diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 90742372..61eae8ff 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -48,4 +48,5 @@ jobs: ./sketch_test "--success" ./crs_test "--success" ./weighted_cr_test "--success" - ./block_partition_test "--success" \ No newline at end of file + ./block_partition_test "--success" + ./streaming_test "--success" \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a8449f6..e5de2b89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -90,4 +90,8 @@ install(DIRECTORY "include" DESTINATION "/IntelliStream" COMPONENT IntelliStream file(GLOB allCopyFiles "${PROJECT_SOURCE_DIR}/scripts/*") file(COPY ${allCopyFiles} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/benchmark/scripts) file(COPY ${allCopyFiles} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/benchmark/scripts) -#file(COPY ${allCopyFiles} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/scripts) \ No newline at end of file + +# copy files needed for real world matrix loader +set(source_directory "${CMAKE_SOURCE_DIR}/benchmark/datasets/") +set(destination_directory "${CMAKE_BINARY_DIR}/benchmark/datasets/") +file(COPY ${source_directory} DESTINATION ${destination_directory}) \ No newline at end of file diff --git a/README.md b/README.md index 2f0d3da4..68e5c10e 100644 --- a/README.md +++ b/README.md @@ -217,5 +217,6 @@ You will find the figures then. to validate the highlight when you need it, and comment it during a compile. :) 4. When setting up torch for cpu under python version > 3.10, torch == 1.13.0 would conflict with torchaudio according to https://pytorch.org/audio/stable/installation.html. Use Python version <= 3.10 for smooth installation. -5. Some heavy-weight algos like co-occurring FD may be treated as a zombie thread by some OS like ubuntu if running in default benchmark program, in this case -, please force them to be executed as a running child thread by setting forceMP(U64)=1 and threads(U64)=1 in config \ No newline at end of file +5. Some heavy-weight algos like co-occurring FD may be treated as a zombie thread by some OS like ubuntu if running in + default benchmark program, in this case + , please force them to be executed as a running child thread by setting forceMP(U64)=1 and threads(U64)=1 in config \ No newline at end of file diff --git a/benchmark/CMakeLists.txt b/benchmark/CMakeLists.txt index 4bf59164..3cdce3ea 100644 --- a/benchmark/CMakeLists.txt +++ b/benchmark/CMakeLists.txt @@ -18,6 +18,8 @@ if (BUILD_BENCHMARKS) include_directories("include/") add_executable(benchmark "src/Benchmark.cpp") target_link_libraries(benchmark IntelliStream) + add_executable(benchmarkPCA "src/BenchmarkPCA.cpp") + target_link_libraries(benchmarkPCA IntelliStream) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/scripts DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) @@ -27,6 +29,10 @@ if (BUILD_BENCHMARKS) DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/config.csv DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) + + set_target_properties(benchmarkPCA PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/scripts/PCA) + + file(COPY ${PROJECT_SOURCE_DIR}/src/CL DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/) message("---Done building benchmarks") diff --git a/benchmark/datasets/siftsmall_base.fvecs b/benchmark/datasets/siftsmall_base.fvecs new file mode 100644 index 00000000..e3b90ae1 Binary files /dev/null and b/benchmark/datasets/siftsmall_base.fvecs differ diff --git a/benchmark/datasets/train-images.idx3-ubyte b/benchmark/datasets/train-images.idx3-ubyte new file mode 100644 index 00000000..bbce2765 Binary files /dev/null and b/benchmark/datasets/train-images.idx3-ubyte differ diff --git a/benchmark/pythonTest.py b/benchmark/pythonTest.py index 5004cc74..e72dfc78 100644 --- a/benchmark/pythonTest.py +++ b/benchmark/pythonTest.py @@ -5,18 +5,18 @@ def main(): # load the library, assume it is located together with this file torch.ops.load_library("../libIntelliStream.so") # gen the input tensor - a = torch.randn(2, 10) - b = torch.randn(2, 10) + a = torch.rand(100, 100) + b = torch.rand(100, 100) # The pytorch + print('/****test add****/') - print('pytorch+:', a + b) + print('pytorch-mm:', torch.matmul(a,b)) # our c++ extension of + - print('myLib+:', torch.ops.myLib.myVecAdd(a, b)) - # The pytorch - - print('/****test sub****/') - print('pytorch-:', a - b) - # our c++ extension of - - print('myLib-:', torch.ops.myLib.myVecSub(a, b)) + torch.ops.load_library("../libIntelliStream.so") + torch.ops.AMMBench.setTag('mm') + print('AMMBench-MM+:', torch.ops.AMMBench.ammDefault(a, b)) + torch.ops.AMMBench.setTag('crs') + print('AMMBench-CRS+:', torch.ops.AMMBench.ammDefault(a, b)) + if __name__ == "__main__": diff --git a/benchmark/results/threads/MM/2/config_threads2.csv b/benchmark/results/threads/MM/2/config_threads2.csv deleted file mode 100644 index 05e02bb2..00000000 --- a/benchmark/results/threads/MM/2/config_threads2.csv +++ /dev/null @@ -1,8 +0,0 @@ -key,value,type -aRow,10000,U64 -aCol,1000,U64 -bCol,500,U64 -aReduce,10,U64 -sketchDimension,25,U64 -threads,2,U64 -ptFile,torchscripts/RAWMM.pt,String diff --git a/benchmark/results/threads/MM/4/config_threads4.csv b/benchmark/results/threads/MM/4/config_threads4.csv deleted file mode 100644 index f01b4594..00000000 --- a/benchmark/results/threads/MM/4/config_threads4.csv +++ /dev/null @@ -1,8 +0,0 @@ -key,value,type -aRow,10000,U64 -aCol,1000,U64 -bCol,500,U64 -aReduce,10,U64 -sketchDimension,25,U64 -threads,4,U64 -ptFile,torchscripts/RAWMM.pt,String diff --git a/benchmark/results/threads/MM/6/config_threads6.csv b/benchmark/results/threads/MM/6/config_threads6.csv deleted file mode 100644 index 7a0c4007..00000000 --- a/benchmark/results/threads/MM/6/config_threads6.csv +++ /dev/null @@ -1,8 +0,0 @@ -key,value,type -aRow,10000,U64 -aCol,1000,U64 -bCol,500,U64 -aReduce,10,U64 -sketchDimension,25,U64 -threads,6,U64 -ptFile,torchscripts/RAWMM.pt,String diff --git a/benchmark/results/threads/MM/8/config_threads8.csv b/benchmark/results/threads/MM/8/config_threads8.csv deleted file mode 100644 index bc25d541..00000000 --- a/benchmark/results/threads/MM/8/config_threads8.csv +++ /dev/null @@ -1,8 +0,0 @@ -key,value,type -aRow,10000,U64 -aCol,1000,U64 -bCol,500,U64 -aReduce,10,U64 -sketchDimension,25,U64 -threads,8,U64 -ptFile,torchscripts/RAWMM.pt,String diff --git a/benchmark/scripts/PCA/preprocess.ipynb b/benchmark/scripts/PCA/preprocess.ipynb new file mode 100644 index 00000000..7abc7692 --- /dev/null +++ b/benchmark/scripts/PCA/preprocess.ipynb @@ -0,0 +1,73 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import glob\n", + "import sys\n", + "sys.path.append('/home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/benchmark/scripts/PCA/scanSketchSize_SIFT')\n", + "from OoOCommon import *" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Change aRow, aCol, bCol in config file" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "for csv in glob.glob('/home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config*.csv'):\n", + " aRow = csv.split('/')[-2].split('_')[1].split('*')[0]\n", + " aCol = csv.split('/')[-2].split('_')[1].split('*')[1]\n", + " bCol = csv.split('/')[-2].split('_')[1].split('*')[2]\n", + " editConfig(csv, csv, 'aRow', aRow)\n", + " editConfig(csv, csv, 'aCol', aCol)\n", + " editConfig(csv, csv, 'bCol', bCol)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/benchmark/scripts/PCA/run.sh b/benchmark/scripts/PCA/run.sh new file mode 100644 index 00000000..e9441d15 --- /dev/null +++ b/benchmark/scripts/PCA/run.sh @@ -0,0 +1,34 @@ +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_SIFT +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_SIFT +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_SIFT + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_100*10000*100 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_100*10000*100 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_100*10000*100 + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_1000*1000*1000 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_1000*1000*1000 + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_10000*100*10000 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_10000*100*10000 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_10000*100*10000 + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_1000*100000*1000 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_1000*100000*1000 + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_10000*10000*10000 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_10000*10000*10000 + +cd /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000 +python3 drawTogether.py +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/figures/sketchDimension_100000*1000*100000 +mv /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension /home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/build/benchmark/scripts/PCA/results/sketchDimension_100000*1000*100000 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_cooFD.csv new file mode 100644 index 00000000..34970062 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_countSketch.csv new file mode 100644 index 00000000..bd9d1096 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_crs.csv new file mode 100644 index 00000000..ca5f1f5e --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_mm.csv new file mode 100644 index 00000000..699e4cda --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_rip.csv new file mode 100644 index 00000000..e5408e92 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_smp-pca.csv new file mode 100644 index 00000000..2d29ebec --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_tugOfWar.csv new file mode 100644 index 00000000..f89049ec --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100,U64 +aCol,10000,U64 +bCol,100,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/drawTogether.py new file mode 100755 index 00000000..179d4265 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [100, 500, 1000, 3000, 5000] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100*10000*100/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100*10000*100/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_cooFD.csv new file mode 100644 index 00000000..3d24f500 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_countSketch.csv new file mode 100644 index 00000000..1872455f --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_crs.csv new file mode 100644 index 00000000..13143408 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_mm.csv new file mode 100644 index 00000000..31bb1fcd --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_rip.csv new file mode 100644 index 00000000..437e42f1 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_smp-pca.csv new file mode 100644 index 00000000..f4143cbc --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_tugOfWar.csv new file mode 100644 index 00000000..d32b5735 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/drawTogether.py new file mode 100755 index 00000000..b336ac4c --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [10, 50, 100, 300, 500] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*1000*1000/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_cooFD.csv new file mode 100644 index 00000000..7e223d71 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_countSketch.csv new file mode 100644 index 00000000..14a98c8f --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_crs.csv new file mode 100644 index 00000000..f68c247d --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_mm.csv new file mode 100644 index 00000000..3e2556bd --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_rip.csv new file mode 100644 index 00000000..f31b888d --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_smp-pca.csv new file mode 100644 index 00000000..4ad3304a --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_tugOfWar.csv new file mode 100644 index 00000000..a1f8340d --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,1000,U64 +aCol,100000,U64 +bCol,1000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/drawTogether.py new file mode 100755 index 00000000..4049fdc8 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [1000, 5000, 10000, 30000, 50000] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_1000*100000*1000/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_cooFD.csv new file mode 100644 index 00000000..e14a9356 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_countSketch.csv new file mode 100644 index 00000000..9184cfb3 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_crs.csv new file mode 100644 index 00000000..74d38abb --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_mm.csv new file mode 100644 index 00000000..387049eb --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_rip.csv new file mode 100644 index 00000000..241356dd --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_smp-pca.csv new file mode 100644 index 00000000..aeeebb41 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_tugOfWar.csv new file mode 100644 index 00000000..6f858de1 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,100,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/drawTogether.py new file mode 100755 index 00000000..01ee56ae --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [1, 5, 10, 30, 50] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*100*10000/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_cooFD.csv new file mode 100644 index 00000000..4319c079 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_countSketch.csv new file mode 100644 index 00000000..30da742f --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_crs.csv new file mode 100644 index 00000000..718de209 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_mm.csv new file mode 100644 index 00000000..838b0110 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_rip.csv new file mode 100644 index 00000000..495a2ae6 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_smp-pca.csv new file mode 100644 index 00000000..22714ef3 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_tugOfWar.csv new file mode 100644 index 00000000..1595a6e6 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,10000,U64 +aCol,10000,U64 +bCol,10000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/drawTogether.py new file mode 100755 index 00000000..179d4265 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [100, 500, 1000, 3000, 5000] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_10000*10000*10000/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_cooFD.csv new file mode 100644 index 00000000..9f9d8968 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_cooFD.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_countSketch.csv new file mode 100644 index 00000000..845023ba --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_countSketch.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_crs.csv new file mode 100644 index 00000000..2adc0bcc --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_crs.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_mm.csv new file mode 100644 index 00000000..185b80d2 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_mm.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_rip.csv new file mode 100644 index 00000000..d0c883cc --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_rip.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_smp-pca.csv new file mode 100644 index 00000000..bbd1d908 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_smp-pca.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_tugOfWar.csv new file mode 100644 index 00000000..e75007f5 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/config_tugOfWar.csv @@ -0,0 +1,11 @@ +key,value,type +aRow,100000,U64 +aCol,1000,U64 +bCol,100000,U64 +matrixLoaderTag,random,String +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +usingMeter,1,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/drawTogether.py new file mode 100755 index 00000000..b336ac4c --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [10, 50, 100, 300, 500] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_100000*1000*100000/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/OoOCommon.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/accuBar.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/autoParase.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_bcooFD.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_bcooFD.csv new file mode 100644 index 00000000..9202c87e --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_bcooFD.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,bcooFD,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_blockLRA.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_blockLRA.csv new file mode 100644 index 00000000..118f85b1 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_blockLRA.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,blockLRA,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_cooFD.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_cooFD.csv new file mode 100644 index 00000000..64302586 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_cooFD.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,cooFD,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_countSketch.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_countSketch.csv new file mode 100644 index 00000000..c4012ca2 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_countSketch.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,countSketch,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_crs.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_crs.csv new file mode 100644 index 00000000..cab7ab68 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_crs.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,crs,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_mm.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_mm.csv new file mode 100644 index 00000000..6093a590 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_mm.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,mm,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_rip.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_rip.csv new file mode 100644 index 00000000..34b490a2 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_rip.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,rip,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_smp-pca.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_smp-pca.csv new file mode 100644 index 00000000..d8f09cd2 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_smp-pca.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,smp-pca,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/config_tugOfWar.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_tugOfWar.csv new file mode 100644 index 00000000..b2c8f1d1 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/config_tugOfWar.csv @@ -0,0 +1,8 @@ +key,value,type +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +forceMP,1,U64 +cppAlgoTag,tugOfWar,String +matrixLoaderTag,SIFT,String +usingMeter,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/drawTogether.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/drawTogether.py new file mode 100755 index 00000000..179d4265 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/drawTogether.py @@ -0,0 +1,232 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os +import shutil +from pathlib import Path + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "sketchDimension" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& rm *.csv") + + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& ./benchmarkPCA " + configFname) + # copy result + os.system("rm -rf " + resultPath + "/" + str(singleValue)) + os.system("mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/PCA.csv" + AMMElapsedTime = readConfig(resultFname, "AMMElapsedTime") + AMMError = readConfig(resultFname, "AMMError") + # cacheMiss = readConfig(resultFname, "cacheMiss") + # cacheRefs = readConfig(resultFname, "cacheRefs") + ElseElapsedTime = readConfig(resultFname, "ElseElapsedTime") + PCAError = readConfig(resultFname, "PCAError") + # errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + # return elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio + return AMMElapsedTime, AMMError, ElseElapsedTime, PCAError + + +def readResultVector(singleValueVec, resultPath): + AMMElapsedTimeVec = [] + AMMErrorVec = [] + cacheMissVec = [] + cacheRefVec = [] + ElseElapsedTimeVec = [] + PCAErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + # elapsedTime, cacheMiss, cacheRefs, PCAError, errorBoundRatio = readResultSingle(i, resultPath) + AMMElapsedTime, AMMError, ElseElapsedTime, PCAError = readResultSingle(i, resultPath) + AMMElapsedTimeVec.append(float(AMMElapsedTime) / 1000.0) + AMMErrorVec.append(float(AMMError)) + # cacheMissVec.append(float(cacheMiss)) + # cacheRefVec.append(float(cacheRefs)) + ElseElapsedTimeVec.append(float(ElseElapsedTime) / 1000.0) + PCAErrorVec.append(float(PCAError)) + # errorBoundRatioVec.append(float(errorBoundRatio)) + # return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(PCAErrorVec), np.array(errorBoundRatioVec) + return np.array(AMMElapsedTimeVec), np.array(AMMErrorVec), np.array(ElseElapsedTimeVec), np.array(PCAErrorVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + + AMMElapsedTimeAll = [] + AMMErrorAll = [] + cacheMissAll= [] + cacheRefAll = [] + ElseElapsedTimeAll = [] + PCAErrorAll = [] + errorBoundRatioAll = [] + periodAll = [] + + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + Path(resultPath).mkdir(parents=True, exist_ok=True) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + # elapsedTime, cacheMiss, cacheRef, error, eb = readResultVector(periodVec, resultPath) + AMMElapsedTime, AMMerror, ElseElapsedTime, PCAError = readResultVector(periodVec, resultPath) + AMMElapsedTimeAll.append(AMMElapsedTime) + AMMErrorAll.append(AMMerror) + ElseElapsedTimeAll.append(ElseElapsedTime) + PCAErrorAll.append(PCAError) + periodAll.append(periodVec) + + return np.array(AMMElapsedTimeAll), np.array(AMMErrorAll), np.array(ElseElapsedTimeAll), np.array(PCAErrorAll), periodAll + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/" + resultPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/results/" + scanTag + figPath = os.path.abspath(os.path.join(os.getcwd(), "..")) + "/figures/" + scanTag + configTemplate = exeSpace + "config.csv" + commonBase = resultPath + "/" + resultPaths = ["mm", "crs", "tugOfWar", "cooFD", "smp-pca"] + csvTemplates = ["config_"+i+".csv" for i in resultPaths] + evaTypes = resultPaths + valueVec = [100, 500, 1000, 3000, 5000] + print(configTemplate) + reRun = 0 + # run + if (len(sys.argv) < 2): + if os.path.exists(resultPath): shutil.rmtree(resultPath) + if os.path.exists(figPath): shutil.rmtree(figPath) + Path(resultPath).mkdir(parents=True, exist_ok=True) + Path(figPath).mkdir(parents=True, exist_ok=True) + # + reRun = 1 + tRows = len(resultPaths) + tCols = len(valueVec) + AMMElapsedTimeAllSum = np.zeros((tRows, tCols)) + AMMErrorAllSum = np.zeros((tRows, tCols)) + ElseElapsedTimeAllSum = np.zeros((tRows, tCols)) + PCAErrorAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) + rounds = 1 + for i in range(rounds): + # elapseTimeAll, ch, periodAll, error, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAll, AMMErrorAll, ElseElapsedTimeAll, PCAErrorAll, periodAll = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + AMMElapsedTimeAllSum = AMMElapsedTimeAllSum + AMMElapsedTimeAll + AMMErrorAllSum = AMMErrorAllSum + AMMErrorAll + ElseElapsedTimeAllSum = ElseElapsedTimeAllSum + ElseElapsedTimeAll + PCAErrorAllSum = PCAErrorAllSum + PCAErrorAll + # errorBoundRatioSum = errorBoundRatioSum + eb + # cacheMissAll = cacheMissAll + ch + AMMElapsedTimeAllSum /= float(rounds) + AMMErrorAllSum /= float(rounds) + ElseElapsedTimeAllSum /= float(rounds) + PCAErrorAllSum /= float(rounds) + # errorBoundRatioSum = errorBoundRatioSum / float(rounds) + # cacheMissAll = cacheMissAll / float(rounds) + # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] + + # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) + # elapseTimeVecCoFD, cacheMissVecCoFD, cacheRefVecCoFD = readResultVector(valueVecRun, resultPathCoFD) + # elapseTimeVeCB, cacheMissVecB, cacheRefVecB = readResultVector(valueVecRun, resultPathBetaCoFD) + + # os.system("mkdir " + figPath) + groupLine.DrawFigureXYnormal(periodAll, + 1 / AMMElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/AMM elapsed time (1/ms)", 0, 1, figPath + "/" + "AMMElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + AMMErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "AMM error %", 0, 1, figPath + "/" + "AMMError", + True) + groupLine.DrawFigureXYnormal(periodAll, + 1 / ElseElapsedTimeAllSum, + evaTypes, + "sketch dimension", "1/Else elapsed time (1/ms)", 0, 1, figPath + "/" + "ElseElapsedTime", + True) + groupLine.DrawFigureXYnormal(periodAll, + PCAErrorAllSum * 100.0, + evaTypes, + "sketch dimension", "PCA error %", 0, 1, figPath + "/" + "PCAError", + True) + # groupLine.DrawFigureXYnormal(periodAll, + # errorBoundRatioSum * 100.0, + # evaTypes, + # "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", + # True) + # groupLine.DrawFigureXYnormal(periodAll, + # cacheMissAll, + # evaTypes, + # "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", + # True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar2.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/groupLine.py b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupLine.py new file mode 100755 index 00000000..c48b38c9 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/groupLine.py @@ -0,0 +1,366 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +# plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 6)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/PCA/scanSketchSize_SIFT/perfRu.csv b/benchmark/scripts/PCA/scanSketchSize_SIFT/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/PCA/scanSketchSize_SIFT/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanACol/config_CPPCRS.csv b/benchmark/scripts/scanACol/config_CPPCRS.csv new file mode 100644 index 00000000..a9b928d2 --- /dev/null +++ b/benchmark/scripts/scanACol/config_CPPCRS.csv @@ -0,0 +1,8 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String \ No newline at end of file diff --git a/benchmark/scripts/scanACol/config_FDAMM.csv b/benchmark/scripts/scanACol/config_FDAMM.csv new file mode 100644 index 00000000..2dac7db7 --- /dev/null +++ b/benchmark/scripts/scanACol/config_FDAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_BCoAMM.csv b/benchmark/scripts/scanAColCPP/config_BCoAMM.csv new file mode 100644 index 00000000..aa481d3d --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_BerCRS.csv b/benchmark/scripts/scanAColCPP/config_BerCRS.csv new file mode 100644 index 00000000..14a0cdc1 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_CRS.csv b/benchmark/scripts/scanAColCPP/config_CRS.csv new file mode 100644 index 00000000..620247f2 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_CRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_CoAMM.csv b/benchmark/scripts/scanAColCPP/config_CoAMM.csv new file mode 100644 index 00000000..765e54de --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_CounterSketch.csv b/benchmark/scripts/scanAColCPP/config_CounterSketch.csv new file mode 100644 index 00000000..79eabd46 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanAColCPP/config_EWS.csv b/benchmark/scripts/scanAColCPP/config_EWS.csv new file mode 100644 index 00000000..0a752db9 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_EWS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/EWS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_FDAMM.csv b/benchmark/scripts/scanAColCPP/config_FDAMM.csv new file mode 100644 index 00000000..2dac7db7 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_FDAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_RAWMM.csv b/benchmark/scripts/scanAColCPP/config_RAWMM.csv new file mode 100644 index 00000000..57e126f7 --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_RAWMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/config_WCR.csv b/benchmark/scripts/scanAColCPP/config_WCR.csv new file mode 100644 index 00000000..a2b6b73c --- /dev/null +++ b/benchmark/scripts/scanAColCPP/config_WCR.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/WeightedCR.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanAColCPP/drawTogether.py b/benchmark/scripts/scanAColCPP/drawTogether.py index 5cba8047..b5346179 100755 --- a/benchmark/scripts/scanAColCPP/drawTogether.py +++ b/benchmark/scripts/scanAColCPP/drawTogether.py @@ -151,8 +151,9 @@ def main(): os.system("sudo mkdir " + commonBase) reRun = 1 # skech - elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "#elements in A's col", "elapsed time (ms)", 0, 1, @@ -164,17 +165,17 @@ def main(): figPath + "/" + scanTag + "sketch_cpp_cacheMiss", True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "#A's row", "normalized error %", 0, 100, figPath + "/" +scanTag + + fro * 100.0, + methodTags, + "#A's row", "normalized error %", 0, 100, figPath + "/" + scanTag + "sketch_cpp_froError", - True) + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + eb * 100.0, + methodTags, + "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + "sketch_cpp_ebRatio", - True) + True) # sampling # resultPaths = ["crs", "bcrs", "ews", "mm","mm-cpp","crs-cpp"] resultPaths = ["crs", "crsv2", "bcrs", "wcr", "ews", "int8", "mm"] @@ -183,8 +184,9 @@ def main(): methodTags = ["CRS", "CRSV2", "Ber-CRS", "Weighted-CR", "EWS", "INT8", "MM"] # csvTemplates = ["config_CRS.csv", "config_BerCRS.csv", "config_EWS.csv", "config_RAWMM.csv","config_CPPMM.csv","config_CPPCRS.csv"] # methodTags = ["CRS", "Ber-CRS", "EWS",, "MM","MM_CPP","CRS_CPP"] - elapsedTimeAll, cacheMissAll, periodAll,fro,eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "#A's col", "elapsed time (ms)", 0, 1, @@ -196,15 +198,15 @@ def main(): figPath + "/" + scanTag + "sampling_cpp_cacheMiss", True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "#A's col", "normalized error %", 0, 1, figPath + "/" +scanTag + "_froError", - True) + fro * 100.0, + methodTags, + "#A's col", "normalized error %", 0, 1, figPath + "/" + scanTag + "_froError", + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "#A's col", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", - True) + eb * 100.0, + methodTags, + "#A's col", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", + True) # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPa # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") diff --git a/benchmark/scripts/scanAColCPP/groupLine.py b/benchmark/scripts/scanAColCPP/groupLine.py index 551d40a7..81b29d2f 100755 --- a/benchmark/scripts/scanAColCPP/groupLine.py +++ b/benchmark/scripts/scanAColCPP/groupLine.py @@ -208,8 +208,10 @@ def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, # plt.show() plt.savefig(filename + ".pdf", bbox_inches='tight') + import matplotlib.ticker as mtick + # draw a line chart def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): # you may change the figure size on your own. @@ -244,8 +246,8 @@ def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, # plt.yscale('log') # you may control the limits on your own. - yMax=np.max(y_values) - plt.ylim(y_min, yMax*1.2) + yMax = np.max(y_values) + plt.ylim(y_min, yMax * 1.2) plt.grid(axis='y', color='gray') plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 @@ -267,7 +269,6 @@ def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, plt.savefig(filename + ".pdf", bbox_inches='tight') - # example for reading csv file def ReadFile(): y = [] diff --git a/benchmark/scripts/scanARow/config_FDAMM.csv b/benchmark/scripts/scanARow/config_FDAMM.csv new file mode 100644 index 00000000..18b9efde --- /dev/null +++ b/benchmark/scripts/scanARow/config_FDAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_BCoAMM.csv b/benchmark/scripts/scanARowCPP/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_BerCRS.csv b/benchmark/scripts/scanARowCPP/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_CRS.csv b/benchmark/scripts/scanARowCPP/config_CRS.csv new file mode 100644 index 00000000..b6afe1ef --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_CRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_CoAMM.csv b/benchmark/scripts/scanARowCPP/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_CounterSketch.csv b/benchmark/scripts/scanARowCPP/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanARowCPP/config_EWS.csv b/benchmark/scripts/scanARowCPP/config_EWS.csv new file mode 100644 index 00000000..8e09f17b --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_EWS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/EWS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_FDAMM.csv b/benchmark/scripts/scanARowCPP/config_FDAMM.csv new file mode 100644 index 00000000..18b9efde --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_FDAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_RAWMM.csv b/benchmark/scripts/scanARowCPP/config_RAWMM.csv new file mode 100644 index 00000000..aeb092a8 --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_RAWMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/config_WCR.csv b/benchmark/scripts/scanARowCPP/config_WCR.csv new file mode 100644 index 00000000..d9b055fb --- /dev/null +++ b/benchmark/scripts/scanARowCPP/config_WCR.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/WeightedCR.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanARowCPP/drawTogether.py b/benchmark/scripts/scanARowCPP/drawTogether.py index edcb416a..b6521d5f 100755 --- a/benchmark/scripts/scanARowCPP/drawTogether.py +++ b/benchmark/scripts/scanARowCPP/drawTogether.py @@ -151,8 +151,9 @@ def main(): os.system("sudo mkdir " + commonBase) reRun = 1 # skech - elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "#elements in A's row", "elapsed time (ms)", 0, 1, @@ -164,17 +165,17 @@ def main(): figPath + "/" + scanTag + "sketch_cpp_cacheMiss", True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "#A's row", "normalized error %", 0, 100, figPath + "/" +scanTag + + fro * 100.0, + methodTags, + "#A's row", "normalized error %", 0, 100, figPath + "/" + scanTag + "sketch_cpp_froError", - True) + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + eb * 100.0, + methodTags, + "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + "sketch_cpp_ebRatio", - True) + True) # sampling # resultPaths = ["crs", "bcrs", "ews", "mm","mm-cpp","crs-cpp"] @@ -184,8 +185,9 @@ def main(): methodTags = ["CRS", "CRSV2", "Ber-CRS", "Weighted-CR", "EWS", "INT8", "MM"] # csvTemplates = ["config_CRS.csv", "config_BerCRS.csv", "config_EWS.csv", "config_RAWMM.csv","config_CPPMM.csv","config_CPPCRS.csv"] # methodTags = ["CRS", "Ber-CRS", "EWS",, "MM","MM_CPP","CRS_CPP"] - elapsedTimeAll, cacheMissAll, periodAll,fro,eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "#A's row", "elapsed time (ms)", 0, 1, @@ -197,17 +199,17 @@ def main(): figPath + "/" + scanTag + "sampling_cpp_cacheMiss", True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "#A's row", "normalized error %", 0, 100, figPath + "/" +scanTag + + fro * 100.0, + methodTags, + "#A's row", "normalized error %", 0, 100, figPath + "/" + scanTag + "sampling_cpp_froError", - True) + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + eb * 100.0, + methodTags, + "#A's row", "error bound ratio %", 0, 100, figPath + "/" + scanTag + "sampling_cpp_ebRatio", - True) + True) # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") diff --git a/benchmark/scripts/scanARowCPP/groupLine.py b/benchmark/scripts/scanARowCPP/groupLine.py index 77993fc1..430b855a 100755 --- a/benchmark/scripts/scanARowCPP/groupLine.py +++ b/benchmark/scripts/scanARowCPP/groupLine.py @@ -11,6 +11,7 @@ from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter from numpy import double import matplotlib.ticker as mtick + # 获取系统中可用的字体路径 # font_paths = fm.findSystemFonts() # OPT_FONT_NAME = 'Helvetica' @@ -243,8 +244,8 @@ def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, # plt.yscale('log') # you may control the limits on your own. - yMax=np.max(y_values) - plt.ylim(y_min, yMax*1.2) + yMax = np.max(y_values) + plt.ylim(y_min, yMax * 1.2) plt.grid(axis='y', color='gray') plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 diff --git a/benchmark/scripts/scanAlgoBeta/drawTogether.py b/benchmark/scripts/scanAlgoBeta/drawTogether.py index 203b84f4..0de9b98b 100755 --- a/benchmark/scripts/scanAlgoBeta/drawTogether.py +++ b/benchmark/scripts/scanAlgoBeta/drawTogether.py @@ -150,8 +150,9 @@ def main(): os.system("sudo mkdir " + commonBase) reRun = 1 - elapsedTimeAll, cacheMissAll, periodAll,fro,eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "value of beta", "elapsed time (ms)", 0, 1, @@ -163,15 +164,15 @@ def main(): figPath + "/" + scanTag + "_cacheMiss", True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "value of beta", "normalized error %", 0, 1, figPath + "/" +scanTag + "_froError", - True) + fro * 100.0, + methodTags, + "value of beta", "normalized error %", 0, 1, figPath + "/" + scanTag + "_froError", + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "value of beta", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", - True) + eb * 100.0, + methodTags, + "value of beta", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", + True) if __name__ == "__main__": diff --git a/benchmark/scripts/scanAlgoDelta/drawTogether.py b/benchmark/scripts/scanAlgoDelta/drawTogether.py index aefede61..ab36a12a 100755 --- a/benchmark/scripts/scanAlgoDelta/drawTogether.py +++ b/benchmark/scripts/scanAlgoDelta/drawTogether.py @@ -73,6 +73,7 @@ def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv" for i in singleValueVec: singleRun(exePath, i, resultPath, templateName) + def readResultSingle(singleValue, resultPath): resultFname = resultPath + "/" + str(singleValue) + "/default.csv" elapsedTime = readConfig(resultFname, "perfElapsedTime") @@ -149,8 +150,9 @@ def main(): os.system("sudo mkdir " + commonBase) reRun = 1 - elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, - reRun) + elapsedTimeAll, cacheMissAll, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) groupLine.DrawFigure(periodAll, elapsedTimeAll, methodTags, "value of delta", "elapsed time (ms)", 0, 1, @@ -163,15 +165,16 @@ def main(): True) groupLine.DrawFigureYnormal(periodAll, - fro * 100.0, - methodTags, - "value of delta", "normalized error %", 0, 1, figPath + "/" +scanTag + "_froError", - True) + fro * 100.0, + methodTags, + "value of delta", "normalized error %", 0, 1, figPath + "/" + scanTag + "_froError", + True) groupLine.DrawFigureYnormal(periodAll, - eb * 100.0, - methodTags, - "value of delta", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", - True) + eb * 100.0, + methodTags, + "value of delta", "error bound ratio %", 0, 1, figPath + "/" + scanTag + "_ebRatio", + True) + if __name__ == "__main__": main() diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/OoOCommon.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/accuBar.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/autoParase.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BCoAMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BerCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCOOFD.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOFD.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOFD.csv new file mode 100644 index 00000000..62a34c84 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOFD.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..4b989ffe --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCRS.csv new file mode 100644 index 00000000..bb504dce --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPCRS.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPINT8.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPINT8.csv new file mode 100644 index 00000000..2b61c43e --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPINT8.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String +useCPP,1,U64 +cppAlgoTag,int8,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPMM.csv new file mode 100644 index 00000000..af4da947 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPMM.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPSMPPCA.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPSMPPCA.csv new file mode 100644 index 00000000..85c377e5 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPSMPPCA.csv @@ -0,0 +1,12 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +threads,1,U64 +useCPP,1,U64 +cppAlgoTag,smp-pca,String +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPToW.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPToW.csv new file mode 100644 index 00000000..bce26390 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CPPToW.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/TugOfWar.pt,String +useCPP,1,U64 +cppAlgoTag,tugOfWar,String +threads,1,U64 +forceMP,1,U64 +algoDelta,0.02,Double +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CoAMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CounterSketch.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/config_PQHash.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_PQHash.csv new file mode 100644 index 00000000..a993cb32 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/config_PQHash.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,pq-hash,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/drawTogether.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/drawTogether.py new file mode 100755 index 00000000..ef4650d3 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/drawTogether.py @@ -0,0 +1,179 @@ +#!/usr/bin/env python3 +#I will streaming A only!!! +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "batchSize" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/result_streaming.csv" + throughput = readConfig(resultFname, "throughputByElements") + lat95 = readConfig(resultFname, "95%latency") + froError = readConfig(resultFname, "froError") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return throughput,lat95, froError, errorBoundRatio + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + thrVec = [] + lat95Vec= [] + froErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + thr,lat95,froError, errorBoundRatio = readResultSingle(i, resultPath) + thrVec.append(float(thr)) + lat95Vec.append(float(lat95)/1000.0) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + return np.array(thrVec), np.array(lat95Vec), np.array(froErrorVec), np.array( + errorBoundRatioVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + thrAll = [] + lat95All = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + thr,lat95,fro, eb = readResultVector(periodVec, resultPath) + thrAll.append(thr) + lat95All.append(lat95) + + periodAll.append(periodVec) + + froAll.append(fro) + errorBoundRatioAll.append(eb) + # periodAll.append(periodVec) + return np.array(thrAll),np.array(lat95All), periodAll, np.array(froAll), np.array(errorBoundRatioAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag + "/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag + "CPP" + methodTags = ["CRS","MM","SMP-PCA", "CS"] + resultPaths = ["CRS","MM","SMP-PCA", "CS"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv","config_CPPSMPPCA.csv", "config_CPPCOUNTERSKETCH.csv"] + valueVec = [10,20,50,100,250,500,1000] + valueVecDisp = np.array(valueVec) + # run + reRun = 0 + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + reRun = 1 + # skech + thrAll, lat95All, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, thrAll/1000.0, + methodTags, + "batch size (#rows)", "throughput (K elements/s)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_thr", + True) + groupLine.DrawFigure(periodAll, lat95All, + methodTags, + "batch size (#rows)", "95% latency (ms)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_lat95", + True) + groupLine.DrawFigureYnormal(periodAll, fro*100.0, + methodTags, + "batch size (#rows)", "fro error (%)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_fro", + True) + + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar2.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/groupLine.py b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupLine.py new file mode 100755 index 00000000..77993fc1 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/groupLine.py @@ -0,0 +1,368 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax=np.max(y_values) + plt.ylim(y_min, yMax*1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream/perfRu.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/OoOCommon.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/accuBar.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/autoParase.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BCoAMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BerCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCOOFD.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOFD.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOFD.csv new file mode 100644 index 00000000..cf8f066a --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..25ea2393 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,15 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,2,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCRS.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCRS.csv new file mode 100644 index 00000000..5e99cf3f --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPCRS.csv @@ -0,0 +1,15 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,2,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPINT8.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPINT8.csv new file mode 100644 index 00000000..2b61c43e --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPINT8.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String +useCPP,1,U64 +cppAlgoTag,int8,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPMM.csv new file mode 100644 index 00000000..71a8b9a7 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPMM.csv @@ -0,0 +1,15 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,2,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPSMPPCA.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPSMPPCA.csv new file mode 100644 index 00000000..dc62bba0 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPSMPPCA.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,50,U64 +threads,2,U64 +forceMP,1,U64 +useCPP,1,U64 +cppAlgoTag,smp-pca,String +eventRateTps,200,U64 +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPToW.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPToW.csv new file mode 100644 index 00000000..69326c13 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CPPToW.csv @@ -0,0 +1,16 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/TugOfWar.pt,String +useCPP,1,U64 +cppAlgoTag,tugOfWar,String +threads,2,U64 +forceMP,1,U64 +algoDelta,0.02,Double +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CoAMM.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CounterSketch.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_PQHash.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_PQHash.csv new file mode 100644 index 00000000..78107207 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/config_PQHash.csv @@ -0,0 +1,15 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,pq-hash,String +threads,2,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 +coreBind,2,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/drawTogether.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/drawTogether.py new file mode 100755 index 00000000..a49dc8c9 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/drawTogether.py @@ -0,0 +1,179 @@ +#!/usr/bin/env python3 +#I will streaming A and B!!! +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "batchSize" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/result_streaming.csv" + throughput = readConfig(resultFname, "throughputByElements") + lat95 = readConfig(resultFname, "95%latency") + froError = readConfig(resultFname, "froError") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return throughput,lat95, froError, errorBoundRatio + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + thrVec = [] + lat95Vec= [] + froErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + thr,lat95,froError, errorBoundRatio = readResultSingle(i, resultPath) + thrVec.append(float(thr)) + lat95Vec.append(float(lat95)/1000.0) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + return np.array(thrVec), np.array(lat95Vec), np.array(froErrorVec), np.array( + errorBoundRatioVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + thrAll = [] + lat95All = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + thr,lat95,fro, eb = readResultVector(periodVec, resultPath) + thrAll.append(thr) + lat95All.append(lat95) + + periodAll.append(periodVec) + + froAll.append(fro) + errorBoundRatioAll.append(eb) + # periodAll.append(periodVec) + return np.array(thrAll),np.array(lat95All), periodAll, np.array(froAll), np.array(errorBoundRatioAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag+"2S" + "/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag+"2s" + "CPP" + methodTags = ["CRS", "MM","SMP-PCA"] + resultPaths = ["CRS", "mm","smp-pca"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv","config_CPPSMPPCA.csv"] + valueVec = [10,20,50,100,200,500] + valueVecDisp = np.array(valueVec) + # run + reRun = 0 + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + reRun = 1 + # skech + thrAll, lat95All, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, thrAll/1000.0, + methodTags, + "batch size (#rows)", "throughput (K elements/s)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_thr", + True) + groupLine.DrawFigure(periodAll, lat95All, + methodTags, + "batch size (#rows)", "95% latency (ms)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_lat95", + True) + groupLine.DrawFigureYnormal(periodAll, fro*100.0, + methodTags, + "batch size (#rows)", "fro error (%)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_fro", + True) + + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar2.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupLine.py b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupLine.py new file mode 100755 index 00000000..77993fc1 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/groupLine.py @@ -0,0 +1,368 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax=np.max(y_values) + plt.ylim(y_min, yMax*1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/scanBatchSizeSingleThreadStream2S/perfRu.csv b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/scanBatchSizeSingleThreadStream2S/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/OoOCommon.py b/benchmark/scripts/scanEventRateSingleThreadStream/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/accuBar.py b/benchmark/scripts/scanEventRateSingleThreadStream/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/autoParase.py b/benchmark/scripts/scanEventRateSingleThreadStream/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_BCoAMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_BerCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCOOFD.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOFD.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOFD.csv new file mode 100644 index 00000000..cf8f066a --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..6f8b104d --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,1,U64 +forceMP,1,U64 +isStreaming,1,U64 +batchSize,50,U64 +eventRateTps,200,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCRS.csv new file mode 100644 index 00000000..6c829168 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPCRS.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,50,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPINT8.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPINT8.csv new file mode 100644 index 00000000..2b61c43e --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPINT8.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String +useCPP,1,U64 +cppAlgoTag,int8,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPMM.csv new file mode 100644 index 00000000..df1a3384 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPMM.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +batchSize,50,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPSMPPCA.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPSMPPCA.csv new file mode 100644 index 00000000..2c8da633 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CPPSMPPCA.csv @@ -0,0 +1,12 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +threads,1,U64 +forceMP,1,U64 +useCPP,1,U64 +cppAlgoTag,smp-pca,String +isStreaming,1,U64 +batchSize,50,U64 +eventRateTps,200,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CoAMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/config_CounterSketch.csv b/benchmark/scripts/scanEventRateSingleThreadStream/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/drawTogether.py b/benchmark/scripts/scanEventRateSingleThreadStream/drawTogether.py new file mode 100755 index 00000000..b45f5e0e --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/drawTogether.py @@ -0,0 +1,180 @@ +#!/usr/bin/env python3 +#I will streaming A only!!! +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "eventRateTps" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/result_streaming.csv" + throughput = readConfig(resultFname, "throughputByElements") + lat95 = readConfig(resultFname, "95%latency") + froError = readConfig(resultFname, "froError") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return throughput,lat95, froError, errorBoundRatio + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + thrVec = [] + lat95Vec= [] + froErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + thr,lat95,froError, errorBoundRatio = readResultSingle(i, resultPath) + thrVec.append(float(thr)) + lat95Vec.append(float(lat95)/1000.0) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + return np.array(thrVec), np.array(lat95Vec), np.array(froErrorVec), np.array( + errorBoundRatioVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + thrAll = [] + lat95All = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + thr,lat95,fro, eb = readResultVector(periodVec, resultPath) + thrAll.append(thr) + lat95All.append(lat95) + + periodAll.append(periodVec) + + froAll.append(fro) + errorBoundRatioAll.append(eb) + # periodAll.append(periodVec) + return np.array(thrAll),np.array(lat95All), periodAll, np.array(froAll), np.array(errorBoundRatioAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag + "/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag + "CPP" + methodTags = ["CRS","MM","SMP-PCA", "CS", "PQ-hash", "ToG"] + resultPaths = ["CRS","MM","SMP-PCA", "CS", "PQ-hash", "ToG"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv","config_CPPSMPPCA.csv", "config_CPPCOUNTERSKETCH.csv", "config_PQHash.csv", "config_CPPToW.csv"] + valueVec = [100,200,500,1000,2000,5000] + valueVecDisp = np.array(valueVec) + # run + reRun = 0 + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + + reRun = 1 + # skech + thrAll, lat95All, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, thrAll/1000.0, + methodTags, + "event rate (#rows/s)", "throughput (K elements/s)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_thr", + True) + groupLine.DrawFigure(periodAll, lat95All, + methodTags, + "event rate (#rows/s)", "95% latency (ms)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_lat95", + True) + groupLine.DrawFigureYnormal(periodAll, fro*100.0, + methodTags, + "event rate (#rows)", "fro error (%)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_fro", + True) + + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/groupBar.py b/benchmark/scripts/scanEventRateSingleThreadStream/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/groupBar2.py b/benchmark/scripts/scanEventRateSingleThreadStream/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/groupLine.py b/benchmark/scripts/scanEventRateSingleThreadStream/groupLine.py new file mode 100755 index 00000000..77993fc1 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/groupLine.py @@ -0,0 +1,368 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax=np.max(y_values) + plt.ylim(y_min, yMax*1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream/perfRu.csv b/benchmark/scripts/scanEventRateSingleThreadStream/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/OoOCommon.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/accuBar.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/autoParase.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BCoAMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BerCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCOOFD.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOFD.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOFD.csv new file mode 100644 index 00000000..cf8f066a --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..6823e4e2 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCRS.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCRS.csv new file mode 100644 index 00000000..e6dff688 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPCRS.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,100,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPINT8.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPINT8.csv new file mode 100644 index 00000000..2b61c43e --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPINT8.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String +useCPP,1,U64 +cppAlgoTag,int8,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPMM.csv new file mode 100644 index 00000000..e844ccd8 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPMM.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,200,U64 +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,100,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPSMPPCA.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPSMPPCA.csv new file mode 100644 index 00000000..406a960e --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CPPSMPPCA.csv @@ -0,0 +1,12 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +threads,1,U64 +useCPP,1,U64 +cppAlgoTag,smp-pca,String +isStreaming,1,U64 +streamingTwoMatrixes,1,U64 +batchSize,100,U64 +eventRateTps,200,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CoAMM.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CounterSketch.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/drawTogether.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/drawTogether.py new file mode 100755 index 00000000..2d2e4ff2 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/drawTogether.py @@ -0,0 +1,180 @@ +#!/usr/bin/env python3 +#I will streaming A and B!!! +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "eventRateTps" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/result_streaming.csv" + throughput = readConfig(resultFname, "throughputByElements") + lat95 = readConfig(resultFname, "95%latency") + froError = readConfig(resultFname, "froError") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return throughput,lat95, froError, errorBoundRatio + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + thrVec = [] + lat95Vec= [] + froErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + thr,lat95,froError, errorBoundRatio = readResultSingle(i, resultPath) + thrVec.append(float(thr)) + lat95Vec.append(float(lat95)/1000.0) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + return np.array(thrVec), np.array(lat95Vec), np.array(froErrorVec), np.array( + errorBoundRatioVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + thrAll = [] + lat95All = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + thr,lat95,fro, eb = readResultVector(periodVec, resultPath) + thrAll.append(thr) + lat95All.append(lat95) + + periodAll.append(periodVec) + + froAll.append(fro) + errorBoundRatioAll.append(eb) + # periodAll.append(periodVec) + return np.array(thrAll),np.array(lat95All), periodAll, np.array(froAll), np.array(errorBoundRatioAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag+"2S" + "/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag+"2s" + "CPP" + methodTags = ["CRS", "MM","SMP-PCA"] + resultPaths = ["CRS", "mm","smp-pca"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv","config_CPPSMPPCA.csv"] + valueVec = [100,200,500,1000,2000,5000] + valueVecDisp = np.array(valueVec) + # run + reRun = 0 + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + + reRun = 1 + # skech + thrAll, lat95All, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, thrAll/1000.0, + methodTags, + "event rate (#rows/s)", "throughput (K elements/s)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_thr", + True) + groupLine.DrawFigure(periodAll, lat95All, + methodTags, + "event rate (#rows/s)", "95% latency (ms)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_lat95", + True) + groupLine.DrawFigureYnormal(periodAll, fro*100.0, + methodTags, + "event rate (#rows)", "fro error (%)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_fro", + True) + + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar2.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/groupLine.py b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupLine.py new file mode 100755 index 00000000..77993fc1 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/groupLine.py @@ -0,0 +1,368 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax=np.max(y_values) + plt.ylim(y_min, yMax*1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/scanEventRateSingleThreadStream2S/perfRu.csv b/benchmark/scripts/scanEventRateSingleThreadStream2S/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/scanEventRateSingleThreadStream2S/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanSketchSize/drawTogether.py b/benchmark/scripts/scanSketchSize/drawTogether.py index e125c559..e6129963 100755 --- a/benchmark/scripts/scanSketchSize/drawTogether.py +++ b/benchmark/scripts/scanSketchSize/drawTogether.py @@ -80,8 +80,8 @@ def readResultSingle(singleValue, resultPath): cacheMiss = readConfig(resultFname, "cacheMiss") cacheRefs = readConfig(resultFname, "cacheRefs") froError = readConfig(resultFname, "froError") - errorBoundRatio=readConfig(resultFname, "errorBoundRatio") - return elapsedTime, cacheMiss, cacheRefs,froError,errorBoundRatio + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return elapsedTime, cacheMiss, cacheRefs, froError, errorBoundRatio def cleanPath(path): @@ -94,15 +94,16 @@ def readResultVector(singleValueVec, resultPath): cacheMissVec = [] cacheRefVec = [] froErrorVec = [] - errorBoundRatioVec=[] + errorBoundRatioVec = [] for i in singleValueVec: - elapsedTime, cacheMiss, cacheRefs,froError,errorBoundRatio = readResultSingle(i, resultPath) + elapsedTime, cacheMiss, cacheRefs, froError, errorBoundRatio = readResultSingle(i, resultPath) elapseTimeVec.append(float(elapsedTime) / 1000.0) cacheMissVec.append(float(cacheMiss)) cacheRefVec.append(float(cacheRefs)) froErrorVec.append(float(froError)) errorBoundRatioVec.append(float(errorBoundRatio)) - return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec),np.array(froErrorVec),np.array(errorBoundRatioVec) + return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(froErrorVec), np.array( + errorBoundRatioVec) def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): @@ -110,24 +111,24 @@ def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec cacheMissAll = [] cacheRefAll = [] periodAll = [] - froAll=[] - errorBoundRatioAll=[] + froAll = [] + errorBoundRatioAll = [] for i in range(len(csvTemplates)): resultPath = commonPathBase + resultPaths[i] if (reRun == 1): os.system("sudo rm -rf " + resultPath) os.system("sudo mkdir " + resultPath) runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) - elapsedTime, cacheMiss, cacheRef,fro,eb = readResultVector(periodVec, resultPath) + elapsedTime, cacheMiss, cacheRef, fro, eb = readResultVector(periodVec, resultPath) elapsedTimeAll.append(elapsedTime) cacheMissAll.append(cacheMiss) cacheRefAll.append(cacheRef) periodAll.append(periodVec) - cacheMissRateAll = np.array(cacheMissAll)/np.array(cacheRefAll)*100.0 + cacheMissRateAll = np.array(cacheMissAll) / np.array(cacheRefAll) * 100.0 froAll.append(fro) errorBoundRatioAll.append(eb) # periodAll.append(periodVec) - return np.array(elapsedTimeAll), cacheMissRateAll, periodAll,np.array(froAll),np.array(errorBoundRatioAll) + return np.array(elapsedTimeAll), cacheMissRateAll, periodAll, np.array(froAll), np.array(errorBoundRatioAll) def main(): @@ -155,20 +156,21 @@ def main(): tRows = len(resultPaths) tCols = len(valueVec) elapseTimeAllSum = np.zeros((tRows, tCols)) - froErroAllSum = np.zeros((tRows, tCols)) - errorBoundRatioSum= np.zeros((tRows, tCols)) - cacheMissAll=np.zeros((tRows, tCols)) + froErroAllSum = np.zeros((tRows, tCols)) + errorBoundRatioSum = np.zeros((tRows, tCols)) + cacheMissAll = np.zeros((tRows, tCols)) rounds = 10 for i in range(rounds): - elapseTimeAll, ch, periodAll,fro,eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, reRun) + elapseTimeAll, ch, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) elapseTimeAllSum = elapseTimeAllSum + elapseTimeAll froErroAllSum = froErroAllSum + fro - errorBoundRatioSum = errorBoundRatioSum+eb - cacheMissAll=cacheMissAll+ch + errorBoundRatioSum = errorBoundRatioSum + eb + cacheMissAll = cacheMissAll + ch elapseTimeAllSum = elapseTimeAllSum / float(rounds) - froErroAllSum = froErroAllSum / float(rounds) - errorBoundRatioSum = errorBoundRatioSum/float(rounds) - cacheMissAll=cacheMissAll/float(rounds) + froErroAllSum = froErroAllSum / float(rounds) + errorBoundRatioSum = errorBoundRatioSum / float(rounds) + cacheMissAll = cacheMissAll / float(rounds) # evaTypes = ['FDAMM', 'MM', 'Co-FD', 'BCO-FD'] # elapseTimeVecFD, cacheMissVecFD, cacheRefVecFD = readResultVector(valueVecRun, resultPathFDAMM) @@ -177,22 +179,22 @@ def main(): # os.system("mkdir " + figPath) groupLine.DrawFigureXYnormal(periodAll, - 1/elapseTimeAllSum, + 1 / elapseTimeAllSum, evaTypes, "sketch dimension", "1/elapsed time (1/ms)", 0, 1, figPath + "/" + "_elapsedTime", True) groupLine.DrawFigureXYnormal(periodAll, - froErroAllSum*100.0, + froErroAllSum * 100.0, evaTypes, "sketch dimension", "normalized error %", 0, 1, figPath + "/" + "_froError", True) groupLine.DrawFigureXYnormal(periodAll, - errorBoundRatioSum*100.0, + errorBoundRatioSum * 100.0, evaTypes, "sketch dimension", "error bound ratio %", 0, 1, figPath + "/" + "_ebRatio", True) groupLine.DrawFigureXYnormal(periodAll, - cacheMissAll, + cacheMissAll, evaTypes, "sketch dimension", "cache miss %", 0, 1, figPath + "/" + "_cachemiss", True) diff --git a/benchmark/scripts/scanThreads/drawTogether.py b/benchmark/scripts/scanThreads/drawTogether.py index 4b94366d..acaab183 100755 --- a/benchmark/scripts/scanThreads/drawTogether.py +++ b/benchmark/scripts/scanThreads/drawTogether.py @@ -137,10 +137,11 @@ def main(): figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag configTemplate = exeSpace + "config.csv" commonBase = resultPath + "/" - resultPaths = ["mm", "crs","ews","counterSketch","cofd","tow","weighted-cr","smp-pca"] - csvTemplates = ["config_CPPMM.csv", "config_CPPCRS.csv","config_CPPEWS.csv","config_CPPCOUNTERSKETCH.csv","config_CPPCOFD.csv","config_CPPTOW.csv","config_CPPWeightedCR.csv","config_CPPSMPPCA.csv"] - methodTags = ["mm", "crs","ews","counterSketch","cofd","tow","weighted-cr","smp-pca"] - valueVec = [ 2, 4, 6, 8, 10, 12] + resultPaths = ["mm", "crs", "ews", "counterSketch", "cofd", "tow", "weighted-cr", "smp-pca"] + csvTemplates = ["config_CPPMM.csv", "config_CPPCRS.csv", "config_CPPEWS.csv", "config_CPPCOUNTERSKETCH.csv", + "config_CPPCOFD.csv", "config_CPPTOW.csv", "config_CPPWeightedCR.csv", "config_CPPSMPPCA.csv"] + methodTags = ["mm", "crs", "ews", "counterSketch", "cofd", "tow", "weighted-cr", "smp-pca"] + valueVec = [2, 4, 6, 8, 10, 12] valueVecRun = valueVec print(configTemplate) reRun = 0 diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/OoOCommon.py b/benchmark/scripts/scanThreadsBlockPartitionStream/OoOCommon.py new file mode 100755 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/accuBar.py b/benchmark/scripts/scanThreadsBlockPartitionStream/accuBar.py new file mode 100755 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/autoParase.py b/benchmark/scripts/scanThreadsBlockPartitionStream/autoParase.py new file mode 100755 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_BCoAMM.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_BCoAMM.csv new file mode 100644 index 00000000..b65317af --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_BCoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_BerCRS.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_BerCRS.csv new file mode 100644 index 00000000..d2b758a5 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_BerCRS.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCOOFD.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCRS.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOFD.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOFD.csv new file mode 100644 index 00000000..5fbcfcfd --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOFD.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,10000,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..4df4531c --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,1,U64 +forceMP,1,U64 +isStreaming,1,U64 +batchSize,100,U64 +eventRateTps,10000,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCRS.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCRS.csv new file mode 100644 index 00000000..a35ba6e2 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPCRS.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,10000,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPINT8.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPINT8.csv new file mode 100644 index 00000000..2b61c43e --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPINT8.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FDAMM.pt,String +useCPP,1,U64 +cppAlgoTag,int8,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPMM.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPMM.csv new file mode 100644 index 00000000..dc28a27d --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPMM.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,25,U64 +ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,10000,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPSMPPCA.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPSMPPCA.csv new file mode 100644 index 00000000..5050adb7 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPSMPPCA.csv @@ -0,0 +1,13 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +threads,1,U64 +forceMP,1,U64 +useCPP,1,U64 +cppAlgoTag,smp-pca,String +isStreaming,1,U64 +batchSize,100,U64 +eventRateTps,10000,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPToW.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPToW.csv new file mode 100644 index 00000000..65ae8730 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CPPToW.csv @@ -0,0 +1,15 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/TugOfWar.pt,String +useCPP,1,U64 +cppAlgoTag,tugOfWar,String +threads,1,U64 +forceMP,1,U64 +algoDelta,0.02,Double +eventRateTps,10000,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CoAMM.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CoAMM.csv new file mode 100644 index 00000000..f41d7ddd --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CoAMM.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CoOccurringFD.pt,String \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_CounterSketch.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CounterSketch.csv new file mode 100644 index 00000000..50cf2770 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_CounterSketch.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CountSketch.pt,String diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/config_PQHash.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/config_PQHash.csv new file mode 100644 index 00000000..5b5538ec --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/config_PQHash.csv @@ -0,0 +1,14 @@ +key,value,type +aRow,1000,U64 +aCol,1000,U64 +bCol,1000,U64 +sketchDimension,100,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,pq-hash,String +threads,1,U64 +forceMP,1,U64 +eventRateTps,10000,U64 +isStreaming,1,U64 +batchSize,100,U64 +streamingTwoMatrixes,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/drawTogether.py b/benchmark/scripts/scanThreadsBlockPartitionStream/drawTogether.py new file mode 100755 index 00000000..9f7e0216 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/drawTogether.py @@ -0,0 +1,183 @@ +#!/usr/bin/env python3 +#I will streaming A only!!! +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "threads" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + os.system("cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/result_streaming.csv" + throughput = readConfig(resultFname, "throughputByElements") + lat95 = readConfig(resultFname, "95%latency") + froError = readConfig(resultFname, "froError") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return throughput,lat95, froError, errorBoundRatio + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + thrVec = [] + lat95Vec= [] + froErrorVec = [] + errorBoundRatioVec = [] + for i in singleValueVec: + thr,lat95,froError, errorBoundRatio = readResultSingle(i, resultPath) + thrVec.append(float(thr)) + lat95Vec.append(float(lat95)/1000.0) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + return np.array(thrVec), np.array(lat95Vec), np.array(froErrorVec), np.array( + errorBoundRatioVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + thrAll = [] + lat95All = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + thr,lat95,fro, eb = readResultVector(periodVec, resultPath) + thrAll.append(thr) + lat95All.append(lat95) + + periodAll.append(periodVec) + + froAll.append(fro) + errorBoundRatioAll.append(eb) + # periodAll.append(periodVec) + return np.array(thrAll),np.array(lat95All), periodAll, np.array(froAll), np.array(errorBoundRatioAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag + "/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag + "CPP" + methodTags = ["CRS","MM","SMP-PCA", "CS", "PQ-hash", "CO-FD", "ToW"] + resultPaths = ["CRS","MM","SMP-PCA", "CS", "PQ-hash", "CO-FD", "ToW"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv","config_CPPSMPPCA.csv", "config_CPPCOUNTERSKETCH.csv", "config_PQHash.csv", "config_CPPCOFD.csv", "config_CPPToW.csv"] + #methodTags = ["CRS","MM"] + #resultPaths = ["CRS","MM"] + #csvTemplates = ["config_CPPCRS.csv", "config_CPPMM.csv"] + valueVec = [1, 2, 4, 8] + valueVecDisp = np.array(valueVec) + # run + reRun = 0 + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + + reRun = 1 + # skech + thrAll, lat95All, periodAll, fro, eb = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, thrAll/1000.0, + methodTags, + "threads", "throughput (K elements/s)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_thr", + True) + groupLine.DrawFigure(periodAll, lat95All, + methodTags, + "threads", "95% latency (ms)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_lat95", + True) + groupLine.DrawFigureYnormal(periodAll, fro*100.0, + methodTags, + "threads", "fro error (%)", 0, 1, + figPath + "/" + scanTag + "stream_cpp_fro", + True) + + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar.py b/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar.py new file mode 100755 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar2.py b/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar2.py new file mode 100755 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/groupLine.py b/benchmark/scripts/scanThreadsBlockPartitionStream/groupLine.py new file mode 100755 index 00000000..77993fc1 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/groupLine.py @@ -0,0 +1,368 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax=np.max(y_values) + plt.ylim(y_min, yMax*1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/scanThreadsBlockPartitionStream/perfRu.csv b/benchmark/scripts/scanThreadsBlockPartitionStream/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/scanThreadsBlockPartitionStream/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/scripts/scanThreadsRockPi5/config_CPPBCO.csv b/benchmark/scripts/scanThreadsRockPi5/config_CPPBCO.csv new file mode 100644 index 00000000..37943e33 --- /dev/null +++ b/benchmark/scripts/scanThreadsRockPi5/config_CPPBCO.csv @@ -0,0 +1,9 @@ +key,value,type +aRow,10000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +threads,1,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcoofd,String \ No newline at end of file diff --git a/benchmark/results/threads/MM/10/config_threads10.csv b/benchmark/scripts/scanThreadsRockPi5/config_CPPCounterSketch.csv similarity index 67% rename from benchmark/results/threads/MM/10/config_threads10.csv rename to benchmark/scripts/scanThreadsRockPi5/config_CPPCounterSketch.csv index a104a25f..f41b4df5 100644 --- a/benchmark/results/threads/MM/10/config_threads10.csv +++ b/benchmark/scripts/scanThreadsRockPi5/config_CPPCounterSketch.csv @@ -2,7 +2,8 @@ key,value,type aRow,10000,U64 aCol,1000,U64 bCol,500,U64 -aReduce,10,U64 sketchDimension,25,U64 -threads,10,U64 +threads,1,U64 ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,count-sketch,String \ No newline at end of file diff --git a/benchmark/scripts/scanThreadsRockPi5/drawTogether.py b/benchmark/scripts/scanThreadsRockPi5/drawTogether.py index cc4e3e87..1a76e827 100644 --- a/benchmark/scripts/scanThreadsRockPi5/drawTogether.py +++ b/benchmark/scripts/scanThreadsRockPi5/drawTogether.py @@ -137,10 +137,11 @@ def main(): figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag configTemplate = exeSpace + "config.csv" commonBase = resultPath + "/" - resultPaths = ["mm", "crs","ews","counterSketch","cofd","tow"] - csvTemplates = ["config_CPPMM.csv", "config_CPPCRS.csv","config_CPPEWS.csv","config_CPPCOUNTERSKETCH.csv","config_CPPCOFD.csv","config_CPPTOW.csv"] - methodTags = ["mm", "crs","ews","counterSketch","cofd","tow"] - valueVec = [1,2,3,4,5,6,7,8] + resultPaths = ["mm", "crs", "ews", "counterSketch", "cofd", "tow"] + csvTemplates = ["config_CPPMM.csv", "config_CPPCRS.csv", "config_CPPEWS.csv", "config_CPPCOUNTERSKETCH.csv", + "config_CPPCOFD.csv", "config_CPPTOW.csv"] + methodTags = ["mm", "crs", "ews", "counterSketch", "cofd", "tow"] + valueVec = [1, 2, 3, 4, 5, 6, 7, 8] valueVecRun = valueVec print(configTemplate) reRun = 0 diff --git a/benchmark/scripts/scanThreadsRockPi5/drawTogetherNoCRS.py b/benchmark/scripts/scanThreadsRockPi5/drawTogetherNoCRS.py index bf393ed1..3461c307 100644 --- a/benchmark/scripts/scanThreadsRockPi5/drawTogetherNoCRS.py +++ b/benchmark/scripts/scanThreadsRockPi5/drawTogetherNoCRS.py @@ -134,13 +134,14 @@ def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec def main(): exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" resultPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag - figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag+"_NOCRS" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag + "_NOCRS" configTemplate = exeSpace + "config.csv" commonBase = resultPath + "/" - resultPaths = ["mm","ews","counterSketch","cofd","tow"] - csvTemplates = ["config_CPPMM.csv","config_CPPEWS.csv","config_CPPCOUNTERSKETCH.csv","config_CPPCOFD.csv","config_CPPTOW.csv"] - methodTags = ["mm","ews","counterSketch","cofd","tow"] - valueVec = [1,2,3,4,5,6,7,8] + resultPaths = ["mm", "ews", "counterSketch", "cofd", "tow"] + csvTemplates = ["config_CPPMM.csv", "config_CPPEWS.csv", "config_CPPCOUNTERSKETCH.csv", "config_CPPCOFD.csv", + "config_CPPTOW.csv"] + methodTags = ["mm", "ews", "counterSketch", "cofd", "tow"] + valueVec = [1, 2, 3, 4, 5, 6, 7, 8] valueVecRun = valueVec print(configTemplate) reRun = 0 diff --git a/benchmark/scripts/scanThreadsRockPi5/main.c b/benchmark/scripts/scanThreadsRockPi5/main.c new file mode 100644 index 00000000..35fa90f7 --- /dev/null +++ b/benchmark/scripts/scanThreadsRockPi5/main.c @@ -0,0 +1,14 @@ +#include +#include +int isFP32Supported() { + float32x4_t a; + // Perform a NEON vector addition of FP32 values + float32_t result = vaddvq_f32(a); + printf("ok\r\n"); + // If compilation succeeds, FP32 operations are supported + return 1; +} +void main() { + + isFP32Supported(); +} diff --git a/benchmark/scripts/scanThreadsRockPi5/tb b/benchmark/scripts/scanThreadsRockPi5/tb new file mode 100755 index 00000000..208ced9b Binary files /dev/null and b/benchmark/scripts/scanThreadsRockPi5/tb differ diff --git a/benchmark/scripts/testIPM/OoOCommon.py b/benchmark/scripts/testIPM/OoOCommon.py new file mode 100644 index 00000000..70f4cf33 --- /dev/null +++ b/benchmark/scripts/testIPM/OoOCommon.py @@ -0,0 +1,125 @@ +import csv +import numpy as np +import matplotlib.pyplot as plt +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +import matplotlib.ticker as mtick + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + + +def editConfig(src, dest, key, value): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + df[1][rowIdx] = str(value) + df.to_csv(dest, index=False, header=False) + + +def readConfig(src, key): + df = pd.read_csv(src, header=None) + rowIdx = 0 + idxt = 0 + for cell in df[0]: + # print(cell) + if (cell == key): + rowIdx = idxt + break + idxt = idxt + 1 + return df[1][rowIdx] + + +def draw2yLine(NAME, Com, R1, R2, l1, l2, m1, m2, fname): + fig, ax1 = plt.subplots(figsize=(10, 6.4)) + lines = [None] * 2 + # ax1.set_ylim(0, 1) + print(Com) + print(R1) + lines[0], = ax1.plot(Com, R1, color=LINE_COLORS[0], \ + linewidth=LINE_WIDTH, marker=MARKERS[0], \ + markersize=MARKER_SIZE + # + ) + + # plt.show() + ax1.set_ylabel(m1, fontproperties=LABEL_FP) + ax1.set_xlabel(NAME, fontproperties=LABEL_FP) + # ax1.set_xticklabels(ax1.get_xticklabels()) # 设置共用的x轴 + plt.xticks(rotation=0, size=TICK_FONT_SIZE) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + ax2 = ax1.twinx() + + # ax2.set_ylabel('latency/us') + # ax2.set_ylim(0, 0.5) + lines[1], = ax2.plot(Com, R2, color=LINE_COLORS[1], \ + linewidth=LINE_WIDTH, marker=MARKERS[1], \ + markersize=MARKER_SIZE) + + ax2.set_ylabel(m2, fontproperties=LABEL_FP) + # ax2.vlines(192000, min(R2)-1, max(R2)+1, colors = "GREEN", linestyles = "dashed",label='total L1 size') + # plt.grid(axis='y', color='gray') + + # style = dict(size=10, color='black') + # ax2.hlines(tset, 0, x2_list[len(x2_list)-1]+width, colors = "r", linestyles = "dashed",label="tset") + # ax2.text(4, tset, "$T_{set}$="+str(tset)+"us", ha='right', **style) + + # plt.xlabel('batch', fontproperties=LABEL_FP) + + # plt.xscale('log') + # figure.xaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_locator(LinearLocator(5)) + ax2.yaxis.set_major_locator(LinearLocator(5)) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax1.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + ax2.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + plt.legend(lines, + [l1, l2], + prop=LEGEND_FP, + loc='upper center', + ncol=1, + bbox_to_anchor=(0.55, 1.3 + ), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=-1.5, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.yticks(rotation=0, size=TICK_FONT_SIZE) + plt.tight_layout() + + plt.savefig(fname + ".pdf") diff --git a/benchmark/scripts/testIPM/accuBar.py b/benchmark/scripts/testIPM/accuBar.py new file mode 100644 index 00000000..638c8a60 --- /dev/null +++ b/benchmark/scripts/testIPM/accuBar.py @@ -0,0 +1,328 @@ +import getopt +import os +import sys + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 26 +TITLE_FRONT_SIZE = 32 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) +TITLE_FP = FontProperties(style='normal', size=TITLE_FRONT_SIZE) +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "", "|", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ('#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["\\", "///", "o", "||", "\\\\", "\\\\", "//////", "//////", ".", "\\\\\\", "\\\\\\"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 0.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +class ScalarFormatterForceFormat(ScalarFormatter): + def _set_format(self): # Override function that finds format to use. + self.format = "%1.1f" # Give format here + + +# draw a line chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + + fig = plt.figure(figsize=(16, 9)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # if not os.path.exists(FIGURE_FOLDER): + # os.makedirs(FIGURE_FOLDER) + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + leg = plt.legend(handles[::-1], labels[::-1], + loc='upper center', + # prop=#LEGEND_FP, + # ncol=3, + # bbox_to_anchor=(0.5, 1.25), + # bbox_to_anchor=(1.17, 0.5), + # handletextpad=0.1, + # borderaxespad=0.0, + # handlelength=1.8, + # labelspacing=0.3, + # columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.6 * width, x_values) + yfmt = ScalarFormatterForceFormat() + yfmt.set_powerlimits((0, 0)) + figure.get_yaxis().set_major_formatter(yfmt) + plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0), useMathText=True) + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(3)) + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + plt.title(title, fontproperties=TITLE_FP) + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, hatch=PATTERNS[i], color=LINE_COLORS[i], + linewidth=0.2) + + # LEGEND + figlegend = pylab.figure(figsize=(11, 0.5)) + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=9, + bbox_to_anchor=(0, 0.4, 1, 1), + ncol=len(FIGURE_LABEL), mode="expand", shadow=False, \ + frameon=False, handlelength=1.1, handletextpad=0.2, columnspacing=0.1) + + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +def normalize(y_values): + y_total_values = np.zeros(len(y_values[0])) + + for i in range(len(y_values)): + y_total_values += np.array(y_values[i]) + y_norm_values = [] + + for i in range(len(y_values)): + y_norm_values.append(np.array(y_values[i]) / (y_total_values) * 100) + return y_norm_values + + +# example for reading csv file +def ReadFile(id): + # Creates a list containing w lists, each of h items, all set to 0 + w, h = 5, 3 + y = [[0 for x in range(w)] for y in range(h)] + # print(matches) + max_value = 0 + j = 0 + bound = id + 1 * w + for i in range(id, bound, 1): + cnt = 0 + print(i) + f = open(exp_dir + "/results/breakdown/PMJ_JBCR_NP_{}.txt".format(i), "r") + read = f.readlines() + others = 0 + for x in read: + value = double(x.strip("\n")) + if value > max_value: + max_value = value + elif cnt == 3: # sort + y[0][j] = value + elif cnt == 4: # merge + y[1][j] = value + elif cnt == 5: # join + y[2][j] = value + else: + others += value + # if cnt == 6: + # y[2][j] = others + cnt += 1 + j += 1 + print(y) + return y, max_value + + +if __name__ == "__main__": + id = 119 + try: + opts, args = getopt.getopt(sys.argv[1:], '-i:h', ['test id', 'help']) + except getopt.GetoptError: + print('breakdown.py -id testid') + sys.exit(2) + for opt, opt_value in opts: + if opt in ('-h', '--help'): + print("[*] Help info") + exit() + elif opt == '-i': + print('Test ID:', opt_value) + id = (int)(opt_value) + + x_values = ['10%', '20%', '30%', '40%', '50%'] # sorting step size + + y_values, max_value = ReadFile(id) # 55 + + # y_norm_values = normalize(y_values) + + # break into 4 parts + legend_labels = ['sort', 'merge', 'join'] # , 'others' + + DrawFigure(x_values, y_values, legend_labels, + 'sorting step size', 'cycles per input tuple', + 'breakdown_sort_figure', True) + + # DrawLegend(legend_labels, 'breakdown_radix_legend') + + +def DrawPercentageFigure(x_values, y_values, legend_labels, x_label, y_label, filename, allow_legend, title): + # you may change the figure size on your own. + fig = plt.figure(figsize=(9, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.5 + # draw the bars + bottom_base = np.zeros(len(y_values[0])) + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + width / 2, y_values[i], width, hatch=PATTERNS[i], color=LINE_COLORS[i], + label=FIGURE_LABEL[i], bottom=bottom_base, edgecolor='black', linewidth=3) + bottom_base = np.array(y_values[i]) + bottom_base + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL + # mode='expand', + # shadow=False, + # columnspacing=0.25, + # labelspacing=-2.2, + # borderpad=5, + # bbox_transform=ax.transAxes, + # frameon=False, + # columnspacing=5.5, + # handlelength=2, + ) + if allow_legend == True: + handles, labels = figure.get_legend_handles_labels() + if allow_legend == True: + print(handles[::-1], labels[::-1]) + leg = plt.legend(handles[::-1], labels[::-1], + loc='center', + prop=LEGEND_FP, + ncol=3, + bbox_to_anchor=(0.5, 1.2), + handletextpad=0.1, + borderaxespad=0.0, + handlelength=1.8, + labelspacing=0.3, + columnspacing=0.3, + ) + leg.get_frame().set_linewidth(2) + leg.get_frame().set_edgecolor("black") + + # sometimes you may not want to draw legends. + # if allow_legend == True: + # leg=plt.legend(bars, + # FIGURE_LABEL, + # prop=LEGEND_FP, + # loc='right', + # ncol=1, + # # mode='expand', + # bbox_to_anchor=(0.45, 1.1), shadow=False, + # columnspacing=0.1, + # frameon=True, borderaxespad=0.0, handlelength=1.5, + # handletextpad=0.1, + # labelspacing=0.1) + # leg.get_frame().set_linewidth(2) + # leg.get_frame().set_edgecolor("black") + + plt.ylim(0, 100) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 0.5 * width, x_values) + plt.xticks(rotation=30) + + # plt.xlim(0,) + # plt.ylim(0,1) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(6)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + plt.savefig(filename + ".pdf", bbox_inches='tight', format='pdf') diff --git a/benchmark/scripts/testIPM/autoParase.py b/benchmark/scripts/testIPM/autoParase.py new file mode 100644 index 00000000..9375c8e0 --- /dev/null +++ b/benchmark/scripts/testIPM/autoParase.py @@ -0,0 +1,87 @@ +import csv + + +def paraseValidStageNames(a): + nameList = [] + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + nameList.append(R1) + return nameList + + +def paraseValidColums(a, nameList, colTitle): + with open(a, 'r') as f: + reader = csv.reader(f) + # reader = [each for each in csv.DictReader(f, delimiter=',')] + result = list(reader) + rows = len(result) + # print('rows=',rows) + firstRow = result[0] + # print(firstRow) + index = 0 + # define what may attract our interest + idxCpu = 0 + idxName = 0 + idxTitle = 0 + for i in firstRow: + # print(i) + if (i == 'cpu'): + idxCpu = index + if (i == 'name'): + idxName = index + if (i == colTitle): + idxTitle = index + index = index + 1 + # read the valid stages + vdataEntries = 0 + ru = [] + for k in range(1, rows): + if (result[k][idxCpu] != 'NA'): + R1 = ((result[k][idxName])) + for j in range(len(nameList)): + if (R1 == nameList[j]): + s = int(result[k][idxTitle]) + ru.append(s) + break + return ru + + +def maxInList(a): + # a in [[1,2] [3,4]] + inLen = len(a[0]) + ru = [] + index = [] + ti = 0 + for i in range(len(a[0])): + ts = 0 + ti = 0 + for k in range(len(a)): + if (a[k][i] > ts): + ts = a[k][i] + ti = k + ru.append(ts) + index.append(ti) + return ru, index diff --git a/benchmark/scripts/testIPM/config_CPPBCOOFD.csv b/benchmark/scripts/testIPM/config_CPPBCOOFD.csv new file mode 100644 index 00000000..d43c92f9 --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPBCOOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BetaCoOccurringFD.pt,String +useCPP,1,U64 +cppAlgoTag,bcooFD,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/testIPM/config_CPPBCRS.csv b/benchmark/scripts/testIPM/config_CPPBCRS.csv new file mode 100644 index 00000000..3b7ee42c --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPBCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/BernoulliCRS.pt,String +useCPP,1,U64 +cppAlgoTag,bcrs,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/testIPM/config_CPPCOFD.csv b/benchmark/scripts/testIPM/config_CPPCOFD.csv new file mode 100644 index 00000000..28be5d84 --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPCOFD.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,cooFD,String +threads,1,U64 +forceMP,0,U64 \ No newline at end of file diff --git a/benchmark/scripts/testIPM/config_CPPCOUNTERSKETCH.csv b/benchmark/scripts/testIPM/config_CPPCOUNTERSKETCH.csv new file mode 100644 index 00000000..6823e4e2 --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPCOUNTERSKETCH.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,countSketch,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/scripts/testIPM/config_CPPCRS.csv b/benchmark/scripts/testIPM/config_CPPCRS.csv new file mode 100644 index 00000000..a6562ff5 --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPCRS.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRS.pt,String +useCPP,1,U64 +cppAlgoTag,crs,String +threads,1,U64 +forceMP,0,U64 \ No newline at end of file diff --git a/benchmark/scripts/testIPM/config_CPPCRSV2.csv b/benchmark/scripts/testIPM/config_CPPCRSV2.csv new file mode 100644 index 00000000..b94e2d2f --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPCRSV2.csv @@ -0,0 +1,10 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/CRSV2.pt,String +useCPP,1,U64 +cppAlgoTag,crsV2,String +threads,1,U64 +forceMP,1,U64 diff --git a/benchmark/results/threads/MM/14/config_threads14.csv b/benchmark/scripts/testIPM/config_CPPEWS.csv similarity index 57% rename from benchmark/results/threads/MM/14/config_threads14.csv rename to benchmark/scripts/testIPM/config_CPPEWS.csv index a68477f1..1b472672 100644 --- a/benchmark/results/threads/MM/14/config_threads14.csv +++ b/benchmark/scripts/testIPM/config_CPPEWS.csv @@ -1,8 +1,10 @@ key,value,type -aRow,10000,U64 +aRow,100,U64 aCol,1000,U64 bCol,500,U64 -aReduce,10,U64 sketchDimension,25,U64 -threads,14,U64 ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,ews,String +threads,1,U64 +forceMP,1,U64 \ No newline at end of file diff --git a/benchmark/results/threads/MM/12/config_threads12.csv b/benchmark/scripts/testIPM/config_CPPMM.csv similarity index 57% rename from benchmark/results/threads/MM/12/config_threads12.csv rename to benchmark/scripts/testIPM/config_CPPMM.csv index a0bfc782..f12b18f5 100644 --- a/benchmark/results/threads/MM/12/config_threads12.csv +++ b/benchmark/scripts/testIPM/config_CPPMM.csv @@ -1,8 +1,10 @@ key,value,type -aRow,10000,U64 +aRow,100,U64 aCol,1000,U64 bCol,500,U64 -aReduce,10,U64 sketchDimension,25,U64 -threads,12,U64 ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,mm,String +threads,1,U64 +forceMP,0,U64 \ No newline at end of file diff --git a/benchmark/scripts/testIPM/config_CPPSMPPCA.csv b/benchmark/scripts/testIPM/config_CPPSMPPCA.csv new file mode 100644 index 00000000..075ba55e --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPSMPPCA.csv @@ -0,0 +1,9 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +threads,1,U64 +ptFile,torchscripts/WeightedCR.pt,String +useCPP,1,U64 +cppAlgoTag,smp-pca,String \ No newline at end of file diff --git a/benchmark/results/threads/MM/16/config_threads16.csv b/benchmark/scripts/testIPM/config_CPPTOW.csv similarity index 55% rename from benchmark/results/threads/MM/16/config_threads16.csv rename to benchmark/scripts/testIPM/config_CPPTOW.csv index cda63c1a..d72e3a6f 100644 --- a/benchmark/results/threads/MM/16/config_threads16.csv +++ b/benchmark/scripts/testIPM/config_CPPTOW.csv @@ -1,8 +1,10 @@ key,value,type -aRow,10000,U64 +aRow,100,U64 aCol,1000,U64 bCol,500,U64 -aReduce,10,U64 sketchDimension,25,U64 -threads,16,U64 ptFile,torchscripts/RAWMM.pt,String +useCPP,1,U64 +cppAlgoTag,tugOfWar,String +threads,1,U64 +forceMP,1,U64 \ No newline at end of file diff --git a/benchmark/scripts/testIPM/config_CPPWeightedCR.csv b/benchmark/scripts/testIPM/config_CPPWeightedCR.csv new file mode 100644 index 00000000..e92a7939 --- /dev/null +++ b/benchmark/scripts/testIPM/config_CPPWeightedCR.csv @@ -0,0 +1,9 @@ +key,value,type +aRow,10000,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +threads,1,U64 +ptFile,torchscripts/WeightedCR.pt,String +useCPP,1,U64 +cppAlgoTag,weighted-cr,String \ No newline at end of file diff --git a/benchmark/scripts/testIPM/drawTogether.py b/benchmark/scripts/testIPM/drawTogether.py new file mode 100644 index 00000000..fbf1d474 --- /dev/null +++ b/benchmark/scripts/testIPM/drawTogether.py @@ -0,0 +1,221 @@ +#!/usr/bin/env python3 +import csv +import numpy as np +import accuBar as accuBar +import groupBar as groupBar +import groupBar2 as groupBar2 +import groupLine as groupLine +from autoParase import * +import itertools as it +import os + +import matplotlib +import numpy as np +import pylab +import matplotlib.font_manager as fm +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator +import os +import pandas as pd +import sys +from OoOCommon import * +import time + +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 22 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['*', '|', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#FFFFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = (["////", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +scanTag = "aRow" + + +def singleRun(exePath, singleValue, resultPath, configTemplate): + # resultFolder="singleValueTests" + configFname = "config_" + scanTag + str(singleValue) + ".csv" + # configTemplate = "config.csv" + # clear old files + os.system("cd " + exePath + "&& sudo rm *.csv") + + # editConfig(configTemplate, exePath + configFname, "earlierEmitMs", 0) + editConfig(configTemplate, exePath + configFname, scanTag, singleValue) + # prepare new file + # run + #os.system('export OMP_NUM_THREADS=1') + os.system("export OMP_NUM_THREADS=1 &&"+"cd " + exePath + "&& sudo ./benchmark " + configFname) + # copy result + os.system("sudo rm -rf " + resultPath + "/" + str(singleValue)) + os.system("sudo mkdir " + resultPath + "/" + str(singleValue)) + os.system("cd " + exePath + "&& sudo cp *.csv " + resultPath + "/" + str(singleValue)) + + +def runScanVector(exePath, singleValueVec, resultPath, templateName="config.csv"): + for i in singleValueVec: + singleRun(exePath, i, resultPath, templateName) + + +def readResultSingle(singleValue, resultPath): + resultFname = resultPath + "/" + str(singleValue) + "/default.csv" + elapsedTime = readConfig(resultFname, "perfElapsedTime") + cacheMiss = readConfig(resultFname, "cacheMiss") + cacheRefs = readConfig(resultFname, "cacheRefs") + froError = readConfig(resultFname, "froError") + instructions = readConfig(resultFname, "instructions") + errorBoundRatio = readConfig(resultFname, "errorBoundRatio") + return elapsedTime, cacheMiss, cacheRefs, froError, errorBoundRatio,instructions + + +def cleanPath(path): + os.system("sudo rm -rf " + path) + os.system("sudo mkdir " + path) + + +def readResultVector(singleValueVec, resultPath): + elapseTimeVec = [] + cacheMissVec = [] + cacheRefVec = [] + froErrorVec = [] + errorBoundRatioVec = [] + instructionVec=[] + for i in singleValueVec: + elapsedTime, cacheMiss, cacheRefs, froError, errorBoundRatio,ins = readResultSingle(i, resultPath) + elapseTimeVec.append(float(elapsedTime) / 1000.0) + cacheMissVec.append(float(cacheMiss)) + cacheRefVec.append(float(cacheRefs)) + froErrorVec.append(float(froError)) + errorBoundRatioVec.append(float(errorBoundRatio)) + instructionVec.append(float(ins)) + return np.array(elapseTimeVec), np.array(cacheMissVec), np.array(cacheRefVec), np.array(froErrorVec), np.array( + errorBoundRatioVec),np.array(instructionVec) + + +def compareMethod(exeSpace, commonPathBase, resultPaths, csvTemplates, periodVec, reRun=1): + elapsedTimeAll = [] + cacheMissAll = [] + cacheRefAll = [] + periodAll = [] + froAll = [] + errorBoundRatioAll = [] + insAll=[] + memAll=[] + for i in range(len(csvTemplates)): + resultPath = commonPathBase + resultPaths[i] + if (reRun == 1): + os.system("sudo rm -rf " + resultPath) + os.system("sudo mkdir " + resultPath) + runScanVector(exeSpace, periodVec, resultPath, csvTemplates[i]) + elapsedTime, cacheMiss, cacheRef, fro, eb,insv = readResultVector(periodVec, resultPath) + elapsedTimeAll.append(elapsedTime) + cacheMissAll.append(cacheMiss) + cacheRefAll.append(cacheRef) + periodAll.append(periodVec) + cacheMissRateAll = np.array(cacheMissAll) / np.array(cacheRefAll) * 100.0 + froAll.append(fro) + errorBoundRatioAll.append(eb) + insAll.append(insv) + memAll.append(cacheRef) + # periodAll.append(periodVec) + return np.array(elapsedTimeAll), cacheMissRateAll, periodAll, np.array(froAll), np.array(errorBoundRatioAll),np.array(insAll),np.array(memAll) + + +def main(): + exeSpace = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/" + commonBase = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/results/" + scanTag + "IPM/" + figPath = os.path.abspath(os.path.join(os.getcwd(), "../..")) + "/figures/" + scanTag + "CPPIPM" + #methodTags = ["Co-AMM", "BCo-AMM", "Count-sketch", "Tug-of-War", "SMP-PCA", "MM"] + valueVec = [100,200,500,1000,2000,5000] + # run + reRun = 0 + + if (len(sys.argv) < 2): + os.system("mkdir ../../results") + os.system("mkdir ../../figures") + os.system("mkdir " + figPath) + os.system("sudo rm -rf " + commonBase) + os.system("sudo mkdir " + commonBase) + reRun = 1 + # sampling + # resultPaths = ["crs", "bcrs", "ews", "mm","mm-cpp","crs-cpp"] + resultPaths = ["crs", "smp-pca","cofd", "mm"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPSMPPCA.csv","config_CPPCOFD.csv","config_CPPMM.csv"] + methodTags = ["CRS","SMP-PCA", "COFD","MM"] + # csvTemplates = ["config_CRS.csv", "config_BerCRS.csv", "config_EWS.csv", "config_RAWMM.csv","config_CPPMM.csv","config_CPPCRS.csv"] + # methodTags = ["CRS", "Ber-CRS", "EWS",, "MM","MM_CPP","CRS_CPP"] + elapsedTimeAll, cacheMissAll, periodAll, fro, eb,ins,mem = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, + ins, + methodTags, + "#A's row", "instructions", 0, 100, figPath + "/" + scanTag + + "sampling_cpp_ins", + True) + groupLine.DrawFigureYnormal(periodAll, + mem, + methodTags, + "#A's row", "mem access", 0, 100, figPath + "/" + scanTag + + "sampling_cpp_mem", + True) + groupLine.DrawFigureYnormal(periodAll, + ins/mem, + methodTags, + "#A's row", "ipm", 0, 100, figPath + "/" + scanTag + + "sampling_cpp_ipm", + True) + resultPaths = ["crs", "smp-pca", "mm"] + csvTemplates = ["config_CPPCRS.csv", "config_CPPSMPPCA.csv","config_CPPMM.csv"] + methodTags = ["CRS","SMP-PCA", "MM"] + elapsedTimeAll, cacheMissAll, periodAll, fro, eb,ins,mem = compareMethod(exeSpace, commonBase, resultPaths, csvTemplates, + valueVec, + reRun) + groupLine.DrawFigureYnormal(periodAll, + ins, + methodTags, + "#A's row", "instructions", 0, 100, figPath + "/" + scanTag + + "nocofd_cpp_ins", + True) + groupLine.DrawFigureYnormal(periodAll, + mem, + methodTags, + "#A's row", "mem access", 0, 100, figPath + "/" + scanTag + + "nocdfd_cpp_mem", + True) + groupLine.DrawFigureYnormal(periodAll, + ins/mem, + methodTags, + "#A's row", "ipm", 0, 100, figPath + "/" + scanTag + + "nocofd_cpp_ipm", + True) + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,errVec,"95% Latency (ms)","Error","ms","",figPath+"wm_lat") + # draw2yLine("watermark time (ms)",singleValueVecDisp,thrVec,errVec,"Throughput (KTp/s)","Error","KTp/s","",figPath+"wm_thr") + # draw2yLine("watermark time (ms)",singleValueVecDisp,lat95Vec,compVec,"95% Latency (ms)","Completeness","ms","",figPath+"wm_omp") + # groupLine.DrawFigureYnormal([singleValueVec,singleValueVec],[errVec,aqpErrVec],['w/o aqp',"w/ MeanAqp"],"watermark time (ms)","Error",0,1,figPath+"wm_MeanAqp",True) + # print(errVec) + # print(aqpErrVec) + # print(elapseTimeVecFD) + # readResultsingleValue(50,resultPath) + + +if __name__ == "__main__": + main() diff --git a/benchmark/scripts/testIPM/groupBar.py b/benchmark/scripts/testIPM/groupBar.py new file mode 100644 index 00000000..ef2d9842 --- /dev/null +++ b/benchmark/scripts/testIPM/groupBar.py @@ -0,0 +1,236 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 15 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#7FFFFF', '#B03A2E', '#2874A6', '#FFFFFF', '#F5CBA7', '#82E0AA', + '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["////", "\\\\", "//", "o", "*", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.08 + # draw the bars + bars = [] + ts = 0 + pos = 0 + gl = len(y_values[0]) + for i in range(len(y_values)): + pos = pos + 3 * width + for j in range(len(y_values[i])): + pos = pos + width + bar = plt.bar(pos, y_values[i][j], width, hatch=PATTERNS[j], color=LINE_COLORS[j], label=FIGURE_LABEL[j], + edgecolor='black', linewidth=3) + bars.append(bar) + ts = ts + 1 + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=4, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.6), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index, x_values) + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(5)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + plt.ylim(y_min, y_max) + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a lz4_pipe2 empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/testIPM/groupBar2.py b/benchmark/scripts/testIPM/groupBar2.py new file mode 100644 index 00000000..31155695 --- /dev/null +++ b/benchmark/scripts/testIPM/groupBar2.py @@ -0,0 +1,232 @@ +import itertools as it +import os + +import matplotlib +import matplotlib.pyplot as plt +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LogLocator, LinearLocator + +OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 24 +LABEL_FONT_SIZE = 28 +LEGEND_FONT_SIZE = 30 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (["", 'o', 's', 'v', "^", "", "h", "<", ">", "+", "d", "<", "|", "", "+", "_"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#FFFFFF', '#B03A2E', '#2874A6', '#239B56', '#7D3C98', '#00FFFF', '#F1C40F', '#F5CBA7', '#82E0AA', '#AEB6BF', + '#AA4499') +# you may want to change the patterns for different figures +PATTERNS = ( + ["", "////", "\\\\", "//", "o", "", "||", "-", "//", "\\", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", + "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 15.0 +MARKER_FREQUENCY = 1000 + +matplotlib.rcParams['ps.useafm'] = True +matplotlib.rcParams['pdf.use14corefonts'] = True +matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +matplotlib.rcParams['font.family'] = OPT_FONT_NAME +matplotlib.rcParams['pdf.fonttype'] = 42 + +exp_dir = "/data1/xtra" + +FIGURE_FOLDER = exp_dir + '/results/figure' + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LEGEND_FP = FontProperties(style='normal', size=26) + figlegend = pylab.figure(figsize=(16, 0.5)) + bars = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + width = 0.3 + for i in range(len(FIGURE_LABEL)): + bars[i] = ax1.bar(x_values, data, width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], + edgecolor='black', linewidth=3) + + # LEGEND + + figlegend.legend(bars, FIGURE_LABEL, prop=LEGEND_FP, \ + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=True, \ + frameon=True, handlelength=2, handletextpad=0.3, columnspacing=0.5, + borderaxespad=-0.2, fancybox=True + ) + figlegend.savefig(FIGURE_FOLDER + '/' + filename + '.pdf') + + +# draw a bar chart +def DrawFigure(x_values, y_values, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + # values in the x_xis + index = np.arange(len(x_values)) + # the bar width. + # you may need to tune it to get the best figure. + width = 0.12 + # draw the bars + bars = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + bars[i] = plt.bar(index + i * width + width / 2, + y_values[i], width, + hatch=PATTERNS[i], + color=LINE_COLORS[i], + label=FIGURE_LABEL[i], edgecolor='black', linewidth=3) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(bars, FIGURE_LABEL, + prop=LEGEND_FP, + ncol=3, + loc='upper center', + # mode='expand', + shadow=False, + bbox_to_anchor=(0.45, 1.7), + columnspacing=0.1, + handletextpad=0.2, + # bbox_transform=ax.transAxes, + # frameon=True, + # columnspacing=5.5, + # handlelength=2, + ) + + # you may need to tune the xticks position to get the best figure. + plt.xticks(index + 3 * width, x_values, rotation=30) + + # plt.ticklabel_format(axis="y", style="sci", scilimits=(0, 0)) + # plt.grid(axis='y', color='gray') + # figure.get_xaxis().set_major_formatter(matplotlib.ticker.ScalarFormatter()) + + # you may need to tune the xticks position to get the best figure. + # plt.yscale('log') + # + # plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LinearLocator(10)) + # figure.xaxis.set_major_locator(LinearLocator(5)) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + col9 = [] + + for id in it.chain(range(38, 42)): + col9.append(0) + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col1.append(x) + y.append(col1) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col2.append(x) + y.append(col2) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col3.append(x) + y.append(col3) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get the 99th timestamp + col4.append(x) + y.append(col4) + + y.append(col9) # this is a fake empty line to separate eager and lazy. + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col5.append(x) + y.append(col5) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col6.append(x) + y.append(col6) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col7.append(x) + y.append(col7) + + for id in it.chain(range(38, 42)): + file = exp_dir + '/results/latency/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(int(len(read) * 0.95)).strip("\n")) # get last timestamp + col8.append(x) + y.append(col8) + return y + + +if __name__ == "__main__": + x_values = ["Stock", "Rovio", "YSB", "DEBS"] + + y_values = ReadFile() + + legend_labels = ['Lazy:', 'NPJ', 'PRJ', 'MWAY', 'MPASS', + 'Eager:', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', 'PMJ$^{JB}$'] + print(y_values) + DrawFigure(x_values, y_values, legend_labels, + '', 'Latency (ms)', 0, + 400, 'latency_figure_app', False) + + # DrawLegend(legend_labels, 'latency_legend') diff --git a/benchmark/scripts/testIPM/groupLine.py b/benchmark/scripts/testIPM/groupLine.py new file mode 100644 index 00000000..430b855a --- /dev/null +++ b/benchmark/scripts/testIPM/groupLine.py @@ -0,0 +1,369 @@ +import itertools as it +import os +import matplotlib.pyplot as plt +import matplotlib.font_manager as fm +import matplotlib +import numpy as np +import pylab +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import MaxNLocator +from matplotlib.font_manager import FontProperties +from matplotlib.ticker import LinearLocator, LogLocator, MaxNLocator, ScalarFormatter +from numpy import double +import matplotlib.ticker as mtick + +# 获取系统中可用的字体路径 +# font_paths = fm.findSystemFonts() +# OPT_FONT_NAME = 'Helvetica' +TICK_FONT_SIZE = 20 +LABEL_FONT_SIZE = 20 +LEGEND_FONT_SIZE = 20 +LABEL_FP = FontProperties(style='normal', size=LABEL_FONT_SIZE) +LEGEND_FP = FontProperties(style='normal', size=LEGEND_FONT_SIZE) +TICK_FP = FontProperties(style='normal', size=TICK_FONT_SIZE) + +MARKERS = (['o', 's', 'v', "^", "h", "v", ">", "x", "d", "<", "|", "p", "+", "_", "%", "|", "|", "|", "|", "|"]) +# you may want to change the color map for different figures +COLOR_MAP = ( + '#F15854', '#5DA5DA', '#60BD68', '#B276B2', '#DECF3F', '#F17CB0', '#B2912F', '#FAA43A', '#AFAFAF', '#087878', + '#783456', + '#560012', '#431256', "#00AABB", "#AA00BB") +# you may want to change the patterns for different figures +PATTERNS = (["|", "\\", "/", "+", "-", ".", "*", "x", "o", "O", "////", ".", "|||", "o", "---", "+", "\\\\", "*"]) +LABEL_WEIGHT = 'bold' +LINE_COLORS = COLOR_MAP +LINE_WIDTH = 3.0 +MARKER_SIZE = 13.0 +MARKER_FREQUENCY = 1000 + +# matplotlib.rcParams['ps.useafm'] = True +# matplotlib.rcParams['pdf.use14corefonts'] = True +# matplotlib.rcParams['xtick.labelsize'] = TICK_FONT_SIZE +# matplotlib.rcParams['ytick.labelsize'] = TICK_FONT_SIZE +# 创建字体列表 +# Explicitly specify the font path +# 获取系统中可用的字体路径 +font_paths = fm.findSystemFonts() + +# 创建字体列表 +font_list = [] +for font_path in font_paths: + try: + font_name = fm.FontProperties(fname=font_path).get_name() + if font_name not in font_list: + font_list.append(font_name) + except: + pass + +# 配置 matplotlib 使用系统中可用的字体 +plt.rcParams['font.family'] = font_list[0] + +FIGURE_FOLDER = '/data1/xtra/results/figure' + + +# there are some embedding problems if directly exporting the pdf figure using matplotlib. +# so we generate the eps format first and convert it to pdf. +def ConvertEpsToPdf(dir_filename): + os.system("epstopdf --outfile " + dir_filename + ".pdf " + dir_filename + ".eps") + os.system("rm -rf " + dir_filename + ".eps") + + +def DrawLegend(legend_labels, filename): + fig = pylab.figure() + ax1 = fig.add_subplot(111) + FIGURE_LABEL = legend_labels + LINE_WIDTH = 8.0 + MARKER_SIZE = 12.0 + LEGEND_FP = FontProperties(style='normal', size=26) + + figlegend = pylab.figure(figsize=(12, 0.5)) + idx = 0 + lines = [None] * (len(FIGURE_LABEL)) + data = [1] + x_values = [1] + + idx = 0 + for group in range(len(FIGURE_LABEL)): + lines[idx], = ax1.plot(x_values, data, + color=LINE_COLORS[idx], linewidth=LINE_WIDTH, + marker=MARKERS[idx], markersize=MARKER_SIZE, label=str(group)) + idx = idx + 1 + + # LEGEND + figlegend.legend(lines, FIGURE_LABEL, prop=LEGEND_FP, + loc=1, ncol=len(FIGURE_LABEL), mode="expand", shadow=False, + frameon=False, borderaxespad=0.0, handlelength=2) + + if not os.path.exists(FIGURE_FOLDER): + os.makedirs(FIGURE_FOLDER) + # no need to export eps in this case. + figlegend.savefig(filename + '.pdf') + + +# draw a line chart +def DrawFigure(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i]) + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + # mode='expand', + bbox_to_anchor=(0.55, 1.6), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0.0, handlelength=1.5, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + figure.yaxis.set_major_locator(LogLocator(base=10)) + figure.xaxis.set_major_locator(LogLocator(base=10)) + + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureXYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + # plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + + # plt.ylim(y_min, y_max) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + # figure.yaxis.set_major_locator(LogLocator(base=10)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# draw a line chart +def DrawFigureYnormal(xvalues, yvalues, legend_labels, x_label, y_label, y_min, y_max, filename, allow_legend): + # you may change the figure size on your own. + fig = plt.figure(figsize=(10, 3)) + figure = fig.add_subplot(111) + + FIGURE_LABEL = legend_labels + + x_values = xvalues + y_values = yvalues + + lines = [None] * (len(FIGURE_LABEL)) + for i in range(len(y_values)): + lines[i], = figure.plot(x_values[i], y_values[i], color=LINE_COLORS[i], \ + linewidth=LINE_WIDTH, marker=MARKERS[i], \ + markersize=MARKER_SIZE, label=FIGURE_LABEL[i], markeredgecolor='k') + + # sometimes you may not want to draw legends. + if allow_legend == True: + plt.legend(lines, + FIGURE_LABEL, + prop=LEGEND_FP, + loc='upper center', + ncol=3, + bbox_to_anchor=(0.55, 1.5), shadow=False, + columnspacing=0.1, + frameon=True, borderaxespad=0, handlelength=1.2, + handletextpad=0.1, + labelspacing=0.1) + plt.xscale('log') + # plt.yscale('log') + # plt.yscale('log') + + # you may control the limits on your own. + yMax = np.max(y_values) + plt.ylim(y_min, yMax * 1.2) + + plt.grid(axis='y', color='gray') + plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号 + figure.yaxis.set_major_formatter(mtick.FormatStrFormatter('%.1f')) + + figure.yaxis.set_major_locator(LinearLocator(numticks=5)) + # figure.xaxis.set_major_locator(LogLocator(base=10)) + plt.xticks(rotation=0, fontsize=TICK_FONT_SIZE) + figure.get_xaxis().set_tick_params(direction='in', pad=10) + figure.get_yaxis().set_tick_params(direction='in', pad=10) + + plt.xlabel(x_label, fontproperties=LABEL_FP) + plt.ylabel(y_label, fontproperties=LABEL_FP) + + size = fig.get_size_inches() + dpi = fig.get_dpi() + + # plt.show() + plt.savefig(filename + ".pdf", bbox_inches='tight') + + +# example for reading csv file +def ReadFile(): + y = [] + col1 = [] + col2 = [] + col3 = [] + col4 = [] + col5 = [] + col6 = [] + col7 = [] + col8 = [] + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PRJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col1.append(value) + y.append(col1) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/NPJ_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col2.append(value) + y.append(col2) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MPASS_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col3.append(value) + y.append(col3) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/MWAY_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col4.append(value) + y.append(col4) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col5.append(value) + y.append(col5) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/SHJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col6.append(value) + y.append(col6) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JM_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col7.append(value) + y.append(col7) + + for id in it.chain(range(28, 32)): + file = '/data1/xtra/results/timestamps/PMJ_JBCR_NP_{}.txt'.format(id) + f = open(file, "r") + read = f.readlines() + x = float(read.pop(len(read) - 1).strip("\n")) # get last timestamp + value = len(read) / x # get throughput (#items/ms) + col8.append(value) + y.append(col8) + return y + + +if __name__ == "__main__": + # x_values = ['Unique', 'Zipf(0)', 'Zipf(0.2)', 'Zipf(0.4)', 'Zipf(0.8)', 'Zipf(1)'] + x_values = [1600, 3200, 6400, 12800, 25600] + + y_values = ReadFile() + + legend_labels = ['NPJ', 'PRJ', 'MWAY', 'MPASS', 'SHJ$^{JM}$', 'SHJ$^{JB}$', 'PMJ$^{JM}$', + 'PMJ$^{JB}$'] + + DrawFigure(x_values, y_values, legend_labels, + 'Input arrival rate of R (e/ms)', 'Tpt. (#matches/ms)', x_values[0], + x_values[4], 'throughput_figure1_1', False) + +# DrawLegend(legend_labels, 'factor_legend') diff --git a/benchmark/scripts/testIPM/perfRu.csv b/benchmark/scripts/testIPM/perfRu.csv new file mode 100644 index 00000000..9ee43623 --- /dev/null +++ b/benchmark/scripts/testIPM/perfRu.csv @@ -0,0 +1,7 @@ +key,value,type +cacheMiss,12491377,U64 +cacheRefs,35327177,U64 +cpuClock,2478812100,U64 +cpuCycle,9889422467,U64 +instructions,16997458033,U64 +taskClock,2478813000,U64 diff --git a/benchmark/src/Benchmark.cpp b/benchmark/src/Benchmark.cpp index 0a1d9b0f..e9b04fe4 100644 --- a/benchmark/src/Benchmark.cpp +++ b/benchmark/src/Benchmark.cpp @@ -6,154 +6,225 @@ */ #include #include + using namespace std; using namespace INTELLI; using namespace torch; using namespace DIVERSE_METER; -void runSingleThreadTest(std::string configName) { - MeterTable meterTable; - AbstractMeterPtr eMeter = nullptr; - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - ConfigMapPtr breakDownResult= nullptr; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - uint64_t usingMeter = cfg->tryU64("usingMeter", 0, true); - std::string meterTag = cfg->tryString("meterTag", "intelMsr", true); - uint64_t useCPP = cfg->tryU64("useCPP", 0, true); - uint64_t forceMP = cfg->tryU64("forceMP", 0, true); - if (usingMeter) { - eMeter = meterTable.findMeter(meterTag); - if (eMeter != nullptr) { - eMeter->setConfig(cfg); - double staticPower = cfg->tryDouble("staticPower", 0.0, false); - if (staticPower == 0.0) { - eMeter->testStaticPower(2); - } else { - INTELLI_INFO("use pre-defined static power"); - eMeter->setStaticPower(staticPower); - } - INTELLI_INFO("static power is " + to_string(eMeter->getStaticPower()) + " W"); - } else { - INTELLI_ERROR("No meter found: " + meterTag); + +void streamingTest(ConfigMapPtr cfg, torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1) { + uint64_t threads=cfg->tryU64("threads", 1, true); + uint64_t streamingTwoMatrixes=cfg->tryU64("streamingTwoMatrixes", 0, true); + if (threads > 1) { + AMMBench::BlockPartitionStreamer ss; + ss.setConfig(cfg); + torch::Tensor ssC; + if(streamingTwoMatrixes) + { + INTELLI_INFO("Both A,B will be streaming" ); + ssC = ss.streamingAmm2S(A, B, sketchSize); + cout << "completed" << endl; + } + else + { + INTELLI_INFO("Only A will be streaming" ); + ssC = ss.streamingAmm(A, B, sketchSize); + } + auto resultCsv = newConfigMap(); + resultCsv->edit("throughput", (double) ss.getThroughput()); + resultCsv->edit("throughputByElements", (double) (ss.getThroughput() * A.size(1))); + resultCsv->edit("95%latency", (double) ss.getLatencyPercentage(0.95)); + torch::Tensor rawC = torch::matmul(A, B); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(rawC, ssC); + double froBNormal = B.norm().item(); + double errorBoundRatio = froError / froBNormal; + INTELLI_INFO("B normal is " + to_string(froBNormal)); + resultCsv->edit("froError", (double) froError); + resultCsv->edit("errorBoundRatio", (double) errorBoundRatio); + resultCsv->toFile("result_streaming.csv"); + INTELLI_INFO("Done. here is overall result"); + std::cout << resultCsv->toString() << endl; + return; + } + AMMBench::SingleThreadStreamer ss; + ss.setConfig(cfg); + torch::Tensor ssC; + if(streamingTwoMatrixes) + { + INTELLI_INFO("Both A,B will be streaming" ); + ssC = ss.streamingAmm2S(A, B, sketchSize); } + else + { + INTELLI_INFO("Only A will be streaming" ); + ssC = ss.streamingAmm(A, B, sketchSize); + } + auto resultCsv = newConfigMap();; + resultCsv->edit("throughput", (double) ss.getThroughput()); + resultCsv->edit("throughputByElements", (double) (ss.getThroughput() * A.size(1))); + resultCsv->edit("95%latency", (double) ss.getLatencyPercentage(0.95)); + INTELLI_WARNING("evaluating the error, may takes some time"); + torch::Tensor rawC = torch::matmul(A, B); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(rawC, ssC); + double froBNormal = B.norm().item(); + double errorBoundRatio = froError / froBNormal; + INTELLI_INFO("B normal is " + to_string(froBNormal)); + resultCsv->edit("froError", (double) froError); + resultCsv->edit("errorBoundRatio", (double) errorBoundRatio); + resultCsv->toFile("result_streaming.csv"); + INTELLI_INFO("Done. here is overall result"); + std::cout << resultCsv->toString() << endl; + return; +} - } - UtilityFunctions::bind2Core((int) coreBind); - //torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); +void runSingleThreadTest(std::string configName) { + MeterTable meterTable; + AbstractMeterPtr eMeter = nullptr; + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + ConfigMapPtr breakDownResult = nullptr; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + uint64_t usingMeter = cfg->tryU64("usingMeter", 0, true); + std::string meterTag = cfg->tryString("meterTag", "intelMsr", true); + uint64_t useCPP = cfg->tryU64("useCPP", 0, true); + uint64_t forceMP = cfg->tryU64("forceMP", 0, true); + if (usingMeter) { + eMeter = meterTable.findMeter(meterTag); + if (eMeter != nullptr) { + eMeter->setConfig(cfg); + double staticPower = cfg->tryDouble("staticPower", 0.0, false); + if (staticPower == 0.0) { + eMeter->testStaticPower(2); + } else { + INTELLI_INFO("use pre-defined static power"); + eMeter->setStaticPower(staticPower); + } + INTELLI_INFO("static power is " + to_string(eMeter->getStaticPower()) + " W"); + } else { + INTELLI_ERROR("No meter found: " + meterTag); + } - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - torch::Tensor C; - //555 - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - uint64_t threads = cfg->tryU64("threads", 0, true); - ThreadPerf pef(-1); - pef.setPerfList(); - AMMBench::BlockPartitionRunner br; - if (threads > 1 || forceMP) { - INTELLI_WARNING("use multithread"); - br.setConfig(cfg); - br.createABC(A, B); - if (eMeter != nullptr) { - eMeter->startMeter(); } - pef.start(); - C = br.parallelForward(); - pef.end(); - if (eMeter != nullptr) { - eMeter->stopMeter(); - } - breakDownResult=br.getBreakDown(); - } else { - AMMBench::CPPAlgoTable cppAlgoTable; - std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); - AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); - cppAlgoPtr->setConfig(cfg); - INTELLI_WARNING("single thread, algo " + cppAlgoTag); - if (eMeter != nullptr) { - eMeter->startMeter(); + UtilityFunctions::bind2Core((int) coreBind); + //torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + torch::Tensor C; + uint64_t isStreaming = cfg->tryU64("isStreaming", 0, true); + if (isStreaming) { + streamingTest(cfg, A, B, sketchDimension); + return; } - pef.start(); - if (useCPP && cppAlgoPtr) { - INTELLI_WARNING("this is pure c++"); - C = cppAlgoPtr->amm(A, B, sketchDimension); + //555 + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + uint64_t threads = cfg->tryU64("threads", 0, true); + ThreadPerf pef(-1); + pef.setPerfList(); + AMMBench::BlockPartitionRunner br; + if (threads > 1 || forceMP) { + INTELLI_WARNING("use multithread"); + br.setConfig(cfg); + br.createABC(A, B); + if (eMeter != nullptr) { + eMeter->startMeter(); + } + pef.start(); + C = br.parallelForward(); + pef.end(); + if (eMeter != nullptr) { + eMeter->stopMeter(); + } + breakDownResult = br.getBreakDown(); } else { - C =module.forward({A, B, (long) sketchDimension}).toTensor(); + AMMBench::CPPAlgoTable cppAlgoTable; + std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); + cppAlgoPtr->setConfig(cfg); + INTELLI_WARNING("single thread, algo " + cppAlgoTag); + if (eMeter != nullptr) { + eMeter->startMeter(); + } + pef.start(); + if (useCPP && cppAlgoPtr) { + INTELLI_WARNING("this is pure c++"); + C = cppAlgoPtr->amm(A, B, sketchDimension); + } else { + C =module.forward({A, B, (long) sketchDimension}).toTensor(); + } + pef.end(); + if (eMeter != nullptr) { + eMeter->stopMeter(); + } + if (useCPP && cppAlgoPtr) { + breakDownResult = cppAlgoPtr->getBreakDown(); + } } - pef.end(); + + std::string ruName = "default"; + + auto resultCsv = pef.resultToConfigMap(); if (eMeter != nullptr) { - eMeter->stopMeter(); + eMeter->stopMeter(); + double energyConsumption = eMeter->getE(); + double staticEnergyConsumption = eMeter->getStaicEnergyConsumption( + resultCsv->tryU64("perfElapsedTime", 0, false)); + double pureEnergy = energyConsumption - staticEnergyConsumption; + resultCsv->edit("energyAll", (double) energyConsumption); + resultCsv->edit("energyOnlyMe", (double) pureEnergy); } - if(useCPP && cppAlgoPtr) - { - breakDownResult=cppAlgoPtr->getBreakDown(); + if (threads > 1 || forceMP) { + INTELLI_WARNING("consider multithread elapsed time"); + resultCsv->edit("perfElapsedTime", (uint64_t) br.getElapsedTime()); + br.appendThreadInfo(resultCsv); + } + // error + INTELLI_WARNING("evaluating the error, may takes some time"); + torch::Tensor realC = torch::matmul(A, B); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, C); + double froBNormal = B.norm().item(); + double errorBoundRatio = froError / froBNormal; + INTELLI_INFO("B normal is " + to_string(froBNormal)); + resultCsv->edit("froError", (double) froError); + resultCsv->edit("errorBoundRatio", (double) errorBoundRatio); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is overall result"); + std::cout << resultCsv->toString() << endl; + if (breakDownResult) { + INTELLI_INFO("I also have some break down result"); + std::cout << breakDownResult->toString() << endl; + breakDownResult->toFile(ruName + "_breakdown.csv"); } - } - - std::string ruName = "default"; - - auto resultCsv = pef.resultToConfigMap(); - if (eMeter != nullptr) { - eMeter->stopMeter(); - double energyConsumption = eMeter->getE(); - double staticEnergyConsumption = eMeter->getStaicEnergyConsumption(resultCsv->tryU64("perfElapsedTime", 0, false)); - double pureEnergy = energyConsumption - staticEnergyConsumption; - resultCsv->edit("energyAll", (double) energyConsumption); - resultCsv->edit("energyOnlyMe", (double) pureEnergy); - } - if (threads > 1 || forceMP) { - INTELLI_WARNING("consider multithread elapsed time"); - resultCsv->edit("perfElapsedTime", (uint64_t) br.getElapsedTime()); - br.appendThreadInfo(resultCsv); - } - // error - INTELLI_WARNING("evaluating the error, may takes some time"); - torch::Tensor realC = torch::matmul(A, B); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, C); - double froBNormal = B.norm().item(); - double errorBoundRatio = froError / froBNormal; - INTELLI_INFO("B normal is " + to_string(froBNormal)); - resultCsv->edit("froError", (double) froError); - resultCsv->edit("errorBoundRatio", (double) errorBoundRatio); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is overall result"); - std::cout << resultCsv->toString() << endl; - if(breakDownResult) - { - INTELLI_INFO("I also have some break down result"); - std::cout << breakDownResult->toString() << endl; - breakDownResult->toFile(ruName+"_breakdown.csv"); - } } int main(int argc, char **argv) { - string configName, outPrefix = ""; - if (argc >= 2) { - configName += argv[1]; - } else { - configName = "config.csv"; - } - runSingleThreadTest(configName); - return 0; + string configName, outPrefix = ""; + if (argc >= 2) { + configName += argv[1]; + } else { + configName = "config.csv"; + } + runSingleThreadTest(configName); + return 0; } diff --git a/benchmark/src/BenchmarkPCA.cpp b/benchmark/src/BenchmarkPCA.cpp new file mode 100644 index 00000000..1c19e5f5 --- /dev/null +++ b/benchmark/src/BenchmarkPCA.cpp @@ -0,0 +1,142 @@ +/*! \file Benchmark.h*/ + +/** + * @brief This is the main entry point of the entire program. + * We use this as the entry point for benchmarking. + */ +#include +#include +#include + +using namespace std; +using namespace INTELLI; +using namespace torch; +using namespace DIVERSE_METER; +using namespace AMMBench; + +void benchmarkPCA(std::string configName){ + + INTELLI_INFO("Running Benchmark PCA"); + + // Step1. Set up environments + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + + + AMMBench::MatrixLoaderTable mLoaderTable; + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "SIFT", true); + INTELLI_INFO("matrixLoaderTag: " + matrixLoaderTag); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + INTELLI_INFO("sketchDimension: " + sketchDimension); + + Streamer streamer; + torch::Tensor C = streamer.run(cfg, A, B, sketchDimension); + + /*// 1.4 coreBind + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + INTELLI_INFO("1.4 corebind:" + to_string(coreBind)); + + // 1.5 Meter + // MeterTable meterTable; + // AbstractMeterPtr eMeter = nullptr; + // uint64_t usingMeter = cfg->tryU64("usingMeter", 0, true); + // std::string meterTag = cfg->tryString("meterTag", "intelMsr", true); + // INTELLI_INFO("1.5 meterTag:" + meterTag); + // if (usingMeter) { + // eMeter = meterTable.findMeter(meterTag); + // if (eMeter != nullptr) { + // eMeter->setConfig(cfg); + // double staticPower = cfg->tryDouble("staticPower", 0.0, false); + // if (staticPower == 0.0) { + // eMeter->testStaticPower(2); + // } else { + // INTELLI_INFO("use pre-defined static power"); + // eMeter->setStaticPower(staticPower); + // } + // INTELLI_INFO("static power is " + to_string(eMeter->getStaticPower()) + " W"); + // } else { + // INTELLI_ERROR("No meter found: " + meterTag); + // } + // } + + // 1.6 ThreadPerf + ThreadPerf pef(-1); + pef.setPerfList(); + + // Step2. Test elapsedTime and error on AMM in streaming and parallelism + // 2.1 Run AMM + // TODO Fow now, use single thread + no streaming, later will change + INTELLI_INFO("2.1 no streaming, single thread, force MP"); + AMMBench::BlockPartitionRunner br; + br.setConfig(cfg); + br.createABC(A, B); + + // if (eMeter != nullptr) { + // eMeter->startMeter(); + // } + struct timeval tstart, tend; + // pef.start(); + torch::Tensor C = br.parallelForward(); // TODO change here, run a function that execute AMM in streaming/non-streaming and single-thread/multi-thread according to the config file + // pef.end(); + // if (eMeter != nullptr) { + // eMeter->stopMeter(); + // }*/ + + // 2.2 elapsed time and error for AMM + ConfigMapPtr resultCsv = streamer.getMetrics(); + // auto resultCsv = pef.resultToConfigMap(); + // if (eMeter != nullptr) { + // double energyConsumption = eMeter->getE(); + // double staticEnergyConsumption = eMeter->getStaicEnergyConsumption(resultCsv->tryU64("perfElapsedTime", 0, false)); + // double pureEnergy = energyConsumption - staticEnergyConsumption; + // resultCsv->edit("energyAll", (double) energyConsumption); + // resultCsv->edit("energyOnlyMe", (double) pureEnergy); + // } + resultCsv->edit("AMMElapsedTime", resultCsv->getU64("elapsedTime")); + + torch::Tensor realC = torch::matmul(A, B); + resultCsv->edit("AMMError", resultCsv->getDouble("froError")); + + // Step3. Test accuracy on PCA task + // 3.1 elapsed time for other tasks in PCA except AMM + struct timeval tstart, tend; + gettimeofday(&tstart, NULL); + torch::Tensor UCovC; + torch::Tensor SCovC; + torch::Tensor VhCovC; + torch::Tensor covC = C/A.size(1); + std::tie(UCovC, SCovC, VhCovC) = torch::linalg::svd(covC, false, c10::nullopt); + gettimeofday(&tend, NULL); + resultCsv->edit("ElseElapsedTime", (uint64_t) INTELLI::UtilityFunctions::timeLast(tstart, tend)); + + // 3.2 PCA relative spectral error + torch::Tensor covRealC = realC/A.size(1); + double relativeSpectralNormError = INTELLI::UtilityFunctions::relativeSpectralNormError(covRealC, covC); + resultCsv->edit("PCAError", (double) relativeSpectralNormError); + + // 3.3 Save results + std::string ruName = "PCA"; + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is overall result"); + std::cout << resultCsv->toString() << endl; +} + +int main(int argc, char **argv) { + string configName, outPrefix = ""; + if (argc >= 2) { + configName += argv[1]; + } else { + configName = "config.csv"; + } + benchmarkPCA(configName); + return 0; +} + diff --git a/benchmark/torchscripts/FastJLT.pt b/benchmark/torchscripts/FastJLT.pt new file mode 100644 index 00000000..f10f0fe0 Binary files /dev/null and b/benchmark/torchscripts/FastJLT.pt differ diff --git a/benchmark/torchscripts/FastJLT.py b/benchmark/torchscripts/FastJLT.py new file mode 100644 index 00000000..e7ec6ada --- /dev/null +++ b/benchmark/torchscripts/FastJLT.py @@ -0,0 +1,75 @@ +import torch +import time +import os +import math + +def hadamard_transform_matrix(n: int) -> torch.Tensor: + H = torch.tensor([[1.]]) + i = 1 + while i < n: + H_top = torch.cat((H, H), dim=1) + H_bottom = torch.cat((H, -H), dim=1) + H = torch.cat((H_top, H_bottom), dim=0) + i *= 2 + return H + + +@torch.jit.script +def FastJLT(A: torch.Tensor, B: torch.Tensor, d: int): + N, D = A.shape + M = B.shape[1] + + # Pad A and B for FHT + log2_D = int(torch.ceil(torch.log2(torch.tensor(D)))) + D_pad = int(2 ** log2_D) + A_pad = torch.zeros((N, D_pad)) + A_pad[:, :D] = A + B_pad = torch.zeros((D_pad, M)) + B_pad[:D] = B + + # Construct and apply random signs for each dimension + randsigns = (torch.randint(0, 2, size=(D_pad,)) * 2 - 1).float() + randsigns *= 1.0 / torch.sqrt(D_pad) + A_pad *= randsigns + B_pad *= randsigns.view(-1, 1) + + # Apply Fast Hadamard Transform + H = hadamard_transform_matrix(D_pad) + A_pad = A_pad @ H + B_pad = H @ B_pad + + # Dimensionality reduction + keep_prob = log2_D * log2_D / D_pad + P = (torch.rand((D_pad, d)) > keep_prob).float() + P *= torch.randn(P.shape[0], P.shape[1]) * (d/keep_prob) + P *= 1.0 / torch.linalg.norm(P, dim=0) + + return (A_pad @ P) @ (P.t() @ B_pad) + + +def main(): + width = 1000 + A = torch.rand(10000, width) + B = torch.rand(width, 5000) + + t = time.time() + + aResult = FastJLT(A, B, 500) + print("approximate: " + str(time.time() - t) + "s") + + print(aResult) + + # exact result + t = time.time() + eResult = torch.matmul(A, B) + print("\nExact: " + str(time.time() - t) + "s") + + print(eResult) + + print("\nerror: " + str(torch.norm(aResult - eResult, p='fro').item())) + + FastJLT_script = FastJLT.save("FastJLT.pt") + + +if __name__ == '__main__': + main() diff --git a/benchmark/torchscripts/PQ/PQ.cpp b/benchmark/torchscripts/PQ/PQ.cpp new file mode 100644 index 00000000..857fd598 --- /dev/null +++ b/benchmark/torchscripts/PQ/PQ.cpp @@ -0,0 +1,72 @@ +#include +#include + +int main() { + const int N = 3000; + const int D = 1000; + const int M = 2000; + const int C = 10; + const int K = 16; + const int D_c = D / C; + + torch::Tensor A = torch::rand({N, D}); + torch::Tensor B = torch::rand({D, M}); + + std::vector prototypes; + std::ifstream in_file("/home/haolan/PQ/prototypes.pt", std::ios::binary); + if (!in_file.is_open()) { + std::cerr << "Error opening file prototypes.pt\n"; + return 1; + } + torch::load(prototypes, in_file); + + std::vector A_encoded; + + for (int i = 0; i < A.size(0); ++i) { + auto a = A[i]; + std::vector a_encoded; + + for (int c = 0; c < C; ++c) { + torch::Tensor prototypes_c = prototypes[c]; + torch::Tensor a_subvector = a.slice(0, c * D_c, (c + 1) * D_c); + + torch::Tensor distances = torch::norm(prototypes_c - a_subvector.expand_as(prototypes_c), 1); + torch::Tensor closest_prototype_index = torch::argmin(distances); + a_encoded.push_back(closest_prototype_index); + } + A_encoded.push_back(torch::stack(a_encoded)); + } + torch::Tensor A_encoded_tensor = torch::stack(A_encoded); + + std::vector tables; + + for (int c = 0; c < C; ++c) { + torch::Tensor prototypes_c = prototypes[c]; + torch::Tensor B_subspace = B.slice(0, c * D_c, (c + 1) * D_c); + + std::vector table_c; + for (int i = 0; i < prototypes_c.size(0); ++i) { + auto prototype = prototypes_c[i]; + torch::Tensor dot_products = prototype.matmul(B_subspace); + table_c.push_back(dot_products); + } + tables.push_back(torch::stack(table_c)); + } + + std::vector result; + + for (int i = 0; i < A_encoded_tensor.size(0); ++i) { + auto a_encoded = A_encoded_tensor[i]; + torch::Tensor row_sum = torch::zeros({B.size(1)}); + for (int c = 0; c < C; ++c) { + int prototype_index = a_encoded[c].item(); + torch::Tensor table_c = tables[c]; + torch::Tensor dot_products = table_c[prototype_index]; + row_sum += dot_products; + } + result.push_back(row_sum); + } + torch::Tensor result_tensor = torch::stack(result); + + return 0; +} diff --git a/benchmark/torchscripts/PQ/PQ.py b/benchmark/torchscripts/PQ/PQ.py new file mode 100644 index 00000000..3747667f --- /dev/null +++ b/benchmark/torchscripts/PQ/PQ.py @@ -0,0 +1,239 @@ +import torch + +import time + + +def kmeans(X, K, max_iters=100): + N, D = X.shape + + # Randomly initialize centroids + centroids = X[torch.randperm(N)[:K]] + + for _ in range(max_iters): + # Calculate distances between data points and centroids + distances = torch.cdist(X, centroids) + + # Assign data points to the nearest centroid + labels = torch.argmin(distances, dim=1) + + # Update centroids + for k in range(K): + if torch.sum(labels == k) > 0: + centroids[k] = torch.mean(X[labels == k], dim=0) + + return centroids, labels + + +class MyModule(torch.nn.Module): + def __init__(self, prototypes): + super(MyModule, self).__init__() + # self.fc = torch.nn.Linear(10, 5) + self.prototypes = torch.nn.Parameter(prototypes) + self.QA = torch.nn.Parameter(torch.rand(5, 5)) + # self.register_parameter("prototypes", self.prototypes) + + def forward(self, A: torch.Tensor): + return torch.matmul(A, A.T) + torch.sum(self.prototypes[0]) + torch.sum(self.QA) + + +def save_model(model, path, X): + tx = X.to('cpu') + # tx=X + model2 = model.to('cpu') + # model2=model + # model2.eval() + X = torch.tensor([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0]) + + traced_model = torch.jit.script(model2) + ru = traced_model(tx) + + traced_model.save(path) + + +def main(): + learning = True + + N = 200 + D = 100 + M = 200 + + A = torch.rand(N, D) + B = torch.rand(D, M) + + trainingSet = None + if learning: + num_matrices = 10 + matrices = [torch.rand(N, D) for _ in range(num_matrices)] + trainingSet = torch.cat(matrices, dim=1) + + # Number of subspaces + C = 10 + + # Number of prototypes per subspace + K = 16 + + # Calculate dimension of each subspace + D_c = D // C + + # Initialize a list to hold prototypes for each subspace + prototypes = [] + + if trainingSet != None: + print("Starting prototypes learning on training set size of " + + str(trainingSet.shape[0]) + ", " + str(trainingSet.shape[1])) + t = time.time() + + for c in range(C): + # Get the indices for this subspace + subspace_indices = range(c * D_c, (c + 1) * D_c) + + # Slice the matrix A to get the subspace + A_subspace = trainingSet[:, subspace_indices] + + # Convert to numpy for KMeans + A_subspace_np = A_subspace.detach().numpy() + + # Run KMeans on the subspace + centroids_torch, LB = kmeans(A_subspace, K, 10) + + # Get the centroids (prototypes) + # centroids = kmeans.cluster_centers_ + + # Convert back to PyTorch tensor + # centroids_torch = torch.from_numpy(centroids) + + # Append to the list of prototypes + prototypes.append(centroids_torch) + + # Now prototypes[c] gives the K prototypes for subspace c + + print("\nPrototype Learning: " + str(time.time() - t) + "s") + model = MyModule(torch.stack(prototypes)) + save_model(model.to('cpu'), "prototypes.pt", torch.zeros(5, 5)) + # model.save_model("prototypes.pt") + # torch.save(prototypes, 'prototypes.pt') + + else: + print("Loading prototypes from serialized pickle file\n") + prototypes = torch.load('prototypes.pt') + + # Initialize an empty list to store the encoded rows of A + A_encoded = [] + + total = time.time() + + for a in A: + # Initialize an empty list to store the encodings for this row + a_encoded = [] + + for c in range(C): + # Get the prototypes for this subspace + prototypes_c = prototypes[c] + + # Get the subvector for this subspace + a_subvector = a[c * D_c: (c + 1) * D_c] + + # Calculate the distances from the subvector to each prototype + distances = torch.norm(prototypes_c - a_subvector, dim=1) + + # Find the index of the closest prototype + closest_prototype_index = torch.argmin(distances) + + # Append this index to the encoded row + a_encoded.append(closest_prototype_index) + + # Convert the list of encoded subvectors to a PyTorch tensor + a_encoded_tensor = torch.tensor(a_encoded) + + # Append this encoded row to the list of all encoded rows + A_encoded.append(a_encoded_tensor) + + # Convert the list of all encoded rows to a PyTorch tensor + A_encoded_tensor = torch.stack(A_encoded) + + # Now A_encoded_tensor is the encoded version of A + + print("Encoding Function: " + str(time.time() - total) + "s") + + # Assume that B is a PyTorch tensor of size D x M + + # Initialize a list to store the tables for each subspace + tables = [] + + t = time.time() + + for c in range(C): + # Get the prototypes for this subspace + prototypes_c = prototypes[c] + + # Slice B to get the corresponding subspace + B_subspace = B[c * D_c: (c + 1) * D_c, :] + + # Initialize an empty list to store the table for this subspace + table_c = [] + + for prototype in prototypes_c: + # Calculate the dot product of the prototype with each column in B_subspace + dot_products = torch.matmul(prototype, B_subspace) + + # Append the dot products to the table for this subspace + table_c.append(dot_products) + + # Convert the table for this subspace to a PyTorch tensor + table_c_tensor = torch.stack(table_c) + + # Append the table for this subspace to the list of all tables + tables.append(table_c_tensor) + + # Now tables[c] gives the lookup table for subspace c + + print("Table Construction: " + str(time.time() - t) + "s") + + # Initialize a list to store the result of the approximated matrix product + result = [] + + t = time.time() + + # Iterate over the encoded rows of A + for a_encoded in A_encoded_tensor: + # Initialize a tensor to store the sum of the dot products for this row + row_sum = torch.zeros(B.size(1)) + + # Iterate over each subspace + for c in range(C): + # Get the index of the closest prototype for this subspace + prototype_index = a_encoded[c].item() + + # Get the lookup table for this subspace + table_c = tables[c] + + # Get the dot products for the closest prototype + dot_products = table_c[prototype_index] + + # Add these dot products to the sum for this row + row_sum += dot_products + + # Append the sum for this row to the list of all rows + result.append(row_sum) + + # Convert the list of all rows to a PyTorch tensor + result_tensor = torch.stack(result) + + print("Aggregation: " + str(time.time() - t) + "s") + print("\nTotal: " + str(time.time() - total) + "s") + + # Now result_tensor is the approximated matrix product + print("\nApproximate Result") + print(result_tensor) + + print("\nExact Result") + t = time.time() + eResult = torch.matmul(A, B) + print("Exact time: " + str(time.time() - t) + "s") + print(eResult) + print("\nerror: " + str(torch.norm(result_tensor - eResult, p='fro').item())) + print(len(prototypes), torch.stack(prototypes).size()) + + +if __name__ == '__main__': + main() diff --git a/benchmark/torchscripts/PQ/prototypes.pt b/benchmark/torchscripts/PQ/prototypes.pt new file mode 100644 index 00000000..9661f33f Binary files /dev/null and b/benchmark/torchscripts/PQ/prototypes.pt differ diff --git a/benchmark/torchscripts/SRHT.pt b/benchmark/torchscripts/SRHT.pt new file mode 100644 index 00000000..970df099 Binary files /dev/null and b/benchmark/torchscripts/SRHT.pt differ diff --git a/benchmark/torchscripts/SRHT.py b/benchmark/torchscripts/SRHT.py new file mode 100644 index 00000000..df271b0c --- /dev/null +++ b/benchmark/torchscripts/SRHT.py @@ -0,0 +1,64 @@ +import torch +import time + +@torch.jit.script +def SRHT(A: torch.Tensor, B: torch.Tensor, m: int): + # Get the dimension of A + A = A.t() + assert A.shape[0] == B.shape[0] + n = A.shape[0] + + # a diagonal matrix D with entries either -1 or 1 + diag_elements = torch.randint(2, (n,), dtype=torch.float32) * 2 - 1 + D = torch.diag(diag_elements) + + # unnormalized Hadamard transform matrix H + l = int(2 ** int(torch.ceil(torch.log2(torch.tensor(n))))) + H = torch.empty(l, l) + + for i in range(l): + for j in range(l): + H[i, j] = (-1) ** (bin(i & j).count('1') % 2) + H = H[:n, :n] + + # Random subsampling matrix S + S = torch.zeros((m, n)) + for i in range(m): + idx = torch.randint(n, (1,)).item() + S[i, int(idx)] = 1 + + Pi = (1 / torch.sqrt(torch.tensor(m).float())) * torch.matmul(torch.matmul(S, H), D) + A_transform = torch.matmul(Pi, A) + B_transform = torch.matmul(Pi, B) + return torch.matmul(A_transform.t(), B_transform) + +def main(): + + width = 500 + A = torch.rand(1000, width) + B = torch.rand(width, 1000) + + + t = time.time() + + aResult = SRHT(A, B, 100) + print("approximate: " + str(time.time() - t) + "s") + + print(aResult) + + # exact result + t = time.time() + eResult = torch.matmul(A, B) + print("\nExact: " + str(time.time() - t) + "s") + + print(eResult) + + difference = aResult - eResult + print("\nFrobenius norm error: " + str(torch.linalg.norm(difference, ord='fro').item())) + print("\nSpectral norm bound: " + str(torch.linalg.norm(difference, ord=2).item())) + + script = SRHT.save("SRHT.pt") + +if __name__ == '__main__': + main() + \ No newline at end of file diff --git a/benchmark/torchscripts/VQ/columnCodeBookX.txt b/benchmark/torchscripts/VQ/columnCodeBookX.txt new file mode 100644 index 00000000..ce24dd85 --- /dev/null +++ b/benchmark/torchscripts/VQ/columnCodeBookX.txt @@ -0,0 +1 @@ +0.79401,0.683636,0.337546,0.949712,0.993845,0.926397,0.214591,0.0646018,0.307293,0.703267,0.00292861,0.449543,0.247335,0.540073,0.99651,0.662832,0.939279,0.362235,0.933234,0.830107,0.790355,0.10754,0.377184,0.137209,0.18097,0.429345,0.118154,0.527965,0.390043,0.987062,0.333461,0.309999,0.477417,0.102914,0.283693,0.206155,0.850777,0.280155,0.616982,0.550913,0.928121,0.756739,0.13694,0.351343,0.184546,0.396572,0.378033,0.392284,0.680936,0.300261,0.238848,0.352426,0.600337,0.0600954,0.578847,0.392496,0.51948,0.480381,0.375494,0.234228,0.162886,0.460998,0.0162383,0.170324,0.730512,0.0433595,0.961543,0.0564699,0.463762,0.345949,0.277477,0.144188,0.232306,0.0776067,0.440553,0.691948,0.905107,0.125282,0.49873,0.607354,0.74193,0.678608,0.300106,0.983771,0.809794,0.601544,0.971413,0.452317,0.741327,0.000641465,0.471817,0.352782,0.387952,0.764025,0.253369,0.408361,0.556356,0.386175,0.127676,0.264219,0.425081,0.329303,0.317859,0.824768,0.50088,0.901042,0.815001,0.137764,0.705415,0.0180847,0.475032,0.210472,0.328548,0.0984842,0.502879,0.0414225,0.180186,0.755638,0.838528,0.800661,0.409427,0.728569,0.76314,0.0305668,0.601849,0.00109446,0.404442,0.310231,0.738333,0.529743,0.789898,0.520501,0.310274,0.712566,0.282201,0.846899,0.468758,0.823244,0.730761,0.200787,0.105196,0.77599,0.258303,0.479359,0.180152,0.0467079,0.859692,0.100805,0.143304,0.715089,0.32588,0.947863,0.0944071,0.201069,0.0478493,0.762758,0.538763,0.898413,0.344602,0.553529,0.669539,0.309341,0.258503,0.111432,0.913745,0.338053,0.292972,0.980586,0.0636312,0.232872,0.302674,0.483322,0.313349,0.210473,0.902342,0.51082,0.465191,0.33393,0.744633,0.234947,0.987191,0.489536,0.118712,0.41906,0.219322,0.300424,0.63488,0.273248,0.786866,0.888142,0.872117,0.973409,0.866361,0.982993,0.805244,0.803826,0.219142,0.141909,0.892553,0.740481,0.517084,0.0688239,0.552514,0.840339,0.451787,0.554083,0.826862,0.213452,0.290525,0.597605,0.973051,0.445584,0.965175,0.500139,0.189363,0.405801,0.108251,0.41995,0.672317,0.429877,0.0470076,0.781641,0.805283,0.567874,0.0239438,0.0920578,0.444228,0.154297,0.0637425,0.594278,0.513352,0.467191,0.353405,0.586105,0.980968,0.303209,0.529494,0.949147,0.511137,0.39058,0.821477,0.0807697,0.460757,0.917009,0.347832,0.777599,0.899472,0.7536,0.106997,0.297223,0.671641,0.125899,0.338931,0.459955,0.349147,0.287794,0.737449,0.741304,0.165494,0.434739,0.487515,0.395524,0.0690824,0.232868,0.288257,0.849823,0.150409,0.890556,0.280066,0.409007,0.324585,0.145224,0.257262,0.454963,0.0712802,0.0744907,0.606339,0.995261,0.976591,0.311694,0.254369,0.323563,0.0214844,0.795571,0.691193,0.310934,0.217121,0.380138,0.944781,0.0173402,0.705664,0.0905026,0.195359,0.733096,0.507438,0.731748,0.119013,0.0251074,0.106958,0.257864,0.868877,0.663232,0.396884,0.723006,0.856271,0.024171,0.930854,0.867857,0.429677,0.561579,0.624016,0.313344,0.786775,0.804097,0.830646,0.548124,0.828656,0.891907,0.353071,0.726662,0.0342807,0.164092,0.107443,0.51945,0.899246,0.607787,0.669578,0.140502,0.92616,0.856311,0.983664,0.237792,0.42038,0.90073,0.129106,0.331268,0.0836789,0.133115,0.289963,0.264101,0.779034,0.932526,0.323116,0.353056,0.483441,0.615535,0.246017,0.177953,0.790988,0.971343,0.957111,0.0139955,0.768565,0.969106,0.299834,0.883909,0.514627,0.604915,0.816736,0.884486,0.280608,0.847651,0.186969,0.757434,0.509085,0.281706,0.545064,0.917403,0.692553,0.0148526,0.614491,0.780403,0.985466,0.789614,0.986897,0.735614,0.94209,0.00456899,0.00899523,0.795387,0.952687,0.601688,0.337208,0.230346,0.187053,0.117252,0.605641,0.577379,0.0201025,0.737029,0.848736,0.844266,0.948231,0.691397,0.864476,0.0127603,0.23024,0.968695,0.315629,0.513967,0.276956,0.0555069,0.501974,0.192432,0.885717,0.763607,0.0691749,0.980939,0.946141,0.730234,0.814149,0.537021,0.467156,0.137063,0.967316,0.6915,0.308159,0.677176,0.689767,0.404853,0.230614,0.579241,0.932409,0.626183,0.694922,0.519766,0.407758,0.66041,0.960102,0.763167,0.560193,0.420293,0.200952,0.0157143,0.464932,0.26178,0.704091,0.956391,0.341765,0.230828,0.427744,0.188994,0.239647,0.955875,0.288743,0.992021,0.415458,0.874047,0.621889,0.649408,0.465066,0.337865,0.998578,0.329336,0.406483,0.113039,0.584883,0.312253,0.155156,0.836789,0.541329,0.38617,0.920511,0.662147,0.469581,0.508046,0.684145,0.398924,0.558386,0.288579,0.857659,0.0934567,0.107373,0.916171,0.200706,0.168881,0.695612,0.0527034,0.400138,0.446699,0.4828,0.740877,0.4623,0.0618043,0.592447,0.465119,0.90799,0.86814,0.959946,0.30923,0.15837,0.310982,0.295752,0.835599,0.973137,0.588158,0.239977,0.494933,0.130804,0.487862,0.914116,0.229978,0.723087,0.662719,0.80288,0.528323,0.518236,0.419605,0.763183,0.618106,0.500053,0.411905,0.0457342,0.802475,0.743067,0.0933917,0.655529,0.750012,0.364573,0.640479,0.699579,0.125254,0.776449,0.81225,0.772979,0.509872,0.334178,0.237729,0.983028,0.900506,0.0476939,0.825982,0.172561,0.214289,0.276963,0.414259,0.298542,0.908651,0.871455,0.955597,0.176905,0.674052,0.954428,0.299097,0.828045,0.971336,0.6357,0.406186,0.532512,0.879412,0.698662,0.517829,0.203173,0.934213,0.483158,0.906352,0.975982,0.232215,0.277811,0.37598,0.223675,0.858876,0.313604,0.542134,0.916018,0.617423,0.29996,0.557758,0.275029,0.00418389,0.407599,0.605395,0.712344,0.867213,0.631147,0.085112,0.931257,0.951632,0.989969,0.631369,0.779517,0.894711,0.948284,0.827972,0.997281,0.615395,0.000859737,0.33512,0.644213,0.381022,0.358838,0.871267,0.202388,0.985392,0.420042,0.428228,0.304646,0.831934,0.383427,0.904693,0.708035,0.843913,0.390273,0.651202,0.793305,0.0165247,0.523451,0.850755,0.224231,0.415448,0.538409,0.880069,0.856149,0.812317,0.604391,0.505819,0.691226,0.695837,0.171153,0.285639,0.506111,0.286398,0.0209212,0.564573,0.653594,0.158635,0.624402,0.010181,0.768958,0.486602,0.82422,0.838752,0.508867,0.889688,0.314761,0.357352,0.498748,0.893074,0.6865,0.0700148,0.419507,0.528347,0.872927,0.815265,0.147119,0.97311,0.917746,0.143557,0.110916,0.203203,0.211837,0.976923,0.44313,0.267657,0.345129,0.84318,0.780147,0.65536,0.846171,0.846054,0.700479,0.129781,0.63048,0.297053,0.202552,0.97,0.894857,0.0366493,0.713672,0.990084,0.701695,0.940209,0.343033,0.396913,0.844144,0.780188,0.0584053,0.350552,0.498385,0.948362,0.622363,0.3236,0.191493,0.810867,0.833575,0.661654,0.397662,0.604164,0.708284,0.629112,0.958696,0.839075,0.843893,0.840572,0.341271,0.90181,0.479494,0.045258,0.4443,0.0927427,0.378721,0.924955,0.99034,0.613597,0.921105,0.606853,0.396278,0.479,0.347416,0.547441,0.324464,0.632055,0.0798287,0.878777,0.505777,0.540702,0.471265,0.825563,0.0131946,0.713906,0.11149,0.842349,0.177945,0.770564,0.219905,0.527991,0.983119,0.439373,0.0800002,0.403187,0.629416,0.774402,0.410713,0.789483,0.0752528,0.215047,0.568902,0.993434,0.561182,0.507363,0.682972,0.168525,0.495875,0.714787,0.566192,0.918789,0.45588,0.050694,0.464657,0.484962,0.125138,0.061635,0.581885,0.107476,0.303238,0.559304,0.304545,0.435502,0.212278,0.544339,0.836109,0.371953,0.387544,0.590971,0.339718,0.94789,0.234128,0.55313,0.399336,0.346686,0.616081,0.60918,0.488187,0.322314,0.724075,0.904993,0.765135,0.515976,0.763524,0.515401,0.986781,0.969822,0.00920731,0.734921,0.578283,0.522786,0.873901,0.970997,0.0706299,0.931547,0.119708,0.67258,0.636621,0.955396,0.556165,0.30421,0.738071,0.569874,0.579836,0.020236,0.360691,0.477527,0.996148,0.211487,0.39944,0.0597475,0.925954,0.731808,0.214449,0.297956,0.775528,0.170008,0.936502,0.650751,0.563927,0.510681,0.156009,0.231806,0.011059,0.79982,0.378627,0.332878,0.906607,0.532893,0.418613,0.167313,0.850842,0.265129,0.156842,0.126096,0.89891,0.912099,0.0803427,0.20044,0.00939363,0.677105,0.283367,0.240659,0.5111,0.744956,0.885445,0.628127,0.995716,0.441676,0.4838,0.561741,0.255141,0.784274,0.416965,0.772951,0.681795,0.917696,0.605048,0.769159,0.125893,0.121536,0.790804,0.263738,0.271723,0.0637929,0.0660163,0.742712,0.473455,0.218646,0.104871,0.115013,0.632291,0.487145,0.135488,0.318436,0.323192,0.371519,0.775113,0.297438,0.957936,0.21153,0.403825,0.792912,0.212722,0.607879,0.167353,0.767757,0.531405,0.065226,0.807137,0.17529,0.723553,0.847331,0.322423,0.830966,0.66755,0.303995,0.692592,0.413176,0.55165,0.396532,0.732363,0.0652878,0.888721,0.216935,0.634806,0.983072,0.546829,0.487981,0.180434,0.712394,0.720083,0.224422,0.701228,0.279948,0.481745,0.463683,0.425284,0.365302,0.525003,0.890695,0.453807,0.582411,0.639182,0.602078,0.49472,0.580612,0.0302277,0.883165,0.0965929,0.364392,0.786794,0.380793,0.810377,0.660068,0.194415,0.695389,0.133911,0.266623,0.222538,0.896217,0.444688,0.463018,0.0392283,0.312392,0.76537,0.939571,0.140903,0.88559,0.217294,0.804656,0.999942,0.941949,0.387314,0.225186,0.65322,0.0737438,0.223308,0.640045,0.442886,0.458418,0.234246,0.491108,0.178419,0.190062,0.609407,0.732956,0.515206,0.875898,0.693591,0.38786,0.703194,0.964442,0.458808,0.796897,0.403792,0.313479,0.988969,0.540581,0.74056,0.404747,0.197073,0.724115,0.567424,0.171276,0.0109915,0.752509,0.325447,0.342038,0.140062,0.650607,0.521276,0.651262,0.378232,0.388693,0.365989,0.858456,0.113626,0.350263,0.401332,0.452372,0.01555,0.501885,0.64954,0.374164,|0.974213,0.373692,0.0952176,0.794736,0.594981,0.499775,0.497404,0.325807,0.76394,0.799815,0.581422,0.00432122,0.713012,0.936665,0.664951,0.693579,0.31086,0.130709,0.00168979,0.723875,0.479664,0.762238,0.682496,0.560649,0.644189,0.360377,0.926618,0.771332,0.923239,0.765618,0.129019,0.743333,0.621307,0.788996,0.7355,0.0183541,0.835602,0.395124,0.480896,0.892336,0.281699,0.797637,0.0331194,0.682564,0.671656,0.592817,0.0559371,0.597114,0.511995,0.772885,0.0100105,0.512222,0.995094,0.553066,0.477442,0.258886,0.0947533,0.260533,0.173249,0.579454,0.341589,0.812261,0.700242,0.02882,0.72945,0.499444,0.386518,0.221887,0.182702,0.758371,0.965865,0.120382,0.835008,0.435667,0.91638,0.165359,0.592378,0.742444,0.406067,0.216955,0.723676,0.565842,0.939231,0.890254,0.748801,0.388265,0.690998,0.134166,0.208514,0.624208,0.225674,0.506908,0.67272,0.60854,0.466784,0.805222,0.474047,0.47533,0.478977,0.821561,0.841464,0.853466,0.502957,0.894277,0.269736,0.382352,0.917814,0.762416,0.694596,0.756449,0.992638,0.414865,0.672236,0.767424,0.995904,0.88792,0.39757,0.199086,0.681906,0.823552,0.760328,0.966713,0.485176,0.955804,0.368,0.957876,0.540025,0.331854,0.730338,0.107845,0.553765,0.507594,0.391216,0.213219,0.265859,0.946623,0.485224,0.690028,0.980339,0.556173,0.825647,0.996886,0.0338864,0.308269,0.841518,0.612346,0.991769,0.0858367,0.953878,0.980819,0.331749,0.8132,0.880321,0.518519,0.147751,0.297828,0.382857,0.445837,0.321267,0.155719,0.0916166,0.378005,0.499085,0.105922,0.732693,0.00853479,0.827136,0.872767,0.0675955,0.175219,0.13574,0.878744,0.18358,0.685349,0.933336,0.812898,0.4871,0.43352,0.0337074,0.76631,0.726314,0.00937289,0.903573,0.927884,0.248172,0.757659,0.054814,0.626124,0.242003,0.443821,0.375756,0.011087,0.14776,0.0607884,0.416135,0.451699,0.825915,0.553194,0.816377,0.247216,0.383354,0.00250995,0.0150738,0.951741,0.464059,0.176035,0.492543,0.960849,0.318805,0.53123,0.771281,0.990321,0.591032,0.454914,0.202951,0.328738,0.493742,0.256476,0.963369,0.880629,0.779024,0.738971,0.490888,0.528629,0.891022,0.96193,0.348481,0.324521,0.463132,0.295144,0.291029,0.930378,0.0935943,0.899591,0.929902,0.611449,0.372645,0.374783,0.169845,0.477176,0.425476,0.419314,0.812257,0.427351,0.209283,0.741011,0.273457,0.694032,0.986312,0.792084,0.625189,0.791875,0.794297,0.405156,0.442737,0.79216,0.602222,0.381825,0.331989,0.160533,0.407098,0.737099,0.0712522,0.278585,0.00718665,0.72851,0.822414,0.273112,0.721972,0.105855,0.765268,0.292597,0.314406,0.0425293,0.13063,0.850139,0.82189,0.0919729,0.199314,0.81067,0.927853,0.616191,0.806259,0.661525,0.937215,0.996055,0.983031,0.800717,0.575793,0.139355,0.0375407,0.256725,0.0150481,0.308139,0.880228,0.12575,0.0376266,0.184923,0.389142,0.55975,0.586308,0.39051,0.584782,0.896438,0.704043,0.820948,0.530321,0.907253,0.958544,0.342675,0.00664538,0.525877,0.723045,0.591468,0.831971,0.0946436,0.985152,0.483288,0.525258,0.792403,0.423676,0.0455599,0.289185,0.961242,0.428144,0.176903,0.776598,0.986203,0.266154,0.480421,0.995485,0.629882,0.682915,0.680286,0.392931,0.186202,0.857135,0.0241763,0.545716,0.623541,0.913146,0.189428,0.713577,0.491583,0.304217,0.29275,0.897104,0.472887,0.317695,0.602063,0.0127579,0.521621,0.775638,0.722273,0.131477,0.928277,0.348579,0.346669,0.0389575,0.887806,0.962581,0.562294,0.307687,0.111798,0.907314,0.779488,0.416828,0.273711,0.516754,0.35817,0.611424,0.751154,0.763277,0.816714,0.756042,0.925918,0.158249,0.473418,0.843297,0.94316,0.138762,0.432813,0.119764,0.909616,0.157331,0.710049,0.760875,0.315929,0.867356,0.0909439,0.764342,0.776505,0.851343,0.558028,0.674841,0.465314,0.940191,0.690598,0.318997,0.339919,0.945771,0.136668,0.743378,0.831274,0.871326,0.637368,0.83998,0.632668,0.951152,0.722379,0.12402,0.895988,0.484235,0.967876,0.778621,0.239706,0.703755,0.807024,0.0933706,0.429666,0.0351301,0.312996,0.873146,0.678221,0.528752,0.366454,0.118559,0.220682,0.762055,0.99226,0.737162,0.0493766,0.971237,0.313047,0.111705,0.486294,0.100876,0.678381,0.997018,0.397983,0.49723,0.150819,0.172644,0.718778,0.130994,0.0433144,0.743702,0.852604,0.62595,0.840999,0.113822,0.0632306,0.558709,0.966895,0.689878,0.324208,0.0197209,0.820621,0.631769,0.76968,0.448038,0.0649396,0.408878,0.23406,0.0609438,0.919742,0.788962,0.476215,0.959696,0.969242,0.945774,0.446914,0.28113,0.422541,0.449681,0.473261,0.559663,0.441037,0.915531,0.825079,0.615593,0.646271,0.689808,0.628776,0.0204957,0.470859,0.978066,0.551977,0.218535,0.0472857,0.23977,0.203319,0.0222777,0.354163,0.399527,0.525345,0.954938,0.695563,0.0223172,0.721851,0.4267,0.522331,0.315466,0.645777,0.035731,0.182452,0.135543,0.669917,0.723523,0.477705,0.82639,0.751024,0.429441,0.659575,0.480474,0.709102,0.689168,0.561064,0.66465,0.255346,0.837779,0.76711,0.90179,0.976831,0.637314,0.938755,0.991562,0.273541,0.958343,0.77632,0.73825,0.767302,0.270936,0.279541,0.788647,0.575088,0.0181623,0.120416,0.525889,0.766127,0.884124,0.519001,0.445404,0.449973,0.890106,0.1312,0.189421,0.437163,0.966226,0.719828,0.200374,0.123216,0.300261,0.176718,0.114814,0.645797,0.904675,0.0218141,0.943368,0.328983,0.379442,0.618383,0.206223,0.900879,0.408521,0.417371,0.546284,0.0455448,0.18516,0.042016,0.133932,0.5038,0.941603,0.0506779,0.682489,0.825743,0.197054,0.700162,0.023648,0.255341,0.856208,0.601537,0.862661,0.878644,0.956762,0.694379,0.579112,0.264931,0.0431607,0.946532,0.0147781,0.37133,0.230561,0.654501,0.384086,0.794325,0.369261,0.838502,0.782957,0.748345,0.720724,0.283923,0.358674,0.275768,0.897738,0.987678,0.798667,0.152844,0.476888,0.886214,0.196888,0.186859,0.531446,0.761562,0.67563,0.987901,0.260016,0.604622,0.243786,0.227182,0.767594,0.46755,0.491113,0.675349,0.556824,0.488363,0.300177,0.45095,0.469387,0.537342,0.624059,0.501342,0.87227,0.114019,0.285757,0.219902,0.354304,0.73306,0.00670487,0.31405,0.0674831,0.680409,0.660072,0.646755,0.00663251,0.0800471,0.734521,0.831796,0.505546,0.74072,0.227446,0.485181,0.808186,0.365428,0.425335,0.804682,0.795721,0.825645,0.622683,0.467319,0.739905,0.900804,0.435113,0.127665,0.113008,0.618639,0.44696,0.0917546,0.382141,0.0588428,0.199351,0.324252,0.355728,0.849016,0.544253,0.721735,0.618236,0.0397408,0.341671,0.731847,0.720863,0.22178,0.155338,0.219971,0.830273,0.145356,0.127182,0.98458,0.330952,0.731912,0.0410171,0.29446,0.146339,0.547891,0.29084,0.20646,0.0682194,0.16924,0.367584,0.581561,0.35989,0.924981,0.43257,0.686735,0.391682,0.8479,0.343489,0.259803,0.152856,0.362774,0.412208,0.0889736,0.45538,0.117228,0.872085,0.445979,0.572122,0.637434,0.316264,0.969442,0.448194,0.287358,0.244694,0.850826,0.399042,0.0879967,0.310601,0.821263,0.312411,0.78848,0.689364,0.824188,0.507407,0.505957,0.158613,0.0435448,0.227189,0.00731742,0.678474,0.967191,0.396189,0.50648,0.974579,0.80328,0.897322,0.285595,0.18572,0.994671,0.232597,0.901259,0.774315,0.879562,0.126662,0.312671,0.516502,0.16872,0.83884,0.234456,0.892454,0.18327,0.186375,0.0612667,0.355511,0.492345,0.156233,0.822949,0.442277,0.448072,0.749829,0.508271,0.845731,0.742453,0.269794,0.245717,0.177971,0.522192,0.953015,0.203852,0.0492348,0.626292,0.937143,0.777507,0.733885,0.27897,0.955672,0.972097,0.728566,0.667049,0.0331695,0.0588487,0.197836,0.96311,0.125421,0.276511,0.859998,0.939521,0.394161,0.415728,0.549603,0.573701,0.049114,0.629626,0.121677,0.541648,0.175559,0.932352,0.870549,0.110669,0.833441,0.563253,0.25229,0.681494,0.679632,0.00876141,0.0696777,0.332709,0.381745,0.193322,0.61924,0.774078,0.574966,0.810531,0.112901,0.429537,0.582592,0.861684,0.557438,0.918234,0.656336,0.0448663,0.904056,0.458717,0.998705,0.371589,0.301271,0.793917,0.63871,0.169561,0.221918,0.393292,0.827199,0.780991,0.0542017,0.00524467,0.0593621,0.332598,0.389812,0.517819,0.355818,0.952677,0.0159923,0.161487,0.513344,0.781414,0.134531,0.931956,0.190788,0.325378,0.501519,0.198656,0.00069803,0.510229,0.291213,0.576675,0.730131,0.543856,0.851608,0.66415,0.520909,0.883772,0.620256,0.282152,0.634576,0.214493,0.938273,0.762488,0.515053,0.890258,0.791562,0.152085,0.221509,0.212704,0.988213,0.158873,0.0801008,0.896668,0.168725,0.466884,0.33377,0.241683,0.938057,0.428701,0.320977,0.403245,0.270804,0.14471,0.00518018,0.819011,0.844133,0.178284,0.779868,0.664519,0.534181,0.97865,0.050218,0.714024,0.175284,0.379539,0.151589,0.368403,0.25962,0.925917,0.877097,0.855789,0.860702,0.621913,0.315547,0.776352,0.562694,0.529071,0.310545,0.672852,0.960311,0.696747,0.691644,0.369865,0.93178,0.779608,0.30908,0.411429,0.887516,0.309573,0.168552,0.490503,0.688705,0.518647,0.55462,0.437643,0.276749,0.638822,0.294343,0.197058,0.25759,0.0968816,0.183488,0.769614,0.238004,0.169215,0.320288,0.551597,0.963429,0.462654,0.324833,0.984395,0.366757,0.360256,0.33122,0.567338,0.269338,0.655619,0.566866,0.336506,0.354947,0.291329,0.86467,0.350173,0.795444,0.0431767,0.815036,0.0507648,0.367214,0.422745,0.0383809,0.233428,0.715255,0.42759,0.662439,0.751168,0.474288,0.119399,0.880555,0.432158,0.770776,0.464692,0.219546,0.62346,0.81224,0.4502,0.394212,0.873849,0.606547,0.329081,0.517306,0.116232,0.152695,0.797793,0.302459,0.188253,0.283166,0.726146,|0.0325384,0.467192,0.160821,0.250355,0.0559083,0.0621932,0.715708,0.404888,0.522017,0.957969,0.943893,0.371894,0.975218,0.607491,0.307384,0.179744,0.844802,0.158707,0.00466818,0.158978,0.386659,0.727435,0.775175,0.750118,0.445327,0.253855,0.684249,0.923347,0.6385,0.505112,0.766732,0.86679,0.16152,0.747759,0.392896,0.743811,0.384276,0.977604,0.147253,0.528105,0.0502697,0.123234,0.120146,0.565416,0.758501,0.651599,0.616014,0.951552,0.307438,0.843622,0.296468,0.981898,0.0417815,0.585126,0.112234,0.055136,0.881841,0.948838,0.233301,0.523781,0.778351,0.555572,0.14705,0.976634,0.8707,0.477535,0.739049,0.596673,0.387087,0.603998,0.279398,0.335194,0.761594,0.620235,0.244993,0.385866,0.829177,0.0169623,0.544592,0.708168,0.331944,0.336227,0.158656,0.387744,0.841762,0.121515,0.260846,0.238644,0.777205,0.631632,0.314894,0.323285,0.285845,0.363117,0.0288931,0.180986,0.430065,0.766222,0.349575,0.572972,0.433395,0.910957,0.789099,0.109592,0.731793,0.116669,0.340656,0.340918,0.707209,0.126087,0.241622,0.804539,0.664187,0.79423,0.951538,0.87028,0.53949,0.682762,0.778802,0.337777,0.541604,0.737676,0.324213,0.202439,0.793163,0.240059,0.750999,0.792491,0.645973,0.74058,0.38866,0.0697797,0.809536,0.609895,0.730157,0.471417,0.0661302,0.303941,0.935084,0.256918,0.765638,0.392601,0.628832,0.907317,0.869131,0.684664,0.28865,0.208792,0.78995,0.525693,0.233657,0.679721,0.192414,0.278669,0.318447,0.677937,0.90337,0.894648,0.664605,0.562019,0.872476,0.600808,0.884619,0.661349,0.329361,0.310822,0.470219,0.682983,0.849303,0.550705,0.746201,0.766778,0.910857,0.0204151,0.629149,0.925256,0.939988,0.382337,0.499847,0.448065,0.713651,0.702451,0.622904,0.373892,0.793024,0.60392,0.490749,0.907158,0.554416,0.863251,0.337237,0.194047,0.721599,0.583113,0.0860459,0.905737,0.0910288,0.587481,0.377141,0.470452,0.685104,0.476426,0.546578,0.91381,0.0984527,0.738955,0.401969,0.111865,0.056631,0.365286,0.427496,0.399451,0.382021,0.517677,0.000837862,0.598202,0.43372,0.0410512,0.786499,0.278756,0.857631,0.304932,0.263305,0.21894,0.793248,0.766266,0.437607,0.805853,0.151998,0.625355,0.0629357,0.589153,0.744875,0.825563,0.679514,0.634781,0.87798,0.0727935,0.475136,0.458205,0.357742,0.338116,0.67406,0.110705,0.484845,0.525292,0.545445,0.123051,0.747812,0.425214,0.92248,0.675554,0.285905,0.669499,0.279941,0.66689,0.143696,0.809287,0.488684,0.487589,0.0110974,0.423788,0.219913,0.278642,0.082877,0.73657,0.588123,0.744633,0.555283,0.543791,0.06521,0.916847,0.679602,0.238521,0.234226,0.104463,0.368402,0.533383,0.0376831,0.817802,0.526484,0.493807,0.411045,0.858211,0.939539,0.315514,0.105239,0.821492,0.744208,0.987292,0.252726,0.0994047,0.0147541,0.57847,0.006836,0.254053,0.953547,0.406028,0.470304,0.0130035,0.213944,0.682235,0.521278,0.886081,0.568742,0.112998,0.79872,0.308743,0.081141,0.429618,0.949123,0.262979,0.618014,0.700777,0.843226,0.227835,0.0309286,0.352196,0.220576,0.282088,0.831655,0.0094943,0.843894,0.40963,0.249013,0.527698,0.891989,0.783538,0.537369,0.0480918,0.771522,0.938414,0.8994,0.4885,0.870464,0.0663541,0.73465,0.736115,0.687956,0.64754,0.503425,0.34538,0.630413,0.125515,0.84829,0.931098,0.967123,0.337736,0.864267,0.153184,0.515654,0.611328,0.667979,0.158696,0.723089,0.862102,0.645897,0.414614,0.830134,0.17933,0.115404,0.122576,0.680599,0.894756,0.320482,0.49157,0.936566,0.0952373,0.425491,0.146702,0.12104,0.935154,0.68547,0.596453,0.294858,0.735045,0.0507852,0.432798,0.0292279,0.554783,0.57207,0.2415,0.802396,0.104774,0.590316,0.102746,0.836599,0.807941,0.600357,0.318789,0.955716,0.364762,0.850551,0.803851,0.708215,0.860365,0.940923,0.733398,0.83941,0.719307,0.340594,0.151154,0.560069,0.942348,0.0339265,0.967587,0.819785,0.420675,0.556436,0.280804,0.0454116,0.00600082,0.700163,0.0172814,0.570922,0.208923,0.327612,0.424463,0.594433,0.824294,0.671984,0.463619,0.668168,0.727272,0.394769,0.835126,0.229906,0.992757,0.22066,0.624951,0.673254,0.278436,0.203546,0.881062,0.316307,0.889313,0.878984,0.0235212,0.0931872,0.997026,0.890841,0.577942,0.772856,0.790439,0.863143,0.339399,0.470788,0.925569,0.0731487,0.111759,0.711602,0.0715823,0.132106,0.391799,0.273292,0.426162,0.0317437,0.427453,0.927372,0.121342,0.330669,0.563284,0.39195,0.989478,0.0348638,0.26553,0.945121,0.138463,0.191852,0.192267,0.0438513,0.560148,0.2741,0.136454,0.498948,0.982688,0.520189,0.860142,0.327341,0.537611,0.500446,0.328464,0.113614,0.844666,0.0325069,0.631452,0.830168,0.720117,0.41934,0.577811,0.739503,0.534093,0.768094,0.140291,0.637233,0.377908,0.494102,0.246868,0.0325126,0.47264,0.421501,0.114452,0.68724,0.775679,0.593376,0.577164,0.121848,0.505577,0.604404,0.514621,0.521835,0.686436,0.215213,0.837519,0.984399,0.496344,0.863774,0.389629,0.168792,0.906928,0.150949,0.0139886,0.364098,0.519913,0.689681,0.292033,0.666715,0.624463,0.322789,0.0976662,0.178288,0.234473,0.125482,0.335526,0.539429,0.434262,0.0609683,0.699085,0.0342158,0.0711211,0.590783,0.791907,0.9768,0.968206,0.264475,0.0929732,0.220016,0.215463,0.51667,0.4682,0.81136,0.340676,0.830655,0.539583,0.55681,0.80637,0.952656,0.898966,0.929864,0.341853,0.0399556,0.374756,0.197878,0.834589,0.965889,0.870385,0.545818,0.807916,0.0612444,0.582449,0.903092,0.0985544,0.808824,0.639147,0.00745392,0.288278,0.695065,0.301435,0.858895,0.320413,0.888473,0.600729,0.0800393,0.697548,0.434499,0.958553,0.766896,0.0228397,0.00342894,0.58728,0.698481,0.0407078,0.678013,0.569422,0.885861,0.051389,0.302483,0.468664,0.136184,0.964254,0.48402,0.0980229,0.350134,0.818794,0.913355,0.199459,0.407976,0.975934,0.185666,0.441264,0.92482,0.267815,0.0472202,0.617272,0.541063,0.402691,0.791118,0.661881,0.164418,0.779862,0.356817,0.069353,0.373951,0.589839,0.354772,0.618835,0.3353,0.0905126,0.123801,0.0832282,0.582388,0.784857,0.523719,0.413453,0.0186083,0.254913,0.00153112,0.240587,0.100079,0.639747,0.655629,0.832474,0.0154605,0.216901,0.844568,0.723802,0.229043,0.616318,0.0441812,0.470235,0.864914,0.017222,0.720743,0.152352,0.202508,0.618525,0.348028,0.558747,0.798717,0.662424,0.553287,0.805067,0.432034,0.302581,0.0584051,0.181778,0.957677,0.0915224,0.867113,0.233674,0.208886,0.63014,0.281179,0.622893,0.156407,0.198111,0.589127,0.479983,0.292039,0.875637,0.977216,0.508696,0.861669,0.908555,0.717786,0.236132,0.282551,0.478697,0.601579,0.175982,0.649048,0.471878,0.874053,0.298057,0.547371,0.767744,0.337238,0.94459,0.784595,0.531081,0.34805,0.455335,0.702212,0.896294,0.854377,0.417685,0.0311999,0.70235,0.511386,0.439573,0.834049,0.218689,0.565213,0.756235,0.395321,0.225337,0.615742,0.404752,0.964787,0.47847,0.76039,0.686364,0.346777,0.977145,0.765929,0.330448,0.704621,0.100009,0.721204,0.822124,0.460292,0.425412,0.0634071,0.456185,0.06609,0.315657,0.843428,0.689071,0.0901454,0.733831,0.333277,0.403749,0.00817287,0.302611,0.0144132,0.398038,0.279246,0.0908006,0.487436,0.330954,0.875492,0.148873,0.382765,0.292993,0.0538362,0.494468,0.443398,0.413671,0.297023,0.108116,0.676925,0.807774,0.97046,0.730887,0.521538,0.822772,0.21443,0.731895,0.140374,0.494183,0.468574,0.725292,0.135966,0.336915,0.666924,0.251649,0.846987,0.182722,0.229649,0.416082,0.294448,0.869892,0.464565,0.896911,0.232004,0.452,0.872165,0.638819,0.267252,0.41003,0.721112,0.240051,0.535736,0.0022651,0.825408,0.78198,0.809581,0.859977,0.397402,0.0808043,0.913812,0.952349,0.67556,0.52008,0.102479,0.900873,0.0575726,0.424233,0.373317,0.64695,0.958359,0.910937,0.801528,0.1969,0.776516,0.462277,0.0343435,0.566829,0.59389,0.472604,0.454481,0.81276,0.6837,0.199962,0.700367,0.763109,0.0564746,0.0474777,0.872794,0.580151,0.654262,0.820462,0.0545921,0.551914,0.352911,0.549884,0.252421,0.740718,0.473192,0.103254,0.549532,0.351882,0.690117,0.0517129,0.960894,0.103519,0.378062,0.761735,0.405583,0.93239,0.855135,0.0420792,0.593845,0.34698,0.411526,0.272219,0.0174617,0.767671,0.568213,0.07917,0.752441,0.225383,0.765715,0.0630084,0.590005,0.417491,0.649305,0.171362,0.719984,0.0581624,0.234121,0.646741,0.906529,0.337855,0.668692,0.766602,0.0487054,0.322676,0.811381,0.669638,0.285058,0.760076,0.731474,0.625635,0.258416,0.232515,0.240272,0.824243,0.675595,0.909797,0.189842,0.491003,0.953873,0.271701,0.723638,0.0977669,0.18978,0.656689,0.655649,0.936472,0.664149,0.705162,0.0143128,0.465935,0.604601,0.106356,0.125543,0.537007,0.94966,0.684766,0.793235,0.941023,0.037571,0.903346,0.346471,0.655619,0.551745,0.88497,0.0145914,0.852198,0.209196,0.593296,0.835357,0.848384,0.153272,0.967703,0.534482,0.643269,0.488153,0.368424,0.895621,0.974498,0.524667,0.351213,0.606076,0.00291634,0.304559,0.040282,0.135657,0.55592,0.405476,0.246345,0.0558686,0.968904,0.741219,0.244981,0.277945,0.409363,0.80942,0.460572,0.628964,0.514174,0.658057,0.806133,0.930445,0.76035,0.394561,0.921116,0.334492,0.664867,0.130368,0.560738,0.465047,0.960846,0.531797,0.00997567,0.238241,0.0241195,0.938664,0.779283,0.783518,0.647649,0.843265,0.87448,0.0808325,0.946855,0.590963,0.473325,0.556344,0.710485,0.994819,0.946216,0.149173,0.420744,0.271722,0.478466,0.677823,0.780798,0.614888,0.329292,0.172134,0.771933,0.941027,0.137404,0.776097,0.193834,0.631536,0.10891,0.273068,0.217449,|0.926971,0.191477,0.263125,0.168722,0.087709,0.783955,0.412611,0.40302,0.24125,0.968265,0.692549,0.42915,0.136627,0.204472,0.231956,0.734268,0.554885,0.768444,0.681181,0.820064,0.270626,0.107755,0.552961,0.372064,0.230014,0.45312,0.486678,0.197333,0.922221,0.943678,0.0172959,0.500803,0.643299,0.246221,0.779625,0.27663,0.154635,0.711516,0.646616,0.801533,0.303569,0.415555,0.676464,0.927831,0.966661,0.249846,0.778543,0.397183,0.44679,0.884692,0.979888,0.846448,0.869297,0.21628,0.878483,0.789417,0.701979,0.129037,0.33208,0.14344,0.927453,0.0737429,0.224721,0.572353,0.587808,0.632942,0.0351246,0.768192,0.902363,0.260596,0.628133,0.613519,0.045527,0.0774637,0.334929,0.774185,0.324498,0.257924,0.393743,0.162329,0.849397,0.0560618,0.361585,0.892696,0.728315,0.0589702,0.843939,0.273955,0.411722,0.428191,0.111443,0.576265,0.134376,0.223564,0.314169,0.195222,0.468935,0.0124905,0.683647,0.527818,0.209842,0.17607,0.284378,0.141059,0.210547,0.0378715,0.078254,0.426232,0.806999,0.551634,0.823332,0.266417,0.993447,0.478669,0.361288,0.563161,0.348366,0.0344308,0.185383,0.442297,0.570444,0.87794,0.45798,0.947608,0.312782,0.666662,0.56836,0.357371,0.369468,0.845597,0.946603,0.271649,0.233586,0.81199,0.43276,0.55275,0.637494,0.354166,0.278319,0.0863198,0.834423,0.59403,0.018136,0.561019,0.229301,0.523329,0.0157834,0.0477928,0.791151,0.324878,0.95015,0.893981,0.567038,0.806284,0.523767,0.290316,0.141274,0.891554,0.482367,0.141865,0.12904,0.934605,0.242969,0.13128,0.317454,0.580156,0.157094,0.608302,0.992059,0.489422,0.342333,0.92788,0.353662,0.539158,0.0128824,0.71813,0.672259,0.786726,0.278375,0.765102,0.670392,0.104696,0.868813,0.303088,0.375898,0.982779,0.0137148,0.196957,0.572922,0.299564,0.321903,0.898918,0.927457,0.0942796,0.696649,0.238554,0.0975389,0.962868,0.014266,0.978032,0.96121,0.480676,0.503074,0.49193,0.368331,0.71685,0.50244,0.591735,0.0702827,0.874039,0.191385,0.0991458,0.208627,0.623272,0.826056,0.186232,0.73294,0.656451,0.724996,0.0818446,0.452576,0.13724,0.982773,0.482118,0.761074,0.544108,0.263051,0.0932691,0.473461,0.724908,0.417528,0.206425,0.666984,0.496092,0.893579,0.375599,0.136788,0.20122,0.732154,0.458634,0.772555,0.991669,0.236585,0.0464343,0.847097,0.35884,0.753156,0.348902,0.0634741,0.931397,0.180873,0.28089,0.135974,0.373517,0.475074,0.88334,0.767253,0.413598,0.0610013,0.475527,0.971254,0.283296,0.527251,0.475037,0.773447,0.923236,0.107871,0.183154,0.2155,0.404695,0.793837,0.493687,0.0424545,0.290933,0.0374686,0.464721,0.725228,0.0505362,0.895944,0.66629,0.553632,0.961415,0.0132895,0.27194,0.930147,0.598209,0.176718,0.217407,0.300677,0.179189,0.378343,0.222227,0.945466,0.024186,0.777403,0.626048,0.885793,0.533762,0.0929127,0.257382,0.572162,0.0358205,0.306422,0.702845,0.529185,0.0179254,0.691371,0.256134,0.195257,0.379428,0.51706,0.480706,0.790174,0.116042,0.40657,0.603511,0.472007,0.98604,0.176302,0.921609,0.0501574,0.298594,0.0692058,0.829489,0.378542,0.501137,0.578529,0.836491,0.77698,0.0985227,0.57336,0.110791,0.785122,0.176109,0.0125548,0.776795,0.721649,0.357338,0.898693,0.798842,0.706516,0.216062,0.288736,0.902384,0.208273,0.364985,0.341512,0.968686,0.879265,0.821388,0.249912,0.289393,0.644896,0.214584,0.347626,0.727541,0.681171,0.492866,0.293915,0.15424,0.575246,0.00121599,0.463644,0.74346,0.418567,0.341299,0.535045,0.768505,0.101942,0.643702,0.922522,0.611357,0.174781,0.977195,0.866158,0.661146,0.183724,0.294459,0.130362,0.862766,0.219449,0.176324,0.444035,0.404723,0.590927,0.90992,0.034797,0.274281,0.532694,0.811516,0.800521,0.955647,0.464196,0.0559205,0.742096,0.323971,0.163541,0.552027,0.372448,0.593791,0.757188,0.125323,0.511319,0.621,0.24215,0.201997,0.441158,0.907515,0.890312,0.558909,0.503068,0.715382,0.993198,0.359059,0.652117,0.472915,0.896829,0.168875,0.862463,0.768222,0.096679,0.861716,0.218127,0.840558,0.469451,0.285466,0.972405,0.397568,0.766712,0.22993,0.377261,0.336955,0.870936,0.0241496,0.323311,0.527935,0.414435,0.900729,0.854564,0.419275,0.0991347,0.00426626,0.247141,0.545703,0.419832,0.137312,0.122883,0.852694,0.498021,0.98319,0.255675,0.932581,0.721967,0.307124,0.648319,0.49742,0.264284,0.655341,0.140777,0.578153,0.731452,0.893019,0.103325,0.274995,0.101931,0.781676,0.41248,0.0967808,0.254978,0.766763,0.332855,0.705554,0.613448,0.711149,0.605436,0.076225,0.106904,0.0890483,0.0866625,0.50939,0.565712,0.771241,0.414432,0.936634,0.321074,0.880065,0.180216,0.324184,0.368899,0.901953,0.839837,0.117661,0.585113,0.100062,0.281872,0.336466,0.157689,0.258758,0.906191,0.888159,0.328666,0.834207,0.240389,0.625642,0.366208,0.55348,0.742822,0.681558,0.642853,0.709359,0.676004,0.85351,0.947084,0.174894,0.309396,0.0203156,0.447491,0.916604,0.777645,0.325035,0.974096,0.0382029,0.0217463,0.169138,0.975851,0.707356,0.760341,0.34846,0.459917,0.175363,0.481587,0.912856,0.0235013,0.656663,0.983111,0.328228,0.675958,0.719881,0.627486,0.730318,0.710217,0.701086,0.250513,0.776904,0.122404,0.655699,0.202665,0.779036,0.542623,0.138475,0.00344473,0.650919,0.776856,0.968731,0.300929,0.00940996,0.832512,0.492641,0.182417,0.967585,0.115769,0.766185,0.24443,0.948471,0.136547,0.108563,0.535874,0.341057,0.417317,0.408929,0.617999,0.900257,0.842069,0.283926,0.0291198,0.768013,0.241953,0.400872,0.325405,0.702386,0.374606,0.992199,0.119528,0.237367,0.385233,0.745657,0.620855,0.518517,0.323362,0.168707,0.821542,0.0797852,0.865877,0.27664,0.0301381,0.625577,0.168687,0.691228,0.245081,0.602252,0.194166,0.171096,0.311241,0.915208,0.185094,0.0129308,0.558349,0.688588,0.417363,0.639163,0.214308,0.745016,0.234496,0.216883,0.929972,0.0134872,0.373835,0.187292,0.929911,0.98367,0.468201,0.407625,0.572313,0.106969,0.605468,0.57903,0.370403,0.576204,0.955806,0.603332,0.337067,0.704149,0.581797,0.549761,0.61546,0.739637,0.178435,0.14117,0.065257,0.650433,0.23994,0.303037,0.505391,0.0509937,0.184383,0.820902,0.68679,0.626658,0.0177262,0.432956,0.0726323,0.732846,0.710743,0.689895,0.83091,0.662741,0.895622,0.512211,0.916856,0.811776,0.231122,0.277548,0.992753,0.146362,0.984151,0.448533,0.603803,0.989,0.580409,0.498891,0.852194,0.419569,0.17958,0.911278,0.486753,0.778527,0.321302,0.183756,0.539699,0.795385,0.289753,0.67747,0.814961,0.466437,0.273899,0.135921,0.800361,0.123698,0.677111,0.377305,0.926883,0.730428,0.968637,0.338927,0.480108,0.0362337,0.489026,0.380265,0.854616,0.0349021,0.0869342,0.847022,0.67314,0.793611,0.910244,0.552913,0.0618461,0.843185,0.488639,0.60951,0.0202531,0.692804,0.993838,0.273082,0.32399,0.511453,0.304651,0.926404,0.351501,0.956409,0.166218,0.487375,0.480384,0.490778,0.604012,0.246749,0.590852,0.94081,0.912235,0.762391,0.321921,0.496704,0.51399,0.414613,0.871827,0.0465521,0.40945,0.404158,0.409795,0.542376,0.982437,0.745583,0.433718,0.693487,0.634048,0.262638,0.670186,0.295155,0.441148,0.989528,0.250999,0.595333,0.20989,0.53214,0.458299,0.695515,0.0191842,0.958113,0.0702289,0.348222,0.354878,0.849213,0.951169,0.866169,0.591535,0.280107,0.995575,0.89413,0.406958,0.508417,0.696641,0.388416,0.929579,0.209021,0.615974,0.472914,0.19147,0.101847,0.402672,0.974168,0.416515,0.495068,0.598434,0.787501,0.38629,0.0600355,0.158602,0.250249,0.755011,0.820433,0.365649,0.718196,0.867265,0.262094,0.0619296,0.612726,0.49687,0.719338,0.752751,0.823017,0.444725,0.497548,0.852198,0.74731,0.788904,0.450604,0.626493,0.960456,0.042013,0.843186,0.802067,0.760476,0.56207,0.144539,0.725887,0.0167009,0.933742,0.721187,0.4811,0.202488,0.625204,0.96346,0.0499114,0.955624,0.46867,0.0552008,0.706851,0.4935,0.23378,0.890919,0.25248,0.0658137,0.298393,0.555635,0.276288,0.324026,0.0222787,0.537638,0.201832,0.347922,0.70233,0.220679,0.81014,0.143619,0.576261,0.453087,0.802555,0.198416,0.604307,0.207647,0.47683,0.685296,0.318819,0.401089,0.947434,0.593365,0.746571,0.944482,0.107182,0.084692,0.82553,0.821662,0.290417,0.200469,0.704701,0.0569633,0.615639,0.944846,0.663484,0.517242,0.375189,0.193611,0.34886,0.789151,0.059136,0.383465,0.866978,0.46723,0.779452,0.100878,0.167575,0.644922,0.020651,0.281994,0.402489,0.0259939,0.480692,0.502064,0.36707,0.749716,0.665779,0.886539,0.144349,0.0856845,0.181215,0.87622,0.404198,0.176794,0.424044,0.546362,0.302127,0.280104,0.406671,0.164403,0.533605,0.413508,0.951985,0.439019,0.808571,0.603461,0.286622,0.112465,0.93752,0.985906,0.816294,0.0515802,0.352103,0.589334,0.740158,0.775191,0.138602,0.493287,0.345674,0.92338,0.243247,0.637691,0.916832,0.92745,0.0670986,0.588219,0.00896037,0.0307783,0.517501,0.514026,0.216188,0.788,0.561073,0.8757,0.348462,0.452363,0.996807,0.695765,0.249257,0.359176,0.286222,0.352603,0.620854,0.197703,0.756603,0.660304,0.0539238,0.531698,0.490227,0.268446,0.805377,0.10404,0.31136,0.960076,0.90629,0.944092,0.632095,0.492242,0.783494,0.683653,0.603354,0.355582,0.694521,0.11696,0.828289,0.637132,0.642022,0.169994,0.0836142,0.588989,0.00436217,0.620463,0.444516,0.23068,0.292794,0.5761,0.735866,0.769972,0.598988,0.132453,0.0622973,0.560256,0.860088,0.28684,0.841439,0.937858,0.822747,0.802772,0.101672,0.351834,0.428799,0.481903,0.00773329,0.0736668,0.926078,0.483388,|0.0394543,0.348695,0.374315,0.260729,0.516028,0.191317,0.833865,0.946693,0.47485,0.665289,0.540098,0.722751,0.374863,0.471253,0.191182,0.00766319,0.762848,0.751891,0.75141,0.148081,0.592846,0.893951,0.998578,0.678726,0.712879,0.593426,0.647364,0.452741,0.295376,0.253168,0.864214,0.369488,0.134655,0.239194,0.00276595,0.83976,0.530951,0.388709,0.677472,0.0616326,0.353745,0.770076,0.523578,0.616663,0.768221,0.723751,0.704602,0.725594,0.663269,0.0314366,0.148586,0.0254828,0.610204,0.492028,0.135988,0.867617,0.519606,0.322461,0.334351,0.00889856,0.456351,0.0867706,0.370304,0.28479,0.819077,0.0641221,0.304198,0.0814053,0.488062,0.997855,0.778882,0.855304,0.150697,0.719775,0.0174255,0.268683,0.177721,0.651876,0.635963,0.291583,0.188017,0.664697,0.470306,0.0288305,0.0153974,0.618668,0.261653,0.228739,0.900033,0.0513162,0.91764,0.465179,0.978343,0.848815,0.78629,0.38047,0.552558,0.054188,0.0280977,0.576579,0.788064,0.124734,0.0274677,0.946697,0.887998,0.91149,0.0932866,0.634676,0.756757,0.0649737,0.987224,0.212483,0.625583,0.350197,0.276226,0.792785,0.198306,0.382302,0.583221,0.289463,0.242508,0.442199,0.694019,0.43688,0.399885,0.775727,0.40646,0.676364,0.453418,0.0942324,0.84612,0.595646,0.577809,0.634695,0.205818,0.921511,0.747816,0.156158,0.338036,0.0402733,0.831073,0.145119,0.447964,0.875723,0.670606,0.00824094,0.512943,0.817179,0.30657,0.129413,0.490315,0.00062114,0.854839,0.298596,0.306972,0.612984,0.156408,0.409824,0.445454,0.0960837,0.677487,0.520046,0.941806,0.478115,0.250187,0.00758314,0.54286,0.19944,0.766358,0.087436,0.063006,0.151028,0.449367,0.570189,0.145009,0.845975,0.0881087,0.216173,0.489326,0.409169,0.831331,0.1002,0.761383,0.534542,0.429982,0.741634,0.124642,0.904448,0.979606,0.723014,0.202997,0.426587,0.911905,0.236609,0.968103,0.206586,0.597222,0.596869,0.987602,0.243888,0.347541,0.691508,0.776092,0.452911,0.883386,0.270565,0.374615,0.357825,0.910386,0.477848,0.735427,0.621723,0.0589754,0.589139,0.889983,0.461142,0.705994,0.887365,0.24488,0.212373,0.302361,0.563604,0.739095,0.271191,0.279629,0.36071,0.130428,0.664746,0.427473,0.175598,0.267748,0.883437,0.886727,0.950446,0.439367,0.654732,0.0697955,0.834526,0.133334,0.596696,0.828306,0.892305,0.875324,0.110051,0.548256,0.175486,0.309262,0.75484,0.821596,0.565076,0.783962,0.93223,0.276612,0.272576,0.45415,0.797386,0.422582,0.0949278,0.92728,0.190534,0.455456,0.213399,0.210301,0.346358,0.515709,0.600035,0.128938,0.576932,0.909841,0.8782,0.31298,0.129136,0.104348,0.569499,0.796161,0.136729,0.796292,0.687621,0.460158,0.673142,0.40183,0.318486,0.704616,0.150531,0.67167,0.137109,0.4455,0.231673,0.324962,0.830611,0.360299,0.221893,0.0533247,0.0789543,0.237486,0.117777,0.17595,0.230009,0.860163,0.0554739,0.295205,0.720902,0.652844,0.330828,0.712337,0.692062,0.690481,0.93872,0.50708,0.895502,0.992776,0.122509,0.272801,0.191789,0.687482,0.766311,0.900606,0.612797,0.0102516,0.409688,0.904073,0.767602,0.507771,0.0330713,0.97861,0.535993,0.522901,0.789694,0.841424,0.202985,0.884746,0.929713,0.818089,0.800048,0.31034,0.290398,0.653557,0.476292,0.343431,0.258081,0.31937,0.880792,0.117105,0.957853,0.443203,0.9833,0.00908756,0.269725,0.642846,0.330925,0.651953,0.72374,0.66093,0.405133,0.211493,0.1097,0.555616,0.170722,0.74529,0.897235,0.42261,0.0394613,0.879658,0.974521,0.845179,0.768374,0.571954,0.653318,0.354996,0.0293208,0.64576,0.562402,0.481709,0.991491,0.1339,0.560567,0.237171,0.442367,0.886883,0.410731,0.528063,0.940412,0.532842,0.00609952,0.382238,0.870383,0.0159756,0.948589,0.176043,0.921883,0.0142707,0.360287,0.968127,0.062681,0.912526,0.0675981,0.821585,0.803964,0.425021,0.74067,0.879864,0.997777,0.539399,0.646775,0.25447,0.750745,0.917908,0.889135,0.0381745,0.333483,0.936105,0.329303,0.224226,0.0292529,0.260808,0.0583294,0.442047,0.356518,0.232707,0.245921,0.329853,0.985566,0.230864,0.456951,0.159911,0.64434,0.418763,0.0775205,0.264875,0.32553,0.57333,0.61649,0.196998,0.823977,0.312469,0.641458,0.579692,0.637829,0.682831,0.716793,0.911798,0.156844,0.320605,0.162722,0.892764,0.257202,0.293584,0.869301,0.80537,0.304562,0.691828,0.963992,0.226758,0.789556,0.441101,0.48359,0.572959,0.236852,0.832898,0.227986,0.968344,0.496785,0.543351,0.137931,0.0787539,0.477104,0.351507,0.680689,0.0227038,0.77485,0.294599,0.598812,0.447175,0.586042,0.126569,0.0661989,0.430589,0.889132,0.41247,0.822877,0.595457,0.84244,0.696495,0.299888,0.186443,0.382262,0.976979,0.0941869,0.0529003,0.562158,0.737675,0.168518,0.264426,0.119845,0.788451,0.724,0.899966,0.925235,0.64195,0.4494,0.469766,0.512186,0.482592,0.892898,0.825583,0.281522,0.631246,0.840211,0.303436,0.244037,0.600472,0.735099,0.815729,0.842722,0.949004,0.957059,0.163339,0.139001,0.724411,0.122653,0.134975,0.380409,0.473952,0.206353,0.107575,0.866782,0.580228,0.571281,0.666885,0.807715,0.268632,0.311124,0.236614,0.228512,0.552398,0.957131,0.567958,0.164675,0.998104,0.611047,0.709912,0.706792,0.389448,0.862274,0.953599,0.930802,0.486978,0.460168,0.249475,0.463968,0.270051,0.129197,0.203603,0.370653,0.745838,0.34172,0.781715,0.834852,0.199455,0.451084,0.562668,0.77374,0.100908,0.13572,0.455746,0.625477,0.543865,0.631289,0.784068,0.879062,0.42186,0.921159,0.104581,0.51337,0.505343,0.827903,0.245589,0.944318,0.126861,0.776962,0.914171,0.748633,0.650803,0.203339,0.960179,0.77846,0.405856,0.969165,0.0479441,0.152624,0.167361,0.213956,0.740023,0.972329,0.525333,0.909644,0.297208,0.100418,0.00601846,0.905161,0.792887,0.514006,0.349529,0.721974,0.523431,0.500549,0.00136501,0.26533,0.34066,0.548849,0.147726,0.787537,0.81544,0.955032,0.263967,0.928094,0.592798,0.638222,0.965438,0.867249,0.960705,0.314143,0.185698,0.810525,0.298742,0.754801,0.655761,0.672805,0.589229,0.0135373,0.0746872,0.749757,0.977547,0.0217268,0.406658,0.696578,0.596765,0.507833,0.0849845,0.320141,0.0389194,0.204281,0.692145,0.21282,0.119868,0.243658,0.626673,0.85953,0.985197,0.276325,0.477938,0.105209,0.687985,0.794124,0.714625,0.867905,0.712925,0.943201,0.973078,0.695827,0.454256,0.316891,0.0234953,0.0554574,0.453087,0.757096,0.877746,0.743713,0.650246,0.940523,0.817997,0.967372,0.928283,0.992954,0.213065,0.579385,0.859156,0.563465,0.265508,0.608726,0.813915,0.345869,0.473764,0.475403,0.460987,0.0980152,0.0996513,0.395508,0.189903,0.702189,0.170535,0.637312,0.562724,0.931189,0.881083,0.674011,0.300992,0.44955,0.673481,0.120918,0.0177919,0.815991,0.457181,0.538689,0.369915,0.895831,0.636649,0.911004,0.168296,0.577644,0.0615689,0.598693,0.697375,0.862944,0.441743,0.727955,0.772293,0.253287,0.215543,0.335438,0.282284,0.69235,0.0795783,0.657526,0.409577,0.495285,0.876896,0.885938,0.478766,0.120052,0.853782,0.411622,0.641588,0.84459,0.349964,0.631869,0.322589,0.808558,0.81514,0.917381,0.163435,0.743875,0.788826,0.621043,0.62465,0.0127018,0.693005,0.33288,0.580586,0.383378,0.701185,0.462384,0.432367,0.348756,0.560661,0.229327,0.607514,0.70615,0.416415,0.752083,0.128828,0.137628,0.21634,0.810901,0.64055,0.251017,0.861702,0.369249,0.425746,0.812673,0.274938,0.459045,0.163977,0.297998,0.237088,0.096265,0.429555,0.805561,0.0177931,0.665744,0.545818,0.78445,0.977715,0.735163,0.597374,0.359783,0.540708,0.342235,0.236757,0.105984,0.397166,0.951289,0.681147,0.577904,0.782275,0.827503,0.798285,0.0114059,0.0345107,0.0876846,0.643691,0.862064,0.189182,0.171237,0.37285,0.082979,0.470754,0.147974,0.879301,0.622815,0.345191,0.543858,0.0683064,0.0367548,0.927688,0.0136628,0.247281,0.811917,0.810591,0.9589,0.838456,0.975641,0.196294,0.522595,0.772718,0.768113,0.261604,0.74332,0.308904,0.548918,0.548267,0.182921,0.506808,0.0869105,0.157692,0.928113,0.695239,0.946332,0.902539,0.575826,0.56678,0.585497,0.530721,0.377311,0.341251,0.764073,0.380593,0.471555,0.401492,0.244243,0.749909,0.804122,0.0881553,0.00510532,0.528723,0.107073,0.8526,0.423211,0.957406,0.124518,0.232272,0.763862,0.427891,0.10634,0.631696,0.885916,0.103932,0.1153,0.0819728,0.776679,0.758269,0.0996758,0.86323,0.27179,0.635794,0.475655,0.401244,0.415974,0.426618,0.174409,0.234685,0.50435,0.838702,0.305469,0.684792,0.329179,0.626759,0.89965,0.200105,0.166167,0.234938,0.607823,0.174282,0.037295,0.634591,0.691447,0.598177,0.972603,0.219439,0.795707,0.841017,0.526622,0.55537,0.0171229,0.580936,0.335056,0.173079,0.326242,0.136374,0.724575,0.432141,0.825684,0.642584,0.88932,0.340118,0.654589,0.803136,0.499086,0.803861,0.851293,0.0777163,0.364546,0.646319,0.786189,0.470503,0.64282,0.306114,0.59839,0.489945,0.764243,0.609823,0.599453,0.683104,0.136785,0.655528,0.380989,0.0826475,0.937041,0.0805249,0.725059,0.256177,0.537961,0.493925,0.367049,0.54429,0.00502658,0.69982,0.6604,0.19423,0.463281,0.945516,0.314534,0.901741,0.928434,0.309023,0.467678,0.59924,0.529521,0.537686,0.390474,0.58979,0.383028,0.993707,0.406645,0.410179,0.587995,0.363067,0.664415,0.319912,0.0571542,0.0743963,0.443426,0.271654,0.133355,0.231599,0.804141,0.090742,0.405614,0.751397,0.836721,0.344275,0.191285,0.378808,0.222078,0.0193892,0.128522,0.165273,0.706708,0.789715,0.204558,0.546103,0.238318,0.434495,0.669298,0.312918,0.899503,0.897499,0.712775,0.824984,0.50097,|0.274887,0.183168,0.202988,0.444056,0.512927,0.4572,0.841696,0.178884,0.911528,0.317275,0.272446,0.0307078,0.625281,0.193896,0.345245,0.17633,0.689475,0.0655431,0.324607,0.0174326,0.0401096,0.154014,0.02333,0.151776,0.942238,0.495911,0.0864003,0.195179,0.875409,0.884729,0.89941,0.667961,0.214773,0.267081,0.974161,0.778346,0.726629,0.420076,0.132104,0.990025,0.471395,0.693509,0.42904,0.275148,0.212954,0.905851,0.987935,0.792837,0.0783719,0.593223,0.677586,0.326797,0.469525,0.0131016,0.771303,0.272006,0.18041,0.210836,0.293636,0.450033,0.429623,0.444594,0.209091,0.564426,0.860788,0.0383586,0.9207,0.777213,0.884576,0.0422698,0.0783843,0.708606,0.471077,0.190468,0.736058,0.97828,0.807065,0.536168,0.982674,0.882571,0.0655866,0.24567,0.252395,0.485733,0.135459,0.863941,0.911908,0.828854,0.02232,0.281255,0.134734,0.0664728,0.253554,0.315553,0.478795,0.769527,0.332881,0.909188,0.266038,0.837648,0.587231,0.613774,0.395638,0.0965745,0.920374,0.382184,0.917452,0.428641,0.0140289,0.587595,0.377046,0.589381,0.328566,0.0528291,0.507769,0.715325,0.0156682,0.104304,0.645311,0.865527,0.712607,0.868582,0.768047,0.451434,0.0601884,0.868125,0.985123,0.476732,0.654943,0.0718392,0.84476,0.0369034,0.803524,0.0614715,0.332377,0.93268,0.804577,0.699446,0.572483,0.520246,0.415928,0.667241,0.85461,0.158069,0.498087,0.0775009,0.89889,0.242036,0.391045,0.898405,0.175082,0.697731,0.907145,0.243487,0.534203,0.371122,0.344884,0.262775,0.679503,0.246015,0.914057,0.170647,0.570219,0.233788,0.31955,0.728918,0.442462,0.13294,0.517973,0.159845,0.78188,0.801186,0.760171,0.752171,0.0465464,0.107663,0.776915,0.55571,0.425646,0.0148582,0.361985,0.436111,0.793346,0.202089,0.101723,0.152858,0.751616,0.94633,0.711118,0.118981,0.696173,0.203215,0.302203,0.611644,0.988265,0.963328,0.254441,0.847831,0.943468,0.559573,0.55306,0.725807,0.103997,0.845907,0.298032,0.316209,0.0719225,0.696379,0.757237,0.184219,0.662414,0.0295974,0.355737,0.24982,0.668869,0.172376,0.701966,0.825847,0.399381,0.703649,0.474153,0.240944,0.78385,0.348688,0.785108,0.477575,0.257384,0.536564,0.536524,0.229825,0.879675,0.996676,0.357991,0.865352,0.84303,0.856353,0.262272,0.602189,0.384025,0.79932,0.13978,0.142155,0.294744,0.0593017,0.152659,0.969561,0.219106,0.370635,0.650061,0.0105778,0.745088,0.105238,0.932071,0.0447983,0.872864,0.707908,0.243214,0.818842,0.258793,0.16991,0.125986,0.0583539,0.0454153,0.834455,0.184336,0.914382,0.767199,0.0974573,0.372375,0.87867,0.425584,0.397473,0.522896,0.728616,0.798011,0.0144135,0.68334,0.372005,0.216617,0.815243,0.936068,0.77928,0.123969,0.334457,0.49008,0.025812,0.172808,0.794395,0.389624,0.950871,0.12724,0.401621,0.68006,0.0624084,0.530903,0.210698,0.346808,0.818365,0.631102,0.584566,0.119394,0.42462,0.558104,0.850595,0.83906,0.977899,0.206473,0.3102,0.33516,0.466463,0.720929,0.180173,0.66227,0.645272,0.0961744,0.484788,0.823439,0.747698,0.143725,0.935758,0.699511,0.770805,0.0471515,0.520252,0.719172,0.286215,0.704078,0.271304,0.7816,0.521409,0.996714,0.37718,0.025328,0.566528,0.758378,0.456386,0.723692,0.848773,0.163768,0.3824,0.734901,0.798706,0.0775586,0.14363,0.583679,0.0855244,0.766473,0.847588,0.0991857,0.584217,0.352304,0.82373,0.17969,0.890274,0.071459,0.762714,0.21204,0.94414,0.0334591,0.0346596,0.131603,0.783029,0.55502,0.798492,0.615794,0.930162,0.330026,0.747311,0.23994,0.943066,0.823056,0.627205,0.848056,0.794385,0.173212,0.41403,0.484458,0.710367,0.479853,0.373692,0.790703,0.976014,0.506489,0.732793,0.319216,0.250847,0.97166,0.351989,0.0730458,0.766891,0.831166,0.933362,0.847687,0.375991,0.246455,0.177079,0.242874,0.961463,0.518951,0.209721,0.0323349,0.893754,0.654567,0.0163826,0.430159,0.63656,0.375702,0.65396,0.18273,0.378717,0.864416,0.077679,0.943619,0.942692,0.534158,0.276557,0.744097,0.25078,0.164784,0.0361778,0.723143,0.579515,0.9319,0.850915,0.823171,0.462669,0.094158,0.788483,0.0287816,0.211934,0.398292,0.84289,0.348855,0.121489,0.457094,0.993908,0.580466,0.765414,0.58792,0.327521,0.0340096,0.248981,0.919857,0.492867,0.838817,0.823631,0.303187,0.926076,0.0843511,0.0865875,0.450532,0.601839,0.967996,0.0675501,0.446714,0.151204,0.385324,0.44193,0.706304,0.0991862,0.250371,0.12118,0.174186,0.0214092,0.795494,0.138824,0.31064,0.852154,0.908874,0.666478,0.565992,0.278936,0.810434,0.0851299,0.19972,0.288216,0.348147,0.0658209,0.628604,0.876651,0.723973,0.183092,0.0133034,0.855108,0.276898,0.62576,0.709158,0.55349,0.0451325,0.336186,0.781469,0.745466,0.472652,0.928206,0.436819,0.693503,0.74727,0.552271,0.331403,0.648303,0.494371,0.727805,0.311892,0.140892,0.35083,0.967741,0.42405,0.201554,0.981559,0.640254,0.20414,0.578603,0.972239,0.622962,0.0435542,0.919196,0.723171,0.808182,0.00501406,0.74008,0.351864,0.512818,0.697842,0.0174491,0.265647,0.376203,0.405197,0.899097,0.998477,0.928658,0.411009,0.556995,0.315373,0.245713,0.846255,0.134943,0.0777761,0.193638,0.0465273,0.495368,0.684333,0.736978,0.980815,0.7115,0.993645,0.521935,0.538791,0.347413,0.77034,0.0916033,0.957971,0.64968,0.408689,0.493621,0.274234,0.368212,0.74617,0.747346,0.665732,0.422229,0.985816,0.0912898,0.0745244,0.310086,0.266763,0.665307,0.188741,0.559661,0.589377,0.932003,0.80135,0.846452,0.590556,0.488302,0.24867,0.453674,0.573061,0.17606,0.521377,0.331545,0.455276,0.157984,0.882402,0.251333,0.580737,0.754986,0.0797504,0.644088,0.781977,0.859541,0.756263,0.719274,0.930521,0.640151,0.0520917,0.894787,0.646898,0.889245,0.00885856,0.962962,0.780364,0.0752425,0.481032,0.171063,0.125866,0.0992334,0.182943,0.892228,0.301751,0.215461,0.40782,0.282307,0.564493,0.713152,0.171186,0.620269,0.275133,0.0343905,0.248744,0.808401,0.288321,0.655989,0.977957,0.0110112,0.396847,0.87905,0.491329,0.294576,0.716944,0.269742,0.767805,0.116789,0.824215,0.202758,0.814514,0.238385,0.92852,0.571403,0.00120389,0.0331996,0.815402,0.471794,0.690205,0.766684,0.264749,0.044606,0.448057,0.0816786,0.607917,0.26403,0.906955,0.503254,0.222054,0.836424,0.0471077,0.903167,0.00966984,0.317517,0.483371,0.0697319,0.0424482,0.354702,0.285051,0.624426,0.293877,0.518268,0.682173,0.616901,0.693687,0.80243,0.937352,0.957106,0.44718,0.159222,0.898547,0.338352,0.345573,0.0304336,0.177084,0.357528,0.22853,0.464045,0.495858,0.184146,0.326827,0.247114,0.226636,0.424078,0.149498,0.0905607,0.265087,0.992478,0.744592,0.623542,0.541081,0.440064,0.427575,0.232279,0.867319,0.00363737,0.830154,0.859624,0.794981,0.474888,0.851569,0.921561,0.478678,0.292037,0.151786,0.685354,0.960313,0.480864,0.402364,0.980007,0.0407403,0.204925,0.0707222,0.424165,0.761603,0.611078,0.933458,0.637855,0.923555,0.82173,0.779694,0.386698,0.345393,0.0733033,0.875199,0.532735,0.857159,0.535977,0.503411,0.584905,0.545535,0.0946035,0.780464,0.813533,0.779528,0.229281,0.348806,0.728729,0.565634,0.926111,0.64796,0.228964,0.830155,0.0128597,0.480327,0.88156,0.0955156,0.867686,0.586402,0.95802,0.0177814,0.371733,0.154884,0.925123,0.440029,0.525084,0.874953,0.0190035,0.386088,0.607408,0.143252,0.389001,0.491611,0.217344,0.106932,0.753932,0.467827,0.679925,0.553305,0.122925,0.307564,0.435541,0.350436,0.601627,0.448525,0.826433,0.273291,0.60242,0.444096,0.898859,0.565379,0.108556,0.812449,0.942708,0.43171,0.341345,0.756099,0.57295,0.316971,0.100386,0.122303,0.208828,0.171518,0.868929,0.504741,0.946464,0.48131,0.106143,0.885816,0.68877,0.15346,0.450121,0.571237,0.729577,0.785943,0.24258,0.279903,0.832235,0.254345,0.513213,0.670772,0.290811,0.0592372,0.0414617,0.213885,0.437227,0.302673,0.154175,0.75316,0.738778,0.343877,0.134932,0.98828,0.412446,0.647586,0.719872,0.030875,0.641634,0.289791,0.294987,0.319751,0.571866,0.187462,0.0823123,0.925677,0.545999,0.0542204,0.313466,0.646906,0.626127,0.796337,0.195345,0.886379,0.988885,0.851066,0.415169,0.395726,0.414688,0.891437,0.665968,0.901287,0.326411,0.363579,0.475828,0.0330419,0.293589,0.504519,0.700132,0.225653,0.1566,0.0394009,0.157129,0.737924,0.700962,0.0837981,0.901295,0.946841,0.354287,0.0488245,0.986158,0.0535365,0.209365,0.512101,0.229565,0.515453,0.533967,0.293368,0.171588,0.648505,0.281384,0.0249049,0.564803,0.356228,0.836741,0.0388101,0.254338,0.246857,0.392461,0.421656,0.814356,0.403932,0.388439,0.989497,0.724822,0.360769,0.366688,0.21348,0.882907,0.471673,0.460829,0.133589,0.774491,0.870154,0.444839,0.62254,0.514485,0.799583,0.714816,0.691761,0.528246,0.799912,0.737315,0.436778,0.907681,0.45299,0.104981,0.67174,0.945031,0.384988,0.214273,0.756072,0.52881,0.80623,0.486771,0.53528,0.538003,0.202479,0.727782,0.743977,0.333966,0.717228,0.630258,0.696251,0.553296,0.685045,0.450741,0.10248,0.0646729,0.592481,0.120607,0.257946,0.722211,0.333149,0.928217,0.863105,0.0152034,0.288663,0.423909,0.0701913,0.840573,0.456539,0.469599,0.14762,0.869167,0.509774,0.275655,0.747851,0.542934,0.790046,0.475766,0.450952,0.07341,0.0649493,0.411718,0.50716,0.747904,0.769566,0.373001,0.652829,0.985222,0.550723,0.670154,0.712625,0.0660436,0.418599,0.429588,0.193022,0.515801,0.0658928,0.594459,0.568738,0.572332,0.45158,0.408513,0.182913,0.571236,0.389264,0.979413,0.82122,0.331175,0.0247813,0.783286,0.547186,0.481417,0.895234,0.580339,|0.627536,0.949399,0.132242,0.890494,0.20968,0.329509,0.816118,0.621417,0.274207,0.500895,0.454513,0.710876,0.191521,0.316714,0.734299,0.80881,0.953599,0.862619,0.851042,0.252119,0.727731,0.259226,0.610078,0.847446,0.00919616,0.516455,0.979561,0.797803,0.64058,0.248543,0.196689,0.0806574,0.0754182,0.304501,0.28938,0.111152,0.231237,0.306131,0.727511,0.340279,0.911143,0.705548,0.311091,0.189218,0.889596,0.449046,0.664752,0.292398,0.0114726,0.911743,0.163657,0.732653,0.542535,0.640885,0.65296,0.874447,0.641822,0.989461,0.709828,0.686448,0.448087,0.0691829,0.402107,0.607129,0.582072,0.280471,0.514325,0.863044,0.817085,0.115842,0.932961,0.498817,0.96851,0.649298,0.572107,0.443038,0.586553,0.0964901,0.149341,0.710465,0.112512,0.836145,0.988066,0.0466704,0.285769,0.714106,0.0391595,0.780476,0.48043,0.810986,0.619657,0.822245,0.163788,0.0932869,0.012782,0.480762,0.868141,0.603633,0.207694,0.641485,0.869749,0.709481,0.901266,0.35723,0.45589,0.324939,0.930042,0.704237,0.111697,0.606847,0.841687,0.0682996,0.643192,0.252065,0.776369,0.616714,0.45561,0.848675,0.211226,0.0104933,0.00101984,0.655964,0.595248,0.994383,0.674217,0.45138,0.493014,0.255565,0.0119607,0.823136,0.958298,0.555797,0.941095,0.294541,0.798757,0.220262,0.871186,0.619127,0.604606,0.479607,0.993734,0.605356,0.489817,0.0159079,0.401066,0.17205,0.812812,0.560422,0.189534,0.368492,0.158596,0.152756,0.558158,0.0807242,0.690241,0.854301,0.529338,0.862673,0.93232,0.433604,0.988316,0.698795,0.878403,0.497202,0.693168,0.541319,0.369627,0.478035,0.723291,0.370578,0.173005,0.698789,0.607097,0.140064,0.252765,0.0120191,0.606247,0.289053,0.752689,0.465641,0.815691,0.512517,0.941908,0.238514,0.479869,0.932243,0.360032,0.218156,0.0880778,0.988404,0.48397,0.106886,0.881148,0.752032,0.0515905,0.332113,0.812477,0.75983,0.76031,0.042293,0.110657,0.445652,0.470188,0.775615,0.279032,0.761923,0.94816,0.890841,0.152026,0.431886,0.667901,0.234044,0.854636,0.703882,0.659535,0.68296,0.807656,0.65164,0.853139,0.654284,0.77009,0.640362,0.929491,0.986514,0.0262156,0.74777,0.8518,0.0696548,0.285795,0.902039,0.483697,0.713956,0.599128,0.0212322,0.677852,0.160674,0.0662482,0.407269,0.00907606,0.495158,0.74519,0.479947,0.0145319,0.354974,0.652914,0.856712,0.664289,0.301174,0.378623,0.492334,0.846562,0.211217,0.867937,0.0666289,0.556584,0.662561,0.838366,0.345751,0.0552548,0.384092,0.0333135,0.922936,0.451366,0.730283,0.685988,0.808621,0.143098,0.171912,0.262716,0.725928,0.399686,0.842358,0.240965,0.340314,0.239997,0.0244573,0.706299,0.935418,0.742246,0.80863,0.644296,0.715387,0.109379,0.255704,0.824666,0.607731,0.15946,0.889841,0.384662,0.223338,0.56027,0.196636,0.601619,0.0293133,0.254612,0.898949,0.113861,0.863753,0.398762,0.188881,0.370925,0.47409,0.975241,0.988029,0.750173,0.528308,0.724685,0.947179,0.372189,0.665544,0.450133,0.811246,0.294748,0.621408,0.246273,0.427213,0.720379,0.645125,0.668276,0.767247,0.963038,0.438733,0.804842,0.650782,0.554909,0.0245986,0.771688,0.637856,0.989254,0.839505,0.991272,0.184006,0.628983,0.467297,0.591048,0.445869,0.526793,0.148812,0.822538,0.0759014,0.694313,0.028471,0.089727,0.835599,0.485024,0.891965,0.696414,0.562137,0.98595,0.818115,0.556248,0.615334,0.306914,0.208443,0.395122,0.102634,0.208623,0.297956,0.472286,0.325362,0.778125,0.484343,0.409084,0.48575,0.605208,0.540668,0.831874,0.573766,0.691293,0.361065,0.165551,0.346631,0.329696,0.269149,0.9858,0.838341,0.209395,0.926733,0.313154,0.294995,0.147677,0.388744,0.452823,0.357603,0.0709241,0.284558,0.450868,0.746998,0.461217,0.38334,0.696912,0.642597,0.803946,0.653858,0.623514,0.222189,0.948863,0.786677,0.510835,0.275399,0.633357,0.4702,0.0496396,0.177609,0.548805,0.544453,0.990812,0.783568,0.355068,0.693934,0.948739,0.102986,0.860121,0.742008,0.311285,0.0727046,0.411696,0.876863,0.304432,0.420081,0.0767016,0.276314,0.381492,0.461266,0.404779,0.470471,0.362178,0.960673,0.28436,0.0297893,0.607034,0.234968,0.540643,0.801085,0.66889,0.0488655,0.157254,0.85738,0.459575,0.209545,0.272816,0.399893,0.714296,0.779303,0.447383,0.132938,0.39599,0.358709,0.921511,0.862915,0.608322,0.0319629,0.26568,0.872114,0.0141962,0.77675,0.0856408,0.287601,0.715196,0.419827,0.284754,0.713161,0.821156,0.165225,0.987015,0.0988795,0.276447,0.167149,0.130076,0.759433,0.0697113,0.136708,0.424426,0.440076,0.59629,0.724461,0.235815,0.375981,0.373714,0.860408,0.0252034,0.549154,0.514361,0.493068,0.752918,0.870681,0.687528,0.397138,0.183679,0.340465,0.73818,0.695326,0.943087,0.0797155,0.0073216,0.359965,0.62311,0.0875487,0.351194,0.499778,0.613232,0.00618172,0.130706,0.592494,0.790986,0.024659,0.0603124,0.90953,0.44479,0.663148,0.435816,0.802967,0.708074,0.517382,0.400998,0.997325,0.0383877,0.687716,0.74472,0.0297874,0.0648787,0.451034,0.163004,0.0793063,0.785503,0.00381804,0.89179,0.373624,0.163196,0.168526,0.744497,0.0683258,0.555756,0.746644,0.189448,0.828588,0.444008,0.505475,0.517259,0.0998889,0.450157,0.284548,0.00348288,0.896902,0.650974,0.271613,0.29817,0.697216,0.939898,0.603466,0.296766,0.543063,0.0115919,0.766284,0.0586671,0.977007,0.72364,0.268672,0.733014,0.473588,0.585311,0.331168,0.853127,0.614369,0.698238,0.359688,0.788863,0.497129,0.16821,0.633703,0.0244523,0.571548,0.656658,0.642943,0.641427,0.678759,0.246933,0.76613,0.641793,0.436876,0.483032,0.799127,0.0637828,0.921527,0.691469,0.998478,0.959644,0.415641,0.908877,0.210413,0.792363,0.867455,0.106252,0.841232,0.400674,0.780376,0.91748,0.954262,0.389975,0.638299,0.354251,0.492823,0.979054,0.127672,0.341871,0.0171257,0.0747845,0.559726,0.740117,0.4509,0.561603,0.819733,0.160678,0.474103,0.439701,0.520977,0.433892,0.215943,0.942716,0.943407,0.00105053,0.0852114,0.604106,0.216474,0.672521,0.373313,0.0364137,0.0727986,0.0137427,0.460395,0.292922,0.801993,0.72216,0.837485,0.593523,0.144811,0.864588,0.82161,0.356402,0.3934,0.999054,0.369336,0.733498,0.931007,0.666131,0.731843,0.928108,0.967429,0.380363,0.889982,0.211542,0.292834,0.897913,0.263355,0.413327,0.70463,0.858204,0.62993,0.987944,0.675404,0.613462,0.504809,0.426407,0.31278,0.565975,0.60837,0.0146829,0.843361,0.572937,0.423256,0.195815,0.726364,0.995126,0.453553,0.511293,0.181583,0.0803242,0.501897,0.707524,0.469121,0.167785,0.831774,0.799163,0.90088,0.0366722,0.0841902,0.751525,0.173976,0.477745,0.797084,0.488038,0.254206,0.74876,0.663006,0.40393,0.832301,0.0854836,0.963783,0.177332,0.30192,0.777248,0.760483,0.0443864,0.771964,0.487159,0.054785,0.0771487,0.447951,0.82442,0.853877,0.415371,0.632074,0.440763,0.720932,0.312006,0.81976,0.210239,0.455699,0.934285,0.637356,0.0538686,0.142945,0.172699,0.438646,0.555833,0.339724,0.429227,0.519985,0.277511,0.360307,0.405927,0.800634,0.872688,0.119998,0.221234,0.895292,0.703675,0.936449,0.555448,0.765882,0.634392,0.907316,0.300487,0.670267,0.687155,0.766154,0.0964047,0.218434,0.471193,0.481126,0.0198151,0.144924,0.913176,0.427263,0.412778,0.477304,0.0352312,0.719833,0.985866,0.695092,0.452085,0.73318,0.11709,0.453389,0.142407,0.0492417,0.440555,0.45914,0.884016,0.458506,0.115334,0.206415,0.212156,0.062651,0.230383,0.813943,0.12347,0.503136,0.682262,0.935631,0.905184,0.613548,0.740027,0.827924,0.260141,0.448839,0.426289,0.0353299,0.534035,0.405544,0.915287,0.107716,0.218332,0.319071,0.265517,0.0877691,0.0520436,0.013285,0.320304,0.598254,0.693037,0.834851,0.629731,0.48933,0.274983,0.525115,0.261652,0.279069,0.251047,0.278374,0.263248,0.0816779,0.0822495,0.347026,0.59315,0.842049,0.519511,0.663147,0.605807,0.433592,0.40384,0.460168,0.432306,0.19868,0.50112,0.130687,0.235431,0.933331,0.0644484,0.592785,0.101247,0.607597,0.743666,0.139375,0.00991005,0.0212396,0.758372,0.0673223,0.997521,0.815772,0.627455,0.94294,0.12909,0.643857,0.460323,0.621759,0.693308,0.878628,0.314833,0.703416,0.955476,0.246916,0.167619,0.147825,0.38805,0.317236,0.24108,0.296265,0.900561,0.59869,0.206727,0.280282,0.179957,0.106088,0.493524,0.540203,0.611879,0.902571,0.861968,0.941836,0.733538,0.546993,0.456681,0.161123,0.83689,0.990291,0.411433,0.199645,0.585768,0.978864,0.899001,0.182755,0.91941,0.169811,0.439069,0.323192,0.949118,0.923699,0.601336,0.223111,0.240281,0.536309,0.89963,0.184039,0.9375,0.363115,0.942864,0.249059,0.418181,0.89797,0.34178,0.0594466,0.379202,0.28049,0.493888,0.731877,0.11461,0.948704,0.094657,0.962917,0.00543779,0.941098,0.2593,0.680908,0.323685,0.118718,0.95797,0.585479,0.922104,0.255928,0.0978172,0.572665,0.213586,0.381279,0.984402,0.414446,0.865789,0.415066,0.461942,0.163331,0.869071,0.0667166,0.443738,0.962817,2.08616e-05,0.0582138,0.807066,0.508786,0.457919,0.0483838,0.904143,0.520065,0.690572,0.329062,0.635484,0.428644,0.695383,0.772485,0.555643,0.850608,0.988195,0.394073,0.920886,0.569181,0.433813,0.606654,0.399931,0.905815,0.517801,0.387592,0.990394,0.767692,0.697068,0.521903,0.478412,0.844757,0.715354,0.833816,0.200585,0.209008,0.794327,0.868328,0.0203123,0.212114,0.606471,0.909683,0.426618,0.212003,0.0609125,0.928162,0.390432,0.796796,0.879148,0.404106,0.913547,0.222282,0.925995,0.993477,0.306377,0.293566,0.0449069,0.598363,0.292891,0.20565,0.0607653,0.716989,0.669916,0.851275,0.985113,0.0979039,|0.109576,0.627139,0.86318,0.315594,0.58571,0.251338,0.27421,0.706953,0.813881,0.143131,0.578989,0.627348,0.665787,0.445531,0.100216,0.230639,0.597793,0.302583,0.144294,0.88344,0.998861,0.155126,0.530545,0.029379,0.531923,0.716057,0.00382817,0.515255,0.138592,0.291657,0.269778,0.483417,0.276318,0.12307,0.328713,0.063027,0.933153,0.668588,0.145653,0.288172,0.103999,0.264355,0.261229,0.424605,0.585886,0.219242,0.592243,0.0189867,0.703566,0.695209,0.25609,0.530435,0.523216,0.285148,0.764793,0.780601,0.453395,0.43672,0.390806,0.428803,0.511632,0.601918,0.752649,0.601454,0.859584,0.114559,0.958205,0.0353847,0.60715,0.0717844,0.0458812,0.3356,0.738907,0.841629,0.446298,0.177852,0.0916939,0.127866,0.785754,0.34994,0.591759,0.514681,0.222603,0.0232328,0.522597,0.0867036,0.465729,0.696452,0.240454,0.308748,0.191674,0.5796,0.453695,0.731655,0.682619,0.560857,0.490551,0.256791,0.928253,0.572485,0.521603,0.941422,0.86667,0.0299773,0.821042,0.194259,0.28899,0.180021,0.619534,0.921634,0.024667,0.811907,0.495201,0.0285842,0.558447,0.826044,0.561466,0.244009,0.683972,0.258251,0.214353,0.433516,0.606922,0.295505,0.952508,0.466926,0.524902,0.179671,0.83177,0.603653,0.85078,0.538223,0.0344864,0.857891,0.781508,0.950756,0.444145,0.936679,0.154241,0.0314191,0.315496,0.361001,0.0682293,0.24211,0.799497,0.463147,0.874552,0.367893,0.548414,0.35529,0.59626,0.499264,0.592501,0.0966167,0.0429507,0.709877,0.690389,0.494641,0.106907,0.701102,0.486242,0.796659,0.568109,0.211499,0.208932,0.967182,0.314266,0.852549,0.695672,0.0803496,0.318117,0.131698,0.48641,0.408148,0.0337757,0.989945,0.739395,0.843115,0.98328,0.798034,0.538247,0.741283,0.234344,0.88766,0.107448,0.736769,0.478761,0.449215,0.679819,0.0822774,0.263737,0.806362,0.782152,0.667625,0.295164,0.28676,0.357416,0.277822,0.104705,0.463587,0.297611,0.627694,0.147923,0.881176,0.849442,0.0409779,0.791009,0.56658,0.0568087,0.86538,0.861688,0.598639,0.71669,0.616736,0.696256,0.441169,0.54878,0.344936,0.980642,0.129478,0.826808,0.268269,0.67653,0.0457841,0.430297,0.866533,0.427745,0.239172,0.333055,0.493233,0.459447,0.237745,0.516708,0.677465,0.978642,0.553051,0.584019,0.345913,0.962752,0.334442,0.895246,0.834692,0.752203,0.35147,0.883628,0.981267,0.284398,0.371045,0.62999,0.793719,0.131717,0.394835,0.276456,0.147631,0.105798,0.632016,0.31811,0.66455,0.669681,0.81388,0.29757,0.0304872,0.294477,0.723158,0.73122,0.58243,0.30926,0.756106,0.508333,0.247656,0.51369,0.431682,0.0792086,0.4244,0.775157,0.590344,0.858315,0.0609545,0.900139,0.869925,0.450532,0.422949,0.47187,0.588036,0.781581,0.0942929,0.641575,0.931058,0.0883007,0.416432,0.270764,0.980364,0.509869,0.0911206,0.563914,0.479911,0.69175,0.920209,0.839123,0.719835,0.524226,0.434412,0.936649,0.974123,0.930319,0.888174,0.472761,0.466268,0.179076,0.797953,0.807687,0.172568,0.226003,0.917236,0.386695,0.614718,0.781491,0.977459,0.470096,0.660033,0.383161,0.40209,0.361024,0.732338,0.518563,0.914599,0.554608,0.655592,0.720525,0.701651,0.073589,0.817143,0.224983,0.359987,0.450207,0.577333,0.459329,0.735596,0.695768,0.243843,0.0135109,0.547944,0.147779,0.991092,0.260072,0.506437,0.775748,0.516023,0.472196,0.73595,0.403617,0.433047,0.561837,0.397414,0.0466115,0.246577,0.182988,0.36524,0.912095,0.723073,0.00629365,0.795195,0.0853211,0.128463,0.177336,0.694991,0.0212378,0.658912,0.643381,0.422835,0.793642,0.274626,0.236317,0.120854,0.00329584,0.0685351,0.609038,0.197872,0.712932,0.18045,0.899717,0.712028,0.768074,0.58351,0.493657,0.568014,0.813094,0.81736,0.519334,0.604781,0.628198,0.763667,0.678388,0.8136,0.529514,0.654616,0.676998,0.187089,0.581327,0.729634,0.0849028,0.78184,0.507038,0.504726,0.0174763,0.304955,0.875755,0.707506,0.0643809,0.143324,0.458214,0.186282,0.481169,0.918034,0.596152,0.52344,0.414979,0.0120268,0.216073,0.349824,0.0573279,0.0173834,0.0299039,0.86412,0.171594,0.02592,0.103441,0.806506,0.100233,0.771876,0.421764,0.546508,0.636309,0.581195,0.738884,0.178957,0.663863,0.580735,0.386958,0.396073,0.923141,0.442603,0.173317,0.516156,0.399317,0.208974,0.348731,0.298882,0.394686,0.954776,0.753517,0.249732,0.452478,0.525828,0.316679,0.6336,0.894179,0.909007,0.89755,0.209823,0.987713,0.678002,0.56901,0.0164769,0.0478587,0.827539,0.52254,0.339742,0.636863,0.0554289,0.712584,0.466466,0.0964755,0.115072,0.912447,0.432718,0.424787,0.83686,0.231972,0.779813,0.216086,0.192102,0.95776,0.201024,0.420176,0.32003,0.403199,0.877258,0.473991,0.802612,0.968708,0.23884,0.896849,0.0566851,0.00411427,0.609789,0.477767,0.122329,0.462512,0.392241,0.683804,0.0355995,0.49827,0.51206,0.0492824,0.111952,0.361297,0.216658,0.700634,0.579116,0.248424,0.16108,0.684345,0.419221,0.673771,0.917329,0.962103,0.141276,0.257455,0.423261,0.0652076,0.195471,0.36117,0.882662,0.400929,0.879773,0.0950423,0.50722,0.280605,0.63211,0.0758311,0.0834194,0.826447,0.546799,0.308266,0.326732,0.796059,0.101208,0.619974,0.506023,0.691313,0.539371,0.241744,0.889116,0.682875,0.635279,0.543308,0.711247,0.469254,0.296576,0.80655,0.897138,0.108717,0.221285,0.924022,0.995366,0.511485,0.44406,0.989223,0.823013,0.865876,0.218897,0.513367,0.436119,0.878389,0.743648,0.522802,0.370336,0.97159,0.892008,0.877959,0.550713,0.953646,0.801007,0.205018,0.510163,0.613857,0.691388,0.145369,0.0221507,0.67552,0.11267,0.320631,0.925005,0.360459,0.891701,0.976124,0.283552,0.125502,0.371448,0.271653,0.452148,0.669714,0.398459,0.134902,0.625951,0.0759513,0.969173,0.43355,0.0594682,0.87763,0.386671,0.947047,0.201667,0.23397,0.096884,0.357485,0.28234,0.750137,0.484498,0.0284404,0.922588,0.602573,0.748154,0.141787,0.619051,0.00189376,0.0106124,0.872481,0.271505,0.0721058,0.392263,0.846695,0.583016,0.0633718,0.00972015,0.83533,0.637478,0.420278,0.202534,0.497404,0.0387961,0.403564,0.438364,0.19911,0.258277,0.726429,0.279109,0.738167,0.778314,0.64482,0.580601,0.555209,0.703522,0.161405,0.375903,0.760661,0.891343,0.188789,0.497228,0.0249336,0.990562,0.868419,0.35128,0.59673,0.0341814,0.821638,0.18657,0.156366,0.118996,0.0195939,0.501245,0.57937,0.388147,0.941728,0.861861,0.546765,0.85988,0.180331,0.0299071,0.120519,0.110327,0.464993,0.994344,0.443456,0.445723,0.478507,0.954129,0.726711,0.716403,0.402692,0.68163,0.0884512,0.622799,0.657343,0.696603,0.443471,0.509889,0.810644,0.484753,0.359227,0.494004,0.849476,0.612078,0.650341,0.477198,0.0883831,0.652397,0.971824,0.864943,0.593463,0.568277,0.139041,0.966415,0.443991,0.062821,0.646021,0.880046,0.8642,0.503027,0.883798,0.872754,0.348626,0.317158,0.424956,0.0386438,0.22652,0.242233,0.763842,0.787212,0.806924,0.626658,0.537703,0.187998,0.105441,0.40549,0.66712,0.499611,0.907036,0.978573,0.809134,0.791978,0.599469,0.929774,0.820552,0.115905,0.720955,0.866861,0.433641,0.382738,0.37662,0.283691,0.790675,0.260595,0.067189,0.653035,0.734034,0.260474,0.706398,0.586783,0.652939,0.294896,0.353379,0.487575,0.372801,0.493,0.41387,0.353265,0.339237,0.279339,0.0517569,0.191686,0.472455,0.784961,0.691238,0.419145,0.48184,0.846716,0.460459,0.975543,0.691436,0.948964,0.686137,0.172297,0.984523,0.522377,0.656858,0.430986,0.00467604,0.642756,0.395927,0.667503,0.419755,0.433156,0.345852,0.793883,0.985137,0.204173,0.647747,0.205044,0.683401,0.0887767,0.31967,0.975124,0.565426,0.527902,0.153109,0.025068,0.781972,0.35182,0.390657,0.413649,0.16298,0.936683,0.191351,0.648866,0.00215483,0.193968,0.815871,0.949162,0.108917,0.546519,0.642048,0.316911,0.672606,0.107483,0.420285,0.938423,0.495363,0.88644,0.527217,0.560672,0.55499,0.666213,0.131989,0.0689435,0.0601919,0.612189,0.471904,0.253234,0.388596,0.842168,0.680366,0.24172,0.511445,0.439258,0.814348,0.564776,0.250276,0.315489,0.894524,0.261991,0.00304419,0.60441,0.548722,0.930498,0.385661,0.233865,0.473222,0.341511,0.511435,0.915341,0.242178,0.929905,0.303398,0.612378,0.0902675,0.408019,0.319924,0.389387,0.48768,0.949194,0.636085,0.0674934,0.321755,0.128753,0.113117,0.46204,0.842211,0.92597,0.37626,0.19025,0.63699,0.0960097,0.0936121,0.880997,0.771311,0.248027,0.8463,0.448503,0.52277,0.238498,0.839978,0.993984,0.706399,0.521167,0.381427,0.877974,0.321108,0.463522,0.120233,0.681414,0.325653,0.509512,0.341185,0.0519037,0.228289,0.712477,0.730854,0.220087,0.266221,0.612651,0.999938,0.179748,0.610265,0.466459,0.88945,0.908534,0.321308,0.815095,0.5631,0.498769,0.804879,0.48812,0.435798,0.386975,0.6603,0.690217,0.74439,0.760551,0.454597,0.296978,0.219266,0.254158,0.404623,0.246548,0.768899,0.736007,0.314251,0.626386,0.474571,0.149567,0.826886,0.610331,0.569049,0.455216,0.0603148,0.359654,0.533599,0.612099,0.165405,0.245845,0.0167106,0.265087,0.504778,0.0880274,0.198821,0.650645,0.529869,0.083499,0.361458,0.782099,0.432718,0.160864,0.422937,0.178091,0.14418,0.557021,0.470614,0.0551691,0.462419,0.700323,0.695936,0.787821,0.0321818,0.105703,0.423784,0.861246,0.882394,0.138563,0.625488,0.44321,0.154665,0.0621883,0.934897,0.0588098,0.789787,0.607199,0.143583,0.898499,0.856173,0.392521,0.158386,0.576121,0.539784,0.607994,0.148548,0.89302,0.485407,0.467437,0.598377,0.484519,0.605882,0.783729,0.968369,0.940813,0.340068,0.793301,0.867482,0.0144562,|0.83843,0.71535,0.859647,0.402609,0.910694,0.899232,0.613241,0.932012,0.234882,0.269632,0.543082,0.660785,0.11567,0.501081,0.0407897,0.673234,0.527803,0.441658,0.0245329,0.700883,0.449345,0.833621,0.889513,0.0212572,0.674827,0.414252,0.244308,0.0926943,0.864765,0.892147,0.515381,0.334342,0.492297,0.871052,0.0515957,0.050877,0.513549,0.120996,0.770217,0.341611,0.0950344,0.794071,0.991002,0.802532,0.118057,0.298538,0.35875,0.966329,0.57731,0.513307,0.353078,0.861443,0.486787,0.724211,0.77539,0.295545,0.9374,0.370798,0.902495,0.989715,0.24297,0.228124,0.659702,0.766016,0.0803255,0.61738,0.107583,0.682426,0.0134256,0.499097,0.471941,0.32922,0.398001,0.93242,0.466193,0.836868,0.0724266,0.571955,0.241085,0.553704,0.060087,0.929371,0.701982,0.825344,0.788614,0.706352,0.141533,0.294042,0.547071,0.493444,0.37081,0.04584,0.663783,0.179412,0.181759,0.181755,0.526548,0.4474,0.168467,0.145564,0.461191,0.965042,0.908129,0.923847,0.695902,0.146263,0.120445,0.220264,0.878242,0.576611,0.507271,0.18822,0.621754,0.61099,0.885138,0.28704,0.816579,0.252499,0.331607,0.673918,0.0893739,0.912141,0.016688,0.368792,0.801723,0.285035,0.307263,0.806522,0.205934,0.321119,0.286966,0.478423,0.562932,0.349089,0.686836,0.421313,0.779425,0.472997,0.853069,0.809454,0.0456603,0.430534,0.888185,0.119789,0.498429,0.307548,0.834198,0.741815,0.164906,0.398355,0.585417,0.0340253,0.22513,0.635323,0.254042,0.241243,0.533331,0.550258,0.587781,0.469477,0.519078,0.232121,0.591156,0.457393,0.0952189,0.778241,0.654924,0.233582,0.489814,0.606851,0.154452,0.705292,0.868471,0.198512,0.367878,0.905574,0.176019,0.317019,0.0172068,0.525169,0.449462,0.778092,0.0831862,0.297493,0.858775,0.228218,0.595583,0.528995,0.102215,0.545042,0.623459,0.964431,0.751616,0.827255,0.315229,0.247072,0.0776256,0.285228,0.955342,0.260084,0.401826,0.864201,0.485592,0.421572,0.0262201,0.0207444,0.278066,0.222658,0.90726,0.373034,0.605439,0.164531,0.964244,0.24604,0.843153,0.105232,0.214483,0.329202,0.261198,0.527594,0.656163,0.656237,0.84828,0.722892,0.379866,0.651162,0.388872,0.489776,0.925465,0.125953,0.305161,0.0209462,0.390172,0.916411,0.179582,0.716706,0.274329,0.533734,0.846107,0.633168,0.580284,0.574261,0.436775,0.714852,0.172864,0.0411752,0.0491543,0.505443,0.628316,0.511758,0.130525,0.204766,0.212025,0.599112,0.723774,0.594039,0.864283,0.902323,0.950819,0.460623,0.229122,0.174492,0.398071,0.319959,0.965575,0.774211,0.717745,0.0300784,0.581106,0.893231,0.160313,0.0992257,0.849277,0.000505686,0.571615,0.0816258,0.223741,0.211544,0.829917,0.133628,0.066223,0.341552,0.61929,0.679867,0.305082,0.706395,0.547469,0.569676,0.841082,0.91756,0.639309,0.27768,0.0682861,0.297741,0.288085,0.0975141,0.326343,0.37991,0.635432,0.420634,0.595484,0.507581,0.592406,0.939021,0.570333,0.984155,0.293538,0.173296,0.244531,0.0610878,0.611746,0.366607,0.883856,0.443359,0.785098,0.927402,0.592291,0.679499,0.0820953,0.257491,0.748049,0.793568,0.234596,0.354399,0.527846,0.115382,0.735334,0.396455,0.473547,0.771938,0.262,0.935775,0.689617,0.0578073,0.56972,0.330883,0.16878,0.138771,0.98674,0.385131,0.607307,0.775585,0.629661,0.345048,0.126021,0.857032,0.453456,0.385987,0.411893,0.65288,0.208047,0.0804173,0.612806,0.234233,0.618957,0.206174,0.0757636,0.261957,0.662548,0.862889,0.609359,0.937763,0.613327,0.00662827,0.652791,0.315123,0.966655,0.448858,0.33926,0.156339,0.0930099,0.00352138,0.781114,0.922161,0.965909,0.185265,0.62999,0.0470473,0.910737,0.570413,0.597934,0.0237021,0.22318,0.539848,0.621915,0.537253,0.996247,0.0683991,0.59229,0.467398,0.700899,0.951034,0.85599,0.365998,0.592114,0.549886,0.66567,0.0715125,0.806444,0.621703,0.0293168,0.349368,0.898828,0.214141,0.913105,0.1115,0.208047,0.102515,0.756403,0.0273512,0.0362414,0.442534,0.442723,0.475772,0.100069,0.0184402,0.398624,0.0166625,0.657971,0.761681,0.82986,0.126249,0.169786,0.891036,0.81705,0.358028,0.146698,0.924858,0.981295,0.748011,0.793895,0.056223,0.936529,0.308717,0.0329266,0.89469,0.0609992,0.167337,0.62937,0.193653,0.486184,0.599599,0.923156,0.917629,0.291024,0.0682462,0.799706,0.918921,0.09535,0.94569,0.210841,0.202747,0.983631,0.119363,0.687774,0.443077,0.070806,0.909418,0.260914,0.778587,0.73933,0.402588,0.377844,0.562191,0.362738,0.991349,0.305795,0.120974,0.0239091,0.941268,0.977517,0.384489,0.104965,0.228393,0.750884,0.762353,0.345489,0.75842,0.969693,0.629637,0.856711,0.36038,0.520095,0.620666,0.889194,0.000816286,0.664056,0.865037,0.218634,0.930245,0.160492,0.0843542,0.512211,0.350906,0.311169,0.946012,0.0478903,0.678326,0.895863,0.336473,0.998955,0.712282,0.558035,0.300873,0.477309,0.35422,0.0830908,0.579585,0.0442303,0.980475,0.70701,0.0233415,0.214429,0.662684,0.803563,0.594391,0.749479,0.144979,0.324317,0.821206,0.317847,0.0572272,0.613194,0.710016,0.535025,0.807255,0.622356,0.892687,0.069443,0.390474,0.101853,0.841924,0.636078,0.982929,0.20538,0.75343,0.200868,0.104509,0.191295,0.932473,0.418905,0.0524394,0.871555,0.939231,0.840011,0.556158,0.382713,0.0404558,0.286527,0.685649,0.701209,0.444701,0.651346,0.323229,0.140414,0.758453,0.316451,0.422173,0.60506,0.95707,0.0266874,0.390452,0.60856,0.874811,0.102893,0.188431,0.0597706,0.172406,0.258054,0.576602,0.254433,0.2411,0.929863,0.477549,0.297813,0.856911,0.53606,0.277328,0.174792,0.736834,0.214215,0.714069,0.984587,0.763721,0.582041,0.390545,0.16764,0.780137,0.811076,0.588296,0.299008,0.893636,0.494828,0.335845,0.19136,0.222188,0.510718,0.0525848,0.173216,0.960776,0.556372,0.240487,0.575895,0.168241,0.134908,0.81439,0.789623,0.130857,0.651075,0.341299,0.0100697,0.521582,0.164631,0.0552065,0.918967,0.132112,0.643988,0.519052,0.586398,0.650728,0.308067,0.0977606,0.731173,0.178469,0.430742,0.844399,0.497898,0.868386,0.801408,0.70443,0.445719,0.200661,0.085376,0.960621,0.792074,0.195874,0.656742,0.220086,0.965124,0.518207,0.992701,0.550265,0.975085,0.560399,0.430717,0.184816,0.719769,0.95935,0.436906,0.796127,0.319958,0.169986,0.456692,0.409851,0.557609,0.475386,0.543645,0.657603,0.482385,0.490189,0.993633,0.853256,0.28025,0.696986,0.576729,0.10674,0.0971873,0.989866,0.127361,0.779873,0.829818,0.570098,0.509445,0.445011,0.140155,0.320378,0.24238,0.21592,0.902759,0.891646,0.510065,0.656622,0.994961,0.963664,0.918078,0.646013,0.052207,0.562147,0.44677,0.254251,0.350992,0.751111,0.32671,0.552112,0.731392,0.712491,0.358179,0.350879,0.177018,0.879199,0.567853,0.0905219,0.26328,0.167362,0.0537955,0.763156,0.0297506,0.332795,0.0371073,0.176128,0.210551,0.0283777,0.913218,0.252211,0.37094,0.0300711,0.0624057,0.43229,0.196443,0.789966,0.244056,0.417338,0.99639,0.220367,0.149124,0.882135,0.744277,0.481446,0.147344,0.0748104,0.0271241,0.970673,0.624934,0.320627,0.783121,0.289401,0.642024,0.0151258,0.46539,0.723956,0.629494,0.258443,0.880219,0.024574,0.793881,0.164652,0.0673804,0.735703,0.725029,0.754193,0.984745,0.20634,0.78613,0.161935,0.575075,0.913047,0.263153,0.907389,0.15472,0.51973,0.559449,0.79265,0.830152,0.886471,0.663622,0.872443,0.71848,0.282501,0.076993,0.539555,0.225515,0.149043,0.399785,0.531255,0.136315,0.06046,0.971043,0.284148,0.166922,0.743258,0.358087,0.416067,0.691114,0.159213,0.0882414,0.909596,0.168775,0.392828,0.585836,0.122603,0.774261,0.646235,0.853099,0.703171,0.219529,0.708089,0.067834,0.143069,0.861067,0.113688,0.48055,0.501233,0.506094,0.760965,0.756234,0.557551,0.728706,0.686305,0.846937,0.599652,0.249637,0.678347,0.321057,0.575059,0.709009,0.0330206,0.270054,0.691977,0.383204,0.744344,0.270063,0.246052,0.715816,0.782047,0.22467,0.265421,0.513999,0.764483,0.790074,0.0743291,0.951401,0.320344,0.973164,0.2537,0.232042,0.476349,0.463467,0.604726,0.64507,0.227907,0.370167,0.577069,0.157788,0.248659,0.802557,0.473722,0.880932,0.0410907,0.993596,0.15677,0.0305695,0.312253,0.150091,0.277621,0.0988768,0.25852,0.716577,0.645218,0.196033,0.109069,0.322408,0.884229,0.250312,0.882652,0.704405,0.376013,0.972115,0.311888,0.66015,0.978082,0.981083,0.641175,0.848331,0.853634,0.451618,0.967156,0.256189,0.802964,0.677069,0.966894,0.53627,0.0173787,0.38075,0.945347,0.290511,0.276135,0.727881,0.586566,0.159217,0.368471,0.425467,0.425249,0.390826,0.774302,0.744457,0.263434,0.615378,0.170448,0.869611,0.817121,0.0797033,0.646855,0.0224321,0.857126,0.684265,0.373442,0.964539,0.226564,0.597554,0.190519,0.156237,0.0640749,0.0889035,0.223546,0.657452,0.696572,0.45446,0.801684,0.596071,0.54957,0.661247,0.959396,0.43662,0.408629,0.586555,0.790065,0.431223,0.498991,0.498195,0.414705,0.684189,0.350294,0.961751,0.762683,0.78222,0.964309,0.993633,0.0185953,0.945966,0.598764,0.282551,0.598064,0.385544,0.557643,0.629824,0.260134,0.549994,0.017252,0.394558,0.352523,0.931645,0.37791,0.736116,0.351264,0.79823,0.591208,0.202754,0.674765,0.652957,0.894674,0.624055,0.304294,0.0498674,0.632436,0.690451,0.992164,0.925708,0.851446,0.0891648,0.211664,0.2768,0.672632,0.581361,0.43007,0.474875,0.452814,0.920065,0.313717,0.298727,0.0977986,0.833468,0.805193,0.634167,0.37962,0.00558507,0.0873114,0.82696,0.126061,0.332704,0.205268,0.653058,0.974632,0.840233,0.111265,0.453915,0.0829291,0.431228,0.103356,0.818828,0.250626,|0.0703529,0.0492069,0.787161,0.291873,0.229062,0.583877,0.187932,0.771633,0.744231,0.110736,0.106503,0.626537,0.0477755,0.926889,0.345271,0.60672,0.629315,0.85859,0.654924,0.188733,0.155728,0.184437,0.558618,0.766596,0.967198,0.53453,0.375372,0.0114323,0.97159,0.789527,0.671274,0.39213,0.588315,0.48312,0.388355,0.866736,0.575428,0.236476,0.920735,0.238192,0.595102,0.473845,0.0570109,0.867841,0.26048,0.323827,0.727922,0.821555,0.377237,0.973684,0.727555,0.238739,0.919104,0.868459,7.02143e-05,0.211243,0.102826,0.630574,0.759506,0.832961,0.533396,0.605651,0.0891277,0.208629,0.00655216,0.0119423,0.579048,0.523861,0.736318,0.64281,0.459098,0.869961,0.42751,0.70636,0.581737,0.581559,0.650133,0.49913,0.5002,0.865914,0.128142,0.699528,0.750302,0.875614,0.294935,0.788744,0.163811,0.527707,0.112082,0.404359,0.311576,0.36459,0.134325,0.562151,0.505567,0.746879,0.99995,0.201541,0.139341,0.22368,0.84431,0.670467,0.829167,0.164825,0.58198,0.86125,0.0698963,0.235288,0.763401,0.286523,0.0788152,0.203015,0.923523,0.224809,0.851214,0.397645,0.619241,0.530348,0.470409,0.768735,0.74911,0.0330917,0.682744,0.981273,0.0529746,0.178089,0.153998,0.651812,0.813638,0.127548,0.616875,0.274322,0.0440468,0.319622,0.864268,0.309778,0.740619,0.0613232,0.705881,0.235148,0.657294,0.854243,0.134761,0.603297,0.0267597,0.99828,0.223889,0.957171,0.457828,0.461416,0.692415,0.135733,0.668148,0.354764,0.327188,0.485798,0.995485,0.257806,0.966682,0.502404,0.85405,0.19264,0.3236,0.150837,0.542294,0.743322,0.352501,0.606994,0.626623,0.587049,0.88049,0.653738,0.457914,0.314368,0.814875,0.776945,0.330281,0.00269967,0.823655,0.420184,0.266037,0.0635223,0.182576,0.537883,0.218857,0.312147,0.166235,0.813976,0.407529,0.212332,0.427927,0.622083,0.291164,0.0619847,0.795652,0.222333,0.266018,0.16873,0.459255,0.224194,0.610079,0.155312,0.464819,0.80198,0.19142,0.611218,0.59648,0.530656,0.100104,0.226912,0.515822,0.6061,0.842667,0.527675,0.95013,0.259064,0.988028,0.303036,0.378789,0.806893,0.75274,0.322944,0.270651,0.684145,0.799788,0.983897,0.983064,0.855551,0.0373189,0.755491,0.255794,0.632778,0.431038,0.628403,0.0310977,0.0781417,0.299855,0.643331,0.780962,0.23527,0.254054,0.51342,0.743691,0.0942997,0.523069,0.346681,0.160139,0.385742,0.00715882,0.709828,0.535013,0.850912,0.310187,0.0183797,0.602267,0.780346,0.807953,0.335234,0.0144897,0.806364,0.361066,0.0318271,0.53446,0.487601,0.420548,0.0743405,0.768112,0.792232,0.741339,0.346297,0.65859,0.812172,0.625357,0.627661,0.979921,0.364418,0.459842,0.139414,0.681241,0.880666,0.403439,0.760714,0.460545,0.202627,0.555863,0.862383,0.606417,0.479074,0.327889,0.956115,0.897063,0.124943,0.113979,0.546506,0.947693,0.675752,0.515464,0.610707,0.140965,0.578166,0.621744,0.733857,0.0911725,0.911958,0.679042,0.288051,0.75184,0.605896,0.918547,0.293138,0.770557,0.314037,0.302287,0.493784,0.880956,0.598689,0.0416689,0.963691,0.268547,0.345874,0.511671,0.853249,0.468472,0.145732,0.268565,0.682842,0.620576,0.543608,0.290402,0.619945,0.548649,0.530244,0.761446,0.13534,0.166075,0.874776,0.621842,0.332514,0.345037,0.951407,0.259542,0.945142,0.123425,0.457416,0.676724,0.454953,0.528937,0.57947,0.385459,0.657914,0.181557,0.420155,0.950592,0.611948,0.162217,0.954917,0.366235,0.199931,0.520503,0.140885,0.709271,0.968041,0.401171,0.817519,0.802814,0.0405542,0.0725529,0.333451,0.521641,0.407317,0.310819,0.226122,0.383348,0.730245,0.990826,0.873493,0.469085,0.573744,0.430153,0.372928,0.949103,0.608604,0.584605,0.743497,0.145291,0.581282,0.295027,0.106696,0.30327,0.353357,0.970514,0.317817,0.620016,0.785634,0.342923,0.986916,0.650155,0.670812,0.618102,0.234106,0.508596,0.61677,0.340866,0.357962,0.865117,0.992681,0.410346,0.00201291,0.952068,0.0907744,0.509867,0.577806,0.00961429,0.541878,0.322237,0.31309,0.321882,0.0070743,0.770999,0.623027,0.289497,0.0647933,0.12031,0.309705,0.371888,0.492206,0.983033,0.065905,0.0441243,0.160944,0.565398,0.530756,0.107178,0.802959,0.459699,0.990503,0.655174,0.719497,0.348595,0.305429,0.0438387,0.118098,0.525002,0.228342,0.26166,0.133266,0.0665234,0.371771,0.914173,0.958541,0.307616,0.924236,0.152398,0.688356,0.0982178,0.41124,0.937875,0.544515,0.513832,0.835318,0.315972,0.300773,0.349376,0.958273,0.636415,0.640141,0.39098,0.059626,0.692317,0.283563,0.301987,0.913306,0.779562,0.0936798,0.516573,0.0513773,0.701228,0.429888,0.477495,0.648296,0.967156,0.0971075,0.0590073,0.72658,0.569035,0.319478,0.99541,0.00717133,0.607417,0.283058,0.611294,0.649998,0.752025,0.592162,0.912248,0.378002,0.466981,0.794472,0.0923192,0.0432432,0.163728,0.955413,0.713392,0.01608,0.934883,0.551783,0.0325084,0.795747,0.224691,0.23796,0.899324,0.523118,0.274991,0.304933,0.76398,0.0302298,0.690825,0.922932,0.0909177,0.171952,0.319947,0.641349,0.64761,0.878018,0.0711448,0.527472,0.269003,0.80777,0.10207,0.68105,0.552225,0.947319,0.964985,0.484747,0.636892,0.450842,0.0175498,0.303096,0.489294,0.222156,0.872683,0.040452,0.187182,0.963883,0.0468944,0.728539,0.816583,0.165857,0.232909,0.120505,0.225721,0.770109,0.447355,0.610647,0.267943,0.333409,0.147595,0.970251,0.877924,0.465047,0.0242208,0.370108,0.563694,0.252686,0.308407,0.147379,0.529525,0.807253,0.967907,0.398922,0.339068,0.417156,0.717717,0.186595,0.542771,0.211564,0.365484,0.0194734,0.949893,0.196819,0.000730991,0.532629,0.046211,0.500385,0.998829,0.637216,0.0718941,0.889559,0.549418,0.895024,0.486987,0.0358717,0.0602491,0.0825474,0.841434,0.992066,0.351471,0.486614,0.396497,0.899011,0.168243,0.918714,0.189022,0.745417,0.0542913,0.0351723,0.948053,0.745882,0.170945,0.100606,0.33935,0.111212,0.101654,0.694659,0.777517,0.345894,0.765078,0.812421,0.943705,0.758972,0.853499,0.588615,0.776507,0.908323,0.485222,0.289928,0.809387,0.216838,0.959172,0.266965,0.632588,0.554822,0.656853,0.866239,0.954743,0.210889,0.432333,0.859502,0.888356,0.643221,0.997475,0.939964,0.796915,0.206202,0.638291,0.262344,0.376459,0.0708957,0.937853,0.907388,0.289299,0.574812,0.0511019,0.0456889,0.470434,0.00755614,0.667927,0.32539,0.108218,0.10799,0.713526,0.274866,0.17689,0.578289,0.67966,0.528742,0.645258,0.64208,0.0650331,0.931151,0.115751,0.519228,0.858115,0.654909,0.845883,0.340493,0.772356,0.0914357,0.962152,0.704842,0.784152,0.963312,0.910165,0.634632,0.77211,0.0790848,0.300446,0.269712,0.475914,0.26056,0.315251,0.915777,0.489008,0.1769,0.838248,0.904452,0.420765,0.860861,0.842508,0.418117,0.0555729,0.831138,0.336739,0.86778,0.816238,0.307551,0.180328,0.357587,0.748326,0.972461,0.0324267,0.959699,0.0783304,0.422518,0.494096,0.832592,0.914255,0.042144,0.799281,0.749585,0.143402,0.069864,0.715721,0.51332,0.593431,0.932591,0.606205,0.333259,0.598136,0.193655,0.914786,0.427151,0.102957,0.922245,0.352548,0.769589,0.75826,0.416371,0.433355,0.87041,0.769292,0.228859,0.835503,0.0586284,0.259222,0.151369,0.0104188,0.506072,0.117314,0.126291,0.585662,0.949248,0.75989,0.915812,0.0852639,0.26286,0.562546,0.185225,0.543692,0.00317824,0.0824638,0.766299,0.28354,0.606272,0.179669,0.520287,0.242099,0.976728,0.476036,0.89294,0.546894,0.0374516,0.567945,0.347869,0.237987,0.619581,0.951098,0.584789,0.575636,0.193543,0.927777,0.754172,0.0488485,0.540141,0.767231,0.961646,0.220716,0.331089,0.416734,0.693826,0.0830778,0.720895,0.783666,0.132929,0.74167,0.674765,0.774935,0.0787723,0.845237,0.812355,0.932613,0.800839,0.428198,0.845909,0.943961,0.701423,0.928683,0.130545,0.264577,0.708763,0.484375,0.954881,0.0453684,0.956661,0.430062,0.203816,0.978655,0.407295,0.167406,0.46846,0.480068,0.841484,0.45754,0.205771,0.443655,0.843491,0.420617,0.836524,0.239194,0.465114,0.777508,0.150044,0.375338,0.72643,0.621021,0.910062,0.855082,0.765634,0.374402,0.773561,0.196353,0.873544,0.549212,0.00519693,0.0177847,0.618913,0.0542834,0.565735,0.442996,0.440287,0.440097,0.450465,0.328088,0.0473807,0.750379,0.995804,0.0326346,0.494824,0.741334,0.244076,0.241497,0.615787,0.849403,0.302618,0.780047,0.240133,0.437667,0.474292,0.85928,0.338707,0.480775,0.709422,0.166694,0.660723,0.621376,0.955583,0.910747,0.252921,0.759763,0.169003,0.468413,0.473002,0.455066,0.313919,0.999102,0.409353,0.0932193,0.979267,0.082549,0.57055,0.843985,0.372498,0.419602,0.640917,0.300249,0.0451564,0.813785,0.684712,0.294447,0.101096,0.999215,0.0381755,0.531613,0.00327897,0.504905,0.482044,0.883857,0.523506,0.95028,0.649122,0.327801,0.638597,0.351841,0.942709,0.394261,0.454284,0.316736,0.136096,0.481837,0.924123,0.638308,0.122635,0.559842,0.375967,0.152962,0.268799,0.42856,0.948754,0.821607,0.763218,0.920698,0.928793,0.556873,0.232584,0.838695,0.868515,0.264178,0.637827,0.725582,0.695567,0.326697,0.540977,0.605612,0.504434,0.56345,0.0201504,0.328837,0.980514,0.198402,0.53654,0.017711,0.47305,0.527166,0.434451,0.16524,0.686768,0.409828,0.954856,0.599388,0.0344475,0.0744095,0.241909,0.0546228,0.493386,0.48187,0.858582,0.562642,0.0598859,0.333418,0.663061,0.471599,0.0590102,0.551907,0.524724,0.225699,0.0528073,0.372766,0.626542,0.0607642,0.67951,0.953539,0.851305,0.246483,0.381115,0.611065,0.462295,0.295024,0.847081,0.472621,0.49087,0.623968,0.504066,0.551424,0.682149,0.268234,0.0129998,0.213887,0.411577,0.0786188,0.516504,|0.50822,0.891492,0.312544,0.516635,0.821571,0.555803,0.672297,0.300508,0.512263,0.913835,0.00999272,0.79428,0.111942,0.902858,0.109744,0.430481,0.558289,0.61795,0.307785,0.90638,0.401236,0.707166,0.624441,0.557292,0.790445,0.636506,0.913893,0.54347,0.285209,0.622907,0.859213,0.922257,0.662816,0.498855,0.2912,0.974535,0.430101,0.0815788,0.779891,0.886799,0.51742,0.53041,0.660544,0.459633,0.486416,0.205655,0.66952,0.912885,0.094207,0.189869,0.904958,0.472906,0.099463,0.518399,0.456886,0.470069,0.118655,0.351094,0.0173517,0.810589,0.187957,0.264122,0.0143552,0.227688,0.79272,0.919199,0.792637,0.0867549,0.586983,0.0664235,0.491091,0.842098,0.216723,0.140896,0.357344,0.889726,0.460151,0.524181,0.213859,0.298438,0.9049,0.984012,0.69896,0.899503,0.752369,0.624124,0.893056,0.123628,0.380585,0.83424,0.737708,0.320542,0.269404,0.394828,0.829667,0.344695,0.837194,0.686482,0.767147,0.131562,0.321523,0.945802,0.234051,0.111137,0.595603,0.75496,0.892954,0.24691,0.108633,0.46047,0.133007,0.25598,0.245063,0.69885,0.954561,0.95148,0.852262,0.947693,0.675578,0.256276,0.173244,0.11001,0.585216,0.0577947,0.885453,0.825141,0.551277,0.407179,0.422652,0.78478,0.214311,0.235001,0.0350208,0.913312,0.0540109,0.8463,0.71559,0.365702,0.446107,0.904791,0.0484805,0.084977,0.366142,0.57718,0.760444,0.469262,0.852956,0.158843,0.299265,0.523733,0.502956,0.790193,0.131493,0.0547708,0.798332,0.937257,0.45469,0.390649,0.994261,0.909676,0.858445,0.0582865,0.0685915,0.534888,0.652571,0.523577,0.603994,0.452431,0.708353,0.263353,0.00162822,0.776793,0.334834,0.565662,0.311262,0.0579717,0.979837,0.559706,0.298324,0.781503,0.507977,0.95036,0.392365,0.00830996,0.0146571,0.263657,0.84564,0.91681,0.970145,0.404857,0.851647,0.578414,0.86925,0.31235,0.585923,0.103872,0.0929804,0.831659,0.79502,0.681008,0.564058,0.608525,0.130343,0.0418292,0.929024,0.952108,0.282279,0.230901,0.180246,0.501433,0.91518,0.86483,0.35325,0.0108305,0.819942,0.810335,0.999912,0.616494,0.0187274,0.7198,0.632761,0.405455,0.470135,0.0681177,0.513273,0.737713,0.926333,0.823061,0.432539,0.414935,0.921445,0.218501,0.618104,0.0577323,0.486931,0.286781,0.00873977,0.488325,0.25755,0.60112,0.788847,0.990781,0.52035,0.682491,0.769637,0.562642,0.92393,0.148957,0.377932,0.37485,0.941521,0.268458,0.584915,0.399587,0.414569,0.554678,0.872835,0.16647,0.543246,0.583335,0.140046,0.380961,0.344766,0.590512,0.216074,0.616196,0.4295,0.182898,0.69835,0.125375,0.686098,0.475283,0.84218,0.117847,0.460516,0.116548,0.523897,0.365956,0.330968,0.891476,0.0668854,0.83362,0.656519,0.318578,0.674327,0.564832,0.97026,0.417432,0.979372,0.85479,0.386004,0.635529,0.794963,0.500023,0.74153,0.753573,0.0513842,0.384535,0.990208,0.235905,0.560289,0.256518,0.520551,0.363567,0.525524,0.062082,0.543108,0.448239,0.491862,0.0284498,0.391566,0.986347,0.571752,0.772491,0.119365,0.210774,0.156938,0.825273,0.833628,0.670309,0.391319,0.223737,0.876104,0.232003,0.527231,0.348937,0.779045,0.644848,0.104162,0.456034,0.479664,0.381488,0.0926405,0.713292,0.236416,0.799028,0.692079,0.147742,0.693106,0.783331,0.829819,0.0057928,0.040144,0.961497,0.739209,0.420481,0.786348,0.117083,0.513387,0.113746,0.348063,0.675408,0.073092,0.420034,0.378534,0.314684,0.217334,0.753083,0.532343,0.935945,0.401128,0.471203,0.429018,0.811732,0.319115,0.992285,0.777244,0.948868,0.637593,0.680686,0.686289,0.141154,0.473479,0.454094,0.265837,0.0914243,0.945646,0.534188,0.727219,0.0322867,0.779886,0.950204,0.333913,0.643059,0.0553358,0.597518,0.0249604,0.970181,0.700446,0.0506163,0.524154,0.395844,0.080274,0.0614587,0.52341,0.517503,0.353276,0.398839,0.9541,0.492279,0.891173,0.912586,0.678719,0.699194,0.946023,0.890689,0.385615,0.226001,0.557708,0.399985,0.0416202,0.890077,0.867201,0.567772,0.153624,0.185656,0.341298,0.34977,0.105431,0.852175,0.741243,0.662715,0.385828,0.584372,0.506432,0.609789,0.0729972,0.606274,0.601003,0.938361,0.926808,0.754354,0.915274,0.3653,0.34836,0.739637,0.479147,0.294891,0.391249,0.621694,0.680648,0.212025,0.258892,0.51138,0.885176,0.924234,0.522444,0.0766893,0.208314,0.646171,0.214522,0.713278,0.814616,0.180569,0.133892,0.0426324,0.93295,0.919068,0.0671818,0.317152,0.599792,0.230891,0.185392,0.431542,0.474261,0.631476,0.0955321,0.457757,0.514553,0.359693,0.687547,0.220833,0.833387,0.889316,0.63816,0.23304,0.941954,0.650448,0.203538,0.607446,0.26421,0.73233,0.413776,0.756062,0.326473,0.818155,0.829715,0.724578,0.437722,0.981144,0.104379,0.772258,0.620973,0.567134,0.126312,0.678485,0.310574,0.475131,0.306611,0.222311,0.775818,0.564262,0.794727,0.571924,0.714133,0.252392,0.299016,0.235727,0.85453,0.325108,0.145612,0.52794,0.60971,0.995558,0.860277,0.378866,0.957327,0.729012,0.210316,0.159394,0.411547,0.691983,0.465094,0.172942,0.567095,0.350951,0.9826,0.511318,0.0828577,0.357461,0.782218,0.115486,0.621744,0.341767,0.551552,0.579085,0.300506,0.539843,0.594762,0.686253,0.422308,0.518946,0.303089,0.36069,0.416024,0.515901,0.00213414,0.0152243,0.638999,0.640268,0.979796,0.0360126,0.388722,0.95216,0.579222,0.0222642,0.251164,0.859026,0.979958,0.802173,0.26178,0.25662,0.867217,0.5062,0.0293904,0.0373779,0.882809,0.702013,0.663,0.35122,0.0152061,0.664753,0.450161,0.294865,0.511522,0.644962,0.647334,0.39624,0.276586,0.316893,0.920494,0.0449671,0.712189,0.573455,0.418884,0.102666,0.299822,0.800523,0.987501,0.103713,0.195444,0.386808,0.936568,0.0104168,0.450824,0.499574,0.0695554,0.130815,0.440309,0.252153,0.156795,0.805384,0.382915,0.783743,0.761438,0.477572,0.615322,0.191356,0.381048,0.869621,0.105351,0.220867,0.887129,0.912619,0.402942,0.192165,0.564068,0.161315,0.909964,0.518465,0.653994,0.210131,0.554657,0.626262,0.543986,0.347443,0.95672,0.903233,0.536966,0.809758,0.598002,0.448982,0.125438,0.747119,0.0860065,0.458179,0.0834107,0.254511,0.139032,0.436787,0.372039,0.874343,0.691887,0.553642,0.489355,0.607471,0.386735,0.28864,0.804899,0.568188,0.442387,0.65023,0.47608,0.775878,0.426681,0.360968,0.525633,0.263175,0.776692,0.730709,0.369478,0.967679,0.968392,0.0687534,0.164767,0.392741,0.329324,0.261449,0.288643,0.601235,0.348569,0.723697,0.433994,0.932233,0.483952,0.873822,0.805401,0.513681,0.458253,0.17065,0.0041858,0.728771,0.150042,0.0416182,0.159298,0.599969,0.287244,0.730497,0.143745,0.196963,0.922544,0.461452,0.300604,0.962077,0.562987,0.274841,0.767042,0.653234,0.439047,0.0362782,0.262389,0.345037,0.758086,0.413903,0.829113,0.234035,0.658731,0.338236,0.979759,0.811484,0.916501,0.28671,0.437504,0.412446,0.144422,0.200585,0.497812,0.820705,0.557614,0.760598,0.285615,0.95519,0.569639,0.443827,0.240514,0.812988,0.0700806,0.00583404,0.833293,0.413642,0.827977,0.0328674,0.941344,0.634382,0.932976,0.00951326,0.542633,0.802646,0.920005,0.176935,0.749067,0.868593,0.144442,0.195541,0.70423,0.2859,0.150833,0.735141,0.562536,0.8656,0.902869,0.717941,0.799375,0.371199,0.645674,0.393124,0.94598,0.997972,0.370933,0.29936,0.505502,0.706223,0.354946,0.502017,0.26109,0.116722,0.676816,0.635977,0.810432,0.0242853,0.469971,0.158225,0.245817,0.43058,0.149611,0.0253984,0.431476,0.949855,0.620726,0.294862,0.663484,0.759844,0.336312,0.800295,0.380381,0.578115,0.914789,0.0892628,0.482977,0.0984181,0.136735,0.00632888,0.555605,0.887427,0.504231,0.206839,0.770914,0.194989,0.809934,0.0386093,0.060041,0.407604,0.0478551,0.273118,0.0829406,0.998548,0.403927,0.397389,0.315394,0.134161,0.371442,0.219279,0.725935,0.600412,0.468625,0.742592,0.338201,0.746239,0.0555067,0.68075,0.35036,0.424741,0.369221,0.887132,0.677966,0.85207,0.610301,0.425082,0.246558,0.644563,0.989073,0.0169684,0.398793,0.422011,0.980263,0.320507,0.529371,0.888941,0.454234,0.544241,0.920802,0.65043,0.277586,0.267686,0.132606,0.0183941,0.38659,0.881362,0.897005,0.0871859,0.951628,0.879235,0.506846,0.528026,0.512303,0.441301,0.524088,0.295402,0.0908414,0.963289,0.636779,0.994431,0.428109,0.520186,0.944536,0.588249,0.834115,0.342574,0.146026,0.226122,0.0551963,0.609024,0.835495,0.702957,0.797536,0.379326,0.996826,0.824343,0.407634,0.435226,0.79126,0.109833,0.0236533,0.788613,0.498224,0.0518486,0.0333927,0.788702,0.698853,0.282862,0.764369,0.388107,0.935083,0.5206,0.813231,0.917389,0.176393,0.560128,0.217382,0.341238,0.675665,0.89666,0.738614,0.211211,0.864501,0.126866,0.946679,0.109079,0.591226,0.442813,0.63684,0.415569,0.784277,0.971533,0.603589,0.855138,0.578774,0.65082,0.745024,0.0917647,0.63055,0.610142,0.561258,0.206759,0.951658,0.417101,0.442942,0.612017,0.4837,0.285378,0.530697,0.0835384,0.369234,0.0700746,0.732124,0.563162,0.0421772,0.118657,0.154363,0.344231,0.617794,0.353715,0.681133,0.938844,0.436982,0.460908,0.838694,0.0436807,0.752185,0.508304,0.0797636,0.0651518,0.978374,0.812529,0.0809527,0.682608,0.378512,0.395312,0.374007,0.663129,0.0434114,0.336311,0.335741,0.181798,0.458831,0.294931,0.487861,0.839064,0.355609,0.983261,0.343846,0.368888,0.897876,0.693709,0.579796,0.750106,0.98616,0.417737,0.382475,0.978455,0.0720052,0.994029,0.450647,0.396499,0.171646,0.0750604,0.443177,0.814506,0.225396,0.128347,0.159236,0.148705,0.0371599,0.138735,0.568345,0.508796,0.105136,0.604326,0.871733,0.675539,|0.485077,0.375159,0.606941,0.496531,0.3929,0.614537,0.162807,0.360006,0.688132,0.887933,0.184468,0.770943,0.717411,0.0474707,0.931957,0.694549,0.917668,0.15677,0.517549,0.0235122,0.187207,0.873286,0.522415,0.501539,0.679749,0.112081,0.627198,0.146831,0.86332,0.764819,0.427019,0.708881,0.532225,0.254348,0.0302268,0.550144,0.145076,0.187864,0.610012,0.614592,0.212314,0.305055,0.346293,0.446646,0.564258,0.405173,0.156807,0.969938,0.247823,0.600355,0.0869532,0.73401,0.8501,0.167114,0.545675,0.0606724,0.820179,0.055066,0.0513599,0.00316769,0.145518,0.785772,0.306344,0.428663,0.379658,0.690314,0.639226,0.118238,0.739747,0.221958,0.633849,0.737369,0.703669,0.596831,0.166386,0.631477,0.530603,0.911444,0.0763314,0.949068,0.041855,0.905021,0.244218,0.0811825,0.74047,0.879968,0.13425,0.569826,0.813255,0.25336,0.128756,0.634838,0.733615,0.229503,0.474192,0.570432,0.881846,0.315383,0.84222,0.109733,0.602913,0.95361,0.714867,0.536245,0.396333,0.481963,0.862799,0.14469,0.264997,0.925158,0.893534,0.930839,0.683828,0.641502,0.738344,0.0685791,0.167355,0.245781,0.278949,0.951281,0.132965,0.148238,0.237421,0.144898,0.067397,0.989044,0.53163,0.541377,0.813217,0.644232,0.947035,0.765593,0.176905,0.601495,0.641576,0.889356,0.834058,0.481728,0.0499225,0.419086,0.340604,0.949423,0.377861,0.731331,0.900179,0.519864,0.194326,0.848133,0.993935,0.321818,0.318997,0.668865,0.832438,0.265856,0.985409,0.371596,0.340864,0.536767,0.309389,0.732308,0.45979,0.970848,0.215269,0.601631,0.8275,0.112386,0.209377,0.073276,0.871164,0.855209,0.136926,0.167284,0.842337,0.288961,0.358996,0.964341,0.370802,0.959048,0.114927,0.180312,0.826784,0.484249,0.527531,0.561927,0.704283,0.191915,0.541291,0.558349,0.136279,0.685093,0.706636,0.598968,0.859963,0.599223,0.195976,0.4046,0.743855,0.640744,0.0742953,0.335466,0.328393,0.463459,0.00593287,0.642391,0.642093,0.248985,0.0945731,0.816543,0.262114,0.463834,0.742127,0.554038,0.0890968,0.897782,0.948401,0.829016,0.56022,0.212212,0.316156,0.809256,0.0229777,0.569816,0.923103,0.846276,0.378432,0.0741922,0.200926,0.404046,0.402288,0.625777,0.753928,0.751089,0.617235,0.778674,0.915303,0.689047,0.991655,0.865783,0.110813,0.393517,0.858018,0.0916145,0.86863,0.786445,0.181076,0.915684,0.148739,0.499985,0.862688,0.427071,0.695387,0.606861,0.80085,0.0939309,0.139664,0.688197,0.376634,0.226725,0.168666,0.877593,0.738424,0.0352776,0.0271972,0.166555,0.148521,0.418066,0.286994,0.552652,0.465068,0.635136,0.165275,0.0945409,0.177866,0.80107,0.912764,0.26561,0.664121,0.0368249,0.967685,0.993269,0.203715,0.511421,0.690368,0.0923864,0.614032,0.905257,0.887186,0.846082,0.026266,0.66996,0.92801,0.495332,0.310354,0.951498,0.765543,0.773232,0.311017,0.459612,0.0897818,0.390844,0.40839,0.773132,0.324039,0.147505,0.871677,0.185461,0.264459,0.8289,0.605197,0.474178,0.240056,0.866655,0.319043,0.806614,0.0733366,0.245766,0.898299,0.552175,0.577852,0.716244,0.409141,0.382809,0.695354,0.51289,0.414403,0.114152,0.799109,0.827965,0.414518,0.994411,0.555533,0.864801,0.165838,0.605243,0.491075,0.484157,0.800064,0.471609,0.448127,0.0553336,0.240306,0.412583,0.126304,0.736224,0.133798,0.84929,0.4838,0.897747,0.170511,0.251131,0.241006,0.887062,0.134088,0.863879,0.63287,0.447722,0.451093,0.601768,0.652769,0.375848,0.307756,0.0459358,0.880715,0.360128,0.538277,0.723321,0.618271,0.25128,0.386795,0.197785,0.648679,0.159262,0.769338,0.640062,0.0801925,0.517967,0.806958,0.290294,0.630178,0.562755,0.785915,0.903879,0.324304,0.211868,0.520082,0.677521,0.490284,0.10492,0.848385,0.577659,0.918948,0.774864,0.812188,0.645428,0.266637,0.0759578,0.532872,0.420608,0.703944,0.336403,0.420865,0.706495,0.648137,0.16556,0.0558053,0.623509,0.874213,0.748658,0.123703,0.146604,0.90282,0.0900305,0.738741,0.365788,0.0199982,0.149824,0.421501,0.0201964,0.483794,0.45721,0.111,0.900099,0.839238,0.741425,0.326497,0.628842,0.634099,0.153172,0.0394206,0.475196,0.402579,0.94912,0.117242,0.382976,0.21338,0.984454,0.199815,0.461719,0.98609,0.202959,0.953569,0.891104,0.992869,0.573863,0.845434,0.798639,0.950831,0.287067,0.511939,0.104468,0.479357,0.976755,0.0448385,0.914814,0.413127,0.752935,0.341708,0.0219082,0.103006,0.628918,0.815402,0.575305,0.0218807,0.360406,0.0480383,0.5154,0.69257,0.129979,0.533557,0.965727,0.830249,0.28421,0.439931,0.282397,0.590582,0.415944,0.992195,0.464221,0.226875,0.512537,0.522075,0.210716,0.60356,0.857319,0.305287,0.744058,0.619172,0.303942,0.626243,0.424244,0.531321,0.784578,0.168577,0.673678,0.569504,0.578192,0.840854,0.921092,0.565197,0.988109,0.676864,0.282159,0.954873,0.306776,0.973271,0.604403,0.820365,0.702861,0.870935,0.0626807,0.171263,0.482623,0.00497699,0.628576,0.406356,0.588511,0.720773,0.865246,0.560605,0.162884,0.492307,0.988632,0.64827,0.909819,0.910527,0.00847179,0.312047,0.566085,0.927917,0.0104522,0.119228,0.271258,0.284198,0.616142,0.224329,0.067439,0.307946,0.789257,0.721789,0.311895,0.948848,0.00243628,0.959997,0.795856,0.530928,0.495238,0.988294,0.964284,0.54128,0.565979,0.586938,0.943416,0.436592,0.680834,0.125238,0.456186,0.752065,0.782485,0.908105,0.300954,0.635425,0.874521,0.855118,0.320628,0.485442,0.13522,0.161075,0.0142131,0.012743,0.305745,0.515117,0.990609,0.863163,0.626333,0.0131753,0.0514287,0.164045,0.26501,0.508938,0.847994,0.636854,0.927861,0.813826,0.129773,0.218277,0.781293,0.853266,0.776308,0.221974,0.952468,0.8713,0.0559401,0.470919,0.676977,0.749306,0.728071,0.454507,0.365509,0.973196,0.619068,0.776035,0.636588,0.335352,0.522782,0.744133,0.650423,0.0631738,0.801614,0.601204,0.239262,0.224373,0.243648,0.21038,0.0157856,0.402786,0.510769,0.20638,0.76859,0.425674,0.0181023,0.902957,0.456437,0.339647,0.870468,0.326914,0.880245,0.819001,0.668148,0.514445,0.916114,0.12372,0.412526,0.498316,0.590659,0.832577,0.121824,0.399227,0.00304812,0.549617,0.152212,0.436872,0.832576,0.548408,0.399237,0.768537,0.634212,0.851373,0.162837,0.397253,0.721859,0.900099,0.517054,0.376556,0.405716,0.763005,0.684636,0.920534,0.694363,0.859004,0.0549076,0.47951,0.709193,0.823882,0.13891,0.811852,0.69411,0.798871,0.716113,0.26851,0.614621,0.966896,0.762315,0.804669,0.265867,0.201189,0.311964,0.760264,0.612369,0.69659,0.473882,0.0186681,0.492608,0.593156,0.870628,0.851956,0.508771,0.980836,0.00568569,0.314068,0.750083,0.122808,0.842325,0.396779,0.161755,0.251038,0.744323,0.0435628,0.934558,0.741088,0.303009,0.888724,0.331711,0.599184,0.538821,0.940341,0.850874,0.715676,0.350199,0.0736158,0.217171,0.427535,0.847973,0.345244,0.335836,0.175413,0.609277,0.66782,0.617395,0.35973,0.977541,0.554429,0.38426,0.0803775,0.702538,0.637153,0.28181,0.210073,0.466401,0.572514,0.586768,0.787319,0.782643,0.137007,0.349246,0.128161,0.572706,0.465908,0.748595,0.78296,0.931165,0.781058,0.716292,0.111605,0.801413,0.282923,0.664759,0.0535978,0.992107,0.849019,0.361327,0.217943,0.798033,0.844409,0.189946,0.368126,0.624761,0.725053,0.215534,0.560697,0.914573,0.741486,0.771347,0.81428,0.298239,0.198547,0.122008,0.13135,0.920306,0.304059,0.94389,0.359861,0.255235,0.546231,0.353745,0.85385,0.58724,0.441488,0.169452,0.432562,0.0193943,0.585395,0.907342,0.862577,0.13561,0.901766,0.468682,0.0858466,0.526192,0.192675,0.965401,0.939082,0.222579,0.395485,0.954828,0.271312,0.58058,0.223036,0.365419,0.486418,0.579525,0.0647602,0.10111,0.73022,0.875776,0.899053,0.536789,0.790379,0.431797,0.588423,0.032044,0.0754765,0.691126,0.31886,0.624761,0.574589,0.441918,0.180974,0.460307,0.459179,0.1099,0.770767,0.176066,0.759559,0.182842,0.42145,0.950282,0.0326725,0.0423369,0.351876,0.0275429,0.63026,0.11083,0.506795,0.410108,0.834626,0.808661,0.733529,0.444758,0.803519,0.21632,0.364375,0.298653,0.873169,0.392937,0.839773,0.168102,0.00632292,0.204216,0.491705,0.60842,0.754174,0.684995,0.731347,0.46742,0.237079,0.826093,0.0515259,0.60955,0.513552,0.242103,0.449895,0.036987,0.897102,0.717694,0.648964,0.85394,0.813406,0.723176,0.219617,0.29105,0.23548,0.990376,0.647911,0.611403,0.628546,0.0560125,0.824064,0.10052,0.214331,0.0851824,0.736668,0.670356,0.920523,0.869289,0.930928,0.598176,0.280362,0.777959,0.541347,0.586128,0.482039,0.868659,0.192576,0.74511,0.306862,0.430708,0.821607,0.424565,0.281188,0.201648,0.751468,0.273179,0.788228,0.845506,0.950715,0.110172,0.903717,0.0889735,0.519114,0.56994,0.720051,0.516626,0.546511,0.0424303,0.603446,0.489574,0.678539,0.303203,0.795083,0.301275,0.328763,0.948982,0.962616,0.83279,0.378135,0.0076896,0.169093,0.541067,0.4091,0.940196,0.0311691,0.512362,0.353041,0.00507981,0.447742,0.000215232,0.346221,0.490184,0.764532,0.343417,0.806784,0.538486,0.330067,0.689675,0.645389,0.60603,0.053197,0.168439,0.540207,0.0966405,0.132965,0.561061,0.430218,0.960744,0.986576,0.458161,0.755631,0.0965472,0.00074017,0.934185,0.139733,0.205471,0.872866,0.0561432,0.655352,0.44357,0.865145,0.238533,0.490698,0.0776897,0.52014,0.578493,0.118655,0.249746,0.145761,0.549014,0.185451,0.943501,0.94948,0.724804,0.383257,0.0216752,0.233934,0.37043,0.0691032,0.402433,0.249256,0.178367,0.0609677,0.778696,0.108488,0.414796,0.922487,0.801899,0.941378,0.737079,0.0151138,0.243708,0.0322595,0.769578,|0.00763285,0.999053,0.142096,0.277769,0.85164,0.631729,0.223048,0.268261,0.183478,0.843309,0.329822,0.100768,0.0660163,0.909004,0.443728,0.168193,0.638419,0.046927,0.518287,0.746237,0.689441,0.540444,0.728611,0.400056,0.475228,0.687947,0.21664,0.934376,0.463578,0.621531,0.0961004,0.399915,0.793143,0.595137,0.532918,0.612812,0.688269,0.699234,0.366063,0.063341,0.369197,0.398447,0.235829,0.327329,0.237985,0.561485,0.830462,0.868047,0.399494,0.986005,0.661172,0.5877,0.998917,0.926271,0.596577,0.592864,0.708209,0.0434367,0.968177,0.0684518,0.977345,0.651166,0.382368,0.436338,0.352557,0.825161,0.871388,0.46242,0.601257,0.475211,0.772668,0.694231,0.441094,0.045071,0.632742,0.912364,0.55505,0.134177,0.111791,0.842228,0.877325,0.262026,0.127553,0.0635399,0.487658,0.808092,0.740393,0.158138,0.321985,0.683727,0.499023,0.347083,0.980003,0.879582,0.799331,0.709694,0.376536,0.64101,0.0550004,0.549705,0.452173,0.557362,0.0268306,0.847622,0.348609,0.596507,0.978744,0.965378,0.529639,0.346543,0.497074,0.279315,0.187097,0.44883,0.776081,0.790313,0.400437,0.440841,0.23574,0.37571,0.341583,0.0744928,0.750025,0.454869,0.817448,0.892549,0.829116,0.316202,0.0694923,0.276328,0.339997,0.687939,0.695222,0.932961,0.0924519,0.808294,0.92724,0.689995,0.972651,0.898725,0.696372,0.971545,0.365444,0.940941,0.805555,0.0172441,0.546076,0.0204062,0.583996,0.854734,0.0910676,0.651198,0.420213,0.633084,0.659456,0.79235,0.0810679,0.747003,0.460047,0.663417,0.0834832,0.570286,0.807226,0.769819,0.625463,0.385413,0.749058,0.921448,0.845011,0.372181,0.0901784,0.146401,0.189504,0.419498,0.112593,0.368819,0.137193,0.175314,0.459229,0.807265,0.695144,0.165227,0.332588,0.63717,0.758489,0.586223,0.981506,0.000174642,0.99723,0.200546,0.340754,0.176884,0.960288,0.656649,0.184621,0.0383192,0.577966,0.761678,0.24396,0.271008,0.27202,0.178284,0.42455,0.938641,0.7439,0.173325,0.600085,0.922479,0.597596,0.559187,0.392404,0.493642,0.352077,0.239489,0.0870769,0.686014,0.537366,0.00273931,0.17346,0.187251,0.64719,0.893591,0.609641,0.54375,0.904461,0.00650275,0.411819,0.426943,0.0454026,0.491616,0.902526,0.783564,0.911496,0.625338,0.321615,0.364894,0.562858,0.47861,0.35877,0.014505,0.258637,0.83294,0.681448,0.571524,0.869628,0.149631,0.205882,0.77652,0.693722,0.662565,0.26828,0.444817,0.212916,0.627526,0.613238,0.250143,0.883845,0.156816,0.92095,0.834031,0.19451,0.158324,0.335486,0.630802,0.172687,0.72459,0.427681,0.243063,0.095949,0.382004,0.334064,0.821426,0.505696,0.0933812,0.21769,0.502621,0.288372,0.415709,0.171547,0.378087,0.657995,0.963027,0.446969,0.860545,0.306468,0.956299,0.383807,0.697368,0.440727,0.689716,0.951534,0.621883,0.0650368,0.531117,0.607455,0.437653,0.105373,0.61888,0.0670735,0.551907,0.714339,0.131982,0.539007,0.0812069,0.0765952,0.29678,0.558292,0.860039,0.797081,0.177607,0.357174,0.820053,0.0941278,0.396859,0.117234,0.544352,0.474485,0.0173514,0.143725,0.899275,0.678336,0.91479,0.29477,0.00383765,0.720605,0.366878,0.318606,0.436248,0.749235,0.312572,0.619726,0.710493,0.472716,0.67464,0.852915,0.788278,0.601678,0.577876,0.903693,0.0131162,0.0466354,0.604642,0.608542,0.719437,0.853196,0.438383,0.885202,0.388599,0.463107,0.303669,0.531614,0.404563,0.0858818,0.967375,0.602103,0.498894,0.832504,0.273969,0.513522,0.560452,0.0771077,0.448732,0.462938,0.147238,0.388236,0.796814,0.223709,0.732477,0.982126,0.823263,0.161353,0.766739,0.319185,0.567517,0.385508,0.391927,0.583715,0.491731,0.668568,0.184422,0.730157,0.136926,0.825327,0.0507168,0.0582467,0.330323,0.866696,0.0260001,0.701576,0.841536,0.996204,0.859597,0.617169,0.790593,0.311745,0.0381507,0.472416,0.697226,0.155261,0.673404,0.294535,0.660544,0.271907,0.421391,0.954561,0.865404,0.337377,0.651913,0.46826,0.709698,0.559099,0.518002,0.0988511,0.361514,0.764767,0.342401,0.54502,0.594301,0.6086,0.386258,0.288457,0.57706,0.108033,0.683131,0.115162,0.21744,0.123492,0.103932,0.502746,0.316803,0.73028,0.571472,0.927488,0.265367,0.889012,0.378462,0.0571191,0.87874,0.798048,0.559288,0.185539,0.842837,0.759147,0.886947,0.819387,0.848997,0.499002,0.0898181,0.591768,0.41283,0.0785231,0.0265117,0.18686,0.365631,0.541219,0.213611,0.681892,0.203029,0.672438,0.723897,0.861468,0.235663,0.174901,0.759955,0.213298,0.0214031,0.744407,0.674675,0.0526005,0.790524,0.214107,0.922837,0.722609,0.81414,0.123937,0.846606,0.618238,0.639341,0.218721,0.911532,0.00103718,0.690783,0.0778306,0.0811462,0.407284,0.567506,0.227447,0.081185,0.534952,0.285707,0.942058,0.784686,0.380436,0.762637,0.258176,0.190792,0.0962264,0.364973,0.0104738,0.982412,0.653889,0.558438,0.0877687,0.509391,0.420796,0.125426,0.235936,0.436506,0.785817,0.943828,0.0188931,0.614643,0.453209,0.657781,0.904686,0.898853,0.766039,0.808665,0.961238,0.191988,0.461422,0.305858,0.290085,0.478215,0.845118,0.323918,0.698963,0.726329,0.252421,0.924538,0.372229,0.668465,0.20559,0.323077,0.249767,0.226129,0.236526,0.767715,0.0508148,0.525336,0.582245,0.725093,0.482709,0.378638,0.974013,0.832401,0.204028,0.00925416,0.0235066,0.0793201,0.0673895,0.992153,0.102302,0.688114,0.124024,0.523101,0.302875,0.247908,0.65136,0.150745,0.126268,0.109133,0.524872,0.453425,0.108868,0.819272,0.623973,0.459899,0.220292,0.988577,0.846064,0.156891,0.736802,0.279532,0.54295,0.717896,0.85257,0.735254,0.192939,0.426456,0.951356,0.587216,0.229831,0.561311,0.38348,0.837083,0.096882,0.987306,0.643317,0.510819,0.529058,0.960538,0.0167373,0.613575,0.909655,0.792753,0.583336,0.11803,0.768423,0.0875133,0.542823,0.811903,0.958223,0.638711,0.687244,0.087757,0.78569,0.706595,0.032468,0.936443,0.84322,0.917723,0.965085,0.197757,0.166134,0.561432,0.783706,0.78728,0.629936,0.493661,0.218782,0.0778394,0.620019,0.429615,0.0407882,0.357954,0.860001,0.441912,0.595116,0.695583,0.749833,0.0243992,0.0405874,0.354228,0.0349692,0.30693,0.987215,0.553844,0.124192,0.78355,0.509864,0.884444,0.771716,0.460363,0.190027,0.766836,0.117027,0.900941,0.592014,0.736341,0.976469,0.615438,0.153167,0.948135,0.336603,0.968712,0.735252,0.955669,0.128236,0.920278,0.518411,0.624597,0.747794,0.110621,0.207507,0.438878,0.727893,0.555482,0.433463,0.703494,0.0324169,0.844786,0.539352,0.103645,0.419235,0.0773416,0.29518,0.169699,0.895294,0.283071,0.0730278,0.769547,0.749581,0.928871,0.230387,0.176239,0.529769,0.738524,0.906064,0.170955,0.407528,0.00141823,0.556947,0.745495,0.0915749,0.231848,0.978704,0.362278,0.301648,0.341652,0.0277013,0.647571,0.804943,0.555866,0.973388,0.943206,0.0480503,0.423763,0.20077,0.116407,0.713596,0.794611,0.537832,0.557733,0.407664,0.21972,0.477066,0.726254,0.249167,0.424437,0.832,0.749563,0.365681,0.323696,0.167354,0.680153,0.440748,0.939087,0.603492,0.898659,0.533816,0.855411,0.227183,0.737647,0.531419,0.114568,0.0731323,0.26671,0.270241,0.868321,0.130678,0.836463,0.467681,0.573382,0.125552,0.748484,0.424166,0.661661,0.0156484,0.430256,0.832292,0.421932,0.562438,0.489948,0.778084,0.29746,0.781189,0.605779,0.0699526,0.986726,0.625,0.232281,0.661942,0.145068,0.0843666,0.932371,0.86058,0.170516,0.0349061,0.546739,0.461266,0.684115,0.867533,0.0128772,0.0122634,0.590116,0.248537,0.558254,0.402701,0.387477,0.615852,0.065927,0.638815,0.527472,0.393942,0.606669,0.284568,0.899935,0.385864,0.702142,0.898458,0.911086,0.564163,0.641303,0.98165,0.628237,0.511207,0.458681,0.651996,0.625524,0.628031,0.543959,0.369122,0.497664,0.0725352,0.254836,0.0587295,0.786493,0.504416,0.12471,0.917155,0.624583,0.954362,0.860957,0.361228,0.979834,0.15351,0.0607548,0.643204,0.46412,0.459581,0.19673,0.340688,0.0556394,0.25388,0.942473,0.101425,0.68121,0.919167,0.122837,0.877813,0.36063,0.0149786,0.2963,0.617181,0.687062,0.723674,0.962612,0.0362841,0.593906,0.120657,0.566477,0.0631465,0.432107,0.57721,0.670697,0.207796,0.185405,0.267029,0.0409674,0.403854,0.397122,0.571848,0.511597,0.90134,0.16801,0.655457,0.926685,0.0678376,0.108747,0.937799,0.225902,0.0361165,0.854506,0.391155,0.117553,0.275091,0.527598,0.984556,0.82525,0.769018,0.0417176,0.664767,0.458629,0.008349,0.335894,0.632962,0.996743,0.0195277,0.5578,0.731639,0.0956979,0.356476,0.134794,0.0482184,0.413818,0.431915,0.985639,0.604656,0.768189,0.841679,0.259189,0.96037,0.40556,0.326407,0.980109,0.137968,0.0929643,0.535293,0.896692,0.714515,0.289666,0.371319,0.87846,0.397279,0.321945,0.578245,0.545758,0.35332,0.250386,0.978752,0.393306,0.599084,0.0337607,0.475563,0.987405,0.883605,0.5333,0.311334,0.616042,0.538005,0.397836,0.577763,0.801459,0.583893,0.808658,0.948652,0.248254,0.227207,0.561859,0.662899,0.589756,0.0415998,0.102121,0.321766,0.981677,0.758132,0.387973,0.793236,0.792451,0.501253,0.281385,0.581947,0.261687,0.191862,0.297336,0.20043,0.227089,0.374471,0.92762,0.346082,0.852319,0.20883,0.650456,0.244625,0.979137,0.457667,0.0636926,0.527788,0.539157,0.165618,0.572801,0.753735,0.294059,0.455553,0.360907,0.00905859,0.557341,0.926107,0.895751,0.971875,0.782652,0.675991,0.363949,0.553691,0.340553,0.546321,0.624159,0.622431,0.0450635,0.864258,0.453459,0.137308,0.841712,0.0107799,0.256226,0.470564,0.807459,0.794257,0.793723,0.903708,0.0446822,0.799504,0.562526,0.81639,0.532614,0.701414,0.477807,0.812029,0.693509,|0.588283,0.177618,0.976844,0.435698,0.430238,0.348549,0.551087,0.629717,0.491277,0.666525,0.775526,0.819223,0.295679,0.118026,0.411493,0.0986756,0.962193,0.336815,0.847243,0.509547,0.928905,0.975015,0.0273304,0.603493,0.5587,0.65575,0.0535806,0.521994,0.252785,0.916192,0.61297,0.800145,0.668596,0.52032,0.171364,0.433623,0.170669,0.321591,0.91477,0.287564,0.285582,0.206427,0.398406,0.271247,0.114196,0.167586,0.22594,0.738906,0.845066,0.990275,0.655917,0.55742,0.204126,0.254889,0.251846,0.286956,0.983041,0.799689,0.209492,0.544103,0.618561,0.871199,0.876486,0.852825,0.205728,0.199527,0.295905,0.260587,0.989258,0.0225405,0.897489,0.0553792,0.528838,0.516626,0.299794,0.0360389,0.113283,0.220037,0.539196,0.817368,0.370684,0.953345,0.0583856,0.51884,0.554889,0.689179,0.739748,0.668326,0.363243,0.555158,0.15558,0.317407,0.261608,0.570496,0.0407503,0.269896,0.583815,0.248223,0.944002,0.455253,0.856474,0.275375,0.861153,0.779974,0.252803,0.015923,0.434474,0.0936241,0.884132,0.363279,0.03114,0.565264,0.162335,0.451885,0.896893,0.327924,0.773308,0.289216,0.97288,0.818593,0.673953,0.704656,0.509159,0.472876,0.8453,0.554384,0.928751,0.928872,0.0559047,0.0925496,0.847084,0.0524346,0.362658,0.95897,0.240833,0.429034,0.919412,0.136713,0.385532,0.504968,0.272575,0.352767,0.648103,0.0878674,0.944468,0.966096,0.061574,0.0493878,0.00339264,0.744457,0.372503,0.100636,0.515555,0.471238,0.385404,0.693041,0.214117,0.391012,0.0219193,0.733091,0.295949,0.359312,0.108346,0.0156357,0.186313,0.0317063,0.531935,0.963625,0.602211,0.610459,0.158777,0.777309,0.765373,0.0171564,0.288704,0.709433,0.914696,0.286975,0.550518,0.346802,0.0114581,0.072682,0.583303,0.54297,0.245966,0.0370615,0.910369,0.898251,0.660285,0.55988,0.555948,0.384848,0.145682,0.236204,0.625216,0.765855,0.459175,0.804416,0.125879,0.0314394,0.00609684,0.710077,0.208531,0.194848,0.632283,0.752241,0.689379,0.0119794,0.500191,0.577312,0.10475,0.882057,0.371952,0.468142,0.844592,0.08722,0.279328,0.989235,0.499789,0.440157,0.802045,0.0952916,0.0974867,0.945256,0.129715,0.391922,0.0799755,0.261118,0.914595,0.406965,0.404018,0.504687,0.836521,0.58988,0.867366,0.299613,0.989821,0.537613,0.311038,0.669946,0.118045,0.474509,0.265535,0.798205,0.774231,0.570833,0.214274,0.925437,0.0957602,0.596177,0.47613,0.828112,0.890133,0.0245942,0.00507838,0.317401,0.17567,0.244945,0.401849,0.556561,0.189758,0.256706,0.306351,0.670337,0.48547,0.0254312,0.0670324,0.223307,0.343102,0.782953,0.195272,0.389085,0.0322751,0.134576,0.964515,0.00919706,0.0283117,0.96036,0.470764,0.807274,0.117381,0.80178,0.0166826,0.25683,0.905363,0.368596,0.85387,0.105982,0.0249233,0.761034,0.573513,0.593777,0.286545,0.78644,0.135244,0.671467,0.62264,0.460068,0.712169,0.426221,0.437039,0.920678,0.13017,0.931192,0.170089,0.434521,0.313471,0.560289,0.652341,0.75161,0.975368,0.0314211,0.835975,0.107351,0.221656,0.0976719,0.940757,0.16256,0.300354,0.681419,0.2341,0.807421,0.058114,0.557282,0.00480145,0.0522241,0.181488,0.115651,0.0753312,0.575899,0.325958,0.286914,0.54462,0.0997337,0.728129,0.580208,0.265672,0.155518,0.223632,0.752397,0.256876,0.232851,0.543796,0.822303,0.532726,0.999905,0.627426,0.464332,0.712761,0.0768756,0.249027,0.994001,0.0126179,0.0514816,0.850731,0.858218,0.364779,0.197273,0.22537,0.0302176,0.304847,0.315186,0.846416,0.955172,0.83004,0.949958,0.867912,0.344795,0.90628,0.204374,0.466552,0.672654,0.65658,0.480716,0.479329,0.57584,0.675886,0.706197,0.943904,0.77043,0.509337,0.202277,0.402195,0.0338425,0.790074,0.836614,0.384198,0.996068,0.236636,0.573019,0.884993,0.657635,0.816535,0.389288,0.353149,0.0225174,0.377907,0.529896,0.26186,0.284155,0.382886,0.438006,0.331172,0.431733,0.786288,0.966479,0.971218,0.247907,0.170886,0.630971,0.98157,0.349043,0.814455,0.908265,0.0703093,0.887452,0.808487,0.73913,0.529451,0.0662578,0.933608,0.742202,0.73084,0.901512,0.559095,0.679216,0.531306,0.3938,0.291417,0.15729,0.540748,0.434673,0.203719,0.260376,0.71224,0.108007,0.14949,0.392509,0.34735,0.506565,0.540853,0.691089,0.980247,0.485444,0.719378,0.657692,0.866455,0.130971,0.440857,0.287893,0.119272,0.080561,0.28061,0.0948424,0.912383,0.105467,0.261669,0.0867894,0.820108,0.483618,0.680437,0.0265313,0.604488,0.838218,0.921276,0.259557,0.27414,0.176943,0.75711,0.528679,0.448015,0.65263,0.445647,0.643913,0.233505,0.148379,0.252522,0.0356491,0.460681,0.522691,0.569516,0.381438,0.370745,0.616474,0.0537661,0.336825,0.0647048,0.40382,0.406496,0.723404,0.677809,0.139967,0.223797,0.857929,0.36987,0.104944,0.915279,0.717295,0.310679,0.348691,0.618539,0.0388756,0.374424,0.584787,0.187878,0.32459,0.889744,0.970143,0.701388,0.985046,0.305647,0.800682,0.873746,0.790732,0.0236034,0.386111,0.846377,0.359766,0.309699,0.918659,0.230995,0.398032,0.348877,0.36261,0.394553,0.699462,0.601394,0.761082,0.244568,0.820878,0.604321,0.289357,0.608334,0.82329,0.49558,0.214545,0.597483,0.680826,0.0541214,0.365099,0.831514,0.981423,0.614898,0.852944,0.129169,0.647178,0.909019,0.815654,0.417685,0.200663,0.212598,0.788424,0.654542,0.75113,0.26259,0.663161,0.099474,0.325369,0.636666,0.709218,0.994056,0.826973,0.213465,0.0699354,0.139189,0.625408,0.397368,0.615877,0.939794,0.940106,0.724752,0.0700315,0.685885,0.347357,0.515945,0.503709,0.786302,0.874701,0.213062,0.302658,0.569773,0.760769,0.0437121,0.2192,0.607973,0.537324,0.948928,0.669305,0.0497486,0.183281,0.164153,0.775823,0.435303,0.528765,0.926708,0.0724145,0.550746,0.892408,0.80797,0.537048,0.548657,0.688622,0.286067,0.842315,0.322902,0.620051,0.359223,0.474456,0.335152,0.496077,0.0349413,0.973115,0.845541,0.685684,0.702626,0.154086,0.389169,0.0178782,0.466863,0.0763444,0.371657,0.630685,0.907053,0.986862,0.670991,0.97962,0.878107,0.721954,0.574675,0.250176,0.593564,0.170634,0.395107,0.100097,0.217718,0.225454,0.156985,0.721913,0.242571,0.203517,0.779392,0.293702,0.665215,0.0472569,0.250667,0.164495,0.840753,0.287178,0.732385,0.117255,0.513159,0.438315,0.250708,0.939542,0.259357,0.127486,0.348918,0.527883,0.223365,0.862639,0.484273,0.178239,0.106932,0.999199,0.398259,0.813619,0.997804,0.452921,0.910789,0.352165,0.154599,0.304353,0.0148327,0.992653,0.513902,0.112215,0.623281,0.760069,0.319449,0.946514,0.372002,0.304829,0.916849,0.765101,0.97278,0.110077,0.10237,0.0624297,0.563818,0.668249,0.228897,0.259242,0.618156,0.277423,0.00683123,0.640878,0.867244,0.201211,0.239307,0.278491,0.40668,0.48301,0.937465,0.675185,0.632273,0.623674,0.231159,0.301646,0.168359,0.312361,0.951409,0.420465,0.601218,0.275499,0.556514,0.678193,0.754927,0.213724,0.646593,0.792168,0.708213,0.683263,0.411142,0.981691,0.538422,0.449416,0.945155,0.353516,0.172637,0.947564,0.621091,0.321748,0.884197,0.305419,0.688921,0.0971713,0.0396202,0.788454,0.0742612,0.23857,0.808441,0.0032382,0.723483,0.812975,0.263254,0.678216,0.0850124,0.948739,0.860135,0.703022,0.656495,0.148858,0.817839,0.435392,0.22474,0.489577,0.14773,0.603467,0.298996,0.784547,0.260522,0.090975,0.691926,0.388181,0.0246102,0.175247,0.0704295,0.861611,0.55714,0.291971,0.344285,0.873565,0.503418,0.640999,0.738021,0.0485425,0.725189,0.0901957,0.821748,0.583008,0.992193,0.651882,0.0728018,0.923097,0.684735,0.288805,0.701114,0.266403,0.489294,0.997124,0.407227,0.876524,0.703978,0.31211,0.588413,0.476114,0.787111,0.72649,0.963713,0.225928,0.98614,0.0551006,0.785838,0.382314,0.589034,0.362047,0.0586098,0.336198,0.194187,0.796645,0.248518,0.871046,0.692099,0.454863,0.809378,0.564504,0.0531477,0.238708,0.973793,0.883239,0.0943389,0.887311,0.529015,0.5786,0.927089,0.526906,0.0204719,0.123805,0.021925,0.0256202,0.464794,0.174182,0.91681,0.85789,0.440958,0.0548823,0.150257,0.523492,0.293294,0.627646,0.262401,0.841495,0.035885,0.851181,0.347978,0.719643,0.521731,0.0970361,0.887717,0.576027,0.607625,0.0507244,0.713342,0.752478,0.716769,0.206083,0.543866,0.580624,0.343433,0.918032,0.0828683,0.377153,0.476663,0.485147,0.892327,0.390327,0.0290465,0.763744,0.413468,0.620446,0.750884,0.323908,0.492943,0.0979838,0.269467,0.474631,0.106103,0.292692,0.28307,0.349239,0.355194,0.31747,0.797704,0.869343,0.890545,0.635096,0.478258,0.139401,0.341613,0.805833,0.928057,0.615203,0.405666,0.20904,0.66949,0.400639,0.246489,0.301035,0.316897,0.606888,0.71439,0.0574591,0.537704,0.926595,0.143733,0.649812,0.668745,0.761979,0.781192,0.335483,0.83999,0.261467,0.760182,0.759275,0.0524616,0.043888,0.733125,0.953144,0.638169,0.78607,0.25517,0.848895,0.280583,0.665146,0.827647,0.00346643,0.720785,0.724559,0.798077,0.846439,0.0969428,0.697076,0.825652,0.221448,0.195849,0.245695,0.264539,0.524764,0.791964,0.622807,0.74743,0.294901,0.0239871,0.19681,0.769925,0.947652,0.549095,0.607649,0.333825,0.447041,0.720782,0.866565,0.0299541,0.101827,0.0873237,0.383294,0.415218,0.282176,0.696034,0.348401,0.955026,0.308455,0.112095,0.933189,0.722512,0.019292,0.0798526,0.43863,0.589613,0.597579,0.280697,0.991832,0.233821,0.307857,0.0286238,0.97293,0.0228234,0.269685,0.782528,0.40627,0.532981,0.0857801,0.472881,0.522431,0.395196,0.0198359,0.68198,0.748555,0.443313,0.0960038,0.00267118,0.480705,0.156506,0.66846,0.536616,0.304322,0.828005,0.437022,0.262933,0.494656,|0.160606,0.27342,0.620079,0.976511,0.515626,0.605812,0.906958,0.831432,0.195201,0.364325,0.62826,0.90565,0.157459,0.81127,0.550336,0.911104,0.200357,0.448339,0.396927,0.0374974,0.487713,0.826622,0.437986,0.947534,0.128715,0.809162,0.55086,0.360152,0.231063,0.232136,0.47779,0.0987852,0.45958,0.769754,0.281751,0.18483,0.695508,0.458281,0.942565,0.779868,0.476835,0.36517,0.66365,0.772435,0.47903,0.658655,0.661612,0.949192,0.487612,0.712664,0.69399,0.254304,0.294404,0.278208,0.0724076,0.890461,0.880009,0.699506,0.168121,0.459399,0.609452,0.32768,0.515216,0.0109386,0.252826,0.0463782,0.275617,0.369873,0.800152,0.700342,0.800775,0.153937,0.656155,0.574761,0.588825,0.073947,0.565454,0.35377,0.874308,0.487888,0.919828,0.957687,0.695608,0.040606,0.596365,0.679524,0.486239,0.853256,0.177567,0.836691,0.911734,0.343121,0.69842,0.184973,0.56095,0.524475,0.592578,0.760082,0.492396,0.826326,0.733027,0.264865,0.614375,0.0907989,0.436334,0.264801,0.477601,0.0997395,0.878983,0.422522,0.597311,0.666889,0.802598,0.373564,0.204017,0.880102,0.842434,0.905572,0.608523,0.366583,0.324119,0.871389,0.668493,0.177109,0.190084,0.245408,0.175598,0.0430748,0.953131,0.360628,0.640724,0.153511,0.0791254,0.597169,0.592457,0.870605,0.430944,0.678629,0.210267,0.737918,0.195467,0.641313,0.111429,0.0447938,0.586657,0.771672,0.402631,0.390409,0.236703,0.838083,0.427867,0.76613,0.770911,0.840907,0.752308,0.864786,0.284749,0.230093,0.0362257,0.685908,0.774949,0.573744,0.303359,0.706241,0.350505,0.712904,0.647973,0.156084,0.225831,0.298745,0.00901616,0.134071,0.767469,0.644249,0.232041,0.746949,0.281718,0.326524,0.485896,0.792245,0.144266,0.444891,0.284829,0.54233,0.99175,0.259959,0.649412,0.152505,0.981283,0.237974,0.794602,0.280871,0.751423,0.508381,0.755625,0.268937,0.71879,0.490859,0.163579,0.504024,0.117359,0.976569,0.856786,0.24185,0.497024,0.535584,0.184104,0.461979,0.212025,0.822469,0.454244,0.0686492,0.652081,0.415093,0.664546,0.897441,0.341528,0.747059,0.265104,0.181855,0.132302,0.14819,0.853987,0.082381,0.0811979,0.647418,0.53498,0.386684,0.781916,0.327435,0.332863,0.82869,0.840153,0.312042,0.548136,0.388339,0.428828,0.397545,0.449651,0.530018,0.764087,0.199478,0.215169,0.336179,0.277071,0.195809,0.579338,0.761233,0.298517,0.047096,0.670915,0.260646,0.560992,0.554252,0.759453,0.306619,0.996174,0.294159,0.0798029,0.348896,0.450584,0.119585,0.0879627,0.891649,0.766473,0.994178,0.463839,0.365409,0.390919,0.820317,0.21335,0.944166,0.509497,0.839581,0.50484,0.941559,0.521564,0.780388,0.395479,0.546132,0.536351,0.176541,0.13814,0.193318,0.687549,0.401049,0.831261,0.986315,0.70462,0.107615,0.610488,0.607718,0.680182,0.858274,0.140791,0.94897,0.0828397,0.94926,0.232654,0.433919,0.401942,0.0769978,0.183137,0.235934,0.124014,0.821212,0.179673,0.772775,0.347144,0.568607,0.476638,0.166484,0.925571,0.722323,0.33354,0.365978,0.448657,0.372126,0.772594,0.141821,0.905709,0.727713,0.888887,0.36337,0.0126793,0.817814,0.890039,0.581132,0.71158,0.746445,0.857932,0.411748,0.444629,0.00176883,0.348166,0.975124,0.347095,0.0658953,0.144159,0.72925,0.0643318,0.694013,0.847856,0.714789,0.477505,0.741625,0.64504,0.494968,0.535361,0.336941,0.140371,0.261915,0.935348,0.417576,0.824875,0.932983,0.38371,0.700258,0.114294,0.908801,0.07942,0.934379,0.514464,0.882091,0.709626,0.116813,0.518139,0.828756,0.143908,0.848586,0.98729,0.927109,0.384284,0.561042,0.794728,0.395334,0.446379,0.552713,0.53046,0.385966,0.905483,0.297092,0.759485,0.698692,0.24844,0.539194,0.18657,0.724606,0.0767005,0.95591,0.397923,0.609553,0.427858,0.120349,0.130727,0.887653,0.797197,0.656093,0.261178,0.177244,0.0331191,0.286331,0.903524,0.932266,0.932021,0.680264,0.459951,0.0453494,0.875338,0.755783,0.00776643,0.819748,0.0773808,0.474935,0.145814,0.000436723,0.931437,0.290505,0.191934,0.591298,0.281987,0.0468647,0.788146,0.399359,0.00526422,0.429294,0.0852525,0.116485,0.108185,0.0797969,0.632794,0.430195,0.629377,0.396453,0.0421675,0.631812,0.729472,0.818961,0.932829,0.491085,0.837669,0.145434,0.112495,0.357816,0.32421,0.842732,0.262096,0.710213,0.145258,0.025559,0.253946,0.584959,0.397512,0.0686753,0.339835,0.484529,0.981061,0.862263,0.639588,0.419379,0.694651,0.173081,0.779668,0.176648,0.286041,0.394983,0.83606,0.101143,0.793543,0.520539,0.881443,0.983937,0.738125,0.635161,0.935766,0.356662,0.45464,0.39102,0.192358,0.357352,0.949652,0.911632,0.373985,0.885893,0.435357,0.615196,0.837835,0.911763,0.103389,0.783474,0.851606,0.750344,0.584585,0.0104938,0.62769,0.303553,0.747198,0.0875548,0.0373281,0.263203,0.467762,0.93207,0.914714,0.0622834,0.743714,0.128385,0.547052,0.946161,0.534228,0.205158,0.0955485,0.568806,0.321652,0.473735,0.909416,0.464051,0.919074,0.3755,0.938686,0.350888,0.886232,0.583606,0.944777,0.0626613,0.0633247,0.266097,0.701899,0.0167542,0.631565,0.516585,0.412149,0.112877,0.84647,0.868726,0.0221409,0.310929,0.568899,0.0195238,0.330392,0.468036,0.958331,0.403626,0.571839,0.5386,0.438861,0.0504821,0.558628,0.559558,0.340017,0.789326,0.521408,0.989391,0.366983,0.681846,0.06601,0.601129,0.772783,0.955715,0.801359,0.72631,0.572225,0.656125,0.845162,0.22114,0.169274,0.31017,0.632871,0.50384,0.714581,0.0525824,0.0573127,0.328596,0.381584,0.932264,0.0627918,0.846433,0.326449,0.557048,0.215606,0.654628,0.40913,0.114008,0.451734,0.646874,0.268398,0.866774,0.199055,0.417756,0.614959,0.790625,0.929814,0.97584,0.282021,0.554398,0.723385,0.312104,0.944924,0.419177,0.190125,0.187281,0.903739,0.977016,0.273883,0.748375,0.436636,0.529846,0.451947,0.787562,0.0987688,0.385163,0.00137568,0.194044,0.532619,0.579911,0.44677,0.136983,0.149728,0.48333,0.527547,0.56206,0.838944,0.116652,0.000369549,0.870957,0.605527,0.748116,0.819834,0.0128685,0.703995,0.343697,0.353671,0.602498,0.161362,0.620323,0.321262,0.133563,0.446777,0.468374,0.00860369,0.965328,0.355827,0.111644,0.940187,0.388463,0.458809,0.476072,0.114521,0.166605,0.64314,0.465446,0.400111,0.919431,0.251132,0.634632,0.302099,0.359024,0.938034,0.148371,0.164229,0.895012,0.866888,0.587002,0.701716,0.150877,0.477597,0.253396,0.613678,0.11585,0.402373,0.315508,0.297162,0.241616,0.234152,0.704377,0.523556,0.83351,0.795513,0.78131,0.323293,0.371927,0.948668,0.847593,0.395649,0.116999,0.153944,0.434925,0.690616,0.938462,0.794115,0.82106,0.648416,0.903761,0.0617238,0.740542,0.850488,0.934956,0.438173,0.578297,0.253389,0.443706,0.71385,0.767655,0.679889,0.442809,0.564954,0.935247,0.967095,0.096238,0.878562,0.335938,0.542776,0.587409,0.206852,0.100818,0.703458,0.214095,0.400434,0.254741,0.608668,0.658861,0.100919,0.0411275,0.586293,0.0530129,0.84759,0.81135,0.866694,0.901064,0.326306,0.158154,0.999387,0.936083,0.91871,0.906031,0.630371,0.551034,0.473861,0.208697,0.222744,0.533813,0.87876,0.70707,0.221197,0.555221,0.883547,0.267836,0.913572,0.722787,0.973571,0.31737,0.499669,0.583337,0.383908,0.266949,0.541872,0.125442,0.396091,0.250383,0.773678,0.454957,0.925206,0.849383,0.379189,0.248302,0.633646,0.559476,0.650751,0.59105,0.90998,0.633771,0.300349,0.0103353,0.291765,0.441996,0.278695,0.594517,0.238044,0.306976,0.159044,0.175869,0.693332,0.271155,0.278054,0.0145462,0.200572,0.782203,0.856874,0.622865,0.418144,0.901552,0.950227,0.80685,0.443444,0.949003,0.169049,0.764509,0.988682,0.661554,0.592536,0.277285,0.241814,0.992915,0.816429,0.241221,0.265497,0.313786,0.799728,0.392609,0.815558,0.698182,0.567321,0.59519,0.92698,0.625076,0.582822,0.296528,0.0225069,0.718131,0.564302,0.379127,0.446501,0.691585,0.495255,0.899235,0.00544775,0.499453,0.636285,0.193107,0.100889,0.264657,0.862756,0.715702,0.698007,0.54272,0.852709,0.967853,0.594866,0.072321,0.761229,0.465927,0.509197,0.0141208,0.170477,0.571049,0.734241,0.909682,0.985802,0.990515,0.000157416,0.811948,0.166981,0.978945,0.0821375,0.941875,0.648957,0.806805,0.241497,0.548297,0.774039,0.918111,0.482024,0.431952,0.776316,0.860746,0.203012,0.129654,0.0205859,0.20543,0.432978,0.62891,0.362147,0.00414723,0.0383429,0.94287,0.853122,0.944341,0.793947,0.63821,0.247398,0.162583,0.12927,0.537521,0.186601,0.384566,0.830114,0.465042,0.0237275,0.332805,0.462304,0.277664,0.715528,0.786601,0.042881,0.772014,0.931795,0.267162,0.336569,0.955423,0.214993,0.183307,0.532515,0.0981286,0.920738,0.322171,0.795369,0.224625,0.478468,0.0345385,0.491198,0.795569,0.377778,0.616214,0.953421,0.851171,0.144794,0.260526,0.578748,0.123474,0.542401,0.116773,0.146563,0.06769,0.700319,0.866361,0.329668,0.860553,0.90454,0.818017,0.995928,0.995588,0.331731,0.0295312,0.646379,0.831292,0.356297,0.553354,0.895973,0.954271,0.881299,0.45177,0.647817,0.54941,0.994485,0.383708,0.738329,0.10632,0.345947,0.209392,0.920148,0.168452,0.662465,0.00894606,0.897395,0.290135,0.378608,0.676925,0.770347,0.463825,0.489612,0.577671,0.635377,0.0150425,0.092786,0.419866,0.105429,0.879657,0.47422,0.538213,0.65892,0.428029,0.776851,0.407208,0.0590918,0.0270776,0.674486,0.491389,0.113046,0.968434,0.990527,0.858251,0.126221,0.797374,0.853422,0.821651,0.53276,0.00367743,0.0811214,0.300935,0.538873,0.209591,0.198421,0.740017,0.582734,0.457291,0.320697,0.0952135,0.638464,0.840592,0.283187,0.344175,|0.738555,0.937335,0.165924,0.399382,0.257005,0.603632,0.353818,0.90286,0.737433,0.588196,0.569509,0.607452,0.988077,0.588321,0.256439,0.405885,0.688445,0.742532,0.305477,0.804297,0.151095,0.543752,0.398043,0.321483,0.514647,0.641645,0.408084,0.136152,0.114326,0.470119,0.415534,0.630484,0.335388,0.242661,0.917357,0.568466,0.433876,0.953551,0.45448,0.325253,0.690745,0.709547,0.287982,0.930925,0.458868,0.491004,0.121508,0.354315,0.416096,0.645184,0.991165,0.0923481,0.0535532,0.0386508,0.725536,0.275993,0.567912,0.724115,0.803713,0.668678,0.708257,0.47226,0.316506,0.749108,0.0585031,0.639245,0.169303,0.448704,0.656752,0.190939,0.326521,0.105073,0.454129,0.160897,0.605053,0.18281,0.0169942,0.855071,0.0673465,0.385455,0.964895,0.714154,0.264592,0.563603,0.631399,0.810839,0.054584,0.757261,0.0932873,0.746329,0.884741,0.837148,0.0209413,0.0816934,0.330736,0.0361218,0.339235,0.0690454,0.412634,0.900381,0.21237,0.00658941,0.218615,0.612771,0.781681,0.556135,0.0676482,0.104369,0.0936235,0.927137,0.585383,0.229272,0.335767,0.0197583,0.333439,0.694116,0.435366,0.0678647,0.0815142,0.734655,0.336827,0.512651,0.889638,0.812105,0.0552741,0.554116,0.748318,0.80031,0.814752,0.205886,0.341163,0.732809,0.4048,0.457999,0.0223232,0.387101,0.905027,0.157544,0.0704297,0.619295,0.318355,0.932443,0.993165,0.63867,0.587312,0.426656,0.261147,0.411369,0.389645,0.657602,0.451114,0.799736,0.0415255,0.76196,0.359033,0.824998,0.675495,0.749488,0.0556943,0.784956,0.840711,0.85589,0.862613,0.630203,0.812447,0.27285,0.345325,0.079488,0.713586,0.672918,0.00184476,0.727247,0.862809,0.36037,0.655632,0.999924,0.845875,0.197787,0.904868,0.0193297,0.786568,0.163638,0.45261,0.643074,0.712447,0.170305,0.237599,0.245687,0.181428,0.105583,0.226601,0.136322,0.145598,0.0948085,0.598881,0.505446,0.942157,0.258545,0.954043,0.0702902,0.146757,0.599976,0.740337,0.240376,0.60578,0.209354,0.552506,0.659726,0.798091,0.171365,0.246105,0.699321,0.613316,0.729118,0.287427,0.499886,0.200623,0.0743127,0.99826,0.705111,0.188478,0.0456933,0.253912,0.706412,0.555473,0.871517,0.201961,0.541963,0.492682,0.562177,0.0110187,0.679181,0.418227,0.559634,0.37719,0.210059,0.516381,0.844841,0.663602,0.786591,0.488014,0.47548,0.106555,0.562025,0.799483,0.79347,0.580368,0.145346,0.174778,0.140608,0.879713,0.507722,0.21113,0.332043,0.547371,0.692183,0.884525,0.748145,0.909542,0.906658,0.905793,0.570485,0.573571,0.565501,0.434503,0.495535,0.778726,0.560944,0.040131,0.662666,0.0232804,0.296261,0.173969,0.334643,0.07219,0.429947,0.971416,0.967496,0.687984,0.38995,0.828466,0.614045,0.226904,0.617675,0.837116,0.0947353,0.109485,0.855253,0.498038,0.785634,0.410433,0.774772,0.720294,0.968616,0.712856,0.67067,0.955972,0.553935,0.258171,0.193829,0.494038,0.295835,0.350486,0.0112856,0.485146,0.22176,0.113026,0.401471,0.470181,0.416743,0.67966,0.103282,0.350277,0.80332,0.737649,0.568721,0.328199,0.412964,0.476366,0.469237,0.506955,0.355063,0.0233135,0.342813,0.576607,0.95997,0.725908,0.247481,0.432108,0.114466,0.303281,0.517733,0.731393,0.681665,0.690499,0.804046,0.224758,0.504472,0.254672,0.977562,0.237948,0.179614,0.590861,0.953218,0.515847,0.258161,0.0231939,0.417939,0.0438745,0.0558813,0.513432,0.969792,0.701525,0.622118,0.208751,0.753422,0.871195,0.136936,0.190653,0.460526,0.170485,0.402331,0.991505,0.954644,0.654968,0.0875652,0.0296797,0.855907,0.51398,0.810506,0.192186,0.911046,0.521604,0.904188,0.492683,0.223064,0.698353,0.858054,0.373821,0.96377,0.489866,0.906532,0.762119,0.785116,0.572575,0.185124,0.000464499,0.88406,0.267336,0.42723,0.930142,0.539471,0.735862,0.774262,0.915165,0.0590338,0.957641,0.813028,0.831538,0.988603,0.403224,0.70282,0.467393,0.682219,0.680271,0.511911,0.199763,0.881172,0.904719,0.560213,0.128633,0.427591,0.332664,0.748645,0.215402,0.82335,0.985609,0.612783,0.55065,0.986525,0.0281119,0.616956,0.266501,0.173364,0.140754,0.452121,0.616749,0.852913,0.186396,0.983939,0.404185,0.675953,0.0154369,0.000646293,0.186781,0.231292,0.0408084,0.278291,0.0541474,0.483045,0.413327,0.209139,0.112327,0.762213,0.490181,0.157053,0.934177,0.936951,0.356046,0.347977,0.83275,0.66972,0.482005,0.349627,0.694577,0.459736,0.11375,0.99898,0.455872,0.791325,0.695758,0.72768,0.679213,0.895613,0.40687,0.428382,0.856945,0.157171,0.755358,0.740171,0.784916,0.155084,0.146104,0.148163,0.767315,0.0373049,0.0671224,0.391023,0.429774,0.00842029,0.530531,0.95008,0.165995,0.438558,0.416796,0.757485,0.686581,0.237848,0.123342,0.560798,0.178631,0.954987,0.828198,0.127694,0.147928,0.439409,0.602549,0.733933,0.336738,0.165259,0.420162,0.85816,0.83151,0.202436,0.0516201,0.569929,0.00488621,0.689102,0.511432,0.840551,0.184795,0.727508,0.913438,0.519848,0.976074,0.557769,0.506138,0.879001,0.0529858,0.863648,0.118275,0.18008,0.882596,0.884396,0.870136,0.397437,0.38,0.975784,0.770402,0.44155,0.534364,0.667825,0.509815,0.56548,0.191526,0.0969834,0.398423,0.477572,0.0814481,0.680857,0.596182,0.345782,0.483326,0.274417,0.467667,0.107056,0.222865,0.436766,0.327149,0.972977,0.420461,0.549882,0.563661,0.73486,0.24308,0.788592,0.43353,0.34999,0.746716,0.221577,0.765743,0.676806,0.251532,0.758217,0.0761575,0.854039,0.834675,0.43533,0.367068,0.144522,0.950005,0.38786,0.518398,0.968803,0.526174,0.761842,0.343367,0.288932,0.332542,0.302753,0.298267,0.247066,0.0527108,0.63934,0.468916,0.98282,0.776201,0.755415,0.907358,0.306976,0.965246,0.0685882,0.394047,0.0783517,0.801968,0.856807,0.696543,0.119989,0.406595,0.534853,0.25074,0.281191,0.562225,0.245125,0.902462,0.95906,0.479874,0.031321,0.85055,0.835474,0.126344,0.397785,0.645762,0.749088,0.396401,0.315037,0.775465,0.24759,0.324374,0.107044,0.808408,0.641208,0.463866,0.92332,0.96523,0.831045,0.582172,0.966569,0.852821,0.768524,0.933113,0.746315,0.168529,0.605675,0.673893,0.256777,0.233626,0.948882,0.211667,0.36753,0.0589352,0.242956,0.465791,0.963176,0.293456,0.0540099,0.319389,0.844572,0.0901055,0.310279,0.0636895,0.742481,0.628847,0.282939,0.311498,0.595273,0.496279,0.908316,0.521776,0.640606,0.943151,0.276753,0.441473,0.129028,0.723192,0.104185,0.426152,0.21995,0.865742,0.599158,0.0743772,0.0264012,0.183603,0.28984,0.251872,0.970908,0.152625,0.114482,0.145861,0.0655515,0.910884,0.944984,0.312229,0.603995,0.743161,0.820278,0.913304,0.868962,0.558634,0.752499,0.169955,0.224751,0.522728,0.220524,0.86697,0.677062,0.294794,0.900442,0.479756,0.64961,0.698643,0.987601,0.304076,0.326786,0.104853,0.247186,0.0508133,0.388412,0.561579,0.588547,0.249875,0.740152,0.165462,0.405939,0.923445,0.594138,0.3172,0.676381,0.0913302,0.721428,0.149334,0.0754631,0.752527,0.151828,0.92965,0.159355,0.84815,0.885423,0.363489,0.385763,0.219728,0.616171,0.245338,0.694347,0.319947,0.226292,0.142642,0.39707,0.645001,0.132368,0.370414,0.888229,0.381021,0.420776,0.849741,0.872465,0.855116,0.510902,0.661765,0.550621,0.174173,0.604331,0.808246,0.949574,0.362656,0.455276,0.440281,0.648544,0.745611,0.75244,0.766726,0.955541,0.402368,0.780044,0.0402522,0.379068,0.445226,0.158104,0.189884,0.167932,0.128927,0.410652,0.130111,0.822813,0.421012,0.134579,0.437187,0.474643,0.837646,0.707701,0.968784,0.132245,0.85937,0.897202,0.207275,0.293542,0.378647,0.874646,0.249281,0.410267,0.2435,0.217415,0.579556,0.931997,0.232437,0.543461,0.993453,0.84719,0.740464,0.220575,0.0919544,0.00677305,0.17184,0.274519,0.371645,0.564497,0.611822,0.990953,0.314594,0.320333,0.285009,0.432419,0.735388,0.87197,0.849911,0.432438,0.112457,0.62377,0.216861,0.299659,0.345254,0.0893254,0.964614,0.395181,0.561819,0.393,0.912453,0.474385,0.285824,0.932822,0.145095,0.412498,0.878774,0.923366,0.532014,0.759062,0.789851,0.0373445,0.315236,0.0784783,0.586936,0.505509,0.100637,0.401041,0.0362371,0.703323,0.312523,0.21845,0.406336,0.773809,0.959313,0.152243,0.796127,0.904981,0.179132,0.19517,0.054785,0.430363,0.10579,0.0813726,0.280685,0.421311,0.668418,0.7688,0.329926,0.175165,0.27206,0.590879,0.752713,0.360189,0.358917,0.627952,0.287075,0.189635,0.0709008,0.0190848,0.89502,0.475103,0.851148,0.00949639,0.169719,0.0400829,0.0204193,0.251694,0.610869,0.282709,0.363259,0.386041,0.744129,0.385071,0.0958143,0.22853,0.223228,0.082195,0.440204,0.791936,0.850872,0.486124,0.206455,0.312471,0.266333,0.303582,0.357955,0.400719,0.732261,0.778667,0.737432,0.508436,0.797166,0.414102,0.861462,0.501758,0.45155,0.546318,0.378014,0.930516,0.982186,0.126378,0.812623,0.218421,0.768989,0.495572,0.112364,0.0361063,0.572201,0.53959,0.220408,0.625057,0.00476873,0.0170219,0.29043,0.558084,0.0802991,0.443148,0.477826,0.759951,0.199288,0.775837,0.58153,0.977866,0.244381,0.815279,0.223355,0.561784,0.791608,0.824934,0.893366,0.915002,0.547448,0.830963,0.676972,0.0406979,0.380872,0.319568,0.106817,0.0404933,0.117534,0.499478,0.960142,0.545054,0.950378,0.801266,0.78556,0.74643,0.524491,0.948518,0.216531,0.91584,0.568683,0.571106,0.80789,0.578144,0.210347,0.667732,0.143574,0.242747,0.0660759,0.736336,0.562297,0.0279675,0.0799769,0.712402,0.938255,0.126379,0.0947956,0.453714,0.256752,0.33606,0.0826604,0.711586,0.33086,0.294236,0.967079,0.19661,0.469981,0.12938,0.970084,0.463064,0.994281,0.120729,|0.577369,0.0409495,0.771502,0.16818,0.627483,0.170291,0.330106,0.873155,0.370284,0.386016,0.76962,0.154606,0.64237,0.768389,0.398591,0.817736,0.327175,0.255498,0.786747,0.212891,0.169143,0.997024,0.233708,0.498041,0.998586,0.449581,0.0871646,0.0267783,0.810442,0.601355,0.577921,0.788784,0.11819,0.300017,0.112578,0.398107,0.784012,0.492563,0.0116943,0.935643,0.197795,0.849789,0.97209,0.987241,0.932056,0.570475,0.553473,0.954875,0.233756,0.0394298,0.883175,0.87404,0.932836,0.393849,0.879388,0.263881,0.0726371,0.804922,0.748173,0.428633,0.128127,0.526627,0.196799,0.960221,0.977265,0.417574,0.591736,0.840548,0.590014,0.830037,0.511348,0.327811,0.913632,0.152527,0.276336,0.931517,0.123674,0.141011,0.629731,0.043741,0.690099,0.363056,0.431836,0.352966,0.625816,0.373943,0.424067,0.473592,0.349018,0.585421,0.971428,0.972632,0.891785,0.662481,0.18345,0.0177971,0.266274,0.5836,0.592678,0.538668,0.325567,0.919378,0.664142,0.230997,0.521331,0.694766,0.478781,0.152193,0.153377,0.88851,0.9673,0.597917,0.143399,0.566376,0.915899,0.59338,0.631709,0.654373,0.961495,0.690475,0.752513,0.690316,0.831904,0.33466,0.768151,0.913974,0.120585,0.161226,0.383599,0.55359,0.682068,0.960566,0.43074,0.180626,0.479295,0.532464,0.44967,0.977391,0.40554,0.665296,0.896685,0.903541,0.273758,0.41471,0.75091,0.475588,0.21403,0.58458,0.0480813,0.270181,0.412938,0.564052,0.992849,0.584205,0.789655,0.6365,0.673014,0.820061,0.839873,0.864669,0.766828,0.29573,0.538185,0.0902785,0.537459,0.344593,0.0318086,0.194686,0.809616,0.498425,0.690036,0.801669,0.511585,0.101242,0.536124,0.796084,0.0459947,0.7283,0.73787,0.607419,0.493352,0.266555,0.667104,0.959936,0.620347,0.778225,0.774082,0.631944,0.226628,0.922131,0.931479,0.00492525,0.961217,0.685332,0.99329,0.80128,0.18458,0.993002,0.245742,0.643844,0.510265,0.943016,0.787459,0.467284,0.855596,0.355402,0.606093,0.887217,0.263063,0.260183,0.726317,0.345505,0.821782,0.506645,0.346722,0.910472,0.353636,0.601504,0.921485,0.985139,0.092458,0.317017,0.0833325,0.124508,0.0326768,0.84016,0.252997,0.621403,0.724103,0.35122,0.621927,0.451333,0.978149,0.689462,0.757349,0.147985,0.164404,0.794408,0.679341,0.654793,0.812984,0.550429,0.55407,0.59593,0.3057,0.0121778,0.165168,0.636113,0.325364,0.0866027,0.556274,0.626756,0.0751107,0.736538,0.767187,0.0123314,0.290419,0.740145,0.764198,0.220758,0.933957,0.556214,0.545637,0.713701,0.399758,0.0774439,0.425066,0.329327,0.698141,0.810026,0.176195,0.568353,0.370646,0.954833,0.467759,0.562084,0.454421,0.665577,0.18592,0.628952,0.557464,0.00833064,0.987235,0.670306,0.94614,0.569592,0.195479,0.618595,0.90785,0.394387,0.66007,0.559479,0.228249,0.912728,0.368604,0.601627,0.362393,0.478701,0.802968,0.589193,0.91098,0.966559,0.0734656,0.395534,0.888872,0.178928,0.638352,0.143482,0.857042,0.729823,0.430213,0.678098,0.0513805,0.934122,0.594904,0.43924,0.31462,0.513245,0.804725,0.364843,0.0300767,0.38687,0.381016,0.906729,0.186443,0.748478,0.00659305,0.104173,0.689863,0.300562,0.28484,0.566983,0.361709,0.606859,0.941176,0.909428,0.766105,0.774753,0.780761,0.731045,0.358318,0.612092,0.73681,0.561823,0.697686,0.932133,0.363189,0.165312,0.527493,0.850921,0.289303,0.240388,0.121705,0.261039,0.889263,0.305188,0.532239,0.0486863,0.587232,0.386848,0.429468,0.151786,0.231628,0.383171,0.558252,0.292948,0.277913,0.163984,0.634378,0.301956,0.042378,0.45656,0.787832,0.41607,0.302072,0.694411,0.505508,0.195355,0.820179,0.800862,0.966361,0.714999,0.178991,0.283357,0.433938,0.811571,0.569241,0.428731,0.252795,0.905762,0.593816,0.525659,0.00639832,0.986867,0.106637,0.48137,0.337558,0.904023,0.63052,0.848822,0.000232637,0.873231,0.296228,0.238454,0.170376,0.649461,0.305231,0.446563,0.777353,0.00383306,0.504866,0.181509,0.787638,0.24773,0.488942,0.504481,0.318077,0.0384369,0.799736,0.17973,0.730762,0.0623782,0.949817,0.533938,0.515772,0.598937,0.0258871,0.0121659,0.393094,0.58537,0.669306,0.578854,0.964924,0.63162,0.596634,0.555403,0.422659,0.677966,0.885629,0.0264755,0.868053,0.392284,0.567959,0.158601,0.412085,0.142016,0.704463,0.496692,0.0449166,0.738597,0.945999,0.0429747,0.424512,0.204809,0.13928,0.304733,0.206818,0.880056,0.503616,0.374991,0.908915,0.532158,0.0837423,0.542274,0.00322121,0.150407,0.541451,0.0999963,0.701592,0.423966,0.325067,0.795472,0.947961,0.777374,0.350907,0.83863,0.620788,0.781486,0.343339,0.216027,0.577479,0.505663,0.265246,0.0243089,0.904935,0.0098083,0.271209,0.941648,0.280353,0.0714475,0.838498,0.193823,0.34989,0.371713,0.241821,0.49804,0.272614,0.0680008,0.646,0.732957,0.741456,0.425291,0.188479,0.96626,0.122603,0.223964,0.36367,0.992061,0.0568115,0.464774,0.0888482,0.936311,0.032385,0.808487,0.572163,0.25499,0.437283,0.749028,0.711295,0.213963,0.487432,0.352261,0.606374,0.416218,0.733883,0.201012,0.206402,0.636838,0.430872,0.738342,0.863522,0.933972,0.0140479,0.904749,0.62748,0.119125,0.0627809,0.227405,0.312589,0.0251259,0.531655,0.629824,0.753869,0.716279,0.11524,0.464701,0.370268,0.751142,0.756397,0.522402,0.299238,0.494805,0.0361061,0.469652,0.495275,0.0108842,0.119413,0.267719,0.72652,0.274113,0.181307,0.591849,0.101734,0.23661,0.798958,0.377578,0.723898,0.00696236,0.573015,0.918871,0.81723,0.37559,0.460006,0.944895,0.379592,0.508585,0.341999,0.288623,0.683543,0.0696929,0.762938,0.864087,0.205195,0.254223,0.747805,0.448012,0.0135338,0.410704,0.0463143,0.174847,0.684084,0.895208,0.060822,0.095491,0.816847,0.351296,0.221316,0.516709,0.421937,0.560388,0.738123,0.951203,0.788076,0.531379,0.439085,0.340078,0.990042,0.216102,0.58337,0.825506,0.8186,0.186077,0.421729,0.195866,0.160658,0.0223655,0.287088,0.721843,0.917755,0.281567,0.0311128,0.116954,0.275791,0.863857,0.73976,0.766611,0.555365,0.279786,0.949823,0.30901,0.125113,0.543249,0.732744,0.861193,0.582763,0.66236,0.643209,0.841677,0.0622875,0.989741,0.56432,0.387049,0.813213,0.955477,0.911862,0.440982,0.429845,0.956887,0.65275,0.496667,0.969046,0.692579,0.0214376,0.478925,0.798708,0.344489,0.418641,0.566283,0.692575,0.301317,0.300471,0.226333,0.987908,0.707113,0.00874078,0.0998002,0.0586357,0.333861,0.699627,0.791391,0.372601,0.943904,0.0182865,0.498335,0.510558,0.355343,0.497789,0.228423,0.88978,0.604325,0.852315,0.00850838,0.73367,0.500331,0.823543,0.302788,0.723505,0.140145,0.391639,0.892918,0.449931,0.239145,0.717636,0.66677,0.884419,0.88832,0.730936,0.964142,0.0918092,0.226227,0.131809,0.890523,0.475224,0.0429428,0.601686,0.385022,0.413625,0.252241,0.197271,0.952871,0.301094,0.0857947,0.1399,0.755633,0.0763313,0.419082,0.0413783,0.788748,0.882537,0.362258,0.278678,0.198016,0.753045,0.704453,0.56926,0.123491,0.280638,0.0136784,0.0680677,0.371702,0.369784,0.53234,0.564462,0.346723,0.972063,0.0435523,0.592619,0.0125515,0.19854,0.988409,0.778241,0.59239,0.150068,0.443209,0.106825,0.897986,0.985714,0.909469,0.0800472,0.0786327,0.60214,0.300918,0.529061,0.161032,0.240961,0.838293,0.679126,0.567629,0.636729,0.215513,0.760501,0.217156,0.969326,0.658312,0.975625,0.80469,0.902684,0.335475,0.643161,0.902812,0.738956,0.337149,0.200243,0.0727643,0.814529,0.308818,0.208407,0.130932,0.804612,0.565319,0.85173,0.661198,0.377401,0.857229,0.668675,0.597918,0.877736,0.0471964,0.50944,0.618485,0.465682,0.653892,0.789527,0.665312,0.19903,0.016822,0.944586,0.90646,0.560925,0.428835,0.300596,0.348042,0.406396,0.921361,0.0633373,0.10795,0.793514,0.558217,0.371561,0.961685,0.130803,0.0562329,0.0708325,0.0109478,0.537818,0.470813,0.994926,0.792238,0.348689,0.710506,0.616945,0.809321,0.405949,0.641877,0.546964,0.416295,0.475246,0.257952,0.780158,0.664798,0.199263,0.88186,0.17095,0.166628,0.216001,0.447891,0.0501357,0.552261,0.676093,0.0782284,0.162538,0.158789,0.963411,0.134411,0.139586,0.45417,0.224361,0.432258,0.881135,0.0485294,0.787569,0.116334,0.344589,0.237479,0.924811,0.706009,0.299785,0.924106,0.816556,0.337199,0.38309,0.28533,0.0535786,0.104689,0.127631,0.0266499,0.146269,0.446892,0.630153,0.559,0.482955,0.0685465,0.0432963,0.0255996,0.0137666,0.793473,0.668467,0.816338,0.861355,0.909278,0.716133,0.968598,0.43045,0.277955,0.43856,0.0857165,0.167548,0.960243,0.326498,0.00315553,0.80045,0.162892,0.116517,0.898724,0.0618986,0.737736,0.036427,0.453519,0.440542,0.00747997,0.447914,0.124581,0.00146246,0.376699,0.671516,0.845225,0.397436,0.0212145,0.0653488,0.0757685,0.984459,0.712751,0.470085,0.952013,0.569062,0.281808,0.094636,0.0794308,0.801871,0.22544,0.518125,0.873634,0.0203148,0.648626,0.921976,0.0223091,0.95694,0.137389,0.0661539,0.0303291,0.598724,0.884595,0.946478,0.140359,0.641604,0.18887,0.0218871,0.534715,0.548439,0.380299,0.365045,0.874337,0.141317,0.915632,0.661575,0.66625,0.805291,0.173339,0.828314,0.975746,0.726507,0.722271,0.162072,0.387003,0.771452,0.09582,0.427963,0.666929,0.833176,0.975041,0.774791,0.922094,0.274657,0.637145,0.187303,0.721384,0.351639,0.764162,0.00208646,0.772891,0.591114,0.92409,0.370088,0.755491,0.062001,0.410963,0.376197,0.347368,0.824062,0.976963,0.705886,0.415482,0.164409,0.190859,0.490233,0.741386,0.0644056,0.480314,0.331535,0.377644,0.573667,0.426829,0.0737077,0.989854,0.422694,0.5021,0.379701,0.902265,0.487236,0.170189,|0.752854,0.846477,0.614367,0.677485,0.950919,0.676756,0.429753,0.177159,0.317351,0.50437,0.995604,0.641837,0.9294,0.387993,0.38887,0.53039,0.442468,0.135408,0.409337,0.913687,0.889227,0.655793,0.938059,0.612569,0.586396,0.743373,0.220305,0.495429,0.107042,0.181196,0.284037,0.197362,0.198101,0.532431,0.600226,0.951384,0.0325875,0.472542,0.931978,0.522797,0.599777,0.352954,0.693458,0.685222,0.904557,0.16361,0.41713,0.767057,0.726332,0.319427,0.139555,0.488422,0.458165,0.259933,0.937259,0.0636373,0.0897241,0.0659824,0.988006,0.0398735,0.105716,0.176517,0.425945,0.784805,0.847262,0.688282,0.770067,0.794161,0.576734,0.334638,0.393277,0.202375,0.141544,0.0209694,0.0914984,0.132122,0.563908,0.745669,0.736105,0.812438,0.540041,0.492206,0.38289,0.978308,0.31772,0.712303,0.0604779,0.0752944,0.547291,0.822854,0.806784,0.890608,0.95086,0.236823,0.0993298,0.661529,0.161099,0.124661,0.956194,0.572164,0.971679,0.618124,0.998995,0.20102,0.140282,0.878853,0.808293,0.325659,0.124855,0.0919755,0.421895,0.0254795,0.514565,0.781738,0.64138,0.0520148,0.00567824,0.760483,0.945533,0.931697,0.651755,0.904287,0.869899,0.107318,0.530358,0.879575,0.950777,0.138437,0.580472,0.252254,0.96501,0.948976,0.0473114,0.427813,0.857635,0.982703,0.892858,0.94109,0.952911,0.114979,0.340201,0.496942,0.626825,0.192214,0.295581,0.283358,0.779664,0.196821,0.859806,0.425696,0.759143,0.813384,0.867119,0.932843,0.0896851,0.185911,0.467662,0.643229,0.30637,0.237025,0.675793,0.587989,0.221567,0.273266,0.306559,0.199023,0.839608,0.257623,0.182808,0.283101,0.765755,0.852855,0.74361,0.971078,0.519239,0.256485,0.00617576,0.456996,0.594183,0.390812,0.90108,0.984826,0.16754,0.248142,0.929192,0.711339,0.837864,0.575245,0.0152571,0.953765,0.388681,0.610854,0.909076,0.605646,0.531861,0.218036,0.653644,0.0652769,0.738007,0.776764,0.566612,0.454959,0.0436921,0.404911,0.307084,0.815774,0.54212,0.183169,0.184946,0.513138,0.204723,0.359566,0.916557,0.688785,0.360208,0.635818,0.574474,0.630218,0.826464,0.560725,0.234217,0.427757,0.562114,0.189024,0.316512,0.919274,0.935117,0.273278,0.284344,0.762408,0.474127,0.303624,0.497102,0.412457,0.0413789,0.714761,0.659771,0.731477,0.247391,0.0851141,0.135141,0.558053,0.489169,0.00422871,0.868455,0.26999,0.205284,0.642346,0.680499,0.278924,0.170739,0.559018,0.333911,0.203184,0.961525,0.922917,0.150249,0.584773,0.977888,0.771989,0.370399,0.259482,0.643035,0.776473,0.777462,0.745916,0.9156,0.218859,0.339676,0.563871,0.0969431,0.329366,0.0569921,0.389988,0.738003,0.560111,0.426809,0.680482,0.504703,0.705196,0.79271,0.593219,0.520445,0.507859,0.538913,0.608197,0.362627,0.586402,0.595637,0.0884966,0.305581,0.503272,0.660543,0.377845,0.77084,0.652218,0.0653272,0.975884,0.161604,0.270674,0.0448773,0.136243,0.39499,0.965149,0.392918,0.573896,0.614937,0.405463,0.188658,0.429623,0.432568,0.0953764,0.285446,0.491561,0.711689,0.515927,0.672365,0.0864205,0.480829,0.348428,0.7315,0.837263,0.726633,0.788345,0.29627,0.422135,0.092887,0.814717,0.0768783,0.567112,0.846244,0.410952,0.920411,0.868995,0.786555,0.0341452,0.481876,0.110817,0.964199,0.905911,0.440369,0.215665,0.129619,0.572239,0.993919,0.715671,0.21508,0.0386522,0.891955,0.19742,0.167687,0.143158,0.392674,0.183913,0.950865,0.328064,0.788324,0.888742,0.963995,0.225166,0.181997,0.439145,0.454203,0.339735,0.347799,0.615458,0.280069,0.0465831,0.434349,0.918523,0.14699,0.357557,0.297736,0.771858,0.878769,0.588299,0.880793,0.0938136,0.972035,0.301962,0.601859,0.945681,0.184493,0.140981,0.221878,0.520312,0.809266,0.718602,0.262347,0.379904,0.243128,0.375502,0.179931,0.672799,0.859254,0.251337,0.18277,0.0702407,0.427619,0.418564,0.316716,0.0899886,0.422152,0.293361,0.323602,0.890261,0.493074,0.997331,0.848605,0.34472,0.25215,0.985084,0.165367,0.642038,0.841321,0.118874,0.114353,0.649968,0.596037,0.878896,0.469994,0.739687,0.509158,0.93601,0.552753,0.243746,0.0784836,0.803267,0.199493,0.861896,0.97112,0.394146,0.297232,0.0309505,0.41322,0.496016,0.0260295,0.590424,0.0811649,0.0217619,0.509715,0.217097,0.769009,0.290802,0.282809,0.0164505,0.354544,0.248676,0.36989,0.596017,0.629673,0.539167,0.462474,0.911721,0.126284,0.478323,0.0409505,0.804889,0.829465,0.533294,0.501866,0.958706,0.395796,0.903624,0.113566,0.738911,0.654538,0.680237,0.60569,0.115449,0.55938,0.485817,0.860971,0.389421,0.105149,0.0428545,0.598981,0.393348,0.992532,0.357073,0.486934,0.586017,0.844791,0.41417,0.610072,0.753547,0.790266,0.428161,0.461882,0.268057,0.594262,0.192868,0.75743,0.454633,0.708378,0.459955,0.396157,0.928312,0.871441,0.117257,0.635471,0.522807,0.855336,0.0833062,0.150694,0.584519,0.995722,0.637084,0.948486,0.150339,0.231993,0.928087,0.053296,0.373856,0.78949,0.42058,0.566643,0.0246536,0.35411,0.222186,0.538973,0.456138,0.823135,0.0613708,0.854856,0.963088,0.634472,0.00162458,0.979964,0.18473,0.720122,0.610931,0.293421,0.842756,0.347634,0.973057,0.211885,0.878015,0.29197,0.719179,0.599722,0.979336,0.644083,0.620791,0.943238,0.589994,0.384604,0.0199366,0.40207,0.783826,0.459419,0.728045,0.0561444,0.155473,0.0331202,0.998287,0.353399,0.874592,0.118237,0.648367,0.0156074,0.200301,0.19896,0.893121,0.13864,0.671919,0.328935,0.7216,0.759381,0.462526,0.408693,0.474272,0.878138,0.758518,0.800311,0.0564042,0.143968,0.00953895,0.48419,0.610347,0.31597,0.296489,0.486611,0.923431,0.65015,0.292185,0.697224,0.868734,0.259366,0.722309,0.321366,0.706178,0.541512,0.341944,0.931947,0.072999,0.757269,0.751777,0.445562,0.174938,0.2452,0.897287,0.0376489,0.173692,0.415865,0.62462,0.50795,0.505159,0.374345,0.106122,0.791991,0.938658,0.0511312,0.0743716,0.0853813,0.698191,0.531756,0.340054,0.973651,0.807288,0.766608,0.603984,0.755129,0.522402,0.950646,0.797219,0.80578,0.423477,0.38895,0.626568,0.932224,0.182966,0.465582,0.780059,0.177624,0.100527,0.472571,0.453139,0.203092,0.0655375,0.865736,0.996835,0.661976,0.225471,0.961123,0.643866,0.619664,0.222978,0.628798,0.133985,0.802669,0.152501,0.214523,0.0284268,0.672968,0.587239,0.465536,0.505208,0.378007,0.376668,0.336155,0.0526065,0.673885,0.67923,0.713119,0.623998,0.545485,0.0832894,0.18834,0.386969,0.895955,0.526372,0.653484,0.641452,0.551796,0.461492,0.482847,0.247208,0.275543,0.870569,0.964347,0.532723,0.434656,0.189778,0.612699,0.751607,0.800767,0.760927,0.453576,0.609403,0.116454,0.617141,0.416274,0.969173,0.336109,0.956618,0.470646,0.251326,0.503014,0.361197,0.321492,0.839803,0.0961195,0.0909436,0.889715,0.0122741,0.822241,0.99249,0.0510579,0.16822,0.981541,0.336322,0.0261851,0.405152,0.875299,0.506076,0.581291,0.917003,0.559713,0.189955,0.25424,0.0409442,0.695786,0.479754,0.27819,0.748098,0.961931,0.217072,0.145166,0.499349,0.144545,0.422867,0.975084,0.828499,0.615936,0.438326,0.243619,0.873343,0.859504,0.532105,0.604108,0.865079,0.99509,0.725915,0.946762,0.260383,0.921173,0.932845,0.664422,0.383183,0.129576,0.528164,0.867174,0.618117,0.182987,0.72424,0.462183,0.444567,0.864501,0.543597,0.496193,0.302372,0.85127,0.398704,0.321543,0.784978,0.444568,0.0321956,0.796238,0.356413,0.304968,0.346878,0.464503,0.404165,0.46944,0.679734,0.763208,0.666449,0.0456774,0.620467,0.927354,0.999436,0.598386,0.733183,0.769609,0.116626,0.601322,0.474377,0.773203,0.796834,0.539725,0.599435,0.806162,0.462927,0.768364,0.889759,0.847003,0.283212,0.496536,0.22846,0.557537,0.265298,0.879809,0.828332,0.449901,0.477176,0.162642,0.620691,0.661965,0.910099,0.122367,0.149732,0.67763,0.534087,0.925167,0.568095,0.7978,0.146891,0.629129,0.829896,0.926521,0.507004,0.0228412,0.924576,0.206841,0.891805,0.777092,0.438303,0.625832,0.667719,0.608198,0.553032,0.176112,0.375257,0.808093,0.653987,0.0672528,0.847064,0.5217,0.799655,0.886549,0.493887,0.377129,0.505862,0.773869,0.301913,0.793863,0.365807,0.170121,0.425587,0.358509,0.679354,0.635123,0.768031,0.872101,0.0080604,0.14804,0.954622,0.462632,0.945589,0.912785,0.988584,0.65273,0.371528,0.621115,0.477965,0.0633977,0.794287,0.884426,0.945221,0.333722,0.06832,0.2789,0.910053,0.485298,0.405342,0.0307447,0.652423,0.988603,0.0404686,0.434962,0.351505,0.931342,0.254559,0.626797,0.674221,0.420329,0.231029,0.0962993,0.0606628,0.046667,0.365292,0.176455,0.944246,0.386447,0.908062,0.520361,0.0406184,0.761562,0.171903,0.322571,0.967741,0.355595,0.638473,0.761182,0.727978,0.237455,0.667779,0.403773,0.0615574,0.675391,0.837416,0.973777,0.289512,0.226628,0.945384,0.187959,0.14908,0.827413,0.279565,0.583463,0.97304,0.563688,0.347185,0.774279,0.405386,0.523744,0.228918,0.386037,0.751477,0.153354,0.335021,0.118986,0.754026,0.232798,0.882276,0.952999,0.944513,0.414343,0.205194,0.12834,0.928613,0.132831,0.637007,0.293492,0.43087,0.885123,0.104782,0.355606,0.414618,0.235994,0.620308,0.313822,0.0887285,0.583909,0.493378,0.432301,0.602128,0.394536,0.493736,0.753289,0.2889,0.387707,0.140266,0.651982,0.535949,0.307973,0.612416,0.293473,0.555754,0.257266,0.776035,0.654498,0.526684,0.86567,0.843964,0.351172,0.91574,0.0242955,0.457399,0.149996,0.377356,0.759007,0.922233,0.637068,0.643964,0.0716214,0.137944,0.850413,0.561305,0.416549,0.93866,0.0104195,0.238758,0.997152,0.652149,0.0615612,0.477116,0.19869,0.669997,|0.409983,0.12584,0.173788,0.575938,0.60436,0.159359,0.712336,0.61075,0.592593,0.371327,0.676921,0.509922,0.0276406,0.119302,0.495817,0.0669215,0.138755,0.424377,0.638156,0.527335,0.507686,0.00846106,0.68942,0.645769,0.60836,0.343168,0.819243,0.185942,0.77873,0.731587,0.0727191,0.153464,0.043572,0.53824,0.681945,0.425015,0.763394,0.420175,0.215504,0.676403,0.685576,0.396116,0.231673,0.0827237,0.673695,0.923288,0.0532399,0.455128,0.195095,0.667119,0.969509,0.1883,0.852776,0.461934,0.588818,0.925326,0.886521,0.88786,0.491693,0.233731,0.953407,0.151659,0.993248,0.726421,0.683061,0.305705,0.764828,0.829563,0.207325,0.595358,0.614802,0.842734,0.609089,0.124765,0.275449,0.0867757,0.471202,0.629049,0.960217,0.111207,0.579078,0.799668,0.854007,0.534858,0.874344,0.0697402,0.422197,0.849236,0.688382,0.769907,0.721891,0.126937,0.425149,0.250029,0.991643,0.644009,0.430915,0.638218,0.57361,0.157316,0.577593,0.230511,0.046168,0.50217,0.538549,0.545099,0.958445,0.891369,0.441072,0.700037,0.214003,0.934114,0.526566,0.733183,0.164207,0.119874,0.154273,0.241252,0.500006,0.824159,0.544523,0.182103,0.166821,0.815482,0.00685328,0.790521,0.00195682,0.754228,0.743171,0.451723,0.781122,0.321845,0.693141,0.094835,0.770512,0.408772,0.497163,0.861548,0.145668,0.201857,0.247343,0.702926,0.0147924,0.0671025,0.738511,0.422459,0.900747,0.928222,0.622303,0.642121,0.263908,0.467336,0.879041,0.779642,0.0354059,0.850139,0.194038,0.459225,0.959634,0.0782764,0.208701,0.199225,0.58077,0.00437862,0.536883,0.308673,0.0102125,0.746399,0.234321,0.834703,0.946792,0.992552,0.384858,0.638882,0.467684,0.968041,0.614906,0.679714,0.327619,0.200469,0.721453,0.168326,0.966902,0.970315,0.0638351,0.53619,0.186049,0.251203,0.677749,0.445819,0.808679,0.517175,0.615493,0.493572,0.392867,0.0712582,0.808108,0.0780463,0.334131,0.611986,0.780071,0.590932,0.357803,0.844252,0.51573,0.7308,0.446814,0.79948,0.582978,0.740229,0.36623,0.210386,0.677543,0.688251,0.814415,0.408896,0.157193,0.534562,0.0823532,0.470066,0.863894,0.811942,0.785811,0.743616,0.134434,0.0256283,0.116332,0.0801539,0.0261148,0.789836,0.797472,0.85142,0.763611,0.998566,0.753799,0.960185,0.453245,0.338664,0.111176,0.254721,0.216492,0.611408,0.889115,0.0629283,0.393059,0.393007,0.976224,0.682938,0.462353,0.494417,0.777971,0.409268,0.466362,0.820552,0.267269,0.724807,0.906155,0.671314,0.457391,0.00305927,0.0860215,0.208707,0.352881,0.0609942,0.2799,0.380917,0.51148,0.0252663,0.384195,0.376827,0.628451,0.767787,0.983003,0.847542,0.378807,0.056506,0.129893,0.224327,0.091068,0.934196,0.494043,0.795601,0.833366,0.000636876,0.86965,0.0452744,0.382335,0.96021,0.512307,0.809467,0.718649,0.061731,0.10362,0.0355333,0.827062,0.237026,0.662484,0.207591,0.0337128,0.116202,0.598748,0.551982,0.913574,0.69783,0.450413,0.781217,0.265988,0.379726,0.997924,0.798519,0.762668,0.966625,0.0475387,0.636753,0.447183,0.302387,0.126613,0.854222,0.0188218,0.950765,0.132426,0.406817,0.0506557,0.94973,0.901818,0.0362941,0.494197,0.960234,0.124441,0.542364,0.641368,0.657963,0.1229,0.163646,0.245604,0.619601,0.72978,0.831365,0.378603,0.444428,0.500246,0.802031,0.0377976,0.196896,0.551691,0.709442,0.923636,0.670625,0.295507,0.0796942,0.661056,0.126712,0.923335,0.380819,0.303865,0.428201,0.4234,0.556541,0.0902252,0.269207,0.609711,0.639938,0.994056,0.155149,0.342174,0.779171,0.474582,0.98138,0.193748,0.745917,0.577318,0.180198,0.75503,0.0155485,0.66706,0.521606,0.411357,0.36282,0.575347,0.635599,0.876961,0.220839,0.543005,0.62156,0.112668,0.128088,0.114401,0.780931,0.849083,0.944966,0.693772,0.249781,0.874149,0.762497,0.0536682,0.120423,0.676947,0.400994,0.768991,0.692747,0.831515,0.896864,0.728126,0.201176,0.406521,0.925221,0.602659,0.117802,0.680413,0.848434,0.779019,0.633832,0.283989,0.474698,0.260792,0.760353,0.462304,0.504126,0.799088,0.4516,0.290137,0.0831662,0.130547,0.649365,0.731341,0.473411,0.545678,0.968417,0.468486,0.583648,0.531939,0.117152,0.199234,0.760113,0.694046,0.722576,0.518378,0.199638,0.855358,0.284107,0.245796,0.528285,0.406531,0.519001,0.996437,0.310225,0.149117,0.872821,0.22507,0.971997,0.857378,0.775565,0.437828,0.626241,0.0741604,0.645622,0.115252,0.806255,0.599117,0.240615,0.00230831,0.482264,0.993245,0.894935,0.738407,0.291786,0.00477505,0.493505,0.770541,0.507263,0.659083,0.14641,0.144148,0.694518,0.405533,0.427695,0.507032,0.591375,0.621683,0.499957,0.188587,0.540648,0.157955,0.645496,0.477586,0.023725,0.784116,0.126152,0.806091,0.566816,0.517733,0.449452,0.774785,0.671375,0.372558,0.476663,0.401624,0.0105371,0.25925,0.928449,0.162125,0.535041,0.661503,0.623055,0.952455,0.101427,0.282011,0.76955,0.457242,0.49684,0.326981,0.529908,0.990647,0.487131,0.256272,0.639884,0.627408,0.388363,0.878119,0.484591,0.807413,0.292073,0.223667,0.794745,0.322359,0.926395,0.58784,0.902173,0.893097,0.561755,0.776738,0.112328,0.266789,0.0630278,0.467488,0.0185918,0.0122712,0.219524,0.275076,0.892933,0.395553,0.488743,0.856378,0.0157173,0.255946,0.344923,0.301197,0.587567,0.880674,0.837286,0.298632,0.762197,0.353034,0.776894,0.425716,0.768192,0.288718,0.237936,0.561638,0.640713,0.954575,0.0916204,0.974378,0.742035,0.820136,0.174696,0.522381,0.843208,0.257353,0.0757609,0.694306,0.325511,0.848034,0.326392,0.369919,0.505565,0.0385016,0.167201,0.470084,0.888541,0.816949,0.146451,0.249349,0.529412,0.0137904,0.0184805,0.457889,0.350949,0.597785,0.0595427,0.532247,0.252449,0.0601913,0.928042,0.514145,0.305171,0.344587,0.794241,0.8035,0.848768,0.485374,0.511481,0.781836,0.45076,0.554618,0.316182,0.821671,0.792542,0.570196,0.228852,0.768193,0.468488,0.608421,0.762207,0.907971,0.546658,0.423463,0.00731713,0.20467,0.624457,0.862645,0.12368,0.97709,0.993199,0.0647423,0.176375,0.209313,0.215671,0.892712,0.583963,0.0374613,0.279005,0.751477,0.670284,0.117786,0.638129,0.70559,0.63388,0.0438062,0.271216,0.80477,0.986474,0.331907,0.0904398,0.965375,0.602535,0.99594,0.112595,0.916078,0.403456,0.610238,0.155449,0.0199037,0.279862,0.163387,0.984878,0.765793,0.0899762,0.627504,0.0541481,0.218007,0.36483,0.952579,0.388929,0.218486,0.289514,0.373589,0.221883,0.375092,0.552602,0.188782,0.659823,0.0711613,0.36342,0.151494,0.0807346,0.837254,0.0522162,0.290835,0.64708,0.72702,0.489075,0.900537,0.665887,0.496801,0.649568,0.806611,0.85118,0.755757,0.735177,0.508481,0.719202,0.503935,0.640268,0.0391353,0.518415,0.041781,0.858751,0.783098,0.981255,0.140241,0.320332,0.278457,0.385019,0.784726,0.0807435,0.0998617,0.172681,0.820705,0.00709826,0.316851,0.00789088,0.915197,0.182458,0.781914,0.530192,0.214216,0.168912,0.413044,0.524635,0.104217,0.60007,0.847798,0.90988,0.517624,0.518336,0.388031,0.959364,0.513543,0.642096,0.857939,0.889226,0.72153,0.0926892,0.858548,0.999172,0.0372642,0.325755,0.459392,0.0482446,0.752146,0.108994,0.347888,0.466776,0.106066,0.581269,0.495104,0.408389,0.570179,0.0447134,0.433955,0.010276,0.581311,0.74907,0.481664,0.802386,0.385716,0.808096,0.303534,0.881379,0.180636,0.709315,0.717448,0.998135,0.0195872,0.575867,0.3457,0.721159,0.695159,0.878712,0.207657,0.967005,0.911501,0.998712,0.37023,0.133333,0.392679,0.727841,0.389411,0.600675,0.877811,0.271437,0.849952,0.803653,0.29557,0.051911,0.30762,0.87632,0.92716,0.318558,0.23973,0.790335,0.814525,0.844901,0.949648,0.63014,0.456943,0.393439,0.0269376,0.00996387,0.650631,0.950477,0.251058,0.818075,0.437068,0.51357,0.86432,0.991838,0.816787,0.81547,0.622441,0.815272,0.255555,0.0549638,0.669362,0.471299,0.623806,0.0731884,0.10283,0.862936,0.301721,0.339559,0.853118,0.00307715,0.581787,0.976355,0.0710682,0.406048,0.668838,0.711478,0.988696,0.505277,0.0638666,0.393045,0.297611,0.142306,0.29245,0.454759,0.597476,0.423597,0.838704,0.604884,0.161099,0.528268,0.230754,0.546439,0.124819,0.603618,0.257493,0.260734,0.895529,0.0674474,0.90459,0.731953,0.385232,0.497887,0.360537,0.367779,0.0882988,0.241893,0.129502,0.236359,0.0949071,0.680204,0.955977,0.151199,0.135553,0.424534,0.0531365,0.00489765,0.91162,0.533248,0.485303,0.38912,0.784987,0.268909,0.384208,0.143282,0.801139,0.771091,0.864188,0.340127,0.111321,0.139019,0.292689,0.261703,0.849216,0.062063,0.249709,0.711186,0.337508,0.566341,0.489623,0.480663,0.0109423,0.290936,0.356209,0.932175,0.265226,0.80357,0.218689,0.423751,0.826037,0.950359,0.631506,0.782044,0.996265,0.114252,0.988974,0.309829,0.761604,0.521324,0.984007,0.837469,0.829452,0.172195,0.710085,0.46405,0.995686,0.389197,0.532223,0.742477,0.306861,0.0918549,0.868496,0.353002,0.463466,0.6997,0.476273,0.77562,0.181354,0.465072,0.871922,0.154544,0.610004,0.497947,0.44898,0.28025,0.0378008,0.562502,0.0339134,0.194711,0.0066064,0.783,0.361682,0.186436,0.500692,0.358531,0.449578,0.00414824,0.776623,0.4245,0.0446128,0.81467,0.364607,0.17727,0.442724,0.444985,0.690535,0.214518,0.855423,0.277221,0.378679,0.85983,0.689527,0.546648,0.441713,0.224972,0.848636,0.539174,0.99728,0.776456,0.607137,0.0902874,0.0814698,0.469123,0.801287,0.108422,0.960593,0.138606,0.411074,0.704986,0.0640939,0.724911,0.505977,0.198671,0.369156,0.639851,0.468355,0.284943,0.534016,0.752611,0.433379,0.562666,0.120281,0.495053,0.76631,0.565082,0.952625,0.824142,|0.912804,0.0873978,0.0929573,0.701865,0.927119,0.95016,0.0311276,0.259882,0.214908,0.1368,0.506141,0.895413,0.800472,0.266809,0.966794,0.499449,0.648572,0.278293,0.795217,0.288905,0.984971,0.553143,0.909742,0.346717,0.168656,0.0117046,0.0781197,0.477542,0.781794,0.95851,0.479658,0.224981,0.059204,0.465891,0.947115,0.645504,0.0939487,0.507597,0.747458,0.454857,0.400492,0.0489265,0.61905,0.603778,0.627029,0.66039,0.425759,0.435512,0.384808,0.452751,0.972289,0.784029,0.239771,0.198779,0.241662,0.585131,0.954348,0.441856,0.886124,0.148823,0.236932,0.0833571,0.414027,0.68301,0.365485,0.399707,0.878106,0.10602,0.113412,0.269371,0.564593,0.715895,0.0649135,0.10516,0.671838,0.826445,0.882828,0.291353,0.383213,0.771735,0.729247,0.297321,0.276563,0.234506,0.273632,0.441019,0.941748,0.17948,0.341043,0.216941,0.194907,0.355504,0.543144,0.420147,0.623174,0.145525,0.0348995,0.0158005,0.811288,0.818659,0.181181,0.55442,0.967494,0.986985,0.729938,0.44324,0.91877,0.489434,0.691928,0.282498,0.732335,0.00846851,0.567424,0.788198,0.955669,0.305322,0.841857,0.273173,0.979738,0.674714,0.443501,0.110932,0.661177,0.0654777,0.164275,0.873035,0.718219,0.576666,0.710171,0.287737,0.0321439,0.404691,0.902721,0.405882,0.945184,0.910106,0.726171,0.35733,0.953731,0.676534,0.420649,0.623005,0.592634,0.291498,0.085295,0.148382,0.225034,0.409066,0.967732,0.0988188,0.390365,0.266349,0.515463,0.593693,0.828785,0.332262,0.0443107,0.412364,0.256416,0.378288,0.206868,0.795521,0.877849,0.545833,0.367971,0.953999,0.0290843,0.942105,0.144465,0.801453,0.78397,0.635809,0.110397,0.439015,0.236656,0.755132,0.0681009,0.750567,0.433647,0.857121,0.63962,0.141779,0.179633,0.495116,0.917096,0.774449,0.359843,0.576648,0.181923,0.57781,0.782683,0.41694,0.759141,0.446232,0.947046,0.589576,0.36192,0.236053,0.172209,0.566365,0.883031,0.966027,0.502174,0.0926803,0.195006,0.182765,0.493869,0.737298,0.402122,0.0546399,0.0106759,0.710136,0.630418,0.300146,0.807688,0.253722,0.590599,0.890946,0.0408224,0.395865,0.524492,0.865352,0.927202,0.596221,0.835315,0.984999,0.651732,0.350772,0.816751,0.108312,0.161849,0.406178,0.887251,0.0105561,0.86894,0.38642,0.500162,0.867746,0.262729,0.38642,0.474845,0.0932276,0.575095,0.18113,0.853148,0.0314213,0.510917,0.613415,0.898483,0.773183,0.957451,0.911793,0.364059,0.173303,0.294434,0.396192,0.188283,0.842265,0.17564,0.0867063,0.0738035,0.827038,0.551839,0.758755,0.495324,0.325307,0.308213,0.00371104,0.550844,0.0932894,0.862677,0.45303,0.289573,0.680493,0.395462,0.772603,0.579548,0.41328,0.9257,0.338885,0.971124,0.41481,0.997279,0.859267,0.708155,0.242348,0.875245,0.303347,0.81127,0.553513,0.139773,0.397233,0.222758,0.798235,0.417815,0.751167,0.0818256,0.963282,0.669506,0.240827,0.401876,0.922666,0.758139,0.357933,0.650876,0.219534,0.130508,0.46233,0.472568,0.557031,0.88669,0.547873,0.83665,0.78744,0.595096,0.823118,0.757757,0.36365,0.068152,0.814595,0.687203,0.560259,0.753922,0.250367,0.000303328,0.00604802,0.252153,0.324689,0.870125,0.315846,0.35944,0.666984,0.0535684,0.315755,0.824202,0.481672,0.261476,0.198056,0.85368,0.89387,0.952613,0.932228,0.759483,0.227532,0.298124,0.0205596,0.162262,0.00561404,0.580312,0.572831,0.381456,0.622653,0.26318,0.442989,0.115992,0.647874,0.572204,0.672855,0.249343,0.312277,0.640948,0.747745,0.795683,0.0613221,0.214941,0.201391,0.72734,0.96712,0.733464,0.531859,0.680997,0.669899,0.756384,0.834184,0.306991,0.800212,0.0309521,0.802752,0.590023,0.989477,0.0908547,0.548319,0.799917,0.295098,0.950033,0.412369,0.243171,0.0401409,0.213327,0.421354,0.474701,0.768109,0.448991,0.225572,0.382062,0.472123,0.622639,0.456094,0.313013,0.184178,0.636711,0.287427,0.666912,0.0161548,0.589929,0.809581,0.544488,0.507355,0.672778,0.923094,0.535876,0.181874,0.243354,0.851765,0.0921655,0.76744,0.34299,0.675242,0.976069,0.784162,0.0782182,0.923875,0.746547,0.487676,0.40383,0.115193,0.288575,0.262873,0.107885,0.143534,0.0294846,0.453314,0.732143,0.846746,0.307069,0.989733,0.585191,0.938014,0.487616,0.373557,0.737569,0.606151,0.568402,0.489793,0.270087,0.340777,0.902098,0.649397,0.562402,0.380709,0.995862,0.43823,0.703185,0.813124,0.529814,0.702288,0.574041,0.415214,0.117178,0.972188,0.420111,0.757989,0.129545,0.780759,0.234319,0.698556,0.593217,0.819116,0.714179,0.856,0.153574,0.635648,0.798464,0.559337,0.284295,0.961232,0.397293,0.457645,0.759127,0.921006,0.359977,0.0440032,0.238943,0.757616,0.639704,0.281727,0.387731,0.334164,0.588664,0.0737076,0.102184,0.586398,0.101656,0.477802,0.431085,0.319898,0.727875,0.983752,0.5399,0.564498,0.564352,0.0231816,0.124129,0.641732,0.0516654,0.912428,0.850591,0.152069,0.508145,0.414282,0.464448,0.0396485,0.998858,0.453923,0.230506,0.429825,0.1593,0.897828,0.479694,0.0660695,0.93175,0.890232,0.0739807,0.0290318,0.425195,0.667711,0.440464,0.430366,0.0657338,0.625796,0.273125,0.613276,0.364929,0.832745,0.514845,0.180762,0.670834,0.987643,0.432034,0.559748,0.862423,0.517729,0.412892,0.409197,0.557829,0.858537,0.20342,0.961004,0.626198,0.873758,0.961447,0.663317,0.0405195,0.643367,0.613437,0.540295,0.451491,0.482267,0.296308,0.407946,0.150022,0.789071,0.670263,0.0059799,0.607482,0.840259,0.878441,0.00722063,0.523774,0.380149,0.768121,0.570171,0.135382,0.35848,0.0574856,0.196067,0.376687,0.0692165,0.943864,0.318597,0.797745,0.440679,0.741893,0.816483,0.0901244,0.0714838,0.735642,0.309418,0.301842,0.624196,0.881249,0.927794,0.803213,0.365921,0.472161,0.153219,0.62877,0.0336426,0.197238,0.989436,0.978276,0.482472,0.246067,0.747699,0.839897,0.182502,0.028059,0.733336,0.729237,0.575713,0.684914,0.0179287,0.869565,0.94492,0.875942,0.672357,0.196331,0.445454,0.936408,0.752073,0.309564,0.30316,0.879342,0.914225,0.503714,0.605432,0.0535192,0.724829,0.197023,0.743645,0.554717,0.286159,0.99409,0.0311469,0.728558,0.461433,0.418785,0.737393,0.234358,0.681242,0.347313,0.296277,0.676113,0.963735,0.688704,0.225747,0.688546,0.252984,0.623799,0.941884,0.675301,0.817057,0.578705,0.216375,0.391436,0.47333,0.113355,0.962986,0.821487,0.144691,0.728514,0.256703,0.376088,0.111984,0.565939,0.764475,0.356642,0.29,0.569372,0.298559,0.739997,0.363134,0.381786,0.498987,0.924107,0.402102,0.827615,0.7066,0.911673,0.155206,0.200144,0.730192,0.239706,0.709844,0.593199,0.235641,0.412895,0.727754,0.760469,0.101198,0.398487,0.892071,0.195146,0.929122,0.162806,0.817013,0.14636,0.957572,0.575043,0.92544,0.12408,0.543549,0.803345,0.831101,0.706074,0.350501,0.882088,0.531143,0.660848,0.776366,0.88666,0.425309,0.786986,0.926148,0.315907,0.1794,0.869252,0.248776,0.442985,0.321855,0.854979,0.691549,0.550496,0.390184,0.298414,0.00400233,0.895409,0.334916,0.0102375,0.450943,0.870489,0.0306029,0.938264,0.511732,0.148884,0.682482,0.0030548,0.422974,0.220853,0.690708,0.292226,0.875381,0.23856,0.527159,0.0829341,0.585013,0.200318,0.180432,0.516659,0.0475177,0.474286,0.81855,0.145853,0.223272,0.913454,0.879504,0.0524955,0.786545,0.800857,0.0887074,0.524306,0.906918,0.84016,0.428434,0.495412,0.345153,0.25724,0.0968909,0.778368,0.914594,0.136536,0.864984,0.62987,0.814797,0.761001,0.443449,0.932013,0.735423,0.410418,0.488627,0.376105,0.207987,0.18085,0.591865,0.880801,0.933403,0.769765,0.774453,0.0431353,0.296092,0.751024,0.992103,0.216057,0.687656,0.460049,0.825753,0.856467,0.578953,0.655391,0.44991,0.197627,0.495375,0.260339,0.923866,0.535059,0.440037,0.0372686,0.570462,0.0689463,0.387087,0.255997,0.175588,0.663542,0.228001,0.592981,0.464405,0.499502,0.890979,0.374899,0.848765,0.333091,0.901778,0.156067,0.621435,0.434508,0.589258,0.194588,0.0954122,0.919452,0.713306,0.936117,0.0868362,0.319373,0.559028,0.309709,0.279952,0.495752,0.0486957,0.57015,0.016315,0.8573,0.997584,0.908973,0.602629,0.17911,0.540273,0.730031,0.613417,0.668356,0.211372,0.472251,0.247974,0.150745,0.972211,0.0253703,0.102377,0.405498,0.637252,0.2166,0.446877,0.674802,0.575378,0.171184,0.507305,0.617941,0.646903,0.989553,0.707376,0.691133,0.795205,0.637604,0.491612,0.504016,0.947897,0.196559,0.847802,0.936091,0.546781,0.328556,0.761752,0.831436,0.691841,0.701687,0.835871,0.860782,0.637982,0.0224305,0.954347,0.67592,0.62697,0.131305,0.925998,0.0038656,0.744385,0.376003,0.95025,0.278646,0.129657,0.986149,0.290165,0.796564,0.425623,0.992021,0.783724,0.973179,0.271576,0.334027,0.855643,0.491342,0.413211,0.568416,0.25933,0.128705,0.902141,0.717447,0.781732,0.712948,0.728578,0.833268,0.294865,0.130916,0.0408118,0.113951,0.0808344,0.395175,0.666903,0.612658,0.931849,0.707289,0.791098,0.701436,0.0288424,0.930346,0.0921941,0.822554,0.0497508,0.962668,0.942279,0.321879,0.7637,0.0216263,0.912617,0.565424,0.214842,0.175619,0.958376,0.116494,0.699709,0.420657,0.434116,0.924295,0.833967,0.855535,0.0974208,0.64848,0.0668422,0.70344,0.623135,0.837252,0.0636775,0.402571,0.318268,0.755101,0.0256714,0.804964,0.564127,0.120912,0.206173,0.0357298,0.407661,0.428688,0.64494,0.573578,0.843187,0.320428,0.542596,0.153534,0.119588,0.328053,0.046677,0.753837,0.0673527,0.781603,0.989053,0.893802,0.442138,0.853532,0.34035,0.158418,0.333892,0.482888,0.353521,0.567971,0.413862,0.757448,0.440729,0.203514,0.228548,0.699656,0.984362,|0.857596,0.112939,0.997245,0.909922,0.0210706,0.498658,0.537753,0.779153,0.672485,0.140238,0.238819,0.160746,0.670306,0.554328,0.177416,0.765551,0.0703155,0.0518382,0.742614,0.759895,0.577108,0.737922,0.937011,0.216857,0.138682,0.482101,0.740439,0.561305,0.908768,0.0730803,0.580007,0.349658,0.416572,0.394138,0.701005,0.0866366,0.0606296,0.138088,0.692193,0.573038,0.0788888,0.701938,0.348216,0.524092,0.760812,0.385902,0.012927,0.678717,0.853837,0.863725,0.151862,0.196254,0.755283,0.224319,0.408446,0.928419,0.818695,0.00611091,0.377379,0.918598,0.902117,0.298202,0.18036,0.585772,0.966983,0.35793,0.193403,0.183801,0.0319254,0.288947,0.347859,0.598144,0.164968,0.618151,0.537136,0.502404,0.128263,0.21351,0.435075,0.528477,0.276962,0.6955,0.997804,0.156281,0.982304,0.364842,0.268801,0.286062,0.760164,0.0919432,0.68677,0.785996,0.962947,0.201819,0.437978,0.417205,0.981801,0.0805231,0.148974,0.0692368,0.694407,0.466347,0.854874,0.00453323,0.82701,0.327561,0.506398,0.804544,0.59818,0.926958,0.689721,0.610325,0.0779747,0.982381,0.123208,0.680732,0.522704,0.804196,0.391747,0.310286,0.0778713,0.15885,0.986104,0.340117,0.00038451,0.467994,0.775816,0.255266,0.0877233,0.659625,0.144163,0.403828,0.560585,0.144337,0.918095,0.496857,0.922758,0.377681,0.808546,0.0897961,0.333328,0.745155,0.330888,0.443543,0.993495,0.177109,0.898515,0.320704,0.904227,0.0598372,0.214634,0.981301,0.420578,0.0339386,0.0435615,0.276746,0.229873,0.15722,0.966344,0.395621,0.693158,0.119212,0.558208,0.313852,0.141306,0.393,0.852415,0.412504,0.912446,0.802389,0.182635,0.373658,0.0619442,0.699616,0.943053,0.590121,0.305384,0.832015,0.0693881,0.571917,0.531673,0.197713,0.421853,0.994005,0.0270677,0.594431,0.716795,0.694186,0.124056,0.858495,0.937205,0.0879523,0.489248,0.534164,0.865536,0.589252,0.419786,0.232239,0.426984,0.926849,0.97465,0.0878322,0.530186,0.111771,0.189035,0.329694,0.321003,0.98407,0.990282,0.662933,0.956884,0.682627,0.241935,0.319279,0.334748,0.505139,0.507939,0.29731,0.88564,0.719657,0.165964,0.0894057,0.909056,0.347278,0.567126,0.958956,0.45786,0.154547,0.318957,0.00607872,0.270574,0.843695,0.12945,0.611108,0.103957,0.018135,0.458925,0.777376,0.456072,0.966646,0.481612,0.640331,0.704264,0.380113,0.601899,0.163493,0.022328,0.563837,0.452492,0.727091,0.0643147,0.352395,0.407525,0.958556,0.17859,0.735786,0.886195,0.634628,0.966121,0.561937,0.540975,0.787518,0.266351,0.336423,0.761613,0.598773,0.783726,0.932653,0.462018,0.924663,0.782429,0.505132,0.989141,0.32343,0.8037,0.160601,0.796976,0.411954,0.342428,0.970919,0.691706,0.303329,0.998734,0.592291,0.0539764,0.0774328,0.741195,0.29095,0.40288,0.170512,0.961839,0.0253011,0.0460162,0.654246,0.275181,0.897356,0.76069,0.43374,0.0385798,0.669029,0.671239,0.825969,0.498135,0.641033,0.260081,0.228994,0.440998,0.539138,0.674959,0.0298996,0.15268,0.258959,0.525422,0.0972628,0.195145,0.237799,0.303208,0.872482,0.734748,0.364152,0.857957,0.573943,0.0866058,0.344201,0.561384,0.0562381,0.398199,0.772264,0.437979,0.804674,0.447112,0.263494,0.154369,0.463346,0.929948,0.683912,0.269254,0.403563,0.636747,0.732627,0.980157,0.264723,0.685426,0.0794253,0.861903,0.130267,0.0676925,0.716355,0.487652,0.997953,0.78549,0.660001,0.620613,0.26043,0.658986,0.737714,0.739338,0.657074,0.0342185,0.67882,0.931088,0.368895,0.633692,0.721763,0.546906,0.484944,0.61255,0.648859,0.683259,0.0432555,0.0215977,0.0453423,0.719742,0.31316,0.223973,0.329049,0.161094,0.16602,0.330495,0.619764,0.559804,0.507698,0.308362,0.783937,0.0097689,0.170326,0.531896,0.249044,0.652865,0.542624,0.524237,0.479449,0.740295,0.894247,0.340444,0.792716,0.393174,0.52359,0.130078,0.685749,0.0552094,0.192913,0.471318,0.000441432,0.438017,0.590963,0.680305,0.109475,0.941867,0.605625,0.209973,0.183205,0.220437,0.805034,0.655244,0.792629,0.537662,0.950689,0.35878,0.407331,0.910359,0.192851,0.0723916,0.990378,0.531665,0.732412,0.627297,0.350878,0.173525,0.778391,0.98971,0.0762874,0.654756,0.170709,0.736508,0.322257,0.709806,0.570743,0.631521,0.576468,0.441114,0.394909,0.597255,0.00990844,0.911415,0.636037,0.37749,0.318966,0.919014,0.583127,0.756037,0.543467,0.216802,0.0866914,0.451312,0.254279,0.39292,0.338624,0.505088,0.578464,0.825482,0.907347,0.173557,0.371976,0.553393,0.35399,0.728667,0.599973,0.351531,0.576061,0.621367,0.218479,0.0271808,0.508652,0.396661,0.530726,0.0519161,0.457265,0.474528,0.988603,0.313717,0.596779,0.49356,0.449046,0.0062322,0.924306,0.222487,0.0888944,0.788426,0.31081,0.866823,0.900316,0.455892,0.922803,0.352078,0.182358,0.149618,0.452225,0.204996,0.701059,0.0197875,0.997729,0.845605,0.374869,0.682759,0.936544,0.27387,0.140589,0.320305,0.253243,0.00693041,0.224887,0.929708,0.662264,0.718796,0.212486,0.297876,0.768042,0.329917,0.297796,0.722671,0.441077,0.714041,0.239681,0.749097,0.731048,0.976774,0.762009,0.928342,0.0875068,0.665199,0.0193875,0.163954,0.0199054,0.654195,0.867783,0.178852,0.684239,0.734754,0.0913647,0.532441,0.391481,0.316677,0.832001,0.0954682,0.809032,0.94811,0.828841,0.174546,0.730168,0.219269,0.777732,0.964916,0.470404,0.986647,0.10821,0.326732,0.331441,0.302986,0.543375,0.952215,0.125642,0.753484,0.880329,0.76819,0.858233,0.656449,0.391571,0.0608137,0.751935,0.935186,0.46323,0.0341446,0.950543,0.499153,0.0300767,0.353415,0.821943,0.0708219,0.719042,0.926177,0.729659,0.457448,0.916445,0.345948,0.256179,0.918936,0.435861,0.207577,0.703594,0.789258,0.0671962,0.433397,0.233926,0.864524,0.144592,0.540653,0.17303,0.927998,0.377585,0.12148,0.741532,0.144282,0.302585,0.949633,0.279841,0.662033,0.660365,0.169923,0.642476,0.555929,0.14201,0.505135,0.830156,0.902778,0.677226,0.39061,0.494078,0.210645,0.756091,0.733413,0.381555,0.788108,0.769782,0.145765,0.398765,0.447238,0.143179,0.750347,0.391665,0.0924655,0.231932,0.543592,0.36499,0.883593,0.864123,0.88172,0.733547,0.383028,0.925037,0.590877,0.304555,0.673473,0.516686,0.527441,0.174538,0.232114,0.0692628,0.94577,0.295334,0.443187,0.203562,0.487975,0.730184,0.136694,0.486614,0.907498,0.288294,0.338587,0.735893,0.559741,0.159107,0.508888,0.509092,0.32014,0.794288,0.925245,0.907797,0.324906,0.339106,0.734761,0.527212,0.495472,0.56069,0.433813,0.121159,0.957515,0.971504,0.38604,0.0997383,0.62226,0.091782,0.97058,0.589439,0.181837,0.354428,0.977354,0.793957,0.113018,0.128826,0.267614,0.843057,0.0718522,0.704755,0.140451,0.91106,0.812169,0.667645,0.78761,0.407339,0.793013,0.654878,0.750881,0.68532,0.495265,0.451872,0.138612,0.873799,0.596215,0.989417,0.0973887,0.753167,0.128078,0.778419,0.538538,0.379261,0.785037,0.548914,0.162059,0.552355,0.503461,0.258237,0.356477,0.900867,0.87458,0.901402,0.133717,0.134924,0.278308,0.995326,0.683058,0.385112,0.808847,0.150688,0.914005,0.241886,0.470832,0.53154,0.160192,0.331087,0.208711,0.954223,0.857524,0.110768,0.150634,0.809799,0.807052,0.951259,0.413985,0.315974,0.843556,0.641593,0.483973,0.632389,0.996745,0.557257,0.702586,0.486336,0.483686,0.548192,0.0486782,0.739945,0.249949,0.576091,0.491759,0.249274,0.568158,0.919372,0.781972,0.623073,0.258148,0.942515,0.146403,0.634491,0.092068,0.482764,0.931455,0.472398,0.639276,0.605677,0.674308,0.506079,0.870696,0.0532052,0.12083,0.936641,0.824577,0.16562,0.764239,0.0426804,0.69476,0.0945837,0.581641,0.456833,0.573599,0.833674,0.699189,0.163483,0.996654,0.432767,0.973233,0.661017,0.690786,0.0610772,0.211696,0.642228,0.806469,0.0732414,0.0448905,0.292738,0.924288,0.675359,0.268551,0.283862,0.445723,0.703545,0.168368,0.950616,0.762804,0.748861,0.277429,0.00306761,0.621276,0.0205697,0.0312994,0.046118,0.0829114,0.0880105,0.873,0.39199,0.399379,0.360267,0.349502,0.881972,0.0941002,0.835754,0.109293,0.0485542,0.8021,0.810111,0.717513,0.595089,0.384321,0.343374,0.105692,0.436697,0.915228,0.196342,0.993212,0.493333,0.47175,0.360764,0.647478,0.795146,0.190882,0.932572,0.119834,0.56412,0.296579,0.0100102,0.172904,0.667341,0.210433,0.297029,0.411242,0.374479,0.580573,0.559018,0.385392,0.900498,0.209465,0.241286,0.886691,0.62401,0.0881114,0.759581,0.175632,0.157867,0.112158,0.234683,0.0674811,0.851114,0.925122,0.623324,0.982094,0.0485088,0.432536,0.220724,0.247344,0.961186,0.105497,0.0833701,0.576656,0.613405,0.156768,0.168373,0.613562,0.57103,0.34742,0.932897,0.48585,0.383244,0.46375,0.900151,0.145417,0.099628,0.774893,0.686058,0.422616,0.656061,0.141205,0.599909,0.926699,0.63711,0.425006,0.914682,0.185345,0.795337,0.689063,0.806138,0.371847,0.19168,0.552555,0.252393,0.0540496,0.255904,0.225999,0.145746,0.790403,0.280235,0.269518,0.771316,0.303913,0.574717,0.715188,0.429898,0.811107,0.871439,0.469436,0.638653,0.383417,0.114423,0.135285,0.528494,0.230146,0.807719,0.679642,0.509895,0.880305,0.245992,0.997947,0.138821,0.327399,0.443611,0.896558,0.724635,0.937473,0.416869,0.433913,0.97419,0.823855,0.254575,0.928617,0.710359,0.985514,0.737121,0.211567,0.0913587,0.883182,0.0573998,0.273748,0.44217,0.810984,0.377281,0.232164,0.169277,0.359975,0.0703878,0.797347,0.116887,0.655887,0.374842,0.607438,0.205384,0.177639,0.571275,0.359058,0.0575483,0.49881,0.410756,0.0334988,0.207701,0.445253,0.526856,0.651609,0.39849,0.388109,0.444938,0.699112,0.859667,|0.082991,0.0154116,0.0923889,0.0731795,0.732635,0.127143,0.0761733,0.531034,0.224987,0.241036,0.426931,0.497795,0.798424,0.504386,0.719179,0.0374577,0.446131,0.446074,0.585743,0.236114,0.735312,0.322357,0.976027,0.59645,0.561189,0.811139,0.356149,0.803408,0.317482,0.864068,0.227055,0.946592,0.819193,0.664338,0.920914,0.918637,0.956543,0.659108,0.0581932,0.341389,0.0875267,0.738952,0.058499,0.378812,0.2794,0.51139,0.399244,0.178498,0.278184,0.748653,0.867148,0.166763,0.14724,0.119327,0.292537,0.573699,0.14508,0.325913,0.854189,0.987608,0.130308,0.071495,0.737932,0.401056,0.507161,0.0762967,0.983724,0.899849,0.479347,0.649154,0.355686,0.198523,0.990476,0.99799,0.40292,0.578123,0.77892,0.641725,0.393449,0.185419,0.90701,0.0397934,0.969157,0.648253,0.662787,0.772632,0.408217,0.552127,0.599921,0.0162337,0.689672,0.223553,0.0529491,0.534829,0.690081,0.160088,0.870724,0.995213,0.408939,0.728618,0.340688,0.0236667,0.0326242,0.384209,0.838007,0.413149,0.214218,0.261281,0.391265,0.594092,0.938556,0.225268,0.602734,0.697263,0.952736,0.646507,0.964704,0.850027,0.557878,0.113438,0.906539,0.45222,0.97584,0.194724,0.825676,0.479119,0.599862,0.0987392,0.663321,0.998504,0.363703,0.452778,0.386906,0.441914,0.595263,0.630463,0.47614,0.483648,0.0829927,0.531182,0.644473,0.134475,0.863252,0.305586,0.180277,0.372497,0.502647,0.485613,0.951774,0.926392,0.216478,0.66311,0.344177,0.403179,0.736512,0.62493,0.65591,0.446947,0.147936,0.0782045,0.188698,0.063961,0.81706,0.53999,0.903785,0.658058,0.719676,0.784983,0.0287759,0.521211,0.131908,0.989884,0.870663,0.647305,0.492857,0.647435,0.704575,0.935755,0.821951,0.948462,0.272623,0.0345279,0.815404,0.131398,0.927189,0.884649,0.678282,0.551893,0.275566,0.845341,0.482911,0.993805,0.644159,0.184928,0.772462,0.147865,0.62913,0.584385,0.152644,0.486002,0.818563,0.686267,0.840666,0.270997,0.621351,0.537341,0.359933,0.328479,0.247026,0.944991,0.355882,0.723129,0.642529,0.950951,0.786409,0.344278,0.0471239,0.794595,0.154599,0.97518,0.878032,0.507779,0.89323,0.0102056,0.591691,0.537658,0.849948,0.453177,0.247248,0.146626,0.131762,0.352622,0.365803,0.46979,0.865386,0.850285,0.643795,0.461893,0.267763,0.270158,0.400301,0.747674,0.839534,0.672972,0.0750201,0.223385,0.152578,0.793892,0.389798,0.837119,0.94496,0.053537,0.596304,0.396853,0.367232,0.838052,0.849095,0.542879,0.824259,0.500851,0.777142,0.814323,0.499394,0.956814,0.603469,0.584207,0.865162,0.464528,0.326707,0.820305,0.809107,0.672156,0.847709,0.0651262,0.0546534,0.599382,0.941494,0.000435948,0.828852,0.453462,0.22663,0.802408,0.00154996,0.37571,0.937688,0.30608,0.945269,0.501221,0.204852,0.572941,0.209576,0.751232,0.0553417,0.799926,0.0424185,0.448052,0.859809,0.44537,0.652141,0.646977,0.837576,0.717116,0.0492232,0.971811,0.359569,0.431061,0.534541,0.981882,0.294102,0.933914,0.150392,0.337855,0.603596,0.840629,0.226035,0.311733,0.958501,0.381232,0.43239,0.815381,0.559185,0.658744,0.353979,0.216012,0.791051,0.313053,0.977702,0.337478,0.876263,0.385838,0.177803,0.359805,0.693209,0.26017,0.395482,0.295846,0.262099,0.297178,0.721699,0.52759,0.200561,0.647599,0.671706,0.578052,0.446876,0.873585,0.434952,0.474705,0.0215169,0.560764,0.257414,0.762303,0.343449,0.0930372,0.777269,0.116004,0.47203,0.714942,0.364449,0.784965,0.137384,0.70797,0.0167918,0.248702,0.387135,0.602057,0.56099,0.630435,0.311174,0.529189,0.287242,0.756665,0.164803,0.89807,0.565871,0.585693,0.381125,0.106248,0.300878,0.459694,0.113839,0.0484415,0.883363,0.715858,0.360012,0.894066,0.351806,0.110524,0.443866,0.872031,0.393395,0.891643,0.733536,0.517103,0.04827,0.524471,0.0170557,0.646314,0.407671,0.205735,0.87241,0.567142,0.883912,0.281315,0.471658,0.432263,0.335557,0.0230474,0.603305,0.209131,0.342377,0.153212,0.77654,0.682671,0.0262347,0.278876,0.430261,0.735038,0.242838,0.00679511,0.78195,0.352425,0.578148,0.198603,0.745047,0.677322,0.485237,0.184256,0.181108,0.844561,0.468864,0.428686,0.379931,0.307658,0.128432,0.0624828,0.467549,0.893035,0.675398,0.112643,0.329238,0.868502,0.801318,0.820626,0.720876,0.33957,0.0711543,0.0607402,0.695421,0.727848,0.957158,0.13212,0.840579,0.922214,0.825339,0.932583,0.352698,0.156288,0.860746,0.291181,0.578892,0.436676,0.172797,0.761908,0.130598,0.172642,0.427328,0.199533,0.0376531,0.540026,0.531219,0.551903,0.0191294,0.215465,0.831828,0.466034,0.77582,0.78113,0.732511,0.075164,0.882382,0.720708,0.861152,0.869755,0.881648,0.159693,0.236258,0.800868,0.0574319,0.998025,0.712159,0.868843,0.422041,0.318034,0.596054,0.306429,0.0588158,0.275879,0.623294,0.464237,0.0183979,0.883125,0.19694,0.271642,0.397256,0.219927,0.492992,0.237465,0.0373027,0.107558,0.90482,0.667931,0.0457822,0.532244,0.444667,0.967842,0.475545,0.166946,0.44295,0.899261,0.265996,0.995107,0.374411,0.0505091,0.783387,0.38462,0.580168,0.815924,0.791292,0.314086,0.619797,0.0829456,0.987793,0.340405,0.180721,0.678672,0.716416,0.400182,0.850723,0.829022,0.940947,0.662668,0.376849,0.758299,0.765641,0.390176,0.154343,0.510107,0.998382,0.803271,0.262555,0.481604,0.830172,0.565009,0.610365,0.412523,0.894065,0.142761,0.0616879,0.068509,0.0428995,0.542409,0.548076,0.825059,0.865595,0.929366,0.0425028,0.30538,0.904431,0.0543451,0.520054,0.854187,0.549558,0.445446,0.575767,0.751216,0.810273,0.778763,0.301304,0.903579,0.961876,0.566976,0.543769,0.780582,0.00301224,0.412542,0.186643,0.996694,0.879935,0.877847,0.0942381,0.764421,0.350568,0.90925,0.38657,0.573947,0.681197,0.91219,0.581361,0.235072,0.926761,0.0327612,0.314149,0.93155,0.373672,0.42191,0.248748,0.571615,0.115578,0.577583,0.703329,0.854153,0.531684,0.0520871,0.109485,0.422218,0.981162,0.369397,0.673664,0.525368,0.112193,0.878363,0.604906,0.53685,0.532028,0.000632882,0.198939,0.790263,0.915063,0.0049265,0.437608,0.297757,0.559745,0.724938,0.584438,0.608609,0.819165,0.865946,0.724935,0.0583912,0.840176,0.669745,0.0979269,0.919709,0.785168,0.244007,0.414238,0.022114,0.225652,0.140086,0.251107,0.531003,0.0888596,0.605072,0.773644,0.164042,0.816983,0.261689,0.827142,0.775221,0.858025,0.72994,0.916242,0.715756,0.342731,0.846204,0.0795859,0.459757,0.850709,0.473328,0.328375,0.848441,0.0140447,0.986891,0.846083,0.268841,0.653105,0.613608,0.289915,0.377929,0.727656,0.0805278,0.193255,0.739897,0.120397,0.238835,0.826132,0.00527424,0.415411,0.0636914,0.563301,0.898815,0.19554,0.813516,0.00185478,0.779731,0.196186,0.145044,0.916061,0.902663,0.30245,0.805529,0.843834,0.135331,0.788166,0.692459,0.517137,0.455631,0.506237,0.254462,0.434259,0.922487,0.0453855,0.647992,0.634431,0.5792,0.934101,0.274405,0.440105,0.770688,0.590296,0.702265,0.209952,0.598216,0.273089,0.533347,0.843352,0.187768,0.356224,0.235873,0.84382,0.77362,0.98564,0.0539671,0.611461,0.252872,0.884983,0.467816,0.273629,0.726149,0.659234,0.7383,0.298812,0.623659,0.435189,0.591706,0.179568,0.774998,0.0379964,0.653273,0.310649,0.615756,0.403,0.666531,0.284676,0.27412,0.997506,0.959466,0.443113,0.233854,0.0283863,0.549022,0.194929,0.661589,0.920925,0.316669,0.486681,0.599393,0.099537,0.167863,0.975141,0.0226488,0.382184,0.393665,0.413333,0.777831,0.933105,0.871507,0.916658,0.809853,0.27345,0.0353892,0.868937,0.314357,0.859598,0.671423,0.084911,0.853391,0.0896806,0.469384,0.185102,0.913294,0.482495,0.696748,0.563412,0.38809,0.175024,0.283332,0.63785,0.19223,0.842041,0.89818,0.4593,0.988544,0.0364686,0.267378,0.708303,0.151418,0.390235,0.863028,0.596598,0.228574,0.861065,0.979907,0.63888,0.359089,0.78787,0.367668,0.611575,0.598576,0.900916,0.786381,0.274761,0.0665849,0.799908,0.835851,0.174496,0.715133,0.459118,0.230822,0.605879,0.684793,0.637298,0.899739,0.937773,0.167797,0.32103,0.178767,0.685584,0.345901,0.726598,0.152527,0.371451,0.861747,0.561486,0.687708,0.432086,0.954308,0.907913,0.561277,0.871371,0.130298,0.096531,0.535263,0.131941,0.21958,0.275538,0.487434,0.263669,0.591102,0.51408,0.0776079,0.799574,0.65561,0.114154,0.071737,0.8693,0.278977,0.428541,0.68473,0.759749,0.0565237,0.521093,0.109891,0.737294,0.888265,0.774688,0.70441,0.123009,0.802871,0.869651,0.694078,0.724831,0.364071,0.271508,0.838672,0.361665,0.808925,0.739067,0.953378,0.234356,0.144038,0.0560446,0.91833,0.0752267,0.233635,0.21388,0.113123,0.402346,0.481449,0.77831,0.224391,0.733271,0.659323,0.433655,0.520309,0.854419,0.846254,0.382959,0.734088,0.50662,0.197332,0.321356,0.835915,0.134408,0.962765,0.760491,0.153773,0.322688,0.451808,0.760618,0.421726,0.159586,0.206547,0.0373811,0.313221,0.978423,0.197807,0.849846,0.0627653,0.387026,0.0172381,0.989146,0.252003,0.318955,0.711015,0.0890974,0.920604,0.259988,0.979372,0.933011,0.347743,0.286693,0.0175239,0.697816,0.860977,0.466532,0.695869,0.541584,0.3818,0.323986,0.0447711,0.944273,0.294979,0.0689024,0.439627,0.638298,0.761966,0.855178,0.191092,0.374462,0.28475,0.943984,0.938095,0.858852,0.802426,0.505886,0.770696,0.553372,0.451698,0.882778,0.838032,0.367163,0.966197,0.0895856,0.892281,0.642909,0.716539,0.650017,0.483216,0.775194,0.520796,0.273423,0.390336,0.0759593,0.973597,0.427671,0.654437,0.7289,0.0785312,0.616817,0.6376,0.292092,0.594788,0.907945,0.588127,0.446738,0.782963,0.476199,0.627893,|0.206513,0.110396,0.266998,0.317685,0.568034,0.4666,0.279807,0.520749,0.769019,0.120196,0.71791,0.47784,0.869459,0.631381,0.209432,0.829845,0.879728,0.9496,0.836161,0.617441,0.796701,0.299579,0.797603,0.607685,0.606419,0.101964,0.298132,0.954366,0.844301,0.578597,0.85185,0.743024,0.545201,0.804456,0.203372,0.770714,0.430213,0.453973,0.832711,0.452919,0.127145,0.873529,0.0163916,0.469077,0.744221,0.152556,0.940599,0.909092,0.942375,0.990267,0.974993,0.493183,0.639259,0.0663988,0.62384,0.924259,0.597802,0.909794,0.159026,0.153974,0.575762,0.606522,0.273933,0.838621,0.435607,0.664845,0.45912,0.426483,0.520579,0.740957,0.496916,0.515755,0.0686029,0.325939,0.401689,0.209158,0.201846,0.870581,0.0897737,0.0960133,0.735583,0.430086,0.941784,0.1146,0.0294573,0.164905,0.213528,0.14795,0.0532155,0.498775,0.535004,0.0152913,0.59207,0.0349259,0.797012,0.923806,0.257424,0.798232,0.530768,0.397132,0.162436,0.473506,0.535003,0.365401,0.610452,0.91902,0.771336,0.997126,0.0640345,0.888707,0.477694,0.101797,0.879026,0.193436,0.370216,0.127026,0.129757,0.495502,0.182681,0.0471626,0.219051,0.63775,0.163677,0.203126,0.531531,0.60058,0.48119,0.918737,0.0567178,0.540197,0.277037,0.443673,0.00125057,0.980487,0.251117,0.758224,0.75199,0.614738,0.937505,0.673631,0.931947,0.291018,0.0453409,0.941309,0.200943,0.546304,0.925362,0.356702,0.460078,0.0622283,0.0602399,0.958846,0.743076,0.512261,0.352893,0.718598,0.0309167,0.720278,0.22459,0.0344738,0.681465,0.742537,0.611203,0.196004,0.044313,0.270606,0.486705,0.931332,0.72758,0.872826,0.868341,0.860063,0.607813,0.344908,0.718931,0.788894,0.569738,0.816288,0.437622,0.845103,0.288623,0.99,0.387394,0.158258,0.902701,0.90798,0.222624,0.992931,0.615744,0.158987,0.332401,0.327285,0.901095,0.541113,0.749186,0.965715,0.130107,0.519577,0.584877,0.589689,0.347748,0.230659,0.0587558,0.265488,0.354686,0.478707,0.352046,0.315747,0.930402,0.460964,0.355343,0.292769,0.737767,0.0921111,0.316941,0.861124,0.721342,0.471934,0.77792,0.600664,0.552666,0.433628,0.96461,0.827904,0.838473,0.416662,0.272864,0.712299,0.639567,0.435531,0.88305,0.462659,0.872692,0.252239,0.796317,0.0247325,0.908514,0.98652,0.850447,0.485123,0.292376,0.677401,0.630083,0.504692,0.239825,0.0486487,0.40973,0.874419,0.724475,0.262212,0.759832,0.859203,0.545239,0.397043,0.384006,0.13268,0.765933,0.950959,0.203748,0.936363,0.599067,0.878402,0.710274,0.625023,0.785044,0.116905,0.851797,0.985829,0.873858,0.924159,0.24163,0.765024,0.632896,0.320817,0.00745058,0.7161,0.272981,0.098675,0.679977,0.116863,0.696898,0.114985,0.726664,0.110973,0.180019,0.735914,0.228279,0.318493,0.275924,0.621615,0.375663,0.88728,0.504152,0.995918,0.0705044,0.105206,0.313515,0.979643,0.761917,0.497969,0.73191,0.151208,0.921147,0.661517,0.310344,0.982473,0.167238,0.368855,0.173745,0.638533,0.963266,0.65811,0.618364,0.598275,0.827076,0.933501,0.478433,0.599243,0.8001,0.889944,0.632022,0.197509,0.998806,0.85814,0.851354,0.870994,0.368947,0.791293,0.0732715,0.245472,0.613429,0.45853,0.147749,0.0241686,0.750504,0.436261,0.503639,0.0973304,0.0831399,0.633091,0.955669,0.691109,0.412877,0.818662,0.975212,0.539795,0.387518,0.481416,0.126687,0.557651,0.762107,0.911846,0.0160522,0.211078,0.130189,0.188987,0.896852,0.37151,0.323046,0.12883,0.914326,0.667798,0.337701,0.356435,0.0048719,0.78531,0.97323,0.548213,0.209391,0.700776,0.915905,0.795061,0.619459,0.174444,0.290622,0.546192,0.201398,0.224689,0.463211,0.077933,0.704427,0.4686,0.903925,0.984779,0.520806,0.305341,0.624269,0.732694,0.461969,0.0916805,0.402806,0.766929,0.786845,0.166156,0.767558,0.905712,0.710451,0.554183,0.653699,0.784085,0.142233,0.199844,0.0758151,0.96798,0.924282,0.0658442,0.789257,0.302331,0.833579,0.752201,0.090143,0.207131,0.42108,0.378374,0.929598,0.0650631,0.849012,0.119731,0.466834,0.219126,0.168634,0.73019,0.841789,0.831207,0.828621,0.433874,0.456269,0.354383,0.00145864,0.892347,0.997599,0.994465,0.688958,0.169719,0.285771,0.777561,0.889122,0.362928,0.750866,0.807377,0.355504,0.216577,0.81755,0.947269,0.304116,0.531664,0.945106,0.262548,0.0182083,0.518513,0.992644,0.894622,0.396732,0.580114,0.231569,0.984362,0.904837,0.94438,0.354416,0.503198,0.517368,0.496226,0.104048,0.040054,0.76669,0.814835,0.0374681,0.737181,0.956582,0.755182,0.114084,0.22606,0.238989,0.997641,0.238835,0.933217,0.625761,0.408317,0.0874168,0.119704,0.502711,0.97928,0.594299,0.149935,0.574589,0.178891,0.959491,0.616261,0.798863,0.361683,0.432924,0.743775,0.150177,0.700863,0.659983,0.353833,0.442181,0.100134,0.296672,0.255941,0.634058,0.890402,0.880875,0.663545,0.814155,0.716275,0.0178561,0.602325,0.5565,0.0718608,0.512172,0.278233,0.728028,0.340856,0.970153,0.23361,0.959057,0.571607,0.0375274,0.300621,0.589243,0.839108,0.368346,0.502596,0.50507,0.480859,0.570251,0.982413,0.843749,0.291002,0.0932798,0.505091,0.0826561,0.712808,0.477258,0.0750376,0.0587946,0.692331,0.863697,0.187603,0.698864,0.682165,0.387197,0.610444,0.355875,0.23087,0.403593,0.84049,0.691354,0.170913,0.993302,0.516109,0.761739,0.820141,0.786986,0.171143,0.314159,0.931417,0.747248,0.228738,0.390795,0.886417,0.97866,0.185876,0.419509,0.332472,0.119426,0.691528,0.0667534,0.510644,0.21884,0.199502,0.358184,0.0845873,0.85272,0.307157,0.399209,0.663862,0.840021,0.00432944,0.206719,0.11892,0.134667,0.170751,0.388164,0.445824,0.887535,0.359255,0.299461,0.844207,0.376856,0.319538,0.357727,0.780479,0.82356,0.551447,0.715236,0.689722,0.384874,0.408086,0.274569,0.714468,0.1636,0.896508,0.902688,0.506793,0.0635104,0.677899,0.80173,0.252572,0.253771,0.580403,0.121338,0.360371,0.926049,0.635386,0.696015,0.32715,0.598923,0.914855,0.767949,0.256824,0.656073,0.653359,0.0170496,0.512632,0.585375,0.491622,0.278958,0.215034,0.429803,0.554267,0.232651,0.0869199,0.629889,0.396668,0.32967,0.162395,0.831276,0.979172,0.580409,0.148308,0.079149,0.737392,0.0693697,0.698179,0.831516,0.996952,0.597106,0.171554,0.143226,0.228781,0.0648854,0.0761532,0.755443,0.846729,0.514995,0.784485,0.526321,0.011893,0.394114,0.9955,0.132019,0.425785,0.265606,0.351872,0.431073,0.787903,0.303003,0.315952,0.142956,0.181886,0.48526,0.292823,0.884701,0.344084,0.459501,0.177437,0.697322,0.897438,0.770789,0.194854,0.620014,0.262133,0.595381,0.360678,0.876385,0.49417,0.996343,0.924605,0.00691444,0.32907,0.286697,0.299582,0.0928402,0.179841,0.790502,0.145888,0.671804,0.480842,0.984398,0.802699,0.129562,0.886268,0.538258,0.569274,0.47957,0.953859,0.767917,0.473057,0.758865,0.263959,0.955037,0.146993,0.86014,0.395073,0.95384,0.842842,0.957516,0.45633,0.700987,0.778611,0.0166495,0.0199338,0.792851,0.328603,0.0352153,0.785095,0.496344,0.322976,0.850945,0.869221,0.248224,0.164248,0.18502,0.198918,0.230548,0.0654082,0.00601226,0.662979,0.276197,0.302972,0.351819,0.135242,0.0842482,0.883587,0.716582,0.861126,0.314375,0.590911,0.0730664,0.0209631,0.887217,0.29036,0.452936,0.0293392,0.0132817,0.17204,0.085584,0.668385,0.240894,0.202708,0.171677,0.645676,0.0954542,0.49983,0.155149,0.0627288,0.453806,0.260539,0.401411,0.680686,0.0988148,0.114522,0.517246,0.410181,0.164145,0.55297,0.513227,0.429201,0.8914,0.260166,0.366618,0.95216,0.433549,0.51088,0.564593,0.931189,0.827805,0.498219,0.769446,0.561856,0.96912,0.151592,0.00513625,0.660542,0.207166,0.961493,0.123716,0.0663059,0.998968,0.696128,0.414502,0.206112,0.649093,0.0127175,0.859109,0.862635,0.566657,0.507203,0.59823,0.232598,0.56271,0.359301,0.0616811,0.695292,0.985759,0.54174,0.609755,0.0580636,0.156007,0.724752,0.876906,0.480671,0.694865,0.256696,0.100242,0.0901814,0.979576,0.459765,0.444704,0.106505,0.552206,0.325785,0.276204,0.234122,0.90981,0.456058,0.820195,0.34998,0.0821877,0.0806101,0.248018,0.185138,0.785623,0.0670403,0.425689,0.841268,0.160588,0.850248,0.501492,0.250605,0.50664,0.663344,0.224368,0.0835168,0.687231,0.664409,0.690532,0.414462,0.881836,0.967456,0.728911,0.729426,0.393514,0.289344,0.754383,0.348854,0.993436,0.908608,0.152305,0.0925317,0.0399206,0.33784,0.091144,0.303097,0.425401,0.463608,0.868001,0.383033,0.134624,0.30443,0.351017,0.770402,0.916139,0.0488485,0.892793,0.2977,0.716199,0.0721502,0.214464,0.910135,0.239676,0.467858,0.567222,0.989038,0.325037,0.246147,0.269574,0.887345,0.719788,0.589621,0.820041,0.809946,0.27223,0.215767,0.172801,0.305798,0.396299,0.740856,0.544614,0.48136,0.073081,0.539494,0.84968,0.631038,0.203772,0.957642,0.169341,0.286276,0.0287175,0.542033,0.689232,0.341471,0.379478,0.735195,0.293062,0.79287,0.556618,0.694653,0.0454133,0.713727,0.918966,0.0419428,0.315467,0.775847,0.729145,0.234575,0.159491,0.124924,0.400323,0.117233,0.967588,0.885485,0.466194,0.181507,0.832841,0.321723,0.0445231,0.951859,0.185151,0.365077,0.215579,0.812517,0.652657,0.730048,0.560614,0.221667,0.893883,0.615374,0.152171,0.165458,0.424541,0.549259,0.54195,0.034408,0.349329,0.805731,0.23665,0.488324,0.226098,0.766834,0.588397,0.619276,0.877056,0.00540209,0.992941,0.70852,0.811755,0.634247,0.631348,0.899874,0.264011,0.170477,0.772863,0.564698,0.586402,0.51085,0.614871,0.984448,0.119905,0.769973,0.0781726,0.87063,0.766899,0.768945,0.669759,0.780862,0.413035,0.988538,|0.326346,0.405596,0.0647682,0.351187,0.991359,0.280712,0.0228671,0.149415,0.0721784,0.465861,0.198387,0.58815,0.083607,0.39017,0.877155,0.330376,0.70845,0.822175,0.548021,0.269717,0.447103,0.796826,0.68332,0.373123,0.978518,0.917725,0.684248,0.571307,0.786135,0.556649,0.732415,0.415805,0.00521773,0.90598,0.554502,0.993582,0.439004,0.432155,0.543404,0.279146,0.00898629,0.695072,0.393468,0.590049,0.833527,0.485731,0.649002,0.169438,0.995485,0.482997,0.55604,0.958455,0.0378593,0.591932,0.331036,0.0510253,0.940504,0.770796,0.357421,0.784184,0.845303,0.0897012,0.174187,0.702601,0.503209,0.689472,0.27891,0.384735,0.787971,0.738669,0.190349,0.528748,0.0818836,0.0920208,0.17079,0.892848,0.628403,0.824721,0.308125,0.123376,0.365168,0.266936,0.224407,0.413862,0.589869,0.444975,0.591047,0.525622,0.718511,0.970224,0.859749,0.353865,0.843494,0.693306,0.641402,0.765556,0.561818,0.143709,0.895832,0.410031,0.122189,0.595394,0.875755,0.672647,0.806046,0.265478,0.572228,0.874339,0.518618,0.889998,0.571383,0.963141,0.822765,0.605237,0.0725833,0.811989,0.529127,0.943403,0.874565,0.0710667,0.824654,0.618146,0.649144,0.406233,0.831882,0.836572,0.162535,0.740993,0.402643,0.110049,0.961864,0.289592,0.998041,0.629509,0.216844,0.804835,0.955005,0.408516,0.254859,0.562549,0.841043,0.985525,0.721672,0.46225,0.988139,0.72632,0.61982,0.00967556,0.941386,0.597116,0.603551,0.218157,0.556109,0.845454,0.173609,0.414443,0.647255,0.846496,0.702015,0.0137646,0.0563523,0.0224192,0.305333,0.870354,0.0625961,0.844632,0.480817,0.429187,0.277351,0.812727,0.387402,0.60774,0.656676,0.372739,0.594825,0.654713,0.198042,0.240804,0.355524,0.761176,0.774567,0.680023,0.981221,0.115595,0.273092,0.197151,0.756825,0.732826,0.149138,0.943583,0.588143,0.784171,0.481047,0.520396,0.616567,0.293856,0.410069,0.797126,0.528455,0.480761,0.153208,0.782809,0.947494,0.778724,0.29194,0.797065,0.394913,0.518001,0.59008,0.118778,0.731684,0.285751,0.43789,0.590574,0.56199,0.79374,0.920599,0.160395,0.429532,0.568494,0.253027,0.0993187,0.256591,0.100621,0.419672,0.455215,0.996571,0.950165,0.734723,0.733169,0.539988,0.18324,0.986096,0.637548,0.411616,0.719817,0.428909,0.287021,0.725244,0.43677,0.590168,0.623669,0.718084,0.0983756,0.0593381,0.25149,0.633819,0.937693,0.0176589,0.433672,0.862238,0.960134,0.14101,0.418224,0.155652,0.702535,0.117507,0.30811,0.0785159,0.528389,0.267308,0.319133,0.410627,0.00475478,0.818766,0.57886,0.805018,0.718669,0.953817,0.580883,0.643011,0.107891,0.370586,0.941687,0.20885,0.274632,0.287613,0.100213,0.660797,0.78154,0.607171,0.238387,0.776426,0.83042,0.632802,0.376716,0.955215,0.035602,0.916846,0.972951,0.126489,0.769015,0.24826,0.630428,0.647141,0.233936,0.84866,0.301547,0.794452,0.267317,0.0488962,0.887546,0.0306685,0.54118,0.187104,0.865534,0.478184,0.562944,0.893897,0.604447,0.26934,0.61691,0.542781,0.888142,0.257944,0.584743,0.0520973,0.905508,0.566249,0.820607,0.794679,0.142546,0.917387,0.612652,0.990285,0.662773,0.00532609,0.248323,0.17913,0.0279137,0.157342,0.244492,0.847555,0.308102,0.563135,0.545109,0.297441,0.874276,0.0689523,0.468055,0.249694,0.999569,0.240165,0.641831,0.265618,0.341957,0.379513,0.718889,0.090703,0.846552,0.399848,0.934717,0.962009,0.813427,0.240047,0.703965,0.864163,0.303625,0.16627,0.24955,0.178913,0.0500814,0.886632,0.585819,0.856681,0.313244,0.660426,0.0573685,0.171884,0.972406,0.679506,0.266757,0.79146,0.656042,0.240834,0.707861,0.332853,0.0415276,0.719297,0.75424,0.297695,0.061933,0.925366,0.900627,0.52369,0.0137001,0.751028,0.662241,0.462832,0.976511,0.0726206,0.637458,0.420334,0.741566,0.244001,0.25846,0.800555,0.962056,0.365639,0.897103,0.448591,0.605155,0.30769,0.742383,0.529978,0.145152,0.915306,0.97284,0.615283,0.186845,0.267167,0.816173,0.0412526,0.739347,0.22033,0.948132,0.556796,0.185789,0.0612625,0.908694,0.265196,0.818155,0.551764,0.749655,0.341523,0.630327,0.542922,0.218851,0.304917,0.793226,0.563093,0.938722,0.173864,0.0833709,0.160689,0.589088,0.664964,0.47931,0.607152,0.00941753,0.929871,0.636546,0.983503,0.804147,0.108353,0.372482,0.440252,0.304226,0.730738,0.960268,0.85778,0.935668,0.458376,0.936734,0.211893,0.0124187,0.913856,0.731457,0.537403,0.826586,0.82185,0.997198,0.542317,0.441265,0.384803,0.413604,0.188782,0.714144,0.909894,0.78781,0.958956,0.427327,0.102941,0.856153,0.698071,0.184335,0.291166,0.890238,0.483753,0.6835,0.753254,0.431788,0.962252,0.0261242,0.565437,0.650465,0.818849,0.382603,0.172615,0.931799,0.563455,0.750806,0.374819,0.589899,0.198238,0.357798,0.444834,0.589112,0.05289,0.422891,0.365956,0.910889,0.960621,0.802523,0.577164,0.965958,0.767215,0.482276,0.597531,0.655792,0.434458,0.630596,0.23181,0.189296,0.785552,0.336939,0.582709,0.677295,0.437755,0.229172,0.943403,0.0984711,0.123313,0.652801,0.691924,0.217023,0.850586,0.811949,0.293241,0.228348,0.130134,0.380815,0.100834,0.381088,0.651779,0.646701,0.513924,0.354965,0.274577,0.614133,0.271762,0.922789,0.00808001,0.0423643,0.977112,0.119888,0.674665,0.672012,0.707532,0.877122,0.210761,0.806237,0.206178,0.83445,0.764685,0.0862824,0.788096,0.0525339,0.759008,0.422241,0.739124,0.888976,0.472342,0.200387,0.464902,0.126601,0.683702,0.840275,0.366013,0.611689,0.936709,0.535728,0.167954,0.707702,0.41574,0.710123,0.415968,0.899192,0.760039,0.30088,0.487413,0.156295,0.00571901,0.838214,0.0773827,0.665718,0.354994,0.569627,0.746549,0.889263,0.0264624,0.401974,0.567569,0.0617555,0.46503,0.963872,0.3428,0.998737,0.128429,0.163914,0.0839137,0.413223,0.93226,0.0961919,0.282084,0.115637,0.376567,0.98702,0.792097,0.95296,0.305099,0.653018,0.677519,0.427402,0.349048,0.477836,0.953983,0.864967,0.593738,0.201111,0.854594,0.255551,0.744411,0.76263,0.900013,0.496062,0.617592,0.881323,0.979357,0.693578,0.833055,0.162406,0.899972,0.959472,0.271146,0.616819,0.383426,0.338685,0.374011,0.0489857,0.181155,0.833659,0.956918,0.174974,0.743531,0.281231,0.735435,0.0652635,0.130261,0.0952647,0.785135,0.25308,0.696745,0.452238,0.822297,0.478977,0.341761,0.748974,0.0640935,0.953615,0.772418,0.410865,0.233854,0.843425,0.452803,0.807377,0.446428,0.357707,0.0435618,0.64586,0.264349,0.236765,0.231803,0.963021,0.761545,0.623291,0.695335,0.179116,0.844144,0.243183,0.01535,0.314238,0.777941,0.676545,0.795745,0.0796016,0.587325,0.550306,0.358065,0.0408416,0.149779,0.540893,0.64406,0.422268,0.836302,0.696771,0.39465,0.962202,0.585684,0.350913,0.897197,0.695518,0.348117,0.515114,0.882682,0.8094,0.144766,0.50682,0.957326,0.282268,0.349748,0.476035,0.487575,0.388717,0.38855,0.153279,0.219994,0.770075,0.596638,0.942079,0.67169,0.710005,0.648711,0.879795,0.726043,0.851059,0.898539,0.301086,0.894886,0.376196,0.534312,0.469422,0.929277,0.98169,0.860828,0.731613,0.805451,0.521381,0.30555,0.831456,0.602232,0.529139,0.506662,0.76144,0.573672,0.180523,0.818854,0.913886,0.128699,0.924981,0.658847,0.113124,0.126213,0.971259,0.561209,0.432969,0.507234,0.341534,0.2996,0.858616,0.915141,0.949926,0.974142,0.0752797,0.647905,0.345196,0.333772,0.837078,0.617724,0.895012,0.865344,0.848126,0.343752,0.503012,0.761944,0.00875926,0.409607,0.257819,0.104585,0.153702,0.649433,0.432535,0.494548,0.400721,0.253624,0.961027,0.05261,0.304728,0.874323,0.326153,0.0686177,0.558302,0.891048,0.144519,0.697692,0.500826,0.376293,0.0160824,0.722965,0.106521,0.707988,0.379049,0.598269,0.412556,0.731323,0.605041,0.222037,0.397948,0.250804,0.618365,0.534662,0.990656,0.827963,0.974341,0.517686,0.661532,0.0512648,0.361107,0.313111,0.508202,0.387996,0.170726,0.800693,0.0664325,0.478512,0.765177,0.143481,0.674349,0.936197,0.742619,0.344005,0.400235,0.693979,0.397101,0.0773219,0.305853,0.959736,0.739623,0.354097,0.192135,0.188066,0.332751,0.512506,0.475063,0.756255,0.870663,0.364023,0.195923,0.109627,0.0472852,0.288275,0.265073,0.95066,0.365932,0.845451,0.209193,0.292413,0.442779,0.513161,0.217125,0.347166,0.431928,0.0549798,0.219493,0.695767,0.798891,0.991278,0.773922,0.75289,0.608434,0.376833,0.828718,0.0166747,0.804875,0.656919,0.0134023,0.497331,0.240112,0.904966,0.963623,0.0159965,0.352999,0.882588,0.752229,0.177876,0.475525,0.929101,0.0558674,0.244141,0.980464,0.345329,0.736124,0.828564,0.813827,0.0992559,0.571694,0.165116,0.621442,0.967604,0.0807055,0.38963,0.936337,0.448518,0.865661,0.801261,0.802105,0.797897,0.0180984,0.459775,0.342223,0.650243,0.740426,0.348332,0.909212,0.0742915,0.39248,0.846219,0.434828,0.2998,0.290403,0.707768,0.224652,0.332804,0.410566,0.144493,0.40897,0.785417,0.619153,0.682364,0.837805,0.617037,0.849319,0.811099,0.880124,0.0401845,0.666933,0.864961,0.34018,0.750965,0.106405,0.394079,0.644315,0.457771,0.260524,0.740041,0.131374,0.459965,0.949583,0.285038,0.783788,0.446496,0.613226,0.853539,0.420832,0.736614,0.851237,0.979259,0.481732,0.00568163,0.809047,0.14218,0.771133,0.545447,0.59566,0.300822,0.259936,0.710787,0.580422,0.0725188,0.616427,0.1521,0.732756,0.859684,0.423746,0.254988,0.322481,0.742903,0.194133,0.890173,0.929365,0.155179,0.110619,0.75117,0.290407,0.232692,0.221082,0.629018,0.207257,0.858598,0.702577,0.688088,0.065951,0.542248,0.279799,0.729348,0.028766,0.181202,0.184128,0.472301,0.690448,|0.749221,0.149198,0.226944,0.47906,0.385017,0.59408,0.64125,0.40604,0.721895,0.250629,0.565661,0.554043,0.92763,0.72854,0.968476,0.518931,0.053314,0.345743,0.854451,0.94741,0.91799,0.863741,0.435009,0.474663,0.250731,0.416379,0.405386,0.98096,0.60188,0.383724,0.20264,0.90214,0.280245,0.290493,0.517969,0.361529,0.133791,0.916612,0.684304,0.638837,0.939193,0.556362,0.051499,0.462343,0.0233268,0.381294,0.489887,0.549425,0.913943,0.328714,0.0476384,0.258987,0.894116,0.704702,0.318881,0.816378,0.0535476,0.974681,0.573247,0.573123,0.0632109,0.548203,0.862397,0.7473,0.76619,0.18472,0.163304,0.314322,0.0321418,0.454311,0.239399,0.798312,0.699612,0.169961,0.208432,0.513585,0.468607,0.230346,0.599263,0.889685,0.879102,0.155317,0.7717,0.693657,0.78967,0.812645,0.0315253,0.436412,0.989259,0.849623,0.905215,0.0688861,0.595161,0.859144,0.286664,0.707312,0.284405,0.466931,0.150004,0.258569,0.908615,0.170697,0.703703,0.157357,0.514951,0.79034,0.405737,0.455185,0.367889,0.309053,0.116884,0.333639,0.221088,0.302799,0.0494905,0.547822,0.891401,0.273206,0.311003,0.744046,0.371749,0.702633,0.474646,0.11092,0.782198,0.194843,0.90825,0.682953,0.371763,0.594283,0.200042,0.143723,0.243267,0.213158,0.352172,0.209063,0.152383,0.649753,0.654781,0.357722,0.697349,0.4555,0.843992,0.579356,0.198599,0.206374,0.248385,0.417251,0.780624,0.347224,0.612774,0.16158,0.59465,0.411122,0.283694,0.464082,0.182936,0.585441,0.691228,0.917416,0.521826,0.333689,0.835622,0.431886,0.25282,0.0904763,0.790538,0.938258,0.273258,0.932048,0.71648,0.641049,0.714243,0.499717,0.160786,0.569633,0.497108,0.0348554,0.710303,0.960345,0.54755,0.659397,0.791305,0.201518,0.898184,0.499653,0.0758308,0.597238,0.444564,0.528666,0.857946,0.218633,0.688717,0.106167,0.424864,0.717912,0.87433,0.159364,0.509098,0.466514,0.281473,0.999713,0.423813,0.170392,0.64666,0.929075,0.41413,0.396887,0.331924,0.2468,0.153696,0.466994,0.659235,0.739638,0.502219,0.138113,0.963048,0.10929,0.385369,0.376214,0.481238,0.282764,0.503667,0.121877,0.787553,0.444985,0.0219732,0.133949,0.425637,0.653695,0.133979,0.972107,0.658478,0.815804,0.189447,0.0568564,0.288985,0.534798,0.879477,0.379691,0.706585,0.750654,0.381206,0.538671,0.501416,0.621781,0.23976,0.559591,0.186176,0.240281,0.787601,0.553404,0.805365,0.544726,0.0605446,0.0730247,0.22183,0.817082,0.465193,0.505902,0.918994,0.826641,0.739168,0.846404,0.0747721,0.0474524,0.0988041,0.824419,0.949917,0.134407,0.507436,0.692336,0.584486,0.668034,0.496163,0.0544648,0.825196,0.802556,0.997581,0.0332671,0.913276,0.583149,0.814613,0.428873,0.820687,0.598836,0.597396,0.0708185,0.73979,0.527238,0.54853,0.577573,0.139383,0.295795,0.654364,0.794521,0.656125,0.566763,0.478901,0.714147,0.298983,0.538853,0.300043,0.385036,0.666395,0.416082,0.817947,0.570168,0.0826937,0.899915,0.772472,0.350938,0.199503,0.376131,0.674125,0.163612,0.664915,0.887583,0.490558,0.492259,0.111186,0.40974,0.205222,0.242554,0.977387,0.463962,0.125279,0.694633,0.897501,0.585986,0.967043,0.639158,0.0517005,0.87748,0.791243,0.11946,0.837809,0.59797,0.162753,0.671359,0.930073,0.872503,0.809071,0.797985,0.703788,0.885744,0.450783,0.107516,0.548654,0.551466,0.908124,0.179283,0.282611,0.491853,0.106782,0.495789,0.656754,0.188561,0.410666,0.48186,0.479589,0.874227,0.473567,0.205987,0.172477,0.363714,0.720421,0.496729,0.0988814,0.168788,0.131185,0.728977,0.185407,0.875475,0.216068,0.043768,0.585449,0.974304,0.99896,0.0223014,0.384573,0.232552,0.101982,0.406509,0.41739,0.874947,0.235123,0.515304,0.418239,0.750975,0.114701,0.942442,0.899159,0.157809,0.315292,0.0935489,0.749125,0.33274,0.75061,0.783516,0.212261,0.735265,0.156482,0.370278,0.307377,0.107796,0.605731,0.780247,0.963872,0.724644,0.169152,0.156111,0.644923,0.502054,0.566638,0.685668,0.249289,0.815062,0.898642,0.764647,0.96147,0.510284,0.481985,0.210099,0.113485,0.565458,0.158698,0.732186,0.00874138,0.228009,0.289263,0.153742,0.163346,0.373448,0.922076,0.539317,0.374981,0.631697,0.524532,0.399282,0.68612,0.711493,0.854824,0.925439,0.107606,0.989238,0.341754,0.473178,0.368939,0.427645,0.331039,0.428571,0.526158,0.639074,0.939829,0.441691,0.291914,0.434722,0.242947,0.332651,0.389424,0.572698,0.195856,0.800661,0.17349,0.50902,0.499147,0.642895,0.825902,0.247791,0.211209,0.512277,0.266779,0.857906,0.0306,0.578198,0.60632,0.75517,0.896214,0.94036,0.848376,0.0205618,0.599252,0.649346,0.955759,0.745809,0.0742502,0.330477,0.111122,0.349353,0.459601,0.668781,0.130209,0.582648,0.616642,0.812716,0.708122,0.0711359,0.872876,0.684424,0.194374,0.114538,0.424833,0.124992,0.00309682,0.853427,0.40384,0.706333,0.753648,0.920453,0.225915,0.190245,0.580712,0.119444,0.123593,0.633373,0.808959,0.958834,0.199532,0.575687,0.181826,0.487437,0.957633,0.390029,0.293209,0.934815,0.648477,0.243888,0.961319,0.0966158,0.797233,0.326626,0.943565,0.371439,0.176396,0.694732,0.634925,0.78451,0.921777,0.25158,0.841106,0.323054,0.380403,0.0877827,0.117503,0.055755,0.0766452,0.169264,0.704098,0.097927,0.720146,0.860441,0.217843,0.240251,0.296943,0.155108,0.970014,0.15391,0.0646139,0.438906,0.902867,0.161611,0.950147,0.935417,0.289194,0.881555,0.630874,0.383659,0.0759291,0.882022,0.0983332,0.955745,0.656882,0.762251,0.776078,0.696641,0.741714,0.626546,0.0105317,0.84985,0.997088,0.958361,0.930422,0.404815,0.815076,0.544512,0.428187,0.0137918,0.962563,0.316386,0.359643,0.845497,0.180187,0.781058,0.597175,0.703067,0.357138,0.116582,0.612887,0.408351,0.707897,0.165695,0.0300876,0.470338,0.151648,0.187722,0.790403,0.346008,0.731033,0.433829,0.0983704,0.203937,0.967476,0.542708,0.0432107,0.539799,0.947482,0.709856,0.546179,0.564799,0.328491,0.589425,0.72614,0.0171682,0.982982,0.89918,0.287954,0.207532,0.911723,0.398693,0.695158,0.563519,0.178299,0.691441,0.172253,0.652982,0.252756,0.993338,0.641342,0.231762,0.281796,0.842989,0.998584,0.0515295,0.0440786,0.0473188,0.594191,0.447688,0.877595,0.675349,0.358634,0.159609,0.236084,0.621976,0.252847,0.313567,0.356101,0.0230658,0.0679908,0.603856,0.22646,0.150713,0.895575,0.908791,0.667376,0.612209,0.31416,0.715953,0.127791,0.88827,0.11585,0.801099,0.744985,0.4533,0.988617,0.267161,0.693947,0.906134,0.506035,0.0655468,0.444337,0.629301,0.0151907,0.0282349,0.382216,0.989805,0.165444,0.301228,0.0339031,0.376087,0.824475,0.225117,0.166803,0.151396,0.261777,0.217751,0.46911,0.59315,0.278517,0.188631,0.155689,0.719193,0.0284185,0.503859,0.160579,0.900275,0.153601,0.420284,0.806832,0.936676,0.417607,0.302075,0.238326,0.931413,0.29695,0.353788,0.378057,0.220816,0.526276,0.913719,0.442217,0.171324,0.33669,0.192205,0.0239897,0.785239,0.785482,0.856708,0.651174,0.0220734,0.171837,0.763938,0.462846,0.752927,0.659008,0.931642,0.680406,0.515192,0.774568,0.814297,0.157997,0.725912,0.0288802,0.898698,0.645972,0.362851,0.0196813,0.495635,0.997211,0.904519,0.334712,0.678631,0.879322,0.804551,0.372226,0.374671,0.716943,0.512906,0.072244,0.646457,0.590532,0.195575,0.552856,0.28713,0.226802,0.287389,0.975844,0.196826,0.0624886,0.698778,0.913095,0.37194,0.500038,0.280949,0.983771,0.0636413,0.620422,0.452006,0.71622,0.628444,0.151327,0.137375,0.870304,0.406185,0.908575,0.156706,0.143433,0.0957152,0.0830746,0.414254,0.111129,0.749654,0.310533,0.851478,0.397619,0.554948,0.511212,0.558806,0.682123,0.542615,0.880556,0.203596,0.439138,0.85666,0.148591,0.086596,0.981196,0.808196,0.710403,0.0815682,0.928494,0.0282568,0.251882,0.764602,0.212624,0.656065,0.158998,0.857909,0.980864,0.64601,0.358117,0.575957,0.138907,0.492675,0.00252759,0.249571,0.875397,0.182473,0.639847,0.679588,0.513018,0.325215,0.0370227,0.125438,0.104985,0.00384861,0.771373,0.500861,0.611214,0.993583,0.861306,0.922216,0.875062,0.774352,0.10124,0.748012,0.598787,0.23963,0.380605,0.680844,0.797968,0.748967,0.895344,0.729139,0.934419,0.430259,0.196269,0.88794,0.278029,0.517761,0.825761,0.797433,0.486316,0.358922,0.236821,0.500926,0.00185686,0.430932,0.214184,0.109918,0.249301,0.893504,0.598857,0.673417,0.900226,0.360149,0.784187,0.419637,0.369481,0.792582,0.992644,0.0468145,0.85402,0.987302,0.873656,0.686355,0.349575,0.15433,0.69002,0.0978702,0.311626,0.834615,0.898058,0.757429,0.528819,0.340895,0.991136,0.607938,0.202522,0.683426,0.366823,0.520001,0.724643,0.612629,0.666277,0.151851,0.335501,0.0940809,0.617036,0.878615,0.365291,0.941686,0.0714102,0.398619,0.854414,0.829042,0.321146,0.527529,0.744537,0.252696,0.832989,0.792731,0.969326,0.627775,0.18513,0.803044,0.586139,0.0396727,0.777155,0.0709212,0.393712,0.423332,0.425516,0.186961,0.000432134,0.666761,0.103235,0.536772,0.536042,0.284213,0.857012,0.671489,0.113213,0.41036,0.0421621,0.720119,0.525138,0.4662,0.273939,0.103313,0.590691,0.466897,0.309496,0.727479,0.538472,0.959951,0.722035,0.269518,0.140756,0.709265,0.638846,0.466663,0.0299218,0.364067,0.555834,0.1634,0.172399,0.164491,0.339566,0.142358,0.857895,0.617581,0.876175,0.57518,0.104843,0.822265,0.704041,0.954855,0.723442,0.145463,0.37858,0.757151,0.901258,0.135391,0.556968,0.957646,0.0053997,0.472723,0.99455,0.5704,0.363679,0.73873,0.457622,0.859797,0.641522,0.51203,0.175947,0.380168,0.800505,0.400442,|0.201263,0.985643,0.832798,0.650163,0.839707,0.360862,0.599279,0.394459,0.390908,0.0260198,0.506948,0.0783138,0.186454,0.925445,0.503918,0.996975,0.229389,0.797968,0.235547,0.919814,0.455935,0.963991,0.148896,0.488788,0.551652,0.747907,0.201206,0.455124,0.717203,0.604638,0.53227,0.414294,0.991655,0.342839,0.0220206,0.628866,0.48295,0.298893,0.750394,0.611258,0.732224,0.594951,0.4687,0.622582,0.974718,0.128801,0.78749,0.536028,0.178636,0.703602,0.0458962,0.157129,0.228423,0.884754,0.214351,0.870297,0.983664,0.435723,0.593147,0.143393,0.0652893,0.860393,0.187701,0.937771,0.103526,0.778988,0.628221,0.176246,0.573606,0.283191,0.715044,0.21342,0.978288,0.0668303,0.0182706,0.53388,0.446859,0.408307,0.220576,0.331878,0.349335,0.665611,0.409886,0.352145,0.522206,0.83651,0.0693105,0.552618,0.889788,0.174982,0.970152,0.655154,0.749597,0.575229,0.962602,0.0964874,0.698508,0.192528,0.153446,0.557039,0.226643,0.388954,0.694656,0.470727,0.976766,0.983714,0.250654,0.505526,0.0778795,0.184166,0.189691,0.393811,0.786288,0.41855,0.127434,0.645248,0.661424,0.249963,0.711451,0.000332892,0.503852,0.481193,0.829586,0.565273,0.517714,0.574192,0.216232,0.798257,0.303731,0.320015,0.801045,0.190117,0.512833,0.429484,0.147703,0.585078,0.330703,0.075556,0.720982,0.0444592,0.894898,0.717207,0.22696,0.0346207,0.00902933,0.107686,0.0486284,0.750796,0.0697306,0.737563,0.248376,0.429085,0.808604,0.872868,0.61188,0.321438,0.367609,0.0635647,0.929158,0.934633,0.352618,0.884897,0.934661,0.380642,0.726215,0.34158,0.299799,0.920619,0.521377,0.666153,0.874657,0.682561,0.163689,0.936524,0.340322,0.262966,0.821778,0.767751,0.329713,0.701837,0.273796,0.935057,0.534572,0.802413,0.993516,0.992587,0.524707,0.443256,0.488608,0.696338,0.735682,0.652184,0.505482,0.110575,0.598286,0.403927,0.402107,0.00995427,0.767295,0.0524392,0.0480304,0.818159,0.0116763,0.241993,0.292075,0.726104,0.605461,0.777207,0.527493,0.992591,0.231405,0.225868,0.93927,0.992472,0.255561,0.723009,0.787562,0.181686,0.203547,0.00660425,0.00258011,0.182057,0.212112,0.381378,0.780604,0.531558,0.586947,0.327648,0.604264,0.962196,0.502599,0.629874,0.600952,0.0211415,0.854779,0.0632534,0.552085,0.99594,0.112419,0.102444,0.731792,0.727003,0.448413,0.485027,0.857463,0.336462,0.257566,0.794608,0.156812,0.181533,0.150154,0.89409,0.546056,0.190731,0.0544214,0.763899,0.447907,0.633766,0.578226,0.118407,0.366105,0.63613,0.0649362,0.980011,0.0129857,0.435525,0.633657,0.101746,0.980559,0.281967,0.301466,0.302365,0.483961,0.282399,0.3649,0.601604,0.576603,0.773528,0.179071,0.791435,0.865123,0.604397,0.188884,0.380707,0.760871,0.574973,0.152177,0.0443895,0.333384,0.940091,0.0374197,0.845683,0.227884,0.999112,0.375543,0.574232,0.215947,0.850901,0.803226,0.505299,0.777964,0.183029,0.858387,0.274626,0.299518,0.913877,0.701406,0.975106,0.636997,0.575372,0.145162,0.260037,0.168743,0.487914,0.374809,0.806812,0.803741,0.798733,0.586229,0.978181,0.640945,0.238657,0.437541,0.474538,0.13267,0.169221,0.0919661,0.454695,0.424731,0.356792,0.876868,0.66407,0.185333,0.701901,0.550603,0.210539,0.530145,0.812253,0.0544615,0.280515,0.30964,0.910458,0.555872,0.0357477,0.375606,0.813528,0.695238,0.0330256,0.533233,0.26033,0.586948,0.816242,0.379023,0.340381,0.567126,0.693447,0.884131,0.561486,0.102089,0.578688,0.0414492,0.261005,0.177172,0.278917,0.572055,0.570753,0.821212,0.960919,0.0269305,0.842556,0.238467,0.439519,0.148106,0.529,0.386938,0.874714,0.284937,0.706959,0.777409,0.935831,0.279066,0.508469,0.113753,0.242422,0.27588,0.101757,0.318549,0.940002,0.755883,0.358534,0.610085,0.291067,0.420833,0.79336,0.235006,0.607687,0.474881,0.362783,0.0956941,0.350156,0.0250163,0.282275,0.752012,0.368295,0.280119,0.9159,0.513128,0.717359,0.181708,0.470142,0.0650144,0.734571,0.570283,0.629399,0.269011,0.466822,0.301685,0.597796,0.845136,0.534909,0.0714741,0.547965,0.0684628,0.85349,0.819291,0.500705,0.774325,0.384799,0.877653,0.650255,0.12626,0.382845,0.810984,0.979823,0.436764,0.184497,0.836718,0.879119,0.714717,0.039349,0.684081,0.634276,0.842702,0.93702,0.924355,0.210965,0.579741,0.469228,0.237419,0.720654,0.0492709,0.535687,0.549738,0.42839,0.589211,0.15879,0.787617,0.498421,0.772406,0.332192,0.705959,0.727039,0.107497,0.14245,0.635208,0.974214,0.671281,0.337055,0.549823,0.561772,0.807859,0.594907,0.884571,0.606528,0.499893,0.855588,0.943573,0.176654,0.0769371,0.393141,0.85898,0.715966,0.45926,0.353388,0.551932,0.88751,0.555773,0.392624,0.240811,0.303013,0.312904,0.605142,0.997997,0.0670705,0.330293,0.9022,0.238655,0.381881,0.407034,0.695273,0.0239825,0.110805,0.064946,0.0012849,0.549142,0.0685413,0.358775,0.441295,0.878673,0.152976,0.936562,0.0989457,0.436315,0.574114,0.718357,0.283275,0.744164,0.0845388,0.280929,0.634475,0.43607,0.0857061,0.83622,0.50015,0.170077,0.406784,0.917658,0.0708677,0.12128,0.0646787,0.574389,0.482906,0.479525,0.640734,0.704201,0.778999,0.229559,0.717484,0.83028,0.95958,0.603294,0.870097,0.744501,0.0648588,0.230758,0.0412072,0.870159,0.718948,0.0297304,0.964353,0.333519,0.0675502,0.261108,0.960716,0.433092,0.301839,0.788564,0.408382,0.100189,0.520217,0.777543,0.98481,0.938016,0.956661,0.414995,0.509913,0.022754,0.46439,0.0930495,0.991854,0.894442,0.947945,0.281266,0.578221,0.442932,0.474061,0.113907,0.959282,0.475534,0.164418,0.142186,0.724541,0.388801,0.178182,0.550196,0.0556124,0.959888,0.469348,0.781652,0.396957,0.966501,0.113654,0.597583,0.24757,0.138413,0.891363,0.272674,0.693267,0.705512,0.64528,0.26419,0.206076,0.543501,0.369798,0.486608,0.47889,0.443472,0.50418,0.17569,0.148705,0.415288,0.996771,0.999232,0.723832,0.510206,0.410253,0.783593,0.510696,0.647844,0.385702,0.753466,0.57238,0.465151,0.719605,0.810664,0.925395,0.959979,0.902702,0.812067,0.201144,0.0104287,0.993267,0.336623,0.152534,0.163566,0.266184,0.847949,0.229746,0.19511,0.582868,0.829973,0.2337,0.913747,0.0901666,0.809391,0.728103,0.590522,0.199343,0.753755,0.537124,0.487773,0.364233,0.42817,0.448164,0.501462,0.128105,0.831763,0.709093,0.81665,0.236491,0.837793,0.711902,0.44984,0.925553,0.322368,0.0597739,0.762757,0.226863,0.428726,0.381477,0.485888,0.180244,0.189969,0.349267,0.262154,0.621144,0.254665,0.969136,0.686886,0.033808,0.749651,0.324478,0.862036,0.120147,0.743389,0.627994,0.852781,0.0531453,0.383706,0.837688,0.357862,0.824494,0.311319,0.158543,0.743156,0.798567,0.294049,0.70303,0.207024,0.660166,0.368638,0.47214,0.300017,0.501513,0.317879,0.435933,0.933423,0.8939,0.836557,0.446006,0.118969,0.87497,0.31759,0.610091,0.526483,0.636157,0.866162,0.0715463,0.379266,0.475963,0.320981,0.217132,0.335822,0.247587,0.51479,0.847471,0.368269,0.169564,0.534584,0.401376,0.242553,0.801338,0.804735,0.354715,0.0412189,0.280847,0.590374,0.316204,0.0583463,0.959621,0.909452,0.719979,0.809156,0.258326,0.741499,0.0970214,0.920347,0.000951588,0.552805,0.197204,0.849676,0.289011,0.176893,0.250068,0.200861,0.692509,0.013132,0.173733,0.06688,0.0648921,0.565329,0.41634,0.616136,0.456145,0.338954,0.241684,0.9066,0.527969,0.038169,0.476893,0.0582616,0.856491,0.946512,0.664589,0.363137,0.198068,0.303583,0.450651,0.85448,0.816996,0.180771,0.333552,0.0117111,0.67918,0.137638,0.832169,0.998985,0.279041,0.714186,0.9561,0.731787,0.480608,0.393414,0.670957,0.278804,0.60346,0.572804,0.331084,0.506175,0.429988,0.386698,0.622498,0.190413,0.413878,0.387205,0.683098,0.0175378,0.945537,0.0229924,0.773096,0.877124,0.186145,0.219014,0.643189,0.395702,0.732162,0.423908,0.118219,0.843095,0.530645,0.464187,0.543228,0.0386814,0.815138,0.0542905,0.159863,0.876513,0.0322728,0.934203,0.62311,0.125928,0.787496,0.179268,0.902756,0.906257,0.0552526,0.291894,0.50925,0.269134,0.231311,0.43441,0.185755,0.997189,0.976432,0.528771,0.924048,0.825211,0.542729,0.670597,0.877234,0.507487,0.192799,0.502805,0.755686,0.114374,0.00502867,0.780081,0.605534,0.57248,0.462588,0.625231,0.526098,0.90905,0.618413,0.254603,0.295463,0.578661,0.888792,0.51438,0.240586,0.797771,0.940439,0.275781,0.49169,0.461495,0.0360647,0.690579,0.723087,0.590677,0.128731,0.889244,0.344421,0.989554,0.396448,0.871839,0.264578,0.83949,0.0677882,0.0634667,0.36217,0.852789,0.288296,0.28677,0.934398,0.774468,0.488368,0.395741,0.619586,0.885746,0.604336,0.409058,0.253058,0.337045,0.203263,0.830931,0.731901,0.632034,0.938164,0.745245,0.768627,0.5353,0.646846,0.445282,0.884968,0.906841,0.402871,0.0264013,0.999403,0.567745,0.692236,0.95033,0.48628,0.254245,0.668,0.180317,0.605635,0.893545,0.878991,0.726931,0.966471,0.314688,0.637291,0.982692,0.615796,0.90152,0.615372,0.976725,0.175551,0.967749,0.660035,0.359488,0.70518,0.801772,0.925037,0.548734,0.133748,0.568407,0.0221414,0.91277,0.59203,0.0299916,0.0440233,0.209913,0.547356,0.149628,0.153004,0.983892,0.48373,0.198914,0.85154,0.897923,0.58654,0.748478,0.512844,0.0618401,0.465661,0.0569773,0.778928,0.0807902,0.860396,0.386901,0.830048,0.925791,0.505456,0.331439,0.751377,0.932946,0.085608,0.944924,0.297763,0.603394,0.510596,0.455055,0.62887,0.61477,0.555964,0.51286,0.0761833,0.0207468,0.967774,0.473505,0.301204,0.067625,0.712322,0.797344,0.901013,0.821295,0.864228,0.954867,0.0355913,|0.211414,0.0839301,0.330562,0.128676,0.400753,0.302112,0.896825,0.0435438,0.682882,0.511272,0.360618,0.156328,0.807967,0.868152,0.860232,0.00229061,0.15956,0.0784562,0.167773,0.516708,0.539288,0.203156,0.965156,0.28143,0.079317,0.643671,0.884316,0.174346,0.620324,0.0555063,0.78957,0.890305,0.677861,0.702028,0.139382,0.644445,0.746618,0.958363,0.199427,0.306514,0.901057,0.853376,0.300037,0.268655,0.596696,0.0083133,0.527959,0.655627,0.667636,0.269695,0.316297,0.0154301,0.600616,0.470396,0.753806,0.448773,0.366555,0.78352,0.893849,0.0546028,0.247866,0.791558,0.138009,0.733643,0.309421,0.993824,0.0548307,0.926637,0.334519,0.352153,0.651466,0.854493,0.743944,0.942452,0.908253,0.463439,0.972016,0.712,0.325342,0.395633,0.18816,0.360701,0.71997,0.990598,0.971413,0.35516,0.817199,0.473064,0.678219,0.589477,0.425614,0.610479,0.17548,0.420112,0.629024,0.873936,0.764009,0.482398,0.560089,0.0178518,0.777788,0.322381,0.598936,0.936145,0.652997,0.392638,0.241923,0.177703,0.543589,0.187457,0.000942469,0.180421,0.263195,0.0304679,0.241834,0.437198,0.629084,0.992896,0.614998,0.733137,0.570931,0.323442,0.512507,0.247004,0.98724,0.278652,0.971858,0.562489,0.525864,0.104018,0.302991,0.647092,0.319911,0.150681,0.115372,0.0599514,0.515765,0.506252,0.564032,0.118312,0.759364,0.155269,0.950113,0.341551,0.977935,0.193106,0.516185,0.0968568,0.668429,0.549981,0.11216,0.0439874,0.923193,0.105442,0.23285,0.746005,0.357612,0.875083,0.513178,0.659823,0.381756,0.65929,0.714132,0.606174,0.705641,0.642131,0.39826,0.559645,0.997705,0.979344,0.597777,0.887229,0.401068,0.853039,0.795941,0.912891,0.474448,0.0856663,0.595466,0.694773,0.769375,0.515388,0.338266,0.461505,0.884761,0.377563,0.403462,0.561258,0.170815,0.574801,0.555874,0.561678,0.619368,0.169605,0.559972,0.920965,0.941551,0.555247,0.513552,0.1998,0.446686,0.0501708,0.652042,0.402909,0.376169,0.851891,0.734627,0.354125,0.7858,0.977519,0.276134,0.478428,0.030026,0.105494,0.0225888,0.689519,0.237879,0.307022,0.289593,0.570845,0.480239,0.788599,0.421143,0.952808,0.430921,0.90049,0.040571,0.57115,0.840535,0.195535,0.340676,0.594274,0.528928,0.872417,0.608331,0.167437,0.559373,0.614399,0.498215,0.284198,0.526649,0.676202,0.034789,0.89789,0.0872564,0.951566,0.417822,0.486176,0.010084,0.429765,0.656709,0.778446,0.239918,0.857604,0.785219,0.159598,0.494905,0.385192,0.22488,0.0154873,0.91417,0.556066,0.994234,0.986583,0.287148,0.223373,0.942933,0.063467,0.597968,0.905258,0.221324,0.0113501,0.122177,0.301686,0.528332,0.734097,0.757443,0.80616,0.364933,0.965103,0.202006,0.918237,0.839297,0.328397,0.480084,0.585892,0.933206,0.243773,0.416349,0.638938,0.443626,0.318785,0.173324,0.465488,0.341891,0.713664,0.991349,0.391077,0.0430955,0.44781,0.741045,0.597803,0.169451,0.289864,0.766692,0.896864,0.605476,0.557143,0.741932,0.544243,0.594619,0.733123,0.648949,0.893881,0.442216,0.161588,0.784589,0.00923681,0.895,0.0102432,0.999025,0.218912,0.245513,0.881403,0.853658,0.718393,0.592127,0.481809,0.359451,0.0192069,0.201483,0.0364876,0.700422,0.462802,0.359257,0.301102,0.022534,0.785549,0.988818,0.478527,0.650421,0.915759,0.937138,0.14187,0.115577,0.0285271,0.968828,0.228736,0.306831,0.116749,0.194232,0.633908,0.534642,0.478078,0.631094,0.349326,0.780248,0.193875,0.44373,0.825215,0.816552,0.505853,0.466256,0.213781,0.179061,0.863957,0.0412563,0.687995,0.776373,0.510298,0.613417,0.233518,0.00603271,0.434101,0.519884,0.660355,0.318046,0.731198,0.662671,0.0431663,0.975763,0.242213,0.785859,0.182437,0.86841,0.101554,0.864977,0.260731,0.419889,0.925197,0.860794,0.33771,0.530301,0.264041,0.199355,0.172876,0.228222,0.326081,0.363394,0.743521,0.917509,0.530625,0.382588,0.179407,0.889137,0.671019,0.0996435,0.591102,0.786178,0.365343,0.675833,0.0843065,0.513742,0.658089,0.67849,0.922819,0.847063,0.715522,0.226057,0.470391,0.940314,0.309973,0.335455,0.533676,0.485789,0.518545,0.142843,0.731438,0.501359,0.0643171,0.188233,0.516176,0.628993,0.546406,0.871585,0.410292,0.140863,0.566412,0.388211,0.595731,0.479712,0.264975,0.468581,0.323743,0.752852,0.143875,0.766115,0.771658,0.957497,0.881612,0.26262,0.0744302,0.212582,0.563593,0.361167,0.658263,0.699913,0.989418,0.930601,0.357273,0.791384,0.900343,0.564809,0.499712,0.0488546,0.657757,0.210076,0.0649194,0.548705,0.164643,0.851434,0.654592,0.760992,0.285256,0.187732,0.00295025,0.33248,0.208548,0.882132,0.29815,0.522506,0.788579,0.824973,0.512564,0.541621,0.840988,0.317528,0.877552,0.394335,0.0809707,0.633676,0.891733,0.685817,0.0873384,0.00836962,0.402581,0.329286,0.816807,0.45196,0.623492,0.200594,0.756283,0.419319,0.752861,0.906969,0.00378472,0.938162,0.237513,0.471441,0.493292,0.255216,0.910106,0.452063,0.571302,0.39215,0.64554,0.77327,0.36956,0.161567,0.855824,0.977452,0.833214,0.648922,0.371431,0.0907446,0.845517,0.96986,0.804761,0.0654601,0.663169,0.688285,0.271148,0.249916,0.557692,0.269017,0.350486,0.880485,0.722084,0.00621241,0.478379,0.264995,0.255572,0.139056,0.545956,0.679171,0.848512,0.847782,0.832523,0.962849,0.996614,0.401942,0.741631,0.894849,0.0211109,0.511246,0.842607,0.879646,0.825782,0.675242,0.486932,0.702608,0.109,0.557915,0.3885,0.304657,0.145731,0.4364,0.0300153,0.973242,0.924259,0.470684,0.219588,0.893558,0.593605,0.848297,0.471511,0.457936,0.334567,0.895187,0.613738,0.32124,0.742384,0.282979,0.36161,0.986992,0.841436,0.773419,0.597481,0.0593638,0.00778198,0.568721,0.270864,0.624374,0.503056,0.712332,0.139129,0.719536,0.934414,0.511262,0.38595,0.147868,0.835691,0.34753,0.445811,0.0084756,0.0839878,0.251488,0.265036,0.269772,0.544787,0.612676,0.645146,0.556379,0.0616814,0.966863,0.0601305,0.249768,0.0585823,0.668084,0.808717,0.655455,0.345116,0.126186,0.313091,0.530821,0.798349,0.733328,0.505734,0.942258,0.883016,0.341426,0.071614,0.373453,0.349271,0.542009,0.14422,0.0846708,0.875423,0.380482,0.0395375,0.970883,0.561707,0.10318,0.806638,0.864672,0.351973,0.586209,0.605749,0.95091,0.288383,0.897993,0.584656,0.899843,0.793305,0.879674,0.842783,0.654588,0.726115,0.891351,0.211259,0.22438,0.183428,0.174574,0.230851,0.25613,0.213659,0.307332,0.444596,0.131109,0.376679,0.270711,0.879056,0.742116,0.528158,0.823524,0.803845,0.532918,0.100991,0.772607,0.355322,0.612154,0.431042,0.196733,0.215862,0.17723,0.603061,0.918503,0.261875,0.173594,0.748566,0.29292,0.576422,0.816161,0.352985,0.798117,0.112135,0.670702,0.968801,0.206716,0.10626,0.95495,0.540808,0.643472,0.0468774,0.817528,0.0152792,0.408459,0.9334,0.488281,0.742083,0.239593,0.631543,0.795358,0.945254,0.894019,0.153313,0.802937,0.0923809,0.366854,0.47175,0.844931,0.173612,0.361665,0.803309,0.378662,0.916684,0.423073,0.0892395,0.553667,0.334958,0.860016,0.294017,0.572663,0.894163,0.860216,0.0199784,0.70618,0.951135,0.286894,0.246033,0.21873,0.182635,0.104209,0.541519,0.730096,0.882613,0.425629,0.194431,0.0685347,0.494834,0.511842,0.980722,0.977655,0.440752,0.374893,0.478412,0.743022,0.119576,0.182403,0.330167,0.570517,0.0846381,0.26142,0.388394,0.25152,0.533088,0.343107,0.449949,0.674217,0.653525,0.907017,0.738122,0.0501125,0.233206,0.861147,0.884044,0.169515,0.366432,0.119895,0.686614,0.121632,0.420101,0.217936,0.285588,0.769034,0.781979,0.341635,0.33082,0.657129,0.141736,0.331495,0.944719,0.587288,0.168034,0.825263,0.596738,0.202255,0.31344,0.80466,0.178476,0.000273526,0.656591,0.65746,0.0768701,0.0521852,0.576405,0.762551,0.14672,0.922609,0.498177,0.0763881,0.237728,0.47362,0.641838,0.548053,0.469424,0.407198,0.439412,0.210377,0.544667,0.350352,0.560387,0.465684,0.0279937,0.38278,0.624388,0.668716,0.305163,0.918852,0.166013,0.723751,0.759528,0.991086,0.337994,0.239307,0.142026,0.157309,0.384762,0.559482,0.463071,0.902086,0.381375,0.0822979,0.546167,0.28967,0.81583,0.634905,0.526982,0.834142,0.292052,0.731718,0.468526,0.726605,0.63594,0.720205,0.702816,0.259103,0.181154,0.00889742,0.936365,0.742983,0.151885,0.818365,0.664765,0.636767,0.1027,0.352163,0.00711399,0.0210921,0.339588,0.3813,0.335673,0.80373,0.349851,0.543522,0.828205,0.949854,0.365999,0.42399,0.181899,0.16793,0.432473,0.570363,0.983408,0.990675,0.650116,0.136625,0.208818,0.621168,0.868424,0.702763,0.325617,0.398018,0.763344,0.0875375,0.884439,0.944705,0.0592811,0.0691959,0.235045,0.103085,0.959074,0.334575,0.905063,0.737423,0.0614586,0.472757,0.364234,0.719763,0.423538,0.105936,0.319205,0.918951,0.238447,0.938815,0.686561,0.0276398,0.0788854,0.0388646,0.763732,0.627353,0.47146,0.985471,0.409648,0.792221,0.706326,0.60501,0.842856,0.758468,0.63522,0.567649,0.834409,0.863437,0.597365,0.999301,0.513306,0.725664,0.915584,0.752216,0.0920717,0.311666,0.122938,0.277246,0.356653,0.0696022,0.124527,0.0614403,0.202273,0.998481,0.986052,0.30449,0.544673,0.389545,0.516493,0.57515,0.724358,0.532682,0.830272,0.941334,0.255463,0.69213,0.656495,0.216236,0.810469,0.289518,0.465652,0.587069,0.45756,0.990313,0.100033,0.993178,0.960666,0.746502,0.898753,0.406297,0.489455,0.303241,0.658443,0.434397,0.0307189,0.968254,0.60765,0.928058,0.448632,0.290935,0.238952,0.536328,0.468297,0.952259,0.955157,0.852662,0.0135804,0.680843,0.101121,0.149818,0.588846,0.094624,0.553273,0.548442,0.105149,|0.208258,0.246959,0.546131,0.240089,0.323153,0.475077,0.952487,0.27375,0.320978,0.520058,0.177958,0.97231,0.195477,0.29551,0.675145,0.15631,0.926722,0.909884,0.00337499,0.900156,0.566184,0.221177,0.251837,0.19987,0.838817,0.950088,0.770613,0.177371,0.277337,0.213618,0.87984,0.785766,0.949503,0.235449,0.46762,0.504751,0.382615,0.620511,0.291456,0.149415,0.699807,0.684683,0.160319,0.10344,0.19071,0.705978,0.859925,0.206051,0.505773,0.0224898,0.447419,0.513788,0.086353,0.596643,0.987994,0.301262,0.703278,0.793815,0.931034,0.0850164,0.611814,0.805221,0.655365,0.380752,0.327934,0.202464,0.604474,0.47259,0.167678,0.879116,0.473625,0.678709,0.747535,0.14788,0.310575,0.286317,0.817075,0.0821122,0.0477155,0.967512,0.846322,0.488093,0.232369,0.928103,0.712027,0.307382,0.484084,0.446862,0.0367659,0.0523824,0.881882,0.0731671,0.869862,0.452998,0.0306911,0.00275683,0.828986,0.753451,0.20561,0.475788,0.849274,0.132236,0.739827,0.0399897,0.0812187,0.921337,0.746483,0.0981811,0.661255,0.415829,0.577591,0.0271935,0.699962,0.0760497,0.286204,0.34816,0.631787,0.0941798,0.334718,0.266762,0.955038,0.789063,0.55038,0.121188,0.676747,0.170463,0.693682,0.448126,0.927804,0.860635,0.888624,0.583617,0.307114,0.527698,0.660619,0.928425,0.916355,0.520741,0.117158,0.369195,0.472794,0.764844,0.0398371,0.466809,0.808833,0.257901,0.153171,0.929377,0.966316,0.545489,0.0689989,0.667618,0.958931,0.915251,0.308774,0.531447,0.304967,0.2994,0.613981,0.124984,0.842406,0.886125,0.415749,0.196743,0.957021,0.40069,0.295011,0.599879,0.62025,0.287929,0.211954,0.10561,0.0706681,0.745311,0.454872,0.656942,0.638132,0.648708,0.396224,0.977357,0.483972,0.968227,0.807949,0.361226,0.541683,0.537499,0.578328,0.950372,0.0813622,0.557558,0.36013,0.540747,0.658192,0.682244,0.636578,0.0222956,0.484682,0.357301,0.746569,0.514632,0.346187,0.904737,0.534535,0.978418,0.100374,0.396705,0.0724679,0.345233,0.616269,0.369442,0.907267,0.0192834,0.986765,0.578692,0.876362,0.837512,0.58309,0.882533,0.347213,0.983434,0.277533,0.0484493,0.891675,0.198752,0.696427,0.866393,0.366732,0.50763,0.246595,0.57006,0.439727,0.708868,0.0360895,0.871688,0.35872,0.29731,0.346417,0.474299,0.318352,0.676345,0.175966,0.286667,0.353887,0.588008,0.869316,0.163074,0.11518,0.877694,0.188863,0.794929,0.424364,0.465261,0.597671,0.378982,0.910869,0.861838,0.932926,0.533936,0.797275,0.240582,0.202632,0.195545,0.852717,0.108701,0.473295,0.819856,0.360643,0.26698,0.0278033,0.155819,0.687554,0.55691,0.318779,0.967908,0.66223,0.726965,0.570513,0.9142,0.793483,0.680303,0.539677,0.294806,0.0363513,0.507641,0.513882,0.72944,0.788578,0.902413,0.279249,0.39836,0.955652,0.844836,0.936424,0.0987536,0.0125207,0.652098,0.125818,0.19143,0.277652,0.406979,0.9503,0.421373,0.655663,0.288642,0.524857,0.261441,0.774796,0.950494,0.115771,0.525864,0.449874,0.857586,0.945278,0.515403,0.146836,0.612975,0.761887,0.200076,0.324286,0.501064,0.933601,0.716793,0.0460204,0.966462,0.768803,0.488991,0.626141,0.0737578,0.409608,0.2951,0.133879,0.273617,0.231692,0.973508,0.427617,0.23333,0.19484,0.497802,0.28098,0.435447,0.357222,0.453231,0.191779,0.743768,0.993529,0.87477,0.395784,0.222302,0.303219,0.115842,0.778587,0.940892,0.919672,0.237671,0.295899,0.108939,0.707944,0.563054,0.961224,0.845362,0.169734,0.855175,0.78667,0.124896,0.518616,0.364493,0.537404,0.257141,0.976567,0.683365,0.399997,0.0996351,0.510255,0.481893,0.929105,0.491355,0.0916861,0.698659,0.683103,0.565675,0.2583,0.803374,0.688583,0.463317,0.818452,0.0154657,0.370566,0.0613728,0.66488,0.975569,0.145111,0.161553,0.107657,0.257931,0.952466,0.578899,0.476444,0.147264,0.167994,0.300609,0.0658957,0.0668406,0.0458499,0.799305,0.550259,0.962533,0.989073,0.969965,0.240242,0.585227,0.520106,0.762767,0.715759,0.865436,0.16757,0.806382,0.49012,0.835763,0.19324,0.155532,0.847156,0.946889,0.634854,0.542698,0.750396,0.429345,0.0424685,0.920447,0.807676,0.258752,0.977909,0.528553,0.349102,0.38252,0.965637,0.510094,0.224315,0.12453,0.703792,0.836913,0.846571,0.955534,0.824975,0.840252,0.212101,0.59011,0.485096,0.432838,0.996619,0.342313,0.89123,0.209465,0.102139,0.836503,0.574363,0.753254,0.870056,0.300752,0.135619,0.0188287,0.232943,0.575186,0.95889,0.372439,0.432612,0.615443,0.0774883,0.191441,0.667955,0.621114,0.396048,0.485509,0.257366,0.0395871,0.0665553,0.836866,0.938313,0.81593,0.895571,0.181892,0.649831,0.94474,0.0697954,0.135301,0.864402,0.121693,0.27212,0.385994,0.888544,0.122499,0.215916,0.694476,0.403663,0.415247,0.799555,0.170708,0.911213,0.783004,0.318417,0.142902,0.320373,0.0798298,0.66107,0.861813,0.150332,0.652767,0.884386,0.449171,0.444651,0.843908,0.819239,0.252839,0.831837,0.353119,0.9858,0.245831,0.0436988,0.745386,0.699672,0.712326,0.287971,0.461844,0.0723649,0.514769,0.774259,0.919376,0.333255,0.778492,0.446953,0.834341,0.773902,0.00419056,0.484058,0.735314,0.166936,0.464841,0.740142,0.646956,0.451329,0.401845,0.372442,0.447023,0.669814,0.887626,0.358355,0.894795,0.0596897,0.651042,0.977497,0.289671,0.686733,0.470244,0.82438,0.654144,0.447136,0.297672,0.918148,0.34816,0.572137,0.837449,0.780716,0.506815,0.101477,0.827524,0.869011,0.454052,0.191315,0.75111,0.779616,0.492368,0.50227,0.587834,0.559191,0.82143,0.148135,0.330905,0.596669,0.0708685,0.217438,0.855312,0.757781,0.926453,0.167931,0.396193,0.692481,0.373124,0.394431,0.720594,0.0947307,0.907755,0.787398,0.224407,0.0281029,0.761048,0.415094,0.938284,0.980383,0.0942002,0.520565,0.999159,0.244878,0.949996,0.84439,0.0471761,0.923465,0.551895,0.230788,0.554095,0.699228,0.34426,0.624918,0.502326,0.471574,0.0300238,0.995738,0.584205,0.0238907,0.826564,0.791664,0.381311,0.922669,0.467229,0.0226236,0.293746,0.16127,0.56256,0.0840821,0.833921,0.0801495,0.9656,0.390551,0.812403,0.361359,0.927999,0.105287,0.567739,0.177453,0.199009,0.763842,0.669396,0.0794148,0.705951,0.375127,0.381828,0.200954,0.455973,0.0330638,0.0695277,0.837025,0.775304,0.744977,0.575858,0.576713,0.337078,0.575773,0.533665,0.440654,0.593118,0.436815,0.765785,0.19178,0.864249,0.0109153,0.0178524,0.750896,0.958166,0.250783,0.629016,0.272544,0.0541503,0.891565,0.568471,0.275089,0.966642,0.525291,0.797765,0.721037,0.286802,0.0245783,0.969289,0.84454,0.900051,0.205728,0.553915,0.195545,0.327998,0.345545,0.853705,0.32155,0.451887,0.542314,0.460844,0.403499,0.957134,0.492243,0.240871,0.559248,0.0325876,0.280997,0.254747,0.499199,0.896008,0.9209,0.6888,0.998625,0.104225,0.912606,0.932582,0.411895,0.348011,0.378201,0.494099,0.430879,0.571995,0.786643,0.932214,0.87717,0.980986,0.06208,0.975123,0.427088,0.831481,0.517223,0.690205,0.223518,0.992896,0.0962432,0.48359,0.507242,0.215667,0.341125,0.731839,0.0261724,0.847382,0.609681,0.85319,0.959029,0.629442,0.685302,0.583302,0.355217,0.0773968,0.883405,0.367283,0.473187,0.285941,0.801253,0.317766,0.170393,0.515731,0.827136,0.938667,0.296094,0.117163,0.218877,0.000870585,0.168476,0.182305,0.0741745,0.558529,0.838031,0.345101,0.7708,0.0551723,0.10274,0.998368,0.400461,0.323468,0.655066,0.126608,0.223631,0.836655,0.0860875,0.0313039,0.965712,0.706605,0.209945,0.120167,0.802403,0.453703,0.656174,0.0763861,0.142898,0.898629,0.979997,0.141592,0.703551,0.0287691,0.053283,0.163829,0.202056,0.97032,0.878434,0.536116,0.574497,0.483055,0.920557,0.782278,0.0876575,0.615365,0.829716,0.255311,0.80609,0.776067,0.890825,0.994815,0.699476,0.528138,0.167319,0.736791,0.992769,0.402912,0.724698,0.777719,0.859779,0.260226,0.647736,0.189444,0.308306,0.932706,0.513532,0.372692,0.00102127,0.732093,0.0238935,0.772674,0.790419,0.598177,0.951538,0.716456,0.313718,0.974539,0.456124,0.232687,0.488956,0.226277,0.905154,0.516677,0.691396,0.657221,0.419218,0.879592,0.652399,0.490364,0.414927,0.719192,0.131571,0.869305,0.497939,0.436931,0.657056,0.308487,0.276364,0.483504,0.336077,0.592084,0.169761,0.344365,0.889363,0.279781,0.857249,0.305203,0.806578,0.897403,0.693819,0.934144,0.749938,0.175695,0.540073,0.470691,0.740378,0.623376,0.668829,0.599858,0.281954,0.4264,0.635178,0.950472,0.396549,0.806221,0.471485,0.00841635,0.933221,0.0994263,0.225079,0.624667,0.238511,0.931112,0.975503,0.451037,0.978247,0.865544,0.46448,0.34862,0.355614,0.88553,0.941524,0.0876241,0.482257,0.475696,0.521953,0.819821,0.0633699,0.827427,0.111059,0.943124,0.0882034,0.637321,0.210978,0.48353,0.262535,0.031629,0.943376,0.195006,0.551716,0.978546,0.124307,0.71205,0.692143,0.332083,0.917156,0.124172,0.926988,0.029214,0.0263661,0.484648,0.0520293,0.466237,0.0309278,0.777441,0.223198,0.279159,0.0333551,0.323335,0.419657,0.479242,0.803819,0.554549,0.454506,0.942585,0.666316,0.135111,0.275035,0.393248,0.91629,0.68246,0.649218,0.515866,0.569072,0.015457,0.777081,0.123669,0.853431,0.880671,0.74187,0.464607,0.921499,0.128628,0.0206407,0.756712,0.294383,0.456384,0.72252,0.644507,0.865513,0.623669,0.154299,0.395494,0.727303,0.986772,0.197447,0.657506,0.237876,0.917226,0.699566,0.0478809,0.915155,0.237847,0.554292,0.353279,0.186519,0.738393,0.160005,0.120899,0.374194,0.935735,0.146173,0.291592,0.812995,0.955944,0.0615321,0.631624,0.478622,0.564182,0.962809,0.15277,0.605648,0.723461,0.966249,0.986006,|0.604334,0.965102,0.220287,0.292481,0.352853,0.0851587,0.446447,0.707539,0.763426,0.696072,0.935043,0.766598,0.21042,0.851502,0.764969,0.0161555,0.452522,0.0926856,0.749717,0.490858,0.57543,0.713853,0.436764,0.456658,0.963731,0.0625682,0.740342,0.256142,0.647471,0.40695,0.676357,0.80378,0.256937,0.466277,0.50479,0.41975,0.979843,0.902042,0.628719,0.118699,0.656617,0.882106,0.597016,0.323693,0.986034,0.285114,0.592527,0.642291,0.22684,0.365547,0.67893,0.732269,0.0949239,0.571996,0.775403,0.489682,0.597898,0.343989,0.26816,0.759084,0.618345,0.0137353,0.487063,0.679716,0.707489,0.192181,0.219554,0.0229169,0.0341048,0.722481,0.953003,0.760721,0.818425,0.89203,0.187397,0.0305929,0.267286,0.295896,0.504015,0.595955,0.667547,0.41617,0.62812,0.211301,0.89345,0.503969,0.292834,0.837716,0.140552,0.760876,0.322295,0.560768,0.814891,0.820225,0.988777,0.122801,0.349772,0.338253,0.496794,0.351268,0.844381,0.403029,0.0247485,0.528794,0.280036,0.393085,0.495788,0.071684,0.852425,0.197181,0.0459336,0.414579,0.710021,0.816616,0.868827,0.0939739,0.299613,0.703669,0.764398,0.447989,0.716469,0.962226,0.737597,0.303221,0.938329,0.909837,0.378828,0.809639,0.513371,0.900624,0.392405,0.289843,0.283071,0.272773,0.311315,0.0732158,0.299831,0.14678,0.917884,0.281333,0.372706,0.78096,0.374233,0.292125,0.927256,0.846507,0.9888,0.828951,0.0901268,0.319557,0.561211,0.131383,0.269876,0.636405,0.470364,0.847138,0.255583,0.885452,0.786573,0.0153333,0.55282,0.775942,0.817645,0.661365,0.97172,0.989771,0.66038,0.646116,0.213077,0.491919,0.424624,0.384117,0.148837,0.322717,0.538183,0.269823,0.680312,0.786976,0.528178,0.379171,0.736062,0.0554832,0.27063,0.719934,0.632613,0.766118,0.953183,0.956667,0.211647,0.587242,0.0975277,0.729425,0.463545,0.635431,0.27608,0.490236,0.112459,0.839288,0.0926614,0.94618,0.86152,0.693835,0.178288,0.465534,0.684612,0.819661,0.631695,0.555658,0.15964,0.251904,0.233546,0.933381,0.497967,0.833518,0.0853015,0.614805,0.170425,0.601012,0.621614,0.579836,0.272345,0.562537,0.451073,0.930491,0.387536,0.803455,0.221537,0.566907,0.149195,0.0218413,0.765241,0.427684,0.587252,0.897848,0.42874,0.290658,0.775774,0.953014,0.795966,0.719618,0.931173,0.480982,0.833038,0.865273,0.747616,0.726627,0.963744,0.781416,0.398704,0.106123,0.0658365,0.118056,0.46105,0.891282,0.00783664,0.56736,0.427189,0.500343,0.109226,0.818599,0.242145,0.0645263,0.147039,0.310675,0.787795,0.349615,0.237252,0.614792,0.460679,0.51855,0.847503,0.0979292,0.14394,0.525773,0.354193,0.888557,0.43619,0.353393,0.269815,0.443404,0.0938411,0.167747,0.668784,0.574479,0.0358809,0.845994,0.301758,0.68265,0.812587,0.275352,0.953131,0.0915272,0.469416,0.463874,0.127454,0.808034,0.513099,0.211558,0.884465,0.711293,0.689911,0.667655,0.609134,0.277215,0.705243,0.454407,0.664178,0.204907,0.268673,0.594103,0.689622,0.852434,0.375919,0.429862,0.644205,0.235813,0.908854,0.126531,0.331991,0.246917,0.997547,0.751222,0.512919,0.363424,0.711654,0.624249,0.298462,0.919486,0.241102,0.171882,0.764202,0.617551,0.898128,0.981481,0.849829,0.972729,0.97709,0.64949,0.632105,0.718885,0.988556,0.0343834,0.150561,0.0958595,0.952427,0.895981,0.929511,0.0442334,0.677974,0.738991,0.35468,0.6549,0.647899,0.382451,0.425845,0.542294,0.154916,0.343905,0.0168424,0.753039,0.819341,0.268472,0.505068,0.351013,0.766106,0.135058,0.727414,0.38074,0.467522,0.389178,0.764879,0.622611,0.915261,0.0314889,0.467842,0.734065,0.488643,0.58324,0.107402,0.827055,0.599994,0.825226,0.120763,0.815175,0.24554,0.670258,0.769014,0.351898,0.737431,0.497721,0.085723,0.538757,0.307485,0.910087,0.693303,0.404267,0.846729,0.722164,0.281706,0.578372,0.372075,0.509692,0.0971348,0.749205,0.0922257,0.490154,0.170054,0.789053,0.519191,0.88408,0.71502,0.352929,0.249833,0.97388,0.260371,0.352717,0.0805551,0.229692,0.224936,0.000485122,0.0155044,0.517339,0.203873,0.564841,0.983036,0.651793,0.787335,0.458197,0.739065,0.234458,0.751109,0.545849,0.221239,0.6109,0.106716,0.122381,0.0691869,0.924093,0.441653,0.298821,0.241207,0.582594,0.89806,0.3934,0.635349,0.592679,0.380255,0.442692,0.512436,0.356413,0.86834,0.684509,0.751522,0.247879,0.747504,0.0592442,0.277258,0.891575,0.767179,0.738962,0.716674,0.764997,0.643376,0.193428,0.811884,0.396539,0.876947,0.841872,0.806595,0.662455,0.719551,0.816019,0.400964,0.556844,0.806187,0.502759,0.727004,0.382614,0.213274,0.211659,0.252394,0.527874,0.3798,0.494961,0.864589,0.46958,0.983423,0.0864453,0.773639,0.0236605,0.0188893,0.154849,0.733833,0.0639492,0.357105,0.99624,0.632688,0.179759,0.825056,0.950364,0.103752,0.303072,0.0173883,0.252602,0.799164,0.669039,0.242993,0.302574,0.861788,0.794943,0.334791,0.232598,0.97124,0.207357,0.291529,0.050319,0.0673931,0.480823,0.550901,0.524115,0.283436,0.888518,0.351744,0.48782,0.774298,0.175918,0.771031,0.889321,0.834506,0.196734,0.405905,0.627888,0.318887,0.848082,0.541847,0.630465,0.163164,0.225301,0.15479,0.0702254,0.306079,0.602642,0.826427,0.0608622,0.265726,0.210147,0.301776,0.451515,0.586349,0.917875,0.0491892,0.757966,0.165401,0.66073,0.0404291,0.769828,0.865957,0.783667,0.484983,0.845016,0.565152,0.278875,0.444126,0.734336,0.515476,0.291609,0.702478,0.484133,0.219956,0.190198,0.221918,0.0105182,0.326437,0.36245,0.459402,0.906258,0.0461389,0.55626,0.659103,0.27017,0.273566,0.995341,0.873598,0.598788,0.781731,0.445154,0.521204,0.991998,0.401341,0.734827,0.474128,0.0917068,0.541299,0.924026,0.410386,0.954087,0.489429,0.842946,0.347689,0.235666,0.820591,0.594935,0.967687,0.892349,0.404164,0.155403,0.169505,0.699905,0.835393,0.910627,0.143575,0.296554,0.545583,0.0927871,0.197879,0.665605,0.858714,0.254189,0.98142,0.359843,0.937406,0.664386,0.569161,0.722269,0.504552,0.675384,0.200233,0.981154,0.15305,0.397579,0.940851,0.810052,0.522365,0.263815,0.0400888,0.463017,0.0405343,0.114857,0.21311,0.536592,0.261793,0.262632,0.873509,0.979243,0.0939485,0.928308,0.866702,0.502113,0.614655,0.339814,0.659148,0.0501453,0.408717,0.624795,0.943971,0.00453246,0.380263,0.182362,0.808397,0.800296,0.164533,0.537847,0.195572,0.561737,0.749866,0.309715,0.447789,0.289077,0.426385,0.914413,0.733941,0.918858,0.600474,0.97571,0.17889,0.982867,0.185663,0.522337,0.0603648,0.146616,0.304052,0.78413,0.612828,0.300145,0.0854072,0.534828,0.690686,0.481009,0.154022,0.679764,0.448737,0.921701,0.0726635,0.648145,0.432707,0.667366,0.198295,0.900581,0.309519,0.391451,0.278183,0.295905,0.692992,0.974946,0.302952,0.846426,0.684362,0.899116,0.610232,0.602545,0.601467,0.959,0.389182,0.430281,0.0905501,0.722268,0.844524,0.901154,0.0964214,0.275996,0.149016,0.778926,0.417529,0.993656,0.804707,0.23641,0.555074,0.521007,0.233025,0.24325,0.797082,0.0556667,0.176103,0.214908,0.468607,0.330299,0.176224,0.376791,0.662359,0.539462,0.310183,0.222951,0.594419,0.902607,0.239475,0.20586,0.828926,0.612823,0.757766,0.488069,0.466365,0.526753,0.470463,0.154044,0.620196,0.157399,0.767507,0.824227,0.382538,0.486987,0.770664,0.864498,0.0165973,0.616403,0.324295,0.069794,0.808574,0.167889,0.734461,0.965121,0.388051,0.624379,0.0887846,0.256355,0.934534,0.603935,0.92122,0.67268,0.0826361,0.715667,0.0864234,0.757489,0.861295,0.147408,0.0160429,0.684073,0.268339,0.267185,0.205943,0.477239,0.35866,0.0797181,0.661829,0.393957,0.338774,0.431133,0.026168,0.0216829,0.257179,0.198746,0.621596,0.131497,0.850619,0.0398988,0.791455,0.57823,0.575186,0.670918,0.175088,0.533731,0.372208,0.54648,0.588427,0.581553,0.535315,0.359958,0.345779,0.590233,0.182881,0.858953,0.590859,0.889454,0.218751,0.369591,0.752482,0.322463,0.431266,0.593352,0.959417,0.566923,0.796995,0.496347,0.378443,0.999806,0.886034,0.784871,0.596069,0.414913,0.733203,0.955264,0.632195,0.467902,0.641092,0.0936294,0.331343,0.225722,0.052152,0.753921,0.797637,0.541375,0.272816,0.305447,0.175315,0.733341,0.370619,0.838272,0.300018,0.336021,0.398599,0.0391279,0.311512,0.247486,0.739832,0.0332078,0.420282,0.648648,0.732659,0.843887,0.055425,0.180423,0.306534,0.967318,0.0138135,0.871232,0.399299,0.378149,0.109892,0.140064,0.333649,0.947268,0.316631,0.598933,0.492516,0.935724,0.524885,0.267789,0.474584,0.131851,0.313054,0.544201,0.305511,0.569105,0.719739,0.287281,0.0194634,0.118774,0.336115,0.0326262,0.582647,0.369308,0.932323,0.424256,0.474997,0.929401,0.571041,0.00534254,0.180197,0.926194,0.365019,0.731554,0.541523,0.92472,0.0597873,0.459406,0.565995,0.692416,0.763015,0.594514,0.946263,0.906387,0.180581,0.602474,0.0307836,0.325615,0.300426,0.471201,0.625403,0.807478,0.946409,0.447154,0.378298,0.468413,0.600563,0.416437,0.108774,0.881698,0.723474,0.841343,0.602771,0.0622895,0.807268,0.778514,0.721284,0.115522,0.611248,0.946556,0.56294,0.227224,0.678598,0.831342,0.233843,0.629301,0.707567,0.476688,0.535497,0.296253,0.125244,0.33822,0.317212,0.122479,0.486887,0.179393,0.756661,0.522784,0.438681,0.905461,0.704841,0.563296,0.130032,0.813556,0.525265,0.556697,0.466558,0.98306,0.190862,0.0627457,0.341141,0.998358,0.092374,0.336625,0.274446,0.872341,0.65967,0.276047,0.918227,0.160297,0.270773,0.0361398,0.269205,0.544657,0.147973,0.471383,0.133143,0.0397997,0.570748,0.997493,0.892048,0.761082,0.742232,0.724197,|0.692434,0.482395,0.143402,0.787394,0.0978894,0.502433,0.729333,0.906076,0.347317,0.686277,0.529904,0.934473,0.0987276,0.640983,0.748191,0.105339,0.500864,0.478257,0.360629,0.798023,0.0673174,0.171808,0.4976,0.969467,0.700571,0.863965,0.24816,0.187988,0.0254036,0.738817,0.665801,0.515811,0.802784,0.163167,0.871751,0.719543,0.638359,0.384925,0.686042,0.816775,0.383108,0.570713,0.625956,0.966867,0.212205,0.0801085,0.205977,0.877591,0.0619404,0.670205,0.0585061,0.616217,0.339372,0.449423,0.0158966,0.0713799,0.748385,0.580378,0.0105198,0.243821,0.946781,0.264108,0.258951,0.796028,0.306201,0.828464,0.435104,0.561971,0.976462,0.700207,0.0139085,0.303484,0.632215,0.977156,0.220588,0.173119,0.859852,0.0492189,0.294128,0.0282858,0.660822,0.558228,0.67195,0.933591,0.809766,0.69194,0.364209,0.925434,0.216643,0.724317,0.720791,0.912391,0.612776,0.470597,0.134178,0.720006,0.979145,0.0152788,0.485639,0.0211434,0.385881,0.0765835,0.167664,0.765146,0.0536661,0.525671,0.108707,0.273026,0.371195,0.977461,0.957203,0.912072,0.163898,0.737106,0.0935135,0.695516,0.0121703,0.194639,0.0201783,0.0610079,0.412188,0.733765,0.43605,0.670284,0.74396,0.371325,0.0239897,0.929179,0.908724,0.635194,0.618387,0.193438,0.0328071,0.27576,0.293563,0.851582,0.875089,0.872592,0.450091,0.153873,0.907864,0.0905079,0.203914,0.543083,0.563318,0.849436,0.792586,0.573736,0.911732,0.898751,0.449669,0.17083,0.929474,0.509021,0.79708,0.998917,0.872763,0.626797,0.891447,0.406445,0.167845,0.163365,0.550934,0.990528,0.523992,0.738876,0.267149,0.679895,0.612796,0.241308,0.1129,0.27137,0.583934,0.421967,0.530751,0.482614,0.755771,0.71196,0.465624,0.0132739,0.67014,0.438585,0.394804,0.188494,0.742539,0.409982,0.178642,0.306565,0.871666,0.480957,0.7397,0.537859,0.769998,0.911215,0.765794,0.253066,0.655344,0.488795,0.601536,0.438204,0.316415,0.959544,0.345408,0.0917212,0.386346,0.305355,0.691222,0.650656,0.324238,0.955113,0.144634,0.591323,0.0726359,0.262813,0.922853,0.528618,0.805305,0.250156,0.960779,0.525053,0.724377,0.759377,0.513024,0.204558,0.848662,0.076178,0.521137,0.414895,0.738231,0.290304,0.0826976,0.287023,0.462002,0.658091,0.156409,0.245119,0.707808,0.48443,0.018441,0.573257,0.72679,0.519268,0.687647,0.98899,0.304635,0.18433,0.797789,0.05022,0.221313,0.848674,0.816803,0.738248,0.406087,0.176608,0.419737,0.0238392,0.393442,0.2349,0.524526,0.288917,0.87144,0.952219,0.918238,0.0453481,0.156102,0.24953,0.938762,0.532349,0.0670343,0.297738,0.421002,0.983293,0.998713,0.10506,0.440527,0.785277,0.00468898,0.824923,0.826285,0.56778,0.409735,0.458537,0.0954915,0.948038,0.0496156,0.950267,0.0614463,0.301148,0.513677,0.432851,0.453616,0.308868,0.730335,0.549197,0.440211,0.473988,0.785708,0.723211,0.236751,0.389226,0.380194,0.412325,0.301462,0.315535,0.40402,0.275171,0.760951,0.712274,0.726508,0.876203,0.676451,0.462441,0.0718951,0.814995,0.166773,0.415089,0.0794539,0.489424,0.321079,0.200426,0.547729,0.422644,0.251215,0.114687,0.00973278,0.564383,0.259913,0.155168,0.60402,0.413468,0.960177,0.657186,0.79998,0.126075,0.0657856,0.172378,0.497314,0.0687669,0.860955,0.847576,0.524567,0.0397648,0.138958,0.191455,0.515642,0.928779,0.921394,0.704763,0.0831019,0.13487,0.728038,0.305549,0.660546,0.633017,0.641719,0.0514635,0.518174,0.20135,0.257046,0.835766,0.577899,0.0985398,0.337858,0.879911,0.307869,0.400126,0.522363,0.404745,0.452549,0.604461,0.772186,0.892004,0.425491,0.369669,0.887714,0.89534,0.0260511,0.126301,0.376981,0.485521,0.795901,0.713004,0.0100642,0.324396,0.794458,0.939065,0.180749,0.595695,0.669228,0.503194,0.172447,0.187238,0.239014,0.499891,0.792431,0.171895,0.85397,0.688465,0.372122,0.583777,0.269745,0.357286,0.752094,0.388342,0.123798,0.27057,0.685238,0.932927,0.995406,0.28543,0.302767,0.0348213,0.404975,0.579562,0.309538,0.848289,0.731826,0.62483,0.590878,0.321453,0.689899,0.107076,0.736384,0.101965,0.422659,0.389242,0.631433,0.752613,0.168484,0.587251,0.139993,0.598228,0.861502,0.775126,0.771792,0.304189,0.553093,0.727181,0.251314,0.146059,0.985197,0.0899463,0.0124403,0.751893,0.181182,0.31209,0.585616,0.305315,0.172861,0.463623,0.342516,0.0425962,0.948635,0.578627,0.776936,0.0899925,0.333274,0.751158,0.0824882,0.0129687,0.420792,0.603541,0.306064,0.716772,0.292438,0.350909,0.2142,0.460045,0.4489,0.238517,0.572539,0.983691,0.893557,0.6431,0.63452,0.611234,0.723573,0.316413,0.759513,0.580486,0.763018,0.370612,0.49366,0.41838,0.787517,0.792227,0.324424,0.533933,0.873051,0.427912,0.560146,0.193175,0.98752,0.0932318,0.84051,0.452499,0.784879,0.587509,0.924286,0.794082,0.635785,0.0790963,0.223748,0.244298,0.650098,0.632067,0.0224221,0.815979,0.165963,0.668216,0.205776,0.410223,0.994975,0.242592,0.210676,0.173863,0.933857,0.206296,0.36276,0.234737,0.205408,0.296999,0.0786464,0.331398,0.329344,0.683942,0.158372,0.964985,0.742239,0.957069,0.549676,0.0830165,0.296841,0.608953,0.813288,0.32478,0.932985,0.452725,0.773117,0.164092,0.562131,0.700336,0.472118,0.327202,0.268954,0.173531,0.562666,0.573206,0.474242,0.453285,0.147582,0.571877,0.879592,0.64542,0.902097,0.289397,0.602136,0.476614,0.22678,0.486084,0.636164,0.807648,0.155948,0.952393,0.353549,0.540589,0.937545,0.540047,0.324232,0.590639,0.983514,0.596323,0.380803,0.511476,0.613334,0.481018,0.788828,0.642242,0.883686,0.258355,0.171847,0.46874,0.202266,0.750933,0.099066,0.786839,0.42253,0.743952,0.693343,0.93598,0.277923,0.104745,0.341044,0.472556,0.88684,0.397306,0.749464,0.501881,0.732846,0.943277,0.308172,0.868742,0.378161,0.219581,0.0549684,0.551506,0.0933236,0.399525,0.747963,0.424969,0.801213,0.6759,0.00823969,0.480427,0.405818,0.732454,0.445978,0.327405,0.148998,0.257873,0.137164,0.430694,0.632783,0.924059,0.128081,0.728905,0.172011,0.387237,0.232289,0.836376,0.777534,0.839891,0.27539,0.653701,0.095567,0.612431,0.0859573,0.348924,0.110604,0.700899,0.046865,0.0963184,0.107914,0.126133,0.623045,0.403161,0.0553672,0.793797,0.69809,0.790335,0.0182197,0.871184,0.720763,0.420601,0.475735,0.0096063,0.442632,0.927359,0.191903,0.272382,0.753306,0.38402,0.399026,0.764425,0.671327,0.255984,0.579112,0.981301,0.690083,0.446503,0.162483,0.337017,0.196837,0.721919,0.427839,0.962713,0.929229,0.709933,0.158404,0.517354,0.11125,0.513421,0.590801,0.0776783,0.812386,0.551881,0.160093,0.222441,0.0350267,0.0205306,0.258931,0.0886886,0.492858,0.098347,0.825201,0.236945,0.215449,0.411805,0.248828,0.694061,0.13808,0.376546,0.4749,0.475644,0.821542,0.645408,0.196445,0.864753,0.668097,0.668219,0.406248,0.164434,0.622985,0.406421,0.749328,0.445187,0.794711,0.169266,0.0456131,0.660504,0.855649,0.317851,0.227155,0.634814,0.169844,0.106095,0.211644,0.966086,0.927941,0.712896,0.468149,0.0144308,0.399331,0.186936,0.101467,0.823675,0.219007,0.923761,0.277577,0.317958,0.681998,0.686404,0.539855,0.844807,0.303295,0.304384,0.806542,0.907962,0.0578219,0.0227137,0.703306,0.0856071,0.611832,0.39036,0.645433,0.926813,0.0937022,0.518389,0.287236,0.308271,0.183362,0.659707,0.373764,0.36131,0.239362,0.560122,0.127509,0.306377,0.020815,0.0612656,0.294,0.34607,0.630625,0.497117,0.534428,0.0859549,0.621568,0.422996,0.237857,0.634086,0.998866,0.632748,0.451618,0.145858,0.56945,0.278921,0.187805,0.189115,0.75127,0.716948,0.762501,0.292823,0.989299,0.979275,0.629814,0.594359,0.594226,0.964582,0.171896,0.580927,0.804739,0.81993,0.402909,0.383981,0.333406,0.953539,0.525249,0.738818,0.628349,0.396164,0.136311,0.605019,0.853897,0.898747,0.1288,0.999066,0.883891,0.00107354,0.114101,0.534895,0.35873,0.107589,0.386371,0.483543,0.0113051,0.563545,0.951935,0.812202,0.816701,0.973817,0.651125,0.876328,0.728478,0.101335,0.58596,0.770253,0.0547553,0.766348,0.984694,0.12805,0.257879,0.589927,0.169915,0.317492,0.643608,0.423205,0.299772,0.934626,0.581159,0.607465,0.620112,0.905465,0.300871,0.181773,0.706382,0.122961,0.491127,0.686282,0.373848,0.307662,0.363935,0.874629,0.0472766,0.369206,0.19692,0.577047,0.626939,0.431764,0.0443783,0.369374,0.329983,0.0890926,0.636778,0.918609,0.430254,0.0343955,0.983696,0.575273,0.89998,0.488348,0.0627149,0.709951,0.119884,0.731128,0.315342,0.395339,0.991615,0.0890468,0.850486,0.573196,0.544417,0.998231,0.4655,0.418891,0.114475,0.610281,0.667922,0.836168,0.61938,0.63922,0.125937,0.15261,0.655141,0.880553,0.930178,0.240304,0.566938,0.952158,0.147872,0.696161,0.771292,0.667539,0.197264,0.417382,0.636442,0.492605,0.0666168,0.919255,0.385724,0.885806,0.650478,0.45709,0.569904,0.131558,0.568173,0.228805,0.491065,0.57095,0.335766,0.287907,0.183498,0.833043,0.184617,0.698548,0.366918,0.132894,0.432035,0.12453,0.62549,0.322314,0.080843,0.541346,0.492396,0.919854,0.14511,0.406089,0.536,0.60292,0.552526,0.649881,0.677166,0.521562,0.175048,0.407133,0.741484,0.167901,0.681673,0.370615,0.560307,0.352116,0.467186,0.582909,0.728931,0.765237,0.537197,0.322771,0.0481145,0.827252,0.793312,0.749823,0.658364,0.237629,0.949682,0.941656,0.229399,0.563584,0.0806737,0.654895,0.706559,0.119622,0.390397,0.355062,0.701478,0.534892,0.164284,0.891034,0.805127,0.068606,0.83944,0.151919,0.529163,0.684051,0.451171,0.66461,0.919336,0.733367,0.696252,0.0491437,0.238358,0.736157,|0.589945,0.290046,0.195735,0.555712,0.08833,0.0590786,0.646456,0.642886,0.667003,0.528082,0.42006,0.048417,0.412974,0.414261,0.199968,0.732794,0.663993,0.766543,0.471482,0.990083,0.887317,0.399157,0.195439,0.538118,0.366515,0.583225,0.469895,0.87325,0.488811,0.733532,0.429562,0.882218,0.414381,0.235867,0.288942,0.334815,0.935066,0.548929,0.123336,0.0312368,0.711615,0.618637,0.276646,0.685947,0.305257,0.126622,0.327917,0.574849,0.55722,0.586378,0.0200477,0.387884,0.738175,0.586104,0.587579,0.857148,0.570666,0.501462,0.360135,0.870026,0.500487,0.265959,0.57773,0.0948904,0.906847,0.227336,0.70343,0.662912,0.571097,0.737484,0.77724,0.819274,0.713319,0.667438,0.50377,0.20235,0.88232,0.774866,0.266803,0.963618,0.671002,0.866392,0.483102,0.0630306,0.71781,0.907177,0.280138,0.862057,0.754944,0.0895701,0.67794,0.269323,0.377432,0.799817,0.879366,0.537051,0.00742859,0.897403,0.145122,0.208575,0.0593863,0.10214,0.394513,0.15208,0.040202,0.715216,0.595365,0.673637,0.895069,0.341797,0.152925,0.897409,0.274279,0.848053,0.0644047,0.729303,0.868896,0.910587,0.515821,0.632584,0.851335,0.258104,0.352111,0.177274,0.70232,0.737334,0.430656,0.749845,0.863903,0.233517,0.733981,0.371008,0.975297,0.870963,0.763083,0.562025,0.304713,0.416079,0.407692,0.868351,0.264789,0.804091,0.87852,0.444994,0.908429,0.971524,0.76629,0.392506,0.464882,0.650578,0.0882202,0.179222,0.329383,0.847509,0.129849,0.218921,0.296277,0.760338,0.888701,0.0259968,0.327359,0.577259,0.378308,0.401789,0.120867,0.341293,0.321578,0.75214,0.206553,0.797087,0.195436,0.971858,0.37749,0.663695,0.137486,0.903814,0.0120689,0.897624,0.895493,0.515548,0.666743,0.267649,0.298801,0.281476,0.982585,0.735476,0.217991,0.999188,0.982674,0.494373,0.0321844,0.768232,0.71895,0.609929,0.0627497,0.32184,0.157634,0.185912,0.850335,0.356916,0.504957,0.436231,0.24257,0.899038,0.928822,0.282514,0.656695,0.826704,0.215644,0.681807,0.184057,0.433118,0.391794,0.389367,0.469945,0.452917,0.68744,0.0169839,0.670073,0.602121,0.884957,0.679147,0.728153,0.690544,0.611349,0.656645,0.144725,0.820789,0.353895,0.178887,0.695444,0.699228,0.697388,0.958301,0.843388,0.508538,0.438952,0.245246,0.335696,0.195175,0.981813,0.125074,0.645009,0.89487,0.949335,0.449104,0.991358,0.790849,0.34009,0.732565,0.803962,0.62431,0.185156,0.0594099,0.846224,0.927175,0.837572,0.363922,0.160493,0.000363052,0.599502,0.817166,0.18722,0.135641,0.0274881,0.622972,0.625836,0.0599132,0.223138,0.636506,0.46389,0.239819,0.223129,0.177168,0.291499,0.621712,0.955624,0.394526,0.0798725,0.255626,0.910252,0.71911,0.466655,0.0172253,0.823074,0.504802,0.313165,0.287579,0.910353,0.282064,0.503891,0.187715,0.975549,0.610249,0.481291,0.233018,0.433864,0.524951,0.947241,0.0762771,0.185231,0.494828,0.398394,0.242831,0.186377,0.193666,0.302449,0.976038,0.346751,0.146457,0.546285,0.99173,0.136266,0.0807835,0.38851,0.529078,0.773907,0.96827,0.0288804,0.878611,0.363847,0.537761,0.824736,0.776704,0.923808,0.652638,0.494808,0.862933,0.160787,0.859058,0.139067,0.888061,0.17509,0.988444,0.0133215,0.741681,0.246944,0.585667,0.929136,0.22217,0.381612,0.255065,0.763717,0.86837,0.283895,0.701843,0.572495,0.500018,0.828766,0.367419,0.102182,0.442831,0.116651,0.878157,0.226499,0.0778241,0.911361,0.647864,0.555866,0.725155,0.0966544,0.968493,0.291316,0.0639244,0.47379,0.0766009,0.811907,0.487681,0.642927,0.199722,0.927657,0.154982,0.951562,0.87355,0.24021,0.869134,0.199644,0.696844,0.31178,0.750849,0.204278,0.0726458,0.418146,0.81043,0.944834,0.656715,0.273011,0.957485,0.917452,0.54059,0.949291,0.904065,0.206289,0.317597,0.992536,0.346469,0.276685,0.583969,0.528808,0.780811,0.325226,0.464914,0.00519353,0.161998,0.869405,0.166141,0.521602,0.417805,0.067001,0.832799,0.783596,0.324158,0.118876,0.410301,0.0814514,0.128816,0.177762,0.456285,0.762511,0.451267,0.288573,0.598615,0.973755,0.394121,0.650555,0.851294,0.275885,0.170208,0.461796,0.59663,0.548347,0.55914,0.348062,0.135265,0.532957,0.755692,0.236444,0.222912,0.730579,0.559961,0.198994,0.866812,0.557972,0.541684,0.745423,0.322749,0.659514,0.919365,0.245082,0.825624,0.244245,0.477615,0.921728,0.315768,0.44482,0.890129,0.594913,0.235109,0.473061,0.670841,0.383116,0.673751,0.949061,0.252574,0.633127,0.0881005,0.0386213,0.215492,0.708164,0.97769,0.973898,0.218149,0.863541,0.934146,0.746839,0.31261,0.113894,0.534999,0.470135,0.205825,0.267238,0.185613,0.35088,0.0165603,0.248906,0.193031,0.556753,0.277149,0.0287278,0.599807,0.736389,0.412236,0.241419,0.17669,0.532374,0.914912,0.766347,0.134084,0.281099,0.591613,0.906212,0.611402,0.0438278,0.591239,0.756017,0.0250905,0.556428,0.229904,0.933013,0.989607,0.952239,0.664993,0.377465,0.980261,0.282034,0.67697,0.632699,0.8042,0.165097,0.390419,0.266913,0.547791,0.488809,0.447135,0.689192,0.467857,0.529456,0.160043,0.153218,0.807095,0.517699,0.613627,0.93506,0.458974,0.321971,0.215076,0.398372,0.0199291,0.494597,0.97877,0.519429,0.606818,0.587508,0.251883,0.448374,0.498239,0.579958,0.76643,0.196305,0.399413,0.53032,0.657559,0.422088,0.752051,0.336469,0.669918,0.989967,0.690938,0.748877,0.428974,0.519634,0.753751,0.969467,0.524052,0.124258,0.315897,0.370323,0.70287,0.270606,0.989,0.54327,0.24515,0.0338147,0.623173,0.806676,0.293096,0.0183589,0.0951862,0.976523,0.0416694,0.0237135,0.989419,0.355082,0.52377,0.913196,0.847185,0.576173,0.793831,0.47652,0.87294,0.569299,0.493133,0.879431,0.862645,0.587722,0.908341,0.758533,0.912913,0.728103,0.996692,0.15411,0.830935,0.481502,0.132455,0.15747,0.7505,0.386124,0.482885,0.887327,0.169769,0.93788,0.971397,0.769951,0.934009,0.368991,0.684092,0.8205,0.237191,0.547576,0.116747,0.207967,0.736777,0.453278,0.455949,0.39493,0.57769,0.293846,0.273864,0.783994,0.639949,0.0776752,0.732359,0.787569,0.599618,0.223325,0.346601,0.325757,0.484646,0.279261,0.682833,0.262424,0.122717,0.268426,0.268365,0.502463,0.959504,0.515759,0.785887,0.241007,0.61855,0.263995,0.807577,0.606434,0.242402,0.94743,0.828914,0.342513,0.613004,0.344909,0.952852,0.132112,0.416503,0.286972,0.258323,0.598973,0.00490606,0.753528,0.367036,0.723138,0.659903,0.790997,0.0153089,0.148143,0.896637,0.00140458,0.458205,0.244764,0.873423,0.675454,0.137353,0.109575,0.860076,0.439966,0.125381,0.170272,0.609972,0.102921,0.736014,0.85278,0.345637,0.441051,0.795884,0.394332,0.919957,0.314543,0.191545,0.590738,0.405122,0.432296,0.851538,0.366123,0.861567,0.413282,0.867472,0.71867,0.647637,0.512464,0.0918546,0.156794,0.94712,0.537136,0.102461,0.0989221,0.394199,0.533602,0.568698,0.667063,0.133425,0.0858825,0.061475,0.138846,0.64272,0.932894,0.619435,0.294377,0.378077,0.801839,0.630608,0.0361033,0.188265,0.729666,0.943293,0.12847,0.455055,0.512968,0.304541,0.289942,0.384611,0.510009,0.521374,0.48344,0.86215,0.563513,0.0525157,0.904623,0.562576,0.841175,0.105493,0.203809,0.710471,0.731899,0.621028,0.593045,0.327468,0.257527,0.190494,0.196015,0.813892,0.611527,0.118517,0.305454,0.480307,0.360918,0.119357,0.609319,0.429676,0.0108331,0.450221,0.524173,0.88023,0.488258,0.00303698,0.965493,0.56584,0.878898,0.649909,0.46002,0.955128,0.661174,0.027633,0.413841,0.0230458,0.171185,0.676656,0.819034,0.062763,0.592252,0.819068,0.626379,0.853713,0.632542,0.12966,0.640509,0.620548,0.506241,0.175513,0.526404,0.415236,0.446528,0.806596,0.569069,0.0369109,0.888958,0.586508,0.599031,0.802701,0.961106,0.265847,0.254449,0.450951,0.584639,0.838021,0.760196,0.25457,0.234999,0.503719,0.677505,0.111367,0.566354,0.156859,0.220017,0.620087,0.20168,0.50418,0.801224,0.131151,0.18465,0.526227,0.847248,0.634338,0.858591,0.0892588,0.78056,0.115924,0.0968587,0.5378,0.530113,0.0416303,0.945746,0.82002,0.795262,0.360826,0.444361,0.476533,0.713484,0.420107,0.844169,0.624208,0.921313,0.378918,0.238139,0.284901,0.990244,0.598718,0.638022,0.275883,0.355933,0.803478,0.383815,0.93467,0.168079,0.44846,0.433961,0.201997,0.833312,0.735694,0.579955,0.00979149,0.630735,0.427565,0.501098,0.361965,0.686811,0.412252,0.893029,0.303105,0.981318,0.251815,0.905093,0.187677,0.871768,0.269227,0.354893,0.50488,0.454005,0.651218,0.0792511,0.462063,0.716864,0.236843,0.299103,0.460529,0.58836,0.662786,0.480876,0.758002,0.205514,0.782631,0.205658,0.177426,0.371033,0.737141,0.770121,0.603449,0.130629,0.611737,0.843173,0.26579,0.558927,0.524206,0.207078,0.645723,0.182275,0.0147614,0.535567,0.0463605,0.930083,0.354709,0.388208,0.53099,0.848467,0.0984216,0.512123,0.300496,0.670381,0.732656,0.305632,0.736822,0.872054,0.696286,0.779795,0.285664,0.675831,0.68486,0.418403,0.488779,0.596719,0.224663,0.616906,0.26247,0.737317,0.210298,0.647417,0.777133,0.77449,0.674754,0.547417,0.712351,0.286673,0.354244,0.262312,0.0281678,0.901814,0.274982,0.969346,0.561976,0.257359,0.400104,0.552246,0.871976,0.865893,0.18643,0.876116,0.641979,0.237655,0.105018,0.84654,0.829313,0.820821,0.717462,0.955029,0.263893,0.514225,0.367049,0.119999,0.432605,0.893314,0.733008,0.14601,0.625238,0.250318,0.634257,0.16504,0.510832,0.32746,0.251019,0.26244,0.77678,0.560013,0.0680329,0.8926,0.246854,0.11934,0.364064,0.0443038,0.294766,0.295009,0.979744,0.149793,0.975227,|0.881237,0.408024,0.576536,0.800483,0.575843,0.282281,0.149038,0.784646,0.889746,0.412788,0.473444,0.0848231,0.288573,0.391644,0.424874,0.818758,0.973248,0.11157,0.250885,0.769903,0.321573,0.748094,0.999751,0.0547473,0.696363,0.0890931,0.414107,0.0519149,0.344976,0.858558,0.391571,0.566233,0.0385041,0.166856,0.614947,0.641883,0.959581,0.476452,0.75054,0.227599,0.761029,0.612108,0.450493,0.43062,0.543635,0.378956,0.457462,0.926773,0.785587,0.103248,0.27519,0.768081,0.135932,0.0799748,0.515227,0.797932,0.330568,0.327905,0.813112,0.756163,0.991946,0.206232,0.379786,0.806062,0.606026,0.0649831,0.548949,0.0337612,0.413159,0.392726,0.137589,0.63763,0.594373,0.634733,0.700565,0.470249,0.26586,0.47076,0.0114073,0.418628,0.703052,0.858242,0.208101,0.915721,0.423465,0.477968,0.330307,0.314651,0.935439,0.0196824,0.607291,0.0216455,0.723008,0.116213,0.0945595,0.966612,0.230369,0.252696,0.151416,0.235513,0.336129,0.0483362,0.77402,0.805568,0.032186,0.017177,0.221935,0.688034,0.150455,0.229781,0.470903,0.906276,0.943055,0.783607,0.407397,0.202034,0.84483,0.251434,0.439413,0.328429,0.154538,0.421042,0.110665,0.187361,0.214767,0.981629,0.902422,0.724705,0.615178,0.957939,0.850089,0.351736,0.210913,0.435621,0.44538,0.40669,0.78907,0.425839,0.604311,0.826562,0.637179,0.738327,0.145939,0.194306,0.998177,0.62542,0.284734,0.488916,0.578029,0.32541,0.876234,0.418975,0.562528,0.549333,0.933209,0.143287,0.16553,0.773364,0.591671,0.147168,0.862398,0.863339,0.221531,0.301873,0.0868194,0.977321,0.930255,0.437324,0.5782,0.372431,0.331251,0.989872,0.281331,0.482848,0.582558,0.803949,0.794264,0.194197,0.507829,0.471048,0.851213,0.934847,0.805282,0.836087,0.468149,0.973818,0.765411,0.382156,0.440332,0.632272,0.437023,0.0589209,0.991095,0.390504,0.787371,0.0590241,0.170473,0.123993,0.933197,0.492362,0.523938,0.853312,0.723402,0.595136,0.791603,0.459653,0.781473,0.644333,0.152116,0.592758,0.141046,0.0677381,0.206964,0.545132,0.487145,0.519666,0.932386,0.161725,0.585724,0.314529,0.554709,0.268446,0.607671,0.57381,0.672113,0.521187,0.554357,0.196824,0.371138,0.161073,0.0470577,0.279953,0.880632,0.211582,0.962501,0.461551,0.221043,0.826127,0.298832,0.522707,0.0934075,0.194415,0.138725,0.933152,0.54749,0.208655,0.628861,0.215538,0.026714,0.0565074,0.908539,0.343668,0.298946,0.0384039,0.0189608,0.826148,0.00857848,0.18671,0.726619,0.411169,0.422408,0.528791,0.453855,0.0548084,0.175932,0.969328,0.718838,0.100407,0.271698,0.89501,0.592951,0.975182,0.36427,0.497854,0.95851,0.192278,0.0192094,0.470043,0.127462,0.152492,0.686062,0.426318,0.478694,0.662088,0.436937,0.926153,0.112704,0.279844,0.478705,0.67075,0.152869,0.416332,0.526961,0.55752,0.139756,0.391183,0.0685137,0.598137,0.328943,0.574751,0.00454402,0.632254,0.596606,0.251313,0.629123,0.00850439,0.0143986,0.890971,0.556192,0.310555,0.477794,0.0840231,0.558991,0.429131,0.809723,0.0831778,0.0666512,0.107777,0.380647,0.00247997,0.462053,0.079432,0.160283,0.700853,0.0251103,0.650522,0.481123,0.17647,0.0303195,0.702212,0.98873,0.386413,0.401022,0.015859,0.569333,0.716524,0.851692,0.9598,0.686661,0.302332,0.144652,0.745359,0.968073,0.541153,0.285877,0.427203,0.142927,0.920218,0.233094,0.0693359,0.231987,0.978636,0.20162,0.372956,0.865901,0.0860562,0.467808,0.970135,0.660671,0.530748,0.726482,0.877738,0.974945,0.87239,0.535081,0.388636,0.77707,0.374641,0.78613,0.350707,0.590796,0.334821,0.670756,0.434407,0.257305,0.834087,0.620402,0.695136,0.14524,0.902088,0.170721,0.877575,0.401697,0.219868,0.782654,0.36862,0.345636,0.998262,0.384969,0.935117,0.180485,0.413833,0.880301,0.854019,0.328312,0.878459,0.162073,0.00197202,0.58462,0.564927,0.889703,0.889429,0.492782,0.378042,0.656808,0.474727,0.29395,0.253376,0.999764,0.160297,0.3236,0.683119,0.591486,0.489949,0.585073,0.737031,0.184942,0.156246,0.257198,0.377905,0.0333368,0.665871,0.216724,0.698231,0.589779,0.415909,0.365676,0.794699,0.0983022,0.154613,0.645991,0.143662,0.194693,0.649236,0.831037,0.601542,0.785329,0.609142,0.262393,0.318911,0.201731,0.966729,0.245888,0.175422,0.634913,0.0706694,0.29505,0.784557,0.00881374,0.568318,0.361612,0.148744,0.526227,0.769046,0.571713,0.174314,0.190439,0.611802,0.796918,0.673424,0.566858,0.0942473,0.654264,0.79073,0.938122,0.29285,0.875666,0.555525,0.66626,0.186173,0.503313,0.389649,0.803398,0.279255,0.534097,0.7931,0.33113,0.275937,0.566191,0.612969,0.642654,0.519456,0.20319,0.130192,0.103707,0.786566,0.469896,0.183789,0.552777,0.442796,0.961367,0.343968,0.574895,0.979648,0.243474,0.924579,0.354917,0.282978,0.655748,0.174092,0.0403693,0.333435,0.477896,0.704961,0.287738,0.737042,0.201217,0.649462,0.971306,0.200244,0.023295,0.65304,0.693583,0.635018,0.210384,0.225713,0.834418,0.0717996,0.305906,0.831285,0.779448,0.112433,0.998445,0.295848,0.632498,0.536005,0.223147,0.295085,0.848577,0.390024,0.399765,0.969857,0.333001,0.133375,0.674923,0.731956,0.881943,0.344356,0.886455,0.931378,0.309343,0.247257,0.864022,0.024467,0.642776,0.190093,0.84338,0.825257,0.232647,0.820268,0.884132,0.264412,0.531619,0.263502,0.912996,0.201581,0.00859863,0.795901,0.823015,0.42959,0.32888,0.378505,0.577189,0.588499,0.368208,0.279793,0.801769,0.93703,0.117386,0.334266,0.901298,0.0710385,0.798724,0.95222,0.772229,0.901421,0.12892,0.569289,0.355386,0.641195,0.310154,0.219315,0.270056,0.405877,0.900095,0.0758413,0.76512,0.477263,0.891971,0.598206,0.669641,0.0651424,0.852118,0.196804,0.538637,0.319713,0.440853,0.982263,0.350601,0.421022,0.796697,0.899285,0.137185,0.560921,0.0667509,0.2768,0.281767,0.378234,0.490142,0.818909,0.403107,0.528009,0.447863,0.342031,0.137881,0.664718,0.250109,0.742506,0.779832,0.43672,0.810546,0.58073,0.215475,0.963399,0.483748,0.127358,0.0707892,0.451026,0.704681,0.371105,0.365917,0.889703,0.933317,0.149207,0.562392,0.244059,0.884138,0.949939,0.961136,0.901414,0.811938,0.173005,0.141188,0.378906,0.820114,0.755189,0.667785,0.78685,0.420296,0.23478,0.86511,0.852483,0.797907,0.525445,0.300068,0.966787,0.125242,0.96588,0.336071,0.673447,0.0611326,0.499738,0.237292,0.807487,0.825075,0.647858,0.402495,0.548663,0.835701,0.425962,0.257868,0.638404,0.676391,0.673407,0.406764,0.676933,0.606728,0.551077,0.817241,0.825956,0.283026,0.890074,0.687208,0.850437,0.278318,0.746586,0.729626,0.168054,0.221775,0.686005,0.0692653,0.00597101,0.214762,0.121653,0.173511,0.19353,0.124858,0.279632,0.980786,0.138751,0.649816,0.546163,0.809212,0.0173994,0.907182,0.0247834,0.999286,0.707977,0.756477,0.45062,0.862911,0.332271,0.235042,0.913984,0.214167,0.929529,0.319002,0.695019,0.314488,0.347095,0.98588,0.358902,0.986153,0.388492,0.270272,0.140165,0.956769,0.528156,0.132046,0.0346228,0.830698,0.658483,0.260004,0.303907,0.741403,0.858317,0.298238,0.747274,0.222629,0.779543,0.00773102,0.872952,0.0605649,0.777547,0.704867,0.804508,0.539564,0.481138,0.542867,0.935407,0.986537,0.255032,0.334736,0.234574,0.375149,0.209224,0.414605,0.841298,0.805628,0.698952,0.302407,0.669721,0.0660139,0.437542,0.911941,0.941837,0.491491,0.00641006,0.84562,0.756974,0.474192,0.154081,0.87917,0.20219,0.689756,0.185211,0.61064,0.175465,0.717718,0.403135,0.983642,0.323633,0.409564,0.824392,0.413966,0.505972,0.986462,0.637182,0.309211,0.478893,0.294214,0.180466,0.0576158,0.679682,0.48822,0.658138,0.4186,0.782943,0.569652,0.218002,0.562478,0.534957,0.942948,0.527786,0.441362,0.859375,0.0666649,0.336895,0.16811,0.989756,0.601351,0.344303,0.163349,0.454804,0.309483,0.588675,0.494338,0.435599,0.428797,0.821338,0.229151,0.0513658,0.613978,0.833986,0.0351681,0.172531,0.451631,0.520143,0.0800412,0.0531782,0.220403,0.886189,0.511636,0.880435,0.988882,0.530399,0.864605,0.749755,0.849243,0.614873,0.785413,0.456602,0.985849,0.469394,0.763448,0.957515,0.0525516,0.177637,0.198459,0.575129,0.529088,0.304327,0.454451,0.934172,0.946939,0.919646,0.739634,0.558024,0.793099,0.561758,0.879588,0.781378,0.429865,0.369588,0.990203,0.986051,0.642629,0.833233,0.299325,0.937104,0.797686,0.98329,0.964772,0.87494,0.98276,0.716919,0.914748,0.0321286,0.252875,0.861456,0.27834,0.59936,0.551109,0.998003,0.860626,0.949762,0.412221,0.987615,0.568336,0.276383,0.221273,0.224397,0.217432,0.393138,0.380898,0.476864,0.716954,0.9863,0.52805,0.310266,0.82025,0.0263773,0.0532793,0.818177,0.872158,0.571081,0.223321,0.724076,0.350422,0.300105,0.726619,0.537298,0.621748,0.0949944,0.334754,0.487526,0.367126,0.257729,0.143345,0.993597,0.412405,0.312876,0.506033,0.615681,0.880334,0.0275691,0.515474,0.932536,0.265773,0.426625,0.990814,0.744625,0.774826,0.219329,0.834464,0.641774,0.811594,0.971103,0.50168,0.374228,0.753591,0.974088,0.548069,0.895988,0.459699,0.999991,0.562026,0.296974,0.896367,0.237169,0.436115,0.185928,0.30085,0.817456,0.212669,0.875703,0.564744,0.882466,0.340069,0.105028,0.60486,0.913543,0.429652,0.807209,0.380708,0.128977,0.75259,0.571159,0.536453,0.820017,0.478293,0.443003,0.121701,0.496963,0.906349,0.258943,0.611815,0.11856,0.821459,0.482583,0.20079,0.910297,0.644277,0.316047,0.912214,0.0534971,0.37006,0.519478,0.304766,0.759983,0.510393,0.405348,0.92562,0.328502,0.542651,0.340086,0.133141,0.50034,0.59486,0.756354,|0.277445,0.204968,0.791182,0.884982,0.093808,0.357856,0.922696,0.61044,0.177878,0.938853,0.136551,0.212405,0.962195,0.499024,0.306399,0.226284,0.573633,0.428499,0.637556,0.217635,0.796776,0.219478,0.462414,0.0327463,0.649296,0.910119,0.922974,0.933548,0.449166,0.231915,0.845972,0.554499,0.124898,0.907579,0.00907511,0.829574,0.332651,0.695454,0.991677,0.137627,0.420868,0.301713,0.8941,0.632032,0.253207,0.275882,0.818202,0.719102,0.523926,0.880887,0.327951,0.602733,0.377829,0.390125,0.266146,0.937778,0.524928,0.509264,0.486848,0.992283,0.371591,0.0432881,0.972712,0.728993,0.280188,0.899538,0.128615,0.525994,0.542367,0.620232,0.574014,0.226766,0.501091,0.951316,0.36562,0.742358,0.105152,0.0623414,0.455977,0.0056594,0.519349,0.271337,0.121286,0.9318,0.820307,0.294544,0.0113051,0.724224,0.41176,0.717065,0.148821,0.204267,0.180869,0.964383,0.922602,0.996167,0.942127,0.0897382,0.224629,0.791538,0.959687,0.00648183,0.644009,0.166015,0.91693,0.317646,0.505157,0.967452,0.642684,0.117051,0.32774,0.920438,0.483122,0.808092,0.61942,0.0327216,0.448861,0.492182,0.334762,0.305857,0.395331,0.882303,0.0652128,0.00949723,0.83631,0.21011,0.216307,0.00569153,0.67163,0.995154,0.114493,0.999271,0.165677,0.853278,0.995152,0.212476,0.188906,0.917245,0.1551,0.811684,0.15224,0.4754,0.197276,0.879663,0.389979,0.178743,0.468067,0.0575369,0.021391,0.389292,0.861446,0.758196,0.54317,0.962837,0.0647807,0.721736,0.445859,0.576921,0.975606,0.852837,0.203506,0.0470654,0.546805,0.706757,0.253395,0.107015,0.601995,0.69106,0.905056,0.162724,0.377679,0.861871,0.858546,0.290795,0.119653,0.235684,0.342924,0.0920562,0.792888,0.77903,0.961988,0.517646,0.831616,0.460951,0.793109,0.293919,0.358936,0.639883,0.975508,0.754739,0.227961,0.638928,0.705761,0.576841,0.0334913,0.528594,0.0692299,0.29296,0.577056,0.250187,0.963538,0.120187,0.58715,0.0134413,0.347491,0.591332,0.44429,0.337462,0.707803,0.940231,0.447316,0.151648,0.727817,0.45262,0.933722,0.137342,0.032505,0.267622,0.221812,0.536907,0.638729,0.610827,0.535518,0.496608,0.278354,0.153003,0.326859,0.838285,0.0839396,0.658422,0.729357,0.307315,0.95254,0.236992,0.915529,0.408793,0.392241,0.824298,0.214018,0.800664,0.28165,0.00803411,0.861492,0.169202,0.534433,0.0443227,0.354577,0.947074,0.98628,0.183317,0.768654,0.730509,0.0413904,0.391581,0.407874,0.0231348,0.839133,0.974135,0.106019,0.517557,0.391693,0.644057,0.618783,0.927866,0.0853697,0.346036,0.293892,0.696626,0.998252,0.769972,0.945517,0.471356,0.0802941,0.132311,0.0531256,0.184593,0.875867,0.282354,0.148563,6.27637e-05,0.883556,0.0723588,0.770177,0.544646,0.712922,0.984291,0.775121,0.867991,0.107176,0.905459,0.896714,0.884072,0.340708,0.238819,0.573771,0.2613,0.442717,0.964787,0.934341,0.363148,0.831033,0.742337,0.569761,0.387418,0.960176,0.389726,0.513757,0.688381,0.51135,0.064168,0.0926053,0.818828,0.969138,0.0450244,0.366213,0.173384,0.252565,0.0743251,0.680426,0.16076,0.337551,0.687308,0.489687,0.74832,0.607344,0.857173,0.16753,0.108982,0.93276,0.73756,0.627079,0.639532,0.421841,0.715152,0.1193,0.944422,0.294405,0.758421,0.201322,0.969209,0.108005,0.834229,0.450445,0.997944,0.94784,0.294539,0.61424,0.785694,0.837249,0.275805,0.158865,0.252836,0.505756,0.238312,0.354028,0.877951,0.775907,0.616952,0.980361,0.59484,0.171264,0.921276,0.627925,0.836619,0.600835,0.223389,0.513628,0.557983,0.945298,0.449089,0.883569,0.0699156,0.517687,0.000199914,0.446983,0.647542,0.350483,0.926425,0.618822,0.72583,0.130628,0.129008,0.052043,0.022706,0.532238,0.0863845,0.789748,0.47279,0.0384222,0.718789,0.142824,0.157679,0.375851,0.998255,0.0783446,0.501406,0.32275,0.856852,0.728686,0.871276,0.692373,0.288651,0.275785,0.479941,0.227319,0.59491,0.779821,0.674413,0.528207,0.775561,0.400839,0.383732,0.753498,0.317086,0.730325,0.083404,0.138176,0.912204,0.964135,0.808644,0.653623,0.447801,0.595498,0.128275,0.325373,0.213298,0.766975,0.0919173,0.204172,0.698014,0.851696,0.739238,0.696977,0.645568,0.521563,0.463608,0.225007,0.725249,0.534267,0.0276457,0.0105788,0.147745,0.637739,0.68976,0.887514,0.696804,0.0084461,0.530052,0.418664,0.845504,0.905783,0.166964,0.996777,0.717224,0.767638,0.668304,0.74743,0.0813056,0.0713712,0.111548,0.699507,0.51161,0.308137,0.567204,0.202273,0.351818,0.0945148,0.00502765,0.547379,0.236103,0.801456,0.13836,0.513343,0.649676,0.985226,0.556103,0.862674,0.807489,0.439762,0.683881,0.801107,0.94725,0.430451,0.72075,0.55691,0.214113,0.0088644,0.343745,0.775013,0.776857,0.387462,0.51882,0.368393,0.771925,0.352513,0.145758,0.483083,0.477919,0.294857,0.521397,0.481386,0.628112,0.471937,0.023544,0.204103,0.726805,0.485528,0.731183,0.373966,0.0511273,0.935322,0.154399,0.756302,0.19508,0.17516,0.624034,0.482001,0.438701,0.631555,0.854127,0.209759,0.692084,0.468224,0.493503,0.528537,0.757161,0.50578,0.51153,0.619216,0.777951,0.0433615,0.311082,0.266152,0.711129,0.470337,0.111442,0.721107,0.951501,0.125023,0.0108964,0.662091,0.64487,0.864341,0.644626,0.993674,0.90869,0.273702,0.496199,0.609281,0.385936,0.501986,0.270064,0.178484,0.255438,0.261387,0.842969,0.817294,0.444913,0.338791,0.0160822,0.467322,0.858269,0.833577,0.708169,0.02947,0.328332,0.67456,0.840074,0.338701,0.441257,0.976091,0.569745,0.189598,0.928127,0.591715,0.0266292,0.128585,0.177312,0.450247,0.103065,0.0297468,0.294368,0.996255,0.910313,0.251429,0.810084,0.567915,0.0427104,0.213149,0.147519,0.447332,0.0727065,0.107391,0.0314434,0.759331,0.65426,0.0674313,0.570728,0.606933,0.7873,0.0915534,0.766615,0.213565,0.9744,0.583659,0.105039,0.741773,0.485535,0.35103,0.815578,0.879495,0.943196,0.716344,0.0665656,0.191664,0.322824,0.325469,0.378249,0.701339,0.115506,0.696343,0.161056,0.813253,0.862893,0.749923,0.156955,0.435854,0.827739,0.446151,0.203434,0.942861,0.834103,0.276853,0.576657,0.433805,0.206659,0.778377,0.11908,0.645034,0.208689,0.305661,0.515338,0.527377,0.291517,0.2899,0.87343,0.941047,0.208756,0.0602052,0.498842,0.21576,0.268353,0.786531,0.00788927,0.553058,0.921377,0.0701962,0.553723,0.776314,0.152734,0.832718,0.307547,0.204681,0.799901,0.211215,0.136876,0.142242,0.845706,0.370967,0.515111,0.84012,0.639898,0.767661,0.902131,0.375298,0.52605,0.0809851,0.0593353,0.104494,0.3261,0.724348,0.377177,0.826301,0.822711,0.480419,0.696626,0.364849,0.826619,0.447463,0.537839,0.361632,0.0926555,0.645931,0.0929439,0.318256,0.223765,0.541308,0.752392,0.233234,0.253839,0.454324,0.884843,0.0896124,0.0397274,0.76012,0.943183,0.537875,0.413465,0.58165,0.294395,0.499625,0.188835,0.128161,0.124171,0.723419,0.6544,0.83072,0.816956,0.609386,0.699154,0.522109,0.564597,0.354501,0.735601,0.149154,0.0893079,0.336927,0.652245,0.908381,0.458579,0.0382057,0.579865,0.939528,0.441056,0.569968,0.111173,0.308463,0.300495,0.7199,0.595423,0.0209506,0.45749,0.204983,0.914894,0.849469,0.473072,0.0233132,0.126726,0.869043,0.972209,0.229392,0.214496,0.9812,0.941704,0.396836,0.674803,0.0856111,0.376933,0.946615,0.0134576,0.431056,0.0579622,0.171553,0.404065,0.340525,0.512918,0.392965,0.629562,0.516407,0.920006,0.053546,0.420382,0.28559,0.253211,0.83407,0.728031,0.142025,0.0601282,0.47567,0.0116911,0.652396,0.978251,0.437142,0.0204426,0.123627,0.957067,0.898499,0.808128,0.899046,0.762358,0.043046,0.787525,0.831638,0.341688,0.966409,0.264456,0.622266,0.941564,0.594377,0.00425339,0.905646,0.337914,0.788493,0.464266,0.560559,0.545515,0.925684,0.542838,0.0483927,0.564771,0.548223,0.560898,0.273379,0.994362,0.943821,0.703248,0.0646764,0.0618003,0.801518,0.782825,0.447295,0.742694,0.328784,0.619044,0.0646604,0.304412,0.276177,0.816242,0.507255,0.0844964,0.942163,0.940805,0.436013,0.0873049,0.562859,0.200421,0.906811,0.413392,0.402247,0.910242,0.781329,0.619355,0.676584,0.973741,0.209161,0.98695,0.810687,0.120431,0.452672,0.75375,0.783358,0.998808,0.0851564,0.47381,0.358515,0.00229818,0.793495,0.351584,0.983528,0.960449,0.305698,0.907342,0.395131,0.861097,0.996176,0.95892,0.357593,0.389979,0.11724,0.604823,0.035686,0.356312,0.990451,0.391405,0.652165,0.356342,0.471936,0.751578,0.376649,0.49944,0.779449,0.955743,0.330244,0.693103,0.382557,0.322465,0.304444,0.222456,0.810264,0.0402023,0.995425,0.239096,0.157934,0.0608081,0.492441,0.769513,0.324794,0.347681,0.583072,0.839025,0.0208766,0.631732,0.482213,0.460157,0.109302,0.493936,0.0389122,0.228826,0.130675,0.287306,0.141908,0.481297,0.934775,0.380128,0.457882,0.423097,0.167694,0.604315,0.938187,0.0139974,0.854651,0.248276,0.167218,0.693453,0.592987,0.0690542,0.457097,0.876231,0.646926,0.968368,0.290547,0.621487,0.826019,0.988708,0.737241,0.868289,0.672597,0.371766,0.419547,0.836702,0.522908,0.532173,0.298039,0.912126,0.221528,0.242456,0.957023,0.53663,0.856443,0.434879,0.716251,0.947372,0.136036,0.0147114,0.953469,0.0187714,0.475299,0.635915,0.468075,0.0797746,0.690303,0.997082,0.566798,0.797688,0.0395555,0.899298,0.0319845,0.331994,0.256815,0.469089,0.739305,0.0783151,0.54724,0.586706,0.847268,0.415926,0.505127,0.0795777,0.513529,0.482614,0.968698,0.0130247,0.820125,0.0634073,0.20304,0.500293,0.823275,0.706107,0.339551,0.714083,0.611369,0.589453,0.366178,0.858107,0.62958,0.888888,0.644004,0.424647,0.394571,0.166095,|0.513921,0.498751,0.211582,0.622847,0.478397,0.586227,0.113253,0.423412,0.0265349,0.791876,0.333416,0.389069,0.315372,0.804769,0.87744,0.648435,0.675442,0.148531,0.224378,0.0304979,0.160851,0.797023,0.956212,0.65297,0.718483,0.397437,0.342707,0.134412,0.806939,0.439179,0.949395,0.422363,0.063046,0.578301,0.562933,0.174105,0.593003,0.942848,0.852043,0.627604,0.961342,0.69561,0.771547,0.527756,0.411734,0.365041,0.976966,0.642257,0.691284,0.480332,0.561231,0.230279,0.925329,0.516328,0.491664,0.865831,0.161354,0.737848,0.0405484,0.970442,0.550356,0.999675,0.272328,0.297579,0.731658,0.368221,0.670549,0.29138,0.764306,0.468421,0.427503,0.996762,0.396431,0.854138,0.460725,0.256404,0.806507,0.829532,0.908112,0.0407848,0.609034,0.286518,0.31389,0.361303,0.793904,0.114995,0.869619,0.58022,0.35995,0.100561,0.0502517,0.422443,0.0451444,0.281404,0.753604,0.856303,0.98231,0.330112,0.883081,0.420276,0.720403,0.813118,0.658872,0.210042,0.819083,0.23326,0.467735,0.6738,0.0333575,0.170136,0.255203,0.28238,0.532273,0.0758571,0.341871,0.15062,0.376399,0.473271,0.636838,0.365622,0.156855,0.13844,0.639152,0.618169,0.922047,0.0302714,0.150904,0.0804766,0.415444,0.758668,0.226874,0.91649,0.932426,0.887074,0.673213,0.47094,0.354358,0.725223,0.989188,0.696849,0.781013,0.0178084,0.799836,0.206571,0.341887,0.366406,0.430365,0.509457,0.217262,0.961766,0.778025,0.343532,0.126503,0.0453149,0.815818,0.518144,0.90178,0.710001,0.325698,0.278391,0.717884,0.924316,0.616161,0.254483,0.100589,0.487238,0.741381,0.592526,0.231119,0.254559,0.0356143,0.152656,0.692963,0.181051,0.978067,0.124436,0.906243,0.269144,0.484084,0.949959,0.28098,0.939066,0.059022,0.903435,0.666076,0.45126,0.712637,0.765679,0.118233,0.370173,0.0961545,0.0572678,0.345464,0.376775,0.750147,0.553462,0.428091,0.00478059,0.378989,0.0121241,0.388172,0.0638184,0.0730001,0.824876,0.188674,0.883391,0.182146,0.577069,0.865628,0.288148,0.219061,0.61131,0.807585,0.119211,0.664435,0.0574631,0.604075,0.624748,0.270848,0.920929,0.678648,0.893153,0.902842,0.702779,0.792901,0.508702,0.0085752,0.978444,0.102352,0.249518,0.740467,0.513322,0.535436,0.993981,0.752485,0.926706,0.338345,0.746375,0.320763,0.732408,0.0760657,0.628365,0.407945,0.830993,0.399735,0.469929,0.883552,0.887689,0.282075,0.842345,0.987046,0.584625,0.763947,0.660313,0.912608,0.0101696,0.924761,0.658487,0.544678,0.95251,0.335888,0.323137,0.0413269,0.558571,0.933897,0.379145,0.586031,0.295873,0.525912,0.881318,0.649012,0.552277,0.0384324,0.917884,0.233127,0.455889,0.826222,0.885851,0.236145,0.967287,0.953496,0.36613,0.670134,0.962881,0.58665,0.521467,0.207443,0.0870543,0.764561,0.0967692,0.874119,0.389891,0.189597,0.358517,0.603549,0.383179,0.278509,0.579284,0.212876,0.738231,0.375241,0.536119,0.353545,0.0818321,0.404366,0.38078,0.241013,0.80744,0.317874,0.340494,0.945931,0.619579,0.101464,0.0825689,0.868366,0.157209,0.822652,0.701584,0.0458131,0.747145,0.870736,0.210514,0.34629,0.734229,0.595478,0.893283,0.977797,0.990168,0.708802,0.821533,0.413913,0.125651,0.508026,0.794931,0.765746,0.763521,0.667052,0.0964732,0.497987,0.541209,0.785493,0.477034,0.356131,0.2868,0.0888873,0.589307,0.963197,0.869328,0.804824,0.715515,0.264711,0.667996,0.684837,0.798462,0.916022,0.802505,0.190566,0.0158169,0.909456,0.259825,0.00811177,0.384867,0.756127,0.10204,0.998235,0.531979,0.0918952,0.16946,0.987385,0.761836,0.558861,0.146846,0.249697,0.868802,0.575882,0.209659,0.141697,0.0208758,0.304506,0.482431,0.461188,0.150329,0.0941736,0.0964244,0.138312,0.260997,0.617612,0.256083,0.598511,0.718555,0.393153,0.980988,0.523444,0.640471,0.290073,0.857586,0.215439,0.721289,0.684753,0.76299,0.945499,0.426167,0.0988786,0.772483,0.437825,0.641097,0.933,0.0535905,0.698135,0.0246976,0.425039,0.534565,0.704079,0.328069,0.753363,0.541363,0.896955,0.120858,0.690039,0.997173,0.609983,0.860007,0.228369,0.929321,0.668679,0.258602,0.792367,0.277352,0.546191,0.376324,0.626734,0.87368,0.548863,0.799327,0.3169,0.918508,0.310553,0.725056,0.548161,0.696084,0.210497,0.968465,0.418364,0.53971,0.56158,0.158189,0.936568,0.40225,0.313549,0.739717,0.87209,0.365573,0.643441,0.00455076,0.371633,0.571049,0.207079,0.0871477,0.744744,0.79539,0.25208,0.414046,0.483998,0.266735,0.568281,0.0406912,0.890468,0.829783,0.322629,0.955841,0.193989,0.518807,0.345521,0.483995,0.197385,0.703485,0.819101,0.309484,0.510015,0.0281191,0.389812,0.0784198,0.061241,0.0964811,0.836092,0.940385,0.421062,0.76097,0.156891,0.959662,0.893567,0.740337,0.78607,0.439476,0.0859105,0.320103,0.0197766,0.82961,0.539502,0.297346,0.450359,0.348144,0.589423,0.742999,0.164716,0.851137,0.891315,0.477796,0.192168,0.318447,0.834526,0.827102,0.508336,0.194174,0.360777,0.504961,0.47364,0.529031,0.217048,0.107516,0.261648,0.922873,0.709236,0.282068,0.485131,0.626489,0.971149,0.776208,0.993259,0.802348,0.398257,0.536468,0.437031,0.191393,0.702047,0.626293,0.477618,0.558876,0.960295,0.62539,0.101966,0.489011,0.332975,0.703419,0.194783,0.366347,0.982232,0.462215,0.731699,0.930388,0.565066,0.970894,0.555836,0.654754,0.848189,0.0422465,0.281748,0.597584,0.312278,0.183633,0.37454,0.660365,0.237029,0.949484,0.0564099,0.720408,0.460059,0.950697,0.624378,0.360963,0.244803,0.963546,0.172518,0.118116,0.332902,0.303378,0.713244,0.23026,0.673392,0.277858,0.312967,0.318275,0.47787,0.303211,0.49923,0.132672,0.617858,0.832919,0.180263,0.537585,0.624165,0.653709,0.859434,0.600735,0.921551,0.593083,0.743244,0.00775498,0.582998,0.496765,0.409719,0.724587,0.922579,0.324641,0.919883,0.653278,0.0971669,0.305369,0.458058,0.543311,0.595093,0.196266,0.225614,0.0647542,0.327872,0.353219,0.145685,0.971961,0.981254,0.703193,0.714361,0.499288,0.573982,0.297262,0.825086,0.99048,0.792086,0.946898,0.583324,0.854109,0.0224155,0.467321,0.939341,0.677133,0.649025,0.544236,0.573368,0.183333,0.792519,0.614836,0.379071,0.580357,0.153707,0.526816,0.184864,0.27821,0.94028,0.302954,0.941004,0.917693,0.775673,0.483127,0.0632997,0.385674,0.85808,0.581535,0.117262,0.548077,0.793538,0.377564,0.709844,0.549131,0.231999,0.0115706,0.678387,0.260335,0.380652,0.0427415,0.416679,0.962366,0.900754,0.837025,0.832565,0.617116,0.946899,0.29513,0.203993,0.342282,0.443056,0.0989295,0.13718,0.384491,0.84497,0.0487387,0.435069,0.782689,0.319611,0.859577,0.928133,0.462945,0.298837,0.336443,0.595597,0.312559,0.290626,0.597004,0.148902,0.0223128,0.0624889,0.129486,0.668025,0.311907,0.997758,0.589611,0.709246,0.0612,0.0731844,0.156846,0.872461,0.264996,0.708249,0.322424,0.183085,0.87349,0.931661,0.442463,0.431275,0.178165,0.352661,0.0125746,0.31865,0.0097692,0.841466,0.38454,0.297537,0.966452,0.779656,0.835888,0.931579,0.52133,0.908781,0.35999,0.0978446,0.772064,0.0116785,0.69005,0.931952,0.560741,0.53974,0.125187,0.82923,0.369478,0.107587,0.907849,0.531276,0.276559,0.996472,0.2494,0.239794,0.641977,0.747065,0.885723,0.091119,0.931725,0.554367,0.383994,0.901369,0.34244,0.0277407,0.190025,0.716507,0.0797085,0.46959,0.907447,0.180333,0.0903314,0.0898173,0.623231,0.0644968,0.778062,0.370007,0.642507,0.0171087,0.752148,0.21854,0.423978,0.295553,0.803576,0.28602,0.00638264,0.89308,0.768577,0.284456,0.0956928,0.493246,0.362839,0.562634,0.815215,0.937245,0.333943,0.318998,0.269449,0.618812,0.174483,0.765628,0.808975,0.84241,0.166619,0.318384,0.444666,0.753739,0.297522,0.535622,0.854201,0.23859,0.210857,0.423078,0.773861,0.527994,0.771459,0.405919,0.538278,0.627702,0.382124,0.651848,0.63641,0.667182,0.39496,0.599005,0.0104881,0.353936,0.916903,0.724894,0.546991,0.644606,0.796319,0.0522282,0.314422,0.852642,0.262865,0.248786,0.554779,0.332393,0.585796,0.259876,0.9856,0.476979,0.77081,0.660004,0.111148,0.99619,0.372896,0.064861,0.686039,0.818699,0.132475,0.185201,0.739952,0.975057,0.373398,0.794258,0.125388,0.000171065,0.244936,0.812612,0.0299624,0.228017,0.462475,0.273713,0.258382,0.542322,0.0819607,0.739441,0.609865,0.451738,0.396256,0.657328,0.368231,0.863959,0.267401,0.6642,0.224609,0.432275,0.140305,0.799624,0.399922,0.911543,0.445988,0.426377,0.178456,0.71366,0.64815,0.911573,0.291077,0.140005,0.362615,0.474784,0.540895,0.900076,0.569247,0.625392,0.750292,0.515499,0.811524,0.931341,0.645624,0.953951,0.00752676,0.944258,0.510222,0.17268,0.535009,0.326272,0.592412,0.94497,0.186127,0.457664,0.372805,0.738936,0.26691,0.321795,0.601861,0.68287,0.707776,0.369833,0.241751,0.0445588,0.621913,0.812594,0.482407,0.632792,0.989207,0.238881,0.797789,0.844565,0.338034,0.452351,0.95359,0.647451,0.946537,0.76051,0.637,0.97942,0.135062,0.478063,0.46841,0.334313,0.11818,0.857597,0.88181,0.311877,0.207936,0.472018,0.216366,0.654678,0.349705,0.789505,0.975205,0.923775,0.740962,0.854624,0.529716,0.120105,0.641408,0.764757,0.62521,0.0797875,0.490466,0.845735,0.453199,0.34263,0.889466,0.393398,0.508009,0.960496,0.637998,0.695467,0.399233,0.440354,0.538641,0.654885,0.781234,0.0210367,0.245067,0.167799,0.183041,0.216602,0.179268,0.829538,0.130809,0.0609023,0.00518012,0.687234,0.175719,0.574383,0.375197,0.336624,0.789596,0.453829,0.513378,0.26755,0.948363,0.612074,0.11599,0.855559,0.798643,0.981095,0.170116,0.703387,0.634521,|0.41348,0.117804,0.874731,0.546634,0.200816,0.860286,0.927001,0.331371,0.466359,0.254183,0.571615,0.232881,0.228372,0.881277,0.483551,0.620834,0.939241,0.88527,0.236074,0.60736,0.335855,0.472878,0.40628,0.740675,0.978445,0.370776,0.555984,0.406604,0.21926,0.840679,0.354621,0.263233,0.227942,0.243345,0.146263,0.90531,0.167474,0.796473,0.139968,0.509133,0.573717,0.846677,0.953404,0.897473,0.514239,0.527291,0.57079,0.173855,0.2963,0.418493,0.981783,0.147448,0.764478,0.0990646,0.494417,0.621943,0.124017,0.847087,0.617792,0.82511,0.797064,0.597958,0.595102,0.117211,0.923785,0.237882,0.727528,0.0517029,0.0436249,0.398636,0.328404,0.633904,0.234625,0.775956,0.6384,0.604569,0.844387,0.690335,0.877215,0.629158,0.998197,0.881791,0.504268,0.826029,0.103638,0.603775,0.954282,0.928647,0.415587,0.609409,0.3572,0.970132,0.737632,0.22754,0.654473,0.359101,0.759541,0.24615,0.28936,0.672321,0.364614,0.124023,0.939133,0.169576,0.2684,0.551348,0.404412,0.35378,0.611381,0.262855,0.0956515,0.906355,0.182435,0.0885267,0.713378,0.220897,0.356902,0.2951,0.864428,0.76239,0.0130826,0.582322,0.0570146,0.125698,0.977961,0.682569,0.123357,0.600564,0.180154,0.497133,0.142917,0.866164,0.690612,0.671005,0.76105,0.148553,0.646933,0.494265,0.781493,0.211146,0.938365,0.326575,0.81091,0.528734,0.0122743,0.296605,0.350397,0.574029,0.13297,0.19753,0.872483,0.288811,0.571854,0.687835,0.535337,0.521881,0.376302,0.343662,0.850912,0.0989796,0.040566,0.365258,0.253242,0.483125,0.847488,0.772137,0.624536,0.0109769,0.815771,0.977159,0.647986,0.566539,0.774602,0.586236,0.829724,0.465868,0.718232,0.455784,0.842758,0.0486422,0.225634,0.0639378,0.477249,0.801944,0.877374,0.58498,0.731637,0.977467,0.641907,0.576378,0.0252243,0.84564,0.382074,0.851668,0.373886,0.767945,0.985341,0.394243,0.831592,0.648761,0.228508,0.264992,0.125642,0.103272,0.540554,0.704854,0.150806,0.0713726,0.683808,0.709888,0.795358,0.431374,0.560134,0.326646,0.76565,0.0545473,0.778128,0.887703,0.196355,0.836664,0.396576,0.507876,0.0742565,0.271445,0.384602,0.954301,0.146355,0.126956,0.641524,0.746405,0.042491,0.114374,0.638786,0.472045,0.116549,0.822072,0.738359,0.830152,0.515968,0.0807042,0.038889,0.328306,0.211615,0.36847,0.719426,0.219977,0.199868,0.126602,0.157378,0.781558,0.987192,0.210625,0.923545,0.125895,0.702197,0.886595,0.741478,0.761235,0.444729,0.169789,0.0957913,0.0195553,0.880768,0.3647,0.951281,0.0169935,0.608349,0.316567,0.786992,0.645338,0.582086,0.971911,0.405161,0.667856,0.64492,0.274672,0.726534,0.709472,0.639655,0.557263,0.896214,0.385102,0.667835,0.265752,0.436391,0.940191,0.735381,0.798317,0.0188423,0.354699,0.630349,0.24693,0.817223,0.233243,0.853095,0.121759,0.453595,0.689232,0.0858954,0.61711,0.518427,0.0617065,0.0101257,0.0722895,0.295882,0.287434,0.233632,0.668301,0.0606021,0.632987,0.0120713,0.034444,0.371487,0.175946,0.908165,0.18521,0.980914,0.292988,0.674594,0.869627,0.95399,0.420186,0.74015,0.763684,0.0452446,0.919081,0.251789,0.308794,0.0494974,0.87244,0.640566,0.670171,0.316077,0.967379,0.486172,0.466797,0.676332,0.254941,0.325353,0.846294,0.993656,0.93594,0.0998998,0.627756,0.881307,0.283182,0.643556,0.276148,0.170687,0.458458,0.0974512,0.202034,0.992964,0.739773,0.315404,0.754267,0.730888,0.118507,0.622034,0.232928,0.920405,0.539043,0.119394,0.991168,0.0941895,0.22985,0.782809,0.196781,0.873011,0.24356,0.663178,0.194866,0.700816,0.969734,0.031188,0.927612,0.3379,0.0507764,0.773269,0.57928,0.947868,0.701228,0.0444645,0.0486897,0.453496,0.306352,0.142047,0.180122,0.110157,0.119894,0.747231,0.0599778,0.788181,0.152872,0.249483,0.784992,0.728316,0.261232,0.993941,0.411371,0.350045,0.084435,0.339887,0.877782,0.0738533,0.753071,0.0592583,0.291483,0.631224,0.993942,0.725743,0.947016,0.913905,0.227919,0.173282,0.0326244,0.00631142,0.890137,0.328388,0.122497,0.803308,0.16708,0.248701,0.368993,0.898379,0.28182,0.912991,0.869172,0.488486,0.788454,0.20661,0.374953,0.401449,0.87532,0.43633,0.0762942,0.614299,0.8813,0.350437,0.445941,0.783614,0.312937,0.241742,0.751808,0.481539,0.761344,0.0635702,0.0809822,0.4696,0.355391,0.649444,0.458564,0.975981,0.991463,0.509781,0.683619,0.180226,0.600217,0.9796,0.36689,0.50544,0.63941,0.818331,0.316094,0.0877019,0.382333,0.476702,0.660359,0.431925,0.0848167,0.290999,0.42044,0.655175,0.910212,0.622863,0.90304,0.790377,0.45607,0.565804,0.51573,0.391515,0.999823,0.450721,0.134242,0.47656,0.71699,0.683048,0.845136,0.666121,0.476276,0.563846,0.966158,0.693022,0.426973,0.278766,0.343409,0.789968,0.499504,0.579847,0.304693,0.0736839,0.343438,0.382114,0.81193,0.910755,0.358968,0.731087,0.916179,0.284041,0.917906,0.793801,0.395737,0.563866,0.579122,0.0146808,0.298438,0.0191663,0.245458,0.702758,0.476278,0.575602,0.223211,0.311759,0.364916,0.629254,0.187739,0.300103,0.539019,0.909156,0.850538,0.255728,0.196691,0.183296,0.938467,0.758208,0.889665,0.833615,0.70792,0.925095,0.655988,0.569145,0.807764,0.24193,0.101394,0.293198,0.273349,0.866598,0.512756,0.778686,0.071372,0.0756192,0.838578,0.261685,0.714545,0.637809,0.369372,0.446548,0.447734,0.511353,0.288231,0.951443,0.50165,0.7102,0.423296,0.627161,0.23431,0.0264296,0.983128,0.950485,0.853113,0.640039,0.434467,0.873637,0.946974,0.123865,0.90808,0.988604,0.752839,0.659504,0.114484,0.285345,0.608602,0.112291,0.674864,0.63584,0.554605,0.860446,0.749376,0.474044,0.627347,0.863034,0.738976,0.460704,0.898837,0.672446,0.383794,0.467688,0.199908,0.183174,0.930153,0.947489,0.470183,0.757497,0.608534,0.581537,0.455116,0.752495,0.336136,0.68426,0.0112306,0.998974,0.270191,0.407689,0.841149,0.906081,0.247988,0.377636,0.314045,0.396887,0.606502,0.642906,0.672583,0.869976,0.886603,0.792664,0.245451,0.820255,0.91995,0.734327,0.420694,0.97866,0.36083,0.742327,0.925513,0.732505,0.843266,0.811778,0.370763,0.51091,0.547244,0.0464136,0.274481,0.125387,0.442949,0.417501,0.5501,0.451259,0.0485954,0.817696,0.205481,0.344056,0.538276,0.783113,0.565867,0.190752,0.572656,0.535,0.778685,0.874579,0.141176,0.67909,0.196272,0.0819723,0.755545,0.0432978,0.00310475,0.675696,0.8964,0.5654,0.563214,0.768553,0.00295812,0.532625,0.900021,0.181657,0.795987,0.045529,0.536449,0.184133,0.316176,0.929765,0.275766,0.376986,0.505386,0.745234,0.834091,0.14833,0.685691,0.904535,0.129577,0.211376,0.623196,0.08461,0.198254,0.931564,0.713662,0.299278,0.785778,0.675897,0.00991923,0.707078,0.78418,0.433015,0.121531,0.71385,0.137593,0.778066,0.375594,0.877717,0.101032,0.666293,0.304222,0.177233,0.241778,0.44825,0.331768,0.914918,0.192959,0.848363,0.530235,0.319965,0.54343,0.114422,0.500869,0.653823,0.139975,0.271507,0.472747,0.955781,0.277248,0.389337,0.658505,0.870262,0.0141532,0.321655,0.231575,0.473198,0.148878,0.0189067,0.747174,0.337915,0.816998,0.489562,0.799365,0.534963,0.640739,0.596706,0.281333,0.57195,0.345286,0.790276,0.06405,0.449933,0.230949,0.0127071,0.758263,0.695854,0.724244,0.728906,0.139508,0.64471,0.748912,0.550368,0.464154,0.245977,0.653245,0.628738,0.228205,0.404567,0.296785,0.791607,0.987819,0.732695,0.671202,0.0120142,0.255662,0.784335,0.57958,0.667622,0.991059,0.741869,0.117059,0.977526,0.0985277,0.0237823,0.915813,0.61698,0.656551,0.905092,0.266664,0.942015,0.568883,0.642192,0.345446,0.0998111,0.358194,0.123787,0.000452161,0.904123,0.308803,0.00845015,0.643514,0.405979,0.729291,0.0186148,0.137948,0.737859,0.629155,0.250499,0.260731,0.862207,0.187459,0.889147,0.994959,0.780768,0.495002,0.649533,0.970851,0.303461,0.987925,0.460206,0.010951,0.116964,0.972644,0.178723,0.647491,0.172796,0.411504,0.166687,0.576133,0.298548,0.167494,0.209547,0.57353,0.103773,0.831323,0.995737,0.0947904,0.564914,0.868636,0.931854,0.592817,0.703864,0.802037,0.676861,0.584408,0.403378,0.925364,0.706737,0.606732,0.851768,0.801008,0.0708568,0.571173,0.697781,0.873401,0.0132654,0.341736,0.109104,0.0405354,0.479612,0.930839,0.91106,0.160051,0.686351,0.737629,0.544202,0.457474,0.624857,0.142192,0.0634517,0.44016,0.289292,0.26627,0.579846,0.428334,0.731166,0.129699,0.312987,0.572131,0.50908,0.271653,0.521451,0.789978,0.123123,0.0449335,0.59998,0.439421,0.921904,0.889897,0.405843,0.614414,0.434433,0.561472,0.160408,0.1114,0.0824751,0.419298,0.363503,0.870074,0.829679,0.0295075,0.073009,0.733432,0.73631,0.130297,0.133122,0.348496,0.0865604,0.0578219,0.670548,0.0782194,0.772974,0.183207,0.752598,0.562562,0.626824,0.0880479,0.287137,0.670829,0.491531,0.178919,0.518605,0.0163755,0.325019,0.8489,0.522773,0.851415,0.629367,0.407834,0.102654,0.460445,0.325768,0.948568,0.155041,0.308888,0.766013,0.11593,0.965024,0.0103329,0.861094,0.61237,0.550232,0.972859,0.902969,0.130761,0.0498058,0.0699309,0.615112,0.722611,0.342935,0.20391,0.243622,0.667222,0.903739,0.721443,0.424986,0.593994,0.904988,0.851728,0.811451,0.0560659,0.220714,0.705635,0.152284,0.156038,0.867492,0.58781,0.971036,0.759066,0.358884,0.839114,0.880106,0.47561,0.837882,0.607731,0.242156,0.756024,0.97053,0.49273,0.830201,0.882375,0.545002,0.0289186,0.00178796,0.607438,0.451413,0.160468,0.503124,0.959214,0.656631,0.472855,0.475917,0.310231,0.00996947,0.0568355,0.811374,0.94011,0.790035,0.397549,|0.636512,0.969416,0.96918,0.196534,0.438146,0.506845,0.620574,0.224782,0.326622,0.058437,0.854927,0.357038,0.123454,0.0113766,0.227356,0.560779,0.499164,0.0829195,0.835561,0.540854,0.525857,0.789409,0.726474,0.293317,0.824094,0.764729,0.971203,0.164531,0.445266,0.406072,0.460215,0.268387,0.0228197,0.459761,0.0992631,0.94949,0.311503,0.322878,0.424589,0.505133,0.603171,0.393339,0.201535,0.692069,0.278406,0.402252,0.330071,0.524697,0.150021,0.18723,0.563502,0.291867,0.244648,0.236159,0.778602,0.323702,0.875761,0.517672,0.0348216,0.527362,0.578022,0.367576,0.942423,0.880082,0.923548,0.957565,0.0254326,0.621401,0.992841,0.107648,0.226551,0.755499,0.5029,0.323477,0.0413223,0.245974,0.436969,0.122843,0.766468,0.207362,0.93023,0.251767,0.536868,0.272638,0.579174,0.699699,0.381493,0.199891,0.660772,0.770624,0.749838,0.175537,0.188296,0.583275,0.73914,0.816049,0.972199,0.814342,0.887428,0.180415,0.677385,0.381379,0.858914,0.662077,0.390283,0.312027,0.0283561,0.825167,0.164531,0.639953,0.429425,0.247135,0.907453,0.710263,0.402911,0.374266,0.992835,0.86988,0.148658,0.434253,0.204298,0.348912,0.499189,0.903797,0.548569,0.398196,0.0908674,0.573776,0.635818,0.253282,0.345926,0.434515,0.274771,0.587826,0.785854,0.205717,0.198991,0.790171,0.0942368,0.0808151,0.662229,0.0410905,0.0105791,0.292382,0.305565,0.0654959,0.932565,0.0482268,0.814573,0.32367,0.342566,0.484849,0.284139,0.457601,0.808692,0.117517,0.378499,0.826929,0.571516,0.264559,0.498193,0.0502154,0.985461,0.888394,0.703697,0.00579095,0.885267,0.916158,0.352461,0.496635,0.42714,0.558949,0.592715,0.518646,0.307941,0.835995,0.684008,0.52713,0.65215,0.137036,0.630949,0.563169,0.686042,0.767425,0.932185,0.432647,0.9563,0.894354,0.190154,0.129265,0.529569,0.454042,0.208657,0.29387,0.0431753,0.184675,0.931858,0.294569,0.427612,0.968958,0.453763,0.390907,0.440982,0.151639,0.757387,0.512592,0.163037,0.418918,0.0735885,0.0788199,0.609905,0.647343,0.998439,0.0430216,0.525795,0.703395,0.0813892,0.535944,0.521581,0.0878738,0.309643,0.734823,0.242015,0.198291,0.27603,0.982647,0.480036,0.951879,0.91986,0.54991,0.969931,0.540811,0.347775,0.381486,0.857196,0.554352,0.590144,0.282492,0.35896,0.583385,0.623494,0.326259,0.246608,0.000334382,0.943901,0.696595,0.431141,0.702423,0.258931,0.202097,0.749945,0.509962,0.409467,0.937002,0.160136,0.572173,0.0647667,0.156539,0.178819,0.0726872,0.44067,0.420783,0.117108,0.433846,0.531657,0.944735,0.162663,0.981721,0.390061,0.756072,0.269083,0.268899,0.369942,0.613178,0.402941,0.21625,0.137991,0.598358,0.379023,0.220431,0.342838,0.775676,0.63353,0.917595,0.0360684,0.571185,0.638234,0.703928,0.946516,0.29713,0.667636,0.315885,0.142789,0.663703,0.547618,0.750002,0.461574,0.446385,0.0560154,0.416786,0.591218,0.0395088,0.774483,0.686402,0.464721,0.778685,0.0886994,0.804296,0.194239,0.0483379,0.172979,0.623703,0.418372,0.264355,0.408698,0.168939,0.81954,0.958593,0.56362,0.114497,0.578782,0.196275,0.922933,0.580666,0.298568,0.00230193,0.49276,0.508128,0.221723,0.0486085,0.57889,0.971393,0.675186,0.166714,0.995769,0.0134458,0.309912,0.383636,0.0753121,0.981796,0.291228,0.358888,0.164741,0.508823,0.226096,0.0549862,0.630956,0.0262163,0.902573,0.815605,0.694048,0.956706,0.682098,0.595682,0.73493,0.716746,0.890213,0.946108,0.497271,0.922242,0.741207,0.516903,0.0261005,0.433856,0.646688,0.180362,0.250811,0.338281,0.185566,0.661967,0.609623,0.0581201,0.134958,0.639481,0.597852,0.255462,0.048893,0.737311,0.255023,0.0709337,0.148323,0.564406,0.942132,0.410937,0.0503211,0.117979,0.35976,0.372253,0.126475,0.96199,0.866403,0.374823,0.0366827,0.755661,0.0896704,0.695195,0.458375,0.813272,0.714575,0.198694,0.602628,0.689308,0.960635,0.755726,0.786649,0.367169,0.190298,0.266014,0.645414,0.0446143,0.462207,0.144576,0.587375,0.809088,0.434175,0.783553,0.872261,0.42657,0.493478,0.396396,0.077123,0.386169,0.802975,0.0954481,0.905226,0.881092,0.103852,0.810261,0.689529,0.204331,0.748214,0.5532,0.60768,0.88748,0.0912694,0.719758,0.509682,0.0474665,0.682287,0.517864,0.0773988,0.511912,0.92447,0.196238,0.447213,0.257266,0.635071,0.457252,0.342895,0.80644,0.667893,0.34355,0.127094,0.728385,0.0905783,0.927463,0.50791,0.806187,0.214348,0.804134,0.995678,0.316804,0.514154,0.562034,0.866421,0.097738,0.0501963,0.482716,0.581337,0.436242,0.559778,0.361248,0.208668,0.0816938,0.949985,0.0456138,0.676418,0.0199484,0.197132,0.00881445,0.568067,0.628078,0.171804,0.0583273,0.784634,0.153099,0.853077,0.275961,0.286651,0.35012,0.615529,0.0785355,0.981637,0.0821823,0.519632,0.503245,0.911972,0.44296,0.528165,0.291276,0.638235,0.84911,0.491155,0.676369,0.538695,0.544343,0.860879,0.710974,0.36022,0.257451,0.947781,0.954306,0.739405,0.786462,0.499287,0.0604345,0.736978,0.914975,0.958349,0.760796,0.108979,0.968006,0.867244,0.723383,0.257036,0.654543,0.710457,0.207015,0.599744,0.457132,0.425084,0.455922,0.343146,0.148479,0.963757,0.0749635,0.350285,0.927622,0.663468,0.858287,0.582679,0.783307,0.477955,0.752416,0.64183,0.913328,0.851188,0.00889957,0.543673,0.976134,0.0962251,0.686172,0.237548,0.99395,0.0623264,0.553132,0.190262,0.293451,0.721211,0.0754408,0.971259,0.85867,0.544075,0.589092,0.186937,0.342501,0.250758,0.747072,0.0138943,0.464456,0.368286,0.622397,0.763357,0.116597,0.037739,0.506932,0.380145,0.399618,0.898463,0.62749,0.274255,0.910768,0.444026,0.986971,0.586859,0.804233,0.342349,0.361122,0.82619,0.444302,0.786736,0.137745,0.389903,0.22895,0.911242,0.443227,0.533997,0.664906,0.166624,0.399399,0.81759,0.736532,0.285884,0.861059,0.88451,0.55155,0.534459,0.759116,0.473759,0.49047,0.871926,0.180295,0.0765916,0.291441,0.234697,0.100185,0.279465,0.551114,0.757352,0.612126,0.47827,0.400431,0.751344,0.446044,0.346468,0.410468,0.151585,0.914348,0.871025,0.503002,0.794948,0.0080992,0.20188,0.387166,0.167496,0.385257,0.0324673,0.716207,0.0902538,0.985396,0.556743,0.127235,0.465125,0.741485,0.0857545,0.189132,0.368764,0.544038,0.244498,0.355247,0.523874,0.463267,0.476573,0.323491,0.507344,0.538127,0.971986,0.519816,0.577984,0.740371,0.139811,0.439433,0.503282,0.461237,0.175186,0.273411,0.156706,0.820981,0.677474,0.768538,0.81496,0.195669,0.436293,0.244997,0.978838,0.96577,0.19231,0.7063,0.178745,0.570291,0.321505,0.823747,0.774197,0.970549,0.144342,0.698804,0.456044,0.635823,0.565568,0.980197,0.346649,0.666548,0.409175,0.3523,0.640171,0.231721,0.743372,0.895377,0.877754,0.550857,0.0640734,0.213529,0.960172,0.573864,0.679843,0.757736,0.528726,0.430218,0.280129,0.92791,0.173238,0.942282,0.946889,0.00887954,0.479154,0.687655,0.158058,0.0445945,0.16888,0.0757642,0.758571,0.573438,0.246593,0.523048,0.268041,0.994792,0.183198,0.60186,0.198685,0.179371,0.413492,0.942197,0.551522,0.00405043,0.582032,0.418427,0.0624969,0.409539,0.38472,0.881047,0.6953,0.480827,0.143129,0.639114,0.401068,0.647755,0.908132,0.547702,0.761786,0.895242,0.360296,0.421776,0.532722,0.983469,0.50163,0.850572,0.319706,0.309483,0.477906,0.406093,0.727059,0.0569135,0.765498,0.927286,0.405395,0.259492,0.658876,0.150547,0.367345,0.745495,0.460132,0.621306,0.0363441,0.333817,0.574468,0.143424,0.0617555,0.365789,0.584275,0.384378,0.117119,0.00519049,0.267053,0.925608,0.988243,0.44754,0.0682141,0.200013,0.572905,0.60503,0.077508,0.71857,0.337732,0.908994,0.68251,0.878573,0.0596902,0.292892,0.941126,0.797077,0.0948892,0.126845,0.496182,0.346241,0.298073,0.802906,0.069769,0.494285,0.38338,0.277815,0.347123,0.0309236,0.733495,0.810583,0.689012,0.922563,0.703367,0.496572,0.492845,0.252774,0.611887,0.905404,0.354553,0.238408,0.0752584,0.539574,0.1786,0.505712,0.329507,0.484394,0.567581,0.303149,0.612943,0.533229,0.366057,0.976335,0.624058,0.575909,0.49917,0.904249,0.94121,0.906788,0.863533,0.846995,0.0422791,0.558554,0.340471,0.176001,0.470197,0.0552628,0.994167,0.891024,0.273633,0.757623,0.856641,0.77027,0.370983,0.612273,0.751659,0.756432,0.649386,0.560431,0.274356,0.938287,0.445322,0.164437,0.625347,0.314988,0.119189,0.403422,0.170061,0.897146,0.747534,0.592177,0.386916,0.424472,0.95925,0.642746,0.742709,0.583235,0.496731,0.509558,0.841138,0.56251,0.0719223,0.693389,0.452482,0.0724315,0.961353,0.624739,0.894658,0.519904,0.950646,0.707117,0.209098,0.687352,0.448843,0.197441,0.602775,0.160788,0.802349,0.136152,0.124292,0.986362,0.0815744,0.756521,0.729743,0.0586756,0.98326,0.0172622,0.0350743,0.466395,0.742084,0.0939364,0.321916,0.453464,0.0310016,0.628382,0.114063,0.0543642,0.552892,0.314079,0.620358,0.383431,0.412338,0.638526,0.546086,0.347328,0.0330803,0.606746,0.474083,0.687026,0.591762,0.330792,0.0708439,0.986293,0.266306,0.269799,0.571462,0.700264,0.262751,0.539222,0.57906,0.0267491,0.898028,0.223078,0.656346,0.00566256,0.733141,0.823998,0.909422,0.476511,0.933945,0.118389,0.494591,0.931695,0.559532,0.311172,0.724356,0.0160337,0.762156,0.0460737,0.918168,0.242868,0.0627523,0.379976,0.687579,0.200965,0.836349,0.530402,0.871156,0.21999,0.918162,0.0788333,0.802069,0.0296755,0.827133,0.402986,0.707027,0.170612,0.795437,0.0851287,0.744395,0.423049,0.680275,0.121016,0.120637,0.893541,0.943972,0.877729,0.721844,0.339401,0.176286,0.213982,0.804244,0.715512,0.167324,0.748606,0.0636421,0.127653,|0.509819,0.214822,0.299608,0.348734,0.537372,0.134421,0.0682898,0.940777,0.32146,0.626837,0.855311,0.764813,0.0013957,0.416793,0.47745,0.0457685,0.926537,0.373585,0.866722,0.381547,0.317398,0.678307,0.253224,0.822066,0.78176,0.0160538,0.662775,0.756682,0.507625,0.439521,0.815532,0.845976,0.753114,0.93477,0.13564,0.901807,0.00798959,0.391163,0.0130154,0.120583,0.07434,0.198134,0.329001,0.412129,0.836232,0.0259057,0.579239,0.594606,0.637917,0.511163,0.310526,0.317549,0.185333,0.43865,0.411407,0.0380694,0.970922,0.171319,0.22027,0.867098,0.72771,0.761385,0.619371,0.515942,0.237304,0.135909,0.100936,0.216872,0.699647,0.166697,0.408582,0.337898,0.636524,0.0991254,0.465078,0.65045,0.101075,0.697456,0.874603,0.735773,0.922442,0.189008,0.0123696,0.990326,0.850136,0.716442,0.450596,0.808507,0.913055,0.781584,0.645058,0.538668,0.246341,0.00570285,0.443685,0.80096,0.162343,0.940691,0.174266,0.0308228,0.725567,0.316122,0.983308,0.405042,0.684838,0.600237,0.990813,0.951693,0.612193,0.767373,0.913825,0.320645,0.639642,0.89622,0.0992718,0.391633,0.489551,0.0409105,0.977387,0.0783638,0.451109,0.730281,0.786672,0.0856632,0.672278,0.711315,0.312012,0.753277,0.421575,0.455513,0.727643,0.26543,0.11955,0.116623,0.774757,0.0255969,0.736159,0.834637,0.0750264,0.636835,0.363933,0.616168,0.494946,0.469084,0.988345,0.810905,0.615698,0.459778,0.753291,0.385919,0.607597,0.0777043,0.481673,0.0367272,0.752612,0.864111,0.466291,0.132888,0.705611,0.469618,0.196349,0.655742,0.146686,0.146619,0.406627,0.633881,0.157604,0.0476384,0.313579,0.92183,0.546716,0.194644,0.209177,0.88246,0.265298,0.753868,0.396804,0.208456,0.114074,0.209296,0.197359,0.371308,0.277513,0.928183,0.0414997,0.547926,0.916001,0.214098,0.596085,0.355484,0.128107,0.607203,0.495825,0.612453,0.988462,0.044385,0.842079,0.0020566,0.0100991,0.68815,0.587083,0.0159977,0.459445,0.624153,0.288378,0.81891,0.625748,0.0192858,0.782983,0.868939,0.958281,0.477348,0.547661,0.42788,0.728571,0.623753,0.662386,0.898314,0.633948,0.438429,0.286598,0.758725,0.989268,0.678735,0.738023,0.846367,0.230749,0.633355,0.472325,0.378207,0.526174,0.861367,0.545663,0.715507,0.61639,0.962682,0.961609,0.68371,0.640268,0.818446,0.285188,0.110157,0.205424,0.376569,0.110178,0.470999,0.72063,0.628375,0.652718,0.203363,0.366947,0.385337,0.790885,0.765568,0.179625,0.0131689,0.480334,0.131569,0.101429,0.41535,0.0907553,0.772937,0.583461,0.992603,0.831825,0.83155,0.390203,0.897828,0.137803,0.929152,0.988645,0.749073,0.125037,0.702499,0.784535,0.0393533,0.341255,0.700599,0.784719,0.830784,0.336363,0.850991,0.295222,0.246794,0.396665,0.126182,0.768901,0.817456,0.964408,0.657955,0.242641,0.295709,0.557494,0.738308,0.532883,0.131851,0.77252,0.876853,0.121174,0.64769,0.63102,0.684443,0.119605,0.38191,0.931806,0.00240988,0.361582,0.679758,0.813797,0.91205,0.376904,0.831724,0.305339,0.876722,0.95774,0.992596,0.473453,0.930004,0.787766,0.279913,0.318302,0.624004,0.743226,0.19546,0.569283,0.414226,0.641563,0.530994,0.682628,0.397527,0.412511,0.829463,0.870009,0.522727,0.501577,0.239423,0.579816,0.0799477,0.231881,0.237,0.631305,0.399723,0.21411,0.841508,0.580631,0.6636,0.708163,0.858407,0.318407,0.425608,0.296942,0.996102,0.416701,0.177206,0.350114,0.648684,0.268411,0.723987,0.453929,0.362393,0.252541,0.467308,0.0543714,0.545465,0.886589,0.61859,0.243494,0.845796,0.376203,0.560112,0.0390276,0.362889,0.206745,0.171521,0.527395,0.508547,0.159616,0.899916,0.992677,0.349093,0.836948,0.797522,0.931764,0.430208,0.59332,0.307112,0.365069,0.403439,0.654546,0.0241975,0.436674,0.371869,0.181542,0.953212,0.762974,0.907152,0.841932,0.959885,0.284514,0.276868,0.225191,0.600904,0.295198,0.907351,0.88549,0.773662,0.0955662,0.607199,0.186956,0.134565,0.73994,0.837678,0.858527,0.878474,0.627247,0.607875,0.932721,0.290884,0.43853,0.359199,0.43619,0.287045,0.481819,0.649969,0.300578,0.601181,0.418916,0.359708,0.46598,0.089713,0.795345,0.655213,0.122066,0.539222,0.432564,0.420197,0.385794,0.130953,0.879434,0.0656844,0.893566,0.433681,0.929373,0.600947,0.467653,0.0995842,0.362494,0.0163798,0.159983,0.0873454,0.949737,0.476377,0.685867,0.780949,0.335073,0.51797,0.800068,0.809535,0.496311,0.734733,0.677535,0.227191,0.0558571,0.710319,0.750296,0.236062,0.123763,0.21415,0.0899865,0.773587,0.520815,0.163648,0.297473,0.525057,0.187277,0.665063,0.149286,0.686188,0.879295,0.996124,0.652621,0.956451,0.190215,0.358991,0.0715623,0.783372,0.36562,0.976128,0.578143,0.124001,0.901717,0.683358,0.935738,0.639861,0.834762,0.772953,0.662694,0.962959,0.101733,0.586881,0.574377,0.892069,0.164692,0.124886,0.490369,0.76775,0.945299,0.904129,0.17907,0.953458,0.0588235,0.346406,0.777594,0.0895541,0.417419,0.300382,0.900765,0.761402,0.684827,0.0781152,0.011028,0.303674,0.02513,0.549662,0.216894,0.0870828,0.741098,0.737785,0.114964,0.0491505,0.0566838,0.279049,0.349218,0.581667,0.309221,0.334343,0.997719,0.331636,0.365387,0.750873,0.964317,0.0174291,0.856802,0.881807,0.042705,0.690547,0.264955,0.382655,0.672809,0.472534,0.663388,0.421335,0.590986,0.0183843,0.497602,0.765667,0.641627,0.722301,0.751615,0.329427,0.154033,0.719756,0.633056,0.696599,0.0665382,0.723435,0.329723,0.13439,0.446748,0.126188,0.899688,0.497477,0.930506,0.526446,0.011372,0.241501,0.742557,0.0215741,0.207419,0.0702085,0.891606,0.654621,0.671939,0.365707,0.780595,0.908935,0.392651,0.808696,0.265815,0.437881,0.252917,0.615761,0.0622664,0.91975,0.659123,0.553082,0.0338107,0.914602,0.172529,0.648276,0.459513,0.0595802,0.162167,0.836169,0.919066,0.10099,0.247911,0.487093,0.347908,0.0672694,0.702953,0.725284,0.175491,0.0197536,0.879589,0.111692,0.242888,0.734644,0.992412,0.00432497,0.98135,0.689079,0.322285,0.384511,0.897751,0.907564,0.440456,0.971422,0.0603963,0.540844,0.835103,0.76128,0.753774,0.289811,0.0630284,0.674994,0.423468,0.360784,0.356858,0.315295,0.858083,0.632969,0.165677,0.532684,0.0464157,0.269146,0.934534,0.702908,0.587131,0.30455,0.709827,0.493208,0.594913,0.323173,0.693955,0.800205,0.548747,0.866651,0.567416,0.0625746,0.568413,0.892432,0.65317,0.592315,0.829463,0.436547,0.671763,0.217917,0.917672,0.72532,0.314341,0.0540588,0.0504031,0.0574071,0.519983,0.201634,0.847709,0.0514641,0.383152,0.655278,0.861048,0.104749,0.334516,0.00869668,0.483824,0.848228,0.943415,0.483069,0.557665,0.933789,0.458662,0.501727,0.169447,0.319379,0.0153366,0.278258,0.360569,0.407385,0.566103,0.890772,0.468775,0.794432,0.157477,0.786934,0.557612,0.68144,0.857946,0.168288,0.564029,0.382937,0.670375,0.806913,0.631321,0.151564,0.244345,0.666608,0.109031,0.805781,0.892861,0.367009,0.722386,0.105332,0.586035,0.871267,0.789097,0.259385,0.163882,0.285902,0.72907,0.623325,0.753644,0.467567,0.0597289,0.555326,0.634684,0.907272,0.639897,0.673658,0.683086,0.548146,0.483199,0.905034,0.37078,0.66603,0.402502,0.287463,0.947649,0.827903,0.515669,0.898388,0.429708,0.793362,0.4741,0.112486,0.340542,0.472215,0.611754,0.644487,0.650326,0.632367,0.999202,0.0225632,0.904336,0.467951,0.990778,0.452822,0.476479,0.0120844,0.383747,0.0365444,0.27089,0.864325,0.347819,0.725304,0.434251,0.70386,0.575866,0.89577,0.546853,0.226989,0.530115,0.123022,0.294996,0.32242,0.0427072,0.768362,0.112211,0.452731,0.285011,0.242225,0.104616,0.627955,0.0648414,0.297793,0.305182,0.435852,0.726974,0.43808,0.448937,0.240096,0.719567,0.970124,0.854636,0.143173,0.849995,0.944853,0.550931,0.999311,0.26141,0.63399,0.0649372,0.211133,0.978902,0.017082,0.374303,0.367918,0.873978,0.388854,0.963584,0.616815,0.192304,0.788229,0.0721736,0.0970852,0.455091,0.302716,0.961541,0.357455,0.944682,0.861852,0.920376,0.918784,0.65095,0.327308,0.953307,0.685563,0.240176,0.200656,0.298879,0.0537128,0.996131,0.152359,0.77574,0.160422,0.986439,0.747663,0.0208173,0.937807,0.471579,0.257581,0.217491,0.720402,0.576183,0.544462,0.982714,0.546091,0.757536,0.48205,0.614047,0.994854,0.413505,0.280219,0.341002,0.709043,0.597768,0.224852,0.669882,0.47405,0.877301,0.662855,0.547762,0.190451,0.132144,0.550311,0.0773634,0.186163,0.512418,0.0665376,0.408129,0.625727,0.737154,0.714568,0.949032,0.826466,0.787961,0.924378,0.115564,0.626745,0.224955,0.444294,0.754443,0.358303,0.166677,0.693235,0.824916,0.718341,0.418405,0.625659,0.531886,0.472182,0.497377,0.82305,0.00346327,0.702603,0.626579,0.386061,0.91349,0.147972,0.813852,0.513994,0.233621,0.257665,0.180457,0.822688,0.928533,0.883414,0.444297,0.707436,0.871946,0.152902,0.468274,0.210492,0.196681,0.880405,0.691452,0.901869,0.892362,0.432844,0.698457,0.628071,0.850858,0.942758,0.447912,0.266463,0.289603,0.222884,0.878129,0.345676,0.406708,0.398214,0.309983,0.826576,0.443947,0.457521,0.290841,0.994239,0.234534,0.559804,0.779011,0.149121,0.269857,0.52303,0.325452,0.87188,0.755742,0.68391,0.457138,0.331973,0.122858,0.446457,0.174401,0.0463723,0.794677,0.341929,0.127628,0.577883,0.0438839,0.626111,0.469244,0.152846,0.102681,0.775106,0.629117,0.725461,0.588435,0.0228237,0.324755,0.08492,0.089111,0.166707,0.856095,0.22362,0.0867913,0.512414,0.0912312,0.991496,0.957712,0.254544,0.183287,0.0795907,0.517672,0.380247,0.674864,0.954366,0.802887,0.112405,0.486829,0.146631,0.0879661,0.540092,|0.603635,0.0243272,0.240412,0.756252,0.370982,0.654228,0.743207,0.016418,0.00888932,0.189517,0.336351,0.134831,0.235084,0.4156,0.0911919,0.511713,0.868604,0.610491,0.24107,0.26829,0.101531,0.249752,0.719907,0.813619,0.867789,0.424848,0.276003,0.28425,0.822874,0.242761,0.0908376,0.531157,0.54243,0.514345,0.357197,0.0932149,0.0306376,0.237371,0.360083,0.885821,0.84423,0.230165,0.88169,0.0554578,0.0336062,0.13076,0.183523,0.394362,0.503824,0.224679,0.595643,0.734844,0.19026,0.0903582,0.927767,0.032908,0.562275,0.815488,0.53406,0.986159,0.909715,0.37777,0.527007,0.540655,0.635275,0.19348,0.313619,0.756684,0.66019,0.382524,0.410388,0.78161,0.875644,0.0402799,0.0816576,0.036294,0.95179,0.628818,0.406265,0.528164,0.994262,0.989733,0.651542,0.0490959,0.300051,0.816745,0.941349,0.957739,0.550022,0.300192,0.224122,0.492302,0.0639842,0.608037,0.316941,0.647873,0.384577,0.591033,0.306997,0.692092,0.291192,0.440599,0.411518,0.533549,0.859725,0.723007,0.777494,0.733804,0.177865,0.875822,0.0154107,0.7212,0.197403,0.443928,0.46448,0.540827,0.244639,0.656797,0.591795,0.968614,0.82498,0.37628,0.232625,0.630367,0.337981,0.25682,0.99156,0.817431,0.715717,0.760196,0.995183,0.297184,0.297474,0.853623,0.233979,0.200982,0.566251,0.61625,0.653102,0.198604,0.0862172,0.48278,0.298714,0.682833,0.0446286,0.487447,0.788954,0.388228,0.12212,0.517607,0.841266,0.146282,0.522362,0.0252909,0.851535,0.414189,0.0987557,0.00720698,0.355666,0.942053,0.416647,0.618117,0.926921,0.279763,0.070002,0.0208315,0.637007,0.661013,0.956044,0.400709,0.162908,0.828256,0.515763,0.743011,0.0982628,0.472407,0.711142,0.47228,0.134633,0.161776,0.304577,0.250471,0.426955,0.396353,0.412076,0.58669,0.55456,0.313837,0.499467,0.427592,0.132011,0.195176,0.973216,0.0335413,0.0281075,0.0910252,0.399641,0.114105,0.758811,0.666226,0.438442,0.467975,0.517619,0.657798,0.517749,0.375949,0.681304,0.678981,0.97333,0.843525,0.124604,0.425179,0.149353,0.844954,0.725488,0.317263,0.11407,0.43855,0.203283,0.899116,0.789012,0.471871,0.717082,0.456574,0.37848,0.903837,0.206632,0.733581,0.665222,0.0262163,0.141407,0.057314,0.872997,0.852717,0.0308512,0.345504,0.826402,0.619735,0.849009,0.477112,0.731156,0.52371,0.822637,0.331235,0.590719,0.466095,0.981285,0.059979,0.364641,0.149105,0.262557,0.446354,0.815576,0.853383,0.50994,0.0444255,0.560849,0.545691,0.400182,0.106043,0.26546,0.098472,0.322848,0.010188,0.501267,0.100615,0.190611,0.644245,0.092331,0.133214,0.910765,0.658776,0.412018,0.356648,0.148995,0.273975,0.667603,0.528444,0.297481,0.375149,0.12879,0.225542,0.774201,0.729274,0.138225,0.267798,0.657003,0.363665,0.135533,0.507967,0.592104,0.592812,0.852549,0.840404,0.913592,0.972843,0.869824,0.869949,0.350472,0.184419,0.416367,0.331393,0.252888,0.621238,0.703942,0.786944,0.900172,0.440931,0.952331,0.695075,0.155853,0.857071,0.935719,0.928808,0.434406,0.577864,0.796786,0.764898,0.212717,0.989469,0.291873,0.605728,0.543834,0.140703,0.418495,0.452364,0.76815,0.234372,0.669813,0.759111,0.754223,0.484118,0.32123,0.470429,0.796134,0.428799,0.866082,0.522919,0.157452,0.332295,0.930481,0.695161,0.825683,0.655057,0.101461,0.124323,0.496694,0.834136,0.279382,0.915841,0.0928375,0.257293,0.210828,0.911385,0.75672,0.237641,0.902756,0.502006,0.798422,0.500661,0.263515,0.401763,0.670718,0.83129,0.250101,0.684674,0.121811,0.389836,0.816086,0.359028,0.46449,0.356082,0.565298,0.26783,0.955436,0.362329,0.632031,0.352134,0.604583,0.13576,0.911396,0.143462,0.647435,0.941969,0.167958,0.903985,0.100839,0.0510588,0.653053,0.172322,0.557143,0.844177,0.811771,0.772455,0.973362,0.0123925,0.704692,0.130119,0.546883,0.631153,0.852373,0.253898,0.541258,0.182913,0.928904,0.799528,0.521215,0.30563,0.963037,0.749671,0.693971,0.123802,0.142602,0.811941,0.54328,0.248345,0.162974,0.247703,0.881821,0.169909,0.377562,0.571491,0.421678,0.287513,0.262696,0.384619,0.336149,0.642673,0.608772,0.946699,0.746766,0.583826,0.942386,0.580611,0.326721,0.695138,0.480414,0.704411,0.304899,0.58812,0.470029,0.254306,0.214511,0.886637,0.94754,0.587322,0.948909,0.72568,0.524795,0.401936,0.942873,0.237371,0.617704,0.841933,0.780259,0.879225,0.192092,0.00162756,0.80088,0.241385,0.34656,0.537952,0.592171,0.300935,0.52054,0.78192,0.0070824,0.0163293,0.744761,0.759009,0.347299,0.230865,0.75763,0.924917,0.21029,0.601952,0.957079,0.684373,0.583749,0.290837,0.605385,0.270626,0.700805,0.669037,0.689796,0.894677,0.864477,0.523035,0.355201,0.742667,0.492963,0.270396,0.174181,0.106983,0.531401,0.542532,0.508476,0.164093,0.02787,0.249914,0.294782,0.588821,0.116249,0.574966,0.68283,0.197689,0.507374,0.96133,0.160194,0.414901,0.31101,0.827424,0.257723,0.149928,0.720618,0.0845551,0.538871,0.897887,0.735919,0.962682,0.905959,0.932518,0.411366,0.629643,0.275532,0.958344,0.300269,0.63321,0.496018,0.13955,0.0674517,0.479084,0.908899,0.720743,0.599488,0.0461423,0.558522,0.947893,0.0368846,0.00372231,0.912233,0.0595897,0.433579,0.538554,0.776531,0.516706,0.784662,0.321483,0.782259,0.543819,0.610877,0.839909,0.794227,0.740321,0.770382,0.398345,0.516118,0.725006,0.20654,0.571155,0.115771,0.943593,0.848864,0.209776,0.646488,0.668285,0.622166,0.883553,0.924061,0.254554,0.765987,0.500743,0.975059,0.265146,0.826709,0.262509,0.789178,0.265715,0.661185,0.609119,0.875295,0.716384,0.0407376,0.119107,0.972418,0.886753,0.525435,0.266801,0.722546,0.51997,0.450649,0.840427,0.409582,0.467141,0.367842,0.275097,0.00261605,0.777035,0.465436,0.229544,0.364174,0.767395,0.471549,0.609062,0.283739,0.870042,0.123873,0.548798,0.715758,0.953555,0.252275,0.834905,0.114706,0.0125334,0.666427,0.114888,0.766114,0.15773,0.753385,0.0467623,0.513834,0.203709,0.545951,0.236424,0.455251,0.735086,0.0471916,0.348303,0.782409,0.904528,0.382385,0.772853,0.522299,0.752928,0.623577,0.912161,0.652934,0.467396,0.965302,0.386047,0.668459,0.423386,0.426558,0.909499,0.409347,0.387941,0.617695,0.611542,0.845304,0.929509,0.877939,0.678563,0.209213,0.0210702,0.0701786,0.930638,0.353967,0.199083,0.681715,0.0353953,0.0248854,0.590476,0.753251,0.637215,0.949336,0.719315,0.713704,0.497379,0.848542,0.273763,0.759544,0.837422,0.986718,0.510429,0.740035,0.339493,0.975391,0.785848,0.932503,0.166303,0.377591,0.319718,0.580687,0.150953,0.118182,0.657877,0.303499,0.336494,0.688497,0.512539,0.819436,0.531336,0.896165,0.258325,0.899084,0.946255,0.00408709,0.84691,0.188946,0.304842,0.787728,0.8443,0.262646,0.832031,0.126841,0.321859,0.327855,0.0678737,0.881861,0.614093,0.00610328,0.499761,0.448644,0.35298,0.661425,0.293288,0.127985,0.272793,0.108682,0.760416,0.989032,0.468576,0.430175,0.71391,0.436253,0.413019,0.142298,0.307567,0.903157,0.0998536,0.0654067,0.536441,0.54954,0.903441,0.102258,0.299373,0.206374,0.329629,0.397598,0.0978062,0.841064,0.300808,0.788965,0.489896,0.669894,0.17792,0.38089,0.229846,0.448388,0.598953,0.727969,0.27087,0.373085,0.140019,0.974959,0.821019,0.783058,0.418614,0.0575807,0.338765,0.993937,0.767933,0.790273,0.525947,0.243718,0.289872,0.573788,0.103686,0.442397,0.35263,0.621455,0.532903,0.548277,0.0353071,0.247799,0.221826,0.935671,0.618644,0.936144,0.730534,0.722363,0.520116,0.244492,0.188333,0.581311,0.271891,0.580792,0.629423,0.75052,0.487812,0.62346,0.0386152,0.588109,0.769895,0.492131,0.97783,0.270093,0.221712,0.199667,0.961455,0.225353,0.700899,0.334047,0.421326,0.439408,0.566899,0.477842,0.326309,0.65468,0.960237,0.791149,0.954026,0.535904,0.35023,0.672023,0.257914,0.586938,0.376024,0.0187382,0.834584,0.607841,0.980602,0.791994,0.554982,0.990249,0.309079,0.875141,0.87464,0.897383,0.399121,0.310971,0.968562,0.839295,0.585758,0.455426,0.926253,0.0799363,0.594478,0.551614,0.851342,0.303414,0.259615,0.15271,0.144096,0.819879,0.159069,0.962588,0.716841,0.221818,0.851154,0.160762,0.729648,0.511994,0.967324,0.030536,0.550057,0.489187,0.234448,0.68022,0.262424,0.97863,0.85743,0.356288,0.354669,0.744962,0.854971,0.233582,0.933477,0.637191,0.366556,0.392001,0.443304,0.0477781,0.654887,0.103931,0.644173,0.379741,0.334366,0.624224,0.643701,0.765372,0.749496,0.715594,0.224652,0.989911,0.166724,0.717729,0.740553,0.265917,0.192157,0.448059,0.910661,0.451943,0.905666,0.791689,0.971349,0.186952,0.432696,0.0798028,0.0660587,0.656336,0.190512,0.898395,0.633743,0.462812,0.097059,0.289053,0.808729,0.987283,0.822369,0.594991,0.289664,0.104054,0.176587,0.352031,0.0618406,0.5754,0.238061,0.788458,0.938744,0.17734,0.325187,0.0444649,0.764591,0.0849146,0.828932,0.890242,0.0833681,0.972393,0.377076,0.899534,0.66444,0.387072,0.374333,0.0228985,0.287839,0.405204,0.92482,0.235056,0.401813,0.123632,0.209996,0.0272009,0.932513,0.871331,0.453439,0.812923,0.120024,0.25067,0.957924,0.849781,0.635966,0.46646,0.88548,0.739148,0.594118,0.686637,0.289529,0.58744,0.0382414,0.889021,0.141091,0.781287,0.443291,0.38125,0.0393795,0.442164,0.9878,0.30622,0.478739,0.912581,0.223724,0.740951,0.279806,0.428653,0.151281,0.995433,0.210064,0.564711,0.933881,0.877244,0.196172,0.616506,0.97381,0.818454,0.0768762,0.290574,0.618765,0.701533,0.580536,0.1702,0.875021,0.128854,0.0277586,0.879204,0.642044,0.206111,0.568195,0.694243,0.629935,|0.703085,0.0245189,0.30456,0.556006,0.216957,0.943742,0.619078,0.911831,0.552924,0.176991,0.150255,0.502297,0.937769,0.954144,0.4613,0.231065,0.493042,0.241368,0.897654,0.444283,0.866751,0.517381,0.374856,0.0459095,0.591485,0.452584,0.529856,0.504655,0.752808,0.690019,0.22498,0.130712,0.233527,0.551874,0.632003,0.265445,0.918481,0.155438,0.978931,0.474377,0.74221,0.223093,0.813111,0.81968,0.511505,0.844409,0.182751,0.735385,0.420311,0.190865,0.574764,0.824543,0.30491,0.839154,0.70822,0.296977,0.326202,0.92527,7.56979e-05,0.0597183,0.342278,0.936614,0.532992,0.581324,0.751974,0.260324,0.4019,0.830746,0.0657148,0.587524,0.0829233,0.651149,0.0562832,0.638443,0.111241,0.712871,0.309632,0.337078,0.0782861,0.0359309,0.427492,0.792282,0.175262,0.820613,0.0516792,0.354046,0.807813,0.764042,0.963762,0.770529,0.557853,0.457854,0.988246,0.403647,0.0333002,0.508509,0.689589,0.888804,0.0241166,0.170618,0.633186,0.618631,0.326076,0.588517,0.00637388,0.555341,0.911053,0.11628,0.149215,0.246661,0.155838,0.262374,0.872036,0.0484939,0.69747,0.610169,0.446166,0.807925,0.111963,0.520152,0.534051,0.841763,0.885423,0.613721,0.934869,0.587543,0.755465,0.653835,0.907537,0.0335424,0.726048,0.0757055,0.0639893,0.992909,0.504318,0.374679,0.0139329,0.950386,0.304433,0.531169,0.589937,0.0860621,0.942137,0.197229,0.96872,0.137794,0.369248,0.282053,0.383191,0.796905,0.896024,0.305966,0.470255,0.330674,0.571449,0.0307503,0.55613,0.147688,0.42746,0.453682,0.112324,0.0522804,0.741095,0.155693,0.443687,0.786348,0.113229,0.699774,0.460223,0.278476,0.544426,0.0161918,0.730233,0.191694,0.768186,0.877303,0.223902,0.285305,0.681275,0.790095,0.270463,0.639107,0.814408,0.203681,0.988058,0.67516,0.199229,0.730174,0.144904,0.480631,0.409508,0.128163,0.740694,0.267382,0.517752,0.598267,0.659766,0.222089,0.650512,0.655475,0.484195,0.0662485,0.282814,0.203072,0.60323,0.516165,0.326382,0.122482,0.718884,0.331634,0.637735,0.199642,0.416879,0.818928,0.0719016,0.133914,0.817096,0.748398,0.591004,0.733865,0.691307,0.555778,0.245933,0.667472,0.163654,0.24386,0.543024,0.964961,0.924577,0.175096,0.648375,0.824555,0.669343,0.916167,0.191007,0.599607,0.960917,0.0269603,0.856078,0.696687,0.973489,0.425261,0.575314,0.161658,0.525064,0.145694,0.0935642,0.432007,0.935336,0.350009,0.747675,0.303184,0.727551,0.869993,0.525043,0.0282591,0.206532,0.6147,0.142081,0.244961,0.138524,0.44986,0.0935366,0.722213,0.632941,0.329626,0.168043,0.567175,0.303475,0.136937,0.704072,0.462327,0.944082,0.614284,0.878282,0.35579,0.742393,0.921979,0.896047,0.685694,0.855817,0.289741,0.397832,0.666237,0.898208,0.084343,0.620569,0.696316,0.772764,0.63511,0.580154,0.312982,0.448065,0.402759,0.0175817,0.775243,0.461699,0.0628372,0.545253,0.399781,0.0174839,0.600397,0.455324,0.523573,0.0812274,0.0349342,0.87604,0.112008,0.928912,0.588977,0.450226,0.0835693,0.779556,0.730297,0.695173,0.274931,0.722684,0.00971794,0.799151,0.592675,0.520472,0.601057,0.229336,0.853414,0.201309,0.561969,0.162339,0.940628,0.0881789,0.967399,0.604044,0.665034,0.826008,0.358292,0.614466,0.0327565,0.0919812,0.144624,0.402206,0.359881,0.280035,0.825876,0.18783,0.765167,0.996081,0.147913,0.726774,0.968995,0.100242,0.996697,0.931662,0.251594,0.453715,0.223454,0.292202,0.833215,0.0152021,0.183097,0.577823,0.471112,0.699806,0.704401,0.684008,0.110979,0.494948,0.170631,0.207661,0.645729,0.66076,0.239988,0.0733647,0.477276,0.185299,0.637544,0.830623,0.447658,0.968795,0.242153,0.200237,0.595555,0.119771,0.134824,0.696154,0.60996,0.132267,0.737455,0.21283,0.0574452,0.658228,0.424616,0.588689,0.00545919,0.842537,0.171309,0.004852,0.00808787,0.92189,0.689938,0.385248,0.73434,0.465522,0.199477,0.579529,0.71301,0.821899,0.803359,0.762655,0.698467,0.180905,0.729785,0.278338,0.469134,0.126129,0.810237,0.108696,0.560284,0.983914,0.842925,0.414582,0.142256,0.203324,0.403489,0.668926,0.642754,0.174429,0.205644,0.955406,0.767527,0.599945,0.124921,0.411874,0.016173,0.0605668,0.231863,0.432418,0.698264,0.319325,0.412501,0.165613,0.429162,0.525018,0.348325,0.56548,0.931016,0.0956353,0.33936,0.747098,0.160669,0.661714,0.404153,0.361431,0.113455,0.0522077,0.23918,0.537429,0.123051,0.736684,0.439385,0.386513,0.43786,0.94697,0.167229,0.511359,0.984806,0.237949,0.390616,0.212466,0.341526,0.0347682,0.283429,0.114004,0.973625,0.525679,0.933874,0.0564618,0.760123,0.319426,0.22295,0.848563,0.507902,0.45363,0.856923,0.161281,0.812469,0.843717,0.918964,0.0607803,0.530491,0.251027,0.237654,0.369263,0.654295,0.444753,0.193744,0.0447127,0.234935,0.572793,0.235724,0.406726,0.143632,0.240536,0.433641,0.218326,0.611638,0.69787,0.579523,0.199883,0.217695,0.743168,0.730253,0.272111,0.731088,0.163748,0.4575,0.670296,0.125678,0.59751,0.630689,0.0810085,0.975695,0.892402,0.912002,0.403378,0.116022,0.457153,0.730697,0.180299,0.858619,0.772533,0.184763,0.713484,0.544374,0.573509,0.933256,0.438032,0.285086,0.690441,0.833906,0.404218,0.472448,0.825635,0.803139,0.943013,0.119049,0.598542,0.187032,0.661658,0.559911,0.525213,0.874313,0.657379,0.421922,0.481761,0.122682,0.372523,0.175358,0.362414,0.655736,0.93624,0.442103,0.383315,0.897796,0.816264,0.649241,0.263727,0.430451,0.946788,0.784513,0.52987,0.734787,0.0104513,0.775128,0.499218,0.11048,0.363348,0.0543416,0.32202,0.0667017,0.552679,0.0861445,0.420054,0.965723,0.891169,0.330097,0.1279,0.349754,0.936491,0.541172,0.761478,0.0266198,0.843734,0.265835,0.290797,0.777811,0.740183,0.639437,0.566665,0.0747602,0.316037,0.182433,0.925896,0.398538,0.835893,0.0883361,0.243008,0.0140936,0.968906,0.42053,0.113104,0.514303,0.548567,0.468532,0.853218,0.287991,0.37038,0.984604,0.74078,0.917484,0.356153,0.429525,0.970824,0.92129,0.206087,0.687928,0.30893,0.496775,0.459569,0.951919,0.644721,0.391583,0.548633,0.821593,0.602097,0.125615,0.105738,0.958483,0.128598,0.461211,0.298367,0.272454,0.888117,0.470174,0.561234,0.269401,0.485806,0.0510517,0.714996,0.234188,0.66561,0.998351,0.497787,0.575153,0.507044,0.586541,0.398778,0.544279,0.569578,0.238873,0.798311,0.271811,0.378233,0.726626,0.78195,0.409154,0.293559,0.716114,0.174514,0.724142,0.91108,0.143165,0.923194,0.614494,0.0410919,0.560829,0.828311,0.790014,0.906895,0.251894,0.336329,0.903236,0.377432,0.187634,0.289714,0.688147,0.165942,0.852322,0.19063,0.336231,0.395027,0.735883,0.210172,0.269821,0.175595,0.383336,0.938577,0.452783,0.0361168,0.62832,0.63243,0.255383,0.747315,0.275966,0.127888,0.554239,0.207178,0.691363,0.196422,0.263974,0.524032,0.20292,0.452989,0.546148,0.996346,0.269168,0.366662,0.148364,0.200316,0.773112,0.279109,0.931214,0.952407,0.508614,0.653481,0.093523,0.766015,0.424034,0.845822,0.0798902,0.00777757,0.738678,0.294692,0.159328,0.429379,0.474481,0.255521,0.0685838,0.707503,0.357971,0.173587,0.124982,0.606879,0.721356,0.284426,0.984294,0.758376,0.977511,0.0395344,0.872981,0.221649,0.287819,0.837027,0.128869,0.683326,0.215877,0.14767,0.693049,0.251723,0.227863,0.989946,0.313838,0.0169128,0.331728,0.116761,0.588811,0.658735,0.701023,0.291721,0.320271,0.760869,0.619062,0.449386,0.423359,0.924513,0.352768,0.935959,0.929375,0.45841,0.107692,0.0884205,0.23341,0.842983,0.792032,0.404916,0.571862,0.416822,0.474934,0.375577,0.65392,0.0425349,0.859087,0.998982,0.723244,0.834906,0.312678,0.833222,0.125253,0.663932,0.602378,0.827646,0.00564325,0.140043,0.605193,0.171543,0.466072,0.100746,0.3533,0.113681,0.400457,0.598754,0.949311,0.262278,0.440165,0.183858,0.054562,0.0876588,0.243743,0.910075,0.153605,0.661938,0.807048,0.0865397,0.632119,0.857108,0.733415,0.070848,0.0453766,0.034112,0.748767,0.310812,0.605317,0.193216,0.397948,0.963609,0.207246,0.892552,0.135193,0.912866,0.123873,0.0138256,0.0665943,0.0661845,0.267912,0.277743,0.945738,0.739428,0.584073,0.792161,0.814335,0.558703,0.371353,0.572001,0.528326,0.521686,0.985202,0.0916725,0.721105,0.104876,0.278522,0.330272,0.92076,0.42424,0.119591,0.677219,0.322039,0.88619,0.69302,0.427428,0.894549,0.469594,0.163241,0.584605,0.537392,0.260655,0.404836,0.0136707,0.361186,0.679658,0.643725,0.957941,0.677303,0.503192,0.432605,0.477297,0.927765,0.936422,0.132664,0.0456886,0.261148,0.0189672,0.883781,0.759258,0.178462,0.963719,0.547897,0.779042,0.23543,0.471535,0.781876,0.41822,0.778836,0.655391,0.378172,0.404205,0.413403,0.33776,0.505851,0.669829,0.342695,0.449946,0.193867,0.970155,0.0130515,0.558786,0.800144,0.426117,0.770674,0.165283,0.197853,0.435276,0.594294,0.482196,0.007994,0.819527,0.196734,0.628271,0.776395,0.439475,0.983527,0.5453,0.577249,0.463628,0.17441,0.87762,0.541119,0.967995,0.115553,0.685593,0.901803,0.0248731,0.527015,0.0969688,0.366316,0.290742,0.216769,0.423343,0.698589,0.18991,0.130832,0.890362,0.567078,0.940872,0.367691,0.770183,0.0261841,0.853605,0.40082,0.901511,0.749882,0.118508,0.948428,0.927649,0.255093,0.595934,0.988729,0.380641,0.886111,0.320244,0.634521,0.732719,0.174564,0.0680018,0.218086,0.975749,0.699862,0.998508,0.332644,0.584955,0.757918,0.280052,0.185949,0.0360502,0.872254,0.563634,0.623961,0.145311,0.702265,0.30445,0.129404,0.520693,0.327087,0.634912,0.806573,0.581215,0.659173,0.647677,0.861008,0.498484,0.095273,0.826239,0.141298,|0.941656,0.30343,0.145889,0.189791,0.703139,0.306251,0.137196,0.819471,0.466401,0.489022,0.715327,0.204192,0.639554,0.456243,0.56968,0.461101,0.0753133,0.742191,0.8807,0.322175,0.202661,0.851874,0.117789,0.635579,0.342984,0.15657,0.754398,0.179466,0.297609,0.991585,0.021536,0.213032,0.0916046,0.913384,0.53477,0.164482,0.0355185,0.0218618,0.346405,0.84596,0.557124,0.369256,0.981965,0.245718,0.40504,0.555048,0.467062,0.903061,0.913127,0.262635,0.253625,0.63813,0.322868,0.55564,0.141214,0.534078,0.500084,0.115099,0.810604,0.410543,0.417692,0.144339,0.835047,0.176877,0.493959,0.969693,0.00533485,0.902842,0.395297,0.235289,0.582094,0.902846,0.0212805,0.848269,0.310859,0.405524,0.882682,0.19528,0.878392,0.0602483,0.853169,0.361722,0.929713,0.583014,0.952344,0.339351,0.258666,0.0729067,0.853043,0.55934,0.984015,0.917103,0.833558,0.717956,0.617309,0.412831,0.95029,0.65673,0.0974859,0.215466,0.716272,0.557822,0.370815,0.854788,0.70292,0.471582,0.745244,0.859716,0.0953019,0.827917,0.838624,0.148205,0.0552679,0.00710338,0.944079,0.542129,0.988793,0.159669,0.00791883,0.606363,0.230854,0.034783,0.176996,0.018243,0.539398,0.483599,0.88778,0.4155,0.0740682,0.544435,0.758026,0.216877,0.879951,0.772428,0.536051,0.190365,0.721381,0.655116,0.753017,0.594914,0.66009,0.012027,0.230208,0.168331,0.0938933,0.728667,0.764624,0.161729,0.0685661,0.408551,0.510467,0.400257,0.348041,0.803307,0.769781,0.0322345,0.128578,0.252291,0.184674,0.153706,0.620384,0.733173,0.725279,0.150209,0.0437847,0.168245,0.532074,0.615532,0.117953,0.0418896,0.349409,0.506521,0.614356,0.461043,0.168835,0.954374,0.860552,0.602985,0.885402,0.123161,0.738048,0.489903,0.5326,0.64642,0.0287646,0.537188,0.27551,0.0795724,0.46657,0.710404,0.769492,0.564079,0.285791,0.532422,0.186494,0.236475,0.638459,0.231526,0.595354,0.0856016,0.163606,0.45444,0.133831,0.0399547,0.810081,0.064607,0.247513,0.314483,0.931579,0.69425,0.170587,0.755844,0.616316,0.238434,0.918812,0.599965,0.246455,0.0478582,0.920894,0.628894,0.842199,0.023828,0.180668,0.854841,0.883133,0.387518,0.388573,0.179197,0.654911,0.0936576,0.325671,0.613036,0.42917,0.0982,0.322159,0.949806,0.632963,0.485618,0.386194,0.493869,0.181076,0.591453,0.182717,0.300641,0.723136,0.51648,0.314553,0.0636271,0.942554,0.92761,0.450373,0.841014,0.335423,0.142929,0.210726,0.84774,0.751972,0.54343,0.598023,0.336847,0.16177,0.39958,0.784907,0.790059,0.0349405,0.172517,0.956176,0.338097,0.239823,0.635533,0.128346,0.0743746,0.778065,0.766153,0.56232,0.151372,0.626308,0.598758,0.0143065,0.419945,0.368065,0.965292,0.0880498,0.210822,0.104475,0.621337,0.676823,0.790401,0.0359391,0.435624,0.680838,0.795799,0.546952,0.274854,0.717574,0.0866351,0.0272582,0.972607,0.56261,0.9608,0.38681,0.566727,0.932174,0.112829,0.843031,0.538275,0.704808,0.159774,0.751409,0.951606,0.507046,0.678039,0.11308,0.806822,0.440271,0.965587,0.593282,0.319826,0.550538,0.927091,0.227299,0.960441,0.444643,0.501144,0.768621,0.582633,0.241954,0.648724,0.787801,0.124804,0.857681,0.687923,0.477361,0.0672843,0.61266,0.875945,0.855784,0.942087,0.00698513,0.976416,0.738919,0.163899,0.0325146,0.729642,0.880087,0.350612,0.321032,0.810885,0.481016,0.959679,0.701536,0.15742,0.2694,0.894525,0.331035,0.896219,0.895739,0.479645,0.127525,0.015319,0.155942,0.779509,0.945201,0.439119,0.902283,0.45015,0.739249,0.0948448,0.256097,0.813631,0.789018,0.498229,0.111533,0.171668,0.888741,0.134806,0.787373,0.802021,0.163541,0.15935,0.68744,0.593875,0.638678,0.50196,0.352773,0.260393,0.463164,0.498709,0.971343,0.5471,0.83131,0.968486,0.743,0.920991,0.549958,0.806578,0.370807,0.764833,0.0753969,0.518366,0.714712,0.15146,0.248421,0.34768,0.374408,0.354441,0.841278,0.372083,0.526439,0.293709,0.856439,0.763622,0.770086,0.0789096,0.381527,0.517849,0.763652,0.226312,0.0754609,0.118216,0.244696,0.544694,0.532126,0.66123,0.521191,0.881275,0.0682707,0.132027,0.142427,0.645972,0.50521,0.414259,0.979331,0.502805,0.87163,0.650136,0.368226,0.60924,0.82762,0.535592,0.397498,0.00170386,0.064113,0.440042,0.823759,0.367674,0.915896,0.245073,0.765689,0.666896,0.158871,0.351465,0.678519,0.653821,0.623735,0.835028,0.577827,0.604351,0.0497335,0.662483,0.0815811,0.558855,0.701401,0.901823,0.312182,0.614679,0.454585,0.387154,0.372478,0.231134,0.276474,0.560903,0.669106,0.11667,0.890689,0.879086,0.0228658,0.895986,0.826042,0.833526,0.5609,0.286812,0.424034,0.642579,0.510499,0.54704,0.570881,0.990876,0.854613,0.270319,0.969436,0.502128,0.992735,0.447828,0.0735798,0.114192,0.124843,0.0717109,0.704479,0.26134,0.645819,0.0996226,0.000902593,0.76698,0.206057,0.193098,0.674465,0.322541,0.68816,0.274333,0.235853,0.724985,0.345674,0.30354,0.645405,0.959914,0.478303,0.215322,0.93358,0.902913,0.449317,0.556872,0.929004,0.496506,0.560127,0.00808877,0.511317,0.540614,0.386266,0.125892,0.85134,0.659425,0.451305,0.611646,0.146492,0.718941,0.269289,0.856762,0.97315,0.37347,0.536481,0.0994713,0.0888247,0.845053,0.554957,0.0797228,0.444768,0.187696,0.0970688,0.0632648,0.198051,0.540708,0.457124,0.950586,0.0815177,0.40895,0.625227,0.844874,0.0729094,0.886652,0.394906,0.045595,0.654535,0.316657,0.642817,0.443363,0.678803,0.184478,0.608666,0.944858,0.679059,0.878231,0.68973,0.109608,0.166243,0.520197,0.405012,0.524626,0.996167,0.809693,0.50667,0.621262,0.855402,0.26701,0.196929,0.80918,0.992019,0.418299,0.0442762,0.281889,0.389665,0.878957,0.763346,0.0216424,0.61856,0.987149,0.212052,0.0928773,0.772643,0.565465,0.313827,0.97423,0.283421,0.183464,0.637831,0.346733,0.315343,0.228772,0.209791,0.116276,0.997271,0.915269,0.265538,0.910303,0.693269,0.38001,0.0570441,0.854279,0.688761,0.797772,0.305604,0.217808,0.690848,0.444979,0.061941,0.98599,0.595388,0.594505,0.231798,0.471834,0.480068,0.94436,0.721085,0.148003,0.276988,0.444972,0.256405,0.258834,0.792673,0.508379,0.725475,0.311905,0.725511,0.946593,0.417554,0.524389,0.520062,0.0443026,0.932459,0.843282,0.629595,0.124309,0.167501,0.15439,0.669128,0.207383,0.134741,0.502437,0.820965,0.441869,0.0210538,0.457868,0.860254,0.891016,0.622108,0.329765,0.0441275,0.116406,0.575021,0.518083,0.322627,0.745901,0.348545,0.888693,0.405641,0.919988,0.590369,0.356326,0.428371,0.819123,0.516257,0.260975,0.0930532,0.910275,0.961129,0.693128,0.655621,0.426009,0.183963,0.895796,0.216435,0.510198,0.0271948,0.0135057,0.97657,0.735916,0.0371238,0.731847,0.137262,0.307088,0.910681,0.58264,0.403351,0.00472969,0.62698,0.143221,0.621822,0.399349,0.37926,0.0275763,0.38027,0.41518,0.861096,0.837266,0.777387,0.120194,0.640015,0.795375,0.206679,0.720879,0.588276,0.14545,0.909414,0.611918,0.484395,0.337115,0.85556,0.147323,0.348788,0.609443,0.262321,0.84103,0.32595,0.831246,0.571619,0.286278,0.371231,0.154173,0.107195,0.442643,0.486103,0.053917,0.548264,0.522204,0.198277,0.411719,0.976216,0.853839,0.58528,0.255174,0.422378,0.715675,0.184892,0.333966,0.0414335,0.831515,0.565582,0.590015,0.690621,0.905635,0.267069,0.798579,0.61025,0.396354,0.748998,0.161404,0.963154,0.415374,0.935161,0.659319,0.045323,0.123337,0.489486,0.466035,0.717691,0.935824,0.223359,0.742183,0.626895,0.638355,0.360475,0.0455084,0.916688,0.138294,0.563642,0.459456,0.80702,0.426234,0.819052,0.142006,0.153437,0.305971,0.429738,0.715612,0.154119,0.245993,0.296693,0.725484,0.210771,0.235345,0.301215,0.582973,0.168816,0.538325,0.534444,0.617339,0.704463,0.814091,0.30274,0.733831,0.75136,0.987601,0.966784,0.948167,0.512004,0.647617,0.0444396,0.699837,0.0698482,0.862558,0.401703,0.803873,0.477379,0.192458,0.244923,0.539345,0.221268,0.32279,0.407607,0.763063,0.961365,0.761511,0.639714,0.936078,0.198115,0.584064,0.515838,0.95246,0.595833,0.957658,0.273886,0.131832,0.844376,0.678901,0.354886,0.0794467,0.582689,0.141684,0.957253,0.331843,0.249161,0.240144,0.086952,0.634897,0.780453,0.698346,0.00356334,0.250684,0.640111,0.693148,0.370585,0.371931,0.637748,0.263247,0.243607,0.525333,0.0295069,0.682841,0.568075,0.352841,0.915488,0.0474979,0.507708,0.254754,0.532112,0.126041,0.0373501,0.0130064,0.278049,0.870276,0.714213,0.166536,0.994467,0.331181,0.801843,0.392768,0.569422,0.378619,0.88178,0.970023,0.546164,0.445172,0.260545,0.582972,0.155595,0.332101,0.871622,0.452294,0.391653,0.78298,0.741939,0.914535,0.0606037,0.663367,0.988416,0.363036,0.169422,0.441328,0.703262,0.254118,0.697884,0.691369,0.0511615,0.631419,0.432411,0.86889,0.853805,0.463483,0.0670291,0.408564,0.653441,0.0868812,0.383078,0.571364,0.345665,0.0689445,0.181655,0.121843,0.78866,0.565459,0.911379,0.376782,0.433879,0.312796,0.790773,0.970189,0.956871,0.81542,0.0152091,0.341079,0.00897461,0.509088,0.385687,0.842972,0.490243,0.131207,0.442517,0.558466,0.276951,0.789244,0.569374,0.688347,0.3714,0.109834,0.612218,0.638005,0.0342013,0.0167759,0.00737125,0.764686,0.0427417,0.559841,0.600611,0.335334,0.737398,0.608665,0.490323,0.535677,0.785038,0.300469,0.238819,0.136585,0.400463,0.176837,0.117814,0.587005,0.866451,0.351724,0.434255,0.699686,0.623881,0.0795491,0.71046,0.404165,0.25496,0.614445,0.768789,0.987594,0.480775,0.475141,0.802156,0.849872,0.492906,0.6344,0.325178,0.883014,0.835489,0.406807,0.291268,0.288659,|0.854684,0.458057,0.234818,0.836801,0.07876,0.532179,0.0167339,0.361514,0.953704,0.930831,0.415237,0.26834,0.323217,0.459153,0.938535,0.823481,0.0916626,0.586005,0.824377,0.970399,0.911011,0.533635,0.381749,0.367738,0.885809,0.138224,0.585961,0.0925372,0.623694,0.309908,0.0593762,0.785182,0.36782,0.643693,0.429407,0.522838,0.855968,0.166992,0.745945,0.981172,0.993695,0.598782,0.808778,0.914156,0.432234,0.647845,0.684215,0.631432,0.194054,0.648997,0.334446,0.588205,0.0152986,0.979724,0.141481,0.7085,0.881018,0.775987,0.585066,0.420231,0.474213,0.584007,0.232369,0.289395,0.448494,0.226982,0.174628,0.5404,0.517854,0.346769,0.654227,0.924119,0.333274,0.809764,0.436364,0.997151,0.411448,0.136233,0.0554042,0.807285,0.922592,0.164385,0.883457,0.396245,0.445444,0.428434,0.140525,0.306539,0.08689,0.358097,0.453619,0.0914038,0.100088,0.452441,0.00896263,0.335104,0.0145915,0.0679841,0.576153,0.468724,0.5499,0.266444,0.503558,0.245913,0.314007,0.380219,0.797188,0.787487,0.119541,0.412954,0.0702775,0.640471,0.140246,0.669573,0.459685,0.425238,0.861858,0.602965,0.41332,0.0857189,0.182008,0.53586,0.231712,0.0661787,0.295268,0.0986332,0.793356,0.778908,0.28503,0.81572,0.70994,0.5193,0.461908,0.660544,0.945183,0.851865,0.170331,0.646332,0.077213,0.0678693,0.182071,0.747323,0.505183,0.143958,0.00451565,0.310918,0.0188147,0.617519,0.671658,0.314937,0.384548,0.941987,0.333849,0.627403,0.286629,0.823606,0.38557,0.622198,0.471129,0.301054,0.0598302,0.404785,0.335065,0.838459,0.173932,0.207716,0.978195,0.864264,0.420124,0.126296,0.612145,0.309301,0.513137,0.0605911,0.387588,0.823169,0.493467,0.45489,0.716155,0.903173,0.688052,0.714035,0.00969505,0.199593,0.674056,0.952931,0.230537,0.998741,0.527661,0.163976,0.459533,0.237312,0.30287,0.774464,0.515041,0.58876,0.948737,0.187705,0.96591,0.679712,0.942544,0.477561,0.574977,0.893115,0.98598,0.920282,0.643348,0.182703,0.336305,0.292788,0.221698,0.117245,0.322981,0.981598,0.0789887,0.707144,0.884995,0.567823,0.373509,0.94465,0.487338,0.283937,0.742822,0.0290735,0.859187,0.679764,0.832959,0.284732,0.104511,0.564348,0.357866,0.0259575,0.134068,0.731365,0.299936,0.410964,0.488653,0.766547,0.736062,0.068913,0.0458583,0.939297,0.108704,0.465669,0.687059,0.796314,0.232876,0.507648,0.364727,0.472669,0.672237,0.00680059,0.475048,0.595008,0.0700017,0.174137,0.943074,0.0898741,0.663486,0.202893,0.0643468,0.0432065,0.605843,0.733774,0.0209933,0.858695,0.943924,0.0907741,0.64488,0.546161,0.655993,0.0987608,0.389556,0.208743,0.862692,0.528637,0.537734,0.555402,0.628976,0.660969,0.987382,0.705117,0.480516,0.65353,0.179175,0.866596,0.255265,0.102282,0.824588,0.34455,0.730819,0.194063,0.816706,0.0141325,0.464398,0.413405,0.611959,0.920226,0.469036,0.213006,0.688944,0.0596317,0.00237954,0.219154,0.562637,0.694555,0.793729,0.381128,0.111041,0.337527,0.523119,0.679131,0.446134,0.841949,0.238573,0.0250666,0.789508,0.946606,0.141776,0.811505,0.93781,0.392811,0.509366,0.130863,0.422603,0.32149,0.0514362,0.326406,0.0904087,0.930542,0.124989,0.356684,0.979435,0.203064,0.448297,0.779389,0.0071196,0.787055,0.162799,0.0774618,0.166332,0.416034,0.341952,0.738303,0.973079,0.330607,0.05412,0.898859,0.209764,0.0356142,0.283864,0.793685,0.256113,0.347088,0.80887,0.37895,0.144655,0.194403,0.622635,0.881483,0.0448996,0.842165,0.256263,0.365247,0.678099,0.91065,0.899607,0.520041,0.337933,0.0402027,0.0338909,0.770786,0.470746,0.685736,0.472304,0.419609,0.0428199,0.636695,0.335221,0.745877,0.18309,0.840122,0.908798,0.834932,0.231087,0.830667,0.903275,0.117751,0.0530142,0.0111908,0.153846,0.869466,0.480612,0.840321,0.465293,0.0274544,0.568136,0.165752,0.134235,0.208471,0.701178,0.225697,0.441811,0.416478,0.10241,0.141308,0.729201,0.706804,0.297262,0.833102,0.690472,0.591604,0.427949,0.723342,0.880873,0.676773,0.16581,0.0374737,0.634798,0.254684,0.97953,0.177524,0.627098,0.132005,0.172681,0.130357,0.269114,0.633053,0.101457,0.651807,0.697916,0.250268,0.890411,0.28497,0.893893,0.473873,0.0304302,0.374858,0.245869,0.933847,0.197191,0.705007,0.751131,0.777948,0.0540012,0.877568,0.248716,0.481191,0.925811,0.497939,0.206012,0.421786,0.00196189,0.992732,0.85475,0.154947,0.805457,0.251817,0.502121,0.453814,0.985186,0.960504,0.560088,0.758249,0.106118,0.603078,0.890223,0.56615,0.518703,0.586787,0.819534,0.651109,0.12788,0.957711,0.301079,0.778018,0.408434,0.316694,0.385891,0.457026,0.200316,0.724033,0.974736,0.322711,0.333908,0.235165,0.0419724,0.88192,0.772651,0.410152,0.143397,0.416679,0.832104,0.491785,0.306392,0.177528,0.743805,0.685063,0.250717,0.256436,0.270116,0.882261,0.853206,0.142129,0.704877,0.588219,0.436015,0.0820693,0.17738,0.628068,0.979751,0.507085,0.345623,0.0524178,0.40703,0.86984,0.929896,0.654727,0.59865,0.120227,0.577631,0.485433,0.0125263,0.686989,0.689377,0.170819,0.338906,0.648177,0.638122,0.313368,0.98416,0.68586,0.48455,0.172323,0.93038,0.720536,0.0239241,0.185979,0.0888896,0.486203,0.831554,0.207715,0.776017,0.70544,0.199437,0.653186,0.0019173,0.016353,0.117424,0.86346,0.150814,0.681905,0.127672,0.581186,0.430789,0.445836,0.572279,0.995555,0.121779,0.417125,0.102835,0.368422,0.131199,0.91277,0.751037,0.374866,0.476503,0.576852,0.620021,0.958188,0.525519,0.00904322,0.788885,0.495978,0.327558,0.445683,0.811826,0.318095,0.83105,0.859525,0.0423014,0.00280744,0.312385,0.404421,0.0875051,0.0255104,0.265007,0.0881329,0.946223,0.590252,0.618746,0.398484,0.181592,0.32124,0.848946,0.535918,0.774006,0.557116,0.393775,0.218924,0.601909,0.0206384,0.058746,0.159577,0.480054,0.754235,0.0606525,0.421326,0.676515,0.532458,0.342004,0.0606494,0.373389,0.165797,0.417448,0.976097,0.635249,0.100851,0.153794,0.11517,0.359247,0.00972372,0.141548,0.618189,0.725757,0.191446,0.299307,0.159972,0.386937,0.220719,0.959726,0.789132,0.214575,0.234259,0.0329813,0.427766,0.579919,0.748358,0.892941,0.165175,0.63922,0.0875614,0.0334446,0.857925,0.230081,0.445429,0.368507,0.414273,0.394103,0.171314,0.383305,0.303454,0.458498,0.918935,0.105307,0.729391,0.248254,0.123621,0.434906,0.995021,0.894262,0.828918,0.379416,0.576827,0.872022,0.723048,0.841733,0.876169,0.279696,0.302589,0.313104,0.255466,0.256642,0.869405,0.133517,0.57859,0.772589,0.553252,0.275939,0.586089,0.909575,0.440735,0.212939,0.610936,0.94252,0.438727,0.859169,0.318976,0.0808276,0.169808,0.9794,0.784637,0.993169,0.0573117,0.489735,0.995143,0.30818,0.476752,0.744881,0.692883,0.805197,0.370995,0.610815,0.099969,0.353204,0.537944,0.130107,0.982032,0.348548,0.710271,0.641121,0.0224457,0.707481,0.426532,0.963718,0.364879,0.812231,0.869026,0.0925646,0.62112,0.0751004,0.569938,0.660906,0.0760401,0.874243,0.902351,0.454437,0.912948,0.429718,0.204517,0.378475,0.437749,0.472242,0.625777,0.0771072,0.333168,0.759383,0.0642874,0.0748404,0.0324574,0.892545,0.465151,0.652294,0.514087,0.926662,0.342877,0.209103,0.282326,0.958493,0.456607,0.618904,0.929053,0.316735,0.659821,0.460285,0.282678,0.69108,0.426001,0.64919,0.398946,0.766436,0.683777,0.517359,0.947727,0.434214,0.376265,0.359238,0.578714,0.560819,0.834773,0.541348,0.254097,0.449973,0.695322,0.258155,0.93802,0.976234,0.433725,0.255346,0.682347,0.306184,0.253968,0.491146,0.545349,0.963955,0.16041,0.988939,0.0268888,0.70009,0.818729,0.0563442,0.802276,0.0134168,0.847695,0.368335,0.727314,0.0469695,0.60001,0.103213,0.201749,0.918969,0.550061,0.343765,0.473238,0.889268,0.861884,0.36132,0.723599,0.485244,0.247119,0.370642,0.405588,0.557393,0.245059,0.582167,0.864033,0.804112,0.393681,0.445677,0.834086,0.0427576,0.608179,0.279797,0.231329,0.691134,0.860743,0.935091,0.114677,0.956816,0.762065,0.124632,0.822893,0.761816,0.147509,0.482435,0.44871,0.856959,0.827644,0.937786,0.260454,0.134278,0.848452,0.425036,0.824585,0.981349,0.801526,0.504969,0.998174,0.080605,0.553473,0.0952232,0.730003,0.963281,0.0334941,0.249758,0.185536,0.364624,0.451123,0.00159174,0.458846,0.908309,0.092957,0.160959,0.0682876,0.214323,0.799155,0.710541,0.20486,0.805359,0.848704,0.0388831,0.352793,0.595,0.812037,0.0267835,0.0590181,0.623873,0.335517,0.946661,0.502023,0.469192,0.791356,0.255148,0.529083,0.462545,0.976979,0.0947536,0.00208575,0.0175943,0.341741,0.129421,0.361516,0.88518,0.0147882,0.971026,0.789867,0.939253,0.0258237,0.452173,0.0445015,0.851496,0.601601,0.298352,0.308451,0.879455,0.0250823,0.189796,0.751424,0.302161,0.751994,0.436273,0.206829,0.582673,0.684497,0.520329,0.56685,0.435095,0.194077,0.527937,0.277058,0.371726,0.42402,0.68291,0.533855,0.379809,0.306569,0.550202,0.779127,0.299822,0.31189,0.95098,0.330674,0.733365,0.338223,0.324032,0.275736,0.533211,0.509274,0.054947,0.424078,0.923924,0.260835,0.211348,0.320882,0.252753,0.456118,0.340554,0.738212,0.206158,0.771859,0.36827,0.515708,0.976646,0.841981,0.656633,0.228806,0.141682,0.0456484,0.795967,0.470809,0.797358,0.168949,0.475329,0.180565,0.15678,0.983654,0.100475,0.753578,0.429165,0.843834,0.222771,0.952172,0.0378857,0.832516,0.775532,0.260556,0.38354,0.845027,0.0838402,0.927837,0.950201,0.579567,0.848739,0.42906,0.797421,0.69934,0.72532,0.257226,0.446645,0.240147,0.0706679,0.142465,0.370197,0.182218,0.601976,0.38223,0.485628,0.604458,0.295995,0.845551,|0.32534,0.485025,0.260882,0.569569,0.848373,0.601553,0.887087,0.157372,0.019392,0.969845,0.446808,0.916323,0.307739,0.950253,0.00754732,0.626798,0.180546,0.110099,0.0849177,0.280864,0.367198,0.516764,0.181666,0.502436,0.929605,0.621374,0.464865,0.0842212,0.176429,0.0375185,0.493506,0.316083,0.279788,0.623029,0.893238,0.203322,0.0332246,0.431506,0.146067,0.3416,0.820264,0.0215054,0.703716,0.462815,0.595717,0.507568,0.303062,0.69548,0.280453,0.260405,0.00448537,0.432053,0.450863,0.811581,0.949281,0.608515,0.847925,0.33836,0.0732173,0.772245,0.672072,0.0654401,0.638553,0.483659,0.993964,0.302427,0.96324,0.476573,0.405414,0.386153,0.725638,0.0782678,0.635038,0.846943,0.486663,0.357033,0.163743,0.317744,0.885838,0.194205,0.101639,0.345966,0.301953,0.477182,0.120065,0.205527,0.777633,0.266035,0.909254,0.0398547,0.384147,0.18271,0.276291,0.94143,0.987938,0.185205,0.640802,0.945065,0.46577,0.0599433,0.880135,0.931571,0.447745,0.277275,0.16226,0.053948,0.362282,0.426871,0.083155,0.306564,0.892015,0.349857,0.0404433,0.840028,0.428863,0.357492,0.435299,0.357966,0.185172,0.106495,0.0455224,0.202123,0.477743,0.802383,0.27278,0.738744,0.606113,0.382441,0.458841,0.61343,0.244406,0.986805,0.377459,0.991093,0.868696,0.710618,0.435114,0.397368,0.749646,0.494827,0.0827922,0.758301,0.538144,0.866304,0.157276,0.272296,0.163897,0.607489,0.228407,0.680584,0.342658,0.680476,0.366981,0.490455,0.334337,0.826399,0.932018,0.388548,0.834325,0.145661,0.121065,0.339522,0.659123,0.0583948,0.628172,0.408479,0.736364,0.167043,0.817106,0.530444,0.082448,0.252063,0.481737,0.998616,0.184679,0.343332,0.967455,0.244379,0.0708902,0.892061,0.386937,0.230779,0.052862,0.849475,0.896721,0.833894,0.52118,0.196214,0.622567,0.581253,0.279911,0.986233,0.760606,0.993979,0.867681,0.603842,0.554177,0.538854,0.064813,0.461701,0.432859,0.401619,0.385293,0.134834,0.297834,0.780117,0.450234,0.261945,0.248453,0.529048,0.298199,0.100475,0.20701,0.657227,0.754722,0.275408,0.8136,0.260929,0.484401,0.29073,0.600906,0.801157,0.732962,0.907078,0.329228,0.151724,0.602501,0.216844,0.948073,0.271058,0.810377,0.183486,0.739823,0.696657,0.611598,0.403081,0.477851,0.931101,0.459001,0.868379,0.147449,0.244665,0.468296,0.926669,0.292879,0.732524,0.436831,0.64508,0.377922,0.459313,0.407967,0.722581,0.285701,0.297713,0.918727,0.487021,0.834075,0.0860121,0.557159,0.664905,0.186006,0.0576472,0.318618,0.63526,0.0202125,0.400372,0.334191,0.15721,0.0118851,0.815215,0.689917,0.741713,0.391407,0.458086,0.279624,0.393953,0.584697,0.504688,0.602237,0.290918,0.541489,0.291984,0.0334533,0.619693,0.188171,0.195856,0.976395,0.192227,0.389477,0.451802,0.78965,0.446943,0.489401,0.229998,0.490483,0.00364602,0.335925,0.518777,0.926279,0.572704,0.245305,0.833576,0.845328,0.590969,0.169167,0.628083,0.595848,0.486639,0.231059,0.908575,0.95736,0.0962853,0.818552,0.0906742,0.822647,0.25939,0.7902,0.667039,0.553588,0.120211,0.650912,0.497562,0.612081,0.300192,0.0883247,0.585396,0.389358,0.845684,0.570958,0.124771,0.91747,0.35984,0.585663,0.772092,0.853047,0.577689,0.556279,0.897879,0.319998,0.816922,0.316687,0.556458,0.327602,0.721686,0.245662,0.258264,0.927251,0.682754,0.555928,0.472497,0.748578,0.420208,0.540382,0.285166,0.941999,0.323317,0.00173992,0.423073,0.606407,0.247906,0.254198,0.355287,0.130665,0.461011,0.0142503,0.160558,0.273276,0.102849,0.457948,0.788454,0.148236,0.480078,0.079451,0.532449,0.681371,0.242395,0.599607,0.429152,0.275286,0.79287,0.332409,0.854967,0.424284,0.646078,0.618726,0.225679,0.475733,0.0101916,0.674238,0.504964,0.506412,0.127998,0.173314,0.533849,0.967691,0.381059,0.991133,0.723755,0.779832,0.669394,0.296326,0.774478,0.168406,0.574718,0.601221,0.34492,0.303094,0.616637,0.731392,0.335244,0.070782,0.673078,0.919482,0.793328,0.245626,0.0208816,0.121494,0.720119,0.202724,0.603753,0.764092,0.50982,0.231829,0.842983,0.382658,0.143345,0.182522,0.676552,0.438787,0.966188,0.997786,0.48674,0.329483,0.571685,0.657832,0.861956,0.527228,0.162259,0.504978,0.440578,0.206035,0.101332,0.895002,0.840861,0.24589,0.82102,0.0283784,0.769929,0.875808,0.867377,0.261925,0.510623,0.970407,0.343581,0.935542,0.794066,0.38468,0.769945,0.561264,0.449701,0.26706,0.156329,0.157804,0.499866,0.138595,0.234162,0.186371,0.252883,0.0756682,0.372139,0.175844,0.245629,0.137844,0.872882,0.57883,0.64459,0.189057,0.43053,0.617708,0.247671,0.990186,0.743239,0.0708464,0.886313,0.88752,0.734158,0.135849,0.839688,0.125684,0.70046,0.457751,0.622119,0.645273,0.383202,0.882444,0.322463,0.863616,0.910434,0.689369,0.0235652,0.655138,0.263843,0.517894,0.95662,0.403597,0.339499,0.0989313,0.362859,0.485745,0.483642,0.287117,0.465314,0.887296,0.617459,0.426785,0.565247,0.239249,0.33574,0.630643,0.146712,0.554422,0.710032,0.940354,0.00649548,0.851711,0.678086,0.368869,0.359,0.185218,0.102384,0.225408,0.673089,0.722779,0.80675,0.270933,0.454857,0.700952,0.551101,0.796749,0.252603,0.740579,0.862173,0.536813,0.354613,0.715162,0.819749,0.991539,0.346348,0.208577,0.336637,0.780085,0.677876,0.0571829,0.168744,0.289707,0.190644,0.629695,0.0591165,0.185397,0.400519,0.00154382,0.00656712,0.031476,0.345043,0.649306,0.502125,0.967767,0.378142,0.647294,0.820647,0.246054,0.497468,0.380005,0.089869,0.930196,0.889437,0.330603,0.175382,0.637614,0.756949,0.194412,0.519716,0.579416,0.961239,0.0661656,0.212258,0.711914,0.183618,0.853492,0.378476,0.310418,0.568125,0.719646,0.580429,0.765394,0.0419377,0.607229,0.311242,0.339922,0.47285,0.349076,0.551276,0.173251,0.827174,0.671423,0.00591433,0.950734,0.00652373,0.788964,0.909104,0.648643,0.432208,0.780381,0.789608,0.69409,0.741159,0.405937,0.177093,0.909267,0.153788,0.36657,0.570716,0.383211,0.301638,0.502224,0.323668,0.832708,0.0142704,0.697658,0.0802998,0.498783,0.779686,0.603895,0.630901,0.199848,0.919201,0.270406,0.925855,0.23251,0.39153,0.309173,0.0732365,0.236822,0.195766,0.28431,0.0235506,0.0689751,0.386983,0.574001,0.204831,0.540449,0.865389,0.343195,0.8721,0.467497,0.877372,0.160977,0.283981,0.432641,0.816391,0.0280007,0.463186,0.929157,0.907369,0.430723,0.960829,0.523486,0.468086,0.248609,0.210178,0.21577,0.293311,0.920831,0.704887,0.223722,0.599153,0.984041,0.30739,0.165664,0.0117245,0.824395,0.640405,0.707542,0.592696,0.237972,0.889962,0.078145,0.685547,0.618746,0.540254,0.0539737,0.579396,0.562181,0.863071,0.366035,0.0129462,0.000877142,0.547626,0.761682,0.841757,0.382941,0.766064,0.380187,0.237073,0.297345,0.892865,0.181051,0.384658,0.440503,0.16058,0.387602,0.000623226,0.792051,0.145759,0.9645,0.621482,0.269339,0.787146,0.724215,0.755507,0.595909,0.41691,0.613367,0.260435,0.48674,0.574137,0.0811076,0.833563,0.915156,0.683597,0.162563,0.117236,0.857754,0.596162,0.294529,0.329027,0.972885,0.729753,0.988914,0.644185,0.48904,0.43092,0.447113,0.72587,0.845878,0.911667,0.492426,0.764933,0.38309,0.0589184,0.700506,0.662179,0.424544,0.355396,0.114319,0.128578,0.133044,0.2399,0.878008,0.753921,0.142686,0.703476,0.445592,0.713263,0.78811,0.920672,0.29612,0.935144,0.954704,0.265615,0.91861,0.889797,0.4771,0.238592,0.395672,0.106676,0.306973,0.25146,0.823997,0.479344,0.615708,0.215678,0.45434,0.785958,0.0531654,0.962492,0.817345,0.669919,0.690189,0.981256,0.126503,0.221964,0.975064,0.673113,0.377636,0.453104,0.841956,0.828733,0.513281,0.0569457,0.369553,0.425179,0.112723,0.809484,0.595399,0.937121,0.937875,0.288485,0.980436,0.0482662,0.0874739,0.74137,0.389547,0.606983,0.112293,0.276866,0.497064,0.869498,0.828968,0.448209,0.182209,0.0606156,0.416737,0.430714,0.372095,0.683066,0.734838,0.538543,0.0355603,0.121625,0.673077,0.488061,0.631112,0.343142,0.863971,0.488941,0.0933769,0.320274,0.0801011,0.0606862,0.849039,0.806115,0.250195,0.445563,0.0393215,0.0848287,0.0172825,0.604537,0.854659,0.0370322,0.547751,0.216633,0.67649,0.512022,0.358223,0.295602,0.426125,0.181051,0.0238071,0.0538278,0.0260714,0.326718,0.645629,0.553746,0.210846,0.805983,0.0910543,0.587471,0.314363,0.31242,0.177186,0.127148,0.740871,0.970173,0.945117,0.913582,0.31473,0.513771,0.002895,0.983684,0.118524,0.844915,0.918972,0.265785,0.605862,0.493291,0.255573,0.991775,0.62886,0.454159,0.286258,0.430897,0.785234,0.927385,0.229935,0.058772,0.726543,0.697183,0.977862,0.988022,0.157534,0.623449,0.867582,0.348052,0.505211,0.565849,0.922631,0.661043,0.418043,0.354335,0.672794,0.206074,0.127737,0.0986508,0.504389,0.830837,0.709519,0.264642,0.664555,0.777617,0.685491,0.700487,0.581122,0.576601,0.897435,0.918274,0.299866,0.807966,0.546557,0.964233,0.708259,0.531165,0.191658,0.0619903,0.65381,0.569173,0.0142651,0.179486,0.735489,0.386988,0.0329177,0.132632,0.844107,0.211773,0.35904,0.029718,0.527125,0.823449,0.81075,0.868399,0.354693,0.0491875,0.420098,0.683454,0.0797381,0.766599,0.0596318,0.604732,0.811464,0.907878,0.101063,0.419047,0.414171,0.904893,0.98682,0.984623,0.408159,0.886293,0.437228,0.172647,0.80729,0.4946,0.195861,0.0615854,0.828118,0.873,0.204669,0.860988,0.100916,0.123458,0.8797,0.856196,0.451093,0.617429,0.158674,0.560215,0.237665,0.206382,0.625964,0.896859,0.637373,0.933708,0.582627,0.688618,0.82085,0.868792,0.272128,0.232738,0.321751,0.168512,|0.675918,0.0223784,0.915088,0.645549,0.462441,0.549577,0.0448872,0.722383,0.457914,0.642375,0.110219,0.523261,0.0109688,0.244141,0.702491,0.908104,0.547806,0.29486,0.0710918,0.851519,0.289313,0.351591,0.576584,0.59605,0.996111,0.25696,0.299645,0.00627935,0.677187,0.872338,0.935614,0.592963,0.222098,0.16911,0.822648,0.170412,0.896793,0.0347334,0.688338,0.933965,0.217298,0.889038,0.105176,0.751991,0.886001,0.0177622,0.767836,0.33057,0.399454,0.884049,0.904056,0.121625,0.802671,0.930251,0.558653,0.0372287,0.569435,0.405407,0.320436,0.812659,0.683309,0.378617,0.874994,0.908469,0.783256,0.798312,0.830682,0.42099,0.83959,0.550824,0.894537,0.298633,0.693906,0.192483,0.529809,0.204896,0.151634,0.65781,0.236357,0.90338,0.84314,0.745466,0.455401,0.990782,0.40701,0.761256,0.135608,0.229519,0.0107731,0.748104,0.933151,0.425926,0.198312,0.69564,0.756789,0.91229,0.593036,0.961958,0.329266,0.187884,0.712915,0.304606,0.39228,0.794323,0.303891,0.679607,0.594444,0.346514,0.0384675,0.66761,0.351157,0.388214,0.792434,0.377335,0.623835,0.529307,0.781064,0.730587,0.253882,0.62884,0.751657,0.983373,0.183314,0.408397,0.82716,0.264607,0.963087,0.495898,0.876416,0.725767,0.414416,0.334566,0.350258,0.138914,0.493281,0.733581,0.538223,0.987448,0.306567,0.706726,0.431359,0.459905,0.734065,0.0315197,0.458949,0.0339913,0.756965,0.407954,0.110677,0.0504826,0.146723,0.393251,0.790405,0.924403,0.232728,0.778057,0.894137,0.334867,0.636929,0.965955,0.286852,0.706645,0.282297,0.860832,0.244965,0.545311,0.973174,0.193276,0.876623,0.161954,0.514541,0.796761,0.864403,0.745122,0.130821,0.386671,0.777115,0.95385,0.836225,0.43953,0.0785679,0.67827,0.748074,0.189625,0.0615037,0.573326,0.941743,0.237974,0.529885,0.533299,0.579296,0.483983,0.117909,0.0445943,0.126624,0.570883,0.921574,0.947033,0.433015,0.55365,0.78188,0.519195,0.228136,0.38453,0.769512,0.877549,0.896635,0.139211,0.583054,0.844736,0.316664,0.658247,0.213964,0.622229,0.657011,0.791189,0.35603,0.212579,0.407835,0.845498,0.427014,0.948419,0.552311,0.949859,0.916027,0.431228,0.992758,0.780737,0.720766,0.093412,0.28462,0.445682,0.702548,0.784602,0.0186472,0.994208,0.414331,0.435746,0.657088,0.198742,0.774195,0.596484,0.0480767,0.359064,0.482271,0.773152,0.337057,0.168145,0.585375,0.912264,0.333047,0.494003,0.198957,0.56495,0.797752,0.203784,0.491783,0.457755,0.323247,0.451193,0.000417054,0.742108,0.204065,0.82491,0.350335,0.823175,0.551662,0.394843,0.770201,0.686153,0.542691,0.035781,0.302276,0.858319,0.0228931,0.949584,0.131413,0.183683,0.672575,0.463494,0.04445,0.000435531,0.390023,0.856746,0.0217672,0.798674,0.729518,0.357733,0.73331,0.876113,0.801197,0.237984,0.0831237,0.136793,0.860342,0.633959,0.143566,0.388698,0.663776,0.50551,0.0285882,0.530543,0.0243685,0.579393,0.00649428,0.781324,0.835078,0.570975,0.746227,0.635139,0.305249,0.180668,0.772041,0.242959,0.612666,0.910323,0.230346,0.570118,0.37476,0.683811,0.62752,0.527777,0.557662,0.935727,0.14147,0.721267,0.519192,0.138262,0.674347,0.606895,0.0763562,0.416893,0.0213726,0.398118,0.331873,0.522901,0.211824,0.0955292,0.750025,0.0103833,0.967311,0.159861,0.132621,0.138849,0.81287,0.396358,0.0728239,0.290927,0.834489,0.459571,0.280612,0.115948,0.78564,0.242042,0.357512,0.699342,0.684008,0.68687,0.295619,0.700911,0.319491,0.0956534,0.971832,0.392659,0.248116,0.335343,0.0404326,0.168186,0.204388,0.326596,0.66744,0.530001,0.748983,0.0497351,0.00676107,0.40813,0.0753977,0.156938,0.730366,0.706513,0.247329,0.801734,0.524903,0.846977,0.177161,0.228608,0.103591,0.330548,0.872238,0.143908,0.958316,0.224425,0.646639,0.110117,0.0145737,0.67503,0.559419,0.624804,0.097171,0.8948,0.483387,0.94543,0.385421,0.561999,0.0707012,0.349907,0.826059,0.934141,0.809064,0.227266,0.739475,0.0300841,0.265553,0.193183,0.541138,0.213937,0.504936,0.722053,0.252225,0.254861,0.60947,0.0590256,0.833948,0.454553,0.360514,0.461665,0.423211,0.777071,0.0376424,0.939108,0.848199,0.154532,0.942742,0.747611,0.147103,0.979649,0.939145,0.13811,0.804236,0.472057,0.383467,0.721323,0.125195,0.0538918,0.271299,0.882251,0.589842,0.302806,0.402606,0.140018,0.212014,0.537776,0.640836,0.301251,0.441372,0.205327,0.745165,0.446031,0.917027,0.949147,0.787379,0.416046,0.170486,0.923302,0.883322,0.209821,0.794109,0.759264,0.227717,0.460592,0.671692,0.0535948,0.082231,0.0403369,0.294878,0.382138,0.665294,0.905235,0.796545,0.858582,0.973345,0.731218,0.86046,0.248488,0.253506,0.532603,0.304819,0.955138,0.215081,0.875802,0.673807,0.514737,0.756363,0.883239,0.436682,0.890153,0.299704,0.973626,0.513233,0.818638,0.872479,0.122907,0.951838,0.508124,0.728155,0.848397,0.329855,0.178238,0.782788,0.362234,0.520777,0.693302,0.950047,0.626244,0.551192,0.570585,0.634819,0.141221,0.660266,0.440278,0.0139706,0.991108,0.346034,0.249744,0.767469,0.12732,0.241596,0.726155,0.580969,0.194645,0.934854,0.499748,0.761575,0.584584,0.359619,0.802657,0.143061,0.115477,0.0309163,0.188858,0.30548,0.539609,0.809398,0.688548,0.124181,0.0903239,0.466035,0.980715,0.537237,0.252803,0.208412,0.591518,0.506163,0.876698,0.866915,0.460493,0.21697,0.382412,0.10041,0.68069,0.58665,0.0749581,0.540873,0.250918,0.534733,0.13451,0.948388,0.206738,0.984049,0.0140681,0.0867386,0.925626,0.0386254,0.422005,0.156188,0.788093,0.829812,0.848222,0.538043,0.0301054,0.976601,0.231129,0.958859,0.273111,0.151053,0.220558,0.476299,0.834142,0.0613631,0.674861,0.845599,0.934065,0.420209,0.689649,0.889201,0.0750499,0.453246,0.351662,0.0311119,0.623335,0.119355,0.579632,0.552333,0.577805,0.829547,0.972116,0.141452,0.145496,0.925669,0.71259,0.93596,0.662694,0.901608,0.626953,0.153228,0.284352,0.934534,0.682473,0.00465029,0.261314,0.988685,0.155134,0.194978,0.497841,0.443185,0.472978,0.832623,0.603151,0.00880051,0.103537,0.801329,0.947785,0.905697,0.644188,0.882177,0.0514176,0.968738,0.0906597,0.714261,0.587439,0.711828,0.543843,0.408958,0.538949,0.466756,0.557701,0.796428,0.129534,0.201654,0.0531034,0.735792,0.765818,0.831251,0.0398111,0.653194,0.508426,0.382291,0.0562213,0.436239,0.268789,0.740135,0.469174,0.507281,0.624826,0.506757,0.534913,0.420433,0.0352892,0.538151,0.000109911,0.385683,0.334208,0.106168,0.88724,0.165002,0.121507,0.466173,0.620812,0.290712,0.657003,0.252353,0.139241,0.501041,0.848874,0.952907,0.348424,0.792252,0.0997439,0.958946,0.74656,0.638381,0.626429,0.705185,0.263342,0.745944,0.829609,0.587687,0.480593,0.482203,0.26079,0.567388,0.603647,0.110853,0.696913,0.749627,0.664815,0.358893,0.429912,0.585349,0.219064,0.356336,0.16238,0.578238,0.332778,0.69476,0.423127,0.289322,0.293625,0.980077,0.983129,0.896397,0.580688,0.526488,0.426927,0.673458,0.601717,0.189072,0.387288,0.272356,0.336235,0.704846,0.0600027,0.201105,0.497567,0.920902,0.88852,0.923703,0.0738156,0.582618,0.312059,0.531569,0.462594,0.872362,0.374172,0.877545,0.92798,0.298554,0.946817,0.0455507,0.111819,0.757083,0.519087,0.611296,0.713027,0.515921,0.444636,0.680039,0.522775,0.0982165,0.859887,0.919646,0.84685,0.795407,0.329397,0.783884,0.866484,0.474002,0.655913,0.970419,0.406935,0.0942317,0.351876,0.784259,0.795088,0.23418,0.773912,0.524677,0.334313,0.87943,0.980253,0.371359,0.585352,0.339554,0.749769,0.921221,0.730409,0.928573,0.645644,0.561116,0.515775,0.939729,0.671506,0.441145,0.165622,0.955406,0.962347,0.823532,0.333371,0.00435209,0.0281389,0.700848,0.988426,0.611043,0.914773,0.934838,0.421046,0.786571,0.547113,0.545965,0.366308,0.406556,0.396677,0.986306,0.834553,0.943052,0.16351,0.307377,0.408685,0.334871,0.0433789,0.467088,0.211012,0.480519,0.878717,0.749652,0.416848,0.251885,0.66317,0.171239,0.245377,0.225155,0.245853,0.576976,0.95468,0.99177,0.79203,0.994554,0.954906,0.262705,0.874514,0.7618,0.428905,0.892152,0.640947,0.806145,0.19631,0.216891,0.561662,0.116521,0.1111,0.0630305,0.902398,0.546982,0.832205,0.641636,0.82984,0.80396,0.324643,0.324352,0.053097,0.264447,0.436111,0.636355,0.807473,0.416783,0.0532331,0.83944,0.290811,0.983645,0.717262,0.024826,0.0949548,0.591197,0.218902,0.655213,0.677017,0.772614,0.394138,0.146776,0.68385,0.616215,0.954372,0.945206,0.875872,0.890345,0.770062,0.729274,0.553893,0.0603477,0.762368,0.203102,0.876332,0.217509,0.726304,0.448586,0.613515,0.939965,0.562967,0.614469,0.965202,0.781648,0.457449,0.295339,0.118743,0.462584,0.567405,0.897486,0.459851,0.95884,0.344078,0.90977,0.482453,0.631605,0.686459,0.518684,0.730381,0.509021,0.347038,0.964821,0.255509,0.108786,0.371768,0.966966,0.103901,0.463542,0.619881,0.689215,0.940231,0.521877,0.594965,0.738888,0.139658,0.586964,0.504663,0.919539,0.438342,0.941466,0.255156,0.621662,0.470075,0.102457,0.551068,0.0430817,0.90934,0.376134,0.793663,0.345789,0.143569,0.145584,0.897606,0.625335,0.322342,0.506185,0.697216,0.0548036,0.224062,0.881433,0.190323,0.604986,0.164262,0.423397,0.920575,0.156561,0.447655,0.00543916,0.013603,0.594171,0.771966,0.642864,0.541747,0.0360204,0.999486,0.276598,0.402447,0.210715,0.497552,0.877404,0.0921488,0.987966,0.56952,0.746794,0.247022,0.38432,0.579624,0.39436,0.150657,0.0475363,0.162267,0.0181509,0.159702,0.189738,0.272407,0.090749,0.290701,0.341763,0.431867,0.70275,0.622327,0.85518,0.326652,|0.19949,0.682306,0.498428,0.920028,0.855784,0.00392336,0.442461,0.000203133,0.359608,0.720428,0.751182,0.707204,0.349437,0.920469,0.997376,0.759895,0.0780985,0.735648,0.763513,0.129618,0.612004,0.0385836,0.862832,0.94517,0.447095,0.801325,0.31831,0.591544,0.0433031,0.531821,0.531029,0.161124,0.587733,0.369133,0.880849,0.431009,0.31129,0.126298,0.0963198,0.336679,0.837884,0.0360947,0.790829,0.276546,0.946656,0.380418,0.80301,0.203088,0.626643,0.311061,0.0263289,0.844159,0.852312,0.318079,0.746248,0.787562,0.656962,0.420955,0.204121,0.632819,0.206802,0.094566,0.112757,0.125618,0.297747,0.0410262,0.860231,0.583753,0.40112,0.436444,0.954976,0.047833,0.942469,0.620303,0.927066,0.137315,0.542672,0.0756521,0.688014,0.917649,0.292871,0.325581,0.129991,0.781829,0.257653,0.973013,0.748343,0.24408,0.241665,0.417577,0.0917057,0.924195,0.368924,0.541897,0.587682,0.189432,0.509202,0.422989,0.0876867,0.194295,0.272362,0.716577,0.696645,0.848673,0.838396,0.0998629,0.463427,0.288836,0.0821969,0.745491,0.649432,0.759695,0.883806,0.428576,0.850113,0.407439,0.762241,0.60689,0.497082,0.849422,0.146333,0.34431,0.875983,0.429145,0.0701954,0.34933,0.195199,0.778734,0.845266,0.738974,0.492574,0.957839,0.720104,0.846257,0.196345,0.284862,0.825839,0.737338,0.235509,0.751268,0.0688397,0.295121,0.0902783,0.183402,0.215616,0.753936,0.989649,0.593755,0.282256,0.767513,0.944815,0.0184864,0.397539,0.774099,0.410257,0.0129203,0.545595,0.0576966,0.741689,0.0931897,0.104764,0.976524,0.722953,0.13139,0.272108,0.386998,0.546905,0.242622,0.720539,0.437896,0.173438,0.325119,0.174139,0.0799859,0.958782,0.719659,0.0698234,0.798965,0.240004,0.918165,0.994326,0.0566726,0.19039,0.355829,0.826378,0.564799,0.761471,0.462985,0.431554,0.812072,0.924228,0.698738,0.692545,0.465536,0.304904,0.504462,0.518363,0.92261,0.460232,0.813836,0.752683,0.490199,0.500869,0.564809,0.880655,0.114111,0.581265,0.526461,0.317048,0.892566,0.509013,0.597514,0.668945,0.703934,0.314274,0.964995,0.625185,0.662081,0.210266,0.936232,0.449926,0.996534,0.561407,0.0296593,0.44269,0.345319,0.846937,0.298772,0.973942,0.992468,0.963285,0.226374,0.403717,0.310017,0.629532,0.00254571,0.226327,0.319032,0.756349,0.896762,0.141298,0.260035,0.699503,0.534254,0.0383534,0.416849,0.368181,0.370977,0.343249,0.289053,0.372788,0.198957,0.0781588,0.310545,0.7271,0.320518,0.381083,0.177291,0.914773,0.549606,0.758035,0.15776,0.141638,0.036037,0.30172,0.0253702,0.00590843,0.770692,0.510036,0.0666934,0.546556,0.342966,0.0397483,0.717535,0.243417,0.557129,0.455858,0.190726,0.494077,0.0965503,0.0286657,0.161084,0.413183,0.510849,0.152101,0.316752,0.275548,0.834057,0.0581537,0.698085,0.478869,0.799338,0.93807,0.896895,0.082499,0.391935,0.562934,0.763046,0.939639,0.16052,0.620778,0.231986,0.46322,0.396931,0.39999,0.0830861,0.700383,0.819214,0.271787,0.290914,0.235826,0.171122,0.916105,0.674191,0.075618,0.807591,0.178314,0.516572,0.793075,0.391144,0.557245,0.782852,0.728481,0.548753,0.707016,0.130663,0.453618,0.341046,0.243394,0.129102,0.205891,0.572067,0.34608,0.868016,0.879812,0.345742,0.236594,0.849881,0.454167,0.800076,0.222747,0.852568,0.0759665,0.191914,0.307467,0.997438,0.626615,0.794556,0.137495,0.792749,0.764467,0.767017,0.756784,0.391642,0.711788,0.164488,0.164745,0.12245,0.227108,0.358658,0.963987,0.232329,0.665743,0.66196,0.29948,0.841901,0.101127,0.835618,0.75793,0.176454,0.844816,0.295794,0.165894,0.500986,0.0424474,0.833497,0.912799,0.914845,0.316073,0.722229,0.589052,0.156111,0.330623,0.307313,0.662358,0.153931,0.77777,0.188891,0.359,0.848338,0.735933,0.565276,0.791647,0.247608,0.377778,0.198565,0.337964,0.809571,0.679643,0.556918,0.605589,0.165007,0.442696,0.44363,0.142777,0.963229,0.594394,0.852061,0.209656,0.0158815,0.329505,0.339471,0.122662,0.24086,0.00466198,0.622433,0.0925899,0.618429,0.580399,0.184492,0.901486,0.722179,0.751824,0.647138,0.203568,0.119919,0.397464,0.386181,0.0552119,0.641974,0.484596,0.0113658,0.50349,0.253255,0.912113,0.494713,0.986971,0.114646,0.800149,0.149812,0.32122,0.778733,0.470892,0.568169,0.789873,0.310162,0.0480994,0.458111,0.981745,0.813584,0.677101,0.85756,0.0761805,0.747996,0.777273,0.0348346,0.487576,0.0907931,0.611186,0.585107,0.827779,0.888098,0.925547,0.343452,0.755024,0.20133,0.576395,0.29095,0.505508,0.026086,0.562397,0.525085,0.504366,0.171585,0.652986,0.10841,0.942717,0.71216,0.482983,0.297221,0.733304,0.196054,0.404164,0.746759,0.472909,0.236405,0.664469,0.965876,0.397579,0.846371,0.141705,0.728152,0.352614,0.246765,0.30452,0.154367,0.261756,0.750308,0.966527,0.0448242,0.773244,0.184959,0.205017,0.891597,0.475604,0.514273,0.113261,0.724626,0.524586,0.1195,0.442043,0.114577,0.994434,0.593147,0.796819,0.114355,0.223971,0.0746419,0.951759,0.0849837,0.408326,0.822837,0.377998,0.0335169,0.339254,0.450716,0.971996,0.568382,0.0335565,0.616687,0.912186,0.734821,0.0122181,0.386617,0.260073,0.112434,0.567488,0.775211,0.576899,0.0960374,0.343657,0.608332,0.73038,0.908141,0.184949,0.164192,0.144571,0.542843,0.935493,0.292017,0.199285,0.38802,0.226773,0.682663,0.613366,0.678484,0.147531,0.5739,0.763472,0.0204347,0.266144,0.95054,0.335649,0.772744,0.0943439,0.426729,0.181872,0.464064,0.786016,0.553923,0.121896,0.0407621,0.878123,0.674269,0.585716,0.894142,0.331174,0.928069,0.626993,0.193876,0.357151,0.123759,0.62973,0.510386,0.0282277,0.421192,0.970494,0.728922,0.772571,0.973026,0.771986,0.752287,0.832171,0.950993,0.769099,0.452331,0.725786,0.321182,0.15808,0.162151,0.0779087,0.259743,0.77395,0.221509,0.55627,0.934893,0.598395,0.920022,0.586259,0.285519,0.349005,0.333835,0.66176,0.980576,0.184417,0.0693736,0.583778,0.867159,0.948421,0.545744,0.483526,0.842938,0.62198,0.592373,0.68129,0.901963,0.479331,0.119181,0.286137,0.342265,0.605769,0.40754,0.118487,0.261282,0.31251,0.192248,0.90585,0.896635,0.776326,0.365796,0.200474,0.344605,0.751284,0.156357,0.788536,0.848061,0.0371882,0.209696,0.874734,0.0177491,0.480542,0.865973,0.0544569,0.119409,0.856181,0.241156,0.935072,0.937455,0.21013,0.317461,0.380244,0.260482,0.239188,0.791685,0.913412,0.559141,0.166751,0.834393,0.276119,0.35247,0.839085,0.649022,0.0658337,0.688062,0.427316,0.286481,0.022948,0.99873,0.991593,0.639187,0.671508,0.862387,0.488938,0.889313,0.5081,0.753955,0.106858,0.912434,0.751189,0.801724,0.264969,0.71703,0.286173,0.632998,0.384798,0.687653,0.87824,0.509337,0.9551,0.947166,0.102747,0.72353,0.180806,0.618636,0.639465,0.728817,0.80719,0.216788,0.263347,0.440712,0.170127,0.839483,0.250901,0.53029,0.462877,0.81025,0.101917,0.774994,0.00599027,0.314528,0.0295952,0.820492,0.676208,0.35452,0.929176,0.501188,0.929254,0.991721,0.606773,0.531642,0.0701309,0.204087,0.00011766,0.514345,0.625198,0.998003,0.483315,0.281561,0.664319,0.382959,0.380529,0.17614,0.458682,0.221938,0.0625235,0.823053,0.705068,0.188197,0.311116,0.747964,0.882827,0.5571,0.931808,0.616191,0.760045,0.662702,0.769022,0.943818,0.563473,0.592918,0.694602,0.327343,0.0207636,0.365671,0.973809,0.846359,0.517287,0.315149,0.523083,0.319341,0.734166,0.144576,0.74359,0.269946,0.140561,0.0390871,0.208295,0.690516,0.500755,0.453907,0.928279,0.367461,0.345095,0.894398,0.15705,0.521528,0.912241,0.0714503,0.536191,0.0892577,0.0560412,0.522087,0.902016,0.962398,0.401246,0.496021,0.37617,0.825484,0.082827,0.79319,0.383269,0.53427,0.415853,0.670323,0.545881,0.22679,0.0522628,0.591317,0.696983,0.842922,0.893748,0.575095,0.0800563,0.984068,0.88621,0.0944071,0.03302,0.453952,0.360337,0.36107,0.484608,0.410415,0.0454631,0.507697,0.209635,0.978724,0.244262,0.911647,0.883326,0.266411,0.7304,0.0227461,0.934972,0.493984,0.614796,0.378822,0.31161,0.737953,0.570673,0.0201997,0.1232,0.907518,0.545093,0.351479,0.0643793,0.40946,0.512433,0.359175,0.400529,0.0582149,0.38598,0.945484,0.62508,0.419926,0.445044,0.159692,0.68678,0.771753,0.682111,0.249088,0.961055,0.387105,0.722675,0.167829,0.159991,0.91179,0.586662,0.7684,0.633393,0.142511,0.334076,0.72338,0.784669,0.296177,0.881433,0.795379,0.52314,0.933296,0.264659,0.204947,0.42729,0.42935,0.979534,0.32111,0.699556,0.249579,0.101629,0.236511,0.8937,0.175559,0.797751,0.848176,0.402348,0.979005,0.990073,0.900934,0.0810515,0.755467,0.613709,0.420086,0.0726053,0.701147,0.61903,0.236458,0.0168457,0.192052,0.872202,0.057245,0.419719,0.729188,0.621748,0.371162,0.745701,0.699791,0.729998,0.899581,0.154622,0.105941,0.360922,0.153543,0.458567,0.279228,0.466874,0.850377,0.14807,0.671168,0.0776389,0.792094,0.851674,0.193816,0.640774,0.970182,0.0717394,0.247333,0.112467,0.390082,0.0244609,0.392801,0.175019,0.692016,0.814763,0.449957,0.41502,0.377806,0.685228,0.522887,0.386323,0.999666,0.809614,0.351328,0.789012,0.0337845,0.622665,0.638535,0.899746,0.65466,0.345938,0.718921,0.856633,0.860229,0.28328,0.745902,0.558333,0.288714,0.302628,0.0166416,0.221383,0.519858,0.414479,0.837712,0.765009,0.404968,0.936841,0.266975,0.234031,0.380753,0.745807,0.35275,0.348202,0.818317,0.73146,0.481509,0.264202,0.845022,0.481578,0.384252,0.516044,0.521855,0.169119,0.0209751,0.733091,0.584921,0.439825,0.155649,0.348955,0.781473,0.714276,0.121802,0.302909,0.39121,|0.950671,0.985605,0.405197,0.0108059,0.291944,0.983617,0.361504,0.459296,0.147301,0.198752,0.791308,0.625677,0.256925,0.974601,0.513349,0.805093,0.325256,0.762208,0.68818,0.928367,0.830326,0.559899,0.329806,0.151207,0.527784,0.963324,0.900612,0.136076,0.173254,0.694285,0.952007,0.215731,0.765046,0.0920002,0.435986,0.527351,0.429749,0.842587,0.588462,0.442696,0.32852,0.138146,0.338852,0.8609,0.365465,0.25265,0.190437,0.472851,0.533907,0.237138,0.930395,0.345259,0.876807,0.409293,0.931235,0.553181,0.11703,0.0923811,0.0225793,0.202517,0.715099,0.422284,0.359818,0.154377,0.0173697,0.976003,0.97935,0.693153,0.37337,0.554268,0.342454,0.151769,0.20499,0.59514,0.294527,0.72414,0.395751,0.744663,0.201413,0.809533,0.826385,0.70752,0.224308,0.119031,0.565395,0.424244,0.857661,0.48092,0.797545,0.2121,0.845857,0.330936,0.401456,0.501471,0.0455562,0.583227,0.641814,0.282056,0.767209,0.574238,0.264324,0.123672,0.213663,0.793555,0.917028,0.845751,0.0170055,0.973577,0.164812,0.339332,0.997125,0.382471,0.026051,0.0802848,0.992516,0.478505,0.0423966,0.392241,0.390643,0.920051,0.793534,0.869815,0.771017,0.64167,0.430921,0.33585,0.608482,0.0324402,0.162522,0.0402561,0.254868,0.0167275,0.53312,0.0517719,0.519536,0.188231,0.351038,0.9705,0.781709,0.429884,0.658058,0.0466521,0.875042,0.616328,0.800227,0.0957347,0.104995,0.977509,0.926044,0.836888,0.357535,0.297116,0.86225,0.506974,0.318592,0.0805604,0.262896,0.107343,0.45601,0.545157,0.44662,0.773974,0.765431,0.903597,0.0561737,0.476533,0.205179,0.516617,0.860471,0.380877,0.67356,0.495199,0.869761,0.421926,0.507497,0.672384,0.279361,0.510607,0.022622,0.782734,0.0913941,0.109707,0.547123,0.876403,0.935517,0.985613,0.261528,0.811283,0.176895,0.0453168,0.997381,0.0958621,0.935094,0.318828,0.7862,0.388266,0.051238,0.30869,0.755137,0.0980167,0.683343,0.360273,0.0974826,0.983489,0.169621,0.777176,0.642803,0.277902,0.605276,0.689408,0.844547,0.272706,0.0510824,0.154017,0.7458,0.995911,0.967892,0.986499,0.958103,0.186816,0.364833,0.442496,0.820391,0.149938,0.140546,0.48909,0.328233,0.409588,0.144453,0.576098,0.122634,0.770258,0.553538,0.00547874,0.72807,0.209899,0.686252,0.920684,0.603587,0.117928,0.960395,0.446006,0.435155,0.200163,0.900706,0.880211,0.862048,0.696833,0.876478,0.128011,0.221482,0.161972,0.351406,0.104947,0.96981,0.143624,0.818233,0.503927,0.638907,0.657661,0.603863,0.40348,0.618793,0.385556,0.803627,0.268465,0.450706,0.857547,0.515348,0.369362,0.359584,0.143721,0.586138,0.381298,0.223897,0.364032,0.379898,0.421455,0.607389,0.0284739,0.132291,0.741992,0.0584729,0.150837,0.421795,0.285203,0.467594,0.114496,0.0697057,0.50069,0.415731,0.170762,0.219972,0.727539,0.468991,0.6305,0.493158,0.107255,0.964751,0.385538,0.993922,0.566222,0.374991,0.520513,0.833777,0.187974,0.0681257,0.391099,0.659254,0.841325,0.876766,0.347273,0.206004,0.835947,0.339422,0.198751,0.414589,0.325478,0.101642,0.107675,0.836085,0.421773,0.27658,0.169932,0.175979,0.996638,0.634428,0.522925,0.840603,0.996925,0.910349,0.556299,0.558738,0.473676,0.80292,0.52221,0.636486,0.431068,0.00742728,0.183698,0.206379,0.803145,0.0942822,0.810938,0.928871,0.205746,0.895121,0.0597261,0.3536,0.811214,0.385079,0.696093,0.355905,0.0766479,0.335143,0.425171,0.614296,0.728206,0.264541,0.871683,0.64846,0.505151,0.218277,0.931633,0.661667,0.0571733,0.0404038,0.972578,0.373391,0.639811,0.970992,0.224362,0.824166,0.33008,0.000219882,0.13029,0.13542,0.145158,0.230252,0.984339,0.0280671,0.794195,0.756906,0.0734419,0.775783,0.497068,0.193812,0.408294,0.213771,0.369285,0.112417,0.326826,0.455589,0.484566,0.155179,0.293912,0.0040834,0.0309396,0.160259,0.0248609,0.149212,0.787438,0.653847,0.216492,0.841736,0.294538,0.175873,0.883399,0.0310366,0.728224,0.373695,0.910484,0.958081,0.408714,0.98648,0.485355,0.683275,0.349144,0.632381,0.944943,0.827941,0.178914,0.879827,0.169096,0.135254,0.633232,0.937258,0.0680097,0.0113667,0.364227,0.467177,0.0456042,0.190651,0.568897,0.29106,0.949471,0.112573,0.938618,0.375329,0.641012,0.471035,0.703546,0.59336,0.027456,0.712679,0.163513,0.0714783,0.794634,0.407142,0.0147941,0.284183,0.471423,0.858905,0.104435,0.0410699,0.994537,0.799996,0.626732,0.318274,0.967527,0.355009,0.782733,0.360063,0.154174,0.528147,0.837714,0.929968,0.33057,0.00788879,0.49493,0.354051,0.213227,0.426854,0.70515,0.763484,0.376749,0.0616959,0.314297,0.305594,0.106673,0.68048,0.540121,0.98898,0.407026,0.143735,0.462721,0.233107,0.40175,0.334768,0.223778,0.52005,0.272711,0.929314,0.384104,0.573051,0.447746,0.38136,0.799581,0.632612,0.694753,0.563885,0.205942,0.420807,0.431168,0.274093,0.867574,0.672133,0.312315,0.569268,0.540747,0.573125,0.465249,0.568187,0.0614047,0.561443,0.272564,0.237986,0.540145,0.962766,0.942381,0.273228,0.190498,0.29205,0.174455,0.378777,0.379343,0.716677,0.522069,0.715334,0.561191,0.772917,0.151435,0.85564,0.701306,0.694818,0.767626,0.796011,0.684359,0.038386,0.23274,0.728744,0.389117,0.318839,0.666564,0.70221,0.778879,0.00425291,0.866004,0.566013,0.520996,0.284336,0.149148,0.728513,0.928726,0.422479,0.170539,0.393174,0.511986,0.690852,0.0429429,0.83595,0.498825,0.623046,0.218097,0.674192,0.656102,0.00387406,0.568996,0.341908,0.347987,0.844043,0.529291,0.919192,0.00300431,0.386487,0.661283,0.704999,0.311955,0.976612,0.794987,0.455816,0.609246,0.377887,0.1485,0.799353,0.63353,0.631015,0.916091,0.375707,0.957483,0.340204,0.542602,0.765705,0.764465,0.0574137,0.516256,0.955064,0.682386,0.316714,0.624815,0.188127,0.990748,0.228456,0.593987,0.489146,0.747631,0.123814,0.293659,0.157576,0.473468,0.778826,0.179948,0.383397,0.577417,0.487564,0.199135,0.867299,0.0129671,0.355684,0.0281955,0.789137,0.589714,0.48497,0.773422,0.390213,0.182519,0.857367,0.179626,0.518843,0.285642,0.512132,0.0926049,0.937233,0.391519,0.641976,0.643191,0.329446,0.0895493,0.809128,0.444251,0.191289,0.961344,0.861582,0.91437,0.180204,0.559548,0.94462,0.517428,0.0375094,0.0181938,0.814405,0.149612,0.960416,0.0719823,0.0298724,0.443342,0.527697,0.806366,0.986427,0.933882,0.367261,0.906868,0.518792,0.932159,0.210811,0.440885,0.936343,0.182043,0.360201,0.0970938,0.668502,0.812268,0.0846438,0.947388,0.342845,0.194488,0.665425,0.771903,0.12861,0.300599,0.211489,0.223323,0.534912,0.474571,0.401412,0.673892,0.511346,0.474482,0.387999,0.522148,0.463587,0.776833,0.449409,0.221127,0.230364,0.495038,0.284651,0.776528,0.664606,0.554172,0.476212,0.462243,0.550127,0.00904357,0.359171,0.185273,0.609619,0.0566244,0.772662,0.400523,0.0658695,0.213056,0.779741,0.719754,0.00788987,0.585504,0.657814,0.417867,0.640928,0.301718,0.263179,0.485038,0.502039,0.090151,0.115291,0.992212,0.307779,0.101641,0.86444,0.973514,0.0166056,0.552949,0.842128,0.0545765,0.313109,0.761908,0.233844,0.491224,0.358256,0.943872,0.884435,0.109608,0.358224,0.506639,0.267912,0.857985,0.00330955,0.0336351,0.317664,0.0403987,0.978938,0.449479,0.326573,0.397412,0.225968,0.105424,0.197068,0.843134,0.783771,0.0721173,0.52195,0.645712,0.992971,0.297428,0.232933,0.468845,0.336128,0.874416,0.0228239,0.352968,0.854334,0.324389,0.443066,0.999976,0.308973,0.548059,0.493988,0.0732477,0.845589,0.620373,0.277656,0.698358,0.0076921,0.47458,0.129805,0.401396,0.712036,0.934618,0.38567,0.489545,0.922818,0.312663,0.433723,0.144062,0.85074,0.85833,0.838281,0.00124282,0.670254,0.13925,0.977279,0.963135,0.744385,0.0818863,0.893731,0.309954,0.0867481,0.765775,0.0298737,0.898705,0.968059,0.460898,0.70635,0.851337,0.0829872,0.857071,0.348087,0.100536,0.467773,0.215684,0.533881,0.00874913,0.494586,0.946229,0.319684,0.279086,0.168907,0.474292,0.856946,0.748645,0.371299,0.98717,0.974775,0.0481504,0.00328898,0.257342,0.251146,0.382429,0.583311,0.344322,0.08381,0.611692,0.798424,0.435869,0.798984,0.106265,0.221978,0.931484,0.913642,0.325984,0.328897,0.780381,0.108116,0.651402,0.164688,0.877854,0.240077,0.971714,0.693106,0.900795,0.564384,0.215854,0.454595,0.091731,0.469794,0.388898,0.968597,0.961903,0.109187,0.804136,0.452625,0.255107,0.996527,0.662444,0.909357,0.476448,0.393258,0.0336627,0.256585,0.214364,0.0688859,0.88445,0.499592,0.286454,0.311936,0.723734,0.78962,0.685085,0.722676,0.0869776,0.565097,0.609465,0.674778,0.517939,0.408381,0.132296,0.430308,0.413429,0.34159,0.92151,0.594873,0.711837,0.538938,0.7637,0.012743,0.946405,0.0968369,0.495081,0.677972,0.322016,0.405347,0.930299,0.76493,0.700346,0.489807,0.514004,0.43838,0.72792,0.739228,0.275294,0.566534,0.537618,0.784042,0.0816149,0.462054,0.5159,0.143794,0.912663,0.93768,0.7025,0.689255,0.922432,0.407616,0.86862,0.199194,0.0997571,0.328921,0.526227,0.0139815,0.88475,0.358659,0.421103,0.987014,0.604322,0.269324,0.349644,0.730395,0.523775,0.802854,0.767158,0.923758,0.383606,0.518183,0.257707,0.812332,0.336295,0.864122,0.880878,0.470923,0.654606,0.243596,0.340635,0.348263,0.761566,0.530482,0.796496,0.544034,0.882335,0.231259,0.46815,0.22605,0.0464693,0.817542,0.445111,0.147484,0.230002,0.254242,0.207361,0.290971,0.534394,0.843074,0.773529,0.495322,0.472347,0.0246483,0.0103045,0.382876,0.732214,0.591516,0.586809,0.818411,0.624735,0.81855,0.662074,0.440999,0.696544,0.700258,0.300643,0.813251,0.321385,|0.0274664,0.426273,0.688032,0.235215,0.622499,0.991995,0.492057,0.314443,0.475149,0.714603,0.705389,0.027998,0.114626,0.107761,0.504556,0.885121,0.260611,0.133218,0.482812,0.811552,0.352944,0.22558,0.83801,0.852235,0.227511,0.63615,0.911392,0.410828,0.0250561,0.222319,0.0508682,0.0458561,0.782967,0.354903,0.951765,0.579713,0.36495,0.677254,0.545718,0.105867,0.329535,0.340758,0.819875,0.455578,0.411678,0.656172,0.7123,0.846488,0.486476,0.461632,0.661435,0.764144,0.287563,0.639054,0.658104,0.115947,0.63457,0.170376,0.797501,0.0165316,0.481201,0.358528,0.0776908,0.491347,0.921915,0.460531,0.0272871,0.758566,0.946572,0.0920742,0.48052,0.0635064,0.69066,0.553969,0.14121,0.233586,0.958691,0.794638,0.815456,0.189392,0.160409,0.58689,0.0768335,0.258775,0.587345,0.379955,0.284432,0.796521,0.687427,0.795147,0.828906,0.44287,0.640297,0.286292,0.668967,0.0643361,0.126074,0.558021,0.453435,0.138471,0.293859,0.525894,0.69756,0.445439,0.54689,0.434129,0.591082,0.442991,0.0927242,0.488424,0.158832,0.977795,0.604521,0.983379,0.415631,0.494393,0.51049,0.0969957,0.780804,0.892707,0.972914,0.73662,0.484202,0.0197954,0.249125,0.604738,0.344477,0.0907356,0.752598,0.414203,0.231538,0.49907,0.682031,0.206528,0.716795,0.561284,0.964811,0.47952,0.0584006,0.0605456,0.997649,0.438814,0.823986,0.556807,0.591057,0.680306,0.786746,0.173608,0.626929,0.22319,0.43675,0.123718,0.290888,0.617189,0.104964,0.529284,0.570138,0.14162,0.00581121,0.573136,0.668401,0.260685,0.614235,0.895658,0.982506,0.104738,0.140254,0.186202,0.393008,0.572448,0.338859,0.453284,0.914856,0.198355,0.0417882,0.441783,0.129095,0.554453,0.281606,0.389243,0.626685,0.78607,0.0937181,0.454131,0.601447,0.914951,0.526219,0.37797,0.400229,0.631796,0.749633,0.208861,0.869802,0.322492,0.692638,0.244348,0.767117,0.0494122,0.382084,0.714597,0.538605,0.844227,0.0646791,0.769155,0.272356,0.0459714,0.0582494,0.582145,0.729221,0.667347,0.453249,0.882114,0.462041,0.484712,0.482563,0.724922,0.747578,0.230764,0.614564,0.489293,0.980953,0.716095,0.463303,0.879497,0.74504,0.22584,0.379117,0.353902,0.107652,0.948394,0.0546564,0.785853,0.697465,0.884727,0.751209,0.224403,0.970231,0.430106,0.709957,0.370431,0.631185,0.0283715,0.0510674,0.297898,0.0682057,0.802863,0.714864,0.353245,0.468783,0.708187,0.44068,0.0272145,0.30552,0.853591,0.0509202,0.430638,0.00594139,0.683827,0.467725,0.459493,0.142671,0.519358,0.724928,0.387811,0.224848,0.597102,0.653199,0.107513,0.631665,0.545209,0.297869,0.870105,0.686039,0.172085,0.612246,0.432003,0.443432,0.449367,0.286244,0.169107,0.423304,0.178258,0.884627,0.603558,0.850071,0.211275,0.0593503,0.962968,0.0777165,0.66923,0.592104,0.0988677,0.789508,0.875049,0.889306,0.105139,0.509692,0.874247,0.23388,0.796721,0.923728,0.250641,0.66283,0.355979,0.309307,0.327518,0.00321287,0.0394617,0.573233,0.90761,0.703311,0.997164,0.778282,0.813256,0.60903,0.577191,0.150097,0.849638,0.458354,0.982029,0.491186,0.1523,0.689235,0.0653191,0.263245,0.981749,0.658822,0.923211,0.208016,0.641641,0.317036,0.859258,0.612256,0.873569,0.778501,0.305121,0.517094,0.61722,0.369647,0.476523,0.713454,0.97918,0.13536,0.119772,0.631027,0.954726,0.957147,0.189863,0.952312,0.38462,0.76193,0.0956656,0.22756,0.187707,0.228299,0.561557,0.146096,0.820887,0.151833,0.993261,0.390258,0.922011,0.522538,0.531521,0.0123475,0.982722,0.619085,0.9878,0.610706,0.529103,0.55129,0.900918,0.612811,0.0760471,0.071584,0.667749,0.638241,0.698228,0.337786,0.478806,0.831809,0.825613,0.51822,0.282907,0.0830818,0.177574,0.213638,0.0302325,0.157915,0.434323,0.402302,0.894085,0.611361,0.106136,0.99423,0.909704,0.644953,0.152505,0.543151,0.507298,0.953854,0.992243,0.153349,0.324334,0.152076,0.0689735,0.835761,0.430358,0.808203,0.244307,0.794682,0.0506163,0.588453,0.294501,0.0174447,0.664937,0.473396,0.81106,0.314658,0.712031,0.778206,0.962682,0.783177,0.0452064,0.399749,0.609976,0.829936,0.948666,0.854314,0.984622,0.678929,0.940415,0.728159,0.165523,0.273889,0.0984322,0.138731,0.0920638,0.141165,0.565646,0.0899693,0.635741,0.771087,0.26217,0.131285,0.735535,0.623616,0.396422,0.518419,0.505956,0.0427005,0.633614,0.931621,0.345864,0.795162,0.703283,0.302221,0.984824,0.106852,0.0574353,0.292541,0.617662,0.93933,0.79473,0.161854,0.224367,0.717246,0.492662,0.74868,0.102325,0.17707,0.12832,0.670531,0.419142,0.790955,0.054613,0.2202,0.866178,0.676715,0.302554,0.274401,0.716385,0.995714,0.0365275,0.101532,0.782501,0.813853,0.536619,0.141212,0.817,0.0443075,0.513084,0.194149,0.521521,0.0654372,0.670883,0.398004,0.787089,0.10771,0.976688,0.421169,0.496989,0.151757,0.390838,0.597707,0.912133,0.558762,0.626569,0.996177,0.257692,0.917706,0.756042,0.669765,0.0294628,0.716903,0.593405,0.767742,0.055829,0.91992,0.276761,0.904698,0.29763,0.3918,0.952026,0.939007,0.946437,0.0905625,0.196802,0.564451,0.729472,0.487933,0.875926,0.646662,0.0100279,0.824321,0.465459,0.259204,0.155578,0.562106,0.234139,0.232462,0.488488,0.842295,0.843563,0.938074,0.625031,0.328299,0.56704,0.342525,0.864349,0.478345,0.351515,0.357283,0.393373,0.767253,0.709639,0.14903,0.495944,0.531865,0.582786,0.144069,0.764757,0.246733,0.323039,0.467917,0.470174,0.263823,0.472184,0.978347,0.858009,0.315928,0.739088,0.673164,0.501773,0.659615,0.352141,0.250319,0.498656,0.405401,0.0484968,0.0038681,0.185655,0.539475,0.388849,0.0806859,0.584303,0.599923,0.10407,0.0379955,0.476099,0.818882,0.560712,0.870578,0.0050323,0.665013,0.872107,0.255013,0.610119,0.727319,0.564346,0.847506,0.071166,0.735046,0.879059,0.900945,0.201872,0.246571,0.714703,0.447468,0.80263,0.251221,0.127292,0.0586672,0.124863,0.333256,0.533822,0.90199,0.796209,0.0521712,0.0721142,0.383967,0.652766,0.26676,0.59563,0.936612,0.0590298,0.502221,0.817017,0.611335,0.85272,0.8414,0.95802,0.914628,0.796664,0.485711,0.206832,0.148333,0.552285,0.732701,0.625104,0.639116,0.147833,0.100553,0.755315,0.890963,0.566247,0.0742816,0.842824,0.509494,0.701994,0.525291,0.463608,0.921363,0.571549,0.729197,0.106866,0.691583,0.272798,0.837823,0.201068,0.725278,0.223781,0.806706,0.275391,0.889808,0.188253,0.467221,0.613153,0.45502,0.575533,0.513808,0.349429,0.0692975,0.638115,0.257321,0.549162,0.769376,0.626986,0.617217,0.858754,0.197842,0.87012,0.756206,0.0207353,0.862848,0.719595,0.934406,0.475585,0.546107,0.233676,0.658057,0.000469923,0.745687,0.350016,0.405798,0.0809676,0.906876,0.144026,0.203675,0.981721,0.461996,0.516347,0.227878,0.38157,0.0977476,0.917931,0.142997,0.603507,0.263491,0.193859,0.0116158,0.447288,0.985903,0.302836,0.512836,0.317829,0.95255,0.201958,0.915944,0.902945,0.168284,0.0608884,0.173181,0.726067,0.400685,0.403729,0.416963,0.839188,0.339445,0.27621,0.0581898,0.546391,0.779901,0.201249,0.952051,0.756857,0.0339048,0.434772,0.946795,0.128674,0.463167,0.571103,0.809518,0.229604,0.222454,0.438011,0.973827,0.217607,0.787779,0.4951,0.901799,0.458084,0.456065,0.27394,0.699753,0.302932,0.332462,0.895754,0.434445,0.756662,0.748556,0.160608,0.0162095,0.124664,0.744368,0.658911,0.835388,0.138368,0.843877,0.489462,0.273854,0.690355,0.761874,0.37058,0.36851,0.840024,0.835523,0.633783,0.293712,0.819245,0.523116,0.220684,0.0196983,0.444601,0.585071,0.760147,0.125751,0.177229,0.116139,0.0519525,0.453384,0.328845,0.0844002,0.522542,0.00356025,0.646257,0.421617,0.0344215,0.380676,0.558197,0.895656,0.28588,0.742514,0.328266,0.332831,0.138959,0.866276,0.165557,0.32025,0.0884506,0.145786,0.81019,0.48924,0.71798,0.340934,0.618731,0.754151,0.707132,0.633241,0.678006,0.545438,0.779377,0.431325,0.776073,0.191124,0.437865,0.549464,0.165243,0.63562,0.469194,0.740148,0.577737,0.497338,0.0212207,0.0749775,0.152303,0.521425,0.881311,0.955824,0.50074,0.441415,0.86238,0.313857,0.255122,0.132798,0.789367,0.548688,0.387227,0.162972,0.94632,0.132964,0.257729,0.628099,0.616555,0.702398,0.54365,0.787809,0.326774,0.788234,0.953548,0.683634,0.241198,0.3288,0.244468,0.361384,0.641907,0.12609,0.430375,0.831363,0.0570852,0.528754,0.719698,0.0950109,0.82844,0.652602,0.304228,0.00560892,0.3396,0.591561,0.862762,0.410293,0.751327,0.820326,0.179825,0.184518,0.570452,0.0740424,0.825809,0.806917,0.947939,0.940125,0.332504,0.198716,0.4854,0.048089,0.291667,0.324085,0.805147,0.426595,0.822816,0.0174003,0.867083,0.997083,0.114669,0.953265,0.896941,0.589423,0.0233836,0.625051,0.452239,0.592938,0.45286,0.45264,0.207549,0.0425583,0.630768,0.433332,0.243758,0.974221,0.596507,0.720728,0.966433,0.749709,0.121187,0.0537512,0.109412,0.346817,0.445503,0.428706,0.534818,0.986431,0.947805,0.367789,0.322896,0.00266272,0.552098,0.290405,0.0639054,0.84613,0.187452,0.0407717,0.47254,0.41983,0.290741,0.0544328,0.0693157,0.515675,0.145617,0.655366,0.646971,0.030483,0.702792,0.599922,0.419194,0.358043,0.587287,0.914943,0.960672,0.190232,0.91484,0.974545,0.893766,0.450538,0.300302,0.974483,0.89777,0.126285,0.470926,0.274321,0.971123,0.71746,0.955378,0.952163,0.491382,0.0964419,0.316168,0.556537,0.55957,0.93059,0.291773,0.729475,0.24652,0.679523,0.999267,0.427763,0.591156,0.941612,0.0499376,0.871956,0.652792,0.377333,0.388013,0.930883,0.508865,0.00454617,0.115465,0.463534,0.199412,0.861085,0.47963,|0.679055,0.060226,0.171429,0.465315,0.407799,0.708308,0.238676,0.257225,0.411377,0.135941,0.595037,0.830646,0.508774,0.979395,0.0270948,0.143637,0.46003,0.486464,0.274598,0.0786025,0.677633,0.685836,0.342044,0.59018,0.0251037,0.186935,0.451349,0.7755,0.976511,0.0384499,0.317417,0.179633,0.856979,0.208329,0.848542,0.491475,0.0617576,0.473632,0.558463,0.346895,0.505904,0.865965,0.413618,0.152895,0.355736,0.00492293,0.600237,0.540898,0.123063,0.0629755,0.338114,0.292538,0.543947,0.0884978,0.404752,0.968996,0.200034,0.781665,0.298614,0.638212,0.755701,0.694535,0.156675,0.92902,0.356192,0.113049,0.444018,0.350092,0.197462,0.315512,0.110052,0.0910454,0.196125,0.250941,0.900534,0.89693,0.732699,0.655468,0.25469,0.0811721,0.402785,0.67834,0.447876,0.553564,0.93677,0.628906,0.735741,0.78007,0.53307,0.393959,0.876788,0.58827,0.767803,0.770664,0.763906,0.0714834,0.937083,0.413956,0.541227,0.175008,0.0525466,0.264374,0.270641,0.198242,0.162668,0.971123,0.98969,0.208795,0.709515,0.701544,0.410658,0.862379,0.301283,0.852722,0.638965,0.327402,0.721994,0.33772,0.377704,0.0559741,0.569069,0.883248,0.33732,0.837176,0.245828,0.394039,0.182114,0.892843,0.702171,0.776977,0.683882,0.220664,0.821766,0.0688158,0.0870755,0.127015,0.304578,0.887706,0.474934,0.0175721,0.450635,0.424041,0.79885,0.789069,0.29177,0.143741,0.483234,0.217913,0.853494,0.913007,0.318345,0.213399,0.215623,0.807097,0.684936,0.614516,0.544821,0.282532,0.886842,0.970838,0.294676,0.964015,0.550419,0.507772,0.83958,0.429991,0.0417683,0.0649513,0.539563,0.569189,0.562002,0.73204,0.0852962,0.753742,0.998926,0.972053,0.0996473,0.234216,0.806776,0.385657,0.583684,0.770043,0.211125,0.648007,0.178414,0.144892,0.121387,0.145276,0.725624,0.0864232,0.517778,0.993735,0.599444,0.704292,0.396883,0.29566,0.0630991,0.852017,0.746634,0.380532,0.840454,0.502467,0.801344,0.180183,0.603151,0.479525,0.280577,0.418072,0.18778,0.635065,0.375271,0.368724,0.622686,0.567583,0.0276293,0.0898792,0.874586,0.978971,0.674444,0.524832,0.379451,0.993847,0.647905,0.186192,0.121601,0.691698,0.657628,0.905528,0.785115,0.823366,0.339524,0.825887,0.929237,0.733088,0.0904521,0.0239546,0.747314,0.880588,0.0859214,0.92818,0.378108,0.0290922,0.412351,0.0527627,0.774328,0.326006,0.537134,0.41641,0.0706628,0.487973,0.827822,0.265268,0.572845,0.252495,0.722999,0.876847,0.87133,0.989927,0.808179,0.279231,0.313799,0.723201,0.635924,0.950585,0.496167,0.0854969,0.836225,0.724302,0.497096,0.310444,0.843388,0.185923,0.823944,0.411819,0.68873,0.159506,0.0557222,0.475817,0.603047,0.905276,0.0873091,0.304186,0.551677,0.643148,0.0343058,0.638122,0.754523,0.580486,0.330676,0.138004,0.957376,0.625845,0.069686,0.776165,0.350803,0.433651,0.195777,0.670089,0.378446,0.541161,0.591683,0.938964,0.280321,0.112649,0.523935,0.929279,0.608453,0.437447,0.263461,0.390191,0.699287,0.46804,0.797379,0.335877,0.895861,0.469878,0.624464,0.179396,0.65348,0.699911,0.758225,0.103134,0.414507,0.603813,0.266491,0.343228,0.961353,0.642666,0.716355,0.590587,0.562309,0.883455,0.976762,0.265229,0.735687,0.912254,0.452692,0.266008,0.201833,0.837046,0.728546,0.815156,0.423986,0.656572,0.553863,0.738864,0.202256,0.188061,0.810562,0.562133,0.0758392,0.463107,0.0503158,0.0533174,0.501955,0.295354,0.193434,0.080042,0.891659,0.507505,0.117698,0.87413,0.148417,0.312971,0.420543,0.19388,0.50259,0.562232,0.142999,0.944023,0.609311,0.82907,0.815341,0.238084,0.653777,0.0557983,0.126396,0.778866,0.747553,0.427351,0.641088,0.0727891,0.818884,0.75605,0.867062,0.205288,0.0111306,0.0235173,0.247439,0.682386,0.805776,0.908946,0.71506,0.25295,0.355269,0.305323,0.917282,0.750614,0.779064,0.149419,0.254039,0.766728,0.92969,0.0314288,0.921405,0.80406,0.523899,0.524953,0.239496,0.0512802,0.795559,0.572026,0.278499,0.756883,0.593592,0.186957,0.349139,0.147733,0.314457,0.426439,0.0892631,0.344273,0.370367,0.194527,0.88913,0.532701,0.416421,0.354805,0.94601,0.315445,0.321526,0.280259,0.708077,0.276845,0.452341,0.0377375,0.455983,0.0421977,0.919356,0.42947,0.119017,0.176302,0.539889,0.622468,0.391838,0.785925,0.827182,0.431743,0.515007,0.13455,0.488604,0.194386,0.101374,0.363331,0.373428,0.0205737,0.370575,0.281806,0.178613,0.237374,0.0293763,0.411132,0.121662,0.525372,0.115776,0.426376,0.81595,0.963786,0.143209,0.126783,0.274807,0.269538,0.153463,0.00965399,0.160673,0.586437,0.680331,0.839155,0.989656,0.213682,0.739161,0.966651,0.0460317,0.547157,0.822921,0.963643,0.672651,0.0563328,0.0582166,0.191783,0.471924,0.891965,0.210938,0.693002,0.905286,0.813427,0.494025,0.840508,0.144055,0.526277,0.801329,0.451045,0.468061,0.603209,0.447241,0.503044,0.192264,0.321765,0.990731,0.846343,0.346399,0.373508,0.97469,0.298302,0.810405,0.717408,0.424214,0.988899,0.318933,0.18487,0.809597,0.821218,0.0572602,0.974488,0.57397,0.339775,0.426201,0.859775,0.941774,0.795211,0.35031,0.296978,0.0809886,0.618889,0.125922,0.885439,0.318056,0.97662,0.79097,0.173814,0.870163,0.924836,0.9477,0.617946,0.707152,0.501453,0.000224411,0.0526909,0.0203881,0.0980675,0.401499,0.154635,0.720377,0.305721,0.96185,0.607612,0.169741,0.82272,0.521805,0.205964,0.405954,0.370725,0.264283,0.0532912,0.11034,0.65443,0.799317,0.0626034,0.671326,0.831693,0.14489,0.977954,0.464218,0.585359,0.843965,0.245728,0.328229,0.53752,0.873179,0.0183544,0.933,0.959436,0.37098,0.966028,0.914269,0.438833,0.363459,0.758591,0.986262,0.798322,0.800063,0.3978,0.395011,0.691884,0.611772,0.545402,0.688697,0.526226,0.734634,0.197574,0.989085,0.445831,0.204316,0.966454,0.511264,0.227863,0.613665,0.388007,0.581953,0.385606,0.0046733,0.489547,0.00556296,0.0492074,0.354176,0.0787849,0.0677231,0.910872,0.869614,0.517115,0.359323,0.362227,0.892039,0.878077,0.511798,0.523904,0.280622,0.390541,0.724786,0.632618,0.398346,0.962907,0.201621,0.841114,0.031752,0.296089,0.565798,0.161518,0.0351542,0.0316954,0.576165,0.659233,0.0519242,0.26287,0.37764,0.201928,0.545249,0.282275,0.700521,0.217109,0.323143,0.79204,0.887739,0.136371,0.729451,0.497524,0.275298,0.027217,0.195992,0.266512,0.446696,0.745159,0.214194,0.82571,0.124412,0.314489,0.878738,0.661393,0.0583411,0.459646,0.168761,0.973102,0.602985,0.447607,0.935965,0.816432,0.186077,0.196923,0.0396829,0.138492,0.857818,0.835671,0.949675,0.64162,0.988501,0.514705,0.373542,0.790619,0.0588624,0.0821666,0.0471506,0.728987,0.509968,0.759849,0.299858,0.442871,0.0225624,0.018405,0.383854,0.274352,0.319355,0.791862,0.685514,0.521178,0.496064,0.9762,0.627886,0.556888,0.38152,0.274364,0.365994,0.00604045,0.299562,0.86012,0.351475,0.377738,0.232205,0.0222873,0.949988,0.725913,0.226602,0.301228,0.591703,0.809132,0.220055,0.563111,0.671002,0.370129,0.355447,0.78136,0.825721,0.846828,0.945598,0.735885,0.0198431,0.737312,0.905358,0.350516,0.925107,0.00546885,0.800902,0.038208,0.773973,0.0302464,0.0543252,0.0220193,0.282264,0.196793,0.387392,0.905144,0.185234,0.420077,0.151188,0.825961,0.285427,0.940416,0.832992,0.416586,0.362798,0.0326678,0.550969,0.207691,0.112966,0.278402,0.485084,0.855592,0.735135,0.553177,0.101177,0.441449,0.439599,0.834261,0.811433,0.632853,0.41065,0.690484,0.0280788,0.904264,0.474385,0.905958,0.178852,0.79608,0.648941,0.641039,0.307415,0.226366,0.144099,0.992767,0.182082,0.761084,0.0111451,0.236002,0.317524,0.116868,0.913276,0.145389,0.0934166,0.347704,0.260383,0.969607,0.596572,0.519571,0.0175903,0.00571287,0.581386,0.00211602,0.749722,0.550936,0.856709,0.576941,0.0250833,0.55052,0.691807,0.721313,0.0543113,0.815543,0.271146,0.657897,0.0143287,0.891463,0.386492,0.91824,0.728442,0.778878,0.605263,0.808748,0.0678189,0.906461,0.558689,0.15869,0.773508,0.758244,0.697342,0.944815,0.970417,0.580034,0.780957,0.0453562,0.177844,0.0632148,0.130147,0.236141,0.0939565,0.184765,0.53493,0.442758,0.496638,0.0692619,0.621126,0.744552,0.302425,0.151836,0.110208,0.0827443,0.504934,0.232233,0.463866,0.648259,0.504281,0.610045,0.770085,0.823935,0.137762,0.435894,0.705699,0.998757,0.197163,0.804785,0.906543,0.691436,0.0915114,0.0700561,0.460526,0.260349,0.50069,0.309009,0.78972,0.5,0.508221,0.240386,0.30243,0.695923,0.797044,0.945972,0.125933,0.689166,0.607989,0.91993,0.0160875,0.40453,0.156566,0.895027,0.626901,0.922362,0.509624,0.0711626,0.886405,0.954664,0.530066,0.246224,0.00615126,0.178316,0.251881,0.255137,0.862772,0.659229,0.453999,0.687814,0.257975,0.206027,0.307598,0.0579785,0.746693,0.626846,0.214879,0.617609,0.861693,0.655019,0.190781,0.724863,0.966426,0.656392,0.10365,0.61058,0.209734,0.324012,0.707492,0.40751,0.648997,0.141513,0.920978,0.457731,0.944755,0.817131,0.0202221,0.644543,0.29387,0.379614,0.390035,0.236471,0.0932956,0.380171,0.286005,0.92319,0.820246,0.309486,0.627021,0.209327,0.418682,0.485023,0.143448,0.54328,0.145855,0.49381,0.176057,0.478795,0.143039,0.135415,0.595853,0.123292,0.514785,0.521679,0.119704,0.65778,0.0264656,0.690876,0.0864557,0.161878,0.792723,0.558437,0.511,0.45774,0.646676,0.133275,0.802041,0.110189,0.709494,0.0580476,0.234499,0.496089,0.00616479,0.243343,0.341763,0.00799882,0.852716,0.424675,0.7605,0.0317575,0.65112,0.0264022,0.723067,0.0154785,0.878346,0.795704,0.383984,0.482481,0.896734,0.383581,0.854487,0.944633,|0.428321,0.881373,0.0012747,0.100634,0.558174,0.540098,0.429966,0.804535,0.0795496,0.228003,0.358689,0.752854,0.611061,0.421442,0.147332,0.329097,0.61616,0.0226793,0.003232,0.208534,0.63009,0.789369,0.787323,0.178597,0.721206,0.155935,0.7864,0.976882,0.965936,0.584321,0.868216,0.219792,0.555697,0.694623,0.837203,0.935728,0.0585583,0.734413,0.2254,0.115483,0.0675316,0.285516,0.0370215,0.704922,0.849762,0.824293,0.848021,0.066869,0.227463,0.00761104,0.0418947,0.907139,0.998517,0.245937,0.049005,0.545135,0.709124,0.770457,0.419952,0.874751,0.178316,0.399065,0.554522,0.755821,0.622335,0.606664,0.349581,0.930148,0.704466,0.837123,0.348058,0.243984,0.722569,0.781746,0.0182374,0.845674,0.873592,0.229799,0.651794,0.36121,0.70384,0.895723,0.203361,0.797154,0.314226,0.37743,0.971814,0.601987,0.804476,0.665985,0.986909,0.125866,0.287026,0.0091548,0.626598,0.940878,0.533611,0.780959,0.195073,0.2276,0.312521,0.281959,0.660376,0.904582,0.065733,0.366057,0.785744,0.71715,0.671541,0.335019,0.098937,0.299962,0.993819,0.307748,0.644704,0.30119,0.125338,0.486749,0.591179,0.719552,0.143687,0.0589526,0.468773,0.432282,0.759464,0.333621,0.11847,0.543947,0.430218,0.473506,0.16534,0.787113,0.229779,0.652067,0.921313,0.287471,0.381244,0.0885924,0.36011,0.73798,0.274244,0.964931,0.231257,0.81199,0.804939,0.97708,0.777149,0.537424,0.72719,0.985746,0.258672,0.846673,0.491768,0.359544,0.0794651,0.396719,0.232248,0.236481,0.155307,0.176255,0.81359,0.54486,0.141762,0.35611,0.185965,0.390284,0.451292,0.652914,0.92131,0.497239,0.169757,0.6342,0.0580466,0.573345,0.64216,0.683131,0.825686,0.441632,0.656412,0.812503,0.410875,0.211395,0.675064,0.013675,0.554063,0.848196,0.024489,0.135901,0.830468,0.241651,0.107146,0.0744542,0.00382245,0.0719277,0.0741272,0.290894,0.0180933,0.816372,0.800238,0.723161,0.600497,0.0750666,0.78479,0.440176,0.240804,0.965646,0.975168,0.343698,0.247606,0.170842,0.743548,0.994122,0.032461,0.448263,0.0557529,0.939013,0.857033,0.446662,0.477436,0.454568,0.0234157,0.721443,0.648113,0.585218,0.974212,0.120511,0.497878,0.864674,0.750417,0.868036,0.457492,0.534393,0.0150396,0.349218,0.587991,0.685181,0.51273,0.913726,0.241442,0.673925,0.663546,0.761093,0.327435,0.463619,0.346575,0.0341322,0.922689,0.653202,0.760951,0.593695,0.592205,0.152871,0.901177,0.0207295,0.789868,0.187715,0.040998,0.842491,0.175952,0.250961,0.455543,0.331558,0.697606,0.878125,0.439372,0.743654,0.0995619,0.936925,0.396689,0.0989597,0.990982,0.551601,0.28335,0.899072,0.841142,0.693236,0.456762,0.997096,0.0190258,0.797951,0.0743596,0.384552,0.519687,0.0432994,0.959249,0.63258,0.553697,0.734005,0.0464283,0.30059,0.408487,0.207355,0.739714,0.524599,0.859007,0.31429,0.518661,0.154058,0.566779,0.341798,0.479778,0.100068,0.534432,0.0475707,0.285421,0.831911,0.679443,0.0108083,0.362228,0.0268195,0.307969,0.599044,0.532232,0.101264,0.177335,0.315586,0.693512,0.689349,0.848001,0.182333,0.00207758,0.837097,0.613424,0.299678,0.252597,0.177037,0.929543,0.929277,0.720625,0.859357,0.882366,0.488371,0.401344,0.786731,0.319823,0.871505,0.150623,0.735307,0.866187,0.29568,0.525092,0.589148,0.600977,0.138646,0.127728,0.258312,0.00836468,0.581852,0.620974,0.497545,0.987972,0.975549,0.453888,0.737311,0.622664,0.886121,0.335454,0.692152,0.248222,0.188016,0.394708,0.868978,0.034821,0.149842,0.911257,0.24963,0.493712,0.457688,0.374399,0.994385,0.608066,0.661661,0.19743,0.141083,0.402526,0.289179,0.943956,0.719216,0.395263,0.303894,0.850867,0.0574027,0.84406,0.493876,0.250368,0.746971,0.273137,0.41167,0.130896,0.479939,0.835797,0.610866,0.718411,0.987639,0.370398,0.46935,0.852262,0.161906,0.400291,0.657869,0.439433,0.120461,0.373474,0.330815,0.0450422,0.363467,0.00522429,0.378509,0.990914,0.120541,0.505477,0.85075,0.34473,0.562076,0.0282952,0.930577,0.206635,0.330908,0.634935,0.790905,0.251404,0.452814,0.586382,0.9612,0.791802,0.956368,0.0549796,0.909606,0.50805,0.990676,0.13494,0.641883,0.469001,0.137485,0.978219,0.812034,0.902994,0.701023,0.0118163,0.645405,0.409183,0.95454,0.484094,0.661125,0.880262,0.230869,0.858853,0.817468,0.29032,0.202262,0.976144,0.125015,0.876877,0.074368,0.88982,0.0284706,0.0093779,0.21295,0.0985475,0.0861995,0.990197,0.522234,0.642845,0.912096,0.717992,0.531249,0.800377,0.489044,0.971459,0.164002,0.407976,0.42271,0.601896,0.278565,0.640438,0.234126,0.466859,0.295266,0.643795,0.499079,0.287336,0.877799,0.174724,0.258151,0.206663,0.69786,0.790751,0.895226,0.439118,0.0164947,0.889433,0.434863,0.0383649,0.482004,0.777641,0.889539,0.730096,0.308352,0.708927,0.158797,0.918342,0.211743,0.853627,0.979561,0.631523,0.554972,0.0816128,0.767912,0.549172,0.413848,0.476306,0.822196,0.11294,0.495148,0.396925,0.475918,0.323876,0.525011,0.450605,0.382367,0.103767,0.488258,0.811973,0.722205,0.249531,0.764153,0.531359,0.836909,0.860153,0.361357,0.110831,0.426,0.394712,0.347427,0.559696,0.0673229,0.0313153,0.698227,0.598995,0.822254,0.130334,0.475274,0.124497,0.567843,0.343784,0.181601,0.22992,0.530155,0.125106,0.898482,0.838007,0.544975,0.373053,0.161947,0.733753,0.648845,0.797962,0.38812,0.706738,0.221026,0.737366,0.827446,0.907397,0.977256,0.351937,0.0385426,0.1824,0.413743,0.612055,0.632146,0.951944,0.111205,0.951973,0.238377,0.0188674,0.663116,0.313354,0.412524,0.0108507,0.594672,0.0335566,0.627896,0.57912,0.998788,0.404271,0.242883,0.200593,0.059963,0.781507,0.624217,0.356839,0.520547,0.97991,0.269679,0.32168,0.926159,0.399185,0.810935,0.455906,0.840147,0.49495,0.511525,0.596813,0.232135,0.0735417,0.22453,0.297982,0.489757,0.115118,0.682661,0.77144,0.987443,0.320048,0.828294,0.76563,0.866681,0.569498,0.666738,0.365498,0.453003,0.342335,0.358646,0.544039,0.669365,0.615232,0.547713,0.266656,0.341563,0.855127,0.298085,0.217641,0.931301,0.49009,0.289187,0.429278,0.0674883,0.594833,0.564792,0.681034,0.603886,0.190615,0.486776,0.78472,0.147073,0.896719,0.870467,0.502138,0.610265,0.669872,0.707011,0.742947,0.273069,0.494509,0.525496,0.834738,0.544033,0.950263,0.0782475,0.419842,0.114973,0.329494,0.36477,0.307847,0.440444,0.236137,0.128055,0.406702,0.278217,0.674877,0.306008,0.050288,0.830285,0.347047,0.141145,0.751883,0.27047,0.334385,0.425257,0.171687,0.569905,0.790395,0.47702,0.862435,0.995212,0.97899,0.611721,0.700028,0.898022,0.97927,0.921955,0.55994,0.100569,0.480645,0.713892,0.654841,0.456826,0.170663,0.196995,0.895884,0.083138,0.82648,0.651189,0.0321786,0.0529613,0.609512,0.837613,0.526663,0.768107,0.223045,0.782632,0.477842,0.165977,0.696224,0.930087,0.478502,0.0560713,0.702953,0.848964,0.157153,0.761136,0.62653,0.0581427,0.035291,0.338094,0.605178,0.400163,0.521655,0.958394,0.827063,0.00303459,0.95209,0.296913,0.0324659,0.768873,0.453402,0.285298,0.810647,0.505704,0.445325,0.939166,0.843882,0.406284,0.483324,0.23611,0.904469,0.462925,0.0265362,0.95972,0.927351,0.463929,0.718635,0.315754,0.448503,0.0867288,0.657389,0.845755,0.414008,0.819202,0.458098,0.461722,0.906501,0.498759,0.613894,0.241699,0.46718,0.306151,0.393829,0.230448,0.442137,0.42111,0.826897,0.893396,0.131983,0.351437,0.929257,0.714544,0.504619,0.927326,0.0511394,0.64289,0.440087,0.977215,0.756754,0.548716,0.933712,0.960386,0.147303,0.645174,0.62267,0.434182,0.294486,0.0633005,0.336427,0.648739,0.066909,0.480056,0.602776,0.23901,0.389105,0.466166,0.248353,0.253173,0.756298,0.301194,0.052591,0.0624043,0.0137838,0.439687,0.908032,0.4001,0.33888,0.734931,0.211864,0.898069,0.19241,0.829191,0.461242,0.86644,0.905671,0.18291,0.198788,0.102624,0.209539,0.98231,0.473974,0.733175,0.457966,0.368629,0.687721,0.157033,0.119532,0.146862,0.472303,0.785481,0.477085,0.309752,0.688213,0.114276,0.63516,0.860725,0.426403,0.340815,0.477799,0.913728,0.881815,0.611834,0.833886,0.927119,0.0856646,0.33832,0.132751,0.945279,0.733366,0.146693,0.901661,0.804892,0.540424,0.198179,0.157455,0.438724,0.250761,0.572901,0.774213,0.709748,0.183443,0.351543,0.19505,0.454843,0.0523232,0.947654,0.495166,0.899086,0.191023,0.995661,0.717713,0.704938,0.673095,0.0849554,0.274023,0.522826,0.335265,0.184942,0.309478,0.914441,0.337673,0.665367,0.610046,0.0195671,0.117737,0.763041,0.209335,0.181642,0.284448,0.322781,0.328514,0.360483,0.656999,0.149298,0.823304,0.193145,0.109975,0.525285,0.0907563,0.920362,0.528956,0.576988,0.471891,0.262772,0.120824,0.635065,0.381834,0.589571,0.185511,0.435405,0.897896,0.981482,0.291025,0.935215,0.720445,0.129246,0.390755,0.903277,0.709384,0.844232,0.585965,0.657394,0.224807,0.872509,0.16771,0.618248,0.71099,0.982381,0.940294,0.958834,0.674115,0.800386,0.637534,0.0208322,0.864825,0.620006,0.697341,0.313285,0.143347,0.044036,0.778089,0.571389,0.169389,0.0198907,0.510878,0.0595493,0.290288,0.911856,0.431249,0.812579,0.0410405,0.393239,0.982952,0.0714848,0.763082,0.291189,0.516335,0.0191699,0.320727,0.372101,0.672704,0.319159,0.0362881,0.06926,0.693222,0.521232,0.940121,0.481723,0.562788,0.544075,0.839663,0.734966,0.552946,0.191449,0.745643,0.0753434,0.120841,0.571286,0.548703,0.0428303,0.190078,0.085507,0.860604,0.622314,0.37029,0.533203,0.386151,0.434302,0.762336,0.367783,0.139418,0.0686348,0.314484,0.846935,0.0680989,0.380294,|0.225668,0.863913,0.848313,0.536323,0.863686,0.480996,0.749711,0.773207,0.619731,0.508969,0.633499,0.104104,0.431178,0.813662,0.536773,0.648534,0.417437,0.887542,0.512737,0.318397,0.732519,0.525059,0.149541,0.151356,0.406578,0.103084,0.939971,0.445217,0.00343406,0.468861,0.343763,0.422195,0.182421,0.200706,0.72824,0.0469253,0.73047,0.675927,0.615374,0.671905,0.283086,0.317953,0.585129,0.785647,0.924793,0.920672,0.605964,0.738117,0.032338,0.308346,0.804747,0.156511,0.186783,0.980315,0.905674,0.988494,0.866082,0.513793,0.785999,0.761352,0.633285,0.997886,0.528118,0.507272,0.825549,0.469464,0.57986,0.480149,0.462439,0.403697,0.405368,0.396202,0.671375,0.866207,0.718556,0.172905,0.995131,0.26008,0.668566,0.0271659,0.128599,0.854106,0.553761,0.354933,0.258123,0.479953,0.326525,0.126667,0.547269,0.854048,0.286247,0.540044,0.165302,0.855128,0.457579,0.127655,0.224759,0.808996,0.770595,0.354987,0.273501,0.93973,0.45212,0.657507,0.908435,0.363916,0.513781,0.395517,0.942362,0.360981,0.339236,0.182887,0.758294,0.597448,0.302438,0.552351,0.127784,0.883344,0.663742,0.932921,0.606754,0.00704068,0.808436,0.671909,0.879134,0.0254488,0.0367635,0.18859,0.461491,0.928084,0.165846,0.229554,0.921085,0.428866,0.604068,0.107224,0.204103,0.866334,0.345451,0.795414,0.670604,0.28923,0.610027,0.378972,0.33477,0.999164,0.208131,0.579654,0.520467,0.395581,0.991179,0.215904,0.969999,0.396207,0.401487,0.712957,0.97218,0.435118,0.683422,0.558702,0.529808,0.712155,0.319332,0.494216,0.461397,0.690528,0.487352,0.758352,0.9569,0.858969,0.849298,0.953675,0.756392,0.675118,0.811735,0.502469,0.661564,0.656988,0.282273,0.759948,0.32423,0.260931,0.820654,0.309354,0.652561,0.664688,0.995985,0.785801,0.865987,0.993141,0.538558,0.188884,0.478923,0.864135,0.850452,0.51279,0.0777414,0.770396,0.580019,0.384472,0.822675,0.124013,0.775867,0.0480356,0.817998,0.166354,0.992648,0.70742,0.485947,0.537448,0.63113,0.294087,0.646841,0.353953,0.111466,0.849812,0.828814,0.144058,0.0534083,0.63703,0.902837,0.328862,0.274717,0.483255,0.717324,0.481563,0.701674,0.245468,0.747362,0.975775,0.580006,0.830951,0.421104,0.984444,0.850215,0.0765982,0.125563,0.991234,0.368697,0.632525,0.220087,0.745614,0.126204,0.707882,0.25867,0.748304,0.831714,0.613534,0.894516,0.895115,0.447142,0.0671689,0.759992,0.845211,0.774566,0.228347,0.43902,0.323945,0.695474,0.617377,0.48648,0.980817,0.624937,0.102531,0.266584,0.0295197,0.428499,0.259915,0.904437,0.710455,0.0592206,0.326071,0.175411,0.888793,0.688164,0.271005,0.996857,0.359275,0.510679,0.0668529,0.846416,0.408914,0.663967,0.689918,0.562516,0.550464,0.950864,0.775078,0.666526,0.466777,0.720265,0.0150629,0.704203,0.67121,0.155669,0.220144,0.828386,0.90385,0.551135,0.132418,0.989541,0.451587,0.292826,0.98339,0.866278,0.619938,0.235123,0.641131,0.202461,0.680998,0.783021,0.754415,0.601648,0.617442,0.37327,0.951136,0.971113,0.200546,0.244179,0.340247,0.0729888,0.171535,0.190459,0.607593,0.256005,0.483282,0.62923,0.448618,0.79548,0.979376,0.447382,0.773046,0.453255,0.742348,0.611979,0.429167,0.111021,0.0126166,0.714885,0.495896,0.786579,0.851107,0.192384,0.734121,0.230643,0.684306,0.0741343,0.271741,0.259781,0.341928,0.317786,0.521577,0.366902,0.368989,0.0384617,0.435822,0.443436,0.125488,0.785472,0.369366,0.355734,0.322396,0.0934575,0.32769,0.276277,0.477708,0.994348,0.345054,0.0487443,0.342536,0.0488052,0.758237,0.472863,0.30678,0.0863992,0.0280835,0.253391,0.739066,0.28859,0.0982883,0.0683613,0.693526,0.97128,0.0741416,0.0945836,0.889107,0.0779273,0.668927,0.266607,0.116268,0.12014,0.320922,0.927051,0.613393,0.717027,0.508194,0.349914,0.359495,0.474108,0.20288,0.341404,0.699431,0.157053,0.318411,0.985631,0.771585,0.395284,0.930795,0.535752,0.551848,0.677658,0.703522,0.182615,0.987195,0.118072,0.00126684,0.720791,0.451979,0.281643,0.395206,0.506791,0.774179,0.168343,0.722565,0.0609365,0.596015,0.0792289,0.353172,0.106528,0.588335,0.335856,0.68533,0.972621,0.835073,0.40697,0.668253,0.795085,0.798468,0.306058,0.347977,0.243414,0.879593,0.923149,0.393741,0.804312,0.378429,0.16495,0.857128,0.0524881,0.256701,0.255564,0.703927,0.793066,0.126584,0.636023,0.732786,0.871186,0.762128,0.904452,0.302681,0.000276506,0.540707,0.886012,0.519807,0.89525,0.610203,0.101467,0.27339,0.508372,0.619007,0.262908,0.835468,0.115262,0.224776,0.717447,0.238914,0.55326,0.926957,0.196732,0.857397,0.278391,0.586052,0.627879,0.226014,0.292053,0.823184,0.679727,0.238479,0.84303,0.639912,0.548631,0.996411,0.437998,0.135715,0.710565,0.197481,0.944228,0.00757641,0.735822,0.20508,0.893743,0.296643,0.0303221,0.179495,0.0530322,0.10172,0.175671,0.456193,0.106303,0.755451,0.279863,0.779199,0.751612,0.372769,0.802005,0.428759,0.162465,0.707043,0.552241,0.422116,0.242936,0.415299,0.129598,0.617038,0.77062,0.537214,0.20164,0.674228,0.765858,0.490518,0.186462,0.61206,0.846007,0.161367,0.699881,0.422484,0.451898,0.381254,0.094906,0.262483,0.602731,0.710762,0.864716,0.84293,0.535165,0.569243,0.786545,0.61414,0.183539,0.741301,0.667587,0.143745,0.477612,0.947286,0.979895,0.626368,0.675814,0.640442,0.341597,0.974457,0.844944,0.422009,0.645998,0.694169,0.588238,0.903473,0.207343,0.526866,0.017666,0.287062,0.447951,0.405585,0.281508,0.960102,0.776984,0.17688,0.349845,0.00494754,0.389492,0.505928,0.766052,0.143204,0.886964,0.803239,0.187875,0.943274,0.115929,0.606239,0.485109,0.985223,0.451364,0.363339,0.12952,0.529188,0.560835,0.531731,0.947079,0.918151,0.684785,0.79895,0.475456,0.810034,0.641213,0.953362,0.717897,0.797423,0.6621,0.667501,0.78412,0.792787,0.333283,0.71547,0.802728,0.808645,0.586294,0.459631,0.371551,0.732054,0.322497,0.149888,0.452243,0.432942,0.00171965,0.696313,0.110343,0.823995,0.94174,0.174629,0.370905,0.260761,0.503472,0.242265,0.857703,0.70836,0.841022,0.274674,0.984802,0.356537,0.284901,0.40882,0.826996,0.13746,0.512785,0.0731269,0.945554,0.596044,0.998046,0.608833,0.185825,0.682646,0.511986,0.419299,0.235023,0.207022,0.386426,0.20419,0.0932759,0.848795,0.310659,0.988043,0.765146,0.141156,0.880378,0.0179924,0.450393,0.726494,0.484154,0.29888,0.557164,0.0818093,0.0488831,0.166343,0.978681,0.400871,0.736384,0.253841,0.363271,0.65488,0.221189,0.0842248,0.447781,0.97235,0.704443,0.206914,0.582697,0.219157,0.866173,0.62624,0.67073,0.675617,0.0237142,0.926735,0.163076,0.00146168,0.477395,0.687919,0.803708,0.793447,0.486093,0.0793773,0.657862,0.881714,0.601591,0.391136,0.800246,0.348176,0.927182,0.909686,0.490932,0.415729,0.235914,0.707369,0.519534,0.693289,0.643967,0.391776,0.914062,0.606146,0.261815,0.875434,0.814115,0.137014,0.637309,0.766313,0.00660974,0.591789,0.0341399,0.15179,0.406265,0.0589116,0.0767679,0.135425,0.615571,0.651446,0.763513,0.0633393,0.05654,0.906933,0.617471,0.402561,0.43702,0.631402,0.504675,0.979889,0.439268,0.294731,0.657277,0.0978501,0.965255,0.515419,0.845814,0.164651,0.0793471,0.301666,0.564508,0.864618,0.302198,0.605629,0.425641,0.207198,0.640864,0.331563,0.341171,0.580837,0.569732,0.85122,0.269602,0.208895,0.286277,0.157859,0.3876,0.0664916,0.994406,0.331383,0.996097,0.511704,0.68408,0.467536,0.305404,0.703962,0.28236,0.96298,0.794532,0.911899,0.834788,0.844104,0.921441,0.817713,0.502936,0.665132,0.569169,0.724232,0.426641,0.195403,0.986606,0.476891,0.771954,0.182221,0.473971,0.518875,0.888936,0.306183,0.748598,0.121722,0.537226,0.595089,0.331467,0.577366,0.00935221,0.270225,0.241443,0.256798,0.516987,0.251788,0.193793,0.274568,0.425672,0.0270177,0.523025,0.528585,0.00298262,0.224842,0.425002,0.779097,0.24993,0.223853,0.796261,0.623553,0.441054,0.746035,0.392236,0.41791,0.432751,0.332688,0.570705,0.063913,0.758597,0.602231,0.29163,0.929551,0.339989,0.907708,0.783509,0.249673,0.807389,0.392947,0.202885,0.279301,0.822125,0.138593,0.797046,0.910326,0.0162511,0.707405,0.441494,0.0448024,0.90998,0.546878,0.772051,0.100194,0.379784,0.78379,0.541629,0.939333,0.75174,0.949693,0.962995,0.927154,0.0411237,0.398364,0.530886,0.932863,0.00213397,0.528948,0.119285,0.741143,0.921131,0.716459,0.661543,0.133695,0.273074,0.10658,0.618869,0.188438,0.793291,0.411289,0.57526,0.0163594,0.794844,0.299042,0.192001,0.979498,0.187351,0.577958,0.459938,0.0851709,0.287797,0.994039,0.768848,0.843096,0.466707,0.493944,0.48915,0.184576,0.396613,0.775867,0.0617195,0.194847,0.222596,0.399432,0.631507,0.254006,0.442728,0.64567,0.980136,0.0207662,0.974684,0.359367,0.189788,0.293047,0.921562,0.0680875,0.449954,0.190459,0.342548,0.0757185,0.356817,0.694445,0.484897,0.340573,0.113672,0.17947,0.794212,0.681773,0.482944,0.196164,0.943373,0.177567,0.279626,0.84187,0.14791,0.21811,0.961802,0.0276923,0.552323,0.404716,0.221604,0.920632,0.734171,0.262252,0.19094,0.354487,0.739332,0.344634,0.573543,0.829234,0.223314,0.737343,0.652937,0.545631,0.169814,0.174013,0.889661,0.975255,0.903303,0.272335,0.833252,0.822355,0.526491,0.212209,0.105787,0.463538,0.876147,0.28903,0.508669,0.606217,0.000776231,0.589996,0.714333,0.847513,0.408602,0.86385,0.336715,0.310768,0.333454,0.974238,0.0427443,0.953398,0.70958,0.943363,0.158569,0.491149,0.654857,0.887797,0.0136479,0.542062,0.0662649,0.748975,0.247617,0.263574,|0.129475,0.519649,0.596518,0.496225,0.716399,0.139307,0.449366,0.582329,0.778743,0.808328,0.189841,0.360979,0.767115,0.761138,0.0269819,0.0544307,0.261715,0.140023,0.875477,0.433377,0.033491,0.91167,0.244986,0.490432,0.942629,0.241457,0.318486,0.695183,0.572092,0.105994,0.605983,0.688029,0.441502,0.814203,0.518745,0.442696,0.273837,0.567371,0.395387,0.284143,0.885212,0.141903,0.429957,0.407707,0.233956,0.556755,0.230527,0.770527,0.909284,0.627261,0.0303285,0.644241,0.827741,0.856574,0.774995,0.581722,0.85503,0.27114,0.512034,0.0189758,0.443786,0.942146,0.0479423,0.279489,0.702463,0.0267947,0.423471,0.229401,0.197106,0.11054,0.927163,0.36439,0.420886,0.838721,0.448105,0.708968,0.971386,0.446845,0.849335,0.345936,0.402457,0.440834,0.0786869,0.0594056,0.323092,0.835505,0.517392,0.762676,0.367119,0.825925,0.377408,0.930694,0.96061,0.606323,0.360666,0.839108,0.381283,0.48375,0.716653,0.330964,0.562561,0.494773,0.435453,0.82589,0.231357,0.76847,0.303233,0.736523,0.549162,0.880767,0.635129,0.86935,0.69163,0.942125,0.65064,0.727226,0.502421,0.0770195,0.195067,0.847788,0.934412,0.487661,0.50295,0.453974,0.839592,0.0692878,0.970066,0.759571,0.994089,0.988075,0.925798,0.718508,0.0658025,0.845279,0.508765,0.0551733,0.456332,0.250093,0.676589,0.283901,0.867572,0.76105,0.527632,0.727587,0.0593166,0.765978,0.370042,0.996324,0.14484,0.639746,0.857341,0.21856,0.189731,0.327057,0.870712,0.305654,0.49941,0.561576,0.850511,0.475226,0.100968,0.871261,0.684883,0.592327,0.699864,0.269763,0.684847,0.658559,0.302226,0.106737,0.595336,0.407145,0.88512,0.49198,0.0971708,0.630589,0.404222,0.952947,0.778684,0.605655,0.697879,0.0307595,0.436377,0.77352,0.897289,0.917355,0.303323,0.915215,0.0484285,0.992552,0.145513,0.56861,0.94625,0.644576,0.397759,0.97363,0.509619,0.987395,0.171035,0.245546,0.466913,0.947099,0.871974,0.228723,0.55751,0.417763,0.109713,0.756859,0.853418,0.315047,0.686881,0.00872594,0.749703,0.387342,0.451384,0.0995625,0.729502,0.00943369,0.731349,0.394578,0.808585,0.878914,0.642695,0.185793,0.275935,0.261799,0.418733,0.487823,0.966651,0.298486,0.526781,0.299777,0.490987,0.550079,0.818605,0.691929,0.37118,0.860731,0.838704,0.690074,0.518363,0.407395,0.266182,0.77002,0.861373,0.883069,0.931127,0.232144,0.984961,0.231664,0.633379,0.119139,0.813832,0.687808,0.937551,0.169334,0.088945,0.350615,0.0796433,0.73074,0.381471,0.744504,0.371937,0.904855,0.056527,0.603589,0.166732,0.154693,0.858579,0.808816,0.531953,0.172011,0.158095,0.644574,0.467761,0.758971,0.303342,0.0879487,0.541149,0.923772,0.614948,0.768759,0.462924,0.501862,0.0534666,0.765844,0.961097,0.837538,0.513397,0.0586972,0.327441,0.95773,0.202612,0.152072,0.343762,0.788162,0.671995,0.070681,0.277175,0.467591,0.736434,0.0931865,0.993986,0.129209,0.542341,0.480262,0.673276,0.962564,0.572388,0.412832,0.302498,0.887803,0.734256,0.522974,0.602396,0.465294,0.867311,0.0731445,0.510356,0.124934,0.382011,0.488839,0.926824,0.0633003,0.702512,0.770135,0.6139,0.91514,0.924761,0.955364,0.0970591,0.861711,0.930501,0.785331,0.770459,0.451268,0.281404,0.45225,0.869403,0.811993,0.12677,0.52542,0.0277177,0.516698,0.41183,0.542204,0.244496,0.648428,0.198493,0.264373,0.0701939,0.878187,0.592982,0.122558,0.852544,0.349949,0.184164,0.325566,0.474039,0.0761473,0.365565,0.620736,0.0180225,0.556933,0.120126,0.326215,0.0939749,0.0166765,0.192369,0.644967,0.728678,0.423149,0.431484,0.856134,0.287568,0.120917,0.250547,0.393923,0.24018,0.497684,0.315285,0.788904,0.655749,0.264624,0.244466,0.173697,0.806521,0.094444,0.179669,0.943185,0.995611,0.339338,0.11345,0.693283,0.329693,0.347151,0.720809,0.321106,0.469321,0.231198,0.470374,0.902881,0.370454,0.671991,0.35567,0.137262,0.815036,0.542194,0.262424,0.419317,0.186224,0.225639,0.18634,0.499778,0.731544,0.551662,0.123339,0.402399,0.877908,0.090099,0.560186,0.0826245,0.370104,0.255814,0.722232,0.542973,0.737041,0.117942,0.902734,0.443007,0.744887,0.76142,0.468721,0.915229,0.0177444,0.738255,0.58162,0.0604514,0.882355,0.331556,0.864873,0.160768,0.00435406,0.228456,0.12291,0.212718,0.464711,0.908044,0.795342,0.869148,0.761565,0.62509,0.827471,0.530858,0.592744,0.734571,0.850631,0.67451,0.21243,0.330672,0.985868,0.40932,0.862724,0.685083,0.150893,0.235295,0.953466,0.59349,0.486044,0.63062,0.310684,0.192353,0.183558,0.590587,0.43448,0.912304,0.22468,0.057202,0.193544,0.0250684,0.0875936,0.0594239,0.662244,0.329947,0.266493,0.993121,0.093248,0.174119,0.384174,0.671972,0.494471,0.352112,0.395956,0.145324,0.542381,0.805187,0.921312,0.30562,0.893371,0.312878,0.246958,0.272388,0.122772,0.822867,0.915466,0.949627,0.769854,0.405591,0.805839,0.979831,0.59583,0.925499,0.884711,0.31804,0.356791,0.295866,0.889015,0.998908,0.577199,0.0798214,0.487099,0.494973,0.0222511,0.924044,0.916418,0.938855,0.323027,0.0403079,0.479865,0.964346,0.0921286,0.88515,0.305624,0.569464,0.653487,0.282493,0.498626,0.831835,0.129168,0.72011,0.582211,0.446348,0.178984,0.562561,0.812997,0.58018,0.167875,0.225126,0.570148,0.602482,0.386047,0.63066,0.415798,0.685716,0.928577,0.452328,0.506564,0.81249,0.489503,0.687594,0.130063,0.714013,0.320125,0.518449,0.00869924,0.643021,0.33195,0.0446501,0.302335,0.93453,0.121695,0.464704,0.119611,0.970306,0.530921,0.466035,0.579965,0.824362,0.127156,0.678269,0.516138,0.292405,0.962096,0.37042,0.629392,0.67876,0.0148938,0.498187,0.0260023,0.710677,0.035741,0.649748,0.488039,0.131351,0.864249,0.931582,0.455704,0.979482,0.286561,0.988876,0.764006,0.900002,0.828068,0.0282106,0.180856,0.562232,0.605247,0.317189,0.700092,0.56021,0.762268,0.626088,0.550646,0.766789,0.0596272,0.0789397,0.929656,0.697145,0.917714,0.813161,0.637603,0.150856,0.781754,0.10824,0.437697,0.476331,0.732085,0.898685,0.44097,0.590336,0.895516,0.435796,0.727765,0.864668,0.956203,0.65222,0.391893,0.445655,0.967381,0.984352,0.142701,0.180004,0.908183,0.258914,0.090661,0.0241656,0.0615846,0.170983,0.808752,0.559519,0.496045,0.755597,0.0448325,0.836226,0.961588,0.411872,0.0483768,0.659368,0.16471,0.834064,0.727676,0.0741995,0.579834,0.583115,0.388248,0.736657,0.797463,0.493694,0.480482,0.430681,0.56723,0.624489,0.67635,0.956685,0.644193,0.18178,0.639695,0.207443,0.813125,0.0280371,0.158601,0.569528,0.25785,0.228575,0.971962,0.13171,0.491425,0.406831,0.82764,0.555236,0.589004,0.38674,0.0544841,0.640097,0.0434696,0.0293532,0.661879,0.659116,0.451159,0.133936,0.195529,0.307294,0.985249,0.111697,0.363981,0.786681,0.276922,0.399931,0.743743,0.200688,0.620858,0.592752,0.543566,0.184134,0.352184,0.192704,0.558194,0.0612087,0.187559,0.463388,0.826773,0.195635,0.3682,0.575063,0.218635,0.4476,0.994816,0.587735,0.672008,0.639001,0.582709,0.665916,0.475218,0.973976,0.167769,0.203662,0.414049,0.921359,0.741233,0.771947,0.908654,0.701758,0.54803,0.681004,0.851891,0.46613,0.542475,0.083178,0.379314,0.00303531,0.983835,0.790722,0.266693,0.28221,0.135705,0.950564,0.856142,0.132121,0.41428,0.0486427,0.0269273,0.99779,0.100486,0.842687,0.98955,0.898797,0.968979,0.107316,0.612075,0.0215497,0.547254,0.649033,0.0217902,0.821794,0.46277,0.0898309,0.457745,0.517853,0.370242,0.71139,0.446518,0.702453,0.0317954,0.572296,0.781321,0.544573,0.294565,0.683617,0.957884,0.00393516,0.176995,0.78997,0.583265,0.580657,0.449129,0.149313,0.374533,0.753948,0.34641,0.772539,0.473005,0.421302,0.0186639,0.598252,0.693993,0.056906,0.400862,0.973676,0.780977,0.0359093,0.343403,0.166868,0.329897,0.636821,0.460155,0.501104,0.589938,0.416167,0.883013,0.409942,0.144365,0.853568,0.816595,0.720832,0.460617,0.956583,0.853956,0.131611,0.388364,0.827221,0.511493,0.882591,0.601017,0.701026,0.326559,0.926726,0.593672,0.302893,0.204286,0.505847,0.274024,0.457447,0.182085,0.19338,0.30303,0.421735,0.0923724,0.906391,0.234492,0.442279,0.999967,0.124924,0.2914,0.964403,0.121151,0.257813,0.363755,0.849846,0.300665,0.56377,0.16336,0.01826,0.79528,0.646321,0.350888,0.129887,0.571594,0.571114,0.320255,0.427475,0.766717,0.425153,0.154747,0.184319,0.984498,0.0964547,0.538405,0.669165,0.0438321,0.0779353,0.3703,0.140786,0.198482,0.647334,0.995376,0.071267,0.963838,0.232961,0.86425,0.764688,0.320476,0.110137,0.24343,0.63813,0.532373,0.0965268,0.35245,0.795955,0.349302,0.504283,0.577617,0.400601,0.896333,0.180988,0.0868333,0.0186006,0.622894,0.821871,0.276151,0.199255,0.406032,0.594245,0.0634284,0.895266,0.566676,0.453449,0.825072,0.726939,0.756142,0.850628,0.468689,0.758451,0.0129045,0.23799,0.864921,0.630102,0.985609,0.250463,0.0227432,0.200098,0.770411,0.785257,0.150135,0.725912,0.47126,0.651202,0.561685,0.975118,0.980737,0.566451,0.458012,0.530704,0.592687,0.854052,0.26695,0.0903049,0.924663,0.503817,0.137384,0.790318,0.0234045,0.547209,0.410905,0.864626,0.115372,0.771301,0.00319618,0.0975572,0.926251,0.877541,0.1914,0.195621,0.93683,0.977367,0.92891,0.163222,0.581786,0.0401389,0.0887741,0.556022,0.8061,0.802041,0.541883,0.525699,0.787628,0.185513,0.163604,0.119324,0.721918,0.887485,0.331436,0.0158851,0.929977,0.645451,0.197652,0.96804,0.39066,0.560252,0.162396,0.637851,0.255278,0.135675,0.952771,0.750335,0.68719,0.505794,0.608097,0.477513,0.761927,0.470105,|0.033756,0.755612,0.398107,0.5043,0.255542,0.319619,0.794156,0.39705,0.128054,0.481254,0.566246,0.542349,0.108411,0.588991,0.573356,0.626741,0.692635,0.250963,0.677102,0.761781,0.897317,0.552558,0.121781,0.864357,0.0493472,0.718579,0.646048,0.323831,0.409214,0.512677,0.725265,0.337627,0.572942,0.621135,0.954037,0.642946,0.644587,0.236695,0.972676,0.677625,0.382676,0.538367,0.755548,0.960919,0.33572,0.452436,0.851193,0.242414,0.212951,0.0347241,0.363701,0.962278,0.154506,0.069703,0.409263,0.15797,0.062278,0.144533,0.824556,0.359274,0.417164,0.533281,0.412244,0.579096,0.155405,0.855551,0.688435,0.725347,0.435552,0.346841,0.181079,0.403962,0.0241168,0.731385,0.906519,0.16939,0.821179,0.799648,0.742889,0.0167022,0.389306,0.158414,0.505051,0.526722,0.895938,0.0536523,0.477917,0.841851,0.892199,0.143324,0.197516,0.621876,0.829911,0.305131,0.139804,0.731845,0.265114,0.566832,0.184634,0.341728,0.440022,0.334579,0.324001,0.208019,0.56306,0.622648,0.649225,0.436304,0.61908,0.480378,0.761172,0.310673,0.250574,0.86268,0.590256,0.908249,0.249225,0.411094,0.810057,0.527466,0.329213,0.62586,0.192734,0.0416173,0.0451373,0.66695,0.0619939,0.253082,0.562736,0.826578,0.471197,0.401832,0.362556,0.540673,0.292857,0.457662,0.850923,0.799391,0.014386,0.173125,0.445631,0.916057,0.3645,0.0479947,0.745043,0.732074,0.463122,0.122581,0.603776,0.595357,0.503248,0.971069,0.887722,0.678403,0.9114,0.28722,0.974673,0.214448,0.0711814,0.388421,0.405465,0.691005,0.647442,0.0963312,0.64475,0.735551,0.474775,0.736737,0.160342,0.654998,0.0401693,0.327313,0.15562,0.624645,0.28011,0.367539,0.614155,0.0414153,0.00296181,0.485504,0.704192,0.287552,0.0677562,0.629461,0.543999,0.605202,0.880571,0.565091,0.885681,0.319952,0.984016,0.098772,0.655455,0.798825,0.660255,0.609785,0.00972074,0.438686,0.598075,0.975758,0.699898,0.224307,0.654153,0.999499,0.322205,0.16527,0.18789,0.426807,0.505098,0.752886,0.455676,0.143459,0.252924,0.56892,0.365388,0.378805,0.199276,0.947793,0.178649,0.959215,0.0759823,0.554227,0.51658,0.753577,0.309254,0.588248,0.753992,0.209564,0.198649,0.822639,0.333416,0.333005,0.938433,0.999343,0.770882,0.83296,0.976292,0.150326,0.223383,0.863024,0.374975,0.852666,0.97812,0.747855,0.739439,0.536068,0.408706,0.421463,0.127646,0.577372,0.0606774,0.696037,0.349624,0.670474,0.966593,0.423904,0.0926144,0.306398,0.432891,0.748181,0.988449,0.714494,0.3923,0.428123,0.00456691,0.560527,0.0693752,0.265623,0.0225951,0.269242,0.720055,0.43912,0.342798,0.561907,0.070155,0.399933,0.35661,0.822751,0.350695,0.632942,0.0796227,0.691249,0.591918,0.194535,0.0995816,0.137645,0.170939,0.560516,0.895267,0.746434,0.0737603,0.929275,0.8992,0.557557,0.947681,0.10537,0.757729,0.269565,0.708192,0.786011,0.321916,0.390637,0.297303,0.442572,0.262171,0.173789,0.962506,0.906855,0.96659,0.24137,0.697171,0.559485,0.0932137,0.967442,0.749523,0.65388,0.437749,0.256185,0.141507,0.688035,0.435148,0.161191,0.846946,0.34164,0.0886595,0.396777,0.953278,0.850101,0.44383,0.636318,0.532527,0.325902,0.28925,0.883038,0.942071,0.0830334,0.0335753,0.602407,0.514238,0.849883,0.929699,0.0201837,0.770667,0.60504,0.528138,0.696145,0.582538,0.872717,0.827274,0.974346,0.384999,0.373084,0.265909,0.109562,0.771512,0.218734,0.392172,0.737483,0.0334171,0.899753,0.411508,0.57255,0.726537,0.708441,0.870062,0.0286038,0.856526,0.018205,0.167737,0.817088,0.83135,0.53673,0.653337,0.185207,0.54595,0.0682065,0.793807,0.261024,0.35125,0.630429,0.952927,0.856098,0.547215,0.411089,0.44138,0.244839,0.764157,0.336241,0.540512,0.423828,0.298669,0.466756,0.741882,0.0502859,0.75297,0.311401,0.401833,0.919759,0.187815,0.967197,0.666957,0.950775,0.161786,0.119475,0.620557,0.153119,0.505581,0.160868,0.314974,0.198588,0.788953,0.0730479,0.251538,0.79777,0.914365,0.0789747,0.989131,0.465758,0.757354,0.806808,0.0763853,0.899928,0.673086,0.552294,0.849585,0.740048,0.180625,0.471962,0.553023,0.63622,0.469428,0.724073,0.733502,0.465893,0.894503,0.784681,0.40094,0.660728,0.889244,0.935212,0.786145,0.756468,0.844335,0.622633,0.139107,0.827905,0.449389,0.635622,0.350141,0.15029,0.746396,0.419696,0.0521394,0.670585,0.245759,0.741738,0.295141,0.245345,0.256236,0.164958,0.539415,0.276216,0.799985,0.284238,0.302393,0.935275,0.851923,0.728135,0.0798961,0.817122,0.566748,0.129166,0.46912,0.945906,0.768703,0.816907,0.328692,0.155189,0.281875,0.785032,0.436398,0.680045,0.897364,0.245986,0.0869107,0.768517,0.283921,0.396252,0.120472,0.763327,0.918043,0.402093,0.396402,0.100681,0.134159,0.143872,0.90773,0.139758,0.0161462,0.171579,0.112019,0.255809,0.0385838,0.721668,0.435776,0.12704,0.0193777,0.111928,0.418093,0.160009,0.984446,0.793988,0.560466,0.407497,0.62808,0.960234,0.547392,0.596663,0.236946,0.53311,0.889705,0.264493,0.292532,0.718153,0.175259,0.319982,0.427794,0.946176,0.291563,0.291861,0.586634,0.285055,0.425079,0.499725,0.815228,0.435665,0.967264,0.619934,0.750602,0.150805,0.401793,0.707878,0.074606,0.900014,0.178903,0.190664,0.892024,0.709394,0.919117,0.461836,0.780497,0.763263,0.224366,0.396394,0.882082,0.760396,0.930064,0.111042,0.570298,0.924267,0.662951,0.217806,0.540461,0.313204,0.138431,0.935019,0.541267,0.191763,0.418723,0.811411,0.506697,0.810686,0.637423,0.663948,0.103695,0.347755,0.886268,0.813093,0.710196,0.762225,0.534608,0.01004,0.292376,0.172251,0.267913,0.92326,0.978154,0.443167,0.7289,0.562184,0.978346,0.79912,0.919208,0.372805,0.0488632,0.192409,0.614145,0.658154,0.158002,0.795023,0.441409,0.41076,0.346712,0.191241,0.614999,0.9047,0.326971,0.173054,0.609866,0.859362,0.125556,0.435105,0.92234,0.545101,0.536112,0.318498,0.0802369,0.619144,0.938561,0.0643628,0.252551,0.817173,0.911176,0.897528,0.591719,0.513585,0.344948,0.324531,0.574692,0.794451,0.45116,0.832675,0.647194,0.296662,0.162392,0.701943,0.332502,0.697873,0.722052,0.307355,0.702745,0.541403,0.162058,0.574525,0.611618,0.812328,0.400731,0.970321,0.918607,0.966735,0.799808,0.779562,0.142829,0.686157,0.038657,0.0148509,0.548616,0.0950006,0.00520819,0.305419,0.802055,0.469499,0.525184,0.376569,0.818242,0.0630989,0.976403,0.219698,0.984555,0.158585,0.0205551,0.825426,0.608906,0.235311,0.311619,0.978572,0.919276,0.895236,0.254726,0.201353,0.53779,0.422049,0.0653268,0.651901,0.907159,0.00863093,0.728363,0.277125,0.10216,0.29682,0.234101,0.747291,0.844363,0.163655,0.698279,0.203811,0.269028,0.860751,0.97224,0.47002,0.214993,0.813729,0.604159,0.00154853,0.847917,0.061029,0.808914,0.367237,0.0469621,0.0439786,0.711552,0.30101,0.0215939,0.379582,0.333619,0.257722,0.84743,0.487986,0.735247,0.369247,0.70053,0.419439,0.73352,0.137553,0.680561,0.705497,0.619869,0.354759,0.688951,0.889073,0.308201,0.723274,0.262006,0.337542,0.221345,0.450302,0.944814,0.169805,0.216752,0.673754,0.0494445,0.714367,0.928945,0.939775,0.617886,0.905858,0.035229,0.222351,0.70942,0.217259,0.742349,0.91234,0.956575,0.595616,0.597443,0.957706,0.944722,0.840467,0.505169,0.458077,0.659537,0.689545,0.98876,0.143341,0.677817,0.849168,0.297984,0.347447,0.46769,0.737729,0.106807,0.518376,0.464643,0.691039,0.628383,0.38003,0.903606,0.822819,0.789135,0.698932,0.0138013,0.120204,0.133163,0.301287,0.370379,0.344988,0.470054,0.532076,0.921499,0.620551,0.861217,0.0711891,0.524296,0.0813658,0.884004,0.49042,0.932094,0.11998,0.0523567,0.514404,0.08464,0.537823,0.169599,0.258211,0.637275,0.699449,0.740741,0.286437,0.395187,0.873137,0.74684,0.99763,0.23047,0.348958,0.636433,0.361935,0.252374,0.703086,0.0212166,0.890204,0.32268,0.206329,0.465699,0.0867819,0.0552057,0.186712,0.841199,0.573148,0.326349,0.860332,0.930248,0.419454,0.627263,0.126303,0.0177178,0.403179,0.859527,0.503723,0.354196,0.219788,0.379385,0.122922,0.321526,0.712702,0.976105,0.886773,0.134249,0.349974,0.510306,0.345611,0.682062,0.597933,0.162771,0.391159,0.0726813,0.90432,0.23068,0.307542,0.537835,0.140657,0.289429,0.339353,0.663625,0.141467,0.353852,0.302604,0.431418,0.972165,0.00717378,0.0833137,0.410521,0.789075,0.340249,0.40832,0.283982,0.798567,0.812206,0.154845,0.325816,0.587772,0.441076,0.410477,0.507252,0.378981,0.776679,0.473091,0.288636,0.577948,0.693918,0.211596,0.351555,0.409582,0.263944,0.537637,0.915227,0.0600969,0.969017,0.247601,0.581754,0.467108,0.0250227,0.311146,0.241296,0.848496,0.934308,0.940917,0.891839,0.604769,0.924049,0.187121,0.0230186,0.252479,0.862404,0.765131,0.748368,0.792131,0.686764,0.818165,0.50387,0.453684,0.166803,0.292652,0.886882,0.557184,0.994351,0.559975,0.0896143,0.630552,0.0532376,0.918448,0.094555,0.0533014,0.740759,0.746138,0.681532,0.171889,0.264734,0.746359,0.966473,0.154646,0.966991,0.384141,0.278293,0.861861,0.737381,0.726283,0.68338,0.513117,0.562671,0.401947,0.985568,0.694554,0.769231,0.374053,0.962283,0.927744,0.972619,0.839949,0.503163,0.480865,0.390812,0.154669,0.255823,0.659091,0.0129859,0.208185,0.523206,0.556794,0.705964,0.490092,0.0536869,0.653743,0.514451,0.591583,0.212872,0.974519,0.0269966,0.920681,0.656784,0.274033,0.267108,0.742641,0.590437,0.721781,0.693577,0.828627,0.298605,0.154116,0.00350386,0.892465,0.0774195,0.0980155,0.583575,0.58071,0.694129,0.450568,0.515233,0.3827,0.976039,0.404664,|0.600536,0.474495,0.23232,0.169536,0.512496,0.531729,0.278788,0.351879,0.663959,0.670435,0.0679967,0.678838,0.32066,0.905633,0.547089,0.249226,0.269412,0.0984653,0.280885,0.775594,0.664823,0.0929832,0.0821773,0.0664515,0.251221,0.187002,0.455583,0.427072,0.392126,0.213397,0.461327,0.180417,0.423346,0.497481,0.197248,0.0495237,0.571161,0.350255,0.143793,0.850015,0.633441,0.786398,0.496465,0.367307,0.377886,0.861669,0.188142,0.601621,0.0441972,0.319902,0.323323,0.516069,0.613534,0.70349,0.420428,0.401406,0.255273,0.773665,0.253311,0.758617,0.434479,0.154367,0.124442,0.0539262,0.303749,0.880453,0.995929,0.893229,0.823379,0.930854,0.130031,0.73364,0.481526,0.192377,0.932423,0.0442765,0.529152,0.233898,0.940704,0.489052,0.808362,0.526444,0.463588,0.463639,0.902745,0.871591,0.710707,0.809548,0.219063,0.354919,0.00790703,0.460953,0.813617,0.385142,0.273042,0.235011,0.213726,0.14177,0.929094,0.0252996,0.248708,0.0359995,0.110785,0.727327,0.382421,0.721707,0.434192,0.743108,0.696348,0.0424434,0.306458,0.992573,0.886071,0.584538,0.758835,0.858509,0.018811,0.395316,0.0378249,0.119418,0.527045,0.211914,0.551844,0.723178,0.889044,0.174461,0.0263191,0.442752,0.480044,0.193695,0.413468,0.699492,0.327669,0.581333,0.420826,0.428118,0.666477,0.585598,0.73239,0.351587,0.98695,0.0891442,0.435854,0.6799,0.496444,0.0203642,0.691051,0.179271,0.00177455,0.931969,0.216193,0.725109,0.573705,0.278374,0.367383,0.395979,0.79239,0.385943,0.0776433,0.79436,0.277463,0.859231,0.181346,0.923876,0.742501,0.41771,0.963463,0.243994,0.97409,0.577976,0.0217651,0.980038,0.817922,0.68833,0.693946,0.895554,0.495386,0.24587,0.632033,0.362125,0.0701752,0.126911,0.531919,0.405882,0.828707,0.889394,0.968941,0.931393,0.759277,0.364727,0.16187,0.121501,0.739709,0.185563,0.496353,0.600091,0.02686,0.453016,0.583215,0.00751472,0.692246,0.100201,0.321904,0.4736,0.829116,0.47008,0.294018,0.0124202,0.806924,0.517121,0.939302,0.226299,0.552004,0.815397,0.330643,0.43121,0.692389,0.587145,0.0307298,0.0423244,0.88919,0.713138,0.682642,0.167434,0.21791,0.239915,0.621679,0.158696,0.296181,0.684463,0.0206802,0.876157,0.69616,0.277045,0.150972,0.553556,0.842332,0.330088,0.701777,0.407245,0.451411,0.947354,0.527072,0.0038895,0.427089,0.531859,0.635599,0.215428,0.593185,0.370742,0.438323,0.452383,0.870063,0.555174,0.767436,0.775116,0.490483,0.0327182,0.0815108,0.801361,0.818793,0.0674605,0.172906,0.891136,0.60848,0.0535038,0.742726,0.585149,0.898014,0.93494,0.977822,0.81978,0.474685,0.32906,0.411213,0.188577,0.778515,0.334872,0.406625,0.407095,0.180319,0.841285,0.0292096,0.471079,0.42577,0.100963,0.507847,0.976846,0.23363,0.453895,0.0919622,0.020444,0.815683,0.428223,0.718802,0.770661,0.549114,0.10009,0.35882,0.567874,0.613442,0.871153,0.109449,0.808213,0.388832,0.904663,0.995556,0.330872,0.284433,0.711429,0.888266,0.0034197,0.135268,0.110685,0.896538,0.955272,0.491811,0.444174,0.144391,0.720067,0.191295,0.916225,0.946334,0.5293,0.200194,0.931665,0.629884,0.612609,0.492065,0.493036,0.640685,0.384272,0.120819,0.475054,0.848839,0.591291,0.338672,0.909766,0.348477,0.230942,0.781662,0.661479,0.44416,0.317563,0.921848,0.679754,0.687942,0.210318,0.118157,0.779736,0.845325,0.705775,0.643372,0.168654,0.964169,0.209437,0.0395707,0.410146,0.0250681,0.988666,0.262948,0.692006,0.536991,0.418708,0.601992,0.770316,0.493679,0.834771,0.31235,0.680665,0.481045,0.353386,0.529335,0.590649,0.117887,0.0458562,0.256991,0.552461,0.404476,0.332804,0.624541,0.577459,0.0773256,0.0337279,0.0718611,0.161835,0.897072,0.800882,0.112425,0.400082,0.843287,0.844087,0.180107,0.966991,0.620623,0.279853,0.44443,0.242905,0.690959,0.701112,0.362807,0.0283723,0.31728,0.923381,0.993246,0.480959,0.684326,0.105279,0.886311,0.525717,0.95622,0.833865,0.380853,0.748935,0.481853,0.261831,0.884776,0.281971,0.97005,0.335007,0.70956,0.00645667,0.818495,0.919682,0.929803,0.726606,0.995331,0.773747,0.587353,0.00565094,0.795489,0.916301,0.65335,0.123544,0.434248,0.39173,0.112724,0.668186,0.348536,0.307738,0.748548,0.491216,0.278139,0.281602,0.537501,0.947494,0.920963,0.0551295,0.103821,0.876706,0.761305,0.0460802,0.68867,0.0196867,0.203236,0.206744,0.370264,0.955496,0.047565,0.427308,0.788064,0.525109,0.62048,0.432298,0.603848,0.499176,0.936594,0.994446,0.23929,0.196777,0.905281,0.133474,0.926745,0.684679,0.165438,0.338763,0.47753,0.0813233,0.788095,0.72395,0.595297,0.48587,0.389648,0.475791,0.996526,0.246587,0.926146,0.884824,0.0839918,0.309338,0.852831,0.206372,0.795903,0.727443,0.182109,0.774175,0.420696,0.876203,0.254646,0.482273,0.879979,0.657932,0.514477,0.0296766,0.743326,0.282776,0.940076,0.855045,0.603002,0.906121,0.55584,0.724994,0.950777,0.503532,0.245861,0.628878,0.654334,0.692089,0.0808145,0.787041,0.49228,0.382678,0.19165,0.668028,0.654417,0.272264,0.479959,0.738474,0.833075,0.997974,0.873543,0.744443,0.509853,0.384931,0.75918,0.294617,0.309057,0.25044,0.117331,0.662127,0.638308,0.636863,0.229224,0.611206,0.541248,0.568304,0.193997,0.159767,0.760239,0.780576,0.86115,0.387308,0.290579,0.209835,0.142483,0.548954,0.214515,0.316224,0.0457582,0.578105,0.68541,0.905173,0.194808,0.182026,0.464953,0.660131,0.231295,0.952443,0.682716,0.36545,0.522095,0.577322,0.541068,0.882453,0.352677,0.394191,0.0877031,0.172849,0.443491,0.743017,0.0230523,0.254499,0.394083,0.739998,0.894129,0.301721,0.841025,0.873813,0.108197,0.904277,0.136392,0.643293,0.911915,0.990579,0.413193,0.302249,0.753941,0.599653,0.638915,0.573329,0.672752,0.272313,0.916467,0.343838,0.466744,0.724985,0.612684,0.95672,0.528968,0.116918,0.164374,0.282806,0.621501,0.588001,0.296677,0.119569,0.27824,0.670933,0.975343,0.849095,0.975994,0.242818,0.499087,0.421008,0.61735,0.0816378,0.208592,0.758012,0.283827,0.449136,0.154385,0.226934,0.0433589,0.838737,0.0849132,0.976699,0.556599,0.0177635,0.0562131,0.957682,0.280218,0.914729,0.131561,0.0705409,0.494398,0.97722,0.569643,0.0954442,0.184183,0.211956,0.147778,0.0809052,0.884937,0.249423,0.207922,0.503103,0.497141,0.915613,0.810182,0.0295138,0.516355,0.24439,0.149884,0.326141,0.654756,0.151207,0.474802,0.12851,0.743113,0.804285,0.988005,0.514106,0.832279,0.855352,0.84167,0.780553,0.978832,0.764346,0.579603,0.552741,0.683526,0.16754,0.889349,0.906549,0.26507,0.634603,0.369607,0.268037,0.0723129,0.0231943,0.70264,0.894064,0.459302,0.430864,0.602362,0.786116,0.249164,0.781994,0.885364,0.473014,0.827066,0.310193,0.00284904,0.707354,0.513583,0.431616,0.193616,0.990629,0.695918,0.825214,0.322878,0.191223,0.452943,0.720865,0.544518,0.546573,0.372527,0.453153,0.379532,0.0247065,0.289107,0.647906,0.382076,0.553785,0.845171,0.733278,0.330343,0.938968,0.925189,0.814525,0.650278,0.607587,0.778535,0.541309,0.349575,0.657412,0.203882,0.677756,0.604151,0.783315,0.258393,0.685968,0.0784819,0.637857,0.0444006,0.812201,0.0988424,0.912282,0.0908356,0.763235,0.79233,0.181726,0.344535,0.125659,0.697538,0.973975,0.340364,0.822468,0.0629978,0.23461,0.880226,0.0466446,0.0138999,0.435341,0.160764,0.984684,0.146153,0.695328,0.615002,0.886045,0.990928,0.127259,0.693013,0.819618,0.068643,0.677665,0.714612,0.0995062,0.912886,0.261971,0.512788,0.892938,0.00559294,0.288466,0.153312,0.981031,0.810392,0.932139,0.897506,0.676036,0.406918,0.0365934,0.956885,0.558791,0.529438,0.507847,0.913493,0.69058,0.147586,0.74876,0.941863,0.927047,0.136221,0.620772,0.0973922,0.817742,0.775463,0.800669,0.589278,0.490195,0.455863,0.0808505,0.682393,0.106395,0.0484489,0.0142467,0.130779,0.937707,0.475895,0.196239,0.0636632,0.168402,0.0686778,0.402283,0.476408,0.219679,0.90738,0.47933,0.552959,0.710656,0.0342929,0.162036,0.241021,0.676008,0.302628,0.554294,0.893261,0.0430394,0.647287,0.505623,0.36794,0.130399,0.759929,0.58136,0.405583,0.0227891,0.742259,0.971261,0.669148,0.678602,0.760619,0.929874,0.00772125,0.511459,0.263869,0.507929,0.797743,0.166151,0.171198,0.284151,0.14386,0.0642778,0.191028,0.595745,0.438364,0.861407,0.812313,0.783716,0.397907,0.448157,0.274017,0.394111,0.545268,0.0710983,0.373602,0.932378,0.178182,0.563999,0.727254,0.604442,0.311745,0.207397,0.742363,0.849656,0.771487,0.724604,0.121292,0.988826,0.462561,0.877171,0.571344,0.481772,0.609958,0.338783,0.377025,0.21394,0.866451,0.768353,0.867396,0.488296,0.280605,0.571126,0.0575437,0.238071,0.775585,0.936929,0.838416,0.17703,0.132593,0.709112,0.267819,0.227657,0.578592,0.726726,0.842919,0.458546,0.749794,0.451394,0.0772566,0.14242,0.825381,0.643662,0.175576,0.935609,0.244738,0.730016,0.274536,0.011699,0.812061,0.656983,0.757381,0.331517,0.777638,0.0871459,0.366459,0.845668,0.918574,0.0234866,0.95983,0.885098,0.708458,0.0654176,0.276066,0.0383811,0.441711,0.231348,0.226829,0.513144,0.230363,0.922857,0.850452,0.0178935,0.280668,0.650404,0.755527,0.436087,0.387384,0.897187,0.0449554,0.657422,0.223259,0.563385,0.993352,0.610545,0.76796,0.33222,0.717677,0.141528,0.251926,0.435063,0.8939,0.924253,0.230109,0.158711,0.327076,0.907803,0.416363,0.345609,0.340553,0.479902,0.813873,0.0977142,0.261762,0.806897,0.838881,0.2213,0.916531,0.643319,0.15303,0.156796,0.552947,0.924205,0.842548,0.350571,0.711346,0.702129,0.504301,0.898552,0.396504,0.433718,|0.703297,0.813662,0.233568,0.153659,0.841256,0.241604,0.941463,0.623895,0.303353,0.198149,0.656352,0.875395,0.00931048,0.359763,0.651542,0.19741,0.901998,0.0122953,0.47868,0.812468,0.322176,0.0252023,0.839189,0.994682,0.0106601,0.677482,0.300161,0.371302,0.295339,0.326828,0.989451,0.134557,0.31058,0.00507116,0.35146,0.295072,0.268258,0.455608,0.855453,0.241977,0.163584,0.369671,0.00401479,0.116547,0.816874,0.646315,0.728417,0.231844,0.378013,0.847277,0.932206,0.0300962,0.738204,0.895922,0.741099,0.641858,0.0324992,0.430815,0.39989,0.860802,0.745675,0.692494,0.106992,0.365689,0.365345,0.466269,0.269335,0.229203,0.573072,0.0971602,0.868936,0.212204,0.738947,0.165854,0.730133,0.464814,0.481764,0.128589,0.125774,0.93158,0.214246,0.739567,0.0749738,0.924999,0.246266,0.110929,0.872655,0.0981063,0.307563,0.154011,0.43468,0.25005,0.236458,0.0463607,0.177393,0.639271,0.397197,0.340243,0.677168,0.074347,0.581512,0.813932,0.63964,0.593612,0.170656,0.0374138,0.0297875,0.493299,0.441111,0.835582,0.7818,0.157912,0.239411,0.881827,0.421143,0.698558,0.677528,0.305391,0.538021,0.172459,0.775238,0.266544,0.227535,0.478382,0.237255,0.676273,0.437172,0.268554,0.225087,0.489437,0.241215,0.226947,0.191338,0.0458426,0.274211,0.0737789,0.773042,0.276506,0.393321,0.542224,0.199352,0.0666898,0.947961,0.809443,0.219864,0.448851,0.980232,0.128231,0.905188,0.406655,0.00679761,0.308452,0.804965,0.749252,0.919564,0.931324,0.575884,0.224926,0.604674,0.978896,0.882891,0.861528,0.852356,0.386131,0.109662,0.708755,0.78796,0.925625,0.579714,0.30314,0.495251,0.214017,0.272558,0.604131,0.496654,0.376948,0.534237,0.144695,0.227652,0.0849468,0.204383,0.16299,0.301959,0.13945,0.590175,0.622895,0.81359,0.979593,0.655809,0.255604,0.117483,0.0451973,0.691691,0.813916,0.449808,0.304952,0.192484,0.51841,0.90312,0.373143,0.150056,0.711852,0.54153,0.442034,0.579759,0.288932,0.719122,0.110734,0.626351,0.0139267,0.728186,0.260026,0.957218,0.026621,0.790293,0.476989,0.693162,0.589356,0.143961,0.524906,0.853232,0.0199367,0.252925,0.293078,0.0727112,0.914863,0.883864,0.0318201,0.622647,0.917877,0.470358,0.696325,0.926758,0.61528,0.0741999,0.462316,0.142915,0.216176,0.48226,0.864724,0.777544,0.685511,0.706167,0.0370019,0.769049,0.860832,0.294038,0.765702,0.222877,0.192049,0.543596,0.669901,0.0258328,0.0909353,0.515079,0.304093,0.414443,0.88567,0.054697,0.570928,0.310244,0.527336,0.934344,0.096505,0.902907,0.31529,0.668056,0.855323,0.499477,0.0433464,0.889308,0.961931,0.52578,0.0186023,0.70932,0.827779,0.882779,0.709608,0.141535,0.341694,0.401362,0.641132,0.57357,0.551748,0.400404,0.94122,0.612986,0.5099,0.670466,0.0553364,0.114332,0.692107,0.258511,0.743225,0.817293,0.242702,0.292456,0.749285,0.320079,0.400149,0.766134,0.419741,0.785143,0.718408,0.514234,0.602474,0.437393,0.33764,0.497175,0.769751,0.853973,0.32246,0.926002,0.717277,0.520112,0.382172,0.838143,0.614048,0.806682,0.468049,0.124038,0.823936,0.161742,0.904152,0.846507,0.455756,0.343757,0.5852,0.716034,0.891747,0.586017,0.289402,0.0547262,0.446468,0.779099,0.384563,0.961619,0.279798,0.662404,0.118342,0.554997,0.173484,0.916158,0.282346,0.650649,0.0758405,0.587831,0.132522,0.406575,0.288307,0.533327,0.492883,0.226022,0.898584,0.713106,0.376167,0.0886319,0.138556,0.0325388,0.0341018,0.242168,0.903348,0.608005,0.377708,0.184691,0.9909,0.350692,0.949667,0.145203,0.970432,0.501407,0.301809,0.628375,0.102536,0.916853,0.365367,0.640719,0.972816,0.805829,0.58985,0.253986,0.669494,0.66015,0.551345,0.187217,0.419733,0.371039,0.827583,0.412839,0.901588,0.278279,0.96465,0.184776,0.450941,0.88369,0.745818,0.0188621,0.961406,0.570404,0.545282,0.547438,0.21859,0.965206,0.504004,0.695003,0.466678,0.823536,0.0147822,0.360357,0.768577,0.0335509,0.0134629,0.104999,0.676283,0.860389,0.297566,0.124286,0.172897,0.45757,0.393754,0.326719,0.298187,0.667325,0.409086,0.640684,0.15247,0.0259681,0.293768,0.572325,0.224691,0.530044,0.358602,0.842502,0.212896,0.860744,0.63322,0.49222,0.174471,0.704764,0.846366,0.969583,0.360359,0.39814,0.132444,0.941162,0.000741422,0.405715,0.733554,0.096846,0.55109,0.423204,0.726313,0.282123,0.800343,0.811873,0.26084,0.581724,0.339436,0.805522,0.349843,0.698633,0.340069,0.33496,0.284051,0.091553,0.358178,0.693675,0.249327,0.500042,0.389473,0.453982,0.068776,0.145148,0.986369,0.138932,0.532853,0.541342,0.0184707,0.743198,0.318991,0.481882,0.158718,0.071991,0.108088,0.216739,0.815191,0.473149,0.866196,0.798582,0.53209,0.395274,0.326429,0.0335331,0.946737,0.244525,0.441904,0.0173913,0.806806,0.221409,0.199792,0.902886,0.15425,0.664328,0.389888,0.856324,0.271394,0.266987,0.344635,0.375342,0.224815,0.608833,0.35612,0.395463,0.40817,0.783433,0.0963795,0.571868,0.430211,0.463703,0.125478,0.617305,0.274405,0.25626,0.335719,0.339853,0.855422,0.673328,0.198295,0.0954258,0.804612,0.735299,0.720868,0.27758,0.269272,0.613572,0.34278,0.329427,0.0382023,0.176451,0.914211,0.667013,0.732657,0.633958,0.691431,0.845849,0.564675,0.622534,0.990502,0.690923,0.228449,0.880731,0.342497,0.0513276,0.603982,0.673,0.139761,0.748425,0.678309,0.934717,0.17561,0.174643,0.641778,0.833427,0.0641298,0.595727,0.17469,0.789407,0.801121,0.0166095,0.40642,0.632497,0.228723,0.735996,0.157821,0.813787,0.29919,0.00759935,0.558289,0.981529,0.121956,0.470759,0.094734,0.230147,0.1511,0.213007,0.0180569,0.345503,0.926862,0.545488,0.967988,0.0950348,0.324558,0.782947,0.130409,0.751036,0.355485,0.980567,0.680324,0.157413,0.424602,0.304172,0.464475,0.643709,0.746112,0.753205,0.312165,0.174726,0.451238,0.801407,0.584366,0.698874,0.667207,0.137703,0.0207969,0.626858,0.20484,0.954069,0.988141,0.518806,0.862164,0.491003,0.675612,0.314827,0.401301,0.836358,0.174156,0.392697,0.031862,0.340692,0.0158077,0.622844,0.217491,0.493706,0.303309,0.934448,0.507675,0.162652,0.857656,0.475155,0.0299931,0.459993,0.629033,0.177259,0.0579698,0.320724,0.641165,0.390639,0.436834,0.498881,0.521504,0.921595,0.00345695,0.0302498,0.108237,0.422291,0.291415,0.376582,0.455641,0.422132,0.534234,0.77668,0.0767398,0.529846,0.638465,0.637452,0.403894,0.276145,0.161604,0.586912,0.559573,0.227859,0.344437,0.171521,0.845578,0.487455,0.569388,0.872358,0.203224,0.352269,0.74531,0.36023,0.160182,0.958912,0.667808,0.786707,0.681636,0.574471,0.700798,0.136559,0.258927,0.43325,0.453907,0.649537,0.184878,0.844559,0.357372,0.261858,0.577834,0.435665,0.753811,0.328011,0.0217558,0.124997,0.346826,0.424364,0.983768,0.367845,0.711359,0.973694,0.619622,0.613088,0.969591,0.393726,0.921875,0.532015,0.180906,0.77886,0.840784,0.642459,0.19968,0.902835,0.553242,0.33958,0.416001,0.685851,0.591358,0.969959,0.387112,0.0891621,0.782105,0.543652,0.269014,0.0772499,0.925668,0.133748,0.459641,0.745353,0.616192,0.399478,0.133533,0.897627,0.113005,0.392814,0.240525,0.788639,0.624471,0.303677,0.954218,0.989435,0.035857,0.214297,0.42312,0.391082,0.816422,0.9461,0.966233,0.321247,0.671344,0.0731387,0.484711,0.140092,0.858888,0.634609,0.317939,0.928139,0.945098,0.414705,0.956566,0.9727,0.887918,0.364736,0.628141,0.980066,0.868797,0.84814,0.667476,0.0082792,0.32016,0.796042,0.370505,0.438843,0.488067,0.0303625,0.1185,0.194807,0.491115,0.803465,0.404079,0.433232,0.0909165,0.185534,0.752677,0.0697588,0.0187348,0.887699,0.214365,0.108965,0.881884,0.860105,0.222416,0.430661,0.595568,0.99785,0.566214,0.612131,0.666487,0.0956051,0.196686,0.133129,0.815371,0.537452,0.543066,0.874702,0.114493,0.855478,0.649543,0.0886043,0.957416,0.875693,0.369783,0.497585,0.892534,0.910768,0.195818,0.121851,0.249117,0.631716,0.313866,0.736405,0.913842,0.280859,0.775022,0.983025,0.587471,0.30347,0.476521,0.184393,0.0315631,0.279407,0.31714,0.855825,0.16596,0.397892,0.875567,0.358238,0.174811,0.170416,0.509678,0.719595,0.940033,0.132203,0.544849,0.519735,0.213109,0.470998,0.166318,0.155648,0.498765,0.927154,0.645588,0.665812,0.416628,0.14324,0.492047,0.502103,0.142189,0.212285,0.903018,0.893754,0.825246,0.856012,0.391487,0.651071,0.0926969,0.315798,0.373597,0.149349,0.0331931,0.761781,0.730104,0.881017,0.247965,0.386079,0.0699621,0.384739,0.852599,0.0567039,0.77199,0.467553,0.587786,0.109692,0.713746,0.773531,0.511997,0.512496,0.312552,0.310469,0.945266,0.920035,0.829698,0.651768,0.691398,0.70928,0.57445,0.764467,0.409373,0.647506,0.887893,0.293605,0.0823748,0.705905,0.800997,0.848398,0.452569,0.430554,0.745814,0.685479,0.220131,0.14225,0.339029,0.0132753,0.0535783,0.430861,0.955045,0.981376,0.684744,0.0789347,0.844328,0.000532508,0.00799775,0.840161,0.114566,0.460769,0.657814,0.850707,0.445577,0.0350063,0.564672,0.665274,0.815013,0.360306,0.0506907,0.523606,0.241978,0.0407182,0.745417,0.161251,0.653729,0.392057,0.261931,0.564335,0.363041,0.364222,0.487007,0.316281,0.707156,0.226023,0.919728,0.415926,0.722692,0.963437,0.815746,0.563458,0.21055,0.433653,0.0225898,0.824793,0.242539,0.576224,0.469712,0.304673,0.180723,0.408655,0.92825,0.834437,0.433373,0.684916,0.574252,0.076766,0.165542,0.258234,0.209018,0.0268737,0.394536,0.411888,0.944172,0.406965,0.42037,0.18132,0.99963,0.169137,0.416468,0.749169,0.730972,0.325267,0.848112,0.84417,0.739574,0.10213,0.708636,|0.245776,0.058396,0.917492,0.386816,0.343656,0.924524,0.869216,0.260434,0.369354,0.0536897,0.306297,0.238135,0.0332943,0.515747,0.993979,0.224728,0.566169,0.908935,0.621158,0.508177,0.598955,0.969652,0.278033,0.429898,0.114696,0.0862346,0.976436,0.590208,0.424919,0.110528,0.337756,0.9139,0.0606427,0.788486,0.725771,0.946887,0.127251,0.392308,0.611566,0.829883,0.142498,0.112046,0.998931,0.440399,0.99116,0.313069,0.711916,0.196673,0.688154,0.729615,0.156551,0.582668,0.023215,0.699978,0.985784,0.97143,0.672343,0.721723,0.11637,0.523605,0.479686,0.4702,0.185221,0.191707,0.874426,0.0796307,0.515266,0.767681,0.554689,0.395213,0.216375,0.502745,0.287831,0.567109,0.683428,0.919232,0.925407,0.375267,0.0584005,0.387963,0.772747,0.767081,0.608635,0.397172,0.987686,0.0140777,0.632236,0.979904,0.107032,0.554624,0.936309,0.911966,0.961716,0.356474,0.957459,0.154345,0.408028,0.802796,0.495337,0.151825,0.00683481,0.250719,0.785359,0.028066,0.541873,0.470289,0.85031,0.127325,0.812944,0.566186,0.448543,0.150219,0.550932,0.923657,0.143743,0.299888,0.296076,0.190676,0.140355,0.758398,0.85309,0.201391,0.217598,0.788873,0.0267031,0.193323,0.0584593,0.723055,0.247214,0.19096,0.134198,0.582947,0.131533,0.0108703,0.60662,0.215511,0.810162,0.77981,0.559041,0.667019,0.381452,0.0850147,0.683616,0.545088,0.171191,0.625117,0.495475,0.0892215,0.17912,0.886797,0.818107,0.822615,0.708853,0.608571,0.200269,0.0546337,0.29198,0.143293,0.97123,0.12664,0.987129,0.147469,0.663101,0.568101,0.889998,0.782867,0.567932,0.635344,0.103084,0.393628,0.0425297,0.519327,0.925722,0.425865,0.69072,0.460342,0.065998,0.597268,0.575965,0.263624,0.0660234,0.121848,0.577515,0.91985,0.337591,0.450178,0.307954,0.990639,0.998792,0.245242,0.0680867,0.69542,0.392667,0.880059,0.712869,0.33131,0.298781,0.0845706,0.0204781,0.641489,0.794727,0.455289,0.426213,0.516572,0.670726,0.0184141,0.857519,0.30314,0.0592511,0.696764,0.00219041,0.48041,0.280495,0.0222684,0.484092,0.256431,0.907169,0.146988,0.692154,0.24559,0.267067,0.460455,0.781422,0.446563,0.456947,0.448425,0.690749,0.247006,0.965269,0.203735,0.162087,0.380207,0.173905,0.337091,0.0827521,0.865115,0.100326,0.292714,0.450492,0.401023,0.698372,0.436754,0.406621,0.219013,0.686073,0.300226,0.991932,0.702752,0.688062,0.266008,0.582543,0.00740713,0.475542,0.57052,0.101511,0.393878,0.856313,0.177841,0.882567,0.0876983,0.576847,0.772093,0.211459,0.237878,0.311906,0.69301,0.308375,0.141988,0.454151,0.0267418,0.696855,0.894575,0.793765,0.577179,0.720237,0.799418,0.465276,0.575694,0.683674,0.572574,0.193272,0.311687,0.360874,0.275692,0.223193,0.990748,0.751734,0.626554,0.0974561,0.970876,0.780896,0.0279206,0.41106,0.353239,0.179448,0.264099,0.973151,0.643814,0.475227,0.358564,0.490539,0.532737,0.982045,0.455059,0.946009,0.337306,0.148197,0.942104,0.857898,0.404547,0.06169,0.599526,0.736594,0.681344,0.627547,0.0430843,0.138889,0.76191,0.752599,0.462637,0.0575871,0.67226,0.201964,0.794775,0.976786,0.813564,0.288094,0.0989012,0.159249,0.914105,0.429086,0.946371,0.971697,0.99862,0.620043,0.0936189,0.201585,0.476882,0.300253,0.940091,0.830219,0.80106,0.992535,0.314909,0.856988,0.644188,0.228215,0.571913,0.130221,0.372519,0.512165,0.156809,0.95424,0.326353,0.180268,0.932132,0.450698,0.37852,0.152799,0.276705,0.690241,0.0563061,0.52682,0.0333679,0.443662,0.632896,0.81195,0.700995,0.84681,0.651739,0.706532,0.39573,0.585143,0.255356,0.595273,0.531666,0.661909,0.720995,0.605336,0.930893,0.517952,0.499653,0.561908,0.402929,0.340858,0.069882,0.746804,0.690419,0.550634,0.625478,0.0732449,0.132654,0.580786,0.301254,0.641906,0.554783,0.643278,0.746549,0.395745,0.0983314,0.24553,0.697482,0.997926,0.548903,0.770012,0.778423,0.612887,0.9517,0.3742,0.982181,0.274766,0.150168,0.305294,0.46876,0.999781,0.61548,0.406827,0.695651,0.550597,0.465301,0.518056,0.535434,0.176801,0.795071,0.822753,0.942521,0.689369,0.33562,0.922621,0.955642,0.97176,0.581007,0.15101,0.0742327,0.922212,0.868675,0.114365,0.368017,0.680407,0.396569,0.841404,0.443761,0.954161,0.28029,0.995197,0.94307,0.355984,0.0068717,0.309181,0.894241,0.861834,0.201727,0.108387,0.662006,0.985101,0.745509,0.359105,0.352579,0.771588,0.419008,0.141232,0.0598073,0.0913841,0.990123,0.482067,0.991098,0.757113,0.920997,0.183808,0.58337,0.0508548,0.408926,0.511234,0.967551,0.398768,0.0594952,0.195009,0.821404,0.175824,0.617221,0.171041,0.445745,0.587541,0.0871423,0.963361,0.914123,0.451128,0.0026772,0.314271,0.490746,0.625109,0.583734,0.463841,0.555626,0.908518,0.528478,0.734535,0.464201,0.67406,0.60873,0.0395315,0.876851,0.0849241,0.912962,0.891839,0.36266,0.138047,0.224346,0.418913,0.0466793,0.349183,0.263054,0.576813,0.937966,0.0072518,0.0402868,0.0137834,0.569195,0.161312,0.882983,0.123124,0.528287,0.839423,0.386454,0.415854,0.101239,0.0976434,0.516425,0.805737,0.00379092,0.610235,0.134573,0.279553,0.381492,0.813242,0.800029,0.73684,0.435753,0.551907,0.864172,0.938402,0.460646,0.74052,0.648307,0.522599,0.764646,0.714584,0.980328,0.967688,0.996889,0.789344,0.827369,0.720893,0.999267,0.739042,0.652244,0.846789,0.0916796,0.746735,0.99746,0.121907,0.902525,0.228573,0.752705,0.769986,0.255274,0.424983,0.890615,0.987006,0.765075,0.693698,0.0755008,0.101204,0.326385,0.61259,0.123415,0.206162,0.324412,0.798272,2.15173e-05,0.168381,0.758543,0.392812,0.663801,0.875676,0.511997,0.246435,0.0781075,0.0600922,0.128202,0.826545,0.784817,0.511379,0.110871,0.0161399,0.938893,0.325126,0.154109,0.491486,0.192222,0.915642,0.387688,0.896835,0.894096,0.982306,0.0690241,0.125675,0.138396,0.763392,0.326423,0.980348,0.759975,0.570219,0.117675,0.268573,0.48132,0.0160943,0.271861,0.68197,0.145058,0.0304367,0.578681,0.673284,0.334594,0.896108,0.812345,0.67471,0.610859,0.289573,0.952345,0.955679,0.249044,0.588862,0.366815,0.271945,0.542122,0.77775,0.901038,0.47756,0.824792,0.554265,0.322117,0.65978,0.807222,0.980451,0.871704,0.956286,0.497278,0.591697,0.927096,0.236766,0.80191,0.116042,0.238526,0.542548,0.483745,0.626648,0.551352,0.93118,0.0423136,0.511776,0.793246,0.493617,0.393891,0.824534,0.850692,0.365339,0.109895,0.0897671,0.830885,0.97092,0.384501,0.376211,0.271224,0.967993,0.758227,0.544914,0.138685,0.685421,0.231505,0.552662,0.106653,0.888782,0.720545,0.68483,0.230366,0.277275,0.422726,0.934399,0.529848,0.29255,0.997436,0.85873,0.890947,0.381307,0.616426,0.489304,0.35888,0.972543,0.409033,0.472231,0.582442,0.960251,0.0315223,0.272877,0.786432,0.795238,0.861019,0.0487822,0.481474,0.642946,0.0789046,0.200648,0.256488,0.174381,0.670792,0.106346,0.829008,0.256208,0.48545,0.825645,0.558076,0.539494,0.360495,0.173851,0.798499,0.671405,0.487773,0.236707,0.899412,0.663292,0.461971,0.526216,0.312932,0.294913,0.854469,0.598741,0.682517,0.222609,0.255655,0.412406,0.0504584,0.403721,0.76906,0.0474777,0.60034,0.0286112,0.860291,0.875915,0.485847,0.842384,0.405063,0.537832,0.497836,0.5642,0.50466,0.398384,0.462987,0.317624,0.380101,0.547915,0.894736,0.329201,0.870913,0.984081,0.685817,0.973275,0.915499,0.746584,0.320918,0.684488,0.714458,0.377335,0.406325,0.99702,0.774428,0.884259,0.64117,0.0901642,0.171008,0.233724,0.591233,0.502779,0.165848,0.398649,0.953677,0.30469,0.665399,0.734085,0.39122,0.419475,0.217326,0.261295,0.971214,0.701842,0.838336,0.801992,0.983455,0.654722,0.640983,0.13665,0.562192,0.433928,0.673826,0.254206,0.379578,0.863928,0.564921,0.200453,0.698625,0.121871,0.951804,0.829227,0.311873,0.763847,0.30441,0.963701,0.174238,0.81088,0.0881839,0.897863,0.0753657,0.720273,0.218934,0.134017,0.942097,0.222741,0.628458,0.708556,0.411348,0.958662,7.236e-05,0.60389,0.864441,0.286001,0.068499,0.0205985,0.771455,0.162611,0.445197,0.396013,0.937383,0.697473,0.545176,0.373038,0.230964,0.506665,0.147945,0.774883,0.19098,0.414749,0.940936,0.0653748,0.548719,0.407553,0.893288,0.225854,0.666224,0.809675,0.47053,0.196218,0.609078,0.258769,0.537449,0.738038,0.595511,0.534277,0.136662,0.559157,0.0313246,0.00589424,0.492276,0.778012,0.933318,0.278253,0.726423,0.043944,0.767941,0.685461,0.927465,0.0463723,0.211709,0.649484,0.182135,0.301001,0.172523,0.265172,0.770388,0.914871,0.19685,0.0578872,0.0333518,0.65251,0.407798,0.147628,0.660058,0.312107,0.420814,0.263184,0.0546851,0.302475,0.270849,0.019859,0.184306,0.749807,0.00709981,0.903944,0.346789,0.453902,0.2058,0.807651,0.333517,0.771884,0.258361,0.140875,0.116655,0.097749,0.93015,0.0171273,0.285715,0.755997,0.13778,0.0124969,0.38414,0.211089,0.675541,0.780648,0.940745,0.494093,0.896293,0.302166,0.832978,0.952595,0.125988,0.299712,0.477604,0.204651,0.120882,0.0793243,0.823125,0.153791,0.772428,0.40747,0.948384,0.800408,0.770887,0.263742,0.744053,0.960082,0.254104,0.601857,0.960334,0.112852,0.0230073,0.448835,0.577851,0.956393,0.333427,0.0111495,0.8367,0.965942,0.250673,0.76476,0.16932,0.709231,0.934169,0.293666,0.193778,0.204314,0.972167,0.366128,0.620328,0.427688,0.218261,0.183094,0.521234,0.197817,0.703535,0.657829,0.634906,0.478236,0.960329,0.833878,0.0211834,0.706962,0.752083,0.888949,0.772036,0.886463,0.58846,0.775099,0.97593,0.483556,0.58181,0.767884,0.313187,0.372389,0.424251,0.422999,0.252966,|0.977372,0.837397,0.804112,0.327125,0.638298,0.664833,0.805101,0.235942,0.0771376,0.609295,0.632634,0.844591,0.221282,0.971533,0.998151,0.462828,0.328899,0.509138,0.842435,0.710677,0.0863197,0.0632383,0.0989263,0.398551,0.374863,0.858101,0.189751,0.942532,0.982654,0.668845,0.987765,0.0782036,0.775846,0.309302,0.927391,0.165789,0.511938,0.108127,0.00332755,0.0892456,0.0885111,0.801607,0.823577,0.999478,0.991119,0.0824229,0.170161,0.498002,0.474197,0.023671,0.731642,0.987979,0.0894082,0.370916,0.346249,0.51633,0.116232,0.826252,0.685279,0.592817,0.533772,0.0610823,0.0484415,0.87237,0.941095,0.637887,0.46637,0.634055,0.271226,0.704485,0.00523072,0.321986,0.591084,0.439181,0.590282,0.295009,0.0311372,0.338605,0.666506,0.877257,0.443007,0.919054,0.000830054,0.45786,0.143075,0.130236,0.259261,0.174814,0.988492,0.700968,0.495266,0.518642,0.969396,0.579693,0.304519,0.930434,0.336039,0.867178,0.0448673,0.247254,0.566234,0.657108,0.0701737,0.41762,0.200566,0.828405,0.0616041,0.680226,0.0929771,0.124817,0.66628,0.0320158,0.774315,0.172236,0.926593,0.763367,0.647558,0.768036,0.589709,0.678187,0.81526,0.216161,0.202934,0.396367,0.366577,0.202816,0.140929,0.385434,0.471344,0.0456821,0.422988,0.861538,0.665875,0.879449,0.0844263,0.161612,0.552791,0.758945,0.484127,0.49914,0.0680484,0.539258,0.596294,0.732262,0.788679,0.447451,0.340571,0.852388,0.112632,0.720932,0.402455,0.0189662,0.731036,0.1442,0.243611,0.960888,0.715593,0.863974,0.286299,0.312215,0.697351,0.773801,0.522948,0.624391,0.973596,0.927475,0.835006,0.393593,0.515494,0.962706,0.0642732,0.762791,0.101481,0.328839,0.493092,0.091472,0.298125,0.308036,0.320061,0.83875,0.268421,0.125821,0.970855,0.86634,0.715743,0.366784,0.738,0.160739,0.38145,0.246632,0.311168,0.375892,0.441783,0.117403,0.910049,0.197221,0.793106,0.403382,0.690814,0.179103,0.309228,0.913481,0.617669,0.58017,0.191179,0.082988,0.157363,0.554072,0.582685,0.429318,0.0150697,0.151067,0.324451,0.420257,0.974529,0.510948,0.734422,0.795317,0.646737,0.188934,0.602084,0.779855,0.463815,0.40806,0.28808,0.445981,0.12241,0.271628,0.352233,0.266913,0.897041,0.867331,0.0889459,0.62852,0.795567,0.412018,0.73722,0.215505,0.420432,0.660135,0.255856,0.315707,0.44412,0.0331842,0.523885,0.190942,0.989588,0.0258587,0.987276,0.685801,0.357705,0.825253,0.598727,0.094354,0.735545,0.0171105,0.465199,0.0869299,0.570213,0.94599,0.420576,0.826426,0.247103,0.0088321,0.695615,0.642564,0.562216,0.0437956,0.0691204,0.02542,0.545555,0.547817,0.205178,0.905835,0.702306,0.601304,0.233902,0.373037,0.584731,0.83798,0.732678,0.744705,0.487509,0.684226,0.073833,0.270095,0.820891,0.479966,0.384646,0.687696,0.644918,0.359018,0.0219244,0.644693,0.723412,0.331964,0.0833029,0.430074,0.296451,0.870826,0.82934,0.67486,0.0950855,0.323622,0.548476,0.591315,0.21156,0.405727,0.891503,0.0412964,0.679965,0.41395,0.0966287,0.983349,0.316381,0.090982,0.925811,0.154691,0.974563,0.776847,0.859025,0.265638,0.859647,0.552736,0.213039,0.370127,0.890438,0.0383457,0.180377,0.384003,0.271702,0.911593,0.944745,0.874539,0.524392,0.0336873,0.667617,0.644401,0.462211,0.12256,0.815441,0.415151,0.802379,0.954461,0.118293,0.377351,0.63104,0.899925,0.986052,0.339463,0.0989703,0.0240375,0.384435,0.410576,0.387502,0.678699,0.0310187,0.299355,0.818001,0.435455,0.816896,0.460998,0.061883,0.831777,0.604092,0.4222,0.777171,0.597251,0.548995,0.297551,0.453025,0.242997,0.379598,0.513815,0.649437,0.747158,0.0635036,0.0487971,0.0787098,0.967133,0.805052,0.701313,0.244712,0.756084,0.0825496,0.772465,0.0564981,0.734865,0.774353,0.857609,0.00817472,0.41087,0.959088,0.182135,0.934568,0.727968,0.272866,0.830791,0.230804,0.378249,0.540861,0.530104,0.74165,0.811997,0.0174881,0.752374,0.0355166,0.504899,0.193709,0.638632,0.772587,0.148137,0.59925,0.614938,0.414206,0.770136,0.287128,0.720469,0.764016,0.751888,0.836733,0.0631046,0.440646,0.687542,0.417228,0.511649,0.0527787,0.769754,0.598416,0.799628,0.636721,0.747501,0.156071,0.933015,0.481205,0.942836,0.99665,0.765431,0.73616,0.530948,0.830989,0.561958,0.0573632,0.269925,0.202086,0.0278242,0.312968,0.460612,0.214227,0.2164,0.539681,0.155813,0.489138,0.724681,0.512856,0.250462,0.71964,0.450201,0.296966,0.00979006,0.107597,0.853961,0.457891,0.754747,0.572302,0.800601,0.226379,0.793183,0.78617,0.264223,0.135737,0.622832,0.296238,0.288886,0.742373,0.774797,0.488974,0.971568,0.28084,0.0923735,0.485579,0.409067,0.053482,0.582602,0.583975,0.0444147,0.171802,0.191485,0.84194,0.256361,0.529454,0.337184,0.11741,0.231833,0.974953,0.244612,0.458803,0.744895,0.86168,0.994519,0.738481,0.741222,0.939694,0.608634,0.788372,0.0764514,0.198433,0.2932,0.571498,0.878355,0.2464,0.575087,0.949561,0.163437,0.317485,0.865556,0.879757,0.021014,0.1778,0.427851,0.133246,0.904181,0.918799,0.481906,0.835213,0.586004,0.556663,0.373282,0.715819,0.700957,0.738475,0.751888,0.166284,0.54155,0.376743,0.237084,0.0218728,0.488745,0.598144,0.441506,0.828059,0.813162,0.292485,0.133173,0.241039,0.953901,0.314573,0.702987,0.305054,0.977569,0.125798,0.967284,0.196,0.351816,0.247532,0.964355,0.186315,0.905777,0.741184,0.549535,0.557735,0.561764,0.135017,0.365842,0.615116,0.00826806,0.60925,0.955525,0.833793,0.920863,0.71638,0.643856,0.686481,0.00555396,0.31228,0.61954,0.350702,0.46777,0.387542,0.680305,0.985492,0.85616,0.378862,0.917942,0.302294,0.886027,0.810471,0.810706,0.159237,0.208509,0.498492,0.0834188,0.0716049,0.884978,0.343679,0.379236,0.23658,0.633991,0.67275,0.109998,0.190974,0.929813,0.7246,0.637843,0.815425,0.248365,0.12996,0.419781,0.123337,0.792624,0.22682,0.925004,0.436991,0.589141,0.885174,0.274462,0.850153,0.865968,0.965828,0.898061,0.517461,0.0616306,0.310813,0.195568,0.110201,0.742431,0.0105036,0.789664,0.639806,0.348126,0.446288,0.672164,0.681702,0.982773,0.141186,0.67691,0.954555,0.729896,0.25871,0.708148,0.51929,0.13305,0.391958,0.149547,0.415426,0.991492,0.294318,0.668548,0.243942,0.663794,0.158682,0.0212812,0.642745,0.419805,0.776185,0.210875,0.315536,0.407229,0.376913,0.421429,0.35361,0.511554,0.678193,0.230388,0.345423,0.161212,0.159149,0.56529,0.579448,0.0496451,0.739422,0.927018,0.847661,0.685901,0.956773,0.373456,0.70662,0.221446,0.403746,0.977261,0.123976,0.773034,0.825072,0.804018,0.575737,0.158652,0.781256,0.447185,0.444304,0.560518,0.858435,0.727811,0.430053,0.880081,0.23885,0.312439,0.275525,0.59202,0.718839,0.454866,0.368225,0.813921,0.0267406,0.756323,0.986716,0.380213,0.255901,0.0744655,0.112132,0.258389,0.136138,0.479762,0.292323,0.727219,0.516796,0.949766,0.332494,0.787578,0.828265,0.279858,0.773923,0.154935,0.462173,0.385005,0.226851,0.671984,0.359791,0.717129,0.167512,0.957104,0.590439,0.746936,0.454661,0.615798,0.269566,0.103555,0.392083,0.411788,0.37815,0.725036,0.657747,0.0908673,0.134435,0.550919,0.743956,0.00521445,0.314614,0.692002,0.646139,0.804501,0.0236134,0.188878,0.278679,0.572335,0.544407,0.411046,0.205753,0.22973,0.246532,0.968463,0.510185,0.929799,0.224267,0.411426,0.594119,0.983383,0.00237226,0.289291,0.478343,0.276378,0.575245,0.999372,0.526734,0.578157,0.32169,0.305202,0.622193,0.803507,0.257397,0.04896,0.581315,0.607946,0.967799,0.460048,0.486706,0.00358725,0.259214,0.762005,0.514685,0.992382,0.978408,0.340846,0.112048,0.196416,0.62534,0.643938,0.486387,0.927812,0.661272,0.19577,0.677242,0.778877,0.401832,0.719955,0.488971,0.275786,0.449172,0.606056,0.633226,0.582015,0.605894,0.299906,0.683244,0.275246,0.584938,0.741505,0.461421,0.744613,0.0550682,0.167172,0.20369,0.435965,0.500754,0.843129,0.598987,0.984657,0.481473,0.0752219,0.935248,0.283165,0.769722,0.640637,0.895839,0.806675,0.451311,0.681384,0.123265,0.792444,0.798611,0.978522,0.601275,0.923644,0.968357,0.780725,0.0174763,0.630999,0.750277,0.452884,0.413897,0.851398,0.203939,0.000846744,0.856365,0.589641,0.479656,0.75813,0.242427,0.362776,0.563569,0.201334,0.858331,0.0434048,0.196367,0.91884,0.351307,0.361345,0.408337,0.183961,0.321426,0.00762028,0.770559,0.167496,0.835378,0.412418,0.745857,0.469987,0.157237,0.56852,0.617581,0.842437,0.436343,0.939413,0.254031,0.603412,0.732094,0.321696,0.475733,0.00481898,0.119975,0.787348,0.780008,0.173225,0.252983,0.535253,0.629474,0.931661,0.403771,0.342512,0.768911,0.525818,0.577364,0.452289,0.254901,0.0655543,0.893402,0.244346,0.746788,0.872784,0.463669,0.118744,0.531303,0.544132,0.713964,0.443383,0.115093,0.834912,0.0762639,0.94041,0.344652,0.298342,0.431272,0.191451,0.858703,0.881946,0.448601,0.623356,0.226981,0.780813,0.766873,0.690967,0.870177,0.576753,0.660754,0.701732,0.912015,0.39198,0.999828,0.32024,0.832915,0.427545,0.318901,0.70347,0.12999,0.597278,0.787788,0.562901,0.537642,0.100976,0.553909,0.116515,0.531737,0.0119978,0.581325,0.422594,0.077759,0.725671,0.87894,0.031487,0.464859,0.202282,0.798067,0.590002,0.646892,0.522211,0.958609,0.613409,0.78523,0.147875,0.382706,0.836017,0.462277,0.850836,0.748719,0.409139,0.690365,0.0912482,0.0167717,0.789294,0.957214,0.133316,0.499631,0.938381,0.931081,0.503489,0.195739,0.406212,0.922607,0.577613,0.131119,0.78098,0.0927342,0.886552,0.49017,0.00907439,0.226598,0.448944,0.165366,0.824667,0.177593,0.761455,|0.295733,0.581246,0.467199,0.743973,0.130453,0.0312783,0.457838,0.932254,0.639635,0.3518,0.94118,0.611102,0.344329,0.112088,0.894762,0.259913,0.622865,0.664195,0.756797,0.729667,0.51239,0.314834,0.786164,0.990121,0.856823,0.668953,0.896999,0.833614,0.08811,0.186314,0.284509,0.277305,0.27914,0.658582,0.299294,0.645161,0.565539,0.318852,0.405629,0.182736,0.181835,0.505903,0.301941,0.990235,0.0229893,0.923249,0.447281,0.855752,0.342245,0.748824,0.083595,0.633133,0.0417258,0.532261,0.388046,0.813819,0.341312,0.638642,0.818538,0.450519,0.596686,0.8792,0.699034,0.246964,0.824208,0.400429,0.855724,0.218364,0.212614,0.716664,0.682925,0.311864,0.583196,0.561524,0.364284,0.973498,0.450404,0.676413,0.738191,0.463566,0.445358,0.142282,0.802689,0.415662,0.681395,0.308659,0.167238,0.392544,0.0581639,0.865937,0.93366,0.585853,0.340255,0.505084,0.458366,0.53899,0.0700853,0.380388,0.652129,0.477641,0.371373,0.216526,0.7767,0.940496,0.244938,0.994777,0.936573,0.896655,0.0567549,0.86462,0.0822194,0.134194,0.236965,0.103741,0.966283,0.992149,0.703064,0.426964,0.478047,0.824645,0.0609697,0.369906,0.547263,0.120691,0.541826,0.756605,0.0188283,0.532248,0.551627,0.104939,0.407623,0.538879,0.97532,0.290433,0.108808,0.304435,0.543194,0.508355,0.330543,0.615457,0.476127,0.139486,0.10554,0.741467,0.444181,0.992065,0.856046,0.471342,0.918524,0.84077,0.416111,0.39331,0.750082,0.301384,0.865567,0.318586,0.608757,0.518888,0.852325,0.225059,0.244509,0.289588,0.845329,0.296088,0.483287,0.247011,0.983898,0.669447,0.148543,0.235685,0.323011,0.566854,0.607191,0.700687,0.823928,0.323205,0.875712,0.322264,0.498659,0.197719,0.297387,0.897425,0.204503,0.159408,0.514677,0.844657,0.441043,0.0469646,0.437936,0.673389,0.702828,0.168971,0.00541407,0.112086,0.243377,0.846348,0.580554,0.90263,0.0652876,0.339743,0.0543537,0.837727,0.529353,0.741373,0.0504624,0.661777,0.0199274,0.802657,0.636303,0.721231,0.041024,0.454733,0.0652494,0.995147,0.346124,0.633169,0.699283,0.0488698,0.535657,0.476559,0.0598565,0.216659,0.432441,0.941486,0.183313,0.456618,0.173074,0.732545,0.572436,0.52482,0.705196,0.452462,0.963349,0.0020296,0.654987,0.220892,0.546692,0.725062,0.497294,0.406408,0.0198846,0.349386,0.758786,0.893461,0.895513,0.90991,0.468552,0.109172,0.323041,0.972238,0.618593,0.504207,0.632537,0.297234,0.664658,0.044341,0.756987,0.777407,0.259541,0.987037,0.152067,0.527204,0.991884,0.929923,0.245709,0.0838019,0.566583,0.708141,0.496857,0.871478,0.161399,0.144121,0.875751,0.583225,0.263466,0.168334,0.37036,0.991594,0.702192,0.511835,0.374364,0.498225,0.764311,0.681849,0.668477,0.413307,0.958068,0.477654,0.262411,0.298759,0.905311,0.757478,0.0835748,0.915598,0.553267,0.757138,0.867381,0.303587,0.833715,0.306872,0.0721094,0.771936,0.321127,0.642969,0.404947,0.153778,0.253766,0.409278,0.150782,0.342979,0.130263,0.181743,0.652151,0.32533,0.798427,0.70759,0.705437,0.918574,0.428545,0.843202,0.750701,0.619824,0.348509,0.0293236,0.770639,0.0965077,0.248392,0.0434361,0.331038,0.947368,0.905873,0.233409,0.147962,0.854267,0.472918,0.197359,0.146235,0.121605,0.0253015,0.103919,0.705699,0.614764,0.0500606,0.0128658,0.640973,0.683207,0.404621,0.509999,0.315354,0.424376,0.888214,0.890584,0.795273,0.961877,0.779597,0.733805,0.932027,0.523921,0.897643,0.941449,0.312664,0.312198,0.72883,0.668751,0.0754396,0.403105,0.546105,0.880395,0.872143,0.639404,0.565176,0.439072,0.0415316,0.37845,0.605542,0.215271,0.633202,0.378727,0.516946,0.931935,0.417579,0.0900168,0.00301206,0.203004,0.23311,0.239187,0.42023,0.636248,0.397373,0.337338,0.144454,0.509455,0.655116,0.038672,0.93423,0.952531,0.280432,0.923163,0.835617,0.488784,0.618779,0.522905,0.975648,0.240606,0.574713,0.150936,0.706991,0.0478675,0.707719,0.591988,0.387517,0.129162,0.940979,0.102005,0.819242,0.206235,0.203019,0.184971,0.660631,0.151692,0.905473,0.77101,0.146381,0.361648,0.544258,0.820055,0.952578,0.759609,0.369979,0.751462,0.481273,0.289075,0.716433,0.0725142,0.860287,0.633774,0.64193,0.653382,0.152798,0.231194,0.466156,0.847442,0.642877,0.0610884,0.84071,0.0201897,0.956459,0.604278,0.730396,0.450834,0.0455834,0.567059,0.925102,0.699169,0.411924,0.901175,0.142181,0.912119,0.152732,0.161847,0.143697,0.686054,0.780475,0.442192,0.487085,0.544833,0.864801,0.88671,0.389787,0.7729,0.0768014,0.693161,0.923019,0.104485,0.348597,0.53477,0.0653545,0.794608,0.519005,0.741822,0.450592,0.276184,0.614278,0.559109,0.341725,0.0956891,0.90533,0.685758,0.033182,0.0695076,0.236131,0.501389,0.398214,0.324425,0.822884,0.622823,0.758354,0.480079,0.974506,0.145693,0.959849,0.516952,0.782569,0.24653,0.792041,0.41388,0.679259,0.879743,0.671382,0.280307,0.307291,0.179931,0.0895496,0.827761,0.687726,0.611756,0.535226,0.73477,0.33038,0.768192,0.633069,0.588584,0.561432,0.786126,0.649036,0.296931,0.905202,0.615505,0.12819,0.470338,0.495435,0.0605116,0.581922,0.242099,0.820469,0.50587,0.729644,0.644588,0.465423,0.578503,0.61779,0.790087,0.0587144,0.778199,0.282275,0.387379,0.25233,0.821253,0.838222,0.781549,0.375231,0.403716,0.515167,0.757129,0.437688,0.507834,0.743472,0.425351,0.574183,0.485102,0.0582641,0.768049,0.922932,0.380227,0.954244,0.42529,0.47409,0.00317746,0.877818,0.948918,0.315086,0.217102,0.0324349,0.793694,0.726828,0.956139,0.735522,0.792089,0.401595,0.392024,0.775511,0.176907,0.251576,0.219767,0.290458,0.660813,0.019794,0.0555475,0.190931,0.386358,0.0990531,0.494567,0.503485,0.226423,0.928124,0.749166,0.246883,0.549604,0.240599,0.868353,0.104734,0.76268,0.263165,0.358796,0.676283,0.53065,0.724581,0.333325,0.25902,0.769813,0.631028,0.908846,0.875035,0.556788,0.226927,0.507468,0.210014,0.384901,0.840283,0.392739,0.192935,0.53395,0.174146,0.29965,0.698383,0.295729,0.0754333,0.732198,0.0632922,0.559033,0.0415204,0.424295,0.205053,0.265279,0.0727408,0.100514,0.536162,0.93757,0.316874,0.421026,0.220522,0.733578,0.571028,0.985682,0.639848,0.257843,0.831398,0.305234,0.594658,0.523744,0.532547,0.0619916,0.563859,0.754655,0.590799,0.124084,0.426481,0.366683,0.744233,0.586765,0.201955,0.547252,0.40182,0.941298,0.355688,0.518559,0.244686,0.292595,0.532892,0.519595,0.599569,0.884659,0.724319,0.653796,0.726093,0.368242,0.928173,0.5521,0.137847,0.35322,0.349886,0.479211,0.923386,0.429129,0.0185938,0.314889,0.679424,0.393974,0.377631,0.0970547,0.560919,0.854447,0.00994295,0.920289,0.558337,0.835357,0.134027,0.156471,0.641974,0.641254,0.194638,0.104916,0.914291,0.0988861,0.0932171,0.699913,0.845725,0.566025,0.626901,0.327366,0.121573,0.954392,0.501283,0.0992416,0.640315,0.0862911,0.961773,0.460014,0.60582,0.188499,0.623374,0.949632,0.120649,0.319155,0.135972,0.072122,0.297525,0.279593,0.313972,0.00557345,0.441767,0.109464,0.819568,0.60121,0.503617,0.760192,0.167418,0.245918,0.688713,0.773856,0.018452,0.704437,0.0107251,0.517344,0.694532,0.221703,0.940913,0.584981,0.449821,0.0731037,0.450617,0.474548,0.610378,0.378419,0.281567,0.135657,0.753139,0.380888,0.305757,0.443763,0.869548,0.0731111,0.254522,0.186999,0.84892,0.814895,0.0858287,0.488761,0.783615,0.785577,0.439128,0.979931,0.973463,0.438365,0.106664,0.660829,0.227034,0.715133,0.370902,0.0490707,0.463181,0.746458,0.544076,0.45462,0.812081,0.261059,0.169411,0.0116555,0.865445,0.243318,0.942271,0.580501,0.196274,0.675864,0.913978,0.19199,0.0995904,0.0531668,0.605121,0.249997,0.581,0.694909,0.275201,0.0374852,0.403287,0.606171,0.697831,0.573074,0.507133,0.0138543,0.39241,0.561768,0.156993,0.876857,0.975617,0.962037,0.190255,0.282408,0.709932,0.372702,0.738949,0.751771,0.0789416,0.683621,0.0471341,0.978382,0.205916,0.0940439,0.520663,0.951829,0.925454,0.309581,0.416926,0.515368,0.766165,0.0749559,0.566305,0.962216,0.663544,0.422641,0.509441,0.98883,0.91604,0.565675,0.999663,0.667819,0.939696,0.0999993,0.764067,0.607007,0.699235,0.00291485,0.219567,0.547204,0.513214,0.304626,0.453395,0.82981,0.0801833,0.170646,0.651043,0.205023,0.565217,0.142101,0.0190989,0.716064,0.784117,0.381557,0.294637,0.578795,0.880424,0.440533,0.334551,0.783809,0.571538,0.14534,0.174461,0.386395,0.914862,0.154301,0.281061,0.139459,0.350114,0.737285,0.394203,0.706086,0.718473,0.118345,0.570548,0.0558754,0.171144,0.336527,0.280945,0.197458,0.967361,0.0434329,0.122296,0.584635,0.113949,0.291651,0.134015,0.923618,0.944933,0.479006,0.888586,0.307084,0.260783,0.539783,0.683367,0.569752,0.201876,0.0307361,0.598219,0.304696,0.114491,0.752444,0.938875,0.642484,0.891827,0.651103,0.208947,0.342823,0.768157,0.301954,0.904308,0.929227,0.441614,0.0279378,0.790649,0.294952,0.350267,0.0485613,0.621599,0.401109,0.379528,0.614131,0.854509,0.724541,0.78736,0.248254,0.385284,0.980146,0.970361,0.285774,0.0168531,0.155479,0.826302,0.919846,0.697879,0.996621,0.761923,0.398041,0.376988,0.51787,0.6865,0.475578,0.235994,0.850166,0.0865154,0.997982,0.62747,0.0913146,0.149177,0.332337,0.39192,0.337856,0.109609,0.473974,0.388597,0.803562,0.476578,0.98408,0.972739,0.169244,0.968208,0.734647,0.545938,0.684668,0.961862,0.0882438,0.857255,0.32663,0.41348,0.820901,0.844294,0.127712,0.801587,0.664238,0.149803,0.458575,0.749819,0.866086,0.679923,0.130061,0.204871,0.242381,0.848045,0.237158,0.352441,0.611292,|0.880893,0.519494,0.855038,0.762102,0.397622,0.870828,0.858052,0.943928,0.964751,0.646573,0.947632,0.423148,0.0586541,0.99091,0.401827,0.425756,0.98885,0.258217,0.632133,0.0135245,0.940847,0.676128,0.765474,0.720039,0.609141,0.751851,0.608026,0.0739515,0.0508174,0.840947,0.187268,0.930879,0.206545,0.619387,0.329247,0.768095,0.661724,0.00967914,0.626341,0.0204527,0.682171,0.182669,0.105318,0.932653,0.481156,0.276072,0.61934,0.728902,0.82108,0.897867,0.000970006,0.580585,0.926568,0.705845,0.432854,0.507629,0.159458,0.542302,0.387148,0.864886,0.985861,0.604667,0.42908,0.940975,0.241015,0.719162,0.244876,0.556241,0.758473,0.606312,0.593791,0.630892,0.0186979,0.746188,0.0482929,0.275229,0.777106,0.161941,0.171372,0.92627,0.137644,0.531504,0.0420775,0.973828,0.165843,0.279295,0.925485,0.571773,0.00154281,0.329283,0.885665,0.468887,0.692557,0.697227,0.310016,0.596285,0.0835462,0.160192,0.133363,0.716502,0.943605,0.337016,0.298188,0.130267,0.992719,0.455626,0.706981,0.804897,0.00221747,0.15084,0.371081,0.782572,0.508381,0.208548,0.371973,0.348888,0.128591,0.932215,0.741046,0.244163,0.57703,0.0927465,0.628962,0.391277,0.872031,0.434095,0.377963,0.489581,0.81882,0.886622,0.969141,0.794961,0.406921,0.0545816,0.983228,0.0439655,0.854244,0.498928,0.046707,0.328743,0.315438,0.0892816,0.178476,0.66694,0.48069,0.131102,0.945517,0.303432,0.635308,0.507274,0.0805211,0.583605,0.359253,0.188815,0.837174,0.0709455,0.0540212,0.0102737,0.458144,0.647854,0.278152,0.419769,0.493314,0.149943,0.000316262,0.66944,0.0043413,0.822113,0.531452,0.893934,0.402606,0.414681,0.561702,0.196414,0.616808,0.18142,0.35587,0.685727,0.86281,0.120908,0.216644,0.821883,0.383338,0.503181,0.841259,0.0452857,0.685476,0.369052,0.323036,0.596344,0.788772,0.909606,0.619633,0.610103,0.268756,0.702988,0.000561774,0.278335,0.344972,0.791,0.226368,0.824017,0.833908,0.275908,0.228777,0.181972,0.980741,0.826459,0.566978,0.330305,0.966716,0.249602,0.45325,0.347247,0.627743,0.253337,0.0446396,0.391762,0.976936,0.881968,0.845787,0.177857,0.760448,0.895176,0.0311403,0.786742,0.488129,0.688065,0.884655,0.73052,0.941176,0.142949,0.612941,0.349637,0.276427,0.98279,0.380688,0.6193,0.677796,0.430946,0.109252,0.55315,0.0734832,0.83643,0.0922458,0.266152,0.0143807,0.247811,0.551431,0.72488,0.66816,0.752839,0.668153,0.0891442,0.173042,0.792584,0.929279,0.473765,0.379558,0.72543,0.701039,0.857864,0.603272,0.320195,0.90243,0.77547,0.449121,0.856022,0.647381,0.260191,0.22853,0.0267293,0.619479,0.433485,0.609525,0.727587,0.384926,0.0763373,0.595127,0.953208,0.0768193,0.918237,0.583815,0.5036,0.190229,0.823046,0.88665,0.655316,0.0737158,0.178255,0.737561,0.992876,0.578513,0.598195,0.0873367,0.353264,0.737808,0.606527,0.158004,0.800408,0.42505,0.0861885,0.883238,0.677005,0.643171,0.210073,0.66564,0.177113,0.116389,0.929812,0.45377,0.788799,0.538915,0.794275,0.0034281,0.172397,0.583454,0.947434,0.899425,0.191059,0.168089,0.767651,0.227888,0.216444,0.441912,0.282235,0.212397,0.124223,0.325109,0.457643,0.508028,0.0172273,0.169293,0.963112,0.892515,0.689078,0.820974,0.5861,0.187441,0.356138,0.536575,0.8667,0.721875,0.418344,0.819285,0.165837,0.324555,0.651779,0.372681,0.356208,0.0714719,0.674613,0.0250468,0.235093,0.384596,0.0275848,0.741862,0.172709,0.924049,0.969629,0.299917,0.509849,0.961109,0.569939,0.758121,0.00341374,0.650042,0.484999,0.285625,0.45051,0.356052,0.650122,0.605736,0.0511701,0.17008,0.247019,0.851037,0.522227,0.113232,0.697966,0.47358,0.355817,0.170768,0.517437,0.915847,0.952061,0.527862,0.813032,0.798065,0.00541961,0.488523,0.0343994,0.303059,0.853675,0.919038,0.802031,0.947892,0.0198846,0.714247,0.00548631,0.746581,0.0789446,0.105135,0.5008,0.678846,0.522372,0.799323,0.833835,0.392625,0.24658,0.919703,0.979345,0.0662372,0.688809,0.71242,0.228424,0.579455,0.0783356,0.470603,0.402425,0.0480617,0.161551,0.488198,0.440575,0.335299,0.975538,0.959052,0.440623,0.819666,0.216233,0.565339,0.620195,0.689411,0.220484,0.92247,0.90419,0.922417,0.598103,0.502414,0.727139,0.233837,0.185689,0.167699,0.419087,0.471318,0.627803,0.208742,0.277911,0.921547,0.119037,0.710168,0.484527,0.789497,0.645236,0.988505,0.535021,0.00175554,0.871467,0.396586,0.466359,0.545385,0.27277,0.127547,0.940247,0.745658,0.0434092,0.889218,0.349004,0.741171,0.0836177,0.30111,0.416912,0.223619,0.544765,0.654109,0.773768,0.839167,0.0673702,0.566755,0.0863403,0.694916,0.847896,0.259097,0.496096,0.442513,0.51489,0.861314,0.535089,0.603699,0.891772,0.824035,0.34144,0.717472,0.884363,0.424427,0.784663,0.131385,0.0361416,0.199175,0.346372,0.559429,0.851824,0.981684,0.52216,0.94313,0.704688,0.746796,0.231014,0.598298,0.222341,0.729687,0.346635,0.687224,0.591855,0.0345777,0.0576007,0.420405,0.0296515,0.532457,0.978638,0.481936,0.892161,0.014832,0.48354,0.152779,0.521331,0.61081,0.726531,0.0495637,0.415656,0.598919,0.171201,0.86008,0.697722,0.558217,0.820398,0.731597,0.620843,0.684953,0.811149,0.189853,0.765597,0.147604,0.451393,0.0274956,0.497778,0.629051,0.0268956,0.667478,0.859945,0.98895,0.121406,0.792373,0.0484621,0.625842,0.23093,0.573842,0.217965,0.991421,0.23132,0.0721018,0.645828,0.812857,0.223463,0.948606,0.616638,0.859806,0.225732,0.882146,0.976615,0.730761,0.334186,0.324855,0.924092,0.619838,0.009152,0.497202,0.631912,0.16724,0.976629,0.129934,0.710208,0.634931,0.265803,0.620295,0.358202,0.751357,0.259971,0.121583,0.911618,0.324042,0.755427,0.903122,0.332179,0.419461,0.329221,0.781493,0.0779347,0.510148,0.0521864,0.458805,0.415291,0.561969,0.0561181,0.988352,0.267665,0.605117,0.0896201,0.23078,0.995655,0.934449,0.474912,0.887108,0.893453,0.0302196,0.659235,0.544812,0.62516,0.403916,0.718794,0.154489,0.155833,0.637432,0.292374,0.315691,0.496069,0.682813,0.792787,0.865527,0.597321,0.80842,0.707321,0.404249,0.6026,0.830722,0.921649,0.0393332,0.961627,0.259873,0.241864,0.184891,0.881754,0.864041,0.0075435,0.600368,0.458048,0.118118,0.357314,0.498357,0.246183,0.166058,0.134142,0.0811433,0.438233,0.706373,0.876931,0.833995,0.918747,0.347272,0.77114,0.15616,0.613242,0.866456,0.157072,0.339082,0.613929,0.489912,0.521373,0.511162,0.62525,0.376554,0.671297,0.716567,0.48847,0.531771,0.968544,0.92649,0.00185788,0.336443,0.501576,0.743753,0.0616744,0.669653,0.497932,0.599237,0.0996886,0.433705,0.901172,0.829812,0.458305,0.968587,0.158191,0.461283,0.00511307,0.686536,0.95777,0.453818,0.162483,0.92296,0.924159,0.399707,0.619112,0.299833,0.937072,0.515981,0.496606,0.944536,0.1257,0.0412956,0.111969,0.0213637,0.85646,0.359026,0.504374,0.347575,0.591553,0.855644,0.21795,0.0699894,0.384737,0.877505,0.881264,0.312356,0.238394,0.901559,0.0716622,0.928221,0.202688,0.182598,0.137952,0.810696,0.936135,0.737369,0.0336992,0.571907,0.882407,0.495484,0.713782,0.627731,0.15603,0.584442,0.864638,0.86891,0.351594,0.161205,0.844209,0.896042,0.096833,0.350532,0.815954,0.0221817,0.00569743,0.843417,0.109882,0.764462,0.683674,0.69891,0.300272,0.113746,0.826507,0.792494,0.785331,0.259775,0.788329,0.949005,0.290425,0.307391,0.478601,0.78176,0.0263386,0.313706,0.619492,0.811292,0.374865,0.908635,0.143731,0.761795,0.197161,0.610503,0.141816,0.744259,0.488908,0.182965,0.70792,0.0938298,0.699824,0.498559,0.172465,0.628944,0.43222,0.0603462,0.840101,0.630752,0.495817,0.938423,0.837411,0.813202,0.653949,0.166554,0.459824,0.367323,0.33602,0.0646413,0.0128226,0.862364,0.528958,0.409436,0.266701,0.209621,0.664533,0.85331,0.872937,0.166856,0.236371,0.83019,0.482697,0.964483,0.129162,0.00880396,0.313035,0.39236,0.182026,0.66862,0.728741,0.791334,0.860301,0.0516597,0.309264,0.523235,0.232251,0.217752,0.0557972,0.0215948,0.211007,0.709971,0.754334,0.0797821,0.00157309,0.148763,0.407739,0.38445,0.0530412,0.982821,0.51426,0.69204,0.815693,0.0328283,0.530017,0.982239,0.800206,0.535316,0.249217,0.591415,0.904827,0.000848651,0.586963,0.216987,0.916276,0.784031,0.148408,0.873704,0.928632,0.459949,0.1849,0.477418,0.902211,0.920117,0.760963,0.161636,0.0917239,0.511788,0.00442827,0.00675327,0.858488,0.946354,0.804527,0.0984392,0.643422,0.448803,0.277055,0.0828382,0.915629,0.54448,0.539746,0.469567,0.461779,0.229248,0.859951,0.644301,0.270433,0.483545,0.758072,0.873223,0.916272,0.397256,0.0242174,0.911175,0.913771,0.833663,0.250643,0.949039,0.490411,0.755507,0.511125,0.465403,0.200497,0.0590228,0.618618,0.0557658,0.185039,0.470157,0.447915,0.861451,0.816306,0.581135,0.680973,0.383271,0.595832,0.440785,0.319558,0.780634,0.706838,0.928799,0.651801,0.368958,0.0762916,0.629212,0.635796,0.178092,0.775485,0.744433,0.0785572,0.512386,0.896254,0.218674,0.00176311,0.13396,0.0136316,0.726576,0.869119,0.400932,0.448046,0.604939,0.457755,0.988907,0.570119,0.905138,0.392316,0.124456,0.69284,0.676657,0.91483,0.0448135,0.843541,0.12222,0.027792,0.368338,0.778061,0.69571,0.0150929,0.059948,0.403233,0.863886,0.765678,0.630847,0.963735,0.478826,0.974576,0.191873,0.132828,0.560557,0.955884,0.0554227,0.00700039,0.441701,0.272773,0.342294,0.341554,0.373949,0.440491,0.910033,0.458432,0.378174,0.242306,0.64235,0.962881,0.995174,0.399558,0.480922,0.200579,0.72671,0.650693,0.615229,0.696759,0.825851,0.677318,0.415136,0.986737,0.951876,0.748833,|0.0687003,0.934796,0.862876,0.688418,0.306174,0.0864772,0.98629,0.723016,0.173423,0.674452,0.919559,0.828792,0.385989,0.716595,0.855479,0.228641,0.416681,0.636257,0.315376,0.794581,0.91113,0.153374,0.00479656,0.572289,0.668898,0.687433,0.190018,0.24173,0.0296063,0.0292541,0.323151,0.890052,0.434673,0.665748,0.975227,0.454134,0.662614,0.060876,0.227926,0.866106,0.922385,0.552818,0.694419,0.260901,0.537362,0.577011,0.765142,0.825642,0.296986,0.170381,0.366555,0.23476,0.372841,0.282522,0.283471,0.319885,0.574711,0.993493,0.11417,0.138398,0.85083,0.556836,0.150902,0.957468,0.136885,0.506346,0.831656,0.747905,0.888301,0.469161,0.444295,0.0361965,0.0442413,0.766508,0.261484,0.405879,0.74753,0.326079,0.8227,0.618038,0.666076,0.882562,0.076009,0.868896,0.933648,0.40273,0.380668,0.500588,0.937056,0.356912,0.848575,0.342082,0.274703,0.795894,0.138721,0.692361,0.48555,0.984076,0.111988,0.0418333,0.741725,0.993646,0.644009,0.981414,0.6322,0.293662,0.356003,0.687511,0.882322,0.0340074,0.81716,0.452513,0.23357,0.458225,0.817798,0.919432,0.500118,0.762619,0.951354,0.52179,0.823338,0.180258,0.279239,0.436055,0.979152,0.138331,0.281455,0.264808,0.17055,0.246075,0.346924,0.804865,0.0944712,0.172543,0.145009,0.886504,0.617105,0.830245,0.485781,0.86618,0.441502,0.202081,0.948305,0.351322,0.441971,0.218826,0.988811,0.963319,0.980236,0.399731,0.386322,0.281457,0.133476,0.280853,0.988555,0.0230252,0.38184,0.785318,0.302045,0.37895,0.608034,0.561406,0.566147,0.814059,0.771831,0.0945336,0.209975,0.940063,0.533059,0.56924,0.976857,0.372717,0.353616,0.780973,0.71325,0.483991,0.651164,0.558025,0.228979,0.402269,0.561856,0.703839,0.737599,0.864547,0.472252,0.30741,0.656278,0.208114,0.409008,0.510599,0.30193,0.664721,0.604282,0.555994,0.759337,0.24224,0.754699,0.192319,0.0957004,0.826722,0.27541,0.439883,0.0466715,0.541663,0.903786,0.914177,0.0156305,0.693606,0.391073,0.151134,0.854996,0.399891,0.935245,0.825345,0.249784,0.481598,0.398649,0.327237,0.546252,0.333942,0.0458663,0.978423,0.716478,0.321614,0.21373,0.526904,0.343079,0.568113,0.0502305,0.0522972,0.65914,0.630959,0.311454,0.833951,0.215563,0.271512,0.706809,0.947553,0.0145551,0.906122,0.432309,0.0512898,0.886581,0.668462,0.447878,0.992927,0.797095,0.269542,0.0252607,0.972466,0.00666875,0.927829,0.526864,0.195609,0.686158,0.594429,0.565466,0.365472,0.843623,0.527615,0.50355,0.950081,0.987159,0.0285269,0.172386,0.398108,0.444752,0.539388,0.771247,0.644331,0.536484,0.906763,0.870305,0.322598,0.165648,0.508002,0.659506,0.689499,0.135473,0.730403,0.505549,0.960732,0.137577,0.5261,0.210082,0.568022,0.478287,0.0320419,0.147279,0.0657276,0.932699,0.0350102,0.509997,0.28407,0.035445,0.492252,0.700467,0.163895,0.401492,0.842713,0.820709,0.0405118,0.577833,0.427899,0.0867417,0.301884,0.0930602,0.353458,0.162476,0.552637,0.951127,0.0315315,0.436013,0.793632,0.0131007,0.573031,0.25852,0.657132,0.809783,0.176505,0.0394546,0.176724,0.670103,0.210142,0.653033,0.021961,0.464171,0.631726,0.298276,0.38588,0.882015,0.905381,0.0882939,0.120073,0.508381,0.925308,0.756333,0.176273,0.402286,0.31099,0.335266,0.148958,0.2661,0.454403,0.751676,0.449084,0.893377,0.508414,0.0327238,0.625605,0.0330824,0.0766135,0.348218,0.363953,0.0360941,0.990904,0.902686,0.00168622,0.420276,0.232953,0.0248899,0.901021,0.0542758,0.958448,0.392905,0.625747,0.24081,0.485239,0.94893,0.463976,0.737185,0.699843,0.271689,0.845808,0.0234237,0.871072,0.0794705,0.961223,0.187914,0.927583,0.00130969,0.0461438,0.729305,0.128848,0.722402,0.670062,0.615494,0.212458,0.778881,0.0179055,0.843764,0.785616,0.849162,0.522411,0.754091,0.151606,0.423162,0.120353,0.19208,0.836381,0.107022,0.618422,0.414534,0.142969,0.131163,0.301545,0.556788,0.206214,0.228995,0.745907,0.924105,0.786462,0.811856,0.0133106,0.0706998,0.269417,0.262897,0.543242,0.413836,0.23662,0.923867,0.546456,0.511556,0.759179,0.942697,0.0747653,0.541145,0.778334,0.592248,0.479827,0.596016,0.955085,0.962767,0.401273,0.359313,0.331289,0.0706221,0.570442,0.861831,0.891554,0.81692,0.999631,0.0859964,0.654121,0.183893,0.0200068,0.983567,0.352542,0.80826,0.917777,0.858171,0.291491,0.736509,0.0720508,0.00517547,0.124011,0.977211,0.826789,0.0878615,0.54957,0.27518,0.724803,0.668892,0.296152,0.567686,0.416822,0.695737,0.141255,0.682068,0.655062,0.115804,0.326727,0.38086,0.45603,0.543753,0.697516,0.544473,0.0128723,0.0201772,0.903795,0.0338804,0.924915,0.62097,0.237115,0.48276,0.230375,0.983029,0.700079,0.783072,0.777754,0.859324,0.0674117,0.135427,0.698678,0.0352976,0.013266,0.0233228,0.97771,0.784501,0.777012,0.974089,0.157082,0.00212985,0.870376,0.0123979,0.873516,0.916857,0.314754,0.603947,0.640548,0.623933,0.836932,0.859451,0.712744,0.848303,0.00315112,0.182379,0.103209,0.771426,0.975854,0.362835,0.899895,0.683687,0.0724958,0.867755,0.122662,0.57313,0.47754,0.275326,0.466014,0.340331,0.767067,0.747081,0.0476675,0.890898,0.542507,0.103446,0.0645236,0.540101,0.535284,0.195501,0.0785187,0.687668,0.0892813,0.105924,0.700742,0.0729116,0.668998,0.177855,0.562251,0.519631,0.794282,0.689726,0.750874,0.851009,0.971396,0.364763,0.774008,0.918348,0.182364,0.863428,0.991568,0.320774,0.882585,0.404082,0.783803,0.362328,0.571572,0.11627,0.949221,0.230892,0.0304114,0.16023,0.341682,0.353043,0.665131,0.377813,0.0274654,0.723742,0.555901,0.472328,0.939494,0.0653731,0.470804,0.7101,0.0617456,0.0745183,0.354843,0.172145,0.651991,0.679565,0.164021,0.715995,0.851916,0.661792,0.663557,0.956607,0.865983,0.386903,0.0741037,0.324314,0.510852,0.277023,0.709755,0.970859,0.776544,0.858149,0.0763596,0.950782,0.964899,0.328729,0.0374618,0.1201,0.688443,0.767242,0.062021,0.947937,0.342677,0.981281,0.566877,0.400374,0.802215,0.696003,0.733943,0.66088,0.622131,0.319193,0.414596,0.724388,0.790882,0.066034,0.316443,0.350808,0.554415,0.119334,0.00657445,0.19787,0.533256,0.910035,0.26676,0.166477,0.998061,0.456373,0.635862,0.868456,0.903658,0.0555874,0.644652,0.00792778,0.626599,0.679752,0.532925,0.18701,0.440611,0.250595,0.310021,0.62133,0.545195,0.22465,0.189819,0.648802,0.788388,0.148295,0.329305,0.0845787,0.163111,0.452807,0.145548,0.747258,0.403444,0.728075,0.498323,0.297224,0.535161,0.803176,0.18652,0.666677,0.253467,0.711962,0.918413,0.540883,0.861533,0.0791017,0.873813,0.113906,0.778516,0.00917041,0.736574,0.643294,0.481653,0.995104,0.809502,0.518898,0.11737,0.257037,0.876144,0.70241,0.458939,0.798473,0.904518,0.155365,0.0960274,0.292908,0.978731,0.569881,0.86177,0.121288,0.16488,0.48348,0.18566,0.99308,0.852005,0.893701,0.579217,0.305724,0.883168,0.778458,0.462429,0.690372,0.490304,0.923254,0.101423,0.74035,0.332401,0.972109,0.592741,0.187621,0.355045,0.240866,0.485684,0.270351,0.332274,0.462866,0.587938,0.813177,0.393162,0.870775,0.44517,0.693891,0.170063,0.436674,0.73641,0.445782,0.7139,0.866299,0.385133,0.0589847,0.306379,0.459652,0.306481,0.544901,0.109781,0.638265,0.251454,0.10388,0.471607,0.823257,0.85947,0.269828,0.568191,0.327233,0.803434,0.966588,0.113072,0.32328,0.70045,0.626232,0.678769,0.952497,0.820483,0.671092,0.0628819,0.594062,0.351913,0.799421,0.870886,0.136023,0.462611,0.498225,0.452145,0.718025,0.362788,0.0387089,0.0425327,0.398693,0.658301,0.989213,0.0874441,0.383997,0.149305,0.182024,0.779557,0.370051,0.872435,0.73917,0.0742999,0.933794,0.371178,0.296272,0.693275,0.794879,0.388609,0.300824,0.769473,0.139153,0.0377986,0.885571,0.0322332,0.85355,0.50947,0.13454,0.501789,0.78955,0.181252,0.892449,0.347646,0.927386,0.907431,0.0943955,0.869556,0.0442063,0.393108,0.10163,0.394929,0.812529,0.896177,0.726927,0.624845,0.0532012,0.136381,0.0333024,0.0677392,0.21442,0.35898,0.196702,0.921201,0.474454,0.840537,0.781297,0.17538,0.0966756,0.345211,0.529496,0.573451,0.296217,0.0581445,0.568967,0.0822796,0.740396,0.251988,0.173968,0.935293,0.141295,0.417881,0.593134,0.127555,0.139226,0.421713,0.797053,0.241921,0.740634,0.570261,0.322224,0.0231633,0.606406,0.633266,0.936085,0.748633,0.791293,0.11237,0.107371,0.965531,0.462626,0.377038,0.090449,0.473041,0.698987,0.719065,0.593857,0.746463,0.13563,0.342102,0.730694,0.815683,0.625301,0.950629,0.549525,0.383674,0.847845,0.15547,0.231686,0.00227833,0.101657,0.744249,0.454432,0.611993,0.941996,0.667119,0.742833,0.204551,0.442185,0.565571,0.0972009,0.458993,0.917605,0.0694569,0.311089,0.727015,0.948833,0.676812,0.762418,0.901371,0.286421,0.731381,0.979545,0.178409,0.50828,0.391062,0.49089,0.247783,0.909947,0.638446,0.399722,0.663703,0.458634,0.305831,0.886578,0.951511,0.330867,0.167732,0.78171,0.779312,0.475836,0.344479,0.90934,0.924892,0.237231,0.823996,0.464536,0.295111,0.733145,0.899974,0.0555152,0.917575,0.93678,0.717065,0.252013,0.884673,0.663851,0.246334,0.3554,0.737458,0.906347,0.333837,0.282005,0.157821,0.65118,0.237384,0.232321,0.741349,0.971287,0.175638,0.142945,0.0914867,0.74718,0.366482,0.277715,0.943506,0.926386,0.638274,0.306929,0.392991,0.521557,0.205861,0.970823,0.153167,0.430751,0.703543,0.462551,0.284134,0.280282,0.654523,0.165837,0.60404,0.941523,0.0417382,0.638844,0.44388,0.732287,0.119718,0.570146,0.10647,0.510538,0.464509,0.705393,0.95693,0.00230652,0.250038,0.229022,0.952146,|0.633858,0.931516,0.179645,0.22944,0.447355,0.347321,0.329034,0.0395055,0.0731568,0.552146,0.736141,0.319237,0.975002,0.724077,0.674991,0.580268,0.0383113,0.444944,0.95653,0.125881,0.438877,0.728474,0.827228,0.262966,0.388636,0.926471,0.991767,0.503033,0.90409,0.177961,0.166145,0.136787,0.280283,0.597891,0.0195943,0.245497,0.26861,0.253927,0.946134,0.607249,0.656164,0.711151,0.189993,0.242691,0.908327,0.514628,0.338812,0.836996,0.796025,0.242824,0.329336,0.69229,0.909427,0.979223,0.00929642,0.898371,0.59122,0.951056,0.364311,0.839252,0.723709,0.64747,0.0725372,0.285937,0.164107,0.538052,0.953041,0.0414541,0.126503,0.778371,0.387912,0.594234,0.0545743,0.618486,0.68638,0.979935,0.0762833,0.650975,0.28763,0.306089,0.888864,0.153315,0.431844,0.520657,0.285298,0.730386,0.19355,0.75558,0.864663,0.506984,0.782427,0.880214,0.838882,0.581299,0.197495,0.106992,0.420683,0.343844,0.747091,0.378629,0.0854748,0.232558,0.942288,0.812936,0.116784,0.85051,0.612762,0.480772,0.290288,0.175506,0.422652,0.437178,0.945487,0.167069,0.720864,0.612639,0.442286,0.879245,0.647489,0.089371,0.0247717,0.210363,0.109414,0.453056,0.381565,0.492614,0.156299,0.704754,0.470281,0.203563,0.221832,0.491578,0.350881,0.200293,0.601794,0.313429,0.248245,0.581183,0.613405,0.398948,0.399603,0.852725,0.324085,0.238765,0.136706,0.0801851,0.203382,0.601748,0.91639,0.480181,0.585513,0.945501,0.946228,0.211565,0.849843,0.706393,0.536803,0.0102843,0.0192001,0.746419,0.2845,0.120131,0.463135,0.877736,0.646611,0.011909,0.874323,0.124925,0.478746,0.191257,0.0804171,0.659426,0.352656,0.896273,0.15712,0.486834,0.926225,0.469703,0.58604,0.551944,0.355777,0.0974277,0.091222,0.973788,0.697987,0.907441,0.859343,0.135663,0.490415,0.556914,0.0904986,0.935421,0.680081,0.792367,0.58433,0.331291,0.642207,0.568374,0.961249,0.651909,0.165285,0.288523,0.527185,0.237626,0.569644,0.186681,0.0704362,0.337999,0.180182,0.91676,0.708542,0.658804,0.566796,0.263138,0.0387534,0.810092,0.217319,0.466753,0.0646421,0.700631,0.947254,0.739075,0.627078,0.180822,0.611389,0.272801,0.21118,0.90492,0.207931,0.19116,0.830755,0.136332,0.80434,0.4092,0.821351,0.636196,0.592557,0.425911,0.299775,0.0715288,0.423307,0.183097,0.178398,0.0714762,0.373495,0.0267978,0.178148,0.793704,0.766934,0.531298,0.402991,0.381285,0.160754,0.133738,0.478596,0.739879,0.76118,0.239744,0.757311,0.257832,0.700692,0.539957,0.332517,0.63599,0.342572,0.313729,0.332001,0.231178,0.178552,0.907071,0.793464,0.729301,0.143374,0.388027,0.581242,0.0198122,0.958355,0.0560625,0.56085,0.417018,0.401865,0.425911,0.57795,0.543098,0.633233,0.076449,0.197062,0.847506,0.378907,0.00798631,0.829245,0.828651,0.198798,0.316863,0.977024,0.245117,0.845555,0.482782,0.225682,0.28101,0.16361,0.350898,0.0905724,0.597859,0.279562,0.843483,0.156124,0.399124,0.544209,0.809269,0.164852,0.432074,0.326479,0.0919896,0.173433,0.0331439,0.138412,0.788607,0.97921,0.596699,0.938525,0.124766,0.0784988,0.31998,0.753039,0.706328,0.648571,0.972976,0.407106,0.887206,0.406169,0.016338,0.391152,0.340637,0.280728,0.850645,0.605011,0.117114,0.113981,0.865771,0.832067,0.182973,0.343694,0.432677,0.499139,0.62936,0.835842,0.613341,0.457049,0.112666,0.186099,0.876198,0.571934,0.311905,0.351942,0.766231,0.832591,0.909996,0.236242,0.357739,0.236649,0.699032,0.879307,0.943415,0.796295,0.179529,0.0671618,0.220616,0.0826009,0.568801,0.972892,0.28322,0.855744,0.665167,0.0508488,0.822498,0.880016,0.175653,0.909584,0.606255,0.76581,0.66388,0.468958,0.826755,0.833281,0.266531,0.437125,0.773517,0.554193,0.0549887,0.364608,0.957629,0.336998,0.678694,0.167193,0.376479,0.746065,0.984033,0.548237,0.124935,0.0805381,0.811272,0.00711948,0.337941,0.383177,0.955085,0.363769,0.983058,0.159625,0.437471,0.799148,0.823953,0.270231,0.261388,0.327554,0.594616,0.200134,0.945102,0.811874,0.503836,0.344203,0.288628,0.57496,0.636388,0.465705,0.7404,0.659198,0.761116,0.736829,0.139711,0.515592,0.0471931,0.113893,0.868492,0.691819,0.554468,0.863431,0.742897,0.805143,0.148358,0.954747,0.817882,0.498936,0.807249,0.96219,0.927191,0.384354,0.0981076,0.841631,0.0529442,0.782506,0.909243,0.419797,0.211376,0.579594,0.663254,0.463677,0.863116,0.469721,0.219597,0.657801,0.514558,0.402151,0.965977,0.55376,0.11536,0.536603,0.377663,0.774961,0.29574,0.701312,0.748108,0.546048,0.04166,0.551836,0.0392892,0.189337,0.0300169,0.0334907,0.679575,0.768798,0.651129,0.76932,0.353938,0.108894,0.206805,0.316334,0.443404,0.237427,0.355656,0.507795,0.364267,0.566264,0.368185,0.886399,0.955386,0.230106,0.967471,0.340341,0.0580217,0.0717548,0.865496,0.555994,0.273536,0.832669,0.166208,0.152261,0.234933,0.164595,0.402213,0.670956,0.441957,0.876074,0.902738,0.193992,0.801864,0.714416,0.111978,0.484143,0.993582,0.339013,0.416988,0.434637,0.764874,0.223921,0.781619,0.436236,0.829135,0.722426,0.671914,0.655462,0.956046,0.668715,0.554142,0.665331,0.210994,0.504583,0.762389,0.977208,0.820475,0.00696737,0.955717,0.707247,0.808259,0.0523333,0.407583,0.00681067,0.524079,0.759276,0.428233,0.507403,0.519677,0.0930791,0.250055,0.926828,0.553233,0.825732,0.0471027,0.984596,0.0863096,0.829955,0.70188,0.957231,0.975242,0.83862,0.962079,0.401961,0.540467,0.988039,0.62878,0.967802,0.221527,0.0386627,0.900516,0.603629,0.16027,0.671206,0.623512,0.348728,0.322577,0.301245,0.666037,0.000777781,0.0995231,0.306343,0.859176,0.828188,0.715065,0.0923065,0.325451,0.110263,0.494539,0.599253,0.193974,0.685804,0.0112871,0.388797,0.383834,0.618936,0.208913,0.4256,0.00252551,0.847661,0.933232,0.464229,0.446947,0.525178,0.805789,0.189515,0.45579,0.568673,0.747257,0.498493,0.94132,0.48863,0.185824,0.464983,0.278642,0.421271,0.447795,0.0277154,0.712517,0.77843,0.342284,0.421843,0.882201,0.428472,0.785233,0.956707,0.643082,0.0833883,0.842462,0.271183,0.731949,0.733345,0.172942,0.00799346,0.499888,0.389537,0.0806965,0.0135341,0.253299,0.39197,0.644311,0.677798,0.771182,0.76184,0.663068,0.767566,0.961715,0.924853,0.613979,0.436442,0.391906,0.984428,0.204512,0.149956,0.455692,0.080869,0.472486,0.11422,0.602642,0.483229,0.468942,0.209219,0.00454265,0.462722,0.879777,0.453386,0.221283,0.599591,0.454636,0.765865,0.68249,0.828643,0.50526,0.288498,0.335539,0.32268,0.0152464,0.0399555,0.450346,0.843743,0.358726,0.92846,0.174494,0.716419,0.445783,0.109631,0.559768,0.816957,0.16944,0.617512,0.720388,0.0637931,0.979291,0.580918,0.546578,0.54723,0.352513,0.505692,0.0793667,0.398563,0.275827,0.240522,0.423757,0.613853,0.24584,0.276839,0.046332,0.293965,0.366409,0.716493,0.17977,0.385227,0.402004,0.30606,0.913399,0.796624,0.492629,0.445504,0.897309,0.110029,0.724701,0.146634,0.595772,0.729525,0.224639,0.13287,0.447003,0.579718,0.47376,0.331004,0.590251,0.381284,0.446479,0.770708,0.390623,0.869856,0.0458989,0.949555,0.340362,0.942559,0.933724,0.340667,0.0849679,0.141834,0.513988,0.524921,0.497763,0.705216,0.246792,0.356865,0.426656,0.072407,0.119353,0.433375,0.813605,0.0233567,0.397649,0.260597,0.772837,0.857808,0.297865,0.233604,0.236645,0.494981,0.370515,0.870065,0.0548632,0.432241,0.648822,0.978617,0.122413,0.491398,0.741771,0.746933,0.588935,0.179402,0.762202,0.469567,0.416969,0.355479,0.160711,0.193035,0.654539,0.869156,0.0646479,0.314211,0.209641,0.815104,0.981111,0.822479,0.666437,0.0812989,0.226707,0.957591,0.897896,0.23386,0.432801,0.130455,0.296139,0.407477,0.952573,0.843615,0.0465552,0.385753,0.905925,0.166319,0.578442,0.451587,0.157318,0.00789797,0.300496,0.384217,0.378846,0.197049,0.00285983,0.264404,0.35068,0.144618,0.464365,0.578159,0.603806,0.251333,0.208045,0.16965,0.588823,0.575311,0.42232,0.500095,0.779767,0.656326,0.136949,0.647598,0.698416,0.26186,0.397514,0.665193,0.418163,0.00045687,0.631822,0.635352,0.710605,0.168973,0.724356,0.732799,0.95602,0.872875,0.334626,0.515014,0.306833,0.791119,0.0828488,0.430575,0.418188,0.614705,0.690056,0.443549,0.791296,0.0725163,0.6725,0.0500546,0.401636,0.487377,0.984684,0.301488,0.764681,0.902241,0.117517,0.0725841,0.996062,0.185569,0.422432,0.428257,0.241753,0.823719,0.518376,0.783468,0.894823,0.416014,0.703017,0.570587,0.865988,0.916158,0.490408,0.886446,0.36851,0.132583,0.629155,0.726787,0.47783,0.667938,0.295598,0.804666,0.0905548,0.423002,0.65162,0.840243,0.680221,0.603145,0.661981,0.919399,0.438681,0.405765,0.0277493,0.850894,0.838503,0.655814,0.556871,0.0832302,0.685257,0.162471,0.584569,0.630606,0.175961,0.167288,0.234565,0.802704,0.871383,0.365759,0.890708,0.315672,0.856655,0.607117,0.405618,0.849225,0.794176,0.238425,0.237665,0.0227728,0.731232,0.0614604,0.964175,0.544748,0.670044,0.109768,0.360051,0.259851,0.32477,0.0451718,0.818171,0.306666,0.0329776,0.300248,0.646345,0.597407,0.804098,0.701537,0.705472,0.805527,0.743487,0.933529,0.649254,0.867987,0.192708,0.501318,0.671646,0.12458,0.565643,0.531748,0.647744,0.116356,0.734443,0.549928,0.938908,0.0767632,0.634024,0.0118187,0.777523,0.891295,0.748354,0.879378,0.273653,0.900608,0.72613,0.0408303,0.140049,0.220279,0.934764,0.423183,0.268961,0.30909,0.397191,0.222125,0.790865,0.439622,0.383948,0.575205,0.529506,0.991363,0.736735,0.0702922,0.983066,0.416163,0.63136,0.197806,0.299609,0.285221,0.659447,|0.920203,0.598502,0.834359,0.691245,0.674865,0.173914,0.689808,0.281378,0.429709,0.221148,0.431131,0.38675,0.747895,0.819658,0.607429,0.304786,0.326891,0.343711,0.582036,0.573762,0.84326,0.802276,0.843741,0.638203,0.0761768,0.976502,0.923122,0.107189,0.45399,0.978091,0.101695,0.899951,0.831986,0.483202,0.499428,0.588625,0.661962,0.13964,0.676096,0.339861,0.0379984,0.000655711,0.390599,0.325751,0.389457,0.98569,0.550961,0.658392,0.895121,0.163297,0.0830708,0.170297,0.403492,0.0395061,0.604391,0.00758922,0.862626,0.906246,0.948714,0.816707,0.934604,0.422183,0.877397,0.685857,0.541502,0.332112,0.434558,0.317734,0.331111,0.25103,0.118652,0.401414,0.342881,0.497053,0.175836,0.826299,0.262262,0.577179,0.453343,0.0417549,0.447576,0.0360213,0.755442,0.766586,0.116097,0.255133,0.286598,0.448,0.713604,0.71884,0.875654,0.418598,0.42587,0.421946,0.487941,0.0175109,0.865214,0.223791,0.719404,0.107208,0.129233,0.970663,0.645996,0.444072,0.0889569,0.223964,0.382716,0.856083,0.230338,0.774562,0.719823,0.757173,0.685309,0.435027,0.809239,0.321945,0.495826,0.79343,0.09397,0.746809,0.934111,0.278746,0.432318,0.848938,0.492676,0.216165,0.480791,0.31194,0.848782,0.747777,0.36301,0.292469,0.151934,0.287885,0.757766,0.141895,0.0121039,0.62986,0.807575,0.145759,0.114664,0.235049,0.0765737,0.617617,0.030333,0.133148,0.850378,0.335509,0.647146,0.295416,0.489693,0.202766,0.942721,0.65302,0.555045,0.78065,0.434176,0.956672,0.860673,0.736656,0.833144,0.9294,0.944674,0.158624,0.879696,0.533771,0.645048,0.534842,0.700642,0.397123,0.774166,0.0764587,0.808976,0.255482,0.521858,0.377894,0.545708,0.290364,0.534311,0.751965,0.878393,0.683851,0.237128,0.842468,0.075914,0.853818,0.442809,0.979408,0.830844,0.882988,0.270854,0.505778,0.350241,0.61055,0.203549,0.616178,0.76278,0.327054,0.674357,0.416391,0.0931719,0.303771,0.487486,0.537225,0.710665,0.815366,0.872993,0.130355,0.717579,0.606407,0.347986,0.953317,0.422942,0.722574,0.0112594,0.927128,0.253559,0.292679,0.474465,0.836702,0.869002,0.0556602,0.773448,0.721166,0.606976,0.88529,0.0913826,0.338427,0.518846,0.338146,0.0541524,0.830739,0.507647,0.847564,0.188118,0.77333,0.179379,0.955156,0.213618,0.260301,0.539623,0.798267,0.595373,0.66393,0.226917,0.490909,0.572583,0.177864,0.601773,0.951688,0.127273,0.874687,0.077019,0.804139,0.814752,0.615281,0.0427372,0.716504,0.923156,0.650424,0.225843,0.467476,0.972127,0.789043,0.422383,0.600499,0.899309,0.881159,0.274219,0.699758,0.366509,0.878778,0.345191,0.195032,0.286379,0.426404,0.84772,0.0914575,0.671019,0.859672,0.324086,0.334248,0.542737,0.834592,0.845598,0.955409,0.129561,0.817462,0.847083,0.503992,0.367419,0.644387,0.716392,0.861892,0.342916,0.928746,0.243858,0.445386,0.713744,0.762192,0.192572,0.573684,0.866094,0.605117,0.573824,0.0896734,0.285969,0.476438,0.225438,0.57036,0.418016,0.818411,0.389811,0.649688,0.728086,0.751252,0.212139,0.697119,0.154151,0.067255,0.310049,0.877679,0.798975,0.483705,0.608327,0.101629,0.801302,0.42069,0.198754,0.473576,0.742418,0.40025,0.862957,0.751878,0.880558,0.0375865,0.705348,0.0261604,0.684777,0.864654,0.538729,0.628451,0.724299,0.96856,0.170693,0.121294,0.397764,0.446038,0.486568,0.296442,0.730927,0.715683,0.297028,0.0106183,0.929604,0.748005,0.0655203,0.66873,0.00876313,0.649149,0.811183,0.407039,0.665166,0.930032,0.806858,0.286605,0.560759,0.171604,0.562245,0.662505,0.686343,0.997503,0.0586346,0.477299,0.0534297,0.483837,0.10958,0.915745,0.812458,0.42327,0.951444,0.563188,0.213978,0.348882,0.056034,0.319534,0.603468,0.533845,0.160867,0.519599,0.0648328,0.805009,0.774069,0.38488,0.541528,0.38828,0.730763,0.200171,0.480955,0.122184,0.55852,0.80324,0.277043,0.517651,0.485986,0.0521761,0.77848,0.439105,0.958686,0.294575,0.739677,0.423488,0.311159,0.813986,0.866359,0.586505,0.184151,0.233603,0.861108,0.110828,0.64438,0.0346996,0.985088,0.124716,0.23327,0.038783,0.955448,0.223729,0.297825,0.552315,0.0764273,0.863674,0.357009,0.697258,0.324667,0.801575,0.423278,0.484211,0.370314,0.602683,0.549882,0.85774,0.0234435,0.291079,0.211062,0.278298,0.625498,0.910955,0.835478,0.230862,0.304149,0.656669,0.380184,0.372983,0.756192,0.69491,0.149273,0.735561,0.314372,0.979018,0.398608,0.295177,0.672383,0.99536,0.983665,0.875955,0.181678,0.735031,0.280523,0.484852,0.972044,0.23806,0.797209,0.867451,0.672089,0.891775,0.0988978,0.60112,0.408268,0.693294,0.408718,0.516561,0.559556,0.020465,0.607332,0.0823386,0.564532,0.677843,0.442561,0.317603,0.801709,0.173398,0.604316,0.819574,0.754468,0.600673,0.417615,0.300572,0.192688,0.87802,0.694273,0.840983,0.142272,0.880676,0.0259206,0.508534,0.23497,0.958768,0.386856,0.329219,0.261287,0.074979,0.380718,0.516685,0.434676,0.0072785,0.357246,0.12442,0.913841,0.983585,0.923115,0.867801,0.0276634,0.351266,0.210435,0.196796,0.413924,0.158825,0.405731,0.377189,0.0907999,0.25065,0.170969,0.430877,0.483046,0.390995,0.953852,0.471078,0.23594,0.698829,0.440922,0.979852,0.512718,0.311295,0.349693,0.704227,0.0471385,0.401638,0.585569,0.931268,0.703653,0.758201,0.0139961,0.982348,0.180774,0.048934,0.231822,0.382944,0.56287,0.120962,0.249717,0.643778,0.789008,0.566349,0.51851,0.527883,0.402802,0.660773,0.757852,0.262001,0.824439,0.568704,0.762888,0.790064,0.8558,0.784111,0.375628,0.217223,0.22859,0.567491,0.390538,0.589124,0.062475,0.406889,0.826261,0.86655,0.621925,0.974766,0.536606,0.854696,0.296867,0.414113,0.198314,0.898057,0.735935,0.721734,0.557024,0.435522,0.407592,0.268219,0.327914,0.575119,0.738733,0.449043,0.480114,0.425948,0.38872,0.364227,0.272035,0.380299,0.011353,0.70926,0.101388,0.188579,0.566513,0.486832,0.462226,0.405081,0.853268,0.0128316,0.799954,0.272225,0.252087,0.705288,0.438151,0.00928658,0.180979,0.0923501,0.518572,0.0580177,0.717293,0.253239,0.431147,0.682449,0.446729,0.798226,0.388176,0.0752453,0.967002,0.71745,0.729912,0.628758,0.312205,0.334583,0.694654,0.455539,0.679833,0.675149,0.703074,0.528545,0.732971,0.673436,0.955806,0.522419,0.75493,0.983364,0.338818,0.921211,0.400723,0.459029,0.336531,0.763846,0.309364,0.924231,0.274715,0.300497,0.387345,0.225266,0.00702119,0.549302,0.858734,0.399313,0.506027,0.574806,0.879522,0.170866,0.598889,0.436176,0.497171,0.32026,0.290495,0.115392,0.678125,0.884085,0.592234,0.933353,0.404575,0.292319,0.659394,0.790746,0.701881,0.113588,0.646799,0.701967,0.955383,0.479431,0.0339482,0.876465,0.667595,0.926299,0.891098,0.685683,0.840855,0.768955,0.164366,0.563402,0.771895,0.735799,0.560385,0.850235,0.971515,0.674695,0.530145,0.969517,0.345423,0.121291,0.514542,0.678324,0.162962,0.892232,0.107954,0.585238,0.103119,0.351916,0.880509,0.216627,0.839544,0.2987,0.652788,0.0441685,0.344821,0.54246,0.365167,0.572011,0.0466182,0.624917,0.652959,0.108695,0.510894,0.561805,0.657667,0.481157,0.300594,0.765222,0.359856,0.173675,0.482572,0.781056,0.774993,0.0364739,0.425407,0.119384,0.228132,0.781592,0.940917,0.0134624,0.085287,0.550349,0.346194,0.871366,0.604911,0.500493,0.543149,0.290645,0.770742,0.0219055,0.584294,0.751458,0.149445,0.139474,0.114587,0.286838,0.919828,0.281299,0.406327,0.0357659,0.333652,0.14845,0.18978,0.601775,0.942547,0.487991,0.132335,0.666571,0.411386,0.477788,0.689173,0.207186,0.740624,0.439536,0.786672,0.25865,0.326185,0.826284,0.806023,0.712221,0.861588,0.553038,0.103534,0.664244,0.441199,0.519742,0.675146,0.623506,0.730258,0.664012,0.457192,0.49389,0.205762,0.365662,0.440875,0.699753,0.207118,0.737194,0.234432,0.491113,0.87379,0.542499,0.941514,0.689598,0.672482,0.146767,0.781666,0.468259,0.535737,0.367312,0.944728,0.486351,0.561472,0.0653536,0.896252,0.798729,0.698151,0.153226,0.89353,0.335418,0.584202,0.871046,0.370389,0.641284,0.634548,0.25775,0.0738379,0.312689,0.477112,0.44147,0.367775,0.550544,0.554881,0.717219,0.760848,0.054683,0.588512,0.262359,0.141865,0.678594,0.257777,0.653075,0.651051,0.854061,0.85838,0.368468,0.717457,0.795148,0.345849,0.697141,0.676812,0.683125,0.706289,0.163202,0.0341539,0.754051,0.0947586,0.297992,0.869909,0.0575385,0.73391,0.124543,0.111032,0.405509,0.45673,0.957032,0.933818,0.31921,0.292554,0.536145,0.917517,0.285324,0.656699,0.59493,0.733923,0.422375,0.666624,0.145829,0.0947511,0.570888,0.038456,0.745806,0.124167,0.773002,0.734553,0.93018,0.206693,0.35687,0.549507,0.648113,0.204242,0.0150474,0.807851,0.126202,0.244155,0.589811,0.491183,0.196179,0.696766,0.374412,0.145741,0.887534,0.00428581,0.097598,0.950633,0.568087,0.702377,0.164713,0.52379,0.470023,0.145025,0.441774,0.55034,0.867674,0.416261,0.0610598,0.0735931,0.569708,0.426996,0.045053,0.934578,0.688612,0.750422,0.511401,0.809715,0.861232,0.537538,0.858908,0.626346,0.890527,0.249532,0.343662,0.715872,0.0956628,0.636429,0.44936,0.987542,0.209011,0.904849,0.651729,0.939433,0.950423,0.0609941,0.859431,0.960377,0.0815463,0.569889,0.690138,0.196845,0.418131,0.240036,0.719108,0.503278,0.635261,0.628557,0.0839052,0.554578,0.756803,0.75461,0.256502,0.655212,0.370495,0.369247,0.370795,0.63685,0.991304,0.283156,0.0107208,0.62251,0.254334,0.440863,0.0921863,0.41365,0.0919328,0.741715,0.881012,0.753384,0.388782,0.13283,0.946734,0.0782853,0.436224,0.666289,0.39141,|0.536825,0.824092,0.648561,0.207518,0.670021,0.229138,0.232419,0.729551,0.968696,0.533394,0.727862,0.853793,0.528088,0.323775,0.0816846,0.161854,0.96053,0.0994082,0.187498,0.40558,0.483857,0.637522,0.858484,0.923023,0.76244,0.594771,0.172387,0.4046,0.506664,0.595836,0.901608,0.263298,0.426347,0.604876,0.818111,0.178351,0.150498,0.677851,0.00316352,0.972868,0.0724199,0.680265,0.773036,0.679756,0.825036,0.0455287,0.156761,0.797853,0.00716746,0.282822,0.141519,0.513662,0.0752537,0.370044,0.25553,0.110442,0.293326,0.841202,0.017765,0.453919,0.910878,0.748146,0.766376,0.971882,0.318475,0.752088,0.976628,0.795703,0.767519,0.438118,0.538703,0.589036,0.884613,0.393139,0.16812,0.0576695,0.516059,0.7289,0.141158,0.31757,0.858028,0.370467,0.23757,0.820665,0.514207,0.211993,0.716674,0.959784,0.327933,0.6473,0.618059,0.0558818,0.714466,0.640473,0.433271,0.693304,0.576546,0.0311413,0.812945,0.603979,0.0444862,0.561275,0.990627,0.366082,0.345747,0.888023,0.813092,0.440868,0.139357,0.686543,0.580857,0.565878,0.298581,0.624684,0.938938,0.418558,0.194143,0.678009,0.585743,0.333527,0.398019,0.78779,0.37615,0.211029,0.27088,0.597172,0.814362,0.947226,0.580253,0.075786,0.868982,0.81155,0.282029,0.539863,0.73549,0.803639,0.814507,0.425921,0.746705,0.187998,0.662992,0.532419,0.212157,0.35685,0.0361131,0.312869,0.0483518,0.0316034,0.819733,0.311201,0.757809,0.272898,0.757271,0.969306,0.674242,0.908088,0.620782,0.497944,0.0411574,0.392211,0.888474,0.595617,0.871525,0.400864,0.147368,0.141268,0.235128,0.646889,0.385968,0.0834298,0.834954,0.647876,0.570946,0.253231,0.852671,0.494459,0.963206,0.209431,0.738546,0.32486,0.91406,0.782485,0.905411,0.264359,0.0345954,0.216305,0.896534,0.955285,0.205235,0.715108,0.0968906,0.563005,0.774944,0.702895,0.592587,0.531909,0.328939,0.176302,0.908367,0.102669,0.0911863,0.598204,0.115164,0.645283,0.922179,0.998002,0.481344,0.139554,0.816787,0.148131,0.930417,0.763963,0.284291,0.145737,0.833324,0.897256,0.0726266,0.426179,0.0356981,0.559638,0.410291,0.054615,0.328821,0.681977,0.545301,0.174286,0.149687,0.0173131,0.178427,0.0812913,0.139974,0.028243,0.0937361,0.365587,0.537199,0.253376,0.758115,0.609322,0.750535,0.496593,0.563878,0.969689,0.0538197,0.0227956,0.476909,0.863799,0.519294,0.21518,0.966005,0.248565,0.811312,0.502249,0.712338,0.625929,0.17037,0.17142,0.586547,0.0654474,0.50721,0.511614,0.07801,0.920918,0.0141153,0.922244,0.125086,0.90368,0.110448,0.00757027,0.155844,0.665492,0.103847,0.922269,0.52842,0.58864,0.305462,0.631425,0.583135,0.735981,0.93082,0.895457,0.245563,0.860733,0.945814,0.582829,0.191793,0.065967,0.926343,0.296416,0.3203,0.629979,0.605958,0.591901,0.705319,0.270125,0.144312,0.827268,0.527906,0.0102261,0.154664,0.653155,0.0352101,0.108188,0.227239,0.287041,0.134001,0.588935,0.573613,0.830301,0.891375,0.653256,0.0307928,0.389036,0.10064,0.443086,0.426392,0.611621,0.0960882,0.399677,0.93806,0.701015,0.11404,0.124917,0.297221,0.508595,0.564768,0.662383,0.842354,0.406233,0.11041,0.196606,0.890221,0.530519,0.176315,0.319766,0.346197,0.248566,0.357681,0.277257,0.0147789,0.301219,0.655876,0.334877,0.750227,0.640705,0.191207,0.290593,0.567677,0.866914,0.891151,0.100339,0.497914,0.306936,0.156953,0.252024,0.929044,0.0631663,0.249754,0.67101,0.00705045,0.70543,0.572064,0.00561345,0.702207,0.282077,0.239501,0.199092,0.149237,0.310898,0.116274,0.145261,0.863908,0.292477,0.824982,0.645756,0.636926,0.474681,0.297177,0.185027,0.454253,0.840544,0.918154,0.408931,0.797358,0.837276,0.89927,0.751987,0.438315,0.0834396,0.935985,0.753403,0.323308,0.307404,0.728368,0.786122,0.653419,0.950908,0.793389,0.134435,0.428437,0.906279,0.070223,0.466713,0.132695,0.771267,0.546093,0.86187,0.789282,0.869686,0.458907,0.0730488,0.541998,0.0444575,0.469383,0.173189,0.879651,0.635635,0.923963,0.937133,0.711621,0.971475,0.0218733,0.00613642,0.41291,0.721227,0.623653,0.0954477,0.376455,0.446798,0.293107,0.181019,0.424596,0.369489,0.799186,0.884575,0.793084,0.513047,0.845423,0.455095,0.825524,0.469339,0.543687,0.781987,0.0438336,0.611695,0.784153,0.867266,0.135783,0.135033,0.337568,0.879543,0.131629,0.7885,0.254665,0.780911,0.532031,0.310801,0.214543,0.925072,0.275417,0.71023,0.952079,0.0451598,0.126233,0.280465,0.671776,0.342135,0.325174,0.214085,0.637057,0.671558,0.890259,0.348913,0.124778,0.990767,0.708113,0.201605,0.0272217,0.00463539,0.0916375,0.963773,0.181024,0.715068,0.493703,0.219773,0.890055,0.0656568,0.556439,0.524563,0.669521,0.481028,0.462052,0.0483189,0.368945,0.737772,0.598082,0.322061,0.708575,0.401252,0.21072,0.979791,0.331949,0.0643018,0.925721,0.118728,0.591066,0.159726,0.29146,0.841727,0.309167,0.4634,0.264567,0.151558,0.810115,0.0298188,0.944954,0.778811,0.550301,0.335293,0.0290629,0.454116,0.861077,0.225691,0.00992876,0.202967,0.343731,0.0804681,0.314003,0.0861815,0.724542,0.750996,0.998175,0.772086,0.288172,0.977383,0.965113,0.310311,0.369806,0.0892185,0.802381,0.421332,0.507975,0.881001,0.63043,0.954689,0.945517,0.299551,0.686974,0.00912136,0.808677,0.357828,0.101851,0.378242,0.457544,0.473171,0.671782,0.431889,0.565866,0.0320311,0.488429,0.327371,0.962471,0.237187,0.0582122,0.299108,0.608465,0.0877078,0.714239,0.624188,0.165395,0.657934,0.00883925,0.117119,0.890266,0.748499,0.34385,0.961908,0.0107396,0.0709484,0.137823,0.123779,0.182645,0.531386,0.689696,0.648401,0.222833,0.567416,0.440803,0.471298,0.667686,0.635697,0.102339,0.402783,0.720849,0.517088,0.607438,0.453927,0.819839,0.0678168,0.667325,0.0432382,0.311392,0.852768,0.873428,0.185372,0.988464,0.0206095,0.716481,0.465854,0.200029,0.36458,0.596601,0.959968,0.0132324,0.198,0.144407,0.311529,0.111846,0.851632,0.601231,0.319557,0.505122,0.706249,0.865781,0.0510843,0.103354,0.364696,0.0386582,0.707155,0.0159308,0.0890303,0.325078,0.0355042,0.703422,0.0352467,0.845235,0.640011,0.490367,0.953089,0.386318,0.332936,0.114246,0.297922,0.599357,0.180591,0.570492,0.151483,0.341855,0.0172674,0.863888,0.066976,0.255162,0.227706,0.791332,0.772101,0.162541,0.583794,0.417905,0.57419,0.508911,0.723715,0.715397,0.850259,0.37328,0.315544,0.636703,0.56429,0.931206,0.648728,0.0719513,0.378593,0.278358,0.791146,0.0509647,0.869146,0.933435,0.120675,0.783387,0.290025,0.416768,0.60327,0.419773,0.550232,0.604743,0.151756,0.98083,0.977354,0.290218,0.855259,0.834413,0.96398,0.0226183,0.101104,0.133854,0.417472,0.992626,0.336082,0.180069,0.366588,0.11352,0.738001,0.475355,0.387263,0.095883,0.0651827,0.807492,0.545878,0.0217382,0.28972,0.28047,0.624215,0.187317,0.38553,0.739732,0.580712,0.117215,0.911679,0.625131,0.523951,0.592285,0.154424,0.381816,0.500279,0.619853,0.397014,0.0601767,0.329059,0.631268,0.576384,0.185394,0.583433,0.522929,0.0135716,0.0313802,0.880617,0.559039,0.343083,0.766974,0.699918,0.220552,0.968463,0.481716,0.421503,0.310397,0.983872,0.948314,0.774832,0.283177,0.509157,0.240456,0.635991,0.964567,0.294757,0.872414,0.215541,0.660076,0.830125,0.709924,0.404728,0.951815,0.691619,0.519886,0.991618,0.441563,0.336031,0.82305,0.0999321,0.592849,0.172905,0.768314,0.484629,0.377147,0.0163171,0.381253,0.154419,0.702237,0.577525,0.762479,0.813922,0.498771,0.972386,0.46911,0.81506,0.535919,0.545856,0.940264,0.127524,0.0457436,0.482193,0.52525,0.198376,0.696732,0.362191,0.756805,0.496244,0.0535401,0.634396,0.241711,0.323273,0.0902045,0.861678,0.0855804,0.953066,0.146514,0.24372,0.0174168,0.202381,0.874843,0.819001,0.692268,0.888215,0.0901172,0.895758,0.311584,0.622068,0.981145,0.841921,0.984654,0.183288,0.0221303,0.596799,0.684473,0.518868,0.222027,0.714048,0.39521,0.370299,0.776848,0.877419,0.845424,0.851775,0.373597,0.971032,0.461009,0.19222,0.847325,0.817101,0.396934,0.864764,0.787611,0.336796,0.918899,0.54212,0.883347,0.799256,0.622117,0.808211,0.609338,0.355909,0.0427094,0.316534,0.995616,0.976932,0.494757,0.326023,0.310333,0.689907,0.259397,0.114769,0.235445,0.708051,0.0541944,0.589296,0.0401155,0.238305,0.287264,0.320565,0.536713,0.426581,0.355991,0.793686,0.290125,0.196528,0.224416,0.298344,0.111299,0.518066,0.910103,0.72617,0.4597,0.100085,0.883837,0.702198,0.278931,0.25292,0.298063,0.58178,0.852888,0.452079,0.333922,0.225286,0.414409,0.0500511,0.525314,0.456036,0.12573,0.841843,0.914735,0.0275251,0.912996,0.264942,0.0459472,0.0094943,0.913638,0.113049,0.0638739,0.163911,0.627077,0.143557,0.311447,0.00936282,0.357285,0.10987,0.0900207,0.497062,0.168339,0.189856,0.641504,0.898834,0.580394,0.0115053,0.340073,0.332226,0.486993,0.819224,0.247704,0.597044,0.0993128,0.0178791,0.721197,0.362133,0.0554348,0.606926,0.363436,0.12119,0.0443749,0.322347,0.892263,0.440945,0.647365,0.714198,0.839386,0.716363,0.290462,0.29254,0.382771,0.259375,0.162109,0.945118,0.367722,0.466088,0.346421,0.153003,0.37402,0.704269,0.383357,0.51224,0.478218,0.753526,0.776764,0.597473,0.844494,0.570558,0.547729,0.509678,0.577417,0.300955,0.501073,0.695354,0.893081,0.119019,0.967984,0.941842,0.410102,0.294972,0.362414,0.758393,0.664904,0.949098,0.58055,0.773277,0.299358,0.870841,0.397631,0.207638,0.141819,0.0232839,0.378702,0.235378,0.656044,0.523165,0.128596,0.0437673,0.830761,0.397428,0.778241,0.466138,0.625683,0.275939,0.716461,0.737756,|0.304888,0.533874,0.910387,0.232466,0.801044,0.570713,0.320872,0.780906,0.899607,0.794495,0.934938,0.728533,0.816794,0.432167,0.353543,0.729336,0.721834,0.958412,0.977549,0.575678,0.239819,0.0990899,0.210607,0.0689515,0.13188,0.13301,0.708524,0.628824,0.382298,0.353505,0.622334,0.905264,0.432968,0.170111,0.332695,0.0717408,0.815112,0.115206,0.796635,0.480255,0.591777,0.662881,0.527205,0.574097,0.752335,0.451873,0.980412,0.936961,0.873003,0.0437797,0.78118,0.720285,0.286401,0.471256,0.683733,0.811258,0.594531,0.0393288,0.549865,0.131608,0.623642,0.909916,0.268398,0.756854,0.0667976,0.29754,0.432731,0.976112,0.168807,0.953741,0.603609,0.682033,0.243936,0.688901,0.707181,0.271767,0.611115,0.78081,0.256181,0.982428,0.113706,0.801721,0.629174,0.248308,0.428125,0.217829,0.856249,0.881966,0.884014,0.719556,0.328063,0.86515,0.992463,0.170847,0.491869,0.530382,0.0327247,0.0582064,0.0433002,0.0329714,0.199311,0.963661,0.0298856,0.0267246,0.903267,0.0728663,0.288881,0.908069,0.281273,0.805264,0.349294,0.818934,0.568912,0.606967,0.00291866,0.33248,0.193651,0.214551,0.0729472,0.824535,0.686633,0.13781,0.526789,0.325969,0.888129,0.7972,0.23775,0.854185,0.868556,0.359816,0.707813,0.453109,0.937401,0.508627,0.220479,0.336896,0.348649,0.0800924,0.948014,0.0195985,0.53593,0.514677,0.692975,0.739342,0.42582,0.651267,0.859075,0.348214,0.918087,0.486888,0.129124,0.393647,0.108736,0.74442,0.502227,0.914147,0.732112,0.0831951,0.571798,0.175454,0.461698,0.92854,0.708011,0.723226,0.234929,0.496643,0.750967,0.834371,0.683364,0.482989,0.00854373,0.453096,0.238723,0.291653,0.173367,0.691371,0.0188253,0.373423,0.77422,0.410671,0.480808,0.950137,0.782449,0.274163,0.62533,0.879566,0.231018,0.0561586,0.493033,0.866223,0.414374,0.201251,0.250202,0.821328,0.963941,0.529338,0.748348,0.645089,0.655342,0.971596,0.77193,0.631617,0.404471,0.317043,0.143641,0.420251,0.761525,0.23904,0.92664,0.0766417,0.218717,0.944299,0.731246,0.0173904,0.657951,0.47046,0.267221,0.397606,0.609681,0.525011,0.325307,0.435684,0.273633,0.0399656,0.14488,0.350139,0.0838661,0.5265,0.477991,0.39981,0.080882,0.654646,0.988077,0.872149,0.557188,0.98083,0.628498,0.503961,0.6077,0.448102,0.874816,0.627516,0.338323,0.530988,0.312583,0.605306,0.159734,0.957709,0.723118,0.426296,0.604019,0.626356,0.717535,0.73116,0.662115,0.101522,0.662166,0.314746,0.879881,0.0423208,0.47182,0.856497,0.178674,0.526676,0.0959516,0.748527,0.745969,0.93651,0.70425,0.16325,0.048647,0.667519,0.102809,0.649579,0.614354,0.800069,0.531981,0.45832,0.368537,0.878423,0.815003,0.925176,0.560265,0.905245,0.425758,0.0801156,0.194108,0.165689,0.100397,0.590551,0.387882,0.699922,0.176469,0.372342,0.731878,0.307274,0.365685,0.702465,0.378624,0.665665,0.381086,0.138566,0.257393,0.887882,0.0126303,0.276471,0.844668,0.686586,0.328038,0.657931,0.559985,0.310343,0.191311,0.128207,0.772694,0.360871,0.175688,0.535827,0.156573,0.199571,0.939021,0.111121,0.0989807,0.0699195,0.197887,0.192652,0.644206,0.398831,0.511574,0.222264,0.581267,0.299916,0.212215,0.95133,0.855032,0.627745,0.0659733,0.771119,0.740612,0.627636,0.104365,0.287943,0.522152,0.186015,0.717065,0.579839,0.0245405,0.746584,0.798158,0.89977,0.379745,0.693538,0.349595,0.357182,0.739925,0.100547,0.331173,0.767703,0.390726,0.805866,0.841974,0.933756,0.987634,0.412825,0.37534,0.305457,0.149465,0.133632,0.0120907,0.648259,0.900239,0.792435,0.125159,0.773053,0.721063,0.219441,0.47431,0.638448,0.465434,0.607576,0.149027,0.442145,0.963282,0.919359,0.427122,0.391249,0.000751138,0.807313,0.145031,0.227266,0.166299,0.432335,0.767463,0.776977,0.78989,0.479999,0.8012,0.824622,0.273412,0.698341,0.38293,0.543496,0.879486,0.406879,0.920116,0.876717,0.71898,0.675903,0.373732,0.486569,0.653847,0.136172,0.542149,0.234726,0.295039,0.456367,0.30199,0.219137,0.0401518,0.774927,0.393546,0.0769958,0.715429,0.268723,0.945248,0.271414,0.799387,0.957995,0.640333,0.0805729,0.322746,0.363061,0.370245,0.798921,0.678415,0.806586,0.829082,0.055328,0.502554,0.0438665,0.835624,0.410553,0.2599,0.510861,0.203116,0.783822,0.581977,0.493507,0.343509,0.586631,0.538065,0.7291,0.112425,0.982658,0.687832,0.762566,0.91124,0.907384,0.397207,0.623189,0.332532,0.363503,0.929723,0.0785121,0.462077,0.490849,0.588043,0.291974,0.270946,0.443241,0.960573,0.578904,0.489951,0.430779,0.239637,0.490913,0.74028,0.533249,0.299566,0.477871,0.754259,0.245599,0.37269,0.545871,0.623238,0.186367,0.588559,0.262181,0.947407,0.261899,0.259011,0.178326,0.0120566,0.164411,0.183218,0.54752,0.291539,0.316483,0.312087,0.743273,0.23845,0.664767,0.545107,0.329359,0.985098,0.943786,0.131885,0.0612258,0.0162914,0.831484,0.447247,0.144526,0.736846,0.858843,0.920919,0.441225,0.835242,0.136184,0.103633,0.492325,0.950647,0.320561,0.714765,0.0814737,0.710406,0.323543,0.433446,0.503388,0.185142,0.620872,0.732508,0.889131,0.517928,0.951611,0.312558,0.455261,0.805939,0.266676,0.0169704,0.299787,0.413851,0.82378,0.0307359,0.883273,0.749647,0.827194,0.00326186,0.793473,0.429452,0.125974,0.749465,0.0846317,0.716564,0.767142,0.249149,0.00446999,0.279663,0.900715,0.398236,0.904101,0.550455,0.422807,0.333984,0.391786,0.421283,0.227732,0.918326,0.792455,0.740555,0.740389,0.43858,0.461349,0.511369,0.594249,0.821253,0.552255,0.71327,0.811686,0.0577013,0.293053,0.0392557,0.192674,0.492338,0.263206,0.989401,0.964804,0.0136114,0.0749123,0.179787,0.180617,0.299086,0.666387,0.705502,0.902044,0.136719,0.533366,0.758294,0.808905,0.703401,0.811773,0.149972,0.829701,0.69577,0.782293,0.765363,0.514098,0.427181,0.343839,0.48009,0.393587,0.872164,0.0211604,0.0590222,0.74139,0.651977,0.616784,0.888609,0.557151,0.417425,0.490804,0.51993,0.800531,0.904808,0.684667,0.744712,0.310388,0.376355,0.0974268,0.037133,0.787046,0.624315,0.0111308,0.93649,0.2059,0.141625,0.43403,0.160448,0.365338,0.970994,0.433095,0.79142,0.00991964,0.283688,0.830127,0.40628,0.901769,0.526006,0.0307249,0.708773,0.93599,0.0548661,0.020939,0.206828,0.63593,0.171293,0.513887,0.434254,0.0750543,0.0927203,0.102618,0.291538,0.469515,0.265601,0.618967,0.34258,0.715869,0.468527,0.0795098,0.418943,0.46779,0.333582,0.571251,0.369239,0.595966,0.258358,0.125861,0.836405,0.49592,0.98271,0.652352,0.285008,0.942239,0.451965,0.430439,0.963494,0.223677,0.454742,0.559977,0.121036,0.474573,0.175171,0.0775133,0.994539,0.181679,0.0844613,0.0788179,0.564061,0.0476299,0.490293,0.917284,0.053143,0.804599,0.863764,0.449453,0.756004,0.535505,0.903452,0.58368,0.376671,0.130893,0.212939,0.428852,0.0461389,0.90316,0.198933,0.0824238,0.643525,0.584417,0.948287,0.723948,0.59077,0.473891,0.531312,0.27727,0.156538,0.235007,0.698534,0.193979,0.0717614,0.269489,0.555874,0.655173,0.491448,0.900799,0.616784,0.56682,0.808325,0.0211773,0.149236,0.874403,0.1776,0.420617,0.054931,0.729785,0.920829,0.365912,0.64129,0.673418,0.686608,0.565775,0.56808,0.536614,0.390339,0.607882,0.275012,0.148715,0.258096,0.262423,0.639117,0.0360222,0.974342,0.745388,0.794956,0.125717,0.531033,0.00255877,0.815409,0.373062,0.423965,0.874354,0.650524,0.0409721,0.239961,0.982973,0.134955,0.168381,0.52102,0.354902,0.404408,0.93528,0.527606,0.269176,0.477424,0.830688,0.637418,0.545378,0.969227,0.423631,0.53707,0.0222377,0.869807,0.17304,0.806286,0.83045,0.564737,0.270812,0.271703,0.67626,0.950031,0.281126,0.254989,0.246382,0.919521,0.203415,0.923859,0.284513,0.144222,0.738067,0.511299,0.353882,0.16046,0.78152,0.789651,0.841887,0.764116,0.416191,0.576102,0.156472,0.604586,0.797926,0.0365815,0.414723,0.0871704,0.528143,0.241953,0.908017,0.754944,0.157421,0.564658,0.749357,0.112015,0.972642,0.123975,0.626041,0.0370625,0.35522,0.307956,0.41219,0.858959,0.0646077,0.206988,0.160069,0.616621,0.917817,0.134624,0.635897,0.72788,0.457344,0.937788,0.940438,0.426638,0.85425,0.171442,0.75024,0.728203,0.472749,0.612609,0.601147,0.623124,0.808448,0.390304,0.275817,0.316175,0.961886,0.107986,0.847627,0.591402,0.161143,0.169446,0.57397,0.0691609,0.456193,0.700649,0.616159,0.197229,0.559122,0.577542,0.86551,0.689232,0.103211,0.664521,0.614703,0.513432,0.671164,0.14326,0.350144,0.0439157,0.75684,0.209618,0.647786,0.367943,0.305049,0.468778,0.699205,0.848545,0.699539,0.302301,0.243006,0.566505,0.892441,0.258114,0.0432508,0.391371,0.81187,0.160562,0.105171,0.438112,0.0321348,0.908907,0.252379,0.914505,0.768918,0.666207,0.245822,0.796429,0.461966,0.0694908,0.641094,0.208414,0.806097,0.707399,0.0483379,0.0522576,0.617255,0.407558,0.277041,0.0590614,0.461773,0.0649868,0.908242,0.0881146,0.646979,0.587928,0.641164,0.635886,0.348695,0.110501,0.843766,0.640425,0.785941,0.095531,0.784753,0.587459,0.79873,0.253768,0.805351,0.656749,0.553074,0.440626,0.521479,0.130308,0.498681,0.0587384,0.00424153,0.94402,0.938452,0.915873,0.48606,0.522101,0.989306,0.606862,0.0623431,0.947204,0.514216,0.437063,0.659501,0.907787,0.132104,0.223609,0.904276,0.257861,0.301936,0.460012,0.182279,0.149668,0.182509,0.995107,0.0009951,0.275325,0.472069,0.441313,0.0861185,0.760165,0.0827545,0.992539,0.412246,0.271839,0.100504,0.849701,0.884001,0.723857,0.0317014,0.940807,0.577035,0.564628,0.263831,0.973519,0.0084309,0.370681,0.744081,|0.246202,0.846969,0.144317,0.107775,0.412913,0.664684,0.538871,0.233606,0.360363,0.345301,0.268978,0.345275,0.854468,0.498694,0.155132,0.0787421,0.931072,0.822606,0.33166,0.971678,0.447893,0.446472,0.799976,0.157041,0.102751,0.182533,0.888864,0.0291017,0.231218,0.891784,0.0115397,0.21245,0.191203,0.37549,0.418674,0.696541,0.251917,0.971118,0.997112,0.639256,0.855112,0.145086,0.452353,0.92184,0.623401,0.313494,0.952881,0.0037201,0.706101,0.0525053,0.107869,0.295445,0.407691,0.0270194,0.439134,0.829404,0.95387,0.739555,0.337007,0.789888,0.0543924,0.112737,0.247021,0.317016,0.162884,0.960451,0.443775,0.664612,0.313578,0.0525954,0.512557,0.26382,0.716404,0.55171,0.815868,0.455241,0.487154,0.571208,0.576058,0.295318,0.345522,0.371802,0.392642,0.914797,0.554281,0.894315,0.452546,0.0674519,0.755916,0.778615,0.316218,0.275441,0.0513934,0.759649,0.0950395,0.18178,0.504058,0.683709,0.155231,0.0710936,0.851272,0.500023,0.6443,0.689208,0.629411,0.892452,0.114004,0.181959,0.65019,0.989953,0.306629,0.276786,0.913279,0.766355,0.173258,0.340384,0.0201085,0.994112,0.623803,0.373422,0.207728,0.167587,0.0753691,0.0672274,0.128799,0.191518,0.729907,0.317028,0.538096,0.695701,0.153116,0.394232,0.360783,0.218342,0.900794,0.115864,0.458768,0.280041,0.881891,0.692603,0.8361,0.274979,0.204125,0.339788,0.709459,0.273325,0.604294,0.685935,0.0846938,0.131316,0.216233,0.651146,0.247624,0.678302,0.880041,0.168069,0.877816,0.462929,0.397744,0.354165,0.554433,0.905875,0.0255652,0.817142,0.266063,0.0280834,0.0214339,0.381222,0.841241,0.388295,0.537733,0.872386,0.238096,0.21676,0.956074,0.644631,0.582943,0.436451,0.410511,0.392791,0.141314,0.993347,0.997186,0.710034,0.277662,0.945029,0.726474,0.187378,0.45589,0.476254,0.739288,0.665515,0.230674,0.385051,0.323249,0.285346,0.677273,0.827959,0.594288,0.355139,0.755198,0.735214,0.928022,0.616645,0.0703675,0.502861,0.930482,0.729283,0.952893,0.549269,0.638259,0.0711665,0.520134,0.405312,0.44793,0.366443,0.928816,0.469749,0.139649,0.61496,0.520593,0.160955,0.498537,0.58987,0.0980648,0.0193285,0.125181,0.19624,0.526759,0.600668,0.386608,0.0283934,0.920427,0.376836,0.216933,0.427661,0.805352,0.483081,0.663313,0.460355,0.396098,0.763579,0.762537,0.0988674,0.205383,0.449775,0.530109,0.6784,0.540003,0.310843,0.281463,0.841912,0.438594,0.815094,0.644267,0.368894,0.868577,0.201455,0.109128,0.780854,0.424647,0.476949,0.464055,0.377458,0.450137,0.255729,0.964408,0.651716,0.29166,0.807957,0.35109,0.70706,0.495618,0.149178,0.753968,0.857292,0.756569,0.145518,0.845196,0.457009,0.48231,0.268709,0.770281,0.980272,0.797756,0.245656,0.210676,0.284275,0.518995,0.339351,0.541049,0.228612,0.0999865,0.762639,0.883208,0.527973,0.799654,0.321376,0.609326,0.807722,0.663746,0.90986,0.481436,0.520353,0.231023,0.924695,0.295783,0.82814,0.533396,0.587329,0.105088,0.985395,0.049521,0.992284,0.340409,0.324002,0.582138,0.741582,0.351546,0.0753869,0.846767,0.603555,0.0595298,0.255253,0.403229,0.214429,0.704178,0.622628,0.705286,0.307397,0.282488,0.477637,0.703511,0.00777227,0.658555,0.30514,0.574203,0.619196,0.0549132,0.105421,0.668667,0.292324,0.781256,0.561807,0.871429,0.24591,0.184068,0.726038,0.856247,0.456279,0.0965897,0.747139,0.335675,0.0200551,0.497568,0.0474205,0.867433,0.328529,0.629899,0.24019,0.351971,0.650142,0.0842316,0.0361167,0.463594,0.762745,0.467884,0.0717706,0.96248,0.611358,0.013625,0.0590153,0.403945,0.693338,0.734143,0.503735,0.412332,0.621873,0.818506,0.74897,0.563771,0.123928,0.266614,0.708602,0.849257,0.913545,0.129719,0.82572,0.570309,0.174393,0.685339,0.776464,0.233294,0.900027,0.802818,0.885735,0.124082,0.101839,0.838184,0.744788,0.0893826,0.986731,0.248445,0.246545,0.670861,0.121035,0.698615,0.805244,0.260425,0.924767,0.562184,0.504568,0.498266,0.193883,0.556459,0.247936,0.18829,0.681386,0.975819,0.599422,0.623526,0.438834,0.129978,0.684158,0.515668,0.230374,0.733398,0.51119,0.711702,0.621593,0.459007,0.865573,0.0196518,0.530897,0.236286,0.517843,0.640499,0.340352,0.0116519,0.158388,0.445588,0.429628,0.578431,0.163536,0.351872,0.770772,0.0163863,0.96663,0.841438,0.00531101,0.940175,0.131341,0.173792,0.939252,0.560605,0.990755,0.983775,0.259916,0.358052,0.543982,0.98567,0.988832,0.771015,0.209416,0.427111,0.962936,0.898404,0.953218,0.155743,0.616631,0.569767,0.522914,0.831097,0.604615,0.683763,0.269467,0.708397,0.415908,0.86465,0.583084,0.382876,0.70924,0.85737,0.898527,0.228051,0.293268,0.98357,0.892766,0.750616,0.0131881,0.773251,0.285069,0.773459,0.0315273,0.355677,0.252275,0.914597,0.825262,0.371467,0.986702,0.991799,0.901695,0.700777,0.815492,0.0149147,0.810375,0.901725,0.335262,0.511649,0.106068,0.237266,0.235549,0.271563,0.24567,0.00736398,0.0587956,0.659919,0.0091325,0.485976,0.875944,0.341098,0.375078,0.248561,0.661191,0.473377,0.47129,0.583743,0.272159,0.876593,0.351918,0.390925,0.110584,0.688608,0.405217,0.513018,0.224437,0.74623,0.716051,0.635365,0.90798,0.839946,0.0410116,0.891498,0.924541,0.515299,0.499289,0.75453,0.298919,0.441466,0.1037,0.836392,0.873278,0.974945,0.0758618,0.47074,0.0852197,0.210616,0.232054,0.0160465,0.287546,0.402812,0.552838,0.259686,0.654021,0.389375,0.226489,0.808684,0.486523,0.375579,0.493721,0.392719,0.566244,0.241741,0.137827,0.0207369,0.0351398,0.399796,0.601532,0.96677,0.207432,0.994208,0.647861,0.39406,0.883201,0.895157,0.131227,0.209894,0.443144,0.951378,0.755804,0.391337,0.0426463,0.138236,0.437214,0.568535,0.0168843,0.963774,0.711971,0.0455313,0.593936,0.392894,0.109829,0.0824792,0.0616801,0.683998,0.819155,0.832575,0.152673,0.757032,0.670322,0.503264,0.362915,0.363177,0.0971378,0.51721,0.221979,0.676138,0.274336,0.76487,0.955591,0.0339108,0.320208,0.558044,0.0856488,0.0817055,0.899273,0.530568,0.189349,0.494738,0.708573,0.713762,0.969851,0.659321,0.468747,0.218404,0.573767,0.839959,0.0386485,0.690332,0.539058,0.42153,0.114419,0.82128,0.753955,0.390548,0.287075,0.938734,0.355098,0.229143,0.471916,0.322348,0.565073,0.0951952,0.453801,0.274335,0.0421085,0.0748401,0.0640403,0.503108,0.195108,0.803067,0.890406,0.768602,0.598542,0.313752,0.278543,0.983191,0.178183,0.105011,0.115517,0.647383,0.99968,0.345474,0.35321,0.823197,0.650885,0.979874,0.767745,0.58531,0.233559,0.190456,0.32928,0.37694,0.938688,0.577913,0.088457,0.798897,0.991225,0.0889708,0.209579,0.0515909,0.0726811,0.231717,0.978235,0.273465,0.547287,0.899184,0.890366,0.767236,0.799557,0.709071,0.358038,0.776162,0.0598497,0.122904,0.565441,0.808269,0.492425,0.722111,0.860415,0.504571,0.485568,0.153021,0.191816,0.920786,0.822939,0.710279,0.419437,0.553875,0.427483,0.0151118,0.687185,0.660918,0.993732,0.86796,0.869933,0.14995,0.954333,0.900913,0.0599656,0.479916,0.622163,0.948771,0.889901,0.301983,0.73646,0.9244,0.259958,0.353373,0.36967,0.803374,0.0599739,0.25838,0.553044,0.700351,0.683631,0.266167,0.977974,0.246359,0.707636,0.802018,0.535858,0.963058,0.36321,0.72048,0.329317,0.491889,0.8509,0.0375609,0.645295,0.758302,0.954662,0.372501,0.55082,0.978514,0.13711,0.481299,0.0221739,0.455919,0.548085,0.594359,0.891201,0.936729,0.647639,0.731634,0.0553929,0.382333,0.384066,0.516347,0.706739,0.0625137,0.454091,0.810542,0.183121,0.1479,0.39235,0.0590024,0.0572304,0.129095,0.623179,0.703173,0.906543,0.927334,0.214427,0.746706,0.400608,0.732913,0.537945,0.497814,0.621271,0.0274491,0.737808,0.83635,0.658454,0.634,0.376139,0.624761,0.540885,0.0589556,0.220459,0.226106,0.432516,0.400206,0.120726,0.0730672,0.997851,0.0115859,0.674861,0.962359,0.540119,0.284146,0.523323,0.682175,0.302365,0.330103,0.692176,0.0213852,0.231436,0.46132,0.99221,0.999436,0.16824,0.0250148,0.713524,0.798141,0.77886,0.560297,0.257711,0.441631,0.49401,0.10636,0.421379,0.0755814,0.131734,0.408689,0.130907,0.643016,0.66077,0.598493,0.487368,0.926222,0.641026,0.937441,0.860073,0.305708,0.664284,0.237887,0.124156,0.0809445,0.751987,0.545729,0.989169,0.886373,0.848504,0.910984,0.386322,0.894191,0.259221,0.109853,0.455335,0.343809,0.605287,0.626184,0.9743,0.571331,0.964555,0.620169,0.237093,0.693833,0.769457,0.642607,0.963292,0.734461,0.222855,0.635427,0.671396,0.364506,0.849946,0.307259,0.659923,0.479601,0.961956,0.641918,0.250145,0.803468,0.298663,0.877899,0.567373,0.626456,0.558867,0.534502,0.346796,0.237133,0.851311,0.734447,0.0537116,0.182227,0.73682,0.120229,0.960817,0.144996,0.555482,0.613656,0.73599,0.726511,0.273225,0.0880712,0.428203,0.227619,0.624822,0.414316,0.669466,0.998286,0.909668,0.270482,0.145698,0.299661,0.786756,0.552975,0.913768,0.0953541,0.043357,0.646921,0.826706,0.981036,0.213768,0.488025,0.0826479,0.688362,0.0662537,0.44164,0.265153,0.617563,0.00698304,0.417929,0.156389,0.151334,0.932652,0.693754,0.256564,0.21885,0.0341018,0.712149,0.767253,0.499464,0.0766189,0.630016,0.382465,0.70497,0.897589,0.644899,0.869207,0.601265,0.571458,0.718929,0.293165,0.134508,0.859942,0.719912,0.617758,0.220163,0.545921,0.0724186,0.338413,0.933254,0.636899,0.559866,0.662343,0.17723,0.514395,0.0916333,0.154193,0.144122,0.924202,0.865397,0.946154,0.0980462,0.470789,0.443097,0.891185,0.137244,0.340734,0.633354,0.569228,0.776638,0.965336,0.54849,0.00441241,0.515151,0.175361,|0.535041,0.849277,0.139025,0.446546,0.399048,0.665278,0.000212371,0.791302,0.364027,0.515412,0.254285,0.364695,0.237353,0.397304,0.572346,0.269727,0.823026,0.97051,0.783455,0.873164,0.840666,0.671171,0.0212085,0.0249313,0.735142,0.0846732,0.210112,0.061776,0.090793,0.886136,0.517855,0.907585,0.374093,0.149869,0.832954,0.0678658,0.025282,0.795252,0.843303,0.66368,0.494178,0.857758,0.3105,0.394229,0.577944,0.785115,0.235328,0.907894,0.909978,0.673539,0.0146099,0.052062,0.530686,0.657985,0.0276106,0.584147,0.438259,0.43221,0.335182,0.443482,0.397708,0.94433,0.340215,0.709079,0.444858,0.348744,0.104555,0.272503,0.123645,0.626126,0.331644,0.143478,0.739646,0.915932,0.598524,0.24767,0.30366,0.705153,0.722168,0.74951,0.679164,0.24192,0.058934,0.257019,0.163126,0.177857,0.318901,0.912754,0.850419,0.775616,0.615275,0.672906,0.826774,0.927998,0.789896,0.155333,0.937527,0.078229,0.107309,0.249269,0.643749,0.617931,0.91422,0.52541,0.262918,0.928556,0.405303,0.769347,0.818387,0.107554,0.334176,0.0178874,0.283539,0.912873,0.301775,0.271926,0.608413,0.112773,0.611345,0.407332,0.179916,0.776918,0.217669,0.545905,0.0201951,0.686657,0.24231,0.237788,0.323167,0.0470567,0.104752,0.872062,0.278876,0.337313,0.879062,0.460799,0.00934464,0.477683,0.443468,0.263914,0.598105,0.391996,0.876479,0.687615,0.936473,0.668796,0.26775,0.477327,0.0503986,0.321233,0.0343537,0.685633,0.538115,0.567623,0.798598,0.430901,0.535893,0.145711,0.259753,0.555908,0.972172,0.466074,0.674911,0.872137,0.549465,0.236798,0.906793,0.803612,0.906824,0.222014,0.698873,0.227083,0.378647,0.535127,0.373839,0.929773,0.852621,0.174061,0.455061,0.433298,0.113514,0.417337,0.149245,0.542209,0.963054,0.526117,0.66707,0.884833,0.247356,0.7038,0.740633,0.0679644,0.449748,0.968961,0.242242,0.277191,0.152875,0.0726671,0.917028,0.416423,0.200848,0.255404,0.749891,0.319583,0.440048,0.115199,0.705839,0.683855,0.305434,0.518592,0.0661925,0.0727052,0.0737588,0.239388,0.939988,0.666275,0.606744,0.498788,0.648537,0.240743,0.46288,0.0748199,0.67953,0.970448,0.187098,0.600309,0.433243,0.843095,0.838612,0.310605,0.916132,0.448211,0.699604,0.868178,0.467643,0.660078,0.0316513,0.256583,0.205612,0.9527,0.0464339,0.75311,0.712251,0.907031,0.799689,0.346126,0.724005,0.470362,0.391978,0.932861,0.518651,0.643462,0.314902,0.221515,0.179801,0.782722,0.483118,0.641483,0.302024,0.786958,0.688936,0.0827562,0.9336,0.864539,0.769285,0.620001,0.114509,0.244605,0.421326,0.217403,0.732994,0.719616,0.40433,0.162731,0.305708,0.945894,0.632723,0.340782,0.425145,0.854408,0.722179,0.823304,0.597868,0.251373,0.239194,0.624728,0.146965,0.20221,0.547913,0.582853,0.589973,0.131971,0.611619,0.0443137,0.751335,0.233907,0.37689,0.3923,0.166111,0.465941,0.870974,0.404989,0.248613,0.0855621,0.407205,0.0705616,0.0601224,0.782855,0.282269,0.734708,0.874946,0.879053,0.0791761,0.668428,0.845272,0.704528,0.773289,0.72973,0.797839,0.919951,0.0889692,0.904914,0.17713,0.122743,0.298149,0.236462,0.642181,0.151415,0.608104,0.988355,0.453589,0.171198,0.780304,0.323178,0.0202475,0.450624,0.190848,0.453999,0.145647,0.136395,0.00921291,0.248043,0.342938,0.542722,0.447862,0.351895,0.734771,0.359743,0.0484681,0.0808724,0.0313188,0.00157857,0.94275,0.141945,0.736378,0.633349,0.500817,0.0445932,0.74546,0.402159,0.865624,0.236797,0.0393241,0.613241,0.833475,0.950947,0.220365,0.395336,0.043377,0.205373,0.97689,0.846173,0.335573,0.616405,0.390524,0.202118,0.934112,0.398774,0.962876,0.107245,0.666632,0.146362,0.264025,0.714266,0.288164,0.766063,0.670845,0.619223,0.879384,0.485741,0.988807,0.0875515,0.709295,0.219916,0.858312,0.5628,0.208813,0.718343,0.11942,0.51098,0.477946,0.042769,0.183881,0.350881,0.345853,0.265377,0.492907,0.4742,0.80419,0.533056,0.249785,0.629813,0.583424,0.550885,0.432563,0.0539851,0.650045,0.334434,0.326359,0.811855,0.0159856,0.620345,0.999006,0.0564133,0.0929588,0.239989,0.67251,0.744312,0.738463,0.0761991,0.62967,0.812411,0.421476,0.220907,0.107799,0.189766,0.938947,0.534432,0.174431,0.907311,0.0124632,0.568551,0.78319,0.669579,0.172462,0.0716533,0.960617,0.55008,0.774699,0.728335,0.699103,0.610898,0.148065,0.458668,0.245588,0.921461,0.442956,0.701153,0.785444,0.375676,0.44423,0.992031,0.464326,0.418081,0.151593,0.995362,0.0270787,0.617134,0.89353,0.246894,0.356849,0.43805,0.660811,0.305343,0.688091,0.857328,0.74744,0.756103,0.89557,0.384768,0.982569,0.98955,0.46776,0.981831,0.503445,0.0369717,0.326193,0.337158,0.772891,0.1253,0.0970083,0.137599,0.853696,0.788677,0.808217,0.800077,0.503606,0.784235,0.852624,0.920109,0.770826,0.521917,0.43608,0.710894,0.659446,0.390683,0.525479,0.0202022,0.554032,0.629353,0.620566,0.288339,0.510408,0.730725,0.834342,0.603537,0.162043,0.372371,0.506161,0.147609,0.694646,0.98723,0.340091,0.978852,0.0712849,0.14677,0.468424,0.189881,0.774664,0.890692,0.981852,0.014739,0.577807,0.776951,0.734832,0.655905,0.287982,0.694886,0.844409,0.0423562,0.820215,0.79694,0.856646,0.231735,0.84192,0.267089,0.458894,0.814966,0.290963,0.538146,0.186501,0.498444,0.778619,0.672479,0.0657151,0.545316,0.709175,0.185687,0.0171114,0.132101,0.563214,0.100596,0.28126,0.850047,0.481701,0.385606,0.2455,0.975206,0.243497,0.560981,0.901713,0.49736,0.206975,0.848099,0.710601,0.760911,0.633739,0.111286,0.845109,0.665493,0.43977,0.977483,0.676205,0.645936,0.382183,0.81819,0.368788,0.549067,0.604362,0.079943,0.621823,0.316925,0.0332862,0.505042,0.242044,0.211234,0.479402,0.184533,0.532856,0.147005,0.642555,0.684939,0.0580048,0.713118,0.660781,0.180104,0.586774,0.494872,0.579021,0.802347,0.480527,0.0745165,0.733985,0.484129,0.749226,0.456879,0.299494,0.370841,0.925734,0.915549,0.414897,0.611282,0.534877,0.641355,0.739018,0.275707,0.426408,0.804571,0.260104,0.797897,0.121243,0.0105254,0.151606,0.1129,0.13637,0.0232933,0.784519,0.875132,0.627198,0.453641,0.0392747,0.339158,0.241929,0.989754,0.760494,0.0527141,0.653031,0.330101,0.197944,0.601409,0.0104008,0.120328,0.624583,0.849126,0.854824,0.977126,0.759504,0.83061,0.300065,0.817782,0.332596,0.840938,0.401024,0.417308,0.249068,0.243257,0.131303,0.690311,0.15397,0.440653,0.710334,0.0563936,0.625195,0.631372,0.950402,0.723252,0.447804,0.217616,0.291406,0.0944857,0.703062,0.636008,0.0230705,0.0756446,0.450516,0.628575,0.0251153,0.668797,0.916792,0.0495422,0.65924,0.241657,0.53922,0.800087,0.549523,0.225412,0.632976,0.607372,0.629413,0.0717188,0.735295,0.774694,0.258823,0.302829,0.781797,0.0248935,0.632767,0.13735,0.820942,0.32902,0.489698,0.206915,0.612328,0.502633,0.859724,0.645424,0.503624,0.472156,0.217156,0.68898,0.94296,0.733699,0.163375,0.453465,0.0407192,0.4306,0.373311,0.437613,0.452107,0.217836,0.0828084,0.846818,0.910767,0.524455,0.514145,0.660216,0.392173,0.193232,0.44,0.656817,0.158218,0.329685,0.559227,0.99179,0.210452,0.986173,0.927961,0.50499,0.538899,0.121807,0.33589,0.685635,0.656664,0.683649,0.424497,0.809328,0.102216,0.0312944,0.502752,0.970635,0.951937,0.560946,0.0825213,0.550041,0.626467,0.897842,0.516906,0.313768,0.892968,0.721002,0.239627,0.407967,0.0195493,0.160561,0.653961,0.241543,0.102365,0.896882,0.580509,0.697041,0.125093,0.709818,0.569779,0.380602,0.0401812,0.948529,0.347662,0.92026,0.712549,0.0651973,0.121483,0.361623,0.11532,0.40485,0.765504,0.647901,0.133428,0.794753,0.67231,0.0984234,0.183337,0.234528,0.0535787,0.362018,0.485678,0.739712,0.285321,0.877617,0.00581521,0.807897,0.306356,0.296436,0.349746,0.00557965,0.187341,0.680214,0.415799,0.0634055,0.541314,0.947554,0.435291,0.556713,0.847521,0.053504,0.480511,0.16208,0.342048,0.682148,0.0582926,0.589414,0.0312829,0.849367,0.0201411,0.841091,0.609792,0.72123,0.411831,0.416135,0.983472,0.934971,0.409459,0.642991,0.960453,0.315431,0.812981,0.776036,0.713572,0.76866,0.816552,0.918829,0.0998,0.280774,0.509568,0.338666,0.784256,0.275166,0.315188,0.922718,0.694657,0.568622,0.343179,0.993123,0.490433,0.00966907,0.126663,0.773535,0.289444,0.212807,0.0250655,0.881677,0.830849,0.417837,0.525107,0.96402,0.343775,0.622981,0.825351,0.106535,0.0859056,0.383656,0.389042,0.928245,0.36844,0.102782,0.682157,0.134877,0.650026,0.682697,0.0557126,0.778881,0.999707,0.398607,0.319957,0.0284123,0.299461,0.84952,0.386191,0.877539,0.231746,0.718153,0.347822,0.637692,0.999492,0.0720216,0.797027,0.307434,0.190378,0.215364,0.717538,0.783681,0.786216,0.784096,0.682014,0.35731,0.895703,0.703622,0.319188,0.611633,0.265677,0.829765,0.473795,0.137861,0.350881,0.774992,0.32246,0.842692,0.092911,0.0792199,0.659321,0.234304,0.43071,0.17354,0.810605,0.872031,0.316548,0.65554,0.377594,0.66583,0.928505,0.120706,0.523944,0.518761,0.240045,0.118644,0.403696,0.45091,0.748174,0.625031,0.252434,0.418103,0.127571,0.308483,0.997021,0.869217,0.46702,0.485545,0.324416,0.00964117,0.628771,0.835516,0.57557,0.167488,0.725134,0.935035,0.459567,0.652503,0.334695,0.947693,0.168581,0.00609004,0.892275,0.710784,0.943035,0.917551,0.791337,0.377428,0.934077,0.764889,0.681384,0.0374499,0.694885,0.50678,0.527908,0.985952,0.88506,0.956782,0.663409,0.416013,0.351538,0.537914,0.17859,0.144186,0.36703,0.707034,0.649136,0.790109,0.592529,0.633714,0.464852,0.644879,|0.36878,0.150402,0.167386,0.835282,0.863863,0.996652,0.554193,0.434517,0.921841,0.678381,0.331363,0.724206,0.0851837,0.492301,0.821417,0.513412,0.526718,0.794208,0.400577,0.36732,0.156665,0.535642,0.235378,0.584232,0.903651,0.558948,0.0656736,0.980042,0.957251,0.830953,0.937327,0.647972,0.864271,0.15367,0.432344,0.439473,0.327548,0.0316187,0.705368,0.0820541,0.55793,0.901723,0.0312651,0.0050205,0.822544,0.484832,0.934221,0.0494487,0.117468,0.422833,0.0518486,0.523945,0.8786,0.249301,0.686172,0.339327,0.854132,0.733863,0.0944621,0.976176,0.574692,0.168317,0.562206,0.817591,0.409711,0.569995,0.925322,0.343887,0.652991,0.73861,0.596045,0.789664,0.409932,0.971122,0.640831,0.674045,0.274933,0.455013,0.43787,0.152709,0.818757,0.515066,0.113075,0.871908,0.742002,0.274119,0.460949,0.00144386,0.443782,0.890448,0.719269,0.155049,0.144817,0.414644,0.0906366,0.945843,0.263314,0.491458,0.447678,0.325325,0.777202,0.995189,0.0699824,0.752382,0.356722,0.801817,0.30037,0.299274,0.574684,0.823827,0.364716,0.155478,0.935545,0.868505,0.502255,0.971275,0.586613,0.829428,0.804653,0.181554,0.91791,0.398169,0.662238,0.827933,0.265976,0.443297,0.765453,0.858782,0.373302,0.680464,0.517871,0.303746,0.335686,0.665038,0.236224,0.559183,0.0311847,0.253001,0.923521,0.456538,0.788701,0.320964,0.239173,0.394746,0.648404,0.64342,0.10899,0.0272811,0.62304,0.839538,0.969608,0.864615,0.885207,0.396693,0.228564,0.453121,0.44582,0.182258,0.567324,0.261806,0.875565,0.630373,0.423766,0.473844,0.143886,0.110559,0.462433,0.521724,0.805106,0.122591,0.547189,0.816471,0.125888,0.183793,0.197968,0.359239,0.202689,0.209803,0.389752,0.912357,0.635896,0.309335,0.23736,0.239949,0.580553,0.517116,0.426885,0.417746,0.262727,0.0809224,0.0844095,0.630314,0.635157,0.534063,0.812556,0.158864,0.180761,0.958553,0.203809,0.940516,0.175949,0.829647,0.207772,0.148037,0.354146,0.616782,0.599679,0.603854,0.678102,0.554348,0.47162,0.412435,0.0251461,0.492504,0.654664,0.0799255,0.624846,0.132227,0.759876,0.0161626,0.86711,0.449207,0.704494,0.344931,0.0179382,0.278359,0.572854,0.632183,0.507402,0.758413,0.473692,0.0788252,0.0415696,0.818937,0.487572,0.988921,0.212672,0.415838,0.496898,0.904681,0.260993,0.394989,0.437105,0.674534,0.15036,0.934792,0.250881,0.407206,0.115381,0.489717,0.0605843,0.502036,0.930105,0.604183,0.89443,0.405788,0.623666,0.634578,0.541771,0.586656,0.975061,0.337683,0.0278084,0.740807,0.840216,0.647784,0.208878,0.49138,0.131205,0.767046,0.818414,0.106971,0.369536,0.211314,0.103361,0.165262,0.838826,0.938663,0.436652,0.183717,0.961663,0.415034,0.416422,0.632965,0.91841,0.182716,0.756084,0.656263,0.651655,0.314304,0.423985,0.88169,0.323252,0.492547,0.968302,0.307501,0.786026,0.625468,0.419605,0.0241138,0.0151285,0.129987,0.636075,0.23205,0.568439,0.406103,0.738183,0.470733,0.967336,0.00529307,0.2528,0.704878,0.594242,0.942779,0.154976,0.623086,0.894391,0.395593,0.273377,0.10835,0.454717,0.823281,0.118078,0.930545,0.582507,0.856293,0.578901,0.772824,0.0542047,0.524892,0.220898,0.991528,0.105551,0.936799,0.982687,0.765241,0.964581,0.956007,0.308022,0.736698,0.657426,0.961632,0.00705111,0.269022,0.402925,0.987867,0.686515,0.0641593,0.596075,0.0900732,0.107102,0.161819,0.321784,0.209982,0.51242,0.127379,0.173431,0.808953,0.255395,0.290842,0.483659,0.855421,0.396664,0.801652,0.406775,0.591368,0.0392755,0.373378,0.288135,0.255776,0.131617,0.241651,0.287501,0.837397,0.622328,0.938413,0.997519,0.945565,0.926726,0.73623,0.942285,0.287086,0.938705,0.0676705,0.357669,0.448167,0.816462,0.440995,0.715195,0.463381,0.702908,0.0847254,0.716032,0.76972,0.453858,0.42125,0.955148,0.126047,0.875508,0.906761,0.603034,0.389512,0.0154474,0.814484,0.697016,0.883501,0.862224,0.654393,0.664661,0.726594,0.831781,0.338605,0.489597,0.633242,0.205472,0.84005,0.795379,0.767615,0.730405,0.859483,0.204599,0.549734,0.6823,0.740561,0.611422,0.169579,0.119637,0.27097,0.0366656,0.496684,0.202059,0.946305,0.931717,0.218926,0.29271,0.732434,0.0504562,0.978937,0.637393,0.242328,0.19709,0.121446,0.829551,0.564442,0.547927,0.738715,0.843864,0.117428,0.704021,0.715675,0.742158,0.00674158,0.081568,0.160337,0.512932,0.213618,0.645282,0.149004,0.174531,0.554585,0.101149,0.217277,0.954238,0.3436,0.716461,0.941246,0.307925,0.293525,0.320246,0.929817,0.12499,0.820111,0.924804,0.905298,0.445621,0.623806,0.0227612,0.735917,0.806898,0.542388,0.218128,0.995668,0.517728,0.848358,0.974388,0.933277,0.700389,0.720231,0.586993,0.495777,0.879224,0.37597,0.580678,0.252568,0.212143,0.19316,0.138256,0.328399,0.168946,0.166072,0.527893,0.108737,0.304594,0.981964,0.415325,0.347657,0.284565,0.763682,0.833395,0.353731,0.0189878,0.716429,0.798459,0.690828,0.0487688,0.0614545,0.797716,0.950302,0.438325,0.0938213,0.603874,0.742266,0.329936,0.785798,0.27725,0.66115,0.935268,0.0618026,0.518665,0.480571,0.493249,0.0464545,0.413421,0.518909,0.920373,0.520621,0.503239,0.673942,0.510089,0.822879,0.327495,0.572758,0.472895,0.177418,0.56028,0.0728852,0.115114,0.405706,0.242669,0.730621,0.265722,0.504723,0.216117,0.190152,0.709965,0.91114,0.0971635,0.147595,0.631138,0.395962,0.544552,0.225571,0.608575,0.34088,0.241899,0.986003,0.479187,0.986577,0.484906,0.25345,0.979326,0.182438,0.490704,0.899833,0.607728,0.523654,0.203823,0.0372847,0.48802,0.380727,0.269933,0.293505,0.894863,0.286613,0.783684,0.603415,0.181415,0.82606,0.803646,0.0887591,0.0856597,0.472278,0.281092,0.113891,0.435961,0.148368,0.296919,0.596934,0.20974,0.979494,0.567322,0.712342,0.80829,0.356263,0.550526,0.73773,0.207677,0.942148,0.570175,0.889019,0.689417,0.381653,0.300907,0.899332,0.0643026,0.730736,0.154348,0.915091,0.253024,0.394773,0.701049,0.733404,0.691569,0.0855437,0.538364,0.166357,0.691019,0.474706,0.768482,0.869019,0.436329,0.155367,0.689683,0.00834477,0.306345,0.827439,0.0017699,0.584875,0.463213,0.486361,0.862692,0.155662,0.0443405,0.645928,0.89138,0.169713,0.463677,0.991397,0.262396,0.588922,0.121164,0.254081,0.348712,0.070133,0.856375,0.745978,0.185482,0.79719,0.112506,0.0873434,0.0551605,0.387106,0.499195,0.239551,0.482919,0.157264,0.272854,0.490461,0.0759507,0.960751,0.0124752,0.471299,0.0830215,0.261149,0.940133,0.751498,0.508235,0.950394,0.368844,0.201496,0.622177,0.938817,0.793636,0.660593,0.928377,0.15356,0.0272433,0.596304,0.37692,0.072954,0.254492,0.214199,0.239717,0.301235,0.259275,0.233636,0.101703,0.871403,0.726825,0.829667,0.470847,0.15732,0.295972,0.324813,0.90931,0.859379,0.422359,0.478373,0.831881,0.230154,0.446161,0.25536,0.235344,0.96988,0.413144,0.732381,0.146644,0.884592,0.389075,0.610218,0.488249,0.86424,0.739971,0.0183253,0.356023,0.473155,0.610722,0.183595,0.0772628,0.301677,0.00405258,0.170076,0.0432523,0.512611,0.361769,0.778042,0.593162,0.740432,0.685111,0.123858,0.8493,0.3288,0.227182,0.682571,0.854456,0.654543,0.762107,0.827307,0.547859,0.685337,0.210487,0.097316,0.501336,0.160647,0.314945,0.335531,0.915183,0.821404,0.418488,0.989518,0.0271233,0.142373,0.583569,0.760014,0.203948,0.0817224,0.659618,0.640627,0.213166,0.804096,0.954893,0.0576879,0.322266,0.919832,0.179874,0.10459,0.363812,0.877265,0.245597,0.720656,0.0923512,0.312985,0.82725,0.0369279,0.395516,0.0303993,0.544334,0.781758,0.660968,0.481511,0.320775,0.319804,0.503407,0.755291,0.306864,0.384122,0.619685,0.366045,0.733321,0.522824,0.534001,0.275534,0.565928,0.375683,0.996738,0.756015,0.809621,0.112857,0.495202,0.184758,0.814951,0.495135,0.696693,0.867582,0.670705,0.558872,0.824556,0.020535,0.0201326,0.909215,0.191358,0.533636,0.6748,0.389919,0.225998,0.146659,0.202216,0.390999,0.670329,0.810321,0.129305,0.310361,0.509954,0.669009,0.213832,0.574584,0.29267,0.0846764,0.497847,0.0798211,0.886226,0.993244,0.812236,0.643673,0.698067,0.962657,0.436537,0.512871,0.690631,0.588926,0.152985,0.605498,0.456215,0.388361,0.51158,0.997197,0.75343,0.693567,0.0870029,0.968022,0.278636,0.613126,0.770314,0.490047,0.30429,0.950824,0.962031,0.917262,0.359856,0.187864,0.951231,0.598314,0.242272,0.668529,0.309045,0.669286,0.111771,0.248069,0.168718,0.223336,0.763942,0.96484,0.937592,0.837468,0.836495,0.750071,0.43422,0.191639,0.367198,0.805758,0.29177,0.627506,0.775012,0.291891,0.977033,0.557338,0.981195,0.566095,0.962674,0.733505,0.0972759,0.988744,0.968906,0.683926,0.312184,0.269438,0.388811,0.725879,0.55317,0.572932,0.153849,0.217579,0.434868,0.213539,0.128367,0.114197,0.0414106,0.798921,0.848128,0.662639,0.645832,0.962205,0.822325,0.469794,0.29113,0.65405,0.895277,0.714445,0.0336428,0.646021,0.643428,0.910113,0.360594,0.55776,0.718751,0.876664,0.443157,0.0536068,0.591451,0.657501,0.906277,0.3476,0.725408,0.972813,0.284252,0.239106,0.437592,0.435315,0.0747106,0.347171,0.111513,0.449587,0.557782,0.626743,0.438803,0.826597,0.508939,0.730973,0.255394,0.628974,0.760606,0.732755,0.615937,0.517088,0.327852,0.150524,0.0207618,0.725111,0.833153,0.997904,0.055654,0.953801,0.443612,0.858948,0.0870768,0.240571,0.316466,0.841304,0.0984495,0.143728,0.979118,0.738159,0.604499,0.86282,0.569411,0.256971,0.644475,0.0972423,0.369838,0.378095,0.210851,0.826873,0.939404,0.403565,0.0740336,0.156739,0.897211,0.64427,0.392373,0.446304,|0.531869,0.644332,0.630248,0.389801,0.491139,0.202302,0.784881,0.500979,0.117212,0.356958,0.390485,0.762752,0.581062,0.232989,0.220358,0.41979,0.766725,0.329167,0.512267,0.406799,0.136994,0.450466,0.996042,0.00441855,0.688589,0.371032,0.977189,0.516701,0.0808509,0.0580997,0.91269,0.657503,0.416851,0.701668,0.439544,0.11446,0.629424,0.0949015,0.9413,0.84374,0.191292,0.575696,0.366742,0.938115,0.539822,0.131127,0.398224,0.0106966,0.113672,0.0373802,0.51166,0.0409854,0.108931,0.40833,0.476237,0.0501303,0.885146,0.0842784,0.831265,0.333552,0.554175,0.432996,0.882537,0.0396594,0.317897,0.578468,0.523259,0.438379,0.975902,0.812318,0.188873,0.90254,0.486928,0.829572,0.524109,0.624916,0.564405,0.636009,0.343718,0.788174,0.0146461,0.217592,0.575403,0.331295,0.205197,0.865817,0.996894,0.557811,0.319428,0.699843,0.0397555,0.592383,0.962527,0.364238,0.301224,0.75772,0.049873,0.625604,0.722302,0.716318,0.413512,0.109574,0.459107,0.404093,0.332242,0.567121,0.319092,0.132815,0.390325,0.417469,0.505193,0.747413,0.924669,0.957642,0.534054,0.333964,0.405602,0.0820367,0.367596,0.20357,0.672275,0.335218,0.0933042,0.89599,0.945705,0.892774,0.740083,0.784607,0.270534,0.791093,0.430158,0.975616,0.850384,0.496295,0.251358,0.317715,0.751168,0.861934,0.355119,0.649505,0.560691,0.49723,0.544198,0.157541,0.431204,0.768419,0.235963,0.139323,0.593742,0.526374,0.231362,0.408657,0.216688,0.525795,0.0204095,0.0261594,0.249409,0.496869,0.532344,0.762631,0.794706,0.612383,0.329517,0.52079,0.160059,0.409305,0.975289,0.66611,0.403522,0.595717,0.729646,0.516357,0.974593,0.90169,0.134906,0.453995,0.679102,0.982377,0.121211,0.227652,0.0820913,0.343494,0.943631,0.339334,0.0577393,0.626978,0.745416,0.30592,0.614096,0.232624,0.869218,0.828388,0.226,0.559165,0.104842,0.0203163,0.00286549,0.672785,0.84162,0.347754,0.791921,0.351083,0.162815,0.845861,0.386266,0.842187,0.806991,0.461537,0.82031,0.361399,0.107281,0.166616,0.98398,0.834066,0.0178507,0.726116,0.21612,0.343286,0.912035,0.244321,0.397142,0.785659,0.113024,0.533369,0.243263,0.386531,0.455952,0.90508,0.56997,0.44332,0.126011,0.0305816,0.0256616,0.756044,0.844511,0.998871,0.834201,0.72788,0.416232,0.215114,0.29503,0.389468,0.341646,0.915201,0.955084,0.679691,0.81614,0.107408,0.128601,0.446437,0.701753,0.634596,0.580776,0.574537,0.855298,0.898712,0.467932,0.376766,0.347983,0.00780815,0.478486,0.654431,0.644924,0.570342,0.314641,0.161358,0.321178,0.483843,0.454592,0.0406098,0.853511,0.400954,0.0368696,0.36257,0.735658,0.421448,0.733017,0.104062,0.413003,0.964016,0.465634,0.392014,0.646337,0.784132,0.70872,0.5014,0.766226,0.471478,0.323943,0.919931,0.855541,0.703013,0.383887,0.805952,0.233864,0.220431,0.740222,0.10321,0.19604,0.0123609,0.668841,0.744759,0.712805,0.877827,0.827057,0.834219,0.846011,0.651684,0.434521,0.100071,0.675682,0.24597,0.814474,0.370167,0.723888,0.479508,0.122031,0.888181,0.179719,0.28664,0.89408,0.803476,0.817837,0.0245878,0.291191,0.967202,0.216312,0.578757,0.0241379,0.307744,0.807659,0.0887579,0.0585405,0.223921,0.556344,0.74545,0.234392,0.338591,0.50855,0.473135,0.922339,0.264953,0.336427,0.585822,0.850601,0.709778,0.291479,0.9106,0.0417291,0.531407,0.636102,0.245597,0.233177,0.199146,0.123156,0.932337,0.511288,0.707398,0.541338,0.65718,0.211282,0.302629,0.171609,0.417857,0.637126,0.198217,0.886271,0.761755,0.342951,0.591185,0.466531,0.241682,0.218533,0.524602,0.568334,0.988135,0.401274,0.0856005,0.569004,0.776484,0.260725,0.725404,0.319986,0.857763,0.980086,0.799227,0.510829,0.111772,0.535232,0.628415,0.49871,0.55466,0.0861093,0.75523,0.713996,0.24323,0.742112,0.317571,0.982314,0.805816,0.20331,0.483125,0.889333,0.256122,0.445559,0.925542,0.378826,0.815228,0.530018,0.353872,0.246484,0.542882,0.92929,0.528145,0.442722,0.479678,0.603582,0.381738,0.579648,0.253706,0.284727,0.786136,0.49647,0.69844,0.670771,0.768876,0.291529,0.884073,0.796953,0.101341,0.417625,0.460751,0.80313,0.423187,0.575613,0.395032,0.250852,0.503405,0.117366,0.555108,0.747162,0.0904853,0.076031,0.386112,0.322509,0.92934,0.188584,0.351339,0.033338,0.603144,0.0622936,0.723937,0.476028,0.353205,0.996483,0.503407,0.10544,0.120614,0.839056,0.982479,0.636388,0.373042,0.726095,0.0666079,0.702232,0.381639,0.215484,0.492677,0.52288,0.70056,0.370687,0.549896,0.000507474,0.292037,0.332158,0.0870664,0.979221,0.892857,0.138641,0.975593,0.592217,0.646109,0.356993,0.981751,0.32376,0.816898,0.795012,0.323956,0.445864,0.759409,0.285662,0.0161982,0.203731,0.804303,0.402209,0.723118,0.871077,0.340427,0.056812,0.546114,0.716716,0.641137,0.253127,0.0768066,0.276558,0.243024,0.911581,0.0882079,0.566496,0.614911,0.188118,0.534554,0.352116,0.348647,0.791829,0.123585,0.01335,0.588464,0.486628,0.30678,0.520873,0.78145,0.402923,0.467182,0.773933,0.521095,0.422253,0.225555,0.269181,0.902918,0.640573,0.532398,0.698735,0.412967,0.0470074,0.327996,0.767616,0.574535,0.304639,0.938546,0.437404,0.481477,0.617646,0.0631006,0.415753,0.0129459,0.114355,0.0604386,0.642238,0.993421,0.651631,0.891818,0.571635,0.664948,0.00335461,0.760591,0.560683,0.0119136,0.476142,0.745696,0.217745,0.0973095,0.747245,0.698898,0.124929,0.968465,0.712488,0.452888,0.516658,0.274931,0.0923567,0.587308,0.188222,0.824394,0.856883,0.334255,0.355905,0.930556,0.619161,0.75069,0.565334,0.610304,0.686181,0.954225,0.692123,0.256217,0.80006,0.863356,0.207587,0.695347,0.199362,0.916821,0.348008,0.165844,0.458472,0.865453,0.742906,0.461383,0.787685,0.110399,0.103239,0.173838,0.816328,0.342082,0.2578,0.84642,0.225886,0.0164318,0.606603,0.504225,0.685686,0.864951,0.739814,0.936154,0.123611,0.182561,0.604554,0.0619404,0.769938,0.856093,0.566154,0.645348,0.306004,0.0350298,0.912072,0.027473,0.44531,0.139801,0.439163,0.983647,0.818102,0.873724,0.543536,0.368149,0.749839,0.981329,0.913738,0.572271,0.346458,0.963767,0.86401,0.548815,0.604025,0.212732,0.811276,0.31859,0.0780385,0.198174,0.454742,0.935082,0.561625,0.349959,0.807228,0.551607,0.714288,0.248707,0.62938,0.317485,0.200466,0.594501,0.497599,0.0406528,0.190286,0.155769,0.082144,0.264681,0.774742,0.504305,0.11265,0.824861,0.230559,0.145583,0.552231,0.891768,0.32485,0.148654,0.0408424,0.695542,0.646217,0.686848,0.728109,0.585109,0.026539,0.882186,0.527849,0.0293536,0.581035,0.0409623,0.175516,0.81355,0.402217,0.853058,0.325831,0.288232,0.180393,0.0233944,0.742672,0.973172,0.246529,0.325556,0.0572875,0.143226,0.377109,0.757168,0.523135,0.958138,0.545464,0.413292,0.557947,0.728071,0.268465,0.303175,0.783642,0.76971,0.400745,0.527878,0.736116,0.849937,0.301466,0.274577,0.527202,0.297325,0.0353872,0.299728,0.408838,0.194195,0.67284,0.671496,0.650919,0.262321,0.28191,0.894409,0.168455,0.229644,0.563854,0.563142,0.651691,0.274217,0.940379,0.898887,0.773839,0.685355,0.198015,0.372834,0.506913,0.662198,0.854416,0.985327,0.504578,0.835257,0.325232,0.954835,0.966877,0.22101,0.774884,0.236038,0.358536,0.790806,0.932149,0.876718,0.352409,0.61744,0.985763,0.746033,0.768705,0.60603,0.939966,0.161257,0.860231,0.0588243,0.794266,0.157268,0.828187,0.902144,0.546279,0.738209,0.804326,0.515449,0.0610834,0.653562,0.0567833,0.682436,0.498114,0.983248,0.175783,0.492503,0.906363,0.616309,0.292569,0.897434,0.0184535,0.113412,0.266481,0.00627887,0.276689,0.0530125,0.941753,0.632656,0.487955,0.718444,0.192566,0.619448,0.905376,0.0354368,0.448045,0.133161,0.856799,0.770147,0.619874,0.703261,0.0378345,0.6668,0.806064,0.299941,0.195222,0.138928,0.979576,0.685382,0.166592,0.979512,0.960529,0.808195,0.386702,0.0809886,0.144724,0.413533,0.659068,0.632849,0.0788029,0.015795,0.944555,0.325569,0.434983,0.344222,0.217492,0.58291,0.336529,0.00857306,0.131306,0.038985,0.351591,0.0754741,0.761973,0.0154935,0.822532,0.671354,0.71756,0.990595,0.513129,0.379143,0.233714,0.560663,0.84283,0.0452681,0.487507,0.333115,0.946699,0.335927,0.951558,0.301801,0.109028,0.860923,0.149033,0.892335,0.727786,0.00822026,0.714039,0.220525,0.57006,0.796233,0.522845,0.374421,0.456903,0.226241,0.779434,0.599841,0.307986,0.587523,0.0134954,0.482589,0.155297,0.996226,0.539368,0.946997,0.265816,0.00339544,0.792975,0.493178,0.41348,0.0446523,0.382099,0.0161169,0.591034,0.653234,0.304788,0.875852,0.624782,0.793885,0.662658,0.134269,0.877192,0.984083,0.28406,0.47289,0.477996,0.132277,0.193513,0.190341,0.596003,0.497945,0.850515,0.500224,0.140754,0.410167,0.290908,0.485973,0.490485,0.755139,0.884168,0.340119,0.296161,0.0686885,0.0100714,0.227121,0.433411,0.232828,0.103815,0.556189,0.236153,0.292571,0.242792,0.504973,0.479339,0.876174,0.000191569,0.671168,0.942425,0.405743,0.0973142,0.642064,0.395752,0.0875812,0.986249,0.565933,0.316621,0.542285,0.19532,0.559775,0.928293,0.107759,0.0430384,0.858128,0.82033,0.0609782,0.829092,0.663838,0.492619,0.815015,0.602756,0.530225,0.329203,0.590136,0.84539,0.251472,0.194395,0.503001,0.216361,0.211784,0.963818,0.771933,0.867176,0.869993,0.186601,0.846398,0.098711,0.197364,0.142238,0.990682,0.132972,0.921786,0.0172374,0.526949,0.422245,0.380888,0.30985,0.019317,0.937487,0.0908575,0.952608,0.484131,0.441161,0.878202,0.351887,0.940395,0.187045,0.633053,0.595831,0.431457,0.80321,0.564628,|0.731234,0.728392,0.727412,0.59553,0.757422,0.485886,0.736417,0.973676,0.83864,0.842775,0.871488,0.437185,0.146079,0.471012,0.0416691,0.94413,0.548107,0.848142,0.54664,0.710428,0.494919,0.611466,0.272742,0.248592,0.774785,0.649135,0.603841,0.609928,0.339076,0.534499,0.977789,0.271945,0.404804,0.0958824,0.10141,0.608644,0.255944,0.0492582,0.465156,0.358242,0.0966098,0.494816,0.605782,0.0427123,0.618784,0.529006,0.776302,0.182362,0.139334,0.231614,0.708271,0.473342,0.953281,0.257973,0.866446,0.330775,0.764364,0.194072,0.651223,0.342455,0.751192,0.170892,0.484607,0.808048,0.0746264,0.756625,0.392597,0.608724,0.540159,0.416365,0.752604,0.947946,0.88858,0.463205,0.71202,0.0430149,0.769718,0.275393,0.981505,0.301836,0.58682,0.921744,0.411112,0.924977,0.308658,0.746545,0.479794,0.928679,0.283794,0.188226,0.450022,0.2046,0.471109,0.746659,0.375532,0.929726,0.00565058,0.250453,0.267567,0.515524,0.424442,0.911656,0.425017,0.230512,0.677642,0.655891,0.576422,0.77139,0.224122,0.488578,0.718317,0.267001,0.782308,0.889054,0.941949,0.541035,0.475804,0.153012,0.61977,0.818352,0.907865,0.112398,0.427609,0.313921,0.451829,0.671447,0.232519,0.644578,0.00519162,0.998212,0.483827,0.628643,0.848097,0.457574,0.769725,0.727958,0.292522,0.00970286,0.817464,0.582192,0.741714,0.84248,0.29618,0.291268,0.704693,0.799069,0.886838,0.0243835,0.474413,0.920366,0.198315,0.98825,0.612645,0.552565,0.395008,0.398217,0.174557,0.347255,0.872869,0.263783,0.992358,0.589919,0.535646,0.314105,0.0797498,0.477849,0.499542,0.743921,0.264539,0.855815,0.767285,0.0797768,0.138848,0.688688,0.723637,0.801373,0.986839,0.243932,0.598268,0.690438,0.171404,0.66373,0.087342,0.819767,0.964514,0.014899,0.495342,0.945678,0.428446,0.0935969,0.17494,0.0858015,0.499692,0.231087,0.875298,0.098528,0.209096,0.252553,0.40282,0.0896128,0.272688,0.27878,0.408672,0.829257,0.941979,0.695633,0.0686884,0.266182,0.551873,0.124199,0.0451197,0.655122,0.939168,0.9791,0.501682,0.336455,0.992073,0.0930322,0.686785,0.971314,0.419375,0.793652,0.918239,0.0367889,0.636311,0.802479,0.116329,0.608568,0.276674,0.621579,0.0452749,0.674693,0.130915,0.0697696,0.357227,0.88403,0.654743,0.987804,0.652866,0.312262,0.967492,0.75688,0.793144,0.581059,0.954467,0.0627303,0.582607,0.894927,0.0965624,0.0475134,0.0465766,0.340354,0.485808,0.509513,0.580457,0.0475647,0.184511,0.829538,0.0920234,0.0954033,0.903407,0.645764,0.246386,0.865935,0.423342,0.974924,0.91976,0.520318,0.86082,0.984849,0.836079,0.291924,0.283721,0.960304,0.703695,0.467299,0.609713,0.8125,0.367419,0.377766,0.983242,0.364096,0.395374,0.492131,0.369504,0.18062,0.798376,0.0160844,0.217904,0.317418,0.170924,0.0217983,0.258821,0.330735,0.296233,0.602499,0.599091,0.824464,0.375727,0.568458,0.00573719,0.983234,0.847579,0.958437,0.710159,0.0935133,0.883806,0.260663,0.404695,0.188905,0.374681,0.555782,0.958203,0.511636,0.0738674,0.554753,0.861396,0.742895,0.435012,0.751803,0.984433,0.916149,0.0299621,0.131584,0.442828,0.421368,0.22457,0.524938,0.182725,0.263328,0.0490221,0.69791,0.683196,0.929205,0.658793,0.764988,0.951284,0.314503,0.111705,0.740365,0.967992,0.403322,0.664356,0.94606,0.540366,0.183211,0.046063,0.709457,0.857251,0.64752,0.434688,0.853309,0.832969,0.0974277,0.351211,0.844443,0.593959,0.31524,0.860651,0.47329,0.269796,0.527956,0.433048,0.514782,0.559878,0.217325,0.560056,0.395927,0.355112,0.632219,0.208692,0.267106,0.267409,0.983278,0.629615,0.0244465,0.0110999,0.311395,0.95485,0.164585,0.534394,0.497224,0.494972,0.0737505,0.583023,0.55437,0.626666,0.182799,0.881224,0.717147,0.989011,0.0847256,0.0684284,0.783132,0.919269,0.212412,0.0648439,0.165301,0.667986,0.192103,0.978485,0.838311,0.904059,0.85273,0.828666,0.294576,0.910052,0.360485,0.490445,0.848789,0.474287,0.261539,0.316237,0.559227,0.0693884,0.222501,0.975743,0.778285,0.302382,0.0701974,0.599704,0.0502453,0.407006,0.783052,0.742741,0.638598,0.368646,0.820822,0.685785,0.783892,0.540569,0.0505394,0.927624,0.805908,0.3381,0.178726,0.414976,0.854095,0.415994,0.102016,0.112029,0.944208,0.076107,0.150595,0.738975,0.660509,0.625416,0.752806,0.150778,0.237002,0.921407,0.871738,0.779972,0.238956,0.217732,0.639063,0.660474,0.797184,0.910403,0.133127,0.866923,0.576476,0.79151,0.0834322,0.94063,0.745572,0.945075,0.580999,0.412189,0.95376,0.895957,0.613567,0.253054,0.53777,0.596027,0.167182,0.515758,0.444635,0.0595376,0.726067,0.797947,0.0774896,0.573266,0.0354375,0.134565,0.236971,0.336463,0.370059,0.960005,0.41276,0.356944,0.281674,0.687024,0.0427452,0.382572,0.899671,0.975244,0.197607,0.931544,0.0249895,0.16036,0.515113,0.371437,0.409552,0.124172,0.629179,0.428082,0.972006,0.415159,0.287418,0.116796,0.792655,0.997109,0.254364,0.554847,0.837031,0.539199,0.216646,0.248253,0.811824,0.793298,0.604745,0.374463,0.14529,0.238951,0.757338,0.772229,0.666378,0.813007,0.369696,0.319376,0.562824,0.828389,0.460476,0.815961,0.594823,0.895735,0.869894,0.0376742,0.882087,0.402743,0.599424,0.316707,0.29221,0.891854,0.214321,0.899386,0.627579,0.0336886,0.181416,0.425869,0.248378,0.720628,0.12194,0.977624,0.12022,0.466186,0.210709,0.620478,0.570619,0.891484,0.484557,0.261984,0.44242,0.590266,0.443652,0.268403,0.825808,0.463513,0.615867,0.362934,0.615747,0.854836,0.573156,0.019647,0.902848,0.913636,0.763485,0.0602375,0.991883,0.640112,0.434794,0.988611,0.98571,0.20651,0.81755,0.348506,0.741165,0.737862,0.192016,0.691709,0.498271,0.877941,0.600791,0.579052,0.712563,0.495266,0.275751,0.911046,0.979536,0.786447,0.945807,0.521485,0.643307,0.0877374,0.161217,0.557024,0.616252,0.633528,0.00209093,0.415824,0.865159,0.418682,0.353312,0.311749,0.803845,0.964322,0.462681,0.119146,0.140628,0.545436,0.930452,0.261012,0.253172,0.730266,0.611736,0.647638,0.111818,0.173642,0.571676,0.782868,0.891287,0.953868,0.885557,0.209856,0.258465,0.674565,0.930257,0.366206,0.319594,0.869947,0.460313,0.846656,0.524285,0.784169,0.90348,0.381512,0.0705733,0.712266,0.930397,0.787994,0.823195,0.0126178,0.0932989,0.0140074,0.0781695,0.654741,0.689682,0.786054,0.823748,0.048321,0.497794,0.70806,0.44065,0.0823533,0.835828,0.219302,0.483894,0.453923,0.270009,0.282648,0.723538,0.78666,0.0908501,0.711576,0.643099,0.0577171,0.877481,0.40731,0.37211,0.629572,0.523482,0.0696961,0.442046,0.883486,0.193081,0.747103,0.828933,0.494483,0.844069,0.234459,0.116867,0.633378,0.827835,0.871122,0.758405,0.489511,0.40939,0.878912,0.100803,0.687481,0.233021,0.193766,0.934399,0.111274,0.39498,0.517477,0.287956,0.114617,0.321593,0.55137,0.00282323,0.319712,0.24453,0.814917,0.885946,0.896401,0.758687,0.00659317,0.222342,0.988033,0.841144,0.382699,0.636765,0.732551,0.703123,0.979607,0.839449,0.0406446,0.486933,0.498976,0.533383,0.202653,0.0389148,0.899042,0.80084,0.999337,0.557734,0.0094102,0.399358,0.741799,0.548776,0.552514,0.45631,0.282943,0.872925,0.28858,0.0857704,0.3535,0.0458162,0.595718,0.272466,0.295233,0.321487,0.141945,0.937926,0.0390142,0.539671,0.298772,0.611982,0.290141,0.403217,0.133467,0.427679,0.641545,0.657856,0.521898,0.17953,0.196528,0.224813,0.179435,0.0997958,0.905754,0.426993,0.163687,0.555913,0.431772,0.874281,0.850435,0.350667,0.766417,0.58545,0.707093,0.612696,0.889992,0.319016,0.403369,0.585574,0.965829,0.178584,0.355497,0.155482,0.897656,0.132212,0.385682,0.558311,0.969546,0.480625,0.911129,0.0536398,0.295977,0.885855,0.0194161,0.382045,0.443928,0.318686,0.797583,0.231711,0.599555,0.884733,0.585118,0.560811,0.126797,0.197908,0.191067,0.537615,0.854226,0.939713,0.262015,0.699045,0.192704,0.257201,0.943611,0.984451,0.382027,0.999796,0.226493,0.746702,0.0232636,0.346145,0.0720229,0.704559,0.53129,0.652219,0.0754467,0.730876,0.275301,0.796114,0.997139,0.83596,0.74405,0.0861937,0.527588,0.150354,0.0882109,0.00934792,0.422459,0.927798,0.753582,0.996197,0.310595,0.594595,0.664925,0.674121,0.700323,0.8552,0.149335,0.968157,0.496038,0.452565,0.425004,0.463817,0.174456,0.534674,0.397409,0.0945659,0.859236,0.0599332,0.341184,0.680566,0.692761,0.740349,0.869204,0.243956,0.576572,0.533393,0.96598,0.63344,0.852116,0.199911,0.913662,0.712218,0.217486,0.970991,0.0300474,0.816001,0.811429,0.530105,0.753095,0.0569418,0.416603,0.693183,0.527824,0.729271,0.0725199,0.751355,0.566507,0.613121,0.456531,0.988041,0.0340111,0.737123,0.366652,0.473956,0.306851,0.175961,0.699122,0.277685,0.889337,0.867567,0.536897,0.426534,0.0299777,0.828583,0.721942,0.719418,0.990335,0.831225,0.311705,0.189572,0.913987,0.616693,0.897423,0.0774426,0.66907,0.872641,0.786483,0.533769,0.0323996,0.56334,0.418804,0.334378,0.525726,0.103503,0.454286,0.353009,0.172016,0.0559376,0.568929,0.263571,0.203465,0.809981,0.231106,0.445298,0.438348,0.550866,0.356624,0.967138,0.828859,0.0973324,0.999666,0.76812,0.462349,0.0772018,0.94544,0.921318,0.335758,0.526057,0.409939,0.938459,0.790608,0.53551,0.135695,0.423285,0.920662,0.212193,0.941504,0.734218,0.837891,0.469141,0.850836,0.420245,0.456736,0.763911,0.593458,0.661029,0.967701,0.579852,0.0685655,0.385147,0.412934,0.091644,0.538861,0.206069,0.713365,0.897816,0.907341,0.576203,0.507351,0.0162545,0.166916,0.118458,0.859823,0.797922,0.717036,0.539043,0.300812,0.827013,0.801013,0.345041,|0.54224,0.768788,0.0470839,0.6983,0.0998646,0.966166,0.51061,0.609503,0.17512,0.633382,0.531414,0.366463,0.17527,0.582551,0.109503,0.939606,0.180595,0.972863,0.449555,0.914928,0.256336,0.405286,0.688926,0.68609,0.579678,0.778848,0.740946,0.848336,0.642001,0.25252,0.945173,0.23883,0.159026,0.0810369,0.939654,0.435979,0.219202,0.309649,0.0732068,0.136045,0.340251,0.722277,0.791234,0.565136,0.0340627,0.94981,0.194403,0.174037,0.374651,0.278815,0.442577,0.525615,0.504702,0.0171279,0.830934,0.157427,0.839025,0.209228,0.765387,0.368986,0.0544899,0.0400543,0.0545048,0.14422,0.274269,0.415574,0.148208,0.398274,0.125156,0.18777,0.880924,0.653992,0.670854,0.604235,0.165721,0.277829,0.958285,0.602744,0.578949,0.22091,0.734954,0.928044,0.950126,0.992799,0.289351,0.309076,0.0339218,0.483894,0.469659,0.315288,0.335967,0.215286,0.408292,0.766285,0.52191,0.175276,0.35546,0.914622,0.68548,0.935504,0.63579,0.85647,0.0223989,0.188384,0.319781,0.755766,0.975047,0.977484,0.139481,0.40725,0.335242,0.815413,0.323447,0.0414425,0.157567,0.7497,0.570366,0.463438,0.810491,0.332,0.496821,0.457329,0.835285,0.156491,0.252085,0.309236,0.928232,0.518056,0.425033,0.375551,0.921727,0.158399,0.734315,0.324073,0.734095,0.35071,0.489906,0.134727,0.792181,0.904178,0.180505,0.0752947,0.518881,0.0333691,0.299425,0.873546,0.014251,0.752124,0.105048,0.226178,0.549071,0.764338,0.169481,0.942095,0.483963,0.662869,0.440745,0.330538,0.568094,0.460152,0.846527,0.169585,0.565157,0.0915948,0.596423,0.0809048,0.399277,0.856152,0.965415,0.867931,0.996857,0.180601,0.959781,0.396656,0.36554,0.778444,0.798052,0.920901,0.0585753,0.607951,0.664403,0.282087,0.514818,0.153753,0.163782,0.551793,0.908438,0.770559,0.409865,0.0969446,0.42825,0.249269,0.22926,0.986669,0.0150626,0.811272,0.205055,0.0238023,0.495824,0.09082,0.750179,0.950653,0.195267,0.0155955,0.45865,0.650113,0.526657,0.57912,0.0611116,0.934879,0.526229,0.465192,0.700897,0.55616,0.472663,0.892418,0.45891,0.31071,0.598479,0.379763,0.232316,0.65256,0.734441,0.995807,0.628728,0.348492,0.918577,0.909019,0.997036,0.745493,0.206675,0.35416,0.170413,0.788255,0.260818,0.254484,0.625011,0.618958,0.970866,0.244437,0.889445,0.180962,0.145179,0.33624,0.418066,0.91278,0.397788,0.0877176,0.956455,0.588499,0.675354,0.105139,0.971763,0.969576,0.547067,0.819334,0.133839,0.834716,0.0811948,0.237091,0.566138,0.893333,0.315459,0.436182,0.033619,0.818252,0.0750228,0.281558,0.949897,0.216859,0.500521,0.203492,0.350306,0.825079,0.984127,0.56346,0.651759,0.408707,0.544345,0.0130101,0.757668,0.941522,0.772306,0.278251,0.484131,0.670382,0.555675,0.774436,0.199579,0.892538,0.928026,0.317467,0.37861,0.00965476,0.473978,0.246657,0.707884,0.635714,0.130416,0.168903,0.0609917,0.189639,0.451459,0.258381,0.618334,0.949279,0.066016,0.46867,0.208699,0.696063,0.873686,0.94537,0.73124,0.00628388,0.088579,0.486808,0.321567,0.575595,0.0199638,0.0393085,0.0672364,0.851343,0.487294,0.920453,0.758052,0.834275,0.521344,0.805284,0.723656,0.424041,0.60272,0.539013,0.369419,0.807322,0.42582,0.691114,0.839451,0.944193,0.619794,0.830824,0.53835,0.56739,0.833312,0.0306234,0.138401,0.310241,0.992538,0.654122,0.274801,0.405321,0.0766851,0.947736,0.141997,0.125898,0.66344,0.157343,0.690643,0.932713,0.588171,0.775144,0.465642,0.190194,0.161928,0.751707,0.0708271,0.176383,0.0320244,0.954215,0.709113,0.706627,0.0102147,0.501001,0.239867,0.447146,0.661901,0.0811973,0.537358,0.908203,0.807477,0.298585,0.942245,0.122503,0.744111,0.017181,0.32986,0.781161,0.556951,0.426452,0.21669,0.82881,0.748646,0.129114,0.789186,0.444515,0.592758,0.847226,0.451054,0.648366,0.971421,0.825945,0.0062775,0.902463,0.351728,0.654396,0.0845437,0.507182,0.900818,0.210305,0.822973,0.229725,0.970715,0.489394,0.294366,0.453898,0.302529,0.563596,0.979583,0.713806,0.431186,0.138643,0.226426,0.0870835,0.395411,0.185753,0.430335,0.0660362,0.196353,0.411775,0.377374,0.229439,0.821378,0.313578,0.12239,0.395205,0.157195,0.595203,0.647351,0.577406,0.128452,0.443586,0.264733,0.520587,0.889386,0.246833,0.474092,0.255717,0.661026,0.895527,0.351241,0.533535,0.354018,0.435515,0.584798,0.423045,0.550949,0.726534,0.580288,0.864626,0.00311613,0.436802,0.942793,0.0921176,0.336563,0.28463,0.154747,0.0946077,0.947917,0.551868,0.0587729,0.56555,0.413237,0.928971,0.524324,0.109748,0.820131,0.146242,0.125599,0.636593,0.216461,0.438006,0.0888845,0.300564,0.311394,0.722289,0.680594,0.609258,0.140038,0.442488,0.324661,0.112548,0.126834,0.654083,0.129538,0.191443,0.353033,0.985956,0.845505,0.223511,0.648428,0.452144,0.301583,0.0498068,0.191432,0.639627,0.984806,0.505515,0.320557,0.484575,0.162371,0.333323,0.731713,0.0193488,0.0460723,0.871261,0.646052,0.974479,0.791883,0.774365,0.616901,0.0772973,0.262551,0.705942,0.397685,0.488219,0.894137,0.364386,0.618872,0.230733,0.411266,0.936946,0.527514,0.310104,0.885323,0.196701,0.482971,0.638294,0.310056,0.0137194,0.591555,0.591613,0.397974,0.983925,0.0250613,0.279248,0.719026,0.304291,0.127846,0.60755,0.421152,0.935908,0.470224,0.419437,0.213149,0.03358,0.752189,0.497841,0.763313,0.0780114,0.456334,0.998798,0.775445,0.740544,0.614295,0.97537,0.676933,0.785849,0.115819,0.8671,0.892177,0.471399,0.420021,0.261436,0.557318,0.161294,0.535904,0.594433,0.233897,0.772162,0.169859,0.342391,0.690026,0.811904,0.713808,0.211324,0.960604,0.490507,0.995419,0.834562,0.762691,0.195092,0.631194,0.80921,0.479477,0.99191,0.202922,0.8187,0.0740836,0.880118,0.591176,0.220802,0.803956,0.475265,0.90579,0.782181,0.0466343,0.73448,0.167896,0.303478,0.49006,0.608458,0.54622,0.486699,0.90549,0.397281,0.297501,0.170635,0.231996,0.769137,0.51422,0.226729,0.735891,0.849777,0.698683,0.10094,0.280133,0.376119,0.260768,0.342169,0.279905,0.946466,0.542287,0.972756,0.129703,0.00223637,0.596484,0.389611,0.414548,0.519361,0.0498233,0.19796,0.294346,0.833561,0.963025,0.874479,0.692861,0.466261,0.384091,0.95811,0.0946917,0.0416245,0.256321,0.37017,0.452282,0.921721,0.75754,0.0809703,0.315057,0.735231,0.516431,0.268305,0.617898,0.888191,0.259407,0.904162,0.784938,0.395168,0.166327,0.342921,0.3548,0.0536333,0.944986,0.866538,0.876366,0.258425,0.719808,0.727878,0.490535,0.172334,0.0036459,0.413913,0.455276,0.159039,0.740078,0.183596,0.387983,0.37348,0.792407,0.0254413,0.532191,0.671135,0.648843,0.933725,0.821573,0.896595,0.683923,0.0383834,0.397598,0.908479,0.390623,0.430828,0.872649,0.235075,0.796733,0.0911725,0.836259,0.362312,0.0278035,0.721725,0.180651,0.139845,0.157781,0.342284,0.137989,0.858425,0.827344,0.497719,0.0264935,0.538652,0.402473,0.742783,0.988554,0.309709,0.528731,0.0165845,0.159645,0.594644,0.45145,0.0553042,0.569521,0.679154,0.178791,0.599769,0.537644,0.936422,0.48575,0.961792,0.972169,0.278169,0.878105,0.0219932,0.280982,0.276688,0.259568,0.0527924,0.219513,0.163636,0.128288,0.256112,0.846188,0.449887,0.712776,0.750561,0.951269,0.94204,0.168646,0.832993,0.976267,0.32364,0.720888,0.285782,0.555382,0.947991,0.174226,0.733084,0.404524,0.993295,0.0864816,0.247407,0.452002,0.280073,0.126765,0.961601,0.373039,0.549412,0.156883,0.88323,0.230693,0.638413,0.665489,0.899307,0.476512,0.8243,0.769307,0.763779,0.899789,0.557102,0.535194,0.949055,0.31854,0.91706,0.81527,0.948144,0.851585,0.129566,0.370459,0.394425,0.27932,0.27339,0.325333,0.994223,0.76236,0.84386,0.117162,0.0772916,0.678703,0.802964,0.244122,0.598693,0.700364,0.0898204,0.425274,0.221802,0.954117,0.596257,0.882374,0.532507,0.538194,0.368081,0.221924,0.578261,0.511108,0.418659,0.395886,0.839057,0.109695,0.740158,0.617594,0.0547598,0.910201,0.341031,0.617501,0.766994,0.753646,0.252377,0.238895,0.505035,0.0716217,0.625279,0.701513,0.640557,0.667793,0.692946,0.179976,0.468598,0.328035,0.199334,0.678109,0.895131,0.919316,0.899234,0.391877,0.104358,0.945519,0.962939,0.728541,0.85669,0.107177,0.351965,0.924989,0.988169,0.635751,0.0164146,0.120347,0.440657,0.749826,0.433711,0.095648,0.319531,0.154302,0.0947911,0.539671,0.677192,0.876371,0.651675,0.118715,0.78361,0.954606,0.0943426,0.221325,0.00598407,0.106898,0.770457,0.493491,0.85252,0.770857,0.173612,0.962807,0.181524,0.244872,0.836377,0.761797,0.578485,0.609832,0.134929,0.336261,0.642743,0.697659,0.579963,0.550278,0.778989,0.494969,0.523998,0.888131,0.436335,0.263552,0.40007,0.699799,0.645365,0.0914786,0.556492,0.270499,0.776435,0.876032,0.0298019,0.13835,0.520617,0.773768,0.676265,0.65004,0.341082,0.991252,0.346959,0.780814,0.64288,0.116567,0.98753,0.366636,0.381512,0.699308,0.199505,0.533116,0.967063,0.00205135,0.147155,0.5471,0.0248128,0.745524,0.932282,0.915449,0.289017,0.170746,0.963558,0.230494,0.371496,0.971433,0.876478,0.393811,0.933474,0.445621,0.90595,0.2878,0.794148,0.0934949,0.7296,0.769632,0.831357,0.295764,0.278716,0.0699648,0.658805,0.724792,0.813121,0.40515,0.401342,0.900283,0.75144,0.120787,0.908001,0.593624,0.00426477,0.214689,0.530358,0.670752,0.182844,0.0762469,0.0190478,0.455834,0.770192,0.860096,0.435966,0.149387,0.73763,0.170343,0.753551,0.632892,0.611763,0.452702,0.493967,0.952417,0.359347,0.120524,0.00915796,0.176885,0.915924,0.669625,0.103813,0.0347758,0.089952,0.108022,0.232464,|0.667049,0.893104,0.542491,0.93312,0.884581,0.00464261,0.994115,0.347891,0.976842,0.365961,0.622489,0.748553,0.677811,0.671414,0.846448,0.753204,0.795222,0.535513,0.510446,0.4565,0.735312,0.474523,0.538417,0.955833,0.204174,0.499273,0.469803,0.336466,0.784144,0.566885,0.796664,0.647775,0.538342,0.171843,0.405955,0.794658,0.0325624,0.0397012,0.863642,0.599772,0.767526,0.61093,0.83339,0.224692,0.783984,0.522436,0.319012,0.0731139,0.201859,0.285975,0.888478,0.764263,0.396709,0.971715,0.443949,0.394741,0.396717,0.25559,0.987148,0.897378,0.891273,0.461912,0.725109,0.158683,0.890966,0.588379,0.310547,0.322417,0.554799,0.394325,0.949728,0.00127435,0.160811,0.971112,0.52934,0.211276,0.077086,0.452731,0.309334,0.290874,0.978037,0.198244,0.186318,0.408332,0.516402,0.502767,0.722321,0.50062,0.256615,0.874794,0.803843,0.355115,0.327139,0.503406,0.790762,0.976067,0.0652664,0.440691,0.125351,0.555423,0.858806,0.799184,0.358317,0.883651,0.0199562,0.0675979,0.895272,0.110321,0.686215,0.965962,0.132861,0.508013,0.963531,0.298561,0.535261,0.903018,0.0988188,0.141825,0.998187,0.576599,0.553603,0.474561,0.407065,0.617001,0.0747336,0.257868,0.356988,0.998003,0.259144,0.487377,0.157464,0.336214,0.349739,0.205149,0.715402,0.628289,0.497536,0.61351,0.422847,0.469891,0.671769,0.0298514,0.953261,0.452792,0.957629,0.553746,0.615787,0.301952,0.196357,0.572294,0.650085,0.390391,0.42598,0.967679,0.771299,0.765732,0.317976,0.685295,0.588171,0.584331,0.939694,0.501771,0.0333762,0.933286,0.730319,0.483819,0.0589703,0.788181,0.162069,0.41242,0.244108,0.893253,0.142339,0.0367917,0.84672,0.270865,0.108497,0.280491,0.354596,0.39407,0.322341,0.339373,0.746682,0.842063,0.400278,0.771359,0.820353,0.156137,0.777183,0.108871,0.595661,0.348218,0.257869,0.885863,0.190321,0.379757,0.121277,0.156845,0.0243868,0.891504,0.127383,0.356079,0.343677,0.93755,0.663258,0.577747,0.820168,0.829367,0.887082,0.957649,0.148903,0.13414,0.80247,0.213822,0.110476,0.534518,0.149272,0.808905,0.542422,0.771848,0.592672,0.319792,0.220108,0.553793,0.656922,0.378582,0.725345,0.724951,0.0901209,0.719682,0.176048,0.288688,0.974294,0.45472,0.488264,0.956128,0.37294,0.770623,0.968297,0.0106287,0.820668,0.494849,0.329332,0.0533031,0.9755,0.514125,0.712177,0.52129,0.838336,0.438603,0.118244,0.257021,0.322345,0.963457,0.735762,0.0522777,0.308733,0.797878,0.816116,0.291227,0.287239,0.0833576,0.141944,0.784587,0.04021,0.0750922,0.686441,0.956608,0.561852,0.640449,0.149004,0.536274,0.0219765,0.639868,0.215341,0.753697,0.830407,7.79629e-05,0.204471,0.570556,0.163966,0.286241,0.375817,0.931468,0.0268908,0.868622,0.881869,0.969965,0.394783,0.639708,0.235989,0.0819709,0.889562,0.323284,0.0676342,0.458155,0.56558,0.522933,0.252417,0.691599,0.555468,0.724404,0.115062,0.245115,0.511296,0.819479,0.0857306,0.302269,0.0303538,0.40049,0.401229,0.23002,0.0230227,0.204454,0.0820847,0.651507,0.294745,0.547933,0.696123,0.34493,0.229903,0.99293,0.112437,0.621249,0.945416,0.706158,0.921084,0.1327,0.3768,0.513045,0.0975947,0.727181,0.903058,0.639225,0.225565,0.708454,0.153483,0.646027,0.107128,0.515107,0.0690984,0.933792,0.518621,0.6743,0.578834,0.13789,0.255843,0.974821,0.177428,0.982711,0.335957,0.639929,0.59237,0.145309,0.173954,0.645597,0.430524,0.710301,0.990668,0.68882,0.722686,0.347773,0.876546,0.718763,0.159982,0.84925,0.59773,0.012696,0.370154,0.205214,0.200462,0.0411094,0.545059,0.47192,0.399197,0.293464,0.518032,0.607256,0.183793,0.22687,0.117186,0.919016,0.0966901,0.525252,0.840687,0.623249,0.264518,0.981796,0.487947,0.997773,0.709043,0.875681,0.526417,0.349205,0.3847,0.755585,0.780146,0.692515,0.98619,0.746094,0.996084,0.920545,0.912131,0.53252,0.865322,0.218319,0.916131,0.810995,0.852919,0.806,0.752914,0.894068,0.132601,0.89161,0.713467,0.300264,0.774884,0.101879,0.0234255,0.424798,0.70162,0.167544,0.966301,0.880851,0.386997,0.124515,0.87483,0.897947,0.819009,0.244547,0.0586633,0.26923,0.586481,0.641621,0.463569,0.625454,0.376168,0.964791,0.53727,0.708425,0.0616843,0.0635992,0.235793,0.0468056,0.940516,0.849498,0.0158791,0.951991,0.596719,0.0798858,0.232775,0.914769,0.657456,0.639334,0.720915,0.13149,0.561886,0.704989,0.971867,0.672911,0.140732,0.303037,0.219773,0.551079,0.138916,0.861265,0.744526,0.1501,0.887203,0.415611,0.449875,0.0969113,0.30126,0.968093,0.515481,0.711027,0.902036,0.396363,0.906929,0.756459,0.477224,0.491009,0.511584,0.26727,0.377199,0.511697,0.996771,0.295307,0.421245,0.0131223,0.592269,0.827356,0.269976,0.032005,0.60656,0.0752791,0.650915,0.375296,0.309826,0.0724183,0.0392491,0.498193,0.676573,0.53686,0.187557,0.0845178,0.50599,0.373552,0.674904,0.499306,0.419338,0.385269,0.640686,0.543412,0.811439,0.86023,0.637483,0.359256,0.36645,0.848969,0.115813,0.301638,0.130899,0.0643355,0.155484,0.434291,0.265915,0.662981,0.136428,0.743289,0.107074,0.735193,0.171942,0.792129,0.334298,0.732877,0.307908,0.536905,0.410174,0.369109,0.693874,0.438725,0.688129,0.244896,0.800485,0.554893,0.825358,0.307039,0.555562,0.890611,0.0270174,0.648219,0.939843,0.692773,0.310366,0.531637,0.969399,0.475775,0.784705,0.0263984,0.290736,0.96474,0.476488,0.274811,0.628394,0.546795,0.656689,0.0535625,0.181961,0.758581,0.15511,0.243134,0.506754,0.564886,0.654863,0.690594,0.409666,0.388174,0.152698,0.685048,0.497962,0.0664625,0.990566,0.882647,0.0320717,0.760116,0.990533,0.919688,0.854337,0.0683475,0.521927,0.388758,0.762771,0.16811,0.287785,0.51925,0.607889,0.417382,0.718542,0.459897,0.200786,0.815014,0.842205,0.635204,0.0458688,0.344697,0.54619,0.676338,0.261697,0.391449,0.257936,0.839882,0.215182,0.833959,0.955193,0.985147,0.0617794,0.934922,0.969862,0.635831,0.332861,0.400041,0.706358,0.487043,0.71369,0.0662672,0.794468,0.483995,0.747539,0.59635,0.972426,0.586796,0.0511644,0.310062,0.73955,0.295783,0.774249,0.143083,0.463105,0.988829,0.670346,0.854045,0.334957,0.558059,0.399934,0.23591,0.0921668,0.327959,0.472984,0.256064,0.86782,0.388451,0.741778,0.361517,0.15265,0.619618,0.525446,0.729251,0.063602,0.426891,0.498025,0.755602,0.0412895,0.453039,0.388149,0.47844,0.555992,0.538948,0.122319,0.494964,0.0776163,0.0603197,0.209991,0.45954,0.334785,0.536755,0.728231,0.24516,0.626281,0.443654,0.321975,0.523305,0.273479,0.120279,0.577652,0.408119,0.229866,0.546935,0.412371,0.806428,0.75626,0.398637,0.305187,0.186345,0.198522,0.343195,0.0440416,0.423862,0.466782,0.720822,0.93964,0.511514,0.975193,0.395544,0.84938,0.301655,0.561637,0.555499,0.75149,0.698229,0.882105,0.570023,0.940254,0.573082,0.743271,0.153376,0.674603,0.763271,0.40759,0.450103,0.979548,0.940786,0.903037,0.788182,0.0470398,0.843547,0.142433,0.872978,0.580271,0.810921,0.452439,0.573833,0.316201,0.889493,0.572554,0.503122,0.707431,0.80194,0.653607,0.570461,0.0417135,0.559186,0.367184,0.618266,0.461782,0.562034,0.0670356,0.370946,0.476056,0.872774,0.31698,0.927628,0.189799,0.829391,0.710812,0.309326,0.770416,0.181319,0.122677,0.0383539,0.646101,0.736563,0.380347,0.521888,0.473433,0.863819,0.444985,0.253925,0.598583,0.969354,0.251792,0.88934,0.348878,0.671015,0.189352,0.238031,0.0907441,0.517952,0.691436,0.859927,0.0473205,0.488625,0.359569,0.460145,0.838868,0.384702,0.998727,0.166378,0.963533,0.933777,0.164834,0.494151,0.4002,0.368496,0.0261329,0.875874,0.13865,0.821783,0.798874,0.185081,0.138723,0.609613,0.698709,0.965497,0.534609,0.0620548,0.77552,0.64131,0.352345,0.360144,0.219989,0.428859,0.132134,0.369644,0.538147,0.328627,0.892796,0.500143,0.317222,0.0395804,0.937822,0.704301,0.749424,0.580684,0.761642,0.462834,0.690934,0.228662,0.121702,0.13905,0.0835833,0.710433,0.77153,0.660904,0.078207,0.394741,0.376394,0.15701,0.929303,0.224216,0.879678,0.955846,0.943957,0.640132,0.796667,0.74803,0.438742,0.708904,0.268197,0.0481125,0.844836,0.180205,0.268761,0.276425,0.34417,0.367142,0.5706,0.1912,0.0518116,0.609834,0.579443,0.32637,0.801045,0.593236,0.0152227,0.160854,0.855991,0.73867,0.926537,0.472414,0.653864,0.631165,0.941108,0.769156,0.290558,0.0981085,0.12105,0.345547,0.378766,0.169075,0.613409,0.0712813,0.659702,0.357773,0.459104,0.33297,0.559554,0.53979,0.427529,0.410278,0.0929951,0.157792,0.60054,0.699116,0.315218,0.320358,0.914875,0.829054,0.0681328,0.353407,0.810522,0.363716,0.678935,0.302134,0.414791,0.41791,0.0712402,0.504355,0.257751,0.982441,0.00278294,0.43403,0.770823,0.0123889,0.145836,0.519938,0.202383,0.847117,0.336302,0.707247,0.774957,0.439095,0.83764,0.625454,0.2338,0.493036,0.369761,0.0222151,0.987057,0.390161,0.678699,0.477642,0.479396,0.834405,0.1847,0.567286,0.703711,0.951434,0.263758,0.176116,0.730472,0.558387,0.746827,0.00793576,0.925408,0.806111,0.979056,0.588938,0.27037,0.00872052,0.154594,0.0751376,0.441157,0.86629,0.161443,0.742767,0.963867,0.454523,0.271955,0.852754,0.643524,0.885887,0.736162,0.756944,0.362916,0.947777,0.0686695,0.766024,0.0803198,0.471396,0.864044,0.928436,0.345132,0.834534,0.512482,0.817214,0.0495461,0.79454,0.298396,0.79937,0.263238,0.0251711,0.75897,0.455484,0.705383,0.555467,0.686955,0.988278,0.240721,0.284369,0.319125,0.601403,0.693054,0.455446,0.0165886,0.0535577,0.795049,0.0154433,0.325038,0.210267,|0.874732,0.504825,0.80105,0.00588,0.964875,0.331111,0.501409,0.48645,0.194109,0.909977,0.258419,0.12567,0.874369,0.780495,0.626962,0.837429,0.124655,0.87035,0.131959,0.175094,0.931359,0.309688,0.403459,0.266711,0.769233,0.272703,0.375435,0.638325,0.641688,0.373438,0.653652,0.633176,0.329205,0.781561,0.452592,0.658531,0.522166,0.495358,0.391337,0.27777,0.788737,0.646416,0.432452,0.74262,0.965503,0.979902,0.842219,0.596245,0.394244,0.209101,0.362359,0.092229,0.401235,0.817395,0.0873172,0.970369,0.831884,0.0832875,0.0116805,0.81843,0.443348,0.732134,0.528445,0.190052,0.693876,0.638876,0.501072,0.384809,0.239928,0.579739,0.931219,0.777209,0.876592,0.990478,0.0298184,0.628164,0.160899,0.893227,0.36064,0.157863,0.906715,0.523103,0.319072,0.249202,0.705672,0.358587,0.598002,0.660874,0.534865,0.711451,0.253114,0.026284,0.673257,0.0126396,0.0927657,0.364139,0.593302,0.118237,0.890315,0.515151,0.527279,0.252573,0.712317,0.193639,0.482229,0.599015,0.610517,0.485141,0.466984,0.0685149,0.634402,0.76216,0.760915,0.326563,0.666215,0.245614,0.597121,0.955129,0.801352,0.48304,0.17457,0.344395,0.223398,0.751552,0.387452,0.725046,0.799038,0.593271,0.485135,0.762575,0.0919381,0.669387,0.0725498,0.196911,0.0823564,0.949418,0.871336,0.14225,0.0927241,0.668936,0.939671,0.791095,0.919505,0.719809,0.866572,0.747894,0.879609,0.514506,0.0997504,0.66952,0.368612,0.145404,0.214049,0.243335,0.982342,0.328251,0.591954,0.171478,0.281256,0.457548,0.771518,0.166638,0.873212,0.250771,0.000178874,0.656091,0.485491,0.115102,0.0237756,0.114311,0.423706,0.206465,0.370974,0.812091,0.943809,0.11782,0.855418,0.559332,0.726947,0.17116,0.151806,0.705829,0.944451,0.407902,0.431513,0.224154,0.475622,0.501752,0.293538,0.190264,0.250817,0.39955,0.792665,0.111858,0.148535,0.0690877,0.0252912,0.130507,0.266861,0.136645,0.358419,0.010794,0.286887,0.902625,0.967604,0.896123,0.932524,0.463627,0.751486,0.941979,0.951711,0.542921,0.0512785,0.368984,0.238188,0.58957,0.774901,0.407592,0.0710368,0.0133508,0.493761,0.9447,0.041333,0.687923,0.52087,0.983531,0.778711,0.169986,0.00651067,0.222329,0.0207198,0.650772,0.117664,0.176551,0.30416,0.560617,0.376399,0.534548,0.384908,0.123245,0.813068,0.830627,0.592333,0.541725,0.980855,0.832513,0.169969,0.437962,0.00297505,0.77839,0.16599,0.249333,0.772082,0.165081,0.0305457,0.160416,0.793873,0.36608,0.888739,0.179348,0.730247,0.183066,0.285403,0.0800874,0.262235,0.994159,0.062605,0.509135,0.408038,0.148628,0.458244,0.36818,0.0782886,0.201563,0.697844,0.160515,0.116681,0.164515,0.242813,0.103893,0.40554,0.661276,0.0383482,0.0966935,0.000994027,0.173647,0.828138,0.392883,0.543893,0.753805,0.882614,0.912058,0.882809,0.180826,0.325249,0.219541,0.913903,0.89688,0.98372,0.43448,0.727616,0.483241,0.324591,0.693573,0.469043,0.228153,0.945006,0.483235,0.494525,0.594896,0.0393972,0.918742,0.27879,0.947363,0.244242,0.213301,0.812278,0.260063,0.526063,0.93732,0.962703,0.824921,0.157423,0.885839,0.795454,0.349632,0.304325,0.568234,0.419539,0.444558,0.324027,0.816017,0.499947,0.41597,0.337575,0.521948,0.334902,0.649055,0.196469,0.344132,0.447713,0.00799513,0.0102837,0.85925,0.729231,0.989976,0.405051,0.990948,0.529933,0.547038,0.49056,0.599363,0.0380722,0.163487,0.857089,0.339007,0.891488,0.769904,0.390287,0.89684,0.193642,0.0293882,0.501152,0.519425,0.485075,0.113149,0.35717,0.918567,0.682219,0.865837,0.406513,0.518066,0.345595,0.547539,0.0549112,0.564672,0.31783,0.209176,0.853604,0.868688,0.436529,0.391564,0.0708741,0.378378,0.379128,0.542981,0.197424,0.442846,0.569481,0.366981,0.505559,0.15075,0.49622,0.0305021,0.802927,0.740066,0.00328887,0.935791,0.506553,0.361145,0.985068,0.230677,0.180728,0.893458,0.80664,0.125367,0.793703,0.931242,0.932705,0.146341,0.412053,0.161466,0.559435,0.621591,0.273557,0.748148,0.422806,0.504434,0.777812,0.155582,0.799488,0.00266498,0.404557,0.591743,0.503832,0.724197,0.819033,0.975897,0.310384,0.636612,0.589373,0.453314,0.716883,0.168158,0.383552,0.20316,0.664168,0.324603,0.911813,0.701765,0.987147,0.190187,0.286719,0.354196,0.837944,0.918997,0.843407,0.0241271,0.214721,0.196236,0.644443,0.137994,0.0453862,0.973611,0.826416,0.471237,0.681675,0.722301,0.706391,0.118357,0.200412,0.263033,0.497927,0.305403,0.898206,0.795381,0.919904,0.779673,0.331902,0.395386,0.565788,0.232929,0.0784789,0.413413,0.685537,0.119893,0.990924,0.468826,0.0987545,0.45922,0.829596,0.943231,0.138381,0.124957,0.85755,0.514632,0.599505,0.81339,0.62126,0.0102735,0.435948,0.418432,0.522508,0.183062,0.312957,0.370926,0.529957,0.253283,0.0128127,0.400725,0.610012,0.247112,0.131674,0.0433792,0.299233,0.619373,0.553268,0.29521,0.786982,0.64256,0.567107,0.300337,0.426946,0.777837,0.518047,0.338718,0.412771,0.936641,0.542216,0.443125,0.451094,0.00780708,0.944428,0.199194,0.241214,0.271405,0.181333,0.135542,0.26766,0.299263,0.353846,0.735796,0.057004,0.931837,0.989284,0.738857,0.281275,0.816528,0.484805,0.884486,0.4424,0.00241423,0.532735,0.380242,0.614533,0.420562,0.216045,0.652555,0.762787,0.219301,0.968435,0.985401,0.851032,0.946362,0.518109,0.348711,0.971758,0.254932,0.715885,0.851075,0.900753,0.383408,0.18643,0.170841,0.220786,0.00768149,0.661095,0.593638,0.41098,0.458016,0.478299,0.740946,0.890367,0.967548,0.504776,0.831204,0.363425,0.813368,0.331301,0.0240309,0.184319,0.175212,0.0596758,0.0539191,0.593614,0.924785,0.476063,0.10015,0.455758,0.146332,0.827638,0.876986,0.282805,0.672653,0.635028,0.638582,0.57154,0.375081,0.251206,0.959619,0.905489,0.679187,0.754054,0.483136,0.733719,0.67326,0.159303,0.581838,0.674074,0.279031,0.213229,0.656779,0.0935741,0.718618,0.335932,0.54767,0.54544,0.229649,0.999148,0.315603,0.856167,0.155921,0.986021,0.768314,0.190691,0.863615,0.101324,0.435179,0.882097,0.970897,0.784723,0.241226,0.337057,0.725536,0.177068,0.805984,0.457834,0.109586,0.81662,0.0945673,0.142615,0.146473,0.850003,0.859531,0.982529,0.38527,0.685475,0.284184,0.899107,0.672946,0.521768,0.914913,0.367224,0.863503,0.634598,0.893549,0.932323,0.887472,0.10181,0.764002,0.15283,0.507066,0.30713,0.923873,0.216345,0.345028,0.1143,0.464409,0.54851,0.773181,0.259242,0.366761,0.876042,0.0897042,0.815939,0.494639,0.786695,0.621356,0.579742,0.707155,0.050031,0.721587,0.928851,0.089754,0.5095,0.582571,0.820445,0.357527,0.211523,0.388442,0.028633,0.08117,0.484291,0.77975,0.824213,0.428247,0.175624,0.286293,0.711988,0.873704,0.258474,0.480154,0.488845,0.693842,0.346016,0.232258,0.18498,0.80168,0.308397,0.754052,0.963233,0.433039,0.0321829,0.243132,0.193649,0.300649,0.152115,0.570709,0.28732,0.693856,0.492454,0.455131,0.628794,0.451529,0.541156,0.385191,0.542078,0.0564221,0.292742,0.0514166,0.949032,0.534617,0.516546,0.783375,0.626375,0.886412,0.713018,0.77645,0.165586,0.410037,0.247021,0.636534,0.696631,0.693048,0.484331,0.449172,0.863448,0.120606,0.463878,0.890616,0.931669,0.412159,0.671597,0.136904,0.587303,0.807469,0.704518,0.430382,0.816514,0.267071,0.997119,0.16856,0.663079,0.78949,0.569283,0.513782,0.467491,0.847959,0.555084,0.231629,0.577591,0.0250744,0.043197,0.839201,0.609647,0.530153,0.0632042,0.763701,0.684295,0.758953,0.492684,0.626098,0.645723,0.411133,0.925613,0.525208,0.14775,0.0329435,0.0946518,0.638445,0.839595,0.114999,0.525779,0.575702,0.893635,0.548821,0.618519,0.285878,0.779443,0.805559,0.0563732,0.468842,0.0199167,0.521048,0.756908,0.632114,0.38798,0.978566,0.500627,0.240872,0.970955,0.635111,0.581666,0.40116,0.592856,0.396116,0.349225,0.499876,0.0854586,0.663306,0.9692,0.760917,0.160111,0.657407,0.873237,0.952259,0.184313,0.125307,0.968785,0.383101,0.720805,0.915616,0.698868,0.14807,0.721623,0.0401028,0.658443,0.0720754,0.985354,0.622793,0.482668,0.468664,0.192101,0.193169,0.836499,0.704581,0.924778,0.268123,0.872545,0.604751,0.388372,0.0927521,0.150791,0.189313,0.0163435,0.931044,0.172931,0.982721,0.654732,0.563092,0.143728,0.440444,0.893774,0.245209,0.200825,0.80922,0.413268,0.965069,0.890451,0.846593,0.0179935,0.439259,0.280301,0.170834,0.794364,0.239468,0.326827,0.223564,0.754874,0.431364,0.29931,0.648715,0.723117,0.882521,0.405596,0.730193,0.579854,0.441677,0.140086,0.55575,0.327282,0.873991,0.179819,0.708166,0.882137,0.659186,0.617345,0.816598,0.969223,0.757255,0.603103,0.0441845,0.358275,0.641715,0.701178,0.69353,0.873878,0.180875,0.121212,0.91365,0.754443,0.117212,0.051572,0.691501,0.0773954,0.252459,0.977135,0.123887,0.47896,0.528961,0.26962,0.683278,0.978112,0.429507,0.223671,0.0409869,0.558304,0.0767556,0.892132,0.450204,0.153302,0.353864,0.359026,0.864564,0.590519,0.916803,0.622593,0.891882,0.801744,0.448218,0.523717,0.998997,0.822682,0.433851,0.60858,0.227642,0.545633,0.907498,0.96613,0.835756,0.210893,0.79617,0.18751,0.132561,0.495585,0.310751,0.316689,0.00190377,0.758347,0.829689,0.0711427,0.282094,0.228036,0.904727,0.114101,0.387752,0.507775,0.942107,0.473732,0.605693,0.949424,0.176462,0.358843,0.625684,0.386787,0.952649,0.806506,0.641567,0.0752921,0.648526,0.312642,0.084472,0.441005,0.0534048,0.420311,0.255527,0.331993,0.592588,0.331013,0.162732,0.767744,0.500786,0.236257,0.744542,0.461398,0.911311,0.927137,0.31194,0.143176,0.189819,|0.159829,0.80896,0.0573664,0.487963,0.970965,0.387833,0.863967,0.728605,0.862092,0.649567,0.179271,0.549847,0.170856,0.840608,0.339222,0.526036,0.445404,0.539048,0.297743,0.727622,0.929646,0.443835,0.640119,0.0654336,0.952961,0.584657,0.141491,0.421449,0.299936,0.529012,0.116028,0.26173,0.757518,0.0414596,0.514634,0.772969,0.792597,0.910866,0.661194,0.0698614,0.795319,0.312132,0.241472,0.249073,0.357704,0.805571,0.596064,0.827411,0.463166,0.460323,0.607338,0.965697,0.383431,0.337591,0.497371,0.994365,0.466196,0.262315,0.2483,0.359441,0.657994,0.799977,0.151469,0.217632,0.167274,0.075563,0.174794,0.745656,0.256855,0.829244,0.384435,0.0565999,0.472518,0.912834,0.588239,0.527903,0.509262,0.308255,0.178959,0.114127,0.546656,0.876297,0.745896,0.594494,0.633501,0.0298437,0.29723,0.0565631,0.707546,0.674542,0.270428,0.322989,0.487314,0.582831,0.0869788,0.0770651,0.0644239,0.552405,0.604156,0.587285,0.577656,0.491443,0.943803,0.803961,0.820492,0.443633,0.2859,0.252495,0.316746,0.756431,0.957924,0.420288,0.168389,0.795761,0.855232,0.159271,0.437743,0.478458,0.943091,0.247904,0.106726,0.357809,0.725742,0.930025,0.912619,0.530868,0.0590378,0.247875,0.0912927,0.719654,0.315145,0.351979,0.860118,0.441783,0.466358,0.358169,0.305282,0.306439,0.562702,0.207869,0.84429,0.137554,0.799973,0.280248,0.672956,0.461354,0.742963,0.699166,0.367701,0.587105,0.708802,0.937198,0.31106,0.903291,0.909218,0.481213,0.270327,0.0758564,0.617105,0.293916,0.572166,0.659003,0.73026,0.976625,0.0907942,0.910194,0.103373,0.336078,0.907373,0.28695,0.433712,0.295789,0.889836,0.848272,0.154144,0.174015,0.320332,0.756875,0.11437,0.530943,0.168424,0.435961,0.265334,0.282642,0.158836,0.425451,0.763464,0.457391,0.929474,0.239227,0.787366,0.927485,0.101501,0.385451,0.474996,0.116582,0.68331,0.99065,0.414984,0.243991,0.664465,0.333565,0.224283,0.072326,0.370737,0.926197,0.372582,0.886187,0.350956,0.305727,0.929452,0.499513,0.22289,0.282451,0.714448,0.500346,0.7751,0.936293,0.453203,0.598667,0.542616,0.0322941,0.690163,0.601556,0.651446,0.872368,0.217825,0.0863974,0.62482,0.597319,0.777861,0.239133,0.250852,0.64947,0.840319,0.295589,0.733582,0.608147,0.643176,0.495078,0.0057047,0.80681,0.670353,0.819373,0.919543,0.247732,0.579664,0.248686,0.105061,0.439815,0.910806,0.299323,0.801416,0.258998,0.58812,0.0364436,0.792999,0.671142,0.499333,0.837552,0.160108,0.358472,0.25411,0.223954,0.00263625,0.989698,0.784249,0.100764,0.823245,0.66399,0.953234,0.138522,0.185541,0.800099,0.161434,0.698748,0.0445867,0.715553,0.46675,0.305334,0.0526655,0.405537,0.76257,0.40967,0.0314907,0.870425,0.0109442,0.586056,0.644603,0.833472,0.99722,0.859329,0.732049,0.186525,0.517229,0.439594,0.720982,0.285631,0.40817,0.288208,0.417428,0.462827,0.225811,0.602547,0.358821,0.830487,0.959886,0.406968,0.085978,0.0733466,0.20124,0.125455,0.40085,0.765273,0.854136,0.719644,0.275605,0.25405,0.692593,0.785043,0.362147,0.345473,0.804995,0.637194,0.331514,0.0706939,0.838315,0.779916,0.932016,0.484165,0.872037,0.722311,0.199081,0.928501,0.46267,0.945423,0.990289,0.839525,0.709435,0.175814,0.913713,0.290893,0.787634,0.923738,0.149622,0.367308,0.363915,0.421779,0.156088,0.789996,0.684985,0.30144,0.589517,0.616409,0.626412,0.653418,0.766474,0.90862,0.415477,0.909193,0.410169,0.438758,0.799736,0.495487,0.888631,0.230137,0.573393,0.344187,0.785747,0.958052,0.960928,0.918784,0.889624,0.0466258,0.675089,0.99715,0.536775,0.803084,0.593397,0.15928,0.80358,0.284806,0.375307,0.548096,0.896543,0.329553,0.499698,0.163948,0.221487,0.227363,0.339642,0.234963,0.944022,0.641379,0.114115,0.444006,0.932841,0.98501,0.656494,0.292987,0.861518,0.181174,0.0885178,0.0827262,0.900218,0.492726,0.930715,0.751561,0.582405,0.738041,0.972393,0.0510667,0.463694,0.0213007,0.142535,0.95369,0.998572,0.606655,0.939604,0.668301,0.81693,0.637856,0.849387,0.0283884,0.207837,0.0469132,0.445242,0.310191,0.218723,0.376644,0.811942,0.592712,0.32197,0.184206,0.0124072,0.203242,0.975615,0.190218,0.492504,0.461155,0.616109,0.260653,0.00475621,0.028894,0.158898,0.207622,0.267995,0.116243,0.769134,0.063426,0.206556,0.565739,0.723078,0.531523,0.213861,0.109253,0.177213,0.0672694,0.936192,0.341068,0.28663,0.202192,0.224491,0.744672,0.259207,0.293579,0.328736,0.152202,0.681299,0.637685,0.600133,0.474333,0.898517,0.834261,0.381274,0.815106,0.179514,0.140782,0.88873,0.362028,0.671913,0.625123,0.276141,0.427451,0.183645,0.883732,0.94956,0.405138,0.779128,0.292971,0.732947,0.434201,0.278283,0.0489275,0.583766,0.305812,0.200254,0.406085,0.873916,0.876314,0.281325,0.309253,0.368885,0.790949,0.147314,0.507281,0.50419,0.727358,0.992435,0.0173662,0.562481,0.983111,0.334223,0.675244,0.0178063,0.535868,0.361858,0.131689,0.28261,0.37014,0.614018,0.893875,0.562379,0.247385,0.990895,0.613985,0.816949,0.352932,0.580442,0.111777,0.892353,0.592132,0.624238,0.542375,0.182718,0.563351,0.51726,0.569174,0.735566,0.0705754,0.11875,0.0456616,0.757241,0.171864,0.368672,0.217287,0.535928,0.838604,0.178883,0.21308,0.53932,0.24134,0.474307,0.677922,0.840064,0.0936823,0.0789593,0.0564045,0.748087,0.66617,0.502917,0.216923,0.123778,0.58136,0.639957,0.364756,0.981226,0.0998681,0.730733,0.459689,0.485488,0.0865231,0.793134,0.869662,0.652388,0.342508,0.452227,0.417593,0.864546,0.894837,0.131003,0.440402,0.500552,0.323038,0.98104,0.0535197,0.730622,0.604866,0.344702,0.864173,0.843147,0.497455,0.866933,0.379095,0.553021,0.794401,0.211956,0.511731,0.231616,0.351772,0.512043,0.309237,0.0624096,0.135035,0.554512,0.842751,0.106086,0.614046,0.765619,0.872343,0.0123046,0.382808,0.574383,0.0201136,0.987101,0.432783,0.381193,0.444357,0.854326,0.88998,0.389289,0.224281,0.0847113,0.896235,0.861883,0.74784,0.0625736,0.592177,0.297758,0.489646,0.247534,0.602031,0.342385,0.528734,0.508438,0.878721,0.121751,0.455957,0.388369,0.325605,0.513787,0.650054,0.0680898,0.115689,0.190074,0.404695,0.76163,0.938811,0.104931,0.317586,0.214364,0.774204,0.61087,0.664223,0.188163,0.649971,0.354888,0.108061,0.407749,0.367093,0.954613,0.738931,0.334845,0.472088,0.887612,0.735813,0.888278,0.0503405,0.58009,0.957885,0.553623,0.119102,0.442151,0.460436,0.995376,0.0111202,0.403181,0.323288,0.788038,0.672009,0.89821,0.483654,0.472891,0.105555,0.703856,0.704107,0.225715,0.210899,0.790626,0.0892709,0.320362,0.522549,0.0968389,0.816651,0.940155,0.251136,0.269572,0.0629402,0.384917,0.495867,0.374065,0.188192,0.439492,0.384523,0.492902,0.441295,0.604075,0.629243,0.0938521,0.567422,0.314215,0.969369,0.528197,0.0341386,0.0787396,0.747011,0.348618,0.26536,0.240718,0.472313,0.757193,0.992031,0.99516,0.691914,0.20473,0.795408,0.323885,0.312814,0.192142,0.98115,0.300263,0.158078,0.817678,0.990581,0.356489,0.149793,0.960971,0.477978,0.858218,0.167214,0.314433,0.993711,0.932669,0.561888,0.700121,0.500867,0.374526,0.764433,0.93137,0.962962,0.882311,0.969829,0.108544,0.611892,0.796923,0.444785,0.132599,0.106131,0.122945,0.220397,0.523658,0.228872,0.0976396,0.918033,0.0969192,0.755766,0.399208,0.400969,0.392716,0.436464,0.134849,0.112753,0.925993,0.610264,0.298663,0.919016,0.384013,0.637693,0.887531,0.368068,0.46849,0.494438,0.989411,0.682117,0.692633,0.898146,0.108949,0.028701,0.887382,0.296136,0.787321,0.0151572,0.315258,0.694671,0.974185,0.684652,0.730477,0.722793,0.262652,0.886639,0.0081324,0.412535,0.965689,0.418296,0.854236,0.271927,0.526275,0.811877,0.409148,0.135184,0.138462,0.934689,0.867688,0.311904,0.475196,0.955522,0.103011,0.351587,0.127802,0.551544,0.877714,0.52573,0.0972787,0.456123,0.527551,0.671306,0.188549,0.564605,0.366368,0.780803,0.908786,0.18448,0.638714,0.525051,0.908956,0.784932,0.309356,0.382103,0.0195644,0.304517,0.0632493,0.495169,0.332102,0.574943,0.603276,0.687833,0.743674,0.299033,0.343536,0.541761,0.706011,0.930629,0.106474,0.140848,0.87161,0.65357,0.25889,0.186702,0.985901,0.757706,0.851264,0.341803,0.203943,0.599451,0.379904,0.271254,0.508303,0.493324,0.180474,0.172569,0.148556,0.946888,0.269812,0.0424006,0.976513,0.983417,0.463973,0.157942,0.191312,0.121159,0.924357,0.358517,0.682003,0.134783,0.272816,0.758918,0.706218,0.0608069,0.42177,0.335416,0.810434,0.607829,0.777563,0.165954,0.959434,0.105508,0.582859,0.88975,0.299501,0.49292,0.277173,0.326924,0.835415,0.222496,0.980475,0.767417,0.766171,0.805379,0.466633,0.679381,0.800702,0.100922,0.752158,0.166118,0.0656906,0.326936,0.995705,0.816415,0.0907485,0.700759,0.353902,0.622343,0.464924,0.834698,0.755041,0.310263,0.562903,0.154808,0.510798,0.779389,0.00691718,0.660208,0.44102,0.0106486,0.379188,0.325009,0.553512,0.962127,0.0519298,0.365095,0.646992,0.963843,0.939742,0.441277,0.790016,0.802075,0.012976,0.378615,0.412433,0.689303,0.998925,0.622871,0.892375,0.556009,0.220482,0.937291,0.614911,0.745952,0.784079,0.701174,0.300513,0.132415,0.327991,0.391359,0.488318,0.652075,0.305735,0.665167,0.567056,0.210876,0.235376,0.0207145,0.33854,0.395004,0.0102506,0.295678,0.85839,0.522833,0.84792,0.759521,0.406972,0.842832,0.817874,0.257332,0.77731,0.476865,0.460263,0.648556,0.00532693,0.336421,0.0592493,0.733903,0.0766724,0.653156,0.047973,0.511304,0.892081,0.530652,0.47928,0.734202,|0.144248,0.507134,0.585468,0.163238,0.746036,0.844503,0.527255,0.301235,0.08202,0.63215,0.165884,0.155928,0.141347,0.325265,0.759072,0.930559,0.811388,0.566087,0.47524,0.817839,0.92178,0.216683,0.12739,0.915957,0.233487,0.30651,0.661162,0.265509,0.404665,0.642743,0.528137,0.576428,0.506632,0.0645658,0.557344,0.342672,0.946997,0.766169,0.556917,0.0125103,0.299152,0.485625,0.0642681,0.764328,0.510472,0.756545,0.771653,0.296082,0.485886,0.123854,0.706551,0.107954,0.74983,0.32336,0.780131,0.746019,0.7647,0.717663,0.143501,0.505206,0.17317,0.682629,0.359874,0.548955,0.777253,0.599682,0.0717159,0.414356,0.83459,0.331771,0.867729,0.588643,0.791076,0.389382,0.302247,0.925951,0.871475,0.915095,0.659092,0.901315,0.229388,0.977631,0.585809,0.195919,0.79904,0.411796,0.0473455,0.216349,0.241656,0.668007,0.1671,0.863909,0.685585,0.261978,0.88654,0.19124,0.527415,0.286279,0.906243,0.0884238,0.575538,0.024481,0.0208408,0.219347,0.753107,0.20862,0.0395774,0.135097,0.0760064,0.642587,0.243353,0.797298,0.774554,0.841729,0.784891,0.803407,0.796909,0.0784366,0.00421095,0.407041,0.965867,0.556007,0.594434,0.76711,0.810402,0.976895,0.264666,0.645249,0.468356,0.78745,0.842418,0.473893,0.286389,0.85648,0.196225,0.0287623,0.470596,0.359437,0.662347,0.13006,0.226679,0.0701085,0.808178,0.5315,0.66567,0.688357,0.886036,0.767614,0.570213,0.154514,0.429194,0.658516,0.795616,0.728145,0.898699,0.391544,0.068734,0.217778,0.91587,0.433479,0.753936,0.219396,0.265772,0.0116015,0.0974156,0.0042541,0.903178,0.893696,0.408139,0.0505916,0.583913,0.0545753,0.668675,0.579134,0.831362,0.930489,0.835058,0.842351,0.48902,0.367573,0.196844,0.347651,0.184824,0.270512,0.891658,0.468181,0.288617,0.761728,0.877178,0.6509,0.0230103,0.888964,0.139776,0.335247,0.121733,0.331635,0.338383,0.824407,0.904904,0.00696504,0.416311,0.276472,0.0345226,0.810922,0.933447,0.798578,0.0589455,0.0731944,0.577173,0.0306947,0.900978,0.572081,0.944941,0.792858,0.992326,0.162266,0.563507,0.356166,0.834327,0.40991,0.600739,0.195669,0.285451,0.679126,0.322887,0.389323,0.450059,0.673514,0.721949,0.371213,0.035707,0.727212,0.739452,0.166389,0.930597,0.893838,0.846807,0.613742,0.924572,0.298614,0.720139,0.636268,0.574039,0.100374,0.79466,0.504227,0.652409,0.442842,0.22014,0.800752,0.116344,0.903123,0.13143,0.935007,0.513975,0.775514,0.518214,0.235049,0.0419888,0.134105,0.164278,0.812148,0.144313,0.744852,0.205409,0.353034,0.579496,0.86067,0.863319,0.815635,0.481057,0.219405,0.12551,0.808025,0.493058,0.0850832,0.098121,0.079689,0.563189,0.919147,0.87479,0.515143,0.587838,0.430995,0.155396,0.311296,0.0895869,0.803496,0.777468,0.713575,0.11502,0.192851,0.247961,0.0258484,0.787181,0.632018,0.125116,0.584433,0.86374,0.100725,0.871502,0.134107,0.523401,0.183679,0.995199,0.477248,0.90516,0.73625,0.367411,0.58054,0.27218,0.188022,0.605829,0.998786,0.539982,0.666678,0.0791669,0.344212,0.475046,0.0664812,0.498127,0.739777,0.150055,0.630553,0.442804,0.175937,0.279813,0.447986,0.583945,0.758784,0.637671,0.499544,0.877684,0.321783,0.36919,0.173373,0.8874,0.00754607,0.359613,0.605021,0.235389,0.501458,0.48289,0.395431,0.770866,0.991384,0.905255,0.432013,0.228853,0.752054,0.435125,0.882077,0.162336,0.496111,0.247382,0.0886147,0.859706,0.861382,0.607124,0.422022,0.338806,0.896451,0.529292,0.367552,0.609559,0.00438529,0.50865,0.0691497,0.148267,0.311675,0.315911,0.14333,0.992539,0.72479,0.532267,0.681457,0.630661,0.379604,0.9449,0.531481,0.170928,0.963937,0.249541,0.530944,0.639767,0.256226,0.188353,0.0144706,0.808288,0.653996,0.193602,0.0437006,0.251197,0.664366,0.0139025,0.0762236,0.435372,0.236749,0.0919906,0.0699847,0.291916,0.723114,0.232068,0.143112,0.798358,0.35341,0.822649,0.611995,0.689601,0.887782,0.142858,0.529565,0.814228,0.80031,0.355485,0.876385,0.0222692,0.815517,0.237092,0.886713,0.0343243,0.787876,0.229407,0.157649,0.508278,0.166409,0.168082,0.12382,0.727341,0.220249,0.518152,0.631092,0.180881,0.76277,0.117548,0.32476,0.680972,0.373065,0.70571,0.630117,0.65876,0.116555,0.830634,0.828386,0.62919,0.729441,0.342836,0.388191,0.233697,0.803943,0.148352,0.3063,0.970088,0.761272,0.361525,0.665038,0.17832,0.844733,0.287643,0.647584,0.605633,0.421137,0.400632,0.345394,0.972784,0.944722,0.645589,0.200168,0.0620661,0.084063,0.750401,0.0133093,0.0477006,0.48742,0.623936,0.980921,0.0084793,0.859476,0.348018,0.870576,0.0258037,0.651605,0.779503,0.136868,0.234579,0.0910358,0.992996,0.0462251,0.00392717,0.873992,0.895783,0.252569,0.120407,0.254868,0.550784,0.767245,0.0764055,0.326939,0.772726,0.761685,0.538007,0.408512,0.883754,0.049248,0.273064,0.0909966,0.62753,0.258902,0.121547,0.775875,0.389453,0.35471,0.515901,0.384106,0.603511,0.0640591,0.0600601,0.74313,0.301815,0.680804,0.86284,0.686307,0.558433,0.44805,0.593857,0.401698,0.0864028,0.67192,0.2326,0.0817232,0.811445,0.317086,0.222385,0.542717,0.448156,0.52678,0.494029,0.980169,0.382328,0.804011,0.697162,0.93239,0.841512,0.0392877,0.227428,0.435839,0.190142,0.452811,0.938557,0.589493,0.051617,0.727921,0.745352,0.35303,0.700565,0.98749,0.333631,0.700324,0.659925,0.751463,0.735567,0.301911,0.613799,0.88031,0.44387,0.545894,0.988934,0.230658,0.320061,0.100775,0.844329,0.618655,0.728687,0.305934,0.962799,0.528061,0.852926,0.610645,0.68903,0.738445,0.218284,0.185618,0.611816,0.913009,0.861284,0.0862142,0.297128,0.982005,0.764453,0.422847,0.0697333,0.892819,0.642212,0.169767,0.734552,0.448185,0.720717,0.526985,0.713269,0.893941,0.820937,0.0282946,0.940158,0.742425,0.209068,0.0911376,0.886662,0.375393,0.230843,0.868605,0.745691,0.86591,0.416389,0.577163,0.0845055,0.415726,0.254166,0.965426,0.0949401,0.914962,0.346441,0.999533,0.955571,0.160985,0.545172,0.513695,0.403339,0.0270588,0.431444,0.716016,0.952041,0.813856,0.644863,0.00481063,0.697973,0.800204,0.201634,0.869069,0.073262,0.156304,0.691108,0.713973,0.209551,0.702798,0.536163,0.131322,0.248265,0.217016,0.503711,0.435965,0.535103,0.177626,0.27487,0.78793,0.452664,0.223664,0.676975,0.0513898,0.885075,0.79489,0.722265,0.610969,0.360797,0.982866,0.532707,0.60942,0.470738,0.858007,0.467114,0.965701,0.678953,0.237756,0.107678,0.0317335,0.659303,0.1813,0.36193,0.419134,0.922511,0.902978,0.849863,0.648685,0.174076,0.159264,0.170718,0.343366,0.269865,0.939732,0.0103279,0.847518,0.716887,0.810342,0.407156,0.0437629,0.735916,0.176093,0.63561,0.00323409,0.491383,0.182013,0.3475,0.635049,0.404797,0.0403231,0.571489,0.331071,0.621537,0.313037,0.0877566,0.588422,0.589495,0.801305,0.655719,0.85602,0.141764,0.450773,0.400702,0.581669,0.346987,0.0223879,0.397506,0.465052,0.788525,0.531104,0.917306,0.0257031,0.3483,0.387445,0.930856,0.575767,0.0208838,0.39865,0.313626,0.574938,0.211418,0.630074,0.576393,0.105476,0.861322,0.317882,0.0695233,0.917189,0.301986,0.0697739,0.709519,0.178545,0.0242178,0.538942,0.891973,0.493688,0.181238,0.787162,0.127623,0.868523,0.115734,0.910519,0.497647,0.505508,0.296742,0.618322,0.62249,0.892968,0.0307784,0.453971,0.694018,0.720428,0.44867,0.803334,0.341066,0.423098,0.893777,0.439599,0.73381,0.608934,0.556749,0.218328,0.178442,0.433368,0.0654554,0.085201,0.468647,0.832224,0.395534,0.97188,0.718974,0.0779219,0.210474,0.283417,0.922376,0.378436,0.657355,0.522012,0.810214,0.113966,0.569437,0.897891,0.280342,0.817349,0.771267,0.330965,0.79831,0.0501608,0.630551,0.0824631,0.0894627,0.606502,0.513602,0.0895281,0.338883,0.821165,0.341336,0.316041,0.43288,0.289861,0.281698,0.000872374,0.400853,0.310293,0.854054,0.285979,0.204413,0.682553,0.563862,0.548517,0.710054,0.806523,0.224016,0.855034,0.536615,0.938246,0.195332,0.54515,0.473952,0.515521,0.670495,0.514419,0.657255,0.0173666,0.155248,0.816063,0.159353,0.393793,0.994606,0.635526,0.404432,0.337053,0.517648,0.521878,0.909393,0.645864,0.785791,0.616561,0.744177,0.19815,0.279759,0.334472,0.692749,0.665282,0.0431311,0.791801,0.292951,0.17812,0.462643,0.644128,0.610179,0.817925,0.668239,0.272503,0.239446,0.515936,0.736001,0.494013,0.482462,0.128035,0.440871,0.823127,0.268541,0.790681,0.462032,0.0642309,0.475588,0.78731,0.0673711,0.55892,0.332836,0.77608,0.676926,0.182641,0.598936,0.618736,0.163744,0.658853,0.659038,0.489129,0.596752,0.276616,0.119806,0.489866,0.889161,0.15884,0.1232,0.894672,0.141733,0.604159,0.631545,0.225826,0.817409,0.553243,0.766484,0.653894,0.209678,0.994953,0.708328,0.0224215,0.131707,0.0315539,0.900655,0.00916833,0.992614,0.938285,0.795792,0.309969,0.791445,0.377068,0.925377,0.622084,0.0362555,0.229499,0.696489,0.108684,0.499851,0.188154,0.933597,0.565454,0.39914,0.726572,0.832835,0.0618696,0.241557,0.885837,0.370616,0.37711,0.238439,0.318293,0.486278,0.508369,0.97598,0.646933,0.995365,0.147068,0.489349,0.54155,0.899174,0.866318,0.965543,0.306561,0.756717,0.0719933,0.842637,0.942847,0.891217,0.0222125,0.665005,0.778376,0.0374799,0.691598,0.958853,0.903192,0.654935,0.989371,0.979872,0.2812,0.295907,0.663785,0.557859,0.127554,0.623622,0.967436,0.477386,0.444032,0.894309,0.451975,0.304653,0.611335,0.201411,0.893353,0.555927,0.716905,0.94625,0.109475,0.938912,0.0727948,0.513307,0.755822,0.533786,0.650594,0.179278,0.133439,0.245484,0.865733,|0.00709343,0.744081,0.807143,0.793547,0.391726,0.00869375,0.959392,0.511748,0.6627,0.745485,0.0548842,0.118652,0.293089,0.795798,0.509845,0.475762,0.227191,0.47672,0.436023,0.71985,0.553285,0.598854,0.205608,0.400275,0.170259,0.460421,0.720045,0.747827,0.0283113,0.71864,0.779881,0.335182,0.408458,0.112764,0.0252166,0.421505,0.451733,0.425257,0.341813,0.534677,0.593888,0.971208,0.466143,0.675351,0.581587,0.789848,0.447208,0.343297,0.850375,0.715644,0.769623,0.242638,0.399567,0.375133,0.961801,0.147729,0.83732,0.723493,0.763822,0.510461,0.630366,0.728782,0.56822,0.483382,0.866381,0.00575793,0.444131,0.136355,0.32661,0.111593,0.0661498,0.0656087,0.405037,0.886319,0.269542,0.617628,0.0593801,0.660284,0.0788606,0.187362,0.237749,0.841976,0.0167454,0.837838,0.222119,0.913766,0.452592,0.324298,0.321795,0.579955,0.600292,0.887959,0.575511,0.690073,0.0732197,0.495397,0.0378692,0.790717,0.195381,0.548645,0.908954,0.17825,0.167926,0.636414,0.298847,0.482454,0.854911,0.326111,0.121552,0.645551,0.768358,0.368663,0.23239,0.299822,0.580884,0.528423,0.222917,0.0705007,0.135729,0.0782892,0.516408,0.924195,0.947421,0.202134,0.5575,0.167244,0.0931616,0.958977,0.347174,0.854699,0.677189,0.786815,0.574245,0.468591,0.831668,0.607014,0.937407,0.959093,0.43673,0.139469,0.469621,0.625828,0.725494,0.692819,0.604408,0.644711,0.171157,0.63496,0.980762,0.0959791,0.744034,0.707921,0.460314,0.643057,0.114204,0.860975,0.73344,0.993002,0.620268,0.737704,0.265181,0.790872,0.235571,0.414415,0.550991,0.424205,0.122775,0.87201,0.347354,0.336965,0.682658,0.947286,0.979287,0.114535,0.437901,0.932008,0.711554,0.788824,0.562435,0.177832,0.331655,0.391394,0.917473,0.0913401,0.434979,0.312975,0.922988,0.540474,0.157998,0.916098,0.546361,0.128055,0.173735,0.349149,0.849189,0.583345,0.920022,0.46947,0.837637,0.383446,0.272327,0.461143,0.897241,0.428976,0.760507,0.956302,0.455743,0.077213,0.894317,0.0910052,0.620792,0.181833,0.62729,0.811282,0.242338,0.20716,0.380227,0.171457,0.165872,0.894567,0.0927635,0.219158,0.707118,0.220537,0.355317,0.351608,0.220174,0.724716,0.574602,0.319198,0.386061,0.857015,0.355062,0.354854,0.462222,0.159102,0.824015,0.568634,0.173917,0.489673,0.627316,0.555961,0.369704,0.818978,0.715284,0.676846,0.863971,0.375804,0.144707,0.124226,0.231127,0.487894,0.780814,0.63353,0.990535,0.587459,0.851122,0.410177,0.11801,0.126084,0.507718,0.731673,0.853943,0.983126,0.125525,0.71422,0.892806,0.526124,0.59855,0.657854,0.9608,0.9227,0.57812,0.47268,0.858011,0.546537,0.205954,0.0800604,0.337714,0.826074,0.997468,0.00627691,0.598264,0.428116,0.963735,0.946756,0.559926,0.669748,0.633375,0.909848,0.180802,0.167833,0.103689,0.694777,0.083712,0.417523,0.114895,0.484754,0.00966996,0.758988,0.744595,0.615518,0.241504,0.933794,0.0640413,0.5712,0.986015,0.403826,0.17667,0.228954,0.0255848,0.128811,0.666976,0.179004,0.621339,0.573938,0.491916,0.94607,0.158978,0.462406,0.430245,0.867212,0.875203,0.321034,0.414965,0.806328,0.337804,0.0997525,0.686283,0.196918,0.640346,0.723974,0.103323,0.723386,0.599497,0.149158,0.547737,0.797776,0.721776,0.868574,0.937347,0.235329,0.526915,0.433625,0.221466,0.0221024,0.571505,0.493702,0.992958,0.178526,0.916047,0.27377,0.716323,0.893614,0.908432,0.653633,0.107659,0.231398,0.959392,0.739173,0.455687,0.715969,0.083766,0.742029,0.0236912,0.697758,0.622241,0.621796,0.878134,0.71969,0.0308573,0.151641,0.0215921,0.359724,0.390503,0.929189,0.269982,0.583974,0.107284,0.762751,0.592909,0.941299,0.905294,0.373003,0.323406,0.167321,0.647101,0.113336,0.0365373,0.0523479,0.118405,0.261922,0.784519,0.123191,0.251292,0.242917,0.56668,0.343822,0.24789,0.540667,0.114814,0.488047,0.927046,0.483573,0.363812,0.648645,0.385525,0.934783,0.45242,0.962633,0.206213,0.449333,0.207998,0.742744,0.531679,0.579241,0.0554182,0.0683843,0.0430766,0.838646,0.805451,0.982588,0.959084,0.949724,0.34262,0.53789,0.0774548,0.199963,0.805139,0.989117,0.787737,0.984192,0.355234,0.526944,0.795053,0.552362,0.352065,0.539392,0.380225,0.28219,0.588544,0.221737,0.70939,0.773552,0.309157,0.525172,0.793298,0.899223,0.0490814,0.876395,0.192095,0.401038,0.44642,0.612202,0.444992,0.855002,0.918555,0.12687,0.0757661,0.580871,0.220966,0.543159,0.575052,0.803093,0.983286,0.453979,0.997604,0.427257,0.846641,0.266073,0.575138,0.962223,0.472481,0.612326,0.094858,0.914842,0.617048,0.32255,0.259148,0.395626,0.155472,0.0611246,0.66298,0.263561,0.00745714,0.0176998,0.331822,0.382002,0.888169,0.736725,0.789026,0.964068,0.644718,0.257575,0.46828,0.79955,0.316585,0.990159,0.509995,0.642285,0.942379,0.759492,0.541407,0.420559,0.36175,0.615557,0.537301,0.658943,0.173565,0.577092,0.866251,0.017327,0.882035,0.889944,0.52135,0.938317,0.484208,0.830081,0.0586279,0.685456,0.722282,0.830537,0.414403,0.52043,0.861757,0.137225,0.735201,0.76458,0.779598,0.577938,0.46101,0.0955158,0.642857,0.312729,0.657535,0.955528,0.0607867,0.00465173,0.402425,0.191149,0.369145,0.0375986,0.970576,0.285033,0.361689,0.0228467,0.4163,0.546302,0.771664,0.0327277,0.0189607,0.755521,0.00914907,0.378197,0.309514,0.489193,0.416426,0.579288,0.815562,0.516044,0.639866,0.74297,0.375407,0.322737,0.326215,0.318955,0.620293,0.857025,0.848093,0.93202,0.466278,0.637101,0.344794,0.915184,0.587841,0.487513,0.397877,0.758578,0.891692,0.623927,0.376743,0.0733074,0.855509,0.416021,0.0649145,0.415831,0.613536,0.654572,0.835998,0.340078,0.353497,0.354258,0.262122,0.230529,0.547449,0.597921,0.608679,0.220512,0.78802,0.145771,0.905927,0.0380421,0.381423,0.230562,0.403545,0.16203,0.0977095,0.721951,0.428551,0.659147,0.277013,0.290372,0.0190278,0.154979,0.992976,0.475899,0.474877,0.649421,0.789941,0.480105,0.180394,0.186859,0.89039,0.97655,0.625579,0.221606,0.943041,0.937406,0.716794,0.700826,0.588187,0.505253,0.715742,0.326453,0.3692,0.478706,0.0102945,0.0216755,0.466936,0.627731,0.537005,0.82101,0.237797,0.776818,0.39735,0.935778,0.623283,0.621361,0.793059,0.105898,0.925109,0.751417,0.654694,0.905778,0.251583,0.725238,0.0746973,0.567399,0.895405,0.357117,0.934167,0.437983,0.263927,0.0915398,0.263998,5.93066e-05,0.541735,0.920819,0.318928,0.802281,0.351983,0.453583,0.903669,0.413302,0.217665,0.748233,0.981181,0.0359643,0.52541,0.936949,0.322138,0.282115,0.674913,0.424363,0.565367,0.825712,0.574784,0.707589,0.673735,0.692635,0.844115,0.570924,0.775151,0.13106,0.0533454,0.89337,0.303814,0.15274,0.923771,0.57295,0.578727,0.923626,0.0524568,0.341431,0.0152407,0.677398,0.639455,0.814166,0.806987,0.809295,0.49558,0.0304625,0.282894,0.721639,0.817652,0.930503,0.835178,0.581036,0.78917,0.369339,0.864623,0.36062,0.786964,0.272154,0.883812,0.523553,0.867351,0.0350184,0.39695,0.337933,0.290123,0.897553,0.828035,0.597927,0.000673115,0.453953,0.849885,0.481199,0.858645,0.119905,0.0207961,0.0959435,0.611763,0.244212,0.48343,0.079487,0.838876,0.853158,0.790039,0.536504,0.690078,0.174351,0.0514951,0.00688416,0.609367,0.114288,0.271235,0.4703,0.430614,0.88463,0.723074,0.5495,0.320713,0.0476038,0.562821,0.808474,0.861992,0.370258,0.201847,0.376971,0.87459,0.689622,0.556791,0.777232,0.971608,0.381825,0.508447,0.870317,0.72937,0.553758,0.400631,0.186514,0.0178446,0.287483,0.577385,0.628915,0.398571,0.334281,0.821842,0.17293,0.294174,0.0731674,0.694567,0.169307,0.374124,0.699644,0.70972,0.410289,0.196743,0.154709,0.267411,0.32979,0.252788,0.993389,0.844892,0.573401,0.421809,0.525882,0.842105,0.00587642,0.303988,0.724328,0.752452,0.706326,0.933974,0.189189,0.272978,0.0779366,0.974303,0.346721,0.26977,0.128011,0.440397,0.766803,0.134202,0.877819,0.433754,0.230717,0.15026,0.0581067,0.782486,0.319432,0.966294,0.673764,0.359986,0.859043,0.93785,0.642249,0.882369,0.697219,0.901366,0.5467,0.76311,0.236793,0.955907,0.539207,0.798997,0.582562,0.395031,0.3524,0.0849771,0.703766,0.976686,0.941276,0.944891,0.456827,0.202505,0.980533,0.886671,0.34696,0.993293,0.74304,0.0366414,0.791912,0.555917,0.721883,0.211524,0.412249,0.802153,0.70277,0.749741,0.608338,0.73205,0.75923,0.215779,0.772241,0.349161,0.424295,0.581348,0.971016,0.970141,0.481697,0.733057,0.640432,0.982552,0.134552,0.954858,0.576695,0.468618,0.0566636,0.0362059,0.666418,0.479453,0.629046,0.555452,0.650031,0.51053,0.50273,0.816815,0.790914,0.837075,0.902859,0.147986,0.648047,0.674378,0.748683,0.171982,0.708407,0.515646,0.72781,0.663183,0.190951,0.791798,0.365264,0.0493233,0.468271,0.845227,0.306166,0.287016,0.075673,0.783718,0.370897,0.404302,0.606643,0.788754,0.439794,0.675213,0.875725,0.332413,0.538941,0.275145,0.54867,0.111787,0.30986,0.116914,0.493182,0.662048,0.354672,0.525407,0.812657,0.0087049,0.672362,0.920907,0.0113293,0.89287,0.989102,0.157814,0.991722,0.894234,0.144337,0.94866,0.408951,0.706125,0.250783,0.253119,0.844348,0.370391,0.241239,0.134076,0.371173,0.156094,0.252708,0.438587,0.571901,0.732746,0.613367,0.32214,0.131242,0.785486,0.0474151,0.713172,0.0016098,0.627222,0.844486,0.654174,0.868024,0.501571,0.0521024,0.394534,0.960434,0.0386196,0.630337,0.161326,0.513039,0.145045,0.212502,0.943411,0.0687151,0.54836,0.0791209,0.20602,0.545595,0.363873,0.968407,0.908924,0.277308,0.618079,0.141649,0.888699,0.138057,|0.0941106,0.020335,0.782187,0.45774,0.351056,0.131111,0.995235,0.0803084,0.624657,0.412906,0.0903236,0.943718,0.1538,0.406868,0.534878,0.0829066,0.46486,0.091773,0.167358,0.621463,0.441268,0.327395,0.344214,0.568811,0.573127,0.489799,0.232264,0.602419,0.646904,0.831554,0.800315,0.783478,0.682163,0.0193056,0.461083,0.0718417,0.63664,0.161636,0.809106,0.367111,0.211922,0.0203915,0.895518,0.461256,0.267231,0.138364,0.056711,0.817934,0.703482,0.706285,0.897349,0.461991,0.803699,0.692423,0.0902446,0.173497,0.222359,0.59033,0.513718,0.713215,0.463453,0.224829,0.680293,0.517122,0.228491,0.326814,0.0779024,0.00223261,0.947782,0.214024,0.296023,0.627835,0.290343,0.645607,0.339567,0.599836,0.67066,0.576762,0.496097,0.567226,0.798765,0.787871,0.164701,0.616902,0.817877,0.200157,0.631715,0.811662,0.960898,0.4857,0.325277,0.723104,0.801031,0.858166,0.032285,0.403142,0.491421,0.544504,0.26143,0.89046,0.100146,0.892221,0.873615,0.315688,0.917126,0.416312,0.978369,0.286647,0.509786,0.500128,0.301706,0.206231,0.552785,0.135412,0.822805,0.204398,0.697096,0.503368,0.1894,0.360146,0.695056,0.128043,0.357768,0.597254,0.804647,0.425123,0.104731,0.551543,0.731768,0.383612,0.446393,0.94896,0.274858,0.22607,0.176611,0.460471,0.880075,0.100907,0.184212,0.349566,0.450719,0.77949,0.524254,0.898644,0.543059,0.761583,0.882775,0.207718,0.763864,0.597438,0.737973,0.11573,0.991893,0.450113,0.277941,0.561403,0.602827,0.941828,0.491739,0.333343,0.159122,0.576546,0.215918,0.479249,0.0131318,0.89577,0.991878,0.408223,0.85095,0.70009,0.770703,0.614891,0.650741,0.0669938,0.177376,0.23485,0.611662,0.664805,0.184753,0.339349,0.0993503,0.480973,0.0746022,0.654905,0.1949,0.814986,0.48626,0.564262,0.750506,0.570108,0.184385,0.275969,0.175717,0.945161,0.0489916,0.814179,0.809457,0.858727,0.268487,0.47868,0.141396,0.217387,0.866744,0.985904,0.872639,0.311976,0.0881951,0.0666662,0.249882,0.806139,0.900352,0.62419,0.17809,0.497694,0.412085,0.787398,0.374692,0.548025,0.717279,0.455027,0.878326,0.00936675,0.663639,0.514341,0.00441712,0.211055,0.751981,0.33329,0.677974,0.803406,0.372783,0.128702,0.583597,0.733022,0.0297127,0.864362,0.988888,0.124729,0.0582117,0.715919,0.160812,0.208899,0.97074,0.0904462,0.671146,0.60378,0.355651,0.963082,0.414281,0.0885861,0.618778,0.370734,0.230604,0.876204,0.604519,0.401158,0.20928,0.323912,0.889873,0.996895,0.646045,0.982019,0.790982,0.888163,0.947245,0.969911,0.386286,0.741588,0.816134,0.467736,0.415731,0.570575,0.240076,0.038819,0.97392,0.172881,0.814206,0.79864,0.432273,0.235975,0.663364,0.589513,0.400553,0.615149,0.848601,0.753895,0.359905,0.20537,0.672876,0.816577,0.979422,0.19039,0.0151745,0.676267,0.126322,0.681177,0.850502,0.530703,0.00688159,0.142632,0.74017,0.103139,0.874819,0.107391,0.601001,0.628029,0.274252,0.777837,0.585261,0.85827,0.132794,0.596046,0.438866,0.943899,0.787272,0.257063,0.769697,0.641292,0.809346,0.58125,0.0536964,0.995024,0.760211,0.800094,0.655537,0.422457,0.205739,0.161616,0.489541,0.772395,0.445046,0.62388,0.72036,0.128945,0.163075,0.423731,0.401073,0.206909,0.41363,0.0457327,0.60893,0.579489,0.616136,0.0700639,0.573985,0.0721681,0.76397,0.894892,0.660187,0.618372,0.879331,0.603113,0.658069,0.484125,0.612502,0.119486,0.243167,0.124692,0.261906,0.969797,0.987321,0.764162,0.0607972,0.748185,0.0859067,0.26498,0.201327,0.983723,0.186468,0.148879,0.74662,0.346546,0.427809,0.255256,0.161914,0.185708,0.923762,0.290711,0.0713354,0.843158,0.427988,0.90938,0.886746,0.45374,0.401914,0.660316,0.439051,0.0969718,0.968364,0.976173,0.695254,0.48458,0.462876,0.510589,0.0838828,0.595602,0.506923,0.643572,0.631171,0.443508,0.551258,0.037829,0.503438,0.439899,0.396457,0.230692,0.619055,0.48573,0.186915,0.494847,0.675066,0.836889,0.979377,0.814743,0.602776,0.917004,0.0591565,0.838114,0.259323,0.249612,0.581826,0.923447,0.0662233,0.186713,0.0571235,0.782521,0.767478,0.927567,0.770503,0.0947861,0.148509,0.383212,0.906499,0.605036,0.145715,0.462319,0.797942,0.804547,0.221916,0.477111,0.652654,0.531258,0.676048,0.410948,0.839382,0.726203,0.462955,0.222521,0.231497,0.449082,0.0919698,0.145265,0.261182,0.871938,0.607571,0.717419,0.523311,0.398227,0.422767,0.0888082,0.884291,0.0272106,0.279209,0.560671,0.936109,0.144188,0.882359,0.0237345,0.0560071,0.518582,0.106466,0.862214,0.223501,0.000635386,0.812464,0.507649,0.145106,0.978603,0.619508,0.661397,0.648108,0.0808612,0.871339,0.849227,0.555227,0.202703,0.182414,0.841346,0.321339,0.115648,0.983163,0.115364,0.111177,0.410357,0.0592873,0.755378,0.957179,0.352484,0.122861,0.801629,0.170387,0.0470871,0.955189,0.323673,0.580449,0.0481582,0.35373,0.84211,0.595876,0.298833,0.194288,0.615527,0.0800633,0.229751,0.53557,0.022831,0.0905755,0.712892,0.943581,0.995775,0.272809,0.17817,0.0302367,0.850804,0.423423,0.275557,0.454638,0.583952,0.620654,0.920597,0.153486,0.192389,0.0231368,0.147175,0.169781,0.321794,0.590702,0.89704,0.498733,0.352385,0.921175,0.348963,0.999462,0.0116336,0.41876,0.707799,0.465925,0.536511,0.807881,0.303968,0.811106,0.316489,0.156715,0.434723,0.0743374,0.66936,0.930923,0.824844,0.765819,0.629444,0.0031634,0.113248,0.433791,0.74755,0.107023,0.109247,0.630768,0.0761147,0.902221,0.249673,0.23246,0.202561,0.926859,0.885883,0.73548,0.212465,0.0809737,0.89761,0.569363,0.00679153,0.32721,0.371805,0.201178,0.916445,0.539343,0.794341,0.825874,0.657951,0.611128,0.121229,0.415955,0.5826,0.467243,0.304422,0.710084,0.392805,0.990418,0.0448002,0.926116,0.513349,0.958458,0.458111,0.980131,0.215088,0.112509,0.460736,0.583865,0.092047,0.315078,0.925127,0.192129,0.337405,0.201106,0.574075,0.586228,0.508679,0.920548,0.456653,0.423714,0.514819,0.0452099,0.461735,0.39845,0.209451,0.753903,0.99037,0.213294,0.207903,0.382088,0.597794,0.451267,0.585403,0.137518,0.165904,0.52196,0.792759,0.0346239,0.852509,0.976484,0.186116,0.74241,0.919097,0.974412,0.828233,0.373577,0.817811,0.160589,0.469204,0.0666432,0.508284,0.0793396,0.34733,0.486222,0.960329,0.975174,0.0936944,0.33773,0.671689,0.488273,0.889901,0.179159,0.840243,0.0583882,0.0352866,0.393058,0.494263,0.258205,0.362426,0.619167,0.58743,0.785909,0.795078,0.560289,0.379762,0.381596,0.994949,0.350944,0.987351,0.110586,0.0195796,0.567203,0.656346,0.41183,0.782821,0.290333,0.470091,0.77654,0.28779,0.850451,0.0116547,0.94364,0.46551,0.561864,0.544619,0.495556,0.569011,0.34474,0.854463,0.416837,0.319361,0.687722,0.51679,0.0554768,0.289578,0.769901,0.570747,0.0468916,0.980411,0.486178,0.730432,0.109745,0.501072,0.753452,0.754108,0.0856895,0.851345,0.256266,0.373501,0.819901,0.237821,0.513371,0.410939,0.737461,0.69346,0.714031,0.00386858,0.124137,0.4939,0.00676262,0.163694,0.64706,0.220845,0.866854,0.0763526,0.593757,0.282895,0.782224,0.0561267,0.458062,0.120557,0.66299,0.620369,0.193482,0.257501,0.258873,0.728493,0.878781,0.462319,0.780517,0.0213492,0.0652342,0.981444,0.143636,0.973525,0.943397,0.103632,0.371941,0.567416,0.708424,0.802429,0.618021,0.997559,0.911538,0.684314,0.86356,0.697226,0.673942,0.504885,0.396778,0.326969,0.712706,0.231566,0.555667,0.0449273,0.481265,0.764671,0.766616,0.360529,0.516238,0.114861,0.0991266,0.996334,0.285074,0.264297,0.446367,0.0971476,0.684494,0.698163,0.754617,0.744647,0.899727,0.111638,0.714469,0.350944,0.617555,0.956354,0.197972,0.410066,0.876308,0.944633,0.81671,0.926367,0.353867,0.094724,0.181871,0.792555,0.53512,0.971875,0.434134,0.0315539,0.290761,0.615967,0.682223,0.188917,0.55548,0.89418,0.115363,0.759064,0.997945,0.610771,0.0376618,0.983242,0.400279,0.808083,0.845601,0.537833,0.981784,0.467986,0.360749,0.484091,0.977741,0.344624,0.0990071,0.173286,0.431153,0.65301,0.32542,0.458399,0.208726,0.21657,0.736158,0.311801,0.419631,0.431204,0.304138,0.0846709,0.933167,0.407252,0.525612,0.551918,0.462892,0.566933,0.0925179,0.453892,0.329838,0.41049,0.232203,0.706417,0.672875,0.844196,0.654305,0.599651,0.199882,0.370486,0.59906,0.390497,0.709132,0.944696,0.0240398,0.455722,0.922318,0.282437,0.824287,0.933441,0.441755,0.0438989,0.785842,0.189568,0.385496,0.507151,0.247108,0.0486866,0.278097,0.731514,0.484825,0.830545,0.39892,0.307577,0.732849,0.786694,0.480951,0.000118971,0.772591,0.864624,0.501088,0.846817,0.6781,0.341166,0.741717,0.0883366,0.587951,0.797483,0.344338,0.755529,0.773697,0.223485,0.215245,0.805784,0.0559181,0.790741,0.749243,0.497516,0.6353,0.998804,0.218666,0.640323,0.0592881,0.551513,0.389427,0.740683,0.780013,0.791062,0.0793005,0.0832747,0.065818,0.534399,0.895094,0.359687,0.23136,0.509838,0.871593,0.170968,0.391066,0.506498,0.194087,0.873634,0.723272,0.825522,0.449181,0.0267846,0.798173,0.517158,0.747925,0.564634,0.470408,0.048103,0.896533,0.794415,0.32089,0.654556,0.4839,0.289697,0.846995,0.75901,0.185422,0.283303,0.782065,0.857199,0.0155109,0.480048,0.904494,0.433456,0.561493,0.0872651,0.14884,0.474937,0.0746784,0.947601,0.128681,0.628345,0.947109,0.736016,0.875293,0.679222,0.480385,0.347186,0.804798,0.838572,0.968274,0.945217,0.429812,0.603638,0.562326,0.741899,0.120532,0.732961,0.272964,0.525435,0.499457,0.66758,0.916382,0.577458,0.570489,0.66042,0.536734,0.405846,0.130139,0.748194,0.549929,0.0945658,|0.676072,0.28597,0.981636,0.575333,0.713379,0.491508,0.174935,0.475615,0.305216,0.578246,0.95667,0.949435,0.880548,0.65925,0.0254093,0.130619,0.338426,0.425199,0.297533,0.66337,0.713212,0.311779,0.213788,0.597942,0.67052,0.00219333,0.537616,0.480675,0.602133,0.720531,0.0298055,0.420918,0.372864,0.0362242,0.69981,0.542563,0.539426,0.590489,0.869992,0.818495,0.0333541,0.90975,0.143959,0.81242,0.492429,0.00618845,0.194287,0.780571,0.640579,0.168787,0.310721,0.439824,0.440271,0.648257,0.751701,0.211656,0.149789,0.824499,0.480494,0.220551,0.493088,0.0742336,0.713515,0.608737,0.6591,0.432436,0.882028,0.585762,0.171316,0.424567,0.0587722,0.676939,0.0461733,0.532513,0.624737,0.90962,0.77273,0.976692,0.791216,0.819158,0.889668,0.721207,0.220894,0.705798,0.472646,0.378434,0.930562,0.598913,0.272303,0.385797,0.759405,0.949338,0.880284,0.724555,0.660674,0.285168,0.792556,0.312418,0.392784,0.916633,0.165997,0.537648,0.338207,0.191769,0.765777,0.075944,0.670768,0.824157,0.531903,0.222254,0.79354,0.551966,0.266212,0.351581,0.0984223,0.982757,0.547052,0.416955,0.521768,0.477125,0.712017,0.0799266,0.65607,0.249927,0.0542645,0.477531,0.646289,0.337798,0.775623,0.429308,0.309127,0.328794,0.691259,0.954408,0.593032,0.110976,0.00699115,0.475426,0.574733,0.048479,0.757443,0.37016,0.934084,0.595973,0.876179,0.323896,0.999719,0.17559,0.530057,0.22801,0.0996151,0.421414,0.0085479,0.776314,0.329449,0.125167,0.334471,0.0460148,0.528732,0.773021,0.798197,0.991237,0.504162,0.890299,0.363096,0.314854,0.148012,0.147722,0.677142,0.978612,0.208478,0.134496,0.212046,0.826452,0.485563,0.0271946,0.772809,0.485817,0.570448,0.0118671,0.0608907,0.52619,0.788028,0.16473,0.132786,0.846463,0.595197,0.781913,0.829927,0.875131,0.454896,0.547154,0.747196,0.970038,0.962274,0.778045,0.107731,0.949438,0.679699,0.18869,0.249699,0.107364,0.273942,0.150755,0.356583,0.437409,0.396675,0.478796,0.566102,0.356484,0.309328,0.185218,0.765953,0.131532,0.0688429,0.00214309,0.830571,0.684975,0.968154,0.57912,0.308733,0.433123,0.779667,0.341305,0.165307,0.932561,0.14524,0.97111,0.423872,0.574182,0.338768,0.52546,0.279666,0.0534498,0.62377,0.439786,0.193648,0.809849,0.638224,0.561718,0.814262,0.591104,0.677475,0.423763,0.807579,0.109376,0.168959,0.927747,0.346009,0.175062,0.850342,0.428322,0.898577,0.067714,0.903825,0.719137,0.240125,0.689734,0.181132,0.348694,0.630116,0.356978,0.841009,0.0361939,0.305425,0.0371183,0.771782,0.958945,0.0604498,0.769657,0.968663,0.404622,0.703506,0.222899,0.227586,0.317278,0.745713,0.612416,0.48625,0.468663,0.814937,0.216037,0.221333,0.0869505,0.66736,0.205952,0.113391,0.346953,0.325159,0.158716,0.798658,0.25029,0.62773,0.202685,0.82087,0.599996,0.840299,0.774906,0.905932,0.910907,0.343509,0.0892318,0.24218,0.0536721,0.93985,0.742148,0.354251,0.0328678,0.43283,0.646274,0.220473,0.812444,0.421879,0.0906405,0.0865657,0.211104,0.0956846,0.966913,0.484859,0.849272,0.504912,0.675991,0.982856,0.759673,0.583041,0.265272,0.375676,0.0143074,0.507896,0.655219,0.282346,0.439569,0.183829,0.191737,0.468605,0.749708,0.558065,0.274755,0.304978,0.593678,0.914984,0.37073,0.0623391,0.992268,0.527839,0.371507,0.121155,0.473802,0.274827,0.852386,0.18616,0.561374,0.508197,0.195984,0.295533,0.521864,0.816565,0.269826,0.683383,0.674889,0.0425108,0.254179,0.542946,0.801721,0.744751,0.428212,0.749771,0.501171,0.89826,0.259244,0.156883,0.603282,0.58655,0.293438,0.978286,0.996099,0.668334,0.894731,0.513644,0.682347,0.745662,0.854589,0.164688,0.172601,0.00732183,0.697737,0.561682,0.847828,0.377668,0.137935,0.00142777,0.330081,0.204473,0.877368,0.928778,0.607344,0.347098,0.895926,0.0427795,0.0905917,0.943554,0.816637,0.0473208,0.969332,0.60274,0.266907,0.0805301,0.625918,0.304725,0.413255,0.911358,0.694532,0.0669261,0.823832,0.116375,0.863538,0.402837,0.139539,0.328489,0.883058,0.962193,0.312739,0.0578497,0.834867,0.0107011,0.060837,0.128324,0.161184,0.745404,0.967938,0.077008,0.673489,0.208604,0.236761,0.120163,0.971059,0.988783,0.334006,0.706488,0.0509496,0.498963,0.0874334,0.117885,0.535999,0.914241,0.174584,0.167758,0.592536,0.823574,0.494925,0.158633,0.57273,0.260569,0.315576,0.491525,0.555789,0.117874,0.142059,0.0988653,0.648939,0.993652,0.280119,0.396395,0.912277,0.149674,0.961919,0.385743,0.631413,0.774904,0.353873,0.174719,0.596459,0.757399,0.824931,0.126686,0.956055,0.189923,0.469454,0.745905,0.745574,0.446976,0.410165,0.735311,0.177115,0.480396,0.147226,0.122793,0.280068,0.116477,0.302322,0.00313461,0.709779,0.489917,0.761673,0.267639,0.238095,0.935195,0.0408062,0.00795257,0.822177,0.631154,0.0395718,0.545844,0.0319146,0.425469,0.0287001,0.0556583,0.609269,0.388092,0.285026,0.42128,0.59788,0.987952,0.343693,0.404761,0.948993,0.421723,0.277176,0.0632857,0.252971,0.86433,0.134493,0.414956,0.936106,0.610867,0.174475,0.359373,0.0193687,0.424893,0.663858,0.12008,0.101359,0.384564,0.103614,0.676442,0.711224,0.311613,0.708103,0.243769,0.884274,0.476836,0.598702,0.574968,0.952461,0.210294,0.739574,0.0650529,0.795108,0.191149,0.157794,0.811511,0.169555,0.0346341,0.487916,0.315035,0.819905,0.961924,0.217401,0.459092,0.975997,0.314405,0.662671,0.193792,0.0110062,0.185909,0.264209,0.471217,0.302795,0.810986,0.829609,0.72994,0.172561,0.0441155,0.808775,0.711737,0.515596,0.115565,0.661165,0.590612,0.986737,0.156468,0.270906,0.99488,0.751661,0.338766,0.620318,0.891481,0.933876,0.217006,0.75038,0.333448,0.225377,0.313752,0.0553722,0.498468,0.981494,0.656924,0.9725,0.674325,0.465721,0.190587,0.104008,0.99001,0.171288,0.528953,0.360267,0.348619,0.440896,0.840317,0.689875,0.602144,0.14696,0.0283515,0.073033,0.367472,0.926639,0.608181,0.45088,0.124817,0.852788,0.236443,0.87704,0.124747,0.96982,0.824483,0.227532,0.261546,0.251132,0.246906,0.928311,0.577182,0.568212,0.627943,0.760997,0.931595,0.511375,0.0647168,0.00107527,0.523362,0.313583,0.0471754,0.502487,0.930954,0.0950506,0.930972,0.847479,0.033294,0.255541,0.385031,0.823172,0.218503,0.892501,0.78527,0.36813,0.115906,0.443183,0.978237,0.433303,0.0624609,0.116504,0.938579,0.164586,0.11891,0.815906,0.203503,0.553312,0.58858,0.734454,0.645463,0.990549,0.131535,0.196845,0.133142,0.233001,0.895525,0.0559094,0.428457,0.0774454,0.687818,0.812091,0.670154,0.668126,0.0158275,0.559094,0.659929,0.144864,0.0224991,0.825719,0.766705,0.881227,0.988091,0.550069,0.913408,0.761633,0.488168,0.833429,0.767536,0.515912,0.616692,0.293535,0.466203,0.484871,0.37348,0.68953,0.0907134,0.348486,0.363481,0.0605317,0.794842,0.791856,0.913668,0.68216,0.285554,0.535356,0.944391,0.349947,0.0540037,0.601483,0.432364,0.731953,0.861698,0.761732,0.440529,0.81883,0.643188,0.539329,0.87527,0.329651,0.276106,0.35504,0.0509044,0.0373072,0.643789,0.427743,0.769568,0.496944,0.426136,0.67307,0.84235,0.232974,0.207295,0.44945,0.996117,0.937714,0.0491577,0.369581,0.891371,0.150905,0.798274,0.941439,0.853821,0.224433,0.603592,0.8644,0.586427,0.63215,0.440644,0.518952,0.960875,0.367284,0.261831,0.798618,0.848386,0.174175,0.041075,0.39093,0.830897,0.906531,0.036641,0.0135879,0.861889,0.353473,0.429457,0.716338,0.751118,0.820311,0.831964,0.354875,0.217162,0.829445,0.887365,0.987968,0.000322104,0.699074,0.13381,0.151599,0.303003,0.0637998,0.745619,0.482758,0.818738,0.36522,0.304705,0.67619,0.713177,0.421027,0.579885,0.817254,0.601131,0.701714,0.687466,0.118739,0.820966,0.884451,0.891261,0.597146,0.443799,0.906755,0.0968361,0.217338,0.972954,0.977315,0.310032,0.423594,0.565843,0.429857,0.874316,0.686441,0.732996,0.766217,0.378213,0.701234,0.138387,0.678499,0.432122,0.348216,0.051379,0.438627,0.0505697,0.53559,0.0143258,0.59176,0.178244,0.340088,0.0235611,0.49885,0.56199,0.634677,0.225236,0.415132,0.537834,0.164232,0.948463,0.246991,0.0746162,0.0347633,0.231717,0.639229,0.988737,0.358443,0.139108,0.955483,0.772358,0.238673,0.517028,0.370366,0.962205,0.923341,0.509819,0.244511,0.937936,0.949713,0.0555592,0.493484,0.369256,0.435554,0.286594,0.911229,0.291952,0.465415,0.492069,0.150805,0.0595293,0.087088,0.0519112,0.628538,0.513038,0.920568,0.785294,0.961113,0.213601,0.695998,0.98164,0.730655,0.390256,0.781792,0.216653,0.925968,0.73302,0.0608925,0.241254,0.506376,0.28235,0.307385,0.663861,0.90638,0.741677,0.0332454,0.233463,0.849955,0.766372,0.390052,0.699914,0.991187,0.73515,0.449826,0.0812785,0.642093,0.17296,0.154584,0.809763,0.260292,0.0262855,0.00879723,0.909704,0.223533,0.997963,0.430821,0.695144,0.01086,0.0998952,0.457806,0.709271,0.602931,0.416436,0.40744,0.184297,0.488005,0.653072,0.485585,0.535029,0.0902563,0.635037,0.769042,0.324883,0.299268,0.557139,0.0529954,0.512348,0.19197,0.710239,0.554076,0.379792,0.306194,0.148618,0.404858,0.777547,0.0920431,0.485568,0.928752,0.238921,0.357779,0.703013,0.379601,0.678038,0.12913,0.485536,0.862088,0.428015,0.65494,0.174416,0.959809,0.741846,0.857853,0.39069,0.159286,0.959493,0.104358,0.0554993,0.155559,0.825556,0.965804,0.197317,0.800141,0.901704,0.412151,0.16589,0.565718,0.0148777,0.284404,0.0486661,0.788177,0.520937,0.770568,0.827872,0.150039,0.452882,0.761352,0.294054,0.920625,0.134339,0.429148,0.911942,0.760587,0.627043,0.170516,0.850982,0.210016,0.319968,0.922556,|0.45694,0.712743,0.973678,0.444741,0.976299,0.966499,0.122868,0.884896,0.745587,0.994365,0.899724,0.400222,0.237815,0.69073,0.0884882,0.888137,0.55793,0.811036,0.823397,0.913722,0.622365,0.0415925,0.0811102,0.844943,0.982192,0.75493,0.676892,0.326523,0.914271,0.569938,0.0170419,0.0730975,0.348974,0.118639,0.442191,0.0940226,0.835327,0.482224,0.119304,0.551037,0.934037,0.175898,0.00566685,0.466429,0.518886,0.494918,0.744594,0.748308,0.328025,0.45845,0.22554,0.201052,0.514788,0.732313,0.810157,0.163527,0.0935538,0.979313,0.165356,0.922069,0.520572,0.623412,0.397229,0.484827,0.307178,0.31642,0.962667,0.77055,0.171469,0.443732,0.968993,0.881537,0.695731,0.488427,0.276131,0.844621,0.0373656,0.569714,0.0502583,0.301948,0.13215,0.748461,0.120732,0.0336403,0.966962,0.72904,0.586679,0.40113,0.676049,0.993658,0.637311,0.0592522,0.550443,0.324174,0.582658,0.749079,0.435946,0.46875,0.873734,0.868692,0.78226,0.998359,0.965244,0.291049,0.784566,0.134248,0.305733,0.46321,0.305248,0.837956,0.10906,0.221498,0.287267,0.0758411,0.259252,0.260551,0.54895,0.481112,0.987683,0.99454,0.249984,0.234537,0.126628,0.478932,0.0315886,0.726987,0.689817,0.364166,0.800097,0.94076,0.041082,0.423919,0.709693,0.664346,0.970507,0.128961,0.00108337,0.673732,0.0302265,0.605461,0.27223,0.709946,0.866109,0.2501,0.389242,0.626563,0.94254,0.499724,0.94818,0.0621876,0.739829,0.66257,0.977947,0.897242,0.616261,0.235653,0.790211,0.325,0.867526,0.849021,0.888867,0.97011,0.859059,0.148032,0.968202,0.971093,0.445834,0.807517,0.309859,0.95088,0.578294,0.566354,0.973528,0.652295,0.198703,0.451215,0.00146085,0.609067,0.22309,0.401469,0.96265,0.183293,0.321164,0.948422,0.469499,0.0319911,0.984945,0.34059,0.697911,0.08476,0.960564,0.964809,0.0263884,0.792344,0.957347,0.60974,0.0237809,0.681626,0.545968,0.909769,0.943618,0.140211,0.937419,0.985805,0.634841,0.533311,0.768573,0.35854,0.22894,0.6096,0.818274,0.967223,0.0783159,0.590766,0.150986,0.722734,0.352254,0.96153,0.256203,0.0884506,0.4534,0.776245,0.742348,0.808597,0.508845,0.472797,0.895899,0.959013,0.413069,0.700907,0.642583,0.995708,0.681946,0.691884,0.106902,0.214234,0.0682225,0.288984,0.887121,0.762772,0.12375,0.554459,0.559892,0.204983,0.207959,0.514862,0.985557,0.384894,0.786214,0.312247,0.459621,0.897625,0.588208,0.530149,0.490986,0.407571,0.940993,0.79855,0.570116,0.210088,0.441028,0.88211,0.348825,0.941682,0.779911,0.192669,0.5894,0.925727,0.910905,0.337413,0.534229,0.382289,0.191388,0.832424,0.828194,0.0187397,0.24102,0.665549,0.103811,0.839389,0.999526,0.622741,0.434024,0.626148,0.332215,0.782496,0.453265,0.0304927,0.72638,0.0851387,0.724963,0.615441,0.490716,0.508151,0.212588,0.874166,0.119137,0.226811,0.675628,0.573445,0.0658055,0.365639,0.974265,0.903172,0.194487,0.566715,0.350905,0.0791065,0.00154161,0.0990422,0.462882,0.346456,0.364204,0.131723,0.690891,0.0631241,0.267732,0.126761,0.413159,0.878652,0.812385,0.551638,0.0170931,0.0208737,0.892625,0.184689,0.263119,0.910414,0.00653332,0.40965,0.979425,0.374339,0.549252,0.936176,0.278668,0.797408,0.93854,0.38585,0.866725,0.20875,0.394836,0.509085,0.813344,0.45672,0.737204,0.0401194,0.862115,0.812785,0.853704,0.74329,0.779464,0.67594,0.873593,0.554164,0.18681,0.58533,0.215111,0.0701006,0.759884,0.936014,0.49443,0.63509,0.401701,0.428169,0.109481,0.0785421,0.200675,0.41247,0.309257,0.0882114,0.983919,0.446911,0.197775,0.660657,0.431446,0.00826281,0.0164907,0.452343,0.497111,0.924003,0.284728,0.14582,0.628708,0.595113,0.804495,0.609882,0.197151,0.817683,0.763049,0.481579,0.56206,0.884617,0.650265,0.503673,0.63246,0.915828,0.624068,0.685222,0.0389002,0.864536,0.0519767,0.480366,0.313694,0.0762327,0.717778,0.560565,0.929795,0.656755,0.306576,0.237574,0.357064,0.826549,0.855128,0.520601,0.25634,0.495895,0.00620097,0.817843,0.784686,0.230664,0.018214,0.985964,0.148576,0.683339,0.68784,0.70028,0.835905,0.109913,0.169591,0.244161,0.145172,0.0895617,0.526628,0.499899,0.469416,0.170269,0.456865,0.741749,0.637366,0.6725,0.0538052,0.506469,0.173098,0.650188,0.14279,0.322787,0.361402,0.536224,0.445945,0.931294,0.249979,0.160038,0.144453,0.797806,0.778211,0.520292,0.913449,0.901513,0.855357,0.938283,0.374346,0.374108,0.12662,0.981651,0.72708,0.40412,0.925788,0.678052,0.99945,0.987369,0.640103,0.593326,0.857252,0.870025,0.393378,0.066695,0.915949,0.43558,0.524222,0.650823,0.250671,0.208339,0.335682,0.39382,0.893773,0.728514,0.701846,0.289803,0.415373,0.966405,0.0806873,0.222222,0.525854,0.864129,0.802643,0.88304,0.921678,0.385331,0.469435,0.93006,0.273898,0.166853,0.723552,0.181086,0.359742,0.361248,0.060616,0.190335,0.383915,0.760312,0.406937,0.154162,0.137348,0.412179,0.545384,0.979196,0.312906,0.988911,0.69152,0.736565,0.175766,0.715586,0.0739113,0.716059,0.512265,0.110704,0.254996,0.485262,0.680168,0.20601,0.932593,0.910764,0.275795,0.752462,0.266139,0.953429,0.532645,0.282651,0.757765,0.806367,0.495909,0.705844,0.798743,0.773134,0.317462,0.303988,0.674626,0.0722206,0.39903,0.165372,0.507807,0.665355,0.0641343,0.192572,0.185002,0.642972,0.825839,0.616389,0.987466,0.942453,0.784147,0.403144,0.799075,0.966821,0.828842,0.974931,0.460444,0.26239,0.259916,0.411972,0.409899,0.53563,0.689011,0.346867,0.348749,0.407135,0.529181,0.184636,0.665266,0.361343,0.0260152,0.410725,0.916957,0.187026,0.943759,0.790388,0.481721,0.644894,0.378467,0.594077,0.328387,0.0678812,0.626962,0.0659781,0.285316,0.47792,0.0643805,0.837009,0.883291,0.650692,0.736262,0.0705714,0.322342,0.89219,0.946076,0.421644,0.739198,0.244914,0.921778,0.238283,0.092023,0.0930237,0.720885,0.0138993,0.667937,0.978581,0.405354,0.122174,0.578168,0.711302,0.585311,0.23469,0.277582,0.230046,0.797264,0.926363,0.567713,0.369285,0.96877,0.00874281,0.926345,0.404834,0.91617,0.849168,0.900121,0.156606,0.659771,0.0835154,0.843056,0.0479241,0.747924,0.559564,0.156514,0.917331,0.0873098,0.21474,0.977985,0.0611954,0.157474,0.830384,0.4522,0.462326,0.729787,0.995159,0.83204,0.279955,0.543328,0.240438,0.920783,0.952832,0.586606,0.448085,0.451158,0.0915937,0.486396,0.114484,0.908739,0.134223,0.605869,0.525556,0.363297,0.187288,0.777772,0.223101,0.930449,0.210292,0.159488,0.638699,0.513633,0.551958,0.361889,0.923444,0.266004,0.137433,0.994185,0.634059,0.180004,0.816145,0.112352,0.382257,0.558953,0.113834,0.770334,0.988623,0.307369,0.361305,0.219148,0.4582,0.430742,0.452372,0.549968,0.775762,0.0723751,0.633763,0.827814,0.421544,0.621911,0.301694,0.738034,0.309938,0.522865,0.0185375,0.517853,0.122347,0.775043,0.567802,0.883504,0.752899,0.699344,0.478421,0.260337,0.205981,0.578633,0.893427,0.174884,0.144969,0.443695,0.652177,0.822099,0.213908,0.56583,0.265116,0.512488,0.599269,0.630298,0.0790268,0.812573,0.736877,0.171076,0.0963386,0.117533,0.369475,0.90152,0.863627,0.994001,0.177162,0.0857033,0.404844,0.697973,0.0878758,0.625112,0.139319,0.669491,0.910433,0.113912,0.489577,0.632081,0.0562152,0.32676,0.298521,0.650456,0.266478,0.692534,0.733929,0.701845,0.231314,0.761492,0.730637,0.898785,0.636238,0.0257052,0.78371,0.593879,0.386729,0.940027,0.402558,0.125095,0.0568025,0.394254,0.855102,0.646146,0.611617,0.857329,0.608772,0.996279,0.00159979,0.48592,0.810586,0.344915,0.198533,0.878255,0.144427,0.378726,0.171449,0.0669969,0.257505,0.49439,0.843121,0.71226,0.432733,0.412809,0.940792,0.450437,0.589278,0.774558,0.163008,0.611944,0.948487,0.691001,0.848752,0.766918,0.938186,0.391503,0.119073,0.394687,0.934681,0.456349,0.837853,0.216356,0.0572037,0.281594,0.00937742,0.130496,0.862859,0.754252,0.499006,0.762047,0.303065,0.966225,0.119742,0.607421,0.506853,0.541813,0.107411,0.515233,0.239407,0.333795,0.227035,0.647488,0.734433,0.389723,0.529992,0.623811,0.990758,0.508465,0.410084,0.696413,0.680601,0.807655,0.360262,0.897767,0.673464,0.185953,0.546078,0.0289189,0.804365,0.306245,0.382115,0.0326354,0.124691,0.838856,0.139837,0.65197,0.136237,0.461607,0.176656,0.38921,0.705782,0.661272,0.892839,0.217804,0.17703,0.0609316,0.632366,0.917866,0.323266,0.934418,0.158113,0.223246,0.743005,0.813267,0.0229136,0.729106,0.94224,0.815812,0.533335,0.880558,0.139908,0.998902,0.197028,0.831515,0.159833,0.0588506,0.843444,0.333791,0.339376,0.355552,0.503631,0.561659,0.425116,0.953736,0.427594,0.824473,0.365341,0.1022,0.93649,0.704585,0.303357,0.903189,0.168764,0.165389,0.940719,0.839661,0.242105,0.785871,0.908507,0.784057,0.48265,0.729356,0.851155,0.573434,0.00314409,0.75296,0.46122,0.439311,0.373407,0.781064,0.47702,0.421723,0.464299,0.184784,0.968658,0.417732,0.270291,0.519492,0.367368,0.133779,0.116628,0.0414575,0.847755,0.314214,0.609705,0.493062,0.373195,0.884818,0.494956,0.733931,0.536598,0.227158,0.854213,0.790607,0.367147,0.153906,0.81069,0.376209,0.0269256,0.899085,0.440976,0.848373,0.44853,0.428913,0.127414,0.787088,0.96949,0.654747,0.905113,0.395485,0.00531143,0.25237,0.86176,0.0745133,0.230228,0.0562141,0.797891,0.362166,0.69887,0.175043,0.00565594,0.723171,0.953416,0.465159,0.846017,0.995278,0.712622,0.431098,0.516947,0.864124,0.477911,0.394352,0.430464,0.982588,0.02912,0.467553,0.624514,0.495382,0.203943,0.0399633,0.491197,0.512873,0.580145,|0.854972,0.415155,0.0486492,0.0230169,0.504616,0.959744,0.304302,0.836659,0.755715,0.0379406,0.111196,0.557757,0.448872,0.513472,0.182634,0.180098,0.980253,0.0818213,0.369354,0.974582,0.879222,0.370916,0.234409,0.889769,0.29194,0.777017,0.329154,0.0630801,0.734719,0.867597,0.74755,0.88908,0.242462,0.438185,0.519524,0.906811,0.0852858,0.360595,0.885847,0.0718244,0.771093,0.311623,0.207483,0.172612,0.912822,0.277276,0.61607,0.299395,0.328938,0.102734,0.688235,0.964178,0.333035,0.709479,0.825757,0.704729,0.325754,0.218235,0.0593885,0.0428704,0.942163,0.0511005,0.366512,0.580263,0.720942,0.746585,0.0350618,0.691396,0.648274,0.411615,0.491145,0.523902,0.97563,0.895077,0.644603,0.999985,0.846639,0.695876,0.187301,0.482722,0.868397,0.715904,0.436497,0.89101,0.627267,0.387724,0.606658,0.369458,0.252807,0.914903,0.799572,0.18697,0.786633,0.740888,0.89977,0.900527,0.922361,0.249129,0.0395205,0.412814,0.395447,0.575722,0.278767,0.0166471,0.429222,0.943963,0.7172,0.915366,0.841286,0.58355,0.812942,0.113116,0.391982,0.774658,0.870764,0.553579,0.917607,0.467826,0.228267,0.897674,0.191183,0.444512,0.134038,0.577569,0.0743154,0.00406373,0.276715,0.986783,0.369009,0.06883,0.470715,0.908686,0.231488,0.582458,0.408334,0.610385,0.523541,0.391804,0.831594,0.0760361,0.76956,0.859766,0.149106,0.219235,0.380697,0.00344348,0.780353,0.650235,0.819901,0.159004,0.545279,0.929996,0.239225,0.0777923,0.364593,0.960937,0.65363,0.582526,0.512688,0.525391,0.536122,0.396678,0.713587,0.856471,0.552482,0.904586,0.221435,0.26395,0.0809577,0.294207,0.423966,0.409202,0.637173,0.268004,0.222414,0.715086,0.537386,0.609369,0.834566,0.355163,0.636415,0.0436428,0.321163,0.021575,0.314459,0.664687,0.36645,0.367369,0.791502,0.823872,0.606283,0.208444,0.299063,0.425861,0.644119,0.741108,0.897551,0.61964,0.887477,0.200891,0.49173,0.0885315,0.661168,0.214973,0.996158,0.307647,0.990533,0.495991,0.275576,0.886725,0.49418,0.751758,0.08044,0.459547,0.0397013,0.253802,0.713271,0.275694,0.918789,0.27947,0.566089,0.473793,0.145483,0.865798,0.800298,0.633584,0.337649,0.767346,0.257248,0.426281,0.454681,0.283291,0.0566638,0.656624,0.500906,0.000934303,0.0333394,0.601203,0.568408,0.475009,0.724579,0.564138,0.181228,0.879132,0.0782619,0.237258,0.327979,0.011651,0.487148,0.486483,0.588889,0.31568,0.736887,0.275751,0.677535,0.283393,0.60874,0.968111,0.844778,0.756088,0.5845,0.740887,0.586277,0.746346,0.264718,0.283211,0.522437,0.366008,0.629385,0.260125,0.584759,0.311263,0.114589,0.348144,0.980533,0.950863,0.0282767,0.207105,0.947892,0.761127,0.423076,0.512853,0.473225,0.320197,0.308445,0.345438,0.546606,0.468991,0.528358,0.680973,0.206995,0.997348,0.737693,0.841691,0.489288,0.213113,0.475253,0.21479,0.207959,0.657641,0.0874927,0.44723,0.947112,0.853767,0.73424,0.706276,0.154418,0.158719,0.585223,0.256631,0.566019,0.0467279,0.305178,0.0302997,0.537193,0.180762,0.0983067,0.474484,0.264793,0.871319,0.347375,0.628918,0.388173,0.484908,0.900931,0.135076,0.950309,0.500081,0.161309,0.143241,0.0733876,0.675954,0.234925,0.255281,0.324704,0.249581,0.607611,0.755068,0.519596,0.892462,0.827559,0.166878,0.491462,0.454229,0.848322,0.858375,0.747775,0.277018,0.260239,0.335402,0.263723,0.916642,0.210562,0.540996,0.287015,0.946736,0.685657,0.480429,0.344874,0.603888,0.42488,0.536869,0.804869,0.439051,0.195381,0.821261,0.983006,0.730036,0.471154,0.97043,0.173188,0.171905,0.840353,0.72938,0.914913,0.101935,0.600661,0.659039,0.0906588,0.157637,0.25614,0.399356,0.732539,0.79551,0.0157686,0.998729,0.979606,0.247161,0.393254,0.435363,0.39079,0.683738,0.789122,0.512674,0.708633,0.955728,0.332058,0.613461,0.686036,0.546966,0.808394,0.282963,0.0827116,0.283203,0.933617,0.107283,0.265759,0.0809537,0.993548,0.415752,0.637701,0.416176,0.664511,0.578026,0.82645,0.212379,0.647819,0.297324,0.225844,0.544954,0.91554,0.830962,0.162287,0.870047,0.444854,0.400359,0.403468,0.815562,0.170531,0.881365,0.573127,0.261196,0.461242,0.608156,0.44291,0.725569,0.972619,0.94862,0.0943497,0.00348681,0.907667,0.854564,0.896293,0.881932,0.751329,0.743196,0.678235,0.844047,0.0551588,0.757032,0.740116,0.750455,0.93639,0.977255,0.0937504,0.867975,0.966037,0.27011,0.737848,0.164455,0.598961,0.593178,0.532728,0.841126,0.0381415,0.0719767,0.32306,0.932283,0.258614,0.309832,0.956096,0.775854,0.666187,0.993122,0.443022,0.51235,0.263186,0.944418,0.370188,0.722664,0.235893,0.321101,0.18197,0.835319,0.403732,0.756834,0.0393507,0.845182,0.816084,0.556428,0.101964,0.453981,0.977549,0.0654781,0.29739,0.68049,0.160484,0.543925,0.432559,0.795949,0.0481356,0.565527,0.215682,0.0993053,0.682624,0.210108,0.619131,0.838131,0.349655,0.721201,0.954013,0.11794,0.210502,0.405069,0.424711,0.625187,0.435388,0.275699,0.706648,0.216507,0.159794,0.6162,0.238506,0.911069,0.581241,0.254681,0.0120043,0.0521067,0.302901,0.939472,0.581494,0.291732,0.400884,0.549866,0.429329,0.121255,0.0990516,0.62051,0.0133336,0.635113,0.00445944,0.529365,0.426654,0.340086,0.646273,0.144223,0.266404,0.219156,0.659014,0.123331,0.629882,0.311861,0.210123,0.221126,0.0645213,0.46975,0.0445628,0.963164,0.736678,0.311816,0.972652,0.0213247,0.194272,0.808515,0.317364,0.598041,0.324076,0.32609,0.97655,0.962201,0.115647,0.685518,0.877701,0.620773,0.687392,0.24847,0.468876,0.946807,0.946473,0.459751,0.291907,0.56026,0.808917,0.187509,0.869509,0.21812,0.723025,0.189823,0.457863,0.778298,0.0144244,0.185186,0.105945,0.392677,0.397859,0.264405,0.230033,0.410807,0.276778,0.294744,0.830363,0.812654,0.517035,0.949676,0.546907,0.480609,0.60454,0.807797,0.543426,0.426125,0.0723847,0.750898,0.363771,0.774507,0.92222,0.373312,0.632192,0.731029,0.793933,0.857537,0.339039,0.691087,0.580359,0.882641,0.569159,0.141987,0.896206,0.445551,0.00846803,0.84286,0.0875497,0.979234,0.326934,0.922631,0.613099,0.973424,0.200373,0.614595,0.557525,0.320203,0.278626,0.951288,0.698819,0.540557,0.192726,0.705805,0.994385,0.581751,0.225565,0.534703,0.11678,0.881794,0.429656,0.936827,0.719581,0.514185,0.300101,0.887659,0.615244,0.814217,0.0358772,0.443149,0.146533,0.0389887,0.87421,0.79078,0.252359,0.690018,0.591831,0.637533,0.877888,0.120925,0.747189,0.171516,0.592697,0.641288,0.916443,0.295054,0.214386,0.0147153,0.450902,0.0256492,0.51925,0.377552,0.7586,0.102851,0.645339,0.655016,0.0321161,0.0572231,0.409637,0.572285,0.563658,0.867877,0.377709,0.240073,0.731639,0.468563,0.179377,0.155853,0.617193,0.281916,0.0256342,0.54052,0.120708,0.722786,0.40134,0.284991,0.74233,0.270277,0.236232,0.0250089,0.793285,0.879966,0.527055,0.877264,0.761842,0.66665,0.600453,0.827468,0.38989,0.554141,0.130974,0.73426,0.097595,0.805531,0.675084,0.25251,0.220754,0.483915,0.393422,0.0950356,0.917965,0.430031,0.281154,0.753034,0.825662,0.881574,0.0820392,0.942972,0.714129,0.477523,0.98578,0.538896,0.259303,0.73506,0.786484,0.815733,0.728037,0.811817,0.344389,0.985357,0.61787,0.991154,0.0104339,0.105593,0.622436,0.124751,0.763911,0.142309,0.501417,0.353548,0.48439,0.722989,0.301148,0.674167,0.883703,0.698867,0.507933,0.52342,0.296609,0.488282,0.913017,0.0542957,0.892543,0.991352,0.457744,0.606624,0.0734686,0.728615,0.956948,0.92341,0.492527,0.557321,0.314007,0.247764,0.320437,0.546073,0.68732,0.991247,0.110322,0.707325,0.732854,0.391516,0.397485,0.00918192,0.46167,0.50161,0.595026,0.3387,0.454292,0.106087,0.486735,0.543411,0.0154122,0.784249,0.651244,0.282739,0.211142,0.726847,0.130137,0.302071,0.197233,0.307991,0.538196,0.556704,0.716341,0.444775,0.244595,0.238011,0.0265622,0.992767,0.0659726,0.700111,0.499149,0.483196,0.913039,0.830066,0.883226,0.712004,0.761377,0.24356,0.402632,0.156587,0.299474,0.634506,0.957299,0.32579,0.625418,0.279452,0.159995,0.647959,0.345986,0.393156,0.795658,0.835608,0.209538,0.692273,0.435345,0.907045,0.915722,0.37146,0.4957,0.725772,0.0638474,0.662846,0.579785,0.241784,0.45452,0.197475,0.479383,0.451886,0.30465,0.923725,0.663706,0.0926183,0.954821,0.59575,0.875864,0.302359,0.26806,0.235495,0.430971,0.257903,0.128245,0.176849,0.694402,0.302336,0.734917,0.709528,0.250983,0.581105,0.680325,0.617921,0.977157,0.989759,0.340458,0.113835,0.139568,0.146851,0.374943,0.96426,0.301233,0.775108,0.955602,0.63402,0.92303,0.193832,0.99012,0.146665,0.686301,0.128119,0.76664,0.417289,0.507675,0.353133,0.335413,0.776323,0.870692,0.0713238,0.353689,0.370198,0.775852,0.994546,0.933706,0.569072,0.094335,0.855112,0.087023,0.618468,0.986125,0.309804,0.82702,0.477944,0.347338,0.834715,0.770162,0.232457,0.923395,0.706365,0.127256,0.863382,0.186673,0.739401,0.978562,0.0940755,0.236471,0.112582,0.914546,0.294673,0.262814,0.618325,0.900699,0.0201598,0.276881,0.38178,0.257565,0.86264,0.963114,0.765371,0.67378,0.799263,0.708382,0.751094,0.0625833,0.677621,0.00457472,0.0884824,0.163346,0.673636,0.376398,0.31306,0.738138,0.282438,0.557269,0.0770462,0.134863,0.749086,0.879951,0.837031,0.77579,0.534153,0.559824,0.416879,0.862533,0.611747,0.417017,0.755839,0.98782,0.758587,0.459995,0.484118,0.108654,0.039015,0.320244,0.653156,0.578878,0.588582,0.754116,0.343531,0.800932,0.406897,0.753515,0.668785,0.336537,0.0855232,0.5807,0.863697,0.424824,0.548155,|0.0151267,0.383402,0.705286,0.826666,0.905747,0.754524,0.195896,0.885083,0.211007,0.742648,0.714475,0.186042,0.505774,0.0189019,0.194744,0.192239,0.328534,0.0762995,0.671555,0.813645,0.799292,0.853819,0.834165,0.291641,0.168312,0.760053,0.98409,0.356583,0.498291,0.177141,0.427981,0.632312,0.534852,0.917997,0.815774,0.801778,0.627449,0.34041,0.597551,0.666035,0.170024,0.186543,0.424212,0.374477,0.0827205,0.597626,0.897918,0.194998,0.457326,0.0376271,0.412542,0.520324,0.416659,0.359373,0.877627,0.0420641,0.771744,0.739513,0.215425,0.0707126,0.337035,0.7243,0.308525,0.0386214,0.776691,0.0593461,0.872768,0.303462,0.110102,0.855138,0.959431,0.169264,0.735499,0.446482,0.0446578,0.508631,0.862879,0.154538,0.783331,0.821719,0.110381,0.343333,0.722117,0.898203,0.205699,0.892037,0.605866,0.932593,0.405396,0.494354,0.922409,0.565947,0.821284,0.846656,0.256699,0.858732,0.171895,0.926381,0.623404,0.600916,0.0335208,0.606867,0.241464,0.0412465,0.704391,0.735089,0.559323,0.649077,0.509519,0.748512,0.34437,0.119307,0.767934,0.29537,0.685119,0.819419,0.457764,0.115797,0.715613,0.168778,0.92003,0.146276,0.650202,0.601641,0.733615,0.594238,0.950656,0.366389,0.682048,0.323803,0.994676,0.421929,0.316089,0.821676,0.0347419,0.103383,0.170903,0.0934294,0.401569,0.572906,0.503292,0.479027,0.143984,0.401821,0.374213,0.52685,0.557952,0.503442,0.154658,0.493808,0.393423,0.809984,0.897979,0.710361,0.236014,0.00924248,0.385615,0.120259,0.345152,0.475473,0.969485,0.987325,0.805961,0.281963,0.406351,0.921935,0.0192667,0.572247,0.138816,0.269212,0.361387,0.689092,0.162525,0.146792,0.723137,0.0225715,0.947856,0.601642,0.864399,0.924058,0.809762,0.274804,0.824297,0.185045,0.160319,0.105256,0.531908,0.785872,0.161636,0.623524,0.452469,0.705886,0.458031,0.885154,0.405638,0.438136,0.738976,0.287345,0.932957,0.134389,0.365061,0.945346,0.128962,0.450426,0.862099,0.301348,0.416171,0.703629,0.81402,0.992677,0.350396,0.160497,0.541566,0.766794,0.724057,0.82676,0.96109,0.622457,0.106293,0.071479,0.979195,0.928661,0.74562,0.789723,0.567736,0.685514,0.645529,0.956637,0.798538,0.116797,0.659404,0.0547988,0.618502,0.536152,0.508334,0.859503,0.124044,0.745178,0.708785,0.479087,0.444057,0.180512,0.0250549,0.862059,0.7483,0.477154,0.651436,0.467099,0.273779,0.0804569,0.635721,0.0849053,0.356667,0.750741,0.831608,0.40827,0.804941,0.676922,0.996849,0.334367,0.927493,0.286773,0.951948,0.561971,0.134393,0.0267574,0.967843,0.030679,0.792623,0.656332,0.00653607,0.675044,0.579212,0.150412,0.974184,0.56912,0.493058,0.554588,0.519406,0.360478,0.814419,0.248736,0.185999,0.684596,0.700001,0.834863,0.566258,0.930751,0.196908,0.384457,0.766545,0.384647,0.753376,0.813865,0.514463,0.516195,0.520162,0.338819,0.45721,0.687758,0.968126,0.018653,0.458313,0.260763,0.730352,0.626386,0.92907,0.790801,0.587514,0.236999,0.0260121,0.723472,0.802325,0.486607,0.459433,0.0300584,0.1297,0.791219,0.0322703,0.218849,0.861628,0.962303,0.991844,0.485551,0.239585,0.510052,0.130635,0.562161,0.517275,0.535542,0.148204,0.979553,0.689489,0.206339,0.907389,0.376144,0.0860813,0.91285,0.53604,0.539616,0.922087,0.0390665,0.86658,0.987136,0.733685,0.61451,0.709044,0.750056,0.643118,0.966559,0.368319,0.0348246,0.964798,0.597177,0.0851302,0.781919,0.0618263,0.46529,0.297885,0.801597,0.966462,0.792337,0.72828,0.0089705,0.586436,0.328701,0.174974,0.915623,0.559266,0.973958,0.805739,0.423256,0.794059,0.811098,0.612571,0.032774,0.510142,0.190875,0.570253,0.670411,0.651067,0.102305,0.875832,0.465913,0.475595,0.0947769,0.744208,0.00855368,0.185941,0.29904,0.643597,0.809095,0.684304,0.470867,0.839223,0.430391,0.533377,0.994689,0.948585,0.294103,0.591581,0.877819,0.0276651,0.377003,0.307249,0.861866,0.627813,0.996472,0.129533,0.210362,0.162944,0.130695,0.329722,0.98459,0.264753,0.157499,0.355357,0.698096,0.180001,0.585881,0.525967,0.614103,0.229525,0.877285,0.00790155,0.148126,0.893713,0.207808,0.477001,0.24421,0.997095,0.72695,0.651621,0.173679,0.41031,0.187937,0.524769,0.962229,0.667013,0.698364,0.100042,0.867764,0.531495,0.532885,0.0246102,0.435369,0.480016,0.748218,0.373541,0.278058,0.431304,0.862941,0.110803,0.421072,0.882542,0.647969,0.622059,0.0076713,0.287446,0.547048,0.864381,0.138512,0.421086,0.429813,0.475917,0.877877,0.130554,0.123732,0.190495,0.29051,0.253533,0.837567,0.379162,0.717233,0.631543,0.302214,0.601565,0.430709,0.739073,0.493413,0.380804,0.386942,0.916004,0.625065,0.0904586,0.99018,0.578811,0.934931,0.31946,0.765411,0.8743,0.855539,0.375429,0.927453,0.119148,0.696553,0.937791,0.891039,0.591114,0.353865,0.912546,0.533807,0.808287,0.0717447,0.922506,0.20438,0.942161,0.422502,0.517774,0.933469,0.216352,0.728817,0.238281,0.323981,0.926993,0.620102,0.825254,0.778041,0.778427,0.583505,0.511292,0.673158,0.742741,0.654042,0.00766724,0.035676,0.545885,0.798556,0.439521,0.957266,0.129196,0.225782,0.293407,0.133663,0.663516,0.0457317,0.643308,0.416329,0.863914,0.814878,0.252636,0.508356,0.591285,0.879714,0.114928,0.311198,0.733339,0.773622,0.182491,0.812174,0.94518,0.0739008,0.702554,0.436291,0.534782,0.000525415,0.695888,0.800188,0.664201,0.78531,0.716739,0.045729,0.902512,0.671456,0.553305,0.52486,0.960157,0.958634,0.923667,0.434749,0.142221,0.452253,0.100543,0.0723838,0.230051,0.568054,0.395953,0.718087,0.136646,0.613683,0.303831,0.642148,0.949833,0.168535,0.889285,0.479279,0.897173,0.23083,0.847545,0.235537,0.248047,0.402451,0.846211,0.946948,0.813155,0.480697,0.862433,0.529211,0.32075,0.728423,0.106974,0.512299,0.817028,0.665201,0.447506,0.950205,0.1774,0.356151,0.828018,0.436823,0.215395,0.589074,0.21989,0.944821,0.68422,0.671072,0.570071,0.645388,0.812524,0.809726,0.886393,0.570023,0.0428522,0.94735,0.658948,0.155581,0.192963,0.422668,0.859256,0.0705442,0.488258,0.013592,0.922754,0.00345618,0.603793,0.0670897,0.571246,0.840747,0.053001,0.0781447,0.254739,0.512119,0.976999,0.184498,0.351384,0.261854,0.939796,0.560743,0.974108,0.776995,0.766973,0.0741649,0.163934,0.164639,0.197639,0.150177,0.76178,0.334229,0.0585571,0.63394,0.266261,0.247309,0.616204,0.141573,0.221937,0.939405,0.0439838,0.864259,0.781944,0.948793,0.360239,0.350604,0.888753,0.260194,0.665697,0.607233,0.667865,0.741995,0.853541,0.885672,0.0207394,0.0391542,0.615961,0.886458,0.491345,0.170255,0.293104,0.213475,0.158354,0.649963,0.656109,0.791003,0.520527,0.343433,0.564415,0.350376,0.586099,0.123574,0.697713,0.276315,0.882391,0.00159049,0.0623077,0.601191,0.114732,0.20294,0.78883,0.457168,0.855488,0.774691,0.336178,0.736086,0.939701,0.318721,0.144261,0.0327846,0.703105,0.689713,0.560118,0.996551,0.75337,0.707611,0.255695,0.00630462,0.0455856,0.487858,0.512915,0.0334238,0.144345,0.766616,0.536248,0.996608,0.307192,0.00808465,0.385519,0.622657,0.506152,0.718287,0.58555,0.926702,0.972866,0.772293,0.321477,0.422591,0.758817,0.508063,0.384726,0.800228,0.475304,0.186177,0.937917,0.502069,0.762662,0.341989,0.0966135,0.362847,0.956573,0.997942,0.398069,0.171642,0.346159,0.237623,0.608097,0.837579,0.724154,0.128294,0.60526,0.0676419,0.711892,0.559121,0.0619836,0.111929,0.452017,0.964289,0.482093,0.504942,0.815027,0.558906,0.301158,0.813076,0.729611,0.912014,0.592645,0.0596316,0.561257,0.325354,0.625799,0.571474,0.640921,0.728661,0.330617,0.777917,0.681513,0.0733399,0.682446,0.709238,0.732496,0.249831,0.23325,0.0893873,0.788691,0.421086,0.0243441,0.0475226,0.328279,0.800284,0.717237,0.612992,0.789253,0.603381,0.514008,0.103464,0.700949,0.561744,0.383422,0.821992,0.0340739,0.763347,0.743006,0.408799,0.462233,0.0969595,0.303321,0.915366,0.43827,0.413851,0.751696,0.334458,0.124771,0.3272,0.0205531,0.118056,0.634143,0.759178,0.838174,0.36169,0.800851,0.957636,0.679609,0.23312,0.146447,0.854863,0.849092,0.180881,0.587294,0.343058,0.486409,0.813547,0.640225,0.815466,0.685421,0.594651,0.239631,0.676526,0.800286,0.0197568,0.241339,0.985287,0.432502,0.980215,0.595662,0.348469,0.920439,0.145735,0.524297,0.644674,0.68564,0.4409,0.412858,0.630374,0.715444,0.392974,0.586765,0.799393,0.875384,0.155028,0.55279,0.5364,0.467104,0.599406,0.900465,0.645452,0.995881,0.880868,0.677959,0.482599,0.971668,0.460334,0.195801,0.282816,0.574962,0.15127,0.797238,0.908056,0.216018,0.61709,0.144094,0.966834,0.0531468,0.0839442,0.954648,0.336418,0.283112,0.337124,0.999494,0.927114,0.842037,0.459873,0.234044,0.706159,0.535913,0.315459,0.00449961,0.147168,0.493977,0.105862,0.959411,0.477423,0.555785,0.296147,0.412848,0.451742,0.694573,0.994281,0.347244,0.590117,0.708165,0.935454,0.419814,0.614548,0.211048,0.675596,0.981749,0.430608,0.703822,0.0875934,0.417157,0.766237,0.515879,0.348241,0.273962,0.549379,0.884423,0.227791,0.787462,0.828155,0.259745,0.516086,0.150758,0.839949,0.807668,0.453157,0.0754605,0.834833,0.8772,0.504064,0.256343,0.765391,0.64613,0.399411,0.0878628,0.465922,0.0173397,0.957791,0.274778,0.650199,0.277767,0.542625,0.959503,0.69745,0.0140485,0.0416597,0.891304,0.572628,0.243287,0.389877,0.925221,0.634211,0.661018,0.0920774,0.123434,0.802129,0.632519,0.739692,0.243252,0.916441,0.90875,0.556796,0.726695,0.168032,0.309756,0.43814,0.478838,0.889954,0.28433,0.958454,0.882287,0.20699,0.634514,0.595106,|0.498654,0.427461,0.696063,0.288669,0.983265,0.345616,0.68289,0.0402281,0.730521,0.584851,0.618451,0.140841,0.0136273,0.115749,0.287726,0.188604,0.844675,0.779896,0.424155,0.386923,0.553304,0.219736,0.893622,0.254706,0.982863,0.242994,0.508727,0.677068,0.870159,0.922902,0.722977,0.58078,0.900965,0.81499,0.226988,0.622452,0.925956,0.682605,0.601961,0.0149552,0.667806,0.141399,0.0403656,0.580782,0.244822,0.98686,0.532852,0.713507,0.423537,0.867817,0.387694,0.016819,0.309807,0.878134,0.781667,0.0992079,0.0844392,0.150343,0.399499,0.199217,0.0433877,0.0267304,0.999522,0.394521,0.350776,0.170006,0.0742698,0.362584,0.711537,0.0779073,0.943564,0.745625,0.419779,0.130579,0.0210424,0.427903,0.790913,0.017538,0.797168,0.564798,0.331245,0.0867567,0.026211,0.582107,0.212029,0.126993,0.833165,0.630313,0.118524,0.962806,0.829485,0.439756,0.873161,0.116654,0.455253,0.657665,0.701554,0.184008,0.114035,0.358849,0.133942,0.756377,0.234573,0.961024,0.242247,0.507083,0.645101,0.416097,0.438801,0.777446,0.949005,0.756534,0.302045,0.750761,0.591573,0.154709,0.704391,0.603166,0.285223,0.588899,0.218637,0.383868,0.528263,0.966772,0.979367,0.140606,0.557808,0.148803,0.921597,0.703828,0.290707,0.136332,0.784947,0.58823,0.290742,0.790342,0.831178,0.216829,0.186994,0.307829,0.133245,0.683752,0.806526,0.205084,0.296021,0.711828,0.919479,0.874523,0.711879,0.206559,0.613939,0.255562,0.74474,0.0869641,0.801064,0.52806,0.0603292,0.863141,0.542455,0.226638,0.849036,0.733643,0.731672,0.400762,0.753889,0.977896,0.0939014,0.813784,0.390169,0.349778,0.468772,0.925467,0.231286,0.835086,0.574379,0.222039,0.21043,0.165589,0.656557,0.30248,0.139489,0.470141,0.244104,0.282341,0.0191585,0.917635,0.705598,0.502231,0.877922,0.127831,0.196774,0.718094,0.695901,0.282407,0.81328,0.278229,0.311158,0.354419,0.997053,0.83466,0.659259,0.16423,0.948445,0.686229,0.0442886,0.957938,0.62005,0.798718,0.770823,0.800805,0.932939,0.750998,0.0551419,0.543181,0.750455,0.466261,0.95172,0.563902,0.302326,0.817796,0.417691,0.735071,0.775322,0.861386,0.138817,0.561628,0.331568,0.469198,0.306415,0.383574,0.524601,0.961056,0.783835,0.0876586,0.468526,0.581345,0.339273,0.897495,0.0880231,0.117432,0.0110041,0.582782,0.0451062,0.00554329,0.589165,0.188665,0.1909,0.0413089,0.387164,0.276615,0.0290617,0.846288,0.64445,0.861556,0.0144123,0.405547,0.906285,0.358421,0.388423,0.62992,0.731718,0.45478,0.261881,0.615521,0.049764,0.297213,0.667969,0.624251,0.604612,0.201293,0.582665,0.633389,0.576303,0.550626,0.893447,0.400683,0.495446,0.120764,0.556884,0.131152,0.774809,0.266148,0.362615,0.781677,0.734399,0.661143,0.247409,0.365209,0.450084,0.304186,0.382924,0.382573,0.0560758,0.763746,0.166672,0.898523,0.568027,0.0623261,0.385889,0.78886,0.17962,0.326285,0.228335,0.271348,0.749585,0.259045,0.816045,0.181617,0.65823,0.235615,0.991376,0.974314,0.403033,0.741252,0.980473,0.760426,0.0652279,0.702734,0.489834,0.670416,0.373716,0.209839,0.113081,0.950778,0.855004,0.181218,0.00111181,0.487389,0.774935,0.32894,0.722363,0.751627,0.148221,0.78301,0.188057,0.593978,0.80124,0.499996,0.532651,0.402694,0.436991,0.517764,0.615687,0.215358,0.391129,0.612494,0.863335,0.402901,0.571912,0.515301,0.179482,0.915722,0.236664,0.810075,0.854218,0.158803,0.260667,0.0278977,0.274076,0.2134,0.815396,0.748768,0.509852,0.264944,0.177923,0.292028,0.341809,0.269,0.424642,0.76885,0.871016,0.151014,0.368542,0.308898,0.147951,0.106207,0.299508,0.414335,0.88889,0.922237,0.451471,0.211996,0.104159,0.187265,0.820368,0.262082,0.633258,0.0918662,0.387516,0.536275,0.0282667,0.592997,0.143823,0.56796,0.875421,0.385394,0.931536,0.117101,0.0624276,0.00190794,0.365202,0.211785,0.580469,0.12619,0.61885,0.690086,0.0278863,0.937834,0.733835,0.846935,0.369448,0.512602,0.811346,0.204391,0.114057,0.753708,0.945219,0.81428,0.822863,0.404358,0.78588,0.204685,0.948573,0.971194,0.0900692,0.421542,0.303243,0.859103,0.571103,0.39888,0.646693,0.0964572,0.215699,0.141971,0.929556,0.880175,0.68889,0.747097,0.836769,0.79868,0.578727,0.831854,0.781565,0.116244,0.545106,0.878101,0.720033,0.0427806,0.253246,0.531502,0.777555,0.682366,0.190994,0.901021,0.968808,0.236484,0.827643,0.861121,0.879851,0.48435,0.840106,0.942178,0.165809,0.921921,0.430029,0.553441,0.776072,0.595532,0.40883,0.890204,0.310239,0.256361,0.514508,0.759367,0.450384,0.750178,0.104208,0.0830592,0.0580509,0.799613,0.654443,0.984978,0.551131,0.0898578,0.354743,0.337579,0.949669,0.209771,0.955916,0.844046,0.101878,0.154278,0.121055,0.969162,0.874685,0.904397,0.897149,0.317788,0.728192,0.712223,0.341452,0.436628,0.295938,0.362231,0.671918,0.19912,0.917248,0.320023,0.0770139,0.40111,0.0746968,0.311771,0.918091,0.117496,0.778156,0.416434,0.0736437,0.910029,0.831741,0.0191327,0.246638,0.109309,0.394409,0.670739,0.300884,0.0922479,0.779835,0.89487,0.891728,0.246932,0.591837,0.444079,0.906867,0.644093,0.178211,0.0837933,0.173779,0.88135,0.829229,0.462575,0.230076,0.583982,0.297052,0.295327,0.567568,0.416077,0.155379,0.803627,0.362063,0.151967,0.163367,0.944045,0.250566,0.655367,0.0381785,0.610204,0.3685,0.139881,0.381866,0.388831,0.253378,0.836406,0.807819,0.458285,0.0366858,0.746863,0.420389,0.149217,0.873204,0.89894,0.0281043,0.73229,0.597748,0.0321945,0.879243,0.338274,0.44806,0.918611,0.22971,0.58256,0.29732,0.401056,0.576692,0.919465,0.420153,0.530097,0.602383,0.646618,0.926866,0.822176,0.179273,0.738844,0.720048,0.346518,0.347529,0.974047,0.163397,0.719743,0.738121,0.107548,0.221614,0.151734,0.297109,0.224186,0.984797,0.893652,0.00724566,0.0300805,0.711982,0.95665,0.784947,0.369517,0.644422,0.450066,0.199919,0.849666,0.264496,0.465328,0.686386,0.550131,0.549845,0.727479,0.975944,0.315842,0.0718615,0.925092,0.567326,0.586948,0.362833,0.380369,0.106134,0.39818,0.25031,0.956452,0.37971,0.752562,0.415904,0.500135,0.059052,0.0112837,0.688851,0.937721,0.0235984,0.630979,0.456082,0.163675,0.0236332,0.957123,0.636541,0.347633,0.850233,0.263956,0.695,0.201854,0.118465,0.892163,0.541452,0.12009,0.728872,0.060892,0.567291,0.19898,0.818777,0.880074,0.964661,0.735009,0.135547,0.0590653,0.911758,0.939196,0.722053,0.538003,0.193929,0.572102,0.781731,0.666398,0.294514,0.781375,0.526298,0.0648151,0.039468,0.198514,0.578465,0.791672,0.16227,0.557029,0.100876,0.678551,0.133168,0.0224441,0.650847,0.473819,0.0564136,0.495781,0.999953,0.316298,0.30812,0.33527,0.107551,0.618524,0.883358,0.203084,0.919919,0.0822367,0.439406,0.913751,0.647404,0.64804,0.495591,0.547326,0.0268329,0.54882,0.636661,0.475055,0.0819145,0.3058,0.700148,0.481695,0.737305,0.625391,0.708682,0.47318,0.563429,0.55541,0.589748,0.585745,0.262031,0.00250512,0.107452,0.0506634,0.944196,0.90242,0.377796,0.325854,0.43039,0.261297,0.295869,0.849348,0.716706,0.524566,0.146732,0.00650483,0.15748,0.691377,0.482786,0.962423,0.873909,0.441465,0.873802,0.0752846,0.75917,0.0643917,0.815458,0.723786,0.153021,0.539198,0.812848,0.504693,0.0495318,0.285217,0.239487,0.791975,0.376919,0.332379,0.758142,0.250658,0.183914,0.123598,0.923143,0.797083,0.00139326,0.400895,0.65949,0.237681,0.0538997,0.697709,0.0865039,0.483058,0.97435,0.430119,0.173862,0.814213,0.425943,0.263284,0.841231,0.0688552,0.598725,0.172413,0.0970998,0.972321,0.622544,0.251949,0.552917,0.698825,0.44046,0.269826,0.190091,0.133652,0.210446,0.344283,0.508023,0.325913,0.798495,0.0486718,0.715736,0.700467,0.891806,0.150643,0.508284,0.844391,0.894705,0.542258,0.836406,0.0758785,0.637073,0.764244,0.326637,0.980771,0.530828,0.999806,0.454211,0.340037,0.254846,0.894204,0.450423,0.950986,0.0363854,0.636206,0.826923,0.092553,0.81866,0.079192,0.0658678,0.483196,0.937131,0.903112,0.152176,0.232842,0.354298,0.0724814,0.388649,0.973453,0.638845,0.164161,0.218001,0.406329,0.494022,0.458661,0.59602,0.400761,0.611651,0.608983,0.676378,0.0350371,0.351532,0.842422,0.218173,0.610749,0.65454,0.185205,0.0545394,0.557452,0.710015,0.056394,0.479075,0.943069,0.381128,0.450167,0.919605,0.114412,0.99672,0.755505,0.412844,0.330303,0.217748,0.338117,0.112932,0.445049,0.0262134,0.921457,0.834803,0.125443,0.184029,0.736502,0.352498,0.349617,0.895416,0.961452,0.145315,0.483846,0.673808,0.69996,0.402342,0.505664,0.488122,0.880218,0.215265,0.613956,0.22684,0.927768,0.051484,0.236057,0.0640982,0.015202,0.998824,0.826775,0.189286,0.50402,0.281547,0.603818,0.968934,0.815718,0.00687695,0.295068,0.442903,0.933131,0.166675,0.00306875,0.466105,0.924587,0.102051,0.35227,0.0323436,0.602487,0.983276,0.826568,0.222864,0.20469,0.565996,0.874405,0.299836,0.100925,0.703658,0.347064,0.457202,0.420088,0.621557,0.034094,0.422351,0.506859,0.729532,0.64407,0.429732,0.0461549,0.600516,0.52412,0.979202,0.976373,0.535954,0.34575,0.475815,0.189493,0.112985,0.16635,0.383722,0.489087,0.522298,0.447455,0.628549,0.182764,0.168105,0.793009,0.667078,0.623639,0.0619964,0.714543,0.660473,0.867821,0.0199609,0.531251,0.429312,0.925813,0.297646,0.690354,0.0797656,0.374673,0.129519,0.947147,0.588357,0.74233,0.738003,0.13331,0.113331,0.579372,0.725136,0.282815,0.257355,0.727477,0.726541,0.318706,0.359181,0.432669,0.871148,0.0406719,0.790383,0.547106,0.503768,0.460278,0.612366,0.380893,|0.0112144,0.267662,0.0516458,0.375994,0.105513,0.934167,0.644075,0.155187,0.678615,0.65037,0.72566,0.112721,0.561319,0.370394,0.688842,0.0240635,0.00166255,0.870648,0.888061,0.302011,0.167106,0.956578,0.545758,0.883655,0.117105,0.0367873,0.17812,0.0949049,0.316526,0.613848,0.260653,0.618794,0.488537,0.660725,0.693441,0.766722,0.902138,0.960907,0.42861,0.7403,0.26604,0.160126,0.652671,0.627408,0.995681,0.0663729,0.419962,0.463291,0.16646,0.482802,0.180052,0.0958,0.544261,0.767154,0.782095,0.998402,0.392584,0.673437,0.353149,0.0904387,0.985707,0.762903,0.859916,0.690888,0.559708,0.123145,0.561596,0.0265138,0.899006,0.637048,0.718395,0.752245,0.699583,0.775645,0.791708,0.794661,0.351719,0.721155,0.0701954,0.364343,0.828147,0.373558,0.688152,0.584887,0.964558,0.885902,0.605198,0.650906,0.399938,0.523647,0.973955,0.686107,0.256606,0.806071,0.980956,0.360265,0.152843,0.0163447,0.114625,0.970029,0.304604,0.635147,0.730815,0.385928,0.56224,0.994064,0.464651,0.923726,0.907958,0.408645,0.659807,0.876175,0.481646,0.419938,0.372753,0.883742,0.0755981,0.129719,0.825649,0.462273,0.55543,0.179873,0.861586,0.616336,0.879973,0.606571,0.874133,0.164061,0.523924,0.0693762,0.0205949,0.440862,0.15701,0.202344,0.897306,0.923254,0.78732,0.290115,0.812344,0.609951,0.968068,0.646675,0.85908,0.591422,0.35839,0.686514,0.196799,0.739738,0.636077,0.99482,0.400511,0.141301,0.233849,0.89431,0.0413899,0.452716,0.502757,0.30521,0.708268,0.0456583,0.82608,0.502405,0.468678,0.523221,0.34371,0.649288,0.353656,0.238046,0.339063,0.257325,0.378319,0.89064,0.867611,0.461383,0.211714,0.690472,0.73705,0.0261309,0.311743,0.726528,0.305218,0.443208,0.268609,0.190014,0.726621,0.362918,0.3833,0.88995,0.111408,0.512028,0.829039,0.664245,0.88124,0.267235,0.00159842,0.477704,0.767394,0.160391,0.00201213,0.296466,0.616445,0.935336,0.0444423,0.824805,0.683146,0.93437,0.600418,0.895083,0.0723388,0.60121,0.106707,0.097863,0.755825,0.204165,0.812886,0.925083,0.728455,0.429962,0.0897318,0.552495,0.338779,0.508741,0.544954,0.676548,0.81994,0.219692,0.175998,0.201845,0.797958,0.255639,0.610272,0.384882,0.06822,0.467466,0.792461,0.0498526,0.00796264,0.207913,0.659281,0.928951,0.206254,0.0514553,0.590347,0.0802978,0.845199,0.484429,0.485599,0.811222,0.547883,0.24574,0.996632,0.704409,0.361705,0.089453,0.605751,0.20144,0.432253,0.835635,0.325811,0.754076,0.750322,0.964685,0.0186927,0.871655,0.678859,0.277574,0.784004,0.973492,0.713586,0.459976,0.72882,0.282012,0.649382,0.159752,0.580656,0.228659,0.410943,0.879915,0.980133,0.0566652,0.678027,0.465155,0.51538,0.111633,0.999382,0.700957,0.565522,0.16291,0.856081,0.883734,0.919641,0.811853,0.433188,0.633243,0.373102,0.0504121,0.379338,0.625375,0.841604,0.348723,0.567212,0.997053,0.740045,0.922159,0.889372,0.691854,0.845717,0.80572,0.439464,0.148343,0.760548,0.574284,0.0991503,0.291388,0.773605,0.501062,0.714936,0.736447,0.594281,0.356259,0.642319,0.136953,0.91453,0.603289,0.728856,0.907725,0.0334585,0.124737,0.692336,0.30342,0.202442,0.742866,0.478212,0.554121,0.40093,0.47805,0.354154,0.757607,0.18015,0.582765,0.0300976,0.243541,0.172626,0.672018,0.951547,0.805223,0.999744,0.479281,0.69074,0.111303,0.241072,0.914488,0.0997791,0.580006,0.292373,0.124471,0.0663202,0.962003,0.770979,0.691619,0.72743,0.443181,0.428785,0.579485,0.881254,0.23157,0.646918,0.55125,0.480308,0.168063,0.28739,0.586322,0.829823,0.989714,0.956773,0.184822,0.105397,0.875395,0.312073,0.688795,0.268594,0.676346,0.134887,0.183722,0.544385,0.0363014,0.188948,0.688072,0.704823,0.982276,0.995526,0.83573,0.397092,0.471163,0.536364,0.0553411,0.95344,0.526983,0.131414,0.320314,0.531532,0.407589,0.873331,0.811406,0.714324,0.267273,0.199244,0.362332,0.840917,0.0662763,0.55704,0.336201,0.903811,0.540081,0.0814322,0.541533,0.640468,0.592047,0.504137,0.755049,0.780986,0.77699,0.500816,0.978999,0.401684,0.533344,0.120535,0.247483,0.81672,0.275108,0.592772,0.573535,0.989335,0.734647,0.185809,0.0322888,0.795524,0.572631,0.729191,0.808053,0.789521,0.188581,0.817096,0.503006,0.272221,0.163499,0.683156,0.735747,0.966604,0.753607,0.0664203,0.200706,0.116614,0.0795881,0.194974,0.0253139,0.531738,0.00437087,0.673239,0.591316,0.62914,0.772543,0.788568,0.453066,0.240382,0.500302,0.583085,0.579454,0.946681,0.0479799,0.513408,0.963903,0.656959,0.89451,0.964052,0.908737,0.363394,0.0261074,0.13594,0.796258,0.414948,0.960259,0.804561,0.484984,0.508891,0.31069,0.928508,0.5302,0.47926,0.933455,0.382831,0.443205,0.381317,0.52622,0.539028,0.69366,0.145662,0.909556,0.666756,0.350569,0.750034,0.702723,0.950459,0.778467,0.136217,0.319282,0.519876,0.35855,0.48707,0.165607,0.584732,0.660424,0.474791,0.0846875,0.230309,0.335203,0.82977,0.239179,0.194578,0.625557,0.301497,0.340716,0.743087,0.137109,0.775186,0.646524,0.00175864,0.123207,0.0861413,0.453452,0.437586,0.358961,0.0715901,0.649863,0.135518,0.798623,0.816889,0.344485,0.234281,0.131615,0.44135,0.237841,0.709831,0.502749,0.431271,0.593445,0.384127,0.514613,0.409741,0.836225,0.478923,0.109866,0.790345,0.302229,0.324474,0.696253,0.933945,0.149551,0.740538,0.344241,0.263371,0.68156,0.903625,0.682686,0.116065,0.320315,0.542242,0.00949109,0.0168353,0.526179,0.346426,0.793032,0.321063,0.876743,0.293519,0.869516,0.341305,0.0236548,0.416886,0.611174,0.813702,0.539847,0.364859,0.435488,0.120962,0.737266,0.863393,0.0958444,0.127571,0.325985,0.583092,0.729464,0.416844,0.311199,0.68128,0.710712,0.561474,0.375803,0.103284,0.118365,0.0555819,0.476491,0.167397,0.439619,0.41556,0.720962,0.864323,0.794732,0.0282327,0.840052,0.429636,0.0888779,0.46163,0.487383,0.127508,0.457037,0.475232,0.996227,0.548994,0.478789,0.271553,0.282977,0.82787,0.876623,0.457128,0.412333,0.115368,0.945842,0.482154,0.879155,0.5518,0.340438,0.477142,0.0898803,0.643601,0.221659,0.246235,0.260247,0.346507,0.208046,0.791344,0.809865,0.795086,0.595874,0.276719,0.784543,0.648662,0.945055,0.434626,0.202025,0.932876,0.509129,0.758085,0.354825,0.114497,0.93896,0.802541,0.502592,0.654151,0.70904,0.172523,0.409309,0.00776953,0.128345,0.510567,0.649721,0.751571,0.865981,0.625329,0.178544,0.476621,0.258307,0.828409,0.142104,0.859203,0.310172,0.0218953,0.378745,0.373917,0.957336,0.0688123,0.828739,0.274764,0.451054,0.443715,0.125313,0.192408,0.0632821,0.250815,0.00425416,0.532354,0.155124,0.975385,0.814857,0.394494,0.572545,0.264933,0.250859,0.519033,0.972715,0.937993,0.0501421,0.708826,0.730799,0.82948,0.504523,0.414347,0.654112,0.155335,0.828603,0.678252,0.577405,0.169937,0.754494,0.190308,0.117253,0.712253,0.980674,0.369055,0.434303,0.308692,0.248883,0.00492799,0.742002,0.207361,0.497111,0.916408,0.486741,0.654864,0.865721,0.341764,0.217957,0.846554,0.493972,0.826626,0.968501,0.79042,0.565389,0.596346,0.395995,0.844098,0.457333,0.475897,0.112039,0.855276,0.352923,0.0169892,0.0638338,0.711126,0.23777,0.496237,0.121614,0.845077,0.594117,0.411402,0.0986654,0.252296,0.861605,0.709882,0.647308,0.127626,0.292917,0.910447,0.856824,0.10648,0.428355,0.806646,0.97324,0.503484,0.747926,0.986381,0.682253,0.354385,0.0160035,0.424792,0.815921,0.339788,0.531968,0.150133,0.0556656,0.0149945,0.087947,0.72162,0.819689,0.673235,0.534658,0.0640131,0.48185,0.366175,0.504465,0.0606143,0.815352,0.217716,0.783385,0.16269,0.495398,0.832159,0.80052,0.572134,0.307611,0.380594,0.00221765,0.471132,0.9976,0.562463,0.146818,0.0341232,0.67901,0.93782,0.398531,0.138075,0.540693,0.833653,0.925696,0.54778,0.0904877,0.222907,0.373804,0.850402,0.60099,0.445603,0.422147,0.594716,0.258825,0.523585,0.136019,0.980245,0.961975,0.798482,0.584789,0.851421,0.0525128,0.663197,0.986412,0.531149,0.392294,0.090542,0.34864,0.225053,0.897082,0.667607,0.908988,0.602305,0.824271,0.0996754,0.804484,0.107468,0.456149,0.194993,0.97884,0.295789,0.543653,0.0624484,0.169981,0.67502,0.275962,0.90429,0.851954,0.703896,0.770331,0.565285,0.805178,0.463076,0.965966,0.129189,0.552891,0.336643,0.735864,0.457044,0.437656,0.922718,0.869929,0.979737,0.829932,0.791667,0.260473,0.488944,0.779544,0.817371,0.726419,0.455125,0.55867,0.271276,0.919405,0.168515,0.509072,0.541651,0.844849,0.298513,0.30314,0.895573,0.809755,0.197194,0.60161,0.791959,0.873845,0.440361,0.678543,0.26084,0.63078,0.0703135,0.953383,0.572612,0.32088,0.569525,0.551498,0.957996,0.999334,0.37679,0.409274,0.91234,0.122712,0.956489,0.0349238,0.433225,0.185069,0.40432,0.553764,0.305152,0.164256,0.623,0.580312,0.615796,0.710718,0.109839,0.286103,0.884548,0.913207,0.280577,0.925657,0.434199,0.0655722,0.702652,0.695,0.536371,0.772282,0.378776,0.317661,0.218728,0.415289,0.0279157,0.54349,0.384163,0.528901,0.48175,0.126055,0.426408,0.919044,0.310822,0.117066,0.097293,0.602562,0.435557,0.510418,0.979821,0.863593,0.728664,0.657323,0.751609,0.232488,0.459439,0.666515,0.537777,0.419552,0.471874,0.253124,0.0483148,0.471237,0.297703,0.847053,0.969139,0.281438,0.733767,0.121448,0.55286,0.743913,0.219938,0.192376,0.794882,0.277132,0.275791,0.308716,0.025958,0.869177,0.740817,0.848826,0.630926,0.0893499,0.832661,0.572627,0.0775765,0.096531,0.552052,0.888239,0.379769,0.960668,0.293815,0.481646,0.240695,0.0969596,|0.683077,0.331798,0.572321,0.795227,0.336884,0.165808,0.549892,0.300433,0.970234,0.850198,0.184813,0.181522,0.716027,0.545768,0.681103,0.52685,0.218052,0.395162,0.258493,0.393534,0.45681,0.172881,0.890733,0.99922,0.0908669,0.248651,0.915519,0.836176,0.0391074,0.0745552,0.226449,0.541863,0.842366,0.201125,0.0690313,0.290531,0.494172,0.816281,0.81219,0.712426,0.438066,0.473793,0.3522,0.430738,0.951108,0.694648,0.429712,0.154266,0.790057,0.192573,0.35488,0.648891,0.890251,0.343601,0.647432,0.349268,0.872634,0.785673,0.221013,0.725821,0.505781,0.52785,0.980273,0.899099,0.318528,0.184462,0.307506,0.918789,0.189358,0.858819,0.918715,0.952363,0.317857,0.0236213,0.478305,0.695429,0.608641,0.20079,0.293484,0.555363,0.752586,0.178055,0.396456,0.62475,0.357365,0.996827,0.805597,0.677289,0.247556,0.273639,0.172559,0.894902,0.276338,0.932668,0.862753,0.099179,0.783445,0.560422,0.152099,0.883375,0.845668,0.381159,0.120683,0.0805352,0.680763,0.401719,0.0492222,0.393754,0.767315,0.085564,0.0620417,0.583197,0.208464,0.99451,0.889962,0.177847,0.496692,0.689776,0.862516,0.554859,0.824858,0.839291,0.152124,0.790727,0.383731,0.0651282,0.637866,0.662304,0.35557,0.481981,0.507902,0.592027,0.211712,0.526168,0.956622,0.538629,0.890944,0.175665,0.163489,0.382327,0.402174,0.122102,0.484556,0.330545,0.350219,0.702712,0.549077,0.419167,0.88854,0.896049,0.903788,0.595381,0.358494,0.0411164,0.947709,0.786427,0.452987,0.449454,0.0121135,0.420514,0.113323,0.0201296,0.535159,0.716709,0.766659,0.933519,0.305429,0.987916,0.0534115,0.710225,0.362018,0.118064,0.241421,0.135852,0.398663,0.591955,0.486677,0.438926,0.933185,0.9922,0.923118,0.679074,0.170377,0.176405,0.152744,0.275167,0.915516,0.0474172,0.564069,0.208709,0.344606,0.945675,0.0830003,0.545572,0.132034,0.897173,0.529111,0.590089,0.395565,0.634568,0.308683,0.946896,0.484714,0.971727,0.309907,0.247099,0.238174,0.182362,0.393469,0.288362,0.325331,0.0188584,0.587557,0.644476,0.210917,0.181987,0.815233,0.306289,0.391871,0.271849,0.238219,0.360216,0.0275046,0.834229,0.911328,0.825425,0.296543,0.867289,0.614244,0.144401,0.127867,0.470633,0.897052,0.842389,0.729825,0.236242,0.184314,0.989885,0.898967,0.125718,0.987449,0.21951,0.795284,0.64163,0.162971,0.807277,0.198977,0.366924,0.494283,0.496062,0.986735,0.907414,0.217936,0.0467708,0.0992948,0.489431,0.851961,0.905076,0.0105181,0.712917,0.179865,0.534701,0.0931324,0.301966,0.782815,0.502438,0.138504,0.760786,0.767396,0.203084,0.618133,0.482799,0.788432,0.762908,0.329368,0.450423,0.674926,0.584372,0.460083,0.325965,0.745938,0.14807,0.368491,0.638069,0.553905,0.475196,0.560927,0.509217,0.838948,0.132461,0.0119908,0.878004,0.463773,0.988023,0.728826,0.906817,0.958383,0.0299024,0.027603,0.831414,0.0480765,0.515874,0.508831,0.274515,0.603051,0.734505,0.360772,0.0532786,0.115381,0.929344,0.504098,0.345821,0.532959,0.0288131,0.0751939,0.614609,0.511784,0.975564,0.133974,0.611958,0.711083,0.916667,0.458981,0.129312,0.454226,0.917284,0.837378,0.776487,0.158201,0.361739,0.939659,0.809622,0.452961,0.469311,0.650397,0.602427,0.335708,0.0458832,0.876665,0.501358,0.890788,0.935674,0.432581,0.241507,0.0384541,0.669917,0.705304,0.490933,0.374665,0.577623,0.944322,0.106875,0.180899,0.631801,0.715242,0.135192,0.861953,0.927687,0.315911,0.483652,0.446709,0.260182,0.796044,0.269691,0.160813,0.315698,0.441405,0.152931,0.501352,0.00415111,0.913358,0.0938694,0.00434548,0.938814,0.338148,0.120452,0.798983,0.754286,0.886312,0.284212,0.314823,0.847969,0.936808,0.124065,0.164209,0.586442,0.395977,0.554363,0.946444,0.206477,0.21383,0.400897,0.474246,0.723542,0.314969,0.413779,0.322378,0.0532998,0.0353051,0.164947,0.916186,0.61621,0.70467,0.692706,0.315938,0.624606,0.880468,0.922365,0.556867,0.348405,0.256844,0.862116,0.680024,0.323905,0.793965,0.319493,0.830139,0.714624,0.280097,0.533385,0.392792,0.516268,0.625797,0.435099,0.993303,0.753339,0.0631559,0.843492,0.354827,0.458038,0.483123,0.524084,0.230835,0.739902,0.892498,0.462217,0.766294,0.619957,0.49367,0.0805344,0.710517,0.600338,0.673913,0.213096,0.58551,0.991514,0.925021,0.587969,0.126484,0.349245,0.28608,0.162999,0.782773,0.0526314,0.804412,0.322933,0.492561,0.201244,0.324754,0.733241,0.119664,0.459614,0.977693,0.242939,0.25925,0.984417,0.131326,0.935734,0.52722,0.464841,0.774452,0.306764,0.542811,0.75843,0.116424,0.585085,0.368476,0.626757,0.846379,0.378078,0.421651,0.0685981,0.0798917,0.00449705,0.203049,0.609642,0.64399,0.92491,0.751134,0.831132,0.949481,0.397355,0.957776,0.899183,0.0342738,0.664399,0.816129,0.807726,0.700039,0.193654,0.7578,0.136948,0.134122,0.459078,0.1439,0.784249,0.57404,0.592161,0.184433,0.920826,0.0665491,0.726073,0.0152406,0.594478,0.671702,0.914418,0.914949,0.515363,0.496764,0.460421,0.0432621,0.881541,0.887816,0.0976161,0.622359,0.0450608,0.379308,0.302317,0.594506,0.621937,0.579254,0.580619,0.63539,0.849493,0.382368,0.111337,0.187305,0.0766909,0.188219,0.608387,0.634524,0.595894,0.161381,0.798889,0.549628,0.0693514,0.219214,0.259253,0.94128,0.839063,0.0750957,0.86729,0.968884,0.322718,0.279508,0.345758,0.410227,0.388008,0.195696,0.841551,0.893555,0.783168,0.257627,0.457586,0.157595,0.586804,0.671976,0.595569,0.0540459,0.409641,0.710893,0.360842,0.378008,0.994146,0.98696,0.597779,0.738382,0.791184,0.783902,0.119215,0.670933,0.965519,0.224407,0.935765,0.767211,0.197876,0.885182,0.354772,0.147028,0.0852972,0.142323,0.680772,0.177577,0.478213,0.39785,0.558125,0.520746,0.125415,0.928876,0.77266,0.197693,0.949624,0.142231,0.723832,0.337451,0.930852,0.574239,0.20846,0.775454,0.845571,0.426703,0.981092,0.442488,0.309051,0.0975578,0.680796,0.467265,0.0414337,0.33897,0.309805,0.287556,0.316912,0.63257,0.457565,0.659085,0.558993,0.00486416,0.586991,0.243951,0.506067,0.593845,0.837654,0.243028,0.343749,0.368443,0.0338329,0.630322,0.84168,0.570496,0.988283,0.944063,0.866202,0.00661111,0.533009,0.829705,0.577172,0.619673,0.566569,0.898775,0.730781,0.0942472,0.0136624,0.917027,0.748945,0.641455,0.643858,0.853816,0.406428,0.300361,0.23817,0.254854,0.835241,0.87744,0.117286,0.940599,0.420788,0.540296,0.826617,0.366651,0.741541,0.944729,0.35155,0.694697,0.243569,0.466261,0.781009,0.985386,0.0206696,0.714463,0.0623062,0.480078,0.99168,0.239639,0.899509,0.881395,0.139757,0.0396172,0.728021,0.942565,0.472792,0.987226,0.648703,0.39199,0.995828,0.966039,0.593831,0.507308,0.196177,0.463923,0.683902,0.588305,0.855776,0.634534,0.249173,0.730509,0.99118,0.98734,0.0250189,0.682077,0.370945,0.83367,0.267824,0.123704,0.111902,0.776318,0.562862,0.626046,0.785705,0.836914,0.718497,0.984134,0.69697,0.623593,0.587738,0.193384,0.627085,0.448759,0.768048,0.290714,0.539771,0.356759,0.730172,0.793634,0.227571,0.563184,0.748045,0.0801688,0.0618166,0.295744,0.622542,0.748604,0.45826,0.362139,0.708774,0.997466,0.271479,0.221016,0.800951,0.880616,0.378581,0.505953,0.805897,0.790003,0.957114,0.34299,0.542232,0.285963,0.984098,0.910304,0.450416,0.650213,0.762381,0.377239,0.435358,0.1218,0.156632,0.0630064,0.52128,0.508483,0.0211949,0.786837,0.435775,0.890871,0.480162,0.100944,0.503312,0.167176,0.91195,0.691307,0.576116,0.587829,0.896964,0.576146,0.449924,0.317548,0.42313,0.53244,0.414943,0.981619,0.464377,0.521379,0.509517,0.254713,0.72497,0.00614387,0.351783,0.694614,0.404311,0.290923,0.770607,0.542335,0.172394,0.768166,0.396946,0.289677,0.661764,0.618716,0.242235,0.445105,0.474467,0.301344,0.560832,0.00801802,0.0153117,0.154934,0.156068,0.985636,0.712279,0.616075,0.657663,0.151567,0.787629,0.972193,0.607273,0.907212,0.844905,0.174802,0.361536,0.530145,0.568385,0.90797,0.144763,0.827567,0.0446571,0.769049,0.878597,0.591474,0.677505,0.680872,0.971443,0.750954,0.734015,0.553154,0.844875,0.780578,0.66816,0.453672,0.314433,0.0762076,0.955593,0.955087,0.790195,0.2654,0.0599587,0.869281,0.340961,0.0723129,0.778139,0.791337,0.667179,0.620644,0.745177,0.911168,0.456482,0.749564,0.0539748,0.0914975,0.756761,0.690153,0.641051,0.637645,0.548208,0.541345,0.346441,0.594859,0.358482,0.328599,0.0258579,0.124776,0.601615,0.644126,0.193537,0.206126,0.349201,0.0937346,0.324734,0.842435,0.3856,0.0636193,0.672067,0.947739,0.820719,0.24648,0.272064,0.780355,0.834109,0.545337,0.746884,0.498651,0.764842,0.979256,0.204406,0.608222,0.893212,0.743513,0.744769,0.00853896,0.255402,0.89511,0.679265,0.482756,0.698941,0.776657,0.616192,0.553741,0.369045,0.84935,0.432651,0.797967,0.639132,0.651242,0.608898,0.78597,0.746983,0.366619,0.848367,0.629257,0.384651,0.833364,0.0811302,0.64626,0.584587,0.0362629,0.777996,0.842265,0.538874,0.787628,0.597031,0.887429,0.325843,0.386721,0.390943,0.34093,0.211711,0.433495,0.579465,0.213774,0.622424,0.867092,0.0794351,0.754628,0.695882,0.605151,0.793479,0.5144,0.0224944,0.67713,0.286358,0.534309,0.177387,0.384475,0.309705,0.380549,0.12646,0.868057,0.999761,0.968227,0.547687,0.53099,0.637947,0.580728,0.0918713,0.0926718,0.0319479,0.961478,0.841878,0.189523,0.818667,0.98307,0.811507,0.258698,0.846751,0.561188,0.516819,0.438793,0.849259,0.0855445,0.883491,0.363155,0.0261185,0.0809291,0.0791367,0.0629893,0.247902,0.597516,0.616255,0.847827,0.503621,0.896033,0.259784,|0.188146,0.38619,0.374109,0.395492,0.0974032,0.248341,0.437688,0.689915,0.123529,0.942324,0.967392,0.281433,0.29274,0.695131,0.976301,0.302612,0.840597,0.0288408,0.999917,0.465449,0.633303,0.108612,0.645133,0.37054,0.24979,0.146885,0.509378,0.59621,0.451241,0.940954,0.442521,0.302317,0.577134,0.497329,0.24479,0.712381,0.658026,0.356069,0.453811,0.569259,0.130401,0.643839,0.265362,0.295074,0.447675,0.625154,0.446244,0.577709,0.525188,0.475344,0.337184,0.705829,0.93675,0.446652,0.259226,0.480918,0.938021,0.448651,0.0552577,0.609648,0.764988,0.933212,0.933176,0.670946,0.781093,0.85167,0.139321,0.765971,0.47991,0.0980815,0.473186,0.0888628,0.3942,0.162654,0.807191,0.916993,0.821636,0.246691,0.696608,0.294753,0.300101,0.286445,0.479185,0.167571,0.725881,0.455785,0.720814,0.0287794,0.631659,0.354678,0.53782,0.366557,0.311631,0.767995,0.478789,0.367142,0.574493,0.798751,0.510631,0.605246,0.705057,0.0297161,0.663168,0.0302899,0.990305,0.983677,0.399748,0.246239,0.731145,0.047517,0.698459,0.854474,0.599229,0.110463,0.205802,0.513662,0.0841672,0.94944,0.431608,0.851102,0.962477,0.660359,0.119958,0.919838,0.686435,0.868318,0.312794,0.702621,0.914931,0.460091,0.824007,0.34611,0.162763,0.444989,0.368889,0.980893,0.372684,0.537207,0.7704,0.458496,0.751382,0.979234,0.518514,0.976551,0.132623,0.78536,0.478389,0.716864,0.186256,0.621244,0.84721,0.529736,0.525695,0.440712,0.498442,0.431661,0.833191,0.152144,0.646275,0.454433,0.173763,0.0421587,0.0686375,0.39932,0.984865,0.570883,0.66824,0.710407,0.56895,0.660408,0.223575,0.770218,0.405811,0.584069,0.708529,0.0536509,0.632305,0.247675,0.216443,0.251706,0.561807,0.607308,0.793155,0.173503,0.385826,0.0146759,0.353454,0.700725,0.734537,0.444495,0.700385,0.539432,0.335933,0.930102,0.119231,0.400997,0.158994,0.459957,0.559876,0.9125,0.0664036,0.107006,0.909628,0.35166,0.658702,0.229803,0.292247,0.845607,0.557562,0.723584,0.106723,0.536105,0.611436,0.526209,0.671616,0.58122,0.785697,0.352,0.722517,0.733997,0.812776,0.12456,0.743219,0.429115,0.339468,0.254213,0.0744041,0.438442,0.431105,0.23481,0.0832771,0.787428,0.115286,0.508367,0.414562,0.864399,0.454425,0.807575,0.572091,0.14085,0.908051,0.234931,0.937627,0.967162,0.135213,0.536914,0.773007,0.255495,0.684832,0.020508,0.287734,0.468313,0.924158,0.507496,0.195075,0.47969,0.364154,0.811762,0.370378,0.650024,0.578387,0.713162,0.422863,0.589345,0.396678,0.414128,0.697567,0.355211,0.668324,0.077476,0.944824,0.826765,0.852616,0.687402,0.766876,0.434833,0.484012,0.550555,0.243315,0.811838,0.809674,0.0864882,0.941727,0.758992,0.128702,0.924706,0.302331,0.682835,0.696873,0.653545,0.710811,0.937307,0.997931,0.737203,0.200779,0.927057,0.869028,0.121751,0.741258,0.815084,0.612834,0.30961,0.858433,0.170075,0.0950126,0.970751,0.314755,0.696701,0.0826527,0.0419294,0.549088,0.50584,0.214575,0.333461,0.0711222,0.965023,0.218568,0.838693,0.755161,0.953794,0.960206,0.322421,0.0892269,0.0826439,0.820794,0.272888,0.771886,0.898928,0.875942,0.691697,0.563577,0.395202,0.00726533,0.529186,0.349586,0.241987,0.0269248,0.628787,0.507638,0.202498,0.110692,0.297368,0.349713,0.420341,0.21302,0.293332,0.244098,0.295481,0.132804,0.745163,0.984209,0.833439,0.0994756,0.150094,0.546961,0.451007,0.806723,0.108995,0.849411,0.989837,0.574598,0.078694,0.478546,0.716533,0.885971,0.421515,0.573304,0.0250731,0.350635,0.427523,0.684319,0.0978436,0.897648,0.502659,0.497831,0.630835,0.484285,0.335422,0.184166,0.951339,0.919368,0.214892,0.756058,0.726466,0.179901,0.98705,0.187225,0.225602,0.593858,0.419488,0.611098,0.733182,0.511028,0.660871,0.974906,0.384587,0.201516,0.26345,0.622908,0.521249,0.306776,0.0796287,0.31697,0.836924,0.426757,0.0528275,0.770002,0.847972,0.268121,0.52383,0.981602,0.475767,0.697552,0.779407,0.995557,0.594071,0.830814,0.289956,0.909918,0.126495,0.350508,0.4925,0.017675,0.0145297,0.419015,0.0969995,0.722545,0.456843,0.973533,0.969009,0.161568,0.687139,0.845407,0.566028,0.859859,0.578446,0.435268,0.827431,0.225259,0.423137,0.844718,0.224226,0.477112,0.436879,0.876038,0.527817,0.0224474,0.473542,0.748468,0.569822,0.790632,0.937626,0.97203,0.770279,0.554332,0.205241,0.272005,0.961488,0.533837,0.969622,0.276349,0.756198,0.545186,0.266867,0.536173,0.840234,0.93725,0.535389,0.62569,0.853021,0.71273,0.609059,0.583073,0.503434,0.884641,0.757732,0.563058,0.291606,0.34689,0.783204,0.305123,0.188535,0.962871,0.0737627,0.184653,0.783783,0.266647,0.39601,0.741191,0.498104,0.0531085,0.0628343,0.728188,0.312136,0.305102,0.482755,0.84798,0.939457,0.525125,0.412609,0.483468,0.978969,0.998792,0.200144,0.309681,0.407429,0.000368059,0.614186,0.403102,0.60475,0.628212,0.175691,0.816756,0.353749,0.47188,0.0606779,0.570949,0.0339635,0.170925,0.240175,0.830888,0.0610673,0.543028,0.810258,0.588603,0.11854,0.469484,0.0614391,0.967789,0.930328,0.454416,0.0943997,0.0230299,0.933696,0.346041,0.680221,0.70095,0.992789,0.290332,0.086951,0.569365,0.349761,0.0725938,0.596963,0.259694,0.200326,0.917939,0.323599,0.959661,0.230234,0.54463,0.43325,0.460104,0.80882,0.485117,0.875657,0.415282,0.92424,0.357548,0.0420932,0.336989,0.883364,0.796884,0.532301,0.320681,0.0243638,0.410052,0.180958,0.531156,0.547673,0.807981,0.633479,0.00755626,0.687831,0.123033,0.713659,0.813091,0.609883,0.973242,0.616408,0.457917,0.834661,0.962297,0.346743,0.221432,0.237122,0.894685,0.538055,0.0949416,0.389007,0.0175693,0.525696,0.646614,0.863038,0.00782728,0.673313,0.744341,0.79911,0.993969,0.302879,0.339635,0.933276,0.808404,0.947915,0.405624,0.825018,0.55889,0.98444,0.819208,0.376517,0.151643,0.357299,0.991121,0.399725,0.534185,0.368008,0.792007,0.210512,0.855086,0.780231,0.142622,0.421603,0.13887,0.630116,0.429019,0.700564,0.694824,0.641416,0.657137,0.199405,0.261426,0.967938,0.976425,0.746824,0.901178,0.494171,0.38222,0.975157,0.778361,0.905344,0.500357,0.620534,0.556408,0.203049,0.778304,0.673343,0.552026,0.0607591,0.390649,0.305651,0.968971,0.405533,0.496957,0.671299,0.00710535,0.946447,0.604279,0.312867,0.334508,0.0921186,0.862788,0.873299,0.569868,0.47186,0.801672,0.74027,0.756757,0.834533,0.388235,0.0545972,0.867574,0.469713,0.733291,0.068407,0.916318,0.0421041,0.787434,0.318421,0.0101732,0.170155,0.147572,0.134351,0.850844,0.88561,0.153156,0.783973,0.0396892,0.455343,0.652959,0.877603,0.204973,0.332172,0.592465,0.679753,0.972221,0.363457,0.0104848,0.900092,0.456985,0.435674,0.195481,0.281581,0.817231,0.11458,0.195984,0.531109,0.914248,0.13297,0.0886452,0.582655,0.444701,0.971589,0.131154,0.241357,0.810155,0.406931,0.553326,0.993802,0.965106,0.27544,0.0484681,0.389052,0.351857,0.172792,0.182749,0.305749,0.50543,0.760853,0.992275,0.762797,0.587818,0.321018,0.734295,0.519783,0.839105,0.436903,0.0323941,0.15491,0.371688,0.166986,0.501243,0.238001,0.682159,0.236069,0.511981,0.370389,0.887133,0.010194,0.808292,0.299944,0.865973,0.368222,0.465989,0.881038,0.337252,0.895675,0.964917,0.73767,0.648853,0.831752,0.83276,0.953935,0.592117,0.322834,0.596667,0.94033,0.960272,0.683825,0.858806,0.240813,0.0616287,0.103384,0.0392056,0.311651,0.927031,0.95983,0.720367,0.685286,0.000431061,0.690769,0.33523,0.622608,0.190816,0.629596,0.138905,0.525936,0.548377,0.665203,0.984784,0.849835,0.620683,0.288364,0.836145,0.725781,0.603319,0.473246,0.594028,0.589837,0.790106,0.31638,0.0415455,0.561684,0.100807,0.267412,0.0806143,0.157862,0.50091,0.765543,0.874013,0.980846,0.988238,0.213073,0.851917,0.841185,0.97539,0.376464,0.468689,0.653376,0.358676,0.0834239,0.934319,0.449777,0.868736,0.055612,0.0539327,0.28943,0.269064,0.0619407,0.895487,0.0632694,0.730091,0.754994,0.832574,0.202527,0.736737,0.940388,0.465944,0.526712,0.544543,0.618376,0.506803,0.596409,0.924124,0.343645,0.572469,0.847384,0.833003,0.103797,0.30716,0.119998,0.33759,0.725173,0.119422,0.0808136,0.837766,0.421048,0.464868,0.230435,0.72185,0.365571,0.371148,0.924852,0.214004,0.336129,0.280028,0.547645,0.651933,0.363263,0.229978,0.762284,0.552433,0.326165,0.964646,0.38968,0.129399,0.0163047,0.78183,0.3011,0.745879,0.828751,0.0902688,0.568837,0.594227,0.237403,0.859948,0.544265,0.936361,0.00956178,0.890684,0.588609,0.729205,0.310174,0.685244,0.879428,0.410507,0.208642,0.374736,0.917765,0.717531,0.955893,0.0520107,0.455481,0.846482,0.747198,0.418065,0.0973694,0.11488,0.750286,0.744785,0.599868,0.555234,0.0681828,0.233063,0.559903,0.167358,0.898987,0.208959,0.0473922,0.161312,0.145655,0.666839,0.169624,0.497783,0.57167,0.723211,0.784272,0.182557,0.287787,0.309591,0.77749,0.0865569,0.0481831,0.749239,0.757415,0.551243,0.420058,0.75517,0.608553,0.803862,0.387027,0.6464,0.873629,0.272559,0.0534745,0.654875,0.678935,0.552342,0.00600576,0.834913,0.74332,0.791541,0.679991,0.419103,0.366542,0.113241,0.411751,0.562342,0.00655055,0.222914,0.0860655,0.712994,0.047803,0.913848,0.0542913,0.813638,0.694623,0.740653,0.739774,0.925295,0.761929,0.238532,0.612408,0.358432,0.901788,0.527084,0.804517,0.438577,0.567084,0.257209,0.707708,0.194118,0.444077,0.542623,0.269103,0.0778972,0.631713,0.477144,0.982264,0.73416,0.676122,0.98764,0.97616,0.0378377,0.452715,0.91684,0.338428,0.488288,0.836944,0.190221,0.851018,|0.658504,0.746829,0.424555,0.486584,0.0374777,0.213289,0.893396,0.207249,0.284625,0.708359,0.538479,0.916955,0.257427,0.637714,0.877137,0.642124,0.0148296,0.544244,0.445285,0.252744,0.698325,0.562252,0.416286,0.759185,0.873429,0.218402,0.848142,0.888001,0.223291,0.751958,0.0575764,0.027786,0.916057,0.792412,0.12384,0.993461,0.121414,0.660011,0.178786,0.491637,0.299756,0.484328,0.252159,0.586541,0.631877,0.508979,0.506514,0.933525,0.129841,0.616313,0.487157,0.275907,0.828421,0.311352,0.264488,0.607871,0.957547,0.553407,0.787592,0.651466,0.282309,0.462235,0.73976,0.933264,0.680004,0.0853266,0.223321,0.141806,0.732089,0.778632,0.343735,0.710882,0.825221,0.00502455,0.747933,0.0948375,0.665056,0.466999,0.0294097,0.276725,0.446542,0.295642,0.980524,0.785764,0.603997,0.0871235,0.7582,0.867117,0.555433,0.749352,0.751158,0.56952,0.109473,0.0848238,0.775687,0.0448171,0.329006,0.759666,0.807586,0.408926,0.205285,0.683535,0.151814,0.714098,0.0842539,0.644356,0.363231,0.232992,0.8927,0.458035,0.438153,0.277911,0.380105,0.250574,0.59243,0.923786,0.491164,0.79448,0.695732,0.803074,0.869506,0.245645,0.868774,0.80508,0.0335206,0.737489,0.753366,0.310156,0.589851,0.728729,0.429198,0.17719,0.053077,0.640067,0.354933,0.0584812,0.086889,0.265711,0.821467,0.489899,0.202384,0.617119,0.842112,0.875713,0.437405,0.431127,0.046084,0.646017,0.61251,0.916149,0.323321,0.559048,0.884218,0.291023,0.158061,0.101111,0.211846,0.680728,0.786295,0.823707,0.154775,0.934563,0.270612,0.414933,0.361486,0.317685,0.639691,0.912545,0.30433,0.249099,0.574394,0.975741,0.762747,0.673134,0.361161,0.0211501,0.595889,0.987485,0.292644,0.877062,0.31554,0.390315,0.853663,0.303527,0.519858,0.363228,0.174702,0.566661,0.628017,0.255153,0.00287843,0.472738,0.304378,0.684434,0.893024,0.867679,0.10022,0.954753,0.0889159,0.895108,0.0674513,0.199367,0.35236,0.0273455,0.317885,0.841549,0.221247,0.754926,0.853774,0.363022,0.257026,0.74801,0.808216,0.0757419,0.472568,0.729049,0.262501,0.6886,0.340118,0.722014,0.763596,0.671702,0.257566,0.517428,0.331583,0.222157,0.130543,0.578355,0.240451,0.138636,0.692834,0.990818,0.687721,0.640516,0.475299,0.658425,0.9079,0.379913,0.310083,0.286048,0.160757,0.758363,0.0192133,0.0975547,0.521031,0.0076285,0.287033,0.882021,0.612167,0.938453,0.63263,0.808539,0.0181914,0.618589,0.353049,0.805576,0.313234,0.415194,0.092398,0.362436,0.831476,0.850046,0.167666,0.543004,0.951395,0.256176,0.0620218,0.360326,0.648672,0.699716,0.609125,0.554104,0.0714191,0.112478,0.748769,0.147201,0.406993,0.648978,0.407034,0.346269,0.305475,0.837073,0.855548,0.232362,0.283011,0.106442,0.471717,0.770503,0.216758,0.816637,0.25796,0.372865,0.278318,0.810662,0.968074,0.343513,0.293309,0.613786,0.36324,0.312517,0.634123,0.719208,0.976826,0.989301,0.573616,0.315778,0.0234001,0.606014,0.192206,0.455427,0.642304,0.984846,0.497548,0.0273028,0.273535,0.229899,0.135755,0.612427,0.365762,0.189695,0.454496,0.561049,0.0466551,0.800278,0.283639,0.309708,0.297638,0.780691,0.618711,0.288016,0.430865,0.578541,0.973008,0.0634579,0.844635,0.125675,0.351348,0.574776,0.991128,0.521482,0.459728,0.0484894,0.725809,0.417286,0.85068,0.777579,0.733576,0.913728,0.391656,0.188276,0.346954,0.6981,0.69322,0.974264,0.156481,0.327025,0.3923,0.00600731,0.57532,0.712763,0.764356,0.29469,0.473279,0.421617,0.66155,0.833982,0.684344,0.548924,0.102481,0.249762,0.243626,0.909434,0.726059,0.667354,0.0822856,0.721344,0.690639,0.319275,0.0555128,0.915713,0.526623,0.680955,0.339104,0.293148,0.531857,0.515044,0.578563,0.0963569,0.734225,0.613561,0.185614,0.918173,0.668618,0.917385,0.4317,0.989591,0.3681,0.230711,0.948786,0.351939,0.64759,0.974825,0.450683,0.331327,0.769055,0.419323,0.0800121,0.227489,0.610468,0.0550631,0.855943,0.0977939,0.675806,0.324187,0.265018,0.967577,0.482965,0.335468,0.942628,0.171688,0.371896,0.120787,0.910687,0.843951,0.0542628,0.670393,0.620069,0.936443,0.113822,0.213048,0.986445,0.219854,0.413876,0.420081,0.634772,0.250675,0.711185,0.399971,0.14942,0.0129871,0.52458,0.390701,0.622257,0.538551,0.108083,0.178378,0.11207,0.821323,0.560001,0.548124,0.215391,0.296607,0.0639054,0.296175,0.252828,0.921361,0.317482,0.292728,0.0639622,0.856761,0.594872,0.318419,0.909719,0.926616,0.504443,0.737158,0.832493,0.0478457,0.706828,0.858495,0.28477,0.0109826,0.963533,0.940731,0.321467,0.339683,0.726011,0.117075,0.228192,0.00304401,0.981898,0.652101,0.752484,0.573757,0.929197,0.123461,0.106622,0.0180064,0.685073,0.0959343,0.876484,0.769402,0.68194,0.241108,0.112737,0.749976,0.366749,0.984219,0.552915,0.624663,0.285604,0.237467,0.736797,0.728597,0.176596,0.0508476,0.455964,0.781219,0.575695,0.39795,0.396766,0.240924,0.682063,0.688427,0.965435,0.653691,0.0833672,0.593472,0.102983,0.611897,0.574009,0.131895,0.48067,0.703373,0.731891,0.592798,0.408691,0.301508,0.24131,0.889113,0.0175615,0.420981,0.0474993,0.898403,0.814079,0.55036,0.74747,0.731503,0.135472,0.961057,0.269824,0.614269,0.914473,0.040125,0.876419,0.215637,0.435274,0.139267,0.3117,0.0947478,0.624648,0.383872,0.549568,0.54847,0.517876,0.444008,0.871643,0.63899,0.258124,0.693778,0.516619,0.946692,0.7364,0.729588,0.0631399,0.299863,0.566024,0.135939,0.0103571,0.608051,0.0830343,0.040413,0.276341,0.328946,0.783494,0.667823,0.180548,0.271588,0.897283,0.513441,0.119105,0.49484,0.112736,0.460426,0.736807,0.453408,0.682902,0.223536,0.305885,0.960845,0.951589,0.608117,0.478274,0.779732,0.308109,0.975952,0.724945,0.191847,0.429984,0.976799,0.417687,0.865034,0.257236,0.364232,0.280847,0.587169,0.820681,0.165439,0.0505468,0.825177,0.897606,0.267326,0.202038,0.383966,0.56946,0.341478,0.178225,0.912645,0.928772,0.857949,0.921125,0.284583,0.931437,0.566404,0.513586,0.812299,0.2876,0.0701679,0.160154,0.957896,0.515437,0.674643,0.780291,0.163051,0.270822,0.558087,0.057731,0.051954,0.0580968,0.136605,0.333921,0.836386,0.266409,0.543704,0.19129,0.824911,0.280375,0.973547,0.799935,0.589355,0.467964,0.664417,0.895291,0.356675,0.408554,0.641523,0.931332,0.248564,0.79711,0.639531,0.401693,0.262438,0.909445,0.119883,0.279815,0.0434164,0.564901,0.324345,0.738648,0.121952,0.282109,0.122515,0.948076,0.653562,0.578802,0.919346,0.780847,0.061165,0.317735,0.00100327,0.0918055,0.110191,0.333066,0.247335,0.810782,0.39303,0.693966,0.809216,0.390185,0.0262346,0.970761,0.272925,0.696345,0.870593,0.161339,0.388239,0.566917,0.0460739,0.606397,0.242065,0.244279,0.122144,0.811309,0.459699,0.878899,0.446316,0.329122,0.445777,0.370271,0.243323,0.490434,0.381895,0.0852666,0.911989,0.970175,0.714412,0.73302,0.858824,0.602283,0.221604,0.857527,0.456951,0.628501,0.859103,0.270007,0.452097,0.605281,0.309179,0.865334,0.765789,0.333107,0.581659,0.450474,0.940104,0.750048,0.112894,0.054505,0.324757,0.922662,0.955451,0.523999,0.423442,0.177996,0.14079,0.866838,0.875484,0.160205,0.251398,0.926055,0.84131,0.694463,0.211299,0.731313,0.290774,0.334304,0.320341,0.30104,0.251705,0.348947,0.64577,0.719352,0.389279,0.555655,0.630172,0.0101764,0.866535,0.635641,0.27991,0.0485719,0.459543,0.584855,0.80922,0.740361,0.267601,0.318371,0.972578,0.488812,0.266335,0.585319,0.973681,0.153333,0.443454,0.244248,0.116075,0.903852,0.770693,0.086695,0.219216,0.832355,0.0626365,0.458572,0.0887702,0.0410242,0.288285,0.585493,0.0877451,0.227185,0.628908,0.914241,0.99178,0.978403,0.660346,0.548726,0.511852,0.523562,0.37043,0.178385,0.0614758,0.784631,0.285826,0.431358,0.697967,0.891618,0.0774661,0.707232,0.104172,0.56644,0.58225,0.662127,0.803905,0.16459,0.822437,0.467546,0.406533,0.334624,0.660456,0.0885789,0.112867,0.355785,0.264506,0.0824158,0.894541,0.11712,0.357209,0.426993,0.234772,0.911662,0.253969,0.0289506,0.145746,0.276634,0.530815,0.586604,0.330439,0.343096,0.566332,0.0445196,0.732014,0.310039,0.336173,0.965488,0.52498,0.25754,0.280066,0.665301,0.328285,0.659475,0.283527,0.590778,0.309375,0.783785,0.488143,0.462696,0.134377,0.176885,0.0137081,0.90839,0.794669,0.834684,0.266213,0.658867,0.903288,0.424377,0.506594,0.559178,0.922856,0.214879,0.931723,0.367041,0.207115,0.338351,0.0405115,0.846757,0.236217,0.902496,0.526788,0.105977,0.777279,0.509453,0.617628,0.0903351,0.81599,0.281996,0.0501172,0.873767,0.620633,0.344484,0.73026,0.6197,0.380532,0.794398,0.68508,0.0782632,0.838285,0.711744,0.877857,0.524025,0.354567,0.0379681,0.91651,0.923909,0.960671,0.862837,0.701028,0.461001,0.216451,0.320027,0.153696,0.413184,0.85085,0.549068,0.310042,0.224379,0.181824,0.720642,0.709584,0.201571,0.775641,0.500739,0.951026,0.098601,0.693484,0.560279,0.719911,0.472869,0.539431,0.0676045,0.389716,0.901895,0.872335,0.8414,0.235011,0.204582,0.566584,0.0732986,0.154513,0.0871713,0.766541,0.374438,0.325059,0.918885,0.939959,0.379107,0.00271654,0.87991,0.279239,0.0055598,0.0889727,0.795497,0.581772,0.371124,0.2994,0.677087,0.140056,0.273696,0.660553,0.596289,0.0110036,0.886255,0.657021,0.302085,0.17038,0.340739,0.470088,0.727713,0.0167328,0.269293,0.952386,0.313865,0.435039,0.518687,0.917955,0.945442,0.859039,0.397562,0.606716,0.896521,0.918764,0.593467,0.521893,0.865282,0.423115,0.713111,0.585582,0.430366,0.657464,0.981775,0.898479,0.995675,0.133242,|0.43755,0.411976,0.163014,0.844741,0.19347,0.778248,0.114803,0.106692,0.697805,0.807911,0.150589,0.454001,0.499124,0.439609,0.0220645,0.224768,0.187753,0.825381,0.662795,0.880606,0.693381,0.807258,0.534686,0.370919,0.842541,0.634195,0.0436056,0.971339,0.633343,0.102528,0.208134,0.0491592,0.559687,0.103458,0.229325,0.792758,0.224708,0.82425,0.783547,0.228128,0.516714,0.618077,0.191986,0.21849,0.765201,0.273034,0.734799,0.131365,0.748661,0.746601,0.00420445,0.635253,0.788754,0.92627,0.594458,0.464947,0.776194,0.125649,0.117635,0.149538,0.292947,0.0100895,0.400527,0.315962,0.546285,0.263427,0.0562952,0.303529,0.959798,0.0238833,0.0944555,0.914561,0.675287,0.389718,0.550168,0.787101,0.343695,0.0959448,0.648217,0.701527,0.931323,0.290175,0.774741,0.890277,0.129849,0.252529,0.649809,0.844362,0.090028,0.164408,0.497979,0.0137402,0.895155,0.83968,0.0698117,0.80569,0.517084,0.750781,0.945812,0.614718,0.267497,0.940159,0.251707,0.707535,0.490444,0.277747,0.826404,0.109358,0.639391,0.0447494,0.661927,0.668702,0.768013,0.570764,0.649164,0.164437,0.553422,0.407833,0.0385036,0.610218,0.2911,0.162057,0.36817,0.348246,0.411038,0.695856,0.129697,0.921272,0.0996863,0.428928,0.125609,0.429363,0.294677,0.615371,0.078514,0.728007,0.0262575,0.622574,0.730284,0.271412,0.215832,0.472659,0.715775,0.949556,0.54492,0.129139,0.659148,0.564087,0.685796,0.474641,0.842811,0.773936,0.588413,0.630772,0.883941,0.0529568,0.26421,0.189868,0.672534,0.116917,0.322205,0.356504,0.954071,0.1533,0.983235,0.707392,0.482432,0.213605,0.0984456,0.974616,0.617624,0.171891,0.126201,0.358573,0.589277,0.93325,0.0326141,0.34275,0.939799,0.377651,0.130862,0.228242,0.228405,0.941534,0.492009,0.226417,0.913128,0.84377,0.915697,0.418545,0.182596,0.788796,0.0672879,0.0528899,0.660564,0.000281692,0.828523,0.743602,0.703539,0.151681,0.131317,0.871911,0.240022,0.655816,0.190024,0.570746,0.706924,0.54033,0.34367,0.486072,0.70881,0.501424,0.0610349,0.998767,0.544688,0.797628,0.355221,0.92069,0.180516,0.217782,0.972725,0.331206,0.459375,0.410655,0.792887,0.805815,0.35789,0.433293,0.0935583,0.676867,0.729034,0.704258,0.933325,0.950811,0.840878,0.509259,0.530242,0.594746,0.746542,0.97826,0.216402,0.278084,0.404444,0.0848057,0.875849,0.283771,0.0186853,0.836967,0.287693,0.179804,0.550856,0.187469,0.0347552,0.839229,0.236086,0.547879,0.594955,0.826005,0.347665,0.953994,0.625108,0.657641,0.63112,0.919572,0.22769,0.368485,0.754296,0.201593,0.12732,0.113087,0.716794,0.403238,0.556235,0.559987,0.783825,0.540944,0.167043,0.268086,0.0124073,0.846462,0.991664,0.228909,0.360352,0.388386,0.656139,0.272379,0.359231,0.162497,0.448672,0.535702,0.499805,0.196813,0.851769,0.0816695,0.681213,0.871287,0.697903,0.213385,0.115077,0.449007,0.530374,0.684379,0.560884,0.563534,0.390189,0.899117,0.810095,0.856747,0.674577,0.91598,0.635101,0.503922,0.816471,0.225147,0.682299,0.505047,0.353201,0.910044,0.613734,0.468771,0.670289,0.734019,0.66397,0.299832,0.686897,0.583654,0.863493,0.406885,0.620592,0.773276,0.311871,0.116536,0.21091,0.712422,0.333616,0.503862,0.852987,0.0405751,0.367698,0.831613,0.505936,0.309733,0.351909,0.762609,0.575733,0.174538,0.281758,0.308432,0.617205,0.0500849,0.48379,0.484951,0.419775,0.418289,0.760335,0.476103,0.457135,0.497488,0.0737943,0.196404,0.565623,0.57358,0.914366,0.192834,0.903909,0.767476,0.937089,0.203099,0.664124,0.000654161,0.719563,0.786717,0.31056,0.129671,0.490103,0.46961,0.736455,0.29988,0.199134,0.475185,0.587821,0.202513,0.64382,0.588209,0.474288,0.421728,0.521852,0.764579,0.930488,0.231893,0.345199,0.834804,0.773667,0.577299,0.290868,0.663702,0.821499,0.0618659,0.155826,0.924505,0.86551,0.735221,0.0161955,0.88217,0.962512,0.128294,0.983103,0.777622,0.804063,0.781652,0.328589,0.144133,0.892515,0.33848,0.30164,0.850368,0.0169209,0.197081,0.607881,0.170394,0.052835,0.50695,0.726882,0.775829,0.0474287,0.250858,0.349035,0.445564,0.721177,0.578112,0.353659,0.362132,0.148715,0.0279808,0.48862,0.730068,0.881453,0.0988719,0.807684,0.784312,0.0953979,0.416097,0.937062,0.0592581,0.666683,0.904533,0.508701,0.906751,0.476319,0.361127,0.460248,0.87413,0.735911,0.246853,0.203899,0.915308,0.300679,0.561758,0.079564,0.204189,0.0839702,0.955649,0.468179,0.751469,0.00572169,0.0199772,0.244733,0.652793,0.0616086,0.0230209,0.910867,0.273116,0.225561,0.544032,0.953976,0.479846,0.0283074,0.445882,0.199214,0.968289,0.487214,0.640912,0.386424,0.228803,0.436955,0.23401,0.596235,0.824051,0.298684,0.614746,0.430639,0.962013,0.0421693,0.59049,0.653529,0.0461803,0.0628941,0.744341,0.36962,0.795125,0.0831273,0.942593,0.875396,0.942793,0.758597,0.224278,0.266959,0.365849,0.561841,0.52442,0.310104,0.0935509,0.197216,0.735332,0.234663,0.872297,0.586156,0.231803,0.483564,0.937325,0.340167,0.301062,0.676205,0.0787355,0.520537,0.339533,0.337878,0.270023,0.681444,0.183812,0.037675,0.578796,0.808905,0.318332,0.758172,0.684732,0.421025,0.911575,0.295482,0.58706,0.979936,0.834053,0.308391,0.212053,0.0271898,0.119104,0.210406,0.0568331,0.620096,0.876066,0.410865,0.632482,0.914279,0.906464,0.5543,0.158916,0.78024,0.645004,0.977873,0.987727,0.170511,0.659729,0.117218,0.916528,0.396568,0.228205,0.807364,0.491379,0.576858,0.117401,0.853798,0.98511,0.584264,0.869656,0.823776,0.194024,0.339196,0.486838,0.389935,0.184096,0.013545,0.658254,0.772682,0.238725,0.225569,0.502488,0.073916,0.0127574,0.111582,0.698548,0.351283,0.785868,0.734929,0.589916,0.0197703,0.0999665,0.637736,0.204323,0.986661,0.0771028,0.98552,0.339728,0.954382,0.430937,0.0200059,0.920761,0.581914,0.364524,0.887682,0.326021,0.600123,0.0315611,0.347393,0.759094,0.518655,0.27276,0.0677269,0.869249,0.0670993,0.0708938,0.247674,0.633817,0.493577,0.108172,0.528196,0.437356,0.479261,0.798319,0.630929,0.525587,0.880084,0.386688,0.703997,0.0848988,0.777308,0.571592,0.136584,0.741298,0.692116,0.769049,0.956982,0.811354,0.535028,0.62696,0.556561,0.0518051,0.519499,0.276886,0.665425,0.333788,0.218803,0.205059,0.608827,0.243424,0.120092,0.408884,0.342437,0.0216711,0.732101,0.00742036,0.00190377,0.478599,0.862904,0.54024,0.0398061,0.0608445,0.182812,0.754333,0.63663,0.58918,0.432248,0.0474617,0.543548,0.785645,0.283246,0.306205,0.0631268,0.854779,0.483139,0.380012,0.559853,0.864541,0.36696,0.0592508,0.936748,0.717803,0.0424564,0.369717,0.883038,0.0767527,0.489348,0.324172,0.235555,0.264945,0.487647,0.0310124,0.447532,0.826696,0.184103,0.15353,0.236418,0.190758,0.396256,0.997126,0.891565,0.263262,0.0272423,0.500458,0.838584,0.233517,0.0569199,0.865089,0.0237393,0.622049,0.469828,0.0457531,0.09601,0.86147,0.839664,0.672779,0.325146,0.630318,0.130344,0.149585,0.302817,0.804737,0.225558,0.573836,0.699949,0.27664,0.305079,0.0218241,0.0206811,0.470154,0.887275,0.271572,0.697933,0.0865058,0.0989674,0.69618,0.444094,0.875825,0.595225,0.571179,0.573149,0.275975,0.348532,0.522121,0.267628,0.322737,0.734343,0.791691,0.470248,0.416546,0.454061,0.76928,0.919164,0.420544,0.870047,0.836431,0.602184,0.653878,0.843329,0.271625,0.808918,0.198276,0.557498,0.383917,0.350595,0.818155,0.927113,0.730242,0.0112414,0.0355845,0.736313,0.256979,0.101371,0.488351,0.878448,0.485311,0.174081,0.573837,0.781677,0.726668,0.524408,0.816297,0.214864,0.887259,0.862923,0.483437,0.117268,0.62523,0.639639,0.0460027,0.992896,0.181994,0.790673,0.693476,0.676506,0.946725,0.0114402,0.725426,0.568094,0.719256,0.502146,0.556968,0.402819,0.553755,0.920574,0.510558,0.819315,0.446223,0.7392,0.891296,0.666399,0.906139,0.882139,0.0831035,0.913592,0.396119,0.81886,0.332799,0.720436,0.619906,0.291523,0.817345,0.448763,0.901807,0.24532,0.925247,0.674638,0.227805,0.317944,0.646013,0.262144,0.929721,0.455932,0.177695,0.751863,0.434685,0.952446,0.803875,0.0610018,0.729677,0.634251,0.316244,0.858133,0.752993,0.277264,0.878152,0.996924,0.524843,0.414225,0.768601,0.851026,0.868212,0.918836,0.45627,0.373484,0.564246,0.446172,0.628184,0.58734,0.914804,0.500322,0.242831,0.945797,0.0525573,0.937887,0.917699,0.370593,0.442251,0.743164,0.9753,0.469414,0.955802,0.716442,0.790361,0.588693,0.877466,0.819208,0.444865,0.557418,0.0954782,0.201631,0.0474805,0.467751,0.372615,0.597535,0.540366,0.342374,0.456396,0.584494,0.327621,0.172545,0.697474,0.616171,0.644523,0.501988,0.873033,0.337126,0.0734753,0.78166,0.31066,0.542594,0.763559,0.199906,0.439672,0.265324,0.37326,0.339143,0.63712,0.70151,0.225485,0.259837,0.14716,0.229259,0.882827,0.172378,0.187196,0.516668,0.482029,0.306462,0.702391,0.891484,0.514618,0.826705,0.885794,0.809285,0.141641,0.513424,0.907806,0.955744,0.466277,0.534415,0.9176,0.473035,0.493956,0.103377,0.189902,0.44155,0.0174873,0.778834,0.828291,0.968741,0.578094,0.980005,0.640091,0.522443,0.119874,0.99279,0.603329,0.437961,0.461542,0.849569,0.82225,0.72709,0.186369,0.170141,0.153487,0.718884,0.471981,0.881299,0.030585,0.410391,0.444187,0.330538,0.555815,0.555611,0.0408927,0.914778,0.933669,0.358614,0.449045,0.788453,0.345738,0.161668,0.901742,0.927267,0.0451121,0.602681,0.543153,0.761072,0.467894,0.702393,0.422256,0.844762,0.369739,0.796643,0.678935,0.801438,0.677833,0.236603,0.997909,0.529139,0.748995,0.426237,0.48487,0.173052,0.637036,|0.78256,0.928391,0.859738,0.29897,0.355616,0.110549,0.197417,0.0349787,0.642836,0.880816,0.347812,0.584891,0.99541,0.152269,0.750276,0.04488,0.28384,0.36994,0.797203,0.516122,0.668553,0.30264,0.627672,0.70108,0.139285,0.503861,0.164401,0.449719,0.948589,0.829178,0.349375,0.300471,0.448436,0.625388,0.640421,0.371292,0.788168,0.0725487,0.840484,0.323474,0.0720905,0.965953,0.97878,0.97524,0.182403,0.192168,0.311937,0.410614,0.301712,0.242769,0.497481,0.950284,0.717772,0.994192,0.130366,0.219279,0.281315,0.15011,0.85925,0.406102,0.444724,0.341878,0.413192,0.260406,0.704239,0.314538,0.0669768,0.43056,0.510517,0.133573,0.520932,0.731527,0.604309,0.494024,0.0111291,0.234166,0.172327,0.606272,0.0313576,0.451177,0.000739753,0.47615,0.279084,0.11325,0.304794,0.92465,0.31258,0.232739,0.651839,0.108922,0.515917,0.00184298,0.108899,0.570179,0.723977,0.27594,0.0442706,0.159191,0.652165,0.939001,0.779414,0.515321,0.905312,0.102666,0.938005,0.590287,0.459834,0.0220219,0.946098,0.471699,0.726933,0.42558,0.954258,0.652258,0.00784051,0.278155,0.987876,0.0299535,0.056567,0.266729,0.462488,0.321251,0.741886,0.893028,0.695362,0.565074,0.772646,0.136673,0.81313,0.893587,0.384697,0.0235425,0.855283,0.239232,0.879151,0.771703,0.651937,0.909732,0.396069,0.603445,0.49026,0.796043,0.359913,0.263223,0.920893,0.290299,0.776453,0.467798,0.51428,0.751512,0.546912,0.450451,0.20057,0.148558,0.451311,0.566641,0.39736,0.867643,0.94277,0.855328,0.571022,0.94757,0.671911,0.58041,0.265775,0.490593,0.0781124,0.848796,0.614873,0.468278,0.501224,0.686465,0.607604,0.92843,0.664214,0.469991,0.0141735,0.710658,0.569715,0.95932,0.451554,0.0329866,0.967198,0.0232932,0.925871,0.037847,0.544004,0.455825,0.732722,0.124922,0.807174,0.690033,0.434138,0.0396259,0.193419,0.518615,0.149679,0.88804,0.960518,0.908399,0.557394,0.807804,0.948831,0.321382,0.208354,0.326647,0.564503,0.780281,0.343952,0.389818,0.354885,0.246299,0.891639,0.133725,0.993923,0.690333,0.903627,0.22287,0.531137,0.143923,0.267782,0.161799,0.357145,0.592442,0.0711881,0.730237,0.157777,0.903634,0.869418,0.136415,0.507547,0.831157,0.787881,0.140373,0.0959051,0.332218,0.178753,0.655811,0.360873,0.0408677,0.902463,0.72684,0.522971,0.577201,0.826882,0.399494,0.17013,0.272756,0.909119,0.995862,0.718684,0.206615,0.829862,0.989989,0.417214,0.386416,0.959715,0.527094,0.207191,0.850473,0.218876,0.745386,0.788702,0.311897,0.455265,0.839918,0.335868,0.456548,0.842751,0.559759,0.587272,0.00859487,0.0795452,0.194752,0.628844,0.676997,0.117032,0.364864,0.580958,0.995122,0.511517,0.635283,0.643202,0.798418,0.706718,0.200858,0.44038,0.66715,0.802498,0.0295629,0.182123,0.120424,0.891608,0.692845,0.213818,0.0922217,0.229542,0.76027,0.0162425,0.296259,0.417072,0.895778,0.333498,0.86041,0.150301,0.0679582,0.881373,0.458182,0.869898,0.654968,0.78687,0.780796,0.880025,0.845982,0.395853,0.45844,0.0393921,0.291178,0.822905,0.650281,0.918002,0.996909,0.0513788,0.146709,0.833759,0.0099507,0.0868536,0.434487,0.631045,0.483655,0.750644,0.886113,0.656756,0.610464,0.108687,0.544714,0.384125,0.698282,0.371218,0.807905,0.567399,0.375119,0.00443876,0.871906,0.49752,0.476335,0.719646,0.274097,0.937085,0.499311,0.770956,0.25148,0.0298144,0.189515,0.277326,0.682761,0.0267835,0.559465,0.574001,0.447679,0.680088,0.161228,0.918348,0.439438,0.283209,0.324558,0.635948,0.818955,0.560277,0.973922,0.578291,0.593099,0.863151,0.870116,0.024749,0.294127,0.287037,0.783229,0.643053,0.0289749,0.530393,0.424774,0.877968,0.0526599,0.162915,0.116685,0.959695,0.0101559,0.104952,0.506989,0.116724,0.0530608,0.763365,0.120706,0.999282,0.639931,0.405175,0.868234,0.427333,0.0672056,0.391136,0.86339,0.912497,0.0727924,0.255122,0.869213,0.352944,0.716222,0.675883,0.194301,0.32363,0.540836,0.324649,0.489916,0.0563509,0.299055,0.728102,0.949474,0.292417,0.171438,0.808024,0.044519,0.0371864,0.0273836,0.825961,0.50235,0.447882,0.246796,0.908865,0.460556,0.637598,0.348302,0.992401,0.127388,0.805708,0.436966,0.907486,0.376354,0.462275,0.57292,0.162492,0.670709,0.862946,0.868933,0.746606,0.041086,0.348862,0.935887,0.906126,0.887977,0.536358,0.151968,0.130598,0.407978,0.0319939,0.786798,0.725033,0.673847,0.637151,0.500934,0.769089,0.131035,0.583187,0.0974165,0.882601,0.906154,0.530621,0.0834192,0.185307,0.817716,0.544082,0.868275,0.616579,0.992262,0.197285,0.306051,0.574719,0.250288,0.475802,0.0497342,0.237867,0.0688329,0.72607,0.643551,0.00723112,0.201438,0.940817,0.385058,0.999142,0.943548,0.0666677,0.178913,0.292197,0.750402,0.182607,0.134279,0.626182,0.703473,0.773117,0.114818,0.273097,0.405667,0.0617251,0.365338,0.930467,0.896842,0.862894,0.345831,0.521227,0.155591,0.317532,0.66891,0.0172722,0.216001,0.415558,0.90732,0.427827,0.307659,0.14996,0.0102572,0.00172204,0.204027,0.584723,0.0605981,0.287101,0.681884,0.384965,0.930297,0.362547,0.401132,0.533347,0.906862,0.177343,0.421293,0.231179,0.814083,0.345828,0.215501,0.00987065,0.411846,0.221775,0.66754,0.162051,0.209249,0.167286,0.186351,0.666607,0.609261,0.0408925,0.185826,0.840529,0.464599,0.810666,0.963547,0.800913,0.631615,0.213475,0.332239,0.454192,0.578291,0.209373,0.179281,0.468261,0.374664,0.742994,0.621437,0.253505,0.216686,0.806554,0.0468763,0.569437,0.334117,0.747528,0.332288,0.2602,0.386773,0.644042,0.429611,0.451949,0.139578,0.374159,0.306068,0.860632,0.742159,0.137234,0.469264,0.569332,0.00249302,0.178126,0.0663156,0.570767,0.623972,0.267873,0.959783,0.256735,0.776449,0.713951,0.405377,0.694627,0.273585,0.524204,0.55771,0.654288,0.00761259,0.41343,0.416665,0.587901,0.701692,0.748593,0.106398,0.365408,0.252769,0.604479,0.0850863,0.282883,0.192209,0.41943,0.635902,0.110786,0.822967,0.781033,0.621184,0.937169,0.875239,0.176053,0.796252,0.168665,0.694777,0.622653,0.394518,0.26338,0.00601262,0.298153,0.0567898,0.0685943,0.966482,0.820216,0.704606,0.240991,0.725899,0.766897,0.764914,0.768726,0.107238,0.420877,0.411911,0.0173763,0.449128,0.288282,0.626242,0.626264,0.839936,0.0289087,0.0471939,0.745944,0.30879,0.722202,0.785423,0.177019,0.595483,0.471609,0.665807,0.177504,0.975824,0.874439,0.369176,0.916624,0.670395,0.776617,0.844041,0.04294,0.114936,0.26602,0.662912,0.765878,0.473244,0.673553,0.442313,0.0600012,0.645255,0.991007,0.723536,0.349209,0.187387,0.662368,0.399935,0.451762,0.789619,0.427426,0.725723,0.256174,0.365063,0.765532,0.398666,0.0983661,0.495687,0.292167,0.691459,0.624546,0.00181872,0.797198,0.110993,0.527158,0.155865,0.0327837,0.906203,0.254833,0.802387,0.0597824,0.239299,0.92473,0.734901,0.478136,0.917875,0.224649,0.0128456,0.594877,0.661465,0.101571,0.599028,0.186957,0.751946,0.90029,0.584117,0.944523,0.330829,0.189801,0.469216,0.121655,0.349554,0.871422,0.292181,0.638321,0.532777,0.1353,0.150269,0.145277,0.509251,0.495498,0.530114,0.750779,0.381371,0.289153,0.453305,0.836027,0.29585,0.586169,0.1469,0.513852,0.690953,0.268076,0.856711,0.578124,0.353982,0.371452,0.0629787,0.640242,0.840769,0.862838,0.536255,0.722701,0.0525233,0.618175,0.98971,0.241293,0.716411,0.107965,0.75907,0.0278279,0.285822,0.131403,0.316421,0.339294,0.95764,0.799796,0.258037,0.402212,0.116669,0.456573,0.132207,0.122327,0.0125716,0.547944,0.52345,0.0956376,0.36666,0.83905,0.744506,0.378376,0.508657,0.340334,0.417266,0.953344,0.867287,0.956695,0.567144,0.252536,0.933362,0.700907,0.455507,0.248206,0.359832,0.929944,0.145747,0.490956,0.0682628,0.680573,0.551927,0.252087,0.678011,0.713538,0.845535,0.511142,0.723435,0.301432,0.691348,0.336631,0.530056,0.95952,0.618911,0.715908,0.709311,0.549234,0.601415,0.865819,0.958943,0.773838,0.108217,0.598895,0.073986,0.0543575,0.74031,0.85822,0.0759977,0.241163,0.596237,0.556078,0.928745,0.657287,0.110149,0.875194,0.383927,0.455671,0.637242,0.0774481,0.862908,0.258831,0.0886563,0.225466,0.582408,0.147924,0.615991,0.309587,0.881702,0.361193,0.0676069,0.400625,0.825547,0.50077,0.687128,0.516926,0.76293,0.228191,0.084061,0.38544,0.420197,0.471288,0.988608,0.119792,0.921787,0.948105,0.732902,0.795674,0.417804,0.449354,0.540874,0.438495,0.740795,0.546269,0.974575,0.177026,0.0270218,0.841201,0.0891035,0.766178,0.0457262,0.672828,0.600927,0.74251,0.432702,0.671565,0.0213603,0.697192,0.843802,0.879548,0.952497,0.00328964,0.873926,0.790609,0.411987,0.781484,0.411441,0.995432,0.977624,0.617625,0.47492,0.268573,0.593531,0.841644,0.579267,0.696746,0.292256,0.576583,0.524703,0.720105,0.350103,0.257568,0.495357,0.261375,0.819226,0.355078,0.444467,0.178106,0.408054,0.226185,0.0925954,0.422598,0.776725,0.524199,0.223102,0.49044,0.859445,0.663101,0.753859,0.345103,0.857387,0.855367,0.523295,0.903397,0.605486,0.417392,0.969784,0.974595,0.570892,0.883728,0.211114,0.0567842,0.33234,0.633553,0.537633,0.348911,0.385843,0.758914,0.825999,0.279588,0.681865,0.433066,0.938106,0.660305,0.54192,0.89404,0.711133,0.400902,0.975263,0.121098,0.189295,0.0553014,0.108878,0.522057,0.673087,0.271015,0.453959,0.946826,0.57003,0.863349,0.773626,0.192431,0.711921,0.981558,0.355709,0.781613,0.937795,0.276359,0.960651,0.772778,0.0633205,0.241672,0.869917,0.870477,0.10077,0.486908,0.684967,0.641151,0.369494,0.295294,0.888867,0.379637,0.314856,0.138966,0.367495,|0.453888,0.84285,0.660887,0.808799,0.872862,0.114428,0.286418,0.623703,0.382895,0.0645961,0.565367,0.896072,0.514534,0.973113,0.211326,0.902691,0.442007,0.860525,0.944961,0.173213,0.626509,0.371106,0.203602,0.0369419,0.441475,0.528653,0.253189,0.793318,0.541701,0.363082,0.890006,0.857431,0.606951,0.513809,0.888608,0.792877,0.319456,0.514451,0.706686,0.574421,0.683545,0.888881,0.166705,0.707076,0.315435,0.580925,0.469758,0.840906,0.0657253,0.163676,0.988164,0.454278,0.326587,0.667573,0.850086,0.491057,0.243006,0.845252,0.988691,0.592131,0.0150441,0.618467,0.38079,0.107343,0.893765,0.695788,0.959966,0.151218,0.555169,0.227692,0.0619477,0.640768,0.343125,0.690405,0.22613,0.789132,0.140261,0.54642,0.334293,0.378555,0.393633,0.534982,0.629332,0.911875,0.803156,0.73238,0.268054,0.114849,0.29202,0.0963504,0.514722,0.804382,0.0230524,0.00815701,0.0313253,0.417039,0.94754,0.900985,0.275606,0.674316,0.283524,0.682095,0.303056,0.0441853,0.0889567,0.566008,0.932962,0.49709,0.78992,0.169449,0.519469,0.742006,0.188048,0.97677,0.257223,0.876465,0.88116,0.909536,0.759276,0.6601,0.0837816,0.374436,0.641136,0.161381,0.381198,0.109289,0.748402,0.383758,0.0507603,0.063552,0.131803,0.500877,0.609332,0.0782068,0.0547891,0.182979,0.622312,0.0219747,0.742682,0.3313,0.412585,0.941188,0.309843,0.125193,0.698462,0.306368,0.880411,0.126681,0.627116,0.823692,0.829372,0.768807,0.54304,0.100146,0.553685,0.935391,0.0907714,0.869221,0.224594,0.293109,0.500005,0.11889,0.514133,0.82558,0.438527,0.398706,0.650332,0.151889,0.178421,0.470039,0.558564,0.918347,0.0269961,0.0521798,0.93025,0.237893,0.0317371,0.0659708,0.886632,0.535652,0.0624759,0.299982,0.587524,0.452014,0.609657,0.726619,0.823213,0.181324,0.853676,0.448064,0.258428,0.345931,0.746117,0.874006,0.677131,0.0201147,0.939486,0.0249432,0.770191,0.353661,0.169925,0.260437,0.768056,0.448508,0.223979,0.992916,0.238881,0.279252,0.99774,0.860497,0.36088,0.452761,0.133126,0.269532,0.365301,0.0134095,0.740514,0.947077,0.486707,0.557255,0.905312,0.543054,0.483551,0.135706,0.720473,0.64733,0.49912,0.609461,0.972483,0.791593,0.429633,0.276792,0.159652,0.651207,0.315735,0.599934,0.440307,0.237491,0.71927,0.45547,0.0510752,0.864923,0.849713,0.370228,0.806965,0.454038,0.900561,0.341388,0.0875465,0.563985,0.957589,0.695701,0.582524,0.372656,0.837405,0.843262,0.467612,0.64548,0.0132353,0.888272,0.504802,0.515388,0.329621,0.977729,0.375079,0.0413231,0.931393,0.926563,0.618423,0.999669,0.683325,0.364461,0.450695,0.830293,0.666347,0.512943,0.0122622,0.438775,0.443882,0.612326,0.635264,0.345832,0.946512,0.620667,0.958607,0.975983,0.796023,0.360527,0.506116,0.393604,0.0572117,0.00190789,0.613048,0.642284,0.761683,0.715261,0.146284,0.815998,0.173877,0.903444,0.962534,0.317816,0.846055,0.816703,0.0131455,0.250274,0.197199,0.146589,0.061671,0.237422,0.387144,0.048519,0.628157,0.503234,0.686537,0.951298,0.921664,0.111329,0.656776,0.739247,0.801577,0.803863,0.867865,0.847588,0.862091,0.673088,0.511188,0.265649,0.136762,0.807417,0.369784,0.446324,0.340668,0.395636,0.87687,0.323816,0.7632,0.948419,0.103065,0.902422,0.650549,0.897922,0.59775,0.629129,0.250795,0.640969,0.416692,0.996151,0.679044,0.241171,0.0429802,0.812543,0.661274,0.343692,0.283071,0.220347,0.991947,0.4591,0.0645253,0.691953,0.584789,0.911969,0.963713,0.357,0.322436,0.249667,0.553573,0.69575,0.526478,0.821805,0.940426,0.30166,0.302547,0.785955,0.6715,0.0991247,0.584913,0.262212,0.747482,0.166887,0.246779,0.400717,0.627096,0.911713,0.0841106,0.282731,0.106318,0.508368,0.511124,0.701083,0.512303,0.366478,0.934202,0.185964,0.59554,0.439989,0.384481,0.788447,0.710132,0.0362117,0.431282,0.382595,0.407029,0.995112,0.252719,0.394049,0.707744,0.476516,0.125202,0.147001,0.0924578,0.529338,0.382668,0.958581,0.5005,0.81325,0.530739,0.0191835,0.0397949,0.857121,0.0635538,0.97336,0.0640005,0.905703,0.81985,0.0578009,0.944492,0.637475,0.932936,0.238318,0.537172,0.569987,0.627851,0.528305,0.80495,0.293385,0.450041,0.35026,0.361862,0.434421,0.962515,0.870952,0.23364,0.663916,0.540671,0.826822,0.319502,0.956746,0.104088,0.469579,0.964749,0.966287,0.468833,0.921948,0.878563,0.0474335,0.460996,0.752152,0.554571,0.519584,0.649939,0.00575387,0.768953,0.389775,0.011943,0.44644,0.430879,0.853445,0.143838,0.412778,0.114522,0.739399,0.0190071,0.125192,0.143157,0.49851,0.218449,0.881006,0.225757,0.376704,0.663744,0.0549026,0.978381,0.76832,0.534157,0.102803,0.443537,0.625476,0.301336,0.168454,0.5187,0.809193,0.834139,0.839399,0.25346,0.810544,0.451324,0.556535,0.312037,0.100468,0.0674376,0.598773,0.717019,0.202535,0.373483,0.682428,0.93848,0.10442,0.532486,0.60062,0.551203,0.53412,0.769431,0.787858,0.550369,0.514753,0.24378,0.668598,0.243857,0.38784,0.742218,0.622168,0.610871,0.183724,0.890441,0.301261,0.0921415,0.0959099,0.479209,0.595417,0.268927,0.0076322,0.956379,0.725739,0.716183,0.294316,0.0615497,0.417252,0.694853,0.703388,0.144251,0.0144662,0.159912,0.469988,0.142542,0.19272,0.530142,0.210534,0.702466,0.326555,0.115353,0.729302,0.76168,0.628431,0.970033,0.960351,0.488041,0.867637,0.467821,0.115659,0.887776,0.413838,0.287741,0.0502521,0.65691,0.927024,0.93315,0.835216,0.0556073,0.737007,0.917264,0.523808,0.884998,0.493468,0.078976,0.454533,0.622922,0.932404,0.236886,0.396384,0.533939,0.907775,0.971201,0.769954,0.182693,0.749777,0.247866,0.315221,0.933029,0.912573,0.550327,0.83188,0.680141,0.175893,0.0408149,0.681798,0.487272,0.293,0.288202,0.853765,0.86731,0.911521,0.730345,0.823947,0.143017,0.87171,0.504495,0.377734,0.894618,0.647896,0.588681,0.0900667,0.279035,0.0190427,0.8213,0.652463,0.364054,0.69494,0.922689,0.482536,0.473081,0.691608,0.825155,0.364264,0.615757,0.763861,0.84477,0.319477,0.357396,0.46932,0.870038,0.964401,0.439741,0.627276,0.807072,0.0683978,0.515732,0.0747828,0.202777,0.254669,0.229222,0.345071,0.152769,0.614958,0.86515,0.274587,0.66637,0.408938,0.954292,0.326523,0.1913,0.41733,0.0954888,0.152579,0.448688,0.491906,0.00967693,0.587526,0.54365,0.97359,0.0536484,0.398864,0.196598,0.671476,0.0610806,0.975214,0.410471,0.0612398,0.95995,0.406834,0.284385,0.25302,0.552959,0.65884,0.680491,0.0338602,0.513544,0.270405,0.189437,0.0652794,0.105668,0.225485,0.763349,0.844709,0.583539,0.905601,0.959194,0.402488,0.254964,0.58566,0.958737,0.822585,0.777244,0.184966,0.918759,0.897902,0.367443,0.532928,0.366461,0.969654,0.898908,0.160768,0.254301,0.810962,0.0775752,0.765624,0.726147,0.146732,0.174741,0.263787,0.286555,0.175457,0.662533,0.516211,0.230239,0.730896,0.346432,0.472802,0.918812,0.0887962,0.695997,0.2891,0.110809,0.00742704,0.668308,0.0803744,0.91221,0.93384,0.0296679,0.646787,0.0903113,0.462369,0.363033,0.39087,0.563908,0.549334,0.223027,0.203835,0.702459,0.782081,0.753671,0.326066,0.489614,0.803468,0.805421,0.97658,0.682591,0.126823,0.380578,0.309011,0.357986,0.607202,0.49,0.389359,0.329911,0.496058,0.867666,0.154278,0.0682371,0.655315,0.546512,0.219332,0.62456,0.941364,0.733979,0.785664,0.519117,0.262315,0.540219,0.0151632,0.449676,0.934416,0.478976,0.724479,0.572108,0.774054,0.587287,0.761759,0.422513,0.216644,0.767724,0.197169,0.414053,0.54807,0.556191,0.814466,0.214429,0.628642,0.322522,0.519805,0.323743,0.384063,0.228178,0.52866,0.627174,0.808623,0.0520095,0.117427,0.670696,0.538366,0.0454071,0.594826,0.0744219,0.741746,0.560605,0.12462,0.954146,0.308123,0.519975,0.572249,0.981709,0.790435,0.619987,0.674629,0.424022,0.553474,0.221522,0.421685,0.396286,0.418284,0.892512,0.359966,0.303776,0.966368,0.153151,0.878966,0.630843,0.785334,0.505457,0.054942,0.0688648,0.26322,0.97716,0.170074,0.627538,0.018923,0.317571,0.945649,0.938305,0.889784,0.639759,0.699759,0.711125,0.605864,0.462641,0.765459,0.62448,0.684559,0.605893,0.206744,0.0187995,0.150411,0.643635,0.755309,0.21462,0.760429,0.859484,0.788264,0.313137,0.971994,0.882342,0.254708,0.505822,0.453142,0.6717,0.429171,0.81738,0.628973,0.0316024,0.665782,0.259855,0.447905,0.363963,0.164988,0.974875,0.819913,0.398941,0.684007,0.340871,0.152168,0.156807,0.0457731,0.989059,0.943278,0.543888,0.105595,0.516325,0.126392,0.466246,0.825352,0.826541,0.489914,0.309428,0.566407,0.281264,0.90812,0.0943046,0.506555,0.511151,0.293926,0.173602,0.13361,0.574565,0.870403,0.336083,0.477701,0.163776,0.0148281,0.0931278,0.973007,0.842678,0.65571,0.851106,0.361228,0.25714,0.0346416,0.962617,0.376915,0.427237,0.39646,0.404842,0.962929,0.101732,0.239895,0.349117,0.512142,0.452597,0.755532,0.500694,0.726143,0.277294,0.262047,0.170262,0.283073,0.250157,0.368116,0.435359,0.288985,0.491378,0.263896,0.802734,0.735653,0.162555,0.212282,0.790104,0.253262,0.518039,0.145354,0.702639,0.224976,0.630983,0.508579,0.143208,0.259242,0.327173,0.0567544,0.311271,0.716317,0.343072,0.998709,0.116377,0.802162,0.894226,0.745805,0.650996,0.497104,0.856628,0.0574073,0.632591,0.991062,0.999227,0.581374,0.995372,0.501955,0.0804037,0.763805,0.00329727,0.055968,0.0887049,0.657553,0.218597,0.511915,0.376804,0.383301,0.451772,0.743784,0.247,0.351136,0.586079,0.56166,0.918494,0.0361519,0.506708,0.868219,0.44661,0.553293,0.290154,0.134931,0.134265,0.48024,|0.801092,0.761624,0.510435,0.0804618,0.739887,0.601972,0.360083,0.865598,0.819936,0.858865,0.491199,0.886975,0.194339,0.652154,0.789637,0.54014,0.848942,0.176332,0.9051,0.821426,0.421508,0.494587,0.383293,0.321102,0.0475134,0.381349,0.630626,0.145256,0.123114,0.232586,0.338701,0.271726,0.737795,0.101575,0.512943,0.912052,0.170121,0.872825,0.641047,0.368618,0.323765,0.509927,0.808993,0.44601,0.292877,0.883229,0.645696,0.60353,0.572924,0.583553,0.335959,0.206432,0.457995,0.301218,0.639147,0.642754,0.129068,0.964947,0.0165768,0.433315,0.18467,0.039102,0.707627,0.689597,0.297609,0.205122,0.729787,0.0352303,0.00939524,0.170843,0.714003,0.0620279,0.313219,0.665781,0.676249,0.111342,0.817368,0.330318,0.854915,0.0618764,0.808154,0.884377,0.140896,0.897194,0.450972,0.773337,0.471343,0.566018,0.419749,0.361956,0.694664,0.65339,0.343968,0.197833,0.805344,0.421942,0.125919,0.722397,0.253835,0.886011,0.454137,0.678997,0.870871,0.850685,0.318613,0.180046,0.467285,0.858346,0.366959,0.0836036,0.249549,0.740997,0.214616,0.252374,0.213861,0.82678,0.150572,0.329909,0.573899,0.00938034,0.549334,0.733978,0.606143,0.533371,0.840711,0.0670311,0.827831,0.0428972,0.137224,0.665553,0.267726,0.430928,0.270339,0.49505,0.0637885,0.369558,0.442022,0.385256,0.544329,0.511206,0.45192,0.00436777,0.615536,0.0579315,0.674074,0.704298,0.0316184,0.731451,0.156459,0.0115753,0.219286,0.998995,0.879415,0.894645,0.121566,0.767693,0.984158,0.629092,0.173349,0.440272,0.238188,0.748628,0.234806,0.860166,0.694844,0.909411,0.901985,0.533006,0.667917,0.331815,0.636493,0.575528,0.893644,0.702274,0.0187438,0.462736,0.343931,0.506736,0.309837,0.387798,0.722134,0.285508,0.530926,0.330465,0.547663,0.138025,0.589018,0.657721,0.415985,0.779982,0.434221,0.419183,0.212444,0.942696,0.346634,0.346519,0.565396,0.277251,0.0221326,0.520725,0.593702,0.963049,0.305304,0.0894216,0.621596,0.991105,0.599325,0.881615,0.488365,0.646793,0.9993,0.341227,0.312454,0.405739,0.0754564,0.451731,0.666247,0.781762,0.666746,0.579734,0.763808,0.289484,0.973892,0.880892,0.048042,0.285914,0.789297,0.928757,0.213351,0.746503,0.166882,0.975052,0.452918,0.447009,0.404868,0.865407,0.803032,0.314313,0.281639,0.444014,0.240067,0.597393,0.10105,0.591548,0.806512,0.672729,0.325614,0.164499,0.22452,0.583518,0.194241,0.701879,0.41232,0.790864,0.0579553,0.674839,0.13692,0.0173326,0.555737,0.718626,0.633334,0.971652,0.570071,0.713222,0.0959949,0.29017,0.198136,0.107466,0.981381,0.521379,0.0776097,0.955599,0.933741,0.919572,0.19027,0.483928,0.00182843,0.648015,0.24023,0.620259,0.933187,0.372083,0.0527526,0.899656,0.769926,0.117399,0.110633,0.982259,0.653698,0.404018,0.672884,0.314103,0.0655486,0.240446,0.985305,0.200794,0.184642,0.699973,0.574638,0.0967292,0.699222,0.690436,0.242938,0.513984,0.0321875,0.41325,0.772465,0.0540515,0.249209,0.174885,0.523513,0.103722,0.145965,0.819612,0.929125,0.864618,0.828114,0.426702,0.271003,0.898281,0.802159,0.514381,0.0285172,0.501125,0.250882,0.111595,0.960574,0.337448,0.551506,0.348454,0.509947,0.637578,0.695595,0.585238,0.00265485,0.381034,0.918207,0.031709,0.291486,0.0127011,0.336809,0.6295,0.579755,0.820611,0.817316,0.489828,0.671328,0.454561,0.39758,0.843977,0.261878,0.691118,0.756427,0.21397,0.667629,0.854738,0.178813,0.654161,0.277729,0.81141,0.042954,0.387411,0.862989,0.715745,0.31561,0.275604,0.462209,0.233224,0.628126,0.36608,0.723471,0.972781,0.0465648,0.508409,0.184289,0.172427,0.245864,0.507752,0.889858,0.111669,0.492373,0.790845,0.920412,0.0816449,0.71541,0.31272,0.74098,0.0488949,0.226665,0.0685766,0.204937,0.409714,0.392224,0.0550812,0.0795212,0.928174,0.864987,0.0339699,0.857344,0.46376,0.776385,0.587772,0.443566,0.525351,0.471429,0.826037,0.416071,0.231028,0.982218,0.0290739,0.255435,0.30933,0.0900877,0.813584,0.180869,0.846408,0.874252,0.507059,0.0778924,0.7485,0.448119,0.210354,0.764447,0.249961,0.805141,0.447092,0.735541,0.804997,0.136988,0.211388,0.862388,0.336567,0.34913,0.753117,0.718001,0.74052,0.733318,0.951039,0.15057,0.25547,0.013645,0.127155,0.519367,0.0918952,0.10654,0.32294,0.429514,0.800484,0.723707,0.637066,0.290782,0.2674,0.537341,0.0471596,0.979146,0.402464,0.576955,0.799644,0.353355,0.208135,0.107246,0.823405,0.982285,0.409838,0.00641841,0.594033,0.583027,0.227949,0.101316,0.299373,0.883051,0.827514,0.376446,0.978898,0.248165,0.113141,0.377068,0.656509,0.689265,0.996191,0.804441,0.989229,0.972821,0.76159,0.439454,0.914148,0.5392,0.183183,0.289227,0.579649,0.0748298,0.299526,0.400072,0.178517,0.355495,0.125521,0.202713,0.888618,0.698269,0.829402,0.283102,0.192535,0.391005,0.488869,0.700809,0.229341,0.0989553,0.420845,0.0171663,0.531516,0.766398,0.0273824,0.665688,0.876062,0.398817,0.58728,0.702964,0.507375,0.546018,0.373121,0.111738,0.194869,0.211921,0.440398,0.725945,0.00497985,0.407088,0.0233439,0.0980489,0.837693,0.0255787,0.228547,0.928338,0.790331,0.151168,0.0794793,0.424392,0.126792,0.658907,0.0369603,0.472693,0.658759,0.57054,0.124157,0.687833,0.822468,0.967461,0.198348,0.518056,0.249779,0.554716,0.474363,0.207633,0.405564,0.463034,0.458341,0.546955,0.0644616,0.132347,0.317379,0.441165,0.678133,0.311078,0.0979478,0.633025,0.159127,0.592577,0.0175394,0.294162,0.158099,0.127437,0.88432,0.496218,0.874705,0.840091,0.672868,0.295394,0.67603,0.833158,0.124021,0.168423,0.482952,0.179429,0.647894,0.842483,0.283217,0.219822,0.364231,0.693183,0.913779,0.037127,0.262078,0.0398416,0.962299,0.850205,0.0429785,0.365677,0.560425,0.387402,0.655682,0.950077,0.434205,0.435146,0.810694,0.784149,0.746327,0.195271,0.288173,0.114344,0.0293031,0.939611,0.374852,0.772472,0.607223,0.651401,0.443163,0.792215,0.127602,0.547985,0.353735,0.327794,0.201563,0.552406,0.2018,0.866569,0.510592,0.580103,0.933299,0.183162,0.266959,0.351288,0.3071,0.57184,0.375692,0.459586,0.0344674,0.532787,0.310454,0.701469,0.248601,0.971659,0.725035,0.554918,0.254257,0.0202918,0.816075,0.0114515,0.045294,0.500073,0.960743,0.995723,0.110607,0.266912,0.894993,0.79978,0.962589,0.332937,0.414207,0.296702,0.544209,0.515712,0.772976,0.518892,0.84326,0.0816633,0.172249,0.366956,0.0502122,0.576787,0.319116,0.00700164,0.853805,0.23763,0.0704173,0.509662,0.361072,0.746783,0.114146,0.740898,0.278518,0.160877,0.444267,0.449429,0.496059,0.702153,0.661496,0.344703,0.986046,0.0278141,0.0628964,0.705883,0.455331,0.439486,0.155706,0.499094,0.610293,0.527752,0.632506,0.543317,0.781938,0.145238,0.691556,0.494056,0.383349,0.452055,0.024453,0.118307,0.336692,0.767775,0.34681,0.944258,0.0209004,0.457971,0.331241,0.566161,0.815192,0.73034,0.0931987,0.918578,0.458006,0.680589,0.527072,0.741936,0.695398,0.375457,0.708378,0.437912,0.890554,0.0171708,0.108993,0.2264,0.238183,0.889347,0.385086,0.125634,0.173026,0.955698,0.0481654,0.627346,0.731452,0.550476,0.572341,0.990635,0.0521635,0.310531,0.185395,0.493929,0.167873,0.364884,0.455035,0.91672,0.73769,0.664433,0.20734,0.337295,0.591898,0.955712,0.75807,0.220358,0.522549,0.119698,0.35704,0.851655,0.215519,0.0842791,0.906313,0.415877,0.909239,0.0652721,0.426238,0.338644,0.883338,0.730464,0.318349,0.201561,0.786563,0.646479,0.926368,0.818972,0.636274,0.995937,0.521709,0.68692,0.248369,0.548431,0.543007,0.216891,0.853777,0.399951,0.621031,0.409199,0.190443,0.505352,0.67397,0.236269,0.0285429,0.880634,0.524734,0.834524,0.0474535,0.793393,0.936026,0.611957,0.897547,0.557014,0.868563,0.314146,0.867699,0.579821,0.938135,0.208545,0.912516,0.376198,0.911721,0.585016,0.558416,0.497495,0.372079,0.610844,0.648228,0.726917,0.521548,0.847367,0.550447,0.884047,0.665823,0.180223,0.520516,0.528636,0.338035,0.291196,0.318682,0.0212428,0.0233366,0.908957,0.297894,0.120458,0.919949,0.755749,0.550004,0.0378868,0.0989593,0.264469,0.686515,0.81302,0.313779,0.669022,0.278416,0.0390636,0.867454,0.586445,0.153081,0.210107,0.417197,0.849652,0.0513951,0.725761,0.89587,0.304967,0.602909,0.0418572,0.740562,0.682549,0.216039,0.667044,0.509429,0.485658,0.414753,0.9601,0.468726,0.275768,0.857758,0.787038,0.736502,0.641376,0.958503,0.634912,0.359815,0.0599715,0.833979,0.142597,0.875235,0.114709,0.654538,0.299786,0.993229,0.0681403,0.704824,0.746819,0.94085,0.260536,0.120533,0.27973,0.711279,0.845882,0.441663,0.154755,0.355072,0.895758,0.578512,0.694475,0.294908,0.235923,0.35981,0.600459,0.808651,0.307637,0.870548,0.151566,0.793607,0.384516,0.555951,0.303383,0.934218,0.938233,0.0115796,0.983108,0.668323,0.509963,0.0511528,0.528166,0.220655,0.466118,0.55251,0.660911,0.113489,0.758406,0.714771,0.551441,0.437179,0.374166,0.168399,0.317998,0.763684,0.724019,0.27915,0.756053,0.164755,0.782532,0.33801,0.283508,0.742121,0.688722,0.209932,0.802451,0.37146,0.3868,0.108638,0.403073,0.533817,0.488568,0.304087,0.584144,0.46079,0.895557,0.257175,0.655863,0.687452,0.395169,0.991373,0.842457,0.15376,0.424026,0.572218,0.314893,0.461552,0.0915636,0.983689,0.344853,0.208815,0.784071,0.722853,0.707847,0.904959,0.894661,0.0537394,0.964649,0.402291,0.743787,0.153351,0.974891,0.835537,0.0508044,0.177877,0.875778,0.884377,0.715674,0.130172,0.297693,0.81916,0.718432,0.631449,0.594323,0.541683,0.482823,0.322411,0.814853,0.0776768,0.540924,0.989242,|0.0154358,0.827432,0.775913,0.128901,0.011898,0.75393,0.728366,0.890264,0.656586,0.466061,0.616382,0.865897,0.364375,0.929624,0.362742,0.591262,0.906764,0.3886,0.534201,0.955199,0.547238,0.112061,0.807887,0.578268,0.914607,0.0142447,0.201109,0.270643,0.268022,0.961544,0.386621,0.58893,0.271353,0.654475,0.33808,0.924182,0.370138,0.567047,0.868745,0.386544,0.111899,0.0701153,0.588557,0.942079,0.0213927,0.491301,0.925786,0.147842,0.0972503,0.110221,0.114613,0.69573,0.999619,0.925035,0.175392,0.888522,0.176742,0.966993,0.245322,0.748101,0.291899,0.980386,0.392255,0.0320796,0.994341,0.699244,0.780051,0.0598845,0.896788,0.478072,0.243318,0.745631,0.909179,0.253365,0.256714,0.810832,0.0907681,0.531147,0.0663918,0.214875,0.171203,0.396913,0.770061,0.161997,0.971904,0.611309,0.678786,0.497709,0.678282,0.969888,0.286748,0.712363,0.409935,0.828236,0.76032,0.241882,0.982434,0.436473,0.949651,0.822608,0.224477,0.943483,0.125161,0.510618,0.994246,0.127779,0.560638,0.506045,0.412907,0.447404,0.159861,0.162504,0.788582,0.867065,0.382077,0.251128,0.0610029,0.26333,0.170239,0.25655,0.91094,0.765651,0.723653,0.951431,0.430257,0.192174,0.262771,0.364979,0.202784,0.181401,0.92426,0.384333,0.543778,0.580127,0.414671,0.390587,0.279422,0.941507,0.558738,0.511526,0.864333,0.0900943,0.382382,0.905924,0.573668,0.18321,0.329413,0.313549,0.868451,0.627908,0.392828,0.0820944,0.074289,0.932767,0.642951,0.146767,0.787155,0.884881,0.501895,0.102357,0.499118,0.433122,0.139043,0.78569,0.345658,0.636063,0.939553,0.451462,0.347537,0.743725,0.0765755,0.0921485,0.0351651,0.868904,0.15687,0.144918,0.632441,0.0475549,0.855871,0.506733,0.486657,0.770696,0.505487,0.897328,0.571467,0.882083,0.373731,0.573872,0.218973,0.057383,0.690274,0.549075,0.555645,0.351028,0.279112,0.435674,0.439772,0.205663,0.250998,0.670434,0.854424,0.0899716,0.985561,0.646884,0.556986,0.831954,0.00939876,0.683295,0.668067,0.37391,0.939681,0.438983,0.273232,0.351912,0.603729,0.976104,0.369857,0.0517966,0.283056,0.124582,0.939445,0.826367,0.639355,0.322844,0.378662,0.744913,0.43333,0.844241,0.855819,0.791486,0.486989,0.220349,0.448287,0.194178,0.579584,0.365236,0.314591,0.030846,0.0408089,0.163854,0.0479082,0.468221,0.924118,0.918608,0.210958,0.919104,0.182415,0.136114,0.888608,0.949357,0.30417,0.148956,0.836862,0.435219,0.901641,0.814902,0.531754,0.0881152,0.0466204,0.371084,0.208136,0.862753,0.461143,0.0957295,0.468123,0.699159,0.144955,0.910322,0.0262224,0.790034,0.356419,0.690211,0.438633,0.173821,0.63043,0.529231,0.482843,0.984309,0.138226,0.345521,0.023497,0.447878,0.167389,0.315165,0.274374,0.0980261,0.395562,0.947407,0.124281,0.163622,0.18035,0.174355,0.577326,0.0699477,0.811526,0.903825,0.618569,0.10177,0.0934876,0.6843,0.0814955,0.433962,0.971527,0.43914,0.763074,0.998925,0.725347,0.769499,0.676115,0.113446,0.921928,0.12191,0.993053,0.53219,0.445,0.228628,0.215541,0.0443325,0.0602449,0.208504,0.418097,0.942742,0.644122,0.142961,0.707474,0.184015,0.402054,0.2003,0.149679,0.0849633,0.221503,0.767195,0.331912,0.170601,0.66612,0.295401,0.70677,0.555695,0.8983,0.586875,0.480088,0.376884,0.442651,0.504241,0.203163,0.232418,0.908824,0.751284,0.967597,0.534079,0.0732012,0.0981222,0.698809,0.158355,0.76787,0.493824,0.766604,0.828505,0.443083,0.565398,0.0496776,0.845331,0.790638,0.0200092,0.161152,0.324069,0.857794,0.353499,0.117058,0.0687172,0.498338,0.941937,0.53888,0.895612,0.267226,0.4199,0.604863,0.092229,0.661106,0.989269,0.143412,0.173856,0.579491,0.637093,0.920029,0.945664,0.973409,0.864064,0.0813489,0.265368,0.221207,0.149448,0.417265,0.219341,0.535666,0.03942,0.838249,0.0776474,0.370077,0.00329727,0.804399,0.378131,0.956845,0.579664,0.669786,0.846187,0.823196,0.547739,0.311197,0.782089,0.953052,0.848687,0.342741,0.85395,0.311819,0.425289,0.0402638,0.730849,0.881116,0.657629,0.879139,0.720558,0.5556,0.456913,0.491727,0.33177,0.937185,0.555898,0.927072,0.0969411,0.0652291,0.141143,0.976704,0.225896,0.596271,0.135718,0.397359,0.36935,0.167211,0.784044,0.105772,0.451064,0.610597,0.744174,0.651963,0.794387,0.296483,0.529238,0.0363875,0.272447,0.0567576,0.0637456,0.557747,0.518453,0.554564,0.0280987,0.150509,0.719337,0.184056,0.0862871,0.626006,0.706499,0.137341,0.483172,0.541247,0.346334,0.823207,0.283848,0.563599,0.595591,0.280645,0.427123,0.0899029,0.193447,0.902121,0.741444,0.60052,0.932788,0.899688,0.235463,0.31335,0.343949,0.222544,0.644018,0.645495,0.621166,0.166003,0.213701,0.170535,0.872304,0.481164,0.708405,0.0539802,0.203586,0.284492,0.585411,0.559656,0.79209,0.460298,0.768062,0.483367,0.0901812,0.757306,0.592465,0.950507,0.794853,0.310186,0.594411,0.455285,0.769864,0.125465,0.922255,0.63826,0.429335,0.470952,0.0722758,0.853352,0.764048,0.823851,0.200408,0.337694,0.100482,0.890598,0.172712,0.198264,0.326273,0.548926,0.174581,0.35458,0.868126,0.523696,0.363115,0.52405,0.640108,0.645959,0.785698,0.598298,0.238208,0.697953,0.22194,0.119442,0.169672,0.0385991,0.717107,0.355256,0.912914,0.525084,0.0563442,0.615498,0.381527,0.58403,0.227122,0.31881,0.614572,0.654324,0.0733274,0.0255511,0.552848,0.407452,0.842733,0.706474,0.329705,0.878609,0.252903,0.210312,0.500911,0.875183,0.657194,0.963459,0.399147,0.154528,0.483193,0.435868,0.507854,0.250562,0.733714,0.685929,0.313991,0.867123,0.389257,0.234103,0.613227,0.0723596,0.0686283,0.529006,0.747458,0.932958,0.664132,0.332687,0.739419,0.526459,0.66929,0.413914,0.287044,0.0168327,0.993327,0.226657,0.415276,0.952961,0.365277,0.602479,0.625071,0.884496,0.953876,0.368319,0.288155,0.120346,0.248395,0.46797,0.302622,0.78898,0.552062,0.353005,0.291087,0.814676,0.439359,0.422532,0.987844,0.0405979,0.250745,0.378984,0.112777,0.527924,0.906474,0.794722,0.0116476,0.237339,0.740217,0.532471,0.016586,0.103909,0.827661,0.146434,0.896386,0.815486,0.561885,0.796459,0.889819,0.323356,0.984155,0.921051,0.955757,0.0249,0.121182,0.277127,0.0803427,0.565947,0.858023,0.18185,0.658058,0.161356,0.590861,0.813469,0.155832,0.751831,0.137529,0.336704,0.348544,0.179851,0.0186165,0.950293,0.867019,0.598727,0.222043,0.578048,0.138375,0.218206,0.23357,0.713785,0.568583,0.461652,0.664288,0.540905,0.667077,0.970426,0.0450473,0.535461,0.206393,0.398683,0.465383,0.794571,0.418861,0.196189,0.842774,0.609111,0.450035,0.823791,0.0172939,0.532708,0.533214,0.779898,0.479873,0.438302,0.217667,0.299451,0.777067,0.659285,0.572036,0.588698,0.662295,0.13446,0.589687,0.200123,0.167852,0.890268,0.0772378,0.517572,0.900573,0.64773,0.488534,0.138576,0.346528,0.548074,0.283796,0.292214,0.390287,0.319645,0.171066,0.179749,0.972257,0.86309,0.907522,0.238707,0.257809,0.699728,0.352882,0.42291,0.473421,0.675711,0.443925,0.649669,0.282741,0.238313,0.116324,0.632559,0.157442,0.183523,0.386692,0.997529,0.782059,0.476612,0.210599,0.232659,0.24335,0.510386,0.666782,0.695784,0.24368,0.759535,0.503599,0.447007,0.371348,0.423162,0.362952,0.488074,0.561251,0.593986,0.410905,0.745944,0.827783,0.160543,0.389898,0.243276,0.606015,0.984282,0.887595,0.848288,0.549139,0.362607,0.29915,0.0647799,0.296148,0.450175,0.831876,0.605686,0.128014,0.672439,0.450502,0.248135,0.54009,0.470689,0.259413,0.332239,0.460628,0.511883,0.914827,0.783048,0.350727,0.846647,0.082828,0.485143,0.997716,0.264978,0.65504,0.0572596,0.649075,0.736864,0.571075,0.246939,0.851452,0.484635,0.24427,0.868114,0.261234,0.845717,0.156975,0.970276,0.0796136,0.33852,0.956438,0.923108,0.524934,0.798658,0.253848,0.0521046,0.86723,0.416381,0.59466,0.84019,0.755919,0.621302,0.56009,0.612959,0.11386,0.502635,0.83002,0.675841,0.76441,0.0588135,0.148261,0.0361155,0.992561,0.77406,0.0984472,0.960933,0.649099,0.795483,0.000447631,0.813942,0.873819,0.64808,0.338898,0.792146,0.715172,0.0245119,0.539825,0.116243,0.718855,0.209774,0.582606,0.875023,0.177261,0.355927,0.114533,0.0849833,0.34772,0.0523442,0.187407,0.871431,0.489246,0.864819,0.776341,0.395592,0.849814,0.319415,0.702701,0.624232,0.671945,0.665066,0.590979,0.72761,0.918222,0.634903,0.569183,0.928006,0.462388,0.271565,0.261075,0.98609,0.694129,0.691643,0.639118,0.298451,0.924018,0.895329,0.366566,0.205282,0.31181,0.287386,0.913314,0.36655,0.217285,0.878102,0.742343,0.180019,0.568676,0.572506,0.443529,0.832845,0.736617,0.947641,0.915855,0.210067,0.437756,0.540025,0.809075,0.703793,0.110227,0.154459,0.326065,0.795519,0.695886,0.433491,0.286631,0.569911,0.0665084,0.181141,0.719991,0.533349,0.825359,0.509985,0.872468,0.481375,0.394532,0.0531461,0.428913,0.506506,0.0808156,0.503462,0.358377,0.429712,0.754056,0.354437,0.0857891,0.53639,0.009646,0.476908,0.0829579,0.741184,0.837482,0.321953,0.078316,0.648312,0.606476,0.990563,0.111738,0.846208,0.237618,0.170967,0.388683,0.843814,0.926014,0.0454318,0.0494223,0.569942,0.663555,0.97158,0.430467,0.035606,0.40892,0.475358,0.537189,0.589021,0.808189,0.664019,0.49313,0.077284,0.990639,0.804209,0.779452,0.719313,0.992612,0.0650403,0.826242,0.196987,0.590514,0.942284,0.285254,0.173044,0.845979,0.674821,0.370222,0.84144,0.607561,0.494985,0.923256,0.756893,0.496242,0.271368,0.965814,0.510484,0.160567,0.333274,0.586915,0.0385067,0.556572,0.974333,0.819472,0.77297,0.17289,|0.843043,0.804081,0.787544,0.529056,0.161164,0.0660012,0.45375,0.286808,0.924442,0.724474,0.18288,0.461736,0.964452,0.954123,0.493591,0.819383,0.749191,0.0481046,0.183921,0.651861,0.921214,0.45147,0.903648,0.450664,0.297785,0.610236,0.553526,0.575725,0.953756,0.642004,0.36402,0.851717,0.721325,0.247765,0.204632,0.69608,0.949012,0.541712,0.510016,0.0549637,0.313729,0.678423,0.744872,0.9057,0.391543,0.564826,0.383753,0.979154,0.709364,0.306602,0.903716,0.665362,0.817142,0.488329,0.718366,0.651516,0.228481,0.659437,0.310144,0.840201,0.215519,0.070562,0.743808,0.607925,0.649878,0.189613,0.146017,0.120087,0.181476,0.197938,0.317012,0.107909,0.815308,0.295281,0.451872,0.744036,0.329014,0.893554,0.160363,0.891926,0.152523,0.291803,0.83454,0.720921,0.00314623,0.294415,0.605763,0.539034,0.64382,0.609195,0.98517,0.763944,0.561083,0.272038,0.714,0.308834,0.192386,0.204429,0.351553,0.894551,0.881999,0.453292,0.353707,0.573216,0.443098,0.19645,0.767826,0.281757,0.798377,0.585182,0.794856,0.976139,0.570108,0.651414,0.881434,0.549121,0.12438,0.0753244,0.984749,0.557461,0.398857,0.662611,0.741001,0.284727,0.895817,0.721503,0.478988,0.928763,0.750533,0.0501494,0.159883,0.172878,0.000557125,0.865405,0.378881,0.907416,0.0765487,0.316287,0.712389,0.74675,0.797617,0.225364,0.646469,0.151391,0.886861,0.245362,0.370052,0.60449,0.500231,0.291004,0.00018996,0.273521,0.082926,0.763381,0.220069,0.196373,0.995108,0.13208,0.606135,0.813926,0.873269,0.384573,0.717292,0.505835,0.870791,0.559224,0.212945,0.726634,0.644427,0.0938532,0.412826,0.803062,0.163872,0.699754,0.315522,0.505294,0.354174,0.483489,0.735003,0.787002,0.525122,0.701685,0.508051,0.111448,0.0448276,0.95076,0.173606,0.422942,0.543575,0.667017,0.251378,0.770128,0.0990299,0.469276,0.304294,0.962835,0.96389,0.475099,0.176484,0.904293,0.335259,0.796104,0.600892,0.536063,0.71073,0.134157,0.0357304,0.451178,0.0769449,0.322566,0.56856,0.847175,0.585982,0.689699,0.728622,0.855815,0.84727,0.204763,0.0633501,0.502778,0.17849,0.636737,0.0248153,0.0570736,0.577092,0.0719759,0.818314,0.880825,0.546726,0.16139,0.376466,0.059234,0.442595,0.632007,0.632013,0.645078,0.0871929,0.905989,0.745149,0.621442,0.0606025,0.771293,0.664701,0.409414,0.788954,0.13621,0.586754,0.765647,0.7633,0.666668,0.85915,0.824612,0.590841,0.799038,0.319557,0.0618248,0.34744,0.755883,0.228794,0.131667,0.287225,0.935166,0.292913,0.204575,0.642978,0.867092,0.774606,0.680944,0.746505,0.988152,0.738441,0.613017,0.626225,0.892692,0.0137604,0.264449,0.964621,0.15513,0.162437,0.405444,0.0617804,0.57312,0.449681,0.97764,0.681827,0.281607,0.176051,0.0412246,0.357728,0.173802,0.117672,0.919193,0.188527,0.136333,0.806274,0.00629336,0.95858,0.854904,0.332526,0.275152,0.421126,0.185709,0.68073,0.85442,0.290692,0.937491,0.601976,0.221759,0.76503,0.317255,0.737138,0.29983,0.939539,0.115164,0.927051,0.0892746,0.125798,0.44119,0.324795,0.820699,0.319609,0.933988,0.189111,0.165652,0.113113,0.0489352,0.0695677,0.912896,0.115714,0.124242,0.967907,0.072835,0.149931,0.465081,0.814611,0.302098,0.91839,0.858057,0.725379,0.88827,0.634019,0.917021,0.619554,0.823064,0.767654,0.302368,0.768288,0.245255,0.139583,0.221978,0.791475,0.527784,0.429804,0.680208,0.993115,0.848126,0.510665,0.30675,0.369018,0.78857,0.522369,0.95162,0.487964,0.0582668,0.378413,0.710938,0.568324,0.447775,0.461231,0.408721,0.172472,0.564392,0.614335,0.705807,0.945283,0.651633,0.137186,0.165058,0.965429,0.173632,0.194803,0.835163,0.0498115,0.682714,0.158614,0.194649,0.492678,0.418322,0.0384377,0.595504,0.109599,0.00383538,0.920572,0.486924,0.734783,0.880181,0.43843,0.190383,0.0533165,0.967302,0.950793,0.275207,0.435627,0.0186489,0.0985678,0.588832,0.333742,0.654861,0.380988,0.510074,0.860926,0.060223,0.144185,0.985617,0.0724422,0.740355,0.953009,0.187802,0.986257,0.784782,0.477591,0.754557,0.400678,0.876854,0.467556,0.894482,0.634618,0.137508,0.592711,0.0974082,0.564646,0.675736,0.566373,0.697672,0.107614,0.708356,0.925675,0.0726927,0.739541,0.851062,0.744163,0.653884,0.162935,0.883654,0.567255,0.974755,0.218171,0.975923,0.645424,0.78071,0.192194,0.947106,0.787267,0.695284,0.568394,0.966874,0.678682,0.298845,0.613236,0.103806,0.785524,0.727507,0.610077,0.00425333,0.744025,0.0481407,0.910075,0.149761,0.851761,0.0599518,0.418948,0.0380363,0.18131,0.296376,0.29819,0.344581,0.908651,0.964757,0.163547,0.0806224,0.64834,0.743403,0.096214,0.41924,0.13574,0.860387,0.770367,0.307976,0.87518,0.0790845,0.847459,0.497022,0.340929,0.221086,0.368296,0.524446,0.531924,0.287944,0.826142,0.349198,0.486894,0.637003,0.246441,0.511715,0.78003,0.0971729,0.832946,0.2974,0.886599,0.844913,0.893554,0.0785565,0.158419,0.0499087,0.439989,0.806909,0.203152,0.332614,0.494178,0.322538,0.397135,0.440885,0.617227,0.30127,0.317286,0.355726,0.0928664,0.145102,0.352833,0.708832,0.00574285,0.788094,0.605352,0.595437,0.279773,0.245457,0.433623,0.0931013,0.906815,0.722416,0.219222,0.559183,0.99592,0.991699,0.426492,0.0465071,0.824079,0.399054,0.225368,0.473947,0.725617,0.194078,0.691779,0.828347,0.416123,0.0188102,0.701118,0.681679,0.811708,0.944332,0.982519,0.486812,0.220441,0.721098,0.167821,0.00821739,0.989895,0.1783,0.211706,0.901941,0.849044,0.831084,0.393249,0.81483,0.0301462,0.194145,0.734025,0.941366,0.303703,0.0855844,0.55238,0.178256,0.96499,0.576972,0.936731,0.218939,0.859613,0.520986,0.644313,0.459323,0.96853,0.511471,0.0447223,0.590823,0.235121,0.0969898,0.587469,0.361285,0.970692,0.191997,0.565436,0.592585,0.215336,0.158459,0.417601,0.134992,0.919443,0.515234,0.468867,0.516299,0.275518,0.840083,0.783447,0.981095,0.489043,0.101018,0.674037,0.403424,0.776996,0.436121,0.00185466,0.661127,0.850039,0.378116,0.541914,0.96932,0.998904,0.629138,0.146617,0.766823,0.150771,0.102146,0.976147,0.132392,0.737665,0.576894,0.00574672,0.734161,0.0586221,0.0496379,0.389463,0.205897,0.105212,0.55883,0.0786598,0.622125,0.582255,0.248724,0.0868343,0.64217,0.248162,0.553031,0.477784,0.507793,0.430371,0.965214,0.765444,0.756391,0.120834,0.807771,0.376009,0.0974741,0.409545,0.364068,0.936597,0.0561202,0.767398,0.518651,0.580941,0.144655,0.260649,0.398405,0.243437,0.18874,0.578548,0.824818,0.966852,0.209185,0.707938,0.644091,0.186552,0.823954,0.0311446,0.456144,0.615856,0.475016,0.0259045,0.0838221,0.968879,0.926976,0.367783,0.158627,0.147744,0.805932,0.204661,0.947497,0.379053,0.0796884,0.712427,0.295996,0.506792,0.77781,0.743405,0.280319,0.92141,0.206957,0.601251,0.933394,0.0790296,0.30167,0.813365,0.0902181,0.676035,0.872764,0.701717,0.580032,0.719646,0.657124,0.919692,0.36542,0.446373,0.643317,0.169824,0.203656,0.284245,0.143854,0.0043093,0.32848,0.141125,0.667593,0.493917,0.00182527,0.305476,0.312793,0.685161,0.34941,0.891692,0.156057,0.224949,0.662435,0.0471662,0.895199,0.740583,0.917996,0.890838,0.0404313,0.775491,0.550629,0.567325,0.216296,0.354006,0.643081,0.553041,0.583218,0.382782,0.428242,0.464099,0.38956,0.1612,0.322341,0.00439501,0.238309,0.255704,0.0997313,0.165669,0.0776384,0.565421,0.90231,0.117752,0.860714,0.755519,0.842661,0.58305,0.627833,0.250893,0.680574,0.942843,0.277954,0.0284933,0.716643,0.534638,0.500671,0.476685,0.226588,0.310786,0.623361,0.867927,0.222652,0.0296216,0.0973312,0.124228,0.549722,0.0244961,0.618699,0.0315707,0.0751653,0.0341479,0.100569,0.975278,0.464116,0.450383,0.0425257,0.255499,0.827796,0.0739192,0.519988,0.30934,0.0273565,0.367885,0.991188,0.223903,0.309848,0.479318,0.116809,0.0297279,0.0609986,0.397926,0.445442,0.742847,0.571591,0.327351,0.294079,0.367561,0.72525,0.55155,0.822447,0.643897,0.0842169,0.91171,0.393898,0.787762,0.112948,0.347098,0.839979,0.806149,0.267164,0.66059,0.0611999,0.576973,0.430525,0.928702,0.628698,0.977,0.755017,0.310268,0.587814,0.939681,0.679357,0.153054,0.113106,0.466863,0.298524,0.385505,0.882791,0.40371,0.153885,0.463931,0.466011,0.872817,0.423668,0.69036,0.267052,0.630752,0.926758,0.305557,0.42632,0.852711,0.425965,0.817829,0.531027,0.865413,0.793707,0.671728,0.635447,0.306772,0.00444341,0.369489,0.764081,0.902401,0.162991,0.822286,0.240175,0.907807,0.665999,0.410118,0.4744,0.154331,0.477775,0.303173,0.0293582,0.698949,0.483548,0.961842,0.161558,0.708172,0.0114254,0.0946631,0.438474,0.435426,0.591527,0.0867658,0.0839925,0.615253,0.440598,0.258884,0.466742,0.594112,0.0193971,0.445235,0.874832,0.934181,0.14221,0.385448,0.871546,0.274637,0.0466688,0.971891,0.182378,0.703784,0.334974,0.178423,0.674082,0.423433,0.916197,0.416879,0.531942,0.44966,0.748374,0.782878,0.661665,0.406111,0.776663,0.292371,0.353717,0.432725,0.131638,0.737618,0.735425,0.582679,0.969198,0.12958,0.0416462,0.98936,0.128163,0.400642,0.283732,0.261236,0.462685,0.184785,0.136102,0.0144344,0.436377,0.907348,0.422926,0.613206,0.924348,0.537668,0.868648,0.269994,0.151215,0.0164246,0.595996,0.322537,0.366542,0.863223,0.823426,0.874237,0.725001,0.944801,0.606842,0.478259,0.501668,0.873507,0.638139,0.40825,0.897385,0.111216,0.265934,0.877522,0.947459,0.449146,0.155727,0.459517,0.109956,0.587427,0.714175,0.969868,0.247245,0.806918,0.407033,0.316417,0.147297,0.294129,0.359755,0.411665,0.594214,0.294364,0.0620011,0.179468,0.930055,|0.00306761,0.807943,0.648697,0.97369,0.667165,0.745487,0.0554634,0.799927,0.447552,0.0510134,0.534591,0.984459,0.672953,0.374662,0.715698,0.224561,0.330588,0.800127,0.106648,0.230105,0.125673,0.0053488,0.193803,0.356003,0.678145,0.200357,0.491082,0.641745,0.725432,0.326205,0.551816,0.443263,0.318648,0.621211,0.496606,0.220279,0.479759,0.503262,0.373402,0.484565,0.31017,0.977376,0.359014,0.689207,0.691913,0.829805,0.958295,0.156825,0.941043,0.907489,0.866798,0.599187,0.864259,0.288393,0.315258,0.896637,0.843505,0.346154,0.185591,0.313757,0.103731,0.953486,0.196968,0.868454,0.532573,0.598523,0.354805,0.830221,0.113036,0.117739,0.270599,0.66478,0.230124,0.630306,0.481071,0.19305,0.813617,0.912896,0.547889,0.410089,0.06151,0.810254,0.954035,0.566875,0.159987,0.842176,0.306133,0.527183,0.569673,0.200337,0.684104,0.121126,0.888015,0.500009,0.965586,0.924093,0.61677,0.809974,0.375266,0.858542,0.211555,0.811923,0.456171,0.208318,0.882461,0.748834,0.255271,0.584775,0.440186,0.779458,0.900692,0.690823,0.873927,0.941062,0.151593,0.721067,0.491233,0.731266,0.0904332,0.0361329,0.211676,0.28326,0.792157,0.716911,0.753131,0.540236,0.159572,0.63588,0.648344,0.6707,0.705708,0.488689,0.507827,0.983502,0.77249,0.14664,0.0564672,0.629865,0.7386,0.498029,0.7091,0.452898,0.0255585,0.264347,0.217294,0.898481,0.759266,0.617772,0.293815,0.317039,0.0553745,0.623537,0.0649903,0.23085,0.142597,0.749637,0.659214,0.871222,0.268012,0.0744511,0.424975,0.387192,0.86285,0.934953,0.108877,0.16637,0.224849,0.522553,0.689824,0.45745,0.980729,0.163383,0.208755,0.753096,0.0254646,0.478411,0.716554,0.351319,0.596436,0.321945,0.127137,0.286077,0.830449,0.644855,0.0329626,0.969932,0.213158,0.207022,0.897687,0.951631,0.710688,0.939111,0.189169,0.223464,0.0995597,0.563525,0.137831,0.529649,0.421382,0.366309,0.0540263,0.778013,0.598256,0.322443,0.674785,0.131752,0.706454,0.807392,0.458447,0.81567,0.480313,0.160571,0.788763,0.555139,0.0813259,0.800302,0.748571,0.0588405,0.677477,0.796524,0.102072,0.906307,0.584237,0.97067,0.895033,0.448921,0.105384,0.914075,0.0198212,0.946327,0.422814,0.464654,0.0523483,0.753081,0.459395,0.273437,0.407422,0.83097,0.294275,0.938027,0.273533,0.919362,0.611494,0.695222,0.512082,0.268885,0.79245,0.515708,0.0251579,0.837853,0.531149,0.207926,0.507903,0.602588,0.231692,0.613403,0.301422,0.470733,0.550441,0.286717,0.746346,0.664461,0.442076,0.872198,0.192944,0.523738,0.601555,0.750369,0.567378,0.240733,0.53972,0.186694,0.487291,0.670763,0.461429,0.567377,0.660652,0.618172,0.0372944,0.307683,0.0121416,0.0166825,0.279523,0.168887,0.0243279,0.130522,0.65576,0.473461,0.578874,0.749874,0.285634,0.158571,0.328306,0.351596,0.56528,0.265262,0.169393,0.937925,0.149364,0.209754,0.758182,0.222066,0.90072,0.231625,0.770305,0.539012,0.268181,0.080191,0.260558,0.105034,0.143417,0.146907,0.746626,0.134788,0.884136,0.708114,0.60726,0.714462,0.706939,0.781245,0.796142,0.404254,0.3587,0.279075,0.708683,0.740687,0.524904,0.33389,0.192702,0.900256,0.551964,0.258452,0.427424,0.921636,0.118679,0.927076,0.393527,0.317845,0.000655711,0.425602,0.669831,0.361953,0.965031,0.743958,0.93921,0.340186,0.680039,0.456093,0.135401,0.647535,0.330987,0.429824,0.594346,0.185591,0.530016,0.21001,0.716218,0.420559,0.320349,0.200092,0.587578,0.983949,0.232567,0.546134,0.884521,0.468498,0.838805,0.957413,0.403036,0.000900149,0.471111,0.647929,0.65729,0.281801,0.129677,0.278862,0.452709,0.110504,0.297355,0.932541,0.984731,0.224987,0.922701,0.942818,0.269937,0.0790857,0.11944,0.539545,0.274055,0.567453,0.66968,0.951071,0.11553,0.838803,0.402591,0.808591,0.283205,0.417696,0.844448,0.512869,0.53533,0.458661,0.269027,0.750665,0.564183,0.735359,0.700966,0.485691,0.456765,0.418039,0.701358,0.86258,0.743233,0.891244,0.667387,0.21006,0.201664,0.148356,0.618703,0.26764,0.727326,0.338304,0.193504,0.412592,0.995311,0.852919,0.246,0.398489,0.560803,0.756957,0.600607,0.075491,0.578605,0.8749,0.306974,0.0917641,0.245055,0.772956,0.260395,0.154321,0.5027,0.332131,0.820637,0.445232,0.920902,0.640129,0.64805,0.955054,0.375722,0.435676,0.27635,0.610646,0.165146,0.260715,0.744352,0.270849,0.0232402,0.0765026,0.119913,0.382455,0.956379,0.377488,0.922816,0.408177,0.729563,0.132517,0.912769,0.79373,0.13296,0.745567,0.223966,0.53138,0.808553,0.06954,0.594396,0.626432,0.926522,0.26741,0.459398,0.373696,0.66015,0.494252,0.441843,0.139902,0.203467,0.0486298,0.905917,0.433981,0.0217531,0.687375,0.772149,0.503963,0.0316877,0.998149,0.2107,0.737921,0.678145,0.738762,0.661063,0.45002,0.532089,0.347447,0.0133829,0.151651,0.19437,0.707166,0.0613465,0.94821,0.33831,0.306841,0.869595,0.905027,0.997488,0.529408,0.760485,0.173615,0.59917,0.264206,0.076998,0.801964,0.275959,0.891434,0.104462,0.348706,0.615674,0.432372,0.851156,0.0653355,0.878746,0.555833,0.461586,0.955183,0.791602,0.906657,0.0871775,0.036391,0.124638,0.37936,0.86451,0.231356,0.804946,0.668274,0.751904,0.41418,0.363551,0.804066,0.974689,0.0336896,0.242109,0.978965,0.263134,0.646011,0.450888,0.973306,0.617417,0.0936122,0.201578,0.111476,0.464402,0.69216,0.424324,0.293956,0.796193,0.330682,0.896085,0.412525,0.123122,0.741063,0.54819,0.74385,0.246024,0.249979,0.318036,0.44055,0.173359,0.0309355,0.482824,0.134629,0.265557,0.279171,0.998953,0.184434,0.591538,0.20467,0.811749,0.241627,0.501224,0.837779,0.338102,0.946528,0.0619292,0.898331,0.0058046,0.97422,0.757988,0.19204,0.973164,0.837288,0.820747,0.393215,0.567425,0.400096,0.82529,0.120323,0.426362,0.123572,0.896331,0.137426,0.0297447,0.18111,0.976833,0.644681,0.4717,0.269746,0.112178,0.165136,0.428293,0.647692,0.42403,0.337229,0.124249,0.141871,0.671678,0.143713,0.828302,0.993848,0.87576,0.601121,0.408737,0.59671,0.0323166,0.917566,0.0359044,0.176921,0.667997,0.193835,0.509255,0.0514101,0.201755,0.70063,0.117659,0.837648,0.3734,0.366354,0.903057,0.80084,0.658531,0.252925,0.99961,0.952963,0.772256,0.155003,0.185866,0.223259,0.486305,0.452474,0.326827,0.0269768,0.0861583,0.389412,0.338352,0.913932,0.277128,0.394096,0.441671,0.710458,0.785499,0.529423,0.77403,0.489572,0.296299,0.972145,0.774699,0.968478,0.618247,0.452762,0.704194,0.659339,0.0967194,0.829078,0.647203,0.196851,0.931239,0.256406,0.559571,0.357644,0.292083,0.791776,0.109279,0.787759,0.0304575,0.84618,0.068608,0.463129,0.133143,0.0207427,0.671706,0.432607,0.609538,0.374071,0.589105,0.540282,0.961715,0.092443,0.667131,0.231502,0.709216,0.392291,0.7968,0.792849,0.0395356,0.783157,0.885494,0.695234,0.491836,0.0980218,0.204421,0.692212,0.372873,0.411623,0.985617,0.792009,0.107588,0.396712,0.247083,0.23702,0.58899,0.153335,0.835266,0.305006,0.309328,0.572328,0.702752,0.0463971,0.149552,0.170941,0.478916,0.359825,0.830324,0.477661,0.285269,0.870461,0.0365301,0.237203,0.51629,0.998334,0.606258,0.838839,0.812767,0.836355,0.793494,0.995911,0.404552,0.411669,0.719461,0.330989,0.847599,0.577474,0.777831,0.83462,0.433963,0.946568,0.322997,0.939546,0.813528,0.713839,0.182416,0.238317,0.987831,0.800541,0.158242,0.740298,0.497003,0.732986,0.247162,0.354685,0.546793,0.779914,0.443072,0.931236,0.900257,0.235525,0.396143,0.209537,0.308337,0.373121,0.716587,0.0299829,0.28832,0.445886,0.444526,0.527843,0.0846295,0.486872,0.548267,0.639426,0.374905,0.556101,0.0395451,0.836953,0.160737,0.169219,0.108144,0.404378,0.815117,0.963577,0.068268,0.682399,0.211314,0.199625,0.716244,0.269261,0.558763,0.745279,0.0579641,0.477882,0.124067,0.600663,0.231948,0.227018,0.29888,0.19565,0.463141,0.518655,0.993234,0.225565,0.887049,0.677437,0.948944,0.803771,0.0522768,0.602929,0.807047,0.291323,0.249332,0.766311,0.806352,0.74105,0.906416,0.569602,0.0207493,0.488961,0.224623,0.861529,0.253438,0.022687,0.960221,0.673791,0.809702,0.265778,0.615294,0.72358,0.183931,0.44527,0.642648,0.539879,0.360041,0.527674,0.375232,0.0933778,0.799176,0.859054,0.60304,0.973617,0.421788,0.402756,0.10354,0.796735,0.255727,0.897195,0.0210195,0.143285,0.795289,0.47186,0.931776,0.00967431,0.874208,0.147834,0.755631,0.413975,0.0422143,0.130825,0.00896829,0.581145,0.946252,0.706314,0.721864,0.624563,0.241546,0.121837,0.919091,0.735484,0.2115,0.776871,0.489187,0.580895,0.68236,0.505057,0.239609,0.87993,0.861268,0.153762,0.579175,0.241074,0.0836663,0.956783,0.129944,0.485548,0.908313,0.683447,0.184079,0.610429,0.0499326,0.916371,0.143334,0.128882,0.536554,0.0120854,0.92068,0.169146,0.94483,0.262062,0.350859,0.364025,0.34423,0.529968,0.675263,0.82509,0.93126,0.0901053,0.667969,0.199558,0.715926,0.117174,0.136908,0.413945,0.22296,0.0890579,0.463515,0.644519,0.345074,0.855593,0.644828,0.596136,0.663824,0.769526,0.203518,0.15461,0.226364,0.798392,0.138029,0.51126,0.329515,0.812294,0.220228,0.43925,0.579248,0.390507,0.0268195,0.767955,0.602649,0.0953807,0.818234,0.128699,0.788399,0.39978,0.265185,0.503258,0.718965,0.0614465,0.975673,0.0813733,0.560969,0.367832,0.021348,0.709949,0.548623,0.213103,0.619618,0.14026,0.502446,0.148579,0.488974,0.642592,0.076627,0.844373,0.825533,0.825097,0.375596,0.208713,0.72384,0.415147,0.317928,0.105839,0.425774,0.645443,0.883082,0.419473,0.880275,0.649212,|0.793617,0.319532,0.204418,0.957578,0.8944,0.483544,0.892668,0.722243,0.143849,0.383439,0.258509,0.8505,0.752446,0.154381,0.164826,0.591299,0.458689,0.170265,0.700268,0.410186,0.733007,0.268017,0.859176,0.0653963,0.489136,0.316918,0.757419,0.164961,0.373877,0.874627,0.00267172,0.00810534,0.689489,0.728781,0.386361,0.558114,0.441827,0.648238,0.250528,0.0233855,0.321278,0.317484,0.962728,0.221919,0.864333,0.750784,0.0704678,0.265236,0.206696,0.809042,0.725682,0.516283,0.261562,0.91961,0.0789643,0.305279,0.860998,0.896106,0.56246,0.592368,0.40444,0.419887,0.855198,0.298307,0.976419,0.28678,0.575004,0.370364,0.737419,0.462543,0.0951251,0.987361,0.341681,0.528779,0.419762,0.13405,0.0343004,0.348166,0.476886,0.857936,0.523127,0.545457,0.217864,0.0049867,0.639061,0.481853,0.672454,0.76109,0.609772,0.981954,0.0908877,0.0574221,0.571115,0.171922,0.763607,0.157767,0.244276,0.730724,0.298867,0.00349545,0.728398,0.312295,0.052574,0.170291,0.879541,0.297156,0.139526,0.303054,0.587971,0.808425,0.151444,0.301288,0.711033,0.925936,0.553182,0.483873,0.0756841,0.131606,0.584898,0.935332,0.974541,0.827185,0.229207,0.831178,0.44057,0.896213,0.192391,0.875317,0.52194,0.121241,0.912018,0.0855413,0.968763,0.343666,0.974354,0.778387,0.138781,0.735173,0.666464,0.328679,0.594642,0.404364,0.139551,0.60445,0.702065,0.168476,0.662137,0.0915603,0.659373,0.264716,0.96321,0.0768818,0.0822031,0.764669,0.743956,0.0947925,0.835317,0.572739,0.416161,0.639531,0.354102,0.68274,0.0736009,0.311418,0.475334,0.407053,0.753536,0.765132,0.0245106,0.97147,0.297812,0.547054,0.828011,0.038986,0.0527403,0.292432,0.707917,0.123054,0.994709,0.237627,0.0677599,0.688682,0.869058,0.786787,0.645715,0.180423,0.343569,0.324847,0.583308,0.169803,0.213268,0.658672,0.582077,0.259041,0.540804,0.635383,0.778167,0.536977,0.262794,0.438599,0.793131,0.084798,0.464424,0.782185,0.929148,0.966935,0.221109,0.260545,0.489966,0.778237,0.900571,0.742745,0.214757,0.87797,0.680859,0.859927,0.689751,0.584661,0.434216,0.876722,0.11234,0.712177,0.290434,0.681003,0.155021,0.691439,0.236876,0.148048,0.352762,0.0930256,0.103663,0.579499,0.21907,0.858969,0.660687,0.40268,0.58765,0.158335,0.166025,0.13989,0.650915,0.728599,0.456865,0.855633,0.10822,0.199173,0.729344,0.152248,0.887265,0.360269,0.803508,0.992049,0.767254,0.721721,0.165416,0.144728,0.255306,0.590147,0.251444,0.847931,0.254618,0.0439085,0.687983,0.349811,0.56865,0.399703,0.33502,0.613466,0.262359,0.370732,0.413939,0.202031,0.930038,0.877515,0.291398,0.262103,0.990203,0.808041,0.244023,0.658716,0.198802,0.707209,0.394672,0.109889,0.626812,0.980585,0.530039,0.00220072,0.348907,0.530943,0.108717,0.131217,0.579831,0.654551,0.564453,0.488556,0.532119,0.0942464,0.989125,0.48115,0.680862,0.66236,0.887097,0.881733,0.388757,0.401602,0.77963,0.119103,0.0366963,0.604504,0.904022,0.454658,0.576963,0.564032,0.688745,0.167192,0.466592,0.579723,0.869115,0.304357,0.113298,0.292572,0.309357,0.566443,0.856678,0.619652,0.358792,0.690951,0.181153,0.0467929,0.0861954,0.910081,0.104938,0.0859921,0.0613438,0.753654,0.296765,0.917356,0.908659,0.639839,0.673064,0.767459,0.986261,0.311508,0.919565,0.0753911,0.342307,0.523134,0.782149,0.697514,0.709297,0.466126,0.811689,0.652773,0.642856,0.823005,0.799048,0.301778,0.786658,0.0630124,0.850719,0.114302,0.412015,0.686961,0.242813,0.278296,0.390818,0.354903,0.600655,0.274162,0.803532,0.882726,0.697128,0.547675,0.293305,0.583454,0.398072,0.609201,0.881518,0.209371,0.748856,0.208978,0.229671,0.154603,0.609265,0.261437,0.802075,0.570492,0.379631,0.519259,0.112848,0.989223,0.340527,0.593719,0.301969,0.694507,0.5157,0.0663063,0.861737,0.919818,0.128137,0.404992,0.0195476,0.815331,0.155461,0.154144,0.714871,0.529738,0.621195,0.733942,0.435534,0.0904752,0.631208,0.940783,0.024389,0.547792,0.892053,0.639726,0.944178,0.739004,0.597012,0.861821,0.564119,0.241479,0.474981,0.996457,0.117569,0.415062,0.781945,0.074213,0.633712,0.412104,0.421319,0.0834713,0.329374,0.0440509,0.765804,0.218267,0.39736,0.684957,0.315485,0.360361,0.772308,0.556274,0.68525,0.277654,0.0280501,0.486907,0.310793,0.811903,0.0464954,0.558108,0.887317,0.99667,0.292655,0.460945,0.116976,0.840494,0.843767,0.351566,0.91039,0.175033,0.378755,0.57859,0.569707,0.489551,0.170381,0.989556,0.321361,0.284186,0.282156,0.355409,0.0995677,0.0911267,0.524392,0.659166,0.454841,0.118873,0.455519,0.307796,0.851128,0.189655,0.827101,0.562884,0.2241,0.895875,0.0867015,0.22952,0.497096,0.475095,0.969014,0.078099,0.373871,0.110556,0.373444,0.733485,0.477471,0.540821,0.869413,0.192779,0.164423,0.90554,0.0972183,0.767895,0.477456,0.849981,0.635889,0.206456,0.956562,0.668833,0.605144,0.534055,0.060345,0.306121,0.276067,0.402862,0.0692593,0.615733,0.264336,0.0944827,0.139552,0.108088,0.893759,0.634465,0.941994,0.473638,0.536393,0.973824,0.957574,0.700993,0.70421,0.35609,0.734093,0.600966,0.512184,0.101033,0.0415708,0.540017,0.641375,0.97678,0.721738,0.612967,0.811971,0.302216,0.906152,0.720977,0.328311,0.414232,0.880327,0.516728,0.0567418,0.490277,0.0572404,0.650497,0.195885,0.691785,0.744318,0.704907,0.564018,0.844151,0.755885,0.527015,0.900543,0.529181,0.374297,0.874479,0.388555,0.658987,0.503099,0.791534,0.849179,0.128874,0.348053,0.627983,0.93905,0.513172,0.691412,0.0783288,0.874739,0.303466,0.0272448,0.921192,0.21052,0.350053,0.271136,0.797502,0.647229,0.854106,0.865722,0.531028,0.00224787,0.00676745,0.715449,0.926741,0.144531,0.291957,0.863976,0.0819293,0.620938,0.365449,0.65488,0.474423,0.281218,0.859769,0.960111,0.113524,0.215454,0.963343,0.697154,0.753456,0.106966,0.411738,0.82104,0.17373,0.999417,0.989497,0.43033,0.845963,0.591269,0.0845132,0.153256,0.312537,0.342074,0.806423,0.942828,0.39884,0.340238,0.413671,0.389515,0.445999,0.477076,0.895,0.374789,0.0449978,0.875153,0.373966,0.192452,0.928349,0.895571,0.160714,0.849421,0.659783,0.364149,0.372131,0.255152,0.498256,0.132048,0.986579,0.00923985,0.598448,0.00349635,0.61587,0.937858,0.542737,0.102553,0.15213,0.205828,0.481012,0.0784734,0.420714,0.854362,0.724782,0.849524,0.720918,0.652989,0.404365,0.600896,0.919275,0.716076,0.0553941,0.187333,0.4192,0.551812,0.665618,0.889647,0.468232,0.940203,0.75645,0.34373,0.489628,0.627539,0.574649,0.44276,0.118551,0.434371,0.290913,0.311999,0.976249,0.705445,0.854745,0.326985,0.101309,0.518312,0.320594,0.934155,0.505188,0.255247,0.639452,0.0216908,0.164827,0.478073,0.559588,0.209203,0.416232,0.382782,0.186485,0.324979,0.556667,0.495751,0.354225,0.122271,0.751244,0.183756,0.136697,0.995171,0.618899,0.831397,0.477211,0.377207,0.29083,0.673591,0.689096,0.0802369,0.027804,0.616567,0.619662,0.177989,0.95229,0.98223,0.529649,0.0111701,0.335566,0.674859,0.560371,0.128491,0.546852,0.158846,0.382748,0.724543,0.235101,0.90758,0.981896,0.68961,0.369849,0.717128,0.47935,0.921258,0.41678,0.364315,0.0755975,0.839031,0.138367,0.995343,0.255298,0.511106,0.727444,0.25099,0.235996,0.300818,0.693807,0.875334,0.238224,0.230938,0.7439,0.652487,0.865617,0.823507,0.583309,0.657751,0.940788,0.865958,0.435526,0.963164,0.926919,0.203843,0.833748,0.563967,0.0630429,0.172759,0.534728,0.407145,0.291469,0.99215,0.986528,0.113433,0.288002,0.431849,0.349464,0.352673,0.930149,0.703089,0.46943,0.735606,0.227025,0.996434,0.472701,0.21619,0.394313,0.963014,0.51024,0.0276798,0.572284,0.215099,0.494005,0.504069,0.906287,0.78905,0.387062,0.279907,0.147756,0.213753,0.407836,0.937746,0.0823296,0.0733323,0.640737,0.910891,0.117444,0.326907,0.486643,0.700278,0.608954,0.303938,0.931351,0.590617,0.69544,0.175208,0.288061,0.380919,0.868393,0.199296,0.927631,0.385736,0.587999,0.493717,0.123367,0.89618,0.808235,0.765237,0.263837,0.193318,0.195585,0.885222,0.49401,0.896299,0.317163,0.394488,0.609663,0.668064,0.742305,0.197057,0.215934,0.113294,0.335112,0.291487,0.979104,0.704069,0.703531,0.533022,0.32509,0.224944,0.661371,0.0306614,0.54985,0.301567,0.494868,0.00135756,0.060603,0.371421,0.664282,0.91144,0.897162,0.0837494,0.8214,0.650056,0.30011,0.522735,0.45664,0.728748,0.0288917,0.876498,0.765367,0.442337,0.929142,0.772018,0.471452,0.542809,0.551026,0.720652,0.421286,0.149023,0.929022,0.113729,0.466674,0.436216,0.305932,0.171595,0.624923,0.249082,0.168173,0.138293,0.70457,0.972689,0.544292,0.0506359,0.244534,0.356646,0.414995,0.637366,0.273156,0.277189,0.0566666,0.985688,0.822241,0.0142493,0.698209,0.346292,0.908623,0.436718,0.998228,0.0526714,0.690159,0.938502,0.307066,0.855789,0.512555,0.233095,0.534222,0.31657,0.901692,0.470774,0.187133,0.0890006,0.881421,0.112297,0.221413,0.9893,0.208485,0.275104,0.180811,0.793303,0.744416,0.198372,0.157609,0.304884,0.333791,0.734883,0.0956956,0.828704,0.409029,0.110857,0.292171,0.419008,0.0864717,0.17482,0.729214,0.722353,0.282369,0.184517,0.652069,0.951317,0.0886719,0.436801,0.0757164,0.936644,0.530086,0.452584,0.932631,0.441607,0.712485,0.600396,0.780893,0.441456,0.986445,0.341933,0.229339,0.496027,0.581894,0.294148,0.342695,0.302605,0.189822,0.46386,0.571441,0.0971424,0.910035,0.373772,0.140921,0.288551,0.54298,0.730901,0.467268,0.367418,0.17851,0.695633,0.512802,0.613374,0.291552,0.500725,0.909784,|0.710616,0.285153,0.32955,0.468053,0.384862,0.453738,0.056821,0.144631,0.812806,0.711322,0.95226,0.593033,0.0420222,0.533499,0.0988892,0.374246,0.465698,0.448653,0.392218,0.664936,0.0833376,0.586454,0.86253,0.743381,0.607863,0.0195603,0.253169,0.382056,0.0114844,0.197113,0.273081,0.395322,0.323464,0.464534,0.479052,0.401997,0.744637,0.359752,0.880152,0.161905,0.36944,0.590358,0.0420851,0.527585,0.544399,0.0985968,0.256171,0.871525,0.356022,0.211638,0.887538,0.54455,0.566707,0.168931,0.281504,0.403692,0.57055,0.724818,0.129878,0.204617,0.330249,0.0947902,0.322011,0.443766,0.295499,0.580687,0.628829,0.869953,0.808207,0.584618,0.822017,0.512598,0.550534,0.439012,0.948047,0.999379,0.348346,0.392272,0.719606,0.541989,0.320238,0.994183,0.937474,0.602128,0.728074,0.489047,0.739943,0.82854,0.853558,0.33584,0.680829,0.475555,0.161464,0.0712253,0.516738,0.738486,0.522117,0.442183,0.296503,0.316738,0.516145,0.862858,0.265606,0.265857,0.423821,0.315649,0.472375,0.312532,0.824896,0.0676484,0.808657,0.942769,0.439351,0.259545,0.596774,0.342288,0.78836,0.34049,0.684377,0.0663957,0.102077,0.88294,0.987329,0.0410839,0.402272,0.714301,0.600086,0.610337,0.871972,0.675665,0.372026,0.363942,0.68427,0.717856,0.944513,0.149227,0.869392,0.157936,0.331896,0.0335655,0.423063,0.598161,0.493898,0.492225,0.478532,0.00545311,0.467747,0.373084,0.667975,0.748821,0.13844,0.131745,0.618338,0.189173,0.0807446,0.276752,0.189193,0.228743,0.15849,0.0569506,0.78841,0.634386,0.112244,0.569658,0.507772,0.236304,0.97893,0.814776,0.0691027,0.877314,0.113408,0.503546,0.177607,0.640955,0.491228,0.434907,0.865352,0.160505,0.196228,0.376784,0.257979,0.722619,0.0819157,0.0818312,0.985849,0.701547,0.0671099,0.378131,0.326554,0.334018,0.58216,0.083243,0.959153,0.773408,0.272805,0.514112,0.175563,0.402569,0.890172,0.728177,0.171331,0.809495,0.253662,0.791984,0.10133,0.0892199,0.772717,0.130574,0.489082,0.624855,0.602956,0.607642,0.392892,0.357835,0.7012,0.00259113,0.0810804,0.202609,0.440211,0.0564309,0.0311732,0.0775406,0.228009,0.0398324,0.597298,0.440378,0.53655,0.0592943,0.669995,0.250369,0.348783,0.804793,0.10243,0.830597,0.130739,0.338005,0.995263,0.452295,0.255228,0.686351,0.135005,0.829836,0.871785,0.294779,0.433915,0.80908,0.0957896,0.909512,0.0467647,0.868102,0.310989,0.773893,0.00310361,0.0204253,0.875489,0.114465,0.696235,0.297058,0.104357,0.2394,0.761514,0.82139,0.293565,0.637616,0.917672,0.191212,0.655773,0.348347,0.454524,0.984019,0.643788,0.935824,0.612189,0.369619,0.211712,0.69501,0.496372,0.217381,0.291732,0.965253,0.670231,0.0866109,0.658476,0.424895,0.201539,0.369059,0.546208,0.93018,0.458655,0.90337,0.265458,0.277107,0.214364,0.572418,0.160566,0.799031,0.548082,0.593144,0.379273,0.876402,0.830762,0.526767,0.765253,0.932599,0.340233,0.746648,0.269346,0.637573,0.471794,0.926214,0.670694,0.297583,0.93903,0.169543,0.532713,0.410127,0.0431739,0.444038,0.285083,0.517098,0.422043,0.639507,0.267506,0.884107,0.395163,0.0570869,0.353361,0.710825,0.144974,0.6896,0.0330448,0.236529,0.149664,0.167718,0.564319,0.501477,0.358447,0.249763,0.412582,0.662921,0.269285,0.291639,0.552383,0.571515,0.944303,0.686725,0.837542,0.932674,0.73173,0.359293,0.136375,0.19328,0.595349,0.686472,0.855972,0.722356,0.6705,0.661976,0.19077,0.774559,0.534546,0.490204,0.730829,0.762546,0.275341,0.658529,0.617383,0.00735158,0.157516,0.32043,0.618909,0.996604,0.809916,0.11667,0.513334,0.404843,0.442003,0.431764,0.748999,0.394316,0.192838,0.645013,0.955512,0.401783,0.110339,0.000330508,0.88267,0.307795,0.72758,0.80798,0.977383,0.878857,0.74562,0.974975,0.988147,0.469815,0.665065,0.526251,0.398547,0.713269,0.896102,0.521496,0.807388,0.0784082,0.933798,0.545286,0.719807,0.981272,0.970346,0.00941581,0.969813,0.939997,0.544159,0.223251,0.287103,0.145968,0.135175,0.652383,0.19391,0.89434,0.405618,0.168794,0.701988,0.449082,0.997524,0.476921,0.972563,0.924391,0.746984,0.12683,0.492381,0.871353,0.659113,0.293722,0.435803,0.658167,0.0973482,0.935558,0.719922,0.657727,0.292569,0.354674,0.711672,0.245584,0.583803,0.887522,0.35975,0.55411,0.0122301,0.375318,0.800594,0.693332,0.280834,0.494625,0.0646179,0.301511,0.995044,0.974604,0.679869,0.699144,0.834276,0.153907,0.51118,0.83992,0.837796,0.648804,0.55477,0.571616,0.621566,0.0891317,0.489878,0.933701,0.202501,0.64297,0.0318519,0.108624,0.161417,0.592252,0.442232,0.770174,0.388806,0.978154,0.313761,0.28254,0.639876,0.359141,0.936174,0.923697,0.265465,0.467659,0.835793,0.942326,0.620819,0.150705,0.198339,0.622268,0.474299,0.879892,0.0885541,0.249653,0.974041,0.790568,0.424542,0.711288,0.384817,0.84296,0.927226,0.0683565,0.779494,0.587012,0.0180184,0.761515,0.746856,0.510963,0.919565,0.222914,0.295916,0.790434,0.0204306,0.169982,0.361037,0.706772,0.529389,0.211662,0.936672,0.0923988,0.385456,0.215478,0.301816,0.92896,0.195438,0.885121,0.473413,0.943582,0.221579,0.863887,0.476577,0.502815,0.887469,0.0562065,0.0601431,0.762953,0.626233,0.458596,0.722965,0.902915,0.576507,0.475398,0.286308,0.968898,0.267873,0.984215,0.494389,0.233468,0.423485,0.590303,0.0855851,0.13051,0.56194,0.393183,0.108257,0.975823,0.618484,0.880925,0.118762,0.292859,0.990843,0.289218,0.570694,0.868887,0.970159,0.369679,0.725605,0.846217,0.962597,0.612818,0.643525,0.593656,0.764539,0.631667,0.891018,0.687686,0.30275,0.679765,0.668094,0.00661469,0.40736,0.765275,0.871676,0.351269,0.749214,0.753074,0.682065,0.69464,0.0795291,0.697692,0.423098,0.586682,0.584185,0.680111,0.70261,0.182049,0.333946,0.831516,0.462437,0.068614,0.627873,0.434597,0.713614,0.289856,0.198698,0.628375,0.443085,0.446955,0.495908,0.658307,0.865439,0.479142,0.408564,0.302314,0.250632,0.364972,0.337661,0.388237,0.0303146,0.444364,0.0131345,0.754704,0.221031,0.900214,0.789816,0.729018,0.943464,0.987215,0.0553787,0.192926,0.780155,0.516163,0.628297,0.61853,0.724565,0.126583,0.583408,0.100348,0.14851,0.383498,0.926422,0.476297,0.538947,0.324538,0.0407286,0.162981,0.650628,0.222568,0.570336,0.161313,0.480415,0.410455,0.920799,0.735257,0.447305,0.123756,0.70857,0.980268,0.0266471,0.456993,0.43652,0.74046,0.402399,0.000501573,0.509502,0.289048,0.0779918,0.115539,0.0209015,0.926724,0.22193,0.742125,0.823339,0.608022,0.107261,0.373693,0.951831,0.758288,0.662364,0.500661,0.725377,0.382739,0.0389935,0.0305029,0.794475,0.137867,0.397958,0.240309,0.511742,0.998556,0.306205,0.797236,0.847459,0.506896,0.366056,0.337574,0.477911,0.442154,0.740428,0.300584,0.529595,0.654021,0.909657,0.618813,0.363016,0.672858,0.00897193,0.326672,0.57593,0.0324842,0.424168,0.328736,0.855574,0.89514,0.441664,0.78534,0.157663,0.590877,0.757252,0.735242,0.931095,0.256034,0.639432,0.234639,0.600759,0.291119,0.159148,0.698637,0.549866,0.0377762,0.126057,0.484873,0.586549,0.682708,0.875483,0.201309,0.917012,0.101476,0.715389,0.783332,0.385975,0.11637,0.379023,0.366212,0.45003,0.842105,0.679163,0.387701,0.534685,0.00368702,0.185838,0.253735,0.930596,0.355334,0.627763,0.69381,0.103584,0.523827,0.90077,0.934886,0.266918,0.267104,0.769609,0.360179,0.391599,0.0120292,0.110005,0.874103,0.264123,0.215141,0.509772,0.907916,0.747549,0.0295683,0.991274,0.654651,0.161937,0.55836,0.528036,0.275814,0.741376,0.0951241,0.787624,0.21076,0.930603,0.53926,0.866797,0.115368,0.154866,0.521099,0.00328243,0.652191,0.632013,0.4716,0.855634,0.71287,0.179474,0.584791,0.457099,0.47715,0.301779,0.0597673,0.762905,0.321323,0.251847,0.46978,0.549546,0.925218,0.387239,0.211089,0.431602,0.985453,0.538302,0.66624,0.190993,0.807733,0.3997,0.774641,0.873108,0.201288,0.175663,0.178239,0.0226735,0.381504,0.725423,0.545657,0.0841671,0.0839056,0.414594,0.334155,0.475641,0.678868,0.577195,0.289039,0.896665,0.897075,0.0943636,0.338443,0.258614,0.930074,0.986113,0.891157,0.977854,0.517465,0.97674,0.171805,0.811108,0.22118,0.47894,0.611833,0.618794,0.226356,0.152909,0.575772,0.120571,0.55555,0.752815,0.747722,0.469709,0.502903,0.0618957,0.105944,0.772457,0.444461,0.998934,0.342165,0.639188,0.478291,0.215138,0.549347,0.191964,0.294911,0.658105,0.00138658,0.231865,0.465049,0.0226352,0.534318,0.522117,0.60616,0.476871,0.572123,0.560035,0.325613,0.596665,0.78921,0.805705,0.102315,0.195175,0.793145,0.871385,0.0827654,0.477355,0.415993,0.75648,0.900498,0.18738,0.838018,0.533834,0.0882153,0.00494331,0.543809,0.0145239,0.873072,0.554683,0.140305,0.222855,0.543824,0.721332,0.0334477,0.286832,0.671256,0.596594,0.596603,0.919271,0.594063,0.410614,0.919444,0.750926,0.57226,0.899978,0.971927,0.819919,0.742936,0.305106,0.618802,0.0748878,0.0442603,0.706006,0.761766,0.922609,0.179766,0.872969,0.369259,0.145479,0.593463,0.47072,0.275908,0.62098,0.115172,0.779444,0.822789,0.0926712,0.631871,0.499919,0.483329,0.745866,0.814321,0.151033,0.39927,0.876928,0.889826,0.540415,0.696755,0.268827,0.280145,0.948043,0.742173,0.678398,0.847257,0.108609,0.525716,0.983599,0.620965,0.270757,0.545769,0.878249,0.118444,0.142279,0.498001,0.225086,0.028941,0.0546665,0.0485173,0.111636,0.77013,0.862239,0.884486,0.452453,0.628208,0.942435,0.107423,0.745492,0.322154,0.159973,0.559824,0.203084,0.753,0.491067,0.479851,0.962662,0.512342,0.587797,0.34626,|0.399505,0.623891,0.907203,0.220939,0.958883,0.410715,0.725936,0.820653,0.263252,0.970186,0.51041,0.923578,0.188136,0.468298,0.0372059,0.85641,0.980591,0.424082,0.307706,0.83487,0.775329,0.122925,0.968943,0.506924,0.355975,0.741116,0.634943,0.38555,0.861068,0.0138085,0.428338,0.74866,0.647453,0.721845,0.347195,0.720689,0.755333,0.254189,0.988931,0.727259,0.304538,0.375864,0.549561,0.346626,0.655589,0.936496,0.941556,0.44426,0.473492,0.490357,0.387331,0.53206,0.0850945,0.411218,0.262053,0.195076,0.478101,0.547887,0.310389,0.0644963,0.946927,0.818751,0.28421,0.172928,0.937364,0.275815,0.999491,0.485509,0.643538,0.114859,0.212244,0.079351,0.954391,0.787027,0.472052,0.113565,0.745214,0.656301,0.082406,0.8568,0.681749,0.00856334,0.806092,0.581381,0.702988,0.834052,0.721714,0.755809,0.168893,0.0926517,0.448664,0.605325,0.337107,0.19002,0.638359,0.593912,0.487178,0.0321693,0.849434,0.718675,0.920043,0.428748,0.879259,0.833347,0.368408,0.0368671,0.599887,0.499338,0.993713,0.920951,0.422693,0.861494,0.861305,0.240721,0.33293,0.263659,0.408063,0.982159,0.978086,0.351527,0.262815,0.19648,0.0551261,0.805129,0.732073,0.263895,0.63906,0.793933,0.773715,0.562649,0.735894,0.605729,0.115729,0.943153,0.899388,0.409317,0.302419,0.246802,0.20837,0.321346,0.336173,0.511676,0.736511,0.839419,0.468096,0.336707,0.844704,0.806721,0.574642,0.614793,0.379142,0.638875,0.583816,0.524879,0.736508,0.815442,0.184865,0.989661,0.992595,0.848302,0.50441,0.796564,0.590923,0.818598,0.682534,0.43276,0.0897201,0.559117,0.88491,0.451549,0.142178,0.972582,0.549522,0.242304,0.265466,0.663989,0.718083,0.444108,0.457508,0.217267,0.39633,0.566087,0.292423,0.952613,0.098461,0.976828,0.683031,0.836981,0.493271,0.434803,0.217896,0.889998,0.415819,0.804325,0.0461615,0.558574,0.143346,0.872112,0.905283,0.269487,0.53059,0.802583,0.428913,0.711946,0.177129,0.582008,0.690523,0.531742,0.952006,0.58025,0.665859,0.882085,0.225593,0.719299,0.641761,0.38604,0.912487,0.859704,0.155428,0.451383,0.480855,0.093005,0.654241,0.955715,0.380993,0.601748,0.0883909,0.970686,0.0826848,0.588635,0.0371822,0.322272,0.938951,0.350936,0.534018,0.564035,0.704029,0.286405,0.411164,0.664627,0.72629,0.204973,0.503192,0.372234,0.388041,0.750557,0.538681,0.175019,0.550321,0.892613,0.668179,0.338709,0.375032,0.0545455,0.976061,0.58574,0.148534,0.340877,0.549779,0.34673,0.315758,0.00825167,0.86276,0.943739,0.528726,0.347728,0.362338,0.0748418,0.605606,0.202633,0.436366,0.571741,0.15462,0.834139,0.652121,0.678053,0.486318,0.922385,0.382663,0.0201991,0.90275,0.94985,0.0391788,0.741094,0.225159,0.877736,0.661044,0.0200235,0.339235,0.65586,0.96324,0.210517,0.971171,0.711539,0.145435,0.889919,0.104563,0.132049,0.515743,0.398107,0.0979986,0.759725,0.0564173,0.135827,0.861678,0.0474998,0.0175673,0.658136,0.936927,0.0546572,0.474415,0.647409,0.488994,0.381548,0.8719,0.912388,0.0756513,0.337796,0.677357,0.960302,0.573923,0.679203,0.158015,0.433859,0.875387,0.202458,0.198784,0.770511,0.130797,0.953948,0.387775,0.355229,0.828258,0.00318891,0.547967,0.704705,0.600038,0.0348048,0.769696,0.582208,0.683506,0.0601013,0.980464,0.675493,0.579074,0.846334,0.256229,0.745655,0.946238,0.458677,0.665826,0.731607,0.3749,0.675115,0.543731,0.98054,0.847316,0.325672,0.791732,0.762783,0.346024,0.140586,0.544037,0.785457,0.331629,0.262439,0.466113,0.357758,0.797633,0.318265,0.227722,0.147829,0.276501,0.545487,0.432823,0.150105,0.744956,0.602554,0.982587,0.670466,0.807516,0.613677,0.32422,0.79987,0.97023,0.820318,0.449239,0.884357,0.108571,0.899446,0.515746,0.439813,0.222348,0.266372,0.0188165,0.392374,0.973131,0.909988,0.236271,0.712122,0.652455,0.0421323,0.72073,0.743342,0.411812,0.373126,0.165049,0.257361,0.553718,0.765827,0.110597,0.155897,0.880343,0.937635,0.960483,0.0728494,0.353222,0.925661,0.275051,0.921737,0.0155585,0.0435737,0.161411,0.194278,0.179874,0.408679,0.0495819,0.581831,0.804347,0.0778098,0.609485,0.468386,0.0768288,0.462138,0.198366,0.879554,0.025744,0.279732,0.309446,0.856748,0.0745813,0.49619,0.627935,0.852275,0.0595877,0.211925,0.621468,0.937757,0.784622,0.406558,0.501544,0.710665,0.146565,0.673599,0.584255,0.149927,0.0189773,0.960152,0.0457264,0.198041,0.0594031,0.632567,0.624372,0.953177,0.39638,0.0934319,0.909033,0.583378,0.97636,0.489755,0.0831841,0.166863,0.276849,0.49679,0.0496087,0.660065,0.63155,0.481757,0.398433,0.319273,0.248451,0.929144,0.102114,0.280895,0.79399,0.349625,0.290757,0.577388,0.991023,0.865683,0.733569,0.0748916,0.771468,0.188735,0.753834,0.742032,0.301145,0.812001,0.493477,0.931866,0.220538,0.769359,0.251583,0.418205,0.0323994,0.940155,0.171573,0.181062,0.112491,0.589992,0.0326046,0.65399,0.583865,0.36177,0.965169,0.901706,0.511022,0.0416515,0.297575,0.34212,0.682455,0.624335,0.954036,0.709834,0.254674,0.220449,0.113714,0.456833,0.59065,0.913187,0.613828,0.879763,0.858218,0.970039,0.574337,0.479834,0.666713,0.512228,0.662209,0.792595,0.187317,0.903995,0.900844,0.623748,0.73495,0.240751,0.250568,0.0340917,0.195782,0.794303,0.242725,0.722638,0.432707,0.859513,0.774536,0.317447,0.63509,0.927308,0.0125426,0.829812,0.522798,0.561285,0.629242,0.174827,0.513204,0.532997,0.66817,0.450221,0.0623482,0.917368,0.576242,0.881736,0.211656,0.159015,0.714024,0.565112,0.501846,0.392676,0.621445,0.252365,0.662479,0.525926,0.794737,0.272741,0.0798591,0.450465,0.81302,0.00173169,0.326748,0.118443,0.610057,0.701585,0.714309,0.451116,0.347108,0.397587,0.245161,0.668566,0.364623,0.374562,0.985793,0.873701,0.633623,0.328606,0.869574,0.334194,0.112015,0.351536,0.549837,0.0563699,0.507145,0.950096,0.593431,0.268782,0.12922,0.102309,0.261406,0.918937,0.949674,0.366893,0.181805,0.021669,0.938454,0.379065,0.521226,0.23657,0.565577,0.453864,0.478557,0.0424792,0.0977286,0.955084,0.281228,0.645518,0.664245,0.346975,0.730232,0.489784,0.544543,0.798286,0.951198,0.804288,0.191287,0.475788,0.00898266,0.0472659,0.718278,0.091702,0.194799,0.973784,0.81051,0.096152,0.282462,0.666279,0.929931,0.149129,0.886249,0.515271,0.0647771,0.9397,0.853387,0.897362,0.550394,0.239258,0.984355,0.990439,0.879952,0.2125,0.576376,0.349745,0.633213,0.660821,0.366718,0.367111,0.321371,0.401185,0.179376,0.856166,0.0568909,0.256763,0.96825,0.557169,0.219517,0.753222,0.334829,0.645462,0.953589,0.0437807,0.25566,0.221325,0.44959,0.545222,0.952534,0.499635,0.278028,0.678009,0.513714,0.185337,0.913162,0.720651,0.298609,0.668539,0.919708,0.455223,0.545878,0.481332,0.242359,0.711574,0.452593,0.715403,0.223842,0.772779,0.115289,0.254021,0.0528474,0.12305,0.838662,0.529552,0.951055,0.577393,0.538759,0.0780013,0.618738,0.0724299,0.109284,0.480179,0.227672,0.276052,0.12223,0.854302,0.894027,0.840542,0.7201,0.0391198,0.633229,0.485756,0.198793,0.684594,0.368465,0.360408,0.24867,0.0192525,0.381581,0.00101447,0.0161084,0.741021,0.472692,0.652103,0.898662,0.569622,0.463384,0.049327,0.258243,0.62586,0.540362,0.195314,0.604464,0.840036,0.790371,0.182312,0.864307,0.241123,0.646082,0.180648,0.163676,0.273956,0.457964,0.253672,0.217105,0.27606,0.710377,0.713532,0.716316,0.14447,0.941329,0.600405,0.347391,0.990979,0.970605,0.634377,0.935379,0.0856019,0.0157641,0.732638,0.511238,0.0734733,0.0667596,0.719332,0.0782688,0.0788978,0.398651,0.858301,0.491286,0.579916,0.433534,0.142956,0.744462,0.527214,0.157962,0.159531,0.494274,0.610838,0.205002,0.312843,0.580645,0.135718,0.519421,0.669732,0.11238,0.147719,0.703402,0.916748,0.955022,0.744827,0.640769,0.199675,0.1168,0.110623,0.320458,0.704639,0.96409,0.101422,0.72168,0.4263,0.668147,0.499526,0.741375,0.726441,0.0601652,0.0904047,0.402099,0.0496557,0.632838,0.214245,0.0379412,0.167177,0.613274,0.151575,0.734925,0.29876,0.97874,0.948136,0.553528,0.944128,0.223776,0.700127,0.123081,0.12344,0.189243,0.273548,0.655766,0.401628,0.661778,0.24839,0.231495,0.197706,0.570068,0.21467,0.866853,0.561295,0.127825,0.742068,0.885089,0.413083,0.812138,0.209478,0.996545,0.131624,0.245299,0.147572,0.860795,0.983171,0.0131804,0.405065,0.399004,0.789013,0.362831,0.145136,0.264169,0.0304524,0.734381,0.640174,0.809629,0.795294,0.793426,0.599801,0.243697,0.399174,0.422281,0.50471,0.0159253,0.552095,0.150609,0.663659,0.191501,0.447988,0.380169,0.271659,0.0014953,0.966347,0.72276,0.59742,0.170015,0.963247,0.776235,0.620501,0.33645,0.601819,0.142832,0.285063,0.617546,0.157377,0.166821,0.530342,0.321393,0.846474,0.00435871,0.197793,0.257029,0.00625938,0.125193,0.385932,0.0825229,0.669369,0.516863,0.808813,0.739659,0.176664,0.356931,0.572989,0.773338,0.933117,0.779213,0.510301,0.812744,0.789409,0.0300115,0.939845,0.737231,0.0502691,0.466119,0.165515,0.521027,0.154051,0.477556,0.160092,0.640503,0.561806,0.0750052,0.207048,0.700862,0.927927,0.352281,0.437822,0.535318,0.661496,0.471837,0.973597,0.44865,0.329969,0.671823,0.89287,0.842029,0.962684,0.528045,0.762195,0.0742379,0.719456,0.917955,0.782227,0.348287,0.266948,0.802647,0.338287,0.788853,0.165052,0.205124,0.143387,0.1281,0.591858,0.149748,0.469404,0.524734,0.46849,0.143094,0.521079,0.546085,0.775091,0.34927,0.250251,0.649147,0.155409,0.340363,0.163306,0.484941,0.599797,0.239306,0.553387,0.300592,0.90502,|0.08822,0.0535806,0.700326,0.951618,0.197839,0.456834,0.388893,0.943319,0.28069,0.960685,0.839559,0.81747,0.986202,0.0902895,0.944292,0.708351,0.396101,0.746926,0.421303,0.598137,0.665577,0.197058,0.177865,0.456391,0.8226,0.116721,0.905032,0.987766,0.628882,0.860565,0.648117,0.0489163,0.890835,0.452225,0.433301,0.420719,0.117694,0.722807,0.833603,0.323149,0.734687,0.384813,0.389033,0.968948,0.261987,0.918658,0.945278,0.840833,0.748959,0.330763,0.544405,0.957734,0.23521,0.168671,0.182745,0.837611,0.872605,0.819517,0.15735,0.626394,0.541729,0.59021,0.551184,0.182325,0.402369,0.688949,0.665403,0.490042,0.547131,0.268314,0.835655,0.815717,0.917519,0.612274,0.34815,0.138059,0.494426,0.482735,0.558375,0.157006,0.103366,0.88418,0.886909,0.209952,0.745421,0.194838,0.805696,0.66347,0.190643,0.443065,0.816702,0.317213,0.557742,0.0648692,0.0245442,0.795486,0.615501,0.508521,0.278571,0.356113,0.593777,0.678389,0.513314,0.839707,0.321996,0.247158,0.530383,0.800529,0.284521,0.535389,0.12835,0.402902,0.912136,0.423509,0.0985069,0.69841,0.612787,0.204961,0.374197,0.95324,0.579016,0.192839,0.419658,0.97869,0.71142,0.180603,0.092133,0.724312,0.971865,0.502743,0.0574443,0.132469,0.534894,0.64229,0.373027,0.443164,0.0312431,0.456923,0.281205,0.877215,0.382899,0.655348,0.67294,0.00215113,0.0708933,0.171387,0.555808,0.85615,0.060608,0.597417,0.939879,0.870628,0.494309,0.801068,0.544687,0.957516,0.0125,0.271295,0.622431,0.437926,0.787674,0.281722,0.971069,0.196489,0.128213,0.95701,0.70751,0.277371,0.318052,0.545749,0.224845,0.685311,0.895312,0.203203,0.718721,0.072816,0.488526,0.266041,0.423461,0.0247283,0.205454,0.827426,0.674313,0.37434,0.608326,0.334782,0.699878,0.77484,0.599662,0.812192,0.049876,0.409616,0.672682,0.175482,0.283752,0.738015,0.170472,0.776691,0.355054,0.312162,0.208737,0.299884,0.541587,0.857276,0.147458,0.505989,0.17054,0.242809,0.362658,0.187442,0.825578,0.349717,0.282,0.660224,0.644096,0.150541,0.457721,0.482007,0.481875,0.495563,0.710059,0.128513,0.138007,0.491123,0.621525,0.295674,0.587146,0.79837,0.541633,0.391865,0.154925,0.311063,0.736465,0.568594,0.776202,0.472666,0.469589,0.140082,0.498538,0.241931,0.615824,0.469959,0.415448,0.508687,0.954752,0.759842,0.660866,0.194808,0.217701,0.310902,0.0294865,0.533129,0.203936,0.932849,0.477536,0.482148,0.423245,0.743129,0.429304,0.374905,0.210111,0.66446,0.423979,0.246617,0.408891,0.252802,0.903989,0.9068,0.478806,0.701945,0.823472,0.359739,0.0766985,0.736841,0.868584,0.393088,0.764302,0.541367,0.395676,0.495072,0.34047,0.065562,0.323492,0.576625,0.731894,0.583846,0.744172,0.716227,0.807029,0.593246,0.0135379,0.660636,0.849469,0.892263,0.972403,0.476833,0.180632,0.0903212,0.45087,0.451082,0.0707483,0.769533,0.87036,0.692733,0.611982,0.200005,0.666461,0.788149,0.500889,0.675171,0.186549,0.182304,0.775999,0.183814,0.299931,0.434155,0.00965744,0.352288,0.340453,0.00225466,0.114998,0.329478,0.86371,0.17214,0.643623,0.91466,0.880499,0.168315,0.840609,0.334717,0.664187,0.572794,0.8109,0.9793,0.496924,0.644272,0.487916,0.69937,0.60951,0.736496,0.627775,0.771112,0.316972,0.776641,0.50374,0.141718,0.0312769,0.388999,0.121726,0.680933,0.969908,0.565495,0.703581,0.980491,0.0604957,0.604456,0.931049,0.0867208,0.805942,0.998476,0.887798,0.151423,0.821755,0.103607,0.329271,0.40129,0.791102,0.913533,0.0594671,0.373307,0.993004,0.826429,0.699589,0.251185,0.768955,0.517026,0.810656,0.993004,0.268524,0.066541,0.307435,0.445231,0.397375,0.205389,0.285398,0.920675,0.755733,0.344468,0.16792,0.0545329,0.0492334,0.586367,0.579949,0.753485,0.193951,0.12412,0.5945,0.0951784,0.092445,0.0374535,0.734176,0.364463,0.879255,0.535808,0.128682,0.906764,0.706042,0.00552475,0.59091,0.952167,0.884437,0.859729,0.730553,0.630781,0.0267843,0.792713,0.791681,0.0475996,0.465269,0.39063,0.846024,0.316925,0.983888,0.961831,0.508383,0.0515857,0.20187,0.22466,0.829585,0.244552,0.0683599,0.665988,0.49795,0.625419,0.882538,0.330129,0.801469,0.0811849,0.284783,0.0231352,0.73391,0.440966,0.18134,0.182007,0.660117,0.948427,0.823651,0.0446858,0.999459,0.670267,0.26454,0.449356,0.247746,0.249681,0.805738,0.402519,0.81158,0.85801,0.253633,0.783542,0.889741,0.550296,0.493637,0.238839,0.657059,0.660817,0.81537,0.26774,0.18878,0.131672,0.984662,0.354957,0.573766,0.784416,0.993971,0.834739,0.334869,0.598318,0.489302,0.20878,0.826677,0.744316,0.743799,0.615993,0.928701,0.0327274,0.12722,0.642934,0.386505,0.407041,0.584955,0.127494,0.367318,0.404817,0.683894,0.33062,0.673565,0.124558,0.204726,0.560967,0.543787,0.21837,0.0285163,0.629831,0.238254,0.488834,0.380017,0.375235,0.731141,0.936817,0.562055,0.775056,0.00856918,0.494897,0.787046,0.33385,0.430329,0.0234831,0.609386,0.954836,0.403518,0.808486,0.537727,0.7261,0.0726281,0.0495211,0.701559,0.490923,0.745345,0.95554,0.804072,0.411614,0.590193,0.30453,0.0106235,0.0125949,0.286356,0.150525,0.39891,0.862431,0.648539,0.234164,0.290456,0.761066,0.449311,0.630568,0.688023,0.488542,0.0737931,0.522335,0.168053,0.388235,0.79942,0.81654,0.492751,0.412021,0.398724,0.802173,0.131019,0.256196,0.577188,0.215124,0.0604264,0.266667,0.0240935,0.338644,0.697334,0.411996,0.278403,0.298514,0.919217,0.259531,0.231821,0.78666,0.231872,0.985171,0.675517,0.161079,0.357902,0.35146,0.326773,0.748573,0.413683,0.0700924,0.00247639,0.208944,0.46536,0.683577,0.285296,0.69293,0.302326,0.31433,0.534071,0.520278,0.709322,0.0940737,0.735426,0.636976,0.510639,0.312137,0.69275,0.942801,0.732519,0.0878685,0.87141,0.478388,0.339888,0.662837,0.999415,0.468543,0.598602,0.452095,0.22172,0.149628,0.98646,0.536885,0.0822568,0.177858,0.257263,0.724471,0.626838,0.316322,0.361014,0.813331,0.0874929,0.0202901,0.341941,0.145156,0.387015,0.657962,0.564378,0.611491,0.0244488,0.118621,0.614117,0.517512,0.444993,0.428887,0.888457,0.882316,0.470904,0.0831916,0.542768,0.0482545,0.341339,0.744127,0.596803,0.0649423,0.840869,0.259324,0.208826,0.943817,0.495531,0.290676,0.713657,0.750295,0.707118,0.308389,0.0752949,0.500586,0.100832,0.907775,0.981955,0.292878,0.936267,0.800536,0.240731,0.404056,0.0661628,0.840572,0.639784,0.82662,0.357149,0.443089,0.556615,0.13716,0.263827,0.625773,0.552636,0.939817,0.818087,0.400084,0.885,0.951137,0.757538,0.395343,0.631818,0.127729,0.890113,0.152827,0.168533,0.687078,0.0852945,0.1152,0.0793466,0.168324,0.75976,0.0730273,0.979465,0.869508,0.830605,0.0515465,0.24005,0.606133,0.529177,0.981824,0.803797,0.180807,0.212575,0.117427,0.305882,0.0625109,0.145368,0.0471771,0.927386,0.104018,0.396685,0.142859,0.50879,0.23379,0.774353,0.792092,0.336633,0.0471292,0.300526,0.60323,0.196342,0.910921,0.911298,0.916214,0.584958,0.0168422,0.910897,0.479631,0.635416,0.604377,0.871758,0.250254,0.778294,0.125055,0.532663,0.163002,0.78734,0.833155,0.523885,0.0127933,0.0787596,0.920912,0.71866,0.113128,0.793336,0.508119,0.112655,0.671407,0.440279,0.490513,0.206997,0.361284,0.344042,0.961027,0.313031,0.571228,0.453511,0.0738125,0.252066,0.228388,0.448754,0.316701,0.0576244,0.548846,0.781601,0.647172,0.691301,0.645421,0.909525,0.554199,0.594201,0.0314799,0.576252,0.984965,0.45836,0.40059,0.928858,0.862683,0.962754,0.420564,0.752376,0.962873,0.124547,0.410779,0.623228,0.896825,0.182106,0.657911,0.560046,0.855299,0.366261,0.223578,0.105633,0.465782,0.948886,0.449032,0.0357514,0.611862,0.509805,0.428179,0.402059,0.870199,0.516024,0.873399,0.48506,0.329207,0.909657,0.269012,0.962146,0.319788,0.364923,0.621884,0.532715,0.548465,0.676776,0.252901,0.0512161,0.886422,0.869891,0.173986,0.551906,0.696424,0.852228,0.86424,0.0180323,0.0585333,0.777432,0.90706,0.385348,0.359877,0.883603,0.225057,0.807715,0.903719,0.872667,0.293916,0.956081,0.747839,0.118018,0.696295,0.624673,0.44064,0.33126,0.962995,0.582787,0.480358,0.934844,0.908638,0.18463,0.82914,0.815814,0.192967,0.108835,0.341835,0.495018,0.589859,0.798626,0.748436,0.425595,0.159354,0.123585,0.689366,0.453083,0.396366,0.157954,0.681284,0.78582,0.549889,0.876238,0.349419,0.835915,0.878466,0.969416,0.997529,0.520926,0.977531,0.931875,0.600147,0.0759407,0.861406,0.6234,0.323525,0.995025,0.297142,0.116854,0.841049,0.374458,0.042404,0.799319,0.787564,0.165748,0.139191,0.722043,0.80864,0.608932,0.235372,0.0317893,0.0742723,0.374507,0.10939,0.796346,0.779763,0.888215,0.990833,0.866774,0.347062,0.214023,0.0589306,0.0715234,0.91375,0.531684,0.59864,0.796235,0.0127097,0.581848,0.768157,0.829842,0.248713,0.592332,0.945371,0.0922892,0.0699371,0.557662,0.826123,0.113081,0.925294,0.084169,0.812437,0.625061,0.448169,0.665214,0.922191,0.402846,0.799249,0.512936,0.59858,0.505483,0.13765,0.825834,0.65203,0.703696,0.00116158,0.640199,0.825272,0.845799,0.563363,0.271318,0.539835,0.476103,0.399482,0.593661,0.204853,0.752894,0.795381,0.745777,0.575671,0.308363,0.866067,0.238046,0.206352,0.673181,0.940369,0.651505,0.367231,0.244901,0.0438684,0.497824,0.645302,0.279498,0.72447,0.722403,0.416131,0.227643,0.863241,0.240071,0.693567,0.0110646,0.973412,0.96046,0.632717,0.447696,0.526197,0.0758318,0.316534,0.936145,0.757567,0.800553,0.445927,0.641026,0.767261,0.895164,0.75476,0.191367,0.279042,|0.958467,0.0768405,0.211477,0.981004,0.114323,0.130734,0.235586,0.0484207,0.789261,0.645144,0.545735,0.778059,0.551176,0.672983,0.456829,0.963752,0.0138402,0.845169,0.884285,0.245048,0.00966489,0.970307,0.926844,0.670706,0.256705,0.334264,0.26017,0.978872,0.0175082,0.612495,0.837166,0.898208,0.563311,0.688887,0.325344,0.458672,0.971461,0.743665,0.580141,0.169822,0.0543668,0.149061,0.95032,0.643635,0.639576,0.016922,0.86604,0.803797,0.62729,0.328333,0.2144,0.151053,0.206633,0.110551,0.659536,0.508301,0.0807087,0.233569,0.564771,0.11326,0.08651,0.392788,0.970027,0.0131842,0.0777866,0.458215,0.655315,0.928778,0.890391,0.569581,0.747022,0.785465,0.24786,0.817299,0.984064,0.757808,0.272599,0.913387,0.458189,0.610169,0.288237,0.831567,0.334668,0.630696,0.0254578,0.0720233,0.686573,0.302717,0.0790287,0.274998,0.26531,0.993726,0.295365,0.257944,0.439525,0.297815,0.537913,0.426761,0.818694,0.262473,0.778418,0.880397,0.3304,0.298056,0.497393,0.344906,0.725826,0.00345707,0.777004,0.93093,0.993587,0.448618,0.241574,0.570804,0.410298,0.304389,0.830695,0.560123,0.676302,0.338254,0.581696,0.246875,0.652456,0.165809,0.443816,0.98194,0.00188857,0.821916,0.0990191,0.222669,0.516366,0.100474,0.510823,0.477468,0.737273,0.584893,0.528971,0.98447,0.668694,0.484532,0.285968,0.304744,0.479639,0.747243,0.0733095,0.903076,0.40283,0.0470583,0.637071,0.791169,0.627478,0.97594,0.755012,0.8227,0.484768,0.302592,0.943905,0.444303,0.172252,0.821679,0.359315,0.694507,0.913272,0.672907,0.734137,0.025701,0.0718434,0.212515,0.999064,0.382033,0.645425,0.730934,0.790168,0.538134,0.855467,0.478551,0.388583,0.355094,0.438666,0.165338,0.645802,0.195247,0.347418,0.798776,0.12578,0.390036,0.897446,0.335372,0.932266,0.162429,0.699172,0.139052,0.961711,0.0184118,0.0802247,0.711698,0.481987,0.445577,0.19209,0.234355,0.671063,0.70496,0.324982,0.806124,0.074021,0.345473,0.464559,0.476675,0.16914,0.864939,0.578183,0.761157,0.306023,0.07718,0.874943,0.907438,0.620396,0.797835,0.581235,0.0258736,0.969559,0.418574,0.529218,0.230051,0.530627,0.199559,0.616352,0.635609,0.0872887,0.0668413,0.843345,0.677993,0.598304,0.460752,0.0444072,0.605621,0.803797,0.844822,0.210378,0.733403,0.779285,0.610697,0.429898,0.0116349,0.454714,0.492417,0.910347,0.403755,0.0489165,0.940715,0.869342,0.75114,0.83851,0.184198,0.23985,0.588307,0.299875,0.0262803,0.789053,0.14252,0.884274,0.418575,0.767826,0.659563,0.950928,0.66991,0.297721,0.189902,0.111665,0.897525,0.128747,0.188938,0.576647,0.562664,0.372004,0.955267,0.200044,0.0864754,0.550793,0.10118,0.94885,0.266468,0.274305,0.0886517,0.0633912,0.22116,0.745334,0.450079,0.597222,0.244531,0.721169,0.520087,0.53948,0.745972,0.118508,0.898639,0.333991,0.163813,0.5118,0.523678,0.594392,0.357757,0.0799137,0.122993,0.604717,0.237118,0.429559,0.623623,0.685427,0.00615239,0.55919,0.233012,0.695536,0.178249,0.540237,0.935209,0.980438,0.147807,0.326151,0.748283,0.80706,0.0377977,0.673634,0.423623,0.428497,0.92892,0.312138,0.413985,0.234053,0.259711,0.267291,0.207009,0.758019,0.721497,0.286235,0.252731,0.0128595,0.375379,0.319296,0.146774,0.595811,0.752804,0.0624761,0.721744,0.620807,0.204935,0.763607,0.70039,0.0627235,0.626597,0.270765,0.804228,0.28963,0.10064,0.479463,0.533594,0.0842278,0.850823,0.473664,0.558107,0.125013,0.266032,0.985619,0.372555,0.212547,0.856875,0.149405,0.435042,0.582435,0.367382,0.26524,0.958403,0.0636665,0.673162,0.221762,0.475293,0.671145,0.567881,0.746248,0.767476,0.820054,0.716662,0.239008,0.318015,0.45427,0.83124,0.269792,0.418655,0.0923933,0.794609,0.630933,0.499884,0.744896,0.242686,0.157163,0.645698,0.0168774,0.456508,0.0771394,0.677722,0.970318,0.771248,0.457054,0.824382,0.683437,0.743638,0.718511,0.511658,0.747412,0.655431,0.286822,0.118417,0.816269,0.206094,0.222018,0.0515812,0.143657,0.0954539,0.734145,0.408168,0.906168,0.107211,0.803306,0.538394,0.590165,0.383383,0.551331,0.353662,0.615104,0.813412,0.00728756,0.775041,0.144145,0.794218,0.0939735,0.0723705,0.688271,0.110651,0.825985,0.450512,0.878088,0.474633,0.244054,0.208237,0.481113,0.019492,0.595553,0.0591859,0.869458,0.35379,0.34524,0.265315,0.318207,0.509272,0.184347,0.732107,0.73389,0.315479,0.363134,0.693499,0.889602,0.377729,0.902782,0.332804,0.560326,0.531087,0.246872,0.773684,0.596588,0.10232,0.555439,0.953054,0.14553,0.892476,0.736695,0.151436,0.485266,0.610597,0.294774,0.856169,0.423893,0.718339,0.958291,0.808756,0.194166,0.811836,0.760562,0.0569494,0.224998,0.951942,0.823014,0.572669,0.11721,0.641612,0.327097,0.316576,0.697579,0.306714,0.361617,0.0613183,0.289577,0.898673,0.212429,0.737913,0.700753,0.146154,0.0575199,0.453621,0.990338,0.926808,0.0536718,0.844359,0.365265,0.342714,0.975601,0.392361,0.0322844,0.0339785,0.308566,0.181756,0.593531,0.621859,0.956858,0.599231,0.799166,0.143393,0.118082,0.257042,0.497809,0.471767,0.351833,0.0774695,0.364299,0.573744,0.182388,0.440288,0.255239,0.838295,0.521718,0.0507243,0.449145,0.841929,0.650337,0.403687,0.741015,0.494815,0.109383,0.549153,0.98279,0.0191094,0.301353,0.505641,0.800292,0.652799,0.225001,0.754389,0.811646,0.0156279,0.810843,0.0503479,0.128147,0.916171,0.302406,0.44878,0.261929,0.392424,0.684011,0.0485912,0.382074,0.0791762,0.883361,0.99004,0.214133,0.715587,0.359915,0.410562,0.194425,0.86897,0.305301,0.814574,0.912543,0.132252,0.373035,0.203764,0.189803,0.255877,0.216778,0.311581,0.308412,0.786853,0.175904,0.844741,0.804061,0.578199,0.942208,0.206817,0.373825,0.482728,0.685508,0.207754,0.900158,0.894244,0.77601,0.706484,0.11513,0.454182,0.0337511,0.482444,0.727057,0.231585,0.747711,0.186077,0.160609,0.408197,0.523597,0.750106,0.0663912,0.640941,0.7065,0.555305,0.532815,0.813876,0.576052,0.809672,0.686101,0.648597,0.543341,0.743563,0.597878,0.953004,0.876338,0.511699,0.749178,0.974961,0.56272,0.236685,0.560073,0.765512,0.049108,0.00548095,0.215795,0.814419,0.25288,0.74021,0.132906,0.265075,0.7843,0.404663,0.978679,0.80444,0.976879,0.140884,0.762485,0.695621,0.0885706,0.687293,0.857309,0.181621,0.245226,0.370416,0.755059,0.296451,0.576812,0.500558,0.54443,0.933451,0.665516,0.279068,0.897217,0.613522,0.283222,0.303748,0.918532,0.0166837,0.196138,0.894526,0.463647,0.788116,0.252166,0.222856,0.604278,0.267248,0.974045,0.35381,0.570509,0.409376,0.0465072,0.267761,0.318647,0.626245,0.0442165,0.820192,0.774543,0.10861,0.0298411,0.611555,0.664856,0.189796,0.78959,0.718363,0.147368,0.401712,0.820172,0.09737,0.0197868,0.390446,0.303446,0.745485,0.876112,0.884017,0.388922,0.270019,0.0939792,0.351858,0.413904,0.527276,0.0316474,0.474179,0.687006,0.621904,0.71261,0.859264,0.237487,0.96866,0.528782,0.759606,0.00507087,0.202896,0.951352,0.837642,0.727315,0.602376,0.269113,0.0697471,0.857494,0.0696236,0.603546,0.605459,0.381966,0.398103,0.17683,0.265728,0.141384,0.478334,0.727884,0.972309,0.601116,0.672419,0.620089,0.0868052,0.821179,0.360547,0.601222,0.781149,0.0801855,0.937217,0.286711,0.965219,0.483533,0.939989,0.874987,0.757115,0.215771,0.400001,0.150386,0.410718,0.685667,0.083855,0.885279,0.604162,0.11081,0.0359989,0.541317,0.874892,0.932314,0.0788086,0.10428,0.206535,0.981586,0.242278,0.447051,0.561185,0.285485,0.963926,0.756798,0.920631,0.597885,0.0481707,0.633029,0.508886,0.501285,0.877138,0.575762,0.615915,0.41107,0.191625,0.381122,0.258159,0.478963,0.0250273,0.00140071,0.854432,0.500431,0.174375,0.00538135,0.949212,0.397839,0.658187,0.622616,0.72139,0.366592,0.105171,0.200452,0.518254,0.917819,0.724987,0.238187,0.375356,0.24544,0.172326,0.964286,0.925523,0.635054,0.977248,0.993801,0.234962,0.059148,0.617416,0.29427,0.367144,0.740297,0.641372,0.252396,0.489677,0.94468,0.326812,0.72425,0.801817,0.91694,0.302468,0.76569,0.748118,0.581944,0.283095,0.157238,0.488628,0.414397,0.701345,0.307059,0.482671,0.353549,0.215331,0.548197,0.334317,0.638331,0.469264,0.440299,0.736005,0.0610384,0.955433,0.14358,0.854042,0.172072,0.418519,0.386425,0.739713,0.317032,0.0118338,0.184164,0.797904,0.824144,0.120664,0.397514,0.14165,0.597126,0.785518,0.300508,0.0688384,0.675066,0.935707,0.993506,0.081906,0.229255,0.78097,0.130757,0.493874,0.382541,0.330822,0.108952,0.868511,0.0154814,0.257951,0.606044,0.745627,0.572958,0.715825,0.423478,0.305154,0.0307599,0.449158,0.479496,0.120203,0.808554,0.278685,0.0998714,0.706471,0.512752,0.0482078,0.780449,0.884052,0.230886,0.00127679,0.0684028,0.765461,0.879645,0.31891,0.283098,0.734426,0.288146,0.885977,0.413153,0.24765,0.548817,0.77529,0.110684,0.214624,0.103365,0.999393,0.959345,0.527075,0.848509,0.615458,0.99034,0.662547,0.614753,0.330736,0.775375,0.416222,0.707581,0.935271,0.257316,0.623916,0.467379,0.503795,0.95864,0.687528,0.837453,0.229287,0.851941,0.297949,0.37113,0.0615345,0.129645,0.105464,0.112888,0.679155,0.196225,0.51144,0.221421,0.160322,0.78145,0.603457,0.254308,0.18953,0.19237,0.876967,0.114267,0.736977,0.347231,0.546111,0.00251627,0.378911,0.753911,0.346318,0.76486,0.793126,0.382715,0.574026,0.713521,0.288411,0.198194,0.878909,0.728447,0.117587,0.290034,0.333191,0.55653,0.56736,0.0544834,0.165627,0.952002,0.285671,0.258018,0.644208,0.635375,0.959111,0.531848,0.492118,0.532032,0.655158,|0.00857276,0.8752,0.858419,0.564578,0.670737,0.531661,0.996036,0.403111,0.416405,0.496319,0.549381,0.428642,0.88198,0.314074,0.21021,0.468074,0.14353,0.552668,0.317226,0.990108,0.711521,0.962289,0.697824,0.136845,0.142708,0.0843336,0.356161,0.295412,0.961337,0.396448,0.513186,0.656932,0.654417,0.807558,0.718794,0.276664,0.0866451,0.943257,0.359454,0.27916,0.516432,0.241983,0.313534,0.866997,0.267972,0.879859,0.610384,0.229342,0.99512,0.243425,0.959994,0.18739,0.568436,0.439906,0.280833,0.828332,0.163302,0.378909,0.759997,0.229244,0.839951,0.115063,0.442239,0.656301,0.0196735,0.191113,0.440988,0.844868,0.896031,0.599797,0.301322,0.391011,0.474101,0.69655,0.931187,0.425745,0.303923,0.917943,0.545532,0.167532,0.271816,0.856376,0.0757017,0.662474,0.965528,0.246107,0.493638,0.983845,0.480052,0.703704,0.375145,0.316053,0.434424,0.682778,0.113468,0.458441,0.852667,0.209434,0.515631,0.97576,0.594735,0.997399,0.296618,0.000893295,0.523694,0.757703,0.0242912,0.519939,0.00615537,0.575657,0.969679,0.777638,0.154645,0.790973,0.356762,0.361492,0.438295,0.861825,0.27225,0.62977,0.478195,0.567848,0.397114,0.537422,0.0510288,0.670476,0.24498,0.651348,0.960672,0.720621,0.948105,0.765549,0.528238,0.106204,0.103533,0.116565,0.784546,0.198784,0.695709,0.389796,0.875626,0.857838,0.162672,0.293928,0.363181,0.361034,0.969949,0.506378,0.055297,0.0660635,0.983229,0.317341,0.566931,0.0783082,0.0157336,0.747951,0.458982,0.322298,0.644762,0.844394,0.329901,0.293091,0.467728,0.545431,0.948128,0.971231,0.2072,0.742421,0.10701,0.183208,0.43658,0.472942,0.32471,0.295009,0.62114,0.16507,0.878616,0.373971,0.438398,0.12424,0.710781,0.581552,0.579889,0.323362,0.033705,0.402893,0.168941,0.406099,0.150473,0.664123,0.891099,0.304675,0.0851011,0.881658,0.746329,0.73906,0.952854,0.379354,0.917147,0.575128,0.877027,0.924714,0.739875,0.0763314,0.16724,0.943179,0.846232,0.671668,0.805551,0.84176,0.761878,0.0955912,0.134485,0.999328,0.472916,0.569649,0.450898,0.992187,0.78985,0.61459,0.815126,0.467318,0.0839672,0.232727,0.741111,0.570592,0.119058,0.244472,0.493333,0.761967,0.942131,0.0488521,0.69995,0.903993,0.151359,0.226352,0.0527439,0.791732,0.199593,0.466228,0.743591,0.19421,0.551889,0.478489,0.831214,0.967641,0.501677,0.593517,0.889592,0.779931,0.398512,0.999358,0.158938,0.419563,0.695284,0.504437,0.58301,0.477711,0.969398,0.684877,0.94129,0.601474,0.969844,0.981081,0.51029,0.444669,0.103835,0.597739,0.188575,0.621421,0.112069,0.16922,0.589101,0.347063,0.500793,0.286837,0.0838891,0.595514,0.458282,0.50828,0.108525,0.777524,0.647321,0.0537831,0.254782,0.854427,0.685928,0.881074,0.584841,0.551901,0.592484,0.705637,0.50013,0.0321222,0.127369,0.355214,0.59118,0.573423,0.71788,0.101276,0.751122,0.73181,0.241703,0.258054,0.589069,0.710994,0.119132,0.999452,0.73352,0.98496,0.647724,0.162147,0.242114,0.981384,0.168986,0.159564,0.401647,0.900071,0.565894,0.298688,0.988044,0.360022,0.671665,0.500532,0.813909,0.348115,0.362917,0.723981,0.405941,0.263614,0.290226,0.6587,0.740586,0.10365,0.925126,0.255268,0.583131,0.117519,0.972898,0.942968,0.125008,0.219987,0.189553,0.650884,0.600109,0.651675,0.284777,0.992167,0.0180053,0.232979,0.256321,0.37686,0.0358154,0.487386,0.770193,0.0405663,0.407567,0.374204,0.709364,0.78248,0.445474,0.451839,0.494701,0.613083,0.0925351,0.910883,0.974461,0.995945,0.253256,0.946402,0.0800583,0.213475,0.810798,0.105835,0.265554,0.361977,0.616672,0.630426,0.864402,0.652633,0.931465,0.695754,0.508154,0.87943,0.84545,0.718409,0.610529,0.483982,0.641896,0.102673,0.677255,0.442653,0.845707,0.374889,0.108821,0.00955397,0.776216,0.116747,0.0198902,0.833628,0.303859,0.671479,0.887256,0.939466,0.589784,0.674228,0.78286,0.257243,0.434384,0.98707,0.943191,0.0874064,0.859102,0.525514,0.139453,0.841427,0.753664,0.621415,0.996328,0.335811,0.684713,0.488241,0.113334,0.549799,0.0111578,0.32159,0.293979,0.762679,0.66081,0.815017,0.0659899,0.0878972,0.050882,0.900551,0.0368257,0.268404,0.575575,0.142838,0.79317,0.408776,0.471701,0.784712,0.802729,0.609014,0.452231,0.430726,0.87475,0.210932,0.613763,0.901578,0.889012,0.348595,0.144891,0.203422,0.877857,0.0691403,0.296359,0.130133,0.40025,0.941531,0.344742,0.28777,0.175309,0.935432,0.84752,0.462774,0.43668,0.221786,0.0557169,0.845135,0.978122,0.921649,0.677927,0.151948,0.266374,0.346169,0.744405,0.538998,0.72134,0.96306,0.902682,0.296576,0.160744,0.67956,0.283589,0.837749,0.127852,0.157057,0.801195,0.66027,0.960782,0.279353,0.0175715,0.657744,0.0845678,0.925643,0.953554,0.918209,0.981242,0.604077,0.727813,0.110117,0.3059,0.532597,0.850173,0.000951946,0.830024,0.844074,0.690007,0.4122,0.93229,0.37699,0.519609,0.872282,0.287551,0.864313,0.72496,0.827616,0.553874,0.150195,0.862391,0.106325,0.0262177,0.47655,0.551257,0.17055,0.68814,0.737904,0.810873,0.214664,0.490599,0.268847,0.174574,0.635292,0.552024,0.0485664,0.64199,0.109489,0.26483,0.830133,0.379436,0.25917,0.905064,0.811434,0.952778,0.125087,0.781374,0.750359,0.504962,0.32849,0.749654,0.759044,0.24928,0.163576,0.234536,0.277173,0.438351,0.578099,0.520034,0.696744,0.239463,0.897796,0.825431,0.00598091,0.527497,0.507234,0.616822,0.00671095,0.331842,0.34437,0.319428,0.073255,0.710216,0.63427,0.665489,0.347997,0.595221,0.698916,0.285992,0.565992,0.462367,0.0734117,0.233602,0.336903,0.0925437,0.0915651,0.759205,0.0497568,0.776288,0.894041,0.979336,0.802049,0.697579,0.132914,0.33482,0.380738,0.263373,0.941635,0.234786,0.212467,0.488695,0.749804,0.935729,0.0388235,0.821485,0.354037,0.375665,0.354614,0.735846,0.153857,0.825052,0.734614,0.243927,0.768759,0.893798,0.174368,0.963586,0.69809,0.262944,0.941726,0.128267,0.244514,0.811726,0.483675,0.343201,0.830086,0.263101,0.762391,0.25435,0.637353,0.406885,0.857145,0.404386,0.265887,0.38906,0.423814,0.888866,0.280489,0.837783,0.512753,0.941418,0.0701395,0.398105,0.275843,0.335993,0.0685269,0.61141,0.667198,0.827229,0.308438,0.210137,0.33389,0.60449,0.158156,0.768013,0.0741686,0.81412,0.906139,0.524342,0.481869,0.209269,0.15014,0.761287,0.0182808,0.965268,0.504174,0.228729,0.873624,0.680658,0.471456,0.448973,0.699973,0.258402,0.357734,0.450427,0.915303,0.361724,0.275368,0.65381,0.0412362,0.502019,0.292772,0.772811,0.941261,0.934393,0.666098,0.125283,0.707818,0.364623,0.850651,0.740006,0.617419,0.864525,0.934973,0.59094,0.886572,0.2663,0.570267,0.0202616,0.635641,0.405898,0.629513,0.110375,0.91502,0.417689,0.218275,0.637946,0.694018,0.529175,0.676402,0.224635,0.904806,0.452472,0.497891,0.835944,0.934825,0.394718,0.929575,0.121353,0.951114,0.626246,0.273548,0.660263,0.579322,0.0266557,0.459417,0.263036,0.318922,0.717275,0.421272,0.953081,0.700977,0.516602,0.142501,0.864388,0.260682,0.920677,0.200772,0.368323,0.252436,0.794928,0.0239381,0.426558,0.172811,0.870916,0.879641,0.12641,0.971793,0.368134,0.817556,0.0435496,0.755086,0.292153,0.846064,0.602883,0.302257,0.178645,0.985884,0.0308744,0.154186,0.790168,0.188819,0.325633,0.795402,0.0667769,0.553006,0.939275,0.471049,0.831057,0.230343,0.397809,0.854309,0.535611,0.973204,0.150525,0.0635889,0.776942,0.296668,0.74273,0.218624,0.773069,0.0211441,0.787647,0.92669,0.0868433,0.263379,0.649389,0.519358,0.765435,0.507149,0.224332,0.853696,0.862778,0.00899202,0.399974,0.885161,0.781275,0.0193408,0.142644,0.972021,0.441205,0.977392,0.599379,0.289802,0.657357,0.602105,0.529229,0.89696,0.907814,0.672269,0.34599,0.803651,0.359056,0.534393,0.750204,0.738025,0.0933567,0.338879,0.988408,0.804511,0.60057,0.515956,0.0702903,0.0955936,0.65163,0.46331,0.739107,0.276005,0.241807,0.239872,0.069203,0.93609,0.941658,0.287927,0.87556,0.892051,0.427443,0.856515,0.830412,0.486099,0.260169,0.856657,0.70771,0.807918,0.204567,0.598613,0.297256,0.600605,0.216327,0.883094,0.676876,0.159581,0.134567,0.588573,0.744281,0.00670236,0.871838,0.872015,0.22535,0.486966,0.611799,0.376734,0.318565,0.100358,0.210774,0.983293,0.63223,0.123254,0.281629,0.759584,0.236807,0.214091,0.609897,0.551374,0.113925,0.690022,0.635131,0.484985,0.118493,0.192086,0.68773,0.749085,0.716208,0.32956,0.243314,0.217469,0.931255,0.473604,0.0275179,0.026653,0.7558,0.773975,0.364807,0.074904,0.758987,0.754574,0.0240711,0.278536,0.359243,0.766606,0.728513,0.145434,0.7422,0.984449,0.347741,0.717056,0.345767,0.284032,0.53394,0.202996,0.82069,0.554802,0.957344,0.343322,0.222659,0.540907,0.555686,0.691307,0.319341,0.0533402,0.359005,0.486273,0.0302238,0.894877,0.960294,0.307746,0.481478,0.0538937,0.417655,0.84527,0.476054,0.0851756,0.0832323,0.990795,0.998525,0.8217,0.254638,0.265121,0.901514,0.19827,0.656047,0.984308,0.169203,0.017229,0.673036,0.88874,0.486829,0.950095,0.983486,0.183206,0.927302,0.552354,0.630488,0.958025,0.243823,0.313767,0.432408,0.659859,0.936151,0.20901,0.307541,0.039184,0.112744,0.469423,0.485973,0.849719,0.918889,0.116585,0.544173,0.607506,0.28814,0.856412,0.630276,0.668051,0.00334764,0.191068,0.256397,0.762752,0.0137616,0.374438,0.576698,0.606436,0.679655,0.852434,0.528859,0.023408,0.265429,0.277095,0.997354,0.588613,0.352973,0.423443,0.841065,0.948067,0.909378,0.0459269,0.831657,0.814392,0.263243,0.941172,|0.125061,0.395181,0.353377,0.286046,0.0506673,0.363657,0.702745,0.0903526,0.543081,0.955761,0.313547,0.633181,0.892139,0.845793,0.754037,0.903327,0.18959,0.531068,0.613011,0.727796,0.618622,0.715302,0.799099,0.956616,0.459042,0.21483,0.791548,0.922244,0.419431,0.138275,0.177681,0.732735,0.425071,0.00144529,0.311459,0.829889,0.266023,0.744934,0.95578,0.69967,0.278795,0.898966,0.494368,0.354242,0.813839,0.975718,0.290033,0.7715,0.966759,0.660218,0.00514805,0.871936,0.845032,0.656894,0.81556,0.179288,0.520116,0.781305,0.878429,0.0853066,0.00341576,0.535942,0.755658,0.101817,0.810765,0.776544,0.692523,0.386168,0.318058,0.402732,0.178299,0.584274,0.540393,0.898768,0.930247,0.11284,0.642116,0.29093,0.168217,0.0371674,0.489389,0.0205835,0.230316,0.506788,0.751495,0.214925,0.63023,0.886525,0.189255,0.392474,0.0766516,0.280988,0.707505,0.558448,0.744262,0.0772055,0.65095,0.526864,0.280456,0.103829,0.237929,0.777921,0.0885407,0.273644,0.417993,0.403851,0.238338,0.0026831,0.507074,0.261557,0.779989,0.423397,0.889388,0.226834,0.324763,0.613059,0.555654,0.985936,0.805068,0.375896,0.483401,0.322466,0.756797,0.833392,0.916519,0.970326,0.443488,0.934028,0.321112,0.623432,0.103005,0.722861,0.720493,0.721862,0.786959,0.80253,0.444882,0.344907,0.286597,0.652852,0.0115629,0.0722564,0.212851,0.301022,0.45299,0.268568,0.0454127,0.925096,0.363773,0.233141,0.993326,0.843867,0.408652,0.549314,0.294646,0.438544,0.547419,0.0680318,0.722788,0.96027,0.754881,0.811759,0.248488,0.887848,0.915145,0.554244,0.251157,0.776456,0.974673,0.415818,0.0835956,0.294854,0.335118,0.197978,0.88413,0.106297,0.644766,0.369697,0.791164,0.157474,0.648901,0.46626,0.552968,0.24443,0.467802,0.566467,0.770952,0.889703,0.78458,0.790264,0.773679,0.136751,0.0610246,0.286781,0.473325,0.79226,0.901376,0.910426,0.501867,0.14387,0.632596,0.685883,0.883635,0.424554,0.483154,0.95415,0.762681,0.884193,0.090672,0.554005,0.234509,0.0340657,0.203979,0.93522,0.116311,0.0768545,0.97599,0.369399,0.448401,0.358534,0.103521,0.829427,0.736704,0.786519,0.433684,0.911838,0.97129,0.859403,0.655656,0.823622,0.450913,0.595189,0.619975,0.243979,0.644706,0.615596,0.401013,0.437027,0.705659,0.0200914,0.829009,0.00348645,0.155439,0.0885435,0.252922,0.62396,0.626181,0.471147,0.110278,0.243267,0.73322,0.745763,0.232134,0.972832,0.457455,0.246624,0.306844,0.992535,0.688321,0.875672,0.459149,0.698067,0.807463,0.960537,0.289619,0.971422,0.934321,0.279717,0.946168,0.440351,0.155247,0.635187,0.0392777,0.197769,0.113771,0.493934,0.709366,0.229621,0.587072,0.252802,0.631212,0.45368,0.0755752,0.138259,0.0940154,0.942066,0.526558,0.235202,0.857901,0.388967,0.439394,0.365842,0.728566,0.498055,0.93494,0.667819,0.382536,0.851404,0.945859,0.98187,0.618505,0.660219,0.519456,0.203108,0.0170896,0.830611,0.115457,0.388271,0.409134,0.0689777,0.211,0.779397,0.555727,0.655843,0.702266,0.700724,0.309134,0.215159,0.116324,0.656204,0.704373,0.0364001,0.213276,0.903616,0.980885,0.420633,0.362422,0.266978,0.692766,0.0806863,0.943866,0.70852,0.855696,0.959309,0.742157,0.0665579,0.0643817,0.892101,0.261141,0.0400605,0.63022,0.243015,0.019637,0.080296,0.606921,0.426813,0.616081,0.332658,0.644423,0.480352,0.170432,0.409635,0.253316,0.627799,0.373239,0.8773,0.722099,0.0831971,0.989741,0.67106,0.214786,0.901096,0.575162,0.632137,0.880662,0.894956,0.485712,0.481754,0.821318,0.158695,0.356513,0.7872,0.118553,0.905294,0.803389,0.178449,0.164282,0.925198,0.103259,0.120465,0.131738,0.144418,0.803716,0.837963,0.986874,0.318512,0.973143,0.601253,0.991674,0.458287,0.0413877,0.766289,0.260948,0.853421,0.606033,0.437089,0.917121,0.351872,0.0263404,0.554001,0.745905,0.820274,0.807955,0.625183,0.933749,0.384959,0.707694,0.577177,0.578372,0.79504,0.73501,0.155219,0.385558,0.477128,0.123674,0.86207,0.210634,0.776853,0.200829,0.272784,0.541004,0.879554,0.828817,0.646722,0.861203,0.779174,0.857476,0.165049,0.971044,0.53509,0.029686,0.53447,0.441323,0.780684,0.283467,0.544361,0.933365,0.770247,0.266359,0.0762696,0.104185,0.106392,0.886556,0.0460421,0.619394,0.749703,0.604193,0.762124,0.415001,0.237237,0.134941,0.412467,0.100633,0.0188244,0.444456,0.397658,0.0476595,0.929964,0.289293,0.0297609,0.0367591,0.382793,0.601686,0.765326,0.54111,0.460824,0.990223,0.917279,0.679063,0.388254,0.0284926,0.947048,0.511054,0.131922,0.67915,0.604578,0.1505,0.523004,0.357593,0.694812,0.0820749,0.840277,0.684366,0.0946252,0.766595,0.538313,0.42721,0.187377,0.692991,0.734296,0.523758,0.740901,0.694472,0.479703,0.465606,0.226493,0.540455,0.215548,0.568668,0.855561,0.340569,0.19441,0.188113,0.661586,0.501242,0.558415,0.69737,0.104501,0.586201,0.104523,0.753436,0.642895,0.0767601,0.959411,0.271671,0.794329,0.519712,0.629715,0.601844,0.253448,0.593809,0.567926,0.865714,0.988171,0.77185,0.461335,0.939295,0.030454,0.119883,0.0551406,0.235781,0.922427,0.836913,0.272171,0.992081,0.340638,0.449764,0.533655,0.782348,0.52703,0.47467,0.753709,0.629849,0.889227,0.961961,0.575632,0.140105,0.193903,0.563314,0.022302,0.124188,0.553544,0.209537,0.02266,0.104451,0.845382,0.172634,0.233077,0.386387,0.493978,0.271855,0.815917,0.311724,0.632542,0.748934,0.829281,0.493572,0.310954,0.357759,0.717188,0.824316,0.685415,0.0548239,0.262131,0.909645,0.875034,0.767794,0.185966,0.464301,0.704593,0.27372,0.493826,0.615347,0.816289,0.78188,0.493964,0.498011,0.0630892,0.353625,0.0278966,0.0911415,0.191025,0.761035,0.535219,0.121307,0.508355,0.404114,0.794919,0.825258,0.459138,0.682178,0.603553,0.892283,0.940446,0.667455,0.187787,0.924411,0.0674576,0.470747,0.33723,0.760092,0.164066,0.112589,0.985837,0.949358,0.0583636,0.598806,0.905731,0.549327,0.524943,0.109132,0.657117,0.386075,0.0598308,0.114597,0.915199,0.711696,0.524622,0.561606,0.507941,0.271937,0.164093,0.330867,0.923108,0.489478,0.287302,0.299488,0.632022,0.527894,0.281653,0.950813,0.282121,0.206855,0.31657,0.846307,0.236584,0.132419,0.497098,0.748839,0.100695,0.671933,0.693815,0.945719,0.98065,0.050633,0.718015,0.407133,0.6142,0.637681,0.266737,0.273434,0.538689,0.379548,0.881379,0.896059,0.204509,0.539493,0.694711,0.31055,0.697579,0.804607,0.824609,0.752797,0.200177,0.774959,0.174034,0.856928,0.0858621,0.715828,0.00294238,0.190801,0.919633,0.566026,0.800276,0.22576,0.456833,0.618448,0.466406,0.58931,0.299594,0.71711,0.809062,0.0260656,0.994837,0.817411,0.317375,0.499738,0.238169,0.263743,0.464604,0.00132626,0.808197,0.13746,0.743532,0.218701,0.959099,0.919763,0.470206,0.386469,0.42306,0.507531,0.628212,0.785533,0.198013,0.650454,0.414389,0.511032,0.943895,0.32703,0.7263,0.120532,0.230925,0.475516,0.204576,0.638319,0.976705,0.651524,0.033082,0.585213,0.532136,0.432657,0.797088,0.392607,0.814841,0.852976,0.405668,0.409087,0.949772,0.700066,0.449638,0.622338,0.982021,0.92025,0.555252,0.456072,0.39229,0.180538,0.963578,0.0169251,0.29663,0.309233,0.546181,0.471012,0.530293,0.905849,0.0430205,0.287439,0.404336,0.15154,0.314648,0.387691,0.301004,0.413095,0.330474,0.339878,0.235384,0.72642,0.411969,0.181425,0.749132,0.389407,0.325127,0.113903,0.465189,0.0601876,0.828205,0.135094,0.196524,0.225175,0.896309,0.636102,0.121353,0.0342908,0.00154132,0.811566,0.975684,0.577137,0.817677,0.933638,0.143408,0.904453,0.407839,0.0982708,0.65909,0.111856,0.73687,0.782823,0.696849,0.670049,0.144206,0.0375838,0.00452626,0.796188,0.908438,0.946868,0.351719,0.150623,0.408845,0.11435,0.548718,0.622515,0.776169,0.802471,0.906055,0.963877,0.614028,0.980989,0.137487,0.442625,0.289237,0.760049,0.208754,0.898463,0.0794951,0.158658,0.29652,0.507195,0.592966,0.219458,0.768065,0.150405,0.507496,0.413665,0.128883,0.672255,0.206115,0.309344,0.258423,0.275049,0.608535,0.134976,0.447954,0.0558744,0.171107,0.513213,0.86054,0.601203,0.0680126,0.463561,0.344134,0.636428,0.0416967,0.892197,0.692955,0.863192,0.678647,0.197219,0.762207,0.0117901,0.230422,0.456336,0.699858,0.854071,0.90627,0.490047,0.76832,0.00796378,0.88786,0.812793,0.952402,0.502785,0.0547484,0.997923,0.754351,0.61056,0.585033,0.788302,0.109544,0.559675,0.150273,0.690541,0.100038,0.284406,0.556136,0.663702,0.707532,0.892049,0.406084,0.870258,0.875316,0.985017,0.282179,0.00216067,0.861582,0.347229,0.683266,0.37258,0.261528,0.369403,0.742739,0.755609,0.605372,0.611207,0.707395,0.492825,0.865155,0.602706,0.976648,0.866228,0.779342,0.394934,0.417984,0.0302175,0.581624,0.926572,0.551634,0.573344,0.892921,0.884246,0.681131,0.793617,0.331059,0.900056,0.259061,0.0279797,0.63059,0.217211,0.687243,0.199707,0.864582,0.320441,0.296498,0.925606,0.586088,0.390519,0.580214,0.674922,0.423686,0.148269,0.470641,0.340601,0.512889,0.531218,0.189061,0.554277,0.958712,0.0763369,0.365949,0.0360186,0.998733,0.497651,0.734992,0.378761,0.0416507,0.768453,0.886825,0.427622,0.127231,0.574348,0.451225,0.203919,0.406087,0.361435,0.953431,0.128702,0.392419,0.833681,0.466588,0.633178,0.183791,0.192618,0.309158,0.543619,0.228269,0.55733,0.532952,0.302723,0.985851,0.144841,0.21564,0.164795,0.474235,0.439156,0.87522,0.67553,0.768066,0.370252,0.172071,0.910099,0.939889,0.330803,0.812672,0.643298,0.66968,0.806249,0.901806,0.717109,0.20448,0.981051,0.493242,|0.554738,0.713492,0.0262824,0.24868,0.216469,0.767402,0.468446,0.454185,0.242956,0.0824703,0.719883,0.588993,0.181065,0.514268,0.0277103,0.836422,0.310256,0.999321,0.215057,0.404057,0.510169,0.43858,0.13215,0.0911189,0.66397,0.564004,0.751954,0.332504,0.571942,0.0736112,0.532214,0.681538,0.613044,0.694162,0.0682559,0.514697,0.345269,0.152757,0.510054,0.874368,0.883052,0.967725,0.190784,0.950003,0.224008,0.142207,0.864617,0.149965,0.156754,0.350233,0.51347,0.987587,0.988842,0.687149,0.331682,0.69785,0.836034,0.177427,0.788734,0.332108,0.286425,0.0210122,0.434297,0.487439,0.871509,0.874912,0.573612,0.942951,0.384292,0.356914,0.262801,0.502315,0.373723,0.264321,0.492376,0.993591,0.562219,0.904022,0.369848,0.112587,0.398144,0.505237,0.748901,0.162414,0.492252,0.0113779,0.620288,0.513426,0.0684216,0.0567042,0.0480364,0.851094,0.349677,0.861694,0.127718,0.181511,0.802156,0.193761,0.849562,0.479607,0.825595,0.521364,0.611432,0.780098,0.584245,0.249916,0.555868,0.586803,0.679816,0.353636,0.612111,0.914199,0.490211,0.589032,0.0359335,0.817303,0.366143,0.47969,0.739721,0.761349,0.855656,0.917695,0.557554,0.503056,0.343646,0.0294579,0.735587,0.186332,0.0478558,0.266341,0.785659,0.695095,0.543632,0.0483051,0.356122,0.323214,0.749306,0.0776621,0.140598,0.55443,0.0273366,0.789161,0.797555,0.787146,0.331547,0.61661,0.479448,0.297606,0.124541,0.095537,0.671815,0.433839,0.207803,0.611838,0.140145,0.609866,0.985003,0.571016,0.110182,0.011808,0.771649,0.100079,0.493647,0.658944,0.856613,0.334539,0.25585,0.358083,0.925484,0.0145476,0.595533,0.968189,0.141277,0.521082,0.622601,0.0325183,0.872607,0.967342,0.853778,0.458053,0.105534,0.145891,0.622646,0.213693,0.831398,0.522362,0.900014,0.683816,0.925453,0.232871,0.0338401,0.7354,0.0105018,0.0521212,0.647627,0.389499,0.361512,0.74534,0.167657,0.924262,0.449337,0.182348,0.633916,0.113929,0.69811,0.675404,0.415755,0.575958,0.596871,0.811052,0.584797,0.896604,0.028194,0.138905,0.147945,0.532878,0.685536,0.110994,0.172175,0.528175,0.635387,0.504692,0.699976,0.820467,0.0759876,0.158499,0.805127,0.225216,0.162468,0.250992,0.812755,0.35381,0.184567,0.098722,0.508652,0.184904,0.377175,0.76474,0.87533,0.70767,0.518146,0.804924,0.266482,0.282517,0.702531,0.669027,0.497169,0.0881871,0.92027,0.69951,0.0270261,0.570896,0.894666,0.691537,0.813706,0.710287,0.778552,0.23042,0.960002,0.653152,0.70862,0.697346,0.906226,0.112085,0.873496,0.274868,0.468354,0.975898,0.506245,0.512262,0.0363251,0.123415,0.270558,0.142521,0.362549,0.69778,0.224605,0.88323,0.576719,0.2228,0.314936,0.606512,0.089689,0.798006,0.249919,0.113253,0.399838,0.926631,0.745923,0.477861,0.201269,0.852167,0.0438617,0.153189,0.477767,0.657466,0.774538,0.643054,0.560232,0.998354,0.916328,0.656344,0.870501,0.0279223,0.332479,0.87128,0.685199,0.119621,0.0858111,0.136812,0.812964,0.680364,0.563358,0.420184,0.831341,0.868812,0.288351,0.3293,0.930341,0.94605,0.735145,0.0669677,0.607254,0.0962601,0.499272,0.354763,0.344351,0.214732,0.988301,0.505704,0.888635,0.527539,0.463591,0.54932,0.0277371,0.777963,0.3508,0.245814,0.000346363,0.988085,0.164202,0.316626,0.446646,0.395794,0.938734,0.586296,0.511257,0.830915,0.254038,0.995658,0.847889,0.0490306,0.479772,0.264488,0.103537,0.751686,0.127176,0.441589,0.377347,0.17087,0.543833,0.429875,0.591532,0.465172,0.810551,0.188494,0.496817,0.267032,0.170883,0.500444,0.532224,0.846422,0.722146,0.259531,0.565674,0.222373,0.0918211,0.816158,0.511499,0.854934,0.830285,0.847327,0.469707,0.516092,0.687623,0.148914,0.946306,0.531894,0.744908,0.806996,0.988898,0.0275103,0.966373,0.286947,0.768779,0.869872,0.156276,0.952495,0.446283,0.444087,0.577208,0.0939782,0.0679798,0.59639,0.138679,0.329509,0.936981,0.321961,0.220426,0.884573,0.984763,0.791027,0.875587,0.737009,0.409888,0.653567,0.77001,0.799945,0.466165,0.538849,0.427253,0.692244,0.950092,0.16191,0.421095,0.201816,0.254431,0.364695,0.146208,0.978622,0.89807,0.891014,0.971437,0.605557,0.517618,0.257557,0.851345,0.0947137,0.984567,0.164787,0.189815,0.925405,0.759768,0.701313,0.720242,0.183091,0.361185,0.372217,0.105242,0.0342575,0.748179,0.881527,0.984799,0.372681,0.655119,0.314915,0.366057,0.26209,0.433857,0.91849,0.0527064,0.784825,0.95346,0.30119,0.481111,0.195185,0.120777,0.413339,0.394798,0.414329,0.370968,0.324322,0.518768,0.648772,0.259199,0.112144,0.522295,0.825992,0.293413,0.110808,0.137905,0.95563,0.307294,0.107561,0.541774,0.712909,0.399822,0.918871,0.35245,0.0643022,0.173665,0.742108,0.40789,0.671435,0.330172,0.510838,0.762843,0.938362,0.143376,0.611724,0.810929,0.386701,0.190701,0.188147,0.855746,0.166882,0.907298,0.693279,0.204138,0.492395,0.278503,0.0754996,0.969939,0.96252,0.108491,0.681781,0.72436,0.909104,0.220347,0.620147,0.727104,0.475502,0.935705,0.431004,0.812683,0.209544,0.299655,0.59521,0.559582,0.744856,0.104566,0.300437,0.749948,0.0202917,0.675791,0.780934,0.416152,0.559842,0.523449,0.661755,0.341904,0.72146,0.764778,0.592921,0.37872,0.961234,0.867716,0.198887,0.47613,0.946135,0.154299,0.792306,0.280523,0.64816,0.423306,0.76593,0.430496,0.0373865,0.752127,0.12207,0.209758,0.39049,0.959479,0.271772,0.566878,0.628162,0.156778,0.340242,0.414281,0.914465,0.896565,0.174831,0.874065,0.404354,0.718989,0.746839,0.0289705,0.129507,0.769805,0.107969,0.209757,0.0690584,0.825978,0.244419,0.821583,0.720699,0.181764,0.872432,0.916624,0.680646,0.163118,0.328701,0.177595,0.0813217,0.360635,0.918096,0.00330597,0.794858,0.873256,0.415227,0.715767,0.505426,0.238218,0.146345,0.517284,0.308949,0.859632,0.0633241,0.70433,0.693616,0.352149,0.201724,0.146766,0.681941,0.896158,0.679148,0.449604,0.768915,0.689392,0.428006,0.197643,0.757688,0.747715,0.133089,0.707601,0.18163,0.0457872,0.0622909,0.496361,0.716747,0.742143,0.989043,0.482879,0.116759,0.0758209,0.0367113,0.162287,0.160353,0.659876,0.684113,0.212761,0.990978,0.835756,0.593865,0.271099,0.0125378,0.260945,0.718111,0.127145,0.0465471,0.941061,0.749732,0.900858,0.745674,0.422742,0.596148,0.82873,0.211799,0.908963,0.483816,0.477538,0.441588,0.813513,0.536565,0.893808,0.14962,0.894614,0.891503,0.11862,0.339612,0.707489,0.889636,0.593635,0.362726,0.607922,0.448131,0.450489,0.404795,0.813403,0.13117,0.584563,0.941182,0.645825,0.0217441,0.171123,0.102256,0.734289,0.219657,0.126735,0.111946,0.226902,0.538914,0.322738,0.619075,0.908374,0.646723,0.168475,0.505426,0.11888,0.829838,0.630176,0.648615,0.756176,0.686225,0.957206,0.833098,0.169139,0.064191,0.963103,0.174394,0.450703,0.0617244,0.184305,0.975074,0.270225,0.670206,0.782651,0.331199,0.0178843,0.390853,0.30375,0.209997,0.890015,0.302279,0.486252,0.580791,0.167453,0.211483,0.254854,0.336739,0.43588,0.904476,0.0191683,0.434811,0.306688,0.965604,0.710875,0.552431,0.311379,0.613321,0.844264,0.579438,0.74849,0.0157121,0.165936,0.286229,0.5402,0.713644,0.492071,0.750454,0.646206,0.605084,0.252583,0.276531,0.554178,0.0804762,0.405497,0.816936,0.15052,0.481306,0.472573,0.526234,0.0147541,0.333456,0.0333155,0.807458,0.0154508,0.42888,0.654222,0.523489,0.666764,0.419686,0.41672,0.0224528,0.453993,0.885395,0.235694,0.531821,0.732907,0.476364,0.48852,0.135731,0.0182874,0.820227,0.33498,0.647698,0.260682,0.700794,0.947052,0.724608,0.527249,0.149852,0.258951,0.80567,0.654114,0.743981,0.0632262,0.503398,0.439379,0.733672,0.862912,0.289462,0.0564238,0.195413,0.650205,0.847319,0.650311,0.265442,0.190223,0.21246,0.987966,0.0727201,0.515002,0.737518,0.206059,0.191138,0.972308,0.557071,0.438061,0.689283,0.0451868,0.83514,0.230596,0.716464,0.904138,0.973574,0.113755,0.636889,0.504148,0.0232117,0.638438,0.903124,0.977029,0.136545,0.329586,0.961412,0.0673877,0.100911,0.575205,0.128816,0.75347,0.963532,0.543999,0.518688,0.626207,0.966644,0.314461,0.519827,0.956631,0.0673977,0.342594,0.725011,0.73002,0.971531,0.177683,0.794232,0.342511,0.398904,0.290928,0.239534,0.921848,0.741122,0.0311893,0.697044,0.821129,0.520081,0.111284,0.52109,0.290669,0.180895,0.296796,0.120017,0.134128,0.0132239,0.125488,0.196141,0.284314,0.959323,0.673953,0.776657,0.721023,0.835066,0.236659,0.307252,0.505998,0.934615,0.308283,0.892681,0.897612,0.508172,0.537777,0.0933349,0.828626,0.145029,0.133997,0.453344,0.674419,0.315944,0.470824,0.710856,0.272371,0.207833,0.895945,0.794548,0.226373,0.955981,0.103701,0.261976,0.765558,0.284003,0.750307,0.231716,0.279781,0.232283,0.574579,0.753247,0.1996,0.96335,0.920717,0.650497,0.986135,0.921845,0.419657,0.845137,0.199577,0.795472,0.298994,0.11841,0.726679,0.637391,0.441612,0.0465484,0.95021,0.93067,0.459322,0.228959,0.0149435,0.637765,0.415672,0.900947,0.766251,0.804722,0.498936,0.868496,0.557086,0.012522,0.202677,0.579661,0.78149,0.0394106,0.38056,0.000797749,0.704704,0.140087,0.508709,0.448058,0.8114,0.212793,0.986355,0.852111,0.758498,0.89033,0.385343,0.263827,0.510398,0.848297,0.242756,0.153204,0.322704,0.0959886,0.710696,0.818041,0.53237,0.825741,0.982887,0.850538,0.51538,0.608824,0.761296,0.4275,0.726355,0.0543784,0.16013,0.0412207,0.180468,0.572958,0.413957,0.424013,0.105002,0.0527155,0.817336,0.527147,0.878666,0.51141,0.241548,0.573647,0.488545,0.518217,0.946745,0.065334,|0.23289,0.233682,0.251991,0.475089,0.87705,0.508024,0.430798,0.241343,0.522474,0.0291406,0.774198,0.541931,0.0946864,0.0383719,0.389695,0.227086,0.347233,0.511534,0.839137,0.223775,0.171385,0.145867,0.167231,0.560799,0.330294,0.418281,0.637116,0.873335,0.340658,0.978719,0.387171,0.263459,0.165063,0.154152,0.720639,0.755978,0.140561,0.483428,0.569838,0.189231,0.836088,0.792106,0.221848,0.607939,0.0856969,0.147271,0.32367,0.534197,0.460642,0.394177,0.814886,0.402042,0.0671522,0.202039,0.42527,0.520195,0.0719022,0.666323,0.510464,0.265534,0.880034,0.974658,0.959714,0.49907,0.0128402,0.185099,0.985341,0.805499,0.778913,0.351643,0.411621,0.96107,0.571777,0.621703,0.108886,0.223557,0.794313,0.757489,0.732316,0.803715,0.10284,0.0897157,0.919717,0.181771,0.284945,0.484717,0.129054,0.84585,0.841025,0.925939,0.506165,0.770986,0.826668,0.952376,0.0363297,0.431886,0.792438,0.763958,0.284913,0.399597,0.913925,0.231615,0.79847,0.736592,0.244783,0.926259,0.624871,0.930765,0.267016,0.352386,0.920651,0.0970506,0.408156,0.892241,0.800729,0.0691375,0.303824,0.243597,0.625391,0.73925,0.963189,0.670238,0.964892,0.657812,0.186928,0.226923,0.548647,0.821899,0.62702,0.746577,0.437032,0.958443,0.791095,0.101954,0.0923746,0.975543,0.435981,0.451894,0.986621,0.455096,0.558049,0.351116,0.685876,0.53648,0.096824,0.509247,0.439859,0.976382,0.435263,0.142194,0.858087,0.205674,0.69969,0.871393,0.389179,0.294233,0.198137,0.860421,0.961532,0.594096,0.0827308,0.684669,0.678342,0.176151,0.10369,0.768683,0.129308,0.704686,0.170352,0.174224,0.564766,0.706326,0.183967,0.936293,0.452424,0.841214,0.788378,0.566255,0.302759,0.664715,0.350065,0.064971,0.638461,0.137649,0.418148,0.533765,0.578368,0.241403,0.363539,0.405805,0.920426,0.418514,0.167408,0.139791,0.506665,0.640443,0.624636,0.936273,0.421718,0.0904682,0.127807,0.235249,0.0172398,0.776013,0.0102582,0.72424,0.833992,0.66366,0.0400805,0.550212,0.986952,0.344993,0.0158935,0.0637125,0.189226,0.476019,0.651303,0.686932,0.799807,0.979247,0.767211,0.350326,0.0506784,0.981802,0.184442,0.362127,0.594246,0.468906,0.835294,0.202742,0.732886,0.131317,0.927751,0.443396,0.909478,0.983251,0.796364,0.658407,0.351824,0.735766,0.799941,0.673932,0.825529,0.473641,0.00794244,0.526523,0.778113,0.0471493,0.0997425,0.0782799,0.415378,0.372921,0.953072,0.730379,0.490759,0.856926,0.438479,0.617433,0.457456,0.030637,0.268905,0.62494,0.205678,0.905273,0.943836,0.984553,0.18575,0.731393,0.889355,0.765982,0.692228,0.139696,0.0162775,0.499133,0.0101708,0.474662,0.644386,0.385287,0.826144,0.900471,0.525904,0.162437,0.0412581,0.0371989,0.568899,0.150999,0.127872,0.226349,0.408086,0.60114,0.77066,0.640076,0.135654,0.865941,0.0205812,0.222509,0.135562,0.844337,0.91455,0.627993,0.465499,0.942232,0.628377,0.843114,0.860562,0.527618,0.119256,0.479884,0.134204,0.384469,0.39886,0.634146,0.387944,0.219281,0.102675,0.908135,0.220144,0.617009,0.644381,0.00310379,0.340659,0.0532031,0.089533,0.759119,0.06993,0.0593549,0.728274,0.762816,0.278514,0.723696,0.0984843,0.65861,0.970805,0.938034,0.477148,0.0450084,0.312598,0.53985,0.259441,0.943904,0.825949,0.310004,0.80031,0.648154,0.972211,0.708008,0.546677,0.446573,0.995147,0.920898,0.9401,0.326951,0.827415,0.0655465,0.966623,0.329875,0.831206,0.157494,0.681514,0.573166,0.313662,0.0513086,0.343518,0.981515,0.144846,0.67304,0.0487131,0.051024,0.440592,0.07572,0.159423,0.157972,0.67778,0.942081,0.0211934,0.323056,0.890499,0.427905,0.40023,0.181475,0.762161,0.165055,0.306866,0.909782,0.662792,0.438946,0.556309,0.544218,0.730361,0.96529,0.705498,0.502428,0.733895,0.0792156,0.688093,0.985284,0.776165,0.806126,0.913207,0.561495,0.820765,0.0639772,0.674135,0.770718,0.259975,0.960659,0.634517,0.785627,0.21967,0.207102,0.800846,0.173197,0.264391,0.271848,0.685006,0.880972,0.689441,0.369987,0.0437616,0.298114,0.613588,0.678923,0.955292,0.582973,0.214308,0.887807,0.914104,0.547411,0.0924374,0.931184,0.945369,0.753827,0.283561,0.419917,0.217872,0.780203,0.210309,0.980306,0.713547,0.372738,0.794449,0.0229518,0.00753969,0.181113,0.0221742,0.513192,0.143716,0.0133539,0.84485,0.893317,0.812598,0.663009,0.650577,0.936741,0.0591576,0.191228,0.107335,0.698167,0.113304,0.744177,0.0757321,0.536678,0.745276,0.145235,0.495729,0.772429,0.375498,0.47283,0.0540183,0.291019,0.740134,0.175221,0.878066,0.465293,0.724279,0.585284,0.228219,0.10524,0.809432,0.365014,0.18631,0.0863951,0.416691,0.603033,0.0171001,0.345671,0.686705,0.740944,0.963824,0.614891,0.0221298,0.932728,0.514387,0.736685,0.280135,0.703209,0.591866,0.500828,0.641254,0.69733,0.195102,0.756379,0.825297,0.436267,0.137588,0.540947,0.198015,0.027949,0.608774,0.00299031,0.103143,0.574116,0.0686117,0.0501479,0.774705,0.487563,0.631882,0.564434,0.981871,0.718579,0.267084,0.917814,0.876924,0.561543,0.611554,0.867084,0.693437,0.127217,0.0858289,0.936736,0.598417,0.0678996,0.749074,0.992031,0.52676,0.528684,0.130831,0.505286,0.904455,0.711601,0.0665436,0.886378,0.393683,0.613012,0.860378,0.705125,0.814667,0.547642,0.955328,0.426999,0.472598,0.856726,0.342106,0.0814532,0.0371009,0.556667,0.138089,0.781899,0.340536,0.922503,0.076148,0.46861,0.625435,0.202592,0.221474,0.252668,0.615384,0.0662272,0.649289,0.459301,0.739299,0.0432779,0.119445,0.211673,0.764041,0.648222,0.894821,0.461941,0.695824,0.850804,0.502299,0.984346,0.646624,0.1531,0.140739,0.357861,0.527108,0.139973,0.715071,0.0209195,0.371706,0.951463,0.919061,0.360873,0.209075,0.480272,0.372301,0.390554,0.408281,0.460106,0.0310465,0.332618,0.00424898,0.939515,0.342153,0.127399,0.615116,0.60029,0.611874,0.146434,0.610608,0.478245,0.531578,0.768449,0.715495,0.335882,0.843637,0.361564,0.373665,0.376733,0.582026,0.726742,0.686472,0.908549,0.843807,0.106782,0.651737,0.0151273,0.00186568,0.622189,0.26395,0.0594909,0.676347,0.6895,0.156124,0.193053,0.826565,0.842523,0.498949,0.25515,0.177594,0.632811,0.416247,0.637878,0.515144,0.467577,0.985986,0.0975236,0.400204,0.913004,0.454406,0.684441,0.847246,0.280598,0.168492,0.271701,0.953312,0.253802,0.387979,0.699711,0.68309,0.729412,0.68145,0.755094,0.519235,0.0959511,0.472009,0.771402,0.767141,0.961829,0.767409,0.625278,0.456531,0.999669,0.634764,0.150993,0.256675,0.556541,0.897626,0.0519946,0.641777,0.347238,0.387788,0.881904,0.199246,0.828326,0.809444,0.565629,0.396213,0.730645,0.295509,0.525976,0.0897034,0.24256,0.416196,0.460037,0.722273,0.556722,0.656952,0.819758,0.751393,0.781092,0.355426,0.520053,0.17728,0.864957,0.154088,0.561414,0.490071,0.138605,0.883914,0.19832,0.318579,0.71714,0.385557,0.639452,0.890069,0.986284,0.87946,0.68665,0.0883746,0.455383,0.580384,0.104053,0.611619,0.0938119,0.236945,0.138717,0.797118,0.109623,0.24222,0.342243,0.719266,0.0805717,0.81414,0.106212,0.0960307,0.826376,0.0930714,0.344149,0.28587,0.42339,0.874231,0.173823,0.0990491,0.0141695,0.0107433,0.635704,0.271212,0.189745,0.142397,0.378316,0.102883,0.529623,0.834585,0.0368466,0.667746,0.439821,0.699129,0.701758,0.099327,0.206,0.56955,0.791592,0.376705,0.990094,0.431152,0.703364,0.252192,0.90836,0.454261,0.715552,0.39333,0.869854,0.862757,0.858452,0.504498,0.217166,0.178727,0.262634,0.188287,0.726946,0.201242,0.199514,0.142172,0.361716,0.522902,0.381442,0.836628,0.174272,0.416894,0.26828,0.867187,0.598624,0.341157,0.238032,0.206985,0.557068,0.192452,0.42339,0.578265,0.541503,0.30597,0.560118,0.455762,0.988252,0.285296,0.457619,0.888331,0.785058,0.642317,0.952082,0.366385,0.348286,0.381704,0.145422,0.757396,0.497495,0.890132,0.75926,0.316705,0.460271,0.0216244,0.472939,0.443703,0.604543,0.408865,0.606124,0.0540805,0.562882,0.454815,0.526133,0.181758,0.723647,0.029177,0.235385,0.371078,0.109959,0.753168,0.679118,0.404372,0.072362,0.0297188,0.858684,0.207169,0.426471,0.00212157,0.993955,0.447562,0.0325879,0.929174,0.804841,0.85939,0.878748,0.318921,0.534674,0.939872,0.663112,0.249292,0.149439,0.63708,0.484539,0.396183,0.648142,0.85554,0.747887,0.566894,0.0244384,0.409287,0.180632,0.366946,0.825178,0.947759,0.0171163,0.435303,0.864332,0.175971,0.994137,0.529506,0.0657161,0.0153995,0.92031,0.106765,0.00716817,0.424988,0.864984,0.989125,0.0574724,0.049575,0.880012,0.944799,0.465123,0.376092,0.253621,0.637304,0.336675,0.195514,0.582744,0.108724,0.368739,0.0184083,0.950263,0.487438,0.0747494,0.04459,0.835857,0.819896,0.572043,0.770687,0.704248,0.417773,0.718927,0.110979,0.301048,0.845744,0.874383,0.882479,0.164184,0.516726,0.869632,0.603895,0.51595,0.728354,0.515668,0.0279354,0.963726,0.769703,0.881037,0.868342,0.697364,0.466079,0.954342,0.263969,0.423296,0.486152,0.444167,0.38271,0.00246763,0.91536,0.95662,0.888887,0.918738,0.152748,0.880728,0.230485,0.253225,0.646274,0.830269,0.883435,0.885023,0.415325,0.920342,0.181244,0.140788,0.303937,0.945604,0.908399,0.597248,0.84363,0.748589,0.87984,0.511789,0.253102,0.720286,0.412264,0.136376,0.500348,0.0232279,0.302218,0.187441,0.883081,0.811889,0.0293068,0.413594,0.853702,0.19158,0.209347,0.394639,0.651379,0.150263,0.604762,0.382301,0.0647031,0.0543919,0.250899,0.469256,0.911488,0.283032,0.737571,0.318135,0.250492,0.0893055,0.915698,0.340858,0.0407838,0.864404,0.336507,0.163931,0.0963521,0.00455534,|0.925581,0.219474,0.897209,0.126867,0.856781,0.322143,0.905518,0.86115,0.713322,0.0822412,0.581356,0.162559,0.107169,0.361462,0.682882,0.637718,0.472982,0.000686824,0.319812,0.98172,0.653988,0.762159,0.902955,0.410423,0.71625,0.667823,0.0454829,0.880461,0.703456,0.494641,0.88352,0.481518,0.742651,0.280652,0.583302,0.482067,0.279062,0.99358,0.360763,0.0926679,0.913956,0.194123,0.861619,0.0360771,0.1753,0.855518,0.275511,0.70925,0.141202,0.33317,0.888542,0.235498,0.40751,0.27926,0.94966,0.697064,0.597394,0.176874,0.395478,0.598678,0.393879,0.939058,0.381689,0.232175,0.652163,0.365589,0.624866,0.00853682,0.504101,0.000533164,0.37766,0.488946,0.496363,0.243656,0.849208,0.813522,0.0946622,0.728275,0.666192,0.113187,0.791202,0.570296,0.308019,0.773788,0.634568,0.262232,0.219463,0.786556,0.449304,0.267058,0.749094,0.937323,0.634069,0.859532,0.51258,0.77634,0.731008,0.547386,0.511523,0.344749,0.951295,0.314719,0.780999,0.34355,0.855914,0.866721,0.937581,0.0875186,0.198288,0.704724,0.42763,0.397624,0.710287,0.627026,0.114485,0.56267,0.434459,0.700028,0.556527,0.481594,0.125755,0.204346,0.939462,0.173664,0.128565,0.688081,0.158062,0.589499,0.0111502,0.855381,0.546136,0.233682,0.502372,0.465716,0.528243,0.71518,0.795422,0.879413,0.628513,0.9769,0.265443,0.742449,0.877572,0.861107,0.456921,0.369204,0.613246,0.907353,0.709335,0.311052,0.499958,0.211328,0.58515,0.298181,0.495041,0.705171,0.579947,0.558709,0.819548,0.771605,0.860869,0.910945,0.242244,0.403001,0.0309616,0.477397,0.61014,0.0137498,0.416472,0.0563962,0.163385,0.651958,0.0456229,0.422028,0.939838,0.715505,0.00519764,0.569625,0.455746,0.80049,0.790359,0.458271,0.910133,0.148491,0.611225,0.115074,0.964957,0.841197,0.706503,0.32205,0.635218,0.577004,0.174662,0.641698,0.559743,0.542297,0.335381,0.255733,0.898059,0.719829,0.959867,0.544735,0.0508877,0.864905,0.53886,0.0989167,0.914631,0.405599,0.973983,0.883681,0.116838,0.789484,0.267181,0.930226,0.940161,0.443832,0.726548,0.927558,0.506305,0.428677,0.913122,0.0575955,0.450509,0.85279,0.987976,0.0417255,0.0967364,0.806693,0.0873455,0.714632,0.524974,0.500048,0.797248,0.688158,0.408789,0.6584,0.200662,0.106564,0.484132,0.464628,0.211187,0.872979,0.298394,0.597154,0.475909,0.810764,0.436125,0.604806,0.410761,0.0885673,0.136909,0.440799,0.309081,0.354065,0.889994,0.401945,0.649195,0.6148,0.930725,0.992442,0.476552,0.986168,0.511112,0.27514,0.492993,0.324994,0.377252,0.386338,0.142615,0.144014,0.138842,0.499527,0.251859,0.31348,0.292752,0.0721031,0.211966,0.457395,0.63046,0.193844,0.589369,0.501469,0.175268,0.588842,0.152325,0.388014,0.672659,0.36579,0.791208,0.665177,0.619768,0.849405,0.258677,0.918907,0.772654,0.322799,0.540701,0.940729,0.451357,0.86987,0.370401,0.34718,0.382025,0.942529,0.569551,0.482143,0.959031,0.86084,0.877476,0.449411,0.418782,0.828317,0.0722133,0.747493,0.205037,0.316591,0.694678,0.499451,0.536542,0.230574,0.945952,0.773209,0.341807,0.613698,0.636666,0.569565,0.813448,0.0664285,0.00819719,0.979216,0.69005,0.942415,0.244712,0.298768,0.528243,0.388422,0.511254,0.391914,0.425848,0.926081,0.4152,0.715338,0.546763,0.704145,0.359545,0.0727763,0.174652,0.790151,0.810069,0.94437,0.64961,0.527347,0.239486,0.0146205,0.950597,0.647962,0.908339,0.809926,0.802196,0.183185,0.152524,0.0425777,0.262485,0.575258,0.680996,0.34771,0.0931678,0.280355,0.27688,0.994581,0.476986,0.259439,0.554163,0.112031,0.11372,0.271665,0.323462,0.810159,0.478894,0.78603,0.63858,0.749233,0.490671,0.776179,0.549896,0.400657,0.728193,0.0412154,0.483993,0.5473,0.383437,0.309714,0.256651,0.87005,0.681863,0.149339,0.00689214,0.291264,0.281742,0.161058,0.427568,0.375834,0.811653,0.534534,0.708171,0.127584,0.912658,0.18197,0.126251,0.92902,0.21651,0.427389,0.788206,0.138014,0.0528274,0.629781,0.907649,0.468177,0.510726,0.614767,0.390637,0.131931,0.295276,0.587089,0.157944,0.0858178,0.0126632,0.117204,0.0485911,0.438407,0.927751,0.729508,0.306918,0.314935,0.868205,0.240948,0.144408,0.691555,0.464063,0.167143,0.490246,0.511618,0.270945,0.695597,0.646812,0.630078,0.344581,0.494411,0.921014,0.727432,0.702891,0.800029,0.299605,0.5702,0.0835996,0.968426,0.772224,0.323245,0.218785,0.380133,0.919362,0.525293,0.254911,0.319493,0.376196,0.0675164,0.7554,0.890258,0.341842,0.715602,0.836241,0.173911,0.0646699,0.297735,0.203514,0.935033,0.140797,0.966032,0.321665,0.322782,0.344111,0.735883,0.736243,0.00701869,0.99236,0.0149053,0.087443,0.73698,0.0205717,0.151167,0.957126,0.78975,0.603058,0.0957868,0.712373,0.347506,0.916223,0.576947,0.25505,0.961778,0.650809,0.476458,0.117427,0.474775,0.682244,0.81988,0.95042,0.505479,0.0544567,0.0252886,0.417835,0.592818,0.371476,0.581119,0.653155,0.764494,0.897353,0.617009,0.693745,0.755775,0.337112,0.11045,0.772099,0.117913,0.208564,0.805838,0.448525,0.261058,0.991631,0.399439,0.874137,0.802135,0.371283,0.296532,0.614971,0.472442,0.554016,0.206449,0.579351,0.275799,0.306501,0.313657,0.201526,0.141008,0.0687451,0.904874,0.464694,0.984521,0.692031,0.388729,0.621904,0.775437,0.670022,0.219516,0.406028,0.754633,0.105527,0.290123,0.904658,0.0444872,0.410376,0.53043,0.104616,0.426961,0.810589,0.825067,0.544523,0.832446,0.961944,0.986849,0.0278051,0.0913819,0.872277,0.284667,0.942694,0.78555,0.894963,0.638007,0.560806,0.756002,0.351101,0.705143,0.846681,0.328281,0.780575,0.393152,0.154137,0.390784,0.270608,0.0930921,0.298733,0.323074,0.880674,0.173638,0.515022,0.604686,0.180695,0.914073,0.192799,0.553198,0.264555,0.865043,0.69785,0.563639,0.366749,0.582699,0.973278,0.512473,0.671878,0.757886,0.791651,0.766403,0.0779041,0.687368,0.890032,0.286883,0.137217,0.550988,0.685065,0.15772,0.647083,0.307565,0.924668,0.399968,0.182502,0.648088,0.850319,0.0563653,0.493325,0.178698,0.603973,0.382258,0.0299292,0.184012,0.49928,0.400195,0.47296,0.288788,0.993943,0.790519,0.198629,0.471363,0.796153,0.0576015,0.114869,0.809559,0.444709,0.71128,0.947381,0.22829,0.944158,0.102749,0.390997,0.389619,0.845547,0.828398,0.376337,0.236828,0.224555,0.529623,0.0236718,0.137277,0.0110449,0.381759,0.329071,0.929983,0.984812,0.278953,0.505333,0.444177,0.680789,0.838852,0.199369,0.563177,0.812531,0.595641,0.308613,0.133255,0.400633,0.899415,0.0956785,0.77674,0.81581,0.191451,0.436795,0.855762,0.874092,0.418173,0.384641,0.805289,0.162821,0.576523,0.510809,0.297175,0.0839036,0.532163,0.68243,0.275129,0.199593,0.314038,0.39076,0.289965,0.26254,0.797055,0.998923,0.773887,0.583291,0.279645,0.0595778,0.631794,0.255084,0.673188,0.00570816,0.197163,0.11899,0.397493,0.224206,0.76272,0.769222,0.316584,0.225549,0.809526,0.601403,0.0553139,0.977726,0.852132,0.41942,0.659117,0.73613,0.770999,0.792539,0.851442,0.894896,0.922622,0.373162,0.203729,0.852461,0.271974,0.642152,0.00495917,0.655791,0.642404,0.791189,0.118619,0.884879,0.0661138,0.260114,0.0625373,0.251409,0.729579,0.795714,0.926646,0.428626,0.753498,0.860353,0.978248,0.0891685,0.605544,0.17651,0.697121,0.21073,0.606714,0.878295,0.122839,0.0753359,0.426413,0.603798,0.499691,0.855394,0.228679,0.0359911,0.362554,0.0717604,0.392904,0.574364,0.0439974,0.261646,0.892757,0.147964,0.197287,0.248348,0.428156,0.335724,0.541966,0.197204,0.877654,0.621857,0.282802,0.636765,0.0336701,0.406482,0.469869,0.193393,0.0419586,0.375252,0.111307,0.472147,0.686424,0.92582,0.533143,0.996203,0.837921,0.395443,0.749118,0.105968,0.0350619,0.251048,0.229346,0.524509,0.968534,0.819785,0.768431,0.75632,0.83581,0.467006,0.183038,0.202965,0.111635,0.612657,0.429885,0.484123,0.0598932,0.120179,0.54719,0.0409752,0.490253,0.570124,0.523855,0.323978,0.16626,0.791845,0.790505,0.974157,0.238991,0.665788,0.576444,0.0148528,0.162308,0.099836,0.885147,0.617463,0.710288,0.302958,0.289783,0.201526,0.200333,0.164836,0.958502,0.359309,0.305921,0.128661,0.552835,0.342531,0.326346,0.33583,0.540525,0.185318,0.643568,0.983655,0.752029,0.0331274,0.133016,0.307924,0.0243126,0.719732,0.632052,0.396393,0.601209,0.432522,0.496847,0.801476,0.270196,0.0258414,0.941293,0.955157,0.113419,0.24746,0.0409727,0.546778,0.886116,0.676903,0.617646,0.408578,0.395023,0.254334,0.598176,0.977204,0.621956,0.264021,0.51673,0.514076,0.277048,0.144326,0.49856,0.13805,0.594888,0.875435,0.875607,0.448059,0.327413,0.676285,0.0610446,0.271128,0.466713,0.28786,0.00450343,0.130767,0.816833,0.40408,0.517353,0.309899,0.518416,0.238114,0.689056,0.342113,0.918567,0.637975,0.922953,0.721587,0.76496,0.125254,0.60768,0.98215,0.083048,0.629888,0.850114,0.465501,0.129087,0.264831,0.696582,0.928024,0.161115,0.760285,0.14688,0.401413,0.371199,0.661555,0.00485486,0.239787,0.730514,0.207435,0.149235,0.837394,0.862484,0.740072,0.566195,0.698849,0.377574,0.165561,0.155356,0.984171,0.967784,0.651604,0.146663,0.780393,0.207246,0.148294,0.561887,0.577144,0.195319,0.842109,0.541605,0.358655,0.274625,0.380287,0.895304,0.509616,0.934191,0.627649,0.595721,0.546169,0.471934,0.872425,0.294933,0.510655,0.456638,0.0442117,0.080838,0.204556,0.226648,0.898477,0.12334,0.975129,0.855107,0.388105,0.64151,0.574721,0.682808,0.969935,0.66248,0.114732,0.775861,0.732437,0.090903,0.882535,0.483563,0.553973,0.342818,0.705353,0.184847,|0.610024,0.682846,0.636868,0.250777,0.201727,0.662685,0.729836,0.545334,0.517796,0.682183,0.947836,0.382533,0.27209,0.402936,0.880874,0.408814,0.486435,0.917022,0.828883,0.471312,0.00213695,0.216008,0.524307,0.429976,0.179864,0.25518,0.57093,0.885026,0.360705,0.820586,0.419637,0.673376,0.673977,0.0553545,0.478764,0.122009,0.294806,0.138223,0.865125,0.451979,0.747133,0.38047,0.725536,0.260382,0.224284,0.124965,0.225585,0.177374,0.873254,0.204981,0.331509,0.938699,0.519808,0.0550923,0.938203,0.46137,0.607525,0.403286,0.467517,0.496174,0.990386,0.416724,0.13857,0.278466,0.0672334,0.355579,0.238226,0.123837,0.706833,0.919106,0.515604,0.0742315,0.506713,0.242047,0.0885833,0.38901,0.945404,0.551036,0.451438,0.901226,0.0152261,0.388755,0.595362,0.825029,0.997181,0.122763,0.815678,0.822135,0.0699617,0.786846,0.662653,0.662617,0.442883,0.368143,0.89752,0.25504,0.239566,0.107082,0.000467718,0.184589,0.113352,0.979753,0.182594,0.680256,0.772669,0.0468999,0.0563918,0.0442816,0.546125,0.346962,0.433231,0.778611,0.680678,0.0676274,0.0296246,0.665612,0.793731,0.846464,0.852692,0.426059,0.654093,0.552404,0.188223,0.837496,0.867015,0.861257,0.422201,0.348695,0.716904,0.801215,0.494811,0.628962,0.908168,0.505457,0.338843,0.480278,0.439663,0.889109,0.647468,0.586179,0.232044,0.429975,0.263091,0.821569,0.788743,0.0492103,0.500944,0.637304,0.0923789,0.607683,0.0386665,0.366767,0.00264394,0.466401,0.883703,0.673271,0.927764,0.850769,0.959373,0.731381,0.188405,0.501334,0.062986,0.791515,0.84857,0.967203,0.229877,0.897963,0.474644,0.971602,0.399824,0.857687,0.823208,0.658231,0.780578,0.832501,0.196352,0.20721,0.858227,0.423721,0.888175,0.266236,0.718464,0.802151,0.198777,0.34825,0.612892,0.578359,0.359708,0.109703,0.792902,0.496314,0.153109,0.855002,0.00458044,0.131019,0.792078,0.524205,0.452145,0.200115,0.696817,0.255524,0.969293,0.42207,0.586249,0.850246,0.916673,0.113356,0.930055,0.0817093,0.542892,0.559565,0.685239,0.183399,0.556822,0.307351,0.702713,0.127821,0.616815,0.061979,0.613271,0.380139,0.585667,0.32372,0.225711,0.0106174,0.121133,0.213091,0.965889,0.0693725,0.736801,0.761132,0.853245,0.0529742,0.609874,0.199852,0.386317,0.347769,0.374435,0.386253,0.441953,0.686398,0.445345,0.106324,0.684221,0.619442,0.0727879,0.925964,0.481374,0.596916,0.255437,0.771115,0.238865,0.804126,0.0607733,0.744921,0.740022,0.959207,0.909206,0.770186,0.439265,0.451274,0.920561,0.0513898,0.842025,0.512512,0.364015,0.350447,0.827246,0.382411,0.483696,0.421629,0.656202,0.642101,0.578203,0.606953,0.52445,0.888356,0.495393,0.936257,0.573581,0.655178,0.291723,0.568363,0.152818,0.685101,0.994486,0.599701,0.468466,0.315073,0.878826,0.383592,0.128497,0.523757,0.216973,0.281349,0.532236,0.58567,0.104931,0.427348,0.103895,0.0951652,0.464064,0.20839,0.351925,0.846398,0.266695,0.626787,0.223231,0.613661,0.970661,0.49621,0.332764,0.535308,0.131814,0.428628,0.997256,0.619934,0.854044,0.841805,0.429886,0.761001,0.61011,0.780009,0.615654,0.711471,0.855049,0.802657,0.899414,0.891766,0.474739,0.155953,0.569232,0.234899,0.436041,0.181645,0.415944,0.871872,0.373462,0.000949979,0.877908,0.0341361,0.432103,0.490797,0.697983,0.0510005,0.244303,0.231521,0.324099,0.638474,0.767802,0.212765,0.524698,0.58511,0.242844,0.000249088,0.341166,0.520076,0.124425,0.0133061,0.249705,0.267022,0.468929,0.545831,0.294479,0.336146,0.724327,0.409093,0.849115,0.933173,0.593426,0.59313,0.158239,0.790828,0.723585,0.833013,0.67867,0.312607,0.507959,0.400203,0.273716,0.951234,0.610495,0.839636,0.109927,0.51864,0.791409,0.122621,0.411521,0.733569,0.324685,0.556446,0.286716,0.614986,0.199169,0.670456,0.378764,0.626463,0.597319,0.490556,0.773698,0.969049,0.224575,0.944184,0.383995,0.0362348,0.624239,0.280147,0.0225387,0.939929,0.48114,0.723067,0.516246,0.909105,0.862043,0.797105,0.0119157,0.890822,0.0679422,0.90479,0.418577,0.27985,0.472633,0.310646,0.0610102,0.199258,0.86908,0.170559,0.792054,0.795069,0.485681,0.492987,0.478243,0.809755,0.441813,0.936487,0.870074,0.531302,0.237136,0.878921,0.259862,0.238515,0.610079,0.758,0.127584,0.309919,0.635762,0.0198824,0.176715,0.202278,0.101623,0.37516,0.114224,0.943827,0.151124,0.883422,0.295582,0.243855,0.98966,0.538308,0.215444,0.788063,0.0514287,0.802774,0.604725,0.333846,0.408809,0.0775818,0.537875,0.300774,0.790553,0.749635,0.868204,0.690374,0.328296,0.79873,0.309046,0.0899066,0.590467,0.43311,0.940837,0.143938,0.526282,0.6427,0.642891,0.0400127,0.645923,0.535916,0.901606,0.75831,0.77725,0.569791,0.192405,0.992243,0.398527,0.0788141,0.0880527,0.62604,0.912105,0.796452,0.994413,0.713685,0.810328,0.680559,0.366726,0.21041,0.59675,0.99182,0.543118,0.40334,0.182537,0.831746,0.963876,0.523055,0.392057,0.917466,0.342331,0.666728,0.178114,0.807209,0.524275,0.00746775,0.208642,0.280995,0.797088,0.218254,0.901077,0.0750374,0.0561453,0.950165,0.521978,0.52484,0.984054,0.518947,0.211411,0.93073,0.827649,0.988354,0.167935,0.00289398,0.502901,0.0159913,0.828408,0.300891,0.66384,0.691828,0.758584,0.645561,0.579904,0.548058,0.374114,0.599688,0.49375,0.852448,0.273262,0.657543,0.569489,0.841088,0.0345273,0.386516,0.572419,0.218613,0.213222,0.55909,0.00296801,0.772974,0.23004,0.356872,0.731179,0.679591,0.249771,0.130373,0.647969,0.815818,0.266388,0.85179,0.12019,0.595514,0.25939,0.118207,0.679223,0.903337,0.276011,0.520592,0.302674,0.841676,0.0728428,0.315781,0.454928,0.343666,0.360601,0.163321,0.229689,0.852431,0.0642985,0.423018,0.780934,0.120244,0.933849,0.279118,0.868007,0.485293,0.855857,0.671855,0.821885,0.0483485,0.627662,0.780753,0.476844,0.513817,0.208707,0.701001,0.999618,0.0300344,0.431487,0.515936,0.357044,0.0757182,0.377503,0.557677,0.455214,0.515132,0.767043,0.96667,0.839207,0.438839,0.0617327,0.132465,0.569636,0.721761,0.443479,0.295746,0.383012,0.416982,0.452855,0.978305,0.670029,0.0982312,0.852555,0.475953,0.0878596,0.782354,0.520967,0.602545,0.0464857,0.796916,0.472304,0.0924923,0.111086,0.253638,0.405415,0.851116,0.23455,0.224756,0.526034,0.221827,0.202188,0.132867,0.0346901,0.612902,0.258418,0.217672,0.210246,0.49124,0.454037,0.0216614,0.0162897,0.895613,0.854461,0.686468,0.351026,0.619029,0.64512,0.25903,0.412999,0.835801,0.482212,0.64549,0.103865,0.113037,0.808365,0.615793,0.356626,0.913458,0.0719552,0.136255,0.0706654,0.59086,0.663167,0.455692,0.875439,0.96211,0.442748,0.367423,0.387484,0.46457,0.90326,0.796122,0.117509,0.0254487,0.160894,0.693963,0.815316,0.591564,0.689359,0.239733,0.0823964,0.348567,0.492585,0.739456,0.558908,0.382594,0.950325,0.741892,0.593791,0.196292,0.94289,0.719379,0.966918,0.855876,0.142681,0.984349,0.631513,0.00568849,0.664969,0.993161,0.181099,0.0139384,0.678846,0.824273,0.210556,0.268658,0.0468521,0.34105,0.509129,0.977723,0.626148,0.400944,0.148063,0.32111,0.0902571,0.301878,0.0890403,0.877076,0.811687,0.0813432,0.700382,0.570361,0.31443,0.0898501,0.453957,0.556113,0.630138,0.732027,0.0947567,0.758102,0.86537,0.486686,0.401906,0.489841,0.699185,0.854213,0.0636289,0.391116,0.00889468,0.86953,0.302413,0.00327665,0.786722,0.523984,0.0451259,0.0556356,0.432308,0.284787,0.32268,0.299951,0.324892,0.0270299,0.591082,0.433422,0.377658,0.512286,0.115275,0.0804191,0.474557,0.275388,0.0591688,0.124886,0.334269,0.99146,0.172329,0.578952,0.0968004,0.570686,0.753651,0.0397763,0.146676,0.60179,0.238337,0.175909,0.149009,0.964031,0.277712,0.481526,0.210439,0.819667,0.583999,0.485779,0.584153,0.852047,0.262075,0.834413,0.641385,0.787337,0.4631,0.168364,0.780047,0.226389,0.839313,0.342564,0.195158,0.217824,0.709124,0.78249,0.8296,0.592409,0.49828,0.969521,0.505213,0.159072,0.00507337,0.720896,0.541627,0.812324,0.093608,0.169119,0.8724,0.175327,0.156405,0.92948,0.979312,0.193577,0.126266,0.797707,0.994829,0.0413696,0.136874,0.478799,0.939157,0.732101,0.94511,0.371682,0.75933,0.441893,0.382575,0.289839,0.909244,0.776221,0.0448325,0.772377,0.275658,0.944386,0.898441,0.0671136,0.287595,0.411452,0.896229,0.569646,0.981849,0.473444,0.904364,0.973573,0.650115,0.215933,0.831321,0.424541,0.032944,0.0399913,0.216572,0.647283,0.902129,0.36259,0.95608,0.19403,0.993121,0.857241,0.995304,0.131569,0.695436,0.0399046,0.0701069,0.716771,0.978385,0.138487,0.578363,0.730587,0.100021,0.112452,0.388874,0.897989,0.119382,0.45771,0.184392,0.247445,0.944884,0.103674,0.385644,0.957936,0.775166,0.0029133,0.890573,0.804675,0.889707,0.0376869,0.0533656,0.51127,0.00756627,0.575928,0.477033,0.579887,0.166645,0.943994,0.353964,0.383104,0.941663,0.947163,0.3973,0.792547,0.126738,0.905391,0.845789,0.30084,0.143645,0.872049,0.693987,0.555548,0.716626,0.290046,0.172609,0.287656,0.0529299,0.491123,0.6787,0.98843,0.188795,0.443523,0.3974,0.0572398,0.00772053,0.820582,0.576683,0.30329,0.92678,0.0442873,0.807175,0.272403,0.476861,0.848799,0.895911,0.878157,0.11051,0.0691555,0.262261,0.579666,0.347064,0.148809,0.412714,0.675376,0.452377,0.82684,0.751823,0.540142,0.615589,0.997123,0.660588,0.973932,0.273878,0.821595,0.581862,0.459678,0.7763,0.821352,0.182564,0.907401,0.0490506,0.2647,0.0217751,0.389092,0.0954397,0.994763,0.563755,0.77827,0.698864,0.873929,0.971837,0.100467,0.465896,0.290191,0.26526,0.538631,|0.790215,0.241839,0.794116,0.61481,0.731423,0.0396194,0.12833,0.430822,0.537379,0.414252,0.74475,0.745502,0.0414696,0.478053,0.339198,0.395122,0.780697,0.828175,0.843198,0.276752,0.733741,0.0575106,0.957072,0.983281,0.633193,0.706544,0.240883,0.685794,0.563512,0.521813,0.0689606,0.489103,0.782035,0.214742,0.234187,0.584903,0.146792,0.927382,0.278619,0.932447,0.321655,0.323954,0.384961,0.58116,0.302334,0.350183,0.794732,0.973633,0.648304,0.938416,0.472108,0.962955,0.443778,0.916901,0.0726551,0.391533,0.274783,0.10621,0.306917,0.149788,0.772061,0.414095,0.130377,0.912033,0.0924276,0.660484,0.792631,0.995809,0.742932,0.187461,0.0493212,0.728553,0.434279,0.606391,0.592965,0.890933,0.910159,0.190145,0.518074,0.765795,0.643586,0.98488,0.0405655,0.394313,0.967715,0.557694,0.466145,0.58644,0.463352,0.157993,0.225497,0.608624,0.997384,0.0833482,0.253982,0.485934,0.472465,0.45856,0.00643021,0.8043,0.742599,0.794725,0.298923,0.393918,0.0665424,0.61578,0.619779,0.640247,0.440319,0.873801,0.973583,0.19952,0.629154,0.00568157,0.867939,0.789861,0.209295,0.250623,0.157319,0.349941,0.912633,0.15646,0.708693,0.136807,0.198317,0.981844,0.535196,0.356181,0.739805,0.1991,0.997679,0.793739,0.669626,0.149692,0.59343,0.542778,0.905967,0.691665,0.000979006,0.858695,0.734575,0.674792,0.984346,0.643803,0.782194,0.108258,0.431045,0.89393,0.0482658,0.906336,0.713687,0.435107,0.607173,0.315708,0.807866,0.379122,0.928062,0.908579,0.976922,0.160546,0.564982,0.945804,0.853512,0.9121,0.6133,0.653583,0.118748,0.122703,0.48361,0.908674,0.279711,0.721618,0.451686,0.35377,0.578476,0.713824,0.959611,0.49085,0.382927,0.0463975,0.8474,0.491158,0.151365,0.208056,0.0177842,0.956047,0.346844,0.384318,0.0305462,0.671929,0.32559,0.146876,0.817618,0.74821,0.0218567,0.64752,0.973783,0.355345,0.580709,0.147898,0.981727,0.747408,0.294051,0.441016,0.98446,0.460952,0.714823,0.972461,0.232524,0.122156,0.412449,0.909948,0.843226,0.221205,0.427686,0.0606281,0.918075,0.192868,0.104315,0.473777,0.687405,0.38392,0.93488,0.335461,0.0128348,0.744186,0.76739,0.923304,0.0978398,0.422519,0.932464,0.795463,0.928092,0.681291,0.959177,0.441946,0.95363,0.187179,0.380403,0.732006,0.344322,0.644709,0.276822,0.0321854,0.237005,0.664306,0.656128,0.111396,0.380118,0.880747,0.468503,0.76331,0.6386,0.529267,0.790854,0.418867,0.79412,0.40907,0.286583,0.0394534,0.610839,0.930052,0.105114,0.172745,0.105408,0.160798,0.912593,0.758583,0.185298,0.791866,0.074984,0.635307,0.912235,0.692065,0.553417,0.465133,0.742242,0.902764,0.0176311,0.0707023,0.300653,0.0259188,0.140097,0.716548,0.579317,0.156484,0.418507,0.584031,0.488746,0.290365,0.217832,0.0374444,0.494151,0.650969,0.919038,0.347331,0.942974,0.388307,0.250422,0.791958,0.151744,0.596595,0.672879,0.221131,0.769058,0.429588,0.926473,0.970094,0.958642,0.510591,0.426581,0.423278,0.868091,0.751715,0.557485,0.173029,0.1798,0.179167,0.368827,0.873901,0.876133,0.616139,0.240365,0.226976,0.588835,0.198,0.614624,0.106252,0.399472,0.903239,0.207991,0.62912,0.420511,0.456767,0.85809,0.858576,0.959399,0.886782,0.646624,0.685428,0.874338,0.569533,0.900118,0.847997,0.266366,0.541357,0.96912,0.604041,0.56635,0.730993,0.717124,0.408549,0.261194,0.206323,0.9705,0.421462,0.636981,0.0457342,0.185349,0.322743,0.546982,0.21243,0.329707,0.292704,0.421967,0.930021,0.469691,0.274777,0.285639,0.708737,0.605692,0.203282,0.601184,0.322917,0.206066,0.180123,0.320923,0.0999191,0.45127,0.965316,0.674638,0.466221,0.540951,0.944728,0.794828,0.267043,0.216661,0.0282914,0.358093,0.763202,0.0573334,0.872654,0.54539,0.157636,0.893881,0.0667377,0.109858,0.352982,0.385873,0.410014,0.115589,0.272873,0.870146,0.356768,0.217613,0.176721,0.792754,0.76957,0.80541,0.431421,0.563548,0.250539,0.488087,0.134927,0.906519,0.322781,0.693572,0.985048,0.466542,0.801311,0.841444,0.240892,0.590382,0.271838,0.835886,0.905623,0.74999,0.195273,0.593278,0.766735,0.948748,0.604209,0.980819,0.966816,0.753139,0.831425,0.911132,0.164903,0.719564,0.808831,0.14032,0.122473,0.07231,0.0693689,0.662926,0.897845,0.380295,0.753338,0.138372,0.964879,0.621094,0.33109,0.214927,0.324861,0.405693,0.138929,0.518502,0.708078,0.795436,0.690946,0.110231,0.229724,0.742869,0.451253,0.31026,0.162743,0.594433,0.00544918,0.986244,0.231264,0.6044,0.996477,0.811686,0.62139,0.0303916,0.0826451,0.31644,0.645918,0.944447,0.818886,0.228513,0.551892,0.818211,0.947201,0.419951,0.673133,0.516011,0.624302,0.629658,0.0427358,0.876345,0.108409,0.651788,0.161301,0.0254602,0.445516,0.261647,0.786086,0.190852,0.443744,0.417847,0.509366,0.194468,0.612874,0.294747,0.245336,0.293088,0.299225,0.877565,0.746382,0.0582503,0.788638,0.854501,0.29101,0.305071,0.545569,0.494231,0.171022,0.254531,0.980768,0.0618522,0.962653,0.988621,0.664914,0.455938,0.117105,0.501815,0.929812,0.933817,0.457078,0.276448,0.095472,0.693706,0.570464,0.339588,0.836075,0.655486,0.12799,0.231858,0.817351,0.701538,0.186935,0.620942,0.879484,0.421528,0.411574,0.0471163,0.715009,0.503607,0.768655,0.567695,0.226166,0.34116,0.589588,0.227261,0.165059,0.87122,0.361393,0.383914,0.534674,0.947583,0.24431,0.983698,0.121674,0.000430167,0.285832,0.196154,0.184594,0.0753475,0.125439,0.0762635,0.560018,0.797988,0.848905,0.865918,0.980708,0.854202,0.524895,0.739073,0.172249,0.0335133,0.625352,0.99386,0.826153,0.15565,0.266452,0.848823,0.586727,0.150595,0.845779,0.197053,0.529812,0.524299,0.584774,0.442331,0.878083,0.720291,0.557465,0.445374,0.574102,0.634361,0.671512,0.938524,0.199198,0.0863654,0.0783618,0.572458,0.262906,0.31462,0.0868189,0.725486,0.456876,0.070068,0.814687,0.291335,0.924659,0.687448,0.669977,0.885548,0.214559,0.346076,0.0423649,0.847254,0.985595,0.98552,0.173947,0.457459,0.968684,0.346157,0.296973,0.307305,0.23117,0.605239,0.330211,0.379452,0.732807,0.232629,0.918086,0.655414,0.567284,0.753595,0.298645,0.473854,0.285525,0.460064,0.467781,0.604678,0.511081,0.227464,0.908239,0.263735,0.355625,0.667667,0.741291,0.871855,0.948883,0.611032,0.939089,0.119711,0.171899,0.817721,0.290583,0.176937,0.653865,0.168131,0.613282,0.481107,0.983267,0.882466,0.947429,0.180209,0.205473,0.776443,0.369975,0.196031,0.490734,0.0299909,0.535341,0.90108,0.547935,0.530732,0.00674587,0.365152,0.374748,0.551563,0.820528,0.373274,0.646767,0.493372,0.171468,0.787364,0.976756,0.118628,0.638314,0.328945,0.719282,0.691395,0.629755,0.163205,0.792203,0.345743,0.26837,0.823083,0.819638,0.11862,0.0129392,0.0209336,0.0656247,0.908083,0.432268,0.272769,0.542452,0.309141,0.830579,0.19909,0.187274,0.913715,0.570694,0.531665,0.654403,0.853095,0.946275,0.171447,0.173106,0.902858,0.0307677,0.853176,0.385329,0.382335,0.249323,0.165005,0.521917,0.0705265,0.38372,0.65382,0.984255,0.469755,0.302298,0.0501056,0.657738,0.059991,0.982907,0.715802,0.304483,0.912913,0.121234,0.249081,0.692019,0.118165,0.479227,0.405035,0.0354568,0.539584,0.386352,0.0684265,0.466674,0.271628,0.401514,0.700832,0.803774,0.831919,0.0665942,0.376199,0.994746,0.825596,0.321502,0.61948,0.284528,0.784911,0.856902,0.134334,0.246097,0.533861,0.290758,0.804361,0.30422,0.233022,0.632844,0.962106,0.164302,0.21645,0.940189,0.333194,0.306099,0.616329,0.636896,0.31563,0.252711,0.0573618,0.533951,0.547872,0.468111,0.494279,0.567413,0.764833,0.360651,0.690004,0.870996,0.780034,0.0821926,0.946889,0.370105,0.924572,0.387666,0.478467,0.900332,0.496758,0.0581798,0.149487,0.526193,0.922097,0.3947,0.296235,0.868037,0.570653,0.0246137,0.746672,0.0153021,0.794368,0.0880184,0.0556835,0.0368821,0.932705,0.913786,0.413874,0.554578,0.953385,0.651862,0.674185,0.0458333,0.929827,0.916336,0.598988,0.98574,0.128937,0.757356,0.0750775,0.539556,0.455286,0.83919,0.1254,0.477031,0.366557,0.0979652,0.0382187,0.62977,0.610872,0.51014,0.277635,0.723137,0.930959,0.0495653,0.15621,0.849632,0.190425,0.514665,0.724792,0.149958,0.697347,0.802845,0.898204,0.499128,0.583341,0.331503,0.973768,0.0852255,0.932439,0.59878,0.70845,0.574768,0.51477,0.900408,0.990825,0.260473,0.0617963,0.487591,0.16961,0.294105,0.419904,0.301648,0.417538,0.931752,0.0623773,0.96791,0.762311,0.64431,0.758605,0.987658,0.969491,0.75894,0.860524,0.76151,0.0337085,0.666518,0.265971,0.276454,0.242251,0.541227,0.187967,0.759903,0.172179,0.71312,0.823423,0.170406,0.479585,0.106508,0.58242,0.52914,0.848049,0.0304212,0.277954,0.520135,0.350828,0.925734,0.151649,0.4926,0.824498,0.827537,0.965994,0.125874,0.764622,0.0686824,0.571215,0.58436,0.245638,0.657344,0.401194,0.606059,0.701645,0.847801,0.709396,0.27661,0.235713,0.0220299,0.857477,0.0341026,0.938323,0.198643,0.120194,0.869151,0.997362,0.643241,0.412793,0.248385,0.200478,0.49839,0.444453,0.378984,0.500317,0.0054692,0.437542,0.943918,0.425637,0.994576,0.891211,0.0354614,0.376966,0.495552,0.860994,0.83801,0.0644405,0.384129,0.530881,0.385633,0.713331,0.928967,0.577588,0.0286558,0.59863,0.605262,0.284457,0.0242971,0.29562,0.904072,0.828616,0.270692,0.361236,0.0413244,0.724203,0.528321,0.436838,0.733426,0.179133,0.624677,0.452041,0.481193,0.393406,0.335024,0.321115,0.805077,0.16545,0.585829,0.142484,0.910765,0.942144,0.0417361,0.760448,0.69253,0.613522,0.532517,|0.242797,0.343841,0.568427,0.280223,0.250931,0.794431,0.724807,0.0736405,0.417502,0.752458,0.0636507,0.169414,0.139209,0.541234,0.776126,0.068397,0.742208,0.661994,0.280632,0.907069,0.0988833,0.831807,0.363886,0.81667,0.133491,0.512132,0.536456,0.119509,0.300341,0.72281,0.304447,0.893239,0.580957,0.569182,0.629204,0.297978,0.569756,0.123698,0.0411745,0.741593,0.694156,0.502764,0.910426,0.599486,0.798055,0.424812,0.228837,0.234882,0.775439,0.889085,0.451484,0.128668,0.163666,0.254732,0.973115,0.309029,0.253326,0.102683,0.658621,0.712639,0.973005,0.942002,0.501417,0.1013,0.860312,0.425032,0.213042,0.151273,0.949535,0.976708,0.771453,0.339458,0.683457,0.921461,0.635882,0.533838,0.717366,0.369796,0.850051,0.500599,0.131743,0.836058,0.285443,0.515643,0.135446,0.481443,0.713805,0.0907198,0.265159,0.726847,0.961606,0.362382,0.817188,0.608554,0.90515,0.425712,0.858257,0.545448,0.653367,0.191519,0.0533773,0.61281,0.666323,0.400492,0.00567561,0.637011,0.827515,0.773718,0.1282,0.788231,0.178074,0.83095,0.876656,0.442132,0.648551,0.535901,0.235116,0.447775,0.0325617,0.67873,0.286697,0.680766,0.870757,0.957783,0.240239,0.691815,0.721243,0.16522,0.190306,0.573905,0.277464,0.548385,0.802933,0.144071,0.313379,0.401188,0.569963,0.513965,0.101822,0.73278,0.581291,0.439225,0.260419,0.247167,0.841613,0.242825,0.282753,0.252896,0.483652,0.987346,0.983854,0.592005,0.273747,0.878711,0.418248,0.0451626,0.586906,0.695207,0.835986,0.792637,0.291344,0.694787,0.185497,0.825955,0.188866,0.612746,0.449555,0.846716,0.385636,0.944707,0.6651,0.0562424,0.792971,0.640547,0.5028,0.318266,0.0768941,0.907981,0.0633147,0.921734,0.0296868,0.059696,0.683591,0.888933,0.358108,0.998338,0.312935,0.794833,0.649832,0.303566,0.952724,0.893796,0.570973,0.752587,0.403042,0.481128,0.0713868,0.171712,0.431882,0.2388,0.28743,0.377288,0.66018,0.454057,0.175799,0.979569,0.306096,0.910832,0.324816,0.541521,0.941016,0.587081,0.0440314,0.747228,0.356809,0.375302,0.315697,0.235878,0.140194,0.975582,0.859149,0.659837,0.988988,0.441691,0.501838,0.72467,0.7426,0.608139,0.594984,0.575865,0.739382,0.390772,0.926476,0.454495,0.204995,0.642992,0.785902,0.281543,0.9866,0.121458,0.181975,0.187756,0.82481,0.761344,0.984885,0.43098,0.783712,0.252482,0.0493038,0.926509,0.805167,0.35524,0.850444,0.640521,0.0909894,0.542709,0.958738,0.412083,0.879962,0.0578051,0.727013,0.762324,0.794221,0.276849,0.648783,0.711153,0.25812,0.952386,0.228416,0.940933,0.580792,0.589493,0.679783,0.081273,0.502708,0.58378,0.0819718,0.177994,0.544027,0.231974,0.156873,0.421258,0.198391,0.0640936,0.762355,0.529023,0.777578,0.515752,0.64848,0.236778,0.827106,0.486463,0.795586,0.205029,0.0124689,0.829142,0.0522743,0.041243,0.660529,0.295242,0.0535015,0.438389,0.876463,0.146799,0.220486,0.998041,0.645471,0.479172,0.175315,0.16186,0.0602374,0.928546,0.491614,0.0526273,0.00374621,0.6513,0.015411,0.145062,0.641122,0.5717,0.924551,0.0668073,0.661449,0.176776,0.0341568,0.33096,0.642178,0.740695,0.398572,0.230491,0.0677165,0.212279,0.104723,0.718387,0.193465,0.260802,0.471804,0.186311,0.60854,0.0612891,0.939069,0.989969,0.770715,0.325297,0.59939,0.279103,0.852351,0.649778,0.437179,0.43658,0.761923,0.334411,0.920719,0.856406,0.0745094,0.924311,0.637985,0.768011,0.35296,0.00783366,0.79463,0.112684,0.536805,0.740399,0.828006,0.925784,0.9865,0.0611298,0.700178,0.213065,0.480965,0.0855123,0.759345,0.786636,0.447297,0.908782,0.428568,0.0548383,0.659658,0.57102,0.989586,0.956904,0.990496,0.323809,0.890441,0.235406,0.116758,0.884473,0.16657,0.999543,0.80347,0.94072,0.702923,0.0846893,0.662023,0.607265,0.749898,0.813883,0.178556,0.423423,0.720848,0.428569,0.711148,0.457928,0.880112,0.979271,0.339522,0.55493,0.520256,0.345798,0.20493,0.754017,0.355639,0.888839,0.513452,0.936884,0.338144,0.0181559,0.146026,0.0884268,0.489244,0.53714,0.753453,0.514284,0.941589,0.53017,0.95859,0.970763,0.795526,0.700885,0.205326,0.568579,0.368461,0.840554,0.762113,0.203926,0.788523,0.00583518,0.641964,0.285987,0.218604,0.567313,0.490329,0.565162,0.843441,0.599548,0.704038,0.993516,0.241099,0.998909,0.0293072,0.981625,0.781195,0.868229,0.765361,0.593586,0.704455,0.082364,0.613612,0.713698,0.29577,0.596083,0.821869,0.27162,0.942224,0.757996,0.274395,0.269598,0.0113242,0.824646,0.864115,0.725534,0.0464486,0.830263,0.492772,0.795223,0.231612,0.780028,0.947674,0.228762,0.889325,0.485852,0.309034,0.868035,0.511086,0.538004,0.725084,0.144312,0.624414,0.83818,0.867996,0.480187,0.15429,0.0972334,0.450228,0.625365,0.640162,0.781249,0.373415,0.803716,0.537759,0.212214,0.407503,0.539317,0.76089,0.993882,0.774092,0.901924,0.321715,0.399362,0.048157,0.995902,0.193984,0.337041,0.386395,0.863113,0.875463,0.584523,0.642695,0.747312,0.296218,0.620156,0.0324517,0.132857,0.0579253,0.361769,0.470532,0.922284,0.354016,0.964485,0.199539,0.1149,0.368852,0.175406,0.844123,0.736914,0.897913,0.832465,0.98263,0.45793,0.778911,0.553359,0.487402,0.276944,0.432793,0.964772,0.962245,0.960596,0.958768,0.992633,0.669602,0.965759,0.209262,0.149059,0.274206,0.982737,0.105261,0.413008,0.213462,0.483344,0.985176,0.820675,0.844782,0.65291,0.338701,0.211714,0.334816,0.902615,0.137854,0.576937,0.518399,0.712092,0.307947,0.543259,0.908587,0.910359,0.531343,0.747714,0.187304,0.415859,0.582142,0.478152,0.26437,0.822528,0.00476152,0.783899,0.893784,0.511259,0.973743,0.547423,0.680909,0.696519,0.356219,0.778026,0.161978,0.143975,0.433081,0.0407394,0.499887,0.0621386,0.0353062,0.694588,0.804735,0.874013,0.42737,0.553936,0.923096,0.460075,0.516529,0.716555,0.611465,0.553728,0.305528,0.237202,0.154248,0.0635593,0.0538306,0.243217,0.229139,0.606499,0.0931269,0.423598,0.90404,0.866809,0.823818,0.583209,0.0119177,0.316187,0.276824,0.818961,0.739829,0.77975,0.114429,0.326419,0.966391,0.241522,0.116167,0.979758,0.201835,0.404381,0.713461,0.117577,0.6113,0.0965976,0.457306,0.293658,0.141792,0.996198,0.745695,0.623544,0.602004,0.329473,0.272324,0.988914,0.962953,0.320737,0.407661,0.641066,0.202345,0.677121,0.412212,0.8469,0.321189,0.470031,0.0989468,0.433343,0.0879593,0.14084,0.535826,0.377432,0.367108,0.451847,0.103434,0.813587,0.880727,0.70964,0.536364,0.406587,0.678082,0.097998,0.88925,0.19362,0.506852,0.358367,0.350909,0.0991249,0.591844,0.925976,0.147692,0.584674,0.910371,0.551962,0.874588,0.0154685,0.0784447,0.802434,0.972485,0.178043,0.609894,0.408709,0.0376958,0.00290024,0.608235,0.078749,0.573281,0.209451,0.371154,0.628966,0.700626,0.800524,0.297105,0.230224,0.943445,0.907498,0.708721,0.276002,0.789818,0.925791,0.0413909,0.218445,0.582631,0.59788,0.76744,0.823823,0.806314,0.598177,0.169765,0.686428,0.442933,0.0251067,0.431351,0.161523,0.0679635,0.814572,0.0880591,0.979299,0.482113,0.932208,0.740513,0.461936,0.439092,0.447272,0.891164,0.872696,0.0558994,0.441996,0.717002,0.758615,0.452977,0.433841,0.088476,0.317001,0.344273,0.92897,0.275916,0.267299,0.904078,0.542572,0.976623,0.771869,0.362073,0.507257,0.0163516,0.958439,0.107782,0.401938,0.959164,0.135141,0.123251,0.477613,0.23328,0.840015,0.595861,0.341142,0.945286,0.400176,0.744058,0.655056,0.508321,0.0243378,0.614852,0.571987,0.949209,0.954521,0.717059,0.272233,0.470429,0.539154,0.525248,0.140777,0.162928,0.314175,0.899837,0.0343165,0.279958,0.678018,0.906616,0.990438,0.0497051,0.73047,0.983198,0.834485,0.828448,0.51351,0.614239,0.340984,0.150094,0.475693,0.103341,0.70621,0.913851,0.261821,0.546096,0.138251,0.826134,0.0350231,0.049279,0.453077,0.272369,0.215833,0.489919,0.469746,0.437207,0.851503,0.607408,0.983799,0.984598,0.958304,0.52403,0.721531,0.058925,0.143368,0.593113,0.486709,0.618644,0.534248,0.602781,0.461132,0.226626,0.391879,0.0323562,0.823573,0.517287,0.952215,0.942775,0.536759,0.368777,0.963608,0.611486,0.576589,0.0264015,0.302535,0.501359,0.929047,0.346713,0.577069,0.60587,0.19924,0.987409,0.370162,0.444819,0.552704,0.995069,0.139105,0.726406,0.846026,0.417757,0.657613,0.357656,0.298949,0.157933,0.556613,0.762316,0.978513,0.820275,0.200374,0.593735,0.684492,0.984243,0.60525,0.0135777,0.989329,0.21194,0.605451,0.225369,0.0521858,0.136929,0.351343,0.66473,0.188999,0.40861,0.721732,0.459906,0.975822,0.548658,0.672969,0.353371,0.0937596,0.745345,0.205266,0.809824,0.336729,0.541019,0.971361,0.367493,0.587712,0.667862,0.145012,0.47882,0.929738,0.197777,0.812906,0.156824,0.410809,0.00403821,0.648205,0.799733,0.626213,0.402753,0.354953,0.609113,0.934085,0.577463,0.520116,0.096244,0.951815,0.98861,0.783897,0.717171,0.962327,0.627513,0.19174,0.906649,0.292512,0.984767,0.869225,0.867422,0.525928,0.824279,0.840854,0.626408,0.358633,0.113602,0.288558,0.53568,0.0102105,0.689039,0.915409,0.0632207,0.277734,0.756126,0.908731,0.00706339,0.978708,0.315391,0.465562,0.0392082,0.167022,0.294507,0.913715,0.88002,0.927329,0.98431,0.280279,0.801271,0.802399,0.890096,0.476403,0.117085,0.66078,0.77082,0.0696174,0.885967,0.186869,0.855459,0.139312,0.631937,0.147296,0.333758,0.700019,0.401271,0.0800207,0.529976,0.138999,0.802624,0.317481,0.980931,0.0406133,0.917876,0.386626,0.234953,0.686129,0.96087,0.793371,0.601821,0.871211,0.179323,0.577593,0.74028,0.860118,|0.819437,0.520932,0.0132335,0.802426,0.539681,0.580069,0.340196,0.00382185,0.865923,0.237293,0.882777,0.710848,0.0907197,0.935967,0.985428,0.746585,0.907936,0.437411,0.696788,0.583086,0.998718,0.427161,0.267686,0.84735,0.433486,0.795581,0.911955,0.933246,0.257101,0.374554,0.607407,0.229345,0.276459,0.393912,0.112424,0.000514865,0.443624,0.557821,0.677156,0.00156379,0.764433,0.841822,0.987393,0.692236,0.550982,0.344517,0.21957,0.592693,0.804268,0.148318,0.319181,0.467171,0.193907,0.867952,0.898041,0.789739,0.084372,0.691397,0.0153108,0.637645,0.00071919,0.214911,0.0422466,0.918018,0.749644,0.425077,0.272921,0.270638,0.325905,0.33814,0.696181,0.49924,0.341668,0.310209,0.682816,0.821391,0.812079,0.838783,0.633884,0.572147,0.681715,0.0266938,0.331261,0.701128,0.660046,0.437406,0.668723,0.0954682,0.620515,0.299078,0.855661,0.082101,0.0111683,0.787898,0.363806,0.353439,0.852965,0.483416,0.00356197,0.00613886,0.322795,0.450635,0.312692,0.54615,0.121686,0.673286,0.459309,0.642568,0.821129,0.142308,0.0442203,0.867582,0.957158,0.582037,0.981711,0.682954,0.975572,0.837213,0.956184,0.298765,0.102668,0.393476,0.193055,0.815806,0.909066,0.567171,0.0873624,0.4446,0.876644,0.835825,0.894275,0.203883,0.556886,0.0264896,0.83719,0.633928,0.31356,0.586534,0.209467,0.260849,0.115634,0.373806,0.367707,0.270655,0.333472,0.29499,0.643348,0.672982,0.00376683,0.130306,0.0674237,0.209419,0.0784824,0.994243,0.689108,0.82989,0.235063,0.12247,0.217006,0.537238,0.449698,0.35986,0.357288,0.4217,0.117655,0.0660301,0.566542,0.199382,0.520518,0.259876,0.400044,0.641607,0.41966,0.166987,0.875529,0.297511,0.551735,0.041583,0.882405,0.898601,0.667411,0.728921,0.636001,0.726697,0.634339,0.810663,0.233096,0.0456417,0.941561,0.234864,0.969512,0.804288,0.885988,0.0671155,0.385283,0.250428,0.473317,0.221262,0.482617,0.293401,0.57582,0.383984,0.393102,0.265817,0.661359,0.896558,0.0918959,0.154927,0.924489,0.441473,0.939327,0.395817,0.213758,0.384721,0.824247,0.697443,0.875024,0.544464,0.640793,0.199661,0.032381,0.726607,0.893889,0.759259,0.443682,0.438895,0.907595,0.0789483,0.550429,0.58148,0.485866,0.42338,0.571649,0.989883,0.99531,0.771902,0.182735,0.935642,0.0693269,0.416301,0.777669,0.877832,0.105157,0.34184,0.130695,0.305688,0.993481,0.0707568,0.115318,0.673763,0.485453,0.550431,0.68196,0.580051,0.895291,0.437386,0.832093,0.176111,0.314873,0.461313,0.711575,0.533796,0.0507901,0.679578,0.844889,0.428719,0.0491975,0.334499,0.103924,0.0410277,0.595908,0.895862,0.324464,0.0816212,0.119144,0.848671,0.0144675,0.386575,0.591511,0.259944,0.169855,0.50542,0.519758,0.615794,0.319852,0.835556,0.164531,0.466604,0.344779,0.308198,0.263003,0.890757,0.583939,0.227435,0.205947,0.849957,0.285536,0.393968,0.120877,0.896837,0.040255,0.151896,0.788352,0.862939,0.463452,0.989018,0.280315,0.602983,0.373823,0.448591,0.30071,0.300305,0.15978,0.689283,0.406542,0.53459,0.977663,0.274291,0.581367,0.299764,0.114211,0.540255,0.930025,0.608146,0.936989,0.19853,0.222504,0.150135,0.983586,0.769354,0.202561,0.61233,0.0697076,0.915183,0.361832,0.758309,0.4379,0.254011,0.204896,0.786297,0.911496,0.440766,0.495314,0.750409,0.17491,0.96259,0.180078,0.0022279,0.856108,0.50607,0.793163,0.413275,0.0417359,0.288933,0.12975,0.533869,0.828111,0.762664,0.494658,0.793476,0.153822,0.98705,0.137061,0.443103,0.892822,0.917073,0.709944,0.0144137,0.547664,0.0885298,0.251695,0.848631,0.544473,0.52232,0.413711,0.111608,0.000822365,0.0273869,0.645988,0.146005,0.272848,0.385048,0.409949,0.169145,0.0513446,0.355097,0.202608,0.0829284,0.489743,0.103418,0.687047,0.301932,0.912579,0.159953,0.856536,0.934042,0.300876,0.0729246,0.915125,0.341748,0.840123,0.477757,0.101189,0.111452,0.336171,0.945066,0.817796,0.821632,0.46398,0.544714,0.711001,0.480799,0.28477,0.0698468,0.218406,0.9962,0.140689,0.418011,0.151905,0.0572566,0.588224,0.544425,0.072296,0.678724,0.708423,0.993282,0.54731,0.576538,0.413593,0.0656566,0.760628,0.0757508,0.601332,0.206799,0.325621,0.178316,0.544475,0.84538,0.287882,0.130753,0.124214,0.279113,0.714904,0.864151,0.647102,0.887815,0.58503,0.963111,0.0888311,0.696448,0.36998,0.980709,0.867634,0.426095,0.434967,0.473823,0.399271,0.944979,0.169356,0.661734,0.719226,0.212803,0.154361,0.926721,0.0321734,0.488072,0.162507,0.599784,0.182354,0.106828,0.278519,0.515814,0.104009,0.146757,0.873534,0.276129,0.407157,0.997786,0.620903,0.257752,0.941284,0.594497,0.739459,0.830614,0.311329,0.113872,0.625402,0.136703,0.837563,0.668286,0.238943,0.547438,0.59208,0.901575,0.321201,0.968924,0.633174,0.867445,0.635281,0.272882,0.980278,0.929725,0.616693,0.582798,0.643707,0.599141,0.304867,0.329625,0.806852,0.559866,0.916429,0.546304,0.359689,0.0614425,0.685241,0.481893,0.369488,0.164456,0.888475,0.447222,0.909214,0.883006,0.204074,0.925254,0.540542,0.824482,0.245101,0.847023,0.0944903,0.980208,0.960186,0.638231,0.183281,0.625394,0.646411,0.0791158,0.20011,0.819848,0.377238,0.668942,0.455321,0.458195,0.207728,0.352178,0.289102,0.825236,0.541932,0.270643,0.673811,0.0931125,0.460157,0.624604,0.860691,0.763359,0.821892,0.42762,0.33793,0.366482,0.247106,0.478761,0.186627,0.876102,0.308779,0.149631,0.5753,0.188056,0.89656,0.732895,0.41816,0.130936,0.949715,0.572791,0.920882,0.932696,0.298772,0.310894,0.607828,0.974074,0.950723,0.18001,0.331512,0.336937,0.0415801,0.873961,0.473083,0.56737,0.0638074,0.536119,0.925918,0.19102,0.163939,0.472434,0.245278,0.200961,0.220003,0.526557,0.166487,0.265319,0.278857,0.639485,0.618047,0.408811,0.692812,0.668649,0.251623,0.596586,0.818295,0.70583,0.0876324,0.775546,0.913665,0.44147,0.692303,0.0606071,0.238329,0.181621,0.818072,0.0162183,0.372278,0.422696,0.537646,0.902742,0.660976,0.618405,0.242452,0.847425,0.430114,0.266923,0.906415,0.696876,0.361538,0.206316,0.0261834,0.0692251,0.563125,0.282567,0.00675547,0.126668,0.471042,0.502106,0.433523,0.630419,0.302494,0.131977,0.203643,0.827784,0.987189,0.0217419,0.0184964,0.201195,0.987365,0.72948,0.358951,0.905521,0.102116,0.298732,0.629879,0.702459,0.710479,0.102142,0.192041,0.853015,0.718578,0.185189,0.259455,0.0293465,0.375047,0.529743,0.492114,0.974749,0.617027,0.406385,0.812788,0.516069,0.854271,0.445873,0.169056,0.155523,0.486162,0.127697,0.8095,0.468129,0.420476,0.470161,0.364745,0.701841,0.916137,0.268221,0.178622,0.00501901,0.479971,0.385427,0.390849,0.465001,0.239557,0.853569,0.371124,0.257756,0.533541,0.948522,0.489833,0.194216,0.118116,0.307825,0.217709,0.417812,0.705807,0.391251,0.87403,0.567935,0.312194,0.797769,0.0182151,0.583263,0.238755,0.930057,0.825922,0.271705,0.495469,0.248582,0.154067,0.438077,0.783945,0.334097,0.722302,0.660346,0.427073,0.838281,0.61115,0.224766,0.0632041,0.204491,0.406116,0.533279,0.969712,0.334932,0.998394,0.623332,0.0375844,0.0299698,0.295625,0.427318,0.659377,0.132201,0.145791,0.213449,0.0399326,0.812527,0.281551,0.8383,0.206808,0.657973,0.25553,0.405325,0.00349098,0.171451,0.281813,0.0991344,0.839518,0.988186,0.333389,0.191565,0.0197684,0.546971,0.334846,0.277076,0.602551,0.935598,0.759978,0.501257,0.338099,0.309901,0.614774,0.634229,0.345883,0.0900171,0.094602,0.240987,0.264592,0.742962,0.678945,0.215314,0.3451,0.988153,0.470852,0.348509,0.663447,0.267024,0.14464,0.774093,0.577407,0.878192,0.354372,0.450252,0.1501,0.315056,0.481829,0.273394,0.112555,0.300803,0.346214,0.814213,0.971483,0.986394,0.189199,0.213501,0.81263,0.494847,0.804913,0.11775,0.791491,0.469004,0.435668,0.0114298,0.27349,0.710412,0.296037,0.548773,0.579081,0.381066,0.0436452,0.325506,0.778295,0.56846,0.80792,0.582085,0.134151,0.00462395,0.122755,0.706336,0.264943,0.658438,0.24751,0.421149,0.895455,0.299241,0.79377,0.992503,0.761179,0.962249,0.63179,0.0410484,0.379719,0.183261,0.182046,0.169111,0.308327,0.141585,0.761318,0.389587,0.562721,0.149379,0.834616,0.536722,0.643016,0.000119925,0.53454,0.218329,0.996608,0.320505,0.416928,0.176463,0.781106,0.244517,0.445831,0.382418,0.569946,0.825448,0.271476,0.0668388,0.0133104,0.885364,0.178222,0.629144,0.300019,0.834488,0.365844,0.922539,0.258478,0.416592,0.613355,0.880008,0.214712,0.907189,0.709054,0.215234,0.991297,0.211371,0.886542,0.0246403,0.668053,0.428499,0.436228,0.763051,0.854511,0.06055,0.44266,0.474249,0.559577,0.0102559,0.127738,0.472842,0.0221723,0.11714,0.242506,0.456881,0.92814,0.887875,0.0730336,0.345955,0.50066,0.695844,0.156082,0.409571,0.345029,0.817743,0.173267,0.389137,0.668646,0.623591,0.0284361,0.73862,0.194294,0.489848,0.0588864,0.962208,0.43861,0.311866,0.699751,0.311656,0.816284,0.687535,0.522206,0.0781325,0.312318,0.984366,0.974877,0.898879,0.765362,0.637149,0.216958,0.255136,0.722512,0.731404,0.879064,0.22777,0.531029,0.676721,0.829884,0.710197,0.296299,0.252162,0.53785,0.687543,0.527092,0.130009,0.682552,0.800651,0.919359,0.420873,0.779365,0.021756,0.217444,0.75375,0.911864,0.644287,0.39808,0.743787,0.0815747,0.0849795,0.271981,0.265512,0.442389,0.3277,0.718703,0.573271,0.187247,0.497986,0.506929,0.212488,0.264411,0.838827,0.0626578,0.598514,0.0663485,0.951626,0.432396,0.333292,0.0836622,0.633656,0.542766,0.028742,0.111161,0.403652,0.0784464,0.500887,0.518729,0.217693,0.488886,0.235815,|0.362832,0.415998,0.392556,0.267092,0.421477,0.493232,0.684668,0.57411,0.426484,0.205423,0.849673,0.921719,0.828912,0.111071,0.915852,0.23694,0.120324,0.341703,0.841083,0.644693,0.183056,0.116787,0.152292,0.758139,0.169523,0.288615,0.883112,0.722069,0.49933,0.0829473,0.410987,0.776587,0.911548,0.971879,0.678537,0.850689,0.916779,0.724214,0.880276,0.0345649,0.613911,0.0839594,0.510616,0.950306,0.632794,0.112101,0.892253,0.946386,0.571354,0.869117,0.96812,0.404971,0.960805,0.900441,0.480101,0.799294,0.070228,0.946361,0.650164,0.0490196,0.317556,0.373631,0.653915,0.289993,0.908754,0.664156,0.865044,0.0952509,0.985362,0.818118,0.240084,0.315758,0.871611,0.679172,0.17927,0.422658,0.229114,0.285352,0.562711,0.527958,0.532837,0.741414,0.3632,0.957203,0.861109,0.335749,0.324627,0.546131,0.914625,0.326799,0.548776,0.63581,0.38125,0.727073,0.574883,0.281229,0.655304,0.17487,0.407323,0.595829,0.927808,0.785078,0.974745,0.934896,0.615836,0.528826,0.230222,0.165859,0.787744,0.863977,0.317437,0.399439,0.297796,0.757268,0.0662102,0.888557,0.121475,0.0339484,0.862463,0.726771,0.0375383,0.650031,0.42197,0.756859,0.174854,0.287563,0.312877,0.00657701,0.587505,0.009381,0.282979,0.0305243,0.676899,0.606801,0.526678,0.539271,0.400008,0.243537,0.683325,0.696795,0.0918053,0.239511,0.903491,0.0814995,0.45447,0.413265,0.928935,0.151432,0.476324,0.731133,0.26613,0.146549,0.482557,0.625443,0.22137,0.420992,0.0730274,0.941278,0.0729796,0.993213,0.653075,0.00738811,0.1449,0.0874971,0.37641,0.897784,0.0969962,0.675554,0.493985,0.883019,0.666778,0.348582,0.299865,0.880898,0.161222,0.152216,0.279916,0.952771,0.90761,0.295546,0.650836,0.436707,0.283104,0.831525,0.633486,0.968581,0.84151,0.0851778,0.578734,0.617684,0.0264622,0.370158,0.181988,0.998884,0.439263,0.529436,0.130734,0.238207,0.523353,0.645632,0.557725,0.604035,0.182303,0.782225,0.0817301,0.112722,0.872634,0.951883,0.875448,0.213093,0.64764,0.582841,0.185418,0.0945641,0.59867,0.250927,0.464879,0.549031,0.912607,0.290136,0.30976,0.931206,0.245378,0.496911,0.0864682,0.214845,0.313521,0.797053,0.2082,0.198517,0.804683,0.21207,0.274412,0.743532,0.241548,0.0309692,0.181487,0.393583,0.796382,0.292996,0.238217,0.576154,0.879625,0.397444,0.439099,0.0764616,0.696484,0.616507,0.581871,0.954809,0.775465,0.849289,0.715475,0.0580973,0.776124,0.769256,0.910223,0.915204,0.409102,0.222678,0.867359,0.868531,0.351859,0.688284,0.0725871,0.49818,0.003021,0.508914,0.0780593,0.21818,0.101347,0.636663,0.566617,0.690166,0.792972,0.423178,0.644634,0.0966349,0.926324,0.409614,0.313608,0.791948,0.179124,0.129596,0.619424,0.576469,0.238243,0.0489723,0.255398,0.0961018,0.454691,0.140873,0.947801,0.861167,0.0078482,0.425134,0.969786,0.213554,0.325358,0.574906,0.96748,0.380322,0.210057,0.0319768,0.83401,0.934511,0.48524,0.302791,0.169944,0.576878,0.529358,0.173311,0.896696,0.283144,0.738745,0.164832,0.0789217,0.734318,0.427375,0.261195,0.775936,0.138885,0.501693,0.941416,0.13886,0.893701,0.769838,0.892758,0.807627,0.426176,0.816357,0.832946,0.904225,0.413383,0.975499,0.789064,0.879381,0.541885,0.330266,0.96327,0.469904,0.974447,0.287095,0.625527,0.217928,0.558922,0.534303,0.249737,0.566877,0.828171,0.845145,0.988341,0.10989,0.749335,0.512335,0.278491,0.653553,0.995537,0.375083,0.658139,0.355883,0.611277,0.143919,0.846324,0.316352,0.557403,0.648336,0.819858,0.432086,0.320378,0.886292,0.793773,0.409569,0.559834,0.644419,0.652681,0.534743,0.405788,0.607328,0.197007,0.628769,0.821936,0.36625,0.631283,0.377167,0.771661,0.967997,0.311293,0.741582,0.885981,0.492632,0.727377,0.240887,0.390613,0.748072,0.639905,0.641029,0.600104,0.681103,0.475964,0.508632,0.560402,0.262841,0.287519,0.730667,0.53936,0.506098,0.475528,0.762684,0.824892,0.980835,0.929552,0.0842693,0.775976,0.566536,0.67852,0.0997677,0.521428,0.679978,0.2973,0.905304,0.109199,0.856658,0.903383,0.634492,0.888465,0.328602,0.373431,0.49098,0.685549,0.168973,0.719853,0.852881,0.188242,0.7576,0.808507,0.324015,0.694259,0.680441,0.0953415,0.916638,0.14058,0.837779,0.728945,0.735238,0.436264,0.708994,0.533471,0.630772,0.235553,0.615583,0.160712,0.945358,0.399536,0.722193,0.922971,0.411458,0.692663,0.420493,0.318167,0.178676,0.360012,0.963638,0.807759,0.698316,0.10448,0.242362,0.322662,0.892613,0.189394,0.0127449,0.31705,0.944836,0.867004,0.0363417,0.314256,0.65733,0.941127,0.461142,0.0335809,0.87931,0.392316,0.0924327,0.0265338,0.0461231,0.0302072,0.622207,0.676708,0.297109,0.267643,0.733823,0.0337858,0.741758,0.790987,0.629416,0.464993,0.0931343,0.233994,0.97234,0.88312,0.259537,0.962818,0.184519,0.886137,0.194671,0.236668,0.790884,0.626181,0.0759143,0.09267,0.516478,0.803423,0.280539,0.00433558,0.733143,0.0885032,0.423419,0.131891,0.690612,0.837412,0.554657,0.235424,0.589396,0.750566,0.457773,0.513899,0.991542,0.131311,0.638148,0.964374,0.705432,0.602255,0.0834517,0.337846,0.756238,0.913581,0.280608,0.842135,0.30531,0.52763,0.723082,0.781691,0.123131,0.635135,0.182355,0.0299494,0.820643,0.94181,0.254784,0.988823,0.614596,0.329377,0.973545,0.474219,0.504306,0.0419766,0.252786,0.13868,0.631461,0.991167,0.549639,0.786945,0.479065,0.636222,0.544527,0.697187,0.992805,0.701987,0.946734,0.546153,0.263632,0.439697,0.960359,0.925633,0.394799,0.0366535,0.982742,0.482278,0.285078,0.980056,0.410318,0.164489,0.0782891,0.60201,0.181105,0.143609,0.92143,0.691808,0.407063,0.500491,0.0894518,0.158826,0.0857183,0.585579,0.471559,0.944092,0.6741,0.829419,0.0299073,0.977045,0.798427,0.575971,0.384158,0.482369,0.426239,0.0686824,0.965502,0.612297,0.572027,0.975651,0.828361,0.784373,0.538475,0.554553,0.758678,0.118986,0.101988,0.904653,0.255647,0.343505,0.0792769,0.087308,0.548791,0.00157613,0.4366,0.601036,0.129504,0.141595,0.959334,0.778864,0.563311,0.337376,0.0788558,0.00529885,0.759938,0.702015,0.422885,0.994835,0.962047,0.25315,0.0741605,0.600656,0.0221865,0.869396,0.0805487,0.711459,0.403468,0.487518,0.793013,0.877563,0.334254,0.38361,0.0950723,0.372308,0.50489,0.111397,0.118564,0.855504,0.946779,0.232798,0.550669,0.309467,0.765559,0.540816,0.96354,0.964639,0.200546,0.791331,0.00527406,0.833389,0.701685,0.629422,0.675899,0.423616,0.868449,0.502568,0.0299599,0.261882,0.844833,0.00410241,0.669085,0.76432,0.0798585,0.661986,0.460825,0.968908,0.0845644,0.349081,0.479065,0.462059,0.467648,0.950887,0.96614,0.476847,0.615221,0.154648,0.136986,0.705135,0.231345,0.759316,0.428328,0.565479,0.365265,0.709938,0.458786,0.695697,0.0895173,0.204662,0.943578,0.668757,0.769151,0.879511,0.516547,0.659786,0.238985,0.786756,0.814673,0.65744,0.195044,0.725347,0.872999,0.128984,0.589852,0.573089,0.572846,0.122887,0.774229,0.971952,0.636932,0.480891,0.609496,0.780959,0.841061,0.833444,0.716263,0.63884,0.474479,0.190279,0.684411,0.868414,0.0635806,0.96898,0.585928,0.106134,0.844247,0.428362,0.110067,0.249172,0.724921,0.191766,0.358952,0.449572,0.603681,0.107382,0.199901,0.835298,0.444889,0.675443,0.608038,0.160805,0.931686,0.415263,0.492578,0.659107,0.879148,0.901199,0.198913,0.14322,0.270573,0.28394,0.299123,0.707032,0.363798,0.908818,0.0820213,0.996096,0.493383,0.311883,0.966043,0.878041,0.646045,0.284564,0.657196,0.0490854,0.132609,0.653383,0.862562,0.659719,0.506638,0.39393,0.898568,0.0590808,0.329449,0.825755,0.842217,0.955308,0.616024,0.714888,0.951437,0.421095,0.495854,0.22914,0.0690317,0.761654,0.745097,0.30413,0.66312,0.128561,0.134929,0.787743,0.0770339,0.260047,0.111537,0.00190842,0.349065,0.877633,0.206413,0.148979,0.77487,0.125178,0.739169,0.0510251,0.748186,0.349817,0.00240928,0.907439,0.859408,0.888315,0.867715,0.936962,0.535147,0.874898,0.0104226,0.861085,0.473909,0.557244,0.622682,0.552053,0.713089,0.635874,0.958826,0.389353,0.257369,0.628608,0.373745,0.83746,0.935525,0.693148,0.0373544,0.779594,0.318714,0.307851,0.582825,0.116845,0.587233,0.495945,0.9991,0.294078,0.906681,0.662598,0.971517,0.969518,0.07805,0.102344,0.531909,0.292077,0.18131,0.471738,0.290085,0.195511,0.109322,0.887831,0.267975,0.874254,0.394117,0.667513,0.601827,0.131977,0.953826,0.226296,0.292116,0.737367,0.362008,0.215735,0.42498,0.516232,0.58674,0.90743,0.735091,0.906084,0.508186,0.566679,0.0332492,0.327929,0.915464,0.618028,0.948008,0.534565,0.880465,0.537882,0.0581343,0.988976,0.977445,0.266254,0.386252,0.205258,0.198673,0.411459,0.465052,0.477221,0.595516,0.976811,0.719514,0.744399,0.995767,0.883714,0.25336,0.737817,0.397636,0.141504,0.993003,0.428286,0.818464,0.59918,0.0103844,0.00277662,0.427259,0.0756741,0.427998,0.480702,0.476005,0.407984,0.251103,0.923271,0.743658,0.813826,0.644313,0.909786,0.417681,0.782927,0.147061,0.891353,0.382825,0.704753,0.455376,0.403802,0.0314342,0.897,0.540243,0.864198,0.286439,0.748959,0.0164374,0.0120516,0.553056,0.554739,0.257026,0.660401,0.244614,0.348681,0.928215,0.270957,0.841699,0.945037,0.0985118,0.0439938,0.212692,0.634614,0.969927,0.612884,0.280541,0.00540662,0.984812,0.693754,0.248534,0.0210665,0.907136,0.321468,0.904504,0.659491,0.992231,0.154073,0.269328,0.163381,0.658217,0.669363,0.993301,0.0831097,0.283942,0.409516,0.676795,0.160789,0.0474073,0.606524,0.575755,0.918401,0.179546,0.0345918,0.275334,0.236938,|0.738481,0.598794,0.288943,0.409349,0.897135,0.139518,0.983968,0.939303,0.0289093,0.408266,0.167756,0.903982,0.776006,0.841303,0.0385965,0.344984,0.412444,0.471652,0.925023,0.234275,0.769389,0.860473,0.110408,0.632845,0.519371,0.207028,0.308646,0.437288,0.611549,0.42512,0.948847,0.733154,0.34708,0.946799,0.675573,0.735571,0.196206,0.699427,0.156561,0.292169,0.903183,0.564088,0.812077,0.974787,0.574346,0.541678,0.644575,0.46901,0.280067,0.372182,0.38725,0.561873,0.872463,0.545726,0.960676,0.482484,0.514293,0.611028,0.797666,0.175365,0.602085,0.361589,0.483383,0.172494,0.0218242,0.0148591,0.164218,0.827889,0.515341,0.893455,0.319202,0.0702402,0.387326,0.0620626,0.114775,0.243654,0.632416,0.579247,0.242444,0.133048,0.117868,0.528886,0.591278,0.518083,0.46452,0.0387871,0.0560748,0.494909,0.507658,0.0588952,0.514634,0.0243043,0.443966,0.344262,0.966647,0.718497,0.228546,0.549249,0.92355,0.590566,0.745592,0.551689,0.376893,0.368337,0.819999,0.524556,0.438721,0.9899,0.967143,0.720568,0.894598,0.22368,0.787147,0.349561,0.425623,0.508232,0.297669,0.896586,0.293527,0.598366,0.0673825,0.932017,0.2858,0.825597,0.00187922,0.483664,0.83717,0.697737,0.441816,0.499353,0.0411289,0.757073,0.548339,0.625962,0.073253,0.535881,0.165557,0.375639,0.74412,0.374008,0.202862,0.624272,0.742438,0.913527,0.211929,0.316906,0.953271,0.197329,0.987775,0.537091,0.288738,0.324034,0.7229,0.423484,0.0647736,0.948503,0.672884,0.671811,0.739653,0.87283,0.696382,0.347598,0.434031,0.185178,0.198705,0.90498,0.564811,0.152856,0.967185,0.811933,0.40163,0.33519,0.56268,0.367493,0.215985,0.856742,0.519052,0.882582,0.0333872,0.440463,0.39687,0.0857502,0.0906736,0.184445,0.560513,0.82346,0.457225,0.293786,0.177496,0.48916,0.16706,0.808658,0.740815,0.825281,0.568685,0.789195,0.930778,0.842888,0.454983,0.890816,0.85083,0.710018,0.445322,0.620488,0.22914,0.0865902,0.818204,0.140848,0.139682,0.460803,0.733852,0.442737,0.195509,0.905067,0.327688,0.550175,0.60682,0.887977,0.945884,0.332081,0.572303,0.548103,0.703256,0.705625,0.855872,0.247533,0.789641,0.557912,0.168856,0.227673,0.007379,0.836157,0.0706446,0.637874,0.431626,0.425437,0.696722,0.367575,0.224054,0.368135,0.831349,0.772544,0.331932,0.913442,0.941084,0.357388,0.0563775,0.477997,0.105826,0.99803,0.783067,0.075086,0.647955,0.261631,0.887999,0.24973,0.2227,0.906453,0.250038,0.498126,0.848941,0.649564,0.240067,0.439026,0.72538,0.397303,0.0819452,0.516221,0.182343,0.827832,0.373371,0.673024,0.0641571,0.768499,0.265035,0.391074,0.824647,0.909766,0.486038,0.892077,0.474278,0.695297,0.677362,0.282684,0.219319,0.263141,0.28727,0.323706,0.0996951,0.16494,0.302871,0.578221,0.137845,0.254425,0.238026,0.451162,0.438987,0.976491,0.793774,0.945052,0.614755,0.243334,0.773557,0.809223,0.606592,0.802455,0.452908,0.793201,0.364747,0.509512,0.313206,0.97923,0.972804,0.109522,0.824941,0.573703,0.0908127,0.144164,0.17221,0.677593,0.646993,0.577968,0.418259,0.830588,0.905922,0.907494,0.37479,0.370201,0.269306,0.497659,0.984082,0.967608,0.941908,0.195965,0.535956,0.965859,0.113384,0.971331,0.660256,0.516714,0.0220668,0.906761,0.434958,0.906829,0.559746,0.429698,0.326873,0.245251,0.662042,0.976183,0.0713248,0.592816,0.772847,0.645432,0.339238,0.134027,0.289781,0.211583,0.653344,0.557918,0.424972,0.424614,0.622582,0.805355,0.548934,0.401885,0.837215,0.628775,0.938224,0.868627,0.25846,0.373883,0.0484256,0.299667,0.281621,0.896053,0.998877,0.328256,0.139628,0.0673324,0.0519779,0.70673,0.0386046,0.170063,0.633215,0.76822,0.768933,0.619069,0.170558,0.274398,0.363151,0.659808,0.558435,0.864439,0.831832,0.414433,0.334679,0.92931,0.0214354,0.432193,0.373295,0.284802,0.312413,0.500748,0.45833,0.639149,0.727495,0.143199,0.406591,0.927215,0.939233,0.528414,0.142006,0.82348,0.720989,0.233487,0.512868,0.139202,0.297099,0.549372,0.161959,0.00126535,0.838876,0.751288,0.849642,0.437564,0.0914777,0.501691,0.77541,0.522808,0.70657,0.458134,0.00770187,0.0583972,0.868643,0.103269,0.159013,0.949165,0.665321,0.420391,0.0978936,0.779307,0.184696,0.750369,0.477465,0.287724,0.211419,0.437038,0.982479,0.493187,0.344107,0.513345,0.485567,0.495333,0.25335,0.0539761,0.53619,0.0683084,0.167087,0.301265,0.936933,0.664502,0.975991,0.836297,0.280329,0.587334,0.34343,0.173636,0.884637,0.756463,0.0454749,0.995845,0.110362,0.753125,0.69072,0.452144,0.635036,0.519407,0.584483,0.730814,0.28907,0.200908,0.246274,0.111601,0.213978,0.123281,0.169688,0.600656,0.302959,0.57231,0.248744,0.015766,0.741295,0.129353,0.991734,0.942071,0.568881,0.193163,0.20063,0.26536,0.851811,0.208362,0.338943,0.327074,0.571088,0.865775,0.825735,0.141168,0.474678,0.480891,0.0406574,0.372525,0.624457,0.699661,0.342775,0.948181,0.0632234,0.795828,0.807387,0.417695,0.406304,0.954453,0.422946,0.882607,0.371962,0.569933,0.915596,0.614472,0.155801,0.40704,0.544839,0.623369,0.235216,0.403197,0.16576,0.695426,0.140162,0.150038,0.382527,0.0116663,0.323156,0.831088,0.566089,0.288887,0.779576,0.202396,0.516347,0.773378,0.353153,0.393785,0.211871,0.343686,0.599131,0.282478,0.233845,0.71153,0.498591,0.00536299,0.927165,0.0636418,0.525669,0.473286,0.247882,0.0177075,0.536457,0.582077,0.993587,0.617272,0.0399612,0.71218,0.784219,0.469981,0.0474507,0.435865,0.514583,0.535053,0.640767,0.680217,0.382248,0.000589967,0.846715,0.151697,0.75621,0.923937,0.237911,0.975955,0.248467,0.992531,0.805573,0.71033,0.792054,0.215463,0.344005,0.436994,0.272749,0.056302,0.670389,0.788084,0.534843,0.912542,0.299973,0.906301,0.864706,0.923227,0.980114,0.355425,0.279862,0.119858,0.711882,0.0497723,0.00567907,0.660522,0.974683,0.112099,0.730998,0.226359,0.873864,0.188445,0.686695,0.867009,0.334089,0.701921,0.481924,0.762149,0.229236,0.878087,0.767115,0.337256,0.797598,0.181709,0.990211,0.355918,0.647165,0.792715,0.893763,0.38734,0.332153,0.281503,0.764119,0.213145,0.584789,0.633999,0.88265,0.720822,0.48535,0.880396,0.233123,0.373645,0.627945,0.610962,0.884806,0.691773,0.415642,0.596014,0.482524,0.279494,0.750366,0.00816184,0.241082,0.841733,0.2221,0.185114,0.679175,0.227926,0.798245,0.53295,0.217977,0.548185,0.581021,0.421397,0.676426,0.219984,0.307639,0.182182,0.260064,0.696701,0.528232,0.151585,0.46795,0.44936,0.149702,0.999268,0.59952,0.469212,0.180237,0.0893176,0.624635,0.0866561,0.18874,0.45649,0.410173,0.856361,0.998732,0.329704,0.0498208,0.021694,0.948402,0.990077,0.320785,0.543321,0.36163,0.339547,0.341973,0.136462,0.602581,0.68157,0.0134589,0.460782,0.94719,0.537392,0.0238225,0.136172,0.146833,0.798289,0.215886,0.634421,0.668484,0.698676,0.25188,0.934907,0.777211,0.597435,0.212731,0.760831,0.745995,0.340465,0.27249,0.219242,0.443166,0.102085,0.344488,0.897456,0.933272,0.529229,0.770406,0.130033,0.0308409,0.938913,0.452495,0.105612,0.933617,0.944596,0.736189,0.026336,0.0335967,0.355809,0.925359,0.626052,0.236466,0.354479,0.00533068,0.393482,0.678591,0.414206,0.759493,0.728788,0.371264,0.8937,0.537514,0.46116,0.050228,0.223532,0.61671,0.127073,0.132598,0.00773412,0.906495,0.274124,0.18676,0.906207,0.224743,0.811912,0.468791,0.252871,0.721856,0.960464,0.163404,0.399374,0.938615,0.297228,0.572273,0.00836104,0.861997,0.260046,0.28651,0.203768,0.303971,0.335299,0.958835,0.589562,0.61787,0.508984,0.508501,0.552267,0.577911,0.79882,0.61664,6.72936e-05,0.425866,0.543763,0.393652,0.884421,0.139968,0.726173,0.305948,0.564839,0.441431,0.921886,0.813408,0.555463,0.935728,0.983513,0.0540833,0.186222,0.889052,0.363217,0.700699,0.710822,0.769685,0.458732,0.193303,0.388095,0.411572,0.204107,0.161866,0.748491,0.531124,0.320803,0.594508,0.28782,0.450019,0.481902,0.697566,0.904964,0.659287,0.968222,0.380037,0.149555,0.125195,0.128782,0.518204,0.880743,0.916317,0.639602,0.40124,0.820961,0.222092,0.22562,0.574567,0.932311,0.667661,0.859707,0.747435,0.423827,0.806107,0.263535,0.053392,0.884846,0.908759,0.780733,0.162852,0.651305,0.0543458,0.41295,0.779521,0.50188,0.202546,0.137452,0.404422,0.551294,0.654493,0.55154,0.826184,0.301004,0.742963,0.405412,0.580052,0.906372,0.567981,0.242571,0.627325,0.348084,0.346519,0.457116,0.495795,0.323851,0.407451,0.988828,0.345178,0.819715,0.806807,0.158217,0.585487,0.656623,0.455638,0.363621,0.970496,0.294741,0.235081,0.621253,0.813452,0.129509,0.585289,0.645396,0.497137,0.886214,0.867035,0.991329,0.923143,0.66363,0.0129757,0.179038,0.214622,0.0599468,0.734337,0.131997,0.774841,0.967982,0.267872,0.825334,0.746436,0.971419,0.181702,0.613079,0.281415,0.166471,0.677943,0.958805,0.263046,0.3287,0.10464,0.465193,0.375805,0.594869,0.559885,0.321247,0.491015,0.843656,0.371224,0.282407,0.563835,0.986096,0.589395,0.550858,0.257058,0.870252,0.274429,0.506917,0.632818,0.560872,0.583559,0.483313,0.40943,0.415309,0.509542,0.0355277,0.552896,0.717795,0.990772,0.00200808,0.158553,0.556032,0.620615,0.346545,0.39955,0.137423,0.300678,0.512057,0.157936,0.593876,0.468063,0.735506,0.878716,0.214,0.405057,0.461174,0.185602,0.485858,0.160045,0.302863,0.409853,0.971012,0.918058,0.459248,0.179278,0.197944,0.716829,0.0545478,0.961427,0.242354,0.653873,0.10839,0.369999,0.210813,0.0460111,0.274067,0.777914,0.774336,0.0414324,0.312837,|0.826249,0.158281,0.893598,0.324449,0.251861,0.582448,0.877982,0.978449,0.515413,0.333206,0.132524,0.100541,0.232602,0.664469,0.597543,0.244788,0.70497,0.489128,0.200296,0.864073,0.498895,0.482597,0.459395,0.149415,0.106123,0.356015,0.254258,0.480638,0.00783002,0.493143,0.827047,0.540579,0.450397,0.230673,0.972066,0.962032,0.667749,0.122974,0.0202284,0.761841,0.424703,0.371925,0.981955,0.654912,0.844312,0.875078,0.601236,0.571289,0.908628,0.990403,0.496113,0.277756,0.261404,0.0539147,0.269025,0.348082,0.238167,0.0339454,0.30879,0.28812,0.808515,0.576801,0.540351,0.313161,0.419968,0.609868,0.540817,0.0572761,0.182044,0.895053,0.210171,0.448178,0.923796,0.321088,0.442636,0.585099,0.430664,0.680011,0.0206203,0.345307,0.622935,0.614159,0.199804,0.426273,0.692426,0.983589,0.406646,0.436785,0.494663,0.680181,0.0873823,0.268959,0.330301,0.199572,0.966431,0.612958,0.635173,0.404431,0.153465,0.715408,0.167426,0.766401,0.180469,0.433513,0.823337,0.441573,0.310168,0.10003,0.897657,0.0934491,0.7679,0.116962,0.255256,0.921656,0.865684,0.679908,0.0768539,0.277337,0.238774,0.94563,0.65187,0.787018,0.35113,0.764615,0.859003,0.919878,0.671037,0.395119,0.777679,0.365355,0.229886,0.330014,0.647927,0.0764714,0.635625,0.274049,0.350673,0.957323,0.641586,0.129204,0.378495,0.700493,0.486966,0.427089,0.133564,0.488837,0.204568,0.520663,0.369684,0.552511,0.0957059,0.117605,0.384562,0.21896,0.946625,0.316662,0.549354,0.975808,0.194123,0.461057,0.946687,0.255521,0.0779215,0.986327,0.162782,0.769099,0.935635,0.709493,0.662692,0.664499,0.767974,0.665759,0.220471,0.255776,0.232616,0.764138,0.0738078,0.800738,0.140145,0.102414,0.122947,0.895005,0.876862,0.655176,0.0754145,0.234222,0.456865,0.847538,0.0178329,0.604752,0.644322,0.229337,0.424195,0.840767,0.931313,0.257609,0.539167,0.885078,0.287867,0.137019,0.672932,0.102925,0.952875,0.61016,0.107027,0.081363,0.458189,0.661739,0.977169,0.350915,0.373437,0.24178,0.471407,0.794774,0.386554,0.742224,0.615357,0.289644,0.555469,0.905994,0.0586972,0.439519,0.531101,0.033178,0.358753,0.4623,0.511777,0.132035,0.595688,0.366497,0.507343,0.49134,0.0482123,0.752229,0.578957,0.64908,0.925678,0.0526798,0.519406,0.747166,0.508494,0.648687,0.916619,0.469713,0.0302916,0.397138,0.223483,0.00751883,0.112446,0.242751,0.623546,0.671199,0.90445,0.721033,0.656382,0.530479,0.56876,0.190123,0.634982,0.252631,0.496508,0.368588,0.481913,0.209897,0.905846,0.103378,0.0396258,0.721593,0.582957,0.0755504,0.762732,0.224433,0.434235,0.665404,0.0679431,0.865267,0.376891,0.575077,0.550491,0.998754,0.15189,0.23229,0.101475,0.53566,0.035144,0.962633,0.652606,0.561566,0.426866,0.947698,0.827229,0.0597062,0.715026,0.615649,0.623852,0.544542,0.189859,0.800942,0.406429,0.499717,0.0564476,0.346677,0.958415,0.585423,0.30809,0.714538,0.97966,0.11722,0.629588,0.383744,0.493143,0.906829,0.212901,0.275295,0.483651,0.539905,0.366247,0.908536,0.786787,0.906435,0.361998,0.958768,0.593601,0.496703,0.923428,0.928245,0.531334,0.424537,0.868405,0.0610004,0.0699844,0.156268,0.819229,0.173967,0.114013,0.260258,0.249514,0.0985399,0.4058,0.745135,0.88869,0.445655,0.324414,0.324326,0.532015,0.337467,0.806184,0.382672,0.602567,0.224659,0.186462,0.577414,0.0643359,0.477428,0.0252888,0.945922,0.529794,0.36768,0.999327,0.940611,0.241866,0.55843,0.714357,0.0255488,0.615478,0.0755336,0.206682,0.012255,0.185608,0.366831,0.806604,0.70137,0.91367,0.653289,0.819786,0.158449,0.271241,0.88489,0.836282,0.275746,0.815931,0.732646,0.932926,0.646327,0.973218,0.786497,0.783414,0.171481,0.199792,0.790101,0.303584,0.378699,0.414639,0.052386,0.455596,0.447342,0.929779,0.843027,0.896728,0.174318,0.17898,0.15053,0.770411,0.0613344,0.310674,0.480897,0.284446,0.255489,0.306167,0.978981,0.309654,0.609658,0.0279685,0.608356,0.0745643,0.333015,0.88596,0.697326,0.192252,0.938584,0.318339,0.442626,0.513131,0.865854,0.890522,0.365654,0.429906,0.346389,0.0204809,0.000655711,0.0325038,0.276677,0.49192,0.350586,0.391677,0.729823,0.910604,0.724031,0.889836,0.925712,0.350917,0.315531,0.0499876,0.382241,0.373622,0.057557,0.390186,0.00528365,0.468868,0.0708152,0.968289,0.887324,0.528029,0.424853,0.848582,0.931628,0.694545,0.922005,0.0266557,0.432795,0.635537,0.623441,0.52296,0.626249,0.503945,0.357287,0.269887,0.214963,0.849754,0.985692,0.424434,0.492985,0.430709,0.495282,0.871436,0.353214,0.318816,0.836113,0.65746,0.73013,0.558674,0.825504,0.394688,0.234129,0.987394,0.933453,0.510014,0.23956,0.727163,0.207861,0.598422,0.701707,0.310306,0.977014,0.124571,0.421186,0.505321,0.840129,0.155627,0.246104,0.203765,0.680791,0.887197,0.308381,0.510956,0.0544376,0.0153287,0.907228,0.422846,0.990711,0.967357,0.21207,0.986398,0.361885,0.0506533,0.449419,0.117871,0.213491,0.958728,0.568898,0.400255,0.557697,0.664151,0.886117,0.34643,0.800191,0.194948,0.447409,0.859191,0.182665,0.549593,0.680647,0.0149649,0.984017,0.227202,0.661754,0.332873,0.531148,0.111848,0.670413,0.562661,0.0686177,0.913399,0.898998,0.7385,0.900044,0.937658,0.454926,0.839844,0.113103,0.564448,0.87108,0.91105,0.390771,0.0116709,0.769505,0.815059,0.221866,0.837277,0.910655,0.594631,0.54697,0.799587,0.460043,0.072886,0.345998,0.422319,0.233519,0.815755,0.252988,0.858823,0.0176003,0.596365,0.722882,0.482598,0.0734971,0.399135,0.124282,0.431336,0.450633,0.394972,0.697217,0.322851,0.929303,0.483126,0.512596,0.473155,0.653229,0.689734,0.241173,0.738118,0.0395369,0.177154,0.994759,0.226292,0.993206,0.653485,0.73115,0.896112,0.230586,0.928932,0.88712,0.547451,0.500123,0.351924,0.283149,0.873253,0.353455,0.789149,0.114202,0.665958,0.694057,0.873582,0.106734,0.450844,0.950694,0.387627,0.725939,0.802904,0.0834584,0.788668,0.936927,0.110147,0.722888,0.524305,0.156097,0.473776,0.503761,0.761137,0.403255,0.292936,0.811694,0.85753,0.307768,0.893754,0.619266,0.810754,0.579592,0.69974,0.240799,0.598937,0.93271,0.504582,0.647758,0.271626,0.305208,0.892127,0.111924,0.55053,0.795737,0.0118383,0.720545,0.118139,0.743205,0.561975,0.0627342,0.732382,0.885651,0.762496,0.918359,0.586676,0.501124,0.910848,0.851407,0.710955,0.786511,0.0169225,0.0475954,0.658975,0.661972,0.311114,0.882875,0.732438,0.597275,0.790875,0.667918,0.828786,0.422421,0.985239,0.171193,0.385634,0.153138,0.214251,0.858924,0.815699,0.340448,0.0481138,0.550783,0.453398,0.834423,0.802968,0.453265,0.652119,0.213801,0.164741,0.966194,0.319954,0.175619,0.709058,0.309723,0.00766933,0.887866,0.740617,0.652727,0.0195276,0.185951,0.356736,0.106812,0.177673,0.294139,0.519858,0.697005,0.9142,0.860196,0.90076,0.54112,0.363311,0.883562,0.785663,0.739104,0.35099,0.688396,0.636913,0.0681286,0.84531,0.206671,0.0746321,0.843864,0.884208,0.64858,0.183081,0.442947,0.331784,0.164806,0.791308,0.79966,0.188878,0.274272,0.174043,0.963947,0.857442,0.193089,0.904134,0.708688,0.631493,0.9037,0.401103,0.951531,0.452636,0.0088473,0.112601,0.965736,0.761726,0.924037,0.918524,0.335315,0.674862,0.582501,0.625879,0.987302,0.586185,0.675583,0.626618,0.877108,0.0794289,0.036635,0.406686,0.0241569,0.172298,0.424142,0.337698,0.428958,0.0804157,0.522,0.151706,0.396858,0.728788,0.59443,0.828988,0.284824,0.388607,0.434245,0.688042,0.0543986,0.846905,0.44156,0.472678,0.443331,0.69211,0.10687,0.146485,0.921521,0.806832,0.41171,0.604794,0.566035,0.618259,0.761297,0.979268,0.154546,0.0624959,0.111327,0.90002,0.999254,0.991108,0.0161698,0.89439,0.449106,0.299451,0.450984,0.756929,0.538126,0.378425,0.743836,0.124893,0.28517,0.639309,0.426564,0.879729,0.878326,0.809638,0.289231,0.276364,0.6757,0.443219,0.542273,0.725165,0.151119,0.0905206,0.431953,0.732285,0.438822,0.371432,0.777449,0.452526,0.28622,0.271775,0.0707381,0.689435,0.375093,0.207908,0.00295305,0.647761,0.171009,0.788471,0.489946,0.0961354,0.595527,0.813562,0.0049457,0.469378,0.376985,0.407871,0.801619,0.42267,0.331127,0.821647,0.492077,0.652562,0.849128,0.518225,0.870065,0.2036,0.974967,0.57511,0.297489,0.742415,0.174556,0.431647,0.848834,0.209966,0.687645,0.688236,0.961973,0.416298,0.645889,0.147133,0.280837,0.0762773,0.380675,0.979992,0.203989,0.180512,0.10553,0.27274,0.263922,0.469677,0.937621,0.159301,0.581765,0.54497,0.159349,0.854202,0.809578,0.225635,0.621674,0.547033,0.647957,0.299339,0.858715,0.443261,0.0837386,0.669728,0.569341,0.420506,0.0144628,0.634608,0.790761,0.131354,0.44759,0.067943,0.76312,0.265458,0.36565,0.17957,0.187747,0.986862,0.169817,0.53262,0.537379,0.0304247,0.490364,0.223128,0.347022,0.209263,0.641249,0.769037,0.231023,0.668853,0.812492,0.826383,0.264356,0.720351,0.779834,0.456349,0.553047,0.890191,0.997272,0.22888,0.836495,0.487805,0.0249016,0.731189,0.923851,0.73821,0.851748,0.0711444,0.736507,0.820899,0.483673,0.884941,0.485268,0.0029003,0.302284,0.589897,0.76135,0.0347237,0.488605,0.892554,0.302235,0.887637,0.772694,0.0989779,0.0690517,0.258581,0.673373,0.23544,0.93336,0.691429,0.528983,0.417297,0.825736,0.312822,0.072126,0.338926,0.878389,0.895035,0.00833529,0.802242,0.704471,0.426022,0.383894,0.829775,0.783592,0.982401,0.518663,0.440006,0.224541,0.324386,0.579812,0.853722,0.734619,0.698743,0.00745839,0.938248,0.390254,0.824903,0.237856,0.692772,0.253883,|0.941898,0.161278,0.222793,0.683755,0.193286,0.320516,0.43759,0.955287,0.546705,0.976803,0.80907,0.00533003,0.51756,0.477455,0.738258,0.741816,0.178426,0.791001,0.969924,0.809222,0.784041,0.66984,0.854347,0.089112,0.924463,0.367941,0.585916,0.763574,0.836242,0.342838,0.845876,0.806842,0.300289,0.389413,0.609316,0.996658,0.181645,0.997239,0.756082,0.00429833,0.0215594,0.442082,0.990141,0.354848,0.595014,0.196337,0.410797,0.0137994,0.903186,0.851647,0.359106,0.135071,0.675822,0.431888,0.663381,0.238878,0.361698,0.107097,0.543591,0.458798,0.576264,0.583567,0.937892,0.108497,0.623635,0.995493,0.103856,0.697445,0.13575,0.390975,0.280245,0.292732,0.988375,0.0834112,0.646284,0.379808,0.0976894,0.0425047,0.169989,0.439855,0.471671,0.114923,0.533072,0.510908,0.463299,0.883651,0.258773,0.917746,0.0931336,0.652128,0.295699,0.375675,0.300188,0.814155,0.893542,0.192634,0.479001,0.0770457,0.836869,0.503724,0.702743,0.974697,0.922116,0.700502,0.484546,0.589293,0.0455816,0.306589,0.578643,0.323792,0.950245,0.0785182,0.70403,0.000848234,0.87556,0.335094,0.114644,0.384515,0.98786,0.234307,0.749171,0.266392,0.174478,0.861814,0.495151,0.0753466,0.511394,0.749285,0.4215,0.075214,0.627391,0.0531813,0.242756,0.153547,0.544512,0.213656,0.743722,0.996607,0.378002,0.855075,0.0788959,0.373693,0.373653,0.27186,0.913422,0.977919,0.0317375,0.251817,0.312976,0.237331,0.0786695,0.981073,0.144443,0.643957,0.771608,0.465132,0.319552,0.0533797,0.0617323,0.773887,0.133439,0.672868,0.659765,0.821661,0.83389,0.944345,0.95112,0.227469,0.729839,0.112157,0.665638,0.216187,0.113894,0.687057,0.804346,0.290702,0.918639,0.823899,0.817866,0.487278,0.942854,0.707141,0.419672,0.267885,0.895389,0.681309,0.738657,0.970354,0.584351,0.393928,0.0716442,0.588951,0.151936,0.201706,0.429825,0.65379,0.579806,0.185189,0.173804,0.643114,0.0511252,0.477261,0.799564,0.0563854,0.642112,0.588875,0.787321,0.0522547,0.811422,0.317609,0.241274,0.576905,0.611618,0.507255,0.90838,0.958756,0.815629,0.796748,0.46105,0.352223,0.592654,0.592175,0.421795,0.0594351,0.150894,0.190169,0.267407,0.0847639,0.0978304,0.926198,0.77358,0.527971,0.747185,0.952435,0.278429,0.882808,0.393506,0.0165567,0.984508,0.0654654,0.966652,0.484734,0.114735,0.476619,0.50458,0.00672626,0.530993,0.967873,0.209285,0.73622,0.678697,0.0198908,0.533827,0.0261672,0.143304,0.127092,0.100845,0.975343,0.399736,0.964704,0.935739,0.735808,0.0727581,0.207088,0.218322,0.258913,0.625185,0.0823968,0.0528954,0.793118,0.143601,0.651423,0.145099,0.338506,0.581018,0.459146,0.128289,0.393742,0.0438231,0.818147,0.646628,0.0179656,0.429796,0.383013,0.566485,0.719409,0.410744,0.0110747,0.324488,0.936004,0.706946,0.927858,0.883144,0.117265,0.284741,0.554586,0.7578,0.296533,0.269736,0.410889,0.292957,0.728681,0.466005,0.59245,0.735795,0.776668,0.387875,0.527043,0.897258,0.291268,0.726545,0.703014,0.421189,0.0663999,0.539802,0.233327,0.042562,0.0658798,0.913974,0.480132,0.543329,0.343017,0.0781121,0.483746,0.236128,0.746977,0.397568,0.614457,0.414137,0.601497,0.157684,0.148035,0.905007,0.333768,0.73262,0.0539606,0.316161,0.716276,0.434685,0.377862,0.0850694,0.514526,0.0979648,0.685769,0.0596752,0.372405,0.679669,0.925375,0.504898,0.922522,0.315643,0.483446,0.427233,0.640913,0.741694,0.0413126,0.702994,0.291582,0.212804,0.651021,0.823514,0.189521,0.401455,0.326873,0.131021,0.726559,0.637833,0.696617,0.640071,0.916433,0.0247667,0.790709,0.469471,0.377126,0.848445,0.738105,0.930231,0.695908,0.185888,0.774479,0.809615,0.101851,0.357224,0.0258911,0.176994,0.62265,0.131071,0.710707,0.953975,0.974739,0.640467,0.193739,0.540438,0.434417,0.631564,0.808638,0.478216,0.0169091,0.699105,0.265992,0.929525,0.647017,0.89427,0.228058,0.32197,0.387427,0.656714,0.546179,0.242286,0.557433,0.0786891,0.77131,0.0218206,0.781229,0.0584952,0.208494,0.544924,0.572008,0.284607,0.339208,0.31728,0.0925841,0.788437,0.12323,0.90586,0.116764,0.460892,0.667289,0.870165,0.562949,0.949112,0.653892,0.469,0.325486,0.175814,0.877754,0.076771,0.440206,0.707307,0.588713,0.750578,0.670715,0.642657,0.749695,0.0630836,0.616617,0.596879,0.744161,0.0336467,0.0142869,0.514669,0.836859,0.752944,0.0941542,0.963755,0.325541,0.466751,0.38682,0.678416,0.17962,0.274388,0.450356,0.713608,0.877097,0.636929,0.610746,0.321384,0.297693,0.523991,0.872692,0.96654,0.382424,0.488175,0.610169,0.83187,0.0709263,0.00233585,0.151532,0.606195,0.46406,0.175294,0.754497,0.778577,0.0424587,0.942949,0.62558,0.549278,0.664192,0.608516,0.277253,0.879339,0.751911,0.0892388,0.301326,0.465598,0.0755022,0.907453,0.715895,0.906384,0.792688,0.743865,0.433217,0.681013,0.91269,0.911938,0.425292,0.643149,0.896537,0.235441,0.895971,0.927038,0.511362,0.199491,0.980504,0.317435,0.833076,0.504014,0.613055,0.197232,0.0332823,0.111356,0.388653,0.851254,0.800152,0.0471255,0.19327,0.61877,0.835845,0.779061,0.536979,0.196486,0.86534,0.379534,0.639147,0.586117,0.347231,0.439196,0.364293,0.166195,0.0535911,0.982515,0.679831,0.114422,0.640386,0.119316,0.437099,0.401001,0.927939,0.72814,0.508721,0.694498,0.318253,0.953891,0.305872,0.20591,0.395702,0.603194,0.745757,0.939569,0.17751,0.14666,0.333061,0.769334,0.370122,0.67133,0.503432,0.781271,0.109045,0.347662,0.358421,0.323165,0.281532,0.417811,0.641443,0.45312,0.696639,0.237137,0.327256,0.173786,0.432315,0.819317,0.62323,0.62709,0.12359,0.968836,0.347798,0.353606,0.388874,0.110225,0.822724,0.0544855,0.461343,0.727789,0.664071,0.865686,0.713571,0.869723,0.718409,0.382713,0.970846,0.0190687,0.904776,0.396049,0.971187,0.0314389,0.0420645,0.0063737,0.317109,0.405539,0.314311,0.11132,0.832499,0.16336,0.565081,0.742764,0.516791,0.315369,0.491198,0.304765,0.640582,0.694278,0.0829499,0.99668,0.783851,0.669858,0.242681,0.56574,0.807445,0.669465,0.597813,0.433116,0.992416,0.682657,0.664078,0.34196,0.258854,0.431578,0.494853,0.37459,0.527385,0.640715,0.242964,0.0386032,0.521628,0.216125,0.866447,0.812141,0.867786,0.274497,0.304563,0.57245,0.536468,0.38608,0.266051,0.976784,0.960257,0.700262,0.865573,0.103201,0.484709,0.460362,0.952876,0.154794,0.142786,0.249804,0.245034,0.65646,0.0824913,0.412222,0.887612,0.51214,0.250486,0.357677,0.161147,0.837373,0.549847,0.576346,0.644536,0.780656,0.61716,0.193814,0.653556,0.919203,0.369293,0.741844,0.577112,0.200012,0.206152,0.880903,0.7082,0.18415,0.0179055,0.135489,0.597451,0.611733,0.507411,0.871706,0.0940073,0.692661,0.236663,0.294527,0.342665,0.329802,0.283453,0.679222,0.261804,0.628991,0.754905,0.0614286,0.266205,0.54254,0.636073,0.0846111,0.539808,0.201326,0.016469,0.352312,0.0462682,0.729577,0.801775,0.466076,0.489315,0.483834,0.45893,0.444575,0.630764,0.715091,0.174787,0.0419326,0.637448,0.365284,0.602635,0.297657,0.92476,0.556089,0.22078,0.689261,0.408976,0.0987439,0.499637,0.706523,0.623295,0.559249,0.149201,0.507805,0.723325,0.807541,0.346989,0.408541,0.833255,0.306908,0.701376,0.203942,0.106488,0.744849,0.428483,0.17526,0.210002,0.355666,0.38541,0.872636,0.113328,0.148708,0.153754,0.102464,0.675667,0.813619,0.312641,0.0498389,0.698174,0.51614,0.739318,0.929061,0.744938,0.522834,0.85049,0.353936,0.238595,0.616866,0.547035,0.538507,0.763418,0.806942,0.239258,0.320727,0.768173,0.656503,0.522956,0.998311,0.577385,0.397343,0.371738,0.940323,0.999482,0.727774,0.662335,0.415772,0.0514839,0.715173,0.663656,0.121563,0.708304,0.581254,0.349151,0.760564,0.923758,0.433796,0.181937,0.153942,0.575423,0.935681,0.637125,0.901309,0.405974,0.508753,0.612984,0.815483,0.969487,0.980479,0.771004,0.122886,0.268804,0.413213,0.890618,0.89764,0.615676,0.825463,0.645486,0.520723,0.426892,0.812264,0.218743,0.971001,0.496291,0.956188,0.615688,0.165954,0.0768782,0.890342,0.0284647,0.510964,0.65602,0.344357,0.474743,0.549212,0.174147,0.272521,0.880087,0.257217,0.794433,0.8496,0.348904,0.579946,0.357733,0.365743,0.310773,0.166984,0.590846,0.551488,0.000124395,0.190799,0.102207,0.348715,0.504292,0.0125237,0.618115,0.181992,0.564646,0.728663,0.106083,0.111374,0.447097,0.478646,0.0986965,0.0807076,0.212507,0.0216793,0.318142,0.078353,0.86186,0.656152,0.952772,0.664222,0.0110365,0.860692,0.784468,0.793685,0.78878,0.50879,0.614416,0.110527,0.395953,0.681197,0.477688,0.188218,0.487732,0.794276,0.951485,0.685001,0.553141,0.780534,0.503469,0.715112,0.276649,0.347198,0.412467,0.293966,0.0269931,0.0125961,0.262012,0.71295,0.43284,0.495315,0.572679,0.247557,0.694571,0.428344,0.623766,0.439296,0.32965,0.113838,0.67166,0.212706,0.505051,0.772305,0.000435293,0.451766,0.220852,0.224247,0.946381,0.91139,0.481755,0.151434,0.203714,0.374915,0.706681,0.0827626,0.997633,0.805615,0.924715,0.236099,0.047454,0.590979,0.896678,0.84417,0.921196,0.0540397,0.192331,0.500411,0.580894,0.713306,0.864967,0.377996,0.87923,0.59196,0.189967,0.0429149,0.156711,0.783887,0.0295722,0.638046,0.749351,0.0164585,0.149015,0.933125,0.547525,0.280158,0.478011,0.343627,0.297552,0.846818,0.160196,0.143415,0.601368,0.700447,0.87216,0.249344,0.179953,0.199792,0.865045,0.0449721,0.607691,0.528053,0.14071,0.611923,0.0338562,0.520575,0.700977,0.491149,0.928967,0.207154,0.628815,0.784306,0.19546,0.840517,0.140695,0.825599,0.352604,0.161207,0.589477,|0.567316,0.110419,0.0586389,0.782297,0.672557,0.39824,0.0449813,0.325383,0.548371,0.678666,0.386264,0.823245,0.0991797,0.518189,0.244265,0.405478,0.784582,0.238028,0.109817,0.817687,0.651687,0.354826,0.973548,0.45778,0.313019,0.736027,0.17737,0.0936573,0.962156,0.985496,0.842956,0.536703,0.056289,0.36409,0.240403,0.0454378,0.697972,0.501242,0.492759,0.165191,0.499361,0.225062,0.990096,0.632858,0.935145,0.52297,0.382672,0.934165,0.104609,0.523914,0.928692,0.96761,0.559284,0.46745,0.283651,0.489857,0.276969,0.489958,0.834538,0.823919,0.30072,0.0779999,0.692075,0.0041495,0.46691,0.526817,0.315695,0.482051,0.723635,0.349538,0.676153,0.111904,0.0860709,0.759776,0.509004,0.468008,0.0693153,0.648016,0.833392,0.413549,0.201088,0.40869,0.914585,0.13928,0.877459,0.998451,0.0290647,0.529795,0.868366,0.64621,0.572287,0.113487,0.490569,0.808296,0.110696,0.318428,0.146966,0.675823,0.769575,0.989537,0.494922,0.799262,0.662198,0.253753,0.851913,0.136181,0.83973,0.874188,0.602837,0.548413,0.103985,0.23736,0.944669,0.308975,0.780688,0.0724233,0.53499,0.331752,0.859902,0.314762,0.482994,0.0437021,0.768381,0.275653,0.33357,0.471602,0.016392,0.380443,0.600757,0.3372,0.894584,0.0217131,0.995323,0.84018,0.114723,0.580298,0.034353,0.884351,0.704832,0.304319,0.155254,0.383346,0.0284769,0.73824,0.667484,0.965666,0.0805972,0.102559,0.470727,0.705803,0.0626503,0.348836,0.641265,0.504005,0.404388,0.229581,0.65396,0.465308,0.634195,0.474258,0.405712,0.335201,0.0365191,0.372742,0.540337,0.145973,0.636707,0.755645,0.33456,0.652761,0.511465,0.673824,0.182764,0.966952,0.569009,0.64027,0.776009,0.50146,0.835211,0.0757111,0.294088,0.41712,0.287893,0.311621,0.523057,0.496582,0.784258,0.879941,0.483815,0.660984,0.260928,0.756004,0.115999,0.928166,0.407761,0.277031,0.994451,0.482498,0.495978,0.133695,0.780254,0.264402,0.468416,0.0187636,0.219018,0.71708,0.826994,0.697801,0.475335,0.122228,0.108864,0.814786,0.449526,0.452982,0.152696,0.816794,0.476867,0.0343874,0.7884,0.772375,0.154535,0.201872,0.0145097,0.787019,0.367516,0.610886,0.599976,0.584554,0.800764,0.963117,0.525594,0.617442,0.442763,0.230762,0.0638299,0.0942512,0.0253745,0.840308,0.820594,0.979222,0.0718645,0.853455,0.0585482,0.311915,0.537339,0.386869,0.269795,0.888161,0.325584,0.134129,0.305918,0.744378,0.817682,0.397362,0.19702,0.4707,0.870405,0.310707,0.948722,0.891127,0.660102,0.709176,0.447957,0.888954,0.533449,0.730444,0.681857,0.0277784,0.0365713,0.323961,0.30273,0.254301,0.979039,0.852723,0.0847896,0.433726,0.369251,0.594703,0.0977383,0.291091,0.407277,0.349848,0.00397205,0.232555,0.529283,0.0594135,0.54969,0.287635,0.353107,0.424969,0.533473,0.856141,0.793742,0.184514,0.522325,0.0939579,0.21412,0.389115,0.738937,0.429008,0.117475,0.130705,0.267892,0.325338,0.889269,0.0549595,0.75474,0.382885,0.256692,0.343916,0.652697,0.954719,0.904529,0.960705,0.810765,0.51716,0.507871,0.826643,0.451156,0.328534,0.0814961,0.051304,0.332963,0.651396,0.709266,0.991879,0.0747429,0.0890618,0.871893,0.194519,0.294822,0.0549305,0.963056,0.724834,0.235032,0.327006,0.297396,0.446595,0.272829,0.611168,0.414074,0.224015,0.4977,0.401696,0.938597,0.663248,0.436664,0.591648,0.795714,0.138656,0.880159,0.325046,0.680407,0.392862,0.664513,0.0434158,0.891918,0.144026,0.315969,0.829284,0.33182,0.285192,0.164578,0.992301,0.743693,0.966856,0.0508708,0.0503651,0.444537,0.140159,0.452805,0.185301,0.0357004,0.892536,0.305647,0.103311,0.895758,0.929952,0.458719,0.958732,0.770132,0.0786636,0.295683,0.857821,0.413461,0.890507,0.411545,0.562413,0.785662,0.536682,0.865493,0.0776731,0.507947,0.127957,0.728201,0.691408,0.925803,0.0934908,0.106029,0.183976,0.969133,0.0220426,0.884211,0.0229771,0.771291,0.116899,0.674863,0.707474,0.0543333,0.485516,0.222295,0.399175,0.803931,0.72446,0.100078,0.0857872,0.630055,0.465666,0.341349,0.639336,0.431172,0.915577,0.787496,0.851666,0.538641,0.242093,0.663004,0.71461,0.341996,0.439395,0.383198,0.406996,0.333592,0.962879,0.679632,0.81075,0.625771,0.11401,0.679127,0.500758,0.191647,0.600204,0.243848,0.899503,0.814178,0.540568,0.968697,0.116003,0.011511,0.908058,0.75626,0.371005,0.234548,0.657403,0.583417,0.963181,0.856783,0.372368,0.309991,0.22348,0.0220404,0.399303,0.476755,0.534813,0.677434,0.902759,0.746131,0.947953,0.042556,0.0334875,0.641715,0.959347,0.282352,0.927458,0.646051,0.898805,0.681314,0.3605,0.873342,0.263312,0.0633947,0.773337,0.431829,0.0413731,0.705677,0.873783,0.915266,0.182533,0.138709,0.850154,0.755651,0.597856,0.26947,0.850879,0.822009,0.817208,0.846243,0.0476862,0.514658,0.493255,0.390851,0.273294,0.281176,0.772311,0.518216,0.850568,0.492407,0.129567,0.927968,0.0211525,0.601054,0.130541,0.00153595,0.762282,0.527277,0.956724,0.0771003,0.754225,0.103097,0.91833,0.541655,0.365422,0.325116,0.0513855,0.679262,0.34683,0.306304,0.46042,0.112851,0.989615,0.934676,0.156645,0.845554,0.372256,0.80461,0.89956,0.44985,0.995637,0.767329,0.956456,0.292549,0.685131,0.339251,0.624742,0.482195,0.272529,0.665364,0.582388,0.603941,0.572246,0.34416,0.284784,0.701104,0.519934,0.343916,0.519682,0.815571,0.172895,0.744894,0.192786,0.340641,0.109434,0.788584,0.00189441,0.928286,0.740313,0.893233,0.220891,0.510821,0.845639,0.418453,0.638235,0.271019,0.26837,0.134553,0.208197,0.654163,0.239954,0.521487,0.402164,0.400735,0.440004,0.793022,0.23843,0.267761,0.410358,0.537463,0.59104,0.0899979,0.997479,0.596654,0.00990623,0.155791,0.230118,0.339267,0.790319,0.606603,0.998745,0.52621,0.344361,0.878777,0.1262,0.502369,0.730228,0.746746,0.938278,0.330151,0.955683,0.935534,0.300747,0.83276,0.770284,0.755426,0.598259,0.972491,0.263688,0.777488,0.141955,0.423908,0.707937,0.659206,0.641076,0.951437,0.154955,0.0110183,0.735448,0.767753,0.480558,0.101012,0.517468,0.831854,0.668637,0.940498,0.461552,0.435436,0.18175,0.484211,0.454292,0.997186,0.889108,0.782948,0.968878,0.0859433,0.51685,0.699684,0.00592971,0.528652,0.468651,0.422087,0.0736117,0.836723,0.528657,0.866032,0.178223,0.558585,0.832761,0.567557,0.227705,0.74746,0.117979,0.189109,0.579289,0.800658,0.504807,0.4029,0.393514,0.44414,0.899145,0.680571,0.939784,0.802657,0.922769,0.334463,0.461597,0.81544,0.0556907,0.179249,0.430316,0.444395,0.214221,0.897507,0.329288,0.0746458,0.88848,0.824592,0.75213,0.358778,0.246875,0.386511,0.314229,0.442973,0.691239,0.10747,0.896506,0.534493,0.415331,0.799638,0.220659,0.0682726,0.330158,0.80461,0.872697,0.922405,0.172073,0.587886,0.543423,0.703327,0.290709,0.514773,0.386279,0.267756,0.493347,0.957076,0.355778,0.287535,0.214493,0.971574,0.0961877,0.0642857,0.1478,0.128219,0.00942868,0.0653294,0.18795,0.678875,0.188976,0.284742,0.776644,0.0577548,0.705526,0.924298,0.240407,0.263455,0.547519,0.916098,0.0854788,0.0488665,0.0104352,0.168676,0.33709,0.92951,0.745587,0.724518,0.458721,0.752777,0.471186,0.973565,0.260615,0.261534,0.141817,0.56957,0.773946,0.70103,0.0782638,0.160411,0.506202,0.780952,0.703702,0.851948,0.942438,0.390127,0.624412,0.650101,0.313215,0.628493,0.0663378,0.636213,0.790522,0.871986,0.396498,0.650121,0.656928,0.554244,0.591569,0.554757,0.720868,0.76056,0.362887,0.449296,0.248265,0.976106,0.181895,0.744646,0.539152,0.18661,0.136394,0.740285,0.552225,0.833586,0.220624,0.528868,0.605686,0.890179,0.910826,0.0657037,0.739587,0.35464,0.871023,0.627815,0.11828,0.462314,0.65265,0.58799,0.323114,0.859714,0.462337,0.111091,0.15136,0.21235,0.441499,0.226376,0.972671,0.569854,0.0879529,0.68202,0.877388,0.55028,0.227473,0.570662,0.308063,0.321135,0.818866,0.480482,0.249158,0.794397,0.437669,0.298167,0.8601,0.114404,0.150129,0.810871,0.394519,0.719951,0.306212,0.206445,0.743209,0.357801,0.720615,0.21581,0.486002,0.686954,0.281531,0.592344,0.814295,0.930947,0.389095,0.301387,0.112754,0.587259,0.184895,0.985285,0.643375,0.885698,0.282342,0.959785,0.142335,0.307438,0.531966,0.697422,0.779909,0.53386,0.547527,0.411733,0.694324,0.629347,0.47418,0.00749099,0.0780516,0.44417,0.398632,0.45162,0.883568,0.788516,0.569011,0.417001,0.175356,0.0543208,0.378759,0.200931,0.90029,0.514244,0.714222,0.637565,0.829105,0.919777,0.0917511,0.142441,0.417407,0.210881,0.864396,0.74928,0.110785,0.0785176,0.890739,0.763534,0.673672,0.494169,0.625545,0.1214,0.439864,0.475338,0.479768,0.760534,0.92945,0.522129,0.343921,0.383077,0.67247,0.368522,0.907308,0.458541,0.624363,0.537417,0.195723,0.23564,0.139066,0.120827,0.469277,0.810191,0.440974,0.255702,0.244788,0.190627,0.404063,0.448735,0.734896,0.621801,0.445399,0.720562,0.809856,0.848888,0.163543,0.457184,0.0527229,0.390182,0.893434,0.413656,0.247472,0.79277,0.963411,0.759533,0.0959406,0.920552,0.392439,0.105479,0.690222,0.0628427,0.125067,0.51892,0.260271,0.84276,0.811748,0.569156,0.296208,0.220549,0.392907,0.178985,0.312392,0.00137639,0.01497,0.947217,0.897194,0.976072,0.792832,0.276065,0.663717,0.526301,0.633251,0.63615,0.149468,0.439577,0.0110944,0.592219,0.274338,0.375877,0.313061,0.919856,0.535515,0.181872,0.423651,0.953876,0.92602,0.308461,0.668406,0.953953,0.948847,0.539648,0.797421,0.11259,0.571831,0.667878,0.995822,0.719951,0.221635,0.0160969,0.90039,0.0516197,0.407755,0.434112,0.907833,|0.329303,0.0923921,0.702375,0.144664,0.985239,0.340637,0.287829,0.711462,0.417783,0.0712754,0.0615754,0.977815,0.825077,0.85993,0.92456,0.673611,0.776692,0.521602,0.669101,0.355005,0.673522,0.376946,0.332679,0.858148,0.796415,0.70978,0.613397,0.0922676,0.387077,0.85467,0.421002,0.356407,0.956778,0.75188,0.203807,0.797224,0.56792,0.800914,0.351587,0.087216,0.0386816,0.596441,0.713779,0.139209,0.524827,0.122164,0.72632,0.561449,0.739661,0.380229,0.948491,0.887422,0.345939,0.323824,0.68341,0.989026,0.221404,0.62621,0.690197,0.680522,0.831908,0.0684142,0.543142,0.126351,0.901953,0.399788,0.974323,0.254805,0.859855,0.926426,0.733481,0.755318,0.908825,0.850766,0.0559918,0.0498815,0.645601,0.717254,0.73005,0.173018,0.31618,0.93169,0.608922,0.10895,0.265246,0.139851,0.813124,0.870785,0.544197,0.59577,0.225037,0.804115,0.71317,0.503043,0.817696,0.950968,0.504867,0.0705836,0.451294,0.201205,0.53779,0.819773,0.670806,0.386126,0.314731,0.0945023,0.617424,0.735843,0.869162,0.00886369,0.706054,0.900426,0.80331,0.436527,0.825671,0.768238,0.892528,0.623974,0.336417,0.712945,0.958504,0.518814,0.906988,0.298199,0.258658,0.523186,0.445868,0.270967,0.179001,0.194628,0.289985,0.725645,0.027117,0.0365613,0.662871,0.628646,0.0796071,0.177711,0.0419874,0.300862,0.43855,0.549106,0.109263,0.487631,0.0600783,0.633107,0.683087,0.786713,0.736393,0.796205,0.543285,0.132338,0.891353,0.470714,0.130288,0.802907,0.424261,0.784089,0.770732,0.0136575,0.656207,0.166319,0.0920364,0.787896,0.141426,0.680352,0.773536,0.560513,0.485841,0.272911,0.675199,0.180225,0.602233,0.307231,0.233832,0.890569,0.519929,0.813893,0.00171548,0.958758,0.886943,0.729529,0.17882,0.4399,0.140113,0.832922,0.888878,0.577538,0.880168,0.0440931,0.951466,0.530234,0.943576,0.251158,0.703265,0.290124,0.804693,0.585048,0.109093,0.818859,0.548957,0.602866,0.133694,0.869224,0.66482,0.622953,0.375608,0.795162,0.702581,0.832723,0.754705,0.374479,0.928322,0.458293,0.926507,0.544789,0.423361,0.0170803,0.95629,0.919166,0.754961,0.872679,0.318919,0.470472,0.164385,0.694719,0.76171,0.768565,0.713028,0.346328,0.718202,0.642868,0.73435,0.160757,0.314805,0.908778,0.739951,0.32177,0.51389,0.968585,0.798589,0.678803,0.87301,0.580608,0.089085,0.951533,0.970083,0.953882,0.553789,0.0727352,0.904271,0.584682,0.104032,0.0743082,0.821616,0.337817,0.204152,0.83239,0.95862,0.595629,0.236394,0.236034,0.659287,0.638152,0.450979,0.0172135,0.425193,0.42228,0.975939,0.493306,0.16145,0.441849,0.425746,0.75111,0.0491722,0.470147,0.827752,0.307198,0.667045,0.424922,0.301912,0.739941,0.0803829,0.203201,0.294297,0.627436,0.944683,0.637884,0.42436,0.348522,0.118713,0.188403,0.434486,0.427677,0.180686,0.67749,0.682481,0.869661,0.0320446,0.889609,0.273851,0.810648,0.394475,0.545498,0.295401,0.900378,0.347022,0.864599,0.306841,0.891834,0.879241,0.630275,0.289308,0.478494,0.0984635,0.0103779,0.962165,0.65839,0.0267119,0.75969,0.077875,0.792642,0.609422,0.0268134,0.135564,0.685734,0.617444,0.887778,0.394798,0.29143,0.679324,0.319698,0.620694,0.093697,0.309997,0.245248,0.678175,0.18269,0.75494,0.396163,0.226079,0.706889,0.446908,0.363449,0.267297,0.264455,0.433901,0.385662,0.72951,0.587866,0.976412,0.918595,0.165753,0.300279,0.0694079,0.68119,0.610031,0.907689,0.195805,0.466787,0.252697,0.532419,0.730963,0.882967,0.107165,0.601871,0.474286,0.0583122,0.731899,0.830658,0.945187,0.242051,0.0327378,0.855894,0.0935773,0.830848,0.0225035,0.457869,0.341747,0.0287266,0.965399,0.390073,0.432964,0.312347,0.600587,0.173963,0.0466086,0.771704,0.302329,0.452423,0.902781,0.814426,0.24527,0.776458,0.76109,0.614057,0.143338,0.287158,0.723297,0.106231,0.442468,0.547339,0.846359,0.281891,0.247971,0.946493,0.720698,0.270061,0.300508,0.575234,0.236892,0.375393,0.622486,0.73535,0.161386,0.300838,0.0731134,0.656592,0.846422,0.124378,0.0186427,0.611836,0.88668,0.0157517,0.316376,0.323241,0.653442,0.144141,0.496159,0.174638,0.483972,0.725683,0.724532,0.815421,0.178989,0.835608,0.674292,0.351834,0.726241,0.170825,0.803765,0.0525293,0.339732,0.610033,0.373408,0.293094,0.26487,0.158263,0.945436,0.455319,0.153137,0.682772,0.870297,0.326469,0.333394,0.249408,0.666297,0.951323,0.448405,0.734485,0.0235962,0.769636,0.894275,0.123976,0.87285,0.982478,0.956807,0.0451433,0.432309,0.0647004,0.068961,0.651127,0.823042,0.791959,0.775514,0.594427,0.149319,0.113387,0.257006,0.950698,0.588401,0.603024,0.0161999,0.541107,0.66488,0.815427,0.113232,0.61648,0.658049,0.0106167,0.555135,0.339842,0.223526,0.701385,0.684053,0.657319,0.973823,0.373025,0.0874954,0.269119,0.545051,0.462078,0.668243,0.156354,0.192782,0.164184,0.243213,0.675915,0.352825,0.923082,0.655356,0.630821,0.679231,0.341692,0.785067,0.820258,0.96672,0.858707,0.15299,0.397462,0.1925,0.528722,0.993984,0.580346,0.39089,0.626602,0.943848,0.737649,0.975866,0.764442,0.456925,0.259259,0.852184,0.631264,0.204531,0.864367,0.3098,0.000571847,0.961203,0.842299,0.318025,0.141149,0.623743,0.516299,0.605929,0.741366,0.457414,0.156233,0.237476,0.377805,0.534467,0.600774,0.724291,0.456189,0.586592,0.862602,0.0550858,0.370777,0.823659,0.797742,0.588051,0.352457,0.193206,0.204087,0.636491,0.137793,0.653529,0.1535,0.301759,0.191864,0.0304627,0.672209,0.946658,0.394578,0.737372,0.745194,0.998521,0.0357536,0.31947,0.396616,0.158963,0.79078,0.47645,0.5042,0.733115,0.168675,0.737145,0.791795,0.790191,0.579439,0.0792349,0.260572,0.481831,0.288132,0.49765,0.665969,0.283895,0.699431,0.853919,0.31091,0.0339516,0.281761,0.213048,0.779988,0.678053,0.793317,0.261455,0.717003,0.647014,0.429983,0.679505,0.419333,0.226711,0.773707,0.965392,0.2186,0.020036,0.907472,0.408625,0.460477,0.0229726,0.58388,0.319478,0.586538,0.503627,0.578838,0.102389,0.973031,0.949362,0.563011,0.338968,0.340614,0.35072,0.875787,0.626355,0.409024,0.34228,0.606765,0.129603,0.0876157,0.373875,0.558777,0.565226,0.160421,0.258603,0.250125,0.674584,0.582437,0.746535,0.387665,0.111168,0.428018,0.29815,0.0830637,0.106471,0.703537,0.688318,0.260719,0.368839,0.519086,0.919901,0.97027,0.799469,0.0270119,0.673644,0.031067,0.667424,0.589916,0.00163579,0.637919,0.947757,0.300138,0.245755,0.878382,0.499102,0.110473,0.55841,0.647502,0.112881,0.951337,0.193166,0.580907,0.915788,0.743638,0.137841,0.0483158,0.460637,0.61933,0.0586069,0.0290125,0.909451,0.609178,0.369264,0.757979,0.525883,0.411789,0.458775,0.687345,0.928841,0.847941,0.027845,0.0593306,0.855278,0.0528798,0.367283,0.940959,0.988525,0.282391,0.194355,0.181697,0.899016,0.12821,0.198249,0.855895,0.551563,0.397024,0.0408128,0.567662,0.0862272,0.0525153,0.608545,0.915985,0.140833,0.0299287,0.252902,0.516182,0.401508,0.43809,0.086799,0.221784,0.962605,0.128763,0.38557,0.427878,0.161377,0.0522754,0.964499,0.985331,0.908714,0.728779,0.140483,0.763925,0.323557,0.474276,0.0812739,0.603755,0.11547,0.253462,0.940806,0.664745,0.541124,0.432856,0.822325,0.160247,0.26985,0.218174,0.921895,0.518482,0.885153,0.328679,0.601209,0.580609,0.706316,0.145421,0.177457,0.077082,0.222549,0.706999,0.169895,0.846643,0.45036,0.599937,0.901885,0.480724,0.758683,0.75512,0.279442,0.0438173,0.231067,0.884382,0.406595,0.121304,0.20348,0.462147,0.0632378,0.241877,0.878432,0.786732,0.252151,0.161995,0.634761,0.359497,0.750616,0.925981,0.3288,0.550495,0.598494,0.323613,0.375776,0.253373,0.571486,0.736334,0.0516471,0.0969493,0.814552,0.923065,0.759565,0.287212,0.934051,0.0400963,0.0641237,0.603413,0.45442,0.301565,0.194758,0.728899,0.783905,0.604003,0.324781,0.710384,0.0313452,0.146994,0.549809,0.669339,0.979109,0.538769,0.684339,0.759028,0.947173,0.521597,0.423684,0.921271,0.85489,0.825256,0.723573,0.726371,0.839316,0.221948,0.363315,0.00451577,0.484799,0.345559,0.508253,0.407435,0.854609,0.33506,0.15855,0.97071,0.30138,0.718131,0.391234,0.42159,0.196258,0.286978,0.403044,0.930856,0.916677,0.612529,0.168555,0.459786,0.749586,0.646302,0.833181,0.251796,0.0232227,0.585341,0.000616133,0.131939,0.560545,0.645045,0.0417818,0.0267792,0.801923,0.626638,0.00786513,0.335472,0.262254,0.450429,0.294605,0.513263,0.612323,0.859651,0.228535,0.0719715,0.477571,0.333035,0.668535,0.963385,0.766545,0.85075,0.620037,0.370456,0.0744263,0.547208,0.900052,0.0950001,0.85852,0.406319,0.539419,0.945204,0.466756,0.58526,0.646085,0.496468,0.130342,0.392369,0.944047,0.826525,0.0464562,0.5282,0.865117,0.162626,0.460962,0.750805,0.608584,0.0906633,0.173929,0.238682,0.359869,0.574539,0.758872,0.957186,0.816167,0.929608,0.778932,0.0057407,0.85463,0.428582,0.901593,0.464883,0.167933,0.587566,0.428,0.189501,0.0174858,0.35458,0.362164,0.306245,0.0918316,0.29198,0.00316113,0.970193,0.334521,0.229471,0.713145,0.107046,0.603667,0.267443,0.600884,0.362041,0.6348,0.152024,0.0165858,0.638669,0.54855,0.360862,0.9013,0.858201,0.83161,0.474011,0.284392,0.0889214,0.930137,0.396847,0.0428938,0.258494,0.684548,0.00401372,0.221673,0.512469,0.268796,0.181004,0.0951673,0.431524,0.666514,0.356606,0.433792,0.736388,0.913122,0.840721,0.607565,0.844416,0.000718296,0.352786,0.189395,0.551232,0.252961,0.798595,0.0507327,0.34995,0.825912,0.270194,0.467953,0.286225,0.746583,0.28935,0.805951,0.197234,0.0127525,0.22824,|0.693005,0.520734,0.892339,0.522507,0.918728,0.514343,0.432492,0.612972,0.851779,0.179688,0.0609394,0.0127781,0.0427718,0.40999,0.704107,0.92333,0.752655,0.501036,0.950138,0.422657,0.688421,0.315278,0.417374,0.501129,0.471054,0.783599,0.825082,0.945078,0.634879,0.515723,0.972319,0.59965,0.0667751,0.0490055,0.509169,0.970104,0.69228,0.170159,0.90713,0.880528,0.312735,0.704163,0.951433,0.388783,0.806283,0.357014,0.0667056,0.905837,0.705491,0.602707,0.912487,0.27257,0.193668,0.357245,0.796883,0.666164,0.951999,0.780992,0.187908,0.167717,0.724945,0.499168,0.569944,0.230209,0.873503,0.888403,0.944571,0.394534,0.768329,0.561171,0.36414,0.127047,0.990842,0.732005,0.304271,0.68334,0.670363,0.844329,0.491276,0.518224,0.474699,0.200497,0.0157415,0.254198,0.197295,0.895306,0.510269,0.215392,0.853091,0.550175,0.231305,0.588296,0.695291,0.167141,0.316802,0.950856,0.0860623,0.00199234,0.51847,0.40578,0.40698,0.635283,0.927059,0.11517,0.840892,0.85815,0.413033,0.735825,0.594851,0.871648,0.976765,0.987867,0.749476,0.37022,0.90107,0.261604,0.490877,0.876925,0.381969,0.259236,0.0461593,0.510252,0.641158,0.727121,0.327126,0.489106,0.138936,0.160481,0.12762,0.301978,0.445472,0.968133,0.353731,0.553806,0.701654,0.360501,0.477413,0.239624,0.51964,0.798051,0.847557,0.413611,0.0544018,0.753542,0.0893636,0.573289,0.380044,0.168955,0.760121,0.423313,0.888736,0.0788735,0.431911,0.723483,0.345616,0.323492,0.44657,0.164976,0.498539,0.460749,0.6472,0.211528,0.320642,0.487581,0.718316,0.554581,0.0858654,0.409934,0.314589,0.315429,0.0918205,0.87019,0.0381471,0.0839032,0.897557,0.723939,0.977478,0.755827,0.883937,0.604613,0.0134703,0.431263,0.0222542,0.0377573,0.454803,0.404422,0.335305,0.00469887,0.803584,0.038103,0.782173,0.0559467,0.987586,0.862831,0.634604,0.42408,0.435489,0.163432,0.124351,0.0619771,0.667559,0.133574,0.881353,0.310279,0.0885083,0.862751,0.417223,0.980156,0.445805,0.372309,0.712231,0.100642,0.71604,0.354333,0.495108,0.126068,0.609481,0.395068,0.552681,0.077579,0.542741,0.541601,0.599965,0.422553,0.0578977,0.811624,0.505731,0.569464,0.280876,0.909867,0.706732,0.597901,0.0964289,0.369618,0.0189515,0.89862,0.315872,0.980248,0.0909628,0.0814407,0.879401,0.159018,0.652713,0.691732,0.859119,0.345555,0.565823,0.388584,0.957611,0.136849,0.219414,0.76431,0.269917,0.539326,0.656513,0.0588461,0.429456,0.409311,0.575514,0.975839,0.974453,0.95355,0.975115,0.85045,0.92941,0.0984449,0.516994,0.101985,0.581845,0.0387956,0.0890182,0.750415,0.205228,0.54028,0.183833,0.63748,0.326604,0.178765,0.323266,0.436249,0.549717,0.283583,0.359218,0.307534,0.62129,0.0122089,0.220251,0.402766,0.458264,0.903221,0.810354,0.120255,0.396914,0.988424,0.664246,0.611425,0.110387,0.73265,0.841282,0.518142,0.47318,0.915664,0.409439,0.799829,0.0591527,0.0182323,0.169978,0.523869,0.760069,0.741674,0.364184,0.103635,0.819296,0.775782,0.192174,0.0303171,0.888758,0.323293,0.908892,0.251855,0.693071,0.447235,0.0428642,0.100589,0.905329,0.295146,0.869895,0.952895,0.439832,0.971638,0.858949,0.786868,0.299928,0.850039,0.519499,0.395275,0.155145,0.337019,0.939286,0.357924,0.381228,0.7421,0.563944,0.380579,0.861777,0.456644,0.188956,0.463666,0.0773729,0.220937,0.815866,0.721868,0.38269,0.223464,0.350391,0.628447,0.616026,0.822206,0.482824,0.664146,0.970172,0.0245818,0.179071,0.662635,0.109828,0.700129,0.684167,0.959047,0.927081,0.47518,0.0963563,0.827945,0.767242,0.673048,0.795492,0.354488,0.897319,0.896424,0.377417,0.0070945,0.125332,0.528284,0.773573,0.313123,0.270903,0.737555,0.906926,0.874118,0.162808,0.776723,0.149078,0.237894,0.992933,0.839881,0.539143,0.717407,0.786785,0.402604,0.402989,0.824979,0.838946,0.598295,0.366979,0.846065,0.134564,0.918034,0.889336,0.266431,0.529614,0.268872,0.515241,0.647633,0.802282,0.343554,0.039759,0.319823,0.124769,0.370153,0.83326,0.248006,0.0632302,0.123262,0.0524111,0.289481,0.0931582,0.709296,0.667675,0.687671,0.933943,0.251906,0.755157,0.313575,0.878164,0.219049,0.536674,0.294666,0.5819,0.12256,0.194623,0.898695,0.157292,0.263085,0.216719,0.755021,0.318029,0.162732,0.691696,0.572387,0.270624,0.267651,0.248348,0.642847,0.60398,0.173669,0.614485,0.95344,0.145108,0.0568115,0.0363465,0.336036,0.452006,0.351484,0.681515,0.090382,0.00669837,0.611746,0.616955,0.464892,0.435634,0.944911,0.630275,0.197521,0.810111,0.96188,0.513266,0.0107801,0.654649,0.943493,0.217634,0.83846,0.563127,0.876733,0.121629,0.459204,0.0843655,0.216158,0.753253,0.105918,0.180645,0.228773,0.980408,0.644857,0.185349,0.209408,0.680886,0.91093,0.876224,0.870919,0.348124,0.748079,0.836893,0.0161397,0.262887,0.51835,0.986139,0.677023,0.956165,0.943523,0.757476,0.258851,0.691882,0.264443,0.822514,0.810318,0.257194,0.388331,0.959999,0.141539,0.401786,0.247662,0.274193,0.0966491,0.844799,0.571644,0.53686,0.163925,0.0246732,0.614498,0.850419,0.638176,0.98987,0.255875,0.985148,0.260542,0.923803,0.682228,0.270286,0.0660028,0.229777,0.0338175,0.797121,0.623746,0.199224,0.618471,0.206994,0.884397,0.498529,0.694504,0.870926,0.927645,0.690556,0.318448,0.961041,0.825658,0.2303,0.20062,0.604483,0.607861,0.13467,0.285839,0.577106,0.275783,0.176515,0.235829,0.278439,0.973017,0.97622,0.672465,0.695327,0.227941,0.819144,0.412676,0.237078,0.767087,0.324954,0.657966,0.816665,0.948058,0.218253,0.209555,0.226683,0.242497,0.0993361,0.156754,0.0895696,0.70017,0.420503,0.397776,0.275198,0.08893,0.472252,0.0105481,0.51295,0.538896,0.427438,0.107212,0.453977,0.397675,0.263136,0.0347093,0.579036,0.576817,0.129894,0.525109,0.236457,0.57124,0.478049,0.665708,0.782048,0.0551205,0.279483,0.655191,0.354216,0.656569,0.811354,0.849368,0.374444,0.370308,0.657174,0.968652,0.650385,0.195224,0.666113,0.385189,0.65609,0.527217,0.187711,0.801878,0.658603,0.0309193,0.469736,0.974132,0.0786933,0.545795,0.59782,0.0764805,0.158699,0.50509,0.594391,0.263969,0.579232,0.135171,0.406177,0.0832954,0.263899,0.785855,0.524979,0.171351,0.149051,0.839857,0.951977,0.982089,0.983084,0.649248,0.118765,0.482239,0.217044,0.796343,0.92655,0.160513,0.68017,0.802032,0.714691,0.855264,0.10222,0.783686,0.729532,0.361019,0.181837,0.0195144,0.412816,0.743616,0.894579,0.26873,0.212218,0.305807,0.215556,0.77928,0.818767,0.277068,0.260501,0.621632,0.413328,0.862875,0.15777,0.842891,0.38337,0.58216,0.796477,0.961553,0.737225,0.852649,0.805288,0.759378,0.186448,0.638033,0.816834,0.191292,0.350413,0.26154,0.173863,0.763709,0.419011,0.962178,0.0760037,0.36624,0.717175,0.787108,0.987039,0.33121,0.873471,0.542353,0.970098,0.799187,0.99255,0.568428,0.776683,0.227677,0.746383,0.262109,0.0125456,0.298539,0.535393,0.998845,0.684773,0.347651,0.798444,0.656968,0.464551,0.641228,0.350009,0.00942659,0.438343,0.513257,0.869023,0.198378,0.978734,0.638013,0.252418,0.962114,0.627542,0.411231,0.151375,0.854087,0.0436265,0.452928,0.944597,0.83571,0.699518,0.00663042,0.757697,0.708213,0.805095,0.63038,0.194811,0.0383201,0.468335,0.833087,0.576158,0.739911,0.0176126,0.8794,0.966809,0.663988,0.721853,0.625331,0.987704,0.533883,0.154078,0.544005,0.306403,0.947641,0.401867,0.673514,0.268771,0.889706,0.108553,0.698544,0.963606,0.108474,0.886553,0.045382,0.687969,0.346254,0.274768,0.391691,0.0676355,0.939272,0.223714,0.671906,0.833348,0.562263,0.500028,0.418373,0.867636,0.0028742,0.262657,0.483426,0.976371,0.161951,0.423241,0.250527,0.0619149,0.973833,0.722547,0.889308,0.534345,0.163496,0.882734,0.723333,0.836958,0.172644,0.777116,0.293121,0.718298,0.44311,0.0122365,0.944668,0.204612,0.478404,0.0573426,0.405704,0.0717956,0.214356,0.938793,0.474303,0.973864,0.970044,0.27963,0.24561,0.536733,0.125652,0.890563,0.0514514,0.382811,0.963065,0.701607,0.917417,0.0220597,0.970865,0.306346,0.430715,0.713885,0.439222,0.00286549,0.0825227,0.286767,0.860992,0.521722,0.873087,0.563842,0.33758,0.0733752,0.201432,0.487141,0.559234,0.391776,0.622002,0.234077,0.892309,0.498678,0.984137,0.61122,0.229455,0.921171,0.0442761,0.0224187,0.170488,0.469634,0.568447,0.738827,0.336829,0.943845,0.447118,0.63026,0.531225,0.892135,0.885574,0.0807021,0.00232255,0.664113,0.36058,0.188187,0.943921,0.234592,0.562781,0.900182,0.225399,0.679682,0.980904,0.78686,0.181388,0.0586792,0.469523,0.190399,0.247425,0.231013,0.0619476,0.279208,0.0835468,0.125647,0.660265,0.149059,0.320235,0.890803,0.138474,0.142618,0.487853,0.822475,0.891423,0.598304,0.436998,0.677409,0.653661,0.805863,0.150383,0.261553,0.841728,0.287633,0.222708,0.0990428,0.71206,0.633289,0.474565,0.893084,0.10249,0.917928,0.970804,0.335545,0.660006,0.743533,0.991808,0.731068,0.850588,0.675603,0.889348,0.365238,0.184741,0.584948,0.71162,0.251771,0.523209,0.32782,0.269373,0.551984,0.508592,0.834441,0.623407,0.843465,0.566555,0.501431,0.71743,0.968564,0.559501,0.375718,0.743433,0.12914,0.53829,0.641705,0.420585,0.0383911,0.170841,0.324639,0.623604,0.217816,0.128177,0.0376548,0.751873,0.0437269,0.961497,0.110557,0.922501,0.461207,0.627928,0.26185,0.419136,0.327627,0.534874,0.307296,0.90452,0.0084461,0.766266,0.10286,0.504324,0.962274,0.337919,0.682038,0.217175,0.0510221,0.237962,0.453787,0.0798445,0.707555,0.152883,0.863353,0.77722,0.5098,0.145032,0.113971,0.488161,|0.277815,0.080291,0.750667,0.0755858,0.345841,0.576222,0.422675,0.459309,0.761433,0.296257,0.682769,0.282089,0.577966,0.204337,0.146763,0.0634922,0.0532373,0.108782,0.266508,0.919464,0.806544,0.41048,0.352156,0.776669,0.722655,0.0687557,0.64364,0.279633,0.252052,0.132999,0.841442,0.0681559,0.786538,0.172965,0.779667,0.321411,0.541796,0.811594,0.504833,0.0191811,0.734626,0.249155,0.718529,0.166037,0.386742,0.246036,0.00782663,0.500775,0.246945,0.0522116,0.619893,0.447447,0.273602,0.82672,0.947076,0.878147,0.261797,0.562085,0.847649,0.688592,0.583742,0.889189,0.327562,0.240848,0.919761,0.0997585,0.595695,0.988325,0.916889,0.87687,0.033662,0.452161,0.307129,0.837727,0.850115,0.085538,0.302396,0.130615,0.267819,0.561325,0.169556,0.686582,0.272063,0.202656,0.309775,0.442329,0.222329,0.137556,0.0435976,0.156873,0.396523,0.0466524,0.606423,0.299118,0.324009,0.76576,0.946361,0.450768,0.0868318,0.963604,0.833682,0.870171,0.036177,0.32837,0.766195,0.971483,0.193876,0.285239,0.924908,0.474978,0.386295,0.162923,0.0421971,0.81887,0.890767,0.652407,0.0349374,0.680179,0.625229,0.464611,0.0753316,0.0950536,0.505686,0.468734,0.296192,0.0490547,0.665098,0.376239,0.477024,0.804406,0.0823159,0.490657,0.888267,0.0211356,0.402166,0.521957,0.0303855,0.429668,0.438182,0.566836,0.20992,0.964945,0.924229,0.476657,0.473879,0.836271,0.332552,0.988666,0.951928,0.282613,0.716918,0.805036,0.40548,0.587727,0.557294,0.847216,0.984634,0.8863,0.123094,0.5734,0.226805,0.155363,0.48809,0.479357,0.314422,0.430673,0.887889,0.444004,0.785036,0.288644,0.8856,0.281012,0.128355,0.0730886,0.977591,0.958698,0.361341,0.881927,0.389893,0.648148,0.741714,0.107927,0.59054,0.845115,0.634663,0.628088,0.666608,0.753567,0.89096,0.424375,0.0136713,0.55561,0.0692282,0.341977,0.928652,0.729861,0.139428,0.646996,0.46802,0.326948,0.865047,0.550874,0.212601,0.0981618,0.167042,0.00778329,0.619254,0.0912687,0.144695,0.42475,0.769991,0.128528,0.864569,0.419255,0.700453,0.533263,0.034821,0.528445,0.834491,0.585178,0.737061,0.348637,0.320052,0.558022,0.980419,0.264825,0.766854,0.114091,0.00339442,0.849638,0.711714,0.26234,0.597745,0.0680651,0.703455,0.525547,0.0716887,0.160734,0.203358,0.690412,0.351599,0.752307,0.797091,0.0878129,0.130621,0.906777,0.500536,0.111606,0.114072,0.537372,0.550323,0.784735,0.192169,0.383359,0.49007,0.517791,0.900329,0.646023,0.538555,0.864411,0.289081,0.116342,0.150543,0.239846,0.711829,0.302794,0.774733,0.48445,0.527431,0.568301,0.131955,0.623626,0.872296,0.718352,0.835595,0.355741,0.546916,0.574786,0.130433,0.40602,0.790951,0.245915,0.703925,0.889603,0.694894,0.0740002,0.168727,0.994402,0.00514627,0.918214,0.131473,0.565318,0.49172,0.00960863,0.77216,0.466455,0.466383,0.273213,0.352584,0.222679,0.263268,0.812706,0.781386,0.23877,0.554144,0.914056,0.612086,0.889061,0.335199,0.932515,0.691197,0.60132,0.153325,0.794665,0.449863,0.364567,0.533771,0.808337,0.705572,0.614492,0.52847,0.382402,0.190984,0.079932,0.992915,0.893862,0.383519,0.909774,0.0387427,0.241215,0.796578,0.257475,0.404283,0.70443,0.347908,0.0598629,0.703902,0.752591,0.345598,0.924361,0.564019,0.0526821,0.293174,0.761511,0.998484,0.854315,0.42422,0.150507,0.154075,0.497619,0.355657,0.141057,0.366883,0.270677,0.852663,0.81673,0.351325,0.361187,0.665007,0.826592,0.0543897,0.433248,0.944471,0.484228,0.157149,0.863735,0.0145847,0.0188189,0.807896,0.874837,0.72116,0.48961,0.704356,0.472536,0.353163,0.694816,0.251905,0.0767671,0.73028,0.5077,0.384603,0.403986,0.288176,0.42568,0.163718,0.165685,0.980231,0.86881,0.412095,0.556066,0.302146,0.544791,0.890399,0.641783,0.245619,0.685533,0.712866,0.716868,0.841069,0.639161,0.393461,0.277266,0.565293,0.741435,0.136185,0.216576,0.743808,0.406031,0.40187,0.795421,0.899331,0.602311,0.76996,0.207362,0.901647,0.303367,0.219936,0.483484,0.367655,0.477139,0.0235732,0.751863,0.73955,0.677178,0.713332,0.32228,0.430314,0.126129,0.566006,0.452413,0.16963,0.345572,0.564362,0.7505,0.137053,0.52533,0.091339,0.140555,0.749407,0.786738,0.0945264,0.0880453,0.480094,0.836951,0.319948,0.330607,0.950923,0.245121,0.610411,0.815762,0.639872,0.102246,0.016996,0.502628,0.923452,0.536195,0.0585549,0.864256,0.35971,0.0818658,0.696286,0.553717,0.825847,0.972893,0.356417,0.188046,0.882115,0.93884,0.932013,0.350391,0.749636,0.750732,0.875786,0.00211024,0.742998,0.057668,0.284486,0.675574,0.357052,0.34307,0.402311,0.895426,0.828106,0.404847,0.383089,0.905328,0.133542,0.3448,0.801716,0.719857,0.248962,0.601518,0.516972,0.544046,0.720869,0.145915,0.0398372,0.309102,0.158088,0.415456,0.766232,0.190548,0.479153,0.0205904,0.699363,0.548985,0.603118,0.494595,0.627506,0.557939,0.546204,0.551228,0.408373,0.728083,0.153138,0.115278,0.359753,0.0835537,0.414462,0.785614,0.797066,0.288772,0.993726,0.0345153,0.895841,0.219678,0.094617,0.541226,0.293034,0.83586,0.435096,0.862024,0.941042,0.257924,0.690969,0.31009,0.00747412,0.950504,0.0114431,0.00999302,0.36984,0.553681,0.937772,0.872255,0.246612,0.152355,0.38657,0.26931,0.750557,0.0409325,0.142214,0.970662,0.948248,0.839354,0.45334,0.167179,0.145322,0.584253,0.934252,0.39336,0.315193,0.892401,0.629829,0.219705,0.633031,0.0419147,0.545204,0.565124,0.244574,0.121683,0.107172,0.123253,0.251342,0.876271,0.41971,0.921043,0.400716,0.484318,0.381631,0.854925,0.364992,0.172044,0.408361,0.595846,0.683347,0.298091,0.816027,0.144565,0.649533,0.471584,0.376161,0.546027,0.98508,0.385566,0.83169,0.124799,0.910806,0.421784,0.154063,0.749929,0.0463318,0.229395,0.817764,0.652581,0.152679,0.367207,0.333401,0.668738,0.294443,0.0489794,0.2475,0.243291,0.197087,0.170415,0.477566,0.650187,0.333925,0.401996,0.169918,0.600736,0.456909,0.227065,0.324945,0.909045,0.366235,0.728229,0.638255,0.455769,0.347244,0.348574,0.0128595,0.995104,0.297686,0.723802,0.616335,0.67591,0.516121,0.527673,0.843562,0.145896,0.815504,0.215767,0.99428,0.00795358,0.53738,0.2731,0.888726,0.67404,0.301739,0.682094,0.524256,0.774369,0.615785,0.648082,0.0842004,0.362968,0.319458,0.984106,0.570928,0.0894061,0.0761658,0.990668,0.229811,0.97832,0.355585,0.465911,0.742388,0.145933,0.13123,0.0448886,0.00363958,0.372708,0.617639,0.806019,0.975479,0.313517,0.2428,0.358218,0.61106,0.895201,0.0693139,0.143873,0.721825,0.443289,0.288814,0.821413,0.152579,0.678208,0.504156,0.115322,0.0533234,0.373584,0.361158,0.431105,0.541004,0.917588,0.399815,0.432886,0.663779,0.878163,0.235444,0.490937,0.1384,0.967238,0.416015,0.596923,0.458444,0.864902,0.159021,0.258066,0.0618197,0.383839,0.234253,0.227308,0.48377,0.000335634,0.600133,0.455471,0.691161,0.419673,0.0893315,0.624376,0.248477,0.0744772,0.231154,0.249423,0.489695,0.855161,0.681419,0.232777,0.0592704,0.46889,0.0671916,0.75479,0.467206,0.63172,0.572804,0.218821,0.620309,0.718399,0.611198,0.236616,0.995286,0.325554,0.366746,0.0326809,0.888892,0.492282,0.769693,0.863833,0.282367,0.973189,0.741086,0.267148,0.624929,0.690233,0.644853,0.609669,0.337056,0.0158848,0.75368,0.845397,0.165785,0.998898,0.238444,0.83097,0.585079,0.057577,0.504746,0.506161,0.976131,0.0225606,0.100005,0.0477856,0.286338,0.176866,0.807784,0.624708,0.956811,0.209847,0.131394,0.750911,0.719669,0.258589,0.923985,0.718943,0.557523,0.0796601,0.122747,0.902653,0.907122,0.365948,0.256212,0.904787,0.516184,0.156844,0.283577,0.287131,0.83327,0.665751,0.681643,0.804892,0.844165,0.235066,0.229417,0.0439662,0.0140782,0.128688,0.650038,0.635704,0.0734549,0.244575,0.416473,0.226273,0.186304,0.26951,0.533331,0.829748,0.0753074,0.676346,0.924898,0.642866,0.883944,0.75133,0.421754,0.705156,0.0943723,0.247033,0.438409,0.939739,0.74889,0.423496,0.452053,0.758364,0.03842,0.854556,0.508405,0.079707,0.675367,0.0997226,0.236048,0.621817,0.0697667,0.132328,0.376979,0.980748,0.243433,0.217196,0.344711,0.528604,0.603696,0.81901,0.826602,0.0131798,0.835417,0.187135,0.233998,0.816881,0.296009,0.901368,0.61364,0.533337,0.870838,0.635906,0.987303,0.173858,0.749625,0.173824,0.762423,0.502146,0.354114,0.645922,0.347017,0.139193,0.292286,0.150594,0.0391529,0.147429,0.113766,0.620283,0.805721,0.187556,0.118057,0.725262,0.44903,0.94179,0.928657,0.136729,0.527771,0.408867,0.909213,0.00664836,0.731526,0.136169,0.0139796,0.382197,0.815252,0.344552,0.624848,0.335181,0.15241,0.255044,0.928022,0.96233,0.402506,0.0752752,0.912219,0.228728,0.335335,0.0857127,0.554418,0.0955941,0.329999,0.668939,0.163066,0.859481,0.646188,0.716559,0.43741,0.975261,0.579117,0.544186,0.380623,0.858656,0.63932,0.522197,0.471909,0.487309,0.0318303,0.674795,0.91348,0.0296923,0.919299,0.806081,0.409132,0.0700919,0.274284,0.102687,0.497657,0.901502,0.981899,0.87941,0.916592,0.752602,0.966944,0.544324,0.937191,0.502319,0.0735744,0.293321,0.221867,0.0731861,0.885267,0.918342,0.314653,0.872893,0.544661,0.480479,0.708895,0.614855,0.920327,0.359029,0.590596,0.162213,0.198296,0.0454988,0.119687,0.184493,0.197383,0.276609,0.560989,0.345712,0.522108,0.864705,0.33756,0.522651,0.665858,0.235424,0.583179,0.378672,0.499749,0.328213,0.299239,0.863577,0.246696,0.312484,0.202101,0.220721,0.288093,0.0993591,0.245083,0.943006,0.858629,0.233499,0.407157,0.327767,0.00517952,0.397673,0.599476,0.721578,|0.649601,0.843985,0.0604585,0.514925,0.618704,0.341018,0.9828,0.533342,0.289568,0.58151,0.514117,0.738354,0.0165953,0.856093,0.752428,0.431739,0.10002,0.241476,0.33541,0.758752,0.212066,0.592058,0.381203,0.771616,0.261045,0.79177,0.76971,0.987654,0.339906,0.759478,0.269145,0.506597,0.852745,0.459035,0.185878,0.780487,0.234993,0.628422,0.581637,0.15565,0.942738,0.502798,0.032865,0.303252,0.518484,0.818262,0.375285,0.261034,0.0614257,0.93743,0.768361,0.751459,0.699798,0.950885,0.531668,0.300305,0.152968,0.165136,0.392939,0.113442,0.598533,0.520804,0.572477,0.62598,0.801683,0.772151,0.365812,0.473148,0.59475,0.612148,0.864589,0.202493,0.621058,0.859649,0.253245,0.500441,0.271089,0.232971,0.931782,0.607253,0.0877923,0.378965,0.033175,0.00258213,0.86068,0.347705,0.752967,0.355804,0.871111,0.478303,0.595676,0.91605,0.319128,0.208514,0.321294,0.487699,0.732812,0.426531,0.997741,0.66772,0.511965,0.119886,0.586171,0.261234,0.260829,0.0330024,0.437406,0.242294,0.637556,0.108366,0.351738,0.844828,0.26835,0.0630097,0.929014,0.570462,0.524273,0.0986794,0.714498,0.627374,0.299474,0.463504,0.723636,0.236087,0.87113,0.646624,0.195104,0.894968,0.667612,0.366323,0.9399,0.511989,0.161465,0.422728,0.755083,0.441099,0.116822,0.868709,0.760696,0.446638,0.741833,0.657499,0.476405,0.440645,0.974937,0.782802,0.900097,0.118014,0.0149853,0.377557,0.411097,0.882174,0.00805908,0.606596,0.59953,0.410419,0.548807,0.0725057,0.0663121,0.635253,0.686723,0.630147,0.558943,0.310842,0.561801,0.3478,0.633582,0.818133,0.186289,0.0105338,0.507481,0.0261987,0.0513402,0.979947,0.626049,0.545726,0.385,0.612295,0.829365,0.737394,0.729286,0.0895424,0.00585908,0.501358,0.687124,0.916072,0.0494471,0.401831,0.265338,0.209077,0.725085,0.458231,0.247685,0.459769,0.0789814,0.936386,0.0243299,0.757022,0.977806,0.132142,0.00207192,0.221069,0.218857,0.313325,0.98614,0.227293,0.494496,0.988171,0.897475,0.356881,0.602601,0.187758,0.812214,0.863173,0.0358279,0.980925,0.698692,0.28417,0.0246789,0.561212,0.971097,0.0794752,0.337717,0.926358,0.84914,0.464746,0.201585,0.195658,0.396892,0.979797,0.80879,0.0521836,0.95292,0.898476,0.738153,0.297157,0.711857,0.349338,0.484414,0.653002,0.941275,0.787255,0.360326,0.140359,0.861569,0.00333214,0.527717,0.694725,0.417275,0.180467,0.335418,0.232523,0.137017,0.0460861,0.278134,0.944337,0.72114,0.824153,0.0414758,0.826731,0.422249,0.942818,0.915008,0.865306,0.488093,0.757875,0.9863,0.357963,0.435051,0.132345,0.334473,0.314559,0.154446,0.717137,0.151114,0.127968,0.547998,0.279548,0.672049,0.719545,0.453628,0.136285,0.900678,0.681254,0.116255,0.274535,0.950077,0.326083,0.745853,0.52596,0.289765,0.50661,0.871243,0.723392,0.302144,0.632285,0.5777,0.264417,0.145122,0.119879,0.390521,0.343363,0.531396,0.542532,0.0902477,0.151628,0.226965,0.111213,0.902095,0.476947,0.889308,0.963675,0.390786,0.0126648,0.286791,0.202463,0.205275,0.606452,0.235035,0.134139,0.0433854,0.452331,0.656459,0.449567,0.586133,0.621504,0.781562,0.0135685,0.683302,0.479183,0.218563,0.762625,0.10399,0.746908,0.487224,0.480936,0.923862,0.515646,0.427627,0.624024,0.3495,0.295013,0.933227,0.31746,0.0416266,0.264463,0.754658,0.463756,0.695432,0.366605,0.84765,0.305158,0.401274,0.482545,0.364255,0.531205,0.58778,0.989819,0.679106,0.469281,0.472174,0.989127,0.493582,0.916971,0.782656,0.933428,0.154801,0.461166,0.023658,0.232772,0.934044,0.867209,0.160062,0.00181419,0.564942,0.268262,0.797065,0.995221,0.444773,0.215291,0.32477,0.904499,0.594836,0.167387,0.391534,0.312621,0.715642,0.0109615,0.843856,0.392583,0.296468,0.248172,0.656732,0.941886,0.524602,0.218806,0.651074,0.187515,0.633692,0.66236,0.148777,0.633259,0.950155,0.17063,0.764072,0.467199,0.196746,0.131831,0.0487899,0.990407,0.799023,0.158739,0.722008,0.821782,0.536886,0.322203,0.215468,0.630379,0.486849,0.16126,0.153167,0.538365,0.891962,0.182181,0.592277,0.148383,0.239556,0.3336,0.214164,0.559902,0.451853,0.403283,0.461434,0.418948,0.394485,0.37056,0.489564,0.655585,0.51393,0.591253,0.460469,0.935853,0.294793,0.811899,0.764925,0.656179,0.117069,0.76636,0.106104,0.379764,0.86709,0.153025,0.467247,0.805201,0.810512,0.657798,0.978062,0.775101,0.756747,0.864349,0.0362196,0.345466,0.0279871,0.604754,0.0559996,0.702444,0.640078,0.569418,0.271409,0.214912,0.12111,0.599349,0.482677,0.242916,0.967494,0.694242,0.723678,0.379044,0.192301,0.666822,0.397182,0.116837,0.311424,0.0452392,0.00649637,0.401941,0.303395,0.419585,0.943763,0.267535,0.361948,0.806,0.962045,0.559552,0.505459,0.797545,0.99153,0.637545,0.226325,0.516299,0.403403,0.568973,0.653357,0.171568,0.098691,0.396727,0.766871,0.42771,0.10127,0.00441438,0.386837,0.515611,0.417795,0.403286,0.861194,0.47318,0.047924,0.495729,0.0441219,0.57099,0.0413908,0.35891,0.965426,0.723661,0.348577,0.461771,0.234627,0.47187,0.740047,0.740957,0.5608,0.982346,0.0890332,0.658891,0.360885,0.757943,0.322819,0.587703,0.29897,0.781039,0.576056,0.624318,0.595865,0.659605,0.946686,0.786535,0.470576,0.96483,0.0354788,0.633484,0.674339,0.397463,0.483479,0.75015,0.0191327,0.845375,0.654649,0.945664,0.469242,0.183378,0.0961607,0.455058,0.742952,0.572719,0.0361103,0.814699,0.314696,0.955356,0.595606,0.726133,0.795933,0.742087,0.974618,0.827877,0.0810558,0.32003,0.553005,0.938223,0.120687,0.479043,0.158004,0.00192386,0.74694,0.765923,0.792766,0.198076,0.0378003,0.96584,0.260862,0.222589,0.685091,0.73788,0.851014,0.559574,0.584615,0.655738,0.652353,0.0846944,0.236266,0.419688,0.618299,0.13097,0.838289,0.818531,0.557353,0.0522459,0.917145,0.402468,0.582919,0.130941,0.840131,0.461766,0.866353,0.123649,0.0642463,0.283978,0.389477,0.868344,0.424229,0.563076,0.926023,0.225335,0.363219,0.767079,0.0794829,0.382564,0.151552,0.0737341,0.254005,0.981505,0.411402,0.43119,0.210435,0.25202,0.422173,0.702496,0.595822,0.203992,0.240833,0.454055,0.846078,0.0589511,0.0230145,0.180094,0.905926,0.301835,0.603917,0.689812,0.0787069,0.797149,0.325614,0.0828057,0.193082,0.652246,0.387287,0.907843,0.300428,0.795426,0.842103,0.156256,0.933199,0.783727,0.647584,0.771594,0.319558,0.221839,0.917829,0.999783,0.354485,0.277055,0.484465,0.639758,0.317653,0.252915,0.893622,0.539399,0.989602,0.657351,0.598846,0.978545,0.941645,0.811713,0.411754,0.421,0.944512,0.333712,0.226799,0.946457,0.631395,0.321905,0.16664,0.757952,0.503981,0.903671,0.546513,0.916811,0.523405,0.977221,0.146812,0.252432,0.976565,0.39704,0.75588,0.525416,0.11836,0.280718,0.572976,0.846658,0.228508,0.159269,0.536683,0.010429,0.340073,0.540408,0.664418,0.434056,0.419132,0.263402,0.35543,0.987771,0.755062,0.960788,0.348495,0.17046,0.591802,0.748973,0.0187732,0.42659,0.0917798,0.829269,0.750207,0.907403,0.710642,0.144018,0.874931,0.201222,0.538419,0.911121,0.566025,0.946546,0.139499,0.371917,0.433609,0.902452,0.88127,0.695379,0.358246,0.885421,0.664978,0.649731,0.192694,0.970477,0.424698,0.627834,0.867797,0.315128,0.625045,0.42318,0.526615,0.715743,0.0473034,0.892894,0.975249,0.563617,0.483848,0.892337,0.291521,0.402823,0.76705,0.461095,0.15109,0.210127,0.200271,0.642302,0.404223,0.553882,0.265624,0.623083,0.579258,0.741265,0.228707,0.582187,0.324808,0.724998,0.549304,0.8863,0.338095,0.955728,0.101844,0.372128,0.772522,0.800464,0.774062,0.245638,0.595558,0.0902579,0.146966,0.541588,0.101268,0.465889,0.952702,0.828276,0.603458,0.151461,0.348935,0.529207,0.580988,0.14811,0.488921,0.127879,0.926454,0.0830158,0.491108,0.346367,0.122729,0.299406,0.396032,0.84534,0.584799,0.901432,0.801207,0.631043,0.729034,0.636891,0.703974,0.338802,0.3949,0.493239,0.159907,0.757422,0.911626,0.455742,0.434909,0.23055,0.902946,0.957593,0.437199,0.598424,0.633399,0.687291,0.850698,0.129494,0.249503,0.953,0.106259,0.0935459,0.610564,0.318764,0.0470111,0.551866,0.153719,0.772163,0.69362,0.230023,0.166419,0.873482,0.906405,0.423932,0.637345,0.366147,0.872502,0.511108,0.224476,0.645689,0.79372,0.014308,0.691478,0.823008,0.56883,0.725177,0.950701,0.643835,0.373324,0.926743,0.397749,0.858889,0.896338,0.912183,0.333251,0.999302,0.326651,0.747199,0.519593,0.269035,0.445317,0.75816,0.66027,0.381103,0.311167,0.67791,0.0924023,0.541013,0.92835,0.268493,0.158116,0.428871,0.66165,0.427968,0.232483,0.0511466,0.65183,0.0333397,0.865417,0.847019,0.587691,0.532007,0.54002,0.313925,0.383516,0.0455835,0.694961,0.0528347,0.294488,0.65031,0.0368494,0.497008,0.437995,0.348098,0.132239,0.18188,0.141799,0.206257,0.206264,0.378525,0.0862539,0.642365,0.981266,0.319424,0.629333,0.901559,0.641386,0.150686,0.334623,0.537707,0.208156,0.00933623,0.309412,0.00284028,0.702202,0.0620483,0.138956,0.650672,0.100113,0.18568,0.425732,0.272709,0.208672,0.208539,0.567909,0.184192,0.924393,0.586885,0.362348,0.859395,0.948822,0.64999,0.363262,0.408356,0.519454,0.856294,0.756017,0.218661,0.261965,0.744555,0.906826,0.381696,0.723912,0.907804,0.910283,0.77727,0.84234,0.636222,0.865143,0.211298,0.000199854,0.61686,0.764472,0.949176,0.863525,0.903149,0.278923,0.56677,0.602288,0.257953,0.203146,0.45439,0.441976,0.882088,0.111288,0.0569924,0.650823,0.0870347,0.998545,0.728147,0.806546,0.0225745,0.74284,0.238885,0.0131626,0.810336,|0.268318,0.289525,0.223194,0.910603,0.629772,0.580265,0.535712,0.252541,0.87885,0.75821,0.715312,0.143819,0.626421,0.124895,0.760846,0.155199,0.934604,0.436478,0.285819,0.576551,0.343424,0.982588,0.295469,0.183039,0.305089,0.357817,0.0681536,0.00113434,0.0715725,0.921232,0.831351,0.450316,0.95899,0.288828,0.869744,0.421028,0.862968,0.823301,0.979119,0.0874749,0.888178,0.981497,0.265161,0.218764,0.485176,0.749844,0.16807,0.716461,0.930351,0.93637,0.334221,0.333538,0.654877,0.515205,0.283876,0.69005,0.208697,0.499665,0.262376,0.67236,0.0740655,0.824961,0.499884,0.11951,0.541781,0.818867,0.329086,0.367759,0.907291,0.33062,0.123455,0.405778,0.889142,0.440288,0.848483,0.590856,0.710664,0.354006,0.946171,0.8162,0.235513,0.215242,0.101799,0.464718,0.87097,0.451069,0.528355,0.507634,0.835396,0.611769,0.407919,0.692051,0.849275,0.868428,0.909054,0.214346,0.671989,0.495787,0.543714,0.473614,0.900847,0.0805944,0.12863,0.661238,0.493042,0.88588,0.870058,0.547243,0.766017,0.962652,0.444255,0.0567898,0.822748,0.593976,0.550399,0.42794,0.703022,0.470355,0.134953,0.344796,0.156837,0.898643,0.330403,0.627236,0.292507,0.837616,0.525258,0.446176,0.75192,0.47864,0.0890974,0.439639,0.913588,0.260897,0.631765,0.94871,0.341572,0.554774,0.296997,0.439103,0.235907,0.431319,0.158852,0.929251,0.634012,0.99789,0.209792,0.387614,0.476464,0.730458,0.744086,0.231158,0.464946,0.525346,0.472328,0.9727,0.47744,0.953851,0.0157341,0.421949,0.852166,0.029072,0.456921,0.584931,0.460322,0.738629,0.153893,0.218413,0.436185,0.572305,0.400707,0.389945,0.578937,0.798795,0.39174,0.602243,0.955782,0.472464,0.889894,0.95212,0.998343,0.0968236,0.860974,0.559665,0.655686,0.814358,0.193133,0.0543635,0.169583,0.242531,0.740107,0.111767,0.478217,0.607492,0.27329,0.500734,0.0296579,0.984502,0.807247,0.412743,0.365599,0.960339,0.83603,0.262513,0.823841,0.8327,0.651653,0.97743,0.152226,0.0822371,0.850989,0.441528,0.484331,0.793224,0.36191,0.0910694,0.135955,0.960115,0.763751,0.297626,0.614825,0.551923,0.617875,0.180321,0.248218,0.522762,0.689227,0.70964,0.819681,0.79444,0.891864,0.983783,0.0411354,0.212145,0.378225,0.118596,0.173928,0.234476,0.300094,0.843521,0.0812269,0.63805,0.217682,0.950495,0.014756,0.388071,0.697818,0.594541,0.323823,0.499126,0.501127,0.0911502,0.503547,0.110532,0.321021,0.59372,0.645931,0.617602,0.0131652,0.863782,0.40842,0.602168,0.853689,0.79535,0.333334,0.842582,0.453373,0.895327,0.608924,0.0387614,0.197976,0.287313,0.0142784,0.385602,0.529508,0.231272,0.664653,0.731794,0.118015,0.158465,0.0106078,0.0750608,0.44444,0.66921,0.243751,0.0403359,0.908172,0.772273,0.80539,0.236088,0.402589,0.562815,0.62183,0.122275,0.442296,0.430449,0.14532,0.943274,0.150276,0.762907,0.300936,0.0159925,0.67232,0.933591,0.400605,0.912897,0.0235428,0.82297,0.82887,0.277135,0.0903222,0.485929,0.255352,0.332467,0.860816,0.220475,0.71549,0.523269,0.146307,0.30326,0.000623822,0.881249,0.579973,0.179996,0.140215,0.356125,0.726937,0.691095,0.983941,0.679338,0.580587,0.0802561,0.242456,0.480158,0.839152,0.0206667,0.669957,0.801516,0.484575,0.592667,0.357053,0.795823,0.0295403,0.244812,0.65988,0.370584,0.564716,0.724994,0.662003,0.322389,0.767392,0.948041,0.71499,0.844337,0.846171,0.701395,0.815749,0.197055,0.619871,0.856899,0.1665,0.222063,0.824499,0.130014,0.183185,0.473566,0.893918,0.807538,0.811338,0.848349,0.462048,0.0576284,0.137537,0.189483,0.142997,0.535002,0.136734,0.250442,0.711965,0.890466,0.916626,0.963604,0.139209,0.440019,0.218887,0.910143,0.889459,0.303256,0.9217,0.00994235,0.12308,0.836399,0.0590678,0.0176857,0.0716008,0.631639,0.55965,0.705063,0.872107,0.917922,0.694695,0.380704,0.141421,0.338052,0.829257,0.0716542,0.152654,0.34636,0.0156287,0.324123,0.407825,0.297046,0.0851889,0.465888,0.211717,0.608141,0.42544,0.332363,0.511209,0.386915,0.223088,0.409474,0.591088,0.681232,0.615633,0.579023,0.23575,0.281874,0.227985,0.020937,0.906334,0.340755,0.914604,0.918317,0.393659,0.611715,0.35633,0.548759,0.0712893,0.893527,0.994781,0.0771099,0.308215,0.0516509,0.892961,0.501928,0.67613,0.930146,0.177456,0.0469784,0.112006,0.871173,0.67795,0.554019,0.479752,0.185423,0.411529,0.289857,0.993988,0.648499,0.337899,0.180215,0.863565,0.312333,0.449775,0.015402,0.168814,0.215839,0.71811,0.125549,0.162792,0.989251,0.10154,0.418287,0.844843,0.779931,0.232627,0.334907,0.0472684,0.33211,0.496023,0.470871,0.52117,0.92967,0.261866,0.670038,0.621298,0.912122,0.162437,0.256001,0.0487154,0.276116,0.0548048,0.691307,0.705709,0.519764,0.875915,0.868663,0.708267,0.950779,0.239749,0.483273,0.7659,0.843293,0.13983,0.98739,0.59097,0.489992,0.927194,0.275518,0.556901,0.462721,0.837865,0.991593,0.420723,0.961545,0.834362,0.626091,0.182937,0.578615,0.825253,0.413484,0.0483751,0.729018,0.692544,0.0202531,0.763068,0.948061,0.639959,0.060948,0.908479,0.785584,0.708478,0.507131,0.55909,0.980151,0.630754,0.594619,0.585283,0.423034,0.0973174,0.0512142,0.936614,0.503963,0.404502,0.867019,0.889031,0.185956,0.11315,0.550742,0.749801,0.833953,0.877612,0.797989,0.105242,0.885429,0.86143,0.550199,0.448139,0.4029,0.632098,0.635247,0.949857,0.680998,0.251474,0.463473,0.262752,0.490296,0.164434,0.000901163,0.869714,0.244468,0.980077,0.665495,0.383529,0.339363,0.382232,0.931662,0.775933,0.230845,0.914681,0.943881,0.327981,0.948639,0.649819,0.533571,0.570911,0.614161,0.103142,0.657844,0.674088,0.200444,0.840441,0.180805,0.0204331,0.786474,0.562897,0.766284,0.273751,0.428359,0.390041,0.809874,0.327262,0.319703,0.862038,0.865937,0.519438,0.81646,0.892206,0.913256,0.663458,0.939618,0.759632,0.896732,0.705514,0.844917,0.593041,0.874358,0.0543039,0.585468,0.300858,0.191141,0.714943,0.17371,0.278177,0.754876,0.344212,0.814577,0.901819,0.851117,0.0828884,0.948381,0.977864,0.891306,0.486223,0.373824,0.515333,0.11093,0.226445,0.943007,0.51912,0.371266,0.588992,0.000509202,0.565979,0.179223,0.431664,0.740086,0.713829,0.571489,0.249543,0.578958,0.0569937,0.0174154,0.680315,0.0124121,0.216542,0.591683,0.647944,0.795617,0.34569,0.470515,0.534219,0.545846,0.812253,0.323556,0.30002,0.585613,0.302475,0.201812,0.214716,0.185569,0.704507,0.998439,0.72407,0.235108,0.0254384,0.076663,0.615871,0.348764,0.260604,0.457221,0.823079,0.215451,0.654092,0.0814338,0.411741,0.0833753,0.969936,0.00390989,0.429784,0.602483,0.186735,0.265669,0.314877,0.822114,0.396169,0.631909,0.504755,0.38563,0.894133,0.0624459,0.831549,0.82981,0.140952,0.703164,0.198519,0.171266,0.865291,0.55892,0.138522,0.965565,0.774625,0.653576,0.712099,0.950413,0.621259,0.254215,0.406661,0.623252,0.995126,0.151565,0.564517,0.163481,0.381396,0.747088,0.728458,0.780534,0.122859,0.17561,0.151779,0.926144,0.582908,0.44727,0.786868,0.673353,0.336101,0.0945153,0.559246,0.348509,0.0501947,0.583025,0.208046,0.830755,0.907315,0.369709,0.450535,0.00670505,0.499544,0.378915,0.0407031,0.678945,0.346575,0.82671,0.273524,0.831329,0.151256,0.254601,0.61546,0.990836,0.199141,0.498159,0.341592,0.567769,0.956643,0.529804,0.179504,0.942544,0.518065,0.646588,0.268383,0.562336,0.155622,0.271889,0.703367,0.958359,0.0532773,0.186321,0.723344,0.977119,0.482941,0.492359,0.29918,0.332307,0.306872,0.0374427,0.747838,0.496514,0.737303,0.516667,0.665477,0.0553309,0.76573,0.708475,0.422319,0.00177175,0.612838,0.0904411,0.163966,0.823484,0.909818,0.357325,0.441724,0.627879,0.184556,0.608761,0.372203,0.60246,0.03413,0.957419,0.635152,0.436153,0.66967,0.170212,0.362966,0.330082,0.54529,0.33976,0.277758,0.207323,0.36699,0.51162,0.69548,0.852889,0.136164,0.64144,0.234084,0.516353,0.966986,0.442733,0.205534,0.298845,0.068691,0.338265,0.0482067,0.744304,0.441433,0.589503,0.853853,0.45573,0.732898,0.978487,0.0986136,0.000666142,0.379698,0.270137,0.334093,0.528744,0.877405,0.169065,0.796981,0.423857,0.841606,0.463908,0.0415089,0.615727,0.711193,0.0346009,0.690195,0.220949,0.919535,0.727466,0.437962,0.1661,0.279229,0.15339,0.184846,0.895103,0.335003,0.658493,0.0956036,0.691783,0.21381,0.97853,0.398566,0.480149,0.636474,0.354677,0.0623688,0.998601,0.351123,0.321913,0.304012,0.713166,0.457663,0.822843,0.383919,0.782035,0.535572,0.66099,0.0647246,0.0316005,0.340084,0.484567,0.738891,0.974502,0.419863,0.748789,0.491939,0.199595,0.0203503,0.805905,0.0642455,0.923472,0.142672,0.430206,0.732969,0.181133,0.321719,0.723423,0.779928,0.13544,0.840448,0.621459,0.350537,0.459473,0.490041,0.286336,0.206163,0.64341,0.320998,0.0473894,0.0170428,0.952927,0.36695,0.928894,0.564697,0.0101271,0.0590879,0.586197,0.478201,0.416052,0.218148,0.976287,0.706962,0.576209,0.3677,0.888484,0.0660582,0.634321,0.982238,0.957214,0.0495582,0.609416,0.527679,0.0404472,0.215967,0.783696,0.468369,0.60466,0.536912,0.251085,0.0848285,0.913453,0.67946,0.362533,0.709956,0.661149,0.295793,0.947549,0.516779,0.402028,0.956472,0.220071,0.061239,0.212799,0.952896,0.914471,0.390081,0.434757,0.549773,0.95783,0.413102,0.63202,0.174312,0.116315,0.166869,0.496675,0.666311,0.597074,0.687597,0.289278,0.529253,0.934493,0.695592,0.699995,0.68532,0.979593,0.956502,0.359129,0.309515,0.861398,0.608102,0.0656505,0.775693,0.114912,0.335748,0.730513,0.720014,0.19173,|0.729745,0.986222,0.256148,0.943484,0.497234,0.66208,0.701246,0.862011,0.544473,0.231129,0.0123476,0.937216,0.158398,0.156371,0.0947577,0.643062,0.254362,0.770365,0.207049,0.991848,0.320939,0.799976,0.519511,0.791168,0.525861,0.437324,0.0716838,0.562495,0.71065,0.38618,0.828267,0.172727,0.161892,0.98507,0.439625,0.066101,0.585593,0.895148,0.578774,0.40923,0.921216,0.641583,0.0173078,0.274532,0.235618,0.01015,0.429445,0.4587,0.0991521,0.147875,0.210175,0.696913,0.603904,0.576541,0.241979,0.0792896,0.664641,0.405273,0.169106,0.601262,0.455907,0.713622,0.00515258,0.950762,0.720439,0.498513,0.939111,0.550105,0.683689,0.0727866,0.859015,0.173976,0.735978,0.535315,0.442972,0.450881,0.969026,0.496509,0.74181,0.611788,0.513805,0.411111,0.82374,0.676039,0.821024,0.276201,0.316057,0.0383638,0.746101,0.0533866,0.265294,0.926007,0.401485,0.863834,0.0302017,0.633749,0.717257,0.315819,0.186329,0.932794,0.570058,0.328826,0.43401,0.455615,0.957033,0.790292,0.733913,0.319619,0.7613,0.00270706,0.426999,0.367944,0.467082,0.462841,0.666319,0.126917,0.353351,0.159204,0.248358,0.596632,0.905256,0.381266,0.18482,0.475096,0.531852,0.861705,0.929803,0.0782166,0.366084,0.645331,0.0842238,0.385211,0.675395,0.235799,0.187428,0.889569,0.0458471,0.010672,0.54969,0.000927627,0.540068,0.74064,0.148148,0.129386,0.445524,0.911693,0.763258,0.769498,0.528377,0.154601,0.591901,0.595788,0.94777,0.344374,0.502071,0.443241,0.883839,0.472575,0.132595,0.630905,0.117298,0.751084,0.0824319,0.89072,0.814204,0.73935,0.142501,0.582178,0.632674,0.0781164,0.632737,0.197887,0.834283,0.0737531,0.78409,0.302688,0.572545,0.618172,0.534052,0.954204,0.0750352,0.298892,0.693871,0.388922,0.377429,0.0243754,0.144427,0.157486,0.893933,0.589591,0.31513,0.338488,0.509515,0.326686,0.704938,0.844979,0.821814,0.306353,0.330777,0.63021,0.549177,0.968077,0.770205,0.509355,0.0351998,0.0753019,0.0119695,0.106527,0.714034,0.657396,0.0790859,0.0925249,0.561263,0.499952,0.810583,0.250021,0.579068,0.034389,0.814734,0.67931,0.289816,0.448691,0.305703,0.0374653,0.758893,0.199156,0.673997,0.708551,0.967932,0.316649,0.51511,0.671532,0.097375,0.257644,0.577913,0.138877,0.806845,0.24412,0.770867,0.103591,0.614124,0.699055,0.369421,0.888782,0.779374,0.0821065,0.64519,0.685764,0.302105,0.489409,0.5626,0.886995,0.0163254,0.565869,0.357122,0.829762,0.407779,0.38063,0.833808,0.104217,0.142617,0.154843,0.421867,0.373356,0.980688,0.757143,0.323113,0.320297,0.87703,0.790547,0.464254,0.532297,0.40625,0.0024026,0.997664,0.651936,0.778858,0.682769,0.911801,0.478064,0.334678,0.909196,0.342763,0.626443,0.0961678,0.7482,0.039057,0.850268,0.0304381,0.203079,0.551797,0.137752,0.495659,0.547277,0.384332,0.211079,0.00164515,0.987699,0.942618,0.673593,0.427599,0.154774,0.460617,0.10772,0.407022,0.0944865,0.821376,0.377418,0.46301,0.621846,0.114896,0.254554,0.544755,0.418451,0.923796,0.21082,0.672461,0.800438,0.772777,0.592919,0.80294,0.665437,0.959127,0.0484192,0.880334,0.313052,0.117246,0.371568,0.649903,0.136203,0.67802,0.369116,0.739459,0.92426,0.0145547,0.412465,0.883474,0.475202,0.733787,0.955652,0.910372,0.782837,0.663243,0.61066,0.346441,0.856135,0.475486,0.0459505,0.365103,0.241059,0.65509,0.90135,0.148768,0.47786,0.397891,0.289693,0.351469,0.542993,0.021436,0.765521,0.224457,0.0771367,0.232993,0.329692,0.41524,0.537926,0.81189,0.880556,0.365836,0.740925,0.291932,0.933544,0.333682,0.214149,0.43534,0.237264,0.553431,0.736064,0.326683,0.455544,0.332293,0.897451,0.923865,0.291307,0.419101,0.111395,0.945874,0.394031,0.3374,0.227351,0.66365,0.0884898,0.278539,0.352605,0.629959,0.79644,0.787863,0.935523,0.78413,0.331823,0.822679,0.35219,0.13268,0.563425,0.150589,0.019426,0.856838,0.63137,0.518752,0.465152,0.802806,0.714498,0.902151,0.970581,0.553259,0.0350659,0.838463,0.849944,0.404909,0.214124,0.332907,0.605603,0.704997,0.0631098,0.412162,0.644328,0.737048,0.154317,0.101313,0.666958,0.610472,0.630577,0.450609,0.570022,0.363418,0.320312,0.945639,0.60002,0.0129082,0.592084,0.481536,0.818581,0.688675,0.403015,0.464163,0.14693,0.332484,0.488299,0.758289,0.254264,0.65668,0.380448,0.764553,0.631297,0.302482,0.964021,0.194662,0.0436808,0.988069,0.210055,0.556307,0.728038,0.804826,0.425188,0.529248,0.46528,0.896909,0.184357,0.495613,0.545044,0.455564,0.026406,0.48155,0.395909,0.00241518,0.679935,0.698532,0.932759,0.192333,0.977977,0.980098,0.966782,0.603523,0.324373,0.155804,0.326532,0.434856,0.77847,0.21647,0.659285,0.496619,0.589185,0.501784,0.853663,0.453196,0.812835,0.739492,0.359349,0.318303,0.508352,0.0963736,0.413979,0.00477743,0.4694,0.744131,0.798648,0.0999779,0.578024,0.892511,0.375996,0.931409,0.669906,0.120366,0.940486,0.139264,0.267857,0.992844,0.00486851,0.746815,0.915266,0.875885,0.874467,0.563682,0.717042,0.170636,0.020807,0.714311,0.455972,0.622179,0.127671,0.0545073,0.198761,0.253245,0.595991,0.770653,0.384211,0.463131,0.598247,0.799348,0.834709,0.231409,0.403939,0.637013,0.827998,0.400231,0.00901121,0.812864,0.846402,0.115408,0.82633,0.561327,0.147252,0.675117,0.358758,0.500653,0.150404,0.285773,0.94868,0.716215,0.351681,0.553562,0.337113,0.802615,0.514726,0.872347,0.10794,0.271492,0.573855,0.238313,0.504914,0.459299,0.76908,0.772683,0.556852,0.317104,0.192965,0.994507,0.266656,0.317063,0.172964,0.558841,0.249027,0.945513,0.0869659,0.496501,0.515993,0.375309,0.952042,0.910835,0.290087,0.817759,0.965592,0.392817,0.591778,0.57868,0.0442281,0.959522,0.23024,0.810881,0.162639,0.326258,0.106221,0.254831,0.960005,0.0506233,0.149573,0.690667,0.907947,0.698759,0.503087,0.282556,0.342263,0.13388,0.44859,0.500534,0.329823,0.0787848,0.477588,0.870181,0.640519,0.357539,0.870457,0.321664,0.463656,0.540352,0.138049,0.34929,0.790243,0.334656,0.655595,0.716417,0.282558,0.0233722,0.834654,0.899347,0.594828,0.285493,0.412463,0.903768,0.965254,0.579219,0.861974,0.544197,0.230298,0.305593,0.315459,0.923724,0.351745,0.936834,0.370836,0.328514,0.345154,0.760423,0.782524,0.706842,0.563873,0.85323,0.641912,0.917959,0.670153,0.529827,0.171629,0.625135,0.858625,0.97988,0.652949,0.876446,0.241835,0.397985,0.721496,0.408892,0.603012,0.792469,0.872547,0.964944,0.931125,0.680438,0.133696,0.220197,0.248919,0.890352,0.0965779,0.287993,0.707009,0.311731,0.0848156,0.634397,0.772761,0.0285237,0.948332,0.488217,0.0689325,0.149155,0.364927,0.0183063,0.0141156,0.335785,0.410204,0.297189,0.0156323,0.525499,0.24312,0.982551,0.904371,0.601922,0.0151803,0.0169274,0.988017,0.816185,0.789091,0.814659,0.203203,0.274255,0.285649,0.525103,0.336625,0.329765,0.0603878,0.57316,0.121337,0.188625,0.712938,0.821811,0.34419,0.33824,0.246153,0.28466,0.777781,0.965838,0.618905,0.54091,0.638249,0.197285,0.882582,0.402575,0.949835,0.296832,0.737774,0.186481,0.223387,0.29203,0.0905448,0.740501,0.230586,0.250258,0.038922,0.03648,0.671174,0.908253,0.331718,0.0854713,0.865749,0.63592,0.4314,0.801873,0.31717,0.366963,0.714539,0.600991,0.418515,0.973687,0.361462,0.844518,0.957558,0.47219,0.687577,0.576086,0.394256,0.732536,0.354109,0.86522,0.736684,0.625797,0.683457,0.877847,0.655914,0.614094,0.0830222,0.670533,0.659336,0.390579,0.306642,0.578921,0.820083,0.135109,0.113944,0.215204,0.474165,0.387142,0.15866,0.433776,0.398165,0.0872532,0.982646,0.758947,0.334885,0.138289,0.81143,0.197191,0.112123,0.846183,0.951323,0.192462,0.728651,0.435046,0.992382,0.194209,0.516171,0.925238,0.659887,0.466462,0.803979,0.405359,0.789036,0.855674,0.441248,0.585415,0.344016,0.993492,0.045765,0.0888578,0.764553,0.948401,0.415139,0.681696,0.652789,0.963971,0.561466,0.519417,0.297098,0.0213323,0.373107,0.0696995,0.828024,0.232447,0.480395,0.899395,0.1616,0.273044,0.572961,0.123712,0.257004,0.773349,0.574346,0.464228,0.179743,0.0206447,0.746494,0.225374,0.0856224,0.160564,0.054454,0.981571,0.679649,0.34909,0.86023,0.340552,0.394804,0.804918,0.211109,0.95384,0.339915,0.889661,0.990916,0.61963,0.678904,0.239643,0.338296,0.627185,0.77181,0.874914,0.209025,0.611045,0.0683684,0.477767,0.148168,0.106025,0.53591,0.0361194,0.361378,0.712084,0.0595838,0.0904083,0.728395,0.313984,0.731022,0.764205,0.503701,0.138712,0.942832,0.0884709,0.978802,0.116877,0.280171,0.380678,0.896671,0.682375,0.909696,0.755961,0.922579,0.906804,0.341985,0.0475954,0.696984,0.872601,0.575007,0.779025,0.255162,0.0445022,0.054327,0.846513,0.617815,0.446785,0.123174,0.0119749,0.165205,0.249758,0.00467086,0.972582,0.124792,0.738557,0.569046,0.284527,0.589207,0.292999,0.51848,0.361177,0.405244,0.305271,0.798839,0.245063,0.324628,0.79118,0.369871,0.992618,0.987963,0.298623,0.575612,0.658766,0.663496,0.111137,0.356352,0.194611,0.693611,0.422856,0.876556,0.466521,0.120492,0.0326935,0.318445,0.479692,0.707245,0.695664,0.484572,0.921642,0.298592,0.222685,0.961936,0.00264472,0.0697892,0.533014,0.211388,0.182978,0.392589,0.186302,0.243954,0.806953,0.588028,0.431701,0.95258,0.962721,0.51688,0.435261,0.3799,0.0184911,0.34707,0.129735,0.748479,0.785453,0.192926,0.461697,0.0490583,0.287595,0.393051,0.560912,0.575172,0.811279,0.465318,0.378924,0.416585,0.763794,0.862029,0.761833,0.103104,0.673631,0.469394,0.929512,0.0344015,0.339934,0.123641,|0.888475,0.717509,0.772271,0.871762,0.943494,0.774203,0.323889,0.85057,0.165514,0.391149,0.656163,0.0208218,0.0959421,0.59238,0.0442227,0.274997,0.0027582,0.612567,0.674368,0.647944,0.157964,0.586513,0.681179,0.918882,0.537808,0.612095,0.840954,0.752223,0.299051,0.484523,0.307059,0.472792,0.108486,0.76743,0.0955945,0.979156,0.760164,0.942451,0.584303,0.853893,0.125645,0.822457,0.466933,0.499146,0.431089,0.690144,0.612971,0.480916,0.0842413,0.622058,0.168233,0.598754,0.807118,0.531981,0.81236,0.841381,0.620095,0.784373,0.385693,0.688888,0.549946,0.080488,0.260944,0.138599,0.876007,0.398341,0.598388,0.83151,0.945925,0.264644,0.409074,0.676968,0.313945,0.568991,0.16975,0.392823,0.931767,0.564773,0.991039,0.483571,0.679803,0.292747,0.670119,0.783762,0.601896,0.483053,0.169095,0.7014,0.238007,0.991472,0.578551,0.573386,0.92761,0.830105,0.892223,0.582569,0.993132,0.0696134,0.044218,0.0862846,0.866315,0.170155,0.785589,0.771204,0.0504012,0.390486,0.329451,0.280215,0.652222,0.555866,0.640442,0.337052,0.841458,0.151249,0.193207,0.225204,0.598551,0.404973,0.509974,0.895599,0.0713474,0.263829,0.264953,0.245362,0.544002,0.55228,0.640159,0.822898,0.099048,0.458471,0.816684,0.596349,0.684177,0.273839,0.636419,0.0591819,0.233162,0.607426,0.328486,0.969807,0.0303333,0.345923,0.963033,0.789702,0.716049,0.617053,0.373068,0.0424052,0.928039,0.108129,0.278732,0.985003,0.299185,0.127321,0.431177,0.867251,0.905538,0.737264,0.761624,0.421426,0.250942,0.173301,0.960589,0.689498,0.757835,0.194303,0.737342,0.86847,0.429828,0.495211,0.92416,0.095495,0.511743,0.431874,0.764989,0.242563,0.0819809,0.164022,0.348677,0.526033,0.162445,0.0517997,0.596524,0.898655,0.871534,0.492113,0.246335,0.845281,0.530869,0.442855,0.289997,0.690526,0.931727,0.839243,0.0385121,0.647449,0.859505,0.469042,0.992954,0.954363,0.559745,0.190655,0.731901,0.149592,0.537264,0.247233,0.556297,0.83289,0.916193,0.0350496,0.551994,0.55525,0.723008,0.158395,0.734522,0.378673,0.870738,0.218668,0.483589,0.228475,0.168112,0.941555,0.178123,0.807144,0.441297,0.340564,0.559705,0.0919033,0.527625,0.188305,0.731855,0.664373,0.937631,0.764858,0.219864,0.9866,0.0589814,0.780251,0.600006,0.475831,0.883645,0.988876,0.954014,0.81742,0.367051,0.00671154,0.0809814,0.100447,0.474685,0.549497,0.156747,0.538584,0.898429,0.916898,0.0869865,0.695911,0.093193,0.346589,0.763133,0.996884,0.803751,0.949093,0.814577,0.645304,0.405851,0.194349,0.401864,0.811011,0.796367,0.747722,0.639839,0.0492923,0.115761,0.35189,0.980404,0.132193,0.320802,0.114886,0.47324,0.243833,0.482931,0.177278,0.9129,0.129556,0.46153,0.856403,0.690686,0.357034,0.868832,0.159851,0.435716,0.189277,0.85382,0.725718,0.00478715,0.230486,0.685895,0.406791,0.691399,0.23396,0.4387,0.87793,0.959647,0.00189453,0.173864,0.518578,0.752878,0.243988,0.188104,0.640433,0.15555,0.265414,0.635555,0.850266,0.529214,0.894078,0.656928,0.652887,0.965128,0.694864,0.761545,0.854472,0.0139199,0.0126117,0.0297361,0.207043,0.16578,0.93609,0.854148,0.512436,0.788088,0.74915,0.714007,0.755316,0.915137,0.0344055,0.788243,0.14888,0.739727,0.0704727,0.387684,0.328059,0.970149,0.353468,0.85894,0.0884631,0.97463,0.250896,0.182846,0.00266862,0.103004,0.681814,0.766156,0.755733,0.586091,0.299431,0.184776,0.506151,0.609178,0.68707,0.895589,0.239097,0.857321,0.445201,0.679814,0.736106,0.44067,0.589212,0.569086,0.819248,0.930043,0.782805,0.881227,0.562428,0.749573,0.12856,0.713099,0.342083,0.863216,0.197882,0.873688,0.154729,0.311273,0.261738,0.261495,0.730359,0.933052,0.826669,0.954408,0.625035,0.303905,0.590608,0.801012,0.178843,0.365182,0.474357,0.544403,0.679045,0.279975,0.64798,0.0964894,0.475783,0.225028,0.00795239,0.238125,0.583468,0.606281,0.820781,0.653156,0.583087,0.526019,0.634541,0.86031,0.0784081,0.997966,0.718197,0.628413,0.10825,0.0870327,0.561143,0.414151,0.867393,0.19899,0.544881,0.624871,0.438092,0.145996,0.933971,0.461355,0.0481767,0.0418069,0.0821002,0.909524,0.0635794,0.774238,0.254048,0.52217,0.572124,0.098402,0.0391129,0.339115,0.670365,0.599352,0.211305,0.299051,0.405909,0.632263,0.530939,0.259912,0.184895,0.079813,0.20252,0.231447,0.471368,0.774153,0.559473,0.233866,0.725906,0.554251,0.362987,0.824537,0.466193,0.40027,0.0952625,0.72628,0.891674,0.24986,0.231993,0.263847,0.173174,0.704026,0.284685,0.989319,0.427869,0.236564,0.0854731,0.00567967,0.308904,0.153008,0.0818761,0.212659,0.657597,0.459175,0.199372,0.303897,0.150937,0.681354,0.968016,0.691396,0.676447,0.597184,0.632932,0.468109,0.506784,0.705668,0.689153,0.137276,0.83235,0.562569,0.755299,0.0493069,0.294174,0.185837,0.70911,0.238224,0.856109,0.468782,0.398977,0.862911,0.201422,0.25723,0.00022763,0.819328,0.20523,0.290762,0.760511,0.789028,0.0561479,0.464422,0.643817,0.661172,0.414962,0.519137,0.638549,0.660079,0.625682,0.832031,0.34798,0.955796,0.355004,0.544155,0.661338,0.836415,0.669399,0.475908,0.571534,0.181674,0.65834,0.105154,0.465599,0.874834,0.484269,0.866208,0.462222,0.748396,0.549495,0.06062,0.765218,0.706022,0.964232,0.416743,0.232242,0.143427,0.858708,0.266342,0.671256,0.999018,0.287452,0.96038,0.567388,0.181483,0.779328,0.295314,0.486279,0.713582,0.946808,0.976978,0.456312,0.702565,0.921141,0.643765,0.430143,0.71006,0.660942,0.532803,0.667005,0.59373,0.916016,0.259455,0.974273,0.400123,0.482642,0.54789,0.5878,0.310277,0.312977,0.962065,0.00191694,0.0799412,0.0958213,0.953361,0.358403,0.220475,0.467109,0.259025,0.973856,0.364172,0.704573,0.110483,0.620893,0.42991,0.815276,0.94554,0.588992,0.114067,0.924117,0.394223,0.804796,0.523743,0.835155,0.598723,0.360855,0.0368201,0.897743,0.0433322,0.0757309,0.315881,0.974112,0.471482,0.301682,0.464877,0.579027,0.294172,0.0949719,0.434911,0.574642,0.453743,0.153247,0.25104,0.0249254,0.925469,0.680634,0.327593,0.0203435,0.958768,0.691979,0.475204,0.381779,0.61364,0.463093,0.303729,0.141916,0.226502,0.598772,0.450774,0.506815,0.855601,0.64649,0.936539,0.389257,0.339061,0.725475,0.980406,0.44728,0.408182,0.19962,0.417951,0.277818,0.205035,0.711129,0.939336,0.745794,0.992044,0.365312,0.509653,0.536925,0.267979,0.73197,0.892039,0.836157,0.278681,0.540186,0.422171,0.642333,0.0833095,0.151009,0.188149,0.48221,0.909591,0.85287,0.854874,0.450322,0.365847,0.826265,0.0802409,0.749281,0.486666,0.515643,0.112384,0.548093,0.942972,0.386892,0.622113,0.378724,0.461282,0.288092,0.535328,0.87647,0.54703,0.527313,0.96847,0.688996,0.537872,0.829307,0.850843,0.933138,0.361766,0.754307,0.0145446,0.201728,0.693182,0.325279,0.841336,0.706978,0.843151,0.509371,0.669423,0.932153,0.326911,0.40604,0.817452,0.0430414,0.979502,0.544256,0.0976557,0.153722,0.104681,0.021917,0.303307,0.531747,0.199586,0.578064,0.864868,0.325664,0.508066,0.412202,0.43412,0.435298,0.785449,0.691702,0.242537,0.464933,0.831303,0.176724,0.917923,0.0547446,0.495984,0.677727,0.715627,0.870735,0.568456,0.538679,0.236452,0.0325305,0.111065,0.694858,0.822025,0.666934,0.058834,0.979287,0.671609,0.0145692,0.448798,0.964743,0.905537,0.771857,0.953629,0.0813918,0.787077,0.89126,0.0322102,0.104805,0.355269,0.353264,0.812407,0.251129,0.345117,0.778442,0.742976,0.735444,0.982619,0.00224012,0.057137,0.331319,0.804674,0.116159,0.793562,0.393832,0.598872,0.850245,0.186001,0.795758,0.286026,0.799357,0.249197,0.514659,0.269221,0.358047,0.850376,0.935707,0.37188,0.0608958,0.856315,0.694445,0.658772,0.0513718,0.552557,0.479258,0.77361,0.895923,0.941215,0.480149,0.101556,0.023524,0.876989,0.207158,0.966742,0.604689,0.438335,0.758177,0.504122,0.579646,0.29774,0.99547,0.381192,0.40883,0.0168461,0.885893,0.297009,0.646425,0.555,0.9472,0.561829,0.496372,0.306581,0.649479,0.771912,0.100088,0.502755,0.627409,0.0550549,0.512663,0.114888,0.122978,0.668884,0.327778,0.00387919,0.904105,0.370533,0.164768,0.125323,0.173083,0.49375,0.468469,0.5973,0.0329993,0.834073,0.264801,0.559152,0.560125,0.724306,0.170491,0.16543,0.505132,0.635483,0.0656455,0.428976,0.720184,0.369402,0.139194,0.651856,0.196717,0.798911,0.318631,0.437901,0.233826,0.430419,0.436025,0.888023,0.563999,0.172094,0.16511,0.124645,0.118527,0.500126,0.829748,0.624775,0.603766,0.75303,0.701965,0.479075,0.623424,0.751901,0.243046,0.150224,0.265928,0.294639,0.860343,0.768779,0.474292,0.670878,0.0427045,0.875721,0.685706,0.358795,0.0412246,0.534079,0.641259,0.0355943,0.610079,0.122894,0.500684,0.912175,0.733422,0.962185,0.310669,0.0168797,0.283343,0.252867,0.804798,0.921284,0.398195,0.325913,0.575815,0.909609,0.917838,0.666126,0.623033,0.583583,0.649769,0.868515,0.0862885,0.961635,0.873961,0.957165,0.540568,0.319955,0.787822,0.586608,0.88196,0.424141,0.430071,0.524427,0.344357,0.0330973,0.435791,0.0210869,0.113978,0.556939,0.290849,0.0295407,0.126097,0.687183,0.137254,0.265061,0.18986,0.886421,0.113792,0.671524,0.693884,0.329525,0.615279,0.241845,0.52738,0.738082,0.315258,0.00906056,0.945563,0.503586,0.298798,0.241924,0.866615,0.17433,0.950461,0.900649,0.994882,0.0428888,0.423893,0.69021,0.435886,0.317858,0.731267,0.840881,0.106474,0.761345,0.0552969,0.105356,0.651411,0.557262,0.322508,0.312388,0.464694,0.545678,0.202279,0.458672,0.758664,0.759221,0.187822,0.681808,0.133481,|0.53582,0.46643,0.693043,0.0103518,0.808535,0.239415,0.236571,0.995219,0.10694,0.442246,0.707456,0.440452,0.95734,0.808569,0.613114,0.642202,0.195981,0.0419086,0.447717,0.176955,0.190653,0.787463,0.247577,0.607106,0.472353,0.824356,0.768722,0.464319,0.241732,0.149899,0.834308,0.441639,0.563176,0.106984,0.194108,0.0267442,0.940843,0.794346,0.478154,0.206978,0.685967,0.180276,0.174897,0.91367,0.487227,0.606497,0.396567,0.050675,0.235712,0.593385,0.205611,0.128435,0.460061,0.525773,0.935953,0.875191,0.852102,0.122654,0.884485,0.566696,0.789122,0.380461,0.80449,0.863511,0.433141,0.41751,0.846777,0.219471,0.697901,0.115058,0.567204,0.554575,0.721819,0.696737,0.462454,0.585604,0.0255916,0.544966,0.30026,0.424289,0.0928416,0.952913,0.414431,0.395475,0.709058,0.506386,0.636247,0.188963,0.239717,0.478077,0.245835,0.613306,0.25544,0.698104,0.634038,0.864195,0.934458,0.469583,0.247503,0.850634,0.539352,0.909499,0.820623,0.643148,0.241315,0.277589,0.0998337,0.537947,0.272363,0.38504,0.259514,0.762253,0.597508,0.303376,0.358166,0.792791,0.25037,0.847547,0.48501,0.979578,0.466483,0.309396,0.653257,0.801383,0.886662,0.9563,0.915137,0.000632465,0.0162749,0.166795,0.977172,0.518751,0.622849,0.406276,0.484813,0.107916,0.118387,0.11972,0.839708,0.363585,0.953283,0.570121,0.929262,0.653227,0.0608121,0.203014,0.0753261,0.390159,0.407269,0.79695,0.0316702,0.952725,0.453726,0.579222,0.94095,0.226874,0.536581,0.343137,0.242264,0.584388,0.0517291,0.933355,0.296844,0.00103605,0.544497,0.972862,0.863724,0.607148,0.51267,0.440815,0.491747,0.735584,0.689415,0.91616,0.421879,0.972309,0.257115,0.532749,0.730259,0.441111,0.130248,0.69874,0.943,0.628039,0.398834,0.855501,0.197928,0.254532,0.868868,0.7693,0.682679,0.285206,0.995945,0.550385,0.345614,0.266021,0.378092,0.00103492,0.279824,0.188308,0.884425,0.522183,0.330001,0.826086,0.159739,0.0518804,0.68572,0.244679,0.236059,0.192886,0.29568,0.217874,0.132844,0.974206,0.110021,0.225647,0.0204194,0.86971,0.961089,0.0466006,0.868907,0.986159,0.975582,0.331385,0.319374,0.311664,0.620413,0.575087,0.870602,0.132995,0.937227,0.376016,0.982613,0.253281,0.468311,0.72434,0.0876149,0.500386,0.362075,0.250319,0.911024,0.88554,0.437573,0.986036,0.189071,0.167868,0.382636,0.55656,0.154024,0.561943,0.521324,0.582449,0.479474,0.564581,0.58346,0.413737,0.0903371,0.18727,0.822626,0.364008,0.604915,0.496476,0.919935,0.128104,0.514971,0.756553,0.554803,0.973293,0.0424358,0.337763,0.0604147,0.0892992,0.522463,0.146321,0.0205904,0.499197,0.934231,0.701079,0.819229,0.465955,0.267233,0.377744,0.0370986,0.480724,0.758582,0.190137,0.682483,0.83085,0.0894596,0.123912,0.729175,0.137758,0.573749,0.0772529,0.0202591,0.129001,0.00255489,0.299904,0.332979,0.87971,0.152189,0.429114,0.197654,0.117883,0.941015,0.230184,0.429082,0.77059,0.817725,0.698803,0.973809,0.557154,0.160896,0.751405,0.916991,0.686369,0.380749,0.664002,0.0609948,0.886337,0.107564,0.340441,0.739783,0.856659,0.757175,0.511481,0.941808,0.547494,0.442375,0.193561,0.230034,0.0909856,0.062747,0.508421,0.593815,0.298398,0.385779,0.525954,0.478889,0.660578,0.483128,0.168092,0.546736,0.21439,0.611532,0.123427,0.417218,0.523623,0.51546,0.162615,0.111175,0.0282375,0.962466,0.462582,0.528648,0.74738,0.994193,0.813958,0.971468,0.742634,0.113963,0.44881,0.320172,0.107233,0.467647,0.81645,0.887446,0.306565,0.436643,0.971367,0.76289,0.276188,0.644642,0.909074,0.612226,0.00124419,0.567547,0.117781,0.861968,0.676665,0.806333,0.0800778,0.861924,0.184963,0.890831,0.355608,0.654974,0.0273032,0.450221,0.519565,0.520286,0.659418,0.228254,0.357598,0.167031,0.229569,0.100355,0.64008,0.645195,0.681626,0.683033,0.553525,0.569286,0.847775,0.598168,0.549145,0.0483442,0.835925,0.826112,0.740325,0.059312,0.368867,0.103066,0.625457,0.761692,0.252465,0.51328,0.606695,0.323059,0.475952,0.509136,0.61223,0.00406343,0.825875,0.545912,0.131074,0.373025,0.1444,0.445019,0.321089,0.980825,0.773766,0.183667,0.816754,0.281839,0.0380415,0.454921,0.251812,0.590441,0.304755,0.692153,0.509335,0.332244,0.634367,0.655277,0.500699,0.00546652,0.792279,0.185895,0.920544,0.736842,0.744374,0.114832,0.68877,0.782386,0.911309,0.664348,0.608134,0.401371,0.762207,0.243654,0.585497,0.562766,0.120369,0.840696,0.814196,0.923815,0.170621,0.665498,0.733791,0.539156,0.0264905,0.00812328,0.573687,0.0544262,0.459509,0.982836,0.136198,0.781031,0.162459,0.174921,0.679594,0.0514136,0.377639,0.910351,0.157016,0.805353,0.32106,0.862317,0.203026,0.55645,0.780917,0.381404,0.459103,0.331398,0.156224,0.0589221,0.635305,0.717812,0.642685,0.555305,0.753383,0.685506,0.0687239,0.453737,0.691973,0.774298,0.898226,0.807062,0.935863,0.83884,0.774669,0.23343,0.369456,0.293003,0.797111,0.986466,0.104768,0.644884,0.61837,0.360212,0.227405,0.352378,0.104635,0.338347,0.129924,0.423769,0.777501,0.609297,0.669622,0.986299,0.708461,0.782236,0.583607,0.830022,0.24692,0.950309,0.628643,0.97174,0.903964,0.14418,0.898009,0.716834,0.70621,0.80794,0.522229,0.113718,0.173332,0.982587,0.0449995,0.0273671,0.676171,0.0645756,0.358727,0.0122222,0.588783,0.569569,0.693002,0.296099,0.615466,0.428995,0.409463,0.284802,0.289066,0.847519,0.149472,0.737551,0.270419,0.950419,0.795507,0.466096,0.901692,0.969271,0.763545,0.994982,0.552747,0.3728,0.289583,0.646122,0.0401913,0.212222,0.344558,0.556767,0.0157326,0.960984,0.635228,0.251376,0.913466,0.194495,0.840578,0.717763,0.969572,0.805233,0.817517,0.419446,0.957181,0.502007,0.485151,0.790402,0.0086661,0.762119,0.816322,0.515338,0.747377,0.236385,0.154174,0.126222,0.919856,0.69362,0.170091,0.294419,0.016982,0.590752,0.688178,0.869653,0.352706,0.825974,0.05836,0.275685,0.540535,0.278083,0.785194,0.334327,0.606309,0.457737,0.828705,0.0537857,0.316296,0.615151,0.299175,0.850079,0.317247,0.64263,0.81325,0.0959412,0.733273,0.251738,0.285412,0.641523,0.881215,0.258138,0.312973,0.652308,0.239167,0.751983,0.433826,0.266841,0.478934,0.112372,0.51763,0.345703,0.7748,0.338016,0.602861,0.550011,0.0149582,0.142594,0.812762,0.455915,0.132539,0.562502,0.756849,0.910301,0.0628854,0.494227,0.730141,0.696952,0.564848,0.368306,0.978019,0.0809109,0.219168,0.818747,0.63765,0.327592,0.768142,0.930955,0.259794,0.569209,0.496668,0.668686,0.44989,0.739922,0.342786,0.342092,0.784327,0.505408,0.998656,0.380792,0.598128,0.252536,0.220087,0.783901,0.00683486,0.158666,0.427319,0.803079,0.263276,0.841225,0.121113,0.00757849,0.111721,0.765209,0.301067,0.739053,0.379305,0.246685,0.83966,0.372122,0.925465,0.739956,0.757213,0.641698,0.926065,0.544123,0.764363,0.0223334,0.389531,0.728694,0.585247,0.783224,0.198041,0.647793,0.131427,0.00981158,0.607272,0.547226,0.173251,0.96531,0.949952,0.754104,0.486287,0.569551,0.669902,0.968555,0.572308,0.512471,0.295518,0.00461781,0.202852,0.0510564,0.350707,0.0897323,0.158162,0.240016,0.426329,0.106828,0.16962,0.629049,0.381222,0.147998,0.944052,0.367458,0.33912,0.625877,0.771123,0.760538,0.983254,0.160035,0.464397,0.664225,0.540828,0.919406,0.270207,0.46825,0.579362,0.890709,0.26806,0.522667,0.159483,0.136441,0.881723,0.443244,0.421873,0.0822186,0.67439,0.249214,0.431706,0.121256,0.476595,0.162103,0.396976,0.783612,0.351159,0.661876,0.385933,0.0980839,0.232147,0.544662,0.175546,0.150836,0.449992,0.989819,0.305028,0.584825,0.400944,0.723508,0.506467,0.844026,0.183,0.832839,0.588793,0.592277,0.469962,0.604338,0.368148,0.1318,0.289694,0.901971,0.0293529,0.967659,0.849206,0.862318,0.794596,0.168125,0.647008,0.955766,0.382527,0.465744,0.935494,0.817272,0.880341,0.588356,0.560813,0.470459,0.286955,0.303381,0.461738,0.88897,0.555487,0.636681,0.464408,0.90935,0.805288,0.411338,0.924551,0.906862,0.22682,0.637876,0.962967,0.0884061,0.252622,0.707401,0.639605,0.151693,0.0925674,0.845746,0.796242,0.492214,0.137777,0.818564,0.119771,0.227033,0.372084,0.358053,0.678896,0.768728,0.0391311,0.930774,0.282235,0.285375,0.53395,0.326612,0.112808,0.173882,0.267881,0.52131,0.185255,0.54111,0.193753,0.900498,0.133363,0.227471,0.286441,0.578917,0.458233,0.324256,0.944101,0.147773,0.764678,0.997934,0.953447,0.413493,0.346767,0.290502,0.33497,0.568628,0.0723293,0.844442,0.43669,0.457199,0.892816,0.820942,0.308651,0.68645,0.846664,0.654767,0.274082,0.245449,0.483985,0.612164,0.60733,0.774044,0.992688,0.0363173,0.404351,0.330243,0.25337,0.890014,0.818642,0.802029,0.791471,0.763787,0.708758,0.953976,0.68256,0.890887,0.0375059,0.695038,0.354153,0.719895,0.988464,0.0972164,0.397488,0.410332,0.360164,0.421115,0.474107,0.33417,0.936582,0.119533,0.494372,0.215233,0.968254,0.89846,0.393365,0.224451,0.583171,0.38452,0.677974,0.0491214,0.332136,0.837074,0.468802,0.796017,0.760499,0.549648,0.151492,0.736709,0.0452967,0.685291,0.944789,0.561432,0.157366,0.846474,0.525502,0.850532,0.600683,0.662756,0.348692,0.553561,0.243893,0.211754,0.371396,0.844962,0.777902,0.767034,0.331365,0.585945,0.585886,0.712481,0.745087,0.829211,0.452785,0.237953,0.0396635,0.704722,0.261862,0.974209,0.577919,0.0793543,0.720817,0.696089,0.4605,0.0387338,0.0135119,0.653806,0.500315,0.108644,0.069164,0.942817,0.531014,0.134285,0.372609,0.0129665,0.92223,0.0266248,0.257929,0.825163,0.0278635,|0.952011,0.0757118,0.582483,0.328098,0.319902,0.975524,0.591235,0.452914,0.59659,0.535961,0.861318,0.60466,0.298869,0.615721,0.280439,0.551628,0.275726,0.808333,0.681878,0.358251,0.0418659,0.998701,0.844574,0.48191,0.311795,0.732933,0.960398,0.963169,0.367664,0.782444,0.141936,0.781126,0.221997,0.483758,0.385858,0.0800849,0.273308,0.598687,0.97753,0.794112,0.191782,0.607466,0.124624,0.590267,0.415786,0.28543,0.65648,0.381758,0.431508,0.657493,0.93145,0.0613638,0.384816,0.814717,0.390054,0.13568,0.637402,0.743127,0.193024,0.867679,0.771198,0.470056,0.526019,0.949434,0.235816,0.467479,0.718791,0.73691,0.629586,0.230545,0.677325,0.930495,0.375514,0.338331,0.362518,0.5248,0.802452,0.474079,0.304905,0.353072,0.962215,0.131408,0.230079,0.0344566,0.788857,0.600586,0.174958,0.625998,0.548648,0.12108,0.729945,0.880108,0.340238,0.81177,0.329514,0.372632,0.0671983,0.930047,0.562102,0.630539,0.830038,0.800523,0.419764,0.304518,0.471744,0.508417,0.767663,0.284401,0.398464,0.925572,0.107054,0.495495,0.723787,0.408873,0.083182,0.283732,0.811804,0.319389,0.405648,0.092418,0.149027,0.577113,0.571446,0.243727,0.278406,0.656391,0.0915394,0.249545,0.140076,0.760047,0.988043,0.387885,0.184298,0.486942,0.0624282,0.404945,0.896395,0.595125,0.42488,0.38976,0.0528067,0.681447,0.827987,0.6368,0.808897,0.448784,0.233673,0.674091,0.438239,0.173136,0.610599,0.172856,0.521327,0.841533,0.578306,0.217651,0.963817,0.384711,0.901558,0.00622278,0.449076,0.6136,0.623974,0.578137,0.732363,0.121816,0.378044,0.178151,0.228574,0.0794967,0.130685,0.00632584,0.302926,0.126073,0.472828,0.210069,0.318244,0.435506,0.0617819,0.250668,0.862929,0.320715,0.101204,0.046263,0.84285,0.879939,0.972334,0.782233,0.187234,0.706096,0.767753,0.0341654,0.592029,0.624093,0.214017,0.922874,0.867997,0.543945,0.597279,0.851258,0.192905,0.980899,0.562315,0.563913,0.739924,0.968951,0.49142,0.024339,0.811433,0.0666181,0.290756,0.514155,0.14875,0.863613,0.450904,0.352721,0.0619823,0.560679,0.0659527,0.553334,0.20338,0.933134,0.468344,0.636312,0.480133,0.214053,0.418192,0.0908386,0.148733,0.330862,0.270908,0.0919296,0.208264,0.751831,0.163104,0.580373,0.975541,0.424605,0.091862,0.376863,0.288671,0.701868,0.750939,0.841273,0.509175,0.330108,0.655781,0.149105,0.658848,0.367251,0.0908743,0.0132435,0.559874,0.547368,0.404031,0.0154068,0.476326,0.717562,0.986056,0.995201,0.340177,0.0580969,0.458485,0.00279802,0.593814,0.430841,0.136682,0.708016,0.285586,0.0509673,0.970033,0.729422,0.970562,0.545225,0.474594,0.719799,0.548727,0.952713,0.520324,0.704623,0.622091,0.920858,0.811546,0.795275,0.968504,0.321927,0.34116,0.61852,0.720553,0.553324,0.426813,0.567581,0.0391918,0.830675,0.375325,0.208277,0.654469,0.557086,0.318542,0.988019,0.368708,0.558497,0.0618834,0.904644,0.81914,0.749331,0.84059,0.100132,0.62361,0.82455,0.624361,0.865701,0.653953,0.862018,0.136671,0.180823,0.948918,0.363328,0.529097,0.940924,0.803006,0.211553,0.713092,0.0611852,0.754024,0.453087,0.281199,0.723196,0.722447,0.406282,0.686385,0.564997,0.906907,0.762597,0.0736973,0.483747,0.595633,0.488824,0.453558,0.618619,0.436461,0.997689,0.592564,0.285666,0.0084548,0.967159,0.38506,0.31607,0.608982,0.683523,0.854566,0.968761,0.553623,0.952854,0.750009,0.291372,0.476311,0.891436,0.431281,0.172969,0.651628,0.0513428,0.863132,0.0495413,0.497155,0.0838524,0.458428,0.449755,0.637028,0.521178,0.901003,0.937503,0.308067,0.804807,0.594084,0.96566,0.615709,0.897803,0.692497,0.703277,0.587875,0.74265,0.193649,0.416424,0.799173,0.221397,0.760545,0.149246,0.113097,0.827699,0.00293529,0.301028,0.0787704,0.132992,0.78705,0.156887,0.159922,0.419684,0.481275,0.432514,0.335186,0.801827,0.0562363,0.230608,0.517823,0.769619,0.626073,0.653482,0.643205,0.718934,0.650399,0.618724,0.546355,0.75292,0.13458,0.387275,0.547975,0.775982,0.0218198,0.335002,0.596744,0.928903,0.698838,0.791663,0.648328,0.77433,0.507971,0.492224,0.562991,0.492736,0.637374,0.615498,0.144574,0.774141,0.0836074,0.82209,0.439241,0.240214,0.383183,0.559507,0.217563,0.690523,0.866358,0.761249,0.568744,0.493488,0.392376,0.752763,0.143824,0.251954,0.236211,0.480599,0.496731,0.112322,0.0854322,0.590726,0.239731,0.992019,0.0510407,0.208012,0.827926,0.723965,0.457452,0.0818835,0.317362,0.382923,0.855738,0.963797,0.901348,0.355422,0.725104,0.00285691,0.573506,0.103485,0.665424,0.466045,0.123385,0.686452,0.41755,0.178498,0.925627,0.984437,0.568986,0.71304,0.284175,0.917501,0.239966,0.00507706,0.0304689,0.609946,0.263919,0.977219,0.983349,0.253512,0.90532,0.0222602,0.0657331,0.670091,0.0561845,0.902365,0.801967,0.393562,0.502923,0.202556,0.307305,0.19633,0.667916,0.216291,0.419616,0.122385,0.149829,0.304777,0.467852,0.0372484,0.525446,0.259916,0.0969502,0.957572,0.0211559,0.918711,0.55316,0.252472,0.293727,0.185569,0.698063,0.453783,0.117115,0.989358,0.56211,0.563315,0.185166,0.954382,0.683994,0.750944,0.231167,0.572182,0.753383,0.939812,0.772956,0.259045,0.964069,0.321671,0.511119,0.366336,0.431849,0.81487,0.823457,0.554022,0.0635733,0.884557,0.698566,0.189845,0.084916,0.480565,0.442497,0.160674,0.954604,0.626575,0.725421,0.0265895,0.793377,0.881532,0.117152,0.859343,0.269952,0.566832,0.509641,0.153534,0.149696,0.736955,0.682662,0.357535,0.174002,0.300694,0.365903,0.224988,0.180358,0.759105,0.896142,0.857166,0.920537,0.84237,0.389309,0.401225,0.581565,0.112951,0.560072,0.342414,0.587133,0.286525,0.564916,0.925658,0.406116,0.168998,0.541729,0.868414,0.969968,0.712488,0.513125,0.447362,0.694394,0.387659,0.00792098,0.262025,0.47881,0.211293,0.402238,0.388525,0.0927657,0.543713,0.641763,0.571056,0.675629,0.869823,0.264121,0.267838,0.388938,0.577892,0.679171,0.0262531,0.0879427,0.267672,0.0697243,0.239596,0.230041,0.966839,0.0356589,0.74703,0.962885,0.709767,0.551311,0.817728,0.200273,0.474313,0.0846025,0.159709,0.304118,0.453688,0.154778,0.775423,0.308728,0.482588,0.521788,0.561922,0.986253,0.978654,0.30929,0.19862,0.16658,0.643273,0.97739,0.965049,0.0263239,0.496618,0.487365,0.256724,0.672334,0.306901,0.288059,0.478804,0.0307009,0.738099,0.46673,0.231558,0.820283,0.953654,0.389118,0.914575,0.411727,0.917248,0.211774,0.182827,0.593332,0.272399,0.155173,0.591635,0.0174412,0.617401,0.694089,0.744314,0.970974,0.69201,0.302437,0.498202,0.718001,0.00279212,0.449666,0.254604,0.00594944,0.242054,0.196959,0.665272,0.889693,0.64336,0.344341,0.533537,0.0819264,0.260557,0.359239,0.602392,0.88468,0.905513,0.606552,0.410266,0.588904,0.722161,0.176546,0.213733,0.336161,0.655916,0.458027,0.346936,0.348793,0.958961,0.505178,0.484881,0.45881,0.776019,0.597277,0.973516,0.93477,0.909099,0.203995,0.758379,0.813465,0.0561773,0.935891,0.114951,0.903862,0.903417,0.334955,0.12697,0.101401,0.232862,0.816423,0.406984,0.294249,0.539442,0.577761,0.18205,0.903264,0.201419,0.481479,0.24576,0.322893,0.801799,0.427676,0.718763,0.389257,0.451604,0.705972,0.583987,0.562322,0.587962,0.543136,0.483075,0.441285,0.277784,0.309545,0.000248551,0.215658,0.803796,0.137352,0.848186,0.398443,0.375559,0.151067,0.664864,0.378088,0.216969,0.498146,0.210824,0.642638,0.360796,0.602908,0.872789,0.37869,0.487293,0.973721,0.751658,0.38491,0.480782,0.366584,0.201302,0.350527,0.457632,0.537065,0.903525,0.180649,0.591922,0.0871447,0.127119,0.554798,0.817583,0.931143,0.604978,0.381404,0.0785139,0.234768,0.837631,0.0513999,0.0692898,0.926509,0.350887,0.268594,0.716744,0.607009,0.971593,0.642429,0.419516,0.189108,0.753627,0.960488,0.942484,0.250785,0.809934,0.511609,0.903849,0.997205,0.709681,0.516699,0.267614,0.367574,0.669182,0.386546,0.17229,0.343983,0.937165,0.539722,0.443241,0.999871,0.0699655,0.739443,0.73197,0.401809,0.524187,0.0929089,0.633433,0.956188,0.511565,0.4722,0.862432,0.845659,0.286602,0.420719,0.219981,0.488795,0.688387,0.929439,0.433042,0.759903,0.945725,0.673007,0.395159,0.997954,0.567319,0.494976,0.284868,0.275386,0.0920171,0.663163,0.347214,0.59915,0.00391948,0.453149,0.592481,0.571352,0.196941,0.662032,0.734882,0.200715,0.509453,0.519984,0.142144,0.694927,0.287251,0.237553,0.786078,0.034641,0.122854,0.798792,0.777077,0.501105,0.101001,0.324858,0.189989,0.72986,0.816617,0.294375,0.971831,0.388493,0.921906,0.0326633,0.103363,0.0716332,0.803091,0.988125,0.44859,0.234449,0.0127659,0.923438,0.650508,0.189314,0.164179,0.976211,0.867851,0.807354,0.42713,0.530788,0.982805,0.464025,0.122564,0.736122,0.685363,0.751211,0.454892,0.405242,0.463824,0.339558,0.0915541,0.0559587,0.0464127,0.54859,0.632509,0.813865,0.337338,0.447189,0.579694,0.193747,0.546446,0.682519,0.773484,0.671729,0.907714,0.560518,0.22156,0.573669,0.00622672,0.292413,0.599165,0.473652,0.22859,0.704752,0.183468,0.639779,0.789647,0.346113,0.0883272,0.825967,0.0426556,0.781953,0.942325,0.114165,0.334205,0.550251,0.232403,0.278324,0.0645602,0.423506,0.769906,0.317226,0.6879,0.507756,0.26839,0.755177,0.948157,0.56281,0.608884,0.775145,0.363662,0.670944,0.0454173,0.80877,0.886095,0.999066,0.882703,0.743723,0.548849,0.616163,0.50187,0.00698918,0.387667,0.936491,0.693937,0.644011,0.613594,0.500718,0.405338,0.158733,0.157636,0.938081,0.352231,0.229797,0.571919,0.232796,0.500446,0.395007,0.4374,0.657148,0.940796,|0.909531,0.436469,0.0902924,0.945861,0.466413,0.292266,0.467638,0.155334,0.638651,0.985907,0.276032,0.502824,0.112114,0.688462,0.461089,0.485405,0.878485,0.507153,0.571167,0.493499,0.268561,0.404497,0.767848,0.413899,0.0794355,0.69722,0.0368919,0.244501,0.392056,0.723694,0.589669,0.343861,0.444276,0.945678,0.855713,0.842997,0.640065,0.908371,0.485567,0.789492,0.230983,0.819226,0.423417,0.864314,0.383141,0.682494,0.804149,0.108429,0.656068,0.703757,0.416275,0.217868,0.315269,0.584835,0.886741,0.018858,0.273719,0.791775,0.0149441,0.618358,0.657402,0.43568,0.343447,0.256581,0.828324,0.424177,0.887359,0.813138,0.275287,0.310426,0.96825,0.587994,0.330687,0.643142,0.254331,0.762777,0.250655,0.533979,0.696288,0.620192,0.433441,0.417809,0.769273,0.0659124,0.218727,0.539435,0.0564589,0.463244,0.0573944,0.616118,0.469937,0.893721,0.5465,0.712702,0.346939,0.77052,0.735159,0.63761,0.97949,0.625045,0.572126,0.961741,0.926403,0.462349,0.123255,0.431556,0.100198,0.550318,0.29049,0.165731,0.640806,0.260308,0.825401,0.695097,0.207772,0.140903,0.750947,0.372212,0.493962,0.0728604,0.254592,0.0842447,0.502757,0.808665,0.799533,0.845243,0.0467325,0.0208108,0.581925,0.296722,0.991574,0.239321,0.681766,0.714686,0.292899,0.573778,0.437841,0.51133,0.120357,0.179196,0.0656118,0.39277,0.968587,0.541699,0.604975,0.608277,0.593313,0.216243,0.434725,0.754454,0.973984,0.382086,0.218961,0.97749,0.0478898,0.879276,0.872009,0.625298,0.75062,0.354661,0.178389,0.226928,0.912148,0.441097,0.44029,0.0838342,0.81691,0.459943,0.806061,0.291429,0.839176,0.800905,0.900656,0.15123,0.490347,0.0900643,0.0475686,0.830109,0.747848,0.893697,0.565111,0.199784,0.923512,0.0376382,0.610726,0.873001,0.787226,0.07929,0.242689,0.491582,0.273738,0.535369,0.452881,0.253326,0.582479,0.524367,0.65575,0.757084,0.169075,0.781128,0.16029,0.841612,0.860871,0.623811,0.369933,0.0959541,0.472073,0.283425,0.711456,0.53702,0.143765,0.462805,0.697281,0.233317,0.435959,0.588179,0.430774,0.726326,0.618496,0.13812,0.477932,0.703654,0.493541,0.0610294,0.599911,0.323428,0.436274,0.910529,0.722744,0.443545,0.763647,0.758747,0.321047,0.507493,0.897986,0.232138,0.93497,0.0305504,0.399738,0.609285,0.994217,0.0298871,0.644869,0.0842752,0.490305,0.475875,0.445455,0.245002,0.559346,0.22703,0.614884,0.632723,0.505079,0.631857,0.37059,0.129889,0.402246,0.877405,0.189247,0.235168,0.228328,0.0389702,0.40112,0.160061,0.150639,0.948726,0.433457,0.203158,0.684119,0.364779,0.266806,0.393632,0.333116,0.210721,0.947646,0.925694,0.239568,0.0932707,0.312174,0.271124,0.979405,0.807666,0.671567,0.858015,0.139532,0.505109,0.792608,0.354933,0.550505,0.0134479,0.663779,0.0275761,0.731116,0.0435831,0.307301,0.537754,0.187487,0.689978,0.866892,0.28584,0.157707,0.972182,0.701725,0.213264,0.022725,0.290615,0.44603,0.424995,0.594427,0.727324,0.497007,0.697532,0.98114,0.476601,0.754841,0.415541,0.121728,0.877239,0.617407,0.429863,0.764034,0.435105,0.452454,0.54292,0.118515,0.518122,0.888491,0.356934,0.1982,0.869867,0.449817,0.459754,0.182485,0.731983,0.897333,0.500714,0.259926,0.396399,0.804282,0.963373,0.424459,0.39326,0.538137,0.0982806,0.194618,0.735917,0.888515,0.935319,0.573029,0.792715,0.435853,0.128084,0.526433,0.430692,0.256091,0.165407,0.810294,0.432424,0.566522,0.210244,0.261894,0.0137926,0.721982,0.765454,0.332814,0.6512,0.0548189,0.0688357,0.466307,0.41729,0.996661,0.535784,0.51831,0.0674513,0.450594,0.621312,0.0381421,0.18664,0.408659,0.640135,0.665833,0.72549,0.98132,0.990558,0.427772,0.635852,0.866246,0.613919,0.730232,0.0163347,0.581621,0.543027,0.332886,0.160394,0.10324,0.339932,0.749364,0.779107,0.961245,0.600803,0.787964,0.430254,0.358335,0.948776,0.544336,0.858308,0.980886,0.0235322,0.647267,0.744536,0.205316,0.0214117,0.725627,0.997962,0.274256,0.288675,0.743428,0.96693,0.267155,0.180901,0.205435,0.48093,0.0548843,0.744913,0.68998,0.927463,0.406273,0.0308012,0.994221,0.104515,0.0151525,0.0303886,0.451786,0.563996,0.406336,0.735853,0.235549,0.594959,0.0599466,0.490348,0.882351,0.329296,0.337695,0.40567,0.181799,0.748063,0.41564,0.182265,0.89127,0.178766,0.20738,0.00573671,0.446918,0.279229,0.882854,0.834392,0.883858,0.845741,0.440815,0.605436,0.302729,0.629809,0.827417,0.402612,0.0603309,0.475145,0.0331238,0.611184,0.378023,0.537633,0.78584,0.0807551,0.69981,0.395984,0.207503,0.369777,0.585784,0.295115,0.318348,0.109102,0.279596,0.319234,0.0463279,0.0902473,0.16496,0.559157,0.261456,0.902019,0.894979,0.710082,0.978287,0.793972,0.204964,0.000422776,0.749132,0.168574,0.93136,0.933925,0.449418,0.481906,0.712741,0.386589,0.298945,0.499405,0.317364,0.470939,0.412056,0.16334,0.339329,0.633823,0.546505,0.83696,0.869924,0.63215,0.905133,0.997892,0.314257,0.0407554,0.288714,0.691069,0.130317,0.651282,0.911939,0.0874193,0.190962,0.579699,0.475448,0.0301754,0.0479834,0.973473,0.801201,0.744936,0.875289,0.128144,0.903461,0.332281,0.132123,0.154263,0.0277308,0.376819,0.314415,0.32734,0.278317,0.311611,0.871707,0.0393002,0.986284,0.665234,0.248267,0.0386077,0.0779328,0.36595,0.0343665,0.648106,0.228965,0.934523,0.177693,0.893013,0.186863,0.404203,0.120363,0.0349714,0.0693433,0.676694,0.789908,0.290501,0.235867,0.942193,0.21684,0.284106,0.288356,0.462744,0.922199,0.801469,0.592643,0.606028,0.80958,0.85748,0.738709,0.0522595,0.345465,0.232326,0.358386,0.554039,0.300335,0.125313,0.691032,0.779311,0.294117,0.0537396,0.661076,0.193738,0.284587,0.93199,0.811584,0.644129,0.857317,0.661577,0.809826,0.0814807,0.294584,0.0188011,0.356329,0.142672,0.181982,0.867557,0.282531,0.754354,0.302851,0.770773,0.620577,0.878708,0.977562,0.96112,0.782272,0.303591,0.693014,0.490797,0.209531,0.638277,0.940605,0.512967,0.0292302,0.326019,0.605745,0.53312,0.624387,0.464041,0.822671,0.674867,0.36133,0.364531,0.556437,0.520769,0.393472,0.861226,0.410919,0.0670277,0.0390327,0.572908,0.552664,0.822173,0.384578,0.134405,0.951529,0.929944,0.23195,0.731706,0.391224,0.736099,0.797726,0.423396,0.466817,0.999093,0.624131,0.177293,0.890314,0.320979,0.059686,0.804214,0.800767,0.420352,0.270382,0.586834,0.18627,0.00643373,0.372027,0.763657,0.114169,0.368293,0.519782,0.466806,0.744275,0.326405,0.311576,0.599962,0.187741,0.481391,0.226998,0.771057,0.951301,0.436584,0.937314,0.393661,0.115594,0.834811,0.916881,0.187198,0.384524,0.248484,0.425181,0.187284,0.906124,0.67861,0.659218,0.769354,0.908796,0.700292,0.240146,0.537412,0.154739,0.0941758,0.341061,0.721887,0.451536,0.431505,0.863873,0.0147213,0.432669,0.886016,0.780331,0.357416,0.892316,0.492471,0.920159,0.632186,0.307354,0.951394,0.0667935,0.288054,0.218356,0.958731,0.229505,0.568795,0.584723,0.607454,0.629688,0.198068,0.505397,0.531919,0.759849,0.159149,0.796108,0.330571,0.848073,0.927656,0.0104113,0.134577,0.601826,0.843879,0.903934,0.0943834,0.398316,0.693282,0.852455,0.95401,0.16866,0.561635,0.341845,0.486821,0.896268,0.559729,0.987564,0.816987,0.275712,0.763218,0.387123,0.808878,0.843412,0.111619,0.181315,0.0179621,0.962676,0.64381,0.105827,0.869154,0.221455,0.729855,0.870886,0.504085,0.509895,0.450552,0.167637,0.319629,0.484771,0.570635,0.895658,0.620561,0.629131,0.171397,0.744341,0.835597,0.383566,0.562554,0.279868,0.905124,0.827466,0.913219,0.624473,0.291018,0.726286,0.552748,0.578646,0.940957,0.125336,0.0660335,0.688567,0.900627,0.586306,0.748875,0.991059,0.325644,0.915266,0.988704,0.303227,0.255298,0.618917,0.306602,0.238789,0.0245776,0.686222,0.604509,0.477251,0.480522,0.0817747,0.364799,0.882984,0.575507,0.237372,0.329745,0.923884,0.484468,0.218761,0.618318,0.234747,0.854543,0.0180193,0.903696,0.979556,0.535923,0.753561,0.415688,0.767417,0.290095,0.0175833,0.008591,0.590943,0.596249,0.136854,0.016069,0.846945,0.521305,0.24447,0.882304,0.951447,0.0391134,0.362123,0.674282,0.489756,0.491522,0.541759,0.992896,0.890569,0.0850607,0.878168,0.403487,0.918735,0.486956,0.31062,0.415916,0.643375,0.404337,0.624828,0.174307,0.912416,0.960025,0.275755,0.683458,0.439845,0.865705,0.702969,0.669049,0.613931,0.605177,0.0914491,0.971832,0.835791,0.587697,0.620583,0.391159,0.706699,0.663127,0.462946,0.151647,0.933568,0.596543,0.882502,0.194924,0.0898724,0.752615,0.451442,0.199598,0.232553,0.129663,0.899929,0.414722,0.72825,0.414483,0.737896,0.890659,0.704343,0.23728,0.520328,0.324416,0.843144,0.0624195,0.438137,0.389482,0.657985,0.208298,0.814728,0.087595,0.8021,0.710594,0.543219,0.908257,0.503639,0.119826,0.406866,0.247031,0.452325,0.0921079,0.577424,0.878849,0.355724,0.108741,0.537476,0.848568,0.545691,0.307621,0.21312,0.286633,0.584495,0.158743,0.793216,0.866775,0.604821,0.388837,0.328531,0.478464,0.864413,0.42011,0.357246,0.268278,0.915807,0.863463,0.0969378,0.490906,0.355197,0.575853,0.720221,0.745692,0.575668,0.603429,0.857541,0.81711,0.0569523,0.0357642,0.915457,0.759532,0.892662,0.360704,0.364018,0.849911,0.852056,0.0611334,0.877969,0.0769891,0.626747,0.32459,0.335508,0.671611,0.958391,0.683353,0.546063,0.985674,0.79511,0.486352,0.806791,0.142743,0.991377,0.0352076,0.861598,0.515442,0.592766,0.424686,0.487884,0.534592,0.216881,0.993527,0.977566,0.221434,0.724193,0.181246,0.353537,0.870791,0.662369,0.828922,0.561676,0.248264,|0.864482,3.24845e-05,0.0914273,0.773045,0.961256,0.785917,0.867021,0.701643,0.0542226,0.83423,0.951664,0.0669715,0.155405,0.672833,0.686962,0.785881,0.21911,0.449254,0.496886,0.844085,0.0674928,0.820246,0.0683762,0.776844,0.200214,0.4477,0.887067,0.338967,0.120789,0.766119,0.0632526,0.856903,0.184303,0.124696,0.226401,0.456139,0.221571,0.926589,0.114533,0.431264,0.0127239,0.507725,0.79227,0.861049,0.36823,0.297275,0.602737,0.246712,0.801058,0.541157,0.918234,0.435925,0.74634,0.214743,0.544224,0.91397,0.0730222,0.854556,0.270791,0.504049,0.00154805,0.699884,0.0156517,0.991121,0.841456,0.968925,0.660017,0.508853,0.00138015,0.640945,0.102709,0.0688951,0.311525,0.136362,0.580746,0.646688,0.185053,0.084057,0.731189,0.813586,0.82106,0.934005,0.248933,0.0605733,0.0113681,0.868995,0.483766,0.806031,0.500778,0.737296,0.0588883,0.72534,0.786892,0.833371,0.419408,0.891079,0.585401,0.389738,0.955558,0.656064,0.679876,0.411593,0.796048,0.849172,0.371509,0.656353,0.0186369,0.563292,0.714638,0.0180982,0.165077,0.297019,0.683625,0.286254,0.685347,0.652325,0.770193,0.468975,0.406947,0.25303,0.648428,0.333415,0.0726103,0.806795,0.334038,0.888623,0.325113,0.706639,0.527843,0.147641,0.970435,0.309228,0.551958,0.0153753,0.206553,0.874074,0.260075,0.194937,0.755594,0.371462,0.939331,0.0859241,0.870123,0.251724,0.962494,0.500756,0.827069,0.476386,0.292106,0.346242,0.27301,0.36324,0.253093,0.38495,0.387409,0.0098719,0.829997,0.0766606,0.55167,0.959205,0.542013,0.238824,0.382528,0.860213,0.757159,0.146305,0.104778,0.138564,0.883795,0.34452,0.797402,0.938751,0.641585,0.455618,0.381934,0.190018,0.566844,0.0673895,0.928839,0.19361,0.737239,0.420711,0.131482,0.51665,0.339635,0.744454,0.764921,0.631382,0.0169811,0.979185,0.365033,0.326683,0.968011,0.0733826,0.683952,0.407515,0.233746,0.969927,0.349231,0.251656,0.27591,0.598672,0.252088,0.515303,0.231055,0.0513892,0.872761,0.592447,0.857909,0.677592,0.61687,0.335694,0.956257,0.036082,0.058844,0.76401,0.0428873,0.143854,0.638663,0.549666,0.0846251,0.116703,0.513183,0.692868,0.807817,0.411221,0.1445,0.54704,0.927343,0.876347,0.219088,0.717474,0.0138028,0.324916,0.493499,0.432784,0.366883,0.629787,0.512628,0.155123,0.674103,0.851805,0.730557,0.347889,0.729711,0.456819,0.40947,0.697156,0.996503,0.819987,0.848945,0.168948,0.907687,0.495996,0.449073,0.235284,0.242328,0.945679,0.198454,0.913822,0.749444,0.537166,0.902922,0.947895,0.563909,0.915683,0.145725,0.757248,0.714899,0.270971,0.927363,0.114825,0.204804,0.180072,0.824977,0.753952,0.521911,0.132628,0.936345,0.993325,0.355798,0.257286,0.573346,0.754739,0.971292,0.335691,0.671009,0.990905,0.847172,0.319013,0.3711,0.77848,0.103121,0.86923,0.173708,0.438747,0.744372,0.767874,0.243122,0.167201,0.783666,0.329763,0.714319,0.505731,0.406251,0.241721,0.123304,0.218069,0.141155,0.430187,0.85994,0.88726,0.119241,0.114168,0.257562,0.517216,0.0405078,0.769354,0.0970319,0.755511,0.513241,0.395436,0.0390695,0.420164,0.562577,0.430313,0.780989,0.839814,0.277409,0.902264,0.653825,0.810354,0.314332,0.222645,0.709011,0.0425457,0.830481,0.952623,0.600694,0.556799,0.708475,0.928773,0.176986,0.604715,0.220083,0.625658,0.547194,0.632909,0.870377,0.99142,0.152118,0.568233,0.253966,0.557179,0.0709466,0.250368,0.114235,0.417868,0.105485,0.985283,0.329455,0.641546,0.605021,0.44192,0.841513,0.00232321,0.630473,0.484085,0.316776,0.247524,0.824183,0.420476,0.874961,0.393706,0.575567,0.349782,0.389775,0.148454,0.348342,0.319797,0.987322,0.106788,0.0620176,0.305347,0.330331,0.00157756,0.85298,0.108516,0.834098,0.0232226,0.614034,0.613826,0.217316,0.246743,0.861153,0.130768,0.430128,0.116959,0.772978,0.985355,0.486597,0.527846,0.101364,0.986982,0.493495,0.0385866,0.494927,0.967173,0.750501,0.751002,0.0272247,0.0212978,0.737853,0.119916,0.163894,0.42952,0.0322315,0.623858,0.564012,0.995585,0.671236,0.946213,0.0708433,0.326302,0.295997,0.944295,0.949063,0.0853468,0.298539,0.845081,0.00842047,0.203115,0.937957,0.744663,0.0762028,0.126875,0.290428,0.054558,0.150614,0.203749,0.478606,0.750025,0.0364997,0.797397,0.796064,0.184992,0.813388,0.34964,0.652652,0.878564,0.175057,0.968287,0.196275,0.931762,0.0841737,0.128774,0.585972,0.830004,0.112582,0.891735,0.291816,0.109359,0.592875,0.755007,0.930878,0.0612077,0.299747,0.934696,0.468714,0.861816,0.773225,0.923267,0.290857,0.448966,0.710531,0.783505,0.630021,0.486865,0.785926,0.555648,0.780194,0.948933,0.12674,0.21688,0.632551,0.657426,0.70338,0.184392,0.374506,0.252001,0.260103,0.736669,0.353446,0.295914,0.296929,0.724836,0.67805,0.203512,0.271056,0.593639,0.0770444,0.0292579,0.0958188,0.427656,0.638577,0.67261,0.377667,0.354226,0.828411,0.397717,0.673176,0.727617,0.984904,0.417283,0.488245,0.133861,0.83086,0.603002,0.852198,0.347577,0.768575,0.59847,0.438623,0.263453,0.172763,0.210068,0.0487626,0.949985,0.0356814,0.528197,0.475945,0.816856,0.203581,0.94575,0.859394,0.900465,0.618381,0.813587,0.450175,0.472717,0.225691,0.618327,0.392972,0.468328,0.400286,0.888899,0.325979,0.432316,0.872791,0.962637,0.501517,0.4085,0.983271,0.625568,0.0613151,0.961672,0.217471,0.71125,0.496917,0.517176,0.123591,0.803077,0.979711,0.276518,0.854073,0.20362,0.347736,0.105699,0.476909,0.68087,0.954584,0.239003,0.822251,0.945482,0.709067,0.496832,0.253812,0.420926,0.584517,0.611005,0.198886,0.539017,0.433912,0.789164,0.603566,0.851431,0.832121,0.718323,0.411195,0.948972,0.0295795,0.977217,0.939703,0.277444,0.20611,0.374147,0.30917,0.24761,0.765372,0.638823,0.800534,0.662419,0.52702,0.670445,0.244907,0.320306,0.486459,0.0506403,0.377871,0.296979,0.962531,0.567547,0.862138,0.580128,0.762655,0.0706245,0.331917,0.0708356,0.26767,0.68113,0.241298,0.830194,0.724591,0.416988,0.343102,0.449963,0.61849,0.610826,0.558383,0.968835,0.508643,0.0197067,0.441187,0.970735,0.825813,0.707456,0.166035,0.00617474,0.387651,0.42029,0.839917,0.881395,0.357183,0.804301,0.791384,0.738059,0.69807,0.270056,0.814612,0.870396,0.992139,0.203284,0.130216,0.858526,0.448191,0.226623,0.666562,0.753809,0.468076,0.0608724,0.994774,0.18221,0.676923,0.387388,0.321234,0.683805,0.00653762,0.634181,0.0599285,0.639905,0.321278,0.624402,0.682619,0.360502,0.171819,0.135118,0.218846,0.213629,0.976176,0.134438,0.834182,0.554641,0.627578,0.530033,0.625082,0.880396,0.252679,0.769688,0.972941,0.536366,0.534239,0.111926,0.174521,0.393127,0.384835,0.409247,0.895644,0.370076,0.449032,0.606652,0.857265,0.369788,0.539964,0.173009,0.668338,0.592539,0.158379,0.359229,0.844161,0.96668,0.216553,0.0306532,0.100571,0.856661,0.553082,0.00188565,0.655724,0.0221555,0.400653,0.321238,0.147229,0.767678,0.283305,0.143302,0.412165,0.394498,0.102147,0.732657,0.938567,0.842775,0.17281,0.840511,0.796416,0.606126,0.63273,0.756285,0.914253,0.164369,0.617075,0.351181,0.134873,0.811067,0.765444,0.483343,0.386389,0.710408,0.664721,0.00126356,0.159228,0.00894856,0.256075,0.675136,0.640007,0.555692,0.841571,0.878042,0.57798,0.463258,0.208829,0.972763,0.115071,0.345627,0.33675,0.910194,0.366638,0.418536,0.67079,0.776984,0.444268,0.434151,0.525171,0.917993,0.0910841,0.191042,0.310329,0.124625,0.492843,0.758423,0.0364004,0.690035,0.729091,0.767289,0.0729226,0.0916634,0.645212,0.0338168,0.707635,0.0806103,0.950547,0.607326,0.00124305,0.253122,0.888623,0.906263,0.991081,0.991811,0.174829,0.304229,0.170594,0.949473,0.606308,0.454824,0.585326,0.308501,0.890587,0.60221,0.132113,0.608058,0.332515,0.285417,0.127766,0.110014,0.0303127,0.050077,0.281462,0.156559,0.939177,0.826043,0.100783,0.392456,0.946869,0.335306,0.0482505,0.339704,0.738651,0.639261,0.892675,0.160346,0.578824,0.157732,0.53743,0.57771,0.268746,0.456619,0.76885,0.976236,0.61676,0.976241,0.393945,0.461228,0.340525,0.335303,0.564766,0.726244,0.492408,0.88112,0.833504,0.995346,0.536817,0.611868,0.138344,0.153541,0.621511,0.194099,0.695991,0.577451,0.393768,0.83895,0.811398,0.677876,0.471104,0.497627,0.953745,0.0629302,0.184813,0.0710005,0.410679,0.162297,0.357194,0.430484,0.789332,0.149656,0.0267981,0.833694,0.27955,0.638226,0.684181,0.939397,0.910648,0.0223907,0.538031,0.747954,0.651771,0.803763,0.484302,0.533915,0.693578,0.58379,0.468606,0.0660303,0.13646,0.582807,0.347534,0.595035,0.886694,0.427343,0.984945,0.235462,0.642716,0.253994,0.0983864,0.79526,0.807815,0.0196811,0.0325745,0.221157,0.150784,0.0139186,0.322598,0.549339,0.897639,0.423956,0.374652,0.997531,0.191632,0.516151,0.966639,0.756009,0.461166,0.886894,0.448797,0.587105,0.123502,0.0650422,0.541858,0.214494,0.220694,0.120268,0.194496,0.590848,0.23826,0.024617,0.97367,0.0617884,0.853484,0.918206,0.0424003,0.97689,0.0445931,0.553585,0.668753,0.200404,0.52618,0.0262455,0.279667,0.922484,0.316112,0.0702948,0.518074,0.177823,0.666562,0.710522,0.52075,0.909208,0.318614,0.346529,0.866424,0.345953,0.731999,0.545106,0.455765,0.690889,0.411913,0.790413,0.619299,0.525405,0.39645,0.0962412,0.395036,0.543295,0.815457,0.159734,0.98235,0.816643,0.583733,0.918822,0.286396,0.445331,0.720005,0.420685,0.280223,0.0827512,0.184774,0.543288,0.962164,0.885988,0.700971,0.172694,0.153871,0.183991,0.466258,0.625646,0.903861,0.841348,0.0315349,0.742706,0.803249,0.656417,0.593029,0.254049,|0.594037,0.290012,0.12147,0.100037,0.767955,0.119466,0.232168,0.380909,0.728984,0.46249,0.431457,0.912668,0.338626,0.289959,0.918263,0.665297,0.481549,0.845729,0.472483,0.852787,0.955113,0.871124,0.575136,0.499845,0.854046,0.870862,0.808077,0.656753,0.856169,0.75303,0.636625,0.663265,0.143092,0.555281,0.851528,0.990001,0.0400622,0.734217,0.112777,0.443,0.307907,0.689222,0.225067,0.416479,0.363942,0.977066,0.455405,0.243741,0.444305,0.900442,0.889091,0.462363,0.260309,0.365957,0.724516,0.0282983,0.207302,0.963822,0.493524,0.36008,0.302399,0.210189,0.321115,0.670721,0.636446,0.776369,0.486237,0.639184,0.00876272,0.529646,0.956908,0.408341,0.203816,0.652835,0.763119,0.909302,0.191282,0.362506,0.355547,0.71646,0.656104,0.335099,0.135569,0.460427,0.327527,0.08587,0.144068,0.589801,0.221132,0.813387,0.0545933,0.0996733,0.813438,0.172879,0.161798,0.00724494,0.716677,0.982906,0.530972,0.630947,0.0124872,0.563206,0.570304,0.398372,0.909978,0.213598,0.639289,0.0864549,0.465768,0.389168,0.878692,0.23695,0.792284,0.476669,0.381572,0.120118,0.410464,0.0333444,0.937567,0.805997,0.17292,0.837646,0.186683,0.861916,0.606925,0.988424,0.71007,0.127825,0.0523756,0.295698,0.636953,0.473809,0.449659,0.167745,0.12699,0.71851,0.855255,0.388295,0.0338381,0.728859,0.791453,0.464968,0.906196,0.424162,0.853248,0.799836,0.1492,0.144775,0.41421,0.0611343,0.104087,0.85488,0.657679,0.369394,0.978147,0.484385,0.8592,0.991854,0.394687,0.74063,0.0248193,0.599867,0.0313339,0.614456,0.381104,0.525425,0.379512,0.424292,0.714274,0.867234,0.922871,0.67596,0.579159,0.632244,0.441794,0.452227,0.479313,0.404794,0.0688756,0.901468,0.272811,0.595148,0.159492,0.86426,0.423571,0.81946,0.998181,0.768232,0.735979,0.558849,0.224143,0.921455,0.720255,0.521706,0.0556087,0.546264,0.818249,0.279733,0.660604,0.605484,0.109735,0.238873,0.367724,0.0144364,0.626045,0.566638,0.0851185,0.451619,0.248564,0.825922,0.777918,0.421962,0.871697,0.660943,0.811659,0.670923,0.26964,0.793906,0.568643,0.918489,0.103757,0.760037,0.629436,0.348868,0.322807,0.681475,0.515721,0.817393,0.385499,0.670531,0.626157,0.25293,0.150849,0.342802,0.873968,0.177488,0.192146,0.268318,0.353258,0.803841,0.706128,0.297747,0.0776806,0.70603,0.271778,0.504046,0.147511,0.262602,0.950811,0.222606,0.143345,0.768311,0.249855,0.701842,0.821444,0.439935,0.257478,0.397799,0.336979,0.124216,0.313434,0.968158,0.16417,0.152897,0.423652,0.967154,0.9054,0.0730094,0.297013,0.0865577,0.274812,0.692992,0.534169,0.657616,0.596874,0.343938,0.137777,0.063155,0.107568,0.321778,0.631416,0.797293,0.260457,0.989217,0.659015,0.996793,0.270843,0.331291,0.629775,0.718834,0.0583559,0.558481,0.215479,0.289614,0.820881,0.422528,0.560234,0.116171,0.485644,0.147917,0.23937,0.901692,0.0972384,0.564842,0.328873,0.736676,0.993081,0.851544,0.663427,0.0712732,0.579623,0.260029,0.822843,0.0196255,0.844767,0.24961,0.161334,0.907912,0.925507,0.961265,0.461907,0.0463505,0.755542,0.762328,0.761013,0.924558,0.112345,0.571111,0.874433,0.769356,0.579843,0.437332,0.4664,0.241712,0.245044,0.637494,0.242041,0.975811,0.743157,0.852257,0.369126,0.834616,0.498559,0.265777,0.0673736,0.981743,0.90942,0.67695,0.502795,0.782763,0.0639499,0.765928,0.339395,0.280287,0.944494,0.402706,0.143245,0.747108,0.0343748,0.558327,0.692207,0.368178,0.343745,0.0202167,0.726994,0.188477,0.981091,0.399531,0.890819,0.691833,0.155145,0.636157,0.752941,0.0452588,0.829068,0.341742,0.459433,0.939797,0.0238388,0.0547373,0.99334,0.0454392,0.715442,0.0461094,0.656341,0.887117,0.73613,0.180537,0.903503,0.812383,0.272225,0.477506,0.848302,0.908679,0.464355,0.98455,0.449501,0.385006,0.94353,0.102808,0.215946,0.360112,0.0197138,0.275181,0.207983,0.754216,0.349076,0.406547,0.792718,0.842337,0.522981,0.163539,0.371777,0.764791,0.856167,0.14645,0.162094,0.452704,0.069066,0.964282,0.796931,0.354746,0.0866669,0.322068,0.438784,0.871042,0.758951,0.0456217,0.351283,0.614575,0.732415,0.631628,0.477652,0.0499927,0.576703,0.422391,0.280264,0.940866,0.140633,0.795923,0.0196124,0.548373,0.0637584,0.573283,0.401274,0.164838,0.996369,0.922765,0.272243,0.700071,0.530374,0.90624,0.980618,0.334585,0.837112,0.071636,0.796939,0.0164726,0.50334,0.144004,0.193674,0.45442,0.480458,0.966807,0.867185,0.321321,0.0454218,0.670415,0.243361,0.0463125,0.859419,0.541979,0.133288,0.983945,0.350559,0.764975,0.319111,0.817564,0.103552,0.296815,0.250407,0.572979,0.346899,0.544612,0.26922,0.880045,0.695709,0.400176,0.963471,0.18935,0.705642,0.0491555,0.984698,0.0481739,0.397,0.848296,0.0268833,0.767705,0.874475,0.738239,0.196141,0.75736,0.925805,0.914096,0.287953,0.286175,0.988614,0.765566,0.705784,0.244966,0.887969,0.100782,0.168638,0.0167972,0.842883,0.117346,0.689682,0.913118,0.894751,0.142549,0.775196,0.590169,0.715938,0.636712,0.997518,0.302769,0.650435,0.478472,0.507232,0.0775571,0.70359,0.559399,0.506763,0.690147,0.629481,0.140469,0.034481,0.810019,0.815797,0.53605,0.183386,0.24925,0.23703,0.268198,0.24847,0.0254651,0.70283,0.779536,0.631561,0.826045,0.821053,0.574709,0.610834,0.230626,0.652035,0.416761,0.220154,0.982234,0.905932,0.647109,0.863362,0.791172,0.0985534,0.250881,0.19574,0.889143,0.0909214,0.869604,0.701339,0.164915,0.742994,0.0197535,0.20866,0.371471,0.142509,0.0440077,0.272386,0.00966901,0.83419,0.686832,0.778584,0.350011,0.0145082,0.383995,0.497573,0.863505,0.498732,0.320586,0.787203,0.835272,0.620451,0.402942,0.616596,0.895868,0.22116,0.727763,0.875886,0.796734,0.789604,0.505211,0.633752,0.551702,0.233792,0.4255,0.25843,0.544584,0.91671,0.334909,0.208476,0.43773,0.460824,0.831822,0.499141,0.0177352,0.292119,0.0522099,0.168788,0.657335,0.652885,0.756705,0.727001,0.459853,0.01824,0.247034,0.417659,0.619307,0.0867643,0.217213,0.837701,0.287793,0.658811,0.309582,0.183934,0.935359,0.203677,0.716347,0.876851,0.303303,0.696141,0.127386,0.839321,0.302346,0.3644,0.368913,0.129986,2.563e-05,0.610376,0.668242,0.897807,0.301551,0.67254,0.308104,0.34623,0.754442,0.197559,0.831468,0.303946,0.662876,0.543752,0.519184,0.422939,0.365645,0.671148,0.978567,0.240103,0.778857,0.0509384,0.175661,0.300821,0.380859,0.749509,0.16633,0.752276,0.918585,0.545612,0.158898,0.0144734,0.695804,0.344513,0.868586,0.223349,0.851065,0.0960361,0.14217,0.249997,0.00228012,0.347043,0.32512,0.845265,0.74527,0.952117,0.193471,0.520599,0.868736,0.944415,0.335859,0.227337,0.466162,0.483017,0.73607,0.0671317,0.300735,0.480018,0.891912,0.193399,0.52588,0.792677,0.883978,0.382154,0.129909,0.838228,0.170822,0.517239,0.596217,0.0688151,0.254249,0.31882,0.145136,0.817358,0.833473,0.858917,0.95833,0.881317,0.279683,0.579646,0.762483,0.46582,0.486772,0.556649,0.32778,0.38171,0.842624,0.676616,0.198807,0.358184,0.975849,0.347405,0.699139,0.271188,0.831164,0.964138,0.162514,0.572464,0.634253,0.705081,0.504396,0.636149,0.505519,0.847653,0.562019,0.0747047,0.673508,0.291609,0.43746,0.21691,0.193763,0.737128,0.0221398,0.0259761,0.316653,0.87948,0.977169,0.929142,0.635886,0.783542,0.679948,0.387179,0.497354,0.129975,0.699286,0.736072,0.162488,0.891796,0.380264,0.689153,0.32657,0.270592,0.224035,0.726486,0.374938,0.0418274,0.851725,0.782044,0.740339,0.4517,0.728751,0.908005,0.0353486,0.543704,0.0285528,0.998026,0.295786,0.793637,0.489656,0.805815,0.536022,0.587651,0.00473851,0.437284,0.991703,0.329421,0.954983,0.578479,0.889944,0.11823,0.639365,0.153886,0.170638,0.620004,0.633019,0.570731,0.188547,0.297102,0.302958,0.628336,0.18601,0.416183,0.169582,0.261265,0.366395,0.580975,0.0918905,0.876069,0.986046,0.447168,0.234288,0.973969,0.75586,0.202357,0.486654,0.436896,0.586321,0.952745,0.98436,0.738978,0.487219,0.909876,0.78413,0.15997,0.20354,0.654786,0.988264,0.222202,0.152961,0.744828,0.244195,0.468822,0.532996,0.077946,0.935735,0.0610735,0.0406337,0.405226,0.248345,0.441457,0.773406,0.0550894,0.873234,0.814493,0.373575,0.901271,0.825893,0.88448,0.0119713,0.749675,0.539726,0.158199,0.780028,0.536647,0.0543659,0.286252,0.708986,0.053323,0.869699,0.212783,0.376692,0.714269,0.46661,0.90595,0.0303357,0.431316,0.877444,0.933241,0.911895,0.0508912,0.363542,0.862691,0.241527,0.792235,0.732746,0.926445,0.323613,0.74102,0.610771,0.557946,0.208972,0.114578,0.792872,0.850888,0.994467,0.772139,0.443132,0.888291,0.15255,0.474313,0.847883,0.22597,0.668046,0.404001,0.826755,0.768403,0.968785,0.387988,0.655264,0.39244,0.222538,0.706017,0.187879,0.871411,0.147096,0.780878,0.744775,0.2583,0.0726727,0.418257,0.174934,0.0837799,0.643664,0.0480453,0.620192,0.972195,0.596509,0.160595,0.10723,0.265411,0.147137,0.766506,0.696604,0.0264367,0.00413209,0.286463,0.971674,0.539508,0.65378,0.234682,0.674073,0.835151,0.282304,0.0292235,0.868761,0.486112,0.916363,0.151178,0.579863,0.587735,0.68132,0.779651,0.308069,0.169661,0.72733,0.639618,0.316689,0.525433,0.602631,0.187587,0.226459,0.844309,0.707964,0.905198,0.824759,0.626315,0.908665,0.558587,0.867268,0.776042,0.1481,0.0706335,0.297561,0.620782,0.513535,0.329036,0.148783,0.957424,0.754543,0.165124,0.746896,0.0606391,0.782565,0.703208,0.893221,0.155128,0.0310892,0.217227,0.191649,0.842385,0.200355,0.453082,0.422966,0.628251,0.159567,|0.446726,0.228127,0.657289,0.493582,0.851932,0.339466,0.258607,0.674638,0.964189,0.207166,0.800816,0.586323,0.0652295,0.994489,0.297894,0.135463,0.978761,0.698886,0.57769,0.0670609,0.185444,0.217415,0.820908,0.187942,0.342289,0.983743,0.545746,0.738728,0.822553,0.229234,0.546413,0.745665,0.0876852,0.424064,0.736358,0.970752,0.00557715,0.933262,0.439189,0.909831,0.702028,0.666592,0.232197,0.817722,0.878059,0.317157,0.359596,0.153634,0.200991,0.360088,0.111124,0.309886,0.436446,0.308914,0.570731,0.75554,0.226078,0.031036,0.691913,0.208627,0.628586,0.108146,0.782821,0.77915,0.23378,0.491738,0.767023,0.160828,0.809617,0.156389,0.636032,0.593706,0.230566,0.57513,0.397646,0.575132,0.0938245,0.868346,0.20684,0.763016,0.44819,0.303718,0.39986,0.613105,0.301189,0.37785,0.64754,0.854752,0.747212,0.832979,0.719398,0.88899,0.0588053,0.614486,0.270176,0.937285,0.431979,0.170316,0.20961,0.553125,0.704015,0.0613778,0.800357,0.652546,0.426804,0.132224,0.311865,0.8602,0.803005,0.376033,0.0452402,0.65069,0.158421,0.988878,0.676646,0.522555,0.229812,0.858861,0.0199475,0.0274312,0.859202,0.957177,0.600598,0.796466,0.806552,0.521261,0.28472,0.0119681,0.160598,0.0979012,0.661862,0.488945,0.551874,0.169267,0.0739444,0.550321,0.717695,0.272313,0.98898,0.183972,0.0929396,0.397911,0.571065,0.691512,0.108868,0.274287,0.606891,0.872497,0.815887,0.47141,0.968046,0.162116,0.899437,0.732378,0.872389,0.499644,0.161897,0.48364,0.0713438,0.947344,0.185183,0.117823,0.764405,0.139476,0.913462,0.946443,0.862322,0.432738,0.842376,0.93345,0.70374,0.190948,0.411761,0.247583,0.221075,0.219472,0.05626,0.214078,0.923952,0.790378,0.628095,0.560357,0.388324,0.830494,0.547712,0.978699,0.466203,0.546337,0.52262,0.289161,0.425104,0.622516,0.515522,0.263155,0.894235,0.334749,0.789832,0.686897,0.646632,0.982307,0.433813,0.450652,0.431925,0.148986,0.913402,0.988443,0.848399,0.410222,0.0800799,0.518979,0.685461,0.386194,0.870042,0.639518,0.785628,0.625673,0.0883045,0.401562,0.239989,0.966641,0.265538,0.305815,0.560934,0.309053,0.466382,0.0239852,0.889189,0.90127,0.459882,0.519978,0.56159,0.435732,0.880724,0.447683,0.82518,0.350084,0.447978,0.864422,0.473326,0.421727,0.566683,0.625846,0.253426,0.0855125,0.95155,0.428142,0.726268,0.242967,0.366657,0.49271,0.470848,0.0232064,0.562004,0.42781,0.447589,0.480186,0.063799,0.0362756,0.993486,0.815187,0.0476484,0.239083,0.110525,0.657984,0.138657,0.797183,0.47687,0.703148,0.820027,0.22652,0.202477,0.80173,0.237706,0.28251,0.972478,0.385454,0.330106,0.496104,0.424876,0.779734,0.378505,0.684347,0.0431083,0.6233,0.505316,0.0566701,0.644286,0.604878,0.0067094,0.442641,0.069117,0.161855,0.479761,0.137504,0.720937,0.145244,0.685051,0.0352736,0.656569,0.0771019,0.978709,0.716414,0.47876,0.941474,0.997195,0.911965,0.948838,0.790307,0.362828,0.584916,0.211772,0.411894,0.807646,0.150904,0.801621,0.116518,0.123237,0.439337,0.32644,0.332743,0.165024,0.701681,0.000721991,0.176609,0.257441,0.671967,0.326441,0.734746,0.286817,0.259457,0.351329,0.747363,0.872994,0.0508464,0.0706776,0.691653,0.637028,0.333467,0.0504374,0.652398,0.441566,0.0270983,0.108279,0.234285,0.0267969,0.843512,0.00320816,0.0564442,0.517561,0.0598631,0.406108,0.359527,0.312403,0.488285,0.652432,0.755864,0.739054,0.987216,0.849598,0.31659,0.842559,0.877396,0.118985,0.00657684,0.794776,0.645803,0.105726,0.645108,0.911107,0.944791,0.604928,0.890668,0.202151,0.144372,0.395279,0.0109338,0.942838,0.556251,0.571876,0.721458,0.1634,0.644492,0.831366,0.441235,0.259755,0.397039,0.479336,0.290272,0.548032,0.143918,0.901245,0.244622,0.250042,0.00759137,0.464474,0.410619,0.508071,0.265981,0.0142939,0.424267,0.944725,0.426059,0.727038,0.0923985,0.485438,0.151447,0.360872,0.999837,0.0653142,0.747847,0.892045,0.969771,0.0981669,0.353344,0.810818,0.491863,0.840205,0.846022,0.105621,0.715376,0.282601,0.385325,0.76698,0.724069,0.201995,0.654035,0.771769,0.587863,0.67986,0.41346,0.696665,0.963348,0.25865,0.176497,0.216084,0.414813,0.046207,0.0807261,0.96471,0.791139,0.0144078,0.205526,0.304196,0.143145,0.646049,0.735572,0.70506,0.96161,0.582508,0.685531,0.354113,0.786529,0.273606,0.851533,0.313399,0.277978,0.0914521,0.708456,0.934687,0.278578,0.257697,0.896201,0.959226,0.0893255,0.697647,0.280645,0.017985,0.571137,0.615144,0.216217,0.216079,0.956689,0.794505,0.609415,0.359551,0.394859,0.0297282,0.713894,0.316126,0.470427,0.437052,0.40889,0.628958,0.277415,0.510373,0.341838,0.525647,0.68382,0.892466,0.46825,0.815375,0.00373608,0.336861,0.487822,0.425773,0.315099,0.587176,0.392913,0.383157,0.781651,0.24879,0.440012,0.689675,0.54504,0.979297,0.667964,0.0612407,0.500215,0.689695,0.67889,0.13287,0.391421,0.746816,0.403174,0.315975,0.981908,0.288719,0.223524,0.467231,0.739702,0.0377447,0.366576,0.697575,0.883166,0.403797,0.413138,0.248665,0.940671,0.519079,0.868253,0.615496,0.167631,0.30916,0.918306,0.212063,0.451151,0.125466,0.926983,0.171388,0.0128168,0.573055,0.250655,0.595172,0.451051,0.474421,0.288804,0.799997,0.00678474,0.14232,0.232565,0.370899,0.530339,0.861667,0.54997,0.185057,0.540298,0.369963,0.692207,0.23946,0.940875,0.483282,0.683726,0.27879,0.734322,0.149178,0.230859,0.125464,0.553181,0.426878,0.577452,0.98648,0.807672,0.182215,0.691752,0.470039,0.399375,0.967063,0.151316,0.352661,0.124787,0.6472,0.744368,0.596541,0.524074,0.318104,0.584295,0.810541,0.252714,0.362262,0.274767,0.751155,0.262552,0.651595,0.517797,0.44304,0.587687,0.226446,0.585243,0.145287,0.208007,0.99992,0.447515,0.999136,0.279357,0.424539,0.311906,0.376314,0.710124,0.67823,0.945356,0.473573,0.0414466,0.92674,0.177085,0.816601,0.0914423,0.161052,0.478164,0.360951,0.978835,0.730091,0.521536,0.450303,0.480181,0.291566,0.763529,0.782536,0.760758,0.541593,0.340752,0.709303,0.981266,0.0959645,0.838558,0.174553,0.607528,0.532163,0.285733,0.337624,0.355274,0.197031,0.942097,0.420118,0.263507,0.000407755,0.853826,0.199145,0.967773,0.488576,0.883395,0.564695,0.943065,0.261514,0.926504,0.672794,0.718059,0.652764,0.804526,0.709466,0.781492,0.86025,0.391096,0.310928,0.869093,0.0353983,0.802114,0.269134,0.454159,0.877871,0.11965,0.311393,0.869735,0.923276,0.0259906,0.627486,0.109548,0.129955,0.0243939,0.914069,0.658608,0.48493,0.903114,0.856848,0.419229,0.127443,0.743347,0.211199,0.250633,0.333523,0.894817,0.517986,0.705473,0.255968,0.0274432,0.70677,0.16802,0.713476,0.422691,0.204514,0.978172,0.975087,0.869069,0.239927,0.530324,0.232796,0.945794,0.125273,0.384071,0.205988,0.239741,0.701394,0.0812274,0.0221883,0.348648,0.349907,0.968604,0.956176,0.0300149,0.173844,0.926793,0.11296,0.38423,0.263948,0.0386961,0.0621622,0.850701,0.573868,0.734435,0.848905,0.370854,0.258322,0.877852,0.702768,0.0711353,0.618032,0.561832,0.0384907,0.952323,0.229755,0.0153244,0.81835,0.14406,0.199698,0.321216,0.515706,0.971055,0.321482,0.263093,0.392565,0.0491814,0.328305,0.931518,0.991064,0.0628045,0.942072,0.877556,0.951002,0.0885205,0.75017,0.0622856,0.804888,0.160837,0.893736,0.483259,0.765327,0.187868,0.964215,0.815603,0.0276132,0.371952,0.454019,0.814326,0.300947,0.803323,0.629752,0.859108,0.919682,0.361622,0.128999,0.122402,0.0955147,0.912951,0.751391,0.764075,0.404477,0.626418,0.146304,0.625562,0.293277,0.307725,0.921945,0.780343,0.280261,0.830209,0.196471,0.711698,0.209007,0.828519,0.00252342,0.426951,0.326759,0.648201,0.644855,0.862763,0.477487,0.358209,0.434535,0.411435,0.51967,0.623531,0.0393973,0.0731041,0.718943,0.533139,0.229227,0.279718,0.559617,0.109539,0.708306,0.412471,0.956017,0.885163,0.254593,0.65642,0.063024,0.531851,0.385348,0.0214741,0.417642,0.793329,0.916619,0.250489,0.86108,0.431929,0.397835,0.663837,0.840645,0.668514,0.984064,0.342873,0.377582,0.241636,0.0430959,0.316408,0.125013,0.149845,0.118548,0.793841,0.397841,0.608624,0.816552,0.23757,0.379496,0.26376,0.557669,0.572175,0.453984,0.898572,0.673109,0.427388,0.898091,0.58997,0.400142,0.407146,0.384342,0.0540466,0.00358713,0.0322974,0.528034,0.00820899,0.253063,0.528647,0.946939,0.922541,0.20225,0.647096,0.865881,0.838465,0.0151802,0.216044,0.829894,0.47829,0.398644,0.139564,0.598824,0.178681,0.741699,0.477759,0.800417,0.128216,0.814328,0.185267,0.598827,0.348641,0.358124,0.321168,0.507341,0.475205,0.691345,0.837536,0.82973,0.757965,0.976992,0.121283,0.128889,0.931611,0.460747,0.96104,0.4947,0.670579,0.255687,0.244436,0.772357,0.0485588,0.055169,0.0476013,0.0539435,0.339636,0.879794,0.891831,0.529577,0.819191,0.871295,0.369777,0.468907,0.182304,0.913105,0.597406,0.568078,0.986295,0.831979,0.0416767,0.663616,0.115055,0.135144,0.364421,0.814169,0.0736584,0.440773,0.263921,0.00511116,0.6028,0.63649,0.561749,0.280679,0.0538008,0.193139,0.345629,0.913378,0.563571,0.526618,0.883334,0.376115,0.0314919,0.677746,0.770421,0.933211,0.467835,0.189405,0.231736,0.606716,0.515572,0.932381,0.956115,0.987387,0.241141,0.56597,0.697648,0.261487,0.252454,0.434422,0.835279,0.599095,0.154844,0.539434,0.303504,0.26742,0.980683,0.0454918,0.471821,0.609707,0.960304,0.885376,0.699293,0.303934,0.367373,0.777257,0.464306,0.00133234,0.728183,0.0695258,0.112789,0.328014,0.959465,0.558782,0.519719,0.290712,0.115019,0.974071,0.984026,|0.107588,0.823107,0.753761,0.584719,0.441878,0.587607,0.622783,0.780544,0.709178,0.670094,0.808209,0.409093,0.419888,0.956175,0.833867,0.245761,0.0287934,0.0480136,0.638082,0.200413,0.0333614,0.0931433,0.582359,0.486349,0.21541,0.595905,0.0710276,0.168525,0.640739,0.879815,0.434063,0.625904,0.731042,0.636535,0.928562,0.674656,0.772371,0.0606828,0.396725,0.513919,0.834131,0.538899,0.803686,0.310969,0.277421,0.924447,0.0545924,0.822662,0.222398,0.0205783,0.126315,0.628129,0.40283,0.651509,0.735277,0.542287,0.831943,0.830422,0.024291,0.612269,0.22435,0.424551,0.593607,0.418752,0.264869,0.850718,0.376217,0.94693,0.182909,0.730795,0.573106,0.756122,0.32428,0.632899,0.612335,0.527541,0.766338,0.99654,0.0877898,0.647906,0.446064,0.13599,0.606774,0.0617875,0.969706,0.373481,0.366551,0.823709,0.1655,0.415494,0.18729,0.542583,0.608533,0.764116,0.443825,0.0707181,0.177117,0.705326,0.487487,0.460235,0.267974,0.0767595,0.954404,0.246688,0.601105,0.457141,0.139371,0.515382,0.438464,0.0606529,0.63267,0.652552,0.428313,0.925874,0.317608,0.438077,0.186987,0.229514,0.00461781,0.714834,0.79209,0.0837941,0.390609,0.156706,0.000339866,0.215482,0.244492,0.2474,0.645922,0.872759,0.625972,0.152958,0.846358,0.945713,0.281305,0.188729,0.507791,0.734356,0.998753,0.477568,0.829851,0.713064,0.871957,0.737232,0.923474,0.088469,0.714738,0.58326,0.613313,0.267459,0.860182,0.576162,0.530318,0.690388,0.556362,0.043317,0.686548,0.543586,0.628823,0.899299,0.705956,0.114476,0.2857,0.558227,0.895516,0.980024,0.570168,0.809846,0.934624,0.953176,0.845443,0.426113,0.127286,0.952094,0.775678,0.194925,0.00126004,0.432586,0.508144,0.532553,0.0904418,0.605194,0.356886,0.722272,0.583793,0.53269,0.594483,0.857693,0.124948,0.268657,0.134838,0.882486,0.906863,0.501407,0.638009,0.889372,0.391855,0.633319,0.212507,0.430762,0.310187,0.28433,0.0131224,0.361695,0.585856,0.104068,0.636642,0.768033,0.776044,0.424509,0.873889,0.719708,0.297339,0.162242,0.0292915,0.534056,0.12311,0.0180624,0.888969,0.106552,0.319468,0.519658,0.769555,0.549987,0.180286,0.264081,0.992294,0.513169,0.677824,0.42812,0.913742,0.85036,0.0457454,0.816531,0.372414,0.492645,0.448207,0.276195,0.97975,0.510991,0.401124,0.997268,0.601411,0.71449,0.469543,0.964234,0.00806206,0.993335,0.0683421,0.561224,0.235566,0.946822,0.22013,0.830606,0.0775455,0.963721,0.355812,0.640422,0.183686,0.473168,0.548183,0.905883,0.233341,0.167757,0.00837344,0.909382,0.12104,0.181669,0.782315,0.297218,0.586305,0.0599092,0.824599,0.261981,0.552076,0.795948,0.847345,0.959525,0.290382,0.268881,0.613342,0.973034,0.0391255,0.637609,0.600964,0.327622,0.12568,0.93554,0.819829,0.329515,0.803615,0.799836,0.221703,0.722081,0.603724,0.0496998,0.630216,0.93056,0.934037,0.870176,0.708308,0.21977,0.622409,0.103137,0.264147,0.47302,0.494077,0.805274,0.206393,0.998046,0.402874,0.699555,0.693789,0.196777,0.0599445,0.243211,0.361354,0.935173,0.944545,0.670038,0.0741806,0.974838,0.891795,0.0468561,0.799071,0.922774,0.840856,0.960399,0.247766,0.4028,0.795871,0.652508,0.153162,0.241697,0.778218,0.659448,0.867327,0.107379,0.211961,0.0333132,0.204522,0.22667,0.474066,0.944249,0.378369,0.878835,0.470607,0.247033,0.431663,0.787904,0.75077,0.69804,0.292834,0.847247,0.390089,0.434997,0.550546,0.559281,0.619915,0.97234,0.339408,0.80105,0.109429,0.404233,0.088676,0.577598,0.752317,0.303955,0.0947651,0.882107,0.99585,0.194005,0.589862,0.833053,0.340952,0.0423208,0.237472,0.276602,0.830249,0.739551,0.178616,0.754623,0.575293,0.535434,0.536192,0.781128,0.197478,0.608094,0.275791,0.863233,0.500456,0.374572,0.53692,0.714813,0.291974,0.467812,0.443407,0.805602,0.945415,0.198012,0.272984,0.859243,0.386186,0.833232,0.773441,0.905901,0.771408,0.188017,0.187583,0.0765504,0.967147,0.515061,0.226402,0.334974,0.132287,0.127988,0.298604,0.628215,0.578897,0.324944,0.486916,0.155957,0.219941,0.215611,0.72704,0.963588,0.422408,0.899865,0.782433,0.0395353,0.977509,0.812832,0.870091,0.763554,0.971022,0.476686,0.748171,0.600879,0.98327,0.644696,0.982309,0.643166,0.171866,0.186506,0.310009,0.0132524,0.26767,0.0907556,0.355197,0.267212,0.806746,0.786405,0.628051,0.222849,0.0209569,0.325284,0.272081,0.35878,0.784336,0.22165,0.189378,0.951824,0.724417,0.873851,0.583246,0.11213,0.747749,0.970202,0.90098,0.181394,0.921615,0.37929,0.733835,0.0863613,0.0635559,0.106373,0.836425,0.528814,0.704982,0.630365,0.569744,0.66826,0.472079,0.362414,0.124143,0.234976,0.368217,0.545673,0.715806,0.748789,0.994897,0.0321641,0.33905,0.650918,0.965216,0.421662,0.0772294,0.804091,0.823898,0.70077,0.113752,0.400203,0.121652,0.0302357,0.524847,0.736408,0.0412932,0.509138,0.612829,0.834731,0.198989,0.981353,0.909155,0.793261,0.599348,0.182799,0.21465,0.328116,0.955092,0.487892,0.239659,0.531875,0.227118,0.326519,0.227703,0.658124,0.568637,0.152542,0.963343,0.107602,0.200876,0.694143,0.519614,0.623394,0.798786,0.460982,0.524582,0.0773426,0.165952,0.574953,0.177066,0.688916,0.0414438,0.400194,0.345956,0.115985,0.901265,0.53362,0.610582,0.690631,0.750759,0.643466,0.128967,0.284002,0.616256,0.631332,0.403714,0.826042,0.940619,0.826175,0.29544,0.537291,0.65303,0.612355,0.858958,0.559073,0.593863,0.830421,0.817933,0.0892011,0.391444,0.396851,0.36805,0.892055,0.145153,0.312091,0.349901,0.840499,0.0769556,0.158449,0.016643,0.393699,0.721546,0.470434,0.924512,0.984578,0.418011,0.448408,0.560571,0.131845,0.785631,0.52421,0.468278,0.961399,0.743185,0.638611,0.0937142,0.454503,0.550016,0.337678,0.166113,0.710762,0.815376,0.723172,0.641009,0.0201735,0.296633,0.374121,0.112412,0.82267,0.304785,0.303555,0.0234987,0.0204055,0.716596,0.928976,0.57645,0.169769,0.652627,0.296012,0.790222,0.319319,0.57655,0.671485,0.164325,0.785087,0.784516,0.924392,0.015982,0.233921,0.222237,0.0170597,0.246133,0.542226,0.877859,0.839408,0.89662,0.147978,0.671665,0.956653,0.528096,0.160499,0.0429144,0.745725,0.479008,0.647864,0.166546,0.64477,0.677291,0.784007,0.0924761,0.240817,0.698477,0.212505,0.646758,0.882575,0.975883,0.540496,0.549985,0.840945,0.89829,0.0133708,0.561633,0.161957,0.566332,0.213389,0.109764,0.745312,0.540384,0.873617,0.75085,0.827723,0.964842,0.340576,0.591635,0.0688405,0.542172,0.572165,0.122354,0.770224,0.0729914,0.915328,0.576427,0.743641,0.202139,0.132042,0.494832,0.459103,0.323116,0.754154,0.532569,0.189201,0.775472,0.668656,0.91255,0.779521,0.708293,0.335685,0.761663,0.782367,0.745188,0.408535,0.566984,0.565993,0.0496089,0.0709262,0.864361,0.701315,0.178394,0.911037,0.654073,0.757297,0.860096,0.0307285,0.346347,0.583674,0.562548,0.190375,0.856198,0.478744,0.710493,0.0149575,0.727039,0.761409,0.0755669,0.860376,0.374506,0.00567526,0.0142439,0.0812784,0.511107,0.726547,0.667037,0.0935363,0.826621,0.111559,0.132348,0.465525,0.827752,0.340338,0.891272,0.766122,0.521378,0.0228531,0.714425,0.671969,0.65449,0.872428,0.39202,0.170115,0.850934,0.837216,0.682123,0.431846,0.726844,0.585854,0.914762,0.346775,0.47916,0.0018602,0.681298,0.475496,0.576872,0.871117,0.6044,0.856091,0.730704,0.695243,0.887094,0.862202,0.884017,0.40753,0.475217,0.834054,0.883552,0.622545,0.0213566,0.904676,0.632235,0.496862,0.465919,0.842711,0.819092,0.375398,0.545672,0.352879,0.786013,0.854695,0.595409,0.0119625,0.0475643,0.780492,0.837045,0.40709,0.973523,0.318924,0.822255,0.750526,0.100435,0.045542,0.648517,0.738577,0.427789,0.753618,0.0779811,0.872291,0.880327,0.938141,0.822511,0.181216,0.057034,0.730919,0.245566,0.24963,0.63732,0.0936686,0.296211,0.322814,0.970335,0.679638,0.649842,0.706837,0.583553,0.189246,0.1592,0.664819,0.419798,0.0972624,0.54364,0.130681,0.402899,0.212977,0.942801,0.894218,0.433864,0.0387206,0.832742,0.713754,0.245387,0.83542,0.755396,0.405159,0.421143,0.312322,0.12145,0.716626,0.971434,0.661874,0.278738,0.830727,0.976236,0.908368,0.624606,0.383499,0.947647,0.801223,0.218183,0.699271,0.0768142,0.923299,0.560266,0.918314,0.361894,0.959633,0.742544,0.211461,0.891844,0.547098,0.327805,0.730037,0.942225,0.114681,0.153335,0.581803,0.072777,0.0668616,0.0844818,0.0353251,0.970458,0.851981,0.714747,0.335825,0.406466,0.520288,0.570356,0.548728,0.548899,0.566491,0.914746,0.152027,0.145207,0.862565,0.932121,0.703393,0.171381,0.460341,0.540902,0.0438164,0.367024,0.335905,0.711978,0.458617,0.333548,0.995237,0.481548,0.723934,0.299571,0.398321,0.465562,0.394156,0.938211,0.561015,0.196968,0.0105066,0.583733,0.232683,0.607614,0.344831,0.788832,0.904272,0.850203,0.943621,0.715715,0.0779815,0.229796,0.363444,0.525259,0.599051,0.808848,0.107436,0.459052,0.813426,0.0694879,0.0165258,0.633917,0.791942,0.794061,0.130971,0.780301,0.328954,0.728712,0.626023,0.0967444,0.357335,0.553997,0.521128,0.267598,0.580443,0.283755,0.346538,0.117288,0.316764,0.294677,0.737531,0.388694,0.690406,0.181491,0.83905,0.629825,0.554403,0.216089,0.65969,0.620575,0.0256423,0.607063,0.869057,0.35983,0.363352,0.935867,0.910505,0.227564,0.0670258,0.953317,0.910466,0.991032,0.10053,0.247244,0.291434,0.367021,0.082577,0.458855,0.667114,0.680666,0.0457629,0.64593,0.240976,0.243982,0.207846,0.162566,0.475906,0.94603,0.32476,0.333511,0.0281024,0.82993,0.516962,0.212553,0.00719959,0.128688,0.0811254,|0.306808,0.723607,0.808999,0.232033,0.701434,0.1989,0.203727,0.615399,0.555109,0.0688368,0.995356,0.80722,0.15816,0.497278,0.7534,0.736161,0.250692,0.63356,0.256398,0.8362,0.943827,0.418211,0.99473,0.231771,0.527834,0.758704,0.06235,0.669805,0.796329,0.356842,0.853634,0.0328573,0.427291,0.556024,0.541293,0.111986,0.867243,0.242293,0.530111,0.488743,0.25211,0.24763,0.0856019,0.233488,0.956398,0.548555,0.286002,0.0376655,0.592999,0.715485,0.230195,0.904476,0.208234,0.846583,0.0491742,0.227466,0.735136,0.800737,0.488171,0.82163,0.0193685,0.851631,0.591199,0.895188,0.178839,0.250988,0.962182,0.332227,0.0965796,0.678297,0.814734,0.224829,0.206972,0.638912,0.457311,0.318464,0.478522,0.210241,0.631343,0.0669684,0.945751,0.798784,0.676884,0.25274,0.51519,0.798029,0.557309,0.963166,0.664987,0.0468022,0.690738,0.552791,0.45133,0.897772,0.589466,0.115399,0.611572,0.285735,0.0672659,0.175338,0.7935,0.735671,0.328066,0.916627,0.644748,0.55614,0.624461,0.245322,0.597402,0.131884,0.799359,0.655846,0.986341,0.286271,0.767324,0.794769,0.258689,0.25763,0.325695,0.977471,0.616623,0.542319,0.437456,0.0140002,0.252409,0.382496,0.753295,0.644193,0.0401241,0.707732,0.295046,0.9123,0.32818,0.710272,0.619616,0.0316944,0.345769,0.695298,0.608554,0.931569,0.487404,0.993074,0.955861,0.0911928,0.360665,0.26134,0.333997,0.273621,0.793882,0.163415,0.6862,0.708227,0.237487,0.0992521,0.013367,0.555365,0.380558,0.519786,0.782942,0.200099,0.912207,0.588705,0.0381546,0.797566,0.367221,0.503987,0.547287,0.654318,0.855328,0.860167,0.191174,0.91016,0.381091,0.750846,0.135676,0.653488,0.00399858,0.640149,0.167887,0.94551,0.19257,0.604007,0.242788,0.924508,0.764598,0.69536,0.658581,0.529661,0.668573,0.9592,0.782989,0.935727,0.968458,0.731269,0.366791,0.596563,0.733287,0.251517,0.538789,0.596609,0.0106161,0.128003,0.70322,0.00143534,0.159679,0.758599,0.0767717,0.896263,0.804228,0.664082,0.744464,0.194983,0.0696018,0.893048,0.943189,0.379726,0.0714467,0.942832,0.109554,0.470632,0.874319,0.801778,0.109817,0.172429,0.80362,0.695628,0.313647,0.746247,0.182766,0.745809,0.691371,0.962911,0.549231,0.0249574,0.219746,0.301233,0.488327,0.0322087,0.878911,0.54232,0.87924,0.522892,0.326896,0.933476,0.399363,0.999512,0.132966,0.553661,0.576947,0.379443,0.815015,0.0894777,0.267244,0.829063,0.496305,0.944688,0.933204,0.323681,0.420176,0.0670438,0.277156,0.181258,0.405346,0.274169,0.420434,0.850523,0.720234,0.65897,0.771486,0.604986,0.573494,0.235313,0.724884,0.00985277,0.762583,0.65327,0.431008,0.264812,0.324673,0.203327,0.0478115,0.330279,0.592049,0.0852241,0.0928686,0.516197,0.641857,0.769559,0.808919,0.243625,0.584909,0.702604,0.564517,0.582367,0.0446768,0.359852,0.949758,0.544658,0.0316352,0.357669,0.632378,0.0818375,0.610058,0.435512,0.491432,0.610845,0.472855,0.558967,0.919001,0.24467,0.648316,0.062888,0.601699,0.785563,0.501701,0.0615942,0.222148,0.156897,0.837211,0.688395,0.665118,0.515373,0.0528531,0.341899,0.0628101,0.976173,0.297345,0.600412,0.967996,0.193229,0.101528,0.0227678,0.359477,0.536169,0.427177,0.649485,0.352292,0.443937,0.188694,0.302522,0.421513,0.610067,0.334658,0.168669,0.607018,0.655053,0.896493,0.896014,0.439574,0.183755,0.854695,0.161328,0.92502,0.594057,0.920225,0.107315,0.90022,0.772164,0.526382,0.620818,0.286426,0.0515087,0.0490896,0.129837,0.503809,0.251135,0.688816,0.507122,0.341428,0.0603203,0.962133,0.434692,0.174835,0.183168,0.787992,0.571736,0.806534,0.0987061,0.466067,0.174078,0.680728,0.876544,0.0663734,0.192275,0.606287,0.0735903,0.873899,0.0508808,0.844235,0.56147,0.733977,0.482948,0.426002,0.0741242,0.30019,0.720723,0.799763,0.820358,0.0240925,0.322183,0.508455,0.51278,0.580861,0.679573,0.776512,0.481798,0.139966,0.0976254,0.582179,0.880986,0.800844,0.157825,0.0453963,0.332651,0.905898,0.346427,0.578349,0.0336716,0.335783,0.116259,0.728233,0.307723,0.459638,0.153765,0.365182,0.0188007,0.325196,0.612805,0.451224,0.799846,0.934529,0.866261,0.921457,0.417305,0.339802,0.451266,0.525208,0.734901,0.172213,0.460217,0.0987061,0.511234,0.527453,0.175304,0.605626,0.644567,0.848117,0.981775,0.905135,0.185591,0.845788,0.0434873,0.877321,0.942807,0.407168,0.0646198,0.0752075,0.535719,0.0729837,0.173456,0.866982,0.449146,0.325505,0.745504,0.494924,0.145476,0.228383,0.232043,0.838877,0.356767,0.739987,0.523467,0.823563,0.20196,0.685511,0.407076,0.968684,0.407688,0.186051,0.891582,0.643852,0.29424,0.82094,0.640771,0.417898,0.95858,0.587969,0.866018,0.148177,0.706699,0.815595,0.735353,0.169969,0.72834,0.904415,0.84124,0.646579,0.566043,0.337111,0.341209,0.679325,0.318077,0.21493,0.216761,0.256372,0.388857,0.788777,0.928698,0.457884,0.201148,0.243815,0.67064,0.0102471,0.160082,0.940037,0.528208,0.707507,0.94903,0.088873,0.0154965,0.0962616,0.0582612,0.171384,0.945981,0.567943,0.908415,0.622803,0.910951,0.315535,0.662641,0.975771,0.356488,0.253105,0.190641,0.619354,0.327818,0.700083,0.885013,0.742477,0.487407,0.62987,0.251769,0.0538838,0.985838,0.412093,0.08255,0.492602,0.0654881,0.302464,0.395824,0.708596,0.291848,0.358977,0.925162,0.37676,0.502111,0.972229,0.65071,0.630638,0.433188,0.232631,0.787493,0.161541,0.667737,0.508919,0.349316,0.0486979,0.910759,0.586834,0.177335,0.687982,0.118241,0.391213,0.388932,0.927511,0.620424,0.513873,0.885472,0.307416,0.335845,0.128887,0.157335,0.492631,0.342522,0.830437,0.197418,0.183556,0.599414,0.665446,0.763798,0.925554,0.129788,0.610793,0.071126,0.151964,0.777827,0.875535,0.957034,0.752715,0.905717,0.688497,0.146639,0.45244,0.356096,0.63658,0.24405,0.659635,0.39092,0.290986,0.392594,0.149265,0.696638,0.760124,0.758757,0.965094,0.282198,0.567691,0.640734,0.621468,0.696342,0.345224,0.692741,0.269696,0.0845937,0.00736088,0.8344,0.222668,0.204046,0.923019,0.925683,0.430178,0.0719371,0.470145,0.916951,0.142047,0.762367,0.546955,0.942668,0.33389,0.696294,0.99506,0.104045,0.204913,0.439767,0.253679,0.793792,0.181851,0.582749,0.456414,0.0625797,0.706333,0.0562963,0.616434,0.36278,0.64028,0.273662,0.858339,0.994336,0.732122,0.746936,0.871321,0.759761,0.0898973,0.671208,0.110746,0.876382,0.353323,0.860893,0.938652,0.846096,0.962841,0.844552,0.549797,0.921463,0.328577,0.229344,0.0856451,0.193387,0.101984,0.972975,0.832196,0.574919,0.106365,0.768298,0.168266,0.486634,0.850331,0.630056,0.562743,0.585434,0.00907189,0.146233,0.670229,0.180561,0.630861,0.106524,0.807451,0.199463,0.542181,0.335132,0.213107,0.532778,0.968393,0.91354,0.268805,0.597258,0.564072,0.792159,0.990162,0.944103,0.587433,0.437537,0.804851,0.705444,0.976879,0.699457,0.0010187,0.46026,0.0940675,0.730564,0.114243,0.48708,0.490368,0.250176,0.423699,0.0928825,0.105458,0.297726,0.207648,0.859157,0.93923,0.106848,0.594381,0.182966,0.317936,0.046055,0.376861,0.0726996,0.0845557,0.214864,0.500674,0.875223,0.15371,0.866382,0.243855,0.0618504,0.0771065,0.700571,0.0207404,0.164538,0.246004,0.972478,0.695218,0.865601,0.448314,0.718305,0.781849,0.424575,0.0971846,0.494105,0.36728,0.669306,0.119123,0.0325661,0.840966,0.0460625,0.253637,0.748305,0.633682,0.919692,0.724192,0.622624,0.220582,0.0111051,0.671198,0.177828,0.735788,0.851419,0.14133,0.00204778,0.127294,0.601136,0.129141,0.113369,0.428927,0.614718,0.987905,0.0347729,0.550651,0.00581324,0.623502,0.757906,0.373812,0.647612,0.0630631,0.43753,0.925092,0.445595,0.588001,0.371505,0.777709,0.854831,0.427888,0.454318,0.236825,0.471727,0.676013,0.956202,0.563036,0.107727,0.456911,0.661242,0.496342,0.241027,0.955649,0.200914,0.186329,0.135045,0.634338,0.202541,0.59361,0.832872,0.541782,0.484477,0.527593,0.742997,0.36431,0.886392,0.246499,0.14658,0.0882913,0.912561,0.726602,0.773372,0.177388,0.585136,0.771856,0.99043,0.276245,0.250684,0.413472,0.3152,0.0243956,0.631229,0.537212,0.940803,0.411681,0.954588,0.945352,0.855417,0.968481,0.0304291,0.336172,0.111518,0.163496,0.244075,0.475474,0.313669,0.574803,0.394956,0.903491,0.87574,0.575676,0.304617,0.213879,0.626644,0.490736,0.987298,0.0312417,0.232943,0.833568,0.239641,0.428818,0.138377,0.819009,0.672182,0.315731,0.561457,0.0904858,0.980648,0.203964,0.126825,0.778855,0.114056,0.829404,0.131491,0.493217,0.683371,0.681084,0.846061,0.719351,0.0406443,0.806292,0.418712,0.254819,0.0281115,0.900524,0.334811,0.464855,0.0138894,0.890937,0.942584,0.0240141,0.632178,0.215268,0.762837,0.501545,0.88034,0.350729,0.266843,0.646839,0.317974,0.328744,0.623736,0.223977,0.317864,0.398515,0.263757,0.279646,0.606957,0.7199,0.738978,0.85768,0.620219,0.67133,0.315439,0.439145,0.468718,0.920546,0.367141,0.0571366,0.175949,0.151606,0.815632,0.639595,0.103495,0.253527,0.900049,0.82934,0.623986,0.0383791,0.228869,0.0551435,0.10488,0.511126,0.841069,0.702923,0.783319,0.931678,0.754364,0.141823,0.713246,0.138364,0.179674,0.0541608,0.216211,0.0772308,0.836822,0.994393,0.479356,0.0261589,0.618996,0.588785,0.295644,0.204006,0.220222,0.00639492,0.533816,0.469067,0.0531688,0.361052,0.12699,0.456431,0.935666,0.706103,0.915124,0.562845,0.531962,0.218232,0.801602,0.965357,0.00474554,0.628017,0.160547,0.640839,0.674535,0.429598,0.553475,0.12899,0.353151,0.495407,0.973667,0.783808,0.263169,0.777706,0.830648,0.511145,0.638542,0.898921,0.113048,|0.978749,0.290011,0.496087,0.944987,0.45065,0.144451,0.765432,0.279495,0.560225,0.57215,0.462843,0.614312,0.864988,0.800227,0.0930836,0.755215,0.293343,0.149393,0.460877,0.00256062,0.934526,0.392871,0.214495,0.296399,0.739704,0.152801,0.0663685,0.193784,0.379369,0.997408,0.0997686,0.204268,0.193023,0.819364,0.81939,0.752653,0.764851,0.281565,0.264861,0.194252,0.174284,0.350532,0.6359,0.0926308,0.881195,0.860626,0.706055,0.621957,0.303752,0.497959,0.206587,0.702772,0.0137756,0.736403,0.215295,0.905273,0.866889,0.542893,0.770528,0.89757,0.199448,0.784279,0.099482,0.719675,0.03802,0.290342,0.893122,0.238995,0.732689,0.788875,0.796695,0.0293894,0.856929,0.87087,0.119867,0.690119,0.587436,0.82477,0.467792,0.357026,0.610371,0.694565,0.520797,0.738499,0.377906,0.526391,0.0258709,0.121354,0.122648,0.807803,0.0674348,0.877621,0.607801,0.0244848,0.735645,0.169699,0.213629,0.347424,0.935916,0.906698,0.59418,0.795482,0.908979,0.862573,0.914978,0.803141,0.484775,0.918157,0.739526,0.601419,0.227718,0.324109,0.290364,0.0298576,0.75345,0.0802174,0.137375,0.0455521,0.249581,0.447684,0.542605,0.779379,0.640157,0.424179,0.97166,0.437158,0.407336,0.745366,0.329127,0.398846,0.0110887,0.254899,0.860143,0.902419,0.0641545,0.213427,0.637629,0.161366,0.375929,0.0482609,0.709292,0.0951486,0.938013,0.583953,0.574494,0.30505,0.256516,0.176974,0.69741,0.597123,0.63861,0.45728,0.0567139,0.212571,0.130585,0.960835,0.89107,0.759158,0.670574,0.70403,0.0943832,0.172739,0.792405,0.655296,0.569539,0.106494,0.188476,0.0173019,0.141909,0.943161,0.059087,0.400581,0.148993,0.522477,0.269611,0.688477,0.8191,0.655341,0.716677,0.418692,0.39315,0.844522,0.434738,0.112128,0.315231,0.475501,0.552768,0.688537,0.850277,0.396991,0.668341,0.472164,0.941345,0.635086,0.279702,0.637303,0.580944,0.343634,0.59928,0.613667,0.00780404,0.338156,0.103153,0.513546,0.0585576,0.940554,0.779292,0.431853,0.351227,0.594205,0.89587,0.0836558,0.412414,0.248894,0.371922,0.597749,0.986629,0.476959,0.484645,0.086941,0.746929,0.853673,0.138738,0.476212,0.261683,0.520172,0.0421721,0.682974,0.548021,0.748929,0.812485,0.363759,0.678701,0.00222987,0.0473766,0.0460748,0.179633,0.451573,0.356794,0.430549,0.848106,0.165432,0.377391,0.42817,0.42969,0.270667,0.865375,0.645261,0.659568,0.0488769,0.424691,0.794742,0.587003,0.0753049,0.490573,0.190878,0.288455,0.981636,0.221872,0.224216,0.484173,0.844657,0.461459,0.998081,0.0218396,0.162587,0.48701,0.541644,0.167472,0.564717,0.0617017,0.842798,0.617905,0.178815,0.125574,0.273045,0.276507,0.178407,0.66855,0.457111,0.751308,0.863878,0.0435446,0.129746,0.00647324,0.0922679,0.035916,0.814473,0.0200415,0.192982,0.838056,0.321689,0.73961,0.564602,0.849105,0.848204,0.199323,0.84868,0.606432,0.829332,0.397466,0.329643,0.366051,0.169059,0.196412,0.123281,0.759832,0.530359,0.851853,0.391252,0.129042,0.750852,0.136945,0.868741,0.15616,0.354877,0.0971944,0.120324,0.43155,0.580828,0.724547,0.558605,0.73296,0.178675,0.530082,0.853437,0.917742,0.543882,0.642474,0.670022,0.0472783,0.824966,0.841356,0.414559,0.715239,0.314979,0.506083,0.471191,0.748235,0.751017,0.201225,0.45439,0.449655,0.264439,0.267244,0.558792,0.572517,0.862248,0.411001,0.131275,0.766994,0.80422,0.84698,0.00635618,0.115839,0.421456,0.748835,0.670792,0.417391,0.214199,0.0542843,0.647404,0.673074,0.323346,0.651704,0.913318,0.414003,0.579992,0.611359,0.815867,0.521743,0.0877503,0.633697,0.0677087,0.115419,0.800704,0.828199,0.940832,0.725418,0.460476,0.994259,0.582594,0.602054,0.813366,0.0123937,0.343907,0.176051,0.545239,0.0807663,0.165888,0.101668,0.432417,0.00639057,0.932562,0.793118,0.864404,0.457209,0.116525,0.578508,0.933637,0.979711,0.450363,0.846896,0.950458,0.669934,0.234286,0.934935,0.355401,0.944972,0.512745,0.669414,0.295101,0.266642,0.768649,0.501419,0.926582,0.380781,0.848671,0.0934135,0.480266,0.637738,0.8404,0.711593,0.923391,0.30301,0.408584,0.402518,0.981593,0.994951,0.45067,0.0617318,0.947425,0.893482,0.927886,0.998846,0.0136529,0.758308,0.931863,0.930331,0.257849,0.356655,0.626744,0.971046,0.649508,0.818778,0.436425,0.833632,0.2123,0.314138,0.540963,0.130216,0.0404978,0.250142,0.239639,0.826284,0.196575,0.827907,0.103335,0.278515,0.788861,0.509844,0.56419,0.837415,0.271418,0.359478,0.42005,0.976232,0.286174,0.341726,0.851008,0.429479,0.855646,0.737751,0.679809,0.265787,0.311871,0.110594,0.205894,0.38508,0.135446,0.496807,0.671087,0.042146,0.0648379,0.151618,0.081016,0.0174753,0.212241,0.441835,0.343453,0.190023,0.272357,0.0603341,0.862687,0.445751,0.990238,0.915776,0.731143,0.07193,0.868665,0.10225,0.507956,0.892625,0.869227,0.295066,0.116998,0.375666,0.220389,0.224417,0.100408,0.6794,0.273483,0.451474,0.277267,0.979859,0.911563,0.559171,0.078675,0.281482,0.69284,0.471612,0.364988,0.431343,0.211058,0.168614,0.688449,0.0605428,0.677104,0.567126,0.907724,0.630291,0.595095,0.704902,0.580405,0.0425918,0.513518,0.608259,0.87645,0.453688,0.201582,0.0527704,0.47572,0.204768,0.693826,0.0224536,0.933506,0.31229,0.297113,0.301217,0.612572,0.269116,0.628769,0.0151887,0.456623,0.368046,0.726049,0.510027,0.840142,0.49151,0.424276,0.17835,0.769582,0.981175,0.893134,0.802767,0.429262,0.287885,0.982346,0.235116,0.263771,0.220495,0.382002,0.687763,0.339229,0.76948,0.985148,0.911206,0.744811,0.778305,0.715632,0.282133,0.107987,0.324871,0.376352,0.581076,0.887131,0.948065,0.456565,0.573725,0.877785,0.575812,0.391029,0.544753,0.326614,0.851375,0.255729,0.463979,0.0339739,0.634351,0.852863,0.409358,0.253681,0.411574,0.326336,0.623966,0.30576,0.384616,0.154888,0.0817841,0.647394,0.165357,0.779217,0.159706,0.186993,0.903867,0.2865,0.461482,0.036549,0.210234,0.99975,0.0118752,0.992822,0.75316,0.955285,0.231849,0.831397,0.319682,0.929291,0.0850117,0.507404,0.58294,0.51827,0.971408,0.677343,0.781638,0.1991,0.263515,0.43029,0.459845,0.751064,0.219416,0.399625,0.544043,0.670421,0.335372,0.66782,0.865576,0.835836,0.945097,0.354942,0.415623,0.709655,0.828974,0.809462,0.886027,0.506186,0.3943,0.11682,0.569793,0.0218397,0.123432,0.570428,0.109694,0.623387,0.743707,0.83187,0.651783,0.742467,0.0890313,0.238594,0.604604,0.185487,0.333391,0.493037,0.956661,0.154647,0.648471,0.480121,0.0624858,0.847203,0.197759,0.764107,0.388936,0.194913,0.165572,0.920853,0.211067,0.221035,0.380239,0.975591,0.922877,0.462184,0.282669,0.413838,0.410998,0.280711,0.154827,0.906121,0.281546,0.924095,0.809288,0.38504,0.922115,0.894913,0.779688,0.551581,0.481318,0.764119,0.685796,0.969341,0.596682,0.764169,0.111347,0.622485,0.105624,0.717856,0.56517,0.934569,0.396051,0.939401,0.8976,0.631832,0.611775,0.237529,0.715143,0.454174,0.0290977,0.815422,0.0895692,0.313208,0.947842,0.0593688,0.862067,0.30052,0.0437884,0.765385,0.0210193,0.398531,0.919462,0.920847,0.322515,0.979253,0.749127,0.392397,0.330405,0.979958,0.420198,0.0671541,0.030958,0.0487565,0.0366006,0.0374818,0.477847,0.223582,0.625515,0.372075,0.86449,0.165937,0.314984,0.394939,0.252207,0.621287,0.209065,0.825743,0.339351,0.633625,0.247671,0.015545,0.482096,0.100331,0.487077,0.0553075,0.108276,0.239622,0.00686091,0.363259,0.434934,0.922806,0.393835,0.770298,0.251227,0.151468,0.192428,0.908934,0.908255,0.434036,0.144713,0.118414,0.329104,0.837405,0.61437,0.308702,0.0238753,0.200513,0.464357,0.242817,0.150712,0.622617,0.73138,0.672867,0.0933309,0.697957,0.517719,0.99263,0.510922,0.778532,0.579316,0.816164,0.666147,0.696748,0.109384,0.484645,0.104229,0.239125,0.123635,0.094304,0.452656,0.0766869,0.742698,0.0935924,0.38561,0.0128471,0.539331,0.293428,0.188196,0.600939,0.618674,0.441018,0.518357,0.141817,0.667614,0.580325,0.62512,0.0643436,0.131024,0.546699,0.743364,0.0530072,0.527626,0.0807549,0.234715,0.823522,0.334436,0.703512,0.866425,0.605346,0.0183563,0.632854,0.289804,0.238214,0.369355,0.43562,0.704021,0.781308,0.396265,0.282266,0.349588,0.4595,0.272474,0.489986,0.043241,0.797978,0.581306,0.429845,0.668678,0.796934,0.437843,0.0276236,0.682647,0.917755,0.487046,0.48849,0.300804,0.917123,0.20669,0.946912,0.469009,0.0952076,0.776891,0.726765,0.527887,0.439589,0.525376,0.344334,0.851466,0.995111,0.35189,0.350384,0.616338,0.193461,0.834028,0.396925,0.747689,0.0571873,0.202853,0.143445,0.49159,0.822333,0.621336,0.798481,0.218317,0.799049,0.471462,0.266581,0.613951,0.546803,0.629023,0.569746,0.770886,0.85899,0.392181,0.208708,0.817008,0.124888,0.292337,0.0499898,0.887187,0.181433,0.644892,0.4018,0.222749,0.767047,0.591042,0.178576,0.226866,0.963318,0.609385,0.812468,0.699797,0.0440329,0.582568,0.241231,0.444499,0.339893,0.807846,0.840177,0.796524,0.629413,0.559766,0.923922,0.569658,0.538688,0.766067,0.537277,0.743922,0.397682,0.776005,0.916241,0.959131,0.0105444,0.0692886,0.898965,0.798941,0.568047,0.764888,0.944812,0.682872,0.315698,0.747325,0.546549,0.889952,0.353257,0.687147,0.269831,0.740774,0.317488,0.595994,0.936577,0.700952,0.0135666,0.99,0.00546819,0.523019,0.837264,0.370968,0.856493,0.508264,0.66366,0.658265,0.735399,0.992574,0.873055,0.677065,0.963557,0.637499,0.898235,0.499354,0.980666,0.396159,0.394151,0.139742,0.291869,0.943122,0.821351,0.189194,0.608697,0.402424,0.772637,0.127424,0.508268,|0.573494,0.972763,0.981596,0.14682,0.982755,0.246866,0.0915431,0.589096,0.989317,0.808996,0.576976,0.171768,0.626133,0.0219914,0.0802156,0.305707,0.700696,0.237156,0.550888,0.376069,0.6991,0.496026,0.86237,0.0333004,0.779224,0.104436,0.00175357,0.144196,0.766057,0.696924,0.589503,0.240152,0.888561,0.938558,0.399848,0.181947,0.334489,0.783971,0.207693,0.541335,0.123636,0.728718,0.0652761,0.2276,0.764443,0.264657,0.0643929,0.729991,0.518249,0.569587,0.955774,0.372888,0.151697,0.192085,0.606027,0.763111,0.463184,0.676548,0.647646,0.716528,0.186295,0.32499,0.29954,0.0876719,0.337022,0.819996,0.781555,0.773415,0.326789,0.437066,0.525071,0.116848,0.632601,0.653485,0.547705,0.591695,0.269685,0.800098,0.01612,0.405864,0.345177,0.114374,0.937148,0.977338,0.237866,0.233301,0.588247,0.169939,0.215328,0.53389,0.186984,0.584976,0.52523,0.0511278,0.411031,0.602138,0.538735,0.314763,0.742941,0.238009,0.447837,0.0844769,0.417199,0.294947,0.515417,0.225751,0.273206,0.53987,0.602941,0.502721,0.52027,0.677107,0.333402,0.649779,0.808526,0.688221,0.562166,0.140195,0.962073,0.400222,0.16572,0.343477,0.427453,0.0775872,0.458934,0.937541,0.930412,0.129796,0.423893,0.23835,0.686106,0.0115622,0.209066,0.103004,0.297251,0.604068,0.626154,0.788372,0.192955,0.336451,0.556642,0.416865,0.892045,0.504261,0.763993,0.705954,0.815168,0.60218,0.745242,0.240357,0.876901,0.96166,0.842875,0.0466927,0.77742,0.356586,0.844198,0.432267,0.0263398,0.0798725,0.668037,0.830454,0.7304,0.720197,0.611575,0.565641,0.584475,0.361056,0.135918,0.636493,0.919586,0.420905,0.257358,0.824002,0.19477,0.222825,0.634098,0.121604,0.201769,0.482183,0.844012,0.0234011,0.533629,0.388926,0.0856145,0.926296,0.94277,0.300313,0.353789,0.288044,0.893205,0.828122,0.722065,0.266134,0.638309,0.513742,0.245637,0.159884,0.424776,0.597726,0.783604,0.73895,0.823429,0.943751,0.801563,0.764975,0.690053,0.124108,0.459434,0.927512,0.0468081,0.976281,0.348108,0.106358,0.324287,0.254986,0.441529,0.559867,0.303006,0.689702,0.7363,0.74591,0.732074,0.0833357,0.37931,0.635332,0.845389,0.824656,0.488368,0.0374088,0.709822,0.0600818,0.0427403,0.702836,0.829876,0.609332,0.467677,0.757295,0.842777,0.386468,0.378111,0.103494,0.491393,0.226018,0.0895823,0.674319,0.380129,0.646618,0.90888,0.982855,0.15301,0.642422,0.347618,0.640278,0.722007,0.13741,0.635203,0.859049,0.0680886,0.623656,0.9244,0.78499,0.43276,0.752651,0.649489,0.732278,0.729608,0.204251,0.194766,0.764149,0.423687,0.5351,0.554264,0.107518,0.216027,0.388689,0.191222,0.504492,0.994209,0.567326,0.980114,0.935398,0.537231,0.0420422,0.286352,0.815378,0.00564104,0.32779,0.817213,0.120393,0.554144,0.396219,0.482607,0.924779,0.428033,0.219462,0.736584,0.981042,0.652212,0.585014,0.299147,0.821023,0.485763,0.613741,0.334099,0.256278,0.0574084,0.781536,0.765629,0.172597,0.434252,0.000486612,0.841708,0.460714,0.369317,0.57824,0.178993,0.603886,0.151015,0.481318,0.87711,0.244595,0.483665,0.1611,0.451233,0.267573,0.403657,0.434153,0.306498,0.397778,0.881995,0.453245,0.786414,0.755357,0.00562727,0.707487,0.984518,0.823097,0.636321,0.516568,0.439049,0.300074,0.74561,0.965894,0.688729,0.923695,0.978616,0.211558,0.983679,0.231748,0.0649501,0.18454,0.830705,0.837158,0.604076,0.714843,0.387177,0.480231,0.506812,0.5798,0.865195,0.562367,0.891356,0.991035,0.315362,0.0183746,0.837854,0.427155,0.475868,0.125112,0.039038,0.941254,0.572569,0.475313,0.627034,0.266783,0.153377,0.253968,0.0657127,0.559703,0.174934,0.15401,0.662227,0.072298,0.852439,0.893088,0.910837,0.48946,0.58234,0.685479,0.668243,0.485159,0.187781,0.455318,0.139688,0.633439,0.466888,0.774444,0.626914,0.298073,0.813343,0.776558,0.717481,0.957341,0.581147,0.363903,0.571601,0.123377,0.0393508,0.576067,0.792153,0.088626,0.42779,0.306126,0.950589,0.974047,0.114317,0.00990367,0.967151,0.547695,0.226059,0.852415,0.263127,0.839685,0.38154,0.355922,0.46947,0.906421,0.162385,0.109988,0.34198,0.06093,0.182006,0.784427,0.866218,0.535193,0.00920874,0.819618,0.0188553,0.893985,0.191457,0.430859,0.977942,0.145486,0.715237,0.275334,0.409699,0.752706,0.775379,0.337988,0.7883,0.306028,0.725731,0.681632,0.213554,0.488574,0.314304,0.18205,0.798844,0.613736,0.686829,0.756309,0.677433,0.823611,0.295771,0.397614,0.309405,0.183024,0.348735,0.00924802,0.951593,0.548158,0.0671518,0.854902,0.939215,0.845496,0.0600473,0.93542,0.676788,0.575833,0.181385,0.435773,0.914596,0.729265,0.298908,0.895878,0.382725,0.16899,0.903817,0.286993,0.793632,0.602657,0.326081,0.592588,0.503674,0.833653,0.451124,0.226144,0.361228,0.0776283,0.940122,0.380843,0.659228,0.209932,0.628854,0.520919,0.238115,0.937749,0.0432687,0.420143,0.532102,0.171703,0.956608,0.35333,0.31688,0.437351,0.125547,0.26438,0.920201,0.51758,0.541401,0.890341,0.789439,0.7962,0.0730508,0.559539,0.109511,0.18283,0.0868927,0.474835,0.406926,0.0404076,0.814721,0.908646,0.60013,0.57195,0.871193,0.423605,0.434235,0.28709,0.689,0.205865,0.482264,0.662946,0.849946,0.284077,0.137516,0.487193,0.00738508,0.996607,0.163817,0.131819,0.0941476,0.571252,0.403287,0.13409,0.559679,0.355373,0.172192,0.177938,0.864216,0.214099,0.285901,0.80212,0.848275,0.859931,0.338325,0.0401686,0.208269,0.444753,0.156886,0.00115836,0.222311,0.958895,0.53041,0.0809779,0.578627,0.16874,0.192212,0.71159,0.193905,0.327874,0.580668,0.539077,0.113106,0.469226,0.243414,0.901511,0.139543,0.721851,0.168176,0.16236,0.233433,0.297827,0.914234,0.0948347,0.0524058,0.63998,0.499017,0.521927,0.395939,0.663528,0.591199,0.457315,0.952444,0.753726,0.518386,0.208553,0.217375,0.00372547,0.608491,0.844953,0.432542,0.674004,0.0565718,0.949042,0.0843927,0.103271,0.223672,0.190456,0.505318,0.753945,0.454202,0.723443,0.832061,0.197223,0.533258,0.156457,0.293946,0.242625,0.958316,0.56322,0.931096,0.283138,0.258687,0.94885,0.956898,0.609077,0.0620552,0.454781,0.0600018,0.746983,0.689676,0.773433,0.649629,0.786724,0.689378,0.866663,0.399816,0.0679964,0.474768,0.227932,0.935955,0.266536,0.216433,0.862294,0.150207,0.767127,0.24657,0.866818,0.162889,0.48627,0.24783,0.357656,0.294155,0.614943,0.780451,0.0822983,0.604345,0.578988,0.256901,0.553787,0.739169,0.511611,0.0557494,0.649255,0.342209,0.444799,0.471005,0.401473,0.946476,0.492192,0.577312,0.735757,0.461778,0.379222,0.0978276,0.000414371,0.815467,0.273173,0.0504104,0.929762,0.110489,0.268165,0.806669,0.996404,0.249119,0.718488,0.415033,0.408318,0.808124,0.99756,0.463139,0.55951,0.444087,0.460595,0.0715077,0.766285,0.515726,0.567231,0.889703,0.453045,0.964627,0.615487,0.71512,0.483401,0.999812,0.629384,0.116291,0.760576,0.59674,0.873836,0.914579,0.332643,0.444539,0.316987,0.537206,0.0458196,0.868744,0.333187,0.608553,0.329326,0.328498,0.290658,0.653377,0.156602,0.581251,0.0781012,0.588336,0.803729,0.979273,0.496239,0.0188699,0.559284,0.544593,0.636532,0.0258148,0.270146,0.0223558,0.261137,0.0826116,0.817676,0.693463,0.661933,0.501258,0.655688,0.668152,0.780867,0.246291,0.154544,0.449063,0.136419,0.614483,0.971254,0.591174,0.183518,0.88885,0.645273,0.621292,0.616201,0.885916,0.53076,0.652784,0.325802,0.323996,0.503871,0.491769,0.651915,0.287158,0.530362,0.761101,0.0164922,0.119301,0.160101,0.924144,0.871752,0.54333,0.0844629,0.678492,0.509124,0.582474,0.447797,0.381943,0.021838,0.821758,0.843279,0.494364,0.370886,0.687657,0.172785,0.304368,0.309651,0.394883,0.25934,0.325521,0.0869787,0.0174453,0.583132,0.276069,0.967802,0.748234,0.752754,0.212793,0.80368,0.438697,0.818053,0.831818,0.803306,0.962937,0.483503,0.215927,0.993389,0.822859,0.830663,0.810215,0.344898,0.709103,0.684031,0.216906,0.430683,0.166609,0.0731724,0.163402,0.259528,0.907051,0.466526,0.369126,0.431302,0.600506,0.492676,0.566559,0.4119,0.162071,0.912103,0.868872,0.56842,0.0144181,0.39547,0.817898,0.477288,0.795789,0.284566,0.93538,0.914472,0.724649,0.334792,0.797768,0.103197,0.829972,0.158569,0.561231,0.948605,0.722289,0.155512,0.831344,0.72323,0.902015,0.149219,0.414987,0.290293,0.953725,0.288964,0.295131,0.45858,0.883468,0.207862,0.987715,0.604163,0.995635,0.697035,0.491259,0.974578,0.0469121,0.423001,0.70698,0.413325,0.878147,0.789621,0.971669,0.925251,0.943081,0.136168,0.931467,0.825581,0.809535,0.202485,0.978918,0.478742,0.095409,0.332684,0.180191,0.922774,0.434819,0.947428,0.471099,0.485567,0.846712,0.0594662,0.695255,0.513883,0.459147,0.392549,0.38641,0.126902,0.641817,0.869142,0.594325,0.322549,0.679352,0.311634,0.309423,0.772963,0.389918,0.661116,0.56488,0.718817,0.79217,0.900174,0.166752,0.188551,0.573764,0.142943,0.855329,0.779392,0.848945,0.251584,0.927809,0.787899,0.434116,0.066743,0.0660429,0.283774,0.667609,0.792065,0.975981,0.942918,0.449459,0.72834,0.0260162,0.89373,0.621031,0.429945,0.452094,0.539859,0.153064,0.655295,0.202303,0.26821,0.676139,0.134686,0.351112,0.546432,0.606396,0.111368,0.0860383,0.421926,0.555379,0.156139,0.140857,0.60322,0.989316,0.383445,0.687425,0.802459,0.985919,0.548119,0.589685,0.33384,0.103907,0.710548,0.96562,0.742966,0.751887,0.435048,0.484089,0.00375909,0.691998,0.720296,0.356941,0.0293807,0.162069,0.539826,0.974801,0.578537,0.0166392,0.915929,0.600588,0.180324,0.207611,0.139419,|0.495912,0.487194,0.164066,0.514979,0.140038,0.558014,0.255101,0.512875,0.520258,0.613853,0.0611163,0.861228,0.00272506,0.434187,0.71599,0.156464,0.141182,0.207503,0.85468,0.794808,0.770191,0.685121,0.267055,0.525524,0.709515,0.9168,0.561012,0.532516,0.625346,0.421234,0.52214,0.760796,0.486026,0.179268,0.444902,0.473739,0.981295,0.454046,0.769322,0.499902,0.441284,0.739993,0.561675,0.0907009,0.228088,0.0353732,0.00138217,0.554592,0.559839,0.341819,0.84305,0.0933636,0.680786,0.951485,0.787927,0.0610406,0.801396,0.678877,0.790164,0.824409,0.629492,0.99214,0.0366109,0.653941,0.757036,0.248823,0.676804,0.841385,0.69267,0.320864,0.116725,0.33726,0.81534,0.425664,0.264397,0.0992395,0.125091,0.609143,0.106142,0.972092,0.526546,0.982134,0.860647,0.176775,0.953128,0.562008,0.530824,0.691139,0.162588,0.619549,0.621526,0.1082,0.477597,0.912544,0.284495,0.637013,0.691692,0.264101,0.911153,0.586408,0.27995,0.946835,0.171128,0.84,0.555303,0.890881,0.608753,0.0839496,0.0960736,0.251234,0.908021,0.305434,0.105727,0.634149,0.632839,0.117411,0.349842,0.147576,0.449748,0.0763873,0.142623,0.796744,0.949419,0.946476,0.594925,0.255924,0.554254,0.568447,0.59654,0.443582,0.649094,0.035342,0.457316,0.297358,0.956334,0.163508,0.729088,0.185444,0.585808,0.351562,0.189248,0.812577,0.489716,0.717606,0.300514,0.225082,0.138236,0.41261,0.53359,0.796168,0.276823,0.670477,0.687392,0.843509,0.624664,0.183755,0.404413,0.313759,0.938697,0.843892,0.0562379,0.0395198,0.252087,0.800467,0.893106,0.174514,0.722589,0.136683,0.391719,0.879901,0.202989,0.497605,0.600507,0.790262,0.300893,0.809899,0.460336,0.31386,0.512036,0.314489,0.415462,0.16161,0.161091,0.153252,0.940173,0.36891,0.576726,0.673181,0.822869,0.712934,0.33958,0.660488,0.754079,0.747366,0.722803,0.906992,0.297475,0.0199706,0.208082,0.429947,0.274349,0.0973189,0.238279,0.785917,0.487471,0.888365,0.247225,0.452921,0.0216826,0.208365,0.556747,0.7599,0.577564,0.0458161,0.959721,0.637967,0.590898,0.0504558,0.0428245,0.331679,0.0164969,0.313851,0.297826,0.382267,0.363156,0.205065,0.878688,0.0546531,0.370931,0.952154,0.234146,0.204977,0.209507,0.174519,0.732611,0.00684547,0.0221034,0.62437,0.421241,0.78897,0.872817,0.0406911,0.374319,0.414198,0.7821,0.480405,0.124842,0.481776,0.121956,0.244043,0.797844,0.939456,0.177053,0.266088,0.664076,0.036774,0.476006,0.330619,0.1368,0.393496,0.586782,0.696447,0.982976,0.833308,0.250786,0.662773,0.496588,0.960553,0.115252,0.869886,0.364647,0.229503,0.608425,0.694057,0.890843,0.258867,0.176376,0.497595,0.687342,0.0068624,0.339287,0.196619,0.67923,0.350872,0.639492,0.280338,0.976142,0.187392,0.0552449,0.707667,0.724776,0.653399,0.931804,0.1148,0.293259,0.955376,0.961963,0.886564,0.985553,0.549316,0.798183,0.709332,0.201486,0.508673,0.473308,0.326655,0.258686,0.345771,0.739555,0.0325423,0.180172,0.909204,0.837669,0.365475,0.989872,0.658395,0.0622253,0.0798522,0.806117,0.149508,0.192372,0.91851,0.892203,0.541218,0.239497,0.838139,0.242909,0.254281,0.045973,0.345944,0.660962,0.794224,0.974841,0.458299,0.420296,0.149836,0.757041,0.547749,0.229497,0.668832,0.858952,0.830635,0.620094,0.799197,0.237175,0.405153,0.865592,0.854193,0.202002,0.253075,0.874093,0.611581,0.644077,0.350081,0.716448,0.674011,0.625478,0.84371,0.398569,0.30796,0.0653022,0.903064,0.408517,0.789812,0.807748,0.0809688,0.968671,0.169402,0.394292,0.603822,0.258036,0.352018,0.19901,0.292726,0.42598,0.201104,0.384238,0.947631,0.518466,0.898949,0.867186,0.775851,0.594504,0.824686,0.187333,0.322219,0.923048,0.577487,0.983606,0.464524,0.560119,0.434371,0.299267,0.0448099,0.24813,0.879561,0.365137,0.9559,0.217454,0.857325,0.537216,0.496451,0.850243,0.458406,0.321103,0.820687,0.887458,0.541788,0.518865,0.536819,0.591994,0.859959,0.13813,0.791025,0.77896,0.686858,0.806325,0.840954,0.688703,0.852179,0.280858,0.709253,0.0834877,0.50856,0.321513,0.192489,0.452586,0.225821,0.369298,0.10577,0.49688,0.10743,0.969519,0.925015,0.0197523,0.897911,0.454877,0.19148,0.838352,0.0403399,0.801358,0.0362291,0.275662,0.885974,0.729367,0.0765413,0.0795671,0.331383,0.645688,0.580765,0.609204,0.295166,0.882812,0.524871,0.817881,0.520502,0.689106,0.613203,0.684715,0.855479,0.617085,0.170672,0.0978197,0.148986,0.341581,0.520747,0.770003,0.341941,0.104044,0.726017,0.321953,0.248573,0.693214,0.348791,0.898437,0.0496414,0.284721,0.458306,0.0096041,0.175676,0.336248,0.260637,0.189234,0.113705,0.99218,0.917728,0.0944513,0.984863,0.678511,0.522683,0.757935,0.541121,0.74352,0.31314,0.84967,0.28112,0.159275,0.968794,0.876781,0.952966,0.271692,0.0778214,0.277139,0.0703762,0.718058,0.424448,0.431638,0.827061,0.324519,0.0413052,0.366987,0.00187701,0.284341,0.7037,0.831238,0.288426,0.111371,0.187379,0.462005,0.358437,0.848913,0.262313,0.90495,0.511215,0.729532,0.756462,0.982424,0.981621,0.865789,0.437263,0.913765,0.100008,0.666157,0.650825,0.745322,0.462982,0.0960022,0.370226,0.865055,0.590063,0.853968,0.874975,0.702745,0.96163,0.081175,0.562892,0.565323,0.0602865,0.896372,0.168211,0.265416,0.909937,0.466063,0.427785,0.839821,0.692242,0.936498,0.482834,0.286978,0.20455,0.821676,0.403994,0.5618,0.422656,0.785407,0.875519,0.570343,0.603617,0.315404,0.705413,0.284814,0.854157,0.616514,0.649067,0.436187,0.216405,0.649839,0.693443,0.577104,0.416621,0.000326753,0.860529,0.591653,0.0691653,0.680674,0.439299,0.603369,0.953011,0.978099,0.782359,0.652182,0.458199,0.0241224,0.171526,0.407633,0.420518,0.889568,0.47386,0.0403946,0.804431,0.432182,0.311357,0.784469,0.384194,0.869977,0.995449,0.269569,0.0305969,0.0252677,0.762407,0.759334,0.800685,0.473549,0.590982,0.148222,0.438592,0.701221,0.0469395,0.351387,0.746997,0.674564,0.484748,0.769834,0.969613,0.0229654,0.201929,0.72362,0.185671,0.8546,0.654989,0.839624,0.982101,0.687485,0.40657,0.0842631,0.782433,0.100108,0.851955,0.660376,0.980104,0.1934,0.773116,0.949198,0.861813,0.0244833,0.53871,0.659086,0.599122,0.280885,0.0590728,0.878091,0.444051,0.577589,0.480098,0.29041,0.764912,0.680836,0.7379,0.461685,0.355735,0.406986,0.301124,0.843023,0.669625,0.948663,0.920018,0.0390345,0.939669,0.186063,0.83356,0.00208968,0.104882,0.437828,0.227989,0.851674,0.64082,0.239197,0.167625,0.214929,0.0835171,0.925724,0.0380763,0.654727,0.803252,0.441971,0.938274,0.206186,0.0915946,0.719172,0.548684,0.506836,0.876612,0.84665,0.677233,0.954451,0.847253,0.445955,0.845864,0.107851,0.759341,0.120887,0.918878,0.690134,0.339339,0.477215,0.686482,0.423813,0.0490874,0.494308,0.227403,0.710343,0.510235,0.712259,0.572107,0.310702,0.474599,0.292258,0.923405,0.743102,0.829613,0.267806,0.873332,0.59418,0.588855,0.239911,0.242287,0.709107,0.13667,0.293461,0.868187,0.163764,0.610187,0.987575,0.85576,0.217079,0.812484,0.913366,0.258896,0.421941,0.375915,0.0252476,0.674558,0.189294,0.751732,0.28657,0.0937768,0.947604,0.479463,0.501984,0.273635,0.0427225,0.372258,0.465151,0.293902,0.382057,0.360478,0.0151143,0.595762,0.0964409,0.212644,0.51996,0.568959,0.573552,0.646371,0.16276,0.781225,0.924007,0.763438,0.00816655,0.867859,0.818019,0.7074,0.80686,0.613343,0.248096,0.217024,0.680262,0.95907,0.353355,0.291391,0.827347,0.745238,0.0281858,0.691922,0.193336,0.52774,0.311025,0.350809,0.9573,0.78265,0.108417,0.0157053,0.307928,0.124971,0.510289,0.978708,0.806607,0.554952,0.810985,0.378694,0.761814,0.794314,0.46945,0.838728,0.77579,0.492071,0.819599,0.42091,0.342989,0.0207207,0.278719,0.790392,0.709111,0.33288,0.165046,0.569019,0.764795,0.651221,0.918518,0.204558,0.450195,0.340528,0.124997,0.0688266,0.960227,0.526576,0.744835,0.716433,0.218972,0.15411,0.434532,0.51531,0.336034,0.499443,0.904179,0.38873,0.112202,0.643865,0.889862,0.31678,0.170684,0.219506,0.528745,0.802711,0.487096,0.656779,0.590049,0.510867,0.274011,0.477585,0.679275,0.181811,0.17397,0.0655369,0.242973,0.916986,0.520356,0.909052,0.438001,0.560302,0.948744,0.26066,0.81555,0.589087,0.449968,0.220978,0.169382,0.167057,0.684103,0.2505,0.249713,0.763788,0.388746,0.674227,0.291471,0.0587649,0.0681118,0.57343,0.879234,0.199291,0.655622,0.404287,0.225612,0.789936,0.707375,0.275091,0.749861,0.467021,0.235758,0.323891,0.171465,0.0673424,0.637932,0.224903,0.0925445,0.770279,0.591628,0.248459,0.528655,0.890052,0.272024,0.935505,0.0496196,0.922995,0.486471,0.988793,0.1927,0.139687,0.937351,0.783626,0.816364,0.40486,0.366522,0.0788779,0.766544,0.191261,0.713912,0.382256,0.819782,0.0944563,0.149021,0.223548,0.29619,0.575436,0.961084,0.371356,0.744154,0.153732,0.0130929,0.484875,0.435539,0.273187,0.726031,0.393805,0.558759,0.969249,0.980544,0.69241,0.131646,0.525169,0.12545,0.7255,0.770732,0.0493146,0.469766,0.786748,0.395179,0.686247,0.861997,0.173862,0.208955,0.637002,0.957957,0.938562,0.200819,0.717672,0.205865,0.947153,0.716202,0.436186,0.302639,0.460871,0.724198,0.228414,0.496592,0.893843,0.03986,0.0555762,0.805526,0.654024,0.0134809,0.406966,0.695603,0.442312,0.319008,0.666075,0.691211,0.282984,0.0245723,0.484451,0.231079,0.101623,0.0877493,0.92972,0.0161505,0.326289,0.11367,0.533,0.674907,0.171922,0.103023,0.206589,0.497719,0.0473588,0.179841,0.288711,0.226728,0.883337,0.311827,0.588784,|0.975124,0.683042,0.772544,0.895163,0.661721,0.0173917,0.85333,0.181961,0.189893,0.393565,0.0638998,0.29944,0.554545,0.798389,0.800997,0.829479,0.665534,0.803567,0.409037,0.75662,0.416861,0.620611,0.396964,0.0981814,0.947676,0.28348,0.414337,0.154505,0.611959,0.0987511,0.483648,0.357068,0.370691,0.651702,0.278201,0.846207,0.172304,0.710987,0.84319,0.3946,0.120603,0.599334,0.700584,0.13452,0.360393,0.0179687,0.687293,0.642871,0.902556,0.693474,0.0656679,0.924513,0.513233,0.135939,0.803274,0.626829,0.515973,0.627979,0.585551,0.166587,0.692834,0.694637,0.461475,0.481905,0.612893,0.599241,0.0868021,0.457249,0.0575632,0.0133929,0.00208682,0.699122,0.917425,0.0529647,0.605409,0.148698,0.555478,0.889136,0.298992,0.127295,0.120184,0.483448,0.745732,0.604107,0.771959,0.39104,0.398362,0.925799,0.664725,0.282126,0.996323,0.24141,0.01113,0.837912,0.0142932,0.87663,0.534093,0.81866,0.393274,0.319707,0.569249,0.334647,0.786424,0.992558,0.752678,0.613513,0.64298,0.935925,0.0970251,0.720616,0.751069,0.475701,0.377049,0.805413,0.35377,0.0722604,0.256372,0.867122,0.777318,0.903326,0.492021,0.133799,0.453557,0.886034,0.451726,0.0352294,0.636937,0.0705354,0.241509,0.628585,0.689661,0.57167,0.684303,0.260846,0.555192,0.349836,0.725989,0.662955,0.98789,0.696915,0.452024,0.98347,0.280284,0.342035,0.722728,0.0919823,0.202761,0.948339,0.417925,0.477395,0.574399,0.755015,0.567896,0.618318,0.588941,0.497515,0.268439,0.386059,0.452479,0.995241,0.187076,0.567035,0.170639,0.299865,0.471612,0.261092,0.178882,0.521998,0.731507,0.0373026,0.468293,0.531471,0.894171,0.0559379,0.62104,0.182334,0.269682,0.535103,0.983406,0.729103,0.974458,0.50213,0.876916,0.366726,0.724624,0.79222,0.607817,0.958468,0.190241,0.258153,0.825271,0.552908,0.231079,0.594079,0.821072,0.587192,0.267244,0.806224,0.196637,0.0585276,0.759064,0.83887,0.468965,0.651104,0.725932,0.456982,0.212093,0.322086,0.432315,0.179398,0.251913,0.9329,0.676244,0.225437,0.771298,0.921485,0.677753,0.935748,0.791181,0.0835091,0.646746,0.4798,0.785212,0.0063383,0.993486,0.737873,0.623973,0.154769,0.239683,0.351312,0.712964,0.515523,0.148016,0.56581,0.411206,0.377939,0.173032,0.915032,0.134856,0.484796,0.135665,0.936317,0.244628,0.53925,0.652869,0.970999,0.476356,0.0126349,0.00852787,0.384443,0.639146,0.810008,0.183939,0.962595,0.0467044,0.113273,0.127528,0.255295,0.714923,0.286747,0.541981,0.335152,0.287063,0.505801,0.645916,0.40854,0.431267,0.976645,0.307053,0.924877,0.211252,0.84439,0.0920747,0.369102,0.649588,0.530851,0.827464,0.655396,0.153085,0.28082,0.800803,0.706862,0.559599,0.116305,0.940828,0.6657,0.688734,0.470061,0.931745,0.22843,0.441398,0.389439,0.282058,0.835483,0.00859433,0.914402,0.277189,0.92659,0.922721,0.912456,0.340489,0.0032599,0.879708,0.0939168,0.0241035,0.206412,0.030371,0.0427209,0.0410921,0.745456,0.835947,0.515417,0.182156,0.972449,0.255426,0.920593,0.180903,0.920541,0.387754,0.490096,0.840856,0.576065,0.956788,0.963907,0.3567,0.256345,0.0160551,0.322418,0.260509,0.737399,0.713087,0.905887,0.553425,0.541705,0.0608431,0.554585,0.435057,0.648497,0.0303873,0.672755,0.791229,0.272177,0.31422,0.673395,0.248998,0.36162,0.224644,0.51304,0.780019,0.0404948,0.132778,0.719959,0.521541,0.585758,0.71131,0.826852,0.223681,0.194482,0.853618,0.368656,0.409068,0.548688,0.468534,0.0843375,0.551981,0.671199,0.916404,0.872205,0.419439,0.681121,0.63201,0.924041,0.736619,0.139456,0.60412,0.335616,0.246743,0.144845,0.18766,0.769306,0.54303,0.483544,0.000711501,0.353801,0.565562,0.547567,0.018324,0.162482,0.620348,0.63894,0.361816,0.06222,0.37008,0.35971,0.992748,0.667569,0.709008,0.9261,0.477561,0.226172,0.0527402,0.615944,0.168937,0.0406426,0.838053,0.0153723,0.444435,0.930666,0.813697,0.483898,0.00657535,0.658607,0.157476,0.696032,0.89337,0.973279,0.981105,0.847589,0.624148,0.789547,0.738462,0.122791,0.180427,0.234049,0.472855,0.572809,0.0607727,0.606016,0.746835,0.676783,0.412603,0.481505,0.944471,0.475798,0.334476,0.871688,0.739088,0.944848,0.208493,0.855886,0.289845,0.305251,0.922926,0.0452491,0.603148,0.0309595,0.2949,0.687084,0.122883,0.335654,0.621578,0.998785,0.290474,0.407347,0.138323,0.565885,0.28218,0.294136,0.778433,0.693139,0.612454,0.132847,0.230033,0.439806,0.48276,0.494948,0.525783,0.898302,0.791534,0.96899,0.842098,0.627285,0.551658,0.904631,0.99257,0.914206,0.929379,0.472731,0.941559,0.967128,0.963476,0.486801,0.960945,0.0347515,0.588874,0.513667,0.535931,0.016584,0.0223292,0.63242,0.847265,0.0559981,0.658061,0.398589,0.116786,0.0549707,0.954646,0.301817,0.0546201,0.909231,0.564493,0.811966,0.132193,0.11516,0.104411,0.286685,0.963984,0.621768,0.131191,0.449265,0.622172,0.866796,0.390491,0.975324,0.470992,0.645893,0.719586,0.934152,0.696528,0.566032,0.272539,0.772683,0.403344,0.201885,0.821694,0.63635,0.43978,0.0636005,0.181794,0.0127074,0.167261,0.302565,0.00694704,0.751712,0.953416,0.886907,0.317023,0.886159,0.307835,0.243052,0.151746,0.120451,0.23208,0.997656,0.222716,0.306346,0.71351,0.992722,0.591836,0.626537,0.994534,0.297145,0.610233,0.286978,0.729374,0.483479,0.714969,0.282055,0.349872,0.259261,0.698668,0.675339,0.390532,0.663068,0.71995,0.223127,0.835711,0.605683,0.695433,0.639555,0.100958,0.662331,0.875373,0.492159,0.609559,0.991503,0.148911,0.320827,0.65204,0.449246,0.345485,0.0201171,0.994579,0.351274,0.993401,0.137141,0.210315,0.50767,0.337745,0.311811,0.783033,0.0614551,0.78988,0.56879,0.224912,0.217647,0.513956,0.213496,0.490948,0.390652,0.497176,0.783169,0.134037,0.151838,0.442551,0.770091,0.944428,0.354981,0.553692,0.492495,0.0974348,0.470379,0.182057,0.532477,0.869715,0.367172,0.930124,0.727923,0.514938,0.636707,0.363968,0.528965,0.256052,0.299899,0.536016,0.980138,0.328445,0.842404,0.0157042,0.257753,0.619126,0.568782,0.691018,0.156715,0.392744,0.477026,0.190987,0.579094,0.951537,0.491418,0.386975,0.996983,0.997046,0.277439,0.362776,0.155725,0.343306,0.61562,0.276193,0.760036,0.379151,0.935553,0.316319,0.999247,0.892398,0.943615,0.253753,0.447436,0.67465,0.916436,0.260247,0.597863,0.456309,0.973045,0.707023,0.627262,0.718009,0.58848,0.70996,0.898479,0.28378,0.672123,0.89652,0.253649,0.508602,0.798138,0.512331,0.528551,0.271218,0.208894,0.622018,0.275169,0.4129,0.565655,0.276215,0.767065,0.966405,0.495695,0.197921,0.392884,0.00223124,0.338071,0.895529,0.117451,0.62551,0.550105,0.471862,0.948085,0.483576,0.986813,0.0464513,0.385381,0.872809,0.387897,0.368343,0.49489,0.512766,0.152167,0.552235,0.804491,0.36439,0.0978862,0.71757,0.729202,0.690132,0.351766,0.286145,0.778779,0.887695,0.782957,0.0866762,0.85004,0.196052,0.764365,0.225454,0.636782,0.111198,0.575692,0.0197354,0.233709,0.823075,0.763312,0.0986142,0.519533,0.356696,0.124908,0.455525,0.239011,0.0091148,0.673272,0.515737,0.41928,0.454827,0.0400227,0.548596,0.0064072,0.578451,0.972846,0.317014,0.642924,0.417641,0.692051,0.00128269,0.407204,0.103454,0.0933258,0.342843,0.627907,0.271218,0.788312,0.930598,0.909267,0.904654,0.532049,0.380882,0.182236,0.92968,0.473078,0.937903,0.616038,0.0676088,0.801183,0.511471,0.870197,0.125252,0.818231,0.850805,0.470438,0.482832,0.197351,0.980106,0.255155,0.723366,0.268522,0.0339935,0.982994,0.39128,0.0503368,0.90603,0.403477,0.889565,0.405335,0.948027,0.341807,0.769424,0.441724,0.13705,0.214117,0.287568,0.910539,0.0250134,0.983571,0.546236,0.0206994,0.47959,0.410023,0.852322,0.400501,0.71462,0.39956,0.391096,0.132233,0.576849,0.794177,0.0513907,0.995299,0.0384516,0.967087,0.606802,0.237387,0.58718,0.0312386,0.517661,0.893103,0.825535,0.0907932,0.731849,0.769017,0.228979,0.364803,0.691167,0.725761,0.202125,0.825409,0.397081,0.161964,0.17469,0.983645,0.389122,0.107561,0.611506,0.233892,0.44672,0.00744671,0.532673,0.0960501,0.726388,0.480039,0.0493175,0.732262,0.158756,0.0812418,0.343197,0.877125,0.0786217,0.833131,0.932509,0.281167,0.746778,0.82265,0.358893,0.426115,0.0573742,0.621034,0.166412,0.770418,0.599843,0.0791266,0.846868,0.420161,0.0754884,0.527192,0.0371794,0.126091,0.0715022,0.222036,0.194366,0.512959,0.371235,0.0130364,0.202938,0.98362,0.593321,0.940853,0.528832,0.472928,0.639386,0.970696,0.764111,0.191671,0.627017,0.205635,0.902367,0.691557,0.413329,0.891177,0.210296,0.532315,0.495187,0.960237,0.823378,0.128902,0.203241,0.0493386,0.297681,0.64525,0.31066,0.909338,0.926994,0.844613,0.717092,0.701267,0.230492,0.739133,0.749004,0.456828,0.0523474,0.73695,0.88093,0.871573,0.956424,0.936861,0.910322,0.699688,0.262162,0.565667,0.616098,0.359082,0.610095,0.472857,0.900536,0.973336,0.198503,0.0705472,0.49766,0.835585,0.0602604,0.341914,0.201392,0.156142,0.245557,0.0592584,0.921454,0.195612,0.29154,0.496502,0.842408,0.460717,0.198142,0.637875,0.951342,0.777787,0.578353,0.514875,0.723928,0.763645,0.998526,0.806244,0.271388,0.877033,0.192258,0.980242,0.857395,0.738254,0.105677,0.916185,0.295277,0.288249,0.993684,0.296745,0.774385,0.56959,0.282209,0.658992,0.974365,0.829362,0.0853626,0.425748,0.544184,0.231645,0.761467,0.93253,0.633679,0.156757,0.0949227,0.60231,0.146424,0.0744717,0.898269,0.636856,0.936876,0.163911,0.0425152,0.690864,0.254231,0.923061,0.110208,0.998324,0.455245,0.466477,|0.847181,0.557773,0.824655,0.0506935,0.0552942,0.847158,0.855117,0.175632,0.452445,0.112336,0.41342,0.202027,0.335076,0.494926,0.583366,0.800311,0.43718,0.0876402,0.532642,0.488521,0.0683028,0.253705,0.838402,0.869313,0.108026,0.157191,0.850243,0.711964,0.0820607,0.818885,0.678292,0.0363343,0.670058,0.0581448,0.232028,0.495032,0.958881,0.441961,0.183379,0.208693,0.0882897,0.599528,0.846139,0.503356,0.28784,0.218902,0.43053,0.868329,0.558393,0.729478,0.0121934,0.637568,0.944252,0.69844,0.750886,0.770614,0.00528419,0.153842,0.55212,0.849153,0.0585977,0.200939,0.106605,0.481282,0.220039,0.394252,0.554646,0.507766,0.296279,0.991153,0.224649,0.948204,0.472497,0.446006,0.361095,0.124333,0.249105,0.48133,0.396197,0.325605,0.929978,0.339229,0.299953,0.0570475,0.451761,0.266091,0.381732,0.619623,0.803755,0.372438,0.264332,0.292515,0.464818,0.509521,0.62374,0.10237,0.125021,0.921691,0.743402,0.194552,0.280431,0.841225,0.644635,0.0539914,0.294723,0.046157,0.291743,0.0763632,0.453257,0.560476,0.718858,0.721777,0.0152444,0.457448,0.732271,0.22246,0.331763,0.325927,0.727565,0.512639,0.0367985,0.986146,0.463917,0.620376,0.0978017,0.206065,0.445382,0.804061,0.4327,0.404455,0.0439923,0.889837,0.693622,0.294576,0.153103,0.278418,0.5314,0.491556,0.686348,0.0423594,0.517891,0.624175,0.989233,0.712152,0.353128,0.636852,0.299137,0.426901,0.118468,0.707925,0.925502,0.0141627,0.111137,0.332713,0.681922,0.332882,0.659654,0.830836,0.0116068,0.000310957,0.427287,0.507263,0.303427,0.813423,0.250027,0.207085,0.934777,0.0774692,0.74863,0.816398,0.250072,0.807849,0.891313,0.48153,0.139903,0.232689,0.139623,0.332669,0.707323,0.856154,0.861477,0.321424,0.830779,0.592416,0.0936351,0.813605,0.873702,0.904855,0.695246,0.687579,0.567397,0.707637,0.958917,0.192587,0.717085,0.948438,0.362229,0.614255,0.9891,0.815476,0.357112,0.650696,0.493901,0.903005,0.0493163,0.535267,0.0651909,0.202481,0.186899,0.218649,0.307272,0.559143,0.189594,0.210844,0.298653,0.31983,0.981313,0.620876,0.608392,0.866963,0.134549,0.407908,0.708586,0.627573,0.180309,0.746812,0.718224,0.648636,0.559057,0.624174,0.790571,0.334901,0.272807,0.709159,0.311918,0.982709,0.426233,0.220642,0.935956,0.471627,0.865994,0.188852,0.795408,0.970307,0.534134,0.46825,0.655384,0.420481,0.329172,0.325243,0.28001,0.847661,0.509804,0.00294626,0.730041,0.628134,0.02303,0.129176,0.159571,0.93811,0.44741,0.285749,0.492323,0.79716,0.685314,0.338201,0.510385,0.629073,0.600894,0.81968,0.584365,0.150042,0.489624,0.311323,0.246284,0.751805,0.751846,0.348694,0.0826165,0.3061,0.36839,0.872161,0.00406635,0.829716,0.297461,0.744051,0.546037,0.971668,0.665958,0.848176,0.479763,0.851235,0.676975,0.293167,0.610607,0.63564,0.225792,0.793707,0.455513,0.335037,0.238901,0.945464,0.766389,0.353937,0.116238,0.771355,0.540721,0.653273,0.545947,0.70166,0.51421,0.0290669,0.0278324,0.541635,0.510705,0.273775,0.602301,0.972671,0.668171,0.878867,0.364131,0.96684,0.166892,0.580628,0.318265,0.811711,0.559917,0.774521,0.492759,0.554574,0.428159,0.709712,0.788242,0.769323,0.160515,0.685723,0.631291,0.366952,0.601335,0.0346119,0.515576,0.411115,0.865927,0.484692,0.756189,0.34136,0.655092,0.465122,0.599577,0.00935024,0.744304,0.786183,0.222214,0.857971,0.419381,0.477181,0.165791,0.831902,0.723208,0.0583558,0.91797,0.603513,0.0115083,0.777157,0.429341,0.977798,0.237647,0.392072,0.401491,0.192612,0.528068,0.295363,0.911618,0.95608,0.336563,0.700537,0.970191,0.699682,0.428808,0.8877,0.305661,0.437653,0.959752,0.732657,0.519118,0.505821,0.675211,0.335791,0.556623,0.140089,0.0885808,0.962933,0.64023,0.40314,0.624823,0.401501,0.812489,0.414895,0.620341,0.0192468,0.77526,0.81607,0.64899,0.259644,0.440728,0.53193,0.555763,0.722866,0.613604,0.652255,0.0859973,0.911382,0.852382,0.168365,0.984075,0.509696,0.0987622,0.446886,0.107476,0.418124,0.40183,0.275984,0.970932,0.493969,0.452798,0.419097,0.327725,0.6447,0.784734,0.482807,0.052178,0.0943931,0.265137,0.103248,0.164574,0.958898,0.235882,0.582608,0.00395238,0.682186,0.697927,0.518505,0.0209094,0.696852,0.208275,0.244316,0.874601,0.875503,0.0563753,0.824865,0.76828,0.83616,0.747914,0.879509,0.237874,0.546449,0.751573,0.537802,0.165105,0.597199,0.656546,0.827448,0.72535,0.95425,0.861824,0.739312,0.639862,0.275405,0.640046,0.281371,0.0132161,0.369041,0.324745,0.00892848,0.777263,0.818565,0.579559,0.569124,0.628305,0.261614,0.614751,0.53902,0.150041,0.671616,0.0474002,0.10682,0.0481982,0.0538602,0.333709,0.470798,0.775073,0.988703,0.110196,0.242097,0.22516,0.343732,0.747333,0.157051,0.882614,0.10611,0.798849,0.213075,0.084412,0.739629,0.772669,0.270094,0.153451,0.0754493,0.384885,0.388577,0.103187,0.576273,0.551306,0.999865,0.0661756,0.0837562,0.919306,0.314304,0.155897,0.130801,0.298386,0.275207,0.971066,0.387528,0.601584,0.102185,0.801813,0.903315,0.335146,0.419996,0.280425,0.25125,0.635964,0.96633,0.164232,0.264175,0.739112,0.157561,0.420994,0.277784,0.919604,0.240064,0.35017,0.919219,0.197771,0.504422,0.422083,0.118745,0.889965,0.312514,0.551591,0.76512,0.995245,0.0503886,0.938439,0.432698,0.944496,0.253467,0.362838,0.676422,0.812867,0.630913,0.847225,0.228097,0.471782,0.0746002,0.0427566,0.465711,0.0348722,0.00802827,0.838292,0.0521613,0.147189,0.984367,0.336363,0.720757,0.616451,0.641966,0.968902,0.269203,0.617957,0.119477,0.917006,0.494772,0.407989,0.263558,0.828749,0.495713,0.951128,0.689276,0.98303,0.268362,0.272061,0.299188,0.174143,0.623105,0.710868,0.378091,0.192865,0.135181,0.745992,0.937151,0.364392,0.729334,0.675172,0.620941,0.20999,0.157558,0.565101,0.264362,0.753335,0.89835,0.625905,0.0471734,0.364942,0.863545,0.568792,0.65555,0.286578,0.527806,0.785101,0.417166,0.0500126,0.329011,0.834736,0.647658,0.349674,0.364238,0.926083,0.708325,0.879001,0.956323,0.432889,0.560491,0.453743,0.164919,0.725459,0.85999,0.301401,0.845047,0.818642,0.582175,0.679005,0.16818,0.128687,0.835444,0.119831,0.181347,0.129683,0.973898,0.166763,0.302533,0.61098,0.639085,0.815825,0.849182,0.88193,0.915077,0.583308,0.120072,0.147316,0.194074,0.721109,0.138317,0.159142,0.87312,0.887427,0.250874,0.522617,0.92292,0.86217,0.00223845,0.982931,0.273441,0.278311,0.701184,0.887574,0.379661,0.9392,0.661382,0.298115,0.740791,0.551936,0.215004,0.52856,0.557983,0.208694,0.119997,0.0731153,0.595406,0.913464,0.192102,0.383997,0.71077,0.945087,0.287842,0.283631,0.464006,0.618008,0.804948,0.724454,0.270379,0.500811,0.436864,0.606275,0.78744,0.785641,0.0589364,0.0257016,0.458634,0.473261,0.0274132,0.634746,0.342523,0.00795346,0.640347,0.819267,0.274524,0.864737,0.0265042,0.631507,0.730335,0.547486,0.984991,0.446804,0.240184,0.140304,0.407398,0.896552,0.700159,0.429305,0.500139,0.55097,0.329887,0.419738,0.031382,0.390367,0.473678,0.137198,0.955456,0.651461,0.555742,0.333746,0.0797523,0.336794,0.892626,0.60308,0.348357,0.987156,0.719199,0.427652,0.216532,0.702064,0.0746927,0.809575,0.0309701,0.776578,0.789801,0.893702,0.726815,0.450987,0.666545,0.356281,0.3124,0.527107,0.998559,0.893857,0.700498,0.275376,0.312508,0.178185,0.87393,0.0657389,0.0521625,0.892236,0.691054,0.390912,0.659759,0.581906,0.496381,0.297849,0.131467,0.279734,0.306668,0.419777,0.74705,0.0483676,0.0610397,0.418878,0.240367,0.538162,0.528401,0.0821481,0.329544,0.478293,0.996303,0.365316,0.880013,0.797942,0.21805,0.541094,0.236056,0.304263,0.889735,0.308163,0.811541,0.619081,0.381288,0.709695,0.779657,0.811215,0.956665,0.264083,0.377649,0.443477,0.496944,0.573284,0.911173,0.222191,0.620092,0.863948,0.877018,0.0393296,0.523138,0.422916,0.832133,0.633394,0.383041,0.696157,0.869204,0.995902,0.847532,0.681165,0.175198,0.764726,0.211923,0.115794,0.97522,0.0704722,0.901311,0.936237,0.882109,0.128052,0.844258,0.891214,0.0485398,0.0542179,0.891751,0.54673,0.779744,0.0661936,0.0183915,0.677509,0.253441,0.99629,0.69833,0.434117,0.303718,0.555958,0.286502,0.799915,0.836628,0.930617,0.319906,0.19897,0.00377941,0.238965,0.0928836,0.974632,0.62655,0.387288,0.951326,0.6211,0.790076,0.640676,0.557928,0.83202,0.183586,0.50423,0.328246,0.312884,0.905428,0.473717,0.721128,0.278498,0.664446,0.120018,0.0978267,0.917344,0.947838,0.0283138,0.823936,0.994477,0.909363,0.0911993,0.77846,0.837655,0.315959,0.239824,0.946342,0.703694,0.096139,0.0283465,0.276919,0.915327,0.695915,0.68358,0.638499,0.0719019,0.334092,0.711013,0.567699,0.56806,0.646115,0.797603,0.581928,0.501824,0.659391,0.98127,0.102414,0.435978,0.840028,0.560683,0.131845,0.00649655,0.528014,0.119223,0.804016,0.242912,0.262797,0.0822811,0.174515,0.0741954,0.267174,0.0835266,0.523313,0.6298,0.576614,0.741103,0.378879,0.624378,0.170834,0.253166,0.260004,0.120489,0.58425,0.603647,0.224791,0.30316,0.894696,0.98582,0.0670967,0.704375,0.835668,0.841836,0.86152,0.721225,0.218018,0.514018,0.228824,0.948936,0.733941,0.111269,0.439025,0.478242,0.468729,0.62974,0.0231505,0.247455,0.969505,0.82668,0.773323,0.961114,0.167003,0.276765,0.268572,0.77755,0.780202,0.373668,0.20943,0.697383,0.700178,0.416596,0.772116,0.30546,0.580816,0.391527,0.895792,0.749895,0.611835,0.509551,0.898092,0.47833,0.504286,0.706436,0.633077,0.280126,0.744338,0.160929,0.71101,|0.802866,0.745235,0.223384,0.153142,0.210822,0.434761,0.41205,0.255149,0.161486,0.733147,0.808145,0.916365,0.0812891,0.976056,0.576164,0.466386,0.778626,0.7034,0.688219,0.932412,0.618575,0.0294273,0.104003,0.440331,0.201147,0.206235,0.632103,0.770921,0.680746,0.267887,0.68293,0.849361,0.0577354,0.263554,0.538505,0.986614,0.736927,0.294724,0.523911,0.782502,0.160645,0.298435,0.615744,0.828338,0.311829,0.740583,0.419801,0.671653,0.364173,0.932929,0.564944,0.49075,0.465538,0.721743,0.226928,0.602264,0.801301,0.486158,0.337691,0.335506,0.488935,0.468613,0.285887,0.602572,0.16394,0.186259,0.361773,0.55212,0.808379,0.505725,0.762053,0.19285,0.903335,0.467174,0.314005,0.424455,0.374938,0.531473,0.234773,0.974294,0.226431,0.548381,0.632887,0.801226,0.45267,0.39701,0.900186,0.652298,0.114829,0.746438,0.196103,0.384328,0.280696,0.425479,0.283379,0.0783396,0.519009,0.470556,0.17893,0.612491,0.539221,0.400077,0.770084,0.643604,0.237978,0.748406,0.211664,0.671981,0.0992451,0.890438,0.494564,0.0423544,0.605149,0.0696588,0.735435,0.0218231,0.784621,0.590782,0.625285,0.615996,0.146511,0.427116,0.686429,0.402644,0.910156,0.81209,0.862153,0.346311,0.0508855,0.00230223,0.85734,0.880137,0.913512,0.56168,0.871237,0.443446,0.437814,0.272625,0.0423356,0.361047,0.352193,0.877564,0.728943,0.58558,0.772631,0.802104,0.0351134,0.695714,0.821458,0.102619,0.829817,0.187752,0.693945,0.224391,0.237764,0.170178,0.381421,0.362492,0.26899,0.515707,0.246172,0.00241709,0.811884,0.258798,0.888501,0.693937,0.730484,0.529621,0.390327,0.0862463,0.629672,0.996854,0.178146,0.575817,0.961565,0.666864,0.657809,0.679764,0.355928,0.474449,0.915542,0.246131,0.403858,0.192629,0.755008,0.638674,0.439038,0.527338,0.747256,0.264304,0.465186,0.184501,0.372752,0.484865,0.62948,0.120611,0.640995,0.814672,0.53373,0.950634,0.15899,0.673398,0.801004,0.433482,0.498113,0.165468,0.106672,0.471819,0.678427,0.4254,0.676612,0.114468,0.147947,0.971163,0.777445,0.356265,0.642686,0.974341,0.845277,0.15068,0.904374,0.127675,0.965452,0.597095,0.490696,0.13255,0.915758,0.884592,0.253852,0.13868,0.299853,0.789507,0.970141,0.825205,0.952936,0.509431,0.481593,0.660415,0.8803,0.0378727,0.91399,0.349472,0.165645,0.183097,0.455106,0.320966,0.361734,0.285243,0.536369,0.560652,0.659817,0.465944,0.215966,0.617679,0.759528,0.47243,0.075078,0.0104519,0.61526,0.537488,0.302566,0.69859,0.784019,0.411518,0.428232,0.0840345,0.0582101,0.37993,0.142195,0.67502,0.765681,0.340111,0.425515,0.681155,0.535311,0.942828,0.559594,0.766957,0.962788,0.587344,0.217304,0.081494,0.550094,0.765341,0.0979944,0.736024,0.0741565,0.368757,0.992985,0.992193,0.695061,0.770768,0.202475,0.664204,0.19815,0.154064,0.992372,0.875025,0.266691,0.922126,0.923956,0.592783,0.489159,0.94332,0.644331,0.534253,0.0621686,0.976057,0.317673,0.263285,0.376358,0.816948,0.887584,0.731694,0.472633,0.0213266,0.636391,0.863741,0.0245655,0.626703,0.235913,0.0334699,0.281601,0.00667721,0.687405,0.72566,0.883172,0.732839,0.0379166,0.19154,0.351909,0.513121,0.236046,0.0270009,0.246467,0.581302,0.598662,0.807048,0.770723,0.95767,0.65528,0.7331,0.544879,0.446486,0.48756,0.652738,0.450073,0.948089,0.834678,0.932431,0.711004,0.372265,0.289995,0.354903,0.428147,0.0856143,0.290157,0.897806,0.213521,0.48959,0.431357,0.528035,0.649085,0.152035,0.313867,0.404183,0.223053,0.85596,0.7197,0.708344,0.917466,0.756402,0.402484,0.171617,0.0501863,0.0666523,0.317926,0.265308,0.659027,0.0214864,0.598652,0.74118,0.156004,0.693149,0.830433,0.747351,0.508475,0.530941,0.606853,0.0155881,0.633784,0.209551,0.0290604,0.832374,0.370183,0.335047,0.200507,0.237426,0.150395,0.921175,0.27347,0.872445,0.698625,0.0118927,0.450366,0.946269,0.833225,0.75761,0.190709,0.742501,0.797097,0.49046,0.207753,0.458688,0.919089,0.927058,0.265033,0.883356,0.574756,0.119825,0.0386527,0.459323,0.590959,0.72524,0.244361,0.929348,0.168686,0.811727,0.810102,0.258628,0.0724287,0.163502,0.834802,0.145806,0.466902,0.921242,0.583765,0.755125,0.45711,0.684991,0.086938,0.923486,0.588679,0.680574,0.216162,0.532185,0.595234,0.801461,0.649963,0.351759,0.0821704,0.4943,0.231504,0.944126,0.368725,0.739312,0.504638,0.273362,0.345511,0.379222,0.726553,0.31217,0.110881,0.544515,0.26079,0.84055,0.706548,0.667593,0.498434,0.548166,0.640307,0.539498,0.167667,0.180305,0.328925,0.285427,0.984613,0.706774,0.293244,0.688335,0.998779,0.0732399,0.219802,0.996204,0.0496129,0.588477,0.238163,0.113109,0.144943,0.6445,0.569988,0.790697,0.71634,0.187484,0.924528,0.0303841,0.826273,0.93466,0.365809,0.182211,0.388517,0.339363,0.926006,0.152063,0.341736,0.418448,0.015173,0.276844,0.000159144,0.168151,0.575658,0.289531,0.0943491,0.918988,0.76029,0.545224,0.835629,0.0520436,0.782925,0.458279,0.956417,0.779807,0.648031,0.659346,0.159337,0.541549,0.206511,0.690726,0.649067,0.245972,0.957758,0.247585,0.49284,0.906108,0.322244,0.943468,0.700461,0.953647,0.89424,0.506607,0.40021,0.606032,0.495395,0.339318,0.736113,0.760989,0.888106,0.881176,0.0913271,0.955616,0.665153,0.52526,0.270533,0.850516,0.378133,0.361173,0.0336534,0.447725,0.674919,0.0537915,0.160267,0.230072,0.703326,0.753753,0.266129,0.744381,0.496385,0.191428,0.906731,0.405524,0.235197,0.823406,0.429862,0.750104,0.856352,0.040926,0.16636,0.954142,0.923362,0.578747,0.713552,0.209241,0.940164,0.349706,0.856239,0.127374,0.753538,0.550808,0.720685,0.661246,0.0084579,0.637602,0.518391,0.0911807,0.295942,0.300042,0.776203,0.137607,0.773034,0.972338,0.360497,0.870416,0.736612,0.48936,0.322027,0.0943054,0.507119,0.542067,0.825818,0.30454,0.421779,0.752196,0.725891,0.939463,0.949969,0.171714,0.387375,0.190032,0.90898,0.89338,0.272933,0.195904,0.316901,0.218707,0.818865,0.585574,0.0931568,0.965801,0.0468349,0.0714056,0.81112,0.415511,0.670192,0.684209,0.775965,0.710192,0.692605,0.718689,0.906255,0.937279,0.635584,0.202023,0.933717,0.23375,0.221437,0.668232,0.312292,0.78603,0.949693,0.0745953,0.0344296,0.565667,0.0302165,0.469272,0.495166,0.995842,0.985926,0.624395,0.128631,0.315833,0.0872937,0.0287956,0.240903,0.315361,0.380886,0.0764574,0.466215,0.365539,0.306575,0.79782,0.561321,0.356314,0.319419,0.365659,0.584609,0.62455,0.841205,0.987477,0.169035,0.0772566,0.888471,0.0754082,0.748632,0.522196,0.681644,0.923383,0.230526,0.984734,0.667045,0.951928,0.606199,0.155324,0.030131,0.83211,0.153372,0.975907,0.107992,0.825585,0.42255,0.00963688,0.329763,0.463207,0.5017,0.37459,0.370054,0.639381,0.359909,0.709518,0.229342,0.496739,0.376147,0.912367,0.290563,0.281962,0.007056,0.152453,0.802387,0.0394826,0.855557,0.0425963,0.487066,0.723427,0.728147,0.542608,0.366703,0.803726,0.212107,0.469288,0.865962,0.369755,0.538573,0.375003,0.303657,0.436748,0.877146,0.266715,0.426964,0.223908,0.494599,0.570151,0.664928,0.215073,0.569011,0.201649,0.322298,0.935892,0.483646,0.43714,0.94123,0.184304,0.685887,0.36875,0.185479,0.446193,0.585439,0.67485,0.33425,0.0754384,0.0494391,0.665419,0.621022,0.974627,0.166712,0.293795,0.470298,0.13698,0.919029,0.377277,0.999944,0.500983,0.237585,0.875325,0.0513096,0.326583,0.560871,0.8008,0.305312,0.65033,0.455003,0.845103,0.294199,0.401604,0.534014,0.995384,0.254871,0.213509,0.529752,0.445129,0.302701,0.0864677,0.182288,0.943476,0.0998985,0.560876,0.0604416,0.293157,0.491487,0.521847,0.0228574,0.511033,0.670368,0.828205,0.798525,0.00469697,0.166607,0.978511,0.428566,0.954135,0.949026,0.646672,0.03506,0.440077,0.0847411,0.117502,0.117159,0.840952,0.912837,0.812653,0.634458,0.803167,0.312442,0.962949,0.773388,0.0525914,0.50968,0.0349591,0.40184,0.109078,0.393845,0.953126,0.661024,0.596479,0.904957,0.980728,0.49781,0.902775,0.671077,0.998463,0.586887,0.359116,0.341797,0.967663,0.0875058,0.733082,0.642267,0.497272,0.242852,0.300977,0.559017,0.382307,0.432127,0.956412,0.382649,0.567111,0.744931,0.386919,0.605737,0.794766,0.885645,0.357885,0.195141,0.49289,0.315612,0.295974,0.060366,0.411333,0.899371,0.652819,0.272532,0.465426,0.0552915,0.58113,0.284622,0.140027,0.0713699,0.554404,0.440336,0.509252,0.711913,0.881361,0.928674,0.224185,0.174791,0.229227,0.113358,0.482601,0.729919,0.649961,0.0637364,0.978219,0.587292,0.471706,0.767257,0.232949,0.483968,0.263267,0.799581,0.746434,0.343986,0.0913097,0.0488907,0.0803244,0.198685,0.242686,0.707888,0.240778,0.87476,0.47676,0.886593,0.908949,0.304038,0.00946671,0.559627,0.224347,0.717234,0.27285,0.159256,0.282936,0.250566,0.631633,0.248427,0.256215,0.434421,0.874518,0.243613,0.970581,0.98971,0.937255,0.940375,0.634119,0.22197,0.193241,0.878684,0.906222,0.0889747,0.959976,0.321398,0.529728,0.163109,0.734477,0.298092,0.218159,0.930886,0.957091,0.96522,0.868525,0.265959,0.475265,0.607568,0.5659,0.227718,0.22232,0.44333,0.579965,0.101544,0.748417,0.644617,0.189648,0.0296642,0.801194,0.276097,0.282031,0.980831,0.361264,0.234725,0.781988,0.547728,0.779242,0.330195,0.579092,0.395909,0.789542,0.553019,0.723919,0.763882,0.119425,0.281901,0.311072,0.454692,0.600744,0.847552,0.88403,0.886675,0.033285,0.848345,0.554271,0.840792,0.0861286,0.154313,0.833084,0.31793,0.26608,0.356555,0.0304642,0.666682,0.595958,0.312589,0.739779,0.418431,0.240606,|0.945042,0.694305,0.0287548,0.522757,0.700137,0.0450194,0.784805,0.77133,0.173696,0.275633,0.758801,0.408938,0.683253,0.666608,0.170859,0.109435,0.565693,0.646589,0.759628,0.551474,0.910263,0.322203,0.348787,0.142724,0.0983716,0.24367,0.26685,0.892717,0.0329487,0.431424,0.686989,0.1708,0.790889,0.0773844,0.459303,0.539885,0.491132,0.718269,0.691425,0.582001,0.0380518,0.428171,0.814312,0.220709,0.225431,0.317273,0.654822,0.350991,0.58729,0.928417,0.666518,0.366366,0.287486,0.411191,0.335266,0.254602,0.534999,0.719936,0.998042,0.27474,0.8287,0.283677,0.563446,0.888503,0.255437,0.856739,0.491459,0.255985,0.532926,0.0583666,0.63868,0.454853,0.10797,0.18607,0.369057,0.224315,0.694438,0.0525605,0.520514,0.40865,0.591648,0.899504,0.0435064,0.314281,0.426348,0.670004,0.455603,0.573915,0.956198,0.569909,0.0571597,0.423403,0.0152707,0.0664337,0.991643,0.83628,0.317927,0.704014,0.52208,0.743932,0.173384,0.393022,0.0653903,0.373565,0.12781,0.508027,0.449326,0.251046,0.538267,0.169435,0.673841,0.830841,0.224369,0.87486,0.0193185,0.325807,0.879699,0.336025,0.489873,0.835145,0.510665,0.384324,0.345359,0.293002,0.286586,0.874316,0.747128,0.783756,0.543358,0.432326,0.662026,0.925373,0.873,0.518781,0.691336,0.0793676,0.503916,0.681947,0.538666,0.400249,0.479739,0.0149983,0.748738,0.411127,0.041293,0.359457,0.683194,0.735179,0.162612,0.563346,0.274868,0.622322,0.707247,0.987391,0.479062,0.911258,0.515693,0.60943,0.619204,0.483047,0.579007,0.698712,0.194743,0.391779,0.992201,0.427123,0.195268,0.197664,0.603358,0.109404,0.332039,0.983038,0.311147,0.508179,0.632845,0.885237,0.308379,0.520687,0.499261,0.503296,0.558316,0.121244,0.821342,0.6478,0.226562,0.564659,0.493364,0.284077,0.52432,0.305011,0.517857,0.503686,0.854788,0.998734,0.415786,0.559199,0.319646,0.517282,0.693048,0.116475,0.584307,0.391644,0.638748,0.809173,0.628336,0.892912,0.868293,0.283671,0.490145,0.976478,0.874275,0.797509,0.818649,0.704967,0.427366,0.86901,0.769377,0.214544,0.539212,0.579068,0.154622,0.592992,0.864093,0.673498,0.491035,0.992872,0.861947,0.362985,0.348388,0.59206,0.388546,0.627843,0.334127,0.0819982,0.27054,0.804025,0.382702,0.578223,0.818161,0.132922,0.402065,0.932519,0.868852,0.533096,0.0622894,0.721065,0.664348,0.191699,0.418396,0.426976,0.335588,0.0884317,0.244591,0.776913,0.439032,0.709369,0.47129,0.271489,0.488308,0.854532,0.318172,0.83455,0.313451,0.649035,0.508228,0.105456,0.953105,0.354437,0.538769,0.318235,0.533778,0.363407,0.0880062,0.938136,0.0306,0.58576,0.449764,0.885942,0.0366861,0.207532,0.420921,0.47646,0.714977,0.731472,0.570948,0.385045,0.35306,0.00592977,0.638873,0.503109,0.106479,0.60914,0.0873585,0.024464,0.570974,0.530717,0.549473,0.42537,0.870971,0.372295,0.588212,0.629742,0.153265,0.612692,0.229995,0.677182,0.408389,0.806027,0.150845,0.0974498,0.18678,0.356608,0.80365,0.590655,0.153413,0.821572,0.000720799,0.564167,0.328111,0.358964,0.540517,0.121444,0.162499,0.948037,0.0922531,0.334247,0.41794,0.0950443,0.189294,0.171154,0.282336,0.365535,0.750674,0.286543,0.369759,0.362324,0.619219,0.967423,0.0992189,0.806857,0.953535,0.0827904,0.310628,0.374851,0.913256,0.581431,0.326706,0.147005,0.443977,0.355198,0.76502,0.214815,0.191435,0.330119,0.194785,0.329391,0.0525942,0.380014,0.00126529,0.549533,0.0015685,0.938572,0.861269,0.689427,0.164806,0.290959,0.208772,0.203951,0.0779963,0.61422,0.114368,0.989305,0.514982,0.926519,0.398962,0.0325868,0.839587,0.921017,0.338275,0.0780746,0.435642,0.693604,0.777911,0.377229,0.467897,0.389541,0.607255,0.638048,0.857787,0.472681,0.577171,0.971365,0.178803,0.542717,0.0458983,0.0542678,0.453138,0.371391,0.854218,0.266624,0.502142,0.901594,0.575777,0.98313,0.119329,0.606062,0.956447,0.247703,0.314231,0.236027,0.0202448,0.504057,0.240212,0.818532,0.220925,0.426556,0.863617,0.654135,0.0735935,0.769185,0.123093,0.360202,0.954224,0.241004,0.0724996,0.629194,0.578847,0.726591,0.943223,0.0968414,0.448701,0.500147,0.869642,0.4766,0.376358,0.924604,0.268021,0.0212575,0.411045,0.739966,0.577684,0.845631,0.970176,0.137972,0.704739,0.63621,0.599875,0.0295473,0.143087,0.1826,0.636257,0.293988,0.567331,0.608318,0.951268,0.00177133,0.024201,0.756346,0.500403,0.761606,0.811998,0.103843,0.0376011,0.353889,0.388694,0.560104,0.339662,0.18707,0.651234,0.720249,0.518128,0.792077,0.0853359,0.724006,0.516912,0.292442,0.807656,0.629367,0.332424,0.329995,0.53173,0.93618,0.19691,0.461403,0.362215,0.936009,0.923392,0.192002,0.5588,0.825008,0.64155,0.882967,0.707144,0.0720646,0.270316,0.31941,0.560684,0.0533282,0.963292,0.155594,0.511157,0.0781112,0.0632349,0.422095,0.94216,0.337756,0.84695,0.385732,0.216418,0.721792,0.851157,0.971962,0.903987,0.570334,0.065616,0.738795,0.227137,0.377575,0.50605,0.254384,0.869711,0.457591,0.370751,0.249524,0.50557,0.763351,0.882738,0.909513,0.396338,0.021272,0.403506,0.098604,0.443818,0.780128,0.6099,0.639626,0.1193,0.115647,0.592272,0.315783,0.245557,0.079187,0.96165,0.581865,0.481596,0.475836,0.855124,0.172704,0.409456,0.611875,0.368816,0.345151,0.422488,0.547182,0.622555,0.312716,0.576815,0.719333,0.57918,0.161459,0.646297,0.779452,0.710993,0.346867,0.298891,0.538076,0.795451,0.937143,0.906952,0.451971,0.992882,0.835298,0.845274,0.961567,0.0280368,0.735477,0.482714,0.484865,0.876069,0.250762,0.35949,0.230573,0.907455,0.911661,0.985831,0.33567,0.99589,0.828071,0.00684619,0.848022,0.696201,0.181936,0.254851,0.445478,0.00280589,0.168316,0.109147,0.427139,0.225558,0.138539,0.433731,0.814067,0.964975,0.47929,0.564977,0.963643,0.675699,0.685613,0.975207,0.0913159,0.645982,0.702812,0.244806,0.651242,0.0674667,0.815981,0.419254,0.279898,0.283347,0.0386859,0.125898,0.699422,0.57959,0.134061,0.561122,0.758185,0.495681,0.421777,0.164018,0.125413,0.702515,0.845733,0.427847,0.242311,0.0578308,0.273041,0.141778,0.0156322,0.0380226,0.896478,0.784718,0.549143,0.22993,0.291053,0.149331,0.213255,0.260451,0.700659,0.130782,0.480836,0.970745,0.29436,0.939231,0.326046,0.849929,0.753292,0.325594,0.0146863,0.695288,0.815373,0.712977,0.949706,0.667025,0.0491189,0.265833,0.702319,0.380133,0.528275,0.133905,0.570522,0.754851,0.0224823,0.699851,0.216191,0.677045,0.292158,0.67997,0.302007,0.254833,0.543621,0.763256,0.0179923,0.862713,0.324855,0.48658,0.222767,0.28607,0.032435,0.298285,0.996115,0.768722,0.921374,0.293196,0.297747,0.438628,0.8385,0.521211,0.572028,0.598344,0.901406,0.907918,0.494586,0.0945687,0.226287,0.292033,0.589532,0.0164726,0.656041,0.333173,0.0867697,0.150877,0.265702,0.396212,0.0380923,0.487893,0.673829,0.464097,0.717936,0.0578954,0.892975,0.59398,0.377142,0.339135,0.18805,0.565508,0.718215,0.403688,0.643014,0.893642,0.784071,0.13851,0.101075,0.210399,0.391321,0.794169,0.450219,0.723191,0.180126,0.64437,0.941673,0.55218,0.602564,0.0918476,0.637198,0.685846,0.662063,0.389757,0.598405,0.471269,0.00704229,0.36664,0.190705,0.0757233,0.0553329,0.228583,0.0437011,0.387952,0.51559,0.660171,0.358419,0.573723,0.104792,0.114152,0.5113,0.302831,0.34398,0.537364,0.296028,0.40422,0.375442,0.957787,0.0750033,0.0254256,0.18195,0.449347,0.76223,0.37185,0.261949,0.863086,0.630638,0.19211,0.186934,0.519936,0.341959,0.407674,0.0197799,0.503983,0.810897,0.830893,0.470822,0.467283,0.0313005,0.283834,0.48056,0.0482594,0.0600814,0.972808,0.884951,0.606191,0.209207,0.706666,0.997509,0.701521,0.780837,0.717834,0.440051,0.107926,0.815932,0.421694,0.550762,0.433658,0.723585,0.285888,0.697406,0.240814,0.431657,0.386949,0.144048,0.349028,0.172688,0.129658,0.261549,0.0441751,0.53115,0.763258,0.308015,0.635427,0.55723,0.113735,0.871314,0.713262,0.336556,0.396867,0.538852,0.433334,0.640963,0.636016,0.157634,0.679401,0.675871,0.714383,0.276406,0.0433669,0.847769,0.311981,0.730556,0.894248,0.606582,0.050868,0.822972,0.967605,0.211666,0.0171826,0.792859,0.892985,0.617351,0.766401,0.589363,0.44708,0.690213,0.493122,0.704752,0.649721,0.217225,0.824131,0.218426,0.0182101,0.201052,0.557297,0.343917,0.882536,0.951852,0.944361,0.0871546,0.357212,0.494347,0.626617,0.158546,0.47599,0.490073,0.549863,0.035412,0.295471,0.940036,0.528846,0.807687,0.954908,0.345168,0.409267,0.527858,0.242825,0.715677,0.300436,0.974456,0.735859,0.515498,0.361711,0.668225,0.27946,0.0790494,0.555932,0.32812,0.3425,0.40234,0.450565,0.166919,0.381886,0.876632,0.20776,0.466762,0.632269,0.495547,0.0246512,0.652291,0.737576,0.171655,0.335275,0.810558,0.35506,0.349566,0.24604,0.624238,0.94203,0.2031,0.40243,0.289884,0.209225,0.383429,0.199299,0.835428,0.492972,0.646251,0.394539,0.508381,0.296406,0.588303,0.320409,0.822371,0.0861573,0.288442,0.593124,0.342021,0.769694,0.157514,0.329774,0.166891,0.395657,0.5696,0.751418,0.0706246,0.91309,0.63745,0.47265,0.0640967,0.088111,0.653243,0.858082,0.939102,0.883273,0.812254,0.534245,0.889571,0.825464,0.80796,0.78533,0.545735,0.462897,0.452046,0.990592,0.0989887,0.938396,0.608742,0.918261,0.168088,0.11567,0.0761652,0.755144,0.482412,0.896381,0.374646,0.0445382,0.404523,0.389024,0.279561,0.889914,0.723647,0.217573,0.454543,0.142448,0.36733,0.395036,0.86926,0.459227,0.64748,0.554673,0.405425,0.353935,0.0967601,0.0785633,0.223658,|0.610263,0.246549,0.432059,0.752666,0.910408,0.163036,0.858238,0.644986,0.995322,0.0710481,0.218662,0.760063,0.36805,0.303915,0.968841,0.160324,0.03782,0.00489461,0.453313,0.0116524,0.344272,0.326681,0.0808845,0.89207,0.170959,0.528829,0.351306,0.321199,0.954184,0.550503,0.537121,0.0538558,0.411661,0.298894,0.717619,0.209635,0.676553,0.481291,0.923634,0.146866,0.397457,0.759052,0.434635,0.194739,0.741622,0.628805,0.741218,0.00418735,0.0537696,0.754818,0.0506898,0.494247,0.213912,0.482576,0.245015,0.721607,0.638058,0.782182,0.182687,0.235935,0.427749,0.639517,0.540791,0.611481,0.961637,0.0417768,0.31366,0.126756,0.124109,0.327285,0.747281,0.800657,0.362328,0.0975116,0.873115,0.31559,0.692682,0.486486,0.950651,0.0421616,0.81453,0.665696,0.299617,0.552355,0.593947,0.575397,0.0915367,0.760225,0.98503,0.800147,0.000569999,0.497372,0.608239,0.604395,0.218966,0.93738,0.491264,0.95047,0.100082,0.0424583,0.525585,0.983962,0.535664,0.133797,0.301951,0.991502,0.066152,0.518603,0.349167,0.994384,0.24481,0.165228,0.14394,0.34785,0.939724,0.0336901,0.352718,0.113572,0.951776,0.732166,0.985257,0.302668,0.0518743,0.537475,0.257647,0.0493525,0.849835,0.442679,0.342785,0.595838,0.431016,0.476996,0.556175,0.713107,0.231443,0.731384,0.746636,0.874267,0.613094,0.048412,0.395039,0.697611,0.925817,0.350972,0.29925,0.00912213,0.957967,0.226549,0.843852,0.795273,0.278143,0.368692,0.940898,0.354576,0.345996,0.864591,0.754842,0.630112,0.248537,0.0833692,0.984039,0.170605,0.485593,0.00839025,0.730816,0.602489,0.877675,0.852793,0.544822,0.774069,0.591012,0.542027,0.850361,0.336976,0.165869,0.197919,0.884093,0.954262,0.745384,0.939692,0.860654,0.99796,0.802004,0.700976,0.679425,0.011991,0.952255,0.944973,0.231455,0.0698692,0.758999,0.706653,0.27279,0.520186,0.91912,0.576512,0.305059,0.0203183,0.454218,0.854428,0.968446,0.99674,0.322691,0.367761,0.90167,0.970962,0.480974,0.623044,0.810239,0.50327,0.0320635,0.0854365,0.834497,0.375368,0.671217,0.243709,0.976698,0.863857,0.92924,0.432448,0.274486,0.5162,0.0787107,0.593362,0.62909,0.22494,0.717094,0.172162,0.654781,0.29254,0.559571,0.230648,0.224838,0.549474,0.174679,0.168895,0.952516,0.00586665,0.326717,0.469868,0.631413,0.384494,0.153325,0.755029,0.936225,0.935998,0.936732,0.340137,0.171193,0.411471,0.80758,0.730944,0.482705,0.970531,0.060289,0.902798,0.939715,0.789677,0.89805,0.0797547,0.279534,0.222154,0.949138,0.467755,0.906305,0.281724,0.253183,0.254064,0.505173,0.0733511,0.312611,0.627694,0.0190647,0.691064,0.71081,0.477297,0.839432,0.9154,0.61568,0.537554,0.355352,0.892204,0.926676,0.114037,0.393816,0.735211,0.854271,0.441789,0.357561,0.38507,0.453474,0.0403721,0.444902,0.441698,0.9893,0.250845,0.984825,0.102371,0.422459,0.467309,0.185801,0.263987,0.761269,0.157104,0.813837,0.677481,0.744392,0.428161,0.00275356,0.994319,0.955644,0.626493,0.962575,0.558151,0.0692856,0.191124,0.385899,0.38048,0.176068,0.0285615,0.88105,0.540494,0.583749,0.363167,0.786632,0.529516,0.626931,0.197443,0.335807,0.827507,0.541029,0.518074,0.397981,0.829953,0.594076,0.821329,0.190364,0.652043,0.433469,0.938818,0.839229,0.347136,0.50939,0.585509,0.225946,0.458104,0.0513798,0.815656,0.819732,0.340617,0.423373,0.633313,0.51192,0.424829,0.870509,0.912115,0.279852,0.377378,0.788996,0.96159,0.483991,0.807697,0.187592,0.605093,0.11359,0.779605,0.166969,0.896866,0.424766,0.372344,0.957225,0.952282,0.174212,0.465629,0.978579,0.526498,0.534599,0.175847,0.677883,0.736782,0.940607,0.765633,0.433222,0.0890841,0.127663,0.0890725,0.432848,0.0119841,0.0459546,0.153258,0.228563,0.975684,0.889185,0.527524,0.336304,0.858169,0.44072,0.206622,0.0615436,0.543406,0.356308,0.634424,0.0867927,0.491689,0.811764,0.333985,0.84461,0.908088,0.307196,0.452167,0.598248,0.0485688,0.466614,0.433228,0.606745,0.278925,0.303217,0.538668,0.43824,0.582884,0.126494,0.465286,0.875297,0.787872,0.978313,0.810506,0.863872,0.359486,0.514571,0.594422,0.616974,0.756166,0.686722,0.746582,0.927411,0.716735,0.132038,0.905451,0.917147,0.321036,0.531082,0.486159,0.6638,0.0913315,0.843558,0.52525,0.911908,0.230343,0.164274,0.739324,0.227845,0.0696762,0.462024,0.851897,0.284883,0.526536,0.441408,0.497881,0.497065,0.7715,0.574784,0.79542,0.151141,0.921936,0.667323,0.458214,0.763793,0.665612,0.967807,0.839275,0.873637,0.521649,0.779689,0.548206,0.826686,0.144166,0.226832,0.33303,0.864414,0.986887,0.394249,0.393124,0.206967,0.412175,0.57138,0.681266,0.883423,0.304623,0.34205,0.293919,0.262907,0.117016,0.523889,0.589984,0.788622,0.562212,0.0273188,0.461478,0.0619525,0.944554,0.550085,0.529901,0.925853,0.356341,0.775179,0.150993,0.872171,0.690849,0.794891,0.0760193,0.265523,0.306728,0.25195,0.285945,0.854634,0.394712,0.467415,0.256184,0.215606,0.620541,0.436772,0.216213,0.619828,0.0454015,0.388851,0.0553482,0.389595,0.283548,0.114184,0.726621,0.931595,0.786083,0.169889,0.687074,0.531329,0.220701,0.982584,0.266931,0.902001,0.0281112,0.886688,0.989139,0.266419,0.218705,0.531182,0.802911,0.0144254,0.419672,0.406939,0.777244,0.192709,0.719677,0.598647,0.405957,0.760534,0.00546718,0.827042,0.906826,0.888738,0.868113,0.282914,0.521053,0.130316,0.279012,0.898992,0.57785,0.474064,0.1721,0.39282,0.105116,0.970304,0.113991,0.874089,0.0898393,0.75708,0.375889,0.0561168,0.995518,0.6301,0.979755,0.950032,0.114596,0.416663,0.406876,0.997936,0.746423,0.504916,0.870125,0.254358,0.419406,0.0714639,0.629097,0.810872,0.504503,0.398282,0.834482,0.988031,0.781438,0.53506,0.342282,0.441453,0.0287133,0.931819,0.17201,0.529147,0.762565,0.500176,0.273628,0.854991,0.415907,0.400994,0.538107,0.512041,0.807674,0.345536,0.0727882,0.0271161,0.233786,0.309121,0.612945,0.588584,0.54152,0.694177,0.223897,0.128814,0.928771,0.274939,0.188522,0.690659,0.492339,0.467345,0.015815,0.0752236,0.792377,0.410288,0.504796,0.666258,0.214173,0.362631,0.168327,0.830415,0.548934,0.704899,0.647477,0.688933,0.531204,0.469604,0.170968,0.0531555,0.992999,0.117199,0.424047,0.87526,0.126552,0.297344,0.177798,0.860883,0.712296,0.649937,0.63416,0.853898,0.107596,0.260786,0.135857,0.585862,0.249115,0.215584,0.890865,0.86567,0.480438,0.183074,0.0677618,0.934845,0.994804,0.743811,0.492176,0.826941,0.772632,0.164727,0.885598,0.913882,0.804647,0.139285,0.0930561,0.4145,0.319748,0.30273,0.250168,0.115281,0.567545,0.819535,0.757628,0.74892,0.445104,0.162191,0.995277,0.942631,0.157618,0.623022,0.672495,0.883044,0.779579,0.0868825,0.265095,0.292612,0.460115,0.196966,0.439553,0.131333,0.456439,0.281166,0.201791,0.958634,0.506969,0.833314,0.442604,0.218751,0.286172,0.0538464,0.6878,0.951864,0.255928,0.385543,0.576575,0.947035,0.764928,0.936447,0.0145742,0.71865,0.559313,0.71782,0.86375,0.150978,0.164597,0.344117,0.597338,0.294455,0.395473,0.684077,0.152488,0.778969,0.337903,0.596709,0.973669,0.750261,0.5525,0.598993,0.520613,0.0687879,0.5226,0.989714,0.301792,0.93476,0.62268,0.287898,0.724949,0.412825,0.380255,0.274735,0.776141,0.0431156,0.291293,0.557297,0.601381,0.178147,0.624987,0.762897,0.0786502,0.930392,0.532791,0.918175,0.807169,0.683942,0.628428,0.285125,0.249115,0.841451,0.885375,0.763283,0.57794,0.170884,0.0185406,0.798579,0.73648,0.342566,0.609783,0.730794,0.192352,0.0752811,0.879238,0.337838,0.872526,0.902757,0.856921,0.318358,0.838248,0.773982,0.496335,0.603269,0.956979,0.754671,0.846451,0.109653,0.458834,0.467751,0.326009,0.652018,0.630028,0.295808,0.153146,0.018717,0.715761,0.389451,0.185374,0.0353271,0.843464,0.780198,0.19766,0.835644,0.12374,0.849588,0.852342,0.689441,0.136609,0.420464,0.124694,0.65828,0.922119,0.622884,0.263129,0.424674,0.755881,0.963308,0.968761,0.99678,0.780454,0.0774933,0.379922,0.929988,0.695335,0.876682,0.0131243,0.677636,0.0542544,0.052786,0.00755966,0.985715,0.0928212,0.925025,0.992663,0.193658,0.519094,0.352953,0.848798,0.114582,0.00400001,0.830223,0.871203,0.547919,0.020458,0.153144,0.47259,0.421905,0.267552,0.49421,0.451168,0.367787,0.305709,0.809041,0.432902,0.842668,0.850883,0.876147,0.378107,0.224624,0.527052,0.836216,0.670021,0.560518,0.501623,0.287042,0.356678,0.314566,0.0117651,0.823308,0.603319,0.229616,0.782326,0.716369,0.138578,0.136015,0.0675669,0.796539,0.246033,0.352327,0.697073,0.379921,0.554837,0.0944617,0.211454,0.65447,0.127888,0.249002,0.891955,0.710607,0.151351,0.365634,0.550066,0.0297641,0.24122,0.105331,0.382514,0.529652,0.620208,0.0200659,0.973939,0.547454,0.49481,0.401135,0.122461,0.298362,0.882534,0.720308,0.935974,0.123811,0.964898,0.389348,0.622883,0.289994,0.396295,0.78124,0.660638,0.736138,0.372412,0.46983,0.177611,0.166526,0.387442,0.446798,0.430011,0.669308,0.0775236,0.481281,0.458032,0.732399,0.994297,0.0770713,0.736359,0.0838742,0.94929,0.83073,0.606772,0.35704,0.51725,0.562757,0.733239,0.406612,0.502518,0.235084,0.0508116,0.940966,0.88461,0.416937,0.011116,0.640811,0.667853,0.471904,0.528117,0.499333,0.183186,0.0709052,0.681932,0.0562838,0.810679,0.854193,0.616418,0.493734,0.7133,0.170079,0.234306,0.174954,0.259849,0.212461,0.407174,0.208262,0.427962,0.527515,0.135079,0.655177,0.878735,0.00336266,0.304187,0.733542,0.87479,0.539908,0.291455,0.379355,0.948706,0.124404,0.267588,|0.305641,0.62748,0.958994,0.333003,0.425909,0.962874,0.077378,0.665452,0.523566,0.180045,0.442506,0.867636,0.117364,0.725169,0.961073,0.93642,0.6692,0.882811,0.086596,0.212367,0.0588683,0.960928,0.423946,0.939607,0.787818,0.940656,0.69716,0.275962,0.903561,0.221454,0.246738,0.354093,0.708889,0.17645,0.0295539,0.753267,0.458267,0.80943,0.505163,0.579867,0.937844,0.74096,0.367728,0.889226,0.550526,0.392363,0.438998,0.494348,0.665762,0.974128,0.33284,0.215261,0.673662,0.13892,0.494574,0.748971,0.442645,0.341913,0.289341,0.329963,0.524548,0.471763,0.657595,0.41601,0.545144,0.440117,0.436551,0.565102,0.182236,0.267964,0.866789,0.556483,0.207615,0.208637,0.0653349,0.130365,0.338434,0.0465145,0.33324,0.686253,0.246797,0.703435,0.754212,0.0867859,0.367858,0.600218,0.736994,0.5284,0.212288,0.64748,0.854834,0.448357,0.161855,0.464935,0.194956,0.247612,0.822255,0.913101,0.383415,0.997127,0.576709,0.979078,0.749266,0.641534,0.0321566,0.573058,0.708035,0.187309,0.801368,0.89253,0.659354,0.314451,0.409005,0.274349,0.541792,0.81602,0.762476,0.11414,0.914541,0.485862,0.483498,0.914782,0.0680698,0.28532,0.927015,0.833671,0.228309,0.551922,0.061758,0.584456,0.466782,0.396736,0.481598,0.468224,0.198993,0.352972,0.480733,0.615089,0.372475,0.319779,0.747278,0.870193,0.475553,0.222558,0.198769,0.365155,0.606902,0.15247,0.143754,0.671525,0.500363,0.0196739,0.682775,0.92314,0.859208,0.907851,0.211618,0.41382,0.421978,0.55155,0.837576,0.647982,0.187836,0.832657,0.0620624,0.990929,0.442286,0.257075,0.984683,0.366854,0.277705,0.821625,0.0575359,0.893409,0.122011,0.761239,0.934817,0.834227,0.857442,0.918879,0.0230844,0.743692,0.414115,0.0340259,0.405114,0.288541,0.0714535,0.984942,0.544086,0.985868,0.392438,0.557115,0.256877,0.123225,0.395911,0.88498,0.532229,0.126536,0.54536,0.194682,0.347364,0.465623,0.448546,0.909592,0.309615,0.387122,0.529984,0.697034,0.895172,0.289445,0.416968,0.876847,0.76173,0.889075,0.398433,0.0368356,0.613799,0.64613,0.927716,0.469753,0.0530462,0.116109,0.0605479,0.436497,0.8028,0.291761,0.24914,0.831556,0.979148,0.257694,0.885183,0.964125,0.912125,0.42446,0.512851,0.164117,0.0334141,0.969941,0.34537,0.504834,0.616571,0.64765,0.837355,0.277421,0.0650447,0.428029,0.0220688,0.433664,0.734061,0.559662,0.774711,0.191679,0.711149,0.343618,0.789442,0.416494,0.903058,0.855686,0.809117,0.0518967,0.725643,0.466819,0.369339,0.483979,0.0503439,0.576762,0.77561,0.159611,0.121817,0.112465,0.840078,0.456224,0.803622,0.00521857,0.109372,0.431946,0.550659,0.882076,0.777107,0.372685,0.30775,0.475197,0.550687,0.9871,0.870428,0.265143,0.645224,0.0666828,0.227984,0.846747,0.966999,0.00638241,0.537183,0.768276,0.914657,0.601869,0.373567,0.415865,0.0462877,0.904181,0.392447,0.159653,0.840272,0.818056,0.928846,0.129757,0.302503,0.771077,0.962646,0.596768,0.66547,0.0661033,0.822388,0.553272,0.49366,0.823188,0.677182,0.822918,0.593111,0.396456,0.616548,0.342568,0.585434,0.516372,0.0551885,0.710308,0.174041,0.107461,0.338914,0.0313328,0.419137,0.747943,0.596599,0.372761,0.340522,0.190122,0.530681,0.593612,0.82763,0.626229,0.00429994,0.577982,0.367342,0.473995,0.258178,0.362847,0.884882,0.859508,0.139955,0.867682,0.534945,0.40978,0.166292,0.194104,0.19447,0.733568,0.356189,0.714486,0.156034,0.814343,0.849573,0.648292,0.899654,0.380017,0.695077,0.251501,0.0650346,0.265484,0.939712,0.950453,0.356152,0.654008,0.193322,0.689169,0.621654,0.0393691,0.248069,0.218799,0.0932787,0.915281,0.183648,0.614067,0.228574,0.628657,0.475298,0.852635,0.0607978,0.170508,0.326141,0.904296,0.339191,0.0450449,0.234539,0.171288,0.943971,0.231453,0.435857,0.484945,0.107217,0.394743,0.953644,0.167896,0.647204,0.723876,0.16072,0.875218,0.703222,0.651311,0.80305,0.9742,0.692782,0.636091,0.335059,0.00724846,0.124465,0.429038,0.726369,0.450831,0.137148,0.852929,0.250755,0.0579865,0.687606,0.846076,0.451849,0.0661888,0.636824,0.976437,0.869588,0.442154,0.277136,0.698991,0.58104,0.559697,0.522284,0.85821,0.0790133,0.804348,0.0469034,0.577705,0.806455,0.0436747,0.049211,0.625804,0.776477,0.307608,0.487851,0.783875,0.132418,0.563857,0.77621,0.132515,0.763338,0.423505,0.276003,0.90342,0.83217,0.0167947,0.85279,0.854139,0.196008,0.420703,0.336541,0.884648,0.905811,0.103027,0.559206,0.150993,0.40489,0.392235,0.518732,0.957692,0.56528,0.600368,0.784132,0.0690241,0.696137,0.262565,0.85372,0.490247,0.224673,0.580308,0.195015,0.617228,0.210546,0.978456,0.0470368,0.201444,0.731576,0.0627943,0.335089,0.775601,0.707768,0.0944831,0.929774,0.812879,0.232518,0.958017,0.65976,0.279021,0.0468458,0.291695,0.485135,0.938803,0.25759,0.42937,0.895224,0.973852,0.940121,0.428716,0.620008,0.652191,0.377249,0.90375,0.894611,0.334731,0.911206,0.380135,0.0475542,0.489701,0.638176,0.496871,0.159873,0.109947,0.195027,0.710439,0.300712,0.825909,0.809245,0.157741,0.96718,0.0144308,0.0168693,0.360677,0.58688,0.696778,0.876838,0.364291,0.26534,0.981956,0.947605,0.944721,0.340489,0.660057,0.256789,0.304457,0.818278,0.732096,0.0196971,0.830076,0.25263,0.262088,0.354001,0.974527,0.13029,0.980974,0.437342,0.498138,0.847565,0.562118,0.631514,0.833578,0.862447,0.447939,0.756382,0.805889,0.175946,0.142843,0.669575,0.640559,0.474413,0.36064,0.51672,0.772863,0.489057,0.332308,0.229734,0.799829,0.616917,0.53208,0.601403,0.526131,0.644159,0.562139,0.476275,0.0472956,0.543697,0.1126,0.677481,0.813376,0.715474,0.0858714,0.378428,0.119064,0.284654,0.0450866,0.97825,0.559332,0.383734,0.923653,0.490588,0.790891,0.619614,0.626458,0.38091,0.967211,0.568396,0.526775,0.926152,0.0491799,0.255076,0.86476,0.487612,0.584613,0.564818,0.131276,0.557523,0.734825,0.0885749,0.639293,0.996088,0.773252,0.557336,0.194351,0.189303,0.337658,0.197051,0.852684,0.740826,0.709482,0.47297,0.0454288,0.233985,0.23423,0.700658,0.437617,0.0656056,0.131615,0.370879,0.800907,0.0740737,0.600516,0.0728514,0.108554,0.0778871,0.932163,0.168552,0.147367,0.562664,0.263719,0.545843,0.944373,0.913736,0.00592554,0.215518,0.46313,0.131061,0.509567,0.962254,0.286396,0.714001,0.977872,0.875631,0.576922,0.0717778,0.584318,0.229232,0.956786,0.810436,0.848056,0.353574,0.230864,0.835544,0.758911,0.501369,0.394297,0.878717,0.350613,0.225189,0.114863,0.198789,0.273853,0.69707,0.81044,0.0894083,0.899189,0.557824,0.857928,0.522357,0.111165,0.930385,0.94053,0.759136,0.1695,0.60545,0.437873,0.952746,0.733181,0.190924,0.00953287,0.0293937,0.668117,0.796171,0.900611,0.538152,0.829669,0.654674,0.279215,0.308991,0.925979,0.863333,0.0597385,0.99988,0.28147,0.0817622,0.389561,0.523784,0.508488,0.903141,0.182887,0.47686,0.24255,0.366701,0.596005,0.108198,0.87219,0.964663,0.755644,0.0691714,0.0723933,0.305718,0.815586,0.213038,0.801327,0.248147,0.0458875,0.490105,0.494282,0.481864,0.34457,0.296187,0.353129,0.466126,0.123527,0.934876,0.65928,0.521337,0.148103,0.0208212,0.232314,0.0776108,0.385387,0.10797,0.280761,0.569138,0.820099,0.45885,0.00959182,0.108148,0.620674,0.182799,0.738785,0.489128,0.315541,0.228592,0.787939,0.660661,0.612914,0.475647,0.952206,0.905897,0.340607,0.696238,0.649176,0.594024,0.956563,0.587356,0.0716701,0.113026,0.493184,0.630991,0.016523,0.342558,0.155219,0.896254,0.194277,0.465134,0.0574204,0.283104,0.715415,0.22918,0.869924,0.726466,0.0120587,0.728369,0.440329,0.310319,0.338365,0.302766,0.358791,0.032162,0.78289,0.724406,0.99777,0.00670421,0.794741,0.593075,0.821977,0.795425,0.323505,0.506848,0.103083,0.403859,0.98429,0.467299,0.0960317,0.35308,0.227714,0.413417,0.395794,0.655627,0.544485,0.341847,0.837353,0.856803,0.192792,0.901208,0.467816,0.219958,0.611794,0.496239,0.414391,0.18184,0.151767,0.0243112,0.881437,0.767892,0.671439,0.339188,0.994635,0.462233,0.574637,0.268777,0.486349,0.874148,0.724913,0.385681,0.258883,0.68301,0.0180421,0.917372,0.166627,0.097692,0.256105,0.497182,0.749227,0.184097,0.406561,0.766393,0.811136,0.828754,0.624339,0.768124,0.46063,0.259786,0.435435,0.147518,0.549065,0.384353,0.867491,0.748058,0.674462,0.28968,0.190323,0.133347,0.768789,0.507335,0.678899,0.565557,0.666041,0.536919,0.687535,0.460048,0.643474,0.911276,0.0739431,0.0919412,0.430308,0.275997,0.305455,0.922605,0.0942727,0.631273,0.175712,0.352586,0.355317,0.969939,0.232033,0.103914,0.919553,0.219966,0.566717,0.459724,0.4308,0.864081,0.643138,0.827017,0.580869,0.539378,0.66686,0.53471,0.739081,0.42039,0.970638,0.298883,0.190673,0.502685,0.47782,0.0608515,0.989561,0.0537569,0.612276,0.85268,0.171963,0.243289,0.181118,0.336546,0.652923,0.753564,0.0578764,0.66856,0.965971,0.255024,0.239005,0.4396,0.189716,0.999474,0.131395,0.983395,0.312819,0.57248,0.333419,0.78592,0.856875,0.368199,0.518669,0.0939679,0.279724,0.824816,0.684981,0.756653,0.248563,0.339894,0.011018,0.350947,0.272562,0.84036,0.718453,0.150817,0.312036,0.61898,0.798706,0.870714,0.97262,0.0235383,0.971439,0.879444,0.767392,0.943032,0.362383,0.314887,0.597704,0.209528,0.369192,0.573558,0.249918,0.798516,0.0420592,0.0882565,0.579111,0.749691,0.468164,0.339073,0.827638,0.778865,0.0906956,0.713374,0.907949,0.125989,0.758723,0.367424,0.405759,0.521448,0.207922,0.631079,0.830605,0.969113,0.537766,0.195308,0.338285,|0.323644,0.43694,0.163997,0.401634,0.775831,0.744178,0.954145,0.0787158,0.88557,0.321847,0.766262,0.954595,0.319912,0.113206,0.523635,0.161625,0.719622,0.733863,0.368641,0.29436,0.535843,0.731845,0.995,0.719686,0.83863,0.69892,0.962169,0.10695,0.300928,0.125818,0.00103235,0.569885,0.655718,0.653946,0.565353,0.637949,0.0718436,0.428486,0.285695,0.4087,0.330877,0.549936,0.675186,0.0428635,0.776182,0.607367,0.477684,0.459877,0.776012,0.624307,0.463664,0.294487,0.230205,0.669313,0.115277,0.961492,0.720658,0.117968,0.0110357,0.445372,0.425572,0.774414,0.0696784,0.484788,0.176595,0.610725,0.601436,0.97146,0.440636,0.304729,0.657213,0.160712,0.93684,0.0156518,0.905136,0.68561,0.733321,0.080112,0.331638,0.109542,0.889202,0.0404237,0.663692,0.392919,0.630809,0.495667,0.247805,0.142207,0.0920088,0.606509,0.105912,0.873593,0.888231,0.402593,0.738176,0.656947,0.990152,0.1202,0.552945,0.253833,0.543906,0.87631,0.9859,0.528844,0.706762,0.947035,0.397437,0.475622,0.368665,0.62379,0.803396,0.0538519,0.801021,0.71132,0.318543,0.448476,0.345425,0.997152,0.0851767,0.74101,0.939686,0.510101,0.308666,0.385026,0.890436,0.496795,0.0981993,0.321496,0.102933,0.782272,0.220023,0.770526,0.324662,0.893915,0.0974349,0.259747,0.883597,0.551793,0.0426894,0.679933,0.364438,0.614746,0.547839,0.262353,0.392062,0.487068,0.253021,0.614918,0.574272,0.131047,0.680678,0.00265104,0.506061,0.574362,0.130964,0.207417,0.860316,0.255761,0.701009,0.665947,0.767214,0.00160754,0.782708,0.814809,0.695484,0.541535,0.742741,0.0305265,0.516519,0.151046,0.412872,0.496533,0.224883,0.988114,0.407243,0.410959,0.488434,0.747474,0.957918,0.327086,0.390566,0.0810419,0.932902,0.979708,0.484268,0.924627,0.936476,0.518838,0.123457,0.350984,0.525128,0.880519,0.930347,0.718834,0.851903,0.692165,0.288679,0.895977,0.463021,0.937638,0.291346,0.0693712,0.649278,0.516322,0.42349,0.746323,0.799941,0.0237575,0.463746,0.989296,0.281563,0.392745,0.438978,0.702618,0.107241,0.151954,0.632714,0.797817,0.622135,0.000145376,0.282484,0.0782014,0.151354,0.96124,0.720081,0.967727,0.177929,0.17596,0.363159,0.821407,0.0394033,0.540489,0.539145,0.415631,0.665196,0.46643,0.64996,0.260392,0.418828,0.983118,0.511563,0.772082,0.252381,0.20178,0.203114,0.915839,0.938965,0.623078,0.351565,0.563312,0.836718,0.944963,0.020798,0.832504,0.779178,0.678914,0.978232,0.25958,0.961552,0.704963,0.0201123,0.370317,0.703353,0.639122,0.0682969,0.284044,0.580603,0.290698,0.385085,0.760515,0.792139,0.179903,0.853061,0.849851,0.586253,0.848901,0.3146,0.700926,0.836349,0.74975,0.693102,0.92843,0.480805,0.385396,0.462189,0.318932,0.587195,0.15636,0.62595,0.853088,0.740389,0.932533,0.448314,0.942492,0.454207,0.0730375,0.6061,0.902065,0.724219,0.372883,0.705945,0.174436,0.394362,0.660292,0.291791,0.262764,0.522725,0.608593,0.850515,0.0315872,0.0289345,0.896594,0.992998,0.523762,0.091302,0.278097,0.664025,0.397648,0.80178,0.993632,0.203716,0.658036,0.787467,0.650151,0.728229,0.385923,0.198083,0.694465,0.870636,0.783277,0.930207,0.251562,0.561342,0.281093,0.640427,0.00229579,0.667241,0.560962,0.0587713,0.0557396,0.662808,0.388234,0.910464,0.906448,0.192119,0.151393,0.17417,0.821605,0.620264,0.770763,0.789819,0.581381,0.999374,0.455965,0.0888441,0.56605,0.453683,0.628447,0.469724,0.772159,0.966765,0.1945,0.509861,0.953478,0.488361,0.713153,0.571256,0.412279,0.314094,0.35662,0.809003,0.412732,0.545959,0.115251,0.204419,0.288732,0.975204,0.991435,0.890246,0.92718,0.0700452,0.527695,0.893676,0.779341,0.330459,0.339364,0.92526,0.0802712,0.33313,0.894547,0.34614,0.130764,0.945918,0.212174,0.0645761,0.374641,0.817,0.393155,0.482085,0.596505,0.238916,0.58015,0.492909,0.68022,0.491955,0.626988,0.410329,0.341936,0.324019,0.167905,0.252082,0.130817,0.890351,0.583256,0.425048,0.681633,0.990753,0.858281,0.227232,0.0929698,0.476959,0.0148922,0.489066,0.998161,0.437651,0.971178,0.977834,0.579022,0.0864588,0.362785,0.210893,0.026452,0.651617,0.490424,0.560144,0.314824,0.431058,0.956359,0.295963,0.0987029,0.692747,0.466885,0.513811,0.863073,0.566932,0.810304,0.296942,0.328764,0.751251,0.657734,0.491417,0.387109,0.451821,0.271593,0.680919,0.795561,0.244242,0.645338,0.429601,0.658727,0.719932,0.760762,0.478357,0.233326,0.636006,0.558949,0.579122,0.687667,0.559091,0.32769,0.444373,0.430024,0.0800079,0.214977,0.718418,0.953501,0.0306551,0.0213935,0.197359,0.17922,0.188997,0.742161,0.168297,0.109285,0.288649,0.938028,0.56719,0.194418,0.582223,0.429359,0.0545602,0.491055,0.611851,0.89672,0.283109,0.701067,0.603136,0.0630981,0.818557,0.291091,0.614376,0.930888,0.380056,0.384984,0.50853,0.874181,0.736213,0.888648,0.0761423,0.525537,0.991699,0.0259994,0.816373,0.133645,0.325612,0.267606,0.163098,0.237827,0.0758438,0.000307083,0.587093,0.301605,0.235738,0.18455,0.975036,0.822898,0.932523,0.499955,0.03993,0.850533,0.894416,0.872093,0.121735,0.695346,0.612915,0.291725,0.869164,0.10114,0.893376,0.667415,0.145471,0.369888,0.523173,0.207332,0.599688,0.188438,0.452513,0.927151,0.901476,0.716657,0.704124,0.95212,0.145937,0.417085,0.506892,0.712865,0.885069,0.604925,0.284723,0.712657,0.255459,0.570268,0.581828,0.334873,0.342819,0.168975,0.265278,0.756525,0.508057,0.245803,0.360324,0.0632971,0.745629,0.358544,0.555932,0.178015,0.662588,0.185358,0.10166,0.205348,0.858696,0.988219,0.251969,0.349003,0.498416,0.991368,0.427724,0.0639608,0.543712,0.827909,0.89089,0.594042,0.945152,0.505378,0.0161209,0.145285,0.972129,0.636423,0.673074,0.656036,0.661926,0.703495,0.458326,0.211123,0.540842,0.392015,0.8565,0.672334,0.662486,0.574757,0.702887,0.278085,0.356708,0.594459,0.672413,0.885853,0.132807,0.8879,0.965503,0.84599,0.9901,0.358001,0.800773,0.221663,0.533053,0.894693,0.919,0.117093,0.17432,0.00881833,0.636604,0.106939,0.424807,0.501937,0.734272,0.92455,0.806781,0.489118,0.724405,0.529417,0.0861071,0.971886,0.989178,0.928937,0.68478,0.629379,0.415578,0.920248,0.821534,0.75576,0.0303925,0.305899,0.951892,0.174405,0.24858,0.367164,0.858657,0.577823,0.187252,0.454473,0.892278,0.525561,0.340938,0.00311136,0.80996,0.644216,0.686567,0.998915,0.937591,0.404266,0.625152,0.137177,0.779571,0.72597,0.530479,0.236185,0.482208,0.817493,0.764551,0.987634,0.713637,0.460411,0.257851,0.656365,0.931616,0.561639,0.934142,0.441762,0.277224,0.36013,0.346966,0.0019902,0.192677,0.64479,0.720402,0.386486,0.725339,0.179371,0.33629,0.244425,0.0798968,0.590868,0.834846,0.592857,0.817931,0.00968874,0.441074,0.477392,0.341842,0.528498,0.732607,0.828862,0.70529,0.29726,0.765793,0.421009,0.395414,0.811733,0.217212,0.450492,0.733557,0.936865,0.434007,0.207096,0.798645,0.0738749,0.214778,0.0679165,0.619144,0.584617,0.13826,0.409816,0.269678,0.749055,0.806913,0.477135,0.691071,0.509719,0.11463,0.216549,0.770788,0.744467,0.326848,0.348378,0.52517,0.84458,0.386782,0.0638418,0.835552,0.921395,0.744152,0.537585,0.239847,0.514647,0.0832021,0.421795,0.807088,0.461618,0.848196,0.439855,0.393521,0.235561,0.433487,0.827431,0.65226,0.583935,0.948142,0.14584,0.69746,0.340138,0.866846,0.317344,0.060223,0.529001,0.52937,0.428038,0.735009,0.661452,0.174506,0.484697,0.889327,0.357271,0.000231445,0.3857,0.513893,0.379324,0.192958,0.0836062,0.66558,0.230554,0.467094,0.0339106,0.563451,0.558256,0.893584,0.242454,0.647162,0.987197,0.83268,0.374268,0.520761,0.724348,0.519132,0.958761,0.747008,0.671835,0.961718,0.250795,0.410071,0.454462,0.638943,0.810407,0.691905,0.672221,0.655693,0.0799107,0.495678,0.447985,0.864492,0.199557,0.288023,0.774464,0.0330897,0.163368,0.0126704,0.700122,0.0413768,0.58747,0.862807,0.860891,0.881054,0.270067,0.253969,0.206007,0.588186,0.093276,0.586575,0.453703,0.894588,0.711917,0.452019,0.931836,0.243887,0.0829208,0.553113,0.72409,0.831585,0.847976,0.430171,0.839886,0.12556,0.341171,0.176106,0.415106,0.386392,0.629087,0.896548,0.950719,0.937033,0.331101,0.932787,0.821364,0.503039,0.386311,0.323333,0.799692,0.169641,0.770059,0.335052,0.923209,0.81045,0.567355,0.00437295,0.232928,0.660905,0.108738,0.16399,0.389981,0.788317,0.866076,0.805108,0.960334,0.149377,0.393222,0.652627,0.778832,0.380239,0.862886,0.360007,0.181279,0.68636,0.751306,0.34802,0.116077,0.535453,0.240879,0.872849,0.418177,0.733763,0.31209,0.749359,0.737917,0.462574,0.811029,0.678358,0.947905,0.750205,0.125417,0.92474,0.362011,0.309997,0.291584,0.630026,0.67851,0.714598,0.852963,0.599868,0.224405,0.341527,0.4409,0.626791,0.384949,0.133305,0.328602,0.656017,0.472503,0.042787,0.956944,0.701063,0.323983,0.532554,0.955267,0.940031,0.573124,0.917333,0.447854,0.0100581,0.886905,0.318331,0.898169,0.276863,0.406432,0.896877,0.577792,0.481293,0.639438,0.45842,0.459129,0.885697,0.73234,0.0327306,0.586904,0.284307,0.266393,0.00778025,0.201265,0.874029,0.843921,0.594694,0.039227,0.161959,0.566505,0.380125,0.324892,0.31282,0.731603,0.709364,0.470234,0.0447302,0.984829,0.133253,0.68246,0.37529,0.20632,0.693699,0.2012,0.754144,0.552821,0.236778,0.118387,0.943008,0.60739,0.819074,0.855131,0.858814,0.530959,0.453429,0.549159,0.414882,0.397831,0.169607,0.966589,0.449887,0.543786,0.542479,0.705064,0.268717,0.974646,0.717979,0.213049,|0.88264,0.509785,0.792224,0.705496,0.84712,0.539568,0.0956039,0.00945425,0.239551,0.817347,0.525666,0.00063616,0.150488,0.410253,0.571794,0.472502,0.0334954,0.672311,0.641197,0.554797,0.773467,0.0121796,0.743491,0.459764,0.0271801,0.623885,0.24399,0.357169,0.650449,0.567964,0.725878,0.741039,0.655874,0.152839,0.735207,0.402724,0.741149,0.185918,0.324481,0.923776,0.797908,0.454454,0.240348,0.809808,0.274888,0.906911,0.0484961,0.834644,0.864307,0.909727,0.0140224,0.176559,0.241564,0.896376,0.532369,0.974416,0.44444,0.879081,0.493634,0.608126,0.76112,0.352875,0.204297,0.332803,0.718229,0.2015,0.768796,0.349065,0.697316,0.770229,0.893513,0.0128412,0.505513,0.847195,0.0895824,0.702893,0.622713,0.980782,0.422175,0.779035,0.741402,0.126776,0.711379,0.0549038,0.0696599,0.353817,0.825149,0.289133,0.0325082,0.108156,0.0534477,0.511104,0.905121,0.947208,0.354419,0.573612,0.421959,0.855087,0.734697,0.718541,0.701433,0.188467,0.705128,0.465957,0.979871,0.611552,0.337529,0.505651,0.961537,0.0427274,0.578943,0.635742,0.699848,0.0232447,0.658436,0.440418,0.497638,0.498531,0.810592,0.567898,0.404066,0.7867,0.285571,0.840664,0.587303,0.283737,0.515799,0.293864,0.921311,0.0407993,0.134602,0.0602782,0.564248,0.424726,0.598286,0.90974,0.984112,0.357111,0.105665,0.467581,0.276046,0.653023,0.0897444,0.357851,0.528069,0.869834,0.625794,0.666918,0.453704,0.837419,0.139646,0.968234,0.116188,0.966162,0.339542,0.763769,0.876235,0.177003,0.936383,0.957754,0.788399,0.915225,0.698742,0.893489,0.698857,0.792571,0.206702,0.146812,0.783224,0.738592,0.738296,0.717998,0.877019,0.480423,0.239593,0.000468671,0.11008,0.307859,0.753063,0.749306,0.239705,0.291773,0.146101,0.778988,0.643162,0.15863,0.157309,0.410594,0.287103,0.308872,0.442817,0.55522,0.70225,0.692744,0.703795,0.516365,0.0609387,0.938101,0.0716086,0.944127,0.675612,0.847518,0.673377,0.463528,0.471977,0.123098,0.323379,0.570794,0.764207,0.218895,0.519434,0.548757,0.464523,0.389285,0.178956,0.6355,0.631441,0.694554,0.660523,0.14465,0.836112,0.274227,0.463195,0.251323,0.766023,0.856976,0.873036,0.699468,0.749234,0.367198,0.9496,0.963325,0.842127,0.951864,0.991567,0.113673,0.808618,0.00170588,0.783473,0.272077,0.970528,0.801789,0.580693,0.962991,0.473612,0.63466,0.304083,0.176603,0.789385,0.768335,0.200283,0.44087,0.894281,0.965568,0.601183,0.102391,0.0175991,0.598488,0.079998,0.934951,0.25141,0.748641,0.308784,0.0566557,0.685913,0.912058,0.392232,0.405165,0.232727,0.370933,0.810989,0.597896,0.912945,0.847987,0.574469,0.113506,0.915641,0.421038,0.568967,0.361373,0.886402,0.271783,0.132822,0.301341,0.698571,0.147232,0.7414,0.474756,0.885616,0.103606,0.32252,0.503565,0.00525266,0.0435207,0.851012,0.423802,0.184657,0.714766,0.204054,0.473888,0.277941,0.726795,0.679544,0.253749,0.829569,0.649639,0.555902,0.634968,0.936951,0.976694,0.155248,0.766747,0.843126,0.245938,0.0517968,0.269918,0.268366,0.963886,0.572992,0.632698,0.0645885,0.465398,0.437778,0.298811,0.696215,0.103436,0.62576,0.0436908,0.063309,0.733502,0.548069,0.0129523,0.698087,0.726727,0.819593,0.027748,0.0705097,0.329391,0.230863,0.805589,0.775128,0.858404,0.220903,0.975835,0.0415996,0.795107,0.626606,0.824065,0.288767,0.940763,0.255155,0.882611,0.819545,0.064005,0.492892,0.919205,0.932549,0.745523,0.737816,0.743088,0.615294,0.120047,0.363487,0.751817,0.704494,0.506167,0.0117922,0.450447,0.742485,0.329669,0.283147,0.0486719,0.543803,0.599724,0.469127,0.577366,0.570717,0.173899,0.0689335,0.142899,0.512671,0.508592,0.565119,0.395186,0.361229,0.696761,0.581993,0.589876,0.998278,0.33162,0.908248,0.460711,0.252186,0.159293,0.0282137,0.0946701,0.347822,0.885666,0.298504,0.198272,0.980693,0.00742412,0.80909,0.758651,0.247151,0.273417,0.28777,0.217209,0.902588,0.148775,0.919365,0.763957,0.691186,0.583964,0.761573,0.508613,0.322546,0.830222,0.766967,0.919444,0.282443,0.786586,0.0714958,0.0207828,0.784628,0.0890311,0.837906,0.358289,0.847102,0.998451,0.153597,0.573138,0.114199,0.961461,0.599917,0.560925,0.713033,0.659037,0.969009,0.680509,0.517761,0.41756,0.166426,0.0316761,0.721947,0.613238,0.760132,0.661411,0.0504768,0.153168,0.764293,0.181899,0.140715,0.934073,0.251069,0.557042,0.280823,0.571048,0.36534,0.888886,0.346666,0.789503,0.790273,0.597738,0.581575,0.0739461,0.48745,0.706746,0.554048,0.22866,0.0571222,0.506651,0.0980073,0.276089,0.0539594,0.325472,0.195765,0.0521755,0.599456,0.292067,0.944521,0.0360367,0.389732,0.496856,0.576442,0.790542,0.313292,0.364413,0.201771,0.86275,0.9854,0.808962,0.57128,0.0486087,0.614296,0.520318,0.472534,0.310903,0.305528,0.642109,0.962239,0.375999,0.843538,0.626957,0.173911,0.5374,0.362917,0.0178475,0.810162,0.126327,0.00724411,0.338975,0.450037,0.195751,0.690022,0.158005,0.925049,0.296884,0.916044,0.306223,0.513589,0.266256,0.650423,0.636259,0.247635,0.0697241,0.180081,0.179894,0.400821,0.851821,0.597968,0.13566,0.436758,0.641397,0.12704,0.466801,0.682582,0.390777,0.541279,0.0843764,0.87635,0.860827,0.329091,0.976851,0.302004,0.0892488,0.708871,0.555557,0.318722,0.0876483,0.89183,0.0310332,0.0716041,0.371188,0.708984,0.799771,0.0825629,0.633853,0.906355,0.482796,0.0793706,0.700363,0.15151,0.0248911,0.731965,0.390703,0.878225,0.533767,0.0897541,0.708743,0.720272,0.259488,0.542471,0.395779,0.913161,0.910088,0.635784,0.144829,0.00737125,0.846958,0.589613,0.214487,0.0868957,0.644013,0.33012,0.103393,0.378942,0.381714,0.394065,0.426851,0.534291,0.954893,0.889421,0.311495,0.727818,0.729614,0.56346,0.391228,0.296282,0.905186,0.145913,0.982016,0.409654,0.858721,0.561718,0.722432,0.0926654,0.493271,0.338055,0.045819,0.0782958,0.715804,0.53982,0.880274,0.187077,0.495124,0.548533,0.229578,0.986029,0.0231508,0.108601,0.301886,0.395486,0.958423,0.589272,0.252806,0.966924,0.0597695,0.723103,0.728829,0.8947,0.42574,0.190357,0.951641,0.643174,0.366672,0.551603,0.196272,0.922462,0.395362,0.822322,0.79651,0.0899982,0.227429,0.738688,0.0661294,0.712832,0.718758,0.91526,0.554386,0.661237,0.0739499,0.00773102,0.96159,0.672655,0.955788,0.997738,0.510142,0.770566,0.132029,0.304623,0.663436,0.190312,0.758708,0.63307,0.676934,0.601719,0.736865,0.314581,0.880036,0.570747,0.121006,0.408681,0.123613,0.169889,0.599307,0.32691,0.622812,0.852796,0.716602,0.271167,0.428481,0.946578,0.271792,0.84183,0.473772,0.553486,0.904691,0.820584,0.21174,0.229151,0.959289,0.673183,0.907416,0.072271,0.271701,0.86919,0.610145,0.623739,0.81158,0.221791,0.192606,0.488494,0.479263,0.30313,0.316968,0.449965,0.965533,0.261544,0.705222,0.583382,0.347535,0.383959,0.725881,0.259554,0.738669,0.339944,0.806966,0.097397,0.594191,0.263292,0.441558,0.568232,0.384485,0.418066,0.583094,0.592639,0.56082,0.620044,0.767971,0.877762,0.756686,0.357575,0.212812,0.903081,0.0497929,0.736833,0.895633,0.696033,0.951734,0.143914,0.854868,0.602634,0.719986,0.189686,0.70458,0.672488,0.366718,0.395967,0.787026,0.971252,0.980401,0.947201,0.375437,0.733432,0.140688,0.811424,0.355412,0.453724,0.701638,0.504752,0.790666,0.779158,0.823599,0.834099,0.822261,0.92622,0.41136,0.178564,0.509043,0.398377,0.921455,0.901446,0.605741,0.274986,0.00789577,0.156534,0.792245,0.648157,0.886088,0.814682,0.830019,0.777256,0.188526,0.219627,0.302073,0.63873,0.387417,0.865574,0.157509,0.0236472,0.228408,0.285496,0.020126,0.159687,0.813797,0.667386,0.61223,0.0163603,0.700926,0.320551,0.457876,0.393665,0.474219,0.283704,0.607411,0.950226,0.458186,0.419908,0.537843,0.475855,0.298896,0.85199,0.520491,0.856647,0.966812,0.495563,0.379867,0.214084,0.216373,0.586779,0.643133,0.0703299,0.388434,0.38755,0.916214,0.996465,0.973932,0.762383,0.641112,0.0370666,0.250681,0.0725868,0.580764,0.584003,0.0122546,0.425044,0.283903,0.753381,0.592876,0.724257,0.983237,0.698837,0.432581,0.617197,0.142697,0.484556,0.879142,0.506658,0.697545,0.597955,0.989759,0.683006,0.414324,0.541256,0.574848,0.809392,0.892756,0.134176,0.699013,0.348053,0.583828,0.116821,0.139421,0.798684,0.0128151,0.0479314,0.351795,0.618322,0.543241,0.200265,0.0221782,0.288931,0.337547,0.382708,0.586396,0.449675,0.030573,0.27912,0.632856,0.547427,0.589864,0.501084,0.308471,0.953426,0.186712,0.0631592,0.404801,0.99024,0.718959,0.158545,0.969656,0.496002,0.917663,0.689281,0.102463,0.493426,0.801665,0.507573,0.12585,0.78884,0.338132,0.768904,0.173341,0.262575,0.0576996,0.0671722,0.968772,0.886811,0.299713,0.953396,0.146227,0.662555,0.553263,0.0210727,0.0887946,0.900193,0.583508,0.850968,0.572843,0.86096,0.284822,0.765607,0.0528986,0.843264,0.372252,0.515337,0.667863,0.921325,0.404966,0.491659,0.324533,0.11105,0.751512,0.833962,0.0238627,0.387818,0.2342,0.0530544,0.357282,0.940448,0.974048,0.445092,0.170268,0.118673,0.0951301,0.493547,0.469503,0.216145,0.135088,0.197661,0.171225,0.812415,0.469896,0.217337,0.0856522,0.102766,0.457908,0.173889,0.0480118,0.416871,0.587881,0.962049,0.673055,0.787323,0.49976,0.391347,0.85865,0.118098,0.243949,0.637707,0.00820625,0.66305,0.362607,0.37721,0.69647,0.844995,0.654711,0.218278,0.524557,0.179167,0.526873,0.158903,0.104694,0.405317,0.70481,0.636436,0.975126,0.284928,0.621397,0.0556347,0.746809,0.844452,0.140486,0.811812,0.228503,0.260591,0.355782,0.739425,0.816339,|0.196129,0.779336,0.866562,0.252224,0.806933,0.435336,0.592173,0.801265,0.526721,0.137222,0.462443,0.47573,0.259534,0.326281,0.881086,0.893904,0.890396,0.884598,0.392282,0.975702,0.739127,0.667229,0.352188,0.902718,0.0515471,0.00752491,0.0381927,0.150561,0.221329,0.802952,0.426211,0.143411,0.608901,0.55607,0.597715,0.200674,0.523846,0.110514,0.270388,0.0503926,0.0932364,0.957893,0.319459,0.933942,0.0380674,0.225818,0.849676,0.370017,0.678526,0.248022,0.190267,0.607504,0.133152,0.719338,0.729216,0.445002,0.569475,0.19917,0.122342,0.920386,0.8365,0.119171,0.939597,0.452903,0.696298,0.925676,0.660996,0.951321,0.822003,0.968257,0.513856,0.531215,0.124072,0.599653,0.70737,0.0913638,0.965737,0.584312,0.677399,0.240237,0.929641,0.119363,0.587294,0.334327,0.68979,0.0736938,0.347594,0.380575,0.782406,0.256533,0.106328,0.901755,0.532636,0.127472,0.51014,0.929416,0.293921,0.991635,0.511824,0.0628604,0.401687,0.33896,0.0584871,0.132121,0.561658,0.731736,0.00774997,0.263523,0.6638,0.465406,0.0863827,0.701865,0.132349,0.714206,0.0556015,0.601841,0.511209,0.798493,0.874188,0.00495178,0.67252,0.343246,0.324194,0.0505354,0.968598,0.821914,0.0311182,0.797463,0.872548,0.187612,0.658454,0.795824,0.134936,0.849276,0.0554388,0.00257421,0.12163,0.973787,0.429852,0.424294,0.402031,0.304425,0.900157,0.594655,0.153856,0.513463,0.385282,0.996682,0.886568,0.71129,0.67776,0.480978,0.782202,0.766597,0.407318,0.26427,0.674726,0.657612,0.291072,0.612905,0.411676,0.124091,0.911368,0.766601,0.65677,0.471374,0.427146,0.563523,0.227889,0.649833,0.436556,0.601559,0.792733,0.769052,0.273553,0.849723,0.26184,0.395511,0.590857,0.321845,0.100163,0.251626,0.253603,0.162868,0.312959,0.136068,0.442897,0.832384,0.543774,0.775121,0.526741,0.0978997,0.574381,0.353506,0.996836,0.184868,0.170455,0.314206,0.272818,0.543007,0.352739,0.809971,0.885923,0.529294,0.331686,0.243766,0.31188,0.58969,0.754722,0.225252,0.302316,0.372779,0.537364,0.788983,0.0906131,0.719581,0.936761,0.420883,0.226517,0.331351,0.40176,0.287953,0.0153219,0.566274,0.673858,0.777261,0.277867,0.819041,0.354786,0.526153,0.201189,0.514249,0.296654,0.585447,0.321791,0.758198,0.319078,0.648849,0.608616,0.983953,0.894982,0.125803,0.313238,0.841674,0.946853,0.641103,0.791305,0.706731,0.0702268,0.906524,0.841121,0.044214,0.505563,0.32837,0.000508547,0.158313,0.0670177,0.588547,0.645284,0.512282,0.0519466,0.00223905,0.850924,0.473952,0.466604,0.174072,0.759125,0.959885,0.243087,0.930684,0.964307,0.284846,0.806642,0.0812219,0.890416,0.554977,0.0828655,0.496065,0.13081,0.482208,0.261525,0.856744,0.2906,0.731975,0.737763,0.245396,0.0779349,0.581249,0.891635,0.235392,0.684768,0.0200403,0.513679,0.212977,0.198387,0.920853,0.687135,0.469009,0.977134,0.741175,0.323774,0.990883,0.548687,0.226942,0.403781,0.928512,0.629744,0.840831,0.195475,0.433377,0.459107,0.207459,0.653992,0.796172,0.570529,0.0520499,0.599308,0.778574,0.015835,0.049436,0.593528,0.987439,0.475349,0.384441,0.253729,0.407141,0.859109,0.21541,0.11969,0.827337,0.729385,0.989272,0.755135,0.284079,0.0813743,0.536715,0.21611,0.862191,0.185536,0.816678,0.606397,0.747613,0.871065,0.950241,0.428404,0.175421,0.3908,0.633757,0.819875,0.0544332,0.518377,0.115696,0.994153,0.71543,0.741096,0.514402,0.994496,0.678021,0.316758,0.895758,0.430907,0.843051,0.616798,0.446662,0.96563,0.766855,0.453304,0.0248469,0.801351,0.588926,0.811893,0.882552,0.445823,0.901318,0.021075,0.294286,0.123898,0.0308966,0.489154,0.835518,0.0552392,0.86447,0.107415,0.107857,0.240746,0.181826,0.521889,0.91146,0.0685716,0.523877,0.960483,0.730273,0.749477,0.456858,0.444729,0.748402,0.248236,0.315855,0.0475895,0.140579,0.297547,0.605156,0.861535,0.153962,0.177247,0.784289,0.462471,0.648888,0.961352,0.146963,0.803366,0.96346,0.742607,0.586454,0.0959713,0.229833,0.364593,0.13733,0.603436,0.429993,0.719939,0.618635,0.908264,0.954276,0.613192,0.814689,0.298679,0.295279,0.111582,0.613467,0.655139,0.834687,0.973592,0.571386,0.671308,0.79508,0.232159,0.859739,0.573304,0.358585,0.935092,0.962073,0.256335,0.206346,0.674873,0.136214,0.834737,0.768137,0.110306,0.752876,0.246435,0.223026,0.19058,0.697845,0.710275,0.179624,0.410137,0.357623,0.773679,0.753953,0.954661,0.195634,0.782575,0.698395,0.149086,0.397328,0.598767,0.517913,0.444544,0.0902852,0.0492229,0.947065,0.282312,0.81279,0.505759,0.405113,0.990137,0.997994,0.828332,0.735131,0.191492,0.359872,0.735851,0.61348,0.0534773,0.225164,0.260047,0.0667449,0.945665,0.0348106,0.83173,0.775324,0.00309843,0.817573,0.978029,0.58884,0.341676,0.125355,0.692427,0.643915,0.613308,0.88582,0.475375,0.0610631,0.644446,0.809296,0.351141,0.195569,0.932008,0.943934,0.625198,0.221062,0.00962549,0.260731,0.357482,0.340931,0.0698312,0.381662,0.37656,0.99934,0.530462,0.412965,0.70669,0.942398,0.55044,0.834691,0.755275,0.256384,0.498827,0.632279,0.691384,0.629339,0.787865,0.771107,0.901623,0.795353,0.538789,0.937724,0.947886,0.468727,0.250402,0.833788,0.214735,0.307478,0.969973,0.0363227,0.0559835,0.00525951,0.811134,0.317693,0.10616,0.769148,0.364186,0.708962,0.238185,0.921551,0.549495,0.821792,0.0889277,0.752469,0.244935,0.348841,0.698117,0.598102,0.960022,0.187136,0.0332405,0.795117,0.950507,0.19247,0.100378,0.941279,0.94906,0.379138,0.467913,0.929796,0.818247,0.192254,0.283547,0.190429,0.530345,0.727257,0.712021,0.627269,0.298101,0.24522,0.736115,0.867277,0.200691,0.582393,0.940029,0.430707,0.834603,0.0850593,0.622518,0.836517,0.111646,0.860271,0.749457,0.395055,0.0453079,0.181495,0.72401,0.626799,0.373618,0.913822,0.856966,0.833507,0.163209,0.644891,0.330921,0.317175,0.0987889,0.296811,0.759904,0.207225,0.638938,0.891243,0.174307,0.155362,0.909288,0.524866,0.903029,0.290517,0.373281,0.151203,0.172005,0.137606,0.522704,0.779993,0.96617,0.559283,0.033248,0.818485,0.811142,0.429572,0.455303,0.689727,0.947519,0.28059,0.131862,0.0432356,0.903079,0.331623,0.698037,0.948502,0.50243,0.253244,0.46453,0.947425,0.856426,0.362246,0.766206,0.68286,0.933998,0.701082,0.957647,0.974625,0.508236,0.144821,0.154626,0.734229,0.134409,0.411315,0.903809,0.277066,0.154559,0.919374,0.310072,0.698489,0.550486,0.952983,0.152781,0.555444,0.0807972,0.914673,0.724813,0.567149,0.680833,0.860598,0.348509,0.255659,0.614951,0.757421,0.410481,0.274137,0.653308,0.854362,0.394637,0.599552,0.485973,0.771158,0.678178,0.356823,0.743299,0.527943,0.139024,0.314694,0.545489,0.56532,0.802235,0.6464,0.151731,0.937138,0.76507,0.0615907,0.370397,0.915108,0.541369,0.580571,0.3414,0.125449,0.623778,0.78935,0.720658,0.842879,0.787531,0.265481,0.614274,0.49326,0.252565,0.521085,0.761535,0.717406,0.831013,0.359244,0.748185,0.779372,0.50167,0.859897,0.528233,0.0492405,0.583878,0.549373,0.918403,0.46258,0.417318,0.178341,0.347318,0.762567,0.13888,0.459809,0.967588,0.983748,0.665159,0.743097,0.448261,0.524173,0.853388,0.0861738,0.828674,0.414838,0.864191,0.476738,0.688097,0.869556,0.971373,0.0258551,0.635038,0.0510868,0.297393,0.488349,0.937841,0.103806,0.571952,0.201909,0.591636,0.309952,0.280669,0.187441,0.646893,0.836873,0.715264,0.925176,0.0729733,0.884744,0.493531,0.538625,0.970597,0.916081,0.974088,0.101852,0.563803,0.316489,0.822789,0.87702,0.788275,0.636482,0.231922,0.29235,0.685425,0.532593,0.687573,0.65228,0.155652,0.569878,0.52472,0.360344,0.557462,0.805232,0.202926,0.197111,0.0199422,0.720193,0.957999,0.0174592,0.378247,0.291877,0.198604,0.90052,0.927578,0.694035,0.731156,0.402322,0.871125,0.868517,0.13577,0.232748,0.654195,0.16844,0.0840769,0.236054,0.7099,0.489592,0.257741,0.576319,0.757092,0.0189198,0.707783,0.527355,0.881351,0.202565,0.306093,0.570639,0.0187408,0.26227,0.355894,0.878236,0.0568839,0.542558,0.719989,0.74937,0.388198,0.208716,0.953101,0.128013,0.936198,0.456336,0.918033,0.641368,0.108246,0.487117,0.68322,0.992396,0.573015,0.435616,0.0700497,0.890522,0.0161458,0.466002,0.48934,0.342593,0.943839,0.725811,0.786263,0.650037,0.391944,0.902125,0.605982,0.572068,0.673611,0.475035,0.00551426,0.25414,0.569598,0.176587,0.802332,0.223873,0.038964,0.705616,0.843979,0.321252,0.838538,0.304474,0.660545,0.549724,0.425591,0.281004,0.401353,0.629269,0.826451,0.949991,0.472349,0.745069,0.25427,0.403084,0.4272,0.328197,0.921517,0.5364,0.492525,0.0444874,0.996055,0.626034,0.533749,0.365663,0.319617,0.317119,0.827702,0.35634,0.312917,0.206492,0.345926,0.318236,0.0752446,0.848768,0.566365,0.902597,0.849611,0.657498,0.32568,0.250542,0.352145,0.0739393,0.87805,0.780253,0.745397,0.194102,0.284526,0.69608,0.322999,0.86951,0.933122,0.00332212,0.132274,0.351145,0.248548,0.19606,0.456937,0.737201,0.703473,0.873449,0.445692,0.466975,0.467542,0.252934,0.367528,0.966048,0.998734,0.265161,0.933414,0.105175,0.3217,0.666732,0.566894,0.523379,0.232872,0.128734,0.624969,0.870878,0.35983,0.887097,0.158542,0.0869641,0.108262,0.942879,0.239657,0.582839,0.00272018,0.338379,0.994617,0.414398,0.529721,0.572402,0.158484,0.860762,0.0887273,0.134949,0.437883,0.699089,0.749816,0.812509,0.949854,0.118158,0.476547,0.844973,0.868822,0.526472,0.977965,0.601436,0.788197,0.906652,0.961064,0.803752,0.947432,0.0941041,0.630602,0.140765,0.221719,0.659981,|0.194405,0.970096,0.886602,0.0227239,0.592203,0.220052,0.900557,0.510926,0.108602,0.0870734,0.166374,0.279966,0.53162,0.64264,0.422397,0.347446,0.642034,0.628526,0.768868,0.779097,0.66167,0.964056,0.938717,0.700668,0.89475,0.85342,0.777978,0.341392,0.854694,0.430271,0.359522,0.872279,0.809262,0.844264,0.16337,0.735281,0.301353,0.299901,0.789294,0.407349,0.34292,0.816918,0.0904294,0.635567,0.354358,0.756948,0.00251967,0.405296,0.322927,0.88493,0.289037,0.723038,0.0670722,0.995582,0.983106,0.853383,0.608738,0.616493,0.313113,0.22942,0.668045,0.423536,0.103564,0.267693,0.700357,0.942774,0.203303,0.483825,0.427558,0.308594,0.426559,0.283634,0.332554,0.828569,0.0988523,0.215816,0.0555879,0.802287,0.849223,0.192237,0.518813,0.0244646,0.435704,0.0594496,0.100188,0.713112,0.390088,0.399992,0.147296,0.387416,0.54342,0.525465,0.405673,0.149568,0.795037,0.323637,0.156506,0.721014,0.344374,0.325517,0.55197,0.744103,0.283675,0.22525,0.385314,0.00854164,0.274098,0.201001,0.361309,0.5561,0.732673,0.658546,0.545423,0.86979,0.460681,0.153247,0.720557,0.989453,0.239862,0.789717,0.185375,0.868385,0.608099,0.302584,0.512696,0.00341135,0.322871,0.296836,0.440485,0.895671,0.376836,0.0182372,0.476098,0.0396771,0.111104,0.00609541,0.353601,0.530997,0.732854,0.99962,0.80425,0.83495,0.335557,0.658237,0.305526,0.634672,0.270176,0.75205,0.315122,0.832144,0.676153,0.21379,0.0844881,0.346258,0.275331,0.0622538,0.949041,0.420273,0.606821,0.452563,0.119935,0.570355,0.244763,0.650734,0.0480984,0.12353,0.837542,0.175604,0.37842,0.215927,0.763051,0.711598,0.451908,0.365675,0.377928,0.407564,0.1726,0.824509,0.41419,0.116149,0.372277,0.29609,0.10902,0.928409,0.261722,0.477963,0.450906,0.391011,0.490723,0.498168,0.252623,0.660592,0.623716,0.8962,0.618539,0.942822,0.366108,0.700672,0.633796,0.471461,0.692766,0.922046,0.926027,0.721154,0.881221,0.476873,0.0237554,0.72701,0.255753,0.241614,0.363823,0.0403123,0.332105,0.446738,0.119609,0.06979,0.709942,0.236992,0.342068,0.0678217,0.760096,0.864446,0.135377,0.586299,0.464342,0.225099,0.58155,0.322107,0.11186,0.0521504,0.686833,0.439397,0.584568,0.410588,0.365415,0.118635,0.649567,0.432446,0.243411,0.832336,0.937884,0.698418,0.319125,0.152464,0.707304,0.816234,0.0637062,0.770495,0.0764911,0.361371,0.733093,0.50725,0.555601,0.399438,0.350318,0.637272,0.613213,0.687396,0.405272,0.947044,0.790909,0.307477,0.255867,0.145624,0.93993,0.377555,0.246494,0.953632,0.713461,0.221329,0.0679326,0.241859,0.000656843,0.235786,0.568565,0.469999,0.982854,0.821756,0.986445,0.698622,0.920069,0.946277,0.0576047,0.752897,0.904156,0.8714,0.587373,0.532631,0.098119,0.890548,0.637599,0.0223507,0.854653,0.308668,0.871782,0.132138,0.691414,0.296889,0.916392,0.110445,0.765735,0.152965,0.814335,0.259688,0.401894,0.634267,0.315484,0.778083,0.24197,0.455467,0.538069,0.00969809,0.759784,0.677172,0.818211,0.796858,0.808184,0.935223,0.0464064,0.114463,0.173889,0.0730518,0.901401,0.360396,0.307527,0.391403,0.990153,0.662463,0.625028,0.0658267,0.541165,0.897445,0.77694,0.179694,0.913828,0.0430081,0.800521,0.715635,0.0477037,0.334083,0.62274,0.307817,0.141928,0.773809,0.146076,0.219349,0.616771,0.322827,0.650296,0.1115,0.318225,0.836024,0.200922,0.805739,0.355731,0.28959,0.783395,0.833826,0.931052,0.728831,0.983852,0.806275,0.147347,0.466805,0.377978,0.905082,0.442445,0.948091,0.577873,0.583394,0.328818,0.896939,0.825011,0.513875,0.633989,0.15746,0.762508,0.0645267,0.841312,0.310543,0.295821,0.340553,0.0423465,0.844596,0.147968,0.858634,0.716027,0.993666,0.890026,0.0781636,0.523947,0.859886,0.999675,0.0356518,0.589214,0.031548,0.237989,0.223219,0.14057,0.304613,0.197659,0.18859,0.587589,0.803392,0.693637,0.809003,0.270192,0.44591,0.000534832,0.361738,0.784118,0.288107,0.941948,0.0187792,0.629913,0.492856,0.550553,0.118015,0.218604,0.896743,0.190018,0.488254,0.154465,0.819874,0.88625,0.273131,0.535571,0.576161,0.89608,0.80199,0.463766,0.99722,0.624844,0.360431,0.516627,0.525196,0.152721,0.0932769,0.575077,0.482981,0.0876704,0.540693,0.913234,0.934568,0.310834,0.733998,0.388541,0.749161,0.863735,0.87828,0.161369,0.237543,0.172005,0.655035,0.25484,0.0106234,0.208821,0.344987,0.26459,0.651068,0.338081,0.78188,0.746702,0.52575,0.00240499,0.623948,0.179209,0.286372,0.772522,0.079224,0.204635,0.199793,0.331059,0.307488,0.120828,0.104648,0.950329,0.616189,0.619324,0.969254,0.0749245,0.672875,0.372019,0.493774,0.724512,0.315329,0.464585,0.482579,0.870012,0.193987,0.0557213,0.15371,0.758018,0.293296,0.881221,0.728067,0.283274,0.716047,0.480408,0.489429,0.797127,0.502564,0.102147,0.45537,0.278032,0.192737,0.465588,0.302012,0.805972,0.312487,0.760008,0.170357,0.8107,0.342438,0.310037,0.28174,0.0534407,0.833364,0.82331,0.258755,0.0896283,0.525494,0.252033,0.438504,0.403957,0.016518,0.143402,0.720438,0.678087,0.823345,0.347113,0.722806,0.0531368,0.37193,0.0366548,0.23444,0.035237,0.706927,0.648273,0.0578191,0.319486,0.166597,0.87409,0.223086,0.212604,0.00382185,0.654627,0.715361,0.746707,0.272155,0.356496,0.0250472,0.832867,0.985056,0.252295,0.175924,0.827562,0.0571151,0.196562,0.936912,0.745937,0.175172,0.638797,0.206718,0.256288,0.495514,0.475635,0.941676,0.974179,0.397642,0.381363,0.898945,0.183895,0.765122,0.92022,0.661302,0.90763,0.602412,0.442864,0.360905,0.361571,0.44672,0.640071,0.495281,0.626885,0.71692,0.230492,0.846112,0.85767,0.608989,0.778973,0.292007,0.453465,0.0768588,0.291231,0.174966,0.253955,0.42132,0.210341,0.79793,0.419883,0.286647,0.910583,0.633874,0.866731,0.69652,0.613862,0.247872,0.945094,0.844096,0.76336,0.0813804,0.961832,0.131029,0.0219906,0.946756,0.435469,0.709544,0.0913164,0.665473,0.286811,0.642249,0.767907,0.146792,0.899703,0.964873,0.649258,0.771611,0.385537,0.887239,0.84108,0.1654,0.666471,0.151681,0.787879,0.7345,0.545335,0.932094,0.982397,0.938806,0.247523,0.489327,0.60267,0.847086,0.589659,0.815039,0.44329,0.00151819,0.501353,0.929937,0.307815,0.817189,0.454702,0.341611,0.289734,0.558468,0.343955,0.423797,0.813989,0.667107,0.362674,0.825817,0.514556,0.789915,0.495906,0.448558,0.700276,0.819192,0.354366,0.953592,0.613803,0.666439,0.016673,0.70734,0.513672,0.735789,0.0273335,0.363455,0.657367,0.392272,0.390215,0.705111,0.509992,0.814865,0.35567,0.591089,0.5066,0.548488,0.520811,0.446438,0.303665,0.730381,0.431374,0.19718,0.950489,0.91187,0.753922,0.291837,0.878461,0.579543,0.239863,0.706058,0.973488,0.914387,0.127353,0.369727,0.890412,0.420043,0.788685,0.657891,0.00712049,0.994716,0.604715,0.0260305,0.00277615,0.374214,0.476567,0.356511,0.763805,0.392875,0.899902,0.682446,0.828729,0.335091,0.204085,0.123802,0.936303,0.635301,0.15604,0.427031,0.328414,0.395435,0.195624,0.767602,0.336491,0.331466,0.18191,0.669645,0.725412,0.865956,0.0848384,0.655855,0.443287,0.241125,0.387918,0.0640648,0.20707,0.526951,0.10057,0.113559,0.743923,0.486213,0.709769,0.26775,0.710515,0.114007,0.843151,0.781577,0.531317,0.794416,0.290507,0.709305,0.107672,0.666824,0.469879,0.399574,0.561231,0.732187,0.302049,0.153395,0.687837,0.0922178,0.260334,0.64752,0.0289686,0.79471,0.4171,0.924656,0.122881,0.662252,0.249803,0.47239,0.453413,0.524336,0.227545,0.645056,0.913095,0.734506,0.602525,0.959359,0.788061,0.878143,0.21805,0.759883,0.207634,0.150652,0.921905,0.706155,0.505186,0.088441,0.186196,0.942175,0.291652,0.227397,0.336319,0.929958,0.799224,0.918407,0.556797,0.571999,0.801713,0.00845683,0.92259,0.271171,0.761696,0.885678,0.188933,0.423829,0.449311,0.5563,0.432076,0.658989,0.747444,0.901251,0.834821,0.086069,0.553259,0.135327,0.696483,0.33523,0.180501,0.245704,0.971415,0.938831,0.0998728,0.508157,0.282099,0.427598,0.74013,0.159026,0.462543,0.153418,0.650671,0.79784,0.136366,0.320154,0.589036,0.299993,0.74953,0.104177,0.956862,0.763322,0.685296,0.736448,0.761657,0.697418,0.0954783,0.389908,0.170977,0.0696669,0.580682,0.136418,0.81918,0.443496,0.231905,0.23147,0.570688,0.74117,0.0184737,0.0351784,0.782547,0.0737577,0.411613,0.621187,0.0161312,0.983682,0.853662,0.274217,0.441594,0.549184,0.373498,0.828726,0.410649,0.0610248,0.518073,0.290277,0.466476,0.017045,0.277877,0.324391,0.148941,0.882259,0.407433,0.989771,0.853057,0.423212,0.560539,0.916829,0.684178,0.740839,0.686358,0.668278,0.58578,0.959654,0.882769,0.83247,0.455766,0.161109,0.304572,0.479068,0.133626,0.533456,0.0121079,0.663371,0.84317,0.963786,0.812316,0.163983,0.0192361,0.933931,0.0961402,0.962698,0.976667,0.180317,0.11404,0.369611,0.729244,0.634508,0.0885413,0.884805,0.214902,0.871362,0.696549,0.00813854,0.505853,0.432871,0.934395,0.704114,0.465008,0.536905,0.00253403,0.684519,0.890881,0.904941,0.227624,0.0306646,0.415567,0.936583,0.584032,0.451204,0.410383,0.517532,0.931628,0.840142,0.142768,0.540403,0.135989,0.089071,0.736673,0.191569,0.403801,0.287969,0.207651,0.64499,0.286632,0.0796869,0.907188,0.694197,0.157397,0.95405,0.987527,0.460729,0.703687,0.961218,0.440647,0.340933,0.151713,0.543032,0.384057,0.947412,0.904332,0.687192,0.292407,0.104162,0.545465,0.665121,0.949323,0.976993,0.114684,0.116183,0.190097,0.294531,0.525981,0.203717,0.208334,0.63317,0.579306,0.927199,0.686086,0.316172,|0.0367853,0.419303,0.207508,0.591557,0.0459224,0.392109,0.604222,0.671174,0.371051,0.924614,0.043833,0.996736,0.951602,0.121256,0.135198,0.350071,0.489761,0.196587,0.252625,0.0204275,0.349765,0.19315,0.404857,0.329495,0.107143,0.464325,0.522815,0.400803,0.899468,0.838419,0.594802,0.594811,0.656718,0.0201115,0.744317,0.222618,0.419078,0.553304,0.124974,0.0605627,0.0700725,0.588191,0.0874992,0.219487,0.375073,0.674566,0.0281095,0.33263,0.317155,0.37414,0.312658,0.967261,0.681394,0.956149,0.660259,0.941024,0.746129,0.414255,0.406146,0.26294,0.893369,0.174175,0.485304,0.951645,0.356048,0.0706112,0.0393537,0.341906,0.59654,0.136738,0.77973,0.877243,0.0972775,0.231016,0.562206,0.44266,0.502656,0.43508,0.0743603,0.35069,0.603724,0.419385,0.764299,0.237883,0.272401,0.162836,0.36959,0.750856,0.740058,0.533118,0.302681,0.963231,0.0784875,0.0894696,0.129577,0.26821,0.476608,0.970766,0.250685,0.921229,0.25192,0.839998,0.169764,0.909486,0.640619,0.608955,0.813515,0.0725033,0.0927492,0.613748,0.304676,0.673038,0.144494,0.340891,0.965847,0.951587,0.116815,0.72157,0.452648,0.658862,0.280075,0.0267961,0.339846,0.803855,0.74199,0.0402382,0.0483982,0.0247747,0.499748,0.514626,0.927507,0.91441,0.156336,0.0333625,0.25925,0.894489,0.501396,0.891343,0.42799,0.219752,0.875669,0.251589,0.766413,0.919219,0.364402,0.47739,0.295107,0.611975,0.334157,0.417412,0.431456,0.540916,0.215938,0.955492,0.617136,0.443245,0.263812,0.0797487,0.834232,0.0517075,0.449898,0.786214,0.720517,0.821579,0.0580535,0.60278,0.966802,0.195482,0.218623,0.417134,0.720988,0.16147,0.204189,0.713368,0.0402046,0.308211,0.528408,0.0751714,0.172733,0.563152,0.533541,0.48851,0.923548,0.261638,0.524576,0.809695,0.387824,0.893076,0.847693,0.434598,0.777966,0.509584,0.593781,0.322809,0.922722,0.589926,0.307888,0.446115,0.557753,0.104737,0.531989,0.422322,0.521999,0.755907,0.977541,0.0606246,0.0837495,0.654058,0.787532,0.283226,0.50694,0.676122,0.393728,0.915713,0.316773,0.218125,0.793275,0.574837,0.054579,0.407796,0.925323,0.244946,0.251146,0.385994,0.804445,0.420819,0.215259,0.481824,0.880344,0.838294,0.243832,0.803191,0.487855,0.173021,0.749023,0.912644,0.963931,0.610894,0.997635,0.187981,0.469451,0.245723,0.841159,0.191776,0.0253074,0.59515,0.832553,0.642134,0.316978,0.976688,0.18208,0.170766,0.40602,0.566981,0.295783,0.247366,0.174873,0.519026,0.818288,0.410829,0.667347,0.995057,0.450403,0.219243,0.545915,0.987857,0.146404,0.470371,0.23932,0.909728,0.794518,0.72192,0.208041,0.622345,0.20049,0.535047,0.0280148,0.323036,0.276341,0.709413,0.190436,0.565451,0.802375,0.453969,0.85817,0.648558,0.527082,0.021753,0.0640171,0.379279,0.152302,0.00186658,0.977261,0.107085,0.542683,0.895045,0.44597,0.278623,0.731019,0.376963,0.541917,0.0111446,0.0943898,0.568735,0.192728,0.313917,0.335515,0.842487,0.594293,0.113871,0.665602,0.963943,0.344369,0.350282,0.176923,0.167636,0.719266,0.107057,0.526793,0.0954224,0.410635,0.89746,0.864999,0.288652,0.0303998,0.915714,0.99329,0.498564,0.540498,0.850347,0.360567,0.275937,0.570582,0.612662,0.157393,0.140488,0.00700128,0.731418,0.731914,0.971843,0.876561,0.0854297,0.534323,0.708829,0.780266,0.882211,0.472981,0.484142,0.540301,0.795066,0.0707801,0.103868,0.605471,0.773432,0.999224,0.900592,0.314677,0.447406,0.707368,0.64083,0.277559,0.0667487,0.290362,0.884947,0.0583721,0.0534327,0.000933766,0.702228,0.578515,0.884775,0.244137,0.526804,0.0389776,0.268436,0.988206,0.299896,0.367115,0.121597,0.81645,0.0140055,0.282091,0.164024,0.748137,0.505585,0.950498,0.0848725,0.0597081,0.873554,0.641822,0.832123,0.882097,0.34955,0.435855,0.694239,0.93215,0.560167,0.644742,0.975728,0.563367,0.0174636,0.210007,0.500083,0.821104,0.680906,0.683422,0.612518,0.555654,0.187698,0.772131,0.503545,0.276247,0.511406,0.67802,0.87412,0.375149,0.722239,0.556559,0.283104,0.0936908,0.613542,0.88516,0.223173,0.0595691,0.231085,0.257256,0.368352,0.418224,0.502268,0.376095,0.268548,0.638126,0.17854,0.488199,0.660402,0.979462,0.0267728,0.394996,0.913957,0.879529,0.0155756,0.250504,0.537669,0.823454,0.0765511,0.0673546,0.0781819,0.29099,0.624163,0.48264,0.723193,0.104913,0.902108,0.152603,0.5218,0.274582,0.388909,0.247776,0.870336,0.714942,0.379683,0.288399,0.543572,0.355721,0.711925,0.15384,0.265271,0.172581,0.204008,0.0378534,0.52827,0.641042,0.201209,0.381158,0.39364,0.600817,0.868154,0.38432,0.349752,0.554645,0.495454,0.298244,0.195367,0.873818,0.725247,0.0541117,0.7721,0.807846,0.402182,0.100677,0.884581,0.0267441,0.26242,0.533368,0.560521,0.235434,0.513169,0.960583,0.766085,0.994583,0.756349,0.900306,0.408238,0.211531,0.955111,0.366879,0.728732,0.821315,0.396999,0.858217,0.344881,0.64739,0.542624,0.939333,0.919552,0.962806,0.443468,0.179572,0.409571,0.806136,0.741371,0.577344,0.301794,0.934885,0.700355,0.430646,0.46548,0.8294,0.447411,0.700527,0.080053,0.963548,0.271512,0.249822,0.492191,0.317765,0.667596,0.482382,0.567364,0.339226,0.362492,0.952038,0.595933,0.921241,0.700589,0.993184,0.155808,0.165155,0.571095,0.328911,0.885975,0.3491,0.987528,0.0322789,0.55603,0.553726,0.600129,0.597905,0.347036,0.962395,0.571415,0.819659,0.725443,0.260292,0.106304,0.227051,0.472823,0.305636,0.360794,0.807493,0.907686,0.0637181,0.155029,0.845085,0.352606,0.536043,0.622518,0.337533,0.743935,0.817603,0.59727,0.0678348,0.215326,0.253344,0.461286,0.0387173,0.895776,0.912704,0.162211,0.607956,0.423572,0.417703,0.472655,0.715412,0.0353979,0.451904,0.731898,0.515361,0.455043,0.0185643,0.122572,0.538354,0.413649,0.478974,0.171459,0.670215,0.18359,0.245784,0.497531,0.585477,0.945088,0.26102,0.329686,0.346477,0.383247,0.825893,0.820703,0.246333,0.397847,0.031013,0.88921,0.56545,0.139825,0.412377,0.918504,0.261838,0.122068,0.125089,0.977335,0.0633988,0.759412,0.471815,0.0833756,0.22556,0.573788,0.490925,0.886445,0.382743,0.279299,0.432786,0.936365,0.941608,0.642484,0.497263,0.0105326,0.17295,0.123185,0.737442,0.372952,0.183291,0.77443,0.643057,0.956728,0.870253,0.3673,0.330138,0.0352932,0.300326,0.203778,0.540915,0.487864,0.648363,0.0285352,0.87211,0.0240393,0.0263971,0.483648,0.0860674,0.993806,0.925138,0.529085,0.685063,0.342184,0.620944,0.178949,0.834681,0.474808,0.590193,0.983709,0.820783,0.641573,0.504373,0.190091,0.502616,0.777484,0.300534,0.319699,0.000867486,0.803314,0.0238762,0.290078,0.245822,0.467214,0.0872889,0.246533,0.958817,0.11693,0.0801983,0.343288,0.662678,0.054843,0.381691,0.751396,0.291959,0.678961,0.976331,0.956562,0.480415,0.885362,0.237432,0.620143,0.170188,0.873062,0.840114,0.22375,0.203145,0.877849,0.694564,0.926426,0.917909,0.327729,0.453883,0.397525,0.933457,0.877426,0.591161,0.957179,0.82981,0.696024,0.206062,0.0635985,0.617556,0.219013,0.856148,0.742224,0.341819,0.356864,0.183639,0.567419,0.321305,0.900132,0.423262,0.207676,0.130043,0.917715,0.140202,0.656932,0.881772,0.097089,0.546685,0.476133,0.055519,0.256577,0.586503,0.872663,0.553659,0.513689,0.0549193,0.659328,0.11794,0.265,0.227606,0.782303,0.53944,0.208808,0.738096,0.967156,0.808835,0.656018,0.76971,0.507931,0.130515,0.484836,0.0989389,0.61461,0.88329,0.00742543,0.650807,0.833212,0.522995,0.78227,0.0459427,0.356417,0.510147,0.826177,0.71551,0.675535,0.276181,0.608334,0.392609,0.713829,0.99819,0.323475,0.612089,0.547512,0.89763,0.0347552,0.547196,0.0982633,0.765312,0.101186,0.33067,0.828655,0.579795,0.049632,0.51553,0.959826,0.417565,0.321032,0.225006,0.328872,0.47977,0.987912,0.222892,0.342229,0.787208,0.0472907,0.0783532,0.131581,0.662573,0.299904,0.752872,0.805134,0.349635,0.368568,0.00427002,0.827154,0.329139,0.9057,0.234641,0.722975,0.995338,0.681112,0.557555,0.289036,0.628526,0.754455,0.62111,0.69528,0.181575,0.675588,0.424712,0.947853,0.200861,0.771919,0.414611,0.401435,0.485865,0.766564,0.980541,0.538611,0.501876,0.41668,0.466298,0.301115,0.67936,0.987474,0.00408179,0.769756,0.242156,0.261663,0.230834,0.394211,0.494005,0.905793,0.293078,0.304984,0.65439,0.2615,0.0627675,0.746588,0.394131,0.995691,0.921746,0.268018,0.622364,0.65809,0.969274,0.28185,0.0814247,0.557271,0.991428,0.214161,0.837976,0.362833,0.143006,0.831088,0.840904,0.245105,0.283789,0.497101,0.201217,0.978251,0.226413,0.135935,0.502154,0.200921,0.649832,0.541056,0.022922,0.765262,0.222908,0.0283316,0.27817,0.929014,0.0407453,0.329061,0.311616,0.450169,0.148975,0.0255366,0.941595,0.314227,0.319301,0.579762,0.503731,0.10716,0.320126,0.857977,0.632699,0.769814,0.42699,0.855033,0.523778,0.750221,0.734852,0.11985,0.000141561,0.0804982,0.36716,0.148553,0.330851,0.898777,0.304352,0.377641,0.596806,0.233887,0.0807058,0.879235,0.693888,0.785215,0.613389,0.0761359,0.979807,0.422826,0.411711,0.825755,0.155772,0.519573,0.499251,0.425718,0.385733,0.552818,0.127643,0.556065,0.135509,0.723485,0.952992,0.719607,0.444683,0.782534,0.25519,0.434883,0.262423,0.723785,0.123303,0.541658,0.249999,0.481509,0.892301,0.599847,0.0160601,0.682496,0.537654,0.594268,0.472165,0.0513206,0.0454024,0.936406,0.162018,0.72916,0.537898,0.884141,0.595955,0.706869,0.123083,0.0261429,0.225812,0.33039,0.185447,0.454419,0.177189,0.399345,0.685105,0.478835,0.580641,0.263386,0.443503,0.0842601,0.933683,0.509558,|0.23435,0.173806,0.248534,0.695844,0.145385,0.745717,0.330652,0.727135,0.494259,0.0421184,0.480984,0.135674,0.989211,0.961137,0.953558,0.188633,0.285344,0.26725,0.804013,0.260569,0.695598,0.592704,0.895469,0.582406,0.409594,0.280731,0.697443,0.354866,0.734463,0.611876,0.976612,0.493503,0.85692,0.916652,0.31326,0.689058,0.782033,0.490743,0.236906,0.855222,0.517711,0.957041,0.546455,0.498402,0.608744,0.267165,0.0992111,0.372979,0.642347,0.280907,0.467385,0.739034,0.820022,0.60081,0.389276,0.66205,0.0898887,0.0695484,0.248321,0.171649,0.628085,0.0569155,0.393797,0.367214,0.470147,0.709335,0.262539,0.258049,0.517362,0.322832,0.95523,0.395101,0.873826,0.889654,0.660165,0.00520903,0.849846,0.589957,0.625929,0.409919,0.152315,0.651495,0.788579,0.420379,0.415128,0.442261,0.24409,0.144851,0.783708,0.0799945,0.46139,0.244924,0.423347,0.990232,0.275236,0.46625,0.142253,0.434255,0.581845,0.333719,0.787858,0.143146,0.107139,0.598253,0.43673,0.743796,0.547384,0.463423,0.184293,0.470179,0.832498,0.0917886,0.911287,0.623303,0.865993,0.297885,0.971952,0.519621,0.340211,0.246383,0.01385,0.711326,0.387529,0.100394,0.337963,0.681361,0.783896,0.265191,0.700695,0.893066,0.886926,0.0436004,0.274245,0.0213135,0.757889,0.692704,0.326443,0.515499,0.139795,0.878248,0.302198,0.56947,0.828633,0.011744,0.857039,0.725168,0.534219,0.231097,0.381519,0.269164,0.371768,0.466455,0.945419,0.57538,0.982274,0.936955,0.500657,0.188103,0.98112,0.599762,0.748825,0.803256,0.990008,0.413145,0.976495,0.936199,0.271252,0.967879,0.951695,0.408005,0.876599,0.336598,0.284335,0.00562555,0.0505684,0.758735,0.283002,0.927979,0.670991,0.310199,0.081677,0.287426,0.00212163,0.521818,0.220195,0.0395939,0.420134,0.669787,0.898376,0.990426,0.312359,0.555938,0.388398,0.918812,0.344754,0.152898,0.942369,0.0667631,0.0829453,0.84604,0.479288,0.290144,0.434401,0.143488,0.269515,0.0201679,0.132916,0.131683,0.976448,0.748814,0.571699,0.719558,0.378635,0.331861,0.381598,0.422895,0.952843,0.0139602,0.703898,0.309367,0.73656,0.300808,0.193569,0.209141,0.544245,0.740487,0.405752,0.792244,0.188487,0.154291,0.482748,0.298127,0.437041,0.60771,0.394727,0.594912,0.536918,0.0663863,0.770833,0.520955,0.868551,0.0636173,0.743265,0.0556239,0.179966,0.376271,0.25601,0.0415604,0.242112,0.170653,0.987614,0.171049,0.885871,0.950621,0.786282,0.747977,0.389846,0.942464,0.795472,0.1634,0.442757,0.13392,0.810961,0.408998,0.0834827,0.894294,0.629924,0.400991,0.187037,0.534287,0.640014,0.579293,0.685181,0.479004,0.466493,0.982,0.13782,0.8541,0.540904,0.541517,0.872884,0.1597,0.478576,0.159,0.474532,0.0354552,0.509865,0.862519,0.900236,0.263847,0.885826,0.167936,0.380791,0.321487,0.156489,0.92175,0.980962,0.134871,0.862633,0.311214,0.12193,0.142622,0.065234,0.766705,0.575718,0.814955,0.119044,0.534144,0.876467,0.379924,0.949669,0.0606471,0.532466,0.552928,0.843354,0.97611,0.863501,0.502181,0.900792,0.785132,0.873123,0.1438,0.745874,0.566095,0.483595,0.144084,0.258253,0.975943,0.697466,0.353484,0.681141,0.68846,0.602505,0.318966,0.745159,0.846685,0.886144,0.687631,0.352571,0.122491,0.766643,0.865965,0.144802,0.628315,0.643178,0.854642,0.974922,0.523216,0.99611,0.771238,0.85742,0.592813,0.98405,0.563597,0.615909,0.276617,0.435186,0.936511,0.831175,0.000462294,0.555871,0.551631,0.273712,0.788126,0.682459,0.366775,0.804087,0.938819,0.792759,0.603711,0.0362833,0.302518,0.623542,0.879047,0.0553063,0.573907,0.131308,0.587768,0.065249,0.926427,0.93381,0.125471,0.068572,0.337554,0.39294,0.785051,0.22221,0.516981,0.714333,0.00406921,0.246842,0.969316,0.0400606,0.721992,0.729071,0.619129,0.158627,0.0643846,0.31518,0.444763,0.27035,0.373911,0.356718,0.251791,0.0055244,0.471876,0.802104,0.607322,0.0402721,0.0756158,0.0242547,0.483936,0.0279765,0.665429,0.370558,0.783255,0.989734,0.747538,0.672617,0.0987082,0.844699,0.522325,0.0818224,0.0706471,0.518383,0.140512,0.154237,0.718852,0.826851,0.411468,0.909778,0.415343,0.72092,0.237943,0.22864,0.553551,0.151627,0.174704,0.213699,0.935096,0.655552,0.259295,0.819102,0.706555,0.579131,0.769096,0.245672,0.950942,0.0264574,0.766107,0.326749,0.0441315,0.00118053,0.137863,0.845355,0.905253,0.303725,0.407019,0.617936,0.221635,0.331722,0.716167,0.370553,0.356249,0.300768,0.146811,0.258538,0.0551842,0.100495,0.0596738,0.453555,0.910447,0.722714,0.0409347,0.781097,0.393302,0.29803,0.0219085,0.441959,0.277563,0.790838,0.00736386,0.168701,0.957534,0.0974308,0.408707,0.319606,0.0352916,0.101422,0.424115,0.887187,0.312819,0.420502,0.26049,0.1179,0.648637,0.801703,0.259915,0.99455,0.709886,0.964977,0.112195,0.951511,0.0438187,0.605251,0.901939,0.160811,0.780288,0.521297,0.299787,0.787245,0.318685,0.100469,0.630539,0.717499,0.689353,0.980569,0.11377,0.933586,0.548508,0.858384,0.457279,0.809123,0.80323,0.188734,0.197332,0.660452,0.758247,0.608091,0.666944,0.690901,0.810832,0.210519,0.414523,0.288838,0.55738,0.67045,0.702177,0.426443,0.34888,0.511307,0.952645,0.699548,0.668364,0.973805,0.179046,0.911912,0.774147,0.84736,0.615461,0.316326,0.566261,0.955665,0.714919,0.57755,0.233381,0.64266,0.583334,0.971126,0.912167,0.0943082,0.0292972,0.686186,0.196811,0.325134,0.615966,0.606011,0.367893,0.882587,0.0331989,0.858998,0.262422,0.716636,0.114652,0.863622,0.206706,0.173946,0.948164,0.368912,0.630039,0.10012,0.521375,0.615867,0.916952,0.998361,0.636457,0.448513,0.794948,0.654575,0.393803,0.208113,0.610828,0.87102,0.387024,0.296923,0.448423,0.831374,0.059458,0.0550249,0.0372269,0.434764,0.19585,0.543549,0.751761,0.178318,0.632291,0.747689,0.35601,0.632304,0.149172,0.545162,0.336445,0.770307,0.267224,0.583886,0.831656,0.0791377,0.89899,0.148547,0.18521,0.349602,0.598093,0.620258,0.198293,0.022904,0.00348508,0.952489,0.84059,0.579742,0.91372,0.04351,0.293565,0.19557,0.503838,0.222877,0.134645,0.304349,0.812472,0.487915,0.999568,0.741109,0.184401,0.600089,0.445388,0.105017,0.469517,0.991609,0.037917,0.722634,0.752635,0.936123,0.718341,0.13202,0.222139,0.764839,0.439802,0.385404,0.163576,0.129981,0.561348,0.317078,0.650846,0.696222,0.555226,0.769653,0.461594,0.524655,0.991169,0.00692296,0.7635,0.12449,0.484415,0.253644,0.315718,0.658108,0.146952,0.718499,0.853408,0.057623,0.874454,0.856368,0.207988,0.113442,0.334276,0.818938,0.353173,0.253806,0.959598,0.823091,0.478336,0.191144,0.350245,0.605897,0.303868,0.863759,0.00684804,0.938323,0.721867,0.0188708,0.394617,0.43674,0.868276,0.584442,0.497944,0.127703,0.0926591,0.432056,0.0276071,0.377845,0.266784,0.45483,0.977821,0.776109,0.201095,0.998962,0.705905,0.732738,0.0485986,0.739084,0.174675,0.884365,0.907095,0.0181695,0.0660452,0.0150612,0.977416,0.0283509,0.516257,0.826786,0.158912,0.162431,0.628226,0.817927,0.191819,0.0683947,0.290111,0.0952514,0.410961,0.891003,0.455828,0.287835,0.374926,0.322284,0.724371,0.868366,0.59494,0.193641,0.312251,0.386453,0.533561,0.927627,0.376555,0.855864,0.366343,0.858131,0.51639,0.0683225,0.458654,0.43206,0.963331,0.0644061,0.545014,0.306515,0.603248,0.101848,0.857187,0.0445879,0.480463,0.252438,0.907515,0.623077,0.386912,0.158361,0.0190899,0.020301,0.259808,0.533379,0.201626,0.266326,0.39351,0.526533,0.516195,0.361936,0.236162,0.84834,0.979011,0.0253375,0.102782,0.325233,0.531851,0.881372,0.392148,0.174757,0.799331,0.412268,0.380112,0.953074,0.427108,0.235363,0.676204,0.300954,0.369459,0.573696,0.61143,0.417655,0.0758185,0.543922,0.819567,0.779597,0.14488,0.462007,0.518351,0.03038,0.7444,0.332013,0.759538,0.271269,0.975194,0.725408,0.951052,0.184001,0.960963,0.0726359,0.822065,0.484618,0.644374,0.728705,0.52582,0.323703,0.305839,0.0901859,0.295495,0.721806,0.470976,0.742719,0.0976899,0.0980052,0.784831,0.651945,0.93076,0.236401,0.3526,0.675528,0.665322,0.477429,0.972772,0.512419,0.682934,0.359253,0.583465,0.119997,0.444602,0.870891,0.122318,0.638723,0.100641,0.029493,0.534772,0.60209,0.523001,0.806561,0.636121,0.670237,0.677251,0.760336,0.508718,0.987632,0.748077,0.785173,0.406198,0.302242,0.781417,0.00225222,0.287958,0.00733465,0.281957,0.657047,0.606918,0.757185,0.0362412,0.332768,0.377008,0.0905991,0.404568,0.638668,0.715743,0.757368,0.487894,0.675347,0.428578,0.15223,0.578508,0.570982,0.183982,0.807569,0.662681,0.0575066,0.0479697,0.870601,0.177002,0.524311,0.664346,0.00796467,0.99532,0.232091,0.515624,0.0547967,0.420734,0.101147,0.827077,0.284803,0.613787,0.632974,0.91203,0.721423,0.10666,0.805108,0.636873,0.804437,0.542704,0.111518,0.479068,0.0966005,0.420954,0.530608,0.187949,0.68452,0.187267,0.458418,0.671016,0.899866,0.266693,0.664259,0.402131,0.395438,0.667126,0.681216,0.969787,0.507748,0.0133736,0.715779,0.1114,0.511496,0.528237,0.869356,0.182771,0.966802,0.71517,0.646501,0.135593,0.460818,0.84302,0.748914,0.00111622,0.945338,0.743571,0.0190941,0.814643,0.779975,0.850427,0.461278,0.120872,0.975429,0.658384,0.0319688,0.472105,0.427214,0.356594,0.768439,0.267999,0.115573,0.248819,0.179065,0.861796,0.358136,0.657174,0.802674,0.420013,0.0563562,0.579898,0.948018,0.626666,0.746234,0.0445893,0.238363,0.361284,0.904282,0.636974,0.221932,0.498038,0.47417,0.857298,0.713484,0.403267,0.00178158,0.709205,0.909332,0.481375,0.269692,0.515928,|0.162466,0.856737,0.155369,0.42177,0.62659,0.298943,0.490073,0.874871,0.0272041,0.741786,0.136691,0.332547,0.173538,0.765639,0.528644,0.914348,0.954763,0.597662,0.663705,0.964457,0.548546,0.370835,0.0248365,0.978201,0.200652,0.7524,0.221788,0.403412,0.884401,0.859716,0.13443,0.274114,0.501455,0.0989679,0.503585,0.35106,0.369029,0.543396,0.556581,0.232321,0.0937526,0.926203,0.343689,0.0311318,0.282647,0.397211,0.0502691,0.170868,0.00106704,0.594718,0.80919,0.767668,0.76845,0.562426,0.108677,0.0713432,0.0525872,0.268147,0.567201,0.222259,0.432049,0.0913948,0.22301,0.504062,0.490164,0.238204,0.411286,0.498128,0.48227,0.255513,0.480065,0.429734,0.96393,0.836106,0.706636,0.325526,0.743317,0.136872,0.654644,0.22263,0.122105,0.805441,0.338482,0.50595,0.466299,0.908897,0.166511,0.134457,0.642679,0.0224577,0.646699,0.129408,0.260864,0.866138,0.982436,0.34686,0.979804,0.0301052,0.743898,0.974104,0.0542045,0.421827,0.497771,0.744832,0.301086,0.375775,0.0830406,0.870463,0.487294,0.51032,0.185131,0.547589,0.0582603,0.983979,0.898444,0.497076,0.925724,0.676622,0.379435,0.903516,0.403546,0.438415,0.892462,0.992663,0.45919,0.387526,0.487217,0.841891,0.421764,0.025497,0.518096,0.465368,0.384408,0.47508,0.393896,0.519205,0.747391,0.492848,0.311302,0.524697,0.659945,0.552884,0.977641,0.174997,0.725696,0.590013,0.53441,0.695664,0.415804,0.52568,0.261758,0.325349,0.53157,0.998393,0.323142,0.050943,0.0856286,0.818172,0.208232,0.243947,0.129405,0.393486,0.609677,0.966793,0.624544,0.344842,0.0526527,0.0915771,0.646515,0.432781,0.0815467,0.790803,0.42858,0.0769481,0.771332,0.626159,0.44643,0.979466,0.0727218,0.151936,0.427634,0.80246,0.554487,0.0306495,0.338647,0.462677,0.76115,0.696437,0.680847,0.78847,0.805289,0.180995,0.373803,0.83994,0.886327,0.0897344,0.34783,0.494253,0.48867,0.434388,0.908377,0.851533,0.160622,0.770815,0.415416,0.0703668,0.393096,0.799938,0.0886879,0.154924,0.83802,0.14737,0.986652,0.254671,0.94987,0.818489,0.457695,0.610712,0.626858,0.236257,0.17284,0.441266,0.733526,0.333507,0.718621,0.821293,0.726316,0.259565,0.355687,0.579156,0.4411,0.688068,0.424198,0.128197,0.292129,0.711986,0.466753,0.174907,0.304274,0.695028,0.685019,0.339126,0.358669,0.0291301,0.684491,0.290428,0.799305,0.337219,0.755722,0.142384,0.503263,0.43476,0.613675,0.155673,0.885591,0.51972,0.758554,0.524421,0.197884,0.10214,0.45063,0.576199,0.828142,0.682595,0.190695,0.238349,0.00679046,0.239666,0.171855,0.609001,0.775856,0.0356485,0.196049,0.529486,0.345646,0.871223,0.198361,0.863667,0.172462,0.408603,0.952279,0.98949,0.638721,0.804503,0.968697,0.110359,0.121788,0.556601,0.350941,0.584355,0.0930686,0.91235,0.821307,0.851833,0.892862,0.200808,0.122507,0.330463,0.0268441,0.369465,0.823231,0.174952,0.825083,0.732211,0.591119,0.316091,0.208087,0.161266,0.549411,0.378655,0.566369,0.598112,0.7379,0.996204,0.621844,0.00532961,0.0369011,0.406484,0.532681,0.576684,0.206795,0.740994,0.352462,0.348851,0.45913,0.0456546,0.836528,0.0361606,0.309677,0.762773,0.501869,0.613175,0.53361,0.582665,0.409211,0.716231,0.700461,0.49834,0.178765,0.33509,0.476674,0.275975,0.482871,0.343696,0.0475979,0.431235,0.274742,0.191371,0.282164,0.910726,0.758532,0.0760352,0.432274,0.577548,0.564238,0.709834,0.0691432,0.400809,0.858792,0.768568,0.244653,0.919667,0.25642,0.902579,0.443777,0.791841,0.136102,0.61507,0.207049,0.341801,0.349863,0.630441,0.114171,0.754792,0.0566487,0.757784,0.642142,0.447574,0.193501,0.423802,0.306135,0.231508,0.442839,0.611621,0.0250104,0.245875,0.566885,0.991297,0.935547,0.791126,0.772979,0.0434225,0.0202385,0.0449939,0.743656,0.0612196,0.499148,0.212861,0.200451,0.447032,0.933912,0.476209,0.973851,0.693046,0.386017,0.842991,0.920827,0.690014,0.650381,0.249796,0.464866,0.600948,0.483085,0.170472,0.455388,0.282413,0.55556,0.592949,0.997012,0.951669,0.580262,0.832415,0.704359,0.674304,0.0685059,0.982316,0.0571811,0.523592,0.748807,0.870089,0.115196,0.330017,0.63261,0.8819,0.104387,0.0103015,0.27727,0.233086,0.0178916,0.322081,0.311051,0.188782,0.0527476,0.488,0.148145,0.310521,0.519096,0.462227,0.882101,0.131047,0.0597057,0.837353,0.511247,0.993704,0.728736,0.45254,0.212958,0.971068,0.0107638,0.208985,0.816518,0.702123,0.569684,0.13318,0.456873,0.0253116,0.0883684,0.67469,0.274583,0.86773,0.0141783,0.185438,0.916282,0.700814,0.704764,0.528625,0.0600187,0.00898165,0.516506,0.145455,0.160151,0.667081,0.190483,0.00546384,0.422422,0.167705,0.0546461,0.479144,0.517762,0.598019,0.0400924,0.905383,0.53818,0.429976,0.682098,0.786865,0.879409,0.417029,0.169134,0.317559,0.955121,0.265065,0.505469,0.021753,0.8696,0.942101,0.525802,0.494925,0.465334,0.408232,0.202077,0.0693668,0.803578,0.736226,0.441358,0.65109,0.710126,0.52285,0.399968,0.325598,0.0555775,0.275309,0.267167,0.934073,0.718539,0.62396,0.857369,0.949832,0.581366,0.0153825,0.31408,0.717086,0.830394,0.948931,0.866827,0.235462,0.947664,0.203791,0.631804,0.538546,0.362759,0.804429,0.240707,0.541496,0.604382,0.340356,0.854667,0.312428,0.32454,0.927569,0.554245,0.767013,0.143978,0.710571,0.187798,0.0232069,0.488772,0.410148,0.538816,0.669519,0.922898,0.892202,0.638545,0.773979,0.743136,0.306656,0.215311,0.375932,0.218292,0.703731,0.165337,0.181573,0.0671496,0.951843,0.260786,0.648985,0.961996,0.101149,0.53315,0.580721,0.0707746,0.317948,0.562236,0.354731,0.322014,0.0495737,0.267776,0.321978,0.188417,0.5359,0.133233,0.718934,0.485951,0.344301,0.941502,0.805884,0.962098,0.319957,0.474335,0.844369,0.00514036,0.36007,0.987668,0.199505,0.347726,0.347049,0.733468,0.972854,0.43975,0.11562,0.744824,0.902731,0.501781,0.350533,0.550083,0.664595,0.0265618,0.286335,0.476999,0.965146,0.638886,0.738752,0.568531,0.434333,0.359171,0.157725,0.593319,0.399838,0.313658,0.323132,0.788578,0.232373,0.948625,0.963463,0.806522,0.0806629,0.126305,0.715267,0.329094,0.333448,0.237602,0.688596,0.956327,0.245693,0.0792869,0.387667,0.976144,0.798129,0.576617,0.960488,0.0693747,0.689318,0.77911,0.953534,0.532367,0.229926,0.82385,0.688138,0.270954,0.261988,0.328505,0.0567328,0.982666,0.934515,0.236491,0.0380737,0.410485,0.702104,0.771721,0.115009,0.794006,0.862362,0.186219,0.711283,0.0514925,0.248719,0.264575,0.0889792,0.95686,0.73376,0.37377,0.92844,0.839854,0.965632,0.02017,0.999623,0.686256,0.482199,0.958588,0.703301,0.192152,0.944537,0.708123,0.753673,0.318504,0.688338,0.0921066,0.315372,0.449347,0.388497,0.224763,0.735497,0.572568,0.979825,0.797151,0.59514,0.367628,0.910106,0.921588,0.815465,0.115319,0.552882,0.694659,0.478634,0.742992,0.619973,0.526495,0.071724,0.868487,0.612992,0.831256,0.571287,0.0664665,0.78112,0.0230168,0.512851,0.197015,0.160764,0.307787,0.858853,0.469008,0.743451,0.456588,0.806658,0.741488,0.727803,0.173799,0.493577,0.227199,0.976346,0.866488,0.493958,0.918092,0.935262,0.354049,0.259545,0.798557,0.411871,0.346673,0.552548,0.0643833,0.27993,0.0207464,0.967862,0.418275,0.903062,0.494702,0.0836086,0.957247,0.517838,0.979653,0.231453,0.667967,0.756175,0.922651,0.656944,0.529294,0.539552,0.198148,0.0737992,0.896348,0.641278,0.0153307,0.101816,0.0271524,0.301827,0.411037,0.719173,0.818942,0.910256,0.880594,0.318934,0.929708,0.742682,0.387091,0.40861,0.722926,0.131915,0.542141,0.421803,0.919745,0.0161805,0.0398378,0.360199,0.738803,0.636952,0.641721,0.0870045,0.145771,0.675845,0.91566,0.313968,0.865656,0.0690187,0.0191054,0.707052,0.725276,0.948917,0.96348,0.868549,0.720404,0.150749,0.143024,0.558393,0.106156,0.590955,0.968855,0.987536,0.279203,0.541958,0.741087,0.0406804,0.528741,0.650038,0.919363,0.709371,0.269347,0.521421,0.410543,0.620894,0.113721,0.0701902,0.232723,0.172595,0.148587,0.75379,0.468238,0.691372,0.7462,0.468006,0.626949,0.101521,0.803123,0.62479,0.0262722,0.0234614,0.783584,0.57327,0.968595,0.926996,0.766679,0.284656,0.925689,0.917796,0.559526,0.810596,0.762116,0.143895,0.56554,0.814619,0.51813,0.808332,0.895517,0.615995,0.32051,0.0789424,0.131419,0.590299,0.244495,0.977105,0.523392,0.0813918,0.634379,0.130959,0.576096,0.494994,0.638768,0.572692,0.183964,0.959071,0.21893,0.734764,0.944453,0.106163,0.211481,0.435452,0.901326,0.266589,0.723601,0.875768,0.400912,0.744599,0.824053,0.329585,0.32113,0.603515,0.737582,0.6653,0.21789,0.186864,0.123837,0.434366,0.501818,0.749928,0.604374,0.893816,0.172688,0.305221,0.753678,0.529955,0.734253,0.0510636,0.947024,0.00810713,0.210536,0.599407,0.260711,0.324217,0.306306,0.50155,0.519847,0.655643,0.336064,0.0307521,0.528625,0.0324213,0.325598,0.966431,0.286451,0.757331,0.755048,0.105754,0.159905,0.352803,0.490452,0.132015,0.946409,0.126831,0.956188,0.748498,0.477851,0.151628,0.847031,0.0220807,0.165056,0.814042,0.378557,0.932903,0.895776,0.390278,0.874883,0.155501,0.512741,0.295202,0.392801,0.580268,0.612166,0.969405,0.629109,0.901686,0.347027,0.640664,0.871365,0.617081,0.141567,0.0306093,0.276838,0.998035,0.58992,0.0219639,0.0980735,0.979099,0.0496224,0.0879186,0.9522,0.093679,0.10092,0.848339,0.792403,0.993644,0.266281,0.632803,0.145912,0.220644,0.667576,0.254505,0.178602,0.263376,0.280939,0.0247144,0.0670614,0.716142,0.473821,0.601524,0.469095,0.346804,0.0947921,0.336408,0.868892,0.768453,|0.322791,0.353469,0.277009,0.171411,0.0976101,0.84173,0.571296,0.3764,0.339788,0.0569094,0.638652,0.797434,0.240905,0.923707,0.334802,0.492911,0.548306,0.814,0.956307,0.208321,0.0267527,0.539171,0.0370563,0.614492,0.354288,0.481125,0.491088,0.755448,0.456709,0.355904,0.973903,0.62309,0.0341291,0.998913,0.230095,0.249484,0.258022,0.193531,0.241028,0.619657,0.93058,0.528224,0.826376,0.00368279,0.878204,0.154869,0.218017,0.100062,0.0159075,0.301591,0.488322,0.19637,0.590167,0.756214,0.582724,0.0905346,0.386212,0.868214,0.960946,0.111216,0.773318,0.219244,0.811786,0.24809,0.772616,0.618605,0.846306,0.423475,0.0583976,0.062802,0.0131051,0.129997,0.65763,0.898042,0.694549,0.00086993,0.478137,0.460655,0.42795,0.412349,0.533208,0.0809234,0.317147,0.631343,0.717405,0.106871,0.481406,0.659043,0.0642927,0.81483,0.388921,0.131779,0.217341,0.501463,0.851193,0.793325,0.168932,0.120006,0.653301,0.679618,0.433471,0.429516,0.642363,0.948256,0.682388,0.24765,0.886118,0.207383,0.155282,0.649073,0.680853,0.215277,0.747721,0.533823,0.958422,0.526126,0.69182,0.399489,0.14402,0.111657,0.23804,0.428321,0.423701,0.827378,0.320227,0.110247,0.353897,0.961465,0.473068,0.779822,0.621449,0.921798,0.08607,0.131638,0.200115,0.247969,0.629874,0.618371,0.925498,0.183668,0.667185,0.623116,0.676691,0.648737,0.231673,0.632625,0.995045,0.316851,0.602125,0.256892,0.399107,0.276349,0.0369881,0.191261,0.0656403,0.165388,0.162435,0.584833,0.65426,0.183022,0.512128,0.585679,0.510044,0.390458,0.328362,0.630418,0.40347,0.165906,0.924419,0.204912,0.290421,0.280361,0.190364,0.735155,0.525892,0.319263,0.827931,0.25752,0.5627,0.92672,0.165062,0.17104,0.625915,0.0763878,0.591606,0.851471,0.577477,0.143837,0.933403,0.301035,0.141596,0.914934,0.0853391,0.461782,0.756024,0.564675,0.747384,0.728983,0.0302345,0.325155,0.461432,0.579942,0.955631,0.379235,0.730652,0.471727,0.0156893,0.130248,0.761324,0.606488,0.55843,0.851448,0.524833,0.43421,0.379716,0.908484,0.966183,0.195543,0.569777,0.720294,0.664934,0.868009,0.845535,0.192851,0.577811,0.110968,0.85092,0.659755,0.454795,0.259597,0.274504,0.0376346,0.0867016,0.830317,0.735305,0.247402,0.613862,0.109058,0.715544,0.00664937,0.543018,0.763364,0.603666,0.271777,0.960716,0.526797,0.330334,0.273983,0.0633602,0.530419,0.897654,0.1582,0.590299,0.796984,0.407256,0.362056,0.612227,0.642353,0.669423,0.365141,0.236185,0.141776,0.121422,0.0349388,0.654941,0.34033,0.44284,0.216236,0.157244,0.619063,0.936954,0.247922,0.146812,0.727224,0.38599,0.910503,0.987971,0.100414,0.0902435,0.823176,0.760856,0.404597,0.750623,0.120935,0.738382,0.366858,0.24795,0.981387,0.302304,0.112703,0.192562,0.997041,0.814206,0.758474,0.62574,0.805163,0.519521,0.035106,0.781929,0.586292,0.792054,0.478786,0.661866,0.334672,0.776366,0.630955,0.293783,0.948283,0.868633,0.789194,0.437583,0.765792,0.470249,0.842209,0.168834,0.594508,0.891845,0.745892,0.423435,0.548162,0.28842,0.143427,0.589152,0.508694,0.39328,0.560163,0.368434,0.908229,0.423561,0.707677,0.661167,0.551934,0.184604,0.982402,0.228083,0.579919,0.831533,0.878056,0.733864,0.616481,0.195163,0.215118,0.283173,0.815664,0.646557,0.0323946,0.483864,0.904539,0.1901,0.62284,0.241733,0.676472,0.928749,0.82655,0.751527,0.236667,0.186849,0.503341,0.310002,0.645032,0.564766,0.265129,0.525516,0.0378377,0.744951,0.508622,0.764215,0.508484,0.0275797,0.837292,0.92753,0.156284,0.213689,0.332618,0.513722,0.891508,0.648767,0.293497,0.417074,0.0464749,0.198342,0.913714,0.468611,0.0988964,0.895366,0.924704,0.759378,0.535847,0.918193,0.000439405,0.214128,0.563602,0.468635,0.100515,0.0513409,0.257319,0.636987,0.61664,0.412238,0.595716,0.777619,0.425957,0.916583,0.118966,0.815619,0.5753,0.0640103,0.723468,0.038443,0.821427,0.362643,0.57666,0.16956,0.802292,0.620713,0.0502616,0.780279,0.599713,0.395631,0.27179,0.7289,0.360081,0.611365,0.172403,0.350124,0.947787,0.209975,0.338047,0.344327,0.0313312,0.330634,0.188242,0.304473,0.194754,0.0472077,0.680882,0.0764365,0.76936,0.127596,0.626174,0.543132,0.195022,0.484537,0.807933,0.153855,0.644854,0.350986,0.81518,0.421534,0.953074,0.50359,0.865199,0.0452093,0.705527,0.286011,0.0744785,0.810783,0.0272279,0.224992,0.447503,0.33833,0.918804,0.239437,0.974221,0.275892,0.577695,0.437728,0.153243,0.592731,0.49627,0.949297,0.209659,0.257216,0.168977,0.585219,0.348092,0.144972,0.437038,0.986912,0.210663,0.161161,0.911615,0.431206,0.649432,0.52116,0.689709,0.162922,0.983985,0.739486,0.170757,0.697754,0.468295,0.260964,0.894216,0.0124274,0.723518,0.276924,0.864365,0.296044,0.649998,0.961175,0.427421,0.142567,0.622667,0.443198,0.220909,0.147515,0.00391537,0.814791,0.708992,0.307989,0.60241,0.396012,0.843244,0.483497,0.928415,0.348006,0.624928,0.270051,0.0979605,0.83991,0.192208,0.277246,0.891857,0.503008,0.044009,0.920477,0.785409,0.404176,0.767945,0.982696,0.87165,0.121631,0.107066,0.969548,0.416284,0.508367,0.471469,0.0874975,0.824409,0.472708,0.992494,0.754215,0.622248,0.742821,0.223672,0.362245,0.763028,0.120334,0.261818,0.209115,0.938353,0.163309,0.93122,0.719606,0.157076,0.772202,0.268152,0.110457,0.651518,0.835678,0.409682,0.435012,0.30369,0.652663,0.634695,0.17226,0.893559,0.589476,0.610609,0.120573,0.862379,0.662664,0.214891,0.28233,0.0337288,0.646802,0.496501,0.895407,0.599163,0.674007,0.315423,0.880073,0.340111,0.00915456,0.278444,0.77429,0.819389,0.185421,0.754418,0.281417,0.254052,0.362577,0.228407,0.844881,0.752659,0.861125,0.655332,0.583373,0.349186,0.571093,0.196471,0.541051,0.0875176,0.166048,0.948821,0.936199,0.517677,0.422042,0.296189,0.830134,0.3444,0.716428,0.219407,0.639857,0.924126,0.160621,0.517591,0.461946,0.379453,0.209207,0.382533,0.499117,0.757668,0.239561,0.928677,0.925946,0.672754,0.814797,0.733432,0.530253,0.307529,0.0645834,0.470481,0.0104356,0.0961965,0.0691619,0.341281,0.393822,0.906795,0.384036,0.571187,0.0647715,0.625599,0.755819,0.837803,0.657643,0.766357,0.190034,0.429883,0.53502,0.0507267,0.0900087,0.373692,0.395329,0.532144,0.117968,0.754695,0.811154,0.343085,0.00895101,0.798713,0.476533,0.81515,0.00137943,0.648087,0.523054,0.323443,0.7529,0.457211,0.421324,0.691121,0.403801,0.46314,0.690822,0.79278,0.798917,0.241284,0.203467,0.998989,0.148015,0.16582,0.581313,0.156687,0.190284,0.299765,0.611132,0.277677,0.759947,0.155905,0.89646,0.616768,0.0903548,0.723005,0.53373,0.273794,0.945529,0.999506,0.265719,0.783315,0.833619,0.13937,0.690112,0.185442,0.198446,0.93222,0.97697,0.757157,0.772013,0.644566,0.156738,0.299503,0.981177,0.530739,0.770062,0.321314,0.689488,0.317529,0.025066,0.250393,0.859372,0.151908,0.435815,0.726758,0.70237,0.372554,0.0706609,0.499454,0.479855,0.493897,0.0705984,0.881137,0.835157,0.57932,0.448509,0.699879,0.297861,0.689662,0.888894,0.40354,0.674736,0.259953,0.697278,0.423052,0.819028,0.672476,0.838571,0.539715,0.893775,0.922172,0.865597,0.368979,0.58311,0.703906,0.216106,0.313469,0.319625,0.345719,0.141779,0.0504986,0.274675,0.580339,0.652228,0.317404,0.394521,0.991957,0.355151,0.641595,0.262143,0.309526,0.391883,0.215648,0.723973,0.904048,0.951441,0.743656,0.115739,0.228134,0.260316,0.19568,0.278947,0.141732,0.341719,0.184415,0.0552827,0.797088,0.561842,0.348157,0.5448,0.648732,0.959074,0.54913,0.655306,0.21616,0.000437438,0.0427947,0.892204,0.914791,0.797868,0.282495,0.0801355,0.962264,0.95727,0.348267,0.0614734,0.736744,0.46875,0.569715,0.262246,0.353984,0.780389,0.669697,0.0911405,0.863153,0.979054,0.96215,0.698268,0.580202,0.680425,0.346367,0.0869205,0.694688,0.442646,0.340362,0.907515,0.428802,0.815471,0.277617,0.364019,0.164226,0.343153,0.240124,0.196184,0.516585,0.257393,0.573064,0.544443,0.881086,0.0284573,0.172557,0.477903,0.760009,0.243673,0.295141,0.802203,0.726857,0.0960511,0.407434,0.880233,0.538906,0.187212,0.328378,0.0351005,0.517871,0.433132,0.936097,0.23254,0.480283,0.0553858,0.854547,0.298251,0.727573,0.693265,0.520529,0.225125,0.86118,0.0408059,0.417325,0.202291,0.979739,0.0908949,0.207697,0.807934,0.568245,0.875772,0.658299,0.85417,0.928009,0.512253,0.816703,0.0649186,0.327165,0.924952,0.173497,0.435598,0.0569564,0.985789,0.184112,0.0761723,0.993939,0.616572,0.466082,0.339935,0.879995,0.461332,0.0741315,0.928694,0.354062,0.393038,0.608185,0.590718,0.864191,0.505342,0.0161463,0.490501,0.756896,0.669148,0.579626,0.315413,0.402706,0.00219774,0.488279,0.713315,0.544342,0.76979,0.975826,0.557639,0.553932,0.228535,0.550055,0.380101,0.188914,0.255838,0.656344,0.126692,0.744301,0.902773,0.528776,0.547809,0.213323,0.965246,0.125903,0.912768,0.440073,0.67943,0.162294,0.692552,0.0112793,0.37958,0.993798,0.186392,0.297683,0.103883,0.79001,0.207388,0.742373,0.70778,0.949428,0.920184,0.850845,0.774721,0.558759,0.260676,0.641626,0.408659,0.331136,0.577163,0.449819,0.562647,0.62819,0.395562,0.552206,0.640235,0.791916,0.257174,0.163611,0.919451,0.979879,0.931734,0.116077,0.444717,0.984171,0.401183,0.422769,0.761187,0.924017,0.475383,0.26231,0.417159,0.318511,0.185756,0.930679,0.592572,0.748756,0.49351,0.296246,0.734408,0.701655,0.340249,0.618619,0.162576,0.530565,0.836838,0.326764,0.726945,0.657571,0.979106,0.189551,0.615381,0.56929,|0.251652,0.32328,0.277009,0.304641,0.560734,0.49038,0.984183,0.197619,0.268322,0.452185,0.122955,0.91465,0.74728,0.229453,0.204023,0.276084,0.642199,0.522519,0.0340595,0.631894,0.0859417,0.925117,0.735145,0.943845,0.488988,0.142974,0.353831,0.169106,0.734144,0.280007,0.959087,0.315057,0.704983,0.805829,0.401272,0.423217,0.0529323,0.666591,0.194575,0.179035,0.976037,0.704127,0.178754,0.916626,0.0516277,0.718941,0.164105,0.818505,0.687402,0.356729,0.492179,0.768493,0.159169,0.0350451,0.338298,0.687463,0.621362,0.509619,0.700381,0.848558,0.929883,0.0379408,0.0683706,0.89506,0.257338,0.13024,0.942297,0.514224,0.7233,0.597557,0.803365,0.426147,0.780462,0.23525,0.138541,0.918489,0.416677,0.870676,0.448333,0.90489,0.862935,0.0109769,0.397153,0.694971,0.207164,0.0557377,0.136895,0.326072,0.039194,0.469805,0.773086,0.608332,0.923954,0.844912,0.833663,0.518825,0.40893,0.213731,0.119928,0.0173936,0.0179619,0.597253,0.956952,0.518492,0.14508,0.825624,0.908582,0.34076,0.540956,0.84839,0.632082,0.396226,0.257178,0.580727,0.155827,0.524841,0.724242,0.0985017,0.906433,0.0614438,0.148243,0.181796,0.895271,0.155448,0.211191,0.839387,0.986516,0.288101,0.779331,0.504912,0.928366,0.195125,0.784894,0.246381,0.0741451,0.593426,0.916293,0.123348,0.194116,0.335246,0.408996,0.375722,0.44519,0.690881,0.243891,0.437812,0.901894,0.0857282,0.745777,0.908655,0.392603,0.160226,0.777485,0.690241,0.891816,0.889847,0.569946,0.872208,0.463039,0.385946,0.312831,0.17948,0.565974,0.515757,0.792389,0.729822,0.23709,0.879045,0.602829,0.144454,0.529826,0.702427,0.0411521,0.513226,0.216524,0.922296,0.316843,0.865288,0.215708,0.681908,0.0897083,0.603566,0.935542,0.367709,0.792141,0.803961,0.20101,0.965805,0.525007,0.670281,0.978022,0.0306987,0.726167,0.722553,0.567573,0.571903,0.780807,0.957344,0.696921,0.245674,0.00457454,0.849074,0.539305,0.719319,0.163572,0.615414,0.0167823,0.636398,0.899717,0.134512,0.125924,0.595479,0.691649,0.747823,0.334086,0.256439,0.95232,0.657067,0.110209,0.223907,0.574361,0.640341,0.805141,0.0834252,0.822853,0.605143,0.36312,0.401608,0.488957,0.00829536,0.701918,0.177708,0.673134,0.467075,0.0916561,0.586831,0.40418,0.868914,0.103616,0.429017,0.376384,0.959983,0.301058,0.524924,0.75136,0.170827,0.148576,0.232619,0.970698,0.54362,0.617316,0.075733,0.0893403,0.375277,0.429063,0.214537,0.978251,0.458435,0.794173,0.30516,0.632799,0.668011,0.592951,0.406556,0.0923001,0.947116,0.0253618,0.211227,0.836145,0.15157,0.35582,0.856026,0.461626,0.202984,0.204411,0.306204,0.126961,0.311445,0.344358,0.551666,0.283774,0.669293,0.495666,0.0780972,0.879849,0.297377,0.304637,0.986676,0.823417,0.157623,0.323982,0.834273,0.189164,0.412324,0.0471122,0.455417,0.626036,0.105535,0.34997,0.583799,0.450431,0.681889,0.658078,0.272005,0.478497,0.857317,0.265432,0.18631,0.69508,0.201172,0.352332,0.547746,0.818078,0.117748,0.598774,0.39327,0.36263,0.154783,0.689794,0.0972593,0.580846,0.942893,0.151035,0.356738,0.228852,0.897577,0.131555,0.266432,0.382878,0.026799,0.912216,0.684007,0.771614,0.718599,0.494059,0.133085,0.366772,0.0740512,0.365831,0.165641,0.643237,0.990885,0.84251,0.824669,0.670201,0.555229,0.778195,0.906716,0.602246,0.139235,0.902577,0.14156,0.43132,0.666821,0.200733,0.175239,0.480519,0.145848,0.794493,0.173006,0.401278,0.259598,0.184956,0.591539,0.502593,0.882571,0.960563,0.241489,0.166931,0.672747,0.0764253,0.826231,0.671683,0.860654,0.194625,0.6539,0.0713505,0.299106,0.415253,0.8899,0.256463,0.382171,0.456977,0.655738,0.0398982,0.650626,0.851287,0.590438,0.235073,0.735826,0.706567,0.0478373,0.182163,0.596601,0.152143,0.513191,0.218161,0.298976,0.437596,0.209857,0.357653,0.0378691,0.500683,0.565166,0.867008,0.711897,0.454845,0.251157,0.650044,0.84431,0.572205,0.472018,0.949936,0.820651,0.379991,0.601083,0.878208,0.582909,0.900595,0.897112,0.862347,0.303751,0.579918,0.670241,0.994893,0.31454,0.0138165,0.529723,0.946242,0.991137,0.581044,0.590336,0.29522,0.757509,0.670622,0.400976,0.851389,0.266001,0.349224,0.914082,0.978567,0.970749,0.142788,0.931361,0.543593,0.707916,0.225429,0.798703,0.538545,0.483988,0.150388,0.241727,0.505112,0.459645,0.19066,0.813453,0.324519,0.0656539,0.384678,0.0919417,0.122866,0.0391344,0.0958444,0.000956953,0.357213,0.874581,0.409021,0.771962,0.842171,0.454937,0.558718,0.294764,0.233909,0.409625,0.576543,0.548839,0.648521,0.212993,0.159764,0.342235,0.779584,0.604115,0.924327,0.776495,0.151857,0.666798,0.434041,0.154505,0.719593,0.219855,0.899593,0.507117,0.0968337,0.149615,0.656859,0.215361,0.371533,0.292465,0.0890362,0.513924,0.22911,0.985828,0.634688,0.6713,0.956338,0.0554991,0.791759,0.883911,0.660633,0.45533,0.614032,0.919539,0.0171721,0.632251,0.0695457,0.775544,0.420222,0.949661,0.847514,0.49138,0.173804,0.308101,0.39995,0.638071,0.402091,0.0786219,0.0205857,0.995107,0.408791,0.662232,0.162249,0.163052,0.725432,0.493222,0.305361,0.569342,0.944773,0.806673,0.992057,0.719497,0.292228,0.0640522,0.348459,0.87572,0.611523,0.972223,0.500581,0.520885,0.445287,0.749884,0.738753,0.937046,0.215946,0.33358,0.155922,0.0220022,0.583289,0.715782,0.0622771,0.999286,0.2436,0.0148306,0.0131455,0.542351,0.247848,0.987506,0.664083,0.256735,0.0738827,0.0616531,0.471023,0.678716,0.42142,0.393771,0.834749,0.946263,0.824566,0.0271958,0.605183,0.760216,0.0848423,0.515196,0.37506,0.125417,0.777937,0.0736089,0.995311,0.0934147,0.304693,0.701141,0.980437,0.524797,0.069527,0.982477,0.943729,0.556207,0.598452,0.601923,0.123891,0.460977,0.445786,0.762492,0.251098,0.880591,0.243223,0.0135977,0.0554903,0.971639,0.582636,0.0746629,0.370053,0.38731,0.497545,0.222615,0.943683,0.244081,0.00431174,0.359988,0.948922,0.643741,0.131204,0.57057,0.0805884,0.84209,0.0284087,0.845846,0.0682997,0.619688,0.344486,0.635078,0.41471,0.806592,0.383631,0.977876,0.307454,0.161204,0.369191,0.0301272,0.408339,0.0301738,0.270683,0.240024,0.824675,0.534116,0.44509,0.282251,0.240634,0.392403,0.810576,0.731486,0.743441,0.865289,0.121407,0.720472,0.45665,0.419022,0.799537,0.250619,0.115121,0.180028,0.577919,0.77724,0.043438,0.615566,0.528452,0.204136,0.565601,0.391485,0.717637,0.765789,0.791096,0.0134008,0.333988,0.434426,0.508499,0.598525,0.554977,0.757615,0.296059,0.808107,0.862568,0.799608,0.373249,0.674012,0.748771,0.761509,0.0206643,0.601071,0.736882,0.696782,0.196129,0.547836,0.645059,0.883998,0.160025,0.134546,0.376556,0.400336,0.52589,0.231508,0.0240393,0.358321,0.0885185,0.213628,0.161853,0.824211,0.984282,0.778918,0.46264,0.915158,0.554025,0.269748,0.959819,0.841382,0.736033,0.32857,0.989792,0.822423,0.414497,0.316845,0.523532,0.987881,0.480206,0.451877,0.813559,0.0357751,0.400583,0.330722,0.523762,0.909962,0.850553,0.547045,0.765295,0.525526,0.545041,0.646403,0.693235,0.227543,0.779481,0.288136,0.198427,0.99976,0.804008,0.527411,0.0874515,0.961293,0.270642,0.960359,0.6826,0.27358,0.65416,0.264096,0.768445,0.532002,0.0171538,0.69177,0.875304,0.368158,0.919612,0.249973,0.197396,0.740302,0.472747,0.595838,0.688793,0.940266,0.427687,0.883583,0.354443,0.0365871,0.357153,0.909491,0.122171,0.497309,0.0545169,0.527745,0.00704581,0.76189,0.165808,0.605175,0.280528,0.987915,0.208824,0.067938,0.137171,0.766867,0.605184,0.303611,0.93633,0.902432,0.00476509,0.956185,0.664947,0.411284,0.402243,0.573504,0.530386,0.952247,0.703698,0.306002,0.705748,0.491697,0.106055,0.447035,0.400079,0.538628,0.309972,0.0770051,0.144962,0.97599,0.494409,0.370398,0.580024,0.361074,0.252792,0.519191,0.347378,0.766253,0.856783,0.771715,0.541827,0.131241,0.890569,0.319008,0.262557,0.475547,0.597544,0.239606,0.374245,0.898853,0.536874,0.640998,0.23928,0.110142,0.436536,0.629813,0.353014,0.00768864,0.748943,0.251921,0.808499,0.82437,0.26508,0.619873,0.341625,0.91694,0.9183,0.933531,0.986605,0.105776,0.852511,0.322469,0.985543,0.292023,0.321507,0.241486,0.501154,0.37453,0.601637,0.628535,0.960387,0.0884271,0.0624247,0.423735,0.372344,0.476379,0.0809696,0.270748,0.187728,0.428097,0.740552,0.972707,0.075228,0.185915,0.583321,0.101533,0.0702164,0.970678,0.655286,0.196732,0.849557,0.062593,0.68263,0.19034,0.153049,0.368078,0.716638,0.406499,0.476325,0.591744,0.0201504,0.430565,0.0132502,0.377956,0.529395,0.120757,0.979538,0.254502,0.6353,0.358341,0.346225,0.291103,0.550229,0.527137,0.836306,0.597625,0.750766,0.962593,0.587097,0.795119,0.103898,0.718473,0.0743315,0.126062,0.718385,0.37097,0.441325,0.415277,0.424352,0.741222,0.651067,0.000815034,0.459054,0.935547,0.779136,0.808776,0.568483,0.670809,0.991537,0.0726122,0.568773,0.537523,0.501685,0.377655,0.523912,0.894567,0.619568,0.550987,0.141972,0.378587,0.280985,0.337713,0.780381,0.981358,0.245163,0.484696,0.17764,0.288744,0.997964,0.733367,0.237906,0.240619,0.111065,0.240354,0.999998,0.43476,0.697599,0.855129,0.728275,0.252354,0.679591,0.339785,0.911597,0.865284,0.151585,0.556246,0.370953,0.0226397,0.226928,0.648575,0.801258,0.530976,0.242781,0.159716,0.369673,0.359074,0.221472,0.123637,0.852918,0.723267,0.330057,0.673826,0.520039,0.159498,0.100601,0.185292,0.562152,0.277169,0.974296,0.446072,0.865346,0.0786851,0.981059,0.361616,0.640128,0.354026,0.0532438,0.969855,0.936184,0.807257,|0.598749,0.155525,0.458249,0.108093,0.919409,0.710732,0.196637,0.439018,0.624977,0.960928,0.321066,0.461722,0.501283,0.197313,0.597382,0.819898,0.416292,0.951608,0.877182,0.886594,0.869287,0.435922,0.163401,0.148009,0.916716,0.744479,0.761858,0.713307,0.372322,0.842671,0.615311,0.385,0.0943426,0.885832,0.0857892,0.101896,0.476092,0.208742,0.991729,0.0475959,0.60624,0.299247,0.231691,0.864342,0.477084,0.734594,0.979593,0.141747,0.782567,0.155342,0.0242278,0.147586,0.534646,0.330544,0.85381,0.515204,0.56574,0.736112,0.0618348,0.233296,0.462838,0.0655531,0.339811,0.724122,0.626323,0.0122493,0.613514,0.120609,0.628857,0.831528,0.779625,0.332138,0.866802,0.659456,0.156721,0.877089,0.369051,0.0857481,0.911929,0.861516,0.723831,0.0318234,0.770822,0.529391,0.397417,0.174346,0.696022,0.753812,0.950809,0.747019,0.237838,0.667862,0.139026,0.521975,0.585406,0.0533962,0.752232,0.664832,0.598755,0.675778,0.507677,0.329475,0.0456448,0.295241,0.434264,0.0851395,0.682392,0.364845,0.874606,0.0125483,0.457854,0.199603,0.0361639,0.955061,0.106678,0.391518,0.759194,0.124433,0.464167,0.370931,0.325954,0.511977,0.012625,0.689094,0.209112,0.397589,0.702154,0.372401,0.152556,0.037309,0.473357,0.682282,0.277017,0.0174881,0.524918,0.672939,0.145975,0.599302,0.0457526,0.298178,0.369223,0.0393436,0.311152,0.52892,0.346823,0.403882,0.91989,0.0442742,0.615881,0.430195,0.623866,0.50696,0.866543,0.0726718,0.859114,0.3997,0.640926,0.537176,0.114928,0.845489,0.350809,0.961351,0.132597,0.455676,0.668273,0.404721,0.668142,0.625381,0.677986,0.848928,0.391816,0.278263,0.217416,0.601752,0.0649237,0.652131,0.0802739,0.730477,0.365144,0.964334,0.843435,0.217936,0.0106894,0.113433,0.00955117,0.578296,0.568435,0.619021,0.0374864,0.942098,0.3925,0.99301,0.421473,0.39402,0.0525149,0.930873,0.046836,0.835939,0.284316,0.0698426,0.915107,0.348508,0.93885,0.272371,0.0301121,0.0204667,0.466609,0.766569,0.776612,0.675653,0.262024,0.818979,0.530504,0.513141,0.91946,0.685926,0.402212,0.746319,0.516291,0.4158,0.959513,0.712524,0.241548,0.855961,0.429122,0.41018,0.534898,0.0694894,0.139367,0.10105,0.831933,0.321693,0.0923897,0.293378,0.169811,0.84856,0.760382,0.98959,0.903915,0.112364,0.159054,0.964932,0.565881,0.746587,0.952159,0.546592,0.523008,0.362206,0.567467,0.58305,0.49336,0.123152,0.147923,0.164262,0.815276,0.49046,0.346198,0.903454,0.955809,0.872998,0.149607,0.0643656,0.320518,0.719858,0.0426253,0.385521,0.854949,0.533348,0.5723,0.234162,0.621315,0.612952,0.353954,0.248201,0.899031,0.728162,0.261621,0.916342,0.574692,0.487731,0.924129,0.592501,0.0475452,0.678221,0.146725,0.1687,0.169122,0.629044,0.524491,0.454952,0.599186,0.591274,0.934617,0.485597,0.913413,0.57976,0.871961,0.282262,0.875832,0.413124,0.597905,0.779494,0.801159,0.529234,0.968988,0.488883,0.958989,0.797028,0.266027,0.425453,0.969801,0.135601,0.590644,0.239583,0.204032,0.211308,0.851821,0.294069,0.138414,0.629425,0.745235,0.718996,0.831831,0.75925,0.255521,0.610967,0.641462,0.668079,0.00972068,0.684978,0.429083,0.781956,0.920192,0.534962,0.026647,0.339123,0.71393,0.731415,0.758278,0.0544632,0.348943,0.658082,0.64378,0.970117,0.402548,0.299527,0.375111,0.579988,0.946161,0.383434,0.173773,0.818247,0.821193,0.861375,0.833793,0.942321,0.403881,0.558022,0.833572,0.698091,0.887115,0.142377,0.313785,0.588145,0.525128,0.34133,0.678098,0.119215,0.702566,0.394832,0.690572,0.822256,0.699099,0.271086,0.793867,0.245806,0.00907773,0.501913,0.469314,0.804592,0.592907,0.42409,0.358036,0.664417,0.219981,0.0677455,0.828687,0.481977,0.356444,0.801053,0.473655,0.416194,0.575516,0.667454,0.408865,0.439642,0.407677,0.585821,0.22017,0.148297,0.880403,0.273152,0.357666,0.645642,0.272749,0.959679,0.0722978,0.741136,0.739353,0.711498,0.131634,0.885896,0.332771,0.21939,0.527348,0.284977,0.321285,0.66425,0.501676,0.608729,0.692851,0.86682,0.389648,0.553915,0.68956,0.123354,0.816226,0.742332,0.135797,0.774438,0.345374,0.503282,0.29885,0.876421,0.989908,0.359919,0.149706,0.796613,0.357521,0.0104544,0.543568,0.094271,0.792635,0.51504,0.186512,0.931234,0.380802,0.779086,0.503046,0.108037,0.645793,0.558301,0.841338,0.39948,0.717491,0.86583,0.194682,0.479391,0.861779,0.881054,0.4214,0.353071,0.561053,0.361327,0.607893,0.0999733,0.700237,0.0182233,0.397385,0.755028,0.493067,0.489402,0.821589,0.353318,0.301026,0.261074,0.15775,0.121043,0.998165,0.790028,0.392223,0.421074,0.837047,0.383461,0.190004,0.53124,0.264989,0.501309,0.304944,0.187271,0.693305,0.456538,0.637974,0.511151,0.224902,0.78659,0.985648,0.824157,0.726619,0.0583802,0.520289,0.770776,0.72123,0.0534638,0.28372,0.360418,0.468438,0.407306,0.708559,0.329674,0.300135,0.149099,0.649782,0.427662,0.253022,0.905415,0.21865,0.815689,0.920621,0.3579,0.398028,0.018448,0.449227,0.689441,0.982183,0.533952,0.99418,0.998626,0.0997056,0.767476,0.962318,0.940547,0.537545,0.652439,0.176399,0.911851,0.222399,0.62335,0.694853,0.202653,0.800972,0.317766,0.530617,0.259559,0.602827,0.872314,0.299546,0.548685,0.56149,0.296964,0.579755,0.931882,0.957037,0.219923,0.00262988,0.512088,0.474137,0.671591,0.415788,0.333307,0.83141,0.373365,0.239579,0.0904846,0.407,0.849093,0.0881373,0.108855,0.811957,0.176692,0.00250113,0.201531,0.145679,0.0599748,0.373064,0.223552,0.0987688,0.0654215,0.669222,0.0014357,0.902733,0.693768,0.156145,0.73305,0.58084,0.474747,0.58644,0.880175,0.140871,0.377277,0.642438,0.375276,0.130038,0.529218,0.45057,0.803305,0.601956,0.378655,0.524426,0.24921,0.34563,0.62325,0.467114,0.526173,0.922879,0.38582,0.602492,0.515678,0.0604702,0.985867,0.644207,0.254303,0.956667,0.650935,0.113622,0.106082,0.83039,0.300199,0.906943,0.783663,0.534771,0.76276,0.339074,0.692381,0.858149,0.0721487,0.972487,0.652622,0.687721,0.567953,0.464404,0.0711346,0.874885,0.96004,0.722315,0.130094,0.131214,0.758816,0.619268,0.675674,0.896069,0.232152,0.91239,0.229651,0.120172,0.644458,0.917905,0.664718,0.770003,0.238015,0.879837,0.265028,0.898803,0.576109,0.0767751,0.0629528,0.382993,0.649447,0.677915,0.0631203,0.261939,0.987963,0.916106,0.345379,0.412559,0.0363942,0.790849,0.190638,0.947054,0.159979,0.747746,0.858879,0.535491,0.114083,0.783426,0.325928,0.0919234,0.866019,0.776057,0.810808,0.255526,0.148224,0.313187,0.100897,0.526222,0.74129,0.874156,0.734191,0.685124,0.788975,0.273552,0.677568,0.682366,0.675659,0.494205,0.989011,0.0698315,0.105233,0.361857,0.266411,0.252688,0.508677,0.705925,0.930391,0.435705,0.930169,0.213759,0.0999497,0.87965,0.245018,0.76854,0.76886,0.68503,0.107952,0.379703,0.819221,0.451789,0.912231,0.585919,0.235327,0.903239,0.184644,0.0504154,0.520278,0.479549,0.771557,0.578525,0.351486,0.253881,0.266627,0.157881,0.481477,0.136967,0.917582,0.447613,0.273605,0.528615,0.483004,0.22799,0.326728,0.695546,0.471757,0.458893,0.538936,0.703595,0.7633,0.785592,0.408756,0.18062,0.230627,0.0437134,0.227313,0.860659,0.110944,0.0566622,0.883822,0.847158,0.471696,0.301153,0.406727,0.0439299,0.765848,0.953909,0.704675,0.642188,0.721081,0.801587,0.457121,0.87062,0.538672,0.437668,0.721591,0.202644,0.840548,0.348973,0.0424584,0.506566,0.966135,0.374345,0.941096,0.807516,0.437831,0.98441,0.401434,0.662744,0.370093,0.474028,0.25624,0.27125,0.940415,0.774472,0.889247,0.277532,0.472339,0.309295,0.490334,0.0796342,0.503172,0.0369577,0.894003,0.726717,0.704013,0.212325,0.170549,0.253443,0.0595278,0.529032,0.917752,0.122568,0.372539,0.619181,0.727643,0.614091,0.0479554,0.994261,0.63911,0.310246,0.0953304,0.184544,0.580482,0.73119,0.706976,0.56607,0.285561,0.360696,0.228235,0.28668,0.231923,0.998478,0.167998,0.545919,0.433273,0.716021,0.516937,0.440642,0.982784,0.120298,0.37718,0.961219,0.499625,0.314017,0.294413,0.602392,0.44081,0.868408,0.606954,0.904278,0.179641,0.267603,0.875368,0.596473,0.165989,0.584366,0.846587,0.780953,0.0638491,0.231055,0.540503,0.734468,0.244949,0.880608,0.460815,0.812774,0.521117,0.345767,0.244389,0.353808,0.27675,0.621633,0.324603,0.0103592,0.170991,0.0850965,0.624358,0.910469,0.520669,0.934056,0.273683,0.421049,0.292211,0.792539,0.376084,0.16564,0.699662,0.76323,0.422933,0.724441,0.244084,0.559585,0.538875,0.8381,0.026663,0.298175,0.194344,0.259864,0.517397,0.025739,0.00460792,0.847827,0.507953,0.241901,0.845185,0.543425,0.31156,0.172646,0.597983,0.160538,0.238891,0.216565,0.783924,0.737033,0.762297,0.325331,0.864182,0.0303807,0.343065,0.586952,0.702688,0.237918,0.0558108,0.0760794,0.383661,0.195479,0.260127,0.492188,0.0409833,0.314883,0.833882,0.262547,0.777221,0.953189,0.0456259,0.974353,0.470571,0.3678,0.701309,0.0614453,0.292865,0.630883,0.243543,0.722997,0.324724,0.850654,0.111188,0.691039,0.0721211,0.614919,0.532772,0.0910944,0.290138,0.109336,0.0594329,0.254644,0.223364,0.0321982,0.190749,0.702444,0.829622,0.038745,0.479053,0.0210872,0.194049,0.138272,0.671477,0.695305,0.994166,0.504243,0.114673,0.518761,0.882568,0.454149,0.0170962,0.680883,0.574987,0.617754,0.711484,0.503439,0.0526488,0.65118,0.677067,0.00997162,0.89062,0.454823,0.560406,0.59215,0.325509,0.319138,0.586946,0.994842,0.191705,0.792293,0.671902,0.125688,0.99533,0.593064,0.90869,0.275413,0.984795,0.517778,0.319821,|0.80544,0.682233,0.0212254,0.754744,0.414823,0.795499,0.820938,0.0153899,0.218139,0.669666,0.649861,0.413068,0.00704116,0.170556,0.923509,0.311526,0.452581,0.855609,0.360734,0.853688,0.861027,0.63667,0.0327096,0.748329,0.850184,0.620855,0.16854,0.275277,0.612179,0.193146,0.209067,0.800421,0.33177,0.204319,0.0795404,0.717513,0.733089,0.825107,0.89073,0.871782,0.786086,0.91076,0.742914,0.0486168,0.23065,0.505283,0.972859,0.917392,0.984038,0.118723,0.863654,0.0541523,0.386153,0.64343,0.0191472,0.669839,0.907888,0.141073,0.561184,0.429838,0.433925,0.280297,0.369258,0.564256,0.623084,0.0843796,0.447374,0.160156,0.248616,0.346479,0.573704,0.810437,0.147482,0.137334,0.159907,0.111574,0.302909,0.260282,0.0792447,0.158315,0.613241,0.257646,0.26127,0.648797,0.19032,0.612725,0.71494,0.224323,0.505061,0.0525447,0.891136,0.216875,0.818089,0.966333,0.0496589,0.686255,0.546506,0.29818,0.961091,0.217845,0.750799,0.261461,0.756238,0.0502521,0.514276,0.108854,0.483792,0.189673,0.450464,0.733691,0.575348,0.282621,0.974446,0.261812,0.0569558,0.22274,0.626758,0.35661,0.532686,0.814179,0.849686,0.942493,0.364106,0.276173,0.0099259,0.903796,0.874272,0.676111,0.821778,0.554837,0.948937,0.744309,0.126221,0.717882,0.940337,0.946031,0.902077,0.913371,0.957229,0.920835,0.972301,0.531621,0.132521,0.128988,0.581548,0.816264,0.492409,0.206434,0.0781179,0.955066,0.659397,0.522817,0.227473,0.117784,0.612005,0.894221,0.614515,0.794507,0.996417,0.555273,0.216833,0.584378,0.77066,0.971301,0.792959,0.257143,0.432018,0.661825,0.783891,0.381724,0.117847,0.527385,0.980341,0.366602,0.31492,0.870258,0.629622,0.499932,0.722504,0.466493,0.433598,0.995652,0.168095,0.617354,0.0138069,0.530033,0.404893,0.835752,0.699536,0.353924,0.912169,0.0769265,0.00670791,0.640861,0.712198,0.639482,0.521428,0.0211285,0.0049246,0.902743,0.678045,0.486516,0.0347677,0.627506,0.531825,0.741373,0.43151,0.357275,0.422955,0.498336,0.71276,0.257249,0.0329177,0.793734,0.759992,0.976833,0.845707,0.646187,0.000901461,0.267276,0.697834,0.714472,0.0231083,0.235081,0.966922,0.198359,0.191727,0.641379,0.0766127,0.762727,0.209694,0.466282,0.483585,0.571447,0.336807,0.0301627,0.217304,0.573938,0.969995,0.36688,0.777453,0.415981,0.414885,0.445235,0.339986,0.987373,0.0541298,0.698103,0.602543,0.339025,0.273681,0.0420543,0.368282,0.0778427,0.238964,0.584189,0.958945,0.830398,0.831127,0.668601,0.0807872,0.378628,0.525119,0.0826977,0.853716,0.675684,0.570546,0.402396,0.998214,0.482861,0.632677,0.214327,0.88801,0.63468,0.741437,0.523654,0.469054,0.433952,0.534044,0.0725338,0.0202149,0.124837,0.408418,0.216132,0.807466,0.884505,0.911436,0.656195,0.561727,0.440814,0.741631,0.306693,0.723352,0.771425,0.111405,0.775769,0.607302,0.275932,0.381458,0.822907,0.721041,0.247958,0.714646,0.86535,0.673063,0.230507,0.911344,0.422148,0.648913,0.0180483,0.892866,0.170842,0.674876,0.715951,0.0764349,0.905655,0.330734,0.749447,0.983195,0.732447,0.372129,0.102325,0.0735533,0.390682,0.821892,0.141721,0.810384,0.197751,0.673786,0.202001,0.147684,0.670028,0.217744,0.539406,0.97294,0.769998,0.483024,0.106219,0.849289,0.138304,0.653919,0.661526,0.378128,0.954793,0.468626,0.911833,0.658715,0.639156,0.0710732,0.959761,0.668504,0.296814,0.825968,0.375623,0.290671,0.0813109,0.079217,0.629255,0.639144,0.507714,0.280203,0.263405,0.458819,0.838268,0.889189,0.935997,0.959914,0.491247,0.910878,0.863334,0.479191,0.410433,0.289944,0.976804,0.352092,0.212033,0.374856,0.834743,0.740864,0.458368,0.643259,0.30289,0.561524,0.0313575,0.905312,0.961512,0.135222,0.0835232,0.48444,0.64135,0.663481,0.511666,0.165968,0.35313,0.706574,0.556973,0.855513,0.853289,0.808773,0.643128,0.921127,0.394672,0.0909579,0.336124,0.698958,0.236132,0.135564,0.333463,0.933041,0.894473,0.65237,0.029336,0.468214,0.509324,0.336512,0.966685,0.0349267,0.826194,0.195333,0.603729,0.0906376,0.0412098,0.0306945,0.517171,0.0782462,0.595396,0.751059,0.145372,0.368329,0.124393,0.506151,0.366131,0.19401,0.557529,0.621492,0.998529,0.961788,0.896645,0.101932,0.688884,0.393717,0.53655,0.847122,0.683457,0.349971,0.95943,0.11313,0.537426,0.223145,0.167314,0.847786,0.801589,0.466295,0.432373,0.664666,0.590941,0.0164604,0.919761,0.26389,0.0500448,0.748386,0.195261,0.267271,0.983331,0.698107,0.691602,0.624282,0.247263,0.328171,0.499946,0.616558,0.305481,0.33773,0.663649,0.750098,0.415668,0.375759,0.52934,0.386564,0.69071,0.839494,0.510317,0.338612,0.460741,0.588313,0.930275,0.0887641,0.475766,0.366512,0.390305,0.818067,0.31992,0.646907,0.82679,0.671408,0.0585715,0.192125,0.247851,0.0949178,0.546895,0.739961,0.387836,0.184754,0.697969,0.0255608,0.863767,0.10523,0.710157,0.830816,0.12056,0.89091,0.200922,0.626425,0.344439,0.488531,0.983992,0.573057,0.773747,0.120297,0.551919,0.704469,0.0639124,0.614836,0.885551,0.407786,0.31676,0.465871,0.224946,0.842021,0.569623,0.879704,0.00630736,0.236418,0.683839,0.475866,0.103078,0.708986,0.259601,0.98314,0.359278,0.746173,0.19804,0.913869,0.835405,0.335593,0.573175,0.855572,0.705615,0.0419461,0.186023,0.904979,0.738858,0.539154,0.108352,0.538279,0.420496,0.725708,0.459524,0.421701,0.326173,0.594168,0.632626,0.154812,0.510974,0.671369,0.784844,0.903505,0.464318,0.0992358,0.767533,0.501774,0.198424,0.369585,0.59991,0.785572,0.925892,0.731318,0.715245,0.477409,0.681408,0.465682,0.912798,0.0769539,0.230027,0.761557,0.505197,0.276449,0.667123,0.0396373,0.768126,0.295525,0.602151,0.0990516,0.918876,0.168548,0.899349,0.596697,0.389476,0.123838,0.587434,0.278977,0.771342,0.679337,0.883265,0.478343,0.0373808,0.788137,0.119192,0.316303,0.880498,0.276,0.931475,0.774377,0.277983,0.602322,0.57238,0.316244,0.991183,0.596511,0.786602,0.520531,0.20604,0.361896,0.839785,0.238007,0.871909,0.791521,0.165647,0.885868,0.548488,0.523413,0.984013,0.420558,0.803212,0.0360797,0.648979,0.574286,0.396128,0.383921,0.101588,0.4231,0.0343734,0.410744,0.949642,0.0196808,0.0021928,0.435255,0.905814,0.842241,0.870018,0.758323,0.641497,0.166388,0.23977,0.0597393,0.68368,0.365415,0.162932,0.242484,0.536875,0.591706,0.727155,0.636726,0.564927,0.254713,0.69891,0.341869,0.780953,0.406906,0.399141,0.304867,0.132709,0.0251917,0.511243,0.547156,0.206775,0.833732,0.0317426,0.433043,0.181557,0.49046,0.250162,0.253044,0.686295,0.238377,0.0464832,0.342649,0.999434,0.45148,0.379914,0.489099,0.494291,0.416253,0.677595,0.862594,0.699814,0.52099,0.413413,0.143481,0.803354,0.586456,0.122834,0.61699,0.88337,0.640214,0.564108,0.0455816,0.516794,0.823345,0.412171,0.342778,0.237439,0.302874,0.806086,0.426022,0.352715,0.680965,0.296603,0.729538,0.426973,0.0807051,0.816518,0.612585,0.628224,0.134563,0.9318,0.11004,0.166973,0.583192,0.86319,0.915601,0.426963,0.23991,0.164828,0.0329675,0.586131,0.636759,0.878976,0.922017,0.280142,0.155476,0.323685,0.144153,0.108688,0.65153,0.898157,0.48168,0.960423,0.694724,0.857633,0.180223,0.673416,0.120863,0.943986,0.343412,0.712362,0.854874,0.413965,0.0148979,0.228417,0.135198,0.742101,0.568044,0.907541,0.665305,0.408689,0.371569,0.506383,0.803498,0.519868,0.347574,0.511932,0.661789,0.805091,0.503419,0.681377,0.103871,0.373788,0.839807,0.830189,0.553402,0.501231,0.256043,0.143568,0.50105,0.615279,0.0188639,0.640819,0.853102,0.609327,0.959131,0.949221,0.660081,0.480072,0.180178,0.447684,0.803988,0.654739,0.96913,0.399758,0.743944,0.510469,0.175542,0.249778,0.349303,0.88188,0.692241,0.757404,0.614457,0.310178,0.536603,0.535911,0.15183,0.217358,0.370968,0.950523,0.187066,0.541628,0.110764,0.347548,0.675592,0.907077,0.901909,0.3678,0.894308,0.485836,0.839713,0.839585,0.606161,0.581699,0.671954,0.928281,0.714616,0.00144488,0.594215,0.187752,0.422193,0.57471,0.362004,0.548786,0.467376,0.668796,0.320672,0.823602,0.854437,0.88215,0.259879,0.602899,0.182358,0.361863,0.250565,0.735883,0.0905991,0.37924,0.0875961,0.675187,0.839899,0.00179839,0.118097,0.820533,0.707407,0.958254,0.177321,0.976346,0.0062964,0.958585,0.751808,0.809955,0.819322,0.625028,0.80916,0.586306,0.371475,0.344345,0.943165,0.97313,0.802639,0.752891,0.529296,0.348163,0.770758,0.745322,0.931298,0.645463,0.270606,0.290299,0.860328,0.552573,0.23969,0.622807,0.781921,0.832721,0.579908,0.762803,0.368492,0.0314268,0.313132,0.486549,0.2943,0.0777009,0.128681,0.272721,0.0141075,0.789964,0.395244,0.768546,0.887199,0.0772717,0.534644,0.342098,0.381552,0.102948,0.851334,0.205494,0.934278,0.515267,0.181001,0.931252,0.336073,0.951006,0.637315,0.899933,0.0787916,0.188,0.441546,0.751936,0.890126,0.379134,0.280685,0.0656898,0.978646,0.116683,0.154935,0.487867,0.298808,0.380376,0.492181,0.959809,0.0314626,0.707982,0.0784833,0.720399,0.519923,0.000809252,0.170646,0.343975,0.679199,0.321889,0.976951,0.80014,0.433196,0.399348,0.0912994,0.383162,0.945708,0.0583807,0.628628,0.0150399,0.172858,0.803743,0.441712,0.928276,0.959493,0.547265,0.328983,0.0610259,0.748786,0.348506,0.810719,0.183418,0.618493,0.727219,0.827152,0.0400124,0.0279697,0.719118,0.276607,0.6087,0.705104,0.0669763,0.613728,0.168861,0.265938,0.876894,0.523108,0.756874,0.422347,0.126765,0.939175,0.873308,0.7502,0.608354,0.409576,0.444705,0.661066,0.528554,0.454005,0.0408208,0.10068,0.353183,|0.315087,0.477827,0.400174,0.20446,0.635169,0.522341,0.939523,0.555562,0.699162,0.642564,0.679351,0.135044,0.185059,0.325476,0.711347,0.774824,0.818854,0.565514,0.968337,0.876722,0.373941,0.442435,0.0867969,0.271188,0.796294,0.954162,0.242798,0.732013,0.159713,0.0345851,0.551844,0.267667,0.616512,0.424232,0.0749717,0.281788,0.922435,0.300577,0.451616,0.505522,0.0427483,0.523456,0.287244,0.800494,0.0932219,0.51838,0.583494,0.941725,0.850174,0.480108,0.780575,0.44995,0.426161,0.407737,0.0873029,0.483908,0.33607,0.0482787,0.713623,0.592804,0.865485,0.633621,0.0277745,0.503433,0.625967,0.908741,0.585618,0.267444,0.0113519,0.667861,0.752419,0.566949,0.560518,0.81439,0.475748,0.332734,0.848966,0.174566,0.31836,0.50868,0.0950353,0.290308,0.722276,0.319289,0.954856,0.202842,0.694984,0.887278,0.998643,0.94038,0.786254,0.255989,0.384415,0.984772,0.440592,0.198862,0.167267,0.22975,0.853282,0.836563,0.249487,0.462063,0.834266,0.518564,0.877521,0.365222,0.172015,0.683764,0.523412,0.940698,0.657574,0.37219,0.633244,0.00408447,0.270042,0.482438,0.119153,0.736026,0.831456,0.0363209,0.0295483,0.977815,0.170038,0.324448,0.88237,0.73207,0.474012,0.201099,0.750959,0.164251,0.321026,0.616936,0.391687,0.0709211,0.953968,0.907007,0.0636447,0.914741,0.683022,0.0734969,0.261065,0.189807,0.251632,0.839637,0.609221,0.346739,0.797843,0.711868,0.49894,0.786131,0.322311,0.530037,0.792161,0.151941,0.483633,0.614031,0.767768,0.264171,0.762654,0.951775,0.25174,0.0895704,0.205467,0.0839759,0.37527,0.838991,0.834771,0.39477,0.124294,0.450952,0.373058,0.21825,0.0964957,0.41063,0.543137,0.186761,0.675842,0.652578,0.0897432,0.341628,0.587143,0.915886,0.559116,0.0164061,0.903776,0.290983,0.695907,0.993067,0.188613,0.783196,0.770589,0.977903,0.86334,0.376982,0.976342,0.422722,0.603382,0.0279987,0.666679,0.262361,0.968256,0.916675,0.286441,0.128932,0.0163627,0.708236,0.485593,0.799955,0.488565,0.575893,0.387844,0.862832,0.366967,0.627629,0.88678,0.71213,0.691014,0.156331,0.385935,0.557174,0.481434,0.122792,0.0144045,0.88034,0.853049,0.0416088,0.951656,0.750407,0.332795,0.580845,0.15587,0.712723,0.402819,0.723547,0.762158,0.767008,0.62183,0.527509,0.420537,0.369263,0.474256,0.550413,0.56294,0.540565,0.638164,0.699794,0.790086,0.6184,0.869902,0.807194,0.54326,0.790824,0.0333228,0.613024,0.103525,0.267079,0.650124,0.609513,0.95112,0.145572,0.921041,0.516565,0.614011,0.85614,0.840263,0.532352,0.521015,0.63659,0.440813,0.792121,0.49176,0.476271,0.356085,0.366562,0.904256,0.358819,0.652856,0.651042,0.811914,0.0270985,0.913327,0.34908,0.166433,0.268239,0.177692,0.326362,0.373341,0.4726,0.0253625,0.924647,0.026211,0.0111029,0.0401713,0.52952,0.00878745,0.229713,0.0921378,0.864645,0.210151,0.713396,0.354335,0.902586,0.413554,0.16995,0.266223,0.651971,0.637563,0.577344,0.980273,0.956385,0.887779,0.64769,0.840953,0.622422,0.684809,0.895709,0.425603,0.936049,0.194486,0.541187,0.835391,0.0572053,0.655956,0.833284,0.151359,0.532364,0.918861,0.293684,0.0221963,0.294531,0.367162,0.629983,0.524123,0.715434,0.612867,0.0507678,0.228961,0.484675,0.822044,0.560944,0.319912,0.0420094,0.47463,0.969274,0.702233,0.174628,0.273475,0.992852,0.915429,0.330262,0.371103,0.177254,0.0939155,0.655269,0.684388,0.0214087,0.170904,0.662194,0.97582,0.944464,0.41451,0.841274,0.135325,0.0817552,0.63408,0.244838,0.203604,0.92817,0.175163,0.160558,0.101592,0.935621,0.674125,0.954092,0.329597,0.544537,0.495049,0.594761,0.702922,0.399857,0.989744,0.151608,0.799874,0.300819,0.759614,0.0988986,0.288362,0.722312,0.19673,0.769142,0.119295,0.945411,0.188726,0.365845,0.439189,0.346303,0.80726,0.895596,0.664343,0.539158,0.797819,0.365893,0.105349,0.161385,0.575984,0.51789,0.70045,0.594028,0.732771,0.525657,0.2089,0.854435,0.216289,0.221919,0.391611,0.227221,0.925924,0.233183,0.0441445,0.197082,0.115767,0.855102,0.0133825,0.727935,0.381993,0.894968,0.630631,0.314375,0.715342,0.899331,0.291479,0.657423,0.261342,0.0672258,0.589415,0.094405,0.336113,0.602352,0.0534987,0.287337,0.392443,0.236719,0.515446,0.663022,0.733872,0.738472,0.420059,0.401054,0.619393,0.63793,0.308499,0.536845,0.958465,0.216815,0.421428,0.812228,0.153316,0.750818,0.131681,0.562637,0.604386,0.680396,0.690783,0.0870188,0.765958,0.0401694,0.704425,0.55357,0.62413,0.169006,0.317263,0.628297,0.0119026,0.0371407,0.220332,0.789883,0.837296,0.411059,0.896472,0.0576885,0.0750576,0.170417,0.291572,0.0281729,0.0222314,0.814158,0.280538,0.711247,0.839416,0.891275,0.920235,0.166642,0.764736,0.176892,0.115041,0.905127,0.793369,0.825538,0.985135,0.209066,0.746993,0.462499,0.912781,0.135145,0.495158,0.266546,0.89161,0.8292,0.185099,0.809033,0.577264,0.716535,0.00584048,0.790317,0.235882,0.246935,0.41173,0.714508,0.550284,0.309373,0.260191,0.425323,0.623439,0.74853,0.514949,0.176826,0.297811,0.948939,0.729643,0.795506,0.301196,0.753743,0.661487,0.00325537,0.206144,0.57549,0.856211,0.084876,0.626866,0.772168,0.0435173,0.640148,0.942432,0.650922,0.942525,0.658322,0.514701,0.888635,0.924453,0.317095,0.580206,0.203399,0.673565,0.977862,0.0674806,0.246423,0.0104207,0.886803,0.539154,0.34205,0.837039,0.850942,0.831879,0.120252,0.178743,0.569968,0.670127,0.243655,0.0842115,0.226285,0.666919,0.680839,0.443362,0.0667245,0.206795,0.584252,0.0354023,0.157116,0.832228,0.28805,0.509672,0.62493,0.256997,0.121866,0.342732,0.609835,0.0648375,0.993696,0.53458,0.0697365,0.862787,0.808036,0.590145,0.0801815,0.612244,0.793288,0.17263,0.166084,0.183121,0.576988,0.161487,0.294702,0.361344,0.215479,0.0207544,0.714897,0.530302,0.460395,0.245071,0.648134,0.858498,0.169493,0.238934,0.135841,0.937716,0.473746,0.748602,0.929915,0.034215,0.448613,0.325479,0.228038,0.518928,0.514817,0.219419,0.474949,0.897399,0.609024,0.91291,0.53221,0.0874273,0.183125,0.227746,0.167413,0.0341236,0.627573,0.288408,0.475723,0.510182,0.000620782,0.755857,0.0102513,0.152928,0.67974,0.190583,0.282829,0.749349,0.416384,0.253,0.877494,0.35577,0.565209,0.668101,0.204235,0.845435,0.34407,0.367071,0.264414,0.764957,0.0170082,0.440916,0.109446,0.821152,0.61454,0.814886,0.666893,0.64798,0.429117,0.203983,0.249567,0.769431,0.537725,0.333366,0.982255,0.926286,0.885421,0.394968,0.15234,0.735656,0.822557,0.494702,0.925528,0.896899,0.759677,0.484813,0.150191,0.645282,0.0908482,0.659478,0.187699,0.185039,0.259289,0.316581,0.424272,0.86277,0.937284,0.235389,0.771625,0.444366,0.196903,0.433663,0.175361,0.412404,0.924288,0.150752,0.171538,0.590754,0.377882,0.0664528,0.623025,0.492398,0.205944,0.493133,0.0715551,0.424435,0.145931,0.585227,0.802301,0.0219105,0.462482,0.31881,0.263873,0.363376,0.582637,0.457706,0.119872,0.626222,0.768313,0.93748,0.53276,0.777641,0.418545,0.809339,0.846611,0.80332,0.253863,0.8748,0.417154,0.672686,0.0898404,0.476572,0.24348,0.974187,0.297693,0.476993,0.821577,0.801516,0.73421,0.391253,0.0517814,0.872028,0.397614,0.958818,0.823777,0.532271,0.586887,0.147727,0.115633,0.443958,0.154452,0.796039,0.300343,0.541642,0.498504,0.96535,0.889997,0.00258505,0.439712,0.357142,0.637571,0.367972,0.896975,0.228598,0.851748,0.314523,0.571027,0.917835,0.748595,0.854486,0.596362,0.848324,0.583976,0.815872,0.7781,0.703167,0.328597,0.789042,0.244511,0.659602,0.84224,0.702133,0.736928,0.783517,0.328519,0.628405,0.00861204,0.916824,0.109866,0.843911,0.712559,0.20691,0.464952,0.0641543,0.489879,0.943216,0.905084,0.623762,0.291475,0.0156041,0.906166,0.311433,0.807908,0.96056,0.79564,0.165817,0.314599,0.42795,0.837734,0.588287,0.915076,0.690752,0.23191,0.280757,0.863227,0.622339,0.884466,0.170693,0.939639,0.593674,0.802243,0.622053,0.256452,0.0530605,0.919886,0.50616,0.527066,0.903421,0.430589,0.462061,0.166005,0.0282813,0.459409,0.357909,0.62843,0.38441,0.770556,0.0250683,0.164835,0.530506,0.552237,0.25217,0.638998,0.166734,0.574823,0.0656252,0.235632,0.311503,0.617874,0.395551,0.277587,0.114104,0.40843,0.19978,0.472596,0.276538,0.484429,0.183007,0.738793,0.713159,0.453521,0.542985,0.188745,0.761037,0.295639,0.992922,0.607184,0.751894,0.884734,0.198119,0.231575,0.880013,0.771154,0.0523896,0.602027,0.460502,0.266314,0.416808,0.534028,0.317171,0.240915,0.325643,0.86292,0.894885,0.931757,0.588793,0.936306,0.114486,0.122942,0.438332,0.188089,0.737242,0.800279,0.115778,0.00948334,0.791002,0.500469,0.524486,0.515936,0.135097,0.838165,0.912076,0.356785,0.258383,0.781854,0.954227,0.918312,0.254116,0.473972,0.64065,0.805433,0.0378421,0.897458,0.0363368,0.269832,0.728775,0.766358,0.646901,0.343934,0.460247,0.917237,0.98095,0.512168,0.15325,0.898684,0.688648,0.780026,0.177978,0.443439,0.400702,0.925162,0.548788,0.0391857,0.861867,0.568094,0.983692,0.920367,0.340873,0.522427,0.48039,0.24916,0.147382,0.958953,0.931178,0.701544,0.928323,0.739558,0.291531,0.80068,0.665869,0.971058,0.127415,0.635022,0.936516,0.123969,0.459291,0.765234,0.962227,0.0104759,0.602615,0.0601944,0.177535,0.401054,0.586389,0.0412623,0.870554,0.566561,0.641384,0.192189,0.141593,0.861939,0.975417,0.616541,0.191716,0.625785,0.715453,0.787547,0.728205,0.975878,0.817396,0.89023,0.200329,0.99615,0.348721,0.161019,0.386764,0.844894,0.0684457,0.918236,0.831038,0.241192,|0.165412,0.437913,0.549908,0.780869,0.0296081,0.249035,0.25516,0.298958,0.0927928,0.486545,0.79749,0.52036,0.583614,0.446239,0.0228336,0.942965,0.170857,0.455039,0.71775,0.911963,0.456971,0.660525,0.032693,0.490175,0.368916,0.899651,0.0364129,0.313776,0.98888,0.676982,0.894335,0.964843,0.632658,0.0947502,0.192384,0.509694,0.367127,0.619879,0.230698,0.281462,0.640375,0.0438913,0.311125,0.241688,0.107577,0.557483,0.239725,0.663882,0.830661,0.929382,0.273825,0.150307,0.718421,0.362752,0.242802,0.796067,0.433313,0.498263,0.375393,0.925821,0.968371,0.876029,0.472237,0.907289,0.712231,0.138611,0.949116,0.998227,0.333991,0.909246,0.893894,0.0734404,0.626573,0.490189,0.0789167,0.415891,0.369749,0.181406,0.860121,0.601152,0.339812,0.187313,0.321484,0.361295,0.127428,0.914939,0.662775,0.254228,0.351252,0.654436,0.480458,0.547495,0.229585,0.993812,0.437396,0.694272,0.316457,0.949039,0.805252,0.910383,0.381648,0.537249,0.394332,0.762074,0.77128,0.00526708,0.839463,0.307079,0.356053,0.962028,0.277458,0.973017,0.921031,0.609759,0.79887,0.0139894,0.568019,0.386792,0.267862,0.286085,0.787012,0.00173938,0.616375,0.0688264,0.563257,0.488434,0.136425,0.00612408,0.529888,0.135763,0.341513,0.964364,0.20826,0.546096,0.503373,0.843977,0.953126,0.165845,0.932601,0.26422,0.175173,0.155645,0.27089,0.380611,0.581935,0.878647,0.795332,0.573621,0.838256,0.195331,0.213303,0.193231,0.115284,0.499181,0.913973,0.0361913,0.709768,0.416682,0.32925,0.426365,0.465641,0.735754,0.0308745,0.933215,0.210422,0.789331,0.273739,0.432602,0.2197,0.497638,0.373312,0.615166,0.877283,0.807089,0.490363,0.955019,0.917558,0.51814,0.295038,0.483762,0.322136,0.784483,0.889168,0.277132,0.82963,0.185709,0.387655,0.898791,0.851104,0.301068,0.419696,0.257357,0.225889,0.789295,0.138393,0.889538,0.261281,0.773715,0.554164,0.266444,0.271604,0.344038,0.799279,0.298364,0.201687,0.131256,0.455903,0.87295,0.317224,0.483421,0.62217,0.436282,0.699338,0.330319,0.693023,0.783436,0.0992622,0.878079,0.125174,0.754733,0.47359,0.0738827,0.851052,0.956051,0.760527,0.946148,0.525029,0.702156,0.975754,0.151672,0.0564803,0.265041,0.777938,0.0413327,0.0217571,0.0580385,0.0089131,0.0553049,0.0608333,0.417995,0.661975,0.700254,0.648453,0.168074,0.149989,0.281293,0.131284,0.57106,0.878723,0.294787,0.899773,0.068935,0.435142,0.545964,0.2253,0.836681,0.239541,0.679892,0.0936975,0.422098,0.997205,0.839258,0.888653,0.635697,0.812621,0.316093,0.688063,0.0997031,0.495247,0.668469,0.693902,0.566381,0.689055,0.886772,0.371781,0.385942,0.0137415,0.845965,0.366144,0.530565,0.825459,0.143446,0.355386,0.312513,0.96671,0.734763,0.072665,0.251383,0.969561,0.864819,0.157024,0.414684,0.998212,0.453153,0.77959,0.373449,0.407227,0.940061,0.987825,0.707943,0.844111,0.237975,0.0637138,0.254404,0.0338658,0.762473,0.957175,0.726838,0.782932,0.30412,0.204593,0.534906,0.974194,0.295449,0.33895,0.520444,0.907413,0.226125,0.0193439,0.505694,0.137564,0.328722,0.823293,0.508688,0.175436,0.0831896,0.945277,0.20651,0.55708,0.840506,0.648338,0.176738,0.804926,0.830367,0.694203,0.743219,0.427581,0.169458,0.653798,0.541241,0.287558,0.987123,0.492689,0.351785,0.342607,0.304038,0.319313,0.235005,0.181465,0.669819,0.585653,0.597687,0.236137,0.0240372,0.486951,0.274653,0.294993,0.560966,0.456656,0.788911,0.229577,0.135676,0.637471,0.937587,0.138266,0.123221,0.377617,0.848104,0.33886,0.57065,0.615217,0.59289,0.899436,0.67049,0.804399,0.164356,0.161596,0.687139,0.938156,0.223329,0.14225,0.658028,0.635269,0.593153,0.877469,0.815447,0.459819,0.0819126,0.583149,0.935024,0.298562,0.251231,0.0155252,0.121486,0.814801,0.323655,0.655273,0.800399,0.12548,0.582494,0.979892,0.632232,0.388573,0.961759,0.292413,0.918045,0.348334,0.38552,0.484724,0.251571,0.265054,0.463078,0.982651,0.141564,0.697725,0.846373,0.96252,0.0926775,0.394678,0.24255,0.657165,0.490285,0.663972,0.972699,0.394632,0.74769,0.315869,0.343894,0.419511,0.609602,0.575644,0.104928,0.639688,0.331753,0.293544,0.1037,0.641807,0.154383,0.438122,0.525807,0.481734,0.639953,0.134364,0.274852,0.801238,0.102181,0.485376,0.90548,0.84577,0.0901812,0.0982961,0.566331,0.485791,0.316761,0.935884,0.421355,0.15661,0.987195,0.722004,0.234791,0.372059,0.414886,0.387491,0.0572574,0.921878,0.263021,0.155332,0.669563,0.77035,0.389411,0.451046,0.136083,0.35586,0.403909,0.290924,0.695971,0.813811,0.355909,0.720617,0.78579,0.805093,0.450223,0.927975,0.102951,0.346456,0.570605,0.284211,0.242246,0.615067,0.966207,0.411408,0.797641,0.277408,0.667457,0.272747,0.221502,0.807134,0.137295,0.0548152,0.297383,0.217987,0.390572,0.597316,0.50669,0.806909,0.482694,0.051677,0.353333,0.482177,0.68197,0.934124,0.429129,0.372691,0.169117,0.951573,0.470607,0.427896,0.848653,0.433451,0.971181,0.958939,0.993804,0.704366,0.545813,0.552508,0.557565,0.904495,0.425447,0.784843,0.14453,0.310827,0.970667,0.726733,0.459641,0.413138,0.7068,0.151412,0.432338,0.392983,0.860503,0.43468,0.123349,0.257956,0.145811,0.330889,0.655676,0.996938,0.386182,0.503631,0.550749,0.226058,0.934145,0.13857,0.102096,0.419301,0.10246,0.726924,0.843034,0.967654,0.0844299,0.271808,0.319425,0.740447,0.085217,0.394491,0.104763,0.276863,0.486804,0.769587,0.0566892,0.660131,0.2966,0.37618,0.915785,0.818171,0.235093,0.0383384,0.0738413,0.937868,0.289183,0.656889,0.599446,0.873877,0.0841041,0.125727,0.639035,0.342555,0.254515,0.815118,0.934258,0.874604,0.563739,0.0603955,0.607005,0.646952,0.882706,0.18505,0.69406,0.998976,0.372865,0.154215,0.533817,0.879726,0.985525,0.995042,0.99265,0.411136,0.554346,0.153558,0.774203,0.973821,0.796636,0.359923,0.484316,0.907124,0.597977,0.414128,0.706777,0.760872,0.598902,0.514805,0.62626,0.900758,0.0938905,0.21052,0.820161,0.093457,0.491065,0.885818,0.974366,0.620861,0.738634,0.529631,0.897372,0.470105,0.501342,0.796645,0.781515,0.542618,0.901913,0.631008,0.648295,0.112763,0.389686,0.274475,0.686377,0.959804,0.366692,0.411036,0.54313,0.3038,0.657299,0.382095,0.317613,0.57943,0.803125,0.112221,0.490546,0.253592,0.0949554,0.376777,0.974049,0.0493277,0.116487,0.401405,0.478844,0.960896,0.0121823,0.935134,0.792123,0.455311,0.178913,0.783656,0.876474,0.53389,0.480934,0.0930861,0.383885,0.559707,0.788459,0.315288,0.285273,0.247545,0.853803,0.550527,0.892572,0.947847,0.131758,0.975383,0.0265528,0.17151,0.445614,0.881939,0.385047,0.109912,0.81729,0.377799,0.681182,0.571615,0.32415,0.673621,0.704915,0.281818,0.817894,0.270864,0.500898,0.697536,0.134663,0.843621,0.592458,0.484889,0.958431,0.0438113,0.26934,0.0188105,0.860176,0.028695,0.848944,0.613327,0.0151551,0.39491,0.37092,0.435074,0.628031,0.560275,0.804989,0.719885,0.324128,0.914883,0.541916,0.935793,0.0710927,0.812976,0.415122,0.566116,0.239295,0.0870463,0.584922,0.843207,0.307721,0.167432,0.705006,0.857591,0.0435066,0.158946,0.26822,0.580908,0.689365,0.981496,0.283401,0.347481,0.525724,0.767417,0.0308738,0.164241,0.740509,0.362107,0.00483054,0.195809,0.935442,0.122933,0.99092,0.679293,0.572727,0.20775,0.081467,0.65416,0.395817,0.353257,0.0471152,0.731879,0.278001,0.290767,0.481535,0.448596,0.429059,0.197897,0.263503,0.321319,0.849461,0.0924879,0.877795,0.313516,0.0135951,0.511999,0.56768,0.859536,0.146229,0.410907,0.273619,0.975023,0.888982,0.0127021,0.606541,0.287973,0.557464,0.549445,0.053908,0.463514,0.103418,0.602662,0.0787407,0.567503,0.595635,0.446991,0.974939,0.145399,0.86776,0.0435755,0.115389,0.660067,0.620249,0.868684,0.679225,0.195755,0.332691,0.128732,0.521326,0.723394,0.364568,0.666071,0.364377,0.0252921,0.355605,0.296638,0.808776,0.0841174,0.729478,0.344953,0.0712629,0.686646,0.0551608,0.209857,0.294372,0.224864,0.0684599,0.572885,0.195446,0.958317,0.68034,0.445458,0.370015,0.870904,0.804656,0.732034,0.406376,0.821876,0.58812,0.573902,0.231104,0.667306,0.455096,0.622271,0.36281,0.0369687,0.51884,0.4274,0.113642,0.72038,0.092424,0.504175,0.638028,0.906609,0.607045,0.119905,0.714142,0.221169,0.933778,0.637488,0.240935,0.388323,0.0818819,0.880904,0.0759813,0.116338,0.286359,0.524258,0.828767,0.484823,0.35213,0.107688,0.965976,0.853813,0.780815,0.717398,0.598519,0.489355,0.311392,0.122651,0.175875,0.607593,0.326817,0.266811,0.868549,0.263927,0.113994,0.595567,0.701487,0.835509,0.798534,0.415143,0.750902,0.10011,0.284703,0.890386,0.918267,0.732235,0.459969,0.314639,0.318907,0.0878627,0.758284,0.658802,0.130897,0.411907,0.56293,0.535191,0.77082,0.576362,0.973886,0.955967,0.686799,0.362774,0.607841,0.370061,0.970384,0.688421,0.828254,0.858929,0.756667,0.109009,0.215188,0.570796,0.852388,0.0578832,0.528859,0.062662,0.539932,0.395133,0.377912,0.855525,0.846712,0.365876,0.137235,0.959928,0.417472,0.596045,0.0793229,0.584745,0.0228826,0.867763,0.63202,0.136981,0.380227,0.539665,0.636421,0.232792,0.686887,0.800855,0.805864,0.346533,0.806777,0.200754,0.315902,0.234707,0.380571,0.135104,0.880202,0.773732,0.735631,0.39952,0.168491,0.127437,0.648072,0.654596,0.795938,0.389616,0.24143,0.897112,0.0747574,0.114075,0.502521,0.732828,0.406119,0.00198507,0.451769,0.909671,0.0928011,0.0664867,0.634725,0.303227,0.225409,0.810006,0.622875,0.0159473,0.181781,0.812156,0.90502,0.611082,0.385665,|0.338711,0.6393,0.689166,0.0702796,0.00449938,0.316917,0.907539,0.307649,0.422781,0.423973,0.444459,0.330337,0.298609,0.198686,0.55513,0.87231,0.95006,0.805907,0.101488,0.350752,0.365323,0.0734166,0.241261,0.721679,0.0428706,0.15551,0.402745,0.614186,0.770854,0.364472,0.810839,0.0410169,0.142175,0.719341,0.711511,0.454224,0.0742024,0.346879,0.485934,0.472217,0.693217,0.149708,0.727752,0.779508,0.28766,0.318936,0.617315,0.985627,0.256875,0.689198,0.953807,0.0992867,0.721439,0.866034,0.557008,0.53955,0.569084,0.000856102,0.724474,0.669932,0.865395,0.48841,0.0467079,0.628807,0.656963,0.010083,0.70894,0.307314,0.129099,0.749558,0.548689,0.864946,0.71652,0.158289,0.434178,0.610586,0.24009,0.789096,0.0810943,0.594449,0.726992,0.164235,0.569468,0.15775,0.686943,0.0580732,0.818515,0.178116,0.210733,0.710422,0.252717,0.328262,0.950174,0.789551,0.687684,0.173502,0.00512511,0.102847,0.157206,0.875814,0.880968,0.206254,0.439724,0.541288,0.757025,0.542701,0.430901,0.90003,0.258418,0.00553536,0.14884,0.415498,0.21632,0.172012,0.113021,0.677723,0.231276,0.398658,0.164318,0.593358,0.927252,0.21695,0.24092,0.337629,0.0590275,0.48074,0.825952,0.981828,0.557007,0.404929,0.591517,0.404163,0.460415,0.526625,0.500957,0.0397688,0.788091,0.978232,0.0283752,0.926614,0.952302,0.565567,0.276662,0.815465,0.652628,0.959312,0.839465,0.33202,0.600924,0.554583,0.948302,0.661401,0.0608728,0.362912,0.30927,0.450388,0.668318,0.185323,0.394957,0.418746,0.79367,0.182997,0.778955,0.374716,0.0159412,0.0695251,0.783325,0.612284,0.520429,0.785171,0.957715,0.948739,0.369986,0.31794,0.903386,0.488734,0.997374,0.349084,0.99391,0.637051,0.85177,0.430988,0.10614,0.625098,0.249655,0.655672,0.855002,0.766711,0.085528,0.965295,0.59817,0.177748,0.596083,0.847507,0.793532,0.105993,0.339531,0.897296,0.454219,0.716459,0.621053,0.0889434,0.797029,0.557395,0.841721,0.544866,0.340375,0.831874,0.445786,0.482781,0.0175526,0.694426,0.997418,0.318936,0.0969223,0.464435,0.226275,0.664858,0.549499,0.0977855,0.732877,0.517294,0.183617,0.313343,0.395658,0.641905,0.933555,0.297209,0.5024,0.507332,0.761374,0.644375,0.00405788,0.484469,0.258637,0.115454,0.349616,0.204159,0.798663,0.610992,0.840788,0.976102,0.221618,0.506009,0.352835,0.201317,0.232612,0.768755,0.972994,0.783981,0.438059,0.0545174,0.177777,0.764988,0.210418,0.507777,0.263098,0.278022,0.810623,0.327845,0.248384,0.970523,0.911913,0.726356,0.49646,0.520112,0.950055,0.957008,0.529739,0.280258,0.709362,0.746257,0.11494,0.370965,0.772368,0.584413,0.783723,0.0814704,0.139019,0.68884,0.113814,0.935548,0.235314,0.390193,0.385857,0.274167,0.710028,0.506401,0.760622,0.0425146,0.647163,0.897609,0.413057,0.308492,0.768421,0.787858,0.258571,0.407169,0.667943,0.433553,0.0812091,0.966763,0.159654,0.207022,0.126771,0.30782,0.391808,0.68124,0.319276,0.729562,0.309271,0.352847,0.839693,0.65532,0.897144,0.444929,0.344735,0.405386,0.852247,0.751329,0.976002,0.587448,0.569811,0.446421,0.172383,0.922147,0.682585,0.191138,0.591619,0.442714,0.201323,0.00734389,0.80473,0.272293,0.00257456,0.395301,0.806655,0.778941,0.622317,0.546134,0.424609,0.860975,0.140645,0.567442,0.618218,0.282506,0.830116,0.55756,0.486366,0.820325,0.623782,0.484632,0.513146,0.797808,0.834386,0.19972,0.219683,0.0550688,0.484071,0.377895,0.0261678,0.939698,0.875233,0.886416,0.22416,0.275131,0.0344296,0.940037,0.336467,0.428419,0.0665371,0.479418,0.489333,0.668265,0.567428,0.0660464,0.909044,0.292407,0.239545,0.851106,0.29377,0.0697445,0.0475507,0.0351622,0.423648,0.52119,0.383947,0.670221,0.912444,0.308187,0.53566,0.930988,0.923396,0.184596,0.450606,0.822716,0.187876,0.134741,0.0765052,0.313364,0.288162,0.189554,0.565395,0.424013,0.259013,0.916675,0.852878,0.388659,0.863471,0.35267,0.87162,0.640765,0.863876,0.745627,0.10237,0.496242,0.302144,0.568338,0.327495,0.591693,0.917738,0.425123,0.0351261,0.724267,0.690182,0.448185,0.0103412,0.640964,0.242966,0.915079,0.394767,0.101368,0.589692,0.961832,0.172719,0.302254,0.8867,0.306954,0.899867,0.0910639,0.380062,0.0672405,0.974853,0.64858,0.462636,0.451055,0.907632,0.833244,0.019621,0.240282,0.0144037,0.458939,0.483584,0.171468,0.813953,0.853399,0.147391,0.179909,0.61076,0.666677,0.968936,0.389323,0.0693088,0.69877,0.591474,0.0362635,0.975502,0.246882,0.351195,0.573623,0.684446,0.881125,0.620544,0.96824,0.273257,0.315654,0.834802,0.409419,0.234659,0.748635,0.836817,0.665884,0.86144,0.298435,0.905489,0.330286,0.802497,0.153766,0.732078,0.132615,0.143462,0.0309299,0.430404,0.342776,0.961296,0.99771,0.721035,0.307387,0.396553,0.409588,0.0079385,0.891774,0.705145,0.338214,0.472157,0.576978,0.399998,0.275019,0.0202981,0.180721,0.271154,0.937232,0.462099,0.368803,0.430648,0.645586,0.87729,0.905046,0.922265,0.889395,0.138541,0.885405,0.0178241,0.556511,0.125042,0.209366,0.516014,0.251615,0.0108401,0.311876,0.0289056,0.0796961,0.415602,0.220107,0.935393,0.672429,0.19759,0.431161,0.987288,0.777625,0.310854,0.584098,0.925599,0.940329,0.533804,0.252903,0.0489772,0.413427,0.0196438,0.571077,0.111106,0.361457,0.703009,0.176426,0.723028,0.755142,0.173519,0.122395,0.756466,0.277944,0.142138,0.773391,0.327021,0.595718,0.441808,0.164755,0.0355486,0.206046,0.956001,0.81817,0.820951,0.0811648,0.407794,0.0213206,0.127702,0.999028,0.558261,0.0334353,0.600825,0.369935,0.115131,0.773452,0.628002,0.523063,0.182424,0.86392,0.538087,0.052499,0.432172,0.646089,0.906005,0.529079,0.00821108,0.880282,0.626411,0.587577,0.758687,0.869312,0.0847032,0.188657,0.120083,0.653895,0.741065,0.478893,0.978576,0.0705919,0.138863,0.458929,0.0571838,0.478838,0.457225,0.0491072,0.603033,0.357545,0.101221,0.786145,0.090974,0.780811,0.8484,0.73431,0.389334,0.897929,0.223321,0.189979,0.410837,0.673569,0.358893,0.92211,0.593751,0.558281,0.290755,0.45488,0.287577,0.370921,0.321914,0.825808,0.815295,0.23048,0.188982,0.479182,0.374781,0.360042,0.830984,0.088286,0.176778,0.277103,0.716353,0.801281,0.659169,0.34556,0.405833,0.917914,0.956948,0.772184,0.889822,0.327535,0.700452,0.471718,0.180508,0.779518,0.213987,0.579543,0.994664,0.927932,0.893323,0.421276,0.559263,0.981072,0.0262053,0.66594,0.682443,0.401652,0.73395,0.485583,0.785544,0.593395,0.123538,0.266894,0.23938,0.981685,0.979065,0.235597,0.046297,0.721281,0.702322,0.861562,0.742723,0.0169693,0.967411,0.608202,0.850427,0.966161,0.118581,0.251296,0.119324,0.483411,0.745029,0.259401,0.444339,0.666177,0.763564,0.836293,0.0618626,0.0244568,0.928783,0.288377,0.453735,0.246358,0.278291,0.277468,0.648873,0.620213,0.603494,0.636132,0.403678,0.00622147,0.681628,0.323438,0.874,0.914975,0.0429029,0.89027,0.725532,0.852479,0.690226,0.0883127,0.44347,0.596201,0.752927,0.993182,0.135919,0.923771,0.0276285,0.380584,0.83979,0.557154,0.6928,0.978552,0.476199,0.0903953,0.637825,0.382624,0.171211,0.431554,0.233661,0.828762,0.660552,0.295613,0.283723,0.697405,0.775489,0.266778,0.722584,0.93835,0.294174,0.754078,0.848311,0.0108814,0.148415,0.25749,0.700599,0.403195,0.231535,0.87819,0.221121,0.521937,0.112876,0.449335,0.338024,0.0266097,0.958734,0.269315,0.520052,0.839454,0.0848075,0.246133,0.961434,0.813053,0.482075,0.196529,0.983876,0.488405,0.889798,0.0505,0.20931,0.398947,0.847345,0.488845,0.436275,0.736536,0.445075,0.132,0.295621,0.419341,0.397392,0.715017,0.45274,0.296783,0.69763,0.542517,0.125482,0.486759,0.052922,0.865013,0.475174,0.0313766,0.269719,0.290962,0.412252,0.0659049,0.139583,0.603034,0.609142,0.377369,0.524516,0.919791,0.573039,0.676033,0.778183,0.887093,0.54866,0.507951,0.899572,0.709946,0.126154,0.340201,0.526895,0.113892,0.387378,0.557606,0.119992,0.55153,0.841256,0.582086,0.123837,0.101232,0.674232,0.69707,0.806515,0.484684,0.168156,0.576106,0.226158,0.645418,0.694514,0.787582,0.322946,0.807424,0.219316,0.277196,0.914686,0.142242,0.615292,0.148549,0.545782,0.362745,0.868278,0.781832,0.766936,0.947788,0.354198,0.661256,0.891867,0.215929,0.391452,0.858121,0.190669,0.113916,0.672418,0.311328,0.00583458,0.132707,0.895247,0.2021,0.0610896,0.94415,0.918835,0.207293,0.888816,0.0640942,0.0651471,0.122424,0.203924,0.595417,0.0666175,0.289882,0.512913,0.411854,0.257045,0.844562,0.917968,0.926276,0.226245,0.956659,0.723383,0.345844,0.255645,0.125184,0.684359,0.919903,0.214261,0.32181,0.545183,0.0699973,0.0702576,0.992726,0.947087,0.249013,0.552409,0.50098,0.931252,0.366986,0.0567598,0.934242,0.153557,0.376417,0.213863,0.359382,0.984893,0.954314,0.132213,0.160653,0.635804,0.442831,0.764581,0.169704,0.119865,0.792313,0.250085,0.0765613,0.198683,0.66973,0.0811206,0.0176695,0.557032,0.614481,0.723922,0.715555,0.865581,0.690628,0.0313289,0.425622,0.0788755,0.981078,0.596123,0.126344,0.149837,0.822185,0.636402,0.796982,0.281509,0.629626,0.757882,0.131758,0.362574,0.812504,0.0923747,0.876529,0.480058,0.0169637,0.122795,0.623183,0.661722,0.771266,0.0573525,0.563452,0.400046,0.93582,0.314557,0.0105287,0.310718,0.573815,0.966412,0.639723,0.911439,0.0487974,0.349938,0.267416,0.746791,0.0915101,0.479015,0.135706,0.999121,0.829206,0.397251,0.170386,0.112541,0.530825,0.851549,0.518393,0.664391,0.948305,0.246476,0.178638,0.0780555,0.344738,0.342857,0.688035,0.600659,0.429595,|0.504104,0.411015,0.136844,0.00405324,0.200717,0.422462,0.958817,0.194965,0.0427607,0.88487,0.521391,0.211639,0.742441,0.340962,0.717634,0.563398,0.897855,0.276429,0.941599,0.865434,0.350848,0.133801,0.755066,0.160469,0.101101,0.989257,0.240774,0.253446,0.263647,0.873132,0.911169,0.495944,0.592764,0.711039,0.0362815,0.0988407,0.894498,0.313797,0.148117,0.63368,0.243741,0.527376,0.168823,0.205342,0.409589,0.127471,0.839431,0.476087,0.786549,0.00832355,0.448764,0.0490509,0.985072,0.996137,0.040484,0.513326,0.709857,0.935428,0.725576,0.138491,0.497386,0.96384,0.505462,0.893449,0.312993,0.308711,0.600934,0.169092,0.378831,0.204072,0.581439,0.112057,0.622044,0.410423,0.341073,0.180473,0.735383,0.939766,0.83294,0.501192,0.257614,0.127592,0.442865,0.742571,0.567847,0.748374,0.699555,0.369588,0.878812,0.591375,0.00901538,0.6546,0.474763,0.171118,0.71253,0.516451,0.61305,0.161099,0.726084,0.209356,0.432689,0.883423,0.517342,0.454994,0.761123,0.0200254,0.0804375,0.401624,0.208889,0.364735,0.773685,0.615122,0.198802,0.388128,0.0547341,0.217481,0.723506,0.47731,0.207856,0.710614,0.718545,0.373107,0.228213,0.148965,0.251685,0.498966,0.53039,0.908703,0.62042,0.644693,0.772449,0.658592,0.0422173,0.140202,0.500866,0.798525,0.806133,0.863318,0.435043,0.813279,0.520901,0.511464,0.103365,0.248922,0.790151,0.052937,0.580257,0.858375,0.901034,0.544868,0.910943,0.623213,0.244941,0.869296,0.297126,0.358854,0.704836,0.602236,0.520777,0.654925,0.360018,0.404943,0.163723,0.534609,0.650579,0.917749,0.492761,0.845187,0.496877,0.0624025,0.310194,0.336367,0.43495,0.0564641,0.70828,0.983853,0.833424,0.453625,0.300984,0.122868,0.222918,0.804978,0.260297,0.376216,0.604729,0.304001,0.406982,0.384298,0.368565,0.663739,0.322265,0.311268,0.658775,0.196103,0.680351,0.185327,0.726599,0.141692,0.946929,0.69427,0.114361,0.660083,0.357251,0.841093,0.277084,0.417719,0.601374,0.190195,0.923875,0.145808,0.293952,0.0169898,0.127521,0.182042,0.62556,0.446547,0.92952,0.574313,0.154688,0.642083,0.744512,0.632998,0.041267,0.850592,0.561275,0.103298,0.127214,0.858494,0.365455,0.0310367,0.92191,0.503665,0.237257,0.917153,0.880054,0.372436,0.978682,0.135737,0.540944,0.581987,0.871733,0.282462,0.174114,0.760203,0.607741,0.401757,0.624789,0.389695,0.32676,0.224306,0.890853,0.0261347,0.92723,0.721182,0.662364,0.54011,0.565307,0.727409,0.977327,0.562839,0.543296,0.779164,0.643942,0.196572,0.489147,0.461625,0.506914,0.966103,0.0252478,0.834041,0.667182,0.570448,0.843643,0.444579,0.678305,0.548826,0.364339,0.992938,0.381551,0.609681,0.234171,0.971335,0.705128,0.564782,0.131317,0.0280273,0.48658,0.706513,0.486457,0.792052,0.663247,0.200467,0.950247,0.675703,0.514291,0.926044,0.709353,0.903885,0.789631,0.0745649,0.70154,0.197747,0.678395,0.303701,0.530643,0.806398,0.119354,0.169406,0.22434,0.455577,0.170977,0.256173,0.606276,0.370898,0.939062,0.218564,0.618542,0.912197,0.398013,0.235478,0.525443,0.781694,0.0476513,0.301106,0.681478,0.977299,0.944108,0.0572979,0.0747666,0.870775,0.218548,0.117968,0.839935,0.279905,0.13494,0.878021,0.3544,0.998823,0.285833,0.306447,0.196221,0.0261875,0.134627,0.408324,0.845592,0.69658,0.549956,0.181203,0.135921,0.499367,0.885006,0.547221,0.637751,0.724482,0.473454,0.259473,0.496537,0.613806,0.00307232,0.582475,0.784846,0.405821,0.795052,0.696556,0.134296,0.250211,0.141487,0.983946,0.437044,0.690228,0.60138,0.833592,0.75885,0.898515,0.692416,0.219678,0.818152,0.76257,0.348785,0.495846,0.27374,0.0993956,0.989086,0.628825,0.435457,0.0821189,0.742436,0.641739,0.91541,0.628073,0.182231,0.606252,0.246084,0.0641093,0.4774,0.592179,0.466313,0.527655,0.339378,0.770335,0.607163,0.641635,0.708998,0.822269,0.0721081,0.426913,0.145805,0.781868,0.551381,0.659494,0.185492,0.688372,0.353919,0.588494,0.603209,0.318698,0.535963,0.495509,0.609144,0.0540512,0.466276,0.441887,0.355905,0.182007,0.765912,0.35438,0.914538,0.217303,0.193157,0.299212,0.560838,0.465354,0.917895,0.752185,0.136387,0.907313,0.671586,0.132112,0.478528,0.336006,0.0877368,0.156938,0.316075,0.0866503,0.940546,0.379062,0.443929,0.375981,0.966779,0.252499,0.53095,0.00653058,0.733747,0.31383,0.366973,0.90644,0.961352,0.26204,0.734962,0.499171,0.0360942,0.921797,0.0370362,0.848716,0.389091,0.241169,0.440108,0.73403,0.98911,0.942566,0.270901,0.350238,0.0826229,0.594581,0.0236909,0.272951,0.655203,0.846233,0.647361,0.26388,0.00409245,0.622445,0.473528,0.97454,0.0654532,0.696269,0.570315,0.475987,0.770348,0.813556,0.637111,0.23794,0.0612037,0.798266,0.614483,0.782633,0.114752,0.163361,0.467113,0.709638,0.952868,0.526696,0.947985,0.667526,0.943319,0.845221,0.840321,0.12224,0.211136,0.481899,0.643679,0.449665,0.990221,0.177161,0.569414,0.725569,0.845801,0.0360892,0.217098,0.59709,0.95541,0.02808,0.718898,0.386622,0.0165009,0.640847,0.226395,0.0666243,0.875268,0.873423,0.92545,0.322254,0.0441312,0.558754,0.370973,0.606233,0.776484,0.665205,0.359455,0.554207,0.465432,0.350806,0.767608,0.960114,0.88794,0.178696,0.520022,0.339561,0.86691,0.728772,0.0187654,0.195904,0.559344,0.51501,0.780471,0.343791,0.617152,0.963364,0.106167,0.552632,0.163168,0.0985967,0.612682,0.3017,0.985395,0.886555,0.897207,0.28279,0.969199,0.743212,0.196255,0.741042,0.128124,0.95194,0.995022,0.956761,0.0251188,0.60721,0.193381,0.0415733,0.441569,0.135443,0.170046,0.662614,0.463155,0.560048,0.119174,0.263097,0.357637,0.2642,0.163574,0.144072,0.767672,0.590499,0.936642,0.572901,0.39095,0.965336,0.835465,0.359598,0.665657,0.963064,0.596554,0.51411,0.80468,0.127557,0.992647,0.375603,0.722587,0.857002,0.853833,0.391232,0.282533,0.815474,0.851744,0.0123186,0.832603,0.343514,0.64081,0.503132,0.942356,0.855293,0.721175,0.19176,0.744472,0.137118,0.563107,0.994451,0.938454,0.63174,0.878599,0.987689,0.902435,0.733963,0.0833865,0.73864,0.571489,0.658582,0.652432,0.0822901,0.26712,0.519315,0.994919,0.278611,0.215254,0.689671,0.767812,0.524906,0.650882,0.678865,0.410822,0.293709,0.615606,0.59162,0.161219,0.381246,0.049911,0.965307,0.70203,0.0636416,0.0786808,0.423385,0.172268,0.0115929,0.765488,0.226529,0.864888,0.170049,0.367721,0.831408,0.57876,0.0525028,0.365894,0.524815,0.249668,0.420268,0.989695,0.752545,0.638819,0.981198,0.735409,0.927575,0.764271,0.428378,0.800334,0.0871727,0.64281,0.828785,0.294112,0.437376,0.856303,0.375969,0.414278,0.554604,0.935901,0.0428867,0.549506,0.337244,0.0270498,0.624692,0.640841,0.577455,0.269595,0.975224,0.418846,0.0646092,0.418591,0.634777,0.288511,0.322808,0.773855,0.400661,0.208851,0.0845152,0.442459,0.29733,0.405602,0.724324,0.139468,0.68378,0.415594,0.564393,0.149596,0.347765,0.0143374,0.623454,0.784277,0.306306,0.745502,0.453702,0.772327,0.785231,0.0922282,0.988621,0.14623,0.260137,0.653145,0.143167,0.0433165,0.0666064,0.231643,0.494732,0.640099,0.36124,0.769863,0.713638,0.410276,0.529149,0.226332,0.352631,0.486609,0.0482656,0.930144,0.615491,0.654281,0.44464,0.0567365,0.998478,0.95787,0.60895,0.244651,0.97381,0.586712,0.600016,0.428959,0.654036,0.881815,0.202416,0.969247,0.96228,0.499254,0.22105,0.375777,0.730272,0.824359,0.668891,0.698267,0.156844,0.5334,0.304575,0.753462,0.934496,0.89705,0.201824,0.921734,0.43553,0.366995,0.543912,0.429906,0.802296,0.508612,0.309445,0.726564,0.00747114,0.629621,0.310961,0.0205867,0.22971,0.340317,0.954365,0.567895,0.759375,0.999916,0.032052,0.408045,0.894347,0.0692877,0.795978,0.29622,0.700617,0.18003,0.964678,0.187541,0.978368,0.272308,0.530595,0.855857,0.391492,0.432361,0.462499,0.758543,0.781628,0.380551,0.113984,0.20247,0.840947,0.0301086,0.123547,0.299314,0.970233,0.171674,0.416466,0.808704,0.40149,0.972769,0.871413,0.297606,0.641147,0.499973,0.755509,0.0534101,0.0771883,0.916066,0.395009,0.580365,0.824306,0.617767,0.912815,0.273542,0.426967,0.0711024,0.130033,0.753061,0.748087,0.747401,0.280067,0.386415,0.441371,0.158275,0.987814,0.91175,0.296385,0.486497,0.488444,0.0603946,0.318411,0.175681,0.726677,0.850733,0.999781,0.578729,0.510578,0.0777591,0.936296,0.176927,0.33165,0.72788,0.0828761,0.82646,0.827648,0.0123323,0.706021,0.102356,0.728128,0.999338,0.867849,0.533883,0.750393,0.0248788,0.989937,0.103467,0.623785,0.468097,0.191295,0.146151,0.774025,0.721241,0.712328,0.169989,0.459331,0.783793,0.572885,0.792975,0.322046,0.445993,0.725087,0.0279674,0.491133,0.466053,0.51159,0.941278,0.125895,0.959928,0.969283,0.669713,0.238676,0.610369,0.510722,0.275549,0.386465,0.160386,0.427811,0.747148,0.543812,0.595568,0.731034,0.330345,0.62773,0.0540661,0.437918,0.0653222,0.779732,0.690285,0.602803,0.651832,0.273534,0.404014,0.530296,0.813878,0.197011,0.0945899,0.220722,0.384819,0.650296,0.693841,0.934973,0.579021,0.753445,0.193009,0.481624,0.8923,0.0904931,0.0791454,0.152441,0.734026,0.0916389,0.51799,0.7264,0.534354,0.0380554,0.665899,0.913334,0.480962,0.380958,0.52313,0.181343,0.83649,0.61661,0.302694,0.0386084,0.152267,0.244998,0.533013,0.0510662,0.956389,0.586015,0.80491,0.485562,0.393427,0.611719,0.417535,0.638854,0.049378,0.960501,0.0302762,0.729595,0.511145,0.151313,0.49697,0.000781953,0.0151016,0.987475,0.308116,0.119325,0.465423,0.142883,0.373813,0.571184,0.941577,0.302149,|0.37984,0.518877,0.905725,0.202153,0.403405,0.554179,0.947804,0.611359,0.45508,0.609881,0.710319,0.701283,0.0196584,0.485229,0.0484593,0.879623,0.281169,0.0028438,0.601035,0.541381,0.999086,0.725153,0.0942879,0.900414,0.0483322,0.226907,0.911656,0.0722961,0.183179,0.994408,0.391421,0.143281,0.250665,0.478931,0.479628,0.906133,0.805018,0.855087,0.423112,0.677208,0.379249,0.739317,0.156089,0.584047,0.311459,0.474614,0.459569,0.75763,0.191281,0.0793311,0.265316,0.334675,0.144239,0.185419,0.563893,0.641088,0.132322,0.500158,0.74472,0.619633,0.156421,0.0755904,0.733872,0.541586,0.698712,0.27485,0.348414,0.977404,0.998791,0.0517592,0.499913,0.300385,0.855707,0.907829,0.340195,0.854029,0.150477,0.498205,0.896898,0.514024,0.851163,0.48227,0.155518,0.592265,0.714577,0.321225,0.124774,0.913905,0.196767,0.210034,0.067301,0.392443,0.524199,0.274786,0.765252,0.723141,0.32312,0.20451,0.905355,0.389193,0.218289,0.460944,0.833787,0.905124,0.816365,0.377288,0.936095,0.618296,0.508428,0.668926,0.593272,0.357772,0.758484,0.195183,0.219588,0.117026,0.887824,0.354428,0.134898,0.122741,0.0355134,0.684687,0.565103,0.00341094,0.508119,0.0928251,0.98456,0.0964541,0.818529,0.85314,0.767853,0.250223,0.662975,0.51548,0.567981,0.809467,0.70795,0.949833,0.547455,0.671286,0.880272,0.41144,0.22274,0.540706,0.803026,0.0243771,0.475361,0.1338,0.375521,0.771616,0.155181,0.376252,0.242814,0.610857,0.583325,0.986193,0.799998,0.270861,0.832743,0.730673,0.135485,0.119351,0.73371,0.0756395,0.508329,0.438256,0.84965,0.86736,0.699961,0.911886,0.623076,0.477538,0.300469,0.192065,0.509266,0.017505,0.854759,0.268183,0.436512,0.924159,0.508023,0.00656182,0.385873,0.053184,0.698917,0.391979,0.155185,0.215062,0.222991,0.206166,0.600736,0.102234,0.173566,0.805988,0.117599,0.72304,0.728484,0.290392,0.76569,0.977619,0.422331,0.195299,0.833479,0.866448,0.551672,0.294828,0.583107,0.533653,0.0230391,0.714453,0.96853,0.439363,0.836763,0.0848141,0.833371,0.477536,0.226037,0.186091,0.742095,0.823407,0.34891,0.181073,0.589419,0.0182153,0.128838,0.154947,0.313777,0.512605,0.510451,0.164395,0.647402,0.71405,0.0417262,0.288006,0.212842,0.50497,0.143184,0.310853,0.185017,0.459715,0.248227,0.805095,0.335561,0.91031,0.792863,0.774564,0.0024398,0.158808,0.299612,0.462193,0.0360022,0.305214,0.334958,0.373958,0.238863,0.96955,0.534302,0.755945,0.681238,0.621071,0.881757,0.733701,0.574721,0.983463,0.201992,0.215942,0.995748,0.0166362,0.760069,0.908633,0.774721,0.102684,0.20108,0.331106,0.886807,0.664906,0.641388,0.764197,0.158975,0.313954,0.212632,0.143172,0.800161,0.570413,0.225696,0.732848,0.854028,0.379775,0.460918,0.00500393,0.421595,0.108631,0.612871,0.692613,0.625882,0.187329,0.363526,0.0341585,0.604534,0.296849,0.382692,0.66652,0.990872,0.974437,0.67627,0.805317,0.43294,0.424839,0.921378,0.294249,0.373067,0.91523,0.115517,0.224357,0.528502,0.562786,0.501463,0.415538,0.0473569,0.940841,0.464506,0.040396,0.522818,0.740442,0.429623,0.722155,0.457693,0.255343,0.0686838,0.582231,0.242503,0.419544,0.052974,0.641595,0.766275,0.49122,0.765526,0.199029,0.166954,0.0874463,0.97441,0.254514,0.395294,0.61464,0.728361,0.715104,0.171612,0.427826,0.825615,0.535394,0.324329,0.485163,0.597079,0.742538,0.990143,0.157998,0.605158,0.763212,0.614228,0.586564,0.757323,0.333807,0.744641,0.589063,0.464599,0.300935,0.614305,0.466036,0.345934,0.865905,0.572492,0.487385,0.767669,0.795913,0.594363,0.52744,0.248584,0.573855,0.0655002,0.70482,0.248926,0.90705,0.734598,0.33458,0.295291,0.386696,0.0585944,0.305732,0.134144,0.925217,0.514967,0.135165,0.674163,0.295536,0.227995,0.861797,0.132231,0.922813,0.398852,0.525233,0.559899,0.314356,0.946144,0.825733,0.106068,0.807057,0.581479,0.713215,0.780209,0.34773,0.229894,0.253381,0.17728,0.248097,0.645794,0.358236,0.336739,0.655058,0.0762523,0.783101,0.934467,0.142623,0.316604,0.530502,0.974115,0.536905,0.731815,0.534444,0.657513,0.448546,0.394464,0.0273758,0.719976,0.338035,0.10982,0.400003,0.462556,0.835813,0.662251,0.70052,0.961133,0.77307,0.121783,0.0914556,0.689074,0.253857,0.39401,0.373661,0.65778,0.241988,0.00154835,0.329888,0.142383,0.846159,0.853287,0.118399,0.0947828,0.802302,0.886199,0.333531,0.246852,0.383045,0.249284,0.852327,0.814447,0.339548,0.778354,0.274275,0.354786,0.850599,0.00387979,0.171993,0.405164,0.14604,0.274194,0.413262,0.234072,0.338965,0.866193,0.133089,0.764162,0.290527,0.845053,0.389174,0.296782,0.747326,0.10816,0.630571,0.0680664,0.204695,0.600129,0.880195,0.920895,0.354349,0.299229,0.65673,0.376387,0.909157,0.509349,0.807985,0.743637,0.294503,0.527373,0.0210018,0.385383,0.239483,0.89888,0.39706,0.737009,0.613419,0.223933,0.351857,0.311458,0.372452,0.387861,0.236525,0.0541275,0.652605,0.58428,0.172544,0.872189,0.527448,0.210173,0.167343,0.0459575,0.854884,0.545527,0.477794,0.0191492,0.109674,0.409859,0.621011,0.932446,0.444081,0.362486,0.651284,0.182654,0.296046,0.502829,0.338175,0.188144,0.101396,0.959682,0.108962,0.492747,0.708423,0.857603,0.408532,0.935595,0.44862,0.621263,0.815095,0.890263,0.649347,0.957183,0.912421,0.551763,0.411552,0.405351,0.875774,0.0627532,0.412345,0.562837,0.984033,0.207169,0.98194,0.604365,0.134512,0.420928,0.0858017,0.31357,0.0279556,0.626646,0.646689,0.585932,0.69279,0.905595,0.187764,0.387191,0.301331,0.0596189,0.389024,0.0899432,0.974984,0.00278449,0.841116,0.169666,0.40733,0.740767,0.909747,0.784161,0.384629,0.044626,0.426046,0.83009,0.76829,0.214324,0.931447,0.9888,0.894648,0.86444,0.942385,0.0445668,0.522533,0.394405,0.128259,0.998864,0.115956,0.254635,0.023198,0.692116,0.21288,0.0622147,0.0733148,0.504584,0.0284712,0.538487,0.589043,0.651491,0.935041,0.685718,0.663563,0.272294,0.983722,0.766643,0.515091,0.715753,0.35736,0.659909,0.274567,0.0756611,0.763083,0.751616,0.558774,0.482267,0.516963,0.676285,0.743104,0.395047,0.505769,0.361092,0.0277364,0.0324544,0.580495,0.373974,0.727739,0.413305,0.180682,0.455624,0.0720799,0.650882,0.155212,0.930853,0.451793,0.894558,0.648635,0.935781,0.930449,0.82672,0.420523,0.970422,0.245439,0.0606464,0.934305,0.954937,0.848448,0.692093,0.180506,0.410784,0.69773,0.744014,0.758631,0.283546,0.137239,0.104578,0.507406,0.83524,0.798082,0.0488067,0.899229,0.810587,0.993938,0.898774,0.860938,0.815839,0.422278,0.370561,0.567896,0.769148,0.547106,0.0894352,0.540215,0.610872,0.920538,0.826721,0.719742,0.213243,0.778206,0.76364,0.165709,0.199259,0.440439,0.100172,0.828675,0.0557247,0.677777,0.378908,0.239272,0.0419245,0.933331,0.381556,0.754425,0.877568,0.703649,0.5107,0.735136,0.454789,0.885183,0.310454,0.298484,0.238777,0.135143,0.378272,0.219209,0.6536,0.49062,0.701242,0.820693,0.776372,0.450903,0.361079,0.875836,0.820344,0.555619,0.383221,0.631765,0.395135,0.339192,0.317975,0.836036,0.723037,0.250398,0.893124,0.864764,0.852748,0.544968,0.589319,0.566582,0.578047,0.308168,0.54131,0.547097,0.0469453,0.432434,0.20957,0.560112,0.116145,0.615594,0.654807,0.564684,0.65408,0.443036,0.168229,0.980395,0.237419,0.749987,0.163713,0.225083,0.887911,0.328395,0.00836658,0.398285,0.189652,0.672336,0.0402931,0.152883,0.704027,0.712433,0.77934,0.851285,0.622158,0.730286,0.55906,0.335931,0.238197,0.186954,0.254303,0.459047,0.236128,0.926859,0.68007,0.0251412,0.198525,0.918222,0.125344,0.202247,0.235508,0.682638,0.800315,0.937654,0.956842,0.023378,0.823641,0.16734,0.426091,0.0292861,0.408685,0.839253,0.448509,0.270573,0.0885186,0.96589,0.0127921,0.320343,0.800906,0.89486,0.0802462,0.791026,0.57152,0.998468,0.351356,0.0619318,0.257167,0.975363,0.682138,0.464354,0.349501,0.00112927,0.849886,0.995374,0.197159,0.329164,0.149447,0.543885,0.466975,0.450505,0.560324,0.322652,0.691646,0.276181,0.783364,0.0531121,0.213784,0.605712,0.441366,0.557193,0.138628,0.689073,0.0406811,0.108225,0.358756,0.763427,0.404911,0.998677,0.663471,0.42429,0.0656416,0.229034,0.628308,0.78772,0.655425,0.941288,0.397868,0.430087,0.720232,0.871196,0.619228,0.796921,0.551146,0.829441,0.0917124,0.653322,0.876111,0.684771,0.507892,0.957909,0.453444,0.318659,0.322927,0.907102,0.624937,0.477196,0.493784,0.124396,0.64452,0.525794,0.419997,0.846443,0.444698,0.0380912,0.719464,0.841638,0.72095,0.591259,0.151027,0.0073579,0.581668,0.706105,0.67846,0.366118,0.923362,0.813435,0.692112,0.877945,0.830354,0.68684,0.040838,0.415252,0.96542,0.554335,0.149452,0.229543,0.711854,0.270208,0.399378,0.932634,0.953066,0.881534,0.324814,0.857804,0.450737,0.976698,0.731734,0.888626,0.209282,0.258657,0.51737,0.710236,0.0735785,0.505215,0.481261,0.286901,0.584826,0.792404,0.732921,0.522982,0.397314,0.322759,0.802421,0.490234,0.771204,0.780121,0.939983,0.584695,0.675916,0.599438,0.234833,0.0189059,0.640901,0.741571,0.607662,0.90814,0.598106,0.540597,0.579866,0.860525,0.518173,0.77066,0.558924,0.893584,0.906214,0.93978,0.549134,0.700734,0.352107,0.85998,0.841971,0.788482,0.550344,0.648432,0.232213,0.563926,0.0788722,0.884578,0.375061,0.77122,0.927647,0.214918,0.347885,0.779007,0.823705,0.426366,0.721515,0.560775,0.610035,0.76997,0.144402,0.301319,0.511125,0.226661,0.641979,0.849881,0.268229,0.911102,0.684339,0.798618,0.991854,0.627434,0.884298,0.929934,|0.599722,0.246671,0.374274,0.233752,0.615607,0.0108113,0.55868,0.00262278,0.418189,0.780899,0.693016,0.975719,0.964433,0.579711,0.40824,0.507324,0.285149,0.723812,0.212616,0.747505,0.565573,0.988842,0.116146,0.551054,0.919727,0.510278,0.421912,0.0313214,0.228424,0.387237,0.187165,0.551399,0.0925509,0.903471,0.174716,0.749679,0.0596941,0.208828,0.594161,0.582945,0.697033,0.519134,0.978892,0.103298,0.966233,0.951601,0.964047,0.940524,0.243322,0.558272,0.285534,0.571544,0.835717,0.534241,0.376788,0.266628,0.291449,0.605446,0.379712,0.574968,0.940432,0.373788,0.976581,0.759671,0.899258,0.38694,0.256332,0.61401,0.917886,0.611175,0.118258,0.633201,0.486515,0.425709,0.277851,0.985275,0.472557,0.879548,0.0762696,0.234335,0.729491,0.468801,0.370052,0.95783,0.994138,0.146515,0.0852256,0.837932,0.501221,0.835908,0.145494,0.426608,0.667482,0.178044,0.771509,0.71731,0.419502,0.00916213,0.2352,0.0858835,0.419143,0.0608805,0.456988,0.513957,0.931781,0.7374,0.304525,0.49693,0.224519,0.381052,0.517011,0.117761,0.526964,0.7004,0.103802,0.713828,0.2293,0.300553,0.296205,0.177364,0.515917,0.220772,0.902814,0.393326,0.286824,0.529449,0.287788,0.176477,0.0162498,0.670936,0.202375,0.353002,0.74574,0.541982,0.821084,0.771141,0.848145,0.212216,0.774696,0.910194,0.27457,0.213964,0.98825,0.0277347,0.179043,0.852403,0.785987,0.050983,0.795689,0.731546,0.956231,0.475994,0.678417,0.355687,0.316156,0.478877,0.397026,0.562754,0.0664155,0.665663,0.843251,0.124924,0.965017,0.49601,0.984962,0.956949,0.861339,0.635859,0.745811,0.483112,0.635773,0.129617,0.498889,0.923638,0.219816,0.363611,0.237736,0.0264589,0.769689,0.953023,0.168757,0.0517331,0.491104,0.102052,0.506732,0.358903,0.17421,0.491682,0.858324,0.421687,0.435423,0.731516,0.142918,0.460823,0.625164,0.792945,0.796888,0.219866,0.97015,0.122848,0.173432,0.617774,0.535527,0.427368,0.32878,0.780335,0.171746,0.840385,0.341942,0.520466,0.829962,0.692349,0.490201,0.768068,0.0695054,0.707467,0.249324,0.564055,0.397361,0.366494,0.251197,0.57795,0.784862,0.635647,0.467728,0.594899,0.854263,0.980266,0.803163,0.607351,0.764034,0.149358,0.342101,0.576163,0.777481,0.936612,0.563042,0.510111,0.639464,0.0592242,0.265757,0.295387,0.795277,0.464047,0.0178149,0.0959752,0.0596539,0.458163,0.439425,0.0382707,0.504708,0.0824457,0.984681,0.544665,0.55269,0.171379,0.34503,0.842475,0.70268,0.659412,0.533206,0.48841,0.8289,0.8166,0.171583,0.198343,0.398176,0.351125,0.831236,0.684467,0.226904,0.651569,0.0587882,0.63549,0.0290586,0.498395,0.516134,0.243594,0.844683,0.278971,0.190586,0.474269,0.377206,0.443861,0.761491,0.804706,0.382361,0.103191,0.557145,0.422329,0.675214,0.0606655,0.210238,0.466268,0.0491796,0.141294,0.490023,0.227229,0.533121,0.045733,0.149512,0.233101,0.44972,0.985987,0.199555,0.87955,0.232206,0.947023,0.102031,0.872278,0.584974,0.951835,0.177208,0.527981,0.665653,0.988131,0.923531,0.123905,0.757012,0.516366,0.358595,0.943621,0.67885,0.21134,0.0402877,0.173271,0.721858,0.897071,0.129753,0.575283,0.209372,0.764746,0.665247,0.417844,0.594261,0.511994,0.0765311,0.929762,0.710094,0.149356,0.0358977,0.614813,0.463103,0.438682,0.0310749,0.685858,0.776264,0.849196,0.917084,0.432971,0.801549,0.0151385,0.688699,0.355405,0.766048,0.626349,0.142613,0.143741,0.738639,0.414848,0.342453,0.00831383,0.440782,0.0215397,0.110589,0.621474,0.203241,0.974099,0.212581,0.715054,0.0587959,0.944974,0.707889,0.407342,0.283329,0.525573,0.149856,0.0843283,0.625262,0.976855,0.499288,0.730275,0.518002,0.144112,0.807687,0.21922,0.364704,0.36343,0.655105,0.879757,0.25084,0.0295846,0.904683,0.995688,0.690103,0.531977,0.01135,0.290439,0.189838,0.402974,0.502494,0.770064,0.3367,0.409196,0.633324,0.881224,0.442747,0.00803214,0.21751,0.30414,0.6375,0.461687,0.586084,0.939358,0.0213251,0.334044,0.690389,0.109015,0.471015,0.758917,0.77515,0.0411943,0.0254495,0.631716,0.233858,0.842104,0.157563,0.346961,0.280339,0.136154,0.358229,0.665582,0.177033,0.325178,0.201631,0.507699,0.853792,0.304365,0.783875,0.911782,0.0702688,0.481718,0.33637,0.285043,0.36761,0.850312,0.809488,0.152132,0.871689,0.280775,0.573418,0.911948,0.829874,0.47601,0.479116,0.147258,0.386485,0.144918,0.14117,0.995622,0.905492,0.520709,0.100752,0.963217,0.619792,0.127346,0.792858,0.352047,0.144791,0.0582774,0.0969103,0.760621,0.356501,0.522153,0.202703,0.510758,0.774943,0.906778,0.778711,0.294746,0.795489,0.382389,0.106534,0.797082,0.867086,0.132405,0.0214772,0.270802,0.563807,0.18691,0.23641,0.796409,0.654423,0.691096,0.429299,0.133857,0.58074,0.47848,0.733642,0.895992,0.936814,0.213038,0.722155,0.534453,0.941471,0.799907,0.48674,0.441889,0.736144,0.0320262,0.727803,0.422696,0.358975,0.428075,0.419767,0.0242202,0.517535,0.938094,0.720625,0.141622,0.622963,0.716658,0.940934,0.374365,0.190723,0.306409,0.59588,0.957261,0.0309562,0.473996,0.0396661,0.93116,0.555539,0.796409,0.0556092,0.128302,0.247,0.723046,0.75571,0.0861194,0.417042,0.134302,0.592451,0.564646,0.30569,0.838057,0.540514,0.690942,0.458483,0.52003,0.2763,0.568591,0.290028,0.842314,0.960338,0.26375,0.717421,0.995538,0.204643,0.520068,0.0877367,0.889428,0.510561,0.541019,0.41308,0.436611,0.571193,0.121439,0.310782,0.394337,0.628942,0.639084,0.063511,0.389552,0.520072,0.343523,0.615403,0.418215,0.907641,0.76696,0.43643,0.453292,0.889333,0.563091,0.0167575,0.601243,0.614612,0.432378,0.321397,0.168364,0.579877,0.401316,0.964738,0.327632,0.384092,0.780894,0.607753,0.407255,0.371625,0.717595,0.766375,0.414248,0.869236,0.0175336,0.544106,0.657593,0.92049,0.985608,0.952395,0.0918137,0.452261,0.387452,0.128048,0.0526978,0.535996,0.326369,0.819386,0.335666,0.637571,0.983724,0.000759721,0.622428,0.661766,0.731434,0.314886,0.804849,0.704003,0.548189,0.369008,0.0501089,0.477605,0.654092,0.290588,0.63431,0.416629,0.857191,0.813971,0.963025,0.880627,0.0623988,0.148881,0.854787,0.351005,0.15191,0.871385,0.107871,0.355209,0.726667,0.671527,0.480939,0.663832,0.786461,0.134743,0.844092,0.109008,0.771015,0.871597,0.639941,0.35341,0.845232,0.871235,0.327302,0.991016,0.797922,0.274321,0.249328,0.686074,0.640301,0.326301,0.23278,0.808582,0.302091,0.00755662,0.0805066,0.734303,0.181212,0.596269,0.27118,0.83795,0.170682,0.00412136,0.022885,0.27815,0.836515,0.967744,0.803141,0.841914,0.549641,0.00117582,0.709157,0.974633,0.432635,0.0519291,0.768679,0.602798,0.860765,0.348916,0.185846,0.921702,0.457578,0.0242923,0.110538,0.475142,0.280799,0.269857,0.844396,0.253174,0.159741,0.717174,0.675004,0.320643,0.706373,0.141571,0.531509,0.912972,0.309841,0.12704,0.608764,0.896903,0.563304,0.75427,0.0602512,0.781406,0.709282,0.660134,0.634768,0.32075,0.854632,0.661861,0.277939,0.276051,0.124694,0.458857,0.276439,0.00598127,0.903545,0.41738,0.662777,0.432008,0.0483957,0.638675,0.403857,0.630654,0.457657,0.823223,0.843835,0.109829,0.659245,0.556193,0.578689,0.547647,0.147461,0.692899,0.948396,0.0366471,0.170542,0.421606,0.272545,0.172268,0.0774221,0.173212,0.0876606,0.624293,0.628728,0.332402,0.140137,0.129216,0.89417,0.177342,0.0814292,0.132418,0.530073,0.239423,0.45184,0.226958,0.274569,0.664591,0.0180178,0.29322,0.473168,0.115964,0.72644,0.222561,0.986052,0.537419,0.160746,0.0886341,0.389061,0.929118,0.988877,0.108695,0.0718887,0.704483,0.137431,0.352517,0.632122,0.340819,0.580234,0.0866972,0.706773,0.493922,0.598082,0.215896,0.84854,0.48478,0.186851,0.288065,0.663734,0.401807,0.334328,0.472373,0.579771,0.959131,0.274244,0.517851,0.52962,0.102648,0.116662,0.278744,0.989612,0.872891,0.325135,0.662045,0.643113,0.175246,0.299117,0.383434,0.831671,0.018326,0.733377,0.751794,0.194749,0.724951,0.943008,0.909589,0.6259,0.516383,0.400822,0.417117,0.434482,0.985827,0.437862,0.42754,0.501605,0.564809,0.0693964,0.165689,0.652645,0.216173,0.202823,0.70175,0.639248,0.69054,0.170928,0.113912,0.13027,0.371642,0.440181,0.0997937,0.369372,0.648736,0.345521,0.839946,0.0938873,0.0955207,0.154155,0.364376,0.989167,0.0617311,0.262088,0.43141,0.183337,0.860772,0.581769,0.287322,0.755922,0.189019,0.757294,0.32898,0.776322,0.396407,0.0683024,0.196428,0.668626,0.60394,0.0469495,0.860459,0.467127,0.435628,0.95912,0.962868,0.289596,0.544427,0.701214,0.0536691,0.913928,0.066671,0.113175,0.556139,0.101134,0.737508,0.390725,0.446059,0.503412,0.209523,0.122771,0.973802,0.660532,0.000421524,0.683203,0.851737,0.374034,0.619047,0.284167,0.0433605,0.231652,0.781926,0.768247,0.662268,0.656861,0.653417,0.894267,0.876592,0.454254,0.86159,0.812207,0.517164,0.872974,0.177216,0.225552,0.814409,0.429813,0.0751538,0.980597,0.686526,0.610961,0.755338,0.114976,0.228089,0.697841,0.831894,0.101636,0.757702,0.548938,0.938639,0.870017,0.692305,0.996093,0.427044,0.198109,0.188539,0.760903,0.00309914,0.63462,0.813915,0.421493,0.966639,0.244287,0.259941,0.77708,0.922622,0.587318,0.516822,0.400878,0.657579,0.774485,0.100771,0.0927967,0.146026,0.734789,0.911038,0.885053,0.0374986,0.89795,0.185405,0.981495,0.490892,0.40546,0.963118,0.339072,0.757104,0.9895,0.269205,0.389182,0.457167,0.226701,0.548018,0.374029,0.135085,0.939031,0.0433388,0.434172,0.332557,0.0804032,0.849398,0.540471,0.424862,0.262892,0.291193,0.950339,|0.135596,0.934004,0.275283,0.940693,0.503028,0.549473,0.610912,0.566346,0.84608,0.0617715,0.25786,0.0373064,0.714281,0.267471,0.451814,0.516205,0.253375,0.0720515,0.54017,0.183007,0.949941,0.921309,0.62472,0.59369,0.543267,0.981298,0.309993,0.0129623,0.196364,0.988072,0.072154,0.303675,0.114744,0.814034,0.579197,0.876972,0.622587,0.271355,0.994535,0.998658,0.937571,0.490842,0.148582,0.433673,0.941477,0.0789375,0.757016,0.0988816,0.493427,0.569651,0.18484,0.376032,0.895911,0.263522,0.288208,0.303832,0.472071,0.490552,0.918727,0.780681,0.979943,0.558024,0.267592,0.45067,0.555479,0.639578,0.994294,0.0312331,0.211561,0.368895,0.821808,0.193089,0.865937,0.876226,0.395444,0.228862,0.644972,0.0212643,0.864078,0.749394,0.0152301,0.693216,0.26256,0.136189,0.241233,0.689716,0.538358,0.968799,0.660176,0.454286,0.852979,0.2265,0.632412,0.67445,0.204326,0.680116,0.514025,0.568015,0.439772,0.79989,0.717301,0.607199,0.10136,0.456507,0.983768,0.105609,0.491916,0.426775,0.474351,0.123419,0.305022,0.00272566,0.225163,0.701038,0.337159,0.926549,0.434057,0.0129944,0.744338,0.47541,0.632913,0.927527,0.724883,0.960912,0.256369,0.348452,0.611662,0.52245,0.0491815,0.803435,0.906955,0.281084,0.839846,0.195254,0.483746,0.414235,0.988701,0.739343,0.336255,0.495584,0.870497,0.118479,0.238994,0.225575,0.7975,0.820181,0.291346,0.314214,0.924899,0.38138,0.519483,0.541171,0.603063,0.226139,0.701682,0.949225,0.0362934,0.0994097,0.94974,0.482045,0.0215026,0.417816,0.561815,0.405092,0.401316,0.824498,0.602909,0.651736,0.919506,0.165437,0.751935,0.287122,0.397328,0.632852,0.560622,0.401392,0.128958,0.400736,0.740691,0.16373,0.469211,0.297156,0.619888,0.623933,0.552328,0.727486,0.865767,0.51339,0.753017,0.76836,0.365315,0.215015,0.437224,0.722781,0.0897742,0.955613,0.700777,0.00749636,0.524228,0.712623,0.736187,0.638547,0.326702,0.57675,0.181292,0.785838,0.219191,0.860546,0.0452636,0.640504,0.924036,0.178661,0.9386,0.900602,0.0552834,0.17472,0.00145054,0.0997332,0.48601,0.867071,0.0697504,0.765562,0.0695443,0.252487,0.818913,0.933919,0.744612,0.27549,0.364792,0.127945,0.345507,0.0266784,0.160606,0.614049,0.678627,0.780597,0.118838,0.480772,0.521769,0.791187,0.281185,0.964825,0.0635674,0.981715,0.665079,0.110532,0.780377,0.826147,0.038968,0.318212,0.789101,0.587657,0.0619974,0.881635,0.731108,0.0227859,0.540908,0.395577,0.000807583,0.187153,0.803925,0.376397,0.526533,0.205884,0.400999,0.328011,0.9946,0.407724,0.431565,0.860605,0.0919935,0.520878,0.604435,0.570375,0.142389,0.301571,0.00820613,0.397943,0.450136,0.505463,0.572593,0.165315,0.669118,0.93263,0.824946,0.177018,0.625357,0.105868,0.273042,0.449166,0.0794608,0.494381,0.0881895,0.0397799,0.356206,0.691251,0.36538,0.715229,0.904237,0.442487,0.295878,0.869828,0.822449,0.857042,0.804063,0.311233,0.715542,0.455812,0.73796,0.426591,0.479201,0.982989,0.0191228,0.338164,0.963081,0.490496,0.402663,0.194068,0.594079,0.688189,0.628421,0.578728,0.0584013,0.268058,0.170152,0.425834,0.63855,0.371765,0.397654,0.439876,0.265344,0.978884,0.697942,0.476143,0.0375302,0.723028,0.0540962,0.911855,0.181423,0.456207,0.282121,0.718101,0.0904146,0.104929,0.444278,0.192265,0.318651,0.48433,0.355081,0.593562,0.73472,0.748486,0.377065,0.647636,0.68716,0.955473,0.0540349,0.0720137,0.0575942,0.188723,0.507256,0.912026,0.226777,0.789219,0.213461,0.0324305,0.28954,0.874712,0.725158,0.520389,0.427488,0.477252,0.91494,0.980663,0.623896,0.729525,0.785759,0.157463,0.574162,0.599944,0.539855,0.585368,0.101098,0.564853,0.645933,0.821619,0.266729,0.620758,0.907378,0.654274,0.184054,0.331668,0.562622,0.712879,0.227532,0.776606,0.738129,0.284285,0.792036,0.183021,0.613511,0.952009,0.500607,0.742767,0.71305,0.391151,0.464828,0.937083,0.176858,0.534594,0.0196145,0.563126,0.153433,0.697967,0.588161,0.949414,0.632119,0.261056,0.813176,0.375908,0.814852,0.217622,0.852094,0.263625,0.505131,0.971438,0.151205,0.143421,0.583286,0.138249,0.000831485,0.0114501,0.888539,0.743969,0.132522,0.866453,0.812013,0.905684,0.101358,0.126376,0.166639,0.699398,0.124454,0.713228,0.368543,0.107283,0.717657,0.621746,0.693677,0.414458,0.482762,0.54967,0.404579,0.806459,0.290271,0.891512,0.154929,0.179331,0.423447,0.728507,0.967471,0.0409355,0.312885,0.595792,0.087567,0.981962,0.153947,0.636961,0.101827,0.176896,0.116159,0.927367,0.126229,0.762182,0.461645,0.253482,0.276311,0.401058,0.301069,0.434188,0.795924,0.318739,0.925743,0.861057,0.948941,0.626665,0.26654,0.175834,0.644335,0.503339,0.12045,0.734724,0.950757,0.258096,0.140026,0.98506,0.0179003,0.768045,0.0041036,0.64317,0.206161,0.415973,0.350599,0.210412,0.592458,0.447824,0.732463,0.522759,0.482612,0.146914,0.651632,0.827036,0.396172,0.474178,0.29635,0.371779,0.162591,0.867977,0.842278,0.046056,0.587253,0.574528,0.76397,0.988964,0.355764,0.0900655,0.44531,0.602698,0.51502,0.481628,0.652495,0.18607,0.0519949,0.780494,0.110285,0.737229,0.643297,0.672409,0.479716,0.041167,0.00562853,0.52947,0.61168,0.41533,0.902021,0.7784,0.768817,0.380552,0.468878,0.915783,0.00324142,0.923838,0.943745,0.374959,0.595764,0.679508,0.627722,0.203973,0.912391,0.561016,0.746339,0.141947,0.024147,0.117001,0.319478,0.0817828,0.789739,0.901796,0.692832,0.0241474,0.824463,0.799285,0.307362,0.050887,0.319382,0.977627,0.650447,0.416117,0.040853,0.773956,0.367275,0.936173,0.116772,0.711791,0.513136,0.519169,0.809589,0.860563,0.394784,0.6336,0.847898,0.719727,0.210773,0.174279,0.696848,0.858541,0.426644,0.396446,0.450683,0.166343,0.148318,0.155475,0.655501,0.582424,0.298648,0.214463,0.929313,0.618477,0.545683,0.0670528,0.544733,0.616927,0.0852813,0.548456,0.518353,0.318038,0.0382785,0.338708,0.194495,0.805992,0.739172,0.610366,0.69194,0.553496,0.671479,0.174804,0.245302,0.810216,0.195503,0.50186,0.421565,0.567339,0.0797046,0.114595,0.205334,0.115908,0.410053,0.254977,0.911031,0.60008,0.200667,0.777229,0.463576,0.969151,0.956123,0.294827,0.845401,0.695932,0.691634,0.212573,0.570081,0.484607,0.194962,0.771471,0.888535,0.528329,0.34541,0.791437,0.170304,0.759124,0.872098,0.475175,0.544507,0.746262,0.872065,0.194401,0.32413,0.415812,0.195856,0.15375,0.888958,0.449061,0.2846,0.708716,0.84667,0.958734,0.385521,0.508368,0.966415,0.245388,0.316095,0.774798,0.823422,0.161137,0.300956,0.970954,0.686673,0.625283,0.799013,0.120454,0.886084,0.0243347,0.265212,0.86129,0.450681,0.567811,0.240837,0.616296,0.978062,0.0904096,0.809097,0.719459,0.78485,0.382408,0.809888,0.447409,0.386506,0.185262,0.271627,0.770997,0.576851,0.0352539,0.683038,0.500783,0.903117,0.142472,0.682127,0.27737,0.78835,0.547237,0.616912,0.503016,0.857418,0.498978,0.123474,0.663971,0.326158,0.954734,0.01932,0.55051,0.643923,0.385833,0.118376,0.707282,0.459027,0.619777,0.0932804,0.840976,0.663627,0.880485,0.662627,0.422477,0.51961,0.781263,0.887482,0.162124,0.705839,0.0135678,0.298928,0.447613,0.518158,0.972044,0.560896,0.389713,0.660592,0.859286,0.188827,0.197467,0.0848186,0.610969,0.0598794,0.925327,0.616072,0.439486,0.0212705,0.827779,0.941178,0.078945,0.545317,0.948074,0.111746,0.646419,0.636578,0.982303,0.774123,0.32835,0.371079,0.0750489,0.982186,0.813224,0.651916,0.768295,0.587439,0.254887,0.0391005,0.372068,0.00201416,0.801675,0.816297,0.606658,0.0427382,0.948361,0.395773,0.713986,0.694839,0.308472,0.0329459,0.048578,0.0265187,0.134495,0.453247,0.306816,0.503828,0.374985,0.347149,0.44196,0.692831,0.933356,0.341234,0.135592,0.892052,0.805205,0.908459,0.352313,0.343584,0.230091,0.167857,0.959045,0.946662,0.73349,0.290698,0.366385,0.892403,0.648471,0.361905,0.044952,0.17318,0.209934,0.611807,0.963612,0.299588,0.3025,0.352393,0.824853,0.24998,0.428992,0.707976,0.825351,0.0537118,0.321319,0.803524,0.0605036,0.579241,0.608383,0.578929,0.458981,0.913223,0.919781,0.652335,0.64642,0.198525,0.953735,0.0634385,0.661905,0.737757,0.921386,0.0611653,0.760291,0.200284,0.848276,0.356839,0.0635126,0.740171,0.684954,0.518041,0.466626,0.217948,0.591773,0.325253,0.36576,0.890119,0.647471,0.425157,0.116872,0.163763,0.154326,0.716813,0.414571,0.738184,0.956633,0.174796,0.577914,0.679244,0.559319,0.419904,0.349407,0.595839,0.984916,0.203394,0.118977,0.314901,0.930135,0.520702,0.0297664,0.906411,0.668913,0.299661,0.156953,0.0952768,0.372008,0.0598781,0.283141,0.0369381,0.0643664,0.80077,0.680032,0.490863,0.927098,0.144289,0.342063,0.6798,0.403398,0.584706,0.317229,0.15293,0.668415,0.51764,0.544072,0.93844,0.770001,0.246164,0.398077,0.508455,0.459579,0.409144,0.96785,0.343283,0.323439,0.752908,0.63688,0.935749,0.757647,0.457093,0.430828,0.860326,0.965517,0.601041,0.903975,0.0641639,0.892279,0.203342,0.251443,0.334898,0.124985,0.173886,0.355905,0.64468,0.231353,0.607933,0.265593,0.130896,0.0227805,0.294631,0.801713,0.267952,0.2368,0.158299,0.978238,0.914128,0.182156,0.110184,0.661085,0.952076,0.614758,0.552374,0.808334,0.187102,0.0251969,0.148155,0.260785,0.507613,0.835939,0.168015,0.0796218,0.254829,0.210208,0.757813,0.872857,0.936477,0.948181,0.141871,0.936729,0.609404,0.382478,0.63485,0.617758,0.687678,0.852116,0.683766,0.435709,0.942777,0.770038,0.0370017,0.866281,0.746253,0.183384,0.622467,0.618716,0.723752,0.838425,|0.852218,0.688545,0.885659,0.318309,0.769627,0.924654,0.617266,0.212083,0.491919,0.573547,0.192082,0.412711,0.354644,0.556704,0.175133,0.759515,0.826589,0.40716,0.187925,0.166028,0.0792724,0.650642,0.184343,0.683178,0.813502,0.7824,0.506842,0.406947,0.219931,0.384964,0.288604,0.0619071,0.11357,0.323013,0.0397692,0.839182,0.118254,0.290537,0.667727,0.76742,0.636834,0.950664,0.375778,0.203249,0.370808,0.909687,0.090844,0.878149,0.856958,0.632048,0.918289,0.440192,0.713089,0.548626,0.234317,0.0491189,0.967982,0.341694,0.423333,0.169552,0.442552,0.0883477,0.841877,0.298427,0.883083,0.0802405,0.0241444,0.0737718,0.510284,0.269202,0.184261,0.0318299,0.82947,0.60445,0.21101,0.793803,0.819336,0.996854,0.43829,0.867919,0.609034,0.694336,0.620678,0.114207,0.333517,0.357008,0.261112,0.571585,0.322883,0.239198,0.819634,0.740535,0.795562,0.249909,0.285426,0.834321,0.867372,0.0152441,0.19494,0.46241,0.607611,0.288083,0.633166,0.778641,0.668441,0.608562,0.0452466,0.946674,0.271344,0.0293825,0.52218,0.85547,0.575348,0.295556,0.252095,0.758911,0.668405,0.434764,0.0466487,0.794183,0.0545252,0.294951,0.484477,0.977744,0.983459,0.0233625,0.490928,0.536808,0.147693,0.281799,0.758342,0.538045,0.54486,0.230429,0.881378,0.05742,0.484029,0.89652,0.732684,0.0432906,0.523267,0.146046,0.331343,0.0817815,0.393243,0.356366,0.913663,0.701031,0.36203,0.9142,0.629804,0.499413,0.0203392,0.628823,0.375911,0.102113,0.386467,0.0998397,0.182445,0.0255836,0.736383,0.478088,0.225061,0.0568966,0.765177,0.898366,0.641109,0.699915,0.377112,0.134321,0.460666,0.405924,0.618632,0.0822603,0.260661,0.829662,0.364335,0.0649148,0.912466,0.385124,0.826706,0.000397146,0.79906,0.978274,0.279929,0.0613693,0.604028,0.581143,0.542783,0.865839,0.346926,0.610678,0.615856,0.342659,0.910134,0.92811,0.815812,0.623818,0.440546,0.00689089,0.321148,0.176068,0.530409,0.114761,0.224789,0.0924007,0.501011,0.184873,0.140657,0.84948,0.0174106,0.786807,0.850311,0.757888,0.142683,0.00332916,0.70212,0.614105,0.568249,0.723456,0.747062,0.344245,0.746825,0.218366,0.858071,0.476424,0.57362,0.421184,0.267293,0.18804,0.0580944,0.919209,0.896866,0.642157,0.11543,0.0712953,0.799572,0.986324,0.530638,0.796143,0.663255,0.832265,0.972661,0.840498,0.765438,0.0433287,0.470937,0.444394,0.750517,0.0175667,0.907978,0.449861,0.900888,0.959556,0.339109,0.978586,0.00452679,0.777181,0.78363,0.998022,0.363414,0.415444,0.22613,0.299609,0.252877,0.605985,0.297246,0.789648,0.496144,0.594578,0.758434,0.493186,0.921183,0.033228,0.229578,0.0800359,0.399042,0.445386,0.875136,0.15139,0.134614,0.635884,0.86268,0.829812,0.259932,0.0975164,0.522766,0.654273,0.036749,0.493537,0.0372608,0.942023,0.938157,0.118927,0.81644,0.683461,0.688365,0.629739,0.489576,0.620259,0.441928,0.817569,0.649581,0.003232,0.0981678,0.395296,0.9334,0.177438,0.626561,0.16908,0.268368,0.504395,0.327639,0.927046,0.438772,0.408036,0.265168,0.666224,0.938699,0.586343,0.71108,0.57051,0.664982,0.995747,0.15984,0.869755,0.996531,0.611386,0.453549,0.95286,0.881417,0.679024,0.462672,0.733314,0.959492,0.311593,0.309497,0.803009,0.311682,0.502053,0.923318,0.925593,0.584828,0.0549228,0.98921,0.585754,0.0688227,0.643324,0.0831668,0.972162,0.997448,0.934053,0.105181,0.766797,0.25903,0.643963,0.199557,0.421611,0.146018,0.355845,0.586099,0.932968,0.654719,0.458619,0.10232,0.242055,0.106006,0.650852,0.265873,0.542469,0.54344,0.287006,0.796347,0.0208715,0.419741,0.0511766,0.795529,0.665099,0.63135,0.752874,0.430714,0.68967,0.352715,0.197812,0.567517,0.589846,0.65722,0.584137,0.726634,0.573078,0.477621,0.746725,0.18359,0.87789,0.670949,0.279713,0.251521,0.815298,0.484966,0.281111,0.977877,0.606951,0.609018,0.0214138,0.0539585,0.491554,0.0342653,0.972183,0.535982,0.771082,0.792595,0.642782,0.402368,0.121633,0.253241,0.628566,0.516862,0.282063,0.812983,0.352851,0.742308,0.303002,0.508047,0.910526,0.27083,0.112883,0.587001,0.887931,0.780231,0.0115404,0.750255,0.412688,0.414935,0.973586,0.279903,0.0274969,0.895123,0.0769228,0.551434,0.875706,0.593166,0.472544,0.112657,0.582012,0.420804,0.452966,0.225029,0.913834,0.404725,0.92337,0.252395,0.862477,0.659057,0.443276,0.492968,0.528944,0.682314,0.164175,0.842477,0.939427,0.318363,0.38694,0.624868,0.498764,0.742039,0.243085,0.134363,0.394514,0.868302,0.809839,0.459976,0.0882077,0.879843,0.854473,0.541314,0.607963,0.701814,0.0869458,0.204097,0.0492814,0.876827,0.173795,0.367216,0.309643,0.352353,0.761403,0.476586,0.332964,0.866214,0.0925952,0.0888059,0.566435,0.603642,0.205301,0.875131,0.979072,0.237755,0.137304,0.496728,0.421623,0.107455,0.189457,0.0632088,0.738614,0.474837,0.814311,0.709629,0.0735496,0.635552,0.0808802,0.86951,0.632189,0.492484,0.969183,0.265128,0.816985,0.712073,0.224001,0.152693,0.59362,0.317987,0.00691682,0.0827029,0.0930402,0.556203,0.686056,0.43819,0.404747,0.42947,0.188553,0.635141,0.595376,0.768992,0.15844,0.642888,0.956051,0.11175,0.593179,0.941268,0.735674,0.50601,0.0171065,0.0465141,0.720163,0.919906,0.494745,0.340868,0.400668,0.662843,0.806625,0.14135,0.215125,0.836386,0.965731,0.00983095,0.0935464,0.930912,0.146703,0.549645,0.508022,0.837467,0.804493,0.357458,0.22487,0.142712,0.303492,0.716684,0.52064,0.770889,0.659004,0.898846,0.80638,0.16092,0.675522,0.968659,0.856696,0.102403,0.880772,0.277024,0.430231,0.774085,0.388904,0.0486667,0.830167,0.0320446,0.696192,0.161665,0.650198,0.726871,0.207932,0.284943,0.524035,0.544589,0.15562,0.123802,0.499367,0.581105,0.404707,0.620054,0.921142,0.0811113,0.089752,0.560024,0.0946398,0.413836,0.513772,0.242725,0.230575,0.154228,0.25765,0.0820678,0.545938,0.73769,0.416997,0.436271,0.661158,0.656631,0.590248,0.874341,0.466386,0.18513,0.800061,0.880821,0.536968,0.873463,0.334707,0.490109,0.125578,0.164893,0.896043,0.729016,0.170239,0.142142,0.989599,0.588971,0.038738,0.00425696,0.0795907,0.759809,0.77583,0.259174,0.921415,0.388872,0.252724,0.885936,0.328751,0.300413,0.257454,0.36547,0.962086,0.626038,0.919299,0.114169,0.901997,0.373929,0.610277,0.849586,0.17593,0.531123,0.383353,0.233843,0.500361,0.418289,0.650616,0.394227,0.757108,0.547104,0.343997,0.581608,0.389821,0.868874,0.54467,0.593016,0.870577,0.448696,0.769764,0.547727,0.527302,0.047052,0.885661,0.95507,0.27133,0.396526,0.233669,0.75484,0.700669,0.0494247,0.439277,0.176775,0.540357,0.142898,0.123605,0.0240296,0.47943,0.247421,0.89822,0.806885,0.64582,0.55138,0.97991,0.825799,0.0033226,0.814592,0.633834,0.383154,0.372984,0.360278,0.0736101,0.210751,0.0483632,0.708657,0.187584,0.244034,0.386175,0.515241,0.26452,0.163232,0.634966,0.764846,0.980719,0.807721,0.993881,0.402908,0.000485778,0.55463,0.407191,0.284374,0.285393,0.169602,0.851607,0.0102333,0.565903,0.874536,0.702048,0.74204,0.575942,0.67021,0.0484058,0.919616,0.397547,0.531856,0.709226,0.220116,0.512795,0.772863,0.458154,0.674254,0.741462,0.0882024,0.382572,0.210897,0.807907,0.894147,0.144887,0.247239,0.230097,0.64961,0.974665,0.983211,0.524414,0.68231,0.338363,0.909102,0.932499,0.88576,0.317469,0.635904,0.237314,0.952576,0.437505,0.330979,0.397709,0.308813,0.541655,0.832054,0.0213855,0.242629,0.635681,0.707439,0.5467,0.138643,0.152385,0.948852,0.288226,0.0990248,0.32481,0.987698,0.390122,0.389533,0.187295,0.66948,0.273683,0.819775,0.34247,0.600522,0.605808,0.36794,0.909414,0.289962,0.427427,0.834203,0.97642,0.471387,0.436902,0.542167,0.395783,0.366344,0.925505,0.886356,0.213359,0.831429,0.705494,0.116202,0.64811,0.541263,0.706372,0.689733,0.903235,0.927013,0.391982,0.30257,0.734343,0.150676,0.298124,0.545083,0.578692,0.77269,0.167004,0.239844,0.0303103,0.657669,0.0727288,0.739504,0.32244,0.697621,0.545805,0.728087,0.5862,0.418083,0.356429,0.803697,0.704133,0.892865,0.823446,0.150481,0.451253,0.223803,0.125397,0.0213086,0.631216,0.219628,0.484752,0.944359,0.639657,0.697563,0.00760221,0.912941,0.854215,0.178797,0.0859588,0.869929,0.163554,0.785855,0.280673,0.149819,0.991246,0.488211,0.684616,0.1824,0.966838,0.727883,0.51613,0.431799,0.0514013,0.186471,0.703001,0.657652,0.52585,0.610432,0.91308,0.0895361,0.134902,0.685185,0.581299,0.668558,0.417775,0.0104149,0.860159,0.034938,0.0333327,0.614677,0.701243,0.558711,0.561806,0.652872,0.745967,0.823297,0.901097,0.877786,0.385955,0.167272,0.811692,0.451964,0.247544,0.176585,0.108742,0.486403,0.48995,0.738506,0.28647,0.611833,0.170472,0.548052,0.294898,0.825625,0.920437,0.839541,0.820567,0.67658,0.582431,0.1897,0.166228,0.970922,0.891855,0.344532,0.528258,0.145463,0.00448072,0.987532,0.527959,0.780851,0.223764,0.197379,0.607992,0.893011,0.656059,0.2246,0.00604856,0.916257,0.395543,0.944476,0.968904,0.214249,0.952761,0.0279149,0.567291,0.83929,0.225651,0.979408,0.204947,0.0154291,0.553842,0.368811,0.973679,0.0184346,0.178611,0.921408,0.00140047,0.582412,0.119923,0.492663,0.0262861,0.927709,0.661561,0.26149,0.658117,0.62152,0.848913,0.571741,0.306711,0.53497,0.760198,0.909806,0.578751,0.433647,0.430026,0.468361,0.940182,0.0987976,0.394905,0.803702,0.653686,0.546149,0.839558,0.904085,0.242651,0.610156,0.0715007,0.67926,0.386192,0.329509,0.326381,0.3109,0.268012,0.912591,0.85947,0.28265,0.57152,0.327701,0.641146,|0.591927,0.403345,0.856446,0.0648845,0.153157,0.488263,0.470232,0.58287,0.792745,0.538667,0.0933013,0.481088,0.939173,0.27225,0.618328,0.978835,0.893598,0.102868,0.658309,0.407154,0.536653,0.345653,0.0359588,0.710008,0.494009,0.0244782,0.563864,0.995576,0.267014,0.0922034,0.0052616,0.973094,0.788689,0.437165,0.252429,0.0955914,0.461079,0.82712,0.337961,0.490679,0.248141,0.485458,0.0598723,0.885966,0.892983,0.969106,0.791947,0.898667,0.86394,0.263136,0.0609593,0.257121,0.898824,0.59076,0.521058,0.784291,0.432492,0.295433,0.0625787,0.159443,0.309973,0.397022,0.125825,0.655096,0.550372,0.0642785,0.653353,0.894236,0.192843,0.628307,0.0928926,0.623269,0.446145,0.483403,0.726364,0.936201,0.873801,0.847432,0.56011,0.227474,0.287381,0.73751,0.338978,0.523665,0.189703,0.202482,0.769758,0.44941,0.603756,0.610227,0.0653033,0.976824,0.179153,0.051425,0.340014,0.668647,0.255099,0.0137189,0.890439,0.999435,0.994541,0.551147,0.104709,0.887732,0.761534,0.966464,0.947436,0.431618,0.305481,0.512566,0.269007,0.407095,0.559711,0.516223,0.286053,0.387795,0.715398,0.228153,0.733409,0.00703204,0.229852,0.863245,0.735473,0.467991,0.990831,0.763883,0.302173,0.272031,0.817002,0.861362,0.417373,0.82439,0.555095,0.44718,0.108805,0.295931,0.834446,0.673691,0.38306,0.803461,0.828415,0.301416,0.025152,0.416578,0.748825,0.265266,0.0416839,0.745477,0.493364,0.311611,0.986809,0.349825,0.588919,0.553472,0.132206,0.704659,0.165288,0.801496,0.431662,0.048364,0.270289,0.954831,0.927592,0.587759,0.840528,0.0875789,0.0732741,0.269971,0.844225,0.108876,0.715277,0.737285,0.272467,0.188817,0.812839,0.79467,0.695554,0.0684444,0.680135,0.970953,0.295404,0.772732,0.235052,0.617733,0.830202,0.656226,0.177392,0.535693,0.129493,0.384244,0.481102,0.183372,0.320702,0.0563524,0.859951,0.477364,0.615138,0.847051,0.492394,0.964803,0.0867864,0.630263,0.804701,0.117159,0.985621,0.51937,0.292401,0.915207,0.275842,0.924722,0.737042,0.968935,0.165803,0.418439,0.924202,0.976863,0.940635,0.985697,0.150123,0.170197,0.278162,0.6048,0.583814,0.142384,0.112407,0.584237,0.00647807,0.585862,0.646484,0.577016,0.386657,0.623907,0.181251,0.253617,0.00436115,0.651672,0.443939,0.0110942,0.379872,0.597396,0.845903,0.839397,0.0218877,0.733873,0.485357,0.693338,0.224731,0.844349,0.718116,0.00829774,0.0949855,0.203262,0.30769,0.0537754,0.213367,0.989753,0.536767,0.0707995,0.740585,0.703834,0.68085,0.0506048,0.766402,0.832163,0.0971403,0.599007,0.390296,0.926722,0.0253459,0.246543,0.85613,0.476663,0.96119,0.36588,0.589235,0.735507,0.17367,0.0239034,0.108644,0.790807,0.222376,0.780406,0.208092,0.788325,0.815809,0.671102,0.460395,0.874567,0.733815,0.94273,0.116725,0.0839245,0.125947,0.621579,0.587021,0.3091,0.454924,0.925726,0.641397,0.010098,0.113964,0.489399,0.532549,0.461614,0.116837,0.446547,0.059252,0.454848,0.0366941,0.0640372,0.836397,0.559081,0.882275,0.562202,0.415017,0.968363,0.326334,0.592875,0.399411,0.0535674,0.165207,0.15481,0.582334,0.544562,0.652424,0.284147,0.940431,0.0831248,0.367593,0.682485,0.399807,0.432597,0.296273,0.366525,0.0695696,0.150613,0.256039,0.403532,0.00279564,0.267367,0.888257,0.82173,0.126715,0.596904,0.298846,0.558941,0.231339,0.901103,0.703007,0.845985,0.322295,0.0407539,0.629338,0.855823,0.361376,0.715398,0.0805563,0.104491,0.395486,0.827078,0.850833,0.806764,0.511148,0.949845,0.0758913,0.291898,0.256435,0.481823,0.253852,0.947938,0.811343,0.635537,0.399876,0.00552237,0.0791951,0.93788,0.589706,0.101481,0.8942,0.756339,0.737701,0.767381,0.231888,0.329964,0.643418,0.764414,0.474398,0.539886,0.627028,0.0649639,0.937522,0.641693,0.619218,0.161263,0.53436,0.282345,0.854892,0.367382,0.341597,0.593225,0.619651,0.163124,0.85078,0.0369123,0.712692,0.435546,0.614443,0.40648,0.920614,0.104386,0.282461,0.027488,0.760376,0.582256,0.81101,0.820561,0.351572,0.58165,0.319076,0.720809,0.0634426,0.820604,0.228698,0.755495,0.59397,0.881947,0.47061,0.311687,0.242002,0.356453,0.73883,0.681132,0.398786,0.414546,0.104886,0.855921,0.317013,0.998718,0.178236,0.432829,0.411917,0.350618,0.365144,0.362207,0.0952492,0.499051,0.999142,0.144242,0.470988,0.197056,0.294407,0.296816,0.787083,0.348996,0.952874,0.897755,0.273833,0.268931,0.27599,0.184188,0.870186,0.429213,0.0888641,0.244711,0.901611,0.953137,0.636021,0.329179,0.856772,0.815331,0.59302,0.694536,0.967598,0.805099,0.486761,0.516417,0.475067,0.233229,0.383179,0.344993,0.0592133,0.665334,0.890962,0.618027,0.403453,0.609714,0.355708,0.29449,0.446525,0.258276,0.989815,0.547309,0.0035457,0.964005,0.921839,0.939642,0.288992,0.679806,0.266878,0.849473,0.766373,0.340838,0.211002,0.875505,0.951984,0.386879,0.74433,0.370178,0.208706,0.366162,0.501274,0.588287,0.627117,0.805141,0.327784,0.251828,0.994956,0.289265,0.700985,0.942632,0.0116771,0.332929,0.836183,0.264807,0.0881384,0.926983,0.0071736,0.933345,0.716011,0.216095,0.338452,0.78617,0.104789,0.481956,0.0460565,0.127987,0.807313,0.612028,0.28001,0.881556,0.260863,0.0505829,0.0919983,0.993284,0.893079,0.67678,0.428463,0.816247,0.890053,0.781797,0.769109,0.464626,0.468259,0.717626,0.258623,0.585563,0.668857,0.12614,0.688528,0.929706,0.959882,0.0783005,0.983604,0.408505,0.178931,0.379219,0.913849,0.568026,0.983523,0.69143,0.979182,0.979773,0.942309,0.64405,0.742661,0.434899,0.120629,0.103898,0.106056,0.130612,0.0553792,0.297893,0.758421,0.22134,0.288639,0.792526,0.779686,0.808133,0.0153815,0.000720561,0.846563,0.965139,0.115028,0.612192,0.173626,0.587135,0.918271,0.346997,0.201917,0.88649,0.300674,0.0909105,0.0194537,0.626457,0.896639,0.336278,0.347913,0.191969,0.165696,0.299887,0.524708,0.380879,0.0699543,0.353033,0.223814,0.542594,0.46566,0.275196,0.628814,0.871226,0.44803,0.720392,0.543516,0.126416,0.063458,0.756037,0.42771,0.815759,0.134848,0.230457,0.235178,0.315757,0.710597,0.164079,0.186914,0.912021,0.370181,0.690557,0.0499848,0.108541,0.822038,0.705693,0.716253,0.40055,0.663234,0.819607,0.790901,0.756601,0.519071,0.26326,0.715865,0.965684,0.323855,0.366508,0.266922,0.144124,0.370404,0.299549,0.408363,0.544044,0.54033,0.545171,0.583702,0.91178,0.0915415,0.0817176,0.536104,0.399582,0.795465,0.428563,0.766216,0.429176,0.375458,0.0520995,0.31636,0.834018,0.170404,0.451258,0.720703,0.879809,0.579432,0.992627,0.919083,0.198902,0.049307,0.973709,0.346412,0.284657,0.973247,0.720373,0.746565,0.487896,0.400652,0.609624,0.637536,0.795824,0.461121,0.0342196,0.330606,0.390804,0.871375,0.0436351,0.166427,0.0749222,0.900895,0.210191,0.00114799,0.806531,0.240173,0.417892,0.0478402,0.927532,0.926118,0.411681,0.500302,0.828179,0.383405,0.986786,0.245018,0.645613,0.165487,0.944522,0.381702,0.669638,0.42772,0.0561374,0.75134,0.0401009,0.0927384,0.94227,0.0432073,0.965425,0.242576,0.188047,0.390092,0.311239,0.2242,0.0455147,0.764943,0.0448756,0.819182,0.0309505,0.724556,0.858831,0.383149,0.144592,0.686875,0.832444,0.472861,0.722009,0.624721,0.818756,0.346724,0.302783,0.885262,0.903918,0.424499,0.598306,0.426169,0.0318972,0.746143,0.0697124,0.289552,0.118328,0.503435,0.767256,0.693274,0.863547,0.299917,0.641847,0.447947,0.0391477,0.668323,0.855542,0.874261,0.745422,0.00175685,0.0770484,0.157963,0.401479,0.484369,0.445866,0.0565118,0.383854,0.948756,0.666011,0.49574,0.712921,0.288441,0.867991,0.716601,0.956797,0.879409,0.0620751,0.779123,0.428042,0.811813,0.023426,0.283212,0.555328,0.839778,0.0108747,0.4816,0.696546,0.0410796,0.0601167,0.83444,0.404458,0.777685,0.046223,0.312192,0.35567,0.00434464,0.447163,0.544228,0.667565,0.0955842,0.305505,0.961753,0.953515,0.753812,0.942462,0.767265,0.787983,0.898003,0.822284,0.595158,0.164647,0.616418,0.180635,0.390028,0.422985,0.901502,0.894602,0.0441276,0.618077,0.0758634,0.690153,0.020587,0.238872,0.354388,0.944069,0.36224,0.802498,0.64643,0.949024,0.818205,0.472709,0.851368,0.386363,0.966725,0.348421,0.514551,0.298936,0.858094,0.626131,0.372153,0.296263,0.971585,0.96129,0.95619,0.220052,0.98351,0.150641,0.445516,0.486067,0.947691,0.664161,0.515572,0.448216,0.427249,0.974882,0.934817,0.826396,0.310478,0.617055,0.700063,0.140655,0.152837,0.184635,0.018109,0.0134433,0.617039,0.88817,0.709348,0.840927,0.335677,0.116029,0.529441,0.84868,0.545744,0.353297,0.395919,0.379016,0.817423,0.866196,0.940437,0.400774,0.807278,0.49726,0.0660141,0.093914,0.824619,0.970459,0.405951,0.121878,0.255978,0.486138,0.467509,0.937671,0.083891,0.604837,0.150311,0.318484,0.368603,0.169264,0.60048,0.522818,0.520236,0.5982,0.850475,0.871962,0.695935,0.253972,0.886018,0.00269127,0.408659,0.404937,0.900606,0.866556,0.763245,0.186293,0.617532,0.170294,0.75402,0.0238143,0.605421,0.789804,0.0116776,0.547122,0.48995,0.632371,0.0415771,0.703987,0.67794,0.146911,0.737074,0.0828679,0.168315,0.271421,0.44312,0.144131,0.530783,0.332422,0.159967,0.926567,0.258354,0.347735,0.641452,0.167479,0.695645,0.206127,0.837644,0.0220261,0.439984,0.787739,0.411368,0.115987,0.346304,0.81385,0.0903866,0.310672,0.217725,0.471883,0.701721,0.41346,0.489997,0.573105,0.955791,0.563101,0.62704,0.103807,0.209398,0.242753,0.376607,0.28403,0.813656,0.816595,0.314236,0.116644,0.0657722,0.556909,0.202206,0.237374,0.73728,0.0131435,0.127027,0.572777,0.810993,0.549684,|0.211615,0.320235,0.79919,0.488913,0.234682,0.182701,0.730968,0.0450308,0.457595,0.863279,0.118951,0.41643,0.23775,0.416661,0.84607,0.107258,0.544809,0.238692,0.482711,0.492472,0.869055,0.188751,0.608505,0.588089,0.611704,0.440609,0.117119,0.351811,0.759402,0.510821,0.327094,0.943642,0.462839,0.697781,0.876808,0.0687542,0.427835,0.910493,0.318789,0.452138,0.120008,0.625726,0.420698,0.247981,0.845583,0.038355,0.176127,0.369498,0.14106,0.91684,0.814818,0.743836,0.582847,0.364422,0.71556,0.422587,0.0287759,0.91123,0.341664,0.725778,0.0513547,0.671443,0.479151,0.519264,0.317707,0.964349,0.749085,0.327192,0.867267,0.922504,0.307004,0.333035,0.964084,0.9044,0.0746856,0.173224,0.279363,0.432372,0.004067,0.988298,0.632707,0.968682,0.876831,0.0155979,0.364391,0.170993,0.541202,0.307204,0.605876,0.603859,0.776187,0.234047,0.732573,0.749248,0.754477,0.383446,0.185855,0.907248,0.39512,0.402571,0.351078,0.421006,0.970904,0.148268,0.362498,0.406317,0.759389,0.08921,0.794432,0.045558,0.838137,0.326287,0.398901,0.171327,0.808161,0.932098,0.600663,0.7307,0.363666,0.602557,0.347327,0.319349,0.82586,0.81629,0.911135,0.109087,0.22581,0.824812,0.0200049,0.150353,0.548495,0.94568,0.738017,0.193014,0.413934,0.963359,0.0730369,0.519536,0.946446,0.154071,0.532472,0.704931,0.380099,0.044418,0.892771,0.189001,0.295483,0.313137,0.0474816,0.308869,0.37952,0.2829,0.00939929,0.214682,0.746877,0.137871,0.447686,0.397364,0.191008,0.304599,0.206582,0.129452,0.977895,0.171383,0.839105,0.00584227,0.863757,0.173839,0.42569,0.834865,0.37231,0.382329,0.933488,0.160283,0.0138478,0.756779,0.999816,0.35374,0.979845,0.961445,0.505077,0.293942,0.953028,0.692796,0.363739,0.835743,0.00180644,0.41106,0.548872,0.126763,0.215313,0.395884,0.73168,0.594339,0.0225469,0.873622,0.558071,0.984977,0.876158,0.102935,0.437084,0.377612,0.213456,0.741426,0.218192,0.224105,0.856472,0.842355,0.370803,0.536914,0.0783525,0.132888,0.891971,0.852036,0.860433,0.00286072,0.50891,0.0839331,0.745776,0.486755,0.00702953,0.0124313,0.645318,0.410565,0.181833,0.855196,0.955414,0.365115,0.159082,0.765225,0.538375,0.782552,0.618469,0.101747,0.766789,0.606147,0.516759,0.624295,0.297051,0.239532,0.342064,0.106123,0.748433,0.581835,0.139371,0.154353,0.778549,0.773151,0.758938,0.42672,0.269478,0.305889,0.395079,0.272068,0.232928,0.22939,0.120343,0.290225,0.126911,0.240783,0.273427,0.605591,0.26172,0.637856,0.301282,0.0381297,0.0352926,0.564383,0.776215,0.709963,0.915428,0.689894,0.0771626,0.911397,0.938451,0.502386,0.957291,0.593624,0.819539,0.433175,0.6244,0.0685308,0.12346,0.867135,0.100642,0.386028,0.576077,0.21056,0.845266,0.679904,0.532702,0.347488,0.939281,0.192519,0.723948,0.419074,0.171002,0.168543,0.600758,0.860158,0.192102,0.235137,0.892734,0.823299,0.823879,0.587421,0.955553,0.0775984,0.381308,0.331803,0.151845,0.397146,0.857872,0.242827,0.309604,0.577476,0.201093,0.275376,0.215519,0.646139,0.1473,0.136582,0.0226535,0.129216,0.638977,0.286126,0.827908,0.70999,0.777489,0.197662,0.971394,0.635206,0.866557,0.0653714,0.598191,0.534319,0.0684284,0.237797,0.746292,0.666186,0.864413,0.861445,0.348906,0.123114,0.330621,0.923502,0.0515178,0.585072,0.84249,0.0204048,0.103452,0.862533,0.525748,0.324191,0.856151,0.0564141,0.709267,0.422653,0.19883,0.314647,0.387238,0.823875,0.448908,0.613356,0.600232,0.460912,0.327876,0.456638,0.64296,0.148611,0.943353,0.524774,0.953703,0.677459,0.973594,0.115904,0.514977,0.919314,0.956407,0.854193,0.479393,0.280893,0.0991049,0.669296,0.64551,0.169774,0.447917,0.5473,0.102984,0.79745,0.10967,0.244911,0.709305,0.072525,0.524293,0.300292,0.916809,0.426462,0.666284,0.0996156,0.17321,0.325463,0.623407,0.0321173,0.827344,0.797487,0.690605,0.0499576,0.794615,0.25252,0.274024,0.121592,0.442759,0.554539,0.0845731,0.67597,0.135067,0.888373,0.985296,0.298636,0.494798,0.734926,0.823456,0.536456,0.474478,0.122797,0.989665,0.889022,0.231206,0.354692,0.901274,0.141309,0.0242382,0.380138,0.617642,0.0684311,0.767087,0.211804,0.316421,0.297842,0.650299,0.794679,0.716089,0.532626,0.816101,0.478878,0.0846338,0.701155,0.101659,0.825592,0.0444178,0.190661,0.544298,0.969469,0.766801,0.574875,0.601737,0.0737977,0.887097,0.571433,0.0586751,0.319009,0.734371,0.502635,0.206392,0.907279,0.175871,0.690671,0.69835,0.950777,0.626284,0.623324,0.894401,0.00075382,0.459747,0.554618,0.928534,0.205035,0.504687,0.686617,0.980606,0.999238,0.778461,0.509231,0.826876,0.02689,0.354351,0.845747,0.0836335,0.241146,0.282297,0.577549,0.601856,0.0644132,0.164572,0.457695,0.253117,0.320193,0.111991,0.769365,0.994773,0.28825,0.82421,0.443407,0.711777,0.390651,0.327307,0.0152175,0.856063,0.99806,0.939699,0.43167,0.734443,0.390216,0.527728,0.444298,0.937031,0.483103,0.384905,0.299426,0.644912,0.490655,0.960756,0.265087,0.712379,0.568332,0.174619,0.0639664,0.454576,0.680401,0.440014,0.110816,0.323307,0.782013,0.460543,0.761431,0.336994,0.790488,0.769286,0.614829,0.961979,0.642455,0.0674019,0.777399,0.375385,0.209143,0.32984,0.378346,0.42843,0.911657,0.932895,0.724565,0.978097,0.812856,0.146959,0.160249,0.494122,0.643542,0.891938,0.0583779,0.0521966,0.531192,0.53858,0.459614,0.0990276,0.702654,0.591583,0.886294,0.920023,0.340801,0.934041,0.631715,0.377542,0.0472239,0.131745,0.344748,0.495575,0.083187,0.788978,0.318711,0.648237,0.736691,0.107947,0.947982,0.43244,0.101996,0.232371,0.746067,0.821049,0.230078,0.20199,0.868132,0.083474,0.65473,0.465022,0.732887,0.66608,0.524634,0.240668,0.630515,0.599946,0.0667906,0.070087,0.810676,0.092403,0.363456,0.757218,0.382952,0.667165,0.076272,0.197742,0.292529,0.348808,0.564134,0.680421,0.536974,0.494347,0.420959,0.130574,0.34761,0.372394,0.650304,0.93159,0.861683,0.985942,0.204659,0.219945,0.605232,0.43036,0.683736,0.337427,0.174683,0.819179,0.634941,0.63598,0.127515,0.688368,0.434718,0.418244,0.731992,0.485035,0.902557,0.252758,0.235265,0.717693,0.171309,0.485072,0.791693,0.73125,0.539466,0.923768,0.506673,0.305884,0.837948,0.134413,0.837809,0.666436,0.532248,0.425822,0.307648,0.9342,0.269247,0.728962,0.742435,0.409289,0.787523,0.0845895,0.992188,0.589284,0.956911,0.514755,0.268275,0.866549,0.409121,0.277432,0.279121,0.218991,0.854519,0.0380215,0.155036,0.51403,0.0294653,0.222205,0.475776,0.570798,0.345392,0.881848,0.977322,0.814569,0.7638,0.736715,0.513061,0.918124,0.884347,0.448989,0.111489,0.208449,0.5177,0.606943,0.0603278,0.0112897,0.102816,0.973275,0.266664,0.354364,0.881879,0.432677,0.750065,0.891622,0.818767,0.455659,0.151686,0.864203,0.281758,0.184727,0.746356,0.704324,0.00527507,0.604935,0.323751,0.518163,0.280278,0.722455,0.701814,0.391979,0.6633,0.840742,0.726872,0.996129,0.803837,0.252525,0.248464,0.0580918,0.285532,0.346541,0.0838473,0.501589,0.513701,0.550057,0.657095,0.228663,0.924339,0.578784,0.376407,0.700992,0.0145329,0.639339,0.398612,0.491048,0.138057,0.22664,0.345842,0.47393,0.855765,0.171752,0.587915,0.5055,0.191358,0.274081,0.853996,0.967469,0.462021,0.0416849,0.971961,0.935479,0.0809226,0.267544,0.834305,0.216877,0.614073,0.858716,0.656275,0.693828,0.734464,0.0501623,0.495401,0.987043,0.929874,0.411107,0.539563,0.475142,0.325512,0.847896,0.744281,0.84471,0.845963,0.289097,0.901038,0.485715,0.22431,0.994299,0.00735682,0.390057,0.564178,0.545934,0.0188018,0.0934956,0.949554,0.19371,0.102216,0.155975,0.781029,0.960502,0.49289,0.124851,0.933089,0.788026,0.578233,0.759662,0.837635,0.402231,0.370422,0.336412,0.841758,0.281308,0.907747,0.386504,0.93134,0.432237,0.559365,0.790783,0.640187,0.986811,0.857728,0.153935,0.971867,0.700573,0.929353,0.876222,0.181324,0.498197,0.0314002,0.152926,0.750587,0.454662,0.778657,0.384394,0.294519,0.28484,0.68763,0.647322,0.549124,0.93041,0.926614,0.688736,0.752219,0.478537,0.377723,0.551627,0.474855,0.544466,0.500594,0.719084,0.400571,0.461293,0.304969,0.93892,0.0899294,0.910509,0.616044,0.250124,0.807028,0.82112,0.0507781,0.678332,0.317432,0.974812,0.566569,0.603078,0.210408,0.419466,0.132898,0.500514,0.481004,0.121009,0.338089,0.325544,0.017058,0.856647,0.331909,0.718845,0.902171,0.198633,0.0965933,0.156429,0.874875,0.307729,0.621513,0.131729,0.406736,0.990733,0.160101,0.327104,0.637731,0.395979,0.899091,0.113827,0.480125,0.40799,0.90085,0.868119,0.886694,0.542359,0.922412,0.88486,0.592172,0.842277,0.49636,0.174857,0.101751,0.841237,0.929283,0.0465912,0.293074,0.811922,0.69809,0.814007,0.527949,0.365975,0.750944,0.503677,0.504184,0.508559,0.170543,0.50987,0.861135,0.897777,0.657395,0.915191,0.668287,0.217489,0.137045,0.306745,0.963604,0.764845,0.175713,0.866822,0.637488,0.884435,0.0349342,0.762463,0.0752572,0.375168,0.878729,0.929174,0.650611,0.404697,0.51734,0.280866,0.344983,0.0307077,0.451738,0.383732,0.199509,0.323437,0.0598043,0.19475,0.366856,0.0715871,0.41917,0.392511,0.901135,0.238607,0.3759,0.574732,0.852668,0.470375,0.91998,0.554088,0.947986,0.12658,0.359019,0.244471,0.70204,0.443906,0.436989,0.789546,0.246209,0.0284987,0.861476,0.752908,0.027168,0.398499,0.218828,0.519994,0.592733,0.0181313,0.839512,0.349472,0.7789,0.744208,0.66555,0.682637,0.0227351,0.824311,0.0926766,0.481378,0.664712,0.354249,0.367532,|0.488892,0.537012,0.110754,0.927975,0.317464,0.80228,0.661307,0.587704,0.662499,0.226279,0.951645,0.803749,0.0125634,0.458121,0.8964,0.529065,0.461392,0.606913,0.956091,0.60977,0.462991,0.302852,0.014192,0.752786,0.0378125,0.545649,0.941306,0.690143,0.280474,0.77041,0.68033,0.375936,0.958699,0.0177534,0.937963,0.982501,0.375657,0.802971,0.760991,0.583182,0.542246,0.392235,0.299239,0.905682,0.775971,0.0858774,0.487836,0.349695,0.010901,0.101796,0.500705,0.396754,0.676993,0.304192,0.369461,0.689135,0.554129,0.259391,0.271912,0.246282,0.547649,0.424605,0.988966,0.287737,0.0166402,0.532014,0.24215,0.405037,0.539787,0.490195,0.550316,0.258083,0.354971,0.319332,0.557381,0.821122,0.928815,0.438446,0.714789,0.678771,0.854997,0.944653,0.294303,0.717044,0.84572,0.937263,0.300728,0.282531,0.2289,0.417325,0.592083,0.35712,0.699794,0.821327,0.462604,0.801079,0.431454,0.740127,0.171501,0.772777,0.629384,0.583813,0.748379,0.659884,0.571692,0.252003,0.401389,0.54666,0.0884823,0.785897,0.323739,0.730057,0.263664,0.759042,0.153693,0.0911333,0.231956,0.301821,0.119355,0.58952,0.27459,0.244232,0.295465,0.564114,0.723472,0.947024,0.670991,0.353559,0.424379,0.381329,0.627733,0.280371,0.633699,0.432428,0.387304,0.451221,0.880798,0.942077,0.721863,0.198828,0.870389,0.486688,0.269604,0.600904,0.160593,0.775897,0.811184,0.937789,0.442818,0.7428,0.18798,0.20743,0.279302,0.0756199,0.238628,0.677138,0.98901,0.263187,0.532734,0.823925,0.423975,0.989507,0.390184,0.576426,0.50035,0.176161,0.533758,0.913327,0.577149,0.543459,0.475987,0.121288,0.237883,0.217591,0.850683,0.0868566,0.0612425,0.323055,0.178354,0.902185,0.644581,0.597344,0.579101,0.791066,0.575956,0.393542,0.0492944,0.11087,0.834229,0.722151,0.734614,0.417174,0.246214,0.494822,0.0165814,0.631021,0.902853,0.405377,0.555134,0.515802,0.469151,0.318621,0.0592678,0.930937,0.310164,0.88193,0.107856,0.141355,0.289039,0.678976,0.0738132,0.82888,0.960689,0.119449,0.868786,0.595777,0.51413,0.58153,0.371664,0.31369,0.183076,0.557604,0.095973,0.7118,0.945284,0.920326,0.571463,0.853406,0.373242,0.425743,0.240093,0.349974,0.17452,0.802714,0.470738,0.324119,0.351754,0.38191,0.921534,0.438198,0.0124248,0.0438123,0.514269,0.789211,0.545481,0.870942,0.758108,0.755589,0.525748,0.331258,0.324899,0.679302,0.275355,0.498277,0.265998,0.918464,0.498293,0.338141,0.661398,0.473952,0.26632,0.403558,0.925622,0.0965838,0.938866,0.789442,0.491034,0.881317,0.588647,0.452082,0.679384,0.175017,0.328422,0.0827053,0.0258895,0.204763,0.528715,0.809771,0.375566,0.896307,0.881637,0.377677,0.160937,0.34134,0.594496,0.941238,0.535788,0.173005,0.258653,0.674438,0.175148,0.370396,0.681248,0.648502,0.932017,0.0857072,0.21526,0.254167,0.0473786,0.73961,0.909123,0.433153,0.351126,0.623235,0.402292,0.716212,0.910464,0.104679,0.0793569,0.410381,0.0416743,0.96426,0.342583,0.777535,0.411854,0.389451,0.804986,0.0288805,0.27487,0.24194,0.802481,0.661146,0.939102,0.540746,0.188768,0.451207,0.355574,0.32406,0.169576,0.775412,0.731414,0.650553,0.632911,0.580151,0.303349,0.75327,0.493996,0.665273,0.00551099,0.709619,0.470265,0.304843,0.394123,0.0279636,0.060309,0.179218,0.34119,0.264756,0.00451297,0.82408,0.496583,0.752036,0.370223,0.977649,0.760435,0.00897795,0.263381,0.655479,0.629236,0.379436,0.307726,0.681274,0.136239,0.351712,0.642221,0.611736,0.343805,0.399297,0.70617,0.825728,0.540096,0.878266,0.24765,0.663007,0.412624,0.606565,0.746107,0.858593,0.113629,0.534574,0.433544,0.332423,0.418365,0.259735,0.284884,0.490283,0.402101,0.17811,0.353439,0.0352316,0.472204,0.756118,0.801466,0.820103,0.151334,0.139077,0.276872,0.090307,0.680343,0.0875703,0.786289,0.251091,0.139457,0.846669,0.285699,0.895598,0.670707,0.179819,0.420233,0.327173,0.198787,0.942922,0.824782,0.207201,0.17266,0.299682,0.638755,0.87148,0.962517,0.683695,0.232861,0.267998,0.874,0.415423,0.993441,0.837243,0.367622,0.0975802,0.0855724,0.203659,0.457658,0.275063,0.0606854,0.535335,0.839403,0.052527,0.130468,0.512154,0.102865,0.526612,0.228769,0.0818864,0.504302,0.0114464,0.267854,0.865841,0.897581,0.334067,0.314917,0.25757,0.959515,0.81089,0.149044,0.366777,0.952552,0.390803,0.856868,0.158585,0.340236,0.376889,0.738885,0.13375,0.629187,0.118677,0.562229,0.775187,0.645997,0.938879,0.889233,0.587395,0.0213327,0.722586,0.402185,0.0789643,0.769035,0.778369,0.624716,0.0910232,0.689949,0.697971,0.364576,0.69846,0.120742,0.938025,0.207149,0.0204838,0.165427,0.156251,0.56132,0.504152,0.273217,0.775926,0.68357,0.561015,0.878393,0.628449,0.827293,0.236492,0.26514,0.793269,0.372428,0.988173,0.312274,0.524749,0.596801,0.695082,0.988539,0.420839,0.193339,0.92651,0.479966,0.785545,0.704158,0.310659,0.461284,0.973901,0.830886,0.300179,0.528081,0.667728,0.236443,0.230803,0.408132,0.518243,0.507462,0.887062,0.221957,0.43482,0.552228,0.95245,0.341625,0.986732,0.403409,0.324173,0.624413,0.00414592,0.652576,0.752553,0.844553,0.821797,0.0302359,0.883017,0.33199,0.0461417,0.368993,0.868856,0.130401,0.631728,0.204066,0.150531,0.0575816,0.226784,0.783312,0.917458,0.380344,0.82801,0.391525,0.281978,0.831814,0.8711,0.27023,0.0657499,0.564633,0.255489,0.219445,0.669536,0.455486,0.981716,0.721927,0.551608,0.914443,0.641171,0.371839,0.991632,0.00252038,0.327023,0.108841,0.448663,0.67781,0.164597,0.858957,0.821997,0.785227,0.683859,0.00417852,0.782927,0.201598,0.567973,0.018696,0.530932,0.480189,0.88552,0.681311,0.996989,0.689402,0.542543,0.506563,0.483243,0.62225,0.444568,0.996993,0.319973,0.734184,0.900814,0.541117,0.124293,0.844606,0.831434,0.959552,0.810885,0.646453,0.413715,0.791285,0.460559,0.525928,0.448216,0.389223,0.508258,0.799227,0.0945484,0.897258,0.638812,0.142823,0.0134064,0.559194,0.820734,0.754378,0.0917837,0.442446,0.0537263,0.0611776,0.423811,0.514129,0.999544,0.374089,0.897759,0.244608,0.425995,0.667108,0.376636,0.785591,0.333115,0.650649,0.776113,0.114265,0.937183,0.562877,0.431493,0.360592,0.800072,0.288803,0.522607,0.277641,0.639633,0.498271,0.611244,0.144257,0.694232,0.555152,0.344491,0.684613,0.182971,0.901482,0.336639,0.676251,0.284531,0.546816,0.258979,0.602332,0.406756,0.267601,0.775916,0.595677,0.434456,0.273007,0.92485,0.326528,0.161711,0.712387,0.940783,0.313392,0.277621,0.669565,0.365014,0.635795,0.805477,0.831849,0.603335,0.466694,0.286406,0.80327,0.650447,0.783011,0.0677564,0.240963,0.837354,0.898459,0.344037,0.957528,0.348339,0.0357342,0.875926,0.0808676,0.291402,0.757432,0.733305,0.539758,0.659487,0.139656,0.11748,0.571607,0.516319,0.474314,0.00798512,0.291941,0.0271673,0.13586,0.47551,0.388558,0.962774,0.744448,0.818951,0.084169,0.203927,0.698224,0.978619,0.295688,0.540672,0.767074,0.305161,0.0208281,0.976652,0.135078,0.484473,0.0975318,0.147508,0.90994,0.13081,0.458586,0.794259,0.42249,0.339054,0.704374,0.783308,0.949366,0.88563,0.920483,0.880878,0.328185,0.914565,0.206538,0.565583,0.607166,0.52258,0.13496,0.472297,0.864348,0.511902,0.874484,0.0894084,0.933194,0.053321,0.899254,0.0489898,0.340284,0.600029,0.492922,0.371229,0.342645,0.940431,0.682448,0.5312,0.188499,0.219731,0.507434,0.872718,0.364959,0.573559,0.99031,0.325758,0.395436,0.440113,0.559497,0.0490918,0.785976,0.455065,0.730925,0.701088,0.523073,0.975885,0.587985,0.529807,0.440722,0.870962,0.150814,0.576341,0.355623,0.0529189,0.905749,0.976415,0.678579,0.456864,0.832749,0.137272,0.817501,0.650458,0.189621,0.131866,0.211563,0.0284137,0.440571,0.398945,0.981595,0.546235,0.0588877,0.510911,0.260521,0.997058,0.428535,0.111102,0.300692,0.286028,0.940972,0.870794,0.713924,0.765963,0.11194,0.529214,0.805786,0.974091,0.526325,0.782006,0.100174,0.707817,0.0353974,0.147247,0.833923,0.761038,0.664515,0.817422,0.0436686,0.734522,0.954668,0.681283,0.0125577,0.873565,0.0164095,0.469829,0.8606,0.874739,0.730551,0.866178,0.542341,0.192246,0.91541,0.452679,0.726364,0.810945,0.59134,0.599557,0.971231,0.188569,0.131003,0.192051,0.231984,0.579504,0.565738,0.798526,0.816807,0.862001,0.217701,0.971519,0.1689,0.891357,0.622423,0.281959,0.464896,0.476391,0.859968,0.34781,0.608354,0.0417049,0.383632,0.824868,0.0272176,0.885935,0.0955517,0.993343,0.716816,0.828879,0.630896,0.763252,0.665514,0.499549,0.364796,0.64822,0.280262,0.793763,0.64908,0.12623,0.381442,0.38049,0.0816754,0.371489,0.915973,0.558136,0.38776,0.21215,0.319431,0.841583,0.683726,0.268944,0.704083,0.31617,0.492036,0.0141049,0.0797015,0.122602,0.0436078,0.790491,0.842949,0.962146,0.909619,0.635243,0.2346,0.942926,0.188474,0.748022,0.991756,0.342563,0.60583,0.803866,0.979207,0.643253,0.661226,0.771616,0.207656,0.37052,0.219545,0.382827,0.830565,0.654935,0.408311,0.294581,0.198496,0.328051,0.60835,0.708548,0.340207,0.805778,0.794853,0.0890193,0.0725154,0.608612,0.409309,0.661007,0.0421673,0.899804,0.374057,0.0440939,0.737942,0.76195,0.9102,0.443111,0.572285,0.438158,0.936168,0.175041,0.884075,0.21381,0.98002,0.21647,0.215266,0.190929,0.598299,0.929386,0.764292,0.777662,0.361961,0.645182,0.547664,0.924107,0.0115475,0.754064,0.0872136,0.418609,0.500466,0.0647929,0.926396,0.689493,0.184918,0.730651,0.158372,0.316902,0.787357,0.629216,0.457875,0.083384,0.698003,0.489665,|0.428916,0.7861,0.607095,0.755896,0.60309,0.143093,0.577288,0.907035,0.577179,0.114723,0.654307,0.834109,0.867503,0.683079,0.163887,0.661479,0.33368,0.853101,0.876113,0.504832,0.078022,0.899571,0.198264,0.505841,0.922312,0.902794,0.897653,0.77915,0.0329812,0.226099,0.581493,0.578458,0.673235,0.507414,0.0951504,0.694231,0.797141,0.149725,0.216004,0.193479,0.250447,0.290827,0.2669,0.877551,0.906885,0.951425,0.957643,0.281125,0.2375,0.55125,0.101357,0.956012,0.708561,0.384435,0.103028,0.291731,0.727846,0.37673,0.278797,0.914608,0.812932,0.802366,0.428081,0.523612,0.60775,0.6813,0.781409,0.853678,0.765645,0.996194,0.21488,0.917772,0.226249,0.0648208,0.161377,0.569127,0.105705,0.226912,0.70266,0.710598,0.470163,0.228574,0.236002,0.680844,0.547796,0.396843,0.0307676,0.67458,0.0927948,0.3159,0.331205,0.151626,0.51623,0.226632,0.126566,0.374125,0.38901,0.0142761,0.0597944,0.826219,0.104327,0.0294534,0.280295,0.535682,0.575637,0.384192,0.185257,0.450705,0.607821,0.137991,0.484325,0.998939,0.228852,0.297096,0.0815794,0.554521,0.990452,0.569682,0.699546,0.506493,0.41757,0.858852,0.436886,0.845012,0.77882,0.703419,0.570653,0.376958,0.79076,0.1768,0.941289,0.398412,0.745313,0.655797,0.5915,0.132003,0.51154,0.781147,0.219105,0.583556,0.466789,0.586357,0.369254,0.848589,0.60588,0.145967,0.909654,0.908555,0.142095,0.326629,0.0914755,0.491595,0.994799,0.991788,0.702726,0.614683,0.381005,0.173481,0.572462,0.767585,0.601513,0.19171,0.152341,0.0712551,0.15382,0.685798,0.934961,0.884004,0.599557,0.72471,0.952979,0.64847,0.169409,0.562565,0.93072,0.354668,0.0359679,0.141801,0.307704,0.820964,0.114614,0.625567,0.917493,0.365548,0.084214,0.869851,0.558641,0.0794984,0.0608711,0.770582,0.835663,0.24908,0.725944,0.682186,0.203006,0.764474,0.597648,0.488053,0.826676,0.897821,0.126489,0.642091,0.030944,0.190509,0.271261,0.293673,0.668641,0.41848,0.379695,0.0583565,0.583436,0.821718,0.43077,0.307647,0.217317,0.872407,0.622477,0.811611,0.957572,0.296294,0.995658,0.0523961,0.184999,0.308861,0.442078,0.662047,0.671196,0.0906288,0.581763,0.618957,0.0153529,0.687154,0.117639,0.363216,0.682389,0.946369,0.655301,0.0477228,0.689683,0.480554,0.437325,0.959683,0.707566,0.433917,0.939219,0.800661,0.186746,0.554186,0.756814,0.103374,0.0915878,0.941738,0.263411,0.961895,0.785957,0.897225,0.492303,0.682797,0.886924,0.631281,0.54431,0.816196,0.8094,0.594177,0.0532691,0.990871,0.736131,0.568613,0.716041,0.0889499,0.224407,0.285746,0.581514,0.969705,0.0875469,0.159125,0.24433,0.0954654,0.906795,0.837025,0.0661585,0.919125,0.0842883,0.145064,0.607799,0.212106,0.129026,0.436524,0.95189,0.763326,0.197327,0.683935,0.368181,0.113893,0.678015,0.340153,0.543555,0.576266,0.410136,0.817666,0.301345,0.664059,0.484745,0.327345,0.715921,0.831597,0.717756,0.973749,0.0120558,0.485296,0.685615,0.970817,0.28062,0.181324,0.732105,0.531681,0.442283,0.0309411,0.312943,0.749185,0.496284,0.287758,0.411819,0.0452648,0.188254,0.7851,0.912043,0.296886,0.747645,0.405429,0.865123,0.597562,0.664352,0.663454,0.192369,0.42947,0.353614,0.748784,0.345112,0.754617,0.365861,0.155858,0.907951,0.862198,0.213559,0.878052,0.122278,0.268154,0.611294,0.477996,0.0910171,0.0757896,0.638624,0.267856,0.98695,0.40579,0.316143,0.375358,0.196323,0.262224,0.0258532,0.132337,0.156062,0.0506789,0.325236,0.314405,0.601575,0.581367,0.207772,0.198966,0.731122,0.583984,0.636205,0.21905,0.458963,0.582023,0.130826,0.82146,0.0610912,0.647863,0.346574,0.424078,0.522979,0.390216,0.663138,0.706588,0.415898,0.231556,0.33693,0.92734,0.0847588,0.237172,0.31723,0.453089,0.501206,0.23455,0.084422,0.490612,0.338924,0.348266,0.298625,0.619513,0.68977,0.238095,0.717698,0.932048,0.78073,0.0971558,0.883904,0.975534,0.184528,0.955701,0.289446,0.537732,0.452035,0.0874664,0.450283,0.290924,0.300235,0.696858,0.43825,0.412748,0.151038,0.533528,0.919486,0.218168,0.11615,0.117996,0.300573,0.758288,0.55915,0.365498,0.306695,0.761251,0.476641,0.0419345,0.644065,0.478924,0.581857,0.916507,0.627125,0.67072,0.625207,0.0294918,0.463394,0.0227381,0.855218,0.0948614,0.877654,0.957644,0.41696,0.855589,0.740135,0.303711,0.283723,0.918878,0.314972,0.464507,0.19351,0.729057,0.280919,0.170163,0.887194,0.169923,0.365669,0.250862,0.596693,0.808602,0.981083,0.380135,0.264932,0.286517,0.413522,0.600683,0.835184,0.983722,0.229403,0.301065,0.224383,0.776853,0.0874201,0.576988,0.553773,0.717364,0.485389,0.211251,0.0722899,0.0887085,0.331674,0.966244,0.570422,0.716435,0.311091,0.9354,0.229979,0.838174,0.986946,0.304306,0.647436,0.389256,0.00513244,0.0150167,0.582,0.673626,0.403869,0.746058,0.0464321,0.51656,0.426116,0.798087,0.353812,0.216772,0.480762,0.886377,0.831074,0.782601,0.317374,0.810683,0.121243,0.259994,0.45092,0.391352,0.0075258,0.723909,0.969068,0.709306,0.881099,0.631211,0.0375572,0.132006,0.949723,0.285799,0.514164,0.343986,0.864907,0.447366,0.333248,0.492768,0.0905395,0.542676,0.870741,0.460045,0.0667325,0.221503,0.430333,0.546124,0.0315682,0.200014,0.785775,0.458975,0.016484,0.155892,0.635995,0.937712,0.0332774,0.242553,0.611643,0.266162,0.400828,0.120381,0.610497,0.0662972,0.425066,0.866925,0.120629,0.170931,0.96161,0.0688923,0.27755,0.28689,0.48025,0.983285,0.467984,0.254669,0.909155,0.0373221,0.0569124,0.0878369,0.374497,0.548205,0.0834284,0.118327,0.979703,0.663414,0.785573,0.505636,0.0933344,0.399051,0.371902,0.544494,0.265587,0.516091,0.882098,0.527432,0.780836,0.630175,0.348209,0.756407,0.512611,0.377029,0.53945,0.109584,0.28001,0.333133,0.762235,0.257486,0.0392659,0.151794,0.134002,0.892953,0.854556,0.241094,0.995645,0.962048,0.744379,0.768052,0.247905,0.587978,0.906931,0.357852,0.41759,0.938853,0.826845,0.425918,0.071017,0.00914395,0.478897,0.178609,0.864012,0.673634,0.0354874,0.79656,0.979422,0.160176,0.551961,0.99383,0.00528151,0.80948,0.509967,0.396089,0.509704,0.39789,0.926491,0.4759,0.69961,0.120915,0.212745,0.20363,0.685651,0.755279,0.0621044,0.500999,0.90683,0.1627,0.417018,0.557397,0.440823,0.239199,0.578042,0.023322,0.520575,0.707291,0.735442,0.182127,0.326506,0.601266,0.604263,0.603742,0.508392,0.11033,0.264473,0.59427,0.779474,0.61753,0.241181,0.931819,0.556665,0.0438541,0.229185,0.0523267,0.561643,0.0537292,0.1592,0.81609,0.517198,0.751625,0.206085,0.451759,0.139929,0.704412,0.493021,0.850811,0.397308,0.447427,0.36961,0.644438,0.358457,0.438407,0.0290786,0.888556,0.921669,0.681765,0.66174,0.939224,0.456209,0.882806,0.111731,0.682941,0.383323,0.707369,0.339698,0.174437,0.811019,0.647712,0.80403,0.810551,0.178277,0.515978,0.651895,0.499399,0.3482,0.75151,0.513581,0.018829,0.179866,0.716649,0.0377598,0.793742,0.660442,0.00648564,0.660245,0.769954,0.631446,0.0127148,0.154927,0.276227,0.641785,0.0190669,0.0310564,0.537318,0.149213,0.428493,0.161332,0.720468,0.944931,0.914818,0.458157,0.723539,0.945233,0.960632,0.346133,0.892107,0.47035,0.884414,0.663438,0.242431,0.312521,0.723866,0.139052,0.170535,0.429633,0.695773,0.111746,0.122926,0.259464,0.460278,0.0266182,0.314519,0.867564,0.305383,0.101512,0.0533044,0.354373,0.0323086,0.555607,0.956977,0.0961229,0.378908,0.315267,0.762298,0.75869,0.288789,0.861049,0.414651,0.468216,0.341911,0.86989,0.500666,0.194578,0.908662,0.121824,0.542735,0.907348,0.0205321,0.533131,0.221446,0.743107,0.0199817,0.668685,0.26339,0.187956,0.581687,0.573415,0.833765,0.613557,0.452857,0.796706,0.0859521,0.701302,0.0599995,0.0146751,0.896096,0.578981,0.43869,0.587078,0.729569,0.0618395,0.414762,0.519991,0.527963,0.364714,0.787704,0.37021,0.354271,0.260766,0.492375,0.751132,0.97719,0.786716,0.879792,0.960212,0.839997,0.346357,0.538089,0.0462215,0.49933,0.0810415,0.309596,0.623509,0.94901,0.262977,0.834063,0.229166,0.918445,0.761519,0.172796,0.941613,0.966081,0.937997,0.822571,0.622912,0.221764,0.773805,0.713104,0.346274,0.758093,0.625885,0.333216,0.501078,0.24075,0.236292,0.427706,0.598053,0.21001,0.333878,0.60824,0.0544744,0.585249,0.611917,0.247249,0.657707,0.185177,0.576982,0.959121,0.555737,0.436946,0.479201,0.718718,0.860138,0.452973,0.710268,0.528784,0.210543,0.598713,0.995334,0.597965,0.99399,0.0149653,0.693931,0.177556,0.762831,0.409141,0.148665,0.668627,0.718111,0.116435,0.0031271,0.960564,0.994196,0.281739,0.29252,0.831605,0.0971072,0.859376,0.850896,0.254729,0.925489,0.0753878,0.516479,0.404329,0.729094,0.0107395,0.580543,0.904022,0.381914,0.468647,0.735456,0.991027,0.995015,0.820151,0.396165,0.360269,0.0797408,0.960433,0.956004,0.966982,0.315646,0.611124,0.0934526,0.281771,0.756219,0.829087,0.998705,0.104297,0.871213,0.581111,0.126155,0.0189389,0.0990703,0.857427,0.0222562,0.128422,0.181101,0.358761,0.694523,0.211696,0.151095,0.519915,0.551163,0.163705,0.521875,0.331831,0.0371355,0.774571,0.546879,0.651012,0.0445128,0.349945,0.363132,0.695497,0.414614,0.889087,0.27923,0.860391,0.673887,0.533829,0.833925,0.74981,0.0539221,0.198185,0.504605,0.530329,0.0772343,0.919177,0.423999,0.125113,0.076931,0.352032,0.736371,0.250697,0.362985,0.137331,0.622024,0.619451,0.00238323,0.148509,0.784289,0.472717,0.148082,0.557741,0.614473,0.504918,0.924352,0.689409,0.142393,0.301306,0.637194,0.725966,0.800561,0.763776,|0.535076,0.383938,0.406663,0.064973,0.00195944,0.344416,0.903242,0.951567,0.108517,0.707265,0.576326,0.567368,0.634743,0.0298163,0.581207,0.903408,0.742662,0.386851,0.12704,0.647829,0.575182,0.606072,0.902979,0.975471,0.658244,0.0925354,0.664997,0.879117,0.827725,0.452854,0.757762,0.0469788,0.983089,0.801711,0.596532,0.0495348,0.665296,0.30142,0.606108,0.0621396,0.970676,0.44159,0.874033,0.00011009,0.131668,0.233612,0.322382,0.071267,0.62394,0.609912,0.895105,0.132837,0.605307,0.360834,0.351339,0.616604,0.72507,0.509213,0.834073,0.835077,0.321436,0.239057,0.348443,0.586876,0.237468,0.268632,0.432029,0.668684,0.973457,0.494563,0.883294,0.431715,0.25971,0.349859,0.271524,0.20239,0.32337,0.37285,0.140796,0.848558,0.978629,0.501984,0.920595,0.372349,0.34342,0.67539,0.846808,0.260515,0.78284,0.950189,0.56924,0.0528267,0.758146,0.627927,0.642363,0.556476,0.302248,0.374701,0.150874,0.230544,0.203379,0.782524,0.0829607,0.252722,0.517856,0.197463,0.399412,0.473098,0.609737,0.594437,0.890948,0.896221,0.234917,0.514012,0.708948,0.910629,0.764681,0.117674,0.761326,0.246958,0.300758,0.85645,0.0105439,0.221643,0.769206,0.174585,0.123215,0.744428,0.826623,0.846839,0.557889,0.291481,0.964694,0.959153,0.297074,0.290447,0.47761,0.864496,0.565358,0.800586,0.0546483,0.19399,0.724377,0.879105,0.809116,0.964284,0.849228,0.628677,0.498368,0.662875,0.996363,0.0831236,0.930015,0.258863,0.273743,0.631515,0.968054,0.374954,0.00407815,0.0721117,0.802817,0.510002,0.556329,0.70872,0.559125,0.903806,0.882759,0.738379,0.932721,0.309224,0.884972,0.761787,0.506435,0.764068,0.171583,0.229456,0.217163,0.459765,0.864943,0.639153,0.136465,0.0499119,0.672383,0.0512254,0.915433,0.61838,0.509038,0.974943,0.79301,0.416606,0.733265,0.678628,0.422363,0.790296,0.512583,0.772341,0.402836,0.653674,0.0668986,0.744159,0.549326,0.702794,0.417282,0.155035,0.880219,0.421936,0.286294,0.740144,0.451475,0.0314525,0.652863,0.991388,0.416214,0.0211617,0.277209,0.900079,0.811682,0.429096,0.917012,0.530509,0.29443,0.926347,0.00403064,0.658623,0.581597,0.449417,0.448707,0.717718,0.261677,0.570233,0.305562,0.090101,0.634206,0.111163,0.106925,0.844846,0.984908,0.726516,0.0390571,0.0074082,0.46483,0.912784,0.627134,0.685744,0.0245829,0.526574,0.962214,0.41085,0.0931807,0.220672,0.998444,0.746575,0.625597,0.702334,0.177416,0.671549,0.730561,0.146287,0.309531,0.79792,0.991896,0.369912,0.902822,0.378119,0.843301,0.707393,0.159975,0.166982,0.866691,0.840244,0.680498,0.0191934,0.545699,0.946638,0.252775,0.69785,0.0891622,0.189753,0.340134,0.74929,0.594937,0.883358,0.529703,0.697324,0.440447,0.554991,0.941815,0.635159,0.0687571,0.490627,0.316191,0.825952,0.672004,0.0439887,0.779259,0.688555,0.40531,0.477669,0.694164,0.175036,0.18469,0.655661,0.600973,0.53628,0.407228,0.270793,0.829933,0.207465,0.450286,0.600895,0.638225,0.082782,0.534876,0.75896,0.264559,0.00576836,0.186904,0.448391,0.188452,0.67375,0.560469,0.726764,0.869132,0.629353,0.291822,0.277799,0.417408,0.468287,0.136175,0.630729,0.644354,0.166899,0.584451,0.587423,0.776548,0.444094,0.57258,0.561242,0.27948,0.191153,0.639998,0.958332,0.436587,0.840657,0.811826,0.911647,0.275523,0.360012,0.185219,0.292852,0.0922675,0.998131,0.446918,0.380702,0.182787,0.742576,0.29541,0.214344,0.645839,0.951878,0.0659411,0.938797,0.902893,0.714403,0.202697,0.878518,0.807918,0.945035,0.438359,0.947589,0.708946,0.711913,0.237401,0.410276,0.884938,0.156904,0.627217,0.917187,0.657067,0.478315,0.599789,0.909636,0.39623,0.409937,0.840759,0.499081,0.0456063,0.91952,0.412862,0.791844,0.904975,0.805338,0.615597,0.764082,0.159205,0.0495169,0.866666,0.396303,0.452791,0.0644402,0.829325,0.834737,0.38313,0.895605,0.138933,0.473779,0.509409,0.803566,0.726364,0.905988,0.359111,0.513255,0.878549,0.500405,0.508313,0.6084,0.998414,0.902767,0.769997,0.32299,0.929708,0.336758,0.127456,0.140977,0.831421,0.212891,0.758102,0.406695,0.822761,0.039197,0.667949,0.416372,0.425825,0.256233,0.482297,0.00120407,0.709627,0.234112,0.335761,0.214927,0.100234,0.269994,0.133089,0.838439,0.271674,0.791845,0.182934,0.260907,0.588372,0.0264196,0.921802,0.761842,0.383197,0.0275145,0.285513,0.292238,0.524395,0.522122,0.216533,0.305933,0.625368,0.00354141,0.154366,0.767149,0.979132,0.750899,0.476736,0.669013,0.0526469,0.790091,0.0922078,0.423661,0.48013,0.505054,0.0147277,0.64681,0.496226,0.219862,0.619199,0.205139,0.322618,0.310773,0.438111,0.268543,0.254627,0.816411,0.108989,0.603558,0.00626189,0.671665,0.00309926,0.0969825,0.835487,0.115833,0.237545,0.692791,0.94186,0.977877,0.591887,0.98291,0.479259,0.709075,0.20605,0.132149,0.325499,0.28784,0.173467,0.933198,0.96254,0.634209,0.804805,0.507538,0.0107336,0.216596,0.88602,0.242537,0.0170962,0.701726,0.596086,0.925697,0.495078,0.556218,0.885845,0.186589,0.228777,0.023042,0.057699,0.940495,0.985971,0.870663,0.284646,0.333844,0.923693,0.662854,0.00817955,0.35841,0.518705,0.177404,0.123927,0.475237,0.936789,0.315449,0.0852144,0.942532,0.403277,0.190022,0.978696,0.100434,0.00449425,0.216103,0.0806056,0.256309,0.456631,0.051138,0.0831437,0.44137,0.223399,0.335825,0.549568,0.641013,0.500804,0.0778555,0.802494,0.093694,0.326515,0.765302,0.997047,0.51287,0.377007,0.348405,0.161956,0.993435,0.388262,0.220706,0.0580066,0.181192,0.924644,0.253285,0.889913,0.597618,0.490912,0.351042,0.214606,0.33298,0.839197,0.818696,0.315399,0.0925958,0.745162,0.856228,0.37054,0.812954,0.599509,0.7554,0.468461,0.715221,0.890753,0.524196,0.771914,0.664505,0.0196998,0.784107,0.392289,0.60536,0.588345,0.279695,0.857806,0.826029,0.0347859,0.126969,0.926925,0.883072,0.307063,0.493571,0.206367,0.11514,0.311224,0.486748,0.812076,0.91905,0.975448,0.417485,0.130083,0.33324,0.642823,0.429649,0.829258,0.502183,0.481274,0.905113,0.173963,0.575334,0.661206,0.139258,0.260947,0.177757,0.140822,0.550888,0.320472,0.903269,0.0595998,0.543784,0.39672,0.0621964,0.259533,0.363847,0.869086,0.00480801,0.794155,0.288429,0.158854,0.512947,0.487359,0.900031,0.776836,0.147668,0.702961,0.132099,0.387599,0.974548,0.77158,0.769042,0.817432,0.336001,0.715352,0.803935,0.128366,0.874291,0.661963,0.258795,0.961471,0.10839,0.969888,0.955631,0.554262,0.518837,0.318879,0.587132,0.365917,0.618445,0.854486,0.325243,0.0961313,0.655222,0.216324,0.499694,0.24577,0.668087,0.48872,0.896219,0.722799,0.525843,0.00132936,0.625442,0.925909,0.296622,0.622919,0.647541,0.569361,0.561853,0.183695,0.870325,0.354075,0.428064,0.962377,0.235821,0.830988,0.78271,0.789389,0.972513,0.53976,0.483511,0.620242,0.315713,0.925799,0.805666,0.370913,0.328093,0.396949,0.570721,0.696777,0.218314,0.86545,0.609986,0.141896,0.392792,0.443897,0.344014,0.803138,0.546271,0.388624,0.92163,0.110123,0.876932,0.945927,0.760116,0.919883,0.903416,0.18206,0.394944,0.430631,0.391372,0.228215,0.773643,0.903381,0.481831,0.961619,0.0886903,0.146846,0.793033,0.0646214,0.618793,0.515127,0.635489,0.13585,0.457665,0.835812,0.314273,0.910697,0.885245,0.880181,0.478858,0.975839,0.990523,0.323682,0.053393,0.323808,0.798556,0.953298,0.693718,0.453341,0.393623,0.690799,0.291294,0.665385,0.577322,0.267112,0.816316,0.739289,0.571344,0.922985,0.673769,0.0209986,0.525161,0.0658912,0.923786,0.360056,0.231806,0.868258,0.360564,0.77214,0.76721,0.971186,0.724618,0.834301,0.207826,0.766758,0.638779,0.472525,0.444426,0.763396,0.188361,0.0450453,0.621008,0.238058,0.75312,0.130182,0.231456,0.419897,0.0363402,0.930262,0.287543,0.882407,0.598759,0.0905739,0.45567,0.104774,0.425507,0.0236564,0.0827638,0.110544,0.613469,0.35443,0.861309,0.754128,0.802392,0.129458,0.985244,0.232876,0.837465,0.215979,0.751987,0.0279095,0.333056,0.152395,0.673621,0.977483,0.705655,0.181856,0.988327,0.968007,0.154392,0.821141,0.657329,0.432639,0.899553,0.892785,0.226163,0.930256,0.60979,0.633922,0.405544,0.401439,0.805027,0.574382,0.184548,0.580512,0.391813,0.0167248,0.713208,0.102635,0.476986,0.917049,0.602992,0.417657,0.0589794,0.75967,0.760925,0.366556,0.815971,0.0505228,0.116328,0.0151968,0.720244,0.352014,0.980815,0.716721,0.721635,0.546058,0.465548,0.404714,0.209968,0.292624,0.731002,0.434339,0.458733,0.978892,0.407306,0.338319,0.276345,0.241664,0.0746761,0.597222,0.186616,0.938071,0.776552,0.967834,0.245447,0.849582,0.801168,0.687749,0.743284,0.786514,0.301733,0.812255,0.661998,0.351375,0.59649,0.307816,0.155629,0.0981007,0.948807,0.503093,0.313297,0.965792,0.795201,0.576881,0.272172,0.997942,0.492514,0.177147,0.0150919,0.536157,0.339524,0.0567017,0.953985,0.873695,0.362559,0.218233,0.185523,0.370801,0.52707,0.0423555,0.742528,0.206956,0.390105,0.413619,0.882735,0.57935,0.0127099,0.496283,0.0649495,0.154829,0.833054,0.48253,0.729953,0.00059849,0.377596,0.239266,0.717194,0.145969,0.248777,0.778276,0.774619,0.101429,0.958715,0.644091,0.0734236,0.78907,0.371783,0.45693,0.486949,0.761867,0.0558272,0.908619,0.40572,0.589046,0.625653,0.816569,0.746447,0.736079,0.574082,0.873053,0.981688,0.190042,0.549701,0.426487,0.806332,0.239039,0.559363,0.649232,0.97644,0.604127,0.665376,0.264995,0.379348,0.260632,0.41452,0.769198,0.214341,0.198887,0.958898,0.274642,0.170408,0.0610052,0.807743,0.702378,0.555024,0.668125,0.581402,|0.498554,0.472561,0.964705,0.0320235,0.819757,0.870068,0.581423,0.399612,0.703305,0.236355,0.243634,0.706628,0.860518,0.0167773,0.765457,0.546086,0.721742,0.797246,0.218723,0.670093,0.394431,0.558312,0.291064,0.542032,0.405563,0.244021,0.211294,0.547253,0.686913,0.127107,0.756724,0.421032,0.0933916,0.541766,0.475098,0.991633,0.686316,0.45819,0.949555,0.1386,0.164538,0.684466,0.00510573,0.673357,0.00862145,0.618852,0.267214,0.732013,0.534894,0.708612,0.659534,0.070301,0.34985,0.681475,0.316934,0.349801,0.48858,0.0322227,0.141785,0.283399,0.919791,0.964217,0.477508,0.399275,0.0100365,0.0348144,0.612312,0.915807,0.753361,0.963268,0.751668,0.419817,0.537775,0.17101,0.755131,0.630878,0.43901,0.324554,0.771287,0.856017,0.558443,0.115356,0.335596,0.118965,0.945879,0.398386,0.276652,0.87288,0.945016,0.818432,0.145276,0.261306,0.516907,0.912175,0.843829,0.145902,0.0765529,0.930866,0.120624,0.559017,0.786371,0.101529,0.865515,0.582294,0.22833,0.449168,0.559485,0.176225,0.353348,0.490453,0.827312,0.774004,0.0495543,0.20288,0.329828,0.0255214,0.912545,0.747986,0.863177,0.398708,0.295619,0.0907876,0.945327,0.325828,0.458821,0.999579,0.444561,0.521419,0.774608,0.406961,0.791724,0.20612,0.114588,0.0760046,0.291162,0.111474,0.276849,0.930812,0.79635,0.708576,0.501062,0.568337,0.155524,0.320819,0.835159,0.155893,0.210698,0.254736,0.592069,0.101943,0.434251,0.448226,0.0538194,0.9957,0.648757,0.502631,0.870742,0.623489,0.980545,0.964207,0.443365,0.928684,0.255682,0.412626,0.612003,0.339445,0.152742,0.523844,0.338853,0.486639,0.782752,0.583513,0.0901594,0.992747,0.135975,0.16456,0.874954,0.972221,0.917605,0.832475,0.986192,0.262944,0.648847,0.958334,0.824789,0.874492,0.881381,0.60459,0.851807,0.605339,0.0799499,0.722369,0.278181,0.320351,0.464792,0.223589,0.662337,0.692807,0.367469,0.531978,0.79486,0.424986,0.728738,0.726673,0.96503,0.276441,0.324874,0.892931,0.522808,0.227942,0.537792,0.662621,0.294846,0.617073,0.39051,0.928009,0.903283,0.489137,0.305252,0.626697,0.226788,0.194977,0.737983,0.783401,0.859334,0.0168164,0.599298,0.215259,0.901494,0.59787,0.787701,0.812066,0.198217,0.965062,0.547845,0.0949178,0.823326,0.445922,0.729614,0.736658,0.664886,0.803138,0.590638,0.699401,0.00291508,0.680647,0.102652,0.988016,0.585248,0.769228,0.740266,0.728266,0.110677,0.478536,0.447164,0.278964,0.592527,0.424635,0.290518,0.677958,0.44144,0.549347,0.322352,0.301276,0.205094,0.68094,0.44852,0.98986,0.146215,0.3241,0.265112,0.581789,0.955223,0.737548,0.765606,0.355884,0.695996,0.846055,0.472833,0.096333,0.928398,0.447526,0.312389,0.172262,0.0393984,0.516581,0.510221,0.0795754,0.796352,0.775671,0.703024,0.335319,0.536753,0.00634509,0.683417,0.871979,0.119926,0.605778,0.195637,0.596917,0.97305,0.35702,0.503142,0.422792,0.46917,0.852175,0.57014,0.664956,0.268551,0.935931,0.0829258,0.793545,0.626822,0.055423,0.284665,0.673586,0.937893,0.312596,0.624567,0.357388,0.0223817,0.352283,0.314264,0.800156,0.50559,0.184617,0.547767,0.672657,0.49415,0.804197,0.550129,0.361977,0.939184,0.21753,0.304359,0.735527,0.650816,0.919813,0.48725,0.00178391,0.915207,0.840735,0.134866,0.917206,0.737232,0.69289,0.847289,0.44137,0.847912,0.384533,0.105946,0.0864166,0.112778,0.665507,0.793833,0.442804,0.838601,0.361759,0.850507,0.717259,0.928039,0.375777,0.276047,0.802102,0.701833,0.698718,0.55412,0.73981,0.171485,0.762257,0.757547,0.0850518,0.232508,0.554102,0.232773,0.218949,0.269806,0.646234,0.637478,0.15476,0.705379,0.594768,0.587888,0.674825,0.154309,0.97658,0.953148,0.120941,0.507703,0.890651,0.472816,0.827499,0.763435,0.91071,0.0115901,0.86542,0.843678,0.98275,0.563218,0.229008,0.629743,0.191963,0.158863,0.113109,0.0803509,0.78888,0.664668,0.241567,0.0839995,0.169113,0.929227,0.14973,0.837999,0.580651,0.366377,0.926659,0.683174,0.643882,0.719603,0.719928,0.483577,0.389299,0.979434,0.301313,0.959253,0.42602,0.832392,0.773143,0.191303,0.753549,0.0333599,0.841597,0.525083,0.907155,0.576434,0.61493,0.917585,0.792106,0.660312,0.175094,0.104732,0.131502,0.692619,0.134962,0.300898,0.765646,0.394023,0.10292,0.618769,0.865169,0.706534,0.977107,0.143428,0.178122,0.227073,0.182263,0.707417,0.662399,0.870979,0.182377,0.797216,0.269211,0.939227,0.242406,0.353191,0.48651,0.955142,0.31399,0.815681,0.714701,0.0713982,0.347291,0.00301081,0.011792,0.276936,0.995229,0.400185,0.849597,0.435571,0.505332,0.43956,0.671713,0.141163,0.705406,0.193825,0.468349,0.170751,0.448672,0.337553,0.333652,0.391199,0.172581,0.942057,0.337394,0.781301,0.313371,0.0551865,0.0492278,0.0164698,0.740452,0.335854,0.26524,0.502966,0.36832,0.787552,0.338545,0.782614,0.0454847,0.0914093,0.2289,0.924102,0.828074,0.790726,0.424181,0.273268,0.567058,0.957022,0.526451,0.543966,0.112256,0.499832,0.758582,0.43738,0.638657,0.827846,0.891905,0.0301008,0.167193,0.612738,0.642286,0.0270674,0.565662,0.485328,0.896199,0.373391,0.147005,0.194689,0.402521,0.82087,0.248459,0.723821,0.521271,0.035081,0.372606,0.244981,0.408461,0.741607,0.736016,0.817406,0.209671,0.105758,0.481842,0.64298,0.377985,0.951018,0.730277,0.644765,0.893955,0.567312,0.574426,0.986622,0.377516,0.18666,0.405735,0.294237,0.0435597,0.758929,0.87447,0.91079,0.137473,0.967664,0.585133,0.897344,0.252793,0.0704709,0.626535,0.522009,0.284297,0.236261,0.191687,0.626079,0.040346,0.0728878,0.571186,0.316623,0.908974,0.477277,0.918883,0.0677995,0.0767703,0.666817,0.35477,0.325381,0.603644,0.361772,0.57737,0.448732,0.369156,0.426989,0.205455,0.752948,0.70079,0.662176,0.340874,0.535574,0.934836,0.0985289,0.0456023,0.953792,0.450042,0.425409,0.244739,0.232243,0.0750135,0.0344319,0.697973,0.734447,0.493735,0.511611,0.82747,0.0893952,0.852505,0.873671,0.0638456,0.229807,0.2045,0.906372,0.798942,0.216156,0.807549,0.532071,0.10314,0.440081,0.464994,0.575031,0.275723,0.0980979,0.810895,0.502322,0.913433,0.693638,0.951745,0.746427,0.645408,0.723854,0.761852,0.381485,0.813179,0.546452,0.918995,0.943762,0.193927,0.794077,0.161215,0.231544,0.278836,0.435488,0.151448,0.735751,0.845722,0.487481,0.825352,0.949861,0.56043,0.769797,0.600211,0.462533,0.616041,0.519488,0.806069,0.702183,0.873843,0.732529,0.225814,0.699773,0.0264032,0.974819,0.469053,0.933335,0.874617,0.402294,0.318782,0.614754,0.386215,0.691815,0.330606,0.484529,0.590692,0.292311,0.567004,0.419786,0.249869,0.246399,0.665081,0.0851271,0.77498,0.618601,0.567917,0.643512,0.191994,0.705964,0.400059,0.922111,0.282185,0.576927,0.960265,0.319187,0.0340956,0.194082,0.595612,0.151064,0.931482,0.432968,0.873629,0.23392,0.968948,0.117117,0.581984,0.96207,0.0397404,0.0802323,0.0264609,0.382544,0.277421,0.140352,0.157089,0.440336,0.493524,0.417056,0.274698,0.786888,0.873761,0.0101579,0.643712,0.865959,0.940155,0.872281,0.231301,0.976062,0.678032,0.919057,0.501615,0.285423,0.70716,0.996454,0.8057,0.973433,0.0623096,0.207512,0.735989,0.00165492,0.569243,0.858223,0.60062,0.786043,0.181576,0.585023,0.068746,0.437482,0.825598,0.00777197,0.818336,0.00549716,0.0216023,0.219282,0.911211,0.608583,0.979982,0.744085,0.686439,0.433319,0.370748,0.902712,0.0726818,0.601575,0.632795,0.353746,0.681276,0.964859,0.277656,0.687368,0.393815,0.125578,0.653721,0.482917,0.0144736,0.23587,0.737026,0.194298,0.0565525,0.432788,0.917986,0.945756,0.113464,0.69804,0.493382,0.102265,0.710338,0.801404,0.92683,0.563756,0.16882,0.468695,0.0380779,0.748104,0.734877,0.677417,0.160834,0.357585,0.930458,0.344732,0.638125,0.563512,0.443557,0.532777,0.213954,0.275276,0.395123,0.395984,0.121504,0.492972,0.741242,0.385548,0.800783,0.709075,0.605751,0.15278,0.14438,0.888705,0.860165,0.914432,0.955575,0.495251,0.122372,0.9882,0.388783,0.157744,0.535257,0.368084,0.727915,0.517155,0.942862,0.388873,0.966903,0.537259,0.611691,0.23392,0.627341,0.979356,0.352034,0.805188,0.904439,0.943666,0.528912,0.863686,0.443428,0.960935,0.820224,0.259329,0.411501,0.606994,0.179283,0.97642,0.334248,0.651076,0.00866461,0.488649,0.703963,0.891708,0.271459,0.450355,0.27732,0.90908,0.213742,0.653198,0.275133,0.874342,0.878101,0.888911,0.802083,0.343299,0.0731435,0.698314,0.855042,0.121818,0.738663,0.671713,0.239905,0.21055,0.932764,0.560006,0.42717,0.496127,0.612718,0.484751,0.0380264,0.727571,0.13024,0.704844,0.381605,0.262307,0.398586,0.785529,0.378228,0.460516,0.440759,0.0653808,0.331786,0.916271,0.850001,0.336508,0.272714,0.975778,0.540197,0.582543,0.643199,0.142217,0.447419,0.0225525,0.390407,0.440517,0.970099,0.398204,0.797937,0.860106,0.554956,0.210478,0.746815,0.902304,0.679521,0.29257,0.306109,0.891781,0.195862,0.333161,0.957695,0.603273,0.663219,0.240888,0.288079,0.404778,0.692969,0.429468,0.222729,0.00859028,0.309718,0.316733,0.880543,0.739803,0.119028,0.301449,0.987615,0.300333,0.659169,0.935073,0.182392,0.33267,0.898739,0.402284,0.156991,0.925492,0.892324,0.217693,0.852214,0.620859,0.272381,0.398532,0.885653,0.202175,0.998893,0.347651,0.422852,0.0875462,0.265326,0.764785,0.855709,0.776228,0.687735,0.249179,0.531952,0.446361,0.638178,0.605331,0.425556,0.574473,0.555133,0.027725,0.68896,0.513144,0.449794,0.683866,0.00950921,0.0749915,0.909792,0.525678,0.659925,0.312861,0.831998,0.959551,0.916857,|0.596057,0.715552,0.698982,0.951882,0.520218,0.808712,0.302545,0.688639,0.95273,0.569594,0.0758789,0.442188,0.738194,0.431179,0.50488,0.0421888,0.535957,0.0190985,0.327536,0.389182,0.233213,0.385644,0.919222,0.413266,0.466512,0.235152,0.0855358,0.279469,0.92116,0.792795,0.171505,0.00289571,0.374077,0.348435,0.873307,0.432705,0.200188,0.819,0.885714,0.954891,0.685338,0.219322,0.530272,0.640726,0.058318,0.241477,0.0222358,0.73359,0.48005,0.591612,0.978657,0.211335,0.0555415,0.156185,0.423496,0.989305,0.357223,0.859755,0.944739,0.921205,0.960019,0.988464,0.0810475,0.354665,0.608957,0.759745,0.642845,0.181491,0.398369,0.914516,0.935342,0.25305,0.305201,0.660673,0.403435,0.349007,0.1265,0.611328,0.654338,0.0780098,0.329167,0.509184,0.821632,0.270174,0.883663,0.311532,0.00165194,0.0099327,0.249302,0.888927,0.72979,0.761113,0.650243,0.696869,0.110424,0.95378,0.162239,0.905244,0.198793,0.960055,0.528242,0.43494,0.853852,0.872837,0.778307,0.910505,0.0400431,0.36969,0.266713,0.173264,0.896815,0.940853,0.648638,0.569933,0.0677546,0.0109462,0.795538,0.375673,0.507966,0.444856,0.408661,0.743699,0.0623111,0.250647,0.28237,0.768483,0.367471,0.530101,0.155546,0.593387,0.714868,0.831146,0.876712,0.436539,0.778598,0.630068,0.439464,0.103422,0.456666,0.341766,0.419389,0.302976,0.993649,0.404386,0.62229,0.792419,0.305242,0.291378,0.621939,0.302907,0.619313,0.781864,0.225277,0.697593,0.199019,0.107637,0.942383,0.968279,0.584909,0.572531,0.815232,0.934204,0.385948,0.914757,0.795428,0.0375765,0.254187,0.660815,0.418471,0.568885,0.306193,0.295334,0.400992,0.670483,0.0875463,0.361376,0.436504,0.843565,0.921119,0.881155,0.181287,0.080201,0.488368,0.60408,0.579857,0.712438,0.762102,0.441023,0.544293,0.789826,0.77841,0.989154,0.00683481,0.891484,0.474362,0.750288,0.530287,0.331469,0.646417,0.288077,0.899804,0.563434,0.818236,0.996466,0.25902,0.752076,0.250766,0.623521,0.629537,0.644466,0.9622,0.502907,0.779519,0.645275,0.517201,0.703408,0.841476,0.0984355,0.0113153,0.0589929,0.0888322,0.0790825,0.387403,0.593562,0.852136,0.0693934,0.216866,0.916336,0.48675,0.168234,0.204781,0.679995,0.56633,0.134538,0.38876,0.328065,0.340762,0.132391,0.680692,0.717266,0.776223,0.700857,0.611553,0.362927,0.784745,0.716143,0.214738,0.227251,0.165032,0.280695,0.483027,0.985388,0.862177,0.082639,0.8617,0.148958,0.738122,0.758299,0.038138,0.664549,0.233272,0.461186,0.939312,0.23143,0.346253,0.884224,0.398249,0.0914636,0.90215,0.560859,0.912061,0.74541,0.985989,0.402598,0.848457,0.448477,0.242506,0.726703,0.700257,0.172234,0.197774,0.840683,0.297613,0.680533,0.5254,0.0502683,0.653113,0.155859,0.757016,0.525459,0.751221,0.732444,0.938832,0.237532,0.560875,0.418743,0.663495,0.23169,0.958316,0.743065,0.124397,0.425989,0.979678,0.952689,0.813354,0.887795,0.547146,0.630357,0.796888,0.261784,0.477526,0.229317,0.497726,0.948636,0.176419,0.919086,0.102999,0.590878,0.492191,0.454588,0.763186,0.301634,0.749457,0.239904,0.712493,0.188466,0.241554,0.136077,0.882751,0.823031,0.755764,0.252965,0.853449,0.383911,0.922394,0.708709,0.156156,0.75439,0.927019,0.851261,0.458909,0.0122261,0.858091,0.828933,0.554158,0.996978,0.687246,0.228304,0.420895,0.236909,0.361604,0.187036,0.25698,0.00502181,0.0909346,0.45457,0.525841,0.772375,0.575822,0.319431,0.949225,0.428329,0.928669,0.888176,0.218501,0.551191,0.65191,0.926889,0.0510536,0.768221,0.991553,0.818901,0.300729,0.592371,0.514255,0.830997,0.624819,0.303784,0.997894,0.990573,0.996464,0.636892,0.832479,0.790479,0.391616,0.848531,0.894144,0.710998,0.0155841,0.737619,0.275969,0.29927,0.956351,0.583695,0.381533,0.527355,0.301857,0.823363,0.468826,0.903462,0.0590537,0.252816,0.996012,0.0422658,0.290846,0.983411,0.664398,0.526984,0.206898,0.0592936,0.73723,0.481163,0.443776,0.988873,0.410253,0.241246,0.824559,0.495789,0.22263,0.129676,0.6458,0.66042,0.379708,0.671096,0.212359,0.238712,0.278832,0.914315,0.38384,0.0941966,0.698307,0.0433225,0.538816,0.742425,0.693113,0.806323,0.884028,0.659366,0.0286984,0.740735,0.146292,0.447831,0.426618,0.0268264,0.537851,0.526733,0.614753,0.0796455,0.761849,0.571686,0.801701,0.138252,0.864087,0.669075,0.621258,0.112084,0.70811,0.24937,0.176733,0.641037,0.36262,0.152607,0.116629,0.878381,0.616426,0.00602555,0.607324,0.193681,0.795109,0.617622,0.911806,0.843788,0.457101,0.406298,0.335479,0.0962387,0.381873,0.414914,0.474381,0.138341,0.528046,0.747099,0.812022,0.912869,0.798783,0.137768,0.860905,0.303935,0.0652544,0.127259,0.194604,0.602959,0.390422,0.287915,0.686329,0.215699,0.00973713,0.513937,0.660214,0.293165,0.340686,0.44046,0.126285,0.494221,0.5662,0.700417,0.0967519,0.202485,0.601734,0.595846,0.0877757,0.00156599,0.380445,0.159044,0.696988,0.115631,0.0794162,0.86544,0.753371,0.111531,0.530864,0.910388,0.842357,0.259275,0.918816,0.120941,0.639369,0.299633,0.433752,0.984859,0.417836,0.728862,0.1694,0.811379,0.74504,0.710404,0.367425,0.662855,0.914149,0.608591,0.983175,0.859368,0.676851,0.172306,0.0315437,0.168843,0.650496,0.163451,0.0798028,0.261423,0.853527,0.391938,0.285422,0.615703,0.234137,0.763342,0.188356,0.0543707,0.597834,0.339467,0.187335,0.50804,0.0369272,0.703567,0.756987,0.146425,0.453712,0.469935,0.998541,0.489137,0.196264,0.782896,0.750743,0.247044,0.368166,0.743774,0.326394,0.902144,0.636671,0.225356,0.518097,0.0834975,0.158978,0.492898,0.532435,0.856263,0.929966,0.305294,0.349839,0.299441,0.47734,0.622155,0.121848,0.72835,0.220101,0.409123,0.986732,0.0255539,0.823807,0.213198,0.841609,0.867637,0.76496,0.634888,0.21438,0.797597,0.748607,0.267966,0.74118,0.528686,0.268007,0.983611,0.547179,0.471843,0.938819,0.941101,0.46382,0.747798,0.397959,0.877854,0.319157,0.856491,0.167931,0.262338,0.0621235,0.621385,0.507702,0.103345,0.452649,0.90825,0.006405,0.94256,0.888848,0.737768,0.968086,0.919089,0.49468,0.436674,0.626694,0.796615,0.336849,0.530254,0.306032,0.0769981,0.36658,0.691941,0.571267,0.17226,0.239875,0.968606,0.526908,0.918331,0.604122,0.922524,0.334802,0.576612,0.547306,0.487045,0.12506,0.00476635,0.170398,0.322953,0.384998,0.52194,0.702514,0.0661475,0.731982,0.245729,0.302524,0.129122,0.422987,0.591471,0.0667829,0.395566,0.512009,0.124986,0.0707574,0.919749,0.906179,0.428565,0.78458,0.726993,0.752468,0.233792,0.560061,0.903086,0.0398812,0.243755,0.764665,0.412849,0.900263,0.420818,0.308445,0.374658,0.852228,0.277142,0.241047,0.589664,0.282079,0.984266,0.276429,0.492764,0.136054,0.667568,0.165202,0.415879,0.773031,0.333095,0.109694,0.697249,0.850895,0.833778,0.73049,0.802702,0.782095,0.903964,0.642375,0.154243,0.453514,0.0803297,0.0878558,0.677308,0.20505,0.690266,0.267761,0.193535,0.125893,0.986766,0.874466,0.71458,0.289373,0.985635,0.549952,0.395477,0.350422,0.469116,0.870547,0.469188,0.89224,0.413345,0.0641616,0.172897,0.782436,0.940437,0.872747,0.445517,0.278326,0.52028,0.82058,0.572553,0.323362,0.181218,0.033318,0.54942,0.420835,0.234608,0.585393,0.244788,0.523172,0.582016,0.730625,0.726107,0.689397,0.279882,0.871142,0.956137,0.935341,0.326815,0.47373,0.646766,0.651047,0.179087,0.426657,0.176679,0.134686,0.763858,0.516362,0.417017,0.35964,0.591389,0.296513,0.257189,0.990277,0.500361,0.293888,0.0655826,0.614129,0.398179,0.912326,0.705329,0.0474097,0.662598,0.360792,0.1629,0.347853,0.555297,0.248938,0.376615,0.839532,0.829934,0.446948,0.227564,0.438068,0.837243,0.00190169,0.0784997,0.335887,0.112623,0.899917,0.369467,0.614621,0.188836,0.174548,0.396913,0.257114,0.0154596,0.580639,0.388699,0.230753,0.961846,0.654108,0.405118,0.125279,0.362817,0.973779,0.659626,0.958672,0.575546,0.825854,0.621951,0.570433,0.0917289,0.560167,0.266359,0.588425,0.465171,0.645825,0.473831,0.127582,0.603202,0.296966,0.36843,0.421045,0.697985,0.554231,0.800709,0.875337,0.921535,0.910511,0.477389,0.604512,0.520114,0.297542,0.917598,0.665738,0.78698,0.540981,0.0249635,0.847075,0.178349,0.71832,0.84549,0.159887,0.867853,0.465621,0.210763,0.667568,0.654002,0.641182,0.48159,0.753061,0.977056,0.862243,0.919165,0.805542,0.473772,0.38423,0.983081,0.318236,0.524406,0.720015,0.124977,0.202296,0.746647,0.581225,0.503546,0.182309,0.398418,0.800171,0.510004,0.466844,0.0787985,0.647983,0.161647,0.776227,0.260189,0.334339,0.753075,0.234747,0.453298,0.163499,0.431126,0.952262,0.73521,0.654665,0.309143,0.249176,0.190776,0.16921,0.752805,0.261457,0.0944029,0.932539,0.870944,0.190419,0.216528,0.00371534,0.517319,0.817889,0.273821,0.301455,0.146876,0.829811,0.955804,0.994927,0.775138,0.844907,0.671274,0.0747148,0.434175,0.545442,0.702398,0.021826,0.744698,0.00221431,0.867709,0.310932,0.333161,0.391374,0.501421,0.0854478,0.882165,0.898727,0.165405,0.195792,0.845419,0.29206,0.690058,0.76196,0.807534,0.545739,0.0834842,0.389418,0.233169,0.93531,0.210047,0.378664,0.962876,0.457236,0.996185,0.840096,0.547348,0.470709,0.921128,0.41315,0.570319,0.299975,0.948148,0.396742,0.876268,0.447772,0.0440663,0.161665,0.345713,0.568968,0.165496,0.784568,0.627505,0.534796,0.716142,0.60821,0.298848,0.476558,0.818719,0.225557,0.989125,0.899881,0.658535,0.897676,0.261426,0.203143,0.604684,0.754321,0.506175,0.888331,0.479017,0.110241,0.836125,0.292128,0.203225,|0.949822,0.883443,0.586964,0.0604414,0.341832,0.844447,0.166755,0.705535,0.896152,0.484203,0.828382,0.349572,0.365992,0.965431,0.769937,0.600078,0.541622,0.499422,0.765424,0.916924,0.759002,0.991372,0.753425,0.247798,0.775922,0.420665,0.919524,0.857055,0.843214,0.120888,0.00439429,0.639159,0.234098,0.978609,0.323836,0.977801,0.942939,0.718245,0.121255,0.362887,0.471672,0.744835,0.861867,0.184038,0.71288,0.583161,0.0943108,0.950423,0.722067,0.783962,0.638898,0.790967,0.923024,0.84339,0.799108,0.296769,0.822603,0.894102,0.106716,0.561469,0.954486,0.902613,0.388677,0.246198,0.479773,0.280941,0.756666,0.59891,0.969383,0.397071,0.65454,0.320681,0.817869,0.679339,0.935292,0.378656,0.72238,0.204306,0.516207,0.765514,0.990158,0.933267,0.935156,0.0841235,0.385997,0.499227,0.828999,0.83618,0.248255,0.00126231,0.385303,0.789518,0.547652,0.510244,0.766478,0.391052,0.239689,0.0806015,0.756997,0.464931,0.772055,0.0167437,0.911381,0.580623,0.863049,0.517238,0.883833,0.0047437,0.639133,0.871852,0.595528,0.959441,0.701362,0.551121,0.346096,0.625912,0.0918043,0.423621,0.71076,0.936727,0.617478,0.0724617,0.325829,0.0328017,0.756532,0.0752848,0.82746,0.307329,0.972046,0.0688468,0.861671,0.613861,0.285432,0.624256,0.14505,0.40584,0.76419,0.818491,0.709668,0.736389,0.810257,0.870111,0.495961,0.986729,0.71899,0.211398,0.832317,0.292708,0.275087,0.293317,0.183366,0.816765,0.0565484,0.901729,0.990413,0.883174,0.819175,0.6451,0.767407,0.83783,0.962167,0.803998,0.974428,0.643399,0.403918,0.276273,0.898657,0.890999,0.675998,0.950044,0.768972,0.0864786,0.914753,0.718784,0.238548,0.554816,0.678761,0.167514,0.431495,0.296486,0.12445,0.567635,0.502713,0.214306,0.971557,0.320212,0.874512,0.457607,0.551041,0.907644,0.040519,0.824572,0.18575,0.0873649,0.441712,0.176978,0.688824,0.642492,0.131031,0.108647,0.438538,0.560242,0.761349,0.493667,0.230305,0.0951365,0.343269,0.157279,0.793756,0.833011,0.841401,0.791893,0.547577,0.460015,0.495205,0.86393,0.412306,0.962941,0.0601701,0.116912,0.0269317,0.84024,0.552257,0.438405,0.702816,0.252481,0.574018,0.743733,0.988475,0.299384,0.372926,0.0148494,0.346136,0.440503,0.82004,0.830958,0.858859,0.0846747,0.18181,0.910724,0.236578,0.458935,0.933433,0.939583,0.209454,0.453642,0.949422,0.708007,0.113597,0.341778,0.385431,0.076434,0.516838,0.377172,0.46596,0.778666,0.721771,0.308183,0.0444713,0.533652,0.197141,0.533476,0.793221,0.366697,0.203184,0.56693,0.599415,0.701328,0.0671747,0.306558,0.892085,0.807433,0.654944,0.135971,0.163645,0.144511,0.598646,0.580869,0.418022,0.769239,0.217581,0.516084,0.306165,0.754089,0.986222,0.633123,0.586316,0.896958,0.257381,0.401322,0.461619,0.248286,0.527776,0.0927712,0.712634,0.686094,0.850533,0.902701,0.341946,0.357154,0.397043,0.706202,0.307399,0.654077,0.374909,0.173909,0.303521,0.861731,0.827434,0.269032,0.886584,0.04992,0.860999,0.0208731,0.220616,0.407412,0.370629,0.612889,0.739478,0.462807,0.466505,0.280958,0.816649,0.0695132,0.268784,0.809976,0.0318726,0.694975,0.986133,0.618086,0.269998,0.788716,0.227386,0.210494,0.348653,0.80408,0.653282,0.816507,0.312877,0.489852,0.278926,0.379887,0.268987,0.400967,0.0968249,0.909056,0.727797,0.622553,0.880973,0.0579208,0.483076,0.186798,0.292347,0.774371,0.2392,0.758282,0.271338,0.932159,0.0358841,0.192006,0.589308,0.419384,0.894212,0.85792,0.507637,0.572184,0.72535,0.192607,0.242972,0.885317,0.764669,0.497891,0.592933,0.0242971,0.949406,0.21475,0.706388,0.841302,0.592349,0.16677,0.806889,0.244901,0.740942,0.86341,0.255876,0.863104,0.0397683,0.809859,0.485034,0.674035,0.551503,0.366068,0.333673,0.208179,0.960265,0.611726,0.983875,0.671936,0.0602338,0.794758,0.548071,0.00878811,0.571702,0.554393,0.615575,0.398135,0.129446,0.0441828,0.501351,0.277799,0.157972,0.817132,0.753575,0.683112,0.26072,0.680966,0.105322,0.991574,0.688459,0.164558,0.56375,0.257815,0.16964,0.604903,0.285897,0.495128,0.384953,0.877857,0.717559,0.327031,0.798889,0.670031,0.892586,0.762798,0.749857,0.470203,0.108713,0.626016,0.657329,0.680056,0.235966,0.236925,0.311423,0.938613,0.215652,0.549085,0.680905,0.295674,0.553373,0.448371,0.929715,0.804943,0.409488,0.637656,0.939268,0.292112,0.338628,0.0363268,0.881798,0.5789,0.0474068,0.169065,0.838679,0.910077,0.999864,0.40307,0.275915,0.190149,0.493998,0.601328,0.412694,0.591382,0.670943,0.702667,0.407957,0.811485,0.341124,0.0354916,0.952331,0.102657,0.621186,0.531873,0.835846,0.193944,0.947316,0.770441,0.545053,0.716619,0.54433,0.0409565,0.218924,0.709626,0.576982,0.661497,0.826913,0.6385,0.106567,0.643458,0.237858,0.811514,0.531163,0.641872,0.523445,0.883421,0.469415,0.251797,0.070531,0.921791,0.201563,0.145426,0.904829,0.0198831,0.55414,0.824219,0.58641,0.991643,0.471178,0.461103,0.755121,0.779268,0.625986,0.590378,0.722809,0.191296,0.374169,0.755194,0.929113,0.817124,0.936431,0.182021,0.795071,0.109432,0.378023,0.484387,0.47097,0.813074,0.80817,0.677606,0.243754,0.362302,0.817954,0.691364,0.617062,0.930697,0.307735,0.758417,0.57505,0.587933,0.662748,0.536949,0.922851,0.416906,0.736187,0.918336,0.260112,0.854907,0.273221,0.406796,0.799943,0.898579,0.691546,0.324213,0.0348866,0.325801,0.248315,0.0892953,0.166968,0.334683,0.605589,0.16619,0.636826,0.784561,0.201707,0.130462,0.0724013,0.0184235,0.39125,0.0139474,0.065736,0.247596,0.101849,0.600924,0.742352,0.192331,0.493664,0.765691,0.237191,0.922253,0.360284,0.343269,0.831477,0.32101,0.769598,0.989523,0.228268,0.118849,0.772439,0.737213,0.780125,0.614351,0.0803924,0.281342,0.84839,0.905318,0.936835,0.176949,0.957405,0.444152,0.388263,0.793381,0.946,0.808611,0.848397,0.0692187,0.484567,0.262976,0.296684,0.641371,0.962062,0.0298492,0.577139,0.336946,0.444835,0.92418,0.00488919,0.718853,0.464961,0.295941,0.615469,0.106205,0.30138,0.358534,0.944679,0.204194,0.699266,0.366992,0.369972,0.422265,0.935907,0.912432,0.437499,0.965121,0.778159,0.649209,0.444481,0.477715,0.180449,0.970734,0.955523,0.971057,0.254796,0.381291,0.338881,0.140642,0.480186,0.802331,0.270374,0.566319,0.144751,0.889737,0.5669,0.773461,0.299005,0.853852,0.757512,0.989072,0.984926,0.850142,0.111748,0.660458,0.192866,0.283582,0.5513,0.625576,0.633957,0.612848,0.137771,0.110146,0.875598,0.501836,0.17131,0.452301,0.279591,0.880013,0.732123,0.585058,0.547494,0.964379,0.995593,0.186395,0.837115,0.708891,0.321279,0.190247,0.659498,0.42812,0.598945,0.66853,0.938285,0.672344,0.475802,0.815502,0.92849,0.414935,0.832796,0.621416,0.872546,0.72735,0.0407608,0.289213,0.837172,0.587348,0.520165,0.501216,0.566297,0.544264,0.662785,0.455159,0.719994,0.963426,0.0372611,0.864125,0.943559,0.0172652,0.328075,0.059354,0.975159,0.638498,0.768004,0.341349,0.612164,0.877863,0.920731,0.234816,0.119403,0.192329,0.465268,0.94149,0.36383,0.311405,0.729851,0.829741,0.315485,0.66626,0.0167149,0.751944,0.98692,0.2639,0.853505,0.0040819,0.809672,0.554025,0.746181,0.445478,0.726571,0.84186,0.608108,0.67772,0.795672,0.747575,0.992754,0.747339,0.424409,0.831422,0.748547,0.86905,0.174967,0.490119,0.637759,0.305018,0.239697,0.58063,0.805236,0.916737,0.199565,0.201413,0.974416,0.280007,0.159906,0.923506,0.222968,0.129161,0.495392,0.116552,0.158056,0.0665457,0.443611,0.0949697,0.612425,0.389664,0.475668,0.573991,0.443997,0.840389,0.0479326,0.982154,0.896272,0.115176,0.867971,0.77001,0.0542514,0.475012,0.251055,0.850782,0.184081,0.445346,0.253105,0.452256,0.957781,0.681374,0.0484079,0.870387,0.987403,0.651228,0.957923,0.104516,0.156708,0.216496,0.144832,0.685275,0.886289,0.50403,0.831228,0.0708694,0.133951,0.98376,0.851584,0.744715,0.793432,0.744352,0.816784,0.420394,0.0236362,0.956843,0.00497895,0.903948,0.406634,0.788319,0.758989,0.3582,0.0644246,0.540254,0.324745,0.947913,0.621008,0.425318,0.0422615,0.409079,0.724636,0.333068,0.0409279,0.0476592,0.313671,0.529651,0.943126,0.68023,0.00856781,0.306063,0.978447,0.0327575,0.339029,0.315266,0.641805,0.825091,0.89995,0.65613,0.4241,0.975792,0.646724,0.143836,0.0751518,0.703905,0.829159,0.466281,0.766859,0.44099,0.716113,0.235599,0.668481,0.338967,0.966582,0.701289,0.528366,0.915525,0.411127,0.652915,0.563162,0.804444,0.439964,0.404539,0.981568,0.725945,0.110486,0.699063,0.180537,0.266984,0.430858,0.347382,0.649442,0.819954,0.236483,0.891245,0.979671,0.802661,0.593862,0.147047,0.585907,0.553553,0.338719,0.501399,0.540194,0.408766,0.904975,0.561715,0.899778,0.229035,0.448545,0.819645,0.770366,0.947909,0.884967,0.252867,0.115092,0.551638,0.768918,0.622997,0.552751,0.00078541,0.223913,0.651029,0.401679,0.438152,0.44439,0.764024,0.431451,0.178882,0.0778193,0.41308,0.283616,0.170033,0.134113,0.694163,0.462341,0.199972,0.732956,0.930649,0.70187,0.72675,0.2929,0.93085,0.577399,0.218434,0.776177,0.838207,0.300158,0.881158,0.781716,0.153883,0.418754,0.0169421,0.0169656,0.687742,0.277664,0.804669,0.580897,0.246573,0.924713,0.256518,0.713663,0.606845,0.935714,0.62297,0.17565,0.378616,0.662983,0.906072,0.598833,0.509857,0.380853,0.497513,0.129162,0.765369,0.657275,0.151728,0.420849,0.85587,0.836639,0.856784,0.117242,0.915451,0.360337,0.18795,0.169354,0.432682,0.0883213,0.983906,0.105599,0.359641,0.566033,0.900608,|0.126755,0.383684,0.810939,0.0316646,0.214359,0.983079,0.15578,0.0502779,0.894868,0.0546135,0.812805,0.503884,0.00591099,0.66919,0.696567,0.344954,0.534247,0.411791,0.897135,0.772765,0.0980244,0.858481,0.255935,0.734179,0.069662,0.901328,0.51172,0.951702,0.362788,0.934617,0.279566,0.509719,0.106461,0.284292,0.732422,0.800474,0.859609,0.132534,0.677953,0.903798,0.0570032,0.137327,0.024227,0.493235,0.0519164,0.409563,0.16067,0.176857,0.311254,0.74233,0.856792,0.581613,0.451667,0.646272,0.130238,0.979306,0.779978,0.402944,0.314538,0.668201,0.664153,0.0136241,0.694205,0.31155,0.159407,0.165187,0.325484,0.455346,0.489965,0.766517,0.457537,0.0552183,0.582314,0.646938,0.993263,0.310654,0.295354,0.372725,0.312426,0.741769,0.846313,0.817662,0.854341,0.870683,0.914138,0.0256514,0.269622,0.983799,0.467176,0.822444,0.933227,0.413437,0.286564,0.782508,0.878369,0.804281,0.995081,0.957787,0.766092,0.478103,0.974661,0.715418,0.075859,0.521776,0.163383,0.916962,0.314045,0.578034,0.313827,0.430531,0.130257,0.699457,0.754281,0.963029,0.913467,0.751922,0.86351,0.439292,0.257988,0.147165,0.763786,0.437388,0.0939872,0.734546,0.798311,0.554016,0.260756,0.939575,0.180001,0.0906161,0.653644,0.915361,0.0726698,0.539489,0.642535,0.347533,0.835501,0.67605,0.66391,0.759449,0.142536,0.527742,0.966671,0.841248,0.790744,0.866466,0.382401,0.753051,0.468813,0.848304,0.92526,0.108308,0.763545,0.270591,0.0893172,0.481485,0.00432235,0.913671,0.515727,0.859847,0.594375,0.730032,0.253616,0.0888152,0.719649,0.511396,0.821095,0.00950193,0.55475,0.837576,0.978314,0.370329,0.359031,0.682371,0.743371,0.370044,0.00702167,0.633052,0.287201,0.856486,0.974624,0.403588,0.933251,0.937595,0.160093,0.657278,0.223667,0.323456,0.246647,0.873199,0.355925,0.184562,0.491632,0.872193,0.0222067,0.362902,0.67788,0.713278,0.837276,0.859258,0.0966873,0.013536,0.697931,0.173329,0.516458,0.680453,0.470437,0.925746,0.990723,0.729304,0.545587,0.663075,0.0789669,0.490477,0.646778,0.211853,0.217047,0.832267,0.361074,0.715281,0.985704,0.81476,0.333123,0.46581,0.754975,0.82989,0.512577,0.780146,0.00935835,0.509467,0.541179,0.501155,0.166499,0.118074,0.694112,0.972987,0.86105,0.430493,0.461352,0.387045,0.544925,0.654471,0.561219,0.231203,0.48802,0.775313,0.720337,0.59007,0.387752,0.00513762,0.894537,0.962929,0.616272,0.58556,0.85127,0.743052,0.572969,0.889715,0.0355052,0.476326,0.215189,0.378803,0.0465163,0.933625,0.120055,0.0570145,0.993198,0.451054,0.677241,0.812306,0.948083,0.732563,0.822415,0.55907,0.917514,0.0469611,0.38249,0.944384,0.744324,0.0115786,0.912191,0.302472,0.214997,0.391968,0.418227,0.271459,0.969101,0.598053,0.37688,0.23202,0.00574023,0.826272,0.67609,0.704638,0.979613,0.185339,0.164748,0.369517,0.94398,0.806683,0.387385,0.104095,0.357065,0.442951,0.928939,0.888422,0.166717,0.394166,0.772618,0.128246,0.592828,0.487166,0.348982,0.0449691,0.40696,0.434903,0.298639,0.80949,0.606152,0.536642,0.652368,0.25859,0.73959,0.0106292,0.403856,0.449082,0.716026,0.0299353,0.525745,0.334587,0.6313,0.545037,0.657066,0.846938,0.685541,0.6067,0.351214,0.546387,0.551132,0.850339,0.798818,0.893063,0.634005,0.114375,0.274515,0.0845951,0.831932,0.170006,0.44798,0.677426,0.597454,0.621424,0.584519,0.13748,0.620253,0.655435,0.0592678,0.750653,0.688574,0.0827371,0.237988,0.900339,0.207843,0.758876,0.716586,0.289317,0.0988334,0.781854,0.599427,0.707627,0.0640054,0.0897815,0.243056,0.501035,0.409877,0.57376,0.817874,0.912235,0.211205,0.539912,0.579156,0.557023,0.762216,0.566695,0.534925,0.0649084,0.951281,0.636711,0.184648,0.69838,0.787544,0.930795,0.5745,0.351619,0.640825,0.340005,0.742844,0.0741733,0.583484,0.386125,0.954468,0.490451,0.870704,0.695309,0.167649,0.110501,0.4893,0.652775,0.497552,0.517354,0.0369123,0.233244,0.634539,0.238785,0.841269,0.433339,0.582861,0.232328,0.414683,0.158511,0.0728158,0.803999,0.211673,0.403587,0.123888,0.451594,0.240436,0.504794,0.448847,0.0697583,0.472499,0.694288,0.296386,0.493603,0.0702479,0.765724,0.53423,0.731383,0.976848,0.903547,0.0989523,0.785745,0.621894,0.658222,0.372682,0.121697,0.581066,0.515136,0.936404,0.466282,0.831162,0.278891,0.109233,0.899583,0.0261022,0.248183,0.338278,0.861328,0.857088,0.287527,0.580582,0.771902,0.643898,0.16384,0.339783,0.998677,0.125965,0.109705,0.632423,0.318064,0.991467,0.220064,0.641544,0.855566,0.0470886,0.222883,0.505574,0.819031,0.159515,0.546241,0.12755,0.922588,0.780509,0.456746,0.762358,0.309606,0.443061,0.585537,0.0521157,0.644399,0.360785,0.758387,0.493436,0.455684,0.258774,0.126277,0.604177,0.791717,0.462158,0.787976,0.703854,0.218304,0.813349,0.416539,0.228656,0.311005,0.434342,0.0971234,0.787554,0.435142,0.186836,0.595166,0.645657,0.0481781,0.216198,0.405665,0.339641,0.8488,0.408618,0.0450119,0.712719,0.65441,0.564703,0.561124,0.575506,0.559075,0.907271,0.884571,0.797476,0.513553,0.780856,0.788046,0.00080806,0.171693,0.872809,0.765199,0.442983,0.150436,0.535747,0.351761,0.65124,0.80555,0.708369,0.691409,0.727146,0.208546,0.0244235,0.652381,0.993813,0.251608,0.782649,0.0673634,0.200079,0.624628,0.543405,0.679595,0.632592,0.332474,0.858954,0.0547386,0.279471,0.760892,0.410674,0.265665,0.549874,0.532821,0.133576,0.974649,0.521937,0.190433,0.313824,0.495116,0.869927,0.50205,0.44353,0.931027,0.169616,0.184713,0.603575,0.630129,0.209195,0.402589,0.383539,0.40765,0.535098,0.939863,0.420591,0.207777,0.178053,0.795504,0.809186,0.412025,0.625286,0.42293,0.0624582,0.286612,0.198297,0.22798,0.0710419,0.942671,0.381569,0.874827,0.344827,0.580727,0.800229,0.417418,0.0214296,0.16801,0.13998,0.5687,0.456808,0.130011,0.321906,0.850068,0.599515,0.824072,0.445152,0.88357,0.465665,0.00332522,0.575071,0.973797,0.771716,0.920525,0.117793,0.687301,0.874883,0.285965,0.10938,0.637235,0.898016,0.191188,0.42337,0.0131276,0.408348,0.134951,0.313848,0.319075,0.919918,0.901913,0.42188,0.163405,0.73562,0.885529,0.433094,0.472984,0.581355,0.224408,0.0802832,0.831611,0.277235,0.984376,0.299067,0.174062,0.172188,0.132956,0.568839,0.673304,0.863577,0.550877,0.854649,0.916704,0.884054,0.879055,0.449891,0.786087,0.994456,0.977191,0.8772,0.311036,0.715298,0.361151,0.0438232,0.496381,0.198552,0.382065,0.2031,0.586125,0.454413,0.587932,0.702881,0.406999,0.510298,0.391866,0.682059,0.571272,0.764013,0.106843,0.774923,0.308059,0.551635,0.839829,0.910875,0.54134,0.24065,0.488218,0.193659,0.0658031,0.395802,0.949535,0.0124509,0.198021,0.228706,0.624441,0.848368,0.974188,0.868057,0.00392604,0.00423062,0.841812,0.351829,0.933485,0.332455,0.595626,0.8162,0.34607,0.49769,0.595906,0.407636,0.229782,0.24562,0.276898,0.617488,0.346922,0.859153,0.912959,0.854567,0.427301,0.672873,0.106762,0.130349,0.881634,0.417489,0.283322,0.907881,0.116838,0.219458,0.2221,0.521732,0.42325,0.527484,0.247048,0.480725,0.976333,0.437807,0.494886,0.765151,0.291859,0.347828,0.580723,0.254536,0.548386,0.797473,0.736812,0.684962,0.0844119,0.572736,0.399502,0.224522,0.293637,0.928038,0.365168,0.808613,0.33349,0.740469,0.31314,0.723087,0.119608,0.794221,0.122356,0.762034,0.412591,0.616454,0.901827,0.074003,0.523026,0.892453,0.957897,0.0499202,0.00373149,0.787839,0.968044,0.818948,0.099582,0.818189,0.282844,0.480162,0.348243,0.376198,0.499603,0.562544,0.791329,0.7396,0.435684,0.424501,0.42474,0.572518,0.138071,0.0417286,0.745626,0.895391,0.435181,0.389803,0.497147,0.702241,0.662969,0.267305,0.647426,0.149774,0.493028,0.614605,0.00416875,0.816693,0.994075,0.0967034,0.134526,0.15683,0.788007,0.100316,0.317591,0.34151,0.444116,0.367344,0.614087,0.530458,0.896357,0.684682,0.614746,0.066299,0.0662065,0.104963,0.039194,0.37139,0.650915,0.161427,0.171538,0.450273,0.84613,0.316252,0.644303,0.0857687,0.139206,0.85076,0.310485,0.637296,0.196616,0.549224,0.0360565,0.922339,0.633665,0.486523,0.422799,0.685444,0.731088,0.527199,0.464634,0.637175,0.556146,0.412881,0.966367,0.752899,0.0480273,0.251681,0.667594,0.296377,0.869851,0.848262,0.112413,0.500977,0.902247,0.579038,0.589661,0.324408,0.639065,0.724435,0.372878,0.158955,0.632272,0.125398,0.842927,0.33124,0.0285649,0.164658,0.743171,0.214214,0.850304,0.6018,0.204217,0.310833,0.410978,0.504784,0.134786,0.9151,0.802663,0.984106,0.118916,0.0653554,0.20151,0.475608,0.280953,0.312285,0.929405,0.611527,0.063253,0.374089,0.641995,0.607171,0.071605,0.0541599,0.480883,0.181373,0.112138,0.43741,0.856585,0.839154,0.203113,0.0490685,0.603332,0.73876,0.959076,0.250227,0.635689,0.826381,0.485862,0.238862,0.433005,0.252637,0.148313,0.349165,0.998275,0.47386,0.320904,0.483571,0.917301,0.503904,0.620152,0.349141,0.96952,0.797299,0.876364,0.728191,0.40499,0.194555,0.237758,0.434206,0.169362,0.356034,0.323838,0.274668,0.726782,0.561611,0.237239,0.57184,0.590927,0.468909,0.825538,0.332474,0.2048,0.96661,0.897677,0.724109,0.287893,0.627752,0.483786,0.893581,0.491451,0.927571,0.08777,0.532162,0.318507,0.475709,0.938365,0.64553,0.440277,0.720447,0.868691,0.814837,0.916288,0.0740475,0.106339,0.626461,0.0849695,0.555253,0.301102,0.191473,0.164703,0.476531,0.591519,0.071617,0.755879,0.829574,0.934917,0.480282,0.956066,0.659702,0.969154,0.538086,0.654558,0.210878,0.00500697,|0.566688,0.374565,0.947154,0.736589,0.889901,0.268215,0.353378,0.282043,0.145828,0.963734,0.163285,0.877997,0.58257,0.255556,0.142815,0.30373,0.777677,0.195938,0.337657,0.752389,0.789689,0.754212,0.378016,0.636299,0.929055,0.80039,0.37177,0.177311,0.319418,0.510743,0.0582531,0.163032,0.10139,0.601981,0.16253,0.0639014,0.289982,0.0180591,0.164499,0.714368,0.495931,0.250763,0.188992,0.634416,0.475901,0.951378,0.372079,0.706268,0.754345,0.808189,0.264315,0.834803,0.257755,0.226435,0.581707,0.749874,0.267957,0.403528,0.206599,0.708258,0.471548,0.689913,0.655084,0.268855,0.668405,0.293704,0.591175,0.626046,0.717448,0.556847,0.464881,0.661442,0.491506,0.863658,0.352489,0.660973,0.0527044,0.499812,0.069415,0.907215,0.213965,0.330409,0.611822,0.309208,0.842804,0.108786,0.658462,0.66748,0.635308,0.538456,0.0216714,0.967439,0.904802,0.473108,0.931675,0.791106,0.5932,0.395379,0.721341,0.177363,0.970365,0.609631,0.635704,0.190236,0.799592,0.805937,0.490402,0.888333,0.76532,0.118858,0.494985,0.302456,0.608778,0.213976,0.276598,0.247954,0.679231,0.792116,0.140141,0.952418,0.448255,0.0454168,0.777805,0.979945,0.92748,0.650443,0.464181,0.660279,0.0410864,0.10457,0.829891,0.0701505,0.935878,0.957657,0.61364,0.607548,0.465497,0.665834,0.698727,0.900715,0.470911,0.24513,0.164622,0.563725,0.572112,0.83011,0.46906,0.454531,0.576805,0.526973,0.929254,0.33179,0.596508,0.965501,0.0879082,0.485108,0.304418,0.213702,0.0693069,0.683547,0.0449831,0.89065,0.500493,0.29075,0.899053,0.78133,0.616084,0.843206,0.606664,0.0146348,0.985187,0.808782,0.778073,0.875538,0.162989,0.610366,0.273681,0.340503,0.797953,0.57672,0.7218,0.469996,0.0144672,0.0641609,0.470587,0.644742,0.551549,0.93695,0.0189377,0.706513,0.527879,0.975284,0.360641,0.295186,0.0420492,0.837011,0.976554,0.721418,0.0717984,0.705397,0.757027,0.839668,0.258417,0.721858,0.0388698,0.612974,0.462393,0.163574,0.222287,0.43967,0.115092,0.0247857,0.953599,0.140913,0.572086,0.00158054,0.150163,0.359153,0.926709,0.194857,0.273198,0.667879,0.253783,0.498889,0.50581,0.314049,0.813381,0.39245,0.952991,0.216813,0.860843,0.438487,0.0808619,0.018945,0.103033,0.244766,0.400082,0.233312,0.513502,0.0446298,0.394362,0.0493482,0.603622,0.262035,0.955467,0.909132,0.161781,0.391487,0.540151,0.973515,0.335936,0.65145,0.897071,0.876187,0.229986,0.29137,0.503473,0.565419,0.96822,0.167302,0.145992,0.920597,0.705672,0.811179,0.757631,0.597047,0.744398,0.759217,0.775868,0.740381,0.311217,0.63517,0.510424,0.77534,0.978327,0.635975,0.684401,0.167658,0.667709,0.59642,0.0610412,0.116182,0.34798,0.891905,0.580801,0.163394,0.395201,0.536956,0.711217,0.858666,0.364114,0.365382,0.0805072,0.940651,0.00835913,0.699053,0.470646,0.68368,0.358501,0.890242,0.334771,0.293294,0.822411,0.731005,0.641743,0.717596,0.838618,0.467063,0.52567,0.643229,0.0742377,0.473993,0.831961,0.451765,0.189992,0.777296,0.643092,0.0929273,0.290806,0.32258,0.357692,0.805991,0.63668,0.424375,0.46163,0.419901,0.602753,0.120806,0.275729,0.794819,0.454511,0.367611,0.0307353,0.199099,0.943102,0.78003,0.468005,0.0988301,0.825441,0.484702,0.424601,0.526692,0.793378,0.937696,0.913352,0.832949,0.778868,0.0545508,0.0410448,0.0667571,0.137053,0.975715,0.241123,0.00263363,0.75674,0.892618,0.737905,0.963192,0.418448,0.775589,0.3372,0.624803,0.207796,0.638177,0.160012,0.0994332,0.0646356,0.299908,0.717618,0.474231,0.640493,0.119551,0.774519,0.0709646,0.520497,0.589995,0.64396,0.836511,0.292398,0.782826,0.556449,0.673616,0.951215,0.753131,0.179929,0.652247,0.556325,0.520468,0.172312,0.78803,0.851863,0.08474,0.700303,0.103659,0.528831,0.209217,0.804056,0.652702,0.662128,0.697515,0.185683,0.197976,0.404296,0.15652,0.763226,0.849268,0.511533,0.00459266,0.618157,0.260516,0.92266,0.203638,0.279519,0.149528,0.336002,0.45117,0.640204,0.834196,0.235249,0.0926576,0.382534,0.483966,0.199025,0.117296,0.294012,0.858322,0.116825,0.95666,0.253008,0.34693,0.567232,0.505271,0.82225,0.146166,0.990259,0.978284,0.825263,0.894111,0.295165,0.866513,0.837903,0.768629,0.203117,0.812805,0.280897,0.284619,0.395393,0.512397,0.0652177,0.500986,0.481702,0.681267,0.760867,0.141934,0.240737,0.558083,0.57232,0.275951,0.336294,0.294379,0.233862,0.0241689,0.719799,0.986359,0.0846781,0.270285,0.375483,0.0279937,0.449475,0.212409,0.435618,0.131903,0.878861,0.0102894,0.0718066,0.472789,0.966224,0.43721,0.730139,0.736736,0.99154,0.494266,0.752387,0.749296,0.463068,0.70473,0.243113,0.806989,0.196113,0.857555,0.168189,0.490216,0.449223,0.987418,0.636247,0.0402662,0.795169,0.816538,0.472405,0.604968,0.701742,0.490983,0.78421,0.187301,0.582418,0.705178,0.468953,0.485769,0.364948,0.0137324,0.37148,0.780587,0.0450117,0.838891,0.695093,0.602409,0.307484,0.551579,0.316735,0.429764,0.299385,0.976076,0.755673,0.278196,0.432748,0.513947,0.0285572,0.413947,0.260208,0.294314,0.292708,0.341012,0.205973,0.951124,0.775482,0.253807,0.638858,0.0725996,0.997381,0.31336,0.707921,0.260544,0.51075,0.140356,0.399213,0.500356,0.85194,0.972732,0.771531,0.0357614,0.189279,0.231207,0.503506,0.167896,0.603901,0.688163,0.287406,0.146271,0.680931,0.215519,0.190148,0.0366881,0.0270892,0.216489,0.374126,0.842077,0.0972779,0.440449,0.797725,0.726219,0.58538,0.623772,0.26238,0.333249,0.587738,0.519835,0.441521,0.502402,0.833935,0.603455,0.251121,0.234934,0.780308,0.839647,0.103164,0.203688,0.973155,0.275383,0.110598,0.153881,0.295847,0.194063,0.877006,0.98829,0.971893,0.269238,0.628825,0.388397,0.267209,0.996703,0.117169,0.248716,0.458138,0.0424641,0.987557,0.594226,0.590763,0.668959,0.632157,0.695023,0.418863,0.581139,0.0812482,0.11067,0.858313,0.828161,0.232918,0.0405206,0.84814,0.72367,0.995549,0.333298,0.226415,0.494873,0.338391,0.176167,0.768254,0.702854,0.571692,0.232021,0.543594,0.402124,0.458648,0.0613312,0.0265241,0.19026,0.0952922,0.265137,0.994694,0.0664074,0.803668,0.294886,0.668236,0.650909,0.484281,0.378542,0.620216,0.721063,0.796666,0.205207,0.301446,0.550878,0.646477,0.284088,0.841421,0.0353147,0.413078,0.0199602,0.661806,0.537201,0.134796,0.0160007,0.232592,0.653686,0.282351,0.532401,0.468834,0.549699,0.400863,0.588777,0.889249,0.571048,0.693482,0.619709,0.371267,0.0467113,0.347502,0.634485,0.452642,0.981087,0.0350498,0.157573,0.532919,0.0423072,0.36453,0.294882,0.344635,0.454088,0.205953,0.498558,0.699879,0.73432,0.548339,0.982037,0.590395,0.404991,0.769287,0.326769,0.0896901,0.96972,0.0150425,0.298755,0.00492483,0.926921,0.85089,0.69043,0.158352,0.754184,0.6918,0.375734,0.904299,0.335489,0.133397,0.782284,0.836703,0.418666,0.87437,0.310078,0.918916,0.854771,0.804839,0.363921,0.635548,0.323675,0.356755,0.776888,0.949778,0.831089,0.65017,0.121746,0.961458,0.544557,0.497395,0.0118513,0.903822,0.196788,0.633978,0.988243,0.78422,0.147654,0.645036,0.443571,0.133352,0.426982,0.912271,0.747604,0.0768203,0.156946,0.145478,0.306949,0.324523,0.601694,0.578303,0.579128,0.0512136,0.449059,0.264996,0.953225,0.225947,0.613887,0.54242,0.5165,0.415208,0.908108,0.42045,0.523313,0.715108,0.311042,0.804472,0.304551,0.896127,0.149814,0.495044,0.452233,0.755679,0.675453,0.557521,0.580514,0.698246,0.282428,0.178403,0.146285,0.471059,0.933969,0.394777,0.383255,0.367642,0.821204,0.753188,0.567287,0.860919,0.0315623,0.349517,0.581433,0.172996,0.249687,0.363622,0.875313,0.22011,0.741968,0.16906,0.344542,0.936815,0.170744,0.438494,0.748849,0.417966,0.050931,0.765442,0.171667,0.927341,0.270066,0.532696,0.425967,0.181891,0.778242,0.260986,0.39653,0.0440712,0.506305,0.650943,0.230728,0.767749,0.519701,0.87656,0.709327,0.774158,0.0856779,0.424556,0.3985,0.695341,0.485586,0.043375,0.114052,0.666374,0.241977,0.708939,0.607829,0.264091,0.671937,0.295853,0.407646,0.34604,0.0669802,0.791164,0.218077,0.174107,0.31107,0.813389,0.752905,0.553287,0.0121316,0.58792,0.431152,0.973417,0.135033,0.925995,0.378431,0.437238,0.955433,0.00397795,0.404243,0.335305,0.0446902,0.873415,0.410718,0.0526958,0.861815,0.599925,0.317588,0.0721248,0.340852,0.670978,0.86249,0.974449,0.443968,0.516717,0.109524,0.427939,0.901185,0.0904677,0.0413785,0.613366,0.592851,0.29504,0.18294,0.884207,0.449041,0.511621,0.834002,0.817517,0.877673,0.557329,0.641065,0.80446,0.0515664,0.897236,0.843387,0.424637,0.269794,0.520051,0.805724,0.259941,0.558773,0.137495,0.582172,0.215249,0.592462,0.0439814,0.721166,0.196253,0.0722147,0.484461,0.77437,0.374301,0.614128,0.149145,0.830665,0.420248,0.0580588,0.905946,0.0592954,0.275347,0.790901,0.926678,0.57698,0.737849,0.0793496,0.720561,0.289212,0.242604,0.426434,0.253689,0.526938,0.325201,0.685549,0.920444,0.832069,0.966872,0.659334,0.792829,0.379301,0.0309154,0.659202,0.640793,0.643296,0.19435,0.765614,0.575352,0.945135,0.834302,0.530935,0.43252,0.747181,0.967996,0.729323,0.456407,0.209429,0.790438,0.467822,0.394724,0.903735,0.639009,0.404115,0.651117,0.924389,0.740923,0.738775,0.66251,0.460265,0.348197,0.0989926,0.599627,0.310411,0.543702,0.258359,0.609807,0.183847,0.194689,0.814065,0.48357,0.696496,0.800326,0.88977,0.885788,0.898976,0.885337,0.279518,0.924071,0.808727,0.675039,0.693543,0.182376,0.618172,0.224935,0.369779,0.851076,0.0929143,0.271646,0.387254,|0.692496,0.146818,0.401219,0.812414,0.160142,0.683942,0.926154,0.896586,0.25774,0.308,0.940124,0.0409656,0.908158,0.168966,0.864199,0.849368,0.774109,0.184391,0.0574343,0.59034,0.694625,0.675321,0.102531,0.890804,0.777649,0.584201,0.348468,0.383904,0.956732,0.904956,0.702035,0.855398,0.985399,0.453653,0.293954,0.329467,0.982621,0.980054,0.00923961,0.470934,0.57987,0.257892,0.351389,0.0919049,0.937576,0.578026,0.158818,0.667068,0.102299,0.144796,0.680365,0.306684,0.562987,0.335122,0.974816,0.896127,0.536337,0.931266,0.923725,0.549649,0.139738,0.414586,0.317719,0.453654,0.0824521,0.741729,0.753916,0.0829806,0.424555,0.79242,0.626472,0.192971,0.468834,0.412417,0.745366,0.100817,0.0110798,0.0600663,0.799181,0.162167,0.161131,0.0959303,0.212674,0.537403,0.0520564,0.236603,0.503302,0.72991,0.394628,0.742403,0.573172,0.74803,0.939493,0.346409,0.370536,0.305291,0.300561,0.255577,0.257102,0.228979,0.903185,0.178703,0.775978,0.694279,0.365578,0.690977,0.532077,0.348984,0.428629,0.337107,0.698212,0.00735027,0.410003,0.151893,0.972639,0.152318,0.143577,0.0525438,0.254646,0.257494,0.927834,0.679686,0.375737,0.1068,0.224359,0.245248,0.697006,0.282027,0.133511,0.477991,0.0141175,0.640514,0.680962,0.101321,0.104714,0.889547,0.314884,0.729002,0.497374,0.00973642,0.898221,0.293839,0.546373,0.241031,0.892989,0.41537,0.882029,0.339997,0.595955,0.893353,0.93035,0.802275,0.952999,0.461333,0.241385,0.862109,0.393529,0.35828,0.853056,0.391557,0.339333,0.197889,0.198737,0.758921,0.611608,0.259145,0.416264,0.099198,0.769162,0.58331,0.489564,0.735312,0.252441,0.157395,0.83139,0.0298769,0.715659,0.428421,0.83001,0.484045,0.199495,0.413473,0.245197,0.919802,0.885277,0.93932,0.631917,0.909196,0.83559,0.734187,0.961121,0.342737,0.363409,0.244175,0.728957,0.742861,0.837587,0.365103,0.963064,0.652695,0.802178,0.136769,0.887189,0.909723,0.206475,0.0791203,0.586116,0.804863,0.917586,0.188536,0.416162,0.881049,0.114294,0.584922,0.104514,0.0976335,0.559975,0.20108,0.750006,0.482689,0.333746,0.683895,0.685041,0.516691,0.511468,0.572303,0.246679,0.506519,0.312211,0.0724978,0.180486,0.301641,0.977271,0.645882,0.946433,0.788431,0.345982,0.694936,0.986542,0.576157,0.176308,0.410975,0.121972,0.706518,0.94093,0.211369,0.463713,0.587287,0.775741,0.369766,0.774707,0.974181,0.00249678,0.0835465,0.239058,0.088701,0.531571,0.347666,0.523101,0.88622,0.973786,0.142529,0.702673,0.866423,0.464325,0.555244,0.836248,0.822499,0.997238,0.565167,0.199154,0.456084,0.361303,0.255562,0.627362,0.0997024,0.725807,0.264219,0.11039,0.846933,0.51204,0.521963,0.599826,0.343822,0.680745,0.864679,0.0650153,0.572057,0.763817,0.381706,0.551667,0.336447,0.798029,0.0290923,0.40062,0.891981,0.0986882,0.865186,0.669816,0.515418,0.37954,0.084071,0.788895,0.376656,0.505703,0.282289,0.24249,0.517959,0.845757,0.620955,0.44878,0.632246,0.316788,0.838662,0.210052,0.0504346,0.874268,0.571407,0.683209,0.0182229,0.413015,0.31807,0.888937,0.977938,0.574961,0.0420807,0.154941,0.191507,0.443005,0.157831,0.420818,0.603736,0.939679,0.650468,0.463048,0.588865,0.364266,0.422496,0.279246,0.130117,0.219681,0.75541,0.107795,0.283888,0.982749,0.968008,0.614444,0.867843,0.0608175,0.469027,0.444241,0.0210707,0.570964,0.697826,0.453213,0.684986,0.629909,0.198915,0.316472,0.721534,0.895995,0.145118,0.246744,0.831138,0.0492765,0.676555,0.804858,0.502084,0.974312,0.117759,0.658493,0.829697,0.00188386,0.745969,0.292007,0.542349,0.318714,0.292577,0.826445,0.97251,0.781097,0.306206,0.669684,0.758774,0.583505,0.841693,0.528152,0.264432,0.851974,0.978015,0.419771,0.598748,0.93129,0.392488,0.534417,0.82537,0.665845,0.319348,0.669815,0.462168,0.861885,0.649043,0.882729,0.868108,0.957275,0.942384,0.727947,0.227663,0.379783,0.270533,0.630155,0.619871,0.855855,0.261469,0.955695,0.132525,0.46814,0.261919,0.0969186,0.417643,0.688686,0.21273,0.187017,0.878131,0.320405,0.54163,0.0935982,0.896934,0.0534272,0.253379,0.754522,0.263244,0.858253,0.836861,0.584069,0.6797,0.583151,0.671006,0.599098,0.779163,0.559509,0.985157,0.667788,0.899106,0.354664,0.259585,0.416025,0.17712,0.913563,0.800987,0.758553,0.422083,0.410351,0.450495,0.945836,0.431283,0.474645,0.464676,0.543873,0.413749,0.76737,0.715641,0.518273,0.702311,0.412241,0.640357,0.394399,0.168557,0.811959,0.195272,0.261576,0.695775,0.0270008,0.751264,0.126905,0.471016,0.390703,0.505839,0.422677,0.794452,0.940059,0.046995,0.574506,0.700013,0.906432,0.39119,0.639061,0.231337,0.526964,0.913223,0.737661,0.579914,0.606661,0.259516,0.0636512,0.728493,0.171061,0.433764,0.106811,0.0868098,0.358791,0.581231,0.561961,0.64857,0.25842,0.00676733,0.0966514,0.647568,0.446534,0.400123,0.790685,0.499199,0.832424,0.424883,0.626768,0.150891,0.690664,0.539865,0.450746,0.902974,0.802833,0.258441,0.340092,0.342866,0.213216,0.352652,0.267238,0.85118,0.91465,0.706506,0.263157,0.477099,0.81423,0.730008,0.791937,0.25662,0.0298529,0.197695,0.950852,0.394557,0.0765076,0.606859,0.39435,0.059227,0.640555,0.262622,0.803968,0.395152,0.66232,0.462423,0.121119,0.128305,0.723676,0.889413,0.344251,0.458386,0.995245,0.315674,0.158412,0.150568,0.311426,0.543722,0.267863,0.858271,0.169407,0.698824,0.129687,0.210695,0.639231,0.771872,0.0862473,0.241693,0.0174818,0.718785,0.614146,0.638954,0.838066,0.782948,0.735097,0.204509,0.496674,0.744969,0.041201,0.662953,0.442327,0.57074,0.206285,0.755388,0.472374,0.556026,0.557675,0.485523,0.697975,0.389195,0.219606,0.512336,0.473384,0.679017,0.0896872,0.131204,0.841398,0.719481,0.993485,0.979918,0.345425,0.357985,0.530965,0.256487,0.0629275,0.692889,0.703555,0.277505,0.892908,0.0185326,0.478079,0.462407,0.118588,0.927752,0.445063,0.105173,0.0549133,0.968604,0.0577027,0.16361,0.785257,0.562181,0.261828,0.859683,0.470122,0.182711,0.403625,0.343575,0.243913,0.700964,0.253475,0.766521,0.987692,0.614727,0.485397,0.958434,0.886916,0.983419,0.665103,0.534869,0.0783395,0.0365734,0.415138,0.642319,0.693096,0.266627,0.597295,0.657038,0.0388794,0.694894,0.453529,0.35526,0.103066,0.533152,0.933133,0.844933,0.686909,0.738345,0.541851,0.55434,0.0580505,0.810098,0.28751,0.502465,0.0950281,0.746773,0.638111,0.397174,0.257219,0.415321,0.722419,0.474981,0.710983,0.956678,0.0783166,0.0609858,0.518325,0.0743362,0.622948,0.791578,0.242433,0.487254,0.0635757,0.446882,0.585583,0.751717,0.913604,0.496419,0.684879,0.85434,0.288778,0.500054,0.745709,0.650512,0.653778,0.765252,0.925857,0.890195,0.625769,0.653371,0.454197,0.42549,0.991335,0.118741,0.438159,0.999049,0.210884,0.100112,0.831773,0.656823,0.707636,0.202994,0.815875,0.142628,0.321143,0.953942,0.581912,0.772607,0.50129,0.25283,0.355935,0.870309,0.870752,0.299723,0.754085,0.460593,0.332771,0.724539,0.643587,0.34604,0.332436,0.742383,0.660346,0.528232,0.355039,0.872795,0.526326,0.0383607,0.429417,0.867193,0.364568,0.8224,0.234234,0.827709,0.912062,0.595423,0.314605,0.963373,0.529012,0.631905,0.205153,0.52707,0.797176,0.61911,0.39738,0.994322,0.239858,0.117536,0.175763,0.750547,0.7843,0.25232,0.727725,0.846495,0.160858,0.272502,0.319916,0.622906,0.785883,0.79786,0.409652,0.0888295,0.152966,0.00813293,0.878868,0.938041,0.0999889,0.42642,0.659179,0.732267,0.609389,0.137486,0.998075,0.0761929,0.691136,0.28932,0.088949,0.842007,0.827696,0.41749,0.98871,0.87528,0.806474,0.517258,0.589172,0.434942,0.113684,0.425954,0.406587,0.447551,0.839079,0.167781,0.875786,0.592516,0.993517,0.387364,0.0104815,0.231873,0.107967,0.729363,0.757414,0.692918,0.0456848,0.883327,0.769908,0.482588,0.682436,0.0160348,0.0123819,0.61451,0.612864,0.278789,0.470834,0.884626,0.637054,0.846228,0.201129,0.972829,0.0501766,0.545682,0.191556,0.480433,0.206641,0.0858169,0.242587,0.694156,0.739047,0.18679,0.0189606,0.0797389,0.940663,0.8697,0.0927184,0.434284,0.173615,0.997104,0.560124,0.360156,0.81304,0.304804,0.830749,0.37942,0.763743,0.248889,0.239005,0.618758,0.854337,0.654068,0.255131,0.201295,0.669836,0.847522,0.295991,0.252546,0.216138,0.963242,0.504438,0.304416,0.541126,0.45496,0.221331,0.904982,0.633987,0.988489,0.819032,0.20172,0.867145,0.866536,0.296576,0.983515,0.300875,0.432661,0.887871,0.0669755,0.525971,0.537951,0.948493,0.559859,0.517412,0.748352,0.32307,0.653538,0.733772,0.357275,0.876629,0.282339,0.0463818,0.687047,0.105014,0.0890222,0.963344,0.431869,0.966706,0.0565024,0.32599,0.953852,0.413288,0.891213,0.605541,0.87037,0.793019,0.136563,0.142433,0.776191,0.301993,0.333713,0.883299,0.40234,0.536387,0.294772,0.800199,0.881857,0.3938,0.428622,0.972034,0.50205,0.526803,0.0855735,0.386266,0.465804,0.22418,0.0163205,0.29197,0.641078,0.691996,0.408085,0.19894,0.985041,0.836645,0.17875,0.110444,0.408041,0.276419,0.483418,0.0796605,0.762144,0.915375,0.65157,0.0062719,0.51438,0.156156,0.914897,0.45128,0.7381,0.718485,0.939438,0.964607,0.874649,0.613389,0.460788,0.158423,0.167105,0.255719,0.820229,0.564239,0.138703,0.287354,0.101621,0.963076,0.556205,0.428614,0.893097,0.423867,0.277532,0.780912,0.495909,0.456979,0.482976,0.3188,0.871608,0.0879958,0.737068,0.531411,0.626718,0.158647,0.383474,0.0928814,0.291151,0.978643,0.0496837,0.211798,0.582878,0.573574,0.843202,0.756249,0.0127323,|0.755624,0.553565,0.216356,0.695154,0.161694,0.403116,0.114685,0.645185,0.984743,0.208044,0.932158,0.122027,0.0403482,0.212053,0.910372,0.60692,0.725181,0.339145,0.728868,0.122389,0.570717,0.388653,0.232719,0.676455,0.122952,0.0288173,0.103601,0.0322216,0.894435,0.391538,0.741702,0.227025,0.096917,0.868156,0.932318,0.485775,0.0870349,0.733111,0.592066,0.556566,0.917913,0.505533,0.75207,0.683132,0.72697,0.0473946,0.744343,0.583948,0.279497,0.22822,0.302768,0.175029,0.567741,0.12021,0.701623,0.768837,0.21762,0.752496,0.734462,0.314515,0.615614,0.630649,0.775349,0.0922269,0.756759,0.770258,0.699206,0.736525,0.797482,0.0959776,0.218616,0.896242,0.428593,0.0442013,0.19297,0.134214,0.865233,0.193639,0.899562,0.373313,0.829071,0.311171,0.653073,0.366403,0.165197,0.56728,0.446819,0.505237,0.18119,0.715516,0.787332,0.929962,0.00671309,0.907255,0.614797,0.648466,0.278836,0.504072,0.0819121,0.275589,0.710519,0.493643,0.647738,0.889619,0.990757,0.641837,0.143483,0.954286,0.753097,0.404971,0.25652,0.00127411,0.981511,0.224201,0.860848,0.730565,0.610947,0.725077,0.107776,0.85851,0.429674,0.856212,0.69999,0.644038,0.791472,0.119596,0.413443,0.79794,0.0991365,0.194126,0.606674,0.844458,0.344291,0.277538,0.492134,0.956336,0.278331,0.0305095,0.259222,0.0848764,0.757661,0.66684,0.770101,0.673127,0.687368,0.154234,0.975873,0.168745,0.170552,0.748569,0.0469311,0.451463,0.504103,0.598974,0.114572,0.419787,0.330417,0.145769,0.509229,0.506028,0.524725,0.611526,0.286368,0.905658,0.466504,0.334609,0.376383,0.408452,0.770633,0.311025,0.0467289,0.156465,0.0426784,0.706601,0.720997,0.920337,0.892718,0.140846,0.314617,0.423705,0.786158,0.970909,0.0135732,0.113546,0.679292,0.0161661,0.490862,0.402668,0.489345,0.911558,0.547031,0.411227,0.597725,0.425319,0.512798,0.467616,0.76665,0.449249,0.479008,0.32797,0.66553,0.174005,0.85164,0.568422,0.271649,0.0577056,0.562142,0.226266,0.388157,0.64092,0.56208,0.765398,0.910444,0.835378,0.411696,0.457769,0.577428,0.507421,0.35078,0.654688,0.226068,0.840743,0.947892,0.0517235,0.880831,0.722525,0.430963,0.403875,0.41053,0.954645,0.696584,0.801752,0.00801665,0.652944,0.95686,0.393659,0.985512,0.240965,0.0427096,0.94445,0.683283,0.649636,0.2741,0.0683063,0.470579,0.718664,0.130957,0.387042,0.93167,0.0594082,0.470787,0.517567,0.89236,0.530869,0.0630854,0.480331,0.0240002,0.337467,0.200295,0.692661,0.765328,0.11378,0.954618,0.100095,0.0865972,0.825278,0.102031,0.551375,0.10843,0.533055,0.215575,0.956219,0.842955,0.875994,0.949141,0.273907,0.575889,0.940988,0.0571586,0.284931,0.123626,0.702744,0.406787,0.211795,0.251494,0.69511,0.742927,0.0175212,0.403434,0.981642,0.143075,0.966651,0.970704,0.200327,0.411209,0.833605,0.904297,0.734483,0.176254,0.988897,0.305964,0.708177,0.750382,0.751759,0.890887,0.206528,0.741222,0.391141,0.153763,0.137774,0.715472,0.175806,0.0958243,0.659996,0.189919,0.214445,0.90387,0.746557,0.14179,0.358576,0.10949,0.584375,0.444112,0.500268,0.657414,0.911335,0.916597,0.0439492,0.903544,0.923775,0.697735,0.102667,0.835636,0.705931,0.635995,0.880708,0.305763,0.586806,0.384647,0.776957,0.136547,0.906095,0.420995,0.126971,0.918323,0.240167,0.31577,0.879108,0.745556,0.850417,0.0347801,0.948129,0.411406,0.588545,0.937427,0.302166,0.792753,0.36933,0.974208,0.275036,0.447114,0.66458,0.523324,0.0458618,0.57725,0.252467,0.595958,0.692399,0.42754,0.120058,0.455387,0.582982,0.290034,0.404928,0.651031,0.996023,0.200085,0.208578,0.479154,0.0121704,0.193156,0.362143,0.233077,0.820453,0.902991,0.610888,0.178236,0.585371,0.18915,0.0310361,0.184985,0.187684,0.610937,0.342229,0.471131,0.744656,0.529881,0.675292,0.79574,0.294626,0.869942,0.376791,0.0791174,0.424034,0.0586538,0.0623294,0.0784423,0.333273,0.309045,0.922906,0.790857,0.870931,0.92365,0.922337,0.303422,0.365737,0.658743,0.137188,0.109709,0.614174,0.718701,0.158943,0.311457,0.823155,0.383515,0.321505,0.390112,0.791183,0.823112,0.24,0.20551,0.185863,0.985024,0.601711,0.178852,0.910018,0.578088,0.663084,0.554535,0.966807,0.841049,0.992184,0.0750751,0.189414,0.210653,0.826901,0.115677,0.442904,0.872684,0.507705,0.798708,0.73543,0.0962808,0.23886,0.788773,0.862512,0.0198458,0.721109,0.822778,0.528737,0.537826,0.0660164,0.152567,0.539105,0.0402022,0.695955,0.765947,0.897498,0.377108,0.100038,0.812327,0.531937,0.489029,0.0189737,0.865176,0.602844,0.333762,0.419683,0.133485,0.860201,0.466494,0.0805159,0.765864,0.433696,0.171939,0.185152,0.838421,0.107938,0.498445,0.642703,0.874188,0.280373,0.20038,0.628545,0.963918,0.289447,0.726447,0.674544,0.361255,0.0213307,0.146863,0.143511,0.789759,0.985923,0.943492,0.562537,0.842899,0.703349,0.189118,0.163701,0.719019,0.231747,0.281518,0.551578,0.0464994,0.158879,0.918235,0.879579,0.703993,0.247836,0.579647,0.358611,0.106384,0.520256,0.569145,0.711869,0.93532,0.0731584,0.0213432,0.463655,0.345346,0.238879,0.0879208,0.690764,0.223459,0.278441,0.560107,0.221921,0.089383,0.427256,0.922575,0.876963,0.282585,0.750254,0.643163,0.388909,0.378095,0.477081,0.802549,0.177549,0.0559298,0.951866,0.423671,0.472651,0.346401,0.0523766,0.83607,0.120593,0.0319005,0.0249203,0.739904,0.748278,0.742343,0.94701,0.885023,0.567951,0.178598,0.28035,0.966832,0.618763,0.482973,0.360731,0.776594,0.943638,0.868711,0.80424,0.872335,0.629354,0.563393,0.887791,0.101182,0.752287,0.31333,0.529273,0.729935,0.0986359,0.685424,0.159882,0.748996,0.90527,0.766693,0.923826,0.784335,0.295196,0.40096,0.911771,0.657112,0.932094,0.863469,0.452107,0.196313,0.550426,0.531822,0.404834,0.345278,0.528702,0.742355,0.0568737,0.764904,0.463269,8.89897e-05,0.0961747,0.0865389,0.0482231,0.22231,0.607059,0.867707,0.514311,0.285457,0.479907,0.957681,0.706948,0.587017,0.0957443,0.246599,0.279125,0.784824,0.562732,0.973119,0.606143,0.0624316,0.0187365,0.275594,0.910266,0.288393,0.960599,0.808567,0.602524,0.756937,0.260261,0.190846,0.761971,0.505514,0.302921,0.0766413,0.770954,0.80861,0.275565,0.178295,0.157669,0.7289,0.948354,0.721728,0.210345,0.753602,0.0622445,0.679915,0.772748,0.586351,0.451032,0.972724,0.467026,0.459155,0.397257,0.221416,0.0998971,0.866947,0.0684054,0.941557,0.00478345,0.785456,0.856278,0.550773,0.279375,0.361054,0.678189,0.222339,0.0988643,0.0981525,0.708426,0.146038,0.659781,0.89595,0.787896,0.827763,0.174025,0.416914,0.0292547,0.807302,0.143369,0.163323,0.208176,0.143532,0.367096,0.787383,0.0504747,0.555411,0.679893,0.916692,0.535288,0.129489,0.330593,0.43511,0.0184011,0.842365,0.706284,0.152967,0.620061,0.21601,0.122373,0.81254,0.145974,0.901062,0.777634,0.662451,0.796494,0.00228453,0.405332,0.646244,0.423943,0.98305,0.981626,0.0631987,0.972076,0.279094,0.00302821,0.445864,0.144282,0.893214,0.580935,0.392565,0.966226,0.383347,0.720381,0.0640372,0.548576,0.225303,0.673221,0.747821,0.316943,0.00672048,0.134155,0.469518,0.129661,0.640006,0.538823,0.312909,0.132626,0.130306,0.592058,0.141651,0.34743,0.532957,0.746846,0.0905779,0.134756,0.261967,0.758813,0.496069,0.460351,0.417907,0.985972,0.954035,0.383527,0.503362,0.964249,0.977558,0.358343,0.708905,0.13049,0.0880035,0.679364,0.939857,0.356804,0.363086,0.346046,0.446724,0.630618,0.601043,0.137479,0.389843,0.633325,0.711365,0.846606,0.718699,0.511263,0.650017,0.371577,0.582589,0.634246,0.184439,0.934789,0.110552,0.00878048,0.04143,0.383281,0.425417,0.302271,0.722235,0.2541,0.0902331,0.434246,0.358072,0.732005,0.282529,0.245601,0.0747729,0.26576,0.434221,0.411076,0.77498,0.19941,0.354876,0.376131,0.15511,0.0899713,0.223468,0.852388,0.553994,0.138772,0.649694,0.401225,0.474271,0.909218,0.0403133,0.648111,0.929409,0.803092,0.713564,0.499267,0.902384,0.728572,0.897057,0.432682,0.798926,0.425524,0.443095,0.618373,0.602674,0.153801,0.0989842,0.623464,0.778319,0.538772,0.777853,0.339662,0.342922,0.372429,0.873915,0.351087,0.209123,0.767907,0.298654,0.415635,0.763219,0.840949,0.841549,0.0112397,0.923417,0.769144,0.318957,0.467084,0.316294,0.0546658,0.269455,0.0983489,0.695431,0.446431,0.197602,0.0394232,0.426627,0.360745,0.598596,0.92146,0.920787,0.695749,0.168148,0.318913,0.424092,0.801154,0.236171,0.995752,0.490612,0.0841146,0.241133,0.579603,0.743831,0.599329,0.975816,0.409109,0.31682,0.505701,0.0663748,0.676898,0.340015,0.444161,0.560089,0.230979,0.543406,0.100642,0.0506833,0.366155,0.722705,0.00781769,0.755825,0.934902,0.0956526,0.042082,0.757063,0.136757,0.0387399,0.152986,0.130325,0.175105,0.81244,0.758107,0.539991,0.641337,0.0885237,0.846904,0.568758,0.672011,0.775131,0.602588,0.380393,0.239339,0.759274,0.748456,0.861479,0.513137,0.521938,0.329836,0.896278,0.0858663,0.83592,0.751341,0.317922,0.346881,0.186153,0.941712,0.153197,0.360994,0.492308,0.464953,0.900407,0.745137,0.0842834,0.566034,0.0394993,0.111949,0.809359,0.955323,0.0728045,0.902545,0.525385,0.978546,0.0512311,0.895113,0.61186,0.745072,0.324707,0.52955,0.903643,0.91034,0.696226,0.222727,0.555355,0.0646598,0.523839,0.118597,0.560921,0.98448,0.221171,0.105303,0.17317,0.649672,0.812775,0.89757,0.211597,0.461004,0.881132,0.752208,0.33187,0.969103,0.19977,0.390321,0.0508816,0.600113,0.819817,0.906031,0.600831,0.197363,0.964862,0.953596,0.827289,0.0357334,0.737521,0.962561,0.199575,0.105663,|0.741889,0.252643,0.270207,0.00682569,0.081089,0.42849,0.426546,0.499783,0.989606,0.73998,0.571923,0.36184,0.20658,0.47703,0.996397,0.419647,0.0320173,0.912712,0.707603,0.896293,0.205724,0.987629,0.354363,0.0345485,0.570943,0.199135,0.685461,0.213162,0.461863,0.0865573,0.987941,0.491338,0.137828,0.129332,0.308614,0.932128,0.343787,0.36061,0.670421,0.943541,0.381759,0.561644,0.885287,0.860645,0.456771,0.293575,0.314436,0.58452,0.72816,0.47234,0.116089,0.0723127,0.907399,0.871974,0.857908,0.701311,0.50578,0.737976,0.493426,0.939995,0.297329,0.62699,0.692973,0.297664,0.50093,0.176998,0.220059,0.408514,0.118906,0.624329,0.383603,0.595468,0.147282,0.819289,0.897101,0.270562,0.719544,0.561468,0.850253,0.0487951,0.788281,0.437188,0.860941,0.600772,0.507606,0.358064,0.502541,0.503792,0.444882,0.620294,0.669408,0.853777,0.174324,0.96452,0.116323,0.596761,0.570335,0.819066,0.758599,0.13815,0.919554,0.824847,0.457374,0.0541258,0.305126,0.969822,0.147767,0.835618,0.469233,0.262123,0.382326,0.0633774,0.468645,0.445378,0.00944316,0.155032,0.579998,0.669546,0.109813,0.526858,0.782408,0.666332,0.365137,0.695269,0.397654,0.0768144,0.963802,0.653106,0.716886,0.230722,0.954288,0.621828,0.0639045,0.595413,0.888795,0.835992,0.543816,0.592549,0.82973,0.0265515,0.688317,0.176418,0.0244496,0.188111,0.545886,0.0986592,0.290322,0.666395,0.184745,0.705709,0.594188,0.651954,0.669238,0.906784,0.663569,0.852512,0.000274479,0.453274,0.341778,0.902633,0.231392,0.166237,0.363578,0.131743,0.937592,0.785564,0.945415,0.449101,0.334757,0.591044,0.64917,0.422838,0.494169,0.814361,0.580552,0.894317,0.147208,0.720576,0.706006,0.955971,0.487509,0.619243,0.279605,0.676531,0.912106,0.332398,0.0644454,0.987431,0.105046,0.995666,0.517099,0.83067,0.929693,0.748836,0.796657,0.163614,0.23445,0.686204,0.50436,0.00226223,0.642664,0.323556,0.956405,0.762579,0.700769,0.767301,0.56194,0.975292,0.801498,0.724255,0.450788,0.788887,0.230211,0.672612,0.198418,0.117949,0.291854,0.185382,0.0500372,0.143866,0.78858,0.413723,0.876319,0.128343,0.654418,0.711346,0.69482,0.758713,0.413215,0.527305,0.441833,0.946963,0.691699,0.326525,0.793106,0.464361,0.875196,0.213357,0.628,0.406262,0.766919,0.377959,0.514884,0.117307,0.87305,0.200234,0.965556,0.940107,0.0153412,0.683024,0.63778,0.739835,0.852919,0.815854,0.338224,0.638398,0.90951,0.43793,0.670975,0.141867,0.279404,0.792503,0.612588,0.841908,0.570795,0.389238,0.40948,0.126339,0.79231,0.902999,0.969921,0.474717,0.920774,0.751738,0.763941,0.668178,0.291774,0.227923,0.0395682,0.635971,0.778156,0.100043,0.186527,0.981245,0.575943,0.850418,0.454226,0.859037,0.904927,0.136377,0.790273,0.911212,0.0229229,0.801634,0.879701,0.035364,0.0308076,0.368496,0.762636,0.779631,0.811395,0.606839,0.972112,0.216043,0.345277,0.916625,0.0840032,0.279423,0.548959,0.10341,0.611025,0.280972,0.71054,0.291189,0.959449,0.948865,0.387192,0.729091,0.630983,0.594149,0.12474,0.218532,0.154194,0.105572,0.737128,0.518031,0.179783,0.746112,0.421883,0.312226,0.798548,0.997387,0.131632,0.498776,0.699553,0.808568,0.420359,0.898844,0.0956826,0.612567,0.929872,0.912123,0.502234,0.408038,0.840571,0.479903,0.546061,0.0299246,0.375406,0.185797,0.750598,0.321985,0.57291,0.342868,0.853054,0.394082,0.849304,0.00512052,0.356786,0.925475,0.0350309,0.568745,0.190449,0.679811,0.401431,0.763817,0.72483,0.719128,0.156389,0.244844,0.92502,0.218561,0.159763,0.253528,0.326813,0.192242,0.0710798,0.913684,0.688111,0.478479,0.282758,0.313478,0.168602,0.019577,0.948184,0.549647,0.161713,0.991214,0.221336,0.463087,0.114874,0.73484,0.864278,0.462195,0.122443,0.605717,0.773165,0.945725,0.298053,0.357633,0.183939,0.558879,0.685956,0.506152,0.114007,0.169501,0.592279,0.911623,0.240519,0.880191,0.344837,0.281063,0.15459,0.596141,0.530978,0.757346,0.754627,0.694006,0.600164,0.973223,0.0254841,0.632695,0.709547,0.0707538,0.0742335,0.324023,0.389648,0.371748,0.937723,0.0113819,0.342579,0.967724,0.0547945,0.521785,0.0148827,0.57827,0.770533,0.645993,0.23897,0.670159,0.618592,0.954945,0.540186,0.47686,0.779109,0.0847546,0.0211333,0.359212,0.402581,0.454866,0.615537,0.411275,0.688372,0.517896,0.712992,0.445299,0.995335,0.284181,0.620517,0.418978,0.83461,0.266652,0.382056,0.380816,0.706721,0.420428,0.727397,0.585445,0.0053708,0.784722,0.150535,0.41636,0.29416,0.559411,0.467597,0.833523,0.719851,0.203784,0.0416781,0.914196,0.966229,0.243731,0.766177,0.546676,0.405153,0.310574,0.683453,0.98016,0.849026,0.91564,0.870005,0.813557,0.276916,0.861491,0.502724,0.543222,0.163252,0.363782,0.787074,0.265561,0.409381,0.463926,0.0852344,0.385831,0.895226,0.599167,0.117204,0.485504,0.356096,0.462874,0.186386,0.665937,0.288508,0.98154,0.312415,0.583939,0.923122,0.302047,0.251175,0.766496,0.878484,0.669773,0.467494,0.528882,0.796309,0.346587,0.0530179,0.894174,0.900637,0.599694,0.622214,0.351288,0.479454,0.764276,0.996042,0.671685,0.186971,0.126462,0.807199,0.798354,0.509128,0.584525,0.455486,0.906685,0.812521,0.387788,0.635617,0.302353,0.568893,0.598878,0.142594,0.271208,0.871839,0.85679,0.521045,0.208138,0.817155,0.808539,0.882632,0.731667,0.66466,0.65591,0.322389,0.245675,0.31919,0.69272,0.606353,0.860803,0.711287,0.84963,0.857299,0.618737,0.706948,0.267611,0.754213,0.181353,0.547968,0.187506,0.582376,0.196931,0.379393,0.0142087,0.0532993,0.926044,0.74408,0.988528,0.593475,0.89338,0.3498,0.260357,0.0681598,0.111352,0.221105,0.301,0.515993,0.696194,0.331103,0.594456,0.822496,0.382427,0.896269,0.130091,0.754796,0.545456,0.842666,0.850027,0.00212264,0.14863,0.58159,0.376355,0.877528,0.21693,0.682412,0.232552,0.407696,0.912061,0.253779,0.925814,0.554956,0.505204,0.599297,0.340353,0.265802,0.251779,0.702083,0.669745,0.91147,0.0802016,0.635,0.610734,0.0205433,0.872367,0.00175846,0.48063,0.56246,0.260836,0.961476,0.241948,0.988141,0.272103,0.627704,0.854646,0.694427,0.594406,0.715165,0.540652,0.0157751,0.637096,0.290186,0.196877,0.405747,0.884928,0.811743,0.165772,0.683692,0.746715,0.893369,0.213916,0.674582,0.221758,0.539145,0.817718,0.0428215,0.556016,0.301724,0.108377,0.133374,0.309051,0.902014,0.907041,0.62859,0.198154,0.247293,0.83539,0.924634,0.925934,0.768007,0.745924,0.768857,0.20697,0.239512,0.471651,0.362283,0.000757575,0.252319,0.603977,0.957445,0.818309,0.215055,0.810388,0.55544,0.511286,0.265372,0.340424,0.161195,0.142781,0.926928,0.348397,0.558918,0.566305,0.282158,0.0887465,0.0580025,0.626318,0.161486,0.911009,0.701406,0.726708,0.113207,0.798239,0.593237,0.232187,0.463576,0.746997,0.434382,0.114852,0.536824,0.422512,0.860795,0.856922,0.568444,0.880064,0.909301,0.426289,0.708472,0.0323188,0.200831,0.207626,0.78228,0.806883,0.0953879,0.615924,0.35606,0.327655,0.244597,0.847291,0.477624,0.947776,0.0220767,0.268317,0.563807,0.814232,0.34821,0.748828,0.942404,0.742207,0.689607,0.387751,0.768883,0.929319,0.141613,0.47328,0.283316,0.429939,0.898892,0.39917,0.197275,0.528482,0.787222,0.153261,0.552387,0.99336,0.283647,0.794825,0.89954,0.224546,0.911993,0.638086,0.00239676,0.427177,0.618688,0.672078,0.402858,0.809511,0.883228,0.464628,0.0806273,0.86971,0.863172,0.135802,0.445414,0.422573,0.0161787,0.910154,0.532957,0.0143394,0.105308,0.48008,0.509243,0.489032,0.88451,0.318624,0.76327,0.736169,0.41534,0.779101,0.844669,0.983283,0.194434,0.293067,0.943045,0.760544,0.669702,0.041878,0.69578,0.40185,0.245334,0.630676,0.722021,0.429851,0.66488,0.935412,0.191509,0.883927,0.983751,0.658469,0.0256217,0.465393,0.0693287,0.892923,0.135875,0.405109,0.393487,0.905335,0.673085,0.461882,0.863691,0.657945,0.85542,0.76858,0.249071,0.586212,0.0697019,0.785738,0.470127,0.751915,0.457957,0.564014,0.126268,0.0482081,0.9172,0.467892,0.407701,0.19889,0.802,0.543844,0.423035,0.12211,0.70733,0.128145,0.967688,0.0923073,0.486354,0.872911,0.563986,0.984223,0.979227,0.390505,0.55666,0.293432,0.96231,0.816208,0.0659108,0.0236169,0.294035,0.863347,0.34074,0.98105,0.66344,0.233426,0.439601,0.643174,0.366272,0.0150866,0.509707,0.856481,0.0101719,0.259713,0.938211,0.663635,0.701981,0.142347,0.0105751,0.235039,0.834172,0.509258,0.683784,0.0930013,0.567177,0.919571,0.843812,0.210819,0.70713,0.770589,0.191242,0.0385695,0.248907,0.0812979,0.67918,0.442054,0.377517,0.350631,0.171439,0.510473,0.819718,0.348398,0.931688,0.861223,0.316603,0.00603545,0.147122,0.311162,0.639131,0.58787,0.298586,0.252893,0.553618,0.128159,0.492522,0.229414,0.41712,0.468985,0.0584748,0.0986049,0.636413,0.29904,0.210617,0.816018,0.658092,0.923043,0.296034,0.792669,0.607755,0.806644,0.710291,0.358827,0.776568,0.711303,0.628461,0.600008,0.548915,0.286857,0.96328,0.379726,0.134863,0.725883,0.277742,0.0576667,0.212823,0.347007,0.378746,0.241515,0.396135,0.00823283,0.363261,0.382459,0.828358,0.415105,0.1612,0.779397,0.0871184,0.769152,0.057745,0.7716,0.715279,0.299001,0.26041,0.784887,0.147793,0.83165,0.0893539,0.181104,0.279785,0.10832,0.0119159,0.0689765,0.181154,0.404262,0.0509312,0.224582,0.393009,0.569575,0.491934,0.54802,0.287015,0.557158,0.0406929,0.957636,0.548077,0.438577,0.354056,0.872263,0.267555,0.482658,0.533794,0.113928,0.157265,0.936011,0.449522,0.434787,|0.105869,0.122498,0.0797535,0.373661,0.34544,0.758485,0.088468,0.4292,0.749172,0.892955,0.827364,0.467724,0.673455,0.794854,0.0863008,0.467658,0.859828,0.257709,0.507919,0.794075,0.349966,0.260846,0.20018,0.00473148,0.389775,0.594727,0.819942,0.46221,0.776785,0.187343,0.132289,0.247703,0.280253,0.180487,0.656551,0.487422,0.492393,0.256788,0.378149,0.633944,0.438632,0.158833,0.678754,0.311243,0.119706,0.687407,0.452175,0.269432,0.0509425,0.186837,0.508744,0.6024,0.748966,0.402031,0.0113798,0.746591,0.846825,0.571383,0.594605,0.411069,0.577745,0.178431,0.0530485,0.130469,0.765336,0.687312,0.304774,0.927183,0.209156,0.561388,0.974117,0.344107,0.636065,0.248943,0.542865,0.179536,0.29652,0.709791,0.837027,0.659828,0.102816,0.399321,0.699545,0.949833,0.412194,0.209965,0.865938,0.468541,0.723509,0.949347,0.730944,0.881031,0.64751,0.261324,0.71141,0.845366,0.852788,0.909753,0.958476,0.589732,0.611563,0.976375,0.191797,0.540128,0.946137,0.610309,0.681239,0.759728,0.375504,0.927367,0.227817,0.745762,0.744178,0.15221,0.30542,0.0553256,0.373789,0.727731,0.23902,0.796291,0.125735,0.256358,0.646824,0.459181,0.795887,0.517892,0.31325,0.320754,0.700539,0.447755,0.176385,0.039655,0.79509,0.373754,0.286264,0.30394,0.528072,0.527086,0.130013,0.22412,0.0341284,0.834065,0.303994,0.683337,0.136588,0.354061,0.374038,0.566661,0.152025,0.506624,0.12312,0.132691,0.133577,0.767786,0.742214,0.891757,0.694475,0.643793,0.0610238,0.207515,0.0760772,0.340532,0.884329,0.254114,0.939311,0.239346,0.984887,0.442718,0.580061,0.191065,0.798084,0.0462162,0.493461,0.0819203,0.203196,0.515725,0.955419,0.630221,0.0429603,0.773022,0.215388,0.927379,0.812971,0.674186,0.351781,0.714342,0.0760761,0.0268941,0.784401,0.0713214,0.385453,0.788699,0.0378125,0.39317,0.611278,0.719053,0.408053,0.604613,0.662296,0.420282,0.328739,0.221784,0.798452,0.0571836,0.315281,0.126179,0.82422,0.0965301,0.0439118,0.155545,0.696753,0.717797,0.974632,0.371396,0.409733,0.222059,0.371104,0.8882,0.789492,0.694587,0.693944,0.348036,0.219581,0.918774,0.141664,0.769391,0.0774885,0.890756,0.719171,0.569024,0.134512,0.801682,0.319442,0.518968,0.303733,0.691494,0.95092,0.223592,0.835251,0.886347,0.506647,0.762645,0.81752,0.527185,0.579969,0.877594,0.802688,0.667774,0.557163,0.27815,0.161899,0.601496,0.22664,0.0971104,0.0616427,0.34087,0.401341,0.0430267,0.346869,0.109327,0.284837,0.870314,0.962835,0.0644326,0.512098,0.72897,0.997395,0.845187,0.0434294,0.0332136,0.71301,0.45224,0.0586323,0.909777,0.751417,0.514058,0.854375,0.29765,0.300718,0.0205725,0.807747,0.0171604,0.881587,0.993041,0.441129,0.449672,0.785675,0.531025,0.46752,0.000212252,0.259732,0.782852,0.984196,0.999532,0.114045,0.23795,0.451775,0.515621,0.0808913,0.871697,0.197963,0.274722,0.328082,0.696172,0.402342,0.317242,0.596915,0.754304,0.591087,0.315568,0.167005,0.943723,0.874963,0.756916,0.0433254,0.673905,0.434802,0.48017,0.367482,0.842366,0.186655,0.979715,0.227136,0.847132,0.509627,0.151554,0.263973,0.675175,0.479745,0.921728,0.434488,0.397303,0.805688,0.638005,0.453857,0.231779,0.666032,0.116566,0.682021,0.888722,0.118078,0.643459,0.102818,0.707889,0.874591,0.0486341,0.935484,0.22197,0.0727623,0.0286582,0.418251,0.873376,0.204103,0.931887,0.546371,0.302132,0.998644,0.573603,0.50134,0.67203,0.422933,0.20479,0.904373,0.896715,0.940237,0.0930275,0.934941,0.132897,0.491781,0.87035,0.283712,0.223759,0.599775,0.236905,0.170185,0.21248,0.64043,0.515781,0.386029,0.898112,0.0140847,0.0320206,0.539291,0.994392,0.955847,0.0861059,0.668231,0.597318,0.482501,0.0969917,0.906023,0.220066,0.0738117,0.133905,0.0131715,0.768162,0.650062,0.196743,0.172839,0.393394,0.483856,0.276022,0.857986,0.968962,0.56035,0.249129,0.0701168,0.0100226,0.781246,0.347941,0.621134,0.0546328,0.734156,0.0872491,0.907401,0.561912,0.0578197,0.469798,0.346303,0.54869,0.577695,0.160575,0.841645,0.308656,0.414734,0.656465,0.770402,0.518067,0.0999173,0.547298,0.668251,0.399288,0.243636,0.881075,0.612113,0.358567,0.657922,0.00226581,0.819499,0.636539,0.859443,0.988828,0.252673,0.752388,0.137603,0.36922,0.965128,0.669539,0.486237,0.623559,0.373342,0.169596,0.571432,0.928733,0.0965915,0.181309,0.126891,0.105171,0.283162,0.0464004,0.3939,0.839087,0.318266,0.606363,0.743522,0.257994,0.339233,0.180995,0.791372,0.930984,0.684184,0.107413,0.560154,0.226023,0.184904,0.956444,0.305392,0.632125,0.697022,0.629559,0.472668,0.163616,0.722673,0.801094,0.879081,0.736077,0.900587,0.343409,0.681236,0.93683,0.714511,0.641782,0.0106853,0.88377,0.382141,0.771354,0.60954,0.587552,0.188128,0.743014,0.931329,0.676583,0.769499,0.559057,0.376099,0.811813,0.721946,0.733208,0.669681,0.142815,0.171748,0.401875,0.0671969,0.232658,0.00261539,0.818339,0.479095,0.749195,0.725858,0.220125,0.175567,0.633365,0.290422,0.792283,0.596784,0.917468,0.710105,0.193149,0.112554,0.0200058,0.0946002,0.466237,0.0948899,0.465643,0.520099,0.374771,0.382955,0.36621,0.328637,0.632578,0.863333,0.177359,0.729255,0.661053,0.038937,0.87138,0.645527,0.932447,0.836258,0.231652,0.0443377,0.984047,0.657682,0.630881,0.721795,0.293153,0.0454566,0.873976,0.359815,0.00581551,0.0857812,0.808527,0.752237,0.463803,0.967895,0.34436,0.547507,0.70554,0.749883,0.363824,0.877441,0.920359,0.776089,0.36035,0.623232,0.592295,0.787865,0.494583,0.358788,0.667331,0.880091,0.747454,0.920704,0.363464,0.517554,0.180226,0.947567,0.766033,0.358966,0.121093,0.325663,0.408297,0.248527,0.803265,0.286521,0.650343,0.547951,0.480603,0.508382,0.825098,0.460389,0.544802,0.245109,0.375319,0.0564113,0.693051,0.983728,0.77824,0.812399,0.990615,0.847476,0.130217,0.507293,0.923406,0.784646,0.785191,0.497458,0.819921,0.519616,0.397475,0.271461,0.612026,0.355529,0.739181,0.770875,0.776283,0.445461,0.290843,0.808808,0.0080418,0.410812,0.239102,0.942068,0.374262,0.564494,0.286585,0.491903,0.692699,0.692381,0.846289,0.221307,0.195716,0.293985,0.54642,0.202365,0.298005,0.815723,0.20706,0.861665,0.141401,0.69032,0.0960246,0.342715,0.0129586,0.159422,0.987081,0.107239,0.365675,0.991238,0.351499,0.0493203,0.382856,0.552085,0.322766,0.910509,0.334497,0.139789,0.608342,0.865823,0.690092,0.391649,0.689191,0.0506148,0.0891785,0.969129,0.110559,0.926385,0.583542,0.795818,0.842365,0.908916,0.472559,0.181899,0.564743,0.127389,0.309499,0.966747,0.982392,0.166354,0.399969,0.153063,0.957936,0.061543,0.0159887,0.972852,0.11545,0.72719,0.0388516,0.895334,0.140676,0.171926,0.116587,0.495653,0.993058,0.283362,0.292586,0.99694,0.642649,0.49497,0.771512,0.51818,0.992154,0.0301412,0.415922,0.178477,0.574689,0.719771,0.778678,0.956474,0.25128,0.298688,0.204021,0.846218,0.763426,0.618737,0.759533,0.173708,0.880223,0.084741,0.571822,0.0788079,0.613421,0.241506,0.215651,0.994481,0.772668,0.000926554,0.396642,0.129233,0.17812,0.843215,0.714428,0.0765646,0.0331191,0.146328,0.449255,0.688133,0.798018,0.475222,0.297628,0.44894,0.28745,0.106629,0.14692,0.0758287,0.83964,0.520401,0.233464,0.95453,0.637996,0.930189,0.296477,0.0316239,0.368047,0.011129,0.756693,0.51953,0.626711,0.829857,0.863004,0.175552,0.465517,0.80036,0.58027,0.759692,0.873071,0.340403,0.462562,0.866799,0.692603,0.685429,0.362714,0.104518,0.501038,0.865537,0.902107,0.729344,0.963849,0.847218,0.0290311,0.390947,0.710491,0.92533,0.775112,0.363017,0.819441,0.710564,0.301587,0.422798,0.254028,0.25576,0.616316,0.0322765,0.641229,0.268119,0.577043,0.239572,0.522134,0.876591,0.978299,0.546776,0.425073,0.0945669,0.183769,0.253893,0.0277421,0.246738,0.298879,0.681263,0.882566,0.643425,0.468682,0.360848,0.387072,0.59779,0.0831895,0.48027,0.893659,0.163523,0.837221,0.887158,0.638426,0.179566,0.381549,0.722919,0.132568,0.644471,0.760856,0.946555,0.138232,0.666977,0.759389,0.00647205,0.751882,0.0738166,0.0958914,0.136913,0.854632,0.91287,0.915119,0.319388,0.769626,0.357544,0.0156112,0.0675765,0.0715333,0.0593807,0.404663,0.407578,0.423472,0.893598,0.275069,0.724364,0.234425,0.881923,0.419501,0.436934,0.927822,0.71887,0.201586,0.196982,0.815356,0.200968,0.669275,0.476337,0.800227,0.413154,0.997352,0.201676,0.801896,0.637604,0.300443,0.196244,0.737736,0.756476,0.0443507,0.849425,0.685881,0.554195,0.895932,0.360852,0.736703,0.543447,0.125428,0.649628,0.46525,0.421562,0.837853,0.720853,0.325581,0.484199,0.567174,0.189816,0.444891,0.480274,0.0862521,0.932558,0.838558,0.142052,0.47075,0.796252,0.804509,0.714248,0.850868,0.354137,0.16466,0.647912,0.64073,0.837266,0.00691408,0.825521,0.998207,0.849638,0.899124,0.90214,0.796738,0.77115,0.726216,0.740819,0.179336,0.353886,0.0247378,0.561629,0.371751,0.0654275,0.752168,0.973083,0.0129354,0.154166,0.632705,0.0813939,0.224871,0.519679,0.69089,0.75481,0.845686,0.66092,0.734524,0.148858,0.546307,0.970216,0.289044,0.126866,0.866956,0.473712,0.815781,0.612285,0.497211,0.726408,0.106368,0.696719,0.739525,0.564291,0.786871,0.290013,0.714591,0.317682,0.612593,0.55751,0.00661981,0.95086,0.648401,0.0832002,0.514154,0.270731,0.204185,0.0476496,0.986866,0.438133,0.746275,0.839897,0.759291,0.0308876,0.184728,0.733094,0.458217,0.191875,0.225392,0.52984,0.771502,0.191955,0.532453,0.517648,0.204751,0.40198,0.682546,0.6211,0.104388,0.426088,0.790562,|0.993586,0.305506,0.271674,0.952451,0.932778,0.0966554,0.718191,0.950383,0.0446265,0.688992,0.837891,0.0169218,0.117954,0.685972,0.729637,0.478889,0.896431,0.323953,0.363226,0.81356,0.81709,0.723254,0.510673,0.385373,0.9058,0.995781,0.818793,0.31206,0.19083,0.207283,0.875434,0.344317,0.995829,0.460364,0.431331,0.557592,0.100946,0.0380408,0.350909,0.553275,0.770342,0.281548,0.58323,0.00485784,0.627966,0.192396,0.54872,0.0122778,0.621074,0.683849,0.771133,0.948186,0.668926,0.999125,0.277437,0.851382,0.869266,0.57475,0.0208642,0.901803,0.119417,0.947626,0.729268,0.17272,0.0463775,0.10158,0.0143801,0.0806679,0.407355,0.0780967,0.635606,0.952135,0.685956,0.74606,0.0859585,0.42624,0.30561,0.0539515,0.75333,0.399735,0.819922,0.865385,0.912107,0.974172,0.859045,0.477126,0.385,0.579719,0.127693,0.682347,0.103949,0.849743,0.814056,0.846926,0.436616,0.683015,0.0092392,0.156979,0.737022,0.0607116,0.84811,0.0257248,0.0987436,0.617701,0.643499,0.588912,0.205082,0.587848,0.533674,0.380414,0.913153,0.854789,0.669856,0.328294,0.824532,0.320081,0.0503741,0.830119,0.865316,0.331522,0.0737867,0.483274,0.471138,0.182264,0.746115,0.72284,0.280864,0.286042,0.0435102,0.715073,0.20334,0.671971,0.595211,0.838565,0.4061,0.860195,0.454478,0.151268,0.17078,0.321859,0.177495,0.156117,0.934142,0.603625,0.546743,0.254469,0.899231,0.774413,0.31182,0.984246,0.0338271,0.394861,0.225166,0.363512,0.492137,0.259497,0.330848,0.579342,0.662802,0.375974,0.82193,0.890586,0.766972,0.0191655,0.0675735,0.863974,0.22674,0.304657,0.127827,0.338434,0.99619,0.121918,0.869232,0.816734,0.770718,0.457573,0.463107,0.947363,0.162953,0.0391265,0.495285,0.478674,0.369101,0.557504,0.727565,0.945192,0.688395,0.587608,0.931349,0.212621,0.461986,0.344616,0.249961,0.645102,0.12481,0.708708,0.139726,0.552269,0.780436,0.716172,0.878458,0.182122,0.26368,0.50078,0.969669,0.404244,0.27374,0.441176,0.9487,0.479958,0.252999,0.69338,0.521126,0.427616,0.582975,0.303555,0.0342321,0.717187,0.00640863,0.488098,0.511924,0.99336,0.87845,0.621798,0.589574,0.809183,0.71521,0.174049,0.279009,0.165728,0.730102,0.776606,0.404476,0.92338,0.963179,0.483511,0.119764,0.903685,0.469957,0.636261,0.747016,0.431024,0.0637389,0.83699,0.509012,0.784422,0.178493,0.500137,0.13868,0.669004,0.462898,0.248121,0.454791,0.548628,0.662052,0.953242,0.102315,0.245099,0.240687,0.828651,0.612057,0.70415,0.0540035,0.254252,0.463983,0.259625,0.282109,0.803732,0.0375683,0.164045,0.148637,0.924246,0.709908,0.433243,0.743493,0.245621,0.676778,0.270402,0.97512,0.925671,0.425929,0.839107,0.941319,0.990223,0.0693993,0.943186,0.512276,0.837238,0.39153,0.00453889,0.68209,0.83024,0.263367,0.999443,0.159017,0.684922,0.212018,0.375405,0.636901,0.797461,0.615557,0.907716,0.869146,0.35858,0.56209,0.0426067,0.886581,0.432911,0.929633,0.33468,0.233089,0.474397,0.94852,0.351389,0.225581,0.714393,0.0802319,0.502738,0.891006,0.871674,0.194758,0.868026,0.240825,0.250106,0.249284,0.398311,0.427797,0.0714547,0.280949,0.0199125,0.19125,0.695226,0.283107,0.888584,0.648429,0.771206,0.0599368,0.857645,0.500739,0.654553,0.103805,0.554029,0.145843,0.36581,0.157591,0.0531415,0.388078,0.897112,0.815102,0.82651,0.540234,0.416699,0.482402,0.0512517,0.176176,0.784555,0.670736,0.509237,0.699086,0.496746,0.575864,0.58911,0.0497859,0.173511,0.852882,0.188746,0.851192,0.908338,0.897659,0.262242,0.0913393,0.871042,0.0216138,0.447141,0.350548,0.0473161,0.507948,0.468732,0.967985,0.684441,0.338253,0.0464965,0.471673,0.570383,0.302557,0.375595,0.828923,0.399748,0.854635,0.672196,0.0444092,0.257261,0.0889632,0.515418,0.456056,0.311285,0.433468,0.559375,0.0235395,0.386071,0.129639,0.898505,0.113878,0.513884,0.516747,0.864425,0.0500901,0.193514,0.228166,0.110772,0.49109,0.572563,0.115735,0.929586,0.515006,0.94723,0.815554,0.0398986,0.938712,0.00524122,0.364658,0.263598,0.643195,0.624692,0.186209,0.520068,0.945171,0.615503,0.900126,0.939896,0.223454,0.580067,0.517843,0.424375,0.190988,0.413993,0.19744,0.14432,0.270836,0.665101,0.933093,0.749568,0.0790522,0.938052,0.286613,0.424173,0.470289,0.0223763,0.110121,0.901808,0.408414,0.14578,0.408902,0.486668,0.924916,0.330588,0.509441,0.875155,0.857123,0.140288,0.0770499,0.193154,0.773067,0.96546,0.261584,0.569566,0.775169,0.0457876,0.748642,0.886424,0.252381,0.559529,0.842747,0.927288,0.0550994,0.761397,0.943839,0.71312,0.328977,0.229702,0.54038,0.774127,0.154247,0.53035,0.763502,0.0953449,0.491174,0.68386,0.756256,0.798046,0.78582,0.315573,0.0325868,0.731979,0.413638,0.210531,0.292788,0.749667,0.599065,0.040402,0.662212,0.785267,0.524042,0.316217,0.379158,0.208558,0.884574,0.562421,0.921963,0.723973,0.170565,0.530882,0.912663,0.335939,0.155893,0.115765,0.0684409,0.618263,0.681957,0.099885,0.63308,0.727926,0.722977,0.511965,0.670802,0.422895,0.939075,0.747255,0.798357,0.715115,0.921332,0.843888,0.426181,0.233138,0.289623,0.258116,0.514565,0.882712,0.928788,0.827364,0.581926,0.49274,0.222086,0.890734,0.774219,0.801535,0.235193,0.204587,0.447251,0.986945,0.70915,0.994175,0.454243,0.251534,0.36786,0.256738,0.109755,0.936062,0.385965,0.58315,0.685007,0.202091,0.650003,0.350165,0.123191,0.866566,0.221354,0.682248,0.971194,0.450889,0.707948,0.768603,0.630422,0.245684,0.575156,0.344325,0.100398,0.81769,0.170815,0.775631,0.30704,0.524905,0.444032,0.872767,0.847749,0.406448,0.0443853,0.426653,0.903844,0.478148,0.695433,0.175739,0.436297,0.84088,0.895104,0.226465,0.556578,0.91465,0.708038,0.553014,0.268801,0.157826,0.849347,0.518245,0.114713,0.389349,0.908128,0.389296,0.773452,0.753004,0.830046,0.346929,0.627932,0.31862,0.139906,0.591035,0.0378278,0.921744,0.271849,0.534298,0.254299,0.589056,0.646396,0.466501,0.420697,0.78356,0.692852,0.429773,0.444063,0.474232,0.0627834,0.230763,0.168207,0.934734,0.718992,0.5244,0.0198736,0.050364,0.506884,0.489505,0.743319,0.511945,0.112823,0.382569,0.685302,0.803555,0.325817,0.95438,0.961659,0.742977,0.718113,0.452901,0.0126866,0.0117316,0.758881,0.114497,0.420367,0.875584,0.223581,0.320801,0.80604,0.754834,0.668727,0.852605,0.477769,0.121869,0.807078,0.459873,0.565028,0.0865837,0.430051,0.0977292,0.015007,0.706069,0.072539,0.9907,0.00734663,0.492056,0.469453,0.884323,0.872991,0.364013,0.3775,0.574945,0.387547,0.796477,0.594028,0.600288,0.0466297,0.402331,0.815429,0.351935,0.774687,0.120998,0.40558,0.415864,0.255138,0.326256,0.606663,0.533095,0.519332,0.741663,0.789879,0.0153713,0.34255,0.377208,0.143355,0.243358,0.385577,0.653488,0.61073,0.800574,0.260155,0.0413768,0.182326,0.432647,0.747095,0.633455,0.416139,0.266421,0.321697,0.0921434,0.984598,0.0781848,0.988516,0.304278,0.587014,0.626723,0.855385,0.824102,0.189374,0.690731,0.842057,0.656354,0.811543,0.117959,0.36516,0.206024,0.00890356,0.309631,0.775458,0.439359,0.279723,0.147894,0.973253,0.628795,0.551508,0.671179,0.680823,0.827798,0.545547,0.771864,0.527709,0.293828,0.510835,0.434897,0.906411,0.274281,0.132707,0.514149,0.126014,0.0725089,0.155559,0.320503,0.489223,0.703766,0.346594,0.902187,0.638593,0.788123,0.397826,0.751815,0.578715,0.475367,0.369578,0.415214,0.294017,0.0623664,0.71929,0.791571,0.984426,0.683224,0.759554,0.415997,0.837801,0.47494,0.0609236,0.00713092,0.0636276,0.650909,0.0935361,0.0812806,0.139009,0.890102,0.785308,0.981571,0.308348,0.105412,0.128234,0.29978,0.535527,0.49382,0.422039,0.738353,0.465367,0.490257,0.377622,0.630865,0.809732,0.315322,0.968411,0.755972,0.919863,0.390192,0.973946,0.784082,0.120808,0.740924,0.886222,0.598963,0.878518,0.100546,0.717402,0.860774,0.718857,0.404778,0.231753,0.244918,0.306269,0.1539,0.00128931,0.135831,0.495928,0.716705,0.704515,0.410377,0.888888,0.396118,0.727473,0.923288,0.501202,0.177522,0.638489,0.244691,0.756315,0.306548,0.106887,0.602137,0.0522327,0.714606,0.566401,0.716951,0.39151,0.565219,0.0619736,0.671371,0.325842,0.118293,0.883227,0.964606,0.447437,0.945797,0.368315,0.601072,0.38643,0.195586,0.368205,0.934073,0.736502,0.714134,0.309499,0.629216,0.145694,0.895019,0.476464,0.248298,0.838275,0.652675,0.792236,0.417498,0.854575,0.497536,0.834373,0.383286,0.977263,0.776906,0.0347905,0.627422,0.117909,0.920802,0.668902,0.912321,0.127022,0.0317816,0.392751,0.770875,0.594909,0.63178,0.526686,0.681087,0.471732,0.131724,0.934087,0.753535,0.745901,0.850153,0.0772111,0.264108,0.976887,0.278582,0.443404,0.620856,0.902869,0.141028,0.378948,0.445254,0.429824,0.431318,0.939315,0.863282,0.442206,0.399303,0.356228,0.1783,0.242451,0.452512,0.351313,0.0407352,0.601121,0.190666,0.252742,0.650157,0.79195,0.748398,0.0609829,0.89436,0.838754,0.33011,0.758268,0.357288,0.930836,0.927982,0.247467,0.6742,0.324632,0.00788444,0.372907,0.88351,0.649206,0.973212,0.0444685,0.927932,0.532055,0.438416,0.132176,0.526429,0.132284,0.213599,0.573165,0.203428,0.938915,0.511493,0.292244,0.934253,0.467264,0.220627,0.917939,0.418196,0.469097,0.374239,0.0525666,0.0556925,0.43081,0.703647,0.894993,0.00406277,0.670225,0.196958,0.68796,0.719114,0.609809,0.938902,0.130193,0.00483835,0.0339139,0.744702,0.599616,0.842271,0.0975465,0.723485,0.521669,0.587527,0.982539,0.404417,0.375244,0.481069,0.366755,0.460858,0.222272,0.476631,|0.682538,0.659998,0.286502,0.194227,0.914946,0.201738,0.240598,0.105002,0.704764,0.0895896,0.807641,0.732253,0.414789,0.148593,0.869337,0.790008,0.00181109,0.746338,0.832195,0.272321,0.783062,0.323908,0.185696,0.663799,0.271904,0.626817,0.252151,0.544609,0.673564,0.197156,0.143223,0.060717,0.842024,0.420555,0.560027,0.671507,0.783655,0.199589,0.636116,0.623268,0.469431,0.639712,0.146741,0.043638,0.831902,0.421277,0.115372,0.738843,0.503705,0.803578,0.164802,0.143537,0.214267,0.702151,0.768159,0.244085,0.388087,0.0882587,0.861779,0.815047,0.629382,0.917005,0.66532,0.478942,0.810095,0.155494,0.0892714,0.643255,0.425037,0.984487,0.544362,0.103045,0.687287,0.90782,0.169529,0.35803,0.267011,0.963979,0.458651,0.97137,0.250397,0.824891,0.303957,0.355394,0.962281,0.737999,0.0192305,0.608973,0.068523,0.10777,0.213072,0.606745,0.841926,0.817866,0.492502,0.471175,0.271922,0.99662,0.384627,0.644451,0.746356,0.969559,0.661805,0.182982,0.653487,0.0211887,0.353466,0.0981631,0.558262,0.175255,0.940318,0.811992,0.978409,0.526533,0.738744,0.13558,0.0858994,0.0192588,0.565335,0.0712543,0.283343,0.420019,0.826083,0.0305748,0.231138,0.355356,0.70556,0.277038,0.425543,0.0906631,0.0699639,0.101645,0.142153,0.863333,0.0675717,0.129298,0.960035,0.883204,0.205029,0.667845,0.764199,0.181949,0.120097,0.718455,0.196765,0.263237,0.689099,0.751777,0.902968,0.600678,0.0364056,0.344058,0.615699,0.0306234,0.218438,0.569046,0.0434216,0.0442522,0.0415003,0.971853,0.0227113,0.456346,0.65856,0.219994,0.149066,0.200753,0.21968,0.773062,0.885318,0.274025,0.375981,0.110395,0.908076,0.168085,0.707474,0.120742,0.143319,0.523434,0.25902,0.674281,0.846679,0.0100172,0.385031,0.699293,0.480517,0.807301,0.0446901,0.479945,0.899087,0.0478195,0.311336,0.542936,0.0531224,0.830254,0.694971,0.762564,0.620705,0.355949,0.818919,0.868132,0.671276,0.0300201,0.670423,0.348104,0.811574,0.00204343,0.532261,0.28445,0.367651,0.193381,0.191008,0.369135,0.800991,0.252603,0.109994,0.303823,0.234166,0.710424,0.0211605,0.529074,0.888191,0.392124,0.257595,0.894024,0.233034,0.411227,0.0535261,0.412269,0.403522,0.599782,0.720132,0.19982,0.847271,0.945508,0.944945,0.0775621,0.651772,0.817264,0.843531,0.430043,0.622522,0.404294,0.126861,0.443616,0.588745,0.337131,0.887992,0.633204,0.276938,0.826445,0.652028,0.179162,0.222188,0.692876,0.0708756,0.94771,0.569957,0.324001,0.544974,0.539276,0.44949,0.699298,0.155665,0.768913,0.374983,0.116478,0.271515,0.894521,0.505552,0.769404,0.557942,0.810946,0.591276,0.763337,0.826972,0.381418,0.0911114,0.883269,0.418422,0.199124,0.402391,0.94398,0.831307,0.70877,0.429812,0.951706,0.712102,0.0826569,0.982656,0.410624,0.4526,0.729028,0.120503,0.727354,0.0274515,0.173002,0.425346,0.15544,0.0536047,0.983505,0.369145,0.245979,0.4514,0.425848,0.689058,0.810708,0.284623,0.370468,0.940661,0.454911,0.618343,0.271159,0.982612,0.41596,0.0542195,0.909668,0.403303,0.824438,0.522086,0.694801,0.0655602,0.14959,0.866562,0.810193,0.549362,0.765307,0.118251,0.456093,0.298873,0.048957,0.290175,0.236141,0.74677,0.375343,0.511928,0.101765,0.0292857,0.67619,0.0663268,0.864021,0.730302,0.867,0.9291,0.0986112,0.505041,0.913988,0.989821,0.474938,0.0681366,0.941778,0.349902,0.936219,0.158784,0.363516,0.723646,0.726119,0.754742,0.443035,0.965071,0.483703,0.76632,0.474944,0.788644,0.26314,0.338105,0.543264,0.439295,0.955424,0.579642,0.782503,0.598274,0.269763,0.666288,0.604353,0.139392,0.616182,0.776646,0.91415,0.57174,0.895393,0.000924945,0.759049,0.909568,0.0518087,0.244765,0.339432,0.645175,0.762759,0.84455,0.330983,0.957611,0.686881,0.0307699,0.84183,0.314985,0.783843,0.0272959,0.542336,0.474246,0.210549,0.0615849,0.215457,0.33448,0.985442,0.796817,0.854694,0.502452,0.968692,0.784101,0.342356,0.633992,0.304105,0.514768,0.374207,0.926906,0.289146,0.429339,0.418569,0.673901,0.381115,0.11166,0.579261,0.954755,0.473548,0.0404568,0.74654,0.285082,0.94639,0.546211,0.573107,0.980728,0.542262,0.243548,0.0567838,0.608336,0.770706,0.460841,0.904696,0.698883,0.0501496,0.755833,0.255164,0.252668,0.840488,0.405276,0.245127,0.0235057,0.552802,0.35099,0.76691,0.319853,0.950335,0.493461,0.656793,0.2025,0.757692,0.00454861,0.927626,0.688704,0.810069,0.581352,0.0662109,0.718147,0.593953,0.598357,0.995492,0.21492,0.13319,0.290965,0.0325755,0.838283,0.1059,0.119608,0.653553,0.336076,0.500059,0.728094,0.405952,0.354384,0.0471544,0.460786,0.250405,0.718206,0.646741,0.175635,0.196291,0.580272,0.294598,0.0103922,0.366539,0.0182476,0.359422,0.927659,0.280825,0.0900748,0.890103,0.231567,0.249061,0.463003,0.716379,0.617357,0.250295,0.578092,0.231594,0.652888,0.894906,0.327547,0.919746,0.237685,0.453612,0.602693,0.763878,0.368893,0.132688,0.825347,0.700056,0.109289,0.165812,0.446779,0.75304,0.966292,0.269201,0.927409,0.337359,0.519813,0.702018,0.497137,0.64472,0.423143,0.234369,0.777239,0.89175,0.687141,0.461675,0.697673,0.663782,0.946289,0.629525,0.819087,0.534654,0.973633,0.905111,0.177569,0.0389895,0.403926,0.791192,0.548134,0.847521,0.91319,0.468235,0.853267,0.785055,0.00748742,0.43462,0.952696,0.0820653,0.926643,0.505428,0.804323,0.642498,0.235317,0.319353,0.769853,0.659005,0.372543,0.0960328,0.512957,0.652326,0.67756,0.356318,0.0958743,0.968789,0.864396,0.173597,0.692351,0.496726,0.188723,0.417154,0.472986,0.358904,0.807487,0.764132,0.926574,0.828966,0.883263,0.237717,0.952649,0.779425,0.89143,0.334473,0.81929,0.179807,0.0600611,0.611358,0.974386,0.891163,0.534879,0.42696,0.520044,0.854407,0.735322,0.055984,0.812038,0.142757,0.527342,0.210233,0.382298,0.335275,0.965975,0.433388,0.18158,0.58969,0.0860541,0.481525,0.809847,0.845246,0.97197,0.364353,0.668669,0.416645,0.385711,0.248086,0.805721,0.763917,0.615205,0.0992216,0.536392,0.848925,0.293744,0.489305,0.894427,0.995947,0.220897,0.374849,0.822943,0.0312858,0.559196,0.590882,0.701274,0.684791,0.962962,0.297727,0.360387,0.208684,0.159002,0.976229,0.62087,0.11526,0.881616,0.017732,0.282801,0.815074,0.456627,0.602606,0.370197,0.337208,0.745714,0.767704,0.962368,0.543803,0.96049,0.00974095,0.167044,0.656832,0.351046,0.118817,0.739953,0.123323,0.805077,0.36113,0.989573,0.870275,0.566282,0.467144,0.644632,0.818391,0.715819,0.502922,0.940798,0.322855,0.493961,0.327953,0.921871,0.501426,0.764475,0.864068,0.582936,0.381036,0.158477,0.359603,0.339787,0.389928,0.91256,0.99499,0.895822,0.498968,0.00947094,0.648497,0.762273,0.698753,0.00167012,0.578437,0.227477,0.146076,0.765176,0.5206,0.465935,0.946194,0.538536,0.96535,0.0591835,0.684479,0.412916,0.847714,0.245004,0.488059,0.305431,0.476818,0.569915,0.556045,0.109684,0.00983638,0.359264,0.807173,0.814986,0.920757,0.896645,0.755483,0.619055,0.918705,0.0470193,0.0221882,0.959541,0.848522,0.0859661,0.0456898,0.646286,0.497325,0.658206,0.627587,0.643349,0.945972,0.197177,0.215433,0.738444,0.709855,0.627257,0.505267,0.556256,0.074665,0.0706168,0.825358,0.0483199,0.303479,0.831236,0.000787377,0.275959,0.465548,0.319708,0.0324368,0.635011,0.0394939,0.722917,0.987654,0.148139,0.0625657,0.406749,0.932472,0.690507,0.588458,0.951836,0.782643,0.385997,0.464237,0.47055,0.900368,0.955758,0.461743,0.843868,0.35553,0.479911,0.185875,0.686528,0.839013,0.969706,0.339224,0.799241,0.52011,0.467172,0.114399,0.261435,0.142691,0.391155,0.122,0.250575,0.690044,0.104639,0.544298,0.00399756,0.531706,0.0403044,0.742576,0.74917,0.778248,0.525756,0.164733,0.547785,0.35327,0.388185,0.390933,0.367559,0.877887,0.0811051,0.340193,0.573925,0.031928,0.241871,0.383785,0.0424271,0.645989,0.764185,0.781259,0.750851,0.692202,0.279367,0.14604,0.595863,0.200967,0.697291,0.324786,0.761191,0.590814,0.664189,0.380149,0.715962,0.201216,0.776676,0.117668,0.708671,0.698848,0.726071,0.973178,0.319655,0.907114,0.771018,0.949456,0.63355,0.416134,0.778089,0.940926,0.278893,0.0850747,0.808371,0.885844,0.813725,0.14368,0.138936,0.106534,0.507114,0.675816,0.937406,0.391002,0.309869,0.947485,0.575885,0.428706,0.844286,0.772543,0.075142,0.882005,0.224911,0.834376,0.950548,0.615595,0.266508,0.0592051,0.416736,0.736284,0.370327,0.220023,0.521619,0.789111,0.906607,0.772802,0.139715,0.955468,0.59288,0.621308,0.77048,0.629788,0.291542,0.108423,0.446134,0.0396984,0.11851,0.725146,0.796648,0.899049,0.59174,0.563001,0.852538,0.875609,0.900664,0.809199,0.604537,0.384235,0.431888,0.879017,0.626379,0.962996,0.485286,0.847675,0.662004,0.834635,0.421848,0.739508,0.887457,0.875361,0.229487,0.647537,0.574229,0.385438,0.581619,0.438487,0.918984,0.00736165,0.817435,0.438591,0.981928,0.0256929,0.840564,0.00103635,0.47151,0.762942,0.471979,0.922625,0.831113,0.352119,0.718554,0.376979,0.731208,0.703754,0.178972,0.696117,0.78886,0.346578,0.654813,0.15319,0.133195,0.892957,0.337024,0.874146,0.556053,0.616796,0.182013,0.796286,0.656248,0.651672,0.0677581,0.598312,0.929842,0.785298,0.582785,0.713045,0.625729,0.495858,0.986296,0.269691,0.826715,0.448724,0.0110634,0.00986665,0.517602,0.761978,0.89443,0.635979,0.998572,0.465192,0.987951,0.830255,0.0981646,0.606084,0.271348,0.0476999,0.629021,0.363164,0.703111,0.462639,0.211592,0.797383,0.724335,0.819285,0.956468,0.119119,0.0635599,0.233148,0.0876956,0.277623,0.983954,0.394012,|0.441964,0.362111,0.454835,0.621343,0.808616,0.551482,0.689794,0.434728,0.641972,0.601339,0.806991,0.109552,0.390322,0.213771,0.992165,0.315889,0.999656,0.513996,0.0875766,0.0906066,0.380096,0.800098,0.431066,0.806509,0.0780242,0.539042,0.918304,0.467571,0.415259,0.218162,0.111579,0.746775,0.557733,0.753415,0.299926,0.619777,0.727646,0.00645983,0.669206,0.229584,0.625694,0.115747,0.432934,0.252644,0.733941,0.164529,0.767661,0.295159,0.143066,0.0238356,0.217133,0.679819,0.916116,0.193911,0.752254,0.44632,0.103199,0.413446,0.0579684,0.187453,0.272842,0.157988,0.749461,0.0421541,0.33617,0.252091,0.724602,0.932124,0.386051,0.00317138,0.393237,0.145029,0.00257581,0.393497,0.788495,0.298608,0.419247,0.536896,0.259094,0.705846,0.491192,0.860109,0.465309,0.857041,0.990338,0.636659,0.410629,0.537745,0.338415,0.761884,0.514993,0.451348,0.59449,0.114046,0.734111,0.86282,0.247595,0.0477973,0.354315,0.454921,0.478396,0.051467,0.0657482,0.264358,0.456204,0.597416,0.783713,0.805882,0.753867,0.208731,0.742486,0.557447,0.902382,0.796667,0.976293,0.954927,0.909194,0.246425,0.0313325,0.748817,0.0701664,0.511318,0.0880587,0.781264,0.625755,0.1026,0.731755,0.867348,0.786198,0.972792,0.408787,0.830308,0.335241,0.996513,0.942707,0.473535,0.574515,0.693247,0.278046,0.75661,0.451867,0.019034,0.440343,0.543752,0.309532,0.869759,0.855767,0.341922,0.223656,0.471107,0.427604,0.923513,0.391699,0.678315,0.0564114,0.68983,0.99163,0.853499,0.0320671,0.291219,0.162111,0.483118,0.202556,0.127499,0.526965,0.574187,0.890242,0.750206,0.586238,0.104659,0.926802,0.0331756,0.507912,0.721817,0.735244,0.117628,0.731445,0.831771,0.426862,0.60634,0.864068,0.780546,0.539074,0.181963,0.090389,0.407041,0.217883,0.502372,0.662977,0.640749,0.982587,0.586084,0.147082,0.525261,0.136862,0.584227,0.352771,0.583152,0.999174,0.934866,0.245985,0.972734,0.60377,0.255582,0.352191,0.190269,0.106442,0.0317144,0.156058,0.949646,0.300747,0.499479,0.631137,0.653557,0.795924,0.656388,0.160685,0.282924,0.893366,0.629884,0.171626,0.813193,0.580511,0.121271,0.953888,0.541056,0.31429,0.455878,0.700438,0.186187,0.863425,0.847252,0.0816209,0.85554,0.552201,0.431332,0.510135,0.385417,0.904173,0.952589,0.102348,0.778053,0.979663,0.105197,0.520644,0.902652,0.354074,0.792585,0.946059,0.965077,0.330129,0.64009,0.0679275,0.78398,0.337098,0.803256,0.358924,0.33318,0.000324011,0.560638,0.734826,0.0403714,0.106542,0.147401,0.113533,0.885168,0.434684,0.161181,0.937276,0.814231,0.963067,0.224961,0.601488,0.659736,0.198169,0.862717,0.957069,0.716328,0.797879,0.0852137,0.392045,0.99076,0.915572,0.817715,0.138651,0.489831,0.322111,0.712468,0.991145,0.49253,0.0479566,0.634077,0.847148,0.937492,0.872315,0.585781,0.433818,0.963299,0.282526,0.0848382,0.624967,0.13098,0.64738,0.0418115,0.939672,0.00414824,0.511757,0.636633,0.174393,0.90341,0.61469,0.289923,0.0956948,0.287394,0.841749,0.393122,0.702488,0.611757,0.834221,0.260773,0.791376,0.314348,0.560693,0.953509,0.751337,0.652711,0.265534,0.921895,0.52935,0.61721,0.597942,0.0462921,0.617796,0.568342,0.320534,0.400317,0.703108,0.90253,0.212952,0.100237,0.89319,0.276866,0.0122949,0.3479,0.684134,0.955535,0.0667938,0.681566,0.782735,0.977611,0.656445,0.224964,0.223273,0.487578,0.409602,0.101076,0.575335,0.367754,0.885517,0.989847,0.293881,0.409858,0.698418,0.824992,0.449549,0.714594,0.963161,0.554987,0.763989,0.31148,0.174705,0.661705,0.510438,0.0472659,0.0216152,0.311086,0.074371,0.204062,0.419638,0.408029,0.21538,0.912121,0.283189,0.331045,0.484966,0.489118,0.668865,0.441421,0.0645955,0.174757,0.919179,0.189847,0.427775,0.352873,0.0214936,0.0990075,0.995104,0.294712,0.889324,0.734237,0.00269634,0.214519,0.477419,0.752026,0.880416,0.148676,0.69764,0.51323,0.17197,0.860132,0.299132,0.117882,0.200826,0.136936,0.377156,0.59955,0.409509,0.59475,0.835377,0.482405,0.872086,0.774456,0.771565,0.569885,0.625918,0.906716,0.916341,0.689404,0.210001,0.784028,0.00829589,0.743066,0.0564611,0.292156,0.827189,0.496265,0.954423,0.231515,0.414021,0.774936,0.475048,0.783929,0.349122,0.334619,0.685126,0.402935,0.162342,0.841572,0.568375,0.282653,0.769102,0.117025,0.206757,0.281863,0.778223,0.878678,0.956732,0.611352,0.514744,0.835904,0.750229,0.403881,0.997218,0.768687,0.228612,0.591108,0.0767866,0.470828,0.339056,0.341749,0.873366,0.728861,0.284814,0.633357,0.523504,0.502925,0.492937,0.856929,0.209339,0.381981,0.781075,0.250001,0.532135,0.245939,0.720451,0.93712,0.459206,0.262108,0.877598,0.382308,0.249278,0.941086,0.33962,0.133878,0.313715,0.197288,0.0245517,0.183157,0.844319,0.374517,0.178628,0.469498,0.744673,0.746656,0.955512,0.762064,0.890507,0.918555,0.485918,0.696316,0.925122,0.888194,0.686508,0.929006,0.131846,0.0662783,0.239819,0.0115647,0.069573,0.344343,0.982822,0.961616,0.797339,0.584747,0.173347,0.547308,0.746597,0.101647,0.552371,0.688198,0.851087,0.77964,0.909608,0.3621,0.363237,0.989033,0.955824,0.0356178,0.0248674,0.718326,0.691487,0.67657,0.238835,0.610633,0.588875,0.551977,0.845166,0.599309,0.421753,0.48862,0.0338305,0.519946,0.0351586,0.285518,0.500396,0.1998,0.598693,0.684415,0.63275,0.497579,0.87694,0.225568,0.261284,0.152065,0.897489,0.93947,0.665119,0.980969,0.636324,0.298301,0.478438,0.533704,0.260094,0.305399,0.4301,0.153099,0.21853,0.925921,0.696355,0.106681,0.478903,0.945707,0.288542,0.280319,0.490742,0.0343046,0.425739,0.0804589,0.783325,0.708244,0.317259,0.847585,0.516005,0.677588,0.524713,0.416048,0.813237,0.187793,0.758858,0.473114,0.485737,0.729257,0.729945,0.55945,0.656791,0.984664,0.942105,0.796765,0.858891,0.120591,0.418764,0.419387,0.897979,0.725167,0.383016,0.207997,0.209637,0.617192,0.640151,0.583735,0.297217,0.701857,0.183979,0.658806,0.553212,0.752235,0.00280094,0.575977,0.855176,0.34602,0.0931853,0.0855709,0.304466,0.958311,0.597368,0.190733,0.184438,0.66451,0.686605,0.79268,0.181277,0.498191,0.552521,0.918954,0.432486,0.255059,0.396766,0.841582,0.29993,0.191231,0.254198,0.028777,0.380701,0.229552,0.0506006,0.924313,0.53508,0.619881,0.251593,0.697203,0.0407518,0.466921,0.21538,0.522667,0.884304,0.179107,0.988858,0.509922,0.713361,0.812802,0.804866,0.559791,0.0266854,0.121305,0.355269,0.730543,0.165164,0.073227,0.489385,0.958231,0.71022,0.393266,0.708139,0.0579381,0.0916106,0.725139,0.746306,0.976028,0.363822,0.341138,0.642833,0.455333,0.638398,0.851338,0.558576,0.495468,0.118618,0.73194,0.221934,0.00137806,0.155009,0.442452,0.27248,0.282142,0.360611,0.419566,0.965254,0.957958,0.244395,0.216632,0.449257,0.0010494,0.7772,0.530329,0.679584,0.849089,0.926606,0.131841,0.366229,0.520631,0.896835,0.287475,0.273953,0.305341,0.766356,0.92621,0.52599,0.120665,0.450131,0.43172,0.650203,0.997898,0.448043,0.393203,0.797915,0.492037,0.00717014,0.894495,0.0560632,0.26377,0.771092,0.3555,0.614538,0.651995,0.27348,0.882875,0.836249,0.790801,0.753785,0.494906,0.0461411,0.758675,0.0825274,0.114844,0.480649,0.384804,0.475214,0.927943,0.182146,0.548545,0.222781,0.991672,0.189746,0.46307,0.751171,0.307326,0.376633,0.0639389,0.435498,0.38944,0.95389,0.755753,0.0510989,0.691545,0.550475,0.481722,0.496703,0.912763,0.138058,0.448027,0.469682,0.947691,0.485295,0.0782135,0.315039,0.0770885,0.0355165,0.656776,0.133147,0.212206,0.0489148,0.226853,0.299131,0.329688,0.363342,0.0209425,0.227647,0.60729,0.554188,0.926696,0.431021,0.176882,0.988688,0.558227,0.291272,0.220257,0.341859,0.621428,0.704759,0.585004,0.0686433,0.227776,0.0552343,0.428763,0.152262,0.132735,0.628407,0.763673,0.802399,0.878584,0.813196,0.256089,0.6013,0.17934,0.460078,0.129402,0.578318,0.582506,0.601392,0.739422,0.32094,0.271933,0.865685,0.60186,0.98116,0.370395,0.393057,0.309667,0.708453,0.602267,0.378754,0.776118,0.541142,0.373575,0.919891,0.0393396,0.284673,0.553303,0.41256,0.552606,0.277421,0.416391,0.695105,0.904926,0.344035,0.929886,0.356532,0.602562,0.740991,0.652082,0.379286,0.34465,0.26873,0.482264,0.367592,0.203233,0.78262,0.969156,0.078866,0.339765,0.88434,0.567355,0.727841,0.63277,0.888081,0.752195,0.741788,0.565557,0.832241,0.906789,0.725985,0.464803,0.369182,0.623042,0.612452,0.84826,0.53177,0.840738,0.849884,0.14398,0.163307,0.919048,0.431619,0.797526,0.269954,0.468005,0.0978295,0.945031,0.125202,0.630639,0.826523,0.451958,0.836949,0.672478,0.230902,0.900884,0.43552,0.39637,0.670479,0.79975,0.666033,0.15135,0.399065,0.955919,0.791312,0.0926105,0.820732,0.0919147,0.550968,0.453756,0.179606,0.995415,0.244684,0.626068,0.33413,0.867198,0.584936,0.978321,0.214863,0.511708,0.754445,0.59712,0.29045,0.257661,0.872389,0.986862,0.0560576,0.444883,0.992281,0.437064,0.782682,0.164453,0.15754,0.650474,0.478669,0.740628,0.296626,0.00239003,0.860288,0.944141,0.867234,0.877766,0.320832,0.0672506,0.894584,0.333565,0.458394,0.686141,0.298961,0.812409,0.971011,0.172219,0.515416,0.332166,0.708927,0.139778,0.521956,0.175419,0.691972,0.508783,0.0132196,0.769585,0.355281,0.690043,0.354985,0.793835,0.848535,0.60472,0.6961,0.123689,0.884934,0.153586,0.881743,0.133005,0.224492,0.967877,0.980766,0.522427,0.697251,0.413911,0.849598,0.0549717,0.783111,0.74645,0.880693,0.789559,0.888481,0.973561,0.056036,0.807677,|0.655941,0.805874,0.779111,0.48754,0.536569,0.836678,0.00124556,0.839201,0.270238,0.0055331,0.280555,0.409435,0.272096,0.378374,0.108307,0.792539,0.889375,0.691344,0.933564,0.124954,0.471404,0.747241,0.649041,0.632812,0.924756,0.579381,0.778006,0.733608,0.68809,0.988447,0.714525,0.935484,0.28302,0.948789,0.302573,0.396205,0.478906,0.839524,0.402609,0.991641,0.0614793,0.577196,0.712171,0.139868,0.646282,0.553553,0.44668,0.202018,0.966312,0.993666,0.835959,0.922316,0.0352,0.284911,0.394496,0.446794,0.570593,0.251277,0.624048,0.400439,0.631129,0.666967,0.744152,0.495958,0.0788645,0.921684,0.393466,0.0972001,0.988029,0.557801,0.782677,0.225208,0.108099,0.767701,0.16777,0.561423,0.756589,0.643591,0.240728,0.712436,0.206595,0.370677,0.224568,0.154572,0.132245,0.856268,0.49136,0.789093,0.83395,0.115651,0.514124,0.618733,0.56668,0.225957,0.416782,0.385496,0.41991,0.599871,0.403861,0.405931,0.331027,0.0489246,0.588889,0.868907,0.149366,0.958419,0.627595,0.17387,0.18936,0.0323042,0.212636,0.600062,0.209236,0.261295,0.31344,0.706413,0.568942,0.538053,0.823943,0.147185,0.572076,0.313318,0.570317,0.872769,0.290927,0.965568,0.308723,0.813876,0.742855,0.703136,0.392838,0.318765,0.558059,0.0272279,0.177398,0.781296,0.99439,0.33842,0.914695,0.187525,0.137551,0.138701,0.845249,0.263766,0.963728,0.731795,0.459768,0.827187,0.348891,0.348266,0.1813,0.099504,0.608014,0.698617,0.790723,0.913811,0.936078,0.235665,0.880665,0.961018,0.260747,0.53433,0.546648,0.0778285,0.312907,0.295139,0.554019,0.0639665,0.781878,0.722021,0.960821,0.690113,0.501809,0.85393,0.331969,0.42211,0.892385,0.342302,0.18588,0.470439,0.0157002,0.107364,0.432615,0.82597,0.815071,0.905621,0.955463,0.608917,0.726124,0.151318,0.355249,0.91632,0.561602,0.545667,0.223567,0.637685,0.0253839,0.18016,0.949763,0.576618,0.40119,0.207092,0.734459,0.502572,0.175752,0.722722,0.200136,0.212282,0.234586,0.219182,0.396853,0.486648,0.927999,0.136111,0.459642,0.756874,0.276539,0.455404,0.48502,0.775523,0.0849609,0.280974,0.380095,0.308723,0.405725,0.354149,0.295313,0.069631,0.212136,0.94601,0.226704,0.885324,0.210411,0.00724995,0.252563,0.0229609,0.512157,0.393879,0.94329,0.777248,0.43844,0.979468,0.793613,0.941692,0.201874,0.6531,0.127293,0.133154,0.506125,0.116665,0.20848,0.764911,0.507012,0.537944,0.821383,0.0975646,0.126975,0.396425,0.4773,0.894409,0.805576,0.66505,0.884267,0.348204,0.543252,0.445142,0.469771,0.255147,0.0900984,0.434637,0.885706,0.709543,0.217994,0.969219,0.69931,0.528158,0.373976,0.591478,0.866972,0.119369,0.694916,0.99443,0.918749,0.195262,0.479571,0.448984,0.127382,0.372921,0.681283,0.146398,0.528048,0.804247,0.242135,0.613683,0.854232,0.719056,0.79401,0.27119,0.0243506,0.212285,0.850996,0.418408,0.419616,0.524781,0.719471,0.907937,0.911631,0.155518,0.820276,0.457834,0.538225,0.981655,0.0559417,0.610324,0.305179,0.604698,0.998382,0.966154,0.698801,0.184082,0.874418,0.102782,0.5548,0.152473,0.461373,0.402359,0.00830919,0.105754,0.756072,0.110154,0.330572,0.902402,0.614741,0.530959,0.705554,0.857085,0.178661,0.237999,0.282437,0.187786,0.740789,0.721428,0.166098,0.257234,0.195354,0.534344,0.425655,0.730842,0.532,0.254564,0.831778,0.305197,0.240626,0.616674,0.543767,0.200053,0.0157679,0.235307,0.334608,0.936387,0.264099,0.750934,0.396435,0.415868,0.360751,0.893772,0.36256,0.208841,0.796831,0.0547629,0.27439,0.898464,0.988732,0.632156,0.88227,0.672216,0.0626802,0.11495,0.453239,0.79202,0.089819,0.200833,0.684116,0.491551,0.430413,0.41097,0.772061,0.885615,0.7861,0.635033,0.27127,0.364017,0.215177,0.313495,0.521729,0.58639,0.0446171,0.656618,0.049826,0.294059,0.366422,0.918031,0.435056,0.352074,0.496657,0.503791,0.997178,0.848225,0.623941,0.639941,0.226179,0.194825,0.76698,0.983018,0.510674,0.703614,0.9909,0.61493,0.324566,0.713969,0.0667705,0.104182,0.346939,0.184693,0.366763,0.30299,0.509665,0.105927,0.107077,0.893503,0.620968,0.598769,0.806809,0.556367,0.496023,0.763183,0.73951,0.374762,0.748091,0.403459,0.264541,0.308999,0.416913,0.686905,0.352813,0.513853,0.564156,0.6064,0.157577,0.46196,0.342001,0.233194,0.541762,0.519744,0.420474,0.672404,0.519537,0.808517,0.387212,0.812333,0.26703,0.494488,0.923379,0.146393,0.62667,0.787498,0.635687,0.934617,0.683322,0.614571,0.989739,0.730478,0.276795,0.571273,0.287632,0.63172,0.4371,0.630358,0.850905,0.954263,0.152973,0.42366,0.616665,0.488686,0.297786,0.32064,0.213157,0.721496,0.971471,0.512076,0.940173,0.606603,0.208287,0.304381,0.678966,0.411522,0.218786,0.268504,0.188228,0.607983,0.213969,0.358539,0.778086,0.504208,0.808472,0.0733033,0.773067,0.982942,0.972485,0.532312,0.266175,0.0445641,0.467547,0.185907,0.462519,0.677415,0.550723,0.919363,0.433944,0.291211,0.303469,0.972904,0.192622,0.135641,0.399089,0.938492,0.366462,0.54515,0.358726,0.00573289,0.144585,0.0143212,0.23977,0.0186024,0.544057,0.331284,0.781196,0.292702,0.747412,0.682033,0.618955,0.0574975,0.890869,0.792813,0.920774,0.177079,0.860413,0.608719,0.686408,0.605746,0.602487,0.703179,0.241368,0.524685,0.136261,0.545724,0.967763,0.0250763,0.017992,0.914298,0.162238,0.246558,0.726173,0.807185,0.149285,0.517591,0.0168934,0.0834738,0.66281,0.849795,0.369014,0.837766,0.0444159,0.474576,0.157127,0.663753,0.150877,0.348138,0.920763,0.134948,0.958122,0.802363,0.290564,0.897579,0.268227,0.77002,0.484191,0.431505,0.314872,0.584265,0.916922,0.77062,0.638369,0.255953,0.23652,0.866647,0.260218,0.893258,0.145594,0.145636,0.970886,0.758155,0.558316,0.74546,0.774906,0.902715,0.577593,0.915451,0.273818,0.532331,0.769789,0.35713,0.828656,0.0933903,0.619393,0.259569,0.598691,0.980043,0.135171,0.0523862,0.574498,0.470785,0.585321,0.415494,0.633023,0.274172,0.934707,0.906856,0.832754,0.0245705,0.695469,0.472869,0.345805,0.858593,0.210431,0.335706,0.79173,0.737764,0.64314,0.854946,0.111436,0.192022,0.067664,0.0535158,0.179255,0.443902,0.400869,0.251785,0.00394493,0.408583,0.881197,0.87749,0.574002,0.46175,0.768855,0.16451,0.0788424,0.187224,0.512973,0.168951,0.698766,0.00380021,0.36735,0.754836,0.881306,0.152674,0.249023,0.812605,0.781954,0.01642,0.612999,0.992431,0.640866,0.994031,0.203697,0.515349,0.116454,0.998023,0.881605,0.279217,0.322801,0.33596,0.637813,0.390105,0.0178294,0.0541548,0.681803,0.400021,0.617733,0.696837,0.422587,0.929163,0.807657,0.213973,0.354755,0.318713,0.76597,0.0304775,0.868271,0.829093,0.449104,0.667338,0.104895,0.635083,0.163979,0.706985,0.675253,0.349874,0.351493,0.715005,0.167067,0.77891,0.339672,0.168979,0.381226,0.116464,0.332041,0.269962,0.802019,0.677193,0.837221,0.912046,0.320141,0.930668,0.424777,0.709908,0.486491,0.84525,0.294539,0.848895,0.851642,0.760488,0.308396,0.281197,0.169749,0.137364,0.541583,0.787642,0.254809,0.817491,0.674444,0.888136,0.288303,0.748484,0.671993,0.668966,0.493271,0.636701,0.169131,0.122667,0.461741,0.45811,0.37297,0.335787,0.875781,0.380462,0.174833,0.0916095,0.0338518,0.791177,0.75495,0.202665,0.759357,0.0983377,0.777957,0.516517,0.16816,0.609594,0.65814,0.144659,0.173609,0.713857,0.962637,0.903281,0.893212,0.387882,0.903641,0.367703,0.820028,0.0620827,0.00479072,0.448623,0.357645,0.964264,0.568326,0.00546443,0.351953,0.318428,0.859445,0.688722,0.919869,0.500331,0.644643,0.482733,0.8294,0.601437,0.0873891,0.920771,0.750532,0.229513,0.161661,0.905061,0.443254,0.637499,0.392012,0.860154,0.189273,0.816177,0.866618,0.113383,0.0407177,0.29537,0.382185,0.114675,0.378311,0.680816,0.176121,0.397058,0.100596,0.7107,0.0363036,0.274002,0.944715,0.171763,0.574775,0.966155,0.497193,0.769884,0.223182,0.723974,0.0536445,0.907068,0.933335,0.476591,0.812284,0.478724,0.231379,0.564888,0.495542,0.59316,0.644641,0.743586,0.398185,0.977966,0.472845,0.059036,0.25023,0.486305,0.793716,0.898758,0.830194,0.158783,0.322354,0.0695721,0.26754,0.122985,0.750414,0.596172,0.494751,0.64807,0.484994,0.960761,0.316032,0.431594,0.483865,0.461641,0.918101,0.786892,0.711976,0.382878,0.590184,0.174785,0.674546,0.611846,0.335401,0.147391,0.696405,0.156425,0.326088,0.525258,0.82641,0.974115,0.665719,0.865375,0.166988,0.883568,0.789166,0.288712,0.355491,0.216363,0.965638,0.408551,0.237335,0.579555,0.534284,0.672056,0.082979,0.582589,0.341895,0.490474,0.113041,0.623523,0.597896,0.515006,0.338024,0.811211,0.0590466,0.0765566,0.48402,0.698945,0.670226,0.578599,0.945599,0.043083,0.292085,0.151173,0.6349,0.602544,0.347974,0.102638,0.125541,0.398771,0.957065,0.706044,0.734643,0.990653,0.310302,0.93022,0.791124,0.334271,0.753018,0.371102,0.441501,0.167002,0.293363,0.343701,0.955754,0.524296,0.360156,0.0552472,0.392106,0.00707525,0.907437,0.736119,0.0838226,0.542226,0.989791,0.219062,0.820671,0.419604,0.181165,0.186625,0.356517,0.972809,0.0492023,0.782934,0.368841,0.812181,0.732941,0.98536,0.492359,0.0818404,0.404769,0.588393,0.207193,0.00330442,0.925772,0.293916,0.347683,0.168235,0.666779,0.267518,0.896914,0.103065,0.162698,0.275857,0.0839296,0.356523,0.301436,0.646936,0.128563,0.130757,0.085331,0.822753,0.401104,0.245548,0.949175,0.636361,0.195674,0.908461,0.737324,0.653017,0.287953,0.377499,0.0568643,0.499234,0.900154,0.857521,0.486542,0.569198,|0.136567,0.885646,0.834704,0.77487,0.216921,0.120262,0.272603,0.478611,0.191515,0.507764,0.136,0.849618,0.148873,0.47736,0.698349,0.347786,0.429098,0.213203,0.771868,0.587621,0.31999,0.507796,0.651519,0.0636665,0.352833,0.572854,0.27582,0.5594,0.571599,0.263742,0.492987,0.296273,0.0794747,0.0150989,0.0401483,0.364336,0.129154,0.266265,0.545529,0.960208,0.602329,0.948498,0.879724,0.804722,0.46978,0.736837,0.491186,0.265883,0.188061,0.21403,0.0372351,0.786153,0.942252,0.698672,0.0424711,0.703431,0.902525,0.613366,0.177815,0.235006,0.314234,0.315613,0.981555,0.99388,0.313715,0.95356,0.317401,0.0125184,0.238182,0.245966,0.164429,0.939529,0.332297,0.198005,0.00211549,0.608444,0.388718,0.0882603,0.712881,0.321923,0.349538,0.362537,0.415459,0.871107,0.501837,0.225104,0.408235,0.132827,0.0293343,0.922716,0.989092,0.660564,0.742437,0.164081,0.347737,0.186122,0.0225071,0.194731,0.0363236,0.750795,0.291844,0.395037,0.74495,0.789063,0.381288,0.546789,0.611364,0.19216,0.91276,0.000266433,0.681836,0.373917,0.0657867,0.59009,0.871115,0.747374,0.84739,0.732331,0.610587,0.0869191,0.795687,0.18504,0.531474,0.843964,0.18304,0.608235,0.590023,0.436224,0.367955,0.653335,0.914384,0.663002,0.730365,0.256738,0.945144,0.650291,0.468005,0.392645,0.200352,0.397827,0.647896,0.0512974,0.400671,0.765072,0.924233,0.693637,0.026243,0.387439,0.127387,0.0866818,0.139361,0.610483,0.547641,0.252438,0.0310829,0.107891,0.863243,0.400247,0.622953,0.508417,0.20115,0.98078,0.252813,0.917274,0.131087,0.38795,0.843741,0.197736,0.0222403,0.878146,0.236475,0.921219,0.595987,0.771067,0.516642,0.734738,0.751395,0.221887,0.416623,0.382146,0.473876,0.661366,0.445405,0.131644,0.927934,0.971254,0.524042,0.209649,0.151354,0.891447,0.97482,0.0920486,0.891963,0.590819,0.0369232,0.627962,0.845026,0.0514819,0.121228,0.103322,0.664277,0.459267,0.496212,0.188379,0.754342,0.308919,0.492126,0.60389,0.764787,0.630971,0.087472,0.569988,0.257149,0.685103,0.685438,0.57096,0.22471,0.912236,0.390235,0.708323,0.691694,0.789984,0.726562,0.0124694,0.00204635,0.405581,0.905485,0.916891,0.646825,0.453746,0.37776,0.68434,0.0526881,0.318708,0.0814348,0.367508,0.567933,0.7328,0.66052,0.599111,0.841447,0.95029,0.966008,0.267525,0.389103,0.477518,0.264871,0.394811,0.469431,0.650756,0.798375,0.377205,0.83302,0.30907,0.8774,0.155641,0.964433,0.815213,0.239625,0.811769,0.8909,0.378657,0.188475,0.492482,0.0333791,0.677317,0.716524,0.935027,0.263409,0.151628,0.940615,0.363937,0.314521,0.265782,0.240192,0.109211,0.545978,0.133175,0.327428,0.179496,0.723794,0.925705,0.782601,0.635367,0.565216,0.18474,0.962573,0.335277,0.788751,0.172385,0.0944514,0.52849,0.708542,0.477602,0.288271,0.241614,0.799715,0.454838,0.807107,0.725558,0.200348,0.481888,0.379454,0.908912,0.990721,0.4925,0.33304,0.55061,0.226642,0.913357,0.585519,0.417762,0.216314,0.0908316,0.749128,0.305491,0.256473,0.874223,0.395583,0.934535,0.099684,0.99034,0.602613,0.520737,0.0192721,0.197618,0.793154,0.929305,0.753952,0.439096,0.152163,0.682302,0.268449,0.686961,0.142673,0.904207,0.0194556,0.696305,0.269894,0.212912,0.0817187,0.0722526,0.846778,0.495029,0.882084,0.739154,0.189567,0.742593,0.788108,0.170974,0.0368745,0.504136,0.521811,0.0388701,0.605819,0.844728,0.625791,0.670621,0.759428,0.72191,0.0471978,0.422014,0.541249,0.181565,0.878182,0.318519,0.901846,0.968568,0.00634116,0.472546,0.444911,0.666977,0.201297,0.769863,0.968298,0.264079,0.287828,0.587668,0.0982003,0.769102,0.289165,0.776316,0.55543,0.996077,0.268992,0.411331,0.389532,0.164385,0.695507,0.999518,0.980387,0.592187,0.095831,0.729406,0.706526,0.647551,0.334819,0.0954748,0.705867,0.746621,0.700402,0.407515,0.0264274,0.0589873,0.0640351,0.333936,0.130895,0.275201,0.773864,0.782211,0.559211,0.71787,0.480152,0.558411,0.386809,0.922369,0.0426686,0.177883,0.184335,0.334638,0.823879,0.810987,0.905726,0.760626,0.769989,0.20748,0.487521,0.714087,0.308201,0.480641,0.870282,0.664399,0.162727,0.104437,0.0534211,0.641898,0.532574,0.420905,0.912863,0.945984,0.0412737,0.590998,0.699986,0.94737,0.512992,0.935433,0.837758,0.519038,0.83095,0.814456,0.706993,0.786141,0.921034,0.94541,0.670988,0.260832,0.957315,0.297927,0.774047,0.474123,0.168181,0.559883,0.0380616,0.482973,0.589159,0.0220876,0.528967,0.902707,0.499367,0.312212,0.0368939,0.230115,0.771901,0.306876,0.128374,0.162999,0.475106,0.0253206,0.382592,0.840617,0.643957,0.212392,0.548731,0.948325,0.212043,0.938552,0.76878,0.762832,0.87464,0.26547,0.0793666,0.843633,0.781659,0.0878709,0.474603,0.35798,0.482847,0.891122,0.456922,0.67853,0.150969,0.624716,0.511207,0.0595183,0.139788,0.598174,0.262491,0.157972,0.55849,0.615343,0.361452,0.17363,0.509785,0.0343643,0.375769,0.572243,0.327609,0.114024,0.0685418,0.990107,0.83895,0.609771,0.220231,0.0618705,0.596896,0.564367,0.338194,0.425778,0.559502,0.371586,0.683789,0.816879,0.656296,0.82524,0.185162,0.0155951,0.889532,0.0769338,0.799567,0.482242,0.286825,0.588236,0.226206,0.639303,0.761176,0.300952,0.38646,0.0103953,0.381371,0.663402,0.307003,0.741824,0.196998,0.64468,0.0255983,0.654062,0.654432,0.453199,0.941475,0.57203,0.335142,0.242806,0.886313,0.17911,0.942549,0.925866,0.629948,0.138,0.208499,0.860775,0.926612,0.216866,0.353537,0.952249,0.963102,0.898874,0.212036,0.810228,0.937147,0.274093,0.788654,0.865717,0.131716,0.626295,0.832052,0.133233,0.585488,0.421378,0.830132,0.77748,0.722147,0.258416,0.174782,0.973887,0.686634,0.173462,0.695512,0.592095,0.277474,0.996182,0.356291,0.564718,0.684362,0.478451,0.188507,0.750765,0.775118,0.182208,0.857873,0.13235,0.0838304,0.905438,0.47338,0.767678,0.0478752,0.454078,0.00418359,0.556663,0.272853,0.958294,0.8538,0.550976,0.554892,0.220833,0.283657,0.647651,0.569249,0.634841,0.40782,0.186229,0.951812,0.367813,0.770812,0.693976,0.573816,0.159245,0.319527,0.436949,0.236382,0.30856,0.653208,0.34286,0.562129,0.439806,0.685028,0.521526,0.84677,0.681362,0.565692,0.13102,0.702329,0.488092,0.0419296,0.681241,0.965379,0.88123,0.484152,0.149814,0.279746,0.672657,0.47021,0.535212,0.943379,0.840299,0.78581,0.287902,0.86365,0.261025,0.733597,0.968597,0.200917,0.372626,0.717963,0.579958,0.479482,0.0233607,0.485085,0.0434133,0.54127,0.266294,0.638749,0.598377,0.107099,0.675703,0.271503,0.564333,0.97493,0.200956,0.420094,0.684835,0.0139806,0.579635,0.720284,0.752388,0.610964,0.49788,0.692455,0.121402,0.820607,0.690419,0.48951,0.877555,0.697362,0.707021,0.12759,0.261977,0.0685606,0.254686,0.195908,0.345207,0.477467,0.0596775,0.999805,0.490363,0.836182,0.270294,0.10654,0.0892007,0.112168,0.169474,0.133313,0.988129,0.51777,0.0861189,0.475582,0.396412,0.827974,0.956963,0.419078,0.0128573,0.411947,0.648993,0.869806,0.769182,0.639399,0.781983,0.31568,0.106991,0.988794,0.149591,0.985984,0.847423,0.354924,0.37313,0.599378,0.239156,0.173866,0.0381165,0.103995,0.738705,0.00500482,0.699224,0.267471,0.578984,0.553769,0.966779,0.339944,0.780807,0.083956,0.254359,0.629221,0.547482,0.624577,0.599417,0.200196,0.823611,0.695486,0.74088,0.29006,0.773146,0.0693958,0.68925,0.517148,0.716509,0.796761,0.696756,0.678091,0.481409,0.645168,0.550739,0.604836,0.397587,0.9331,0.665236,0.792176,0.214697,0.90506,0.494561,0.200687,0.392355,0.023598,0.973138,0.146056,0.259893,0.0948427,0.36415,0.996637,0.988575,0.20358,0.411638,0.981574,0.127039,0.0107189,0.98312,0.48955,0.738876,0.516595,0.805438,0.641705,0.624869,0.373663,0.112868,0.664288,0.0902997,0.085053,0.652059,0.274407,0.143246,0.566085,0.461166,0.902694,0.136289,0.183047,0.350264,0.230798,0.0841873,0.817898,0.136274,0.984782,0.740505,0.961817,0.169449,0.121398,0.613387,0.459044,0.634665,0.963505,0.490174,0.0555147,0.523795,0.149214,0.208934,0.645391,0.78306,0.443398,0.445324,0.987904,0.262508,0.181478,0.562406,0.899692,0.00234735,0.173312,0.743663,0.812126,0.0120012,0.917106,0.145833,0.685904,0.858707,0.0194136,0.304077,0.681968,0.227968,0.121753,0.887035,0.0811125,0.0878922,0.792086,0.900619,0.415276,0.940047,0.896521,0.474517,0.383831,0.621,0.0483888,0.293111,0.180764,0.246982,0.669603,0.453621,0.572166,0.966018,0.217904,0.0577485,0.515195,0.167859,0.0907427,0.259859,0.256348,0.984937,0.337794,0.176336,0.670568,0.173755,0.969411,0.382868,0.47346,0.834475,0.900417,0.486972,0.654884,0.036038,0.217526,0.556857,0.479545,0.310516,0.622957,0.563241,0.804681,0.781788,0.345031,0.595042,0.734618,0.671918,0.779983,0.742545,0.628131,0.993825,0.459213,0.00517863,0.596618,0.665397,0.56019,0.721554,0.199918,0.608423,0.277224,0.136844,0.456498,0.481356,0.979792,0.378996,0.839172,0.943361,0.319712,0.81331,0.485502,0.905646,0.431856,0.288228,0.388455,0.198537,0.829971,0.840636,0.451739,0.859067,0.636803,0.336175,0.586755,0.146269,0.0163715,0.933047,0.179456,0.139957,0.39156,0.785616,0.205697,0.463229,0.92332,0.989682,0.789391,0.860083,0.256274,0.77292,0.542281,0.741403,0.331238,0.893196,0.858454,0.797391,0.805721,0.211706,0.790486,0.0831652,0.407597,0.286207,0.594928,0.725808,0.961454,0.928755,0.106842,0.763617,0.153928,0.11148,0.769586,0.217205,0.273953,0.0318794,0.890558,0.275041,0.213355,0.61839,0.162255,0.726254,0.696874,0.855528,0.219455,0.702958,|0.92291,0.916866,0.396285,0.788369,0.948616,0.365414,0.285627,0.0666583,0.0996339,0.98813,0.714837,0.365384,0.250033,0.736686,0.721699,0.915444,0.657784,0.967139,0.862638,0.365319,0.907815,0.761779,0.0421715,0.94702,0.967838,0.153753,0.890219,0.48056,0.883663,0.415504,0.593378,0.938549,0.725271,0.704905,0.2838,0.979896,0.634786,0.139451,0.910412,0.843941,0.343166,0.752363,0.509825,0.586637,0.925915,0.529333,0.841605,0.103489,0.209696,0.0104243,0.293524,0.571542,0.249447,0.835098,0.728953,0.566753,0.83509,0.768582,0.0680602,0.41533,0.734473,0.339089,0.222923,0.315967,0.455834,0.326517,0.0573226,0.115039,0.687692,0.0851117,0.687347,0.825526,0.757863,0.990628,0.528751,0.213507,0.105174,0.628688,0.235548,0.28496,0.18984,0.916395,0.697804,0.556624,0.198748,0.0900126,0.629413,0.115488,0.604604,0.415733,0.812059,0.513923,0.252463,0.944807,0.34805,0.505106,0.801161,0.474991,0.1343,0.488329,0.753804,0.106036,0.905858,0.921762,0.0389202,0.801039,0.844874,0.25561,0.57409,0.42078,0.347266,0.616094,0.771095,0.486011,0.341378,0.523259,0.356793,0.847264,0.0553197,0.168095,0.903151,0.889265,0.652669,0.856755,0.657307,0.175991,0.139736,0.618189,0.988924,0.886524,0.683771,0.687817,0.382711,0.26212,0.197999,0.770968,0.791188,0.241763,0.97896,0.666084,0.222401,0.628871,0.684849,0.267972,0.624118,0.518359,0.16533,0.405139,0.00813174,0.442221,0.433907,0.0707766,0.600833,0.423608,0.497436,0.0110018,0.809261,0.493197,0.674221,0.172064,0.694638,0.0117732,0.069082,0.85511,0.454482,0.748072,0.0971654,0.198599,0.695005,0.637327,0.928092,0.375862,0.752412,0.721282,0.078403,0.545705,0.645887,0.976849,0.179768,0.676083,0.169314,0.977973,0.479279,0.365921,0.357973,0.734381,0.743808,0.663377,0.829598,0.728687,0.101701,0.302585,0.0922826,0.00833702,0.328956,0.467899,0.419378,0.714822,0.0236792,0.793184,0.718377,0.857173,0.158348,0.664053,0.524237,0.0164787,0.147987,0.480179,0.425436,0.736545,0.0742463,0.731872,0.565793,0.20653,0.592537,0.978706,0.930551,0.434502,0.102997,0.127643,0.187602,0.194981,0.916664,0.290926,0.999119,0.919629,0.0507936,0.808705,0.455194,0.49195,0.599635,0.0246511,0.297478,0.456428,0.407915,0.479759,0.685765,0.997962,0.642981,0.391159,0.475959,0.579091,0.551444,0.637936,0.0990904,0.913633,0.836016,0.299163,0.733233,0.572065,0.407424,0.932588,0.137267,0.613862,0.011959,0.368024,0.976975,0.62129,0.479819,0.910079,0.245721,0.883927,0.691446,0.695048,0.754405,0.797467,0.204113,0.714911,0.566817,0.0369406,0.670302,0.765004,0.565094,0.964489,0.539955,0.611109,0.532501,0.0187556,0.600308,0.439286,0.673562,0.894382,0.461415,0.59236,0.14827,0.0558777,0.350118,0.726346,0.493813,0.786701,0.496929,0.753971,0.254189,0.609151,0.402096,0.690261,0.0455382,0.288312,0.837563,0.545567,0.765495,0.442156,0.937457,0.686097,0.947848,0.44081,0.207846,0.316173,0.846433,0.0867357,0.185501,0.884439,0.484221,0.407466,0.223479,0.583371,0.443113,0.894763,0.519661,0.447611,0.157086,0.201627,0.936467,0.835491,0.694344,0.570118,0.609232,0.14606,0.547747,0.526854,0.0598524,0.155621,0.137705,0.846608,0.256172,0.41136,0.685244,0.00823522,0.150005,0.155999,0.522781,0.710164,0.998146,0.558158,0.800228,0.596553,0.721628,0.749697,0.0501642,0.449288,0.573088,0.074699,0.980444,0.363532,0.640153,0.755338,0.704943,0.709997,0.759315,0.982866,0.537107,0.405455,0.292157,0.907072,0.837304,0.661638,0.19165,0.321321,0.0217649,0.337331,0.0221669,0.0399686,0.583042,0.641067,0.334361,0.583006,0.305039,0.293683,0.401207,0.839819,0.184339,0.973922,0.300095,0.272296,0.69942,0.441716,0.890295,0.607928,0.260108,0.591922,0.19514,0.540656,0.584815,0.923917,0.832394,0.81031,0.942525,0.252191,0.557673,0.744478,0.257255,0.183366,0.232047,0.788277,0.145091,0.334538,0.372881,0.808553,0.931739,0.767142,0.826253,0.432686,0.174581,0.860536,0.00178891,0.602071,0.106016,0.389738,0.687302,0.726154,0.121276,0.475786,0.185652,0.836004,0.29683,0.626074,0.715046,0.128173,0.989088,0.453308,0.151237,0.424286,0.805042,0.112474,0.328464,0.0612835,0.530778,0.177774,0.49505,0.0371543,0.297327,0.415821,0.262709,0.576368,0.531049,0.417422,0.0411631,0.163053,0.898521,0.942271,0.531727,0.982017,0.620979,0.0792134,0.573341,0.559592,0.923303,0.680399,0.350706,0.594194,0.446348,0.450582,0.735833,0.569546,0.839546,0.013394,0.957362,0.132564,0.749772,0.242953,0.35499,0.471176,0.969749,0.137074,0.630468,0.17386,0.808771,0.0846733,0.544762,0.545739,0.678171,0.379285,0.123918,0.269887,0.791619,0.710094,0.445555,0.391917,0.202674,0.534967,0.186308,0.490812,0.955933,0.135522,0.989817,0.777937,0.507261,0.182488,0.070349,0.00321984,0.622429,0.587099,0.506208,0.818356,0.545954,0.486544,0.551314,0.184866,0.952571,0.309406,0.766864,0.254991,0.915247,0.387619,0.0930519,0.927134,0.334307,0.943669,0.227039,0.365918,0.612475,0.160274,0.126119,0.75162,0.725159,0.875821,0.958503,0.637821,0.0382985,0.289881,0.763976,0.444668,0.234245,0.362402,0.188184,0.845003,0.497777,0.0039773,0.97353,0.217499,0.150524,0.305983,0.278067,0.69552,0.204544,0.0103352,0.519979,0.38929,0.0656883,0.399566,0.751744,0.348892,0.78425,0.925029,0.955286,0.0646995,0.562215,0.0441803,0.607481,0.615822,0.602428,0.219215,0.111175,0.579203,0.829768,0.850996,0.770326,0.351883,0.774577,0.281223,0.322973,0.255916,0.486061,0.761525,0.825921,0.302285,0.294607,0.733414,0.736613,0.41788,0.279424,0.597753,0.799473,0.164385,0.8119,0.0205784,0.293119,0.00232142,0.236603,0.97944,0.149228,0.156429,0.42655,0.100065,0.673448,0.80758,0.849627,0.54414,0.612658,0.106229,0.490714,0.96519,0.260918,0.572507,0.518476,0.679991,0.0255435,0.704097,0.860304,0.0315572,0.663997,0.232532,0.420851,0.215919,0.44518,0.429451,0.176621,0.493573,0.615621,0.820967,0.88274,0.341576,0.748759,0.0153978,0.245324,0.661436,0.801436,0.303722,0.24031,0.730194,0.636128,0.60768,0.819276,0.745609,0.876239,0.485069,0.177374,0.820978,0.980853,0.485124,0.568396,0.308972,0.0474908,0.309369,0.59139,0.483154,0.0760289,0.279231,0.826732,0.976425,0.881257,0.398151,0.789289,0.0296628,0.413303,0.576762,0.31927,0.498702,0.612387,0.201466,0.791971,0.244263,0.994328,0.418518,0.217384,0.0905769,0.735876,0.687704,0.983284,0.0136562,0.507426,0.905515,0.707651,0.775814,0.217735,0.214257,0.862295,0.774125,0.473003,0.00568259,0.0927669,0.210986,0.652609,0.377768,0.546354,0.345141,0.0810357,0.893689,0.401093,0.179874,0.31147,0.350711,0.643923,0.394713,0.699437,0.538801,0.538822,0.453828,0.128781,0.927683,0.200355,0.61178,0.770312,0.405704,0.298678,0.301133,0.770126,0.824632,0.872789,0.486844,0.523853,0.18163,0.822437,0.890172,0.80664,0.109514,0.0158412,0.492787,0.78554,0.574826,0.388698,0.665208,0.236872,0.70292,0.752532,0.543255,0.620123,0.508877,0.891484,0.0132479,0.040567,0.329565,0.157392,0.579381,0.220177,0.324147,0.401466,0.384844,0.122866,0.0552625,0.891846,0.767331,0.865845,0.927398,0.420448,0.0307796,0.421991,0.0966809,0.265431,0.845369,0.986005,0.294135,0.969718,0.413047,0.238831,0.290977,0.649462,0.763295,0.877047,0.312524,0.036119,0.17495,0.180517,0.538324,0.226968,0.645134,0.437761,0.482224,0.162454,0.123619,0.946015,0.593844,0.979532,0.824816,0.20348,0.603847,0.71342,0.445461,0.529664,0.905275,0.957995,0.161974,0.912597,0.980795,0.928081,0.639077,0.676041,0.662435,0.728218,0.292242,0.0292156,0.550544,0.848067,0.568745,0.557769,0.180026,0.270132,0.65415,0.759924,0.329452,0.10447,0.25428,0.610435,0.914294,0.423444,0.527247,0.400123,0.557634,0.812025,0.208296,0.50942,0.790446,0.354276,0.674052,0.475701,0.660918,0.229588,0.995486,0.78894,0.582951,0.596037,0.856192,0.264968,0.436513,0.405461,0.453927,0.546214,0.494208,0.10873,0.363884,0.283587,0.412294,0.328825,0.586444,0.00770926,0.975064,0.550652,0.337721,0.0052458,0.207386,0.350005,0.079806,0.779663,0.156752,0.828975,0.722737,0.55163,0.453625,0.96701,0.15435,0.317985,0.276092,0.187136,0.705949,0.235703,0.761751,0.677309,0.861592,0.0374046,0.618481,0.180848,0.483381,0.281873,0.71109,0.487109,0.619597,0.687172,0.771061,0.872068,0.193411,0.442443,0.302053,0.549697,0.0378969,0.410993,0.913669,0.414556,0.712169,0.251827,0.764068,0.729303,0.553579,0.236075,0.964571,0.526103,0.323776,0.177649,0.685068,0.760095,0.389332,0.397348,0.973475,0.74875,0.168557,0.545379,0.618389,0.525846,0.224853,0.587662,0.693473,0.294638,0.783045,0.186206,0.765485,0.91783,0.0652722,0.268152,0.341239,0.533766,0.909137,0.195528,0.354824,0.197463,0.163639,0.546637,0.47172,0.22171,0.224171,0.0805475,0.60916,0.502653,0.206715,0.680775,0.531812,0.270189,0.145705,0.130791,0.525508,0.171327,0.51649,0.479935,0.287888,0.0339398,0.769229,0.0386783,0.583475,0.112252,0.503797,0.631924,0.650621,0.819862,0.213839,0.0970232,0.570962,0.747928,0.322871,0.781006,0.045716,0.462247,0.275104,0.602625,0.709393,0.349503,0.677542,0.782303,0.522179,0.518367,0.480893,0.417943,0.650485,0.85724,0.235057,0.24922,0.845704,0.859661,0.401239,0.0852975,0.11712,0.744617,0.782545,0.356693,0.869747,0.843989,0.0305702,0.71532,0.328964,0.885442,0.037649,0.127637,0.922872,0.365778,0.300643,0.233278,0.56202,0.315523,0.960324,0.584584,0.977419,0.197813,0.764127,0.703432,0.649073,0.863262,0.944229,0.857679,0.859782,0.419307,0.412061,0.48105,0.889474,|0.306667,0.906247,0.91522,0.484573,0.844802,0.994487,0.686804,0.363189,0.276363,0.413684,0.774398,0.478955,0.966972,0.324565,0.986752,0.124342,0.65444,0.521901,0.200789,0.500137,0.427759,0.398037,0.934946,0.512729,0.905935,0.0346878,0.549163,0.812041,0.364665,0.44808,0.0879575,0.776286,0.40537,0.420084,0.703578,0.566372,0.631585,0.826743,0.0396251,0.645831,0.757354,0.398233,0.923687,0.341024,0.76464,0.689302,0.0761617,0.673612,0.194634,0.652713,0.932093,0.374843,0.488343,0.822179,0.48006,0.624836,0.411209,0.80082,0.677174,0.20037,0.328299,0.66419,0.326896,0.768455,0.573852,0.264195,0.558668,0.393438,0.270853,0.880009,0.171847,0.258244,0.641377,0.102138,0.991597,0.863875,0.382875,0.440742,0.293639,0.951245,0.672244,0.597872,0.534797,0.292014,0.271464,0.0903924,0.711821,0.758401,0.63531,0.911299,0.016005,0.495021,0.0458673,0.457308,0.133302,0.860501,0.865508,0.615385,0.403157,0.0473647,0.726102,0.300185,0.437938,0.578481,0.964819,0.87407,0.607381,0.961798,0.274428,0.240679,0.250158,0.532083,0.634189,0.769186,0.108468,0.10262,0.80071,0.835329,0.9432,0.531455,0.0724284,0.0539368,0.487348,0.0963864,0.390734,0.634126,0.070683,0.913538,0.592862,0.0020206,0.367508,0.0117804,0.677781,0.667582,0.208275,0.615534,0.715299,0.123852,0.621938,0.32632,0.240455,0.813999,0.406197,0.0894974,0.184622,0.451239,0.556184,0.936796,0.197824,0.719376,0.878267,0.877424,0.508597,0.821738,0.608007,0.866339,0.573611,0.365066,0.372466,0.727302,0.278722,0.38948,0.429901,0.71053,0.399706,0.764344,0.327082,0.880241,0.279464,0.945205,0.738723,0.275491,0.610632,0.647369,0.53442,0.398964,0.081774,0.455572,0.92501,0.336074,0.202024,0.415702,0.947092,0.21707,0.946544,0.111647,0.435596,0.23266,0.626203,0.782782,0.868835,0.932722,0.0586292,0.881779,0.422599,0.788957,0.95002,0.261021,0.0597088,0.288753,0.770493,0.0105318,0.0946931,0.185162,0.0622545,0.533132,0.650404,0.408141,0.948906,0.77884,0.783805,0.835571,0.105453,0.745212,0.444554,0.506693,0.723732,0.487145,0.259004,0.909064,0.455788,0.281082,0.695914,0.768212,0.406464,0.678701,0.58872,0.0126783,0.21961,0.742871,0.493269,0.260979,0.0343777,0.0913999,0.778613,0.102611,0.992049,0.53196,0.142586,0.924086,0.986488,0.685747,0.653343,0.503356,0.885571,0.357365,0.588538,0.684305,0.380773,0.261714,0.924532,0.181408,0.0686081,0.515621,0.43576,0.861379,0.676254,0.815485,0.573187,0.970379,0.758129,0.217562,0.562965,0.44894,0.496468,0.271129,0.864606,0.467714,0.960155,0.441367,0.962532,0.842863,0.86349,0.606922,0.407442,0.00327265,0.348082,0.792943,0.220991,0.782318,0.68371,0.0969653,0.231254,0.582684,0.594389,0.946309,0.972189,0.639902,0.64778,0.844323,0.00471765,0.488413,0.547556,0.677249,0.359979,0.767007,0.804875,0.279551,0.750034,0.694925,0.98525,0.695495,0.264807,0.409926,0.811237,0.0368847,0.400157,0.772392,0.424591,0.953544,0.459437,0.541622,0.894518,0.331339,0.787373,0.727589,0.0396413,0.580348,0.206225,0.678393,0.876005,0.0872505,0.87853,0.578486,0.522405,0.0169191,0.286816,0.162429,0.0507833,0.703257,0.212177,0.993922,0.982835,0.681014,0.419428,0.974567,0.938597,0.159122,0.550757,0.364805,0.36963,0.610054,0.0209938,0.682583,0.0930426,0.521201,0.0500586,0.907908,0.426779,0.696097,0.390729,0.458349,0.963247,0.581162,0.408781,0.959006,0.816807,0.688532,0.361807,0.742446,0.62638,0.757164,0.401933,0.199146,0.121148,0.537849,0.44871,0.416941,0.0889421,0.367591,0.81666,0.544085,0.151582,0.572017,0.721786,0.791081,0.939811,0.271672,0.909683,0.478767,0.120173,0.16416,0.955867,0.247357,0.304708,0.827481,0.14859,0.785063,0.847822,0.737864,0.802432,0.637867,0.923545,0.428778,0.374821,0.661549,0.465375,0.782075,0.143506,0.36853,0.485901,0.594886,0.821823,0.708264,0.905316,0.237258,0.829557,0.854018,0.960343,0.731128,0.00486213,0.2661,0.397095,0.989427,0.083234,0.256192,0.160459,0.436921,0.0243949,0.140881,0.651561,0.730705,0.0836575,0.36816,0.427013,0.714788,0.237306,0.237252,0.583051,0.992472,0.395407,0.838463,0.993122,0.0932431,0.808227,0.19319,0.0609124,0.566377,0.847776,0.880524,0.342377,0.792871,0.496933,0.251448,0.149203,0.386671,0.504476,0.376956,0.776747,0.816815,0.311285,0.996512,0.376891,0.517983,0.0512714,0.848202,0.0908225,0.178624,0.0141014,0.455467,0.126774,0.139498,0.302445,0.800418,0.094896,0.549164,0.449813,0.356577,0.533297,0.0927723,0.787478,0.618213,0.925261,0.74372,0.847953,0.432836,0.796405,0.191525,0.299185,0.442175,0.933652,0.091424,0.566371,0.186003,0.15945,0.212215,0.893337,0.557118,0.348547,0.862136,0.581033,0.956897,0.618239,0.812152,0.580086,0.895007,0.401185,0.865124,0.351116,0.82873,0.598174,0.623727,0.843721,0.540148,0.70878,0.758526,0.15395,0.00484997,0.654885,0.165953,0.0758137,0.415149,0.277108,0.212781,0.0727794,0.945346,0.761956,0.453532,0.456396,0.498311,0.364225,0.691686,0.97041,0.713848,0.898434,0.784923,0.59083,0.419624,0.200878,0.317009,0.957633,0.889684,0.184257,0.826542,0.0202224,0.299619,0.991162,0.753434,0.126494,0.692332,0.678845,0.035476,0.0518609,0.0810627,0.330184,0.493006,0.0664623,0.368717,0.910008,0.502119,0.0945969,0.588007,0.546323,0.213624,0.20529,0.979813,0.0619118,0.751108,0.821731,0.156499,0.509712,0.499934,0.551566,0.80313,0.106959,0.987724,0.320298,0.55878,0.0010761,0.641791,0.748203,0.679807,0.600049,0.339153,0.860224,0.429815,0.545799,0.822562,0.684402,0.166186,0.0633097,0.311572,0.258749,0.893382,0.279076,0.903915,0.490665,0.195031,0.895052,0.949746,0.925332,0.906085,0.915529,0.238509,0.830365,0.35805,0.176757,0.388178,0.302153,0.162701,0.594406,0.900293,0.670914,0.247694,0.973486,0.755606,0.445751,0.0321199,0.452254,0.835691,0.106468,0.428026,0.353526,0.157052,0.0641288,0.0414357,0.0147359,0.97386,0.916221,0.718194,0.680214,0.521537,0.735444,0.759544,0.0435933,0.207556,0.245348,0.310923,0.262332,0.133191,0.260879,0.0703679,0.510471,0.944343,0.259528,0.142719,0.119855,0.694792,0.668181,0.0466004,0.367137,0.162585,0.206774,0.861571,0.491395,0.77952,0.817354,0.830988,0.745085,0.667101,0.538167,0.928788,0.0283563,0.887174,0.232574,0.0168577,0.507114,0.968767,0.905604,0.649064,0.698311,0.32103,0.984109,0.629926,0.0882092,0.615894,0.912974,0.881178,0.698236,0.50263,0.796702,0.368529,0.70729,0.294734,0.00714475,0.619517,0.412291,0.29623,0.785724,0.6142,0.0359331,0.291888,0.150786,0.143643,0.0465607,0.690607,0.152024,0.476632,0.396789,0.868239,0.0495384,0.982095,0.00531936,0.135644,0.0607604,0.705747,0.122534,0.881857,0.170135,0.942829,0.799987,0.722512,0.617856,0.680165,0.745683,0.979271,0.585301,0.461896,0.404348,0.86163,0.128102,0.532107,0.0286056,0.500823,0.942622,0.250757,0.601277,0.56412,0.745065,0.385439,0.638732,0.177822,0.413896,0.728992,0.907698,0.852947,0.57551,0.717338,0.327472,0.0487299,0.570617,0.584104,0.551939,0.34892,0.199304,0.387934,0.276294,0.11206,0.249123,0.552842,0.31097,0.131982,0.0130345,0.733905,0.936723,0.575584,0.919873,0.978669,0.814494,0.242643,0.624648,0.0638202,0.188942,0.235082,0.292045,0.602939,0.648962,0.819611,0.574715,0.465768,0.672754,0.162735,0.658761,0.694043,0.668806,0.990691,0.187916,0.920099,0.807354,0.985974,0.998801,0.0671236,0.173781,0.934932,0.965259,0.0337695,0.462105,0.661627,0.29609,0.827882,0.321113,0.0829617,0.589519,0.688768,0.905106,0.113368,0.387829,0.607876,0.596963,0.378194,0.234307,0.282891,0.651073,0.441498,0.111349,0.618679,0.338188,0.0771294,0.445348,0.252719,0.680024,0.486129,0.807113,0.941084,0.716327,0.550788,0.597546,0.482886,0.889625,0.551749,0.331538,0.491575,0.973082,0.809115,0.587959,0.662414,0.82795,0.622172,0.0807699,0.160985,0.863307,0.693664,0.480094,0.685246,0.15911,0.161552,0.0127097,0.517787,0.207336,0.0227968,0.147271,0.0502388,0.190306,0.409917,0.192228,0.961839,0.278522,0.491636,0.409661,0.696388,0.523558,0.796531,0.535284,0.0441085,0.777285,0.80452,0.583496,0.254589,0.668519,0.463075,0.0617846,0.212865,0.949008,0.0257089,0.569372,0.246325,0.593067,0.352287,0.469537,0.692114,0.85007,0.791657,0.0438572,0.0714527,0.0886768,0.236556,0.866283,0.191078,0.121957,0.787898,0.630407,0.794069,0.0673823,0.865233,0.838283,0.508547,0.220782,0.628643,0.189529,0.0312219,0.694266,0.583374,0.0123873,0.634097,0.220079,0.935466,0.892816,0.569782,0.762437,0.804215,0.977972,0.359553,0.556939,0.543354,0.336895,0.620677,0.141728,0.792889,0.831675,0.974521,0.365164,0.926909,0.853511,0.161638,0.160287,0.687683,0.0757425,0.847619,0.685688,0.189434,0.410644,0.170913,0.136789,0.282418,0.150355,0.49491,0.308775,0.668693,0.465416,0.475766,0.419096,0.8195,0.261731,0.793978,0.689129,0.602361,0.710561,0.99676,0.319944,0.275308,0.0523571,0.194544,0.835268,0.719023,0.00672656,0.729742,0.183704,0.472163,0.822961,0.116487,0.615148,0.412272,0.841848,0.74812,0.0310848,0.0444516,0.539769,0.350777,0.886866,0.487089,0.982897,0.363245,0.984378,0.927182,0.319435,0.912415,0.801619,0.642295,0.829726,0.574572,0.0524472,0.903304,0.401296,0.987585,0.437264,0.154096,0.726071,0.205181,0.716162,0.382565,0.879716,0.302615,0.0829473,0.0372171,0.477738,0.0706561,0.491571,0.822043,0.587974,0.282804,0.297757,0.426559,0.292789,0.195793,0.0419412,0.114308,0.620858,0.321713,0.71906,0.51166,0.230243,0.61044,0.0738695,0.0706397,0.746241,0.778965,0.35028,0.837106,0.301878,0.434265,|0.451208,0.506345,0.367261,0.430657,0.547506,0.491925,0.750125,0.258237,0.272417,0.0556511,0.868897,0.145875,0.320313,0.595063,0.566756,0.381143,0.769364,0.844378,0.711924,0.541656,0.373778,0.183095,0.618525,0.97096,0.406547,0.562392,0.165498,0.15284,0.52601,0.43983,0.701694,0.0843024,0.853732,0.512798,0.128176,0.928783,0.462557,0.668593,0.720022,0.784469,0.666346,0.407488,0.00575858,0.225076,0.738546,0.00918514,0.947397,0.989074,0.427904,0.670257,0.197074,0.983764,0.788021,0.369647,0.631976,0.0897843,0.121479,0.646796,0.458567,0.335069,0.198177,0.599988,0.137327,0.498744,0.662428,0.595503,0.45087,0.176964,0.027082,0.469515,0.974696,0.444614,0.231646,0.705272,0.313626,0.466748,0.800162,0.576815,0.903556,0.174916,0.133293,0.28122,0.978689,0.65373,0.222514,0.00786573,0.442547,0.472703,0.490299,0.090032,0.0143329,0.0587667,0.188655,0.842245,0.785767,0.910639,0.509172,0.338091,0.81976,0.287696,0.164992,0.692405,0.450382,0.585924,0.538437,0.533016,0.0266308,0.0708604,0.402494,0.984096,0.399302,0.241051,0.535877,0.575919,0.382822,0.791063,0.80958,0.11424,0.947954,0.215702,0.0387627,0.556048,0.476971,0.827539,0.799389,0.382249,0.901776,0.57818,0.685999,0.181546,0.619755,0.677061,0.27292,0.31749,0.737176,0.136778,0.580952,0.834599,0.313249,0.852933,0.131201,0.687515,0.962675,0.975526,0.609586,0.739936,0.0152785,0.429223,0.0343626,0.893087,0.622212,0.42811,0.602283,0.094883,0.130548,0.620025,0.590761,0.180115,0.797657,0.456015,0.132255,0.867475,0.100113,0.271155,0.519711,0.196022,0.730483,0.528752,0.684476,0.624666,0.235355,0.227257,0.763515,0.955691,0.648153,0.359242,0.299304,0.322367,0.471026,0.234869,0.83669,0.750237,0.560354,0.8852,0.486429,0.107918,0.640304,0.757406,0.446434,0.0555784,0.00655121,0.978644,0.666996,0.375678,0.639848,0.84655,0.334633,0.00762653,0.938678,0.687411,0.0252901,0.0287354,0.478368,0.166972,0.904469,0.0192387,0.588433,0.440879,0.300839,0.680263,0.516875,0.957397,0.831461,0.490243,0.540991,0.316787,0.82136,0.437528,0.936513,0.604002,0.724331,0.0203878,0.116847,0.548952,0.0555578,0.974515,0.738643,0.652628,0.424925,0.594511,0.0913129,0.761758,0.15234,0.434406,0.24378,0.00225532,0.618079,0.366144,0.173899,0.0507358,0.272625,0.684598,0.60246,0.889833,0.284422,0.393041,0.428237,0.247069,0.204208,0.713648,0.129403,0.144399,0.419442,0.495906,0.73506,0.261304,0.243518,0.890471,0.277618,0.399748,0.0158495,0.0763804,0.328718,0.300611,0.887539,0.108095,0.772607,0.27007,0.591995,0.0216046,0.0477382,0.0792444,0.619702,0.652622,0.897868,0.474775,0.03019,0.0957385,0.732719,0.970453,0.382497,0.892192,0.293162,0.569685,0.668386,0.171318,0.496747,0.219953,0.382309,0.481029,0.677908,0.0851361,0.726858,0.89023,0.381154,0.227894,0.221267,0.55132,0.0149435,0.0851158,0.741148,0.908182,0.311476,0.197236,0.696902,0.103296,0.299969,0.294649,0.333087,0.0590111,0.547241,0.308047,0.634819,0.0982783,0.328201,0.701516,0.0626748,0.670005,0.702307,0.613346,0.22216,0.310503,0.853736,0.275081,0.590487,0.17121,0.493907,0.102993,0.172601,0.158322,0.137894,0.0474745,0.796332,0.296613,0.913814,0.122144,0.957816,0.307064,0.0527588,0.557749,0.0225757,0.906517,0.581772,0.58838,0.710016,0.894637,0.802267,0.722306,0.831487,0.440655,0.330061,0.882188,0.985356,0.754711,0.60225,0.246258,0.584113,0.840569,0.529592,0.768525,0.679816,0.894953,0.428259,0.747757,0.0937492,0.573678,0.0215614,0.945648,0.0515002,0.624974,0.327653,0.337364,0.667726,0.394561,0.808705,0.480845,0.594171,0.448968,0.945494,0.288922,0.212266,0.190245,0.713163,0.132935,0.26681,0.621116,0.927071,0.533004,0.986106,0.373195,0.196053,0.414764,0.510345,0.808824,0.58796,0.115233,0.997207,0.794095,0.937581,0.270786,0.511845,0.414201,0.171079,0.493126,0.690161,0.63083,0.963612,0.285292,0.359592,0.651467,0.476591,0.361702,0.711113,0.839045,0.891988,0.0717598,0.785914,0.395995,0.587541,0.206257,0.840779,0.859131,0.0962237,0.891045,0.865456,0.20161,0.250152,0.654354,0.328449,0.616167,0.72163,0.697374,0.407378,0.542635,0.662511,0.809795,0.852117,0.923677,0.117724,0.0492854,0.816925,0.352148,0.591383,0.714118,0.583935,0.638503,0.827043,0.0567674,0.749684,0.969988,0.561628,0.973599,0.752943,0.665513,0.0575636,0.937362,0.227155,0.809344,0.507107,0.743616,0.153615,0.442254,0.654998,0.321143,0.742614,0.416587,0.956646,0.64009,0.928686,0.172645,0.484795,0.320104,0.457781,0.273692,0.62097,0.410868,0.573556,0.325374,0.101816,0.0997185,0.189138,0.303178,0.174077,0.526063,0.837639,0.99517,0.179039,0.0802913,0.049418,0.877051,0.795574,0.11296,0.665127,0.595214,0.789687,0.363139,0.174662,0.00947082,0.0639366,0.126505,0.984781,0.306244,0.0681172,0.144577,0.647337,0.701036,0.109024,0.669295,0.367657,0.205349,0.57086,0.357379,0.124359,0.406055,0.209985,0.305683,0.265367,0.281991,0.537816,0.883817,0.539445,0.125141,0.109892,0.658407,0.184938,0.0117863,0.267297,0.734163,0.59521,0.135724,0.107613,0.661262,0.475673,0.0116733,0.981744,0.844298,0.0248994,0.729264,0.0611339,0.244353,0.928842,0.472567,0.690071,0.646616,0.415566,0.810953,0.144099,0.625475,0.860119,0.21708,0.913282,0.486917,0.660718,0.12901,0.678715,0.503309,0.916645,0.105948,0.308413,0.476765,0.600477,0.477101,0.90997,0.67222,0.520638,0.658372,0.0805726,0.567235,0.617315,0.149825,0.199763,0.377358,0.902742,0.0278656,0.293706,0.494052,0.61867,0.221859,0.0521832,0.611498,0.568154,0.947253,0.297377,0.687912,0.468005,0.862581,0.0521414,0.165547,0.285623,0.184612,0.443794,0.59933,0.130983,0.117261,0.959762,0.726044,0.95007,0.284008,0.956367,0.882587,0.962706,0.88158,0.742028,0.686049,0.507561,0.39278,0.424587,0.751036,0.143127,0.189262,0.230472,0.834554,0.39729,0.116577,0.897507,0.647133,3.30806e-05,0.482155,0.328762,0.064801,0.78291,0.0394357,0.654038,0.698268,0.0395846,0.9039,0.284601,0.631329,0.0702284,0.258742,0.732435,0.747105,0.113164,0.819789,0.997417,0.258211,0.695257,0.553914,0.907077,0.346419,0.820507,0.264433,0.786,0.334724,0.562301,0.622739,0.915729,0.679273,0.513581,0.437528,0.042845,0.616792,0.12817,0.792377,0.548406,0.766066,0.328776,0.123911,0.735618,0.56131,0.52388,0.881325,0.887594,0.802727,0.39265,0.292364,0.942944,0.145903,0.292386,0.0557857,0.950116,0.0679109,0.882997,0.398136,0.0811852,0.0943612,0.561186,0.235738,0.429128,0.823879,0.654453,0.304336,0.350266,0.577771,0.858464,0.0805205,0.647346,0.360239,0.223308,0.331472,0.85071,0.659642,0.519425,0.0489882,0.0283403,0.702969,0.408346,0.707169,0.98259,0.26267,0.464867,0.614706,0.452111,0.964097,0.935019,0.749488,0.405931,0.670032,0.767217,0.0548391,0.602362,0.684458,0.0765381,0.751299,0.265185,0.0526867,0.103445,0.513938,0.199293,0.72652,0.562178,0.739142,0.478208,0.315915,0.681611,0.259924,0.617116,0.293466,0.0898058,0.221157,0.252842,0.374442,0.525436,0.479936,0.381723,0.772527,0.663851,0.833364,0.973631,0.856358,0.39561,0.333654,0.660066,0.372339,0.0525224,0.247893,0.270836,0.666695,0.878479,0.833986,0.196649,0.0139835,0.102172,0.0622188,0.768111,0.344956,0.701946,0.956643,0.616798,0.397583,0.501255,0.0397518,0.120084,0.720419,0.485759,0.441044,0.0463092,0.678116,0.00711316,0.596657,0.665454,0.680006,0.616027,0.434466,0.648207,0.306301,0.00841594,0.0887727,0.0959217,0.600066,0.0279686,0.212972,0.0969256,0.590473,0.997269,0.934935,0.425595,0.70211,0.51032,0.273281,0.957203,0.650501,0.560024,0.0504754,0.512433,0.525839,0.980835,0.656693,0.971888,0.210462,0.43867,0.408618,0.474647,0.246908,0.95251,0.919886,0.150059,0.0184951,0.798606,0.278425,0.895643,0.603763,0.638324,0.963161,0.320409,0.792353,0.887168,0.729626,0.178389,0.659345,0.72953,0.951356,0.281724,0.297711,0.664091,0.146713,0.0335215,0.909127,0.381072,0.895072,0.17992,0.190228,0.21598,0.602748,0.249243,0.724922,0.149902,0.419618,0.219587,0.343338,0.927728,0.44681,0.347245,0.212764,0.814626,0.671048,0.695567,0.460757,0.624915,0.552615,0.645054,0.726637,0.464369,0.347401,0.481782,0.794036,0.372133,0.114756,0.530181,0.155094,0.0305049,0.613764,0.756796,0.108699,0.831659,0.0841647,0.706402,0.783693,0.713953,0.0900706,0.93995,0.091983,0.426662,0.899785,0.215654,0.0622892,0.263561,0.353554,0.295186,0.437492,0.500206,0.207136,0.0812489,0.573253,0.700294,0.279297,0.391938,0.991125,0.5719,0.993603,0.0452846,0.959458,0.697447,0.180036,0.403508,0.281684,0.0181964,0.913802,0.690933,0.183502,0.53886,0.473506,0.479885,0.579214,0.755006,0.0859391,0.0387785,0.274277,0.828268,0.213729,0.495041,0.172676,0.0573483,0.347171,0.191826,0.102945,0.79764,0.0591533,0.735753,0.31269,0.606047,0.431709,0.748717,0.0750965,0.865118,0.520386,0.764125,0.227344,0.254229,0.183919,0.40723,0.586104,0.533019,0.0467353,0.599364,0.00503558,0.615477,0.120477,0.650802,0.629815,0.123321,0.456271,0.178362,0.280381,0.044834,0.82501,0.676503,0.577831,0.282967,0.850717,0.687114,0.495856,0.782142,0.628373,0.366195,0.328472,0.0365101,0.034277,0.597329,0.680811,0.0214697,0.062152,0.192526,0.770024,0.63457,0.473152,0.679732,0.111096,0.782284,0.0529014,0.434106,0.923479,0.531803,0.922309,0.237999,0.677118,0.546914,0.51549,0.838315,0.164002,0.491488,0.465543,0.827779,0.927625,0.773045,0.995988,0.438092,0.38464,0.984118,0.585753,0.629424,0.313126,0.639162,0.802497,0.887963,0.175575,0.799469,0.893184,0.566908,0.515804,|0.627646,0.495707,0.752825,0.383516,0.0485416,0.186159,0.95741,0.250568,0.299757,0.2748,0.581536,0.26408,0.10842,0.331822,0.88124,0.923713,0.77704,0.0541748,0.460829,0.875641,0.442073,0.562974,0.573466,0.585088,0.310761,0.404764,0.448817,0.93812,0.510295,0.565861,0.714917,0.180749,0.824382,0.617667,0.187312,0.681981,0.25789,0.699099,0.850825,0.769734,0.331284,0.288271,0.723032,0.923909,0.267582,0.936884,0.445437,0.567337,0.452496,0.29605,0.0871136,0.376003,0.76599,0.280947,0.999756,0.432263,0.241733,0.388763,0.143803,0.989994,0.270153,0.926402,0.315572,0.284978,0.179455,0.9586,0.36162,0.779584,0.695625,0.0488689,0.282419,0.987715,0.27328,0.759761,0.808762,0.0604074,0.783296,0.994265,0.598484,0.0112236,0.0918275,0.245664,0.0475205,0.931445,0.265116,0.410406,0.291252,0.25633,0.226556,0.0392356,0.68841,0.604131,0.563131,0.54993,0.35056,0.779011,0.88622,0.422093,0.517335,0.516626,0.37803,0.530311,0.825109,0.40927,0.908826,0.350171,0.42798,0.581723,0.725082,0.92053,0.517426,0.994032,0.082319,0.11798,0.419873,0.825788,0.690886,0.573554,0.873572,0.487229,0.769371,0.362074,0.904497,0.0734112,0.632452,0.503771,0.896101,0.449898,0.413605,0.930409,0.862976,0.553845,0.987118,0.227419,0.60692,0.211889,0.424968,0.659088,0.452982,0.82789,0.0649229,0.979862,0.302905,0.576402,0.781439,0.131134,0.659919,0.540746,0.88633,0.285999,0.0546595,0.446505,0.820881,0.6773,0.575402,0.891019,0.0771779,0.455853,0.797116,0.82947,0.565569,0.1019,0.0736139,0.646492,0.147757,0.668598,0.26495,0.89299,0.153107,0.733693,0.945183,0.245781,0.661536,0.07157,0.655989,0.971686,0.939063,0.71478,0.896922,0.566232,0.214216,0.632891,0.803476,0.573681,0.19443,0.274175,0.607983,0.487922,0.213467,0.0470439,0.278754,0.371235,0.231293,0.373125,0.121412,0.135065,0.574093,0.781339,0.63688,0.139445,0.15068,0.616121,0.279115,0.552643,0.288699,0.145567,0.0433965,0.391362,0.16526,0.52069,0.103396,0.915757,0.700038,0.949013,0.750545,0.797319,0.856946,0.882258,0.0413552,0.631794,0.930423,0.421853,0.658432,0.521347,0.116678,0.429414,0.0502507,0.0313498,0.753654,0.589308,0.963129,0.595142,0.860106,0.664899,0.0838934,0.995734,0.0844374,0.725222,0.183076,0.653696,0.173076,0.390016,0.667245,0.906096,0.0999591,0.74659,0.892546,0.761215,0.176053,0.694443,0.943051,0.0862005,0.954435,0.699169,0.716638,0.0278844,0.877183,0.104679,0.300505,0.637812,0.758494,0.623031,0.127477,0.733472,0.580895,0.00380689,0.402236,0.827078,0.651675,0.665782,0.649766,0.91963,0.586472,0.565919,0.539587,0.325054,0.961888,0.486366,0.69727,0.00182271,0.565965,0.11348,0.686576,0.173677,0.731439,0.48884,0.0427889,0.376534,0.549927,0.946123,0.818082,0.0456845,0.261597,0.303492,0.154316,0.00155956,0.226216,0.791085,0.153989,0.255118,0.698683,0.849443,0.441241,0.553819,0.231888,0.499985,0.637042,0.736327,0.131898,0.296567,0.948041,0.646717,0.906523,0.2701,0.470046,0.193123,0.470151,0.655572,0.475115,0.481505,0.829718,0.971689,0.567726,0.964596,0.660879,0.629728,0.895132,0.987326,0.675602,0.46283,0.0904265,0.285359,0.786109,0.223131,0.609694,0.573657,0.865852,0.409814,0.839198,0.525759,0.491603,0.651279,0.457492,0.492461,0.460497,0.735219,0.117979,0.737013,0.68636,0.589738,0.172635,0.246877,0.296889,0.563817,0.621717,0.563419,0.0718475,0.577323,0.0467606,0.0271903,0.816589,0.17814,0.706435,0.799663,0.787239,0.40077,0.927181,0.896322,0.605955,0.293367,0.483835,0.651402,0.370238,0.726866,0.858917,0.264233,0.791113,0.412065,0.98329,0.0925432,0.0197912,0.253967,0.98023,0.969678,0.79448,0.984564,0.387423,0.690602,0.249553,0.455247,0.934192,0.758299,0.0158139,0.771501,0.0138216,0.413167,0.783264,0.388382,0.315812,0.814918,0.0975085,0.129573,0.92457,0.132153,0.553612,0.588147,0.672026,0.967896,0.900577,0.120413,0.718094,0.31751,0.92261,0.888839,0.282301,0.474451,0.316255,0.704182,0.560122,0.232361,0.615911,0.504184,0.786116,0.684609,0.0433942,0.691944,0.974938,0.698054,0.57134,0.643761,0.215907,0.163468,0.133547,0.461485,0.0508223,0.279001,0.904991,0.569614,0.57637,0.163172,0.269266,0.432962,0.922762,0.332657,0.519355,0.233318,0.501383,0.370161,0.538548,0.47378,0.549068,0.132008,0.677001,0.253071,0.219367,0.9825,0.42378,0.918397,0.604649,0.627257,0.458407,0.322802,0.198876,0.355716,0.531016,0.39384,0.975648,0.982414,0.543164,0.159329,0.569,0.367587,0.896931,0.31842,0.906179,0.07854,0.647753,0.33056,0.0975518,0.490527,0.321659,0.908004,0.211356,0.0407735,0.699836,0.753002,0.750781,0.649914,0.689437,0.0609891,0.753077,0.472599,0.713375,0.683067,0.546205,0.920146,0.357917,0.61763,0.428344,0.336358,0.672855,0.696003,0.751896,0.145906,0.272605,0.312182,0.196325,0.766316,0.158553,0.770432,0.0616825,0.333427,0.507493,0.393333,0.99391,0.214437,0.456541,0.0565526,0.525174,0.441459,0.136554,0.625699,0.383058,0.490738,0.29207,0.317638,0.704979,0.540745,0.550779,0.628506,0.401762,0.448811,0.774664,0.575114,0.738345,0.394259,0.159299,0.755404,0.222883,0.0843335,0.410722,0.831709,0.562199,0.849939,0.49969,0.740209,0.530831,0.808334,0.282903,0.805991,0.00707519,0.499826,0.173435,0.450318,0.160645,0.132962,0.813016,0.0233611,0.50877,0.832809,0.783257,0.0971345,0.0619823,0.415252,0.619351,0.42898,0.0854018,0.427402,0.527078,0.1364,0.325933,0.0118965,0.0239731,0.735199,0.362529,0.602541,0.358668,0.44131,0.0693155,0.790884,0.32297,0.64127,0.341203,0.0385957,0.718863,0.0549709,0.813582,0.841345,0.27723,0.80618,0.701142,0.929655,0.0129865,0.748467,0.807093,0.815088,0.2283,0.971287,0.926654,0.968188,0.192692,0.204147,0.175853,0.661074,0.360369,0.818635,0.127352,0.0540096,0.879069,0.842199,0.133312,0.223675,0.142596,0.0747241,0.34199,0.378584,0.27023,0.706507,0.776651,0.089774,0.0660599,0.362567,0.638254,0.231487,0.19087,0.54007,0.866394,0.952309,0.47648,0.769804,0.450529,0.24124,0.980952,0.285169,0.0994509,0.998394,0.659832,0.317523,0.592957,0.64918,0.396468,0.646065,0.117926,0.223465,0.845311,0.48163,0.14162,0.767303,0.77684,0.427819,0.850404,0.746623,0.449422,0.170009,0.0176807,0.578884,0.632043,0.243032,0.777577,0.897685,0.262871,0.161001,0.754429,0.376287,0.37601,0.269413,0.964016,0.836522,0.931196,0.370611,0.178258,0.941949,0.360386,0.353691,0.772827,0.702812,0.564253,0.862356,0.329959,0.449693,0.536984,0.0903071,0.657258,0.103703,0.66937,0.179595,0.384562,0.814568,0.332351,0.210315,0.283558,0.456841,0.347798,0.50613,0.43297,0.734026,0.980709,0.258734,0.968154,0.108076,0.70677,0.174495,0.261254,0.0152467,0.665467,0.349554,0.282282,0.000667989,0.220068,0.270766,0.890957,0.152121,0.119311,0.53938,0.719605,0.885661,0.237221,0.817061,0.66564,0.599913,0.116262,0.84336,0.951391,0.60863,0.792568,0.0298662,0.934369,0.489796,0.634465,0.817364,0.657464,0.453838,0.831788,0.330358,0.370114,0.472256,0.0680008,0.304328,0.514848,0.390255,0.733248,0.164162,0.613664,0.400501,0.187173,0.184877,0.84603,0.0315392,0.727577,0.403609,0.542617,0.432839,0.748832,0.648488,0.847117,0.644901,0.0407335,0.855886,0.271035,0.428943,0.610614,0.910967,0.0355018,0.24975,0.334914,0.216902,0.0308266,0.464094,0.066754,0.749574,0.950499,0.442618,0.232713,0.440658,0.360142,0.468382,0.213334,0.544675,0.711744,0.928029,0.776135,0.431984,0.414532,0.689024,0.788246,0.881356,0.356889,0.651359,0.413329,0.418295,0.0520748,0.0577816,0.278271,0.74359,0.923298,0.99938,0.367778,0.356442,0.43013,0.358166,0.973113,0.233717,0.891676,0.452172,0.450534,0.231588,0.873525,0.00312793,0.0359799,0.305746,0.910007,0.541648,0.871877,0.706601,0.757681,0.0772982,0.540449,0.0451753,0.11682,0.455208,0.221111,0.612182,0.879534,0.0337311,0.66534,0.658819,0.4298,0.451513,0.654347,0.348552,0.239952,0.953055,0.956153,0.417024,0.243874,0.0458955,0.27623,0.30193,0.562508,0.0897288,0.0610062,0.0132053,0.160789,0.906263,0.562489,0.240537,0.898781,0.0869297,0.808313,0.576807,0.919091,0.170485,0.770087,0.365085,0.195795,0.351731,0.747819,0.714795,0.930607,0.075489,0.922491,0.464574,0.657644,0.578315,0.818269,0.519054,0.248687,0.59572,0.89602,0.406658,0.805014,0.656845,0.308848,0.27821,0.21293,0.329983,0.345284,0.798384,0.911201,0.669863,0.532213,0.293521,0.499638,0.306691,0.674843,0.558094,0.107288,0.728605,0.490496,0.0049898,0.88609,0.330071,0.247435,0.169479,0.864842,0.778978,0.273543,0.918841,0.0527983,0.958427,0.661772,0.264173,0.0895647,0.673306,0.225746,0.848943,0.598628,0.497487,0.580857,0.31192,0.963902,0.976566,0.508527,0.655542,0.836228,0.0230864,0.166367,0.273201,0.339957,0.90516,0.594268,0.756946,0.939433,0.305457,0.960894,0.849107,0.983029,0.13482,0.71294,0.330315,0.580756,0.343993,0.528501,0.781317,0.690951,0.277285,0.858793,0.333605,0.509387,0.181809,0.837723,0.0279331,0.796527,0.772639,0.568705,0.427943,0.171798,0.104792,0.586989,0.750379,0.536012,0.485166,0.53617,0.152328,0.263325,0.467186,0.915992,0.83229,0.872836,0.771386,0.319027,0.49334,0.980652,0.440063,0.928064,0.85474,0.69777,0.743232,0.00229037,0.214954,0.266901,0.105199,0.534846,0.248739,0.0310636,0.585238,0.00896281,0.196324,0.940349,0.371759,0.275729,0.410138,0.108962,0.268002,0.73642,0.43224,0.215025,0.316143,0.912984,0.73537,0.28677,0.725283,0.500207,0.266983,0.85556,0.322694,0.62279,0.733134,0.515361,0.532318,|0.915272,0.773264,0.842637,0.560135,0.0201271,0.0070985,0.66482,0.493343,0.195374,0.299022,0.619904,0.819825,0.39082,0.823439,0.516143,0.831331,0.560004,0.401906,0.776759,0.162126,0.536404,0.984997,0.124688,0.355956,0.998732,0.840973,0.808818,0.0816325,0.157744,0.604976,0.589432,0.805657,0.386401,0.778181,0.80828,0.994649,0.567393,0.366775,0.872154,0.893328,0.322103,0.0517657,0.633398,0.326574,0.557556,0.638659,0.949501,0.481069,0.580271,0.550865,0.620857,0.633559,0.704814,0.515189,0.0414087,0.130498,0.502651,0.999082,0.373301,0.121916,0.234524,0.0339192,0.549513,0.305827,0.0560298,0.637963,0.859102,0.709461,0.292837,0.242176,0.480079,0.897534,0.929423,0.243505,0.774814,0.136942,0.966645,0.293167,0.700007,0.22638,0.968151,0.326451,0.635413,0.251079,0.964217,0.700851,0.966214,0.760142,0.604413,0.95273,0.663327,0.920907,0.336767,0.169916,0.352792,0.464255,0.230147,0.149559,0.890473,0.888327,0.50625,0.0757061,0.181343,0.723153,0.513529,0.985516,0.704674,0.174052,0.943781,0.631567,0.124548,0.869026,0.21782,0.890002,0.625928,0.864121,0.852981,0.748227,0.18406,0.235663,0.793261,0.299827,0.794567,0.766343,0.646978,0.949415,0.130733,0.96296,0.305254,0.278133,0.208335,0.732675,0.721614,0.86963,0.0305461,0.517358,0.470832,0.244254,0.756067,0.146197,0.125869,0.323762,0.0675862,0.183288,0.000644147,0.355349,0.952428,0.763513,0.782393,0.334475,0.80244,0.948838,0.21018,0.956782,0.29347,0.921839,0.454255,0.174648,0.78151,0.737088,0.527629,0.221329,0.25555,0.367068,0.662929,0.328238,0.167397,0.242578,0.576904,0.121761,0.98719,0.222561,0.396451,0.527154,0.0212207,0.303591,0.0539306,0.381085,0.0436672,0.67076,0.929158,0.0747963,0.826192,0.198596,0.0430409,0.296764,0.105817,0.746011,0.568633,0.0870098,0.742226,0.0638121,0.556931,0.219486,0.893131,0.679637,0.0663659,0.256024,0.392476,0.949354,0.433945,0.835636,0.184882,0.754203,0.523589,0.365289,0.154581,0.0777343,0.414107,0.920764,0.100916,0.14775,0.239384,0.570144,0.0658078,0.812388,0.203373,0.335405,0.756265,0.0947306,0.367866,0.966419,0.773664,0.11141,0.539397,0.213185,0.0578324,0.510703,0.336192,0.150963,0.690829,0.806298,0.699185,0.959445,0.384046,0.356398,0.165139,0.24184,0.558545,0.506013,0.80214,0.727179,0.342599,0.738179,0.145174,0.754724,0.970142,0.52941,0.9028,0.920269,0.0396647,0.665439,0.604153,0.091208,0.132761,0.357879,0.588295,0.0970363,0.0839034,0.222551,0.481624,0.141986,0.73673,0.876628,0.526314,0.0448095,0.615101,0.452246,0.235079,0.587639,0.332462,0.120674,0.157607,0.0140817,0.796321,0.865805,0.08182,0.109879,0.959775,0.0133353,0.149021,0.557689,0.195083,0.497368,0.261528,0.0187268,0.575903,0.425465,0.942908,0.290446,0.989122,0.949426,0.537008,0.9327,0.0951975,0.240125,0.145322,0.801937,0.111528,0.981783,0.890039,0.704304,0.427321,0.588327,0.783887,0.0764039,0.936211,0.503442,0.417754,0.134995,0.0164995,0.565323,0.919238,0.696939,0.141018,0.956453,0.648368,0.180656,0.751235,0.191117,0.45573,0.733966,0.565285,0.0413166,0.414912,0.0653332,0.380201,0.115345,0.132966,0.332206,0.58857,0.539758,0.377799,0.0530615,0.165212,0.345609,0.376615,0.858845,0.0424768,0.565346,0.422863,0.391778,0.158195,0.419715,0.108647,0.857461,0.508829,0.540056,0.885453,0.770377,0.755889,0.153234,0.105253,0.688383,0.100131,0.519064,0.136098,0.080745,0.615522,0.433837,0.408801,0.631465,0.320724,0.782577,0.0101816,0.70408,0.737062,0.343375,0.744516,0.262971,0.205609,0.460857,0.0948192,0.151778,0.529792,0.704331,0.871533,0.392398,0.805864,0.619336,0.0506287,0.367072,0.323868,0.957351,0.75478,0.278201,0.760678,0.728252,0.524803,0.536395,0.0719948,0.462118,0.0194132,0.984562,0.356033,0.0907778,0.125179,0.58534,0.75822,0.37895,0.691489,0.757551,0.821757,0.418747,0.659295,0.348947,0.90078,0.508956,0.201933,0.952877,0.841375,0.846733,0.325082,0.905496,0.108114,0.562424,0.253705,0.795048,0.654083,0.899877,0.678266,0.657619,0.511735,0.145882,0.260787,0.811988,0.584343,0.123847,0.967747,0.245998,0.165946,0.697396,0.510659,0.57922,0.227183,0.4296,0.505956,0.988009,0.56401,0.134301,0.169084,0.203279,0.945091,0.592593,0.584959,0.373767,0.209099,0.809849,0.945151,0.44627,0.489923,0.197227,0.875361,0.36758,0.421608,0.100019,0.584155,0.43439,0.98533,0.177384,0.0802097,0.5682,0.525421,0.504157,0.121742,0.93532,0.10143,0.136925,0.215752,0.0483094,0.0262307,0.748099,0.890831,0.36384,0.0784269,0.894764,0.973074,0.847329,0.908742,0.840079,0.82167,0.753424,0.594861,0.395452,0.350284,0.853874,0.794297,0.310758,0.869566,0.702117,0.860255,0.0792382,0.1979,0.280417,0.77536,0.193708,0.393806,0.980152,0.963703,0.0958885,0.618707,0.841192,0.0122746,0.284619,0.390311,0.37346,0.195408,0.711007,0.337408,0.39278,0.374173,0.298926,0.252798,0.74268,0.632171,0.507554,0.932394,0.785579,0.467216,0.018266,0.941093,0.87597,0.753723,0.112712,0.215761,0.184253,0.338555,0.276991,0.400783,0.352323,0.772435,0.540855,0.3608,0.674404,0.0937961,0.807865,0.345619,0.724571,0.155357,0.74506,0.821665,0.660383,0.164346,0.151385,0.607444,0.879746,0.402863,0.731026,0.12628,0.785435,0.0145299,0.531849,0.967804,0.409315,0.136286,0.571925,0.388333,0.750202,0.315342,0.19473,0.0630406,0.977945,0.441756,0.223195,0.496725,0.193114,0.654478,0.157939,0.318379,0.561426,0.498518,0.215771,0.795119,0.87619,0.307712,0.253729,0.0774798,0.0514631,0.522031,0.646065,0.234365,0.73085,0.717707,0.901789,0.828079,0.297635,0.396264,0.786073,0.682489,0.869325,0.926776,0.255427,0.812393,0.357269,0.0581353,0.0722328,0.0866127,0.948282,0.501756,0.509309,0.827397,0.530963,0.929819,0.639298,0.797964,0.609531,0.980046,0.322681,0.581626,0.946071,0.590389,0.54347,0.349443,0.999379,0.112895,0.502166,0.797572,0.22763,0.572301,0.229294,0.336178,0.908492,0.616593,0.737843,0.864497,0.295793,0.779101,0.783625,0.0337305,0.503599,0.84988,0.856346,0.316133,0.366893,0.660575,0.924828,0.90931,0.573606,0.0797455,0.377162,0.242004,0.933918,0.447897,0.564648,0.785571,0.381379,0.241807,0.102464,0.825411,0.829594,0.924072,0.989034,0.753788,0.7291,0.308145,0.602787,0.558112,0.0655872,0.860826,0.655347,0.286832,0.425178,0.34759,0.490702,0.753083,0.978097,0.000938594,0.247419,0.452004,0.267761,0.498192,0.547577,0.0551914,0.614027,0.919524,0.189503,0.895224,0.130336,0.960439,0.653312,0.789065,0.811761,0.261097,0.146703,0.108039,0.798494,0.284145,0.361772,0.255595,0.0866119,0.491878,0.209779,0.543799,0.680069,0.58033,0.919883,0.219609,0.458169,0.146262,0.107373,0.314032,0.533651,0.617647,0.517173,0.67606,0.117139,0.582848,0.920694,0.532159,0.95347,0.632401,0.520402,0.265458,0.75795,0.651713,0.0867429,0.303065,0.939853,0.355603,0.0935444,0.567189,0.797037,0.0853815,0.242263,0.549082,0.672318,0.565332,0.73473,0.976231,0.661699,0.560638,0.791741,0.415372,0.986603,0.0550629,0.941112,0.685793,0.543322,0.0437474,0.152964,0.054794,0.425271,0.438194,0.427607,0.813565,0.550126,0.134027,0.289061,0.199994,0.575186,0.717301,0.431833,0.187175,0.93894,0.189919,0.797554,0.498687,0.942022,0.469017,0.695998,0.256218,0.682621,0.852105,0.224132,0.741294,0.421554,0.586377,0.970243,0.575699,0.695343,0.544542,0.336599,0.590635,0.227229,0.00419348,0.178042,0.769354,0.324177,0.961806,0.341803,0.872244,0.322115,0.35555,0.851467,0.0590209,0.235896,0.139061,0.645353,0.5306,0.488311,0.721098,0.468214,0.666317,0.068,0.292485,0.295777,0.639387,0.558927,0.509772,0.99759,0.94128,0.615353,0.43873,0.891382,0.959138,0.523397,0.151848,0.350016,0.485251,0.112568,0.200694,0.718172,0.581052,0.888059,0.833095,0.991888,0.390694,0.0516961,0.743244,0.384471,0.750817,0.498118,0.155144,0.252165,0.732397,0.73586,0.931864,0.835216,0.296177,0.82333,0.475303,0.8896,0.305257,0.461514,0.743821,0.245286,0.676738,0.529406,0.797773,0.793201,0.0763156,0.30673,0.752877,0.372754,0.0345302,0.0134853,0.16068,0.437788,0.920465,0.970944,0.519272,0.597888,0.779377,0.425975,0.81444,0.219125,0.58893,0.915722,0.784864,0.021104,0.0405253,0.68428,0.035221,0.117765,0.526678,0.5284,0.32094,0.20821,0.643349,0.485387,0.141404,0.255211,0.198107,0.91083,0.124249,0.904546,0.855603,0.163352,0.689674,0.890992,0.770259,0.408015,0.0172785,0.307312,0.789379,0.857665,0.321779,0.0388041,0.907265,0.149729,0.494778,0.219457,0.2908,0.522032,0.359345,0.71829,0.874547,0.776702,0.322849,0.586336,0.523563,0.124822,0.667565,0.0234321,0.129464,0.938909,0.758647,0.207248,0.726529,0.356212,0.729161,0.926942,0.429594,0.385248,0.728001,0.527075,0.0572618,0.98329,0.401029,0.390402,0.581885,0.124038,0.93373,0.412708,0.183344,0.962962,0.668945,0.492049,0.142054,0.459822,0.769558,0.281436,0.148296,0.732047,0.607996,0.545386,0.58154,0.749402,0.103743,0.186507,0.305072,0.605656,0.184677,0.441534,0.0540454,0.95156,0.346764,0.445956,0.0473313,0.369728,0.406071,0.739291,0.413411,0.190375,0.231452,0.105165,0.850235,0.537593,0.77433,0.466102,0.783393,0.20921,0.758206,0.983614,0.872927,0.27862,0.846365,0.36649,0.836976,0.791932,0.770206,0.679598,0.230085,0.609535,0.0317842,0.510601,0.970033,0.878904,0.380829,0.633503,0.209778,0.0112191,0.280226,0.975859,0.11247,0.485466,0.108667,0.838505,0.754345,0.846534,0.769615,0.626105,0.650276,0.119185,0.272706,0.939693,0.700339,0.12356,0.217327,0.194468,|0.19426,0.748552,0.967869,0.762934,0.0660757,0.948586,0.802003,0.663889,0.440357,0.446178,0.24659,0.788837,0.264642,0.260696,0.982751,0.864917,0.652618,0.263723,0.738368,0.557834,0.971782,0.40638,0.74489,0.197943,0.707374,0.62678,0.585581,0.5531,0.145509,0.0415214,0.683585,0.764645,0.825952,0.541625,0.791055,0.867204,0.351393,0.717842,0.711977,0.895173,0.797189,0.257779,0.892419,0.452923,0.334547,0.515909,0.942407,0.950142,0.775173,0.54764,0.168058,0.476731,0.427562,0.974084,0.477708,0.224665,0.877063,0.179782,0.736449,0.646593,0.968763,0.526928,0.14844,0.489612,0.158315,0.938898,0.991957,0.648394,0.578869,0.421919,0.633529,0.300858,0.131621,0.0852147,0.693525,0.405057,0.0593355,0.0740709,0.114948,0.368876,0.848291,0.846425,0.125551,0.928838,0.983875,0.454619,0.93143,0.88535,0.0964141,0.241241,0.10811,0.277774,0.664007,0.939785,0.183874,0.153782,0.750585,0.120971,0.0736986,0.247593,0.696897,0.284533,0.242832,0.287914,0.85503,0.0617709,0.873491,0.418381,0.729851,0.0879461,0.47587,0.943332,0.593386,0.945363,0.101246,0.322111,0.513104,0.659371,0.258194,0.0139055,0.29571,0.614623,0.685085,0.340313,0.570426,0.00672621,0.991974,0.621327,0.488076,0.596723,0.504877,0.786188,0.504758,0.216673,0.388705,0.239049,0.907414,0.652476,0.143307,0.190487,0.973929,0.798054,0.201078,0.594062,0.0131279,0.540277,0.166755,0.686888,0.276236,0.0218524,0.224123,0.890099,0.388274,0.829593,0.802749,0.999477,0.476514,0.863293,0.721196,0.817153,0.418093,0.63591,0.511514,0.748668,0.521784,0.873063,0.409774,0.499792,0.0820216,0.0271471,0.471277,0.0319124,0.837481,0.433718,0.0230989,0.270169,0.303548,0.0542479,0.749908,0.847105,0.113228,0.18698,0.992054,0.723898,0.618083,0.732077,0.124942,0.87833,0.743082,0.273335,0.996485,0.889726,0.515605,0.453739,0.355167,0.788691,0.345944,0.685651,0.530516,0.92497,0.094106,0.0223088,0.690055,0.543561,0.428701,0.300674,0.700357,0.543193,0.652489,0.296054,0.867741,0.991977,0.836362,0.06339,0.047901,0.701545,0.0587227,0.407751,0.83811,0.824906,0.733233,0.212737,0.248067,0.759218,0.673458,0.309902,0.0880294,0.0396737,0.512392,0.396016,0.742324,0.660056,0.602838,0.257233,0.152761,0.375316,0.827733,0.704508,0.647752,0.267924,0.66236,0.382625,0.330609,0.228393,0.611038,0.89148,0.702326,0.451957,0.464785,0.574597,0.559483,0.92972,0.99395,0.937057,0.338963,0.159054,0.154425,0.387133,0.923222,0.0765754,0.0244969,0.0874264,0.280822,0.288418,0.487903,0.994916,0.185937,0.447145,0.0339196,0.64649,0.981443,0.670206,0.558259,0.906883,0.0546359,0.48767,0.659604,0.0756452,0.56099,0.656219,0.105467,0.0498225,0.267794,0.823262,0.481526,0.983064,0.523773,0.602035,0.477778,0.649006,0.524338,0.532438,0.600274,0.0760396,0.697103,0.110038,0.610857,0.148094,0.00933188,0.848451,0.646078,0.51708,0.119259,0.330699,0.427908,0.428508,0.65095,0.332211,0.702707,0.0728397,0.857049,0.0928556,0.47698,0.110556,0.739944,0.31903,0.852058,0.118519,0.898021,0.574939,0.919703,0.26549,0.564805,0.913428,0.161163,0.900419,0.297592,0.0259543,0.196324,0.154178,0.237627,0.723022,0.344615,0.137428,0.271099,0.145022,0.798108,0.722053,0.674249,0.00228298,0.617356,0.223879,0.430617,0.472242,0.278116,0.0406027,0.298226,0.829546,0.393622,0.974033,0.139855,0.291111,0.874015,0.58357,0.997048,0.150106,0.157548,0.211481,0.267824,0.832651,0.266201,0.133119,0.86852,0.901695,0.400406,0.316483,0.0831248,0.744301,0.963016,0.197914,0.649789,0.9277,0.395724,0.876049,0.044506,0.517107,0.509565,0.724563,0.726762,0.684267,0.814487,0.880958,0.359652,0.835728,0.731169,0.967738,0.935939,0.956456,0.62025,0.513218,0.647905,0.649238,0.0496144,0.801198,0.273043,0.260339,0.113237,0.32648,0.480735,0.680631,0.731367,0.304853,0.296507,0.499734,0.991193,0.952465,0.527066,0.671341,0.67643,0.584054,0.697963,0.870121,0.890953,0.113018,0.499398,0.88029,0.0799575,0.974414,0.226291,0.0751027,0.934655,0.460344,0.198385,0.667765,0.32974,0.7809,0.65237,0.316029,0.631906,0.80938,0.282202,0.267532,0.883749,0.250746,0.192895,0.775974,0.623897,0.347496,0.743131,0.603573,0.738233,0.810597,0.468638,0.728281,0.961622,0.841922,0.719031,0.640123,0.428878,0.409314,0.204813,0.179025,0.156398,0.838504,0.0738339,0.353781,0.696607,0.953771,0.592199,0.592538,0.467378,0.994547,0.153808,0.809996,0.703505,0.229941,0.853778,0.471868,0.00560939,0.221266,0.228538,0.235718,0.00178421,0.385408,0.329349,0.898151,0.3785,0.502036,0.848968,0.128003,0.483674,0.650752,0.0802733,0.861158,0.0834464,0.00622243,0.105262,0.572666,0.839822,0.797212,0.978186,0.323296,0.911969,0.773508,0.502724,0.59789,0.783753,0.488787,0.0539021,0.660232,0.477286,0.709668,0.146848,0.216579,0.436786,0.303429,0.546813,0.986803,0.139022,0.492676,0.946686,0.410057,0.657245,0.795487,0.747709,0.42234,0.135214,0.940332,0.115723,0.137808,0.828414,0.740132,0.270132,0.285195,0.529439,0.630186,0.261348,0.813993,0.702118,0.521507,0.00851345,0.682011,0.937226,0.111173,0.517759,0.0204924,0.0318297,0.805204,0.629816,0.634744,0.40303,0.0337812,0.676968,0.640043,0.259798,0.448967,0.229962,0.454015,0.988849,0.91133,0.423143,0.748678,0.90289,0.0451704,0.430759,0.909625,0.230306,0.684646,0.941204,0.91068,0.794832,0.393537,0.644274,0.573696,0.726183,0.833914,0.634671,0.383096,0.654419,0.828258,0.925974,0.256236,0.418775,0.379942,0.446287,0.622991,0.93234,0.51772,0.789956,0.645021,0.0917616,0.164435,0.593699,0.351156,0.062719,0.140682,0.948483,0.298305,0.0151536,0.0374619,0.921546,0.978166,0.865327,0.333787,0.639065,0.682767,0.761312,0.456255,0.933685,0.784856,0.376694,0.562783,0.67078,0.514816,0.0552599,0.584086,0.907844,0.237829,0.197176,0.654839,0.988007,0.0697551,0.495533,0.0680736,0.277254,0.577412,0.000124097,0.179908,0.588891,0.0834414,0.35602,0.168103,0.231711,0.643936,0.426092,0.510058,0.0784841,0.236119,0.505426,0.494163,0.933376,0.79368,0.474226,0.235706,0.024555,0.599888,0.826241,0.225222,0.468696,0.755916,0.866834,0.76139,0.653059,0.785201,0.738526,0.170943,0.656754,0.605108,0.954938,0.720157,0.235887,0.65665,0.247148,0.388441,0.930381,0.150804,0.743138,0.666901,0.854114,0.251712,0.804994,0.872141,0.155581,0.0612907,0.496347,0.611079,0.408431,0.219743,0.015561,0.605157,0.154073,0.384976,0.234151,0.254943,0.28949,0.328289,0.697742,0.951045,0.900506,0.0177894,0.0965357,0.390446,0.280099,0.574483,0.547949,0.498411,0.801176,0.156029,0.0659661,0.139722,0.188017,0.167865,0.969707,0.110231,0.17552,0.294759,0.0417084,0.524598,0.114583,0.437005,0.938262,0.401393,0.941507,0.132196,0.0954412,0.357934,0.434586,0.512831,0.918757,0.623504,0.275641,0.0629947,0.629721,0.592394,0.164706,0.0538542,0.643782,0.610874,0.676181,0.404111,0.523051,0.403005,0.107341,0.785042,0.388991,0.630779,0.693,0.947437,0.634611,0.902947,0.364109,0.401792,0.755249,0.81182,0.0816532,0.973654,0.328815,0.387021,0.649582,0.275131,0.345617,0.69735,0.839931,0.922225,0.343346,0.0364712,0.484026,0.0817097,0.206567,0.000943124,0.485421,0.842238,0.305946,0.193523,0.655533,0.15772,0.322514,0.326787,0.724051,0.978015,0.450744,0.792082,0.624905,0.554157,0.329983,0.846422,0.494826,0.880238,0.473608,0.799805,0.191901,0.465699,0.778289,0.686925,0.833642,0.670059,0.152077,0.105534,0.102441,0.833246,0.462287,0.0511873,0.0239199,0.114621,0.846939,0.93792,0.787926,0.169669,0.190998,0.00895578,0.736376,0.383009,0.490787,0.752856,0.247764,0.824079,0.931019,0.927149,0.786321,0.0293961,0.343781,0.259053,0.806062,0.360448,0.621714,0.908333,0.0968863,0.89544,0.0430355,0.496275,0.82745,0.367352,0.752175,0.101803,0.413726,0.551158,0.282419,0.0603622,0.420217,0.989901,0.955476,0.482678,0.590488,0.0486345,0.465884,0.0980853,0.201715,0.687729,0.464135,0.59698,0.707126,0.468582,0.98074,0.896485,0.695678,0.927015,0.559547,0.455257,0.744376,0.634749,0.964921,0.855721,0.564164,0.13085,0.183706,0.602198,0.370301,0.635651,0.890607,0.372438,0.433045,0.281987,0.0477144,0.374174,0.958217,0.763408,0.215295,0.655476,0.14526,0.111116,0.499976,0.873503,0.25169,0.221586,0.69573,0.423142,0.476055,0.382387,0.921176,0.0859997,0.964383,0.320264,0.032536,0.803516,0.61017,0.20586,0.719802,0.178673,0.063589,0.0226812,0.294189,0.252612,0.565976,0.659291,0.626945,0.452545,0.455671,0.218672,0.545887,0.91856,0.875615,0.507758,0.526441,0.75224,0.992269,0.836691,0.539685,0.778604,0.538087,0.111532,0.376645,0.463581,0.28254,0.555853,0.123605,0.566324,0.881017,0.546064,0.374166,0.780698,0.240407,0.267015,0.508297,0.229089,0.205135,0.549243,0.589157,0.537484,0.813507,0.6762,0.196048,0.0541824,0.781769,0.582328,0.282848,0.339091,0.716848,0.133402,0.553991,0.487147,0.701415,0.29494,0.433376,0.911263,0.253014,0.209204,0.0330219,0.0376768,0.00347251,0.591134,0.44838,0.558859,0.696485,0.964465,0.0806177,0.74087,0.770098,0.12929,0.448129,0.314556,0.53538,0.577449,0.140217,0.148064,0.653603,0.62365,0.624836,0.378393,0.882312,0.249346,0.196095,0.39179,0.415328,0.861999,0.110608,0.347515,0.233581,0.0913429,0.158699,0.797535,0.965198,0.564861,0.246226,0.541003,0.429844,0.998499,0.946057,0.262789,0.275075,0.0200745,0.299621,0.297044,0.738774,0.532458,0.593146,0.991912,0.373415,0.876391,0.233563,0.383852,0.0809897,0.631192,0.0732322,0.328648,0.41165,0.1224,0.000782073,0.885485,0.716256,0.929871,|0.889645,0.164111,0.323369,0.0634497,0.663991,0.546356,0.552357,0.962946,0.95348,0.735912,0.544902,0.208566,0.390845,0.537787,0.676591,0.779768,0.0166769,0.155788,0.676691,0.710399,0.54288,0.731095,0.956246,0.274346,0.852176,0.94317,0.692777,0.576112,0.448242,0.647929,0.745276,0.404668,0.983452,0.339057,0.916875,0.292082,0.179494,0.100917,0.233304,0.421153,0.958053,0.872402,0.841611,0.259569,0.964586,0.332564,0.949614,0.669023,0.291161,0.289768,0.7995,0.799274,0.90267,0.11373,0.572149,0.881484,0.0737873,0.00363183,0.0199024,0.745055,0.217131,0.23679,0.885702,0.349714,0.281723,0.120357,0.0108418,0.638511,0.883314,0.177376,0.50696,0.836151,0.788397,0.757756,0.479105,0.761405,0.0607469,0.705951,0.249128,0.430622,0.437039,0.835744,0.319589,0.256209,0.400541,0.677011,0.350058,0.126076,0.364079,0.51834,0.202949,0.950772,0.284681,0.967809,0.954919,0.027741,0.720223,0.100526,0.164262,0.93884,0.805438,0.029896,0.947655,0.29251,0.298681,0.289649,0.434884,0.642165,0.756885,0.384815,0.0668125,0.803591,0.771848,0.457842,0.826898,0.819205,0.830794,0.885879,0.0725257,0.433262,0.808499,0.203255,0.852651,0.385864,0.179475,0.858229,0.439277,0.266443,0.424147,0.972999,0.911077,0.32306,0.213381,0.717388,0.447815,0.768964,0.0499685,0.108423,0.748759,0.63276,0.0391294,0.0630224,0.489034,0.988048,0.476479,0.115373,0.263378,0.51693,0.290108,0.893695,0.865707,0.180111,0.0503763,0.464698,0.873145,0.199178,0.937734,0.223751,0.669811,0.562626,0.687815,0.983718,0.185748,0.16295,0.941361,0.113847,0.307351,0.346681,0.00148499,0.809118,0.123624,0.654849,0.561106,0.603644,0.935102,0.465967,0.818225,0.609593,0.857301,0.468037,0.930237,0.731268,0.966138,0.128658,0.98861,0.936553,0.479391,0.0450249,0.253597,0.645999,0.0885959,0.779311,0.187839,0.391381,0.218118,0.798885,0.56056,0.104154,0.392101,0.188144,0.228337,0.918866,0.235473,0.805279,0.146177,0.489612,0.279702,0.665107,0.807217,0.991846,0.4498,0.0166578,0.157106,0.570063,0.102815,0.99564,0.730184,0.685153,0.433679,0.112176,0.396779,0.909386,0.590994,0.699239,0.0639245,0.00674146,0.543968,0.58201,0.905977,0.193922,0.643859,0.696538,0.0608135,0.23353,0.212052,0.795083,0.756453,0.191493,0.635072,0.521325,0.0475965,0.808499,0.18847,0.369721,0.602898,0.21903,0.748836,0.764935,0.715753,0.680945,0.197206,0.900596,0.23451,0.87419,0.914828,0.130246,0.946908,0.20824,0.291744,0.0721795,0.0641887,0.445907,0.461919,0.269237,0.159513,0.00460339,0.640308,0.468434,0.162544,0.775509,0.0678362,0.92806,0.616576,0.571444,0.718033,0.210817,0.0621196,0.124137,0.585519,0.390228,0.504461,0.0153483,0.80116,0.554595,0.943902,0.48244,0.914979,0.29324,0.445891,0.603034,0.895714,0.417877,0.334302,0.842062,0.630927,0.213694,0.654974,0.458269,0.4672,0.226907,0.753722,0.71539,0.043479,0.930337,0.535654,0.767424,0.670406,0.831229,0.549263,0.921864,0.0337268,0.140115,0.163157,0.627022,0.180378,0.536796,0.584205,0.94329,0.297259,0.832628,0.131338,0.25001,0.551106,0.643479,0.648328,0.571513,0.872013,0.299172,0.671803,0.232748,0.881826,0.740661,0.192674,0.587401,0.232573,0.108321,0.908061,0.720308,0.0674182,0.604215,0.932459,0.412803,0.187169,0.095201,0.686811,0.584961,0.730772,0.0359099,0.92314,0.755119,0.521191,0.446025,0.88977,0.440331,0.414536,0.678258,0.535482,0.303092,0.168971,0.849943,0.573601,0.929051,0.464133,0.914256,0.0188503,0.0180811,0.59979,0.337049,0.0906201,0.834973,0.922865,0.345311,0.18704,0.63026,0.342121,0.399016,0.513266,0.747324,0.30142,0.0118719,0.197857,0.856993,0.929501,0.0105516,0.373449,0.631126,0.738718,0.890881,0.552472,0.206494,0.95429,0.364187,0.289448,0.0677273,0.905427,0.933651,0.293346,0.915837,0.409076,0.721383,0.893548,0.624873,0.609732,0.490869,0.0734496,0.448397,0.971551,0.0138833,0.493434,0.627773,0.38784,0.491538,0.292393,0.552301,0.0389462,0.255898,0.562655,0.19936,0.710401,0.346863,0.379377,0.952822,0.81488,0.840622,0.205679,0.0425283,0.0179387,0.148349,0.648383,0.355784,0.288177,0.506165,0.179698,0.206467,0.494663,0.809504,0.393462,0.510392,0.129045,0.590075,0.126599,0.292594,0.608511,0.712444,0.789802,0.200484,0.1646,0.572951,0.443889,0.958159,0.420518,0.496173,0.0252707,0.316935,0.199384,0.893793,0.381333,0.305604,0.931979,0.328036,0.919396,0.012437,0.206352,0.954184,0.712746,0.781605,0.348162,0.911752,0.256048,0.656337,0.86986,0.947681,0.850374,0.621519,0.488527,0.354436,0.417383,0.120635,0.92154,0.223777,0.991561,0.739016,0.638178,0.320383,0.503834,0.547911,0.342703,0.0423869,0.403837,0.733174,0.0769388,0.62692,0.605827,0.110875,0.336313,0.29467,0.186851,0.298514,0.152328,0.28269,0.110556,0.997884,0.0524198,0.863476,0.998524,0.492274,0.959335,0.31375,0.402106,0.147143,0.209762,0.0550003,0.442741,0.118081,0.288018,0.965564,0.935942,0.61139,0.292695,0.735025,0.532673,0.250689,0.0523756,0.0502059,0.0276921,0.365026,0.386146,0.327563,0.117296,0.83443,0.686256,0.704745,0.741349,0.110525,0.958314,0.892506,0.232289,0.559912,0.693658,0.668548,0.386225,0.923776,0.999306,0.575792,0.699126,0.946378,0.659248,0.40331,0.164977,0.139229,0.896095,0.673639,0.291605,0.981548,0.663031,0.389204,0.496131,0.0735114,0.0886773,0.799767,0.166962,0.880518,0.0745566,0.0400295,0.446971,0.0159124,0.104348,0.277499,0.376203,0.791355,0.251903,0.828245,0.362077,0.290156,0.960037,0.465195,0.0495292,0.599057,0.877175,0.874944,0.311383,0.103955,0.397844,0.577831,0.524966,0.848872,0.742306,0.339499,0.500277,0.459949,0.427767,0.404257,0.997738,0.09505,0.847613,0.184648,0.843358,0.642031,0.0468131,0.887609,0.763854,0.299347,0.449893,0.466078,0.627913,0.112464,0.476919,0.225777,0.0409227,0.681318,0.348057,0.962038,0.456275,0.289144,0.348525,0.81454,0.138363,0.47432,0.822925,0.979177,0.348238,0.157588,0.544059,0.809156,0.941736,0.420128,0.827341,0.863645,0.578295,0.300877,0.882866,0.571818,0.771642,0.912891,0.69533,0.122147,0.0573531,0.106681,0.726909,0.992139,0.849896,0.513377,0.0337692,0.558921,0.319434,0.813199,0.840278,0.21589,0.804546,0.389187,0.830109,0.649774,0.163342,0.795245,0.461051,0.546411,0.962465,0.444561,0.433771,0.631875,0.573562,0.436252,0.107674,0.970044,0.983216,0.228373,0.0179988,0.289038,0.921933,0.176477,0.180731,0.703814,0.691445,0.163153,0.703339,0.512564,0.637384,0.587388,0.99213,0.417821,0.287766,0.565301,0.821487,0.246622,0.194128,0.238533,0.350565,0.564744,0.773609,0.710511,0.41171,0.153517,0.673928,0.906921,0.0551065,0.868389,0.136229,0.317867,0.424094,0.397905,0.783711,0.962927,0.400986,0.0369244,0.846723,0.450344,0.474638,0.976263,0.754715,0.506945,0.311159,0.838626,0.61827,0.814255,0.753778,0.97346,0.519522,0.109272,0.572523,0.523857,0.114465,0.888519,0.589629,0.672356,0.840933,0.850613,0.961083,0.798928,0.991308,0.51131,0.81549,0.6291,0.785832,0.797386,0.519264,0.484006,0.475378,0.121686,0.51529,0.706791,0.658677,0.197739,0.959127,0.572074,0.00209016,0.337444,0.226299,0.0653425,0.884091,0.741672,0.710133,0.00421482,0.432025,0.712722,0.390381,0.429161,0.925538,0.59934,0.405308,0.339211,0.94675,0.651461,0.72336,0.522876,0.568142,0.524282,0.976435,0.0211463,0.182608,0.34172,0.17712,0.136287,0.54243,0.599057,0.690056,0.339622,0.76383,0.858908,0.968653,0.320581,0.253529,0.747758,0.93719,0.555578,0.705132,0.504438,0.620828,0.792043,0.463161,0.466055,0.565063,0.498949,0.0875239,0.025795,0.0273573,0.413094,0.346726,0.476086,0.369085,0.902725,0.920457,0.886316,0.482225,0.148559,0.919991,0.275895,0.612607,0.312499,0.525596,0.237095,0.305893,0.454467,0.346326,0.714372,0.224027,0.60365,0.0888985,0.666085,0.303721,0.557672,0.592333,0.125569,0.00679064,0.0596175,0.186417,0.411499,0.608156,0.125478,0.892004,0.635872,0.701298,0.837424,0.0136701,0.34779,0.112815,0.326942,0.902291,0.740048,0.376048,0.340869,0.095149,0.767072,0.935866,0.138824,0.313098,0.101847,0.751399,0.911136,0.406533,0.348647,0.364223,0.978637,0.750817,0.808367,0.0130835,0.442991,0.784167,0.103487,0.214724,0.958079,0.622329,0.395365,0.584142,0.302815,0.265996,0.256123,0.950167,0.473722,0.115404,0.0639676,0.270253,0.452046,0.240752,0.0104629,0.819123,0.229307,0.146343,0.175391,0.725542,0.267972,0.568641,0.163638,0.335249,0.376322,0.660761,0.390957,0.908592,0.8019,0.813796,0.8022,0.190944,0.228162,0.598824,0.28796,0.372543,0.670488,0.00492495,0.343269,0.574231,0.596125,0.526834,0.469736,0.588507,0.954116,0.269682,0.381177,0.977714,0.610882,0.760858,0.955409,0.562693,0.734182,0.0573189,0.534302,0.6893,0.0905622,0.306205,0.648206,0.639748,0.299835,0.172318,0.0660631,0.57014,0.831137,0.143123,0.0386291,0.717578,0.947681,0.165793,0.181915,0.470551,0.91924,0.465789,0.729944,0.402864,0.444144,0.524659,0.339163,0.751187,0.15331,0.763277,0.922109,0.541636,0.0716947,0.139851,0.00732511,0.112031,0.0616882,0.708114,0.96356,0.90001,0.461055,0.0510221,0.948131,0.959979,0.547734,0.978823,0.272212,0.755716,0.167287,0.404024,0.168751,0.446999,0.308629,0.88536,0.796005,0.117575,0.569502,0.903624,0.0989753,0.998528,0.328986,0.988765,0.0282379,0.081663,0.216455,0.911969,0.723447,0.65855,0.861681,0.638026,0.691635,0.11679,0.163905,0.37406,0.0537662,0.022324,0.240429,0.158746,0.234914,0.083759,0.393324,0.0883744,0.159397,0.433845,0.857434,0.764756,0.342704,0.968304,0.528031,|0.745653,0.686103,0.69619,0.0928799,0.384196,0.0987111,0.328752,0.888217,0.376605,0.0522459,0.914313,0.0203386,0.049235,0.915025,0.424239,0.664962,0.397821,0.607752,0.611819,0.605397,0.297029,0.0378999,0.764839,0.167575,0.0368782,0.221141,0.745833,0.143475,0.193392,0.109852,0.223623,0.31319,0.193317,0.205708,0.273451,0.0537825,0.455992,0.618257,0.783499,0.168717,0.160556,0.196453,0.918316,0.067704,0.613185,0.876976,0.446714,0.838383,0.278496,0.471426,0.811168,0.738848,0.442083,0.923082,0.409307,0.347775,0.47952,0.523228,0.141379,0.710694,0.333074,0.57,0.452773,0.255761,0.015642,0.656568,0.516399,0.423801,0.144171,0.767557,0.438449,0.369577,0.783601,0.745191,0.0191261,0.249757,0.701474,0.0799451,0.162296,0.564778,0.329998,0.572501,0.654566,0.473673,0.877817,0.873849,0.23425,0.816329,0.97095,0.176636,0.365118,0.160913,0.540659,0.223167,0.563031,0.373275,0.273077,0.634983,0.530678,0.750112,0.629299,0.974872,0.4904,0.0233967,0.966682,0.888169,0.325417,0.71055,0.45258,0.887156,0.634151,0.896181,0.424055,0.0796673,0.116006,0.804553,0.936105,0.318048,0.99356,0.0164605,0.54013,0.727824,0.0503567,0.145994,0.720764,0.593414,0.660966,0.505105,0.745827,0.810457,0.259452,0.821346,0.824171,0.596684,0.274135,0.00734979,0.362721,0.249409,0.588951,0.657957,0.974593,0.761961,0.872621,0.506774,0.0421848,0.897384,0.599936,0.793718,0.658032,0.294743,0.670437,0.587237,0.0227038,0.393505,0.407465,0.0899727,0.473998,0.803186,0.0179792,0.677838,0.690318,0.240674,0.872861,0.898686,0.952555,0.929895,0.138517,0.061509,0.371491,0.604172,0.43104,0.366812,0.179814,0.30275,0.135373,0.23471,0.440921,0.672494,0.201646,0.036611,0.152847,0.229924,0.620475,0.812455,0.400956,0.578129,0.369454,0.285254,0.15933,0.0414511,0.67343,0.37399,0.159995,0.720439,0.156072,0.986843,0.734434,0.210291,0.301851,0.01248,0.114086,0.313329,0.266795,0.688948,0.580011,0.612582,0.886175,0.147041,0.33936,0.910399,0.0201768,0.0969604,0.198196,0.716325,0.630265,0.625767,0.270452,0.971332,0.151199,0.358539,0.577265,0.72498,0.0457629,0.0225759,0.878071,0.755155,0.410952,0.0255821,0.0296558,0.120622,0.667345,0.525858,0.726857,0.697529,0.554082,0.271484,0.699209,0.680208,0.433018,0.84165,0.586641,0.65659,0.662154,0.84204,0.00965112,0.720371,0.371494,0.75098,0.0993561,0.167796,0.642209,0.331469,0.396982,0.244336,0.592559,0.718877,0.783055,0.218076,0.217497,0.335296,0.811855,0.825423,0.455231,0.932603,0.453118,0.409489,0.629851,0.485116,0.59432,0.217938,0.595806,0.676967,0.966827,0.110756,0.112837,0.448785,0.395483,0.968562,0.49924,0.768147,0.98484,0.458362,0.899218,0.211525,0.103414,0.164666,0.651818,0.687736,0.434589,0.579921,0.948541,0.813392,0.417182,0.397407,0.174665,0.590448,0.250924,0.955871,0.222778,0.498875,0.40627,0.635168,0.657461,0.200567,0.718425,0.414329,0.993641,0.964298,0.803848,0.345463,0.470655,0.633957,0.364042,0.213782,0.35109,0.786228,0.106888,0.314843,0.626979,0.772213,0.46069,0.646882,0.789778,0.788055,0.112721,0.546406,0.546289,0.928695,0.171597,0.440095,0.931292,0.521383,0.0739039,0.693449,0.439791,0.263345,0.306973,0.464699,0.138714,0.386452,0.527773,0.0340829,0.982471,0.107476,0.537293,0.150001,0.513675,0.399589,0.173888,0.915615,0.245481,0.782426,0.230419,0.539699,0.315522,0.955332,0.54772,0.578838,0.517896,0.493317,0.456659,0.341238,0.200348,0.573458,0.664125,0.729106,0.113621,0.922943,0.209104,0.789763,0.656666,0.938318,0.0180836,0.430968,0.437336,0.485495,0.585369,0.166116,0.955304,0.463319,0.000800669,0.148543,0.343889,0.530719,0.0936653,0.385158,0.823238,0.775806,0.757726,0.652169,0.325218,0.0537813,0.032188,0.670983,0.0593362,0.889145,0.191269,0.360824,0.00504059,0.858729,0.657768,0.484181,0.547751,0.0478917,0.00709021,0.384735,0.947788,0.34223,0.574397,0.952838,0.501538,0.101641,0.50428,0.105815,0.293703,0.610336,0.84907,0.423864,0.546103,0.505069,0.527291,0.730566,0.953683,0.022809,0.5923,0.56767,0.713968,0.749013,0.495558,0.492009,0.170635,0.408726,0.622916,0.754659,0.0603766,0.377076,0.696203,0.989102,0.472025,0.834175,0.710797,0.32106,0.735886,0.934143,0.845032,0.980689,0.627189,0.571808,0.880342,0.354089,0.653061,0.827054,0.115527,0.262773,0.0650081,0.104008,0.525633,0.930406,0.628674,0.882727,0.0156252,0.976246,0.759587,0.0139721,0.222313,0.41604,0.94128,0.966012,0.179784,0.0999287,0.437085,0.258241,0.754736,0.316592,0.494827,0.879427,0.933007,0.453892,0.00142562,0.282808,0.926751,0.79305,0.828964,0.0550253,0.16715,0.404314,0.405777,0.0778646,0.440759,0.958798,0.0139273,0.188986,0.506651,0.0206754,0.0228698,0.955182,0.226434,0.203394,0.222927,0.273644,0.0689633,0.532165,0.292871,0.0814566,0.950174,0.741151,0.019872,0.256431,0.21322,0.44807,0.241172,0.394487,0.020938,0.780848,0.628397,0.184403,0.542377,0.12632,0.594913,0.225943,0.997165,0.618935,0.386646,0.835399,0.555254,0.932001,0.00243604,0.0402377,0.440182,0.813879,0.270193,0.210747,0.888756,0.833909,0.451394,0.263455,0.0269873,0.997396,0.0605149,0.332919,0.953723,0.790789,0.567369,0.604647,0.567035,0.107729,0.0148051,0.946475,0.809785,0.145349,0.841446,0.807169,0.26345,0.867209,0.674535,0.956974,0.872213,0.500115,0.139295,0.398007,0.600535,0.500899,0.139682,0.945365,0.491979,0.0157087,0.269902,0.501429,0.865247,0.639361,0.719734,0.888599,0.0483127,0.314676,0.664345,0.650098,0.706854,0.135504,0.273647,0.373304,0.497349,0.00653714,0.855323,0.0350556,0.271352,0.29751,0.576434,0.676815,0.26684,0.208834,0.215126,0.821648,0.483553,0.200577,0.872094,0.448766,0.0979748,0.631538,0.848665,0.714402,0.925929,0.284165,0.684527,0.810576,0.990823,0.812698,0.834945,0.770281,0.630651,0.276394,0.544838,0.243549,0.777476,0.137492,0.462614,0.940938,0.251251,0.163906,0.630196,0.170452,0.591248,0.0833218,0.646132,0.966537,0.262777,0.788042,0.0922855,0.0404683,0.788253,0.464116,0.0784412,0.542901,0.193174,0.729749,0.636043,0.756626,0.886766,0.429301,0.0238946,0.321843,0.525738,0.360902,0.03088,0.463947,0.407212,0.0739887,0.873055,0.454708,0.0424032,0.651511,0.0206811,0.0171905,0.0145565,0.987056,0.388223,0.415753,0.595623,0.136537,0.715095,0.316748,0.641578,0.0879704,0.226638,0.0725663,0.0447432,0.483943,0.228223,0.711164,0.336232,0.997835,0.256068,0.981837,0.511014,0.256475,0.880908,0.760499,0.478859,0.502668,0.323185,0.660466,0.704177,0.789167,0.981704,0.906491,0.194751,0.522279,0.206052,0.944305,0.619085,0.319411,0.248409,0.0868304,0.858651,0.417693,0.159648,0.440017,0.65334,0.954192,0.691423,0.839367,0.716401,0.0923294,0.547099,0.252654,0.408965,0.661234,0.496642,0.701786,0.463195,0.69514,0.24216,0.648059,0.892219,0.75408,0.0385814,0.0587907,0.760775,0.872372,0.881174,0.821611,0.702311,0.468846,0.504017,0.374096,0.86276,0.28935,0.771446,0.65619,0.00563413,0.894269,0.734903,0.335146,0.00810492,0.907796,0.817067,0.0279572,0.324719,0.274847,0.753285,0.135803,0.474527,0.973959,0.76436,0.756028,0.000546694,0.0289819,0.00945234,0.0819759,0.647632,0.257298,0.204189,0.226421,0.928296,0.939194,0.144099,0.271963,0.367459,0.811659,0.341162,0.931241,0.343877,0.749767,0.865139,0.995078,0.855582,0.686208,0.499385,0.598713,0.714509,0.893706,0.704232,0.601719,0.0598645,0.420341,0.790853,0.50045,0.576723,0.760794,0.571996,0.570065,0.430038,0.552383,0.275152,0.455428,0.0443329,0.494406,0.00441819,0.75149,0.0259395,0.313853,0.651923,0.0220773,0.666808,0.219535,0.253902,0.675926,0.797869,0.336428,0.300132,0.976301,0.182599,0.983384,0.733818,0.470061,0.865819,0.395997,0.362786,0.988955,0.745659,0.415177,0.177168,0.0607526,0.581073,0.575172,0.0822127,0.0453129,0.914319,0.164519,0.565257,0.950468,0.326851,0.939092,0.330032,0.204392,0.361477,0.976007,0.108498,0.49318,0.114107,0.305728,0.79434,0.480038,0.634969,0.755512,0.437839,0.237787,0.569647,0.760606,0.118392,0.909489,0.890662,0.602394,0.211749,0.416662,0.251744,0.564862,0.0473108,0.953279,0.956599,0.97313,0.275183,0.922952,0.0762977,0.525005,0.129541,0.837223,0.555894,0.363419,0.291193,0.943775,0.418932,0.760063,0.232183,0.279178,0.153814,0.320989,0.64443,0.677111,0.0647816,0.336451,0.444999,0.103483,0.484819,0.807871,0.831734,0.0993298,0.11262,0.756039,0.278072,0.379828,0.919603,0.584343,0.293426,0.465695,0.272315,0.062652,0.845895,0.310962,0.425401,0.0388851,0.458103,0.584601,0.504994,0.548197,0.530782,0.721666,0.12642,0.251376,0.876371,0.635913,0.376372,0.788213,0.36553,0.491073,0.140889,0.3554,0.40417,0.489813,0.757505,0.664283,0.780739,0.490155,0.121537,0.698329,0.221195,0.58302,0.41806,0.495798,0.214364,0.0462285,0.872677,0.0610881,0.645194,0.736409,0.107397,0.242851,0.962221,0.491979,0.747525,0.817343,0.213836,0.966939,0.648366,0.534335,0.0614006,0.948961,0.454289,0.465174,0.757065,0.470457,0.903643,0.223047,0.409063,0.491929,0.48321,0.151425,0.407284,0.909574,0.430578,0.141729,0.217709,0.53552,0.72979,0.920284,0.528911,0.0901309,0.118773,0.0441905,0.786526,0.708987,0.23966,0.361936,0.902824,0.593843,0.182246,0.254341,0.942524,0.794019,0.823393,0.0333943,0.990737,0.442318,0.16719,0.666466,0.672803,0.548085,0.109263,0.055028,0.856962,0.602454,0.91597,0.9528,0.920238,0.368409,0.776112,0.315069,0.892002,0.587919,0.745619,0.922053,0.103885,0.460495,0.337057,0.791178,0.729469,0.231365,0.98049,0.529361,0.181438,0.844375,|0.505334,0.0797978,0.0209357,0.396201,0.134943,0.718303,0.589041,0.97224,0.916395,0.683497,0.522133,0.0793775,0.485372,0.026239,0.229518,0.432027,0.328437,0.98833,0.566961,0.580344,0.625849,0.55719,0.00380349,0.568536,0.224772,0.468182,0.0490154,0.0368242,0.411519,0.0694589,0.194592,0.977133,0.822182,0.951462,0.858017,0.985965,0.71167,0.0119702,0.00796539,0.252622,0.879122,0.80995,0.00887758,0.873527,0.161159,0.354859,0.171815,0.0429636,0.223261,0.909312,0.789545,0.907099,0.943146,0.339798,0.84718,0.884956,0.0735828,0.164498,0.63693,0.185295,0.208026,0.411772,0.752045,0.725687,0.426458,0.255531,0.631444,0.338983,0.92597,0.10639,0.749079,0.804056,0.394378,0.713846,0.431651,0.0398816,0.720178,0.472885,0.45536,0.629892,0.80877,0.644011,0.18591,0.221408,0.768233,0.10087,0.833238,0.818736,0.861177,0.568305,0.576357,0.329951,0.626082,0.411171,0.493883,0.969518,0.715655,0.0172665,0.556961,0.209604,0.651804,0.511775,0.065857,0.645511,0.701121,0.657142,0.889433,0.277141,0.475652,0.249085,0.252379,0.889738,0.0603738,0.178348,0.478283,0.994427,0.768405,0.845938,0.469537,0.296512,0.140963,0.660409,0.463608,0.684657,0.263968,0.193233,0.96016,0.740186,0.613168,0.0500565,0.201449,0.550537,0.15512,0.807989,0.341641,0.504118,0.421694,0.714654,0.786569,0.310217,0.309395,0.179526,0.194164,0.700479,0.50374,0.911304,0.817698,0.0604923,0.115464,0.631501,0.913118,0.829632,0.577404,0.30912,0.629273,0.187067,0.197954,0.110542,0.150781,0.118256,0.628561,0.81357,0.723845,0.558946,0.0510691,0.662451,0.105684,0.682101,0.687139,0.575016,0.478612,0.400513,0.46942,0.225978,0.970349,0.358309,0.113509,0.394652,0.765441,0.93381,0.979811,0.175068,0.17805,0.496332,0.653161,0.660034,0.556844,0.83988,0.138808,0.818541,0.831431,0.665363,0.335178,0.347519,0.0617664,0.902696,0.914301,0.312255,0.943981,0.0745953,0.767998,0.910077,0.0889916,0.239056,0.72854,0.624497,0.138003,0.894068,0.737279,0.574329,0.759599,0.0266886,0.0235313,0.708622,0.764845,0.630444,0.00545293,0.0155879,0.748775,0.933736,0.227021,0.781418,0.169065,0.318178,0.621504,0.0763708,0.588199,0.205007,0.953057,0.308626,0.463278,0.928593,0.805064,0.766521,0.46775,0.508394,0.492342,0.198778,0.0787292,0.138657,0.778748,0.367403,0.680636,0.892505,0.00356901,0.874179,0.808244,0.0418693,0.567575,0.727004,0.154719,0.494528,0.888845,0.725694,0.466287,0.323556,0.166,0.157811,0.700619,0.846271,0.0855412,0.00138968,0.591008,0.687784,0.528351,0.0915928,0.543537,0.241652,0.5322,0.860782,0.410333,0.440728,0.796635,0.836822,0.850468,0.042623,0.722014,0.553295,0.149401,0.140106,0.550152,0.180612,0.728589,0.855067,0.601265,0.472424,0.0267372,0.580614,0.638387,0.209667,0.935009,0.33606,0.390836,0.655548,0.805785,0.10506,0.927076,0.0164988,0.326563,0.495954,0.0881872,0.907678,0.076978,0.621453,0.714156,0.864777,0.56381,0.891002,0.444822,0.707606,0.0314922,0.47215,0.654796,0.175879,0.0631092,0.24044,0.917576,0.512668,0.0390288,0.635332,0.471069,0.593361,0.0493663,0.644409,0.652593,0.456452,0.319916,0.936742,0.654294,0.969696,0.455031,0.187284,0.1002,0.434319,0.319094,0.320372,0.103131,0.390842,0.272186,0.910812,0.275008,0.804781,0.478127,0.208095,0.143558,0.415258,0.934792,0.54034,0.0018574,0.143994,0.864524,0.423893,0.616175,0.536497,0.460412,0.896183,0.0918359,0.245748,0.0733641,0.554079,0.637409,0.70288,0.728296,0.810658,0.00621772,0.814513,0.624709,0.0221227,0.382727,0.928576,0.159237,0.445388,0.637137,0.0324603,0.129344,0.551238,0.523139,0.610614,0.541942,0.384118,0.0649415,0.486636,0.116921,0.854304,0.62848,0.709014,0.323709,0.468934,0.10612,0.771973,0.16667,0.990564,0.91958,0.204804,0.288172,0.877413,0.494628,0.864048,0.581659,0.207274,0.256979,0.741324,0.0659181,0.202916,0.198342,0.327364,0.27306,0.266056,0.588442,0.608785,0.837056,0.344604,0.286337,0.648178,0.213802,0.00986725,0.342137,0.297038,0.364928,0.521573,0.0900136,0.410962,0.134597,0.579929,0.448759,0.866576,0.584513,0.809145,0.734226,0.125378,0.501041,0.272476,0.661171,0.0135705,0.547119,0.331532,0.52176,0.578319,0.010553,0.897158,0.784789,0.40293,0.64801,0.417443,0.399633,0.520707,0.281567,0.400724,0.260785,0.961803,0.387559,0.244546,0.197685,0.717876,0.702481,0.501923,0.137666,0.271521,0.957634,0.417032,0.451153,0.0376353,0.924632,0.754143,0.943961,0.439712,0.194823,0.761579,0.00213021,0.246023,0.206678,0.41216,0.855288,0.72233,0.197801,0.270843,0.401647,0.782373,0.462097,0.377163,0.559556,0.889623,0.108554,0.134931,0.447426,0.65111,0.745835,0.600014,0.363369,0.414009,0.0583666,0.753697,0.883503,0.962518,0.347549,0.421325,0.169164,0.353787,0.149555,0.473967,0.31985,0.486246,0.457861,0.312091,0.217158,0.153382,0.590801,0.232692,0.884948,0.110088,0.958633,0.222426,0.584399,0.285127,0.338828,0.108036,0.72335,0.399399,0.931763,0.793954,0.374566,0.299589,0.724838,0.39862,0.554659,0.874409,0.998712,0.719889,0.9486,0.0424578,0.754617,0.640284,0.893028,0.502862,0.91228,0.314707,0.86769,0.68147,0.570005,0.305862,0.606572,0.397309,0.626768,0.964455,0.868029,0.720314,0.0640324,0.805709,0.263466,0.963078,0.954347,0.478932,0.938653,0.413838,0.829232,0.301265,0.0382875,0.501758,0.242797,0.14295,0.780039,0.664101,0.671573,0.436166,0.93668,0.471899,0.665815,0.684366,0.148824,0.721364,0.455397,0.371438,0.184625,0.780535,0.868413,0.298984,0.0621216,0.716854,0.256603,0.336042,0.0779805,0.222008,0.28804,0.815901,0.921023,0.514122,0.223534,0.57259,0.326075,0.770826,0.285386,0.294418,0.968665,0.644491,0.125919,0.532078,0.532062,0.308143,0.407022,0.159396,0.451351,0.871467,0.657327,0.279772,0.830774,0.656465,0.498498,0.521164,0.784952,0.287184,0.794981,0.63724,0.934774,0.641744,0.573613,0.169683,0.235908,0.0215253,0.227834,0.656735,0.323264,0.239018,0.916247,0.905327,0.103552,0.843136,0.831104,0.744871,0.232901,0.810253,0.591254,0.149865,0.455952,0.168039,0.665412,0.154042,0.66358,0.977759,0.731807,0.273555,0.698349,0.649694,0.53097,0.0630772,0.0109857,0.250458,0.560978,0.276729,0.401644,0.592203,0.609208,0.800792,0.787231,0.832275,0.97624,0.853628,0.559092,0.169733,0.246185,0.97835,0.365102,0.874819,0.253881,0.796171,0.815289,0.0559223,0.379948,0.619457,0.556592,0.14155,0.894402,0.480972,0.449838,0.566394,0.138875,0.192155,0.570364,0.887794,0.849197,0.682238,0.143238,0.881048,0.576215,0.273634,0.773728,0.868104,0.0765873,0.647572,0.924171,0.621713,0.0162954,0.461302,0.710284,0.97181,0.485095,0.47883,0.658005,0.50469,0.771939,0.951138,0.954002,0.881455,0.0823232,0.674706,0.683118,0.644498,0.992761,0.0607151,0.734678,0.814608,0.602514,0.0376402,0.416432,0.985617,0.648029,0.0648752,0.152114,0.130971,0.186993,0.646769,0.171483,0.641475,0.862948,0.935254,0.068711,0.912295,0.297764,0.745323,0.511387,0.755644,0.399437,0.465789,0.896441,0.942556,0.299184,0.745489,0.319629,0.269358,0.775315,0.967884,0.982493,0.0411569,0.83046,0.028415,0.193704,0.369011,0.838141,0.83012,0.021201,0.301574,0.112714,0.587582,0.158352,0.0401487,0.253044,0.556406,0.255175,0.509923,0.598917,0.82911,0.715134,0.617364,0.955083,0.21091,0.11113,0.9149,0.561925,0.82433,0.123887,0.0657672,0.297925,0.255881,0.108029,0.122373,0.581668,0.16198,0.191558,0.375599,0.334753,0.809071,0.341601,0.931616,0.274239,0.912517,0.996381,0.735845,0.36531,0.655277,0.247766,0.531472,0.661069,0.817758,0.411834,0.759708,0.442659,0.658478,0.423652,0.984162,0.707334,0.256442,0.112598,0.585581,0.370945,0.371669,0.347222,0.753724,0.837872,0.580435,0.71172,0.195469,0.490381,0.967227,0.228702,0.763383,0.715521,0.00315171,0.181991,0.254909,0.166616,0.460925,0.0394309,0.619726,0.949764,0.162492,0.71014,0.737957,0.330704,0.0528337,0.0100216,0.360275,0.775234,0.989952,0.10927,0.332301,0.63569,0.96025,0.53255,0.109736,0.416516,0.0163227,0.12432,0.595442,0.67045,0.135787,0.642532,0.982972,0.255479,0.432889,0.246466,0.123456,0.718467,0.699347,0.161533,0.333654,0.904619,0.589914,0.521986,0.191336,0.650166,0.228679,0.212419,0.203158,0.737916,0.270765,0.988282,0.535561,0.313194,0.0357414,0.349677,0.103079,0.362615,0.361142,0.0724158,0.391693,0.0980241,0.993967,0.220383,0.110759,0.94689,0.071534,0.961986,0.348148,0.54243,0.577954,0.26849,0.502709,0.986101,0.41582,0.831238,0.585836,0.479429,0.0529194,0.660224,0.222661,0.615295,0.867419,0.444179,0.540307,0.707047,0.974214,0.294879,0.27372,0.944274,0.475563,0.929103,0.971353,0.688514,0.945577,0.299225,0.139635,0.148738,0.580981,0.564157,0.664549,0.672804,0.277448,0.896527,0.235034,0.760843,0.00425434,0.614705,0.329164,0.735417,0.0986074,0.796141,0.143273,0.89328,0.00258803,0.730845,0.668891,0.709168,0.91237,0.098389,0.810361,0.554539,0.874602,0.612751,0.310222,0.513607,0.718563,0.551723,0.271308,0.405199,0.487577,0.422239,0.153978,0.193919,0.574988,0.209785,0.642902,0.474495,0.581715,0.981334,0.481266,0.0443904,0.467747,0.141858,0.0710339,0.559061,0.610862,0.407185,0.283144,0.778993,0.63853,0.834764,0.953128,0.0481034,0.916915,0.81278,0.46448,0.425799,0.097817,0.81473,0.306912,0.78135,0.920258,0.734284,0.0141928,0.319957,0.061346,0.266982,0.882873,0.891091,0.801956,0.203441,0.922439,0.389661,0.401095,0.75746,0.667857,0.900794,0.785137,0.578081,0.721134,0.350445,0.19719,0.922897,0.568706,0.419506,0.115084,|0.621121,0.850242,0.0906023,0.514327,0.345978,0.0525498,0.0487178,0.752429,0.542563,0.0464141,0.00587893,0.420259,0.711157,0.280754,0.894994,0.12356,0.743348,0.522387,0.242935,0.814746,0.333708,0.999963,0.195141,0.324508,0.528797,0.628381,0.832131,0.354156,0.341741,0.100948,0.844676,0.822799,0.081881,0.439432,0.7254,0.671625,0.556056,0.917868,0.256769,0.964909,0.629227,0.954836,0.538416,0.611176,0.7434,0.61379,0.867041,0.548188,0.977721,0.360245,0.769729,0.89015,0.340865,0.715048,0.21589,0.621933,0.0258418,0.25312,0.540768,0.124782,0.508265,0.533148,0.662386,0.418723,0.44892,0.426423,0.518256,0.700594,0.927002,0.739229,0.436496,0.664864,0.0795736,0.587218,0.725984,0.789712,0.921107,0.199484,0.683847,0.924016,0.575184,0.955939,0.568094,0.907971,0.224088,0.9338,0.581411,0.283433,0.316944,0.0788443,0.401191,0.468094,0.476292,0.787874,0.438733,0.733433,0.0641626,0.847714,0.331578,0.396144,0.25369,0.732375,0.650241,0.0620055,0.831487,0.729015,0.621706,0.0115159,0.535509,0.217917,0.862725,0.439984,0.816209,0.73499,0.109631,0.297273,0.262835,0.769026,0.275262,0.536104,0.843878,0.703853,0.490307,0.609342,0.103939,0.0655652,0.40727,0.35791,0.968827,0.479321,0.954864,0.454888,0.119031,0.637139,0.183663,0.489611,0.697158,0.482256,0.465041,0.315167,0.0690753,0.535986,0.211246,0.186033,0.945962,0.799845,0.527906,0.615513,0.555565,0.521918,0.956502,0.602282,0.428874,0.279575,0.502204,0.651231,0.0370426,0.555182,0.779955,0.838442,0.119674,0.605657,0.489825,0.848895,0.001926,0.393425,0.621274,0.399349,0.196701,0.187039,0.471046,0.590801,0.489123,0.350039,0.369478,0.405826,0.21243,0.646575,0.683174,0.429543,0.434951,0.733364,0.178235,0.35643,0.638044,0.192928,0.958512,0.208701,0.339992,0.715926,0.514568,0.331989,0.975377,0.899971,0.911492,0.328754,0.785143,0.000263989,0.828207,0.0279588,0.693562,0.236339,0.732329,0.525283,0.192456,0.409823,0.956689,0.835544,0.79981,0.706288,0.854103,0.233932,0.242943,0.813978,0.124714,0.598749,0.197671,0.931411,0.686665,0.892632,0.137292,0.517927,0.735106,0.132504,0.845338,0.765874,0.608958,0.737308,0.882815,0.63672,0.212403,0.115332,0.310542,0.902505,0.815915,0.294734,0.0428801,0.340019,0.27739,0.798774,0.908948,0.381363,0.126524,0.643022,0.086244,0.287244,0.187352,0.922613,0.386506,0.880209,0.549984,0.793365,0.816649,0.919462,0.550042,0.834237,0.874625,0.0858873,0.92167,0.305923,0.444761,0.0468223,0.0969632,0.995916,0.915659,0.848128,0.821912,0.575292,0.0807141,0.907252,0.327953,0.30235,0.881941,0.349999,0.273058,0.440319,0.696466,0.545128,0.447668,0.987742,0.672488,0.710137,0.787846,0.546692,0.63482,0.119409,0.010244,0.252557,0.761132,0.236555,0.429872,0.451791,0.65744,0.958965,0.898299,0.621245,0.121487,0.194928,0.880677,0.442096,0.0263785,0.990477,0.0980228,0.0762572,0.37066,0.836819,0.251872,0.550184,0.159154,0.216971,0.26686,0.352024,0.0946994,0.704143,0.30204,0.331382,0.394025,0.798088,0.374711,0.257364,0.141281,0.123325,0.989555,0.150399,0.966845,0.194588,0.0556796,0.164025,0.731532,0.402715,0.357694,0.526691,0.928755,0.435576,0.514471,0.642223,0.915754,0.800362,0.826554,0.983668,0.430002,0.101616,0.255359,0.0935519,0.786866,0.200285,0.44052,0.443996,0.128129,0.931491,0.585222,0.311058,0.706839,0.305728,0.231703,0.723413,0.157624,0.0437518,0.33509,0.177052,0.402564,0.973987,0.80849,0.756691,0.194661,0.787885,0.692293,0.243949,0.745835,0.00238752,0.93567,0.202503,0.214816,0.876591,0.293546,0.179363,0.521738,0.791614,0.435789,0.837053,0.0840885,0.163172,0.0544813,0.868592,0.0365557,0.195734,0.613927,0.262356,0.40243,0.928064,0.927949,0.689394,0.588112,0.545792,0.734438,0.626451,0.0316365,0.630492,0.255371,0.228315,0.0607731,0.655425,0.765413,0.684569,0.214491,0.625167,0.358303,0.338394,0.503459,0.408536,0.13997,0.88711,0.657573,0.596768,0.404766,0.215579,0.642375,0.188065,0.602176,0.434554,0.28328,0.309882,0.960432,0.825391,0.699778,0.152385,0.845281,0.0386233,0.754158,0.249757,0.944305,0.280864,0.290717,0.195629,0.915164,0.673631,0.376307,0.940721,0.539101,0.646169,0.204943,0.798521,0.499939,0.14593,0.0876352,0.304851,0.401683,0.0872601,0.180098,0.757119,0.416864,0.825664,0.211866,0.411717,0.617209,0.371806,0.0287123,0.669493,0.535795,0.0230007,0.706031,0.146025,0.0830474,0.252003,0.946298,0.577075,0.0217693,0.777215,0.67884,0.391475,0.218946,0.630303,0.0452657,0.918559,0.871034,0.995308,0.526817,0.885591,0.30707,0.859884,0.848692,0.661856,0.653163,0.175687,0.680444,0.138913,0.443547,0.515644,0.40326,0.378105,0.914947,0.110995,0.319794,0.985788,0.606805,0.783397,0.300833,0.0863659,0.375547,0.286615,0.74113,0.948807,0.556345,0.744153,0.694509,0.366266,0.180404,0.199907,0.251512,0.377647,0.53264,0.303426,0.00854528,0.665391,0.763482,0.141321,0.578666,0.420713,0.813193,0.588308,0.385982,0.274303,0.478456,0.900218,0.446094,0.732222,0.403606,0.500446,0.895192,0.181485,0.157396,0.904838,0.54222,0.39873,0.472786,0.132622,0.242331,0.489232,0.597817,0.00164419,0.987405,0.146002,0.163265,0.364238,0.956253,0.716569,0.450573,0.860872,0.763438,0.22996,0.39762,0.848319,0.572775,0.29068,0.343118,0.916034,0.917895,0.0982503,0.305907,0.717482,0.498648,0.916258,0.458233,0.522501,0.737326,0.743685,0.712224,0.149961,0.192904,0.578565,0.848296,0.683536,0.860498,0.780805,0.260311,0.926598,0.00468659,0.409984,0.855357,0.205018,0.981831,0.268371,0.212161,0.728342,0.0799944,0.351973,0.774309,0.866973,0.733945,0.882263,0.434421,0.0828252,0.0992406,0.957558,0.148842,0.220461,0.0602733,0.262008,0.089758,0.379856,0.127215,0.64604,0.808684,0.961537,0.915965,0.773279,0.718296,0.609304,0.468799,0.903985,0.419734,0.215856,0.79992,0.110539,0.836885,0.381819,0.276586,0.871369,0.103455,0.85135,0.622466,0.645842,0.560921,0.0589057,0.880444,0.931782,0.164058,0.0668832,0.805661,0.962316,0.993496,0.231366,0.0417027,0.884307,0.89735,0.909418,0.952151,0.0838834,0.702492,0.840057,0.291178,0.622548,0.070832,0.556264,0.538302,0.159168,0.0899701,0.507656,0.543168,0.0113074,0.899028,0.189371,0.690338,0.233688,0.483981,0.892917,0.262368,0.146421,0.465944,0.477834,0.275743,0.880813,0.695458,0.28209,0.663529,0.316583,0.620932,0.383264,0.672302,0.185331,0.925379,0.477009,0.478357,0.391306,0.755185,0.781135,0.933449,0.42053,0.186445,0.605608,0.986473,0.0599427,0.326811,0.471987,0.239311,0.679168,0.741524,0.690611,0.826512,0.388458,0.92188,0.142753,0.49611,0.539748,0.819716,0.549924,0.376488,0.976368,0.360977,0.718039,0.906971,0.418231,0.336902,0.0357421,0.728188,0.406159,0.143387,0.0616272,0.0931368,0.855192,0.938798,0.562055,0.168718,0.616748,0.56866,0.803539,0.156316,0.339754,0.297702,0.694135,0.857038,0.837858,0.346172,0.0167688,0.378386,0.141448,0.240504,0.144917,0.422125,0.477435,0.754072,0.00654584,0.714206,0.348593,0.198273,0.880897,0.362098,0.291108,0.0260852,0.493542,0.228657,0.561441,0.465248,0.72848,0.559534,0.506158,0.314796,0.181676,0.654556,0.121048,0.659286,0.743434,0.364321,0.641302,0.589661,0.407138,0.0888394,0.648913,0.548332,0.817803,0.522299,0.316766,0.281385,0.769819,0.81291,0.926221,0.316558,0.479322,0.215715,0.30883,0.00397491,0.739258,0.407814,0.181468,0.0585927,0.369628,0.670264,0.0364902,0.025239,0.594013,0.404017,0.11907,0.937312,0.0246044,0.480475,0.4471,0.361132,0.711698,0.318309,0.162804,0.665459,0.333777,0.600015,0.251901,0.525236,0.436802,0.45245,0.18025,0.34026,0.146257,0.897396,0.259312,0.890707,0.27208,0.465604,0.465791,0.737109,0.0671774,0.828467,0.713556,0.0234587,0.306046,0.978884,0.478045,0.928962,0.564712,0.653884,0.980312,0.232864,0.671049,0.721979,0.873778,0.530417,0.82009,0.957633,0.377016,0.087451,0.275534,0.818504,0.595892,0.0684162,0.0507144,0.56742,0.733017,0.898449,0.0862318,0.696076,0.883141,0.961612,0.0292357,0.141171,0.0284146,0.260487,0.491787,0.992118,0.319177,0.00997251,0.545121,0.162018,0.0692133,0.578384,0.0415249,0.345271,0.0133358,0.77035,0.00291067,0.944198,0.516981,0.196408,0.141724,0.767028,0.789021,0.418246,0.399473,0.139312,0.791534,0.286695,0.509457,0.491346,0.760446,0.634902,0.655635,0.542557,0.25126,0.567044,0.967224,0.208793,0.695093,0.82299,0.379219,0.0367612,0.233056,0.81324,0.756667,0.0210336,0.334139,0.270972,0.413814,0.0339596,0.702389,0.491337,0.555451,0.306013,0.768209,0.356369,0.97631,0.131709,0.684034,0.444742,0.307886,0.610774,0.590801,0.435976,0.923126,0.0298855,0.0662711,0.324097,0.169761,0.508191,0.88506,0.151899,0.585392,0.796597,0.553355,0.619032,0.0886287,0.273148,0.0882223,0.270811,0.974635,0.0390589,0.180116,0.398183,0.979619,0.439734,0.207319,0.186463,0.581685,0.422106,0.169061,0.284332,0.754114,0.818045,0.184257,0.0140043,0.239128,0.953702,0.219814,0.0249772,0.00509876,0.162677,0.482905,0.7228,0.711754,0.11689,0.234333,0.574545,0.173483,0.738835,0.93805,0.317159,0.957636,0.188125,0.618921,0.112443,0.163336,0.63572,0.530067,0.186827,0.422972,0.0768831,0.570183,0.218785,0.599742,0.572578,0.0247293,0.81828,0.175144,0.30105,0.423882,0.979596,0.632325,0.539738,0.288451,0.23702,0.932341,0.738133,0.235806,0.782178,0.697687,0.94077,0.510315,0.441766,0.665928,0.692305,0.610839,0.522807,0.176325,0.188433,0.883434,0.0913682,0.24756,0.770675,0.948752,0.732778,0.054599,0.913737,0.0466536,0.503385,0.121715,|0.896552,0.140977,0.0136332,0.562415,0.0444745,0.912832,0.806731,0.616601,0.970003,0.214091,0.0512164,0.222228,0.558619,0.363261,0.0224544,0.715999,0.0774029,0.361973,0.896898,0.961984,0.163097,0.650172,0.738652,0.7626,0.0872231,0.570058,0.204402,0.167969,0.119562,0.488462,0.418567,0.924273,0.187699,0.0939315,0.00788683,0.3684,0.453363,0.725423,0.435103,0.426455,0.147893,0.961948,0.388078,0.200071,0.2908,0.293622,0.649343,0.965425,0.962079,0.798842,0.644031,0.427778,0.681879,0.68793,0.257227,0.879012,0.119932,0.649016,0.664358,0.284205,0.584701,0.390983,0.178802,0.958076,0.00236398,0.635421,0.532332,0.699549,0.429657,0.803823,0.716147,0.61084,0.0991709,0.291159,0.802702,0.863653,0.28969,0.630684,0.466991,0.812636,0.958714,0.17277,0.145758,0.39193,0.0916889,0.662402,0.92954,0.95614,0.761641,0.910861,0.28188,0.505607,0.461475,0.784508,0.177713,0.820449,0.5019,0.125328,0.76603,0.827065,0.832996,0.984105,0.409686,0.384795,0.276268,0.574039,0.00808078,0.44024,0.531914,0.411416,0.148149,0.474577,0.730199,0.161938,0.764792,0.299602,0.166487,0.184521,0.839312,0.810659,0.663515,0.711397,0.984078,0.171839,0.0369867,0.526475,0.720926,0.636199,0.708161,0.320924,0.941678,0.690786,0.842747,0.614694,0.475066,0.821052,0.0504794,0.376937,0.745016,0.527294,0.951515,0.234636,0.393638,0.307345,0.502574,0.608442,0.731902,0.63483,0.700214,0.27466,0.61611,0.46692,0.272604,0.590761,0.921923,0.569854,0.343987,0.887502,0.754775,0.774102,0.0867315,0.845344,0.587669,0.804773,0.124528,0.615073,0.0913564,0.556873,0.08051,0.749329,0.645083,0.973901,0.268292,0.423353,0.346544,0.135387,0.222299,0.970663,0.0330144,0.0975755,0.53923,0.3884,0.206519,0.00633967,0.397407,0.635568,0.750909,0.325541,0.765966,0.530599,0.988935,0.241601,0.67355,0.489821,0.182822,0.280895,0.670155,0.52806,0.49854,0.142844,0.819557,0.468964,0.623319,0.705221,0.338859,0.773333,0.242247,0.492448,0.533969,0.223428,0.0842853,0.65765,0.00816858,0.203938,0.209818,0.372094,0.768759,0.0157009,0.896821,0.783236,0.100978,0.382953,0.98651,0.653141,0.617108,0.532374,0.614356,0.816678,0.422061,0.0281371,0.228211,0.409706,0.407273,0.270993,0.397094,0.275526,0.576236,0.134777,0.375193,0.61035,0.507886,0.0858366,0.44044,0.493247,0.220616,0.29033,0.23764,0.336679,0.896076,0.00360048,0.961653,0.663119,0.608894,0.0230022,0.440771,0.148212,0.167247,0.199032,0.493232,0.461763,0.599621,0.830439,0.981308,0.777564,0.292946,0.174864,0.692147,0.134714,0.971302,0.043442,0.259302,0.948527,0.604692,0.272481,0.220502,0.542219,0.765182,0.18993,0.321009,0.920768,0.748138,0.505499,0.153357,0.670205,0.374151,0.284276,0.58801,0.0732663,0.878757,0.82146,0.0636345,0.0735052,0.090099,0.290007,0.528608,0.289562,0.0302601,0.031884,0.68124,0.100185,0.0869946,0.389404,0.324344,0.690578,0.133393,0.877222,0.949121,0.489337,0.612228,0.0631958,0.777199,0.610332,0.0915158,0.750132,0.265959,0.541802,0.854386,0.159278,0.131016,0.811133,0.0953969,0.924069,0.467537,0.331238,0.813109,0.638734,0.980692,0.858454,0.480243,0.980834,0.764056,0.589263,0.509933,0.264474,0.158385,0.33102,0.753849,0.0866148,0.0982518,0.550134,0.101381,0.118225,0.786979,0.0851553,0.70512,0.858318,0.308185,0.625815,0.928755,0.613468,0.675428,0.643415,0.861968,0.979022,0.747229,0.450954,0.0135559,0.198401,0.485556,0.324206,0.90571,0.899559,0.549968,0.376799,0.200237,0.12882,0.82499,0.402736,0.416349,0.650893,0.783799,0.848144,0.864195,0.891195,0.597353,0.0678533,0.495161,0.137114,0.656051,0.761557,0.684837,0.49486,0.54573,0.65306,0.314733,0.434234,0.838469,0.48446,0.551177,0.488449,0.0126809,0.285832,0.680422,0.513944,0.28114,0.106979,0.521515,0.866285,0.887405,0.131719,0.0794641,0.0735064,0.532623,0.866986,0.328768,0.626769,0.561387,0.477175,0.752372,0.356528,0.51422,0.2141,0.364973,0.614612,0.818057,0.631565,0.682031,0.530623,0.819983,0.778172,0.713191,0.138676,0.132039,0.358866,0.570309,0.893354,0.453909,0.833084,0.12751,0.626604,0.388288,0.486546,0.723351,0.180396,0.296514,0.840916,0.146427,0.253845,0.345481,0.576159,0.541045,0.902592,0.231016,0.99348,0.910867,0.628804,0.892909,0.798964,0.25822,0.245552,0.249416,0.778959,0.151889,0.550063,0.409669,0.091772,0.450595,0.495917,0.68266,0.894476,0.902404,0.989375,0.69216,0.729194,0.296692,0.991101,0.0245825,0.514789,0.170212,0.279187,0.24801,0.0444672,0.959608,0.762422,0.826326,0.808941,0.583044,0.196341,0.64957,0.300831,0.223598,0.81969,0.33428,0.0312505,0.801086,0.11307,0.203813,0.0729132,0.110317,0.879839,0.786506,0.0581031,0.955264,0.653695,0.846483,0.668323,0.350903,0.179975,0.121244,0.521848,0.965819,0.77852,0.361521,0.0806958,0.891166,0.82699,0.248109,0.333596,0.314924,0.908321,0.140212,0.984329,0.331205,0.721209,0.449551,0.947951,0.62334,0.810089,0.297535,0.0263355,0.370835,0.375244,0.492761,0.344289,0.0369182,0.686661,0.00590861,0.99763,0.44204,0.626115,0.899627,0.369536,0.426283,0.296011,0.564126,0.547172,0.855412,0.158333,0.862555,0.558445,0.217,0.797964,0.837093,0.336044,0.022307,0.722379,0.86789,0.320409,0.850038,0.607119,0.482432,0.859831,0.845438,0.868897,0.0723197,0.966634,0.00616872,0.974189,0.314009,0.258529,0.0032208,0.905156,0.990418,0.675445,0.0169046,0.911291,0.0806561,0.347675,0.744267,0.198591,0.3956,0.877455,0.930981,0.305192,0.344011,0.438216,0.0949583,0.533952,0.816427,0.462525,0.903241,0.277759,0.0495529,0.278435,0.386399,0.435793,0.740708,0.706749,0.000281811,0.349604,0.844942,0.750522,0.968394,0.255221,0.165868,0.985904,0.544881,0.981178,0.995795,0.167131,0.573909,0.30652,0.0143663,0.629382,0.722876,0.375584,0.683148,0.811846,0.0844803,0.554633,0.932664,0.419684,0.295932,0.710395,0.783105,0.763654,0.42432,0.761404,0.0704354,0.194406,0.788973,0.669106,0.574957,0.366623,0.439486,0.5846,0.658793,0.125091,0.046696,0.703377,0.947349,0.0242448,0.574854,0.255459,0.601941,0.59151,0.0385093,0.539026,0.853523,0.60637,0.852246,0.32107,0.819032,0.56791,0.390884,0.523377,0.91966,0.117861,0.295057,0.97477,0.725576,0.921953,0.353498,0.402501,0.61301,0.6012,0.98697,0.139132,0.0858673,0.365152,0.0654278,0.819713,0.55297,0.429868,0.883327,0.81654,0.870639,0.737429,0.559696,0.643434,0.306691,0.948037,0.450656,0.668331,0.241086,0.361375,0.36259,0.895562,0.00542682,0.556953,0.260334,0.198454,0.988137,0.948871,0.169869,0.753934,0.764579,0.23108,0.0503457,0.493129,0.779673,0.0371614,0.554458,0.326149,0.498384,0.292453,0.614244,0.0872048,0.97716,0.0962299,0.676348,0.0929909,0.189362,0.309564,0.96761,0.991223,0.375917,0.858055,0.803701,0.202365,0.00822639,0.170664,0.0821345,0.00299591,0.534281,0.504832,0.788448,0.556063,0.00406241,0.537365,0.113867,0.547807,0.975113,0.217181,0.226599,0.884693,0.1169,0.291447,0.772027,0.40652,0.575144,0.496237,0.705209,0.773022,0.8619,0.718388,0.914606,0.0312562,0.784137,0.763566,0.812815,0.561889,0.570306,0.315445,0.51172,0.700207,0.251091,0.487517,0.724715,0.368666,0.515334,0.0695327,0.240607,0.223263,0.0535769,0.719069,0.237118,0.123901,0.647846,0.367343,0.9114,0.486706,0.633411,0.647509,0.777,0.378165,0.600385,0.367279,0.247262,0.258102,0.114077,0.927865,0.747702,0.920524,0.318098,0.586179,0.940965,0.784861,0.157631,0.647534,0.527297,0.263647,0.401358,0.444171,0.472794,0.31691,0.500908,0.440612,0.813476,0.626305,0.685022,0.00668001,0.467273,0.360425,0.587237,0.102078,0.761633,0.879968,0.58877,0.371724,0.672384,0.584842,0.823126,0.665586,0.290598,0.434921,0.827005,0.553937,0.108046,0.690354,0.544903,0.738151,0.0696504,0.596388,0.413452,0.628038,0.728686,0.599447,0.0908047,0.307301,0.107996,0.293531,0.753462,0.169832,0.40347,0.568381,0.0963621,0.239649,0.776666,0.00614315,0.689701,0.795623,0.817303,0.530718,0.488351,0.000562906,0.79263,0.0824077,0.826496,0.983746,0.546823,0.69576,0.255727,0.0180628,0.758482,0.143926,0.0632707,0.980183,0.783661,0.0490009,0.071286,0.227032,0.66692,0.291752,0.238299,0.281891,0.62241,0.163572,0.799887,0.771433,0.291842,0.222231,0.845885,0.096054,0.0564308,0.685794,0.790693,0.816536,0.136758,0.59881,0.414299,0.956647,0.577997,0.803765,0.952763,0.43509,0.110225,0.890012,0.0455458,0.14434,0.300945,0.383463,0.461238,0.426749,0.0570746,0.676862,0.191221,0.315794,0.502011,0.959203,0.614527,0.681669,0.429947,0.99194,0.113519,0.615536,0.264122,0.572647,0.825303,0.279309,0.152717,0.753345,0.466074,0.573999,0.0282373,0.831963,0.878776,0.0996934,0.873203,0.260025,0.813134,0.338126,0.402362,0.718293,0.169211,0.586689,0.467309,0.0119067,0.463608,0.366383,0.502577,0.778249,0.560641,0.302957,0.469383,0.79257,0.579079,0.236023,0.292188,0.592269,0.272409,0.712922,0.0828853,0.946127,0.181644,0.279852,0.403141,0.319841,0.352331,0.625419,0.255124,0.164495,0.954117,0.150285,0.986636,0.472956,0.896379,0.648865,0.854759,0.429776,0.0989444,0.332659,0.959848,0.0340596,0.0162438,0.1694,0.833148,0.740795,0.84758,0.726598,0.240824,0.935787,0.248083,0.944402,0.537242,0.842135,0.930948,0.105083,0.798375,0.94492,0.630767,0.262347,0.0941744,0.642478,0.0967705,0.778275,0.181754,0.739159,0.0807846,0.70397,0.630931,0.364929,0.820153,0.797091,0.917118,0.840475,0.799493,0.107133,0.990778,0.843094,0.431403,0.873604,0.981471,0.579667,0.194221,0.455746,0.896589,0.208631,0.928778,0.796495,|0.115347,0.31105,0.48653,0.946006,0.953768,0.157319,0.582901,0.295201,0.474719,0.675294,0.406559,0.132336,0.817862,0.822235,0.504046,0.391718,0.277948,0.646492,0.368113,0.692299,0.476826,0.98654,0.122358,0.135333,0.00220203,0.902248,0.933669,0.20607,0.533599,0.568497,0.572666,0.909338,0.987152,0.244946,0.3314,0.121894,0.543296,0.216255,0.98662,0.0480984,0.511972,0.455073,0.358107,0.0126129,0.529846,0.47885,0.0576575,0.865399,0.742418,0.152381,0.36894,0.197942,0.620142,0.0250808,0.321896,0.207949,0.853469,0.490717,0.565169,0.613164,0.763436,0.296771,0.878102,0.895002,0.780348,0.163714,0.881076,0.995337,0.993038,0.809908,0.895704,0.259113,0.401834,0.691033,0.610275,0.716439,0.205906,0.559362,0.724028,0.503205,0.248257,0.311294,0.723669,0.157626,0.983636,0.867503,0.577116,0.729973,0.0502939,0.195352,0.571128,0.778894,0.981129,0.569137,0.928287,0.82964,0.812537,0.467492,0.786973,0.668606,0.407013,0.472682,0.513078,0.131641,0.268996,0.192511,0.735644,0.251226,0.972126,0.650558,0.859331,0.519285,0.370024,0.759171,0.246562,0.915622,0.21435,0.555751,0.411598,0.9028,0.259087,0.298174,0.880537,0.991215,0.455434,0.791914,0.385801,0.488647,0.113503,0.756293,0.00790817,0.465658,0.670055,0.762083,0.56477,0.97312,0.380698,0.345758,0.819328,0.605402,0.687883,0.381844,0.791647,0.753997,0.399168,0.709647,0.997429,0.901022,0.480274,0.405276,0.72419,0.766795,0.52804,0.452916,0.971918,0.868751,0.752294,0.758418,0.608623,0.668623,0.189544,0.599202,0.106368,0.952321,0.443193,0.561501,0.993673,0.905521,0.687769,0.187209,0.999582,0.316247,0.798263,0.988828,0.519654,0.100076,0.64963,0.807248,0.207258,0.621543,0.657361,0.889055,0.338922,0.617336,0.0401827,0.384447,0.0603087,0.167566,0.28671,0.951323,0.45884,0.518916,0.392863,0.76387,0.473087,0.673565,0.293581,0.764294,0.915746,0.857624,0.357565,0.836148,0.203902,0.886484,0.419562,0.0564466,0.569203,0.384857,0.860462,0.0397796,0.11987,0.739735,0.807807,0.948305,0.285762,0.0305117,0.388021,0.582158,0.159504,0.438868,0.427127,0.649135,0.67211,0.940085,0.798943,0.164084,0.310384,0.130355,0.112555,0.999364,0.173979,0.826857,0.886705,0.640822,0.316426,0.930833,0.091489,0.782132,0.67239,0.618793,0.102784,0.478895,0.369623,0.0446576,0.262966,0.534498,0.957232,0.819013,0.0549468,0.84188,0.933175,0.758183,0.377612,0.623342,0.865364,0.852883,0.476309,0.261703,0.768167,0.361638,0.175095,0.200314,0.878687,0.347934,0.953038,0.388355,0.204318,0.87521,0.970929,0.210711,0.910926,0.547061,0.57637,0.270019,0.42204,0.521071,0.536257,0.987936,0.291029,0.748562,0.298082,0.536705,0.53195,0.0569144,0.523918,0.735671,0.56205,0.914666,0.233859,0.437354,0.448747,0.739834,0.322645,0.970263,0.214826,0.0946597,0.917881,0.78639,0.0654838,0.0930253,0.147801,0.861424,0.569633,0.0149262,0.0362267,0.687186,0.511923,0.332787,0.272733,0.411656,0.131889,0.445927,0.185673,0.282102,0.631332,0.850466,0.676221,0.18372,0.785266,0.465138,0.75578,0.139813,0.711136,0.79519,0.240267,0.570406,0.0330448,0.568733,0.1806,0.666458,0.665707,0.00968057,0.848439,0.0692632,0.727135,0.238474,0.0124326,0.463754,0.138603,0.754048,0.551761,0.341424,0.179712,0.991592,0.874483,0.6004,0.370737,0.272693,0.535058,0.51879,0.00182372,0.935037,0.945622,0.0991282,0.125349,0.849004,0.624291,0.782371,0.994966,0.846061,0.604522,0.361486,0.197572,0.376244,0.996399,0.7464,0.522061,0.204337,0.685836,0.823929,0.863744,0.303352,0.482541,0.469414,0.618364,0.714154,0.19552,0.10274,0.743128,0.0311315,0.903303,0.362227,0.264082,0.0868357,0.966794,0.771378,0.925394,0.642896,0.703547,0.442792,0.537498,0.44445,0.677425,0.745119,0.547445,0.164596,0.850046,0.485779,0.704375,0.223963,0.651151,0.664069,0.771221,0.108816,0.271937,0.326702,0.877545,0.755126,0.540642,0.754132,0.154481,0.225868,0.64451,0.0267228,0.927267,0.0202772,0.436724,0.315829,0.521836,0.980587,0.983429,0.647047,0.302654,0.511006,0.268453,0.493995,0.0931895,0.950455,0.336279,0.412842,0.732087,0.355611,0.155017,0.869351,0.396399,0.515746,0.426161,0.409248,0.960967,0.906685,0.466893,0.0567092,0.69828,0.99597,0.707046,0.0450508,0.73932,0.493399,0.956694,0.729013,0.711265,0.68177,0.282647,0.735531,0.104009,0.136501,0.384815,0.925095,0.913566,0.966396,0.388067,0.645577,0.101202,0.945519,0.489844,0.684182,0.342421,0.889732,0.190689,0.412682,0.516189,0.368454,0.585141,0.640367,0.842341,0.240909,0.049615,0.0518706,0.749177,0.312904,0.256283,0.572137,0.458289,0.139732,0.920052,0.0740989,0.242001,0.276122,0.541875,0.213043,0.294455,0.691424,0.987185,0.362523,0.131232,0.330783,0.109283,0.905745,0.85446,0.113857,0.800198,0.0685043,0.899978,0.181688,0.107327,0.901567,0.129025,0.887588,0.620855,0.745618,0.601103,0.668267,0.0152744,0.420396,0.304415,0.354971,0.382655,0.815547,0.230679,0.762375,0.328233,0.475903,0.530431,0.219547,0.205283,0.334277,0.948503,0.411119,0.493523,0.800655,0.172782,0.719218,0.319024,0.828614,0.378228,0.965843,0.294235,0.313178,0.464433,0.361096,0.381656,0.58865,0.807806,0.256802,0.995925,0.356393,0.419368,0.415445,0.605061,0.860424,0.109139,0.171037,0.875704,0.0122198,0.333841,0.406019,0.776152,0.476905,0.382239,0.359686,0.654848,0.613756,0.373553,0.879925,0.110157,0.60131,0.208203,0.323125,0.731151,0.27726,0.664508,0.213422,0.683634,0.765329,0.233243,0.446211,0.95493,0.519667,0.901299,0.489366,0.574862,0.232117,0.677107,0.386496,0.657885,0.0581852,0.955418,0.608222,0.689219,0.0852423,0.652225,0.795305,0.967525,0.739094,0.148323,0.99745,0.292919,0.0206741,0.584026,0.0575798,0.0782163,0.586968,0.761553,0.359501,0.374863,0.487713,0.911328,0.333235,0.021244,0.712477,0.692548,0.65632,0.766883,0.356677,0.934136,0.502185,0.133167,0.688828,0.0840424,0.829073,0.167848,0.933551,0.613839,0.447542,0.909284,0.242297,0.370399,0.493377,0.353206,0.627987,0.971615,0.932833,0.470911,0.00613248,0.87729,0.920941,0.984457,0.390134,0.552509,0.511212,0.655738,0.370483,0.545118,0.000718713,0.421661,0.0184116,0.729148,0.264409,0.458959,0.0362,0.181907,0.385894,0.0338817,0.183816,0.190094,0.152702,0.12384,0.347417,0.743888,0.274727,0.612339,0.684167,0.344985,0.00947934,0.395423,0.919639,0.360611,0.598664,0.593296,0.380538,0.0754142,0.75376,0.100154,0.377374,0.715395,0.557658,0.652055,0.51939,0.421966,0.900708,0.227686,0.148807,0.366955,0.862838,0.967674,0.517137,0.370587,0.14082,0.0103989,0.155972,0.751863,0.231203,0.514178,0.420723,0.867819,0.808779,0.11295,0.695271,0.623333,0.108176,0.370312,0.522275,0.020687,0.795617,0.753744,0.214877,0.857113,0.944793,0.894342,0.82759,0.959566,0.980513,0.467665,0.640641,0.381648,0.0721059,0.27849,0.413763,0.804866,0.715693,0.817406,0.658446,0.326191,0.485316,0.643136,0.903462,0.478353,0.655022,0.619521,0.132886,0.00450176,0.351059,0.677567,0.836289,0.229773,0.207436,0.785252,0.635184,0.133881,0.208107,0.269411,0.669086,0.734183,0.427027,0.228357,0.244227,0.8402,0.0877358,0.123426,0.131849,0.0871903,0.222642,0.16642,0.758399,0.683797,0.973208,0.128113,0.410734,0.413992,0.605068,0.0729292,0.00581968,0.491084,0.367577,0.567623,0.843871,0.497933,0.918661,0.809147,0.526673,0.186903,0.309853,0.974801,0.793114,0.191528,0.606349,0.0553632,0.401444,0.0715476,0.478576,0.829111,0.694292,0.376342,0.985706,0.687485,0.635927,0.872479,0.0587035,0.917978,0.707505,0.92221,0.864975,0.203961,0.767224,0.427521,0.58656,0.621852,0.676725,0.798086,0.53647,0.384798,0.401938,0.131537,0.832653,0.472139,0.468522,0.1269,0.408061,0.844998,0.0589341,0.201361,0.309717,0.786901,0.546449,0.240123,0.933594,0.517809,0.021116,0.371042,0.0111693,0.573021,0.639416,0.2507,0.156376,0.48115,0.0222166,0.649337,0.927304,0.0456198,0.510767,0.892608,0.528506,0.399153,0.75037,0.66381,0.832151,0.0374114,0.504618,0.287294,0.549,0.27519,0.0171974,0.892677,0.445078,0.206083,0.409923,0.4037,0.169981,0.956639,0.623664,0.0961621,0.941482,0.0411854,0.224146,0.852017,0.0900675,0.525809,0.112921,0.00539327,0.633058,0.578571,0.688681,0.792899,0.536545,0.447719,0.543722,0.993147,0.703495,0.651254,0.829627,0.597796,0.739918,0.713696,0.821047,0.0370246,0.116472,0.193019,0.261872,0.00556171,0.859604,0.667392,0.0622989,0.156093,0.0245143,0.579194,0.320803,0.549401,0.841652,0.487702,0.859108,0.950067,0.972263,0.964642,0.430247,0.612297,0.777455,0.908612,0.892136,0.122122,0.62392,0.512644,0.228038,0.236883,0.290528,0.181713,0.923832,0.439144,0.667115,0.620942,0.628904,0.134615,0.560639,0.65973,0.254004,0.160624,0.996751,0.0532669,0.860616,0.752191,0.810217,0.519767,0.138505,0.903259,0.920163,0.621524,0.294571,0.685713,0.740451,0.944184,0.288658,0.269789,0.744656,0.812616,0.37346,0.771913,0.0815417,0.118303,0.403157,0.937887,0.550523,0.342438,0.647584,0.357549,0.545832,0.0385177,0.0841764,0.813821,0.468572,0.425348,0.91147,0.49552,0.988856,0.0242668,0.840163,0.190967,0.888181,0.767001,0.495902,0.780412,0.492551,0.769131,0.965482,0.0897808,0.666371,0.642741,0.914824,0.578181,0.141935,0.305052,0.640327,0.942783,0.478079,0.412124,0.234225,0.0421857,0.804438,0.174672,0.352898,0.526373,0.0401168,0.768418,0.383237,0.803247,0.809683,0.37424,0.00268215,0.897944,0.639529,0.870049,0.513284,0.896724,0.954395,0.035526,0.911104,0.718491,0.968466,0.628476,0.583107,0.342163,0.09066,|0.574322,0.761764,0.0883875,0.693915,0.3708,0.54109,0.801165,0.698004,0.151175,0.0702822,0.245053,0.292576,0.795206,0.227351,0.763014,0.880708,0.16719,0.101259,0.333706,0.398971,0.489695,0.540044,0.0884197,0.994128,0.124849,0.0826439,0.885382,0.785899,0.594428,0.81146,0.947775,0.91821,0.0858789,0.928726,0.445359,0.55789,0.27931,0.747286,0.82203,0.0988277,0.236839,0.195016,0.0987712,0.0167297,0.969497,0.530472,0.0115363,0.0314235,0.532533,0.601476,0.427507,0.0111797,0.553767,0.739609,0.247075,0.481523,0.372665,0.909817,0.017457,0.666475,0.86129,0.816502,0.0386561,0.980804,0.523688,0.173994,0.964624,0.0965849,0.0450216,0.678032,0.514795,0.160553,0.673922,0.609924,0.86439,0.4745,0.890393,0.35482,0.277068,0.972393,0.0991806,0.0862413,0.545507,0.960984,0.545675,0.025968,0.860767,0.883067,0.212858,0.452751,0.310382,0.882252,0.0375609,0.394666,0.626981,0.30249,0.321285,0.981106,0.760132,0.790632,0.79344,0.236679,0.162079,0.0900694,0.0118787,0.140315,0.403668,0.225783,0.851411,0.459257,0.610426,0.689859,0.878984,0.528284,0.813007,0.784032,0.80949,0.0366491,0.558553,0.37112,0.0994852,0.320633,0.0496897,0.174678,0.382298,0.254131,0.484699,0.991479,0.316897,0.00423336,0.511874,0.0695129,0.0763717,0.85101,0.59107,0.30967,0.714726,0.308398,0.0519835,0.403813,0.0736563,0.612302,0.200797,0.874096,0.684883,0.12228,0.753568,0.833464,0.511194,0.755605,0.30967,0.618185,0.518908,0.406107,0.386567,0.849302,0.203576,0.193945,0.862548,0.103884,0.0266251,0.413214,0.465373,0.811369,0.099966,0.444625,0.415331,0.140331,0.48614,0.48481,0.801091,0.129471,0.311822,0.903849,0.652861,0.505195,0.158958,0.661991,0.266789,0.430927,0.856612,0.748645,0.271302,0.947132,0.435235,0.0308892,0.75777,0.862017,0.8879,0.953803,0.846017,0.250044,0.556194,0.892489,0.310039,0.292081,0.561985,0.602229,0.847995,0.918675,0.524773,0.168482,0.846693,0.377527,0.526675,0.031221,0.371155,0.836786,0.157915,0.653783,0.0527275,0.252915,0.746211,0.408914,0.737313,0.886729,0.371366,0.260016,0.137492,0.26414,0.308692,0.366377,0.0912773,0.626005,0.720729,0.793596,0.145028,0.00831831,0.771756,0.826297,0.44846,0.0413231,0.283449,0.894594,0.0681186,0.228863,0.14721,0.657574,0.79655,0.629121,0.687962,0.597111,0.293462,0.958593,0.425563,0.721964,0.0313746,0.441189,0.0119085,0.771342,0.377534,0.069473,0.0718301,0.467397,0.213688,0.670176,0.0160077,0.889363,0.824886,0.702591,0.00413173,0.727887,0.341657,0.424719,0.267846,0.223286,0.0422445,0.151946,0.0227674,0.340633,0.384292,0.621196,0.070332,0.0520341,0.454462,0.452119,0.919608,0.763051,0.0102034,0.808969,0.0470104,0.881165,0.512778,0.203931,0.94044,0.858995,0.381322,0.969246,0.896959,0.761632,0.460608,0.255992,0.366902,0.28696,0.2767,0.566415,0.440714,0.140676,0.918062,0.137994,0.982655,0.321287,0.780912,0.489673,0.12716,0.730551,0.0850706,0.476356,0.961208,0.971698,0.434283,0.744756,0.604656,0.836127,0.492651,0.262378,0.403011,0.316635,0.6815,0.167435,0.497306,0.756342,0.463767,0.640238,0.1954,0.553849,0.701564,6.44326e-05,0.72982,0.817246,0.506859,0.352565,0.980734,0.999638,0.917081,0.616317,0.714611,0.169942,0.29368,0.137881,0.96898,0.382343,0.411678,0.935417,0.587109,0.246113,0.818868,0.936642,0.501961,0.469911,0.943452,0.327366,0.510776,0.210394,0.01441,0.994099,0.556465,0.226262,0.301068,0.383684,0.458726,0.311123,0.651073,0.640011,0.268522,0.753377,0.978871,0.108543,0.479973,0.845045,0.567864,0.105426,0.31437,0.306725,0.646406,0.571577,0.632636,0.403271,0.466252,0.427859,0.920773,0.732469,0.43692,0.647589,0.127086,0.400078,0.975136,0.661421,0.447894,0.414998,0.721791,0.0643817,0.00837767,0.86879,0.891817,0.848795,0.240305,0.508079,0.0444672,0.182811,0.463982,0.104452,0.778324,0.142142,0.669492,0.291978,0.0988318,0.303536,0.125372,0.904412,0.264138,0.705268,0.188412,0.459625,0.71709,0.564003,0.582221,0.811877,0.47558,0.235974,0.354835,0.845798,0.721232,0.691801,0.223759,0.249788,0.785788,0.726613,0.791306,0.505391,0.857695,0.485615,0.139545,0.756041,0.149168,0.75487,0.407806,0.941834,0.72465,0.0325691,0.427298,0.443691,0.280682,0.759574,0.830292,0.144278,0.286697,0.611067,0.290008,0.495356,0.477547,0.238316,0.663561,0.987316,0.842534,0.626593,0.355407,0.590269,0.729563,0.758689,0.0990334,0.820318,0.990199,0.446451,0.0594446,0.352512,0.845707,0.294524,0.766514,0.368232,0.835562,0.779945,0.900167,0.639022,0.887843,0.28134,0.670206,0.431656,0.174026,0.104196,0.928631,0.514889,0.0114644,0.0727404,0.373104,0.13721,0.566444,0.77461,0.537792,0.75213,0.146773,0.383298,0.715713,0.889181,0.889755,0.952106,0.891721,0.666403,0.414911,0.244533,0.504433,0.201101,0.107369,0.984666,0.349595,0.270025,0.743859,0.521151,0.885189,0.173429,0.64092,0.504236,0.523012,0.638323,0.483369,0.44097,0.339716,0.249161,0.632422,0.562623,0.55582,0.503225,0.100582,0.567445,0.0306929,0.088413,0.32076,0.790954,0.310137,0.463689,0.684649,0.0546634,0.415946,0.140471,0.132705,0.477106,0.664514,0.965796,0.423883,0.0450836,0.570955,0.620062,0.737685,0.101001,0.850227,0.969973,0.719553,0.771464,0.712248,0.974239,0.563757,0.945043,0.340521,0.895548,0.518651,0.70419,0.924078,0.419733,0.439442,0.238782,0.130199,0.335819,0.594809,0.628776,0.294542,0.265364,0.949303,0.304794,0.569113,0.445992,0.936966,0.231896,0.240144,0.822267,0.617013,0.757212,0.325347,0.948333,0.69622,0.805433,0.679908,0.315756,0.426581,0.704768,0.719664,0.218964,0.0809397,0.292564,0.4482,0.444391,0.888137,0.322255,0.924412,0.396542,0.480129,0.898824,0.072953,0.436035,0.337591,0.57497,0.847221,0.427067,0.443952,0.441714,0.152856,0.497598,0.345712,0.418125,0.494938,0.454857,0.607937,0.803428,0.289724,0.770747,0.106252,0.716159,0.0716228,0.0843278,0.717174,0.372658,0.44425,0.566496,0.599262,0.692865,0.736826,0.338726,0.961248,0.800525,0.992587,0.526541,0.00222284,0.113656,0.0920216,0.81397,0.843792,0.751319,0.994905,0.24735,0.771756,0.279387,0.734447,0.603226,0.667615,0.913684,0.261418,0.0371245,0.0670876,0.954409,0.759924,0.204135,0.507229,0.0374961,0.684909,0.542076,0.0811077,0.239878,0.549484,0.816695,0.353302,0.518456,0.268713,0.28259,0.00695527,0.443306,0.133834,0.996061,0.250211,0.619573,0.908511,0.969967,0.36633,0.175334,0.56155,0.334139,0.465118,0.923599,0.25621,0.841474,0.431985,0.125744,0.957742,0.512767,0.0484596,0.745397,0.337389,0.0877349,0.0732028,0.678852,0.890109,0.530307,0.610943,0.523697,0.178032,0.251738,0.240623,0.504341,0.384719,0.740258,0.122287,0.802916,0.666206,0.841865,0.976778,0.798508,0.116529,0.924916,0.673884,0.164428,0.579132,0.237098,0.312661,0.781268,0.963048,0.12955,0.180603,0.351353,0.453377,0.579716,0.543671,0.441787,0.0960925,0.148769,0.0584651,0.255536,0.586886,0.738827,0.162072,0.32847,0.971559,0.457129,0.377014,0.525641,0.951325,0.792145,0.458703,0.494502,0.817291,0.0607699,0.305106,0.175139,0.246265,0.101423,0.0481908,0.638769,0.708466,0.319994,0.470698,0.517755,0.402647,0.00445557,0.699417,0.165246,0.415171,0.742223,0.235091,0.40128,0.672281,0.65768,0.763809,0.893231,0.89525,0.535728,0.666055,0.119861,0.13341,0.440015,0.497275,0.0794217,0.628926,0.329826,0.221426,0.867964,0.695198,0.455473,0.496657,0.437489,0.0166324,0.890881,0.839693,0.361841,0.681166,0.430372,0.415348,0.164662,0.254995,0.888627,0.639527,0.687371,0.448827,0.372848,0.752615,0.0630022,0.192859,0.38339,0.854162,0.328377,0.647098,0.345556,0.487828,0.47026,0.073363,0.979396,0.0328352,0.146359,0.485011,0.629276,0.154812,0.0578192,0.725257,0.830385,0.271649,0.775496,0.579196,0.865236,0.887959,0.886787,0.749547,0.130905,0.0692981,0.880389,0.148487,0.872129,0.974154,0.87305,0.0405611,0.797523,0.699418,0.976865,0.166774,0.678066,0.9671,0.390184,0.123511,0.419529,0.44088,0.305636,0.238479,0.1902,0.109515,0.858117,0.581502,0.940305,0.260324,0.303045,0.192753,0.0425829,0.425203,0.127651,0.417695,0.9345,0.472413,0.060923,0.0540447,0.208664,0.237923,0.808095,0.242506,0.506404,0.35145,0.463339,0.935684,0.725961,0.386274,0.736458,0.283327,0.480849,0.122907,0.390235,0.582616,0.0204212,0.558293,0.832341,0.413732,0.264121,0.102644,0.733147,0.221531,0.700792,0.302455,0.778806,0.134497,0.942135,0.739154,0.261742,0.952436,0.0120808,0.146047,0.00280493,0.97201,0.837944,0.144265,0.902939,0.872801,0.692558,0.463099,0.752415,0.270982,0.757022,0.119939,0.867425,0.897924,0.0295257,0.776376,0.326581,0.819923,0.913044,0.67204,0.106004,0.352146,0.232485,0.151328,0.958052,0.353359,0.675852,0.346048,0.359008,0.397261,0.45709,0.251448,0.749692,0.610815,0.699463,0.20449,0.791274,0.277311,0.16238,0.498939,0.3087,0.29403,0.52472,0.0791605,0.915086,0.592392,0.266644,0.154361,0.393526,0.357199,0.560249,0.180936,0.788414,0.334757,0.242236,0.456664,0.985533,0.235187,0.896821,0.61793,0.366894,0.199112,0.566769,0.72938,0.758225,0.958227,0.639779,0.822308,0.140564,0.152771,0.372939,0.643222,0.0110665,0.918198,0.148114,0.859332,0.0141824,0.667446,0.23439,0.077321,0.427936,0.899337,0.169265,0.10148,0.742193,0.183608,0.163033,0.106019,0.826027,0.580995,0.136572,0.98989,0.0785855,0.856102,0.715099,0.622901,0.612454,0.438589,0.191455,0.304364,0.692532,0.489492,0.567352,0.934694,0.879831,0.131915,0.741679,0.304469,0.0161508,0.792851,0.88861,0.339513,0.511238,|0.637133,0.17087,0.862278,0.745961,0.937389,0.0643036,0.87714,0.398736,0.910514,0.717277,0.883276,0.0797377,0.872013,0.107065,0.156613,0.544715,0.345506,0.949327,0.347552,0.339308,0.442704,0.16208,0.318958,0.939705,0.435495,0.208723,0.0927128,0.0326355,0.443975,0.574718,0.575239,0.343998,0.24967,0.168465,0.366874,0.838767,0.499424,0.69495,0.887303,0.97639,0.561712,0.484133,0.268943,0.719614,0.181977,0.7055,0.541674,0.810309,0.980373,0.458094,0.875066,0.535288,0.460021,0.953812,0.668998,0.454272,0.423063,0.675753,0.125541,0.930972,0.151704,0.0165149,0.642504,0.241332,0.806383,0.972781,0.404614,0.60959,0.0186035,0.121826,0.717425,0.788665,0.0160116,0.749618,0.798739,0.389974,0.799074,0.471474,0.863838,0.309289,0.542781,0.754136,0.676158,0.242059,0.304119,0.763836,0.657716,0.117362,0.0685253,0.920018,0.945958,0.565133,0.0816526,0.479819,0.358894,0.350453,0.742461,0.366352,0.991459,0.343953,0.401288,0.0762342,0.215917,0.936849,0.148963,0.523645,0.445874,0.616882,0.776824,0.610488,0.496199,0.00215,0.590239,0.909708,0.512011,0.471215,0.777688,0.934838,0.880323,0.871292,0.919894,0.727722,0.857732,0.821379,0.921564,0.523648,0.419498,0.958473,0.71819,0.460202,0.515842,0.0189399,0.885573,0.136093,0.428499,0.0766978,0.312494,0.645493,0.0251905,0.996512,0.0845456,0.247576,0.551669,0.7631,0.788432,0.398001,0.196788,0.643344,0.692809,0.359682,0.220525,0.37802,0.88935,0.017032,0.0218354,0.421101,0.656516,0.478772,0.701308,0.295919,0.892529,0.733509,0.250087,0.318778,0.315458,0.406762,0.298644,0.041435,0.905055,0.479596,0.472181,0.0761392,0.704553,0.740322,0.421444,0.9324,0.102818,0.0294673,0.989629,0.36806,0.147393,0.253951,0.172551,0.455526,0.468782,0.36542,0.0109117,0.191537,0.899881,0.674066,0.667528,0.782663,0.927557,0.346934,0.918409,0.127151,0.739679,0.0121478,0.715194,0.800673,0.586371,0.251983,0.877891,0.543827,0.64754,0.295127,0.29327,0.351678,0.850505,0.945394,0.717394,0.899091,0.142305,0.510965,0.674008,0.845868,0.00748408,0.508501,0.93304,0.901979,0.460385,0.974124,0.737036,0.540077,0.00646389,0.524055,0.152929,0.0814628,0.777354,0.92451,0.287094,0.704184,0.223886,0.678003,0.0164515,0.0960161,0.321738,0.987619,0.658244,0.953074,0.544846,0.820953,0.602429,0.637192,0.347138,0.99002,0.426756,0.217035,0.790131,0.465231,0.361864,0.450016,0.413015,0.462242,0.719376,0.368575,0.631861,0.882362,0.670461,0.538791,0.529951,0.0504675,0.168374,0.447736,0.78651,0.275319,0.402469,0.212696,0.423418,0.202668,0.57357,0.243157,0.635924,0.478697,0.0690907,0.191641,0.282193,0.88486,0.717447,0.0406359,0.227367,0.984189,0.189971,0.691735,0.312026,0.205227,0.682123,0.605571,0.728727,0.923887,0.0218751,0.828164,0.0949396,0.0964994,0.326607,0.907632,0.144265,0.792445,0.774805,0.820959,0.974473,0.00205117,0.474865,0.767796,0.610063,0.822182,0.297193,0.986846,0.258078,0.653282,0.894754,0.397473,0.892139,0.461113,0.0676029,0.990905,0.825137,0.659525,0.945927,0.802403,0.854691,0.0558888,0.976966,0.826061,0.522588,0.679737,0.882832,0.362503,0.373862,0.655329,0.920238,0.700812,0.0644704,0.473083,0.98743,0.24393,0.334869,0.0466806,0.449398,0.564024,0.914633,0.158554,0.781312,0.37414,0.923928,0.76901,0.956522,0.889058,0.971767,0.00186813,0.44121,0.27118,0.0319221,0.154,0.415441,0.84774,0.45591,0.992012,0.667122,0.257339,0.598365,0.304013,0.0909302,0.135672,0.366797,0.551293,0.701484,0.944518,0.0333872,0.105592,0.41177,0.474987,0.815635,0.99116,0.0972952,0.247052,0.735458,0.354026,0.106998,0.881117,0.0733838,0.388116,0.95623,0.950023,0.813186,0.942968,0.174939,0.602125,0.727587,0.566352,0.269293,0.943061,0.00088805,0.377325,0.19367,0.419949,0.831655,0.431385,0.342058,0.732571,0.911437,0.46945,0.760871,0.73242,0.223706,0.0916826,0.525779,0.739884,0.751097,0.218457,0.748477,0.103255,0.512154,0.33973,0.798835,0.154063,0.454094,0.404778,0.233497,0.75654,0.000941515,0.373178,0.0523785,0.0310868,0.388827,0.760342,0.866283,0.187123,0.605582,0.0708365,0.695947,0.926303,0.574059,0.80504,0.792759,0.620713,0.749247,0.0876386,0.518814,0.994305,0.0738605,0.421863,0.22286,0.0147923,0.641755,0.382593,0.929892,0.0228969,0.0838249,0.424284,0.444481,0.672053,0.125818,0.333377,0.965274,0.0314482,0.278781,0.0549477,0.302633,0.61257,0.832226,0.656793,0.162991,0.266763,0.444941,0.177733,0.800982,0.539987,0.03944,0.830139,0.636234,0.802085,0.77118,0.917867,0.103603,0.478666,0.722673,0.943558,0.981956,0.0773757,0.687319,0.831613,0.204944,0.500299,0.42374,0.921709,0.836866,0.0473278,0.0734385,0.284706,0.61425,0.974219,0.0493007,0.950607,0.363079,0.23446,0.106271,0.785287,0.00704557,0.372027,0.954821,0.869579,0.71979,0.721391,0.495758,0.75182,0.397086,0.0517014,0.270061,0.626778,0.517928,0.0296437,0.643467,0.122421,0.135022,0.275104,0.657486,0.185455,0.264521,0.710203,0.694971,0.585998,0.640398,0.762818,0.272896,0.313101,0.0782462,0.813305,0.632427,0.778189,0.297757,0.574721,0.789241,0.844078,0.868688,0.336546,0.85619,0.333541,0.502879,0.93026,0.56864,0.128822,0.629075,0.58344,0.624049,0.944961,0.110386,0.567004,0.190179,0.095241,0.477792,0.0175356,0.185489,0.283503,0.314695,0.611977,0.281534,0.613853,0.355569,0.209613,0.747501,0.145162,0.824768,0.886326,0.663493,0.238755,0.316682,0.0925625,0.167401,0.677556,0.952041,0.0005005,0.973908,0.275228,0.0893364,0.120213,0.755162,0.0571439,0.736696,0.305346,0.564549,0.704527,0.366198,0.904173,0.739216,0.635236,0.304098,0.365364,0.375858,0.0397384,0.186208,0.920966,0.296238,0.504209,0.589485,0.284235,0.23633,0.831845,0.803379,0.875218,0.321249,0.210827,0.70551,0.118165,0.878471,0.0300387,0.293824,0.170533,0.993214,0.408324,0.31788,0.5782,0.712617,0.0557158,0.641501,0.227051,0.0911826,0.105391,0.833317,0.521587,0.804025,0.130355,0.877632,0.532849,0.8274,0.179132,0.197608,0.679829,0.399188,0.918232,0.178993,0.778756,0.452886,0.599989,0.569973,0.856586,0.00849724,0.0278366,0.192918,0.633931,0.140828,0.148177,0.900607,0.691645,0.639308,0.672925,0.930441,0.0705603,0.0037201,0.358201,0.289512,0.224699,0.0975746,0.925963,0.166611,0.396811,0.405068,0.557501,0.286752,0.360936,0.464575,0.0569857,0.206432,0.0371687,0.46406,0.854728,0.154927,0.935932,0.385159,0.82239,0.936866,0.315101,0.582402,0.345979,0.209835,0.485251,0.350791,0.340211,0.426693,0.707868,0.138533,0.928192,0.814342,0.75921,0.725339,0.125221,0.18105,0.916983,0.456003,0.870637,0.831826,0.0359448,0.730825,0.725519,0.537455,0.239378,0.57583,0.216184,0.754993,0.0524504,0.659561,0.354257,0.0801792,0.665497,0.015393,0.725288,0.831171,0.319347,0.927312,0.223883,0.885418,0.0294561,0.988918,0.344785,0.837111,0.577058,0.0147238,0.778018,0.432558,0.449567,0.402563,0.759383,0.783135,0.345436,0.395863,0.434631,0.28072,0.690032,0.220553,0.670013,0.267897,0.460885,0.884683,0.987025,0.0732094,0.73092,0.687501,0.571056,0.562269,0.279426,0.157785,0.0672212,0.0234902,0.213922,0.261313,0.0488753,0.723292,0.325959,0.586665,0.662231,0.379107,0.136568,0.856114,0.726876,0.788077,0.903466,0.907074,0.579471,0.397497,0.137269,0.781916,0.19356,0.331935,0.261315,0.0482496,0.378417,0.0575501,0.265543,0.756202,0.209283,0.185026,0.0752034,0.535359,0.230079,0.605211,0.661838,0.0596694,0.08837,0.137259,0.178508,0.739851,0.0735385,0.620152,0.475773,0.897038,0.130181,0.119797,0.611141,0.84279,0.744189,0.966243,0.747149,0.188254,0.506838,0.527207,0.261441,0.460853,0.867683,0.632752,0.12543,0.323212,0.0721713,0.392009,0.0580195,0.178264,0.675082,0.899349,0.978565,0.902,0.498512,0.407805,0.0094285,0.612122,0.0148558,0.71242,0.301003,0.758318,0.943872,0.392559,0.76511,0.389104,0.887492,0.6988,0.235341,0.192767,0.654113,0.907945,0.24462,0.0320572,0.254613,0.774913,0.188787,0.198296,0.282065,0.652968,0.888908,0.666733,0.0047459,0.920421,0.934192,0.875364,0.890113,0.796216,0.966391,0.358686,0.637776,0.69503,0.940449,0.237081,0.0406302,0.736952,0.369328,0.382283,0.655103,0.983675,0.280535,0.905516,0.944509,0.331231,0.366205,0.343865,0.469925,0.905233,0.917248,0.147062,0.373859,0.24451,0.314297,0.864148,0.903321,0.617556,0.368808,0.204153,0.315255,0.905724,0.797895,0.905865,0.516214,0.531868,0.855507,0.537686,0.670818,0.139046,0.315014,0.424041,0.380958,0.452581,0.94016,0.00447977,0.718948,0.440086,0.595202,0.312501,0.863676,0.542402,0.821416,0.208242,0.482279,0.852345,0.976115,0.286733,0.570834,0.640901,0.0345927,0.297932,0.411742,0.365582,0.0431156,0.0237374,0.509096,0.788143,0.316427,0.359763,0.46711,0.682619,0.367153,0.778951,0.410697,0.81255,0.513057,0.416317,0.966254,0.692524,0.492906,0.0884892,0.517097,0.763294,0.24701,0.791375,0.548869,0.074248,0.723341,0.518338,0.140113,0.230318,0.438204,0.898616,0.0409042,0.750319,0.593775,0.54033,0.833408,0.290865,0.605971,0.897731,0.1876,0.801965,0.883726,0.181753,0.153174,0.603362,0.00809276,0.568167,0.660296,0.605142,0.0527907,0.0352393,0.323988,0.797654,0.695627,0.0660114,0.671191,0.572174,0.259607,0.212203,0.620282,0.20307,0.849713,0.930508,0.51588,0.355919,0.165243,0.280787,0.739049,0.505292,0.647201,0.720544,0.575362,0.979373,0.675284,0.831489,0.332368,0.374951,0.890343,0.515962,0.055078,0.706989,0.577802,0.860511,0.65742,0.26191,0.307742,0.701876,0.480602,0.21963,0.605979,0.301786,0.16255,0.828976,0.50936,|0.951989,0.340046,0.398463,0.395591,0.462337,0.832594,0.683302,0.392039,0.0790041,0.0728401,0.728362,0.293361,0.0520619,0.607144,0.790716,0.892887,0.839989,0.992913,0.617503,0.683642,0.534806,0.504214,0.250378,0.552299,0.856152,0.0899112,0.51054,0.169667,0.171113,0.539051,0.464341,0.921709,0.201418,0.748289,0.216971,0.000899255,0.33127,0.0383514,0.435118,0.506542,0.293811,0.783705,0.397459,0.779941,0.603015,0.0257152,0.714601,0.519644,0.851679,0.562837,0.803135,0.749202,0.53295,0.709458,0.789854,0.755494,0.441714,0.954748,0.129012,0.0610734,0.56054,0.955827,0.46053,0.957295,0.59704,0.357097,0.578279,0.57033,0.388572,0.935839,0.151441,0.865932,0.174565,0.378562,0.141653,0.874344,0.393537,0.861324,0.797336,0.439046,0.167882,0.483266,0.200014,0.128042,0.900733,0.292158,0.958714,0.0871277,0.281205,0.103563,0.921854,0.882798,0.231132,0.0203294,0.0146497,0.0811347,0.302838,0.122797,0.945194,0.4429,0.802137,0.487756,0.290998,0.363881,0.682707,0.874816,0.478404,0.851746,0.660071,0.00757003,0.526354,0.115586,0.469731,0.395486,0.782967,0.82128,0.361601,0.779538,0.488439,0.473516,0.491821,0.176963,0.530984,0.34808,0.227104,0.316619,0.320414,0.787052,0.711554,0.349438,0.255429,0.611609,0.103197,0.0641189,0.363677,0.717339,0.500099,0.670987,0.15853,0.660373,0.41344,0.0701529,0.538826,0.512132,0.993646,0.802185,0.638373,0.578738,0.17414,0.849679,0.564428,0.0805304,0.650993,0.973068,0.137256,0.227685,0.754214,0.899911,0.490594,0.800518,0.038477,0.311553,0.216802,0.130432,0.508485,0.946811,0.78848,0.997491,0.938033,0.526947,0.739043,0.53073,0.557657,0.115088,0.255505,0.423546,0.735694,0.502228,0.960514,0.284396,0.842653,0.0975977,0.0298606,0.386453,0.149971,0.450553,0.515724,0.606849,0.0567965,0.855422,0.766213,0.158324,0.649802,0.0903702,0.777773,0.459551,0.0864723,0.683209,0.508131,0.326463,0.793747,0.953465,0.625125,0.38743,0.359268,0.856894,0.498755,0.477147,0.729598,0.0435612,0.279188,0.957093,0.706537,0.680082,0.657052,0.465773,0.724483,0.454434,0.313244,0.821024,0.92027,0.160743,0.11021,0.547205,0.762593,0.068361,0.365021,0.0690085,0.789883,0.346197,0.823119,0.924479,0.276726,0.761967,0.114364,0.408582,0.858258,0.804187,0.734116,0.257698,0.196296,0.456969,0.65257,0.692679,0.285281,0.524328,0.703246,0.43017,0.51141,0.899665,0.247486,0.996733,0.512303,0.761344,0.283746,0.863082,0.12267,0.871811,0.124486,0.656648,0.722009,0.246756,0.802372,0.443564,0.429478,0.0613174,0.61214,0.250728,0.54806,0.56509,0.339157,0.284398,0.458164,0.642578,0.684507,0.386837,0.898591,0.119462,0.934011,0.928469,0.231871,0.342689,0.567518,0.634457,0.892728,0.270489,0.642479,0.252204,0.767713,0.815695,0.932392,0.033161,0.628263,0.45951,0.516392,0.0926976,0.0746796,0.657065,0.950307,0.128896,0.502623,0.170944,0.7987,0.295226,0.85877,0.832437,0.403362,0.0767345,0.856994,0.308721,0.337763,0.170344,0.903621,0.837928,0.782186,0.0969092,0.663841,0.409909,0.878263,0.985879,0.836085,0.502161,0.807855,0.418556,0.201381,0.723909,0.557104,0.856474,0.114235,0.987238,0.917644,0.601151,0.459606,0.779521,0.0434931,0.367507,0.851635,0.981182,0.810309,0.676481,0.0113675,0.152037,0.336154,0.415175,0.935659,0.197477,0.97508,0.764351,0.471583,0.697814,0.432001,0.405757,0.903659,0.555349,0.221207,0.855768,0.196306,0.702365,0.0618615,0.990375,0.907013,0.126244,0.841757,0.192164,0.820642,0.273993,0.0253159,0.441783,0.309028,0.490531,0.96074,0.279193,0.0106491,0.833116,0.289844,0.555919,0.145653,0.114737,0.721557,0.933825,0.917532,0.916341,0.565208,0.161366,0.177569,0.464214,0.821521,0.72619,0.380273,0.725748,0.0877743,0.47224,0.110235,0.655239,0.853873,0.991957,0.364203,0.612421,0.233799,0.566892,0.0109461,0.114165,0.553693,0.768495,0.710161,0.28862,0.352317,0.347798,0.876685,0.143685,0.795587,0.730509,0.444225,0.771946,0.465703,0.853002,0.503743,0.431245,0.853848,0.592332,0.931485,0.210329,0.809731,0.537571,0.558469,0.0665132,0.74396,0.905414,0.648199,0.61492,0.24925,0.348598,0.6341,0.765792,0.952865,0.834723,0.421966,0.182834,0.816334,0.349953,0.164211,0.630653,0.544812,0.317175,0.568836,0.250146,0.552378,0.317767,0.800908,0.569256,0.90206,0.10902,0.838219,0.0429683,0.49372,0.245303,0.965356,0.248394,0.337936,0.730649,0.567526,0.579199,0.947321,0.135525,0.170988,0.0869669,0.461544,0.746532,0.914154,0.286513,0.201158,0.754692,0.837699,0.145499,0.209672,0.250367,0.085068,0.366965,0.799616,0.184892,0.397132,0.153738,0.776814,0.302596,0.571864,0.783387,0.480792,0.813698,0.596613,0.667407,0.401355,0.581598,0.831678,0.966493,0.0601894,0.867946,0.662454,0.110489,0.356469,0.318332,0.0844812,0.0323024,0.995693,0.229416,0.00540829,0.516927,0.711386,0.0138973,0.657882,0.398843,0.491065,0.71508,0.136521,0.0430348,0.874379,0.928973,0.539935,0.0166429,0.348772,0.711268,0.263827,0.835857,0.501101,0.435332,0.115415,0.452528,0.722398,0.354309,0.0534334,0.644946,0.111364,0.163955,0.466074,0.935569,0.82167,0.410419,0.223929,0.56561,0.850265,0.375408,0.0182731,0.744557,0.501637,0.198641,0.318331,0.281066,0.174282,0.0525815,0.756238,0.767598,0.0691245,0.0517394,0.391961,0.136085,0.946423,0.825859,0.941393,0.981408,0.178392,0.864682,0.636392,0.476847,0.874312,0.341018,0.0707361,0.195451,0.968621,0.221644,0.787192,0.294114,0.596284,0.527088,0.32891,0.761288,0.3142,0.46567,0.268922,0.368737,0.170588,0.158173,0.460633,0.078291,0.904941,0.970215,0.385955,0.791695,0.694326,0.127341,0.262176,0.820305,0.906535,0.497041,0.624261,0.438834,0.649532,0.793469,0.107668,0.476784,0.634399,0.147911,0.416036,0.738535,0.730438,0.787099,0.791867,0.036748,0.156804,0.915973,0.480895,0.45635,0.00474954,0.581526,0.508937,0.484312,0.0155616,0.960236,0.217256,0.804551,0.209957,0.564599,0.799643,0.923807,0.600527,0.338115,0.12918,0.996037,0.744387,0.253229,0.992281,0.261657,0.538435,0.319518,0.943219,0.208013,0.13767,0.900788,0.365915,0.643089,0.365278,0.048805,0.609006,0.346085,0.84728,0.237093,0.486391,0.758882,0.974589,0.292053,0.118998,0.144419,0.962679,0.957191,0.829664,0.514168,0.06688,0.873852,0.624696,0.732423,0.117827,0.0665411,0.638214,0.555293,0.677005,0.457944,0.03267,0.508151,0.433279,0.753475,0.169221,0.0840144,0.176336,0.476283,0.129855,0.542699,0.42547,0.600653,0.430908,0.129402,0.88554,0.928769,0.624851,0.172372,0.130718,0.796683,0.293575,0.49695,0.674073,0.740952,0.253551,0.685615,0.874848,0.254223,0.689156,0.379428,0.7913,0.824047,0.436469,0.909823,0.68726,0.704131,0.208043,0.697693,0.553965,0.277865,0.609233,0.463555,0.00238937,0.756194,0.413106,0.469756,0.883826,0.533754,0.376043,0.612889,0.328113,0.798233,0.712986,0.525765,0.404158,0.559561,0.362929,0.704706,0.137409,0.758047,0.956747,0.107904,0.252407,0.888026,0.0109664,0.706505,0.588694,0.887293,0.258086,0.470717,0.587716,0.863725,0.090548,0.361876,0.922602,0.122163,0.405307,0.430571,0.820576,0.501417,0.00229931,0.0369603,0.908029,0.388047,0.591658,0.442609,0.156376,0.793999,0.591657,0.389074,0.341758,0.258428,0.0747263,0.327875,0.857431,0.713369,0.348074,0.958054,0.396598,0.587801,0.18777,0.261414,0.455271,0.53631,0.705777,0.49214,0.222203,0.757338,0.0016802,0.59028,0.987773,0.0498396,0.924595,0.69543,0.402722,0.628483,0.74739,0.455769,0.0382355,0.372347,0.0787009,0.6544,0.364398,0.738585,0.153837,0.480421,0.141644,0.942626,0.048243,0.70593,0.655643,0.248529,0.884919,0.745197,0.662179,0.161304,0.544497,0.125764,0.453699,0.0232273,0.81368,0.147404,0.490098,0.00425839,0.497241,0.205528,0.737926,0.124235,0.0735118,0.554239,0.754173,0.436686,0.829188,0.876701,0.171985,0.0371391,0.306739,0.804283,0.336087,0.659655,0.885949,0.793241,0.13382,0.961561,0.69226,0.0877133,0.1047,0.848559,0.457874,0.0137388,0.947203,0.7925,0.322143,0.628405,0.89533,0.979923,0.902329,0.207245,0.877152,0.512186,0.539064,0.321738,0.540707,0.879776,0.00373054,0.609098,0.354608,0.452485,0.196063,0.904645,0.740853,0.635812,0.600546,0.470705,0.564069,0.478032,0.235324,0.214001,0.0498104,0.349349,0.393181,0.214038,0.0334341,0.292495,0.956647,0.404959,0.233633,0.790144,0.70991,0.0258101,0.726234,0.417349,0.684527,0.0161386,0.194743,0.380087,0.729241,0.0505496,0.219181,0.88027,0.0577774,0.183283,0.205659,0.383059,0.174135,0.6801,0.393074,0.287236,0.858059,0.0270586,0.749696,0.222768,0.750889,0.794499,0.0806497,0.549186,0.291422,0.817139,0.0684184,0.897675,0.245281,0.0836484,0.640821,0.314612,0.103593,0.535575,0.00194651,0.351146,0.73866,0.143942,0.405681,0.0537201,0.881335,0.868361,0.817347,0.402896,0.368449,0.861315,0.439191,0.537843,0.783578,0.658744,0.504477,0.0168196,0.391286,0.244511,0.249058,0.768914,0.908478,0.0747218,0.558118,0.898086,0.160698,0.803651,0.620453,0.715894,0.836549,0.14728,0.586509,0.130118,0.107984,0.394612,0.259619,0.472278,0.999333,0.0671479,0.178699,0.182012,0.687577,0.583815,0.227401,0.0679069,0.588651,0.41279,0.499209,0.603494,0.829611,0.985749,0.877424,0.944631,0.445173,0.777204,0.761636,0.0692175,0.30377,0.0502146,0.622837,0.601289,0.451046,0.0633371,0.272878,0.335449,0.441806,0.87045,0.363792,0.126351,0.425982,0.830655,0.196447,0.727297,0.277463,0.227439,0.674055,0.00924563,0.306852,0.948758,0.634661,0.739419,0.343643,0.0132714,0.823154,0.960696,0.819423,0.61697,0.145526,0.0728744,|0.29111,0.5621,0.754635,0.833019,0.401959,0.585089,0.733389,0.304026,0.603645,0.352482,0.011222,0.363242,0.56441,0.105628,0.0723803,0.944955,0.757473,0.786919,0.926402,0.34516,0.194347,0.770705,0.43618,0.083767,0.891226,0.758653,0.329363,0.376775,0.527391,0.90128,0.666399,0.683556,0.922195,0.195287,0.967901,0.0650942,0.0613766,0.9837,0.428129,0.952513,0.936285,0.885526,0.305171,0.248274,0.346804,0.0138917,0.484716,0.316679,0.449476,0.08996,0.274167,0.134889,0.626658,0.346983,0.980778,0.489115,0.441698,0.0820536,0.891054,0.380185,0.457492,0.106598,0.823315,0.924295,0.884283,0.260569,0.98438,0.932095,0.00425625,0.214881,0.0845529,0.642866,0.221698,0.744597,0.932794,0.220924,0.882725,0.782681,0.217582,0.219642,0.246553,0.128749,0.330164,0.874743,0.696629,0.94257,0.715862,0.266812,0.384762,0.0046708,0.597117,0.646272,0.800846,0.121379,0.144826,0.83049,0.497563,0.850579,0.447582,0.68418,0.775269,0.534903,0.927558,0.713139,0.67285,0.742248,0.968172,0.603886,0.0810801,0.542336,0.877951,0.52525,0.438359,0.0784033,0.774193,0.00186026,0.453369,0.721051,0.90288,0.998132,0.571066,0.80411,0.237291,0.525482,0.139963,0.857658,0.198578,0.890302,0.974147,0.264734,0.448347,0.915919,0.0481244,0.111088,0.651368,0.598633,0.142922,0.067646,0.9608,0.826951,0.413169,0.534968,0.765839,0.500404,0.657794,0.20184,0.559275,0.670806,0.825019,0.488184,0.651182,0.514299,0.112029,0.0230101,0.767725,0.696666,0.0744746,0.891074,0.575868,0.605223,0.641595,0.210787,0.996234,0.607552,0.246583,0.694259,0.461851,0.622606,0.502606,0.716966,0.389159,0.188051,0.261156,0.670399,0.176657,0.479687,0.998381,0.109485,0.777975,0.918865,0.0666382,0.707986,0.569094,0.706798,0.997035,0.669229,0.249154,0.545846,0.348397,0.463722,0.696081,0.773083,0.367445,0.0710803,0.735942,0.657268,0.158247,0.955106,0.37894,0.705474,0.714292,0.778225,0.649655,0.79122,0.791591,0.489972,0.951367,0.259788,0.699857,0.0645227,0.37099,0.675763,0.880366,0.328832,0.424552,0.000639796,0.514684,0.423899,0.398066,0.344362,0.0247489,0.20444,0.971752,0.844979,0.57802,0.255167,0.139004,0.843642,0.468787,0.418513,0.36223,0.886913,0.16919,0.205618,0.888093,0.0843349,0.936779,0.121743,0.967217,0.835189,0.196511,0.897294,0.88502,0.614668,0.311287,0.648782,0.0863621,0.699755,0.102206,0.550447,0.574439,0.0218519,0.384903,0.441282,0.397563,0.37008,0.323287,0.693468,0.0652567,0.577984,0.366556,0.925021,0.919333,0.533454,0.305029,0.0122517,0.821503,0.514915,0.707255,0.848323,0.732592,0.905254,0.13924,0.989274,0.238787,0.163317,0.567579,0.726041,0.0156552,0.316679,0.802492,0.518339,0.467515,0.405461,0.643973,0.302602,0.0212644,0.0263725,0.784714,0.925017,0.437147,0.387074,0.628302,0.111393,0.0273127,0.570056,0.868939,0.359384,0.22792,0.972577,0.104602,0.858975,0.748545,0.368829,0.619567,0.79476,0.900858,0.0813957,0.570801,0.971744,0.313389,0.217518,0.146977,0.88693,0.43176,0.745312,0.360932,0.307999,0.68706,0.123074,0.438736,0.944752,0.332349,0.130113,0.864024,0.29171,0.442807,0.518535,0.920833,0.62876,0.934798,0.980133,0.0324351,0.826468,0.2618,0.935272,0.127093,0.396151,0.0594601,0.5172,0.64046,0.125852,0.0268989,0.00359684,0.278436,0.0149038,0.705547,0.540948,0.0975295,0.0729319,0.137144,0.167505,0.070312,0.569476,0.767636,0.561096,0.912223,0.494631,0.171398,0.972317,0.586668,0.792743,0.668551,0.963902,0.487858,0.652177,0.103079,0.725029,0.60363,0.753675,0.129832,0.0749407,0.207809,0.494738,0.320491,0.705513,0.112217,0.131233,0.24904,0.156364,0.2236,0.915255,0.0364436,0.854055,0.0946485,0.954318,0.641992,0.0879458,0.0510189,0.32294,0.522642,0.95921,0.0493966,0.928163,0.523082,0.325688,0.256053,0.449525,0.984291,0.445448,0.463118,0.697645,0.850663,0.842455,0.762251,0.312642,0.104693,0.0447589,0.258461,0.491843,0.450096,0.531263,0.984107,0.0370377,0.648739,0.56725,0.501877,0.035767,0.976131,0.332785,0.509115,0.626185,0.339357,0.233163,0.431641,0.0292062,0.383169,0.401443,0.426956,0.705102,0.148036,0.790972,0.87636,0.313937,0.352905,0.755768,0.375157,0.198352,0.26804,0.783029,0.818663,0.157702,0.221738,0.703479,0.285627,0.025443,0.755187,0.533906,0.900343,0.949555,0.70943,0.727512,0.169291,0.905123,0.435747,0.716848,0.213731,0.168639,0.777949,0.260937,0.653411,0.0564618,0.98939,0.674198,0.26389,0.835348,0.556417,0.617508,0.871962,0.769887,0.855693,0.66923,0.516196,0.329393,0.239932,0.341802,0.871019,0.832193,0.362982,0.771966,0.708242,0.480549,0.88175,0.384229,0.336897,0.604846,0.488385,0.526219,0.970328,0.0611479,0.0367054,0.379404,0.0480762,0.147373,0.195423,0.325664,0.748606,0.228794,0.00910842,0.678615,0.811471,0.183047,0.651831,0.387832,0.562371,0.959851,0.633988,0.515761,0.243826,0.310189,0.624913,0.0434535,0.0513009,0.969746,0.13592,0.890647,0.542596,0.755333,0.940572,0.187364,0.57354,0.260458,0.8286,0.923666,0.69495,0.420669,0.807701,0.382636,0.517766,0.157048,0.201407,0.930091,0.51296,0.4831,0.284174,0.941027,0.210691,0.311541,0.484295,0.424619,0.661628,0.218034,0.117389,0.352817,0.300701,0.28309,0.424071,0.644055,0.596532,0.377988,0.98147,0.654064,0.818799,0.54856,0.630225,0.943884,0.152837,0.806955,0.910048,0.356969,0.0864873,0.606921,0.727126,0.323789,0.258307,0.0887073,0.189968,0.274646,0.0315316,0.845884,0.292591,0.233972,0.692307,0.479756,0.788308,0.342297,0.478632,0.182132,0.776317,0.717501,0.674127,0.617127,0.829044,0.0297535,0.610609,0.528566,0.00150198,0.52438,0.120651,0.925745,0.0300285,0.982767,0.84836,0.640389,0.522939,0.853592,0.852684,0.39246,0.823897,0.975739,0.408534,0.65485,0.918066,0.819167,0.709202,0.129521,0.0652149,0.607787,0.187197,0.0262316,0.7117,0.332061,0.352104,0.149363,0.634857,0.909585,0.287066,0.365643,0.128541,0.410155,0.45464,0.678551,0.746077,0.216627,0.00628877,0.869183,0.442285,0.6482,0.14208,0.435259,0.341946,0.715722,0.279548,0.573086,0.856428,0.936219,0.13868,0.443711,0.441985,0.21904,0.245474,0.617751,0.569573,0.186224,0.276622,0.678754,0.727732,0.261069,0.625317,0.571101,0.145397,0.154613,0.887671,0.467992,0.985497,0.266135,0.376748,0.670525,0.89207,0.359584,0.306045,0.97369,0.722713,0.62407,0.113321,0.973156,0.539225,0.811212,0.117131,0.372581,0.304393,0.507897,0.141924,0.52976,0.990456,0.457558,0.912834,0.0757405,0.843284,0.292565,0.81224,0.639451,0.0465021,0.0372466,0.653164,0.0673434,0.593427,0.858142,0.562365,0.858346,0.895649,0.814202,0.467833,0.757684,0.242678,0.634009,0.157523,0.749226,0.627782,0.428698,0.352922,0.668353,0.315345,0.435082,0.855914,0.317056,0.0456797,0.746438,0.318266,0.654418,0.0654483,0.472178,0.804821,0.146961,0.273476,0.117579,0.588059,0.699274,0.512262,0.134572,0.167363,0.754817,0.189364,0.374906,0.654981,0.709446,0.240164,0.708657,0.821981,0.377563,0.286102,0.144544,0.0793119,0.882207,0.65448,0.245134,0.308147,0.598461,0.741156,0.895431,0.766091,0.664213,0.620692,0.51162,0.458045,0.357456,0.784517,0.625454,0.598828,0.753242,0.475556,0.820938,0.829394,0.387172,0.0747175,0.534316,0.753158,0.893454,0.288804,0.783365,0.209384,0.194462,0.00920272,0.997348,0.99297,0.428559,0.0784162,0.471117,0.85039,0.941743,0.118643,0.351901,0.505926,0.339686,0.11756,0.573731,0.549742,0.577742,0.631098,0.564321,0.543524,0.551841,0.524471,0.208549,0.796512,0.889058,0.84884,0.100433,0.917794,0.60581,0.496867,0.936517,0.539833,0.115097,0.424028,0.684054,0.983412,0.546372,0.806399,0.651421,0.401748,0.338016,0.778088,0.317045,0.135435,0.26907,0.248171,0.148944,0.940965,0.110322,0.120764,0.943153,0.172617,0.554128,0.0706361,0.774423,0.782802,0.529839,0.504076,0.0852593,0.301768,0.542287,0.402856,0.960472,0.523307,0.883049,0.617277,0.252433,0.0243325,0.652147,0.0318329,0.865468,0.177769,0.310486,0.641934,0.797699,0.712599,0.205771,0.74132,0.571282,0.0681649,0.900161,0.256076,0.212394,0.82234,0.284915,0.632825,0.778715,0.239995,0.466996,0.995201,0.859362,0.227454,0.736,0.508529,0.0870824,0.399811,0.186852,0.851269,0.426561,0.411183,0.824882,0.504412,0.289814,0.402924,0.250277,0.592223,0.171064,0.330884,0.0310596,0.437324,0.706176,0.532715,0.650392,0.356228,0.562575,0.887051,0.554652,0.95337,0.330704,0.605224,0.937533,0.815374,0.0364782,0.193503,0.96439,0.256991,0.910622,0.836567,0.0382389,0.674229,0.656918,0.781612,0.366646,0.847145,0.927156,0.280221,0.0634954,0.235863,0.882442,0.280796,0.256949,0.276637,0.0736077,0.692899,0.515988,0.880471,0.93988,0.00843221,0.522608,0.35356,0.978217,0.500175,0.752235,0.796313,0.698165,0.903782,0.40705,0.409417,0.574557,0.309487,0.92938,0.522198,0.677713,0.705616,0.0680437,0.0819862,0.143152,0.365876,0.921237,0.0606297,0.486107,0.153844,0.263954,0.507249,0.633147,0.773464,0.49918,0.309303,0.760308,0.804531,0.278629,0.712708,0.750435,0.882188,0.905514,0.82987,0.888387,0.326306,0.031085,0.249486,0.816281,0.328493,0.610531,0.710498,0.45577,0.215408,0.525542,0.955598,0.700687,0.37344,0.00852615,0.591393,0.403237,0.729654,0.440822,0.713267,0.7256,0.687039,0.382086,0.544399,0.506859,0.369916,0.708066,0.0783796,0.80599,0.924531,0.883487,0.478824,0.173176,0.898959,0.244513,0.214917,0.514318,0.745408,0.943596,0.128778,0.691259,0.9716,0.490877,0.488611,0.279721,0.431867,0.631702,0.322319,0.660634,0.39446,0.887664,0.801986,0.196593,|0.984547,0.298035,0.248432,0.140815,0.86093,0.721156,0.0649471,0.345141,0.307012,0.443347,0.532729,0.467167,0.801591,0.926714,0.0100845,0.913628,0.600553,0.261688,0.637623,0.353769,0.593774,0.953035,0.766767,0.454921,0.550041,0.934737,0.172368,0.007572,0.225153,0.292156,0.888487,0.0201882,0.160484,0.907472,0.820547,0.293338,0.940567,0.195376,0.622963,0.118952,0.797419,0.0717835,0.134905,0.262594,0.116252,0.466963,0.150018,0.71592,0.954337,0.538328,0.859701,0.852083,0.501677,0.962268,0.775864,0.74592,0.393249,0.610749,0.742637,0.448681,0.0559283,0.643413,0.820462,0.891452,0.512305,0.537335,0.1609,0.565974,0.368789,0.657094,0.315569,0.20031,0.224651,0.625562,0.171405,0.205172,0.137321,0.429662,0.783486,0.691913,0.516457,0.878104,0.166333,0.351084,0.3676,0.388231,0.0374803,0.643768,0.287778,0.247648,0.272297,0.790919,0.380851,0.0830485,0.0152923,0.271281,0.085496,0.842488,0.760131,0.468286,0.236262,0.00626582,0.901386,0.485289,0.515446,0.968583,0.938515,0.697703,0.539971,0.683376,0.0836921,0.889685,0.398383,0.146737,0.194387,0.535076,0.481776,0.508909,0.0372663,0.485327,0.866898,0.0738617,0.0885563,0.436309,0.784369,0.735359,0.484474,0.708366,0.435741,0.673856,0.789826,0.932658,0.0703893,0.75906,0.154686,0.00985044,0.148131,0.633308,0.00710011,0.798636,0.172212,0.177135,0.495891,0.0147123,0.424438,0.914871,0.87854,0.594363,0.307594,0.0664654,0.106151,0.082081,0.382672,0.771594,0.603824,0.140315,0.677796,0.282027,0.406529,0.30735,0.0799549,0.302256,0.582611,0.878988,0.330353,0.102229,0.708772,0.263852,0.0472147,0.930326,0.0300645,0.230673,0.202012,0.30737,0.805834,0.829366,0.573605,0.0100519,0.976544,0.238001,0.331323,0.543993,0.722716,0.917513,0.935186,0.302036,0.166662,0.715981,0.636492,0.126325,0.642649,0.82408,0.151956,0.374681,0.814318,0.211729,0.410146,0.351476,0.0637938,0.474016,0.00313318,0.858466,0.613329,0.844707,0.511569,0.668367,0.13302,0.352077,0.865824,0.0842757,0.600928,0.267524,0.614349,0.787782,0.860567,0.327515,0.0533242,0.661336,0.525876,0.31813,0.951099,0.281475,0.430783,0.243081,0.270826,0.608085,0.442332,0.256667,0.636996,0.594525,0.833931,0.355214,0.978387,0.114038,0.33512,0.875784,0.26607,0.952879,0.9035,0.242073,0.727076,0.601907,0.416653,0.646513,0.868006,0.687828,0.646007,0.335471,0.468213,0.441608,0.447094,0.247407,0.905315,0.370902,0.82647,0.325339,0.388106,0.879645,0.812491,0.243314,0.425323,0.24577,0.830896,0.180502,0.869722,0.407727,0.921823,0.523116,0.617276,0.264808,0.451437,0.529294,0.930451,0.347381,0.0978165,0.107692,0.576913,0.192744,0.394867,0.730885,0.806202,0.305596,0.72088,0.942887,0.547829,0.965426,0.768745,0.975966,0.532174,0.345045,0.802747,0.731527,0.612606,0.0687299,0.763873,0.721033,0.0587317,0.0963931,0.835874,0.344034,0.67847,0.727613,0.818339,0.509466,0.594466,0.692388,0.00620937,0.903318,0.018454,0.66593,0.634638,0.278289,0.0697557,0.373715,0.219974,0.108229,0.922754,0.385157,0.787181,0.767292,0.266315,0.37019,0.135719,0.201394,0.97666,0.296587,0.00216496,0.405665,0.601426,0.371716,0.995581,0.714049,0.476404,0.361872,0.487186,0.0986466,0.715493,0.533023,0.651394,0.162531,0.711699,0.266844,0.407534,0.509216,0.161809,0.399635,0.901443,0.382361,0.987297,0.00964481,0.858439,0.819852,0.291931,0.679002,0.622871,0.181442,0.337962,0.13087,0.73881,0.979022,0.29968,0.116141,0.915,0.917878,0.666728,0.285008,0.385698,0.197623,0.256361,0.133055,0.604284,0.358012,0.344455,0.929358,0.299259,0.0655902,0.54875,0.610287,0.222052,0.873132,0.961996,0.238608,0.864267,0.661164,0.0976601,0.246983,0.561031,0.733103,0.955426,0.173346,0.989338,0.256082,0.731345,0.544042,0.0571752,0.551447,0.0230843,0.84281,0.506724,0.15677,0.71438,0.618585,0.0519077,0.556225,0.689429,0.425394,0.904698,0.121709,0.886854,0.470602,0.879078,0.0568696,0.20523,0.97658,0.561928,0.388231,0.499144,0.268218,0.0448389,0.418706,0.923377,0.486045,0.22062,0.874199,0.946574,0.573056,0.252266,0.391565,0.987186,0.0234235,0.509286,0.770895,0.281523,0.263593,0.966476,0.728133,0.716567,0.905927,0.204052,0.678863,0.778276,0.242485,0.560829,0.932027,0.703891,0.556429,0.39494,0.204604,0.430922,0.602549,0.439185,0.824607,0.605371,0.400171,0.799749,0.880122,0.32596,0.765572,0.966358,0.3563,0.587384,0.656241,0.221891,0.019851,0.0865642,0.0346202,0.824266,0.516494,0.33166,0.800306,0.0314053,0.568823,0.673878,0.249019,0.293583,0.284119,0.801291,0.181984,0.290339,0.187058,0.924988,0.589251,0.707428,0.635863,0.665635,0.792123,0.922502,0.194918,0.706627,0.567664,0.664991,0.252778,0.918526,0.0402569,0.0273693,0.875856,0.985638,0.0895118,0.420451,0.635343,0.932493,0.373908,0.682147,0.748275,0.951344,0.261785,0.414416,0.515646,0.541704,0.85872,0.159671,0.512083,0.485699,0.308561,0.411724,0.534185,0.996979,0.00943184,0.673068,0.146482,0.237189,0.283172,0.569725,0.729397,0.555107,0.342072,0.876456,0.566867,0.083043,0.660537,0.412023,0.785807,0.220726,0.908964,0.0519207,0.261783,0.640131,0.284425,0.864513,0.027457,0.774033,0.903333,0.793094,0.240325,0.191204,0.836769,0.311653,0.451903,0.969295,0.789946,0.345608,0.117031,0.68623,0.971984,0.373251,0.134244,0.937264,0.70431,0.813595,0.227425,0.362402,0.751626,0.0885782,0.773182,0.94543,0.516983,0.753384,0.199742,0.273414,0.656079,0.866745,0.385317,0.970105,0.866892,0.151884,0.706592,0.983253,0.00380802,0.449116,0.757959,0.527992,0.950534,0.589978,0.23044,0.449574,0.0544619,0.308027,0.568264,0.994921,0.126799,0.354522,0.460351,0.783776,0.964458,0.683246,0.316432,0.69457,0.523624,0.128147,0.289509,0.688442,0.236627,0.541358,0.498668,0.586675,0.491762,0.53864,0.793953,0.27236,0.541874,0.244415,0.618524,0.803159,0.376363,0.831842,0.285507,0.770532,0.114764,0.244643,0.727411,0.58303,0.777272,0.568814,0.548596,0.432643,0.32082,0.906937,0.080626,0.413167,0.355917,0.0297318,0.153134,0.0612974,0.357319,0.609728,0.0380944,0.866093,0.92436,0.228404,0.462961,0.555238,0.499727,0.152486,0.544476,0.0932462,0.857455,0.124524,0.497719,0.528695,0.111759,0.875971,0.765135,0.187022,0.22272,0.328876,0.918938,0.021413,0.995668,0.19424,0.202442,0.175151,0.482957,0.0204564,0.683775,0.701491,0.902567,0.782836,0.882027,0.320144,0.865626,0.421533,0.511331,0.598253,0.231838,0.873405,0.809608,0.590037,0.347431,0.280028,0.111036,0.809452,0.951591,0.267598,0.395996,0.616709,0.542059,0.365198,0.206267,0.0891283,0.0365462,0.526498,0.0960071,0.686386,0.966769,0.00347549,0.4221,0.0765705,0.939668,0.613606,0.267099,0.334274,0.207671,0.309518,0.28949,0.115807,0.616632,0.251464,0.887172,0.1932,0.264016,0.731435,0.403381,0.192553,0.631913,0.575088,0.865325,0.654406,0.783295,0.745699,0.0243459,0.514138,0.789796,0.211982,0.875982,0.454755,0.749122,0.637436,0.246982,0.208841,0.706227,0.984326,0.813049,0.205408,0.219065,0.482461,0.195643,0.370459,0.222282,0.197357,0.344416,0.308981,0.904289,0.770209,0.603913,0.53613,0.28823,0.953942,0.319262,0.826672,0.699528,0.482435,0.423833,0.415679,0.543383,0.591945,0.393248,0.273137,0.762184,0.967836,0.579125,0.512575,0.905494,0.0792914,0.684727,0.62699,0.756734,0.893666,0.578792,0.0247037,0.114069,0.148607,0.117454,0.769122,0.905736,0.530497,0.618414,0.399047,0.853168,0.448209,0.895746,0.137034,0.100991,0.972483,0.121492,0.66687,0.406323,0.909885,0.646443,0.606821,0.439281,0.951162,0.64382,0.456955,0.784734,0.33089,0.452331,0.124701,0.624665,0.55217,0.288044,0.113728,0.672846,0.74951,0.835652,0.640847,0.294749,0.761026,0.711236,0.0436063,0.959018,0.566837,0.349553,0.323687,0.799677,0.287713,0.578433,0.0106156,0.673683,0.808407,0.0624937,0.415234,0.196993,0.0142251,0.325137,0.814646,0.86928,0.343043,0.775702,0.46407,0.519197,0.456115,0.852972,0.96315,0.0954362,0.820863,0.259859,0.14808,0.377186,0.693694,0.4562,0.658366,0.959098,0.119323,0.08955,0.0544019,0.872052,0.252713,0.996328,0.990339,0.640017,0.201839,0.459659,0.770387,0.28675,0.559897,0.880422,0.989883,0.388321,0.194524,0.883319,0.175132,0.864844,0.189586,0.504077,0.113487,0.794813,0.584007,0.558663,0.00207412,0.752448,0.439045,0.188901,0.340805,0.417092,0.940587,0.811754,0.0580398,0.558986,0.398952,0.344651,0.183951,0.39526,0.00190747,0.565534,0.234143,0.910555,0.564117,0.601683,0.132532,0.237672,0.708084,0.156383,0.406037,0.303998,0.158492,0.5075,0.0633205,0.55163,0.307558,0.0100703,0.465278,0.675585,0.253437,0.107854,0.0533281,0.711729,0.561705,0.33519,0.60858,0.918522,0.871605,0.794053,0.461683,0.304173,0.388218,0.854525,0.89104,0.945887,0.531715,0.0367985,0.587536,0.125318,0.42579,0.361822,0.418504,0.963562,0.0843924,0.857043,0.283656,0.741274,0.699353,0.979908,0.325482,0.485146,0.0850112,0.596838,0.639744,0.789867,0.944848,0.614182,0.170381,0.15973,0.298651,0.342602,0.566154,0.183993,0.211856,0.491831,0.978583,0.816224,0.91127,0.185127,0.369935,0.584923,0.0387185,0.733629,0.644731,0.421399,0.457449,0.766024,0.882766,0.216157,0.468352,0.558366,0.758573,0.395007,0.0792707,0.672845,0.391975,0.609646,0.360931,0.514215,0.127932,0.719511,0.249052,0.174364,0.230801,0.163197,0.223083,0.228501,0.0595922,0.275162,0.0263643,0.643681,0.649383,0.586526,0.781411,0.478492,0.110015,0.831249,0.159278,0.849882,0.706736,0.89816,0.389271,0.50273,0.800655,0.554097,0.972172,0.0682136,|0.240275,0.009296,0.447847,0.112743,0.405335,0.247242,0.171835,0.368892,0.380618,0.587733,0.767335,0.125819,0.0770764,0.853764,0.731175,0.887783,0.870691,0.464039,0.224572,0.0897568,0.467499,0.906783,0.822135,0.0838989,0.770169,0.546686,0.294424,0.266152,0.359969,0.959581,0.30824,0.215179,0.956211,0.410612,0.777544,0.776381,0.682952,0.983386,0.604462,0.846895,0.249299,0.173287,0.850595,0.569329,0.839559,0.126377,0.634033,0.174873,0.780431,0.0707934,0.771567,0.652362,0.579753,0.075671,0.184773,0.877959,0.817657,0.0592338,0.759358,0.00230813,0.254626,0.894819,0.613159,0.465269,0.00675005,0.685636,0.62876,0.106773,0.719332,0.928128,0.974661,0.432263,0.068868,0.842741,0.793189,0.253076,0.169007,0.832751,0.681789,0.790394,0.455253,0.185378,0.363798,0.628027,0.880331,0.566993,0.386022,0.154404,0.632107,0.143032,0.659529,0.54671,0.175394,0.994927,0.649874,0.764364,0.645503,0.741454,0.546519,0.170613,0.695071,0.360298,0.0787727,0.248315,0.0731081,0.662355,0.42626,0.00586516,0.834033,0.975645,0.751992,0.666933,0.147507,0.550797,0.287073,0.767733,0.821874,0.0983452,0.60771,0.991689,0.7588,0.961222,0.27846,0.491543,0.462773,0.505589,0.93095,0.862628,0.44334,0.939395,0.686761,0.756311,0.0844469,0.444701,0.413108,0.467604,0.606265,0.911071,0.127084,0.57499,0.526861,0.432607,0.737406,0.107695,0.806491,0.414705,0.0981416,0.096643,0.359243,0.327611,0.307272,0.693459,0.248152,0.514347,0.272562,0.799938,0.856529,0.257472,0.407242,0.547624,0.78564,0.723312,0.170374,0.517973,0.903012,0.419319,0.475164,0.0300722,0.0793347,0.341225,0.911218,0.273743,0.00977629,0.135899,0.821244,0.787514,0.115894,0.193023,0.172417,0.577981,0.764954,0.293688,0.959457,0.940898,0.706588,0.689235,0.841311,0.980857,0.853165,0.594079,0.268215,0.405657,0.865033,0.816939,0.922527,0.200208,0.199585,0.841053,0.971608,0.606413,0.686033,0.801535,0.10727,0.628135,0.643308,0.183573,0.280285,0.876571,0.20681,0.935401,0.72648,0.867854,0.837814,0.725645,0.276244,0.697082,0.926893,0.471834,0.17419,0.296227,0.098404,0.661781,0.266005,0.25003,0.717859,0.26667,0.55874,0.861912,0.39001,0.983613,0.845044,0.827606,0.253848,0.244287,0.0605484,0.646115,0.653589,0.172406,0.922007,0.293853,0.468085,0.722287,0.269831,0.413283,0.89852,0.374674,0.83963,0.6935,0.828244,0.0238162,0.283912,0.456099,0.348476,0.162279,0.557711,0.0845867,0.801847,0.205405,0.154856,0.819626,0.917344,0.264894,0.139758,0.549887,0.625946,0.729335,0.415842,0.14698,0.872032,0.217805,0.348688,0.314682,0.285743,0.853961,0.150922,0.392318,0.152076,0.612116,0.238631,0.286629,0.614817,0.275713,0.919932,0.122954,0.139281,0.778618,0.39968,0.16805,0.445482,0.303198,0.295861,0.129273,0.99044,0.452758,0.156265,0.64778,0.417407,0.358224,0.517122,0.164789,0.969147,0.829575,0.75116,0.935554,0.138719,0.426551,0.129639,0.256208,0.462544,0.88685,0.279496,0.746073,0.179037,0.706467,0.694308,0.763862,0.0397581,0.408276,0.504873,0.305435,0.318775,0.681291,0.628746,0.939125,0.00504118,0.279095,0.955894,0.371458,0.621405,0.122073,0.876131,0.31611,0.142766,0.483175,0.00750053,0.297152,0.494794,0.472801,0.649098,0.392231,0.605345,0.345035,0.0794531,0.977131,0.86557,0.0977131,0.711081,0.122136,0.10248,0.167748,0.0106817,0.673007,0.324767,0.941162,0.159704,0.806715,0.970761,0.706011,0.0396188,0.884463,0.755835,0.185384,0.427734,0.998877,0.0379738,0.657621,0.870504,0.760067,0.763849,0.937155,0.803611,0.993793,0.90676,0.596116,0.742891,0.318205,0.448694,0.92692,0.107252,0.285326,0.275292,0.741918,0.919975,0.297169,0.109282,0.316027,0.0303808,0.49773,0.872244,0.257315,0.0310647,0.0983675,0.268616,0.79718,0.467659,0.891088,0.250669,0.813197,0.823748,0.030247,0.986721,0.192026,0.699195,0.178057,0.213078,0.0153416,0.131887,0.0829928,0.619485,0.551479,0.494674,0.280917,0.362007,0.15407,0.168507,0.256578,0.71746,0.944394,0.602199,0.701488,0.104246,0.950592,0.428122,0.612022,0.971088,0.0601259,0.748227,0.154976,0.0978629,0.498335,0.641318,0.634955,0.396054,0.341593,0.184695,0.178049,0.0283059,0.0137463,0.628271,0.657077,0.117283,0.101579,0.247828,0.614781,0.657787,0.770098,0.281654,0.906841,0.290989,0.110842,0.676604,0.793826,0.00201118,0.119461,0.702345,0.991779,0.33148,0.363446,0.185875,0.944577,0.818831,0.500813,0.813053,0.68812,0.446263,0.851025,0.592305,0.941106,0.204207,0.0758255,0.603083,0.45723,0.0437499,0.972823,0.874904,0.410264,0.177142,0.481025,0.0417688,0.919045,0.804268,0.447902,0.4536,0.794616,0.497579,0.802615,0.0757841,0.825086,0.149829,0.543966,0.559068,0.860026,0.398304,0.715639,0.96916,0.749973,0.66155,0.284793,0.00394398,0.0722285,0.320812,0.699732,0.935868,0.372402,0.822991,0.511195,0.756371,0.783305,0.937999,0.8754,0.895673,0.198382,0.988346,0.0449454,0.0417553,0.11639,0.104482,0.75053,0.147095,0.0181555,0.541188,0.696953,0.371849,0.575874,0.436367,0.695054,0.86034,0.98827,0.855526,0.908874,0.838947,0.290673,0.97926,0.707461,0.227545,0.0781283,0.583014,0.470034,0.0904131,0.0448814,0.360516,0.577128,0.274967,0.758124,0.887858,0.861864,0.434726,0.765387,0.988056,0.636107,0.826381,0.793266,0.693989,0.297905,0.88105,0.828574,0.246164,0.188545,0.376849,0.926902,0.271088,0.0685659,0.0916007,0.0919412,0.496116,0.542218,0.211145,0.795069,0.619387,0.827176,0.860081,0.02086,0.05243,0.0552685,0.855561,0.69026,0.824082,0.572062,0.435227,0.545244,0.449956,0.774299,0.380557,0.419467,0.591389,0.467054,0.7286,0.27602,0.231409,0.830433,0.504103,0.896561,0.212856,0.929789,0.533208,0.029487,0.484972,0.745739,0.0501375,0.526738,0.236571,0.721161,0.481674,0.553271,0.164436,0.761503,0.662792,0.71074,0.219019,0.633234,0.602926,0.534664,0.294794,0.995714,0.953426,0.0343202,0.123677,0.18145,0.0778633,0.772929,0.254245,0.313042,0.145274,0.667988,0.678631,0.66124,0.52577,0.786464,0.8092,0.407851,0.230719,0.690153,0.331195,0.246095,0.825544,0.984818,0.234972,0.157821,0.0584698,0.690397,0.0457684,0.217879,0.5955,0.259512,0.629892,0.817061,0.142282,0.414716,0.870063,0.481414,0.7124,0.312958,0.906167,0.42318,0.0420571,0.0507335,0.172197,0.689857,0.574246,0.887327,0.932184,0.19199,0.214416,0.673929,0.704205,0.620586,0.149483,0.00145847,0.0632665,0.266285,0.917116,0.263667,0.195961,0.270529,0.560923,0.991588,0.588056,0.0627875,0.363235,0.908014,0.228398,0.593136,0.389297,0.951171,0.192057,0.3069,0.250869,0.980737,0.949354,0.659697,0.0200961,0.264795,0.0685425,0.302962,0.754423,0.409272,0.787713,0.429789,0.0615362,0.722761,0.00504774,0.696918,0.562195,0.856554,0.636067,0.210512,0.713073,0.324354,0.237296,0.910489,0.276165,0.608604,0.20861,0.301665,0.348906,0.448095,0.848534,0.344621,0.721734,0.192771,0.67622,0.732131,0.253443,0.197859,0.0427921,0.622069,0.382239,0.911152,0.154723,0.195868,0.684785,0.346177,0.895014,0.676158,0.642745,0.160651,0.173929,0.604288,0.826466,0.382823,0.59905,0.894282,0.972394,0.202033,0.856094,0.376019,0.269833,0.840712,0.659004,0.129297,0.629299,0.401696,0.756401,0.236061,0.144723,0.172377,0.218896,0.0251041,0.828598,0.458534,0.359588,0.838144,0.027952,0.288244,0.357572,0.815287,0.717451,0.476904,0.802606,0.312854,0.75435,0.784567,0.979101,0.2285,0.0229921,0.584555,0.421265,0.964772,0.497324,0.36654,0.785736,0.300285,0.223475,0.667825,0.937748,0.951275,0.765054,0.998388,0.885824,0.692911,0.466756,0.659752,0.368289,0.0566622,0.843785,0.354972,0.9851,0.918771,0.113815,0.500221,0.921509,0.745575,0.809239,0.918206,0.00583827,0.420555,0.86878,0.478283,0.935566,0.00967646,0.596342,0.609707,0.829451,0.436929,0.0573947,0.355886,0.290202,0.71583,0.253784,0.973171,0.594014,0.893337,0.916657,0.0446842,0.273263,0.84244,0.884455,0.167181,0.497163,0.545003,0.630243,0.905041,0.256876,0.541902,0.0792736,0.0778174,0.49728,0.113211,0.698264,0.989499,0.692161,0.372862,0.630358,0.892912,0.155192,0.525842,0.301129,0.973887,0.724367,0.0100272,0.723787,0.561521,0.394605,0.0322723,0.721971,0.469997,0.434595,0.217983,0.920445,0.00994241,0.922157,0.878856,0.677662,0.487699,0.588406,0.566797,0.293375,0.978645,0.962327,0.344667,0.705405,0.430431,0.519865,0.674751,0.500884,0.735056,0.828035,0.505916,0.11683,0.798835,0.346982,0.411538,0.256995,0.712028,0.0260116,0.146751,0.858369,0.154084,0.427467,0.151545,0.936874,0.635546,0.49475,0.135072,0.895666,0.790506,0.449454,0.788253,0.582687,0.1109,0.99707,0.603683,0.91909,0.470486,0.100405,0.295826,0.769595,0.17551,0.776096,0.553468,0.962587,0.00948828,0.624958,0.610913,0.604376,0.115219,0.147848,0.931581,0.230063,3.51667e-05,0.557329,0.71046,0.921054,0.751425,0.138472,0.23383,0.341948,0.376619,0.924674,0.162269,0.651312,0.361401,0.0351804,0.675286,0.103024,0.878317,0.509496,0.421564,0.728778,0.822257,0.962,0.432243,0.819104,0.435677,0.0892004,0.401517,0.45104,0.362891,0.609508,0.449786,0.753761,0.354358,0.883861,0.981796,0.134472,0.786812,0.178142,0.0889641,0.0980115,0.0793193,0.225468,0.262598,0.110673,0.70261,0.114986,0.994362,0.969353,0.93871,0.0515999,0.702349,0.338591,0.37577,0.690624,0.251948,0.23113,0.148736,0.253256,0.747162,0.528913,0.540425,0.44609,0.107232,0.198978,0.875212,0.0727398,0.844544,0.67799,0.683266,0.0779607,0.810547,0.38585,0.991671,0.420448,0.585459,0.799088,0.975368,0.871143,0.18328,0.999703,0.554151,|0.541655,0.264843,0.872588,0.860936,0.0911981,0.861116,0.10105,0.211929,0.816561,0.776789,0.4702,0.192223,0.346638,0.842755,0.222629,0.279745,0.26039,0.832605,0.230568,0.757759,0.468569,0.079084,0.991583,0.520253,0.870458,0.917276,0.817944,0.416711,0.702607,0.46227,0.26541,0.628316,0.600262,0.257796,0.970287,0.684597,0.681177,0.817792,0.510784,0.154766,0.232536,0.00128186,0.181786,0.542114,0.771032,0.178488,0.084306,0.71551,0.180848,0.909396,0.173843,0.79026,0.984689,0.56161,0.95096,0.0315372,0.0832031,0.965241,0.723705,0.275716,0.722867,0.427384,0.225202,0.292197,0.0604575,0.789335,0.784282,0.567148,0.646644,0.0664561,0.936134,0.733141,0.305755,0.196045,0.140945,0.969698,0.743219,0.0381343,0.611616,0.780985,0.348606,0.259947,0.493225,0.784114,0.464555,0.872253,0.0951446,0.47672,0.596113,0.560807,0.0595549,0.0320328,0.98567,0.362477,0.0149543,0.123691,0.323327,0.341121,0.0937837,0.0200543,0.66053,0.710577,0.402653,0.669584,0.90471,0.711239,0.657013,0.942953,0.779916,0.276166,0.889309,0.578229,0.357136,0.394718,0.549124,0.123321,0.670674,0.883067,0.722366,0.690825,0.984898,0.0218849,0.327258,0.7372,0.223191,0.94661,0.793653,0.9184,0.558409,0.837019,0.159245,0.138862,0.777356,0.385589,0.732973,0.916479,0.251956,0.679356,0.0963843,0.744657,0.680729,0.902748,0.419027,0.648149,0.13047,0.725547,0.0813565,0.649888,0.901163,0.122288,0.807699,0.966384,0.978055,0.438003,0.347708,0.217685,0.466064,0.178409,0.823336,0.71623,0.522502,0.318946,0.0100245,0.737731,0.444793,0.637768,0.0416411,0.903239,0.000136375,0.842599,0.379158,0.0546405,0.931982,0.395482,0.814481,0.683648,0.583139,0.715042,0.715704,0.590424,0.248785,0.963977,0.927349,0.352002,0.172322,0.443095,0.400108,0.788571,0.073341,0.986819,0.435029,0.97136,0.451769,0.733283,0.337131,0.514496,0.354477,0.116872,0.612248,0.985544,0.374393,0.285307,0.832025,0.0887273,0.166057,0.352655,0.845775,0.624999,0.816674,0.527555,0.817272,0.258878,0.457179,0.38029,0.800501,0.909439,0.0623881,0.224295,0.9122,0.982642,0.660935,0.881321,0.791683,0.739669,0.867063,0.229893,0.303458,0.545086,0.568598,0.860288,0.54208,0.945949,0.512418,0.280996,0.535411,0.19477,0.589617,0.830141,0.0702696,0.958974,0.571321,0.763948,0.822316,0.320012,0.0958686,0.495247,0.845429,0.239118,0.175831,0.554716,0.0893058,0.181262,0.718802,0.339566,0.640278,0.202971,0.490702,0.977369,0.362505,0.527817,0.151155,0.0799886,0.184292,0.488561,0.350117,0.32685,0.355541,0.206831,0.419364,0.595996,0.356336,0.188135,0.503374,0.909734,0.29962,0.920736,0.213618,0.143777,0.958941,0.167557,0.501936,0.726837,0.368192,0.15252,0.483991,0.683827,0.404205,0.94643,0.381281,0.0697823,0.612014,0.894196,0.978874,0.471984,0.287293,0.532923,0.454067,0.75885,0.208369,0.179187,0.637622,0.776991,0.121101,0.318621,0.626385,0.629306,0.764423,0.916608,0.119239,0.373209,0.505496,0.173596,0.439804,0.444643,0.417531,0.567789,0.665263,0.980356,0.31873,0.704514,0.656182,0.478344,0.248469,0.766328,0.3212,0.686156,0.52634,0.266602,0.410248,0.651239,0.845442,0.582031,0.157706,0.175738,0.195222,0.685312,0.827461,0.106836,0.439661,0.942407,0.423073,0.944194,0.672289,0.214267,0.8249,0.390766,0.735663,0.0835949,0.831485,0.966573,0.50661,0.758252,0.474741,0.0627484,0.833858,0.301943,0.332226,0.519813,0.444053,0.056067,0.516661,0.560887,0.644938,0.483117,0.955069,0.442027,0.584426,0.360729,0.46864,0.811116,0.73694,0.623167,0.211357,0.917797,0.198242,0.657418,0.839825,0.75966,0.10548,0.727967,0.955202,0.940598,0.372893,0.259282,0.0731502,0.102122,0.951401,0.552783,0.260713,0.601309,0.197776,0.346032,0.0987441,0.156884,0.600451,0.462638,0.869929,0.131706,0.544073,0.219991,0.0453331,0.221571,0.662963,0.615129,0.905748,0.934526,0.846977,0.2811,0.0968549,0.596826,0.0791864,0.73267,0.831032,0.739299,0.525542,0.229799,0.482759,0.093389,0.70705,0.0496553,0.64504,0.542653,0.39662,0.166897,0.693826,0.0855545,0.0210607,0.920561,0.202788,0.332547,0.0695132,0.213715,0.588804,0.0185954,0.0482938,0.0826709,0.858839,0.143913,0.948475,0.137149,0.535867,0.411799,0.797631,0.130101,0.112958,0.0799714,0.947014,0.276478,0.871114,0.919433,0.694411,0.0439546,0.274791,0.0387557,0.211113,0.0848191,0.819583,0.00724053,0.148074,0.291267,0.275512,0.0220711,0.957344,0.416209,0.246243,0.0692225,0.665213,0.529144,0.506801,0.389557,0.765968,0.365839,0.366717,0.548755,0.04444,0.12072,0.326381,0.743795,0.804655,0.455862,0.363448,0.62922,0.216278,0.0970629,0.614131,0.841995,0.853323,0.271293,0.594319,0.0404473,0.431822,0.927911,0.285337,0.43954,0.750662,0.268755,0.192982,0.897603,0.116203,0.134352,0.556002,0.598315,0.14661,0.263569,0.821096,0.0714156,0.524549,0.653357,0.00246882,0.611766,0.873028,0.726382,0.314952,0.463094,0.42733,0.461478,0.430863,0.141908,0.29155,0.834744,0.612696,0.0356233,0.819384,0.504726,0.988615,0.230608,0.283259,0.196193,0.748924,0.407022,0.674372,0.987777,0.338937,0.746562,0.391878,0.191379,0.14885,0.321645,0.409212,0.272467,0.528704,0.559446,0.274673,0.0736086,0.861921,0.212726,0.368224,0.16884,0.786194,0.164343,0.127336,0.634414,0.0453982,0.0515352,0.484376,0.125548,0.67942,0.252129,0.832259,0.547136,0.921746,0.707692,0.700713,0.941479,0.63644,0.764125,0.320852,0.324014,0.0791722,0.889098,0.743371,0.111133,0.854634,0.861989,0.380469,0.277449,0.287472,0.394776,0.950258,0.829711,0.963105,0.0483965,0.140982,0.0129639,0.610857,0.475547,0.186044,0.911759,0.228306,0.51235,0.696346,0.259132,0.69091,0.472701,0.229096,0.847298,0.132869,0.288223,0.663522,0.920449,0.076317,0.753131,0.399136,0.750723,0.236693,0.254521,0.516762,0.285539,0.90738,0.524633,0.152608,0.660797,0.00841796,0.803601,0.208413,0.0401559,0.158403,0.895156,0.529581,0.713831,0.470737,0.5214,0.0777236,0.32412,0.496925,0.385234,0.408853,0.46639,0.349062,0.51761,0.759418,0.625651,0.884093,0.0301127,0.0338036,0.417712,0.342565,0.333456,0.762486,0.76246,0.748512,0.519758,0.767835,0.958576,0.0616847,0.922156,0.0428824,0.131972,0.44843,0.907027,0.130979,0.103157,0.461675,0.605821,0.666905,0.870235,0.446324,0.527969,0.0595115,0.457696,0.89871,0.185531,0.48831,0.944714,0.413237,0.572337,0.622667,0.399394,0.503653,0.855006,0.117805,0.970077,0.508965,0.813297,0.921129,0.545904,0.776524,0.0479699,0.573368,0.712598,0.622682,0.283091,0.950903,0.0233744,0.303284,0.116168,0.52654,0.587255,0.085352,0.260259,0.418666,0.708857,0.734241,0.791841,0.0222643,0.518513,0.127875,0.986963,0.257537,0.678464,0.255809,0.766397,0.983595,0.422103,0.237908,0.34219,0.175555,0.0843775,0.623873,0.547054,0.809356,0.667249,0.215032,0.129997,0.633314,0.313557,0.504769,0.366569,0.741388,0.878268,0.803656,0.289246,0.501913,0.471367,0.373332,0.982566,0.351286,0.284515,0.912735,0.843576,0.72552,0.807826,0.760434,0.702381,0.0995084,0.127755,0.686091,0.923838,0.839076,0.51232,0.347973,0.441182,0.594901,0.148518,0.703832,0.12466,0.353407,0.820714,0.049626,0.248698,0.322544,0.662966,0.660247,0.104029,0.612862,0.523497,0.385633,0.148531,0.385474,0.766694,0.0821609,0.0195324,0.292027,0.796089,0.416547,0.781123,0.853057,0.915375,0.458901,0.466591,0.509177,0.390757,0.330073,0.569442,0.974587,0.769475,0.812307,0.690299,0.401683,0.83417,0.990442,0.296836,0.384636,0.0226158,0.525235,0.171623,0.743151,0.216211,0.63546,0.235731,0.149307,0.202076,0.269141,0.0376304,0.450741,0.00674796,0.88817,0.55305,0.0465539,0.694717,0.536428,0.588133,0.872404,0.823185,0.450729,0.896107,0.81894,0.403925,0.611197,0.851335,0.924429,0.844307,0.453788,0.379543,0.570687,0.855904,0.644196,0.447635,0.77059,0.208644,0.0477005,0.879829,0.41205,0.555326,0.0983796,0.647887,0.792344,0.0071069,0.463748,0.716483,0.975835,0.597688,0.98659,0.811184,0.843517,0.0525202,0.121461,0.783868,0.27903,0.35001,0.159854,0.403502,0.27031,0.755803,0.202843,0.419521,0.0334421,0.165723,0.0905642,0.564937,0.377736,0.93263,0.597984,0.0788137,0.137302,0.092327,0.420674,0.867425,0.545994,0.342766,0.00119489,0.282942,0.289205,0.540024,0.128569,0.163655,0.224005,0.842917,0.283845,0.0975558,0.91072,0.515919,0.822208,0.419628,0.880681,0.61682,0.571401,0.323011,0.337509,0.136903,0.0310283,0.237226,0.629679,0.663188,0.272045,0.206184,0.545492,0.0521162,0.850732,0.078595,0.760576,0.772126,0.710587,0.145312,0.473948,0.689775,0.0568096,0.835826,0.186567,0.978347,0.6285,0.787158,0.959717,0.00513923,0.625557,0.709883,0.00460809,0.802568,0.961818,0.285601,0.891493,0.056918,0.979915,0.0198712,0.82965,0.261812,0.126005,0.419041,0.183931,0.36097,0.519031,0.549163,0.73716,0.174499,0.596784,0.15884,0.783014,0.426955,0.407155,0.455556,0.261675,0.743043,0.355888,0.377376,0.706273,0.0609449,0.43261,0.176749,0.05946,0.2365,0.16318,0.125747,0.342505,0.477125,0.95626,0.157534,0.693621,0.682528,0.99493,0.337191,0.24713,0.65011,0.657283,0.871318,0.978228,0.363989,0.725105,0.806767,0.496446,0.584946,0.843657,0.451638,0.289088,0.338521,0.191187,0.126044,0.789683,0.946469,0.279112,0.974616,0.453232,0.102258,0.843409,0.180028,0.419218,0.58973,0.586403,0.18864,0.0784778,0.422209,0.595415,0.226458,0.833396,0.339377,0.989212,0.308532,0.824798,0.0973506,0.560152,0.986908,0.310018,0.632734,0.599707,0.238944,0.471432,0.313297,0.706066,0.367737,0.0229747,0.540317,|0.968942,0.000825882,0.653665,0.816421,0.756127,0.920171,0.605393,0.229725,0.590597,0.172912,0.610454,0.510486,0.981031,0.765555,0.831272,0.371867,0.833818,0.116509,0.844158,0.173961,0.382563,0.0890876,0.616932,0.515501,0.890181,0.949978,0.971293,0.480403,0.540371,0.988568,0.136179,0.165458,0.749179,0.433296,0.0795018,0.467735,0.878227,0.669098,0.472019,0.0249288,0.264849,0.615388,0.818631,0.656761,0.407438,0.569389,0.0783298,0.30365,0.280925,0.285399,0.248027,0.384465,0.337893,0.361189,0.951477,0.384572,0.149771,0.179698,0.379451,0.801726,0.598746,0.110793,0.667822,0.745683,0.160509,0.0482619,0.0235725,0.102411,0.524633,0.414572,0.744387,0.0299901,0.126122,0.536401,0.689064,0.852425,0.0502567,0.961289,0.574663,0.154634,0.872854,0.511295,0.560609,0.329559,0.939168,0.524361,0.808378,0.348617,0.534367,0.584157,0.180004,0.274592,0.574064,0.412944,0.00459707,0.85362,0.597429,0.885863,0.283986,0.653002,0.239323,0.0475458,0.875408,0.764983,0.828065,0.385298,0.125433,0.416861,0.607599,0.47449,0.714034,0.834207,0.00472277,0.382927,0.922869,0.266279,0.805859,0.244068,0.0261434,0.260852,0.0263772,0.827627,0.559466,0.556248,0.7951,0.929549,0.95482,0.207713,0.364842,0.250187,0.0649737,0.956576,0.419957,0.222537,0.188852,0.608131,0.0758603,0.565835,0.735587,0.734653,0.541551,0.177257,0.173961,0.723674,0.789608,0.97783,0.896308,0.20076,0.595057,0.846949,0.0757993,0.494603,0.633672,0.289693,0.943496,0.995103,0.168633,0.604192,0.920203,0.664592,0.681993,0.917739,0.85665,0.205248,0.892781,0.907668,0.314802,0.989979,0.485255,0.319829,0.434898,0.667793,0.0165985,0.18371,0.118051,0.821138,0.790861,0.425165,0.516717,0.0195863,0.728739,0.791037,0.6024,0.0281046,0.993507,0.134915,0.0380905,0.427844,0.362738,0.917555,0.985214,0.764632,0.811047,0.0482783,0.274146,0.411688,0.0543542,0.662375,0.577032,0.966805,0.763148,0.934082,0.0746229,0.294202,0.33015,0.921119,0.303161,0.512394,0.145014,0.366038,0.68028,0.336133,0.000745773,0.762672,0.915493,0.368415,0.576509,0.745794,0.747585,0.506321,0.166184,0.716605,0.283371,0.421882,0.571757,0.141912,0.674531,0.949583,0.611033,0.142152,0.921246,0.778135,0.804602,0.662944,0.124364,0.1708,0.0158387,0.485967,0.119776,0.892795,0.269118,0.529273,0.337087,0.430937,0.713279,0.814338,0.803648,0.0348729,0.272916,0.347715,0.669814,0.154195,0.268551,0.333819,0.263568,0.611608,0.224102,0.308646,0.644925,0.372966,0.639614,0.836228,0.00963151,0.600546,0.453551,0.903809,0.981122,0.951994,0.0728136,0.234473,0.645728,0.00458038,0.898257,0.927174,0.455997,0.43669,0.096914,0.452313,0.590907,0.882997,0.533809,0.563212,0.871313,0.454669,0.44852,0.0486165,0.519378,0.283726,0.227374,0.89752,0.618383,0.279478,0.304903,0.960392,0.586774,0.194794,0.281687,0.803939,0.495092,0.229666,0.0942613,0.363554,0.860825,0.40654,0.284096,0.71206,0.880568,0.238293,0.01217,0.220442,0.255212,0.842972,0.542574,0.170596,0.148258,0.669014,0.066793,0.409022,0.361134,0.588621,0.41111,0.0887005,0.224203,0.926274,0.964441,0.593939,0.804056,0.690557,0.663268,0.803331,0.476796,0.689121,0.546969,0.395225,0.796436,0.559745,0.679419,0.358693,0.992638,0.163902,0.188342,0.700551,0.352876,0.938246,0.183361,0.905487,0.846288,0.907712,0.745381,0.727813,0.848602,0.603082,0.264648,0.156232,0.180681,0.0788817,0.912923,0.395237,0.548483,0.0561115,0.928612,0.525028,0.760884,0.915157,0.975452,0.991399,0.582749,0.457239,0.90379,0.91019,0.45273,0.0679373,0.122674,0.0448575,0.387531,0.517256,0.397272,0.862107,0.599516,0.744619,0.0602427,0.537379,0.646034,0.766145,0.274075,0.419351,0.0662526,0.398248,0.431336,0.605347,0.363018,0.890963,0.421172,0.34722,0.403855,0.497216,0.69169,0.186229,0.017685,0.36127,0.221409,0.546067,0.578834,0.408805,0.581417,0.771051,0.921532,0.491852,0.578598,0.547162,0.381934,0.0930719,0.306119,0.382974,0.583524,0.0345193,0.279594,0.0621995,0.886591,0.944628,0.158677,0.820817,0.948897,0.109317,0.428687,0.522206,0.34894,0.996859,0.595037,0.855813,0.267871,0.403441,0.319879,0.230546,0.363776,0.483205,0.55243,0.160684,0.819046,0.361654,0.979283,0.65587,0.410693,0.990928,0.881522,0.32979,0.283866,0.116359,0.058023,0.015354,0.141911,0.410463,0.519594,0.403563,0.972396,0.967367,0.265289,0.0824485,0.0793195,0.289279,0.0122032,0.208696,0.165771,0.344084,0.795619,0.123682,0.984148,0.756262,0.404161,0.435965,0.865756,0.294972,0.762899,0.916166,0.436705,0.75528,0.0265741,0.221981,0.561399,0.0505783,0.759018,0.475013,0.436583,0.191332,0.369692,0.40053,0.0432046,0.482367,0.00800264,0.842707,0.956188,0.525508,0.46612,0.657171,0.428788,0.0538323,0.792554,0.287815,0.85952,0.5832,0.761564,0.0348215,0.276151,0.267888,0.0678322,0.0905322,0.706656,0.349329,0.600181,0.934276,0.727414,0.329794,0.181462,0.083761,0.16981,0.78417,0.400829,0.0765138,0.515305,0.710878,0.803104,0.65202,0.144441,0.852765,0.646313,0.171525,0.979511,0.322907,0.874276,0.991572,0.565665,0.279218,0.13042,0.99645,0.975139,0.996888,0.459287,0.00600088,0.0191388,0.417584,0.983748,0.585754,0.0084908,0.297712,0.929321,0.841538,0.929986,0.0630541,0.392289,0.202866,0.71886,0.324738,0.235665,0.136403,0.782966,0.931754,0.964729,0.907507,0.426343,0.326644,0.316086,0.724431,0.376348,0.0183628,0.10008,0.514054,0.63783,0.515921,0.72173,0.330016,0.0197768,0.809263,0.239337,0.87243,0.466006,0.497112,0.228858,0.217005,0.829642,0.0827253,0.11642,0.891934,0.00631511,0.583821,0.768528,0.48011,0.46832,0.719316,0.548321,0.792985,0.521502,0.774785,0.27557,0.587814,0.576095,0.815121,0.00734162,0.853275,0.0888126,0.522176,0.613551,0.529204,0.235328,0.505437,0.521104,0.446368,0.86198,0.257743,0.0293661,0.373073,0.285157,0.978171,0.76985,0.653777,0.435969,0.936313,0.245643,0.540743,0.793031,0.784945,0.266575,0.166351,0.574162,0.32661,0.679838,0.68979,0.0263469,0.576959,0.61998,0.703739,0.121513,0.624205,0.56057,0.176249,0.388336,0.356757,0.167475,0.0568717,0.18156,0.726971,0.387992,0.86485,0.598498,0.344834,0.883348,0.801676,0.549752,0.23876,0.763635,0.372756,0.187101,0.174335,0.0713558,0.235659,0.284044,0.654069,0.467724,0.707061,0.760274,0.622603,0.345769,0.803014,0.351508,0.554183,0.664546,0.911286,0.244718,0.661113,0.0942624,0.543855,0.853011,0.293966,0.00992769,0.328973,0.450691,0.571868,0.927971,0.731719,0.60168,0.117498,0.920419,0.476632,0.707705,0.874804,0.797827,0.813963,0.927869,0.755462,0.0699793,0.126342,0.542212,0.730342,0.183948,0.564114,0.38437,0.497814,0.810022,0.657674,0.513793,0.401374,0.145886,0.70616,0.140785,0.251601,0.840437,0.157925,0.312191,0.693207,0.344083,0.47815,0.461511,0.0205781,0.465017,0.148647,0.70539,0.20818,0.612413,0.98606,0.141034,0.544969,0.304404,0.138555,0.398515,0.762822,0.235756,0.249069,0.163897,0.921255,0.595127,0.668094,0.697043,0.256707,0.698036,0.012277,0.693923,0.327712,0.703778,0.179394,0.170153,0.0811495,0.434656,0.902626,0.862443,0.410201,0.168487,0.831897,0.783365,0.549159,0.827149,0.287886,0.0176985,0.67741,0.177812,0.000349939,0.377521,0.549777,0.673168,0.609255,0.819076,0.720707,0.458782,0.254259,0.468981,0.298109,0.635155,0.374627,0.105006,0.419108,0.501468,0.976237,0.791241,0.0691234,0.938245,0.439621,0.686599,0.487107,0.654982,0.833832,0.404382,0.844242,0.904319,0.757301,0.294863,0.706759,0.457361,0.301386,0.223056,0.33524,0.396972,0.493648,0.713859,0.627474,0.430108,0.260527,0.014811,0.561508,0.372774,0.913841,0.332227,0.296738,0.766378,0.834125,0.625738,0.778096,0.725587,0.36785,0.344663,0.97747,0.136854,0.00884414,0.275637,0.746789,0.716641,0.0716356,0.545171,0.754546,0.506247,0.612035,0.0851243,0.065053,0.396525,0.899832,0.0127829,0.0782949,0.0186992,0.0325829,0.0844761,0.392884,0.956105,0.426777,0.831245,0.396443,0.0711926,0.352806,0.294109,0.950562,0.0530217,0.0269573,0.789212,0.717968,0.446734,0.145849,0.814176,0.16421,0.541032,0.0891319,0.270333,0.409293,0.39996,0.250725,0.705579,0.0542809,0.396888,0.494468,0.754927,0.83282,0.544341,0.830781,0.984378,0.291084,0.113247,0.0950426,0.19496,0.813187,0.988648,0.831984,0.915338,0.47267,0.941788,0.446723,0.947309,0.156858,0.546107,0.587856,0.681813,0.482836,0.993359,0.477645,0.964786,0.154143,0.640889,0.222327,0.882838,0.181503,0.49014,0.188384,0.435828,0.707834,0.830497,0.204138,0.0372613,0.0548867,0.398866,0.919726,0.66063,0.588648,0.22541,0.572868,0.0233213,0.562217,0.0165101,0.377854,0.517356,0.681917,0.173276,0.626308,0.953661,0.246135,0.487107,0.462549,0.737364,0.0565612,0.415232,0.0970809,0.463168,0.319019,0.310918,0.257303,0.140833,0.894436,0.323398,0.636354,0.486747,0.509859,0.860036,0.958907,0.940386,0.110178,0.755875,0.150737,0.0434683,0.0880781,0.776764,0.769723,0.265111,0.211091,0.487626,0.903813,0.245241,0.54975,0.118942,0.214668,0.784285,0.19676,0.0894291,0.0785069,0.489878,0.416045,0.692861,0.00618732,0.0644264,0.333438,0.520842,0.879633,0.915713,0.831675,0.476671,0.516289,0.985477,0.981664,0.107068,0.808884,0.162618,0.277395,0.976801,0.490106,0.295998,0.132784,0.306413,0.921471,0.0373486,0.514282,0.242261,0.922359,0.553651,0.0106044,0.784488,0.636935,0.756136,0.719446,0.206708,0.570076,0.590581,0.283869,0.694267,0.588135,0.903157,0.151374,0.524331,0.42962,0.154681,0.0782804,0.626603,0.842582,0.569173,0.051928,0.966025,0.0143054,0.825487,0.528252,|0.951226,0.593339,0.714549,0.973487,0.200669,0.854499,0.335216,0.66189,0.343485,0.383949,0.607153,0.64843,0.430186,0.862911,0.886942,0.0243235,0.0814227,0.471169,0.166983,0.344703,0.540753,0.112384,0.815615,0.0700836,0.158178,0.681485,0.615835,0.190615,0.0585055,0.34071,0.256122,0.934141,0.449346,0.620076,0.231621,0.500511,0.562045,0.313925,0.386554,0.246499,0.690866,0.957549,0.223511,0.642672,0.938673,0.334406,0.889841,0.632055,0.0611952,0.0571692,0.162093,0.219317,0.396646,0.313389,0.820636,0.732618,0.299986,0.956834,0.792181,0.759534,0.0473974,0.107356,0.320115,0.465289,0.263493,0.84565,0.989563,0.263145,0.957814,0.718636,0.813528,0.15242,0.469148,0.441514,0.0724031,0.71657,0.778985,0.28942,0.547369,0.698536,0.579166,0.372127,0.542628,0.294347,0.729551,0.16928,0.606672,0.268826,0.815897,0.28738,0.618324,0.110911,0.573451,0.66257,0.433061,0.562837,0.88672,0.999471,0.202383,0.400713,0.776416,0.703086,0.41519,0.695386,0.838491,0.453026,0.0441918,0.213972,0.404217,0.481164,0.0132581,0.181269,0.308704,0.632891,0.545553,0.839502,0.322073,0.582004,0.71805,0.32281,0.137401,0.640369,0.974454,0.240154,0.179003,0.791273,0.557251,0.054302,0.668227,0.300001,0.586072,0.732625,0.852856,0.877826,0.863499,0.0314164,0.247862,0.428551,0.60832,0.900725,0.89511,0.12384,0.767835,0.427093,0.0180896,0.666453,0.223279,0.625145,0.772305,0.858699,0.93116,0.0277982,0.963499,0.105866,0.277891,0.170298,0.964479,0.783525,0.304108,0.421647,0.270452,0.194504,0.164149,0.724373,0.810746,0.954498,0.508063,0.203045,0.81569,0.148654,0.809351,0.599844,0.562708,0.14249,0.5165,0.417915,0.322428,0.432508,0.489854,0.484185,0.210168,0.742617,0.689914,0.600618,0.355328,0.452121,0.690641,0.250185,0.82459,0.2586,0.171916,0.0195007,0.155879,0.336601,0.549404,0.196548,0.513919,0.725359,0.733272,0.468601,0.18079,0.268817,0.12278,0.533348,0.296111,0.0934851,0.465006,0.442674,0.219636,0.554137,0.41585,0.437734,0.176944,0.0523098,0.836932,0.29899,0.397047,0.295398,0.832045,0.617658,0.673984,0.19442,0.336277,0.115583,0.246357,0.169679,0.418757,0.229936,0.597241,0.92291,0.0177352,0.421238,0.338371,0.939449,0.306561,0.425475,0.360358,0.992245,0.503388,0.0433722,0.890014,0.522354,0.318655,0.405632,0.5813,0.365282,0.822271,0.373923,0.21995,0.920232,0.43316,0.425421,0.773514,0.280757,0.984023,0.15522,0.573547,0.993504,0.242353,0.421087,0.712543,0.287171,0.233967,0.28862,0.910327,0.0557913,0.914914,0.839305,0.0809638,0.697781,0.535382,0.59506,0.0214151,0.719133,0.222326,0.4886,0.732908,0.745962,0.124932,0.792811,0.756658,0.578373,0.581913,0.187847,0.081974,0.523449,0.272161,0.129858,0.327278,0.892755,0.0770553,0.230739,0.78746,0.383213,0.573077,0.487015,0.0182202,0.509489,0.612215,0.477995,0.83979,0.554903,0.508292,0.641369,0.0931271,0.0574994,0.434519,0.175472,0.345493,0.940857,0.993774,0.413851,0.484431,0.766254,0.363401,0.870135,0.00487131,0.105388,0.587686,0.79247,0.0954908,0.969009,0.865912,0.017132,0.473834,0.227227,0.3304,0.899219,0.164418,0.134952,0.120693,0.648032,0.183705,0.297989,0.440719,0.113779,0.96779,0.532819,0.2591,0.962437,0.182002,0.463942,0.352884,0.159778,0.473761,0.239683,0.680856,0.103036,0.775957,0.88915,0.020366,0.422269,0.729864,0.676798,0.712507,0.340778,0.792632,0.197696,0.542253,0.455115,0.844474,0.000735581,0.361811,0.686841,0.432318,0.456271,0.786278,0.849139,0.436702,0.0369287,0.121584,0.578586,0.174751,0.92902,0.0123146,0.812065,0.905377,0.948909,0.413714,0.75391,0.356244,0.309021,0.345843,0.614694,0.800902,0.212716,0.686407,0.345318,0.101858,0.212974,0.729792,0.795278,0.477074,0.912347,0.97616,0.171521,0.471514,0.793171,0.17269,0.256237,0.088869,0.155075,0.864913,0.95464,0.340317,0.943521,0.652606,0.5704,0.435278,0.312577,0.362713,0.794396,0.985673,0.489976,0.491782,0.684813,0.29674,0.882812,0.165845,0.77988,0.352033,0.884317,0.247865,0.345851,0.0632357,0.147554,0.0260983,0.310348,0.906067,0.0484902,0.721003,0.568894,0.828499,0.63776,0.896971,0.504959,0.751114,0.827292,0.911141,0.496319,0.578126,0.674764,0.762475,0.412037,0.182626,0.666866,0.897186,0.848013,0.935137,0.843661,0.285645,0.0973757,0.491235,0.149488,0.91986,0.332287,0.357393,0.868701,0.770667,0.650494,0.146706,0.642176,0.800853,0.874918,0.0878334,0.879659,0.563863,0.811378,0.846671,0.244662,0.533577,0.642587,0.0805314,0.615276,0.501106,0.628927,0.724254,0.0735134,0.518657,0.0374048,0.600814,0.187474,0.880844,0.150535,0.257234,0.714772,0.241323,0.925683,0.795029,0.377167,0.202019,0.74141,0.231499,0.0413252,0.824396,0.487513,0.496577,0.209533,0.585761,0.349504,0.444722,0.85839,0.422594,0.82911,0.654574,0.123672,0.900051,0.332862,0.878291,0.981465,0.543778,0.603879,0.847928,0.62278,0.348716,0.678965,0.0825475,0.541777,0.20965,0.604353,0.382526,0.901441,0.476918,0.027443,0.18095,0.510059,0.751059,0.0916477,0.815852,0.600639,0.0336351,0.221797,0.705772,0.238475,0.963479,0.17932,0.765518,0.98293,0.109443,0.937842,0.979062,0.422554,0.300193,0.414564,0.790905,0.644089,0.715988,0.718188,0.628315,0.343239,0.0687722,0.675142,0.13979,0.788422,0.0945851,0.108024,0.864019,0.944699,0.656719,0.52685,0.563541,0.544431,0.0126152,0.524959,0.510876,0.298579,0.245752,0.851244,0.852787,0.633631,0.788752,0.382051,0.642745,0.960555,0.163249,0.404681,0.652414,0.155801,0.180079,0.941373,0.644119,0.186947,0.532619,0.712389,0.0783283,0.26765,0.899838,0.404847,0.869571,0.239583,0.770358,0.758789,0.79442,0.25196,0.265061,0.684756,0.292099,0.687634,0.236565,0.0453657,0.508146,0.744865,0.127605,0.553424,0.76158,0.689244,0.025965,0.787852,0.389058,0.448126,0.588937,0.640597,0.400141,0.478035,0.120664,0.753219,0.872184,0.101594,0.947354,0.0440865,0.805819,0.599846,0.673648,0.192191,0.699222,0.964169,0.0398074,0.40516,0.376653,0.965716,0.450475,0.659419,0.614604,0.381235,0.0220886,0.188868,0.424048,0.013987,0.195494,0.998552,0.368266,0.585041,0.167493,0.92259,0.943426,0.313077,0.155401,0.201205,0.890355,0.308171,0.337856,0.661843,0.87616,0.455724,0.401722,0.596471,0.429122,0.730586,0.0479004,0.045995,0.108016,0.918703,0.14929,0.187434,0.957676,0.532496,0.365981,0.611808,0.75821,0.890133,0.978976,0.980602,0.0384343,0.214396,0.420654,0.290987,0.952796,0.907796,0.522633,0.836765,0.989846,0.936258,0.0658746,0.782382,0.202711,0.872257,0.218389,0.869551,0.329971,0.179185,0.380966,0.296289,0.593804,0.493803,0.288153,0.644235,0.160405,0.903266,0.673241,0.823926,0.335333,0.62576,0.657713,0.380196,0.586405,0.210741,0.507821,0.763228,0.901433,0.354603,0.180993,0.574577,0.62307,0.00912297,0.0337602,0.988803,0.738879,0.577082,0.339128,0.614489,0.548289,0.31055,0.982486,0.821219,0.95447,0.112284,0.160876,0.915103,0.858661,0.944452,0.412009,0.19391,0.0775499,0.484854,0.149731,0.980235,0.311336,0.74245,0.902523,0.0559849,0.131626,0.901749,0.593794,0.510989,0.27207,0.279711,0.0301661,0.26786,0.726951,0.825545,0.420306,0.108991,0.49221,0.699361,0.7879,0.31554,0.635254,0.391196,0.420093,0.373498,0.244962,0.480607,0.427268,0.529048,0.787235,0.450606,0.297732,0.670439,0.934564,0.713638,0.916398,0.0135573,0.434063,0.654447,0.681685,0.298433,0.769322,0.440752,0.16116,0.913924,0.952703,0.604465,0.0329548,0.610619,0.406045,0.975859,0.57988,0.03362,0.632838,0.830291,0.823801,0.983259,0.0327942,0.227476,0.339667,0.654974,0.365673,0.412883,0.450369,0.501932,0.952441,0.297192,0.123114,0.591216,0.352502,0.049284,0.844907,0.921314,0.446506,0.372651,0.833186,0.589345,0.437841,0.75779,0.560233,0.0978855,0.541244,0.945747,0.135893,0.0304379,0.632574,0.565119,0.841111,0.494204,0.64454,0.296016,0.512551,0.91328,0.541686,0.223607,0.435507,0.869976,0.0115798,0.0820272,0.224669,0.00528592,0.684806,0.123968,0.0855745,0.348363,0.585069,0.378492,0.892464,0.884436,0.474756,0.361499,0.747557,0.887502,0.138201,0.676749,0.397334,0.485376,0.979383,0.834772,0.744776,0.300541,0.756031,0.152031,0.782102,0.409404,0.331545,0.714992,0.438331,0.279693,0.341622,0.284274,0.518627,0.908797,0.176782,0.99967,0.0299693,0.957663,0.717521,0.920017,0.139641,0.0510367,0.672578,0.658257,0.944169,0.892739,0.045171,0.337259,0.663663,0.0639101,0.554698,0.341088,0.3168,0.783602,0.996973,0.135049,0.755891,0.637479,0.0830292,0.310345,0.390705,0.226844,0.349625,0.125543,0.627701,0.217837,0.2142,0.537045,0.464805,0.771954,0.46715,0.507599,0.820085,0.63324,0.543462,0.876906,0.911997,0.206357,0.595211,0.33045,0.541227,0.451117,0.231856,0.728137,0.346389,0.803512,0.971012,0.934629,0.275499,0.715391,0.454893,0.0874811,0.068829,0.270449,0.391465,0.104761,0.919244,0.865752,0.123085,0.991736,0.0977805,0.364819,0.767388,0.0322919,0.159175,0.895987,0.257001,0.961293,0.751182,0.467935,0.122827,0.982139,0.571859,0.146974,0.493914,0.321818,0.625151,0.848128,0.552058,0.805776,0.132193,0.637881,0.152431,0.534363,0.434576,0.462188,0.795414,0.85309,0.838918,0.854279,0.860657,0.180579,0.605196,0.238813,0.593886,0.107735,0.810525,0.948342,0.606173,0.43856,0.535932,0.70154,0.287554,0.650889,0.799424,0.12094,0.512927,0.736176,0.192777,0.39113,0.873124,0.989192,0.879159,0.65487,0.449717,0.299351,0.423288,0.382951,0.687419,0.71355,0.382393,0.75157,0.355459,0.350776,0.0551822,0.275005,|0.561508,0.740233,0.180219,0.535377,0.431707,0.829408,0.791946,0.58621,0.335871,0.817871,0.695544,0.882566,0.740337,0.321133,0.495389,0.750483,0.950699,0.644213,0.32659,0.180862,0.877171,0.730408,0.0855302,0.794063,0.261675,0.874337,0.857844,0.634117,0.176468,0.381947,0.963505,0.179653,0.585365,0.87755,0.791728,0.605427,0.810511,0.232284,0.496363,0.736663,0.608714,0.582018,0.0661747,0.536778,0.147462,0.227188,0.0384592,0.18544,0.328211,0.467117,0.170247,0.583701,0.48311,0.121608,0.573519,0.709676,0.609806,0.630654,0.302784,0.716934,0.66204,0.135333,0.242103,0.879855,0.377051,0.948489,0.482808,0.23004,0.905513,0.782645,0.578994,0.334377,0.642847,0.499609,0.529222,0.189828,0.926205,0.823638,0.134106,0.35889,0.135445,0.890146,0.448139,0.920273,0.591121,0.997324,0.388259,0.529364,0.163134,0.501835,0.757525,0.773119,0.243557,0.406857,0.060086,0.742523,0.738435,0.13631,0.225763,0.23963,0.43313,0.11182,0.198069,0.773704,0.696342,0.0494408,0.976004,0.787029,0.128426,0.0228602,0.0840823,0.960137,0.397181,0.458422,0.972346,0.560909,0.112316,0.188943,0.824519,0.432683,0.64609,0.659465,0.374791,0.641799,0.921571,0.779621,0.87261,0.972662,0.21395,0.103001,0.212381,0.0981889,0.949854,0.860473,0.378533,0.557058,0.701037,0.236893,0.86213,0.278855,0.678649,0.958211,0.820937,0.717165,0.446724,0.379942,0.634713,0.526034,0.0925256,0.536016,0.0998419,0.807154,0.037401,0.918515,0.657014,0.70836,0.976534,0.860767,0.618985,0.238223,0.406046,0.684928,0.710306,0.212084,0.0124196,0.880988,0.202079,0.478495,0.575067,0.0782583,0.09641,0.386469,0.899988,0.857146,0.859997,0.97737,0.568099,0.590722,0.510213,0.928337,0.635478,0.93603,0.834355,0.105832,0.864572,0.000582635,0.308103,0.0710009,0.456623,0.0783952,0.674351,0.945409,0.622945,0.901376,0.404488,0.829443,0.949563,0.623074,0.229542,0.594705,0.115114,0.918666,0.275762,0.127719,0.601013,0.741888,0.379986,0.075443,0.687982,0.850996,0.582686,0.307284,0.652826,0.70574,0.533179,0.842488,0.6415,0.521203,0.476348,0.971285,0.918653,0.88988,0.339565,0.867531,0.56965,0.47936,0.185517,0.344696,0.515143,0.00901514,0.207415,0.626633,0.43114,0.238629,0.0658922,0.286377,0.0536708,0.125827,0.912899,0.690499,0.506595,0.536516,0.0827175,0.629772,0.993616,0.461937,0.420964,0.229876,0.383665,0.51505,0.965169,0.382091,0.250925,0.77287,0.796446,0.580611,0.266761,0.650038,0.838404,0.0490851,0.837707,0.173485,0.169597,0.894619,0.0947928,0.97345,0.309561,0.116342,0.988653,0.333219,0.0672476,0.454753,0.358108,0.646241,0.635619,0.041612,0.782242,0.0718502,0.944304,0.775024,0.954491,0.246203,0.905173,0.0458998,0.0350589,0.446162,0.214681,0.908164,0.0965991,0.9207,0.601334,0.691999,0.684775,0.196553,0.414489,0.680409,0.905726,0.137276,0.897561,0.613018,0.495454,0.224805,0.570687,0.238137,0.74699,0.0231315,0.526165,0.85377,0.994358,0.409118,0.772177,0.38596,0.85502,0.381617,0.656372,0.982869,0.872874,0.212968,0.707179,0.289518,0.582924,0.12493,0.197383,0.717622,0.954661,0.116624,0.278035,0.549229,0.233649,0.896993,0.182356,0.739701,0.479017,0.314896,0.994923,0.230743,0.695299,0.370741,0.502615,0.858118,0.265183,0.313612,0.191481,0.225456,0.0399259,0.0145177,0.481036,0.52286,0.612625,0.0404807,0.254846,0.194358,0.0372525,0.575864,0.730814,0.833145,0.544734,0.0970938,0.889095,0.542875,0.447296,0.368666,0.0455506,0.731245,0.70467,0.469886,0.172355,0.633167,0.387214,0.978409,0.224738,0.131102,0.939139,0.745063,0.363553,0.350765,0.30174,0.908919,0.495808,0.959441,0.395849,0.623544,0.0207677,0.847919,0.760914,0.598864,0.752729,0.956127,0.759572,0.891096,0.85518,0.329989,0.515631,0.0119734,0.28782,0.513088,0.252175,0.510825,0.926059,0.687665,0.317942,0.899759,0.983549,0.294627,0.815036,0.932165,0.584082,0.346109,0.570303,0.261292,0.434194,0.502499,0.402118,0.119177,0.285585,0.125699,0.257312,0.442278,0.098998,0.617656,0.0606314,0.281049,0.934898,0.115386,0.91445,0.482802,0.637955,0.0625094,0.827924,0.61903,0.548967,0.264237,0.808579,0.292423,0.610202,0.989425,0.887955,0.579854,0.629113,0.668558,0.818743,0.538266,0.396519,0.342192,0.585073,0.568284,0.292831,0.840035,0.207541,0.255508,0.729806,0.52821,0.547434,0.503714,0.914763,0.86178,0.844401,0.264145,0.952661,3.58224e-05,0.236033,0.834774,0.719355,0.616221,0.40497,0.932597,0.872072,0.793499,0.866713,0.898551,0.0940962,0.408822,0.991759,0.932826,0.145349,0.441514,0.18667,0.842679,0.985829,0.0604615,0.968826,0.104886,0.236145,0.853277,0.669066,0.310741,0.269497,0.138408,0.798892,0.781466,0.145952,0.550097,0.943266,0.758429,0.0184063,0.790993,0.992654,0.049666,0.708908,0.956965,0.814054,0.426085,0.628496,0.121139,0.164331,0.973513,0.957888,0.8159,0.656195,0.151109,0.788044,0.199107,0.66907,0.574574,0.430569,0.252806,0.886622,0.854006,0.198314,0.17552,0.208544,0.177129,0.978641,0.221045,0.497759,0.954686,0.224741,0.270844,0.485406,0.159267,0.17484,0.397426,0.60847,0.00392628,0.460839,0.547649,0.764981,0.645304,0.882817,0.474144,0.354755,0.527985,0.411215,0.279556,0.230522,0.688955,0.406059,0.43369,0.727103,0.833553,0.205489,0.712214,0.536634,0.899746,0.579277,0.587952,0.830608,0.920211,0.460054,0.464435,0.572499,0.567339,0.476001,0.954133,0.667741,0.524617,0.416623,0.679501,0.588711,0.794476,0.266757,0.0657954,0.259078,0.733208,0.828124,0.0117168,0.638319,0.509375,0.102961,0.561484,0.926603,0.549692,0.204241,0.3335,0.68735,0.0855348,0.567323,0.490676,0.728491,0.521183,0.485193,0.642477,0.631192,0.328908,0.507593,0.608309,0.230783,0.224077,0.159645,0.794553,0.662522,0.369294,0.673627,0.285438,0.150635,0.871775,0.871053,0.289639,0.773847,0.322717,0.927664,0.0565847,0.384501,0.607089,0.408075,0.273912,0.221686,0.92409,0.52427,0.887404,0.97212,0.525451,0.0901911,0.374248,0.167208,0.548518,0.253836,0.0822918,0.00581259,0.458961,0.562636,0.165203,0.382169,0.878154,0.608094,0.874907,0.585429,0.680635,0.265637,0.713181,0.0784175,0.789943,0.168333,0.267082,0.602121,0.549367,0.622049,0.305453,0.347356,0.510291,0.987329,0.601845,0.247599,0.852443,0.197193,0.74505,0.849363,0.242303,0.966845,0.0259309,0.48715,0.802554,0.191963,0.920795,0.761045,0.623302,0.91672,0.1684,0.567509,0.54785,0.44922,0.449136,0.822448,0.991933,0.616928,0.748337,0.92678,0.834338,0.856782,0.909101,0.547202,0.562623,0.738343,0.144567,0.58432,0.0774737,0.159869,0.973289,0.918136,0.415954,0.51849,0.576734,0.250098,0.97123,0.428987,0.413865,0.439483,0.0131831,0.764321,0.77799,0.668007,0.393045,0.965097,0.495633,0.95369,0.378632,0.975481,0.881334,0.858622,0.930348,0.417219,0.886796,0.879312,0.0922109,0.129084,0.0159884,0.608744,0.742201,0.0278384,0.917345,0.475781,0.559658,0.241318,0.459609,0.962539,0.448914,0.249615,0.534223,0.188663,0.926128,0.824883,0.959947,0.174549,0.601616,0.0812622,0.984972,0.356885,0.0663985,0.18369,0.0466847,0.136696,0.590804,0.964959,0.786216,0.662958,0.223865,0.497689,0.250419,0.878633,0.0379164,0.107222,0.081751,0.673843,0.905084,0.112887,0.0759847,0.678351,0.370754,0.275709,0.486595,0.15919,0.269138,0.252043,0.281999,0.148779,0.822999,0.609907,0.129259,0.732766,0.384789,0.613206,0.869212,0.180984,0.312278,0.768983,0.962931,0.195368,0.581331,0.916939,0.387912,0.636974,0.125575,0.881485,0.136545,0.536908,0.0898028,0.202206,0.0962022,0.12469,0.910053,0.890247,0.848998,0.426864,0.0636596,0.480054,0.683344,0.700031,0.834771,0.555752,0.190656,0.509472,0.320544,0.245774,0.975823,0.565981,0.220888,0.0946598,0.354342,0.361733,0.656375,0.386924,0.692356,0.0483183,0.612601,0.289506,0.565882,0.102364,0.799227,0.801119,0.130546,0.0515322,0.752579,0.686095,0.907764,0.0016579,0.996626,0.0384168,0.0445344,0.70146,0.631222,0.803506,0.628124,0.235991,0.594782,0.489352,0.938466,0.452346,0.487585,0.836555,0.185247,0.997894,0.657538,0.102333,0.369646,0.248892,0.855322,0.515206,0.58464,0.698159,0.258015,0.310268,0.532232,0.110353,0.39154,0.83561,0.475509,0.898678,0.509205,0.028307,0.93574,0.695163,0.801504,0.540767,0.791416,0.636985,0.0065217,0.0124683,0.811348,0.376342,0.850424,0.455965,0.144025,0.70426,0.853465,0.322492,0.915072,0.499512,0.557111,0.268344,0.795836,0.654805,0.978806,0.995235,0.369268,0.036772,0.420978,0.191607,0.935621,0.447765,0.73531,0.820548,0.110873,0.314387,0.883155,0.472289,0.683966,0.0826548,0.936837,0.693291,0.469499,0.64329,0.378718,0.0123556,0.942298,0.852467,0.643976,0.479345,0.767995,0.857226,0.860966,0.949235,0.893784,0.849603,0.143001,0.0551435,0.538673,0.528134,0.30497,0.0987203,0.809335,0.29924,0.498688,0.151295,0.288764,0.0188935,0.138383,0.250904,0.254762,0.984413,0.414903,0.413717,0.744173,0.578895,0.793827,0.48693,0.0693444,0.349499,0.543535,0.0463583,0.0790796,0.11964,0.551421,0.406007,0.751061,0.3634,0.631816,0.193958,0.519375,0.584049,0.210407,0.662085,0.569553,0.126045,0.690781,0.174309,0.111072,0.261711,0.522177,0.400019,0.984649,0.999848,0.751466,0.578014,0.614616,0.146747,0.139854,0.920091,0.0945357,0.726477,0.464969,0.598933,0.399649,0.229714,0.937041,0.512638,0.566466,0.527462,0.340091,0.571463,0.51931,0.873518,0.705243,0.932634,0.0415057,0.17042,0.70388,0.758552,0.401381,0.319855,0.613686,0.0821647,0.586731,0.431141,0.727664,0.414948,0.448421,0.391232,0.255285,0.808447,0.477885,|0.621638,0.823194,0.655253,0.00815046,0.557726,0.757343,0.859061,0.483723,0.821731,0.31951,0.734787,0.487067,0.351189,0.970451,0.0661309,0.538452,0.840555,0.0390189,0.0703308,0.988774,0.333754,0.0408621,0.845837,0.487521,0.708748,0.888125,0.768395,0.931989,0.297653,0.124551,0.127623,0.43718,0.451641,0.264736,0.103134,0.666686,0.59824,0.544637,0.11117,0.0545937,0.936161,0.285475,0.154779,0.715034,0.915136,0.951562,0.851707,0.275091,0.952337,0.143726,0.462277,0.676615,0.702761,0.0716397,0.663372,0.897961,0.240484,0.570748,0.115348,0.475398,0.781203,0.260241,0.435404,0.0391042,0.934434,0.960876,0.701404,0.353592,0.266258,0.225806,0.349069,0.121888,0.447066,0.595744,0.994678,0.846846,0.717252,0.796738,0.270599,0.200189,0.993464,0.547991,0.66137,0.917406,0.469961,0.876218,0.00449884,0.456222,0.447922,0.404117,0.4636,0.366529,0.048903,0.8562,0.725033,0.446574,0.530959,0.817684,0.256153,0.580015,0.738079,0.13036,0.927096,0.4587,0.53698,0.577721,0.115702,0.794078,0.0447633,0.178648,0.708855,0.447931,0.426909,0.689964,0.168537,0.526466,0.0956872,0.021781,0.923982,0.240903,0.321168,0.664878,0.0246659,0.31463,0.545003,0.838159,0.933891,0.0642623,0.0768028,0.877578,0.0933412,0.95141,0.00485933,0.110418,0.676527,0.738905,0.701316,0.586141,0.782483,0.219177,0.99034,0.644025,0.887296,0.649975,0.655009,0.925271,0.894042,0.437343,0.367935,0.291719,0.299789,0.56152,0.214643,0.5407,0.30575,0.843782,0.69089,0.147239,0.935044,0.738991,0.791497,0.0258618,0.496501,0.771657,0.666597,0.702781,0.813405,0.701734,0.577229,0.49694,0.757078,0.719125,0.552663,0.193961,0.0855383,0.954497,0.390685,0.619131,0.29434,0.436431,0.327196,0.282653,0.892416,0.237976,0.990485,0.953558,0.815226,0.281523,0.584848,0.598952,0.271025,0.113954,0.345295,0.0430773,0.768955,0.226549,0.523011,0.346473,0.304487,0.114252,0.570149,0.598856,0.018503,0.814321,0.785386,0.132683,0.263572,0.59933,0.907535,0.778219,0.147784,0.944422,0.0364596,0.203524,0.050653,0.895831,0.0668296,0.00680089,0.997401,0.0824547,0.446335,0.594402,0.492435,0.974802,0.680469,0.960792,0.765104,0.762052,0.142249,0.329456,0.821789,0.0244216,0.971432,0.367638,0.831794,0.441006,0.565517,0.399653,0.358848,0.491444,0.374976,0.827661,0.972711,0.205532,0.64749,0.780782,0.213778,0.855156,0.586755,0.131552,0.314434,0.260686,0.0288552,0.749355,0.803935,0.54416,0.416217,0.453318,0.738211,0.172597,0.645172,0.538105,0.0323703,0.726095,0.118134,0.681146,0.532463,0.113664,0.627699,0.719028,0.467586,0.513046,0.330549,0.640042,0.365892,0.289075,0.31518,0.761019,0.542694,0.591823,0.7306,0.488793,0.731205,0.467584,0.243562,0.767306,0.96515,0.700538,0.653847,0.265097,0.972776,0.968584,0.881434,0.41839,0.750289,0.338014,0.23342,0.710671,0.450564,0.147142,0.23991,0.452983,0.614698,0.362112,0.214438,0.530528,0.203384,0.38545,0.846942,0.890001,0.49665,0.441128,0.018182,0.687901,0.938486,0.493797,0.953445,0.219606,0.850261,0.270157,0.472894,0.674947,0.822772,0.25147,0.253544,0.113591,0.7589,0.670557,0.149392,0.0665239,0.846685,0.311856,0.69762,0.493024,0.191534,0.462961,0.431145,0.885763,0.0615567,0.95644,0.133136,0.20024,0.82939,0.671791,0.156284,0.719363,0.300452,0.223036,0.873822,0.623098,0.894221,0.479745,0.839684,0.422342,0.167706,0.873396,0.20132,0.808755,0.343509,0.425185,0.281644,0.488628,0.520951,0.143544,0.128551,0.169439,0.283801,0.944698,0.991057,0.968078,0.406977,0.896201,0.278552,0.912939,0.985042,0.961328,0.483339,0.260703,0.354347,0.858524,0.24635,0.639006,0.010517,0.216117,0.477718,0.00950223,0.965583,0.971968,0.778874,0.884826,0.136579,0.592305,0.182418,0.156922,0.139263,0.684383,0.157345,0.339745,0.0995615,0.213157,0.921801,0.556353,0.744724,0.733144,0.693052,0.342206,0.58004,0.87452,0.725809,0.0457618,0.0542102,0.612647,0.457902,0.638578,0.37644,0.160654,0.147646,0.530924,0.550866,0.403096,0.168138,0.46572,0.0449201,0.336577,0.730964,0.304075,0.0427357,0.0979722,0.405581,0.620389,0.407814,0.482793,0.91294,0.750635,0.24163,0.167061,0.765606,0.376598,0.451028,0.439679,0.0105583,0.0252891,0.614496,0.240973,0.410501,0.733173,0.557126,0.383468,0.588585,0.414277,0.00639057,0.345007,0.56014,0.98576,0.214869,0.744447,0.755824,0.374169,0.532761,0.615607,0.636921,0.887524,0.324121,0.0804701,0.44671,0.276297,0.405203,0.110782,0.116042,0.176556,0.472982,0.619446,0.423738,0.15471,0.192686,0.131872,0.377195,0.155391,0.384325,0.125499,0.87807,0.92234,0.640903,0.112483,0.222977,0.349132,0.870239,0.0585015,0.166534,0.436788,0.585557,0.0631667,0.15186,0.865948,0.546766,0.0699641,0.446377,0.219388,0.884931,0.43766,0.346757,0.320847,0.840447,0.371949,0.201164,0.0213117,0.908374,0.0954183,0.477815,0.158647,0.0914454,0.469704,0.625047,0.924379,0.394926,0.976057,0.791209,0.0121171,0.0184974,0.512289,0.549431,0.41829,0.968098,0.558683,0.115285,0.301911,0.613177,0.0815039,0.373953,0.830718,0.147244,0.584029,0.821528,0.960068,0.355901,0.0883418,0.942143,0.270759,0.529581,0.360655,0.0638551,0.629368,0.485737,0.102561,0.151079,0.0493697,0.25286,0.0117262,0.684431,0.537976,0.0861229,0.351123,0.454535,0.644452,0.716821,0.203172,0.555696,0.240172,0.0723206,0.740365,0.706896,0.782291,0.567934,0.724089,0.281435,0.0684929,0.405399,0.62746,0.346968,0.10956,0.722741,0.991557,0.982281,0.523874,0.794127,0.499267,0.589046,0.992603,0.800036,0.313961,0.0567839,0.0493893,0.762247,0.67952,0.581836,0.513274,0.0954343,0.107632,0.709351,0.641014,0.063976,0.017075,0.164558,0.526027,0.757709,0.75753,0.523726,0.360568,0.819473,0.501355,0.453188,0.619671,0.232454,0.486265,0.100745,0.87733,0.817171,0.992905,0.535754,0.216755,0.0388455,0.925346,0.167955,0.0987683,0.825737,0.902256,0.805592,0.938882,0.784701,0.683385,0.957279,0.888692,0.226802,0.816171,0.243223,0.730103,0.0357224,0.540898,0.693086,0.0486585,0.889772,0.98197,0.168756,0.957428,0.55982,0.218278,0.100001,0.919305,0.175128,0.0562727,0.906979,0.405822,0.263117,0.273372,0.965162,0.0728843,0.798295,0.0665396,0.638703,0.120847,0.172945,0.532903,0.944383,0.468013,0.360577,0.33897,0.403468,0.586283,0.11065,0.777959,0.496155,0.939403,0.838661,0.796013,0.393862,0.25866,0.781432,0.348556,0.49081,0.991608,0.914592,0.971141,0.0821446,0.264817,0.49296,0.161126,0.64486,0.879244,0.514058,0.0999711,0.957035,0.116685,0.729513,0.935997,0.603341,0.929398,0.887266,0.652104,0.886201,0.850772,0.973997,0.466544,0.566443,0.910242,0.230517,0.543908,0.754648,0.939265,0.949932,0.141519,0.80264,0.121773,0.450881,0.108471,0.566875,0.203055,0.456621,0.932916,0.241176,0.966596,0.877469,0.525555,0.104197,0.503406,0.244808,0.376689,0.421079,0.0611175,0.196335,0.589376,0.689011,0.361213,0.796024,0.682387,0.533969,0.10682,0.341398,0.636949,0.18065,0.825525,0.542763,0.61082,0.257046,0.0323442,0.243485,0.0714799,0.543146,0.608427,0.261175,0.170423,0.094534,0.223567,0.744429,0.680687,0.563704,0.973068,0.518172,0.727879,0.681491,0.978619,0.545296,0.940343,0.0368395,0.0481687,0.912862,0.426001,0.443158,0.390724,0.438018,0.0423588,0.352281,0.962589,0.581918,0.751993,0.461644,0.987661,0.2724,0.946336,0.0865555,0.178636,0.875462,0.00272053,0.903085,0.616815,0.676167,0.595445,0.58092,0.406217,0.808306,0.776279,0.432305,0.808107,0.0763795,0.938645,0.285622,0.843045,0.268722,0.63917,0.687784,0.564335,0.224436,0.159044,0.149739,0.014258,0.469083,0.104574,0.554622,0.617525,0.219373,0.326683,0.302072,0.902138,0.242357,0.605387,0.844359,0.990142,0.480125,0.820279,0.88041,0.994444,0.790491,0.635485,0.399314,0.863221,0.208399,0.109982,0.851976,0.114682,0.282598,0.00693536,0.0670819,0.874904,0.837488,0.718894,0.517711,0.307898,0.989319,0.0418864,0.898481,0.202338,0.648274,0.388845,0.736147,0.922639,0.684091,0.0210677,0.970385,0.312576,0.887629,0.290608,0.585205,0.243121,0.717112,0.973968,0.576486,0.00323087,0.684002,0.727274,0.114338,0.848313,0.688988,0.854884,0.797209,0.329338,0.592971,0.92593,0.0668597,0.796828,0.23813,0.871038,0.0704058,0.776028,0.536449,0.831034,0.17852,0.535641,0.0459011,0.683138,0.0639288,0.186026,0.524442,0.292778,0.479455,0.379087,0.574807,0.103341,0.0867141,0.850922,0.411189,0.188539,0.17934,0.825489,0.827213,0.965248,0.783199,0.76459,0.256028,0.350599,0.657778,0.679685,0.641266,0.0431674,0.866299,0.742253,0.58044,0.471741,0.428845,0.365047,0.737603,0.710906,0.45337,0.756789,0.354586,0.790159,0.22147,0.824703,0.652388,0.516529,0.140669,0.0577398,0.697968,0.534124,0.220651,0.642857,0.143128,0.0761173,0.691837,0.151658,0.161897,0.91501,0.0243659,0.204859,0.551427,0.511295,0.356139,0.538106,0.066413,0.785783,0.638047,0.779338,0.148117,0.122213,0.891673,0.804573,0.572971,0.177009,0.277991,0.192088,0.0679859,0.0995721,0.0575391,0.499564,0.482112,0.671866,0.771693,0.851956,0.640599,0.654333,0.815972,0.0423434,0.519196,0.310199,0.364558,0.445553,0.509341,0.443736,0.934208,0.291469,0.975372,0.642955,0.456388,0.832803,0.713064,0.766291,0.927982,0.147254,0.781493,0.356909,0.475594,0.780571,0.375517,0.280292,0.566988,0.40172,0.922594,0.972288,0.736144,0.159785,0.90777,0.748378,0.244211,0.673649,0.712359,0.316326,0.761952,0.666859,0.77684,0.549683,0.717583,0.277488,0.992007,0.047005,0.791536,0.420815,0.951482,0.43891,0.250212,0.68977,0.529198,0.31123,|0.540397,0.468505,0.882409,0.99581,0.25491,0.919428,0.32839,0.233146,0.646553,0.505117,0.699506,0.816307,0.291084,0.185902,0.155195,0.509016,0.599965,0.79898,0.20967,0.268327,0.160337,0.85939,0.35867,0.364718,0.979595,0.569311,0.543464,0.626909,0.86307,0.873776,0.162861,0.840871,0.55972,0.633999,0.237109,0.434095,0.212476,0.87002,0.800833,0.473547,0.26494,0.647715,0.744769,0.892569,0.930318,0.697508,0.706659,0.941527,0.158388,0.639405,0.318907,0.512652,0.297429,0.610752,0.809883,0.350992,0.357181,0.494832,0.201392,0.308693,0.816321,0.175501,0.824871,0.148522,0.41746,0.279726,0.340057,0.475033,0.733843,0.263397,0.143454,0.421336,0.691186,0.414981,0.5821,0.739119,0.903055,0.708665,0.501426,0.488962,0.978758,0.205736,0.800377,0.387599,0.176216,0.101328,0.90007,0.28227,0.139896,0.0167232,0.515751,0.366634,0.935125,0.720199,0.0299501,0.22775,0.645075,0.77462,0.309311,0.595608,0.906083,0.604312,0.255862,0.100905,0.0703178,0.178885,0.438132,0.679406,0.287793,0.0877806,0.446597,0.829686,0.584495,0.701692,0.991706,0.290034,0.0864861,0.940873,0.0342259,0.491896,0.423516,0.340844,0.700961,0.790708,0.226699,0.790299,0.954974,0.317711,0.924805,0.332641,0.819885,0.483912,0.456251,0.195035,0.847166,0.157425,0.653318,0.337133,0.200076,0.940837,0.385626,0.178091,0.776631,0.817857,0.16697,0.498134,0.839884,0.827947,0.998923,0.527536,0.671027,0.251254,0.575347,0.51194,0.0183696,0.23863,0.996122,0.909085,0.700639,0.16588,0.227863,0.415342,0.478277,0.79723,0.745412,0.977809,0.538777,0.820816,0.714415,0.67399,0.4491,0.638715,0.989302,0.209733,0.64611,0.0103619,0.601554,0.619714,0.0318204,0.84803,0.580275,0.880067,0.233053,0.94585,0.62246,0.926752,0.506003,0.850874,0.639758,0.00542706,0.0812207,0.750616,0.461121,0.0166484,0.963688,0.23212,0.294512,0.993203,0.20374,0.0805598,0.98739,0.234378,0.0187507,0.466357,0.88726,0.736679,0.10613,0.898079,0.543873,0.128913,0.356612,0.403384,0.595985,0.353345,0.0315655,0.565895,0.547082,0.646348,0.972111,0.27346,0.534167,0.674002,0.675952,0.587306,0.673902,0.405312,0.644246,0.207322,0.672399,0.414496,0.467252,0.238026,0.618432,0.112013,0.813819,0.0234101,0.0662411,0.956292,0.699489,0.149052,0.213241,0.568262,0.755941,0.778853,0.544588,0.180264,0.0711028,0.49028,0.360016,0.00486875,0.280762,0.819419,0.973567,0.647606,0.60814,0.844904,0.770617,0.852243,0.706504,0.147615,0.176289,0.0534598,0.75847,0.454056,0.515709,0.358183,0.610185,0.312267,0.544541,0.703791,0.447175,0.285315,0.78669,0.488452,0.609563,0.153696,0.666564,0.199167,0.554496,0.709269,0.272701,0.567452,0.81837,0.33465,0.915886,0.833768,0.352545,0.78864,0.249045,0.646518,0.751103,0.598494,0.0019334,0.120763,0.759481,0.825276,0.103471,0.268692,0.822863,0.579902,0.28622,0.0355595,0.955431,0.587768,0.254618,0.537008,0.317487,0.394692,0.0989665,0.561234,0.649272,0.556768,0.257123,0.383038,0.623615,0.845562,0.499371,0.126183,0.886206,0.675696,0.605314,0.137718,0.740581,0.223912,0.332061,0.62975,0.419569,0.113601,0.153838,0.0995955,0.733209,0.231249,0.876308,0.22895,0.518231,0.966515,0.516259,0.369313,0.659752,0.611228,0.185777,0.530622,0.668372,0.894788,0.316485,0.00511998,0.212748,0.878191,0.133266,0.584342,0.00254267,0.551775,0.42339,0.084745,0.278358,0.633683,0.136357,0.46029,0.227794,0.999802,0.909647,0.119113,0.274661,0.633552,0.24359,0.366956,0.379624,0.618302,0.0835895,0.0344083,0.932764,0.777529,0.777565,0.374548,0.545317,0.67921,0.96501,0.999862,0.369079,0.409401,0.325131,0.730898,0.00863498,0.46967,0.778262,0.299724,0.857383,0.773923,0.339896,0.205508,0.844835,0.511972,0.699537,0.54344,0.990977,0.539762,0.660115,0.176362,0.0465245,0.500868,0.830386,0.663832,0.432287,0.973253,0.751168,0.335282,0.258579,0.154969,0.0795912,0.301591,0.177809,0.40093,0.0376247,0.841996,0.818716,0.911015,0.307415,0.501789,0.0525502,0.805187,0.461084,0.794996,0.405466,0.421169,0.911627,0.35009,0.368304,0.715652,0.891225,0.57998,0.163007,0.335736,0.703497,0.00441831,0.147563,0.764959,0.563104,0.166039,0.0193413,0.815533,0.219744,0.166212,0.25235,0.271642,0.942644,0.115154,0.48651,0.593421,0.313412,0.0413365,0.878069,0.00673062,0.835951,0.0978156,0.0914649,0.657903,0.932622,0.410775,0.611227,0.526122,0.283853,0.675771,0.115139,0.24898,0.187668,0.759698,0.033555,0.119035,0.899658,0.112494,0.352305,0.00721341,0.41942,0.56821,0.506323,0.224458,0.39219,0.716786,0.27105,0.0242218,0.157206,0.228695,0.532445,0.563855,0.479005,0.579211,0.645645,0.930973,0.946738,0.151739,0.550331,0.636064,0.435987,0.943899,0.671318,0.554022,0.944917,0.844472,0.362109,0.147821,0.501837,0.37654,0.652312,0.381275,0.466501,0.205898,0.747427,0.0572047,0.402599,0.0599465,0.510158,0.840924,0.486218,0.422401,0.69713,0.243878,0.727259,0.252272,0.576779,0.0182858,0.446923,0.0715722,0.0396689,0.437929,0.681111,0.417199,0.717,0.377482,0.0711666,0.640468,0.98436,0.8405,0.391955,0.516573,0.278119,0.369102,0.901037,0.259346,0.0153558,0.895784,0.930077,0.0778378,0.602304,0.0560077,0.43412,0.486272,0.24895,0.33662,0.979203,0.725791,0.606734,0.939157,0.0782696,0.371818,0.0144334,0.30355,0.815192,0.226175,0.149778,0.407293,0.502655,0.625788,0.607869,0.0310785,0.522833,0.464172,0.530762,0.99353,0.103512,0.139913,0.795337,0.750447,0.832659,0.147845,0.239412,0.67927,0.993627,0.811146,0.519677,0.51135,0.216017,0.807868,0.649787,0.369994,0.693909,0.314098,0.382582,0.959182,0.141571,0.744293,0.461348,0.0330164,0.571905,0.478695,0.854623,0.119555,0.618579,0.751107,0.792641,0.143365,0.922227,0.167191,0.719232,0.0620261,0.0268974,0.0655512,0.335367,0.242621,0.176071,0.0996315,0.800848,0.609715,0.65081,0.785236,0.338525,0.645265,0.510382,0.398517,0.928576,0.773722,0.857383,0.0196273,0.333027,0.604089,0.310374,0.959928,0.969655,0.674569,0.604506,0.128012,0.513717,0.151189,0.927419,0.693337,0.0365727,0.679304,0.915576,0.0366367,0.849056,0.000775278,0.378046,0.303047,0.258251,0.859235,0.780217,0.292621,0.540034,0.625951,0.657172,0.419081,0.79216,0.616233,0.324615,0.653991,0.83872,0.0380822,0.620133,0.523449,0.675885,0.745297,0.403157,0.999024,0.478028,0.0707067,0.93619,0.0366608,0.971052,0.828096,0.139539,0.157924,0.929939,0.424028,0.565948,0.87211,0.519593,0.959506,0.0474327,0.369472,0.846604,0.902878,0.419577,0.283221,0.357135,0.814066,0.59925,0.920153,0.597294,0.642044,0.34742,0.0956083,0.542173,0.120273,0.848873,0.448317,0.874846,0.887582,0.906393,0.441044,0.0918114,0.300294,0.876495,0.874036,0.897568,0.362493,0.157625,0.870911,0.861504,0.490957,0.48109,0.830478,0.28198,0.857426,0.747052,0.140458,0.865622,0.414545,0.646468,0.506975,0.354512,0.844718,0.245355,0.948171,0.15799,0.661446,0.919094,0.23881,0.217638,0.45925,0.189335,0.845271,0.0324882,0.482677,0.959996,0.204386,0.863004,0.753169,0.279582,0.168529,0.48845,0.884071,0.00178868,0.281775,0.0554236,0.967438,0.17363,0.203614,0.217763,0.337433,0.881676,0.139481,0.0638304,0.69301,0.488022,0.397458,0.780778,0.149125,0.2609,0.554668,0.894067,0.757897,0.411617,0.0200233,0.0257768,0.854769,0.229036,0.725124,0.813099,0.545537,0.250339,0.53873,0.952384,0.775416,0.37351,0.98007,0.467655,0.0573008,0.965191,0.624835,0.234645,0.0129343,0.203617,0.474015,0.571097,0.01144,0.41,0.699357,0.5876,0.745311,0.973156,0.431353,0.458886,0.0250151,0.416216,0.698046,0.359426,0.0184584,0.793393,0.668558,0.261812,0.311217,0.0996358,0.137874,0.714174,0.611817,0.486491,0.0802283,0.823608,0.879014,0.340558,0.53686,0.578222,0.218662,0.473009,0.712571,0.755662,0.765804,0.650401,0.971194,0.542164,0.632747,0.890286,0.375519,0.937448,0.378316,0.92685,0.520477,0.955107,0.0663494,0.38706,0.0903545,0.150887,0.572721,0.190475,0.0893874,0.837016,0.00750792,0.925345,0.823984,0.895747,0.888915,0.22585,0.845499,0.716172,0.36605,0.608738,0.0160478,0.0969421,0.180473,0.0756146,0.666314,0.583236,0.430932,0.820396,0.599852,0.505965,0.656085,0.0314159,0.155446,0.429763,0.734935,0.879341,0.79968,0.416745,0.725191,0.774434,0.929046,0.517755,0.594351,0.230929,0.230608,0.43144,0.522289,0.198925,0.678313,0.938258,0.924304,0.331082,0.543967,0.827234,0.393007,0.091555,0.17724,0.337451,0.983085,0.249806,0.285386,0.613237,0.402019,0.301531,0.748082,0.725011,0.781503,0.996608,0.701054,0.0651456,0.420719,0.764695,0.394815,0.606012,0.0383819,0.234293,0.651267,0.169888,0.842803,0.791085,0.500078,0.512109,0.205672,0.807483,0.421928,0.0966291,0.817814,0.138902,0.768286,0.257008,0.917997,0.365369,0.680064,0.0384447,0.756399,0.10578,0.368631,0.0199545,0.337593,0.839825,0.128764,0.146427,0.454269,0.368293,0.786113,0.815153,0.282903,0.548433,0.313436,0.054221,0.467979,0.995559,0.0632327,0.999885,0.359749,0.298929,0.835585,0.252794,0.771834,0.038989,0.688087,0.532601,0.262535,0.631312,0.731928,0.767386,0.312466,0.36144,0.549914,0.739935,0.898874,0.541293,0.932935,0.145266,0.913933,0.0627572,0.639898,0.00975531,0.724862,0.876981,0.166652,0.300276,0.377072,0.795623,0.780745,0.0604438,0.398631,0.804602,0.727207,0.581744,0.563492,0.154528,0.279322,0.847261,0.331732,0.194947,0.22168,0.433006,0.242924,0.871963,0.351474,0.553427,0.446656,0.622998,0.325884,0.515514,0.590797,0.545756,0.438994,0.613903,0.989232,0.514333,0.92378,0.854144,0.791881,|0.707717,0.966054,0.626437,0.97869,0.053626,0.620102,0.462273,0.339353,0.0972455,0.836343,0.701031,0.807845,0.56844,0.25154,0.785854,0.773317,0.789944,0.334895,0.119601,0.37561,0.331581,0.0480463,0.908696,0.89351,0.0107161,0.966943,0.662779,0.83625,0.0755872,0.811234,0.62565,0.556544,0.493173,0.366352,0.722267,0.977663,0.806093,0.0996353,0.619279,0.337282,0.314931,0.675068,0.998758,0.896328,0.236703,0.514734,0.38042,0.642917,0.701684,0.801796,0.704528,0.714106,0.82682,0.228747,0.547147,0.278602,0.152516,0.494916,0.96667,7.70688e-05,0.944417,0.233049,0.102303,0.460758,0.392008,0.0879101,0.655912,0.799168,0.691321,0.686212,0.285971,0.999381,0.701194,0.423144,0.226037,0.489829,0.903517,0.0457402,0.497662,0.432132,0.317157,0.426471,0.620776,0.939197,0.730634,0.375388,0.673135,0.864692,0.638181,0.944074,0.831028,0.752544,0.58063,0.430645,0.762725,0.506511,0.517545,0.712492,0.81998,0.443796,0.559069,0.0163019,0.435274,0.0654815,0.382371,0.416362,0.217238,0.462928,0.740006,0.144558,0.717725,0.278546,0.671978,0.36418,0.747758,0.333411,0.735895,0.469797,0.975619,0.284729,0.246214,0.420057,0.861457,0.495923,0.355203,0.140162,0.656993,0.0325604,0.847268,0.626521,0.25856,0.190374,0.943453,0.459292,0.295387,0.196501,0.786831,0.225446,0.273708,0.533072,0.303671,0.337598,0.221485,0.736977,0.613748,0.533919,0.331573,0.927409,0.771307,0.165615,0.336651,0.313687,0.334953,0.183811,0.30462,0.103177,0.173774,0.677834,0.452484,0.995746,0.836052,0.101381,0.0741799,0.264536,0.350694,0.887032,0.786268,0.266501,0.229606,0.408256,0.065083,0.0602724,0.419891,0.605613,0.709255,0.909744,0.997421,0.582798,0.0913347,0.55261,0.651494,0.187202,0.598871,0.242091,0.56906,0.528308,0.0311825,0.48957,0.0653616,0.918827,0.49085,0.0533299,0.497764,0.84664,0.941161,0.799652,0.452526,0.563754,0.53537,0.911303,0.792441,0.535369,0.60694,0.955187,0.102039,0.562336,0.248077,0.502317,0.519653,0.452348,0.967778,0.171067,0.974408,0.365891,0.994932,0.0533417,0.207273,0.448097,0.255586,0.879659,0.473041,0.403682,0.0835031,0.400549,0.0583043,0.773408,0.281797,0.45929,0.846525,0.261132,0.946782,0.656989,0.946783,0.667634,0.713589,0.600909,0.910572,0.667559,0.969891,0.039232,0.0479903,0.172659,0.580624,0.679985,0.726509,0.931797,0.478626,0.352853,0.508153,0.680046,0.413722,0.27999,0.413004,0.539462,0.810018,0.305983,0.890881,0.63941,0.30151,0.77137,0.401695,0.738612,0.489847,0.688934,0.73393,0.423948,0.846719,0.595491,0.626715,0.348857,0.951318,0.97593,0.496234,0.885866,0.984199,0.411683,0.258147,0.589042,0.334213,0.396895,0.0147459,0.58874,0.042699,0.854669,0.150455,0.86589,0.925684,0.0747813,0.312266,0.0329615,0.99789,0.0470082,0.873514,0.633386,0.554394,0.0329836,0.320405,0.377401,0.591063,0.0645727,0.218018,0.763113,0.378137,0.34567,0.60428,0.686281,0.598088,0.214113,0.883131,0.196225,0.132208,0.521897,0.947056,0.382614,0.822771,0.944362,0.673534,0.0675466,0.416773,0.324125,0.155168,0.571612,0.159953,0.906878,0.845481,0.887705,0.398477,0.0301629,0.829607,0.926231,0.860474,0.200261,0.943271,0.409995,0.547786,0.780038,0.182942,0.518257,0.0201526,0.210883,0.540909,0.526686,0.261603,0.147861,0.651108,0.0051266,0.533094,0.797338,0.618179,0.6043,0.731552,0.0302355,0.465675,0.786652,0.294839,0.921141,0.702723,0.843697,0.502504,0.801603,0.441267,0.258158,0.392154,0.947682,0.791197,0.24549,0.684015,0.275199,0.211096,0.441287,0.219788,0.586021,0.718894,0.72072,0.352103,0.00326526,0.802008,0.0823773,0.305098,0.190607,0.554715,0.592394,0.475602,0.19535,0.384937,0.263127,0.313404,0.873199,0.00292993,0.322208,0.33368,0.639429,0.634054,0.299711,0.560002,0.468474,0.770269,0.616547,0.847272,0.454429,0.774992,0.875625,0.0180755,0.471085,0.914139,0.799575,0.494501,0.812641,0.674022,0.697563,0.759378,0.978834,0.33656,0.905393,0.790071,0.873643,0.640742,0.384001,0.750306,0.854912,0.416706,0.768075,0.610893,0.773599,0.734868,0.547988,0.129529,0.346854,0.01292,0.797306,0.76592,0.549794,0.594871,0.0357462,0.728437,0.0289007,0.435812,0.944374,0.797909,0.783227,0.892304,0.135898,0.0641617,0.506734,0.0511932,0.881912,0.86495,0.106739,0.877937,0.703675,0.344003,0.769436,0.770545,0.353657,0.254362,0.844702,0.773164,0.238773,0.999728,0.668557,0.877719,0.920741,0.751782,0.484149,0.0228659,0.430241,0.351565,0.888844,0.882212,0.960451,0.407762,0.912589,0.589544,0.911009,0.336587,0.426548,0.15503,0.270732,0.702659,0.808594,0.242209,0.189066,0.734945,0.635248,0.66384,0.00791872,0.410824,0.0928364,0.465469,0.308951,0.277361,0.0458442,0.681628,0.0394953,0.472624,0.884674,0.238506,0.0411639,0.438977,0.8507,0.560756,0.176533,0.930167,0.95753,0.916615,0.00390702,0.201358,0.917968,0.385589,0.917792,0.139275,0.934992,0.243367,0.655953,0.422694,0.673411,0.379991,0.85103,0.0301992,0.13295,0.606906,0.691104,0.961573,0.0497946,0.419381,0.955471,0.618442,0.947704,0.217858,0.27433,0.683946,0.578293,0.55759,0.823561,0.741926,0.101604,0.804249,0.752436,0.347938,0.52254,0.817196,0.258109,0.358077,0.351848,0.80871,0.979175,0.853135,0.664363,0.0460885,0.171676,0.560932,0.946217,0.243836,0.945256,0.286646,0.791407,0.251657,0.649695,0.535632,0.0857041,0.492586,0.188302,0.89178,0.104339,0.642269,0.506545,0.0990503,0.727814,0.0359902,0.730854,0.10976,0.134686,0.802105,0.520347,0.296772,0.774812,0.417343,0.538119,0.0999503,0.479434,0.945669,0.68978,0.355589,0.826313,0.39933,0.411615,0.175193,0.479899,0.692676,0.296414,0.889386,0.0923002,0.558444,0.520976,0.214697,0.103665,0.547194,0.90935,0.230733,0.672932,0.160609,0.556367,0.434157,0.241885,0.245281,0.43068,0.360277,0.40286,0.18225,0.775034,0.824593,0.315627,0.370019,0.488041,0.0532595,0.905707,0.969502,0.359784,0.281169,0.177686,0.541661,0.805283,0.535913,0.113811,0.366958,0.558494,0.980395,0.476114,0.0454118,0.365517,0.99802,0.412021,0.732941,0.417666,0.928614,0.603702,0.50553,0.530996,0.529473,0.335589,0.0095976,0.988072,0.291691,0.598271,0.64702,0.158143,0.63947,0.0384334,0.348498,0.378542,0.115417,0.0459407,0.710076,0.345547,0.656051,0.450761,0.799556,0.747605,0.46114,0.496827,0.824749,0.106721,0.203188,0.809538,0.0160584,0.874732,0.75417,0.564516,0.477889,0.67299,0.927137,0.654034,0.494532,0.418901,0.83116,0.334784,0.876963,0.516056,0.907836,0.0938125,0.0384302,0.353589,0.321756,0.344431,0.445474,0.796297,0.146705,0.230698,0.701139,0.396927,0.914738,0.641886,0.0644055,0.755457,0.786036,0.842769,0.161093,0.319614,0.34687,0.730473,0.667322,0.327135,0.290246,0.136628,0.728909,0.606095,0.426747,0.803973,0.119257,0.250758,0.79618,0.391068,0.506531,0.4522,0.276362,0.670438,0.61636,0.668942,0.492961,0.665662,0.19484,0.0701452,0.295604,0.399819,0.195221,0.420173,0.840991,0.728369,0.6087,0.979607,0.00748765,0.96114,0.00163728,0.253165,0.350146,0.169418,0.285083,0.828631,0.169722,0.740844,0.143749,0.263187,0.194957,0.039797,0.935994,0.0378485,0.0126248,0.564238,0.307595,0.316945,0.66623,0.645999,0.57644,0.151239,0.306246,0.256919,0.674244,0.936201,0.589142,0.780615,0.293007,0.0845425,0.353464,0.646892,0.853092,0.509363,0.351099,0.328618,0.3349,0.551869,0.114936,0.738604,0.0463277,0.968609,0.202526,0.606594,0.389555,0.871439,0.669629,0.58108,0.82383,0.562292,0.791789,0.868651,0.0292237,0.29079,0.0669481,0.537587,0.0604543,0.790105,0.254783,0.668457,0.575085,0.227436,0.0720725,0.0208482,0.89774,0.10407,0.747474,0.158575,0.597306,0.0354978,0.687827,0.195841,0.368445,0.919955,0.0251015,0.225809,0.270244,0.692627,0.116865,0.863209,0.851939,0.53752,0.246045,0.685597,0.689382,0.731789,0.233155,0.902627,0.0484763,0.113724,0.906329,0.754741,0.359958,0.553924,0.274876,0.0362157,0.992447,0.236218,0.912151,0.251447,0.722386,0.175715,0.151352,0.679438,0.364635,0.82281,0.70638,0.876216,0.600032,0.547856,0.0220613,0.93664,0.203775,0.758764,0.48743,0.0360705,0.422267,0.698785,0.798425,0.497396,0.777749,0.745378,0.419924,0.389606,0.0226055,0.343716,0.442176,0.412603,0.755505,0.732234,0.987764,0.517648,0.61407,0.00502449,0.546025,0.811335,0.460303,0.932553,0.0928513,0.898859,0.949822,0.81332,0.321584,0.23325,0.410763,0.326812,0.567293,0.254521,0.60215,0.108169,0.541989,0.502781,0.00251561,0.377932,0.284354,0.256471,0.200647,0.448218,0.885857,0.00489128,0.242691,0.224602,0.313501,0.0391014,0.506077,0.17887,0.347275,0.431418,0.244226,0.841222,0.011092,0.171785,0.185617,0.388362,0.955118,0.547036,0.132945,0.712709,0.416974,0.125993,0.426705,0.36339,0.295108,0.635594,0.374159,0.190668,0.311269,0.739166,0.976077,0.174469,0.301853,0.275638,0.584215,0.65668,0.166924,0.860771,0.0889137,0.266503,0.702213,0.515488,0.435435,0.481131,0.555607,0.270351,0.839207,0.43877,0.199015,0.462108,0.706207,0.310709,0.345381,0.960887,0.83407,0.824353,0.900829,0.261041,6.41942e-05,0.279929,0.372247,0.439939,0.0603987,0.717844,0.813102,0.638757,0.997609,0.73002,0.45002,0.985364,0.923234,0.462228,0.350838,0.220081,0.89088,0.856039,0.783312,0.383984,0.184158,0.458643,0.468098,0.482843,0.669694,0.931752,0.928086,0.761292,0.417611,0.876657,0.711523,0.391841,0.985386,0.321464,0.276641,0.576916,0.295993,0.554463,0.76997,0.723904,0.589002,0.425271,0.931699,0.667156,0.928757,0.22754,0.0248794,0.60646,0.788576,0.181279,0.365799,0.0425656,|0.395611,0.83873,0.461554,0.595099,0.064484,0.114917,0.577994,0.904271,0.837093,0.357431,0.152209,0.951705,0.660913,0.911321,0.305277,0.0903753,0.120555,0.477135,0.756182,0.702046,0.443422,0.823113,0.659965,0.481438,0.370937,0.832425,0.00511515,0.859362,0.293113,0.314812,0.0337504,0.337152,0.517634,0.588521,0.487461,0.814455,0.0312531,0.417827,0.828595,0.466657,0.887306,0.774936,0.15055,0.959942,0.860092,0.618453,0.290954,0.559207,0.321101,0.27736,0.425119,0.241744,0.174259,0.854092,0.788023,0.559635,0.958832,0.789561,0.792433,0.268814,0.117076,0.331028,0.0690207,0.489974,0.826346,0.668252,0.498181,0.43892,0.912568,0.909725,0.526409,0.19388,0.237311,0.60578,0.23757,0.750947,0.347105,0.178549,0.710707,0.461782,0.1315,0.575634,0.896456,0.888791,0.328745,0.169371,0.989239,0.0281924,0.370916,0.70718,0.471196,0.297761,0.875316,0.927491,0.811812,0.747621,0.252949,0.0515768,0.32069,0.728862,0.274741,0.866577,0.48383,0.861145,0.874736,0.525994,0.860055,0.904124,0.505514,0.216046,0.226941,0.590536,0.559881,0.866144,0.191421,0.237827,0.42164,0.0470091,0.565573,0.746891,0.7414,0.758887,0.303282,0.806318,0.104067,0.474673,0.837819,0.0460529,0.217897,0.379486,0.473687,0.249077,0.9741,0.503575,0.241324,0.166867,0.65429,0.640212,0.120079,0.67351,0.816536,0.88686,0.221051,0.419163,0.227198,0.944605,0.168887,0.875785,0.0604282,0.997963,0.873951,0.433476,0.51993,0.776944,0.484192,0.201328,0.361419,0.155041,0.857195,0.670042,0.535237,0.177337,0.273266,0.120834,0.296385,0.0119605,0.78004,0.906365,0.929388,0.993902,0.281066,0.669916,0.544086,0.813396,0.966943,0.759369,0.0486177,0.201473,0.608388,0.954419,0.869885,0.126799,0.214634,0.843362,0.377549,0.695311,0.303813,0.613638,0.321565,0.979875,0.1556,0.738622,0.164145,0.0296147,0.819369,0.265515,0.170856,0.689175,0.768742,0.760613,0.696378,0.819258,0.287776,0.126593,0.237701,0.197031,0.200946,0.66101,0.766645,0.576992,0.371271,0.94258,0.915547,0.417992,0.0803565,0.751128,0.85265,0.256596,0.55682,0.528355,0.54407,0.424311,0.240591,0.388446,0.55653,0.439652,0.0787805,0.0478169,0.708499,0.849756,0.297733,0.209711,0.173412,0.818076,0.435345,0.607286,0.504036,0.0717272,0.11669,0.465359,0.323962,0.897742,0.208183,0.20748,0.801899,0.622964,0.897391,0.457405,0.352423,0.923526,0.96898,0.138982,0.935255,0.782072,0.483029,0.257315,0.892779,0.776719,0.560111,0.470802,0.583624,0.0121567,0.822683,0.222374,0.994565,0.736038,0.722113,0.554338,0.311049,0.407264,0.840048,0.447612,0.0297363,0.380962,0.344495,0.0857283,0.890473,0.378119,0.290428,0.501215,0.836009,0.895741,0.653654,0.482793,0.611263,0.390139,0.132865,0.624797,0.482204,0.893539,0.8783,0.849814,0.0510429,0.460786,0.253583,0.318849,0.670357,0.835488,0.392947,0.316545,0.971352,0.410142,0.494926,0.229323,0.905765,0.395381,0.232431,0.150595,0.472241,0.0603053,0.0399917,0.959342,0.458498,0.579934,0.123895,0.568621,0.327206,0.159194,0.158646,0.299584,0.841568,0.975176,0.0694128,0.621688,0.159585,0.123541,0.968307,0.263314,0.732003,0.82893,0.601267,0.0619057,0.823601,0.731148,0.198934,0.580453,0.369764,0.141587,0.841815,0.286237,0.214884,0.328584,0.0294421,0.802894,0.982067,0.460051,0.508323,0.300808,0.191852,0.591204,0.564392,0.891224,0.831787,0.496294,0.0381132,0.701634,0.287058,0.404092,0.909261,0.00659704,0.257577,0.368624,0.524667,0.913966,0.116854,0.0469639,0.124025,0.0608819,0.360503,0.0390745,0.978489,0.851642,0.574353,0.985967,0.13858,0.894827,0.437702,0.200571,0.562954,0.463542,0.635183,0.450477,0.627482,0.149047,0.461386,0.914618,0.799991,0.0133902,0.327376,0.654007,0.128429,0.577708,0.999635,0.918259,0.33479,0.123256,0.136765,0.116616,0.494824,0.733885,0.0943466,0.345671,0.563491,0.642532,0.277131,0.0552354,0.147937,0.11755,0.781269,0.378496,0.780475,0.342688,0.377719,0.00136143,0.843154,0.733901,0.739369,0.594494,0.81651,0.0668978,0.642798,0.828023,0.344867,0.0542555,0.277351,0.261484,0.728432,0.797193,0.435786,0.357903,0.569702,0.0989983,0.794528,0.465374,0.435707,0.174149,0.593983,0.405701,0.973883,0.0960801,0.652646,0.745355,0.241922,0.610853,0.40331,0.78973,0.811447,0.213692,0.257169,0.484414,0.549392,0.540911,0.71361,0.261768,0.516359,0.0245928,0.322089,0.28456,0.904976,0.712692,0.458694,0.187513,0.537527,0.376731,0.964254,0.786769,0.339246,0.87643,0.913125,0.573496,0.703375,0.908257,0.227469,0.599014,0.428569,0.420161,0.923176,0.452513,0.73371,0.933696,0.169777,0.0672269,0.517631,0.433718,0.531012,0.255476,0.561311,0.91306,0.497172,0.213262,0.59342,0.967076,0.461535,0.0420927,0.772377,0.386629,0.153829,0.277785,0.723925,0.0173059,0.933248,0.65295,0.539101,0.54688,0.508054,0.585422,0.753022,0.291145,0.860859,0.650317,0.0476214,0.58445,0.133458,0.826094,0.337531,0.446498,0.0979661,0.0911732,0.0353655,0.405863,0.688533,0.252307,0.567115,0.85962,0.470255,0.736704,0.420196,0.276189,0.194023,0.149534,0.346269,0.236087,0.798865,0.867965,0.855573,0.331906,0.827613,0.271645,0.617757,0.211587,0.114617,0.439498,0.844226,0.0617609,0.980335,0.643706,0.564711,0.83821,0.13971,0.333954,0.549365,0.954811,0.558662,0.181158,0.115455,0.743413,0.280306,0.776009,0.909089,0.380366,0.958716,0.560425,0.174829,0.301278,0.123288,0.982907,0.29168,0.0850149,0.143494,0.83664,0.798519,0.862013,0.962882,0.535714,0.497314,0.647809,0.444688,0.598522,0.689636,0.107844,0.569071,0.0308127,0.293028,0.0926128,0.121309,0.781322,0.327151,0.0445342,0.803418,0.366067,0.848448,0.38602,0.0670335,0.339659,0.18346,0.258518,0.191247,0.458283,0.181558,0.469682,0.536533,0.712816,0.536611,0.796171,0.688777,0.389221,0.0520803,0.305188,0.963255,0.6529,0.703229,0.581108,0.0246232,0.480416,0.938554,0.713467,0.871265,0.716441,0.55475,0.992714,0.508579,0.604593,0.317592,0.982545,0.966291,0.312207,0.039201,0.793434,0.26547,0.230524,0.975956,0.656017,0.794194,0.604616,0.468736,0.314808,0.211589,0.94552,0.147656,0.419532,0.406774,0.0526402,0.0971468,0.239013,0.486823,0.627111,0.130113,0.496279,0.977157,0.763874,0.120356,0.028512,0.63362,0.986894,0.789844,0.282441,0.558531,0.656782,0.602617,0.667584,0.0382752,0.260723,0.387302,0.823933,0.0501491,0.911258,0.0256009,0.816457,0.588605,0.951502,0.254017,0.314869,0.82905,0.389296,0.0240009,0.565362,0.564559,0.740312,0.156973,0.667856,0.818158,0.0203622,0.367103,0.790328,0.483566,0.947735,0.438001,0.581649,0.274172,0.289756,0.088352,0.629816,0.111757,0.0412634,0.436264,0.232796,0.0827012,0.116457,0.317734,0.166735,0.147265,0.35303,0.698953,0.403112,0.31395,0.520474,0.686405,0.91868,0.0950171,0.0629382,0.733362,0.898217,0.0985249,0.51567,0.304019,0.214725,0.187371,0.830022,0.0983386,0.186757,0.795923,0.249703,0.290086,0.984005,0.964729,0.023113,0.208836,0.422078,0.457659,0.937293,0.866973,0.0882753,0.203557,0.501631,0.838201,0.0346337,0.481319,0.643532,0.856988,0.325378,0.811011,0.97389,0.65315,0.418709,0.747988,0.730318,0.461304,0.946888,0.91732,0.895849,0.542751,0.230592,0.361711,0.143153,0.297307,0.835741,0.134952,0.53439,0.45836,0.337367,0.802513,0.552594,0.492789,0.152807,0.588698,0.800044,0.395411,0.0383053,0.674238,0.0665486,0.694043,0.0839704,0.646902,0.644843,0.0379265,0.205259,0.00512838,0.286036,0.891684,0.173957,0.522157,0.175888,0.030637,0.19705,0.0272601,0.179166,0.569571,0.83492,0.9735,0.142757,0.284816,0.262746,0.661301,0.261953,0.715185,0.849404,0.0761441,0.937416,0.944752,0.891231,0.919161,0.418426,0.162398,0.976977,0.704702,0.408662,0.893762,0.589436,0.707192,0.491334,0.108481,0.0141807,0.492439,0.863379,0.221538,0.992442,0.232785,0.951791,0.598082,0.86751,0.100001,0.550508,0.963191,0.767977,0.794126,0.152501,0.37517,0.29043,0.149899,0.678978,0.266524,0.0969539,0.424167,0.891272,0.430437,0.739068,0.0460602,0.844031,0.551943,0.0360326,0.608159,0.234572,0.199456,0.965994,0.689801,0.391191,0.423561,0.0850991,0.32165,0.492673,0.768675,0.789012,0.996608,0.317944,0.0422007,0.217372,0.864778,0.496866,0.479549,0.398481,0.999684,0.809671,0.260098,0.602015,0.946192,0.158991,0.86114,0.182893,0.897329,0.59268,0.265885,0.866304,0.47224,0.72781,0.887122,0.397185,0.105224,0.406394,0.663258,0.0793538,0.21258,0.843734,0.498895,0.477329,0.0045929,0.883097,0.422353,0.687876,0.47796,0.109623,0.648407,0.951703,0.888787,0.897705,0.283983,0.56367,0.973023,0.406622,0.662001,0.574766,0.820053,0.392385,0.546189,0.390863,0.0639358,0.527525,0.291417,0.481858,0.760624,0.172698,0.205162,0.38371,0.33328,0.596485,0.586378,0.322494,0.450918,0.735974,0.528994,0.112053,0.759349,0.785132,0.232046,0.690616,0.919412,0.932379,0.727828,0.539568,0.607004,0.58053,0.711518,0.330293,0.966653,0.205679,0.662484,0.608721,0.0154738,0.00112629,0.000192225,0.907806,0.309042,0.629694,0.528144,0.48553,0.961397,0.158613,0.921588,0.709307,0.150843,0.708811,0.569758,0.579874,0.029907,0.348617,0.803813,0.601318,0.450295,0.805121,0.0378487,0.554538,0.337018,0.714741,0.91187,0.568218,0.385648,0.964463,0.672714,0.916008,0.193518,0.022655,0.0761484,0.770081,0.706048,0.850684,0.0181627,0.0282913,0.035459,0.722783,0.267457,0.474624,0.203424,0.0917687,0.229957,0.422473,0.0160194,0.910419,0.108017,0.521946,0.100628,0.400563,0.53009,0.197707,0.02817,0.8305,0.552677,0.029604,0.610293,0.583274,0.361052,0.937766,|0.789585,0.156085,0.838589,0.552292,0.374171,0.855189,0.944761,0.680925,0.804817,0.572222,0.69233,0.842136,0.443749,0.764142,0.233336,0.711376,0.29675,0.644495,0.307409,0.357192,0.43116,0.522639,0.246815,0.566038,0.567539,0.195472,0.180861,0.858096,0.643974,0.686779,0.058597,0.209512,0.265501,0.863,0.71515,0.67861,0.81366,0.784934,0.809273,0.0731732,0.337156,0.278801,0.132881,0.901942,0.154291,0.0494613,0.923431,0.347662,0.448542,0.616973,0.192756,0.741073,0.733102,0.163508,0.587541,0.488105,0.445238,0.219828,0.0197175,0.610126,0.746922,0.446095,0.290431,0.750458,0.394759,0.235159,0.2826,0.277054,0.120815,0.79227,0.976626,0.740827,0.183065,0.173849,0.833112,0.562284,0.537651,0.321687,0.910907,0.157711,0.499884,0.208128,0.702589,0.147362,0.895878,0.84586,0.348112,0.0537395,0.945537,0.0483885,0.513644,0.631374,0.797294,0.130715,0.30561,0.146761,0.998807,0.0429165,0.0833317,0.831995,0.631206,0.502506,0.654256,0.602776,0.435916,0.223547,0.598736,0.973409,0.263458,0.0279166,0.959725,0.660453,0.480396,0.970311,0.672719,0.328154,0.177935,0.453045,0.872093,0.903503,0.744718,0.0526211,0.587874,0.420632,0.740859,0.345931,0.479458,0.180382,0.535304,0.485608,0.394124,0.950432,0.301118,0.371769,0.602972,0.155131,0.832923,0.600412,0.484252,0.0120797,0.304209,0.16602,0.289419,0.957865,0.356052,0.761334,0.935912,0.170634,0.988973,0.731269,0.777932,0.0151411,0.968175,0.195951,0.769149,0.348699,0.282441,0.727784,0.97796,0.932597,0.251562,0.176014,0.742662,0.99474,0.485655,0.869027,0.548014,0.0477011,0.633461,0.115035,0.436039,0.544245,0.806397,0.42907,0.8736,0.212272,0.187361,0.865494,0.45037,0.196468,0.43749,0.486168,0.0281348,0.31141,0.445843,0.645039,0.926449,0.803527,0.176658,0.970054,0.107592,0.288699,0.18518,0.939154,0.168991,0.583673,0.989242,0.364322,0.381398,0.696988,0.789563,0.436052,0.545257,0.401096,0.101915,0.567175,0.857026,0.237462,0.0595342,0.984029,0.365076,0.26957,0.961889,0.212551,0.0519366,0.689814,0.945488,0.702722,0.514589,0.574361,0.107142,0.898081,0.895128,0.109052,0.179864,0.140233,0.499285,0.278342,0.825027,0.0509225,0.484101,0.245984,0.154035,0.0539845,0.676338,0.946126,0.344859,0.659239,0.0954932,0.294525,0.67208,0.141954,0.890764,0.625368,0.743007,0.185162,0.693336,0.576133,0.727165,0.170856,0.0492845,0.833751,0.162634,0.166913,0.49062,0.0756957,0.0597011,0.59987,0.0771072,0.0105473,0.973474,0.460008,0.509828,0.160146,0.288276,0.977993,0.091443,0.635609,0.0186754,0.285273,0.404898,0.457037,0.576985,0.629228,0.827473,0.582338,0.963433,0.903859,0.801278,0.155862,0.791946,0.103409,0.781656,0.974835,0.59733,0.407025,0.97102,0.919469,0.578185,0.754803,0.327274,0.587574,0.460736,0.713605,0.604608,0.975276,0.790095,0.61222,0.319234,0.133602,0.521468,0.789728,0.59626,0.242852,0.845244,0.325134,0.945327,0.916444,0.862256,0.111905,0.864215,0.987719,0.651693,0.592968,0.87671,0.278983,0.799495,0.284226,0.355334,0.480697,0.732311,0.803478,0.844928,0.878116,0.364367,0.685971,0.443907,0.120083,0.835676,0.980466,0.052345,0.525445,0.964759,0.941757,0.482059,0.0579552,0.836714,0.44199,0.382992,0.234826,0.911718,0.63124,0.37604,0.31987,0.00529635,0.796865,0.736014,0.229978,0.62116,0.617336,0.477543,0.513384,0.663692,0.437381,0.453045,0.944709,0.869417,0.847736,0.575341,0.293595,0.86211,0.0649147,0.239991,0.434087,0.694844,0.610547,0.877503,0.632869,0.57138,0.285673,0.618599,0.341961,0.366395,0.343775,0.0874087,0.299115,0.314639,0.39212,0.39099,0.370593,0.971437,0.357517,0.266266,0.0239058,0.16685,0.610261,0.248932,0.877659,0.830778,0.815448,0.100991,0.0901546,0.345774,0.982186,0.0909884,0.0407899,0.996515,0.925139,0.0595533,0.996617,0.942459,0.568658,0.294024,0.0171464,0.884361,0.548584,0.254291,0.66569,0.298753,0.875797,0.0490593,0.240398,0.990712,0.207435,0.582945,0.612538,0.497008,0.656565,0.23227,0.70001,0.639193,0.199716,0.964402,0.467483,0.946021,0.11491,0.963668,0.687285,0.575899,0.745599,0.621236,0.327798,0.153661,0.591829,0.948723,0.263009,0.930314,0.407514,0.153138,0.545743,0.439326,0.883188,0.309723,0.556403,0.802311,0.277197,0.824007,0.489873,0.0174304,0.309749,0.389296,0.529677,0.976378,0.614706,0.689552,0.843315,0.404441,0.832063,0.711042,0.779203,0.660665,0.762892,0.0984699,0.118302,0.643028,0.54862,0.643775,0.596623,0.67643,0.913162,0.445908,0.11637,0.0464346,0.398193,0.926508,0.841514,0.464386,0.562864,0.454852,0.541375,0.600938,0.871746,0.863499,0.541359,0.549735,0.236482,0.672952,0.15532,0.617865,0.700855,0.000980973,0.758182,0.651871,0.0777407,0.394973,0.527792,0.0079934,0.900229,0.14678,0.671501,0.720303,0.814793,0.181539,0.69763,0.944597,0.733502,0.299474,0.442507,0.486486,0.0491766,0.919794,0.169762,0.0484243,0.166268,0.973273,0.370067,0.192213,0.522921,0.325596,0.961575,0.65682,0.451806,0.217855,0.854352,0.575301,0.586954,0.680973,0.348925,0.552771,0.68683,0.968868,0.659829,0.0693408,0.0247183,0.939624,0.403406,0.599426,0.0862783,0.179847,0.736154,0.702923,0.981661,0.758586,0.375117,0.679702,0.44641,0.489091,0.70843,0.631343,0.931447,0.149379,0.581091,0.204333,0.791232,0.287184,0.417913,0.470196,0.0820107,0.145939,0.572287,0.390058,0.624812,0.363258,0.361321,0.273182,0.514495,0.380874,0.785683,0.378467,0.0118492,0.736997,0.255309,0.887035,0.532749,0.936082,0.164813,0.720742,0.175993,0.81608,0.15317,0.72394,0.184565,0.0132003,0.338233,0.228304,0.273684,0.0270767,0.833236,0.187199,0.958221,0.404798,0.426521,0.930405,0.0339966,0.460041,0.116026,0.836977,0.779407,0.340188,0.156,0.0812854,0.109156,0.530191,0.178058,0.710197,0.354674,0.23615,0.0529461,0.716929,0.780873,0.210887,0.102491,0.389194,0.658027,0.956778,0.899969,0.724675,0.2315,0.108083,0.790656,0.421483,0.747459,0.910229,0.715829,0.434701,0.46261,0.893032,0.332264,0.217524,0.66717,0.903293,0.62083,0.809687,0.138181,0.117248,0.00427562,0.0702516,0.168161,0.709829,0.422569,0.179901,0.954486,0.752712,0.571317,0.893327,0.297319,0.106484,0.296145,0.692479,0.846139,0.157296,0.148637,0.220126,0.0353853,0.724731,0.3012,0.378601,0.303087,0.408928,0.899855,0.536814,0.72561,0.978637,0.159916,0.0192195,0.252616,0.569892,0.566779,0.358031,0.404926,0.51698,0.494949,0.541546,0.749066,0.942187,0.210738,0.782402,0.090876,0.0151043,0.432512,0.0354818,0.621036,0.960577,0.212108,0.953129,0.740101,0.445203,0.721986,0.910789,0.666413,0.726743,0.898048,0.136018,0.857567,0.0106872,0.844728,0.0701242,0.271144,0.779444,0.0341453,0.622586,0.397665,0.936933,0.574287,0.547267,0.244147,0.554601,0.475873,0.683915,0.959373,0.965147,0.774019,0.411703,0.150669,0.651978,0.518363,0.130038,0.704887,0.337732,0.77514,0.779854,0.537428,0.761754,0.94323,0.0164306,0.347106,0.444208,0.0554225,0.863021,0.403242,0.554254,0.300967,0.489188,0.219616,0.365371,0.592673,0.656166,0.552603,0.100581,0.902377,0.520396,0.378846,0.61523,0.303707,0.192397,0.166648,0.694565,0.740399,0.35756,0.545148,0.666999,0.708107,0.73719,0.385446,0.887476,0.757692,0.300177,0.527351,0.965974,0.668094,0.120179,0.649821,0.24046,0.0372232,0.431217,0.18255,0.411037,0.0327366,0.996,0.0395959,0.281668,0.770655,0.673701,0.918243,0.53089,0.417835,0.0697944,0.0530647,0.0701804,0.159433,0.990203,0.158997,0.0704646,0.275623,0.899644,0.0609444,0.695961,0.82303,0.927446,0.862903,0.8132,0.571661,0.975393,0.324762,0.168557,0.570056,0.516342,0.0821213,0.00166172,0.852252,0.682986,0.485619,0.532101,0.32511,0.534843,0.162441,0.404012,0.380086,0.279967,0.714787,0.580835,0.81352,0.875929,0.997861,0.19625,0.71748,0.521735,0.142493,0.670529,0.614487,0.825801,0.169967,0.847029,0.795442,0.803182,0.236854,0.547338,0.152796,0.299881,0.483431,0.941033,0.585679,0.467613,0.710773,0.704623,0.940114,0.440087,0.715031,0.773508,0.689129,0.786555,0.0566392,0.39172,0.451626,0.655395,0.56506,0.8231,0.414068,0.892656,0.705089,0.447182,0.787109,0.554362,0.921273,0.726711,0.576403,0.862497,0.677942,0.263509,0.534425,0.685943,0.0148177,0.968792,0.21505,0.0301298,0.85099,0.661866,0.893683,0.70158,0.931276,0.500572,0.915461,0.183937,0.828133,0.455263,0.375628,0.389953,0.503375,0.908316,0.264248,0.256268,0.649037,0.517683,0.566365,0.00793976,0.146528,0.0529617,0.309816,0.649628,0.252544,0.928724,0.0604002,0.00448722,0.228514,0.619393,0.553788,0.934378,0.991401,0.331508,0.479954,0.0860813,0.744025,0.0949981,0.858723,0.324693,0.654453,0.817033,0.524432,0.0579123,0.103655,0.849044,0.708546,0.817209,0.727312,0.605743,0.353795,0.652047,0.19821,0.540297,0.569402,0.814558,0.683147,0.706702,0.573134,0.195988,0.434848,0.993573,0.656757,0.336027,0.974456,0.462236,0.391879,0.308857,0.169917,0.550122,0.322922,0.796475,0.013101,0.237309,0.584372,0.346143,0.655021,0.138285,0.880566,0.369166,0.3178,0.675119,0.0997537,0.28611,0.225486,0.454712,0.511498,0.94428,0.116791,0.651087,0.14258,0.289221,0.0460141,0.539287,0.56977,0.0648385,0.276717,0.191213,0.815652,0.963605,0.791256,0.103913,0.0957305,0.81489,0.655794,0.409449,0.269929,0.742012,0.123213,0.745396,0.555881,0.46044,0.883552,0.193702,0.668876,0.871543,0.142239,0.694097,0.106335,0.505464,0.664122,0.944867,0.0755487,0.440418,0.0923141,0.481098,0.70175,0.612759,0.949213,0.001212,0.0444514,0.573105,0.37602,0.818597,0.563712,|0.984607,0.632174,0.0333999,0.123612,0.635636,0.200512,0.135236,0.760219,0.555578,0.980464,0.883156,0.0404477,0.353791,0.771618,0.615325,0.401382,0.793274,0.0413781,0.544197,0.50582,0.698663,0.652984,0.149445,0.657098,0.080997,0.942904,0.908318,0.269002,0.35738,0.18411,0.150366,0.139401,0.446376,0.207927,0.636495,0.136175,0.525565,0.575557,0.412776,0.929285,0.985054,0.831387,0.477179,0.851433,0.929694,0.548001,0.678775,0.603207,0.613546,0.87939,0.798245,0.375793,0.661429,0.786879,0.70395,0.171509,0.720581,0.739838,0.508336,0.126117,0.437892,0.683064,0.00174624,0.317911,0.562332,0.435533,0.837815,0.689835,0.0860053,0.340028,0.910697,0.229576,0.562135,0.597925,0.567605,0.469886,0.232726,0.241559,0.62111,0.322945,0.118501,0.109031,0.686356,0.730578,0.601086,0.966042,0.442812,0.705766,0.70454,0.795109,0.117469,0.902478,0.915551,0.662202,0.0810475,0.464321,0.918352,0.970054,0.598513,0.319982,0.857237,0.719679,0.918029,0.034137,0.855499,0.442111,0.309421,0.775877,0.844101,0.151665,0.0276085,0.384881,0.858263,0.588694,0.31513,0.360037,0.162031,0.597003,0.25929,0.749807,0.888684,0.485054,0.875725,0.0915447,0.0481576,0.180183,0.444644,0.687892,0.778131,0.0402943,0.0444338,0.591881,0.975139,0.399052,0.293564,0.146326,0.762623,0.474231,0.9446,0.617426,0.34936,0.521217,0.734743,0.264395,0.541048,0.95249,0.806682,0.8004,0.753733,0.817242,0.668141,0.691993,0.725352,0.952114,0.340429,0.859181,0.186442,0.765811,0.400243,0.0340286,0.61701,0.650255,0.831346,0.0797028,0.204013,0.935493,0.4535,0.535534,0.601153,0.212247,0.860021,0.946963,0.246217,0.640011,0.10933,0.637154,0.234215,0.247472,0.504591,0.421667,0.0210901,0.895246,0.363676,0.193136,0.852055,0.150969,0.813805,0.866593,0.000167847,0.656126,0.676719,0.245638,0.369306,0.0182447,0.334977,0.3264,0.499354,0.881758,0.971282,0.0263252,0.303071,0.518756,0.232502,0.0551921,0.0853165,0.0926079,0.929835,0.0144842,0.259491,0.0224764,0.784238,0.363254,0.354316,0.773878,0.485673,0.611865,0.525229,0.129034,0.0732371,0.693647,0.262149,0.285331,0.721881,0.166114,0.737803,0.675443,0.857315,0.474997,0.898612,0.602833,0.972124,0.292729,0.521731,0.113099,0.637797,0.319343,0.00445324,0.905217,0.812629,0.00831825,0.846959,0.84516,0.860008,0.754507,0.599276,0.299842,0.946213,0.334701,0.218424,0.546213,0.762399,0.286652,0.890499,0.203029,0.037102,0.391164,0.854519,0.457036,0.914754,0.303418,0.61048,0.752276,0.0384405,0.87452,0.37372,0.901938,0.924455,0.225659,0.55803,0.792194,0.362094,0.864037,0.101558,0.548482,0.0447202,0.203977,0.30692,0.861592,0.987555,0.813406,0.517833,0.529709,0.976112,0.910529,0.540638,0.845478,0.295866,0.512512,0.906702,0.7265,0.060991,0.56577,0.135016,0.413457,0.438764,0.140932,0.438226,0.943903,0.670236,0.0616592,0.91739,0.668308,0.552261,0.440628,0.0449244,0.67838,0.672186,0.683468,0.206618,0.747184,0.898163,0.44004,0.135805,0.0437334,0.759074,0.586446,0.593027,0.0761201,0.861699,0.139655,0.374766,0.00785333,0.865734,0.321674,0.729665,0.899408,0.349084,0.519242,0.758433,0.672753,0.436212,0.492201,0.374069,0.0669313,0.983725,0.695746,0.401057,0.546397,0.844341,0.502392,0.638491,0.61354,0.0164578,0.25639,0.478478,0.262984,0.144369,0.628959,0.180655,0.912231,0.660094,0.900033,0.941216,0.070258,0.858744,0.824408,0.330205,0.0952876,0.364208,0.427133,0.324964,0.322607,0.78043,0.0955887,0.365899,0.898463,0.515758,0.562636,0.135703,0.974474,0.401294,0.477848,0.853176,0.217558,0.412718,0.438504,0.0255662,0.694449,0.229223,0.435194,0.412212,0.0243144,0.326316,0.839153,0.106872,0.0876377,0.118048,0.741677,0.931583,0.300191,0.684495,0.279464,0.182,0.828615,0.418882,0.0889121,0.992468,0.222309,0.0998574,0.333554,0.577833,0.154004,0.493139,0.495291,0.884716,0.170308,0.223926,0.525419,0.149251,0.487818,0.818214,0.370151,0.325452,0.83879,0.929805,0.340953,0.450997,0.118815,0.548925,0.496481,0.70882,0.845285,0.878148,0.252981,0.00227201,0.14828,0.184767,0.877923,0.671389,0.220858,0.714831,0.913547,0.586503,0.903169,0.853267,0.299464,0.3385,0.0231021,0.924383,0.0705364,0.941297,0.365941,0.629014,0.628941,0.44326,0.274662,0.188905,0.523753,0.144723,0.662245,0.933232,0.422247,0.193681,0.99114,0.625588,0.640215,0.818828,0.943639,0.392944,0.0213631,0.832398,0.736737,0.155743,0.324417,0.243155,0.533303,0.689474,0.102521,0.835416,0.807378,0.35048,0.582621,0.160947,0.483639,0.948717,0.6405,0.160821,0.74219,0.954349,0.54559,0.184444,0.766518,0.498845,0.546215,0.877471,0.354752,0.262401,0.526142,0.450298,0.398453,0.861885,0.845254,0.340022,0.944722,0.500561,0.812404,0.438006,0.320652,0.0978882,0.896043,0.804795,0.570127,0.215599,0.393236,0.453617,0.55473,0.460739,0.592616,0.0930038,0.957847,0.490624,0.721923,0.377801,0.230993,0.976665,0.906694,0.731148,0.341409,0.0450508,0.142336,0.638853,0.387332,0.946041,0.862344,0.787886,0.0472825,0.670487,0.780682,0.868743,0.180017,0.984154,0.0828598,0.984164,0.242225,0.867866,0.520361,0.563968,0.539944,0.618889,0.977931,0.444065,0.943303,0.244736,0.824268,0.799,0.756394,0.962235,0.0793042,0.648261,0.943212,0.193829,0.27124,0.0437676,0.160625,0.633769,0.988703,0.154157,0.675639,0.738166,0.0599558,0.29575,0.331623,0.369712,0.661145,0.35505,0.71918,0.273544,0.991299,0.208619,0.635625,0.247955,0.304485,0.531487,0.666644,0.66783,0.658143,0.273976,0.295187,0.365766,0.533033,0.0947522,0.948399,0.421661,0.930281,0.131219,0.450126,0.89021,0.262603,0.000622749,0.414403,0.16148,0.431541,0.661714,0.0244319,0.806392,0.584552,0.131744,0.942745,0.434331,0.372299,0.59334,0.663387,0.778737,0.753274,0.687515,0.908643,0.153978,0.237994,0.541687,0.491154,0.524544,0.19871,0.697055,0.308189,0.536462,0.800292,0.421776,0.923451,0.886228,0.21839,0.145574,0.650797,0.351522,0.14918,0.492436,0.667605,0.283652,0.371377,0.0733106,0.868963,0.941081,0.99309,0.0210014,0.998964,0.119945,0.990345,0.663628,0.726845,0.94632,0.965507,0.6747,0.42439,0.986293,0.0126455,0.287327,0.0775667,0.522934,0.292625,0.436566,0.0156444,0.407002,0.377424,0.589014,0.794828,0.286622,0.384934,0.22388,0.650554,0.161078,0.447772,0.328259,0.956397,0.731325,0.406529,0.939901,0.211501,0.737196,0.912944,0.883351,0.145452,0.986252,0.621289,0.818231,0.422826,0.287181,0.603586,0.599657,0.550839,0.108842,0.392676,0.292098,0.858628,0.955747,0.477277,0.0688879,0.554095,0.273493,0.041117,0.0467716,0.075784,0.585711,0.706351,0.0234672,0.1743,0.893354,0.0140249,0.121381,0.277124,0.75997,0.936681,0.582344,0.73558,0.167475,0.830965,0.493994,0.792151,0.796345,0.164047,0.842245,0.00822508,0.480585,0.601448,0.0515434,0.107254,0.950944,0.627393,0.497565,0.162848,0.421914,0.546028,0.494234,0.319193,0.80589,0.523243,0.874488,0.0985461,0.131616,0.277365,0.676928,0.559855,0.899397,0.436619,0.829063,0.243688,0.0657887,0.0972097,0.296207,0.736122,0.151417,0.721268,0.773756,0.951099,0.766064,0.334531,0.237715,0.682855,0.869423,0.952536,0.553309,0.322118,0.952531,0.425975,0.732314,0.0751846,0.966318,0.64483,0.451964,0.376499,0.52948,0.908455,0.965707,0.747312,0.383281,0.873927,0.36043,0.815669,0.958291,0.992041,0.584905,0.667523,0.50343,0.233144,0.308015,0.904624,0.586664,0.924462,0.599979,0.809845,0.943269,0.731018,0.0323811,0.275674,0.437173,0.657715,0.500901,0.250275,0.502787,0.627116,0.614009,0.549378,0.448204,0.239892,0.82266,0.647376,0.32255,0.151925,0.00171679,0.405927,0.199545,0.63562,0.168104,0.120288,0.373684,0.650153,0.214218,0.101757,0.0676569,0.932094,0.719641,0.372376,0.367269,0.148076,0.345001,0.433566,0.672651,0.810981,0.982172,0.91012,0.914482,0.0715205,0.465673,0.432428,0.856508,0.157586,0.03029,0.364282,0.565205,0.316467,0.179129,0.0564643,0.706645,0.785479,0.172406,0.382756,0.0211241,0.739049,0.64575,0.998191,0.718669,0.204411,0.903134,0.484949,0.595794,0.284983,0.653714,0.926807,0.0559853,0.881208,0.669696,0.276767,0.567769,0.0965582,0.809623,0.729154,0.0433258,0.305879,0.254039,0.5411,0.0649036,0.662801,0.091358,0.509529,0.217691,0.827807,0.706044,0.67078,0.960362,0.0193985,0.378094,0.0705806,0.446745,0.975241,0.967281,0.425963,0.170343,0.976761,0.479966,0.0840805,0.138982,0.268483,0.80685,0.509667,0.622576,0.760611,0.715495,0.475289,0.347901,0.922207,0.817325,0.0865645,0.170697,0.440157,0.984275,0.12881,0.639289,0.876208,0.534258,0.426164,0.973653,0.816688,0.867778,0.470834,0.0980924,0.577572,0.503445,0.704165,0.295829,0.45675,0.18553,0.180771,0.850362,0.0102214,0.744399,0.343135,0.709924,0.851,0.729694,0.373923,0.654853,0.124367,0.0494764,0.763939,0.884453,0.494793,0.82674,0.211113,0.782092,0.921061,0.873426,0.779754,0.48357,0.380592,0.76608,0.670947,0.376614,0.999377,0.940827,0.639166,0.138311,0.807657,0.671024,0.190592,0.1418,0.849223,0.581643,0.47929,0.685222,0.890108,0.683802,0.182374,0.000137925,0.375696,0.440119,0.261185,0.988309,0.510305,0.832975,0.937158,0.241185,0.871486,0.594971,0.235666,0.262538,0.803704,0.898847,0.287951,0.771454,0.559246,0.124901,0.146342,0.967284,0.865229,0.138652,0.668842,0.455851,0.283674,0.356962,0.720836,0.554866,0.777455,0.0813549,0.562509,0.100453,0.377099,0.00463486,0.516789,0.0394751,0.826537,0.844267,0.523257,0.70179,0.362639,0.123409,0.687043,0.512219,0.337457,0.634969,0.315648,0.743381,0.930887,|0.577844,0.983361,0.414565,0.434686,0.299093,0.53843,0.225397,0.108575,0.694479,0.832227,0.879746,0.478125,0.66187,0.37051,0.354271,0.189328,0.099058,0.753408,0.261003,0.0195984,0.103849,0.78572,0.805252,0.840511,0.25655,0.083482,0.74943,0.0823001,0.759097,0.102084,0.303434,0.9451,0.30263,0.454701,0.409276,0.0250033,0.715995,0.784083,0.284885,0.18033,0.69766,0.493231,0.329559,0.44043,0.835713,0.526179,0.962477,0.22603,0.942537,0.581552,0.951676,0.952356,0.510764,0.666789,0.987794,0.146924,0.705697,0.312166,0.350009,0.90522,0.0834054,0.403975,0.940004,0.593615,0.79415,0.28932,0.824201,0.60676,0.65705,0.839102,0.595662,0.912593,0.991837,0.670745,0.317698,0.0821242,0.51583,0.225512,0.548209,0.314692,0.461066,0.463798,0.0203431,0.663871,0.612492,0.0580522,0.990965,0.0598161,0.61549,0.862292,0.35324,0.016643,0.217362,0.136983,0.673587,0.276333,0.248189,0.916607,0.803862,0.0435511,0.383961,0.770537,0.432745,0.445642,0.261077,0.556955,0.430631,0.882387,0.893912,0.54353,0.224561,0.249587,0.0417253,0.364038,0.71962,0.353773,0.613604,0.388928,0.296994,0.616929,0.690637,0.219654,0.0726041,0.741264,0.509457,0.923924,0.381742,0.239823,0.811429,0.967347,0.863599,0.250285,0.496272,0.183899,0.0133165,0.157452,0.0938531,0.679469,0.0829065,0.693982,0.556786,0.889055,0.792963,0.41734,0.766353,0.274449,0.102214,0.815568,0.854145,0.527217,0.916339,0.697859,0.359345,0.678396,0.540552,0.142192,0.837112,0.359679,0.750374,0.399807,0.128084,0.428009,0.857934,0.00642884,0.319715,0.852457,0.483966,0.225046,0.680289,0.744114,0.0403637,0.497866,0.0935774,0.119949,0.216483,0.432998,0.280261,0.651471,0.18591,0.875008,0.626196,0.146386,0.990324,0.26728,0.526515,0.287612,0.435962,0.489547,0.425253,0.831095,0.401237,0.698365,0.533767,0.182119,0.211829,0.454426,0.381293,0.390266,0.352908,0.318473,0.38683,0.378145,0.752303,0.483607,0.104988,0.746881,0.714058,0.8133,0.257166,0.226255,0.733954,0.698539,0.375623,0.5659,0.322968,0.537436,0.287667,0.393628,0.104926,0.324992,0.46718,0.913125,0.0171719,0.977486,0.0973682,0.794116,0.348616,0.977214,0.195443,0.416105,0.716037,0.322247,0.763799,0.580328,0.561681,0.401352,0.499877,0.791569,0.595033,0.132147,0.240253,0.538989,0.366091,0.747985,0.684918,0.271381,0.082602,0.97436,0.584376,0.885919,0.0825899,0.877936,0.163739,0.692156,0.582033,0.887744,0.205712,0.421915,0.717859,0.806465,0.691202,0.0516214,0.645108,0.827568,0.445675,0.179609,0.124349,0.793133,0.00214684,0.812684,0.17679,0.0245965,0.788082,0.556075,0.913544,0.578448,0.0269792,0.802571,0.340921,0.572884,0.960538,0.483921,0.376366,0.966806,0.318095,0.706104,0.610423,0.280767,0.604932,0.355381,0.119575,0.605742,0.74168,0.13812,0.321424,0.136108,0.585416,0.4538,0.610045,0.701778,0.526504,0.364931,0.578023,0.79627,0.980988,0.58237,0.0830888,0.641469,0.313717,0.312882,0.250403,0.730758,0.915382,0.066348,0.628529,0.984881,0.31875,0.504035,0.838992,0.432211,0.255216,0.218367,0.403811,0.205013,0.568404,0.147132,0.251554,0.419726,0.29483,0.844641,0.956926,0.411726,0.672053,0.125769,0.592592,0.734554,0.626966,0.747437,0.166112,0.0773196,0.947796,0.0481287,0.866015,0.959804,0.516752,0.437622,0.188134,0.699364,0.644059,0.804598,0.10963,0.753759,0.925046,0.312622,0.958441,0.956178,0.216722,0.0911329,0.555289,0.708577,0.770343,0.841745,0.284786,0.604512,0.163994,0.450174,0.891052,0.861777,0.240483,0.341652,0.778174,0.812968,0.56023,0.283691,0.248083,0.0835619,0.927919,0.315896,0.0217814,0.426759,0.145319,0.257505,0.899565,0.727401,0.835844,0.044174,0.437048,0.407643,0.982018,0.850416,0.00757563,0.981848,0.586924,0.748725,0.0888989,0.508272,0.869486,0.260007,0.0180483,0.128216,0.311621,0.695958,0.613084,0.951891,0.122861,0.750706,0.832983,0.568834,0.2039,0.211138,0.625779,0.244805,0.933547,0.427629,0.515712,0.46605,0.851594,0.615362,0.163438,0.900697,0.926937,0.918498,0.233503,0.206751,0.201106,0.202943,0.362155,0.957114,0.222457,0.0550676,0.286254,0.0945415,0.17856,0.371248,0.965829,0.38821,0.667213,0.33387,0.843415,0.980623,0.632668,0.334694,0.87514,0.0128316,0.669139,0.411051,0.32649,0.597424,0.148115,0.499786,0.3911,0.790629,0.70714,0.705652,0.375673,0.503975,0.874499,0.497675,0.775879,0.384733,0.469769,0.797821,0.298223,0.0273596,0.331469,0.0842761,0.280226,0.587991,0.870332,0.126447,0.754975,0.0150723,0.290668,0.854962,0.420229,0.941515,0.752384,0.794626,0.826896,0.0213348,0.70427,0.795511,0.0725493,0.565264,0.0320625,0.665009,0.325696,0.499038,0.648204,0.621004,0.766699,0.262104,0.946519,0.912435,0.394012,0.142807,0.161313,0.793156,0.408321,0.623924,0.10085,0.692344,0.509196,0.279609,0.164564,0.430422,0.910211,0.911078,0.840507,0.627967,0.779934,0.757877,0.565152,0.266112,0.516643,0.863949,0.196755,0.860249,0.907304,0.493745,0.774094,0.454221,0.26557,0.626012,0.378806,0.358756,0.832974,0.313796,0.0279428,0.525416,0.40058,0.214133,0.390044,0.390074,0.534393,0.0424997,0.189494,0.4803,0.711963,0.32505,0.372932,0.45412,0.626174,0.809919,0.697657,0.533525,0.981205,0.885831,0.908621,0.865037,0.752944,0.717654,0.338606,0.40719,0.466151,0.0424784,0.490412,0.958971,0.850452,0.202372,0.715247,0.314752,0.692138,0.543467,0.706667,0.765581,0.917461,0.607124,0.648079,0.5681,0.576355,0.172119,0.665596,0.90298,0.149188,0.138475,0.545088,0.0372441,0.670918,0.646045,0.969356,0.487958,0.621378,0.44026,0.481981,0.632727,0.410563,0.159601,0.511069,0.703179,0.826211,0.07796,0.950305,0.455254,0.151891,0.643721,0.609564,0.537077,0.244602,0.712835,0.99384,0.0834017,0.510965,0.797071,0.0979552,0.363151,0.527555,0.353158,0.847516,0.153614,0.124872,0.188425,0.288802,0.396607,0.684111,0.356146,0.64779,0.846117,0.166785,0.0112012,0.872926,0.214534,0.328104,0.732913,0.772699,0.304617,0.662203,0.329127,0.407111,0.943108,0.357505,0.806741,0.871483,0.354592,0.957499,0.585812,0.0601867,0.741986,0.00376034,0.0614183,0.232007,0.359744,0.407292,0.632399,0.70001,0.345568,0.586515,0.0727747,0.480543,0.403836,0.161968,0.908545,0.00628901,0.324184,0.0671835,0.27844,0.819079,0.822809,0.669222,0.409954,0.162054,0.851264,0.0861101,0.343314,0.554787,0.0971169,0.452007,0.345874,0.291719,0.797748,0.961975,0.125143,0.907399,0.510056,0.188251,0.922954,0.521876,0.264915,0.283851,0.837577,0.447634,0.218365,0.782663,0.759569,0.0447484,0.604883,0.896987,0.814847,0.206293,0.264427,0.181882,0.605908,0.169914,0.356663,0.00944912,0.241183,0.174386,0.568222,0.679841,0.88424,0.929159,0.161084,0.0441434,0.680166,0.998419,0.23695,0.575175,0.120763,0.444243,0.83465,0.0510176,0.123983,0.849974,0.19659,0.299411,0.60086,0.396994,0.397938,0.709707,0.0393428,0.6776,0.536296,0.021096,0.104216,0.376531,0.222964,0.490809,0.522506,0.966291,0.648158,0.395609,0.907485,0.687374,0.27207,0.788193,0.920969,0.194593,0.916766,0.7801,0.295746,0.651049,0.668627,0.170185,0.740766,0.693767,0.927662,0.0778205,0.057081,0.852403,0.0648255,0.898661,0.863836,0.988779,0.750934,0.515428,0.357377,0.121135,0.761325,0.836368,0.2612,0.652533,0.509843,0.84539,0.324214,0.103463,0.748568,0.605586,0.893563,0.70789,0.0161855,0.350653,0.979582,0.181652,0.831995,0.914055,0.827244,0.207524,0.541926,0.685939,0.628127,0.998759,0.928881,0.949796,0.0360939,0.881856,0.622134,0.544786,0.737533,0.575557,0.306076,0.533841,0.833671,0.391574,0.744704,0.868074,0.852717,0.17951,0.823674,0.568404,0.418167,0.791486,0.606334,0.0182742,0.905299,0.740086,0.200543,0.0642321,0.232406,0.527144,0.982374,0.388186,0.274132,0.423789,0.600446,0.302753,0.350347,0.291242,0.168759,0.155855,0.223702,0.120447,0.841127,0.506067,0.851166,0.116766,0.167568,0.367207,0.22351,0.5817,0.536169,0.0904498,0.825392,0.133114,0.11955,0.983126,0.831618,0.422152,0.987752,0.488703,0.380022,0.0518704,0.259165,0.334638,0.687688,0.486625,0.530524,0.15188,0.869771,0.177726,0.111111,0.219309,0.0493879,0.50376,0.627778,0.551639,0.570994,0.580717,0.870778,0.363418,0.514704,0.488792,0.585258,0.634015,0.919446,0.787898,0.42416,0.611781,0.267811,0.227248,0.160417,0.561641,0.698681,0.259046,0.270039,0.521791,0.108738,0.927992,0.920727,0.711111,0.688909,0.454143,0.886902,0.242058,0.352318,0.546465,0.962872,0.731027,0.731278,0.147684,0.179455,0.055258,0.372307,0.954825,0.319495,0.0315051,0.558374,0.51507,0.65299,0.363542,0.634635,0.937093,0.598924,0.77048,0.244513,0.178327,0.909386,0.12641,0.943304,0.862891,0.285042,0.72249,0.387079,0.737123,0.218715,0.573884,0.790888,0.486121,0.301894,0.549582,0.00261927,0.125414,0.103568,0.641757,0.387031,0.853629,0.164525,0.845664,0.082249,0.888034,0.869181,0.107132,0.296057,0.888702,0.496535,0.572058,0.895444,0.068863,0.0298162,0.693339,0.658221,0.495967,0.389863,0.577684,0.337572,0.09604,0.227901,0.997,0.812196,0.311595,0.306585,0.482285,0.608898,0.360242,0.278539,0.559203,0.690423,0.548703,0.020775,0.813455,0.656722,0.677128,0.672651,0.82394,0.254333,0.243548,0.644006,0.47197,0.716293,0.749345,0.680471,0.340739,0.826211,0.311684,0.548829,0.0809215,0.487632,0.810665,0.968376,0.0203162,0.547216,0.151159,0.716238,0.412976,0.367127,0.942021,0.89284,0.997713,0.712789,0.900625,0.268223,0.087305,0.731702,0.102082,0.690014,0.201137,0.11396,0.544058,0.876296,0.984452,0.0807561,|0.515341,0.933335,0.830415,0.934997,0.954026,0.484702,0.938418,0.0561577,0.542916,0.945783,0.317275,0.0679378,0.155038,0.0353065,0.240895,0.0542637,0.135762,0.908814,0.877196,0.737833,0.204624,0.0513254,0.152159,0.542366,0.111856,0.750678,0.356363,0.592934,0.350084,0.99422,0.314508,0.935058,0.271048,0.273472,0.478221,0.0612031,0.770494,0.82314,0.796288,0.558412,0.328754,0.0341722,0.444893,0.794573,0.419322,0.371858,0.798518,0.778528,0.307674,0.664195,0.956078,0.210188,0.11282,0.819624,0.19722,0.849179,0.491505,0.610554,0.52562,0.770668,0.558636,0.747625,0.942685,0.754545,0.137691,0.214587,0.0372916,0.0911583,0.71291,0.97538,0.982002,0.202541,0.312748,0.600546,0.851802,0.811877,0.99187,0.849695,0.820048,0.186293,0.243314,0.924957,0.738672,0.912192,0.114253,0.889426,0.95426,0.58472,0.552809,0.523184,0.55436,0.586167,0.18588,0.364978,0.642664,0.0704384,0.0427955,0.575577,0.872148,0.140468,0.476875,0.380383,0.487778,0.817759,0.878416,0.511178,0.568571,0.508977,0.435596,0.43341,0.0651268,0.424573,0.601613,0.0712875,0.552682,0.0881724,0.0360515,0.661279,0.30096,0.0100214,0.253479,0.186591,0.568817,0.452491,0.493626,0.822601,0.156949,0.430927,0.448831,0.278073,0.770723,0.687992,0.40407,0.317987,0.587476,0.0765354,0.457684,0.959731,0.92801,0.425842,0.775876,0.962115,0.409601,0.549159,0.568531,0.252043,0.851667,0.215018,0.282059,0.668866,0.449813,0.550017,0.253422,0.2875,0.513575,0.271353,0.467385,0.521727,0.0561354,0.572005,0.219396,0.735643,0.31672,0.182257,0.511537,0.899704,0.577737,0.141913,0.138359,0.818597,0.8502,0.0678794,0.106559,0.585965,0.782892,0.640738,0.526271,0.458172,0.420672,0.454301,0.0662516,0.509234,0.39051,0.108538,0.870702,0.613569,0.994802,0.237811,0.655157,0.644228,0.347564,0.804839,0.410101,0.994225,0.612123,0.454404,0.117474,0.470044,0.318927,0.0910181,0.750908,0.575199,0.912595,0.00582099,0.73506,0.856285,0.740608,0.730739,0.635354,0.604534,0.292957,0.756476,0.418734,0.197414,0.611467,0.754404,0.69272,0.186826,0.435563,0.598162,0.590856,0.573895,0.850009,0.591496,0.292368,0.208992,0.552346,0.322918,0.209869,0.511116,0.170612,0.189395,0.526606,0.888717,0.819417,0.71193,0.795745,0.110786,0.944864,0.246989,0.396377,0.366571,0.643363,0.654079,0.881527,0.0774437,0.197827,0.0647416,0.575315,0.676167,0.12332,0.951464,0.611266,0.213087,0.0211481,0.470206,0.630372,0.00576437,0.64291,0.253794,0.901787,0.492834,0.0783221,0.671763,0.0739714,0.00871342,0.15885,0.100043,0.734606,0.767773,0.131233,0.724988,0.764479,0.663747,0.673316,0.852762,0.154066,0.598125,0.859409,0.486017,0.8933,0.732917,0.134256,0.779219,0.717093,0.56568,0.212229,0.825484,0.989771,0.937727,0.234364,0.335797,0.793941,0.296111,0.441532,0.71636,0.314625,0.695683,0.522829,0.494008,0.615532,0.622177,0.622663,0.283702,0.181363,0.559884,0.553774,0.601178,0.147661,0.13877,0.857734,0.215805,0.850989,0.562337,0.2666,0.218009,0.0530574,0.218623,0.268826,0.264732,0.212588,0.136403,0.916573,0.805602,0.731249,0.731114,0.884253,0.832768,0.198081,0.160432,0.555594,0.199355,0.335905,0.792017,0.131082,0.343781,0.166959,0.0966485,0.096893,0.73359,0.075564,0.414467,0.724207,0.404992,0.0552779,0.49734,0.57599,0.584732,0.510252,0.624344,0.451416,0.0902165,0.231554,0.908283,0.754016,0.813633,0.405112,0.715062,0.779692,0.721025,0.987359,0.662262,0.250897,0.321597,0.806541,0.559171,0.272317,0.856729,0.333255,0.772418,0.253155,0.327444,0.991586,0.561687,0.389579,0.130982,0.858006,0.116627,0.351298,0.899431,0.934737,0.526977,0.612964,0.928502,0.412779,0.632893,0.801091,0.0603387,0.881316,0.799748,0.733598,0.0626332,0.421015,0.344365,0.42099,0.823628,0.0869539,0.571706,0.857506,0.0746348,0.894963,0.663695,0.814688,0.986419,0.157076,0.873642,0.965287,0.645988,0.654584,0.565126,0.319521,0.194218,0.596575,0.257602,0.401294,0.0819514,0.895913,0.483725,0.888881,0.244438,0.494621,0.863608,0.50185,0.381865,0.765526,0.0199429,0.53951,0.408587,0.365334,0.0728068,0.751624,0.677477,0.133625,0.727376,0.930571,0.00813287,0.491549,0.763651,0.941031,0.339333,0.0279937,0.734306,0.88008,0.890781,0.129734,0.162458,0.850017,0.531625,0.443474,0.924321,0.766901,0.243888,0.224381,0.196484,0.263821,0.375904,0.394599,0.697385,0.917187,0.599316,0.725124,0.320042,0.056422,0.538667,0.924204,0.51785,0.262413,0.730883,0.22094,0.493791,0.691949,0.936173,0.163908,0.137163,0.773955,0.403915,0.792012,0.488097,0.0220363,0.715767,0.94819,0.292296,0.859409,0.715708,0.0535314,0.601947,0.436178,0.0304457,0.665101,0.261501,0.27364,0.251187,0.256709,0.665694,0.218539,0.683307,0.99038,0.454962,0.984351,0.767876,0.0503912,0.604598,0.465865,0.214864,0.28075,0.374971,0.854645,0.589455,0.388782,0.275269,0.929353,0.357914,0.830077,0.887014,0.769727,0.7203,0.802537,0.521146,0.217569,0.53236,0.52985,0.548746,0.692627,0.494121,0.544883,0.00618708,0.986353,0.110826,0.689406,0.557549,0.881285,0.368424,0.510266,0.606882,0.0611555,0.496359,0.105387,0.767641,0.820147,0.548542,0.53742,0.618828,0.480012,0.175775,0.934587,0.497494,0.873038,0.640731,0.842414,0.303769,0.858404,0.468643,0.742858,0.141334,0.901867,0.277519,0.122068,0.647336,0.975091,0.822228,0.945796,0.367658,0.281276,0.623256,0.505674,0.0576713,0.00902271,0.431991,0.228451,0.205946,0.36802,0.407762,0.945329,0.306544,0.159196,0.112618,0.525139,0.0206609,0.789812,0.497338,0.788454,0.784346,0.272255,0.868892,0.548897,0.52294,0.868915,0.818083,0.988614,0.234478,0.362524,0.615153,0.0818825,0.71812,0.154539,0.103755,0.44971,0.968697,0.888618,0.39693,0.899901,0.153528,0.137841,0.339837,0.404497,0.844085,0.750223,0.0134301,0.863037,0.109119,0.278193,0.279501,0.680005,0.929093,0.923522,0.955679,0.870213,0.36384,0.11582,0.78552,0.548969,0.72624,0.431489,0.261414,0.834214,0.416641,0.481296,0.652358,0.136244,0.616055,0.744362,0.0289798,0.0143345,0.221142,0.284419,0.173058,0.117404,0.687921,0.0158973,0.800774,0.20459,0.0760606,0.906791,0.926705,0.954654,0.239897,0.672462,0.0754485,0.474161,0.562065,0.157725,0.0447955,0.470593,0.141843,0.319593,0.482058,0.170702,0.776415,0.207672,0.113932,0.216139,0.490423,0.681608,0.330491,0.00474417,0.0284349,0.0921351,0.680042,0.930729,0.640216,0.482664,0.798757,0.051734,0.00265956,0.430857,0.542688,0.625756,0.671464,0.527894,0.278019,0.133241,0.358288,0.781076,0.915941,0.804239,0.639466,0.603536,0.923937,0.468091,0.410379,0.600763,0.812219,0.388407,0.702107,0.0876639,0.423612,0.839926,0.257967,0.242651,0.667506,0.00809044,0.046865,0.410562,0.821888,0.946132,0.533071,0.789218,0.861607,0.839273,0.978502,0.965442,0.543189,0.849385,0.478184,0.208298,0.267223,0.0541356,0.717839,0.500138,0.524989,0.125462,0.589667,0.775291,0.159211,0.15052,0.213203,0.299406,0.0200241,0.737596,0.0296365,0.128102,0.467539,0.368945,0.217414,0.439797,0.529674,0.566359,0.968649,0.157489,0.868999,0.1915,0.82318,0.901202,0.290692,0.827489,0.863703,0.343473,0.142669,0.185505,0.920155,0.0994332,0.429462,0.169813,0.00591362,0.0488095,0.980168,0.210405,0.80196,0.719096,0.879882,0.735895,0.0928102,0.376467,0.97618,0.960466,0.393381,0.254201,0.971486,0.511561,0.435323,0.459637,0.175815,0.439895,0.852098,0.385854,0.837587,0.577429,0.558787,0.547472,0.220396,0.415712,0.128374,0.580684,0.238873,0.472617,0.56462,0.0571371,0.341678,0.979173,0.117717,0.809911,0.348965,0.962894,0.388918,0.0503015,0.523503,0.376076,0.0435228,0.585229,0.956665,0.350008,0.367712,0.996278,0.763025,0.884765,0.879192,0.147032,0.373408,0.103743,0.38302,0.274677,0.224904,0.679694,0.652444,0.0957331,0.850789,0.501926,0.19124,0.113244,0.854483,0.369795,0.31189,0.187821,0.578386,0.248065,0.663338,0.830278,0.0641795,0.424586,0.862005,0.511743,0.249447,0.437526,0.414253,0.717577,0.224673,0.797773,0.588943,0.0661358,0.113864,0.773309,0.92418,0.440839,0.921539,0.686284,0.167748,0.892039,0.519952,0.312803,0.144921,0.582998,0.13884,0.468388,0.718542,0.797509,0.38417,0.281611,0.24092,0.054212,0.833511,0.848588,0.366654,0.260369,0.45499,0.0102038,0.302532,0.217166,0.40121,0.879194,0.0383317,0.0321038,0.294248,0.809449,0.390199,0.289105,0.573342,0.0500287,0.997016,0.669425,0.130683,0.584584,0.338279,0.91879,0.526794,0.232648,0.328628,0.48877,0.337299,0.0490173,0.410935,0.555159,0.319679,0.230804,0.135272,0.771931,0.531226,0.792772,0.883939,0.364805,0.473782,0.930755,0.77192,0.308466,0.123974,0.680029,0.453771,0.577922,0.82807,0.325505,0.500151,0.291923,0.220369,0.652261,0.981634,0.441032,0.302802,0.650652,0.942554,0.81788,0.492189,0.520566,0.143999,0.944427,0.791882,0.730523,0.735952,0.130389,0.0731815,0.620986,0.893464,0.596169,0.415279,0.440684,0.998488,0.798662,0.853707,0.399943,0.0679621,0.170196,0.882287,0.16373,0.781269,0.883634,0.647456,0.36275,0.875271,0.490423,0.0670742,0.71234,0.307343,0.663877,0.575014,0.0173569,0.14042,0.38204,0.671829,0.550221,0.147087,0.513425,0.758849,0.0998476,0.589429,0.731479,0.757184,0.917621,0.719971,0.71299,0.84211,0.205918,0.952297,0.268142,0.323289,0.883994,0.932134,0.855404,0.632153,0.697649,0.57464,0.778428,0.766958,0.121768,0.0693169,0.0507312,0.0479329,0.114153,0.317126,0.127273,0.7726,0.940324,0.858525,0.766532,0.307036,0.957222,0.149414,0.880583,0.265016,0.68331,0.398819,0.0391709,0.851256,|0.445251,0.732159,0.536446,0.669967,0.953592,0.144624,0.399379,0.651949,0.196015,0.679356,0.730024,0.260926,0.375184,0.158082,0.003304,0.641626,0.237468,0.0465518,0.770634,0.733842,0.580955,0.736499,0.287356,0.851559,0.470791,0.413236,0.767358,0.536806,0.820657,0.0112547,0.31082,0.915357,0.880481,0.570662,0.721584,0.169478,0.222678,0.982497,0.437076,0.0407938,0.833755,0.860689,0.723885,0.133619,0.0364689,0.669312,0.442447,0.520744,0.52709,0.822185,0.689122,0.337379,0.759545,0.522091,0.632008,0.322192,0.290392,0.530662,0.260373,0.940303,0.0825308,0.169536,0.3489,0.813899,0.578388,0.733188,0.418214,0.390886,0.501614,0.197141,0.79006,0.57581,0.354697,0.649397,0.412999,0.0640635,0.144928,0.705416,0.0213078,0.665927,0.609993,0.779159,0.611637,0.638788,0.377217,0.330489,4.47631e-05,0.837623,0.116068,0.945408,0.21959,0.81849,0.371415,0.483648,0.214952,0.582103,0.570127,0.0372511,0.773981,0.795481,0.60326,0.763653,0.506989,0.0931455,0.220882,0.566507,0.759498,0.889437,0.572283,0.997308,0.479092,0.714137,0.795417,0.323716,0.296758,0.563278,0.800427,0.382942,0.0785167,0.0449408,0.250873,0.98844,0.43395,0.67278,0.841554,0.119123,0.256718,0.1984,0.50785,0.954492,0.395693,0.818965,0.955825,0.550331,0.728207,0.374824,0.631991,0.896347,0.537415,0.0437288,0.107187,0.87268,0.843181,0.160455,0.260758,0.711189,0.0446068,0.246156,0.45565,0.925073,0.164252,0.597711,0.051391,0.438654,0.0588704,0.460623,0.477578,0.502749,0.0745305,0.0551585,0.797385,0.940092,0.45473,0.612845,0.76725,0.514905,0.893277,0.916457,0.148839,0.161992,0.295521,0.584668,0.448334,0.865219,0.965023,0.158241,0.544592,0.676986,0.858365,0.775937,0.818133,0.150499,0.759765,0.248067,0.10327,0.23466,0.289711,0.708028,0.324916,0.68629,0.438878,0.0294877,0.728548,0.853327,0.439035,0.357107,0.356519,0.88082,0.851544,0.608183,0.52139,0.0352853,0.650241,0.26329,0.747293,0.450807,0.0485499,0.441752,0.95555,0.261876,0.0187778,0.247639,0.977887,0.558603,0.115944,0.119714,0.270938,0.605816,0.0883432,0.386718,0.767742,0.190823,0.192696,0.683297,0.0836589,0.747112,0.361654,0.406978,0.337861,0.0362005,0.442921,0.515958,0.105165,0.0947496,0.577913,0.852058,0.787672,0.435567,0.157542,0.445787,0.518926,0.221151,0.313072,0.73733,0.715792,0.149702,0.456696,0.742471,0.968862,0.789827,0.359869,0.0819638,0.253048,0.272124,0.0940073,0.207543,0.673325,0.0548659,0.369772,0.328554,0.989972,0.843858,0.848128,0.411166,0.400027,0.089358,0.821675,0.870353,0.145074,0.354868,0.0411935,0.455491,0.71325,0.89879,0.840275,0.830791,0.777325,0.182571,0.481958,0.129511,0.531618,0.613265,0.714662,0.43267,0.849123,0.203881,0.685817,0.185467,0.379618,0.471023,0.259779,0.741839,0.713327,0.509001,0.19753,0.777655,0.213971,0.842097,0.0488631,0.380733,0.532383,0.588734,0.469381,0.310473,0.127895,0.278166,0.562435,0.550224,0.700284,0.255479,0.0788478,0.244898,0.868069,0.394252,0.721467,0.45065,0.619702,0.16569,0.501189,0.50593,0.992238,0.200626,0.983429,0.258623,0.892164,0.55088,0.38335,0.210083,0.923838,0.747105,0.0720234,0.334914,0.0158793,0.198152,0.880132,0.124897,0.669038,0.837173,0.0958122,0.201428,0.0671954,0.827304,0.166969,0.854257,0.115312,0.692626,0.535863,0.344114,0.422746,0.74252,0.496537,0.690433,0.12155,0.544652,0.914462,0.0912837,0.965832,0.774012,0.998437,0.69559,0.00524342,0.355291,0.127241,0.785208,0.894929,0.657571,0.712346,0.0467085,0.720496,0.236992,0.207334,0.530883,0.862919,0.929877,0.367978,0.13436,0.486845,0.34636,0.88005,0.409276,0.269316,0.535364,0.372314,0.418333,0.0551866,0.0923349,0.539735,0.0167395,0.560864,0.401646,0.918636,0.441296,0.709009,0.387741,0.228255,0.710893,0.12567,0.74836,0.168891,0.546933,0.29693,0.971862,0.0819186,0.681219,0.901627,0.744452,0.9181,0.631158,0.657508,0.643072,0.986209,0.293595,0.504181,0.787671,0.493895,0.314881,0.699256,0.289471,0.274717,0.0373851,0.626929,0.413513,0.944826,0.186913,0.151972,0.996589,0.335484,0.864917,0.830275,0.264871,0.831076,0.506095,0.823412,0.0570131,0.396363,0.85192,0.348172,0.455434,0.286208,0.255199,0.772626,0.66634,0.289567,0.346639,0.354594,0.247495,0.312289,0.0743384,0.299368,0.442658,0.85496,0.438959,0.289953,0.159595,0.615035,0.933788,0.144017,0.296122,0.480819,0.956244,0.252062,0.0873298,0.773469,0.571226,0.892424,0.0048542,0.306108,0.699507,0.118266,0.0261571,0.85714,0.825409,0.460898,0.805419,0.680524,0.674538,0.783361,0.207556,0.511003,0.0122178,0.141076,0.603524,0.0484548,0.24963,0.62516,0.624383,0.778315,0.586718,0.223149,0.188717,0.950293,0.958161,0.99924,0.801608,0.107972,0.707869,0.00339359,0.231733,0.614135,0.0510868,0.136876,0.723268,0.515287,0.758198,0.221149,0.927585,0.821323,0.807065,0.545787,0.799609,0.744326,0.750566,0.667226,0.454082,0.0811583,0.867479,0.50319,0.402507,0.26669,0.883146,0.0999396,0.668097,0.119386,0.089887,0.798151,0.196784,0.242069,0.417489,0.0893661,0.647864,0.161681,0.598157,0.523139,0.386758,0.0285228,0.267596,0.526562,0.614897,0.95895,0.0164909,0.236515,0.513458,0.341342,0.580757,0.138724,0.959796,0.000818372,0.534543,0.404699,0.510347,0.577871,0.860169,0.738345,0.458845,0.574945,0.0165836,0.286818,0.375104,0.946614,0.0917227,0.860658,0.917838,0.690773,0.882637,0.937221,0.964021,0.576883,0.389163,0.0228471,0.663952,0.0712229,0.115038,0.192202,0.956283,0.0562608,0.401266,0.204366,0.272995,0.243104,0.543464,0.146015,0.425641,0.402666,0.505181,0.775498,0.993682,0.402541,0.246937,0.298832,0.313844,0.755925,0.607199,0.435981,0.444416,0.670875,0.309443,0.0797695,0.47975,0.61515,0.271094,0.859377,0.0148555,0.824999,0.1803,0.193972,0.431008,0.68894,0.547331,0.747022,0.648953,0.089091,0.83968,0.678956,0.00531292,0.68044,0.628309,0.211132,0.737412,0.95695,0.955113,0.942031,0.0993842,0.88427,0.627524,0.440618,0.844792,0.755091,0.974043,0.959475,0.441684,0.790386,0.427786,0.557563,0.0597712,0.7716,0.975766,0.491709,0.546151,0.547474,0.239667,0.0529719,0.318328,0.285943,0.451034,0.837848,0.465243,0.951037,0.615583,0.621803,0.748324,0.0803717,0.164268,0.567271,0.200598,0.436414,0.612033,0.810987,0.102768,0.403477,0.357885,0.141398,0.700261,0.21411,0.732928,0.454591,0.316789,0.282955,0.586889,0.843376,0.822075,0.992772,0.603623,0.926168,0.132084,0.102883,0.49093,0.698086,0.968291,0.631412,0.892986,0.00656348,0.834616,0.625635,0.306428,0.30369,0.14176,0.658883,0.367422,0.796588,0.0544172,0.513974,0.264118,0.575139,0.423592,0.814116,0.483599,0.0832525,0.841751,0.372978,0.728931,0.731101,0.266053,0.144158,0.571377,0.506641,0.882881,0.100687,0.0999412,0.419625,0.659669,0.555702,0.0316549,0.6745,0.340251,0.889796,0.481448,0.42177,0.0781806,0.528552,0.0943432,0.218855,0.884789,0.272362,0.58675,0.31029,0.197093,0.602392,0.582181,0.442074,0.849278,0.463849,0.0270711,0.52134,0.47922,0.674802,0.776667,0.844454,0.621117,0.0944918,0.543251,0.433432,0.809138,0.909007,0.0969006,0.513204,0.256478,0.147542,0.952422,0.679525,0.354544,0.417148,0.471314,0.189943,0.094049,0.737472,0.288234,0.136015,0.847634,0.602874,0.575041,0.57502,0.362336,0.0995731,0.0933774,0.415691,0.0524186,0.822461,0.883273,0.399779,0.416112,0.968972,0.0695158,0.478658,0.730099,0.335385,0.207282,0.0745804,0.595306,0.148838,0.888479,0.118394,0.67424,0.461052,0.28871,0.117322,0.0268292,0.618159,0.202825,0.901577,0.220808,0.00264728,0.279622,0.144735,0.712522,0.544321,0.897483,0.253127,0.476359,0.319598,0.187906,0.00691587,0.297254,0.720328,0.960924,0.979994,0.989329,0.848956,0.768763,0.00853211,0.392781,0.632057,0.415923,0.838281,0.663792,0.145013,0.721506,0.589806,0.479064,0.824124,0.359098,0.566295,0.084736,0.465289,0.54524,0.601563,0.384019,0.423502,0.852625,0.21021,0.645718,0.384542,0.36754,0.0666438,0.140522,0.716885,0.207796,0.500358,0.931127,0.449068,0.132044,0.376223,0.574278,0.55906,0.339923,0.103505,0.339647,0.56541,0.221516,0.266884,0.535858,0.484779,0.796221,0.390353,0.825386,0.314934,0.87389,0.62889,0.946853,0.377942,0.349485,0.489369,0.375281,0.7145,0.559325,0.297448,0.407131,0.879489,0.133578,0.237978,0.376597,0.523238,0.41394,0.993766,0.903706,0.500673,0.213421,0.89791,0.55178,0.694106,0.0571429,0.202066,0.905673,0.134717,0.0568492,0.878908,0.247328,0.000731409,0.805489,0.769643,0.280961,0.22812,0.921125,0.71805,0.242567,0.107069,0.689108,0.00763965,0.493052,0.910073,0.115349,0.473877,0.153606,0.770714,0.916982,0.0531314,0.564877,0.191669,0.319043,0.157959,0.567657,0.153439,0.932764,0.88585,0.789767,0.0372162,0.196968,0.732732,0.613097,0.157901,0.195083,0.522143,0.471235,0.76284,0.480861,0.216873,0.848983,0.911463,0.653031,0.211604,0.264348,0.699479,0.0609553,0.93987,0.168831,0.907665,0.943918,0.382564,0.24774,0.217216,0.358223,0.265031,0.496272,0.536171,0.55972,0.605535,0.646137,0.399838,0.198093,0.677253,0.119587,0.357654,0.584714,0.180527,0.816441,0.139652,0.360447,0.715442,0.153556,0.982486,0.440826,0.840542,0.999288,0.733932,0.57776,0.185473,0.349704,0.0970979,0.26138,0.971692,0.705224,0.844999,0.990709,0.468515,0.799047,0.964895,0.179364,0.672182,0.894551,0.826252,0.0305032,0.151609,0.479541,0.524905,0.900619,0.335439,0.645543,0.714837,0.364725,0.713179,0.235039,0.562583,0.711169,0.730574,0.666601,0.0342366,0.26383,0.221786,0.237434,0.63526,0.173165,|0.970082,0.289823,0.120424,0.676738,0.975201,0.98298,0.0591129,0.947629,0.516965,0.830576,0.940519,0.659297,0.194848,0.667194,0.840809,0.338542,0.939677,0.98179,0.163928,0.819376,0.725741,0.388283,0.963137,0.193769,0.354902,0.789777,0.416809,0.945101,0.109617,0.266861,0.887904,0.529036,0.836209,0.161337,0.744933,0.675175,0.912434,0.0284098,0.278149,0.882496,0.618996,0.568778,0.308721,0.265478,0.458072,0.156952,0.861651,0.553758,0.634502,0.0105793,0.90583,0.315042,0.185035,0.646655,0.167626,0.52582,0.441008,0.249598,0.484133,0.833449,0.620827,0.490352,0.267315,0.571159,0.126662,0.518435,0.960259,0.361862,0.24536,0.148805,0.634402,0.149518,0.21414,0.426588,0.543611,0.0431402,0.23061,0.135784,0.030335,0.304614,0.0740697,0.511277,0.305916,0.725753,0.871499,0.0290756,0.399497,0.525016,0.457404,0.961226,0.96275,0.72891,0.403516,0.35094,0.0448719,0.0548373,0.975514,0.649833,0.276141,0.282826,0.0158076,0.927417,0.840811,0.00369328,0.09749,0.793933,0.301852,0.806918,0.156869,0.180938,0.487909,0.73682,0.467547,0.0162229,0.288768,0.0298649,0.737455,0.329086,0.293779,0.760094,0.0763413,0.963487,0.468831,0.896912,0.83992,0.0703532,0.863836,0.78279,0.532651,0.231279,0.648752,0.165222,0.672936,0.135352,0.493779,0.0851303,0.876552,0.702836,0.951837,0.900092,0.894974,0.599708,0.94171,0.414846,0.299293,0.426707,0.792178,0.243288,0.655368,0.237101,0.919405,0.0764323,0.737768,0.792744,0.611173,0.346752,0.504408,0.859839,0.191695,0.418985,0.280655,0.26886,0.0435176,0.254515,0.736246,0.0165256,0.744046,0.720657,0.86534,0.616317,0.251581,0.0706482,0.704295,0.672829,0.0094198,0.710816,0.536043,0.189241,0.620876,0.210404,0.516517,0.271969,0.996443,0.468636,0.24168,0.209726,0.652473,0.654289,0.492758,0.445584,0.155383,0.833842,0.446788,0.374997,0.372493,0.390096,0.558567,0.0895213,0.960379,0.162999,0.947338,0.320452,0.149423,0.746385,0.677701,0.0992755,0.824067,0.665042,0.718722,0.125,0.644028,0.763989,0.667732,0.91716,0.650975,0.663986,0.264495,0.954696,0.485447,0.182266,0.0519472,0.5229,0.993695,0.744787,0.23662,0.0576958,0.244136,0.181617,0.595871,0.642435,0.853418,0.680808,0.709808,0.56464,0.621671,0.829005,0.791983,0.411775,0.237774,0.968813,0.266722,0.064418,0.529769,0.985824,0.00287169,0.924073,0.84414,0.839806,0.396719,0.316572,0.470771,0.0789005,0.207065,0.569419,0.0070222,0.847247,0.291026,0.57421,0.549097,0.734777,0.414534,0.542558,0.994795,0.849356,0.167136,0.853329,0.297526,0.585416,0.221525,0.725783,0.0402228,0.68894,0.294433,0.666202,0.496071,0.270625,0.789531,0.484992,0.394088,0.456515,0.580106,0.815277,0.241029,0.764926,0.734112,0.60939,0.0147655,0.0512455,0.0227214,0.198219,0.0502881,0.58979,0.864734,0.416481,0.203987,0.440033,0.495831,0.968381,0.319806,0.72516,0.206102,0.210726,0.935751,0.667224,0.63912,0.614219,0.970725,0.154063,0.157485,0.204193,0.28269,0.0130522,0.794138,0.166359,0.203019,0.10756,0.618743,0.311372,0.139796,0.984559,0.171478,0.326889,0.480388,0.52607,0.420436,0.485885,0.373368,0.352774,0.128392,0.597574,0.942144,0.00462198,0.940541,0.454083,0.0672212,0.122242,0.481548,0.887542,0.253467,0.825109,0.914375,0.81183,0.442135,0.463329,0.295382,0.850919,0.33187,0.528209,0.442382,0.925217,0.405133,0.354471,0.496182,0.253166,0.277793,0.166465,0.46776,0.72567,0.146487,0.240116,0.588861,0.788974,0.183379,0.685146,0.0330524,0.0899238,0.307477,0.359274,0.579409,0.0542381,0.617797,0.351223,0.95259,0.239181,0.591922,0.6033,0.398833,0.181696,0.234117,0.196737,0.939558,0.0730702,0.159531,0.30401,0.468999,0.785185,0.893862,0.557952,0.293982,0.698826,0.622002,0.259017,0.263929,0.370158,0.335533,0.849999,0.247438,0.239613,0.880117,0.650931,0.53548,0.58653,0.623493,0.553132,0.360865,0.850429,0.311014,0.669131,0.00973034,0.474879,0.147899,0.0580449,0.0198313,0.960184,0.450199,0.33485,0.34982,0.0916724,0.839786,0.199516,0.169283,0.709534,0.860226,0.37169,0.980905,0.264937,0.279397,0.349911,0.0522848,0.374381,0.0581477,0.329879,0.709432,0.829799,0.366098,0.388595,0.823111,0.323073,0.687362,0.0992438,0.362187,0.334927,0.726279,0.00918263,0.985066,0.223434,0.280883,0.861196,0.851598,0.587637,0.886132,0.760566,0.418933,0.57173,0.00800431,0.923086,0.242191,0.296702,0.581597,0.249691,0.878246,0.689795,0.261869,0.890456,0.390472,0.204347,0.806727,0.979381,0.980524,0.212114,0.806279,0.915588,0.66392,0.249329,0.544956,0.488794,0.843678,0.0366471,0.191405,0.405779,0.00390589,0.539863,0.680907,0.793396,0.861315,0.45852,0.231367,0.637045,0.711234,0.554671,0.560603,0.149066,0.683672,0.429126,0.931751,0.029245,0.8654,0.935214,0.915126,0.731933,0.909181,0.432323,0.204448,0.607175,0.179388,0.38495,0.0734438,0.570668,0.804779,0.966986,0.691606,0.544672,0.75373,0.938291,0.812443,0.240126,0.536451,0.447296,0.447024,0.630906,0.250575,0.445605,0.842723,0.263782,0.429264,0.218936,0.958206,0.765142,0.386999,0.400834,0.680876,0.494859,0.991745,0.380642,0.874894,0.810646,0.359047,0.464622,0.305397,0.638894,0.152304,0.16116,0.56299,0.75104,0.458827,0.589437,0.18646,0.73432,0.465529,0.65145,0.187333,0.282173,0.368623,0.0603149,0.181628,0.971975,0.738677,0.788272,0.932878,0.759352,0.645782,0.63668,0.101243,0.564683,0.135185,0.260233,0.491891,0.397493,0.355314,0.206092,0.0550525,0.582496,0.0710248,0.894408,0.173086,0.935255,0.245331,0.622465,0.735185,0.829364,0.00132328,0.519291,0.306051,0.976585,0.340523,0.319034,0.534767,0.568209,0.543482,0.381734,0.722366,0.359696,0.428471,0.745068,0.202429,0.108888,0.416031,0.972459,0.550624,0.250108,0.598286,0.0277205,0.0566162,0.253634,0.179463,0.849818,0.309396,0.124479,0.818996,0.391758,0.601033,0.497857,0.267175,0.183347,0.709624,0.171308,0.19361,0.294963,0.505282,0.601234,0.741778,0.33921,0.731906,0.765229,0.965545,0.164845,0.893323,0.387188,0.761312,0.970059,0.218394,0.347394,0.849682,0.478798,0.477053,0.54822,0.474118,0.28396,0.957146,0.536818,0.73307,0.9034,0.525092,0.831354,0.87468,0.387747,0.935003,0.0180387,0.833634,0.389464,0.378326,0.234007,0.305281,0.255294,0.0334728,0.0776086,0.444689,0.605654,0.903508,0.638994,0.255474,0.337777,0.563348,0.807589,0.635765,0.322095,0.946113,0.907628,0.17031,0.0764157,0.737496,0.517297,0.922076,0.18285,0.214439,0.262174,0.310036,0.146835,0.0310932,0.434924,0.826611,0.255473,0.415135,0.249395,0.531608,0.432971,0.787477,0.0420735,0.539189,0.860368,0.816731,0.378306,0.962002,0.830154,0.151608,0.503339,0.691865,0.963631,0.854262,0.254503,0.208457,0.651424,0.596537,0.939327,0.978752,0.0720076,0.967414,0.59028,0.290395,0.5775,0.928894,0.414714,0.486117,0.468774,0.398199,0.27306,0.217146,0.944322,0.761681,0.637341,0.0649309,0.416498,0.107759,0.390538,0.500975,0.875996,0.930359,0.998108,0.217085,0.18099,0.298193,0.695907,0.417946,0.499574,0.634956,0.993877,0.199071,0.685443,0.227562,0.161876,0.284203,0.288323,0.98185,0.662281,0.329634,0.865396,0.464437,0.426445,0.922004,0.22102,0.794849,0.230493,0.0328896,0.945401,0.629226,0.192612,0.850697,0.697809,0.564639,0.826933,0.956971,0.144476,0.49089,0.600671,0.590292,0.19542,0.25547,0.0786626,0.488717,0.209227,0.276227,0.620875,0.19731,0.961044,0.464874,0.490806,0.276091,0.493805,0.131414,0.479013,0.544625,0.0239079,0.731713,0.289905,0.957938,0.999422,0.683202,0.752932,0.696417,0.21473,0.0639134,0.302316,0.249094,0.219422,0.137361,0.933032,0.613539,0.899771,0.0527036,0.903644,0.392887,0.686313,0.549063,0.841696,0.52501,0.837638,0.663642,0.436651,0.563867,0.24042,0.143841,0.473722,0.344468,0.0940654,0.425404,0.677247,0.265288,0.926592,0.964314,0.944594,0.617185,0.264129,0.77273,0.409873,0.338918,0.746688,0.895399,0.520786,0.79395,0.919948,0.471512,0.139562,0.658178,0.748319,0.823081,0.663713,0.100086,0.148167,0.610962,0.819015,0.559056,0.309499,0.0749738,0.946345,0.711976,0.0387437,0.254867,0.907398,0.411901,0.952467,0.116664,0.838717,0.791744,0.266304,0.815981,0.443186,0.619789,0.784727,0.587093,0.0915352,0.410368,0.480788,0.0311112,0.47613,0.697431,0.507897,0.145293,0.573501,0.493166,0.555586,0.881473,0.0822635,0.852959,0.464668,0.0506931,0.791891,0.44395,0.0427708,0.912337,0.827161,0.290066,0.16736,0.554123,0.857448,0.365775,0.927129,0.663405,0.0782973,0.190435,0.689628,0.275234,0.672628,0.04101,0.910336,0.140053,0.735697,0.76874,0.931182,0.255163,0.619329,0.966474,0.822378,0.23816,0.0219908,0.42949,0.887381,0.851905,0.911272,0.205617,0.883775,0.764379,0.602489,0.0697573,0.61674,0.522963,0.576646,0.54085,0.326956,0.902754,0.663905,0.570199,0.160454,0.663511,0.993659,0.254309,0.00559276,0.100935,0.581404,0.222548,0.575522,0.379527,0.468246,0.409769,0.16927,0.437755,0.689105,0.532012,0.672153,0.295984,0.065487,0.297697,0.811683,0.104948,0.563157,0.238953,0.00461268,0.861919,0.555504,0.894267,0.177984,0.315404,0.405903,0.697295,0.792772,0.409906,0.67349,0.519232,0.79736,0.38671,0.650285,0.262069,0.918967,0.355106,0.176771,0.042103,0.139137,0.490419,0.579533,0.510257,0.72609,0.975283,0.0726282,0.396262,0.111808,0.107579,0.44547,0.553309,0.225795,0.282696,0.611356,0.0315914,0.807125,0.811802,0.616349,0.0779775,0.793281,0.924538,0.974396,0.910808,0.297855,0.370536,0.408742,0.419731,0.211991,0.0482879,0.10336,0.709757,0.0666685,0.908349,0.42057,|0.459112,0.518428,0.236618,0.934604,0.644696,0.172214,0.938494,0.687284,0.291579,0.0709237,0.0708073,0.624886,0.200029,0.41792,0.718874,0.556064,0.13205,0.159645,0.947452,0.821363,0.91338,0.568629,0.0689337,0.29891,0.789077,0.00902748,0.128749,0.395816,0.190056,0.645694,0.0723178,0.573675,0.322748,0.55215,0.0512574,0.302295,0.797456,0.160451,0.628329,0.0416979,0.275679,0.39616,0.0353191,0.324439,0.653567,0.226129,0.521051,0.554573,0.799192,0.345279,0.294187,0.171472,0.157398,0.580217,0.666743,0.30586,0.840042,0.208394,0.216933,0.383763,0.89351,0.195615,0.574198,0.585657,0.238138,0.601282,0.400711,0.55258,0.545105,0.478181,0.944555,0.439997,0.23179,0.931182,0.232525,0.101769,0.634748,0.125581,0.982132,0.359286,0.436285,0.465884,0.327551,0.903719,0.190422,0.493644,0.420273,0.587945,0.532228,0.00999415,0.858581,0.656479,0.872696,0.930798,0.95656,0.762111,0.269029,0.0900978,0.875665,0.848603,0.995633,0.578568,0.542151,0.428069,0.392533,0.776493,0.66846,0.360942,0.0785494,0.581021,0.639004,0.0665419,0.865655,0.875191,0.510714,0.38805,0.482696,0.787988,0.639395,0.583811,0.960546,0.823663,0.665007,0.228889,0.701651,0.457935,0.591127,0.865782,0.572558,0.911673,0.678822,0.885835,0.421278,0.336097,0.959223,0.0449473,0.947723,0.694171,0.249239,0.909621,0.590046,0.994087,0.567958,0.241261,0.860333,0.814602,0.163669,0.00752431,0.846554,0.30335,0.0967218,0.207207,0.0174459,0.307882,0.951995,0.278485,0.369435,0.639169,0.0823304,0.502448,0.751787,0.256676,0.496922,0.251137,0.967114,0.0283325,0.237687,0.175702,0.951991,0.426184,0.0049122,0.331842,0.727717,0.490547,0.545767,0.232844,0.887371,0.61879,0.0310937,0.541876,0.173783,0.306972,0.71611,0.991449,0.541344,0.385039,0.719044,0.724648,0.240246,0.0689057,0.525582,0.737839,0.589919,0.8777,0.459036,0.459507,0.781682,0.37994,0.606483,0.604871,0.172236,0.367989,0.0949481,0.877748,0.845453,0.94067,0.220962,0.723051,0.0651969,0.320313,0.181331,0.200629,0.113468,0.391609,0.220015,0.995793,0.156512,0.106421,0.82415,0.681468,0.000609934,0.317032,0.998776,0.645341,0.812109,0.558617,0.598609,0.329573,0.365211,0.492038,0.921572,0.388739,0.0349673,0.434543,0.202625,0.444487,0.944204,0.723496,0.100552,0.75791,0.842181,0.561205,0.805897,0.180996,0.643261,0.507251,0.418635,0.977593,0.88075,0.717356,0.572405,0.272555,0.242544,0.312088,0.530138,0.850735,0.0173576,0.786613,0.000202596,0.484253,0.976911,0.00462806,0.958144,0.203994,0.195548,0.313965,0.782116,0.386473,0.916036,0.349987,0.059875,0.42521,0.253339,0.566312,0.80925,0.417773,0.129664,0.181745,0.0248235,0.626961,0.97361,0.27722,0.957615,0.566009,0.545608,0.821733,0.256674,0.910914,0.769476,0.666208,0.662244,0.176403,0.506914,0.543317,0.37426,0.476812,0.900481,0.803676,0.353501,0.132357,0.778842,0.0510672,0.503237,0.33341,0.853693,0.249926,0.0527817,0.287483,0.161709,0.913505,0.805962,0.562058,0.496529,0.0389286,0.571036,0.469,0.722456,0.0185301,0.751142,0.142914,0.640923,0.399367,0.0607746,0.134518,0.107833,0.174904,0.991346,0.313923,0.0780506,0.200815,0.112187,0.876608,0.371122,0.248575,0.612937,0.929227,0.780799,0.26931,0.59666,0.631814,0.604163,0.403521,0.762176,0.117176,0.803509,0.354228,0.229678,0.599008,0.751367,0.331642,0.123953,0.271772,0.892811,0.874521,0.339002,0.605044,0.0603448,0.579902,0.140479,0.145846,0.57892,0.579316,0.040452,0.166308,0.38543,0.856428,0.210337,0.312111,0.561342,0.30224,0.334844,0.692547,0.691916,0.49417,0.526159,0.103882,0.874944,0.697186,0.99948,0.941741,0.758235,0.118234,0.0902854,0.610315,0.0210161,0.166939,0.822629,0.912242,0.385441,0.631917,0.727156,0.890403,0.96176,0.705251,0.354819,0.801468,0.546341,0.536142,0.770323,0.210191,0.592647,0.144733,0.159797,0.649507,0.961949,0.979106,0.0297815,0.362794,0.913472,0.558471,0.594791,0.192366,0.158508,0.519205,0.855915,0.330981,0.36517,0.495052,0.341035,0.626444,0.614038,0.724599,0.705621,0.436097,0.549408,0.847065,0.657177,0.0459241,0.425407,0.521159,0.0783045,0.350696,0.173002,0.519708,0.185615,0.444349,0.47275,0.267855,0.347478,0.412645,0.379361,0.390738,0.724409,0.70077,0.0680099,0.409707,0.920475,0.464511,0.359326,0.193985,0.341496,0.970825,0.55437,0.269589,0.871718,0.688664,0.640763,0.532337,0.993209,0.604393,0.726311,0.830361,0.326544,0.692525,0.0541157,0.0794036,0.708173,0.685215,0.451052,0.189125,0.995909,0.545169,0.112056,0.347132,0.639171,0.0442261,0.088459,0.281894,0.84532,0.403491,0.654724,0.877295,0.197028,0.219123,0.030379,0.0912671,0.0710685,0.630045,0.767998,0.7045,0.0918004,0.437967,0.355502,0.174809,0.447253,0.0344344,0.166227,0.374807,0.925375,0.462451,0.10713,0.908799,0.19733,0.602575,0.925107,0.206781,0.932748,0.817017,0.83963,0.445588,0.984598,0.957752,0.0271672,0.164388,0.158082,0.661002,0.946818,0.134312,0.000617266,0.452402,0.0919442,0.209885,0.658104,0.134519,0.893892,0.570034,0.617985,0.00430614,0.105598,0.476322,0.432746,0.231641,0.817123,0.212409,0.38183,0.603861,0.41046,0.203214,0.276907,0.188901,0.472544,0.275614,0.761796,0.90135,0.232094,0.478595,0.634231,0.172647,0.488748,0.249968,0.655445,0.387644,0.854619,0.734363,0.804406,0.370586,0.825449,0.407279,0.693226,0.562038,0.325175,0.531095,0.784856,0.493029,0.728658,0.642091,0.903118,0.147393,0.287672,0.663779,0.260232,0.648451,0.654513,0.404833,0.117833,0.339109,0.0254472,0.814855,0.943106,0.476129,0.57906,0.923458,0.772358,0.90166,0.493225,0.515321,0.262376,0.384798,0.236865,0.889272,0.491189,0.678701,0.915617,0.509729,0.300874,0.0708488,0.738046,0.483387,0.573083,0.789142,0.885181,0.778487,0.376778,0.548356,0.443453,0.361484,0.59838,0.250848,0.237429,0.251394,0.380619,0.806297,0.565361,0.444556,0.0517241,0.886621,0.423169,0.255007,0.92205,0.906088,0.637605,0.070968,0.154872,0.610129,0.363111,0.220353,0.80407,0.861713,0.947645,0.372887,0.244055,0.691756,0.618425,0.945106,0.962736,0.715956,0.0552692,0.472886,0.478137,0.767114,0.936026,0.480037,0.434965,0.0528523,0.103278,0.882772,0.796409,0.869048,0.317285,0.36788,0.0543783,0.671833,0.0986665,0.927159,0.0790548,0.644436,0.481987,0.424527,0.761259,0.43217,0.0703045,0.772703,0.998973,0.297141,0.688586,0.553216,0.905052,0.360611,0.551355,0.903284,0.881092,0.388893,0.110533,0.179306,0.0450663,0.430409,0.740106,0.41059,0.84556,0.804211,0.230038,0.501373,0.598093,0.759358,0.877322,0.551243,0.118382,0.958773,0.883268,0.227899,0.721602,0.211818,0.799794,0.910071,0.393007,0.300955,0.781625,0.981051,0.856677,0.528749,0.186824,0.810023,0.936645,0.713778,0.0502191,0.792849,0.510916,0.0670072,0.560281,0.116276,0.771062,0.963249,0.974452,0.658921,0.220606,0.459686,0.818752,0.948713,0.835582,0.111237,0.105547,0.14398,0.252705,0.469702,0.307393,0.26613,0.294002,0.300003,0.974558,0.533582,0.315631,0.464996,0.673162,0.541946,0.791597,0.84213,0.875891,0.808951,0.395934,0.731581,0.718264,0.226503,0.618886,0.246851,0.625891,0.746932,0.654249,0.319922,0.0768306,0.273743,0.470759,0.558375,0.900276,0.359028,0.366091,0.00787508,0.914546,0.587892,0.510609,0.104619,0.0114575,0.226675,0.475618,0.670919,0.495153,0.09372,0.0485533,0.693371,0.74527,0.983546,0.736965,0.000738263,0.0252576,0.00156564,0.627756,0.562132,0.242378,0.362774,0.858809,0.10853,0.141411,0.550337,0.849712,0.599541,0.474481,0.981694,0.129918,0.461918,0.0969023,0.43647,0.84944,0.610143,0.847682,0.0500385,0.0712025,0.0469492,0.247836,0.990632,0.838514,0.856982,0.0338039,0.165406,0.391682,0.107796,0.664465,0.523697,0.19903,0.258388,0.78437,0.65727,0.116964,0.422505,0.645519,0.427796,0.207387,0.901626,0.156677,0.213072,0.830599,0.81522,0.408379,0.735992,0.47432,0.661335,0.483655,0.809581,0.155886,0.0608814,0.63688,0.878549,0.255778,0.385811,0.670891,0.0853414,0.762181,0.37415,0.822869,0.789556,0.020295,0.472315,0.264559,0.1476,0.222816,0.102699,0.671563,0.402649,0.557572,0.493666,0.0654011,0.456508,0.0459965,0.208035,0.676532,0.216579,0.902,0.319318,0.0152621,0.932857,0.223851,0.950317,0.463587,0.181546,0.363142,0.796622,0.765652,0.63282,0.531575,0.00853622,0.0609744,0.202545,0.0796423,0.757039,0.0771781,0.143687,0.430879,0.0981712,0.433688,0.706716,0.256621,0.925472,0.608067,0.717018,0.265025,0.41816,0.975856,0.366047,0.538353,0.786347,0.971937,0.6478,0.703801,0.376308,0.181458,0.7161,0.764104,0.735651,0.497441,0.939794,0.849854,0.167246,0.686936,0.474456,0.130806,0.0538749,0.924914,0.533104,0.811025,0.63656,0.251063,0.29495,0.367485,0.526941,0.347543,0.379639,0.53677,0.0479709,0.0136511,0.901353,0.395942,0.720429,0.443753,0.804277,0.251256,0.311446,0.22897,0.4905,0.766888,0.89366,0.460584,0.289494,0.321286,0.184555,0.681827,0.97237,0.161423,0.207701,0.656585,0.980533,0.493599,0.184125,0.471866,0.451094,0.863803,0.798426,0.0374579,0.820415,0.687753,0.29744,0.280559,0.677105,0.654489,0.896343,0.788886,0.535508,0.854587,0.302807,0.565145,0.588409,0.46629,0.197842,0.401072,0.16765,0.0105883,0.375024,0.638083,0.532857,0.22272,0.475525,0.0333834,0.434092,0.215291,0.22718,0.118699,0.95327,0.235262,0.919163,0.842659,0.759894,0.739334,0.208718,0.577855,0.608052,0.0823261,0.164649,0.318697,0.638435,0.348223,0.665578,0.702941,0.119574,0.294701,0.447565,0.979941,0.312291,0.23194,0.705675,0.301174,0.0300014,0.297258,0.719143,|0.780548,0.5244,0.205238,0.155739,0.466959,0.607945,0.924903,0.339507,0.580834,0.676142,0.360896,0.662452,0.962635,0.727871,0.989424,0.432659,0.0787506,0.848299,0.50035,0.620698,0.501704,0.169528,0.817546,0.505337,0.145558,0.652593,0.579395,0.935782,0.301256,0.372482,0.810059,0.0344883,0.808442,0.309646,0.896734,0.480941,0.482015,0.961674,0.0238892,0.957515,0.998886,0.894207,0.821424,0.83788,0.448842,0.120189,0.353246,0.553694,0.806786,0.575267,0.446074,0.481204,0.155004,0.704691,0.403759,0.507133,0.642868,0.443665,0.784718,0.0835925,0.87096,0.411148,0.233273,0.123613,0.166285,0.249336,0.36619,0.924945,0.42121,0.917717,0.999249,0.654221,0.671012,0.237158,0.0407228,0.353886,0.516418,0.777738,0.401884,0.629844,0.187843,0.701575,0.679404,0.173421,0.72035,0.059392,0.457673,0.105245,0.812627,0.147721,0.671167,0.0117708,0.924022,0.434286,0.74673,0.891706,0.934662,0.0741073,0.5339,0.093954,0.418406,0.218192,0.964355,0.216688,0.344872,0.694816,0.757685,0.378603,0.0306709,0.43892,0.117666,0.867832,0.818254,0.0950422,0.755015,0.237279,0.0782908,0.493224,0.954469,0.128066,0.395205,0.927291,0.766596,0.987956,0.760626,0.859579,0.671338,0.515861,0.236984,0.271865,0.486392,0.478269,0.316693,0.0967042,0.991381,0.161436,0.00563276,0.330112,0.550197,0.533478,0.955519,0.701733,0.722333,0.615966,0.707771,0.993717,0.961178,0.510285,0.443286,0.203496,0.10161,0.672555,0.0022257,0.958387,0.738887,0.274068,0.2742,0.558146,0.449169,0.600495,0.0600738,0.0413041,0.488989,0.00224441,0.255396,0.656988,0.770716,0.882309,0.0170746,0.270067,0.888242,0.042473,0.943903,0.0831142,0.0615242,0.187537,0.624319,0.736453,0.747955,0.0146101,0.42079,0.762556,0.255381,0.894651,0.938833,0.391687,0.982626,0.358172,0.131852,0.965873,0.324294,0.106119,0.99211,0.875708,0.576451,0.333712,0.124375,0.257469,0.0789912,0.519368,0.572671,0.259043,0.299939,0.635301,0.990545,0.330106,0.437171,0.82901,0.530564,0.897798,0.941236,0.170978,0.118741,0.153814,0.799535,0.615283,0.819066,0.966961,0.703952,0.76581,0.190282,0.0274818,0.384948,0.770514,0.479451,0.42043,0.553543,0.728728,0.423054,0.937956,0.768573,0.462885,0.877156,0.67126,0.478394,0.68926,0.290286,0.396062,0.908479,0.930179,0.726384,0.833779,0.691064,0.862818,0.810044,0.840131,0.802181,0.552463,0.131527,0.502832,0.308251,0.14861,0.565458,0.155338,0.828287,0.880242,0.975388,0.471029,0.860524,0.106338,0.760192,0.177108,0.869524,0.882178,0.607374,0.491374,0.789051,0.492385,0.161937,0.351614,0.765178,0.0830534,0.262729,0.779023,0.471974,0.568683,0.570539,0.304724,0.758802,0.813207,0.856924,0.167676,0.636361,0.402939,0.50346,0.154006,0.294163,0.218928,0.136944,0.811352,0.307489,0.958829,0.607938,0.423436,0.932052,0.0262953,0.520439,0.842093,0.349158,0.778695,0.836634,0.809229,0.32432,0.370674,0.571123,0.17785,0.454308,0.554449,0.695935,0.470402,0.443279,0.464624,0.963525,0.313458,0.967404,0.0771626,0.741765,0.0133844,0.110612,0.676804,0.527264,0.0879164,0.828812,0.0197341,0.733284,0.903837,0.360294,0.0151475,0.373363,0.346655,0.00417918,0.19085,0.345769,0.166841,0.312493,0.19577,0.83107,0.424397,0.191691,0.694072,0.376387,0.90378,0.0710536,0.846142,0.0885399,0.459026,0.805691,0.139735,0.93309,0.684663,0.602429,0.651825,0.942202,0.507239,0.852693,0.0279949,0.514522,0.0518941,0.728625,0.642901,0.50823,0.182888,0.186076,0.747063,0.866617,0.0310898,0.888166,0.648744,0.856983,0.989849,0.802894,0.565304,0.833584,0.523045,0.537758,0.991733,0.448807,0.162884,0.473763,0.663791,0.483369,0.835126,0.686883,0.0193269,0.909572,0.585175,0.550404,0.266682,0.536108,0.662606,0.739847,0.571032,0.0981311,0.1951,0.32268,0.516096,0.880985,0.431384,0.974553,0.477222,0.279378,0.544806,0.978377,0.245602,0.88817,0.84624,0.384406,0.571157,0.281162,0.125301,0.351654,0.197984,0.359156,0.663039,0.886747,0.164435,0.909982,0.613433,0.601314,0.0373233,0.434791,0.668248,0.943286,0.892869,0.434038,0.153949,0.255116,0.94629,0.514102,0.0769473,0.868804,0.382618,0.808252,0.286672,0.649557,0.98643,0.605278,0.642255,0.813,0.643154,0.44692,0.309495,0.204892,0.320488,0.0943071,0.170717,0.849146,0.811577,0.519596,0.563171,0.278418,0.490215,0.82317,0.674791,0.425173,0.619304,0.522044,0.39977,0.51819,0.972607,0.401364,0.520293,0.19756,0.438859,0.00191718,0.747078,0.467783,0.00605655,0.0394654,0.415004,0.277759,0.419674,0.204253,0.97707,0.993068,0.668329,0.0125088,0.753492,0.262572,0.117631,0.500589,0.277193,0.814232,0.286694,0.0376204,0.918412,0.989705,0.427947,0.312011,0.199551,0.447496,0.868108,0.54014,0.956899,0.561415,0.44238,0.467132,0.286885,0.29647,0.280605,0.505798,0.792696,0.559864,0.463906,0.451083,0.34938,0.252445,0.636479,0.00539565,0.875847,0.290701,0.976953,0.94011,0.296375,0.947643,0.814198,0.723775,0.5936,0.896478,0.355749,0.871947,0.710233,0.812402,0.879938,0.748355,0.750002,0.701305,0.595835,0.466655,0.793451,0.482278,0.217996,0.360541,0.283151,0.949916,0.515206,0.227624,0.474295,0.330281,0.804176,0.045366,0.466247,0.456457,0.247595,0.672478,0.88655,0.269809,0.233936,0.841638,0.885983,0.577109,0.480049,0.86795,0.628027,0.960515,0.0761223,0.0393877,0.843337,0.70613,0.974707,0.847452,0.83175,0.0778173,0.307815,0.76028,0.359222,0.232911,0.272591,0.215727,0.335033,0.190259,0.763759,0.564397,0.146875,0.166472,0.937715,0.295751,0.0586933,0.922965,0.000832736,0.69101,0.54708,0.315285,0.952591,0.856578,0.0680299,0.621951,0.516943,0.501912,0.669037,0.778475,0.794866,0.110418,0.498033,0.27551,0.911388,0.429808,0.984775,0.792366,0.587969,0.0173336,0.439349,0.327082,0.519405,0.366517,0.389798,0.0499847,0.0136307,0.523357,0.009278,0.453937,0.873432,0.801469,0.182122,0.0464574,0.721624,0.16371,0.317173,0.202671,0.844578,0.229011,0.809618,0.630345,0.00928342,0.256512,0.191785,0.870458,0.197598,0.0594665,0.619445,0.222128,0.288143,0.243779,0.912848,0.823445,0.171793,0.89272,0.568804,0.0416588,0.0911626,0.956928,0.505792,0.00521725,0.986557,0.271603,0.132207,0.811864,0.0104292,0.490087,0.907308,0.482924,0.245666,0.307478,0.00884044,0.871644,0.00784075,0.910834,0.21145,0.0923999,0.916184,0.72801,0.0610819,0.493759,0.563843,0.644402,0.264076,0.907774,0.535303,0.675093,0.805962,0.207931,0.282489,0.428798,0.956338,0.0860219,0.352326,0.583335,0.820473,0.72517,0.915405,0.194986,0.780244,0.537771,0.241848,0.171415,0.719016,0.721246,0.143823,0.891562,0.554985,0.372439,0.175818,0.169157,0.754263,0.358267,0.526627,0.576515,0.443549,0.815821,0.989965,0.823322,0.724579,0.835503,0.358919,0.627068,0.843709,0.461319,0.280562,0.611944,0.751977,0.975729,0.794724,0.825233,0.623722,0.728482,0.0830536,0.573391,0.620692,0.174416,0.599161,0.0253229,0.491803,0.0717584,0.661309,0.248322,0.739848,0.884492,0.146691,0.511103,0.520017,0.136455,0.444098,0.395772,0.347366,0.37044,0.255553,0.717157,0.117697,0.449352,0.0972623,0.0472804,0.490228,0.311559,0.566959,0.160012,0.494475,0.0410743,0.928768,0.449064,0.642044,0.290113,0.257927,0.507844,0.716243,0.854141,0.61291,0.0433552,0.721458,0.699585,0.826384,0.870082,0.0384563,0.388988,0.255055,0.0670499,0.0749658,0.239414,0.830096,0.743801,0.835163,0.788838,0.715881,0.0582233,0.73935,0.0121347,0.909574,0.344175,0.683984,0.732117,0.00751245,0.616798,0.487594,0.0833544,0.891695,0.280226,0.411466,0.267171,0.879712,0.778948,0.163192,0.348626,0.621979,0.523403,0.250082,0.68308,0.832622,0.0915028,0.0938266,0.485251,0.105722,0.648995,0.625941,0.630986,0.0280297,0.504307,0.370067,0.633426,0.690318,0.917254,0.775843,0.73658,0.450989,0.970116,0.370931,0.849075,0.965937,0.0371095,0.877153,0.366625,0.156863,0.745991,0.525664,0.636735,0.733405,0.301369,0.601269,0.208061,0.435944,0.693237,0.604564,0.156352,0.0130951,0.791538,0.149372,0.0604156,0.426001,0.678688,0.6132,0.413595,0.254841,0.0765436,0.577202,0.444463,0.286436,0.573798,0.0946537,0.816902,0.878904,0.763492,0.682014,0.216268,0.888635,0.859003,0.770845,0.0345032,0.817562,0.626571,0.25135,0.568764,0.575711,0.82239,0.13593,0.987849,0.57982,0.0166579,0.747601,0.590704,0.0287355,0.214456,0.964535,0.122345,0.410696,0.456668,0.116836,0.471274,0.865042,0.945316,0.45418,0.236504,0.00611013,0.476562,0.459999,0.457216,0.648224,0.710488,0.623959,0.860183,0.377867,0.564,0.850117,0.209434,0.509452,0.778117,0.165721,0.940645,0.256697,0.649483,0.907272,0.154824,0.667219,0.774583,0.0686361,0.561775,0.787598,0.585571,0.50695,0.0575711,0.932826,0.393431,0.560251,0.680783,0.190502,0.598431,0.286837,0.517107,0.104491,0.107502,0.327814,0.0128052,0.069045,0.581195,0.815718,0.40122,0.286155,0.648616,0.199744,0.974973,0.731731,0.191783,0.967827,0.642307,0.687711,0.47905,0.814398,0.443333,0.677328,0.136635,0.393868,0.35268,0.948766,0.980095,0.48024,0.475326,0.192988,0.0524195,0.838885,0.318255,0.766823,0.138528,0.572816,0.075727,0.0287624,0.642115,0.867767,0.222544,0.920493,0.671806,0.49681,0.555185,0.811273,0.910052,0.202646,0.781893,0.69603,0.695889,0.43302,0.759776,0.847223,0.257525,0.316847,0.865827,0.835518,0.565682,0.448918,0.549225,0.387414,0.671215,0.474774,0.472075,0.96627,0.559431,0.438054,0.36623,0.801953,0.92128,0.377798,0.09727,0.126902,0.880928,0.365395,0.346946,0.320563,0.191674,0.220731,0.453145,0.325819,0.56482,0.243403,0.924727,0.820749,|0.541606,0.792471,0.603422,0.096716,0.0383241,0.0139526,0.13127,0.148358,0.150419,0.945436,0.944342,0.935367,0.730092,0.143638,0.151781,0.772619,0.327268,0.0290549,0.436277,0.0162374,0.401909,0.298819,0.204311,0.963231,0.171359,0.833595,0.0429004,0.923436,0.292633,0.110937,0.760736,0.52413,0.0847522,0.775121,0.867063,0.822667,0.810847,0.188039,0.400465,0.727209,0.514809,0.0286247,0.399175,0.992814,0.847666,0.432917,0.602932,0.36193,0.812169,0.396227,0.441998,0.443885,0.775135,0.737413,0.625219,0.958292,0.432691,0.408158,0.955646,0.381798,0.454956,0.188656,0.454792,0.0877076,0.526494,0.837919,0.0301185,0.541512,0.504366,0.214423,0.0586913,0.706856,0.57003,0.348714,0.127662,0.965656,0.793078,0.443661,0.381474,0.45798,0.0120141,0.249931,0.693014,0.313582,0.837252,0.0459424,0.372659,0.121467,0.424067,0.185827,0.387117,0.378842,0.720683,0.97085,0.66863,0.986329,0.814977,0.0682928,0.85363,0.289322,0.381307,0.926088,0.208629,0.0257993,0.338615,0.750116,0.566138,0.936045,0.698762,0.995974,0.903997,0.703022,0.265429,0.447322,0.420564,0.725202,0.975376,0.0390906,0.449557,0.290371,0.593156,0.947528,0.235403,0.474207,0.177254,0.833667,0.293414,0.457265,0.992938,0.547094,0.889119,0.133986,0.236817,0.597996,0.915115,0.906203,0.747102,0.629778,0.647602,0.284691,0.985253,0.0904496,0.201127,0.154297,0.686272,0.367819,0.567372,0.339887,0.908417,0.816379,0.114998,0.0207691,0.190597,0.965733,0.676866,0.701014,0.447485,0.9985,0.34601,0.106564,0.986184,0.0704314,0.122528,0.0295685,0.160366,0.669158,0.85534,0.787346,0.719409,0.968884,0.284301,0.72091,0.44228,0.0978166,0.279226,0.481317,0.39272,0.463181,0.713799,0.287954,0.278284,0.627036,0.647049,0.597807,0.907935,0.485464,0.0998527,0.979968,0.910824,0.234995,0.234618,0.141017,0.200153,0.316915,0.246719,0.886006,0.123774,0.621788,0.972481,0.931105,0.692523,0.858814,0.661823,0.228459,0.0322974,0.393997,0.0973963,0.890868,0.407875,0.991119,0.439231,0.0008834,0.335674,0.810303,0.66157,0.877083,0.479371,0.756583,0.0682523,0.166551,0.710089,0.707658,0.792642,0.369776,0.286964,0.369714,0.179374,0.580881,0.30803,0.628646,0.501574,0.0617741,0.551503,0.490439,0.598931,0.709917,0.377961,0.0234085,0.716146,0.056944,0.660696,0.719114,0.364889,0.0701424,0.836621,0.368821,0.414366,0.700898,0.543226,0.342976,0.155514,0.782675,0.530017,0.296081,0.895697,0.254704,0.391921,0.688813,0.121978,0.197374,0.275528,0.652813,0.356461,0.454657,0.238814,0.0124366,0.685797,0.198867,0.450291,0.355161,0.979525,0.804598,0.832786,0.966682,0.20011,0.804773,0.476122,0.522279,0.177906,0.839451,0.424605,0.779391,0.196165,0.308221,0.27944,0.0533726,0.419247,0.388899,0.694588,0.167065,0.614296,0.125826,0.948217,0.0637032,0.572322,0.814346,0.283172,0.423048,0.903524,0.549913,0.155337,0.895769,0.168086,0.989727,0.108883,0.73967,0.827395,0.171446,0.0687873,0.429461,0.803246,0.258062,0.291355,0.183117,0.0531755,0.81713,0.256847,0.678321,0.592599,0.718536,0.782773,0.0767186,0.626077,0.518953,0.669803,0.196145,0.64704,0.030511,0.34805,0.151252,0.192209,0.70439,0.599883,0.454814,0.707526,0.88846,0.823225,0.808436,0.853752,0.264282,0.280747,0.645066,0.318594,0.144227,0.420539,0.354521,0.140072,0.49635,0.949133,0.109284,0.596478,0.349321,0.845719,0.741786,0.5914,0.0221766,0.467156,0.656108,0.0507284,0.49775,0.828907,0.714418,0.548402,0.10677,0.614128,0.935586,0.708551,0.917096,0.633291,0.72951,0.947748,0.645341,0.0202544,0.395956,0.712546,0.617872,0.135573,0.478495,0.0418546,0.432782,0.398755,0.711009,0.0243415,0.670633,0.0555841,0.321635,0.68545,0.68783,0.149171,0.281603,0.788361,0.539095,0.405831,0.158698,0.185939,0.890782,0.0250512,0.892976,0.787534,0.428016,0.485417,0.722987,0.199328,0.0295781,0.486276,0.796242,0.192683,0.399705,0.745079,0.064,0.331012,0.330692,0.871501,0.112374,0.0894009,0.281408,0.878241,0.320321,0.0209102,0.258923,0.768759,0.851572,0.740091,0.673909,0.499628,0.214207,0.788039,0.642802,0.286376,0.313672,0.500217,0.160927,0.497195,0.411905,0.155739,0.165561,0.10306,0.719979,0.161416,0.975549,0.44607,0.119522,0.0356861,0.171272,0.450752,0.158717,0.432642,0.47995,0.313911,0.920964,0.76767,0.417648,0.059625,0.638498,0.262649,0.59198,0.552214,0.335771,0.360906,0.359586,0.979909,0.291284,0.171857,0.76964,0.822556,0.163757,0.863451,0.900076,0.148166,0.425737,0.0295212,0.666774,0.440584,0.719464,0.760663,0.201384,0.388616,0.601768,0.850185,0.35966,0.876245,0.731316,0.982922,0.206288,0.733851,0.739906,0.506558,0.247346,0.952167,0.527068,0.853672,0.759921,0.424477,0.447129,0.589548,0.490041,0.190456,0.617313,0.437523,0.762761,0.550832,0.839073,0.659592,0.115198,0.116797,0.811094,0.520443,0.678715,0.61161,0.789595,0.654201,0.268369,0.982582,0.603193,0.395428,0.0269254,0.319512,0.495308,0.484413,0.537227,0.0661266,0.778987,0.611375,0.100038,0.806637,0.42478,0.618523,0.603246,0.980288,0.589261,0.716352,0.983366,0.358384,0.614051,0.648146,0.439044,0.873904,0.677176,0.923649,0.530534,0.364253,0.106243,0.036262,0.632733,0.465086,0.564752,0.971729,0.929933,0.252128,0.622466,0.639566,0.0154063,0.0005759,0.844874,0.210684,0.267748,0.357184,0.0508174,0.706194,0.518151,0.385629,0.449516,0.242476,0.890789,0.468953,0.842971,0.661488,0.897229,0.933756,0.356125,0.188647,0.338591,0.373155,0.401686,0.665151,0.917727,0.169802,0.194741,0.0348882,0.411495,0.860799,0.547248,0.97185,0.102302,0.469768,0.166594,0.296562,0.197137,0.571894,0.857687,0.981009,0.0475168,0.574485,0.196246,0.556514,0.400925,0.23505,0.518126,0.801417,0.153119,0.460616,0.870432,0.898488,0.0837591,0.331809,0.880547,0.0030933,0.705386,0.331982,0.495787,0.260371,0.604085,0.454513,0.513901,0.0192032,0.432226,0.332669,0.984007,0.92024,0.00992447,0.404069,0.430936,0.445977,0.672863,0.542253,0.934179,0.294401,0.886055,0.506985,0.332083,0.854321,0.461281,0.219014,0.975283,0.391835,0.0732731,0.22668,0.645234,0.654775,0.0208598,0.93526,0.784288,0.116137,0.436653,0.386069,0.155489,0.927513,0.763549,0.148095,0.17967,0.678698,0.542009,0.465297,0.436385,0.792583,0.404299,0.27719,0.866249,0.104675,0.997567,0.684487,0.651908,0.0531114,0.678422,0.768323,0.590584,0.900851,0.256753,0.768018,0.281001,0.118849,0.517591,0.726647,0.461258,0.245701,0.762402,0.564334,0.913062,0.242723,0.89426,0.610293,0.0551823,0.575831,0.06535,0.667053,0.616837,0.612901,0.645071,0.838444,0.735231,0.211339,0.249199,0.514647,0.145144,0.29559,0.503221,0.475135,0.563793,0.960591,0.107515,0.771874,0.538107,0.508953,0.714875,0.610379,0.63653,0.511378,0.431021,0.937719,0.406746,0.4002,0.491866,0.840813,0.616168,0.94394,0.924548,0.451696,0.457896,0.514137,0.63573,0.0886135,0.7912,0.779353,0.469819,0.5083,0.438851,0.751776,0.43946,0.958742,0.840328,0.32629,0.582554,0.412225,0.619069,0.748385,0.776305,0.783292,0.654953,0.573557,0.61561,0.991958,0.513426,0.315541,0.0146143,0.726468,0.675471,0.357375,0.88164,0.918776,0.223507,0.266788,0.695978,0.105766,0.114459,0.278552,0.603764,0.176485,0.636074,0.00247592,0.340499,0.24887,0.618281,0.0226099,0.878054,0.201421,0.953863,0.312426,0.549545,0.910258,0.120721,0.621324,0.424799,0.939903,0.55427,0.959526,0.650614,0.840399,0.503608,0.418706,0.0569945,0.319607,0.806931,0.348372,0.899801,0.239883,0.384412,0.0086537,0.783492,0.123966,0.317367,0.708273,0.436051,0.264674,0.0550312,0.792682,0.425151,0.540389,0.407771,0.958041,0.315004,0.600169,0.322768,0.720139,0.724715,0.661771,0.904287,0.150725,0.529862,0.324076,0.354492,0.83371,0.240034,0.133205,0.447509,0.556485,0.775014,0.688019,0.891175,0.639338,0.158486,0.725007,0.457807,0.530491,0.891313,0.323683,0.627852,0.0190453,0.0118118,0.719483,0.454275,0.86576,0.26807,0.219809,0.350287,0.637683,0.872334,0.692443,0.110917,0.224177,0.161523,0.204663,0.694969,0.422161,0.879092,0.527922,0.745292,0.262351,0.697941,0.557347,0.650888,0.450935,0.417612,0.319273,0.54743,0.152333,0.646045,0.857444,0.543464,0.528579,0.901956,0.237541,0.520056,0.0313135,0.519014,0.178083,0.849336,0.948347,0.450869,0.1118,0.657204,0.116902,0.851493,0.796285,0.440829,0.379505,0.706118,0.923615,0.541733,0.464858,0.575693,0.411052,0.1807,0.0651997,0.772091,0.745583,0.529386,0.113,0.649767,0.664428,0.952626,0.350401,0.259914,0.754142,0.427062,0.375893,0.939588,0.416408,0.105706,0.749639,0.817831,0.263275,0.815168,0.40847,0.741821,0.0671237,0.620605,0.639065,0.804033,0.701959,0.575722,0.97812,0.346588,0.53695,0.241702,0.272629,0.337773,0.0304096,0.532314,0.942352,0.480776,0.163648,0.943423,0.922405,0.4872,0.227042,0.933827,0.990314,0.525118,0.667409,0.350224,0.62053,0.677507,0.203203,0.878826,0.636865,0.447468,0.852723,0.584162,0.0271656,0.141639,0.962483,0.738511,0.268733,0.252225,0.577137,0.851714,0.196554,0.736716,0.900134,0.244269,0.0483271,0.735171,0.492879,0.330392,0.595589,0.547479,0.748723,0.0573633,0.30842,0.272323,0.443354,0.140785,0.111148,0.836031,0.520331,0.209334,0.0903277,0.907508,0.330546,0.716235,0.176861,0.887417,0.951392,0.0706548,0.799914,0.178726,0.657289,0.0318474,0.616378,0.888796,0.942108,0.308888,0.665183,0.514647,0.746227,0.0535609,0.547291,0.965655,0.562893,0.709361,0.239337,0.825983,0.907002,0.48385,0.867986,0.455289,0.164462,0.0938837,0.0886958,0.943237,|0.223819,0.461936,0.295241,0.0407565,0.917608,0.0168184,0.519762,0.383439,0.0217752,0.203837,0.516704,0.682844,0.330775,0.9387,0.740511,0.0143316,0.422656,0.130249,0.201845,0.505986,0.468711,0.696557,0.511737,0.364606,0.679574,0.15111,0.631162,0.77348,0.215802,0.412834,0.588982,0.768814,0.150853,0.630377,0.704341,0.372242,0.132456,0.752274,0.110377,0.846379,0.850335,0.869426,0.103555,0.143319,0.675171,0.8092,0.0891974,0.305501,0.370246,0.0306264,0.507698,0.546836,0.0105804,0.222149,0.670624,0.272974,0.860458,0.806159,0.840831,0.368585,0.6764,0.958464,0.599872,0.779141,0.389456,0.566133,0.844793,0.920875,0.772746,0.728769,0.841017,0.454166,0.111907,0.538817,0.248656,0.910805,0.888049,0.384593,0.314208,0.148775,0.502723,0.379553,0.638751,0.612805,0.386011,0.0316331,0.180762,0.0388033,0.153107,0.614875,0.377634,0.837475,0.519621,0.296892,0.735164,0.0510721,0.730652,0.743257,0.762407,0.9877,0.362382,0.205957,0.868796,0.0966615,0.714664,0.100126,0.300565,0.390328,0.697464,0.481306,0.941343,0.888852,0.498718,0.035626,0.833795,0.19032,0.548239,0.19862,0.684805,0.556082,0.688187,0.734254,0.343278,0.870717,0.549493,0.242125,0.114357,0.357161,0.22859,0.321038,0.226357,0.84128,0.53349,0.0640697,0.0324964,0.188202,0.0889754,0.380989,0.160934,0.441392,0.633569,0.137566,0.429241,0.374522,0.838225,0.313032,0.611769,0.857332,0.776754,0.0465207,0.524645,0.30587,0.695214,0.0334563,0.231326,0.437225,0.384588,0.650248,0.670903,0.458867,0.945341,0.436714,0.461798,0.384096,0.05273,0.312427,0.26298,0.354699,0.594412,0.308946,0.628154,0.88464,0.237738,0.42284,0.818699,0.260735,0.710487,0.642993,0.547042,0.573633,0.307327,0.155946,0.211598,0.388293,0.633769,0.550361,0.158019,0.86212,0.485413,0.143419,0.193409,0.999766,0.452879,0.863198,0.451189,0.409914,0.0508428,0.854367,0.591672,0.419581,0.473006,0.0415289,0.557119,0.235264,0.813705,0.57447,0.32502,0.379478,0.25221,0.825593,0.668378,0.921184,0.604339,0.973274,0.571988,0.309234,0.525979,0.354582,0.480599,0.786709,0.701834,0.761073,0.497161,0.823104,0.10862,0.17159,0.00120562,0.163125,0.484383,0.139696,0.898364,0.474923,0.104666,0.464932,0.890279,0.424079,0.593212,0.518106,0.0826575,0.83996,0.215561,0.130372,0.31048,0.696379,0.0302823,0.138333,0.778267,0.561595,0.621651,0.201106,0.390131,0.113258,0.277594,0.329964,0.297081,0.20565,0.745115,0.490764,0.301921,0.700399,0.122062,0.780792,0.522682,0.562467,0.519614,0.810163,0.175627,0.329607,0.442687,0.889959,0.224803,0.924712,0.45315,0.862852,0.500874,0.159701,0.894819,0.113243,0.382523,0.274402,0.469335,0.554075,0.0674708,0.898091,0.29462,0.447387,0.155895,0.967876,0.236997,0.601937,0.702682,0.466865,0.916704,0.429855,0.118691,0.13156,0.23555,0.9714,0.71476,0.465539,0.572737,0.777941,0.443284,0.602504,0.825303,0.458553,0.213916,0.768824,0.754052,0.300478,0.114557,0.794249,0.982671,0.329187,0.0274199,0.81965,0.16506,0.763532,0.986044,0.760201,0.772556,0.517005,0.669411,0.732442,0.8235,0.830907,0.143546,0.54583,0.654363,0.297461,0.719432,0.982903,0.19373,0.781732,0.283802,0.937708,0.0373952,0.0797725,0.348573,0.832626,0.102314,0.657879,0.794163,0.571156,0.193217,0.514728,0.838742,0.963276,0.600221,0.196232,0.286157,0.61527,0.318467,0.906481,0.154499,0.19926,0.531109,0.610601,0.987552,0.577684,0.0288283,0.0278124,0.803719,0.693898,0.409977,0.77943,0.537099,0.906408,0.0654244,0.567943,0.161113,0.662918,0.420654,0.23214,0.0100882,0.276837,0.230882,0.651063,0.701324,0.0818377,0.979924,0.138342,0.846832,0.615466,0.221635,0.208322,0.080488,0.50873,0.752219,0.608522,0.842727,0.296452,0.594496,0.133626,0.948961,0.525317,0.33452,0.643759,0.761481,0.902833,0.955431,0.0985681,0.210972,0.167384,0.030412,0.767762,0.0947456,0.567169,0.198071,0.0472694,0.3075,0.176582,0.107281,0.403395,0.0775694,0.575749,0.197925,0.297171,0.884128,0.332659,0.917583,0.753455,0.575247,0.701297,0.096862,0.775276,0.63793,0.725152,0.609461,0.484784,0.210686,0.756752,0.76696,0.535658,0.331438,0.707591,0.0177621,0.214229,0.256072,0.614949,0.0386958,0.258456,0.259702,0.202898,0.773248,0.194883,0.31249,0.0921719,0.775016,0.236843,0.89038,0.22591,0.590978,0.750864,0.654291,0.235412,0.284858,0.574814,0.6542,0.0726125,0.89886,0.0714372,0.188248,0.303798,0.740956,0.265121,0.268911,0.99795,0.162679,0.0268976,0.469742,0.218909,0.659335,0.51627,0.722853,0.624257,0.75292,0.28008,0.746006,0.117644,0.23863,0.33283,0.593218,0.696682,0.548472,0.0480592,0.483783,0.127639,0.930699,0.625053,0.799998,0.643244,0.107818,0.393656,0.989142,0.433796,0.831446,0.212844,0.0107942,0.20683,0.204601,0.347045,0.734195,0.514415,0.678436,0.792188,0.253925,0.401885,0.0750465,0.142042,0.464366,0.933029,0.723869,0.902329,0.658486,0.20929,0.361683,0.308502,0.044597,0.426213,0.576454,0.346438,0.456077,0.286598,0.500951,0.231967,0.182777,0.643802,0.686913,0.197396,0.574672,0.822146,0.681223,0.11959,0.385697,0.93513,0.703464,0.180791,0.327066,0.221743,0.460054,0.780923,0.636933,0.623344,0.558453,0.582313,0.735739,0.958319,0.419932,0.564024,0.852357,0.00314611,0.360119,0.348919,0.790424,0.240644,0.0608369,0.199906,0.824677,0.782489,0.0969733,0.288368,0.703336,0.114665,0.360237,0.634363,0.76547,0.687654,0.906574,0.843144,0.183357,0.736654,0.291726,0.195701,0.549004,0.575262,0.223658,0.517929,0.647434,0.153042,0.618275,0.142906,0.750473,0.971856,0.0964888,0.0234895,0.71399,0.582705,0.931377,0.0169654,0.308352,0.238208,0.686985,0.241134,0.34827,0.485239,0.333754,0.308404,0.637825,0.602335,0.780566,0.527134,0.098942,0.473849,0.784819,0.862475,0.468098,0.400779,0.40654,0.437854,0.927207,0.208588,0.374093,0.031931,0.166663,0.69965,0.636004,0.778377,0.0492766,0.840381,0.812747,0.176359,0.192422,0.632734,0.616321,0.804655,0.417658,0.212811,0.226028,0.374952,0.626414,0.461341,0.408074,0.803718,0.725222,0.725321,0.76877,0.274562,0.369671,0.174036,0.273406,0.90399,0.0825073,0.693172,0.874498,0.882882,0.476573,0.535041,0.742921,0.192161,0.481704,0.748497,0.425366,0.208639,0.187451,0.751705,0.973799,0.403298,0.224546,0.756191,0.205693,0.601868,0.24113,0.258516,0.904183,0.171001,0.477953,0.60247,0.739276,0.70843,0.681741,0.0852923,0.100885,0.731537,0.89025,0.873545,0.00475347,0.590958,0.398698,0.219417,0.158301,0.295967,0.735189,0.59719,0.486613,0.504746,0.584248,0.42359,0.378939,0.158246,0.563436,0.817352,0.163523,0.974922,0.905892,0.107518,0.562351,0.420154,0.103307,0.242782,0.776099,0.337234,0.363777,0.780932,0.399586,0.109061,0.911321,0.980612,0.223788,0.387439,0.948416,0.982046,0.306159,0.765161,0.363114,0.024681,0.767115,0.617643,0.00541258,0.3393,0.113561,0.688119,0.404297,0.133669,0.491899,0.461421,0.465466,0.792974,0.46331,0.569316,0.37502,0.135252,0.998616,0.70413,0.0114767,0.124798,0.0811312,0.587565,0.94102,0.331189,0.663026,0.745352,0.331636,0.397378,0.493699,0.596103,0.494325,0.116741,0.394305,0.65612,0.0141555,0.133185,0.264909,0.00856012,0.613675,0.38148,0.362535,0.22996,0.075828,0.0765172,0.523506,0.825519,0.254518,0.293981,0.997083,0.644196,0.724691,0.750673,0.438157,0.144111,0.373663,0.351103,0.096668,0.425937,0.790277,0.415734,0.396496,0.396607,0.0748131,0.791296,0.245315,0.0687392,0.85564,0.632028,0.905113,0.746477,0.264254,0.89629,0.50206,0.900217,0.883902,0.395125,0.286607,0.738423,0.545534,0.50552,0.190994,0.119229,0.71338,0.956558,0.582064,0.268613,0.780144,0.472414,0.0839443,0.938232,0.955996,0.715604,0.721574,0.0864028,0.445923,0.107653,0.622138,0.387185,0.402108,0.132607,0.730195,0.764033,0.27289,0.524127,0.178472,0.103517,0.813537,0.211849,0.439617,0.540086,0.721796,0.403943,0.515044,0.122434,0.80401,0.782286,0.287532,0.670959,0.812975,0.0339313,0.065975,0.713612,0.251508,0.166352,0.419684,0.0251485,0.349108,0.359083,0.152615,0.459048,0.880156,0.28313,0.805644,0.73427,0.537569,0.518741,0.869778,0.644368,0.798503,0.477309,0.926334,0.57558,0.0640027,0.845634,0.0112732,0.66722,0.458677,0.785581,0.277594,0.698146,0.371846,0.90194,0.0366325,0.443559,0.135882,0.22053,0.3878,0.132597,0.680668,0.0221093,0.343488,0.824093,0.710535,0.501334,0.396876,0.568234,0.543921,0.788585,0.105314,0.248089,0.00981361,0.556073,0.289884,0.997844,0.685366,0.579331,0.398808,0.573287,0.214146,0.774707,0.36125,0.566295,0.263947,0.553048,0.16083,0.0248038,0.344016,0.384002,0.576584,0.359751,0.848164,0.0790333,0.2238,0.527458,0.186411,0.300547,0.985171,0.123273,0.365362,0.722239,0.511917,0.98486,0.00306404,0.525847,0.880709,0.851871,0.157417,0.97676,0.952373,0.45048,0.86237,0.0201065,0.0215065,0.147913,0.137358,0.129004,0.687631,0.79619,0.948491,0.372683,0.382957,0.00668859,0.529164,0.74027,0.0148658,0.354539,0.99078,0.10223,0.206457,0.149899,0.567571,0.999336,0.0166214,0.632531,0.288785,0.967215,0.366474,0.749206,0.779932,0.414252,0.0579661,0.343918,0.849656,0.10023,0.131712,0.360959,0.726315,0.107818,0.898349,0.661085,0.144551,0.483532,0.408608,0.925117,0.963299,0.634643,0.521112,0.831149,0.554289,0.898697,0.928179,0.866425,0.270595,0.482881,0.710556,0.294807,0.462405,0.752356,0.123234,0.0628037,0.744501,0.124956,0.130029,0.0800827,0.228763,0.779863,0.516156,0.463461,0.221428,0.605628,0.217848,0.38276,0.56407,0.820531,|0.817453,0.0374477,0.142436,0.620004,0.499121,0.516473,0.500509,0.485807,0.927381,0.148169,0.415945,0.12038,0.912337,0.446649,0.540493,0.808913,0.130415,0.439757,0.184326,0.614989,0.724743,0.0927532,0.282271,0.833334,0.397254,0.0116534,0.918867,0.458938,0.790177,0.289341,0.439079,0.0684016,0.682401,0.512893,0.411671,0.736902,0.799493,0.0412921,0.818937,0.933066,0.733254,0.611116,0.253612,0.222934,0.795613,0.365231,0.377564,0.11906,0.991757,0.43229,0.664323,0.788104,0.426569,0.423218,0.61097,0.214123,0.522748,0.994657,0.98083,0.456503,0.424132,0.439559,0.441135,0.639925,0.466956,0.119716,0.122903,0.99348,0.422683,0.487101,0.613535,0.373135,0.120211,0.945668,0.297346,0.813388,0.0088042,0.969057,0.686658,0.545218,0.993856,0.0410761,0.524846,0.310612,0.175274,0.708444,0.0377158,0.323588,0.834689,0.167964,0.52688,0.0719314,0.37042,0.475482,0.0891942,0.516385,0.846428,0.661745,0.390601,0.357579,0.0452146,0.215183,0.704947,0.0883399,0.216357,0.240715,0.0923014,0.0283124,0.70087,0.308068,0.116431,0.991357,0.686663,0.156387,0.0204198,0.298849,0.561009,0.529941,0.160559,0.3802,0.785504,0.579674,0.102051,0.607085,0.14914,0.103508,0.753794,0.188005,0.115513,0.988471,0.64369,0.0772879,0.967518,0.913471,0.667556,0.495764,0.0547429,0.218543,0.707479,0.559832,0.828492,0.764648,0.25505,0.906217,0.100459,0.772002,0.506073,0.114307,0.780551,0.0309954,0.0408404,0.577987,0.695556,0.115164,0.741446,0.30035,0.600808,0.414093,0.509015,0.685399,0.195045,0.250875,0.835599,0.154259,0.414399,0.619582,0.241224,0.406039,0.0924568,0.762949,0.488535,0.53925,0.632384,0.333474,0.0565429,0.404207,0.072758,0.0785914,0.0300903,0.336034,0.508666,0.0284814,0.319518,0.888786,0.661041,0.108732,0.273654,0.0902821,0.101,0.463522,0.389962,0.837597,0.119154,0.817682,0.226973,0.860779,0.198648,0.207345,0.0756937,0.189255,0.966912,0.378919,0.587889,0.598789,0.410515,0.24745,0.984049,0.00362247,0.131164,0.672413,0.806208,0.957846,0.795222,0.690364,0.291023,0.218605,0.695861,0.976464,0.97616,0.767743,0.281336,0.319934,0.167996,0.761521,0.0559704,0.489112,0.779356,0.318231,0.352121,0.981326,0.259181,0.949409,0.139817,0.0210644,0.204732,0.326631,0.835708,0.457697,0.754498,0.619327,0.957708,0.636685,0.65928,0.84335,0.77208,0.993862,0.617309,0.658674,0.362747,0.254034,0.452867,0.800751,0.0656162,0.82154,0.711712,0.965194,0.657038,0.126853,0.330239,0.104292,0.342874,0.709518,0.940305,0.506658,0.458789,0.0524715,0.79172,0.99048,0.69595,0.709682,0.44119,0.0512536,0.275785,0.0108993,0.343904,0.397066,0.871311,0.0189824,0.407121,0.704858,0.119304,0.645988,0.271403,0.0974262,0.353142,0.842202,0.883964,0.146393,0.777859,0.12612,0.0873398,0.482831,0.924621,0.0848852,0.496356,0.0970938,0.523428,0.106463,0.6284,0.667075,0.639789,0.786341,0.496869,0.0369562,0.469195,0.553866,0.555153,0.87381,0.166842,0.622945,0.601567,0.63603,0.193263,0.759841,0.508246,0.354514,0.643905,0.712197,0.305926,0.672562,0.518026,0.665883,0.417916,0.178416,0.0710344,0.873249,0.335158,0.47024,0.829406,0.152487,0.881978,0.190167,0.481155,0.460055,0.117786,0.747741,0.150403,0.838498,0.679903,0.846372,0.341508,0.333372,0.145069,0.303311,0.694286,0.61372,0.0630395,0.663068,0.228344,0.122502,0.44637,0.80021,0.686483,0.141596,0.637676,0.814124,0.476373,0.882839,0.50788,0.862463,0.328519,0.817158,0.667394,0.653676,0.382612,0.829401,0.661904,0.188863,0.6621,0.99899,0.529542,0.533367,0.795691,0.717465,0.831239,0.800502,0.0718089,0.960189,0.929707,0.576272,0.348995,0.118927,0.169134,0.631644,0.814005,0.991323,0.159605,0.0402799,0.698208,0.628638,0.0634257,0.471567,0.117939,0.256078,0.692444,0.193802,0.52107,0.579,0.685509,0.36208,0.861535,0.728655,0.552148,0.432704,0.0474196,0.169819,0.0655751,0.583218,0.891602,0.348256,0.563753,0.272041,0.851566,0.796072,0.154473,0.550366,0.736848,0.208294,0.590708,0.762108,0.089572,0.840766,0.415963,0.102384,0.847719,0.862525,0.0242028,0.295675,0.227671,0.28887,0.176591,0.201485,0.13114,0.77623,0.811507,0.180943,0.934469,0.57758,0.275362,0.921279,0.933356,0.505569,0.0531546,0.47837,0.00946128,0.120201,0.5844,0.726402,0.675065,0.144778,0.75934,0.301584,0.579988,0.468682,0.297719,0.563356,0.362153,0.882116,0.303794,0.281873,0.925273,0.886398,0.619375,0.578032,0.621395,0.913097,0.411814,0.419691,0.0768304,0.306917,0.76657,0.88442,0.682921,0.751201,0.680433,0.483597,0.892918,0.246581,0.830426,0.186796,0.287553,0.603853,0.927028,0.973839,0.759802,0.896536,0.441481,0.801888,0.184106,0.702006,0.05134,0.23587,0.677676,0.0439606,0.971716,0.777285,0.437912,0.446022,0.562868,0.428508,0.232217,0.919583,0.691449,0.231952,0.600595,0.176545,0.308457,0.898397,0.512762,0.807805,0.602005,0.118387,0.552997,0.635487,0.683055,0.248948,0.920856,0.164612,0.305401,0.839143,0.704882,0.978007,0.55368,0.795087,0.6342,0.552968,0.841903,0.774378,0.956487,0.362045,0.96322,0.662166,0.723641,0.835258,0.20983,0.156908,0.493408,0.127394,0.816612,0.392136,0.21902,0.51099,0.228609,0.107857,0.845047,0.125329,0.14629,0.328818,0.314156,0.36389,0.508576,0.19461,0.165554,0.654329,0.158123,0.130818,0.211798,0.488603,0.833357,0.707143,0.246016,0.0590068,0.214185,0.919014,0.57761,0.671719,0.101815,0.789768,0.693907,0.579267,0.187564,0.279197,0.961481,0.0799054,0.699706,0.543057,0.788794,0.223094,0.583642,0.259465,0.786391,0.801721,0.0933033,0.683833,0.969974,0.56741,0.747202,0.388878,0.87873,0.0698205,0.798332,0.0807698,0.705104,0.641782,0.753214,0.143877,0.309415,0.102452,0.38103,0.86505,0.760412,0.666262,0.627705,0.997601,0.588801,0.292801,0.465937,0.125183,0.284849,0.349674,0.3771,0.277041,0.110167,0.362336,0.458662,0.981142,0.669043,0.302929,0.375525,0.030582,0.811718,0.162143,0.488728,0.207176,0.870237,0.688382,0.0294344,0.00228137,0.347014,0.479803,0.968553,0.53406,0.545059,0.169223,0.31899,0.547263,0.855842,0.042281,0.0912231,0.162238,0.919229,0.237513,0.829673,0.583654,0.24903,0.155519,0.457304,0.989608,0.616496,0.406655,0.634494,0.146829,0.871307,0.358334,0.378066,0.200718,0.352585,0.165519,0.834761,0.577218,0.940047,0.555865,0.855595,0.225315,0.476288,0.65491,0.217189,0.658366,0.344729,0.766136,0.360455,0.728139,0.176353,0.227796,0.806468,0.345145,0.17999,0.3539,0.738363,0.183673,0.838034,0.296342,0.0915176,0.865714,0.305203,0.587085,0.190702,0.914122,0.462299,0.0323721,0.935128,0.552222,0.781364,0.152914,0.608687,0.56904,0.785943,0.30185,0.237157,0.31523,0.939615,0.962772,0.149617,0.673804,0.177703,0.0950894,0.279051,0.0349349,0.516307,0.875758,0.815514,0.519582,0.794524,0.601265,0.517187,0.30394,0.899397,0.379684,0.308683,0.650298,0.984232,0.627905,0.588657,0.0236733,0.0851011,0.302712,0.279603,0.469992,0.731031,0.01148,0.710191,0.0485497,0.0978252,0.509795,0.0476675,0.942972,0.247961,0.775252,0.778628,0.956154,0.538371,0.103539,0.397995,0.589639,0.224559,0.211136,0.700399,0.446445,0.167721,0.416749,0.0250303,0.479957,0.444423,0.148381,0.880165,0.112033,0.980649,0.580928,0.41279,0.58337,0.825994,0.511279,0.903258,0.518122,0.0878553,0.340695,0.231283,0.612969,0.82613,0.0111306,0.297318,0.00538236,0.100752,0.571146,0.828569,0.885614,0.332951,0.94523,0.0769295,0.918898,0.595566,0.556101,0.888416,0.766905,0.509315,0.269546,0.170907,0.413025,0.114189,0.343409,0.950533,0.949736,0.0770372,0.820666,0.424764,0.547549,0.54897,0.41314,0.915602,0.730926,0.318368,0.365913,0.139807,0.525201,0.591467,0.481917,0.318916,0.567573,0.815863,0.968987,0.164076,0.0622291,0.209247,0.22967,0.4763,0.32407,0.72848,0.202277,0.307109,0.362053,0.416135,0.791029,0.129216,0.73456,0.764409,0.226751,0.764647,0.227327,0.143322,0.515303,0.295092,0.171294,0.184015,0.171822,0.0904185,0.48511,0.946074,0.827121,0.00943971,0.350206,0.228558,0.398212,0.195247,0.866465,0.00589961,0.161498,0.95448,0.55514,0.939136,0.345342,0.169855,0.43027,0.560403,0.031706,0.425095,0.693886,0.673186,0.563688,0.146631,0.861032,0.412641,0.827287,0.0363769,0.34343,0.813308,0.0271064,0.595085,0.125142,0.990494,0.274016,0.13735,0.220823,0.310592,0.924358,0.175483,0.0518883,0.600161,0.778235,0.855485,0.173456,0.0336177,0.475374,0.903444,0.757975,0.207628,0.936612,0.944632,0.798951,0.516137,0.936776,0.482924,0.220671,0.565201,0.261378,0.0066787,0.775513,0.450692,0.167557,0.295352,0.445509,0.907525,0.590053,0.0771954,0.710565,0.160805,0.556608,0.620887,0.197781,0.0119396,0.375669,0.353548,0.288081,0.807926,0.1705,0.895253,0.418721,0.862369,0.921849,0.0972069,0.0307248,0.0304736,0.208505,0.973378,0.597156,0.797399,0.0255881,0.908135,0.674088,0.515449,0.409474,0.507814,0.89887,0.503306,0.434917,0.668932,0.548711,0.249415,0.478211,0.301755,0.229228,0.936101,0.971717,0.0449088,0.996589,0.853522,0.820237,0.803973,0.893166,0.201371,0.911424,0.135236,0.696362,0.245128,0.469431,0.312105,0.75154,0.419823,0.646867,0.0811198,0.16862,0.0167518,0.924268,0.677779,0.831217,0.584628,0.910594,0.58585,0.711639,0.138711,0.495503,0.418938,0.896529,0.576708,0.844609,0.782471,0.0793203,0.983887,0.626548,0.902374,0.306434,0.857329,0.677899,0.763523,0.854163,0.737352,0.295648,0.672117,0.936156,0.916593,0.816693,0.467203,0.44732,0.389519,0.501565,0.597518,0.33147,0.738112,0.423837,0.462814,0.297051,|0.685895,0.660192,0.476718,0.29902,0.466177,0.702119,0.298459,0.413419,0.574195,0.261052,0.727771,0.959326,0.297164,0.544168,0.733321,0.552061,0.995115,0.57024,0.47644,0.769457,0.152671,0.395649,0.0805521,0.311161,0.0973582,0.410785,0.300105,0.436963,0.589406,0.782587,0.302337,0.878404,0.727074,0.625333,0.0344502,0.453244,0.820321,0.0625205,0.938772,0.508179,0.665191,0.495134,0.964392,0.79738,0.900272,0.877788,0.76128,0.478661,0.645907,0.983085,0.120051,0.0761796,0.778032,0.73572,0.416985,0.925944,0.583447,0.0454186,0.169676,0.105731,0.671124,0.0509658,0.871663,0.532157,0.426237,0.328994,0.557496,0.583087,0.883565,0.513545,0.968749,0.740559,0.567561,0.571464,0.911207,0.941666,0.57127,0.411308,0.125054,0.0898101,0.447061,0.943815,0.0968859,0.165021,0.148521,0.220678,0.520464,0.627762,0.223677,0.945534,0.837974,0.472584,0.907152,0.328013,0.524681,0.667863,0.462465,0.168306,0.685953,0.203363,0.781236,0.17706,0.74362,0.755455,0.86514,0.695989,0.190203,0.804128,0.688297,0.682876,0.733436,0.220955,0.626795,0.846044,0.125237,0.993088,0.58548,0.547228,0.720972,0.559587,0.342586,0.322726,0.562077,0.680989,0.484257,0.475397,0.195491,0.308143,0.0942373,0.0999664,0.987782,0.877719,0.820569,0.894703,0.145843,0.507942,0.956438,0.184332,0.999931,0.941937,0.906662,0.521229,0.720974,0.0386699,0.169643,0.943326,0.552218,0.350915,0.589288,0.184019,0.28389,0.50874,0.261758,0.4668,0.959582,0.0935866,0.858477,0.450371,0.310121,0.935803,0.37143,0.0693048,0.543377,0.562415,0.7942,0.11162,0.547496,0.0759097,0.620213,0.57298,0.766157,0.160511,0.985276,0.29883,0.451786,0.0893962,0.124002,0.737624,0.0736831,0.79913,0.618336,0.32847,0.472434,0.823072,0.295056,0.00766081,0.891289,0.708961,0.0187097,0.587882,0.3727,0.405917,0.730093,0.469556,0.958984,0.878229,0.943095,0.449952,0.190211,0.449162,0.307123,0.8838,0.925455,0.386573,0.397467,0.634627,0.976645,0.0132243,0.690206,0.634457,0.51597,0.78605,0.374494,0.78518,0.975034,0.38505,0.966899,0.547666,0.784447,0.617835,0.525054,0.174473,0.541812,0.0887422,0.0872459,0.913616,0.209492,0.715948,0.955522,0.654214,0.837087,0.0917979,0.994051,0.65555,0.147272,0.223411,0.686109,0.263499,0.291222,0.105677,0.50368,0.682435,0.790865,0.0589612,0.413226,0.5031,0.671119,0.775675,0.640135,0.439546,0.727518,0.214551,0.638786,0.532174,0.73626,0.159547,0.204125,0.530349,0.856002,0.436083,0.31705,0.892528,0.484535,0.467473,0.272815,0.847152,0.37274,0.510241,0.249804,0.116554,0.733053,0.26893,0.240313,0.238866,0.8762,0.960523,0.414674,0.945377,0.56976,0.337147,0.559698,0.827112,0.972088,0.578642,0.175617,0.691631,0.986357,0.82759,0.173118,0.555378,0.541606,0.529801,0.710465,0.516792,0.702757,0.774092,0.654032,0.759827,0.711345,0.711641,0.13457,0.761984,0.301261,0.18053,0.747285,0.473528,0.697169,0.140725,0.520398,0.306123,0.256855,0.479309,0.363484,0.123192,0.81131,0.652075,0.665307,0.0634977,0.949015,0.444871,0.402186,0.114199,0.598502,0.983703,0.160024,0.191174,0.695417,0.669489,0.194276,0.549562,0.48865,0.441196,0.86572,0.948992,0.669761,0.88835,0.724308,0.470408,0.387506,0.914606,0.472987,0.608862,0.210609,0.785858,0.485065,0.0657994,0.795215,0.962546,0.18502,0.120332,0.216261,0.630336,0.0551463,0.482128,0.986424,0.94949,0.660232,0.751506,0.473022,0.0789073,0.0626854,0.312899,0.939465,0.916323,0.859209,0.183276,0.600693,0.353497,0.979187,0.959448,0.0729955,0.107136,0.150219,0.0996012,0.511599,0.330126,0.258574,0.1632,0.507108,0.549179,0.0682455,0.367485,0.850052,0.737906,0.830659,0.94377,0.50572,0.0584161,0.845623,0.273297,0.313338,0.74102,0.401192,0.0827935,0.0685253,0.0847952,0.753438,0.49703,0.221005,0.192624,0.0883443,0.286001,0.870031,0.906853,0.32972,0.443118,0.236421,0.651962,0.311911,0.741855,0.338852,0.966648,0.517735,0.678613,0.0863959,0.772539,0.312745,0.775721,0.965256,0.246659,0.320455,0.118532,0.917724,0.901736,0.731338,0.999902,0.136035,0.364588,0.417885,0.771942,0.733572,0.145294,0.472099,0.114888,0.655668,0.0827894,0.79672,0.207821,0.622749,0.411372,0.455649,0.942091,0.401319,0.249568,0.985013,0.00130635,0.509161,0.771903,0.465806,0.899942,0.38141,0.441468,0.143201,0.888745,0.549555,0.0877349,0.354596,0.746274,0.418828,0.138396,0.622648,0.823644,0.647123,0.965173,0.843732,0.0518922,0.943589,0.0105631,0.879945,0.844655,0.783752,0.18097,0.446169,0.489248,0.758097,0.0525286,0.963639,0.0609573,0.0675005,0.286415,0.102496,0.0742667,0.1657,0.247664,0.789565,0.540133,0.394709,0.80769,0.672252,0.809596,0.227371,0.11213,0.377588,0.535538,0.680312,0.178405,0.480268,0.87614,0.755021,0.40294,0.257887,0.40149,0.130396,0.422159,0.0742043,0.524501,0.350631,0.264231,0.250406,0.123348,0.0613185,0.0604215,0.97886,0.657315,0.512672,0.939973,0.522328,0.640498,0.170026,0.287326,0.277699,0.224331,0.730517,0.86944,0.452179,0.787562,0.337987,0.575924,0.617131,0.624437,0.347187,0.659087,0.447697,0.840135,0.789405,0.719598,0.97644,0.399859,0.138238,0.953955,0.330494,0.497382,0.809656,0.36313,0.055216,0.640778,0.733028,0.842719,0.582235,0.681713,0.23702,0.782504,0.740734,0.355287,0.935552,0.528824,0.131811,0.0757318,0.656052,0.0502964,0.0633973,0.751015,0.312795,0.00390106,0.439009,0.876891,0.375736,0.911268,0.937604,0.0677713,0.29619,0.171076,0.535009,0.594795,0.366152,0.124203,0.117036,0.551136,0.835098,0.310752,0.576616,0.229617,0.257433,0.686891,0.0679532,0.618078,0.0368448,0.525116,0.327802,0.697389,0.713061,0.24614,0.559108,0.14933,0.90979,0.443069,0.426331,0.0839604,0.387466,0.559635,0.842402,0.474096,0.58772,0.198435,0.603573,0.866789,0.624579,0.762103,0.60175,0.574654,0.708521,0.911426,0.030093,0.00797045,0.306871,0.942999,0.771251,0.280437,0.0482106,0.2367,0.342935,0.322628,0.17378,0.73732,0.950734,0.101944,0.680273,0.573933,0.264346,0.980453,0.332145,0.376903,0.648049,0.865279,0.651636,0.127442,0.381137,0.415761,0.979922,0.862454,0.29807,0.472245,0.292795,0.914161,0.823892,0.511182,0.364073,0.176373,0.533636,0.960628,0.486782,0.115379,0.608478,0.235266,0.922842,0.584483,0.0752916,0.511944,0.560459,0.00743252,0.445072,0.967067,0.976967,0.0690503,0.777261,0.471157,0.659419,0.352912,0.0526554,0.529119,0.150251,0.191115,0.735143,0.938651,0.0120273,0.46737,0.312228,0.891286,0.280152,0.940051,0.062028,0.428307,0.0197347,0.439887,0.49668,0.38656,0.368768,0.289163,0.200147,0.745231,0.834017,0.342012,0.237949,0.00280029,0.583727,0.553988,0.34943,0.205746,0.644329,0.387894,0.463692,0.0051685,0.237889,0.397101,0.534689,0.760111,0.399529,0.372787,0.646233,0.328733,0.805524,0.897471,0.891737,0.194011,0.323423,0.670624,0.354251,0.40158,0.891289,0.0490773,0.067398,0.00875157,0.457125,0.914813,0.711196,0.795982,0.92785,0.244806,0.352221,0.73194,0.952946,0.454247,0.527768,0.215226,0.53095,0.302321,0.505356,0.743499,0.403038,0.0636781,0.847941,0.816028,0.999123,0.354551,0.0196127,0.113342,0.640102,0.393184,0.660081,0.944638,0.862125,0.803676,0.454717,0.611696,0.481109,0.555954,0.0548777,0.366059,0.548306,0.164998,0.760735,0.365088,0.947614,0.961566,0.241668,0.0619585,0.158404,0.502687,0.833955,0.0947589,0.882229,0.248985,0.927558,0.737951,0.12068,0.511352,0.276264,0.325353,0.488308,0.266236,0.784684,0.896991,0.690894,0.518,0.556568,0.347307,0.967731,0.0138097,0.195709,0.386837,0.340966,0.665362,0.441706,0.894737,0.54054,0.264603,0.965917,0.704212,0.853005,0.757136,0.543647,0.750456,0.593229,0.319772,0.156828,0.78458,0.639874,0.132544,0.692601,0.845444,0.908325,0.878697,0.0966558,0.592893,0.487334,0.871081,0.627278,0.160656,0.254425,0.5491,0.940531,0.44621,0.276037,0.538718,0.811305,0.495639,0.583263,0.237634,0.992038,0.582071,0.747885,0.869174,0.202994,0.678508,0.0455269,0.205505,0.556281,0.324235,0.791313,0.492895,0.831232,0.0301306,0.519325,0.418966,0.912188,0.0128821,0.132572,0.419689,0.525137,0.837647,0.957184,0.962631,0.253131,0.369062,0.878397,0.552632,0.564601,0.597699,0.687377,0.287609,0.48232,0.163421,0.653457,0.820455,0.700923,0.0645431,0.331917,0.936627,0.380336,0.040329,0.0156085,0.285133,0.447556,0.557987,0.671768,0.626164,0.276407,0.0607426,0.855207,0.211784,0.608133,0.396146,0.603609,0.763385,0.431985,0.685095,0.226231,0.877537,0.0776465,0.271303,0.76081,0.0537974,0.597282,0.481307,0.895444,0.185577,0.0655466,0.258047,0.859419,0.676382,0.817126,0.947176,0.385722,0.346336,0.85807,0.79082,0.385961,0.375608,0.539558,0.323682,0.714845,0.368963,0.880481,0.304709,0.450559,0.629839,0.831852,0.865974,0.994631,0.282686,0.583297,0.326518,0.0886485,0.20208,0.722436,0.613545,0.803928,0.266622,0.721811,0.5961,0.537248,0.43132,0.609839,0.610186,0.655134,0.582959,0.756416,0.518309,0.920317,0.874441,0.616197,0.137177,0.0496745,0.0313536,0.311601,0.803655,0.214024,0.131164,0.269253,0.054445,0.786426,0.783643,0.171183,0.0704982,0.696177,0.835746,0.575453,0.579284,0.546498,0.474319,0.0729373,0.253285,0.502876,0.201925,0.584062,0.0486643,0.241871,0.0416619,0.533165,0.613023,0.356645,0.914281,0.0260777,0.536196,0.848555,0.485404,0.541517,0.979209,0.563554,0.341523,0.642637,0.0880135,0.419608,0.0119026,0.978071,0.798692,0.566655,0.524034,0.197396,0.248476,0.314472,0.211241,0.0195615,0.0517349,0.732326,0.513861,0.771854,0.658489,0.70674,0.677198,|0.966315,0.214223,0.352058,0.323636,0.401712,0.967866,0.669409,0.665588,0.506229,0.547463,0.806583,0.425704,0.568645,0.649206,0.483288,0.655267,0.893106,0.0709187,0.193376,0.257972,0.234185,0.364583,0.609711,0.0882344,0.606426,0.364318,0.952104,0.331918,0.775273,0.990983,0.326657,0.461542,0.0130648,0.46522,0.859725,0.49996,0.439111,0.918498,0.159756,0.923559,0.673879,0.849629,0.0096826,0.295931,0.847324,0.189629,0.415163,0.179299,0.131677,0.64605,0.0946447,0.98926,0.720418,0.0493075,0.551884,0.253866,0.461889,0.892141,0.981484,0.310169,0.837626,0.997041,0.742016,0.98893,0.123905,0.889035,0.115277,0.837942,0.321193,0.156526,0.562381,0.722076,0.152378,0.901521,0.837278,0.942053,0.90636,0.527263,0.747752,0.995817,0.0680465,0.704759,0.793978,0.601224,0.0238624,0.449122,0.571548,0.193782,0.667016,0.52461,0.314088,0.838989,0.350906,0.722248,0.842036,0.448056,0.510125,0.667899,0.640507,0.35289,0.657465,0.0621413,0.237146,0.00759375,0.46321,0.628711,0.168519,0.480163,0.0887082,0.71501,0.553762,0.96999,0.392818,0.658499,0.313248,0.964061,0.599895,0.756606,0.644062,0.201372,0.0123016,0.698512,0.330433,0.11517,0.390913,0.543579,0.296968,0.718879,0.0411213,0.477952,0.10768,0.607021,0.696498,0.719537,0.29429,0.659318,0.869675,0.0765861,0.424614,0.224326,0.418597,0.23967,0.165363,0.86483,0.57362,0.267117,0.711642,0.267239,0.958396,0.476187,0.416574,0.518252,0.288136,0.0317874,0.830737,0.670213,0.198547,0.773388,0.917068,0.386819,0.845617,0.934826,0.779453,0.840227,0.761004,0.652248,0.772978,0.0356517,0.537078,0.275795,0.413952,0.0847682,0.765278,0.554103,0.232533,0.39292,0.370411,0.461588,0.895282,0.698655,0.78386,0.699755,0.292372,0.915532,0.0556085,0.44262,0.508194,0.0200347,0.628533,0.666641,0.136705,0.263662,0.365162,0.0317584,0.68078,0.731737,0.912693,0.39104,0.784853,0.0156792,0.402313,0.945589,0.226586,0.577981,0.0240528,0.289965,0.165463,0.500391,0.603315,0.273447,0.959855,0.768365,0.816521,0.624408,0.0638129,0.696722,0.474527,0.108107,0.891609,0.263419,0.776269,0.22248,0.907719,0.796861,0.633655,0.787605,0.0595627,0.867962,0.392993,0.309579,0.573986,0.451457,0.0514852,0.0233822,0.576902,0.412966,0.211911,0.523204,0.824545,0.621047,0.0398767,0.051752,0.0823188,0.914632,0.0787351,0.764802,0.36837,0.272695,0.252927,0.368634,0.589722,0.606057,0.30001,0.150997,0.311131,0.998379,0.0777026,0.359376,0.372085,0.179999,0.206568,0.492669,0.0824723,0.812735,0.193238,0.955091,0.171087,0.342192,0.618359,0.208287,0.949644,0.84468,0.0128214,0.670551,0.948865,0.69635,0.00823724,0.825338,0.0825862,0.983189,0.870916,0.016636,0.459425,0.290018,0.214964,0.719697,0.427493,0.742352,0.449984,0.414943,0.995164,0.985264,0.505548,0.714068,0.633953,0.638698,0.0092181,0.254823,0.730266,0.133608,0.190732,0.561202,0.678918,0.424437,0.870793,0.0932783,0.830279,0.265889,0.00726134,0.694908,0.708325,0.176198,0.492456,0.124044,0.553166,0.546608,0.706423,0.788739,0.646389,0.503475,0.524765,0.376995,0.247979,0.639272,0.574714,0.477072,0.471885,0.59389,0.0457341,0.940091,0.680421,0.744433,0.566346,0.749141,0.0100718,0.494341,0.752349,0.803345,0.292681,0.933516,0.978566,0.680386,0.653513,0.220313,0.163698,0.665508,0.629964,0.28806,0.194304,0.626301,0.795432,0.948792,0.541292,0.461392,0.709557,0.374911,0.792844,0.38802,0.90077,0.828671,0.104119,0.936938,0.096808,0.39977,0.834805,0.194167,0.888815,0.255434,0.646625,0.702815,0.768154,0.388704,0.615749,0.578324,0.0277595,0.810043,0.89827,0.0252057,0.096069,0.382038,0.10813,0.67541,0.893822,0.0141521,0.0682219,0.538042,0.941989,0.0761387,0.286758,0.0418835,0.924321,0.269989,0.553106,0.388564,0.583935,0.0231547,0.787274,0.887029,0.311693,0.170242,0.838504,0.37615,0.697548,0.854985,0.286503,0.39001,0.265385,0.868594,0.15623,0.702597,0.319533,0.499704,0.961134,0.16186,0.00545317,0.155303,0.558142,0.395883,0.491086,0.217981,0.0427528,0.191842,0.541004,0.945068,0.384357,0.510873,0.251376,0.61387,0.785348,0.813216,0.102646,0.483035,0.794277,0.309417,0.559004,0.684157,0.112496,0.599422,0.671043,0.588525,0.711583,0.86093,0.981651,0.112409,0.203911,0.0349724,0.832902,0.831351,0.141645,0.103529,0.721812,0.72866,0.510808,0.787528,0.98332,0.875611,0.37317,0.159224,0.615902,0.350184,0.960935,0.702466,0.870395,0.959091,0.382888,0.035473,0.183235,0.262561,0.170433,0.776554,0.438841,0.43156,0.166413,0.420837,0.707464,0.41226,0.946239,0.689358,0.420594,0.602314,0.611063,0.387213,0.863974,0.143194,0.901333,0.309863,0.00334918,0.185845,0.130642,0.290473,0.0215696,0.290866,0.34069,0.398114,0.798013,0.600787,0.447554,0.919247,0.319594,0.701967,0.0923045,0.816746,0.615561,0.121761,0.804714,0.164223,0.495631,0.164271,0.0568175,0.346565,0.456769,0.699062,0.508251,0.716783,0.1613,0.308061,0.18532,0.0447291,0.523506,0.442812,0.7232,0.0815839,0.121408,0.235713,0.354093,0.506974,0.721062,0.886951,0.754063,0.503168,0.230435,0.17717,0.307247,0.214302,0.341686,0.439339,0.667781,0.78676,0.530411,0.194299,0.673606,0.339175,0.927962,0.727149,0.506196,0.855192,0.837276,0.0258563,0.035691,0.363066,0.981954,0.896948,0.183535,0.0529437,0.87127,0.140543,0.863671,0.929972,0.911932,0.565887,0.383322,0.727392,0.205649,0.60873,0.970754,0.0345497,0.569919,0.561463,0.685341,0.140157,0.995138,0.453788,0.637091,0.66137,0.544875,0.600385,0.211454,0.110225,0.731821,0.995295,0.761176,0.397912,0.833255,0.744514,0.604057,0.858743,0.0637083,0.779048,0.537776,0.550992,0.531361,0.375496,0.365678,0.279324,0.42876,0.0720921,0.861713,0.898018,0.00772887,0.862221,0.127788,0.432539,0.608745,0.711848,0.840763,0.232091,0.0127063,0.723389,0.638832,0.982336,0.845267,0.84361,0.377216,0.366518,0.774112,0.627345,0.731247,0.391358,0.838034,0.562444,0.173665,0.425403,0.00939071,0.942377,0.645592,0.535763,0.5901,0.332911,0.844678,0.275716,0.687613,0.340418,0.409148,0.767813,0.390117,0.406195,0.715917,0.653166,0.440451,0.209143,0.154164,0.326475,0.800614,0.85797,0.378442,0.393078,0.553621,0.875655,0.0330133,0.652752,0.794801,0.645548,0.549139,0.390543,0.472873,0.0359674,0.842393,0.701279,0.696142,0.6002,0.79273,0.551861,0.502584,0.373112,0.570076,0.971548,0.13203,0.163193,0.358729,0.679051,0.479316,0.470706,0.293102,0.386042,0.688107,0.639054,0.623482,0.110436,0.67671,0.199832,0.127593,0.701377,0.295979,0.0202789,0.965819,0.577303,0.200168,0.572059,0.295862,0.947388,0.499377,0.767112,0.568032,0.266578,0.401626,0.76701,0.0926269,0.518749,0.535238,0.426501,0.505061,0.998455,0.670171,0.0819646,0.709106,0.776572,0.684022,0.316477,0.532092,0.294597,0.34686,0.0844421,0.290299,0.565409,0.530573,0.812747,0.135672,0.436647,0.666968,0.0479562,0.800739,0.107277,0.211156,0.213929,0.496099,0.0617489,0.15547,0.6067,0.586949,0.679486,0.0546518,0.869906,0.849276,0.356738,0.225586,0.932992,0.807426,0.9228,0.946865,0.473272,0.571999,0.35574,0.844419,0.719318,0.754973,0.67569,0.607053,0.282201,0.25226,0.385143,0.145493,0.282153,0.932195,0.32112,0.362746,0.893972,0.879731,0.208774,0.923919,0.44519,0.707443,0.690371,0.578408,0.258832,0.936753,0.248986,0.475564,0.698411,0.754679,0.511192,0.511939,0.913743,0.321875,0.126444,0.576414,0.47495,0.509779,0.628076,0.908326,0.325536,0.000968456,0.0446822,0.536041,0.114998,0.655716,0.776814,0.764592,0.557816,0.95201,0.53731,0.857688,0.49787,0.689527,0.681498,0.674598,0.463935,0.678878,0.403245,0.704638,0.362278,0.527436,0.771906,0.608738,0.74134,0.524327,0.981289,0.545773,0.496856,0.350247,0.119112,0.676726,0.927031,0.936669,0.700918,0.288361,0.114838,0.914804,0.237108,0.318739,0.911473,0.330277,0.623447,0.398288,0.954363,0.992166,0.503736,0.513751,0.876628,0.134937,0.288432,0.0961553,0.838431,0.182783,0.216113,0.914671,0.0861826,0.620377,0.701433,0.862049,0.669511,0.149446,0.523504,0.546268,0.198243,0.607426,0.906014,0.880578,0.336859,0.33748,0.491962,0.646754,0.322002,0.639439,0.711617,0.767345,0.569222,0.25063,0.327355,0.0968,0.0204257,0.360857,0.142261,0.70625,0.800456,0.212513,0.207851,0.31661,0.776955,0.162258,0.149349,0.363909,0.0116168,0.108433,0.509682,0.0522129,0.875425,0.228766,0.94107,0.0397823,0.410207,0.504602,0.761583,0.481976,0.192731,0.710102,0.796733,0.715506,0.520462,0.904811,0.54975,0.971035,0.800409,0.693431,0.968724,0.957499,0.62857,0.211763,0.952995,0.366815,0.0438229,0.748449,0.758849,0.528916,0.269723,0.69449,0.944586,0.60746,0.509439,0.0133488,0.360501,0.911028,0.706765,0.515398,0.162855,0.709723,0.387468,0.696662,0.343199,0.208125,0.974416,0.928562,0.781449,0.317747,0.555572,0.505275,0.305012,0.41795,0.818854,0.990222,0.457361,0.794067,0.0377999,0.552318,0.0110164,0.23763,0.753743,0.00259477,0.619744,0.79909,0.0379062,0.917327,0.00202209,0.765097,0.698585,0.238546,0.749466,0.741209,0.465989,0.752003,0.977836,0.156759,0.300808,0.185394,0.300123,0.873901,0.613478,0.815097,0.862028,0.937986,0.103476,0.000432849,0.242425,0.707029,0.329797,0.322479,0.863319,0.303286,0.447895,0.376397,0.467865,0.600605,0.536424,0.588825,0.608058,0.860157,0.669952,0.430817,0.60216,0.767255,0.127844,0.555328,0.452021,0.049201,0.538737,0.590829,0.902045,0.0938519,0.928194,0.68633,0.557342,0.236902,0.718556,0.42966,0.740813,0.144501,0.771363,0.646341,0.989014,0.744787,0.371741,|0.270225,0.945277,0.692282,0.940883,0.826193,0.774058,0.93481,0.00713849,0.197581,0.19316,0.653986,0.659325,0.170558,0.462285,0.471649,0.245835,0.199228,0.0907828,0.150227,0.799976,0.915017,0.0077588,0.771986,0.822223,0.69459,0.852642,0.693101,0.236375,0.250065,0.1037,0.985769,0.837925,0.0169223,0.868966,0.820279,0.881109,0.188496,0.0342844,0.36097,0.216653,0.452994,0.71231,0.0376878,0.549306,0.254926,0.536336,0.103491,0.483436,0.495796,0.138574,0.815177,0.904381,0.0417476,0.825518,0.068207,0.116549,0.118369,0.61645,0.879913,0.991655,0.767235,0.765544,0.429185,0.148531,0.597719,0.622447,0.0869192,0.707989,0.758681,0.357564,0.210164,0.492547,0.718234,0.502353,0.211576,0.217245,0.237705,0.810671,0.796507,0.195192,0.561694,0.294191,0.994288,0.119594,0.818619,0.223531,0.946041,0.114434,0.238221,0.563285,0.396218,0.875415,0.222871,0.236772,0.470978,0.0909251,0.0223089,0.939054,0.402304,0.763,0.533238,0.994053,0.926332,0.598735,0.877364,0.0417498,0.254816,0.401959,0.493951,0.664698,0.164268,0.789816,0.367874,0.906574,0.566986,0.746779,0.447415,0.523533,0.666289,0.182384,0.448131,0.461251,0.909171,0.0613571,0.27809,0.67852,0.11163,0.961287,0.432636,0.725272,0.106386,0.255986,0.66561,0.135025,0.37709,0.478397,0.30972,0.57829,0.0627497,0.136267,0.0135256,0.829702,0.397749,0.649551,0.861129,0.175452,0.668596,0.64546,0.699495,0.956797,0.311735,0.577169,0.992463,0.286584,0.0635627,0.262897,0.27953,0.313198,0.167792,0.659775,0.237622,0.206277,0.805925,0.923331,0.109633,0.800059,0.934744,0.336259,0.175688,0.346715,0.84907,0.897364,0.623557,0.484587,0.485545,0.670367,0.30821,0.409693,0.938774,0.554984,0.252743,0.795869,0.237569,0.304734,0.801368,0.514344,0.832915,0.0348939,0.211673,0.712997,0.245195,0.107502,0.331254,0.523496,0.394863,0.306414,0.268381,0.478774,0.946144,0.643053,0.799489,0.431113,0.758826,0.770754,0.720212,0.8128,0.841295,0.307589,0.220051,0.0329125,0.672518,0.205957,0.481205,0.0665396,0.153933,0.867721,0.136802,0.855129,0.974171,0.615949,0.278987,0.65065,0.453054,0.721948,0.582546,0.81069,0.175449,0.610394,0.0213182,0.388531,0.985225,0.828157,0.841092,0.375499,0.962409,0.868533,0.979843,0.446424,0.729137,0.497139,0.843137,0.969287,0.917689,0.00122213,0.896517,0.932277,0.467465,0.341142,0.389307,0.597116,0.0265982,0.654279,0.832923,0.17043,0.702959,0.424735,0.259408,0.389452,0.481281,0.125695,0.239231,0.0238481,0.948371,0.852999,0.937103,0.27879,0.103091,0.51939,0.74546,0.417174,0.52492,0.418773,0.781556,0.640154,0.588869,0.488333,0.410388,0.247093,0.271048,0.537179,0.796471,0.780997,0.90101,0.35928,0.703504,0.402456,0.498731,0.357542,0.118789,0.10169,0.32626,0.91181,0.664509,0.319851,0.566863,0.539745,0.475625,0.357146,0.38798,0.911099,0.769353,0.469553,0.551951,0.698859,0.586532,0.732279,0.838946,0.986871,0.806859,0.595585,0.530678,0.891441,0.0420322,0.892134,0.849994,0.51793,0.208391,0.501917,0.135203,0.981955,0.867619,0.963525,0.105624,0.730622,0.587339,0.152031,0.17161,0.562277,0.393391,0.338213,0.845166,0.490987,0.513803,0.990861,0.507756,0.557831,0.632378,0.875789,0.157841,0.499599,0.0651426,0.17907,0.120049,0.401002,0.189993,0.414045,0.410945,0.73502,0.691797,0.425291,0.741733,0.0514994,0.885808,0.605524,0.311338,0.386932,0.165914,0.990725,0.18596,0.18892,0.859258,0.458646,0.615775,0.792759,0.371002,0.816888,0.160567,0.366704,0.789342,0.179585,0.796196,0.710564,0.652931,0.97821,0.200586,0.19848,0.502563,0.352787,0.0540175,0.501923,0.419723,0.386121,0.969624,0.631668,0.130881,0.028879,0.947765,0.00829029,0.902192,0.132873,0.303559,0.167054,0.229339,0.0324732,0.593695,0.602567,0.553157,0.0756491,0.945129,0.835555,0.79385,0.901883,0.610119,0.838883,0.264185,0.210631,0.873515,0.44212,0.146039,0.105806,0.00325692,0.355956,0.220579,0.568379,0.949121,0.599869,0.906636,0.734295,0.0857224,0.728321,0.602339,0.648288,0.41344,0.274296,0.10987,0.316345,0.555776,0.541158,0.85727,0.468255,0.197941,0.471467,0.663153,0.264071,0.850008,0.106045,0.303586,0.304961,0.139118,0.926322,0.343711,0.421096,0.205607,0.878994,0.462795,0.226789,0.866388,0.304352,0.908744,0.744462,0.125088,0.707871,0.0850927,0.421784,0.557464,0.208769,0.218182,0.612267,0.931863,0.539445,0.0968171,0.607114,0.871713,0.735655,0.977454,0.854306,0.968246,0.116442,0.0943365,0.869664,0.639868,0.152478,0.133969,0.354574,0.392901,0.784497,0.644265,0.654032,0.503683,0.929011,0.361895,0.159556,0.258814,0.249428,0.695297,0.438491,0.532157,0.648759,0.491682,0.0305341,0.519416,0.567871,0.220996,0.644904,0.749531,0.203611,0.574492,0.585584,0.756392,0.979985,0.113379,0.192585,0.261603,0.189755,0.394938,0.0285631,0.333978,0.431557,0.177114,0.744121,0.175222,0.258998,0.933902,0.636202,0.775394,0.21867,0.89885,0.0527918,0.0204818,0.13964,0.472945,0.185359,0.30926,0.0549478,0.337529,0.167408,0.261855,0.763242,0.869954,0.119025,0.544482,0.303527,0.927497,0.329517,0.706389,0.198961,0.510177,0.244419,0.85407,0.849694,0.128793,0.529124,0.749013,0.720405,0.22089,0.499591,0.0157034,0.52186,0.799455,0.746216,0.887916,0.4416,0.496416,0.578111,0.191747,0.93828,0.905634,0.251645,0.439636,0.389934,0.364,0.763261,0.421305,0.0453654,0.254914,0.553456,0.409601,0.86173,0.00641471,0.871829,0.192955,0.569687,0.28596,0.0389956,0.997802,0.89661,0.153872,0.941178,0.422121,0.480375,0.546775,0.0957738,0.189129,0.310183,0.656889,0.31143,0.616154,0.867656,0.189275,0.409328,0.947494,0.993372,0.970971,0.607006,0.0962684,0.719431,0.160584,0.417076,0.805941,0.817251,0.730359,0.466625,0.350278,0.695442,0.975911,0.135068,0.222965,0.353821,0.405293,0.0670585,0.973841,0.254538,0.967007,0.580997,0.16842,0.827455,0.0382559,0.669442,0.931355,0.525383,0.275441,0.963998,0.0629328,0.563331,0.863743,0.220552,0.985255,0.74372,0.998074,0.54602,0.648112,0.900967,0.0398425,0.468929,0.143396,0.264959,0.181042,0.12915,0.780086,0.898172,0.703367,0.222291,0.713917,0.882315,0.268772,0.769347,0.704833,0.107259,0.458259,0.363385,0.535898,0.29005,0.609107,0.0319858,0.751836,0.396455,0.223464,0.214033,0.822097,0.29433,0.923353,0.27766,0.127121,0.952197,0.395663,0.607804,0.0969455,0.988558,0.752697,0.616866,0.950475,0.515617,0.399276,0.596924,0.243765,0.520165,0.614921,0.584717,0.14846,0.140698,0.817991,0.678578,0.500455,0.809746,0.73544,0.492843,0.343545,0.0266583,0.376333,0.433795,0.0723892,0.377797,0.633394,0.136091,0.379499,0.0616139,0.39853,0.540238,0.197764,0.6173,0.685046,0.641152,0.453152,0.129546,0.558926,0.0227682,0.886839,0.495764,0.300602,0.990925,0.687884,0.118246,0.788093,0.00339419,0.780793,0.76142,0.758087,0.812099,0.351715,0.056786,0.733389,0.953373,0.823749,0.108846,0.280496,0.594168,0.893645,0.725046,0.986474,0.128146,0.899252,0.855944,0.229242,0.593368,0.327847,0.88146,0.220244,0.161614,0.00277722,0.195602,0.945991,0.0791122,0.0733739,0.00896543,0.51413,0.210281,0.112856,0.335041,0.200179,0.492858,0.0817933,0.903018,0.396182,0.159093,0.0602216,0.0422673,0.364597,0.25674,0.856548,0.350504,0.321257,0.407677,0.301647,0.609472,0.789727,0.223807,0.990687,0.910415,0.496738,0.772907,0.212458,0.674238,0.0406025,0.810679,0.615364,0.211441,0.504955,0.177554,0.896161,0.761646,0.895746,0.461002,0.0930439,0.842647,0.859013,0.60297,0.870049,0.307186,0.583693,0.27223,0.62998,0.489273,0.0212381,0.617539,0.61581,0.0648285,0.391683,0.489816,0.740397,0.391325,0.277162,0.885789,0.477811,0.753186,0.302044,0.0686346,0.725854,0.925649,0.875674,0.873574,0.19494,0.0475478,0.519562,0.668115,0.32442,0.478747,0.575051,0.848806,0.557477,0.501722,0.679091,0.94025,0.365897,0.0402701,0.646045,0.169072,0.340064,0.357038,0.345146,0.364832,0.377368,0.893347,0.675379,0.514936,0.105468,0.148596,0.671047,2.36034e-05,0.88715,0.785592,0.209148,5.12004e-05,0.187838,0.304943,0.29274,0.657242,0.0303717,0.235088,0.0660039,0.700879,0.379425,0.015447,0.833425,0.413666,0.00403768,0.353044,0.379387,0.215732,0.671148,0.266824,0.455048,0.156427,0.253608,0.2528,0.932409,0.287296,0.612326,0.797642,0.237311,0.568065,0.261268,0.677565,0.677204,0.3191,0.705252,0.981405,0.0818561,0.745101,0.161979,0.972195,0.724408,0.585689,0.513758,0.267116,0.940837,0.674382,0.343746,0.207809,0.611839,0.546655,0.872622,0.298167,0.764864,0.722773,0.954349,0.0208766,0.919456,0.582762,0.00295997,0.695055,0.891535,0.209459,0.815513,0.843479,0.866698,0.32548,0.345741,0.0309346,0.735099,0.27214,0.290439,0.783935,0.446653,0.576099,0.169071,0.323752,0.108616,0.715076,0.321473,0.151951,0.0272213,0.164474,0.0829015,0.645494,0.591688,0.834906,0.073189,0.157401,0.391691,0.176771,0.470799,0.88645,0.243848,0.96915,0.98736,0.977308,0.870969,0.0136786,0.307756,0.439584,0.364161,0.78257,0.215324,0.96485,0.369038,0.880968,0.993048,0.0826334,0.341671,0.0554885,0.479303,0.0419613,0.520813,0.271595,0.481323,0.95714,0.288986,0.386934,0.3839,0.838763,0.0833382,0.671916,0.543738,0.189242,0.514574,0.587778,0.00699866,0.851979,0.806769,0.67239,0.495177,0.100244,0.150132,0.546271,0.20189,0.215196,0.0189807,0.11437,0.371292,0.98626,0.369996,0.224145,0.0217392,0.210126,0.128191,0.265625,0.0951314,0.887386,0.847702,0.62504,0.107986,0.862742,0.247255,0.456213,0.230732,0.599119,0.309757,0.861506,0.36757,0.566008,|0.58923,0.0685605,0.16977,0.732412,0.182182,0.814121,0.949412,0.895475,0.0538347,0.338482,0.779647,0.859922,0.681667,0.773715,0.755128,0.927444,0.96329,0.584559,0.404229,0.0463974,0.517389,0.635543,0.396416,0.442343,0.467304,0.100586,0.865749,0.829471,0.0877562,0.573492,0.866763,0.29231,0.697093,0.104317,0.814355,0.382995,0.872748,0.719861,0.472897,0.642606,0.717232,0.0575604,0.524276,0.28733,0.51903,0.12736,0.681338,0.934773,0.170332,0.541781,0.652285,0.00343299,0.373729,0.801683,0.524331,0.418438,0.378767,0.384374,0.797666,0.143193,0.177177,0.345457,0.955764,0.933913,0.83457,0.488895,0.40232,0.494948,0.192331,0.0415532,0.991136,0.135459,0.599114,0.157324,0.764853,0.221796,0.0732781,0.50586,0.107226,0.460271,0.463278,0.299367,0.97748,0.0449345,0.503656,0.900254,0.453399,0.257774,0.0388229,0.8084,0.316693,0.0527569,0.0676257,0.238206,0.443792,0.756701,0.753446,0.300385,0.0973793,0.0791493,0.0371556,0.44416,0.380522,0.718776,0.125952,0.878625,0.324277,0.0134717,0.897693,0.49709,0.940457,0.714623,0.403167,0.737415,0.103605,0.434717,0.96715,0.00154471,0.549012,0.928097,0.269651,0.669929,0.695192,0.943879,0.680141,0.723971,0.964433,0.711559,0.111526,0.122349,0.375386,0.788331,0.908247,0.443399,0.670072,0.103232,0.477573,0.454026,0.783589,0.329685,0.413668,0.90543,0.795147,0.765926,0.174649,0.0708246,0.567972,0.613469,0.474823,0.0076583,0.148228,0.633981,0.607654,0.919638,0.423436,0.967338,0.136692,0.577904,0.174098,0.0233523,0.248372,0.159313,0.484015,0.31293,0.115066,0.839656,0.398289,0.785803,0.0644752,0.546145,0.746539,0.532851,0.0679783,0.82359,0.71424,0.281017,0.412769,0.829143,0.0733472,0.728411,0.884845,0.834142,0.819626,0.993655,0.0298653,0.583575,0.381037,0.137963,0.302405,0.868083,0.094158,0.78368,0.418631,0.929829,0.020633,0.848583,0.190822,0.559484,0.296282,0.0434275,0.676064,0.647585,0.0776976,0.502213,0.20187,0.438435,0.929059,0.269957,0.389969,0.124404,0.953825,0.530405,0.109382,0.916106,0.986311,0.213571,0.119037,0.421952,0.0328811,0.803947,0.704363,0.558364,0.117916,0.305425,0.11005,0.403382,0.403567,0.936868,0.120219,0.79368,0.432588,0.233585,0.966697,0.42416,0.503836,0.892067,0.926939,0.25309,0.436664,0.833318,0.868314,0.958509,0.21682,0.316515,0.475005,0.483377,0.427284,0.899052,0.828227,0.150048,0.678809,0.82303,0.792074,0.426603,0.590241,0.666742,0.726296,0.908671,0.612878,0.38978,0.557513,0.0421355,0.96099,0.72317,0.195895,0.655201,0.211004,0.0485682,0.814036,0.467649,0.622721,0.949742,0.744297,0.978907,0.633728,0.119485,0.835771,0.155049,0.266458,0.289567,0.792211,0.471271,0.206557,0.184231,0.303256,0.494209,0.914282,0.00982922,0.438198,0.566414,0.843283,0.0234918,0.437104,0.552749,0.346748,0.816441,0.944549,0.144143,0.47058,0.987452,0.638793,0.114004,0.430393,0.0926186,0.965313,0.827783,0.262187,0.460477,0.945779,0.90539,0.609194,0.521885,0.907116,0.218901,0.529922,0.50049,0.138598,0.0970765,0.69857,0.999933,0.835849,0.795705,0.805546,0.877161,0.70677,0.345319,0.516404,0.826007,0.283364,0.571213,0.994269,0.104857,0.134268,0.458971,0.383821,0.385209,0.546554,0.934202,0.293315,0.200573,0.0247203,0.789583,0.861637,0.870655,0.723439,0.374453,0.590935,0.722306,0.737234,0.706899,0.522821,0.0354467,0.826954,0.406051,0.0679981,0.923617,0.560808,0.448999,0.952006,0.0628845,0.474845,0.859754,0.801738,0.110169,0.32144,0.99812,0.886114,0.642739,0.554812,0.0095616,0.843321,0.756317,0.107216,0.558339,0.378627,0.110004,0.0372914,0.767243,0.50564,0.0487197,0.712715,0.651867,0.939773,0.237164,0.790461,0.0393732,0.439573,0.464394,0.649705,0.95509,0.867909,0.52966,0.97744,0.459619,0.538821,0.890935,0.203737,0.65182,0.605356,0.593243,0.464332,0.949412,0.842933,0.84844,0.624463,0.311651,0.378541,0.0344267,0.983437,0.282805,0.425227,0.206695,0.0911654,0.713099,0.49166,0.336806,0.169959,0.448767,0.0909774,0.238477,0.660639,0.602372,0.844239,0.97145,0.523891,0.105711,0.190903,0.570746,0.500868,0.485629,0.549935,0.206592,0.167991,0.18166,0.602055,0.300517,0.121265,0.152231,0.148466,0.632152,0.0392182,0.596208,0.960316,0.590565,0.525627,0.607459,0.140367,0.424055,0.174543,0.439287,0.0872256,0.933722,0.0856768,0.369213,0.716207,0.141194,0.459408,0.73288,0.387235,0.993935,0.00825286,0.172659,0.550044,0.752688,0.594398,0.242194,0.0670502,0.767684,0.477048,0.324013,0.0160206,0.644311,0.0209082,0.936342,0.401406,0.403137,0.237695,0.638387,0.790939,0.214764,0.861561,0.614167,0.556545,0.696507,0.174389,0.789224,0.0965918,0.739366,0.508913,0.827434,0.386698,0.607747,0.843356,0.495076,0.060267,0.966186,0.389827,0.730071,0.918594,0.0136515,0.584262,0.792526,0.351886,0.691233,0.875285,0.0747532,0.146321,0.343722,0.787349,0.416861,0.290302,0.928716,0.0233366,0.346006,0.351948,0.0843481,0.217398,0.515449,0.0438336,0.439503,0.880596,0.899104,0.884523,0.438772,0.861847,0.576953,0.974345,0.878969,0.298461,0.504035,0.861827,0.938553,0.298528,0.502009,0.32716,0.308662,0.882968,0.238953,0.780408,0.301007,0.39834,0.93308,0.196581,0.181818,0.142298,0.965973,0.51977,0.133913,0.261766,0.541865,0.0656754,0.248836,0.13731,0.373792,0.803947,0.675966,0.942396,0.337862,0.0923974,0.296361,0.986455,0.291249,0.140762,0.899266,0.597098,0.966656,0.256968,0.441239,0.509474,0.484752,0.998888,0.512171,0.807457,0.110777,0.394122,0.205707,0.301225,0.973347,0.591416,0.179712,0.0393803,0.627142,0.452468,0.448136,0.196449,0.95556,0.664839,0.0727283,0.152891,0.0200947,0.305343,0.501348,0.984765,0.67264,0.377347,0.508423,0.669235,0.953391,0.554149,0.246373,0.249271,0.429074,0.615994,0.682403,0.524527,0.696107,0.809771,0.961561,0.44659,0.630392,0.739131,0.987573,0.382704,0.0989997,0.169654,0.503918,0.529161,0.174485,0.789485,0.182652,0.189467,0.261118,0.87818,0.52379,0.700049,0.297056,0.728314,0.86753,0.285468,0.597484,0.376234,0.318474,0.324655,0.191535,0.695153,0.87876,0.877869,0.83944,0.0502244,0.960237,0.157759,0.244203,0.113712,0.8461,0.888348,0.0524394,0.207876,0.884628,0.450239,0.535294,0.458825,0.888663,0.76938,0.115042,0.732575,0.0624568,0.993281,0.0502615,0.448077,0.765258,0.33749,0.274838,0.107139,0.223581,0.573889,0.664469,0.762527,0.220966,0.942416,0.719912,0.0479885,0.148679,0.492,0.340332,0.614241,0.0384948,0.314386,0.405817,0.239751,0.23835,0.290813,0.918571,0.451449,0.99741,0.874117,0.0860763,0.1225,0.984876,0.684528,0.440484,0.943808,0.0869393,0.653283,0.613949,0.311779,0.510572,0.759886,0.330814,0.373607,0.401425,0.920592,0.612235,0.346112,0.1902,0.959339,0.115744,0.976008,0.808041,0.612091,0.154008,0.726779,0.457884,0.945265,0.961379,0.0919766,0.500423,0.0229879,0.297501,0.258585,0.0457003,0.069276,0.941262,0.912081,0.812944,0.446185,0.820426,0.31153,0.640943,0.85584,0.514017,0.72095,0.353166,0.522588,0.350851,0.376368,0.950778,0.284265,0.423494,0.175171,0.610352,0.441178,0.457575,0.949415,0.939011,0.0973474,0.724623,0.45845,0.212887,0.835851,0.543992,0.453379,0.788305,0.0382118,0.696696,0.263344,0.549904,0.425881,0.0505123,0.691474,0.0259021,0.509647,0.31163,0.270151,0.465229,0.631981,0.205215,0.783544,0.820982,0.049915,0.0591332,0.980044,0.507747,0.485386,0.455654,0.175056,0.263039,0.848677,0.160668,0.0617908,0.561861,0.0844367,0.114921,0.175042,0.395854,0.0963119,0.0420304,0.021004,0.783429,0.583449,0.630845,0.751395,0.206052,0.20353,0.788572,0.583186,0.0328455,0.148691,0.434133,0.623404,0.420286,0.827414,0.223283,0.706787,0.484364,0.193612,0.388021,0.420231,0.4182,0.78476,0.66778,0.708471,0.0161298,0.518738,0.606827,0.746688,0.306684,0.0738072,0.49081,0.780269,0.443453,0.257773,0.974837,0.304305,0.147483,0.0489637,0.107563,0.704282,0.216499,0.0927423,0.634586,0.652627,0.624473,0.0918115,0.476809,0.421247,0.901692,0.264883,0.868248,0.833694,0.936334,0.645167,0.955257,0.702672,0.17866,0.304077,0.225218,0.227496,0.207645,0.0260581,0.172396,0.938286,0.0119242,0.739696,0.706753,0.543648,0.564868,0.657958,0.775502,0.0796393,0.669343,0.424611,0.100703,0.296325,0.0850062,0.985226,0.321002,0.531156,0.548948,0.271602,0.65003,0.0923345,0.498675,0.642516,0.939529,0.223066,0.0703207,0.954948,0.841333,0.484979,0.634002,0.363089,0.525716,0.652028,0.0624785,0.400019,0.925832,0.575396,0.367471,0.577433,0.523928,0.0742385,0.919371,0.408587,0.635851,0.86999,0.407825,0.0765229,0.199873,0.148857,0.744631,0.32567,0.426604,0.135861,0.147968,0.623288,0.54279,0.938204,0.145497,0.812506,0.0707797,0.356408,0.564229,0.54199,0.637341,0.878667,0.69014,0.88961,0.877564,0.574298,0.627519,0.113572,0.403518,0.263169,0.966196,0.603697,0.598552,0.130642,0.33891,0.1867,0.566405,0.547412,0.92136,0.95289,0.0409452,0.829058,0.839281,0.808405,0.118599,0.13749,0.586443,0.69162,0.703425,0.342273,0.671341,0.413884,0.724358,0.542484,0.355104,0.515655,0.735906,0.578748,0.0840865,0.69202,0.472295,0.0396815,0.513685,0.429063,0.522967,0.736215,0.838692,0.126147,0.995061,0.348275,0.826775,0.137088,0.327106,0.20551,0.398414,0.927524,0.665999,0.43327,0.105633,0.810487,0.758634,0.229603,0.251614,0.261382,0.431113,0.461309,0.458379,0.383454,0.529941,0.550043,0.870034,0.611041,0.101106,0.0547092,0.0457305,0.15749,0.148854,0.142497,0.925359,0.0202683,0.718965,0.466558,0.680688,0.934878,0.729887,0.53862,0.654795,|0.421219,0.165405,0.640569,0.767343,0.700279,0.0180154,0.655104,0.482174,0.396104,0.896831,0.800871,0.31393,0.409178,0.99475,0.123953,0.825093,0.884405,0.594352,0.589142,0.917032,0.568638,0.674649,0.989193,0.644247,0.429159,0.702407,0.394709,0.868163,0.0152773,0.663015,0.705248,0.385,0.334267,0.809599,0.910969,0.513737,0.543828,0.767068,0.571808,0.0305737,0.31461,0.80863,0.414975,0.250015,0.807429,0.194889,0.765194,0.167144,0.879313,0.0360402,0.114852,0.000699699,0.291238,0.540555,0.238596,0.355218,0.444831,0.815774,0.387231,0.88897,0.152119,0.526,0.668573,0.121212,0.866672,0.0199487,0.234308,0.986276,0.539047,0.470854,0.0291749,0.895996,0.0507337,0.531999,0.395208,0.0902058,0.52615,0.441705,0.0130726,0.407079,0.802686,0.055334,0.403937,0.765853,0.465313,0.917917,0.281393,0.044283,0.0249525,0.712983,0.597632,0.243006,0.279366,0.769485,0.666689,0.380659,0.862791,0.363177,0.930836,0.300844,0.480717,0.965727,0.00396395,0.801604,0.29752,0.158111,0.962127,0.985573,0.83974,0.332952,0.800588,0.254013,0.106878,0.876344,0.447114,0.144068,0.178855,0.116853,0.779594,0.782093,0.390322,0.710831,0.115002,0.17227,0.663357,0.0709831,0.834859,0.0902626,0.522338,0.853283,0.118832,0.594692,0.352285,0.578105,0.528763,0.189104,0.834276,0.326401,0.836738,0.0215154,0.389456,0.288325,0.100579,0.119729,0.0832425,0.250717,0.282541,0.520272,0.51091,0.891864,0.470585,0.700535,0.900041,0.293071,0.19695,0.166521,0.754989,0.702065,0.0615951,0.702163,0.971874,0.633143,0.390037,0.8646,0.109703,0.785749,0.256694,0.22047,0.483301,0.67726,0.222692,0.698956,0.316938,0.353344,0.314819,0.092604,0.385583,0.465501,0.87422,0.817037,0.945939,0.380653,0.608546,0.0420676,0.00125891,0.180797,0.188409,0.764296,0.725967,0.223598,0.808885,0.624018,0.145457,0.120467,0.170302,0.239999,0.867393,0.387912,0.116101,0.00985247,0.374873,0.365258,0.8121,0.0729225,0.534313,0.328243,0.00639284,0.263964,0.55201,0.640259,0.950445,0.45586,0.567825,0.308721,0.344948,0.973272,0.346497,0.708637,0.659655,0.402679,0.498267,0.446909,0.948897,0.450494,0.0836924,0.723813,0.714546,0.228177,0.249428,0.229514,0.845067,0.267316,0.0582558,0.990234,0.671367,0.483897,0.892526,0.859157,0.0611593,0.26614,0.0672357,0.315651,0.16284,0.739551,0.366026,0.309805,0.444895,0.814994,0.939364,0.0229606,0.265069,0.328738,0.143429,0.861137,0.125948,0.140591,0.374782,0.555727,0.136197,0.0935649,0.608715,0.256163,0.253999,0.790096,0.13553,0.592558,0.125939,0.0299457,0.365561,0.347842,0.419165,0.544387,0.0421404,0.357789,0.819532,0.868095,0.0451636,0.785689,0.335554,0.890935,0.274444,0.247814,0.0370053,0.172546,0.167843,0.192327,0.393314,0.760526,0.766057,0.856484,0.506132,0.826186,0.0110043,0.117031,0.330061,0.135111,0.774933,0.475256,0.533181,0.044162,0.952188,0.63113,0.915939,0.482249,0.887197,0.485374,0.352998,0.812034,0.429449,0.87892,0.0450175,0.95938,0.924903,0.133745,0.504301,0.406143,0.0731162,0.122627,0.678753,0.146437,0.218649,0.788014,0.292003,0.34727,0.831985,0.00125796,0.178673,0.819961,0.825487,0.458514,0.548586,0.0619868,0.563496,0.755151,0.255116,0.531395,0.832626,0.505513,0.607591,0.445289,0.561804,0.881839,0.390842,0.556736,0.148748,0.683768,0.997993,0.742706,0.751273,0.868668,0.889211,0.838949,0.25313,0.903582,0.968151,0.813849,0.20134,0.314822,0.675848,0.97553,0.497735,0.0985804,0.777588,0.0746747,0.232475,0.602431,0.189771,0.804862,0.290111,0.504003,0.506274,0.395483,0.254681,0.503403,0.628457,0.902427,0.495507,0.79788,0.831605,0.379807,0.579096,0.788143,0.501275,0.0349782,0.969934,0.596859,0.271818,0.7032,0.0187203,0.137843,0.628373,0.730088,0.0390902,0.143615,0.0836975,0.237862,0.440851,0.848683,0.253031,0.598235,0.679698,0.533521,0.116232,0.247831,0.857017,0.373418,0.847556,0.415278,0.0264221,0.453331,0.410254,0.0569575,0.807147,0.627075,0.833081,0.293781,0.593992,0.874417,0.593686,0.845182,0.749398,0.003712,0.0511659,0.0477532,0.244301,0.649634,0.36235,0.352282,0.289973,0.828552,0.00727314,0.546077,0.506613,0.099705,0.999382,0.0500892,0.663737,0.00292122,0.677596,0.0377453,0.468449,0.500166,0.36928,0.623293,0.109451,0.52461,0.245618,0.038517,0.289118,0.519146,0.346143,0.886845,0.522088,0.97513,0.526813,0.11732,0.616086,0.156895,0.120417,0.387474,0.710293,0.0998441,0.307412,0.851571,0.602464,0.325791,0.472758,0.642113,0.588086,0.448847,0.460512,0.86963,0.881375,0.937224,0.938583,0.965203,0.879741,0.379039,0.0515935,0.721857,0.581832,0.3688,0.90442,0.481862,0.427812,0.514188,0.676688,0.471071,0.877662,0.218146,0.292431,0.963961,0.118244,0.00350982,0.0195691,0.6962,0.218736,0.799772,0.34683,0.523307,0.252286,0.346442,0.550978,0.832113,0.118462,0.187746,0.65243,0.802022,0.177815,0.251099,0.761627,0.389845,0.660421,0.601087,0.294982,0.333993,0.783933,0.239323,0.0439782,0.864183,0.275059,0.461065,0.759214,0.270405,0.0450667,0.0554602,0.998791,0.665419,0.680444,0.0521641,0.370738,0.0163217,0.626487,0.858968,0.7514,0.0833216,0.153811,0.0558557,0.7778,0.691008,0.527699,0.277601,0.3585,0.117593,0.656748,0.560836,0.849104,0.745714,0.966558,0.628514,0.298374,0.29728,0.653159,0.816842,0.301507,0.0947222,0.558311,0.785769,0.609193,0.449561,0.0300339,0.905678,0.383616,0.0238494,0.0447248,0.755075,0.841673,0.608037,0.921491,0.918808,0.917938,0.95202,0.534941,0.634558,0.18336,0.416212,0.13603,0.367714,0.269017,0.562069,0.438287,0.13419,0.366597,0.928678,0.661333,0.787768,0.94692,0.393631,0.259936,0.422223,0.442022,0.710708,0.332261,0.383649,0.261391,0.321874,0.317967,0.727785,0.548597,0.486274,0.0897459,0.821876,0.952134,0.645959,0.295675,0.611543,0.0710189,0.571198,0.107238,0.184264,0.0576604,0.344294,0.334995,0.869281,0.468952,0.859195,0.893036,0.153826,0.995325,0.818239,0.600615,0.560211,0.57158,0.965685,0.729991,0.676372,0.0437349,0.351855,0.11491,0.514137,0.179655,0.0638963,0.556077,0.574003,0.481122,0.123012,0.655811,0.94079,0.311964,0.222568,0.621567,0.935083,0.409454,0.542191,0.998894,0.898,0.936779,0.227116,0.832707,0.225607,0.0385052,0.757596,0.648245,0.614108,0.493339,0.985509,0.18908,0.48429,0.896239,0.157736,0.327707,0.0399939,0.797868,0.690429,0.916704,0.125946,0.63255,0.872568,0.757633,0.67243,0.151327,0.163131,0.894024,0.417344,0.289974,0.237331,0.462178,0.687279,0.042704,0.695942,0.974111,0.243769,0.110789,0.0823794,0.0354219,0.26454,0.0804222,0.150188,0.667282,0.341337,0.0625156,0.460533,0.424107,0.518606,0.170284,0.363459,0.761946,0.329028,0.26466,0.30541,0.835849,0.264713,0.653116,0.41318,0.454534,0.631918,0.97539,0.705452,0.0415583,0.8311,0.450768,0.320761,0.680235,0.828294,0.874916,0.175058,0.322321,0.909273,0.72428,0.520541,0.335363,0.829253,0.6776,0.629673,0.925977,0.816632,0.881093,0.856309,0.984076,0.804945,0.478106,0.56369,0.307199,0.946191,0.353892,0.384484,0.781825,0.46149,0.852062,0.0998261,0.00627708,0.819952,0.174883,0.368609,0.399833,0.156863,0.594559,0.408013,0.184822,0.755405,0.182364,0.588299,0.328947,0.139322,0.487544,0.361212,0.71252,0.0757241,0.322682,0.20446,0.724104,0.893228,0.43902,0.202518,0.782474,0.604081,0.619767,0.646397,0.772324,0.765798,0.708242,0.623855,0.637742,0.567476,0.53464,0.650632,0.324102,0.673332,0.942003,0.84865,0.320354,0.331784,0.0531554,0.453659,0.036347,0.963772,0.315446,0.135592,0.585563,0.0263619,0.41425,0.882965,0.056659,0.65729,0.363824,0.0855796,0.0357797,0.949617,0.774281,0.269133,0.213577,0.753149,0.531233,0.402244,0.178238,0.275934,0.683472,0.138513,0.327351,0.632474,0.649718,0.48315,0.290259,0.49882,0.684211,0.556314,0.416373,0.0294109,0.36823,0.945994,0.164461,0.482312,0.894012,0.058216,0.918412,0.208674,0.438157,0.563541,0.725589,0.657867,0.380667,0.31624,0.511953,0.0153553,0.634931,0.371076,0.58601,0.0306935,0.00302583,0.702882,0.202201,0.795923,0.348867,0.199318,0.482418,0.279574,0.359756,0.722138,0.874742,0.637705,0.781125,0.500017,0.0436184,0.563372,0.43167,0.855586,0.523448,0.516051,0.0718608,0.504359,0.555879,0.712785,0.983641,0.643778,0.0194187,0.533884,0.451442,0.361881,0.925447,0.913216,0.209018,0.768727,0.766799,0.648642,0.487289,0.977052,0.0422454,0.254364,0.896161,0.00514007,0.397074,0.101434,0.00413495,0.99937,0.640719,0.697414,0.183648,0.513173,0.0121623,0.0517319,0.776509,0.615632,0.288895,0.0788665,0.150852,0.633723,0.88672,0.466715,0.173827,0.152165,0.518117,0.660382,0.439868,0.304195,0.390059,0.656019,0.601875,0.00071609,0.496558,0.0950662,0.651359,0.158013,0.551896,0.327188,0.0590923,0.396626,0.956764,0.027716,0.217564,0.029208,0.678322,0.582537,0.09588,0.738333,0.919091,0.292005,0.66483,0.309822,0.613064,0.962168,0.234587,0.220527,0.975499,0.672366,0.257427,0.500343,0.264035,0.450014,0.199617,0.00667,0.850617,0.277356,0.716646,0.402632,0.315589,0.583128,0.830264,0.406925,0.656041,0.0256369,0.681515,0.552509,0.927975,0.564383,0.662175,0.829077,0.954687,0.0765148,0.901925,0.725486,0.661289,0.174256,0.488062,0.10785,0.0773412,0.385662,0.696285,0.920993,0.181884,0.790238,0.227521,0.536311,0.861759,0.863853,0.787708,0.784174,0.482922,0.565918,0.888271,0.968844,0.823184,0.425612,0.717671,0.907016,0.374574,0.269923,0.23936,0.549967,0.804436,0.659056,0.110161,0.724793,0.878125,0.362614,0.73756,0.279104,0.875815,0.554668,0.362836,0.979053,|0.488018,0.302844,0.723905,0.791263,0.845225,0.717497,0.413956,0.81527,0.593556,0.283327,0.28677,0.775036,0.528707,0.0920509,0.973138,0.156051,0.236318,0.137821,0.631889,0.959478,0.98304,0.116815,0.136062,0.84609,0.194507,0.619272,0.561046,0.558941,0.759389,0.143596,0.698176,0.24225,0.332822,0.467997,0.949887,0.947065,0.103941,0.849314,0.529917,0.581371,0.0782259,0.0490599,0.238095,0.686929,0.384158,0.549094,0.00674921,0.6485,0.600173,0.111612,0.984098,0.327173,0.579525,0.0629793,0.48624,0.185651,0.362386,0.177505,0.418166,0.503933,0.89212,0.571649,0.967113,0.970861,0.826612,0.543072,0.936822,0.254077,0.34249,0.0272793,0.541352,0.641279,0.321065,0.00072217,0.885598,0.59403,0.707304,0.62803,0.0496408,0.461194,0.0559862,0.790155,0.64169,0.470003,0.807758,0.0373533,0.844417,0.0165013,0.125401,0.503572,0.996063,0.92366,0.463674,0.776502,0.436375,0.489191,0.969908,0.201591,0.554937,0.904783,0.727834,0.176152,0.941846,0.232893,0.417619,0.0492285,0.692379,0.915055,0.861352,0.222628,0.167485,0.945932,0.387328,0.254993,0.241913,0.941232,0.480143,0.777445,0.443015,0.333798,0.349412,0.136335,0.179832,0.457726,0.861292,0.234296,0.699493,0.87022,0.906355,0.166881,0.953192,0.869704,0.293277,0.75235,0.805968,0.70508,0.892442,0.982587,0.462648,0.701316,0.782335,0.521767,0.8775,0.759591,0.573051,0.827194,0.605473,0.659309,0.772728,0.220773,0.293699,0.0300234,0.270008,0.903401,0.236644,0.941029,0.521723,0.0167462,0.489109,0.599142,0.808997,0.157443,0.535375,0.104824,0.432424,0.611706,0.13494,0.363803,0.239661,0.22421,0.0747299,0.548886,0.192173,0.682683,0.908451,0.389198,0.26662,0.522054,0.00141495,0.554355,0.907146,0.166172,0.979061,0.827407,0.255288,0.565872,0.900444,0.217363,0.929407,0.688766,0.131089,0.00144047,0.272132,0.866361,0.990254,0.287054,0.615626,0.686426,0.659141,0.401294,0.841911,0.828347,0.684172,0.10965,0.54079,0.433345,0.196219,0.495798,0.590374,0.694717,0.636162,0.529082,0.915471,0.749172,0.179489,0.832418,0.888231,0.773178,0.437795,0.337223,0.494866,0.617417,0.767565,0.160975,0.465421,0.811246,0.867792,0.996714,0.176939,0.317449,0.542775,0.147291,0.630795,0.86959,0.907439,0.199965,0.361087,0.410369,0.757859,0.0390989,0.670782,0.983942,0.838089,0.572317,0.137515,0.670916,0.593721,0.711134,0.304677,0.334988,0.396051,0.681855,0.6476,0.134458,0.768031,0.880622,0.342678,0.693738,0.313314,0.117598,0.992743,0.291351,0.959826,0.333539,0.414746,0.273938,0.0159178,0.163017,0.227759,0.743251,0.077204,0.51881,0.0198599,0.340913,0.132798,0.361205,0.264815,0.362016,0.0974746,0.541055,0.102375,0.457929,0.760186,0.164225,0.911675,0.05463,0.557781,0.684005,0.031913,0.70036,0.623619,0.703573,0.792533,0.469943,0.414482,0.389972,0.8782,0.24574,0.512162,0.0764033,0.439634,0.424817,0.920049,0.743541,0.967187,0.37351,0.85064,0.095555,0.945893,0.195512,0.825102,0.218313,0.039345,0.143568,0.324843,0.998902,0.958222,0.309428,0.225158,0.80362,0.700467,0.696565,0.438228,0.100688,0.275289,0.193117,0.241541,0.378636,0.456616,0.320204,0.820625,0.456549,0.503455,0.167326,0.423689,0.457279,0.915115,0.719452,0.109706,0.298879,0.795233,0.39743,0.0119714,0.959114,0.286516,0.889407,0.513022,0.975102,0.175979,0.141414,0.592221,0.434953,0.956484,0.831118,0.58696,0.965965,0.93599,0.555969,0.382972,0.885911,0.562959,0.844761,0.0914952,0.700504,0.0790931,0.64218,0.894114,0.672332,0.684097,0.829386,0.895799,0.21696,0.185877,0.718887,0.141152,0.462398,0.197111,0.0507206,0.946812,0.560361,0.501402,0.998778,0.826317,0.677237,0.757848,0.900948,0.943682,0.479231,0.674361,0.486235,0.0653346,0.300276,0.190048,0.47839,0.874958,0.851422,0.876289,0.13425,0.926586,0.408257,0.831562,0.534206,0.844447,0.736426,0.764925,0.145763,0.27105,0.846586,0.79546,0.448141,0.850655,0.625086,0.31655,0.0808542,0.329928,0.344708,0.370154,0.478829,0.735859,0.798455,0.180828,0.6854,0.605269,0.679783,0.151857,0.886663,0.857443,0.193674,0.889194,0.630504,0.841911,0.850862,0.0656019,0.623051,0.1315,0.958862,0.829161,0.20912,0.626541,0.871977,0.778029,0.452594,0.990567,0.216836,0.502164,0.924659,0.31613,0.516252,0.698559,0.159492,0.663801,0.634282,0.572559,0.617043,0.876932,0.603592,0.864734,0.588298,0.408465,0.319876,0.534459,0.911375,0.361749,0.479339,0.936902,0.735085,0.108777,0.889475,0.414132,0.188197,0.483305,0.816493,0.541406,0.725259,0.308067,0.309474,0.0869994,0.649493,0.440825,0.0408282,0.56774,0.537943,0.233098,0.0457106,0.77636,0.532885,0.585296,0.129193,0.506658,0.280107,0.0542235,0.139302,0.509549,0.178077,0.373892,0.542658,0.315732,0.0846795,0.0901504,0.352956,0.991862,0.741743,0.705833,0.708757,0.11457,0.139041,0.580494,0.885868,0.029211,0.510263,0.514832,0.870523,0.495337,0.61741,0.45261,0.801635,0.613971,0.842539,0.937815,0.796929,0.177618,0.0909032,0.192163,0.622023,0.625655,0.574853,0.288189,0.760218,0.183609,0.0950798,0.413455,0.366953,0.544288,0.373849,0.821727,0.093478,0.493696,0.140227,0.990278,0.14118,0.0668458,0.336127,0.897067,0.658709,0.377372,0.129408,0.640501,0.00641721,0.663132,0.464431,0.381902,0.344728,0.0936224,0.432614,0.714159,0.319104,0.292749,0.552315,0.694309,0.556469,0.293167,0.631872,0.842832,0.492524,0.0444231,0.0584626,0.427252,0.535194,0.0630759,0.885168,0.0910862,0.244672,0.201536,0.978645,0.467125,0.440187,0.832482,0.908114,0.48287,0.0254064,0.00932211,0.317371,0.858882,0.100892,0.85052,0.053674,0.505746,0.288121,0.869059,0.546074,0.22162,0.0793623,0.265052,0.00666535,0.632995,0.920202,0.0173665,0.327662,0.791179,0.289898,0.00205326,0.0681863,0.307795,0.810749,0.735793,0.213437,0.140757,0.374423,0.733643,0.533463,0.861404,0.967537,0.0700722,0.0672292,0.323063,0.452036,0.608548,0.0549358,0.336397,0.692852,0.263182,0.352179,0.181592,0.465888,0.534928,0.382111,0.949248,0.61076,0.21774,0.411759,0.00702715,0.8201,0.668996,0.368156,0.344573,0.484116,0.774171,0.0864887,0.848807,0.876714,0.351674,0.868529,0.38929,0.395926,0.384747,0.0314548,0.94198,0.532066,0.306991,0.020795,0.72137,0.0628216,0.210037,0.553789,0.787748,0.250614,0.698563,0.818917,0.935515,0.194936,0.627573,0.137923,0.383679,0.113584,0.99173,0.0252299,0.140997,0.22975,0.76397,0.268919,0.731227,0.440471,0.404337,0.140118,0.469143,0.752189,0.538419,0.437657,0.0975527,0.210613,0.940667,0.284432,0.742546,0.698379,0.615045,0.0976018,0.271644,0.241448,0.996295,0.261228,0.945119,0.917452,0.653174,0.0171334,0.861456,0.925971,0.48715,0.154167,0.0187573,0.117635,0.366196,0.026294,0.506009,0.420212,0.449343,0.0969957,0.525589,0.303373,0.605731,0.984179,0.761058,0.512688,0.947304,0.147876,0.920007,0.994807,0.363861,0.592118,0.869225,0.0571682,0.430506,0.992891,0.259732,0.352256,0.255156,0.988599,0.84401,0.530834,0.568937,0.820831,0.969989,0.0574932,0.385561,0.0968816,0.426605,0.58631,0.236611,0.452268,0.381843,0.834785,0.91496,0.683863,0.882495,0.262046,0.602533,0.376684,0.472718,0.364487,0.385302,0.85427,0.00523925,0.617855,0.726934,0.708813,0.264604,0.343116,0.132407,0.655593,0.0726284,0.478316,0.462595,0.143805,0.858126,0.609505,0.463572,0.0776413,0.475359,0.50347,0.467165,0.435814,0.953829,0.128175,0.263585,0.118019,0.406958,0.460718,0.095278,0.569741,0.716561,0.712428,0.181651,0.688028,0.00707024,0.83843,0.730858,0.455992,0.579546,0.213153,0.76765,0.104068,0.462172,0.309909,0.389068,0.0417572,0.601044,0.695054,0.00664049,0.408636,0.678462,0.847017,0.99899,0.218909,0.0628975,0.961158,0.32202,0.967696,0.96878,0.766104,0.888478,0.542596,0.506846,0.750934,0.681555,0.666444,0.462757,0.454482,0.42258,0.668607,0.0878255,0.698779,0.251574,0.343073,0.93293,0.980097,0.446421,0.460824,0.378603,0.892491,0.784852,0.463039,0.0326281,0.555738,0.807377,0.418309,0.0657023,0.394394,0.425983,0.994541,0.690605,0.17899,0.495059,0.857771,0.525628,0.734748,0.918469,0.0713471,0.568726,0.112831,0.778457,0.621262,0.174705,0.550389,0.931031,0.240368,0.39433,0.750074,0.32925,0.237354,0.684433,0.995534,0.265527,0.43053,0.943942,0.855735,0.949276,0.210924,0.487413,0.302851,0.661558,0.382377,0.133498,0.0468011,0.600892,0.675898,0.418863,0.0587031,0.671007,0.619595,0.944264,0.873606,0.564393,0.891565,0.376869,0.625223,0.400654,0.608332,0.00612736,0.241866,0.84825,0.561855,0.458699,0.607573,0.24673,0.757173,0.183492,0.22433,0.691945,0.604103,0.780419,0.23566,0.392628,0.660462,0.0190963,0.399416,0.809404,0.446304,0.453218,0.134916,0.336665,0.153007,0.479367,0.413194,0.80574,0.6322,0.204726,0.623267,0.253246,0.320023,0.773178,0.323583,0.606749,0.0238955,0.259741,0.668755,0.0692291,0.635244,0.451165,0.767406,0.893266,0.888436,0.0262392,0.0644774,0.880229,0.546467,0.200939,0.225929,0.758029,0.58674,0.853636,0.740957,0.182977,0.558149,0.648979,0.244455,0.0129318,0.72715,0.470755,0.329328,0.118368,0.0303848,0.662156,0.598273,0.825415,0.557369,0.200417,0.23572,0.00401378,0.510949,0.789024,0.715639,0.897496,0.239447,0.260464,0.260563,0.884225,0.00295836,0.69657,0.71934,0.491926,0.85301,0.661054,0.460966,0.698221,0.499367,0.0140356,0.448586,0.0762664,0.967056,0.618481,0.951088,0.35003,0.826788,0.768234,0.0814707,0.592804,0.125737,0.734655,0.341977,0.00683165,0.665306,0.443706,0.995563,0.491347,0.0438113,0.212542,0.968693,0.892883,0.383811,0.387778,0.892926,|0.977578,0.101425,0.928504,0.110798,0.220805,0.351635,0.413101,0.422105,0.406393,0.851912,0.979563,0.588932,0.512784,0.033955,0.702695,0.732312,0.560063,0.563251,0.686437,0.0159808,0.221612,0.212389,0.828326,0.366857,0.38417,0.996654,0.0421842,0.562198,0.460347,0.518287,0.712465,0.41594,0.124888,0.177375,0.883834,0.607792,0.38144,0.629259,0.401634,0.0671949,0.00703162,0.147924,0.250893,0.814599,0.123211,0.647425,0.387592,0.61453,0.195176,0.821615,0.728681,0.329603,0.914606,0.443601,0.961115,0.893097,0.328631,0.317834,0.111539,0.789613,0.414545,0.92436,0.339783,0.309315,0.668572,0.246443,0.670014,0.850235,0.223963,0.157467,0.393033,0.279035,0.810174,0.638064,0.838231,0.835138,0.624182,0.0784438,0.192059,0.441276,0.0828187,0.23144,0.749757,0.624761,0.495622,0.0749936,0.914503,0.329753,0.141121,0.937347,0.549416,0.158057,0.734976,0.199468,0.659982,0.637043,0.352979,0.982997,0.833819,0.721373,0.882542,0.869595,0.620022,0.805039,0.6963,0.911775,0.479982,0.498791,0.0313705,0.446198,0.443675,0.321164,0.160673,0.381805,0.729585,0.214162,0.516617,0.294862,0.226002,0.0124714,0.326862,0.539651,0.486983,0.429373,0.199428,0.214252,0.849195,0.390726,0.00261885,0.493915,0.408745,0.378712,0.216006,0.235697,0.150601,0.785603,0.483982,0.262519,0.9411,0.332626,0.880804,0.146799,0.617118,0.138951,0.0654261,0.547321,0.221826,0.413716,0.404433,0.253955,0.0768623,0.123021,0.430306,0.74239,0.236238,0.943552,0.143584,0.678093,0.820982,0.542206,0.211053,0.603523,0.671713,0.286592,0.592751,0.317751,0.268457,0.991963,0.54904,0.484197,0.67539,0.311191,0.789267,0.598425,0.423117,0.0191138,0.353004,0.288997,0.481205,0.555288,0.95126,0.851249,0.299982,0.418635,0.959202,0.863589,0.425846,0.776637,0.158568,0.124449,0.294813,0.350458,0.373397,0.711525,0.826812,0.0687838,0.281434,0.0953482,0.797248,0.373158,0.627049,0.919649,0.674468,0.0159199,0.530041,0.0168188,0.552144,0.333887,0.240043,0.861721,0.380303,0.297086,0.284949,0.542593,0.349569,0.300835,0.681591,0.397899,0.947378,0.310429,0.262601,0.518995,0.59566,0.0551541,0.480432,0.326612,0.410174,0.904868,0.141431,0.253134,0.95313,0.996975,0.881961,0.92199,0.535711,0.137183,0.511809,0.209417,0.294086,0.300107,0.659092,0.290127,0.735021,0.263339,0.867598,0.553527,0.96766,0.315299,0.751502,0.551462,0.936786,0.435518,0.083178,0.879084,0.565881,0.544776,0.235844,0.0984591,0.47405,0.153726,0.669134,0.702646,0.891714,0.0451264,0.201377,0.028075,0.70507,0.172355,0.722871,0.590269,0.602911,0.277536,0.752748,0.0871773,0.643119,0.966288,0.159899,0.314925,0.748459,0.190354,0.123061,0.442032,0.825947,0.861144,0.153638,0.778201,0.988913,0.234596,0.0755715,0.725739,0.779425,0.590739,0.904467,0.725415,0.195575,0.692046,0.437739,0.572473,0.345164,0.697866,0.0552949,0.478212,0.39881,0.836963,0.772543,0.17945,0.900544,0.957006,0.0410056,0.684704,0.650628,0.0866884,0.232122,0.192034,0.16622,0.0905561,0.91959,0.22745,0.760244,0.514584,0.683743,0.697278,0.708922,0.528779,0.947358,0.0299135,0.195513,0.0810309,0.310244,0.117679,0.889455,0.970172,0.928954,0.17979,0.934766,0.262682,0.525857,0.511051,0.494332,0.836832,0.544934,0.5445,0.868151,0.934777,0.794183,0.381588,0.0650665,0.0293542,0.753915,0.511259,0.774904,0.646115,0.730377,0.744501,0.39739,0.500014,0.892801,0.599061,0.938877,0.326911,0.970251,0.30063,0.280543,0.602264,0.811918,0.991538,0.665782,0.272171,0.406677,0.40578,0.0745592,0.15331,0.275273,0.646697,0.383119,0.0122039,0.531065,0.0244032,0.102981,0.43327,0.97291,0.497717,0.474802,0.26706,0.414753,0.661971,0.566147,0.395124,0.74386,0.752865,0.764316,0.917878,0.00481731,0.773912,0.686813,0.477911,0.406423,0.39532,0.993194,0.41184,0.780949,0.393995,0.433845,0.0610737,0.628631,0.428489,0.568733,0.45825,0.432973,0.723801,0.221407,0.861155,0.649055,0.0830204,0.334936,0.946229,0.237153,0.589255,0.131015,0.771934,0.437095,0.644295,0.161016,0.119656,0.140474,0.308404,0.280626,0.106117,0.434136,0.268008,0.625895,0.299158,0.417111,0.405309,0.838545,0.615281,0.992296,0.761896,0.807293,0.506837,0.712564,0.927455,0.887926,0.070568,0.211257,0.807066,0.546612,0.24016,0.334255,0.736931,0.873571,0.224303,0.772149,0.658119,0.0691229,0.644072,0.584242,0.148735,0.543889,0.664952,0.562397,0.911242,0.0252093,0.583984,0.738341,0.411807,0.457482,0.389949,0.485906,0.742204,0.842709,0.254423,0.234398,0.874848,0.0986543,0.135888,0.594554,0.0345747,0.262718,0.934763,0.936367,0.497932,0.886306,0.927347,0.432464,0.376363,0.245656,0.751415,0.510972,0.891056,0.487686,0.318541,0.48706,0.157215,0.765299,0.255271,0.560146,0.597754,0.0759891,0.490223,0.708072,0.271852,0.196608,0.476556,0.45522,0.832285,0.735539,0.0308654,0.0039385,0.222395,0.64942,0.901908,0.321354,0.540294,0.585847,0.757603,0.634404,0.967685,0.249685,0.927597,0.331734,0.564037,0.724526,0.22173,0.769504,0.188604,0.929998,0.404504,0.102634,0.845324,0.182972,0.947977,0.742964,0.733909,0.210559,0.919362,0.760693,0.28637,0.904724,0.561621,0.735254,0.902965,0.536582,0.882568,0.245246,0.579435,0.392122,0.946733,0.803199,0.811339,0.245165,0.400658,0.233845,0.408754,0.521373,0.165068,0.489319,0.269695,0.20774,0.788384,0.205075,0.262984,0.210724,0.747278,0.396381,0.13001,0.626225,0.157569,0.730415,0.750404,0.909291,0.549859,0.674549,0.580059,0.548489,0.703488,0.062305,0.409501,0.602068,0.245642,0.961594,0.354505,0.512297,0.320613,0.982291,0.606408,0.967368,0.373748,0.582058,0.000558019,0.838392,0.556582,0.906761,0.732649,0.660461,0.0418641,0.353062,0.0164817,0.523615,0.96468,0.163553,0.383023,0.531206,0.59432,0.645101,0.73689,0.180294,0.762902,0.468303,0.399393,0.641581,0.000759006,0.571837,0.818382,0.160805,0.961942,0.0023427,0.750557,0.04304,0.620291,0.402625,0.486468,0.0720263,0.2902,0.753071,0.237472,0.179781,0.842445,0.186823,0.399022,0.0149643,0.0573123,0.059334,0.942427,0.991006,0.912563,0.24623,0.719975,0.291889,0.146929,0.941583,0.0967429,0.0801657,0.779722,0.266167,0.183224,0.428225,0.976945,0.133122,0.118743,0.471371,0.582877,0.594171,0.531576,0.551502,0.870056,0.469857,0.594175,0.412607,0.972557,0.327582,0.581735,0.252977,0.887146,0.632811,0.283841,0.728373,0.0182938,0.647797,0.985744,0.424975,0.805043,0.080878,0.631905,0.527682,0.0129312,0.645414,0.527811,0.494912,0.54101,0.208515,0.41914,0.421006,0.457874,0.463685,0.548565,0.444287,0.728508,0.629272,0.428972,0.98155,0.851063,0.616587,0.926113,0.645308,0.0318879,0.629959,0.269937,0.863465,0.909577,0.787991,0.431773,0.250426,0.565668,0.257238,0.702412,0.249534,0.608403,0.139878,0.724397,0.90504,0.166737,0.0905434,0.73989,0.423654,0.0138591,0.537302,0.849882,0.614521,0.672165,0.111878,0.250205,0.203833,0.79177,0.694063,0.492923,0.320019,0.0798526,0.804278,0.360952,0.992944,0.226078,0.846722,0.420064,0.707102,0.822766,0.187045,0.13388,0.516805,0.189105,0.16288,0.884076,0.236479,0.551799,0.727072,0.00651371,0.334088,0.968481,0.0150807,0.244133,0.476246,0.947684,0.776889,0.781859,0.0190201,0.443598,0.728271,0.510154,0.751132,0.441739,0.789333,0.548069,0.656607,0.964104,0.951548,0.0215881,0.00428468,0.761385,0.955323,0.497698,0.282484,0.893161,0.54064,0.357966,0.720605,0.0415018,0.7734,0.972415,0.395332,0.960802,0.0113366,0.450966,0.271686,0.976443,0.438677,0.379383,0.522794,0.878999,0.129584,0.769393,0.264053,0.657405,0.354868,0.115469,0.968325,0.605762,0.835711,0.144594,0.0382317,0.267417,0.490074,0.678583,0.7052,0.231973,0.415874,0.0796424,0.8878,0.161015,0.988282,0.156391,0.876677,0.447358,0.91865,0.859453,0.825685,0.0235311,0.237801,0.164881,0.251922,0.105497,0.921878,0.672455,0.42792,0.516892,0.955517,0.533322,0.629715,0.758017,0.0842837,0.889493,0.848645,0.725466,0.916509,0.148929,0.188077,0.322828,0.201725,0.726066,0.294051,0.467295,0.974224,0.355631,0.930425,0.25195,0.215626,0.687209,0.794215,0.295202,0.988562,0.365761,0.704469,0.261119,0.931498,0.473557,0.625449,0.173339,0.960519,0.816774,0.446957,0.0960431,0.821183,0.20028,0.60828,0.204668,0.464555,0.940229,0.0418269,0.579159,0.578203,0.250734,0.496573,0.664585,0.976674,0.00470591,0.0562748,0.937399,0.550482,0.0934964,0.510706,0.704653,0.303768,0.973983,0.540455,0.565165,0.832676,0.855347,0.438702,0.101833,0.231338,0.564585,0.934604,0.411547,0.464484,0.823319,0.327394,0.0710805,0.803526,0.129616,0.309645,0.704105,0.871041,0.482123,0.498278,0.314145,0.315597,0.0566132,0.508278,0.754012,0.0989536,0.625196,0.991726,0.0190222,0.954931,0.257166,0.163181,0.558328,0.195745,0.733275,0.656582,0.964473,0.0472091,0.953328,0.837544,0.934179,0.375439,0.135821,0.338157,0.252559,0.677268,0.0218226,0.234907,0.186516,0.0561358,0.795793,0.923991,0.846542,0.130614,0.0361923,0.701204,0.511382,0.127137,0.389997,0.831022,0.744252,0.302873,0.750517,0.413202,0.782035,0.712234,0.748713,0.898943,0.662799,0.696338,0.846728,0.414682,0.665565,0.429616,0.450498,0.199846,0.0745904,0.811128,0.686923,0.476935,0.409197,0.109709,0.0851344,0.18691,0.357361,0.229944,0.130899,0.587721,0.242241,0.839746,0.783115,0.717631,0.187313,0.0838773,0.214184,0.857408,0.30834,0.553498,0.194318,0.849473,0.351604,0.462703,0.713684,0.539117,0.52836,0.873917,0.600284,0.209877,0.508658,0.701333,0.465208,0.581121,0.451715,0.924239,0.767966,0.414333,0.93096,|0.582914,0.0124899,0.38241,0.671843,0.556457,0.465536,0.840963,0.775919,0.32241,0.294523,0.40245,0.389562,0.66726,0.353036,0.820194,0.964079,0.19911,0.7002,0.247846,0.0546282,0.454674,0.0919102,0.217451,0.637492,0.86826,0.0615858,0.723117,0.31298,0.600884,0.887902,0.310902,0.763644,0.874331,0.506615,0.345884,0.0571623,0.457483,0.908729,0.0894166,0.213987,0.885459,0.933845,0.395179,0.183275,0.754859,0.201091,0.5189,0.182234,0.661862,0.0297535,0.409217,0.405726,0.0787336,0.28974,0.739241,0.598624,0.470046,0.743709,0.853766,0.590538,0.914934,0.210323,0.0158702,0.614134,0.664333,0.0831788,0.425722,0.544795,0.775264,0.655217,0.84569,0.165411,0.690206,0.677636,0.819859,0.289431,0.504647,0.219844,0.763535,0.218919,0.335818,0.416619,0.0524483,0.528857,0.361701,0.317891,0.0951232,0.769509,0.142307,0.255664,0.771093,0.34113,0.336408,0.763337,0.0943863,0.552794,0.0511863,0.630941,0.660681,0.64302,0.251125,0.684268,0.139881,0.293775,0.806738,0.759061,0.647695,0.904873,0.955876,0.303347,0.18975,0.139357,0.358378,0.234409,0.51178,0.694584,0.0135565,0.968493,0.522718,0.504631,0.277864,0.487128,0.55139,0.626181,0.347856,0.750091,0.271711,0.0951297,0.386409,0.264268,0.181916,0.200688,0.332071,0.813269,0.23454,0.234989,0.743857,0.254432,0.133324,0.970373,0.00538313,0.17528,0.972914,0.0547667,0.835204,0.275135,0.692448,0.697249,0.388286,0.504763,0.250434,0.36739,0.758528,0.255838,0.461243,0.855725,0.0210864,0.662141,0.423969,0.35319,0.522671,0.801229,0.787643,0.00810438,0.286881,0.792361,0.458732,0.328875,0.518084,0.662798,0.216531,0.232883,0.0569751,0.0533173,0.467549,0.498881,0.891029,0.976451,0.874802,0.142753,0.216466,0.0417311,0.601531,0.0547297,0.170653,0.0148173,0.623253,0.358169,0.542306,0.0911376,0.242227,0.63089,0.0724062,0.809343,0.719355,0.0367865,0.42141,0.789247,0.974842,0.383649,0.144577,0.719957,0.93666,0.441615,0.473722,0.449245,0.862048,0.534034,0.178309,0.801196,0.561831,0.134854,0.554424,0.175945,0.166879,0.905335,0.695166,0.786487,0.867561,0.603372,0.373101,0.654676,0.503728,0.17049,0.852705,0.765511,0.0121776,0.769927,0.351007,0.880618,0.344222,0.606473,0.357237,0.859982,0.141548,0.37886,0.947929,0.302865,0.61569,0.231505,0.48852,0.43956,0.44698,0.807635,0.490829,0.582109,0.956468,0.566549,0.832084,0.64233,0.727761,0.24729,0.703053,0.200072,0.356189,0.863061,0.138391,0.0822934,0.0969663,0.0380261,0.521416,0.213569,0.922482,0.365582,0.124371,0.232493,0.0166162,0.282981,0.97245,0.942997,0.0954652,0.950244,0.565534,0.16006,0.691776,0.245937,0.461491,0.911175,0.458986,0.538264,0.32101,0.536936,0.841579,0.74399,0.561537,0.180963,0.97531,0.946275,0.811502,0.411793,0.00428355,0.210738,0.92486,0.209014,0.306102,0.539393,0.105475,0.511545,0.914414,0.882555,0.0718715,0.0682337,0.357455,0.45109,0.927389,0.447787,0.709468,0.344586,0.179336,0.91931,0.607458,0.454119,0.294838,0.0737825,0.747542,0.609194,0.960963,0.430783,0.449205,0.904252,0.0260891,0.284584,0.435687,0.966719,0.954437,0.299043,0.66565,0.853932,0.136086,0.542723,0.596481,0.961212,0.566636,0.813028,0.820779,0.0997278,0.915995,0.784711,0.899472,0.748394,0.177763,0.102763,0.655167,0.340788,0.338088,0.0591057,0.464462,0.723286,0.599342,0.226467,0.258207,0.549459,0.409537,0.158418,0.787434,0.920925,0.593535,0.85905,0.739327,0.352063,0.24021,0.0355531,0.580786,0.954176,0.0711452,0.516224,0.703176,0.418082,0.16382,0.30535,0.887985,0.153839,0.0886376,0.0630943,0.73272,0.124933,0.0389475,0.645763,0.278065,0.108712,0.400356,0.758195,0.11994,0.667795,0.309768,0.647181,0.0685443,0.400867,0.379306,0.547485,0.771985,0.58145,0.437616,0.557317,0.328075,0.973598,0.22323,0.475997,0.420758,0.375664,0.774937,0.253362,0.472424,0.74302,0.558791,0.254881,0.326832,0.299663,0.871179,0.676697,0.992063,0.499868,0.801023,0.458973,0.850659,0.896549,0.320355,0.771949,0.169047,0.325084,0.102265,0.655019,0.578421,0.613524,0.0428861,0.0465221,0.972931,0.496619,0.188314,0.220412,0.706965,0.509668,0.0583352,0.681002,0.817973,0.822832,0.18808,0.907266,0.873229,0.827754,0.959804,8.52346e-05,0.927087,0.965035,0.737374,0.987638,0.568911,0.384474,0.683512,0.304451,0.129864,0.35265,0.854499,0.882365,0.596773,0.806368,0.841389,0.713379,0.78382,0.640133,0.580381,0.85618,0.0872797,0.0530869,0.697684,0.13508,0.589707,0.59069,0.250517,0.776376,0.276585,0.781886,0.278562,0.0856889,0.0818456,0.50301,0.639312,0.382036,0.999516,0.436192,0.665618,0.693612,0.777033,0.420657,0.149132,0.600109,0.311383,0.517121,0.265054,0.877949,0.125162,0.737407,0.107728,0.770554,0.976705,0.455444,0.0375693,0.902481,0.978033,0.966743,0.570247,0.526998,0.119725,0.895177,0.944552,0.789307,0.390703,0.552383,0.15036,0.907256,0.4206,0.964176,0.941687,0.463988,0.183912,0.796317,0.13369,0.952414,0.118707,0.266183,0.160941,0.644242,0.24784,0.110752,0.669383,0.974044,0.141982,0.631237,0.581589,0.649326,0.813062,0.2469,0.497258,0.466614,0.382749,0.148832,0.837271,0.131893,0.945751,0.748028,0.919836,0.690263,0.709597,0.00481653,0.215768,0.785205,0.138329,0.374441,0.390766,0.54446,0.829407,0.914764,0.950252,0.519761,0.470991,0.781613,0.661527,0.499048,0.636257,0.908162,0.542814,0.257611,0.438191,0.170021,0.0643451,0.887571,0.618115,0.716691,0.745642,0.904777,0.730384,0.777613,0.0216204,0.945766,0.765683,0.160335,0.759726,0.0540524,0.0604113,0.158339,0.387365,0.818304,0.147266,0.363324,0.863245,0.216917,0.861642,0.976771,0.495103,0.659065,0.885985,0.147224,0.0800573,0.105731,0.984618,0.582705,0.05786,0.749227,0.523549,0.66731,0.610518,0.00342095,0.331418,0.590855,0.962354,0.608103,0.465208,0.979525,0.487271,0.518584,0.639928,0.686447,0.348391,0.99987,0.0312044,0.93851,0.408975,0.975307,0.0653407,0.414795,0.390458,0.551314,0.16163,0.135484,0.812455,0.32343,0.189349,0.434099,0.357439,0.883701,0.427709,0.824751,0.628669,0.953613,0.928679,0.664546,0.852262,0.0214866,0.109261,0.96581,0.0650554,0.186679,0.691362,0.0769681,0.183418,0.491983,0.4597,0.0705894,0.574253,0.655412,0.501971,0.469867,0.695544,0.366135,0.908143,0.712312,0.586181,0.0714183,0.118652,0.635969,0.690397,0.28841,0.43009,0.808195,0.921663,0.711124,0.382065,0.805911,0.694803,0.216896,0.26242,0.307253,0.250368,0.620522,0.45124,0.666544,0.158112,0.441039,0.857492,0.0558215,0.713298,0.410129,0.666209,0.662595,0.4184,0.588399,0.593266,0.152078,0.681593,0.347728,0.438031,0.0229023,0.203771,0.929836,0.85427,0.854623,0.42101,0.205297,0.0589508,0.181425,0.688487,0.189925,0.918834,0.767872,0.671117,0.316014,0.774113,0.092163,0.392619,0.949896,0.153933,0.484166,0.741851,0.125489,0.770547,0.564582,0.77657,0.385847,0.983625,0.729032,0.0456269,0.832112,0.479387,0.420286,0.89207,0.355916,0.678681,0.282622,0.980894,0.125061,0.1159,0.795753,0.429569,0.231072,0.995515,0.948946,0.745827,0.86705,0.639623,0.825402,0.133809,0.475321,0.857718,0.44723,0.29586,0.00795317,0.241008,0.211671,0.93539,0.83592,0.339859,0.66253,0.735849,0.72792,0.766942,0.459212,0.296854,0.826152,0.308007,0.636253,0.459492,0.692385,0.91546,0.524585,0.523677,0.81285,0.93462,0.569072,0.430359,0.635362,0.863466,0.123741,0.871423,0.188199,0.440212,0.547384,0.387089,0.369085,0.878604,0.932217,0.213928,0.0077709,0.876067,0.540018,0.635875,0.433316,0.45641,0.338184,0.485414,0.985492,0.826923,0.351299,0.511903,0.974648,0.723893,0.706381,0.617696,0.386969,0.203924,0.265626,0.804677,0.91962,0.446576,0.275493,0.709052,0.338442,0.652476,0.246182,0.734154,0.667846,0.129754,0.0191522,0.607701,0.99084,0.519088,0.502564,0.0350175,0.365336,0.21956,0.55594,0.935549,0.817811,0.254766,0.868588,0.120844,0.158494,0.15235,0.724541,0.730198,0.657941,0.656703,0.00520974,0.64623,0.079586,0.277387,0.627899,0.727984,0.53775,0.127376,0.748902,0.827111,0.289231,0.534232,0.970462,0.0915061,0.607872,0.503972,0.790734,0.977154,0.0763837,0.612589,0.0892025,0.474965,0.850429,0.490954,0.609117,0.489399,0.904747,0.777401,0.776678,0.506364,0.919312,0.881727,0.840212,0.271728,0.156086,0.632458,0.973336,0.304932,0.573741,0.807686,0.189167,0.504016,0.263482,0.896629,0.136834,0.127644,0.499853,0.0899622,0.608214,0.589487,0.865128,0.493772,0.71435,0.1853,0.295299,0.941585,0.761825,0.0519622,0.240721,0.613805,0.691283,0.262198,0.260481,0.961837,0.795184,0.345636,0.0823781,0.845484,0.0327532,0.884915,0.991512,0.558657,0.957024,0.869254,0.110447,0.825299,0.756321,0.164371,0.942583,0.132037,0.289617,0.31295,0.445166,0.154963,0.9412,0.28919,0.031841,0.902459,0.747157,0.0193641,0.0918465,0.323079,0.111136,0.498269,0.731467,0.260034,0.819992,0.810293,0.769453,0.191731,0.864837,0.878659,0.500353,0.0964162,0.123489,0.0868727,0.160813,0.441478,0.571367,0.7302,0.324943,0.0060879,0.395508,0.554232,0.99639,0.119546,0.82421,0.952883,0.0906901,0.415947,0.0032987,0.302543,0.716034,0.820657,0.033069,0.603968,0.877409,0.641765,0.907792,0.816452,0.704039,0.257232,0.303444,0.972116,0.456586,0.999922,0.676761,0.75584,0.868526,0.424291,0.164369,0.464495,0.424685,0.322349,0.216581,0.25055,0.618231,0.700165,0.990668,0.557655,0.215921,0.891765,0.485281,0.592684,0.302715,0.767092,0.774544,0.360245,0.111083,0.0172188,0.117683,0.75625,0.91173,0.660737,0.990899,0.548961,0.394703,0.606289,0.330371,|0.906362,0.728646,0.39341,0.126249,0.125062,0.0950782,0.123398,0.765555,0.0185545,0.874487,0.615109,0.832465,0.0408665,0.723866,0.968378,0.69829,0.909924,0.127309,0.0152957,0.888117,0.842202,0.465039,0.997972,0.211749,0.468424,0.17989,0.219049,0.262105,0.667904,0.191348,0.97949,0.557049,0.515837,0.934393,0.754609,0.153338,0.972767,0.690787,0.356247,0.365805,0.581258,0.577944,0.322689,0.79134,0.668501,0.628907,0.493919,0.601584,0.754057,0.263163,0.555862,0.982355,0.816127,0.760965,0.802488,0.966507,0.425071,0.245521,0.329304,0.234397,0.120858,0.349459,0.959711,0.23285,0.128224,0.255113,0.245805,0.683196,0.00167215,0.12386,0.087148,0.00548911,0.178633,0.0293655,0.992365,0.916697,0.541473,0.903198,0.447594,0.285195,0.783026,0.85642,0.934007,0.00626624,0.138864,0.593861,0.938827,0.346317,0.645769,0.852136,0.409751,0.40458,0.347294,0.990908,0.06249,0.20067,0.472619,0.611103,0.264156,0.893788,0.437247,0.51841,0.485742,0.350843,0.598093,0.356129,0.881646,0.309795,0.960352,0.127852,0.32613,0.307978,0.7684,0.35204,0.33006,0.701352,0.136564,0.271206,0.684208,0.644236,0.272816,0.858438,0.153554,0.411469,0.326314,0.964075,0.962518,0.807574,0.405799,0.951314,0.6962,0.463108,0.205484,0.898571,0.224354,0.0637863,0.724281,0.155405,0.407126,0.835872,0.877986,0.895081,0.598968,0.655566,0.468897,0.327294,0.00465107,0.51374,0.679014,0.907966,0.215413,0.134426,0.947973,0.232931,0.708579,0.106486,0.0440509,0.706268,0.683358,0.337377,0.546067,0.660381,0.83112,0.488346,0.0301136,0.590807,0.820543,0.773009,0.697326,0.0551091,0.258144,0.381189,0.462804,0.418523,0.739253,0.482336,0.386971,0.349626,0.234056,0.641679,0.988248,0.523452,0.134511,0.693913,0.620203,0.0103987,0.0420452,0.393992,0.815877,0.796594,0.0826684,0.876053,0.600509,0.777897,0.477265,0.520217,0.103805,0.930585,0.982519,0.18824,0.288677,0.127249,0.330167,0.103793,0.697693,0.198658,0.426734,0.759221,0.137757,0.517611,0.267161,0.357294,0.68066,0.98092,0.939461,0.169864,0.678123,0.932921,0.841944,0.195876,0.101152,0.903123,0.866838,0.87164,0.574787,0.788792,0.187204,0.848015,0.429901,0.645671,0.57165,0.0812774,0.757803,0.101445,0.136915,0.313434,0.351186,0.378595,0.882872,0.580515,0.99989,0.441545,0.377891,0.807754,0.0411181,0.565855,0.156552,0.914733,0.454588,0.700147,0.286877,0.925287,0.235039,0.784069,0.967711,0.953315,0.754226,0.513559,0.0620664,0.251643,0.827908,0.763008,0.956983,0.0596915,0.987789,0.9933,0.995673,0.201754,0.375718,0.60232,0.240834,0.813782,0.564286,0.692953,0.895046,0.221721,0.483041,0.853548,0.321885,0.122255,0.559447,0.662827,0.343321,0.254872,0.204694,0.200512,0.92704,0.0131848,0.0735615,0.267018,0.548429,0.614485,0.0168729,0.711026,0.347814,0.28428,0.712468,0.984613,0.635522,0.0222048,0.827419,0.264093,0.701693,0.0718893,0.336716,0.36735,0.400371,0.510082,0.04173,0.514777,0.0363587,0.14995,0.661905,0.0742311,0.278015,0.773385,0.885461,0.534703,0.0381499,0.0171154,0.25192,0.568716,0.882022,0.590635,0.728354,0.6835,0.27314,0.784332,0.127461,0.0607148,0.821662,0.61587,0.49778,0.0277658,0.339844,0.458388,0.0324822,0.354733,0.588145,0.814288,0.98365,0.033485,0.750795,0.163827,0.878991,0.110976,0.142737,0.780634,0.0421022,0.0673775,0.700312,0.736145,0.135246,0.712036,0.433137,0.205111,0.159676,0.592914,0.717537,0.637129,0.533343,0.54251,0.207161,0.151983,0.0434061,0.778503,0.557404,0.374782,0.502014,0.419506,0.152033,0.827655,0.0872638,0.736869,0.169439,0.472919,0.869867,0.493211,0.29158,0.336868,0.263833,0.697937,0.571885,0.157004,0.490633,0.719781,0.962926,0.0431573,0.794756,0.704037,0.797561,0.641543,0.994591,0.71044,0.963274,0.320746,0.215171,0.333129,0.311608,0.776945,0.593676,0.396224,0.794871,0.718566,0.648009,0.0348732,0.441563,0.427673,0.775485,0.74416,0.842599,0.790893,0.598156,0.422073,0.173514,0.858745,0.403789,0.497485,0.644107,0.201874,0.0231036,0.86133,0.866011,0.41146,0.257377,0.686978,0.615193,0.572463,0.650835,0.553307,0.813178,0.541179,0.0165747,0.14483,0.427604,0.082093,0.17103,0.925056,0.0664095,0.0252376,0.668964,0.309611,0.838521,0.990242,0.0325502,0.724449,0.0495413,0.32953,0.751672,0.299965,0.0966765,0.915826,0.748548,0.0115698,0.67832,0.832787,0.944741,0.453206,0.972583,0.587908,0.322912,0.995438,0.821798,0.561958,0.559329,0.0415172,0.0572174,0.0107666,0.679464,0.623989,0.994673,0.0733055,0.335244,0.822917,0.473208,0.256821,0.297942,0.180387,0.739092,0.479083,0.332727,0.45757,0.615687,0.347309,0.251398,0.864835,0.969909,0.0616827,0.301366,0.784506,0.127264,0.0851371,0.451377,0.842276,0.894326,0.215122,0.911971,0.197814,0.845335,0.640912,0.146699,0.0297509,0.438977,0.0423738,0.168838,0.764838,0.464139,0.901255,0.886374,0.0370011,0.876161,0.592653,0.976356,0.498568,0.181319,0.814971,0.954749,0.707238,0.760698,0.162527,0.502659,0.57227,0.869511,0.746258,0.0739059,0.452257,0.176514,0.97963,0.822025,0.756768,0.810796,0.205147,0.392407,0.252402,0.488956,0.100598,0.262943,0.759534,0.0732155,0.121976,0.98204,0.405852,0.960769,0.392617,0.424195,0.525515,0.852362,0.318439,0.0570849,0.808287,0.577328,0.831876,0.128708,0.685383,0.520146,0.763854,0.123942,0.842295,0.415373,0.137312,0.229577,0.992159,0.628874,0.826938,0.736327,0.787363,0.678225,0.425167,0.577893,0.646908,0.948794,0.400847,0.425265,0.275993,0.800406,0.911598,0.222649,0.596498,0.693039,0.137387,0.203777,0.207373,0.603363,0.101002,0.584052,0.670598,0.235231,0.451635,0.0888118,0.818173,0.645868,0.507357,0.342736,0.516594,0.426107,0.410924,0.475045,0.927627,0.144991,0.160125,0.876152,0.728441,0.86504,0.0223753,0.897756,0.0616437,0.397274,0.868069,0.311419,0.055226,0.416213,0.323417,0.67604,0.180836,0.724005,0.130825,0.415049,0.310338,0.270744,0.0790664,0.731997,0.026544,0.113335,0.20326,0.372966,0.884957,0.856429,0.334086,0.683985,0.280041,0.677241,0.105427,0.564063,0.391238,0.334913,0.656744,0.341186,0.497731,0.903347,0.627116,0.0369108,0.241273,0.120094,0.774435,0.491432,0.973557,0.317726,0.741324,0.437018,0.236205,0.961632,0.0344635,0.0994953,0.8572,0.695367,0.0415359,0.0241499,0.745373,0.0177421,0.510001,0.979805,0.176908,0.569486,0.899688,0.449861,0.110507,0.702231,0.979169,0.313746,0.00211447,0.728978,0.758995,0.556865,0.541574,0.0479471,0.307738,0.378826,0.16029,0.0420066,0.883267,0.428553,0.991414,0.665733,0.0608672,0.0301024,0.968032,0.936063,0.564348,0.271498,0.406923,0.501378,0.406114,0.499299,0.407773,0.601531,0.959562,0.381465,0.80394,0.372327,0.802382,0.265073,0.588634,0.814955,0.153615,0.687617,0.0682222,0.468845,0.596384,0.894867,0.459037,0.803166,0.737661,0.399407,0.325098,0.495278,0.582101,0.290308,0.0831971,0.815005,0.791088,0.996918,0.872132,0.675348,0.467691,0.309925,0.962248,0.193897,0.880818,0.0952541,0.806128,0.402387,0.775309,0.900994,0.548877,0.375075,0.16579,0.540228,0.965156,0.688582,0.51518,0.22391,0.00516754,0.120936,0.324953,0.710926,0.121378,0.0963135,0.370731,0.384838,0.838537,0.936818,0.527636,0.364115,0.75825,0.403041,0.0954047,0.677077,0.139986,0.882544,0.456335,0.347279,0.0244705,0.944855,0.599631,0.508518,0.158235,0.142563,0.59415,0.0949949,0.424109,0.793735,0.896882,0.0410188,0.0349706,0.10544,0.445662,0.604577,0.466558,0.279863,0.11412,0.537789,0.64867,0.768448,0.874911,0.823327,0.458962,0.259098,0.853517,0.577145,0.237539,0.0856465,0.209384,0.27325,0.195063,0.776528,0.420956,0.54228,0.0031758,0.182038,0.336456,0.901888,0.994353,0.0205107,0.896771,0.0795339,0.393767,0.255953,0.724411,0.790011,0.584774,0.255867,0.979838,0.228584,0.594133,0.157909,0.129132,0.153328,0.657962,0.177902,0.57164,0.190531,0.806992,0.552287,0.533457,0.927107,0.372927,0.120727,0.758139,0.479002,0.853416,0.117176,0.874526,0.544086,0.186376,0.399565,0.594785,0.999858,0.805317,0.902259,0.558257,0.456237,0.882195,0.375089,0.217915,0.507866,0.577453,0.615824,0.951809,0.172587,0.896184,0.255146,0.0777276,0.637855,0.0433232,0.984454,0.356409,0.407044,0.423996,0.241276,0.596604,0.0583172,0.440372,0.433237,0.920565,0.0809278,0.943607,0.952857,0.222972,0.811694,0.0663904,0.720841,0.667891,0.910825,0.200499,0.110986,0.146162,0.0278758,0.0758269,0.335591,0.764482,0.441028,0.465502,0.212223,0.0390227,0.362392,0.636372,0.149331,0.109727,0.678035,0.131544,0.0013029,0.379371,0.0638561,0.268265,0.541655,0.336954,0.37533,0.450867,0.560125,0.111182,0.464403,0.469044,0.447109,0.763504,0.534655,0.990386,0.472482,0.770072,0.973572,0.295995,0.739141,0.163514,0.546997,0.869444,0.399723,0.243432,0.346385,0.24229,0.4645,0.376779,0.718864,0.0347803,0.94292,0.6634,0.859198,0.859861,0.510488,0.760322,0.701079,0.688588,0.965537,0.572193,0.787964,0.782174,0.0698017,0.0624838,0.032084,0.121167,0.597365,0.497988,0.881149,0.228833,0.615418,0.641924,0.466532,0.0361137,0.578711,0.967427,0.444557,0.149055,0.0841032,0.976135,0.408973,0.26282,0.257957,0.624231,0.596729,0.134416,0.903377,0.893398,0.517487,0.9626,0.882,0.251902,0.479101,0.56293,0.615387,0.103477,0.00228602,0.107464,0.818051,0.183114,0.0670401,0.5741,0.560205,0.488263,0.975039,0.0828957,0.834744,0.235062,0.648627,0.550583,0.00202072,0.772615,0.75879,0.237572,0.232519,0.126385,0.692354,0.391838,0.205587,0.262474,0.495501,0.622603,0.28397,0.15065,0.759595,0.374467,0.642334,0.723221,|0.214435,0.589048,0.752195,0.26423,0.351342,0.497305,0.450335,0.140411,0.749817,0.49218,0.346987,0.955961,0.291062,0.440767,0.905178,0.975117,0.810162,0.634729,0.751609,0.75504,0.255539,0.243217,0.859888,0.584298,0.890434,0.084997,0.651551,0.726031,0.569683,0.363484,0.880742,0.442645,0.422984,0.524812,0.862188,0.928018,0.0229098,0.345892,0.0758917,0.125717,0.537313,0.619481,0.688738,0.644762,0.760188,0.317899,0.283079,0.816998,0.738012,0.654286,0.929035,0.71304,0.8666,0.567735,0.897913,0.796024,0.592023,0.155383,0.951072,0.205718,0.00985384,0.133877,0.937766,0.744146,0.0560311,0.393457,0.0130229,0.0651646,0.590716,0.848181,0.594434,0.550575,0.60719,0.564598,0.731633,0.602036,0.817396,0.194884,0.162572,0.259202,0.836707,0.794517,0.0185488,0.247228,0.351379,0.863414,0.909996,0.0112878,0.977817,0.871595,0.439256,0.791705,0.705554,0.0828288,0.941097,0.617081,0.0437753,0.978762,0.96608,0.172429,0.557681,0.232443,0.338753,0.562795,0.354103,0.216184,0.0477771,0.0463665,0.742566,0.619386,0.198592,0.64588,0.261213,0.977969,0.413888,0.201708,0.931143,0.0528241,0.724581,0.573085,0.266754,0.177199,0.897254,0.450974,0.147914,0.866105,0.635597,0.553644,0.589138,0.626771,0.171218,0.901931,0.528742,0.354806,0.452398,0.28541,0.515328,0.321144,0.0226568,0.435584,0.108836,0.297228,0.0226566,0.749727,0.382737,0.121159,0.863248,0.58822,0.998448,0.465997,0.243602,0.294757,0.89031,0.231297,0.157254,0.213651,0.368738,0.595394,0.140717,0.463362,0.242298,0.16687,0.779011,0.7046,0.454448,0.98534,0.810342,0.48532,0.801202,0.293617,0.364006,0.866718,0.569123,0.529814,0.874772,0.0723047,0.019004,0.217873,0.367278,0.405738,0.848031,0.0892635,0.138518,0.587822,0.179168,0.251397,0.331755,0.131151,0.759125,0.429179,0.742136,0.330413,0.102306,0.56082,0.105025,0.875977,0.873552,0.454288,0.245659,0.0442725,0.525527,0.123318,0.768824,0.71525,0.535996,0.749904,0.981576,0.365185,0.242106,0.660763,0.176681,0.27996,0.62751,0.0244015,0.424874,0.0241113,0.327253,0.24401,0.250139,0.368537,0.278654,0.35897,0.18673,0.151481,0.644423,0.460968,0.86891,0.82575,0.745949,0.440309,0.0046528,0.0262035,0.0415881,0.0994989,0.204481,0.742562,0.398229,0.770046,0.426753,0.414491,0.705479,0.825756,0.846003,0.909989,0.280499,0.780815,0.552152,0.981167,0.772054,0.257084,0.518223,0.87963,0.630902,0.649711,0.170036,0.8514,0.0984977,0.267266,0.0923674,0.421275,0.436467,0.329012,0.178266,0.202338,0.013631,0.493388,0.336352,0.808037,0.320838,0.331948,0.746592,0.786883,0.59267,0.9769,0.041295,0.655532,0.778327,0.78003,0.208221,0.449259,0.290251,0.647311,0.724198,0.537328,0.793376,0.831034,0.87125,0.447607,0.360903,0.963131,0.932022,0.617396,0.281067,0.229526,0.867817,0.922774,0.174177,0.181332,0.274452,0.416335,0.989905,0.435212,0.254791,0.283561,0.807243,0.825141,0.425921,0.478341,0.0908866,0.156984,0.536636,0.476282,0.639765,0.11026,0.296124,0.701759,0.683586,0.504026,0.611631,0.552665,0.378951,0.119497,0.113031,0.295408,0.968036,0.516802,0.0602717,0.316661,0.579532,0.35488,0.109565,0.687889,0.611686,0.57893,0.0950621,0.370744,0.638997,0.404407,0.150404,0.997904,0.391336,0.595286,0.880634,0.336376,0.98191,0.314496,0.447834,0.447497,0.575471,0.609502,0.962415,0.731971,0.554193,0.469492,0.986926,0.491456,0.0712588,0.876757,0.0793089,0.00787038,0.853103,0.636211,0.742728,0.257072,0.712366,0.30868,0.349003,0.857174,0.734512,0.177025,0.679203,0.41516,0.743255,0.968115,0.589177,0.429594,0.825729,0.314767,0.983799,0.678449,0.513465,0.0271705,0.893854,0.186853,0.52552,0.393932,0.107951,0.155226,0.874571,0.765647,0.312648,0.971443,0.154849,0.668964,0.662819,0.751667,0.653063,0.964914,0.136119,0.817021,0.104337,0.00740921,0.886226,0.643629,0.282838,0.393488,0.0207464,0.00515473,0.636272,0.0164384,0.616051,0.0557348,0.491129,0.204812,0.432438,0.150473,0.678463,0.64396,0.570436,0.58404,0.662351,0.141572,0.780037,0.409319,0.783813,0.865944,0.314578,0.387761,0.618605,0.445784,0.0263942,0.555106,0.400425,0.380859,0.983392,0.651082,0.870161,0.644372,0.415604,0.722864,0.486523,0.653982,0.110616,0.549956,0.421802,0.163362,0.712266,0.908917,0.619337,0.246407,0.0687274,0.251956,0.738779,0.185143,0.524007,0.71155,0.989505,0.499816,0.563243,0.358101,0.0446189,0.34066,0.581057,0.148053,0.656328,0.572814,0.470873,0.680303,0.85099,0.915038,0.857529,0.662694,0.848604,0.799057,0.172503,0.91442,0.15384,0.795655,0.219521,0.169054,0.955604,0.825764,0.76504,0.40659,0.505302,0.76155,0.681834,0.457618,0.447052,0.924262,0.0363908,0.503965,0.929423,0.555718,0.0235415,0.038707,0.393003,0.639694,0.815073,0.00646204,0.345801,0.456594,0.924997,0.24657,0.630735,0.444665,0.323556,0.99057,0.912092,0.412695,0.542119,0.0704214,0.676094,0.320079,0.758236,0.78841,0.77404,0.163784,0.159629,0.90116,0.361342,0.890859,0.324762,0.433475,0.914881,0.187425,0.335097,0.379886,0.104702,0.842867,0.238173,0.547428,0.228395,0.659756,0.234931,0.247571,0.16296,0.898475,0.95675,0.457904,0.924879,0.488048,0.81325,0.164936,0.540769,0.386595,0.719436,0.310302,0.778372,0.488447,0.268534,0.543297,0.465768,0.675583,0.74863,0.7624,0.750551,0.686509,0.183806,0.360099,0.122775,0.341509,0.438643,0.118835,0.898348,0.298167,0.102555,0.876256,0.716665,0.875646,0.823632,0.213538,0.78866,0.064154,0.745253,0.232913,0.314982,0.445657,0.167008,0.105605,0.647706,0.311225,0.437085,0.604663,0.108091,0.871251,0.992229,0.308019,0.351186,0.727612,0.422673,0.0281249,0.794418,0.755783,0.0353377,0.631674,0.594969,0.00442511,0.967795,0.863655,0.338131,0.465989,0.34699,0.298029,0.326192,0.0181246,0.15914,0.91662,0.904984,0.354342,0.94364,0.375779,0.963659,0.324905,0.873542,0.850929,0.79107,0.746632,0.706573,0.214405,0.829826,0.435632,0.581491,0.0286004,0.605874,0.941077,0.090887,0.781468,0.00196379,0.729866,0.729651,0.312361,0.0817335,0.791915,0.277685,0.555359,0.210704,0.251234,0.172383,0.0227123,0.216077,0.612008,0.626126,0.703395,0.454938,0.913754,0.108512,0.751806,0.498781,0.72457,0.637064,0.786696,0.889027,0.400059,0.170566,0.8582,0.188959,0.681318,0.86955,0.582603,0.4096,0.354173,0.430992,0.922799,0.928525,0.821614,0.572151,0.910951,0.409995,0.873029,0.458402,0.884139,0.450648,0.612596,0.25714,0.11086,0.542019,0.27185,0.281318,0.0588908,0.619429,0.152254,0.387292,0.706625,0.215055,0.355597,0.652929,0.923668,0.670106,0.949952,0.461382,0.299219,0.652171,0.309052,0.159404,0.640327,0.683862,0.328726,0.558495,0.639438,0.558288,0.476808,0.013518,0.14076,0.374899,0.432178,0.568881,0.985607,0.947607,0.00412059,0.317034,0.221703,0.818679,0.114129,0.162417,0.528839,0.828569,0.905744,0.102609,0.524574,0.662723,0.257623,0.829,0.878841,0.644362,0.727715,0.131816,0.843206,0.510016,0.567577,0.312533,0.0680297,0.494871,0.411059,0.659209,0.456398,0.460749,0.50052,0.674943,0.62835,0.424247,0.933735,0.758835,0.499737,0.369857,0.188172,0.164649,0.409901,0.397477,0.200828,0.0335531,0.557171,0.535634,0.872147,0.509636,0.829641,0.643968,0.479298,0.078309,0.139308,0.301577,0.951598,0.063228,0.940452,0.0275606,0.193771,0.654915,0.245482,0.744737,0.754914,0.487926,0.387033,0.579317,0.356104,0.552402,0.250374,0.599052,0.382335,0.594413,0.847829,0.0423803,0.938257,0.419949,0.807566,0.466418,0.0269967,0.542703,0.434267,0.0652442,0.817754,0.861636,0.693277,0.26998,0.990213,0.759632,0.0295973,0.611475,0.0395176,0.924074,0.871148,0.115742,0.860141,0.326625,0.386512,0.363262,0.0177655,0.319552,0.277077,0.230909,0.997258,0.0579316,0.879988,0.91085,0.173866,0.555784,0.521014,0.465512,0.0228319,0.133804,0.577307,0.782616,0.203953,0.273622,0.145086,0.550017,0.395306,0.293049,0.939193,0.826866,0.646264,0.782398,0.704371,0.314943,0.545864,0.568097,0.98949,0.254387,0.186823,0.992672,0.152042,0.00604916,0.201325,0.579352,0.141013,0.708201,0.671851,0.806433,0.340101,0.107637,0.0207427,0.762801,0.498415,0.610284,0.559614,0.630986,0.66419,0.543015,0.064298,0.165217,0.0852398,0.768049,0.709549,0.395766,0.214518,0.433215,0.229912,0.518691,0.0638486,0.748851,0.9839,0.350302,0.633784,0.183237,0.798935,0.812971,0.677884,0.917707,0.303303,0.614995,0.0497983,0.831421,0.342597,0.0741198,0.874682,0.389333,0.833817,0.401357,0.615587,0.626975,0.771382,0.0358973,0.4809,0.654108,0.817382,0.545217,0.509207,0.71159,0.713088,0.284963,0.572052,0.655682,0.524738,0.177454,0.295746,0.625542,0.293577,0.670282,0.409038,0.240246,0.0312763,0.650537,0.977842,0.458207,0.940542,0.221894,0.429393,0.538357,0.981226,0.427453,0.702565,0.787135,0.35849,0.424194,0.301403,0.0490062,0.651421,0.296397,0.210053,0.179645,0.0135703,0.668997,0.689259,0.75584,0.312833,0.709951,0.0882925,0.528648,0.903973,0.166591,0.00642705,0.183393,0.354036,0.971749,0.818465,0.131917,0.287407,0.412791,0.939444,0.165066,0.284516,0.185083,0.68912,0.194411,0.0524555,0.913221,0.971038,0.791407,0.0400174,0.29085,0.116671,0.71192,0.00811237,0.2779,0.794062,0.304757,0.560671,0.14918,0.529,0.469679,0.896876,0.925479,0.252167,0.831931,0.827235,0.956624,0.157276,0.0141974,0.794029,0.565108,0.0717511,0.831473,0.72674,0.11311,0.643244,0.441674,0.998526,0.707901,0.636706,0.729879,0.773887,0.476567,0.584772,0.578883,0.821973,0.124985,0.630148,0.0159067,0.47948,0.711758,0.675139,|0.423747,0.0825294,0.114041,0.685802,0.504845,0.744125,0.243887,0.894463,0.853697,0.207837,0.913715,0.624457,0.0631604,0.302907,0.134525,0.84577,0.684267,0.29824,0.981881,0.485929,0.791635,0.768096,0.0694377,0.0534921,0.462997,0.12828,0.492664,0.602675,0.468039,0.261462,0.668356,0.891351,0.166245,0.956278,0.312515,0.467228,0.293974,0.625751,0.941394,0.502006,0.304985,0.375162,0.497608,0.911185,0.0283977,0.341767,0.878315,0.990928,0.253619,0.431021,0.307278,0.163325,0.278549,0.892149,0.132126,0.996214,0.0850919,0.59153,0.0495568,0.521368,0.451877,0.393191,0.778283,0.765029,0.157068,0.0450189,0.413114,0.260406,0.225325,0.51271,0.887105,0.101033,0.334632,0.741316,0.669194,0.321692,0.989055,0.0842892,0.29772,0.38715,0.918018,0.159518,0.569679,0.0474254,0.459084,0.900346,0.113928,0.299195,0.288412,0.851018,0.433084,0.323054,0.231161,0.272962,0.584581,0.0216264,0.53507,0.754223,0.835748,0.326169,0.805898,0.827517,0.798989,0.110871,0.0750321,0.419593,0.118956,0.521744,0.530873,0.536044,0.881354,0.999825,0.00965208,0.497767,0.854616,0.545299,0.877911,0.616934,0.0430596,0.159654,0.986708,0.0301045,0.371402,0.439806,0.638298,0.527346,0.911678,0.855027,0.0906533,0.365906,0.0923865,0.0401931,0.23443,0.0678472,0.825364,0.829076,0.348921,0.00849104,0.718991,0.365544,0.966692,0.832939,0.819537,0.635294,0.511949,0.929396,0.510846,0.158469,0.854267,0.0704387,0.247216,0.0416435,0.648768,0.760349,0.768303,0.129673,0.618246,0.958001,0.980574,0.0514532,0.586442,0.752254,0.905482,0.399928,0.382284,0.495595,0.730891,0.109416,0.0936909,0.198736,0.363727,0.533307,0.311787,0.693601,0.0902224,0.2559,0.711132,0.411107,0.982599,0.061631,0.258047,0.549481,0.526083,0.958576,0.116765,0.408045,0.943833,0.856374,0.527979,0.970291,0.827249,0.336539,0.0837719,0.31673,0.801837,0.16384,0.444343,0.408888,0.0806072,0.510405,0.0804603,0.374862,0.117757,0.140223,0.780032,0.232403,0.0019508,0.997727,0.550181,0.940209,0.468644,0.23097,0.0600676,0.228378,0.513944,0.596896,0.766824,0.811383,0.68045,0.0823799,0.862187,0.464804,0.80585,0.364133,0.185609,0.973356,0.621837,0.0194425,0.202141,0.0852488,0.39964,0.180806,0.432245,0.981502,0.138685,0.845453,0.503708,0.905789,0.0649286,0.746796,0.944779,0.324307,0.638705,0.814003,0.177922,0.294562,0.00261003,0.589216,0.69032,0.228286,0.864628,0.126657,0.321483,0.14994,0.854172,0.0769765,0.265893,0.230512,0.645414,0.454254,0.273471,0.490062,0.0598905,0.164202,0.13873,0.130736,0.0906359,0.38411,0.0774963,0.221948,0.276713,0.0634199,0.498389,0.566013,0.724398,0.224308,0.0138555,0.654213,0.446901,0.186377,0.513872,0.0268193,0.721112,0.0138166,0.719479,0.774326,0.449574,0.788788,0.0979787,0.679816,0.294902,0.0693018,0.629249,0.305139,0.546797,0.726409,0.753548,0.47033,0.580851,0.859948,0.834467,0.344186,0.74749,0.0453711,0.735012,0.876959,0.360251,0.0202235,0.287359,0.0377407,0.155736,0.227342,0.218182,0.878846,0.521622,0.111483,0.826227,0.430057,0.551896,0.00509059,0.187319,0.0553774,0.101609,0.245959,0.0779046,0.777079,0.517056,0.564818,0.250721,0.916844,0.507731,0.688297,0.459941,0.589621,0.198107,0.712549,0.530809,0.562624,0.847666,0.637752,0.390185,0.215986,0.112656,0.519668,0.134197,0.627447,0.757769,0.967541,0.0619104,0.783194,0.355935,0.576036,0.232077,0.847987,0.671914,0.490303,0.458653,0.902142,0.121382,0.218513,0.630505,0.453885,0.710762,0.330689,0.225048,0.0569062,0.0937126,0.102857,0.221207,0.761443,0.0514434,0.929029,0.336949,0.799151,0.591695,0.596433,0.230499,0.234635,0.25664,0.32765,0.93502,0.502167,0.11968,0.916546,0.666449,0.0777589,0.720711,0.573548,0.150023,0.453884,0.38851,0.959651,0.706258,0.596465,0.0198475,0.965532,0.394144,0.693985,0.778466,0.571816,0.988277,0.101748,0.442498,0.990857,0.906879,0.0869373,0.490723,0.426709,0.676238,0.271498,0.617225,0.930786,0.677112,0.147331,0.544724,0.953998,0.481183,0.214313,0.797257,0.763461,0.374113,0.482665,0.621546,0.97929,0.586774,0.283813,0.288649,0.0500904,0.952113,0.232732,0.79509,0.239225,0.819354,0.887115,0.845652,0.875923,0.860188,0.868356,0.144721,0.223916,0.494598,0.181303,0.107173,0.606313,0.642977,0.186061,0.934696,0.534849,0.43899,0.0243083,0.546281,0.650492,0.789567,0.463252,0.70414,0.0219522,0.729355,0.193359,0.248622,0.145827,0.408376,0.604495,0.080686,0.195854,0.384181,0.838468,0.97645,0.10507,0.201336,0.999732,0.319195,0.307666,0.742557,0.783109,0.427237,0.867501,0.760245,0.698479,0.668498,0.975797,0.314415,0.584315,0.489004,0.633514,0.311334,0.028485,0.661034,0.965208,0.98366,0.504079,0.473473,0.847714,0.748114,0.148939,0.671501,0.124181,0.823211,0.825715,0.420538,0.541395,0.482279,0.597017,0.0154557,0.915469,0.239368,0.457419,0.00351816,0.0486096,0.147718,0.55632,0.930387,0.574193,0.0436193,0.225254,0.419143,0.919685,0.747713,0.417561,0.725038,0.906941,0.928325,0.616076,0.288794,0.722232,0.893857,0.869471,0.46949,0.574031,0.393423,0.381054,0.691891,0.883296,0.558928,0.389451,0.940432,0.973622,0.371134,0.647319,0.305968,0.0278193,0.79746,0.767265,0.109323,0.0189929,0.649205,0.19875,0.165303,0.0290464,0.191919,0.291921,0.592895,0.270197,0.608429,0.525429,0.0684027,0.968303,0.302865,0.95198,0.36599,0.318856,0.804346,0.297593,0.242014,0.283161,0.880526,0.458112,0.737552,0.470126,0.875596,0.572136,0.575382,0.234176,0.53555,0.373943,0.648793,0.283821,0.5294,0.467669,0.792892,0.302914,0.0445923,0.191971,0.211651,0.100584,0.418964,0.600163,0.981052,0.290811,0.5297,0.48211,0.257299,0.852469,0.8948,0.301234,0.972309,0.294955,0.946995,0.91516,0.860801,0.59052,0.571952,0.595573,0.750149,0.736848,0.514297,0.223586,0.634044,0.87716,0.482117,0.325791,0.893558,0.100845,0.394076,0.434698,0.300048,0.24503,0.903565,0.356045,0.421195,0.967582,0.841169,0.270705,0.496725,0.0986728,0.114614,0.211501,0.122288,0.402666,0.13223,0.257226,0.281437,0.928131,0.677171,0.486513,0.39137,0.0312589,0.34282,0.619883,0.628273,0.40864,0.299144,0.699689,0.564948,0.689663,0.6565,0.0187819,0.467288,0.504097,0.929925,0.55406,0.925025,0.419431,0.464375,0.556355,0.30476,0.556589,0.542108,0.0549659,0.304481,0.671692,0.0674047,0.97568,0.734721,0.159659,0.757941,0.19887,0.475088,0.777677,0.159322,0.685451,0.163902,0.920724,0.0647925,0.57622,0.953187,0.686032,0.286085,0.0377129,0.35005,0.697889,0.200305,0.808446,0.113685,0.476931,0.87048,0.237846,0.0596777,0.331468,0.781118,0.269301,0.8592,0.731588,0.870949,0.582502,0.633753,0.932605,0.224587,0.757386,0.56531,0.364541,0.553204,0.0834803,0.587467,0.446482,0.438721,0.37046,0.472335,0.813354,0.960325,0.849137,0.294299,0.783953,0.173728,0.90828,0.951713,0.450811,0.68093,0.562444,0.0187038,0.104108,0.269111,0.308527,0.53254,0.00210196,0.793266,0.698853,0.301267,0.472872,0.0532937,0.279508,0.354487,0.882129,0.353012,0.677838,0.248784,0.350653,0.384165,0.706419,0.0664908,0.595771,0.656561,0.79913,0.107656,0.893557,0.294068,0.64082,0.365228,0.823967,0.313643,0.985868,0.50286,0.664115,0.33431,0.258072,0.280418,0.0252426,0.700419,0.711696,0.951785,0.621902,0.34519,0.530654,0.479854,0.215379,0.844513,0.442985,0.973546,0.465516,0.904983,0.643558,0.325327,0.121521,0.262287,0.47041,0.909006,0.217336,0.794319,0.305505,0.149668,0.15591,0.123217,0.507358,0.0651695,0.113147,0.267631,0.807423,0.615633,0.624828,0.375178,0.986675,0.295498,0.850038,0.0399889,0.373129,0.925945,0.0140991,0.880686,0.864792,0.274394,0.804314,0.298963,0.363909,0.246846,0.341518,0.077577,0.1074,0.100826,0.570423,0.733278,0.58318,0.443104,0.744695,0.895787,0.0223315,0.00953907,0.577408,0.233825,0.545632,0.853302,0.447422,0.905838,0.813619,0.785709,0.712712,0.197992,0.634437,0.293589,0.130627,0.546069,0.910624,0.760417,0.688333,0.283962,0.709095,0.51195,0.0817927,0.864536,0.809564,0.924164,0.257678,0.340517,0.772459,0.946393,0.0241224,0.246861,0.0443587,0.116482,0.00982505,0.488619,0.517986,0.939397,0.0892962,0.402561,0.0603516,0.451739,0.168707,0.8418,0.642152,0.610275,0.0220625,0.599481,0.554608,0.710345,0.850931,0.430713,0.954114,0.790606,0.47439,0.0514336,0.901704,0.354575,0.682711,0.85462,0.659025,0.92971,0.235729,0.983471,0.705523,0.918998,0.902183,0.545557,0.700113,0.0216817,0.341001,0.656841,0.220799,0.0760296,0.916587,0.409733,0.720741,0.819616,0.64924,0.158427,0.669718,0.272926,0.251084,0.989569,0.101754,0.971869,0.693828,0.533365,0.0948558,0.564204,0.69605,0.0281183,0.0536532,0.943327,0.753915,0.378614,0.100814,0.396101,0.301141,0.478543,0.163937,0.315715,0.956956,0.312049,0.561292,0.309715,0.0705176,0.616625,0.160538,0.553372,0.830956,0.496526,0.946831,0.422323,0.214271,0.845531,0.717985,0.329004,0.817232,0.994131,0.657328,0.123733,0.574495,0.703575,0.185134,0.550471,0.606002,0.637594,0.242377,0.776363,0.446662,0.2489,0.689523,0.747345,0.389659,0.947819,0.029586,0.179826,0.371154,0.410848,0.155394,0.768054,0.0670783,0.517115,0.718752,0.566859,0.925197,0.98095,0.808737,0.202656,0.585372,0.626759,0.240624,0.851714,0.796471,0.684004,0.742237,0.779182,0.207743,0.502428,0.785257,0.964732,0.811547,0.120158,0.544088,0.326807,0.968006,0.0634192,0.720856,0.737548,0.572361,0.318572,0.551253,0.0824363,0.627733,0.0418934,0.80295,0.471269,0.111482,0.367051,0.792267,0.275946,0.415183,0.076307,0.229736,0.43619,0.47586,|0.375751,0.754822,0.704713,0.454742,0.314993,0.581061,0.450966,0.102907,0.219122,0.980913,0.626973,0.115073,0.287918,0.699851,0.561743,0.840491,0.270742,0.679369,0.106131,0.66184,0.298742,0.611477,0.589614,0.357425,0.824769,0.811764,0.0250701,0.590785,0.288589,0.708505,0.156633,0.1613,0.749337,0.94445,0.663503,0.859857,0.685774,0.276449,0.610819,0.764287,0.976268,0.139335,0.0143034,0.358082,0.886082,0.707618,0.528902,0.296588,0.861225,0.292085,0.456331,0.110523,0.150064,0.106437,0.236355,0.776949,0.724362,0.15419,0.702225,0.766884,0.95226,0.0180524,0.289864,0.165378,0.10326,0.696948,0.23739,0.578517,0.648418,0.150152,0.696889,0.438436,0.180656,0.0953042,0.702296,0.245333,0.558747,0.469463,0.7597,0.827622,0.500708,0.551186,0.770061,0.318643,0.305957,0.345125,0.578084,0.38118,0.263488,0.823629,0.672393,0.454291,0.208811,0.416846,0.353861,0.742917,0.503266,0.667244,0.240623,0.476657,0.456435,0.535783,0.409962,0.0848933,0.834197,0.286755,0.206825,0.75128,0.198292,0.0888013,0.900986,0.468728,0.113607,0.560498,0.508236,0.856207,0.734072,0.042178,0.0751487,0.125556,0.681822,0.116282,0.0356563,0.903528,0.981297,0.713519,0.479665,0.050034,0.516455,0.483702,0.877436,0.594788,0.0301472,0.0455595,0.927711,0.469466,0.898377,0.828247,0.668728,0.607416,0.1728,0.978515,0.541018,0.691143,0.736816,0.134411,0.383229,0.175697,0.973051,0.457081,0.94348,0.0272176,0.951062,0.418586,0.57286,0.256072,0.249056,0.331693,0.537502,0.148963,0.12128,0.912157,0.516576,0.780859,0.302974,0.10828,0.251888,0.672528,0.162983,0.329006,0.179452,0.200635,0.944584,0.451537,0.0638015,0.995054,0.311184,0.579053,0.068593,0.945298,0.588857,0.710573,0.899079,0.48915,0.332937,0.54635,0.580442,0.521131,0.952397,0.834745,0.811048,0.211609,0.428429,0.220887,0.861735,0.283369,0.577992,0.995591,0.446463,0.103798,0.400634,0.862317,0.60816,0.476287,0.889596,0.432138,0.890862,0.399412,0.42505,0.209996,0.632242,0.521664,0.904348,0.412485,0.748107,0.689815,0.520108,0.485884,0.477802,0.00690949,0.0597588,0.900358,0.920461,0.568037,0.781702,0.604434,0.297606,0.780191,0.527437,0.607761,0.471924,0.0291898,0.659294,0.864206,0.98281,0.742144,0.764205,0.45232,0.28165,0.86103,0.685587,0.685321,0.457535,0.850458,0.572704,0.458902,0.577338,0.492579,0.207986,0.702178,0.698855,0.850293,0.565676,0.28481,0.973314,0.0943452,0.265285,0.544166,0.730525,0.907566,0.250553,0.54157,0.477507,0.643298,0.0547858,0.782506,0.614723,0.0658327,0.769061,0.891966,0.6525,0.695553,0.402042,0.528231,0.871512,0.39955,0.716071,0.96613,0.0978833,0.886612,0.744628,0.454895,0.420504,0.07166,0.59243,0.174375,0.204926,0.133437,0.0928657,0.266522,0.175534,0.177788,0.599844,0.320012,0.460454,0.259327,0.908857,0.166602,0.489302,0.572553,0.204475,0.560855,0.298478,0.708747,0.684356,0.337109,0.966609,0.386936,0.360694,0.704671,0.32028,0.0486573,0.97567,0.498958,0.130566,0.188144,0.143666,0.138734,0.345825,0.462974,0.50219,0.464574,0.0220445,0.510726,0.743885,0.512727,0.97128,0.332653,0.309624,0.0564356,0.588829,0.646076,0.684968,0.984892,0.928533,0.12198,0.451905,0.753217,0.982823,0.92591,0.717848,0.539635,0.150341,0.632831,0.419911,0.0531488,0.0348082,0.285445,0.693671,0.804081,0.747607,0.890206,0.412941,0.862862,0.441378,0.748993,0.271535,0.126245,0.487373,0.627176,0.973707,0.0119461,0.910876,0.278069,0.676029,0.459577,0.930683,0.416018,0.90675,0.806983,0.31899,0.180429,0.617643,0.253514,0.575211,0.581016,0.409744,0.374469,0.0625249,0.753435,0.367706,0.446825,0.815509,0.643227,0.452098,0.205555,0.51801,0.98609,0.106815,0.654243,0.522268,0.767777,0.693194,0.150978,0.890079,0.27594,0.580678,0.184901,0.51906,0.666357,0.222973,0.299076,0.21672,0.39446,0.307194,0.907917,0.808579,0.555519,0.416265,0.0290792,0.998082,0.648438,0.145889,0.870507,0.178949,0.960047,0.82057,0.272742,0.306087,0.415614,0.107626,0.207417,0.320504,0.333788,0.364764,0.295267,0.92665,0.0637299,0.435023,0.440762,0.382333,0.254839,0.577927,0.788927,0.582203,0.275795,0.260449,0.886456,0.0670166,0.184565,0.265527,0.732808,0.314303,0.632319,0.048016,0.414548,0.0110133,0.954995,0.186909,0.641728,0.751038,0.148962,0.0225148,0.460375,0.62478,0.0942446,0.456876,0.28485,0.0448871,0.491701,0.756016,0.266157,0.800756,0.910381,0.103972,0.575971,0.348077,0.147141,0.579014,0.742083,0.839442,0.105162,0.498716,0.163614,0.551553,0.89936,0.46449,0.154486,0.742461,0.174065,0.000476182,0.287355,0.828496,0.959107,0.208191,0.824235,0.114781,0.0666808,0.760009,0.852575,0.382479,0.471987,0.106443,0.504156,0.960512,0.564993,0.419638,0.803565,0.277714,0.146019,0.393712,0.929745,0.455047,0.00604028,0.393221,0.847814,0.505896,0.661637,0.723419,0.539639,0.241278,0.862648,0.968708,0.527952,0.90274,0.761118,0.0602609,0.601892,0.976544,0.883489,0.759122,0.00582242,0.525059,0.498078,0.99181,0.952254,0.363645,0.216027,0.439463,0.688564,0.532692,0.725554,0.235049,0.275633,0.745997,0.870301,0.658434,0.0234015,0.969748,0.31917,0.867381,0.748417,0.896928,0.280598,0.0839881,0.597488,0.287735,0.644009,0.123228,0.708568,0.039665,0.323335,0.915896,0.766444,0.229517,0.300316,0.719646,0.521425,0.795111,0.322806,0.265337,0.490527,0.798341,0.463156,0.254984,0.728881,0.498345,0.257545,0.875121,0.212072,0.203598,0.973507,0.340558,0.605823,0.146589,0.328749,0.917087,0.136314,0.851824,0.18407,0.0155398,0.828865,0.641825,0.34533,0.832605,0.71361,0.185803,0.910484,0.087334,0.263155,0.785816,0.83993,0.386102,0.509578,0.126044,0.212321,0.35421,0.905564,0.144667,0.371005,0.164538,0.568556,0.640359,0.858506,0.921326,0.526371,0.222932,0.819766,0.486741,0.687276,0.568396,0.664828,0.339577,0.814546,0.796259,0.106264,0.300426,0.10817,0.68629,0.331663,0.111817,0.376675,0.731456,0.58053,0.952859,0.635294,0.7574,0.7292,0.950024,0.894868,0.196194,0.280791,0.291804,0.580291,0.337462,0.30452,0.24637,0.560443,0.24815,0.645556,0.67213,0.73914,0.450054,0.888889,0.761798,0.482509,0.234348,0.932229,0.77692,0.789971,0.591314,0.743132,0.034331,0.0503135,0.600637,0.853789,0.267401,0.740801,0.886489,0.00339961,0.663897,0.28987,0.611061,0.573619,0.104145,0.327416,0.210302,0.578887,0.845883,0.938554,0.876694,0.112994,0.104779,0.811068,0.582221,0.793043,0.88606,0.181002,0.665833,0.986298,0.0395707,0.795236,0.237324,0.632053,0.171273,0.797747,0.905171,0.0200943,0.702755,0.526549,0.799808,0.350705,0.732776,0.991612,0.420945,0.453336,0.16211,0.0201409,0.785093,0.891896,0.728116,0.428687,0.984573,0.0468789,0.213927,0.294112,0.933483,0.258915,0.822598,0.956514,0.662668,0.0698293,0.727587,0.910936,0.0927128,0.614578,0.158266,0.820695,0.0019995,0.420142,0.0189339,0.287349,0.869352,0.202255,0.705701,0.044315,0.76242,0.899222,0.506518,0.916257,0.954139,0.882835,0.384164,0.419883,0.675804,0.572432,0.483071,0.357029,0.507077,0.369926,0.616548,0.594754,0.147089,0.499737,0.405589,0.609719,0.930693,0.353613,0.416081,0.363459,0.359044,0.958954,0.0331584,0.0502291,0.453016,0.584112,0.644109,0.250839,0.684562,0.377896,0.861048,0.79234,0.760096,0.694817,0.554697,0.488171,0.260975,0.315812,0.896802,0.693092,0.738215,0.429554,0.162695,0.310443,0.356823,0.194348,0.300635,0.736239,0.339363,0.225691,0.592151,0.211531,0.480474,0.392643,0.129929,0.715377,0.803282,0.444661,0.15766,0.302023,0.612242,0.971948,0.0820966,0.859329,0.861876,0.970413,0.76087,0.425947,0.543416,0.460605,0.819885,0.848935,0.129893,0.742965,0.666332,0.662274,0.666001,0.0274229,0.208553,0.520033,0.791676,0.181124,0.31227,0.681536,0.627616,0.135524,0.303121,0.0898734,0.092692,0.305795,0.463084,0.0391358,0.11621,0.709961,0.720448,0.00784731,0.643743,0.723075,0.904493,0.25521,0.768209,0.915692,0.173277,0.170841,0.898544,0.346652,0.599395,0.521418,0.884954,0.606515,0.789534,0.434221,0.642643,0.860063,0.263745,0.487386,0.300208,0.709937,0.268888,0.40421,0.745238,0.501325,0.283751,0.755363,0.102443,0.715037,0.800332,0.449709,0.103366,0.330592,0.920479,0.635585,0.419017,0.534204,0.251106,0.309848,0.863595,0.524749,0.34294,0.315544,0.333113,0.775778,0.703161,0.709014,0.758227,0.0962245,0.725715,0.128627,0.441684,0.97548,0.803404,0.410321,0.914766,0.0726552,0.0701661,0.97672,0.657715,0.66338,0.220415,0.591709,0.252041,0.409057,0.707556,0.664081,0.657704,0.690453,0.765612,0.584834,0.776191,0.0991566,0.609345,0.233038,0.513992,0.353226,0.0616128,0.318747,0.617857,0.462807,0.590534,0.294198,0.474036,0.865588,0.640726,0.0165709,0.691072,0.579245,0.651034,0.976671,0.790955,0.519011,0.155719,0.288634,0.104275,0.643169,0.11995,0.42056,0.779326,0.982134,0.421916,0.416246,0.0720975,0.743222,0.746983,0.358687,0.244992,0.361516,0.735903,0.268331,0.297528,0.931384,0.260794,0.669564,0.638679,0.698686,0.588774,0.783352,0.12148,0.203116,0.6015,0.382649,0.513118,0.977775,0.169869,0.652051,0.782682,0.186832,0.295754,0.953238,0.13274,0.491014,0.457914,0.454898,0.950452,0.915472,0.878508,0.966547,0.964838,0.3693,0.888219,0.378387,0.469581,0.39629,0.553324,0.972145,0.968474,0.44343,0.320271,0.0916973,0.0840319,0.930202,0.705581,0.930755,0.903926,0.0832276,0.725911,0.685082,0.727995,0.610697,0.476153,0.74286,0.845307,0.867103,0.975338,0.106011,0.116879,0.261687,0.973828,0.970022,0.703392,0.679274,|0.659935,0.721741,0.222401,0.38762,0.02544,0.696938,0.461099,0.00713468,0.392651,0.449281,0.144672,0.942329,0.695894,0.834647,0.559519,0.469152,0.495921,0.900303,0.779851,0.897894,0.626865,0.840089,0.952362,0.738393,0.80321,0.548676,0.532141,0.11795,0.0401955,0.21492,0.409367,0.844672,0.202943,0.773386,0.121537,0.267448,0.985276,0.934415,0.383843,0.984116,0.634468,0.469305,0.383216,0.767168,0.432672,0.108633,0.0518739,0.340075,0.585145,0.474482,0.348832,0.991132,0.303317,0.431954,0.39201,0.254696,0.220603,0.17606,0.815655,0.140838,0.53743,0.207399,0.606698,0.766297,0.0978616,0.795478,0.263495,0.17345,0.325172,0.790124,0.87947,0.500676,0.787471,0.525949,0.290701,0.279225,0.695422,0.764205,0.454246,0.913762,0.273287,0.320475,0.897668,0.484383,0.0650473,0.72819,0.0420886,0.526368,0.579238,0.310774,0.741022,0.595368,0.494864,0.251476,0.672747,0.792326,0.970656,0.753999,0.734437,0.0500395,0.313287,0.982502,0.551834,0.707565,0.126892,0.291866,0.202957,0.324043,0.146959,0.0419761,0.861627,0.383632,0.295389,0.341784,0.629999,0.912985,0.369868,0.316839,0.247634,0.324492,0.423852,0.260531,0.926139,0.000236094,0.4465,0.716847,0.792144,0.750064,0.635159,0.829542,0.245914,0.692147,0.922039,0.545755,0.601761,0.712827,0.200344,0.88434,0.268885,0.945899,0.371983,0.617239,0.438849,0.249823,0.486287,0.780319,0.423295,0.764456,0.905302,0.0950202,0.216707,0.0195492,0.337023,0.402417,0.785031,0.126187,0.856408,0.740892,0.409701,0.167889,0.580334,0.400628,0.157908,0.536977,0.740422,0.606877,0.990569,0.857585,0.423684,0.333072,0.107159,0.133843,0.269914,0.13227,0.528587,0.0922089,0.308994,0.99382,0.707013,0.672837,0.998452,0.61634,0.712733,0.969631,0.859656,0.616368,0.237467,0.901221,0.887466,0.205056,0.93174,0.342868,0.835586,0.625492,0.140843,0.731003,0.556208,0.833297,0.992043,0.163523,0.772644,0.470797,0.967867,0.0376022,0.570199,0.0415346,0.157857,0.884119,0.218262,0.695437,0.183934,0.38419,0.681804,0.0627632,0.749195,0.182115,0.290033,0.0777786,0.589888,0.130409,0.952763,0.994852,0.551405,0.960455,0.851265,0.228565,0.972834,0.383658,0.0499442,0.243184,0.972048,0.792575,0.0199498,0.910087,0.841669,0.9056,0.576253,0.594773,0.163151,0.118717,0.146775,0.0396802,0.82994,0.861539,0.184281,0.855658,0.674014,0.846903,0.0147541,0.0716991,0.827222,0.451584,0.129569,0.195948,0.898282,0.883379,0.138569,0.563099,0.480031,0.1866,0.69981,0.907913,0.8594,0.298996,0.292715,0.779136,0.419724,0.714862,0.605039,0.558677,0.894141,0.756548,0.790136,0.184457,0.559215,0.274963,0.571763,0.418683,0.777381,0.78104,0.558673,0.0459638,0.0096994,0.773603,0.100076,0.903556,0.00106519,0.290534,0.684304,0.539659,0.320771,0.293808,0.934709,0.434593,0.0925987,0.868207,0.854814,0.248707,0.66364,0.664096,0.393565,0.660105,0.420857,0.310747,0.104651,0.344396,0.375678,0.49916,0.798493,0.805673,0.607406,0.431061,0.83866,0.910431,0.115685,0.898732,0.84543,0.234447,0.980711,0.477357,0.471597,0.339749,0.560983,0.960638,0.1035,0.24632,0.564442,0.281053,0.383269,0.990599,0.0322878,0.279802,0.828115,0.157767,0.213158,0.958979,0.564828,0.26868,0.71921,0.400942,0.633315,0.175354,0.298274,0.282111,0.50144,0.551643,0.291922,0.925299,0.0585164,0.00102359,0.849685,0.92724,0.808614,0.0473725,0.274223,0.989664,0.63405,0.286944,0.594337,0.704679,0.515464,0.38727,0.749043,0.88253,0.0759369,0.994772,0.725274,0.197548,0.371519,0.607843,0.952756,0.508613,0.331239,0.703838,0.607094,0.597182,0.0752462,0.860364,0.698071,0.354482,0.884423,0.408137,0.514394,0.207983,0.586738,0.072093,0.877161,0.337179,0.888486,0.657599,0.835763,0.871942,0.351409,0.831266,0.551585,0.290417,0.178651,0.200527,0.446904,0.0513371,0.515289,0.0198939,0.482609,0.280691,0.592667,0.287488,0.0160684,0.425212,0.830167,0.665165,0.466271,0.00157148,0.480657,0.125325,0.65177,0.912153,0.515752,0.225409,0.124397,0.409362,0.991067,0.60302,0.0875,0.239982,0.181877,0.545761,0.780473,0.911319,0.759821,0.599366,0.193686,0.828401,0.615929,0.729397,0.42421,0.948545,0.540326,0.146783,0.695641,0.386283,0.551089,0.98604,0.327587,0.674519,0.223497,0.627093,0.391384,0.0645837,0.878597,0.987448,0.693521,0.750004,0.771319,0.542814,0.262204,0.686505,0.018433,0.0924064,0.405754,0.70411,0.147942,0.751503,0.140787,0.73567,0.101231,0.998026,0.304034,0.457947,0.961926,0.540633,0.5971,0.264836,0.00848293,0.440425,0.41891,0.735368,0.88257,0.944595,0.792809,0.168733,0.37848,0.914149,0.889854,0.680499,0.982782,0.778071,0.65152,0.613294,0.787277,0.348613,0.94796,0.370916,0.573436,0.513618,0.467717,0.821485,0.222014,0.740497,0.797674,0.38557,0.335683,0.277944,0.847082,0.00971842,0.527931,0.32543,0.73546,0.521604,0.40763,0.728152,0.97682,0.660578,0.937286,0.639059,0.827109,0.932617,0.708175,0.717377,0.939154,0.444569,0.53724,0.397128,0.707215,0.928517,0.364615,0.0399386,0.0440233,0.850592,0.46729,0.748,0.343975,0.698491,0.454338,0.386396,0.0831483,0.469661,0.98172,0.546109,0.0637614,0.90683,0.662973,0.871455,0.535895,0.405583,0.228362,0.690246,0.486052,0.177246,0.0923893,0.0398262,0.0349116,0.831822,0.0647467,0.077729,0.256776,0.291957,0.330301,0.754708,0.57832,0.658775,0.00152421,0.472275,0.394049,0.116401,0.69795,0.809665,0.0176498,0.784405,0.144913,0.272017,0.127861,0.269404,0.619881,0.439439,0.697778,0.387518,0.726988,0.828349,0.553452,0.408542,0.472445,0.107964,0.257427,0.757912,0.581232,0.519855,0.631253,0.273375,0.0143911,0.570664,0.848595,0.00245064,0.500722,0.537323,0.437711,0.217577,0.665913,0.170326,0.316841,0.883174,0.575653,0.404757,0.228771,0.607209,0.957843,0.313392,0.513805,0.389603,0.319681,0.122034,0.164598,0.609035,0.0915637,0.978254,0.849826,0.933651,0.349174,0.400478,0.277124,0.640467,0.610091,0.794361,0.469618,0.06122,0.211791,0.10429,0.770647,0.126912,0.421254,0.474232,0.103674,0.40767,0.0302485,0.00989062,0.637956,0.180999,0.824146,0.476277,0.881332,0.666837,0.639694,0.763742,0.426363,0.493222,0.932021,0.714661,0.0687845,0.714181,0.192064,0.598495,0.617865,0.793233,0.75437,0.467652,0.934153,0.0456839,0.387125,0.296044,0.798423,0.887463,0.442751,0.985538,0.495092,0.284182,0.28608,0.729066,0.59111,0.645698,0.368337,0.943643,0.41682,0.504406,0.887427,0.0636803,0.639238,0.646827,0.43499,0.871198,0.0858836,0.710753,0.151811,0.974316,0.999142,0.488426,0.812664,0.95884,0.160245,0.632405,0.375741,0.529555,0.186673,0.119027,0.504939,0.985439,0.127139,0.862405,0.552723,0.578642,0.331631,0.973183,0.60055,0.456006,0.363879,0.671304,0.634875,0.41057,0.0137621,0.168772,0.313392,0.0579957,0.197338,0.284036,0.870664,0.80479,0.674214,0.763497,0.583681,0.185113,0.0732245,0.778927,0.522317,0.207552,0.331621,0.898158,0.0557193,0.111081,0.414135,0.688832,0.151541,0.842456,0.846924,0.765923,0.255042,0.832453,0.874437,0.771186,0.0350353,0.980946,0.961549,0.426047,0.345603,0.048191,0.45779,0.679859,0.940834,0.97229,0.910862,0.0625772,0.411995,0.221127,0.292715,0.757326,0.243353,0.715581,0.977695,0.432475,0.110808,0.81187,0.277929,0.463031,0.283493,0.579113,0.246181,0.0424628,0.324125,0.824351,0.818106,0.645868,0.364017,0.944631,0.728643,0.748317,0.825037,0.0467406,0.611756,0.399344,0.389397,0.534588,0.0231191,0.464994,0.757102,0.804842,0.557449,0.683684,0.374069,0.472664,0.728989,0.636168,0.393404,0.578677,0.22303,0.538299,0.361957,0.456394,0.239805,0.232573,0.348605,0.952065,0.912897,0.610766,0.141721,0.347819,0.251663,0.722168,0.174575,0.976812,0.414649,0.443806,0.990495,0.694716,0.655344,0.0354489,0.300564,0.803703,0.683501,0.593995,0.973429,0.770612,0.576453,0.62884,0.680698,0.758191,0.939733,0.868379,0.42705,0.334791,0.411269,0.405463,0.252507,0.785116,0.760357,0.654775,0.820743,0.309768,0.305974,0.42577,0.592012,0.503521,0.444816,0.0359831,0.245788,0.0663796,0.492812,0.476397,0.92625,0.0375644,0.0172018,0.24912,0.869863,0.921537,0.208757,0.989995,0.727026,0.337916,0.471862,0.257278,0.805021,0.775057,0.997181,0.821891,0.252097,0.547853,0.523408,0.659106,0.869713,0.45295,0.0345963,0.560678,0.823731,0.0321657,0.960543,0.30203,0.920489,0.818839,0.747937,0.955566,0.947371,0.880293,0.555088,0.441165,0.675063,0.401234,0.923676,0.246682,0.0202563,0.821267,0.817951,0.00205332,0.803284,0.559232,0.609185,0.0871899,0.824853,0.489042,0.207297,0.253091,0.353193,0.549449,0.0899033,0.609825,0.8007,0.0718015,0.68199,0.492023,0.45463,0.268231,0.0023706,0.615041,0.227533,0.957588,0.373576,0.424138,0.155998,0.813857,0.302704,0.557763,0.306863,0.992032,0.288722,0.735844,0.931866,0.030107,0.186344,0.521319,0.137991,0.675202,0.951484,0.594715,0.769557,0.668959,0.875439,0.794289,0.755569,0.304823,0.428702,0.119966,0.158897,0.15231,0.256291,0.283467,0.785473,0.417657,0.396047,0.285804,0.838176,0.366144,0.483422,0.210478,0.503422,0.825754,0.298115,0.316541,0.867511,0.621877,0.447545,0.836536,0.296465,0.729101,0.447548,0.915666,0.105631,0.39887,0.604889,0.209675,0.707567,0.807646,0.940568,0.854148,0.21239,0.832541,0.980058,0.22709,0.945318,0.644784,0.311496,0.841052,0.295063,0.0634059,0.0810199,0.880405,0.722551,0.978987,0.182086,0.290949,0.444507,0.0613967,0.8565,0.0967109,0.901819,0.514709,0.957013,0.918683,0.815802,0.126074,0.294572,0.457174,0.617295,0.502702,0.239193,0.983366,|0.439837,0.167773,0.343453,0.649862,0.440066,0.935638,0.782285,0.37846,0.625556,0.921705,0.235583,0.329923,0.739109,0.32913,0.43865,0.3876,0.404214,0.441272,0.392896,0.556448,0.31904,0.349478,0.192289,0.63971,0.0264971,0.753739,0.650082,0.782724,0.520317,0.0916023,0.0150599,0.0381255,0.870039,0.406839,0.897682,0.890611,0.243838,0.971659,0.620791,0.45929,0.161283,0.0414819,0.604062,0.471407,0.29521,0.640632,0.037286,0.0326079,0.734899,0.352243,0.763253,0.333517,0.108708,0.65229,0.794718,0.738448,0.767758,0.19101,0.667851,0.246353,0.789345,0.579735,0.685264,0.89925,0.353785,0.421437,0.100129,0.852103,0.228364,0.323925,0.33414,0.341708,0.388524,0.0928514,0.297185,0.00275189,0.406171,0.699045,0.432831,0.0658189,0.696569,0.477962,0.694265,0.671182,0.455979,0.420111,0.171469,0.0269122,0.814195,0.0250319,0.39637,0.3353,0.606023,0.48485,0.421256,0.494058,0.0706767,0.3238,0.385673,0.588714,0.422641,0.669989,0.700499,0.122574,0.61782,0.641472,0.536619,0.583896,0.173297,0.483238,0.136999,0.258643,0.583212,0.910029,0.646714,0.160343,0.116786,0.0376337,0.482491,0.099661,0.907167,0.932447,0.703258,0.577639,0.738352,0.29752,0.300211,0.867508,0.826347,0.369394,0.47553,0.22842,0.242491,0.787686,0.455908,0.354923,0.156977,0.904201,0.27649,0.45708,0.541705,0.410501,0.422007,0.906898,0.214255,0.00817353,0.597352,0.446883,0.487492,0.400719,0.285425,0.439041,0.782487,0.485009,0.937583,0.861162,0.0793477,0.98103,0.698453,0.237645,0.659006,0.776797,0.941926,0.667149,0.20011,0.7287,0.240731,0.654307,0.944298,0.272469,0.157556,0.251005,0.205139,0.685711,0.672987,0.498073,0.0350599,0.678917,0.236601,0.766679,0.0786557,0.21147,0.636634,0.602199,0.915514,0.678231,0.246512,0.0386282,0.56579,0.904003,0.622968,0.799404,0.119119,0.949611,0.0809418,0.156808,0.843762,0.299567,0.614626,0.476553,0.361325,0.522833,0.762657,0.837224,0.395738,0.579321,0.371958,0.705209,0.602052,0.806773,0.117804,0.275011,0.293444,0.678868,0.957563,0.741393,0.616798,0.812356,0.0164837,0.0900739,0.919707,0.615799,0.890291,0.752738,0.250896,0.505621,0.0358127,0.470207,0.710379,0.566524,0.429375,0.812205,0.0610813,0.53781,0.953278,0.997553,0.416491,0.566316,0.388821,0.0734873,0.57312,0.302486,0.948385,0.635971,0.596656,0.0353099,0.764714,0.666932,0.5413,0.20149,0.829697,0.762379,0.507399,0.565771,0.556831,0.480543,0.376926,0.655977,0.797725,0.990844,0.926066,0.20819,0.156804,0.496342,0.861895,0.816281,0.169981,0.181742,0.754139,0.371485,0.629052,0.333703,0.80512,0.781361,0.066731,0.893137,0.711568,0.693455,0.617926,0.688523,0.166714,0.801802,0.127801,0.987402,0.999316,0.583438,0.169615,0.704638,0.945856,0.219243,0.30591,0.951576,0.800472,0.652301,0.546661,0.904836,0.0894673,0.0301443,0.720122,0.84939,0.347526,0.277677,0.7539,0.492745,0.338256,0.602678,0.897453,0.641615,0.400297,0.296568,0.583168,0.237082,0.605736,0.31077,0.271754,0.243726,0.794867,0.885982,0.359853,0.905804,0.690272,0.419282,0.0998504,0.187779,0.860822,0.790367,0.868822,0.866027,0.176733,0.438882,0.877845,0.609692,0.911034,0.642012,0.155059,0.112813,0.17088,0.683221,0.985511,0.285441,0.313961,0.752747,0.364685,0.64607,0.843195,0.255875,0.504009,0.085649,0.650425,0.0283845,0.537659,0.537546,0.496011,0.676145,0.579165,0.931644,0.691922,0.669639,0.93758,0.128213,0.700325,0.796692,0.796445,0.0273628,0.984841,0.479125,0.166952,0.610003,0.797464,0.131881,0.368783,0.266401,0.174755,0.962955,0.260649,0.715531,0.826858,0.00234604,0.186858,0.683365,0.715019,0.191965,0.36802,0.0197142,0.289721,0.859576,0.873118,0.517421,0.741136,0.0103129,0.472936,0.984101,0.941289,0.840698,0.483121,0.544685,0.181913,0.0619141,0.316753,0.813908,0.436489,0.00753784,0.799504,0.279327,0.630036,0.403664,0.179992,0.684781,0.327493,0.245753,0.105369,0.597503,0.563608,0.637863,0.0674487,0.922451,0.862722,0.671766,0.242501,0.032748,0.31981,0.471673,0.024147,0.410631,0.26669,0.0482038,0.718049,0.416664,0.328048,0.840654,0.913577,0.71429,0.666694,0.150201,0.813174,0.525363,0.883254,0.0347906,0.567362,0.691372,0.0670921,0.163743,0.0819592,0.808647,0.915214,0.764361,0.605026,0.000397086,0.1195,0.617204,0.166831,0.507559,0.484771,0.325787,0.244788,0.97778,0.87899,0.791211,0.437719,0.490873,0.819969,0.41962,0.342888,0.407608,0.579176,0.673884,0.530897,0.918769,0.351284,0.43777,0.297835,0.992459,0.231222,0.936407,0.74029,0.374992,0.893076,0.84544,0.703706,0.49125,0.677749,0.45752,0.356875,0.265051,0.382861,0.569827,0.791407,0.982781,0.768867,0.138774,0.32756,0.464752,0.290526,0.132954,0.00194818,0.231335,0.54042,0.509311,0.253142,0.965855,0.250848,0.257721,0.490031,0.0639679,0.837665,0.514838,0.680277,0.888934,0.845504,0.98647,0.192907,0.901384,0.0766432,0.174473,0.810074,0.277376,0.231187,0.970154,0.269769,0.740786,0.65115,0.492758,0.483825,0.961478,0.74187,0.00560659,0.559871,0.680754,0.276625,0.606267,0.250362,0.853679,0.0320218,0.825631,0.667056,0.00465572,0.898992,0.190078,0.172479,0.488421,0.514691,0.105671,0.26512,0.237982,0.344743,0.840001,0.931577,0.898832,0.365897,0.517601,0.473191,0.606721,0.096883,0.390878,0.699838,0.694339,0.65121,0.917577,0.375502,0.426069,0.972359,0.40258,0.982374,0.0626315,0.621569,0.604311,0.26581,0.390938,0.568397,0.473685,0.524914,0.475532,0.294414,0.156574,0.624758,0.515016,0.168669,0.0853465,0.555845,0.314285,0.057646,0.796274,0.636483,0.483028,0.810492,0.352584,0.944891,0.943233,0.588631,0.999126,0.622772,0.93263,0.017892,0.971646,0.584735,0.0531819,0.974862,0.896361,0.946647,0.961686,0.699489,0.262329,0.71869,0.406161,0.203968,0.345114,0.847735,0.349269,0.659145,0.131164,0.0801848,0.057099,0.627386,0.241282,0.473245,0.688587,0.264712,0.983363,0.77076,0.980813,0.971037,0.473608,0.282834,0.290392,0.566569,0.851131,0.373265,0.393562,0.268934,0.202548,0.809968,0.89999,0.995808,0.0411443,0.249277,0.663263,0.364167,0.426021,0.72241,0.201877,0.220838,0.744233,0.928737,0.0491256,0.34063,0.595047,0.996902,0.253197,0.0399798,0.91252,0.937616,0.202067,0.266348,0.157956,0.495351,0.137961,0.239717,0.751396,0.486818,0.7981,0.318674,0.540904,0.0553706,0.111266,0.00322843,0.535364,0.634132,0.541124,0.862704,0.705491,0.238797,0.460334,0.218731,0.647261,0.251018,0.965349,0.283397,0.300144,0.467746,0.334782,0.598092,0.585113,0.810312,0.979632,0.795243,0.180864,0.785734,0.754023,0.220294,0.161038,0.676828,0.161334,0.376226,0.980191,0.442312,0.427226,0.431024,0.393741,0.349996,0.0615857,0.0183328,0.950543,0.0885989,0.102504,0.0377805,0.686745,0.0569491,0.114219,0.130763,0.179259,0.170762,0.401638,0.152327,0.920155,0.457321,0.937168,0.3098,0.920626,0.0903736,0.25024,0.0434526,0.772813,0.705425,0.752463,0.976269,0.567648,0.236615,0.606539,0.416457,0.989131,0.310645,0.631345,0.95957,0.0788333,0.25224,0.978702,0.78913,0.454123,0.725229,0.637191,0.79625,0.108012,0.88356,0.55937,0.605947,0.879983,0.476978,0.191758,0.891046,0.340402,0.187382,0.9142,0.185505,0.200887,0.78917,0.926159,0.0692022,0.695418,0.0565801,0.963211,0.306942,0.597722,0.752014,0.272065,0.258745,0.565544,0.673334,0.686,0.936091,0.240627,0.378205,0.12416,0.852782,0.268634,0.886327,0.4184,0.60306,0.917234,0.715432,0.880241,0.948304,0.767161,0.304875,0.659887,0.199891,0.161842,0.783835,0.549148,0.303425,0.219628,0.0214341,0.0798906,0.922341,0.144357,0.791814,0.131545,0.0545679,0.446861,0.637843,0.937699,0.282302,0.271738,0.283689,0.341879,0.780173,0.791334,0.113418,0.332899,0.173588,0.390786,0.370326,0.490888,0.132971,0.16558,0.583761,0.0300099,0.0872138,0.417953,0.626556,0.319402,0.73916,0.262175,0.308199,0.878407,0.369912,0.537568,0.429943,0.911252,0.639448,0.942497,0.7749,0.649848,0.935453,0.572413,0.924973,0.158813,0.576999,0.689833,0.0232545,0.214226,0.767834,0.917571,0.512275,0.342326,0.867269,0.568869,0.984597,0.519923,0.849045,0.932199,0.0868351,0.646157,0.973353,0.275221,0.602727,0.33104,0.321657,0.107901,0.251114,0.397981,0.991651,0.116165,0.499995,0.000742733,0.278131,0.254135,0.450819,0.628172,0.489903,0.605269,0.971635,0.21911,0.140882,0.685798,0.241051,0.929511,0.324829,0.875794,0.0851777,0.766914,0.924269,0.50618,0.917824,0.175904,0.0548252,0.234706,0.46426,0.641256,0.119671,0.793306,0.43309,0.747335,0.266213,0.467563,0.391589,0.328466,0.507171,0.483968,0.597838,0.688662,0.447901,0.775351,0.898665,0.452695,0.922096,0.192361,0.527749,0.847746,0.935652,0.434772,0.0911518,0.381291,0.197028,0.668471,0.179033,0.274075,0.782187,0.249559,0.31527,0.429429,0.773221,0.885182,0.246014,0.288161,0.749493,0.501319,0.685916,0.959855,0.315433,0.938587,0.811144,0.0355958,0.305924,0.629225,0.634234,0.401381,0.577432,0.0211316,0.0199567,0.949568,0.0760702,0.714935,0.78207,0.819803,0.601628,0.129193,0.219516,0.421469,0.268941,0.0304716,0.261768,0.224442,0.51793,0.412549,0.133342,0.240227,0.87212,0.961341,0.279538,0.518149,0.168019,0.64948,0.809714,0.279984,0.588788,0.158991,0.222873,0.573981,0.422111,0.816013,0.822763,0.62974,0.564644,0.455194,0.999266,0.210792,0.619649,0.49011,0.277708,0.758533,0.394302,0.291214,0.00412869,0.64012,0.122178,0.290149,0.488916,0.636481,0.135788,0.616533,0.826423,0.508707,0.00861913,0.264496,0.30788,0.837124,0.609503,0.327835,0.145653,0.519986,|0.203512,0.105862,0.306531,0.348802,0.484686,0.092172,0.642719,0.444214,0.375151,0.179471,0.960296,0.629036,0.496217,0.931156,0.488316,0.19095,0.097723,0.38051,0.129741,0.846394,0.259237,0.245885,0.0011887,0.808878,0.182042,0.720506,0.697947,0.973162,0.680252,0.41712,0.717205,0.090468,0.0146853,0.311783,0.629316,0.39568,0.140827,0.581247,0.656814,0.191323,0.0854453,0.684699,0.65828,0.0898257,0.288592,0.670557,0.833438,0.413669,0.612339,0.594474,0.305764,0.645719,0.37965,0.775597,0.286115,0.681349,0.497193,0.00224286,0.260512,0.635575,0.332779,0.30397,0.309502,0.835302,0.988526,0.786793,0.921566,0.638311,0.44818,0.306626,0.278105,0.144376,0.696665,0.403849,0.103266,0.0857481,0.963621,0.935912,0.857845,0.302063,0.909461,0.578896,0.656998,0.549817,0.558487,0.334814,0.566023,0.77109,0.747865,0.62375,0.948933,0.506859,0.817915,0.427033,0.969223,0.512054,0.10447,0.790685,0.335581,0.196808,0.0515068,0.796632,0.577015,0.855152,0.930078,0.931444,0.0205319,0.998507,0.30915,0.903449,0.193509,0.409783,0.509315,0.382208,0.199549,0.44479,0.751756,0.293939,0.634801,0.00749594,0.610204,0.505224,0.893449,0.888826,0.144643,0.580823,0.616093,0.389235,0.60403,0.903677,0.50569,0.759565,0.511096,0.876197,0.18333,0.0266533,0.289383,0.804394,0.97731,0.375166,0.417265,0.675253,0.927952,0.859969,0.335824,0.803469,0.854745,0.0242561,0.147285,0.932179,0.987738,0.81441,0.235999,0.767079,0.610292,0.495448,0.545328,0.0245594,0.418418,0.326925,0.600814,0.446233,0.720223,0.437038,0.956329,0.339215,0.295297,0.108977,0.483652,0.630957,0.0696271,0.61415,0.762925,0.52803,0.536734,0.46061,0.325661,0.847618,0.200107,0.191339,0.956307,0.962672,0.676357,0.709971,0.782486,0.0998443,0.882114,0.140352,0.113669,0.440801,0.833931,0.577669,0.567961,0.969194,0.516831,0.901364,0.707628,0.121938,0.617343,0.679653,0.308736,0.351952,0.868441,0.901389,0.683322,0.544148,0.866117,0.837921,0.0840685,0.999249,0.239167,0.816117,0.158912,0.652868,0.315916,0.773884,0.756066,0.892341,0.420459,0.189372,0.58748,0.546048,0.547424,0.919335,0.739711,0.232024,0.533822,0.422575,0.548568,0.707116,0.291103,0.318769,0.917495,0.30951,0.654543,0.444538,0.945492,0.252316,0.361691,0.584957,0.149295,0.0422862,0.272104,0.573736,0.865056,0.934029,0.813176,0.271896,0.293284,0.987294,0.772448,0.664296,0.601894,0.0923235,0.992122,0.804219,0.861294,0.368669,0.99939,0.44722,0.429387,0.533046,0.107325,0.815342,0.305164,0.942833,0.50466,0.753698,0.230024,0.62465,0.427878,0.679941,0.641407,0.984786,0.597061,0.013546,0.378672,0.328611,0.846345,0.597324,0.00817662,0.879407,0.650074,0.644165,0.186894,0.103153,0.376928,0.486036,0.0172859,0.441906,0.782092,0.849706,0.645174,0.233795,0.786085,0.844152,0.613044,0.0694527,0.833589,0.186362,0.51506,0.412986,0.478926,0.980512,0.654569,0.779801,0.235038,0.319116,0.0226504,0.944832,0.703639,0.164621,0.651232,0.416073,0.860027,0.798511,0.772799,0.807737,0.371219,0.834132,0.401738,0.530407,0.644702,0.65639,0.32391,0.246375,0.386745,0.322504,0.964305,0.136614,0.28271,0.948475,0.101589,0.285066,0.655291,0.823516,0.343262,0.390284,0.264368,0.0659816,0.449516,0.228078,0.763483,0.893234,0.412273,0.258669,0.513529,0.380197,0.224545,0.158507,0.233644,0.978747,0.355886,0.908386,0.633475,0.247761,0.181739,0.304636,0.310193,0.182271,0.620497,0.424638,0.297786,0.892877,0.205892,0.595662,0.825688,0.134867,0.50358,0.629611,0.822682,0.0740985,0.393699,0.710993,0.878814,0.623184,0.452701,0.181826,0.913837,0.11552,0.755163,0.174958,0.403071,0.272368,0.862641,0.698609,0.677389,0.928512,0.782739,0.768304,0.592194,0.0373797,0.108572,0.696522,0.660378,0.0066179,0.874679,0.648637,0.467414,0.577458,0.151639,0.645716,0.374975,0.0546635,0.0495998,0.316427,0.158322,0.0544651,0.641939,0.0505949,0.00264943,0.30242,0.514803,0.33475,0.34934,0.0266588,0.680308,0.345957,0.597106,0.0750655,0.559043,0.0227393,0.12456,0.539859,0.960873,0.235115,0.308792,0.312764,0.232012,0.398799,0.039101,0.942631,0.354192,0.0712492,0.0544954,0.516747,0.845377,0.442797,0.187127,0.887476,0.706032,0.469907,0.0176255,0.0284079,0.298835,0.454458,0.410249,0.413834,0.538293,0.154518,0.396238,0.98465,0.675159,0.606064,0.870767,0.756641,0.51569,0.561608,0.658103,0.0606343,0.24169,0.219744,0.974883,0.980458,0.129621,0.817073,0.578841,0.96343,0.748752,0.266439,0.713609,0.281956,0.348013,0.501085,0.524674,0.632733,0.818267,0.763602,0.028966,0.682822,0.414234,0.760822,0.0367996,0.7417,0.0983168,0.204626,0.0442988,0.646197,0.894304,0.702483,0.436338,0.163827,0.505976,0.713275,0.114654,0.121471,0.377618,0.319017,0.557142,0.0411531,0.839009,0.388255,0.70562,0.850782,0.70588,0.527996,0.368443,0.869864,0.718853,0.550451,0.420774,0.0699265,0.420923,0.203148,0.0994613,0.539588,0.510321,0.357871,0.632965,0.311575,0.616115,0.0897318,0.226365,0.224959,0.782952,0.320639,0.397193,0.494134,0.137466,0.510966,0.991862,0.666297,0.855862,0.587628,0.846612,0.79117,0.254349,0.339829,0.942521,0.0687239,0.293995,0.672335,0.878495,0.844746,0.276976,0.983589,0.976805,0.640183,0.0307993,0.0765973,0.899664,0.465861,0.397986,0.363141,0.819313,0.00752461,0.632127,0.327736,0.895982,0.541894,0.799377,0.126773,0.330824,0.413627,0.206043,0.223827,0.200195,0.163094,0.874257,0.38777,0.38651,0.218863,0.516387,0.485537,0.540174,0.70675,0.121475,0.0272407,0.762437,0.100212,0.112325,0.801109,0.391429,0.650961,0.504402,0.557482,0.185138,0.73939,0.325136,0.898531,0.749817,0.733458,0.30499,0.42969,0.986192,0.715555,0.115478,0.649378,0.902409,0.135452,0.0900978,0.329403,0.62872,0.793789,0.379193,0.54185,0.619696,0.345284,0.51077,0.69342,0.973892,0.553189,0.106931,0.660704,0.417769,0.136101,0.986811,0.865787,0.796751,0.673923,0.72204,0.555232,0.204917,0.766735,0.482992,0.682807,0.127602,0.834339,0.849551,0.501448,0.465345,0.691832,0.0603872,0.240786,0.372458,0.011005,0.156062,0.847026,0.664178,0.763951,0.996931,0.361255,0.403484,0.368874,0.813205,0.00366718,0.229772,0.864959,0.56283,0.932263,0.435706,0.579324,0.880472,0.395942,0.88903,0.60809,0.422432,0.37098,0.434137,0.0447455,0.123515,0.397514,0.150882,0.543053,0.166727,0.81721,0.790648,0.503037,0.336506,0.0153168,0.752834,0.177766,0.938446,0.254527,0.231789,0.174448,0.826748,0.166867,0.851524,0.934614,0.914483,0.260045,0.760206,0.763626,0.846555,0.138367,0.438149,0.429587,0.234804,0.582591,0.372466,0.00360203,0.710135,0.504693,0.851283,0.271527,0.805568,0.518413,0.190133,0.437867,0.113483,0.32752,0.691773,0.912692,0.627024,0.256202,0.137444,0.860001,0.60667,0.562634,0.830276,0.82999,0.0400487,0.423057,0.0586436,0.271745,0.523711,0.903733,0.51729,0.500094,0.815888,0.854807,0.102908,0.361336,0.0702699,0.42033,0.924811,0.750607,0.610528,0.219797,0.359308,0.745824,0.710832,0.403859,0.371838,0.692767,0.761542,0.70565,0.723474,0.671562,0.112385,0.582247,0.865347,0.118148,0.500622,0.145859,0.199033,0.0168211,0.310505,0.00623447,0.435761,0.49572,0.657611,0.952055,0.0564691,0.984946,0.737334,0.871433,0.396184,0.00734907,0.224708,0.498053,0.769122,0.314169,0.141949,0.552411,0.505756,0.317757,0.515415,0.776535,0.807894,0.418294,0.504988,0.677899,0.319866,0.375438,0.791682,0.242744,0.869509,0.966438,0.369037,0.759703,0.257426,0.581757,0.467846,0.0156828,0.499627,0.364479,0.757093,0.221636,0.0960829,0.36343,0.300609,0.67166,0.906765,0.0637859,0.24514,0.732391,0.933339,0.502059,0.974358,0.0712366,0.556477,0.111375,0.551806,0.665063,0.0550444,0.379071,0.180334,0.266721,0.217816,0.449175,0.420906,0.162393,0.340146,0.294855,0.0622708,0.424019,0.189011,0.699326,0.762576,0.182507,0.576469,0.370278,0.458167,0.315126,0.56226,0.609458,0.495186,0.487045,0.499086,0.479041,0.255442,0.350924,0.735138,0.927928,0.544948,0.981448,0.678564,0.746706,0.794758,0.540631,0.850104,0.989934,0.518664,0.200955,0.0342562,0.210416,0.282134,0.836388,0.999596,0.377476,0.0238744,0.507401,0.670762,0.82616,0.825684,0.0428731,0.530439,0.20301,0.934676,0.213955,0.362109,0.385646,0.0793549,0.975789,0.178224,0.856597,0.116345,0.450422,0.992738,0.435316,0.201716,0.163431,0.887442,0.882601,0.375689,0.482775,0.329967,0.215186,0.211682,0.730698,0.717874,0.608616,0.613995,0.388327,0.306331,0.606724,0.187632,0.200116,0.0411126,0.670056,0.320877,0.638743,0.210523,0.599285,0.38865,0.436937,0.72621,0.00959897,0.523399,0.819005,0.597239,0.677092,0.942877,0.66868,0.577263,0.0970231,0.208521,0.750419,0.819213,0.340865,0.190044,0.834673,0.359609,0.874406,0.68618,0.997401,0.718488,0.732049,0.0879931,0.513076,0.218453,0.737452,0.8391,0.529162,0.464052,0.879021,0.969236,0.157053,0.438772,0.121483,0.795763,0.0683867,0.73418,0.396113,0.975252,0.304232,0.865677,0.466209,0.682499,0.00190037,0.374467,0.401411,0.607396,0.885216,0.556817,0.032942,0.711639,0.729994,0.805451,0.437183,0.255308,0.521459,0.388435,0.433459,0.626129,0.266378,0.681034,0.78503,0.860131,0.56507,0.247276,0.668547,0.861973,0.811628,0.248382,0.975335,0.309499,0.599284,0.512012,0.189559,0.603083,0.0199046,0.210862,0.317972,0.24096,0.670622,0.683439,0.0135378,0.226564,0.319217,0.38831,0.177252,0.776267,0.821197,0.311782,0.107077,0.517319,0.558882,0.473037,0.0870981,0.229114,0.645204,0.585476,0.19352,0.0230412,0.153518,0.276956,0.0269081,|0.36991,0.275086,0.810271,0.863719,0.553489,0.236923,0.344602,0.875136,0.750658,0.843926,0.627747,0.861624,0.540247,0.186371,0.573212,0.585427,0.703715,0.0627521,0.124857,0.949501,0.569887,0.563127,0.347908,0.668128,0.435988,0.0741039,0.292544,0.925845,0.804721,0.649952,0.151036,0.59002,0.987881,0.746171,0.702412,0.286522,0.381855,0.43056,0.48208,0.358717,0.202972,0.773968,0.72448,0.102983,0.130139,0.0212755,0.078631,0.976906,0.886955,0.212643,0.472464,0.355183,0.288633,0.182227,0.0158337,0.471118,0.89055,0.540243,0.46592,0.904484,0.262313,0.601392,0.952295,0.837513,0.523877,0.883015,0.609357,0.813354,0.960818,0.270275,0.165386,0.846583,0.990869,0.759222,0.856042,0.373969,0.519296,0.0392724,0.423094,0.0536382,0.62121,0.283187,0.763861,0.0308585,0.323923,0.278487,0.0556599,0.351384,0.223415,0.277033,0.381059,0.11899,0.373577,0.598415,0.571442,0.376108,0.643028,0.649143,0.00345087,0.0915764,0.109072,0.0867915,0.67863,0.178804,0.423428,0.309455,0.302206,0.130325,0.0280941,0.160666,0.954102,0.830119,0.274863,0.772948,0.709022,0.335242,0.237936,0.01355,0.497738,0.279282,0.88393,0.59499,0.0413617,0.195589,0.832783,0.0139093,0.437352,0.705969,0.555742,0.189211,0.0937105,0.414256,0.7181,0.446909,0.116025,0.815014,0.77285,0.897652,0.776766,0.162344,0.80969,0.884652,0.179554,0.249156,0.619164,0.380469,0.0712283,0.978165,0.327059,0.636457,0.0257306,0.216505,0.207159,0.569973,0.117977,0.767827,0.719305,0.606884,0.222739,0.769663,0.636691,0.330307,0.962393,0.310635,0.781229,0.800184,0.330279,0.169168,0.257759,0.24332,0.257795,0.175153,0.495784,0.784374,0.858274,0.664995,0.439008,0.0327978,0.0929317,0.867269,0.48023,0.0593998,0.136468,0.257466,0.281485,0.511198,0.744294,0.20827,0.139536,0.2825,0.768354,0.556612,0.384673,0.297548,0.189157,0.490759,0.862611,0.208211,0.458098,0.431687,0.51521,0.146248,0.869087,0.569186,0.790115,0.876432,0.161342,0.835868,0.269334,0.542438,0.456154,0.200373,0.664437,0.870098,0.488793,0.645528,0.779641,0.161644,0.448182,0.774042,0.949987,0.931811,0.0495708,0.134683,0.569319,0.943276,0.598024,0.724782,0.130322,0.49698,0.511954,0.459616,0.468917,0.712805,0.321291,0.31175,0.376534,0.508314,0.267841,0.82386,0.472986,0.728386,0.524963,0.772906,0.431869,0.702071,0.968147,0.85226,0.993878,0.15318,0.657821,0.306346,0.911391,0.333059,0.0683745,0.429847,0.698184,0.283978,0.907515,0.444721,0.222623,0.863303,0.844447,0.758361,0.802426,0.744003,0.834867,0.776043,0.197575,0.679919,0.344113,0.339677,0.525114,0.191727,0.527396,0.636132,0.333774,0.75268,0.222111,0.785,0.306994,0.462894,0.0233048,0.994893,0.234682,0.663417,0.890937,0.624122,0.79929,0.750576,0.342641,0.049884,0.254733,0.515369,0.525363,0.0129812,0.0241667,0.399297,0.894703,0.471831,0.209449,0.61523,0.695379,0.908096,0.818635,0.587644,0.923285,0.953519,0.91004,0.901151,0.0417556,0.881033,0.0979525,0.234935,0.283754,0.212907,0.713631,0.39723,0.219979,0.0035398,0.102291,0.71968,0.756519,0.0702185,0.951586,0.870838,0.895641,0.589239,0.0365543,0.293265,0.706341,0.046151,0.612971,0.222087,0.0222857,0.302381,0.589334,0.223958,0.13404,0.125692,0.0849898,0.522046,0.905169,0.376311,0.933505,0.0639376,0.423273,0.577439,0.893745,0.962017,0.0771099,0.520501,0.479438,0.922175,0.364876,0.400187,0.232507,0.385892,0.375964,0.486055,0.958284,0.57109,0.795766,0.0289606,0.566754,0.96173,0.819308,0.937419,0.880929,0.668295,0.345891,0.520739,0.814514,0.464715,0.773273,0.748718,0.90285,0.497836,0.104988,0.0697721,0.718065,0.824575,0.910571,0.262247,0.534955,0.614214,0.803875,0.846581,0.0657709,0.972667,0.950865,0.0207138,0.735242,0.942271,0.511319,0.335211,0.283619,0.771016,0.173246,0.548621,0.312655,0.131275,0.0250553,0.923612,0.744818,0.814071,0.712496,0.184208,0.878909,0.734583,0.681908,0.0132331,0.933887,0.97211,0.817723,0.8214,0.630715,0.953639,0.0432916,0.837325,0.395064,0.132605,0.772851,0.757086,0.817819,0.634293,0.0188192,0.805947,0.104443,0.2059,0.777651,0.416658,0.191773,0.755073,0.203596,0.0508735,0.936065,0.227314,0.795362,0.784295,0.893607,0.872131,0.0132819,0.529324,0.492274,0.664021,0.889749,0.0360755,0.184305,0.111034,0.949598,0.392766,0.0522094,0.80654,0.214328,0.285905,0.114998,0.486943,0.281219,0.0693091,0.898064,0.665946,0.0993245,0.604965,0.381493,0.473817,0.272398,0.644308,0.610925,0.936258,0.188666,0.0392929,0.0396402,0.181261,0.576941,0.850778,0.458971,0.324398,0.230215,0.938555,0.0425113,0.728338,0.70744,0.308453,0.980779,0.598487,0.636107,0.142389,0.856891,0.161221,0.729625,0.471622,0.504032,0.459133,0.895615,0.213055,0.887077,0.332156,0.233268,0.958964,0.766376,0.462953,0.787202,0.629619,0.310854,0.139841,0.642599,0.590875,0.881931,0.69919,0.455381,0.186719,0.232673,0.138411,0.338447,0.814976,0.445444,0.486099,0.417224,0.217754,0.993937,0.95509,0.667209,0.898168,0.151289,0.828455,0.105404,0.116378,0.624089,0.172277,0.938433,0.0959209,0.217941,0.0520641,0.39876,0.395832,0.750602,0.667899,0.707812,0.445478,0.26182,0.59459,0.516407,0.415753,0.614975,0.326949,0.88896,0.420411,0.967384,0.490422,0.81953,0.0539027,0.465912,0.663381,0.121753,0.446563,0.855395,0.709848,0.416503,0.112285,0.0579712,0.481108,0.964139,0.619823,0.83315,0.927237,0.823264,0.519047,0.717158,0.262808,0.666117,0.179025,0.941592,0.930973,0.928821,0.150214,0.537388,0.310327,0.901236,0.671631,0.685676,0.380465,0.277657,0.755188,0.589702,0.894109,0.739234,0.23973,0.251546,0.581215,0.0601076,0.959593,0.65262,0.560956,0.680978,0.363513,0.435167,0.989363,0.364796,0.230118,0.0639777,0.520418,0.748296,0.411044,0.076391,0.476158,0.768778,0.620743,0.794166,0.163662,0.024671,0.90963,0.69144,0.325117,0.899084,0.790288,0.0330272,0.950416,0.412229,0.924156,0.522047,0.969336,0.957472,0.730701,0.492054,0.998373,0.701901,0.775191,0.337463,0.48046,0.892606,0.557133,0.627901,0.0819359,0.49029,0.857571,0.496231,0.857401,0.622375,0.0503558,0.860143,0.20828,0.100889,0.675731,0.39743,0.0309545,0.357077,0.446517,0.652921,0.577936,0.138747,0.318676,0.94533,0.718188,0.490261,0.294284,0.927597,0.802112,0.022694,0.518956,0.23462,0.703726,0.0348736,0.792379,0.148999,0.637845,0.0399986,0.752352,0.971009,0.969379,0.480752,0.659918,0.902786,0.731551,0.579132,0.86613,0.551284,0.548199,0.21321,0.0778365,0.484463,0.492323,0.431531,0.424486,0.317851,0.574825,0.473792,0.873769,0.0631663,0.00107557,0.715441,0.882757,0.741186,0.521944,0.871462,0.652554,0.970283,0.200587,0.382425,0.314756,0.624531,0.338338,0.201901,0.730628,0.629379,0.258557,0.0413846,0.908198,0.774982,0.27934,0.642694,0.668456,0.971332,0.783649,0.411935,0.916349,0.648769,0.787364,0.881464,0.264018,0.815412,0.640234,0.0621729,0.113809,0.699036,0.329929,0.330402,0.430427,0.0475774,0.022429,0.643582,0.289946,0.836447,0.820495,0.168725,0.114944,0.985774,0.369412,0.84989,0.422397,0.630647,0.160743,0.893789,0.00717628,0.62962,0.928683,0.85394,0.516188,0.214358,0.698835,0.574685,0.437939,0.67013,0.731093,0.290576,0.940617,0.102194,0.21372,0.696871,0.794543,0.137443,0.656804,0.251569,0.34907,0.362185,0.820269,0.254154,0.988641,0.698427,0.822927,0.0918199,0.941341,0.229887,0.34423,0.607464,0.776884,0.645602,0.602643,0.577373,0.336618,0.110845,0.885475,0.62738,0.589092,0.834072,0.649816,0.602997,0.806638,0.357879,0.849625,0.627497,0.090591,0.236365,0.381174,0.764662,0.456199,0.414712,0.0938837,0.262951,0.181669,0.0205325,0.88961,0.596791,0.469898,0.601751,0.972517,0.907697,0.183374,0.0743225,0.592223,0.888606,0.203381,0.361589,0.0163931,0.368453,0.47664,0.770303,0.791722,0.467659,0.772609,0.666601,0.103942,0.32666,0.834597,0.759599,0.616145,0.384854,0.30864,0.913213,0.14217,0.332911,0.507437,0.196872,0.975056,0.969245,0.638932,0.0564377,0.56687,0.873089,0.140795,0.435357,0.833576,0.274321,0.998247,0.75556,0.53417,0.16406,0.504293,0.0907353,0.656602,0.922265,0.501697,0.185825,0.852509,0.042789,0.891959,0.571485,0.955661,0.115588,0.193184,0.534434,0.335582,0.951145,0.402231,0.786675,0.866203,0.662285,0.679851,0.306169,0.105608,0.860473,0.982831,0.991288,0.0404761,0.942874,0.821987,0.569992,0.173871,0.744929,0.830894,0.23373,0.792573,0.230294,0.468771,0.379561,0.286719,0.486986,0.136824,0.861299,0.905991,0.413737,0.136561,0.347839,0.939847,0.486651,0.298254,0.706474,0.00732511,0.231069,0.533793,0.0808443,0.812731,0.850345,0.219081,0.651961,0.267093,0.0517806,0.823757,0.597632,0.247201,0.62783,0.672489,0.875703,0.735687,0.854022,0.552898,0.656565,0.519349,0.769609,0.491438,0.396946,0.342405,0.347063,0.391583,0.887001,0.195666,0.536534,0.754728,0.615894,0.735995,0.25717,0.0017516,0.562574,0.468958,0.624058,0.00137842,0.112027,0.812751,0.710727,0.549631,0.76442,0.578834,0.483263,0.441642,0.300065,0.493136,0.222397,0.336611,0.5425,0.622791,0.926908,0.879879,0.668748,0.636845,0.928357,0.698945,0.279507,0.843113,0.962743,0.228251,0.920117,0.457189,0.825771,0.599041,0.686749,0.957384,0.303434,0.873628,0.871014,0.683605,0.355309,0.382787,0.0545498,0.581412,0.235206,0.712119,0.597069,0.0722656,0.983691,0.965641,0.794453,0.532195,0.468385,0.847922,0.670613,0.998504,0.67987,0.224862,0.764298,0.625727,0.359261,0.844829,0.598386,0.662837,0.00818622,0.589855,0.724163,0.951925,0.723045,0.34348,|0.721648,0.836905,0.218426,0.155782,0.480069,0.106122,0.997359,0.7983,0.204302,0.578289,0.877263,0.92216,0.289343,0.586936,0.475475,0.883141,0.562628,0.879964,0.704929,0.585322,0.12947,0.189914,0.371894,0.471764,0.812485,0.853698,0.147099,0.342423,0.52707,0.720285,0.752321,0.0928037,0.122701,0.200101,0.951341,0.628249,0.715418,0.88427,0.0538148,0.357092,0.249157,0.683549,0.939539,0.333547,0.976187,0.0998293,0.494273,0.573232,0.708566,0.601318,0.515843,0.830427,0.910126,0.927362,0.869374,0.599551,0.24058,0.832829,0.838347,0.9329,0.869764,0.676737,0.460277,0.605151,0.466172,0.173623,0.879222,0.213789,0.833447,0.703897,0.957874,0.260083,0.732538,0.879439,0.505255,0.121098,0.917568,0.978571,0.502634,0.109221,0.641001,0.124613,0.144371,0.191515,0.654512,0.322204,0.414126,0.208753,0.216296,0.332299,0.478801,0.760907,0.693603,0.691837,0.109329,0.566564,0.471726,0.34529,0.303464,0.317645,0.829599,0.534955,0.805722,0.389733,0.273629,0.40338,0.851174,0.520928,0.827959,0.0895906,0.88192,0.776496,0.665435,0.712675,0.417389,0.942614,0.8305,0.506977,0.128555,0.157251,0.297298,0.945247,0.996212,0.935799,0.592452,0.1641,0.761496,0.266213,0.0998094,0.0438207,0.835645,0.175674,0.179594,0.672512,0.785551,0.79651,0.0244474,0.786132,0.940382,0.74905,0.112571,0.477047,0.916188,0.327879,0.602331,0.0393815,0.566529,0.438274,0.859142,0.474963,0.949371,0.196276,0.630989,0.632541,0.12995,0.232532,0.740508,0.965777,0.612904,0.500734,0.118627,0.0310291,0.0290954,0.0654451,0.577536,0.254659,0.0764669,0.756881,0.0464064,0.515741,0.965141,0.606838,0.624586,0.448729,0.981533,0.412851,0.348472,0.796766,0.391989,0.0347196,0.31375,0.844564,0.984004,0.961259,0.639656,0.0493195,0.560185,0.311568,0.652744,0.295208,0.526768,0.138396,0.794672,0.75907,0.858765,0.674506,0.39035,0.418562,0.217516,0.746543,0.122869,0.37304,0.732905,0.590235,0.269201,0.969272,0.267802,0.794533,0.90467,0.203869,0.269172,0.646464,0.511779,0.855381,0.297446,0.0553133,0.887474,0.368448,0.88046,0.250572,0.569501,0.840513,0.313408,0.851702,0.0659307,0.463532,0.753764,0.260078,0.0382187,0.469452,0.748615,0.0718985,0.176444,0.185796,0.798137,0.63873,0.972033,0.79366,0.346434,0.393986,0.818345,0.63932,0.693925,0.131866,0.310613,0.144315,0.18247,0.561023,0.228708,0.884328,0.683462,0.170906,0.054659,0.595859,0.200554,0.489184,0.684703,0.975277,0.15256,0.959503,0.356398,0.753437,0.344063,0.330818,0.419662,0.901741,0.527364,0.799045,0.851714,0.40516,0.457722,0.00154984,0.951557,0.701566,0.892038,0.0150086,0.844251,0.790483,0.287739,0.739166,0.47941,0.349359,0.361293,0.898009,0.38136,0.109059,0.949383,0.334665,0.386025,0.382689,0.10531,0.419403,0.407885,0.143077,0.315218,0.101683,0.335054,0.208918,0.779255,0.570994,0.284822,0.544625,0.126995,0.385248,0.890056,0.849768,0.751711,0.118254,0.734575,0.498195,0.901561,0.709752,0.474128,0.173265,0.344539,0.600377,0.559546,0.340814,0.148637,0.718568,0.158581,0.848095,0.136215,0.308034,0.153396,0.798648,0.881596,0.883498,0.215945,0.869225,0.173238,0.468997,0.178497,0.656864,0.910434,0.613759,0.704285,0.591228,0.521502,0.689592,0.801215,0.200243,0.856351,0.587975,0.829487,0.749046,0.29104,0.376123,0.464392,0.290594,0.818513,0.982814,0.469588,0.4242,0.734917,0.8157,0.957282,0.809971,0.647789,0.166287,0.376024,0.737189,0.962708,0.119569,0.171653,0.664901,0.103122,0.675966,0.0295788,0.690195,0.500135,0.44135,0.275975,0.0942602,0.350988,0.677037,0.193057,0.775717,0.798365,0.500347,0.890666,0.0930344,0.814254,0.495623,0.483679,0.717058,0.964654,0.21688,0.663244,0.835176,0.258145,0.173945,0.333433,0.443193,0.195953,0.449404,0.252375,0.317141,0.509425,0.839365,0.461306,0.215787,0.377471,0.432737,0.405456,0.352151,0.00780541,0.414488,0.704906,0.730705,0.236506,0.429203,0.61419,0.859893,0.292566,0.355802,0.491957,0.295506,0.455994,0.864683,0.198657,0.367399,0.640881,0.0566338,0.651627,0.0253602,0.347204,0.0011012,0.689458,0.620599,0.60098,0.468251,0.887409,0.051254,0.932086,0.949831,0.1373,0.114006,0.297687,0.430102,0.560785,0.325226,0.548379,0.704024,0.869665,0.258614,0.163147,0.0927274,0.397037,0.849547,0.436958,0.165261,0.759827,0.629669,0.597035,0.123229,0.12449,0.498797,0.087926,0.606014,0.597241,0.729526,0.636978,0.370006,0.71572,0.800663,0.149407,0.55077,0.967617,0.753679,0.0717809,0.382067,0.388535,0.246838,0.748178,0.538162,0.857352,0.853345,0.765266,0.197937,0.179759,0.32612,0.219005,0.388487,0.429139,0.402973,0.664838,0.852352,0.239285,0.821852,0.279954,0.615813,0.0487425,0.410755,0.289574,0.681215,0.592834,0.739697,0.435271,0.807789,0.877078,0.0656286,0.468102,0.128447,0.787423,0.707506,0.553961,0.196681,0.884613,0.847856,0.135037,0.615415,0.185102,0.975991,0.689383,0.41886,0.215854,0.964092,0.0930896,0.388759,0.178156,0.828345,0.807667,0.198233,0.470333,0.407771,0.828503,0.817962,0.272133,0.395726,0.239508,0.141528,0.505814,0.891365,0.63934,0.510112,0.242383,0.132242,0.0165312,0.272103,0.491594,0.198894,0.188834,0.999574,0.123896,0.376844,0.421444,0.343254,0.57613,0.481732,0.980519,0.993385,0.914173,0.381511,0.290528,0.347425,0.609676,0.399419,0.877591,0.20027,0.981423,0.956593,0.789754,0.470856,0.381121,0.132548,0.285749,0.00989574,0.623675,0.44049,0.138036,0.435303,0.485803,0.35415,0.978642,0.884908,0.784258,0.56524,0.712501,0.558953,0.547657,0.397282,0.655812,0.204161,0.624018,0.326858,0.654061,0.124147,0.557155,0.588147,0.729254,0.69939,0.65954,0.0266785,0.539786,0.158114,0.911217,0.825382,0.385224,0.638441,0.302558,0.965579,0.574985,0.836926,0.333926,0.794585,0.00534433,0.448639,0.354791,0.281913,0.0800941,0.223716,0.212178,0.635841,0.807171,0.0920593,0.739066,0.2373,0.0103565,0.671696,0.114666,0.0722914,0.0484151,0.180458,0.5415,0.580476,0.238597,0.52162,0.993223,0.834866,0.0472721,0.509952,0.68768,0.161888,0.106835,0.239721,0.353025,0.0175076,0.435172,0.754538,0.927763,0.820947,0.919995,0.278364,0.785987,0.740429,0.239959,0.838056,0.635909,0.2439,0.0459815,0.244938,0.914479,0.813518,0.969449,0.25746,0.54651,0.0988325,0.0244796,0.30715,0.152151,0.748003,0.346895,0.379926,0.24887,0.626824,0.506299,0.343125,0.446319,0.928103,0.227349,0.547478,0.045997,0.818867,0.651613,0.203604,0.180593,0.972719,0.580574,0.412628,0.0525534,0.35552,0.431531,0.38112,0.0359091,0.454352,0.838251,0.852722,0.876747,0.387425,0.492205,0.386506,0.513305,0.560427,0.680195,0.0265757,0.193676,0.58157,0.781246,0.842484,0.30177,0.379048,0.226696,0.336813,0.287246,0.151945,0.167985,0.108549,0.815211,0.724176,0.092235,0.323344,0.370641,0.991888,0.721192,0.819258,0.606669,0.580837,0.925923,0.538171,0.494043,0.595153,0.750866,0.536473,0.789964,0.651739,0.516771,0.802127,0.934452,0.232645,0.434414,0.49563,0.706425,0.0635971,0.588571,0.0960603,0.925193,0.153803,0.961348,0.613492,0.048778,0.45832,0.155535,0.487333,0.518031,0.871422,0.110401,0.740524,0.620922,0.472541,0.291461,0.932226,0.883889,0.908712,0.518623,0.159611,0.0144523,0.547972,0.826976,0.224125,0.215324,0.385358,0.941664,0.245561,0.939282,0.594931,0.746086,0.425076,0.801348,0.98278,0.73253,0.775349,0.806651,0.758517,0.431923,0.332161,0.339029,0.927846,0.18389,0.150142,0.819766,0.246687,0.0689355,0.143498,0.291654,0.065861,0.239327,0.599909,0.192426,0.889816,0.372492,0.0351624,0.781382,0.771606,0.869327,0.103477,0.435337,0.299379,0.744373,0.493757,0.548357,0.499432,0.373287,0.637168,0.979036,0.345263,0.741018,0.433112,0.828131,0.314939,0.750095,0.655173,0.838252,0.271469,0.0597775,0.0895318,0.812089,0.333507,0.0907584,0.229393,0.833467,0.0285587,0.449042,0.275629,0.855797,0.605602,0.348718,0.230913,0.776322,0.457138,0.97,0.861808,0.911014,0.480133,0.0494222,0.118467,0.615299,0.196506,0.531266,0.667308,0.102394,0.00108081,0.25613,0.398854,0.969696,0.372985,0.802559,0.895319,0.0625121,0.947119,0.736093,0.0468017,0.246792,0.314422,0.313462,0.240674,0.467298,0.246828,0.44279,0.344528,0.404508,0.274151,0.446842,0.933064,0.219757,0.888217,0.425875,0.30786,0.0862591,0.184279,0.293661,0.823303,0.961507,0.657014,0.415805,0.993922,0.894974,0.67832,0.0558131,0.635393,0.589177,0.4396,0.421522,0.18426,0.944407,0.150846,0.204478,0.564607,0.884843,0.999175,0.786098,0.7998,0.121157,0.352916,0.186073,0.0871783,0.0488632,0.500744,0.702673,0.827205,0.227042,0.661832,0.637943,0.854722,0.256238,0.970648,0.93531,0.88632,0.197625,0.918213,0.391172,0.385938,0.439362,0.314662,0.976937,0.410194,0.761043,0.829682,0.659607,0.446058,0.00718027,0.759982,0.370916,0.653151,0.234185,0.362063,0.314077,0.677249,0.762332,0.379438,0.981176,0.791111,0.176515,0.876632,0.730447,0.633684,0.992189,0.307132,0.98246,0.17058,0.327263,0.938931,0.887104,0.842769,0.502342,0.996947,0.92381,0.0402621,0.997693,0.00394458,0.649735,0.465989,0.718597,0.361313,0.940554,0.290397,0.0327308,0.862384,0.137751,0.0573938,0.431449,0.123264,0.790287,0.774335,0.588181,0.283184,0.482866,0.920267,0.70639,0.985011,0.15121,0.809392,0.36188,0.214286,0.227967,0.918655,0.432994,0.366675,0.790227,0.829709,0.838429,0.167454,0.264516,0.272578,0.138801,0.841263,0.774856,0.69186,0.505602,0.211307,0.212379,0.153652,0.138,0.31962,0.859159,0.193633,0.954939,0.241933,0.14422,0.294661,|0.724541,0.878617,0.016046,0.217383,0.0461592,0.469763,0.661296,0.532642,0.961793,0.394545,0.156351,0.183775,0.274319,0.0123186,0.937384,0.798284,0.513961,0.393177,0.0846603,0.0824232,0.669215,0.615065,0.852453,0.283781,0.730797,0.88448,0.643679,0.0435638,0.354441,0.0550406,0.0348821,0.254423,0.235669,0.144822,0.111916,0.616648,0.457744,0.00347757,0.830578,0.701464,0.76214,0.985346,0.489824,0.767013,0.528576,0.869318,0.155723,0.705782,0.118558,0.918367,0.638768,0.349168,0.738138,0.969042,0.284743,0.690219,0.68121,0.278237,0.795647,0.13873,0.778835,0.0938209,0.0160096,0.0162248,0.641492,0.78194,0.689331,0.228588,0.191234,0.380441,0.408143,0.485079,0.381595,0.709144,0.0228795,0.066657,0.732915,0.372359,0.223437,0.855513,0.956611,0.954111,0.181255,0.691928,0.848298,0.690685,0.12956,0.977234,0.924907,0.0322266,0.858958,0.78032,0.909688,0.969332,0.56889,0.828364,0.391584,0.272909,0.218475,0.986627,0.668433,0.727197,0.936992,0.07878,0.830696,0.530173,0.129483,0.928266,0.0459271,0.897286,0.0160807,0.83547,0.00781441,0.620217,0.591726,0.146997,0.709155,0.377632,0.0988293,0.667541,0.650642,0.395891,0.489934,0.995523,0.362686,0.228588,0.834364,0.93943,0.141456,0.547259,0.124803,0.425763,0.670204,0.971042,0.670229,0.951881,0.479529,0.0654206,0.690471,0.351393,0.137013,0.533804,0.0618782,0.805519,0.198954,0.478115,0.719677,0.248596,0.377325,0.0756379,0.550916,0.726179,0.564699,0.163604,0.305043,0.803227,0.398058,0.419707,0.935507,0.132482,0.723288,0.145545,0.0199819,0.0236529,0.497468,0.287769,0.00881255,0.862577,0.254354,0.813961,0.766884,0.571991,0.86521,0.507348,0.879687,0.281086,0.697338,0.328054,0.996171,0.393406,0.213648,0.198105,0.0600387,0.317132,0.135998,0.162557,0.47423,0.330202,0.588302,0.282818,0.277133,0.754946,0.559354,0.0601964,0.623955,0.134724,0.0441352,0.591483,0.925071,0.675591,0.935149,0.184516,0.563087,0.489617,0.866117,0.515817,0.234096,0.796254,0.558945,0.912621,0.0131604,0.850135,0.390618,0.559319,0.714298,0.715189,0.286822,0.578453,0.361799,0.712655,0.978477,0.891213,0.188526,0.187129,0.28876,0.615595,0.539613,0.508355,0.0250083,0.455499,0.553231,0.726166,0.629938,0.812332,0.374011,0.95812,0.370265,0.155477,0.407018,0.661553,0.554187,0.889878,0.548279,0.395949,0.182363,0.72124,0.176322,0.569486,0.131709,0.43961,0.583838,0.401022,0.395042,0.887762,0.871025,0.299048,0.513528,0.0925234,0.423303,0.01353,0.107301,0.21115,0.200919,0.211783,0.190662,0.227255,0.108937,0.427477,0.0733154,0.285077,0.497137,0.399374,0.45528,0.590515,0.339294,0.87668,0.126145,0.707311,0.871586,0.349608,0.518855,0.985373,0.509579,0.517054,0.61292,0.853744,0.659689,0.46462,0.826143,0.421534,0.160108,0.573823,0.552133,0.443091,0.0643584,0.951983,0.410624,0.914814,0.301423,0.524229,0.154406,0.585128,0.462367,0.500642,0.582319,0.654666,0.613444,0.000209928,0.604044,0.835415,0.31014,0.768547,0.663847,0.765559,0.895815,0.229274,0.962866,0.737959,0.515164,0.33366,0.858618,0.467481,0.215116,0.982535,0.835076,0.677738,0.762396,0.296521,0.773153,0.0150457,0.94298,0.382334,0.938507,0.0685515,0.733923,0.331456,0.659482,0.440633,0.921646,0.711267,0.863623,0.0765517,0.954319,0.972867,0.0136876,0.916112,0.379358,0.280585,0.123334,0.213241,0.979959,0.165769,0.0685827,0.0230262,0.930404,0.808857,0.147975,0.119746,0.534458,0.744252,0.452523,0.89124,0.537691,0.70269,0.346941,0.65835,0.394434,0.52201,0.872423,0.441977,0.831237,0.534518,0.435329,0.464553,0.976023,0.796729,0.169525,0.816428,0.572754,0.227353,0.728101,0.0892792,0.633128,0.587785,0.854571,0.954047,0.87294,0.0772651,0.257891,0.71959,0.016567,0.65611,0.609489,0.659437,0.809387,0.280652,0.922738,0.503696,0.955611,0.866323,0.134275,0.253365,0.364366,0.435709,0.998521,0.0444881,0.287261,0.040441,0.122221,0.556428,0.0269493,0.134123,0.719853,0.2885,0.608536,0.286038,0.507215,0.803406,0.0258408,0.336243,0.945237,0.885035,0.214523,0.366127,0.213371,0.739162,0.731838,0.161361,0.0156049,0.813634,0.563968,0.512912,0.999405,0.873043,0.537231,0.27593,0.0343077,0.431571,0.698878,0.576944,0.217936,0.662996,0.966218,0.935945,0.189876,0.289522,0.289863,0.835514,0.0763391,0.120408,0.693867,0.495369,0.332558,0.639378,0.234099,0.38181,0.483969,0.80838,0.423647,0.090322,0.919789,0.121862,0.0848265,0.799748,0.677806,0.77923,0.910714,0.963336,0.082,0.612685,0.569747,0.473089,0.75342,0.0992849,0.591036,0.850786,0.433467,0.0710273,0.54902,0.476791,0.375897,0.715969,0.342742,0.0948986,0.385229,0.242955,0.491346,0.914928,0.818914,0.491451,0.0200559,0.333966,0.173782,0.121699,0.0855424,0.0392166,0.863359,0.147712,0.116961,0.388483,0.518934,0.749329,0.333963,0.626349,0.872712,0.126951,0.214626,0.155124,0.935718,0.0656174,0.154992,0.413453,0.114684,0.339864,0.475508,0.456033,0.875591,0.372704,0.552945,0.907442,0.397383,0.426372,0.611261,0.290387,0.25808,0.94102,0.830954,0.627123,0.469676,0.873622,0.939451,0.826205,0.630403,0.00961196,0.442966,0.797551,0.421753,0.440122,0.489834,0.560585,0.623863,0.829449,0.963886,0.839012,0.586441,0.343758,0.265914,0.535876,0.349572,0.947002,0.372183,0.0315881,0.458592,0.903815,0.523949,0.377197,0.59463,0.43637,0.31585,0.77746,0.0913715,0.340046,0.654651,0.782863,0.550295,0.636564,0.848035,0.907766,0.759762,0.726143,0.433353,0.341298,0.715128,0.940698,0.901864,0.489679,0.8874,0.776037,0.855941,0.838052,0.0079065,0.0303388,0.0468856,0.956729,0.956008,0.0506166,0.129067,0.613995,0.120599,0.799733,0.109828,0.186435,0.761214,0.352872,0.98931,0.945223,0.756109,0.739359,0.811135,0.0170369,0.517431,0.857058,0.500605,0.937315,0.820323,0.270398,0.86635,0.916192,0.346461,0.718677,0.664168,0.755879,0.512704,0.234294,0.577261,0.349961,0.485463,0.324944,0.167055,0.190257,0.245247,0.917252,0.679434,0.584415,0.789716,0.0813732,0.394908,0.0543247,0.332245,0.781035,0.0839419,0.553192,0.572771,0.412902,0.27411,0.24548,0.997886,0.884801,0.192353,0.0244389,0.947497,0.2003,0.346915,0.571238,0.83163,0.368024,0.460242,0.874832,0.705808,0.360723,0.966994,0.758606,0.908897,0.647507,0.134938,0.0153514,0.80395,0.474959,0.414401,0.81596,0.120221,0.602489,0.0348716,0.382111,0.148017,0.477517,0.425515,0.234306,0.688703,0.62559,0.926298,0.44772,0.446393,0.010765,0.547471,0.355853,0.582629,0.88411,0.314952,0.948167,0.0288491,0.232897,0.206839,0.709123,0.119123,0.87447,0.385055,0.199737,0.209391,0.380199,0.268707,0.463728,0.254872,0.369776,0.492098,0.495815,0.99852,0.291102,0.419957,0.0887001,0.0458663,0.537941,0.497656,0.102447,0.0684019,0.587505,0.0434657,0.0464367,0.185027,0.191918,0.268516,0.521839,0.320884,0.189654,0.0590191,0.549997,0.173918,0.504426,0.0719027,0.981114,0.925724,0.811685,0.811545,0.48063,0.993219,0.253634,0.504311,0.784922,0.220701,0.249555,0.895884,0.190474,0.353923,0.161763,0.12092,0.0617204,0.137488,0.880996,0.197351,0.838134,0.339715,0.742331,0.217041,0.362246,0.0828858,0.940078,0.493446,0.821612,0.452784,0.641318,0.147969,0.822733,0.358556,0.76722,0.554141,0.725197,0.160559,0.722965,0.336744,0.6212,0.485871,0.429431,0.204268,0.629357,0.926818,0.64317,0.781273,0.742487,0.102537,0.640681,0.876171,0.719198,0.787414,0.652012,0.355861,0.490555,0.220631,0.465606,0.552888,0.0218729,0.0779125,0.773986,0.926823,0.906362,0.956337,0.341234,0.0485736,0.0191664,0.473314,0.967127,0.366988,0.597207,0.45082,0.895751,0.325645,0.544352,0.878398,0.502833,0.655653,0.293005,0.0931063,0.167477,0.195961,0.29191,0.430498,0.164736,0.0646006,0.244828,0.692977,0.554363,0.118785,0.788114,0.259631,0.768102,0.695736,0.235947,0.843652,0.880839,0.924383,0.662515,0.208895,0.121623,0.128282,0.845368,0.435244,0.500889,0.981271,0.445132,0.219907,0.400202,0.400203,0.0535069,0.296608,0.146723,0.869999,0.612406,0.774675,0.484728,0.3694,0.498265,0.744642,0.928012,0.87109,0.941984,0.406995,0.323357,0.146086,0.54844,0.277764,0.716477,0.832695,0.622664,0.00803983,0.192749,0.892652,0.296355,0.453706,0.492143,0.32683,0.238766,0.868297,0.869832,0.629045,0.610701,0.188479,0.193457,0.00548702,0.558952,0.752762,0.694223,0.255491,0.150869,0.368638,0.495298,0.905509,0.827187,0.198199,0.576719,0.393228,0.559693,0.741416,0.649916,0.456388,0.939728,0.778676,0.802639,0.746927,0.357692,0.572497,0.163108,0.398701,0.313634,0.270859,0.258217,0.899636,0.244644,0.689705,0.775879,0.0983943,0.0868434,0.968132,0.365023,0.660033,0.490004,0.29784,0.123945,0.76,0.32438,0.454213,0.43623,0.933122,0.107089,0.435685,0.657498,0.707989,0.229806,0.377283,0.745662,0.328619,0.5941,0.539553,0.222919,0.893082,0.97094,0.949504,0.691152,0.448282,0.411344,0.636138,0.354137,0.587258,0.702101,0.899084,0.377529,0.02227,0.675021,0.281924,0.520641,0.336646,0.822265,0.577754,0.902833,0.029362,0.189486,0.0767991,0.0173476,0.399954,0.841699,0.829025,0.778334,0.443141,0.483384,0.870997,0.947026,0.561598,0.417781,0.612514,0.200655,0.30232,0.587625,0.543534,0.0216767,0.317416,0.898298,0.831487,0.0308437,0.90364,0.299404,0.222722,0.269764,0.257132,0.461592,0.312925,0.37131,0.923375,0.839337,0.152461,0.802064,0.0583786,0.275813,0.712072,0.151237,0.651209,0.846578,0.379518,0.274521,0.234377,0.537443,0.607898,0.642724,0.0284168,0.265003,0.875657,0.664382,0.574662,0.633095,0.916518,0.454246,0.422644,0.68917,|0.599562,0.521927,0.525646,0.827131,0.311516,0.767892,0.538296,0.325059,0.556626,0.160693,0.155574,0.212943,0.644848,0.179347,0.625499,0.369006,0.94201,0.590951,0.194794,0.296066,0.88505,0.0673031,0.639094,0.341473,0.638576,0.378199,0.752142,0.140787,0.845035,0.626635,0.868416,0.535735,0.364589,0.28803,0.176515,0.822299,0.0804023,0.649012,0.656795,0.172021,0.512295,0.893999,0.294526,0.615847,0.979699,0.80758,0.966684,0.0350906,0.383328,0.686499,0.691148,0.344859,0.409768,0.649264,0.55457,0.906232,0.685879,0.607231,0.917227,0.968308,0.300885,0.437884,0.124619,0.460936,0.279437,0.613314,0.752585,0.435714,0.507874,0.799569,0.610261,0.994736,0.980705,0.750389,0.604151,0.916456,0.378748,0.601316,0.763927,0.245488,0.758762,0.056281,0.375175,0.785394,0.473568,0.127525,0.0777129,0.088546,0.822526,0.567808,0.92974,0.884579,0.390099,0.490841,0.348032,0.841357,0.116271,0.208197,0.0420673,0.994242,0.733777,0.506199,0.108804,0.0764966,0.0664939,0.0223908,0.628953,0.596877,0.301496,0.383382,0.249771,0.883999,0.707007,0.0310276,0.0146473,0.150658,0.972593,0.315079,0.26839,0.217155,0.388975,0.600503,0.767844,0.922923,0.947282,0.600417,0.184968,0.295195,0.168319,0.365966,0.0690449,0.0631876,0.278334,0.633024,0.1705,0.314686,0.541418,0.199814,0.216533,0.0414512,0.61064,0.536409,0.239894,0.502094,0.833669,0.0533223,0.580723,0.725256,0.456072,0.637193,0.663272,0.672497,0.762709,0.610524,0.803717,0.605411,0.0290012,0.435084,0.866637,0.801803,0.235002,0.754087,0.245261,0.496635,0.479059,0.00769186,0.381802,0.442903,0.363538,0.278591,0.683919,0.798548,0.876686,0.0509331,0.135522,0.183876,0.746794,0.610453,0.101378,0.281979,0.506156,0.0190884,0.406336,0.843056,0.906781,0.797114,0.147078,0.973726,0.423234,0.884724,0.160213,0.782439,0.0397744,0.871261,0.33849,0.343591,0.947999,0.831241,0.457307,0.982236,0.134486,0.80427,0.426219,0.173444,0.851192,0.711742,0.746294,0.40267,0.831173,0.22526,0.205229,0.714134,0.0567006,0.187161,0.562287,0.34233,0.410566,0.46769,0.287161,0.311921,0.0478911,0.798765,0.553211,0.693413,0.327235,0.203512,0.854936,0.344238,0.495688,0.255086,0.424186,0.61062,0.997488,0.727445,0.859072,0.68823,0.96594,0.258529,0.566331,0.576558,0.381873,0.170592,0.796913,0.475954,0.471073,0.415221,0.425229,0.528407,0.879986,0.780418,0.880035,0.831761,0.0209311,0.665607,0.242883,0.118973,0.633983,0.281352,0.0257352,0.11343,0.812322,0.548773,0.684534,0.0478274,0.58759,0.0447488,0.27395,0.234442,0.415677,0.878469,0.411461,0.535018,0.983802,0.754769,0.238232,0.472707,0.429989,0.553895,0.236683,0.603643,0.0800034,0.95783,0.361824,0.112261,0.514981,0.403085,0.187147,0.0779268,0.236156,0.605785,0.289181,0.968366,0.156118,0.699592,0.115592,0.610438,0.383066,0.470311,0.923939,0.399712,0.506106,0.686738,0.861236,0.863072,0.192343,0.719652,0.883691,0.386614,0.901929,0.6514,0.657405,0.715348,0.983444,0.745455,0.412898,0.969105,0.836226,0.360933,0.0933852,0.257333,0.717987,0.0454819,0.668863,0.220513,0.939314,0.358549,0.218857,0.58523,0.0852323,0.22022,0.903635,0.584082,0.528749,0.313817,0.0737398,0.519765,0.809087,0.935944,0.336094,0.925337,0.963078,0.719213,0.769122,0.683986,0.639225,0.253746,0.0643555,0.50778,0.511678,0.383118,0.47701,0.657475,0.453907,0.0937061,0.270243,0.880445,0.620334,0.320117,0.195586,0.252973,0.39264,0.0922154,0.226497,0.112161,0.892979,0.707484,0.0341055,0.444356,0.351068,0.00809127,0.956521,0.824103,0.338325,0.0733747,0.801192,0.768346,0.442409,0.265271,0.133616,0.319582,0.859291,0.661172,0.473144,0.289085,0.517057,0.075781,0.10198,0.234815,0.111671,0.74034,0.130395,0.827666,0.472734,0.160803,0.942026,0.180423,0.416392,0.934267,0.717882,0.941062,0.115412,0.555541,0.342335,0.961786,0.861232,0.317924,0.46542,0.665149,0.348903,0.544076,0.100518,0.508517,0.188488,0.219085,0.936866,0.297228,0.925185,0.56793,0.374297,0.0909889,0.715952,0.998113,0.593966,0.287955,0.804735,0.786209,0.817221,0.439021,0.292005,0.730646,0.430902,0.181754,0.658653,0.88546,0.164596,0.540288,0.582518,0.587369,0.659943,0.835046,0.27265,0.667917,0.857812,0.568131,0.0618719,0.30736,0.152301,0.6482,0.181451,0.79603,0.753127,0.782805,0.452322,0.640491,0.691747,0.082619,0.240578,0.786217,0.497003,0.700092,0.677197,0.291666,0.722373,0.348877,0.755143,0.0762148,0.408392,0.682103,0.880515,0.58435,0.102725,0.167814,0.00377852,0.511985,0.778761,0.583933,0.740547,0.0265309,0.273421,0.68211,0.83795,0.609707,0.367611,0.765919,0.944574,0.674487,0.461292,0.722434,0.605458,0.108053,0.235644,0.821475,0.165711,0.067901,0.719611,0.749368,0.160902,0.453259,0.711067,0.855306,0.167037,0.419139,0.744684,0.564378,0.894176,0.869281,0.785925,0.148066,0.896779,0.540682,0.63004,0.572259,0.599955,0.0871417,0.570814,0.0917275,0.736587,0.170703,0.770709,0.214817,0.0289488,0.589925,0.521208,0.64295,0.58966,0.38292,0.63576,0.198774,0.952219,0.528029,0.879787,0.317014,0.288033,0.225076,0.728166,0.440693,0.180621,0.70939,0.1078,0.140866,0.732046,0.584295,0.840101,0.996827,0.3319,0.218779,0.698259,0.871518,0.918456,0.556728,0.472125,0.322717,0.43772,0.164146,0.118526,0.98766,0.254075,0.551833,0.345997,0.889901,0.814668,0.655434,0.685673,0.57819,0.525822,0.344997,0.557105,0.820996,0.64993,0.213138,0.629248,0.362618,0.106872,0.181196,0.776266,0.312617,0.315812,0.143213,0.585398,0.37377,0.318253,0.733316,0.672684,0.33836,0.015871,0.801319,0.367819,0.585653,0.5461,0.591895,0.695056,0.0421448,0.676531,0.418814,0.697075,0.449537,0.543046,0.0216558,0.056129,0.127826,0.180902,0.183737,0.212518,0.695212,0.777279,0.221978,0.361685,0.748019,0.828419,0.460267,0.30787,0.973696,0.847682,0.505557,0.439226,0.419818,0.309365,0.738902,0.604309,0.24518,0.376063,0.254231,0.45678,0.784569,0.0552929,0.100111,0.056396,0.411267,0.310691,0.687237,0.0499979,0.72655,0.744196,0.773747,0.947887,0.531486,0.85598,0.735448,0.838584,0.454237,0.0282065,0.0288653,0.0915809,0.913347,0.458331,0.470855,0.714516,0.634404,0.266195,0.0719384,0.0574522,0.735794,0.41559,0.0446609,0.0625159,0.301662,0.712401,0.610022,0.704394,0.945777,0.00224209,0.616226,0.340915,0.81837,0.301725,0.544031,0.973205,0.449329,0.64833,0.158566,0.993917,0.894334,0.0434517,0.373382,0.657326,0.620608,0.677622,0.594606,0.695078,0.694866,0.700043,0.258166,0.979632,0.37253,0.511796,0.906604,0.0808963,0.949556,0.812173,0.275365,0.154219,0.164366,0.580877,0.144152,0.515009,0.0976635,0.479794,0.911191,0.486654,0.272034,0.356675,0.569819,0.269613,0.754153,0.129852,0.0754962,0.000590146,0.506788,0.198751,0.707606,0.9256,0.888546,0.588736,0.840438,0.301304,0.182084,0.241782,0.334069,0.395734,0.962893,0.762967,0.947941,0.98248,0.861064,0.880364,0.222421,0.41058,0.97531,0.644806,0.464783,0.352302,0.0250243,0.251798,0.357861,0.877513,0.397143,0.669734,0.478368,0.64841,0.08265,0.103559,0.540697,0.353731,0.333285,0.997534,0.554422,0.209146,0.452497,0.579309,0.301471,0.183956,0.0108059,0.221709,0.463848,0.406549,0.810278,0.607033,0.64116,0.853873,0.907389,0.876875,0.150536,0.706488,0.00127143,0.43585,0.864092,0.854386,0.968156,0.40601,0.980591,0.341593,0.894514,0.824114,0.255921,0.770967,0.665522,0.625714,0.635116,0.726483,0.69414,0.892287,0.982607,0.715039,0.591313,0.932155,0.203843,0.224222,0.19523,0.421478,0.524371,0.61266,0.551489,0.248895,0.0948775,0.0810927,0.633767,0.682665,0.388611,0.31503,0.875326,0.78071,0.181115,0.687128,0.907329,0.48503,0.973665,0.916602,0.80489,0.240696,0.0282586,0.477767,0.969155,0.776323,0.565856,0.964127,0.877367,0.105622,0.931965,0.237932,0.557973,0.0197852,0.811597,0.864049,0.322552,0.621316,0.137688,0.38706,0.877927,0.334532,0.213331,0.402951,0.25552,0.715336,0.595665,0.863743,0.191075,0.686746,0.0589756,0.773122,0.369849,0.0875984,0.887345,0.649325,0.647395,0.125407,0.374623,0.301845,0.462419,0.689796,0.916354,0.489918,0.118531,0.75286,0.206308,0.4828,0.207547,0.113501,0.116224,0.385341,0.190483,0.279414,0.595407,0.53913,0.131556,0.0323986,0.704153,0.859741,0.989511,0.579913,0.537434,0.151689,0.595227,0.668127,0.940336,0.807562,0.968219,0.629877,0.34886,0.0199193,0.534558,0.269433,0.917618,0.841681,0.0532634,0.747742,0.128869,0.454928,0.458961,0.851462,0.548897,0.350327,0.534643,0.642436,0.177886,0.579266,0.808813,0.59895,0.152594,0.564169,0.631544,0.336675,0.894152,0.166907,0.11108,0.0857113,0.751113,0.941954,0.593346,0.457286,0.531576,0.642786,0.81711,0.220064,0.396528,0.14009,0.848223,0.564854,0.440989,0.752745,0.77205,0.343988,0.201271,0.500878,0.286421,0.419879,0.760326,0.158085,0.777674,0.116275,0.901074,0.50127,0.993802,0.0902247,0.00030756,0.0901729,0.877678,0.0341308,0.80829,0.54222,0.846378,0.106941,0.282639,0.528022,0.293241,0.577897,0.722062,0.583727,0.921098,0.652315,0.0783607,0.469563,0.0845492,0.417278,0.299411,0.832885,0.280768,0.0247502,0.503854,0.781035,0.724317,0.817622,0.141576,0.0854983,0.576049,0.624065,0.887715,0.122934,0.753532,0.236475,0.980229,0.8549,0.901657,0.616763,0.415963,0.116051,0.645947,0.487127,0.582928,0.012993,0.310954,0.929778,0.326234,0.790975,0.487421,0.466941,0.858766,0.65374,0.760223,0.429896,0.89185,0.0833201,0.328521,0.0368737,0.0577778,0.312168,0.247329,0.773673,0.0609292,0.933746,0.872364,|0.959236,0.763484,0.503557,0.797852,0.827342,0.151877,0.450769,0.524404,0.0391566,0.34828,0.414378,0.0763651,0.0279623,0.74869,0.0464643,0.726971,0.378118,0.206454,0.835002,0.146544,0.0599716,0.356633,0.123103,0.691814,0.173661,0.404831,0.0576935,0.89555,0.787759,0.774073,0.727032,0.617549,0.282335,0.718959,0.219042,0.0481966,0.103557,0.297389,0.452783,0.399083,0.250256,0.17591,0.676235,0.178291,0.248017,0.304511,0.537468,0.105208,0.545115,0.169833,0.851538,0.450114,0.79496,0.911651,0.936763,0.938202,0.109272,0.700193,0.938028,0.88008,0.168279,0.329551,0.657612,0.114308,0.482531,0.779469,0.863116,0.524384,0.375458,0.462431,0.741702,0.633516,0.967933,0.37223,0.396733,0.858456,0.986238,0.889191,0.284628,0.700997,0.0449458,0.94569,0.0489112,0.436533,0.862702,0.927234,0.374415,0.470154,0.402594,0.809996,0.155716,0.870898,0.898608,0.733792,0.23623,0.845449,0.43382,0.618098,0.573562,0.0307082,0.90726,0.992827,0.123679,0.0435002,0.524096,0.530402,0.35222,0.327009,0.86676,0.410116,0.33825,0.636312,0.464953,0.411753,0.877658,0.74959,0.90523,0.697121,0.0873387,0.973152,0.353293,0.882091,0.263402,0.247224,0.826156,0.826177,0.339672,0.299638,0.482325,0.109768,0.223949,0.928384,0.917901,0.141786,0.172081,0.175257,0.490745,0.664378,0.0971094,0.825086,0.122002,0.759782,0.284667,0.186962,0.479968,0.843941,0.711402,0.691971,0.391176,0.145099,0.350996,0.455294,0.315165,0.534177,0.292717,0.550558,0.921699,0.149202,0.146765,0.356904,0.602569,0.97753,0.323407,0.0799901,0.25544,0.71939,0.510209,0.442367,0.940379,0.188596,0.0890504,0.945287,0.151937,0.876642,0.473477,0.759645,0.817852,0.610419,0.632293,0.727052,0.719004,0.371479,0.144094,0.982411,0.767979,0.1187,0.601305,0.259343,0.285089,0.9253,0.577437,0.825374,0.0665967,0.674494,0.569669,0.744119,0.0808291,0.515097,0.508241,0.954857,0.918035,0.466202,0.913591,0.244791,0.691557,0.214745,0.753996,0.956022,0.0577189,0.45772,0.991947,0.48472,0.607052,0.575437,0.00158685,0.352478,0.145651,0.342459,0.257569,0.554293,0.580303,0.378787,0.611015,0.0772386,0.610171,0.0235986,0.914937,0.182805,0.361788,0.183283,0.348884,0.40581,0.0980392,0.39539,0.718977,0.177757,0.252197,0.908759,0.90407,0.257886,0.574174,0.916893,0.311091,0.0930342,0.181556,0.65258,0.614999,0.154852,0.551629,0.863438,0.236761,0.0773628,0.378246,0.478548,0.999785,0.610406,0.221418,0.338812,0.224224,0.166897,0.310422,0.816315,0.711862,0.903191,0.00835955,0.193995,0.00905436,0.216653,0.765477,0.762023,0.00497407,0.860497,0.193779,0.58813,0.746821,0.321424,0.863193,0.727953,0.829932,0.643679,0.73145,0.0274327,0.44705,0.174636,0.450751,0.202953,0.648472,0.461319,0.425925,0.0374812,0.0160575,0.0642574,0.604993,0.796237,0.124643,0.571782,0.162255,0.967147,0.0866609,0.939144,0.051771,0.694451,0.564644,0.636125,0.731696,0.249479,0.098424,0.869232,0.366751,0.637925,0.255772,0.727766,0.52997,0.689143,0.676679,0.64166,0.244826,0.12702,0.865278,0.819662,0.476778,0.815586,0.572508,0.154589,0.369961,0.347104,0.179752,0.627896,0.372149,0.44863,0.460028,0.426499,0.782489,0.828211,0.239084,0.772963,0.393245,0.372936,0.0251016,0.66393,0.789661,0.333366,0.638133,0.400226,0.255685,0.804495,0.961809,0.951607,0.0493507,0.468776,0.779697,0.114864,0.681465,0.394527,0.0117573,0.937162,0.144844,0.303853,0.743288,0.461083,0.0378105,0.510127,0.668292,0.472644,0.532685,0.456171,0.00246847,0.729695,0.525537,0.251844,0.866923,0.515135,0.887724,0.473802,0.611727,0.270312,0.364893,0.530947,0.652934,0.754784,0.566302,0.969024,0.448686,0.76139,0.664301,0.34927,0.346632,0.221322,0.62994,0.467742,0.124775,0.849714,0.679156,0.68168,0.0278084,0.65668,0.0912951,0.339756,0.319172,0.596074,0.222891,0.860108,0.978644,0.902621,0.868777,0.984356,0.20656,0.857537,0.103307,0.812021,0.458573,0.834675,0.028468,0.3004,0.834085,0.480063,0.54354,0.405072,0.438346,0.745422,0.112429,0.620046,0.148861,0.512929,0.975353,0.305577,0.798065,0.514696,0.103314,0.0740662,0.908762,0.923209,0.809728,0.473976,0.317814,0.13595,0.19062,0.0678321,0.695663,0.748901,0.161815,0.654691,0.828355,0.184831,0.650105,0.238141,0.0741796,0.255006,0.184259,0.0755357,0.176245,0.481877,0.302359,0.202949,0.238144,0.545285,0.811988,0.867668,0.4475,0.331924,0.799979,0.467917,0.0179665,0.785482,0.677391,0.142585,0.487441,0.61348,0.610723,0.236521,0.495693,0.423079,0.128157,0.240598,0.153436,0.761924,0.429247,0.579193,0.116394,0.333102,0.657943,0.813633,0.188325,0.00355875,0.518878,0.639921,0.584244,0.12726,0.581703,0.969722,0.206042,0.592199,0.445967,0.535088,0.301477,0.344857,0.439819,0.183586,0.142129,0.0532715,0.725709,0.482546,0.659839,0.580722,0.0337343,0.469788,0.791469,0.968881,0.0255924,0.226074,0.635955,0.458447,0.357312,0.396688,0.980024,0.791219,0.619884,0.479028,0.459816,0.521358,0.314814,0.465934,0.55589,0.777902,0.396514,0.622272,0.900182,0.673159,0.925385,0.649237,0.583317,0.375186,0.082249,0.834153,0.464149,0.495217,0.435885,0.97494,0.0779526,0.705892,0.981893,0.942804,0.718596,0.448196,0.164403,0.561397,0.679109,0.997326,0.564506,0.584215,0.950128,0.877255,0.825512,0.122887,0.300102,0.670383,0.319307,0.722421,0.331004,0.749663,0.899014,0.498906,0.719422,0.893968,0.823516,0.655883,0.295126,0.467883,0.801729,0.647429,0.4913,0.971992,0.299022,0.515193,0.0589012,0.997054,0.726357,0.627848,0.695069,0.0795234,0.608198,0.485083,0.907602,0.677206,0.796746,0.417666,0.715473,0.639691,0.847096,0.350039,0.673997,0.923576,0.836548,0.990862,0.687427,0.663576,0.0383683,0.296271,0.597168,0.395747,0.877586,0.0624858,0.476354,0.632981,0.279936,0.992821,0.282877,0.659336,0.976684,0.684109,0.231172,0.215093,0.0363759,0.0781178,0.324088,0.639307,0.488194,0.657938,0.891744,0.566384,0.943171,0.774968,0.597395,0.555391,0.795836,0.605018,0.272201,0.452015,0.481857,0.50944,0.757124,0.441479,0.38899,0.213366,0.528581,0.582748,0.960879,0.0944788,0.368278,0.287916,0.677448,0.779818,0.871672,0.696375,0.696579,0.983765,0.682729,0.164933,0.787396,0.149811,0.695675,0.594751,0.0229284,0.347282,0.106883,0.893106,0.196454,0.476484,0.615887,0.971873,0.833206,0.0478254,0.529339,0.610337,0.610241,0.289629,0.737682,0.0687732,0.838728,0.832368,0.696293,0.598665,0.314453,0.124711,0.684348,0.153241,0.580097,0.0889809,0.408249,0.0697759,0.585115,0.924864,0.733556,0.904383,0.994003,0.189995,0.172269,0.772287,0.938299,0.938969,0.0689854,0.195949,0.379458,0.424877,0.496202,0.976019,0.870469,0.0226998,0.27711,0.226574,0.648759,0.0702899,0.174306,0.883487,0.0615368,0.0306937,0.996265,0.551037,0.586823,0.317753,0.640618,0.0736067,0.23103,0.238582,0.687624,0.227148,0.382389,0.559629,0.470749,0.838807,0.257097,0.721183,0.448614,0.152389,0.0191368,0.522583,0.925706,0.759398,0.141317,0.724978,0.583169,0.115044,0.389542,0.180611,0.405735,0.265246,0.798127,0.111706,0.750283,0.322234,0.0191589,0.0902584,0.989204,0.141259,0.83693,0.520837,0.13412,0.812981,0.515671,0.0275146,0.946691,0.703891,0.150176,0.234288,0.53924,0.94867,0.603291,0.930074,0.960436,0.773464,0.247451,0.210059,0.855461,0.567984,0.878953,0.507476,0.422481,0.071299,0.423995,0.331093,0.21305,0.0122256,0.506499,0.0709213,0.804775,0.960738,0.886361,0.653935,0.458893,0.385611,0.614652,0.00906396,0.476464,0.944242,0.0184972,0.128706,0.761777,0.324214,0.256466,0.625271,0.725541,0.52383,0.335268,0.953914,0.223109,0.029966,0.330675,0.332204,0.6185,0.57578,0.290941,0.00033325,0.498013,0.650056,0.38475,0.364669,0.149345,0.554969,0.300452,0.341119,0.870824,0.387143,0.0661396,0.689001,0.785128,0.0657906,0.872042,0.208623,0.210847,0.196879,0.55288,0.846251,0.997097,0.284819,0.409806,0.126131,0.319624,0.882987,0.646076,0.908507,0.580768,0.989056,0.700935,0.223117,0.116623,0.286145,0.175997,0.838254,0.124215,0.0611624,0.235329,0.670927,0.222345,0.658153,0.113686,0.854377,0.222642,0.0028258,0.964353,0.456676,0.178596,0.0782413,0.154121,0.763283,0.894373,0.732372,0.503331,0.915384,0.900456,0.132338,0.110546,0.0047031,0.648279,0.439694,0.493841,0.581555,0.628465,0.382634,0.348441,0.920776,0.444462,0.850182,0.140275,0.166157,0.397109,0.153334,0.294366,0.723089,0.396056,0.836599,0.434119,0.194797,0.832283,0.452726,0.604476,0.170322,0.976488,0.262857,0.367431,0.530322,0.490863,0.928601,0.662655,0.52193,0.3619,0.0713761,0.638442,0.741424,0.206478,0.293802,0.509142,0.316994,0.675093,0.587641,0.0457906,0.0303293,0.985288,0.252276,0.726877,0.645701,0.243336,0.0227341,0.992189,0.894627,0.699089,0.248637,0.652616,0.743173,0.0539601,0.0267177,0.0865759,0.355439,0.385751,0.584768,0.656147,0.211324,0.579352,0.527785,0.931601,0.427766,0.0676722,0.163689,0.89796,0.599784,0.538598,0.391119,0.427013,0.99654,0.403686,0.0871745,0.232023,0.413772,0.863881,0.482762,0.275698,0.103977,0.425457,0.266864,0.482735,0.420421,0.877442,0.293231,0.337236,0.343891,0.941235,0.333101,0.565279,0.410921,0.459341,0.0812354,0.623034,0.0431674,0.751229,0.118466,0.476149,0.61275,0.531498,0.616564,0.576868,0.145341,0.697602,0.480434,0.721041,0.663946,0.522968,0.0978232,0.136888,0.773845,0.807889,0.753348,0.0222055,0.966802,0.645342,0.95627,0.98436,0.0526615,0.708038,0.366997,0.0247656,0.694886,0.370963,0.772958,0.65325,0.607276,0.0917699,0.199889,0.817574,0.842194,0.73299,0.286162,|0.166162,0.0694482,0.993983,0.273799,0.0713416,0.791782,0.64206,0.641718,0.850884,0.482346,0.67707,0.661963,0.745112,0.329578,0.287481,0.161333,0.182813,0.176903,0.428556,0.357931,0.446581,0.0213252,0.452475,0.816677,0.470881,0.755138,0.906452,0.799402,0.425656,0.531754,0.320317,0.892741,0.27033,0.876875,0.153597,0.140952,0.93005,0.57097,0.174543,0.737526,0.244091,0.864537,0.924858,0.225674,0.573892,0.535875,0.891641,0.507655,0.933186,0.850098,0.757005,0.593876,0.893301,0.974241,0.841301,0.357958,0.57152,0.914972,0.0561291,0.668817,0.843807,0.772483,0.0111087,0.604978,0.812157,0.293991,0.955124,0.962349,0.478331,0.241911,0.684949,0.382314,0.12562,0.946684,0.939086,0.0709956,0.444615,0.801881,0.488982,0.501782,0.103939,0.724485,0.918438,0.923728,0.85283,0.102704,0.280895,0.76193,0.038266,0.933069,0.56642,0.513484,0.0719886,0.288463,0.506402,0.526853,0.743061,0.777426,0.55137,0.748912,0.201031,0.239878,0.465045,0.659164,0.329407,0.495654,0.263595,0.480022,0.591801,0.23206,0.352688,0.623146,0.292763,0.983355,0.627104,0.696131,0.75844,0.74096,0.764949,0.242173,0.774346,0.0996671,0.583768,0.499042,0.299483,0.968913,0.333286,0.00764847,0.261536,0.246042,0.635298,0.588612,0.532006,0.386813,0.101874,0.822952,0.491472,0.622783,0.315905,0.170329,0.407986,0.0468283,0.510886,0.953182,0.535731,0.727188,0.962628,0.954108,0.66327,0.532991,0.519657,0.695772,0.308664,0.521952,0.172052,0.448752,0.529067,0.358856,0.165525,0.512238,0.0886089,0.668648,0.675462,0.740179,0.20476,0.808323,0.323952,0.481708,0.951803,0.802861,0.0180347,0.865356,0.184129,0.64553,0.196151,0.212829,0.668521,0.0131195,0.354231,0.253078,0.567673,0.532946,0.797396,0.620047,0.854444,0.118338,0.10323,0.392233,0.220645,0.953253,0.0196721,0.265729,0.808436,0.0633026,0.452563,0.661783,0.268038,0.914501,0.622237,0.992379,0.03028,0.992998,0.186596,0.3941,0.994843,0.662191,0.919058,0.0130827,0.945355,0.164038,0.170563,0.639761,0.725405,0.0637985,0.955196,0.5015,0.770115,0.732606,0.01096,0.407875,0.507652,0.332631,0.228059,0.909085,0.133514,0.308562,0.316481,0.934699,0.934482,0.0157943,0.906964,0.389534,0.438107,0.10917,0.220914,0.891856,0.919945,0.625973,0.540253,0.273703,0.576999,0.257308,0.935097,0.215301,0.690119,0.441502,0.584201,0.152108,0.348061,0.14934,0.684235,0.21602,0.43962,0.875892,0.270341,0.964166,0.0512842,0.859868,0.0912532,0.451021,0.96424,0.15091,0.144174,0.630568,0.812479,0.557693,0.492243,0.0465745,0.0923471,0.940752,0.15894,0.794404,0.236701,0.120022,0.0834709,0.201604,0.392124,0.525571,0.710015,0.997026,0.624476,0.856944,0.927388,0.778387,0.242631,0.486896,0.840808,0.497413,0.92545,0.636063,0.0761806,0.862631,0.823161,0.0978709,0.35628,0.259062,0.193398,0.263452,0.52476,0.633229,0.957165,0.28036,0.52989,0.973641,0.109177,0.571945,0.188108,0.298263,0.150579,0.732068,0.370609,0.821525,0.699532,0.411708,0.0108609,0.430746,0.609709,0.0318587,0.595254,0.249142,0.880525,0.225357,0.113314,0.789428,0.0928832,0.246138,0.0733796,0.932821,0.474575,0.213356,0.502375,0.749538,0.219494,0.224826,0.624213,0.520842,0.313866,0.167732,0.0328068,0.0886285,0.592771,0.523354,0.269474,0.605033,0.711651,0.509445,0.96429,0.243621,0.836139,0.619027,0.209164,0.275974,0.205285,0.667085,0.494542,0.468313,0.856248,0.424073,0.0131817,0.190375,0.117763,0.99503,0.942878,0.672763,0.400498,0.911892,0.433202,0.03768,0.924257,0.245439,0.837318,0.036292,0.391967,0.0956388,0.0387235,0.220722,0.91672,0.485353,0.437787,0.0336786,0.901825,0.594703,0.577765,0.362928,0.705338,0.950193,0.408552,0.921996,0.732532,0.558728,0.319337,0.0776849,0.668272,0.107811,0.280812,0.768044,0.969804,0.364374,0.59103,0.971534,0.684175,0.988046,0.658202,0.745011,0.263171,0.595306,0.983518,0.847708,0.248751,0.998533,0.579339,0.72886,0.276477,0.289956,0.128844,0.0056327,0.320188,0.973033,0.446836,0.854595,0.73526,0.0608342,0.675779,0.781871,0.805967,0.0455387,0.658155,0.749369,0.613665,0.132767,0.224693,0.17487,0.179526,0.989665,0.724745,0.468004,0.426625,0.520803,0.0112956,0.458718,0.36912,0.797912,0.110638,0.112641,0.29213,0.924235,0.166664,0.941986,0.653492,0.726021,0.394399,0.211563,0.276145,0.520122,0.291984,0.477586,0.311704,0.87687,0.105858,0.54142,0.204186,0.498203,0.573263,0.579382,0.00931221,0.508662,0.585132,0.290443,0.481798,0.952802,0.377962,0.121866,0.0749864,0.0567668,0.262831,0.996328,0.55432,0.997976,0.422331,0.109561,0.649993,0.821154,0.250008,0.286849,0.6532,0.738515,0.574969,0.0601652,0.288127,0.142467,0.922839,0.651472,0.733666,0.701857,0.0790523,0.856988,0.447656,0.770028,0.606302,0.131089,0.814875,0.295408,0.850209,0.0933555,0.342332,0.989199,0.0761185,0.225458,0.496742,0.975058,0.117368,0.527763,0.958552,0.882397,0.765396,0.696915,0.844786,0.398272,0.476203,0.703317,0.963278,0.30176,0.190757,0.301918,0.697791,0.935716,0.75951,0.180443,0.438029,0.910258,0.768908,0.584485,0.0663708,0.351654,0.264388,0.350189,0.716886,0.809679,0.800759,0.389881,0.0433205,0.397612,0.354292,0.286834,0.752688,0.681957,0.742357,0.287754,0.545059,0.229173,0.641335,0.733595,0.435704,0.965313,0.142481,0.4557,0.532096,0.82713,0.816469,0.442385,0.52592,0.708512,0.0272114,0.146644,0.0744453,0.967366,0.629587,0.628736,0.106922,0.0260864,0.615482,0.867792,0.679752,0.0686427,0.841215,0.714232,0.484388,0.926338,0.129946,0.838477,0.239954,0.598327,0.0565326,0.36477,0.319143,0.563489,0.14844,0.678423,0.760222,0.156575,0.172818,0.277783,0.557138,0.16305,0.233704,0.665207,0.00121361,0.825485,0.0971012,0.54619,0.162374,0.99986,0.534081,0.980645,0.480608,0.890718,0.722395,0.339439,0.275466,0.940774,0.155031,0.118452,0.673306,0.0820117,0.93159,0.318116,0.314976,0.637719,0.0212336,0.131686,0.231726,0.458402,0.985607,0.495239,0.680998,0.51133,0.436226,0.256704,0.885207,0.455214,0.872884,0.281955,0.484246,0.960986,0.834891,0.680462,0.872942,0.317711,0.824398,0.125394,0.374919,0.446325,0.383909,0.914469,0.907275,0.934019,0.132846,0.989301,0.506751,0.155394,0.234202,0.503637,0.874886,0.874293,0.501868,0.106093,0.283059,0.00835812,0.35811,0.780757,0.109657,0.821079,0.932448,0.807979,0.110621,0.680507,0.292528,0.901164,0.196948,0.520659,0.71585,0.862167,0.586469,0.926009,0.734092,0.110051,0.370721,0.896329,0.0441684,0.243614,0.852629,0.989555,0.859198,0.554699,0.904776,0.705615,0.36698,0.535033,0.59522,0.417817,0.536957,0.483046,0.144513,0.786482,0.99546,0.15005,0.634837,0.0101658,0.302174,0.481035,0.889918,0.497333,0.502677,0.125737,0.685569,0.308948,0.863866,0.162665,0.092307,0.375758,0.688508,0.396988,0.568829,0.597292,0.379702,0.91729,0.652024,0.58515,0.550236,0.89342,0.165252,0.524794,0.991036,0.301582,0.603688,0.674266,0.483733,0.253227,0.246084,0.256111,0.932214,0.152316,0.638184,0.571719,0.808353,0.664682,0.93203,0.0687143,0.300038,0.798769,0.426613,0.346447,0.956119,0.23172,0.931316,0.158333,0.511396,0.581284,0.65969,0.664412,0.264384,0.399771,0.0720439,0.300987,0.911194,0.357931,0.884736,0.488937,0.122652,0.589961,0.131927,0.55604,0.738009,0.759587,0.513544,0.404272,0.998879,0.829459,0.764128,0.0272979,0.158484,0.969097,0.959117,0.283763,0.465921,0.943886,0.2604,0.161297,0.14266,0.245661,0.110176,0.477407,0.672165,0.966493,0.0953981,0.588711,0.558782,0.156547,0.568166,0.22316,0.959107,0.923748,0.839749,0.735153,0.93493,0.283854,0.400721,0.0163784,0.850404,0.258694,0.354094,0.294542,0.932652,0.005108,0.105949,0.0973681,0.46461,0.729485,0.904694,0.679525,0.322246,0.678018,0.655508,0.0231457,0.394515,0.875971,0.887594,0.783598,0.976642,0.14833,0.975624,0.560605,0.430522,0.745528,0.0209453,0.402851,0.338609,0.738575,0.37368,0.744239,0.191727,0.599292,0.367922,0.768019,0.290357,0.0113356,0.0777764,0.269012,0.926157,0.400964,0.269009,0.578314,0.0291808,0.412087,0.423347,0.517086,0.556853,0.944542,0.162306,0.948257,0.113195,0.446748,0.353111,0.412434,0.358594,0.299811,0.637429,0.240272,0.501844,0.118297,0.651886,0.748155,0.348411,0.130938,0.341898,0.219362,0.900617,0.111361,0.460549,0.986689,0.483215,0.457502,0.00459027,0.951063,0.383232,0.438442,0.738931,0.341223,0.832283,0.941186,0.825373,0.349852,0.241086,0.965345,0.793643,0.777935,0.205724,0.733289,0.339706,0.274972,0.128733,0.184575,0.209585,0.840956,0.639032,0.917995,0.744063,0.506138,0.00133216,0.909524,0.830899,0.624643,0.638438,0.38524,0.977395,0.664015,0.254044,0.0379959,0.958092,0.433674,0.175322,0.448276,0.219929,0.35372,0.198666,0.874032,0.0426451,0.150629,0.179624,0.535636,0.443725,0.98805,0.263352,0.163228,0.260539,0.765332,0.819825,0.338015,0.750479,0.971307,0.462812,0.28384,0.566453,0.476098,0.449389,0.330202,0.380446,0.346126,0.200389,0.665904,0.760631,0.844831,0.857258,0.0881665,0.418667,0.482093,0.87225,0.886482,0.463056,0.93701,0.835426,0.839219,0.515148,0.915604,0.328543,0.490209,0.271106,0.915945,0.432274,0.417391,0.144018,0.720161,0.703561,0.741927,0.478049,0.249399,0.227229,0.655028,0.097103,0.247453,0.145292,0.500489,0.91869,0.262166,0.730877,0.0282946,0.21259,0.219822,0.344652,0.924828,0.785525,0.600781,0.316416,0.915151,0.0584407,0.390937,0.00141865,0.494698,0.69403,0.109313,0.623728,0.838109,0.937025,0.0291598,0.589612,0.575826,0.342813,0.695124,0.843105,0.658753,|0.648362,0.129427,0.771335,0.8813,0.4274,0.124453,0.407065,0.16524,0.81872,0.311564,0.172712,0.933084,0.179392,0.862098,0.701355,0.602934,0.590773,0.876669,0.806104,0.913333,0.508206,0.704604,0.431429,0.556862,0.929032,0.750744,0.439902,0.815632,0.413755,0.208996,0.0309351,0.0361527,0.0900292,0.479297,0.84303,0.587642,0.547748,0.438682,0.427816,0.354637,0.425909,0.067118,0.895561,0.751779,0.553848,0.402017,0.259286,0.914909,0.96708,0.0367029,0.19243,0.757709,0.243346,0.876656,0.79803,0.773607,0.541322,0.820764,0.290445,0.646347,0.524217,0.102232,0.890785,0.160496,0.76734,0.681241,0.417938,0.76592,0.256595,0.135114,0.141915,0.477279,0.200656,0.547853,0.192538,0.154118,0.916662,0.512207,0.585138,0.230335,0.418571,0.119473,0.315465,0.386373,0.75911,0.578568,0.192372,0.27446,0.309181,0.260823,0.838353,0.864511,0.775092,0.813776,0.0266615,0.668087,0.45964,0.482496,0.63965,0.746675,0.685458,0.421418,0.257458,0.848616,0.639857,0.396092,0.869998,0.457585,0.887748,0.696571,0.313763,0.961856,0.146793,0.0725191,0.0844735,0.638109,0.544976,0.249578,0.916041,0.442708,0.865733,0.218665,0.311786,0.990575,0.51491,0.973908,0.816218,0.889553,0.604028,0.326342,0.0185788,0.447853,0.644905,0.0608419,0.648853,0.776866,0.212477,0.80456,0.398572,0.495571,0.548015,0.717886,0.50176,0.52023,0.441223,0.0155132,0.92687,0.73889,0.00681126,0.421038,0.420362,0.525412,0.565029,0.568162,0.675002,0.499273,0.0332964,0.0844294,0.0113651,0.949654,0.910545,0.179704,0.099054,0.0140208,0.270345,0.879492,0.00356442,0.32046,0.121796,0.34945,0.813148,0.995066,0.999317,0.670829,0.0858172,0.520639,0.632266,0.00539392,0.145546,0.461284,0.0829424,0.664563,0.784453,0.131947,0.650367,0.948735,0.74556,0.431351,0.615184,0.325487,0.0508515,0.912643,0.294587,0.0742302,0.915624,0.779615,0.325787,0.454736,0.89547,0.280591,0.868418,0.822371,0.786043,0.962779,0.236084,0.460744,0.0267034,0.471959,0.188338,0.3423,0.862157,0.00912112,0.13639,0.753233,0.155166,0.704309,0.429247,0.243827,0.775371,0.640164,0.872184,0.277534,0.932803,0.112465,0.61629,0.574268,0.498045,0.373878,0.525706,0.943799,0.151276,0.353026,0.536634,0.728968,0.0818843,0.688694,0.199566,0.479786,0.14188,0.122675,0.506797,0.342942,0.540361,0.224472,0.907525,0.292162,0.711307,0.24981,0.115967,0.0360228,0.863346,0.733141,0.59949,0.275849,0.596512,0.631279,0.426916,0.786668,0.466645,0.146382,0.0950661,0.582752,0.0258185,0.410498,0.404559,0.642379,0.950732,0.528384,0.765988,0.301162,0.467802,0.0575399,0.00944638,0.173148,0.225487,0.65667,0.872158,0.147266,0.984074,0.463761,0.206919,0.237906,0.218299,0.903893,0.232917,0.840379,0.245171,0.108611,0.489046,0.739484,0.182422,0.964393,0.170194,0.608453,0.389689,0.939083,0.935411,0.842648,0.741184,0.216146,0.910594,0.524361,0.65376,0.667815,0.83138,0.366002,0.406632,0.296849,0.345496,0.544182,0.572772,0.29621,0.758672,0.591833,0.609389,0.0609927,0.0825755,0.130221,0.782407,0.385796,0.791339,0.991064,0.113798,0.0199595,0.578686,0.370926,0.386318,0.710343,0.940153,0.970283,0.587234,0.918227,0.702638,0.900315,0.129759,0.325664,0.701868,0.298086,0.102321,0.155033,0.833048,0.849274,0.850515,0.0276536,0.498641,0.483646,0.302674,0.745936,0.553571,0.585506,0.588821,0.12853,0.29812,0.701311,0.565399,0.673595,0.325049,0.731014,0.084807,0.73184,0.662839,0.606147,0.16042,0.286924,0.262593,0.761139,0.98394,0.833264,0.678224,0.0641077,0.0723822,0.448245,0.575067,0.381327,0.304436,0.562855,0.0922458,0.247422,0.642765,0.863827,0.953891,0.30114,0.291848,0.744422,0.397235,0.429821,0.0758712,0.280823,0.280552,0.961411,0.745438,0.251779,0.900042,0.593723,0.233065,0.973119,0.0708184,0.146102,0.157721,0.398561,0.122772,0.699047,0.310006,0.41925,0.0705456,0.0400439,0.1601,0.767677,0.154442,0.734584,0.533888,0.107774,0.896384,0.888408,0.294283,0.208422,0.133888,0.612695,0.678964,0.637813,0.360627,0.502276,0.821412,0.851861,0.219538,0.543307,0.698141,0.497119,0.532658,0.0261596,0.248984,0.282748,0.0489055,0.697344,0.886131,0.937846,0.701495,0.242246,0.446497,0.109105,0.779876,0.0251498,0.697103,0.23239,0.831357,0.127042,0.195126,0.335085,0.157616,0.143729,0.292997,0.837709,0.382938,0.536309,0.904398,0.645464,0.538866,0.737597,0.627765,0.970724,0.40827,0.968814,0.854656,0.744128,0.779533,0.41411,0.124057,0.331829,0.187454,0.366082,0.174021,0.830477,0.842465,0.452964,0.763929,0.794842,0.503404,0.415591,0.168066,0.197277,0.0339825,0.904146,0.989993,0.500192,0.398036,0.801017,0.432842,0.063272,0.642171,0.148663,0.304988,0.0127585,0.52736,0.94274,0.930302,0.606935,0.804867,0.418039,0.756718,0.321798,0.844038,0.189066,0.537932,0.779575,0.203633,0.0315523,0.329216,0.385528,0.218186,0.885193,0.767864,0.341348,0.215752,0.289694,0.561489,0.540481,0.232631,0.00267678,0.492367,0.354749,0.620642,0.574403,0.931795,0.361748,0.80011,0.732343,0.641468,0.916638,0.686308,0.456946,0.0494447,0.384079,0.90405,0.595754,0.824097,0.252142,0.409074,0.415618,0.488872,0.556665,0.166664,0.424035,0.539478,0.78531,0.0308058,0.816997,0.856833,0.833656,0.763216,0.173502,0.940149,0.184063,0.183735,0.558263,0.116085,0.511247,0.0724199,0.463029,0.484177,0.49876,0.735577,0.662941,0.304223,0.384991,0.993509,0.0425429,0.429832,0.544076,0.449209,0.667589,0.848767,0.22702,0.264453,0.831381,0.54519,0.505448,0.0889821,0.986248,0.384476,0.141115,0.0349858,0.325608,0.489298,0.596588,0.00140184,0.3031,0.00713652,0.367053,0.274341,0.96864,0.442692,0.754573,0.765157,0.72503,0.56199,0.540081,0.749931,0.291366,0.174926,0.723326,0.11393,0.837415,0.699257,0.221484,0.376865,0.811151,0.233319,0.0423954,0.675889,0.399741,0.134496,0.841249,0.341753,0.215203,0.0687659,0.714743,0.590994,0.925224,0.747751,0.104154,0.0010438,0.208878,0.291134,0.864619,0.978169,0.335011,0.594355,0.917587,0.436639,0.481547,0.270645,0.36688,0.420789,0.042634,0.919174,0.760963,0.454833,0.854218,0.784807,0.0268624,0.745774,0.649223,0.621811,0.709377,0.818461,0.689421,0.422679,0.293298,0.314804,0.262789,0.669869,0.879948,0.963224,0.213579,0.598893,0.00466293,0.433349,0.376163,0.935831,0.41384,0.339406,0.28242,0.928067,0.962865,0.730962,0.211526,0.947315,0.841595,0.774098,0.0284708,0.750687,0.326948,0.783203,0.305924,0.0646345,0.67139,0.841779,0.643119,0.62665,0.163886,0.386328,0.30558,0.567227,0.779581,0.902732,0.257309,0.732705,0.234237,0.491988,0.393432,0.340583,0.486443,0.918712,0.720631,0.35029,0.395257,0.215897,0.123577,0.727522,0.335398,0.402635,0.331134,0.327872,0.54397,0.816276,0.815199,0.059946,0.886158,0.440659,0.183006,0.830227,0.37018,0.649725,0.125085,0.68336,0.0441073,0.324375,0.902093,0.57543,0.899135,0.00426346,0.442544,0.0912027,0.187041,0.544177,0.361283,0.971895,0.145436,0.114569,0.713603,0.772069,0.705766,0.755061,0.418258,0.0708563,0.139248,0.994758,0.551112,0.990127,0.947349,0.828597,0.314381,0.0322628,0.0461232,0.0905139,0.376838,0.709236,0.287965,0.813214,0.543516,0.256976,0.293224,0.137517,0.126584,0.751075,0.50802,0.753843,0.484808,0.771145,0.250561,0.765031,0.118059,0.902181,0.549979,0.912157,0.20101,0.382722,0.0057162,0.555719,0.502919,0.668914,0.851141,0.607725,0.241942,0.827852,0.590205,0.774962,0.498714,0.0715372,0.120535,0.919747,0.978538,0.71523,0.984744,0.0304651,0.0642641,0.13423,0.893529,0.236201,0.167202,0.353524,0.38718,0.210398,0.65075,0.918972,0.438343,0.603812,0.52005,0.990769,0.726141,0.136874,0.847309,0.694862,0.505014,0.940533,0.0290692,0.536118,0.405274,0.114448,0.308266,0.249108,0.150889,0.810736,0.149859,0.346531,0.299305,0.619572,0.140274,0.515658,0.110088,0.691588,0.72848,0.748092,0.932491,0.5153,0.177829,0.520348,0.610261,0.235101,0.877055,0.756865,0.881722,0.466936,0.962293,0.691436,0.711408,0.0679485,0.134439,0.71124,0.430638,0.131746,0.295045,0.264878,0.694143,0.990084,0.336394,0.175776,0.815893,0.941474,0.240593,0.346354,0.681173,0.386619,0.911318,0.573059,0.379317,0.484868,0.746407,0.373178,0.170442,0.306582,0.113534,0.786191,0.888588,0.179185,0.451275,0.862822,0.980406,0.547084,0.226404,0.118206,0.987311,0.90369,0.404708,0.558961,0.323693,0.684712,0.541124,0.760149,0.563621,0.13305,0.514309,0.0607892,0.0498394,0.636541,0.402504,0.00682658,0.620818,0.285457,0.833585,0.639397,0.789575,0.950445,0.854512,0.788937,0.947912,0.215333,0.466524,0.760781,0.962812,0.701842,0.762019,0.37925,0.0816596,0.0651463,0.08448,0.208239,0.480551,0.226634,0.753646,0.789327,0.0291018,0.473275,0.925084,0.335365,0.158062,0.995968,0.754209,0.659503,0.344818,0.0470749,0.111023,0.0837052,0.172025,0.812342,0.0678086,0.981005,0.436296,0.645251,0.282696,0.683932,0.722071,0.555724,0.837689,0.843892,0.413431,0.88353,0.543797,0.0148731,0.175234,0.449874,0.778845,0.208376,0.737939,0.0716216,0.126367,0.698303,0.555775,0.82542,0.0700998,0.543886,0.550726,0.483203,0.561374,0.145926,0.918213,0.0812806,0.178193,0.129433,0.539543,0.097877,0.477694,0.723749,0.327971,0.441343,0.506764,0.893371,0.71325,0.954178,0.727601,0.648176,0.588463,0.103739,0.339377,0.933966,0.32199,0.33336,0.789358,0.185631,0.278667,0.0139804,0.48808,0.164506,0.60602,0.813927,0.558034,0.167943,0.732514,0.349901,0.232053,0.470892,0.0541924,0.0976232,0.456481,0.546829,0.863873,0.32686,0.677959,0.39664,0.694424,|0.277453,0.846775,0.560987,0.692962,0.655951,0.230468,0.609909,0.979124,0.127047,0.368067,0.765589,0.514846,0.584589,0.554232,0.997249,0.655575,0.800155,0.0589195,0.52217,0.392765,0.898805,0.146647,0.895562,0.220073,0.612664,0.175512,0.918826,0.702796,0.881547,0.0340097,0.780691,0.987563,0.691543,0.683784,0.480317,0.773441,0.642673,0.444178,0.518243,0.179739,0.350559,0.108258,0.956059,0.376416,0.824365,0.602871,0.796689,0.864704,0.100923,0.921791,0.145492,0.521472,0.018273,0.404428,0.124169,0.110623,0.863885,0.212154,0.756559,0.982183,0.992318,0.0716315,0.771102,0.684507,0.618585,0.993147,0.983173,0.680743,0.0353606,0.553303,0.803008,0.583698,0.182459,0.750386,0.458126,0.933622,0.508331,0.920883,0.171101,0.823493,0.149241,0.548792,0.466204,0.943799,0.270235,0.687072,0.4801,0.929197,0.880354,0.0945405,0.573113,0.261292,0.981434,0.468198,0.614539,0.825798,0.866794,0.946466,0.218551,0.110161,0.683387,0.410172,0.328214,0.850202,0.384178,0.872385,0.582105,0.596029,0.601196,0.495546,0.758525,0.959861,0.426534,0.818715,0.528402,0.996221,0.656681,0.23207,0.680056,0.358455,0.139042,0.656378,0.906285,0.426437,0.193904,0.346225,0.0453058,0.585013,0.665121,0.782349,0.823849,0.12623,0.490029,0.4482,0.868272,0.919553,0.0366892,0.667277,0.371207,0.800792,0.871318,0.716311,0.417869,0.210856,0.543833,0.641838,0.940121,0.320626,0.125789,0.299002,0.951528,0.0952309,0.247076,0.788493,0.562752,0.0465075,0.845802,0.906959,0.894881,0.758845,0.912558,0.542967,0.906363,0.357296,0.939951,0.234356,0.140512,0.583774,0.874088,0.607824,0.836405,0.433421,0.65306,0.791937,0.789776,0.602814,0.128941,0.85047,0.989844,0.201252,0.38046,0.764648,0.472328,0.209392,0.918655,0.751839,0.339111,0.152006,0.942261,0.572291,0.252914,0.396987,0.151452,0.541441,0.816959,0.415672,0.972555,0.224158,0.316397,0.107973,0.26728,0.643007,0.557207,0.428624,0.754319,0.932341,0.290148,0.745742,0.61185,0.165285,0.993153,0.645528,0.259939,0.876999,0.733602,0.129194,0.62787,0.75029,0.0225626,0.278874,0.203263,0.70491,0.378116,0.211002,0.180005,0.726245,0.624435,0.155735,0.135081,0.552327,0.841573,0.62568,0.895799,0.906771,0.702705,0.796145,0.445325,0.767756,0.948856,0.312486,0.429164,0.246918,0.515389,0.806166,0.856692,0.482635,0.600706,0.415971,0.973791,0.137767,0.327505,0.00238442,0.579693,0.00482905,0.16612,0.0150459,0.368926,0.752344,0.269322,0.736969,0.406276,0.291982,0.837357,0.0652189,0.24443,0.739053,0.034565,0.28755,0.528568,0.262683,0.56999,0.656463,0.234558,0.796167,0.162809,0.521641,0.511527,0.803254,0.486725,0.0886275,0.997715,0.390694,0.976359,0.899457,0.632217,0.690454,0.640679,0.365159,0.61452,0.550974,0.971157,0.332932,0.748918,0.867233,0.844693,0.55515,0.117242,0.445591,0.800653,0.47801,0.429725,0.439563,0.660273,0.240383,0.540995,0.44942,0.880687,0.424848,0.510115,0.561206,0.480799,0.645236,0.782595,0.777793,0.230833,0.544654,0.190011,0.173876,0.0614284,0.399784,0.588798,0.301227,0.436681,0.386897,0.19839,0.815131,0.834024,0.414902,0.138934,0.367011,0.420066,0.163415,0.747971,0.315436,0.694446,0.619581,0.231489,0.671629,0.766046,0.149542,0.506813,0.546481,0.52838,0.129973,0.660656,0.613682,0.670579,0.258723,0.0743675,0.484981,0.0715419,0.896448,0.241385,0.684851,0.426636,0.98504,0.0551547,0.118337,0.794022,0.862745,0.65687,0.901695,0.382849,0.586615,0.568686,0.507279,0.0909035,0.889106,0.94849,0.241402,0.251974,0.835832,0.0139741,0.931637,0.542832,0.131468,0.0172476,0.89334,0.921088,0.0756613,0.903386,0.538465,0.698,0.784861,0.315555,0.875113,0.0279599,0.527273,0.145032,0.291274,0.849267,0.70772,0.249661,0.0860584,0.0473897,0.825268,0.891694,0.575555,0.950789,0.299441,0.842044,0.943922,0.182936,0.680433,0.428355,0.394087,0.203109,0.130612,0.751778,0.680605,0.0387029,0.065467,0.248243,0.437559,0.571902,0.608693,0.795474,0.258926,0.860613,0.173951,0.0418035,0.532567,0.856126,0.694908,0.543594,0.498116,0.272633,0.818856,0.909754,0.288979,0.0950755,0.696152,0.754754,0.761994,0.903822,0.190628,0.122186,0.455537,0.47448,0.917441,0.574208,0.149311,0.71729,0.675623,0.0300936,0.68228,0.542404,0.501254,0.716083,0.0615099,0.118007,0.741854,0.439674,0.609433,0.626981,0.285612,0.369545,0.0197154,0.433345,0.953879,0.371462,0.389528,0.660707,0.0814073,0.335106,0.36713,0.915921,0.0443756,0.403445,0.748415,0.745735,0.064027,0.542025,0.452632,0.967364,0.298429,0.964679,0.00148153,0.668021,0.778838,0.643245,0.383176,0.0270208,0.769292,0.645723,0.375329,0.239916,0.506779,0.295202,0.972567,0.686171,0.0513695,0.16502,0.064769,0.183373,0.0799674,0.667631,0.372488,0.683384,0.937967,0.232906,0.675901,0.33415,0.800332,0.39343,0.801836,0.961911,0.547432,0.126497,0.0818688,0.39962,0.787767,0.0257283,0.428902,0.766765,0.327515,0.985698,0.366815,0.187361,0.173679,0.593279,0.810553,0.907705,0.340545,0.23054,0.248946,0.138508,0.110015,0.0280464,0.314879,0.152425,0.194868,0.432602,0.786769,0.856611,0.276754,0.481988,0.791735,0.292235,0.585936,0.61398,0.908093,0.93271,0.0722141,0.900655,0.745149,0.389323,0.451215,0.359616,0.369425,0.0831535,0.92729,0.082184,0.0583239,0.585865,0.498959,0.139953,0.755349,0.773886,0.381726,0.770987,0.741606,0.0811913,0.673684,0.607662,0.192707,0.387182,0.143205,0.263976,0.176502,0.131562,0.697436,0.117748,0.833461,0.504063,0.683222,0.321055,0.225236,0.359177,0.139301,0.926866,0.0139804,0.224183,0.710165,0.683774,0.397966,0.747944,0.0158488,0.695391,0.225288,0.0804636,0.50174,0.843101,0.466555,0.674235,0.570735,0.652692,0.645686,0.945961,0.228672,0.628767,0.320731,0.854019,0.355719,0.563513,0.267426,0.96179,0.784258,0.994409,0.644695,0.219622,0.478825,0.228409,0.393009,0.193267,0.158685,0.219612,0.905669,0.854761,0.206551,0.549041,0.459182,0.0095951,0.952865,0.0973464,0.0288516,0.00308669,0.876303,0.740598,0.700889,0.695292,0.958859,0.818597,0.982981,0.708409,0.471341,0.0183954,0.441377,0.0790866,0.671331,0.713663,0.450814,0.521163,0.0919513,0.905115,0.266513,0.0280551,0.56426,0.714207,0.265547,0.388886,0.740131,0.0255547,0.489159,0.154236,0.207815,0.273776,0.827164,0.544736,0.616618,0.729543,0.0569955,0.982604,0.916565,0.0848055,0.434736,0.36123,0.904264,0.690749,0.0553648,0.522058,0.933427,0.653012,0.789269,0.156417,0.617634,0.0223248,0.161377,0.0841317,0.520873,0.315529,0.893232,0.0197811,0.262004,0.486678,0.517337,0.82624,0.430705,0.0494933,0.314925,0.745479,0.829657,0.638436,0.517951,0.248667,0.890132,0.639019,0.488768,0.0140819,0.831611,0.432565,0.29142,0.414474,0.561104,0.325489,0.780292,0.468406,0.425331,0.603947,0.255917,0.962641,0.25369,0.85738,0.78399,0.888666,0.570908,0.26171,0.287501,0.517966,0.411669,0.0938789,0.936647,0.458534,0.836622,0.289399,0.897803,0.10628,0.217268,0.643521,0.959215,0.745867,0.320245,0.301555,0.946672,0.343587,0.937757,0.237592,0.833391,0.908127,0.0658715,0.0736504,0.841971,0.306252,0.0412171,0.285384,0.944153,0.213633,0.41409,0.215988,0.161327,0.904583,0.140753,0.0152517,0.794556,0.642838,0.533473,0.539971,0.525913,0.760215,0.602675,0.324105,0.624057,0.629393,0.106707,0.928032,0.672227,0.884659,0.177024,0.955062,0.875065,0.829171,0.914266,0.648062,0.597207,0.578285,0.2799,0.698459,0.515024,0.741478,0.143176,0.0979447,0.980007,0.127228,0.96895,0.773707,0.214696,0.243894,0.814948,0.0030548,0.901598,0.0862076,0.234451,0.388968,0.774353,0.216588,0.98934,0.415574,0.895544,0.610773,0.320541,0.526707,0.705282,0.449837,0.136983,0.237918,0.444086,0.534905,0.93601,0.430879,0.815132,0.971231,0.411053,0.869766,0.907271,0.49743,0.649734,0.598262,0.384665,0.229443,0.262881,0.978358,0.945057,0.0792271,0.0734046,0.139195,0.0182573,0.332132,0.359565,0.283258,0.199779,0.339164,0.924915,0.516223,0.320604,0.203936,0.727513,0.181398,0.368792,0.800158,0.481561,0.155586,0.743147,0.988222,0.877622,0.674327,0.0770096,0.425088,0.0296274,0.588476,0.483881,0.249565,0.396586,0.562085,0.994816,0.646442,0.510314,0.657125,0.348925,0.425146,0.853485,0.734358,0.205994,0.479183,0.0417454,0.158567,0.759954,0.538056,0.636829,0.0909047,0.0145048,0.303814,0.595569,0.895677,0.0816665,0.191866,0.536939,0.0247,0.384829,0.562661,0.0695802,0.922308,0.710885,0.968657,0.397176,0.882841,0.00344878,0.0657291,0.970005,0.872464,0.293767,0.716376,0.953993,0.0588723,0.425582,0.0492744,0.292303,0.894101,0.551205,0.432956,0.323055,0.540291,0.403985,0.284125,0.0893037,0.818106,0.925078,0.812874,0.916468,0.242576,0.64064,0.922204,0.205877,0.164873,0.592053,0.930278,0.298194,0.924134,0.749782,0.566672,0.619926,0.827356,0.3792,0.429336,0.315798,0.82736,0.191316,0.196854,0.692494,0.91475,0.663188,0.939466,0.0758026,0.642531,0.654941,0.619771,0.255596,0.0912755,0.648991,0.791763,0.201248,0.405833,0.239811,0.811943,0.045925,0.47134,0.73291,0.677122,0.615488,0.923113,0.829183,0.302008,0.688419,0.28465,0.618009,0.965424,0.192154,0.624334,0.114457,0.905584,0.523543,0.976651,0.881351,0.50176,0.48809,0.479889,0.877966,0.090039,0.284508,0.0948021,0.192032,0.941673,0.685505,0.590699,0.0973043,0.0136291,0.526779,0.371066,0.453386,0.633299,0.83487,0.26578,0.684499,0.268499,0.741365,0.442425,0.857839,0.0768794,0.596188,0.399635,0.712542,0.215034,0.917086,0.982902,0.604574,0.10867,0.335948,0.338457,0.151847,0.668779,0.85952,|0.993067,0.661308,0.68416,0.097634,0.0932453,0.095341,0.26558,0.855291,0.894399,0.177786,0.323796,0.262835,0.527003,0.457418,0.0502636,0.41003,0.578385,0.979313,0.481244,0.809413,0.0716168,0.452806,0.0316759,0.0407156,0.464757,0.583686,0.616406,0.417647,0.864523,0.000882566,0.33219,0.757591,0.112653,0.377173,0.795937,0.102294,0.344111,0.686957,0.126129,0.226808,0.915519,0.649793,0.826238,0.694617,0.323428,0.656689,0.475373,0.80673,0.168296,0.264226,0.897705,0.937018,0.143428,0.00412184,0.811802,0.810162,0.100167,0.675138,0.857843,0.666666,0.478922,0.684541,0.0789385,0.0654507,0.45097,0.0438449,0.250016,0.445733,0.14389,0.147354,0.00760865,0.422929,0.903743,0.449785,0.234215,0.0267051,0.805542,0.122289,0.714018,0.81975,0.0172652,0.924543,0.911259,0.830929,0.245437,0.12158,0.0719841,0.728972,0.321005,0.76843,0.610743,0.0659332,0.624983,0.908149,0.721638,0.381771,0.331357,0.00714296,0.131358,0.0133341,0.134614,0.762712,0.0403415,0.311023,0.732046,0.961708,0.584061,0.326862,0.887739,0.779071,0.36971,0.132789,0.0504014,0.798299,0.691317,0.417576,0.0241995,0.31129,0.346657,0.577373,0.728893,0.899455,0.119137,0.435268,0.121998,0.681358,0.978369,0.694914,0.146231,0.612386,0.385081,0.251713,0.944813,0.508638,0.336161,0.227386,0.493499,0.691162,0.740411,0.395606,0.463224,0.263815,0.981694,0.358437,0.621772,0.742684,0.792006,0.393387,0.604785,0.849151,0.253563,0.334674,0.510015,0.477216,0.876275,0.194065,0.692919,0.657004,0.229292,0.115294,0.757701,0.364438,0.455265,0.258181,0.304993,0.13894,0.974235,0.425071,0.00120699,0.138457,0.893672,0.0651162,0.556017,0.803726,0.465164,0.480764,0.872122,0.677672,0.357659,0.493383,0.808935,0.716639,0.586121,0.474707,0.647407,0.138035,0.600584,0.260163,0.965444,0.513599,0.844897,0.274115,0.99672,0.71396,0.938696,0.397802,0.518898,0.368538,0.908108,0.186252,0.424921,0.955388,0.144691,0.0126858,0.837769,0.631086,0.221038,0.69678,0.976669,0.933773,0.0353397,0.642812,0.380728,0.807712,0.584082,0.266139,0.676722,0.327931,0.974434,0.721727,0.798297,0.742779,0.56342,0.418533,0.612159,0.909035,0.204226,0.688738,0.133783,0.575699,0.143988,0.632622,0.48767,0.530693,0.736864,0.427811,0.220201,0.75807,0.173433,0.759204,0.236605,0.50296,0.478575,0.451949,0.989512,0.432594,0.168251,0.541308,0.491906,0.482717,0.0540286,0.661698,0.855375,0.138881,0.498552,0.578089,0.480723,0.840655,0.382037,0.19215,0.516796,0.377773,0.00975025,0.50563,0.519429,0.446666,0.489325,0.796424,0.517477,0.682916,0.964484,0.369531,0.844958,0.771128,0.308679,0.550845,0.282135,0.126458,0.755929,0.716276,0.913781,0.764575,0.58751,0.986644,0.808011,0.480401,0.262247,0.341007,0.747831,0.757595,0.59972,0.420369,0.396517,0.379407,0.884867,0.0335702,0.0689542,0.110944,0.553881,0.144168,0.268203,0.210486,0.23861,0.253623,0.773872,0.786856,0.970039,0.508846,0.177602,0.448603,0.0847936,0.87834,0.894246,0.0195363,0.0115457,0.94359,0.103194,0.526288,0.0822362,0.133894,0.221801,0.468681,0.0282372,0.758682,0.0651159,0.931101,0.113012,0.189512,0.474632,0.492982,0.0997763,0.19876,0.903973,0.556588,0.599758,0.171546,0.371243,0.165931,0.292959,0.943203,0.277295,0.270648,0.945088,0.173888,0.967399,0.416143,0.0142258,0.1107,0.0237853,0.589151,0.596474,0.49828,0.856995,0.992928,0.599103,0.432485,0.374664,0.676673,0.343967,0.924378,0.935616,0.92712,0.230487,0.684397,0.344329,0.548465,0.714582,0.415383,0.863097,0.183503,0.940733,0.197136,0.4204,0.0660734,0.827821,0.894637,0.863262,0.344051,0.617946,0.617685,0.58126,0.644348,0.041787,0.404762,0.312717,0.0236754,0.763683,0.47227,0.730678,0.745936,0.960635,0.433751,0.716176,0.524784,0.910948,0.124398,0.371306,0.567331,0.0788952,0.87766,0.462087,0.8818,0.728175,0.916598,0.0793909,0.763645,0.00296807,0.52366,0.908046,0.00445777,0.969757,0.921119,0.353411,0.995425,0.553102,0.393903,0.731075,0.756062,0.152184,0.281381,0.836323,0.642638,0.997325,0.164368,0.643433,0.903088,0.156272,0.865717,0.654856,0.619948,0.804942,0.427688,0.78659,0.148546,0.391996,0.584566,0.614464,0.0823235,0.830018,0.362845,0.619644,0.203195,0.982142,0.0314312,0.900008,0.0856391,0.349381,0.953488,0.341341,0.158257,0.0888116,0.175772,0.0414997,0.594606,0.831448,0.614868,0.624158,0.111641,0.374898,0.795983,0.81599,0.769493,0.30003,0.62775,0.413843,0.0203754,0.373703,0.0683733,0.577038,0.708736,0.882115,0.856737,0.510277,0.238492,0.292824,0.118944,0.301181,0.29056,0.496999,0.734876,0.44258,0.269543,0.539007,0.936193,0.616876,0.213033,0.24916,0.456563,0.368959,0.642454,0.247992,0.0647811,0.358023,0.553309,0.159679,0.0848886,0.917422,0.517084,0.160527,0.72036,0.385771,0.491773,0.21937,0.203532,0.463199,0.492245,0.203822,0.96428,0.683851,0.23823,0.564839,0.99579,0.318958,0.801677,0.210712,0.156473,0.668471,0.102471,0.981826,0.558782,0.643619,0.348409,0.681094,0.362196,0.403239,0.00260609,0.588523,0.252252,0.944216,0.316672,0.251082,0.0411177,0.96213,0.0558436,0.0324818,0.93245,0.235734,0.119692,0.558714,0.0945754,0.524058,0.829422,0.316364,0.240688,0.589573,0.423223,0.850607,0.616603,0.734435,0.790645,0.751025,0.484628,0.459028,0.310285,0.786802,0.248306,0.403127,0.315252,0.747005,0.595292,0.856535,0.256425,0.703174,0.52902,0.824199,0.916145,0.913753,0.90977,0.796642,0.572295,0.736084,0.798405,0.786845,0.818297,0.134464,0.316623,0.393867,0.958345,0.345032,0.212742,0.338542,0.518989,0.343366,0.776745,0.570681,0.935547,0.68793,0.885545,0.48135,0.110667,0.38126,0.381404,0.888741,0.835118,0.0618385,0.625994,0.913518,0.768363,0.484022,0.523504,0.614986,0.0709472,0.262589,0.262804,0.0796783,0.521731,0.809162,0.0465069,0.612888,0.0870081,0.438657,0.492716,0.363858,0.420559,0.221164,0.361656,0.141177,0.898898,0.017548,0.450933,0.152297,0.459071,0.767342,0.456222,0.404774,0.762525,0.709354,0.30757,0.630354,0.252157,0.499316,0.48248,0.306082,0.605464,0.737578,0.233701,0.0974003,0.205824,0.631613,0.537637,0.508575,0.871231,0.483998,0.244152,0.219652,0.763056,0.111636,0.430937,0.682912,0.479365,0.387235,0.776798,0.726754,0.605482,0.155315,0.212103,0.466192,0.683043,0.212267,0.950091,0.332824,0.53863,0.0476411,0.0391746,0.242682,0.94841,0.457669,0.25587,0.752683,0.183647,0.385251,0.868846,0.651626,0.511032,0.247132,0.975491,0.0037064,0.600477,0.686435,0.309226,0.0707082,0.119725,0.902386,0.553813,0.810098,0.379283,0.913091,0.406977,0.0153522,0.856515,0.229518,0.778533,0.929681,0.029296,0.545848,0.271201,0.0562413,0.454295,0.26053,0.355412,0.310786,0.681916,0.0905865,0.47475,0.160849,0.45052,0.866508,0.131067,0.836492,0.614391,0.658991,0.0986966,0.917789,0.469435,0.932315,0.935935,0.932534,0.501424,0.0372283,0.83708,0.0787034,0.350028,0.158559,0.168677,0.834114,0.570769,0.482797,0.766995,0.708398,0.325287,0.27244,0.38637,0.333825,0.0664593,0.233521,0.0288832,0.652734,0.733549,0.700339,0.506648,0.842176,0.404955,0.168971,0.602221,0.354804,0.914465,0.901618,0.069508,0.907241,0.447717,0.773444,0.887818,0.151015,0.908856,0.313953,0.685159,0.225748,0.273929,0.351018,0.720814,0.608054,0.803369,0.567792,0.665672,0.0755185,0.0657972,0.709864,0.00023526,0.460774,0.771811,0.335125,0.327161,0.307711,0.514066,0.162692,0.060298,0.465646,0.550628,0.864793,0.176517,0.543157,0.966165,0.275735,0.0901186,0.369127,0.974111,0.205126,0.99022,0.757414,0.471915,0.163704,0.627104,0.324996,0.162067,0.074313,0.890258,0.175365,0.387561,0.878733,0.274722,0.916011,0.835407,0.0440796,0.709167,0.954581,0.250556,0.0297709,0.658368,0.146041,0.300974,0.106426,0.396972,0.223323,0.423418,0.0916854,0.0298784,0.270212,0.345607,0.709655,0.0927645,0.566233,0.410017,0.221569,0.761824,0.632061,0.41564,0.204091,0.110817,0.134496,0.343827,0.447359,0.126022,0.465784,0.0978863,0.354606,0.432498,0.618072,0.784295,0.814124,0.711159,0.489936,0.699219,0.769635,0.844685,0.75216,0.523971,0.757741,0.832257,0.206876,0.56813,0.0173019,0.663213,0.529906,0.871622,0.867562,0.184065,0.806028,0.634772,0.604921,0.823942,0.707831,0.820005,0.474413,0.461014,0.961831,0.578343,0.509363,0.974159,0.354268,0.549933,0.43622,0.725119,0.356849,0.199997,0.583409,0.638589,0.615345,0.876429,0.0838603,0.267421,0.96148,0.213067,0.786263,0.941006,0.0252432,0.921452,0.462441,0.955498,0.00494039,0.119746,0.622543,0.283448,0.545386,0.133218,0.71527,0.021652,0.617416,0.376536,0.0361233,0.677968,0.665036,0.394014,0.70803,0.0893766,0.926608,0.871608,0.171792,0.0502886,0.154738,0.367797,0.420404,0.313442,0.143801,0.425497,0.273898,0.352235,0.444924,0.994238,0.284478,0.866094,0.384086,0.512914,0.837867,0.881666,0.986812,0.945068,0.145218,0.721009,0.498091,0.576005,0.859435,0.472797,0.291571,0.020872,0.383377,0.4368,0.059686,0.401482,0.473019,0.239061,0.0745749,0.860908,0.549575,0.850386,0.0791802,0.881984,0.706183,0.869338,0.839317,0.167978,0.0441403,0.914174,0.30807,0.444571,0.421297,0.0895432,0.94205,0.761527,0.865211,0.498434,0.49106,0.212222,0.864156,0.493171,0.0779746,0.404092,0.661325,0.13512,0.789022,0.129215,0.776076,0.530114,0.874179,0.0302095,0.489522,0.671594,0.0771289,0.628893,0.615943,0.71503,0.659907,0.406953,0.297075,0.596169,0.153307,0.747935,0.882472,0.995092,0.18998,0.713676,0.714486,0.71464,0.534746,0.73529,0.587072,0.382149,0.723268,0.4348,0.662899,0.245378,|0.577187,0.764803,0.396244,0.640729,0.00193441,0.785584,0.40865,0.777217,0.437216,0.0981712,0.785228,0.285304,0.775719,0.615078,0.717642,0.0852908,0.333506,0.837435,0.686815,0.630554,0.622095,0.589137,0.382572,0.769781,0.880137,0.814927,0.604092,0.134028,0.405948,0.692302,0.671038,0.497371,0.921546,0.147262,0.0479512,0.65257,0.344761,0.400731,0.65535,0.95579,0.377557,0.69244,0.169546,0.558664,0.176707,0.557318,0.499588,0.506001,0.0293944,0.974951,0.658577,0.00674647,0.524508,0.399106,0.782862,0.019437,0.781353,0.43834,0.863789,0.0173439,0.671742,0.663856,0.387341,0.572716,0.0426836,0.827371,0.779234,0.962666,0.195188,0.710684,0.194686,0.790073,0.97744,0.490736,0.0372734,0.499478,0.823271,0.529657,0.446878,0.239281,0.245374,0.592005,0.138453,0.0334529,0.402755,0.910056,0.952165,0.0410882,0.898488,0.083555,0.426032,0.456325,0.782674,0.660502,0.676248,0.579524,0.202836,0.416857,0.128157,0.612686,0.594578,0.44041,0.316763,0.826923,0.461475,0.49676,0.414496,0.60905,0.686904,0.52098,0.51162,0.47971,0.631503,0.93444,0.114337,0.933381,0.687823,0.327942,0.890316,0.129759,0.206268,0.147965,0.679948,0.836313,0.913745,0.892096,0.202442,0.269461,0.138905,0.104549,0.11146,0.956901,0.330017,0.499429,0.234778,0.662108,0.942865,0.447837,0.124687,0.29515,0.360539,0.71673,0.150446,0.521459,0.712019,0.635668,0.0269869,0.970965,0.883278,0.48338,0.592373,0.985752,0.0695971,0.871229,0.468738,0.353401,0.842265,0.818917,0.377494,0.253151,0.00265801,0.123959,0.928991,0.870373,0.792919,0.694739,0.0702169,0.480465,0.104675,0.422779,0.110656,0.186071,0.228347,0.0123954,0.3971,0.525397,0.152606,0.561312,0.427637,0.712888,0.435942,0.0319219,0.971611,0.159884,0.788155,0.912889,0.664027,0.272055,0.30126,0.564477,0.316628,0.316732,0.99293,0.825053,0.740403,0.0171057,0.578835,0.784279,0.762092,0.499708,0.652215,0.393261,0.661042,0.429481,0.0130466,0.224677,0.479947,0.337891,0.931046,0.126015,0.728058,0.228889,0.197445,0.0746898,0.439789,0.105482,0.325283,0.892342,0.092564,0.360567,0.00784808,0.151231,0.983707,0.961221,0.0333864,0.280431,0.564141,0.401694,0.599209,0.208453,0.169757,0.621199,0.311061,0.479435,0.433245,0.693005,0.271266,0.259642,0.891222,0.0435702,0.301494,0.391283,0.880087,0.426029,0.858974,0.415307,0.0480168,0.728241,0.43135,0.277757,0.0204286,0.0506859,0.0853713,0.898904,0.505971,0.0983407,0.00505805,0.877074,0.517456,0.992127,0.974067,0.460626,0.723432,0.242461,0.386263,0.486906,0.707051,0.281794,0.942222,0.518911,0.930967,0.676212,0.417349,0.874696,0.763277,0.224912,0.783264,0.822755,0.756395,0.261091,0.553476,0.739515,0.27388,0.979792,0.725921,0.0233084,0.74775,0.743271,0.777569,0.70928,0.225105,0.896665,0.335672,0.0818592,0.583283,0.108284,0.934692,0.915316,0.830064,0.310977,0.0979742,0.45504,0.381132,0.940217,0.951075,0.300996,0.242557,0.457873,0.433312,0.826756,0.323089,0.275159,0.932981,0.0122217,0.17031,0.367104,0.916402,0.491454,0.0861605,0.244448,0.672787,0.509592,0.0804921,0.497297,0.581572,0.302866,0.44801,0.0509235,0.205101,0.864032,0.219387,0.649229,0.482221,0.0413759,0.520812,0.860147,0.0577275,0.85953,0.455221,0.190588,0.836768,0.0686551,0.789161,0.883303,0.753429,0.881492,0.14085,0.249809,0.321399,0.47824,0.5152,0.175993,0.62037,0.136769,0.845264,0.648172,0.443547,0.390591,0.710879,0.52849,0.241846,0.738441,0.506236,0.624804,0.943951,0.426633,0.877639,0.818923,0.132062,0.460717,0.276977,0.570613,0.634768,0.899489,0.250851,0.302814,0.828097,0.92914,0.708857,0.59865,0.732073,0.165207,0.515483,0.861628,0.00850588,0.232749,0.945766,0.391709,0.152331,0.69086,0.37368,0.562989,0.53973,0.533777,0.505064,0.288681,0.0392734,0.916769,0.774229,0.403154,0.796751,0.964309,0.110362,0.479384,0.252082,0.210994,0.761015,0.926219,0.945198,0.172015,0.193139,0.230171,0.705308,0.450389,0.746898,0.765547,0.87259,0.647772,0.914594,0.0911616,0.119661,0.563054,0.626451,0.705027,0.659147,0.66116,0.601602,0.318121,0.0423007,0.0777811,0.251459,0.323525,0.667895,0.825469,0.853648,0.973834,0.288925,0.556447,0.450193,0.963042,0.91789,0.242817,0.277033,0.0373597,0.545252,0.393817,0.260772,0.315733,0.92726,0.266186,0.665181,0.605501,0.125887,0.152764,0.460128,0.061436,0.992111,0.866062,0.70394,0.66143,0.0565485,0.568772,0.338465,0.588623,0.0476667,0.105546,0.630475,0.179077,0.843367,0.846884,0.922062,0.667295,0.36866,0.0547327,0.41917,0.629844,0.210295,0.553947,0.866553,0.432716,0.80508,0.559351,0.345518,0.398985,0.392291,0.720222,0.651137,0.345725,0.822236,0.413529,0.558474,0.221481,0.471422,0.166321,0.203438,0.0225607,0.777809,0.823217,0.683038,0.830473,0.797579,0.351737,0.581833,0.210007,0.634545,0.601639,0.392297,0.23044,0.964689,0.726764,0.270613,0.882212,0.459983,0.86797,0.33453,0.517962,0.0880554,0.536862,0.980959,0.020948,0.770719,0.996706,0.907935,0.855103,0.501357,0.731904,0.342379,0.541439,0.964352,0.683558,0.435023,0.477045,0.901038,0.638909,0.862665,0.165635,0.789355,0.436493,0.642611,0.523222,0.231384,0.234033,0.692278,0.111616,0.95753,0.520182,0.142991,0.592949,0.908567,0.548071,0.876844,0.654346,0.523152,0.139341,0.650268,0.729867,0.294541,0.519333,0.249607,0.792413,0.802076,0.386527,0.488151,0.902876,0.079528,0.532243,0.922495,0.972598,0.186612,0.502148,0.753082,0.225332,0.762609,0.365609,0.485063,0.198498,0.401102,0.167899,0.861495,0.766153,0.758048,0.256825,0.318467,0.226168,0.976031,0.466668,0.424068,0.103086,0.210998,0.715854,0.172083,0.447012,0.559423,0.693803,0.512782,0.321464,0.429226,0.857177,0.67378,0.60225,0.742303,0.955118,0.536782,0.0318399,0.0954791,0.298575,0.665253,0.471486,0.195951,0.120958,0.458467,0.576414,0.375583,0.901954,0.69602,0.863488,0.876889,0.138098,0.250523,0.205936,0.15087,0.914512,0.683001,0.793129,0.418459,0.765937,0.746024,0.55013,0.211166,0.0271257,0.46246,0.944138,0.0467342,0.926494,0.778763,0.11139,0.228041,0.869021,0.946738,0.942542,0.31636,0.880404,0.891165,0.414413,0.957976,0.0356573,0.797067,0.605705,0.814672,0.708589,0.486353,0.259663,0.610683,0.956531,0.479879,0.0295746,0.688311,0.894558,0.417446,0.655662,0.807691,0.72612,0.805799,0.0441056,0.584987,0.382726,0.48297,0.933983,0.659915,0.580422,0.565212,0.0840906,0.997249,0.708288,0.818261,0.774943,0.10608,0.499761,0.154,0.117866,0.761687,0.103117,0.795301,0.950085,0.35329,0.843798,0.716503,0.49327,0.283867,0.768764,0.573282,0.760898,0.031311,0.411602,0.370073,0.477862,0.0627223,0.0612707,0.734717,0.571634,0.759218,0.166237,0.0299444,0.279155,0.878446,0.0702929,0.907679,0.305846,0.279019,0.356521,0.491804,0.484805,0.318846,0.495984,0.756347,0.821184,0.503743,0.420787,0.586415,0.936323,0.784254,0.812824,0.823709,0.509571,0.586005,0.358282,0.482133,0.599904,0.640876,0.902552,0.543957,0.111162,0.267109,0.0807058,0.591221,0.564016,0.330587,0.510997,0.82809,0.857541,0.11742,0.0408727,0.626631,0.238248,0.0476094,0.622132,0.998592,0.456927,0.441079,0.441347,0.755509,0.52564,0.852907,0.615136,0.689581,0.894858,0.605518,0.69236,0.320664,0.494796,0.564799,0.0749385,0.413062,0.629365,0.367327,0.680927,0.0567348,0.308424,0.535271,0.968846,0.910161,0.249503,0.476694,0.145174,0.648571,0.193747,0.845416,0.127233,0.305034,0.60631,0.552395,0.150141,0.194899,0.69057,0.903859,0.178123,0.786633,0.216621,0.727985,0.308138,0.547339,0.881652,0.440087,0.642053,0.664155,0.0113167,0.562756,0.693027,0.946687,0.41786,0.624,0.0291851,0.141901,0.964051,0.289509,0.194488,0.347967,0.818522,0.102459,0.685592,0.256334,0.449481,0.0926659,0.574891,0.030502,0.110056,0.147287,0.105108,0.666765,0.120762,0.906085,0.00745636,0.630124,0.817034,0.376967,0.799448,0.0691333,0.142057,0.179988,0.0373484,0.778018,0.309332,0.496341,0.450772,0.992166,0.210414,0.0973461,0.319852,0.854129,0.540309,0.436649,0.516471,0.477745,0.066778,0.975546,0.282737,0.700657,0.971263,0.311287,0.73289,0.0866908,0.237922,0.296227,0.156144,0.820622,0.470478,0.771649,0.47295,0.286526,0.942735,0.767468,0.38786,0.0376755,0.0363187,0.701861,0.922036,0.137516,0.0456576,0.914269,0.797574,0.813155,0.0629018,0.191843,0.755245,0.219109,0.225291,0.232322,0.433733,0.299973,0.782799,0.710549,0.8117,0.911388,0.122414,0.348361,0.482566,0.677751,0.51152,0.724898,0.518392,0.872945,0.347789,0.321209,0.918517,0.864011,0.16636,0.287536,0.282743,0.389422,0.304091,0.267988,0.593333,0.145359,0.77734,0.842923,0.0147605,0.648177,0.194418,0.784828,0.606912,0.547827,0.191768,0.198916,0.887488,0.482558,0.806074,0.650018,0.481825,0.799315,0.85658,0.703012,0.317056,0.376828,0.422666,0.839551,0.283993,0.532928,0.105966,0.0551605,0.319104,0.0255283,0.148781,0.319338,0.338269,0.787224,0.825031,0.878017,0.97919,0.635703,0.417384,0.456584,0.415191,0.367764,0.518432,0.983161,0.936119,0.241006,0.360678,0.78103,0.888896,0.657666,0.0393087,0.391076,0.586172,0.686198,0.989844,0.983105,0.349406,0.555411,0.533062,0.519336,0.239183,0.496838,0.803468,0.849743,0.602913,0.601431,0.170344,0.014482,0.614375,0.173394,0.762006,0.269765,0.551172,0.546892,0.0931256,0.650432,0.865342,0.873194,0.668939,0.0887288,0.165975,0.741576,0.762953,0.852337,0.766877,0.777608,0.391698,0.551021,0.0182344,0.244892,0.17963,0.405531,0.257077,0.0312098,0.826417,0.53997,0.71202,0.68377,0.554324,|0.443651,0.84815,0.361646,0.490869,0.0688366,0.446806,0.868571,0.348307,0.0967645,0.0539834,0.532799,0.868159,0.872783,0.36136,0.598405,0.968247,0.813729,0.212065,0.406865,0.680532,0.0586482,0.240451,0.934011,0.981644,0.819256,0.829691,0.376621,0.894436,0.497124,0.0541893,0.375213,0.660192,0.518179,0.654996,0.0498607,0.948138,0.391612,0.793375,0.422768,0.451155,0.676572,0.515748,0.451353,0.331205,0.935301,0.179985,0.800023,0.534877,0.629631,0.193253,0.687796,0.986496,0.974412,0.145007,0.333197,0.850294,0.122144,0.502584,0.733985,0.899623,0.577015,0.889961,0.710985,0.347936,0.348233,0.205765,0.940624,0.546286,0.641587,0.962637,0.609244,0.712911,0.543059,0.467024,0.34611,0.61073,0.155984,0.555027,0.226069,0.216806,0.696355,0.697475,0.57761,0.240969,0.0174004,0.377852,0.508019,0.89109,0.222908,0.517699,0.513081,0.697595,0.605368,0.866256,0.32785,0.950325,0.966564,0.329871,0.77979,0.0536941,0.0815096,0.736087,0.702166,0.579504,0.753888,0.000370085,0.213182,0.0668427,0.588778,0.238821,0.497689,0.107378,0.981493,0.184799,0.269166,0.363676,0.2074,0.132634,0.669928,0.567624,0.965052,0.735371,0.574906,0.721195,0.0349627,0.034928,0.59128,0.433969,0.910416,0.719248,0.389216,0.561716,0.773939,0.160366,0.296555,0.502563,0.734652,0.600743,0.964607,0.57448,0.293621,0.716281,0.0660349,0.720897,0.291234,0.677495,0.15776,0.970375,0.74939,0.906521,0.00732654,0.763443,0.176674,0.891117,0.382855,0.737195,0.0238765,0.971454,0.778709,0.538866,0.716978,0.198871,0.809406,0.362876,0.961981,0.229954,0.604221,0.615658,0.336995,0.367635,0.0333458,0.117156,0.401394,0.925593,0.886707,0.870575,0.594054,0.730219,0.452454,0.137885,0.582053,0.224883,0.468501,0.574305,0.601651,0.594029,0.171483,0.3951,0.923883,0.350797,0.228958,0.34807,0.424559,0.456449,0.616817,0.308949,0.909409,0.0558785,0.649048,0.743362,0.957658,0.742501,0.115121,0.264811,0.426193,0.754138,0.0756898,0.353178,0.135793,0.630893,0.224841,0.845664,0.79292,0.104278,0.649639,0.933357,0.648109,0.257446,0.0917,0.538936,0.131574,0.891906,0.290525,0.462843,0.119572,0.475336,0.829772,0.623535,0.287893,0.943687,0.144129,0.342067,0.150172,0.201425,0.185765,0.768477,0.461794,0.197313,0.87923,0.0333476,0.500772,0.535205,0.84608,0.929788,0.950212,0.943187,0.746563,0.244772,0.212914,0.648299,0.611946,0.367568,0.171554,0.464994,0.948442,0.0905693,0.613404,0.523448,0.918895,0.164425,0.429892,0.542068,0.30556,0.484314,0.821221,0.898136,0.527365,0.325123,0.814814,0.808798,0.892388,0.108506,0.581314,0.887236,0.711097,0.467286,0.0514596,0.0483562,0.697289,0.453502,0.317342,0.0613133,0.430709,0.176561,0.29025,0.481398,0.822498,0.891221,0.688428,0.767768,0.911784,0.635448,0.569414,0.901487,0.639294,0.47658,0.433821,0.806059,0.327069,0.449174,0.69559,0.483664,0.348264,0.563756,0.00610685,0.598312,0.0275223,0.975646,0.587197,0.15863,0.608922,0.0949845,0.245885,0.580032,0.348662,0.977556,0.982187,0.0926491,0.460949,0.361658,0.481409,0.709552,0.116294,0.2891,0.157033,0.944164,0.890435,0.785386,0.428849,0.381698,0.493072,0.482508,0.946451,0.469208,0.793064,0.656605,0.88649,0.345765,0.406398,0.668709,0.437107,0.129128,0.585332,0.345978,0.387019,0.714597,0.764803,0.482883,0.649553,0.525185,0.888249,0.736033,0.979689,0.594919,0.39479,0.360243,0.107409,0.559382,0.473373,0.936189,0.808077,0.480449,0.753034,0.429367,0.209567,0.110854,0.978204,0.0378664,0.0229822,0.559398,0.854739,0.240859,0.84634,0.201839,0.0557781,0.22307,0.697318,0.762782,0.355052,0.178202,0.11927,0.897896,0.0928694,0.317613,0.939406,0.995488,0.114274,0.98524,0.00119889,0.49131,0.210531,0.393636,0.376861,0.103348,0.771681,0.104152,0.765991,0.620654,0.00642872,0.983724,0.0379951,0.564378,0.348752,0.9135,0.684331,0.362205,0.59707,0.575218,0.521154,0.561465,0.369667,0.363704,0.395936,0.220014,0.0311487,0.0920573,0.17005,0.319131,0.926765,0.706637,0.261595,0.163488,0.786882,0.12499,0.897325,0.375943,0.183361,0.0143377,0.433956,0.467359,0.769181,0.0762545,0.146293,0.79395,0.352811,0.0343646,0.432813,0.443231,0.482305,0.456316,0.376291,0.869026,0.727471,0.359985,0.415875,0.302284,0.862506,0.764829,0.648881,0.51636,0.646447,0.788123,0.60334,0.822661,0.308002,0.53976,0.24979,0.326622,0.910913,0.732404,0.353337,0.359069,0.73496,0.835845,0.275581,0.520291,0.760355,0.0802987,0.455953,0.791106,0.333964,0.256694,0.641188,0.544049,0.419059,0.886047,0.803007,0.786497,0.363189,0.126059,0.107632,0.561773,0.215177,0.993586,0.920035,0.669773,0.0888901,0.403035,0.650056,0.00624156,0.0413902,0.379913,0.848987,0.260214,0.233737,0.661197,0.657505,0.476902,0.500552,0.477465,0.53789,0.706893,0.95335,0.732481,0.749515,0.667892,0.0363196,0.385238,0.718609,0.878808,0.346942,0.53697,0.935342,0.357941,0.241282,0.0420826,0.13453,0.796999,0.165505,0.665935,0.663154,0.441746,0.824445,0.628271,0.969751,0.0188559,0.368915,0.979785,0.704903,0.420796,0.174212,0.926306,0.323486,0.827141,0.935396,0.113431,0.895567,0.0883292,0.571205,0.882976,0.271419,0.46316,0.871232,0.191536,0.706204,0.907176,0.827414,0.0171894,0.633385,0.326825,0.620109,0.00845468,0.592049,0.759596,0.81622,0.664276,0.758412,0.944322,0.545218,0.827644,0.487828,0.680521,0.393234,0.178424,0.758326,0.551848,0.348591,0.600247,0.565015,0.27706,0.126782,0.210039,0.712012,0.893742,0.728533,0.51708,0.515297,0.884817,0.603938,0.900196,0.728251,0.719689,0.720683,0.965741,0.903552,0.239465,0.725237,0.996733,0.991322,0.161023,0.708994,0.29666,0.525571,0.0898967,0.138252,0.105512,0.0208685,0.284539,0.248837,0.625855,0.953354,0.258956,0.347287,0.556308,0.744168,0.0735427,0.43423,0.430333,0.584699,0.254353,0.722356,0.127271,0.0649545,0.423554,0.27376,0.843978,0.770731,0.264635,0.702773,0.662733,0.728221,0.0394327,0.831915,0.308305,0.32784,0.0419661,0.931649,0.789219,0.30071,0.768283,0.566553,0.830057,0.0395071,0.959642,0.439,0.28347,0.546455,0.924428,0.363485,0.805204,0.00185484,0.67395,0.347858,0.950786,0.870325,0.809746,0.992003,0.260799,0.181041,0.387324,0.209187,0.0119327,0.349304,0.438168,0.767773,0.392149,0.696054,0.217772,0.0406929,0.36861,0.73446,0.422728,0.00880873,0.957723,0.555354,0.559912,0.551737,0.441006,0.927199,0.955725,0.725241,0.581443,0.556625,0.271476,0.235734,0.576624,0.727927,0.409862,0.403051,0.518432,0.421581,0.0863724,0.506466,0.742934,0.111235,0.150091,0.494942,0.286092,0.303155,0.685543,0.610442,0.538782,0.569416,0.22318,0.601127,0.334521,0.669005,0.322545,0.704389,0.325516,0.718289,0.134336,0.362962,0.0932149,0.414993,0.0105286,0.806385,0.882524,0.444012,0.595438,0.75543,0.0216815,0.708625,0.963029,0.169384,0.231134,0.660296,0.475373,0.800691,0.0315126,0.520372,0.518469,0.889545,0.205577,0.678279,0.200588,0.973189,0.525006,0.216417,0.273327,0.755706,0.829353,0.734267,0.361413,0.607178,0.707016,0.202207,0.383516,0.417738,0.647762,0.566039,0.500129,0.199361,0.26861,0.253238,0.848618,0.341536,0.0993975,0.0216818,0.246938,0.897567,0.875477,0.330144,0.320162,0.477299,0.607377,0.911447,0.142941,0.333387,0.125483,0.943304,0.18221,0.950257,0.795559,0.66884,0.77697,0.0797992,0.740922,0.870288,0.944468,0.381587,0.547798,0.512764,0.58585,0.292638,0.134893,0.0147895,0.0269154,0.887855,0.931438,0.786962,0.901306,0.919144,0.943497,0.89082,0.802755,0.968267,0.426198,0.0850386,0.334256,0.516765,0.884897,0.676708,0.665229,0.487428,0.299375,0.98565,0.728818,0.217233,0.394558,0.501067,0.667134,0.154836,0.202068,0.972735,0.529046,0.307836,0.193514,0.735411,0.363948,0.0542496,0.952997,0.608208,0.644332,0.178445,0.8213,0.425185,0.0740266,0.353944,0.646612,0.0761951,0.973296,0.749227,0.747996,0.241214,0.914579,0.376664,0.530367,0.965981,0.164194,0.145178,0.409183,0.158231,0.216915,0.38734,0.0543047,0.144061,0.368995,0.234108,0.739641,0.313936,0.579894,0.849905,0.672358,0.648231,0.36532,0.688436,0.29919,0.624839,0.276615,0.192669,0.138869,0.329091,0.637022,0.309983,0.241088,0.0550128,0.122357,0.904511,0.795248,0.328906,0.43226,0.515946,0.47924,0.176219,0.683311,0.424786,0.798624,0.157464,0.0421574,0.952923,0.502188,0.895697,0.92741,0.262365,0.55644,0.841286,0.222812,0.816811,0.962861,0.19658,0.74458,0.120429,0.570403,0.2585,0.981101,0.886769,0.46539,0.562652,0.0220029,0.914545,0.809587,0.620458,0.895759,0.209981,0.662203,0.30536,0.401938,0.739417,0.122668,0.0932536,0.913354,0.3678,0.734781,0.273232,0.978452,0.984777,0.77627,0.857746,0.308903,0.771384,0.64615,0.691293,0.413408,0.836116,0.313655,0.092691,0.080483,0.299124,0.325116,0.365099,0.768637,0.834333,0.452069,0.171737,0.171066,0.118916,0.237502,0.293159,0.829166,0.390754,0.773842,0.0379812,0.194288,0.100439,0.420385,0.791982,0.775834,0.463874,0.288693,0.794591,0.943753,0.339266,0.7156,0.341312,0.657384,0.193637,0.750321,0.575,0.418777,0.572494,0.0734597,0.582316,0.662191,0.657809,0.838062,0.716604,0.287691,0.68726,0.549467,0.533309,0.654828,0.0409952,0.875681,0.600502,0.436464,0.816773,0.177658,0.963587,0.833364,0.0507118,0.0351102,0.715724,0.370398,0.077087,0.871195,0.751899,0.474273,0.668085,0.89545,0.96342,0.445905,0.679375,0.0165939,0.380896,0.160173,0.865958,0.60682,0.801776,0.0634553,0.545477,0.395557,0.658394,0.7267,0.895557,0.214847,0.219472,0.34066,0.284504,0.346833,|0.834694,0.282287,0.324345,0.583864,0.877102,0.458253,0.735123,0.398752,0.821756,0.657086,0.25568,0.453247,0.841383,0.455887,0.014617,0.597647,0.6932,0.519113,0.597564,0.309043,0.264666,0.384235,0.551149,0.0581979,0.740308,0.38714,0.250982,0.785098,0.647892,0.227716,0.758385,0.248821,0.472145,0.0717741,0.478009,0.834231,0.742554,0.0608697,0.842484,0.640743,0.309894,0.618778,0.398837,0.0653409,0.553913,0.853987,0.123533,0.378579,0.222635,0.337553,0.982021,0.0570757,0.951141,0.353004,0.655655,0.0314555,0.106881,0.536858,0.525125,0.16649,0.225529,0.345562,0.85976,0.858821,0.456852,0.576586,0.426617,0.271456,0.447266,0.645169,0.671425,0.980208,0.747237,0.370497,0.796473,0.595288,0.289227,0.775079,0.280765,0.915867,0.64432,0.585374,0.0736638,0.51226,0.282534,0.785354,0.571867,0.607771,0.975095,0.127461,0.0981779,0.905589,0.593262,0.575766,0.366985,0.723162,0.912594,0.733302,0.874853,0.935023,0.237558,0.776569,0.298392,0.83058,0.0230346,0.874195,0.846952,0.595291,0.603111,0.151601,0.812554,0.455546,0.329338,0.709676,0.409846,0.744681,0.200038,0.704798,0.0920232,0.501323,0.315723,0.419364,0.770704,0.00595123,0.996478,0.805531,0.404999,0.697832,0.494685,0.837643,0.902098,0.596625,0.153654,0.923896,0.331868,0.0281962,0.790788,0.175114,0.428116,0.736945,0.240099,0.208001,0.635241,0.0714829,0.544551,0.152979,0.0264296,0.991593,0.217146,0.834053,0.925537,0.226154,0.97995,0.734656,0.968235,0.452419,0.380469,0.67358,0.171681,0.561925,0.0788841,0.060948,0.398844,0.394168,0.64376,0.0175669,0.829529,0.920927,0.337984,0.480676,0.101542,0.987262,0.476638,0.316042,0.423103,0.5678,0.966239,0.200262,0.523305,0.94796,0.175142,0.969808,0.793607,0.0111654,0.0427645,0.025016,0.242392,0.270312,0.997153,0.260449,0.304305,0.165516,0.761793,0.428971,0.318747,0.607866,0.779616,0.377416,0.0229121,0.321948,0.403844,0.81602,0.12076,0.339173,0.0802976,0.689304,0.844226,0.821708,0.96792,0.578777,0.271699,0.245611,0.981226,0.344532,0.080604,0.774232,0.901856,0.990207,0.789991,0.0494099,0.860181,0.0184258,0.836054,0.335365,0.0828002,0.576633,0.92169,0.630238,0.662394,0.170002,0.459911,0.14432,0.18205,0.0313936,0.296629,0.727863,0.0631513,0.909826,0.784322,0.126088,0.17782,0.969751,0.203796,0.483883,0.855849,0.581846,0.817989,0.823875,0.43912,0.690488,0.607382,0.753756,0.113057,0.236034,0.652098,0.237645,0.841703,0.551241,0.0404059,0.230461,0.233737,0.49678,0.617914,0.738466,0.329439,0.835679,0.519485,0.958444,0.814969,0.473517,0.265283,0.0848071,0.496104,0.433062,0.928493,0.570107,0.697157,0.0369627,0.353876,0.755167,0.95961,0.685019,0.505937,0.120059,0.396409,0.520989,0.56354,0.108751,0.500545,0.911224,0.338246,0.501942,0.690175,0.188864,0.701208,0.577098,0.427183,0.486624,0.532258,0.974673,0.135196,0.748202,0.240391,0.447738,0.728369,0.405763,0.468264,0.811179,0.747457,0.232281,0.131549,0.668173,0.704066,0.910371,0.856026,0.42353,0.174294,0.167219,0.65965,0.0252506,0.28404,0.741262,0.114009,0.894424,0.36991,0.426594,0.274612,0.822176,0.936767,0.347763,0.736375,0.0834216,0.122412,0.284725,0.863282,0.499127,0.837413,0.886496,0.765148,0.347208,0.646084,0.0623058,0.105293,0.0648032,0.406265,0.761796,0.171731,0.255385,0.43774,0.614089,0.839192,0.36667,0.661536,0.979657,0.524955,0.558173,0.782303,0.54579,0.976968,0.89436,0.684895,0.610481,0.182402,0.904371,0.264698,0.299611,0.620407,0.81945,0.625634,0.00136572,0.921577,0.328873,0.387616,0.868433,0.342666,0.249147,0.167475,0.380888,0.985108,0.0655173,0.698744,0.981425,0.590597,0.039216,0.193564,0.690443,0.255753,0.591534,0.495566,0.153565,0.225115,0.693602,0.684958,0.631665,0.644655,0.452285,0.586952,0.130282,0.431142,0.18227,0.437328,0.27579,0.995597,0.205581,0.0156505,0.764921,0.0159605,0.13981,0.438322,0.0357222,0.31896,0.750384,0.634102,0.797803,0.959528,0.594115,0.794202,0.909922,0.360254,0.692206,0.873675,0.298242,0.535333,0.0103282,0.339097,0.53476,0.875539,0.926567,0.199479,0.317782,0.148562,0.384097,0.471656,0.309092,0.161165,0.825903,0.760182,0.984363,0.514302,0.441731,0.0294356,0.630091,0.590147,0.378367,0.0424973,0.275616,0.847324,0.164399,0.549982,0.322894,0.401504,0.488903,0.907776,0.405438,0.647509,0.934361,0.377629,0.0245712,0.159427,0.657583,0.438869,0.692763,0.318149,0.648552,0.0815168,0.472281,0.667645,0.616545,0.732701,0.291936,0.97811,0.390381,0.808423,0.347648,0.301839,0.624276,0.942528,0.351736,0.0135034,0.990537,0.937673,0.547795,0.58439,0.719854,0.663551,0.880879,0.268401,0.477736,0.711714,0.379748,0.390798,0.0634235,0.524716,0.178398,0.241556,0.664111,0.680113,0.377987,0.580814,0.485202,0.164997,0.252506,0.796116,0.524983,0.00633472,0.682769,0.12611,0.418946,0.335294,0.0209916,0.154048,0.794582,0.628223,0.864649,0.0322102,0.555406,0.0906065,0.0333456,0.0364296,0.889856,0.913023,0.518178,0.22537,0.290115,0.508578,0.816642,0.295614,0.140162,0.300012,0.349928,0.402439,0.274766,0.0913723,0.711037,0.599341,0.737584,0.0190409,0.648345,0.589925,0.612184,0.89302,0.339583,0.355534,0.276007,0.730798,0.428794,0.577808,0.25168,0.479358,0.214005,0.823888,0.25778,0.791632,0.509255,0.419262,0.499665,0.202456,0.803133,0.779594,0.800877,0.227881,0.534689,0.396376,0.311703,0.277307,0.579129,0.189233,0.391487,0.399701,0.236365,0.605897,0.706052,0.574178,0.0756023,0.615605,0.395018,0.918409,0.825959,0.411695,0.841153,0.108663,0.804196,0.304091,0.874862,0.468427,0.209366,0.427107,0.825906,0.315169,0.617694,0.846906,0.523935,0.193104,0.701734,0.462011,0.144041,0.549722,0.297359,0.509258,0.459103,0.657454,0.50716,0.00668168,0.116541,0.000340521,0.843501,0.261857,0.170166,0.618622,0.292649,0.663329,0.857526,0.21197,0.975127,0.0193619,0.433506,0.297737,0.240939,0.539355,0.166142,0.0740035,0.958331,0.784821,0.317772,0.803406,0.31286,0.754771,0.360275,0.452189,0.897407,0.357121,0.521642,0.472926,0.611963,0.594932,0.218188,0.602891,0.329962,0.590275,0.115009,0.312826,0.210431,0.563729,0.162208,0.464186,0.808673,0.737982,0.997548,0.928873,0.336467,0.0812923,0.117914,0.792021,0.05068,0.18579,0.584296,0.911217,0.341181,0.337378,0.0925488,0.963227,0.711159,0.105373,0.0822728,0.709322,0.216795,0.471639,0.775628,0.258058,0.424379,0.127283,0.761624,0.843731,0.37082,0.584838,0.806992,0.812703,0.660847,0.366641,0.593807,0.0297648,0.653836,0.652542,0.913652,0.610387,0.527352,0.787777,0.252114,0.412354,0.348636,0.0701498,0.0443023,0.441746,0.769382,0.32747,0.400438,0.725,0.692762,0.835272,0.50065,0.343169,0.558715,0.976724,0.603083,0.463961,0.581852,0.644352,0.181916,0.596501,0.615774,0.0930997,0.297406,0.991107,0.185389,0.148189,0.538642,0.0632825,0.974099,0.851832,0.711867,0.738333,0.611288,0.474497,0.128849,0.711579,0.6859,0.0355745,0.576858,0.949983,0.953808,0.396488,0.554739,0.854909,0.97891,0.698415,0.866506,0.781938,0.990641,0.93197,0.441636,0.484488,0.293006,0.263024,0.474375,0.144398,0.796487,0.282396,0.0950413,0.0219327,0.498154,0.256707,0.765985,0.250552,0.257889,0.393308,0.62972,0.997303,0.365623,0.192049,0.370886,0.983087,0.376999,0.876037,0.254656,0.501289,0.719905,0.994845,0.912778,0.324197,0.9526,0.724686,0.115304,0.308248,0.736338,0.264933,0.65974,0.425231,0.45393,0.315534,0.952221,0.0259522,0.0578719,0.348661,0.814606,0.118987,0.697467,0.993504,0.899817,0.42932,0.546053,0.968745,0.177576,0.848126,0.212058,0.330544,0.6162,0.867971,0.083802,0.349282,0.456117,0.313184,0.316072,0.0715143,0.130107,0.826537,0.830376,0.630431,0.725989,0.504214,0.721305,0.322047,0.155728,0.671547,0.694746,0.772952,0.639491,0.555055,0.648491,0.970312,0.0555897,0.494461,0.0273158,0.313108,0.544525,0.958437,0.13444,0.109033,0.560783,0.820059,0.442608,0.119813,0.236615,0.263117,0.843812,0.775805,0.3948,0.271612,0.969508,0.575681,0.610935,0.180936,0.396765,0.15464,0.218516,0.0646967,0.749237,0.238469,0.980215,0.917572,0.0894542,0.999858,0.794087,0.861834,0.277673,0.854019,0.594365,0.30636,0.833177,0.910432,0.293432,0.429285,0.538662,0.614039,0.962813,0.135937,0.896342,0.957697,0.684144,0.348769,0.414921,0.143686,0.346696,0.882114,0.607324,0.162147,0.920524,0.97131,0.0182731,0.641304,0.546909,0.641112,0.731969,0.547474,0.102505,0.226609,0.188782,0.413558,0.75773,0.923708,0.100344,0.0600772,0.839904,0.58067,0.758769,0.110978,0.0551048,0.405399,0.914266,0.00759846,0.0929263,0.58762,0.787012,0.221404,0.417259,0.00943106,0.318985,0.737777,0.0134614,0.538555,0.425756,0.848964,0.973653,0.357691,0.485228,0.160727,0.947101,0.956146,0.244318,0.872749,0.95162,0.249815,0.0648553,0.949168,0.453491,0.145441,0.350005,0.813418,0.431885,0.10631,0.175972,0.0194914,0.454813,0.50375,0.689652,0.0600465,0.458961,0.893137,0.73719,0.997697,0.41008,0.780088,0.566171,0.664299,0.263139,0.0390121,0.439396,0.683877,0.101126,0.97412,0.259914,0.754558,0.489612,0.502944,0.0265285,0.549643,0.145599,0.970234,0.665714,0.961502,0.941046,0.631264,0.194293,0.294342,0.536151,0.631768,0.930905,0.00207406,0.168527,0.472961,0.11563,0.800056,0.628972,0.553243,0.705843,0.593735,0.262957,0.00562149,0.47862,0.715068,0.385548,0.625491,0.917374,0.731445,0.814978,0.0106064,0.738342,0.32032,0.724204,0.077078,0.749378,0.806091,0.246877,0.713668,0.829428,0.427948,0.600864,0.784424,0.788078,0.242574,0.999782,|0.0737004,0.529785,0.740905,0.127609,0.847079,0.379965,0.519753,0.0539126,0.554166,0.588875,0.174471,0.656696,0.606613,0.977559,0.731039,0.714405,0.517267,0.846327,0.998238,0.882056,0.932606,0.110564,0.609289,0.208777,0.195226,0.617403,0.686292,0.789589,0.546804,0.380899,0.315144,0.202243,0.835563,0.233029,0.797431,0.830624,0.358169,0.823397,0.403219,0.690691,0.939635,0.89607,0.224956,0.325636,0.271933,0.938005,0.00220084,0.198422,0.861903,0.172237,0.177789,0.133116,0.104186,0.640117,0.761178,0.122369,0.444991,0.314655,0.455406,0.762322,0.242095,0.764932,0.75144,0.414741,0.2818,0.904869,0.0770822,0.670757,0.85641,0.00165129,0.287028,0.577354,0.0235865,0.858813,0.91013,0.619962,0.569572,0.423774,0.900162,0.324889,0.108067,0.295144,0.892681,0.132181,0.631893,0.474957,0.856698,0.264246,0.990219,0.465739,0.211899,0.818485,0.291647,0.892699,0.189143,0.402194,0.690889,0.0808361,0.144245,0.256175,0.499846,0.848546,0.278541,0.248335,0.612116,0.505261,0.168986,0.0737923,0.213466,0.326589,0.443124,0.250577,0.530978,0.0104492,0.707064,0.882429,0.850594,0.000785053,0.563754,0.304003,0.317192,0.342189,0.553253,0.326247,0.15299,0.0785607,0.273894,0.614765,0.0928265,0.518278,0.520251,0.605566,0.713753,0.945113,0.804233,0.797588,0.553851,0.772697,0.623555,0.58591,0.858179,0.556731,0.390566,0.981451,0.588127,0.998246,0.955276,0.940265,0.468383,0.918241,0.997883,0.848477,0.0986359,0.0433394,0.660599,0.247585,0.848271,0.416509,0.223737,0.938509,0.0117716,0.623818,0.0127813,0.310139,0.808489,0.295593,0.792392,0.731886,0.975921,0.823764,0.783376,0.786043,0.322276,0.74204,0.637796,0.183341,0.29525,0.683286,0.781616,0.933461,0.047528,0.682331,0.868461,0.680882,0.763017,0.739635,0.100889,0.884448,0.295242,0.59589,0.915616,0.596794,0.18561,0.569659,0.94611,0.801918,0.883363,0.0070715,0.992144,0.387203,0.713164,0.490477,0.176146,0.426001,0.823836,0.571029,0.284537,0.513926,0.301445,0.586239,0.911664,0.253525,0.206748,0.79702,0.899146,0.913127,0.398543,0.397562,0.781861,0.296047,0.418978,0.368906,0.447233,0.0951044,0.791058,0.293558,0.411088,0.189082,0.772902,0.453741,0.748708,0.543562,0.826823,0.879061,0.64621,0.18148,0.43085,0.783011,0.164548,0.986063,0.655019,0.0493156,0.579611,0.097578,0.397053,0.315568,0.675325,0.518753,0.655691,0.270101,0.861873,0.876712,0.754122,0.0920292,0.427502,0.685187,0.00450999,0.710211,0.588377,0.835152,0.232132,0.879516,0.0286622,0.313131,0.666721,0.258816,0.317328,0.761034,0.294605,0.637128,0.526201,0.0889912,0.208896,0.643245,0.106924,0.0749878,0.956616,0.695798,0.776954,0.724199,0.384803,0.926352,0.0608499,0.0868902,0.725589,0.00688571,0.872552,0.265928,0.121578,0.518104,0.401261,0.397622,0.46968,0.950497,0.375636,0.976399,0.220318,0.238206,0.614706,0.33103,0.746693,0.165085,0.377309,0.981464,0.356658,0.542367,0.520255,0.592396,0.314016,0.750729,0.0217535,0.597787,0.989224,0.700132,0.962797,0.780756,0.260106,0.503114,0.55361,0.066242,0.865377,0.422452,0.857208,0.829078,0.853907,0.662941,0.813045,0.0117797,0.191157,0.161526,0.916641,0.856558,0.781802,0.879416,0.411178,0.163142,0.880036,0.986741,0.396171,0.589658,0.4156,0.990454,0.631909,0.162092,0.81443,0.3251,0.521465,0.997493,0.351959,0.999166,0.886082,0.345411,0.0737329,0.0141014,0.588407,0.349412,0.872624,0.00669193,0.41156,0.385778,0.735729,0.235094,0.437941,0.883669,0.890368,0.782492,0.723947,0.136983,0.889217,0.309531,0.394126,0.508352,0.285444,0.149518,0.817279,0.275207,0.874606,0.586434,0.816355,0.876389,0.365654,0.799462,0.282912,0.234557,0.272612,0.556055,0.923321,0.513889,0.76849,0.156139,0.918815,0.16192,0.75701,0.142012,0.69029,0.242592,0.629915,0.172652,0.802855,0.535891,0.167717,0.356779,0.684813,0.285836,0.308879,0.807362,0.565244,0.166627,0.0248488,0.881572,0.652534,0.229798,0.209951,0.0787429,0.584704,0.224016,0.491514,0.0573698,0.359593,0.336332,0.173508,0.998033,0.274739,0.283574,0.501146,0.404646,0.299816,0.611115,0.0504881,0.241797,0.326918,0.504987,0.287317,0.108132,0.988898,0.734041,0.915704,0.207897,0.833327,0.380801,0.379088,0.833714,0.999347,0.232099,0.0307932,0.37393,0.843111,0.0506181,0.840184,0.281585,0.606045,0.292749,0.705643,0.7388,0.577088,0.453614,0.234859,0.622959,0.928698,0.60731,0.740066,0.0726342,0.218946,0.00784439,0.408018,0.971867,0.358395,0.356594,0.412587,0.621982,0.35661,0.847366,0.85204,0.401538,0.325321,0.630459,0.981304,0.969757,0.897112,0.577408,0.591688,0.0743501,0.983174,0.259915,0.437944,0.879466,0.214899,0.619403,0.837028,0.775415,0.871154,0.621466,0.22189,0.752249,0.174537,0.138038,0.536987,0.866858,0.192736,0.17368,0.105513,0.243899,0.551836,0.410914,0.587249,0.00057739,0.151612,0.858642,0.689398,0.118034,0.876244,0.128211,0.0621014,0.351822,0.470643,0.65369,0.138698,0.777105,0.982145,0.695994,0.183109,0.722993,0.830807,0.964805,0.320513,0.73864,0.845749,0.664987,0.645287,0.728489,0.771401,0.503386,0.978688,0.32133,0.204149,0.641835,0.876949,0.836684,0.477218,0.256276,0.00873959,0.3881,0.842396,0.144795,0.461147,0.130518,0.334628,0.737132,0.901647,0.0189359,0.86707,0.795309,0.549639,0.152507,0.578489,0.230785,0.810154,0.0047375,0.767457,0.164647,0.343217,0.472158,0.477481,0.0486231,0.183606,0.125842,0.10533,0.241758,0.923698,0.58135,0.118628,0.789654,0.0460136,0.160801,0.236382,0.230354,0.178333,0.469902,0.967137,0.583628,0.72436,0.302415,0.310996,0.244479,0.695476,0.266661,0.013368,0.28782,0.988712,0.934183,0.200987,0.667323,0.299915,0.604783,0.417905,0.486501,0.65346,0.032597,0.635657,0.705254,0.0146534,0.0737951,0.916518,0.935673,0.751016,0.999821,0.717375,0.790574,0.809615,0.0668246,0.199838,0.437376,0.78167,0.375212,0.505979,0.00294822,0.838728,0.733195,0.980905,0.724,0.863966,0.212644,0.350716,0.497652,0.159959,0.109368,0.758789,0.433765,0.37028,0.486134,0.0651149,0.0818028,0.468764,0.449241,0.315299,0.174322,0.570235,0.785204,0.0638168,0.0897508,0.893107,0.700229,0.452048,0.176325,0.171489,0.806658,0.488612,0.520402,0.991051,0.528562,0.273323,0.637415,0.961156,0.827577,0.734875,0.440183,0.472212,0.634461,0.0269139,0.442444,0.654895,0.414218,0.626908,0.0341287,0.848433,0.770119,0.861554,0.0879606,0.267111,0.614043,0.0606363,0.00885022,0.316088,0.594438,0.776113,0.390392,0.636055,0.781713,0.78535,0.764406,0.41105,0.816588,0.938303,0.567025,0.623691,0.524655,0.699153,0.443506,0.646839,0.400879,0.833226,0.0583968,0.84597,0.127394,0.660807,0.609695,0.108747,0.999376,0.246259,0.374991,0.541388,0.997475,0.9997,0.288306,0.938385,0.495205,0.0561683,0.380285,0.482852,0.102482,0.754866,0.584632,0.0318907,0.686401,0.608917,0.705193,0.516139,0.672671,0.071967,0.765223,0.109597,0.740876,0.964531,0.51353,0.578771,0.00125921,0.718987,0.163456,0.388084,0.895436,0.992357,0.902309,0.991063,0.565356,0.889111,0.382017,0.0394491,0.373114,0.609676,0.599494,0.826968,0.488526,0.401343,0.442193,0.499977,0.185034,0.19608,0.283913,0.666912,0.715867,0.551674,0.215236,0.437027,0.555571,0.543649,0.955429,0.34543,0.758459,0.0360487,0.215936,0.242729,0.361252,0.484725,0.698643,0.205814,0.436125,0.721741,0.530849,0.601814,0.119512,0.220279,0.506912,0.193727,0.729066,0.878585,0.690068,0.244281,0.290342,0.387129,0.855431,0.232292,0.943812,0.648369,0.993546,0.211626,0.0370802,0.600008,0.520324,0.379663,0.151389,0.383094,0.114522,0.818212,0.423217,0.880309,0.847796,0.271793,0.881806,0.00158125,0.823415,0.0710881,0.0711041,0.833756,0.439412,0.960297,0.673346,0.324397,0.0285982,0.934114,0.882956,0.0777301,0.210394,0.805288,0.698178,0.100903,0.921373,0.525693,0.512828,0.421424,0.62132,0.300863,0.070567,0.262129,0.063201,0.575383,0.971724,0.419644,0.721131,0.831099,0.0245944,0.486956,0.701151,0.440421,0.979117,0.273904,0.710625,0.111801,0.618045,0.496918,0.275017,0.174525,0.690547,0.189551,0.582962,0.558194,0.772782,0.35307,0.755152,0.908432,0.228369,0.50167,0.511456,0.0108598,0.548928,0.0671502,0.0737714,0.873617,0.36304,0.789525,0.807242,0.239259,0.760818,0.843568,0.333266,0.153697,0.402307,0.813253,0.863233,0.348444,0.282652,0.190228,0.308939,0.191854,0.218582,0.646911,0.669522,0.282095,0.992253,0.248176,0.206292,0.265869,0.455173,0.730497,0.718819,0.608362,0.217672,0.709679,0.730436,0.0182795,0.0683668,0.832415,0.376408,0.187031,0.591644,0.911131,0.625645,0.865241,0.214746,0.84465,0.687114,0.798642,0.981601,0.104606,0.382515,0.197801,0.605514,0.0158578,0.827012,0.0697397,0.0236551,0.721201,0.812712,0.471992,0.196035,0.63552,0.780451,0.819173,0.202391,0.00915658,0.861634,0.202594,0.270893,0.414618,0.384504,0.173976,0.795984,0.52926,0.485385,0.0106617,0.0848665,0.655004,0.588947,0.290424,0.350519,0.258725,0.631358,0.479927,0.0109388,0.20746,0.595925,0.85201,0.434209,0.0895869,0.43987,0.964402,0.823016,0.473919,0.0186394,0.264734,0.497422,0.0296946,0.699512,0.951762,0.279774,0.722514,0.222211,0.221135,0.339428,0.286392,0.377595,0.98378,0.328613,0.203739,0.596036,0.989223,0.181093,0.56549,0.0796374,0.967142,0.173669,0.80228,0.158315,0.680582,0.0713441,0.243744,0.164364,0.882976,0.870395,0.559508,0.668308,0.691932,0.775461,0.386861,0.487702,0.866418,0.267706,0.526879,0.215917,0.289501,0.831537,0.160835,0.905394,0.0911872,0.243771,0.179764,0.0751228,0.132662,0.565814,0.665022,0.194003,|0.658144,0.0868757,0.606567,0.582561,0.91831,0.119336,0.28789,0.340718,0.362555,0.689246,0.203382,0.890608,0.364158,0.00253689,0.565377,0.409765,0.941331,0.413573,0.518947,0.00357068,0.374271,0.931309,0.736422,0.327478,0.113761,0.702473,0.201613,0.486095,0.202956,0.99491,0.712637,0.0671757,0.082449,0.380641,0.91076,0.815899,0.270441,0.493983,0.231868,0.058448,0.425488,0.813281,0.452765,0.836678,0.851534,0.932827,0.569758,0.820019,0.169307,0.252071,0.269923,0.758502,0.562058,0.164078,0.147866,0.409022,0.454939,0.387657,0.598024,0.381713,0.53309,0.417512,0.445356,0.212525,0.444868,0.010608,0.985983,0.0756767,0.448567,0.770597,0.307758,0.992729,0.616016,0.544705,0.257179,0.720018,0.132549,0.412424,0.308856,0.480631,0.125074,0.647925,0.0653589,0.843865,0.231388,0.699508,0.298864,0.362099,0.93527,0.166049,0.545478,0.920896,0.495542,0.131613,0.133033,0.029417,0.542631,0.533151,0.61455,0.613156,0.519796,0.14819,0.760677,0.647214,0.0935508,0.179591,0.0158399,0.271587,0.686546,0.0111694,0.148125,0.97093,0.0178102,0.600061,0.945815,0.707023,0.773278,0.552908,0.947207,0.0852576,0.108967,0.920879,0.711262,0.776362,0.353245,0.778536,0.967903,0.202053,0.64292,0.245029,0.414141,0.150155,0.0298553,0.739177,0.15472,0.96414,0.26386,0.278736,0.899616,0.77083,0.110016,0.985832,0.163467,0.527294,0.619023,0.842568,0.0898419,0.00572205,0.0703352,0.585817,0.0472296,0.514089,0.75205,0.365572,0.208208,0.975657,0.669779,0.69029,0.549208,0.89851,0.798107,0.0173433,0.544995,0.548474,0.472421,0.535234,0.902959,0.0481004,0.909179,0.534016,0.721965,0.945389,0.752303,0.504496,0.517896,0.114673,0.634932,0.565823,0.872037,0.825109,0.945492,0.130256,0.600525,0.994648,0.925099,0.190323,0.035832,0.594903,0.348595,0.415668,0.0575026,0.184847,0.402645,0.823229,0.177507,0.655341,0.948299,0.514736,0.556807,0.333597,0.893208,0.0473471,0.319237,0.75934,0.727625,0.0852219,0.528021,0.0587969,0.709395,0.471777,0.695715,0.781482,0.811371,0.428485,0.656133,0.759798,0.245605,0.786255,0.138741,0.333293,0.735431,0.811987,0.196679,0.751582,0.545733,0.0628901,0.0355396,0.327965,0.166084,0.598265,0.0977209,0.501908,0.720205,0.16903,0.694421,0.470679,0.280484,0.951533,0.28213,0.810111,0.546434,0.487803,0.899634,0.722714,0.0782089,0.662007,0.668058,0.148815,0.72149,0.163402,0.452816,0.683424,0.201446,0.0536363,0.670484,0.785532,0.493063,0.293896,0.221983,0.244576,0.499783,0.325608,0.686163,0.578251,0.183717,0.15362,0.446354,0.214517,0.445272,0.0873667,0.595202,0.603791,0.131329,0.426604,0.124243,0.722214,0.96267,0.502873,0.385635,0.104987,0.105853,0.556536,0.645147,0.996715,0.568405,0.66922,0.833957,0.692026,0.685885,0.0890366,0.953899,0.0199492,0.528651,0.822002,0.822667,0.625287,0.856093,0.415116,0.441041,0.190184,0.565639,0.118249,0.305619,0.605353,0.11266,0.373288,0.974059,0.0870013,0.535879,0.489488,0.0205406,0.504628,0.101244,0.579847,0.702437,0.0554569,0.599802,0.775682,0.863033,0.837085,0.819999,0.396345,0.32707,0.822528,0.126981,0.992227,0.365705,0.611867,0.0962722,0.157753,0.541634,0.686521,0.251267,0.701303,0.975043,0.353616,0.879351,0.549006,0.996851,0.75452,0.258412,0.50556,0.0379089,0.844964,0.721381,0.128181,0.947686,0.291323,0.631334,0.103037,0.940801,0.394582,0.0488481,0.0715031,0.719742,0.621596,0.728397,0.0631488,0.800331,0.970236,0.0278102,0.31828,0.362912,0.647195,0.180277,0.503143,0.301133,0.455904,0.599697,0.0333593,0.0911704,0.293784,0.305338,0.0883275,0.273099,0.368589,0.867043,0.880675,0.662508,0.615276,0.907053,0.401353,0.342037,0.207338,0.0732268,0.326896,0.453658,0.769982,0.891198,0.776425,0.626261,0.0987076,0.74439,0.383645,0.81723,0.643343,0.251002,0.0516226,0.989089,0.781873,0.482194,0.244511,0.591025,0.464461,0.813099,0.0226858,0.176378,0.211469,0.493536,0.227399,0.0471539,0.0112515,0.243527,0.973964,0.719895,0.404175,0.27122,0.848219,0.83573,0.0838566,0.15005,0.171305,0.202377,0.685168,0.109362,0.550133,0.224737,0.0059014,0.26122,0.824784,0.248124,0.142614,0.951888,0.847782,0.61665,0.188223,0.206938,0.114301,0.123068,0.32661,0.377198,0.783968,0.935467,0.403697,0.383697,0.386152,0.441679,0.823869,0.586075,0.387331,0.609246,0.187595,0.146313,0.458854,0.617986,0.336308,0.587484,0.602568,0.10126,0.847299,0.678143,0.106663,0.37191,0.890502,0.201387,0.0427982,0.917628,0.944185,0.742859,0.0713524,0.679387,0.179379,0.145937,0.683854,0.0901338,0.663356,0.763865,0.867585,0.240274,0.305205,0.248778,0.34431,0.909393,0.025095,0.331656,0.758344,0.0170951,0.0120752,0.313372,0.224693,0.0436258,0.723062,0.27551,0.509743,0.301168,0.300965,0.289832,0.139945,0.521229,0.123142,0.982754,0.0294299,0.553176,0.430055,0.593226,0.22339,0.765709,0.89633,0.779291,0.132559,0.642433,0.0728568,0.16436,0.653048,0.293358,0.157755,0.529961,0.871604,0.570648,0.444306,0.477414,0.898746,0.296797,0.0706028,0.450022,0.939694,0.220445,0.33138,0.328713,0.558496,0.609376,0.170636,0.471734,0.741593,0.0728784,0.95611,0.344272,0.211163,0.885607,0.805613,0.762143,0.708349,0.718131,0.929267,0.185556,0.0929036,0.365887,0.00592273,0.282746,0.885049,0.470437,0.63733,0.223332,0.829736,0.908903,0.9422,0.23757,0.756837,0.0532107,0.352642,0.860591,0.220048,0.45309,0.645102,0.559108,0.643235,0.804674,0.718824,0.473499,0.603668,0.654321,0.7374,0.013153,0.532938,0.602236,0.631842,0.720227,0.432373,0.341497,0.987612,0.862535,0.832235,0.39015,0.956439,0.00642401,0.380719,0.67597,0.505721,0.631113,0.917844,0.88815,0.0138362,0.310396,0.510803,0.611254,0.62987,0.377345,0.000548542,0.900186,0.447769,0.872819,0.106614,0.267235,0.848026,0.714381,0.721268,0.493035,0.558057,0.851724,0.242234,0.613767,0.514246,0.241862,0.0705392,0.4231,0.329262,0.138453,0.518204,0.424224,0.812035,0.07181,0.473661,0.44427,0.499324,0.888342,0.152232,0.196831,0.148513,0.869436,0.142905,0.912683,0.00748289,0.174521,0.847299,0.336868,0.767104,0.0792634,0.0492524,0.719535,0.611099,0.00215101,0.301791,0.0335321,0.123102,0.120839,0.77532,0.382883,0.927492,0.99719,0.47905,0.90596,0.214737,0.71915,0.0611581,0.708246,0.648202,0.44054,0.488525,0.765466,0.829843,0.242475,0.218163,0.134075,0.919459,0.239268,0.325154,0.441879,0.622815,0.588418,0.803599,0.432443,0.234847,0.447386,0.0361226,0.0228337,0.0681791,0.559244,0.393562,0.669593,0.0929134,0.849214,0.805939,0.431778,0.506782,0.350965,0.802686,0.238369,0.493891,0.445637,0.101061,0.513449,0.751591,0.216687,0.697811,0.475333,0.567508,0.901456,0.828987,0.950006,0.445591,0.615634,0.0376643,0.957489,0.442848,0.473698,0.267478,0.693202,0.260596,0.193474,0.241331,0.42497,0.52659,0.802056,0.688218,0.402573,0.959462,0.085568,0.96302,0.436224,0.551712,0.105396,0.458604,0.745805,0.320675,0.314654,0.898059,0.0675866,0.925925,0.895258,0.243086,0.345624,0.70673,0.606022,0.224451,0.73233,0.944315,0.58998,0.44825,0.445329,0.723969,0.506209,0.21707,0.876167,0.452435,0.680229,0.807191,0.133104,0.534882,0.483543,0.744093,0.236456,0.562461,0.873585,0.605645,0.485821,0.322467,0.521949,0.939399,0.466578,0.643437,0.847207,0.226077,0.458317,0.434718,0.213971,0.582859,0.636729,0.369349,0.250482,0.829636,0.657384,0.685624,0.258593,0.458352,0.634978,0.725468,0.336882,0.899408,0.470307,0.069619,0.672655,0.56108,0.755023,0.187087,0.514577,0.453828,0.60019,0.539529,0.658385,0.434503,0.172957,0.0682043,0.397762,0.923981,0.200379,0.426577,0.545491,0.30931,0.97682,0.865353,0.372407,0.150476,0.568511,0.973019,0.895234,0.0319768,0.0309809,0.788368,0.0571082,0.161509,0.255549,0.940491,0.162799,0.425941,0.178251,0.88371,0.778992,0.605217,0.275402,0.251419,0.428796,0.489283,0.533656,0.292411,0.676261,0.891389,0.460425,0.989699,0.663139,0.128428,0.150498,0.894418,0.0182975,0.29036,0.708153,0.869086,0.759168,0.0354987,0.370664,0.026028,0.442596,0.672025,0.788983,0.736273,0.428725,0.766853,0.435925,0.367518,0.494904,0.269975,0.161816,0.673976,0.932162,0.610966,0.352928,0.943162,0.422914,0.96854,0.736113,0.855797,0.617237,0.174667,0.788128,0.216568,0.260875,0.386858,0.243471,0.0899821,0.572565,0.026146,0.133869,0.662215,0.195293,0.326666,0.230103,0.603612,0.0211537,0.0167327,0.639232,0.660543,0.00231647,0.0234678,0.247666,0.906347,0.57826,0.743683,0.700697,0.787606,0.659454,0.726755,0.242348,0.693329,0.77636,0.0329105,0.940639,0.19472,0.429539,0.128454,0.3763,0.390155,0.0788493,0.251604,0.94711,0.014166,0.623146,0.916872,0.587157,0.615561,0.541918,0.780909,0.801647,0.699237,0.78026,0.323494,0.495599,0.592935,0.213841,0.655427,0.290805,0.321228,0.126142,0.371106,0.924614,0.150074,0.311993,0.327719,0.695443,0.71301,0.269467,0.349446,0.0347348,0.989228,0.9226,0.988061,0.819068,0.0349183,0.18118,0.31254,0.823625,0.12508,0.644208,0.515796,0.142858,0.882555,0.595168,0.505261,0.380753,0.649057,0.0518851,0.358124,0.161317,0.121524,0.318011,0.834511,0.195521,0.419665,0.26715,0.0384668,0.49311,0.0526394,0.800925,0.302312,0.642641,0.736314,0.0541621,0.92104,0.188516,0.039682,0.467305,0.12552,0.84164,0.927812,0.785929,0.252318,0.725413,0.812207,0.169905,0.531235,0.516945,0.172625,0.759781,0.795414,0.917906,0.623445,0.684422,0.339137,0.524555,0.279595,0.179096,0.337444,0.478298,0.957087,0.811536,0.636681,0.431218,0.74961,0.18639,0.702691,0.513426,0.254414,|0.527197,0.668289,0.796905,0.485598,0.361082,0.275892,0.429312,0.441562,0.646756,0.164786,0.0527031,0.206165,0.308855,0.901069,0.905177,0.108996,0.978558,0.010412,0.113679,0.485627,0.995748,0.817313,0.00715011,0.290112,0.140874,0.543064,0.248106,0.313851,0.766559,0.412301,0.823297,0.741743,0.864592,0.706764,0.451076,0.150717,0.0161018,0.296849,0.74223,0.218868,0.854502,0.959406,0.00341922,0.589164,0.231704,0.447394,0.100538,0.615433,0.492771,0.693871,0.268931,0.724728,0.827082,0.330532,0.424589,0.702257,0.645618,0.984987,0.679975,0.127549,0.459916,0.861676,0.926782,0.723342,0.231437,0.237857,0.4491,0.742438,0.0070495,0.197424,0.111281,0.0772406,0.465391,0.0981154,0.267745,0.255594,0.967602,0.250206,0.500862,0.754911,0.538948,0.373489,0.75468,0.00586474,0.269588,0.110608,0.954507,0.463097,0.21926,0.281256,0.127201,0.20248,0.347384,0.625296,0.400368,0.986462,0.456517,0.721748,0.101615,0.339185,0.295473,0.936259,0.890587,0.106388,0.1427,0.74095,0.55359,0.105104,0.611417,0.163085,0.610698,0.291819,0.256634,0.571284,0.205803,0.287838,0.529261,0.732382,0.73509,0.691173,0.537962,0.756873,0.598488,0.417465,0.569846,0.0683339,0.219248,0.867875,0.63752,0.90974,0.371837,0.313669,0.79477,0.99062,0.3397,0.13402,0.110985,0.40986,0.373344,0.644901,0.926986,0.963862,0.311481,0.980994,0.274248,0.521196,0.129063,0.257291,0.179567,0.699555,0.52209,0.955531,0.311184,0.402213,0.112675,0.561506,0.771747,0.282016,0.476631,0.877655,0.12934,0.348787,0.280822,0.0935718,0.996271,0.489797,0.348252,0.971086,0.253323,0.146043,0.505443,0.0942976,0.985246,0.0903678,0.215401,0.716701,0.492503,0.157744,0.820561,0.441123,0.510293,0.475953,0.493133,0.735956,0.760932,0.834702,0.570645,0.188476,0.0167896,0.46912,0.184369,0.484209,0.244082,0.364903,0.00565952,0.23482,0.769688,0.678386,0.244991,0.833589,0.518727,0.996965,0.31878,0.310035,0.620157,0.423156,0.682882,0.334622,0.366598,0.155487,0.913396,0.845485,0.893359,0.579339,0.30773,0.825103,0.546606,0.307699,0.423251,0.698496,0.651282,0.838129,0.728494,0.544595,0.525203,0.970103,0.420277,0.817381,0.734924,0.376042,0.878665,0.0597115,0.57402,0.203519,0.247415,0.637808,0.671958,0.162625,0.803984,0.204119,0.0620815,0.759061,0.523024,0.48715,0.0677266,0.340086,0.299205,0.231649,0.1832,0.873606,0.339451,0.299002,0.297716,0.50497,0.153977,0.326244,0.27863,0.184413,0.742849,0.944493,0.163856,0.0447862,0.587981,0.28544,0.694809,0.539645,0.048972,0.251697,0.842715,0.374271,0.736985,0.565677,0.305934,0.275648,0.647033,0.22304,0.237074,0.0342012,0.52496,0.563441,0.300382,0.0317074,0.612152,0.487613,0.819815,0.902601,0.00254685,0.455136,0.0341449,0.529291,0.556121,0.654829,0.561937,0.949215,0.263204,0.115607,0.918471,0.380786,0.122749,0.758333,0.107818,0.143929,0.0666568,0.000261903,0.567181,0.997576,0.919071,0.591846,0.672954,0.732446,0.451893,0.559554,0.745505,0.281873,0.481929,0.566482,0.981053,0.609663,0.251374,0.484051,0.719225,0.673763,0.132826,0.317523,0.212309,0.243943,0.607208,0.0588648,0.255541,0.570736,0.436411,0.723196,0.27717,0.623097,0.318317,0.0868224,0.808106,0.719374,0.989185,0.66619,0.84555,0.0403585,0.929352,0.547086,0.18174,0.0952068,0.39301,0.663358,0.407301,0.565841,0.106238,0.265975,0.776962,0.208315,0.485653,0.769384,0.178858,0.385941,0.404162,0.263814,0.387994,0.0871162,0.668236,0.141763,0.366654,0.708896,0.222693,0.0779724,0.697162,0.099669,0.285892,0.831441,0.755677,0.656561,0.326521,0.0184473,0.35588,0.725588,0.349763,0.950884,0.0605001,0.350206,0.134804,0.586967,0.765243,0.924472,0.278369,0.884118,0.548899,0.196772,0.717198,0.107656,0.457247,0.266583,0.0896658,0.622014,0.19131,0.479309,0.306125,0.684266,0.95579,0.113908,0.814587,0.537968,0.476989,0.15487,0.596374,0.827738,0.186796,0.321682,0.608563,0.403156,0.871711,0.979137,0.758539,0.874176,0.630065,0.802246,0.760147,0.35192,0.63886,0.961451,0.285791,0.314302,0.540502,0.970267,0.0896849,0.672596,0.360749,0.274143,0.844179,0.435261,0.772711,0.986834,0.575969,0.765087,0.0508776,0.738763,0.753556,0.494283,0.291224,0.275979,0.759189,0.0659989,0.050657,0.409616,0.709948,0.884086,0.326019,0.343345,0.580188,0.281295,0.447343,0.133536,0.696966,0.0784874,0.714108,0.0282717,0.312749,0.567713,0.142843,0.352334,0.350219,0.746676,0.775298,0.704543,0.0788409,0.275658,0.446634,0.184621,0.0399896,0.707926,0.268735,0.886187,0.509166,0.880085,0.116848,0.164856,0.729538,0.239531,0.692667,0.869662,0.541105,0.691294,0.442334,0.999465,0.439934,0.246597,0.659567,0.679682,0.913823,0.677631,0.204382,0.26101,0.72293,0.503602,0.38375,0.745753,0.438001,0.115596,0.522115,0.0239503,0.568982,0.651704,0.664484,0.598818,0.775556,0.189029,0.17604,0.522908,0.551928,0.928943,0.104542,0.134917,0.71724,0.786368,0.510448,0.0887828,0.448554,0.813806,0.309827,0.634728,0.833058,0.35978,0.164814,0.78896,0.0117566,0.914044,0.831838,0.704975,0.762111,0.0349255,0.332934,0.00778067,0.913841,0.679623,0.0837584,0.913372,0.90321,0.522536,0.506002,0.484499,0.848104,0.0263875,0.400279,0.45027,0.523102,0.312951,0.543205,0.424817,0.800553,0.341631,0.295551,0.54403,0.29587,0.695422,0.473775,0.211212,0.0161289,0.780707,0.0131239,0.96742,0.887749,0.197155,0.839426,0.942575,0.28763,0.876852,0.237794,0.241361,0.299573,0.51341,0.838967,0.674299,0.426653,0.707978,0.867015,0.844612,0.381861,0.560103,0.757523,0.632291,0.822207,0.234871,0.0777112,0.187382,0.414767,0.583824,0.590677,0.340505,0.980412,0.850355,0.397066,0.979523,0.0565299,0.455323,0.455074,0.792687,0.913857,0.146521,0.353072,0.604767,0.880521,0.736548,0.499632,0.773775,0.78519,0.935443,0.816152,0.627273,0.206738,0.7899,0.431033,0.497425,0.0227554,0.524743,0.658519,0.107235,0.443856,0.207296,0.825159,0.89339,0.847834,0.950189,0.201671,0.226489,0.56322,0.186302,0.591573,0.414071,0.372629,0.724655,0.881306,0.937921,0.28566,0.649171,0.585902,0.454451,0.572718,0.440324,0.511581,0.869162,0.397156,0.0238332,0.301273,0.991135,0.906072,0.624267,0.893137,0.886104,0.00735569,0.317086,0.860741,0.0618913,0.45045,0.897217,0.290303,0.48439,0.658861,0.255232,0.680027,0.762727,0.817609,0.753158,0.384344,0.783604,0.330995,0.00126845,0.163817,0.184138,0.38266,0.240141,0.538519,0.861526,0.320818,0.184875,0.0735119,0.580027,0.920387,0.0102308,0.987741,0.375252,0.480503,0.639333,0.632062,0.401825,0.866842,0.952807,0.449996,0.231291,0.271409,0.700638,0.170769,0.0623295,0.442739,0.573754,0.612852,0.936685,0.509182,0.0987183,0.625299,0.65651,0.00432497,0.311655,0.738021,0.421343,0.941892,0.57906,0.792897,0.00760704,0.845031,0.791263,0.845794,0.406546,0.40431,0.85843,0.88545,0.593021,0.916718,0.243605,0.946602,0.205287,0.721627,0.228494,0.922695,0.420062,0.564736,0.365028,0.946836,0.85151,0.822511,0.588482,0.981072,0.210259,0.935837,0.135309,0.0537288,0.184043,0.130317,0.861553,0.900217,0.359013,0.769135,0.943873,0.500428,0.991194,0.690601,0.753024,0.267532,0.330548,0.485663,0.875741,0.450481,0.552434,0.686501,0.0853379,0.358403,0.34198,0.652226,0.706748,0.931139,0.282644,0.218676,0.850537,0.0829052,0.114167,0.160568,0.346447,0.0480886,0.125684,0.303256,0.0141425,0.00590301,0.65796,0.549578,0.222877,0.768855,0.662312,0.393772,0.696879,0.213885,0.645101,0.312542,0.465859,0.918246,0.980709,0.912456,0.302255,0.27609,0.799499,0.771844,0.920925,0.549359,0.595516,0.0183634,0.168458,0.0912629,0.944669,0.16615,0.34371,0.216251,0.580165,0.969087,0.712008,0.324803,0.706323,0.315315,0.937782,0.344666,0.66631,0.976468,0.810531,0.742763,0.768439,0.135528,0.616782,0.265594,0.385971,0.0944497,0.560611,0.485882,0.664163,0.834225,0.0647664,0.318325,0.434337,0.506759,0.140687,0.710873,0.622597,0.654713,0.831982,0.835298,0.912757,0.778572,0.518595,0.161163,0.473552,0.362652,0.550225,0.644583,0.259751,0.679294,0.431188,0.0745658,0.86323,0.0532147,0.0684215,0.624551,0.637684,0.692757,0.664782,0.158826,0.360554,0.0773949,0.300994,0.488961,0.628216,0.578457,0.560148,0.920773,0.337614,0.571843,0.519973,0.475183,0.419553,0.461714,0.677388,0.920723,0.591003,0.348252,0.892436,0.62923,0.934497,0.566576,0.854222,0.233487,0.3061,0.226339,0.208239,0.303485,0.993389,0.179376,0.983083,0.36133,0.790333,0.278281,0.932709,0.427234,0.445867,0.620335,0.533541,0.198992,0.137742,0.139018,0.46453,0.201606,0.974577,0.201881,0.789354,0.914248,0.0749795,0.233695,0.673419,0.164678,0.310723,0.291022,0.84796,0.417134,0.359728,0.349254,0.0843012,0.472186,0.317378,0.395803,0.751838,0.205824,0.189711,0.978201,0.142616,0.598022,0.776419,0.531334,0.930144,0.338165,0.426172,0.348563,0.73788,0.111021,0.442621,0.721462,0.633946,0.442472,0.351418,0.794032,0.573584,0.103647,0.485996,0.49692,0.138298,0.662151,0.0989801,0.174824,0.386099,0.833246,0.494138,0.143807,0.960529,0.170487,0.447502,0.109679,0.655277,0.182186,0.256184,0.813413,0.103322,0.414979,0.241177,0.634287,0.847104,0.618645,0.205439,0.371069,0.743728,0.821067,0.617149,0.994638,0.527958,0.672537,0.533572,0.573383,0.244596,0.793437,0.81412,0.206429,0.725559,0.774733,0.326697,0.815017,0.877753,0.274151,0.209848,0.648129,0.591982,0.284322,0.239915,0.219888,0.300318,0.215431,0.243902,0.975253,0.436796,0.58372,0.281506,0.517519,0.696752,0.191561,0.140014,0.699525,0.173845,|0.705711,0.280661,0.0174269,0.233105,0.445438,0.44766,0.849888,0.202208,0.366695,0.123616,0.478807,0.778032,0.601968,0.105359,0.412568,0.633611,0.0680643,0.474635,0.630602,0.429979,0.985032,0.34713,0.997896,0.622334,0.240449,0.927126,0.954424,0.0702727,0.772707,0.533959,0.65265,0.681984,0.311818,0.0878519,0.410615,0.124284,0.53259,0.81179,0.985529,0.596816,0.133203,0.0352551,0.934803,0.265839,0.199974,0.702475,0.364311,0.619683,0.819986,0.264827,0.136713,0.256675,0.662146,0.930015,0.263214,0.867204,0.574425,0.349374,0.417274,0.355816,0.0292644,0.746954,0.0761703,0.146474,0.890585,0.788621,0.0795761,0.136975,0.352769,0.692748,0.458289,0.894243,0.506847,0.775141,0.375167,0.526909,0.644482,0.865167,0.91052,0.89602,0.796606,0.230389,0.745614,0.256999,0.531744,0.412467,0.227384,0.59881,0.736139,0.698947,0.117216,0.56297,0.051082,0.782242,0.814623,0.0335498,0.642067,0.132018,0.382342,0.997692,0.161608,0.542201,0.961976,0.581832,0.900184,0.720648,0.671554,0.239448,0.655887,0.763497,0.271448,0.699114,0.95107,0.410755,0.973724,0.276344,0.653132,0.480587,0.946361,0.639672,0.790886,0.0837774,0.0574182,0.762207,0.550295,0.851829,0.246157,0.219374,0.605201,0.585572,0.89229,0.836244,0.38212,0.698315,0.708762,0.442712,0.433262,0.422104,0.26777,0.00619477,0.569155,0.08736,0.0203604,0.440926,0.401385,0.720799,0.572258,0.851722,0.0285345,0.919445,0.428439,0.638111,0.888888,0.550962,0.0241316,0.873089,0.593789,0.133832,0.816077,0.247371,0.771619,0.990879,0.669611,0.958449,0.0193349,0.247297,0.664648,0.410978,0.0622015,0.976431,0.977719,0.590625,0.744031,0.798229,0.911909,0.570747,0.348419,0.473091,0.815674,0.906074,0.834528,0.726053,0.586055,0.716046,0.420676,0.407812,0.610551,0.355644,0.972171,0.0926448,0.56492,0.614349,0.605863,0.980652,0.94381,0.811577,0.0153808,0.124403,0.42788,0.482954,0.472428,0.66287,0.731202,0.39471,0.98657,0.693752,0.91358,0.75235,0.188719,0.858329,0.517878,0.428882,0.309838,0.13058,0.291116,0.0403718,0.655754,0.78404,0.299051,0.0707924,0.298807,0.116207,0.89469,0.167783,0.0692571,0.603604,0.597243,0.1373,0.219858,0.30285,0.064118,0.915771,0.852681,0.85863,0.291909,0.608934,0.995266,0.323621,0.209937,0.883166,0.872734,0.207188,0.0562601,0.711568,0.883926,0.675007,0.858118,0.738692,0.58592,0.23914,0.471236,0.101126,0.102033,0.280322,0.856958,0.322349,0.488791,0.860745,0.832103,0.93023,0.108038,0.52049,0.738378,0.159792,0.978441,0.473657,0.868828,0.716544,0.96432,0.484411,0.206693,0.813234,0.559548,0.996975,0.414832,0.973512,0.490148,0.969971,0.388459,0.844108,0.948012,0.270375,0.217076,0.538729,0.593015,0.211984,0.222319,0.225876,0.851174,0.989504,0.842472,0.143944,0.430589,0.156912,0.0435172,0.546225,0.898833,0.168603,0.189519,0.512633,0.862033,0.34729,0.925662,0.898905,0.0430013,0.698385,0.0534012,0.231575,0.633433,0.551906,0.28819,0.672842,0.528238,0.936393,0.0906506,0.152713,0.539775,0.732436,0.863926,0.468562,0.738241,0.591069,0.144421,0.504967,0.591661,0.94531,0.0117876,0.842016,0.344503,0.998903,0.723633,0.701487,0.93951,0.431753,0.930909,0.753799,0.757261,0.0238615,0.383372,0.110521,0.969814,0.0955085,0.467226,0.0819176,0.0780563,0.457384,0.726138,0.217943,0.066177,0.111371,0.51451,0.584423,0.249423,0.684921,0.43911,0.311826,0.853184,0.852814,0.697679,0.202298,0.993444,0.382492,0.342776,0.722454,0.770553,0.0732605,0.00604582,0.893348,0.883571,0.163659,0.253319,0.862834,0.325297,0.828783,0.320006,0.85353,0.134412,0.356553,0.921895,0.17738,0.117845,0.34574,0.225077,0.953535,0.215181,0.280962,0.349985,0.810984,0.926414,0.842751,0.294027,0.291171,0.608218,0.300183,0.0528895,0.937154,0.311318,0.518237,0.0897036,0.892182,0.313249,0.2808,0.262156,0.0627919,0.758536,0.356582,0.338321,0.99445,0.28014,0.751857,0.394767,0.220798,0.572668,0.450953,0.00497282,0.304946,0.785214,0.268579,0.82164,0.569376,0.232284,0.828469,0.514281,0.752804,0.432803,0.991477,0.152675,0.499309,0.738792,0.885477,0.936377,0.38959,0.109547,0.0617643,0.826526,0.957345,0.500386,0.756708,0.903284,0.131757,0.232872,0.65898,0.299985,0.520195,0.61041,0.687468,0.226783,0.553954,0.35275,0.158347,0.244362,0.372323,0.368222,0.245527,0.0897766,0.598923,0.940407,0.803029,0.177904,0.804832,0.154105,0.71712,0.472355,0.708772,0.153382,0.743414,0.911721,0.875472,0.957777,0.169497,0.0181358,0.788814,0.0697016,0.0655129,0.749951,0.314086,0.612,0.593977,0.514664,0.526836,0.0330427,0.487178,0.319018,0.956258,0.117769,0.288072,0.0167991,0.0808928,0.173192,0.191941,0.95328,0.541868,0.728687,0.311818,0.213098,0.960342,0.605491,0.392066,0.416184,0.551085,0.174877,0.142584,0.867887,0.261448,0.599934,0.0811225,0.506712,0.0670691,0.347176,0.363466,0.945145,0.67236,0.181484,0.589932,0.651534,0.868716,0.2972,0.409992,0.792976,0.396747,0.0279422,0.168511,0.80158,0.111539,0.51595,0.685921,0.386195,0.497354,0.128799,0.0700864,0.7177,0.952648,0.435333,0.306135,0.931046,0.680578,0.107181,0.0403032,0.345795,0.658129,0.219183,0.984982,0.127162,0.182174,0.792262,0.0539655,0.320667,0.492854,0.60433,0.541656,0.673771,0.228991,0.241953,0.0406932,0.358513,0.561616,0.20231,0.283308,0.759415,0.96017,0.840435,0.436364,0.307413,0.325711,0.762277,0.643931,0.956677,0.616134,0.673254,0.35039,0.452879,0.512369,0.0352996,0.443989,0.115438,0.18466,0.88869,0.0222814,0.094614,0.955169,0.0902716,0.946827,0.7403,0.675025,0.649772,0.71548,0.219711,0.555066,0.814902,0.261534,0.534079,0.989171,0.065177,0.275012,0.406299,0.370267,0.599493,0.178795,0.82783,0.900329,0.319627,0.366512,0.402286,0.78553,0.631697,0.0475673,0.921375,0.192798,0.0642316,0.462861,0.12487,0.231827,0.398039,0.179747,0.242088,0.624883,0.361863,0.265208,0.691609,0.102101,0.101624,0.518883,0.249247,0.0402371,0.96318,0.487274,0.0403449,0.352685,0.12882,0.663876,0.832003,0.98216,0.200353,0.890267,0.596801,0.617047,0.705162,0.82609,0.6752,0.468404,0.887061,0.655961,0.126848,0.482073,0.871792,0.3208,0.136713,0.745615,0.165587,0.509917,0.969025,0.890509,0.872306,0.882112,0.823123,0.519134,0.257577,0.302307,0.803116,0.86876,0.736654,0.887526,0.0919467,0.835552,0.929989,0.188119,0.635089,0.660366,0.909987,0.39487,0.510207,0.206959,0.466821,0.115908,0.505595,0.224022,0.516705,0.302563,0.728212,0.804545,0.96051,0.799505,0.130951,0.998195,0.270925,0.0917138,0.316844,0.104438,0.970785,0.460521,0.322596,0.298049,0.722554,0.0653191,0.0194116,0.371573,0.046142,0.41388,0.453364,0.381785,0.775404,0.442753,0.617202,0.126637,0.503903,0.827524,0.329555,0.139794,0.707483,0.0114873,0.298824,0.00793046,0.118997,0.10412,0.1441,0.747823,0.557227,0.268857,0.236462,0.807545,0.708059,0.867381,0.916192,0.915857,0.941201,0.000441611,0.349409,0.0270964,0.867957,0.197328,0.659873,0.218134,0.54764,0.85662,0.742227,0.369206,0.364036,0.24196,0.373513,0.878274,0.998235,0.800216,0.606168,0.831565,0.645469,0.891065,0.298389,0.477598,0.0475127,0.14889,0.553266,0.496154,0.0813797,0.394119,0.282469,0.617954,0.886212,0.349436,0.961344,0.416734,0.976003,0.516028,0.59331,0.971584,0.14858,0.94395,0.0655892,0.254942,0.83559,0.410464,0.000170767,0.983505,0.215615,0.243695,0.113989,0.855424,0.344259,0.167108,0.467285,0.276088,0.431053,0.800386,0.265871,0.611019,0.241857,0.0663858,0.393404,0.477467,0.462134,0.665889,0.851522,0.460402,0.878292,0.30468,0.164457,0.130809,0.885438,0.443189,0.491099,0.808284,0.401062,0.902524,0.10902,0.642003,0.0411045,0.900612,0.0476981,0.177054,0.853275,0.0293873,0.624193,0.937802,0.166823,0.374163,0.234129,0.962895,0.850116,0.304296,0.806299,0.996061,0.419731,0.836395,0.118305,0.0717051,0.774985,0.589513,0.674424,0.152018,0.590057,0.636635,0.324565,0.0408772,0.238063,0.209445,0.424018,0.944533,0.40322,0.660056,0.530859,0.319792,0.39282,0.473805,0.238947,0.551658,0.912157,0.331231,0.43504,0.866049,0.71503,0.229437,0.743717,0.854865,0.127019,0.299064,0.927705,0.860754,0.977362,0.448117,0.0175204,0.77801,0.84734,0.669287,0.585169,0.686229,0.892013,0.869375,0.327148,0.376478,0.398453,0.945197,0.815108,0.687565,0.69535,0.998823,0.12191,0.918721,0.816714,0.839259,0.520893,0.715392,0.133778,0.779508,0.375614,0.523059,0.168515,0.473786,0.89298,0.800476,0.604231,0.231695,0.361259,0.225844,0.753779,0.0512753,0.744348,0.474046,0.558236,0.614742,0.903508,0.818108,0.606757,0.223331,0.891167,0.314534,0.184294,0.818395,0.315622,0.331664,0.439016,0.806836,0.145764,0.621173,0.197848,0.79772,0.534604,0.626417,0.928467,0.220506,0.849337,0.934085,0.469914,0.258346,0.0221726,0.823399,0.618344,0.868647,0.776022,0.722629,0.937821,0.0299402,0.581138,0.71259,0.701935,0.305318,0.549735,0.354346,0.404336,0.137997,0.552399,0.20586,0.229785,0.020265,0.633362,0.323313,0.0673959,0.712938,0.700696,0.725933,0.385278,0.369002,0.477094,0.787441,0.536829,0.453119,0.130206,0.981302,0.531172,0.660886,0.969961,0.760518,0.702795,0.998346,0.1841,0.182694,0.945792,0.250097,0.628751,0.18056,0.240782,0.658833,0.374658,0.772138,0.0578852,0.610379,0.407419,0.177093,0.170861,0.90284,0.0939464,0.172353,0.41683,0.447962,0.471368,0.473621,0.127606,0.500663,0.126153,0.812224,0.250769,0.417704,0.564969,0.0466384,0.253099,0.833823,0.289181,0.872109,0.120617,0.753036,0.935402,0.749416,|0.369945,0.140278,0.439918,0.0944908,0.0112268,0.146731,0.994911,0.736721,0.045297,0.494242,0.0787101,0.688216,0.630605,0.247605,0.649697,0.385115,0.510228,0.870092,0.851938,0.744798,0.86925,0.552922,0.141866,0.364085,0.972695,0.590388,0.779519,0.2422,0.74738,0.0719337,0.261079,0.0353111,0.0544174,0.437717,0.0228885,0.719339,0.462091,0.115035,0.980205,0.429381,0.771675,0.376848,0.146176,0.994045,0.825157,0.455043,0.837009,0.509534,0.561662,0.695879,0.0549098,0.58192,0.884,0.272238,0.0644811,0.637099,0.448718,0.0892515,0.302649,0.144684,0.225122,0.885729,0.875188,0.346023,0.649257,0.264162,0.156333,0.896187,0.519213,0.316331,0.174183,0.791482,0.569778,0.100546,0.699986,0.696424,0.711975,0.567956,0.430996,0.983686,0.731199,0.73085,0.0908526,0.832671,0.53817,0.549914,0.067798,0.378837,0.504725,0.0175361,0.988216,0.0354394,0.541725,0.603608,0.265157,0.600762,0.181416,0.931281,0.512698,0.622036,0.240032,0.507128,0.287982,0.0570399,0.19879,0.0146124,0.780617,0.443534,0.473268,0.205202,0.561745,0.746391,0.0244136,0.596838,0.558096,0.958509,0.29932,0.547376,0.800003,0.22507,0.81913,0.14102,0.0601291,0.774063,0.418329,0.926474,0.965218,0.231602,0.977713,0.584189,0.667764,0.680617,0.170256,0.627785,0.153442,0.555673,0.254012,0.0639804,0.0692184,0.671145,0.362321,0.646834,0.0878475,0.111652,0.905278,0.998509,0.320564,0.890718,0.581429,0.11925,0.237943,0.778101,0.878565,0.243085,0.270402,0.925337,0.585312,0.547526,0.00934666,0.846022,0.672262,0.847324,0.714505,0.327802,0.00824952,0.0187536,0.459077,0.780596,0.621569,0.274039,0.0271737,0.944451,0.354246,0.177066,0.361086,0.679924,0.69585,0.917568,0.533372,0.905665,0.821753,0.730039,0.386317,0.970488,0.447167,0.923687,0.845751,0.917917,0.709684,0.896436,0.579313,0.810326,0.853289,0.0642242,0.844915,0.902509,0.821089,0.653296,0.410292,0.237713,0.550056,0.422105,0.417315,0.607093,0.56949,0.0217202,0.144161,0.00218201,0.332695,0.183728,0.530886,0.437638,0.847115,0.561257,0.694311,0.953644,0.208746,0.830928,0.512551,0.187012,0.864537,0.315851,0.433404,0.922159,0.549718,0.697654,0.00960183,0.642724,0.307412,0.931087,0.113996,0.621121,0.138656,0.0950848,0.0303122,0.391809,0.380491,0.655733,0.391802,0.454117,0.00699645,0.262922,0.759411,0.934141,0.889473,0.448744,0.401983,0.462873,0.717096,0.354157,0.446599,0.695917,0.176485,0.162759,0.49251,0.311912,0.762332,0.446045,0.19821,0.967914,0.673835,0.0757222,0.269003,0.99565,0.719586,0.227959,0.139492,0.0971248,0.411724,0.0607277,0.92945,0.946817,0.539213,0.527438,0.0158273,0.844549,0.841474,0.998143,0.417193,0.777294,0.523809,0.651703,0.306913,0.0280348,0.925026,0.0340034,0.472484,0.634955,0.144763,0.779869,0.0852624,0.35221,0.698923,0.29381,0.512193,0.842113,0.476622,0.156104,0.395574,0.804251,0.559939,0.180851,0.886565,0.192714,0.772627,0.238106,0.651233,0.345142,0.671887,0.939088,0.813676,0.354913,0.189583,0.235057,0.182376,0.405454,0.228977,0.0496199,0.0298814,0.597374,0.223294,0.857137,0.0288306,0.834754,0.777347,0.964683,0.700013,0.989988,0.713478,0.357647,0.335794,0.193448,0.415258,0.450763,0.992337,0.659538,0.478903,0.502184,0.60981,0.0222296,0.605935,0.339792,0.977482,0.945172,0.832904,0.179414,0.880613,0.381679,0.548039,0.524792,0.936819,0.915859,0.32328,0.290551,0.786615,0.427541,0.229245,0.458738,0.230435,0.125428,0.828784,0.913687,0.889698,0.867736,0.0644294,0.874933,0.487881,0.729288,0.811148,0.560092,0.538493,0.767527,0.757795,0.00734425,0.75084,0.989912,0.773902,0.51559,0.422925,0.63085,0.41533,0.904453,0.365944,0.216898,0.118647,0.586694,0.511375,0.749097,0.0613207,0.692881,0.963812,0.0395471,0.590225,0.124721,0.0720555,0.958773,0.0797535,0.0148165,0.444757,0.569413,0.0232468,0.969263,0.562487,0.853555,0.905418,0.0463847,0.669701,0.133383,0.56462,0.761672,0.775706,0.266164,0.8982,0.833746,0.634363,0.962375,0.328383,0.323499,0.580792,0.482414,0.536816,0.468573,0.328056,0.217184,0.324472,0.913677,0.210527,0.169353,0.372733,0.722776,0.912507,0.53593,0.789419,0.314963,0.105812,0.537568,0.9439,0.478129,0.155989,0.224976,0.406447,0.983328,0.183254,0.586702,0.215133,0.326255,0.00887895,0.762611,0.819694,0.0253771,0.00211966,0.363841,0.565255,0.891548,0.82553,0.0858806,0.685328,0.984623,0.912432,0.552338,0.573678,0.563804,0.0316834,0.222093,0.559487,0.803334,0.31885,0.988144,0.932497,0.272041,0.953189,0.951321,0.0387948,0.590462,0.961514,0.255944,0.326998,0.748413,0.0869083,0.816246,0.14877,0.639848,0.737069,0.585514,0.857196,0.0371612,0.97512,0.766219,0.395106,0.740219,0.871392,0.600128,0.31035,0.637573,0.676652,0.0123589,0.802137,0.703771,0.272569,0.014844,0.176419,0.0214979,0.366513,0.857425,0.242599,0.341124,0.0175605,0.812512,0.624096,0.253664,0.0754023,0.16631,0.339887,0.138341,0.235548,0.525757,0.40642,0.529439,0.940255,0.858475,0.220847,0.544241,0.17175,0.165503,0.334021,0.918083,0.829583,0.317059,0.140665,0.626003,0.403249,0.376339,0.0431591,0.591681,0.955793,0.531879,0.353025,0.446313,0.849172,0.120515,0.474391,0.432373,0.428018,0.477442,0.943354,0.47153,0.691933,0.43161,0.615719,0.364072,0.464922,0.881726,0.851267,0.645531,0.533477,0.684521,0.772443,0.492053,0.831172,0.245153,0.667482,0.0657109,0.987201,0.825928,0.37298,0.972418,0.155246,0.121863,0.0243637,0.0579596,0.967007,0.272103,0.979905,0.8794,0.234923,0.575892,0.57124,0.498273,0.267796,0.71076,0.404214,0.337757,0.901011,0.26118,0.62905,0.579678,0.774223,0.689662,0.585222,0.606038,0.104289,0.527324,0.217994,0.323464,0.516358,0.894853,0.494963,0.105789,0.563543,0.168329,0.65156,0.850636,0.426128,0.196175,0.846872,0.877988,0.00811243,0.155835,0.928243,0.193685,0.882052,0.883431,0.698341,0.00775284,0.414301,0.302312,0.197094,0.707466,0.768659,0.139511,0.600002,0.501348,0.461612,0.806123,0.49366,0.0391164,0.772436,0.366635,0.688501,0.223004,0.897099,0.809347,0.380901,0.67831,0.105708,0.666144,0.0443953,0.83376,0.655672,0.332117,0.908885,0.0145135,0.728492,0.98165,0.894193,0.18501,0.836719,0.908132,0.308895,0.81265,0.433675,0.672501,0.208301,0.736778,0.99252,0.0404436,0.898344,0.296104,0.325037,0.943399,0.914905,0.498429,0.353523,0.66979,0.55385,0.262042,0.191094,0.97805,0.975108,0.651127,0.298891,0.924718,0.385063,0.779893,0.361041,0.116492,0.528379,0.948655,0.387322,0.686042,0.673615,0.65919,0.242109,0.091671,0.883108,0.844192,0.247035,0.531951,0.409477,0.00956541,0.43493,0.421337,0.431828,0.749146,0.243139,0.953407,0.407341,0.777904,0.788588,0.478941,0.203387,0.0439686,0.14576,0.897162,0.129454,0.356701,0.921785,0.454921,0.711158,0.151649,0.493844,0.928928,0.548021,0.245154,0.0499045,0.946774,0.732855,0.71889,0.131729,0.472336,0.9326,0.53507,0.624429,0.0213566,0.471799,0.0425329,0.640808,0.45185,0.184497,0.358022,0.135503,0.255088,0.295721,0.839207,0.434653,0.764877,0.858964,0.463574,0.66199,0.288555,0.378653,0.516232,0.398701,0.917742,0.00472194,0.212458,0.196239,0.829907,0.995679,0.800266,0.808544,0.34827,0.485802,0.385895,0.763204,0.756512,0.303689,0.299423,0.755343,0.557165,0.86727,0.26208,0.25302,0.188354,0.053588,0.376548,0.0857553,0.225611,0.727364,0.0321776,0.942674,0.296129,0.915203,0.663914,0.124696,0.0163029,0.93934,0.0985581,0.353046,0.910218,0.0691387,0.766466,0.184009,0.0324822,0.727507,0.907619,0.716294,0.250565,0.408427,0.0701645,0.543588,0.53601,0.291624,0.984541,0.257554,0.745124,0.641434,0.685483,0.775564,0.624833,0.527784,0.996803,0.85152,0.211728,0.420481,0.932981,0.475064,0.716201,0.0417472,0.617009,0.535389,0.982849,0.61409,0.972759,0.354478,0.673007,0.464104,0.52161,0.760699,0.176672,0.800164,0.657731,0.122414,0.542532,0.701627,0.916441,0.154579,0.471665,0.547463,0.920874,0.0795002,0.510608,0.208369,0.81429,0.476654,0.733991,0.31623,0.931388,0.979563,0.742675,0.342779,0.115375,0.352551,0.0765099,0.969451,0.366048,0.462856,0.247959,0.0508761,0.740235,0.361027,0.400838,0.421553,0.992397,0.837765,0.778826,0.449045,0.935601,0.519385,0.813627,0.404727,0.370059,0.735113,0.866349,0.47952,0.239172,0.865885,0.459906,0.821333,0.946604,0.671477,0.677424,0.0192789,0.876616,0.10533,0.673035,0.946031,0.857899,0.318283,0.63467,0.0213326,0.0768369,0.390049,0.839169,0.661552,0.794437,0.069313,0.504589,0.235224,0.533723,0.376142,0.975108,0.410511,0.078612,0.929429,0.574416,0.901052,0.678186,0.0267503,0.0683283,0.00143152,0.159574,0.242317,0.353941,0.942508,0.993497,0.0225277,0.383994,0.638559,0.980045,0.34292,0.910367,0.316266,0.03851,0.529858,0.346457,0.812997,0.40174,0.378075,0.846313,0.355595,0.0680634,0.91579,0.861371,0.943641,0.254958,0.458178,0.492903,0.23745,0.937932,0.938857,0.35102,0.692516,0.658451,0.667418,0.692985,0.672401,0.520578,0.0555338,0.505503,0.53304,0.313735,0.675509,0.350549,0.453752,0.44367,0.374506,0.682107,0.899115,0.832379,0.294872,0.23244,0.943774,0.160163,0.986465,0.568124,0.606193,0.984799,0.772002,0.160202,0.19617,0.922774,0.121273,0.889261,0.590741,0.405763,0.155989,0.00309491,0.0791912,0.457195,0.388747,0.591665,0.0906952,0.301646,0.930128,0.295154,0.909725,0.258942,0.637468,0.251576,0.507683,0.279673,0.236466,0.856068,0.17948,0.487601,0.0631936,0.584746,0.0469133,0.529554,0.637557,0.899327,0.350849,0.311261,0.584399,0.66647,0.646527,0.405122,0.898325,0.868795,|0.0751585,0.400323,0.201479,0.372582,0.109336,0.452604,0.615854,0.119934,0.605756,0.572807,0.380267,0.825948,0.470216,0.527895,0.095561,0.913226,0.411847,0.814358,0.604711,0.226216,0.895134,0.677302,0.74794,0.0218159,0.597162,0.864087,0.707128,0.945727,0.617041,0.335918,0.235421,0.119695,0.681668,0.628475,0.252688,0.537037,0.300257,0.761692,0.117426,0.123505,0.762884,0.277291,0.433652,0.309269,0.190281,0.229533,0.234812,0.150005,0.0455401,0.61287,0.998608,0.337004,0.872288,0.218778,0.0839466,0.631351,0.870913,0.72242,0.511109,0.066744,0.352087,0.794538,0.387702,0.22514,0.0914233,0.0978658,0.0914067,0.858518,0.317689,0.291946,0.408059,0.73863,0.103213,0.421375,0.66129,0.452789,0.243904,0.666363,0.751575,0.676752,0.2631,0.0915387,0.592162,0.271661,0.306532,0.684928,0.409859,0.394172,0.925145,0.731913,0.549487,0.623669,0.693402,0.87357,0.409203,0.958318,0.842646,0.560942,0.735209,0.880276,0.232942,0.854403,0.0736067,0.165133,0.331747,0.803379,0.757248,0.101588,0.744328,0.188017,0.949869,0.391769,0.340921,0.496882,0.0683864,0.764181,0.171204,0.961978,0.76898,0.152348,0.90639,0.809403,0.848187,0.855885,0.00888938,0.476029,0.0497472,0.152124,0.474098,0.805648,0.95863,0.354969,0.144854,0.609402,0.0011577,0.0519468,0.826274,0.623499,0.235192,0.781662,0.779876,0.546041,0.919626,0.25357,0.816332,0.680203,0.141661,0.923279,0.341477,0.720788,0.529681,0.0193338,0.211199,0.874891,0.027786,0.106871,0.287618,0.292502,0.575279,0.375277,0.114839,0.411721,0.279144,0.981751,0.277247,0.0948164,0.421512,0.207617,0.529992,0.631412,0.595628,0.248339,0.944384,0.341646,0.459642,0.835212,0.651651,0.625203,0.750713,0.821897,0.869455,0.0607304,0.048128,0.246334,0.539854,0.585113,0.709616,0.999342,0.24261,0.924537,0.701669,0.876114,0.168262,0.265207,0.982576,0.634083,0.790569,0.652756,0.341624,0.352684,0.817004,0.556972,0.667934,0.803479,0.110748,0.775595,0.954739,0.947867,0.155873,0.730334,0.204683,0.794621,0.0284407,0.880367,0.750482,0.737499,0.39411,0.0309115,0.910053,0.204485,0.737644,0.678322,0.00996423,0.815765,0.942132,0.990794,0.321124,0.233142,0.197349,0.557894,0.0846218,0.155034,0.0375133,0.336038,0.204864,0.158026,0.45845,0.440377,0.197716,0.0377317,0.0628557,0.676963,0.272808,0.91557,0.374437,0.18893,0.30307,0.920415,0.926859,0.0366886,0.628229,0.729457,0.626946,0.61906,0.318126,0.158784,0.576006,0.620652,0.822484,0.738333,0.86792,0.417635,0.435425,0.545182,0.583698,0.794612,0.838029,0.32034,0.247692,0.758909,0.641974,0.125683,0.0129644,0.289771,0.808404,0.0346746,0.641522,0.527925,0.487943,0.43357,0.775702,0.327706,0.746631,0.981166,0.378304,0.568478,0.870346,0.0667059,0.833029,0.688446,0.294311,0.908687,0.0901042,0.376193,0.391381,0.639148,0.885105,0.147815,0.663172,0.0732974,0.402827,0.0108548,0.703404,0.701579,0.415753,0.692508,0.856638,0.0894554,0.838873,0.617437,0.268588,0.2744,0.798479,0.216561,0.78862,0.206013,0.452298,0.835395,0.591137,0.967454,0.80157,0.737181,0.36599,0.357198,0.465309,0.795979,0.194058,0.144392,0.186037,0.395037,0.747966,0.0587361,0.144743,0.181815,0.152112,0.459227,0.390739,0.203132,0.322596,0.249478,0.810988,0.774696,0.778511,0.165454,0.620268,0.485312,0.458018,0.785671,0.936103,0.682258,0.143791,0.924061,0.973336,0.339895,0.507709,0.00375605,0.0224292,0.433934,0.892029,0.657819,0.123292,0.26337,0.925472,0.590692,0.630458,0.699758,0.464728,0.30702,0.694849,0.310731,0.137929,0.967654,0.0227653,0.621011,0.561612,0.191385,0.625045,0.971893,0.935074,0.657494,0.931533,0.672491,0.329787,0.423893,0.771827,0.844517,0.344655,0.286712,0.869859,0.910897,0.966088,0.787105,0.31173,0.100819,0.1013,0.0524533,0.530309,0.159532,0.150616,0.906074,0.171363,0.546602,0.630502,0.64963,0.900422,0.0902401,0.225877,0.350195,0.894573,0.327593,0.0614906,0.656702,0.728416,0.614099,0.595078,0.586541,0.102615,0.754671,0.296786,0.886546,0.526306,0.388757,0.471853,0.841184,0.513974,0.208399,0.609715,0.622147,0.370412,0.491081,0.0617663,0.551859,0.267321,0.411677,0.824019,0.0419106,0.783271,0.918258,0.614743,0.13601,0.935584,0.389713,0.0678682,0.467911,0.878317,0.351596,0.176978,0.516197,0.545657,0.714203,0.611447,0.449512,0.646698,0.930835,0.831747,0.415428,0.86494,0.758949,0.527484,0.378319,0.627248,0.198042,0.970474,0.535765,0.0464851,0.808052,0.0018602,0.57301,0.442781,0.96075,0.702237,0.826917,0.974129,0.953268,0.974144,0.55646,0.0796416,0.77277,0.193511,0.841449,0.411099,0.782022,0.955952,0.229904,0.28892,0.260757,0.947153,0.512811,0.139679,0.955832,0.910128,0.843187,0.500892,0.950278,0.914623,0.792026,0.485699,0.0880044,0.140632,0.579042,0.771871,0.975793,0.301065,0.352033,0.304078,0.121848,0.84183,0.582761,0.516194,0.0463354,0.532273,0.645905,0.818059,0.64517,0.274852,0.723688,0.43738,0.264877,0.733313,0.484208,0.659508,0.269198,0.710176,0.848658,0.0825311,0.615558,0.894591,0.182704,0.744412,0.691947,0.238462,0.755616,0.459804,0.714206,0.154323,0.954139,0.249157,0.0771896,0.995706,0.276459,0.545069,0.474855,0.098963,0.407482,0.901557,0.853816,0.845267,0.983555,0.00801444,0.65335,0.347167,0.00832087,0.164059,0.862623,0.473859,0.826949,0.190377,0.786853,0.187726,0.660586,0.597068,0.55783,0.388041,0.6798,0.718573,0.779231,0.153483,0.465633,0.888366,0.0702118,0.0204468,0.119653,0.855759,0.889857,0.342507,0.648728,0.461324,0.34555,0.361656,0.555718,0.526652,0.681827,0.229686,0.80544,0.943261,0.311417,0.939392,0.4105,0.0991245,0.0660529,0.678004,0.27915,0.244615,0.429051,0.726002,0.366716,0.406244,0.474626,0.298527,0.0612831,0.88503,0.178505,0.120855,0.503819,0.147705,0.31603,0.629876,0.76677,0.216842,0.472941,0.34929,0.35571,0.923304,0.950465,0.835452,0.369195,0.797546,0.68454,0.166967,0.47283,0.0913931,0.726566,0.669715,0.0716048,0.305093,0.411019,0.690152,0.723269,0.0915219,0.829835,0.0438393,0.0848191,0.784194,0.0858886,0.550412,0.55888,0.142895,0.80563,0.0574611,0.791809,0.384787,0.512993,0.454195,0.821552,0.743306,0.131358,0.252628,0.911778,0.810459,0.453819,0.168846,0.00266355,0.492989,0.0126688,0.82037,0.347805,0.999559,0.560181,0.113208,0.607183,0.0584702,0.844804,0.72299,0.901552,0.55853,0.108629,0.47694,0.00170434,0.516992,0.668724,0.569092,0.154974,0.870764,0.254106,0.0021798,0.20243,0.28884,0.358032,0.685711,0.418499,0.294476,0.623558,0.615284,0.456637,0.600459,0.477794,0.895523,0.817847,0.231577,0.64767,0.833983,0.263416,0.920946,0.561949,0.944851,0.278608,0.372449,0.771254,0.149,0.813791,0.738002,0.447243,0.658626,0.296732,0.79948,0.360145,0.470601,0.549789,0.736999,0.593019,0.522099,0.191322,0.45664,0.730738,0.546249,0.55259,0.070452,0.216786,0.765839,0.450278,0.313401,0.211358,0.31543,0.729908,0.785924,0.393477,0.25232,0.526111,0.566327,0.0564529,0.559236,0.991121,0.880086,0.171175,0.881967,0.907567,0.878604,0.869283,0.234434,0.191602,0.0243916,0.260303,0.0647067,0.0681628,0.117801,0.155327,0.0692831,0.100948,0.859106,0.291064,0.321815,0.130616,0.617481,0.119649,0.259637,0.233919,0.311896,0.642355,0.415214,0.814096,0.217114,0.730313,0.471183,0.874089,0.662252,0.808011,0.153368,0.962983,0.201248,0.0265934,0.257102,0.352578,0.49157,0.621712,0.635914,0.631424,0.486864,0.0714645,0.24113,0.566801,0.155244,0.735956,0.333659,0.646249,0.24504,0.522991,0.736401,0.212429,0.743625,0.649094,0.579429,0.295203,0.0304616,0.399479,0.40749,0.155875,0.80727,0.923446,0.228035,0.615693,0.440227,0.357679,0.470787,0.4953,0.318043,0.970819,0.518239,0.0375168,0.0823197,0.790422,0.120316,0.338305,0.798113,0.453869,0.782847,0.291884,0.876932,0.535431,0.649408,0.780779,0.928472,0.988947,0.251429,0.133497,0.318163,0.409993,0.478687,0.873629,0.809287,0.631753,0.65058,0.426556,0.571897,0.361471,0.483006,0.40889,0.765079,0.32638,0.905465,0.269967,0.400315,0.763464,0.344774,0.435075,0.805353,0.668693,0.711369,0.204076,0.499598,0.622308,0.439942,0.589307,0.0258101,0.959209,0.787381,0.99691,0.676732,0.850549,0.487341,0.922939,0.973816,0.720856,0.245081,0.0972435,0.516081,0.118031,0.869743,0.285252,0.771102,0.548909,0.773488,0.483938,0.907761,0.53705,0.328823,0.328147,0.0542235,0.912768,0.158314,0.146998,0.977995,0.786712,0.0735507,0.249248,0.769085,0.813956,0.795231,0.494855,0.164877,0.911439,0.58465,0.50517,0.359647,0.695122,0.795592,0.881071,0.0849094,0.745141,0.369192,0.520986,0.324009,0.457001,0.235606,0.831543,0.18043,0.804502,0.511948,0.4314,0.970261,0.821298,0.235557,0.414109,0.315698,0.35974,0.503252,0.794063,0.214428,0.00178581,0.630634,0.36151,0.183991,0.815887,0.625357,0.127365,0.361005,0.636109,0.938577,0.214109,0.0452856,0.719949,0.788256,0.124284,0.795334,0.240764,0.269877,0.97237,0.330244,0.0122785,0.642154,0.0832765,0.215271,0.0324117,0.222148,0.670398,0.378622,0.100636,0.770773,0.13051,0.541928,0.0029524,0.466934,0.529624,0.881443,0.440411,0.812114,0.637518,0.597385,0.751843,0.0858334,0.480042,0.998188,0.713409,0.929765,0.125672,0.6343,0.454724,0.666614,0.273167,0.0493091,0.0152181,0.205124,0.805017,0.359606,0.894563,0.28766,0.164981,0.856829,0.170058,0.375922,0.246748,0.948104,0.471558,0.91522,0.168503,0.890597,0.364246,0.370728,0.69732,0.333608,0.407571,0.278222,0.541559,0.920473,0.766656,0.879771,0.619248,0.646029,0.192383,0.907567,0.685823,|0.882906,0.493191,0.426251,0.106601,0.46182,0.85481,0.544123,0.663493,0.529723,0.551831,0.234334,0.509312,0.467914,0.214544,0.673726,0.109443,0.37122,0.102297,0.529773,0.929714,0.332508,0.657237,0.870528,0.419675,0.752409,0.292917,0.750935,0.673709,0.158293,0.797754,0.996347,0.102804,0.703185,0.884045,0.572838,0.65263,0.758044,0.997757,0.486153,0.782019,0.473887,0.921019,0.801727,0.992694,0.732187,0.315549,0.0134516,0.0590882,0.380851,0.363319,0.38355,0.951707,0.710373,0.89173,0.354872,0.476941,0.0678582,0.816468,0.861608,0.840946,0.190995,0.39435,0.602028,0.595634,0.98253,0.235393,0.479226,0.306168,0.927535,0.00623459,0.0790582,0.292398,0.767594,0.638988,0.25149,0.263121,0.21752,0.784289,0.370042,0.641423,0.238537,0.184088,0.263988,0.683136,0.0803168,0.6507,0.71415,0.633398,0.466939,0.0315247,0.161888,0.0228032,0.259696,0.834096,0.386624,0.825013,0.385993,0.625181,0.092083,0.561599,0.624655,0.812417,0.986745,0.288093,0.760145,0.299623,0.728398,0.799563,0.770816,0.334232,0.874705,0.113756,0.940165,0.528913,0.852083,0.9559,0.851307,0.793705,0.563704,0.278254,0.848538,0.493931,0.155073,0.933605,0.41419,0.0845433,0.745563,0.410477,0.87521,0.221985,0.318369,0.0766515,0.109883,0.0736242,0.437896,0.50488,0.0542869,0.95792,0.85281,0.228896,0.00558007,0.985814,0.989053,0.717108,0.444173,0.168232,0.901351,0.354837,0.332336,0.696599,0.585037,0.589993,0.740135,0.393297,0.0804828,0.64267,0.913954,0.565344,0.567049,0.298942,0.420667,0.370118,0.0677941,0.0797839,0.522537,0.980582,0.566809,0.468852,0.581078,0.358531,0.716244,0.773237,0.17357,0.637596,0.214322,0.375988,0.231136,0.185652,0.708567,0.166846,0.532553,0.121962,0.557629,0.876395,0.131253,0.454452,0.458847,0.11217,0.150121,0.73235,0.104809,0.485422,0.692374,0.818683,0.270519,0.9748,0.366109,0.161096,0.702369,0.138304,0.410225,0.367176,0.125277,0.723786,0.294563,0.951447,0.340294,0.725897,0.0674538,0.18632,0.31824,0.00388849,0.721139,0.517106,0.383532,0.0994746,0.559465,0.81686,0.987794,0.990202,0.492359,0.268727,0.0562019,0.856936,0.0765392,0.413586,0.379898,0.775548,0.734295,0.873629,0.432988,0.659088,0.573338,0.182908,0.720963,0.210549,0.227719,0.618236,0.311857,0.744384,0.555431,0.130662,0.591023,0.198782,0.727675,0.74038,0.0766082,0.949528,0.809485,0.530661,0.861499,0.344732,0.646564,0.6314,0.95997,0.990503,0.42395,0.107255,0.326196,0.457865,0.389906,0.629199,0.87463,0.691808,0.267663,0.869342,0.801305,0.512283,0.647325,0.380553,0.723449,0.682841,0.236714,0.252468,0.453682,0.0246809,0.833217,0.337884,0.312676,0.503831,0.589023,0.636439,0.262274,0.137693,0.582553,0.736418,0.796917,0.564827,0.751942,0.725626,0.98022,0.555219,0.668474,0.723607,0.760647,0.780088,0.99941,0.638375,0.765761,0.527387,0.0699482,0.627277,0.0194719,0.465688,0.950308,0.522268,0.479396,0.679675,0.557416,0.775036,0.27242,0.25839,0.418823,0.394987,0.00326997,0.771328,0.776567,0.763652,0.645188,0.975042,0.0260468,0.441171,0.160371,0.859672,0.709381,0.220229,0.801844,0.524306,0.407605,0.206335,0.693849,0.817156,0.208138,0.537553,0.932545,0.303832,0.77611,0.601817,0.0874954,0.410086,0.0110067,0.531739,0.958301,0.851504,0.774823,0.879613,0.32859,0.254234,0.466259,0.371661,0.563824,0.116546,0.561575,0.421139,0.308594,0.0578964,0.875409,0.163575,0.215858,0.847479,0.232468,0.753365,0.44375,0.282169,0.480675,0.907812,0.331726,0.437219,0.80769,0.589299,0.392092,0.660853,0.0997462,0.959753,0.932544,0.774822,0.84027,0.169342,0.639334,0.432429,0.629637,0.674756,0.81252,0.813386,0.762268,0.344276,0.148402,0.414854,0.758328,0.961007,0.674484,0.119413,0.629478,0.328472,0.252919,0.882916,0.142254,0.968178,0.383007,0.995133,0.528631,0.822102,0.0400645,0.138408,0.601356,0.581326,0.290252,0.267033,0.0937022,0.744322,0.335036,0.658561,0.0282609,0.880902,0.0865121,0.256973,0.276827,0.190395,0.443556,0.467631,0.911714,0.210963,0.467127,0.750087,0.462331,0.636045,0.158966,0.279002,0.0921711,0.753603,0.625508,0.314179,0.357313,0.685258,0.243388,0.145921,0.500848,0.129352,0.972448,0.778688,0.635569,0.996154,0.876851,0.269391,0.285215,0.781128,0.413361,0.906858,0.978002,0.706319,0.908917,0.567583,0.31478,0.016503,0.0789627,0.564448,0.229453,0.137934,0.543918,0.500756,0.396345,0.61788,0.396496,0.484078,0.344614,0.801719,0.0932149,0.643309,0.389836,0.939863,0.390962,0.843508,0.126753,0.117916,0.0383134,0.391133,0.24838,0.590669,0.748668,0.90664,0.221395,0.121119,0.913499,0.0515025,0.193259,0.623012,0.75283,0.656006,0.703721,0.67811,0.00910383,0.50813,0.396163,0.463408,0.0447229,0.881708,0.351642,0.314083,0.231395,0.889866,0.393358,0.6765,0.243751,0.961441,0.0280133,0.959463,0.874014,0.473886,0.683272,0.509894,0.575064,0.617554,0.654119,0.878985,0.0317903,0.436119,0.213388,0.0145829,0.497669,0.851337,0.467842,0.905071,0.129095,0.541604,0.713758,0.995744,0.783425,0.579071,0.122849,0.183506,0.32769,0.0364598,0.963853,0.366793,0.777806,0.273806,0.894167,0.581909,0.775778,0.0733613,0.555344,0.0378804,0.820015,0.229299,0.746933,0.133727,0.088107,0.0506405,0.100179,0.17883,0.87812,0.930556,0.0544034,0.768828,0.147228,0.076772,0.737632,0.926788,0.776756,0.677745,0.911568,0.201542,0.51354,0.666908,0.426277,0.794214,0.907249,0.457452,0.473176,0.265887,0.465383,0.970704,0.938949,0.232785,0.994015,0.193209,0.794192,0.90831,0.645867,0.160754,0.982143,0.78552,0.387908,0.941463,0.27565,0.295027,0.242408,0.628532,0.365458,0.936607,0.183559,0.963674,0.562725,0.869872,0.259497,0.584286,0.34292,0.787968,0.82218,0.382453,0.429772,0.577629,0.0481727,0.348513,0.940585,0.948475,0.190076,0.248584,0.4899,0.0186069,0.381707,0.926544,0.122722,0.660229,0.532033,0.864705,0.338686,0.699027,0.053769,0.344124,0.355139,0.171976,0.0054906,0.522805,0.131887,0.805641,0.342189,0.0376784,0.731921,0.190007,0.985242,0.0101577,0.180002,0.512662,0.229357,0.262111,0.501633,0.223834,0.327522,0.16069,0.769517,0.00607824,0.586205,0.496762,0.209605,0.549746,0.127816,0.449707,0.176383,0.606811,0.572277,0.462621,0.249082,0.432053,0.195178,0.371192,0.104463,0.253287,0.111865,0.749908,0.818742,0.555297,0.682671,0.363823,0.611636,0.477241,0.181543,0.380899,0.396542,0.85174,0.714032,0.701709,0.505802,0.901917,0.243043,0.0734977,0.239232,0.50476,0.30983,0.0340496,0.0562907,0.133298,0.238971,0.644743,0.848953,0.862114,0.756559,0.989755,0.779579,0.142071,0.540882,0.00222892,0.768981,0.745831,0.749483,0.423439,0.684367,0.991862,0.813227,0.142203,0.00510079,0.00717223,0.534538,0.524159,0.517021,0.57328,0.964537,0.657547,0.112312,0.0307434,0.0942682,0.906263,0.160894,0.597799,0.64195,0.801834,0.313056,0.687722,0.235995,0.900331,0.680739,0.416523,0.615745,0.553848,0.0971051,0.311746,0.40015,0.0344461,0.625575,0.356874,0.456068,0.42243,0.184798,0.192398,0.748826,0.540991,0.123297,0.47949,0.183649,0.160154,0.237216,0.242144,0.311485,0.710515,0.770135,0.729002,0.188006,0.11761,0.0234975,0.955173,0.819484,0.837875,0.596143,0.862082,0.0897744,0.220123,0.798445,0.803967,0.304911,0.371529,0.0870975,0.106885,0.518233,0.908782,0.0230766,0.533239,0.550792,0.333484,0.472351,0.412611,0.618234,0.769509,0.273814,0.79477,0.50985,0.0603505,0.335132,0.176178,0.0884449,0.603132,0.833013,0.504225,0.462223,0.579537,0.281931,0.518786,0.944072,0.571825,0.551054,0.31099,0.764153,0.103501,0.513243,0.983725,0.48293,0.120641,0.550888,0.00610608,0.593092,0.759761,0.272174,0.668652,0.123388,0.590189,0.0109317,0.628673,0.0279099,0.465882,0.562516,0.480152,0.307077,0.496351,0.114709,0.193332,0.0435758,0.508294,0.357717,0.103336,0.797991,0.0855759,0.0958439,0.569923,0.36227,0.731158,0.334155,0.0103763,0.388972,0.435522,0.630705,0.546744,0.228932,0.374768,0.873805,0.434557,0.17825,0.241582,0.849082,0.497555,0.56649,0.909556,0.557291,0.890021,0.868372,0.546725,0.843774,0.890696,0.709918,0.244868,0.680853,0.863685,0.958335,0.41723,0.222633,0.0364841,0.494082,0.0271292,0.361105,0.987414,0.349207,0.045971,0.0633804,0.384773,0.216122,0.408743,0.222013,0.968223,0.89822,0.746411,0.355788,0.415554,0.112141,0.48,0.0234989,0.757396,0.578366,0.0831116,0.336484,0.346364,0.345466,0.280724,0.957192,0.131851,0.945258,0.554494,0.0852488,0.0598443,0.232627,0.944603,0.584393,0.696518,0.109904,0.623999,0.980469,0.342676,0.473074,0.826857,0.487342,0.462368,0.758838,0.912176,0.133725,0.89017,0.316648,0.731884,0.218283,0.951488,0.361169,0.69771,0.69448,0.23663,0.218343,0.313033,0.873821,0.045324,0.472589,0.520201,0.0388678,0.322997,0.210633,0.892979,0.965984,0.603182,0.0796916,0.0491154,0.644303,0.870574,0.528799,0.0369253,0.679868,0.667914,0.755404,0.567684,0.355627,0.154454,0.716343,0.432786,0.674696,0.559871,0.704585,0.999945,0.853895,0.0502549,0.427526,0.821133,0.665398,0.779637,0.654171,0.951594,0.59592,0.836696,0.282547,0.80335,0.95871,0.221133,0.823748,0.731251,0.669498,0.770468,0.600235,0.590302,0.449532,0.190585,0.280634,0.256702,0.0907406,0.644823,0.154077,0.68092,0.780321,0.596373,0.822216,0.975919,0.423082,0.0423769,0.792355,0.975187,0.913969,0.927469,0.197999,0.28385,0.731224,0.291654,0.618065,0.196081,0.328377,0.775617,0.698675,0.297292,0.402583,0.462508,0.522838,0.573856,0.640036,0.763761,0.760565,0.863661,0.97004,0.654142,0.399451,0.245392,|0.249197,0.100565,0.483159,0.166711,0.163111,0.230004,0.69337,0.401569,0.631572,0.523561,0.841178,0.760427,0.412486,0.582972,0.575328,0.276738,0.778766,0.290969,0.465645,0.297246,0.0465333,0.472096,0.179629,0.746206,0.411392,0.256699,0.148726,0.0197699,0.0342568,0.296096,0.259625,0.0622312,0.172369,0.580367,0.0775261,0.531116,0.000613093,0.693509,0.476968,0.330779,0.880087,0.87011,0.455228,0.00754136,0.50956,0.852859,0.343614,0.0537442,0.796462,0.0723851,0.706266,0.915358,0.655899,0.989541,0.410685,0.98413,0.634543,0.424712,0.821618,0.513418,0.0527932,0.711979,0.232821,0.880099,0.542007,0.674581,0.599818,0.575558,0.16558,0.521,0.323216,0.969488,0.178681,0.0434884,0.894417,0.410204,0.425201,0.0743539,0.609057,0.0547343,0.237681,0.860173,0.024096,0.664909,0.401481,0.287016,0.468501,0.769261,0.956147,0.426196,0.439606,0.406401,0.140206,0.401325,0.416123,0.302808,0.0903124,0.798737,0.101887,0.730456,0.853074,0.390761,0.138826,0.272967,0.0849223,0.739137,0.202756,0.519065,0.990475,0.238756,0.738934,0.0537902,0.255841,0.932882,0.102983,0.628259,0.0639542,0.248226,0.226032,0.737508,0.426203,0.0320572,0.128158,0.491513,0.604169,0.392675,0.53049,0.251088,0.720728,0.240059,0.142238,0.100784,0.545191,0.858915,0.887789,0.467278,0.125822,0.696827,0.76961,0.773844,0.263265,0.187799,0.561259,0.85443,0.159562,0.173202,0.243974,0.446089,0.0380859,0.461922,0.148611,0.266273,0.84966,0.366321,0.814199,0.0545118,0.38344,0.851256,0.451183,0.927569,0.468105,0.671144,0.646711,0.0791367,0.332172,0.352656,0.603088,0.39125,0.644861,0.323124,0.222287,0.596955,0.13595,0.722735,0.329163,0.955684,0.882978,0.290269,0.948518,0.0748531,0.177222,0.547626,0.636688,0.489291,0.208447,0.456531,0.692754,0.527683,0.567108,0.397045,0.270903,0.442801,0.271002,0.872162,0.727223,0.968045,0.410835,0.210001,0.98665,0.837352,0.649044,0.470707,0.5253,0.0639278,0.777052,0.789907,0.533201,0.148834,0.157788,0.676323,0.96815,0.0131433,0.25111,0.360527,0.219411,0.273721,0.420106,0.42934,0.648297,0.881524,0.862637,0.336074,0.724577,0.539018,0.956687,0.210021,0.398211,0.289449,0.979158,0.532316,0.805763,0.533506,0.639853,0.196619,0.31064,0.746897,0.365162,0.211995,0.411559,0.583788,0.575017,0.458699,0.629712,0.005606,0.0293589,0.163431,0.654899,0.367217,0.657726,0.852263,0.501774,0.672762,0.829453,0.728902,0.378373,0.00953257,0.983572,0.947979,0.935106,0.451984,0.536343,0.70137,0.43214,0.677887,0.109727,0.170031,0.383745,0.0573029,0.362957,0.174708,0.537418,0.186157,0.17648,0.127025,0.483855,0.0334623,0.10279,0.0188826,0.403003,0.2727,0.19144,0.964676,0.504796,0.190706,0.034133,0.329467,0.156028,0.998618,0.0428216,0.521243,0.293319,0.352662,0.132422,0.52065,0.335148,0.0709259,0.226639,0.292591,0.453287,0.626044,0.448638,0.444075,0.0587578,0.533629,0.516172,0.648209,0.49073,0.923038,0.308898,0.446254,0.371578,0.00521463,0.990523,0.983765,0.290281,0.327563,0.795955,0.786269,0.886456,0.969887,0.805067,0.541712,0.451119,0.62997,0.102756,0.785187,0.8542,0.971,0.445011,0.961906,0.812633,0.635108,0.539065,0.745763,0.102287,0.721225,0.583883,0.763978,0.65159,0.101583,0.93275,0.505919,0.503107,0.893747,0.376833,0.331109,0.492087,0.648839,0.0592853,0.296177,0.306002,0.278246,0.200214,0.230808,0.48111,0.781233,0.810402,0.614961,0.538311,0.306669,0.086746,0.139894,0.908182,0.252701,0.544555,0.981735,0.0362954,0.637091,0.193356,0.339914,0.412778,0.0598224,0.644872,0.949355,0.180662,0.253806,0.400558,0.846484,0.18291,0.606285,0.737106,0.174708,0.97304,0.224466,0.41089,0.152843,0.14223,0.63069,0.570184,0.113398,0.996421,0.971637,0.598538,0.173089,0.115938,0.372184,0.224148,0.726783,0.150507,0.441042,0.00110584,0.693981,0.0801737,0.349278,0.876422,0.045486,0.916075,0.560612,0.28542,0.333959,0.118104,0.360341,0.430225,0.753826,0.31279,0.403138,0.290965,0.924418,0.0929633,0.195406,0.167788,0.177479,0.484246,0.359312,0.0622093,0.957351,0.392536,0.664353,0.196346,0.884693,0.0964674,0.337867,0.340389,0.137793,0.439199,0.856765,0.248524,0.451952,0.0109536,0.67743,0.656022,0.158009,0.790517,0.340182,0.094499,0.61605,0.338998,0.896927,0.187725,0.133534,0.538415,0.611513,0.103401,0.00572008,0.525237,0.270041,0.587234,0.300673,0.561697,0.410085,0.647039,0.811313,0.017619,0.972319,0.0421515,0.0665628,0.8381,0.289431,0.204387,0.301443,0.249958,0.110806,0.522872,0.811909,0.885704,0.121052,0.284047,0.563215,0.895651,0.211418,0.163395,0.158872,0.308902,0.952068,0.167686,0.569014,0.866897,0.522022,0.986366,0.0399414,0.621596,0.0292558,0.395307,0.380893,0.361368,0.294753,0.190879,0.708866,0.216971,0.103945,0.969465,0.882463,0.728401,0.60047,0.660456,0.66039,0.898277,0.79072,0.431008,0.00147891,0.80205,0.264588,0.901291,0.442193,0.364626,0.679252,0.804999,0.0736685,0.484441,0.766202,0.267894,0.521227,0.107057,0.900081,0.84753,0.954767,0.594435,0.0624721,0.297064,0.488117,0.615997,0.658443,0.753892,0.389331,0.094443,0.419311,0.282624,0.127982,0.833673,0.623187,0.0650881,0.201381,0.194848,0.604417,0.756451,0.893997,0.675542,0.807012,0.124243,0.988604,0.648749,0.227314,0.881777,0.244197,0.341838,0.364114,0.757439,0.0515935,0.830509,0.336735,0.561204,0.871668,0.814086,0.426564,0.61431,0.565192,0.319499,0.603016,0.350152,0.610515,0.353369,0.822883,0.126299,0.22106,0.638379,0.323679,0.377559,0.333219,0.367733,0.175532,0.122196,0.514715,0.806267,0.382637,0.665565,0.815207,0.264398,0.878446,0.440526,0.0507936,0.540398,0.592847,0.213528,0.840025,0.238174,0.294315,0.483528,0.754868,0.850335,0.467323,0.644646,0.670286,0.725955,0.631319,0.994939,0.444713,0.714334,0.396803,0.125046,0.917853,0.526894,0.185696,0.491902,0.464951,0.531911,0.269829,0.231745,0.0493392,0.537216,0.190695,0.0735111,0.708575,0.517671,0.716865,0.924431,0.779349,0.557966,0.307329,0.255238,0.831999,0.491231,0.658745,0.496027,0.72793,0.274457,0.979056,0.930107,0.852403,0.00140119,0.0104699,0.33556,0.855667,0.336923,0.511641,0.265413,0.775132,0.663188,0.319468,0.235808,0.162861,0.0129626,0.302865,0.159385,0.576616,0.564783,0.347688,0.959769,0.795677,0.999441,0.700216,0.595149,0.0432779,0.136969,0.334731,0.780522,0.552778,0.420306,0.150316,0.0603546,0.854409,0.491229,0.532739,0.746516,0.318167,0.888981,0.275521,0.980224,0.508443,0.167132,0.570571,0.108641,0.673868,0.578807,0.281727,0.0806231,0.422662,0.928091,0.727118,0.410579,0.359325,0.7241,0.254114,0.944669,0.953299,0.313606,0.647383,0.663354,0.48175,0.63972,0.412766,0.0655496,0.797199,0.965905,0.0473071,0.71805,0.642936,0.312337,0.784815,0.57809,0.290664,0.130419,0.80382,0.0180951,0.579047,0.78059,0.551783,0.0387415,0.673182,0.468394,0.35565,0.0813885,0.767347,0.0124905,0.378642,0.980683,0.801805,0.693537,0.872307,0.908994,0.0921959,0.0854557,0.600564,0.296392,0.659218,0.29707,0.424012,0.763019,0.620452,0.666842,0.732942,0.913264,0.534373,0.54893,0.846263,0.187206,0.722299,0.798614,0.473118,0.697029,0.150287,0.232266,0.577106,0.223658,0.385855,0.862179,0.570839,0.552938,0.719439,0.348119,0.967634,0.142922,0.363899,0.0869178,0.935005,0.171612,0.731112,0.98312,0.978687,0.291987,0.0440992,0.77632,0.131667,0.771965,0.621695,0.292257,0.51734,0.50742,0.998605,0.80366,0.219649,0.0309834,0.80197,0.285241,0.755459,0.525088,0.554741,0.0513662,0.485831,0.684207,0.0543612,0.215765,0.325435,0.932634,0.640618,0.184736,0.484849,0.127935,0.887447,0.700533,0.901376,0.416288,0.287636,0.233264,0.359115,0.117876,0.981232,0.856615,0.37453,0.487325,0.64503,0.117051,0.658734,0.0101576,0.0962535,0.988793,0.206105,0.633564,0.575539,0.129653,0.513247,0.872829,0.561153,0.763331,0.589033,0.00845492,0.312364,0.116618,0.180521,0.832305,0.732776,0.138299,0.51688,0.248345,0.255104,0.694864,0.149766,0.753274,0.122022,0.747039,0.397277,0.788391,0.458622,0.193842,0.930274,0.453085,0.343691,0.101719,0.33205,0.905636,0.794191,0.349166,0.614209,0.904383,0.131393,0.234711,0.658364,0.0436164,0.584495,0.355391,0.730557,0.553591,0.871427,0.939317,0.937406,0.580263,0.302711,0.628271,0.269695,0.204058,0.319117,0.319265,0.09521,0.542815,0.357048,0.764999,0.0755693,0.323341,0.740144,0.562327,0.937443,0.7808,0.197623,0.965651,0.773628,0.37211,0.463108,0.690091,0.602257,0.0762897,0.617924,0.272529,0.64949,0.552731,0.288424,0.788022,0.0178599,0.13395,0.994314,0.523719,0.464617,0.0278577,0.99559,0.27525,0.762987,0.369736,0.692012,0.981358,0.385829,0.796461,0.485956,0.82435,0.985722,0.261712,0.0668853,0.915887,0.792781,0.527998,0.075615,0.760235,0.0348703,0.828746,0.262267,0.680261,0.119044,0.642575,0.0584579,0.0411151,0.854925,0.748794,0.691876,0.764141,0.488677,0.339053,0.653881,0.582475,0.790241,0.873872,0.473398,0.854319,0.435519,0.559991,0.831697,0.829332,0.525183,0.545104,0.487071,0.769238,0.360488,0.938798,0.928105,0.456271,0.232462,0.968682,0.0756485,0.492612,0.753532,0.264547,0.102261,0.2206,0.89532,0.522378,0.319827,0.988641,0.780073,0.637998,0.508748,0.0795394,0.847675,0.607096,0.0254139,0.916303,0.296908,0.00910538,0.566824,0.416172,0.264436,0.343974,0.879715,0.626031,0.918409,0.0494953,0.755509,0.890352,0.113182,0.535121,0.0103321,0.997589,0.980149,0.676032,0.538565,0.700589,0.918737,0.411391,0.032701,0.220928,0.71783,0.312459,0.804005,0.130518,0.405996,|0.443002,0.373697,0.522505,0.527021,0.952119,0.866914,0.161362,0.512109,0.786338,0.543322,0.894554,0.503174,0.328573,0.970317,0.0575277,0.234703,0.595302,0.658881,0.880163,0.986154,0.0543235,0.827802,0.389117,0.328193,0.669708,0.624666,0.873601,0.571585,0.853656,0.0480265,0.5912,0.335474,0.315095,0.0487707,0.19271,0.0135481,0.930526,0.652496,0.402813,0.655598,0.858101,0.187289,0.272556,0.988755,0.754296,0.909388,0.650158,0.729256,0.513128,0.187181,0.616783,0.0830466,0.887531,0.0828108,0.315532,0.859958,0.289235,0.714145,0.684297,0.154035,0.881809,0.0212176,0.262264,0.924486,0.800964,0.573091,0.821835,0.824364,0.94811,0.0963957,0.342602,0.146264,0.681015,0.6221,0.978055,0.0768453,0.55368,0.541155,0.31098,0.0919104,0.959696,0.672813,0.409062,0.59228,0.322228,0.0337368,0.654754,0.905027,0.902764,0.0958502,0.927172,0.588728,0.0163811,0.890129,0.485911,0.856907,0.196199,0.210541,0.0927386,0.754964,0.0290083,0.769254,0.57186,0.600113,0.716341,0.585261,0.574834,0.337461,0.945654,0.267588,0.680746,0.884701,0.85617,0.931754,0.861058,0.506476,0.197096,0.792052,0.747133,0.698453,0.83332,0.724601,0.761495,0.0801641,0.86288,0.0989446,0.0827385,0.489136,0.739733,0.21209,0.996214,0.714456,0.683607,0.0899321,0.656855,0.409508,0.411626,0.849972,0.880886,0.874379,0.882894,0.945283,0.953239,0.0594451,0.748696,0.675484,0.0509099,0.428674,0.435998,0.104955,0.803628,0.588992,0.766801,0.564217,0.111196,0.865669,0.304226,0.614869,0.439739,0.2667,0.359622,0.320765,0.158189,0.402249,0.296551,0.482972,0.205958,0.878457,0.207744,0.883719,0.885671,0.0904934,0.535188,0.180291,0.673419,0.0697547,0.121285,0.379506,0.865972,0.873169,0.642094,0.730694,0.755281,0.425159,0.505509,0.317027,0.287087,0.391854,0.321609,0.506457,0.822511,0.728699,0.867624,0.989505,0.404646,0.410513,0.838751,0.174512,0.432604,0.610357,0.395536,0.161431,0.844674,0.263566,0.786388,0.364826,0.554365,0.122348,0.476426,0.174414,0.689465,0.617794,0.634016,0.625004,0.128864,0.724388,0.483846,0.297597,0.590074,0.204963,0.355253,0.0220659,0.0436178,0.684264,0.162749,0.681607,0.97049,0.266723,0.24549,0.0714609,0.632039,0.126903,0.695926,0.536464,0.656829,0.722234,0.472422,0.871935,0.64877,0.043702,0.412466,0.0466634,0.530645,0.476719,0.999138,0.038371,0.130558,0.5442,0.555606,0.544353,0.354944,0.504913,0.542731,0.850316,0.320209,0.32279,0.740849,0.189856,0.0495149,0.581033,0.251304,0.639873,0.149638,0.0367047,0.958568,0.759455,0.075982,0.0172438,0.536772,0.269025,0.945462,0.106444,0.762764,0.829513,0.98856,0.628803,0.042292,0.2544,0.493357,0.0737187,0.961844,0.697268,0.653537,0.508446,0.674526,0.910804,0.671148,0.67255,0.697955,0.856995,0.00236899,0.135214,0.0982055,0.671091,0.233758,0.929311,0.446334,0.873165,0.731289,0.88415,0.780825,0.758119,0.679713,0.418404,0.334143,0.522939,0.674855,0.458165,0.658697,0.901168,0.0120544,0.435419,0.0703875,0.27008,0.315313,0.68696,0.0612181,0.921677,0.741248,0.565526,0.478503,0.213669,0.620103,0.137071,0.387344,0.676363,0.559609,0.211761,0.085708,0.080596,0.24612,0.718442,0.335374,0.980047,0.0759742,0.450378,0.978814,0.0716134,0.925755,0.561446,0.367779,0.37153,0.535287,0.462539,0.225876,0.723299,0.954283,0.201704,0.235468,0.495154,0.978717,0.542405,0.463341,0.25469,0.168705,0.522376,0.731319,0.604278,0.804894,0.529248,0.985079,0.202385,0.415125,0.829483,0.961983,0.593808,0.72017,0.789905,0.135586,0.330181,0.0500662,0.00970995,0.0272303,0.810532,0.193105,0.184661,0.786214,0.749666,0.652504,0.305311,0.876752,0.881317,0.463194,0.8415,0.461036,0.0939818,0.317161,0.728338,0.10055,0.0965614,0.309156,0.248295,0.657107,0.994217,0.453669,0.596226,0.108187,0.940678,0.792156,0.837412,0.762316,0.283158,0.533585,0.315002,0.932263,0.674399,0.463118,0.253573,0.416208,0.812988,0.879232,0.970072,0.852425,0.375026,0.985632,0.0891494,0.392727,0.862039,0.935903,0.488719,0.896284,0.378656,0.365799,0.517147,0.687663,0.174672,0.995547,0.469655,0.871176,0.890002,0.284425,0.88541,0.116366,0.145835,0.327555,0.462462,0.152903,0.868663,0.777815,0.0630873,0.21708,0.283263,0.629353,0.312986,0.28002,0.525937,0.437805,0.460174,0.439845,0.909979,0.9961,0.601838,0.290242,0.591209,0.32499,0.960288,0.0562597,0.390561,0.222292,0.85585,0.155215,0.938124,0.927721,0.128988,0.892414,0.538181,0.56417,0.834918,0.202275,0.326623,0.961284,0.255554,0.596754,0.42964,0.1901,0.0887284,0.0291107,0.171775,0.0506403,0.276283,0.274509,0.482278,0.387514,0.853396,0.778961,0.0466239,0.359166,0.290666,0.85521,0.223357,0.517292,0.319809,0.143967,0.743397,0.0530013,0.372863,0.474636,0.925523,0.845506,0.619613,0.958019,0.321657,0.0737302,0.492917,0.350069,0.419751,0.28187,0.901167,0.387609,0.920628,0.57471,0.317291,0.547393,0.0323751,0.947897,0.35727,0.846723,0.91165,0.496737,0.355462,0.885468,0.20595,0.790568,0.0225243,0.492865,0.876303,0.428487,0.480487,0.936349,0.324514,0.939912,0.121963,0.661191,0.443327,0.43681,0.895742,0.164918,0.392662,0.149642,0.306993,0.879505,0.468246,0.272976,0.108023,0.938921,0.779165,0.371398,0.870245,0.901169,0.522027,0.200355,0.484207,0.0893568,0.595493,0.146512,0.621876,0.851461,0.886578,0.022895,0.565814,0.29254,0.768962,0.343238,0.453177,0.35428,0.0994133,0.310497,0.359362,0.821584,0.390477,0.344263,0.909764,0.846731,0.0104629,0.305922,0.928454,0.4885,0.00333983,0.73749,0.285075,0.427579,0.405263,0.271088,0.344183,0.618505,0.045631,0.899536,0.6647,0.850798,0.145757,0.41935,0.183318,0.819852,0.755281,0.364173,0.181879,0.096097,0.337366,0.0488262,0.597232,0.156829,0.58421,0.591705,0.0257612,0.168811,0.460459,0.394622,0.99246,0.677131,0.878882,0.444504,0.510838,0.352927,0.545047,0.226473,0.254943,0.513485,0.355175,0.604575,0.87165,0.90611,0.285548,0.788117,0.360285,0.340661,0.240457,0.0853378,0.880904,0.494165,0.249454,0.575602,0.557017,0.140556,0.63621,0.0232669,0.628103,0.173,0.49753,0.804235,0.311564,0.53355,0.376561,0.193911,0.35604,0.521429,0.351196,0.603809,0.117356,0.9751,0.646479,0.229909,0.582812,0.786155,0.679508,0.183601,0.998897,0.76079,0.146953,0.807756,0.0360774,0.36385,0.450777,0.0452573,0.255664,0.22766,0.018335,0.558377,0.880544,0.813969,0.830533,0.61357,0.954198,0.771283,0.711974,0.147169,0.270692,0.360902,0.444286,0.184188,0.621116,0.587224,0.553871,0.104952,0.27705,0.394415,0.98553,0.322479,0.401089,0.426043,0.416544,0.217708,0.59643,0.653203,0.121461,0.428626,0.72226,0.371262,0.651351,0.619098,0.344275,0.22804,0.352287,0.767283,0.601571,0.325353,0.810624,0.275901,0.323165,0.388557,0.202112,0.00900793,0.296213,0.410133,0.562249,0.71112,0.831389,0.0798807,0.943752,0.220029,0.589634,0.0370651,0.606054,0.404181,0.368443,0.498746,0.372372,0.518379,0.912498,0.244401,0.881502,0.220726,0.595448,0.123273,0.127819,0.634941,0.470218,0.646698,0.701448,0.666888,0.977861,0.32467,0.591453,0.915132,0.806861,0.242644,0.438493,0.334355,0.193938,0.815058,0.628844,0.333873,0.486703,0.936382,0.534082,0.659959,0.637788,0.462993,0.397566,0.834441,0.685449,0.604495,0.104739,0.970241,0.172548,0.957369,0.724262,0.984706,0.762035,0.280931,0.645542,0.446971,0.854618,0.134494,0.385346,0.282002,0.907538,0.93033,0.830153,0.658541,0.0948271,0.735397,0.306395,0.782808,0.83996,0.210244,0.0576057,0.383829,0.421881,0.472645,0.458731,0.403508,0.460222,0.614077,0.358782,0.536238,0.466075,0.779787,0.0416476,0.213889,0.574385,0.00634891,0.142951,0.0035345,0.100482,0.0549431,0.120281,0.210218,0.986706,0.329207,0.760723,0.8114,0.60481,0.317176,0.962884,0.801053,0.41432,0.846475,0.926333,0.963768,0.25984,0.841208,0.955152,0.0963596,0.317275,0.066469,0.442011,0.761324,0.993313,0.382065,0.516803,0.0412165,0.531682,0.336024,0.851174,0.260235,0.778374,0.329524,0.243939,0.908497,0.794091,0.0379311,0.63145,0.637365,0.889018,0.612288,0.221158,0.381484,0.234066,0.98525,0.2932,0.562055,0.967186,0.439852,0.263803,0.299434,0.972713,0.115267,0.167853,0.588568,0.388476,0.179835,0.157444,0.702587,0.486164,0.447446,0.386554,0.520677,0.199428,0.668702,0.146561,0.843916,0.152735,0.102921,0.912384,0.259138,0.633888,0.242284,0.390626,0.299037,0.164912,0.12702,0.0386807,0.848366,0.971018,0.915554,0.0251893,0.168204,0.41686,0.634385,0.103444,0.59578,0.477054,0.446609,0.228538,0.63827,0.0484902,0.37368,0.747272,0.641184,0.0485743,0.82747,0.156691,0.764521,0.136459,0.0883811,0.246276,0.337384,0.632429,0.819138,0.971841,0.141675,0.819631,0.272392,0.770326,0.646643,0.232181,0.478819,0.941624,0.146308,0.0455871,0.0383645,0.898509,0.890542,0.375344,0.168243,0.565903,0.132469,0.885774,0.106702,0.651897,0.978072,0.297936,0.184654,0.231762,0.585027,0.439588,0.562406,0.408915,0.737812,0.660568,0.587605,0.149347,0.503258,0.588395,0.661477,0.411093,0.477228,0.591247,0.340878,0.0933159,0.293678,0.447329,0.627587,0.83827,0.0979302,0.929511,0.46972,0.610957,0.71758,0.220706,0.0347809,0.293255,0.59507,0.12288,0.907715,0.647,0.913912,0.203558,0.713353,0.449071,0.468524,0.982031,0.869799,0.685137,0.452435,0.472318,0.0888081,0.420381,0.662579,0.824287,0.541174,0.219153,0.545628,0.179911,0.823224,0.711109,0.360882,0.924069,0.317215,0.0115115,0.597232,0.792277,0.559427,0.524919,0.00384074,0.170498,0.85645,0.0153899,0.10647,0.364723,|0.167853,0.47595,0.331289,0.720081,0.84421,0.500052,0.0178571,0.887107,0.816092,0.686196,0.371599,0.109552,0.847454,0.643012,0.721475,0.732103,0.589144,0.118907,0.192572,0.778133,0.452954,0.675249,0.19531,0.324617,0.52021,0.10116,0.622905,0.409254,0.151063,0.58127,0.811993,0.938114,0.584677,0.776175,0.300944,0.791792,0.39199,0.759614,0.0474141,0.310917,0.221204,0.569584,0.912151,0.434635,0.660872,0.355771,0.195613,0.268138,0.461756,0.287163,0.626375,0.724476,0.417817,0.370853,0.878691,0.520591,0.994497,0.989698,0.781122,0.488021,0.312725,0.766303,0.639542,0.0248793,0.576703,0.718901,0.211354,0.827343,0.164127,0.276459,0.340234,0.00865382,0.199032,0.917474,0.237595,0.408993,0.838916,0.518574,0.762557,0.838783,0.314789,0.470096,0.943144,0.348479,0.849022,0.828878,0.64659,0.0140301,0.531141,0.582608,0.0124547,0.15879,0.889964,0.595516,0.315266,0.917666,0.504968,0.477012,0.737119,0.800152,0.653405,0.906863,0.886564,0.266662,0.877849,0.312028,0.0928375,0.449681,0.96595,0.744368,0.0372329,0.756991,0.894965,0.988682,0.960986,0.583364,0.954749,0.481246,0.439272,0.835367,0.540276,0.621335,0.806275,0.619763,0.323647,0.233863,0.923479,0.34854,0.649818,0.690568,0.420712,0.537213,0.00337124,0.500206,0.858724,0.179667,0.238971,0.294507,0.076006,0.868202,0.972344,0.819713,0.70659,0.782012,0.901021,0.0649074,0.821477,0.674032,0.632554,0.905238,0.260503,0.382994,0.947723,0.22645,0.872428,0.0224776,0.355349,0.98793,0.171635,0.364242,0.533057,0.238704,0.0304089,0.666296,0.517359,0.691603,0.146052,0.863441,0.480998,0.530653,0.862864,0.677536,0.0477651,0.194252,0.455278,0.611303,0.765169,0.747618,0.847844,0.467858,0.807131,0.0531359,0.988449,0.575186,0.83919,0.642784,0.788078,0.978294,0.129608,0.585133,0.667441,0.127126,0.875829,0.227369,0.315347,0.219206,0.0273223,0.068657,0.14836,0.257745,0.308819,0.279127,0.347002,0.663229,0.352598,0.0441405,0.946094,0.984155,0.333732,0.222536,0.936899,0.928713,0.765864,0.819157,0.858498,0.162148,0.645833,0.0940543,0.568268,0.951736,0.129682,0.373775,0.595653,0.931805,0.107892,0.372679,0.250613,0.988145,0.673698,0.587163,0.762199,0.46632,0.00863558,0.0285513,0.0740578,0.507495,0.476416,0.466146,0.641664,0.576421,0.60935,0.52642,0.827344,0.747501,0.137138,0.0296367,0.798287,0.264142,0.888689,0.807394,0.679188,0.980394,0.848164,0.716474,0.805362,0.47661,0.496776,0.615767,0.772215,0.550791,0.112845,0.389482,0.0100343,0.0742201,0.920071,0.10653,0.572445,0.469439,0.570833,0.783927,0.166569,0.0265943,0.94654,0.955492,0.0101063,0.043433,0.370242,0.227046,0.0191809,0.589418,0.655574,0.90763,0.371154,0.70853,0.478628,0.181739,0.806172,0.596795,0.0255609,0.786843,0.760107,0.141593,0.619793,0.269774,0.854052,0.077444,0.353686,0.0221847,0.0979767,0.542934,0.930571,0.761631,0.177991,0.353549,0.137638,0.096592,0.124423,0.269793,0.0175743,0.79891,0.851419,0.197987,0.11291,0.819315,0.146912,0.91686,0.412356,0.934278,0.402635,0.311738,0.73005,0.362294,0.962476,0.518565,0.835515,0.67246,0.00795585,0.674813,0.880363,0.751862,0.47017,0.211591,0.538735,0.997608,0.0174716,0.401259,0.102393,0.394575,0.954132,0.626506,0.556917,0.935655,0.141731,0.223386,0.675395,0.745319,0.553369,0.34526,0.382725,0.208606,0.18086,0.586705,0.0264845,0.0959693,0.419135,0.800849,0.40341,0.2237,0.358403,0.503058,0.407924,0.705059,0.962628,0.859319,0.0816346,0.774867,0.789502,0.351401,0.866777,0.419821,0.598963,0.327123,0.551554,0.389174,0.598941,0.508258,0.481179,0.0627506,0.687635,0.6102,0.275421,0.792526,0.978465,0.46905,0.0568818,0.00716335,0.106617,0.358343,0.301573,0.405451,0.463593,0.310537,0.122928,0.774125,0.39135,0.865377,0.395102,0.166606,0.284685,0.457383,0.761612,0.274468,0.278601,0.0450479,0.147481,0.2487,0.155951,0.103203,0.171567,0.952551,0.635923,0.046958,0.684266,0.179,0.959819,0.163576,0.370034,0.272715,0.385424,0.156727,0.803125,0.199366,0.862944,0.894123,0.172761,0.648376,0.167783,0.689475,0.775131,0.850767,0.895368,0.941109,0.709854,0.391259,0.731153,0.662426,0.0331134,0.964999,0.739115,0.0734724,0.955077,0.610934,0.693372,0.73607,0.21403,0.0925043,0.11416,0.319151,0.284307,0.943859,0.460161,0.727814,0.382832,0.233269,0.766077,0.104132,0.381716,0.0539539,0.823094,0.966304,0.256881,0.386429,0.577309,0.917427,0.0592936,0.167701,0.693751,0.396424,0.942281,0.458916,0.747449,0.335282,0.383354,0.325462,0.0538988,0.801852,0.517205,0.381015,0.661112,0.860646,0.0769489,0.601359,0.907199,0.196504,0.0738431,0.893215,0.471692,0.983665,0.313346,0.510069,0.495842,0.912454,0.85586,0.886762,0.611475,0.874353,0.659665,0.578953,0.252009,0.958358,0.0863785,0.550525,0.632785,0.0993848,0.89617,0.0905064,0.234437,0.732873,0.367689,0.7134,0.934166,0.210206,0.326449,0.030772,0.525814,0.788518,0.32605,0.6408,0.467062,0.32083,0.0453115,0.377171,0.823308,0.238059,0.238919,0.511931,0.0887108,0.326891,0.271643,0.687418,0.164445,0.280374,0.000967145,0.529481,0.127798,0.197855,0.930502,0.672593,0.740171,0.65324,0.638344,0.29359,0.453696,0.0316234,0.664156,0.639898,0.0854799,0.868587,0.130767,0.339163,0.0675877,0.65121,0.841268,0.955724,0.731574,0.542504,0.184236,0.790643,0.198653,0.0143408,0.0761371,0.55065,0.56,0.00379986,0.836612,0.556336,0.905153,0.522245,0.855202,0.357653,0.239765,0.834204,0.914885,0.30839,0.517544,0.448564,0.67138,0.790832,0.308043,0.412876,0.326447,0.676247,0.696907,0.797739,0.513081,0.0347002,0.645422,0.673474,0.899251,0.110333,0.300681,0.913136,0.524975,0.129776,0.0577404,0.163198,0.264477,0.00458378,0.245838,0.412407,0.241292,0.868471,0.53264,0.552171,0.647084,0.407553,0.548203,0.732912,0.0668974,0.283409,0.931659,0.29047,0.619286,0.270741,0.428635,0.569539,0.572551,0.786161,0.873156,0.727449,0.598855,0.242497,0.425441,0.815657,0.797845,0.432137,0.357841,0.513432,0.350169,0.642686,0.42818,0.242807,0.235657,0.52525,0.13809,0.534978,0.0330819,0.446589,0.736197,0.274784,0.776833,0.950906,0.40906,0.413124,0.0405246,0.0883969,0.0249926,0.729781,0.883361,0.43508,0.343956,0.330546,0.54329,0.668472,0.613505,0.145471,0.862146,0.128616,0.12207,0.230998,0.767258,0.401717,0.14644,0.637318,0.547448,0.0493559,0.00705802,0.412054,0.12303,0.938634,0.740015,0.196674,0.695652,0.222378,0.953878,0.845524,0.873624,0.862392,0.328596,0.53248,0.303225,0.968887,0.244809,0.260192,0.465054,0.672126,0.435072,0.537282,0.880299,0.569489,0.625359,0.358071,0.378608,0.973541,0.291023,0.648754,0.322326,0.164158,0.747541,0.304431,0.998331,0.118431,0.791487,0.132008,0.315512,0.526399,0.242311,0.483718,0.0657228,0.733645,0.564223,0.722221,0.117276,0.484702,0.190237,0.224656,0.611926,0.24111,0.610909,0.299182,0.324209,0.38397,0.579287,0.72091,0.487769,0.109098,0.922841,0.525558,0.367458,0.378617,0.997842,0.795911,0.848614,0.886387,0.0868636,0.175204,0.228283,0.26422,0.139823,0.648141,0.510916,0.975121,0.268642,0.485424,0.371591,0.978111,0.630798,0.408691,0.109146,0.626832,0.655536,0.519257,0.795905,0.474946,0.279944,0.086863,0.859822,0.715509,0.406015,0.434539,0.184452,0.304701,0.354331,0.841642,0.883236,0.139758,0.920089,0.115813,0.611036,0.0746562,0.46031,0.87875,0.697511,0.0249867,0.285464,0.699853,0.269815,0.314964,0.698982,0.857188,0.232451,0.0763371,0.812179,0.710859,0.246638,0.55924,0.987235,0.212254,0.711524,0.441495,0.399711,0.0289351,0.479644,0.068197,0.00964218,0.785334,0.902545,0.573274,0.229219,0.420518,0.574329,0.214727,0.836548,0.958675,0.745155,0.971528,0.517108,0.866541,0.28165,0.675111,0.217061,0.606027,0.545821,0.730455,0.227092,0.706936,0.0560822,0.348675,0.232552,0.68487,0.664527,0.179465,0.687205,0.120206,0.184137,0.492965,0.408004,0.896489,0.38288,0.857177,0.7451,0.2544,0.890334,0.880916,0.309543,0.350103,0.414467,0.140457,0.634751,0.540701,0.820792,0.721287,0.276564,0.892643,0.257446,0.646941,0.769831,0.601339,0.51457,0.442646,0.127097,0.864966,0.212457,0.499754,0.448987,0.637922,0.443463,0.215813,0.194655,0.666283,0.241733,0.497055,0.231824,0.441516,0.795141,0.985003,0.0550874,0.804637,0.182404,0.626926,0.12814,0.611133,0.770293,0.961933,0.242093,0.224292,0.142105,0.831505,0.878717,0.711027,0.748085,0.727015,0.182531,0.824314,0.814063,0.452872,0.300565,0.900386,0.200999,0.779729,0.77567,0.470526,0.538655,0.612377,0.354089,0.404009,0.421382,0.184266,0.422944,0.225882,0.605571,0.52171,0.483197,0.0480767,0.797717,0.539391,0.333889,0.660127,0.173199,0.572538,0.944748,0.0495988,0.92795,0.334446,0.599622,0.305336,0.411588,0.214534,0.694095,0.572559,0.0427526,0.167399,0.551733,0.312519,0.308653,0.580513,0.117783,0.585167,0.0676811,0.543544,0.391519,0.952544,0.216965,0.105439,0.101582,0.698927,0.486785,0.451056,0.785815,0.412181,0.802707,0.817191,0.165091,0.429987,0.903931,0.519996,0.134271,0.790048,0.940472,0.347448,0.776032,0.654272,0.119497,0.796135,0.329431,0.106532,0.184587,0.0352257,0.584394,0.619917,0.365745,0.237714,0.0840449,0.693731,0.355908,0.779882,0.296227,0.77369,0.993507,0.607592,0.593417,0.398957,0.25708,0.0307621,0.134847,0.198579,0.181311,0.66861,0.573657,0.300646,0.638274,0.524476,0.78156,0.734817,0.744121,0.79283,0.613723,0.785191,0.474389,0.844382,0.820215,0.172641,0.449411,0.722476,0.812246,0.939745,0.548522,0.351284,0.357232,0.517783,|0.289326,0.679512,0.150483,0.112559,0.215803,0.381535,0.195423,0.959622,0.301522,0.306766,0.443294,0.168018,0.802339,0.291825,0.635924,0.63332,0.65703,0.493357,0.797534,0.256426,0.89955,0.738469,0.290959,0.97592,0.130224,0.674792,0.759551,0.740804,0.249906,0.653534,0.319413,0.803633,0.428312,0.867707,0.117703,0.905661,0.268343,0.133462,0.325543,0.0298426,0.109781,0.308503,0.260051,0.348706,0.653604,0.446053,0.255441,0.128608,0.708129,0.190012,0.393498,0.928204,0.431787,0.462658,0.274669,0.441706,0.996079,0.715997,0.0885624,0.467515,0.846484,0.595331,0.375699,0.756075,0.453834,0.967107,0.848617,0.96216,0.371454,0.539328,0.143146,0.473196,0.42915,0.876261,0.100664,0.942598,0.821952,0.835657,0.106068,0.332747,0.278579,0.369542,0.815665,0.814353,0.977569,0.00111604,0.19116,0.165573,0.756075,0.748147,0.929086,0.500176,0.475139,0.732858,0.91513,0.184556,0.33424,0.257021,0.521146,0.705164,0.0598844,0.155761,0.789841,0.626184,0.0977963,0.617412,0.167679,0.843946,0.156552,0.122836,0.332541,0.936044,0.373395,0.889997,0.742999,0.0627698,0.184854,0.947771,0.789751,0.442987,0.760101,0.784862,0.952326,0.811768,0.298281,0.894354,0.00312215,0.15334,0.242576,0.579098,0.756957,0.621501,0.306354,0.305634,0.576346,0.00963211,0.212478,0.823113,0.445944,0.950834,0.120482,0.404111,0.147499,0.302468,0.239628,0.0624412,0.60475,0.936507,0.0613071,0.0691872,0.520242,0.955861,0.751856,0.657481,0.555933,0.614662,0.583713,0.704016,0.674272,0.0445025,0.368032,0.672436,0.990451,0.447623,0.0358109,0.390013,0.219397,0.650774,0.873092,0.942857,0.738664,0.782035,0.188037,0.774175,0.899616,0.373926,0.776228,0.390798,0.760004,0.737158,0.499307,0.67144,0.419757,0.145728,0.0273278,0.585859,0.25715,0.490663,0.575441,0.93044,0.974744,0.176304,0.67462,0.811327,0.639557,0.855027,0.512378,0.29009,0.671256,0.232753,0.69581,0.885493,0.603476,0.917756,0.894916,0.984153,0.39735,0.342487,0.574462,0.543802,0.0650484,0.55914,0.105729,0.531563,0.979012,0.0684448,0.248943,0.428389,0.439541,0.964351,0.774651,0.628846,0.868799,0.163446,0.793832,0.0463226,0.145901,0.360744,0.987821,0.624146,0.939251,0.944478,0.726222,0.000813663,0.179148,0.537112,0.102796,0.514063,0.0354554,0.617235,0.380785,0.670533,0.686821,0.907276,0.630594,0.474271,0.527046,0.085899,0.0633699,0.0990949,0.152359,0.166443,0.271094,0.772117,0.447497,0.598314,0.885442,0.445771,0.0948895,0.229297,0.897911,0.424476,0.704289,0.185164,0.79185,0.385764,0.572627,0.892486,0.46734,0.11566,0.0719454,0.11863,0.882704,0.249536,0.876688,0.431832,0.859702,0.545185,0.822309,0.200627,0.299859,0.333255,0.601455,0.941812,0.760478,0.44138,0.199676,0.433712,0.354909,0.0611771,0.570745,0.508796,0.307885,0.311144,0.737741,0.512883,0.561156,0.458392,0.167939,0.456329,0.541145,0.0221519,0.375383,0.225832,0.549867,0.146846,0.709758,0.0543134,0.536149,0.643023,0.336383,0.588141,0.827123,0.584593,0.102736,0.586334,0.811771,0.385253,0.231747,0.668316,0.614634,0.435635,0.840345,0.894951,0.68288,0.0415839,0.721757,0.108832,0.816763,0.0984533,0.567988,0.818339,0.112809,0.168414,0.402805,0.29699,0.523927,0.0620273,0.872736,0.535954,0.21802,0.269679,0.681698,0.180811,0.178917,0.0155843,0.641503,0.342711,0.76468,0.677954,0.836895,0.700571,0.0961766,0.0598197,0.979194,0.913369,0.445407,0.158071,0.442558,0.134347,0.248377,0.335319,0.406645,0.588876,0.820087,0.699054,0.367021,0.879717,0.88258,0.911317,0.899463,0.0470118,0.419633,0.579497,0.817802,0.349536,0.249607,0.0906373,0.889187,0.0484197,0.895629,0.143876,0.50193,0.40338,0.522049,0.699375,0.284298,0.932409,0.155385,0.230444,0.561488,0.0962251,0.958535,0.0499566,0.496706,0.891656,0.58396,0.291426,0.539612,0.343132,0.0872773,0.60816,0.414218,0.91816,0.110431,0.838784,0.610142,0.89117,0.113296,0.595002,0.791746,0.208423,0.390072,0.791855,0.807176,0.617965,0.854467,0.199662,0.393472,0.2773,0.193315,0.581086,0.572704,0.736523,0.403111,0.323789,0.11708,0.543589,0.653089,0.610185,0.777875,0.0663729,0.747218,0.330073,0.882775,0.498348,0.6395,0.869914,0.120926,0.064285,0.441531,0.267525,0.01796,0.29522,0.508477,0.445557,0.308204,0.818969,0.284723,0.242625,0.488318,0.356578,0.0471993,0.310463,0.375253,0.0449944,0.0941569,0.301735,0.890781,0.801312,0.887177,0.643346,0.181113,0.122959,0.583002,0.113327,0.100897,0.390246,0.753461,0.360841,0.177426,0.396521,0.056511,0.864821,0.830968,0.349848,0.935087,0.177365,0.420921,0.859318,0.516728,0.322986,0.564849,0.359221,0.293815,0.00582528,0.102364,0.999127,0.0842268,0.448877,0.279431,0.691872,0.644805,0.896195,0.854672,0.448615,0.221191,0.898614,0.346491,0.862612,0.349441,0.791104,0.559405,0.427344,0.296021,0.42569,0.367239,0.211179,0.459034,0.404871,0.156745,0.0874819,0.899633,0.201718,0.0220529,0.697121,0.426124,0.13108,0.308193,0.33826,0.199602,0.405057,0.627588,0.33808,0.817096,0.952189,0.0353832,0.910103,0.296337,0.116484,0.578748,0.67036,0.19371,0.382193,0.714829,0.882617,0.0514878,0.624405,0.610535,0.218326,0.755824,0.00280315,0.333949,0.477515,0.140934,0.66801,0.679703,0.722929,0.746368,0.294899,0.569759,0.321492,0.412573,0.742014,0.00507402,0.76812,0.654024,0.488003,0.0553904,0.243727,0.740834,0.992761,0.146878,0.275175,0.151119,0.689057,0.813368,0.489578,0.136004,0.665731,0.163192,0.80868,0.508216,0.190767,0.280133,0.283156,0.593758,0.49164,0.23102,0.981457,0.943498,0.883131,0.396117,0.618136,0.462834,0.680665,0.0737796,0.145383,0.928593,0.653752,0.874275,0.791621,0.826078,0.343137,0.856385,0.942769,0.157596,0.853697,0.987301,0.171257,0.575427,0.698364,0.935681,0.620343,0.876984,0.375092,0.448104,0.463732,0.18474,0.0103666,0.543632,0.740095,0.266469,0.518816,0.790529,0.33809,0.0635006,0.394499,0.515734,0.510787,0.267789,0.585301,0.358515,0.412055,0.00365794,0.205771,0.769148,0.893694,0.871419,0.121572,0.452224,0.471306,0.806451,0.536112,0.558831,0.213542,0.804605,0.438862,0.96303,0.14315,0.351937,0.987167,0.0360621,0.802851,0.179083,0.237649,0.57493,0.503002,0.350771,0.0780423,0.301892,0.693537,0.708061,0.185375,0.760397,0.917157,0.637255,0.534019,0.0158151,0.309955,0.567886,0.20367,0.760598,0.70404,0.10741,0.195797,0.321864,0.790804,0.912279,0.983153,0.909941,0.278546,0.0968251,0.681058,0.410224,0.114101,0.850738,0.483937,0.0191835,0.314181,0.63102,0.498343,0.66394,0.435224,0.720027,0.407232,0.163971,0.812924,0.24663,0.94519,0.250307,0.132389,0.908891,0.221797,0.857547,0.0976632,0.617902,0.770285,0.161764,0.767459,0.477425,0.676099,0.172034,0.992989,0.473001,0.693689,0.153326,0.611571,0.770951,0.361045,0.0763156,0.997531,0.116504,0.52248,0.752391,0.553652,0.797868,0.911029,0.138578,0.305595,0.775001,0.824106,0.336715,0.321483,0.734504,0.279086,0.286588,0.829976,0.0781593,0.641872,0.664277,0.0486569,0.255155,0.28406,0.279576,0.0607352,0.874881,0.16578,0.176452,0.365803,0.579256,0.117029,0.0034861,0.961116,0.42262,0.335349,0.0152371,0.318751,0.950091,0.521854,0.212026,0.756315,0.0231148,0.482986,0.92676,0.900403,0.923273,0.320364,0.799385,0.346302,0.103306,0.679209,0.779427,0.13295,0.283843,0.0163403,0.686222,0.604727,0.933436,0.619908,0.919155,0.496215,0.811149,0.343683,0.21694,0.29831,0.688441,0.554131,0.230596,0.103799,0.6324,0.384517,0.83686,0.741843,0.308932,0.663868,0.530687,0.239154,0.0653253,0.948144,0.194201,0.425186,0.264765,0.188028,0.828231,0.532971,0.0222622,0.199645,0.656975,0.792796,0.804842,0.625126,0.413902,0.0401065,0.838805,0.693654,0.388682,0.0356494,0.478955,0.631736,0.00462735,0.411754,0.217515,0.650208,0.997528,0.323156,0.487895,0.960836,0.0695188,0.558674,0.502032,0.0473598,0.457561,0.518122,0.414815,0.570853,0.0758038,0.687233,0.922467,0.808299,0.581012,0.139222,0.0856514,0.454827,0.259179,0.417064,0.249886,0.827729,0.128101,0.320196,0.822613,0.710382,0.191209,0.278695,0.872765,0.38959,0.978875,0.436583,0.600612,0.840262,0.260077,0.36914,0.700084,0.338379,0.59372,0.697858,0.0199143,0.165133,0.906805,0.0370923,0.39608,0.645787,0.962363,0.933706,0.264502,0.637386,0.657234,0.138623,0.836174,0.844504,0.0213792,0.234429,0.177118,0.854636,0.265604,0.488468,0.292779,0.88807,0.687187,0.508966,0.81602,0.708393,0.86973,0.0420351,0.180828,0.512201,0.829678,0.278967,0.972763,0.395146,0.595674,0.096318,0.559038,0.687155,0.374942,0.615031,0.197913,0.942846,0.240703,0.0672624,0.0538716,0.5228,0.698417,0.0406116,0.662827,0.170589,0.632909,0.769375,0.334674,0.54337,0.713326,0.750539,0.811145,0.0997753,0.0917705,0.9257,0.991339,0.310783,0.384309,0.475516,0.9189,0.660965,0.968956,0.27401,0.757421,0.624164,0.272611,0.232508,0.993929,0.883966,0.320621,0.418312,0.449922,0.260641,0.00936168,0.969105,0.307223,0.169457,0.114186,0.818541,0.38966,0.449325,0.549545,0.222839,0.344264,0.0535231,0.717635,0.597968,0.620225,0.889808,0.561837,0.198168,0.979046,0.486494,0.739857,0.577895,0.618019,0.799263,0.967141,0.748649,0.746501,0.815102,0.829083,0.208747,0.395413,0.832645,0.328443,0.744847,0.998972,0.514615,0.948189,0.353477,0.126379,0.517702,0.681102,0.075334,0.772283,0.694746,0.361409,0.227369,0.74777,0.845971,0.616589,0.482933,0.241958,0.484423,0.64672,0.714784,0.746949,0.692246,0.254469,0.956295,0.868348,0.662587,0.0683784,0.00408465,0.497978,0.0809339,0.839004,0.924365,|0.270569,0.188525,0.422713,0.611093,0.616676,0.894362,0.642607,0.173196,0.535614,0.858355,0.425261,0.0442304,0.640626,0.534084,0.881169,0.199169,0.636473,0.410611,0.158714,0.977673,0.932724,0.815698,0.0724689,0.371602,0.732086,0.328217,0.884164,0.338715,0.981041,0.91801,0.292764,0.730998,0.895416,0.844832,0.231678,0.417136,0.168256,0.00962555,0.855317,0.0297312,0.301468,0.290204,0.616816,0.511632,0.939447,0.320786,0.395891,0.820857,0.237846,0.622043,0.094444,0.787598,0.175126,0.886436,0.783543,0.685495,0.829856,0.154558,0.1412,0.235069,0.0497814,0.937975,0.32525,0.75995,0.300221,0.455762,0.334921,0.0862843,0.550645,0.801068,0.0365027,0.545037,0.806937,0.903468,0.789651,0.640812,0.879691,0.5348,0.891802,0.264493,0.566596,0.763695,0.60701,0.0617245,0.475152,0.266994,0.552519,0.841867,0.772372,0.45509,0.253346,0.0713518,0.351183,0.226406,0.051075,0.98621,0.111588,0.30605,0.346518,0.373443,0.339106,0.0161118,0.268369,0.667044,0.176357,0.808352,0.304125,0.99019,0.442388,0.492634,0.0780062,0.549842,0.67534,0.919556,0.505002,0.854843,0.788885,0.427185,0.317791,0.572795,0.997815,0.809022,0.476559,0.694131,0.330573,0.874038,0.717544,0.521121,0.84285,0.621073,0.330077,0.215466,0.387848,0.974427,0.12827,0.830637,0.340583,0.422454,0.95492,0.346392,0.059051,0.314835,0.586852,0.325331,0.495956,0.804522,0.461405,0.205202,0.0994304,0.428578,0.536692,0.802294,0.347189,0.625357,0.144378,0.634056,0.614569,0.742018,0.12707,0.322054,0.529124,0.727191,0.379049,0.254797,0.634142,0.652318,0.644945,0.689227,0.235828,0.297607,0.646127,0.473629,0.590739,0.247533,0.681145,0.118931,0.193871,0.775367,0.633778,0.21734,0.266266,0.149503,0.989327,0.519813,0.094502,0.0855792,0.626532,0.564529,0.773696,0.748754,0.827425,0.140897,0.603942,0.268545,0.0515531,0.528056,0.866715,0.366646,0.960129,0.127088,0.610847,0.924051,0.182359,0.465941,0.316977,0.344003,0.317426,0.993739,0.768546,0.954066,0.952457,0.608232,0.563648,0.0129237,0.654443,0.577629,0.923988,0.162761,0.419856,0.0490785,0.95505,0.253768,0.673293,0.159083,0.430471,0.572215,0.916827,0.920493,0.663389,0.843346,0.732325,0.221195,0.0513653,0.102711,0.169874,0.0840054,0.0100407,0.780943,0.895401,0.760359,0.504763,0.561063,0.237628,0.93213,0.461326,0.739698,0.747683,0.975804,0.289737,0.48003,0.602682,0.682244,0.428975,0.946679,0.229766,0.821266,0.0374985,0.742859,0.232875,0.0737273,0.600719,0.741471,0.186353,0.475663,0.557496,0.813489,0.547554,0.634987,0.184846,0.709626,0.238997,0.544296,0.387816,0.721245,0.197226,0.904223,0.866811,0.25931,0.468599,0.815324,0.105974,0.396806,0.534973,0.713274,0.701234,0.0336281,0.731892,0.196803,0.768081,0.814928,0.940431,0.602756,0.817614,0.421715,0.865546,0.486236,0.777139,0.0923893,0.26273,0.711881,0.0577019,0.369097,0.941897,0.434055,0.917757,0.705627,0.30143,0.352863,0.580758,0.283902,0.523427,0.224592,0.452273,0.198673,0.587528,0.834497,0.714379,0.702445,0.319282,0.619021,0.972654,0.714463,0.45575,0.752864,0.286766,0.120495,0.0298457,0.727761,0.623913,0.498462,0.610274,0.449904,0.693672,0.308362,0.527446,0.834907,0.789912,0.0949941,0.334557,0.640901,0.796305,0.919318,0.664049,0.0677307,0.480517,0.561403,0.475301,0.408716,0.996257,0.771841,0.784711,0.131216,0.401059,0.243833,0.240058,0.0420455,0.186566,0.572316,0.625898,0.405733,0.0479777,0.398132,0.665647,0.308393,0.503425,0.0224587,0.418018,0.946263,0.0131754,0.124969,0.177649,0.788751,0.488906,0.826426,0.990559,0.285051,0.0996919,0.44234,0.075772,0.18434,0.280814,0.422301,0.206743,0.432244,0.334904,0.38579,0.174342,0.387457,0.0152471,0.491567,0.955331,0.811061,0.0646167,0.640852,0.589619,0.486408,0.701343,0.389583,0.480401,0.661147,0.853126,0.725561,0.738124,0.063273,0.444142,0.164927,0.664921,0.0321214,0.512413,0.359652,0.365173,0.117271,0.215608,0.711369,0.333398,0.495478,0.142724,0.502634,0.726029,0.691078,0.228976,0.682205,0.432628,0.0341566,0.745452,0.513238,0.165863,0.243968,0.626913,0.336339,0.0529518,0.614659,0.684424,0.890646,0.254665,0.423121,0.379073,0.996193,0.945871,0.851273,0.537195,0.495813,0.840207,0.535852,0.639382,0.710948,0.439165,0.26486,0.338383,0.134626,0.863222,0.927444,0.0694429,0.595734,0.49522,0.937703,0.533844,0.892911,0.478207,0.950202,0.175544,0.112496,0.493259,0.558542,0.32771,0.0394223,0.014504,0.781323,0.985603,0.523849,0.801911,0.8476,0.925996,0.645336,0.165522,0.791415,0.00838053,0.343817,0.487247,0.584371,0.112103,0.726695,0.490172,0.564281,0.346601,0.4514,0.34242,0.23051,0.125075,0.461223,0.883713,0.447271,0.251679,0.214087,0.694838,0.00273341,0.148722,0.706882,0.325114,0.827914,0.471685,0.624199,0.116872,0.889351,0.482689,0.143772,0.966516,0.516905,0.12009,0.655929,0.436583,0.657852,0.675666,0.487804,0.821174,0.218752,0.478489,0.432575,0.904377,0.197463,0.879767,0.0255796,0.462544,0.486908,0.854523,0.791668,0.475751,0.0711014,0.765303,0.377278,0.0703883,0.259949,0.410826,0.21742,0.536907,0.277288,0.00131744,0.115046,0.393412,0.960788,0.200366,0.248108,0.97073,0.382672,0.637874,0.0869486,0.827077,0.379431,0.0457541,0.323176,0.56618,0.855382,0.831977,0.0678809,0.878446,0.679097,0.810402,0.998065,0.0649719,0.787331,0.791619,0.612951,0.625728,0.879519,0.734941,0.408095,0.4239,0.153356,0.61949,0.32995,0.0822719,0.517036,0.781635,0.78646,0.117881,0.601817,0.957963,0.325751,0.903763,0.248381,0.917687,0.228399,0.835898,0.78397,0.854904,0.842517,0.401713,0.295586,0.0544043,0.2909,0.484434,0.946028,0.439157,0.242642,0.103469,0.425435,0.769179,0.00791752,0.832901,0.185891,0.615213,0.638576,0.167024,0.774654,0.986383,0.581055,0.334491,0.0746691,0.998601,0.96485,0.541282,0.00772411,0.477901,0.0938603,0.758983,0.806185,0.132429,0.497966,0.848595,0.531987,0.725797,0.53861,0.430363,0.735492,0.816762,0.630364,0.802654,0.227063,0.230803,0.0831185,0.687563,0.192145,0.40591,0.600848,0.741877,0.536639,0.328312,0.526765,0.155926,0.186894,0.659282,0.549816,0.502872,0.0145104,0.478425,0.336765,0.0677124,0.117867,0.499578,0.8628,0.697822,0.384443,0.22651,0.157006,0.932162,0.765524,0.503845,0.52992,0.584232,0.637279,0.656937,0.223843,0.48928,0.496767,0.383096,0.731499,0.141953,0.856772,0.623048,0.631266,0.780868,0.539767,0.511576,0.164315,0.500344,0.316747,0.878532,0.44407,0.547304,0.299836,0.0171646,0.516746,0.0608924,0.754299,0.60024,0.15919,0.00657487,0.734405,0.734906,0.415902,0.268025,0.866567,0.0399232,0.0330005,0.639838,0.91393,0.402953,0.0414694,0.795862,0.154567,0.957431,0.720047,0.212249,0.210101,0.447115,0.237584,0.351707,0.684377,0.754963,0.267567,0.234299,0.784526,0.97006,0.870038,0.136295,0.150434,0.141811,0.346379,0.595366,0.489314,0.303492,0.408248,0.044625,0.466619,0.898346,0.19213,0.588697,0.643988,0.549669,0.346317,0.890906,0.0891373,0.607337,0.745314,0.642332,0.443955,0.361791,0.218639,0.955536,0.651329,0.450346,0.460629,0.335251,0.0595575,0.804538,0.618307,0.419165,0.92892,0.460373,0.309931,0.123633,0.0179654,0.91423,0.84883,0.739444,0.846988,0.527327,0.885858,0.90734,0.910503,0.285342,0.409321,0.948925,0.872191,0.692185,0.934339,0.296803,0.684291,0.143596,0.435747,0.586029,0.849768,0.851709,0.211468,0.284787,0.613246,0.980738,0.00422662,0.611187,0.386563,0.842641,0.974573,0.383679,0.00690538,0.0474476,0.129696,0.553642,0.428474,0.375048,0.90988,0.467491,0.0138004,0.244914,0.135829,0.451327,0.716086,0.380491,0.182055,0.807792,0.237917,0.549366,0.557272,0.975294,0.44975,0.581625,0.239441,0.709231,0.62543,0.962531,0.711022,0.667734,0.77419,0.524852,0.215043,0.740452,0.668371,0.863102,0.869844,0.129701,0.561515,0.857,0.500652,0.580921,0.234518,0.685773,0.784539,0.205108,0.667253,0.588733,0.0647568,0.914481,0.624337,0.32023,0.870476,0.580605,0.633147,0.125866,0.28782,0.528288,0.495984,0.6096,0.181136,0.0816506,0.963193,0.96136,0.705061,0.0540575,0.178929,0.567957,0.1052,0.72744,0.971444,0.157682,0.163004,0.924242,0.953775,0.588917,0.786618,0.546176,0.660286,0.433857,0.215367,0.951635,0.2215,0.0734718,0.625233,0.188264,0.0123216,0.680393,0.73867,0.389028,0.441507,0.105231,0.647171,0.302572,0.46873,0.66273,0.234327,0.00423729,0.777478,0.269771,0.0473669,0.106592,0.175532,0.41962,0.888018,0.727339,0.52307,0.616828,0.437281,0.888803,0.959784,0.794703,0.28483,0.417431,0.942217,0.486205,0.38316,0.828914,0.093576,0.270655,0.148497,0.525662,0.16813,0.474551,0.688512,0.781333,0.516425,0.124907,0.373147,0.540338,0.119116,0.078448,0.516391,0.0871931,0.0164022,0.630876,0.530164,0.404762,0.480082,0.255825,0.94635,0.336509,0.705679,0.669014,0.709815,0.193257,0.0213667,0.347479,0.072367,0.362939,0.201255,0.361416,0.0737345,0.771283,0.859947,0.0371433,0.684075,0.137874,0.59139,0.135296,0.942169,0.866246,0.65568,0.592418,0.654432,0.695454,0.816596,0.134408,0.816956,0.423828,0.705038,0.83135,0.488267,0.220979,0.926656,0.258143,0.43297,0.0879556,0.918118,0.899724,0.862294,0.249539,0.145376,0.425555,0.829593,0.701762,0.312831,0.428955,0.0135769,0.557828,0.716556,0.577282,0.417271,0.19131,0.509387,0.312778,0.778792,0.292364,0.178374,0.736477,0.0721388,0.41307,0.0817114,0.917804,0.191706,0.46416,0.504645,0.986288,0.496536,0.00301009,0.899393,0.0653206,0.102567,0.687083,0.151634,0.77877,0.994821,0.62702,0.575745,|0.563553,0.585571,0.530441,0.608699,0.252016,0.615238,0.359233,0.653578,0.899461,0.0936995,0.775276,0.397912,0.258776,0.512845,0.951062,0.446319,0.0410597,0.827733,0.101107,0.158182,0.638505,0.348192,0.0427719,0.686473,0.517516,0.578081,0.480087,0.397465,0.124881,0.587992,0.0349259,0.892642,0.116391,0.894836,0.691225,0.62838,0.614503,0.416209,0.858779,0.236654,0.042385,0.681534,0.745574,0.805289,0.340515,0.777033,0.802374,0.4973,0.691481,0.483414,0.749956,0.255314,0.648117,0.640616,0.0415862,0.902303,0.182828,0.21594,0.240198,0.999354,0.461418,0.765712,0.045912,0.351533,0.567264,0.265067,0.759564,0.027068,0.754127,0.136081,0.267242,0.290118,0.0727538,0.635767,0.795166,0.946678,0.59255,0.226804,0.840392,0.479454,0.649664,0.187405,0.505109,0.640274,0.589239,0.0094949,0.0445642,0.552064,0.336891,0.683999,0.357381,0.862315,0.593136,0.504965,0.515711,0.063151,0.84523,0.667818,0.785708,0.684348,0.659598,0.465057,0.451745,0.534974,0.263429,0.674721,0.235436,0.738417,0.33017,0.205762,0.601432,0.153786,0.394099,0.514201,0.00458318,0.182201,0.471246,0.579803,0.146563,0.197195,0.888752,0.635562,0.0863987,0.540261,0.471958,0.446229,0.370314,0.509715,0.24421,0.349903,0.319995,0.518091,0.94228,0.854244,0.523092,0.816442,0.517162,0.886509,0.556412,0.470826,0.607985,0.597727,0.7503,0.832825,0.273198,0.35714,0.967896,0.721777,0.310559,0.0378068,0.924368,0.809629,0.0448013,0.703257,0.606716,0.240912,0.818458,0.903198,0.215215,0.145621,0.256525,0.150245,0.763848,0.899115,0.0957857,0.0391055,0.457013,0.324065,0.747617,0.907428,0.226454,0.127235,0.759318,0.154324,0.0801557,0.646322,0.790482,0.728699,0.479545,0.351239,0.566132,0.756171,0.0446094,0.786704,0.400113,0.00288486,0.20254,0.129134,0.730604,0.892854,0.564535,0.0325716,0.178662,0.258593,0.278654,0.987767,0.508069,0.766229,0.219087,0.988112,0.470482,0.394977,0.213145,0.339101,0.456158,0.635623,0.123475,0.0734979,0.111612,0.597311,0.17333,0.314069,0.80474,0.186235,0.767032,0.630735,0.79527,0.434997,0.734088,0.363277,0.283082,0.786319,0.0817276,0.776876,0.8458,0.921772,0.488084,0.598864,0.521346,0.416419,0.0320765,0.254239,0.747971,0.0891458,0.894798,0.135321,0.552453,0.864023,0.343787,0.569988,0.246697,0.311091,0.155118,0.634177,0.0100729,0.0929323,0.186012,0.523567,0.66345,0.749033,0.633284,0.164907,0.058979,0.046559,0.73352,0.811696,0.81363,0.989292,0.265271,0.940148,0.421953,0.458958,0.00377625,0.267671,0.714308,0.423492,0.982444,0.0887163,0.56867,0.516502,0.912831,0.186829,0.588594,0.689425,0.446229,0.991233,0.0726942,0.653585,0.73862,0.468217,0.102302,0.635646,0.409579,0.219364,0.160168,0.601215,0.30426,0.705941,0.575022,0.47415,0.918082,0.401606,0.115634,0.312678,0.404895,0.414665,0.150969,0.559178,0.782477,0.453618,0.636832,0.990118,0.753793,0.944326,0.789473,0.691464,0.430458,0.402253,0.445657,0.775522,0.243798,0.609897,0.530666,0.10415,0.27016,0.856614,0.184371,0.292738,0.127342,0.641686,0.456121,0.477938,0.415079,0.799071,0.297556,0.69785,0.908935,0.500398,0.956877,0.922576,0.372543,0.477514,0.311907,0.964678,0.850477,0.34556,0.270643,0.113932,0.283465,0.691419,0.603013,0.654047,0.510881,0.921289,0.374159,0.480853,0.831077,0.136635,0.452377,0.497361,0.85344,0.84282,0.548803,0.648107,0.505247,0.961803,0.545281,0.361441,0.72065,0.912052,0.412789,0.209302,0.805806,0.572231,0.403726,0.19365,0.793182,0.670875,0.909269,0.923695,0.900932,0.672065,0.779543,0.0250714,0.918482,0.0585138,0.137664,0.42018,0.878267,0.801976,0.485686,0.308888,0.913647,0.823166,0.194756,0.618524,0.559219,0.999521,0.308789,0.364142,0.387693,0.280666,0.447348,0.133006,0.880095,0.252687,0.367117,0.50466,0.20904,0.509837,0.888193,0.657368,0.78484,0.988477,0.208775,0.564823,0.324436,0.543777,0.603706,0.221567,0.585931,0.337825,0.25109,0.90251,0.955674,0.0177045,0.895136,0.773993,0.828796,0.681869,0.205386,0.0702075,0.0838363,0.814785,0.488033,0.604297,0.972142,0.185217,0.060059,0.273776,0.210854,0.935807,0.372981,0.740603,0.435714,0.118931,0.280174,0.19135,0.550063,0.391726,0.403958,0.614048,0.712448,0.401419,0.859406,0.115466,0.268387,0.583068,0.505153,0.00389653,0.105981,0.303902,0.660477,0.636642,0.745854,0.534315,0.19652,0.296614,0.203386,0.407668,0.032232,0.98594,0.709743,0.392865,0.82649,0.772962,0.691467,0.243047,0.702928,0.0540227,0.702724,0.545595,0.508836,0.95262,0.626237,0.378672,0.2616,0.790607,0.910012,0.101335,0.952572,0.496026,0.395745,0.479125,0.818552,0.995923,0.618026,0.183307,0.877361,0.281047,0.0249738,0.323198,0.970752,0.816496,0.557455,0.960631,0.543307,0.375596,0.563323,0.478029,0.514495,0.858858,0.962244,0.744359,0.889646,0.822868,0.178235,0.187189,0.332636,0.676162,0.65402,0.516306,0.583092,0.205027,0.63,0.129047,0.158756,0.505545,0.483848,0.46209,0.269235,0.643444,0.205654,0.265306,0.42488,0.286689,0.408993,0.859728,0.879671,0.264106,0.611131,0.687274,0.210124,0.699951,0.529469,0.405425,0.00827581,0.826671,0.504,0.510755,0.470003,0.334809,0.502005,0.2962,0.663996,0.88431,0.531714,0.710245,0.0675343,0.647039,0.696551,0.697929,0.503463,0.270958,0.249286,0.369561,0.567407,0.809816,0.368124,0.205332,0.769319,0.472905,0.799875,0.202226,0.0844171,0.526085,0.657227,0.489329,0.672929,0.749009,0.377485,0.77268,0.561774,0.276322,0.233636,0.369684,0.727877,0.667818,0.318453,0.949783,0.777544,0.898077,0.66537,0.196174,0.521707,0.319495,0.309125,0.957819,0.763917,0.822895,0.834214,0.0506641,0.877825,0.749448,0.897045,0.878969,0.367066,0.469992,0.857151,0.988812,0.727522,0.31255,0.206526,0.593313,0.473912,0.785181,0.772407,0.627225,0.732376,0.964606,0.717269,0.14921,0.457703,0.631429,0.595699,0.0990271,0.710512,0.472268,0.331861,0.591765,0.579164,0.163178,0.550058,0.351946,0.661011,0.395653,0.376497,0.33389,0.88988,0.436756,0.718387,0.743137,0.929308,0.97919,0.758132,0.410741,0.951475,0.0272741,0.698155,0.757356,0.730863,0.997243,0.871431,0.22547,0.489041,0.945335,0.93723,0.692588,0.286054,0.375938,0.684516,0.530656,0.870297,0.623915,0.691909,0.0354429,0.101601,0.138969,0.909811,0.135379,0.723382,0.571836,0.338418,0.537916,0.787819,0.00279361,0.511559,0.943796,0.482252,0.697036,0.791108,0.797785,0.347175,0.124169,0.11763,0.704436,0.845129,0.452501,0.0949462,0.808733,0.998302,0.216042,0.975966,0.562855,0.488331,0.579938,0.208294,0.200582,0.108638,0.0373953,0.720171,0.911476,0.732133,0.408856,0.673089,0.523581,0.262224,0.706648,0.55665,0.624768,0.364723,0.690621,0.236981,0.871064,0.12858,0.134859,0.601167,0.149257,0.715406,0.0387534,0.825827,0.683235,0.86105,0.973403,0.946148,0.11923,0.768087,0.991307,0.898803,0.887558,0.488886,0.130869,0.607063,0.861198,0.994092,0.128318,0.223637,0.449605,0.544032,0.968499,0.184893,0.630223,0.409143,0.471466,0.232346,0.21198,0.101964,0.360509,0.29898,0.469879,0.25396,0.623369,0.575399,0.210967,0.735996,0.865453,0.822444,0.47593,0.634999,0.547027,0.294302,0.395163,0.196455,0.393737,0.576423,0.109094,0.181124,0.74503,0.722943,0.409987,0.163238,0.175159,0.467926,0.909508,0.276695,0.909466,0.65741,0.582725,0.187394,0.609219,0.873196,0.237101,0.0102251,0.209448,0.320558,0.452075,0.496425,0.670363,0.674456,0.844363,0.208973,0.68097,0.307524,0.116694,0.592911,0.512167,0.00365257,0.46839,0.889039,0.273889,0.889207,0.908859,0.233566,0.813212,0.658836,0.797288,0.65238,0.589038,0.336262,0.0279914,0.511758,0.508194,0.848601,0.580557,0.28112,0.727603,0.635024,0.107648,0.696747,0.376998,0.652678,0.185462,0.70448,0.0176553,0.0759947,0.821132,0.849721,0.54849,0.45854,0.257067,0.541081,0.316981,0.224563,0.370283,0.884484,0.815442,0.339405,0.359876,0.00134522,0.162991,0.484532,0.343974,0.027557,0.961635,0.391557,0.536382,0.539924,0.414257,0.869329,0.505995,0.670201,0.933546,0.0906124,0.793029,0.198787,0.341679,0.360664,0.5717,0.907235,0.0818649,0.305741,0.819552,0.198821,0.752331,0.843467,0.430404,0.106243,0.569626,0.354903,0.557937,0.397739,0.991793,0.538308,0.768841,0.727971,0.149252,0.677714,0.202112,0.983747,0.057169,0.877137,0.196581,0.0462182,0.64999,0.623844,0.914179,0.149462,0.311264,0.0220204,0.315957,0.820202,0.677441,0.590007,0.212747,0.106617,0.00256103,0.00448799,0.466799,0.501324,0.896751,0.0530971,0.26804,0.280633,0.694128,0.383598,0.433618,0.0918695,0.578595,0.807066,0.349321,0.462784,0.876584,0.700323,0.933794,0.599907,0.787529,0.178242,0.902278,0.184683,0.55584,0.00402606,0.247745,0.905645,0.324174,0.579834,0.239571,0.0143796,0.326564,0.818791,0.424809,0.862814,0.991579,0.165019,0.162656,0.235958,0.153667,0.0303044,0.730303,0.85918,0.295659,0.0396054,0.198877,0.819195,0.788872,0.54654,0.0366262,0.116885,0.717008,0.725206,0.979486,0.939781,0.154245,0.629484,0.97991,0.653457,0.467141,0.962286,0.645603,0.712582,0.913414,0.489713,0.908664,0.237698,0.856497,0.200898,0.361503,0.332704,0.719029,0.130864,0.57402,0.234533,0.0283238,0.380059,0.571376,0.60377,0.487307,0.135164,0.892184,0.359194,0.0896896,0.960024,0.000284016,0.348843,0.812195,0.00593245,0.653673,0.746631,0.136307,0.135742,0.162349,0.947476,0.346224,0.799255,0.734785,0.765928,0.675145,0.525821,0.176651,0.532226,0.756167,0.779975,0.168826,0.517726,0.834228,0.610608,0.345294,0.551194,0.852708,0.526821,0.976176,|0.972156,0.884567,0.0138879,0.249322,0.126967,0.133802,0.889625,0.232972,0.118239,0.932923,0.724916,0.44112,0.542452,0.342309,0.259449,0.0877717,0.295988,0.937971,0.706124,0.637091,0.665454,0.00628805,0.311979,0.698744,0.852931,0.236385,0.267945,0.338988,0.667931,0.127186,0.401183,0.922861,0.206974,0.366896,0.0570349,0.0914212,0.944448,0.959742,0.963265,0.383155,0.341693,0.299205,0.21449,0.734153,0.366552,0.465465,0.641616,0.00681144,0.441135,0.922302,0.617711,0.6801,0.27427,0.498868,0.8114,0.350764,0.208013,0.0967484,0.00329173,0.628619,0.907439,0.780918,0.0331466,0.996737,0.13836,0.623388,0.46288,0.535077,0.707824,0.880612,0.0937445,0.0125121,0.0558859,0.340569,0.288172,0.52029,0.803045,0.641962,0.941294,0.55222,0.814968,0.0874027,0.979805,0.170165,0.347334,0.163697,0.648697,0.125439,0.659191,0.626365,0.355559,0.0300851,0.402952,0.978575,0.578955,0.748951,0.54179,0.632391,0.903197,0.763954,0.830789,0.9957,0.497184,0.790067,0.412816,0.444569,0.42438,0.568708,0.147343,0.614891,0.295102,0.820016,0.137732,0.919031,0.639276,0.816095,0.130363,0.464879,0.915684,0.187917,0.92464,0.181985,0.191033,0.378974,0.580076,0.496005,0.196147,0.897625,0.353037,0.104518,0.249701,0.0488916,0.169287,0.398802,0.35509,0.36603,0.965738,0.237798,0.144414,0.129824,0.268742,0.898005,0.553199,0.533129,0.208725,0.819965,0.0520388,0.214963,0.135703,0.506273,0.382966,0.929152,0.815247,0.77221,0.940757,0.0435719,0.814288,0.160236,0.277911,0.399807,0.921793,0.956825,0.412963,0.00585574,0.473166,0.750565,0.896961,0.976826,0.472459,0.994595,0.187,0.182296,0.246365,0.922693,0.2875,0.0885057,0.746245,0.364942,0.735016,0.062275,0.943564,0.0776696,0.908037,0.496622,0.71174,0.775365,0.727431,0.292045,0.241986,0.31673,0.991236,0.986462,0.200667,0.113447,0.214674,0.545875,0.520592,0.145222,0.161643,0.822053,0.544267,0.49382,0.189793,0.633598,0.574174,0.975238,0.478798,0.996418,0.479625,0.887674,0.466332,0.461999,0.820804,0.828248,0.608443,0.0243697,0.9154,0.844129,0.156426,0.187989,0.418229,0.741644,0.680618,0.884714,0.348625,0.102149,0.918318,0.353271,0.94462,0.817519,0.877661,0.537514,0.18911,0.845912,0.328348,0.280668,0.167734,0.762827,0.392687,0.773401,0.543407,0.668518,0.52402,0.377929,0.0144694,0.520303,0.945534,0.675605,0.935128,0.729534,0.736505,0.299855,0.350415,0.347654,0.684851,0.396675,0.999562,0.125996,0.606867,0.207014,0.952455,0.652215,0.98425,0.91814,0.493443,0.925954,0.474958,0.814187,0.581118,0.430902,0.997397,0.461441,0.141292,0.851604,0.91179,0.554544,0.200994,0.490667,0.128142,0.210331,0.477025,0.707756,0.35218,0.713793,0.895651,0.662678,0.331013,0.877241,0.207706,0.120831,0.80334,0.732321,0.738917,0.624136,0.612467,0.928734,0.771401,0.0431849,0.743993,0.288795,0.157343,0.876753,0.961969,0.751217,0.546677,0.054378,0.931693,0.0489398,0.609086,0.698116,0.498679,0.363422,0.508876,0.504452,0.268597,0.551471,0.425063,0.348626,0.480069,0.0586894,0.253613,0.0904731,0.986806,0.899395,0.802613,0.826232,0.105069,0.097399,0.331934,0.933171,0.529845,0.292818,0.593377,0.768058,0.6901,0.237597,0.0777461,0.239099,0.376583,0.663992,0.340237,0.124599,0.599313,0.349755,0.828256,0.66716,0.422163,0.270287,0.117851,0.206164,0.577101,0.921569,0.731807,0.199451,0.467486,0.341046,0.531932,0.842753,0.248807,0.291993,0.749581,0.918768,0.782185,0.83898,0.267479,0.922885,0.415773,0.163192,0.581199,0.621792,0.0786996,0.60116,0.866124,0.27546,0.710613,0.509177,0.242856,0.144751,0.085084,0.0479053,0.482731,0.758181,0.372575,0.780425,0.597357,0.359709,0.754923,0.789188,0.00297773,0.548108,0.156495,0.306684,0.388455,0.174424,0.0905669,0.740788,0.016611,0.875157,0.644702,0.603075,0.348022,0.146629,0.73462,0.216223,0.680114,0.674783,0.505625,0.359409,0.281562,0.608071,0.23788,0.377369,0.65162,0.547328,0.317426,0.683358,0.827676,0.302724,0.803979,0.141835,0.820352,0.720558,0.145425,0.0958581,0.342274,0.7196,0.377627,0.995882,0.457142,0.571297,0.361116,0.826866,0.476818,0.630045,0.985583,0.15303,0.992056,0.611794,0.940002,0.620924,0.36233,0.759775,0.802756,0.510251,0.277344,0.215559,0.889388,0.408988,0.57205,0.711034,0.267403,0.391167,0.461527,0.692434,0.179008,0.0548329,0.611388,0.220498,0.879902,0.206679,0.954936,0.394787,0.343211,0.574572,0.311868,0.723215,0.90329,0.962986,0.658826,0.654764,0.161381,0.103363,0.982876,0.523868,0.105636,0.497964,0.475339,0.653067,0.0570356,0.2197,0.342321,0.228434,0.95753,0.355168,0.367903,0.347615,0.964635,0.791491,0.398372,0.831593,0.924545,0.418279,0.195559,0.198453,0.863874,0.315751,0.00493801,0.676999,0.571129,0.491655,0.739136,0.490722,0.299203,0.166901,0.36941,0.266077,0.908263,0.0202559,0.20569,0.727928,0.497786,0.561043,0.136564,0.112284,0.877862,0.648153,0.557002,0.296966,0.728572,0.0941949,0.179994,0.345299,0.0657311,0.0463513,0.307558,0.0458743,0.853722,0.554943,0.0473052,0.243152,0.0968179,0.76982,0.954819,0.216728,0.287047,0.793607,0.500503,0.948589,0.269861,0.0503927,0.442717,0.0623049,0.712668,0.783958,0.963599,0.431229,0.569461,0.782968,0.537616,0.874476,0.562281,0.348716,0.367046,0.697895,0.514555,0.444263,0.728417,0.867457,0.950816,0.931129,0.089165,0.159433,0.092435,0.367008,0.916411,0.869977,0.173573,0.911298,0.643084,0.386672,0.718041,0.0401536,0.413621,0.79678,0.977942,0.977263,0.460356,0.866337,0.362494,0.191897,0.402993,0.145706,0.260689,0.138973,0.797377,0.271163,0.23246,0.730441,0.619991,0.771074,0.865685,0.303788,0.741722,0.753671,0.873467,0.620379,0.932288,0.119305,0.0578196,0.322002,0.634696,0.518725,0.726034,0.656764,0.929487,0.264768,0.89579,0.147528,0.305523,0.841342,0.457158,0.713828,0.608684,0.904905,0.651306,0.329367,0.582123,0.820472,0.391481,0.0828264,0.450024,0.236299,0.898532,0.215343,0.47924,0.755389,0.591608,0.0891756,0.520602,0.551772,0.0915899,0.911235,0.855978,0.0298147,0.447744,0.45903,0.29054,0.377949,0.551666,0.713986,0.336227,0.8786,0.485899,0.613305,0.804238,0.991032,0.881877,0.250207,0.755844,0.531441,0.942993,0.137953,0.438283,0.147147,0.336364,0.693574,0.756473,0.811581,0.204421,0.0543361,0.626521,0.974025,0.217104,0.326521,0.19779,0.363976,0.740756,0.61676,0.245342,0.210016,0.611566,0.373996,0.107555,0.0477679,0.0357652,0.561435,0.68142,0.722946,0.226419,0.12781,0.334269,0.418929,0.141836,0.0113283,0.391871,0.67131,0.37795,0.122766,0.848834,0.681937,0.92508,0.966249,0.998017,0.811214,0.627328,0.399749,0.968725,0.941668,0.787011,0.0490665,0.408485,0.742233,0.500182,0.864463,0.906953,0.352667,0.334629,0.436601,0.0172881,0.21449,0.561537,0.364088,0.894048,0.528811,0.547827,0.193547,0.172424,0.564331,0.788517,0.626214,0.354466,0.170559,0.495321,0.398807,0.458117,0.112875,0.534784,0.947302,0.479519,0.881206,0.842352,0.0951526,0.216009,0.264249,0.61637,0.758022,0.168281,0.716895,0.466862,0.729039,0.664656,0.505716,0.197676,0.852129,0.98537,0.389892,0.118881,0.511019,0.0692196,0.470298,0.728492,0.530582,0.883646,0.859,0.998347,0.852072,0.76724,0.676983,0.557002,0.559211,0.82772,0.68549,0.147627,0.221607,0.359736,0.598813,0.423114,0.704603,0.83446,0.42468,0.483314,0.962901,0.273051,0.591601,0.85658,0.429103,0.957038,0.611286,0.424901,0.562084,0.235728,0.210492,0.649594,0.968925,0.996571,0.181748,0.952573,0.566209,0.384845,0.976512,0.788076,0.197162,0.666905,0.232483,0.831572,0.966668,0.701353,0.733611,0.88642,0.213743,0.0807132,0.162591,0.865726,0.575009,0.27642,0.521045,0.52947,0.0848644,0.654243,0.0355985,0.349235,0.793658,0.25316,0.0613236,0.43129,0.789415,0.665742,0.677699,0.613165,0.921281,0.530263,0.680306,0.987673,0.0829026,0.977945,0.758169,0.830036,0.78512,0.991509,0.869342,0.622606,0.53679,0.155259,0.601206,0.111043,0.264702,0.775664,0.969755,0.978414,0.255571,0.0270244,0.698237,0.500636,0.859826,0.85199,0.154422,0.126631,0.156287,0.662645,0.812329,0.658705,0.416176,0.160619,0.781457,0.0885174,0.992308,0.0840616,0.514204,0.16247,0.219383,0.540299,0.520044,0.944948,0.762699,0.333222,0.213246,0.200708,0.54643,0.332682,0.679819,0.441445,0.0359381,0.469854,0.0753957,0.595668,0.253607,0.99803,0.470605,0.341866,0.578995,0.609622,0.297102,0.206619,0.487131,0.720112,0.151997,0.184562,0.793424,0.040795,0.833043,0.527679,0.36783,0.0814562,0.353952,0.615232,0.672716,0.420296,0.223309,0.447163,0.85004,0.6795,0.19489,0.279172,0.280942,0.324568,0.414698,0.235947,0.257917,0.634709,0.328998,0.253821,0.969758,0.125272,0.968191,0.854455,0.226481,0.906008,0.781178,0.108034,0.384769,0.998478,0.749076,0.547953,0.657608,0.297186,0.144172,0.920438,0.28973,0.802876,0.371375,0.487314,0.799431,0.142215,0.410337,0.681826,0.730208,0.936807,0.342621,0.951941,0.155517,0.529781,0.476687,0.122944,0.938605,0.591212,0.151539,0.00327528,0.852681,0.358842,0.224025,0.880054,0.112887,0.13935,0.593903,0.264479,0.577533,0.330113,0.479419,0.999251,0.908015,0.769706,0.411181,0.883407,0.0407083,0.139747,0.474713,0.982611,0.13425,0.510971,0.399554,0.237578,0.643174,0.20729,0.139756,0.990995,0.836082,0.440542,0.773388,0.843033,0.487868,0.906753,0.836974,0.111934,0.931551,0.511462,0.892565,0.297688,0.464637,0.636956,0.721905,0.582446,0.210258,0.100397,0.306051,0.765581,0.563938,0.00721753,0.592042,0.612226,0.169684,|0.440733,0.186365,0.163386,0.71114,0.402026,0.601415,0.330992,0.721918,0.47348,0.0610761,0.857381,0.875331,0.0822178,0.348427,0.66211,0.706914,0.0218689,0.965132,0.172693,0.162332,0.406815,0.985704,0.819485,0.941447,0.397049,0.498446,0.838192,0.379364,0.401532,0.0348467,0.474661,0.482857,0.0379014,0.290123,0.395508,0.619712,0.0209562,0.879284,0.584052,0.597864,0.993811,0.463208,0.261104,0.912775,0.143176,0.743571,0.0765669,0.923601,0.74028,0.958442,0.16909,0.560925,0.565455,0.0526494,0.239058,0.154173,0.779268,0.378654,0.652706,0.489075,0.728774,0.0370223,0.196688,0.947335,0.25742,0.226169,0.867314,0.995403,0.534326,0.784448,0.756528,0.754562,0.275158,0.807151,0.600132,0.272022,0.23605,0.632222,0.685587,0.818065,0.333016,0.913455,0.0074178,0.403019,0.176439,0.0521308,0.899411,0.156392,0.338904,0.290552,0.30902,0.845825,0.718633,0.387913,0.376226,0.416553,0.284448,0.357494,0.284975,0.633398,0.732945,0.571716,0.658337,0.549767,0.461805,0.49923,0.368091,0.151531,0.307702,0.223749,0.120549,0.924257,0.218596,0.280959,0.599331,0.863412,0.944723,0.995258,0.895706,0.773533,0.48691,0.288962,0.571792,0.63236,0.323254,0.778534,0.79703,0.303219,0.217244,0.976396,0.258221,0.694971,0.463482,0.803445,0.0207602,0.173168,0.352183,0.705227,0.395533,0.463272,0.270319,0.850022,0.260607,0.666655,0.501182,0.988706,0.888473,0.940473,0.769769,0.523932,0.208066,0.709953,0.212556,0.647521,0.68289,0.603442,0.34912,0.459973,0.167241,0.37416,0.145506,0.978947,0.50314,0.085573,0.498047,0.357431,0.407823,0.416492,0.854999,0.0595383,0.0726212,0.434145,0.379891,0.282531,0.507816,0.591396,0.474251,0.408224,0.743018,0.352653,0.945541,0.111487,0.531431,0.59523,0.331459,0.694791,0.459392,0.902661,0.29415,0.276228,0.732813,0.15093,0.931821,0.185125,0.422011,0.283076,0.0843128,0.348384,0.532234,0.697055,0.215133,0.628861,0.976741,0.762566,0.635037,0.929924,0.796492,0.820935,0.615353,0.720683,0.442622,0.261223,0.552375,0.204891,0.329644,0.210554,0.898951,0.881357,0.0646768,0.702213,0.660248,0.167226,0.666053,0.960906,0.802728,0.161891,0.818609,0.334443,0.241349,0.127011,0.277937,0.329816,0.212408,0.0486621,0.0351721,0.0591908,0.35367,0.323288,0.911307,0.244203,0.587899,0.714305,0.572936,0.742138,0.417873,0.885924,0.921802,0.468311,0.387303,0.359307,0.308216,0.666548,0.39874,0.396626,0.0964026,0.604428,0.890493,0.324718,0.226531,0.163165,0.798882,0.931518,0.391781,0.524013,0.237395,0.485264,0.173848,0.591074,0.379906,0.647882,0.26891,0.232717,0.372976,0.456541,0.551724,0.122901,0.349212,0.142597,0.00631094,0.789844,0.934899,0.669661,0.312841,0.926264,0.721162,0.5993,0.0993629,0.231248,0.308582,0.93268,0.67225,0.105559,0.769107,0.983415,0.121985,0.64474,0.352657,0.100322,0.66602,0.208654,0.546871,0.0290624,0.0487188,0.713281,0.923589,0.987974,0.777208,0.555682,0.246331,0.374627,0.208599,0.0523303,0.524178,0.747575,0.390779,0.438472,0.123169,0.348215,0.825921,0.033114,0.5592,0.115146,0.221011,0.84609,0.0102682,0.401913,0.9843,0.38915,0.0432006,0.204801,0.819368,0.91985,0.425206,0.363661,0.475401,0.0518371,0.0657651,0.663689,0.381234,0.12192,0.772481,0.812289,0.687577,0.795112,0.075608,0.113053,0.159728,0.753106,0.704439,0.040227,0.901913,0.309681,0.608883,0.881395,0.366336,0.771892,0.850335,0.594126,0.076802,0.442125,0.624113,0.290999,0.747079,0.321684,0.550319,0.607738,0.971693,0.626337,0.515809,0.0881425,0.0633641,0.710849,0.929003,0.605102,0.363417,0.0968189,0.352059,0.445376,0.375015,0.377441,0.613554,0.8419,0.318683,0.115883,0.228267,0.387721,0.436331,0.844319,0.218229,0.46656,0.0105901,0.82525,0.892186,0.150094,0.991744,0.967797,0.0592282,0.952159,0.369369,0.761339,0.131204,0.203589,0.981144,0.870856,0.574722,0.543754,0.252854,0.979738,0.513332,0.45344,0.439891,0.336305,0.780501,0.971091,0.792839,0.113399,0.0993652,0.277167,0.350052,0.644881,0.23919,0.877256,0.077195,0.384032,0.991807,0.933852,0.0129159,0.830732,0.344009,0.55804,0.366466,0.128796,0.30242,0.353718,0.707122,0.221346,0.362217,0.437373,0.120889,0.952509,0.190215,0.482296,0.989483,0.849147,0.171647,0.168956,0.629355,0.185239,0.715177,0.768669,0.750156,0.393205,0.589194,0.851159,0.882226,0.00959134,0.89733,0.594968,0.766736,0.97995,0.197054,0.652295,0.139296,0.884982,0.648259,0.882376,0.997279,0.594436,0.0278714,0.534394,0.315831,0.652626,0.730893,0.907725,0.843886,0.253858,0.460732,0.421686,0.484294,0.573506,0.493764,0.37787,0.575908,0.777024,0.967692,0.180015,0.856416,0.212353,0.429917,0.875546,0.763297,0.499902,0.0645272,0.40432,0.363065,0.606363,0.309371,0.623267,0.220532,0.55569,0.0806956,0.714897,0.0182283,0.449593,0.472542,0.864634,0.931297,0.747059,0.462364,0.824669,0.114016,0.348759,0.371053,0.221695,0.392047,0.719936,0.414093,0.387461,0.61305,0.125655,0.980186,0.363354,0.467653,0.231749,0.495888,0.891519,0.655127,0.430028,0.383375,0.0484641,0.495492,0.6168,0.471334,0.451178,0.344119,0.535318,0.645649,0.166892,0.0106332,0.894543,0.697251,0.216789,0.421654,0.12066,0.68004,0.669679,0.276572,0.479074,0.356068,0.130181,0.285682,0.188699,0.306229,0.93539,0.304895,0.979877,0.181586,0.20998,0.875253,0.457589,0.376061,0.238534,0.121537,0.545022,0.926698,0.158433,0.646282,0.0483849,0.428873,0.281013,0.105931,0.238206,0.348202,0.333106,0.232702,0.446987,0.309281,0.493618,0.827941,0.0879415,0.118221,0.0395954,0.0632403,0.349813,0.65745,0.00512362,0.75467,0.839935,0.0147082,0.389969,0.98078,0.0471658,0.89613,0.287401,0.129511,0.140386,0.646686,0.383563,0.21631,0.723158,0.231685,0.51502,0.0244757,0.770425,0.232657,0.662314,0.999722,0.265618,0.298348,0.958195,0.837472,0.966611,0.200552,0.180806,0.43262,0.689189,0.612466,0.894724,0.18825,0.468571,0.59902,0.577416,0.978662,0.459793,0.84204,0.256535,0.415304,0.949464,0.24096,0.302169,0.378372,0.0342972,0.755848,0.132282,0.494755,0.990287,0.0152715,0.215377,0.84831,0.982261,0.766404,0.258864,0.311713,0.629356,0.766965,0.238221,0.0348222,0.725463,0.515405,0.34489,0.558309,0.178038,0.0646312,0.597477,0.157532,0.868047,0.869034,0.509292,0.380958,0.344668,0.697858,0.447212,0.932118,0.859349,0.553264,0.423243,0.13562,0.470517,0.71438,0.818874,0.338524,0.179419,0.0174977,0.774435,0.464449,0.0677041,0.112268,0.282753,0.354529,0.0170745,0.799167,0.0128207,0.966921,0.93334,0.669234,0.499918,0.99096,0.347538,0.758853,0.217423,0.812357,0.796249,0.333048,0.0177258,0.418727,0.141133,0.397327,0.129831,0.143079,0.485163,0.2539,0.322243,0.12069,0.343973,0.598511,0.282668,0.412433,0.0692546,0.837427,0.745413,0.586835,0.75851,0.490306,0.688602,0.850301,0.989603,0.604963,0.930415,0.625928,0.320973,0.221526,0.76503,0.862185,0.425847,0.4535,0.585718,0.0879382,0.357467,0.857935,0.980456,0.66337,0.36376,0.632083,0.181331,0.0621294,0.20937,0.756408,0.239172,0.617158,0.718196,0.349652,0.427994,0.940135,0.852973,0.0774847,0.065181,0.869864,0.0833142,0.368866,0.152858,0.399077,0.372946,0.254708,0.119131,0.533805,0.599093,0.32208,0.0454779,0.284726,0.540331,0.649855,0.832715,0.237927,0.487991,0.295909,0.680925,0.995343,0.803405,0.530607,0.558314,0.862228,0.477534,0.575244,0.659438,0.777802,0.345535,0.0284542,0.441645,0.688989,0.323748,0.695184,0.794346,0.226124,0.181049,0.404664,0.533037,0.306267,0.79841,0.250273,0.589151,0.752056,0.218473,0.511154,0.80052,0.634204,0.56162,0.146709,0.338619,0.611085,0.290659,0.593455,0.90423,0.876229,0.625115,0.992833,0.997143,0.434038,0.871768,0.783464,0.503156,0.720567,0.174672,0.313912,0.298148,0.487673,0.386656,0.74847,0.896543,0.922237,0.113804,0.689992,0.553533,0.918412,0.0218358,0.693832,0.227144,0.309286,0.934839,0.230688,0.46151,0.500944,0.560863,0.566264,0.566755,0.3305,0.485511,0.508958,0.225972,0.758019,0.608084,0.308726,0.368827,0.0371541,0.0422546,0.818803,0.794136,0.177702,0.353107,0.563634,0.601127,0.266141,0.505943,0.360576,0.358955,0.686604,0.603616,0.868987,0.57699,0.0570623,0.887561,0.0950226,0.221895,0.777849,0.877931,0.352317,0.965391,0.642331,0.736805,0.732572,0.396246,0.0913824,0.5986,0.44182,0.319487,0.427513,0.723313,0.54382,0.353633,0.999512,0.652834,0.786429,0.176686,0.356614,0.34527,0.190317,0.785833,0.0671849,0.785996,0.0414431,0.343088,0.668089,0.538294,0.596882,0.493824,0.505958,0.387196,0.766669,0.343559,0.225016,0.509783,0.429258,0.68267,0.114946,0.5915,0.466544,0.508014,0.514485,0.192177,0.976085,0.769659,0.487522,0.63765,0.501257,0.807497,0.317276,0.190258,0.922248,0.728115,0.0551484,0.00518018,0.625837,0.322775,0.927785,0.00894994,0.543998,0.210679,0.275275,0.00558031,0.983908,0.279762,0.863465,0.696731,0.888236,0.123697,0.315999,0.667522,0.396325,0.926968,0.561868,0.844826,0.784614,0.422643,0.857485,0.396992,0.907903,0.443938,0.500692,0.157626,0.64985,0.505607,0.67268,0.0767545,0.687296,0.414799,0.130137,0.902258,0.76393,0.745519,0.783841,0.849038,0.792905,0.584631,0.302026,0.138138,0.192434,0.00822324,0.227727,0.928966,0.146558,0.676294,0.427404,0.243646,0.889967,0.327673,0.0417162,0.653893,0.0458424,0.120918,0.806198,0.444041,0.146338,0.149342,0.897274,0.0418391,0.402777,0.135156,0.907757,0.761252,0.0132445,0.520516,0.684591,0.842513,0.0860162,0.248416,0.78959,0.60121,0.501433,0.422816,0.408855,0.716904,|0.0854686,0.405818,0.490702,0.379614,0.0736374,0.775969,0.434902,0.554285,0.0180236,0.47807,0.373652,0.505085,0.210394,0.0521535,0.399391,0.818735,0.55429,0.627771,0.603043,0.926741,0.0606697,0.101289,0.778622,0.611576,0.444124,0.990086,0.141381,0.85181,0.505517,0.501087,0.938967,0.993222,0.785579,0.299993,0.924364,0.094243,0.489137,0.474698,0.53744,0.832965,0.717041,0.508696,0.858537,0.86642,0.647129,0.112555,0.774249,0.827634,0.108214,0.642304,0.509863,0.140401,0.43491,0.305467,0.546175,0.473006,0.712634,0.469726,0.404123,0.501231,0.305891,0.153936,0.217843,0.179168,0.307663,0.426922,0.81974,0.331158,0.97097,0.887661,0.945926,0.657018,0.654409,0.987155,0.014483,0.520435,0.920994,0.162326,0.552963,0.453985,0.416204,0.0805317,0.993311,0.140803,0.558178,0.687365,0.196981,0.585079,0.818924,0.700786,0.481343,0.75227,0.250033,0.988935,0.237192,0.539186,0.512087,0.999428,0.249843,0.523713,0.510914,0.809094,0.350287,0.932915,0.484122,0.476858,0.921428,0.508543,0.968162,0.727717,0.58722,0.811626,0.973304,0.436296,0.206753,0.835971,0.441248,0.490914,0.85352,0.856542,0.298017,0.241328,0.165542,0.358401,0.618349,0.716761,0.109525,0.568943,0.526595,0.739204,0.436883,0.74039,0.693618,0.586351,0.525452,0.373222,0.418515,0.698557,0.885552,0.698403,0.51952,0.274632,0.918688,0.311219,0.159779,0.891862,0.965804,0.782493,0.11503,0.057243,0.363434,0.352989,0.0201235,0.568311,0.689591,0.860776,0.559745,0.497493,0.439601,0.140472,0.110203,0.731967,0.759848,0.503167,0.791892,0.766022,0.14882,0.79218,0.70942,0.320377,0.208239,0.541888,0.0201566,0.827065,0.645713,0.596132,0.0493535,0.537559,0.296153,0.314713,0.65388,0.371265,0.235554,0.885579,0.659805,0.821171,0.94173,0.139543,0.896871,0.0809627,0.340674,0.394405,0.198656,0.925752,0.0776798,0.603644,0.989627,0.974994,0.132656,0.357486,0.455615,0.00258482,0.573488,0.143795,0.548693,0.776798,0.0476261,0.578155,0.317836,0.348962,0.920586,0.506902,0.899974,0.896654,0.0370718,0.596979,0.340441,0.233707,0.391016,0.0303662,0.884997,0.493139,0.733041,0.909625,0.737704,0.467473,0.323549,0.644812,0.441076,0.111985,0.232072,0.0958461,0.245208,0.0467018,0.893192,0.0148453,0.369249,0.901623,0.334244,0.466181,0.755055,0.569332,0.05657,0.545583,0.360033,0.332812,0.919608,0.531388,0.468522,0.527174,0.372327,0.592779,0.463964,0.609854,0.0619141,0.200936,0.505129,0.0486839,0.961886,0.693525,0.0932204,0.177757,0.397866,0.143526,0.488344,0.201652,0.995626,0.914305,0.852999,0.955524,0.391459,0.45277,0.549903,0.610269,0.220374,0.994112,0.236463,0.0483068,0.00169092,0.775712,0.251314,0.695979,0.334725,0.598379,0.626779,0.881746,0.953332,0.635167,0.714537,0.00950193,0.87467,0.87156,0.742746,0.00371927,0.997652,0.291469,0.910705,0.271397,0.808478,0.424751,0.99011,0.450242,0.358526,0.468277,0.621451,0.744158,0.769651,0.0287508,0.383067,0.0794529,0.140602,0.883982,0.581057,0.620216,0.779028,0.486867,0.731234,0.399776,0.124457,0.731992,0.773489,0.0310384,0.254269,0.367487,0.223576,0.343593,0.686206,0.70189,0.30585,0.785901,0.480968,0.314886,0.995426,0.965142,0.358807,0.350558,0.488237,0.192144,0.495623,0.771157,0.245561,0.251083,0.355768,0.54201,0.692033,0.633873,0.763788,0.298867,0.895203,0.757242,0.515471,0.217234,0.493694,0.395147,0.591058,0.662842,0.766251,0.405453,0.402615,0.0754718,0.0166152,0.886897,0.896915,0.907018,0.610737,0.69811,0.417148,0.165505,0.628803,0.181092,0.910426,0.843849,0.588556,0.189335,0.716356,0.0228295,0.507458,0.242516,0.150749,0.400726,0.505163,0.433513,0.158532,0.143532,0.573155,0.485241,0.76033,0.832037,0.0874969,0.670192,0.515371,0.658513,0.700027,0.416006,0.189898,0.326367,0.498909,0.710404,0.288059,0.431629,0.213418,0.279032,0.632764,0.858994,0.0170816,0.325239,0.0787234,0.811516,0.349619,0.616348,0.916327,0.893923,0.242891,0.983711,0.811308,0.161095,0.46182,0.992578,0.693045,0.889953,0.670287,0.448309,0.718442,0.361095,0.0884349,0.668594,0.117359,0.986291,0.354456,0.870327,0.0801697,0.993196,0.352441,0.24681,0.242471,0.51212,0.353779,0.532831,0.221344,0.356123,0.71029,0.847224,0.919904,0.850492,0.619578,0.564627,0.491938,0.33,0.55743,0.504987,0.0902283,0.948678,0.471014,0.168889,0.471015,0.59762,0.0855336,0.345305,0.0424772,0.172035,0.237975,0.767454,0.107562,0.961998,0.781773,0.329789,0.18857,0.36288,0.540665,0.396682,0.752366,0.348429,0.824764,0.051255,0.535767,0.160888,0.365621,0.859533,0.480868,0.555909,0.157416,0.234463,0.613072,0.0248999,0.0964553,0.00965106,0.729397,0.744856,0.706435,0.776804,0.351299,0.374686,0.986248,0.512607,0.797468,0.560917,0.0773282,0.661544,0.776964,0.0405694,0.235151,0.14786,0.319406,0.639543,0.132404,0.518191,0.417942,0.748308,0.151444,0.646446,0.935391,0.27684,0.00883579,0.34125,0.427549,0.222696,0.802637,0.372974,0.589449,0.0642416,0.755962,0.446447,0.400158,0.637143,0.794538,0.71414,0.0863228,0.00822431,0.68481,0.235673,0.871593,0.468265,0.398772,0.477361,0.119907,0.0313249,0.686472,0.532631,0.464317,0.87563,0.403629,0.991184,0.614633,0.210109,0.938916,0.10452,0.746051,0.125974,0.679336,0.805672,0.86935,0.554821,0.862969,0.296287,0.967836,0.564968,0.652515,0.936266,0.854269,0.508626,0.473843,0.576555,0.26699,0.618604,0.724442,0.895859,0.50501,0.168074,0.747921,0.933307,0.00285602,0.999425,0.289315,0.513032,0.470495,0.842731,0.203486,0.300228,0.928264,0.94919,0.567506,0.347876,0.316737,0.0408247,0.380607,0.633255,0.458534,0.935784,0.608164,0.630852,0.488837,0.273612,0.422065,0.224844,0.759251,0.702553,0.946862,0.778621,0.737955,0.189671,0.950929,0.139659,0.105894,0.0561736,0.0674905,0.21973,0.27161,0.550035,0.165336,0.543843,0.60701,0.154873,0.174671,0.661415,0.843699,0.414623,0.475809,0.473528,0.0509027,0.482082,0.179039,0.979976,0.0612875,0.803323,0.996156,0.656009,0.619985,0.140697,0.316737,0.650183,0.63186,0.0944805,0.831076,0.765322,0.727485,0.933094,0.430254,0.935596,0.188285,0.921133,0.122608,0.342047,0.783734,0.10301,0.59241,0.762793,0.892119,0.486513,0.0715516,0.74501,0.739136,0.82207,0.715507,0.95924,0.846919,0.995241,0.407191,0.656128,0.950384,0.756829,0.190194,0.522897,0.388041,0.56339,0.378975,0.330993,0.0439047,0.916956,0.881381,0.422381,0.914607,0.141578,0.414547,0.205514,0.355217,0.884961,0.520641,0.674554,0.725819,0.233128,0.113814,0.586307,0.631142,0.735032,0.907533,0.687119,0.877035,0.233715,0.658456,0.0991421,0.925623,0.173354,0.252249,0.265323,0.926253,0.133308,0.502622,0.868057,0.393596,0.771248,0.0592623,0.575389,0.58941,0.920626,0.34551,0.17267,0.785211,0.541337,0.647277,0.65805,0.931827,0.811297,0.162645,0.620859,0.00779295,0.522862,0.918579,0.161732,0.258873,0.443938,0.441983,0.565832,0.90875,0.849121,0.0859765,0.897769,0.744574,0.121945,0.258592,0.0165532,0.226406,0.701288,0.120942,0.747318,0.800085,0.192267,0.837084,0.152423,0.902284,0.769927,0.32583,0.0592691,0.266001,0.510207,0.131693,0.0248562,0.563977,0.248292,0.168574,0.049765,0.0854649,0.373649,0.0129104,0.726397,0.295716,0.191878,0.157235,0.677336,0.322061,0.0562697,0.905928,0.153089,0.554322,0.286308,0.486243,0.900519,0.177576,0.398465,0.0701137,0.0982938,0.494003,0.615705,0.549911,0.124018,0.369371,0.416983,0.666964,0.953445,0.691226,0.150038,0.851008,0.118119,0.188126,0.710429,0.674567,0.717437,0.748058,0.947017,0.00936747,0.909039,0.980594,0.666374,0.47723,0.707072,0.9346,0.220308,0.831857,0.0392767,0.294902,0.962416,0.510476,0.562974,0.690561,0.620602,0.256625,0.70526,0.720436,0.545808,0.277744,0.710286,0.796005,0.153865,0.801152,0.605908,0.175303,0.652511,0.465258,0.640628,0.817876,0.764801,0.50192,0.0540491,0.676685,0.397535,0.262606,0.00885153,0.900785,0.401444,0.725535,0.582989,0.893733,0.151158,0.683605,0.237147,0.417792,0.943952,0.748071,0.28528,0.686183,0.749347,0.0011664,0.370805,0.797293,0.0230687,0.604495,0.331314,0.644092,0.568791,0.576022,0.193749,0.830044,0.0250632,0.355241,0.814751,0.305345,0.798719,0.876819,0.874651,0.31305,0.00933838,0.865101,0.294543,0.966873,0.315805,0.700759,0.131923,0.887399,0.774233,0.261278,0.506858,0.54075,0.405815,0.0740245,0.0356485,0.69,0.51816,0.518768,0.281509,0.434291,0.29132,0.131463,0.44321,0.929165,0.551002,0.0921283,0.124852,0.826268,0.115529,0.483908,0.696355,0.563933,0.126854,0.895322,0.181214,0.909635,0.108727,0.657618,0.999456,0.334752,0.187747,0.416035,0.517157,0.878107,0.0691165,0.525276,0.780481,0.785775,0.971444,0.31668,0.396926,0.52433,0.256056,0.0474215,0.324746,0.501774,0.1071,0.0434813,0.310229,0.712459,0.362983,0.153424,0.790491,0.849519,0.277327,0.520619,0.522124,0.0321212,0.963855,0.677941,0.405321,0.299751,0.186595,0.784814,0.636617,0.99132,0.44355,0.798281,0.158529,0.386138,0.606224,0.220631,0.998341,0.651671,0.771314,0.174792,0.769939,0.170878,0.432981,0.0642761,0.0302927,0.992788,0.0107023,0.598935,0.72521,0.905698,0.156705,0.331887,0.305194,0.915286,0.277532,0.858511,0.979089,0.958567,0.792222,0.359556,0.197458,0.332293,0.0569305,0.844567,0.154643,0.453106,0.951294,0.784911,0.345368,0.322634,0.12768,0.286586,0.96173,0.673568,0.760765,0.547761,0.729773,0.277438,0.943928,0.64508,0.7803,0.629423,0.570927,0.786115,0.660999,0.454293,0.0775341,0.675629,0.569791,0.586413,0.235915,0.572613,0.491865,0.256508,0.285014,|0.758989,0.237889,0.232883,0.36727,0.19191,0.409122,0.888927,0.714078,0.386005,0.315569,0.435874,0.0145485,0.157705,0.430208,0.162383,0.745099,0.151606,0.973395,0.565722,0.482466,0.0814821,0.318457,0.315587,0.62238,0.0823888,0.939287,0.913118,0.409067,0.456414,0.33588,0.873487,0.948897,0.586745,0.887552,0.936186,0.52397,0.492832,0.514807,0.174538,0.656872,0.3241,0.516458,0.52515,0.674914,0.0387813,0.376482,0.50502,0.496949,0.471242,0.052501,0.0530246,0.482205,0.627379,0.622135,0.0756759,0.0345407,0.806275,0.325547,0.289793,0.811379,0.937351,0.742422,0.245959,0.304889,0.185498,0.665988,0.37792,0.643326,0.0628569,0.875011,0.748309,0.913779,0.818613,0.364903,0.261907,0.319919,0.242449,0.791092,0.387588,0.489773,0.726058,0.243415,0.442472,0.596473,0.22833,0.734706,0.831431,0.0889543,0.563246,0.250885,0.321955,0.503024,0.171664,0.47282,0.046525,0.123934,0.683502,0.948127,0.82925,0.294754,0.812462,0.288927,0.874627,0.848734,0.0139746,0.248294,0.180147,0.257546,0.0417631,0.902941,0.461331,0.189742,0.753473,0.518793,0.9294,0.586565,0.191541,0.0804566,0.60172,0.00524151,0.981431,0.893564,0.368354,0.56327,0.808161,0.082669,0.395994,0.348395,0.945763,0.150599,0.489895,0.751625,0.872421,0.62772,0.51179,0.642458,0.618034,0.812899,0.386868,0.700761,0.0372051,0.162924,0.726448,0.569412,0.232297,0.178115,0.69372,0.0402967,0.985301,0.524165,0.934203,0.229392,0.201039,0.13125,0.392923,0.157831,0.841925,0.218092,0.206747,0.986282,0.576233,0.96397,0.203591,0.397049,0.263195,0.982459,0.7141,0.384131,0.111725,0.678331,0.786207,0.61496,0.172077,0.0714971,0.534451,0.521907,0.110066,0.331413,0.411334,0.0873153,0.953768,0.0765712,0.782995,0.682632,0.00709832,0.321353,0.00764716,0.331797,0.691416,0.39263,0.967561,0.513308,0.0900043,0.0318469,0.120727,0.729429,0.741625,0.611405,0.708458,0.773709,0.332287,0.698514,0.0444791,0.490651,0.24066,0.130104,0.566753,0.72751,0.741527,0.639642,0.193961,0.910046,0.976733,0.542346,0.257365,0.202466,0.480151,0.990914,0.145594,0.727164,0.231767,0.329104,0.387594,0.0695232,0.519554,0.214262,0.497138,0.545862,0.780333,0.170015,0.362081,0.84089,0.0475552,0.0418969,0.320613,0.033349,0.319377,0.577411,0.729762,0.699088,0.189616,0.290076,0.596857,0.832705,0.799396,0.53126,0.15399,0.428739,0.965644,0.034871,0.73451,0.953411,0.0702602,0.256241,0.371897,0.663921,0.904947,0.50512,0.865302,0.644308,0.754152,0.676761,0.687494,0.576084,0.0622743,0.482217,0.874226,0.404207,0.446917,0.139337,0.531128,0.0838709,0.131422,0.564301,0.176272,0.837214,0.472442,0.701482,0.0220873,0.200882,0.763777,0.82875,0.132197,0.478425,0.935598,0.0128247,0.550014,0.0251665,0.612553,0.926682,0.935643,0.567425,0.659338,0.235714,0.43152,0.782061,0.25754,0.290468,0.198701,0.424866,0.493693,0.20304,0.30025,0.278013,0.728094,0.185203,0.598032,0.104292,0.200158,0.698552,0.943283,0.924668,0.231378,0.569018,0.0662007,0.691049,0.34477,0.893881,0.608547,0.923039,0.240987,0.317857,0.15429,0.27055,0.940312,0.344866,0.544151,0.837996,0.652366,0.37362,0.875005,0.232449,0.143453,0.0817249,0.194488,0.980168,0.429466,0.699354,0.937998,0.693244,0.818416,0.0587327,0.146778,0.0955308,0.830461,0.36615,0.225439,0.998969,0.491814,0.475013,0.857004,0.0166224,0.175496,0.819221,0.785523,0.341244,0.491068,0.648849,0.41085,0.392461,0.0909523,0.671177,0.524891,0.100916,0.541762,0.764831,0.876642,0.314534,0.591203,0.0394853,0.968877,0.127151,0.923927,0.360633,0.711322,0.297349,0.376605,0.706354,0.317134,0.768527,0.240091,0.897357,0.0475389,0.202843,0.679153,0.631308,0.356706,0.00975507,0.139764,0.586859,0.663826,0.507069,0.636072,0.116159,0.665671,0.382098,0.563803,0.14159,0.197053,0.266931,0.0968592,0.296792,0.896352,0.37807,0.30061,0.0296261,0.234842,0.131889,0.765381,0.444572,0.337779,0.983565,0.400428,0.915497,0.680256,0.406811,0.716837,0.229794,0.735299,0.822452,0.886527,0.347135,0.962152,0.762774,0.337713,0.175034,0.0579172,0.495054,0.316754,0.434571,0.794341,0.618169,0.772036,0.49969,0.272277,0.319346,0.0908902,0.224506,0.510415,0.332418,0.628373,0.672372,0.787311,0.83028,0.869053,0.1262,0.456938,0.68718,0.641109,0.631063,0.648123,0.00297511,0.0964127,0.994822,0.692267,0.359275,0.916713,0.873335,0.14588,0.896586,0.813314,0.556602,0.752456,0.0632349,0.992911,0.720793,0.530953,0.318732,0.735196,0.14623,0.166664,0.344592,0.102939,0.813886,0.958019,0.40537,0.469448,0.333888,0.0143967,0.471641,0.408476,0.113033,0.482841,0.5193,0.884926,0.112333,0.575657,0.567779,0.509155,0.856143,0.524259,0.502677,0.892658,0.362241,0.468987,0.699872,0.407757,0.913459,0.0830631,0.298594,0.644033,0.219684,0.756959,0.332872,0.930619,0.82108,0.713299,0.474523,0.772913,0.87265,0.313374,0.437551,0.0438691,0.324621,0.299051,0.909034,0.163585,0.301094,0.988695,0.723227,0.0662292,0.970649,0.939177,0.676798,0.644451,0.878456,0.309186,0.334448,0.187455,0.977415,0.932749,0.344208,0.984785,0.499441,0.0127789,0.521547,0.545789,0.761379,0.284138,0.627439,0.657503,0.290431,0.185415,0.0561896,0.703826,0.0728669,0.473886,0.739652,0.144566,0.961478,0.573434,0.539096,0.66355,0.293246,0.665668,0.500102,0.397759,0.0760184,0.974888,0.597335,0.427302,0.413471,0.872416,0.192444,0.0892945,0.0269029,0.239846,0.638183,0.461883,0.219674,0.848575,0.734982,0.3341,0.979485,0.437626,0.786321,0.49813,0.792855,0.120553,0.853205,0.501393,0.290249,0.00971049,0.488327,0.52148,0.545506,0.517698,0.800794,0.17597,0.279058,0.523067,0.934516,0.845024,0.613749,0.402304,0.93008,0.0105004,0.203157,0.735938,0.132234,0.583875,0.418546,0.576863,0.497993,0.161739,0.251389,0.100084,0.510564,0.20279,0.905688,0.501742,0.463796,0.446656,0.682914,0.195099,0.684388,0.795244,0.612996,0.498918,0.390467,0.630489,0.704946,0.154249,0.898133,0.895757,0.99941,0.91626,0.937163,0.622711,0.377044,0.478936,0.418197,0.195134,0.666759,0.157869,0.227619,0.708262,0.612669,0.336442,0.000622392,0.708158,0.818548,0.271491,0.0632349,0.374963,0.531252,0.313972,0.679227,0.052343,0.601291,0.212258,0.43193,0.935599,0.832057,0.382174,0.272797,0.544794,0.328257,0.689101,0.191416,0.822682,0.427162,0.174256,0.266816,0.753415,0.339659,0.71092,0.893805,0.272001,0.00134319,0.571906,0.212653,0.820633,0.992702,0.713688,0.407486,0.179467,0.0885087,0.401636,0.966906,0.652107,0.806966,0.679378,0.310748,0.628793,0.17531,0.336457,0.795108,0.302922,0.0439925,0.431741,0.842966,0.719729,0.306605,0.675435,0.0596845,0.415736,0.0200449,0.302895,0.275222,0.770002,0.521591,0.988438,0.361303,0.520579,0.580062,0.395407,0.699016,0.0732937,0.461762,0.0916474,0.78945,0.516235,0.0825895,0.870052,0.135087,0.191181,0.466002,0.0912945,0.359814,0.492501,0.856744,0.545942,0.68824,0.583191,0.798707,0.983234,0.419401,0.744605,0.609224,0.344799,0.417141,0.876554,0.941626,0.447069,0.209554,0.355636,0.722119,0.175129,0.813945,0.622147,0.21217,0.0298364,0.71595,0.452852,0.01354,0.372817,0.126761,0.422107,0.875081,0.109426,0.609459,0.866701,0.514082,0.335799,0.379807,0.794648,0.345512,0.381534,0.312501,0.723122,0.536371,0.0516648,0.505009,0.358497,0.856258,0.595843,0.299218,0.957283,0.420315,0.0426025,0.699686,0.832758,0.419973,0.439408,0.495843,0.033529,0.135221,0.316677,0.874382,0.937015,0.507166,0.677184,0.529584,0.460109,0.30229,0.282688,0.376381,0.857307,0.652884,0.423744,0.436289,0.983196,0.0751585,0.982013,0.269013,0.9409,0.986554,0.0978217,0.0381593,0.640213,0.335893,0.0843686,0.7235,0.6108,0.313427,0.954707,0.529618,0.91126,0.337804,0.358978,0.525326,0.619202,0.736572,0.713825,0.217928,0.690242,0.380131,0.983509,0.272983,0.189085,0.993686,0.525915,0.0146563,0.522686,0.114882,0.964102,0.288156,0.389191,0.183699,0.973809,0.51292,0.187097,0.137461,0.996884,0.807717,0.0401096,0.207699,0.390794,0.0826113,0.0067659,0.950818,0.36705,0.103288,0.390929,0.377769,0.137717,0.113373,0.539388,0.572453,0.713038,0.917315,0.373076,0.602818,0.605299,0.0421881,0.670658,0.976612,0.651854,0.772176,0.205154,0.0224701,0.683705,0.777071,0.271785,0.570361,0.70942,0.58735,0.959473,0.833465,0.621959,0.1755,0.701137,0.0586312,0.792539,0.707292,0.669526,0.536113,0.0619061,0.407216,0.625608,0.836587,0.965255,0.421509,0.618472,0.989864,0.527856,0.740674,0.598191,0.110133,0.14258,0.193695,0.289094,0.480009,0.220654,0.754428,0.797391,0.106502,0.200893,0.784901,0.0874782,0.00876439,0.293773,0.0865648,0.483596,0.736987,0.988891,0.734826,0.176005,0.280006,0.339004,0.10205,0.59686,0.288584,0.98285,0.798403,0.960817,0.810678,0.261107,0.732867,0.147104,0.671221,0.310322,0.0826022,0.338589,0.718015,0.758119,0.20284,0.236069,0.454545,0.31306,0.723852,0.461373,0.220793,0.627945,0.36616,0.828447,0.71045,0.170172,0.500941,0.215263,0.00684881,0.852487,0.498519,0.441545,0.120712,0.260461,0.554307,0.599015,0.562997,0.976211,0.25253,0.10558,0.98672,0.599728,0.531436,0.57536,0.480768,0.186426,0.176019,0.465988,0.13221,0.543696,0.547019,0.480069,0.239072,0.14698,0.679865,0.721299,0.0181277,0.499286,0.127865,0.754348,0.302621,0.469158,0.425234,0.767649,0.988527,0.44536,0.10682,0.95686,0.787578,0.357308,0.757112,0.649386,0.791893,0.539984,0.139745,0.732896,0.477049,0.543888,0.390456,0.999085,0.493623,0.0682997,0.72988,0.725531,0.112761,0.921065,0.0133126,|0.889265,0.594701,0.872706,0.718275,0.145961,0.171151,0.591725,0.706796,0.251697,0.647577,0.937533,0.546347,0.893152,0.687444,0.188124,0.0324979,0.678791,0.562832,0.861437,0.829794,0.743847,0.493072,0.680925,0.749867,0.576878,0.550532,0.769991,0.474638,0.9794,0.187738,0.0787974,0.59108,0.367076,0.137702,0.756431,0.898835,0.477079,0.00282758,0.371948,0.70637,0.245649,0.386701,0.160091,0.957618,0.00503695,0.00677848,0.493263,0.0725805,0.274069,0.242015,0.787853,0.134947,0.944938,0.0452926,0.839414,0.440416,0.328495,0.15404,0.688589,0.844261,0.905523,0.840452,0.699545,0.433142,0.5846,0.352113,0.289524,0.976538,0.867937,0.359434,0.94127,0.372857,0.230267,0.157976,0.815762,0.408936,0.559607,0.144581,0.736724,0.786524,0.677265,0.147017,0.943103,0.326356,0.437416,0.487412,0.199274,0.301664,0.697966,0.568197,0.139531,0.531964,0.0352001,0.332975,0.560434,0.49257,0.833168,0.777568,0.974466,0.276888,0.631414,0.0749982,0.522908,0.887969,0.190073,0.667093,0.884198,0.923117,0.389363,0.987291,0.395861,0.410174,0.650674,0.965273,0.172789,0.655988,0.871185,0.737,0.637837,0.230405,0.812321,0.535725,0.492688,0.403881,0.754057,0.294528,0.128258,0.52643,0.808008,0.389211,0.954666,0.478554,0.392203,0.843021,0.251289,0.931855,0.53312,0.872543,0.0395931,0.804443,0.907795,0.768192,0.272043,0.626279,0.0241909,0.545806,0.00306356,0.268045,0.52712,0.618028,0.461046,0.0633759,0.31813,0.0157365,0.875848,0.132525,0.85509,0.451037,0.159445,0.994944,0.626908,0.543479,0.321901,0.975037,0.701486,0.116978,0.107116,0.573849,0.761474,0.567058,0.497518,0.482749,0.643023,0.906223,0.404347,0.355493,0.635286,0.307804,0.818246,0.0949512,0.617085,0.807138,0.933964,0.933897,0.85763,0.846056,0.563155,0.0424064,0.313966,0.390882,0.962272,0.498531,0.933708,0.382943,0.360923,0.165013,0.539753,0.180662,0.154721,0.987925,0.0652667,0.445484,0.383409,0.146533,0.715601,0.0238122,0.490287,0.953045,0.630352,0.878363,0.947098,0.301892,0.958989,0.0554296,0.341251,0.730443,0.805425,0.228299,0.92636,0.921706,0.527843,0.985841,0.800754,0.973128,0.160436,0.846003,0.619587,0.441634,0.213801,0.828464,0.456069,0.691088,0.912302,0.854119,0.0783253,0.621346,0.969365,0.553757,0.965189,0.661589,0.493378,0.273759,0.549611,0.882005,0.195861,0.741046,0.834048,0.153522,0.659884,0.116226,0.979148,0.250635,0.115106,0.349076,0.963736,0.154744,0.139422,0.587218,0.423053,0.562341,0.249919,0.269254,0.033127,0.679169,0.548474,0.854932,0.92985,0.487533,0.827849,0.682459,0.243228,0.186421,0.482132,0.348114,0.547576,0.509972,0.660005,0.83232,0.252255,0.624101,0.589014,0.26447,0.0989797,0.924887,0.536171,0.105186,0.553064,0.32013,0.149326,0.943204,0.671908,0.904031,0.0541129,0.890485,0.343225,0.578046,0.343898,0.520068,0.624536,0.253836,0.323714,0.727337,0.284014,0.452025,0.295385,0.429976,0.0111265,0.42155,0.500688,0.853965,0.992479,0.0827084,0.262996,0.937552,0.106447,0.236783,0.351994,0.453612,0.290829,0.239598,0.361743,0.274484,0.902825,0.73904,0.535028,0.826297,0.950772,0.234054,0.599205,0.247994,0.501193,0.00436145,0.373814,0.372865,0.303419,0.130052,0.976284,0.345927,0.0476246,0.892656,0.0490569,0.551875,0.631194,0.217734,0.947467,0.664509,0.177489,0.826252,0.267486,0.504472,0.170424,0.550729,0.269449,0.792738,0.854346,0.279721,0.223165,0.898699,0.020731,0.98588,0.582324,0.603164,0.109871,0.620933,0.0737121,0.0664659,0.596051,0.771755,0.00037992,0.685608,0.885904,0.981858,0.407182,0.509009,0.882805,0.587836,0.497656,0.228366,0.0329137,0.8286,0.17741,0.935145,0.737614,0.478959,0.928987,0.442901,0.957692,0.531793,0.143559,0.421076,0.334115,0.930885,0.297024,0.177848,0.744628,0.417331,0.91787,0.376818,0.0666237,0.68652,0.564029,0.230893,0.316488,0.428744,0.557798,0.785044,0.648793,0.075522,0.760496,0.403835,0.962085,0.575711,0.214853,0.683981,0.241542,0.627943,0.00789332,0.992973,0.901786,0.319608,0.406816,0.419089,0.448991,0.158849,0.853771,0.33587,0.421643,0.61925,0.338988,0.497762,0.69979,0.168031,0.718426,0.345935,0.490822,0.609795,0.318636,0.0917473,0.366411,0.0114217,0.694676,0.0168699,0.0436642,0.48244,0.15646,0.322933,0.127113,0.678973,0.371575,0.771282,0.916487,0.646191,0.383828,0.421775,0.927951,0.187903,0.852261,0.49046,0.72764,0.760981,0.785666,0.875966,0.948185,0.025229,0.0214349,0.787543,0.118056,0.539526,0.0748259,0.151008,0.115174,0.770883,0.917138,0.510849,0.171531,0.963371,0.50315,0.0954015,0.109847,0.97576,0.663519,0.800039,0.167721,0.230744,0.227069,0.436125,0.341651,0.5519,0.128685,0.857022,0.399242,0.653338,0.969902,0.736103,0.0931773,0.533075,0.15821,0.893926,0.0731294,0.938626,0.592195,0.523682,0.608728,0.636131,0.627529,0.0266615,0.576459,0.699137,0.50646,0.135719,0.947746,0.26457,0.685305,0.43102,0.902223,0.896861,0.762659,0.328565,0.615993,0.0326989,0.742992,0.728305,0.288308,0.106494,0.942578,0.829281,0.246601,0.312601,0.86187,0.407261,0.716776,0.042743,0.782108,0.428546,0.0764073,0.65724,0.129898,0.418755,0.258671,0.482434,0.325769,0.356552,0.371637,0.727963,0.533267,0.586954,0.659764,0.713172,0.982467,0.115286,0.61562,0.815667,0.636693,0.421544,0.438531,0.37689,0.607947,0.177055,0.744541,0.614913,0.0663521,0.203783,0.294968,0.535438,0.536726,0.961383,0.0300321,0.505089,0.57187,0.525465,0.756477,0.133637,0.442015,0.615102,0.126072,0.385179,0.23579,0.737788,0.793215,0.379118,0.32783,0.76781,0.555469,0.0301794,0.619182,0.278757,0.963864,0.357675,0.124816,0.546295,0.0745351,0.497969,0.713343,0.183487,0.547378,0.572364,0.363496,0.378923,0.0158901,0.182191,0.766395,0.261124,0.215821,0.667764,0.179523,0.33987,0.855132,0.325243,0.246627,0.196528,0.289974,0.639816,0.156735,0.67921,0.517106,0.047632,0.585454,0.0331595,0.929675,0.129492,0.532003,0.0644466,0.67563,0.890314,0.707379,0.481367,0.0541734,0.782981,0.874753,0.169298,0.376826,0.975528,0.87226,0.766654,0.616012,0.159705,0.064546,0.575743,0.132168,0.0374379,0.989302,0.400378,0.197295,0.459071,0.986212,0.212428,0.344175,0.315325,0.470599,0.917619,0.57384,0.417119,0.795008,0.368983,0.30635,0.531226,0.755062,0.60945,0.636956,0.945433,0.15307,0.968742,0.286561,0.822205,0.321868,0.780055,0.520394,0.076718,0.637105,0.557704,0.0742408,0.910597,0.667108,0.601507,0.599225,0.460727,0.335551,0.0884487,0.0148576,0.278404,0.567098,0.201647,0.00105476,0.438497,0.763597,0.537002,0.665841,0.244396,0.0207146,0.365337,0.687693,0.793666,0.335947,0.972847,0.831763,0.314722,0.0690135,0.708177,0.0843705,0.485411,0.243261,0.279587,0.853633,0.774239,0.718355,0.355071,0.24161,0.519459,0.214405,0.338458,0.0133498,0.670173,0.247558,0.54432,0.234492,0.487659,0.738012,0.0395976,0.110061,0.520673,0.361861,0.0278101,0.808325,0.257388,0.387205,0.248778,0.100271,0.995345,0.0853982,0.550274,0.124436,0.813916,0.274512,0.688108,0.64224,0.337327,0.908583,0.231937,0.907453,0.44707,0.151185,0.309902,0.398512,0.941065,0.621062,0.79757,0.0273819,0.466148,0.75918,0.618951,0.216044,0.329217,0.299732,0.158248,0.254439,0.825145,0.925673,0.433436,0.141701,0.147469,0.591865,0.0489749,0.715337,0.979012,0.0204622,0.0421818,0.769983,0.55599,0.584206,0.170238,0.161352,0.751719,0.0302196,0.502451,0.329373,0.494198,0.0988163,0.479712,0.170086,0.512592,0.400242,0.101153,0.590537,0.0268109,0.419478,0.552683,0.796524,0.514324,0.702429,0.169313,0.470066,0.225683,0.855304,0.827631,0.479558,0.900696,0.626928,0.510662,0.837085,0.520742,0.123617,0.298604,0.973474,0.950264,0.96531,0.0664085,0.77422,0.137637,0.974213,0.314793,0.0204153,0.197945,0.843133,0.601423,0.0402209,0.622353,0.255612,0.897147,0.321545,0.88204,0.644808,0.0861325,0.455214,0.732328,0.757485,0.70808,0.257682,0.623799,0.576755,0.0492703,0.98746,0.949085,0.774728,0.489119,0.937217,0.0995919,0.891787,0.940249,0.980404,0.773123,0.621663,0.0432769,0.374331,0.0133583,0.501217,0.540848,0.277127,0.622372,0.512795,0.414481,0.336758,0.648608,0.227876,0.841429,0.833316,0.501778,0.0843219,0.915313,0.423084,0.98568,0.734379,0.90837,0.399533,0.217795,0.70246,0.102644,0.214041,0.510781,0.177378,0.691294,0.230814,0.0160698,0.629087,0.0215231,0.134685,0.128036,0.780303,0.315239,0.798436,0.230196,0.712737,0.0959558,0.528868,0.977823,0.317352,0.0306489,0.0361377,0.578152,0.0756939,0.609508,0.40318,0.576165,0.0730764,0.0702962,0.157356,0.352086,0.242315,0.759174,0.337985,0.291816,0.340479,0.654973,0.832391,0.403285,0.220809,0.591409,0.886458,0.748991,0.701453,0.120229,0.808169,0.911411,0.556912,0.982924,0.4915,0.65066,0.675448,0.35946,0.754829,0.0184816,0.88124,0.716256,0.790216,0.198189,0.954684,0.547625,0.330139,0.785333,0.610952,0.785386,0.910784,0.850573,0.218247,0.0743959,0.397357,0.30262,0.408632,0.420807,0.964012,0.826825,0.757891,0.495637,0.21991,0.146357,0.834332,0.537619,0.803694,0.612068,0.799963,0.250724,0.972777,0.571022,0.557639,0.39212,0.327728,0.322765,0.646663,0.49575,0.898256,0.998659,0.483971,0.0594078,0.751763,0.720836,0.103387,0.285837,0.769149,0.926352,0.424341,0.0522602,0.169811,0.235857,0.322648,0.878807,0.767851,0.870173,0.971839,0.284791,0.430754,0.264271,0.494962,0.831966,0.434505,0.0709859,0.538263,0.0391376,0.859126,0.221829,0.0050661,0.934947,0.517672,0.156158,0.764604,0.468054,0.881003,0.172244,0.324564,0.168241,0.619376,0.966912,|0.591823,0.125825,0.120771,0.700054,0.302614,0.268437,0.819063,0.58958,0.125029,0.533325,0.733664,0.109128,0.265772,0.266733,0.112474,0.818784,0.883859,0.67476,0.229804,0.218526,0.777037,0.990001,0.177298,0.95926,0.638324,0.153138,0.130309,0.129634,0.227761,0.192798,0.722228,0.439146,0.0829217,0.20405,0.0389893,0.279033,0.222348,0.465471,0.219636,0.130921,0.898566,0.158807,0.795683,0.413278,0.111229,0.627306,0.236191,0.0848445,0.337198,0.501763,0.330802,0.98252,0.965119,0.828616,0.860872,0.834642,0.295959,0.775403,0.0786232,0.952476,0.0333899,0.175866,0.521931,0.768738,0.976189,0.820772,0.896773,0.809535,0.54939,0.624568,0.217157,0.777352,0.598826,0.515709,0.680942,0.876995,0.496539,0.495142,0.504694,0.347709,0.152098,0.411068,0.785511,0.632966,0.277073,0.199069,0.8654,0.0876675,0.526661,0.564301,0.0115257,0.0293607,0.360481,0.870717,0.989472,0.18544,0.888497,0.994089,0.66506,0.0886936,0.109235,0.535034,0.836068,0.125401,0.38055,0.0400903,0.92173,0.446689,0.269831,0.238711,0.298604,0.277139,0.683027,0.80273,0.625633,0.186664,0.0294477,0.487264,0.803928,0.284627,0.52292,0.117696,0.373819,0.972987,0.0412926,0.998679,0.522084,0.41707,0.943678,0.782455,0.995861,0.106142,0.502771,0.0893304,0.324584,0.869925,0.759494,0.551266,0.043871,0.162215,0.896501,0.485832,0.10452,0.343869,0.949335,0.431886,0.797746,0.483662,0.636519,0.187025,0.828932,0.407104,0.590507,0.198098,0.454093,0.224735,0.615895,0.987255,0.22794,0.450389,0.0020054,0.798928,0.35695,0.283722,0.81669,0.748458,0.194432,0.771659,0.564963,0.0602465,0.56291,0.907927,0.568613,0.736576,0.0772164,0.647892,0.344638,0.52594,0.620116,0.127818,0.456229,0.00303143,0.814292,0.681271,0.232469,0.435447,0.650613,0.217794,0.701196,0.944068,0.408943,0.475877,0.868407,0.358222,0.197377,0.00579548,0.675333,0.942362,0.326574,0.981451,0.288119,0.245726,0.128793,0.341947,0.613644,0.813226,0.951181,0.161136,0.698893,0.230473,0.824948,0.763062,0.987754,0.849678,0.887375,0.183079,0.13679,0.529566,0.751198,0.0110763,0.651176,0.733209,0.542284,0.631916,0.867543,0.110326,0.474449,0.948272,0.149745,0.994902,0.81773,0.312475,0.701418,0.529096,0.820634,0.732909,0.93781,0.44992,0.117245,0.0106873,0.528399,0.53574,0.436276,0.123116,0.334455,0.819877,0.952408,0.274707,0.953051,0.162679,0.0142863,0.269775,0.204964,0.282084,0.336641,0.342841,0.96628,0.354811,0.52185,0.624241,0.402257,0.658196,0.541723,0.132844,0.58992,0.927225,0.552366,0.647325,0.930788,0.221782,0.430752,0.389259,0.139866,0.186971,0.243369,0.414693,0.489713,0.680581,0.976644,0.690988,0.766234,0.248884,0.701696,0.542307,0.618859,0.0143838,0.362143,0.662509,0.337953,0.288941,0.468225,0.230226,0.437176,0.561607,0.389824,0.962896,0.505279,0.334432,0.267055,0.726468,0.814336,0.619642,0.476647,0.397272,0.515162,0.0799052,0.435167,0.525293,0.0676081,0.370208,0.822782,0.513394,0.595598,0.695388,0.146633,0.664508,0.558523,0.596437,0.701059,0.423323,0.447425,0.661446,0.228125,0.522419,0.20445,0.683396,0.0669274,0.199775,0.784785,0.00773191,0.670014,0.893603,0.104182,0.0225785,0.381064,0.715091,0.715827,0.416542,0.596661,0.282365,0.23809,0.914004,0.0173801,0.674075,0.145957,0.670396,0.150104,0.488632,0.537654,0.621478,0.472568,0.121725,0.426283,0.173926,0.822932,0.187565,0.104585,0.258675,0.881734,0.562012,0.112308,0.55449,0.434386,0.699727,0.757451,0.685265,0.118178,0.473976,0.0933058,0.96513,0.536204,0.81267,0.478793,0.575479,0.478014,0.736232,0.675296,0.0133412,0.44148,0.865595,0.347835,0.715141,0.0948014,0.241577,0.719267,0.781186,0.917421,0.315515,0.545832,0.456786,0.650794,0.59775,0.616409,0.858784,0.826912,0.512947,0.202963,0.519818,0.982327,0.000565052,0.614536,0.624096,0.714087,0.706335,0.438818,0.242741,0.965818,0.54842,0.173463,0.0445849,0.774339,0.719365,0.920781,0.262991,0.0888743,0.13322,0.439152,0.930902,0.995824,0.725191,0.497862,0.496925,0.996378,0.259473,0.778218,0.901467,0.324901,0.826914,0.721153,0.864826,0.797203,0.743372,0.768182,0.815158,0.572639,0.242616,0.481899,0.0974742,0.123624,0.0380077,0.387729,0.799998,0.386323,0.351231,0.958099,0.534406,0.315221,0.194252,0.052611,0.68316,0.106984,0.695977,0.227325,0.605022,0.561419,0.901166,0.429427,0.103183,0.273148,0.266116,0.19102,0.628239,0.759378,0.753747,0.413308,0.263299,0.699218,0.680434,0.785756,0.978633,0.409001,0.700507,0.766218,0.389504,0.799122,0.890262,0.125181,0.686075,0.0763987,0.142854,0.858454,0.186912,0.242677,0.186303,0.105637,0.898965,0.487882,0.81369,0.777384,0.774101,0.3882,0.0989332,0.547248,0.333452,0.846915,0.260537,0.40783,0.823199,0.17332,0.0381064,0.564429,0.72108,0.477066,0.021315,0.631615,0.772153,0.619636,0.273714,0.113208,0.258131,0.0648022,0.130961,0.92939,0.949832,0.759891,0.043996,0.980548,0.429269,0.238998,0.562435,0.0163541,0.251186,0.620492,0.958564,0.816801,0.617847,0.438,0.579271,0.0525646,0.893717,0.276741,0.596981,0.8476,0.686991,0.936126,0.79663,0.66551,0.887505,0.273308,0.393532,0.0433022,0.778619,0.707698,0.797723,0.907068,0.283571,0.180216,0.0565518,0.173722,0.41589,0.60671,0.421427,0.345317,0.410563,0.380642,0.682973,0.883346,0.174761,0.496411,0.636635,0.25261,0.753031,0.807426,0.999968,0.433287,0.115166,0.0670183,0.932451,0.219019,0.910498,0.629044,0.745609,0.234546,0.392816,0.38342,0.240781,0.700781,0.186162,0.00661075,0.122232,0.229719,0.407128,0.984322,0.561408,0.967788,0.255135,0.114335,0.270681,0.012614,0.711114,0.308932,0.441562,0.519129,0.72702,0.327575,0.952919,0.116801,0.815834,0.367028,0.787902,0.390222,0.256965,0.98975,0.721315,0.154822,0.54416,0.859424,0.223953,0.951136,0.485232,0.718188,0.679985,0.409163,0.690166,0.655911,0.836087,0.162089,0.822516,0.308864,0.49021,0.962438,0.11832,0.854503,0.49901,0.931114,0.662721,0.906841,0.468809,0.285328,0.929096,0.445693,0.586033,0.0750231,0.0582915,0.299338,0.94284,0.367318,0.714807,0.700724,0.399625,0.423059,0.0266804,0.226808,0.483423,0.191958,0.912894,0.869033,0.279801,0.92551,0.360536,0.641629,0.0925899,0.427541,0.0962927,0.997678,0.623138,0.506536,0.220687,0.839908,0.810081,0.407418,0.142,0.724314,0.759464,0.955395,0.244619,0.43266,0.83635,0.652923,0.957974,0.929311,0.309337,0.878077,0.163248,0.173392,0.662957,0.538625,0.406376,0.402749,0.995917,0.899269,0.00416678,0.248687,0.683266,0.194943,0.839005,0.267014,0.168573,0.0033139,0.29029,0.887678,0.443411,0.499189,0.600558,0.197799,0.586978,0.139142,0.734326,0.137325,0.00431257,0.373294,0.052716,0.460703,0.889674,0.562894,0.28447,0.2103,0.165464,0.738001,0.138206,0.434166,0.876977,0.478059,0.911676,0.161528,0.630011,0.0488178,0.0557892,0.300492,0.536321,0.922525,0.554038,0.884622,0.922404,0.450514,0.365177,0.103021,0.74684,0.970718,0.884349,0.619131,0.447889,0.0873173,0.866492,0.383316,0.791483,0.785599,0.539988,0.150838,0.608009,0.324184,0.728285,0.540232,0.490575,0.093496,0.489642,0.935578,0.0745756,0.611248,0.599753,0.760434,0.575029,0.888436,0.346357,0.784603,0.954942,0.22618,0.348516,0.850141,0.15098,0.7798,0.713301,0.720215,0.712145,0.953033,0.951193,0.42489,0.300707,0.218891,0.284288,0.224071,0.347685,0.648639,0.0555293,0.111406,0.569142,0.155745,0.425429,0.364777,0.387218,0.196971,0.925278,0.0212002,0.716809,0.68735,0.293313,0.334064,0.3099,0.545216,0.299562,0.806043,0.151371,0.0844348,0.698823,0.730213,0.263372,0.692592,0.417119,0.382127,0.879902,0.63096,0.628527,0.480846,0.847199,0.621918,0.840817,0.182264,0.651169,0.700667,0.714534,0.792311,0.562716,0.653995,0.396226,0.652945,0.639753,0.721121,0.0860983,0.547784,0.291288,0.340863,0.0816557,0.603695,0.123819,0.233031,0.410578,0.781415,0.118476,0.600076,0.0867483,0.511937,0.251164,0.843005,0.187032,0.67726,0.0196781,0.234763,0.0705126,0.427588,0.147047,0.197312,0.923237,0.362228,0.683844,0.765677,0.412307,0.873564,0.047251,0.604115,0.79304,0.685149,0.102026,0.492839,0.342811,0.384943,0.749016,0.467156,0.847126,0.613226,0.757743,0.484769,0.412367,0.502503,0.0920266,0.900108,0.549953,0.803744,0.751916,0.195205,0.931291,0.928137,0.434972,0.470095,0.016385,0.312026,0.297201,0.778085,0.133322,0.0198527,0.120197,0.070433,0.819291,0.732143,0.0672893,0.936279,0.0969484,0.577479,0.778619,0.0238114,0.828342,0.223114,0.0110183,0.385329,0.645252,0.663402,0.365057,0.52248,0.386624,0.20605,0.684428,0.781299,0.873054,0.846672,0.671423,0.23089,0.664438,0.852528,0.762144,0.00620264,0.300873,0.256864,0.567887,0.960605,0.125555,0.234593,0.0919509,0.519978,0.181373,0.94808,0.7127,0.587802,0.363227,0.188206,0.256302,0.0925125,0.24617,0.815328,0.613365,0.39575,0.402758,0.0103705,0.318348,0.599909,0.592537,0.200418,0.729172,0.392989,0.696322,0.7956,0.985524,0.628821,0.459875,0.612754,0.0714995,0.233451,0.769912,0.156239,0.830107,0.587651,0.64698,0.59757,0.592774,0.949509,0.0248832,0.801117,0.789231,0.887707,0.56207,0.244026,0.679467,0.543127,0.251762,0.959889,0.5284,0.925574,0.243189,0.434971,0.59943,0.202295,0.973195,0.66906,0.21176,0.144974,0.220587,0.390971,0.00495058,0.810156,0.463453,0.327257,0.278255,0.869119,0.127233,0.11583,0.539071,0.56211,0.202634,0.0296832,0.750224,0.513856,0.516643,0.618347,0.212513,0.814313,0.0789697,0.637276,0.498993,0.638093,0.0606313,0.196781,0.448439,|0.660229,0.626176,0.509494,0.670353,0.701397,0.895424,0.0385122,0.0626731,0.862324,0.527327,0.846229,0.0164863,0.216073,0.11929,0.874862,0.0399054,0.279648,0.840577,0.712769,0.791163,0.968879,0.637792,0.801544,0.899913,0.838617,0.56607,0.241383,0.815119,0.558059,0.655131,0.990427,0.134469,0.0977578,0.150647,0.260039,0.118115,0.0251096,0.142978,0.380125,0.0206032,0.448374,0.855489,0.66978,0.922466,0.939171,0.222296,0.83428,0.783375,0.0375043,0.788732,0.081969,0.36427,0.709005,0.11118,0.666577,0.279213,0.0273274,0.955082,0.492774,0.606712,0.246938,0.558975,0.204865,0.817684,0.0435386,0.923147,0.708183,0.683008,0.934088,0.927068,0.15318,0.243706,0.574574,0.459395,0.107169,0.552495,0.429441,0.276923,0.58027,0.865692,0.33502,0.283632,0.032946,0.277466,0.547839,0.960715,0.61947,0.289941,0.645309,0.612705,0.733711,0.472144,0.868508,0.88256,0.321699,0.624565,0.890175,0.767347,0.782465,0.719822,0.647408,0.658482,0.144932,0.156686,0.92432,0.202071,0.461796,0.0549645,0.0454424,0.156899,0.791041,0.965661,0.29871,0.697569,0.96709,0.955421,0.526909,0.529048,0.00819737,0.302571,0.183163,0.447881,0.532536,0.970716,0.966822,0.194089,0.873831,0.78868,0.305371,0.676898,0.00692254,0.946639,0.311803,0.716635,0.86982,0.0873968,0.529446,0.000262797,0.238011,0.702417,0.463239,0.160153,0.984868,0.881159,0.715504,0.897662,0.518388,0.437298,0.0765212,0.139787,0.754017,0.0460932,0.32455,0.0619807,0.859982,0.817463,0.314559,0.998086,0.981271,0.218619,0.275061,0.304234,0.837061,0.414054,0.00494719,0.709141,0.119082,0.104018,0.872721,0.0597081,0.187202,0.799268,0.415654,0.924751,0.71605,0.76585,0.550387,0.311779,0.0704902,0.0921463,0.305909,0.911766,0.996907,0.192968,0.494631,0.947048,0.753924,0.0316101,0.772437,0.949241,0.0221945,0.0426521,0.962912,0.315385,0.91972,0.756761,0.264813,0.000604808,0.100142,0.475906,0.134174,0.462974,0.640059,0.481374,0.449628,0.820103,0.361749,0.8695,0.826933,0.670466,0.494295,0.64359,0.69276,0.389113,0.931108,0.57236,0.685088,0.735572,0.0492478,0.393714,0.216971,0.92751,0.568168,0.916664,0.851123,0.123828,0.215129,0.674289,0.548656,0.862018,0.593688,0.788799,0.424632,0.634629,0.142577,0.91199,0.678396,0.88343,0.943994,0.000218868,0.0880951,0.372061,0.107959,0.43268,0.307632,0.186702,0.194098,0.766905,0.861648,0.214046,0.949989,0.779999,0.128992,0.508558,0.766271,0.438333,0.508618,0.821635,0.00844806,0.776021,0.644681,0.972714,0.537739,0.363918,0.0562531,0.748342,0.582756,0.716202,0.175871,0.194768,0.275275,0.0483683,0.48955,0.940796,0.522534,0.792964,0.728988,0.53339,0.1619,0.569645,0.466631,0.842053,0.240328,0.117408,0.0312135,0.785712,0.0155048,0.544761,0.175972,0.654714,0.490602,0.463884,0.0318106,0.643022,0.226145,0.75065,0.251858,0.917727,0.00547862,0.361018,0.236788,0.227446,0.136603,0.315187,0.684191,0.20372,0.564253,0.468915,0.699908,0.0390249,0.944499,0.230447,0.202081,0.428231,0.369515,0.000629544,0.301452,0.42724,0.509634,0.988268,0.610468,0.478407,0.689925,0.646858,0.564668,0.320516,0.164998,0.454799,0.688224,0.361624,0.957324,0.10434,0.0974141,0.0437074,0.3776,0.783021,0.952754,0.125627,0.816938,0.311471,0.961808,0.724677,0.459484,0.401152,0.0974786,0.130523,0.30645,0.62656,0.155343,0.643436,0.341144,0.945169,0.516861,0.784948,0.404667,0.620151,0.154395,0.905245,0.954396,0.516545,0.0230742,0.540714,0.569684,0.822727,0.631151,0.140544,0.513336,0.225435,0.581889,0.574891,0.549754,0.687134,0.968032,0.337165,0.65649,0.0522608,0.495806,0.868443,0.104997,0.650356,0.890825,0.524945,0.912399,0.13244,0.601144,0.636344,0.476583,0.886278,0.611095,0.894681,0.70771,0.611844,0.590969,0.265963,0.875713,0.644422,0.411742,0.600916,0.342501,0.768124,0.0457332,0.675364,0.679859,0.367525,0.837416,0.398376,0.0909758,0.670705,0.208655,0.539803,0.475335,0.438488,0.950742,0.348228,0.904614,0.0758457,0.485835,0.576387,0.0184733,0.801188,0.405777,0.428265,0.915382,0.414239,0.789316,0.177197,0.492298,0.899833,0.297918,0.707717,0.245998,0.280174,0.587477,0.139083,0.732756,0.606303,0.811104,0.249413,0.906485,0.747138,0.0324515,0.592223,0.257182,0.918065,0.0693801,0.533379,0.831989,0.924847,0.619195,0.0547757,0.933433,0.577411,0.607282,0.615028,0.352152,0.742512,0.636857,0.338478,0.58808,0.730008,0.285922,0.462922,0.773447,0.564532,0.144318,0.999043,0.207121,0.109977,0.227466,0.106548,0.868595,0.470557,0.476208,0.979137,0.89451,0.738073,0.911566,0.0795583,0.782146,0.190596,0.122913,0.20145,0.397889,0.250055,0.647509,0.847232,0.68031,0.298487,0.176673,0.343902,0.633152,0.838137,0.584658,0.480524,0.766507,0.0119232,0.996076,0.0343333,0.156584,0.582039,0.617999,0.271623,0.866029,0.838761,0.0110444,0.893537,0.485095,0.954446,0.30743,0.240953,0.985204,0.4132,0.324768,0.247866,0.542619,0.444689,0.612998,0.477062,0.365123,0.596256,0.584682,0.77418,0.741407,0.796892,0.747207,0.305818,0.592493,0.87768,0.874908,0.27621,0.363856,0.59056,0.862999,0.509888,0.521225,0.185508,0.595041,0.339223,0.214662,0.440644,0.360197,0.869696,0.601635,0.438142,0.291235,0.803948,0.404665,0.983332,0.482289,0.445776,0.606769,0.128853,0.819216,0.762672,0.812643,0.080662,0.607056,0.658753,0.359268,0.157747,0.943643,0.523512,0.42009,0.663196,0.21818,0.201531,0.0672547,0.162621,0.725743,0.833322,0.560721,0.624438,0.157597,0.534504,0.538264,0.17002,0.338282,0.988229,0.280765,0.657022,0.0717019,0.16014,0.970663,0.0164092,0.27425,0.966376,0.0534396,0.483579,0.539176,0.20357,0.420319,0.563961,0.589701,0.567094,0.237043,0.321803,0.00541979,0.970501,0.834768,0.0465846,0.398674,0.284836,0.33652,0.609571,0.709098,0.420584,0.0297817,0.946967,0.452098,0.598633,0.418273,0.315731,0.931498,0.744865,0.85891,0.387919,0.113156,0.202697,0.146155,0.382863,0.00442785,0.714257,0.457104,0.686644,0.421393,0.0878612,0.0879856,0.582174,0.160891,0.731014,0.169922,0.918019,0.500076,0.94805,0.949837,0.975825,0.22576,0.997723,0.789911,0.00998712,0.563747,0.289008,0.218625,0.990856,0.77257,0.554275,0.733001,0.290872,0.723956,0.681018,0.264273,0.726295,0.0561894,0.51743,0.717654,0.372671,0.88275,0.424876,0.204059,0.92892,0.98446,0.866337,0.56853,0.389635,0.988228,0.090465,0.563141,0.461725,0.18822,0.867487,0.342605,0.532778,0.425943,0.157234,0.913991,0.998245,0.681639,0.833165,0.218381,0.267026,0.865038,0.731393,0.031582,0.691534,0.281953,0.903031,0.113167,0.172928,0.158907,0.0707275,0.116838,0.781317,0.611902,0.239913,0.152642,0.215577,0.921144,0.271074,0.0731493,0.557934,0.413083,0.683235,0.0622836,0.5663,0.509549,0.454574,0.47531,0.24314,0.226388,0.276218,0.329828,0.889382,0.988977,0.220333,0.715804,0.786517,0.787079,0.827408,0.875254,0.74239,0.690619,0.487042,0.385612,0.095745,0.37621,0.790996,0.707654,0.944291,0.0380558,0.795957,0.263185,0.681011,0.576031,0.0420727,0.199673,0.41704,0.801429,0.18714,0.0847212,0.276145,0.449026,0.255557,0.0242567,0.167963,0.115294,0.445141,0.723705,0.537134,0.803023,0.661933,0.882536,0.0252176,0.569345,0.511781,0.370464,0.0984153,0.0992784,0.490663,0.587985,0.568293,0.319498,0.52064,0.540527,0.807236,0.915421,0.666098,0.38208,0.790446,0.404971,0.549354,0.841586,0.226373,0.31371,0.121369,0.376535,0.825303,0.491089,0.706209,0.712057,0.65161,0.133007,0.728512,0.637359,0.881909,0.6385,0.486731,0.563677,0.78866,0.68168,0.359517,0.425493,0.697217,0.183386,0.24413,0.419529,0.83141,0.655972,0.222628,0.766105,0.814757,0.393268,0.0554588,0.0964987,0.462686,0.340552,0.883993,0.916654,0.59372,0.377885,0.714443,0.123644,0.80377,0.363926,0.501962,0.321872,0.876587,0.0631795,0.222851,0.392601,0.532643,0.488699,0.568787,0.426314,0.16119,0.652012,0.834576,0.894441,0.546457,0.0901202,0.141143,0.428281,0.627293,0.649268,0.423436,0.741571,0.0984018,0.10747,0.794276,0.425586,0.521547,0.285863,0.183371,0.22165,0.657702,0.765457,0.188038,0.0468984,0.941295,0.486644,0.779704,0.572762,0.766395,0.533629,0.405888,0.864728,0.973969,0.764768,0.550353,0.114484,0.87121,0.201777,0.207762,0.313141,0.203475,0.275694,0.361554,0.566556,0.404471,0.29677,0.888802,0.99845,0.304404,0.0988138,0.333268,0.890774,0.615076,0.0553589,0.41003,0.0856567,0.252787,0.925603,0.745296,0.786963,0.00673288,0.675251,0.0164363,0.712596,0.89952,0.255878,0.0217026,0.953807,0.586826,0.889665,0.0710331,0.113728,0.15233,0.68758,0.922841,0.398623,0.305264,0.825344,0.534069,0.949896,0.674849,0.899771,0.625513,0.541126,0.401527,0.812134,0.275855,0.764267,0.168117,0.722218,0.711303,0.517941,0.946287,0.552394,0.848289,0.0606927,0.501825,0.903163,0.0238679,0.834009,0.0662454,0.370495,0.774862,0.750371,0.331816,0.225471,0.787124,0.801962,0.898051,0.97566,0.309578,0.163759,0.489348,0.0834395,0.354714,0.264253,0.860361,0.912543,0.960877,0.49095,0.102842,0.882297,0.562879,0.785205,0.672504,0.0509255,0.828879,0.474741,0.0876018,0.9846,0.249521,0.259356,0.278202,0.626811,0.157106,0.15305,0.689714,0.308914,0.968085,0.779824,0.636472,0.605749,0.882175,0.560892,0.450248,0.176196,0.694358,0.560236,0.053825,0.94933,0.919104,0.165755,0.649248,0.0805593,0.506025,0.971184,0.662676,0.96184,0.696484,0.405039,0.63286,0.30642,0.87649,0.272153,0.822038,0.179364,0.332541,0.403849,0.33665,0.381772,0.486906,0.51542,0.345392,0.685811,0.563366,0.323451,0.0626373,|0.371846,0.869567,0.392762,0.152875,0.990633,0.549842,0.500595,0.0201412,0.226192,0.146409,0.942767,0.52955,0.142879,0.362636,0.0989572,0.195253,0.640136,0.389537,0.093989,0.204015,0.95902,0.259642,0.711966,0.822201,0.139219,0.754561,0.928268,0.723381,0.13814,0.195819,0.886048,0.712047,0.588821,0.781902,0.589037,0.65584,0.345341,0.675941,0.590379,0.947462,0.715109,0.217728,0.0357368,0.596309,0.142567,0.337843,0.784237,0.463726,0.973729,0.659797,0.278071,0.504001,0.846139,0.256055,0.892104,0.126487,0.0730836,0.525213,0.623759,0.164962,0.919592,0.962547,0.986179,0.290664,0.202267,0.474127,0.294279,0.411292,0.0150392,0.141192,0.0198015,0.941585,0.658801,0.924237,0.486642,0.828883,0.239775,0.264538,0.16042,0.577457,0.999045,0.513231,0.792929,0.250882,0.764809,0.154772,0.176833,0.574941,0.278205,0.036038,0.391617,0.316495,0.0963717,0.157215,0.95434,0.729098,0.539292,0.325714,0.133736,0.359878,0.504825,0.164382,0.8112,0.456922,0.4335,0.734926,0.462529,0.281863,0.433948,0.988747,0.603148,0.332439,0.906436,0.217948,0.131763,0.0923454,0.796754,0.822484,0.354766,0.362812,0.835434,0.525959,0.462509,0.563502,0.942242,0.238135,0.116669,0.448098,0.225191,0.372142,0.686906,0.555044,0.0535286,0.493255,0.176055,0.969402,0.0035882,0.141588,0.294768,0.635292,0.668152,0.555535,0.642742,0.938719,0.0116979,0.459925,0.298129,0.331485,0.863476,0.35681,0.16877,0.0660381,0.535253,0.0249581,0.154344,0.146927,0.0979197,0.778831,0.146747,0.602259,0.636674,0.774608,0.508195,0.208167,0.131389,0.929816,0.116145,0.172096,0.671018,0.54359,0.719523,0.427493,0.0241929,0.252564,0.59275,0.442262,0.560847,0.188434,0.507708,0.984252,0.62216,0.318594,0.305993,0.596521,0.292369,0.406496,0.281357,0.977039,0.393577,0.529597,0.41571,0.766031,0.181976,0.56072,0.431705,0.546865,0.443171,0.153857,0.653754,0.955095,0.390647,0.923638,0.440023,0.803074,0.968199,0.0867853,0.230371,0.654763,0.73601,0.203248,0.751853,0.554803,0.793387,0.249199,0.498319,0.657712,0.703395,0.581047,0.459723,0.750681,0.874105,0.591934,0.935083,0.260082,0.844436,0.168872,0.157439,0.654571,0.870354,0.331635,0.676568,0.289479,0.689748,0.107372,0.244542,0.777833,0.983804,0.401517,0.252146,0.976907,0.184649,0.0387951,0.562098,0.928902,0.382119,0.197671,0.28179,0.943192,0.427211,0.900337,0.684313,0.022346,0.147083,0.275173,0.746208,0.169832,0.660529,0.48752,0.83737,0.574752,0.743572,0.98266,0.349957,0.728699,0.203756,0.885184,0.405045,0.495349,0.116421,0.028019,0.828706,0.607878,0.328733,0.495634,0.094373,0.673577,0.594061,0.0684479,0.813973,0.750482,0.978718,0.0484874,0.218679,0.845717,0.481081,0.640963,0.165938,0.271789,0.106086,0.405686,0.844549,0.667809,0.363257,0.916889,0.856532,0.180645,0.838979,0.379591,0.0412958,0.784372,0.199303,0.0448703,0.0814833,0.763982,0.22848,0.445064,0.249448,0.967735,0.959679,0.892804,0.891601,0.802245,0.611775,0.410538,0.00434035,0.73686,0.605014,0.793779,0.196914,0.37906,0.107874,0.968138,0.661901,0.4618,0.0696937,0.478455,0.579053,0.00409198,0.954952,0.144515,0.336001,0.0909942,0.77969,0.410976,0.111783,0.844489,0.304823,0.615329,0.652313,0.153388,0.438692,0.756734,0.677201,0.446143,0.931025,0.0185451,0.218367,0.129395,0.68914,0.602482,0.731998,0.590412,0.0237431,0.284464,0.532654,0.997386,0.068477,0.740494,0.0801983,0.265951,0.651086,0.126993,0.698239,0.439577,0.0734408,0.730318,0.36595,0.521425,0.0953966,0.489098,0.789424,0.753517,0.710561,0.727064,0.997782,0.946113,0.819422,0.821576,0.455827,0.975257,0.585822,0.663024,0.207153,0.787738,0.491157,0.373112,0.800971,0.53709,0.413259,0.105306,0.535101,0.134062,0.56002,0.822398,0.723636,0.266105,0.22785,0.203782,0.563493,0.756171,0.53218,0.806253,0.289888,0.836744,0.742979,0.688056,0.0828364,0.71121,0.291299,0.365933,0.64957,0.0330925,0.73314,0.265479,0.913555,0.137498,0.723212,0.825727,0.545987,0.100114,0.380102,0.477427,0.690468,0.0187337,0.821675,0.592228,0.63157,0.554475,0.754589,0.391028,0.901992,0.998585,0.105931,0.400681,0.533199,0.0647835,0.788902,0.853003,0.694207,0.250282,0.251219,0.0769413,0.978858,0.64962,0.402517,0.181494,0.655854,0.73924,0.525275,0.505824,0.52982,0.325925,0.050182,0.461978,0.272559,0.509065,0.588608,0.122326,0.410156,0.478538,0.408328,0.0425441,0.867482,0.747181,0.746918,0.596167,0.94902,0.400232,0.79232,0.336146,0.214978,0.613535,0.528887,0.683058,0.744166,0.971556,0.66374,0.924814,0.822644,0.872399,0.248865,0.734084,0.742315,0.9988,0.364117,0.177249,0.58861,0.206097,0.440644,0.124074,0.769089,0.835781,0.375477,0.684497,0.834158,0.210242,0.605487,0.412748,0.929996,0.200429,0.185132,0.704327,0.721294,0.0934359,0.175406,0.080354,0.444744,0.64275,0.350662,0.8876,0.982811,0.654342,0.958363,0.896875,0.511773,0.153478,0.109203,0.834738,0.99195,0.474163,0.121488,0.249393,0.348206,0.902612,0.581704,0.593758,0.288045,0.260597,0.891115,0.514049,0.706753,0.992048,0.997507,0.694536,0.987305,0.60521,0.306914,0.42862,0.216921,0.678256,0.0924943,0.46382,0.150372,0.31385,0.217659,0.16298,0.724508,0.837034,0.0239108,0.711473,0.940303,0.694635,0.984438,0.544223,0.997661,0.649915,0.720126,0.991557,0.501522,0.833333,0.905032,0.301736,0.527158,0.334246,0.918189,0.969182,0.148787,0.0103539,0.115434,0.470238,0.152956,0.742279,0.614914,0.30659,0.275118,0.702884,0.210419,0.986688,0.29113,0.261279,0.0545419,0.51014,0.0847332,0.195453,0.682642,0.0471446,0.422699,0.279956,0.408659,0.311658,0.0901986,0.294576,0.832875,0.492513,0.276118,0.0168961,0.514475,0.122552,0.36625,0.676927,0.0116459,0.621849,0.180423,0.837623,0.548698,0.12072,0.66508,0.667053,0.146417,0.108012,0.182604,0.0905337,0.414078,0.245233,0.860964,0.617526,0.92582,0.070272,0.798856,0.895325,0.0901644,0.912911,0.103001,0.718228,0.639764,0.961375,0.892497,0.560031,0.302296,0.503353,0.0414875,0.968324,0.786028,0.915887,0.60441,0.293039,0.893196,0.191258,0.820903,0.903383,0.514706,0.199293,0.992436,0.661768,0.916948,0.964657,0.265847,0.748201,0.798838,0.0468067,0.232248,0.982036,0.227278,0.15171,0.994651,0.365283,0.339747,0.196537,0.198283,0.0978821,0.17277,0.326722,0.0563552,0.438287,0.0881164,0.165958,0.40278,0.453131,0.952305,0.412632,0.498178,0.735842,0.279687,0.9989,0.906957,0.55373,0.140134,0.640398,0.84562,0.722898,0.174298,0.519418,0.103167,0.0721477,0.676371,0.433688,0.279734,0.956436,0.090471,0.416648,0.67565,0.58579,0.986362,0.993784,0.953256,0.580122,0.443491,0.581672,0.0533873,0.00744164,0.308735,0.336488,0.0984967,0.606791,0.416862,0.308825,0.613383,0.253965,0.551113,0.0403542,0.46935,0.880498,0.287649,0.774129,0.484362,0.101169,0.3165,0.385915,0.983146,0.452037,0.302638,0.273644,0.133687,0.295856,0.585937,0.724702,0.872707,0.246804,0.40194,0.291753,0.327795,0.271106,0.581439,0.743251,0.865085,0.929354,0.403242,0.328208,0.700157,0.0027957,0.574238,0.230207,0.420211,0.593847,0.766911,0.908164,0.5678,0.869631,0.236174,0.236962,0.400728,0.274208,0.636833,0.158951,0.971988,0.57932,0.885503,0.283987,0.114412,0.482579,0.0932057,0.843313,0.20054,0.572315,0.0602288,0.0528126,0.0632203,0.857937,0.3134,0.216964,0.283501,0.541826,0.426879,0.513575,0.641273,0.439953,0.758792,0.129438,0.694469,0.443494,0.561666,0.883836,0.384971,0.85436,0.00425571,0.891129,0.219483,0.598689,0.453981,0.0151314,0.472767,0.810335,0.814264,0.0190887,0.274666,0.809191,0.955832,0.584724,0.362722,0.996735,0.566215,0.468,0.47585,0.975488,0.291978,0.114719,0.34694,0.304504,0.082839,0.618532,0.418778,0.0681267,0.9694,0.340526,0.515991,0.981934,0.890221,0.416159,0.108035,0.0930454,0.260935,0.719329,0.787635,0.633419,0.186493,0.405447,0.733093,0.598477,0.867192,0.863687,0.848529,0.428825,0.41572,0.949126,0.495895,0.304343,0.537838,0.0421003,0.203899,0.175757,0.550705,0.451317,0.273618,0.0991089,0.59206,0.171974,0.765377,0.718284,0.292967,0.573463,0.888249,0.0953615,0.71631,0.479836,0.302654,0.822115,0.711301,0.754599,0.59673,0.323853,0.240512,0.979137,0.0620796,0.676871,0.248712,0.977306,0.426106,0.254634,0.881125,0.129025,0.770536,0.711216,0.0904731,0.405683,0.328469,0.801612,0.142842,0.721725,0.966549,0.744806,0.547361,0.895791,0.367872,0.276254,0.716452,0.56964,0.0344136,0.302039,0.0753421,0.0256349,0.111148,0.802503,0.279043,0.350591,0.304171,0.823584,0.295503,0.0253195,0.730322,0.122193,0.343191,0.291514,0.262827,0.141829,0.511785,0.261459,0.287709,0.143621,0.31686,0.817539,0.0105443,0.509752,0.783882,0.906599,0.16524,0.346135,0.852089,0.41692,0.424342,0.831653,0.562997,0.351955,0.324829,0.590024,0.775159,0.799001,0.474394,0.598706,0.375202,0.0806326,0.0481369,0.0886288,0.423358,0.509828,0.839382,0.318473,0.600777,0.731642,0.179301,0.520996,0.2106,0.875032,0.766846,0.17868,0.0827906,0.270242,0.442392,0.0948276,0.832752,0.0623763,0.256528,0.0732414,0.778781,0.548665,0.6724,0.0565426,0.285643,0.633135,0.0401504,0.727884,0.207575,0.650234,0.432855,0.939585,0.29514,0.273589,0.517133,0.947717,0.48588,0.442402,0.315423,0.925518,0.903692,0.108549,0.193351,0.968722,0.631486,0.967772,0.723494,0.283239,0.0859205,0.285316,0.307901,0.1861,0.0937374,0.619752,0.330172,0.0444933,0.390725,0.56316,0.0117402,0.313962,0.148647,0.490094,0.387573,0.621309,0.442071,0.0677708,0.291445,0.322293,|0.575074,0.790125,0.411374,0.660394,0.0146185,0.336346,0.306308,0.495854,0.694641,0.392757,0.0144327,0.176308,0.491068,0.89188,0.121715,0.719964,0.329637,0.944977,0.44847,0.0413619,0.0683551,0.695959,0.103771,0.443291,0.362174,0.446716,0.167857,0.835125,0.382396,0.725081,0.307574,0.761592,0.290921,0.00190526,0.554087,0.635902,0.434802,0.802479,0.718368,0.990356,0.307901,0.732443,0.66882,0.0383255,0.626723,0.857138,0.338249,0.742495,0.792289,0.387895,0.913986,0.94568,0.962937,0.063346,0.153842,0.03691,0.768234,0.0480215,0.342105,0.909758,0.650371,0.638686,0.0830249,0.825597,0.226156,0.864964,0.489683,0.952469,0.920058,0.95086,0.115868,0.614937,0.153042,0.615511,0.303683,0.427186,0.456523,0.722144,0.940586,0.000559449,0.803794,0.972158,0.607892,0.443227,0.784448,0.400086,0.482562,0.129672,0.260877,0.580112,0.805388,0.653371,0.527661,0.472165,0.767827,0.0878118,0.0543642,0.492539,0.922104,0.900799,0.689482,0.456811,0.575936,0.0196855,0.686341,0.838059,0.36922,0.91438,0.691354,0.355504,0.433558,0.311178,0.0609644,0.53219,0.675019,0.113005,0.153851,0.410173,0.104676,0.55614,0.247555,0.24849,0.199707,0.219773,0.72593,0.911455,0.135419,0.0632128,0.387656,0.532602,0.292037,0.133377,0.886415,0.763856,0.694989,0.250838,0.890965,0.0856676,0.652779,0.935064,0.00653023,0.580118,0.721336,0.672398,0.576122,0.6538,0.423091,0.229327,0.915112,0.0885727,0.751772,0.221433,0.555452,0.600483,0.49042,0.344184,0.435092,0.252642,0.272707,0.722009,0.736204,0.18996,0.713672,0.848259,0.112799,0.705913,0.517468,0.556314,0.0206878,0.814121,0.801017,0.429262,0.338601,0.41606,0.745313,0.420859,0.114967,0.224332,0.65766,0.0779074,0.401636,0.342112,0.362671,0.768537,0.173215,0.821982,0.488097,0.759156,0.858971,0.124414,0.129783,0.723996,0.340367,0.581226,0.477326,0.0649946,0.477064,0.625961,0.341766,0.927989,0.795615,0.0364472,0.643663,0.468237,0.967882,0.890291,0.863378,0.308158,0.350265,0.256135,0.762751,0.886386,0.888095,0.311592,0.0804371,0.560131,0.107132,0.518312,0.213188,0.732729,0.11461,0.553612,0.103552,0.0359416,0.615428,0.316576,0.515227,0.844452,0.674173,0.846767,0.692065,0.0263823,0.146806,0.475222,0.723543,0.689336,0.352607,0.966232,0.390378,0.0178667,0.724495,0.0881453,0.991952,0.661465,0.135076,0.999686,0.996352,0.7758,0.436147,0.532682,0.741669,0.96566,0.192676,0.0471981,0.470872,0.576807,0.448739,0.394482,0.838205,0.651943,0.401541,0.671225,0.259107,0.129827,0.755316,0.355702,0.826145,0.450694,0.294335,0.0166811,0.117166,0.124275,0.335958,0.74637,0.0796934,0.19436,0.936062,0.385207,0.126656,0.0150751,0.603009,0.908582,0.76938,0.389275,0.0742838,0.14461,0.845761,0.863737,0.557415,0.640833,0.551341,0.27788,0.56481,0.384632,0.341895,0.670865,0.503226,0.110673,0.0286672,0.542037,0.384757,0.505217,0.462242,0.182895,0.758649,0.187877,0.387028,0.0684514,0.33315,0.563037,0.741997,0.631127,0.308652,0.210994,0.509341,0.254179,0.973345,0.129616,0.792697,0.753231,0.726672,0.966303,0.710811,0.205325,0.812944,0.470604,0.299777,0.210253,0.491772,0.432976,0.0887101,0.505514,0.997642,0.862177,0.0734223,0.960131,0.284932,0.840064,0.166631,0.561414,0.0268707,0.691567,0.0705005,0.955854,0.273264,0.541249,0.694305,0.869864,0.397665,0.857775,0.954884,0.471724,0.604507,0.659026,0.891505,0.723393,0.24671,0.720508,0.65752,0.294552,0.754158,0.339018,0.979691,0.548417,0.19811,0.239604,0.310073,0.831131,0.462251,0.7694,0.419539,0.996415,0.87009,0.121669,0.533716,0.926508,0.277095,0.628044,0.523597,0.477497,0.0843281,0.262566,0.977332,0.801936,0.454579,0.177049,0.78755,0.895922,0.0421928,0.606648,0.579033,0.782052,0.30832,0.740462,0.123117,0.66689,0.272216,0.94648,0.327539,0.451512,0.658839,0.285208,0.806891,0.686817,0.903646,0.624245,0.879493,0.598982,0.756838,0.151723,0.400599,0.255439,0.795288,0.14562,0.824379,0.764958,0.956736,0.119572,0.0350167,0.649457,0.172254,0.527779,0.365758,0.636475,0.052301,0.0971975,0.612607,0.598268,0.847848,0.0433187,0.86013,0.167241,0.0310066,0.91556,0.552658,0.538616,0.136041,0.935653,0.832193,0.958807,0.668003,0.251763,0.191052,0.363451,0.741332,0.207036,0.753259,0.76226,0.481907,0.896459,0.287289,0.078531,0.337196,0.185085,0.834659,0.29332,0.859615,0.972805,0.0194932,0.537655,0.389819,0.281383,0.388724,0.225926,0.0987313,0.24344,0.66016,0.439228,0.887197,0.38974,0.0845028,0.890619,0.84078,0.629548,0.00362593,0.974521,0.21932,0.788622,0.843127,0.76442,0.754302,0.878176,0.341782,0.41236,0.948986,0.791119,0.313394,0.838672,0.507239,0.383818,0.227642,0.86459,0.0399497,0.555815,0.915948,0.0584019,0.87369,0.315075,0.509433,0.91058,0.42902,0.760337,0.151421,0.473439,0.648177,0.937943,0.168766,0.477773,0.321552,0.194256,0.713766,0.238226,0.432298,0.480555,0.887679,0.400493,0.662885,0.364834,0.533419,0.667282,0.937828,0.823735,0.593666,0.715909,0.39958,0.85249,0.229336,0.0554299,0.855038,0.922523,0.31676,0.918114,0.840229,0.707465,0.252407,0.150184,0.69035,0.803354,0.358585,0.513874,0.34174,0.273647,0.607916,0.10283,0.537436,0.883029,0.545748,0.0448961,0.00892365,0.841438,0.338047,0.550298,0.104314,0.156583,0.225135,0.520034,0.17129,0.00759137,0.617996,0.238995,0.564374,0.0662659,0.857828,0.489602,0.509669,0.81907,0.967164,0.699313,0.380561,0.863914,0.48483,0.0418139,0.853599,0.587654,0.140077,0.884647,0.427392,0.226984,0.400387,0.0575661,0.136594,0.483883,0.518903,0.384639,0.719908,0.430022,0.718174,0.440994,0.84574,0.39432,0.870428,0.482454,0.827735,0.354813,0.543322,0.00409561,0.684691,0.0792428,0.0730565,0.623943,0.389809,0.448309,0.823117,0.310927,0.330649,0.576446,0.87494,0.0579571,0.91779,0.390768,0.328241,0.602168,0.578319,0.310805,0.288003,0.860264,0.68522,0.788966,0.0276697,0.956994,0.740317,0.891166,0.16778,0.913415,0.952149,0.531857,0.284724,0.889495,0.0913196,0.990457,0.990075,0.704596,0.406249,0.172387,0.304964,0.770812,0.299008,0.00491107,0.870952,0.621405,0.861635,0.0221192,0.189123,0.819804,0.350576,0.330042,0.31645,0.767013,0.0748906,0.150334,0.26596,0.682029,0.780423,0.45062,0.67268,0.458331,0.521176,0.822729,0.159867,0.536752,0.045339,0.863307,0.188167,0.245361,0.376287,0.795178,0.871931,0.734971,0.868763,0.745587,0.856008,0.496407,0.565437,0.0431111,0.997439,0.203915,0.301365,0.744136,0.744245,0.601601,0.206897,0.44313,0.0724585,0.610047,0.713456,0.560598,0.326708,0.312829,0.690457,0.862037,0.0281557,0.329128,0.277534,0.300108,0.558641,0.17186,0.771117,0.585855,0.622282,0.25111,0.559107,0.154404,0.309059,0.378673,0.948114,0.14313,0.254224,0.902441,0.504262,0.0808116,0.563597,0.0283402,0.60216,0.0792326,0.298762,0.97825,0.903185,0.969689,0.3916,0.991942,0.0402645,0.0391316,0.786107,0.26226,0.48488,0.0313477,0.624884,0.512381,0.632663,0.772626,0.95493,0.12637,0.494411,0.405421,0.638908,0.1497,0.0691237,0.34523,0.784841,0.71371,0.913383,0.794312,0.254608,0.440392,0.627213,0.222146,0.78373,0.628223,0.754103,0.0111752,0.00830877,0.823264,0.916408,0.660449,0.331124,0.69109,0.292326,0.303296,0.951897,0.94219,0.243764,0.418647,0.17907,0.48114,0.687961,0.282594,0.0956381,0.399269,0.774844,0.148522,0.778426,0.696817,0.955127,0.937207,0.446759,0.649317,0.697154,0.989313,0.411703,0.654597,0.8501,0.759808,0.429241,0.694853,0.558277,0.613851,0.180822,0.371524,0.642568,0.302504,0.0561695,0.237718,0.96981,0.426497,0.103842,0.357034,0.428714,0.255382,0.401664,0.819646,0.594845,0.416609,0.620189,0.129639,0.497567,0.611872,0.422758,0.906041,0.736846,0.0358468,0.910087,0.661428,0.32816,0.504747,0.0494046,0.422821,0.277852,0.254786,0.0825908,0.207937,0.308687,0.481596,0.621656,0.800067,0.790313,0.390971,0.141559,0.182385,0.333221,0.265106,0.413765,0.210677,0.134739,0.531127,0.184939,0.00128013,0.108943,0.0875444,0.548543,0.686849,0.110335,0.569824,0.198696,0.809176,0.702705,0.354436,0.765324,0.710615,0.880125,0.333375,0.768845,0.116207,0.454142,0.154866,0.257412,0.0547398,0.145596,0.882936,0.37529,0.82577,0.179899,0.031874,0.403708,0.236036,0.437837,0.697793,0.675224,0.207329,0.737212,0.45298,0.0745732,0.394666,0.742147,0.586788,0.64115,0.812246,0.247051,0.855774,0.192,0.829681,0.755908,0.911614,0.301967,0.829504,0.0616205,0.199599,0.748677,0.00619608,0.961469,0.922891,0.305515,0.360515,0.0455243,0.296097,0.789818,0.46326,0.948893,0.623121,0.270167,0.288121,0.389968,0.083785,0.459411,0.193185,0.579024,0.577664,0.482362,0.339556,0.67542,0.476729,0.257948,0.935324,0.808777,0.297307,0.218039,0.71331,0.190867,0.970854,0.0568036,0.61962,0.0318205,0.101715,0.21269,0.999368,0.21242,0.127231,0.58102,0.531153,0.828822,0.265648,0.197002,0.462839,0.977422,0.74414,0.852925,0.368068,0.548473,0.811049,0.382957,0.689733,0.797629,0.565794,0.896609,0.925277,0.623814,0.715697,0.970284,0.833458,0.675839,0.381641,0.65636,0.442344,0.0432373,0.226332,0.434327,0.874266,0.613195,0.954352,0.672011,0.988583,0.957271,0.582344,0.462097,0.269124,0.195619,0.609937,0.341539,0.115435,0.461498,0.617653,0.963628,0.286986,0.901172,0.507339,0.77002,0.468993,0.560682,0.503326,0.621601,0.502742,0.272059,0.621066,0.212452,0.370053,0.924608,0.616607,0.497479,0.829647,0.882489,0.125629,0.857787,0.775374,0.392559,0.464146,0.868439,0.790308,0.534975,0.286781,0.726184,0.407313,|0.629443,0.0706156,0.699671,0.778383,0.899783,0.868662,0.620043,0.590598,0.623531,0.5572,0.348035,0.132223,0.884337,0.795253,0.426044,0.484621,0.805532,0.654769,0.688674,0.963144,0.352168,0.271721,0.715644,0.0611469,0.532688,0.913864,0.744771,0.342468,0.0486044,0.34737,0.593525,0.373909,0.944227,0.0938859,0.41006,0.886913,0.590012,0.369931,0.749423,0.438089,0.622201,0.487118,0.714287,0.991413,0.972136,0.639578,0.876092,0.442265,0.388256,0.368675,0.138745,0.788735,0.531182,0.378053,0.521745,0.0586914,0.616624,0.312307,0.18095,0.113847,0.57206,0.0401224,0.523486,0.0398679,0.795473,0.182455,0.897248,0.0822922,0.911105,0.710953,0.317835,0.586227,0.6718,0.820808,0.960629,0.288568,0.571557,0.264286,0.656943,0.94786,0.0214337,0.0695941,0.949411,0.949194,0.253392,0.0776318,0.646277,0.981496,0.062579,0.112644,0.520684,0.457747,0.284994,0.805031,0.234235,0.545336,0.6297,0.990272,0.242169,0.349307,0.55851,0.560593,0.250782,0.604172,0.432636,0.263885,0.947704,0.292059,0.443218,0.741273,0.867824,0.171748,0.406252,0.895744,0.239708,0.167293,0.272612,0.39138,0.136005,0.0890554,0.548922,0.226027,0.870715,0.333041,0.476609,0.408042,0.452561,0.642188,0.683226,0.0276241,0.331956,0.949457,0.623327,0.738385,0.394091,0.178367,0.807335,0.257333,0.977104,0.00167561,0.430961,0.87613,0.448355,0.535393,0.604468,0.459853,0.384492,0.541317,0.445815,0.0625564,0.919323,0.534356,0.233114,0.984956,0.572866,0.774159,0.728799,0.552798,0.828302,0.641523,0.359718,0.164195,0.363541,0.282197,0.93625,0.941085,0.238548,0.812911,0.0171563,0.440408,0.22634,0.966711,0.609893,0.478197,0.346707,0.559242,0.306124,0.151188,0.770002,0.661681,0.146281,0.891496,0.425254,0.848765,0.68227,0.668689,0.109989,0.832098,0.850378,0.116127,0.494427,0.107201,0.953477,0.679897,0.250843,0.594641,0.948932,0.364078,0.413951,0.178729,0.17846,0.552434,0.544109,0.452943,0.125075,0.116765,0.693956,0.581356,0.794557,0.831363,0.272042,0.988477,0.614727,0.926173,0.890718,0.95572,0.856962,0.758948,0.654046,0.999993,0.298832,0.597817,0.129159,0.221049,0.231582,0.698397,0.39218,0.533502,0.656789,0.670851,0.44664,0.867974,0.950663,0.880831,0.547454,0.624877,0.556354,0.788335,0.514354,0.200952,0.396827,0.629978,0.0287012,0.483122,0.192484,0.474727,0.202851,0.350432,0.472468,0.394937,0.718306,0.537939,0.758962,0.905369,0.406944,0.113019,0.873157,0.300067,0.0655798,0.539897,0.95461,0.00256354,0.0335439,0.0865388,0.476452,0.334507,0.916644,0.521338,0.568255,0.943315,0.967667,0.0519451,0.993881,0.172627,0.431822,0.0453491,0.0173961,0.770824,0.946773,0.738347,0.611309,0.917588,0.843939,0.799194,0.976894,0.275198,0.297167,0.00979674,0.532584,0.269445,0.7827,0.838009,0.835171,0.723957,0.969065,0.883836,0.160829,0.0302674,0.0384631,0.77784,0.219219,0.0971076,0.261533,0.660598,0.0304744,0.347144,0.864736,0.0765366,0.776533,0.265393,0.122058,0.860449,0.624445,0.737363,0.534832,0.0287215,0.284654,0.506877,0.105466,0.209825,0.974241,0.542321,0.664706,0.087059,0.728111,0.838552,0.766555,0.189008,0.983438,0.17895,0.859693,0.845459,0.740813,0.780841,0.326237,0.0554983,0.692416,0.897535,0.500197,0.0998316,0.813971,0.728769,0.804674,0.729662,0.862937,0.245601,0.295066,0.578121,0.893012,0.225615,0.494659,0.297351,0.219075,0.862605,0.785313,0.849506,0.693111,0.184051,0.852095,0.902904,0.582691,0.91464,0.0478111,0.612442,0.356896,0.514461,0.882934,0.0521895,0.384537,0.658831,0.813384,0.579876,0.384742,0.442552,0.732332,0.569263,0.305694,0.311287,0.602595,0.978936,0.328647,0.344971,0.0716274,0.242172,0.435064,0.136724,0.400234,0.0599973,0.543885,0.356377,0.792359,0.800752,0.334153,0.526402,0.184944,0.608953,0.69078,0.453229,0.95115,0.666482,0.382712,0.25242,0.595529,0.547046,0.612149,0.397772,0.246472,0.381307,0.396335,0.0341112,0.956628,0.559998,0.0472462,0.503058,0.223461,0.98422,0.800616,0.641987,0.621533,0.577995,0.380174,0.664572,0.0967933,0.944715,0.910906,0.116157,0.145254,0.306906,0.32111,0.461256,0.0915396,0.567307,0.300883,0.369553,0.926752,0.735842,0.640327,0.637176,0.74817,0.545153,0.768071,0.574793,0.17993,0.986273,0.416931,0.52243,0.363371,0.391708,0.0459465,0.0755643,0.825589,0.594646,0.352893,0.386377,0.038001,0.584262,0.234118,0.843859,0.98509,0.953112,0.953421,0.100107,0.666385,0.118097,0.915063,0.775742,0.515044,0.477092,0.428037,0.439477,0.785436,0.775503,0.43323,0.442979,0.367869,0.937273,0.79518,0.244697,0.701623,0.693461,0.120331,0.452168,0.445893,0.981593,0.149913,0.519407,0.73945,0.919218,0.297141,0.078375,0.42858,0.056655,0.976225,0.653032,0.895582,0.158346,0.811048,0.291427,0.758537,0.553953,0.144679,0.326195,0.665533,0.943796,0.92833,0.923963,0.00251526,0.859156,0.623592,0.303755,0.478068,0.316576,0.19754,0.808561,0.0299849,0.948586,0.947464,0.842537,0.280853,0.0646764,0.112137,0.142027,0.445821,0.49636,0.0558354,0.218557,0.0371268,0.940898,0.761056,0.489451,0.0451881,0.721467,0.961652,0.785695,0.541501,0.294756,0.307841,0.856399,0.282944,0.458517,0.529161,0.629673,0.436507,0.0964797,0.743585,0.940826,0.498542,0.955168,0.219853,0.865509,0.691786,0.311724,0.843054,0.681757,0.299035,0.0347351,0.966695,0.629691,0.465742,0.298658,0.206316,0.510521,0.395639,0.264894,0.265075,0.45067,0.827292,0.595793,0.289694,0.51178,0.37154,0.945151,0.191936,0.154484,0.755424,0.417793,0.369501,0.0188861,0.603974,0.73007,0.819465,0.531337,0.636981,0.278332,0.274311,0.655971,0.402888,0.424574,0.31488,0.28032,0.758851,0.030331,0.409417,0.0738677,0.18834,0.54253,0.66411,0.223009,0.467965,0.959868,0.650335,0.642107,0.41333,0.283546,0.0686926,0.669941,0.384291,0.826782,0.557045,0.661717,0.722172,0.349773,0.849489,0.0143293,0.432548,0.747359,0.689929,0.433905,0.28393,0.62013,0.519328,0.586989,0.91937,0.735831,0.404976,0.68904,0.362447,0.125563,0.662031,0.163703,0.481148,0.691568,0.877428,0.0733708,0.583854,0.251891,0.577525,0.472787,0.193426,0.347602,0.667398,0.538234,0.0318174,0.435025,0.512401,0.328238,0.246627,0.306917,0.303319,0.577611,0.0562324,0.00241232,0.336404,0.839853,0.758829,0.128587,0.315857,0.824676,0.952738,0.477434,0.93847,0.584421,0.0777411,0.552479,0.14696,0.628801,0.238912,0.431945,0.511038,0.578919,0.153014,0.916972,0.349717,0.196809,0.333057,0.508832,0.188031,0.224045,0.787713,0.24915,0.0930919,0.0280332,0.992974,0.509078,0.989272,0.957765,0.62455,0.267205,0.661695,0.764809,0.686073,0.769146,0.587855,0.552943,0.60947,0.71395,0.174595,0.136967,0.668444,0.418291,0.481295,0.602895,0.336226,0.265343,0.135357,0.173122,0.223361,0.257787,0.278307,0.497989,0.042879,0.998507,0.484023,0.216032,0.909659,0.674129,0.0655518,0.0857194,0.000374019,0.332922,0.323069,0.18964,0.774858,0.540734,0.779539,0.826667,0.949427,0.179071,0.48065,0.813358,0.535813,0.807711,0.713635,0.839504,0.444715,0.74743,0.718089,0.062103,0.902943,0.488166,0.927761,0.189471,0.0203594,0.44174,0.80211,0.406521,0.434088,0.785772,0.269371,0.904009,0.785144,0.481954,0.564956,0.507424,0.704991,0.163268,0.65385,0.854271,0.801998,0.628021,0.751106,0.0839586,0.101078,0.184776,0.339362,0.430921,0.866253,0.11877,0.372151,0.0618216,0.371621,0.122697,0.618716,0.714419,0.294649,0.432912,0.0176675,0.974531,0.189775,0.209832,0.140519,0.131364,0.139871,0.404095,0.856376,0.269896,0.423872,0.0807173,0.957882,0.0264166,0.424327,0.313952,0.350176,0.0894861,0.40609,0.287956,0.794385,0.47864,0.888839,0.174452,0.321918,0.199364,0.204648,0.676801,0.0328707,0.218529,0.813363,0.120691,0.438924,0.00225955,0.128474,0.532574,0.60947,0.0254213,0.603173,0.155936,0.156102,0.920167,0.369795,0.52478,0.770598,0.920127,0.781065,0.749805,0.482566,0.657424,0.718893,0.295828,0.305194,0.461432,0.931956,0.514089,0.635024,0.00403541,0.270607,0.197541,0.794144,0.782084,0.813729,0.645812,0.264869,0.66758,0.710771,0.608473,0.698202,0.681058,0.186239,0.272469,0.33112,0.136393,0.176002,0.630632,0.567155,0.983903,0.238918,0.578049,0.037073,0.289713,0.554548,0.523175,0.938678,0.655734,0.0154376,0.981131,0.886392,0.0271238,0.0992221,0.236472,0.554177,0.448759,0.737503,0.951157,0.391427,0.287663,0.548983,0.724413,0.120471,0.0204352,0.0193968,0.0563937,0.0887719,0.273291,0.453858,0.192503,0.361633,0.0211533,0.31449,0.865279,0.467474,0.181389,0.728968,0.818701,0.785158,0.643273,0.12009,0.174498,0.51539,0.991316,0.816498,0.0257171,0.319879,0.389899,0.796242,0.00765234,0.598674,0.766211,0.371474,0.136056,0.3434,0.0236973,0.100999,0.403513,0.0686678,0.978093,0.546144,0.0426153,0.168378,0.370813,0.0744632,0.0506156,0.586456,0.985617,0.576811,0.997422,0.930264,0.367539,0.437104,0.397386,0.10236,0.556608,0.823087,0.114153,0.559534,0.951392,0.544021,0.214601,0.435595,0.113884,0.481689,0.786259,0.908832,0.824171,0.808442,0.522912,0.177943,0.687931,0.607517,0.865366,0.185758,0.0151293,0.474149,0.986353,0.936444,0.453075,0.0911887,0.210407,0.0321659,0.274529,0.683485,0.286753,0.562872,0.6099,0.376371,0.793798,0.691036,0.75001,0.0458332,0.512132,0.735958,0.379852,0.688871,0.819428,0.183164,0.310962,0.308167,0.123954,0.149955,0.620818,0.891877,0.970025,0.136324,0.341272,0.537587,0.405968,0.700102,0.770202,0.292003,0.152562,0.448969,0.890569,0.0238712,0.188936,0.502964,0.885523,0.468352,0.408601,0.187926,0.790008,0.342843,0.280312,|0.981219,0.56087,0.518987,0.208161,0.0508955,0.205499,0.712294,0.0473732,0.573391,0.485441,0.239777,0.417429,0.245381,0.959107,0.362436,0.618341,0.806378,0.516891,0.0952889,0.316603,0.70766,0.326757,0.0368277,0.0940463,0.684668,0.183587,0.0493559,0.663582,0.601229,0.434159,0.336224,0.739901,0.66482,0.114904,0.993652,0.928564,0.076228,0.613791,0.24165,0.0748433,0.897589,0.159822,0.623638,0.219558,0.475187,0.815753,0.0397186,0.669019,0.159252,0.846961,0.956536,0.814112,0.754269,0.0760766,0.780206,0.598216,0.424449,0.111651,0.0872485,0.451285,0.61508,0.679898,0.325085,0.312012,0.850917,0.913068,0.200112,0.910087,0.157284,0.622338,0.206948,0.930856,0.505192,0.662284,0.929278,0.848222,0.930264,0.594759,0.748287,0.726582,0.0746919,0.81068,0.051945,0.112625,0.181089,0.0133172,0.80563,0.324493,0.213284,0.0560245,0.193222,0.494298,0.00800765,0.99356,0.293634,0.245892,0.568552,0.688601,0.028715,0.96456,0.720825,0.483849,0.57019,0.555011,0.87691,0.734856,0.982914,0.337033,0.879092,0.084438,0.437614,0.919757,0.963062,0.663962,0.746164,0.2456,0.741408,0.636365,0.400794,0.793863,0.676004,0.236791,0.921053,0.71848,0.630599,0.00457966,0.83485,0.0323062,0.433567,0.167595,0.969845,0.0118511,0.272849,0.259829,0.31285,0.301718,0.269436,0.397715,0.458544,0.753404,0.91138,0.357115,0.499793,0.229418,0.949349,0.0244136,0.922428,0.0568056,0.117325,0.241539,0.505549,0.774645,0.574371,0.304274,0.101904,0.380103,0.692196,0.76587,0.771413,0.614237,0.786302,0.669098,0.0853837,0.230373,0.968744,0.827683,0.775355,0.222433,0.345395,0.477342,0.0838968,0.267435,0.267476,0.866965,0.00966173,0.505768,0.144547,0.369262,0.322005,0.908446,0.641625,0.265434,0.604156,0.010938,0.382062,0.0634287,0.573232,0.255507,0.692246,0.674631,0.735651,0.0807145,0.395219,0.0271484,0.472773,0.773219,0.0588737,0.0724968,0.1171,0.279895,0.32717,0.985514,0.0827504,0.653552,0.502247,0.993794,0.567966,0.635584,0.327585,0.912406,0.327662,0.828936,0.502004,0.372968,0.119602,0.794384,0.52779,0.76963,0.428828,0.862746,0.231383,0.208501,0.331525,0.469385,0.0158272,0.899508,0.62869,0.511668,0.959486,0.187656,0.790232,0.450189,0.495075,0.602856,0.748803,0.585595,0.526764,0.930448,0.502098,0.79279,0.457541,0.772134,0.130143,0.252444,0.898665,0.315991,0.67448,0.622521,0.571258,0.523543,0.0583528,0.721838,0.144721,0.79785,0.232725,0.556618,0.305993,0.927184,0.801329,0.372293,0.497661,0.953295,0.926994,0.881726,0.936883,0.908725,0.239748,0.542302,0.860242,0.99162,0.948811,0.617131,0.830674,0.570374,0.835738,0.795635,0.133388,0.533936,0.673977,0.574622,0.753624,0.843384,0.894184,0.835639,0.466754,0.114526,0.489081,0.366133,0.434735,0.57081,0.26818,0.421449,0.647795,0.406898,0.0681629,0.479632,0.32615,0.056923,0.458459,0.334777,0.166707,0.395661,0.463628,0.239073,0.454715,0.339818,0.254674,0.803049,0.518496,0.265015,0.522538,0.230518,0.82761,0.655518,0.105638,0.034084,0.334645,0.033825,0.239197,0.0896427,0.506798,0.839854,0.41587,0.281781,0.199719,0.21739,0.233274,0.920642,0.04952,0.466131,0.487894,0.933328,0.10903,0.322711,0.871393,0.237469,0.239923,0.539991,0.909494,0.241087,0.772459,0.297908,0.322511,0.599491,0.559185,0.923694,0.30444,0.400371,0.3609,0.352555,0.305866,0.0988209,0.816021,0.0643039,0.851518,0.647504,0.841549,0.630118,0.175941,0.635747,0.896107,0.509358,0.499675,0.518057,0.360142,0.377276,0.779113,0.572056,0.260866,0.272221,0.12468,0.655612,0.329792,0.563979,0.907451,0.639293,0.133677,0.0912811,0.167368,0.826621,0.103874,0.301169,0.812858,0.00301844,0.200222,0.425262,0.433694,0.0141079,0.262559,0.264125,0.0439843,0.291812,0.866106,0.750828,0.626344,0.219327,0.578433,0.335608,0.897428,0.493889,0.0033325,0.710438,0.125542,0.873544,0.36304,0.0941438,0.405678,0.0948963,0.950939,0.731634,0.672842,0.659137,0.0350344,0.077413,0.279814,0.137853,0.908303,0.898009,0.152335,0.507795,0.358572,0.812827,0.454141,0.162831,0.762475,0.87719,0.80317,0.483344,0.46787,0.974482,0.352096,0.0985479,0.639114,0.149173,0.824031,0.359102,0.945285,0.994083,0.872521,0.997137,0.312679,0.0629295,0.312365,0.71523,0.958382,0.332873,0.030755,0.381983,0.452361,0.549269,0.175907,0.725071,0.781999,0.198622,0.504127,0.60902,0.099415,0.417293,0.662767,0.183903,0.35823,0.149171,0.0467814,0.174627,0.829292,0.685542,0.592184,0.368055,0.0433145,0.888447,0.38229,0.0426466,0.670856,0.962616,0.787065,0.485479,0.125775,0.890634,0.684826,0.54317,0.804934,0.751982,0.319668,0.334157,0.760249,0.714012,0.730235,0.784317,0.205629,0.132775,0.016512,0.63549,0.339745,0.364576,0.0783819,0.889354,0.373016,0.633447,0.606058,0.917946,0.385781,0.778241,0.768473,0.853289,0.266905,0.252905,0.889359,0.455968,0.931375,0.49746,0.963327,0.235811,0.104804,0.28094,0.539261,0.249114,0.106965,0.624275,0.176624,0.354316,0.895215,0.918437,0.282636,0.223968,0.858128,0.84201,0.455793,0.445345,0.518573,0.0462735,0.289531,0.799715,0.297421,0.916787,0.119529,0.0337619,0.0505063,0.650112,0.295057,0.342906,0.839787,0.272709,0.583531,0.871068,0.330513,0.714661,0.717617,0.263714,0.685356,0.201086,0.262168,0.609759,0.976739,0.467555,0.654614,0.88687,0.431733,0.716771,0.753723,0.69859,0.265371,0.651548,0.332886,0.286471,0.146461,0.130085,0.473071,0.579198,0.769601,0.366754,0.0588656,0.961696,0.152876,0.600695,0.485757,0.970667,0.134114,0.84263,0.494718,0.430635,0.759925,0.826054,0.272453,0.531299,0.990192,0.210751,0.333204,0.635662,0.368993,0.289977,0.425718,0.189092,0.236705,0.278439,0.727039,0.0228524,0.456657,0.47844,0.753292,0.100204,0.778402,0.482778,0.050459,0.949206,0.506143,0.239553,0.239034,0.160547,0.13517,0.578652,0.49077,0.0179571,0.525333,0.389595,0.122349,0.955077,0.484009,0.263764,0.455685,0.909807,0.981259,0.825836,0.565638,0.510761,0.294302,0.645608,0.138508,0.490323,0.131805,0.964109,0.840063,0.61818,0.573491,0.164219,0.0624854,0.419956,0.738512,0.554414,0.912864,0.592718,0.575284,0.793706,0.946741,0.649746,0.892038,0.119407,0.0557519,0.319808,0.804958,0.373152,0.656077,0.321124,0.283732,0.424586,0.477287,0.329077,0.164863,0.568849,0.318387,0.0194799,0.282439,0.310007,0.552137,0.251131,0.901943,0.705202,0.21022,0.371587,0.959534,0.572128,0.336501,0.111102,0.417829,0.711454,0.223581,0.0803445,0.630632,0.207488,0.12808,0.199239,0.907441,0.473002,0.711138,0.962757,0.767924,0.576368,0.811573,0.579292,0.988615,0.762305,0.304653,0.388312,0.924253,0.761066,0.329426,0.221948,0.237173,0.146154,0.610224,0.923546,0.951252,0.143723,0.428068,0.858875,0.0600361,0.0578986,0.787106,0.309388,0.350233,0.40604,0.753066,0.931538,0.358786,0.366772,0.675718,0.357064,0.850088,0.882611,0.877526,0.830243,0.217138,0.651072,0.808931,0.948865,0.560832,0.703539,0.737502,0.47236,0.625048,0.960729,0.28313,0.509144,0.415922,0.678024,0.782296,0.6579,0.956015,0.943018,0.950066,0.19177,0.880613,0.750262,0.498345,0.254532,0.755814,0.664109,0.953249,0.885434,0.899205,0.186004,0.895415,0.272546,0.366543,0.299875,0.474027,0.991121,0.244388,0.198318,0.544732,0.859464,0.46183,0.413795,0.589501,0.74654,0.870347,0.98773,0.240479,0.51421,0.933409,0.785467,0.639987,0.0210768,0.484655,0.562681,0.0311382,0.229993,0.805485,0.669012,0.984542,0.205002,0.766349,0.513891,0.104841,0.421971,0.572231,0.28305,0.77531,0.545407,0.0522603,0.751752,0.865602,0.318068,0.171739,0.816653,0.181152,0.332272,0.682587,0.640864,0.852017,0.492325,0.290207,0.740461,0.618541,0.737634,0.453461,0.225965,0.994763,0.6585,0.287717,0.769578,0.238214,0.959296,0.442605,0.418861,0.0188984,0.0271295,0.20385,0.271435,0.281408,0.451574,0.273299,0.807153,0.376308,0.170236,0.693395,0.360955,0.501906,0.697252,0.941056,0.502252,0.938409,0.500136,0.734071,0.354933,0.420364,0.955394,0.529667,0.0920826,0.917666,0.975828,0.397113,0.164278,0.763168,0.556718,0.047752,0.593196,0.109934,0.0686752,0.497431,0.237493,0.74708,0.422972,0.0211562,0.659158,0.196254,0.976193,0.374355,0.319605,0.833424,0.475222,0.00656897,0.89149,0.320686,0.359788,0.455245,0.0945969,0.371633,0.481287,0.494778,0.472556,0.296824,0.388442,0.536474,0.200595,0.586357,0.660101,0.55398,0.968855,0.141623,0.246522,0.361416,0.185592,0.203266,0.677537,0.74072,0.878888,0.240548,0.540445,0.739629,0.974776,0.971618,0.0313835,0.427353,0.0719039,0.167358,0.551146,0.859171,0.0844923,0.0143514,0.429656,0.502938,0.580673,0.727183,0.883661,0.536902,0.704663,0.239884,0.00663978,0.270608,0.279727,0.680282,0.957524,0.255376,0.187941,0.650241,0.696431,0.787925,0.178494,0.697606,0.209392,0.428872,0.940332,0.780059,0.707734,0.457182,0.423231,0.234443,0.539887,0.977404,0.511064,0.710055,0.216188,0.813829,0.156513,0.655194,0.915779,0.470836,0.798562,0.148814,0.656283,0.13215,0.0276425,0.666869,0.0239481,0.731664,0.500103,0.635408,0.936145,0.567937,0.795271,0.95817,0.735719,0.304905,0.650472,0.699207,0.123542,0.963394,0.630461,0.534688,0.371988,0.499144,0.508098,0.327748,0.14536,0.536715,0.390969,0.979172,0.9558,0.784008,0.383733,0.204951,0.165056,0.573043,0.187107,0.550773,0.814486,0.000560164,0.203054,0.912699,0.549738,0.587329,0.0361692,0.304347,0.818291,0.465818,0.73343,0.848484,0.373371,0.162909,0.797561,0.243295,0.233632,0.965277,0.341307,0.0740542,0.18354,0.707857,0.106667,0.656839,0.344973,|0.409284,0.927296,0.483941,0.566472,0.475498,0.679665,0.0359519,0.0160346,0.754026,0.309888,0.359408,0.712491,0.88936,0.702019,0.0553982,0.272249,0.229094,0.926107,0.262773,0.651424,0.21952,0.128335,0.460513,0.665894,0.648947,0.0218068,0.982925,0.378827,0.54138,0.632076,0.755599,0.906684,0.390236,0.243552,0.175364,0.731699,0.748457,0.742311,0.0374582,0.897327,0.532896,0.0390771,0.763273,0.986508,0.490111,0.451679,0.632126,0.983038,0.738945,0.146665,0.248658,0.553225,0.161008,0.298014,0.376873,0.127449,0.00497073,0.889651,0.277269,0.255505,0.0858453,0.614381,0.706697,0.253054,0.0728213,0.826881,0.165546,0.817232,0.560788,0.996637,0.416421,0.391541,0.104874,0.123552,0.108401,0.520083,0.454494,0.508604,0.20937,0.784507,0.0243754,0.907131,0.534392,0.479292,0.0444251,0.347532,0.174592,0.118418,0.777453,0.187869,0.790449,0.217866,0.40582,0.554477,0.192577,0.713887,0.351872,0.696726,0.343586,0.154473,0.781901,0.54592,0.0362879,0.977646,0.112589,0.920763,0.41946,0.597841,0.757738,0.875487,0.654395,0.25058,0.47352,0.388846,0.967684,0.259515,0.340812,0.691355,0.174746,0.584519,0.808447,0.914346,0.846486,0.71773,0.125161,0.599264,0.965621,0.966896,0.554766,0.810809,0.819383,0.898599,0.136038,0.927695,0.127482,0.0829024,0.275186,0.43866,0.5327,0.477046,0.318274,0.964158,0.415188,0.172626,0.949724,0.279279,0.50967,0.829017,0.0938168,0.0444293,0.0472808,0.631859,0.732771,0.665737,0.528427,0.0909076,0.522347,0.29407,0.366047,0.7613,0.144943,0.853368,0.581832,0.144017,0.917629,0.874925,0.719433,0.763176,0.087522,0.941631,0.988831,0.0410784,0.767782,0.845432,0.0996425,0.540092,0.705609,0.125934,0.608662,0.849345,0.10139,0.954684,0.346278,0.86607,0.323298,0.910819,0.845741,0.707431,0.900311,0.105485,0.467366,0.221326,0.722624,0.451828,0.968477,0.0449785,0.301978,0.913893,0.48719,0.688642,0.324936,0.0272753,0.92788,0.800502,0.830193,0.0584689,0.206201,0.18229,0.955992,0.712725,0.60853,0.0560375,0.0657609,0.749235,0.411031,0.947582,0.69056,0.0093509,0.382359,0.183937,0.386988,0.501385,0.55811,0.550675,0.146273,0.572092,0.880112,0.795909,0.65968,0.754058,0.533344,0.0950252,0.96666,0.0805582,0.22714,0.769247,0.520018,0.740531,0.0854278,0.243172,0.359232,0.00265992,0.972609,0.940311,0.686942,0.990533,0.417294,0.530327,0.0780144,0.269122,0.990443,0.800259,0.738825,0.0674745,0.443913,0.82204,0.81573,0.896315,0.182941,0.816706,0.759124,0.295381,0.987031,0.408218,0.275168,0.829916,0.99133,0.759313,0.560227,0.384322,0.170149,0.010735,0.83458,0.445203,0.00804156,0.837946,0.352935,0.154803,0.180432,0.496241,0.688865,0.811892,0.208408,0.0829355,0.973664,0.780687,0.341915,0.51761,0.276825,0.399686,0.866425,0.574675,0.262047,0.292838,0.476782,0.655275,0.840431,0.321198,0.938482,0.407046,0.336988,0.579616,0.256256,0.433094,0.854643,0.540009,0.299641,0.314091,0.637742,0.250013,0.497277,0.0531664,0.703925,0.436957,0.914122,0.814315,0.365595,0.336976,0.143695,0.696962,0.183163,0.207605,0.43583,0.444654,0.895977,0.643076,0.480038,0.261356,0.555654,0.465338,0.28734,0.780245,0.845471,0.134556,0.839539,0.101148,0.678626,0.543515,0.440379,0.457214,0.506646,0.978801,0.222335,0.505393,0.155536,0.505292,0.0626267,0.952145,0.504502,0.61267,0.932249,0.629012,0.478862,0.282135,0.592478,0.91449,0.366312,0.984719,0.532017,0.675869,0.447159,0.577695,0.817459,0.417126,0.0799681,0.28924,0.328113,0.888022,0.467573,0.541211,0.202628,0.437845,0.742588,0.439331,0.764786,0.0494244,0.45211,0.410402,0.483305,0.317844,0.39665,0.516794,0.142172,0.895115,0.552624,0.863123,0.373415,0.0250657,0.738282,0.671436,0.810788,0.210134,0.182249,0.780133,0.783831,0.905956,0.0784054,0.99278,0.628929,0.489092,0.688082,0.290724,0.696756,0.509814,0.358822,0.455402,0.443659,0.585253,0.410657,0.833816,0.754322,0.663544,0.748363,0.511893,0.347932,0.484935,0.110947,0.554508,0.838392,0.0495102,0.39232,0.117444,0.14726,0.959186,0.421264,0.985142,0.193823,0.219618,0.12846,0.61028,0.0701271,0.962214,0.647027,0.558644,0.649972,0.363914,0.667112,0.461117,0.863955,0.417712,0.479603,0.0964349,0.923309,0.307476,0.750092,0.0882826,0.896361,0.633057,0.236356,0.0624288,0.93877,0.416806,0.794825,0.324852,0.289476,0.724872,0.0453421,0.395495,0.120078,0.860085,0.619798,0.763303,0.442587,0.49956,0.28282,0.888604,0.243144,0.409066,0.968767,0.521964,0.826641,0.120895,0.171822,0.796552,0.984558,0.337562,0.41309,0.872009,0.145971,0.00896239,0.702784,0.937447,0.0146824,0.569379,0.589661,0.744138,0.54698,0.378786,0.565412,0.415198,0.8141,0.305358,0.776444,0.663248,0.406626,0.451136,0.888235,0.878991,0.984075,0.794386,0.190808,0.982138,0.356538,0.965529,0.0467184,0.436695,0.00090915,0.196613,0.740446,0.285553,0.273761,0.591752,0.923085,0.0253642,0.681128,0.317197,0.266395,0.137116,0.325323,0.0409873,0.391726,0.896994,0.084501,0.949041,0.0130598,0.0425135,0.48114,0.232716,0.406627,0.479272,0.251921,0.310972,0.538698,0.578259,0.449577,0.17627,0.892522,0.403704,0.328782,0.230278,0.710263,0.33293,0.979717,0.381735,0.618661,0.054608,0.0895908,0.736481,0.958483,0.563662,0.563288,0.778375,0.333608,0.395526,0.284637,0.337315,0.759548,0.0553866,0.492794,0.397801,0.272246,0.556942,0.39218,0.926885,0.587781,0.991947,0.988929,0.0308622,0.0231612,0.834258,0.684492,0.0636883,0.222584,0.607011,0.489534,0.684993,0.741795,0.89438,0.254681,0.296069,0.320012,0.130899,0.523906,0.794632,0.7899,0.394255,0.472552,0.535634,0.711902,0.811602,0.436767,0.367085,0.167442,0.303144,0.0446018,0.730681,0.444911,0.980813,0.831356,0.856719,0.300144,0.981655,0.153244,0.769768,0.767295,0.787003,0.480249,0.127062,0.392396,0.738594,0.399191,0.726288,0.341492,0.120868,0.877962,0.0740373,0.779145,0.00443196,0.628842,0.291918,0.682808,0.997907,0.305496,0.74453,0.169424,0.911866,0.409171,0.335063,0.654662,0.759447,0.636513,0.919999,0.369929,0.308238,0.188018,0.322492,0.0779914,0.563709,0.12402,0.0901113,0.822638,0.935888,0.797033,0.410503,0.672197,0.305045,0.539404,0.616734,0.732267,0.627276,0.0142724,0.0790343,0.804037,0.609379,0.0261352,0.0691763,0.406763,0.503472,0.301086,0.595397,0.169095,0.645584,0.450035,0.586496,0.379536,0.0472078,0.0069108,0.987957,0.722572,0.786796,0.524708,0.510774,0.0535384,0.352987,0.29726,0.918157,0.66625,0.142382,0.105385,0.171977,0.845565,0.479428,0.602153,0.806278,0.812112,0.501497,0.876678,0.35634,0.974144,0.536727,0.413862,0.0563568,0.600671,0.578922,0.996045,0.678804,0.91792,0.251215,0.463523,0.389681,0.704075,0.704488,0.130691,0.998489,0.940147,0.332602,0.911308,0.722709,0.328101,0.696547,0.731046,0.287149,0.283714,0.717726,0.872747,0.0995079,0.552562,0.319457,0.0810124,0.408115,0.321254,0.237346,0.216015,0.220652,0.271918,0.275995,0.0198818,0.377427,0.9726,0.90342,0.742185,0.962745,0.601738,0.633479,0.921563,0.322684,0.612146,0.362898,0.994196,0.272151,0.89126,0.562039,0.274629,0.192583,0.658175,0.132073,0.0696705,0.22228,0.735409,0.330777,0.128645,0.697726,0.361933,0.247188,0.421859,0.750826,0.202156,0.341663,0.710766,0.500469,0.268979,0.531589,0.609518,0.558874,0.764213,0.914797,0.00666076,0.625565,0.29938,0.807496,0.342943,0.541821,0.22056,0.507355,0.549629,0.113597,0.124182,0.340612,0.771016,0.962768,0.269518,0.891543,0.00189525,0.304935,0.389837,0.305742,0.476772,0.321835,0.520165,0.840788,0.280716,0.973948,0.516002,0.245524,0.0975904,0.0157521,0.648345,0.147791,0.691896,0.348521,0.735772,0.98604,0.30602,0.0460651,0.0931477,0.819556,0.335592,0.875248,0.299293,0.124663,0.429892,0.671123,0.18541,0.141774,0.428976,0.71517,0.283479,0.579787,0.248303,0.28861,0.0453944,0.840874,0.361486,0.686906,0.0767365,0.919343,0.24632,0.182151,0.249101,0.0216569,0.282539,0.831169,0.995966,0.70745,0.330979,0.465664,0.105433,0.520085,0.252108,0.224711,0.548294,0.389564,0.473711,0.951576,0.278262,0.686846,0.53396,0.645462,0.0911903,0.577081,0.498391,0.562614,0.126245,0.453324,0.130232,0.135056,0.540394,0.101593,0.410163,0.141117,0.225056,0.632262,0.549858,0.241069,0.491817,0.510435,0.167874,0.0644473,0.733414,0.440806,0.482217,0.292527,0.514287,0.149238,0.487457,0.469114,0.930978,0.407654,0.334795,0.160166,0.280969,0.958453,0.0476167,0.141794,0.0815004,0.295874,0.474113,0.885819,0.72183,0.928441,0.478465,0.309445,0.673108,0.43358,0.155276,0.178307,0.234972,0.00612503,0.645198,0.374693,0.812089,0.217549,0.545648,0.802202,0.777578,0.669444,0.127871,0.169722,0.821962,0.713366,0.594361,0.675887,0.731982,0.887124,0.732448,0.0850032,0.430576,0.618328,0.594137,0.859345,0.13376,0.836872,0.728239,0.681561,0.491353,0.662301,0.862866,0.00666976,0.124095,0.109615,0.240266,0.57037,0.602627,0.438212,0.770118,0.355614,0.816504,0.453274,0.247873,0.994108,0.122636,0.104251,0.710091,0.886851,0.715387,0.362002,0.705896,0.442643,0.605201,0.0978485,0.732565,0.568199,0.718389,0.40557,0.570091,0.837226,0.73183,0.913424,0.00970864,0.354857,0.601131,0.308144,0.0969671,0.387065,0.00967687,0.9008,0.772175,0.941639,0.491901,0.462244,0.240203,0.429427,0.0194104,0.0113289,0.0590294,0.215312,0.014509,0.11568,0.293306,0.514583,0.411125,0.00752437,0.0249497,0.684939,0.0441052,0.162619,0.201624,0.446202,0.60946,0.566281,0.854908,0.32971,0.779994,0.111828,0.442105,0.207916,0.304159,0.773073,0.295752,0.38333,|0.22841,0.407702,0.247776,0.609911,0.933036,0.603836,0.0345326,0.220271,0.464506,0.72841,0.9308,0.61664,0.958205,0.00493729,0.245538,0.66207,0.852368,0.3305,0.846681,0.875452,0.689531,0.73323,0.508906,0.701449,0.400749,0.437445,0.84622,0.404074,0.991117,0.949028,0.420974,0.412044,0.676243,0.959379,0.869417,0.135868,0.293413,0.884117,0.604338,0.626043,0.931179,0.0655751,0.429561,0.772802,0.926535,0.886003,0.555247,0.627355,0.551702,0.756445,0.0479903,0.0910754,0.806279,0.538377,0.914341,0.806336,0.468101,0.642649,0.87631,0.722222,0.603105,0.468236,0.841309,0.987509,0.481828,0.735608,0.64886,0.137351,0.992495,0.283114,0.817937,0.0165185,0.08321,0.14401,0.982545,0.98837,0.881649,0.701962,0.839664,0.839856,0.701934,0.63166,0.494645,0.735979,0.0210498,0.831628,0.633379,0.215031,0.10087,0.88702,0.703606,0.318542,0.642028,0.26385,0.00723881,0.919942,0.251417,0.931271,0.339198,0.310453,0.83187,0.20063,0.616605,0.817959,0.591868,0.412689,0.820598,0.654833,0.171249,0.205085,0.0881316,0.535443,0.219379,0.698389,0.554607,0.926782,0.815521,0.0743429,0.67858,0.72045,0.245143,0.17156,0.937271,0.382855,0.978875,0.438259,0.972638,0.523506,0.622451,0.198721,0.612323,0.094071,0.843848,0.308941,0.475016,0.190375,3.46899e-05,0.290671,0.495798,0.148968,0.0338755,0.133415,0.0829762,0.806939,0.80634,0.0624371,0.0700061,0.278214,0.558192,0.84353,0.583481,0.67189,0.92283,0.485836,0.63,0.307242,0.785978,0.689188,0.467069,0.481062,0.763375,0.862002,0.237163,0.406386,0.848314,0.642701,0.40309,0.585116,0.848733,0.482421,0.968685,0.271878,0.0840207,0.96569,0.935927,0.654559,0.890877,0.0308335,0.0852546,0.133688,0.0437865,0.329316,0.700878,0.171706,0.775091,0.951611,0.293329,0.12315,0.776805,0.0055877,0.0666363,0.169751,0.223626,0.684329,0.164097,0.424048,0.770342,0.0985287,0.95186,0.368896,0.388342,0.0209789,0.58112,0.61642,0.91227,0.583932,0.0722619,0.512384,0.808998,0.969572,0.650903,0.235339,0.787211,0.397844,0.500621,0.856215,0.735301,0.959496,0.788217,0.213513,0.68837,0.781223,0.270579,0.168088,0.0583764,0.264025,0.416197,0.840149,0.637665,0.0107704,0.718188,0.797039,0.691656,0.227654,0.465788,0.762509,0.719557,0.99555,0.827321,0.607343,0.905404,0.610314,0.491499,0.291254,0.403222,0.231052,0.289805,0.398228,0.948713,0.0190779,0.337307,0.429916,0.930579,0.197181,0.383765,0.682612,0.682995,0.133528,0.760046,0.427231,0.483418,0.934587,0.0282077,0.218467,0.220262,0.140479,0.752603,0.190304,0.465965,0.147758,0.907018,0.754102,0.558981,0.688447,0.227134,0.228359,0.0378887,0.77539,0.863575,0.303528,0.253878,0.228961,0.626335,0.443137,0.895285,0.79578,0.936153,0.419468,0.474553,0.558643,0.414261,0.366835,0.958035,0.674918,0.927704,0.774953,0.603775,0.789708,0.992732,0.74713,0.671828,0.0171718,0.13021,0.401816,0.842557,0.589258,0.811232,0.660685,0.795329,0.0380968,0.0492758,0.0370969,0.12543,0.483175,0.964074,0.61199,0.556169,0.878456,0.595334,0.419489,0.405591,0.22829,0.607192,0.856281,0.979947,0.346796,0.856008,0.547926,0.0141809,0.188322,0.289944,0.903573,0.09778,0.501988,0.120183,0.987732,0.130883,0.972637,0.313911,0.50888,0.965425,0.908385,0.861897,0.705331,0.515448,0.284022,0.405779,0.744939,0.658539,0.959043,0.982294,0.389418,0.643352,0.164054,0.419147,0.781712,0.672303,0.991128,0.84867,0.989801,0.366816,0.743767,0.0369105,0.742573,0.853438,0.223985,0.64546,0.729483,0.25393,0.0775412,0.86816,0.797818,0.8571,0.889166,0.298522,0.85714,0.671563,0.215147,0.994525,0.840494,0.311204,0.193099,0.335156,0.950892,0.862452,0.986982,0.70868,0.637963,0.932724,0.683608,0.781349,0.509444,0.254343,0.681192,0.943596,0.417861,0.187596,0.860102,0.767092,0.605077,0.846186,0.620856,0.205598,0.715439,0.630072,0.492615,0.469281,0.232064,0.866655,0.348595,0.240868,0.112977,0.575602,0.13188,0.845286,0.195848,0.425545,0.960271,0.919075,0.239487,0.551887,0.78639,0.19164,0.0533182,0.276655,0.883467,0.411646,0.280336,0.190449,0.797794,0.872638,0.923511,0.711513,0.251976,0.338872,0.0242814,0.856171,0.546215,0.873753,0.479389,0.777183,0.642244,0.785073,0.839376,0.797819,0.0871633,0.494548,0.0180161,0.05655,0.315558,0.0814323,0.94551,0.182522,0.726098,0.268414,0.212472,0.364799,0.433413,0.819025,0.3756,0.649076,0.174292,0.873489,0.362441,0.291668,0.263071,0.0562967,0.321261,0.525487,0.50529,0.0889733,0.918303,0.292659,0.871052,0.0631925,0.690298,0.378273,0.9447,0.411916,0.487506,0.937171,0.986234,0.0990527,0.774223,0.699281,0.9855,0.49214,0.275054,0.377428,0.319652,0.909993,0.446904,0.152519,0.524107,0.914499,0.919407,0.0337542,0.408214,0.504294,0.766269,0.333058,0.348743,0.617843,0.968113,0.138145,0.869063,0.518929,0.547036,0.272867,0.587369,0.500929,0.11129,0.69002,0.706133,0.910965,0.572856,0.557826,0.0103526,0.180594,0.162114,0.745612,0.460972,0.832473,0.861862,0.746404,0.948159,0.413298,0.732733,0.86964,0.565337,0.0920889,0.679797,0.243177,0.0887984,0.440613,0.15658,0.343905,0.059823,0.542479,0.98871,0.252078,0.992821,0.607811,0.341711,0.346341,0.34311,0.123339,0.629395,0.769847,0.735906,0.158929,0.459626,0.493809,0.209839,0.0637846,0.331405,0.0667686,0.525322,0.919105,0.32439,0.131646,0.749164,0.36936,0.0920721,0.370077,0.215599,0.479027,0.534032,0.251909,0.193885,0.492596,0.390993,0.193222,0.645937,0.54912,0.255503,0.777662,0.764689,0.369382,0.404181,0.347348,0.869664,0.523113,0.609611,0.649181,0.577686,0.366396,0.0770122,0.0971565,0.264498,0.899689,0.431494,0.0435697,0.864204,0.860183,0.146071,0.311222,0.929472,0.899618,0.479129,0.596791,0.777405,0.985398,0.0447643,0.668304,0.727421,0.990613,0.174478,0.081059,0.333042,0.0678906,0.170641,0.957408,0.416812,0.834396,0.243207,0.924632,0.287844,0.511652,0.619381,0.323945,0.651414,0.24854,0.374021,0.881886,0.819793,0.0995363,0.622806,0.597675,0.535568,0.964711,0.195495,0.907786,0.661719,0.49353,0.574911,0.654191,0.263248,0.738049,0.670158,0.38814,0.804883,0.335561,0.419177,0.922502,0.0673363,0.601817,0.647832,0.483269,0.309311,0.204498,0.493466,0.126475,0.759185,0.414944,0.600361,0.380284,0.936901,0.25603,0.53827,0.0433542,0.982905,0.10085,0.0372254,0.366688,0.265958,0.404963,0.135346,0.558875,0.254101,0.964666,0.506913,0.00794488,0.800636,0.913197,0.396878,0.331573,0.737031,0.927822,0.766644,0.661727,0.824442,0.216205,0.333036,0.761382,0.956303,0.0695531,0.902649,0.176788,0.967181,0.906007,0.85444,0.3192,0.788707,0.0269457,0.93544,0.63069,0.723807,0.384876,0.419261,0.193801,0.796175,0.279326,0.538193,0.90672,0.571592,0.0334268,0.725716,0.969154,0.629905,0.324194,0.346287,0.837743,0.567426,0.0451531,0.611953,0.423275,0.769894,0.936614,0.149997,0.807916,0.764211,0.947468,0.0761203,0.726608,0.939549,0.0255286,0.430028,0.465498,0.639329,0.928499,0.618653,0.909471,0.105856,0.67793,0.573101,0.745966,0.584774,0.843011,0.774031,0.00988746,0.414342,0.554972,0.622572,0.78703,0.49988,0.16124,0.744865,0.368607,0.448283,0.723736,0.395923,0.733415,0.0820689,0.208945,0.834599,0.410659,0.977591,0.939015,0.763732,0.20009,0.66539,0.268258,0.417339,0.322179,0.13753,0.0609574,0.31593,0.85496,0.34957,0.588127,0.680117,0.674853,0.582444,0.4029,0.483135,0.847298,0.409022,0.826862,0.644401,0.0504023,0.668428,0.157522,0.5833,0.527851,0.820593,0.654323,0.300919,0.32191,0.540443,0.428785,0.443131,0.366359,0.293018,0.784975,0.545776,0.480715,0.527396,0.346344,0.476568,0.134078,0.723021,0.287872,0.32824,0.661735,0.849634,0.839001,0.90644,0.366948,0.56422,0.328543,0.279877,0.909502,0.680806,0.239059,0.198802,0.669877,0.384088,0.30469,0.608306,0.391239,0.363506,0.591874,0.716546,0.719001,0.494497,0.231766,0.622818,0.525778,0.646464,0.374715,0.822987,0.244807,0.393086,0.948638,0.278279,0.422089,0.0127112,0.682759,0.497558,0.654564,0.160123,0.394347,0.117664,0.219344,0.705712,0.144153,0.0708197,0.775702,0.359774,0.83026,0.384426,0.945075,0.903155,0.0631804,0.046635,0.392116,0.762337,0.656437,0.3168,0.104324,0.296158,0.0926478,0.348327,0.553535,0.490967,0.420363,0.556376,0.53406,0.858374,0.071474,0.868478,0.43836,0.958336,0.173767,0.355518,0.786405,0.686032,0.818261,0.1907,0.753866,0.991636,0.106636,0.745676,0.956449,0.483233,0.668124,0.519634,0.0179859,0.392739,0.675575,0.284651,0.778781,0.706001,0.507129,0.0114133,0.3318,0.457688,0.970075,0.39873,0.810108,0.91173,0.381665,0.0505822,0.0374668,0.915361,0.880677,0.612028,0.653081,0.0989968,0.31263,0.550704,0.958983,0.236307,0.30624,0.453941,0.611667,0.263826,0.359354,0.45629,0.505949,0.87949,0.74565,0.293415,0.0126821,0.398175,0.179758,0.980283,0.57545,0.837788,0.744734,0.0165601,0.0402194,0.239932,0.726643,0.242984,0.77093,0.501943,0.414664,0.0473712,0.73524,0.810906,0.309792,0.393142,0.101663,0.190027,0.653496,0.860144,0.933581,0.174165,0.566997,0.12398,0.572815,0.70705,0.324342,0.839813,0.895842,0.491936,0.72893,0.330357,0.961977,0.0444962,0.823619,0.701258,0.0212591,0.908735,0.370785,0.808718,0.524189,0.333339,0.856864,0.781451,0.921698,0.279897,0.289794,0.724099,0.867305,0.0658044,0.915645,0.265279,0.0117182,0.672518,0.296261,0.997624,0.745988,0.787848,0.513061,0.111706,0.211364,0.981423,0.830268,0.873296,0.219459,0.747002,0.223433,0.199941,0.747409,0.0755153,0.768791,0.384479,|0.244196,0.6495,0.40799,0.0551221,0.554549,0.899196,0.181025,0.211325,0.0864318,0.972159,0.0454659,0.340182,0.0536996,0.798794,0.846099,0.401601,0.38424,0.117652,0.199596,0.125107,0.490287,0.922902,0.756763,0.638584,0.275547,0.257615,0.577039,0.336326,0.338624,0.577006,0.115608,0.486556,0.206371,0.671321,0.130159,0.390853,0.906046,0.0388307,0.932075,0.384837,0.237703,0.14601,0.712586,0.323075,0.4552,0.536009,0.987245,0.581531,0.939748,0.491063,0.815757,0.736047,0.902557,0.42934,0.532553,0.626871,0.874754,0.989385,0.995586,0.129234,0.768242,0.494054,0.265567,0.203588,0.0989097,0.0876734,0.642256,0.737237,0.581777,0.93946,0.548011,0.0842535,0.0969962,0.218503,0.823947,0.066614,0.602505,0.782739,0.917019,0.703125,0.86687,0.889672,0.117197,0.503509,0.422278,0.0461977,0.983278,0.847436,0.432683,0.679584,0.946538,0.171789,0.651168,0.0810875,0.820687,0.911072,0.82009,0.565392,0.837456,0.641955,0.987102,0.637442,0.843089,0.121,0.407012,0.9803,0.114384,0.347097,0.93859,0.492637,0.262433,0.603262,0.907681,0.0148054,0.859164,0.0104511,0.72996,0.664087,0.438715,0.881727,0.179652,0.865243,0.0859457,0.12316,0.374087,0.542049,0.145531,0.638255,0.95746,0.831727,0.823595,0.8811,0.804223,0.668066,0.913014,0.715453,0.84162,0.793347,0.152696,0.104859,0.837485,0.937546,0.52785,0.27375,0.839348,0.916932,0.595935,0.735512,0.975809,0.868238,0.806316,0.781798,0.360797,0.423631,0.785413,4.59552e-05,0.615139,0.932088,0.258799,0.295332,0.643626,0.176819,0.549502,0.144336,0.193174,0.516106,0.862328,0.0494316,0.329201,0.95984,0.858631,0.459516,0.921024,0.198831,0.0951644,0.481857,0.953243,0.0853581,0.0249704,0.485373,0.776082,0.257098,0.527272,0.678888,0.756995,0.128318,0.912362,0.822436,0.0884488,0.25534,0.165415,0.160085,0.184897,0.262298,0.607873,0.4358,0.180008,0.929891,0.978175,0.190525,0.0302032,0.625076,0.472233,0.0756212,0.717622,0.695487,0.573407,0.945966,0.439314,0.272209,0.505432,0.334589,0.839195,0.648194,0.20256,0.777348,0.22721,0.25063,0.700472,0.943674,0.141339,0.832459,0.417767,0.295438,0.945948,0.426645,0.869429,0.467161,0.251959,0.658826,0.151107,0.74972,0.342718,0.295297,0.560379,0.697779,0.666502,0.255639,0.185196,0.526324,0.247213,0.555967,0.368716,0.804363,0.127221,0.784804,0.657471,0.489832,0.83361,0.721583,0.0474256,0.537632,0.413136,0.491202,0.8318,0.512597,0.00900388,0.211852,0.831311,0.308219,0.40659,0.89136,0.38401,0.302388,0.839122,0.70596,0.964983,0.649962,0.0494291,0.833428,0.183008,0.404081,0.868295,0.27222,0.537744,0.248665,0.990908,0.925439,0.307942,0.428424,0.692028,0.596226,0.902023,0.459127,0.239619,0.959606,0.552815,0.574804,0.976095,0.916965,0.620488,0.185092,0.959631,0.738064,0.400113,0.138025,0.382045,0.43748,0.374339,0.400601,0.20103,0.359442,0.959891,0.741296,0.553481,0.215556,0.835467,0.341507,0.307598,0.282032,0.654535,0.703245,0.0655682,0.383794,0.120489,0.388374,0.318198,0.922062,0.443627,0.819718,0.517211,0.782891,0.416253,0.976595,0.162017,0.645675,0.104892,0.653108,0.310207,0.314962,0.0451471,0.621535,0.959883,0.163901,0.503182,0.270083,0.641335,0.960263,0.233016,0.973664,0.994817,0.559123,0.178947,0.251545,0.0621113,0.740806,0.463938,0.606115,0.938604,0.483741,0.145667,0.638435,0.719771,0.85505,0.447935,0.26791,0.882712,0.66115,0.0207207,0.318744,0.723466,0.670991,0.374694,0.905142,0.897995,0.702497,0.985724,0.659761,0.593979,0.812047,0.497634,0.233154,0.8957,0.307651,0.474058,0.63823,0.585523,0.122891,0.415324,0.102877,0.692824,0.942597,0.472995,0.104579,0.788305,0.268296,0.95561,0.814026,0.390258,0.0657727,0.499054,0.78976,0.757602,0.643159,0.0161986,0.906545,0.152148,0.612351,0.905773,0.481242,0.046248,0.139821,0.554292,0.135935,0.994266,0.988463,0.337762,0.220616,0.774044,0.93747,0.279009,0.540401,0.922775,0.873087,0.61014,0.531032,0.307485,0.902193,0.256379,0.78828,0.713321,0.636644,0.899843,0.983079,0.0273699,0.883069,0.603645,0.495977,0.30237,0.37707,0.96834,0.994273,0.778746,0.0874892,0.764173,0.498798,0.403831,0.0713235,0.438876,0.926249,0.828582,0.357887,0.713425,0.997699,0.210925,0.350349,0.19799,0.131229,0.368963,0.158934,0.337921,0.533933,0.642876,0.102987,0.0708842,0.673954,0.694848,0.672015,0.800038,0.560486,0.684492,0.318574,0.595839,0.613005,0.86361,0.130166,0.741919,0.362053,0.509723,0.702743,0.382405,0.242899,0.321319,0.548072,0.714767,0.185149,0.0818027,0.0286784,0.574845,0.340169,0.229724,0.279816,0.245193,0.483369,0.415069,0.205944,0.374868,0.0977988,0.419134,0.593779,0.562967,0.199006,0.558256,0.829964,0.0287271,0.630661,0.425474,0.416255,0.936926,0.540691,0.982829,0.978269,0.136159,0.202103,0.721817,0.0841964,0.782571,0.24844,0.637653,0.231058,0.23008,0.489512,0.891661,0.541705,0.863424,0.33274,0.101868,0.553178,0.229561,0.424286,0.243182,0.438667,0.104013,0.309977,0.0939711,0.134786,0.998301,0.562613,0.538701,0.823091,0.242769,0.853858,0.653822,0.996062,0.880095,0.493397,0.725273,0.505195,0.0710789,0.998538,0.477664,0.793143,0.923672,0.926139,0.14117,0.40146,0.100874,0.0913499,0.247388,0.771031,0.992339,0.387062,0.690609,0.441351,0.949429,0.0499386,0.472917,0.068574,0.939814,0.254605,0.101272,0.0204934,0.137204,0.12477,0.24577,0.587335,0.838563,0.177396,0.59182,0.0915951,0.607291,0.44466,0.707789,0.741916,0.402278,0.281768,0.139384,0.194756,0.418923,0.469561,0.119814,0.779099,0.794077,0.141327,0.69016,0.833145,0.615773,0.880257,0.203907,0.440368,0.138764,0.105422,0.443703,0.601761,0.236658,0.462658,0.171821,0.468511,0.770135,0.624462,0.381897,0.573538,0.310948,4.9293e-05,0.0804369,0.399319,0.852923,0.404679,0.154171,0.928791,0.837105,0.663002,0.957889,0.164191,0.764075,0.644237,0.100243,0.804695,0.834581,0.200231,0.569405,0.497388,0.329712,0.174202,0.0809599,0.827718,0.570711,0.335558,0.898039,0.149034,0.626624,0.464932,0.772799,0.170278,0.0397415,0.821058,0.975824,0.614637,0.0272427,0.836503,0.803434,0.365818,0.378918,0.815211,0.269262,0.171042,0.241407,0.150574,0.378451,0.680634,0.538626,0.673743,0.884826,0.859097,0.284121,0.847809,0.654041,0.0703719,0.598522,0.904375,0.120076,0.888646,0.200323,0.634315,0.371,0.361398,0.374373,0.972925,0.441696,0.556666,0.0418348,0.566958,0.416405,0.826896,0.136373,0.355961,0.363553,0.827491,0.976817,0.653128,0.237158,0.141691,0.085628,0.432852,0.75898,0.187944,0.748039,0.645156,0.407775,0.148722,0.0591328,0.557503,0.958141,0.153924,0.12743,0.337726,0.453604,0.407146,0.307263,0.647076,0.131153,0.685987,0.12871,0.781669,0.740149,0.340576,0.511086,0.589992,0.4076,0.087979,0.754827,0.037686,0.874033,0.55561,0.895899,0.289454,0.484135,0.133194,0.312139,0.680451,0.313605,0.0491665,0.686805,0.563219,0.567805,0.363638,0.821291,0.662156,0.107737,0.675077,0.0447833,0.602435,0.775197,0.443691,0.231909,0.779647,0.472385,0.0427535,0.563394,0.741411,0.713387,0.241304,0.851379,0.164514,0.538346,0.0771152,0.850368,0.389994,0.606959,0.196481,0.616878,0.276245,0.471055,0.140789,0.513035,0.249686,0.13786,0.804881,0.692486,0.670663,0.304574,0.687854,0.597564,0.996891,0.796676,0.591215,0.38696,0.926971,0.125199,0.721114,0.160114,0.416176,0.0179055,0.0675685,0.721616,0.713046,0.216261,0.369623,0.110358,0.954486,0.593675,0.179722,0.559126,0.162313,0.85235,0.235832,0.300349,0.864966,0.187665,0.279707,0.850572,0.259639,0.167715,0.551964,0.921443,0.116666,0.730084,0.848352,0.390295,0.608842,0.19824,0.335212,0.516111,0.641981,0.27932,0.534981,0.888847,0.251042,0.688268,0.258667,0.767397,0.22598,0.556907,0.0974871,0.851412,0.211827,0.966411,0.370792,0.983581,0.298375,0.175994,0.164164,0.278415,0.240017,0.237741,0.26801,0.900724,0.37748,0.600985,0.898849,0.155567,0.380092,0.00996381,0.406924,0.452739,0.0307267,0.153738,0.146398,0.540392,0.0146903,0.855995,0.197958,0.270417,0.85222,0.0158209,0.00904244,0.679747,0.664161,0.141557,0.382605,0.315838,0.32776,0.0677891,0.837151,0.661437,0.071813,0.953875,0.905954,0.0772015,0.364941,0.420134,0.711838,0.676256,0.0260221,0.290983,0.697436,0.913003,0.761304,0.685109,0.934316,0.288363,0.64716,0.861089,0.312914,0.41646,0.632987,0.316623,0.860033,0.578459,0.390544,0.239402,0.586692,0.825853,0.140733,0.251679,0.44727,0.793926,0.115278,0.465921,0.14674,0.911597,0.219971,0.157859,0.81521,0.542243,0.0328354,0.294246,0.592487,0.391722,0.761964,0.803072,0.672333,0.487821,0.32779,0.971766,0.320823,0.653713,0.738702,0.858264,0.0485203,0.542005,0.306798,0.916844,0.490107,0.491608,0.936175,0.797906,0.207582,0.0150039,0.903518,0.210278,0.945109,0.392323,0.0414288,0.327703,0.768053,0.959546,0.996526,0.415894,0.73808,0.949051,0.835044,0.602374,0.15556,0.698063,0.498763,0.589101,0.837475,0.501671,0.860453,0.681234,0.230624,0.264716,0.432741,0.825978,0.664504,0.0758115,0.0964015,0.439112,0.181525,0.59361,0.209701,0.124079,0.0850109,0.29247,0.300871,0.019763,0.878881,0.553783,0.746296,0.488831,0.608765,0.15528,0.661651,0.72837,0.477702,0.897296,0.765467,0.241577,0.12864,0.307322,0.821195,0.951423,0.773249,0.772059,0.831527,0.573788,0.409862,0.326775,0.154729,0.811074,0.977699,0.675225,0.478444,0.815609,0.328914,0.515269,0.885854,0.20193,0.489975,0.475677,0.379523,0.87027,0.93235,0.796776,0.633544,0.783449,0.455354,0.0172779,0.915385,|0.330875,0.927502,0.748565,0.873919,0.394182,0.937572,0.773964,0.989256,0.84049,0.926076,0.713323,0.0571859,0.749279,0.345848,0.220971,0.595427,0.636601,0.799888,0.180929,0.345185,0.413597,0.728491,0.440047,0.903905,0.990707,0.734445,0.670082,0.349894,0.616902,0.459954,0.634197,0.62626,0.0680099,0.981126,0.570453,0.675138,0.831354,0.0402709,0.213293,0.308439,0.728863,0.540663,0.734916,0.939884,0.294181,0.679574,0.386162,0.534745,0.336671,0.733457,0.565094,0.481082,0.509214,0.6728,0.26462,0.375777,0.991094,0.928227,0.433514,0.881497,0.425233,0.349033,0.928769,0.85128,0.968786,0.782733,0.926062,0.959751,0.786566,0.556092,0.553539,0.845155,0.0366883,0.526758,0.340585,0.235809,0.986321,0.986052,0.690142,0.276252,0.786313,0.607522,0.509136,0.730043,0.106766,0.201594,0.613576,0.107987,0.296858,0.23427,0.451196,0.633645,0.141028,0.523516,0.071312,0.0133739,0.113734,0.87244,0.776358,0.640257,0.443447,0.00988448,0.436999,0.0779271,0.00316399,0.045167,0.307159,0.0994948,0.978449,0.476068,0.453255,0.719563,0.916454,0.483764,0.648054,0.0519308,0.259879,0.871649,0.759137,0.611824,0.57854,0.170296,0.522514,0.859984,0.300813,0.254607,0.717934,0.275391,0.774262,0.920162,0.0320607,0.156011,0.581778,0.87778,0.861206,0.848943,0.96746,0.557288,0.292692,0.253285,0.308327,0.610117,0.804432,0.671125,0.997591,0.0412713,0.551708,0.130052,0.262444,0.252574,0.799094,0.899799,0.139907,0.0426248,0.726225,0.254137,0.0888928,0.420554,0.428675,0.174419,0.0658764,0.240606,0.258319,0.981607,0.0271698,0.56601,0.262592,0.905577,0.704738,0.0437539,0.0813909,0.108573,0.863993,0.934258,0.708274,0.710655,0.27288,0.933905,0.352727,0.99371,0.464709,0.6617,0.772624,0.387973,0.300928,0.692287,0.766064,0.197783,0.597228,0.289504,0.917573,0.0359286,0.922301,0.324333,0.0220064,0.197691,0.827061,0.0920668,0.970581,0.595227,0.442505,0.525136,0.683113,0.825496,0.852554,0.228,0.020516,0.976595,0.914842,0.134859,0.613647,0.466913,0.849909,0.789327,0.253708,0.859243,0.230877,0.865435,0.981481,0.174114,0.778912,0.492683,0.516749,0.726703,0.0714723,0.679731,0.709014,0.986061,0.321124,0.36805,0.245244,0.854214,0.126858,0.770967,0.455623,0.899715,0.457066,0.705414,0.049139,0.981756,0.0275146,0.749126,0.46838,0.587115,0.715851,0.121067,0.160682,0.345111,0.583511,0.641351,0.342638,0.75095,0.826312,0.102182,0.141867,0.535777,0.309438,0.550738,0.681944,0.732215,0.194161,0.00914621,0.168184,0.566777,0.0829573,0.905392,0.433368,0.129356,0.90177,0.580535,0.374098,0.951127,0.430934,0.16653,0.80748,0.578507,0.0412728,0.311621,0.788234,0.162041,0.323911,0.839543,0.716271,0.468693,0.449677,0.978597,0.0760562,0.756754,0.491475,0.598251,0.979528,0.129342,0.419681,0.538503,0.208374,0.203594,0.988439,0.992156,0.66165,0.209363,0.661117,0.630236,0.611532,0.656797,0.670947,0.853633,0.226673,0.942821,0.894898,0.0213463,0.222727,0.903269,0.92381,0.392631,0.866756,0.540992,0.834552,0.716827,0.0985476,0.280085,0.36821,0.864898,0.47972,0.268636,0.757136,0.741935,0.0431409,0.173883,0.612755,0.848943,0.445484,0.697776,0.673129,0.397414,0.0955071,0.961786,0.324352,0.373902,0.341232,0.0950745,0.969621,0.488852,0.152239,0.375348,0.226364,0.897764,0.253802,0.605635,0.367498,0.735172,0.34112,0.651128,0.614928,0.0511861,0.887067,0.581702,0.327046,0.969571,0.220454,0.180811,0.786617,0.151722,0.649168,0.735692,0.103459,0.167117,0.76879,0.526194,0.624006,0.588977,0.988637,0.397809,0.239347,0.797966,0.261758,0.232871,0.256984,0.339098,0.493707,0.663288,0.158355,0.900419,0.358078,0.754583,0.183858,0.3004,0.0233039,0.561172,0.308413,0.666174,0.220966,0.826663,0.821942,0.627334,0.184325,0.411305,0.843848,0.708366,0.250995,0.587782,0.389698,0.013094,0.571204,0.52549,0.650795,0.908803,0.552814,0.323501,0.321973,0.137356,0.584236,0.263195,0.391715,0.97964,0.972485,0.0794421,0.206924,0.764861,0.569523,0.935859,0.0280154,0.037097,0.934263,0.225627,0.795639,0.125378,0.741774,0.319009,0.553242,0.0146568,0.327762,0.85015,0.318616,0.0276272,0.875831,0.657191,0.489786,0.983535,0.356035,0.968781,0.815701,0.934107,0.234213,0.302117,0.154794,0.939413,0.182189,0.65503,0.528926,0.321122,0.240993,0.481202,0.663221,0.125026,0.343245,0.643216,0.529011,0.429481,0.130932,0.312091,0.910165,0.592167,0.849522,0.427266,0.821183,0.284837,0.801967,0.217542,0.00468981,0.75191,0.43626,0.787227,0.540236,0.572706,0.120542,0.211945,0.320864,0.10324,0.443056,0.266886,0.992338,0.500268,0.270252,0.327505,0.84958,0.951781,0.741779,0.699425,0.0419193,0.832835,0.909446,0.383061,0.197374,0.508681,0.00804561,0.575041,0.952924,0.762825,0.326954,0.384345,0.803419,0.186711,0.400053,0.440341,0.254752,0.398103,0.104932,0.759116,0.271267,0.185055,0.238183,0.236638,0.134963,0.906832,0.428344,0.959392,0.569755,0.344677,0.238029,0.482634,0.196985,0.0867788,0.0696909,0.491098,0.939551,0.143459,0.65673,0.992308,0.870775,0.0435736,0.561617,0.0262422,0.481332,0.392371,0.392009,0.785057,0.79193,0.607332,0.930719,0.51202,0.253223,0.452546,0.955077,0.846512,0.455295,0.964658,0.550702,0.154063,0.919531,0.657538,0.411584,0.880453,0.160761,0.345444,0.453943,0.800334,0.415314,0.977434,0.768876,0.52428,0.946027,0.771991,0.757533,0.422235,0.83215,0.722258,0.863143,0.211478,0.507545,0.123268,0.996867,0.0281537,0.391256,0.955068,0.473521,0.919348,0.925011,0.241467,0.493926,0.450456,0.507871,0.554946,0.760458,0.0887229,0.791142,0.455108,0.35636,0.263027,0.835999,0.186679,0.240219,0.146808,0.772147,0.681819,0.189441,0.985312,0.102483,0.957673,0.470436,0.45591,0.185535,0.802401,0.530117,0.888934,0.268144,0.330444,0.304343,0.771175,0.771841,0.738173,0.844587,0.432431,0.0299922,0.730146,0.950724,0.160903,0.73619,0.439093,0.0917666,0.173794,0.0993136,0.152843,0.586239,0.765767,0.727384,0.495471,0.616618,0.961547,0.497607,0.723247,0.551946,0.885449,0.832007,0.630921,0.102294,0.214633,0.400594,0.61322,0.335109,0.945066,0.103067,0.815508,0.70066,0.252303,0.400466,0.3314,0.225644,0.50344,0.743087,0.105403,0.3649,0.267796,0.0166676,0.808392,0.0150542,0.719522,0.399868,0.445972,0.28612,0.730189,0.258561,0.427972,0.481686,0.66011,0.300396,0.326755,0.131348,0.301226,0.994251,0.248418,0.276116,0.200187,0.950131,0.352645,0.0952548,0.847516,0.642233,0.324867,0.333905,0.571553,0.784689,0.347445,0.320643,0.84722,0.05753,0.450878,0.496963,0.870242,0.54951,0.661465,0.21659,0.911538,0.641823,0.682074,0.325824,0.69748,0.902497,0.859616,0.160572,0.172544,0.323795,0.392738,0.931291,0.329267,0.825673,0.259327,0.917313,0.0425083,0.795149,0.755354,0.842392,0.275205,0.155807,0.527557,0.408113,0.169134,0.832399,0.641817,0.717444,0.596572,0.00304544,0.234853,0.746306,0.343834,0.185364,0.313778,0.92207,0.526494,0.689369,0.249076,0.762659,0.829123,0.933913,0.761669,0.664218,0.809981,0.138881,0.127947,0.92013,0.864532,0.222535,0.220591,0.322946,0.140607,0.529632,0.788921,0.754037,0.249044,0.0389748,0.207984,0.817262,0.198078,0.87417,0.374333,0.732964,0.14716,0.524869,0.612466,0.344228,0.403252,0.899966,0.389159,0.249787,0.0556017,0.842425,0.918414,0.739169,0.964021,0.908293,0.702904,0.686169,0.131055,0.265035,0.146295,0.439043,0.605595,0.600754,0.768104,0.639431,0.892259,0.604522,0.113476,0.0751356,0.209115,0.777665,0.831749,0.4091,0.269086,0.41152,0.777379,0.540873,0.0902393,0.28465,0.808634,0.700109,0.708502,0.0983732,0.807795,0.911109,0.800007,0.26696,0.866974,0.92919,0.483843,0.632543,0.702291,0.695236,0.918817,0.434053,0.153389,0.922067,0.57225,0.188598,0.563065,0.449034,0.961653,0.857863,0.356196,0.744648,0.636374,0.0907395,0.781043,0.888494,0.0539635,0.340846,0.767349,0.685884,0.920064,0.215829,0.575615,0.0233877,0.0450513,0.635165,0.569669,0.2751,0.278336,0.537443,0.55759,0.134397,0.711315,0.359045,0.906523,0.484079,0.353399,0.0783245,0.146923,0.691498,0.106793,0.0861169,0.186051,0.111879,0.180181,0.569354,0.0756325,0.988025,0.426938,0.441227,0.795012,0.408034,0.649092,0.736928,0.15829,0.277841,0.336655,0.321017,0.0571582,0.931065,0.827994,0.528438,0.694822,0.16806,0.587752,0.531176,0.604703,0.616508,0.188015,0.0397838,0.973561,0.970225,0.913476,0.134114,0.96396,0.851056,0.246614,0.668291,0.561337,0.808429,0.442085,0.373734,0.536203,0.445686,0.493111,0.306594,0.0698774,0.828556,0.714683,0.0486715,0.101692,0.744544,0.667581,0.803844,0.544196,0.59883,0.457683,0.413697,0.709977,0.220619,0.190882,0.494978,0.719269,0.911739,0.619112,0.918849,0.144805,0.479457,0.500712,0.866339,0.576358,0.485237,0.312122,0.257091,0.786306,0.965814,0.342237,0.207823,0.546943,0.913076,0.883906,0.464024,0.433339,0.245926,0.812291,0.139692,0.259619,0.562799,0.408333,0.598427,0.537282,0.891144,0.126759,0.465557,0.264626,0.936609,0.117507,0.90627,0.766386,0.141161,0.341825,0.461381,0.024441,0.814242,0.601032,0.00859982,0.0285947,0.100304,0.848876,0.286354,0.773194,0.40679,0.0962381,0.573364,0.260923,0.540414,0.117077,0.134671,0.902817,0.579946,0.0396826,0.845229,0.0540619,0.874098,0.833234,0.801434,0.910422,0.498099,0.29241,0.827468,0.285246,0.828815,0.959073,0.596316,0.56276,0.707357,0.0768596,0.29434,0.988653,0.893982,0.967345,0.776557,0.223142,0.0487625,0.22422,0.252078,0.272251,0.240632,0.55414,0.28827,0.241375,0.378578,0.773055,|0.87758,0.224992,0.171397,0.693404,0.545782,0.730118,0.582667,0.291801,0.30601,0.788092,0.952758,0.0176985,0.92167,0.720484,0.0429237,0.741725,0.701249,0.405446,0.371306,0.426022,0.901099,0.315376,0.479077,0.236819,0.962387,0.642722,0.587798,0.556999,0.624661,0.775286,0.996509,0.809141,0.660974,0.361148,0.609731,0.193777,0.93598,0.658485,0.238823,0.735703,0.364221,0.436575,0.741133,0.211101,0.335159,0.441585,0.00689125,0.600805,0.361908,0.416595,0.872256,0.559083,0.405486,0.283569,0.959186,0.660045,0.535892,0.205894,0.332111,0.531784,0.73444,0.524179,0.337819,0.152188,0.285154,0.500196,0.251422,0.628904,0.485787,0.218112,0.609,0.89683,0.866384,0.757523,0.363933,0.748805,0.374145,0.509586,0.386783,0.357637,0.827772,0.558371,0.994624,0.837486,0.991505,0.568168,0.966468,0.877967,0.897961,0.32116,0.154456,0.694997,0.937504,0.19234,0.37326,0.47566,0.627009,0.0389085,0.916582,0.446506,0.701861,0.555782,0.97136,0.10198,0.0536407,0.567628,0.102308,0.639581,0.580288,0.842083,0.744299,0.0176581,0.242136,0.490742,0.289426,0.197279,0.351619,0.527533,0.0205139,0.633155,0.424337,0.929759,0.917225,0.756079,0.164312,0.205402,0.449463,0.830797,0.691538,0.743425,0.581316,0.398626,0.185886,0.967051,0.532138,0.481192,0.529202,0.828201,0.306383,0.499395,0.909127,0.88728,0.376872,0.888897,0.628252,0.0871255,0.440389,0.184032,0.665041,0.259146,0.935464,0.66899,0.122626,0.181339,0.222493,0.00805515,0.00382924,0.369927,0.0340137,0.294386,0.226806,0.228561,0.464953,0.321442,0.208155,0.984052,0.204353,0.827231,0.539697,0.805691,0.908175,0.968165,0.646855,0.266168,0.917232,0.568314,0.211332,0.167068,0.0610063,0.138161,0.899268,0.521861,0.331659,0.133835,0.851829,0.200507,0.665659,0.257857,0.847691,0.609252,0.584302,0.0273368,0.181177,0.605881,0.100761,0.854953,0.108405,0.742298,0.473535,0.0290091,0.542238,0.730591,0.232656,0.605757,0.780301,0.561853,0.135702,0.649759,0.583098,0.0603103,0.420522,0.161982,0.167508,0.167965,0.747137,0.125861,0.849282,0.0642661,0.765277,0.630524,0.135361,0.979584,0.28723,0.686208,0.34997,0.895587,0.139705,0.729066,0.994365,0.342445,0.256722,0.160476,0.297781,0.522758,0.386032,0.59188,0.366704,0.790306,0.592201,0.692489,0.415686,0.00100261,0.179113,0.216738,0.788653,0.309163,0.264529,0.278053,0.830699,0.164938,0.0120691,0.770402,0.201894,0.0439233,0.673408,0.488361,0.485014,0.440903,0.000515759,0.680528,0.355795,0.691116,0.050864,0.510861,0.79887,0.108496,0.595373,0.810529,0.0612109,0.160351,0.329178,0.0316793,0.600401,0.951367,0.569839,0.310935,0.260324,0.886644,0.391698,0.136664,0.919496,0.715225,0.0646781,0.642292,0.690717,0.841137,0.732342,0.150235,0.0209724,0.693266,0.120565,0.181987,0.682201,0.050037,0.963712,0.899966,0.000921369,0.902084,0.743479,0.848358,0.47687,3.62992e-05,0.723297,0.957485,0.411727,0.712329,0.503845,0.0220556,0.00236648,0.176334,0.529409,0.60085,0.748435,0.136924,0.730051,0.180046,0.162701,0.396942,0.678328,0.263026,0.309033,0.356406,0.567047,0.0388122,0.990601,0.180016,0.92448,0.795286,0.569867,0.0708115,0.815407,0.644435,0.625167,0.34981,0.937668,0.880191,0.628891,0.937,0.288194,0.559191,0.80477,0.860715,0.832466,0.641193,0.753548,0.707195,0.783158,0.947837,0.766821,0.791977,0.729594,0.505719,0.269686,0.944878,0.987297,0.762514,0.0479679,0.130042,0.897328,0.745447,0.145972,0.0472445,0.68461,0.0475401,0.504507,0.523743,0.286523,0.914206,0.000801206,0.5244,0.640547,0.321088,0.0880085,0.584578,0.815646,0.215737,0.150066,0.713293,0.943922,0.014109,0.819046,0.578191,0.606085,0.950508,0.997893,0.198837,0.0768346,0.766327,0.990085,0.485347,0.817713,0.483248,0.529443,0.0433831,0.70556,0.954134,0.541102,0.872318,0.154096,0.886004,0.955546,0.165512,0.772574,0.15723,0.922498,0.6577,0.435545,0.636905,0.235393,0.468218,0.0750698,0.301426,0.484456,0.479268,0.335564,0.772351,0.936138,0.549219,0.986101,0.568049,0.262523,0.0885,0.490355,0.549283,0.506951,0.823459,0.0246276,0.575497,0.75162,0.915854,0.0465218,0.105165,0.213658,0.661355,0.683579,0.607768,0.923757,0.384846,0.949813,0.946554,0.770968,0.105247,0.491229,0.0378522,0.0567397,0.539786,0.479242,0.0166605,0.0612085,0.688734,0.311938,0.230609,0.139117,0.777875,0.466431,0.479898,0.0500613,0.955968,0.0318291,0.626608,0.622033,0.57362,0.746308,0.155428,0.652111,0.572306,0.0362922,0.304508,0.169944,0.736625,0.774348,0.456878,0.198795,0.563341,0.864699,0.202398,0.2055,0.74344,0.784563,0.916087,0.45617,0.7274,0.068862,0.686227,0.136285,0.474779,0.379552,0.0711842,0.805504,0.0702729,0.842068,0.0928778,0.832295,0.687769,0.802399,0.341395,0.991404,0.340595,0.379281,0.796811,0.279994,0.624127,0.0398966,0.330802,0.171665,0.467821,0.78827,0.578633,0.583946,0.195304,0.573486,0.90756,0.575071,0.876068,0.0777978,0.287391,0.868133,0.228753,0.927258,0.895222,0.444112,0.804685,0.788191,0.526479,0.400939,0.564008,0.828642,0.00589001,0.401765,0.644271,0.670274,0.563785,0.335874,0.850375,0.193218,0.107945,0.0816727,0.993669,0.792093,0.0663331,0.484121,0.180358,0.627957,0.52255,0.278176,0.266104,0.394615,0.432751,0.934113,0.863154,0.822841,0.792846,0.301834,0.726893,0.0958474,0.247941,0.974246,0.386175,0.653374,0.424808,0.708534,0.144018,0.330444,0.0870772,0.791183,0.795897,0.259741,0.834912,0.233931,0.420936,0.42969,0.409124,0.577012,0.170964,0.444238,0.144209,0.865522,0.0212629,0.729797,0.780336,0.604299,0.559268,0.244547,0.552927,0.773784,0.407759,0.179735,0.778856,0.822754,0.295103,0.00230122,0.919996,0.574687,0.683178,0.00274062,0.11297,0.0308968,0.832826,0.821826,0.360935,0.9761,0.901029,0.31869,0.485029,0.671953,0.937156,0.54374,0.373712,0.0437494,0.688877,0.861157,0.26541,0.593934,0.702772,0.331311,0.189809,0.449222,0.753089,0.737815,0.966605,0.557329,0.958913,0.130698,0.662412,0.599003,0.652566,0.7446,0.60306,0.589144,0.338876,0.280044,0.2186,0.605069,0.42405,0.260161,0.560777,0.499309,0.784396,0.511282,0.878592,0.781683,0.568786,0.367617,0.151187,0.848814,0.189023,0.0130991,0.680184,0.450737,0.0101515,0.431995,0.177539,0.962123,0.774542,0.0174002,0.144549,0.814062,0.992135,0.882643,0.964111,0.156201,0.872427,0.680983,0.193407,0.67355,0.833505,0.0371928,0.30342,0.428822,0.315415,0.49242,0.160104,0.717305,0.385946,0.845266,0.274668,0.227724,0.208162,0.815812,0.865681,0.129531,0.572148,0.0950099,0.897821,0.326774,0.517222,0.267202,0.0176641,0.0247586,0.757922,0.825532,0.0991983,0.0189582,0.701051,0.0244525,0.345853,0.591803,0.642057,0.52996,0.145456,0.0408903,0.844931,0.883209,0.905998,0.609183,0.993492,0.894066,0.179722,0.315437,0.522841,0.558866,0.386711,0.854473,0.206653,0.397914,0.985402,0.00142497,0.643619,0.85653,0.719004,0.140104,0.377891,0.768748,0.908612,0.0154832,0.440177,0.870548,0.46343,0.278016,0.861402,0.645475,0.86098,0.472775,0.236861,0.561441,0.403135,0.296531,0.190977,0.600859,0.0154264,0.592119,0.839181,0.494961,0.39696,0.219852,0.360722,0.209584,0.603489,0.0519242,0.660369,0.239532,0.18425,0.0923861,0.307145,0.800972,0.95608,0.599554,0.325615,0.511659,0.500654,0.964312,0.365739,0.470325,0.777636,0.612104,0.529608,0.149908,0.823526,0.633816,0.30663,0.953795,0.987711,0.754758,0.363186,0.185608,0.513999,0.672096,0.34683,0.157041,0.725197,0.952404,0.580981,0.363437,0.562594,0.771183,0.857829,0.448541,0.756384,0.301833,0.258212,0.348773,0.588268,0.82458,0.848602,0.531819,0.415671,0.226403,0.0442347,0.826706,0.324466,0.447548,0.373035,0.195947,0.746608,0.158082,0.765593,0.771952,0.637544,0.991494,0.135368,0.184934,0.869229,0.189588,0.803002,0.419632,0.133114,0.756985,0.111493,0.725436,0.596859,0.0893682,0.459584,0.378675,0.210493,0.593387,0.179051,0.033653,0.778913,0.71055,0.201823,0.217258,0.231696,0.103096,0.235555,0.00646186,0.193713,0.461933,0.138908,0.474663,0.0448,0.475672,0.77689,0.56844,0.317423,0.269521,0.806004,0.174401,0.640957,0.798944,0.0536778,0.584001,0.925452,0.808986,0.705749,0.782952,0.733423,0.0918442,0.704277,0.234789,0.543758,0.322617,0.360928,0.406907,0.776485,0.159543,0.168235,0.447189,0.0720601,0.936146,0.309708,0.191832,0.474222,0.82858,0.344035,0.441288,0.914832,0.311524,0.206262,0.565814,0.310267,0.320805,0.651616,0.695484,0.574316,0.133051,0.827888,0.489179,0.730329,0.807155,0.134161,0.688778,0.109814,0.778401,0.595721,0.749334,0.345399,0.601003,0.73583,0.069047,0.257017,0.481201,0.874867,0.62294,0.468799,0.860885,0.4177,0.120374,0.250906,0.129348,0.26501,0.823542,0.929839,0.145592,0.200451,0.760728,0.950227,0.0991634,0.842344,0.205384,0.381355,0.334537,0.00827289,0.0902804,0.935426,0.337715,0.162791,0.804204,0.308962,0.161525,0.465399,0.464438,0.596405,0.330591,0.500895,0.555691,0.0494347,0.575064,0.788107,0.415098,0.779612,0.125441,0.895046,0.42523,0.943704,0.199984,0.188925,0.204031,0.617427,0.527142,0.165313,0.167695,0.852076,0.923269,0.931073,0.586677,0.818404,0.614862,0.200004,0.132668,0.478994,0.07907,0.914163,0.134594,0.0374767,0.0803755,0.1546,0.960588,0.774055,0.0229729,0.423531,0.117045,0.586491,0.66957,0.352764,0.76399,0.529975,0.100542,0.373207,0.548174,0.154567,0.331495,0.620265,0.412171,0.187913,0.565524,0.432864,0.355711,0.471372,0.126439,0.614293,0.796991,0.575056,0.359068,0.0617614,0.197401,0.382461,0.439172,0.571152,0.271199,0.595103,|0.925305,0.0577053,0.118664,0.379525,0.314235,0.573488,0.701486,0.489455,0.7212,0.553574,0.23131,0.313533,0.071977,0.270098,0.315608,0.030957,0.410724,0.922213,0.890187,0.618171,0.485576,0.137751,0.914448,0.897014,0.378643,0.206158,0.195393,0.626559,0.221401,0.928257,0.259877,0.759724,0.681056,0.0669344,0.00482267,0.379266,0.806846,0.519333,0.584635,0.5544,0.639336,0.644901,0.24867,0.503507,0.520909,0.220239,0.981297,0.783056,0.203278,0.0620651,0.109115,0.745164,0.15297,0.492864,0.707786,0.763101,0.331122,0.834055,0.0581853,0.805466,0.112736,0.527119,0.51149,0.647216,0.182306,0.462435,0.366175,0.862298,0.821636,0.720295,0.391308,0.618915,0.35111,0.30762,0.23304,0.0140143,0.723691,0.738763,0.32161,0.376924,0.663199,0.122271,0.892538,0.82348,0.102511,0.344048,0.194898,0.934181,0.28358,0.742709,0.791478,0.183253,0.021098,0.800952,0.983579,0.421811,0.363639,0.056383,0.124051,0.448695,0.855758,0.927501,0.17076,0.751124,0.870202,0.133578,0.518336,0.646834,0.611993,0.739963,0.763534,0.30208,0.532651,0.385966,0.991713,0.0382795,0.73674,0.19993,0.92288,0.345122,0.699216,0.37408,0.851086,0.889561,0.197671,0.19924,0.0286959,0.371226,0.256016,0.760408,0.0441335,0.482103,0.0700973,0.0658213,0.26159,0.757029,0.863132,0.000432253,0.880798,0.784842,0.653966,0.674841,0.997029,0.987014,0.74288,0.65232,0.65137,0.255477,0.574733,0.0465788,0.146978,0.270801,0.250317,0.235871,0.0672771,0.651853,0.703748,0.53536,0.971726,0.41227,0.885868,0.854695,0.736121,0.459935,0.824253,0.821771,0.346484,0.192051,0.56272,0.569033,0.507627,0.905436,0.743577,0.359903,0.468871,0.968636,0.773327,0.488762,0.363633,0.19266,0.274787,0.222255,0.767611,0.0371127,0.65525,0.248194,0.775513,0.908095,0.0895919,0.636943,0.587655,0.245903,0.228322,0.748205,0.730396,0.184112,0.296971,0.807006,0.825224,0.469447,0.976092,0.959277,0.960513,0.403309,0.878283,0.121698,0.969739,0.963448,0.529551,0.806464,0.529908,0.711168,0.880779,0.737516,0.681181,0.0252727,0.779989,0.346922,0.0621517,0.244024,0.666254,0.985097,0.905415,0.216293,0.528473,0.66404,0.0448927,0.641693,0.356219,0.775733,0.755655,0.498808,0.66478,0.78325,0.146921,0.648018,0.815325,0.200286,0.814308,0.363544,0.953715,0.981325,0.0982132,0.843626,0.450346,0.139129,0.721598,0.110499,0.36713,0.76798,0.846906,0.347245,0.502368,0.397868,0.0794268,0.742302,0.965425,0.650179,0.304377,0.248298,0.55538,0.150348,0.632793,0.126016,0.252958,0.14119,0.588427,0.572214,0.65565,0.420473,0.540999,0.866363,0.504274,0.438927,0.00655818,0.784501,0.926493,0.139336,0.663998,0.67653,0.0422858,0.821275,0.878565,0.205698,0.442179,0.748436,0.735988,0.19517,0.0162135,0.934802,0.936814,0.0706838,0.419179,0.347586,0.117692,0.812893,0.413223,0.115591,0.399914,0.318369,0.357006,0.204208,0.743059,0.907361,0.792954,0.346789,0.423028,0.838132,0.718707,0.283971,0.26974,0.360838,0.490793,0.457789,0.337611,0.235906,0.165883,0.845476,0.119901,0.711492,0.535161,0.711962,0.701071,0.234086,0.116417,0.946178,0.13197,0.0330855,0.0571835,0.630851,0.488662,0.00510716,0.423063,0.160788,0.732482,0.232042,0.399207,0.661685,0.699938,0.27528,0.600832,0.722971,0.805342,0.348013,0.252969,0.00152194,0.463334,0.00496346,0.51072,0.642537,0.920082,0.287143,0.855303,0.994747,0.874357,0.0795793,0.218167,0.980113,0.653327,0.651058,0.506738,0.622188,0.356514,0.655214,0.155396,0.282846,0.940012,0.0441321,0.609706,0.6716,0.929129,0.580614,0.563121,0.0346365,0.95573,0.895479,0.0152073,0.378655,0.324551,0.704174,0.453201,0.2388,0.158534,0.7504,0.717076,0.42718,0.424135,0.29943,0.420203,0.449522,0.367593,0.984525,0.051691,0.859866,0.524055,0.935108,0.725557,0.311269,0.248706,0.643192,0.999924,0.0762982,0.107054,0.0859489,0.571085,0.919279,0.909183,0.952886,0.147272,0.00808001,0.196998,0.715598,0.691273,0.790435,0.739025,0.199537,0.518455,0.694257,0.959504,0.161356,0.225793,0.453568,0.610463,0.216609,0.262042,0.231461,0.464056,0.347875,0.323621,0.0323106,0.70325,0.051575,0.706781,0.946273,0.54659,0.389227,0.884566,0.453391,0.772007,0.73009,0.0202299,0.36195,0.25253,0.0425107,0.0941105,0.944325,0.497808,0.13754,0.325635,0.281151,0.621649,0.00546837,0.439197,0.272391,0.0352342,0.245564,0.742461,0.613465,0.219546,0.483249,0.561423,0.901812,0.903664,0.0672316,0.20544,0.824555,0.981234,0.88624,0.454205,0.297155,0.566123,0.825432,0.184648,0.291781,0.34082,0.363224,0.0292527,0.52237,0.540065,0.112847,0.856841,0.985622,0.781816,0.318863,0.443115,0.411214,0.40505,0.826334,0.878234,0.756524,0.184517,0.357805,0.339171,0.721035,0.531303,0.815734,0.622053,0.209286,0.137569,0.785462,0.58206,0.133058,0.455136,0.588064,0.0231449,0.606745,0.462299,0.131498,0.812085,0.542212,0.50686,0.898755,0.766789,0.278989,0.610052,0.751755,0.199834,0.078716,0.99243,0.949911,0.0428695,0.565615,0.787459,0.437853,0.780328,0.035961,0.436272,0.750677,0.569058,0.406507,0.334056,0.204477,0.483084,0.220517,0.7233,0.319026,0.564752,0.491637,0.761558,0.767321,0.00591797,0.162778,0.705961,0.468757,0.301772,0.24876,0.731465,0.642622,0.849302,0.944566,0.889016,0.975351,0.253118,0.995537,0.682323,0.214192,0.0292027,0.959689,0.730856,0.067714,0.466895,0.677893,0.666451,0.809341,0.197352,0.342532,0.853059,0.629065,0.0133942,0.658106,0.981902,0.0047785,0.471494,0.350583,0.161001,0.279762,0.815364,0.884877,0.331232,0.325868,0.457652,0.565598,0.908218,0.00226706,0.434604,0.699969,0.214125,0.17176,0.597089,0.427079,0.934419,0.793952,0.543327,0.183958,0.725363,0.208213,0.148295,0.621473,0.544258,0.933629,0.627351,0.554737,0.639721,0.80131,0.951742,0.0830396,0.0998902,0.944507,0.863629,0.361877,0.0647787,0.483557,0.906977,0.7439,0.107172,0.49007,0.285863,0.455961,0.550685,0.772814,0.747585,0.617376,0.142493,0.496613,0.494362,0.114468,0.971227,0.511555,0.00985134,0.744526,0.0963118,0.0343316,0.730158,0.0349861,0.731242,0.755614,0.839774,0.861337,0.123748,0.295176,0.52728,0.157478,0.23475,0.741724,0.276379,0.1477,0.0619405,0.99453,0.512069,0.460823,0.408855,0.446917,0.580578,0.14919,0.147288,0.865881,0.775945,0.727326,0.552003,0.375544,0.357458,0.470438,0.437666,0.879816,0.888404,0.416966,0.28988,0.1171,0.247935,0.414573,0.224041,0.168689,0.138373,0.196556,0.124632,0.792549,0.173935,0.941025,0.241696,0.575549,0.692961,0.624068,0.0132239,0.846347,0.449318,0.664342,0.152634,0.960763,0.803715,0.706766,0.823518,0.358091,0.854907,0.496935,0.196601,0.367687,0.0351787,0.835348,0.319403,0.306157,0.820878,0.979648,0.69206,0.82149,0.457456,0.372831,0.864945,0.317992,0.76077,0.17804,0.593019,0.739084,0.194725,0.632487,0.905718,0.465814,0.227717,0.84146,0.414162,0.84618,0.52059,0.444431,0.986913,0.899995,0.980549,0.121534,0.301221,0.611492,0.932431,0.948896,0.909364,0.478315,0.819861,0.884192,0.63206,0.193289,0.302927,0.748543,0.0862731,0.974024,0.244538,0.227847,0.651955,0.883129,0.0886511,0.770961,0.0157859,0.415667,0.540386,0.0572761,0.995775,0.664824,0.500081,0.239376,0.888949,0.3304,0.0537139,0.294236,0.554335,0.069863,0.622863,0.198106,0.448053,0.950866,0.249499,0.116431,0.255047,0.270885,0.94736,0.536906,0.360465,0.115553,0.964938,0.424847,0.885661,0.463667,0.47929,0.538738,0.271744,0.974896,0.305144,0.0156922,0.104544,0.419457,0.0272507,0.0827468,0.603808,0.789582,0.70995,0.0632992,0.0464811,0.994159,0.765797,0.646128,0.45846,0.68853,0.29923,0.0138903,0.2352,0.253807,0.0335158,0.529663,0.473976,0.0818446,0.696575,0.00377947,0.466548,0.15551,0.182653,0.706411,0.126462,0.0407839,0.120949,0.956119,0.155102,0.900346,0.902255,0.804302,0.54058,0.248926,0.289219,0.0322503,0.631488,0.102849,0.31295,0.275002,0.465514,0.778543,0.00633413,0.306714,0.191872,0.478836,0.297901,0.000267029,0.109263,0.685831,0.907276,0.341754,0.825979,0.731153,0.541935,0.726672,0.767419,0.902615,0.846658,0.619719,0.350946,0.123823,0.445624,0.442814,0.917892,0.536397,0.674399,0.110431,0.722846,0.0662255,0.0162954,0.715803,0.78723,0.282231,0.137077,0.702493,0.432431,0.154526,0.312921,0.244122,0.863642,0.369653,0.412306,0.745847,0.230361,0.987766,0.129147,0.762704,0.513421,0.354907,0.222119,0.34105,0.451904,0.905947,0.2437,0.488702,0.254898,0.764229,0.652127,0.867401,0.849435,0.0789199,0.678966,0.815484,0.888897,0.251538,0.430385,0.987673,0.347543,0.0739619,0.98963,0.571656,0.136049,0.960106,0.749577,0.734715,0.885654,0.321062,0.467729,0.574029,0.523639,0.54744,0.536387,0.278931,0.845056,0.728146,0.470627,0.22014,0.969101,0.444709,0.165017,0.707464,0.80869,0.624046,0.878564,0.191459,0.838124,0.872822,0.623774,0.628135,0.294144,0.536824,0.653516,0.837806,0.550439,0.387933,0.483273,0.348789,0.222421,0.516202,0.0868306,0.86154,0.958469,0.938137,0.495696,0.992541,0.989304,0.596319,0.144285,0.801534,0.954387,0.196048,0.32174,0.291347,0.00526536,0.920338,0.0869392,0.183559,0.135036,0.736097,0.879487,0.182671,0.20154,0.424659,0.138511,0.440314,0.94074,0.779506,0.655519,0.477127,0.276788,0.251471,0.964037,0.679124,0.0557216,0.795129,0.357806,0.987789,0.669972,0.467254,0.701314,0.0394112,0.987605,0.203313,0.853046,0.887711,0.329073,0.482945,0.801096,0.928443,0.011229,0.405893,0.876837,0.687898,0.559115,0.757537,0.224868,0.142569,0.79801,0.200983,0.666301,0.0367396,0.535153,0.427044,|0.882615,0.0640555,0.586774,0.98839,0.493436,0.00986981,0.348116,0.0182757,0.890212,0.0662765,0.597074,0.225753,0.134064,0.704062,0.462416,0.264291,0.72214,0.375496,0.497218,0.344128,0.626656,0.507819,0.702776,0.722625,0.764783,0.0464614,0.85261,0.820085,0.0284052,0.167811,0.353319,0.712928,0.333453,0.671849,0.220904,0.873447,0.120541,0.544977,0.536911,0.885276,0.231299,0.786449,0.486064,0.437812,0.761941,0.135943,0.905682,0.289502,0.17406,0.868204,0.353177,0.882566,0.403472,0.37829,0.792158,0.34459,0.072561,0.0561986,0.776167,0.553238,0.913172,0.62383,0.0113137,0.944714,0.260152,0.958287,0.41646,0.306042,0.721509,0.244613,0.970631,0.418815,0.863401,0.316649,0.550113,0.212785,0.132065,0.656177,0.174545,0.417502,0.956788,0.236654,0.0735577,0.191819,0.455803,0.368773,0.15725,0.567532,0.583677,0.441244,0.971314,0.785469,0.291541,0.211043,0.78784,0.312103,0.298741,0.176907,0.682404,0.013719,0.982048,0.931715,0.860115,0.596756,0.153717,0.379944,0.716952,0.547036,0.820549,0.983433,0.90233,0.147037,0.245775,0.33734,0.182904,0.974492,0.254208,0.0646234,0.918152,0.0149518,0.751104,0.222522,0.193272,0.177795,0.57461,0.957969,0.957925,0.404257,0.840455,0.744811,0.827852,0.639951,0.847636,0.0877728,0.236018,0.768396,0.339202,0.318745,0.0861043,0.804969,0.48296,0.0852348,0.531111,0.868464,0.383924,0.152576,0.984719,0.519158,0.040979,0.584652,0.325996,0.737479,0.389368,0.667017,0.713774,0.369279,0.781334,0.939623,0.403721,0.212938,0.313178,0.948538,0.187189,0.433363,0.912704,0.471903,0.892472,0.508587,0.956064,0.682116,0.146775,0.217741,0.891502,0.414269,0.366888,0.783777,0.0163025,0.0648528,0.212208,0.121711,0.449836,0.272056,0.810626,0.910471,0.272207,0.748336,0.161087,0.752678,0.815352,0.267424,0.141778,0.756193,0.0136048,0.942595,0.0427535,0.894346,0.441648,0.198009,0.515991,0.0117307,0.948694,0.873137,0.00770932,0.711196,0.0382874,0.300902,0.2812,0.647224,0.180055,0.423899,0.338069,0.682922,0.918094,0.489415,0.182508,0.579967,0.741512,0.446083,0.344082,0.77104,0.267812,0.207811,0.558451,0.00624925,0.836239,0.229926,0.167071,0.0757711,0.546368,0.871011,0.0977032,0.244674,0.0307691,0.114782,0.897645,0.170962,0.624303,0.863141,0.614298,0.1631,0.557561,0.786984,0.398136,0.579678,0.631325,0.305492,0.827638,0.56945,0.312946,0.384015,0.832611,0.899744,0.0348079,0.500564,0.825427,0.908412,0.882441,0.893886,0.357166,0.546065,0.388514,0.640517,0.107547,0.625148,0.162903,0.235293,0.542858,0.681428,0.102086,0.512341,0.0383554,0.349,0.108637,0.407413,0.550431,0.676611,0.165559,0.998077,0.426661,0.293174,0.962917,0.0761822,0.554924,0.512478,0.337098,0.679131,0.42991,0.318293,0.321111,0.0233973,0.946166,0.963227,0.059589,0.841182,0.682537,0.345883,0.479045,0.442262,0.0305586,0.879146,0.148596,0.877305,0.574516,0.646763,0.132904,0.640312,0.520063,0.954321,0.423326,0.589893,0.592314,0.146222,0.0464703,0.707098,0.101785,0.269274,0.357583,0.167819,0.402625,0.621703,0.613306,0.0636276,0.149115,0.125704,0.506523,0.624013,0.850751,0.245132,0.426884,0.236905,0.194966,0.378536,0.886935,0.132507,0.949896,0.920602,0.940418,0.44648,0.739575,0.576978,0.610954,0.847502,0.730662,0.946305,0.456966,0.891086,0.438947,0.401873,0.443877,0.577866,0.372006,0.226918,0.262732,0.588433,0.215732,0.901505,0.279818,0.206637,0.196774,0.37159,0.0269263,0.628981,0.0813305,0.668186,0.0511619,0.554314,0.774685,0.911423,0.0841795,0.0738807,0.516105,0.459927,0.0919347,0.533025,0.087761,0.878574,0.639231,0.264302,0.55113,0.737301,0.433748,0.707832,0.853565,0.237036,0.0899228,0.614891,0.399335,0.0593355,0.117437,0.793244,0.595661,0.914498,0.447262,0.784343,0.305694,0.95496,0.398215,0.585721,0.893205,0.368558,0.740034,0.715195,0.776739,0.325926,0.420261,0.712038,0.993772,0.521309,0.198564,0.328269,0.988255,0.351718,0.889751,0.281105,0.831043,0.346338,0.670585,0.592704,0.728303,0.523192,0.435935,0.176997,0.830272,0.303768,0.0116026,0.422307,0.762401,0.530397,0.728162,0.484191,0.72277,0.0819831,0.847854,0.233205,0.791156,0.873377,0.934902,0.0730071,0.740264,0.787915,0.151556,0.338009,0.387071,0.562795,0.197756,0.849674,0.950406,0.391069,0.438151,0.671085,0.078913,0.901412,0.111825,0.553694,0.435313,0.248861,0.00448281,0.525015,0.611016,0.573872,0.571701,0.139634,0.309678,0.488719,0.717396,0.320002,0.160684,0.69655,0.685306,0.580317,0.30937,0.104641,0.734585,0.389653,0.313883,0.603385,0.172526,0.614535,0.288203,0.932365,0.315551,0.122656,0.826771,0.750107,0.775481,0.527923,0.565735,0.428217,0.0558405,0.255493,0.500979,0.721249,0.674843,0.167048,0.601239,0.577198,0.317276,0.362578,0.552483,0.943681,0.168547,0.471079,0.109152,0.0767233,0.276053,0.0390074,0.821475,0.0555465,0.786214,0.323502,0.0287427,0.970552,0.281206,0.226739,0.553216,0.0927587,0.648159,0.766584,0.489028,0.841641,0.218974,0.213896,0.21673,0.13999,0.612149,0.615064,0.732682,0.248888,0.318342,0.831724,0.222206,0.185801,0.520399,0.0302503,0.726013,0.328916,0.869472,0.996793,0.621378,0.250725,0.582123,0.793131,0.148657,0.651332,0.436849,0.744871,0.109525,0.14567,0.32099,0.559941,0.532691,0.820136,0.0952241,0.999551,0.0657568,0.343302,0.742563,0.308029,0.2313,0.558095,0.315934,0.702897,0.37533,0.351997,0.216647,0.852362,0.55852,0.67501,0.293711,0.128638,0.438068,0.040386,0.390712,0.0515091,0.452715,0.937659,0.938852,0.948026,0.434336,0.468573,0.841766,0.334336,0.93371,0.230559,0.970771,0.425144,0.775391,0.933897,0.860373,0.948562,0.319141,0.727294,0.942006,0.185716,0.443062,0.494463,0.799181,0.205724,0.617502,0.717909,0.125925,0.557761,0.131278,0.866808,0.557509,0.90548,0.764369,0.825461,0.359077,0.902673,0.545765,0.0015794,0.368097,0.876793,0.898305,0.270893,0.960351,0.0801775,0.902348,0.0571698,0.0976611,0.370242,0.550684,0.911418,0.779122,0.722383,0.851802,0.278349,0.314575,0.195511,0.858006,0.623467,0.942449,0.542685,0.608862,0.0950024,0.930785,0.292175,0.740865,0.213229,0.918594,0.58341,0.430293,0.942699,0.221817,0.514115,0.343132,0.567419,0.95357,0.720413,0.377951,0.969251,0.397547,0.877275,0.336917,0.842248,0.264842,0.516891,0.706598,0.235978,0.916369,0.782142,0.509231,0.0422762,0.709154,0.863144,0.754928,0.202556,0.224217,0.334439,0.732503,0.0998263,0.335563,0.47737,0.633654,0.872021,0.332857,0.778812,0.839216,0.731603,0.278579,0.256939,0.694958,0.0934529,0.449582,0.871928,0.329711,0.500423,0.927451,0.267206,0.826972,0.623749,0.733436,0.0165067,0.818367,0.151466,0.950173,0.220125,0.74871,0.590225,0.0743999,0.434364,0.713237,0.544793,0.977529,0.463621,0.0587959,0.80927,0.682047,0.38214,0.59466,0.973618,0.410477,0.502105,0.0631587,0.302012,0.517792,0.121003,0.189306,0.542611,0.104228,0.257784,0.411051,0.0934368,0.0628584,0.716093,0.944696,0.0377063,0.271433,0.429434,0.654608,0.675513,0.309633,0.235463,0.307435,0.501013,0.826523,0.40432,0.750773,0.70263,0.0438192,0.185761,0.436098,0.187336,0.287575,0.0307128,0.489201,0.818115,0.444629,0.89317,0.566181,0.119061,0.802108,0.410243,0.842247,0.830917,0.556276,0.756734,0.403667,0.86329,0.542303,0.74931,0.735799,0.802149,0.676911,0.0519205,0.231926,0.0746687,0.571694,0.725266,0.142171,0.466466,0.52153,0.870634,0.0817323,0.321619,0.388584,0.283698,0.337961,0.390334,0.098877,0.362327,0.327342,0.345759,0.928739,0.600318,0.981135,0.149872,0.480127,0.648285,0.792405,0.951613,0.392009,0.225906,0.204788,0.489369,0.737995,0.0666431,0.820947,0.477349,0.282726,0.724482,0.569189,0.983312,0.612144,0.994676,0.596156,0.142503,0.671435,0.637276,0.822198,0.347481,0.404471,0.945172,0.465729,0.131125,0.651221,0.163808,0.866023,0.122779,0.535584,0.361961,0.742804,0.307631,0.423034,0.397715,0.240334,0.853529,0.83481,0.619719,0.702638,0.865462,0.699489,0.303538,0.779925,0.630582,0.517456,0.0273979,0.529072,0.311043,0.911535,0.855055,0.522217,0.930842,0.665927,0.841397,0.366943,0.129225,0.742549,0.708696,0.805897,0.658251,0.614005,0.938959,0.6086,0.509212,0.246897,0.350941,0.722451,0.932566,0.497275,0.725018,0.699777,0.130477,0.836622,0.694077,0.443879,0.0879565,0.804676,0.308081,0.252646,0.568738,0.895186,0.770322,0.626731,0.870749,0.180023,0.991054,0.741529,0.828888,0.221521,0.466826,0.176474,0.382756,0.584991,0.204763,0.623028,0.667484,0.0313448,0.435625,0.121235,0.43869,0.921336,0.829093,0.314697,0.0653172,0.95581,0.0786167,0.511713,0.49961,0.519131,0.650096,0.746653,0.58329,0.542243,0.235292,0.414094,0.682056,0.478451,0.514725,0.256082,0.785698,0.889968,0.595309,0.401701,0.775081,0.708126,0.713081,0.159607,0.567423,0.176404,0.890568,0.67937,0.10952,0.919452,0.354983,0.528503,0.0296564,0.611691,0.41704,0.405566,0.812051,0.818614,0.611273,0.0570108,0.592356,0.410953,0.936408,0.851844,0.473756,0.795729,0.0973646,0.240351,0.94038,0.0770385,0.773898,0.206835,0.873522,0.816752,0.78167,0.0303769,0.997137,0.668506,0.706562,0.759679,0.0957606,0.71698,0.693299,0.561923,0.381256,0.215094,0.674262,0.86187,0.819871,0.353985,0.140393,0.892188,0.409098,0.850083,0.193842,0.297539,0.197046,0.493535,0.63683,0.763053,0.48675,0.0294765,0.294894,0.827634,0.0881843,0.0275555,0.711362,0.185442,0.168973,0.308891,0.260355,0.200834,0.921825,0.767871,0.0990845,0.0263785,0.290029,0.817498,0.234385,0.540377,0.204125,0.112754,0.514826,0.736289,0.238305,|0.586494,0.503303,0.123657,0.0390237,0.274006,0.671392,0.184342,0.182806,0.194281,0.745794,0.521827,0.395808,0.506511,0.486725,0.189183,0.299702,0.483435,0.72656,0.996126,0.382349,0.447773,0.225103,0.613197,0.394303,0.850471,0.455152,0.854876,0.957291,0.811869,0.275803,0.344313,0.792754,0.876099,0.0642828,0.683233,0.978221,0.169789,0.909424,0.67988,0.711872,0.953319,0.3546,0.466577,0.678887,0.987398,0.0538208,0.118996,0.348332,0.766058,0.417196,0.35346,0.486058,0.777595,0.370805,0.383736,0.895439,0.260338,0.766426,0.971375,0.146251,0.50236,0.33375,0.178553,0.497859,0.818525,0.484077,0.258411,0.0105116,0.0858301,0.518057,0.0105128,0.998193,0.716258,0.574328,0.87399,0.676679,0.873367,0.723856,0.118277,0.604964,0.924639,0.493935,0.876007,0.288499,0.0491092,0.383332,0.331318,0.107771,0.999634,0.741029,0.967341,0.720939,0.843858,0.702212,0.0181658,0.978009,0.739495,0.394,0.415613,0.953907,0.344606,0.747626,0.658683,0.991435,0.897527,0.984738,0.583735,0.844171,0.207356,0.461563,0.123693,0.0177085,0.798855,0.826517,0.113231,0.476899,0.572573,0.788419,0.762528,0.504634,0.926348,0.252275,0.215257,0.485611,0.887996,0.153373,0.550255,0.333621,0.482625,0.855567,0.0451074,0.861326,0.572309,0.749712,0.367688,0.0842079,0.455488,0.062897,0.427648,0.722069,0.951423,0.644898,0.443722,0.111553,0.630215,0.823956,0.347574,0.731067,0.433407,0.0582469,0.989198,0.777518,0.923798,0.241893,0.125855,0.620623,0.132614,0.901479,0.716901,0.188241,0.477341,0.722105,0.607946,0.78052,0.599589,0.398444,0.489081,0.995365,0.101745,0.90011,0.557012,0.627186,0.845253,0.286471,0.461891,0.0116017,0.995645,0.962286,0.498306,0.662466,0.551826,0.644995,0.117497,0.357565,0.29091,0.532866,0.380307,0.223337,0.80212,0.900244,0.137036,0.532966,0.606383,0.571073,0.176276,0.914564,0.241727,0.395133,0.337996,0.814466,0.794052,0.161388,0.769411,0.149453,0.797894,0.859073,0.35871,0.831457,0.82061,0.809244,0.662691,0.804403,0.872078,0.943759,0.428846,0.521574,0.584767,0.383,0.237408,0.769644,0.592907,0.520019,0.935906,0.779268,0.111358,0.193519,0.77678,0.745162,0.868018,0.124399,0.236937,0.396021,0.30272,0.73398,0.717232,0.444338,0.528234,0.561615,0.116996,0.395492,0.860102,0.281769,0.370804,0.13944,0.994498,0.629353,0.204368,0.999904,0.563808,0.401193,0.703481,0.146574,0.150677,0.421466,0.179914,0.867795,0.482382,0.579958,0.657085,0.515697,0.393617,0.309659,0.455182,0.259466,0.0234176,0.0259673,0.124701,0.463602,0.967379,0.60038,0.898826,0.913875,0.383413,0.60032,0.857969,0.0869048,0.520355,0.381238,0.763708,0.29367,0.657223,0.855032,0.500657,0.984598,0.760811,0.551635,0.137735,0.0620542,0.30323,0.124437,0.401305,0.108812,0.147863,0.787775,0.496692,0.755879,0.181442,0.147486,0.806485,0.464585,0.894099,0.877616,0.910858,0.753825,0.354762,0.315821,0.420978,0.736974,0.218743,0.341731,0.375012,0.717972,0.202571,0.926625,0.855427,0.579026,0.338298,0.91198,0.300299,0.110869,0.34928,0.663148,0.36233,0.633349,0.392899,0.256568,0.134815,0.379679,0.639241,0.694049,0.727794,0.627803,0.558944,0.131404,0.84191,0.124646,0.670814,0.0813763,0.134546,0.619868,0.736424,0.485828,0.751206,0.321895,0.468111,0.42564,0.652881,0.782793,0.273585,0.328224,0.101553,0.153248,0.281351,0.553154,0.418219,0.201741,0.412571,0.371932,0.342735,0.83765,0.0363914,0.259307,0.224333,0.0535746,0.741987,0.830847,0.982893,0.265004,0.966875,0.595988,0.143353,0.853435,0.0853509,0.634982,0.805503,0.973553,0.616028,0.769952,0.035794,0.967053,0.97878,0.3275,0.972631,0.952317,0.228135,0.863751,0.253129,0.514166,0.676384,0.704382,0.569623,0.139078,0.868934,0.697098,0.968201,0.763132,0.00434852,0.451791,0.434091,0.515298,0.334607,0.646108,0.695937,0.845784,0.393331,0.940638,0.177555,0.292846,0.0117447,0.288318,0.977114,0.76319,0.151806,0.124095,0.989891,0.801441,0.789798,0.104137,0.0989903,0.469159,0.699147,0.104594,0.290345,0.911665,0.126824,0.381521,0.742157,0.733332,0.897532,0.995645,0.545006,0.104026,0.777809,0.400891,0.2449,0.532273,0.634109,0.751946,0.886133,0.691085,0.591273,0.690511,0.26113,0.306919,0.454935,0.182653,0.876937,0.974092,0.0939372,0.991973,0.196086,0.0124091,0.811529,0.704288,0.377655,0.508949,0.0453411,0.908148,0.984332,0.406017,0.289583,0.766538,0.105908,0.336525,0.396767,0.0620288,0.573245,0.420241,0.314284,0.40925,0.375849,0.799345,0.343737,0.154515,0.620071,0.624553,0.353411,0.34211,0.176702,0.968229,0.0355206,0.333722,0.88478,0.609381,0.0838256,0.347273,0.225718,0.95772,0.126962,0.262948,0.169749,0.0228633,0.173982,0.785405,0.805079,0.566526,0.6303,0.457031,0.756218,0.993365,0.471244,0.838382,0.780842,0.961846,0.415124,0.357737,0.408236,0.00881636,0.0472801,0.283487,0.892287,0.753497,0.338279,0.5352,0.799922,0.506201,0.196473,0.785962,0.768578,0.817866,0.372881,0.119444,0.21069,0.740883,0.300012,0.0949441,0.989439,0.428689,0.424502,0.387789,0.210216,0.870775,0.492137,0.750283,0.438599,0.331388,0.801313,0.317826,0.363448,0.393144,0.49813,0.516155,0.317895,0.592092,0.0843064,0.111526,0.260722,0.781062,0.583409,0.641327,0.612285,0.637962,0.0918942,0.2773,0.660332,0.472601,0.292866,0.11575,0.73956,0.447991,0.724457,0.286301,0.267812,0.173662,0.428591,0.197588,0.624764,0.979337,0.192526,0.888303,0.618777,0.463979,0.727656,0.0473298,0.74594,0.553947,0.105401,0.987455,0.969807,0.303354,0.635775,0.351453,0.132044,0.778542,0.756763,0.920611,0.154189,0.88369,0.339782,0.307231,0.938519,0.0860292,0.859672,0.511877,0.858571,0.958173,0.591154,0.808949,0.355758,0.486938,0.186989,0.343261,0.858203,0.717363,0.737702,0.74436,0.142157,0.387466,0.581215,0.602,0.446243,0.290734,0.112231,0.994538,0.140319,0.44862,0.687639,0.405515,0.763128,0.555972,0.610649,0.991588,0.402721,0.787447,0.0625591,0.593012,0.966228,0.463416,0.990333,0.828241,0.812206,0.975951,0.397032,0.5195,0.270825,0.659887,0.89495,0.604845,0.0263019,0.721313,0.357147,0.0844389,0.606189,0.162722,0.423218,0.951012,0.764063,0.931818,0.0679213,0.408265,0.800367,0.195458,0.389189,0.15241,0.048329,0.681519,0.916725,0.947472,0.520501,0.795774,0.122181,0.111956,0.893355,0.0864066,0.971178,0.841999,0.752968,0.750681,0.437122,0.931652,0.385293,0.468652,0.154812,0.420004,0.686026,0.883184,0.0827659,0.683188,0.180029,0.805778,0.0838741,0.393524,0.0615361,0.89835,0.19967,0.567927,0.965069,0.952985,0.488273,0.576997,0.893707,0.709907,0.649284,0.0462038,0.805,0.916955,0.821032,0.931761,0.360091,0.646117,0.518424,0.327365,0.941533,0.0302262,0.657444,0.952094,0.371148,0.555473,0.806469,0.0121977,0.696935,0.555194,0.175085,0.545412,0.444927,0.861064,0.235437,0.947721,0.172271,0.498975,0.536226,0.612503,0.620227,0.610289,0.766372,0.15292,0.313306,0.131197,0.812735,0.762833,0.285493,0.828722,0.905934,0.899112,0.52606,0.787241,0.518843,0.600927,0.740175,0.219597,0.237081,0.508028,0.068041,0.53198,0.118339,0.228562,0.647501,0.0276209,0.935752,0.066792,0.544197,0.697351,0.503299,0.0351135,0.347356,0.0376085,0.207949,0.190976,0.704946,0.355969,0.633789,0.0253901,0.554992,0.109994,0.291616,0.36153,0.279423,0.259876,0.942741,0.851181,0.612606,0.270767,0.0654421,0.545112,0.931142,0.101975,0.763983,0.965031,0.896363,0.624766,0.919166,0.917472,0.484058,0.953722,0.734751,0.125784,0.577515,0.639936,0.435391,0.998561,0.181357,0.957982,0.626064,0.412978,0.973288,0.355896,0.330788,0.859983,0.328562,0.968143,0.986495,0.99931,0.491471,0.285988,0.510881,0.689807,0.547185,0.0131524,0.229339,0.423654,0.614065,0.803453,0.786741,0.00418752,0.282772,0.15679,0.428659,0.510826,0.51086,0.543963,0.576895,0.0113224,0.612003,0.376093,0.669087,0.211868,0.743118,0.90547,0.661009,0.0277629,0.54447,0.922805,0.980359,0.69402,0.841214,0.0601616,0.072953,0.597119,0.811948,0.241757,0.212502,0.8582,0.0739638,0.719026,0.121983,0.923121,0.405592,0.148194,0.0021953,0.596728,0.0649815,0.72703,0.515152,0.171826,0.552294,0.131439,0.147409,0.462621,0.215718,0.642978,0.0636342,0.239274,0.186495,0.310256,0.0702885,0.454853,0.199227,0.890175,0.266103,0.584474,0.617964,0.887495,0.611424,0.710972,0.681135,0.0606312,0.278609,0.911031,0.255455,0.389813,0.703428,0.0842491,0.815102,0.874741,0.535458,0.345491,0.146189,0.501467,0.109915,0.325891,0.80674,0.0522357,0.311214,0.634663,0.19705,0.433378,0.84921,0.102815,0.841127,0.552416,0.216488,0.7751,0.0881796,0.748674,0.476879,0.9869,0.836263,0.212694,0.633412,0.650212,0.0175814,0.567717,0.0314155,0.209847,0.747636,0.794718,0.672875,0.379231,0.0484688,0.909912,0.871617,0.726447,0.282834,0.90382,0.834136,0.558035,0.944114,0.962779,0.0138443,0.666025,0.509366,0.347993,0.593509,0.581416,0.394318,0.332151,0.234536,0.0776021,0.835137,0.843673,0.0608729,0.851062,0.580787,0.198584,0.618982,0.789031,0.0709959,0.227663,0.746034,0.757053,0.0489671,0.65442,0.0749446,0.182166,0.952951,0.0651745,0.470358,0.500394,0.473087,0.647541,0.551825,0.742651,0.63213,0.225189,0.694268,0.383437,0.264893,0.240148,0.902169,0.973877,0.524642,0.619342,0.333757,0.376827,0.573566,0.185412,0.020711,0.401353,0.25956,0.346293,0.672328,0.59073,0.534864,0.0490453,0.631878,0.167957,0.257329,0.463184,0.531707,0.182106,0.685893,0.986581,0.758864,0.929209,0.402976,0.0243289,0.75139,0.375602,0.847218,0.0138345,|0.165103,0.427884,0.0277691,0.529931,0.103832,0.0661204,0.125621,0.643162,0.490878,0.719398,0.848305,0.267959,0.631652,0.708818,0.37555,0.288425,0.310024,0.232359,0.127279,0.984782,0.676616,0.847887,0.0551876,0.855776,0.766601,0.871458,0.769123,0.560469,0.697492,0.503565,0.457376,0.145891,0.140253,0.898191,0.818697,0.159781,0.107135,0.417819,0.803008,0.884643,0.758353,0.590378,0.978374,0.825476,0.954629,0.650788,0.859812,0.621446,0.308194,0.223206,0.975098,0.529795,0.396973,0.447996,0.0123097,0.652835,0.0892119,0.159647,0.0866115,0.303061,0.78189,0.867917,0.579144,0.403006,0.0174143,0.653705,0.389977,0.812927,0.92654,0.724587,0.221511,0.055321,0.2945,0.560917,0.091942,0.143215,0.239396,0.401449,0.0554516,0.487954,0.162164,0.857742,0.458713,0.801806,0.126714,0.163377,0.791997,0.0033322,0.750454,0.75282,0.844229,0.825583,0.880788,0.464577,0.0343412,0.313385,0.695159,0.426815,0.673253,0.774022,0.201456,0.516679,0.442588,0.0274446,0.661533,0.142458,0.620882,0.134567,0.272733,0.648352,0.672039,0.231279,0.733639,0.131321,0.662928,0.93988,0.254932,0.468857,0.350993,0.100716,0.904017,0.726413,0.902893,0.701198,0.0155542,0.369137,0.522648,0.0110273,0.0844894,0.90005,0.114722,0.303219,0.797733,0.923645,0.481203,0.498058,0.957689,0.473078,0.777109,0.173132,0.0533525,0.078802,0.246313,0.383326,0.757646,0.0933185,0.984105,0.610153,0.439382,0.256078,0.897651,0.318543,0.226603,0.399133,0.680565,0.771786,0.0939339,0.644599,0.809314,0.728906,0.455787,0.197096,0.886978,0.248047,0.842482,0.581472,0.740917,0.33748,0.0110683,0.719988,0.301347,0.394578,0.84452,0.79435,0.652805,0.431445,0.335058,0.444133,0.78614,0.948283,0.248289,0.883472,0.202916,0.553709,0.962443,0.36949,0.588579,0.142546,0.341503,0.807396,0.229803,0.652019,0.199273,0.291833,0.817904,0.329861,0.607721,0.857721,0.617814,0.528534,0.739592,0.422108,0.496183,0.973883,0.898708,0.422526,0.12518,0.579436,0.446094,0.777417,0.0653917,0.838402,0.938606,0.689361,0.623863,0.449039,0.358107,0.728609,0.959418,0.510605,0.86861,0.394991,0.502252,0.246,0.543999,0.236723,0.153817,0.879517,0.995936,0.299486,0.192707,0.648522,0.252245,0.140294,0.730299,0.0260461,0.710942,0.877972,0.880819,0.43645,0.127299,0.225877,0.925714,0.0166098,0.763999,0.176237,0.614075,0.921792,0.637917,0.0833861,0.334715,0.443578,0.988919,0.811278,0.904659,0.971517,0.915462,0.83498,0.0362819,0.408116,0.697827,0.0688954,0.96046,0.224529,0.0846865,0.893484,0.994861,0.115585,0.44374,0.480336,0.840846,0.255897,0.642872,0.50406,0.405515,0.0700507,0.505935,0.226393,0.742288,0.360067,0.591589,0.764411,0.237605,0.931833,0.526788,0.817843,0.511656,0.843672,0.45841,0.212741,0.660893,0.68938,0.827569,0.0249846,0.424483,0.905597,0.587262,0.263844,0.622301,0.340375,0.364566,0.44539,0.0793551,0.107558,0.537062,0.497098,0.052683,0.70344,0.444588,0.399797,0.395699,0.972593,0.334432,0.467422,0.229809,0.535435,0.804713,0.803212,0.937119,0.846985,0.778101,0.804156,0.0423517,0.764407,0.307027,0.295725,0.818824,0.111001,0.459475,0.651008,0.792553,0.937636,0.20059,0.532837,0.158962,0.55923,0.883954,0.526368,0.175515,0.268302,0.707172,0.547835,0.142963,0.927239,0.58052,0.180272,0.489602,0.812638,0.253854,0.64057,0.149656,0.140681,0.834715,0.507795,0.878462,0.622681,0.917864,0.0941572,0.151261,0.355896,0.511395,0.419065,0.713937,0.867123,0.656211,0.981926,0.84257,0.691018,0.627578,0.996616,0.852964,0.468618,0.510679,0.492365,0.424454,0.625638,0.204734,0.294569,0.306764,0.461879,0.119439,0.112605,0.0210457,0.166515,0.784813,0.922946,0.153937,0.224668,0.322539,0.323448,0.050867,0.988131,0.419023,0.378592,0.926296,0.278964,0.843453,0.0545792,0.247555,0.546502,0.831433,0.709539,0.311677,0.780592,0.859115,0.680201,0.951442,0.816289,0.827825,0.242837,0.273092,0.111284,0.548567,0.994558,0.0497566,0.0621826,0.0430759,0.508576,0.341752,0.55611,0.358355,0.353143,0.562656,0.0548539,0.49791,0.667731,0.47562,0.65503,0.611786,0.486237,0.575388,0.0360551,0.306761,0.766621,0.665056,0.512072,0.911185,0.671853,0.819538,0.355002,0.133137,0.52946,0.09634,0.866523,0.801465,0.00143594,0.481577,0.450379,0.902516,0.615092,0.77761,0.207789,0.526445,0.906027,0.1269,0.515736,0.214303,0.0241697,0.735373,0.693987,0.0129768,0.0406868,0.349559,0.548032,0.450561,0.877534,0.572209,0.377502,0.696651,0.565432,0.259207,0.229706,0.425393,0.857107,0.889168,0.359704,0.874182,0.971175,0.822778,0.341414,0.544708,0.0684452,0.00345337,0.0980544,0.936024,0.097916,0.530195,0.950603,0.602688,0.719114,0.836775,0.535379,0.857433,0.287232,0.175156,0.721406,0.255526,0.797389,0.427678,0.589249,0.267284,0.582849,0.959511,0.711983,0.867982,0.42856,0.261122,0.742392,0.462498,0.584487,0.804129,0.463052,0.459398,0.494852,0.245832,0.882185,0.896206,0.236815,0.324,0.191991,0.035719,0.752807,0.241989,0.00916082,0.880621,0.993673,0.124167,0.4887,0.111202,0.163779,0.401339,0.731272,0.348995,0.0558345,0.056132,0.150563,0.772888,0.136234,0.933117,0.680891,0.482957,0.730743,0.225481,0.447978,0.303757,0.422986,0.910463,0.0176563,0.730471,0.559568,0.544397,0.764482,0.352258,0.605428,0.63595,0.496575,0.927608,0.602787,0.225424,0.795777,0.594802,0.816445,0.0429372,0.936462,0.985533,0.299864,0.871273,0.248291,0.488706,0.260091,0.784507,0.419437,0.444793,0.179145,0.714399,0.965183,0.230135,0.852073,0.90574,0.357308,0.0976278,0.315101,0.689597,0.780497,0.304062,0.0646349,0.835146,0.972347,0.872857,0.00186139,0.792617,0.0889876,0.823745,0.846239,0.209941,0.794058,0.162745,0.645302,0.0931244,0.179178,0.329616,0.445515,0.723226,0.110733,0.262793,0.801742,0.00719684,0.778327,0.412392,0.101733,0.991104,0.596932,0.114543,0.101799,0.920373,0.182114,0.358017,0.871771,0.188321,0.354473,0.992578,0.560943,0.169932,0.179402,0.360063,0.770548,0.515331,0.602051,0.593447,0.698523,0.484054,0.695449,0.201704,0.0411472,0.913303,0.153496,0.568319,0.156571,0.922267,0.26156,0.998414,0.232054,0.691855,0.707252,0.138161,0.957955,0.115562,0.936446,0.303761,0.506374,0.829495,0.360777,0.34626,0.0408373,0.746198,0.0192604,0.7802,0.337329,0.5993,0.653779,0.340395,0.317543,0.740731,0.505449,0.216781,0.056685,0.0363536,0.791249,0.949899,0.721397,0.0329424,0.861148,0.46084,0.449047,0.858711,0.287718,0.0455735,0.937178,0.66725,0.00317973,0.605417,0.132852,0.151108,0.0302464,0.452627,0.726042,0.479791,0.404566,0.689779,0.325464,0.630846,0.532869,0.462631,0.981515,0.692898,0.703688,0.301965,0.885044,0.336629,0.926638,0.908763,0.0412667,0.562347,0.654142,0.0316301,0.153111,0.728281,0.3475,0.0982112,0.771208,0.712002,0.340115,0.386208,0.927491,0.680759,0.207558,0.808016,0.765801,0.553382,0.563755,0.718125,0.371238,0.510371,0.532552,0.576729,0.868109,0.411577,0.0618623,0.805846,0.640654,0.370606,0.0255135,0.366322,0.259845,0.315336,0.831536,0.11592,0.889018,0.837391,0.930451,0.5564,0.957879,0.503661,0.068684,0.282503,0.238812,0.870919,0.853628,0.180893,0.105444,0.713889,0.0681386,0.33209,0.80706,0.448513,0.502298,0.397857,0.566742,0.690436,0.824704,0.373174,0.0338128,0.991508,0.581808,0.482434,0.829046,0.152956,0.382972,0.733105,0.97167,0.662204,0.91301,0.347039,0.477159,0.599943,0.189621,0.797728,0.856633,0.793632,0.843893,0.218435,0.272662,0.83237,0.0542106,0.318712,0.423425,0.0946289,0.835003,0.00341803,0.430252,0.868792,0.01707,0.866785,0.479818,0.320392,0.501843,0.656664,0.532695,0.761641,0.110579,0.159303,0.27946,0.842958,0.619359,0.614729,0.582146,0.377585,0.145166,0.700697,0.871542,0.0943743,0.999314,0.665132,0.415665,0.260268,0.483481,0.603216,0.0317051,0.803368,0.919446,0.304591,0.117729,0.17181,0.833846,0.7149,0.242975,0.383666,0.346977,0.933689,0.529719,0.518833,0.184709,0.36286,0.473232,0.0679855,0.0289518,0.963692,0.457513,0.0871655,0.0586119,0.68064,0.812054,0.572883,0.481414,0.240992,0.246556,0.16284,0.539942,0.809613,0.944199,0.982794,0.69686,0.0776974,0.0435697,0.261803,0.0856112,0.497501,0.313746,0.964013,0.826639,0.483311,0.964282,0.918364,0.163857,0.0882385,0.31722,0.220399,0.593866,0.382315,0.471245,0.135434,0.268703,0.19636,0.160235,0.0618301,0.202244,0.622252,0.406038,0.180621,0.0516713,0.0658588,0.220376,0.0346678,0.417157,0.235675,0.946096,0.676113,0.884362,0.0836654,0.630413,0.847164,0.494272,0.148362,0.492978,0.987508,0.185401,0.826613,0.167272,0.00203484,0.579088,0.967328,0.0557438,0.548774,0.756664,0.750859,0.407964,0.330903,0.490363,0.297429,0.769494,0.8117,0.545543,0.840316,0.287385,0.834233,0.395493,0.113669,0.202575,0.623033,0.128043,0.687059,0.859478,0.481407,0.388518,0.509192,0.77296,0.12433,0.390735,0.0951601,0.679065,0.127278,0.645644,0.963136,0.798293,0.138516,0.539474,0.0120334,0.210956,0.168421,0.8322,0.420099,0.658151,0.976717,0.782683,0.909146,0.451265,0.432661,0.753139,0.592027,0.667252,0.00503874,0.880121,0.69659,0.950052,0.0186037,0.445317,0.302798,0.267954,0.308605,0.440445,0.584233,0.355886,0.0775791,0.00876403,0.0917367,0.0646559,0.796549,0.0237212,0.358902,0.983366,0.666064,0.690076,0.491491,0.392039,0.639912,0.242102,0.501935,0.467777,0.0313503,0.937521,0.791422,0.10254,0.595653,0.796675,0.0925543,0.245632,0.76623,0.588684,0.323853,0.370856,0.481795,0.946665,0.247099,0.85624,0.817262,0.997642,0.961473,0.682207,0.829937,0.0533723,|0.106235,0.235651,0.240418,0.239978,0.770665,0.990863,0.855226,0.804952,0.245111,0.518323,0.790366,0.940087,0.407741,0.0779273,0.330128,0.943958,0.843552,0.61061,0.417937,0.744755,0.175822,0.542901,0.688429,0.375203,0.030956,0.305533,0.265236,0.226667,0.353039,0.235195,0.557016,0.219704,0.00233692,0.603332,0.804763,0.906687,0.768196,0.894867,0.802455,0.168384,0.303821,0.221314,0.206185,0.680056,0.431983,0.870147,0.013932,0.274576,0.135404,0.653381,0.383964,0.491181,0.24822,0.890096,0.661073,0.735876,0.0827538,0.585533,0.210882,0.653248,0.186373,0.436522,0.59152,0.355413,0.661718,0.824144,0.439367,0.197212,0.722589,0.466681,0.737895,0.406605,0.707674,0.624402,0.911103,0.419003,0.764502,0.73408,0.0427431,0.845943,0.717262,0.642115,0.432241,0.166207,0.555287,0.0191597,0.170181,0.502966,0.841906,0.294507,0.788234,0.209935,0.528222,0.828861,0.0660312,0.501249,0.185911,0.235409,0.583907,0.578504,0.950954,0.988159,0.839807,0.540256,0.81448,0.54278,0.160976,0.952516,0.349599,0.615202,0.371895,0.167034,0.323526,0.543863,0.686215,0.327499,0.105391,0.744406,0.0618653,0.351253,0.156489,0.372621,0.269267,0.852197,0.719037,0.143099,0.0906737,0.276866,0.753343,0.937119,0.45111,0.780561,0.959914,0.794931,0.0390711,0.902687,0.189351,0.649802,0.269145,0.555991,0.424862,0.0102484,0.647347,0.189667,0.287446,0.488693,0.272964,0.829735,0.370692,0.472228,0.990112,0.611161,0.554289,0.359494,0.728119,0.705536,0.279459,0.319009,0.142364,0.248214,0.409904,0.536374,0.855895,0.616268,0.180282,0.718739,0.474265,0.277239,0.46064,0.576371,0.736874,0.455653,0.531181,0.335295,0.0711348,0.981011,0.586024,0.909651,0.438689,0.308543,0.117545,0.134371,0.725424,0.294373,0.638919,0.175467,0.0741323,0.369196,0.695932,0.770907,0.207693,0.836591,0.924703,0.967372,0.532346,0.881281,0.146264,0.410723,0.843068,0.2375,0.119124,0.63372,0.64863,0.335563,0.169754,0.959602,0.47264,0.571034,0.144105,0.170589,0.450541,0.173642,0.387561,0.96169,0.326022,0.301641,0.176425,0.175531,0.963245,0.606537,0.689454,0.673832,0.804758,0.275093,0.838515,0.818135,0.195099,0.741922,0.807031,0.630111,0.0829246,0.0298476,0.184781,0.0149553,0.525235,0.669657,0.614848,0.983555,0.26464,0.615603,0.228953,0.778907,0.0937382,0.0975628,0.533438,0.133828,0.173936,0.352137,0.610379,0.872465,0.991145,0.858447,0.890986,0.235017,0.0361868,0.165394,0.918392,0.573472,0.476195,0.997985,0.0724267,0.837923,0.705935,0.121107,0.925438,0.49376,0.324784,0.057856,0.917063,0.640746,0.457856,0.36276,0.0331075,0.836574,0.230076,0.504124,0.013181,0.545699,0.575751,0.729508,0.692401,0.0915359,0.225185,0.528906,0.817778,0.864673,0.694083,0.978705,0.557785,0.770768,0.548499,0.498037,0.0432231,0.187986,0.56183,0.821834,0.999633,0.274182,0.578837,0.335379,0.512961,0.892697,0.915493,0.248668,0.873877,0.914501,0.983912,0.46695,0.740318,0.79867,0.482675,0.711317,0.0779509,0.00363606,0.271375,0.414913,0.857354,0.713368,0.583832,0.540989,0.00953299,0.337456,0.941823,0.205282,0.454811,0.272689,0.643627,0.72344,0.782504,0.169987,0.485909,0.0916086,0.390215,0.00709099,0.232629,0.475443,0.834366,0.906182,0.540014,0.63757,0.391038,0.0289234,0.956845,0.0183956,0.615739,0.724208,0.117783,0.160866,0.371104,0.688403,0.95751,0.582315,0.08906,0.072058,0.869139,0.98537,0.554126,0.101007,0.301133,0.807951,0.909588,0.434742,0.608106,0.212582,0.309285,0.508411,0.841116,0.89876,0.483437,0.299375,0.317865,0.19261,0.274307,0.261597,0.702123,0.323181,0.0695381,0.956506,0.572556,0.224896,0.825149,0.831664,0.840134,0.010412,0.308421,0.807826,0.0953063,0.388319,0.103306,0.582401,0.142983,0.277758,0.663943,0.41682,0.214495,0.71916,0.474189,0.44538,0.995033,0.123958,0.673036,0.0234606,0.507574,0.242979,0.873778,0.793509,0.0780501,0.580062,0.650522,0.54449,0.57056,0.219422,0.340101,0.0206533,0.159149,0.49787,0.963039,0.565332,0.107173,0.260547,0.0593662,0.912811,0.718255,0.447698,0.976727,0.787492,0.866999,0.454275,0.552724,0.650678,0.627546,0.844616,0.73646,0.174888,0.628845,0.844704,0.172267,0.698253,0.861282,0.635104,0.364262,0.281627,0.978115,0.856658,0.656059,0.907577,0.60317,0.214616,0.126154,0.966061,0.750134,0.796663,0.959782,0.326127,0.638709,0.0116718,0.273226,0.829332,0.878113,0.630197,0.410839,0.551492,0.886302,0.764966,0.898751,0.756019,0.618677,0.486582,0.0618792,0.367208,0.219744,0.403904,0.999047,0.529695,0.299192,0.430111,0.0814423,0.878628,0.543271,0.150886,0.217351,0.0727827,0.941305,0.312437,0.751052,0.728736,0.130273,0.900943,0.657412,0.134307,0.753101,0.169387,0.394109,0.133498,0.427896,0.781772,0.500584,0.98358,0.412916,0.65598,0.70499,0.217375,0.295546,0.718765,0.477458,0.662169,0.504933,0.412408,0.737643,0.0716674,0.690058,0.40954,0.102864,0.0140604,0.754772,0.600195,0.576614,0.669969,0.487764,0.790745,0.988137,0.893633,0.575202,0.582642,0.640263,0.13636,0.643029,0.111295,0.191661,0.965043,0.275185,0.830527,0.0609517,0.310523,0.472118,0.66734,0.335139,0.706964,0.698351,0.807388,0.961316,0.0153307,0.60675,0.49104,0.969502,0.356622,0.332344,0.506518,0.0349613,0.813206,0.998436,0.367546,0.259348,0.524155,0.721894,0.0278844,0.399339,0.86793,0.13495,0.510351,0.6398,0.0852089,0.409137,0.876848,0.820987,0.719914,0.561583,0.852401,0.935315,0.487032,0.709346,0.0982988,0.951042,0.0609308,0.0565159,0.43581,0.146921,0.925449,0.262729,0.518172,0.929605,0.967302,0.352353,0.213589,0.164003,0.0163208,0.81945,0.549139,0.511742,0.761049,0.116604,0.858328,0.715541,0.121521,0.567278,0.0985388,0.794874,0.995097,0.424527,0.141035,0.568875,0.672641,0.68963,0.798701,0.214015,0.167783,0.0927628,0.323461,0.800438,0.884076,0.625686,0.696015,0.608554,0.851076,0.148191,0.877772,0.945693,0.496555,0.499556,0.315727,0.331425,0.565839,0.291069,0.80775,0.465992,0.634798,0.206793,0.558975,0.546847,0.268437,0.396968,0.320017,0.61426,0.688064,0.367273,0.605719,0.323711,0.479486,0.244824,0.892945,0.940954,0.726833,0.147367,0.417495,0.691406,0.846489,0.74846,0.580492,0.654281,0.889389,0.635195,0.211282,0.446429,0.575393,0.47257,0.606053,0.564794,0.93948,0.193415,0.33692,0.767178,0.929023,0.454631,0.113179,0.133478,0.826153,0.251081,0.363433,0.347125,0.194247,0.132985,0.81279,0.635064,0.457924,0.763056,0.867711,0.817844,0.500022,0.085126,0.988831,0.284668,0.987253,0.263955,0.65531,0.256662,0.451507,0.638866,0.296925,0.257057,0.949483,0.336406,0.183121,0.803136,0.538181,0.18188,0.639789,0.90721,0.450489,0.406191,0.685655,0.198704,0.313376,0.422047,0.719846,0.984536,0.258976,0.452248,0.132061,0.30094,0.12305,0.0644473,0.772305,0.624859,0.0763441,0.143658,0.394903,0.110537,0.316169,0.931469,0.73835,0.78782,0.0945418,0.362088,0.460709,0.190279,0.230487,0.705089,0.76504,0.184313,0.180911,0.419185,0.592765,0.0384375,0.663099,0.44844,0.24887,0.921619,0.55108,0.805393,0.279051,0.879145,0.0455605,0.778246,0.791695,0.666404,0.219406,0.848248,0.319294,0.0430763,0.921595,0.977292,0.183332,0.0521513,0.314882,0.335176,0.728568,0.284498,0.76707,0.00833225,0.736784,0.690576,0.778821,0.730576,0.652499,0.717312,0.287025,0.306949,0.700885,0.0133315,0.611679,0.544071,0.988568,0.339083,0.218389,0.792003,0.94336,0.479446,0.517012,0.717379,0.718084,0.948612,0.592909,0.0589083,0.480009,0.589829,0.885125,0.523116,0.793159,0.355835,0.056177,0.212121,0.390831,0.97508,0.92028,0.415465,0.806147,0.493897,0.844032,0.642049,0.702462,0.925871,0.725275,0.151051,0.399664,0.746427,0.950599,0.226499,0.195818,0.25486,0.271015,0.757194,0.662195,0.723678,0.637686,0.248112,0.363365,0.71053,0.350985,0.86849,0.754254,0.518519,0.75018,0.448351,0.825085,0.91335,0.000193059,0.089128,0.634843,0.970297,0.144262,0.718348,0.150794,0.948377,0.765542,0.561129,0.397813,0.336542,0.0980341,0.969689,0.707906,0.0108433,0.757446,0.921333,0.30237,0.453097,0.409721,0.651946,0.45307,0.985045,0.389443,0.0643151,0.274602,0.610767,0.151089,0.482662,0.106192,0.815765,0.442282,0.883488,0.891827,0.350071,0.902551,0.513405,0.288335,0.950961,0.000849664,0.0494247,0.376429,0.764152,0.643765,0.404954,0.742091,0.622607,0.329887,0.484374,0.859753,0.792251,0.387044,0.947011,0.952981,0.0593209,0.00119418,0.818555,0.337674,0.691045,0.0817901,0.0564425,0.0301717,0.569835,0.345329,0.205659,0.672148,0.219889,0.742487,0.124376,0.911439,0.0764419,0.756181,0.797568,0.191558,0.764914,0.343479,0.867275,0.524459,0.688516,0.145503,0.814088,0.185912,0.127433,0.881419,0.453468,0.395218,0.705962,0.849319,0.282907,0.491538,0.815165,0.4299,0.389672,0.652473,0.773684,0.542617,0.564165,0.784125,0.362224,0.034889,0.609477,0.109946,0.999333,0.0309764,0.114248,0.280604,0.672231,0.0735058,0.765919,0.199504,0.437529,0.279877,0.587182,0.563466,0.17315,0.996594,0.18856,0.806002,0.107556,0.196844,0.0450857,0.61746,0.807413,0.614032,0.189694,0.396522,0.686701,0.869153,0.386914,0.310789,0.0975984,0.244348,0.742723,0.705721,0.781548,0.0479046,0.277955,0.0378745,0.125325,0.189524,0.0328218,0.43253,0.356772,0.711879,0.207841,0.365792,0.727891,0.142424,0.585056,0.443339,0.251436,0.544511,0.849845,0.211152,0.646772,0.593787,0.0193307,0.927284,0.309821,0.648569,0.978521,0.113491,0.394667,0.528443,0.152233,0.456255,0.0155916,0.147432,0.94529,0.176869,0.803505,0.327638,0.000394166,0.386524,|0.379427,0.742977,0.626645,0.155898,0.0594988,0.752799,0.724145,0.382535,0.974943,0.116377,0.3131,0.337874,0.695977,0.203873,0.531481,0.453516,0.286731,0.751993,0.869291,0.829822,0.0321403,0.923597,0.537222,0.40195,0.735411,0.800921,0.678569,0.095367,0.410008,0.67325,0.58147,0.806404,0.780075,0.726027,0.767222,0.687862,0.0663999,0.106122,0.56246,0.120096,0.578478,0.792217,0.954539,0.882468,0.298966,0.524952,0.830383,0.47503,0.75223,0.323982,0.802518,0.64406,0.239412,0.128328,0.729893,0.268618,0.341219,0.790608,0.107828,0.155423,0.0330294,0.883906,0.723366,0.422819,0.480261,0.110594,0.280257,0.377768,0.0682259,0.639574,0.501087,0.274089,0.80778,0.00774765,0.324236,0.489875,0.482027,0.710963,0.284802,0.845426,0.992164,0.553121,0.603945,0.160214,0.971609,0.517953,0.195929,0.143953,0.0037303,0.647856,0.745275,0.755897,0.199547,0.850845,0.121374,0.667394,0.204189,0.593941,0.386764,0.877318,0.41518,0.572668,0.940416,0.435343,0.173494,0.261474,0.171601,0.729601,0.305295,0.742778,0.0298712,0.425032,0.499418,0.829242,0.35173,0.538957,0.511239,0.959487,0.667734,0.437222,0.383751,0.467607,0.436643,0.0589488,0.836758,0.0338337,0.326579,0.46653,0.108314,0.600572,0.21135,0.889852,0.88688,0.890009,0.372047,0.859545,0.477794,0.416732,0.290668,0.388661,0.965056,0.104023,0.830471,0.154687,0.735636,0.344841,0.236016,0.196877,0.26696,0.527373,0.636262,0.675887,0.283401,0.833747,0.548476,0.0623382,0.538219,0.489191,0.321868,0.289466,0.518736,0.229666,0.169335,0.266761,0.798309,0.398539,0.253222,0.42426,0.822868,0.526132,0.609558,0.824662,0.629106,0.0280556,0.473796,0.363126,0.389158,0.0103268,0.227167,0.663905,0.680076,0.925328,0.793844,0.969909,0.88189,0.702105,0.406797,0.237475,0.291798,0.702901,0.377552,0.923348,0.221468,0.577707,0.601321,0.196572,0.598283,0.975094,0.470279,0.268747,0.441928,0.797434,0.0116268,0.344456,0.597925,0.72735,0.406874,0.658991,0.750667,0.0122318,0.415737,0.416045,0.25901,0.978657,0.276384,0.0310121,0.0324619,0.22522,0.378002,0.506139,0.202416,0.085397,0.31158,0.189392,0.014127,0.159272,0.609986,0.190747,0.00700396,0.155053,0.840576,0.643938,0.312772,0.0382121,0.821131,0.108151,0.886858,0.160659,0.6992,0.889672,0.882982,0.130138,0.530242,0.0499131,0.872525,0.513876,0.422137,0.239538,0.781517,0.469538,0.616782,0.829216,0.4399,0.859653,0.422166,0.320443,0.749823,0.19341,0.996908,0.65496,0.739707,0.706179,0.306807,0.647177,0.738753,0.337297,0.163481,0.80706,0.661447,0.876196,0.992486,0.890886,0.159254,0.687912,0.869382,0.589913,0.489713,0.930687,0.380761,0.577687,0.610697,0.0980234,0.232851,0.54771,0.73842,0.24077,0.663088,0.311766,0.0185084,0.943049,0.347587,0.368353,0.624601,0.785091,0.358053,0.877922,0.167498,0.585996,0.184647,0.0258264,0.476158,0.317752,0.48729,0.0385391,0.0634431,0.125923,0.464727,0.329147,0.63169,0.403111,0.897409,0.674384,0.40728,0.207325,0.887069,0.699992,0.551154,0.367353,0.715118,0.32544,0.867157,0.660402,0.906584,0.0515447,0.890724,0.412009,0.369875,0.830081,0.900463,0.769446,0.274148,0.239526,0.35092,0.0860268,0.192654,0.144915,0.1352,0.26438,0.746776,0.463311,0.0921322,0.114063,0.0458703,0.333577,0.0925236,0.412886,0.497616,0.0601513,0.804066,0.0907515,0.0808357,0.279472,0.835451,0.319206,0.270416,0.0108864,0.205316,0.883122,0.763156,0.4931,0.96492,0.586292,0.0410357,0.537388,0.0037784,0.776916,0.278554,0.421759,0.721581,0.91006,0.483699,0.847507,0.190505,0.90744,0.301232,0.881142,0.920941,0.598785,0.151001,0.620933,0.588139,0.556322,0.435325,0.930178,0.459196,0.273961,0.950998,0.994669,0.703439,0.597476,0.274789,0.353652,0.113484,0.35026,0.721233,0.919062,0.801041,0.50197,0.946082,0.688724,0.205483,0.255218,0.936386,0.540653,0.486181,0.377339,0.335019,0.563609,0.887035,0.0830085,0.0511674,0.514462,0.917682,0.29009,0.728906,0.122754,0.468116,0.887609,0.433961,0.872956,0.580352,0.772956,0.561906,0.109986,0.447996,0.357503,0.0385687,0.306072,0.485193,0.435577,0.402963,0.91991,0.516788,0.467318,0.245387,0.671831,0.445686,0.146955,0.413154,0.736815,0.609044,0.724369,0.819791,0.658316,0.373808,0.29664,0.658868,0.738441,0.331249,0.0520263,0.954597,0.528738,0.440268,0.796039,0.239826,0.361801,0.552582,0.233347,0.109178,0.743101,0.62587,0.508387,0.392648,0.888654,0.191591,0.633702,0.606164,0.182094,0.355287,0.428708,0.598599,0.307131,0.727893,0.807602,0.0110331,0.247045,0.353952,0.455173,0.373248,0.930364,0.983155,0.931466,0.835702,0.606798,0.342474,0.386878,0.58756,0.420441,0.54675,0.900912,0.270486,0.74638,0.258089,0.969267,0.00811803,0.656474,0.0952802,0.486974,0.777673,0.857059,0.597902,0.577229,0.339223,0.74412,0.940589,0.333444,0.564745,0.567164,0.0663433,0.466318,0.894549,0.518988,0.0270891,0.258139,0.264694,0.589025,0.644545,0.979309,0.669812,0.247209,0.524844,0.419365,0.345837,0.326541,0.887869,0.11639,0.362545,0.817581,0.721621,0.206551,0.504239,0.51586,0.692366,0.862051,0.991999,0.937037,0.126656,0.501495,0.173492,0.37622,0.476016,0.693304,0.586204,0.806145,0.635126,0.0494639,0.183686,0.611764,0.812453,0.910494,0.671584,0.837725,0.515388,0.186093,0.259233,0.139242,0.100582,0.023864,0.346195,0.288763,0.21694,0.247862,0.874518,0.833413,0.214144,0.833702,0.88688,0.177784,0.95801,0.387299,0.760488,0.349234,0.535198,0.216332,0.165495,0.396757,0.611865,0.516119,0.809274,0.063199,0.0152934,0.866526,0.0248441,0.390724,0.556715,0.78666,0.582961,0.158441,0.580983,0.96081,0.993538,0.835217,0.889304,0.606796,0.968897,0.915689,0.630379,0.967287,0.604029,0.660407,0.253431,0.144214,0.555854,0.762818,0.887158,0.70417,0.356849,0.361966,0.871796,0.965071,0.584343,0.752003,0.118573,0.313842,0.666362,0.376803,0.0973179,0.614604,0.365616,0.506436,0.436686,0.42876,0.455892,0.894282,0.587648,0.75001,0.827243,0.115185,0.796869,0.226483,0.524894,0.302198,0.216833,0.540949,0.516645,0.398064,0.671909,0.153521,0.358912,0.235635,0.649719,0.592431,0.384458,0.924696,0.010319,0.391542,0.123276,0.371222,0.894396,0.413776,0.758847,0.101032,0.761775,0.00463325,0.83245,0.656604,0.26536,0.814907,0.859898,0.571623,0.397492,0.0317685,0.996032,0.152115,0.495547,0.0374741,0.743339,0.0153666,0.807503,0.331764,0.908602,0.512678,0.678643,0.753071,0.391367,0.818292,0.416044,0.989059,0.538666,0.420401,0.412253,0.41246,0.456679,0.642493,0.230597,0.630652,0.189821,0.967565,0.93423,0.508418,0.949405,0.671063,0.642385,0.556168,0.954017,0.458229,0.601402,0.725963,0.458473,0.575203,0.682273,0.750067,0.141716,0.320344,0.611156,0.35902,0.161637,0.229473,0.468,0.860938,0.581889,0.217427,0.850102,0.296021,0.262595,0.950513,0.0222592,0.162165,0.233969,0.383645,0.525092,0.107225,0.246401,0.227421,0.38084,0.761809,0.569134,0.136829,0.543151,0.241378,0.271568,0.994039,0.549891,0.214682,0.864442,0.0679795,0.160131,0.168201,0.673127,0.24378,0.794069,0.470354,0.69293,0.325565,0.873491,0.725893,0.472616,0.925153,0.297201,0.759189,0.631907,0.381617,0.959002,0.818142,0.646795,0.0312928,0.660037,0.876198,0.649187,0.464281,0.204883,0.314379,0.842243,0.585974,0.101654,0.0114778,0.717643,0.83189,0.891254,0.242629,0.0629867,0.448618,0.0789292,0.303763,0.82446,0.758966,0.683719,0.735869,0.638027,0.133127,0.0960912,0.0232747,0.412052,0.0153939,0.0320867,0.178659,0.915621,0.330383,0.728298,0.585431,0.184812,0.982611,0.603519,0.682317,0.831979,0.615177,0.597976,0.356185,0.968259,0.175278,0.576185,0.0956136,0.86232,0.57153,0.0145664,0.580674,0.159039,0.559947,0.831346,0.862098,0.579633,0.277562,0.0302448,0.394039,0.112527,0.687622,0.572173,0.752357,0.787749,0.580389,0.936747,0.321108,0.355157,0.110353,0.197203,0.750619,0.862257,0.689567,0.518312,0.865698,0.645397,0.706101,0.938853,0.910084,0.238678,0.718818,0.935452,0.672949,0.00685608,0.351331,0.358975,0.496896,0.458685,0.809451,0.606585,0.0985252,0.319616,0.891395,0.997063,0.75044,0.858588,0.500156,0.179119,0.145638,0.782721,0.465021,0.48917,0.160302,0.853116,0.727496,0.452991,0.0314909,0.538185,0.740292,0.22768,0.0631656,0.614272,0.50165,0.183662,0.441814,0.7839,0.541828,0.906368,0.659988,0.366998,0.650257,0.698271,0.665056,0.252535,0.199428,0.147471,0.530289,0.143469,0.946999,0.296382,0.202149,0.66275,0.43506,0.742112,0.902829,0.572385,0.776043,0.700917,0.777403,0.713197,0.976897,0.753517,0.424615,0.954898,0.590542,0.414297,0.316286,0.79333,0.700549,0.213718,0.15781,0.608594,0.723955,0.591336,0.368654,0.812101,0.26894,0.2182,0.435541,0.724108,0.50993,0.385314,0.524172,0.0290187,0.418881,0.98185,0.658077,0.909934,0.0223551,0.168063,0.516626,0.723593,0.596333,0.102392,0.254779,0.425915,0.375891,0.816667,0.559149,0.177845,0.561158,0.57411,0.375113,0.0285882,0.494909,0.192018,0.506862,0.51709,0.65586,0.730555,0.181522,0.605811,0.844524,0.198309,0.786209,0.950586,0.508094,0.930688,0.199302,0.47572,0.506816,0.176817,0.488101,0.39748,0.601242,0.103815,0.655654,0.341881,0.218109,0.956531,0.875002,0.176049,0.700755,0.703049,0.409555,0.100601,0.569247,0.869269,0.202949,0.0472428,0.991151,0.81876,0.348327,0.480586,0.662189,0.0538655,0.483453,0.530376,0.925924,0.713225,0.255023,0.845064,0.226912,0.101881,0.93581,0.73747,0.188568,0.789433,0.408404,0.80835,0.718742,0.908118,0.907221,0.57666,0.916239,|0.577048,0.886803,0.732607,0.313867,0.373066,0.698156,0.416986,0.36438,0.768239,0.985796,0.111341,0.326959,0.989915,0.984393,0.735401,0.739562,0.602079,0.669301,0.266966,0.532475,0.968878,0.00555915,0.213976,0.889135,0.187244,0.0455993,0.441231,0.437373,0.739774,0.0835207,0.594817,0.282983,0.0590106,0.283383,0.787365,0.826,0.692713,0.225885,0.606955,0.899552,0.158551,0.734796,0.758772,0.740622,0.595871,0.286719,0.845459,0.0424541,0.130402,0.15491,0.523885,0.18886,0.630345,0.781226,0.522651,0.760915,0.752965,0.21158,0.976889,0.0912234,0.473182,0.703632,0.300928,0.25566,0.797117,0.366478,0.956077,0.165957,0.155683,0.750101,0.0505112,0.72812,0.857479,0.458771,0.541278,0.228359,0.966516,0.559696,0.158828,0.896329,0.941492,0.618167,0.801227,0.306291,0.468364,0.89417,0.810739,0.333093,0.0296763,0.454415,0.830888,0.5403,0.338344,0.0331154,0.0169905,0.463595,0.0773044,0.196791,0.125923,0.00959229,0.639157,0.538093,0.802384,0.396533,0.053569,0.731437,0.118017,0.313232,0.927478,0.143209,0.666564,0.599068,0.39457,0.387614,0.84086,0.965553,0.501054,0.318993,0.881068,0.770521,0.709944,0.172931,0.0476676,0.243758,0.403141,0.655762,0.308264,0.634227,0.100075,0.738943,0.428568,0.898817,0.5214,0.429369,0.34506,0.336089,0.691754,0.0553568,0.610396,0.596923,0.76865,0.903417,0.297067,0.389751,0.158381,0.858213,0.801283,0.710946,0.73797,0.238781,0.29943,0.882492,0.0426079,0.494741,0.0280397,0.890697,0.275097,0.783989,0.0818671,0.287969,0.0475906,0.876169,0.502773,0.511368,0.778527,0.719387,0.994089,0.481476,0.507244,0.535589,0.764473,0.904003,0.900776,0.525606,0.163167,0.55276,0.22857,0.260966,0.95145,0.474728,0.164414,0.614563,0.857335,0.0114929,0.769406,0.422811,0.783389,0.757611,0.594998,0.0860988,0.761409,0.485904,0.14096,0.26527,0.182139,0.582991,0.558291,0.474393,0.873527,0.0156183,0.525931,0.502267,0.0616954,0.535867,0.952426,0.941123,0.850807,0.584664,0.723527,0.232648,0.776544,0.783512,0.282628,0.647595,0.377149,0.605302,0.466586,0.677372,0.113789,0.733671,0.437837,0.429944,0.700668,0.505191,0.0192196,0.506206,0.155331,0.23523,0.820772,0.857812,0.710901,0.628308,0.793118,0.532751,0.518805,0.248986,0.761762,0.452957,0.523041,0.123018,0.942128,0.747124,0.13715,0.618589,0.974105,0.814621,0.834374,0.870272,0.860432,0.0463099,0.454637,0.365161,0.618001,0.301788,0.825449,0.915668,0.758386,0.797944,0.0447611,0.514104,0.0277653,0.304796,0.448561,0.568819,0.126209,0.245878,0.721629,0.988729,0.827373,0.217552,0.0709811,0.505236,0.843306,0.790052,0.106464,0.250836,0.9914,0.582358,0.28216,0.979933,0.0571017,0.399516,0.525989,0.418894,0.0515553,0.255858,0.834325,0.553414,0.230264,0.969989,0.779866,0.178996,0.475338,0.196448,0.195024,0.740065,0.855628,0.807811,0.81028,0.80876,0.453166,0.209876,0.994379,0.130398,0.645558,0.728974,0.0692639,0.114375,0.683678,0.0902173,0.403128,0.130316,0.272236,0.614432,0.168334,0.857067,0.215028,0.0804333,0.319202,0.371715,0.553155,0.6202,0.910871,0.691775,0.716322,0.782566,0.0576186,0.752215,0.100188,0.86295,0.184816,0.147631,0.749374,0.443599,0.0408263,0.718772,0.831842,0.643056,0.883618,0.692127,0.91433,0.102275,0.32918,0.00646174,0.96395,0.815356,0.691434,0.458218,0.0021261,0.839634,0.8869,0.601733,0.414526,0.470805,0.297084,0.613866,0.748536,0.90064,0.0421973,0.102005,0.281868,0.885721,0.502949,0.855909,0.61236,0.951709,0.768803,0.706801,0.0241396,0.978052,0.607366,0.304041,0.193638,0.136712,0.143196,0.166591,0.4956,0.524498,0.409118,0.852913,0.381679,0.487138,0.432743,0.383983,0.0992847,0.107968,0.879471,0.397342,0.39758,0.879353,0.77021,0.237,0.798077,0.636009,0.464296,0.978123,0.0741169,0.229429,0.519801,0.357609,0.871691,0.598091,0.444783,0.322542,0.761325,0.58189,0.527977,0.483469,0.253671,0.716907,0.112913,0.0180368,0.952933,0.319176,0.337187,0.918833,0.0433595,0.0334244,0.709636,0.44746,0.412056,0.731658,0.0904771,0.218576,0.706155,0.830045,0.19499,0.761256,0.81887,0.679611,0.292701,0.0464453,0.846194,0.911291,0.866872,0.0431887,0.769544,0.0756696,0.27621,0.717677,0.0747467,0.976404,0.479703,0.981272,0.0438627,0.366718,0.706863,0.575851,0.00196111,0.369694,0.899228,0.0142928,0.123276,0.249692,0.811878,0.855499,0.556537,0.208512,0.491847,0.554941,0.441976,0.139813,0.984773,0.793312,0.56324,0.62778,0.316656,0.379501,0.153241,0.812313,0.0978628,0.080403,0.24098,0.590919,0.77096,0.954894,0.174231,0.551217,0.835849,0.851106,0.86856,0.784951,0.519964,0.337353,0.348985,0.729225,0.263781,0.286705,0.185747,0.657722,0.802163,0.431605,0.114265,0.231005,0.823579,0.58952,0.921687,0.382483,0.568269,0.453027,0.449327,0.510031,0.593397,0.129779,0.314178,0.109698,0.569272,0.603415,0.0832278,0.424995,0.0563229,0.330506,0.512083,0.492142,0.473373,0.415299,0.508282,0.163191,0.665391,0.922129,0.339608,0.674157,0.261025,0.171439,0.833124,0.980693,0.315607,0.94267,0.662046,0.45012,0.906988,0.718119,0.803389,0.686907,0.945925,0.916606,0.316027,0.714447,0.558754,0.850657,0.179058,0.69132,0.288935,0.712149,0.337296,0.769914,0.887519,0.899468,0.343947,0.766171,0.0301254,0.0874503,0.728161,0.348606,0.362441,0.977164,0.295102,0.798025,0.498703,0.886058,0.638055,0.227984,0.690495,0.978987,0.790088,0.893134,0.134254,0.914158,0.925434,0.0527883,0.547645,0.523784,0.583361,0.0543649,0.193743,0.90952,0.914198,0.460385,0.864512,0.576237,0.550298,0.959811,0.791154,0.403576,0.674297,0.69861,0.125098,0.120854,0.725324,0.247798,0.758717,0.511877,0.701086,0.188771,0.707234,0.269131,0.630628,0.078167,0.24758,0.891972,0.654923,0.232266,0.132777,0.0686012,0.724033,0.219028,0.0294818,0.530819,0.809981,0.72135,0.118239,0.770915,0.239791,0.838143,0.0870802,0.00971675,0.891012,0.563189,0.309774,0.00890964,0.329707,0.936044,0.958917,0.967047,0.013469,0.671898,0.388507,0.920115,0.325385,0.834033,0.504456,0.523893,0.0797529,0.987207,0.655692,0.0278788,0.693923,0.839959,0.0129669,0.427397,0.909588,0.740763,0.381829,0.44826,0.413505,0.505877,0.295695,0.937983,0.18827,0.491379,0.13869,0.508631,0.527576,0.8731,0.397361,0.741166,0.539496,0.646039,0.921463,0.328002,0.162342,0.0034734,0.393152,0.0272763,0.509574,0.2197,0.802993,0.622026,0.897485,0.513057,0.133492,0.111457,0.460367,0.970461,0.658697,0.414048,0.270066,0.15696,0.685427,0.0114478,0.438604,0.458517,0.351003,0.548756,0.864385,0.162426,0.567519,0.722095,0.11914,0.0835522,0.281568,0.806451,0.194184,0.358003,0.0575906,0.503399,0.469767,0.332975,0.969348,0.64827,0.335008,0.332629,0.0406318,0.526838,0.283834,0.798623,0.356866,0.264221,0.282617,0.165083,0.449764,0.187197,0.808623,0.302718,0.523901,0.0069809,0.253401,0.829089,0.116777,0.299821,0.243805,0.137872,0.615057,0.494544,0.976376,0.946928,0.22555,0.187024,0.387634,0.00152564,0.775096,0.959223,0.37904,0.139358,0.596972,0.518588,0.691185,0.978325,0.904151,0.387981,0.689358,0.866333,0.807271,0.588072,0.694194,0.922648,0.215478,0.133899,0.0757378,0.926114,0.251992,0.203393,0.600865,0.35076,0.687256,0.988574,0.70611,0.495896,0.82742,0.92727,0.134241,0.524876,0.557092,0.419388,0.370688,0.103579,0.177024,0.269282,0.40197,0.346869,0.167957,0.482375,0.000279903,0.19664,0.74533,0.016657,0.750457,0.241028,0.714727,0.825579,0.566225,0.0771002,0.561285,0.180637,0.949761,0.946768,0.171174,0.0868232,0.990532,0.45072,0.899706,0.371349,0.911239,0.199831,0.773095,0.474851,0.514807,0.572212,0.414217,0.766261,0.455059,0.351657,0.623705,0.678042,0.599475,0.652688,0.575076,0.0421473,0.74128,0.444156,0.398273,0.233989,0.525141,0.0690646,0.0736782,0.394367,0.646861,0.1492,0.946115,0.169444,0.0503292,0.0583304,0.0629063,0.57386,0.794503,0.755973,0.0146735,0.0724744,0.818863,0.727683,0.947235,0.530297,0.377677,0.263135,0.369605,0.243759,0.575048,0.0931189,0.531128,0.994462,0.0782332,0.136749,0.0337987,0.315632,0.456519,0.208095,0.154378,0.11413,0.87206,0.732388,0.328132,0.348245,0.347131,0.646584,0.953125,0.665977,0.234837,0.636797,0.387645,0.231479,0.14039,0.333101,0.496522,0.568908,0.463723,0.824675,0.499329,0.27547,0.0916224,0.695294,0.493379,0.303513,0.996447,0.221545,0.51061,0.302211,0.892884,0.515743,0.851931,0.94192,0.94908,0.734884,0.876581,0.631416,0.616376,0.727291,0.738132,0.372132,0.285934,0.470122,0.629473,0.43355,0.0912663,0.689443,0.17863,0.981796,0.198282,0.027868,0.603096,0.466987,0.940735,0.489538,0.739981,0.670393,0.661301,0.992774,0.897087,0.811038,0.204082,0.952107,0.657586,0.99685,0.932413,0.888943,0.717884,0.220248,0.55959,0.39432,0.546104,0.389106,0.14411,0.642461,0.172146,0.607672,0.224309,0.598759,0.0326341,0.129002,0.741188,0.0715412,0.0996293,0.927898,0.00996423,0.074307,0.75651,0.545326,0.0985696,0.19401,0.222109,0.0528872,0.248059,0.69648,0.964955,0.274952,0.193836,0.213693,0.485651,0.00744402,0.12695,0.98805,0.32361,0.173719,0.00548249,0.00412446,0.700709,0.220648,0.975814,0.854692,0.383061,0.0954857,0.448491,0.558246,0.556281,0.613838,0.0244232,0.512678,0.23504,0.626332,0.409385,0.753981,0.0451756,0.451439,0.86111,0.289306,0.644383,0.228946,0.247804,0.00758797,0.715331,0.401171,0.679359,0.415311,0.930126,0.561782,0.622607,0.186167,0.621572,0.578508,0.105416,0.838592,0.960342,0.839202,0.653139,0.110321,0.233071,0.835203,0.999531,0.140106,0.448142,0.488998,|0.643681,0.218931,0.264718,0.79784,0.705216,0.345499,0.0866408,0.134748,0.382969,0.126068,0.0817718,0.681898,0.811566,0.955144,0.556791,0.966026,0.988792,0.929216,0.935957,0.288585,0.54373,0.905792,0.973786,0.192777,0.601073,0.607254,0.732455,0.590619,0.0979485,0.331603,0.0412846,0.328667,0.986459,0.988883,0.925495,0.506612,0.213671,0.79911,0.0247291,0.791702,0.420036,0.815307,0.748995,0.370341,0.873691,0.371713,0.219283,0.864845,0.378966,0.066855,0.0378147,0.770601,0.00231135,0.00610751,0.708084,0.677575,0.607543,0.151376,0.424624,0.63041,0.00146359,0.503606,0.180626,0.494847,0.74797,0.124593,0.105389,0.685706,0.326883,0.780573,0.510158,0.568288,0.465616,0.683087,0.641108,0.457737,0.894746,0.621875,0.0963848,0.571578,0.154345,0.653185,0.0275424,0.590916,0.20506,0.839174,0.885627,0.792955,0.19205,0.249739,0.841295,0.270344,0.546779,0.717884,0.496352,0.706361,0.606992,0.692414,0.614214,0.150793,0.78152,0.906987,0.284904,0.651092,0.8078,0.753906,0.385686,0.000502765,0.23984,0.162418,0.215885,0.085094,0.944599,0.93839,0.892625,0.868967,0.645546,0.307229,0.378464,0.14763,0.585391,0.468834,0.780586,0.800361,0.669133,0.622697,0.668819,0.253083,0.558286,0.427062,0.231102,0.993802,0.9417,0.408864,0.4574,0.11363,0.78825,0.178157,0.760509,0.500375,0.19571,0.851209,0.329629,0.917225,0.480398,0.144592,0.491865,0.749923,0.985109,0.594411,0.9577,0.530658,0.893975,0.441822,0.529343,0.698972,0.126015,0.0390981,0.451583,0.993725,0.953962,0.930786,0.658133,0.730972,0.593715,0.691473,0.445884,0.0794479,0.571361,0.609589,0.733089,0.582309,0.15165,0.136644,0.664129,0.221884,0.206502,0.488712,0.692761,0.356417,0.913243,0.202481,0.506005,0.499695,0.495426,0.961687,0.674529,0.80731,0.0499814,0.503051,0.242344,0.644031,0.903791,0.264306,0.522663,0.770417,0.0205515,0.305847,0.320999,0.883659,0.212433,0.531839,0.53344,0.359103,0.226052,0.953031,0.515386,0.952781,0.757507,0.326366,0.997259,0.140022,0.968398,0.00638103,0.83212,0.0995244,0.499409,0.265729,0.599822,0.24497,0.534013,0.600916,0.289979,0.789893,0.370217,0.119769,0.807091,0.370854,0.964057,0.768112,0.890963,0.560726,0.766032,0.369202,0.895769,0.641349,0.841802,0.0255747,0.00621784,0.684415,0.0954121,0.197472,0.748252,0.431323,0.557518,0.736234,0.778815,0.751232,0.615838,0.796019,0.419658,0.126108,0.679177,0.263564,0.217679,0.757587,0.957342,0.596247,0.425855,0.320623,0.225285,0.70975,0.277918,0.80763,0.497661,0.839647,0.405661,0.316917,0.151211,0.008187,0.00888234,0.794083,0.636322,0.668156,0.793823,0.563085,0.626798,0.381399,0.709011,0.498239,0.152278,0.210633,0.0676442,0.399382,0.774257,0.79276,0.572048,0.0894432,0.3799,0.86639,0.599039,0.14588,0.650615,0.463071,0.0466812,0.192042,0.665384,0.55359,0.0119801,0.589158,0.60781,0.98209,0.907756,0.8277,0.187272,0.419564,0.668385,0.86865,0.204942,0.61926,0.312242,0.411576,0.525753,0.61143,0.547845,0.320142,0.943845,0.15506,0.633441,0.0402794,0.754123,0.43924,0.106251,0.309252,0.209032,0.0288578,0.314725,0.493459,0.743433,0.835458,0.770529,0.982637,0.690255,0.388259,0.68317,0.416193,0.406947,0.135438,0.773654,0.373324,0.966354,0.0664615,0.869282,0.389974,0.325761,0.815768,0.935685,0.867151,0.921857,0.692766,0.0132483,0.773782,0.0508116,0.275657,0.499916,0.808186,0.717139,0.488452,0.139109,0.119507,0.498788,0.778468,0.97654,0.706972,0.0845574,0.454559,0.783537,0.307391,0.819301,0.12745,0.742631,0.458866,0.873598,0.281543,0.0936263,0.71102,0.207301,0.495135,0.580512,0.287104,0.748724,0.198318,0.0446553,0.352793,0.466988,0.0544225,0.124192,0.214385,0.230868,0.139625,0.645855,0.155894,0.977401,0.248762,0.693993,0.0777192,0.263157,0.825107,0.744656,0.796249,0.865364,0.508196,0.985326,0.533854,0.398623,0.32325,0.724973,0.814481,0.264173,0.385089,0.913465,0.360064,0.905369,0.879722,0.360868,0.402432,0.953992,0.254567,0.120404,0.665991,0.933209,0.921111,0.77513,0.278221,0.94602,0.312774,0.6495,0.572987,0.516302,0.75571,0.310143,0.308828,0.87578,0.778127,0.752575,0.720537,0.195947,0.279893,0.324906,0.879759,0.990979,0.260881,0.311204,0.648683,0.310874,0.543301,0.315811,0.0748157,0.228006,0.030827,0.394098,0.537349,0.804928,0.808262,0.64607,0.858263,0.620255,0.391899,0.457163,0.459621,0.969718,0.495058,0.2063,0.630167,0.985451,0.896813,0.516822,0.142742,0.10207,0.98574,0.222822,0.128903,0.817144,0.443229,0.104272,0.126952,0.874967,0.299009,0.541263,0.423912,0.253603,0.552816,0.446179,0.767682,0.578354,0.252556,0.585438,0.132315,0.572107,0.169603,0.0864503,0.434014,0.275818,0.230477,0.117669,0.739252,0.799804,0.31667,0.65403,0.478816,0.347594,0.594589,0.783008,0.170313,0.713287,0.0794823,0.563519,0.791548,0.995486,0.115102,0.14062,0.486706,0.867107,0.260508,0.0229291,0.951414,0.76296,0.239815,0.79934,0.328963,0.715555,0.84674,0.39994,0.747896,0.744354,0.601694,0.936873,0.633799,0.103012,0.190742,0.636593,0.55347,0.325426,0.787501,0.339369,0.947558,0.715704,0.270979,0.193966,0.421462,0.725786,0.459605,0.366484,0.72944,0.881685,0.584359,0.709353,0.685437,0.240724,0.686302,0.205192,0.312746,0.752999,0.534354,0.362215,0.191465,0.734708,0.727125,0.441205,0.624907,0.118183,0.636838,0.133902,0.210076,0.68807,0.336283,0.707823,0.403869,0.309029,0.669912,0.967016,0.532727,0.731622,0.236469,0.102127,0.900212,0.228056,0.792333,0.733292,0.403581,0.305942,0.571892,0.928054,0.999898,0.64649,0.00417006,0.728132,0.512506,0.198921,0.899913,0.861045,0.283194,0.292014,0.416154,0.783369,0.546672,0.473677,0.702345,0.612552,0.751383,0.671249,0.862463,0.4714,0.944315,0.228023,0.205994,0.792895,0.865209,0.371734,0.284439,0.946773,0.0927014,0.251622,0.57172,0.617978,0.834238,0.177678,0.538696,0.837118,0.999322,0.454887,0.543525,0.470099,0.905848,0.357763,0.977857,0.458762,0.997229,0.669801,0.730915,0.556854,0.561139,0.428658,0.676807,0.201726,0.669531,0.43229,0.363576,0.877671,0.847828,0.229571,0.179228,0.369404,0.75479,0.971006,0.274257,0.0986706,0.426616,0.356485,0.577767,0.480358,0.866865,0.591204,0.626505,0.00966835,0.751803,0.0864238,0.358639,0.0880026,0.0769328,0.608892,0.722585,0.215874,0.0633965,0.716307,0.995043,0.278303,0.758221,0.448171,0.261614,0.815294,0.518133,0.855141,0.445069,0.809294,0.63025,0.496332,0.238315,0.0398394,0.646338,0.265454,0.308285,0.302365,0.399713,0.786339,0.714411,0.870001,0.730393,0.0228074,0.844361,0.0242545,0.347495,0.897074,0.038805,0.938666,0.910169,0.712932,0.519979,0.481616,0.371357,0.279113,0.386268,0.616549,0.728069,0.583336,0.403288,0.636515,0.354276,0.508992,0.142588,0.971566,0.924036,0.723529,0.103019,0.858375,0.170108,0.889003,0.410686,0.893248,0.923621,0.718554,0.587009,0.17534,0.908787,0.0105322,0.148548,0.67757,0.184909,0.312184,0.232076,0.407324,0.792192,0.785718,0.407448,0.812168,0.35167,0.131767,0.880741,0.247392,0.201727,0.732191,0.453858,0.65697,0.128913,0.891923,0.0425107,0.171768,0.686376,0.376318,0.0969477,0.642211,0.732142,0.392566,0.508196,0.187317,0.440674,0.763168,0.686266,0.311569,0.730552,0.663182,0.504066,0.783944,0.581043,0.0717142,0.292713,0.813476,0.200494,0.315261,0.338683,0.049334,0.823305,0.238649,0.718038,0.174533,0.633335,0.43938,0.764195,0.486266,0.681736,0.0944629,0.581616,0.280943,0.593964,0.267024,0.530669,0.985615,0.923137,0.978844,0.718274,0.93226,0.0903608,0.230062,0.39868,0.883001,0.588545,0.205523,0.43853,0.187213,0.378236,0.480919,0.923323,0.432053,0.640055,0.907268,0.411389,0.698484,0.852579,0.797654,0.145002,0.30881,0.385565,0.453477,0.179358,0.161595,0.924271,0.0690872,0.0402734,0.49011,0.754257,0.438798,0.940775,0.269548,0.139794,0.18981,0.107845,0.633436,0.575719,0.0118265,0.321421,0.112762,0.0363101,0.270723,0.709538,0.148842,0.628415,0.153884,0.964738,0.0994869,0.267203,0.735297,0.729283,0.915232,0.646341,0.0224031,0.430843,0.379937,0.20928,0.645506,0.274341,0.462014,0.526012,0.272471,0.716796,0.696124,0.388676,0.78938,0.640463,0.522481,0.994805,0.87252,0.528853,0.487863,0.198645,0.464967,0.00432742,0.556125,0.130396,0.998208,0.925567,0.420212,0.670617,0.709073,0.230606,0.291804,0.680385,0.131138,0.611877,0.579647,0.953581,0.225115,0.928561,0.0989509,0.490247,0.527906,0.968784,0.581804,0.460096,0.278106,0.0880265,0.304153,0.419987,0.982537,0.296669,0.922544,0.0749869,0.278042,0.650777,0.142477,0.703717,0.379864,0.0189627,0.548744,0.686421,0.998557,0.446668,0.883195,0.170661,0.867361,0.925557,0.295633,0.315869,0.227507,0.284627,0.958955,0.790683,0.462438,0.55051,0.528215,0.500143,0.170885,0.172371,0.108686,0.13181,0.448771,0.375196,0.967724,0.26238,0.483222,0.153713,0.354665,0.511028,0.706927,0.467312,0.582636,0.71786,0.328751,0.839845,0.164624,0.717501,0.661012,0.202788,0.20792,0.280689,0.781157,0.234459,0.799475,0.703739,0.0820851,0.898228,0.00318319,0.056116,0.698612,0.34066,0.804814,0.343207,0.335938,0.394277,0.282913,0.923217,0.204896,0.634669,0.835794,0.348188,0.66529,0.0317205,0.701826,0.986394,0.643285,0.854927,0.970746,0.078917,0.442883,0.336644,0.600285,0.770986,0.499488,0.836048,0.194395,0.366866,0.842445,0.585361,0.00537574,0.420973,0.52239,0.577353,0.769313,0.355289,0.669522,0.182104,0.948668,0.681847,0.687339,0.84504,0.233841,0.178184,0.47918,0.465333,0.278913,0.061839,|0.33218,0.666954,0.0544441,0.288312,0.847406,0.751903,0.112618,0.331379,0.461239,0.888376,0.307003,0.395822,0.799661,0.66298,0.556697,0.330626,0.451698,0.677601,0.418025,0.117609,0.526528,0.355304,0.0823817,0.57851,0.42724,0.978422,0.860596,0.289067,0.240266,0.0181853,0.356316,0.208564,0.357944,0.839395,0.35075,0.21094,0.223814,0.151844,0.502019,0.336236,0.249253,0.169955,0.497035,0.949175,0.401177,0.176139,0.0593265,0.0499703,0.555553,0.432861,0.7952,0.872099,0.0807097,0.971881,0.0340565,0.770536,0.692379,0.305689,0.230974,0.133505,0.478006,0.00184453,0.491623,0.953364,0.0661031,0.751607,0.571691,0.0964981,0.787175,0.170991,0.0584896,0.842369,0.456992,0.459421,0.407818,0.240739,0.540766,0.904491,0.627675,0.149781,0.46663,0.14862,0.76778,0.532737,0.557522,0.590029,0.310133,0.993462,0.705485,0.898023,0.888117,0.841398,0.561931,0.382489,0.487528,0.539915,0.729567,0.330602,0.7741,0.426638,0.203623,0.605967,0.59631,0.762305,0.079863,0.840053,0.67735,0.645887,0.355837,0.97933,0.963089,0.849688,0.934169,0.100935,0.421085,0.478284,0.377198,0.711829,0.694945,0.727341,0.263829,0.42195,0.0820376,0.835105,0.219997,0.326729,0.645951,0.222558,0.549355,0.623251,0.35125,0.240223,0.58852,0.594939,0.427438,0.958895,0.108477,0.0529358,0.519421,0.775754,0.684806,0.291956,0.129355,0.135362,0.547283,0.748107,0.119528,0.105785,0.0640539,0.377261,0.552234,0.30377,0.546783,0.559335,0.297281,0.316631,0.78609,0.637996,0.36552,0.730742,0.0311137,0.510256,0.924727,0.556605,0.601061,0.150859,0.898073,0.420206,0.0881363,0.686836,0.388388,0.0250974,0.662413,0.779502,0.990157,0.0166921,0.348628,0.499502,0.278317,0.823514,0.298027,0.598496,0.956764,0.419604,0.197345,0.369732,0.0480675,0.693313,0.960319,0.891255,0.96029,0.35597,0.525609,0.429969,0.378593,0.889604,0.289375,0.640434,0.517789,0.811354,0.712462,0.810718,0.0623783,0.799883,0.787767,0.748335,0.329286,0.35886,0.524624,0.395645,0.0872302,0.881935,0.216166,0.736541,0.383576,0.594757,0.310323,0.184663,0.639677,0.600562,0.622076,0.531962,0.208944,0.312344,0.16263,0.645081,0.17173,0.774413,0.783074,0.959029,0.762003,0.427447,0.109585,0.420182,0.076396,0.853901,0.654162,0.957317,0.168905,0.328424,0.117065,0.783988,0.548064,0.932704,0.638715,0.241046,0.410608,0.379736,0.821471,0.846131,0.00295126,0.220306,0.452021,0.426765,0.668753,0.966026,0.974826,0.0554925,0.848818,0.620683,0.597396,0.0313604,0.491055,0.0269717,0.0951695,0.826121,0.0797951,0.736194,0.648426,0.143613,0.0789824,0.890265,0.711052,0.413041,0.991522,0.925759,0.108701,0.059481,0.500645,0.58054,0.781551,0.577326,0.749124,0.433049,0.881571,0.479796,0.838449,0.238799,0.684598,0.180377,0.111291,0.58141,0.75875,0.703271,0.279563,0.33901,0.96889,0.372813,0.097074,0.391697,0.458053,0.899363,0.0672495,0.269699,0.180008,0.709302,0.239633,0.0263869,0.204776,0.8122,0.0894364,0.958797,0.228175,0.347021,0.251572,0.858407,0.81841,0.386321,0.417976,0.148655,0.0945342,0.118352,0.300487,0.549034,0.844291,0.821957,0.291859,0.0473068,0.0815278,0.893608,0.0904995,0.532011,0.237911,0.957297,0.537429,0.492234,0.416298,0.338851,0.168443,0.430611,0.0886275,0.981662,0.64198,0.337837,0.591138,0.160788,0.119762,0.255407,0.34484,0.549222,0.964012,0.262047,0.761847,0.114923,0.117613,0.363773,0.614456,0.438255,0.871619,0.159628,0.984753,0.812602,0.518004,0.499173,0.57841,0.720789,0.205712,0.707099,0.745372,0.146669,0.579975,0.572498,0.93018,0.954505,0.52598,0.232221,0.84172,0.547219,0.0895813,0.000160217,0.195584,0.593967,0.43927,0.163164,0.938613,0.298076,0.265647,0.449257,0.970805,0.438659,0.282143,0.594881,0.16038,0.437132,0.976632,0.760622,0.339864,0.518807,0.482631,0.363267,0.2044,0.113933,0.649599,0.833574,0.803684,0.906139,0.932254,0.369752,0.346449,0.552869,0.0788655,0.51176,0.786645,0.532305,0.663257,0.89392,0.650566,0.826682,0.941152,0.507297,0.200787,0.390669,0.296865,0.586872,0.00654304,0.325803,0.701685,0.417365,0.903856,0.687063,0.739625,0.367587,0.95626,0.168738,0.917015,0.758062,0.965953,0.257878,0.625398,0.230328,0.637862,0.689502,0.725903,0.0652381,0.744788,0.0511185,0.680485,0.691491,0.976642,0.647271,0.807495,0.0179386,0.951547,0.885831,0.555328,0.154518,0.0643536,0.127009,0.801594,0.494663,0.945992,0.298517,0.615982,0.378224,0.421191,0.493515,0.949899,0.353561,0.673594,0.519987,0.669178,0.288164,0.488384,0.952253,0.241782,0.90321,0.903271,0.863335,0.925984,0.973679,0.626627,0.0474972,0.385903,0.172552,0.428307,0.345879,0.268974,0.300065,0.743126,0.850133,0.267159,0.670529,0.822928,0.632852,0.856416,0.329211,0.299957,0.550236,0.859014,0.427934,0.776725,0.240444,0.0314446,0.280339,0.937368,0.376159,0.723819,0.867188,0.179088,0.282007,0.0612307,0.6171,0.118329,0.913512,0.622067,0.402171,0.474797,0.389125,0.841524,0.105999,0.297718,0.456541,0.443343,0.723373,0.670346,0.166936,0.985573,0.101638,0.570646,0.936671,0.855935,0.612262,0.617145,0.331197,0.301369,0.414509,0.587371,0.376935,0.221752,0.288852,0.00275552,0.246212,0.302043,0.421144,0.306593,0.373236,0.457092,0.28108,0.623042,0.991306,0.175463,0.67565,0.736394,0.701452,0.394697,0.585847,0.521886,0.386766,0.369333,0.767105,0.610825,0.368356,0.369921,0.893284,0.302789,0.296433,0.710875,0.508513,0.235187,0.368526,0.445766,0.766357,0.594981,0.272074,0.471751,0.946132,0.19608,0.108667,0.394741,0.0288584,0.629527,0.542851,0.968475,0.978662,0.0881361,0.889259,0.0320359,0.591871,0.506725,0.745731,0.344894,0.311684,0.684708,0.180828,0.169341,0.748202,0.399804,0.641313,0.942059,0.929029,0.807706,0.0309145,0.747239,0.759093,0.602793,0.959353,0.669328,0.992818,0.238091,0.584346,0.972091,0.410226,0.194043,0.596331,0.183318,0.941735,0.0668449,0.895949,0.308697,0.89835,0.586479,0.159579,0.297737,0.335556,0.853039,0.333572,0.753266,0.691885,0.88855,0.443953,0.909633,0.629973,0.302454,0.2822,0.441704,0.750766,0.620463,0.786885,0.0090701,0.246548,0.439562,0.479538,0.659276,0.474659,0.428507,0.335016,0.289133,0.526957,0.473365,0.684237,0.870325,0.47153,0.839262,0.328029,0.359726,0.309268,0.70315,0.924679,0.299912,0.192243,0.792537,0.464844,0.606203,0.258254,0.515568,0.100645,0.259712,0.588597,0.322457,0.617458,0.760238,0.0774473,0.898301,0.902034,0.659577,0.187547,0.352204,0.39378,0.321702,0.492543,0.271538,0.991099,0.159559,0.5718,0.621442,0.82976,0.887007,0.433895,0.942922,0.99177,0.628157,0.53094,0.866562,0.496523,0.694472,0.116234,0.156184,0.147551,0.66813,0.83992,0.854243,0.442459,0.753104,0.509042,0.0921602,0.422177,0.348104,0.64165,0.729612,0.420131,0.246723,0.278881,0.62222,0.335664,0.979496,0.77067,0.841303,0.577321,0.433512,0.995255,0.72326,0.677323,0.361065,0.864726,0.0336293,0.476317,0.374703,0.0756575,0.666793,0.428732,0.20723,0.924773,0.556543,0.113533,0.0234307,0.881112,0.165028,0.391169,0.457298,0.393942,0.435726,0.331643,0.450779,0.692601,0.367883,0.835643,0.249221,0.0943857,0.209313,0.165437,0.866693,0.756538,0.356939,0.777364,0.303694,0.548903,0.327433,0.466399,0.388757,0.812412,0.00779057,0.981926,0.165822,0.000625551,0.536813,0.493618,0.570281,0.805736,0.0764179,0.645428,0.272252,0.0509794,0.593084,0.531341,0.817777,0.640501,0.884497,0.606763,0.996064,0.747999,0.0158638,0.608551,0.703063,0.776002,0.492472,0.288865,0.648545,0.0236302,0.173011,0.155071,0.651959,0.6012,0.0907447,0.847871,0.922877,0.386675,0.714814,0.172582,0.334045,0.550484,0.879884,0.722531,0.517468,0.0344489,0.22018,0.697662,0.172896,0.979746,0.338177,0.844074,0.0143774,0.633811,0.1403,0.629091,0.616682,0.917339,0.314958,0.278155,0.71626,0.0508328,0.674914,0.978603,0.385138,0.247807,0.0399386,0.520009,0.865704,0.183202,0.590022,0.370842,0.647795,0.17829,0.512866,0.232759,0.0438445,0.2854,0.0695303,0.103257,0.169509,0.891433,0.903538,0.195812,0.953395,0.562844,0.282741,0.304155,0.453458,0.366581,0.582181,0.135166,0.67164,0.262561,0.368019,0.0246193,0.789625,0.24006,0.0627297,0.979374,0.544622,0.284866,0.148353,0.424451,0.919767,0.165394,0.251637,0.872596,0.0591052,0.416787,0.151893,0.552736,0.347218,0.447613,0.886213,0.954925,0.636249,0.871744,0.0519637,0.466491,0.629841,0.918368,0.56022,0.980007,0.815887,0.501056,0.775964,0.179242,0.252429,0.333156,0.423875,0.525382,0.40914,0.493372,0.251711,0.142246,0.959431,0.80994,0.221219,0.91958,0.614677,0.360738,0.841209,0.209554,0.196671,0.336812,0.0220732,0.875073,0.509718,0.954199,0.572303,0.0479836,0.840255,0.802081,0.081248,0.759208,0.469604,0.239164,0.978723,0.851393,0.187457,0.517474,0.309166,0.538963,0.735442,0.823353,0.570234,0.181066,0.933022,0.0725499,0.985105,0.353914,0.673668,0.231748,0.570515,0.864977,0.796207,0.75015,0.747418,0.885116,0.772281,0.597983,0.565581,0.595577,0.443333,0.880799,0.54404,0.658648,0.140336,0.503573,0.609586,0.258427,0.621553,0.233719,0.738338,0.413557,0.797928,0.685356,0.958543,0.415344,0.308768,0.388438,0.275211,0.134833,0.760364,0.16567,0.0702749,0.350447,0.279894,0.102147,0.425776,0.477172,0.868494,0.0463541,0.600597,0.536252,0.454437,0.370208,0.32969,0.304806,0.336888,0.837494,0.120937,0.846097,0.904424,0.505808,0.169562,0.430988,0.844621,0.116733,0.295607,0.962393,0.650867,0.790363,0.167732,0.554677,0.486082,0.466962,0.150531,0.831092,0.194374,0.150842,|0.630849,0.104726,0.484891,0.883178,0.703281,0.411275,0.752809,0.349067,0.52509,0.0422241,0.65809,0.72997,0.763629,0.861048,0.750809,0.462596,0.397311,0.442532,0.741421,0.872159,0.89583,0.373105,0.454915,0.584586,0.302807,0.986034,0.918605,0.0797318,0.763336,0.874197,0.840431,0.600983,0.985151,0.162898,0.91405,0.714829,0.902798,0.987507,0.645277,0.335076,0.660667,0.551258,0.0609102,0.0729422,0.955938,0.963665,0.226437,0.474423,0.45704,0.851381,0.880153,0.4362,0.933618,0.202085,0.45789,0.475138,0.958811,0.981087,0.945674,0.690625,0.256921,0.578622,0.269205,0.158861,0.704305,0.772762,0.560906,0.841894,0.56401,0.765039,0.0784745,0.768672,0.0707343,0.425241,0.280277,0.198499,0.406024,0.759578,0.745305,0.447713,0.00644577,0.239158,0.295131,0.819897,0.798235,0.852489,0.693243,0.200244,0.555599,0.341433,0.689774,0.0940529,0.757622,0.278822,0.207473,0.504687,0.236724,0.0345969,0.195077,0.403455,0.571426,0.279704,0.862095,0.572314,0.910976,0.65247,0.737776,0.94413,0.0228775,0.0727617,0.910037,0.279131,0.449055,0.920006,0.0131032,0.773538,0.673628,0.139417,0.96293,0.373363,0.919553,0.278583,0.608661,0.240903,0.726374,0.36349,0.646898,0.753401,0.0349452,0.311448,0.579387,0.30291,0.193371,0.380004,0.661029,0.600408,0.491397,0.112276,0.743179,0.663501,0.390727,0.636573,0.398398,0.407096,0.165858,0.367978,0.139843,0.623977,0.027978,0.39745,0.189494,0.651246,0.737827,0.85126,0.21762,0.137068,0.350127,0.968959,0.00437373,0.0419366,0.207611,0.934631,0.845783,0.0786054,0.808372,0.802353,0.549884,0.534264,0.804881,0.496157,0.840044,0.368795,0.241431,0.573393,0.415688,0.986348,0.408801,0.466476,0.790228,0.894748,0.520533,0.903661,0.182785,0.128112,0.475888,0.646471,0.916474,0.583082,0.946471,0.202341,0.718331,0.757394,0.15921,0.575066,0.256187,0.269707,0.00939506,0.307131,0.799245,0.919371,0.436592,0.808589,0.904243,0.91563,0.618746,0.895856,0.465805,0.614244,0.508904,0.997333,0.0207866,0.799433,0.113996,0.808174,0.521576,0.342075,0.842204,0.969993,0.832594,0.619564,0.361814,0.294196,0.478557,0.665819,0.990818,0.665028,0.0317852,0.0785556,0.318751,0.315108,0.152811,0.239308,0.345574,0.438526,0.770169,0.49921,0.485415,0.0244227,0.513074,0.142054,0.592659,0.801563,0.798231,0.27984,0.00670201,0.351297,0.699313,0.0942009,0.597893,0.965044,0.0381942,0.638305,0.514953,0.221298,0.859381,0.595364,0.483174,0.0544249,0.121453,0.442461,0.443767,0.509717,0.104833,0.186047,0.498823,0.930213,0.473004,0.936816,0.59044,0.832755,0.137819,0.366928,0.547017,0.58928,0.938779,0.0738429,0.156386,0.777858,0.0489299,0.21053,0.477909,0.938418,0.462735,0.698332,0.815961,0.620387,0.724243,0.541589,0.876078,0.864827,0.386795,0.258132,0.197923,0.185228,0.0618365,0.346559,0.97852,0.0561227,0.163139,0.266271,0.640964,0.480258,0.359661,0.761889,0.477558,0.29163,0.815873,0.13969,0.72586,0.594464,0.260409,0.446802,0.045869,0.902289,0.659989,0.162225,0.304061,0.689593,0.963744,0.329202,0.127083,0.398386,0.280484,0.391901,0.699691,0.720683,0.457872,0.729838,0.918153,0.60795,0.246801,0.0201575,0.646424,0.032796,0.0847111,0.750028,0.915588,0.217909,0.351218,0.0501204,0.901541,0.114958,0.388554,0.953015,0.609201,0.589948,0.294093,0.543743,0.857527,0.955513,0.921657,0.415172,0.5377,0.423692,0.293102,0.0186813,0.232171,0.116773,0.827566,0.890243,0.481358,0.858756,0.0648866,0.235239,0.864826,0.316337,0.327156,0.747757,0.617564,0.77193,0.889323,0.967601,0.891027,0.673016,0.637591,0.505938,0.595778,0.746864,0.113438,0.965056,0.245044,0.222401,0.925711,0.14655,0.767471,0.7526,0.146677,0.892677,0.857282,0.567138,0.133503,0.993404,0.165148,0.81985,0.578264,0.666441,0.317654,0.814843,0.788618,0.836652,0.697506,0.343752,0.186642,0.853789,0.436058,0.53725,0.877758,0.588173,0.897606,0.89869,0.562303,0.2436,0.111981,0.242079,0.650047,0.735499,0.704486,0.285991,0.277302,0.959509,0.0838498,0.623454,0.177761,0.880095,0.944801,0.455494,0.752446,0.629041,0.521753,0.407691,0.835229,0.304356,0.907174,0.127927,0.720177,0.0379724,0.588797,0.14409,0.22454,0.989347,0.04352,0.345065,0.996253,0.766812,0.155427,0.342689,0.897307,0.863826,0.76123,0.274376,0.613519,0.340355,0.026744,0.175561,0.231152,0.999854,0.487795,0.354971,0.698732,0.386378,0.206723,0.260749,0.329871,0.617718,0.685112,0.2301,0.686313,0.545667,0.918188,0.971407,0.836502,0.951862,0.68932,0.679077,0.332958,0.124238,0.517721,0.124585,0.629334,0.594966,0.997814,0.0430021,0.558819,0.404969,0.940729,0.291504,0.838901,0.0927632,0.882851,0.864984,0.928117,0.25168,0.403696,0.663117,0.519319,0.472885,0.54304,0.563526,0.229648,0.414713,0.459686,0.220441,0.916667,0.739813,0.31532,0.299361,0.17601,0.500192,0.939022,0.38818,0.769513,0.809253,0.560452,0.0832161,0.797807,0.60346,0.866568,0.528449,0.0931368,0.233863,0.311531,0.709973,0.633148,0.00317311,0.275416,0.8244,0.45911,0.733199,0.364745,0.50715,0.152471,0.998935,0.773123,0.244535,0.0608872,0.399262,0.74732,0.632422,0.604463,0.122877,0.348433,0.208676,0.409329,0.425183,0.331378,0.33949,0.440886,0.513351,0.327155,0.456184,0.142657,0.797895,0.59121,0.234619,0.442128,0.335995,0.340067,0.772884,0.132733,0.455529,0.558996,0.430791,0.0394098,0.317698,0.0948963,0.415126,0.387676,0.546264,0.268087,0.736878,0.768601,0.933752,0.128641,0.592007,0.530615,0.357247,0.549838,0.37414,0.905857,0.0574406,0.44685,0.382187,0.812388,0.646541,0.274601,0.993157,0.485105,0.237781,0.875717,0.941468,0.970299,0.673194,0.618626,0.710963,0.18727,0.852218,0.138224,0.256588,0.21716,0.207537,0.905537,0.996868,0.853644,0.434905,0.345847,0.806372,0.35917,0.0793992,0.516388,0.774529,0.597648,0.491137,0.156819,0.310866,0.0746527,0.780659,0.613455,0.270798,0.906631,0.891144,0.820475,0.0217791,0.636388,0.429065,0.104154,0.805053,0.426025,0.394907,0.0350793,0.642577,0.675814,0.422317,0.874241,0.591547,0.106125,0.443186,0.287798,0.961039,0.782065,0.968724,0.805724,0.187442,0.0941715,0.290012,0.190207,0.175789,0.897337,0.0757155,0.63284,0.933115,0.544018,0.0590537,0.931619,0.255328,0.710438,0.222179,0.0659884,0.545639,0.0414861,0.97113,0.343885,0.863961,0.716438,0.560072,0.203165,0.0322117,0.842285,0.899605,0.872891,0.903411,0.683585,0.967414,0.365449,0.972019,0.428762,0.729064,0.775687,0.0446376,0.0250444,0.249435,0.0167486,0.945568,0.307337,0.634442,0.802387,0.477522,0.0599807,0.733006,0.299073,0.898965,0.707567,0.0874137,0.0759635,0.922415,0.212848,0.467482,0.614691,0.351781,0.0497427,0.017799,0.0557105,0.99778,0.981296,0.783602,0.132889,0.585734,0.67895,0.250567,0.635273,0.727987,0.150192,0.306536,0.834084,0.848126,0.404136,0.682696,0.505944,0.334278,0.0215847,0.270958,0.929725,0.623973,0.349501,0.606116,0.281366,0.499953,0.981824,0.442864,0.993872,0.868679,0.53457,0.677866,0.74438,0.397792,0.869992,0.467262,0.609616,0.319586,0.511531,0.864316,0.311527,0.463936,0.4394,0.649038,0.831131,0.466615,0.679659,0.284733,0.993655,0.134897,0.988867,0.432477,0.853668,0.512633,0.157408,0.829687,0.467709,0.373664,0.773888,0.915664,0.276733,0.608862,0.668018,0.834808,0.868572,0.860312,0.405274,0.466386,0.0853073,0.12193,0.272862,0.948887,0.583893,0.589788,0.304467,0.626926,0.409289,0.441965,0.0518436,0.869143,0.224183,0.181132,0.620719,0.318242,0.0379908,0.644911,0.538977,0.0750049,0.89897,0.40036,0.31701,0.773874,0.747864,0.750095,0.613575,0.125929,0.849863,0.311553,0.0757976,0.759265,0.576805,0.575873,0.972623,0.219669,0.409019,0.891447,0.559574,0.544993,0.284109,0.896626,0.723717,0.494955,0.879592,0.736174,0.206125,0.97007,0.313009,0.089146,0.855441,0.33757,0.929836,0.49225,0.132152,0.608246,0.487716,0.561946,0.123592,0.585956,0.927257,0.613432,0.934618,0.786195,0.308451,0.514066,0.295538,0.347464,0.197612,0.313096,0.620404,0.403764,0.0942692,0.600301,0.920514,0.377445,0.824328,0.571723,0.34375,0.634799,0.218678,0.90819,0.165867,0.836227,0.510972,0.340915,0.655097,0.237582,0.894004,0.292591,0.547463,0.924374,0.633191,0.781942,0.575304,0.765699,0.314525,0.576952,0.502274,0.904949,0.625384,0.901427,0.751575,0.0498794,0.910133,0.674154,0.931501,0.885615,0.338523,0.291701,0.157074,0.227782,0.662409,0.998481,0.635675,0.76171,0.043926,0.609168,0.344914,0.577598,0.275473,0.0700235,0.548732,0.149529,0.0582139,0.13203,0.611328,0.888833,0.0339382,0.665942,0.862317,0.166135,0.970142,0.567625,0.794084,0.695871,0.627096,0.573269,0.943635,0.327709,0.248512,0.67947,0.270805,0.575343,0.642066,0.553393,0.0786227,0.105798,0.939435,0.622499,0.289356,0.154419,0.671943,0.432063,0.531944,0.602097,0.951796,0.685936,0.0537013,0.409836,0.460111,0.310855,0.225823,0.238782,0.927098,0.920368,0.0867233,0.345338,0.619483,0.358293,0.890737,0.359839,0.255197,0.430896,0.274348,0.340755,0.724733,0.705961,0.519596,0.0568587,0.832421,0.344757,0.968478,0.0271025,0.84327,0.193949,0.887873,0.450441,0.5368,0.810836,0.766269,0.214308,0.126275,0.437346,0.737424,0.0186804,0.701418,0.315542,0.596734,0.586909,0.624097,0.0766344,0.865378,0.685532,0.388105,0.514109,0.100412,0.749313,0.362744,0.304031,0.894991,0.0965593,0.0125024,0.440079,0.300448,0.284808,0.647668,0.794608,0.629094,0.824126,0.445141,0.503192,0.950741,0.550567,0.471157,0.943399,0.19731,0.17992,0.414266,0.130013,0.0873524,0.495055,|0.487262,0.38887,0.568829,0.553451,0.619726,0.808761,0.682146,0.308331,0.205591,0.183254,0.195315,0.597372,0.0928539,0.612167,0.16329,0.209359,0.500355,0.693381,0.0132059,0.0260788,0.170704,0.0118874,0.239057,0.847435,0.206477,0.564045,0.131576,0.323621,0.660931,0.702147,0.242578,0.96789,0.534733,0.781015,0.359429,0.261601,0.478325,0.113286,0.83889,0.777322,0.409588,0.183674,0.588794,0.177917,0.673359,0.57515,0.673314,0.372499,0.23496,0.50068,0.733011,0.0560545,0.544784,0.500222,0.00211155,0.644199,0.222119,0.993005,0.400231,0.0622147,0.532932,0.720331,0.662624,0.181691,0.0582215,0.905075,0.935241,0.0613021,0.390436,0.194021,0.398313,0.523595,0.222235,0.472995,0.797281,0.260189,0.735658,0.380755,0.823977,0.68418,0.0850376,0.862098,0.379003,0.873416,0.0574142,0.680351,0.911551,0.105549,0.811856,0.404872,0.633806,0.467887,0.566302,0.402174,0.625922,0.139162,0.815029,0.573943,0.347978,0.71545,0.483262,0.470554,0.943334,0.846589,0.578463,0.00779748,0.274859,0.203812,0.914378,0.494923,0.41501,0.390289,0.357863,0.276541,0.356326,0.541348,0.669153,0.972929,0.138765,0.362378,0.651563,0.0924321,0.402534,0.778801,0.449353,0.73653,0.11029,0.890372,0.679773,0.153284,0.211572,0.144008,0.51357,0.61069,0.565277,0.402864,0.130604,0.443511,0.402982,0.800486,0.118491,0.0403527,0.778014,0.552459,0.294957,0.247166,0.281528,0.725613,0.0889755,0.0934073,0.482518,0.881973,0.16442,0.718784,0.361075,0.320304,0.776893,0.190581,0.963439,0.207195,0.941202,0.197937,0.708647,0.128011,0.113926,0.444173,0.0018301,0.857834,0.775726,0.158223,0.165687,0.299156,0.0646849,0.855103,0.926276,0.374689,0.794705,0.289553,0.875369,0.419732,0.0200977,0.670666,0.385278,0.275365,0.37251,0.243213,0.194295,0.251102,0.742355,0.277978,0.165449,0.988628,0.881079,0.615286,0.453014,0.164352,0.727873,0.91903,0.816253,0.558009,0.779161,0.493013,0.714326,0.0931411,0.390733,0.148166,0.394157,0.816819,0.971323,0.873624,0.748921,0.124562,0.265267,0.454501,0.669666,0.762104,0.400739,0.775795,0.504624,0.956056,0.371247,0.704622,0.0236682,0.294975,0.256102,0.855904,0.737284,0.596657,0.697399,0.577545,0.718645,0.537431,0.488792,0.813096,0.454872,0.815106,0.814501,0.797521,0.9941,0.745908,0.000539243,0.159201,0.185322,0.872794,0.37844,0.718956,0.0725178,0.841014,0.807776,0.17797,0.844688,0.950167,0.412158,0.643,0.526392,0.94145,0.79,0.242153,0.596839,0.589113,0.440705,0.0922358,0.0780787,0.730869,0.40565,0.68368,0.843511,0.527728,0.154662,0.892942,0.478155,0.0217937,0.754915,0.290455,0.612332,0.23164,0.860899,0.394007,0.719999,0.771121,0.182466,0.629048,0.641001,0.794445,0.89172,0.75151,0.0257661,0.639851,0.125452,0.176661,0.301668,0.665646,0.939405,0.91725,0.496442,0.775666,0.671964,0.798774,0.993935,0.981028,0.114167,0.443439,0.453565,0.962219,0.557885,0.207623,0.37564,0.415256,0.738673,0.244628,0.877197,0.901962,0.924063,0.289463,0.0484744,0.971374,0.385554,0.985054,0.493445,0.0815838,0.381293,0.661008,0.231265,0.836207,0.445093,0.985843,0.859825,0.328946,0.393356,0.223008,0.678296,0.432273,0.143866,0.275707,0.207914,0.637371,0.519401,0.64199,0.425134,0.117929,0.960168,0.478995,0.869351,0.0193595,0.740485,0.993079,0.385839,0.99202,0.965905,0.616497,0.994532,0.24632,0.0935978,0.486524,0.350649,0.4649,0.355642,0.301134,0.177057,0.55976,0.05626,0.255013,0.306012,0.203387,0.069191,0.0442688,0.0915778,0.407468,0.00843984,0.180506,0.671719,0.288264,0.676162,0.166799,0.970546,0.0197958,0.877905,0.408622,0.562577,0.825716,0.704362,0.951375,0.206377,0.437132,0.699608,0.353239,0.55355,0.839336,0.803744,0.4447,0.61203,0.131525,0.877445,0.599004,0.911484,0.31153,0.699092,0.386674,0.612887,0.447657,0.674859,0.258853,0.341718,0.114482,0.387381,0.802665,0.77512,0.251194,0.636869,0.692833,0.705511,0.140043,0.826705,0.889845,0.664426,0.215382,0.70091,0.153955,0.305871,0.180947,0.283918,0.181074,0.727065,0.127335,0.534484,0.438523,0.528963,0.713976,0.974494,0.0233862,0.167775,0.229031,0.854861,0.642015,0.716697,0.368862,0.0621452,0.191412,0.618931,0.669288,0.850155,0.200621,0.849989,0.6035,0.991711,0.438993,0.433073,0.71807,0.113246,0.580359,0.373488,0.0396288,0.12452,0.477398,0.744118,0.913467,0.00456393,0.16457,0.854625,0.309716,0.300248,0.472631,0.540007,0.109262,0.878034,0.662699,0.540419,0.246562,0.284532,0.430582,0.362154,0.92374,0.543749,0.964273,0.54066,0.253978,0.746408,0.478524,0.15912,0.827278,0.290318,0.0560195,0.463552,0.255199,0.857234,0.124046,0.847218,0.773682,0.117684,0.491124,0.440786,0.115043,0.63995,0.547395,0.245775,0.0301397,0.373071,0.631155,0.301526,0.482699,0.36784,0.154381,0.570413,0.103103,0.159069,0.844894,0.710708,0.416689,0.479503,0.665837,0.283514,0.835606,0.177818,0.491421,0.624605,0.209107,0.730651,0.253629,0.0874785,0.779941,0.88883,0.0758355,0.0150725,0.45382,0.676414,0.453821,0.455578,0.0601599,0.132587,0.473721,0.690126,0.516113,0.419108,0.138911,0.419781,0.853028,0.265302,0.310478,0.609114,0.603293,0.11031,0.714122,0.439358,0.892873,0.246603,0.504852,0.661631,0.0460088,0.859127,0.345529,0.0610236,0.865778,0.319698,0.0421966,0.884781,0.292919,0.932126,0.811334,0.641914,0.236568,0.106416,0.255082,0.403747,0.43224,0.0915526,0.0104632,0.703875,0.161606,0.981611,0.211891,0.35159,0.648302,0.327346,0.46902,0.769278,0.820751,0.777257,0.632665,0.0351722,0.333269,0.413871,0.185364,0.817859,0.151888,0.0512124,0.642492,0.680254,0.22884,0.494336,0.243726,0.410399,0.192902,0.463071,0.976768,0.711292,0.799828,0.553359,0.524563,0.926788,0.55668,0.176054,0.824476,0.726974,0.581235,0.590723,0.480412,0.454448,0.820982,0.188611,0.906345,0.572587,0.122716,0.444434,0.524865,0.297918,0.76312,0.570199,0.502231,0.700554,0.779998,0.21763,0.407187,0.771194,0.712838,0.743146,0.698564,0.041426,0.528728,0.631456,0.829414,0.834888,0.334796,0.233443,0.843805,0.220763,0.0766668,0.100383,0.178632,0.240534,0.945996,0.882957,0.594165,0.559645,0.72707,0.706065,0.741434,0.34477,0.175293,0.647618,0.763011,0.235481,0.845146,0.345514,0.875822,0.415467,0.138151,0.751475,0.0515141,0.20619,0.634651,0.455103,0.379332,0.232585,0.945249,0.140852,0.79313,0.253856,0.148581,0.450199,0.0920247,0.509013,0.202271,0.897647,0.773447,0.182747,0.705612,0.238477,0.573801,0.413305,0.529593,0.029332,0.940271,0.403954,0.116179,0.125696,0.169579,0.827064,0.309202,0.671259,0.596694,0.264746,0.586679,0.513672,0.952777,0.145469,0.388802,0.605778,0.891298,0.117084,0.262035,0.619502,0.996071,0.847256,0.402505,0.446657,0.402452,0.95633,0.589344,0.570872,0.526486,0.924951,0.707214,0.633987,0.510127,0.521399,0.966501,0.76038,0.0734934,0.354006,0.28634,0.33212,0.122833,0.41677,0.35169,0.866839,0.555722,0.534766,0.809244,0.932826,0.107834,0.908882,0.370956,0.0922093,0.669985,0.0916957,0.656428,0.671022,0.0343421,0.445451,0.176889,0.642758,0.276127,0.578294,0.380241,0.299513,0.271066,0.837478,0.743468,0.398772,0.977622,0.66839,0.730799,0.211772,0.926621,0.405249,0.89915,0.323175,0.537077,0.758418,0.389227,0.229179,0.762431,0.947009,0.0686694,0.250962,0.57777,0.494034,0.954065,0.36151,0.0634344,0.818481,0.482768,0.85397,0.527908,0.209921,0.887693,0.817784,0.720077,0.645645,0.81898,0.540104,0.990647,0.607935,0.989794,0.983681,0.97688,0.0944891,0.198182,0.733278,0.316447,0.617447,0.747028,0.379021,0.777998,0.987661,0.807939,0.506021,0.6331,0.397083,0.578478,0.284579,0.758853,0.0705839,0.424134,0.279256,0.112899,0.706357,0.0842238,0.736827,0.646081,0.106739,0.440161,0.973509,0.761215,0.993366,0.658316,0.386735,0.343775,0.630089,0.674958,0.849966,0.53689,0.806592,0.464105,0.755307,0.101025,0.654684,0.00925905,0.0309047,0.213178,0.715597,0.147053,0.113403,0.202552,0.561128,0.838364,0.541911,0.373844,0.607974,0.878921,0.324243,0.715274,0.0149284,0.926525,0.322019,0.717886,0.285339,0.195811,0.0365843,0.163595,0.293728,0.627236,0.275565,0.731982,0.564417,0.888352,0.229908,0.388316,0.421148,0.0356998,0.435331,0.994262,0.85227,0.970158,0.651307,0.642164,0.383733,0.268331,0.953536,0.543084,0.177555,0.320147,0.25158,0.224445,0.871301,0.393167,0.25766,0.966999,0.31779,0.395315,0.366385,0.338806,0.342686,0.604518,0.888409,0.1295,0.0528573,0.261179,0.955329,0.368339,0.512486,0.724364,0.530083,0.78479,0.91759,0.464022,0.414488,0.432112,0.894305,0.910808,0.438903,0.504243,0.319447,0.0739129,0.911886,0.501532,0.463716,0.130979,0.266704,0.307575,0.921658,0.709079,0.247238,0.14153,0.837653,0.17426,0.652756,0.311962,0.816316,0.466185,0.234611,0.171465,0.189684,0.0599017,0.270092,0.0511146,0.538101,0.408899,0.150903,0.0695836,0.903765,0.916429,0.604492,0.849855,0.0453574,0.916737,0.587416,0.146004,0.0449383,0.977904,0.22454,0.848873,0.661605,0.730516,0.666448,0.498837,0.104133,0.12277,0.0515527,0.654948,0.468824,0.904766,0.522888,0.742634,0.924637,0.249614,0.240692,0.58473,0.0861669,0.110566,0.208207,0.0411097,0.261195,0.626276,0.995349,0.28202,0.207614,0.238609,0.236253,0.792584,0.146818,0.286426,0.424274,0.910705,0.739344,0.759141,0.363953,0.110482,0.432289,0.524494,0.737965,0.428037,0.248031,0.828372,0.555883,0.286784,0.679118,0.786079,0.579048,0.225109,0.819007,0.0387365,0.606239,0.429923,0.887639,0.947005,0.12561,0.143549,0.773751,0.455547,|0.102972,0.422916,0.42673,0.569602,0.92826,0.460893,0.0696539,0.91909,0.511809,0.525639,0.03434,0.781801,0.716446,0.518018,0.795737,0.800912,0.00884068,0.749134,0.835882,0.767352,0.437291,0.00651777,0.772834,0.915063,0.397005,0.358332,0.126298,0.562816,0.275043,0.610529,0.64102,0.951628,0.07089,0.668643,0.66924,0.609273,0.516436,0.226093,0.897864,0.798007,0.762188,0.220872,0.770455,0.121572,0.571594,0.142887,0.836983,0.823188,0.128416,0.669288,0.44964,0.975782,0.350113,0.318487,0.364216,0.269094,0.97626,0.440768,0.100858,0.894602,0.49496,0.0246323,0.450899,0.992515,0.613385,0.896803,0.343364,0.577126,0.816234,0.928117,0.747538,0.147864,0.205305,0.0444456,0.340106,0.387309,0.742528,0.410219,0.989687,0.152895,0.351028,0.581876,0.485648,0.478202,0.652402,0.182419,0.811514,0.970471,0.00319386,0.630932,0.673284,0.193987,0.55459,0.951873,0.140448,0.186221,0.946803,0.728704,0.772665,0.60134,0.798744,0.530534,0.187775,0.281136,0.0706139,0.710722,0.907663,0.630878,0.754226,0.787813,0.992008,0.315632,0.227045,0.829118,0.925363,0.432492,0.340543,0.156047,0.176051,0.798018,0.753469,0.870406,0.116926,0.982018,0.228241,0.859653,0.628946,0.935256,0.598918,0.239652,0.119746,0.651296,0.453775,0.528593,0.372573,0.755749,0.491706,0.670709,0.208644,0.658074,0.208717,0.32903,0.573237,0.354113,0.320113,0.424809,0.95379,0.0410969,0.07189,0.528146,0.996555,0.303937,0.403668,0.901862,0.508366,0.365721,0.183994,0.703334,0.0921887,0.0816658,0.787045,0.944356,0.642641,0.750939,0.351532,0.888591,0.0402151,0.53739,0.397908,0.245299,0.730054,0.452047,0.42465,0.63953,0.885688,0.783147,0.613804,0.657429,0.89825,0.108074,0.599967,0.119921,0.541568,0.718339,0.132753,0.784208,0.0199365,0.724476,0.839896,0.837132,0.878338,0.722099,0.929784,0.353388,0.600075,0.217489,0.702136,0.927382,0.678372,0.797726,0.733157,0.510694,0.49231,0.71532,0.873414,0.429866,0.410303,0.499185,0.254067,0.574863,0.080119,0.4647,0.632679,0.3193,0.168157,0.6293,0.717699,0.894742,0.145586,0.0717657,0.824628,0.144163,0.544549,0.995678,0.00630164,0.244078,0.459917,0.721662,0.726835,0.094667,0.263633,0.963224,0.844873,0.226351,0.404717,0.730442,0.688051,0.362363,0.426737,0.377151,0.814139,0.368294,0.327975,0.105181,0.326109,0.492493,0.403296,0.152535,0.779611,0.34899,0.599184,0.421198,0.258762,0.134617,0.434292,0.192786,0.213971,0.737322,0.909151,0.0185812,0.248236,0.425188,0.848613,0.286355,0.111513,0.181062,0.211404,0.463428,0.0176081,0.297273,0.261771,0.316669,0.249214,0.675059,0.295362,0.432142,0.0222856,0.845792,0.000816286,0.599219,0.870746,0.539896,0.866501,0.177216,0.870616,0.836038,0.348121,0.748521,0.659114,0.208946,0.873675,0.346191,0.292604,0.456802,0.730297,0.752286,0.031144,0.195685,0.328461,0.81044,0.338615,0.317903,0.982961,0.282732,0.651936,0.759046,0.84276,0.606039,0.981188,0.125435,0.981831,0.216317,0.0530086,0.676568,0.357219,0.453241,0.310919,0.20204,0.396465,0.418381,0.315444,0.490999,0.693675,0.714015,0.329083,0.752678,0.354591,0.900189,0.554103,0.897919,0.230032,0.0798475,0.137485,0.676384,0.494024,0.0886826,0.893021,0.922195,0.753395,0.500183,0.635755,0.665114,0.278379,0.313308,0.470648,0.892693,0.607683,0.173225,0.420431,0.774547,0.930757,0.231611,0.524809,0.0707886,0.931549,0.129736,0.421043,0.952183,0.715195,0.943214,0.755844,0.0808656,0.43391,0.394003,0.617421,0.0300496,0.152321,0.00536954,0.138913,0.597784,0.856405,0.458454,0.478806,0.946414,0.458939,0.407451,0.633059,0.794967,0.361425,0.84718,0.38273,0.755641,0.0538878,0.279152,0.669593,0.915403,0.43534,0.297801,0.129941,0.508344,0.612866,0.661032,0.188888,0.0693343,0.204236,0.71706,0.339121,0.885981,0.147014,0.424045,0.0853551,0.819446,0.379024,0.991246,0.880192,0.976745,0.470608,0.949053,0.843016,0.827848,0.258674,0.158387,0.806262,0.0853599,0.763081,0.323992,0.283372,0.189704,0.733813,0.158995,0.52678,0.197655,0.671211,0.671455,0.734083,0.61127,0.753856,0.563076,0.426036,0.397082,0.425422,0.0864088,0.877974,0.519992,0.613892,0.618721,0.0272494,0.300261,0.252281,0.0388312,0.222901,0.955765,0.107911,0.0633292,0.293283,0.334174,0.929952,0.635806,0.305328,0.873555,0.606591,0.706317,0.103845,0.300345,0.687441,0.149171,0.405524,0.608027,0.116588,0.416229,0.184853,0.91719,0.123611,0.652003,0.0581428,0.454576,0.0747669,0.219019,0.310728,0.207377,0.757971,0.046198,0.82247,0.241032,0.303822,0.895001,0.0456759,0.15865,0.589105,0.188521,0.73969,0.117391,0.770024,0.479645,0.677447,0.240459,0.610005,0.298211,0.424435,0.63398,0.615198,0.468765,0.989473,0.710325,0.896035,0.779365,0.00943309,0.216046,0.796785,0.0676473,0.117175,0.639974,0.864309,0.732372,0.263199,0.344765,0.444579,0.76684,0.1178,0.0124523,0.477067,0.853766,0.282765,0.772402,0.958834,0.544107,0.16448,0.575711,0.0356126,0.23935,0.583559,0.514845,0.221474,0.699853,0.530919,0.971773,0.515149,0.0853423,0.640792,0.516693,0.516955,0.692044,0.423794,0.562331,0.984866,0.0772247,0.495525,0.671487,0.347184,0.274103,0.896987,0.722172,0.591631,0.0513189,0.452582,0.997106,0.394863,0.893583,0.156473,0.586253,0.19514,0.156447,0.508288,0.829057,0.604455,0.092729,0.354649,0.202663,0.87709,0.890586,0.0277643,0.0503718,0.15132,0.211007,0.88559,0.226802,0.964067,0.644889,0.248393,0.910283,0.00653476,0.385789,0.460635,0.934976,0.886224,0.239434,0.538721,0.180301,0.0385438,0.630361,0.849136,0.886909,0.590776,0.791233,0.395494,0.599205,0.481271,0.115778,0.15147,0.256627,0.71491,0.72107,0.954541,0.816168,0.0187607,0.037966,0.792919,0.735063,0.467446,0.599168,0.37369,0.779838,0.461875,0.706316,0.40056,0.410312,0.206995,0.870424,0.884755,0.632464,0.937054,0.331621,0.919111,0.461483,0.945962,0.975366,0.640475,0.0180932,0.173952,0.814776,0.256662,0.489812,0.45743,0.0123407,0.806458,0.837772,0.920972,0.41031,0.890848,0.337335,0.672937,0.912272,0.947474,0.956247,0.851972,0.835368,0.467406,0.55016,0.295218,0.224924,0.960864,0.178887,0.328801,0.841518,0.404159,0.145213,0.283816,0.102372,0.252916,0.455478,0.495275,0.202025,0.25065,0.400648,0.171184,0.523839,0.268651,0.504574,0.776031,0.754462,0.509786,0.00334805,0.311104,0.98935,0.725141,0.378651,0.614554,0.227124,0.725367,0.854314,0.947762,0.0911689,0.288788,0.636916,0.64668,0.323123,0.80178,0.166233,0.705638,0.677378,0.0822595,0.52265,0.910521,0.942328,0.948428,0.0203703,0.430658,0.598539,0.3123,0.624215,0.242748,0.329181,0.784424,0.300558,0.901931,0.192584,0.373862,0.815228,0.684017,0.755371,0.385432,0.336382,0.853611,0.257968,0.413019,0.394381,0.186021,0.833866,0.233002,0.432059,0.424175,0.815922,0.452254,0.695482,0.575477,0.831851,0.572452,0.623539,0.952445,0.219726,0.433666,0.540833,0.557963,0.269872,0.0798519,0.479737,0.257586,0.653811,0.69198,0.456929,0.903871,0.225051,0.672241,0.347071,0.382126,0.346704,0.764155,0.517792,0.296619,0.853877,0.908825,0.28377,0.789366,0.305619,0.55548,0.544701,0.144712,0.917781,0.534991,0.470896,0.738262,0.301375,0.0983488,0.485344,0.85067,0.490977,0.873935,0.0502664,0.578419,0.894504,0.580219,0.51136,0.550048,0.492468,0.304709,0.406378,0.915416,0.638666,0.0709224,0.876226,0.941925,0.646055,0.396809,0.795237,0.911803,0.976482,0.659333,0.763664,0.747844,0.89568,0.0685779,0.656575,0.140696,0.455697,0.194841,0.464475,0.865903,0.163496,0.246757,0.541154,0.280464,0.691829,0.934366,0.654361,0.37556,0.427516,0.465342,0.519365,0.236518,0.782972,0.15217,0.403312,0.59093,0.328075,0.531762,0.480117,0.437077,0.426497,0.937048,0.0989106,0.357814,0.456643,0.591571,0.961472,0.549547,0.0128127,0.0598291,0.66088,0.820704,0.687616,0.826853,0.315902,0.700539,0.967942,0.68879,0.155327,0.123054,0.595533,0.876339,0.00558585,0.685837,0.302936,0.233194,0.245773,0.0677484,0.306484,0.212022,0.599055,0.195269,0.546996,0.424343,0.740063,0.0513303,0.825799,0.763016,0.247663,0.208117,0.1989,0.599253,0.144715,0.391442,0.878612,0.974943,0.0998816,0.196763,0.289481,0.661628,0.567491,0.995744,0.973907,0.470832,0.274097,0.623115,0.519691,0.893639,0.323366,0.532393,0.763126,0.28551,0.159424,0.561304,0.383743,0.919827,0.0480554,0.951891,0.432438,0.239411,0.326506,0.151253,0.611772,0.334528,0.651901,0.28838,0.944215,0.919711,0.551907,0.231138,0.422852,0.4695,0.636651,0.682039,0.998678,0.961796,0.616608,0.946562,0.667303,0.41061,0.205551,0.835032,0.66164,0.564196,0.876294,0.5811,0.450894,0.742789,0.712116,0.821406,0.00192815,0.0263814,0.971544,0.0610879,0.730031,0.649332,0.268859,0.489652,0.0304784,0.192646,0.724181,0.703908,0.492437,0.953307,0.0650007,0.980699,0.38664,0.715837,0.218205,0.5308,0.284333,0.699621,0.633399,0.482226,0.512374,0.359854,0.279485,0.386097,0.0783436,0.759604,0.939152,0.142407,0.278895,0.153617,0.10981,0.906852,0.232384,0.626086,0.327089,0.173248,0.218604,0.0968382,0.66065,0.909638,0.743067,0.730825,0.266359,0.679813,0.777466,0.266133,0.381912,0.408961,0.520542,0.941552,0.681955,0.323703,0.405363,0.31163,0.847215,0.0440426,0.0838344,0.00271767,0.646874,0.142073,0.68354,0.971164,0.951476,0.236908,0.84949,0.0627112,0.536608,0.232568,0.678881,0.745428,0.771641,0.157124,0.0612832,0.614908,0.509822,0.249247,0.432748,0.123797,0.899876,0.888404,0.668384,0.134604,0.438236,0.138521,0.592614,0.694725,0.651744,0.74194,0.794696,|0.369478,0.431241,0.552622,0.230849,0.391133,0.0248927,0.0266245,0.841047,0.924227,0.698888,0.675084,0.861749,0.100707,0.564074,0.872089,0.672834,0.177168,0.757011,0.0721669,0.210538,0.366684,0.0245917,0.877279,0.000230908,0.0750304,0.666892,0.212654,0.36719,0.823825,0.612969,0.137514,0.0213509,0.380422,0.668599,0.521245,0.278772,0.911391,0.328364,0.549183,0.618993,0.969808,0.539279,0.328829,0.888331,0.881093,0.853361,0.98813,0.302893,0.473216,0.870438,0.293599,0.679851,0.609572,0.716512,0.357479,0.652623,0.931101,0.490134,0.406796,0.498322,0.699391,0.286893,0.0218191,0.477066,0.887392,0.199763,0.530166,0.422772,0.722362,0.873106,0.217366,0.757236,0.480375,0.463161,0.364609,0.719937,0.326544,0.812047,0.697101,0.578875,0.0305322,0.341976,0.717809,0.520333,0.297414,0.188592,0.739443,0.249955,0.35221,0.707497,0.311396,0.808853,0.44049,0.899639,0.432692,0.159486,0.460694,0.526095,0.233326,0.990573,0.749461,0.838579,0.515406,0.745703,0.617367,0.248083,0.529854,0.526466,0.0400858,0.833478,0.111553,0.528705,0.580664,0.118825,0.591513,0.248211,0.35088,0.220304,0.503476,0.224584,0.0513369,0.915515,0.860935,0.232167,0.00307894,0.714768,0.506269,0.915623,0.626655,0.574618,0.184117,0.99253,0.89757,0.473105,0.728953,0.694542,0.905292,0.0503745,0.439574,0.904175,0.0137953,0.335019,0.577867,0.841057,0.619726,0.438693,0.909083,0.0870485,0.084062,0.135119,0.603296,0.000950038,0.00317377,0.512261,0.482039,0.488723,0.88988,0.78386,0.814023,0.910677,0.785428,0.770859,0.980169,0.81409,0.536514,0.922216,0.97142,0.87289,0.438875,0.708099,0.634097,0.423437,0.903882,0.582539,0.875203,0.978658,0.705206,0.976556,0.989436,0.745704,0.653875,0.886585,0.311178,0.273585,0.127415,0.930292,0.582889,0.0329152,0.753231,0.0822474,0.788378,0.573888,0.962001,0.137616,0.774043,0.755422,0.275066,0.658945,0.120473,0.694155,0.0124548,0.684343,0.470465,0.181211,0.00458348,0.40049,0.328985,0.30567,0.4237,0.911967,0.0432776,0.0295058,0.371205,0.407111,0.0938429,0.298454,0.113871,0.694627,0.506284,0.883943,0.936622,0.917427,0.0365385,0.570157,0.143675,0.80806,0.209967,0.0947218,0.0606112,0.226905,0.0572,0.41383,0.364844,0.945155,0.775453,0.581305,0.529553,0.587284,0.320533,0.613407,0.0658653,0.328393,0.59537,0.956576,0.837801,0.537049,0.0607938,0.399201,0.989246,0.594133,0.204539,0.600114,0.657772,0.126434,0.380727,0.76559,0.152804,0.943695,0.828596,0.196274,0.0297838,0.610325,0.985287,0.269352,0.491565,0.224035,0.762901,0.61127,0.268571,0.996236,0.167752,0.187903,0.816096,0.696484,0.362366,0.617161,0.617305,0.924462,0.429899,0.180287,0.191227,0.44221,0.216248,0.784436,0.539595,0.8557,0.395128,0.197363,0.116996,0.464466,0.308414,0.731448,0.71279,0.410107,0.567746,0.20912,0.61904,0.833188,0.0846817,0.812396,0.294979,0.611603,0.370382,0.639287,0.89596,0.507632,0.199173,0.54435,0.786276,0.57692,0.136038,0.583085,0.304193,0.36736,0.08005,0.86077,0.355114,0.840562,0.918938,0.286805,0.656359,0.0592807,0.410412,0.897977,0.657521,0.756759,0.972436,0.247654,0.326361,0.657864,0.527492,0.307772,0.302715,0.776717,0.936619,0.0352135,0.238228,0.466177,0.845938,0.57096,0.229286,0.347126,0.852311,0.382263,0.302806,0.0921635,0.631146,0.285173,0.888303,0.818056,0.0126739,0.91136,0.0480014,0.585849,0.0335079,0.195958,0.158982,0.844845,0.103907,0.381321,0.0648491,0.452238,0.718164,0.983488,0.253544,0.964463,0.390351,0.762977,0.73323,0.512346,0.561952,0.383273,0.259392,0.797199,0.221776,0.943076,0.223856,0.211091,0.710215,0.497535,0.3835,0.894726,0.851486,0.0995009,0.28518,0.949137,0.0476236,0.156876,0.299147,0.582869,0.427351,0.142231,0.651285,0.101206,0.200559,0.614149,0.89485,0.433615,0.831808,0.696605,0.921989,0.903048,0.794453,0.383971,0.642737,0.254917,0.926595,0.0980951,0.882752,0.357963,0.428503,0.60511,0.355155,0.199813,0.523356,0.159352,0.439281,0.82567,0.446949,0.529123,0.344857,0.920792,0.298495,0.0355133,0.896834,0.51923,0.648939,0.229306,0.569219,0.113882,0.921859,0.443833,0.677623,0.58763,0.38857,0.175523,0.145662,0.127926,0.276213,0.762757,0.718064,0.149893,0.758628,0.309728,0.568255,0.0914891,0.1868,0.774872,0.978699,0.177865,0.31463,0.983352,0.867266,0.152984,0.873099,0.87902,0.591139,0.546102,0.099868,0.748111,0.868469,0.135668,0.699041,0.905186,0.986317,0.882032,0.0715899,0.199986,0.0780257,0.933744,0.0714544,0.207789,0.437448,0.631643,0.580015,0.730707,0.124585,0.728803,0.3118,0.218711,0.90773,0.141823,0.821798,0.160196,0.880972,0.869606,0.668022,0.926634,0.582421,0.361745,0.288712,0.490577,0.171028,0.828489,0.905745,0.860169,0.284448,0.507737,0.833292,0.0193202,0.835063,0.931965,0.307339,0.279796,0.659744,0.470095,0.84218,0.551754,0.911441,0.927007,0.801214,0.8013,0.785655,0.867996,0.423521,0.91974,0.0370573,0.170558,0.503438,0.738765,0.691975,0.4096,0.522556,0.762517,0.459454,0.518322,0.934312,0.0402333,0.309264,0.150521,0.341835,0.47094,0.786833,0.456092,0.609423,0.776495,0.981575,0.636682,0.684483,0.517356,0.403453,0.727736,0.761581,0.784048,0.309368,0.949661,0.592522,0.771709,0.920875,0.715852,0.324581,0.578854,0.938893,0.985376,0.915154,0.211997,0.594609,0.383445,0.847438,0.277424,0.0732253,0.678762,0.453409,0.99107,0.809826,0.814275,0.12324,0.877492,0.305981,0.907739,0.367094,0.864788,0.664224,0.626448,0.666094,0.109852,0.439944,0.469269,0.387439,0.879957,0.881033,0.269096,0.648229,0.634971,0.169792,0.834956,0.397206,0.764191,0.384833,0.365921,0.727257,0.59966,0.168674,0.739824,0.682457,0.451536,0.829053,0.731042,0.911775,0.00434172,0.472115,0.450314,0.23438,0.959949,0.762272,0.266358,0.230612,0.161663,0.0372446,0.245856,0.674856,0.234647,0.877176,0.115653,0.330731,0.129101,0.674933,7.88569e-05,0.780675,0.974187,0.282523,0.833598,0.956218,0.416272,0.411173,0.293307,0.832902,0.289047,0.458851,0.805995,0.355774,0.917912,0.716395,0.281145,0.383674,0.861476,0.349439,0.204337,0.0598617,0.477154,0.150311,0.884338,0.1849,0.857406,0.806226,0.782789,0.476737,0.779152,0.00381768,0.883831,0.687304,0.537426,0.910255,0.494361,0.335636,0.528196,0.985694,0.557811,0.00544411,0.831652,0.428421,0.4943,0.569009,0.249903,0.438518,0.896934,0.12546,0.77699,0.662924,0.15208,0.68364,0.992485,0.371063,0.842905,0.650338,0.731056,0.85613,0.987299,0.409378,0.24285,0.227554,0.962685,0.130991,0.283265,0.284534,0.435219,0.606637,0.757192,0.11937,0.0497282,0.0715127,0.169301,0.784387,0.0858479,0.525319,0.171181,0.865597,0.531353,0.0972106,0.301232,0.627057,0.780951,0.986797,0.393806,0.221264,0.543789,0.512086,0.783529,0.408649,0.20879,0.170119,0.926768,0.368893,0.807624,0.123119,0.981682,0.437818,0.395848,0.476147,0.600756,0.50301,0.653334,0.371329,0.127678,0.78688,0.633804,0.806294,0.406135,0.0489193,0.83229,0.951453,0.729463,0.527287,0.0532916,0.984325,0.250127,0.172966,0.0210544,0.535381,0.54543,0.433685,0.431182,0.860779,0.51803,0.721532,0.357414,0.566605,0.877647,0.599601,0.142489,0.705473,0.639578,0.00171906,0.761714,0.111771,0.398138,0.924095,0.0278459,0.347431,0.746465,0.290084,0.590489,0.583742,0.963793,0.235276,0.952118,0.901092,0.221753,0.879357,0.628332,0.222072,0.0835069,0.350648,0.460171,0.0632147,0.893779,0.792344,0.289855,0.439284,0.720947,0.173451,0.462812,0.831686,0.910641,0.95095,0.173158,0.711392,0.434181,0.201141,0.590607,0.870056,0.0763298,0.698777,0.604505,0.522818,0.443642,0.977863,0.0402095,0.629071,0.51564,0.977537,0.448517,0.615792,0.525958,0.0047434,0.366807,0.150028,0.614253,0.232502,0.406028,0.439395,0.889945,0.0140335,0.0349783,0.563891,0.386352,0.410762,0.430057,0.765215,0.757016,0.580372,0.688219,0.736542,0.954339,0.707949,0.0625048,0.441774,0.803874,0.392247,0.87878,0.331255,0.853441,0.364802,0.639126,0.630981,0.419917,0.304931,0.391317,0.238599,0.385393,0.0343635,0.487864,0.733551,0.0389823,0.678102,0.552093,0.211844,0.237409,0.572573,0.316817,0.313958,0.912385,0.571331,0.223171,0.0860348,0.208714,0.867704,0.90669,0.766663,0.30481,0.969801,0.320589,0.611495,0.0508525,0.750343,0.821384,0.818317,0.566267,0.52255,0.624986,0.732618,0.552767,0.149282,0.496553,0.566823,0.916977,0.778577,0.742025,0.826236,0.510022,0.300888,0.0952786,0.278024,0.225259,0.175609,0.443233,0.191236,0.446707,0.733253,0.374931,0.135198,0.133995,0.507527,0.0704737,0.564788,0.828635,0.861807,0.892086,0.465568,0.031465,0.148895,0.318873,0.58946,0.0519173,0.438892,0.942737,0.808603,0.737523,0.581745,0.476817,0.604865,0.133186,0.194885,0.82467,0.504691,0.759471,0.829975,0.0632347,0.11177,0.816331,0.740722,0.389314,0.940562,0.294312,0.843987,0.810864,0.691496,0.892222,0.644783,0.177676,0.43505,0.472293,0.986182,0.655665,0.85373,0.971832,0.0224099,0.346059,0.74381,0.311069,0.910816,0.589165,0.298507,0.0935101,0.702439,0.101607,0.316579,0.36906,0.17917,0.858324,0.0237113,0.844374,0.678303,0.514066,0.116746,0.550415,0.0648707,0.109187,0.807399,0.00608653,0.526368,0.823014,0.177926,0.40781,0.566517,0.748299,0.241683,0.589884,0.270698,0.91462,0.0333267,0.0577067,0.283762,0.0154012,0.466912,0.289195,0.660425,0.612615,0.876379,0.811242,0.833325,0.636658,0.361218,0.817901,0.404841,0.275105,0.949881,0.938252,0.166778,0.790548,0.563577,0.990802,0.119752,0.739663,0.556965,0.234385,0.283378,0.141576,0.821303,0.0543525,|0.0811049,0.0621502,0.00969177,0.408338,0.863095,0.205201,0.772466,0.0141492,0.484907,0.328944,0.532178,0.303059,0.191711,0.213153,0.838683,0.649995,0.808498,0.945838,0.191238,0.0738837,0.316354,0.739255,0.721098,0.609553,0.14813,0.19175,0.742789,0.508645,0.320896,0.424523,0.153099,0.212629,0.146813,0.450108,0.471808,0.0232671,0.317869,0.735542,0.554234,0.962523,0.521056,0.318168,0.656239,0.552918,0.636039,0.103198,0.024235,0.957583,0.990853,0.777357,0.957075,0.920368,0.969526,0.469253,0.644298,0.348393,0.012391,0.633574,0.756392,0.546704,0.148709,0.900356,0.504107,0.677327,0.650069,0.981602,0.732849,0.235596,0.138695,0.985786,0.837313,0.516217,0.337802,0.301104,0.231649,0.992912,0.485903,0.0460506,0.902526,0.634483,0.525731,0.423927,0.720435,0.769284,0.87114,0.030068,0.00192136,0.518697,0.592564,0.742029,0.122089,0.670253,0.694191,0.295818,0.149097,0.864287,0.1653,0.962951,0.893271,0.0442891,0.344494,0.293694,0.192421,0.432805,0.826426,0.234329,0.243951,0.0156762,0.915904,0.602806,0.589831,0.449745,0.375456,0.109769,0.705955,0.0710346,0.151629,0.597029,0.527414,0.744393,0.823587,0.786532,0.0800157,0.477338,0.943038,0.597903,0.439556,0.815287,0.864466,0.461432,0.23204,0.24323,0.0888265,0.427994,0.270681,0.735876,0.318431,0.765679,0.353455,0.0762925,0.694747,0.726604,0.0453246,0.271828,0.507105,0.849616,0.334304,0.602229,0.155927,0.0499361,0.290726,0.762406,0.165989,0.247083,0.801127,0.274369,0.335275,0.951857,0.11237,0.919296,0.548869,0.640898,0.485569,0.069468,0.818071,0.227151,0.740209,0.117634,0.079823,0.254263,0.909872,0.815874,0.939216,0.250726,0.938359,0.812168,0.14427,0.827493,0.83703,0.154529,0.797469,0.320028,0.227452,0.704709,0.583592,0.540794,0.850995,0.00418562,0.975981,0.177639,0.615168,0.682661,0.975852,0.917038,0.910227,0.458159,0.721033,0.274739,0.65163,0.429222,0.113823,0.760202,0.661268,0.393327,0.0514558,0.362883,0.967755,0.436491,0.354343,0.445467,0.879247,0.989533,0.364433,0.205675,0.682205,0.529244,0.132507,0.132856,0.791154,0.111881,0.278821,0.0513347,0.856526,0.776046,0.0893643,0.0992893,0.278882,0.724072,0.936009,0.45602,0.434524,0.668109,0.277316,0.793941,0.910607,0.663553,0.673253,0.207256,0.427865,0.299476,0.895878,0.0911683,0.0896925,0.566356,0.48419,0.17681,0.0412927,0.0162078,0.633501,0.216829,0.900593,0.111543,0.84786,0.329071,0.828446,0.146944,0.194203,0.488688,0.406726,0.904394,0.00850999,0.322607,0.0308588,0.368351,0.210679,0.0717461,0.315345,0.0525408,0.401742,0.437997,0.716257,0.57409,0.80834,0.603473,0.204999,0.542698,0.661706,0.643954,0.635433,0.0612776,0.134097,0.298954,0.616335,0.826098,0.851587,0.214844,0.881851,0.0191273,0.719387,0.981001,0.959195,0.0190963,0.25167,0.683738,0.894768,0.0744717,0.342414,0.162618,0.0412463,0.362634,0.450722,0.840252,0.372331,0.261482,0.0106974,0.0439655,0.629529,0.143664,0.588891,0.848124,0.295328,0.0256545,0.517237,0.55109,0.408067,0.293607,0.29584,0.404148,0.200911,0.557839,0.425041,0.923622,0.0140643,0.395336,0.403472,0.639602,0.358317,0.260314,0.759274,0.220048,0.932464,0.0284126,0.411786,0.314601,0.182565,0.988593,0.489862,0.831178,0.51432,0.943168,0.445368,0.950587,0.17161,0.535701,0.844398,0.701203,0.753179,0.453558,0.376853,0.926264,0.594592,0.522108,0.776973,0.252932,0.458077,0.795568,0.46963,0.173903,0.47613,0.720514,0.695951,0.619401,0.755538,0.0375559,0.514736,0.168081,0.502712,0.948524,0.609791,0.323855,0.856667,0.317928,0.773659,0.0519643,0.454411,0.0917586,0.420882,0.318972,0.466165,0.317265,0.666405,0.357741,0.138878,0.169903,0.365136,0.12138,0.0731199,0.796793,0.797866,0.142203,0.654152,0.63064,0.531394,0.72682,0.540911,0.0604591,0.368517,0.597891,0.792896,0.270171,0.518894,0.411056,0.309313,0.92114,0.06714,0.216695,0.727531,0.582123,0.400805,0.38119,0.477081,0.992929,0.460866,0.741485,0.981315,0.309335,0.775032,0.0126446,0.328555,0.692866,0.624165,0.0262637,0.00512248,0.4201,0.69584,0.0956918,0.115838,0.43804,0.702188,0.512022,0.950142,0.249814,0.937208,0.348298,0.221234,0.253154,0.906816,0.732575,0.727202,0.461293,0.0716138,0.904439,0.290497,0.443303,0.545285,0.574369,0.958414,0.186419,0.507394,0.266847,0.100359,0.885106,0.911151,0.928536,0.900691,0.649896,0.729333,0.873821,0.544432,0.553805,0.664841,0.508976,0.738414,0.793606,0.901394,0.836689,0.00499797,0.229775,0.896904,0.788092,0.939089,0.834659,0.319465,0.682377,0.4901,0.879162,0.330582,0.26511,0.32764,0.573778,0.640141,0.942143,0.0338976,0.661557,0.314896,0.986817,0.361092,0.112731,0.585998,0.126781,0.0522732,0.135542,0.119908,0.467391,0.273973,0.806117,0.680245,0.739009,0.8937,0.608133,0.249166,0.747658,0.64545,0.437477,0.662838,0.986885,0.390134,0.714126,0.355879,0.612939,0.197495,0.242341,0.415697,0.120231,0.981533,0.605952,0.606491,0.965011,0.484581,0.916455,0.732414,0.411536,0.7892,0.377589,0.796448,0.470089,0.71926,0.950457,0.0587077,0.15683,0.553691,0.375221,0.453453,0.724365,0.487091,0.738554,0.222581,0.359807,0.574643,0.324678,0.0585054,0.0397359,0.733168,0.360091,0.130749,0.169885,0.782432,0.892997,0.519174,0.221051,0.812155,0.311844,0.274433,0.171985,0.719716,0.432056,0.436731,0.956004,0.135385,0.52893,0.911746,0.413266,0.151033,0.468006,0.236399,0.47823,0.804061,0.792649,0.100378,0.486375,0.786676,0.655346,0.43434,0.845695,0.801314,0.467704,0.917253,0.519805,0.508722,0.968882,0.367036,0.507576,0.680609,0.968578,0.124558,0.524175,0.806415,0.0172525,0.430821,0.955648,0.683221,0.639364,0.208035,0.0957036,0.960255,0.377285,0.0459321,0.768632,0.892437,0.976911,0.267869,0.355176,0.289078,0.0359223,0.494661,0.448939,0.538817,0.568032,0.255598,0.088771,0.302722,0.359268,0.32621,0.158485,0.767073,0.833204,0.460362,0.295183,0.836177,0.19791,0.14395,0.398611,0.0972756,0.383208,0.244588,0.0477798,0.933336,0.33485,0.39641,0.455714,0.466159,0.481886,0.684356,0.274402,0.321425,0.502651,0.074715,0.180745,0.500726,0.0639982,0.149605,0.624594,0.0718677,0.448742,0.278524,0.705865,0.741747,0.979631,0.952131,0.443564,0.807706,0.406365,0.0737942,0.587967,0.121588,0.584311,0.70408,0.46791,0.700326,0.481823,0.374348,0.863744,0.397114,0.162271,0.030625,0.458371,0.413271,0.581934,0.362728,0.199291,0.528051,0.247695,0.598388,0.275496,0.366207,0.481576,0.766299,0.52737,0.0450577,0.105985,0.481707,0.574913,0.98392,0.973062,0.819038,0.645562,0.739074,0.916301,0.449759,0.451481,0.666689,0.371136,0.876275,0.20319,0.351813,0.896007,0.888174,0.759194,0.437728,0.405944,0.460289,0.0900691,0.917131,0.941552,0.468847,0.486754,0.110341,0.75602,0.680832,0.701895,0.0854393,0.562961,0.545364,0.105025,0.611836,0.526834,0.677769,0.626369,0.439321,0.415101,0.882525,0.85212,0.633359,0.64565,0.594591,0.828885,0.502998,0.378804,0.0462599,0.923597,0.850155,0.725412,0.738661,0.555028,0.492947,0.575319,0.502371,0.417824,0.405659,0.0562366,0.958457,0.274119,0.514305,0.925211,0.932036,0.643273,0.35281,0.847192,0.238636,0.295558,0.25342,0.274401,0.440174,0.0264797,0.451075,0.547627,0.200518,0.710087,0.197908,0.0147486,0.9883,0.325528,0.921717,0.924329,0.165739,0.485694,0.0560957,0.0490044,0.576525,0.949774,0.0179526,0.46709,0.998768,0.00338936,0.0253369,0.640004,0.273669,0.202007,0.808541,0.390821,0.801367,0.937958,0.452156,0.368001,0.371165,0.931508,0.241327,0.260963,0.784217,0.309309,0.49871,0.103003,0.823859,0.169191,0.0455883,0.646862,0.830433,0.0919695,0.800605,0.431294,0.308796,0.684834,0.53689,0.792296,0.58068,0.645824,0.749763,0.433713,0.203116,0.290432,0.0491624,0.12858,0.427621,0.695651,0.810808,0.44868,0.0473173,0.550163,0.0306589,0.868863,0.807962,0.757522,0.303768,0.957397,0.140032,0.497949,0.863319,0.860808,0.491942,0.27293,0.832557,0.872081,0.648903,0.354789,0.476252,0.969894,0.569912,0.393524,0.284165,0.735879,0.123902,0.446871,0.572471,0.749979,0.250919,0.856471,0.0507211,0.797338,0.346619,0.898402,0.925075,0.471757,0.11892,0.844193,0.627676,0.438819,0.799052,0.433952,0.399327,0.308989,0.604799,0.905091,0.451435,0.341465,0.936052,0.922519,0.356605,0.0305454,0.106621,0.20825,0.150573,0.736103,0.709731,0.123563,0.0996585,0.79568,0.272431,0.57054,0.395712,0.758262,0.310138,0.270525,0.0756907,0.948493,0.500227,0.8712,0.515335,0.669637,0.928228,0.728005,0.691952,0.453146,0.892997,0.506799,0.232077,0.836799,0.90545,0.384977,0.445244,0.32085,0.876717,0.510253,0.192439,0.710445,0.367388,0.885215,0.794645,0.399443,0.500222,0.495802,0.699963,0.280692,0.196549,0.859115,0.349843,0.0274888,0.532682,0.544579,0.572003,0.42844,0.0717757,0.106871,0.0265965,0.0332216,0.355714,0.536872,0.209059,0.775187,0.92222,0.826956,0.341148,0.00847608,0.197832,0.400631,0.692749,0.183433,0.215703,0.171348,0.187452,0.619314,0.370044,0.462065,0.221498,0.200099,0.90716,0.00869018,0.372321,0.523107,0.78602,0.373876,0.640889,0.663307,0.197221,0.587441,0.772766,0.661502,0.170248,0.820443,0.0858536,0.131066,0.924385,0.702079,0.541586,0.845853,0.697435,0.5664,0.277374,0.864503,0.294074,0.82569,0.739264,0.614707,0.0648347,0.360759,0.594764,0.189518,0.473453,0.277642,0.887599,0.640145,0.251914,0.239923,0.536944,0.466156,0.830343,0.564028,0.424557,0.626811,0.0297624,0.341456,0.748129,0.453856,0.723423,0.601455,0.395758,0.641852,0.22197,0.925349,0.174949,0.760314,|0.606884,0.357692,0.232373,0.355136,0.807696,0.101098,0.238791,0.00216502,0.253041,0.995674,0.898541,0.536016,0.445874,0.745911,0.682823,0.929646,0.392758,0.89096,0.947568,0.475817,0.516887,0.165866,0.579338,0.923649,0.593899,0.0562328,0.380065,0.95917,0.347507,0.565226,0.231404,0.833042,0.955453,0.481011,0.0301989,0.329882,0.512145,0.14094,0.969217,0.233659,0.380549,0.756521,0.20171,0.598652,0.432817,0.145992,0.484384,0.923424,0.47744,0.436934,0.0139034,0.958514,0.747746,0.0518459,0.59176,0.398878,0.487695,0.53605,0.206532,0.671557,0.689916,0.87518,0.992894,0.283693,0.895881,0.843382,0.755111,0.201006,0.989649,0.843113,0.753711,0.717599,0.0257513,0.614453,0.875356,0.224873,0.580592,0.538155,0.178184,0.565056,0.712658,0.194429,0.345496,0.170279,0.939825,0.0910565,0.056666,0.0397972,0.40138,0.708196,0.60441,0.840126,0.194388,0.413322,0.88414,0.161711,0.789311,0.364885,0.582235,0.082972,0.184233,0.64665,0.881254,0.986433,0.0469001,0.892357,0.31831,0.518363,0.0180401,0.606974,0.732221,0.518602,0.024352,0.652946,0.435238,0.0543621,0.908762,0.484179,0.00571257,0.472834,0.386462,0.184609,0.0948215,0.725664,0.284352,0.399358,0.460248,0.798546,0.557755,0.131078,0.230413,0.834774,0.606164,0.35799,0.135068,0.33603,0.617583,0.842038,0.148122,0.813446,0.281852,0.598617,0.172493,0.349155,0.0743213,0.943651,0.328265,0.622904,0.584853,0.13171,0.774258,0.533208,0.859751,0.410982,0.786865,0.0533092,0.574429,0.852058,0.283027,0.491872,0.568711,0.341921,0.298433,0.120554,0.953337,0.071222,0.340019,0.355029,0.375722,0.173051,0.0745021,0.146729,0.55972,0.0888238,0.540555,0.759993,0.326999,0.971309,0.397076,0.750186,0.783204,0.325434,0.323586,0.974211,0.463976,0.3927,0.394467,0.517449,0.401353,0.584121,0.307527,0.53609,0.742429,0.574444,0.919863,0.530105,0.0041796,0.867277,0.664568,0.0762046,0.412114,0.67661,0.938901,0.726282,0.264917,0.559434,0.712235,0.819713,0.137213,0.898709,0.779241,0.200148,0.703419,0.806514,0.0447044,0.224664,0.729242,0.287286,0.0585657,0.814352,0.266239,0.295608,0.147963,0.583835,0.324837,0.276126,0.647098,0.977533,0.561316,0.00597274,0.681731,0.0456095,0.160452,0.745719,0.112987,0.722066,0.666274,0.782596,0.841483,0.241138,0.293374,0.622673,0.165836,0.709033,0.328198,0.904487,0.622314,0.852278,0.33998,0.479123,0.364907,0.418244,0.0750173,0.226623,0.944943,0.555519,0.0365047,0.9036,0.645471,0.289836,0.806058,0.105146,0.822371,0.560871,0.759546,0.560047,0.536667,0.296875,0.25572,0.970299,0.889791,0.728957,0.978959,0.556601,0.608798,0.255846,0.0725647,0.871066,0.132156,0.834508,0.0563917,0.170981,0.788036,0.753712,0.881663,0.937536,0.463181,0.349493,0.986944,0.388498,0.326265,0.23873,0.228153,0.165442,0.51675,0.511336,0.511873,0.647767,0.69693,0.545326,0.202438,0.00143313,0.617461,0.753438,0.845336,0.772272,0.772426,0.985553,0.435996,0.5504,0.42697,0.320121,0.1643,0.674905,0.701603,0.202525,0.0397113,0.193914,0.355105,0.300503,0.967944,0.591798,0.201471,0.527393,0.0165746,0.208035,0.135971,0.662895,0.84078,0.42322,0.769471,0.509697,0.170378,0.469661,0.44217,0.452948,0.753097,0.969025,0.773832,0.671688,0.55498,0.679575,0.779206,0.210186,0.0725803,0.401991,0.138511,0.609124,0.928651,0.0558072,0.0868533,0.244289,0.292782,0.816704,0.142031,0.646592,0.563589,0.341719,0.442601,0.994133,0.553643,0.697478,0.592383,0.989704,0.447248,0.0536187,0.481093,0.00853038,0.870714,0.680512,0.920978,0.238349,0.404996,0.105792,0.79894,0.0911489,0.866718,0.535954,0.525811,0.0736743,0.444508,0.206715,0.569995,0.121087,0.135971,0.524269,0.787874,0.174049,0.0429592,0.0943193,0.850253,0.643773,0.825023,0.993027,0.230905,0.395834,0.748985,0.368213,0.724961,0.453627,0.0324325,0.550223,0.36051,0.230314,0.305893,0.122156,0.917572,0.673146,0.327144,0.363843,0.268981,0.160722,0.671167,0.927055,0.620298,0.628823,0.395491,0.980455,0.788563,0.788026,0.344958,0.348665,0.700286,0.285519,0.761192,0.0528264,0.425437,0.780728,0.951571,0.523727,0.141505,0.405278,0.600948,0.332613,0.0998242,0.0155268,0.0417427,0.356711,0.324692,0.59236,0.314696,0.385714,0.495152,0.954604,0.362395,0.0394019,0.278889,0.0734954,0.78779,0.904058,0.544705,0.00365609,0.935038,0.420037,0.597778,0.872842,0.0979319,0.158004,0.0434756,0.0725297,0.156757,0.437809,0.829388,0.0878925,0.166386,0.722374,0.0938121,0.315331,0.790101,0.0783058,0.111088,0.914618,0.196842,0.629316,0.313046,0.405579,0.0522647,0.909687,0.373138,0.947621,0.52655,0.36615,0.594788,0.668347,0.890395,0.83828,0.285554,0.851671,0.960305,0.892025,0.934411,0.130525,0.163369,0.268801,0.690399,0.390862,0.538319,0.183636,0.568121,0.572311,0.741914,0.693048,0.7335,0.2332,0.289572,0.964108,0.691258,0.471888,0.408596,0.340425,0.163281,0.528041,0.0555739,0.572674,0.037842,0.862848,0.0154101,0.963742,0.476865,0.861219,0.684831,0.137313,0.427966,0.472278,0.260163,0.870398,0.722879,0.0194762,0.711672,0.0712642,0.130116,0.0226653,0.437757,0.0503117,0.762211,0.786581,0.725102,0.387187,0.260091,0.306815,0.24215,0.941559,0.502322,0.37237,0.238267,0.0626706,0.099659,0.433838,0.85811,0.618669,0.765557,0.516405,0.459565,0.403047,0.215458,0.0157993,0.0243471,0.408254,0.211491,0.651465,0.31231,0.958833,0.906204,0.795891,0.549371,0.880974,0.78179,0.663343,0.377849,0.0876409,0.398751,0.4362,0.83464,0.835987,0.339036,0.138303,0.157289,0.0332792,0.0647138,0.453505,0.0593132,0.76086,0.0580337,0.342832,0.96509,0.882242,0.945841,0.382003,0.735322,0.911166,0.455168,0.824107,0.512263,0.442683,0.721402,0.309161,0.0584874,0.573736,0.19745,0.0837765,0.505102,0.276524,0.810184,0.126167,0.432268,0.920626,0.378357,0.857942,0.426401,0.499639,0.867315,0.135974,0.226731,0.455881,0.460778,0.240001,0.963793,0.645292,0.514765,0.130514,0.804106,0.745802,0.294118,0.266958,0.906143,0.582244,0.386594,0.265162,0.900664,0.755302,0.477605,0.030398,0.309501,0.318263,0.0477655,0.498571,0.738328,0.0694042,0.509096,0.177861,0.757505,0.158021,0.0653506,0.384187,0.289778,0.650975,0.455023,0.950655,0.328888,0.992075,0.109333,0.392011,0.314824,0.854459,0.723451,0.849453,0.358632,0.0242488,0.575383,0.36868,0.258988,0.513854,0.472365,0.380075,0.487187,0.494318,0.830951,0.791976,0.0208382,0.905696,0.202653,0.234918,0.13258,0.401511,0.753806,0.334967,0.455633,0.186375,0.677502,0.722,0.127609,0.591066,0.429467,0.86656,0.896175,0.670293,0.444093,0.751584,0.256478,0.606907,0.190288,0.175391,0.275988,0.968484,0.681386,0.098949,0.0286367,0.384016,0.945746,0.647738,0.231977,0.425634,0.857413,0.0333787,0.0806797,0.771849,0.706949,0.0969709,0.572574,0.258348,0.777333,0.0931995,0.0626104,0.294579,0.141011,0.623599,0.22286,0.635016,0.841739,0.0670525,0.678845,0.340683,0.179695,0.332765,0.701315,0.177434,0.6512,0.97591,0.877064,0.880988,0.491286,0.28663,0.107403,0.186633,0.153456,0.203432,0.242861,0.374793,0.450226,0.0578126,0.633353,0.478962,0.896998,0.322438,0.608511,0.74853,0.887273,0.0341845,0.545716,0.737817,0.26252,0.744516,0.677192,0.485861,0.416034,0.62656,0.886868,0.652546,0.93825,0.337921,0.891099,0.95954,0.835385,0.4596,0.763654,0.507514,0.639305,0.683584,0.331752,0.11299,0.197416,0.326629,0.280569,0.570372,0.211423,0.244252,0.0346221,0.187608,0.551169,0.216875,0.98492,0.00808686,0.103887,0.0677223,0.976712,0.0649636,0.357171,0.256184,0.712045,0.696802,0.292034,0.43967,0.515656,0.737337,0.977269,0.144433,0.408009,0.570383,0.529743,0.627274,0.674688,0.860903,0.951546,0.588367,0.609486,0.961538,0.303291,0.570057,0.741273,0.402976,0.777399,0.0703571,0.34789,0.50061,0.580192,0.876124,0.540898,0.728935,0.850992,0.602058,0.688509,0.0705303,0.629276,0.790121,0.816173,0.290496,0.600644,0.144821,0.638878,0.701403,0.0021897,0.753693,0.77347,0.300686,0.58985,0.754278,0.24951,0.11256,0.077858,0.688776,0.764681,0.728039,0.257916,0.503478,0.350461,0.176325,0.894362,0.641106,0.496043,0.775078,0.866861,0.510726,0.923558,0.945637,0.827842,0.489267,0.543603,0.446125,0.514198,0.682748,0.847031,0.827378,0.261137,0.102557,0.053351,0.260115,0.860392,0.0803266,0.640943,0.746651,0.200486,0.354484,0.868859,0.806475,0.433102,0.181153,0.595801,0.935476,0.100789,0.364172,0.388495,0.327909,0.583794,0.252006,0.576835,0.95462,0.507491,0.416342,0.917475,0.653077,0.214718,0.540477,0.13456,0.363559,0.198066,0.573113,0.495979,0.106977,0.951811,0.900597,0.501281,0.811784,0.167464,0.757977,0.684924,0.851068,0.611983,0.34038,0.763918,0.350994,0.0185825,0.566691,0.941434,0.151045,0.885153,0.298765,0.282825,0.146261,0.810903,0.437618,0.408968,0.264713,0.0637226,0.451285,0.205769,0.673431,0.27497,0.905267,0.617825,0.898275,0.376251,0.966367,0.508836,0.652127,0.832763,0.622866,0.210745,0.942054,0.55988,0.12385,0.490238,0.515681,0.1896,0.640311,0.171595,0.692827,0.87667,0.562656,0.0131639,0.908178,0.337146,0.0383263,0.0831158,0.624531,0.725893,0.0108148,0.81486,0.889257,0.311361,0.292117,0.859895,0.452443,0.618113,0.858254,0.359962,0.395193,0.866521,0.945978,0.501497,0.0736439,0.507668,0.679617,0.215177,0.750264,0.144897,0.447367,0.174208,0.659138,0.0488113,0.185252,0.0146572,0.992956,0.624831,0.61486,0.952587,0.33795,0.263022,0.290124,0.814462,0.862491,0.511382,0.404859,0.178338,0.480852,0.132311,0.6125,0.29514,0.0875926,0.38345,0.910719,|0.723661,0.312007,0.630322,0.49905,0.183992,0.125411,0.106797,0.801431,0.156995,0.0475448,0.12272,0.884126,0.43267,0.510063,0.651469,0.967398,0.12367,0.0656139,0.745769,0.479908,0.983572,0.414769,0.642645,0.291881,0.994239,0.982091,0.965927,0.922071,0.502803,0.603172,0.42935,0.999669,0.957282,0.457919,0.500461,0.0881204,0.0949313,0.558834,0.433256,0.0497586,0.635213,0.536308,0.609361,0.161586,0.778516,0.039412,0.813077,0.0290457,0.0741107,0.397589,0.860741,0.223709,0.145589,0.850704,0.910723,0.335812,0.805451,0.0635449,0.983821,0.535723,0.632707,0.000910163,0.848139,0.366157,0.0527077,0.728121,0.755134,0.0334003,0.486715,0.348707,0.487512,0.566208,0.130621,0.54836,0.00790805,0.838112,0.772082,0.389003,0.866146,0.359077,0.218094,0.726514,0.423109,0.570936,0.127713,0.501991,0.685517,0.0941185,0.369766,0.0582074,0.540239,0.998856,0.226228,0.851313,0.903724,0.384095,0.959455,0.492529,0.691921,0.952088,0.602272,0.0216274,0.757588,0.670616,0.223915,0.328322,0.933159,0.893683,0.635776,0.702486,0.378679,0.0566621,0.602843,0.154363,0.844189,0.134625,0.443591,0.712517,0.778251,0.986122,0.405374,0.995469,0.153643,0.691677,0.361064,0.469103,0.18401,0.452297,0.437192,0.0780845,0.448822,0.490821,0.551381,0.490407,0.636157,0.144447,0.497521,0.110165,0.580952,0.907094,0.712891,0.0719875,0.653417,0.373614,0.957937,0.126025,0.763987,0.377739,0.915616,0.530122,0.875765,0.963945,0.330742,0.300709,0.706338,0.452495,0.621048,0.895324,0.598566,0.826716,0.411571,0.245868,0.0479299,0.699996,0.917301,0.00415647,0.317259,0.672416,0.963485,0.204872,0.15369,0.393776,0.202745,0.92855,0.101184,0.175141,0.976178,0.280858,0.316591,0.713544,0.245377,0.953913,0.340891,0.623145,0.444838,0.839918,0.26817,0.357593,0.519842,0.207925,0.373613,0.696589,0.167925,0.635916,0.620663,0.479917,0.830909,0.896371,0.317888,0.317651,0.161492,0.0670696,0.27619,0.357463,0.131352,0.544048,0.117945,0.739732,0.877962,0.902078,0.50509,0.27138,0.340867,0.934909,0.09231,0.476664,0.747737,0.338944,0.792714,0.482952,0.436264,0.815184,0.843945,0.763968,0.905398,0.477388,0.518196,0.30879,0.696161,0.723137,0.193738,0.332233,0.678424,0.650668,0.428903,0.904272,0.454818,0.925183,0.884211,0.184081,0.0463678,0.97088,0.342546,0.396316,0.781407,0.128465,0.869685,0.469679,0.232246,0.617455,0.988469,0.986662,0.797547,0.338426,0.450741,0.895413,0.36908,0.842468,0.925577,0.583245,0.783638,0.237464,0.147383,0.0263365,0.789762,0.101903,0.935431,0.259205,0.037005,0.708474,0.393636,0.203526,0.144385,0.334012,0.660187,0.84845,0.417091,0.773616,0.539441,0.201104,0.341541,0.110111,0.22338,0.196506,0.941348,0.485887,0.716593,0.330349,0.94601,0.630795,0.118289,0.480623,0.151758,0.33816,0.511267,0.371644,0.551664,0.0665642,0.862453,0.716347,0.0256962,0.800542,0.980539,0.144248,0.418494,0.696358,0.0738595,0.857302,0.733617,0.346859,0.527546,0.453959,0.0513109,0.0327796,0.769051,0.842472,0.691169,0.744943,0.327985,0.0405691,0.493918,0.895722,0.149681,0.960387,0.945994,0.947301,0.448005,0.257009,0.515659,0.840675,0.57362,0.167311,0.0628414,0.639508,0.83608,0.808456,0.239003,0.955904,0.872908,0.217934,0.513373,0.396997,0.93981,0.264206,0.027993,0.636103,0.361082,0.406746,0.145331,0.47496,0.721648,0.121537,0.298114,0.194469,0.670136,0.955114,0.0399968,0.402029,0.673784,0.450474,0.533014,0.575824,0.955188,0.880122,0.143468,0.115429,0.967289,0.178562,0.370618,0.900817,0.641149,0.965782,0.547093,0.297246,0.929452,0.75088,0.748973,0.00267655,0.88997,0.396013,0.778283,0.927662,0.147361,0.604716,0.0565552,0.546356,0.4084,0.915933,0.349266,0.217423,0.199732,0.600039,0.186397,0.603949,0.507798,0.94435,0.101399,0.687479,0.886627,0.109509,0.480436,0.947185,0.0395619,0.842119,0.512337,0.575591,0.555734,0.998606,0.572934,0.523126,0.485038,0.109182,0.666459,0.0826406,0.525001,0.291681,0.356332,0.701486,0.790396,0.99704,0.675419,0.71334,0.517622,0.546719,0.221696,0.0209957,0.678047,0.86738,0.00567102,0.110115,0.181093,0.105975,0.489044,0.914938,0.402958,0.193405,0.948641,0.836981,0.559735,0.0339225,0.44803,0.533007,0.0154222,0.168951,0.900539,0.466913,0.6115,0.582141,0.873136,0.969775,0.8847,0.688324,0.727756,0.205362,0.333726,0.411027,0.0685542,0.326734,0.90188,0.1075,0.69018,0.142006,0.156597,0.164709,0.28059,0.667778,0.166767,0.0482742,0.453254,0.560634,0.198245,0.371943,0.0991881,0.407751,0.975298,0.64476,0.446759,0.0755364,0.734099,0.669831,0.636583,0.711853,0.5117,0.840666,0.924608,0.3678,0.836914,0.326473,0.5971,0.360444,0.278398,0.435825,0.0658892,0.575292,0.23463,0.0796618,0.418345,0.98122,0.0722607,0.556735,0.989084,0.330566,0.0629434,0.812463,0.112801,0.167863,0.1763,0.122452,0.770161,0.738996,0.468242,0.282685,0.431085,0.342737,0.538463,0.833658,0.1134,0.140952,0.72132,0.406271,0.204021,0.988825,0.210098,0.695592,0.985911,0.288569,0.386389,0.150354,0.671093,0.033209,0.27535,0.738548,0.629313,0.229489,0.294275,0.2897,0.61924,0.630471,0.712033,0.0567269,0.986954,0.899473,0.756002,0.65075,0.503481,0.142788,0.587364,0.456904,0.884649,0.382208,0.937945,0.528845,0.747267,0.0593886,0.264535,0.19145,0.643521,0.511506,0.0539009,0.584047,0.704059,0.0288837,0.578403,0.162386,0.0406557,0.841276,0.0895695,0.0888585,0.504542,0.319059,0.232171,0.24728,0.560512,0.602512,0.719027,0.506551,0.327991,0.415875,0.111102,0.20369,0.153111,0.625529,0.643175,0.54204,0.552982,0.696022,0.754886,0.753279,0.481019,0.965771,0.910445,0.334057,0.636899,0.719936,0.402607,0.424491,0.745561,0.34747,0.34925,0.818852,0.750879,0.886933,0.42823,0.603834,0.377369,0.865032,0.807041,0.0749066,0.840457,0.952569,0.185942,0.111677,0.939076,0.732059,0.0237982,0.125877,0.786678,0.458688,0.586356,0.429796,0.195445,0.874357,0.744972,0.214029,0.182645,0.667775,0.913116,0.535623,0.860866,0.563693,0.761719,0.123008,0.26202,0.0201481,0.0427504,0.000375032,0.711583,0.225334,0.681979,0.890034,0.0948392,0.360457,0.0997401,0.436867,0.455038,0.517009,0.575116,0.409968,0.540263,0.116613,0.907281,0.233318,0.862636,0.856667,0.372304,0.940331,0.604743,0.976717,0.672498,0.20702,0.817185,0.524782,0.885255,0.952463,0.824146,0.488318,0.240509,0.253237,0.611598,0.135971,0.317773,0.692313,0.482972,0.22621,0.452208,0.508079,0.18367,0.481586,0.700606,0.972335,0.87106,0.134581,0.139343,0.0701604,0.0698379,0.90492,0.894839,0.439318,0.20793,0.184125,0.442838,0.702663,0.348783,0.0849825,0.29268,0.925006,0.0658673,0.942037,0.288164,0.775782,0.708707,0.397547,0.136934,0.808659,0.0526702,0.133354,0.838116,0.348793,0.855575,0.099385,0.525288,0.00530082,0.491291,0.723031,0.138455,0.314628,0.205273,0.399312,0.124752,0.549154,0.632686,0.559894,0.615916,0.0327622,0.983625,0.803299,0.137303,0.844479,0.797437,0.207146,0.497833,0.93236,0.509405,0.308661,0.373624,0.508985,0.0260596,0.831676,0.985239,0.608207,0.464427,0.438035,0.63173,0.139125,0.929037,0.984637,0.713422,0.956804,0.686609,0.195508,0.189306,0.463574,0.914915,0.69695,0.893967,0.220982,0.413949,0.982995,0.665527,0.501599,0.66584,0.678276,0.410842,0.579765,0.148393,0.369594,0.224019,0.514818,0.100212,0.643175,0.855354,0.0925974,0.761275,0.528503,0.906055,0.787077,0.00805479,0.191855,0.419765,0.58712,0.425623,0.783538,0.251577,0.865368,0.38445,0.295996,0.411485,0.134889,0.133278,0.950657,0.124908,0.685161,0.532293,0.347242,0.00679666,0.93006,0.116758,0.765499,0.991124,0.0416451,0.714525,0.503284,0.0615749,0.957195,0.653805,0.943744,0.578148,0.226352,0.483385,0.490769,0.98277,0.207724,0.64401,0.361291,0.147854,0.871112,0.653516,0.366558,0.0056414,0.222286,0.562214,0.0350175,0.0563083,0.524138,0.144706,0.923217,0.683508,0.384857,0.918752,0.5003,0.482157,0.29632,0.88636,0.467255,0.214258,0.075927,0.790807,0.564527,0.202327,0.285364,0.432019,0.153868,0.662464,0.848644,0.510793,0.716041,0.312232,0.072435,0.879742,0.200575,0.285057,0.286837,0.00595492,0.802152,0.438208,0.219911,0.682861,0.271935,0.0670748,0.399181,0.881089,0.544622,0.238229,0.323912,0.742586,0.444405,0.689653,0.909088,0.83378,0.660448,0.996953,0.548148,0.4711,0.880019,0.389885,0.0450885,0.804408,0.278763,0.256857,0.742425,0.172851,0.23883,0.0360102,0.256162,0.47383,0.705306,0.455493,0.785486,0.707918,0.409838,0.637838,0.983197,0.247598,0.999711,0.157326,0.91486,0.463756,0.108005,0.589212,0.184018,0.193294,0.233452,0.162404,0.583319,0.140321,0.220029,0.677816,0.173223,0.631396,0.0748162,0.426221,0.493432,0.710967,0.420283,0.975934,0.104772,0.484078,0.172892,0.96231,0.760376,0.714256,0.993182,0.53224,0.114112,0.756038,0.234605,0.977935,0.330135,0.26537,0.75901,0.115301,0.492316,0.984281,0.56953,0.840318,0.591166,0.973273,0.310939,0.794054,0.354101,0.445843,0.269738,0.422807,0.343061,0.101336,0.670142,0.641442,0.876717,0.503867,0.116969,0.934928,0.952515,0.470662,0.171744,0.809164,0.855673,0.811657,0.393546,0.483844,0.273489,0.304413,0.596654,0.161144,0.810581,0.876074,0.907486,0.102772,0.592604,0.284303,0.278744,0.627682,0.718873,0.666233,0.333918,0.192506,0.139606,0.545027,0.0131665,0.913172,0.526933,0.431482,0.972583,0.474489,0.554822,0.430486,0.930597,0.291305,0.896396,0.70779,0.860742,0.986336,0.065829,0.329448,0.439028,0.688987,0.824455,0.501943,0.988569,0.843717,0.299555,|0.428416,0.256621,0.663837,0.876933,0.367878,0.139207,0.160904,0.662952,0.585302,0.8126,0.778254,0.0995597,0.955017,0.243259,0.412694,0.349262,0.149834,0.635361,0.131113,0.898833,0.860368,0.0835561,0.0417544,0.63042,0.49533,0.174692,0.150951,0.380067,0.264464,0.826039,0.683159,0.178249,0.564421,0.795688,0.309519,0.0430706,0.307371,0.945035,0.937782,0.269107,0.0633582,0.235219,0.651598,0.337029,0.00395173,0.749571,0.24623,0.848294,0.878549,0.552243,0.686638,0.0230731,0.872519,0.639342,0.493155,0.350653,0.536453,0.466877,0.200267,0.560137,0.423707,0.672506,0.288147,0.942428,0.858375,0.458778,0.147794,0.890166,0.270901,0.258465,0.408972,0.370082,0.243866,0.23324,0.959035,0.311257,0.543882,0.603415,0.275087,0.75294,0.155943,0.781742,0.210163,0.96857,0.117217,0.511055,0.942948,0.784792,0.502246,0.493381,0.805355,0.0321721,0.510709,0.418941,0.817107,0.561559,0.194871,0.314455,0.13932,0.417035,0.893404,0.596897,0.849196,0.224456,0.147949,0.97472,0.277505,0.886733,0.0321119,0.526862,0.318776,0.660702,0.724099,0.254842,0.457351,0.363653,0.688017,0.623745,0.380259,0.856432,0.354678,0.343207,0.963608,0.526902,0.0507647,0.932659,0.139907,0.830656,0.925047,0.812817,0.663654,0.387858,0.850851,0.460272,0.399675,0.619124,0.533384,0.226244,0.891091,0.135714,0.910242,0.324498,0.753024,0.611581,0.220443,0.641698,0.110614,0.398174,0.343077,0.0884737,0.976126,0.503888,0.167678,0.7653,0.169334,0.962854,0.70692,0.523319,0.00251281,0.0428569,0.122129,0.691579,0.536411,0.658296,0.509365,0.164775,0.363738,0.713499,0.760258,0.730224,0.743795,0.10822,0.977074,0.171007,0.674699,0.156733,0.878694,0.483035,0.536398,0.165836,0.783937,0.749231,0.840203,0.511038,0.331881,0.398068,0.0253134,0.177217,0.74062,0.58387,0.960708,0.710972,0.412641,0.744995,0.512338,0.151235,0.795178,0.802152,0.0865648,0.725577,0.541453,0.392728,0.78976,0.82939,0.802232,0.354159,0.825681,0.859251,0.547543,0.0818229,0.369834,0.382656,0.258939,0.518337,0.776788,0.0549943,0.0414322,0.989197,0.293483,0.819449,0.901266,0.820255,0.0126222,0.263868,0.624527,0.763171,0.529639,0.0137174,0.854152,0.766821,0.693196,0.267181,0.310707,0.504939,0.0541367,0.561415,0.135112,0.233307,0.555338,0.466748,0.282892,0.421338,0.886765,0.359091,0.747076,0.392748,0.462789,0.905526,0.662447,0.914217,0.809004,0.909987,0.554932,0.24455,0.300948,0.0360428,0.208555,0.572546,0.860902,0.49644,0.0893281,0.145648,0.978065,0.431243,0.0791729,0.287455,0.396826,0.335793,0.160157,0.148729,0.409683,0.924488,0.520926,0.259906,0.41229,0.498825,0.910099,0.00823426,0.0351629,0.447974,0.426056,0.474423,0.083235,0.706121,0.0033673,0.977312,0.835924,0.342141,0.737833,0.698892,0.742467,0.0934772,0.275736,0.745162,0.678563,0.500409,0.0529519,0.997659,0.268788,0.55077,0.231498,0.734538,0.363183,0.647813,0.112309,0.215948,0.917563,0.856917,0.304012,0.746778,0.597855,0.881881,0.306432,0.66612,0.222222,0.920196,0.705188,0.891804,0.479828,0.549159,0.507272,0.360929,0.881206,0.12355,0.392706,0.50391,0.343417,0.537522,0.365658,0.0834465,0.353826,0.200652,0.324666,0.805272,0.416508,0.898262,0.259653,0.51711,0.289116,0.464339,0.646877,0.5611,0.282922,0.729451,0.259227,0.399578,0.782404,0.685727,0.253888,0.415424,0.621101,0.622084,0.837487,0.667959,0.141612,0.870555,0.051882,0.078817,0.204609,0.260754,0.0368478,0.386832,0.130434,0.808596,0.320153,0.373107,0.95307,0.923955,0.681977,0.0252182,0.935918,0.274213,0.00479609,0.0535948,0.70694,0.111594,0.0805528,0.826208,0.571186,0.612684,0.882725,0.236112,0.0719308,0.00709617,0.599988,0.529673,0.669434,0.12815,0.362859,0.375415,0.332647,0.842617,0.734646,0.480487,0.871237,0.210805,0.936653,0.143304,0.921579,0.198234,0.747047,0.0636258,0.486272,0.963389,0.492511,0.836445,0.281278,0.44151,0.265736,0.172837,0.709346,0.622743,0.978312,0.153628,0.847106,0.472432,0.58901,0.247806,0.658577,0.0903798,0.688536,0.11383,0.390574,0.356539,0.203418,0.220845,0.792463,0.752303,0.565585,0.812752,0.910637,0.731258,0.64941,0.452557,0.815302,0.163769,0.684423,0.469967,0.104552,0.0469493,0.306955,0.488938,0.493433,0.0176353,0.85451,0.762038,0.0653754,0.775788,0.148345,0.715584,0.0547037,0.533768,0.141994,0.248209,0.0733735,0.545868,0.92189,0.474211,0.409843,0.490616,0.151249,0.898825,0.885955,0.640385,0.202805,0.923404,0.825495,0.454135,0.318989,0.989251,0.779526,0.704944,0.71159,0.624678,0.644565,0.141611,0.524746,0.366646,0.848991,0.598071,0.608843,0.259885,0.509906,0.358418,0.797373,0.199052,0.0244877,0.503201,0.491844,0.0178574,0.000251889,0.756309,0.0818921,0.135003,0.568648,0.306806,0.411129,0.750765,0.103299,0.736604,0.190886,0.56432,0.328407,0.472538,0.990025,0.184529,0.170823,0.480522,0.764146,0.827878,0.445229,0.308788,0.0832955,0.623311,0.786729,0.198969,0.349065,0.582543,0.364682,0.477811,0.616966,0.85454,0.688485,0.659047,0.278217,0.608932,0.596228,0.730487,0.340616,0.260858,0.0533732,0.719357,0.747428,0.757954,0.207402,0.293819,0.37852,0.742028,0.756122,0.174863,0.42255,0.9535,0.164926,0.282675,0.662942,0.983787,0.222341,0.0518359,0.0617774,0.623754,0.82193,0.0304987,0.236456,0.890676,0.844139,0.00483197,0.48427,0.676995,0.206038,0.296467,0.45804,0.134768,0.490685,0.38821,0.44089,0.88753,0.473216,0.0564685,0.196802,0.706705,0.0969748,0.211902,0.559306,0.191646,0.479427,0.14589,0.695514,0.414095,0.386412,0.371841,0.402915,0.263374,0.952107,0.896021,0.357261,0.250044,0.379907,0.985981,0.159388,0.291419,0.914966,0.752245,0.174376,0.181609,0.129543,0.471205,0.0222685,0.301184,0.317816,0.313306,0.99161,0.430985,0.536446,0.74403,0.0839795,0.219924,0.717775,0.32101,0.985601,0.610145,0.420351,0.815495,0.828146,0.771021,0.163933,0.72832,0.138458,0.0560626,0.332958,0.331293,0.875998,0.283537,0.59396,0.919776,0.321055,0.309135,0.165879,0.402432,0.409272,0.639367,0.791793,0.862496,0.534899,0.79298,0.933173,0.00733429,0.729756,0.293955,0.77633,0.598143,0.526642,0.0994296,0.762814,0.816348,0.478437,0.0886145,0.234761,0.516435,0.926775,0.829627,0.543825,0.590763,0.508369,0.291309,0.00999862,0.302973,0.807458,0.552136,0.193752,0.596128,0.598359,0.219214,0.340655,0.218367,0.264673,0.0871333,0.206404,0.834128,0.776095,0.589229,0.257883,0.517256,0.801114,0.981414,0.854248,0.31026,0.684853,0.662626,0.37122,0.643674,0.765574,0.152618,0.521979,0.385469,0.957393,0.904544,0.0299724,0.603119,0.23782,0.717024,0.59294,0.104951,0.299286,0.543016,0.741186,0.819103,0.832601,0.984185,0.806455,0.0267019,0.714773,0.241737,0.646771,0.912904,0.686708,0.244212,0.753317,0.382613,0.181361,0.641208,0.282007,0.642207,0.198027,0.0699605,0.330052,0.390329,0.103544,0.668466,0.26369,0.472361,0.0575557,0.961105,0.131274,0.903834,0.112363,0.462147,0.252268,0.849533,0.738959,0.637677,0.281683,0.457231,0.114875,0.371172,0.0106111,0.236951,0.79293,0.542617,0.125792,0.195125,0.272858,0.74928,0.920959,0.447518,0.222892,0.435673,0.718876,0.444161,0.216581,0.968239,0.0321196,0.289882,0.868526,0.893993,0.238686,0.307023,0.0113002,0.841427,0.529203,0.042182,0.0402388,0.181325,0.928029,0.192018,0.284353,0.15911,0.737356,0.373504,0.477614,0.363752,0.878491,0.395508,0.745331,0.216567,0.53044,0.449779,0.27957,0.635908,0.914084,0.439379,0.858102,0.00618345,0.743583,0.393351,0.360477,0.101364,0.629651,0.318809,0.161318,0.737338,0.201111,0.870898,0.0161617,0.453967,0.674985,0.232519,0.608009,0.174689,0.421878,0.40789,0.80329,0.649895,0.21911,0.824373,0.307357,0.274708,0.171353,0.495202,0.0012719,0.252918,0.396038,0.464185,0.742727,0.0656313,0.0590702,0.0066033,0.974306,0.258969,0.442417,0.395473,0.236296,0.059545,0.795731,0.542445,0.648816,0.533874,0.337964,0.295846,0.634057,0.0525493,0.226174,0.412887,0.569878,0.662156,0.538989,0.545048,0.291408,0.350792,0.989305,0.788029,0.840485,0.349832,0.780423,0.928135,0.659565,0.150876,0.820165,0.976711,0.239931,0.398473,0.88209,0.847782,0.984041,0.915535,0.0192519,0.600737,0.891391,0.30752,0.260273,0.569159,0.0303624,0.980892,0.195391,0.212464,0.437847,0.632936,0.166603,0.960885,0.66512,0.337319,0.733046,0.123369,0.601343,0.905842,0.932641,0.0643649,0.122035,0.80461,0.762716,0.200882,0.720518,0.97011,0.407192,0.616197,0.587154,0.182523,0.755733,0.529076,0.938606,0.132969,0.304621,0.0137063,0.0213613,0.427419,0.467623,0.758794,0.532299,0.0415747,0.966487,0.469587,0.600789,0.364544,0.875089,0.964822,0.776051,0.099792,0.845674,0.0388349,0.35341,0.668757,0.201774,0.48027,0.0293223,0.567451,0.637693,0.731369,0.0249392,0.364321,0.372879,0.0623653,0.823761,0.578218,0.572118,0.66864,0.938796,0.30253,0.585134,0.166004,0.939716,0.128873,0.0558792,0.276973,0.585645,0.670007,0.251691,0.387569,0.473287,0.099035,0.743616,0.99657,0.169397,0.0450536,0.107728,0.632054,0.514962,0.690977,0.931823,0.866524,0.849399,0.376316,0.605756,0.185625,0.842747,0.892708,0.797177,0.803464,0.992607,0.0141391,0.196884,0.813481,0.473101,0.603966,0.969146,0.369021,0.104396,0.0798781,0.968169,0.424574,0.795295,0.954029,0.675597,0.366465,0.488634,0.738982,0.275038,0.0740435,0.603178,0.921601,0.378048,0.996335,0.77325,0.503526,0.580438,0.921493,0.908541,0.483764,0.63228,0.849817,0.145677,0.855341,0.284817,0.894812,0.767055,0.661425,0.799429,0.384041,0.522601,0.564772,0.0136959,0.960863,|0.268496,0.812925,0.256206,0.195437,0.722913,0.100013,0.295033,0.966399,0.697081,0.623889,0.714734,0.494135,0.233785,0.374941,0.896887,0.301224,0.134537,0.29843,0.944618,0.896082,0.207444,0.880022,0.242604,0.701457,0.478879,0.312213,0.0026077,0.227062,0.130542,0.508714,0.755619,0.343592,0.150225,0.160431,0.429134,0.555136,0.16261,0.270549,0.85735,0.928424,0.788231,0.0580999,0.113404,0.360341,0.949124,0.38675,0.687427,0.836593,0.0544472,0.261762,0.627861,0.962382,0.295812,0.359096,0.379639,0.92849,0.266004,0.457503,0.572942,0.996148,0.170661,0.249661,0.714236,0.0686419,0.113209,0.956182,0.0181578,0.36104,0.0806391,0.463966,0.850579,0.851071,0.329388,0.302273,0.22903,0.978457,0.824101,0.901742,0.973087,0.947137,0.447972,0.0872635,0.730317,0.232902,0.45131,0.0620327,0.83829,0.831706,0.0404562,0.94671,0.694503,0.172985,0.830612,0.747264,0.990579,0.89326,0.0580831,0.326126,0.413485,0.71918,0.692501,0.240525,0.303261,0.357055,0.262914,0.416815,0.554434,0.000415802,0.476599,0.872559,0.84298,0.495572,0.383561,0.0202339,0.729839,0.180642,0.971332,0.19591,0.208519,0.986293,0.541348,0.66235,0.108419,0.561296,0.823826,0.698533,0.56254,0.40493,0.495127,0.675521,0.0409179,0.44877,0.793902,0.404427,0.425269,0.22921,0.0248979,0.859622,0.797992,0.832397,0.674052,0.301351,0.00815433,0.0424103,0.923283,0.943691,0.952263,0.249883,0.730359,0.746436,0.926068,0.0328724,0.949175,0.803868,0.359559,0.125637,0.575881,0.271012,0.0948342,0.798457,0.483065,0.298634,0.59043,0.596281,0.513153,0.338441,0.105937,0.0310518,0.819089,0.557715,0.0433053,0.0834625,0.781577,0.882986,0.166653,0.287599,0.870113,0.112877,0.192599,0.584974,0.595866,0.236456,0.077651,0.513855,0.415189,0.705938,0.278712,0.849957,0.239789,0.668048,0.418478,0.721231,0.0488212,0.685809,0.880059,0.0272871,0.557874,0.337796,0.109885,0.929214,0.125075,0.440548,0.00819606,0.109442,0.162718,0.917074,0.783754,0.550187,0.237196,0.00168192,0.0925179,0.845775,0.978581,0.322315,0.467206,0.384594,0.121485,0.806273,0.92034,0.0087558,0.992177,0.308324,0.709896,0.892446,0.420923,0.549862,0.163716,0.527417,0.476071,0.776645,0.154974,0.200303,0.276997,0.562451,0.908959,0.713601,0.557056,0.869531,0.0507819,0.809078,0.183509,0.682862,0.173512,0.355356,0.594393,0.334916,0.118817,0.909258,0.206411,0.392307,0.829002,0.357682,0.708626,0.401221,0.206182,0.453659,0.100907,0.343462,0.0280802,0.198819,0.320032,0.787574,0.639777,0.448081,0.259992,0.200754,0.766313,0.998629,0.89795,0.115827,0.918706,0.283179,0.780853,0.852075,0.244158,0.103893,0.677906,0.799645,0.270051,0.889322,0.30012,0.200848,0.837716,0.0142763,0.148703,0.598505,0.1124,0.553882,0.0640718,0.626181,0.131746,0.0947638,0.42952,0.148704,0.990935,0.431017,0.444657,0.493003,0.958083,0.585892,0.292341,0.85521,0.0280799,0.394937,0.73751,0.348754,0.789298,0.0965376,0.268661,0.850609,0.0337813,0.273445,0.223289,0.296879,0.194103,0.217497,0.0637549,0.683584,0.259505,0.240561,0.865884,0.0292556,0.277463,0.896072,0.907959,0.69465,0.0804722,0.784203,0.924094,0.0216057,0.588483,0.836724,0.993304,0.533584,0.123875,0.705291,0.537783,0.679904,0.523308,0.486635,0.311037,0.885912,0.23411,0.0175885,0.182665,0.824115,0.579307,0.672117,0.474997,0.462632,0.524454,0.899269,0.29758,0.245134,0.202343,0.399434,0.11366,0.0181103,0.861951,0.169085,0.447507,0.488081,0.341384,0.842183,0.501547,0.350094,0.755013,0.644151,0.0139154,0.493231,0.29756,0.536553,0.8185,0.694473,0.458836,0.93588,0.245117,0.925046,0.268366,0.67949,0.336765,0.732975,0.212456,0.127963,0.641197,0.38195,0.372437,0.589998,0.239433,0.207291,0.157267,0.521136,0.0927974,0.81322,0.83507,0.644735,0.238239,0.627519,0.574976,0.683667,0.628829,0.536913,0.204366,0.998117,0.873869,0.0806529,0.18128,0.197307,0.543235,0.697334,0.122871,0.0188687,0.424004,0.395148,0.223475,0.499192,0.840232,0.564743,0.951752,0.829736,0.694831,0.497592,0.510116,0.775946,0.764179,0.585922,0.208807,0.174708,0.353711,0.172224,0.95785,0.0641196,0.228488,0.613592,0.0908715,0.0661963,0.058819,0.582806,0.648179,0.936908,0.99324,0.361532,0.979584,0.0320066,0.309934,0.640142,0.94298,0.169024,0.622175,0.337164,0.652296,0.215083,0.068029,0.309205,0.485987,0.732173,0.311817,0.595001,0.63643,0.16289,0.709741,0.816974,0.217552,0.968191,0.864024,0.234791,0.777084,0.763151,0.523166,0.312525,0.999743,0.688767,0.370316,0.746918,0.723993,0.662064,0.907253,0.935836,0.877523,0.310938,0.378046,0.0944808,0.59409,0.769658,0.719195,0.276458,0.337893,0.848856,0.749343,0.0503988,0.192429,0.480009,0.80145,0.821696,0.954426,0.206119,0.479518,0.926289,0.125221,0.48052,0.943054,0.712998,0.428165,0.738852,0.520246,0.196232,0.558994,0.445871,0.405565,0.548287,0.0931446,0.464163,0.695157,0.755566,0.918488,0.524142,0.351798,0.960604,0.630146,0.84954,0.390794,0.341186,0.978353,0.0654017,0.569661,0.501801,0.414773,0.469811,0.172866,0.489246,0.207719,0.370095,0.227696,0.862916,0.245381,0.610147,0.828022,0.25014,0.34852,0.0502679,0.11822,0.216787,0.925227,0.269131,0.191885,0.961501,0.0215988,0.540452,0.489454,0.338181,0.849345,0.744793,0.655721,0.375284,0.67509,0.880616,0.917264,0.517756,0.432386,0.759243,0.815599,0.149867,0.847986,0.095695,0.0109048,0.985938,0.723586,0.243812,0.294552,0.663865,0.198729,0.634216,0.266794,0.74465,0.266024,0.2412,0.694047,0.649252,0.974479,0.580652,0.796667,0.991736,0.148062,0.687236,0.443961,0.887737,0.859709,0.593954,0.134036,0.736422,0.898577,0.978576,0.619623,0.475982,0.903026,0.836501,0.992341,0.422563,0.107965,0.621118,0.966425,0.691353,0.3431,0.712822,0.509475,0.628902,0.0691822,0.330101,0.0870795,0.391795,0.0186362,0.534081,0.726568,0.745207,0.00109702,0.0133857,0.464249,0.189378,0.42442,0.267423,0.294466,0.43564,0.391413,0.895184,0.827753,0.15951,0.216785,0.189094,0.598823,0.971039,0.84487,0.934353,0.906202,0.199131,0.105483,0.187814,0.877618,0.964096,0.785185,0.570429,0.454169,0.0811394,0.423492,0.326867,0.747954,0.580103,0.91092,0.445828,0.767707,0.34203,0.265919,0.774034,0.613461,0.167623,0.754466,0.657622,0.876659,0.701321,0.370411,0.271166,0.893909,0.865284,0.38028,0.095097,0.0661551,0.681639,0.538646,0.416866,0.503887,0.470272,0.538172,0.270251,0.470338,0.746486,0.609063,0.30636,0.862344,0.255988,0.659187,0.922878,0.443133,0.821622,0.252204,0.882505,0.752288,0.430372,0.859591,0.626452,0.480179,0.0560231,0.865938,0.161759,0.422412,0.157014,0.582103,0.565004,0.409456,0.0770034,0.556334,0.949929,0.15499,0.420721,0.0792935,0.544821,0.369393,0.733661,0.31132,0.441391,0.908652,0.895864,0.99391,0.2641,0.564692,0.563835,0.591446,0.847214,0.918579,0.705046,0.857754,0.292256,0.258782,0.0740954,0.739198,0.957845,0.409066,0.107556,0.803259,0.982919,0.327439,0.899687,0.978327,0.373118,0.586814,0.220639,0.669593,0.346741,0.464915,0.690237,0.299219,0.0460898,0.383292,0.872164,0.449309,0.812076,0.864818,0.369026,0.0936853,0.19973,0.588034,0.673906,0.283402,0.976161,0.295109,0.808405,0.0210646,0.562699,0.430207,0.766364,0.793953,0.549474,0.13169,0.538843,0.702534,0.874353,0.0986338,0.669196,0.271916,0.251393,0.128198,0.449524,0.000298977,0.291145,0.790216,0.0190398,0.0412422,0.596417,0.161301,0.31205,0.816261,0.0331389,0.676359,0.649249,0.980031,0.541431,0.134946,0.551806,0.917708,0.291216,0.347537,0.46574,0.179932,0.301852,0.785345,0.348244,0.6779,0.788265,0.628688,0.0896688,0.987753,0.0857259,0.190077,0.432673,0.0206253,0.271557,0.174935,0.76654,0.212902,0.0659236,0.771184,0.656779,0.354643,0.685724,0.330465,0.136065,0.151886,0.371674,0.761949,0.757796,0.543488,0.542105,0.937834,0.126675,0.996208,0.509616,0.461942,0.851204,0.228358,0.599939,0.934037,0.148298,0.679066,0.523562,0.122229,0.799121,0.648739,0.358814,0.866954,0.895692,0.319582,0.812429,0.975137,0.199249,0.0914924,0.830691,0.8592,0.0195842,0.366963,0.816207,0.0843737,0.399447,0.506812,0.367694,0.462556,0.550112,0.289168,0.886249,0.810706,0.789603,0.638099,0.828769,0.315762,0.349721,0.383883,0.844844,0.432515,0.832013,0.844195,0.0473904,0.299287,0.990392,0.12208,0.940727,0.809297,0.263684,0.587897,0.682541,0.455766,0.159419,0.151772,0.999901,0.684029,0.000330091,0.210973,0.0435509,0.103406,0.351139,0.702699,0.0302932,0.26415,0.891965,0.643693,0.00122559,0.0350164,0.808086,0.404827,0.854674,0.510012,0.0628616,0.0672689,0.344836,0.679707,0.436614,0.645289,0.470358,0.888089,0.288831,0.0350043,0.263554,0.0527008,0.562871,0.593766,0.866587,0.729389,0.80589,0.942081,0.429385,0.917215,0.173687,0.875283,0.564614,0.579179,0.0368823,0.950833,0.148383,0.484091,0.15357,0.409429,0.00567257,0.417053,0.724919,0.0995415,0.1846,0.198786,0.65842,0.452642,0.852148,0.652927,0.981171,0.548087,0.0506089,0.295511,0.632871,0.73753,0.716193,0.498849,0.727114,0.937571,0.794761,0.948015,0.242887,0.684381,0.698867,0.34688,0.745008,0.503038,0.483625,0.0908393,0.684625,0.774985,0.195451,0.286508,0.813992,0.590256,0.738812,0.929381,0.888329,0.922924,0.741772,0.0819488,0.439776,0.995224,0.830631,0.93585,0.476627,0.848258,0.275031,0.422962,0.297642,0.842045,0.571599,0.0156898,0.517544,0.241964,0.484595,0.0636797,0.393677,0.443651,0.40345,0.972058,0.541734,0.813885,0.932078,0.133475,0.231193,0.759072,0.180811,0.850414,0.741598,0.0918234,0.509978,|0.976201,0.634905,0.229954,0.108811,0.129398,0.482174,0.0585171,0.836776,0.760249,0.000692308,0.718436,0.249735,0.721162,0.286357,0.748684,0.653141,0.460883,0.673222,0.407588,0.750228,0.642149,0.6117,0.844912,0.380156,0.741502,0.803366,0.92434,0.813228,0.151367,0.271477,0.213395,0.0474723,0.601348,0.549799,0.0823153,0.00744551,0.000126481,0.0181233,0.0243818,0.890736,0.352596,0.712574,0.872169,0.895639,0.607532,0.440362,0.956773,0.418789,0.37985,0.231922,0.0097512,0.274322,0.968268,0.0676221,0.872856,0.946889,0.141016,0.117784,0.489064,0.658297,0.475227,0.582633,0.799734,0.558332,0.119366,0.0457508,0.0148666,0.0146889,0.833945,0.59229,0.963992,0.107422,0.135527,0.49089,0.506798,0.488023,0.627997,0.936843,0.916495,0.375713,0.578031,0.0758918,0.148154,0.91174,0.653988,0.652781,0.126773,0.490572,0.789885,0.718343,0.313149,0.193943,0.500484,0.129702,0.954126,0.635198,0.997325,0.180901,0.295458,0.0868354,0.428663,0.95071,0.507535,0.120733,0.661533,0.608544,0.603145,0.175317,0.0584003,0.0405933,0.210388,0.519894,0.203559,0.593029,0.638073,0.961258,0.64163,0.739284,0.55466,0.380527,0.0692624,0.601831,0.665888,0.464844,0.645204,0.216365,0.81319,0.391118,0.0777957,0.382265,0.262208,0.635576,0.491289,0.980513,0.474304,0.68895,0.864324,0.484295,0.386885,0.460671,0.119699,0.240667,0.23842,0.118165,0.604499,0.161494,0.129275,0.794001,0.747963,0.200954,0.142251,0.788881,0.217436,0.0544106,0.610816,0.736575,0.791817,0.939191,0.511759,0.943375,0.162697,0.352208,0.146992,0.30725,0.0970327,0.748762,0.208801,0.0146555,0.0805259,0.413311,0.819372,0.167064,0.139662,0.620639,0.806093,0.0487253,0.779615,0.310109,0.935779,0.299749,0.296164,0.73467,0.851505,0.916132,0.60357,0.0238472,0.907153,0.656059,0.843521,0.839102,0.647259,0.963804,0.898955,0.19006,0.86332,0.0761663,0.123575,0.670515,0.0337673,0.644044,0.528167,0.973491,0.767184,0.319489,0.981907,0.682467,0.368493,0.16389,0.370804,0.703358,0.390673,0.686944,0.408031,0.223799,0.723418,0.556492,0.453943,0.816073,0.0690578,0.28571,0.506848,0.174742,0.417878,0.284541,0.980141,0.157165,0.250723,0.0926713,0.896579,0.0369002,0.569238,0.779198,0.0138397,0.82287,0.916132,0.161768,0.452433,0.961525,0.294005,0.0906547,0.504257,0.784231,0.504229,0.199132,0.0533492,0.658386,0.390432,0.718859,0.123258,0.896305,0.782692,0.482657,0.0903513,0.698449,0.621232,0.458,0.0639606,0.222035,0.979547,0.776692,0.482994,0.0120118,0.693192,0.708553,0.314262,0.660179,0.966564,0.432156,0.225167,0.704982,0.756838,0.22078,0.799837,0.478902,0.445101,0.149744,0.651962,0.254773,0.415661,0.946542,0.957534,0.254723,0.432097,0.49583,0.787681,0.159706,0.810986,0.662951,0.464909,0.18939,0.445006,0.953906,0.49693,0.149653,0.147695,0.215042,0.604505,0.0180829,0.20738,0.362559,0.902798,0.608778,0.887066,0.852068,0.378227,0.620839,0.390578,0.141793,0.812558,0.812685,0.383307,0.797698,0.94628,0.978898,0.108349,0.215106,0.489526,0.390017,0.273293,0.776537,0.97857,0.532264,0.606079,0.677562,0.522894,0.184196,0.128064,0.685226,0.866112,0.308062,0.953223,0.860386,0.683906,0.152494,0.621313,0.826153,0.660885,0.764817,0.556457,0.931957,0.638247,0.130904,0.0543185,0.12995,0.726069,0.97798,0.679765,0.563895,0.0924313,0.157985,0.734873,0.0151948,0.93123,0.43376,0.338469,0.796799,0.273444,0.539104,0.101851,0.820607,0.0403222,0.518934,0.417237,0.539642,0.855836,0.834497,0.233173,0.301706,0.59765,0.634993,0.503138,0.675067,0.974281,0.61736,0.156462,0.479426,0.831144,0.791152,0.371684,0.305808,0.733637,0.322161,0.364065,0.0439001,0.652633,0.763532,0.55369,0.812532,0.826585,0.121884,0.815809,0.971663,0.123375,0.545372,0.0897804,0.928778,0.398354,0.935074,0.70152,0.264944,0.25704,0.262538,0.349418,0.0823779,0.0643784,0.816341,0.902826,0.219472,0.128572,0.866293,0.444822,0.969817,0.547434,0.35505,0.927032,0.892472,0.0284987,0.828055,0.662226,0.214478,0.220026,0.544819,0.618164,0.722065,0.591358,0.518234,0.294578,0.274735,0.711666,0.320405,0.775796,0.0511868,0.599448,0.121802,0.271904,0.382523,0.401173,0.753101,0.526663,0.100964,0.736403,0.608726,0.765182,0.814459,0.0880555,0.575281,0.643114,0.857625,0.0541775,0.954692,0.426662,0.383718,0.667549,0.751725,0.255149,0.993378,0.214574,0.729403,0.650691,0.816746,0.601664,0.0859088,0.729753,0.228254,0.370791,0.938663,0.444694,0.156219,0.325396,0.149421,0.84675,0.840813,0.276225,0.141948,0.514617,0.113848,0.668703,0.833341,0.912812,0.407743,0.507087,0.38553,0.826036,0.356721,0.872502,0.510661,0.044866,0.84236,0.147565,0.854781,0.0723037,0.491007,0.520926,0.0104511,0.906813,0.351424,0.655305,0.0944887,0.391354,0.112653,0.146049,0.883624,0.84735,0.453467,0.49103,0.310137,0.620674,0.119291,0.29404,0.126096,0.0744976,0.154937,0.497713,0.77248,0.576419,0.132662,0.738099,0.00712281,0.995415,0.514876,0.768872,0.722234,0.675765,0.869012,0.605479,0.40628,0.760657,0.338554,0.23903,0.309141,0.659662,0.161094,0.927573,0.11911,0.53069,0.967372,0.525521,0.19015,0.781266,0.638463,0.502952,0.472383,0.155782,0.0866325,0.841766,0.575353,0.0799319,0.298511,0.872433,0.266931,0.818673,0.541883,0.865935,0.442327,0.900966,0.253457,0.0309584,0.770276,0.747092,0.688105,0.323403,0.659532,0.821394,0.265275,0.292133,0.996585,0.951802,0.150054,0.201825,0.364746,0.473473,0.70702,0.0487003,0.849947,0.138372,0.692464,0.200855,0.360782,0.610034,0.696467,0.990314,0.649363,0.0526437,0.483724,0.323744,0.955036,0.021358,0.247549,0.0422288,0.1361,0.821982,0.641586,0.533052,0.264602,0.585002,0.587895,0.0809156,0.757872,0.488528,0.293244,0.29597,0.364678,0.207439,0.389405,0.715686,0.077786,0.890805,0.861306,0.19392,0.263864,0.624006,0.806904,0.878666,0.580713,0.000211418,0.324025,0.431708,0.99199,0.0677261,0.753429,0.503241,0.692017,0.690654,0.239262,0.595915,0.581879,0.914609,0.88221,0.833384,0.719134,0.60295,0.51577,0.940075,0.360447,0.173734,0.79972,0.466715,0.197812,0.768133,0.90247,0.0186477,0.87416,0.257913,0.404207,0.107543,0.691292,0.655654,0.570776,0.291632,0.428011,0.961428,0.993346,0.621597,0.60901,0.19957,0.875273,0.291779,0.996249,0.250826,0.551042,0.557779,0.606096,0.386478,0.513022,0.775464,0.971503,0.0734987,0.615919,0.480641,0.542281,0.858568,0.771214,0.797286,0.444653,0.743427,0.114358,0.0736958,0.178465,0.296659,0.00357842,0.681683,0.379699,0.550632,0.624977,0.372818,0.610255,0.972101,0.711604,0.859583,0.265151,0.1959,0.697397,0.987303,0.324266,0.465949,0.775221,0.295614,0.841919,0.0462037,0.418771,0.925341,0.00259602,0.782196,0.901105,0.00335157,0.477132,0.890645,0.491942,0.453377,0.598675,0.179541,0.172035,0.739998,0.364718,0.18954,0.987059,0.828132,0.839311,0.50399,0.357516,0.307093,0.456749,0.240479,0.0238488,0.146161,0.605714,0.373987,0.52398,0.171497,0.902874,0.714096,0.408857,0.600785,0.780189,0.0310488,0.99791,0.672076,0.0326971,0.811899,0.16131,0.744621,0.689576,0.381311,0.102892,0.415344,0.965756,0.345689,0.334167,0.127045,0.0252317,0.477377,0.862721,0.343639,0.548786,0.51653,0.0613582,0.153173,0.722562,0.153202,0.000252366,0.292658,0.306323,0.745975,0.638161,0.260934,0.477536,0.174727,0.0913123,0.539562,0.337704,0.961225,0.856515,0.129062,0.912492,0.427029,0.566353,0.364102,0.324974,0.101089,0.571886,0.569729,0.798477,0.305808,0.989969,0.474808,0.852068,0.567922,0.172695,0.818412,0.361592,0.764443,0.548326,0.691762,0.598453,0.754562,0.806791,0.243228,0.667525,0.495851,0.504846,0.743857,0.651374,0.253927,0.19166,0.582309,0.668007,0.802811,0.970887,0.53801,0.526539,0.616853,0.200676,0.350607,0.16031,0.884514,0.0131582,0.0164003,0.780644,0.828847,0.364674,0.987253,0.430326,0.500792,0.655902,0.840245,0.0120538,0.335692,0.593573,0.18309,0.411332,0.360392,0.928168,0.432313,0.201908,0.392235,0.934632,0.100613,0.693,0.108278,0.666145,0.624184,0.877915,0.747113,0.40033,0.229024,0.705977,0.959652,0.801692,0.106016,0.359532,0.727318,0.181115,0.0403445,0.267783,0.375696,0.333812,0.134257,0.670968,0.754289,0.736454,0.836773,0.187517,0.435617,0.826814,0.77496,0.180487,0.706534,0.517759,0.493304,0.298683,0.577224,0.840097,0.952577,0.00675386,0.0404863,0.724347,0.0703586,0.474832,0.350333,0.912977,0.683342,0.0169144,0.573947,0.251049,0.388786,0.453471,0.588093,0.624758,0.740193,0.260725,0.859222,0.399544,0.560171,0.0730091,0.260487,0.286454,0.482666,0.970652,0.380146,0.458902,0.825482,0.13584,0.120151,0.300133,0.916668,0.336837,0.162798,0.107288,0.557331,0.465063,0.064648,0.430217,0.530507,0.759199,0.644642,0.463759,0.635295,0.487475,0.75864,0.605796,0.703836,0.512767,0.586277,0.662013,0.760637,0.255974,0.528418,0.618616,0.15052,0.753674,0.752098,0.972284,0.258146,0.404906,0.941034,0.0331756,0.753684,0.251679,0.275954,0.030919,0.0985759,0.198886,0.0563694,0.0419623,0.349051,0.809538,0.0253713,0.049024,0.599866,0.00800735,0.170774,0.155883,0.996473,0.221229,0.518184,0.00619256,0.926525,0.537721,0.899394,0.201475,0.803299,0.92499,0.229751,0.79325,0.764272,0.381329,0.185841,0.840268,0.924832,0.551115,0.710845,0.0805309,0.0774425,0.295763,0.611552,0.0557274,0.859417,0.521946,0.918352,0.543087,0.195057,0.700691,0.40753,0.823203,0.0445687,0.710949,0.0812114,0.994368,0.333314,0.278611,0.410927,0.776584,0.0225936,0.0269023,0.894391,0.841218,0.239574,0.791805,0.906331,0.472863,|0.721451,0.773408,0.680557,0.0195208,0.967024,0.927922,0.027576,0.847196,0.4198,0.522235,0.828935,0.420309,0.0953626,0.442722,0.701372,0.529463,0.762905,0.590661,0.697787,0.588996,0.526856,0.145187,0.629341,0.115548,0.424647,0.335907,0.162005,0.382448,0.926516,0.577481,0.409012,0.711023,0.508673,0.733896,0.659415,0.208506,0.108257,0.280723,0.882175,0.739926,0.899457,0.811445,0.136372,0.691739,0.674363,0.332042,0.378982,0.680191,0.44647,0.176518,0.470101,0.350691,0.496978,0.433785,0.0409175,0.826982,0.547032,0.674817,0.969093,0.272511,0.487953,0.319061,0.283607,0.112268,0.826723,0.662493,0.152279,0.655207,0.175202,0.594867,0.269801,0.0439957,0.25169,0.0154777,0.219934,0.877963,0.450548,0.523277,0.984271,0.206031,0.782592,0.500727,0.807842,0.72117,0.880127,0.396552,0.29936,0.752491,0.729621,0.50783,0.108099,0.66122,0.569179,0.0840941,0.773824,0.901202,0.87868,0.51009,0.360462,0.686704,0.428987,0.719066,0.720011,0.980778,0.164172,0.245924,0.0584812,0.613088,0.956344,0.422626,0.335896,0.707718,0.454064,0.690352,0.264834,0.644279,0.458289,0.678505,0.0444037,0.590021,0.889746,0.133439,0.589059,0.695737,0.465668,0.00715917,0.934371,0.607209,0.350464,0.65463,0.381045,0.338332,0.96236,0.474387,0.200206,0.734354,0.660119,0.826855,0.525483,0.366296,0.520242,0.307983,0.724356,0.40206,0.163865,0.267839,0.682537,0.558191,0.221445,0.592494,0.895674,0.23385,0.576392,0.870739,0.921791,0.663748,0.475287,0.995928,0.853186,0.341646,0.684604,0.835182,0.570639,0.226668,0.377965,0.175107,0.259893,0.523179,0.441133,0.197229,0.932382,0.945896,0.928984,0.40778,0.991043,0.464166,0.181442,0.450967,0.365699,0.732435,0.56537,0.058605,0.657964,0.972386,0.806781,0.308408,0.730275,0.254321,0.816082,0.136282,0.311593,0.764437,0.171624,0.739074,0.276616,0.0655568,0.179381,0.70316,0.00723332,0.0834205,0.26587,0.342153,0.518029,0.149973,0.622786,0.0222871,0.361447,0.278746,0.979277,0.70579,0.528681,0.976951,0.316742,0.199158,0.569511,0.822996,0.960288,0.184742,0.0465282,0.741232,0.630866,0.29571,0.675316,0.423705,0.891153,0.263646,0.0948344,0.69609,0.26908,0.584716,0.426959,0.854526,0.816674,0.847288,0.128873,0.678319,0.142026,0.334893,0.642307,0.185985,0.382945,0.336387,0.60264,0.889686,0.446568,0.33224,0.328935,0.230707,0.283226,0.162735,0.00525206,0.0184572,0.507868,0.92169,0.51571,0.676611,0.0679475,0.130973,0.323725,0.191983,0.123826,0.0838916,0.872151,0.203827,0.129751,0.908382,0.505895,0.153546,0.387253,0.147657,0.174797,0.259232,0.688242,0.334186,0.0268466,0.261745,0.164671,0.0916492,0.873966,0.0389157,0.273516,0.970837,0.229122,0.789369,0.91017,0.3233,0.359368,0.597941,0.358907,0.620448,0.248198,0.573589,0.385518,0.670883,0.66382,0.111967,0.569286,0.259668,0.634563,0.195724,0.132844,0.841671,0.0963098,0.612961,0.740361,0.98312,0.594286,0.282825,0.970327,0.823526,0.874424,0.457507,0.701509,0.960196,0.559847,0.803829,0.536981,0.696723,0.523868,0.064028,0.222653,0.566272,0.166972,0.0265028,0.10493,0.579317,0.760792,0.146593,0.450566,0.751146,0.127478,0.558634,0.897662,0.61625,0.926043,0.694854,0.585171,0.224194,0.0563411,0.375297,0.487541,0.879493,0.821956,0.742182,0.765903,0.247965,0.958649,0.527352,0.108633,0.00589758,0.807997,0.928145,0.0513927,0.353355,0.745192,0.206876,0.465789,0.930612,0.928595,0.62426,0.70785,0.429786,0.135263,0.753573,0.286888,0.172571,0.11746,0.357183,0.235266,0.365042,0.587862,0.340892,0.108548,0.440821,0.573475,0.838335,0.632248,0.952616,0.41132,0.058024,0.964155,0.709379,0.327191,0.747509,0.330769,0.393199,0.404456,0.209928,0.378382,0.224912,0.281854,0.284711,0.116898,0.780488,0.680903,0.0780683,0.875494,0.82559,0.383373,0.11456,0.244428,0.709204,0.389317,0.796066,0.953962,0.538719,0.303427,0.35137,0.703591,0.25397,0.316587,0.873479,0.294957,0.148582,0.238325,0.889885,0.483664,0.731464,0.404275,0.807437,0.85245,0.756054,0.43666,0.553914,0.943855,0.792101,0.217843,0.79673,0.108835,0.706205,0.187432,0.910964,0.712463,0.541961,0.473505,0.748827,0.795312,0.847952,0.173285,0.627047,0.680725,0.504209,0.610787,0.512229,0.216309,0.139555,0.803188,0.216842,0.915811,0.652283,0.363048,0.132334,0.223311,0.500083,0.211631,0.162798,0.190729,0.544035,0.454629,0.645315,0.0869915,0.343673,0.522401,0.777426,0.00736976,0.127769,0.173249,0.666627,0.807497,0.944352,0.819252,0.929465,0.234239,0.995759,0.0931764,0.996882,0.695126,0.678236,0.539547,0.930854,0.611193,0.911618,0.127491,0.719469,0.367958,0.991276,0.0590563,0.104448,0.828684,0.865833,0.952448,0.487075,0.0668299,0.320454,0.788394,0.781746,0.31759,0.87219,0.302468,0.922834,0.0393595,0.34211,0.135133,0.435686,0.702171,0.820099,0.298668,0.714381,0.678677,0.381788,0.867694,0.0999968,0.334611,0.684052,0.197645,0.90896,0.20038,0.0714021,0.856806,0.956625,0.734289,0.844799,0.489164,0.781745,0.98261,0.45301,0.438844,0.830542,0.785687,0.486659,0.713867,0.779993,0.270362,0.264469,0.276133,0.774453,0.411095,0.296258,0.911156,0.298014,0.325761,0.252235,0.538486,0.785193,0.346278,0.950131,0.185519,0.139251,0.109375,0.721491,0.213499,0.0795853,0.0127752,0.650214,0.494831,0.35733,0.616645,0.488746,0.648355,0.731407,0.624449,0.0802653,0.552993,0.0866888,0.668351,0.0838642,0.0786488,0.139492,0.255124,0.218849,0.208558,0.747752,0.432403,0.639985,0.175514,0.12793,0.301165,0.20449,0.44858,0.282619,0.236353,0.856953,0.857289,0.481129,0.191762,0.976581,0.194498,0.377925,0.272251,0.915573,0.552745,0.594988,0.452153,0.838705,0.294251,0.311454,0.623186,0.684796,0.722355,0.284767,0.100496,0.418037,0.953779,0.739197,0.152579,0.617764,0.52314,0.887337,0.724904,0.733982,0.732225,0.984613,0.398176,0.0599948,0.457408,0.710778,0.0314553,0.20295,0.138875,0.11608,0.161781,0.492075,0.627587,0.17755,0.909106,0.579616,0.251656,0.0365406,0.984671,0.185114,0.972394,0.36137,0.0427496,0.564759,0.637414,0.368092,0.0834603,0.763791,0.140284,0.449834,0.999123,0.321334,0.260947,0.829966,0.927016,0.426197,0.761046,0.645607,0.721002,0.441747,0.607808,0.831709,0.0334972,0.523064,0.041456,0.230775,0.231004,0.463184,0.56125,0.747097,0.598876,0.254472,0.335171,0.0370977,0.223609,0.293789,0.35491,0.371327,0.616164,0.0462491,0.404904,0.232529,0.285341,0.689789,0.494125,0.861403,0.926133,0.903096,0.571302,0.637123,0.115279,0.646955,0.340733,0.999711,0.968762,0.83742,0.987048,0.0182195,0.0600878,0.378039,0.495941,0.780564,0.540417,0.344881,0.128683,0.372415,0.99576,0.510736,0.33809,0.00863737,0.150639,0.299472,0.714844,0.394996,0.880584,0.539313,0.82014,0.625432,0.501212,0.923348,0.294826,0.404977,0.91238,0.0527998,0.076171,0.238785,0.92533,0.519079,0.443075,0.896666,0.644369,0.465901,0.357792,0.0163665,0.0189841,0.0254765,0.849118,0.946253,0.1569,0.0905892,0.673319,0.143693,0.48412,0.830648,0.279794,0.252998,0.517433,0.762686,0.0553148,0.234635,0.0174874,0.827798,0.973155,0.370833,0.71697,0.842843,0.387584,0.275765,0.164503,0.512501,0.827168,0.996211,0.642253,0.557467,0.773076,0.629419,0.213233,0.455681,0.0958403,0.0203308,0.792192,0.783926,0.353169,0.708595,0.744471,0.741908,0.754776,0.387452,0.482658,0.0847345,0.377877,0.0815723,0.354492,0.209384,0.892912,0.450084,0.341028,0.655142,0.435524,0.028764,0.913304,0.671423,0.480781,0.347998,0.860793,0.137212,0.681385,0.474388,0.907991,0.606207,0.085041,0.587905,0.145638,0.514498,0.0477481,0.906782,0.985848,0.334078,0.975333,0.263822,0.213248,0.384125,0.52566,0.688513,0.732291,0.683658,0.0791231,0.65795,0.166786,0.282563,0.612958,0.826115,0.386884,0.575281,0.306277,0.434498,0.434831,0.945105,0.694157,0.996549,0.347049,0.245114,0.222288,0.10677,0.652272,0.442808,0.154772,0.359937,0.284329,0.17156,0.0642968,0.645982,0.572447,0.879349,0.0488019,0.688238,0.864622,0.0247326,0.579595,0.339239,0.525283,0.653971,0.652579,0.738232,0.85645,0.377171,0.456494,0.850668,0.285152,0.71773,0.341466,0.212074,0.609292,0.130381,0.104193,0.0106452,0.979458,0.932185,0.351427,0.547226,0.669886,0.421289,0.304664,0.833458,0.37934,0.826604,0.0186,0.878955,0.108551,0.392785,0.502101,0.631533,0.196365,0.274577,0.194191,0.956878,0.408978,0.891929,0.546192,0.342059,0.00446522,0.793402,0.0145503,0.656104,0.833186,0.960335,0.17165,0.890524,0.992867,0.250363,0.564332,0.511028,0.0143011,0.425865,0.835692,0.326749,0.476877,0.752709,0.532718,0.969473,0.15931,0.717644,0.0140725,0.911067,0.806737,0.881469,0.867358,0.180423,0.590003,0.716893,0.342728,0.131916,0.332286,0.658509,0.862608,0.984725,0.895036,0.445022,0.377458,0.689493,0.000708997,0.74375,0.376216,0.0598926,0.782381,0.457772,0.430029,0.805594,0.533095,0.333841,0.0555022,0.305999,0.453665,0.0400989,0.57008,0.750794,0.776099,0.89309,0.426092,0.953804,0.521279,0.923102,0.259867,0.664448,0.537682,0.475203,0.316435,0.990939,0.379242,0.88532,0.304289,0.202622,0.0971199,0.794906,0.971191,0.135548,0.894276,0.344491,0.576529,0.481917,0.896998,0.85992,0.905239,0.432631,0.284779,0.841749,0.706372,0.483537,0.266793,0.261226,0.259247,0.674632,0.61161,0.21136,0.550512,0.0462768,0.230922,0.813814,0.420126,0.12642,0.15976,0.729904,0.758378,0.625757,0.426414,0.904408,0.296259,0.39022,0.17035,0.52513,0.703308,0.0764065,0.446383,0.904097,0.791745,0.650999,0.320948,0.476491,0.772054,0.841721,|0.785995,0.686167,0.352722,0.625219,0.61726,0.468108,0.740781,0.678985,0.195748,0.268958,0.161081,0.377733,0.479453,0.551352,0.874856,0.632502,0.678761,0.152301,0.716399,0.304684,0.471302,0.128166,0.802593,0.165947,0.00432038,0.393271,0.363677,0.855883,0.154383,0.520097,0.408674,0.496037,0.186911,0.292239,0.45926,0.956093,0.0427244,0.832722,0.706216,0.97092,0.866738,0.220061,0.733921,0.319835,0.688909,0.747744,0.258467,0.970261,0.15124,0.912685,0.465823,0.24951,0.159898,0.12556,0.989749,0.0170696,0.357556,0.204371,0.337515,0.372537,0.767106,0.422116,0.789476,0.262766,0.453226,0.8547,0.301841,0.904939,0.414912,0.872875,0.60531,0.21398,0.66241,0.0620301,0.0822051,0.906063,0.578264,0.915631,0.202146,0.650117,0.354194,0.489218,0.744452,0.418676,0.45515,0.479991,0.355018,0.916903,0.903792,0.326124,0.472331,0.76314,0.671146,0.566296,0.402254,0.171462,0.116162,0.7869,0.348896,0.384827,0.481915,0.609271,0.429912,0.17778,0.831558,0.168411,0.761753,0.348209,0.0053485,0.15432,0.11606,0.461082,0.616139,0.012685,0.371813,0.873652,0.0547921,0.164188,0.0390598,0.190064,0.851139,0.33254,0.299156,0.35521,0.312131,0.194222,0.856573,0.966563,0.0948532,0.712198,0.602622,0.0967616,0.767962,0.104823,0.191579,0.9603,0.0332921,0.272328,0.928349,0.323902,0.266964,0.360102,0.132719,0.844154,0.366882,0.572989,0.532922,0.658849,0.894535,0.380822,0.892752,0.27597,0.693943,0.770036,0.602035,0.319443,0.920743,0.820964,0.444078,0.257553,0.908966,0.75687,0.352253,0.343126,0.16376,0.21843,0.341812,0.295715,0.866377,0.35351,0.16936,0.568465,0.060319,0.0455206,0.395426,0.454516,0.552854,0.664676,0.461604,0.943297,0.362247,0.0801414,0.622449,0.908814,0.34343,0.471082,0.778197,0.46986,0.242839,0.91709,0.652243,0.400141,0.533222,0.678495,0.0115998,0.245756,0.97859,0.972735,0.625727,0.983597,0.537182,0.696273,0.791123,0.257075,0.931566,0.772583,0.431237,0.522211,0.379417,0.16125,0.706959,0.80433,0.962067,0.852344,0.163209,0.591575,0.196867,0.26646,0.284005,0.842928,0.0536984,0.0394658,0.766523,0.195965,0.690944,0.233324,0.402547,0.598343,0.183197,0.196446,0.850491,0.96911,0.679136,0.800624,0.434563,0.744665,0.977276,0.321832,0.276786,0.751907,0.774618,0.522662,0.912251,0.725402,0.734875,0.690739,0.169619,0.693766,0.60709,0.416982,0.297232,0.409478,0.470413,0.764197,0.653224,0.284046,0.266498,0.106613,0.0247642,0.684569,0.552583,0.199857,0.300317,0.0419179,0.503576,0.219489,0.430565,0.272401,0.710424,0.0256528,0.383478,0.966608,0.0572273,0.587018,0.881712,0.187381,0.217385,0.552701,0.682002,0.101307,0.365797,0.296695,0.575434,0.731337,0.899225,0.389462,0.220923,0.47275,0.946805,0.869991,0.523605,0.947129,0.0345296,0.0470689,0.213668,0.516916,0.0669699,0.265072,0.128909,0.755586,0.536653,0.682772,0.853574,0.915687,0.503605,0.737347,0.55833,0.376799,0.465993,0.464992,0.530101,0.0600746,0.697634,0.53538,0.942694,0.991773,0.142512,0.350132,0.686126,0.0105526,0.967996,0.1592,0.569701,0.931373,0.364977,0.810504,0.997494,0.387753,0.212929,0.172616,0.666356,0.592241,0.815367,0.532326,0.757121,0.156087,0.10296,0.829567,0.550681,0.212326,0.434664,0.940112,0.642076,0.763737,0.730869,0.387019,0.776145,0.531571,0.641861,0.792749,0.258388,0.507205,0.135786,0.500083,0.626739,0.259341,0.605896,0.224877,0.288323,0.852975,0.583655,0.896277,0.603812,0.401193,0.921902,0.528544,0.264128,0.294773,0.12891,0.240889,0.00551212,0.977444,0.284104,0.675532,0.558796,0.492206,0.53743,0.748028,0.319111,0.285994,0.396586,0.987071,0.492179,0.680392,0.221441,0.98779,0.682871,0.0301276,0.0547011,0.942901,0.336604,0.960146,0.971273,0.341122,0.678115,0.541746,0.371766,0.468249,0.232536,0.88775,0.869054,0.676468,0.23156,0.367293,0.232286,0.910538,0.988452,0.504773,0.444488,0.80468,0.433835,0.214673,0.95852,0.50653,0.829352,0.968138,0.511062,0.334305,0.0382078,0.369115,0.734931,0.751823,0.496343,0.337166,0.815897,0.358421,0.419929,0.97935,0.0456375,0.767676,0.839837,0.624172,0.635311,0.0418679,0.819094,0.703689,0.590898,0.926637,0.13354,0.749966,0.688132,0.867581,0.174051,0.450159,0.19278,0.935124,0.627693,0.608025,0.326321,0.817628,0.951732,0.592543,0.747821,0.490349,0.23429,0.596767,0.814717,0.302712,0.122043,0.18121,0.326704,0.142091,0.972729,0.926101,0.187371,0.549273,0.422579,0.98268,0.713272,0.743025,0.115189,0.532884,0.896418,0.673467,0.474684,0.759128,0.360264,0.464811,0.0324491,0.834565,0.380774,0.940628,0.735166,0.574813,0.510207,0.912815,0.72425,0.688739,0.568127,0.413146,0.796151,0.363184,0.198378,0.301902,0.95114,0.152389,0.967021,0.273148,0.809576,0.12772,0.904956,0.373523,0.638548,0.0908582,0.022402,0.536754,0.137315,0.105157,0.724729,0.892374,0.163348,0.486378,0.449768,0.784541,0.738583,0.524847,0.337223,0.429442,0.0237841,0.758366,0.166982,0.0237185,0.111275,0.309761,0.838706,0.470403,0.521032,0.227744,0.179873,0.430705,0.0974401,0.156884,0.468105,0.7045,0.755602,0.422271,0.929421,0.653131,0.373375,0.141913,0.806038,0.246555,0.174322,0.631126,0.466163,0.475687,0.46845,0.862327,0.188967,0.34695,0.528431,0.98439,0.763712,0.141713,0.225799,0.342354,0.941269,0.758083,0.413556,0.419403,0.276117,0.725803,0.292988,0.867929,0.425831,0.389513,0.982043,0.780426,0.638933,0.929731,0.740128,0.202553,0.230952,0.496501,0.0942649,0.77505,0.218863,0.821767,0.589806,0.342788,0.726814,0.689357,0.741719,0.212665,0.00416547,0.406467,0.421395,0.344266,0.711859,0.31342,0.291307,0.129816,0.310438,0.7129,0.505137,0.744037,0.594961,0.490347,0.885232,0.370466,0.18162,0.107157,0.713627,0.186201,0.0517325,0.530524,0.391166,0.044654,0.582388,0.269252,0.918543,0.58145,0.571323,0.728908,0.238177,0.832501,0.971171,0.336799,0.819012,0.663498,0.0171515,0.162249,0.901579,0.329974,0.32103,0.555399,0.40938,0.612115,0.787504,0.49422,0.309465,0.127511,0.887832,0.231311,0.0859044,0.332325,0.224086,0.0516427,0.472706,0.851831,0.297799,0.864196,0.273186,0.257345,0.0121524,0.0507024,0.862932,0.879299,0.274281,0.100974,0.972393,0.393353,0.936996,0.0660245,0.430018,0.993728,0.00213695,0.0761549,0.555596,0.732856,0.736115,0.936928,0.497718,0.811966,0.878152,0.938553,0.681687,0.037172,0.558227,0.388986,0.5212,0.824743,0.00432032,0.489672,0.632591,0.344327,0.591379,0.926055,0.554229,0.0941426,0.959232,0.195118,0.713929,0.969978,0.970231,0.715471,0.129926,0.145548,0.333554,0.890959,0.0972405,0.40546,0.647243,0.857477,0.0364969,0.0404704,0.364471,0.631896,0.26538,0.276443,0.552005,0.0822572,0.444736,0.406258,0.698296,0.176714,0.475177,0.204485,0.656546,0.790032,0.167631,0.363382,0.99285,0.958052,0.359838,0.453723,0.461953,0.295859,0.896984,0.0831485,0.996684,0.00083524,0.911849,0.912485,0.665507,0.781088,0.444268,0.0982665,0.84302,0.946539,0.918074,0.339914,0.403754,0.542066,0.649492,0.25693,0.437325,0.424966,0.00529414,0.329685,0.0555343,0.343089,0.409043,0.688322,0.991787,0.607074,0.614832,0.352885,0.824781,0.0531315,0.856376,0.367127,0.818051,0.0680746,0.537355,0.685372,0.528034,0.160832,0.246426,0.817231,0.33791,0.0526333,0.608999,0.916487,0.708747,0.454889,0.17385,0.800886,0.422115,0.517214,0.890501,0.517126,0.878466,0.267467,0.392816,0.655098,0.00688368,0.212095,0.995353,0.923948,0.228873,0.0755171,0.793637,0.820626,0.240001,0.992331,0.920354,0.0825024,0.387315,0.081152,0.479365,0.451169,0.548745,0.713803,0.555895,0.304638,0.933744,0.466913,0.0293473,0.0975177,0.842752,0.36476,0.876673,0.218651,0.29392,0.553878,0.598679,0.799084,0.909326,0.482282,0.233812,0.628008,0.720484,0.34844,0.889764,0.249657,0.115418,0.554145,0.0141169,0.66015,0.457227,0.282341,0.694658,0.190023,0.0366457,0.561264,0.308576,0.902271,0.990451,0.973783,0.0864204,0.537812,0.884724,0.590232,0.91508,0.81338,0.516068,0.703918,0.365765,0.257232,0.699726,0.63497,0.992983,0.221396,0.654619,0.306279,0.772737,0.517241,0.300562,0.712525,0.00945032,0.916345,0.405327,0.733238,0.523221,0.838739,0.384431,0.718568,0.956171,0.202363,0.728251,0.761687,0.583692,0.231462,0.536797,0.956927,0.330946,0.98999,0.13597,0.128139,0.315698,0.796371,0.400191,0.063729,0.464979,0.19425,0.482733,0.232518,0.562755,0.420634,0.85982,0.822153,0.564236,0.811538,0.00287771,0.974148,0.924164,0.544352,0.849439,0.375065,0.882778,0.963124,0.589424,0.233847,0.352279,0.61055,0.472907,0.218619,0.81998,0.00376433,0.836543,0.456296,0.68334,0.566401,0.501074,0.300243,0.678111,0.571266,0.749638,0.4259,0.863895,0.0355082,0.436278,0.663504,0.773752,0.76503,0.85414,0.282835,0.569791,0.989975,0.609683,0.842431,0.760649,0.416225,0.0954064,0.859647,0.0557423,0.952878,0.244745,0.544787,0.664494,0.983778,0.695072,0.916183,0.495108,0.81866,0.756587,0.606344,0.585019,0.0754241,0.966378,0.159283,0.836162,0.710798,0.690325,0.505126,0.208895,0.563739,0.951078,0.172696,0.881566,0.573088,0.0113606,0.412109,0.0801947,0.299758,0.519433,0.690757,0.439889,0.777247,0.387883,0.353823,0.776112,0.655887,0.175561,0.554561,0.986414,0.377971,0.174791,0.264153,0.953901,0.480722,0.280054,0.322826,0.529178,0.543576,0.887728,0.176337,0.92517,0.75226,0.847985,0.92546,0.708111,0.534183,0.23683,0.171966,0.88806,0.684849,0.955453,0.305427,0.40175,0.257002,0.925195,0.0130931,0.677427,0.952841,0.797559,0.0435073,0.225029,0.267322,|0.957797,0.195633,0.843143,0.397856,0.0577176,0.00426698,0.302792,0.394146,0.253185,0.610174,0.952032,0.0832009,0.869078,0.964992,0.641332,0.937246,0.237149,0.627328,0.000383139,0.0127724,0.513464,0.849396,0.84284,0.648635,0.367662,0.904942,0.439926,0.884299,0.761606,0.173081,0.989206,0.326843,0.499819,0.0853261,0.238481,0.0795801,0.918064,0.293667,0.551084,0.699231,0.88744,0.923582,0.234807,0.383915,0.420647,0.99897,0.47115,0.495469,0.133082,0.374577,0.751582,0.255474,0.193575,0.834942,0.432622,0.637765,0.833562,0.617043,0.288954,0.0340322,0.158502,0.312508,0.34548,0.501153,0.0398449,0.783392,0.771103,0.288229,0.939349,0.196854,0.533607,0.0391148,0.726287,0.621363,0.953093,0.511204,0.447767,0.678347,0.998882,0.272969,0.675303,0.824161,0.806349,0.551177,0.0365217,0.217423,0.410258,0.527614,0.157705,0.340521,0.769221,0.820628,0.233147,0.499096,0.63307,0.971913,0.630338,0.190763,0.822455,0.625452,0.317057,0.21643,0.610501,0.106021,0.914364,0.564193,0.832883,0.580193,0.655823,0.360135,0.68029,0.854817,0.0711014,0.270342,0.816993,0.749816,0.526557,0.409098,0.309892,0.08513,0.497996,0.517899,0.686252,0.148818,0.270956,0.527824,0.482446,0.334999,0.510045,0.556527,0.277724,0.509371,0.997551,0.961489,0.226239,0.29569,0.168536,0.740572,0.96317,0.922518,0.413118,0.536181,0.910767,0.108286,0.134073,0.389583,0.493206,0.742619,0.734771,0.336079,0.360568,0.808691,0.920805,0.165916,0.414813,0.207817,0.595923,0.903093,0.74149,0.107713,0.86585,0.709666,0.708539,0.00179112,0.409254,0.327097,0.811326,0.407698,0.299465,0.518061,0.631367,0.300365,0.925194,0.183654,0.837327,0.721493,0.576828,0.571398,0.525889,0.042702,0.958928,0.662019,0.577296,0.0930301,0.24271,0.842443,0.452761,0.723946,0.733301,0.921621,0.0833091,0.300468,0.526504,0.479467,0.746755,0.346167,0.871423,0.176103,0.778077,0.454036,0.602251,0.615122,0.87399,0.0329961,0.883849,0.400985,0.412275,0.278834,0.0691831,0.791793,0.651731,0.727476,0.809846,0.0640945,0.195492,0.462899,0.497294,0.298886,0.935012,0.347845,0.920649,0.267124,0.140992,0.550457,0.320079,0.0402352,0.411557,0.4623,0.88548,0.34109,0.479887,0.447052,0.466912,0.815286,0.826411,0.0392796,0.751803,0.589186,0.0647668,0.257098,0.9798,0.847547,0.579756,0.501584,0.162134,0.288603,0.0638047,0.683772,0.239873,0.321137,0.511216,0.235062,0.249545,0.966418,0.49057,0.631633,0.995975,0.459165,0.705903,0.561614,0.180591,0.630703,0.617794,0.604541,0.47299,0.705988,0.067191,0.658388,0.0342321,0.706904,0.677228,0.768904,0.257572,0.645467,0.906576,0.362184,0.281307,0.0731437,0.435704,0.987396,0.624349,0.259373,0.0471797,0.935648,0.18799,0.0182478,0.566275,0.634718,0.47116,0.664046,0.0657108,0.51082,0.69384,0.356948,0.063113,0.570204,0.94938,0.0460212,0.641954,0.143838,0.0982887,0.523547,0.39179,0.948772,0.371067,0.257513,0.270536,0.121548,0.61954,0.561924,0.740365,0.978267,0.482682,0.467113,0.975946,0.808326,0.517658,0.216799,0.233982,0.562066,0.00293922,0.985984,0.641719,0.0939685,0.187458,0.677361,0.542656,0.0770224,0.754829,0.413784,0.919299,0.266681,0.347762,0.349956,0.246932,0.257666,0.62308,0.278275,0.253207,0.92534,0.620306,0.654369,0.707742,0.343351,0.974424,0.328197,0.95174,0.876777,0.846036,0.93036,0.545581,0.337496,0.358698,0.390838,0.565585,0.539769,0.276654,0.478676,0.398659,0.897014,0.871855,0.326381,0.186582,0.579345,0.808687,0.0201929,0.115421,0.214448,0.636659,0.561169,0.587192,0.96894,0.572098,0.00193208,0.614916,0.739013,0.117331,0.680394,0.0902525,0.373768,0.745391,0.065031,0.329832,0.375185,0.325126,0.614028,0.95902,0.994349,0.824534,0.425485,0.0233312,0.96103,0.356492,0.453108,0.32555,0.579839,0.406825,0.0109689,0.0771418,0.462365,0.397818,0.536591,0.687491,0.347227,0.380754,0.466533,0.229103,0.295343,0.21705,0.94057,0.0479077,0.0813646,0.896749,0.0884603,0.835459,0.0301391,0.2836,0.73389,0.843644,0.11428,0.0533306,0.311114,0.108995,0.232254,0.502693,0.184282,0.0608777,0.416961,0.289751,0.784115,0.827821,0.269299,0.133864,0.847383,0.578746,0.6704,0.28539,0.239349,0.496893,0.551656,0.391329,0.69257,0.942859,0.1493,0.307265,0.800397,0.416944,0.626225,0.242519,0.650013,0.461394,0.652039,0.74483,0.0767952,0.174221,0.959975,0.289461,0.108455,0.289175,0.88661,0.095884,0.0525215,0.467471,0.185268,0.621213,0.549941,0.670467,0.566084,0.263325,0.300596,0.39164,0.948819,0.0748094,0.904833,0.946383,0.901954,0.356074,0.103585,0.587532,0.439775,0.199292,0.137083,0.557637,0.537,0.612119,0.0450048,0.0441037,0.82231,0.398559,0.481759,0.958279,0.518798,0.719033,0.390567,0.835949,0.527262,0.0700249,0.884689,0.310355,0.188116,0.858829,0.536592,0.334166,0.848373,0.155944,0.0374138,0.178546,0.0973183,0.0714193,0.16307,0.409736,0.365293,0.693115,0.722051,0.882802,0.619356,0.584825,0.452219,0.307066,0.867356,0.781462,0.752015,0.647097,0.247233,0.611246,0.510661,0.0342795,0.179707,0.465291,0.334355,0.280186,0.956991,0.0700437,0.0391658,0.902664,0.00885469,0.22345,0.803499,0.868496,0.417006,0.128897,0.138764,0.00440085,0.223541,0.235442,0.512778,0.977985,0.0528024,0.81276,0.261678,0.804563,0.291361,0.966415,0.27958,0.917512,0.298806,0.255681,0.729046,0.352335,0.909928,0.573568,0.934619,0.0225335,0.104474,0.412278,0.304189,0.593137,0.788899,0.0910007,0.914372,0.0301388,0.0904828,0.488797,0.795557,0.0620011,0.603095,0.458495,0.547422,0.984382,0.574546,0.333419,0.256096,0.948791,0.987916,0.134465,0.649293,0.0463563,0.773416,0.116282,0.00763267,0.720452,0.644848,0.244343,0.779285,0.405143,0.893299,0.0344128,0.47582,0.81603,0.646044,0.245176,0.190762,0.636648,0.983245,0.248546,0.039651,0.0620819,0.498106,0.843273,0.349386,0.355626,0.318812,0.338488,0.00681299,0.0176457,0.181341,0.190332,0.70655,0.899497,0.775659,0.60799,0.943122,0.0818104,0.965274,0.616794,0.461582,0.665932,0.288409,0.282131,0.0305899,0.851058,0.855974,0.875964,0.223699,0.153425,0.145987,0.479428,0.158565,0.858511,0.971966,0.785405,0.0746871,0.0759373,0.639954,0.0877556,0.905191,0.912429,0.137704,0.634686,0.754641,0.993885,0.410516,0.356823,0.727258,0.452923,0.814958,0.934271,0.930506,0.578081,0.23298,0.045274,0.857246,0.492575,0.376163,0.236931,0.436943,0.957173,0.474515,0.506014,0.837959,0.44385,0.0138484,0.154525,0.212861,0.263051,0.913967,0.794681,0.876961,0.998841,0.376459,0.591259,0.301429,0.55116,0.190462,0.183643,0.897556,0.363548,0.281307,0.989267,0.08406,0.565599,0.371036,0.650732,0.301725,0.804138,0.560173,0.0816159,0.362908,0.454803,0.913078,0.578793,0.621567,0.935159,0.399224,0.502618,0.966851,0.544628,0.912431,0.328892,0.223982,0.900598,0.520677,0.23439,0.688691,0.987222,0.932665,0.439677,0.290505,0.297218,0.77145,0.339061,0.514033,0.619479,0.569518,0.587097,0.700128,0.0673077,0.820413,0.990229,0.446737,0.483322,0.181392,0.456661,0.976345,0.274001,0.938559,0.0179235,0.0564444,0.461058,0.737717,0.692459,0.135527,0.931213,0.187275,0.970977,0.915786,0.67365,0.679322,0.784798,0.683128,0.890543,0.898519,0.893809,0.701434,0.185709,0.696898,0.00448924,0.731459,0.527808,0.896417,0.266061,0.663979,0.0750012,0.167575,0.0787036,0.644642,0.951273,0.475869,0.619917,0.654856,0.282789,0.264002,0.963125,0.339042,0.37975,0.42764,0.989297,0.298762,0.451957,0.66342,0.123957,0.442922,0.925909,0.128431,0.886608,0.504417,0.483747,0.257552,0.309432,0.719264,0.916427,0.274414,0.270956,0.781142,0.64439,0.215528,0.710855,0.92119,0.777479,0.414683,0.0226198,0.544084,0.599876,0.634879,0.981085,0.402252,0.184091,0.165449,0.177177,0.624246,0.183025,0.0444622,0.745955,0.122324,0.104606,0.0555714,0.669247,0.298177,0.674827,0.871031,0.702426,0.805168,0.139245,0.397518,0.133127,0.741248,0.708142,0.122493,0.0807397,0.0616263,0.175963,0.906029,0.26397,0.161849,0.717775,0.986624,0.341399,0.258207,0.540234,0.970363,0.270801,0.0935146,0.792342,0.619145,0.134393,0.929129,0.385473,0.0540427,0.987745,0.128878,0.724932,0.58673,0.5603,0.551199,0.397515,0.508045,0.343657,0.39335,0.653024,0.0622808,0.30467,0.926903,0.457548,0.350844,0.956654,0.403546,0.514683,0.758249,0.961272,0.923918,0.363734,0.712601,0.388726,0.17093,0.367769,0.804772,0.595724,0.669986,0.232341,0.995318,0.440799,0.0695117,0.214927,0.375258,0.33967,0.649898,0.516228,0.161589,0.15798,0.164571,0.472097,0.732294,0.993402,0.498938,0.514041,0.275643,0.211365,0.365184,0.365612,0.780013,0.503338,0.632644,0.447409,0.656861,0.559579,0.431805,0.781422,0.386587,0.423423,0.814748,0.734182,0.29893,0.0690268,0.452905,0.0189205,0.693879,0.228766,0.239863,0.694772,0.854073,0.498438,0.197325,0.337157,0.408468,0.949908,0.658362,0.221351,0.0998393,0.364806,0.83219,0.680566,0.194065,0.238804,0.176315,0.61005,0.385353,0.320408,0.437117,0.142392,0.611272,0.221251,0.401098,0.885041,0.934648,0.10015,0.305077,0.0935578,0.750641,0.390915,0.202301,0.802153,0.775592,0.0549662,0.700463,0.0705366,0.67205,0.454183,0.438625,0.134418,0.159675,0.528759,0.631067,0.191646,0.942245,0.608135,0.676742,0.0841445,0.473674,0.916395,0.233527,0.581668,0.857682,0.782428,0.690073,0.160954,0.367286,0.842174,0.249701,0.388592,0.0487403,0.722046,0.624215,0.0930373,0.49449,0.548523,0.269688,0.361169,0.0952237,0.553803,0.604426,0.659433,0.616749,0.511615,0.532345,0.577116,0.82631,0.490872,0.0595508,0.337462,0.0916725,|0.655615,0.585275,0.0609981,0.553647,0.022472,0.529539,0.676366,0.627818,0.279674,0.847577,0.487986,0.884253,0.343922,0.628911,0.163098,0.0354604,0.767641,0.96772,0.798983,0.0857695,0.0302591,0.517565,0.929618,0.637122,0.299906,0.588298,0.502215,0.892812,0.960138,0.661196,0.787863,0.845313,0.355716,0.155274,0.19913,0.0235344,0.978344,0.128137,0.318197,0.366359,0.544921,0.666324,0.0611219,0.788043,0.315194,0.0848857,0.200489,0.929553,0.59026,0.439355,0.2174,0.345,0.408551,0.233306,0.565304,0.304565,0.902816,0.803562,0.546399,0.681415,0.464934,0.338851,0.647911,0.0594118,0.691463,0.00779235,0.436944,0.0355906,0.357264,0.158305,0.00638103,0.0140268,0.683036,0.739088,0.595567,0.246669,0.178998,0.771576,0.569757,0.556062,0.232009,0.430334,0.668124,0.298397,0.507057,0.627757,0.134792,0.354588,0.619791,0.531054,0.488264,0.277892,0.888228,0.465818,0.715156,0.828556,0.226619,0.210019,0.60732,0.623452,0.627356,0.479652,0.388054,0.98445,0.624331,0.982404,0.506515,0.547568,0.545647,0.29404,0.697473,0.777091,0.10958,0.775126,0.202007,0.303708,0.821032,0.602485,0.354299,0.320704,0.582127,0.438033,0.441892,0.888745,0.64487,0.00256026,0.433407,0.628643,0.137333,0.265661,0.136586,0.88689,0.265241,0.853477,0.709165,0.464197,0.726983,0.751936,0.669943,0.50251,0.439202,0.332593,0.482983,0.0254771,0.353972,0.0105058,0.927129,0.677399,0.253082,0.939144,0.521846,0.29168,0.10322,0.803116,0.468214,0.880388,0.648965,0.871481,0.304302,0.366542,0.276783,0.298857,0.0355423,0.973463,0.977845,0.233856,0.415429,0.924787,0.678891,0.927058,0.283487,0.726457,0.21816,0.833746,0.806634,0.289524,0.354824,0.10035,0.36073,0.458389,0.0142689,0.239784,0.914378,0.0221444,0.814247,0.942253,0.653758,0.984173,0.439293,0.856864,0.0784064,0.14363,0.994666,0.617793,0.978805,0.713208,0.311812,0.457477,0.940488,0.250068,0.0205421,0.368669,0.0795619,0.458078,0.0987498,0.936307,0.369026,0.251157,0.549963,0.0851931,0.343652,0.776691,0.822978,0.945147,0.339171,0.885157,0.78551,0.739077,0.704784,0.311924,0.917219,0.261317,0.307346,0.364913,0.520162,0.139994,0.0874913,0.201896,0.363745,0.576068,0.000885308,0.620388,0.0586888,0.212837,0.241543,0.750062,0.129908,0.270954,0.160185,0.470558,0.0677897,0.756945,0.660678,0.0806105,0.87664,0.0651959,0.91847,0.899273,0.312158,0.0969744,0.157426,0.423112,0.614999,0.40465,0.702928,0.461559,0.751198,0.951902,0.643903,0.183184,0.326297,0.987758,0.0164886,0.0995009,0.995434,0.892089,0.755382,0.35005,0.69898,0.526845,0.994411,0.340099,0.806963,0.272772,0.592372,0.0397008,0.41553,0.762663,0.527293,0.492662,0.996548,0.168432,0.47562,0.301376,0.317518,0.637489,0.50922,0.0832493,0.621161,0.947789,0.621718,0.196801,0.622342,0.543082,0.534727,0.232802,0.176405,0.260938,0.958093,0.327903,0.984321,0.78103,0.810051,0.709175,0.616634,0.666877,0.148526,0.782961,0.327457,0.075662,0.377854,0.450425,0.92657,0.637232,0.932888,0.650817,0.573635,0.290842,0.479669,0.359715,0.564914,0.861145,0.161885,0.120034,0.502998,0.691748,0.969104,0.299495,0.520427,0.168308,0.322834,0.570678,0.812037,0.491487,0.249386,0.76399,0.752131,0.731456,0.552828,0.57722,0.482232,0.172288,0.0559514,0.674445,0.612761,0.680198,0.524258,0.604797,0.562748,0.680189,0.672206,0.766203,0.368421,0.759918,0.60952,0.0442385,0.185718,0.0632944,0.779525,0.154875,0.658105,0.479411,0.311031,0.961867,0.551279,0.947951,0.624101,0.55035,0.824132,0.206846,0.536728,0.18528,0.868607,0.793855,0.597651,0.752436,0.148588,0.173595,0.440443,0.778285,0.294944,0.168291,0.481094,0.366159,0.0363839,0.33196,0.65429,0.0192879,0.272323,0.709921,0.980136,0.23653,0.77974,0.283314,0.742817,0.959346,0.836738,0.811896,0.189168,0.472677,0.373542,0.405542,0.507833,0.538708,0.685926,0.0339835,0.766275,0.269667,0.33124,0.158812,0.373123,0.285119,0.368165,0.994064,0.000927627,0.282477,0.93481,0.769673,0.774595,0.324479,0.564167,0.204967,0.969963,0.707413,0.873127,0.84304,0.257565,0.68263,0.455449,0.572882,0.694775,0.014972,0.82006,0.561289,0.401153,0.359918,0.844677,0.556952,0.748755,0.762781,0.153609,0.161087,0.389038,0.359206,0.557329,0.382129,0.426511,0.302406,0.815311,0.728728,0.385564,0.960265,0.106814,0.439077,0.961332,0.372485,0.564923,0.448807,0.232167,0.0157534,0.793594,0.276973,0.282929,0.214287,0.509777,0.497221,0.690859,0.56935,0.0204071,0.699363,0.997978,0.06171,0.59684,0.668025,0.727301,0.816863,0.49141,0.486079,0.394222,0.0830529,0.144736,0.967926,0.216663,0.0743731,0.309341,0.233825,0.559211,0.649073,0.800022,0.936262,0.0804857,0.173032,0.830593,0.745222,0.688661,0.80949,0.891143,0.15788,0.96121,0.266621,0.338814,0.79642,0.286399,0.899528,0.626225,0.58353,0.0726163,0.950294,0.866898,0.643168,0.656668,0.504614,0.33316,0.221049,0.571963,0.767058,0.541717,0.102944,0.75934,0.333942,0.521674,0.797339,0.330005,0.599581,0.851708,0.941791,0.479403,0.412498,0.082558,0.11481,0.389996,0.763737,0.274564,0.74168,0.530313,0.320329,0.467921,0.0960268,0.776819,0.589542,0.744435,0.392263,0.419968,0.410347,0.413073,0.411488,0.643803,0.0430548,0.395587,0.725117,0.763715,0.828947,0.456324,0.108855,0.601622,0.59676,0.873989,0.827609,0.643867,0.435448,0.676698,0.420131,0.742178,0.820404,0.618798,0.364999,0.621472,0.0330666,0.67302,0.72065,0.419275,0.762246,0.99639,0.258015,0.463879,0.477556,0.0225571,0.567327,0.972953,0.711565,0.0811614,0.357395,0.692716,0.552266,0.329086,0.893891,0.148229,0.477305,0.216733,0.9925,0.632586,0.384893,0.251188,0.562456,0.327349,0.816837,0.123424,0.518028,0.254059,0.698465,0.0915747,0.225345,0.0411118,0.409415,0.660774,0.367016,0.597804,0.864299,0.346939,0.864912,0.925055,0.633247,0.944756,0.817373,0.772637,0.57745,0.520788,0.791777,0.228914,0.960999,0.915757,0.506502,0.290537,0.638102,0.551543,0.897656,0.819946,0.740646,0.812209,0.71219,0.675887,0.581081,0.876112,0.861145,0.945734,0.615874,0.528272,0.631993,0.0517882,0.658653,0.62944,0.176,0.721052,0.209662,0.16973,0.833357,0.162005,0.0443926,0.944476,0.479944,0.53727,0.095719,0.161597,0.0145487,0.657787,0.211728,0.839899,0.349701,0.0298405,0.720547,0.890912,0.975862,0.803029,0.417815,0.769194,0.699756,0.600649,0.730264,0.144446,0.92515,0.280482,0.872588,0.183833,0.219603,0.504553,0.782292,0.956018,0.328037,0.8564,0.700661,0.272709,0.794075,0.500339,0.0813166,0.432361,0.566371,0.218069,0.541391,0.4181,0.505549,0.0613627,0.567402,0.0974303,0.556327,0.138008,0.909639,0.361017,0.578797,0.0671966,0.763342,0.933311,0.513315,0.114351,0.152617,0.448525,0.674595,0.693401,0.794141,0.227905,0.537863,0.765011,0.106562,0.590355,0.478335,0.790476,0.271061,0.973282,0.775082,0.00135458,0.656644,0.00960308,0.157616,0.449257,0.700867,0.063319,0.455724,0.876053,0.526079,0.278157,0.260805,0.419617,0.907664,0.248902,0.775387,0.161032,0.552086,0.602248,0.218462,0.997609,0.767823,0.663086,0.422038,0.763622,0.20446,0.567393,0.965138,0.233834,0.979687,0.0354884,0.805787,0.154074,0.416028,0.433997,0.196239,0.912584,0.887371,0.452648,0.52383,0.236448,0.333337,0.653321,0.660796,0.704194,0.165989,0.409255,0.512295,0.763799,0.51818,0.779994,0.263762,0.782519,0.737274,0.831638,0.282504,0.993622,0.96969,0.395345,0.628317,0.693293,0.217295,0.238031,0.197408,0.785971,0.271669,0.204279,0.733596,0.482813,0.0857481,0.580577,0.152378,0.699542,0.106007,0.329305,0.523397,0.983261,0.451025,0.912712,0.688481,0.120777,0.849854,0.282457,0.114467,0.555308,0.893124,0.237252,0.0547138,0.192593,0.767223,0.788961,0.482936,0.261307,0.974766,0.593487,0.449735,0.396736,0.593606,0.620917,0.747839,0.119472,0.728398,0.324743,0.401728,0.822648,0.541183,0.341191,0.637902,0.567901,0.307744,0.364738,0.364181,0.974392,0.404508,0.00862324,0.204856,0.434412,0.946732,0.979837,0.333601,0.546875,0.920738,0.637363,0.617413,0.564475,0.490438,0.90269,0.235537,0.752503,0.39136,0.18165,0.078539,0.261086,0.371618,0.469685,0.336624,0.2343,0.867157,0.0448832,0.559893,0.793268,0.744457,0.49788,0.252337,0.405445,0.153,0.438568,0.845504,0.74602,0.366889,0.687544,0.948305,0.235613,0.00493038,0.715992,0.131388,0.851908,0.878005,0.432466,0.554624,0.89944,0.259433,0.0103655,0.280013,0.0499002,0.437816,0.952273,0.565475,0.992035,0.386687,0.600841,0.95889,0.413428,0.878357,0.685205,0.557618,0.984044,0.757581,0.0587528,0.0186968,0.0664502,0.221561,0.686891,0.00987673,0.988466,0.639356,0.56,0.415559,0.0369513,0.343524,0.997314,0.208854,0.128377,0.424687,0.354082,0.782189,0.19914,0.493882,0.714604,0.659611,0.681118,0.0627861,0.948407,0.222427,0.34444,0.837785,0.917774,0.389991,0.969122,0.95141,0.725367,0.724903,0.449678,0.0580225,0.372866,0.522716,0.653576,0.596033,0.764576,0.975035,0.124085,0.861983,0.125081,0.316995,0.27082,0.703838,0.947106,0.759559,0.52081,0.727462,0.574168,0.526247,0.0283974,0.888323,0.208084,0.229516,0.549941,0.291551,0.0598224,0.6588,0.34647,0.670968,0.378228,0.195636,0.886432,0.439346,0.0422283,0.611109,0.992674,0.926543,0.0384488,0.533533,0.487697,0.489926,0.33885,0.69309,0.0838718,0.311675,0.0377242,0.19844,0.550638,0.373452,0.401363,0.45853,0.891737,0.55883,0.0810327,0.85831,0.582196,0.662704,0.0451612,0.971533,0.332836,0.393364,0.91443,0.349553,0.0949841,0.57703,0.642324,0.995575,0.61029,0.777991,|0.0863193,0.158991,0.728562,0.928489,0.63436,0.476155,0.0413417,0.428559,0.238708,0.00752062,0.42589,0.578494,0.320967,0.941304,0.538932,0.0580154,0.355797,0.401767,0.522263,0.451489,0.465782,0.395329,0.412841,0.0899058,0.656076,0.130217,0.665127,0.968909,0.115786,0.620086,0.0349054,0.2036,0.930351,0.619892,0.0600771,0.426772,0.883815,0.0715344,0.803842,0.663683,0.610647,0.389054,0.969218,0.00995576,0.675879,0.701377,0.916414,0.646273,0.453798,0.206367,0.576375,0.756963,0.510183,0.168896,0.427966,0.900905,0.964822,0.807411,0.645295,0.691789,0.108291,0.602288,0.18938,0.518369,0.731027,0.271394,0.1418,0.717905,0.696854,0.703622,0.568323,0.0729322,0.0298006,0.828143,0.139419,0.0885831,0.285616,0.934646,0.0800593,0.0125678,0.949898,0.657015,0.69003,0.0720527,0.735379,0.190215,0.148386,0.842149,0.476067,0.00185955,0.119106,0.819939,0.554156,0.441088,0.313898,0.827662,0.968252,0.0269896,0.13717,0.562526,0.854975,0.890064,0.141696,0.646416,0.129861,0.557763,0.739104,0.704061,0.366415,0.949424,0.441004,0.223202,0.794558,0.396734,0.480988,0.115665,0.852717,0.0886059,0.00617212,0.967862,0.537272,0.218912,0.318987,0.883813,0.334949,0.458605,0.354781,0.928935,0.985399,0.46637,0.0754513,0.791201,0.926267,0.59981,0.185577,0.40685,0.055709,0.371476,0.345919,0.396426,0.0165709,0.399271,0.341353,0.645884,0.283068,0.824321,0.399189,0.744641,0.0979269,0.918873,0.717493,0.266612,0.177276,0.56247,0.301921,0.714839,0.228482,0.607356,0.396742,0.822139,0.511419,0.217056,0.702905,0.209766,0.191081,0.896448,0.320876,0.581011,0.929526,0.805698,0.442236,0.00138289,0.874552,0.369122,0.974122,0.796862,0.187729,0.744137,0.223634,0.310003,0.94115,0.896675,0.246095,0.302328,0.449177,0.421054,0.270108,0.610054,0.410337,0.569568,0.877554,0.943448,0.595589,0.0231638,0.0404431,0.273568,0.188445,0.125067,0.38085,0.218769,0.427401,0.168625,0.595775,0.57351,0.00526297,0.91667,0.03433,0.513658,0.44604,0.770377,0.10479,0.774732,0.0167266,0.905069,0.180534,0.935705,0.165521,0.849349,0.353207,0.807573,0.987083,0.630209,0.0664927,0.627122,0.717058,0.495275,0.757479,0.860943,0.359438,0.274985,0.196413,0.449108,0.43516,0.777162,0.474956,0.535045,0.108926,0.679845,0.486591,0.635608,0.639991,0.96514,0.134061,0.290944,0.0297453,0.798036,0.290215,0.656584,0.667604,0.844048,0.316826,0.423785,0.990335,0.824093,0.0634501,0.219822,0.621171,0.328342,0.551128,0.175077,0.292631,0.733391,0.206775,0.826057,0.0149174,0.975846,0.677537,0.69337,0.71859,0.928616,0.0728273,0.453154,0.535105,0.0527867,0.668936,0.934993,0.0018028,0.616458,0.947332,0.0617463,0.363561,0.322538,0.984052,0.349714,0.932829,0.0710256,0.0434677,0.312334,0.656064,0.994097,0.482348,0.568309,0.989335,0.306989,0.0252046,0.373313,0.818806,0.779917,0.746471,0.562128,0.753546,0.722732,0.0724931,0.452819,0.608782,0.713858,0.423422,0.755264,0.853169,0.660188,0.310522,0.242159,0.0585202,0.576999,0.965096,0.575409,0.170264,0.0929087,0.72601,0.331625,0.779989,0.183617,0.636427,0.448623,0.213281,0.735475,0.790308,0.28215,0.203502,0.747462,0.797697,0.405466,0.27619,0.813686,0.280341,0.905254,0.960161,0.568267,0.366392,0.833908,0.760212,0.326346,0.71686,0.212149,0.544903,0.830984,0.00747263,0.47521,0.409847,0.124044,0.729165,0.63468,0.607214,0.866869,0.334886,0.145174,0.718939,0.285992,0.220111,0.802819,0.270332,0.05316,0.509086,0.085888,0.18263,0.0797205,0.674887,0.553656,0.793859,0.950114,0.910403,0.373154,0.596763,0.659211,0.468433,0.555349,0.708227,0.255099,0.339135,0.235223,0.968592,0.291924,0.705301,0.259329,0.986974,0.144502,0.502599,0.942469,0.0809637,0.540246,0.368396,0.733773,0.305549,0.460732,0.941044,0.524815,0.122165,0.130722,0.650691,0.0910752,0.784607,0.0788485,0.548539,0.538984,0.631038,0.810399,0.659487,0.354601,0.756777,0.681666,0.532721,0.605825,0.473903,0.925941,0.50356,0.0183777,0.574274,0.238732,0.490018,0.520544,0.894416,0.642705,0.625812,0.441013,0.704703,0.370689,0.946699,0.693605,0.671623,0.106326,0.156288,0.436399,0.622561,0.44489,0.986333,0.0848348,0.585124,0.685854,0.321916,0.649446,0.520401,0.528511,0.793184,0.211395,0.120227,0.0901724,0.378109,0.256495,0.250823,0.529908,0.626863,0.443028,0.405351,0.835992,0.686251,0.930158,0.0326793,0.169438,0.906684,0.516556,0.718493,0.0541127,0.174303,0.611245,0.188576,0.356733,0.0401259,0.352043,0.582738,0.548319,0.890043,0.0284849,0.199139,0.5679,0.49135,0.362475,0.878221,0.131057,0.669536,0.733936,0.763289,0.67268,0.900497,0.523309,0.457305,0.233888,0.455835,0.120459,0.506671,0.822169,0.470474,0.993693,0.110927,0.707336,0.0138081,0.102146,0.865467,0.365753,0.957914,0.834349,0.430164,0.0781372,0.3392,0.352327,0.438438,0.402009,0.909168,0.0420933,0.924928,0.126612,0.760853,0.829784,0.357363,0.639253,0.0644616,0.613922,0.373116,0.334882,0.285218,0.307152,0.405224,0.690022,0.527723,0.0481972,0.645866,0.49191,0.526892,0.503357,0.915685,0.398394,0.0468063,0.431512,0.066533,0.63869,0.901552,0.16441,0.411373,0.619366,0.395913,0.0306478,0.399751,0.538961,0.0882037,0.0576443,0.289501,0.671943,0.316544,0.595626,0.0624309,0.960288,0.718084,0.0347182,0.657809,0.650072,0.817988,0.750053,0.578231,0.0500389,0.285429,0.20187,0.29937,0.262141,0.232984,0.909567,0.782806,0.22883,0.80429,0.885835,0.11239,0.889826,0.846961,0.405978,0.199565,0.211343,0.463389,0.418211,0.278378,0.332753,0.457711,0.887311,0.91952,0.274778,0.181104,0.515427,0.311719,0.955225,0.663303,0.281282,0.865604,0.867864,0.570389,0.868911,0.178408,0.853671,0.626585,0.318247,0.681521,0.831498,0.937043,0.845517,0.681849,0.92892,0.939161,0.627457,0.210184,0.208008,0.953814,0.105353,0.00310981,0.125449,0.966064,0.497887,0.0703987,0.785524,0.0756618,0.181975,0.984915,0.234092,0.101798,0.641049,0.774989,0.623208,0.838947,0.870846,0.981846,0.360295,0.760403,0.583505,0.518,0.9653,0.960815,0.912865,0.388266,0.196852,0.662603,0.392002,0.873304,0.682169,0.0914437,0.00971043,0.141716,0.360255,0.0461724,0.118532,0.290472,0.68859,0.950836,0.898518,0.613167,0.939665,0.448782,0.113837,0.764451,0.505012,0.526552,0.677666,0.0954385,0.0582915,0.80137,0.375507,0.855202,0.520914,0.693283,0.530712,0.674312,0.165181,0.32827,0.374711,0.367225,0.904574,0.695874,0.132015,0.751778,0.5038,0.123217,0.701831,0.0690526,0.293509,0.142531,0.57484,0.245154,0.500758,0.948059,0.574401,0.812871,0.352785,0.478385,0.305335,0.7764,0.439536,0.526637,0.698758,0.581381,0.762022,0.613741,0.140602,0.270466,0.744108,0.866594,0.278252,0.181838,0.419029,0.419097,0.0852877,0.563733,0.720805,0.146595,0.611747,0.982633,0.508978,0.187656,0.0406507,0.426055,0.0245205,0.656876,0.528339,0.605999,0.413733,0.0450373,0.180377,0.54594,0.0646785,0.205951,0.0856255,0.537042,0.187142,0.816256,0.812315,0.736748,0.896186,0.488488,0.283153,0.63983,0.653542,0.908717,0.00111663,0.160769,0.0826882,0.330183,0.932337,0.747871,0.926172,0.683946,0.331438,0.505795,0.227468,0.283426,0.175309,0.129843,0.753981,0.420412,0.544245,0.670317,0.840115,0.638878,0.545561,0.666726,0.384752,0.164433,0.0220912,0.85517,0.251409,0.956288,0.479168,0.0132638,0.354554,0.799202,0.848978,0.652234,0.0563659,0.82332,0.778804,0.572854,0.315387,0.049978,0.381754,0.155721,0.393462,0.836101,0.319354,0.573353,0.145468,0.971509,0.971037,0.649845,0.518197,0.356723,0.161351,0.213066,0.302063,0.562293,0.19746,0.894677,0.552806,0.0828758,0.612976,0.346824,0.331987,0.951797,0.351397,0.213531,0.873946,0.808328,0.588541,0.355332,0.463123,0.342247,0.448265,0.704466,0.398464,0.0738334,0.618286,0.920915,0.196772,0.120691,0.356666,0.552333,0.680852,0.047929,0.866077,0.651853,0.954305,0.190188,0.938795,0.500836,0.673147,0.813223,0.974235,0.43045,0.460718,0.470843,0.553533,0.539607,0.706498,0.513478,0.178553,0.422677,0.426425,0.0232613,0.635272,0.500979,0.718746,0.90985,0.890368,0.558621,0.727219,0.626498,0.421043,0.215326,0.661945,0.161471,0.615387,0.4924,0.0277033,0.818756,0.289747,0.447006,0.59083,0.0846936,0.660411,0.509121,0.800396,0.857172,0.758408,0.586048,0.382559,0.512877,0.254029,0.876446,0.149459,0.171784,0.350133,0.79051,0.672687,0.515732,0.217573,0.349426,0.456711,0.335408,0.421282,0.389164,0.801787,0.348936,0.163339,0.649924,0.20256,0.32456,0.456813,0.592107,0.132522,0.396147,0.100117,0.942017,0.960428,0.279918,0.855423,0.466837,0.0080294,0.833329,0.362647,0.798774,0.545587,0.859295,0.527963,0.652336,0.67399,0.932102,0.455346,0.00819188,0.588378,0.301245,0.9715,0.83377,0.975683,0.356898,0.564536,0.92981,0.873985,0.883518,0.870268,0.732802,0.70462,0.817222,0.688768,0.75754,0.557201,0.53488,0.0977601,0.556272,0.238172,0.30699,0.430993,0.0772195,0.163214,0.693504,0.87796,0.756859,0.918562,0.110254,0.17111,0.53467,0.263602,0.866307,0.926963,0.0919752,0.229744,0.531361,0.765462,0.360971,0.0801162,0.7582,0.493193,0.618005,0.000380814,0.0348226,0.273607,0.49242,0.639655,0.540644,0.959486,0.909147,0.233699,0.686237,0.493163,0.664982,0.184843,0.886372,0.986409,0.311529,0.513555,0.195057,0.45024,0.671297,0.190574,0.550447,0.894418,0.80232,0.265761,0.611545,0.375707,0.489845,0.930155,0.0361854,0.19218,0.100881,0.713436,0.864435,0.953973,0.106512,0.874506,0.656576,0.183233,0.98322,0.742457,0.424076,0.315786,0.788577,0.843547,0.561646,0.040408,|0.820824,0.903375,0.660614,0.401714,0.373464,0.193436,0.437116,0.245814,0.0259033,0.951038,0.626083,0.0348604,0.281092,0.689723,0.692739,0.0955408,0.0638826,0.530372,0.108673,0.917241,0.231268,0.0850938,0.103364,0.217055,0.83734,0.560474,0.981624,0.356873,0.836007,0.22636,0.129162,0.546209,0.952922,0.715477,0.108588,0.87147,0.829773,0.390571,0.43674,0.0624907,0.394832,0.508011,0.970585,0.936503,0.709658,0.816205,0.248594,0.220947,0.0300677,0.971967,0.616853,0.664473,0.609734,0.980097,0.746025,0.630842,0.502578,0.73153,0.747164,0.399681,0.786581,0.697599,0.119602,0.458084,0.542578,0.54077,0.975695,0.372158,0.561875,0.699965,0.824818,0.626505,0.28447,0.988119,0.14763,0.515126,0.603228,0.72256,0.587059,0.313967,0.29176,0.621943,0.484286,0.747596,0.0582859,0.77335,0.799643,0.115168,0.979338,0.996835,0.717356,0.00214189,0.7488,0.339808,0.335736,0.61009,0.221414,0.424878,0.0105283,0.919049,0.8355,0.169779,0.815931,0.327242,0.198636,0.654783,0.319989,0.316738,0.24261,0.602217,0.276867,0.541665,0.591549,0.36462,0.68582,0.953677,0.411247,0.264527,0.880184,0.487029,0.608741,0.775521,0.520482,0.959592,0.350124,0.713857,0.891923,0.776968,0.666049,0.815243,0.0382583,0.844219,0.740796,0.687357,0.379582,0.678491,0.295399,0.186134,0.0337605,0.105548,0.19883,0.852351,0.270619,0.13387,0.039957,0.597649,0.647123,0.302091,0.65347,0.405828,0.500588,0.856347,0.632894,0.255829,0.563132,0.881187,0.133517,0.978658,0.964091,0.56282,0.255928,0.00867039,0.939309,0.513915,0.245619,0.370819,0.949895,0.904136,0.233927,0.915922,0.715141,0.028484,0.385143,0.580327,0.848969,0.754445,0.723484,0.407478,0.222175,0.828763,0.631323,0.852862,0.505455,0.237371,0.153629,0.131223,0.919177,0.676735,0.828707,0.910179,0.114889,0.647182,0.205607,0.990256,0.462619,0.41899,0.198797,0.418926,0.353319,0.256757,0.991486,0.223706,0.0878363,0.347188,0.149517,0.929488,0.0971168,0.125115,0.0732794,0.475123,0.432534,0.286744,0.368856,0.952575,0.964748,0.838209,0.868302,0.63909,0.789499,0.343178,0.0742637,0.340435,0.661087,0.611777,0.304424,0.12084,0.197839,0.605337,0.139121,0.428171,0.622122,0.450425,0.197741,0.0398051,0.355434,0.31543,0.947178,0.1469,0.353434,0.744533,0.749724,0.14472,0.867654,0.645279,0.714693,0.145047,0.789201,0.0257704,0.7711,0.716373,0.604212,0.789307,0.455005,0.369545,0.385283,0.483883,0.794586,0.175889,0.0178828,0.163848,0.990162,0.874898,0.8617,0.219543,0.610674,0.501462,0.960422,0.0584733,0.195762,0.509146,0.864334,0.392619,0.141157,0.823559,0.445589,0.623654,0.903812,0.197922,0.692244,0.784687,0.330493,0.601952,0.913081,0.196652,0.124821,0.291223,0.484383,0.887827,0.968603,0.867658,0.24382,0.431654,0.652074,0.961073,0.862423,0.686927,0.163934,0.882099,0.327688,0.772021,0.0816835,0.0672175,0.081637,0.128223,0.782193,0.949643,0.655692,0.865144,0.414875,0.918791,0.306137,0.406,0.297091,0.551368,0.949252,0.564892,0.442735,0.815797,0.496398,0.451781,0.264205,0.395068,0.129622,0.647045,0.240253,0.127275,0.389618,0.0761164,0.948251,0.694931,0.424022,0.887453,0.170658,0.587424,0.784797,0.0770053,0.353114,0.362127,0.625562,0.546551,0.325453,0.458557,0.256486,0.85439,0.137712,0.11736,0.296342,0.818463,0.573896,0.446328,0.190237,0.491203,0.289453,0.60551,0.228836,0.961337,0.74017,0.325154,0.154956,0.0141374,0.764671,0.315965,0.245179,0.642736,0.249965,0.425294,0.00963467,0.427588,0.126351,0.550167,0.384033,0.266129,0.181454,0.0766001,0.807026,0.262176,0.849903,0.115714,0.852848,0.400823,0.498738,0.061913,0.203971,0.947874,0.370717,0.924341,0.226043,0.910472,0.132673,0.089962,0.317566,0.0984857,0.224199,0.523124,0.791185,0.979936,0.612521,0.370063,0.915208,0.418889,0.313463,0.093145,0.955571,0.28918,0.353929,0.195288,0.975282,0.487901,0.649719,0.708515,0.905785,0.0662976,0.0853943,0.632025,0.260812,0.0188109,0.637429,0.111835,0.757159,0.12126,0.795639,0.1075,0.847403,0.884505,0.407682,0.888812,0.967064,0.0725818,0.590358,0.336984,0.966711,0.530851,0.554891,0.361529,0.136212,0.939319,0.609454,0.271052,0.963825,0.910564,0.826687,0.809307,0.316512,0.695619,0.410542,0.902737,0.357788,0.582721,0.511194,0.80713,0.232603,0.38325,0.830082,0.205773,0.24906,0.135565,0.885957,0.426315,0.220034,0.667851,0.344961,0.355613,0.146781,0.61653,0.0512029,0.72187,0.476759,0.431503,0.151668,0.94039,0.137187,0.988139,0.303753,0.682291,0.0571907,0.417171,0.54194,0.322356,0.660349,0.528159,0.183681,0.265755,0.0801644,0.466022,0.947797,0.905988,0.023207,0.129622,0.201093,0.277746,0.380793,0.465408,0.251388,0.455628,0.544387,0.729175,0.0917454,0.338109,0.592617,0.0969408,0.300077,0.696051,0.759845,0.827368,0.192188,0.630594,0.269976,0.667965,0.551706,0.703133,0.227278,0.168742,0.489815,0.0513931,0.256357,0.695265,0.300352,0.859826,0.00581944,0.51344,0.340391,0.922287,0.00522178,0.344446,0.323802,0.965648,0.619398,0.104955,0.293876,0.204077,0.290972,0.70487,0.343789,0.824335,0.0741842,0.294125,0.0794654,0.136956,0.699597,0.74794,0.0613228,0.747205,0.304805,0.453006,0.277834,0.377316,0.588875,0.28353,0.967814,0.714707,0.825425,0.987543,0.937579,0.688393,0.611207,0.123197,0.601775,0.741391,0.632152,0.436455,0.971906,0.746648,0.354136,0.244906,0.614551,0.283127,0.416815,0.559626,0.853881,0.139905,0.873113,0.248001,0.955509,0.863212,0.0724663,0.540146,0.981831,0.844544,0.763303,0.992008,0.672194,0.693011,0.0858988,0.725548,0.125379,0.258074,0.194885,0.343277,0.362621,0.173661,0.965529,0.0127094,0.385552,0.0487979,0.7634,0.906187,0.733091,0.870639,0.833786,0.83176,0.899095,0.947443,0.889485,0.858143,0.897257,0.699964,0.68257,0.827598,0.89412,0.34258,0.490438,0.0841724,0.104397,0.410097,0.645619,0.423652,0.866876,0.3397,0.178515,0.609641,0.642312,0.860153,0.507247,0.30826,0.148769,0.250717,0.473784,0.0876443,0.204951,0.00710684,0.266297,0.665851,0.955451,0.681732,0.954668,0.291322,0.779586,0.208288,0.243297,0.814995,0.432482,0.338276,0.981297,0.196992,0.103467,0.12293,0.290765,0.13719,0.558877,0.031679,0.164851,0.788076,0.648656,0.209727,0.0611809,0.354571,0.0245322,0.496701,0.414683,0.936222,0.931523,0.167623,0.0734495,0.560871,0.916615,0.332719,0.915702,0.319889,0.216769,0.61541,0.0238729,0.939406,0.607388,0.991566,0.905972,0.873596,0.556138,0.849778,0.636198,0.20121,0.48073,0.732947,0.357097,0.234926,0.912942,0.16722,0.705737,0.595944,0.999089,0.877086,0.46454,0.669115,0.548186,0.255473,0.605299,0.242436,0.355665,0.4899,0.0534438,0.867207,0.79959,0.700774,0.916615,0.266728,0.258152,0.571837,0.708642,0.972019,0.360205,0.869877,0.591466,0.664849,0.387244,0.573807,0.618479,0.931099,0.609106,0.631828,0.471897,0.653612,0.431,0.377898,0.911373,0.350253,0.615178,0.532742,0.544858,0.986546,0.816373,0.581211,0.174223,0.865525,0.27242,0.483856,0.408504,0.973964,0.450134,0.313172,0.226078,0.966618,0.17011,0.0495146,0.135519,0.790586,0.291286,0.543259,0.990294,0.391493,0.405193,0.0370517,0.291116,0.580998,0.687541,0.355582,0.463765,0.334666,0.994193,0.850979,0.0452677,0.356059,0.417614,0.0206196,0.728575,0.224874,0.00997698,0.286409,0.533275,0.0054515,0.921034,0.981629,0.044893,0.584156,0.984613,0.952537,0.385747,0.792636,0.478651,0.0528683,0.871131,0.0390225,0.508186,0.648605,0.248825,0.724474,0.170587,0.871946,0.522439,0.417311,0.320302,0.852986,0.847425,0.399922,0.539015,0.627094,0.966778,0.183416,0.690745,0.678737,0.430895,0.836767,0.0124736,0.185728,0.522308,0.483748,0.25893,0.890101,0.886473,0.639122,0.476983,0.671851,0.516549,0.9721,0.867923,0.686263,0.210244,0.0142176,0.199389,0.770306,0.703399,0.328722,0.119799,0.147277,0.176266,0.909839,0.544993,0.413592,0.0749693,0.866953,0.668186,0.999894,0.344786,0.880702,0.621328,0.570436,0.620658,0.153523,0.472349,0.843488,0.684142,0.144928,0.884455,0.802027,0.296105,0.428479,0.29999,0.662136,0.0373751,0.977306,0.799157,0.578392,0.509361,0.299804,0.963152,0.238657,0.438898,0.619945,0.208007,0.0426337,0.0346145,0.659404,0.723145,0.608242,0.361612,0.238527,0.0911541,0.780409,0.323357,0.195837,0.434883,0.826602,0.900395,0.475853,0.320274,0.600044,0.167058,0.230795,0.849526,0.835718,0.42726,0.415991,0.531828,0.815221,0.1522,0.611687,0.257773,0.123303,0.184073,0.457899,0.964436,0.493621,0.159671,0.747803,0.905966,0.151914,0.431027,0.94582,0.304379,0.432931,0.213039,0.996321,0.833698,0.314415,0.414409,0.104875,0.0996047,0.259764,0.458345,0.355546,0.253729,0.835795,0.0560455,0.216371,0.322766,0.770673,0.43206,0.620901,0.708273,0.948304,0.343148,0.102332,0.900828,0.85568,0.636244,0.998948,0.0565705,0.55433,0.92463,0.818893,0.808087,0.318925,0.210515,0.828838,0.870529,0.0526392,0.555257,0.824807,0.340464,0.952614,0.161034,0.788226,0.0729061,0.105277,0.814594,0.362821,0.893863,0.0532672,0.639834,0.825548,0.705119,0.644289,0.286283,0.475254,0.847613,0.578467,0.789533,0.511747,0.434143,0.749832,0.687816,0.570957,0.523405,0.836334,0.700525,0.482282,0.274226,0.27724,0.0832008,0.567565,0.920423,0.652961,0.93069,0.624121,0.91271,0.42572,0.797881,0.235427,0.0418544,0.877531,0.624808,0.406328,0.875344,0.372402,0.611534,0.254948,0.481334,0.432976,0.227112,0.383732,0.764762,0.462297,0.666549,0.780333,0.334582,0.67875,0.355248,0.86115,0.769939,0.481645,0.911033,0.38734,|0.813541,0.852133,0.912774,0.503351,0.537116,0.236289,0.0683975,0.232934,0.480219,0.919323,0.665948,0.302549,0.537994,0.847014,0.161968,0.170651,0.63603,0.0854545,0.454776,0.267169,0.577287,0.175113,0.351483,0.98764,0.742392,0.405752,0.498385,0.990029,0.436672,0.568137,0.595835,0.815076,0.188376,0.590245,0.911305,0.119727,0.510891,0.491401,0.435708,0.642464,0.555058,0.383672,0.598704,0.969294,0.116563,0.524627,0.234309,0.727988,0.655696,0.496125,0.00785172,0.2643,0.271255,0.933744,0.551562,0.898152,0.614476,0.218626,0.38716,0.652297,0.790162,0.930975,0.422124,0.884401,0.179342,0.443783,0.338101,0.23052,0.813632,0.661777,0.168847,0.902015,0.838263,0.478638,0.895933,0.0813901,0.780849,0.206499,0.221402,0.615909,0.706107,0.342359,0.0818805,0.0373617,0.534784,0.884083,0.133345,0.0585471,0.871742,0.473566,0.91169,0.409738,0.482152,0.138345,0.307926,0.0170738,0.617658,0.513755,0.273973,0.876491,0.266598,0.880099,0.812716,0.076416,0.710372,0.509192,0.126232,0.449087,0.155035,0.494983,0.0390944,0.711443,0.924198,0.835227,0.447983,0.426243,0.473094,0.416483,0.0869241,0.682654,0.454704,0.682531,0.741525,0.624711,0.966347,0.973203,0.16155,0.374253,0.0649197,0.688551,0.69827,0.352889,0.903877,0.556461,0.0808053,0.861361,0.325562,0.238803,0.636757,0.00728714,0.320503,0.34108,0.591233,0.360429,0.349934,0.301492,0.0164636,0.119401,0.273926,0.585741,0.758053,0.613211,0.946073,0.558667,0.382667,0.561869,0.872245,0.69392,0.433433,0.55403,0.63891,0.309851,0.337913,0.854129,0.6712,0.0061658,0.630036,0.135375,0.00138485,0.149742,0.0741622,0.449567,0.532527,0.0462844,0.427458,0.0991516,0.222099,0.532536,0.0687692,0.89966,0.998414,0.788205,0.269469,0.430192,0.69081,0.149218,0.200585,0.314251,0.600745,0.910485,0.54788,0.35887,0.660932,0.729004,0.90612,0.981977,0.0218445,0.530521,0.15017,0.191098,0.275272,0.239646,0.656126,0.232168,0.835034,0.482274,0.922251,0.602226,0.436708,0.259059,0.421532,0.827783,0.930308,0.376989,0.384938,0.00330877,0.239269,0.9833,0.512498,0.379736,0.139354,0.288501,0.812013,0.844408,0.605793,0.689275,0.986747,0.101022,0.871299,0.259663,0.791771,0.850723,0.234721,0.832788,0.847538,0.565533,0.140787,0.800015,0.791251,0.956084,0.561222,0.42543,0.109548,0.0371101,0.221993,0.854969,0.665389,0.323014,0.504038,0.402281,0.0618088,0.543006,0.850942,0.0153478,0.637309,0.580103,0.841094,0.214843,0.633584,0.620749,0.407568,0.881896,0.199202,0.530514,0.583009,0.126624,0.00232834,0.515499,0.541212,0.836591,0.620307,0.0677851,0.104927,0.912663,0.905931,0.859512,0.932169,0.119192,0.120709,0.158175,0.0547137,0.282905,0.777673,0.401746,0.879925,0.133257,0.569919,0.398333,0.647694,0.404578,0.890217,0.835141,0.0460898,0.781039,0.804998,0.145302,0.889151,0.443585,0.334077,0.262518,0.993546,0.740434,0.900777,0.764025,0.0177969,0.322104,0.544746,0.476347,0.512716,0.628577,0.398335,0.465015,0.45478,0.260569,0.743349,0.0661728,0.473883,0.725736,0.394894,0.206878,0.604064,0.930355,0.0510492,0.698445,0.676611,0.769407,0.0902918,0.794802,0.633202,0.199555,0.0184683,0.619365,0.828169,0.414111,0.916738,0.566521,0.591658,0.0822318,0.139722,0.571945,0.210555,0.973439,0.641916,0.575315,0.115802,0.571237,0.804177,0.255613,0.111396,0.775179,0.831846,0.529618,0.692091,0.388826,0.0314056,0.96559,0.826301,0.979967,0.569578,0.986023,0.0485916,0.904706,0.622875,0.0315721,0.582139,0.90579,0.328711,0.267486,0.847203,0.196465,0.0706155,0.529567,0.891211,0.332543,0.504721,0.303858,0.489034,0.621085,0.1477,0.434519,0.344006,0.709831,0.0628106,0.788263,0.640024,0.554917,0.128711,0.659811,0.800289,0.506888,0.203775,0.997943,0.213769,0.533651,0.10395,0.00217849,0.0118419,0.507977,0.0670692,0.394451,0.209911,0.355302,0.656025,0.708282,0.0672256,0.234052,0.712486,0.867259,0.868875,0.320829,0.107593,0.687531,0.322163,0.921766,0.36123,0.232895,0.915495,0.142331,0.386707,0.735678,0.420577,0.699654,0.943623,0.510246,0.50033,0.799588,0.777157,0.747236,0.305051,0.762873,0.266538,0.380416,0.568652,0.215673,0.156354,0.751284,0.759358,0.880338,0.667074,0.596891,0.607001,0.157074,0.941549,0.251449,0.427852,0.961568,0.801051,0.971111,0.814187,0.498516,0.328914,0.560009,0.407937,0.285148,0.760983,0.132409,0.900234,0.170561,0.739494,0.688446,0.445516,0.00695109,0.58244,0.623106,0.986079,0.241849,0.275179,0.0201898,0.474304,0.768748,0.828012,0.438346,0.60669,0.859278,0.300659,0.898113,0.381611,0.187481,0.0778534,0.276092,0.949211,0.545146,0.806553,0.263031,0.505375,0.442557,0.418807,0.0325816,0.463207,0.415,0.631736,0.909969,0.341304,0.883904,0.392148,0.736996,0.603256,0.0257975,0.309592,0.347693,0.361344,0.386579,0.2534,0.681725,0.592583,0.227987,0.831405,0.39685,0.272369,0.798603,0.640555,0.142671,0.73432,0.755265,0.393053,0.0743251,0.353804,0.306411,0.0674881,0.0870519,0.594198,0.664329,0.487128,0.88034,0.360664,0.300372,0.817406,0.711966,0.712952,0.507866,0.607788,0.682762,0.014109,0.663023,0.372029,0.00213158,0.775326,0.7351,0.330077,0.406814,0.674854,0.70252,0.462323,0.263,0.85208,0.7756,0.320495,0.209546,0.0737114,0.546438,0.274299,0.728012,0.041474,0.189336,0.691169,0.852618,0.446071,0.106358,0.262221,0.163286,0.545462,0.851501,0.893164,0.267562,0.315771,0.648589,0.824713,0.566459,0.0899666,0.765424,0.73049,0.879958,0.414319,0.4887,0.0468068,0.854369,0.243754,0.278318,0.957604,0.543638,0.386608,0.257583,0.844643,0.74834,0.206166,0.959457,0.483477,0.601492,0.0791674,0.235076,0.436736,0.691918,0.300103,0.00383854,0.226338,0.42306,0.92046,0.247917,0.591593,0.843053,0.316671,0.177191,0.721535,0.222446,0.252219,0.921301,0.803054,0.919732,0.75155,0.642747,0.72883,0.751392,0.113071,0.504626,0.435655,0.123516,0.626308,0.291901,0.499294,0.612965,0.218023,0.491012,0.320557,0.769404,0.357814,0.0352094,0.558493,0.969473,0.194293,0.211799,0.0350705,0.302792,0.199105,0.419405,0.668843,0.441861,0.962746,0.990814,0.859957,0.137211,0.343774,0.0265044,0.401349,0.0445115,0.369383,0.764983,0.357552,0.0817974,0.657198,0.87506,0.597397,0.360691,0.000852585,0.961711,0.961474,0.616817,0.37878,0.0708641,0.97457,0.559891,0.653123,0.398184,0.671737,0.884427,0.000823557,0.121374,0.541989,0.42138,0.0838705,0.659178,0.308805,0.921366,0.442369,0.978483,0.308621,0.510226,0.542928,0.557515,0.904239,0.477285,0.610144,0.628779,0.826328,0.34379,0.952385,0.56103,0.266676,0.0515064,0.701164,0.00206518,0.555709,0.240598,0.580016,0.242249,0.94851,0.359473,0.583249,0.945836,0.636361,0.567982,0.953331,0.0918298,0.528453,0.84759,0.187813,0.0810476,0.032019,0.724574,0.633263,0.733343,0.153946,0.673899,0.321464,0.548782,0.931721,0.205195,0.420724,0.0579325,0.877435,0.871774,0.646921,0.325166,0.968928,0.159323,0.331699,0.0363373,0.370294,0.643819,0.401788,0.402242,0.123229,0.112288,0.0587983,0.0823287,0.732244,0.112291,0.0126206,0.831647,0.0890237,0.723226,0.504984,0.222338,0.598518,0.736075,0.122901,0.760714,0.655668,0.164765,0.234909,0.780664,0.662855,0.0719538,0.85531,0.293257,0.182816,0.468407,0.640836,0.224254,0.44176,0.415613,0.231843,0.336757,0.799747,0.619462,0.147406,0.842019,0.376924,0.995476,0.296921,0.656234,0.742809,0.660425,0.507179,0.930245,0.533011,0.0594145,0.455143,0.145843,0.526346,0.059256,0.733867,0.129739,0.565555,0.830849,0.654485,0.169641,0.190296,0.7084,0.319062,0.556986,0.320425,0.369678,0.235679,0.564569,0.566767,0.5042,0.88504,0.944642,0.616669,0.475623,0.0735781,0.615841,0.51066,0.716404,0.156638,0.979789,0.821781,0.256888,0.330895,0.460532,0.815208,0.587848,0.293409,0.823528,0.520247,0.312142,0.340334,0.0261657,0.204937,0.228782,0.596971,0.74844,0.246309,0.798937,0.8883,0.564644,0.180088,0.161135,0.978907,0.207598,0.747528,0.165292,0.381256,0.0908243,0.303323,0.378971,0.77645,0.640326,0.378857,0.403314,0.0606531,0.777565,0.662971,0.186811,0.313408,0.750828,0.789097,0.238422,0.0725861,0.0205063,0.41757,0.232177,0.323276,0.0614172,0.0436912,0.456947,0.921669,0.734368,0.217392,0.40174,0.631984,0.416385,0.30572,0.560812,0.83842,0.354522,0.876818,0.450187,0.996091,0.735219,0.828894,0.822833,0.0162471,0.559501,0.531489,0.149473,0.409372,0.491619,0.228685,0.0709636,0.0408024,0.743791,0.773495,0.146474,0.133493,0.605315,0.857378,0.545485,0.585942,0.235609,0.669172,0.358997,0.624854,0.386231,0.0270107,0.614549,0.479227,0.217998,0.558502,0.535681,0.0930499,0.594919,0.455772,0.79193,0.583293,0.877944,0.125457,0.701247,0.940444,0.245731,0.272006,0.557476,0.331373,0.0487971,0.39045,0.953058,0.422017,0.154306,0.459305,0.61039,0.799801,0.777881,0.940764,0.728627,0.299122,0.732784,0.902249,0.890568,0.883297,0.056757,0.580153,0.937052,0.225442,0.118149,0.657598,0.0402479,0.96974,0.665317,0.251649,0.222348,0.309598,0.878664,0.582284,0.74879,0.64622,0.279858,0.588145,0.330873,0.268664,0.55618,0.774067,0.59056,0.692434,0.879771,0.606786,0.421328,0.315877,0.936339,0.155072,0.435236,0.48908,0.314822,0.799033,0.263317,0.518704,0.558892,0.381815,0.720676,0.0721147,0.64177,0.653182,0.445759,0.00337994,0.867905,0.303004,0.992491,0.450861,0.11444,0.855194,0.849191,0.822459,0.566859,0.306368,0.43114,0.694216,0.417433,0.634232,0.0995731,0.910154,0.722408,0.175479,0.754443,0.552434,0.393889,0.375323,0.284715,0.865546,0.624223,0.275259,0.976683,|0.408746,0.00713903,0.0839524,0.432277,0.644306,0.641716,0.241456,0.919709,0.197295,0.24517,0.263332,0.0643331,0.605854,0.433242,0.628794,0.28705,0.482622,0.160651,0.875104,0.562842,0.302461,0.379707,0.847024,0.10741,0.798227,0.190049,0.136354,0.886907,0.207361,0.0450329,0.745088,0.243291,0.279323,0.254722,0.23053,0.17357,0.0639979,0.782439,0.202312,0.637495,0.466772,0.235378,0.739749,0.0242379,0.972042,0.740328,0.338486,0.747097,0.876207,0.286141,0.363143,0.2351,0.688328,0.409565,0.83231,0.57707,0.309124,0.106301,0.110132,0.718544,0.0701594,0.255017,0.50243,0.0472726,0.652111,0.925475,0.241546,0.938003,0.185807,0.643489,0.322517,0.890431,0.702375,0.551493,0.985265,0.937027,0.414738,0.347481,0.168835,0.76424,0.609602,0.313895,0.730119,0.990016,0.893829,0.978779,0.553191,0.10265,0.874294,0.0634397,0.111185,0.654932,0.735411,0.263696,0.645474,0.737986,0.943859,0.760085,0.869247,0.787957,0.649019,0.665191,0.873027,0.0826929,0.361668,0.696113,0.15892,0.634679,0.410907,0.228689,0.744893,0.943194,0.863197,0.346678,0.104431,0.759183,0.330281,0.783457,0.180383,0.774872,0.812616,0.130702,0.787013,0.743384,0.179001,0.0858936,0.911919,0.139007,0.0845599,0.415743,0.156714,0.476829,0.458257,0.398568,0.14462,0.076588,0.941944,0.0545447,0.138841,0.634371,0.732003,0.654383,0.942499,0.519654,0.64161,0.688969,0.174967,0.498919,0.147408,0.831112,0.260027,0.184241,0.518767,0.378332,0.863989,0.968453,0.525693,0.399705,0.0790703,0.796814,0.0735902,0.576266,0.552817,0.51668,0.220075,0.227315,0.644224,0.717447,0.127544,0.269162,0.698697,0.175125,0.610322,0.759163,0.740262,0.181078,0.500644,0.775001,0.764318,0.314092,0.0215223,0.882859,0.931446,0.321476,0.761635,0.979711,0.422077,0.436854,0.222842,0.990618,0.267624,0.128096,0.639597,0.0635328,0.271439,0.952335,0.895169,0.793138,0.220789,0.288815,0.163682,0.704482,0.137631,0.859105,0.134231,0.358377,0.227345,0.35656,0.248514,0.892977,0.124598,0.424336,0.385423,0.160798,0.877042,0.904048,0.16186,0.958879,0.169571,0.722502,0.535008,0.301876,0.788045,0.322357,0.683779,0.652671,0.188258,0.953268,0.799243,0.991953,0.810684,0.0327431,0.276527,0.326224,0.58577,0.550479,0.21624,0.302005,0.666016,0.485672,0.873294,0.831329,0.954328,0.749997,0.571375,0.830802,0.500947,0.233232,0.429561,0.697881,0.7658,0.714504,0.223697,0.570394,0.428385,0.117393,0.392201,0.638246,0.552113,0.676941,0.943825,0.0503113,0.0767328,0.188801,0.335334,0.0555803,0.938121,0.933866,0.146087,0.70254,0.180543,0.134292,0.568718,0.461502,0.243528,0.525935,0.455686,0.756378,0.650733,0.672975,0.989864,0.225027,0.332452,0.484868,0.795445,0.712146,0.357403,0.311089,0.0291959,0.326494,0.0345826,0.775942,0.737112,0.753352,0.72608,0.437718,0.220462,0.690824,0.227044,0.153303,0.557993,0.889039,0.795827,0.728026,0.994848,0.953698,0.920725,0.218304,0.284463,0.389671,0.0259262,0.33774,0.664411,0.949746,0.391426,0.921318,0.13131,0.198078,0.970229,0.937168,0.240409,0.701392,0.240611,0.776407,0.698293,0.886897,0.682226,0.848345,0.776569,0.494094,0.63645,0.624279,0.126195,0.548264,0.013572,0.352968,0.214379,0.574602,0.65553,0.123994,0.508675,0.225418,0.682986,0.0600992,0.0228549,0.960809,0.284724,0.827442,0.133045,0.90998,0.163536,0.673979,0.641051,0.943618,0.198829,0.0614254,0.532025,0.787603,0.863366,0.773483,0.255368,0.508621,0.28304,0.918489,0.842169,0.167681,0.674185,0.437867,0.714073,0.557332,0.380845,0.772836,0.830516,0.326143,0.60372,0.475485,0.909451,0.861122,0.776621,0.744459,0.643319,0.567138,0.778454,0.703717,0.63167,0.52962,0.341959,0.450486,0.586608,0.04477,0.893591,0.182503,0.625323,0.661189,0.301077,0.0938442,0.577616,0.963102,0.704813,0.525661,0.208199,0.704627,0.407432,0.851357,0.561038,0.958875,0.335288,0.195095,0.605911,0.0403472,0.951649,0.684024,0.0535501,0.770879,0.325045,0.153116,0.162572,0.240162,0.642699,0.852896,0.799401,0.302533,0.288195,0.880499,0.302692,0.759777,0.321286,0.572019,0.457315,0.542851,0.00979978,0.24287,0.473942,0.486561,0.114511,0.681528,0.20016,0.45253,0.917726,0.477721,0.117608,0.769997,0.311112,0.119362,0.189961,0.112201,0.997971,0.746019,0.49148,0.640313,0.878963,0.588609,0.143022,0.105852,0.501069,0.226807,0.372324,0.890174,0.739184,0.230961,0.93469,0.28597,0.161936,0.997021,0.35816,0.939799,0.453927,0.0405806,0.581098,0.906865,0.282403,0.12821,0.329676,0.037195,0.130283,0.210282,0.995671,0.721904,0.720374,0.489715,0.801981,0.143569,0.376504,0.813282,0.522832,0.34127,0.12377,0.216482,0.897026,0.606506,0.308642,0.596894,0.046733,0.423858,0.0178993,0.819648,0.197791,0.932758,0.449361,0.11058,0.428351,0.213406,0.770542,0.330243,0.200206,0.398657,0.472007,0.0741883,0.309775,0.671769,0.0766886,0.525875,0.538846,0.0918236,0.453655,0.387985,0.13038,0.0436433,0.443778,0.294096,0.333861,0.30685,0.587803,0.781796,0.445724,0.389471,0.65077,0.112667,0.0838016,0.893792,0.307875,0.760001,0.537091,0.710201,0.31719,0.65624,0.45104,0.806943,0.532218,0.456876,0.302225,0.390108,0.159583,0.944327,0.345082,0.344568,0.0898507,0.0632366,0.800471,0.248501,0.286632,0.549538,0.244575,0.753086,0.48518,0.892745,0.148233,0.163607,0.0135146,0.788054,0.432419,0.235419,0.663467,0.603871,0.851111,0.991621,0.13851,0.523392,0.158103,0.286199,0.505901,0.478207,0.900273,0.350091,0.777892,0.822051,0.573242,0.547973,0.317327,0.622374,0.0720057,0.746722,0.584256,0.401597,0.790904,0.874899,0.230094,0.973132,0.423846,0.367332,0.812116,0.490573,0.872306,0.299008,0.145744,0.942955,0.548348,0.296173,0.0627992,0.239209,0.276614,0.247995,0.820504,0.00895989,0.226446,0.108037,0.78688,0.722611,0.719988,0.0811592,0.635774,0.12614,0.661282,0.538922,0.502461,0.752358,0.537602,0.816817,0.355993,0.121457,0.943395,0.401844,0.366003,0.981677,0.28352,0.338001,0.538685,0.949938,0.57117,0.750499,0.256735,0.450848,0.918962,0.279428,0.981234,0.2647,0.75823,0.626903,0.615548,0.748493,0.601658,0.797632,0.548235,0.967968,0.947834,0.213472,0.350481,0.29583,0.778785,0.995926,0.561263,0.519416,0.197803,0.145241,0.851292,0.146887,0.881964,0.851665,0.0189006,0.299012,0.683011,0.323502,0.0135894,0.855423,0.653236,0.773237,0.337208,0.649435,0.0696527,0.207269,0.541183,0.699545,0.950267,0.127557,0.859374,0.989521,0.240658,0.897052,0.552197,0.76964,0.0269262,0.799725,0.497706,0.184764,0.215308,0.816009,0.633661,0.770332,0.772403,0.737848,0.830444,0.543951,0.954271,0.947326,0.696569,0.752683,0.328487,0.363534,0.265764,0.508824,0.437504,0.213946,0.10982,0.31509,0.376962,0.467123,0.628065,0.451831,0.110063,0.0137008,0.5908,0.0666916,0.215914,0.936377,0.943268,0.14099,0.186192,0.275157,0.383046,0.460835,0.56293,0.914571,0.309357,0.567046,0.869326,0.809559,0.0169618,0.254228,0.151315,0.7599,0.0508443,0.253195,0.101196,0.218896,0.992583,0.989237,0.958658,0.599618,0.355108,0.833211,0.140603,0.456185,0.214612,0.658899,0.158294,0.564375,0.0940949,0.37483,0.623118,0.0422913,0.502286,0.191812,0.195226,0.054902,0.0750305,0.966277,0.399571,0.05748,0.810791,0.417229,0.399034,0.231549,0.846162,0.616304,0.746565,0.139868,0.609963,0.68535,0.208915,0.868708,0.106557,0.0220223,0.700895,0.464406,0.262811,0.968155,0.385967,0.075471,0.117176,0.0919261,0.351897,0.124054,0.76536,0.0289102,0.354949,0.284302,0.26461,0.769587,0.10054,0.446777,0.369468,0.800254,0.325978,0.909736,0.219927,0.923398,0.769381,0.222489,0.0771891,0.41794,0.272536,0.680186,0.492791,0.786583,0.152152,0.178825,0.351397,0.701523,0.359587,0.813316,0.475559,0.815674,0.955507,0.729545,0.582434,0.185805,0.413679,0.0977634,0.218748,0.251826,0.996869,0.494588,0.172663,0.514652,0.652947,0.71431,0.477528,0.527372,0.283968,0.875703,0.367741,0.652214,0.296756,0.294817,0.200162,0.392488,0.819421,0.450454,0.603887,0.306002,0.78015,0.936084,0.122418,0.252614,0.134051,0.113913,0.407435,0.336244,0.99262,0.450968,0.00853127,0.728555,0.297414,0.113553,0.169492,0.668205,0.358745,0.963096,0.105329,0.725322,0.337423,0.718344,0.551063,0.27169,0.352304,0.332647,0.689678,0.538891,0.932788,0.107291,0.180735,0.96091,0.658909,0.694188,0.755225,0.820508,0.542053,0.0864905,0.557119,0.887705,0.757587,0.285565,0.72763,0.530137,0.166952,0.401057,0.500941,0.665659,0.997288,0.348211,0.16785,0.266004,0.802537,0.497222,0.757129,0.905398,0.376387,0.914675,0.0738012,0.768731,0.156371,0.0832886,0.0357268,0.400183,0.650954,0.178138,0.0624782,0.344896,0.187712,0.482548,0.448018,0.873589,0.407543,0.622904,0.552132,0.266163,0.983487,0.182631,0.460497,0.43358,0.828752,0.540643,0.278755,0.713638,0.313314,0.855104,0.295057,0.918136,0.839218,0.803005,0.175862,0.29107,0.425658,0.433974,0.149014,0.182934,0.259116,0.329447,0.34446,0.519914,0.684017,0.394486,0.27452,0.763941,0.921861,0.930906,0.640843,0.242302,0.370222,0.79982,0.360944,0.652315,0.432329,0.452064,0.0912936,0.447505,0.395106,0.677293,0.548646,0.27509,0.488706,0.522348,0.0339285,0.0597994,0.073979,0.491364,0.721535,0.292991,0.862935,0.0789285,0.599248,0.755875,0.645366,0.460683,0.921279,0.410798,0.86707,0.702169,0.633317,0.604098,0.669741,0.467443,0.791332,0.0802931,0.772166,0.713702,0.222661,0.772896,0.913685,0.0902197,0.712807,0.452679,0.180285,0.405998,0.608663,0.669228,0.549816,0.283393,0.253876,0.0969629,|0.956834,0.57236,0.689141,0.816601,0.373776,0.265014,0.152347,0.319299,0.0438517,0.0988511,0.391889,0.764073,0.720111,0.162632,0.131624,0.957697,0.337375,0.41627,0.931447,0.36416,0.425082,0.639468,0.908367,0.859679,0.653681,0.485041,0.285953,0.255534,0.418065,0.119344,0.81236,0.911204,0.92041,0.441832,0.950046,0.932309,0.983055,0.999847,0.013145,0.319046,0.210401,0.722816,0.283645,0.928155,0.27729,0.145838,0.921778,0.791196,0.68552,0.931748,0.795257,0.754618,0.600203,0.557252,0.352418,0.364757,0.938075,0.642472,0.105341,0.112118,0.178638,0.844343,0.493736,0.66677,0.452556,0.846498,0.0891258,0.972883,0.768778,0.0843238,0.336582,0.853252,0.64083,0.65763,0.554993,0.431615,0.21151,0.0318231,0.599356,0.792066,0.024566,0.8289,0.624331,0.408349,0.140535,0.267489,0.197876,0.10922,0.358079,0.719567,0.714432,0.0174797,0.587251,0.349445,0.83844,0.519278,0.24439,0.891563,0.207633,0.910653,0.979137,0.626304,0.619507,0.131516,0.0738773,0.990284,0.658853,0.561301,0.869256,0.308666,0.533443,0.849466,0.303484,0.748959,0.87698,0.506936,0.359419,0.408182,0.622659,0.890543,0.792381,0.990148,0.587768,0.389666,0.148091,0.258812,0.580727,0.334475,0.12389,0.113999,0.612592,0.609961,0.280818,0.917564,0.539537,0.935043,0.0672396,0.662677,0.71533,0.883921,0.0492799,0.095906,0.31344,0.43908,0.0758746,0.252659,0.0666586,0.525435,0.201275,0.819341,0.953065,0.596064,0.715073,0.77933,0.166695,0.524287,0.632435,0.333358,0.546231,0.642463,0.436466,0.204851,0.948902,0.713665,0.0775306,0.931107,0.831756,0.764659,0.98288,0.401806,0.428642,0.352742,0.226253,0.515804,0.764091,0.0278379,0.770456,0.347007,0.360122,0.725596,0.241075,0.0948497,0.82574,0.741246,0.509531,0.327484,0.970211,0.902212,0.785046,0.435162,0.219819,0.54411,0.167966,0.0760297,0.843834,0.0349697,0.100346,0.524911,0.491367,0.536284,0.686906,0.763059,0.60276,0.0648313,0.330505,0.479133,0.0944929,0.00627631,0.61561,0.128755,0.817765,0.594473,0.483867,0.226306,0.843036,0.443923,0.867097,0.650238,0.662746,0.155441,0.6697,0.3875,0.202126,0.820759,0.27704,0.133839,0.925307,0.303506,0.722282,0.562575,0.370194,0.671458,0.187012,0.999509,0.501679,0.238309,0.634811,0.467403,0.484357,0.652304,0.412217,0.0139951,0.976895,0.562129,0.190296,0.922595,0.810012,0.839942,0.153719,0.384251,0.110361,0.677539,0.49094,0.71343,0.309513,0.29876,0.481516,0.858224,0.741468,0.210116,0.157855,0.985664,0.838524,0.379666,0.780725,0.695776,0.325191,0.990605,0.973909,0.865158,0.835524,0.934603,0.355129,0.734357,0.354423,0.21873,0.203642,0.582171,0.452405,0.0668409,0.743882,0.503384,0.0447437,0.479548,0.606367,0.301855,0.189359,0.134232,0.718299,0.283018,0.85526,0.971624,0.200947,0.321618,0.149552,0.298962,0.887124,0.0575819,0.0561109,0.877998,0.0858276,0.944511,0.692929,0.156559,0.411359,0.0316563,0.0499276,0.789039,0.151463,0.969629,0.533124,0.25621,0.30734,0.994568,0.182549,0.972579,0.0706786,0.0440557,0.0219483,0.218543,0.221922,0.479318,0.910948,0.371966,0.442643,0.839989,0.163179,0.617725,0.362875,0.310992,0.123977,0.0486345,0.267453,0.861685,0.589005,0.50126,0.0373287,0.414106,0.744218,0.530812,0.71996,0.473685,0.273309,0.810489,0.779181,0.878167,0.230057,0.920394,0.63413,0.564167,0.0970144,0.864607,0.451468,0.322492,0.0344338,0.00444883,0.39315,0.274532,0.508961,0.647259,0.874412,0.107941,0.783688,0.726224,0.991962,0.0581585,0.394448,0.0519246,0.769644,0.005656,0.767807,0.757851,0.0668417,0.745785,0.667321,0.934268,0.900999,0.194626,0.706913,0.866958,0.102457,0.721968,0.235459,0.443437,0.118846,0.898408,0.00625521,0.049934,0.365048,0.243659,0.0430208,0.775797,0.625434,0.885868,0.862266,0.633966,0.374549,0.776254,0.387619,0.0862539,0.243296,0.63019,0.913506,0.0619391,0.164755,0.684163,0.513645,0.647654,0.306621,0.335864,0.120394,0.350976,0.223324,0.225518,0.0672134,0.391169,0.152348,0.422014,0.563352,0.366044,0.653084,0.0195982,0.854293,0.0282354,0.739102,0.598936,0.0334521,0.582148,0.0252633,0.670708,0.141492,0.670579,0.815507,0.655799,0.650607,0.469679,0.997909,0.726447,0.343641,0.709454,0.529462,0.953842,0.567458,0.803443,0.909192,0.0754792,0.686315,0.490294,0.952635,0.698158,0.472815,0.166408,0.504527,0.488981,0.466375,0.679698,0.290363,0.561653,0.870755,0.687068,0.461233,0.958228,0.863117,0.00607806,0.271426,0.922714,0.238629,0.871097,0.353039,0.681054,0.63736,0.480455,0.573757,0.960145,0.00437993,0.13764,0.362824,0.25203,0.268819,0.713896,0.636638,0.162372,0.104701,0.728891,0.000378609,0.650707,0.461117,0.0991192,0.433125,0.934696,0.346427,0.240628,0.733537,0.202098,0.708174,0.493216,0.7858,0.454205,0.351103,0.178965,0.615393,0.349566,0.869956,0.603996,0.365478,0.574822,0.785803,0.058135,0.882615,0.174272,0.20539,0.236841,0.74286,0.446451,0.598513,0.525602,0.546019,0.555615,0.401903,0.78902,0.489775,0.787526,0.248496,0.0548348,0.00658488,0.102248,0.795813,0.854976,0.478403,0.702402,0.47401,0.184687,0.306879,0.822642,0.775188,0.621841,0.164287,0.029842,0.341872,0.798171,0.517787,0.357846,0.310238,0.180368,0.9818,0.303008,0.701201,0.64872,0.218277,0.496282,0.766258,0.0178959,0.113163,0.932013,0.836865,0.5043,0.781926,0.151697,0.495905,0.131279,0.542331,0.164389,0.296857,0.622834,0.570376,0.248015,0.954936,0.932412,0.612784,0.0100183,0.47593,0.583135,0.262953,0.929426,0.89869,0.221292,0.639403,0.748895,0.370693,0.251506,0.391295,0.325974,0.98978,0.433872,0.516925,0.147253,0.871474,0.637599,0.708575,0.771634,0.632515,0.800522,0.0414333,0.724321,0.402613,0.074303,0.97511,0.905189,0.959042,0.249238,0.844132,0.168336,0.0636882,0.373769,0.375686,0.253521,0.344242,0.39149,0.910228,0.0945367,0.479223,0.101431,0.896849,0.836342,0.628323,0.059189,0.0556971,0.0445127,0.310548,0.61567,0.66266,0.831918,0.772136,0.565557,0.676661,0.619496,0.528097,0.183883,0.821594,0.504454,0.464482,0.14699,0.934335,0.269208,0.30628,0.31835,0.62701,0.45972,0.0902047,0.0385599,0.131903,0.910187,0.610223,0.926341,0.779596,0.330049,0.200242,0.226852,0.945048,0.911153,0.426533,0.639719,0.745698,0.0433019,0.162582,0.110776,0.447465,0.115252,0.344932,0.915516,0.407603,0.628422,0.724375,0.48897,0.0618157,0.63318,0.641635,0.24716,0.5649,0.0854142,0.860727,0.925826,0.833286,0.933653,0.822032,0.0709708,0.69109,0.48006,0.19738,0.0190095,0.505754,0.383668,0.549868,0.619218,0.148774,0.653689,0.532456,0.510133,0.9775,0.63807,0.833742,0.840841,0.336264,0.253961,0.680927,0.371015,0.406842,0.847357,0.315934,0.661848,0.562377,0.558777,0.429743,0.273583,0.765119,0.870941,0.567758,0.71257,0.0727161,0.456388,0.471331,0.677652,0.422437,0.674583,0.214434,0.385251,0.446951,0.388126,0.605385,0.130062,0.701588,0.621813,0.133664,0.878159,0.317683,0.960259,0.158693,0.274692,0.641561,0.938146,0.408581,0.312736,0.185627,0.661022,0.676793,0.598394,0.0524062,0.16291,0.578876,0.989468,0.224629,0.975905,0.655292,0.544499,0.729489,0.0290806,0.199608,0.321728,0.841616,0.107487,0.441631,0.70713,0.791104,0.97674,0.58749,0.28601,0.698981,0.195456,0.568626,0.358869,0.586276,0.303398,0.688695,0.484063,0.0473141,0.774206,0.106768,0.10008,0.936001,0.784376,0.646799,0.98108,0.490316,0.894709,0.872828,0.0718375,0.613476,0.261678,0.578572,0.691564,0.898859,0.0954612,0.833575,0.438982,0.611694,0.963057,0.0230162,0.0345145,0.510894,0.66941,0.666929,0.0870062,0.0471841,0.16035,0.838688,0.729156,0.00297558,0.924376,0.680764,0.455895,0.0979107,0.397633,0.0707524,0.858049,0.797524,0.804726,0.877002,0.186518,0.257827,0.00190085,0.813722,0.35535,0.472636,0.94695,0.637295,0.610394,0.926081,0.479876,0.468507,0.46469,0.272322,0.228092,0.970841,0.67969,0.662668,0.715866,0.0112891,0.317679,0.732267,0.360057,0.731583,0.290644,0.628993,0.344714,0.978534,0.617548,0.446611,0.537084,0.275972,0.520386,0.0923674,0.565444,0.832361,0.990982,0.958811,0.820947,0.883791,0.437373,0.907556,0.376607,0.397612,0.541897,0.712594,0.236095,0.243226,0.71478,0.786584,0.244426,0.865008,0.013687,0.691305,0.0197996,0.590862,0.23545,0.627362,0.0327198,0.720743,0.871751,0.215951,0.301119,0.257649,0.694322,0.678256,0.510627,0.587366,0.188995,0.0754521,0.99595,0.765937,0.181419,0.190618,0.6279,0.759558,0.684938,0.604655,0.476273,0.74248,0.742685,0.461006,0.691395,0.933962,0.346428,0.877323,0.488995,0.477023,0.154853,0.152762,0.750001,0.0693403,0.805798,0.952231,0.642165,0.819892,0.537079,0.829108,0.467017,0.721213,0.744355,0.166435,0.333527,0.268782,0.666235,0.498738,0.312114,0.0152204,0.592207,0.80301,0.903435,0.994346,0.069585,0.196173,0.879874,0.12286,0.439104,0.463206,0.74391,0.0694565,0.771834,0.181419,0.974964,0.304548,0.320943,0.0897425,0.858125,0.289247,0.13389,0.56369,0.274748,0.569502,0.317457,0.0171146,0.433028,0.758997,0.470308,0.898691,0.115722,0.548402,0.893639,0.950507,0.687524,0.248614,0.464073,0.999546,0.555093,0.781266,0.509798,0.966505,0.0394392,0.86425,0.248803,0.877745,0.771804,0.971812,0.111003,0.345048,0.675025,0.763532,0.754013,0.648796,0.945623,0.727437,0.821496,0.91752,0.819596,0.537633,0.596029,0.342253,0.761094,0.181417,0.377539,0.745005,0.0306501,0.547217,0.56901,0.95186,0.249121,0.662912,0.950265,0.534384,0.591403,0.357329,0.711493,0.31132,0.28961,0.91374,0.316887,0.67274,0.967868,0.863186,0.937908,|0.753011,0.398387,0.72897,0.470627,0.219346,0.386393,0.975425,0.372743,0.603755,0.6345,0.648704,0.559068,0.851125,0.212889,0.152111,0.208299,0.456501,0.748755,0.157885,0.911143,0.898177,0.985444,0.131539,0.0839362,0.44073,0.63402,0.499725,0.544149,0.620946,0.378602,0.0134082,0.833538,0.563298,0.837553,0.0699299,0.553338,0.0293797,0.733802,0.336777,0.25717,0.273223,0.895752,0.154194,0.861558,0.778993,0.160452,0.833403,0.719529,0.63026,0.214687,0.308671,0.559872,0.323444,0.0928408,0.0726721,0.629367,0.027267,0.800917,0.139208,0.724551,0.0247433,0.878908,0.154973,0.214127,0.365755,0.0900607,0.921357,0.833375,0.289934,0.469237,0.404544,0.399604,0.973523,0.856347,0.04808,0.0643696,0.415572,0.87388,0.670767,0.209332,0.293004,0.407546,0.722405,0.969579,0.594001,0.230941,0.127755,0.769747,0.273265,0.032824,0.310278,0.542581,0.0247399,0.580665,0.0785903,0.565791,0.469074,0.29632,0.379105,0.347353,0.155131,0.222827,0.74173,0.375621,0.771512,0.0637717,0.55864,0.333896,0.139559,0.709493,0.329184,0.248031,0.800671,0.0440934,0.0926046,0.630757,0.620748,0.636061,0.390934,0.44476,0.114371,0.896778,0.0656143,0.55556,0.364346,0.943969,0.279375,0.380789,0.249834,0.202589,0.665579,0.119284,0.646926,0.58474,0.418879,0.0535057,0.806057,0.652397,0.759207,0.439691,0.210147,0.287816,0.665422,0.561928,0.557096,0.693107,0.131459,0.76209,0.620122,0.922738,0.877629,0.902371,0.806003,0.25732,0.475332,0.242531,0.845216,0.0826135,0.399852,0.529766,0.192106,0.651101,0.804202,0.415012,0.678284,0.307529,0.403696,0.339064,0.306949,0.0595641,0.630294,0.303913,0.230042,0.361797,0.962057,0.0264133,0.111577,0.52106,0.280109,0.24152,0.136162,0.436582,0.030251,0.55474,0.637246,0.67369,0.773574,0.434124,0.319187,0.527586,0.754929,0.920876,0.328284,0.785874,0.618218,0.787592,0.521595,0.65526,0.232384,0.225551,0.33252,0.767974,0.542212,0.589727,0.256087,0.311683,0.80405,0.670732,0.71101,0.580367,0.179689,0.0464585,0.811581,0.456342,0.921584,0.613295,0.305998,0.120916,0.890346,0.503522,0.212292,0.774548,0.879514,0.263278,0.0903788,0.152921,0.462886,0.347864,0.157663,0.340579,0.513717,0.554916,0.753773,0.496039,0.642939,0.21854,0.224243,0.205336,0.478966,0.570842,0.704053,0.473131,0.287098,0.396159,0.639509,0.243193,0.305684,0.307419,0.342794,0.450268,0.339734,0.890849,0.984926,0.610574,0.00540453,0.299169,0.815888,0.799671,0.737285,0.295801,0.598039,0.155595,0.118749,0.243473,0.485576,0.836881,0.134769,0.852597,0.804642,0.677906,0.577165,0.251309,0.473818,0.81762,0.955547,0.567083,0.589039,0.800189,0.883782,0.348532,0.270252,0.714705,0.23609,0.98413,0.931304,0.73027,0.323369,0.28085,0.410589,0.205702,0.0621031,0.190271,0.283562,0.865546,0.798449,0.814712,0.305574,0.0138638,0.364868,0.177218,0.0759045,0.552175,0.703611,0.270083,0.815299,0.0267281,0.238394,0.701954,0.827713,0.476741,0.663913,0.285001,0.285448,0.498764,0.359987,0.641563,0.0492624,0.837489,0.363808,0.965267,0.42777,0.880321,0.857406,0.596348,0.0707689,0.443356,0.670838,0.764621,0.374974,0.26659,0.684825,0.73093,0.777151,0.906148,0.72546,0.544902,0.26603,0.727509,0.545197,0.987791,0.442849,0.769911,0.961422,0.11617,0.897159,0.8754,0.199078,0.915176,0.283426,0.654244,0.794356,0.503065,0.676205,0.907458,0.136899,0.082875,0.443947,0.53413,0.368537,0.361417,0.057797,0.954731,0.756809,0.791499,0.613422,0.191537,0.0451029,0.201064,0.0225054,0.837643,0.112342,0.690262,0.064074,0.964307,0.211169,0.631955,0.795611,0.280445,0.371262,0.339073,0.225453,0.742482,0.187693,0.23477,0.847753,0.751491,0.399729,0.625618,0.298439,0.924103,0.115869,0.188035,0.118796,0.259683,0.436084,0.855754,0.726679,0.387847,0.21404,0.500126,0.287027,0.659171,0.154077,0.0727746,0.811384,0.146781,0.324862,0.476335,0.939488,0.240344,0.642748,0.703784,0.118772,0.438849,0.814636,0.522979,0.177288,0.607575,0.268522,0.183278,0.579914,0.896838,0.615032,0.351454,0.142348,0.966715,0.843086,0.693914,0.152498,0.968192,0.96631,0.831703,0.801369,0.094262,0.721186,0.798302,0.444688,0.208518,0.269198,0.667971,0.47521,0.274989,0.569016,0.438905,0.071103,0.177922,0.411942,0.598467,0.4877,0.319509,0.319394,0.139248,0.528712,0.808954,0.997378,0.194012,0.524841,0.0225,0.275535,0.791769,0.604375,0.394425,0.849439,0.583522,0.953652,0.425544,0.199313,0.238971,0.781152,0.752127,0.324207,0.142009,0.907885,0.572959,0.835575,0.645865,0.85565,0.332791,0.351264,0.180916,0.954999,0.467602,0.190651,0.696198,0.627996,0.575668,0.797397,0.21215,0.201452,0.45977,0.141001,0.842637,0.760998,0.0406086,0.82568,0.162059,0.827879,0.887341,0.147107,0.313633,0.9406,0.278626,0.475286,0.297308,0.8273,0.855723,0.416012,0.863801,0.924482,0.119714,0.962546,0.477008,0.34868,0.98535,0.91891,0.319636,0.550198,0.472373,0.465088,0.946132,0.636369,0.741624,0.152899,0.311332,0.862599,0.598968,0.785306,0.534203,0.877443,0.196848,0.770981,0.509047,0.719572,0.130563,0.752029,0.520993,0.150217,0.111231,0.84838,0.797525,0.999025,0.485997,0.313748,0.111579,0.052488,0.946209,0.541992,0.337665,0.510506,0.574246,0.662967,0.574647,0.385425,0.768325,0.164509,0.844018,0.0716704,0.420091,0.266159,0.201204,0.207847,0.763174,0.800064,0.725011,0.734733,0.530217,0.887087,0.975425,0.760966,0.027467,0.383643,0.347992,0.221366,0.874212,0.0823873,0.0725412,0.66806,0.617972,0.188608,0.675014,0.784641,0.13278,0.0921713,0.843125,0.25019,0.130678,0.235834,0.486335,0.490977,0.854831,0.725056,0.591566,0.145589,0.0647592,0.126176,0.897696,0.612457,0.4484,0.964013,0.44995,0.100578,0.798028,0.016827,0.256846,0.463437,0.0251091,0.137287,0.775757,0.444842,0.482761,0.267531,0.882472,0.238548,0.629392,0.665348,0.595642,0.786884,0.554616,0.398378,0.421091,0.322975,0.857268,0.3822,0.953154,0.0960608,0.0429963,0.656608,0.818159,0.335344,0.303705,0.349615,0.813092,0.85821,0.65248,0.0787222,0.0604104,0.0183012,0.556578,0.278596,0.407137,0.897013,0.410831,0.629131,0.837054,0.74065,0.110916,0.995209,0.956867,0.783612,0.0414433,0.993546,0.207495,0.553597,0.515526,0.809383,0.650638,0.418795,0.784888,0.918833,0.0951396,0.804887,0.755024,0.402665,0.313565,0.115225,0.1449,0.684052,0.332229,0.0711873,0.766312,0.8332,0.966644,0.463533,0.074698,0.365719,0.356779,0.546583,0.705178,0.283431,0.748519,0.74638,0.538985,0.582754,0.860791,0.683078,0.848152,0.560276,0.102367,0.633692,0.551768,0.462663,0.418688,0.749054,0.0913673,0.362756,0.256534,0.558766,0.966361,0.96126,0.615186,0.38383,0.540439,0.962992,0.376905,0.836998,0.940272,0.534031,0.103743,0.301027,0.204504,0.571653,0.184921,0.305353,0.0158918,0.267444,0.080009,0.367455,0.4215,0.422096,0.319558,0.625559,0.606795,0.391947,0.532186,0.852568,0.963621,0.375929,0.266385,0.372796,0.587361,0.0974319,0.654912,0.540718,0.0694253,0.699279,0.853688,0.0195944,0.770767,0.787131,0.143512,0.603426,0.0485677,0.716767,0.370014,0.771583,0.923833,0.0109695,0.0409878,0.231152,0.682867,0.433817,0.0783568,0.891778,0.111844,0.929844,0.471353,0.0373867,0.0263888,0.417287,0.853705,0.193407,0.156738,0.872145,0.118876,0.984376,0.505072,0.308532,0.448684,0.361868,0.232645,0.204398,0.103294,0.0456619,0.892496,0.73991,0.399931,0.236747,0.284159,0.690455,0.144957,0.919566,0.655665,0.955892,0.0323309,0.481346,0.599721,0.602753,0.639845,0.0934137,0.730096,0.439312,0.653012,0.695841,0.44885,0.69203,0.878732,0.157524,0.679915,0.114886,0.270867,0.709211,0.165652,0.0268636,0.821631,0.823027,0.151186,0.765873,0.0840974,0.579237,0.488643,0.978595,0.894056,0.500415,0.0153044,0.620163,0.802188,0.675737,0.786001,0.728814,0.792882,0.58109,0.436854,0.879205,0.89751,0.310158,0.572522,0.218841,0.867308,0.990317,0.249505,0.778119,0.148119,0.412629,0.5487,0.0556809,0.428848,0.66217,0.811327,0.796813,0.967659,0.370051,0.760008,0.743067,0.056821,0.729861,0.130535,0.670842,0.738822,0.767761,0.828882,0.844791,0.890205,0.0767453,0.183535,0.392429,0.42998,0.245721,0.349438,0.668648,0.523596,0.365711,0.86144,0.0984602,0.114444,0.887852,0.671125,0.257685,0.0374109,0.2583,0.523,0.636151,0.450843,0.878248,0.998319,0.9182,0.822471,0.833854,0.0578306,0.201162,0.333928,0.85032,0.37505,0.375361,0.312604,0.973871,0.249821,0.911805,0.00479436,0.999314,0.160164,0.231864,0.0974293,0.633277,0.80732,0.614789,0.445794,0.578714,0.219711,0.498683,0.690123,0.933275,0.914927,0.588141,0.924829,0.114809,0.416722,0.558043,0.357319,0.275113,0.845862,0.206873,0.00705636,0.430548,0.199618,0.932256,0.76088,0.859316,0.713198,0.186691,0.654062,0.00612557,0.745187,0.73385,0.754897,0.890176,0.0419866,0.148994,0.826688,0.414036,0.0300607,0.33071,0.268887,0.645278,0.295078,0.609511,0.779561,0.699639,0.160346,0.00575036,0.703347,0.585506,0.913251,0.255213,0.409932,0.10527,0.443022,0.235731,0.647442,0.493691,0.979803,0.225196,0.482686,0.963954,0.556604,0.873812,0.658234,0.118414,0.448022,0.715562,0.585297,0.474777,0.862605,0.370537,0.118021,0.599982,0.52505,0.0185633,0.291031,0.23303,0.869553,0.423477,0.344081,0.123461,0.694718,0.705769,0.762203,0.741258,0.533441,0.961087,0.591602,0.82324,0.567178,0.354373,0.972889,0.682678,0.787441,0.460674,0.674062,0.496172,0.751916,0.867105,0.685918,0.37532,0.782398,0.897078,0.564658,0.635125,0.479742,0.323193,0.477649,|0.87997,0.638121,0.205741,0.518375,0.43274,0.670159,0.0345829,0.703863,0.566867,0.966841,0.728654,0.197437,0.768815,0.0092299,0.170849,0.990027,0.518783,0.88806,0.417034,0.235329,0.407874,0.8035,0.544759,0.848724,0.980093,0.100427,0.291437,0.214764,0.733425,0.543292,0.968899,0.955725,0.273263,0.455843,0.669362,0.103076,0.762352,0.433206,0.093077,0.695715,0.812559,0.755397,0.834939,0.901831,0.343102,0.715861,0.616381,0.216493,0.702197,0.092144,0.140883,0.147019,0.14445,0.770984,0.00994974,0.368385,0.543765,0.265908,0.22195,0.594922,0.221602,0.459561,0.196532,0.533638,0.501522,0.547199,0.275531,0.456919,0.959802,0.824473,0.189575,0.809605,0.332043,0.83926,0.854811,0.456931,0.00401014,0.703412,0.641773,0.112741,0.956569,0.283328,0.29794,0.344075,0.457584,0.773271,0.917039,0.195384,0.999968,0.139746,0.0113847,0.719126,0.552894,0.672435,0.284012,0.567812,0.341608,0.167715,0.26021,0.983289,0.357476,0.317383,0.116282,0.643742,0.68433,0.0434055,0.0381956,0.35054,0.647328,0.280846,0.854735,0.189978,0.891717,0.900634,0.137851,0.943465,0.57794,0.325422,0.259595,0.612426,0.32581,0.310851,0.226685,0.225288,0.76498,0.257403,0.229883,0.723962,0.0646086,0.878504,0.632678,0.875757,0.595474,0.139857,0.944229,0.214233,0.583486,0.862482,0.166162,0.634506,0.264908,0.538952,0.468328,0.271616,0.767245,0.963667,0.219984,0.0188894,0.00602418,0.437348,0.630073,0.600395,0.692828,0.187077,0.714601,0.291193,0.136114,0.0397381,0.0783969,0.0744702,0.695375,0.573801,0.691451,0.187439,0.574017,0.156482,0.194962,0.675931,0.91045,0.626228,0.744654,0.919325,0.697956,0.984944,0.166024,0.62748,0.183253,0.0757853,0.755851,0.885161,0.905321,0.356847,0.973923,0.740941,0.138377,0.266322,0.541565,0.307475,0.683355,0.0907813,0.90172,0.293989,0.230137,0.607174,0.587855,0.0381756,0.66612,0.689451,0.156741,0.0459678,0.0128875,0.0266389,0.131383,0.82376,0.860099,0.139558,0.80448,0.649974,0.485003,0.0761643,0.392361,0.747511,0.807412,0.51906,0.0632988,0.437484,0.5888,0.663185,0.434389,0.109562,0.168286,0.517841,0.283881,0.461787,0.397261,0.6951,0.592858,0.134092,0.565768,0.518682,0.361757,0.42909,0.488349,0.0689029,0.875225,0.403324,0.974974,0.318694,0.143295,0.141696,0.819028,0.951538,0.93918,0.610472,0.553726,0.334964,0.171448,0.400302,0.650128,0.506346,0.796488,0.679095,0.682412,0.30762,0.216007,0.983194,0.781751,0.32835,0.595087,0.272044,0.297435,0.296705,0.748432,0.564618,0.128906,0.655576,0.940554,0.513088,0.935312,0.525769,0.1077,0.255507,0.955801,0.937232,0.15466,0.929457,0.432947,0.95679,0.636566,0.177127,0.117683,0.154406,0.376344,0.392911,0.946037,0.979195,0.916796,0.72162,0.887445,0.185492,0.792217,0.601345,0.143855,0.317551,0.191071,0.818989,0.308427,0.369738,0.183071,0.913209,0.18238,0.742652,0.578911,0.247936,0.0869007,0.595959,0.391994,0.761608,0.107665,0.677232,0.198354,0.67982,0.517016,0.931941,0.536799,0.647345,0.825771,0.278778,0.0364928,0.0208228,0.946817,0.197836,0.132778,0.0721884,0.0880538,0.0215892,0.322474,0.616289,0.0229122,0.821518,0.893039,0.652175,0.876317,0.891502,0.326122,0.0162524,0.0137296,0.557004,0.909859,0.0439715,0.51276,0.491176,0.0021714,0.0205648,0.340891,0.645658,0.1916,0.640508,0.251737,0.0412623,0.0820633,0.354074,0.127455,0.98161,0.109776,0.788791,0.409173,0.86562,0.85897,0.580382,0.175274,0.45509,0.658201,0.494632,0.805769,0.184957,0.663795,0.0812279,0.597629,0.704681,0.182799,0.241374,0.453908,0.283079,0.888302,0.617209,0.0622404,0.942801,0.597059,0.920296,0.484638,0.850142,0.319719,0.140112,0.427189,0.724127,0.0987959,0.21194,0.148201,0.663513,0.435917,0.38104,0.80732,0.613654,0.624841,0.512976,0.935373,0.489087,0.89639,0.934377,0.987361,0.219953,0.131719,0.371024,0.276994,0.776535,0.566622,0.795885,0.897097,0.0100386,0.355234,0.242053,0.676737,0.991864,0.15107,0.805554,0.971581,0.636081,0.340907,0.686056,0.217481,0.55872,0.290012,0.149888,0.826639,0.853544,0.55601,0.178316,0.47155,0.0570396,0.822348,0.93189,0.554246,0.32918,0.68469,0.190696,0.904881,0.890248,0.629255,0.712017,0.971277,0.246129,0.945862,0.200455,0.0379257,0.732328,0.547102,0.834524,0.117699,0.530697,0.787617,0.192062,0.644179,0.118545,0.5005,0.923355,0.590853,0.752531,0.035258,0.588025,0.616477,0.231664,0.616213,0.899395,0.146334,0.306358,0.497664,0.398449,0.117726,0.870963,0.132041,0.615301,0.896887,0.479745,0.981768,0.245106,0.265538,0.52308,0.41611,0.722271,0.322668,0.325074,0.735457,0.286022,0.971231,0.805252,0.456805,0.151793,0.0725044,0.270024,0.318063,0.708203,0.0148669,0.0347954,0.681232,0.242288,0.973929,0.264808,0.367402,0.554004,0.964256,0.983366,0.160765,0.599783,0.669734,0.00710875,0.97738,0.621436,0.842414,0.212219,0.323993,0.044189,0.423634,0.559317,0.75083,0.153545,0.798524,0.982071,0.204859,0.544513,0.682251,0.406934,0.340678,0.514638,0.921584,0.693974,0.416246,0.535297,0.775008,0.685581,0.576502,0.0372226,0.957607,0.858484,0.750113,0.381358,0.0919928,0.680935,0.700984,0.0098021,0.652727,0.551676,0.0917323,0.277425,0.470157,0.13404,0.1238,0.479525,0.972864,0.872976,0.140635,0.234492,0.0333858,0.185126,0.0870826,0.481894,0.865862,0.923723,0.428404,0.169136,0.334782,0.191958,0.190155,0.770228,0.641737,0.490502,0.213256,0.683433,0.496547,0.440375,0.929722,0.853303,0.805103,0.165435,0.859215,0.380457,0.711963,0.890021,0.603573,0.0154981,0.939101,0.22962,0.323925,0.194403,0.335959,0.606056,0.345306,0.561064,0.930743,0.292069,0.965682,0.522259,0.744679,0.838841,0.904773,0.660226,0.453816,0.824393,0.518855,0.829172,0.772638,0.0270419,0.66797,0.316958,0.964948,0.197517,0.940978,0.545557,0.247483,0.736521,0.213838,0.149819,0.69154,0.932896,0.909143,0.850078,0.31641,0.0125997,0.677952,0.647551,0.945171,0.574982,0.9068,0.756792,0.237095,0.760735,0.891334,0.000986934,0.721605,0.49905,0.590301,0.0250509,0.429415,0.193517,0.355809,0.398909,0.138087,0.926428,0.813672,0.455095,0.267405,0.669863,0.506456,0.68455,0.0366852,0.482582,0.425581,0.771609,0.460948,0.93389,0.998775,0.292323,0.511505,0.875986,0.195195,0.428736,0.340818,0.776814,0.508392,0.713076,0.386193,0.926919,0.77916,0.513509,0.0134556,0.266871,0.905965,0.90743,0.575055,0.251002,0.0157731,0.135141,0.926417,0.80147,0.427431,0.277357,0.609873,0.612058,0.833967,0.829136,0.029026,0.774939,0.0837737,0.0644149,0.19179,0.536143,0.924893,0.429256,0.287159,0.756331,0.831791,0.125895,0.970155,0.503552,0.022312,0.840597,0.58363,0.836105,0.836877,0.630771,0.448495,0.0781695,0.40832,0.859797,0.0983775,0.846045,0.453385,0.263541,0.779788,0.835667,0.843191,0.0572969,0.894139,0.912012,0.00613374,0.343585,0.229185,0.863528,0.845235,0.614581,0.9807,0.536023,0.972876,0.365905,0.200151,0.541527,0.722004,0.675838,0.301357,0.794055,0.666901,0.552249,0.234349,0.56222,0.106947,0.889643,0.204005,0.244525,0.283565,0.951269,0.920914,0.605874,0.0385948,0.475025,0.252658,0.352717,0.588781,0.891196,0.680458,0.625367,0.290156,0.905698,0.148466,0.932142,0.529693,0.326951,0.363143,0.849047,0.291317,0.182737,0.629223,0.10804,0.0367416,0.326739,0.536889,0.81123,0.39746,0.151397,0.841987,0.291152,0.900151,0.870128,0.726783,0.375331,0.773527,0.937272,0.0371553,0.291007,0.615367,0.0404408,0.859793,0.919075,0.567173,0.662341,0.280253,0.414839,0.163151,0.106778,0.0373253,0.358659,0.894775,0.455598,0.0673174,0.587091,0.309555,0.9141,0.731902,0.530663,0.704628,0.760357,0.519754,0.46441,0.501473,0.596555,0.128939,0.199396,0.480632,0.472735,0.822908,0.72879,0.446483,0.417379,0.822933,0.410299,0.211877,0.948129,0.55987,0.420441,0.65046,0.806927,0.0412194,0.669829,0.846868,0.723504,0.685483,0.111075,0.451234,0.221809,0.281613,0.663847,0.566882,0.427034,0.786955,0.322597,0.897465,0.876749,0.211593,0.34221,0.957824,0.989023,0.591258,0.82875,0.593204,0.840698,0.0771277,0.200154,0.576493,0.654251,0.381822,0.756313,0.935144,0.95192,0.657511,0.453031,0.22442,0.0317207,0.410511,0.13796,0.89978,0.0970734,0.314923,0.366898,0.747029,0.199167,0.887232,0.197908,0.991652,0.813274,0.496023,0.35612,0.0508481,0.857049,0.317193,0.176711,0.266293,0.689291,0.679449,0.182598,0.182865,0.0804211,0.969683,0.0142695,0.178749,0.687307,0.861157,0.576681,0.684843,0.36118,0.212685,0.389355,0.0861571,0.82118,0.349051,0.109322,0.485005,0.390985,0.800962,0.471964,0.288811,0.896718,0.313634,0.504832,0.802939,0.122902,0.539468,0.270764,0.00072974,0.551404,0.219432,0.172419,0.816319,0.628067,0.154406,0.200549,0.552792,0.991275,0.0824306,0.885467,0.710198,0.384521,0.7019,0.553649,0.51534,0.726341,0.80712,0.3023,0.300041,0.274473,0.521726,0.917719,0.415138,0.618487,0.275266,0.502313,0.862989,0.481779,0.0611657,0.0389301,0.28791,0.0637926,0.384592,0.518956,0.31119,0.352337,0.811726,0.753531,0.6081,0.871493,0.201614,0.0752653,0.709528,0.885001,0.204504,0.659287,0.141189,0.511141,0.11126,0.895607,0.577609,0.414183,0.422502,0.405184,0.363745,0.207646,0.401227,0.728592,0.964741,0.907797,0.59619,0.378619,0.336974,0.683947,0.879578,0.867368,0.376667,0.994226,0.958877,0.567162,0.401098,0.924062,0.656138,0.850754,0.885317,0.163354,0.315913,0.650062,0.655028,0.741027,0.107053,0.8379,0.0923308,0.18669,0.291398,0.395923,0.791677,0.480421,0.294662,0.48402,0.708162,0.871377,|0.0842453,0.345053,0.46757,0.433359,0.317321,0.957773,0.886539,0.0927295,0.761098,0.755214,0.689279,0.778149,0.984267,0.132738,0.654168,0.188985,0.27345,0.379691,0.774724,0.672945,0.800155,0.605887,0.696655,0.739395,0.834588,0.99725,0.907205,0.494487,0.0493389,0.671986,0.833956,0.121051,0.563188,0.605253,0.514002,0.898674,0.112327,0.658751,0.908666,0.349071,0.844883,0.773522,0.980021,0.330497,0.234822,0.828671,0.663315,0.727027,0.394689,0.864551,0.539461,0.927798,0.539361,0.2446,0.391602,0.802375,0.345547,0.0929556,0.703555,0.284682,0.181467,0.535581,0.860792,0.0887555,0.205823,0.177941,0.724435,0.561483,0.822373,0.197538,0.122735,0.783939,0.403053,0.180835,0.499142,0.569477,0.0610142,0.421284,0.530586,0.898189,0.429035,0.923415,0.29608,0.526959,0.183468,0.0323632,0.117139,0.166321,0.635056,0.124002,0.147817,0.980779,0.44609,0.744481,0.930742,0.829083,0.990162,0.00292516,0.342322,0.582886,0.2701,0.388589,0.467226,0.516833,0.448361,0.734861,0.637829,0.41431,0.370223,0.498195,0.0601504,0.676866,0.21195,0.238865,0.157314,0.242096,0.544976,0.591433,0.795729,0.325086,0.368968,0.629669,0.473469,0.257177,0.997742,0.604378,0.633269,0.329369,0.893894,0.877809,0.28882,0.48024,0.994542,0.503362,0.720726,0.063369,0.362006,0.739717,0.383736,0.589105,0.248652,0.611392,0.744104,0.135831,0.0296184,0.388885,0.0856004,0.571894,0.00284517,0.468435,0.692376,0.400333,0.758161,0.732345,0.258404,0.141472,0.462857,0.169953,0.81633,0.0828157,0.919332,0.813029,0.821752,0.367283,0.220079,0.284583,0.644011,0.414332,0.870789,0.792331,0.912174,0.507402,0.899002,0.654862,0.588247,0.439548,0.579509,0.356352,0.20657,0.833709,0.210281,0.289746,0.303301,0.037475,0.973079,0.678566,0.433502,0.187312,0.607167,0.671708,0.274076,0.614299,0.851114,0.716993,0.0913368,0.0123838,0.477623,0.284936,0.968508,0.359196,0.130931,0.177356,0.614949,0.842728,0.258019,0.27756,0.167005,0.579774,0.0328429,0.104321,0.251003,0.818929,0.560339,0.240615,0.751962,0.520538,0.742682,0.747155,0.455791,0.744491,0.0734933,0.375489,0.963658,0.896689,0.0532708,0.99639,0.111345,0.890238,0.555123,0.00554025,0.416596,0.886042,0.121224,0.845946,0.625902,0.653068,0.710288,0.472493,0.805601,0.928587,0.106151,0.0420892,0.684914,0.546682,0.0507234,0.0346095,0.0277926,0.269696,0.727576,0.149426,0.759269,0.970202,0.734745,0.0846909,0.826954,0.764196,0.435286,0.0355302,0.783525,0.262403,0.364429,0.287156,0.48966,0.192491,0.481799,0.726543,0.11292,0.960881,0.160944,0.647347,0.847963,0.549541,0.412265,0.0111046,0.660195,0.658734,0.0226518,0.34472,0.524258,0.0517043,0.415454,0.891517,0.144543,0.48551,0.587502,0.58106,0.866993,0.321503,0.731813,0.291699,0.498731,0.117252,0.173016,0.0437318,0.247741,0.359571,0.125196,0.130043,0.257812,0.997403,0.150524,0.215839,0.190683,0.7191,0.219007,0.89245,0.509922,0.274036,0.243209,0.287659,0.642039,0.23575,0.49863,0.261151,0.15236,0.941234,0.234704,0.271861,0.0167493,0.577938,0.674186,0.112512,0.53889,0.467103,0.725851,0.717932,0.62866,0.946542,0.950644,0.226491,0.219025,0.628752,0.900804,0.344833,0.617201,0.57415,0.244824,0.736859,0.995038,0.910856,0.364328,0.538462,0.080743,0.535936,0.343539,0.795108,0.883852,0.103246,0.441524,0.674492,0.609551,0.0456427,0.283223,0.512545,0.100693,0.972311,0.639189,0.172402,0.108796,0.340028,0.461295,0.888795,0.434861,0.73834,0.622953,0.151925,0.101331,0.581942,0.394601,0.477448,0.630839,0.900833,0.392737,0.733117,0.353481,0.0341572,0.69103,0.474294,0.255327,0.206133,0.0220253,0.779799,0.424311,0.443075,0.427392,0.746615,0.523755,0.128168,0.746684,0.400303,0.311606,0.639834,0.214808,0.725463,0.927237,0.888761,0.445911,0.281262,0.431443,0.872038,0.644949,0.524169,0.0202089,0.48375,0.751366,0.83382,0.857424,0.253292,0.0390416,0.47551,0.0402315,0.843721,0.95281,0.418061,0.312039,0.307145,0.654389,0.814747,0.91425,0.398495,0.923124,0.369046,0.348155,0.0650951,0.0310547,0.761148,0.253805,0.227802,0.294214,0.345474,0.374467,0.795369,0.847394,0.793447,0.576318,0.953121,0.556673,0.269244,0.603528,0.0556937,0.328204,0.952975,0.687975,0.826877,0.911966,0.23095,0.727127,0.394621,0.219011,0.425774,0.509913,0.764027,0.845487,0.920518,0.803573,0.924925,0.945674,0.604576,0.778585,0.988561,0.877178,0.380781,0.945737,0.362441,0.0236644,0.581656,0.453579,0.111083,0.275791,0.94988,0.85247,0.149492,0.381687,0.619504,0.696362,0.225316,0.133265,0.017344,0.235449,0.645862,0.150391,0.405269,0.252421,0.756932,0.0641012,0.243039,0.985518,0.352719,0.503378,0.213134,0.837709,0.637784,0.832029,0.22372,0.701043,0.502212,0.548975,0.998774,0.285736,0.0620891,0.817747,0.651614,0.317111,0.403713,0.93143,0.662461,0.6449,0.750564,0.0279028,0.328015,0.308837,0.707431,0.467469,0.132375,0.821329,0.46705,0.27722,0.569986,0.0499279,0.525234,0.466378,0.637795,0.29753,0.67188,0.974794,0.683846,0.342232,0.620158,0.160563,0.81822,0.295204,0.0138425,0.327891,0.767141,0.941307,0.85367,0.102289,0.613203,0.319875,0.844106,0.263044,0.125581,0.683392,0.488138,0.871768,0.426527,0.672013,0.85693,0.0433056,0.0614083,0.34825,0.603039,0.277998,0.642916,0.501754,0.667472,0.642582,0.177805,0.260723,0.752268,0.265118,0.0974404,0.898022,0.566378,0.178898,0.0933079,0.889724,0.506504,0.798963,0.960465,0.625638,0.202747,0.8687,0.950856,0.665009,0.236908,0.385882,0.145739,0.488622,0.833478,0.0666164,0.181745,0.0964487,0.825371,0.993443,0.736964,0.88749,0.863131,0.566866,0.340221,0.942008,0.916845,0.216284,0.230701,0.190885,0.974194,0.146239,0.0425518,0.388095,0.723005,0.977571,0.663541,0.869425,0.0386222,0.638536,0.159606,0.571638,0.213261,0.50931,0.534969,0.143943,0.424096,0.582193,0.502495,0.71226,0.92159,0.322718,0.0923845,0.896114,0.779827,0.618127,0.215547,0.597076,0.816904,0.995284,0.689303,0.0341653,0.787848,0.395756,0.0904365,0.526681,0.495919,0.0563001,0.845976,0.175841,0.0669754,0.364264,0.273258,0.225103,0.0601098,0.933804,0.991655,0.786926,0.295612,0.0743777,0.742582,0.365882,0.0644185,0.045954,0.350685,0.364678,0.118804,0.483419,0.524641,0.453557,0.796493,0.888244,0.922022,0.215582,0.212536,0.496926,0.547422,0.611961,0.0188852,0.237889,0.338782,0.823693,0.0239403,0.757683,0.970779,0.406174,0.891291,0.688832,0.0276176,0.633318,0.327771,0.925852,0.651784,0.465146,0.883657,0.846759,0.348473,0.446948,0.666838,0.348963,0.85558,0.420387,0.124405,0.789923,0.62875,0.634628,0.938624,0.0669788,0.0439823,0.0248892,0.398348,0.531356,0.634233,0.402299,0.618509,0.939914,0.774625,0.874187,0.189493,0.366122,0.458165,0.808771,0.959901,0.00354576,0.505896,0.392144,0.1158,0.178815,0.387118,0.862666,0.547223,0.120107,0.676044,0.363558,0.794991,0.16461,0.446454,0.0398669,0.853911,0.977137,0.0725124,0.594041,0.799853,0.276065,0.310669,0.25119,0.0788835,0.99955,0.789585,0.111999,0.862552,0.616037,0.337536,0.551095,0.803832,0.414938,0.318276,0.579833,0.173785,0.456162,0.0185073,0.975679,0.0266672,0.534466,0.458421,0.481598,0.371419,0.6617,0.12943,0.556495,0.160226,0.079352,0.0582079,0.967533,0.624347,0.588111,0.482313,0.497563,0.97101,0.969509,0.356958,0.563156,0.660876,0.0536844,0.822817,0.777077,0.588807,0.813652,0.644705,0.210549,0.00674444,0.585178,0.541908,0.983363,0.994282,0.251222,0.364279,0.872675,0.997308,0.175485,0.948857,0.191707,0.0541233,0.514102,0.0334699,0.955196,0.22102,0.164076,0.936062,0.247981,0.429567,0.933187,0.131432,0.686628,0.863768,0.470802,0.101716,0.0899501,0.493045,0.971698,0.807153,0.726789,0.55281,0.69403,0.0645241,0.218016,0.444046,0.930875,0.508141,0.14651,0.72404,0.624512,0.566249,0.417316,0.0516642,0.300608,0.226304,0.377922,0.818881,0.682514,0.361938,0.311255,0.274981,0.241651,0.182925,0.68956,0.441561,0.384486,0.557778,0.556286,0.335025,0.641863,0.57916,0.816384,0.208153,0.872561,0.873042,0.382295,0.94107,0.264192,0.925426,0.219919,0.0748968,0.683101,0.230078,0.984759,0.673437,0.17221,0.117804,0.377593,0.00244498,0.0217889,0.534005,0.281252,0.965409,0.307188,0.0329955,0.875709,0.532879,0.90085,0.320238,0.732705,0.899987,0.456898,0.446251,0.722156,0.0528317,0.310214,0.981771,0.64823,0.191574,0.270009,0.665024,0.127054,0.855565,0.9008,0.958322,0.334581,0.819802,0.42373,0.977244,0.281693,0.520898,0.999636,0.504373,0.351533,0.438333,0.798612,0.800329,0.654472,0.744527,0.375715,0.470002,0.17667,0.92827,0.835626,0.787296,0.586828,0.184963,0.525296,0.55535,0.925711,0.424811,0.778939,0.977936,0.903106,0.75508,0.99126,0.651248,0.735444,0.870431,0.512184,0.879812,0.909199,0.575576,0.682888,0.132268,0.719657,0.683497,0.275254,0.664619,0.09051,0.375282,0.834939,0.590353,0.905241,0.66663,0.0203215,0.111977,0.138013,0.63032,0.904096,0.0489716,0.979624,0.85905,0.705574,0.899938,0.407138,0.714205,0.93999,0.00636458,0.41736,0.380095,0.8832,0.570813,0.763272,0.993883,0.392387,0.432514,0.247515,0.949356,0.28415,0.589503,0.0116726,0.205253,0.228116,0.388978,0.543906,0.433008,0.412319,0.661019,0.869195,0.792953,0.233065,0.83265,0.955838,0.427333,0.895861,0.782604,0.544196,0.737235,0.535803,0.366247,0.804291,0.081057,0.716189,0.771837,0.133808,0.415324,0.309347,0.266166,0.338288,0.797357,0.962375,0.0210744,0.0592195,0.91987,0.240692,0.816333,0.570348,0.722863,0.707062,0.976388,0.124682,0.327168,|0.160893,0.300261,0.0889865,0.354577,0.14073,0.388326,0.707803,0.282398,0.260011,0.408969,0.319246,0.339638,0.514563,0.600869,0.0362573,0.265586,0.904218,0.477325,0.223765,0.925616,0.567724,0.651177,0.660941,0.245393,0.82462,0.407835,0.112212,0.38349,0.00954652,0.0638934,0.732928,0.12778,0.912636,0.439422,0.744685,0.808721,0.00808197,0.747123,0.441063,0.644567,0.839812,0.852236,0.602252,0.404677,0.0784085,0.241239,0.64451,0.0667886,0.682169,0.914462,0.882132,0.759044,0.641906,0.533291,0.248285,0.0443972,0.8161,0.00922722,0.129307,0.395309,0.72585,0.421352,0.616779,0.392237,0.172095,0.0462686,0.0242529,0.639442,0.95164,0.319238,0.364355,0.492446,0.544824,0.111738,0.826818,0.444365,0.833293,0.158572,0.650485,0.218642,0.0551022,0.0616646,0.718571,0.849603,0.832168,0.992906,0.820566,0.810652,0.985666,0.87932,0.66927,0.601919,0.61252,0.676569,0.763615,0.731035,0.461956,0.823433,0.373363,0.771957,0.492856,0.837905,0.622506,0.188935,0.287597,0.958737,0.917824,0.233112,0.753048,0.0260019,0.644011,0.102153,0.374971,0.220413,0.45113,0.474412,0.425726,0.524273,0.0988662,0.76221,0.503233,0.897671,0.238128,0.549499,0.259002,0.291773,0.242881,0.696322,0.984817,0.0244959,0.228894,0.86574,0.602281,0.506193,0.618871,0.665028,0.40926,0.520136,0.549919,0.691321,0.444554,0.978669,0.11574,0.849154,0.395355,0.184782,0.639847,0.829579,0.726203,0.00412178,0.471797,0.474261,0.216631,0.778637,0.741608,0.0290874,0.167629,0.164141,0.699317,0.721629,0.157605,0.938517,0.323136,0.290463,0.529995,0.0646017,0.767345,0.787382,0.834433,0.95218,0.833968,0.353055,0.243572,0.612217,0.0351491,0.928878,0.832465,0.943973,0.742404,0.51369,0.356129,0.286948,0.395335,0.232478,0.359338,0.72755,0.230769,0.546981,0.861199,0.156807,0.0196044,0.514272,0.477756,0.713273,0.0468426,0.0649191,0.861051,0.478959,0.20524,0.518123,0.331867,0.791406,0.123747,0.638562,0.0994987,0.948556,0.439477,0.45699,0.840469,0.605944,0.981728,0.0597655,0.00499672,0.192985,0.594993,0.574159,0.447334,0.984637,0.924462,0.539155,0.0732593,0.0692696,0.719682,0.301714,0.609187,0.372993,0.722527,0.274973,0.329924,0.18128,0.973823,0.228063,0.188086,0.281394,0.885648,0.18607,0.20534,0.949744,0.85373,0.0154367,0.40111,0.481231,0.0509568,0.32747,0.752833,0.469349,0.48101,0.0503609,0.177936,0.877141,0.378619,0.172463,0.913046,0.753498,0.528931,0.665939,0.376089,0.0961604,0.999908,0.320669,0.426849,0.543301,0.367918,0.939417,0.436084,0.88062,0.619897,0.704812,0.296821,0.874928,0.346109,0.208808,0.00158,0.432884,0.232195,0.0640493,0.939545,0.948806,0.923732,0.0366081,0.87957,0.605852,0.200389,0.00762981,0.76144,0.751157,0.844895,0.992192,0.319829,0.593494,0.440473,0.968215,0.497638,0.822005,0.488555,0.621272,0.198928,0.28138,0.365224,0.257953,0.345808,0.792553,0.96893,0.199931,0.772776,0.515863,0.0856351,0.890357,0.370061,0.400186,0.523598,0.533656,0.568059,0.178628,0.258929,0.543832,0.0891366,0.793236,0.873809,0.697243,0.332326,0.540167,0.451311,0.237995,0.534732,0.979473,0.737023,0.211901,0.821269,0.438322,0.0212234,0.619741,0.282836,0.472966,0.296345,0.745374,0.600361,0.115814,0.851839,0.333645,0.647377,0.732052,0.985722,0.649558,0.0108564,0.226762,0.410498,0.293343,0.419812,0.0593812,0.519432,0.44419,0.722525,0.67353,0.973298,0.947674,0.504955,0.14969,0.947856,0.515758,0.988339,0.0482608,0.623392,0.899578,0.322113,0.815627,0.110587,0.463513,0.635851,0.55612,0.431153,0.233643,0.941966,0.110576,0.895695,0.62124,0.226786,0.3916,0.353346,0.88123,0.53217,0.457227,0.677459,0.823719,0.321918,0.853456,0.205604,0.266623,0.823843,0.751225,0.752283,0.125952,0.553241,0.162614,0.382403,0.808564,0.593994,0.919367,0.0498784,0.133285,0.26016,0.0480113,0.979869,0.615465,0.816446,0.400932,0.0836553,0.860023,0.570403,0.220942,0.0402534,0.1919,0.326621,0.72333,0.0124962,0.52043,0.438412,0.58212,0.898488,0.293712,0.570398,0.496886,0.748286,0.820906,0.734781,0.726969,0.150241,0.383348,0.14404,0.329825,0.832577,0.459761,0.881498,0.853525,0.647463,0.189052,0.171476,0.710407,0.155405,0.732806,0.727197,0.736484,0.577772,0.846735,0.736927,0.880853,0.82341,0.6267,0.711127,0.179359,0.912018,0.628079,0.923676,0.683083,0.424101,0.0408471,0.974968,0.0803602,0.154765,0.994588,0.625505,0.913125,0.786793,0.582936,0.264438,0.784921,0.505592,0.674384,0.194194,0.192372,0.518598,0.783295,0.598709,0.383093,0.960114,0.943912,0.0419461,0.893134,0.0485145,0.885661,0.293493,0.0307985,0.380502,0.118416,0.993038,0.797292,0.549107,0.392384,0.882671,0.471031,0.902887,0.213171,0.0476285,0.105331,0.806089,0.666106,0.045926,0.395687,0.786565,0.356446,0.258827,0.244491,0.82049,0.98289,0.0409948,0.138767,0.576203,0.443222,0.418036,0.390337,0.0860514,0.886677,0.0026862,0.952512,0.545108,0.234931,0.488855,0.992727,0.243236,0.501097,0.585636,0.998589,0.915446,0.0732585,0.505225,0.464828,0.161307,0.124966,0.774017,0.911341,0.88816,0.930569,0.995468,0.847152,0.22684,0.723256,0.861214,0.226569,0.131807,0.0719603,0.615554,0.157892,0.0951231,0.923599,0.34068,0.999438,0.233075,0.197063,0.773998,0.71901,0.552109,0.56564,0.899865,0.951205,0.937561,0.272869,0.121261,0.25345,0.849344,0.664317,0.42896,0.486342,0.195825,0.374472,0.943568,0.303149,0.0621661,0.791638,0.387634,0.992475,0.120182,0.431097,0.753997,0.233314,0.606759,0.711546,0.55801,0.0537107,0.902753,0.262715,0.894844,0.96306,0.822552,0.657913,0.0486002,0.717647,0.865904,0.165253,0.221872,0.951403,0.619101,0.0725241,0.184826,0.310403,0.217791,0.598242,0.290788,0.925052,0.481922,0.115334,0.799047,0.678993,0.708323,0.837186,0.875919,0.58951,0.976529,0.7673,0.112872,0.0665784,0.113887,0.949436,0.54819,0.942837,0.0476341,0.48498,0.413045,0.088599,0.587514,0.378007,0.657533,0.407617,0.0781853,0.7674,0.417651,0.654609,0.329482,0.0708057,0.743166,0.551412,0.290944,0.0627683,0.359065,0.546842,0.76569,0.979753,0.958591,0.522009,0.015698,0.809621,0.51585,0.55989,0.964588,0.00671053,0.546062,0.79869,0.0461903,0.612027,0.755677,0.137844,0.727071,0.324343,0.26772,0.272524,0.726939,0.315359,0.319274,0.235533,0.367345,0.596949,0.533768,0.426959,0.890363,0.591382,0.557993,0.0951515,0.0182906,0.85241,0.350074,0.211445,0.735337,0.938224,0.364889,0.122478,0.840784,0.00622708,0.207779,0.278495,0.282831,0.15292,0.863183,0.404126,0.811977,0.735364,0.378809,0.411021,0.843811,0.628309,0.993513,0.172162,0.834297,0.543819,0.867645,0.41742,0.317294,0.0593411,0.595832,0.296014,0.734168,0.631291,0.557738,0.438119,0.883777,0.792049,0.269244,0.031026,0.956945,0.7336,0.71347,0.975384,0.442914,0.828586,0.929258,0.296006,0.709645,0.34753,0.797558,0.480109,0.438717,0.305637,0.295493,0.681459,0.972596,0.41534,0.139605,0.180389,0.150874,0.73194,0.0625744,0.547433,0.222792,0.825602,0.363433,0.587877,0.378135,0.558821,0.0539169,0.907693,0.481566,0.661873,0.412536,0.975618,0.882814,0.171793,0.192652,0.692097,0.941843,0.878142,0.393769,0.0958346,0.338121,0.773002,0.579234,0.702181,0.320241,0.0566872,0.205235,0.24809,0.57342,0.743227,0.606248,0.90643,0.110545,0.353842,0.777533,0.253813,0.523535,0.246715,0.165135,0.17083,0.446014,0.19837,0.163588,0.0114676,0.77905,0.225352,0.295974,0.0968477,0.696563,0.350054,0.72079,0.228768,0.649743,0.583607,0.0799124,0.562981,0.417118,0.46719,0.00898862,0.620239,0.784196,0.416195,0.506015,0.981731,0.752215,0.958384,0.830029,0.572771,0.3904,0.548026,0.591119,0.896835,0.391901,0.528848,0.432668,0.737487,0.377786,0.701136,0.268927,0.446642,0.407623,0.676317,0.303743,0.282228,0.0201228,0.377158,0.435297,0.682241,0.745192,0.487293,0.556019,0.636055,0.469012,0.139014,0.172532,0.610158,0.559708,0.975351,0.912201,0.256407,0.422798,0.772933,0.582067,0.380143,0.569016,0.596961,0.978725,0.238338,0.705274,0.689135,0.55028,0.661302,0.498283,0.109142,0.578231,0.158342,0.487235,0.174857,0.868865,0.255226,0.97939,0.844049,0.449283,0.255224,0.35747,0.447606,0.208572,0.874656,0.302603,0.128562,0.57585,0.0771684,0.446013,0.932317,0.950025,0.318825,0.781304,0.42166,0.46987,0.857266,0.257755,0.903439,0.450791,0.0594357,0.0423841,0.519896,0.659338,0.769464,0.120357,0.776979,0.145445,0.172593,0.175804,0.950856,0.176989,0.264509,0.603642,0.983669,0.992768,0.340065,0.360025,0.669411,0.827523,0.812754,0.547905,0.911312,0.408444,0.537663,0.146368,0.0985188,0.762686,0.323104,0.0156809,0.540906,0.968153,0.810417,0.756622,0.651909,0.436789,0.279601,0.33876,0.725913,0.93417,0.937365,0.694316,0.0403722,0.00457388,0.395043,0.0660754,0.0817177,0.910864,0.302399,0.30613,0.0245893,0.921214,0.019475,0.257747,0.93251,0.704871,0.661279,0.639948,0.400319,0.927924,0.711271,0.867518,0.492103,0.809816,0.404642,0.0169242,0.18567,0.462151,0.0836901,0.928678,0.580725,0.247447,0.265577,0.238583,0.176384,0.269976,0.0811784,0.552776,0.239882,0.882135,0.350345,0.204496,0.874487,0.848473,0.284691,0.0122977,0.395656,0.118284,0.23431,0.870285,0.832621,0.852224,0.378722,0.0868257,0.104011,0.114246,0.915832,0.643165,0.502519,0.191489,0.199924,0.361277,0.314384,0.0469816,0.279745,0.35237,0.520192,0.971819,0.814659,0.726878,0.949979,0.370232,0.379213,0.815498,0.230359,0.666016,0.471572,0.899286,0.00626296,0.987817,0.586055,0.0211424,0.51982,0.340288,0.0757686,0.703376,0.556967,|0.573953,0.929546,0.131176,0.357731,0.86871,0.677403,0.858271,0.806977,0.98863,0.918702,0.198831,0.530379,0.0733704,0.965048,0.347001,0.146337,0.679249,0.147135,0.560644,0.695017,0.720286,0.068448,0.99463,0.751111,0.603355,0.030844,0.797375,0.872019,0.204171,0.287362,0.158806,0.769878,0.366533,0.609747,0.671624,0.842523,0.403639,0.0642383,0.597003,0.53132,0.445285,0.106371,0.0125911,0.846646,0.961556,0.23465,0.144344,0.512832,0.573941,0.282881,0.470311,0.391637,0.267577,0.0840033,0.626805,0.831007,0.0825625,0.16028,0.303783,0.391582,0.711934,0.787648,0.302299,0.238911,0.186601,0.0757489,0.318648,0.955202,0.228341,0.502004,0.782737,0.648849,0.0144973,0.467384,0.207829,0.551832,0.290881,0.12646,0.363666,0.13432,0.861579,0.964038,0.329586,0.207242,0.721902,0.718543,0.309077,0.831909,0.387461,0.680961,0.315448,0.440813,0.00951242,0.523082,0.528459,0.15973,0.442704,0.310434,0.946604,0.268358,0.67784,0.449341,0.160567,0.482342,0.168303,0.919618,0.234212,0.760249,0.119755,0.0691905,0.171029,0.648565,0.542014,0.766017,0.0537239,0.889516,0.291367,0.861277,0.0117239,0.683028,0.205936,0.546999,0.352182,0.339925,0.413507,0.561585,0.369881,0.0382718,0.834824,0.645019,0.191404,0.156507,0.355871,0.377788,0.205295,0.229405,0.255881,0.46278,0.0112748,0.502826,0.914054,0.937076,0.795186,0.131413,0.564178,0.683318,0.769155,0.578736,0.25976,0.878186,0.285366,0.419527,0.512862,0.629656,0.882261,0.797683,0.132763,0.477534,0.454672,0.0190356,0.89008,0.667394,0.187443,0.634116,0.554966,0.142568,0.182616,0.406103,0.0603399,0.267684,0.00909179,0.113151,0.844187,0.797637,0.720394,0.0554497,0.101501,0.0291325,0.154592,0.804833,0.636779,0.967768,0.510966,0.428061,0.843851,0.372017,0.705068,0.848939,0.841678,0.0620552,0.645016,0.603994,0.855971,0.980989,0.249221,0.203713,0.514321,0.955604,0.90966,0.931134,0.239624,0.493023,0.426685,0.485982,0.887726,0.367181,0.972311,0.737083,0.211721,0.537821,0.476897,0.620391,0.124062,0.653159,0.864928,0.833882,0.534162,0.575383,0.521302,0.356807,0.82072,0.950517,0.449297,0.623912,0.396845,0.524308,0.236242,0.774508,0.491049,0.279814,0.476053,0.596963,0.473513,0.178966,0.813572,0.120217,0.587328,0.196194,0.560214,0.408469,0.955931,0.721201,0.0978099,0.466388,0.647839,0.0734761,0.783676,0.851002,0.0168867,0.316066,0.200607,0.779758,0.300788,0.504282,0.90893,0.224028,0.96007,0.599845,0.397854,0.64452,0.0536805,0.507643,0.993953,0.16543,0.869204,0.441023,0.783061,0.644851,0.877653,0.57362,0.1812,0.0764126,0.375645,0.223942,0.698837,0.0472903,0.979643,0.324221,0.208081,0.838001,0.943531,0.212817,0.846613,0.00247329,0.429463,0.787166,0.420314,0.191066,0.0416915,0.399243,0.846653,0.766176,0.0355877,0.975298,0.370991,0.662545,0.101386,0.754087,0.842564,0.925572,0.211344,0.0339695,0.0211635,0.93975,0.381596,0.690983,0.337176,0.67528,0.333463,0.670147,0.144616,0.042809,0.608749,0.399585,0.575557,0.714312,0.343145,0.913238,0.467145,0.938235,0.0980521,0.816703,0.979309,0.491952,0.42583,0.714747,0.590448,0.893189,0.275827,0.658734,0.613615,0.726303,0.0483287,0.0261912,0.315073,0.354114,0.999875,0.813565,0.977191,0.445017,0.6452,0.971835,0.773125,0.864134,0.210907,0.797706,0.697452,0.511174,0.410674,0.491404,0.112828,0.838129,0.417375,0.714507,0.835537,0.620441,0.311558,0.0600565,0.536044,0.620439,0.865486,0.742937,0.347188,0.606256,0.690494,0.650699,0.908119,0.732488,0.414917,0.573083,0.371082,0.816687,0.220765,0.380512,0.960735,0.991244,0.43346,0.937773,0.677122,0.470873,0.847351,0.917568,0.296616,0.721238,0.831647,0.813369,0.397158,0.703231,0.366709,0.150554,0.224904,0.496134,0.926925,0.0967423,0.653107,0.399309,0.998212,0.845788,0.0119542,0.909374,0.204511,0.347321,0.974698,0.60334,0.406051,0.0168849,0.979924,0.726161,0.538308,0.766695,0.180383,0.88063,0.772368,0.00635678,0.572313,0.60505,0.80246,0.106637,0.640733,0.340187,0.911585,0.881474,0.50934,0.706839,0.443264,0.755848,0.663357,0.067603,0.497489,0.0431225,0.160644,0.891815,0.0691077,0.631814,0.559246,0.778722,0.446102,0.0765356,0.51626,0.538528,0.139682,0.400584,0.689997,0.45706,0.379085,0.810676,0.359873,0.122194,0.890337,0.908614,0.954514,0.0996988,0.362487,0.761797,0.344052,0.813771,0.0946115,0.312166,0.821856,0.676925,0.528537,0.0429672,0.799531,0.649574,0.532136,0.790842,0.496901,0.286074,0.511702,0.254058,0.884076,0.374504,0.187748,0.124988,0.800593,0.656122,0.975015,0.538993,0.419241,0.565945,0.28972,0.933525,0.42789,0.560133,0.87929,0.515495,0.670621,0.844742,0.292791,0.700376,0.639069,0.308312,0.222348,0.642524,0.730848,0.468872,0.101839,0.873837,0.106173,0.960941,0.992037,0.353585,0.685997,0.408313,0.21296,0.224636,0.349181,0.309639,0.886604,0.64425,0.653614,0.00255954,0.694055,0.665558,0.400946,0.989039,0.386226,0.825401,0.863549,0.118552,0.407276,0.421171,0.783056,0.470271,0.391909,0.85684,0.706163,0.151237,0.916054,0.79904,0.738366,0.601811,0.535384,0.30339,0.0223687,0.0515018,0.669175,0.818091,0.223143,0.137923,0.767249,0.436272,0.288701,0.937824,0.486518,0.764196,0.295518,0.946344,0.940489,0.840328,0.664657,0.476009,0.449436,0.367096,0.212067,0.0823221,0.711193,0.913737,0.972459,0.84636,0.79637,0.141668,0.573976,0.383201,0.887517,0.102559,0.659481,0.756796,0.627889,0.675638,0.696056,0.212561,0.465476,0.563643,0.246216,0.212355,0.821477,0.991234,0.932924,0.399949,0.82014,0.165025,0.353107,0.975453,0.164209,0.911529,0.504433,0.299496,0.637247,0.627753,0.461571,0.146124,0.553465,0.914703,0.163068,0.361148,0.329923,0.831497,0.573848,0.315495,0.145417,0.136969,0.847753,0.0185015,0.801437,0.880442,0.0401842,0.656685,0.125238,0.948419,0.746647,0.0300567,0.536508,0.716461,0.19682,0.197851,0.484974,0.80312,0.956045,0.856722,0.859463,0.357062,0.179668,0.783064,0.13862,0.753607,0.971825,0.131591,0.991526,0.394873,0.563937,0.745307,0.488455,0.433765,0.897237,0.793035,0.396672,0.173154,0.480009,0.77253,0.307217,0.277856,0.0953325,0.994228,0.709567,0.876358,0.956331,0.281314,0.495604,0.32282,0.381407,0.721003,0.98572,0.0298691,0.0716874,0.512516,0.140627,0.237741,0.724773,0.746599,0.970015,0.770743,0.841427,0.298863,0.29692,0.102647,0.0928029,0.442573,0.168739,0.130241,0.176053,0.913252,0.035431,0.361316,0.536811,0.480623,0.0222359,0.707033,0.102594,0.278844,0.549392,0.487052,0.812791,0.810033,0.44378,0.370448,0.363157,0.556483,0.512679,0.294656,0.902708,0.963082,0.651832,0.23922,0.340099,0.37037,0.445582,0.444708,0.246958,0.347496,0.425291,0.599834,0.542723,0.968905,0.659165,0.329099,0.247179,0.988688,0.119178,0.986255,0.615907,0.0122805,0.639072,0.525407,0.73494,0.453338,0.857051,0.774569,0.341227,0.875876,0.585918,0.254928,0.893296,0.0899419,0.382026,0.186588,0.0712123,0.497827,0.49922,0.846966,0.722397,0.939268,0.218099,0.256277,0.815646,0.0173581,0.598986,0.886338,0.0843918,0.294611,0.245472,0.379165,0.905981,0.0445432,0.32434,0.192937,0.794219,0.888362,0.139712,0.466763,0.999005,0.618656,0.293272,0.0318369,0.899904,0.144054,0.949266,0.794712,0.658592,0.194118,0.974873,0.49027,0.4728,0.0122777,0.158989,0.963191,0.935622,0.913287,0.505312,0.655893,0.34586,0.188096,0.870858,0.128902,0.514727,0.633419,0.973515,0.0340886,0.7859,0.101512,0.714204,0.880364,0.450552,0.511073,0.987448,0.346633,0.765824,0.801935,0.129032,0.71166,0.540836,0.894513,0.899376,0.710085,0.421362,0.346806,0.484478,0.26934,0.903306,0.257897,0.839248,0.105572,0.354959,0.598405,0.860283,0.845012,0.150287,0.932776,0.277305,0.706567,0.165724,0.575543,0.0596188,0.350487,0.913855,0.800714,0.80745,0.727746,0.630599,0.609129,0.931703,0.967456,0.208028,0.25105,0.342324,0.0615839,0.379431,0.38739,0.481339,0.541619,0.869959,0.535657,0.735677,0.959087,0.716223,0.486512,0.254122,0.206221,0.239425,0.590992,0.796999,0.633335,0.935889,0.926577,0.791016,0.800615,0.682013,0.528152,0.641299,0.97934,0.944757,0.91967,0.69507,0.927487,0.394513,0.667608,0.19755,0.0529405,0.133077,0.768032,0.655554,0.907733,0.793988,0.540589,0.0776363,0.805909,0.706215,0.533549,0.0821067,0.653756,0.283162,0.832747,0.470211,0.481489,0.455907,0.37094,0.661906,0.155458,0.732889,0.0688477,0.930119,0.374245,0.9019,0.206269,0.979617,0.212181,0.414603,0.63471,0.108567,0.376284,0.721462,0.0227123,0.114041,0.446261,0.207061,0.496056,0.244207,0.661535,0.691851,0.48908,0.426687,0.465387,0.986531,0.585899,0.0656905,0.822704,0.0485519,0.00829232,0.200202,0.633579,0.57736,0.667731,0.537155,0.721667,0.740867,0.139314,0.250442,0.739238,0.965342,0.349646,0.955304,0.341174,0.343205,0.510733,0.593515,0.215456,0.856536,0.593033,0.211081,0.298884,0.728928,0.880002,0.96056,0.847523,0.304567,0.962,0.421743,0.701743,0.00905156,0.359416,0.720613,0.695438,0.450737,0.553577,0.117219,0.864373,0.687532,0.861295,0.0232484,0.139533,0.907016,0.47566,0.768401,0.743715,0.577374,0.468441,0.982786,0.441782,0.207342,0.497076,0.558968,0.405768,0.285286,0.246071,0.953516,0.63802,0.137278,0.916841,0.467201,0.766376,0.807348,0.234641,0.577062,0.668398,0.236047,0.227128,0.682452,0.287838,0.369905,0.66664,0.546461,0.91587,0.266085,0.0127701,0.646631,0.323938,0.0975664,0.287262,0.622967,0.800631,0.647475,0.0553763,0.575244,0.433035,0.0548293,0.616538,0.422238,0.972127,0.376835,0.00792378,|0.161635,0.197489,0.762826,0.719384,0.998447,0.712107,0.529089,0.851961,0.00577974,0.0425826,0.613805,0.336516,0.944746,0.841276,0.218167,0.686641,0.695082,0.389725,0.326889,0.815266,0.246111,0.784696,0.909808,0.55052,0.743831,0.344822,0.738873,0.475926,0.899048,0.0512437,0.935799,0.508036,0.794294,0.628687,0.70793,0.299815,0.628329,0.178785,0.23833,0.520992,0.414275,0.0984416,0.57534,0.27879,0.790123,0.230154,0.340028,0.0143098,0.588558,0.261083,0.519931,0.689725,0.702348,0.262755,0.431158,0.821607,0.42434,0.423881,0.294673,0.467277,0.885466,0.968615,0.676043,0.637515,0.894274,0.285738,0.743242,0.887503,0.429104,0.383845,0.66989,0.979188,0.505362,0.279255,0.608552,0.302195,0.278076,0.941572,0.551261,0.114234,0.60804,0.177596,0.630627,0.112279,0.388065,0.874748,0.350083,0.675601,0.716092,0.307466,0.357425,0.820198,0.685251,0.793097,0.930655,0.334257,0.796216,0.585001,0.902579,0.381743,0.954477,0.261187,0.867386,0.0732877,0.921895,0.337984,0.375781,0.0531662,0.880464,0.493363,0.748357,0.56495,0.286606,0.970357,0.304594,0.351295,0.327026,0.478529,0.0576504,0.766337,0.499535,0.179753,0.0457544,0.997265,0.884965,0.194959,0.88121,0.34884,0.61149,0.310772,0.038146,0.898642,0.00148594,0.173549,0.542461,0.241868,0.369286,0.956426,0.351513,0.796851,0.943369,0.61672,0.927601,0.0453096,0.945021,0.935074,0.870075,0.675038,0.697529,0.842484,0.409907,0.409872,0.768804,0.779299,0.363304,0.550149,0.629794,0.179393,0.632089,0.162539,0.98565,0.144153,0.937655,0.652097,0.205056,0.688243,0.196147,0.421342,0.557383,0.547652,0.00476915,0.48669,0.326993,0.284463,0.411,0.111743,0.483175,0.84067,0.715149,0.625738,0.233717,0.172006,0.571764,0.749491,0.338745,0.532722,0.676685,0.257433,0.263696,0.544942,0.393886,0.620103,0.388783,0.580852,0.470891,0.068397,0.747767,0.357681,0.123489,0.399178,0.666995,0.186183,0.460802,0.232476,0.211199,0.608842,0.70008,0.939364,0.941172,0.999208,0.836344,0.811071,0.15283,0.921691,0.489989,0.335914,0.715482,0.0404654,0.0513985,0.889398,0.290896,0.0228081,0.945098,0.730383,0.490461,0.233098,0.257842,0.0897666,0.962077,0.751369,0.0645247,0.731333,0.992586,0.599229,0.559831,0.549225,0.670478,0.603473,0.0417606,0.3481,0.406651,0.666917,0.71106,0.52576,0.156542,0.687641,0.907127,0.701904,0.185325,0.122516,0.454664,0.755119,0.755077,0.920249,0.0766228,0.626574,0.234949,0.616205,0.279827,0.256883,0.214746,0.208182,0.172951,0.447601,0.239012,0.517953,0.865467,0.882678,0.601046,0.942374,0.572768,0.457756,0.776397,0.265087,0.0111369,0.999299,0.060501,0.50557,0.52315,0.110751,0.898866,0.40419,0.0173218,0.821812,0.82107,0.433516,0.823631,0.804218,0.795489,0.752446,0.103685,0.148254,0.709903,0.427829,0.765421,0.466383,0.389025,0.108111,0.326346,0.114444,0.303878,0.405514,0.64012,0.205599,0.718039,0.19929,0.559175,0.38794,0.990891,0.838143,0.732021,0.218911,0.74647,0.484552,0.945435,0.0128356,0.115774,0.799907,0.544414,0.82173,0.325459,0.29447,0.472741,0.343481,0.477147,0.756473,0.145006,0.296632,0.193693,0.890109,0.476181,0.936725,0.451241,0.741372,0.208358,0.852453,0.360605,0.484642,0.995174,0.231942,0.998779,0.803518,0.210057,0.803649,0.312996,0.64429,0.984195,0.635586,0.265785,0.682852,0.484707,0.843163,0.395633,0.837777,0.194875,0.83081,0.850328,0.932164,0.464778,0.16208,0.2383,0.220228,0.588468,0.43951,0.33815,0.679637,0.655086,0.0550087,0.173602,0.174785,0.183432,0.229771,0.754267,0.605402,0.13617,0.142684,0.946467,0.46496,0.506571,0.797989,0.516724,0.976459,0.216006,0.266842,0.638559,0.61739,0.489049,0.863312,0.353389,0.817993,0.402752,0.735247,0.7683,0.958339,0.732355,0.917637,0.636464,0.693522,0.463978,0.108748,0.997829,0.874171,0.519963,0.107345,0.349458,0.867443,0.334312,0.784157,0.858422,0.826036,0.995881,0.166485,0.161684,0.132999,0.973326,0.559367,0.443942,0.747861,0.918499,0.636564,0.922374,0.83953,0.601712,0.729243,0.31238,0.877458,0.655474,0.873603,0.948607,0.743885,0.485748,0.291848,0.139333,0.110704,0.348545,0.0423404,0.043589,0.857836,0.371302,0.0642592,0.903298,0.475642,0.500621,0.459263,0.246332,0.538513,0.582438,0.776564,0.25574,0.187209,0.3706,0.69028,0.262971,0.988464,0.913206,0.468999,0.0980856,0.705169,0.281434,0.797052,0.970417,0.299853,0.297657,0.751687,0.342425,0.946853,0.679974,0.902703,0.833278,0.717235,0.0114571,0.118278,0.155701,0.649528,0.504899,0.416071,0.643544,0.585994,0.306338,0.20495,0.733854,0.531343,0.726266,0.340545,0.666145,0.479768,0.317545,0.609073,0.0972082,0.541214,0.682886,0.043678,0.740877,0.0150347,0.649461,0.522438,0.442735,0.381335,0.790182,0.282138,0.0194104,0.456749,0.112252,0.259659,0.673066,0.722344,0.945154,0.139909,0.12324,0.235463,0.28435,0.376106,0.298018,0.24978,0.274867,0.414927,0.33072,0.770574,0.61928,0.0947145,0.0468823,0.994277,0.699809,0.956518,0.0267293,0.603424,0.742315,0.760491,0.0415249,0.649611,0.830471,0.0724415,0.889987,0.600897,0.652516,0.819989,0.707425,0.837024,0.888076,0.414021,0.152764,0.418088,0.522787,0.585428,0.0493899,0.472715,0.338008,0.0318479,0.911638,0.420607,0.0355306,0.816912,0.728642,0.273048,0.926825,0.420485,0.95977,0.457972,0.443891,0.281111,0.362652,0.28887,0.898465,0.64244,0.372042,0.337712,0.618023,0.917804,0.601569,0.0565438,0.851583,0.0601438,0.544357,0.607949,0.664081,0.0242316,0.0421666,0.196552,0.903203,0.724159,0.186675,0.437474,0.173912,0.347619,0.280662,0.738679,0.214921,0.364489,0.827303,0.764714,0.539752,0.506909,0.959685,0.138943,0.493817,0.638031,0.973491,0.444227,0.697289,0.987841,0.987975,0.657773,0.08689,0.000440955,0.189476,0.705924,0.811998,0.771651,0.274152,0.203278,0.759156,0.464382,0.0132218,0.47035,0.484911,0.582971,0.387973,0.706331,0.747133,0.948244,0.532885,0.829409,0.603914,0.69754,0.344704,0.859467,0.211027,0.53891,0.505614,0.129249,0.669088,0.817267,0.233917,0.703661,0.808142,0.362761,0.471174,0.394395,0.812001,0.409197,0.514931,0.228922,0.310603,0.473576,0.447534,0.516151,0.544949,0.974732,0.433629,0.0191144,0.69189,0.747269,0.558651,0.278106,0.245291,0.287374,0.944438,0.246799,0.0219418,0.170637,0.518581,0.243121,0.632526,0.169664,0.0301815,0.729319,0.817285,0.138843,0.0800097,0.631255,0.419943,0.515634,0.438578,0.708688,0.38752,0.525636,0.222717,0.875653,0.0788996,0.388004,0.218756,0.308522,0.239115,0.865333,0.00110912,0.0195828,0.676052,0.48958,0.80787,0.613357,0.178402,0.603189,0.194825,0.00817788,0.134463,0.439895,0.0470572,0.119922,0.783024,0.282676,0.0761237,0.392138,0.666029,0.921002,0.570916,0.0239661,0.282865,0.412892,0.176087,0.56753,0.563299,0.276614,0.872869,0.351959,0.336064,0.280333,0.845247,0.475342,0.351168,0.795547,0.374267,0.172532,0.195516,0.703974,0.979166,0.0916629,0.383216,0.973197,0.457427,0.891751,0.442638,0.586104,0.0651562,0.783727,0.851067,0.803993,0.300286,0.773239,0.136455,0.0721062,0.923604,0.893005,0.26787,0.930849,0.187598,0.979926,0.788461,0.201205,0.882518,0.795192,0.972495,0.0769343,0.884343,0.00569844,0.823841,0.426035,0.990522,0.0534142,0.65532,0.509306,0.722863,0.410135,0.952682,0.0348286,0.92468,0.671036,0.168173,0.838576,0.947419,0.792007,0.679309,0.578592,0.638964,0.324278,0.665372,0.772151,0.26159,0.815058,0.109417,0.670307,0.498829,0.72547,0.591061,0.843416,0.280774,0.57584,0.518172,0.58329,0.590949,0.832264,0.243988,0.0626082,0.859286,0.31794,0.853829,0.330722,0.0398504,0.032956,0.664018,0.0521559,0.93859,0.312847,0.127374,0.528591,0.906914,0.0146899,0.549121,0.647446,0.693401,0.855453,0.10871,0.38902,0.921679,0.887251,0.418057,0.785034,0.458978,0.964822,0.424223,0.801538,0.515972,0.918431,0.852898,0.91851,0.765935,0.93386,0.643373,0.80134,0.95461,0.0747934,0.277979,0.469818,0.104477,0.268023,0.320221,0.887678,0.493291,0.747334,0.458288,0.141722,0.157394,0.975916,0.180446,0.15626,0.355897,0.682193,0.519461,0.444169,0.0736614,0.446835,0.728338,0.166295,0.676098,0.201606,0.522716,0.949165,0.581862,0.665179,0.650987,0.123958,0.498874,0.720882,0.610731,0.575781,0.0802643,0.518731,0.0983353,0.432976,0.192942,0.921616,0.173184,0.692858,0.672832,0.069712,0.945129,0.928088,0.685487,0.314466,0.023354,0.132905,0.674534,0.244846,0.769451,0.312481,0.70603,0.907837,0.373773,0.784005,0.0809292,0.806093,0.646691,0.149634,0.259557,0.558955,0.179654,0.218621,0.480102,0.021859,0.158626,0.751336,0.825137,0.264955,0.278744,0.174824,0.589587,0.158382,0.967723,0.132808,0.377832,0.763057,0.33882,0.988996,0.154344,0.0759885,0.701654,0.552746,0.925173,0.302515,0.16828,0.926754,0.0859075,0.118619,0.324575,0.51607,0.134288,0.24794,0.529965,0.899913,0.790586,0.558577,0.164124,0.868285,0.105596,0.821485,0.186923,0.246779,0.433885,0.35911,0.39772,0.0555135,0.107876,0.696787,0.261044,0.104336,0.184956,0.0446475,0.21575,0.826599,0.393334,0.431187,0.999408,0.679079,0.0184515,0.704091,0.980143,0.66215,0.497324,0.955947,0.817636,0.908459,0.050068,0.56742,0.687834,0.462268,0.253579,0.402397,0.371303,0.797269,0.12968,0.194489,0.876143,0.983839,0.697531,0.200719,0.910754,0.143317,0.330318,0.615842,0.863756,0.620925,0.477168,0.40494,0.300937,0.257727,0.227462,0.414575,0.175843,0.976498,0.560235,0.916641,0.133925,0.369552,0.411302,0.810162,0.589534,0.138504,0.484604,0.736297,0.255185,0.0196952,|0.248629,0.105636,0.974081,0.338565,0.25014,0.845125,0.31514,0.430613,0.0294346,0.935364,0.337669,0.353504,0.940338,0.891517,0.694423,0.71011,0.192932,0.183855,0.0267345,0.803306,0.219595,0.109311,0.25381,0.526702,0.618277,0.81144,0.973616,0.291883,0.719922,0.899942,0.288463,0.314848,0.585711,0.184441,0.220267,0.068837,0.772001,0.550104,0.185765,0.858932,0.123768,0.257492,0.599721,0.131019,0.349463,0.511225,0.233354,0.425393,0.779701,0.281028,0.875488,0.658656,0.191119,0.714609,0.492262,0.278234,0.62724,0.183951,0.117912,0.0368311,0.359785,0.662946,0.524257,0.790207,0.0915839,0.131326,0.523101,0.893595,0.0701516,0.336623,0.392777,0.106525,0.246282,0.0200711,0.0920626,0.402036,0.727361,0.0291607,0.167848,0.724681,0.112827,0.509759,0.831531,0.282469,0.52972,0.246884,0.927735,0.438284,0.418534,0.0741217,0.701,0.541843,0.633533,0.603525,0.579448,0.876361,0.165637,0.209969,0.726652,0.572123,0.392193,0.809895,0.562833,0.68,0.826167,0.90567,0.106254,0.306501,0.355644,0.664881,0.361437,0.672776,0.888241,0.200918,0.950073,0.329904,0.190921,0.925268,0.142061,0.0564722,0.448509,0.451772,0.484911,0.685543,0.51576,0.0386406,0.160425,0.760675,0.356156,0.306954,0.818004,0.198396,0.509465,0.109964,0.0690574,0.172167,0.510385,0.815115,0.0919316,0.209671,0.546852,0.178458,0.445844,0.819841,0.769171,0.149365,0.725284,0.545731,0.0839457,0.322542,0.772063,0.982363,0.964515,0.226006,0.270041,0.0786089,0.755045,0.821465,0.894057,0.447624,0.671507,0.890341,0.686906,0.766254,0.299021,0.0206866,0.905873,0.0157099,0.495767,0.278023,0.894655,0.452029,0.878358,0.963258,0.954588,0.660979,0.178623,0.504125,0.0144536,0.513831,0.931297,0.0644956,0.886291,0.422434,0.816696,0.599639,0.308757,0.359801,0.887954,0.174649,0.452568,0.668622,0.712027,0.932229,0.14273,0.0118313,0.268349,0.701259,0.884362,0.617506,0.293777,0.625747,0.926175,0.0786153,0.884656,0.0848699,0.445655,0.553998,0.571162,0.540581,0.322624,0.623469,0.889607,0.464279,0.0710859,0.951506,0.0858411,0.763361,0.416754,0.926091,0.749467,0.397519,0.853765,0.365122,0.463898,0.21947,0.500639,0.161424,0.914356,0.691269,0.330495,0.776915,0.865999,0.361256,0.292176,0.677666,0.303048,0.898974,0.993394,0.966078,0.768521,0.943295,0.843873,0.663567,0.470157,0.54283,0.0487269,0.863714,0.0821102,0.659755,0.145201,0.84591,0.191587,0.436581,0.520444,0.797763,0.872568,0.392269,0.655387,0.744873,0.331637,0.300574,0.987028,0.631159,0.0753724,0.663985,0.621273,0.637683,0.27629,0.167418,0.905096,0.935643,0.112078,0.794632,0.289167,0.206979,0.117611,0.46154,0.295744,0.603982,0.346162,0.22489,0.551929,0.27372,0.407264,0.1352,0.45326,0.725412,0.0958534,0.159147,0.400534,0.980178,0.600193,0.378978,0.584247,0.587628,0.200591,0.709459,0.816377,0.79502,0.584394,0.159243,0.611081,0.295041,0.580372,0.472487,0.447248,0.583488,0.350064,0.0954371,0.64028,0.477003,0.213547,0.126886,0.621409,0.898649,0.409069,0.710387,0.0525136,0.352488,0.495318,0.425198,0.880157,0.610199,0.713528,0.937349,0.482864,0.314913,0.0959556,0.0855303,0.0229797,0.447421,0.0125149,0.358851,0.220128,0.82924,0.00631219,0.267215,0.193941,0.0376397,0.841793,0.0221614,0.199288,0.419212,0.28383,0.448017,0.141699,0.865386,0.155716,0.118821,0.921493,0.279016,0.52116,0.402982,0.842821,0.000540674,0.520985,0.633433,0.973754,0.402496,0.606436,0.758012,0.879552,0.781337,0.37456,0.387603,0.986752,0.942237,0.419154,0.994513,0.878118,0.251291,0.297716,0.690116,0.595527,0.0224671,0.183238,0.595972,0.598212,0.744246,0.763967,0.969504,0.0727838,0.806855,0.364467,0.871401,0.901802,0.754935,0.803843,0.796608,0.914573,0.29572,0.67219,0.0918482,0.649024,0.332685,0.915979,0.0302269,0.571917,0.33154,0.840664,0.58238,0.0814949,0.785831,0.38105,0.489969,0.282886,0.295689,0.425418,0.194186,0.660613,0.333478,0.839207,0.77833,0.049391,0.0753422,0.796862,0.874166,0.794453,0.314008,0.115799,0.0879613,0.317676,0.786112,0.446011,0.837473,0.560649,0.571737,0.224263,0.122072,0.799523,0.731717,0.572929,0.138718,0.499323,0.367704,0.876374,0.859545,0.330348,0.25996,0.57383,0.297129,0.452129,0.409938,0.490022,0.329748,0.406083,0.983,0.542665,0.591396,0.753472,0.210291,0.106231,0.854604,0.60628,0.216677,0.0421777,0.446909,0.765823,0.158648,0.888414,0.460876,0.224392,0.670004,0.145115,0.347339,0.224316,0.364134,0.791621,0.107042,0.481645,0.272137,0.164021,0.0664398,0.793703,0.141544,0.400074,0.375078,0.425286,0.12842,0.132858,0.683566,0.0231642,0.902813,0.00944173,0.180055,0.436841,0.740742,0.948663,0.380988,0.323097,0.0827167,0.876512,0.267027,0.725087,0.456797,0.184099,0.18272,0.548829,0.295832,0.650739,0.152305,0.159398,0.54142,0.173648,0.459648,0.31267,0.649602,0.959684,0.538768,0.247135,0.595567,0.410205,0.918447,0.19268,0.104211,0.708884,0.451592,0.358826,0.974804,0.525422,0.560933,0.565344,0.578702,0.0632976,0.815425,0.399906,0.185981,0.858044,0.061458,0.64584,0.377501,0.236002,0.128567,0.935665,0.179632,0.0701781,0.555463,0.37831,0.802156,0.953923,0.301538,0.584487,0.0348156,0.383707,0.463419,0.807798,0.337831,0.206966,0.18731,0.516829,0.209866,0.129207,0.884082,0.246745,0.580713,0.356619,0.674071,0.212225,0.0469863,0.473294,0.710428,0.835202,0.589255,0.0698467,0.0451069,0.97528,0.429355,0.866663,0.466162,0.443588,0.145281,0.126331,0.207154,0.742298,0.167729,0.0444148,0.451632,0.790037,0.593962,0.0888918,0.976711,0.676728,0.686143,0.779844,0.454692,0.540518,0.581254,0.498243,0.520404,0.0315229,0.625043,0.11601,0.828476,0.306477,0.828731,0.154476,0.876219,0.815236,0.583037,0.617095,0.840264,0.203331,0.267907,0.0231043,0.237297,0.447698,0.950976,0.231716,0.379785,0.208849,0.757572,0.292218,0.77271,0.478583,0.824273,0.60301,0.993937,0.0543478,0.355751,0.146063,0.425121,0.59572,0.111388,0.652841,0.142219,0.486277,0.761653,0.247465,0.526137,0.0219026,0.91099,0.600017,0.61308,0.0989984,0.0189658,0.136459,0.43699,0.473627,0.546852,0.645287,0.427463,0.604558,0.849262,0.664452,0.461489,0.963376,0.146357,0.551053,0.368904,0.499033,0.101154,0.35867,0.0780173,0.724543,0.649177,0.887259,0.698395,0.544322,0.201109,0.36857,0.911942,0.142632,0.512875,0.245067,0.0708425,0.467458,0.283307,0.762906,0.188854,0.893998,0.521062,0.486238,0.769434,0.50394,0.35194,0.0985476,0.364746,0.343148,0.275072,0.695127,0.0608612,0.351836,0.56221,0.709773,0.968996,0.0773907,0.357602,0.489025,0.520369,0.68481,0.43975,0.830716,0.294739,0.53303,0.218511,0.521028,0.387686,0.482295,0.0359002,0.415384,0.719973,0.781184,0.162938,0.129699,0.294707,0.604776,0.913774,0.469968,0.334782,0.298321,0.0866572,0.41998,0.550614,0.984249,0.0917498,0.97234,0.804074,0.77297,0.83614,0.521728,0.318799,0.700239,0.947677,0.735178,0.615824,0.773172,0.264215,0.0898449,0.377277,0.955487,0.66277,0.33041,0.535256,0.653542,0.211204,0.659438,0.749475,0.968494,0.421932,0.943169,0.451941,0.355031,0.367517,0.0806936,0.174082,0.286054,0.236751,0.129482,0.444704,0.521866,0.528956,0.129924,0.962807,0.284677,0.51309,0.198391,0.646307,0.916149,0.48186,0.36951,0.134304,0.192714,0.331133,0.995107,0.814838,0.690297,0.120242,0.726417,0.442685,0.948054,0.0101871,0.89441,0.940418,0.296169,0.664881,0.128359,0.953913,0.820915,0.355042,0.569025,0.756821,0.89002,0.342493,0.92416,0.0610911,0.954464,0.776559,0.425792,0.618745,0.201338,0.814629,0.326408,0.95123,0.476249,0.294833,0.201749,0.840407,0.642759,0.343232,0.744664,0.294258,0.655496,0.730407,0.908494,0.982768,0.114461,0.700378,0.11384,0.835014,0.362705,0.353966,0.583242,0.858959,0.896845,0.852087,0.0790289,0.356211,0.301209,0.830302,0.454022,0.296058,0.322802,0.60846,0.699905,0.62256,0.606659,0.238611,0.278686,0.281344,0.0126663,0.603585,0.611746,0.912247,0.725761,0.506724,0.565339,0.451338,0.293464,0.923461,0.603859,0.688783,0.0625167,0.493511,0.283397,0.17946,0.0840903,0.15873,0.659504,0.513193,0.704726,0.783083,0.574213,0.578101,0.26116,0.610767,0.700404,0.815877,0.752948,0.58342,0.573057,0.366578,0.171784,0.0282013,0.963108,0.697905,0.0248945,0.82619,0.558804,0.200985,0.307314,0.673766,0.700909,0.682989,0.421671,0.556069,0.338532,0.931399,0.606031,0.117048,0.0221508,0.447721,0.788128,0.593133,0.404432,0.16119,0.263497,0.791692,0.00789791,0.085505,0.154992,0.838147,0.800001,0.62606,0.73987,0.0277116,0.722057,0.256932,0.13709,0.694993,0.505023,0.0325352,0.276424,0.317099,0.97067,0.533025,0.59397,0.829627,0.322604,0.335777,0.82504,0.289132,0.7129,0.352265,0.719274,0.612005,0.150273,0.955087,0.0200006,0.743403,0.371832,0.0484993,0.0364751,0.101324,0.460119,0.128329,0.681044,0.129932,0.769187,0.382538,0.367093,0.379882,0.426936,0.801417,0.379321,0.630209,0.443687,0.508672,0.554335,0.262498,0.579115,0.267951,0.0634934,0.241213,0.130328,0.788109,0.87592,0.646087,0.0182075,0.648705,0.177363,0.135276,0.291267,0.659724,0.205632,0.180091,0.482008,0.537456,0.964887,0.898456,0.107904,0.242466,0.208019,0.397989,0.836333,0.837213,0.325973,0.17866,0.870388,0.280983,0.549732,0.310869,0.984311,0.654416,0.76258,0.268506,0.992343,0.11967,0.355702,0.324807,0.0770088,0.786563,0.753601,0.356002,0.355995,0.284579,0.997041,0.0309507,0.815677,0.288462,0.0721719,0.866646,0.396277,0.0651539,0.470203,0.637816,0.699449,0.0577172,0.0541592,0.00101745,|0.370942,0.554346,0.063337,0.0716715,0.536773,0.846923,0.821522,0.725027,0.233887,0.649811,0.679845,0.958098,0.33755,0.83191,0.526299,0.448589,0.191014,0.416493,0.548323,0.738151,0.55846,0.367546,0.493683,0.920694,0.601096,0.693725,0.401499,0.412138,0.984822,0.940586,0.188219,0.610699,0.866864,0.641546,0.373446,0.135149,0.672728,0.4074,0.329706,0.616797,0.0665854,0.363031,0.413073,0.426951,0.722791,0.769687,0.127321,0.483748,0.904242,0.102561,0.0023852,0.540783,0.321715,0.215701,0.0468755,0.589254,0.295838,0.297146,0.751039,0.131416,0.420959,0.847094,0.106679,0.0799917,0.47955,0.0715104,0.781474,0.380973,0.135826,0.135583,0.317463,0.259888,0.532608,0.711294,0.584605,0.476859,0.457227,0.0465412,0.398398,0.355528,0.204145,0.494907,0.193854,0.325369,0.685593,0.629235,0.865614,0.599715,0.597788,0.784512,0.850937,0.184371,0.0810995,0.26579,0.82467,0.739888,0.435246,0.167735,0.939916,0.448795,0.136503,0.981617,0.245796,0.000660121,0.76229,0.0670115,0.69344,0.942015,0.413303,0.945819,0.990349,0.0930623,0.0313287,0.83431,0.00746298,0.643863,0.26401,0.58216,0.90591,0.593928,0.799931,0.17479,0.0547613,0.43477,0.553101,0.798872,0.221597,0.892668,0.195996,0.271592,0.648638,0.973845,0.774961,0.942129,0.899762,0.911553,0.561028,0.704138,0.165196,0.677086,0.306416,0.0463981,0.63852,0.78391,0.374556,0.170601,0.064081,0.10842,0.455004,0.327342,0.0100445,0.990248,0.693298,0.363169,0.103475,0.720355,0.942253,0.931457,0.610114,0.140849,0.519097,0.265937,0.554235,0.884542,0.030865,0.522103,0.710492,0.586622,0.223597,0.17132,0.51875,0.139888,0.667229,0.320645,0.961047,0.665242,0.414207,0.973918,0.254472,0.181363,0.293317,0.333935,0.611544,0.0806835,0.915796,0.722831,0.634219,0.824149,0.0272367,0.345388,0.587986,0.710397,0.925774,0.305464,0.335826,0.788826,0.0980387,0.872234,0.400995,0.232738,0.788152,0.557831,0.594406,0.595325,0.813495,0.0675932,0.368266,0.479142,0.150931,0.404648,0.0449914,0.342981,0.879897,0.635638,0.741579,0.823334,0.401986,0.480716,0.690994,0.723475,0.0345881,0.212713,0.782224,0.787587,0.924686,0.265054,0.510976,0.950099,0.0765964,0.787723,0.487259,0.0365077,0.226578,0.293312,0.180846,0.461894,0.942107,0.420849,0.131607,0.286353,0.771756,0.413965,0.401193,0.915132,0.53104,0.740246,0.262436,0.598355,0.422124,0.865757,0.39992,0.608441,0.265931,0.500497,0.78809,0.967842,0.0488692,0.262811,0.758331,0.209784,0.327529,0.916105,0.374126,0.601034,0.95442,0.959038,0.655386,0.0359212,0.0958684,0.350334,0.99104,0.89282,0.158352,0.146165,0.237974,0.365593,0.775165,0.717994,0.200365,0.255682,0.720937,0.904995,0.64097,0.105631,0.696974,0.114089,0.745502,0.815537,0.03348,0.942057,0.815394,0.922178,0.208966,0.425932,0.441031,0.766212,0.870109,0.311911,0.613166,0.538869,0.869434,0.33315,0.176703,0.450407,0.642859,0.134803,0.277236,0.0310817,0.814883,0.280845,0.678486,0.941829,0.984928,0.0735433,0.934608,0.448872,0.301791,0.518693,0.958221,0.716755,0.452318,0.338238,0.522404,0.700541,0.164425,0.528386,0.0598231,0.606441,0.982078,0.0424578,0.808747,0.763232,0.129011,0.662429,0.194654,0.12214,0.384398,0.0645624,0.155218,0.17307,0.528866,0.734544,0.774836,0.635029,0.488895,0.656298,0.135897,0.230627,0.54558,0.452889,0.0814415,0.778148,0.00020653,0.545647,0.0896764,0.249001,0.767312,0.722929,0.479584,0.314321,0.326333,0.842174,0.871239,0.478185,0.435533,0.777478,0.464433,0.543149,0.115558,0.0942792,0.426317,0.286173,0.637944,0.843119,0.721064,0.750239,0.942271,0.211435,0.587367,0.647225,0.539384,0.817294,0.824619,0.719636,0.913352,0.783342,0.865363,0.577124,0.17283,0.134171,0.586139,0.353602,0.34284,0.996008,0.419832,0.741621,0.188771,0.921274,0.519298,0.0792869,0.71985,0.528453,0.460661,0.595936,0.480507,0.615764,0.425051,0.62688,0.992457,0.850652,0.682717,0.273137,0.659875,0.495974,0.128592,0.494006,0.562542,0.741253,0.11393,0.436527,0.924943,0.793815,0.724097,0.030816,0.53009,0.818809,0.071212,0.883901,0.752223,0.106191,0.269454,0.415307,0.357145,0.910271,0.233559,0.0755223,0.524614,0.363076,0.494079,0.299911,0.304301,0.864795,0.362446,0.629319,0.187099,0.29912,0.871582,0.331631,0.948944,0.845576,0.714705,0.0305674,0.0607519,0.296276,0.358811,0.899017,0.894215,0.0575969,0.580905,0.859883,0.390147,0.20773,0.5175,0.162166,0.721603,0.97281,0.309171,0.0129028,0.865894,0.111157,0.525772,0.267017,0.623134,0.0525507,0.0418462,0.797725,0.439756,0.448732,0.0707837,0.891324,0.119856,0.511849,0.176999,0.00591928,0.184801,0.833468,0.0173317,0.382668,0.260034,0.375503,0.455512,0.807888,0.299673,0.327234,0.858818,0.435667,0.16267,0.655593,0.391583,0.558127,0.97543,0.976211,0.227949,0.443698,0.0374068,0.990821,0.987113,0.16932,0.59375,0.564525,0.928592,0.0347373,0.427006,0.158852,0.172808,0.84325,0.420947,0.639603,0.594968,0.576687,0.139399,0.172299,0.199191,0.772403,0.983761,0.65532,0.586768,0.102181,0.982945,0.418895,0.728663,0.661173,0.281468,0.51003,0.643398,0.796556,0.98037,0.634692,0.172739,0.729338,0.770035,0.787433,0.792484,0.167476,0.360622,0.807051,0.655679,0.842592,0.612446,0.841252,0.994819,0.674014,0.677833,0.840869,0.411077,0.947341,0.702655,0.973021,0.49414,0.619752,0.0758521,0.37284,0.762237,0.64092,0.128813,0.133523,0.659831,0.347803,0.114085,0.233462,0.092173,0.611435,0.0909258,0.551363,0.109907,0.962867,0.0612978,0.307393,0.992741,0.580838,0.026316,0.00199664,0.476542,0.148777,0.0121401,0.569188,0.640963,0.79206,0.0514529,0.573008,0.348968,0.243533,0.958081,0.11743,0.849922,0.595869,0.348498,0.619392,0.249638,0.0113729,0.512854,0.0426418,0.866629,0.267692,0.6989,0.175844,0.0882557,0.971655,0.854115,0.45474,0.638789,0.42472,0.990458,0.156813,0.524648,0.914909,0.856541,0.201541,0.691041,0.634297,0.540382,0.864249,0.201094,0.0592186,0.673575,0.997018,0.573104,0.36304,0.837061,0.153771,0.362456,0.788216,0.0378419,0.240058,0.234934,0.292034,0.585735,0.06802,0.362602,0.866849,0.379413,0.633626,0.258611,0.189273,0.916189,0.0411619,0.834245,0.936819,0.822748,0.181226,0.441473,0.883243,0.426278,0.283,0.766623,0.622194,0.157972,0.734811,0.542463,0.13099,0.872751,0.594851,0.755363,0.000689268,0.387374,0.906225,0.177315,0.922543,0.430144,0.384888,0.847694,0.803663,0.153394,0.293826,0.462765,0.0231309,0.573141,0.776671,0.373416,0.728167,0.603164,0.949447,0.518446,0.838634,0.432254,0.0971118,0.213913,0.406397,0.050906,0.603431,0.578109,0.197768,0.371893,0.68119,0.824157,0.196791,0.792515,0.679542,0.61118,0.474776,0.862072,0.173309,0.537609,0.507165,0.793292,0.101002,0.358413,0.459259,0.412542,0.260859,0.939865,0.324606,0.523444,0.00868851,0.00915551,0.876812,0.33135,0.513296,0.549004,0.492697,0.134964,0.738378,0.648896,0.388284,0.818834,0.881608,0.52884,0.93699,0.647789,0.280191,0.184359,0.865978,0.885594,0.441284,0.983963,0.381182,0.0750263,0.246675,0.815595,0.205141,0.58533,0.461243,0.575299,0.135554,0.291612,0.671568,0.0737888,0.60596,0.912026,0.504247,0.761528,0.775468,0.705322,0.647646,0.996202,0.206646,0.500243,0.221681,0.539805,0.455702,0.322301,0.875211,0.623986,0.928176,0.944633,0.621634,0.591701,0.411965,0.235474,0.960942,0.175936,0.339399,0.0974226,0.825598,0.777705,0.309544,0.352439,0.158179,0.427553,0.57873,0.522521,0.58151,0.0442992,0.563358,0.975805,0.294577,0.0699095,0.924474,0.109447,0.905498,0.507308,0.529784,0.637771,0.525924,0.715195,0.82044,0.405881,0.238693,0.464659,0.373241,0.859219,0.992176,0.791137,0.300223,0.120721,0.701139,0.416329,0.704343,0.866258,0.00678563,0.494115,0.157183,0.624902,0.550402,0.879744,0.340129,0.843576,0.829715,0.718596,0.536001,0.591037,0.382007,0.4637,0.975546,0.799417,0.861046,0.263549,0.300169,0.663741,0.370063,0.437497,0.686867,0.736298,0.128471,0.316349,0.648267,0.023251,0.615741,0.713972,0.494344,0.189504,0.746947,0.63719,0.713742,0.355885,0.134755,0.757212,0.10854,0.428866,0.999587,0.369844,0.391341,0.616219,0.395084,0.870913,0.204877,0.304394,0.838187,0.834364,0.928966,0.638817,0.636543,0.859189,0.276228,0.415875,0.978074,0.34211,0.961264,0.577715,0.915205,0.790306,0.479839,0.149785,0.938505,0.877104,0.444187,0.210112,0.769372,0.111914,0.903949,0.164988,0.311063,0.378599,0.065765,0.223534,0.724986,0.537921,0.0784785,0.090373,0.641519,0.133364,0.59985,0.0459573,0.130543,0.190147,0.53201,0.599923,0.355528,0.35338,0.581988,0.930072,0.681249,0.0386285,0.192282,0.996704,0.788757,0.74755,0.712074,0.506237,0.145907,0.752525,0.839744,0.348042,0.870648,0.290785,0.180277,0.428051,0.401964,0.198294,0.602417,0.787277,0.213996,0.576741,0.929023,0.734358,0.809205,0.63788,0.556607,0.217864,0.597666,0.115636,0.612372,0.755213,0.26735,0.365194,0.290869,0.792606,0.900887,0.317123,0.917548,0.35369,0.589343,0.111259,0.0788712,0.566467,0.705367,0.180103,0.0774,0.582054,0.890803,0.832085,0.77117,0.909402,0.0387412,0.78023,0.110975,0.333046,0.0656531,0.618728,0.448134,0.379293,0.239799,0.971363,0.478606,0.999406,0.673569,0.22217,0.535226,0.16051,0.0196753,0.478305,0.969848,0.515156,0.92101,0.320111,0.785542,0.698706,0.0386965,0.668839,0.817589,0.711027,0.754936,0.486531,0.804711,0.20497,0.698012,0.242518,0.0191138,0.540781,0.312651,0.80893,0.752744,0.783123,0.222486,0.353334,0.168679,0.61195,0.971444,0.0531598,0.424256,|0.536382,0.0624399,0.147318,0.21328,0.568494,0.572855,0.571822,0.645242,0.555177,0.412365,0.653027,0.196942,0.370725,0.51746,0.870466,0.427116,0.953624,0.426487,0.104007,0.311142,0.876746,0.794433,0.0583512,0.652943,0.905648,0.733567,0.109624,0.437626,0.916819,0.416703,0.292043,0.37503,0.452616,0.129628,0.508779,0.446818,0.215236,0.243497,0.263106,0.151784,0.870532,0.128202,0.160288,0.189595,0.9056,0.461617,0.103231,0.0534689,0.348928,0.374834,0.823191,0.145731,0.403038,0.459723,0.425705,0.00489479,0.402686,0.816658,0.947784,0.621009,0.205949,0.381453,0.890171,0.946385,0.22057,0.382212,0.102449,0.901512,0.915761,0.362561,0.801847,0.78073,0.111254,0.464182,0.585791,0.840572,0.822751,0.592816,0.25104,0.386204,0.383097,0.655733,0.42312,0.593956,0.514378,0.854694,0.801937,0.92386,0.847576,0.250854,0.877419,0.987787,0.134378,0.40432,0.625056,0.292237,0.530297,0.969249,0.952074,0.0144156,0.0127448,0.7846,0.377718,0.34284,0.879198,0.193604,0.0281273,0.981156,0.264435,0.228795,0.485831,0.0963907,0.56474,0.17462,0.803648,0.652369,0.562783,0.783999,0.374148,0.149285,0.687239,0.719675,0.277402,0.0290298,0.215066,0.26235,0.459723,0.434741,0.353727,0.849299,0.0837957,0.740244,0.387843,0.0519225,0.131209,0.192382,0.221193,0.411863,0.887977,0.594885,0.517041,0.530599,0.0608014,0.538153,0.387572,0.391012,0.346,0.541334,0.723829,0.463499,0.372372,0.877085,0.0242509,0.238535,0.913731,0.20917,0.952243,0.842925,0.509204,0.785484,0.502797,0.998312,0.341322,0.628744,0.956736,0.738726,0.267331,0.595546,0.567238,0.781629,0.140597,0.895951,0.771047,0.157291,0.913492,0.078044,0.201561,0.5365,0.952974,0.880202,0.289669,0.519899,0.237442,0.0289003,0.650429,0.883387,0.491083,0.29209,0.778621,0.82631,0.558728,0.380557,0.138867,0.484215,0.850246,0.823384,0.830809,0.207758,0.85314,0.93989,0.0412438,0.23466,0.740791,0.375829,0.734103,0.476473,0.753757,0.209546,0.936687,0.336561,0.403748,0.965632,0.193556,0.847966,0.147001,0.440367,0.529562,0.609392,0.559188,0.0189023,0.395567,0.5391,0.785869,0.680101,0.171104,0.447738,0.764062,0.626708,0.680505,0.647164,0.0139361,0.0662386,0.678988,0.143903,0.348711,0.35006,0.902831,0.605114,0.463161,0.936984,0.541381,0.0966944,0.677231,0.747985,0.711516,0.675187,0.780998,0.00175065,0.297562,0.784021,0.301407,0.966442,0.949632,0.10946,0.839579,0.617978,0.836231,0.615828,0.87873,0.828766,0.845613,0.354963,0.980313,0.241882,0.670986,0.21503,0.287782,0.740628,0.250448,0.743417,0.142989,0.331844,0.307171,0.308134,0.973582,0.160873,0.650688,0.258273,0.334018,0.0286775,0.67128,0.924412,0.903273,0.944937,0.725925,0.927992,0.484686,0.21652,0.455662,0.351819,0.593753,0.258646,0.893681,0.72721,0.58773,0.0217214,0.640476,0.478993,0.412941,0.776529,0.0400153,0.798796,0.68387,0.234471,0.943108,0.349937,0.154827,0.224343,0.363982,0.205932,0.645213,0.974615,0.228731,0.832336,0.209965,0.309946,0.397479,0.0416087,0.512949,0.856496,0.245721,0.826809,0.439038,0.0237168,0.757816,0.636972,0.635827,0.248724,0.399548,0.199064,0.0229968,0.0872749,0.118494,0.539282,0.552209,0.647924,0.863084,0.691814,0.0319057,0.313366,0.87046,0.238762,0.218938,0.0334903,0.0102164,0.147005,0.538802,0.302163,0.177548,0.670599,0.112508,0.146114,0.564804,0.45675,0.641796,0.323756,0.0273243,0.262295,0.438988,0.305468,0.0831921,0.635725,0.0139977,0.248858,0.604409,0.667977,0.638182,0.116681,0.144887,0.0637404,0.0530505,0.0399203,0.0231874,0.22498,0.907078,0.204817,0.245112,0.481062,0.0965786,0.904905,0.29241,0.24413,0.860031,0.00767577,0.432758,0.380591,0.287912,0.997116,0.0182485,0.99867,0.804134,0.77871,0.987052,0.143418,0.488902,0.998564,0.654302,0.609799,0.248083,0.894481,0.717371,0.285926,0.467593,0.515149,0.558801,0.363822,0.841668,0.410394,0.827759,0.0660772,0.759663,0.28072,0.482662,0.562379,0.598471,0.275876,0.731317,0.225451,0.0762564,0.422339,0.894868,0.850286,0.49347,0.604702,0.4082,0.0464917,0.356712,0.99602,0.279008,0.662544,0.805507,0.621429,0.353738,0.949102,0.397739,0.0319695,0.183552,0.545608,0.97381,0.469113,0.188967,0.127797,0.218708,0.757965,0.435369,0.480194,0.259562,0.90905,0.211257,0.0615922,0.815213,0.784272,0.899306,0.095332,0.520308,0.560722,0.476978,0.939438,0.359827,0.356964,0.28991,0.877111,0.738892,0.746879,0.548757,0.12489,0.356118,0.6368,0.65608,0.0732815,0.256575,0.66498,0.0484525,0.46737,0.667584,0.289941,0.390065,0.600815,0.690059,0.422789,0.255681,0.0994323,0.294906,0.924386,0.636399,0.366423,0.839995,0.34357,0.233781,0.254015,0.3381,0.296529,0.851244,0.0108738,0.0239669,0.276831,0.446982,0.132538,0.204026,0.553765,0.434995,0.416104,0.903565,0.74249,0.317893,0.829712,0.84343,0.574448,0.769047,0.713908,0.960066,0.18694,0.622487,0.62998,0.477394,0.634618,0.675482,0.209173,0.120985,0.930533,0.247811,0.19267,0.34098,0.515432,0.118802,0.124276,0.857782,0.891517,0.339051,0.423944,0.714989,0.937196,0.498609,0.473156,0.763524,0.897105,0.952571,0.259528,0.449316,0.856914,0.87987,0.52487,0.347692,0.0599189,0.745578,0.948114,0.138661,0.640126,0.585076,0.572235,0.216492,0.767638,0.095919,0.814041,0.548195,0.618636,0.961399,0.293436,0.444404,0.797706,0.323935,0.251589,0.449642,0.79983,0.839517,0.0197298,0.890074,0.716938,0.63987,0.339123,0.44817,0.332481,0.503318,0.0644348,0.0710466,0.0150471,0.552524,0.44371,0.575526,0.0616871,0.889101,0.153323,0.593436,0.504905,0.707387,0.118311,0.514706,0.434201,0.707619,0.213987,0.611826,0.469624,0.850066,0.965123,0.15063,0.970542,0.238333,0.825579,0.861661,0.475797,0.476716,0.0346195,0.927461,0.574252,0.902345,0.826273,0.355867,0.785198,0.495714,0.931886,0.972688,0.386091,0.0691218,0.316277,0.419335,0.115605,0.114092,0.270592,0.967929,0.337293,0.318433,0.17372,0.845411,0.877408,0.367301,0.355843,0.204854,0.045923,0.871461,0.775031,0.812698,0.249717,0.133438,0.383182,0.632966,0.473471,0.869652,0.750942,0.789855,0.930257,0.520541,0.86855,0.613547,0.277798,0.608302,0.788529,0.33418,0.739214,0.0981009,0.228349,0.0501403,0.086618,0.775347,0.564605,0.328015,0.76405,0.61112,0.0955064,0.756455,0.278,0.936851,0.497104,0.43708,0.484993,0.27082,0.194796,0.344119,0.0158535,0.492291,0.223244,0.65636,0.693142,0.919924,0.650596,0.504355,0.975109,0.388265,0.747069,0.767641,0.282936,0.460457,0.633718,0.728768,0.101767,0.582331,0.568641,0.729829,0.614402,0.27844,0.174344,0.423852,0.241965,0.571021,0.720097,0.389189,0.506836,0.532023,0.966057,0.821235,0.925904,0.956318,0.141741,0.659421,0.179506,0.983493,0.831917,0.826405,0.594132,0.648276,0.0361716,0.434871,0.217439,0.684854,0.918411,0.700925,0.230003,0.995953,0.271888,0.873195,0.400744,0.917196,0.372154,0.495865,0.289286,0.426326,0.762787,0.61217,0.748656,0.984334,0.227115,0.459117,0.529413,0.595855,0.912009,0.572139,0.587616,0.316751,0.19693,0.0877601,0.453906,0.534394,0.698196,0.0870627,0.175622,0.0025664,0.488963,0.985684,0.328696,0.644245,0.743346,0.346244,0.0673447,0.600969,0.832993,0.350273,0.114709,0.391914,0.815393,0.382568,0.80195,0.25735,0.0798034,0.934452,0.176599,0.939263,0.645322,0.340126,0.723141,0.599547,0.398932,0.931927,0.259276,0.832992,0.744486,0.470449,0.287595,0.326806,0.417279,0.684447,0.340577,0.42006,0.943609,0.781407,0.473219,0.39393,0.796584,0.650735,0.466939,0.405893,0.90319,0.566123,0.180801,0.579945,0.117777,0.467751,0.649119,0.304683,0.955843,0.839891,0.764473,0.600226,0.590905,0.010875,0.416914,0.31978,0.566852,0.220199,0.97167,0.771021,0.297715,0.751342,0.059374,0.694917,0.148194,0.337075,0.966329,0.465055,0.520895,0.837064,0.85157,0.144717,0.113515,0.704135,0.0888181,0.325191,0.550949,0.464755,0.250069,0.0318851,0.108706,0.468894,0.778616,0.884779,0.819346,0.0615763,0.48067,0.363491,0.081609,0.566911,0.465498,0.969898,0.380014,0.540697,0.908604,0.0162798,0.34008,0.990784,0.376666,0.388757,0.881294,0.0496731,0.0753478,0.683815,0.452379,0.329252,0.890104,0.348704,0.449099,0.218301,0.404508,0.967498,0.0105591,0.758109,0.0847459,0.957837,0.996456,0.46034,0.972147,0.994754,0.731214,0.928362,0.73433,0.505238,0.662555,0.0786113,0.0367529,0.849483,0.638423,0.719165,0.0874677,0.595524,0.422951,0.45531,0.584151,0.341069,0.45141,0.796766,0.622787,0.202399,0.00737882,0.0842454,0.293125,0.30956,0.510576,0.303397,0.338781,0.224718,0.504036,0.535423,0.592302,0.945678,0.211251,0.644034,0.0523481,0.454143,0.780268,0.230721,0.837504,0.218275,0.45792,0.595934,0.86859,0.677142,0.22429,0.152273,0.813961,0.146702,0.165519,0.200583,0.73078,0.115681,0.813054,0.813816,0.997895,0.385627,0.103224,0.187586,0.154251,0.107314,0.350611,0.260645,0.434701,0.950913,0.773138,0.351888,0.0925144,0.36069,0.545109,0.918078,0.28399,0.803505,0.269947,0.878602,0.644295,0.0224058,0.069139,0.0656521,0.430544,0.956953,0.303354,0.540828,0.749728,0.315573,0.201585,0.150805,0.860339,0.165419,0.615365,0.817179,0.119056,0.10629,0.758615,0.883668,0.853534,0.471313,0.393493,0.935073,0.536173,0.491751,0.428317,0.333602,0.312795,0.446251,0.811516,0.395883,0.451756,0.314058,0.91309,0.269608,0.918518,0.073688,0.630975,0.486817,0.0268065,0.305957,0.940216,0.020839,0.181683,0.435333,0.717779,0.0488707,0.00833327,0.594548,0.556052,0.204595,0.250727,0.778052,0.518674,0.837583,0.167525,|0.755889,0.457571,0.229851,0.409802,0.693658,0.210058,0.151962,0.593183,0.103734,0.836292,0.980067,0.685312,0.45305,0.595643,0.738829,0.910352,0.610203,0.355852,0.413288,0.905812,0.812728,0.465578,0.417235,0.779746,0.176068,0.869409,0.571586,0.908359,0.645524,0.599787,0.135028,0.68845,0.808879,0.948379,0.766066,0.0615359,0.440924,0.174004,0.114545,0.211422,0.916479,0.725661,0.903233,0.49722,0.0880393,0.639934,0.230034,0.606683,0.617218,0.407038,0.193287,0.578303,0.670768,0.450557,0.93775,0.951808,0.520309,0.227859,0.947842,0.0731399,0.232816,0.277968,0.230588,0.972902,0.647239,0.967673,0.471052,0.333797,0.300252,0.0728867,0.32176,0.461472,0.366033,0.126188,0.327814,0.0803244,0.63769,0.761008,0.0277767,0.0107316,0.980058,0.0857884,0.281705,0.955439,0.218493,0.93207,0.928088,0.644913,0.770402,0.984566,0.756929,0.474297,0.687604,0.346371,0.0591424,0.181797,0.00862086,0.970638,0.895844,0.025326,0.615464,0.0152874,0.126503,0.250833,0.272471,0.615591,0.812965,0.399524,0.308471,0.624328,0.320998,0.775786,0.352178,0.317114,0.145507,0.305861,0.68446,0.243009,0.745903,0.574802,0.0334463,0.19229,0.377793,0.960825,0.350957,0.208659,0.185429,0.484994,0.389971,0.525914,0.994052,0.736589,0.254928,0.971775,0.818233,0.278226,0.540758,0.562221,0.418116,0.364128,0.300744,0.795502,0.989859,0.664964,0.288187,0.650236,0.992465,0.502853,0.209722,0.544569,0.964629,0.155009,0.434314,0.241495,0.707533,0.347044,0.039161,0.00969774,0.268307,0.408288,0.577821,0.895102,0.114118,0.848783,0.736406,0.478153,0.866169,0.517911,0.982053,0.112363,0.994251,0.250063,0.408559,0.929823,0.637398,0.38164,0.839756,0.401866,0.0956342,0.360406,0.799162,0.712538,0.0611321,0.71712,0.0541817,0.484855,0.450938,0.15385,0.083479,0.896942,0.711928,0.741067,0.804281,0.695988,0.802372,0.265874,0.653524,0.181636,0.763033,0.0346084,0.803297,0.926998,0.56587,0.652491,0.423413,0.912626,0.746131,0.572845,0.635675,0.509037,0.448508,0.522634,0.295499,0.800899,0.348594,0.849186,0.0375808,0.213044,0.54591,0.570497,0.773278,0.675773,0.907209,0.803829,0.129049,0.998309,0.7395,0.464943,0.106105,0.343809,0.417935,0.0727084,0.60003,0.618376,0.977674,0.380358,0.890385,0.686492,0.378425,0.585748,0.305066,0.826661,0.0120702,0.187272,0.687104,0.702527,0.678516,0.357552,0.290917,0.231777,0.0623062,0.8392,0.498761,0.705834,0.784412,0.939271,0.611161,0.519329,0.00358623,0.127455,0.579508,0.890943,0.591026,0.223265,0.571086,0.580274,0.00813496,0.00576115,0.796726,0.327176,0.937723,0.524018,0.269117,0.652211,0.545225,0.563719,0.230589,0.103111,0.26852,0.296495,0.159901,0.723168,0.588524,0.924133,0.0564704,0.765213,0.700339,0.12715,0.948385,0.578246,0.748637,0.475296,0.252125,0.666355,0.711201,0.68836,0.613809,0.733387,0.938001,0.356869,0.78216,0.347463,0.970609,0.357273,0.173496,0.254732,0.877007,0.146285,0.951566,0.372037,0.825357,0.843346,0.538784,0.832588,0.989064,0.243758,0.698456,0.26624,0.127167,0.112082,0.14303,0.837502,0.114376,0.995971,0.571215,0.544407,0.326342,0.714196,0.602559,0.469578,0.504788,0.692205,0.773152,0.153564,0.198544,0.40503,0.891991,0.346535,0.121967,0.273141,0.158108,0.509122,0.775747,0.700355,0.274271,0.173202,0.716338,0.691144,0.0445467,0.0424421,0.332909,0.542817,0.042627,0.357061,0.838862,0.0605028,0.0710981,0.635798,0.807956,0.125527,0.946469,0.462811,0.431949,0.150706,0.197077,0.597041,0.520998,0.933835,0.535301,0.482608,0.645868,0.187936,0.913745,0.576583,0.207436,0.792216,0.263275,0.361557,0.84073,0.464302,0.717279,0.04752,0.716573,0.395913,0.570169,0.254448,0.730149,0.782165,0.182918,0.316246,0.872425,0.362619,0.819435,0.00848722,0.808834,0.188911,0.982188,0.0412325,0.128346,0.623152,0.931312,0.651554,0.732402,0.13667,0.264006,0.105546,0.818718,0.372492,0.852791,0.638192,0.433549,0.839521,0.54191,0.189304,0.826237,0.0720371,0.52663,0.456907,0.177853,0.936873,0.315832,0.521546,0.0196005,0.522091,0.5417,0.961568,0.0952819,0.140719,0.687648,0.930349,0.021664,0.689057,0.844161,0.683307,0.753747,0.901699,0.672569,0.234356,0.0210155,0.954263,0.492123,0.190093,0.893524,0.501558,0.910653,0.450798,0.0607587,0.321664,0.807633,0.52294,0.00962818,0.661466,0.16555,0.951692,0.933974,0.42097,0.432342,0.0381272,0.997461,0.440896,0.670948,0.009224,0.687562,0.585928,0.147671,0.0388495,0.451888,0.468151,0.55587,0.504343,0.000453353,0.99128,0.655059,0.280801,0.171848,0.762491,0.0513498,0.0682119,0.152843,0.504883,0.0868658,0.388744,0.813835,0.869505,0.975265,0.932991,0.744328,0.314368,0.040795,0.579215,0.0766744,0.154391,0.120012,0.61464,0.105281,0.750764,0.550372,0.877616,0.597563,0.501229,0.252987,0.541973,0.669431,0.928446,0.276918,0.556276,0.281964,0.298682,0.194696,0.0890491,0.915202,0.0287008,0.373601,0.961129,0.498988,0.53794,0.501249,0.0180402,0.749844,0.635342,0.0589037,0.212834,0.189393,0.803023,0.61365,0.462623,0.093925,0.0471765,0.475075,0.716544,0.511884,0.967149,0.693659,0.244764,0.473503,0.748846,0.720306,0.649955,0.560825,0.233373,0.499813,0.33458,0.0653596,0.993918,0.0966443,0.802785,0.395962,0.493355,0.0894158,0.925235,0.196048,0.341495,0.235237,0.946238,0.255203,0.0387637,0.0604988,0.647564,0.438213,0.51366,0.19795,0.0866584,0.569073,0.0961529,0.964506,0.720166,0.121012,0.649415,0.555317,0.704054,0.533687,0.139717,0.156169,0.36446,0.573136,0.140145,0.109777,0.259856,0.753818,0.934966,0.195654,0.332964,0.0370342,0.212419,0.284437,0.654821,0.72308,0.350742,0.669879,0.0747645,0.353704,0.449918,0.494336,0.100463,0.00947887,0.55554,0.140597,0.240331,0.602373,0.18624,0.702894,0.0967979,0.703761,0.492464,0.90072,0.133521,0.60812,0.435863,0.632661,0.564414,0.642469,0.525203,0.931313,0.398792,0.568449,0.190717,0.106271,0.436635,0.696635,0.0266162,0.114335,0.710323,0.25693,0.642374,0.759878,0.886311,0.874717,0.741953,0.0648106,0.598614,0.958688,0.4114,0.288256,0.818381,0.418671,0.167934,0.978499,0.0477116,0.600743,0.534633,0.646329,0.0199941,0.303434,0.0676402,0.788485,0.949513,0.0937583,0.0598712,0.859227,0.698674,0.389428,0.899241,0.270976,0.732991,0.070628,0.0131362,0.709056,0.450053,0.990182,0.763928,0.639047,0.357126,0.851061,0.763874,0.283343,0.0478962,0.102815,0.64314,0.762842,0.898427,0.336382,0.220202,0.27316,0.584354,0.146245,0.191047,0.621854,0.607505,0.104738,0.775138,0.0663904,0.221586,0.963037,0.916789,0.7336,0.14705,0.222056,0.824169,0.117383,0.852842,0.278314,0.261228,0.427704,0.580953,0.602166,0.554607,0.440944,0.627432,0.518498,0.476055,0.400816,0.455771,0.0507543,0.857496,0.864167,0.881892,0.367119,0.413232,0.649326,0.502291,0.284733,0.497016,0.445353,0.309794,0.281711,0.0502681,0.705116,0.804041,0.146814,0.0369872,0.578057,0.929484,0.958067,0.150774,0.0948954,0.625161,0.95351,0.0948938,0.211047,0.602831,0.09878,0.0283187,0.683313,0.0662774,0.575217,0.332692,0.0138169,0.878158,0.825032,0.751373,0.594924,0.15329,0.449793,0.187494,0.168726,0.825057,0.254801,0.181708,0.415397,0.874311,0.867415,0.283303,0.231646,0.90472,0.238098,0.366711,0.816062,0.598695,0.147831,0.250009,0.575668,0.128504,0.233486,0.579221,0.881004,0.363535,0.505122,0.294423,0.409938,0.226578,0.476702,0.149325,0.705492,0.45495,0.743846,0.756451,0.163725,0.93827,0.334542,0.452971,0.0935139,0.0746171,0.792383,0.417862,0.612458,0.292829,0.231227,0.541442,0.556914,0.0347275,0.251254,0.52537,0.888387,0.657308,0.064264,0.159661,0.344766,0.373464,0.41602,0.286548,0.0330868,0.385468,0.289137,0.539688,0.269138,0.703656,0.0326607,0.234018,0.657954,0.578308,0.723834,0.249009,0.767744,0.0397591,0.702975,0.36466,0.706268,0.9803,0.848267,0.7632,0.531592,0.797233,0.525814,0.7394,0.763016,0.49921,0.435542,0.757043,0.96917,0.455147,0.153773,0.226966,0.686052,0.253477,0.876237,0.507201,0.674605,0.511083,0.803039,0.852968,0.206249,0.563884,0.898499,0.424985,0.558592,0.131006,0.302408,0.542185,0.323915,0.188539,0.834597,0.602957,0.294488,0.2346,0.449701,0.989764,0.969994,0.436595,0.0574197,0.725156,0.345077,0.933022,0.679391,0.859527,0.804842,0.886351,0.442026,0.976198,0.103049,0.762297,0.274156,0.265573,0.921332,0.651644,0.39718,0.392278,0.198102,0.329952,0.461286,0.563286,0.553355,0.635639,0.768774,0.609844,0.241099,0.735319,0.943666,0.246102,0.712369,0.457341,0.453971,0.00406039,0.0995834,0.47982,0.565957,0.219636,0.299019,0.782571,0.904997,0.746984,0.288712,0.257994,0.769814,0.123158,0.0861377,0.515175,0.742386,0.488735,0.787416,0.390925,0.434557,0.486849,0.0873855,0.0510321,0.661148,0.161534,0.0476902,0.0448797,0.80185,0.471242,0.179186,0.34638,0.632549,0.580718,0.486692,0.866329,0.589788,0.824758,0.539824,0.516696,0.167144,0.0436773,0.429844,0.398516,0.741527,0.685696,0.422324,0.483211,0.917112,0.10122,0.368389,0.754201,0.783885,0.891123,0.583699,0.0427044,0.277953,0.833598,0.0805487,0.204052,0.846132,0.966961,0.239005,0.0951903,0.361384,0.811689,0.367093,0.580677,0.434813,0.0973167,0.500091,0.502178,0.665065,0.569822,0.47783,0.316583,0.191075,0.278198,0.357282,0.370196,0.246605,0.354363,0.380065,0.0124449,0.00323105,0.562873,0.0670522,0.70381,0.804917,0.615191,0.230615,0.28604,0.407734,0.820484,0.686853,0.350223,0.445561,0.954241,0.947491,0.00875252,0.596668,0.183057,0.640536,0.0249185,0.73007,0.175844,0.618104,0.770303,0.123855,0.733522,|0.457175,0.363394,0.5122,0.0634723,0.425167,0.305166,0.0430433,0.397938,0.637109,0.65832,0.252794,0.796344,0.112375,0.491391,0.519645,0.659368,0.235273,0.80445,0.846081,0.190548,0.949367,0.461615,0.253177,0.398099,0.367401,0.97216,0.847743,0.185157,0.999874,0.683618,0.518481,0.612363,0.708551,0.857398,0.267752,0.963069,0.522037,0.129027,0.235486,0.136332,0.765017,0.614631,0.402226,0.417148,0.258773,0.525867,0.0118908,0.448788,0.226479,0.682703,0.433613,0.168677,0.710643,0.111407,0.00722814,0.531472,0.761616,0.243555,0.51025,0.00322586,0.568729,0.686814,0.328494,0.891416,0.981573,0.167474,0.687259,0.448453,0.82529,0.666886,0.742983,0.315164,0.346853,0.0394439,0.772094,0.844226,0.739776,0.29519,0.479135,0.807813,0.367761,0.199276,0.649058,0.5765,0.759326,0.738372,0.735149,0.587859,0.920058,0.275074,0.999224,0.696717,0.225389,0.866977,0.13384,0.132767,0.41277,0.407906,0.529226,0.572475,0.00178665,0.967423,0.146789,0.619883,0.54484,0.230469,0.466762,0.946308,0.532284,0.943999,0.392181,0.294884,0.287198,0.380681,0.371356,0.362808,0.171285,0.480149,0.549296,0.0635843,0.685451,0.990635,0.39977,0.472986,0.255791,0.388836,0.112243,0.955575,0.239395,0.880315,0.524665,0.150399,0.0032171,0.228035,0.454128,0.33249,0.327343,0.239837,0.564257,0.482306,0.21014,0.265551,0.125166,0.744518,0.812171,0.351839,0.951447,0.985703,0.513904,0.642918,0.0712911,0.635926,0.568626,0.208319,0.369762,0.467556,0.13124,0.443409,0.295462,0.962806,0.820193,0.447503,0.638469,0.427872,0.414894,0.532586,0.568965,0.47639,0.231997,0.0209839,0.119321,0.700287,0.425898,0.664986,0.183345,0.210381,0.359143,0.760013,0.736609,0.668634,0.144939,0.181311,0.0126243,0.204827,0.720929,0.306384,0.139751,0.114065,0.698535,0.846147,0.387109,0.934001,0.203752,0.322589,0.808881,0.737662,0.48382,0.257102,0.997295,0.0445832,0.758147,0.143896,0.846399,0.143917,0.5499,0.224303,0.548156,0.0147036,0.779542,0.687297,0.227055,0.532993,0.364447,0.470997,0.883029,0.114414,0.518134,0.0387686,0.831651,0.990704,0.506937,0.910691,0.0114819,0.938458,0.415371,0.150627,0.455015,0.702782,0.687575,0.429687,0.593074,0.480978,0.923038,0.906627,0.772184,0.591326,0.561897,0.0568625,0.317176,0.921991,0.47419,0.0867898,0.920867,0.66925,0.874974,0.624181,0.238918,0.652928,0.201437,0.808605,0.649969,0.736389,0.346471,0.922602,0.0457919,0.176087,0.945682,0.729521,0.925517,0.899297,0.828675,0.180098,0.0895913,0.748587,0.0914413,0.684431,0.000545561,0.113349,0.434729,0.525674,0.0336586,0.353793,0.290309,0.743213,0.140232,0.751629,0.245911,0.967968,0.00205177,0.828269,0.57216,0.99801,0.720138,0.320249,0.185637,0.0874292,0.722529,0.679384,0.577304,0.0467787,0.247374,0.0553599,0.0630739,0.143609,0.705651,0.313595,0.986091,0.536451,0.181496,0.494277,0.0864226,0.70251,0.0942308,0.390534,0.755529,0.267462,0.819664,0.130055,0.299714,0.785509,0.0480677,0.0539803,0.833426,0.423546,0.271398,0.723347,0.715513,0.548073,0.479326,0.66266,0.956641,0.341426,0.148492,0.673688,0.290917,0.689741,0.727395,0.40805,0.0836948,0.122188,0.738646,0.171907,0.300221,0.718102,0.44781,0.661182,0.279523,0.537008,0.435811,0.322559,0.583297,0.882972,0.000571847,0.27717,0.560978,0.253868,0.620087,0.118756,0.37316,0.198608,0.788802,0.463131,0.736777,0.431973,0.443733,0.884774,0.0851912,0.122293,0.781248,0.85301,0.0294492,0.784072,0.412301,0.228921,0.266125,0.0802917,0.0196293,0.534846,0.127668,0.140002,0.438038,0.150555,0.302918,0.289021,0.315101,0.405019,0.873427,0.528989,0.770438,0.481309,0.958832,0.938434,0.234092,0.994045,0.582192,0.603961,0.70281,0.25344,0.202831,0.668523,0.742762,0.451441,0.973224,0.206575,0.342599,0.767788,0.073442,0.604988,0.21238,0.764332,0.470469,0.552119,0.364718,0.224123,0.201121,0.372448,0.827995,0.607153,0.797917,0.0972169,0.350809,0.915848,0.823877,0.969668,0.0420337,0.488524,0.530861,0.226153,0.662207,0.381372,0.538596,0.230697,0.703983,0.87,0.0706848,0.332685,0.113994,0.631725,0.319594,0.976987,0.68116,0.764968,0.664685,0.182112,0.45737,0.949921,0.296123,0.259989,0.794141,0.644957,0.83373,0.0561116,0.691951,0.826042,0.200694,0.150184,0.951852,0.855507,0.0528158,0.870428,0.631344,0.80714,0.948271,0.160371,0.500095,0.694358,0.686973,0.657532,0.822882,0.0775458,0.788063,0.722234,0.349977,0.552471,0.558376,0.175927,0.0672492,0.594089,0.644524,0.108758,0.629089,0.591458,0.518618,0.279657,0.163044,0.521914,0.0165356,0.0866816,0.372457,0.437839,0.123496,0.435215,0.0359215,0.336447,0.632458,0.0463172,0.218584,0.920454,0.242417,0.488417,0.875952,0.535969,0.690415,0.633685,0.662476,0.327583,0.413213,0.963639,0.602638,0.139717,0.800374,0.410069,0.662648,0.759681,0.556796,0.506525,0.674469,0.703845,0.240215,0.0392006,0.0534542,0.918463,0.0894618,0.797452,0.00287396,0.716061,0.805924,0.618243,0.88096,0.194897,0.376887,0.368222,0.0268571,0.888599,0.60725,0.932497,0.675021,0.1373,0.967499,0.439559,0.955879,0.269536,0.76132,0.795476,0.796562,0.828513,0.331819,0.531882,0.340627,0.890026,0.880056,0.518159,0.762218,0.159324,0.776906,0.739591,0.702282,0.890152,0.40526,0.530325,0.232948,0.295442,0.72486,0.311577,0.112535,0.284604,0.373821,0.909407,0.0145958,0.270062,0.791122,0.49561,0.000570476,0.95539,0.79259,0.495391,0.649784,0.909064,0.0712613,0.83901,0.781246,0.259799,0.993815,0.495543,0.464059,0.0386901,0.488791,0.382401,0.550165,0.725741,0.852581,0.670685,0.0489211,0.915391,0.0341927,0.472459,0.969251,0.147852,0.869447,0.585614,0.705857,0.937917,0.451043,0.549938,0.725007,0.327704,0.396536,0.146218,0.550362,0.395055,0.571481,0.396839,0.613142,0.161751,0.0778386,0.53268,0.980259,0.707162,0.595749,0.763354,0.103994,0.657807,0.151281,0.257999,0.400857,0.43059,0.803055,0.502914,0.0682817,0.296225,0.517996,0.963269,0.47783,0.0573577,0.461038,0.808139,0.51422,0.722536,0.135322,0.353663,0.576156,0.787749,0.0342321,0.707024,0.653215,0.0554917,0.538536,0.702775,0.789154,0.245164,0.198592,0.442767,0.835853,0.166528,0.367134,0.248553,0.523242,0.388317,0.315115,0.745516,0.378747,0.94954,0.282584,0.196268,0.00956732,0.999196,0.584686,0.346013,0.0345506,0.432067,0.662131,0.937746,0.771903,0.27762,0.91663,0.950187,0.684055,0.106734,0.888069,0.0313925,0.803655,0.52146,0.219401,0.481882,0.389082,0.396883,0.193242,0.0675551,0.368562,0.363767,0.270468,0.698101,0.64776,0.42844,0.308855,0.677291,0.799915,0.161232,0.198429,0.0123466,0.750817,0.805893,0.0299481,0.712246,0.403998,0.818837,0.872634,0.200024,0.40938,0.295683,0.03856,0.0411902,0.0115896,0.413329,0.738489,0.348661,0.912152,0.156446,0.747713,0.0762884,0.206105,0.695932,0.269881,0.48639,0.257601,0.686285,0.85185,0.94011,0.762191,0.347373,0.402907,0.460783,0.798554,0.71637,0.0160928,0.377127,0.889457,0.915119,0.418532,0.00997263,0.665087,0.2413,0.991378,0.959561,0.508557,0.999296,0.822291,0.11119,0.822758,0.594356,0.742347,0.028271,0.208513,0.572549,0.385952,0.846703,0.588865,0.814105,0.413904,0.817972,0.05981,0.197127,0.255492,0.0289542,0.512216,0.910521,0.568739,0.814957,0.506263,0.950854,0.394115,0.561668,0.941742,0.617008,0.993626,0.821334,0.334662,0.722028,0.142057,0.140413,0.157935,0.633921,0.854943,0.275701,0.468903,0.896799,0.952885,0.915312,0.521027,0.419071,0.670049,0.361313,0.700488,0.338733,0.475115,0.840817,0.369459,0.968794,0.676851,0.0619103,0.251751,0.0249343,0.899938,0.887803,0.0830477,0.0227351,0.54282,0.641728,0.367829,0.498571,0.977308,0.459298,0.345408,0.989951,0.146569,0.153952,0.129899,0.371751,0.554993,0.78555,0.617712,0.70866,0.269947,0.388284,0.853586,0.138988,0.478292,0.510458,0.645846,0.593076,0.231356,0.178275,0.897967,0.908146,0.515532,0.397526,0.813159,0.269811,0.570953,0.947213,0.0683005,0.0181571,0.565103,0.600413,0.0141992,0.168507,0.38264,0.28958,0.0478564,0.995647,0.782342,0.101659,0.0406393,0.454868,0.743521,0.70606,0.825306,0.716663,0.748735,0.186223,0.144048,0.192804,0.905629,0.624696,0.624667,0.810163,0.0358942,0.800118,0.0454947,0.236165,0.339778,0.502531,0.0776804,0.389527,0.570754,0.528912,0.375831,0.799345,0.980121,0.305729,0.621394,0.891833,0.199361,0.153434,0.189919,0.937193,0.105953,0.157771,0.362322,0.42013,0.959698,0.248682,0.604578,0.286047,0.378071,0.365574,0.0404986,0.76324,0.934688,0.68633,0.792559,0.626864,0.0874955,0.157846,0.78349,0.599726,0.167898,0.0623305,0.0765916,0.362279,0.794638,0.629553,0.00467545,0.0228555,0.474705,0.844971,0.681977,0.624077,0.652003,0.431008,0.31413,0.130837,0.677406,0.874179,0.789871,0.416795,0.652768,0.992635,0.535114,0.260468,0.227065,0.0771294,0.273794,0.334218,0.603565,0.45917,0.406698,0.694068,0.0304746,0.38831,0.155317,0.79998,0.493269,0.837429,0.0274833,0.0264472,0.855003,0.797879,0.285249,0.813632,0.872076,0.908683,0.0515312,0.631566,0.309263,0.63753,0.0453312,0.195493,0.389873,0.392682,0.714843,0.909567,0.608407,0.286063,0.130352,0.238106,0.599041,0.161387,0.165515,0.913081,0.661263,0.627953,0.327281,0.750606,0.118929,0.341019,0.615974,0.928016,0.723093,0.221852,0.610295,0.0138059,0.590646,0.481433,0.588884,0.387684,0.799399,0.974495,0.905949,0.18982,0.741917,0.996097,0.928359,0.846401,0.817977,0.95891,0.413224,0.79784,0.895297,0.124505,0.0569494,0.995008,0.308884,0.186332,0.622039,0.290089,0.877939,0.839507,0.815784,0.0744085,|0.796796,0.546625,0.178005,0.24349,0.256671,0.891444,0.808467,0.250134,0.873507,0.191991,0.975588,0.514152,0.665693,0.471161,0.913031,0.653944,0.0724594,0.178726,0.498735,0.210837,0.576503,0.75108,0.358783,0.714941,0.916942,0.939652,0.741182,0.100859,0.00669044,0.0399739,0.881145,0.172991,0.92861,0.323383,0.621385,0.6337,0.177098,0.0379357,0.434334,0.869463,0.762237,0.699486,0.477422,0.41419,0.639359,0.822182,0.738045,0.329506,0.463173,0.0408118,0.351904,0.568277,0.943259,0.214442,0.935042,0.315059,0.248948,0.870834,0.798384,0.997117,0.163128,0.390102,0.371866,0.160465,0.964845,0.670721,0.316306,0.322694,0.826576,0.963645,0.420127,0.0307913,0.310823,0.604812,0.214147,0.228229,0.759444,0.880951,0.0145673,0.226149,0.763575,0.844024,0.0168999,0.841616,0.528354,0.462936,0.535647,0.781238,0.713724,0.26596,0.687237,0.21926,0.177691,0.378983,0.72533,0.241665,0.0393337,0.759606,0.889538,0.936286,0.258728,0.476944,0.910482,0.178631,0.529116,0.350652,0.512432,0.754194,0.534135,0.514044,0.730632,0.932358,0.916874,0.0929656,0.323504,0.625061,0.526777,0.256072,0.0889742,0.961034,0.180108,0.635842,0.0537784,0.689825,0.959427,0.778609,0.521249,0.898843,0.738345,0.974689,0.193445,0.220004,0.90252,0.374985,0.766082,0.41506,0.699171,0.874816,0.971163,0.12392,0.524521,0.687819,0.667064,0.533312,0.689033,0.923433,0.437802,0.537315,0.367673,0.956289,0.709756,0.993391,0.0235382,0.224321,0.382448,0.652716,0.931097,0.547747,0.506931,0.762529,0.52508,0.615523,0.548844,0.642223,0.278757,0.949219,0.670708,0.168419,0.329398,0.0826284,0.656018,0.299053,0.651661,0.133303,0.257936,0.0684396,0.952519,0.164378,0.427087,0.385561,0.000292182,0.29613,0.743823,0.501653,0.123069,0.254741,0.0543729,0.679473,0.611037,0.544266,0.910533,0.463532,0.0714666,0.510594,0.253246,0.747792,0.337716,0.610027,0.984049,0.681456,0.703787,0.555023,0.715218,0.0195324,0.426949,0.778714,0.62595,0.103183,0.223195,0.901578,0.214491,0.517402,0.313246,0.259193,0.148225,0.688282,0.639043,0.841918,0.20094,0.190965,0.21152,0.562804,0.95804,0.0867434,0.313653,0.425958,0.368014,0.161503,0.0182084,0.479741,0.150908,0.845162,0.470786,0.457734,0.596314,0.272114,0.424366,0.805127,0.227302,0.626141,0.518526,0.784891,0.025476,0.0246483,0.582864,0.261737,0.335487,0.0885987,0.949519,0.942699,0.816072,0.772679,0.852517,0.850118,0.992665,0.939814,0.149369,0.917898,0.578596,0.932354,0.320745,0.189043,0.459081,0.276439,0.823018,0.919057,0.92492,0.621845,0.817012,0.36193,0.146757,0.553301,0.126725,0.101508,0.966522,0.00962245,0.844284,0.301515,0.773854,0.247485,0.567608,0.608184,0.211279,0.277319,0.292603,0.692943,0.171165,0.881553,0.626222,0.762689,0.545023,0.149136,0.671277,0.987955,0.841704,0.271692,0.435071,0.52923,0.866048,0.814549,0.536274,0.436329,0.782659,0.106395,0.109442,0.354406,0.433572,0.256372,0.408206,0.119791,0.183394,0.932898,0.877534,0.674609,0.845554,0.322686,0.537636,0.534365,0.699725,0.120715,0.481973,0.184208,0.310566,0.438202,0.525063,0.572355,0.810657,0.701283,0.767372,0.357055,0.353412,0.354078,0.965281,0.757405,0.205592,0.216641,0.69205,0.259386,0.321541,0.563131,0.883309,0.37657,0.63311,0.513864,0.26111,0.0914445,0.985528,0.46751,0.164164,0.470616,0.95979,0.875502,0.216761,0.661746,0.682163,0.276504,0.661192,0.0846974,0.219648,0.347802,0.0270884,0.335691,0.976187,0.682908,0.420292,0.717162,0.166444,0.52602,0.713641,0.448744,0.883381,0.714544,0.679825,0.0755211,0.595169,0.749478,0.0313004,0.756392,0.0509781,0.564132,0.245247,0.483601,0.511371,0.99557,0.702822,0.596441,0.872212,0.130975,0.874513,0.777448,0.595343,0.541585,0.900909,0.17909,0.67065,0.231639,0.709834,0.916118,0.954248,0.663654,0.648809,0.607126,0.661097,0.701627,0.532452,0.699899,0.90397,0.732003,0.808817,0.697404,0.144066,0.485751,0.940528,0.993808,0.700615,0.215619,0.119423,0.256159,0.698127,0.0391052,0.294103,0.917146,0.62715,0.928946,0.755946,0.213797,0.823522,0.784709,0.368431,0.392882,0.600864,0.578545,0.444703,0.570799,0.28419,0.0468116,0.94818,0.418229,0.399556,0.334682,0.355329,0.0807741,0.904539,0.864777,0.837946,0.939085,0.887635,0.969145,0.0171162,0.388873,0.85312,0.14481,0.208084,0.327668,0.488063,0.859712,0.812269,0.689942,0.976595,0.548594,0.707539,0.72433,0.290327,0.372559,0.521276,0.0515431,0.649224,0.997409,0.252797,0.454207,0.192949,0.600061,0.594424,0.445861,0.632936,0.937168,0.099739,0.737701,0.750622,0.0950368,0.22941,0.859557,0.842852,0.263016,0.242082,0.14417,0.319578,0.554547,0.522375,0.971108,0.833547,0.391446,0.650275,0.192063,0.547993,0.26905,0.992296,0.0467703,0.289174,0.0826734,0.250886,0.0583774,0.857814,0.565488,0.954717,0.174495,0.246067,0.142528,0.510401,0.284077,0.647332,0.480625,0.356713,0.615514,0.48153,0.857224,0.776476,0.477834,0.510508,0.798444,0.299554,0.191487,0.495078,0.585313,0.26246,0.828072,0.0422633,0.800984,0.0742986,0.247818,0.819726,0.564145,0.134694,0.965247,0.206627,0.699061,0.70432,0.770589,0.630606,0.81297,0.606185,0.16011,0.62574,0.300094,0.921925,0.967315,0.201987,0.104104,0.175435,0.437134,0.0539387,0.268468,0.249975,0.481773,0.511596,0.0405926,0.438721,0.237326,0.904642,0.580975,0.53563,0.104377,0.247441,0.482854,0.554567,0.206597,0.680755,0.622031,0.732459,0.148632,0.272392,0.75413,0.729092,0.593565,0.639774,0.157042,0.112493,0.596025,0.146734,0.368081,0.329025,0.205634,0.120968,0.498211,0.528572,0.928974,0.188247,0.707165,0.333316,0.317694,0.433284,0.485857,0.407583,0.382939,0.901734,0.56208,0.093559,0.468664,0.823036,0.315408,0.925513,0.0403855,0.208227,0.0228492,0.282295,0.0112204,0.658356,8.37445e-05,0.196588,0.39396,0.542904,0.433686,0.879145,0.33298,0.499511,0.399132,0.00789529,0.49587,0.0703139,0.20663,0.117919,0.141579,0.046095,0.662726,0.668982,0.282915,0.326659,0.364765,0.254876,0.685837,0.902223,0.278208,0.824423,0.997012,0.654309,0.217815,0.592633,0.253908,0.0194998,0.255797,0.115345,0.81289,0.554675,0.66449,0.701882,0.136089,0.476945,0.593986,0.82848,0.335567,0.377748,0.691976,0.924248,0.395272,0.738707,0.0293089,0.533598,0.429435,0.624969,0.642824,0.138023,0.319494,0.351565,0.523401,0.803174,0.821804,0.0492069,0.459808,0.970486,0.296922,0.35917,0.570021,0.653587,0.59326,0.58116,0.779887,0.0337839,0.0599238,0.466054,0.414016,0.388355,0.650411,0.0409489,0.0690507,0.220822,0.785995,0.913681,0.141304,0.811726,0.843574,0.81954,0.505407,0.704131,0.0271956,0.351608,0.0365006,0.42651,0.0894743,0.738006,0.672008,0.259375,0.136447,0.939546,0.362653,0.103406,0.956437,0.246413,0.68082,0.473125,0.45673,0.58818,0.0197084,0.223026,0.144307,0.324726,0.0510257,0.664862,0.997328,0.124885,0.663465,0.0843312,0.541634,0.73518,0.052119,0.674643,0.649862,0.176365,0.348421,0.0724552,0.533645,0.958373,0.647877,0.345641,0.685062,0.351897,0.624255,0.221389,0.182697,0.695135,0.832839,0.64669,0.45358,0.62493,0.831991,0.949183,0.813113,0.813249,0.714074,0.99636,0.00120634,0.297127,0.773092,0.675385,0.684238,0.0216182,0.105731,0.53922,0.896868,0.217729,0.146897,0.921065,0.978749,0.317995,0.25202,0.108017,0.0196806,0.339428,0.661256,0.754459,0.123276,0.363378,0.869709,0.940935,0.478624,0.551717,0.364662,0.498872,0.72258,0.8379,0.665854,0.812777,0.357468,0.871573,0.174763,0.442447,0.656997,0.888933,0.580374,0.150433,0.761829,0.892028,0.951362,0.0643179,0.287694,0.698085,0.179177,0.175672,0.820096,0.174548,0.591649,0.136121,0.273103,0.773272,0.596637,0.616815,0.7256,0.607259,0.743825,0.326917,0.261017,0.27315,0.777487,0.899161,0.216552,0.0371956,0.382898,0.0585645,0.691856,0.327392,0.476552,0.643917,0.595962,0.550569,0.893832,0.512566,0.22933,0.135835,0.815002,0.00684017,0.00605297,0.897334,0.32838,0.488806,0.384813,0.799574,0.901949,0.017186,0.5268,0.490259,0.0405695,0.310899,0.996218,0.732654,0.0573909,0.186638,0.796129,0.987138,0.249453,0.270129,0.215268,0.213867,0.110093,0.948361,0.723276,0.713356,0.413373,0.10135,0.277494,0.546801,0.483476,0.312962,0.22872,0.633736,0.470313,0.418305,0.288608,0.00846672,0.682749,0.716041,0.0640414,0.0429913,0.328,0.106739,0.845929,0.176151,0.70917,0.194866,0.363978,0.535376,0.789908,0.775842,0.0227777,0.080264,0.579896,0.210118,0.854833,0.515418,0.4212,0.971128,0.811195,0.741206,0.45156,0.643961,0.0851235,0.680624,0.467225,0.0143528,0.00924695,0.891044,0.884347,0.984913,0.164687,0.833643,0.549189,0.331691,0.725437,0.281231,0.86606,0.391772,0.705441,0.794082,0.617889,0.587852,0.297834,0.243007,0.773889,0.795023,0.434295,0.0187798,0.807652,0.969546,0.408304,0.516815,0.938007,0.327366,0.750474,0.95136,0.43011,0.847507,0.492912,0.885813,0.802685,0.114804,0.00694847,0.903838,0.096392,0.775849,0.907087,0.0945849,0.524033,0.60525,0.677154,0.787963,0.495802,0.689456,0.694666,0.527294,0.0587916,0.742572,0.609053,0.382271,0.0721214,0.100825,0.180343,0.904705,0.806871,0.0990313,0.411083,0.657155,0.00454295,0.981068,0.816912,0.968871,0.170565,0.819109,0.736481,0.0712374,0.48129,0.365776,0.390128,0.0114925,0.336652,0.512439,0.486039,0.280773,0.0770261,0.74725,0.115955,0.867705,0.344583,0.26869,0.559779,0.265251,0.698921,0.779875,0.369632,0.136288,0.589204,0.190955,0.213552,0.0028128,0.190366,0.248848,0.431549,0.070693,0.0561689,0.852859,0.348905,0.688554,0.672717,|0.872905,0.631737,0.442129,0.225445,0.19402,0.0655524,0.155936,0.365518,0.131994,0.969404,0.119886,0.614742,0.496931,0.0070591,0.44751,0.416732,0.0613831,0.16185,0.546313,0.510166,0.556285,0.362031,0.416445,0.0871023,0.33013,0.413073,0.668148,0.832141,0.41925,0.288585,0.89672,0.110556,0.366868,0.795666,0.0873938,0.242342,0.386992,0.945099,0.942574,0.0469806,0.170645,0.372464,0.308228,0.211785,0.830828,0.081198,0.341015,0.790272,0.476107,0.770451,0.576822,0.498141,0.56789,0.849408,0.0383738,0.657549,0.285995,0.757949,0.727599,0.159929,0.154773,0.624185,0.165961,0.544311,0.839799,0.0163383,0.657533,0.445811,0.775469,0.0314789,0.802364,0.227217,0.182171,0.396477,0.9782,0.827249,0.559785,0.251197,0.399343,0.283747,0.299949,0.875185,0.431608,0.150718,0.504807,0.18347,0.370331,0.251438,0.589363,0.473443,0.259217,0.82938,0.98887,0.685186,0.016253,0.583391,0.960875,0.20307,0.44478,0.251891,0.891496,0.972679,0.541953,0.432917,0.137866,0.340591,0.0565944,0.204495,0.500105,0.0532469,0.942455,0.452907,0.994943,0.28888,0.418199,0.685937,0.481271,0.0764559,0.731316,0.440116,0.220458,0.991894,0.0212243,0.545081,0.994028,0.142583,0.71798,0.383958,0.0645667,0.625978,0.929299,0.649991,0.327218,0.771667,0.761832,0.888978,0.520459,0.669231,0.931311,0.711185,0.688816,0.79418,0.950469,0.744274,0.408719,0.955449,0.639475,0.969972,0.96626,0.0999109,0.571123,0.770111,0.291024,0.861556,0.608325,0.809914,0.609834,0.258909,0.365386,0.266462,0.458528,0.700694,0.682027,0.541079,0.342883,0.730687,0.598011,0.213264,0.325972,0.503418,0.505884,0.47553,0.284407,0.62905,0.717292,0.835062,0.58352,0.821893,0.643732,0.45821,0.44532,0.629407,0.185708,0.139139,0.245866,0.0983602,0.231745,0.329796,0.763734,0.532622,0.855943,0.0722048,0.312872,0.811852,0.249134,0.810146,0.729086,0.374875,0.902051,0.453579,0.109061,0.128758,0.537041,0.673592,0.344927,0.346601,0.351126,0.801954,0.0113238,0.887143,0.905999,0.51968,0.933409,0.629854,0.155503,0.118983,0.24139,0.737489,0.562961,0.816301,0.143551,0.708611,0.637886,0.412252,0.708029,0.85065,0.48311,0.982398,0.515578,0.132326,0.214045,0.593733,0.0380942,0.630583,0.818862,0.814457,0.956456,0.632263,0.987913,0.100042,0.0301321,0.343566,0.0911208,0.621358,0.479829,0.507716,0.132155,0.0202214,0.599153,0.922555,0.286239,0.00164664,0.887619,0.679839,0.583611,0.54495,0.848371,0.329183,0.240787,0.510774,0.440753,0.032846,0.220721,0.0640345,0.245897,0.760701,0.736289,0.542879,0.912015,0.510399,0.656428,0.856248,0.58914,0.720359,0.852027,0.520429,0.940567,0.250881,0.732206,0.300226,0.591373,0.822744,0.292774,0.48827,0.622166,0.826815,0.582105,0.28437,0.190568,0.764582,0.868519,0.099786,0.611614,0.660218,0.474693,0.446111,0.0564656,0.997578,0.495491,0.796068,0.557084,0.62957,0.405505,0.0920489,0.750051,0.43952,0.849164,0.698359,0.128811,0.986647,0.386434,0.794372,0.388214,0.0300361,0.647299,0.623602,0.863525,0.486792,0.0241658,0.82699,0.704476,0.287456,0.38703,0.088833,0.264164,0.315519,0.547262,0.655361,0.141094,0.249396,0.85839,0.989056,0.777524,0.0530056,0.987612,0.669027,0.400582,0.800716,0.87835,0.548759,0.137413,0.383142,0.184026,0.776169,0.451779,0.306564,0.804452,0.978962,0.35579,0.500144,0.110026,0.0248261,0.0671985,0.0698746,0.646147,0.483563,0.311558,0.153363,0.973209,0.302715,0.912677,0.0586346,0.294048,0.909478,0.455743,0.884824,0.0418561,0.491598,0.570117,0.197261,0.0795783,0.906021,0.9333,0.428181,0.182279,0.738298,0.325281,0.729339,0.915079,0.675927,0.737987,0.284002,0.859277,0.860363,0.535767,0.395089,0.258067,0.922763,0.488012,0.181318,0.980167,0.802816,0.210589,0.0519247,0.538532,0.740056,0.681796,0.507016,0.0965453,0.121169,0.0562098,0.0469955,0.565947,0.349899,0.925223,0.735504,0.449557,0.913491,0.550978,0.0459118,0.93548,0.444169,0.0997459,0.420119,0.523659,0.073149,0.129249,0.0420836,0.425322,0.612966,0.205754,0.0985264,0.654474,0.770448,0.844205,0.0152788,0.469842,0.258987,0.992635,0.651955,0.978647,0.0043503,0.870743,0.514693,0.0689806,0.679246,0.482235,0.779076,0.24071,0.664812,0.837369,0.807081,0.0136296,0.258729,0.305242,0.846363,0.407953,0.187212,0.0716986,0.518462,0.852662,0.769526,0.280399,0.536247,0.287356,0.309446,0.0512183,0.945681,0.741474,0.00307435,0.953236,0.00190604,0.0192189,0.337722,0.745852,0.80146,0.967202,0.197949,0.884404,0.855954,0.795398,0.780416,0.286268,0.226561,0.52158,0.639943,0.293015,0.417193,0.761893,0.557276,0.716435,0.102931,0.304702,0.68016,0.952912,0.036862,0.402095,0.218201,0.916738,0.703474,0.216329,0.815375,0.713255,0.758956,0.154525,0.413379,0.624646,0.313648,0.908752,0.664307,0.357759,0.0276816,0.0091989,0.487822,0.59548,0.640691,0.650233,0.858145,0.613094,0.863178,0.170809,0.47051,0.696981,0.113016,0.00493509,0.066577,0.833438,0.212884,0.821802,0.667311,0.726816,0.197154,0.659692,0.853855,0.255335,0.315537,0.406778,0.431363,0.72367,0.559354,0.69307,0.0330385,0.304858,0.614177,0.707458,0.709881,0.0325432,0.306386,0.776953,0.749052,0.342922,0.651503,0.805942,0.68744,0.838201,0.713346,0.826929,0.185645,0.757948,0.340867,0.170998,0.330712,0.412896,0.265361,0.192052,0.335624,0.70146,0.172979,0.280132,0.626364,0.454091,0.0873372,0.577061,0.00419223,0.867047,0.169109,0.169581,0.26555,0.865153,0.581014,0.785237,0.955334,0.825858,0.852036,0.457034,0.339883,0.471311,0.89345,0.0897775,0.209131,0.243467,0.076331,0.181035,0.705313,0.233545,0.170141,0.627143,0.242506,0.34049,0.715844,0.272714,0.693198,0.507913,0.0290233,0.530974,0.837721,0.9427,0.369256,0.552117,0.364952,0.347578,0.982465,0.173843,0.773272,0.823397,0.252154,0.0417722,0.415417,0.668178,0.538534,0.512477,0.683305,0.930272,0.481053,0.674951,0.744071,0.494919,0.970286,0.505871,0.82404,0.752383,0.944959,0.342696,0.483451,0.558415,0.274443,0.98134,0.338317,0.221031,0.63164,0.135823,0.967422,0.178848,0.397397,0.350508,0.841449,0.255226,0.262917,0.546649,0.25675,0.122791,0.895325,0.389728,0.4469,0.19344,0.186869,0.336366,0.219293,0.924083,0.560558,0.183553,0.361254,0.481906,0.776735,0.0194011,0.262565,0.545027,0.235367,0.549969,0.542318,0.982528,0.685444,0.582816,0.0170791,0.801109,0.491879,0.786241,0.918451,0.831139,0.284344,0.218603,0.354462,0.322543,0.802288,0.50145,0.131356,0.00895774,0.973168,0.263328,0.111961,0.583309,0.309608,0.929102,0.359577,0.0858521,0.79547,0.231093,0.994749,0.0423847,0.290726,0.664031,0.537193,0.89654,0.0341942,0.544358,0.267006,0.191136,0.507988,0.851381,0.0970255,0.293814,0.912004,0.780202,0.988363,0.630386,0.107795,0.596557,0.52156,0.117365,0.541939,0.601329,0.690133,0.421941,0.560873,0.945942,0.808082,0.7437,0.123432,0.831797,0.293811,0.584549,0.228449,0.720676,0.146707,0.768308,0.665984,0.0214635,0.441891,0.901994,0.0396242,0.84867,0.445863,0.466474,0.728581,0.0597249,0.209494,0.284889,0.202398,0.516479,0.0952834,0.634082,0.982132,0.316986,0.0267523,0.134462,0.543998,0.973335,0.540284,0.218094,0.281335,0.523934,0.605085,0.181487,0.707894,0.578534,0.950757,0.348268,0.324207,0.857197,0.817769,0.754894,0.125471,0.393337,0.378042,0.798751,0.228417,0.326878,0.228388,0.876367,0.381133,0.000248611,0.833717,0.683214,0.155528,0.235382,0.315687,0.215418,0.167209,0.947675,0.363751,0.702706,0.3769,0.910729,0.269719,0.222495,0.244701,0.886626,0.29484,0.788686,0.650589,0.250318,0.905218,0.25594,0.240061,0.594471,0.797243,0.674145,0.851603,0.635661,0.778328,0.265125,0.0845945,0.39074,0.28462,0.135349,0.223695,0.935394,0.680846,0.554381,0.962188,0.848169,0.936743,0.912158,0.350138,0.349967,0.437826,0.116525,0.794842,0.357947,0.605659,0.471818,0.388691,0.311113,0.947558,0.0753667,0.0278423,0.645121,0.701306,0.756226,0.0882683,0.78989,0.524803,0.836325,0.394723,0.356989,0.042074,0.191615,0.168582,0.763215,0.393402,0.794139,0.105577,0.762356,0.800965,0.00523746,0.961085,0.562584,0.128109,0.0966325,0.66497,0.0580341,0.693726,0.0797966,0.336454,0.109733,0.955099,0.180415,0.849665,0.17917,0.666127,0.580047,0.00803077,0.500857,0.745315,0.615761,0.512741,0.157514,0.885501,0.0811685,0.188577,0.0435912,0.039714,0.0348898,0.603465,0.430496,0.286853,0.404222,0.292945,0.392576,0.830236,0.703949,0.490742,0.587839,0.845185,0.164915,0.435263,0.536233,0.644494,0.268855,0.240914,0.815603,0.607333,0.97985,0.658956,0.346928,0.694192,0.158064,0.904641,0.0263213,0.390625,0.377083,0.877349,0.158204,0.951089,0.504835,0.392436,0.720247,0.24314,0.463758,0.841152,0.141419,0.665802,0.81282,0.398174,0.268516,0.695412,0.593857,0.968584,0.223671,0.979645,0.460076,0.405821,0.577242,0.61513,0.353828,0.19844,0.945881,0.520564,0.0301983,0.466936,0.55043,0.238349,0.0677034,0.262624,0.291575,0.356695,0.493897,0.541185,0.432455,0.326165,0.717454,0.9236,0.798244,0.934982,0.440882,0.0835359,0.285207,0.56116,0.926846,0.668664,0.291753,0.85834,0.416206,0.298511,0.55242,0.589567,0.424184,0.538887,0.871501,0.750649,0.894059,0.423465,0.173205,0.588541,0.302215,0.533101,0.0397679,0.629169,0.638655,0.553078,0.63295,0.878431,0.3759,0.542477,0.0254668,0.909881,0.0659099,0.438154,0.800565,0.704273,0.45629,0.00487095,0.18747,0.224547,0.647552,0.820472,0.323265,0.863116,0.362372,0.78255,0.244022,0.85561,0.0816787,0.567073,0.481301,0.235734,0.866426,0.485261,0.250636,0.562454,|0.394805,0.823455,0.0399446,0.666561,0.107934,0.960142,0.192709,0.5661,0.970599,0.710503,0.941211,0.0138983,0.480263,0.151549,0.916496,0.749372,0.150773,0.20551,0.61995,0.683668,0.625997,0.523522,0.390819,0.0895225,0.957855,0.957319,0.184101,0.644385,0.72719,0.939306,0.988219,0.656999,0.316575,0.844487,0.870369,0.219225,0.754072,0.0875714,0.993008,0.419453,0.524673,0.613118,0.435636,0.0605417,0.420969,0.279547,0.375537,0.250144,0.258318,0.774282,0.701126,0.602092,0.497168,0.760469,0.648197,0.607796,0.799083,0.0658754,0.154393,0.424053,0.853958,0.71976,0.245001,0.424845,0.789011,0.506807,0.355626,0.970014,0.46399,0.374813,0.471654,0.423032,0.2153,0.401955,0.885497,0.289245,0.451979,0.0210612,0.680014,0.654905,0.587443,0.977132,0.188673,0.301713,0.820265,0.178397,0.539345,0.787291,0.498105,0.344936,0.416899,0.630383,0.717278,0.0116589,0.4573,0.279165,0.0394206,0.706945,0.52386,0.100504,0.99436,0.107607,0.444125,0.479593,0.759819,0.805107,0.0973397,0.944878,0.322122,0.551221,0.939128,0.979852,0.954631,0.704289,0.300707,0.461845,0.904145,0.26849,0.182616,0.957644,0.300356,0.342857,0.80569,0.123492,0.314258,0.194993,0.1081,0.674595,0.11282,0.608994,0.00384021,0.556227,0.573111,0.413336,0.754542,0.337802,0.824301,0.167874,0.570584,0.176637,0.188254,0.117592,0.265277,0.671256,0.922387,0.112567,0.426314,0.743414,0.449597,0.338622,0.398829,0.660032,0.320976,0.56757,0.0904731,0.312347,0.42755,0.853297,0.53298,0.362061,0.272659,0.252744,0.573498,0.0204313,0.638246,0.471835,0.556613,0.0151798,0.10176,0.325366,0.811173,0.689361,0.567152,0.107903,0.646486,0.427008,0.303769,0.0372098,0.385078,0.227743,0.821031,0.955752,0.690361,0.279088,0.396902,0.907072,0.188356,0.921589,0.877429,0.408671,0.372422,0.204006,0.325375,0.0608247,0.45756,0.309509,0.200011,0.919065,0.439358,0.866357,0.715367,0.148906,0.449569,0.0639648,0.700893,0.558377,0.378179,0.611458,0.150563,0.18304,0.0791309,0.0928982,0.574483,0.0154471,0.920659,0.563567,0.267984,0.00304216,0.724583,0.511357,0.0910441,0.805198,0.433312,0.615574,0.811561,0.969118,0.786867,0.766762,0.263655,0.545481,0.9773,0.776101,0.868193,0.506719,0.124541,0.156058,0.684282,0.427996,0.473413,0.881259,0.949272,0.714608,0.591194,0.387772,0.340248,0.0121895,0.371901,0.838979,0.460563,0.976496,0.437293,0.0445289,0.338251,0.308151,0.0876147,0.053506,0.274931,0.025022,0.33867,0.250608,0.185858,0.781151,0.188263,0.0333125,0.404081,0.676794,0.133228,0.948563,0.568891,0.126597,0.340095,0.373823,0.112266,0.793168,0.225142,0.231597,0.829718,0.830961,0.95023,0.412436,0.114416,0.624226,0.0686418,0.176231,0.310758,0.587323,0.326431,0.523657,0.62863,0.597865,0.383927,0.682679,0.782312,0.0922666,0.930178,0.530166,0.807759,0.412507,0.770204,0.35869,0.0851888,0.904993,0.126181,0.193017,0.808897,0.510954,0.84465,0.644351,0.499391,0.350886,0.0112037,0.879752,0.416372,0.320068,0.468391,0.293334,0.727884,0.561367,0.498681,0.283656,0.961897,0.815959,0.738267,0.634172,0.426144,0.23157,0.482382,0.436004,0.542309,0.233709,0.123357,0.359503,0.0473701,0.930606,0.0495129,0.0522994,0.992298,0.835029,0.970801,0.911338,0.150045,0.632614,0.25329,0.622862,0.948651,0.646763,0.261752,0.862583,0.813827,0.641564,0.348827,0.349032,0.420088,0.950925,0.406523,0.49842,0.0132145,0.425268,0.487423,0.525819,0.0412237,0.53911,0.58282,0.458283,0.583576,0.51615,0.595398,0.0291396,0.665592,0.676601,0.0989096,0.280649,0.956359,0.171981,0.199941,0.350394,0.562604,0.486865,0.924521,0.910977,0.661293,0.678845,0.606098,0.368658,0.375258,0.636698,0.67725,0.0717164,0.662981,0.837487,0.0428489,0.214555,0.484887,0.500236,0.189705,0.954789,0.576587,0.403723,0.928165,0.762723,0.747793,0.0272266,0.556781,0.31883,0.975383,0.76443,0.38236,0.707017,0.651349,0.617495,0.6509,0.304289,0.995324,0.89746,0.619277,0.324295,0.112302,0.306597,0.371551,0.120775,0.359761,0.35186,0.461042,0.24233,0.511669,0.986471,0.988267,0.755018,0.776969,0.763716,0.0790741,0.835361,0.995473,0.356022,0.480434,0.864061,0.728925,0.687161,0.621825,0.396148,0.984671,0.801801,0.646366,0.367096,0.48392,0.714318,0.222503,0.62184,0.211853,0.718979,0.076297,0.601169,0.0732761,0.302104,0.935558,0.311383,0.931508,0.0536822,0.895114,0.251795,0.37242,0.8506,0.91415,0.97932,0.00873518,0.135242,0.78607,0.285646,0.880845,0.800722,0.282827,0.442645,0.7281,0.964406,0.278691,0.330338,0.930692,0.95219,0.918943,0.248258,0.988999,0.503666,0.639674,0.426038,0.913586,0.00520223,0.782099,0.232719,0.605054,0.283654,0.805165,0.915641,0.326852,0.882974,0.732352,0.652339,0.9539,0.197979,0.521124,0.119261,0.185958,0.657264,0.16731,0.768773,0.200674,0.657549,0.52119,0.66177,0.856104,0.590374,0.768171,0.319499,0.708755,0.942417,0.165513,0.966671,0.142393,0.767411,0.00687629,0.83498,0.989834,0.220407,0.222092,0.495276,0.488101,0.328869,0.383692,0.290319,0.911299,0.956567,0.639331,0.435872,0.772619,0.16382,0.88101,0.863437,0.976552,0.768875,0.670166,0.819839,0.595406,0.116277,0.0257685,0.720534,0.0948842,0.509172,0.384909,0.339892,0.494267,0.307531,0.943576,0.927959,0.807048,0.936569,0.525549,0.534466,0.109862,0.321738,0.381472,0.467165,0.610029,0.685582,0.481907,0.204358,0.0723631,0.0398491,0.380347,0.165049,0.00337648,0.523571,0.107124,0.459342,0.934893,0.546227,0.858754,0.0869215,0.962317,0.557402,0.448018,0.863061,0.100914,0.725457,0.490992,0.508704,0.568333,0.309752,0.802803,0.866446,0.981661,0.683317,0.134344,0.969857,0.29037,0.883814,0.751682,0.260818,0.543015,0.143214,0.675466,0.775773,0.325041,0.0620329,0.0259913,0.44709,0.772913,0.808239,0.34876,0.688155,0.205344,0.57082,0.512509,0.0295116,0.730127,0.162557,0.408077,0.918125,0.444728,0.587372,0.636759,0.0714771,0.413243,0.632015,0.0563364,0.890985,0.142162,0.0500481,0.265618,0.878514,0.392327,0.663787,0.702632,0.00956923,0.394361,0.385149,0.547919,0.516662,0.657505,0.685869,0.917272,0.520718,0.321539,0.656791,0.442804,0.316542,0.6929,0.213584,0.633389,0.801811,0.769765,0.244095,0.43988,0.459036,0.327111,0.427475,0.183909,0.644666,0.408857,0.916231,0.103512,0.0667461,0.764717,0.584872,0.984441,0.910784,0.600822,0.989736,0.807328,0.999973,0.0382768,0.442902,0.728875,0.803203,0.522828,0.912154,0.911061,0.110952,0.393346,0.369975,0.729774,0.817076,0.827045,0.771388,0.443972,0.877129,0.00860161,0.0541269,0.113766,0.265971,0.0312239,0.195442,0.046888,0.595831,0.376443,0.0514321,0.333232,0.584805,0.566047,0.256649,0.43815,0.816987,0.39281,0.284917,0.0600687,0.870552,0.856201,0.654754,0.532246,0.384982,0.629047,0.706959,0.507146,0.876874,0.474241,0.902907,0.0877646,0.938708,0.374426,0.358924,0.450233,0.986215,0.900361,0.00292909,0.0813297,0.516631,0.715365,0.320625,0.33744,0.687315,0.488093,0.448802,0.91383,0.463168,0.141978,0.38307,0.240562,0.651786,0.891521,0.208188,0.32107,0.75942,0.491133,0.362812,0.82645,0.462525,0.355538,0.218323,0.276181,0.717209,0.12508,0.152663,0.225763,0.553374,0.248315,0.31145,0.562883,0.4123,0.728329,0.242111,0.560679,0.653058,0.73376,0.616619,0.92356,0.607065,0.304168,0.218298,0.528464,0.0292683,0.929034,0.540359,0.845072,0.280719,0.925473,0.464578,0.895752,0.386294,0.47595,0.930769,0.030483,0.466801,0.913503,0.0537698,0.461318,0.560363,0.428785,0.880817,0.852139,0.475534,0.980467,0.949134,0.520889,0.726934,0.949692,0.43526,0.871532,0.358713,0.922882,0.99131,0.916192,0.645252,0.951678,0.0817662,0.712126,0.396103,0.199435,0.00317472,0.845812,0.696872,0.475375,0.154809,0.888853,0.693172,0.00809395,0.194798,0.910899,0.543138,0.0296391,0.99555,0.445245,0.506831,0.464369,0.313977,0.516857,0.395742,0.716689,0.66991,0.20849,0.0916008,0.417487,0.649717,0.99767,0.329111,0.385452,0.985362,0.844333,0.1806,0.841605,0.581059,0.364986,0.52411,0.346236,0.807892,0.0576116,0.892365,0.409551,0.446929,0.814936,0.564807,0.99832,0.464413,0.171729,0.933068,0.305258,0.989692,0.345879,0.741885,0.75008,0.548744,0.885523,0.0546307,0.589478,0.203918,0.166849,0.0643544,0.0679818,0.683842,0.593774,0.247131,0.072372,0.800436,0.507869,0.302342,0.931951,0.252446,0.280217,0.773187,0.25627,0.606427,0.569104,0.855756,0.702932,0.044894,0.307399,0.897361,0.47132,0.00985157,0.949437,0.445378,0.82928,0.184874,0.00122875,0.505147,0.230452,0.453927,0.0875537,0.369231,0.115859,0.993886,0.617824,0.108339,0.469498,0.119601,0.194831,0.363632,0.987406,0.782819,0.965735,0.0269821,0.384089,0.404567,0.901017,0.686001,0.903358,0.814161,0.452451,0.959156,0.855743,0.705474,0.0650481,0.640033,0.613998,0.782989,0.595147,0.849793,0.607342,0.382779,0.743611,0.226928,0.752568,0.983403,0.573723,0.764247,0.125169,0.294518,0.755041,0.750524,0.33805,0.719293,0.670575,0.665622,0.659839,0.807257,0.931817,0.202896,0.641142,0.406221,0.501171,0.573395,0.0049293,0.446074,0.569131,0.14837,0.545681,0.12217,0.232169,0.750103,0.458859,0.236423,0.509664,0.73086,0.093847,0.41772,0.533094,0.728612,0.467072,0.733341,0.794747,0.658488,0.281843,0.286958,0.883427,0.0945631,0.92006,0.853662,0.695642,0.711028,0.115727,0.651374,0.98147,0.146812,0.652541,0.0522265,0.629219,0.358727,0.0272451,0.711575,0.184639,0.923914,0.811992,0.407709,0.9771,0.630425,0.654469,0.537375,0.575035,0.582582,0.0546907,0.497433,0.817476,0.410814,|0.478703,0.630147,0.0615852,0.930825,0.741687,0.104123,0.329805,0.296691,0.839668,0.663156,0.552031,0.673652,0.473188,0.224477,0.821109,0.334571,0.185057,0.979009,0.581843,0.921226,0.971024,0.341302,0.388523,0.825398,0.984337,0.00634855,0.717723,0.48586,0.312602,0.977349,0.986807,0.434736,0.465756,0.767286,0.814219,0.770913,0.568588,0.0134315,0.171999,0.412287,0.709482,0.333342,0.404045,0.884968,0.970339,0.305403,0.0610254,0.414708,0.814569,0.620342,0.614989,0.529025,0.87646,0.747065,0.848633,0.963623,0.606956,0.61437,0.507684,0.813121,0.416819,0.839928,0.891038,0.827288,0.349136,0.647112,0.384104,0.828277,0.143261,0.86902,0.384394,0.618684,0.472806,0.0735453,0.294662,0.296146,0.680235,0.869663,0.073938,0.151115,0.0335797,0.297033,0.567386,0.727958,0.555333,0.300187,0.43369,0.838825,0.567433,0.506946,0.0968504,0.0631726,0.506169,0.26827,0.578046,0.927704,0.0564589,0.851602,0.415956,0.415381,0.576454,0.0289486,0.521084,0.0150428,0.770117,0.598302,0.94486,0.333976,0.380113,0.814818,0.529002,0.845319,0.161175,0.966936,0.135475,0.494616,0.926808,0.224669,0.548354,0.404458,0.0776379,0.39766,0.00405771,0.732398,0.0305632,0.297376,0.37223,0.63121,0.258116,0.173585,0.387466,0.903929,0.553571,0.895229,0.948772,0.687424,0.0484851,0.224611,0.852832,0.474785,0.95118,0.736802,0.27815,0.88564,0.226907,0.787838,0.658951,0.828607,0.568252,0.937908,0.0147313,0.763001,0.296085,0.407656,0.700159,0.934248,0.943897,0.367175,0.88825,0.617161,0.655883,0.0273163,0.502738,0.271388,0.90189,0.597243,0.575162,0.405769,0.879755,0.273974,0.862552,0.76365,0.19245,0.531197,0.0731422,0.735314,0.496113,0.986256,0.217359,0.642979,0.0662404,0.872637,0.193264,0.157752,0.470435,0.0342308,0.0302073,0.869969,0.456287,0.903167,0.890221,0.124115,0.0427731,0.946495,0.170137,0.324556,0.978253,0.89056,0.97131,0.604333,0.315177,0.258859,0.140269,0.756433,0.191904,0.15892,0.922166,0.354953,0.79116,0.799813,0.656081,0.447573,0.246641,0.753257,0.616242,0.152511,0.45723,0.913798,0.231588,0.97888,0.174261,0.468418,0.0272875,0.823147,0.243776,0.522288,0.634859,0.353607,0.635992,0.0969677,0.621432,0.435098,0.0979559,0.786751,0.87294,0.123495,0.117246,0.928301,0.578416,0.512744,0.479935,0.0837953,0.266508,0.00975007,0.583189,0.735978,0.943624,0.866961,0.678055,0.598105,0.232614,0.324255,0.317599,0.813206,0.66207,0.408277,0.581904,0.312918,0.628383,0.967949,0.311526,0.0872005,0.3265,0.613083,0.852057,0.606665,0.414664,0.216217,0.244,0.971966,0.715737,0.980697,0.543525,0.848225,0.369133,0.685972,0.757692,0.409052,0.5037,0.729726,0.572667,0.217968,0.189892,0.648053,0.0829501,0.162385,0.201872,0.887334,0.2269,0.389663,0.615293,0.260951,0.366573,0.50033,0.148989,0.958783,0.352872,0.666621,0.595094,0.04124,0.821572,0.470522,0.131426,0.408001,0.639088,0.999627,0.194296,0.992522,0.0465693,0.562127,0.10752,0.468987,0.195449,0.821003,0.881959,0.909975,0.816124,0.68706,0.510771,0.190638,0.958338,0.142231,0.392397,0.257158,0.306423,0.0518425,0.632882,0.0476937,0.190311,0.764892,0.769845,0.866338,0.167346,0.0567073,0.586297,0.833061,0.848539,0.894365,0.815811,0.636638,0.499574,0.289717,0.422087,0.769992,0.376934,0.0363607,0.0526568,0.751172,0.900309,0.0709438,0.794263,0.444267,0.385893,0.245658,0.935672,0.63569,0.34066,0.106966,0.0261275,0.946779,0.584036,0.719983,0.501243,0.28679,0.0939907,0.28918,0.777174,0.931296,0.16662,0.0812307,0.909587,0.84608,0.882229,0.000109255,0.813469,0.786344,0.39398,0.116685,0.486921,0.567229,0.615524,0.308792,0.904069,0.787403,0.671269,0.290688,0.0227103,0.703113,0.238977,0.675699,0.000192225,0.904094,0.430814,0.435644,0.247336,0.190588,0.137386,0.24156,0.235199,0.267117,0.339029,0.417399,0.532915,0.410254,0.636829,0.132268,0.299695,0.377093,0.237479,0.41742,0.742058,0.342889,0.123653,0.850236,0.469721,0.46378,0.989798,0.395026,0.859874,0.890177,0.0450273,0.173025,0.326642,0.830539,0.565747,0.293637,0.665309,0.0732411,0.492649,0.369792,0.257585,0.139925,0.858573,0.213672,0.350621,0.896719,0.741374,0.657887,0.684787,0.561464,0.224585,0.90852,0.636068,0.651755,0.749747,0.0490174,0.924635,0.543057,0.399564,0.930285,0.211771,0.222483,0.783413,0.977015,0.646625,0.513721,0.504541,0.721012,0.828167,0.180444,0.847411,0.731522,0.565084,0.254416,0.354873,0.272816,0.184502,0.518595,0.130742,0.766541,0.529059,0.541846,0.880559,0.497903,0.133431,0.98345,0.0586422,0.722188,0.177641,0.691426,0.149008,0.484008,0.284769,0.811035,0.0433795,0.68928,0.836784,0.387003,0.760685,0.69606,0.0570458,0.902965,0.496963,0.362444,0.329734,0.731411,0.430874,0.629654,0.0298786,0.0978613,0.515875,0.850201,0.831558,0.012226,0.0602632,0.910835,0.956381,0.988749,0.193269,0.567009,0.40704,0.453759,0.672886,0.793186,0.458298,0.703542,0.64911,0.254208,0.78795,0.382124,0.0798792,0.0588121,0.644679,0.32361,0.448026,0.583947,0.210966,0.683528,0.391814,0.448439,0.276659,0.335271,0.47332,0.3785,0.818575,0.468973,0.0880143,0.53927,0.599927,0.401384,0.771131,0.627886,0.365354,0.884594,0.727526,0.554974,0.665248,0.520521,0.326756,0.549451,0.560089,0.122764,0.683128,0.776321,0.108566,0.635935,0.945368,0.594804,0.156173,0.596081,0.152026,0.971088,0.210113,0.563229,0.899727,0.792251,0.455688,0.807261,0.89415,0.876207,0.43297,0.928661,0.461957,0.560292,0.306364,0.881706,0.182278,0.67418,0.679255,0.393475,0.004511,0.159508,0.599958,0.599485,0.888193,0.39077,0.277697,0.967146,0.273961,0.120309,0.687711,0.522287,0.135578,0.659096,0.117909,0.39736,0.016108,0.462504,0.512566,0.96431,0.599397,0.254431,0.698329,0.291668,0.676748,0.145867,0.035603,0.871864,0.557029,0.593716,0.551582,0.35696,0.129501,0.295223,0.0373714,0.471176,0.12159,0.720826,0.392175,0.261193,0.440116,0.0546865,0.690924,0.0380765,0.434452,0.43216,0.259223,0.513444,0.0315078,0.1332,0.625454,0.660538,0.913537,0.920908,0.877891,0.175492,0.462368,0.790294,0.480647,0.175992,0.970788,0.119352,0.108695,0.899821,0.904931,0.253661,0.791412,0.209935,0.409916,0.509106,0.134891,0.269506,0.695115,0.866669,0.102957,0.856263,0.90482,0.415156,0.944983,0.947388,0.271655,0.659474,0.982257,0.797633,0.116327,0.443118,0.125291,0.922433,0.391274,0.327408,0.0228816,0.088012,0.200754,0.911108,0.138009,0.790322,0.174933,0.600948,0.0383096,0.0145505,0.745936,0.158426,0.629742,0.57611,0.389419,0.706732,0.300994,0.603105,0.976733,0.50342,0.599579,0.830992,0.0877732,0.509405,0.375039,0.892345,0.709504,0.649738,0.442703,0.137944,0.576762,0.137293,0.23818,0.405158,0.256594,0.727249,0.748071,0.501612,0.642465,0.65229,0.145155,0.222146,0.800871,0.389177,0.923063,0.765566,0.663502,0.366074,0.771107,0.27827,0.731623,0.756965,0.147136,0.556584,0.871897,0.25247,0.665208,0.550556,0.128345,0.805471,0.266259,0.242402,0.848801,0.344331,0.932132,0.133938,0.248686,0.937594,0.0771883,0.908457,0.487036,0.851835,0.866434,0.462994,0.900057,0.604154,0.994472,0.779772,0.343485,0.618619,0.973209,0.539446,0.396326,0.825244,0.840275,0.351404,0.591611,0.0303127,0.227441,0.86447,0.322651,0.437208,0.125323,0.435181,0.503765,0.318052,0.473375,0.571164,0.194174,0.51494,0.627491,0.784445,0.62727,0.354141,0.392593,0.584584,0.832469,0.459327,0.724512,0.192338,0.393585,0.0354148,0.856421,0.861533,0.648698,0.343207,0.398372,0.7221,0.502679,0.245104,0.0985352,0.501264,0.670359,0.908959,0.494958,0.835927,0.0932521,0.703963,0.95284,0.334248,0.682997,0.610136,0.637896,0.832219,0.468525,0.253522,0.282664,0.248286,0.475335,0.954571,0.882655,0.148109,0.530625,0.429951,0.290656,0.0676296,0.246631,0.569846,0.630327,0.102614,0.761252,0.478249,0.856817,0.0615678,0.153618,0.0565538,0.572007,0.495644,0.349616,0.622486,0.665895,0.751589,0.761386,0.0942485,0.327721,0.186754,0.130165,0.961807,0.696588,0.874432,0.534017,0.268602,0.16891,0.271562,0.258518,0.301339,0.9861,0.357444,0.00523645,0.165717,0.359339,0.434838,0.718106,0.41977,0.73779,0.319511,0.677378,0.317105,0.810616,0.263805,0.934169,0.392252,0.909258,0.43122,0.617477,0.412963,0.286889,0.809734,0.0985973,0.858796,0.802118,0.0920659,0.467566,0.719915,0.00356352,0.708512,0.67172,0.193604,0.800968,0.741701,0.536404,0.608101,0.458383,0.336441,0.728406,0.425788,0.589489,0.973864,0.170237,0.632261,0.866171,0.0863862,0.881357,0.520676,0.53042,0.132447,0.0982692,0.444581,0.586573,0.230516,0.732152,0.491859,0.917853,0.942592,0.463525,0.254396,0.686816,0.203282,0.286439,0.00439197,0.522202,0.0145161,0.729711,0.753905,0.855857,0.480667,0.777389,0.129338,0.16771,0.0116262,0.148377,0.844719,0.98359,0.836535,0.223209,0.0215642,0.558693,0.0518315,0.711029,0.14921,0.209378,0.682042,0.353646,0.935998,0.513711,0.368712,0.173984,0.966854,0.373751,0.684851,0.301898,0.25714,0.472713,0.146192,0.725015,0.474746,0.00947505,0.115205,0.758179,0.988137,0.665847,0.938773,0.252086,0.0917304,0.893005,0.900017,0.652233,0.834341,0.0468408,0.215055,0.375971,0.717032,0.914569,0.109901,0.748815,0.206744,0.10476,0.186006,0.14768,0.531539,0.834812,0.766206,0.0659623,0.95471,0.315324,0.0621767,0.88059,0.634045,0.0724488,0.900577,0.511151,0.957811,0.674577,0.338233,0.328507,0.712161,0.26668,0.158407,0.522495,0.313223,0.880148,0.691538,0.958628,0.228509,0.73095,0.0362775,0.21516,0.394015,0.349465,0.518952,|0.857827,0.714543,0.721205,0.899343,0.838474,0.409691,0.552853,0.381024,0.172203,0.861272,0.431626,0.931489,0.3739,0.628507,0.38763,0.179712,0.824736,0.584538,0.458409,0.931591,0.173889,0.244923,0.662804,0.999522,0.658411,0.689287,0.162121,0.974257,0.984602,0.999167,0.480179,0.113458,0.122327,0.445227,0.819633,0.572568,0.19295,0.035405,0.615539,0.376645,0.121527,0.255612,0.569931,0.137638,0.99479,0.572973,0.82156,0.584363,0.136696,0.375305,0.78081,0.355383,0.0203046,0.658753,0.577305,0.867039,0.471648,0.111968,0.934351,0.755879,0.978071,0.153107,0.149434,0.151874,0.590954,0.898772,0.66897,0.799686,0.933886,0.88202,0.00371891,0.604799,0.678561,0.752009,0.532658,0.668292,0.2279,0.239462,0.175383,0.0218175,0.93629,0.803634,0.575092,0.659301,0.255528,0.911965,0.346353,0.637018,0.398378,0.587714,0.964714,0.038917,0.203454,0.308021,0.734988,0.788838,0.538663,0.557785,0.390733,0.954986,0.207588,0.234425,0.18272,0.0687469,0.372526,0.779226,0.794864,0.294988,0.000796854,0.690172,0.648251,0.469439,0.625877,0.404476,0.732069,0.612723,0.889331,0.537105,0.416754,0.854019,0.550511,0.212233,0.994975,0.229173,0.228353,0.449537,0.272667,0.454695,0.450139,0.271617,0.45514,0.800733,0.861088,0.957022,0.874606,0.320625,0.867042,0.367563,0.543464,0.849725,0.820948,0.130313,0.26444,0.941813,0.887804,0.95706,0.876839,0.499571,0.708663,0.670025,0.482681,0.72607,0.88015,0.934795,0.225703,0.452125,0.690859,0.87359,0.22779,0.467773,0.0703927,0.345433,0.42993,0.300361,0.54262,0.00318986,0.516902,0.11047,0.601388,0.660325,0.740317,0.193975,0.935084,0.907352,0.870831,0.99365,0.64537,0.391205,0.657322,0.617329,0.581697,0.495233,0.97366,0.602943,0.381219,0.740273,0.259147,0.355003,0.693441,0.540786,0.386581,0.363717,0.264123,0.138139,0.888325,0.232969,0.96886,0.242984,0.0801824,0.72803,0.374526,0.488898,0.174112,0.690099,0.963264,0.114335,0.800848,0.170759,0.375249,0.538885,0.0595281,0.823245,0.317513,0.177568,0.889994,0.434932,0.438139,0.267191,0.702877,0.567562,0.0733703,0.515768,0.992891,0.802035,0.1596,0.784669,0.918854,0.737195,0.227935,0.463197,0.253267,0.627381,0.885241,0.804677,0.985284,0.59134,0.353313,0.98744,0.924536,0.266197,0.570624,0.431003,0.826901,0.302244,0.600317,0.484329,0.44373,0.415178,0.514338,0.0745924,0.807638,0.521257,0.357836,0.282619,0.224679,0.0663522,0.268046,0.696791,0.857295,0.880022,0.537328,0.78206,0.830405,0.837526,0.787978,0.0479292,0.0118542,0.565747,0.874861,0.42207,0.206043,0.589412,0.759704,0.852753,0.846799,0.736707,0.988855,0.666351,0.129328,0.854825,0.135982,0.0522288,0.956126,0.735714,0.323097,0.659509,0.365329,0.40616,0.725505,0.842924,0.133418,0.311351,0.752735,0.876512,0.272351,0.286488,0.549702,0.234718,0.332981,0.0123945,0.645056,0.684712,0.722105,0.630448,0.972303,0.941838,0.24242,0.292073,0.67635,0.641418,0.0921095,0.55349,0.577474,0.499756,0.197951,0.280953,0.867595,0.888597,0.588454,0.374918,0.511786,0.58141,0.639874,0.717123,0.057636,0.122694,0.0178322,0.313598,0.0483412,0.138881,0.476095,0.770139,0.884923,0.978737,0.805747,0.498411,0.738301,0.403761,0.238113,0.237816,0.655282,0.939089,0.0678045,0.981825,0.66675,0.269306,0.864203,0.363327,0.410812,0.215436,0.455507,0.810768,0.0990684,0.835369,0.216735,0.137293,0.665101,0.351656,0.361623,0.730249,0.29246,0.309265,0.0500098,0.302755,0.568706,0.667748,0.216037,0.561274,0.806826,0.00983143,0.0998677,0.077387,0.319172,0.345211,0.250241,0.00297529,0.806683,0.512671,0.848703,0.229729,0.945923,0.0617773,0.276824,0.977352,0.495909,0.683082,0.491438,0.192135,0.469885,0.0649168,0.0315332,0.00758553,0.346756,0.805319,0.939339,0.617,0.682156,0.183756,0.507014,0.389881,0.207747,0.0263522,0.853883,0.217079,0.203039,0.95288,0.950982,0.472258,0.951115,0.00266379,0.125763,0.560478,0.222768,0.0500772,0.20611,0.635412,0.402901,0.1314,0.664449,0.73464,0.202014,0.516833,0.466967,0.549122,0.785226,0.671443,0.223581,0.0669108,0.745614,0.807514,0.896128,0.29845,0.401304,0.0735129,0.238152,0.346108,0.482331,0.719395,0.0637665,0.151362,0.230857,0.773795,0.577296,0.230273,0.0531312,0.60519,0.770025,0.0463541,0.566584,0.252675,0.593407,0.89364,0.773881,0.298692,0.414505,0.931757,0.994097,0.948227,0.839369,0.727706,0.925137,0.920846,0.748689,0.102676,0.0485679,0.714433,0.302137,0.57974,0.764972,0.353054,0.910661,0.461929,0.460649,0.0084123,0.637844,0.792199,0.32468,0.863534,0.239123,0.542177,0.193334,0.462563,0.00589228,0.386406,0.734669,0.469675,0.96079,0.545767,0.0757488,0.279996,0.72171,0.230015,0.897664,0.912736,0.813224,0.863319,0.394495,0.0127541,0.315781,0.690188,0.414347,0.931074,0.741509,0.947911,0.900278,0.460896,0.515119,0.481458,0.671633,0.853694,0.151127,0.516152,0.369997,0.573856,0.214797,0.253364,0.952926,0.272651,0.00557178,0.501399,0.890856,0.136988,0.733876,0.986192,0.684737,0.831265,0.914526,0.190407,0.414914,0.563878,0.304544,0.0926874,0.858582,0.196301,0.314126,0.701858,0.919513,0.0213665,0.744137,0.050401,0.823485,0.407971,0.351582,0.258055,0.704261,0.435233,0.804879,0.0553433,0.781886,0.372372,0.445955,0.455069,0.447426,0.996484,0.219853,0.295701,0.353313,0.412818,0.620123,0.30414,0.833601,0.473812,0.674431,0.301426,0.206277,0.306223,0.296433,0.149319,0.842198,0.549572,0.154163,0.904687,0.262419,0.786801,0.868462,0.0180521,0.32958,0.653661,0.403321,0.930328,0.687603,0.250105,0.920394,0.541252,0.0386038,0.752701,0.167315,0.963192,0.38297,0.281761,0.168221,0.721471,0.659016,0.296517,0.428344,0.998922,0.179259,0.38471,0.701127,0.0273226,0.377554,0.142547,0.589179,0.516164,0.917778,0.183894,0.728009,0.814068,0.591832,0.57726,0.215022,0.360879,0.687416,0.988345,0.315763,0.096735,0.741779,0.334947,0.778267,0.268522,0.17659,0.913325,0.0901647,0.551228,0.996513,0.0652162,0.0589315,0.773415,0.0135582,0.0975369,0.955033,0.430589,0.0532281,0.693837,0.942676,0.612755,0.593907,0.589736,0.908752,0.353251,0.302448,0.880696,0.772541,0.71312,0.45689,0.669631,0.967677,0.342243,0.942815,0.605572,0.00632477,0.960172,0.182626,0.0421922,0.40975,0.0386979,0.983051,0.877811,0.704903,0.486268,0.168676,0.171702,0.572763,0.734812,0.0917999,0.891426,0.14199,0.871131,0.130508,0.348086,0.340038,0.830086,0.226102,0.151237,0.413611,0.404914,0.277304,0.744914,0.118543,0.586,0.806049,0.919333,0.890988,0.866297,0.259014,0.339421,0.476175,0.706674,0.158464,0.487266,0.047474,0.344483,0.378314,0.243824,0.227889,0.447189,0.423377,0.248244,0.825431,0.409665,0.416366,0.827426,0.0765819,0.602537,0.609168,0.888716,0.354954,0.075608,0.416396,0.917782,0.896822,0.488247,0.0742655,0.0594585,0.115468,0.686827,0.214196,0.703411,0.940806,0.0815389,0.181628,0.924279,0.405061,0.663808,0.742033,0.417688,0.439478,0.956885,0.182656,0.544165,0.0938812,0.632329,0.817125,0.0131614,0.439367,0.0061723,0.28784,0.483981,0.324336,0.0867357,0.963279,0.482484,0.575657,0.428527,0.543246,0.492135,0.239715,0.963425,0.0936673,0.907233,0.670822,0.144686,0.291348,0.0308452,0.592119,0.782298,0.323942,0.153917,0.69892,0.126652,0.14099,0.0426676,0.208469,0.977534,0.316919,0.300161,0.689666,0.90321,0.911819,0.304846,0.559884,0.07002,0.425928,0.556844,0.568283,0.909951,0.732104,0.211614,0.241662,0.637192,0.944646,0.714219,0.258685,0.164873,0.656461,0.155036,0.286424,0.151466,0.239374,0.445749,0.574826,0.640569,0.565876,0.190189,0.0812508,0.161292,0.724252,0.012599,0.483518,0.667239,0.502441,0.217692,0.946275,0.426275,0.390736,0.13244,0.0587969,0.793292,0.645597,0.628755,0.581574,0.124849,0.152488,0.458621,0.477174,0.268903,0.252632,0.510154,0.828038,0.498749,0.749243,0.245808,0.441234,0.317154,0.648882,0.171429,0.48235,0.0972216,0.866192,0.18734,0.686026,0.527277,0.992964,0.277579,0.666266,0.0159447,0.848694,0.35316,0.22656,0.336075,0.391365,0.364612,0.576848,0.138914,0.627296,0.585571,0.347827,0.668222,0.776379,0.0753518,0.994087,0.345207,0.510247,0.499919,0.857043,0.823608,0.385909,0.51311,0.489662,0.84196,0.406018,0.400236,0.291464,0.655801,0.989429,0.328669,0.992057,0.549287,0.734732,0.299506,0.893458,0.739778,0.933896,0.118421,0.259636,0.8897,0.803727,0.839432,0.18255,0.0820082,0.391051,0.785969,0.137548,0.696507,0.164401,0.833919,0.418598,0.0811741,0.929123,0.626457,0.52596,0.817035,0.644908,0.211662,0.51937,0.708251,0.951957,0.78781,0.663965,0.712017,0.785075,0.865174,0.856902,0.506825,0.577057,0.154892,0.0382943,0.657945,0.636426,0.0743079,0.371462,0.774862,0.246121,0.943679,0.981193,0.916956,0.464053,0.444758,0.0599545,0.839015,0.233012,0.0925478,0.571218,0.940881,0.217875,0.0768601,0.292242,0.959016,0.345216,0.01243,0.458552,0.607342,0.722333,0.966743,0.838558,0.19496,0.999841,0.937088,0.703839,0.326619,0.000801384,0.138404,0.277737,0.086069,0.890418,0.470875,0.216298,0.997022,0.356213,0.931487,0.146116,0.672068,0.342638,0.126061,0.0134531,0.361979,0.134686,0.628185,0.115365,0.535462,0.130405,0.666152,0.722248,0.959254,0.1373,0.767824,0.434679,0.549498,0.780899,0.00592464,0.046885,0.277825,0.671761,0.882294,0.713751,0.934831,0.423422,0.443233,0.571589,0.124636,0.817907,0.0154789,0.406933,0.293788,0.663895,0.820557,0.378721,0.0413778,0.0788913,0.985083,0.32603,0.987007,0.279562,0.889635,0.19878,0.309354,0.279057,0.15282,0.439499,0.478225,|0.997826,0.485523,0.944637,0.367908,0.322326,0.172366,0.340889,0.119825,0.471135,0.381253,0.845023,0.692024,0.736767,0.651528,0.548515,0.923251,0.558,0.821311,0.951191,0.391069,0.885575,0.556534,0.0460919,0.495369,0.344973,0.688292,0.624575,0.489864,0.875216,0.0609657,0.734823,0.168282,0.0244563,0.792111,0.316866,0.9524,0.705326,0.351166,0.879288,0.289102,0.651814,0.427975,0.327505,0.955429,0.484424,0.633653,0.390727,0.53261,0.317715,0.0846035,0.311336,0.30179,0.611759,0.119772,0.89366,0.97631,0.685465,0.515274,0.712897,0.174798,0.632933,0.830265,0.231518,0.09957,0.182673,0.624406,0.205298,0.383117,0.604606,0.573065,0.370603,0.996001,0.328565,0.740107,0.463292,0.261667,0.606431,0.788186,0.375042,0.302903,0.428951,0.67719,0.0269784,0.698987,0.700787,0.024696,0.753169,0.323853,0.646021,0.606312,0.262004,0.182011,0.759718,0.322761,0.630277,0.859924,0.555606,0.630527,0.233334,0.416835,0.175016,0.259938,0.358341,0.833936,0.511147,0.614024,0.942475,0.194993,0.628984,0.353912,0.940267,0.208672,0.337925,0.404338,0.471454,0.825678,0.14664,0.902135,0.821008,0.678263,0.673924,0.853693,0.63407,0.958751,0.694814,0.679328,0.558454,0.259458,0.321176,0.615853,0.516641,0.0739844,0.637311,0.558587,0.600745,0.344146,0.978591,0.258269,0.70473,0.538677,0.65344,0.602951,0.154613,0.93853,0.374337,0.240669,0.297791,0.993113,0.0100082,0.42443,0.210151,0.375045,0.307211,0.286854,0.986654,0.0181807,0.436692,0.0870011,0.571604,0.373335,0.723598,0.561969,0.658321,0.0863311,0.88995,0.413021,0.917169,0.905682,0.751472,0.0653618,0.596936,0.466926,0.491957,0.843897,0.543049,0.555104,0.199149,0.671367,0.992185,0.152683,0.782064,0.109732,0.927039,0.683633,0.647409,0.560448,0.488038,0.00990963,0.128739,0.237306,0.34183,0.567822,0.215839,0.0249741,0.904855,0.411039,0.591498,0.463265,0.483193,0.343206,0.222551,0.158184,0.254531,0.51897,0.196478,0.10468,0.4672,0.965878,0.0988548,0.779629,0.858388,0.83138,0.794812,0.758397,0.0806268,0.481913,0.424499,0.907482,0.590981,0.582129,0.54097,0.318905,0.119908,0.708188,0.587784,0.038011,0.512573,0.911271,0.824317,0.735833,0.0372018,0.683926,0.169785,0.976186,0.609187,0.79407,0.487537,0.44996,0.512591,0.358221,0.109123,0.215338,0.0573455,0.557507,0.745093,0.502457,0.422845,0.959277,0.406855,0.197139,0.525263,0.242694,0.374618,0.865692,0.95722,0.924762,0.379622,0.414289,0.663251,0.909629,0.269281,0.41717,0.719865,0.313515,0.253811,0.00197458,0.505407,0.827467,0.546565,0.458548,0.704873,0.423189,0.874517,0.363144,0.849223,0.806227,0.0720783,0.385,0.264867,0.198165,0.00422525,0.593286,0.506922,0.882732,0.0589467,0.656673,0.0789415,0.595726,0.663462,0.4131,0.178191,0.0785529,0.381736,0.0421155,0.537278,0.0575768,0.871941,0.70648,0.15776,0.252282,0.594947,0.114769,0.147178,0.777053,0.799348,0.805426,0.242736,0.280272,0.208447,0.0814509,0.998455,0.114695,0.742642,0.888968,0.428032,0.0432242,0.208405,0.00137067,0.37941,0.996761,0.358334,0.776409,0.599863,0.568351,0.837658,0.438789,0.139618,0.502386,0.375719,0.488799,0.694756,0.810011,0.13062,0.664015,0.788255,0.570946,0.358527,0.850981,0.84237,0.842241,0.400513,0.332627,0.444676,0.518348,0.290076,0.0741377,0.980666,0.53284,0.348608,0.0353687,0.292139,0.18903,0.401883,0.979111,0.96555,0.826424,0.0419612,0.423828,0.262869,0.575992,0.744718,0.0411268,0.123845,0.56869,0.940152,0.921537,0.0307174,0.032377,0.074429,0.358276,0.471864,0.578254,0.04185,0.977409,0.43586,0.703924,0.196109,0.965129,0.718927,0.461895,0.987453,0.00552094,0.793872,0.939885,0.946478,0.744739,0.982612,0.844427,0.858378,0.45659,0.951322,0.421956,0.125998,0.840931,0.218515,0.140458,0.530072,0.570388,0.286925,0.650504,0.877092,0.484812,0.16972,0.414352,0.880109,0.251986,0.746022,0.546354,0.14891,0.60923,0.352349,0.353971,0.401485,0.634108,0.670147,0.541791,0.971194,0.557694,0.606732,0.622423,0.413762,0.729513,0.851814,0.768683,0.625855,0.430098,0.714259,0.0449996,0.812602,0.451089,0.0866466,0.771077,0.428017,0.761585,0.0927572,0.753758,0.183365,0.683865,0.529738,0.1203,0.275676,0.866462,0.918946,0.843844,0.579279,0.60413,0.248015,0.588538,0.149028,0.187713,0.141656,0.827092,0.976648,0.132962,0.362714,0.221041,0.00698763,0.919741,0.027379,0.535673,0.274737,0.197351,0.342836,0.56897,0.529054,0.0721084,0.573994,0.773608,0.451391,0.636467,0.502911,0.498681,0.867348,0.0593978,0.424531,0.126086,0.75966,0.213047,0.840304,0.460898,0.314515,0.275391,0.851116,0.39194,0.996111,0.220845,0.244304,0.488922,0.418462,0.401509,0.899865,0.857825,0.901564,0.0618752,0.237969,0.562396,0.020658,0.507326,0.104215,0.41007,0.867505,0.937563,0.208926,0.231045,0.22388,0.498743,0.61717,0.449267,0.667853,0.246816,0.0671728,0.0989771,0.221254,0.643337,0.693653,0.827246,0.254764,0.764854,0.482853,0.205282,0.530113,0.374586,0.664217,0.854757,0.539355,0.326431,0.560517,0.503855,0.149592,0.461457,0.603037,0.581019,0.914397,0.932916,0.259679,0.518377,0.68901,0.743122,0.856055,0.447005,0.409896,0.818651,0.988051,0.385286,0.850586,0.919294,0.622653,0.127819,0.721586,0.442109,0.109779,0.621197,0.187478,0.834338,0.709979,0.50139,0.57913,0.288685,0.421861,0.585928,0.689876,0.534827,0.102426,0.193984,0.401202,0.615661,0.77855,0.453618,0.950109,0.31208,0.736557,0.848593,0.675774,0.828114,0.714235,0.913565,0.876271,0.669347,0.804269,0.324671,0.728913,0.184574,0.344976,0.243947,0.376372,0.46801,0.72249,0.449366,0.889065,0.671033,0.129355,0.103465,0.792573,0.773955,0.347744,0.252576,0.57893,0.975437,0.0727665,0.388966,0.35177,0.379152,0.213297,0.543088,0.588118,0.508688,0.800501,0.143453,0.0975217,0.228127,0.774035,0.103846,0.221541,0.52641,0.078065,0.290686,0.245406,0.9805,0.808562,0.0128448,0.826927,0.16332,0.639081,0.160681,0.0557727,0.890291,0.661902,0.44662,0.762724,0.431997,0.406009,0.883244,0.542146,0.667296,0.798409,0.628417,0.635942,0.483657,0.622676,0.245957,0.485951,0.419454,0.894966,0.620231,0.289574,0.263091,0.784965,0.581199,0.360403,0.202831,0.333361,0.584674,0.919637,0.298402,0.812791,0.24981,0.404305,0.14341,0.146632,0.211952,0.398673,0.714067,0.394337,0.37668,0.11517,0.936799,0.103128,0.274155,0.41939,0.762863,0.499243,0.606754,0.205007,0.16059,0.608685,0.0502406,0.28894,0.706045,0.822535,0.207826,0.106915,0.538527,0.273159,0.849283,0.246007,0.507998,0.893675,0.902774,0.291235,0.665692,0.0121066,0.0343301,0.692662,0.532063,0.597792,0.571199,0.133359,0.0917389,0.238259,0.196542,0.344427,0.0400573,0.426427,0.770046,0.939413,0.76728,0.0784584,0.441956,0.415625,0.194006,0.854529,0.207243,0.26367,0.645983,0.0796626,0.791524,0.70301,0.637934,0.0389384,0.81352,0.492758,0.181679,0.121276,0.686713,0.188368,0.408483,0.640173,0.027256,0.687767,0.931706,0.582648,0.294576,0.207741,0.0446481,0.263028,0.249526,0.556249,0.760922,0.607611,0.0918934,0.926077,0.511144,0.588927,0.156908,0.173366,0.495467,0.364822,0.276116,0.345769,0.957769,0.15336,0.04917,0.633473,0.139789,0.0796633,0.866067,0.689252,0.241608,0.173509,0.37916,0.760631,0.786878,0.828999,0.704328,0.923862,0.759491,0.466179,0.276977,0.387741,0.193975,0.25093,0.633544,0.920687,0.68477,0.364836,0.408112,0.153056,0.132614,0.611991,0.225368,0.484577,0.399186,0.585518,0.506505,0.171965,0.337487,0.482207,0.25252,0.966317,0.487463,0.633321,0.814222,0.873713,0.0993306,0.12926,0.485339,0.350275,0.185858,0.501608,0.897733,0.56631,0.504912,0.672838,0.31869,0.14778,0.899186,0.960726,0.350123,0.947511,0.131712,0.840174,0.0690992,0.936872,0.361581,0.0951791,0.698149,0.905074,0.405372,0.263157,0.337846,0.83459,0.296377,0.707112,0.201335,0.602982,0.117826,0.881099,0.544847,0.722983,0.108025,0.750413,0.515668,0.419608,0.39507,0.855031,0.655378,0.739596,0.214455,0.768182,0.954999,0.702959,0.0708795,0.311226,0.872907,0.274844,0.827549,0.481988,0.201071,0.578978,0.266777,0.203477,0.857476,0.600849,0.112427,0.195335,0.628714,0.216402,0.0798019,0.988961,0.989417,0.953433,0.315331,0.538035,0.550461,0.222643,0.170751,0.299096,0.956367,0.0990182,0.00711602,0.346725,0.0423515,0.384834,0.893342,0.687458,0.905539,0.527407,0.675293,0.310971,0.360798,0.980142,0.130744,0.96997,0.858457,0.0357834,0.0366384,0.717692,0.329768,0.731736,0.848322,0.146539,0.552896,0.171259,0.175117,0.537744,0.67408,0.113762,0.213108,0.816331,0.142782,0.295002,0.725601,0.68849,0.107703,0.875781,0.415224,0.99619,0.275391,0.732636,0.728936,0.131415,0.988107,0.277859,0.953196,0.0900892,0.732621,0.807595,0.640824,0.972288,0.472282,0.150136,0.222469,0.669306,0.829461,0.597333,0.942766,0.0840859,0.385848,0.553899,0.556955,0.622673,0.0593931,0.625874,0.262006,0.295489,0.567626,0.624924,0.294543,0.833314,0.913676,0.760453,0.982018,0.395161,0.146004,0.606489,0.760774,0.420276,0.996154,0.633319,0.391295,0.181166,0.736228,0.966665,0.635467,0.583142,0.0406217,0.845236,0.618585,0.827918,0.940048,0.312978,0.623323,0.793322,0.515753,0.875816,0.258595,0.898733,0.0741242,0.605226,0.34156,0.929351,0.700072,0.973697,0.935814,0.958687,0.674431,0.71978,0.519644,0.986047,0.761594,0.0345762,0.849215,0.949053,0.858614,0.338046,0.185989,0.461124,0.991142,0.0645084,0.658226,0.876369,0.797476,0.288258,0.310302,0.472169,0.274095,0.23828,0.218428,0.561254,0.199647,|0.886201,0.501793,0.356592,0.29793,0.460162,0.0297694,0.545675,0.869698,0.211683,0.491392,0.496768,0.699399,0.149886,0.76996,0.943885,0.112453,0.0848835,0.32908,0.380333,0.451812,0.435621,0.472492,0.315818,0.987317,0.520308,0.0484654,0.340327,0.584019,0.16603,0.33048,0.614453,0.442802,0.06843,0.373339,0.90656,0.136712,0.47518,0.49124,0.48818,0.431258,0.197573,0.831653,0.387172,0.25224,0.0405815,0.229466,0.494463,0.371341,0.96352,0.403569,0.808205,0.0308913,0.301114,0.214852,0.214521,0.070414,0.175404,0.591933,0.607533,0.0961429,0.0988321,0.0931883,0.395219,0.387808,0.972339,0.210426,0.726422,0.665861,0.105627,0.934352,0.788131,0.676707,0.609027,0.011251,0.546023,0.515318,0.502511,0.380386,0.0618504,0.922929,0.564696,0.0310839,0.758599,0.178622,0.646388,0.25428,0.888673,0.269984,0.48354,0.0141622,0.076211,0.683473,0.347694,0.241371,0.21692,0.932257,0.831013,0.783852,0.484088,0.741475,0.58454,0.524228,0.0935954,0.543352,0.0719142,0.617335,0.563934,0.0577207,0.109417,0.101634,0.0222064,0.658611,0.0798562,0.987013,0.737359,0.675761,0.65633,0.169248,0.386231,0.142326,0.440004,0.597245,0.121914,0.504204,0.419156,0.807175,0.58857,0.192168,0.53232,0.38794,0.576951,0.501469,0.222831,0.25502,0.243279,0.0785578,0.341357,0.767921,0.412682,0.211346,0.757108,0.449362,0.772276,0.859779,0.927295,0.185595,0.659244,0.306332,0.0875769,0.516168,0.598923,0.953859,0.318994,0.265628,0.374463,0.649652,0.698252,0.191209,0.229281,0.336054,0.6414,0.672346,0.673275,0.153156,0.514497,0.186435,0.778446,0.401734,0.714384,0.613841,0.258312,0.217863,0.911681,0.958111,0.384262,0.486198,0.0469941,0.0490332,0.874278,0.574685,0.876819,0.935827,0.52825,0.848684,0.634947,0.775861,0.14684,0.937696,0.899765,0.568593,0.718552,0.889815,0.463743,0.0569877,0.120811,0.88714,0.864906,0.77,0.851913,0.592831,0.153657,0.388708,0.491762,0.368713,0.514949,0.997119,0.693515,0.38492,0.144271,0.32254,0.040223,0.138681,0.223598,0.265406,0.261201,0.0892363,0.0326989,0.61162,0.770589,0.327561,0.451142,0.556525,0.0686389,0.857905,0.0618496,0.621619,0.844647,0.128362,0.307844,0.0563223,0.386537,0.661999,0.188462,0.544606,0.362055,0.0736232,0.329048,0.375715,0.167271,0.556928,0.756079,0.395683,0.41811,0.227257,0.554637,0.852197,0.964887,0.501153,0.935756,0.858591,0.386312,0.681781,0.932786,0.159513,0.728674,0.0972369,0.156221,0.36201,0.325989,0.910515,0.223912,0.909087,0.827834,0.692685,0.860652,0.563714,0.0940589,0.0492037,0.0776748,0.441873,0.503771,0.478871,0.832074,0.930685,0.413728,0.518262,0.709601,0.489267,0.417585,0.421529,0.228725,0.596753,0.0442564,0.291076,0.320839,0.139338,0.413795,0.115363,0.866413,0.62283,0.288369,0.406381,0.134912,0.874753,0.662078,0.483947,0.395868,0.873206,0.164167,0.253638,0.456773,0.0172095,0.268546,0.72172,0.354582,0.053188,0.325575,0.92691,0.313501,0.213539,0.905086,0.566899,0.624943,0.705375,0.962863,0.988762,0.682042,0.201036,0.367955,0.462219,0.136006,0.77488,0.496146,0.810163,0.648756,0.927054,0.582574,0.0746462,0.209939,0.673482,0.435123,0.0857956,0.416229,0.981698,0.264563,0.549724,0.709337,0.685355,0.822677,0.766166,0.594311,0.42956,0.70022,0.771884,0.302272,0.428823,0.2298,0.18699,0.47213,0.53741,0.986515,0.000346243,0.972907,0.883044,0.894717,0.402121,0.725729,0.00331634,0.851529,0.976518,0.278816,0.526705,0.831777,0.48766,0.877182,0.0499776,0.379875,0.0470962,0.00834614,0.517391,0.7959,0.893908,0.0653101,0.340939,0.657904,0.538703,0.781551,0.373399,0.275766,0.788205,0.670277,0.835508,0.643075,0.512698,0.703303,0.641828,0.867293,0.312836,0.504588,0.22691,0.888524,0.402222,0.767562,0.332628,0.342311,0.646222,0.158994,0.194226,0.580092,0.552914,0.974954,0.654161,0.744561,0.0376662,0.363029,0.479864,0.280337,0.300035,0.40096,0.895551,0.398237,0.982963,0.0856451,0.534417,0.784338,0.792521,0.961272,0.0368037,0.297326,0.52193,0.963771,0.792263,0.683293,0.531212,0.57623,0.980328,0.973072,0.745666,0.117215,0.0585377,0.814851,0.299225,0.310563,0.719282,0.00193679,0.595505,0.547682,0.264156,0.137399,0.374642,0.963173,0.814762,0.843472,0.582681,0.961123,0.109848,0.937113,0.968968,0.722517,0.61854,0.143949,0.957891,0.489288,0.946929,0.406362,0.780337,0.865758,0.571238,0.289314,0.352334,0.846637,0.0340587,0.671244,0.37749,0.312834,0.0503266,0.0127082,0.766748,0.677225,0.080275,0.0932728,0.232745,0.227494,0.393396,0.637342,0.958519,0.475898,0.539616,0.274893,0.894827,0.247109,0.965757,0.054221,0.95074,0.315831,0.943117,0.578064,0.431879,0.318112,0.983193,0.458437,0.940077,0.629079,0.672195,0.486375,0.875612,0.944228,0.356892,0.382813,0.94471,0.0696099,0.656944,0.217793,0.0301167,0.918194,0.0952224,0.506365,0.374333,0.147338,0.658633,0.813619,0.278335,0.372968,0.293236,0.601393,0.220473,0.933755,0.739473,0.43509,0.620417,0.98318,0.859549,0.775704,0.00845766,0.98233,0.0649381,0.333225,0.230824,0.503557,0.00197875,0.966282,0.856694,0.0485987,0.794149,0.803147,0.425178,0.707487,0.949765,0.597071,0.351773,0.479647,0.150836,0.216026,0.868206,0.0389248,0.847333,0.529461,0.121675,0.41591,0.0915056,0.121978,0.661916,0.18254,0.495806,0.206458,0.613213,0.774523,0.797771,0.891318,0.848549,0.817497,0.536252,0.565316,0.203111,0.499787,0.908471,0.333046,0.80207,0.723565,0.983477,0.0625218,0.136535,0.133965,0.0590288,0.366572,0.219372,0.367684,0.0525756,0.748108,0.0846063,0.0532772,0.449875,0.678921,0.24813,0.535538,0.210428,0.857745,0.663089,0.819619,0.731203,0.848351,0.121198,0.552483,0.464819,0.305785,0.729277,0.933962,0.730377,0.383669,0.564736,0.0747052,0.16879,0.932011,0.53096,0.00346941,0.609705,0.676756,0.412821,0.389034,0.0418653,0.932578,0.945384,0.599855,0.771812,0.280104,0.841034,0.982526,0.562115,0.887752,0.887952,0.0450265,0.663402,0.366632,0.230165,0.71176,0.79683,0.451133,0.992439,0.15188,0.12139,0.336661,0.345309,0.292541,0.268982,0.470569,0.533876,0.899384,0.0295768,0.974216,0.986262,0.882917,0.0292027,0.61228,0.342063,0.724675,0.0273653,0.921867,0.881096,0.0609381,0.0555951,0.380941,0.916882,0.678246,0.235025,0.73898,0.122609,0.225977,0.301176,0.249119,0.510123,0.49146,0.888392,0.802238,0.437022,0.226526,0.59255,0.664652,0.341234,0.831237,0.0121474,0.549021,0.737283,0.302324,0.916413,0.177059,0.834524,0.351506,0.788239,0.174087,0.386005,0.281835,0.339185,0.534044,0.48837,0.623892,0.0652847,0.00230944,0.92812,0.317287,0.148614,0.59117,0.570186,0.0635935,0.323098,0.840615,0.654746,0.889484,0.215944,0.912628,0.0192167,0.331164,0.246283,0.568208,0.412518,0.702975,0.167967,0.0189629,0.970046,0.455788,0.245025,0.752323,0.435046,0.292018,0.982755,0.181435,0.827987,0.538165,0.694514,0.602454,0.211317,0.0277697,0.261647,0.21575,0.947286,0.108382,0.0525541,0.631818,0.00752908,0.257946,0.167548,0.625509,0.0321198,0.0345941,0.74295,0.971716,0.176712,0.38697,0.128071,0.971389,0.565865,0.987067,0.575656,0.52375,0.362926,0.357021,0.312183,0.987421,0.74044,0.61656,0.33209,0.442876,0.268103,0.0140049,0.218901,0.622821,0.874159,0.40353,0.203704,0.310769,0.169991,0.567922,0.704004,0.280701,0.94978,0.601292,0.587683,0.689027,0.663745,0.581418,0.955125,0.00867403,0.502553,0.814837,0.0695457,0.778441,0.269058,0.710284,0.847202,0.934819,0.944924,0.193408,0.545976,0.110451,0.208336,0.538785,0.404688,0.409095,0.0759147,0.635915,0.466139,0.365051,0.518127,0.443322,0.828083,0.77811,0.410157,0.648869,0.175931,0.419283,0.734864,0.644572,0.161663,0.117324,0.573223,0.143891,0.163432,0.371488,0.701769,0.388143,0.618699,0.103391,0.459793,0.306038,0.488891,0.90137,0.402304,0.631263,0.614834,0.844152,0.748804,0.534804,0.990922,0.736922,0.00641608,0.47406,0.0307814,0.371972,0.54373,0.37151,0.996235,0.0324699,0.447048,0.641771,0.908223,0.318701,0.694452,0.969815,0.506681,0.445966,0.596886,0.324347,0.625566,0.13444,0.447176,0.36699,0.992054,0.22952,0.741084,0.255698,0.785871,0.440517,0.77308,0.969802,0.823739,0.334094,0.532012,0.239313,0.800083,0.611136,0.957439,0.796023,0.0910008,0.41589,0.155721,0.0170841,0.385847,0.580817,0.679744,0.942144,0.965984,0.530787,0.52395,0.00579077,0.224764,0.515085,0.715256,0.207755,0.833094,0.535919,0.0278425,0.296494,0.139055,0.00250447,0.352161,0.281961,0.984241,0.374644,0.646669,0.357387,0.170026,0.838638,0.837623,0.0648194,0.700909,0.599562,0.0257695,0.153314,0.247663,0.398653,0.519759,0.0860654,0.255451,0.237062,0.94977,0.778638,0.551961,0.553383,0.27787,0.644465,0.510437,0.685224,0.899944,0.870649,0.199472,0.288614,0.877382,0.400816,0.647951,0.364787,0.0909021,0.402016,0.740652,0.1125,0.330391,0.376931,0.693723,0.276938,0.241135,0.827413,0.509978,0.557078,0.244691,0.869112,0.0460687,0.319346,0.209385,0.688672,0.70584,0.109848,0.168602,0.702822,0.333533,0.931475,0.0629287,0.241606,0.439783,0.99709,0.436081,0.22237,0.0510178,0.464414,0.359373,0.371504,0.894227,0.878767,0.478734,0.387989,0.629032,0.14943,0.532155,0.904446,0.387705,0.889362,0.519888,0.490161,0.566559,0.0167097,0.365166,0.873863,0.413148,0.54905,0.297474,0.91446,0.787648,0.944164,0.695595,0.339008,0.661697,0.681006,0.744163,0.779092,0.147441,0.807039,0.794525,0.187822,0.156273,0.311159,0.401266,0.195985,0.0648739,0.44371,0.491686,0.432976,0.354263,0.413932,0.942773,0.218093,0.485973,0.664178,0.592877,|0.282107,0.136937,0.803077,0.232791,0.513179,0.213966,0.312473,0.800358,0.136775,0.531444,0.506385,0.409184,0.982782,0.25229,0.189648,0.70536,0.0263083,0.144748,0.767193,0.734313,0.185998,0.428833,0.715227,0.203694,0.0533172,0.308377,0.0693231,0.59084,0.817587,0.358005,0.56233,0.100568,0.966804,0.99983,0.882267,0.232506,0.902176,0.39083,0.962214,0.451103,0.47767,0.590856,0.640755,0.0474211,0.610116,0.332482,0.687148,0.528847,0.220513,0.804166,0.530812,0.660757,0.168658,0.343155,0.139924,0.72139,0.121063,0.339745,0.918106,0.248543,0.984461,0.361192,0.830718,0.827357,0.399122,0.62174,0.00335491,0.997668,0.441776,0.715478,0.764006,0.301133,0.754979,0.632057,0.885264,0.972727,0.649304,0.593735,0.0676258,0.796992,0.408355,0.630117,0.510544,0.499108,0.833954,0.533965,0.832423,0.107364,0.931271,0.745801,0.962082,0.930962,0.688531,0.0742161,0.567,0.615779,0.761464,0.341978,0.197517,0.0869861,0.128359,0.535082,0.623523,0.520207,0.877197,0.288957,0.152768,0.679273,0.910424,0.282422,0.100032,0.710516,0.783561,0.0634657,0.639773,0.696315,0.114646,0.849056,0.75319,0.647859,0.678177,0.0511001,0.912434,0.92769,0.254652,0.539577,0.970315,0.695007,0.292033,0.816179,0.684393,0.0201184,0.394409,0.841021,0.184485,0.777423,0.990443,0.451129,0.604416,0.101494,0.196736,0.252997,0.721905,0.659813,0.906852,0.203779,0.344176,0.601117,0.200327,0.16816,0.486924,0.715055,0.336837,0.0411916,0.110664,0.743634,0.642278,0.273792,0.654988,0.868036,0.77665,0.905677,0.485146,0.310654,0.727148,0.773105,0.328269,0.157933,0.391279,0.413154,0.0811618,0.842928,0.720059,0.271358,0.316328,0.309628,0.673545,0.363631,0.267868,0.630413,0.965083,0.790174,0.780452,0.895197,0.208453,0.786684,0.759214,0.230536,0.929761,0.111652,0.757325,0.142954,0.453065,0.778241,0.580341,0.0960395,0.445109,0.309532,0.580048,0.918392,0.750439,0.0820229,0.272378,0.871179,0.660435,0.187642,0.29194,0.00613892,0.459171,0.426759,0.940956,0.641224,0.764708,0.96228,0.62257,0.845312,0.672918,0.974927,0.787555,0.950145,0.922565,0.537612,0.09332,0.582659,0.617639,0.543021,0.424211,0.738756,0.770259,0.35813,0.657223,0.901709,0.856088,0.802684,0.00788653,0.0726206,0.857162,0.851104,0.00546157,0.737463,0.867603,0.925726,0.60648,0.943636,0.337728,0.611539,0.7907,0.321539,0.674724,0.539138,0.585473,0.036595,0.285131,0.754506,0.508976,0.0162472,0.0529714,0.826207,0.545479,0.302059,0.848076,0.369553,0.229658,0.478697,0.627628,0.963086,0.264994,0.777516,0.914337,0.811834,0.764468,0.737075,0.993094,0.411042,0.801925,0.927279,0.685365,0.574839,0.469895,0.22995,0.786843,0.259048,0.704522,0.976524,0.203379,0.16781,0.558172,0.96228,0.886077,0.961204,0.841916,0.425938,0.413309,0.730058,0.259094,0.00565577,0.258699,0.642549,0.435063,0.087202,0.825141,0.562482,0.482614,0.970953,0.837874,0.100036,0.730983,0.7482,0.479866,0.836669,0.333949,0.983605,0.311343,0.532852,0.500909,0.406202,0.387338,0.672985,0.502075,0.895354,0.685141,0.0968308,0.236375,0.22136,0.977084,0.507406,0.935039,0.0612243,0.418894,0.543251,0.824549,0.943796,0.0399113,0.855415,0.768441,0.853453,0.540451,0.369441,0.655883,0.712065,0.703337,0.0967467,0.836862,0.214334,0.786909,0.989181,0.737898,0.220969,0.737781,0.941735,0.329871,0.0698573,0.810733,0.230001,0.415494,0.150565,0.792332,0.638355,0.14542,0.412491,0.807229,0.393031,0.986927,0.656848,0.63783,0.411789,0.174656,0.45787,0.399301,0.44928,0.895786,0.972361,0.952999,0.240091,0.11383,0.70841,0.340578,0.313323,0.801975,0.715811,0.577914,0.0476267,0.886763,0.669589,0.0910133,0.577085,0.987845,0.545654,0.122352,0.358928,0.449404,0.979021,0.276805,0.350403,0.10452,0.824454,0.602798,0.396638,0.457765,0.970688,0.0288178,0.8864,0.792153,0.789706,0.272572,0.365808,0.995196,0.930803,0.5339,0.248541,0.840463,0.378849,0.648867,0.69187,0.856032,0.609043,0.470276,0.99154,0.0111985,0.258056,0.713838,0.156278,0.39212,0.890501,0.839791,0.144761,0.166277,0.79739,0.854192,0.463567,0.376815,0.173535,0.78883,0.70791,0.776371,0.0529044,0.628196,0.234132,0.517764,0.0807478,0.896401,0.248081,0.292452,0.732796,0.353519,0.973341,0.731499,0.0744749,0.771479,0.916754,0.436952,0.240147,0.544557,0.817635,0.41632,0.376561,0.74157,0.402937,0.317944,0.805036,0.325611,0.986586,0.987631,0.082279,0.9308,0.549002,0.867703,0.175401,0.249809,0.0323813,0.997362,0.497307,0.311425,0.278994,0.623103,0.639478,0.176656,0.216811,0.485825,0.660999,0.124214,0.0681482,0.938423,0.697593,0.811845,0.139171,0.564053,0.859839,0.497305,0.0667238,0.306447,0.790644,0.745138,0.276938,0.311453,0.354144,0.594358,0.763994,0.740721,0.90958,0.435116,0.510197,0.806049,0.939789,0.213673,0.787604,0.863753,0.79554,0.936198,0.308065,0.150544,0.531492,0.378187,0.362484,0.226084,0.522999,0.159426,0.17564,0.251368,0.55557,0.239944,0.528634,0.366906,0.385911,0.810545,0.902544,0.942646,0.865674,0.0820941,0.0373778,0.136688,0.0459101,0.491481,0.276896,0.229043,0.584036,0.855305,0.100431,0.108961,0.255108,0.433644,0.376439,0.661012,0.485398,0.748667,0.698334,0.395537,0.12348,0.278335,0.414253,0.704342,0.780982,0.174277,0.613558,0.357799,0.379725,0.897456,0.938919,0.144713,0.295529,0.554828,0.0590653,0.82366,0.888133,0.801973,0.623924,0.243961,0.615259,0.287791,0.9083,0.981324,0.965431,0.77666,0.601381,0.305552,0.309773,0.313755,0.0565081,0.193466,0.440997,0.0569476,0.501932,0.836712,0.792383,0.943797,0.32144,0.568183,0.186175,0.709243,0.912589,0.0549359,0.138895,0.0737524,0.258796,0.637091,0.92754,0.827523,0.899172,0.806981,0.788755,0.201824,0.726643,0.655762,0.545416,0.950988,0.842632,0.849839,0.786399,0.0415264,0.716264,0.923238,0.366639,0.162112,0.959489,0.36241,0.287372,0.395223,0.0295462,0.490097,0.018181,0.336204,0.852523,0.573946,0.138926,0.742837,0.738815,0.929033,0.109671,0.958451,0.0712393,0.558802,0.656142,0.475107,0.684147,0.20398,0.851533,0.249728,0.024637,0.0244086,0.0228896,0.325152,0.225825,0.451634,0.476469,0.228723,0.00784582,0.844561,0.776622,0.396564,0.714604,0.130521,0.383709,0.524417,0.271926,0.0660335,0.143304,0.760223,0.166741,0.17268,0.801358,0.987183,0.684861,0.552695,0.00813586,0.104892,0.866988,0.176876,0.58048,0.286304,0.742323,0.315127,0.185456,0.979762,0.315269,0.582388,0.121266,0.404892,0.845302,0.582962,0.635199,0.360735,0.316033,0.419751,0.321298,0.674671,0.457472,0.9891,0.693258,0.838313,0.588356,0.24185,0.408867,0.897051,0.589643,0.149115,0.458864,0.284231,0.274307,0.364582,0.902993,0.846856,0.319452,0.412319,0.413753,0.111765,0.550908,0.132419,0.486096,0.159752,0.250828,0.0478415,0.40986,0.588885,0.837951,0.0706192,0.843655,0.977359,0.391206,0.355581,0.479027,0.739209,0.350071,0.39032,0.137417,0.161005,0.187655,0.48039,0.403097,0.542955,0.51279,0.779241,0.195194,0.566417,0.47136,0.715916,0.917755,0.590973,0.0673763,0.255363,0.350635,0.623751,0.945603,0.455778,0.919384,0.467346,0.0743802,0.00568813,0.708204,0.650985,0.753639,0.971761,0.74215,0.917164,0.851372,0.297688,0.99511,0.950795,0.475899,0.28231,0.739203,0.126297,0.557109,0.37781,0.148091,0.784492,0.0756119,0.145894,0.666726,0.751633,0.107664,0.280749,0.953521,0.281426,0.425794,0.567359,0.601331,0.619117,0.35167,0.950052,0.382705,0.999144,0.599392,0.910548,0.590877,0.608912,0.633963,0.709019,0.210117,0.332623,0.90103,0.878948,0.524351,0.577399,0.206749,0.94019,0.963158,0.218913,0.209682,0.110619,0.343703,0.547687,0.0642816,0.0809973,0.485348,0.15133,0.164604,0.386251,0.5607,0.462095,0.208766,0.778467,0.313139,0.0595731,0.890344,0.20242,0.306353,0.257361,0.628435,0.608383,0.422696,0.0312865,0.0934389,0.992757,0.308305,0.931664,0.62301,0.150085,0.5646,0.942508,0.793038,0.253988,0.265605,0.13177,0.204394,0.618103,0.380307,0.470439,0.605616,0.92077,0.0287707,0.180769,0.241613,0.613154,0.412284,0.234399,0.339735,0.985582,0.431517,0.0870551,0.724294,0.15638,0.372097,0.388273,0.8047,0.797314,0.747155,0.537568,0.441579,0.931146,0.692495,0.782438,0.360564,0.330941,0.77216,0.195929,0.291512,0.218158,0.489273,0.711233,0.363915,0.00727254,0.670481,0.552551,0.127264,0.160598,0.205424,0.0755996,0.331556,0.32867,0.486695,0.431396,0.661202,0.211878,0.0537705,0.0933688,0.104334,0.418622,0.318371,0.350061,0.209758,0.231452,0.917085,0.293158,0.955672,0.618241,0.854995,0.634361,0.532226,0.703435,0.121134,0.954295,0.939909,0.645181,0.75358,0.416306,0.383807,0.514848,0.2743,0.534122,0.691335,0.284003,0.176006,0.288626,0.52573,0.589143,0.0485803,0.0135928,0.129001,0.653769,0.856415,0.794733,0.121724,0.368538,0.165445,0.470674,0.163488,0.0817503,0.15949,0.554751,0.207739,0.76518,0.139207,0.943794,0.0184509,0.0314164,0.263711,0.855599,0.608863,0.634347,0.761708,0.644275,0.139821,0.998041,0.976963,0.238645,0.496709,0.566078,0.0636632,0.255901,0.85597,0.529361,0.513005,0.700072,0.0174717,0.224803,0.225688,0.830842,0.878686,0.766157,0.975289,0.321306,0.654758,0.62419,0.0597992,0.943711,0.363034,0.376076,0.590808,0.670242,0.43837,0.584491,0.155446,0.240019,0.301138,0.763828,0.756367,0.158449,0.363976,0.605655,0.583521,0.987324,0.74094,0.952744,0.0870027,0.0759986,0.91594,0.356778,0.820788,0.0540173,0.186454,0.835581,0.587287,0.33006,0.214507,0.590395,0.394092,0.297867,0.55301,0.778746,0.642049,|0.264593,0.399566,0.0036419,0.698913,0.865999,0.776097,0.378805,0.216246,0.500748,0.256989,0.621969,0.0290134,0.823736,0.523432,0.7307,0.632698,0.499479,0.105191,0.663922,0.218103,0.0239083,0.862276,0.17727,0.514312,0.991553,0.672417,0.426316,0.240102,0.109518,0.427819,0.454823,0.304989,0.352638,0.149768,0.763103,0.552247,0.468539,0.488469,0.578702,0.64163,0.688869,0.184792,0.949003,0.426692,0.61988,0.498791,0.780607,0.187844,0.592781,0.165086,0.863326,0.255205,0.431282,0.536424,0.497642,0.19204,0.292669,0.692518,0.110735,0.770225,0.156749,0.546981,0.975026,0.35479,0.205881,0.996198,0.756868,0.114254,0.437778,0.804126,0.0153826,0.242976,0.400851,0.782395,0.383146,0.199678,0.60429,0.449235,0.381226,0.412244,0.00394881,0.132569,0.953323,0.653648,0.935926,0.360068,0.555949,0.099106,0.300821,0.840138,0.774522,0.519475,0.973686,0.715816,0.13879,0.0817409,0.174384,0.0645051,0.0440511,0.771562,0.961143,0.341919,0.247108,0.53089,0.641944,0.549781,0.0274284,0.00401706,0.138728,0.118939,0.362607,0.509052,0.885137,0.639621,0.467824,0.569491,0.769303,0.111846,0.0313961,0.20885,0.156238,0.283572,0.466876,0.851816,0.17366,0.357395,0.923439,0.397552,0.394543,0.973697,0.141929,0.311971,0.497693,0.942767,0.858567,0.11908,0.833909,0.801161,0.869663,0.984007,0.268278,0.0699603,0.947415,0.537566,0.696961,0.546927,0.979594,0.949154,0.864724,0.873583,0.188918,0.247682,0.998771,0.21511,0.399228,0.782476,0.0114209,0.100712,0.132424,0.981956,0.755443,0.821346,0.637344,0.760593,0.664538,0.835456,0.496431,0.985624,0.443274,0.0979433,0.915602,0.357107,0.761324,0.941194,0.78949,0.573181,0.260368,0.123996,0.399983,0.781657,0.892924,0.43221,0.760203,0.171467,0.327645,0.553598,0.785075,0.913954,0.822715,0.264071,0.954464,0.374462,0.603284,0.478134,0.407899,0.76484,0.758471,0.70131,0.0167483,0.768976,0.813902,0.324309,0.4993,0.23143,0.692861,0.760518,0.467931,0.770639,0.0692586,0.108933,0.258879,0.608861,0.0840204,0.887223,0.538811,0.698488,0.150098,0.503515,0.0371823,0.784267,0.0140363,0.578709,0.564512,0.564193,0.368732,0.0987672,0.543769,0.366275,0.773511,0.469016,0.979077,0.0193592,0.933714,0.532073,0.187552,0.96706,0.18844,0.478612,0.0650228,0.900983,0.18767,0.449471,0.713571,0.437088,0.449569,0.326924,0.151975,0.957907,0.45884,0.0370942,0.538781,0.27821,0.839699,0.39434,0.873011,0.203253,0.892069,0.621842,0.760682,0.932122,0.0992229,0.309507,0.121794,0.927946,0.2373,0.127753,0.234084,0.0961997,0.00507802,0.687419,0.258062,0.447197,0.838266,0.988068,0.73088,0.964788,0.756731,0.755749,0.643915,0.0694363,0.547254,0.778094,0.557878,0.143721,0.689205,0.966011,0.449806,0.941251,0.264681,0.633712,0.824909,0.227921,0.87651,0.20863,0.497169,0.786774,0.072704,0.21905,0.187952,0.425424,0.560885,0.395416,0.864822,0.609336,0.681043,0.731723,0.730457,0.950272,0.929167,0.544527,0.202156,0.186315,0.512186,0.148357,1.13845e-05,0.312607,0.182249,0.554881,0.918221,0.0018509,0.736999,0.70773,0.451198,0.769936,0.244928,0.812866,0.860041,0.919191,0.898988,0.0821754,0.985518,0.214808,0.33235,0.586881,0.115735,0.667776,0.878615,0.742459,0.24654,0.79072,0.645742,0.301984,0.788627,0.425106,0.235703,0.697715,0.180007,0.709685,0.656103,0.805013,0.521343,0.437843,0.0170841,0.0764557,0.565066,0.108325,0.452212,0.394428,0.620273,0.0957467,0.231874,0.78763,0.855619,0.0356535,0.335582,0.772311,0.0207171,0.447273,0.940361,0.908639,0.945508,0.832501,0.591633,0.292592,0.471496,0.231395,0.742234,0.412903,0.540183,0.0737876,0.147286,0.783353,0.205964,0.111359,0.629495,0.00691748,0.309058,0.196212,0.672294,0.683402,0.0931166,0.464996,0.206456,0.707128,0.460443,0.365087,0.622973,0.979216,0.448779,0.790036,0.412151,0.640002,0.779678,0.20673,0.0489467,0.469938,0.412131,0.61371,0.529711,0.250333,0.7697,0.530503,0.00843191,0.310797,0.871021,0.404324,0.393517,0.897593,0.72945,0.474482,0.0551981,0.870446,0.240397,0.861305,0.703575,0.114507,0.936427,0.721659,0.835308,0.239848,0.583281,0.939572,0.00579298,0.731092,0.37096,0.450954,0.784897,0.0803407,0.881082,0.0974836,0.817869,0.522484,0.639029,0.295841,0.888428,0.426624,0.00890011,0.817611,0.189174,0.526647,0.884068,0.937933,0.135944,0.651594,0.282025,0.549203,0.967152,0.252777,0.897375,0.315787,0.658602,0.829759,0.799493,0.0868989,0.0911382,0.544923,0.913661,0.262224,0.140288,0.194562,0.231843,0.648021,0.35808,0.186593,0.809595,0.938334,0.928249,0.260718,0.159183,0.215616,0.455272,0.306504,0.275267,0.354356,0.573227,0.104966,0.809546,0.0984948,0.419797,0.0821963,0.97773,0.713452,0.182543,0.196395,0.425118,0.670855,0.522809,0.310767,0.593114,0.42316,0.0373381,0.509735,0.344627,0.19325,0.604079,0.504643,0.821564,0.0936564,0.115569,0.577725,0.6097,0.814582,0.119404,0.616297,0.180109,0.442832,0.657065,0.021078,0.890684,0.638254,0.887166,0.790527,0.306146,0.0139754,0.369337,0.281051,0.750887,0.600952,0.870258,0.922107,0.361016,0.519733,0.145465,6.1214e-05,0.747976,0.38336,0.93579,0.478637,0.653717,0.800477,0.496036,0.452679,0.453401,0.880528,0.954775,0.47395,0.412617,0.917835,0.14216,0.366305,0.6069,0.996542,0.969296,0.0568113,0.705057,0.449346,0.231566,0.0556638,0.254297,0.265707,0.126454,0.410648,0.611556,0.545308,0.595361,0.628516,0.900323,0.398674,0.139289,0.414127,0.86318,0.124523,0.453516,0.416266,0.128641,0.800516,0.2462,0.385117,0.863298,0.622924,0.356265,0.994802,0.44131,0.655068,0.76715,0.27523,0.472895,0.834654,0.27239,0.764181,0.0766237,0.349438,0.0721403,0.34236,0.305622,0.490986,0.0678724,0.177519,0.491213,0.916484,0.462208,0.0731725,0.243492,0.917339,0.879178,0.619067,0.18705,0.880837,0.210621,0.0733477,0.147302,0.249665,0.0200992,0.855432,0.34938,0.996017,0.874755,0.700783,0.362233,0.833751,0.280311,0.11492,0.122595,0.665327,0.512364,0.259504,0.319947,0.812378,0.940521,0.389425,0.901375,0.127827,0.925845,0.871369,0.975811,0.408665,0.402612,0.375878,0.920156,0.1494,0.867105,0.905686,0.691825,0.430493,0.890893,0.644832,0.834566,0.548914,0.903346,0.225314,0.925806,0.940629,0.709687,0.780628,0.525539,0.276333,0.357107,0.940045,0.519814,0.414139,0.67892,0.53975,0.205937,0.169414,0.105103,0.371698,0.349673,0.32067,0.403587,0.888411,0.305918,0.971478,0.530092,0.202323,0.94871,0.45667,0.239442,0.730532,0.28254,0.559213,0.770259,0.895545,0.286421,0.615772,0.0850809,0.892647,0.247504,0.846927,0.557391,0.916427,0.1564,0.346037,0.334767,0.27001,0.81306,0.182849,0.627508,0.567647,0.524228,0.140702,0.539061,0.837982,0.676046,0.439176,0.676798,0.248974,0.906848,0.674383,0.863975,0.461037,0.775282,0.177808,0.587299,0.937522,0.681865,0.131163,0.204091,0.579257,0.00887889,0.910074,0.201427,0.260045,0.55085,0.724138,0.831681,0.343664,0.913718,0.84119,0.659024,0.648123,0.622735,0.192646,0.581182,0.273511,0.919668,0.541488,0.225961,0.239359,0.194475,0.186815,0.287925,0.750591,0.545914,0.649771,0.349857,0.998267,0.421298,0.849223,0.465214,0.861313,0.453853,0.453997,0.743482,0.218696,0.522662,0.77312,0.996033,0.520055,0.172224,0.264218,0.678422,0.89744,0.684562,0.632471,0.99868,0.939539,0.717003,0.36293,0.88499,0.441121,0.532177,0.476869,0.625703,0.341251,0.233315,0.657231,0.846399,0.245972,0.198388,0.636306,0.969418,0.0584347,0.89383,0.495151,0.0312358,0.349384,0.398298,0.147953,0.674628,0.11399,0.26246,0.923764,0.420004,0.930969,0.328927,0.201845,0.051209,0.522252,0.488155,0.0616221,0.682925,0.730384,0.757941,0.872872,0.596997,0.146568,0.0500436,0.761628,0.952127,0.359156,0.266877,0.717256,0.584893,0.357486,0.78998,0.136526,0.0539384,0.555536,0.172953,0.730651,0.315104,0.644301,0.302252,0.970549,0.332508,0.210675,0.365524,0.107693,0.653346,0.342287,0.433936,0.904559,0.421212,0.50167,0.212345,0.52179,0.963351,0.221694,0.969885,0.226733,0.437558,0.719861,0.941718,0.225292,0.0500343,0.398409,0.44241,0.423359,0.52896,0.416269,0.303824,0.740054,0.988559,0.630086,0.626201,0.159582,0.457623,0.118252,0.524427,0.975632,0.352192,0.259118,0.195222,0.337452,0.593406,0.603977,0.528578,0.8747,0.887099,0.660342,0.790481,0.365365,0.183932,0.627608,0.116834,0.102253,0.991712,0.810216,0.259711,0.590419,0.0186924,0.986525,0.540597,0.829756,0.754032,0.0184703,0.846581,0.688368,0.265562,0.801541,0.549025,0.409036,0.282292,0.913254,0.509842,0.960812,0.560242,0.232956,0.380656,0.446294,0.341502,0.469552,0.908428,0.135382,0.0514529,0.973888,0.505611,0.812526,0.802521,0.497885,0.0284976,0.346436,0.666307,0.681285,0.699862,0.820485,0.819701,0.409689,0.196022,0.0797664,0.600733,0.487536,0.103992,0.498973,0.8094,0.348057,0.241146,0.119509,0.064165,0.417687,0.042816,0.00862616,0.792898,0.847906,0.138161,0.375916,0.716325,0.0200637,0.285656,0.343095,0.901598,0.295442,0.196383,0.924725,0.421708,0.718267,0.590335,0.234835,0.859428,0.9226,0.666397,0.788052,0.93235,0.431507,0.411706,0.964701,0.846056,0.590728,0.0215422,0.0923662,0.564685,0.253794,0.931804,0.525922,0.0399876,0.733602,0.144661,0.581352,0.227531,0.459268,0.212165,0.96284,0.123848,0.230746,0.511927,0.842772,0.705725,0.383613,0.30072,0.117284,0.314087,0.338122,0.325606,0.0795828,0.320574,0.00978017,0.558771,0.0591074,0.0491168,0.0964135,0.240328,0.683183,0.681272,0.225368,0.535146,0.656146,0.460733,0.893835,0.789569,0.401092,|0.586036,0.188183,0.243487,0.346289,0.695998,0.165609,0.621314,0.173128,0.627107,0.946357,0.879801,0.786198,0.686332,0.265276,0.646602,0.119087,0.803295,0.851172,0.42797,0.809395,0.115931,0.389736,0.0401928,0.463716,0.613939,0.134126,0.771488,0.552271,0.728286,0.227689,0.703091,0.684669,0.533498,0.871535,0.685761,0.131269,0.821062,0.555568,0.515187,0.319512,0.368349,0.848858,0.682983,0.636106,0.6507,0.733247,0.377124,0.830733,0.366536,0.364524,0.896851,0.650458,0.561211,0.440916,0.787394,0.86594,0.120602,0.686531,0.797571,0.629529,0.392963,0.364921,0.212844,0.705729,0.733336,0.652019,0.00563097,0.113175,0.375484,0.325341,0.2077,0.541104,0.475826,0.0919833,0.761182,0.089514,0.467615,0.473255,0.587498,0.340572,0.927582,0.383126,0.837778,0.317974,0.621746,0.918264,0.384801,0.921524,0.821125,0.503174,0.512318,0.204123,0.584114,0.583033,0.00857818,0.449262,0.999813,0.321435,0.0299149,0.99781,0.110492,0.052123,0.000125706,0.153642,0.615144,0.525969,0.425008,0.0397975,0.430805,0.925337,0.710082,0.599108,0.0208266,0.198909,0.948154,0.095077,0.817539,0.429499,0.50877,0.0758823,0.842934,0.595064,0.304123,0.85907,0.673724,0.0625759,0.267203,0.875627,0.763823,0.17169,0.0180035,0.717383,0.31464,0.967459,0.51046,0.180181,0.219046,0.249061,0.554709,0.461114,0.138763,0.040625,0.679908,0.596547,0.615576,0.350863,0.741219,0.520317,0.0758328,0.998194,0.622708,0.891359,0.210366,0.627783,0.654311,0.177659,0.226822,0.80535,0.308947,0.208116,0.966274,0.457329,0.3005,0.402952,0.505901,0.966031,0.939569,0.994933,0.801302,0.804768,0.326884,0.688209,0.61425,0.623028,0.8412,0.655756,0.427799,0.252486,0.7308,0.0139657,0.805302,0.0180879,0.614633,0.281833,0.75862,0.330788,0.519022,0.578932,0.303165,0.935527,0.219406,0.309799,0.433841,0.478025,0.72223,0.0597173,0.506445,0.427112,0.676822,0.689043,0.122926,0.245975,0.198521,0.352522,0.633635,0.128942,0.794199,0.134427,0.372054,0.625243,0.789142,0.599699,0.19079,0.810337,0.355573,0.236943,0.392861,0.469471,0.110128,0.854727,0.813461,0.245146,0.227757,0.761544,0.768917,0.99904,0.224383,0.404585,0.987028,0.827265,0.21735,0.910912,0.935394,0.277277,0.453478,0.0414374,0.234984,0.32102,0.141755,0.455691,0.188773,0.738471,0.667777,0.671764,0.762703,0.976753,0.568746,0.231262,0.505774,0.0323796,0.21377,0.151708,0.551905,0.769607,0.868459,0.351907,0.452761,0.601497,0.526201,0.23388,0.827704,0.159039,0.0263702,0.255338,0.58339,0.306652,0.591468,0.698959,0.460278,0.641946,0.296672,0.0785914,0.559385,0.343591,0.653216,0.0804477,0.765856,0.963579,0.202809,0.0236158,0.937986,0.17975,0.157962,0.37343,0.270537,0.694516,0.455475,0.883762,0.459708,0.779917,0.993425,0.736069,0.0367973,0.421135,0.06263,0.160603,0.616672,0.272012,0.112017,0.974003,0.248859,0.564864,0.415026,0.117362,0.687895,0.246841,0.805254,0.718843,0.194147,0.19899,0.0365422,0.947715,0.721652,0.808035,0.693157,0.860372,0.391643,0.335992,0.128095,0.234676,0.582408,0.313012,0.381568,0.665004,0.772262,0.437976,0.342105,0.257877,0.0489687,0.462056,0.028379,0.624197,0.794284,0.506281,0.795004,0.699095,0.108562,0.793472,0.576603,0.789477,0.861079,0.0214383,0.710531,0.76691,0.516048,0.0532671,0.0323302,0.841849,0.754678,0.859022,0.978161,0.408176,0.942941,0.206515,0.211719,0.114723,0.389195,0.1558,0.687799,0.176539,0.0846381,0.762385,0.266388,0.800387,0.299084,0.534485,0.474753,0.535391,0.396239,0.325758,0.64272,0.852561,0.653635,0.296045,0.716063,0.438755,0.739554,0.785491,0.0579874,0.365219,0.391807,0.212257,0.0355212,0.294267,0.202522,0.19613,0.439756,0.745752,0.282178,0.184846,0.0220355,0.248438,0.8541,0.434727,0.882957,0.122384,0.750798,0.155989,0.329431,0.434468,0.324718,0.447527,0.986392,0.925256,0.731055,0.431029,0.234356,0.954882,0.361849,0.610116,0.259138,0.294241,0.900716,0.934414,0.950648,0.220678,0.105353,0.413244,0.104196,0.0639928,0.488507,0.619912,0.338608,0.878583,0.767468,0.372843,0.835146,0.671743,0.90704,0.776121,0.176053,0.623622,0.790001,0.435655,0.0552396,0.00476211,0.146826,0.916008,0.97612,0.73295,0.175999,0.736138,0.0999532,0.82241,0.393305,0.565885,0.7762,0.619332,0.28298,0.792772,0.949706,0.294892,0.546474,0.843144,0.435148,0.181844,0.06411,0.507582,0.0365071,0.795712,0.209743,0.279531,0.990538,0.739925,0.593329,0.704874,0.623549,0.398091,0.730388,0.270732,0.946792,0.0629517,0.151218,0.100769,0.65359,0.466533,0.873786,0.993315,0.756476,0.275765,0.517961,0.453449,0.287432,0.695927,0.843227,0.797794,0.598979,0.719396,0.844031,0.201487,0.932256,0.67786,0.947042,0.983153,0.653745,0.0484146,0.55426,0.136666,0.49443,0.969745,0.651138,0.770052,0.0920735,0.901949,0.164767,0.642415,0.341041,0.0293213,0.231458,0.457869,0.154872,0.0251578,0.171727,0.787184,0.421788,0.317267,0.904712,0.890752,0.211949,0.0784038,0.979521,0.512361,0.9524,0.97208,0.822284,0.292718,0.498277,0.778119,0.886728,0.669507,0.311937,0.78295,0.499662,0.207077,0.435518,0.992857,0.640256,0.218717,0.644903,0.232372,0.125895,0.318666,0.197286,0.867586,0.857161,0.917616,0.85011,0.0382867,0.36941,0.263779,0.853255,0.951342,0.0247474,0.655551,0.633155,0.65115,0.639534,0.024455,0.0733243,0.66989,0.379804,0.0834563,0.188091,0.288933,0.978172,0.846991,0.801607,0.12037,0.236407,0.210371,0.196715,0.779793,0.66032,0.218055,0.631805,0.865849,0.0720495,0.12669,0.0686141,0.70164,0.946612,0.76482,0.926456,0.470924,0.250187,0.316897,0.831057,0.453836,0.00281346,0.216442,0.490426,0.127206,0.755804,0.750212,0.462387,0.32018,0.408276,0.574448,0.635913,0.707028,0.45921,0.231124,0.659651,0.0194286,0.0349039,0.532526,0.22963,0.609968,0.866891,0.274473,0.272265,0.326971,0.348152,0.990555,0.294212,0.284461,0.612214,0.344155,0.14255,0.587227,0.449343,0.104826,0.593244,0.908734,0.204256,0.158043,0.305485,0.260245,0.741107,0.277024,0.0019089,0.193652,0.0385768,0.142949,0.651594,0.38007,0.476318,0.395229,0.620193,0.861995,0.908796,0.150511,0.244545,0.185537,0.502693,0.782451,0.971553,0.0557349,0.0638652,0.870922,0.1003,0.0459094,0.547617,0.216791,0.180575,0.346841,0.567987,0.437459,0.0973073,0.558457,0.870666,0.778609,0.614251,0.764251,0.224824,0.670485,0.826391,0.715157,0.317179,0.690882,0.595132,0.0458547,0.953006,0.630433,0.492374,0.558433,0.421103,0.898103,0.344703,0.156029,0.200838,0.163896,0.929195,0.595249,0.55938,0.59792,0.543438,0.847918,0.0675269,0.320925,0.934752,0.581461,0.0491707,0.579324,0.719398,0.392314,0.142844,0.256638,0.109499,0.170301,0.243052,0.234904,0.400221,0.851878,0.254373,0.417449,0.70913,0.15487,0.488382,0.138704,0.795914,0.412644,0.667818,0.729574,0.70682,0.0649046,0.553978,0.844054,0.575664,0.299724,0.224371,0.954878,0.147901,0.651812,0.818783,0.657572,0.0249567,0.12556,0.574982,0.0967985,0.543938,0.563637,0.740129,0.146219,0.631609,0.422836,0.815788,0.0046466,0.93882,0.360093,0.972192,0.862184,0.519404,0.331211,0.242544,0.278725,0.798945,0.701626,0.188001,0.108964,0.377633,0.717033,0.94298,0.921556,0.060317,0.500714,0.675057,0.628358,0.0078038,0.830091,0.23721,0.266122,0.247626,0.654971,0.859507,0.242628,0.863547,0.56264,0.503433,0.059195,0.754418,0.354485,0.960175,0.0411184,0.326768,0.899318,0.619162,0.210472,0.967857,0.527946,0.536505,0.733442,0.246379,0.541042,0.65478,0.352405,0.442295,0.833143,0.85201,0.381355,0.67385,0.34016,0.824456,0.665743,0.985167,0.0316077,0.417692,0.947041,0.0343293,0.307158,0.93466,0.277775,0.75743,0.221281,0.404212,0.613635,0.197595,0.488362,0.172751,0.886015,0.972544,0.918252,0.481734,0.0722148,0.353117,0.764954,0.713217,0.752838,0.907469,0.963413,0.731287,0.284214,0.737572,0.107319,0.0976425,0.0464103,0.0955379,0.107241,0.385239,0.298192,0.743684,0.55244,0.53163,0.281599,0.0552534,0.990532,0.83188,0.395347,0.0136563,0.856016,0.759644,0.783776,0.823478,0.91347,0.907964,0.403699,0.584987,0.394371,0.717556,0.627908,0.899493,0.629201,0.0437407,0.962798,0.632798,0.229072,0.762767,0.403492,0.00144815,0.735366,0.426931,0.633015,0.0195749,0.179423,0.624602,0.89752,0.817917,0.991709,0.0442414,0.860627,0.381364,0.214199,0.806759,0.997506,0.835523,0.0865083,0.0309988,0.870326,0.555176,0.333168,0.617523,0.235274,0.499268,0.662008,0.622744,0.858175,0.813831,0.669442,0.462191,0.00727749,0.430765,0.891753,0.857955,0.161281,0.424947,0.184532,0.486993,0.0494598,0.00753087,0.775848,0.401429,0.807282,0.683363,0.458515,0.588404,0.728415,0.416598,0.646449,0.861434,0.21028,0.60093,0.342128,0.18599,0.309296,0.407688,0.709391,0.181866,0.115087,0.0495651,0.792238,0.0397353,0.418685,0.78466,0.115441,0.0751151,0.846413,0.257746,0.979524,0.0375385,0.608857,0.731503,0.0337984,0.864118,0.0838953,0.874135,0.927696,0.304791,0.211384,0.50374,0.476398,0.697187,0.00706035,0.121756,0.747287,0.710499,0.892603,0.0727417,0.210146,0.797649,0.587992,0.00245392,0.31714,0.856438,0.0884674,0.188475,0.268602,0.936176,0.164265,0.319631,0.335242,0.830312,0.71707,0.701122,0.540526,0.624793,0.890397,0.793398,0.300988,0.963253,0.0158687,0.251599,0.317984,0.00826174,0.514998,0.617173,0.720389,0.776777,0.532284,0.361127,0.441128,0.761981,0.897193,0.296729,0.314364,0.584193,0.426453,0.985315,0.255094,0.0494007,0.190549,0.602396,0.983745,0.448353,0.985909,0.541096,0.864002,0.156756,0.800291,0.510484,0.523336,|0.52745,0.000403881,0.555363,0.402128,0.385469,0.773575,0.830333,0.806149,0.253443,0.360712,0.807606,0.345253,0.371957,0.355326,0.20958,0.832549,0.263112,0.898726,0.624526,0.358778,0.788444,0.78887,0.609931,0.0991126,0.134096,0.896673,0.225343,0.12932,0.952307,0.536476,0.391684,0.520305,0.171426,0.0813313,0.666669,0.0361995,0.0142544,0.189109,0.452053,0.176733,0.876658,0.186906,0.684203,0.196857,0.0869532,0.870124,0.643183,0.682329,0.235231,0.826975,0.0465282,0.109552,0.112633,0.412686,0.795758,0.38135,0.265956,0.494366,0.190367,0.375461,0.839933,0.19079,0.533634,0.254647,0.954024,0.236199,0.991278,0.0566007,0.876179,0.280532,0.544837,0.478691,0.0855553,0.704038,0.927201,0.188918,0.387083,0.180032,0.175771,0.0746962,0.799467,0.0591012,0.185625,0.117356,0.137166,0.48627,0.745741,0.774503,0.37616,0.227066,0.492206,0.771748,0.134667,0.621693,0.747464,0.38455,0.800204,0.403395,0.166061,0.198042,0.962235,0.102305,0.753244,0.721767,0.448053,0.464042,0.355325,0.54261,0.0965441,0.178292,0.528496,0.751505,0.039735,0.454832,0.560669,0.376067,0.961146,0.0559077,0.396824,0.599511,0.407306,0.0986159,0.721074,0.250955,0.4704,0.314168,0.943575,0.869509,0.398177,0.605819,0.0187831,0.89342,0.377705,0.340271,0.908787,0.196063,0.716053,0.865247,0.141809,0.282055,0.41779,0.356635,0.529948,0.835437,0.370808,0.9629,0.394541,0.289901,0.111067,0.172932,0.0197362,0.821138,0.419922,0.933165,0.485896,0.198295,0.190889,0.788171,0.550619,0.753034,0.123184,0.435687,0.819984,0.315922,0.525811,0.602019,0.620882,0.761311,0.521858,0.460104,0.547556,0.379436,0.652721,0.774316,0.686342,0.357972,0.370728,0.00511956,0.0383254,0.885636,0.768329,0.338503,0.552231,0.839032,0.833132,0.0305565,0.416599,0.602033,0.369408,0.349787,0.85781,0.595556,0.587781,0.109181,0.78545,0.0407519,0.211468,0.0616661,0.206264,0.887388,0.921119,0.0572531,0.122009,0.488516,0.703519,0.518803,0.717326,0.0446603,0.439131,0.0278655,0.551628,0.343401,0.606632,0.0375268,0.172344,0.751482,0.490422,0.196847,0.75314,0.667756,0.476224,0.330297,0.155657,0.125019,0.36901,0.473793,0.486776,0.899599,0.615808,0.126024,0.569303,0.545766,0.706229,0.939864,0.174112,0.452521,0.82679,0.0725036,0.127108,0.422488,0.861328,0.808541,0.0656646,0.881388,0.874201,0.991999,0.91785,0.971312,0.516072,0.437754,0.967036,0.507305,0.756083,0.205918,0.998725,0.437962,0.422389,0.0772246,0.918705,0.0235943,0.722868,0.558912,0.675287,0.0780507,0.35246,0.878695,0.544738,0.170184,0.301898,0.154588,0.956866,0.908775,0.581433,0.135851,0.559848,0.882716,0.318657,0.12791,0.113989,0.802318,0.000778615,0.902536,0.527207,0.182161,0.66278,0.290583,0.135085,0.932464,0.802111,0.898605,0.695754,0.0828882,0.626571,0.337746,0.157583,0.563011,0.567482,0.475222,0.0727183,0.695434,0.7111,0.321983,0.280266,0.0963337,0.523161,0.795717,0.695818,0.78351,0.150359,0.0312473,0.943097,0.636599,0.126775,0.776619,0.784546,0.232911,0.0741051,0.284371,0.192071,0.362452,0.153178,0.467239,0.588456,0.62425,0.159842,0.490388,0.236154,0.564107,0.604229,0.324099,0.504861,0.663567,0.758334,0.408339,0.208191,0.47558,0.483749,0.539386,0.787914,0.406016,0.07487,0.749892,0.624657,0.0180018,0.691644,0.679822,0.861678,0.893745,0.709383,0.0422244,0.29613,0.286383,0.813566,0.00412989,0.161948,0.680352,0.150631,0.742617,0.30378,0.749896,0.240516,0.629898,0.454381,0.655995,0.459548,0.579724,0.737805,0.510653,0.757952,0.917272,0.371438,0.0388841,0.44066,0.969457,0.876582,0.479099,0.636556,0.929946,0.537781,0.371525,0.0681806,0.492971,0.515539,0.135725,0.0661957,0.614809,0.345226,0.699512,0.241964,0.259651,0.862245,0.266755,0.38967,0.0960899,0.971799,0.829495,0.560133,0.577171,0.452572,0.656201,0.483096,0.896625,0.547258,0.922951,0.948324,0.164068,0.526777,0.0575989,0.810527,0.442088,0.218881,0.00633007,0.796063,0.741545,0.631974,0.187608,0.129913,0.260436,0.147917,0.412139,0.767651,0.754637,0.213582,0.421087,0.507453,0.831418,0.167917,0.784048,0.594502,0.145683,0.976353,0.415178,0.05856,0.480835,0.343808,0.218967,0.462501,0.324356,0.19353,0.962103,0.0103574,0.377064,0.321259,0.547754,0.0353134,0.391732,0.99114,0.279675,0.0866066,0.511898,0.254674,0.471109,0.209345,0.467373,0.619353,0.952427,0.0579848,0.0730993,0.097591,0.126609,0.254997,0.200399,0.140751,0.00532532,0.919296,0.882303,0.680825,0.0710708,0.0924981,0.817634,0.826384,0.597083,0.613865,0.751562,0.160215,0.0754852,0.244378,0.940606,0.0534212,0.258826,0.247004,0.520484,0.751387,0.633352,0.687643,0.351611,0.555162,0.542351,0.374938,0.172059,0.947801,0.458065,0.617448,0.601955,0.460325,0.805588,0.440682,0.0525378,0.905701,0.567885,0.0928532,0.631013,0.830637,0.793091,0.503696,0.382962,0.908837,0.152983,0.530752,0.0608229,0.504641,0.39462,0.345043,0.889501,0.234844,0.401581,0.106461,0.870631,0.257926,0.00387597,0.773179,0.587711,0.739334,0.576289,0.211713,0.898196,0.0645244,0.5306,0.360939,0.168948,0.455323,0.267619,0.308155,0.585641,0.791363,0.697716,0.504317,0.592199,0.841531,0.140615,0.603403,0.62524,0.226921,0.827227,0.414313,0.87698,0.148518,0.816109,0.450166,0.66127,0.944125,0.280479,0.0161212,0.938581,0.929446,0.029725,0.828411,0.627742,0.761724,0.340356,0.0256936,0.906008,0.706257,0.755015,0.916767,0.680567,0.757815,0.388989,0.231591,0.204202,0.975991,0.523485,0.988301,0.885761,0.974723,0.0593517,0.220897,0.597226,0.417646,0.463557,0.046742,0.98194,0.7412,0.787126,0.546998,0.313291,0.142349,0.400564,0.310841,0.537317,0.5929,0.173774,0.0229782,0.280573,0.350194,0.857023,0.839741,0.214771,0.971771,0.235839,0.838499,0.33681,0.105675,0.986754,0.572617,0.484032,0.657203,0.555498,0.491101,0.795019,0.924667,0.289527,0.665628,0.427585,0.562351,0.134195,0.00972003,0.227456,0.60877,0.943667,0.0901465,0.0395843,0.31684,0.771235,0.206263,0.667627,0.243709,0.259756,0.981713,0.692455,0.579472,0.0861422,0.819328,0.488073,0.555631,0.440196,0.0699933,0.713469,0.282222,0.661998,0.599546,0.515543,0.269036,0.760314,0.0833069,0.608155,0.99129,0.462636,0.57035,0.0563762,0.340274,0.781443,0.978186,0.0559107,0.69164,0.059025,0.658072,0.444717,0.333033,0.425081,0.918912,0.713027,0.68667,0.291427,0.658501,0.277049,0.336893,0.852583,0.295539,0.440537,0.172056,0.193615,0.308586,0.328007,0.844206,0.0533192,0.577765,0.415446,0.344801,0.214574,0.489471,0.0150136,0.602988,0.657325,0.879358,0.745705,0.926316,0.0279134,0.203573,0.610601,0.929505,0.759785,0.816214,0.581192,0.494781,0.216686,0.380086,0.037252,0.029833,0.84971,0.151661,0.85295,0.306725,0.176374,0.723279,0.376237,0.482806,0.91073,0.233474,0.000406444,0.955751,0.360181,0.139354,0.856089,0.434249,0.982231,0.0072459,0.759202,0.474935,0.507179,0.0548913,0.283686,0.381414,0.722454,0.648424,0.799096,0.13305,0.439419,0.631838,0.733045,0.0197588,0.307141,0.463341,0.486412,0.226756,0.218178,0.573699,0.109446,0.538166,0.578496,0.538309,0.388168,0.830499,0.644777,0.708247,0.481991,0.417607,0.547634,0.151398,0.00394326,0.0461537,0.107509,0.0412451,0.770071,0.322172,0.473428,0.722122,0.616934,0.569848,0.758791,0.696791,0.823079,0.155651,0.668433,0.130495,0.909617,0.164769,0.198096,0.341772,0.885027,0.395865,0.436626,0.845572,0.74625,0.67899,0.727542,0.0838056,0.157407,0.0965511,0.274509,0.626128,0.0684648,0.040744,0.447371,0.0510235,0.168879,0.0346209,0.929858,0.382318,0.140296,0.272038,0.374453,0.994606,0.675568,0.932714,0.209779,0.761801,0.826204,0.20327,0.862871,0.742758,0.748587,0.628278,0.0977927,0.787866,0.733079,0.989896,0.26598,0.495116,0.503722,0.555081,0.362701,0.468284,0.715759,0.591885,0.465549,0.34472,0.765473,0.686726,0.997231,0.388437,0.888022,0.187246,0.280575,0.875517,0.52097,0.755659,0.610685,0.34122,0.215103,0.855722,0.987288,0.379178,0.444946,0.622692,0.380137,0.276758,0.996033,0.478407,0.36393,0.370379,0.447786,0.225267,0.783719,0.82788,0.778286,0.763478,0.433729,0.137287,0.0129725,0.570818,0.0481095,0.300385,0.47515,0.78351,0.566185,0.802793,0.531118,0.0575057,0.738116,0.11828,0.536963,0.633332,0.259534,0.777588,0.88599,0.887701,0.251621,0.974292,0.70217,0.683086,0.125938,0.718805,0.348325,0.228945,0.975562,0.85508,0.44588,0.759963,0.617932,0.819011,0.754792,0.742565,0.140354,0.977634,0.222691,0.826095,0.465744,0.521191,0.576109,0.609615,0.86997,0.793041,0.536281,0.582838,0.00315088,0.319626,0.816428,0.734676,0.267913,0.0594236,0.472533,0.52474,0.0793132,0.0691526,0.450653,0.205602,0.0517514,0.278183,0.116799,0.974398,0.473957,0.552695,0.612952,0.422526,0.241184,0.275508,0.435527,0.71827,0.866323,0.202588,0.883254,0.322996,0.573927,0.0586619,0.416208,0.802808,0.87882,0.487731,0.486402,0.34085,0.653721,0.234761,0.296032,0.0281361,0.705222,0.828592,0.017028,0.187345,0.391151,0.361027,0.162891,0.463936,0.504163,0.110988,0.470679,0.532445,0.541927,0.922189,0.0820852,0.447405,0.716837,0.955006,0.890499,0.946153,0.792506,0.544926,0.527659,0.686814,0.299517,0.328524,0.752391,0.610678,0.626267,0.587515,0.330708,0.795783,0.561475,0.794567,0.0759045,0.0663924,0.62723,0.0710977,0.897293,0.00225663,0.835158,0.866136,0.0911359,0.0388042,0.760979,0.177407,0.595142,0.274458,0.953258,0.200643,0.935327,0.186954,0.615717,0.186511,0.37401,0.492384,0.728614,0.292957,0.157452,0.316146,0.678312,0.474819,0.773,0.377802,0.182669,|0.922183,0.643001,0.635785,0.835417,0.761955,0.387363,0.536275,0.0134823,0.818858,0.850484,0.0439444,0.814642,0.0530803,0.516423,0.926252,0.805016,0.736933,0.0527248,0.137656,0.270184,0.649536,0.850553,0.587997,0.533511,0.48069,0.56476,0.526404,0.151828,0.505591,0.610362,0.997275,0.271862,0.687855,0.606554,0.652167,0.209234,0.481757,0.82408,0.658212,0.786235,0.721682,0.307384,0.0993593,0.216977,0.733675,0.274718,0.665146,0.959598,0.488937,0.647776,0.535786,0.879502,0.887517,0.158995,0.0260631,0.840267,0.148254,0.813665,0.211032,0.635362,0.662516,0.0940458,0.320989,0.914584,0.0777041,0.289941,0.491476,0.497883,0.84514,0.362748,0.477316,0.831021,0.779557,0.588575,0.82068,0.228466,0.632445,0.10175,0.322782,0.374939,0.816729,0.467434,0.405529,0.397544,0.675816,0.577445,0.266767,0.0992931,0.828501,0.929085,0.335136,0.329957,0.245779,0.372854,0.786235,0.881349,0.411167,0.432947,0.506474,0.135305,0.31723,0.455483,0.425456,0.395551,0.357597,0.503371,0.0168833,0.925418,0.403553,0.283296,0.472498,0.162597,0.781737,0.913184,0.230907,0.202806,0.419084,0.852123,0.368939,0.749807,0.10603,0.699882,0.714969,0.508252,0.957223,0.128084,0.03331,0.188304,0.196446,0.831798,0.776202,0.239614,0.313995,0.91197,0.676292,0.638931,0.102051,0.0690026,0.495777,0.208871,0.314364,0.681655,0.00619316,0.539885,0.873156,0.0898648,0.988466,0.0543852,0.552816,0.548183,0.772814,0.400208,0.305358,0.0918258,0.0175959,0.0172786,0.848413,0.474502,0.772736,0.789233,0.456252,0.808366,0.38458,0.0430821,0.646947,0.859885,0.583153,0.521153,0.674427,0.340522,0.834689,0.254941,0.500471,0.45977,0.464654,0.232238,0.233283,0.121053,0.335719,0.406079,0.92592,0.833929,0.43073,0.676445,0.394781,0.924045,0.581466,0.59482,0.13226,0.575967,0.169846,0.516197,0.275666,0.316288,0.720029,0.561387,0.648334,0.317417,0.511111,0.205218,0.641085,0.33314,0.808559,0.271676,0.136457,0.146602,0.10924,0.376943,0.636193,0.139416,0.437419,0.316799,0.964146,0.517742,0.639989,0.291467,0.761735,0.981666,0.552219,0.924838,0.53653,0.26803,0.652747,0.323359,0.063597,0.100002,0.109956,0.000950098,0.205575,0.853217,0.34957,0.0174577,0.619099,0.12852,0.194693,0.871258,0.291616,0.695109,0.36871,0.584306,0.762717,0.815335,0.127293,0.435365,0.400845,0.177975,0.324743,0.736403,0.830921,0.514018,0.449142,0.31456,0.557085,0.402117,0.19374,0.250503,0.175158,0.433354,0.57811,0.693983,0.276151,0.0743621,0.54511,0.726423,0.560769,0.199732,0.70375,0.313148,0.0219367,0.148113,0.536419,0.806091,0.808113,0.285928,0.515069,0.614344,0.187349,0.165417,0.339425,0.765843,0.868709,0.146018,0.335364,0.194683,0.406168,0.605583,0.171647,0.0980577,0.489226,0.105353,0.796622,0.000402153,0.816458,0.905183,0.144009,0.711321,0.0689843,0.895081,0.960714,0.719151,0.196939,0.962064,0.372493,0.960888,0.282186,0.0520396,0.985615,0.621596,0.42158,0.797488,0.778553,0.798837,0.176142,0.77326,0.502446,0.679709,0.449215,0.0387543,0.707243,0.3929,0.980306,0.902713,0.832398,0.413334,0.21738,0.0675326,0.385818,0.902579,0.539187,0.124695,0.902545,0.336924,0.817543,0.423439,0.44272,0.996548,0.25588,0.836626,0.970242,0.497668,0.695446,0.00109899,0.22606,0.327275,0.457073,0.10564,0.311576,0.142008,0.553346,0.119763,0.913895,0.159705,0.653216,0.521239,0.81993,0.576041,0.249351,0.233555,0.278401,0.601799,0.0244013,0.503586,0.657099,0.83022,0.0366989,0.710337,0.79539,0.596188,0.318453,0.0283033,0.182082,0.106353,0.404687,0.104878,0.194105,0.893887,0.613245,0.452365,0.753271,0.97768,0.476841,0.113396,0.699337,0.663623,0.528838,0.58204,0.324882,0.559516,0.700552,0.884906,0.626086,0.0669352,0.312658,0.158244,0.144719,0.613034,0.0492698,0.304482,0.570418,0.786801,0.811085,0.952911,0.107118,0.156606,0.042743,0.862517,0.507195,0.251035,0.245169,0.667978,0.0935433,0.581207,0.0945118,0.917162,0.183445,0.428853,0.449311,0.450084,0.440971,0.360955,0.236867,0.536133,0.828493,0.270205,0.756391,0.56087,0.0714182,0.970773,0.752644,0.0132913,0.656277,0.341707,0.0794499,0.61465,0.609296,0.325163,0.406711,0.884929,0.698491,0.403487,0.161371,0.434176,0.465047,0.161159,0.484073,0.932442,0.924289,0.766265,0.364055,0.653106,0.286522,0.375177,0.23856,0.685898,0.817209,0.673821,0.811479,0.311657,0.090256,0.244906,0.820741,0.195664,0.653116,0.57957,0.412653,0.360485,0.955508,0.514526,0.53406,0.507813,0.58122,0.716006,0.200593,0.976938,0.499083,0.367996,0.729527,0.630004,0.755864,0.521695,0.830949,0.125531,0.3201,0.960769,0.436555,0.147319,0.188515,0.00749856,0.389498,0.208065,0.807069,0.918708,0.647496,0.0281826,0.474148,0.538335,0.534893,0.976606,0.224072,0.844775,0.795627,0.570721,0.942264,0.220782,0.551303,0.717843,0.595139,0.542276,0.728863,0.684893,0.871823,0.132084,0.304806,0.735853,0.0458449,0.363499,0.81904,0.346693,0.108141,0.0790307,0.204102,0.789969,0.539046,0.0707592,0.350861,0.904972,0.456557,0.720983,0.666394,0.990016,0.845304,0.0558661,0.0177066,0.320938,0.303761,0.652928,0.875315,0.21242,0.0184887,0.303067,0.198821,0.490705,0.604654,0.348874,0.230925,0.981566,0.40508,0.634922,0.918549,0.658096,0.712095,0.91861,0.97319,0.85273,0.444093,0.759574,0.165018,0.628558,0.687441,0.986947,0.168651,0.35761,0.831834,0.931918,0.971844,0.681461,0.0804139,0.850416,0.326024,0.59855,0.273524,0.640961,0.871238,0.453885,0.549783,0.267222,0.450828,0.439458,0.816473,0.102478,0.332814,0.286388,0.142606,0.691825,0.454391,0.423391,0.728388,0.315223,0.869617,0.902249,0.667255,0.417302,0.471994,0.436612,0.29807,0.461199,0.743365,0.062431,0.80965,0.106359,0.241907,0.921976,0.897612,0.754375,0.779769,0.893847,0.293724,0.725499,0.0852722,0.888489,0.410691,0.289606,0.290805,0.466926,0.625648,0.898362,0.660636,0.938539,0.386875,0.501681,0.721724,0.970216,0.882505,0.723493,0.300723,0.00944692,0.259199,0.731363,0.861678,0.00239307,0.633908,0.842596,0.626946,0.695804,0.719731,0.4217,0.503646,0.849009,0.521803,0.0640349,0.714052,0.215784,0.892305,0.284141,0.668974,0.108275,0.4217,0.331587,0.270818,0.76402,0.182736,0.819794,0.943844,0.48236,0.115652,0.458491,0.383618,0.81448,0.625955,0.419171,0.795727,0.617833,0.642545,0.568425,0.569888,0.627528,0.806143,0.838515,0.234923,0.166521,0.467928,0.818156,0.244509,0.686384,0.433461,0.778411,0.091425,0.811817,0.406405,0.923143,0.996345,0.194016,0.327004,0.664616,0.864682,0.402309,0.509431,0.229935,0.0290994,0.0830385,0.635076,0.1752,0.423696,0.00166678,0.255421,0.830309,0.0746664,0.914101,0.27077,0.0618239,0.772009,0.191303,0.948013,0.93501,0.888315,0.792849,0.116467,0.913961,0.418005,0.809517,0.597107,0.252033,0.575369,0.830297,0.799628,0.116727,0.58401,0.71428,0.174828,0.573696,0.112078,0.0842382,0.497061,0.835393,0.660966,0.0383506,0.655484,0.891768,0.738883,0.342887,0.370073,0.974613,0.713724,0.854999,0.225242,0.550025,0.871309,0.384835,0.760647,0.141903,0.171024,0.160017,0.0835608,0.858424,0.562265,0.809276,0.570586,0.189,0.640322,0.507968,0.237585,0.984443,0.0158563,0.738568,0.610362,0.270639,0.967308,0.132461,0.198841,0.129323,0.531903,0.693901,0.777404,0.221382,0.992215,0.255952,0.280102,0.990586,0.119089,0.114278,0.933531,0.857828,0.929044,0.701388,0.456747,0.867106,0.97617,0.65248,0.147772,0.801788,0.78225,0.983104,0.701059,0.553703,0.50157,0.83458,0.786994,0.800836,0.434514,0.79159,0.452491,0.984295,0.590237,0.237966,0.911685,0.104893,0.963523,0.952128,0.633912,0.662538,0.843713,0.684362,0.316045,0.116866,0.812743,0.54042,0.926988,0.81272,0.119662,0.261221,0.281427,0.562316,0.0358592,0.633856,0.259675,0.465125,0.947092,0.795876,0.429561,0.172017,0.581272,0.0534688,0.686556,0.941882,0.929845,0.836229,0.523249,0.857529,0.444468,0.378256,0.0660807,0.663063,0.115035,0.736224,0.599055,0.629958,0.609463,0.900966,0.386464,0.0856444,0.906371,0.176521,0.471416,0.823349,0.169399,0.492966,0.732722,0.65798,0.400624,0.489338,0.888311,0.722803,0.204989,0.942412,0.549191,0.199608,0.204783,0.456893,0.496734,0.648941,0.253583,0.741825,0.847451,0.260893,0.431299,0.133135,0.466649,0.853173,0.0282868,0.147059,0.757833,0.411024,0.999278,0.867936,0.627609,0.687987,0.834754,0.277738,0.314392,0.707503,0.85527,0.716761,0.820711,0.993302,0.530055,0.914039,0.918997,0.257322,0.585121,0.859718,0.0345263,0.562884,0.2531,0.399245,0.240198,0.932698,0.249484,0.110747,0.374697,0.0449471,0.489627,0.856985,0.415958,0.31015,0.228291,0.916752,0.432035,0.654775,0.644264,0.43726,0.047363,0.316607,0.885587,0.529217,0.693873,0.243445,0.162671,0.279624,0.531296,0.627937,0.819616,0.439677,0.954073,0.0123587,0.70179,0.495412,0.346711,0.0585173,0.769525,0.661456,0.97284,0.987579,0.498013,0.78859,0.259247,0.400885,0.783253,0.999517,0.0872964,0.415188,0.795407,0.777784,0.598249,0.535954,0.658864,0.743552,0.817851,0.455604,0.283167,0.6697,0.770554,0.393748,0.698248,0.165943,0.763315,0.511045,0.542379,0.438809,0.851621,0.39268,0.620114,0.373411,0.853218,0.198726,0.353072,0.882513,0.512916,0.0921032,0.696109,0.364538,0.29609,0.491683,0.954174,0.132067,0.336808,0.913903,0.794848,0.696322,0.775437,0.764526,0.104491,0.597241,0.415402,0.598026,0.64005,0.157508,0.730345,0.725315,0.232306,0.673886,0.581164,0.8549,0.241328,0.70035,0.0245258,0.997645,0.356301,0.283704,0.869994,0.347432,|0.0214849,0.816221,0.312621,0.845884,0.834992,0.947696,0.658768,0.344563,0.878888,0.498936,0.957333,0.740662,0.273875,0.657,0.441066,0.987406,0.326145,0.173719,0.0213106,0.355634,0.436101,0.0425947,0.511623,0.0754831,0.920307,0.421408,0.574544,0.0863719,0.0841855,0.214133,0.741339,0.724147,0.487028,0.322457,0.942365,0.945582,0.885908,0.717211,0.297301,0.253391,0.689002,0.614248,0.18669,0.0939875,0.92906,0.0863382,0.759149,0.764559,0.353205,0.0141892,0.705118,0.797503,0.0707898,0.265912,0.0592943,0.261388,0.0222607,0.199452,0.408223,0.158942,0.0242795,0.531956,0.433048,0.848122,0.734876,0.0263084,0.183207,0.27494,0.991869,0.796286,0.844779,0.607918,0.404431,0.713839,0.536902,0.224911,0.506755,0.0234742,0.752255,0.449115,0.124292,0.113476,0.949025,0.390583,0.00441951,0.546995,0.770794,0.555507,0.344769,0.939695,0.558186,0.927603,0.480413,0.277841,0.500822,0.4373,0.516595,0.471728,0.870173,0.526412,0.503257,0.0301887,0.966464,0.449429,0.383964,0.965019,0.886998,0.41,0.246891,0.473792,0.712074,0.0324669,0.571962,0.502051,0.141022,0.410733,0.988217,0.0111376,0.159151,0.900678,0.506095,0.903051,0.312298,0.59841,0.722531,0.107242,0.116268,0.785675,0.843156,0.282341,0.773409,0.894432,0.661082,0.669971,0.86858,0.809033,0.281765,0.63249,0.317252,0.7168,0.902428,0.0284042,0.503581,0.732784,0.71408,0.737239,0.224348,0.764764,0.391819,0.929432,0.695677,0.60887,0.626031,0.533004,0.483066,0.96234,0.736885,0.753522,0.423809,0.303351,0.0502501,0.717357,0.0207233,0.0932117,0.0477132,0.154073,0.718468,0.328418,0.633464,0.218026,0.663308,0.320945,0.329425,0.543522,0.473211,0.703151,0.0418932,0.651324,0.68784,0.844326,0.134953,0.343979,0.753686,0.661474,0.363586,0.879847,0.15007,0.805815,0.184392,0.0802882,0.590984,0.405773,0.753111,0.93472,0.934499,0.733092,0.507212,0.80781,0.209556,0.0240085,0.834909,0.76639,0.670871,0.118907,0.42917,0.941718,0.933671,0.00909537,0.901062,0.835768,0.588844,0.0945607,0.428205,0.943337,0.618715,0.727045,0.00412196,0.0581138,0.990717,0.0561767,0.103491,0.00751287,0.933252,0.652712,0.155434,0.40987,0.523131,0.202918,0.845418,0.820242,0.74113,0.718402,0.257877,0.936573,0.642001,0.247056,0.481757,0.723912,0.129534,0.968766,0.107024,0.167499,0.674495,0.266753,0.280242,0.907166,0.0132347,0.895686,0.0807312,0.767523,0.270689,0.976562,0.86573,0.45193,0.342571,0.611708,0.53805,0.205555,0.135153,0.785524,0.208419,0.172618,0.468551,0.210906,0.244883,0.515989,0.130103,0.789115,0.560513,0.828844,0.851012,0.647111,0.434935,0.175196,0.199637,0.813277,0.611718,0.772058,0.320859,0.456236,0.914747,0.15584,0.21381,0.792741,0.410693,0.0132943,0.416051,0.308631,0.304248,0.718913,0.066014,0.193513,0.960935,0.289109,0.471489,0.23364,0.296655,0.149387,0.291675,0.260026,0.763053,0.916256,0.550049,0.885312,0.387987,0.480196,0.0503621,0.708923,0.102605,0.651002,0.505933,0.878201,0.162784,0.358495,0.790954,0.833255,0.259736,0.309716,0.262563,0.689304,0.107246,0.270592,0.742272,0.0527094,0.560641,0.572185,0.0471516,0.449858,0.103126,0.070488,0.455518,0.992547,0.929217,0.723406,0.367226,0.968197,0.0503225,0.990693,0.858998,0.458166,0.460183,0.441068,0.962526,0.645624,0.661894,0.74189,0.438636,0.15596,0.609044,0.156542,0.338108,0.211309,0.732107,0.652325,0.696731,0.457885,0.467252,0.114149,0.220036,0.56752,0.632407,0.161238,0.0786893,0.138506,0.46952,0.348845,0.0961419,0.823356,0.0608236,0.0231772,0.929077,0.518371,0.984458,0.72876,0.0693805,0.350581,0.613078,0.487131,0.0275719,0.757382,0.383681,0.278859,0.338065,0.176459,0.307594,0.142703,0.749964,0.969841,0.117702,0.802586,0.934662,0.557812,0.808148,0.772006,0.802128,0.31745,0.442478,0.00670713,0.341803,0.0231434,0.539602,0.952139,0.272325,0.730787,0.144923,0.308154,0.459238,0.236811,0.479641,0.985717,0.430419,0.833456,0.308826,0.609978,0.798399,0.406814,0.040511,0.889182,0.414683,0.205003,0.753053,0.470401,0.16917,0.0424471,0.00122029,0.33155,0.765262,0.298459,0.647013,0.331122,0.885869,0.0521063,0.189238,0.790301,0.231422,0.958824,0.271693,0.638041,0.186121,0.85736,0.867643,0.221391,0.405861,0.0235662,0.710268,0.874497,0.591672,0.354734,0.943159,0.83511,0.343778,0.434739,0.497359,0.429632,0.685696,0.883227,0.922974,0.953915,0.384847,0.466141,0.710012,0.209117,0.309762,0.876239,0.474579,0.464849,0.579294,0.0210625,0.321271,0.0570192,0.465195,0.974826,0.258792,0.843247,0.273606,0.13767,0.722159,0.677203,0.59499,0.504767,0.900119,0.0276771,0.416764,0.478101,0.84772,0.587335,0.623388,0.782767,0.0530128,0.320587,0.656238,0.796186,0.611166,0.234655,0.158498,0.131021,0.322831,0.455459,0.571179,0.46625,0.625693,0.0609143,0.49762,0.978716,0.272459,0.503131,0.523816,0.699211,0.787983,0.0379392,0.678957,0.685288,0.0169847,0.337164,0.631468,0.995126,0.229871,0.846144,0.540678,0.626652,0.872927,0.302393,0.833183,0.857619,0.401813,0.161171,0.688002,0.424533,0.153088,0.0542403,0.375871,0.00930142,0.517147,0.663373,0.376868,0.511614,0.881477,0.130681,0.786174,0.104323,0.514632,0.00677669,0.0702652,0.678223,0.837927,0.374669,0.560875,0.324898,0.750505,0.536945,0.385439,0.625288,0.762262,0.106096,0.883869,0.745219,0.106648,0.66147,0.990839,0.707771,0.835103,0.0298703,0.624601,0.522195,0.558961,0.679383,0.989367,0.976621,0.589224,0.660664,0.442094,0.849326,0.722301,0.893747,0.979254,0.482472,0.633531,0.88985,0.574903,0.475792,0.0479424,0.631527,0.760263,0.685458,0.628167,0.343789,0.402032,0.0957393,0.444952,0.493186,0.992854,0.0608355,0.26948,0.820186,0.183736,0.0187284,0.37367,0.547743,0.414433,0.660495,0.411188,0.702067,0.734478,0.240667,0.861985,0.736581,0.941266,0.61611,0.268708,0.518323,0.653003,0.752945,0.566528,0.222526,0.963335,0.425004,0.0520357,0.506801,0.31137,0.243624,0.229942,0.997716,0.830224,0.211698,0.74355,0.38559,0.240334,0.0406297,0.122771,0.635428,0.201061,0.437392,0.645453,0.0163162,0.860486,0.268121,0.223522,0.817444,0.944507,0.319701,0.884408,0.67531,0.575478,0.529817,0.967009,0.0675815,0.250375,0.793034,0.171036,0.237233,0.283282,0.52116,0.605147,0.950747,0.520236,0.781568,0.516194,0.32279,0.235472,0.930067,0.896336,0.168125,0.415902,0.45316,0.817139,0.167261,0.102959,0.747795,0.160221,0.537908,0.479653,0.612246,0.778193,0.995582,0.217466,0.428914,0.05317,0.159079,0.577102,0.67977,0.54252,0.88252,0.754243,0.718086,0.284941,0.531733,0.303425,0.0672774,0.379972,0.762166,0.177296,0.673671,0.22245,0.665534,0.120427,0.57479,0.696551,0.340533,0.591382,0.441534,0.75451,0.509171,0.677378,0.210016,0.106262,0.889033,0.59965,0.491701,0.705846,0.746531,0.88163,0.553177,0.0300202,0.255729,0.460399,0.663393,0.908952,0.0881748,0.509848,0.574727,0.0939077,0.770071,0.784417,0.289267,0.0225437,0.270373,0.902073,0.324877,0.366593,0.104951,0.392197,0.458797,0.0815371,0.109738,0.849753,0.341378,0.294396,0.222088,0.454411,0.0264946,0.557233,0.800865,0.248232,0.357244,0.344509,0.116528,0.111809,0.140808,0.942764,0.139383,0.401587,0.553734,0.580043,0.458309,0.616732,0.762481,0.961015,0.72079,0.0980017,0.16227,0.271951,0.0467595,0.225579,0.68878,0.277531,0.908828,0.450927,0.328947,0.55827,0.171766,0.457841,0.637134,0.506839,0.836493,0.285703,0.215258,0.658172,0.240418,0.537894,0.403918,0.892531,0.999199,0.849556,0.876352,0.121203,0.389597,0.443946,0.759457,0.948853,0.556971,0.427113,0.247856,0.87632,0.0604333,0.551641,0.823517,0.282808,0.786735,0.781856,0.412245,0.459124,0.743576,0.916122,0.370294,0.52037,0.316791,0.583644,0.014488,0.224217,0.464505,0.470625,0.862645,0.150664,0.0612407,0.637635,0.144875,0.379377,0.121658,0.948673,0.0603113,0.769994,0.111949,0.58461,0.283702,0.486094,0.652265,0.624733,0.832653,0.364068,0.582934,0.372399,0.544715,0.428079,0.65911,0.242387,0.367633,0.686714,0.0562677,0.573031,0.891933,0.0542143,0.825092,0.693064,0.192481,0.694198,0.703824,0.425743,0.351785,0.0261332,0.717153,0.411914,0.916263,0.789407,0.993664,0.952646,0.577434,0.123195,0.983678,0.755453,0.419381,0.829214,0.946278,0.52483,0.910418,0.235105,0.988129,0.701789,0.0354887,0.724491,0.732039,0.778134,0.0360816,0.0736671,0.370864,0.975835,0.531133,0.519941,0.597402,0.332853,0.449769,0.826928,0.793433,0.512677,0.667983,0.719682,0.263604,0.190858,0.520433,0.284687,0.128037,0.473374,0.0136032,0.582058,0.853106,0.820669,0.435091,0.0927566,0.521596,0.289646,0.904801,0.577589,0.289882,0.906818,0.642181,0.262403,0.305046,0.451659,0.805624,0.708481,0.819907,0.465304,0.694095,0.278785,0.768922,0.228208,0.331541,0.476905,0.170697,0.23056,0.0331174,0.720461,0.00587267,0.373783,0.481186,0.704896,0.873539,0.949658,0.408019,0.390026,0.778508,0.694232,0.18566,0.866087,0.175817,0.705289,0.499324,0.622758,0.0498991,0.631274,0.180147,0.152436,0.033126,0.432343,0.956189,0.405862,0.235001,0.788122,0.284388,0.882402,0.206961,0.398469,0.261043,0.311916,0.374768,0.497059,0.770897,0.806323,0.819828,0.00551689,0.573668,0.870444,0.940842,0.283959,0.419953,0.746813,0.901139,0.937086,0.591547,0.680683,0.373139,0.031822,0.0332879,0.359214,0.127489,0.250367,0.849368,0.658213,0.302356,0.352187,0.0308799,0.174252,0.696398,0.338435,0.47187,0.664882,0.0426564,0.524753,0.830906,0.932592,0.113331,0.365429,0.994759,0.501103,0.241939,0.903782,0.264897,0.60735,0.274062,0.979198,0.697877,|0.298764,0.888989,0.481758,0.820785,0.670475,0.804054,0.39895,0.268877,0.215121,0.209978,0.219214,0.597944,0.731201,0.995019,0.671502,0.391366,0.596588,0.415828,0.61542,0.499355,0.475736,0.688403,0.623635,0.3935,0.787561,0.659153,0.920576,0.733957,0.366535,0.0221975,0.459337,0.87673,0.544627,0.906404,0.0053736,0.203348,0.798222,0.450917,0.0818503,0.0191031,0.150615,0.122324,0.576773,0.73718,0.60518,0.747715,0.875125,0.59583,0.25678,0.318077,0.995539,0.353155,0.309022,0.56443,0.662228,0.501211,0.0826541,0.838907,0.528671,0.970009,0.182434,0.583023,0.962149,0.769452,0.539649,0.672615,0.209738,0.672911,0.504117,0.930758,0.850351,0.207989,0.275915,0.146722,0.720813,0.300254,0.431633,0.226271,0.0909134,0.835206,0.00655937,0.555899,0.173002,0.65464,0.542779,0.764546,0.917221,0.7042,0.474669,0.475255,0.911105,0.267532,0.312451,0.0269871,0.73599,0.857882,0.344927,0.0707526,0.0937679,0.659996,0.595187,0.616992,0.964531,0.945634,0.215461,0.9639,0.74364,0.555773,0.556767,0.338807,0.13563,0.472271,0.730719,0.837564,0.193425,0.665962,0.210713,0.653845,0.319606,0.869183,0.850097,0.987456,0.350025,0.928719,0.329356,0.25479,0.960451,0.808842,0.400186,0.450267,0.00603163,0.190495,0.973669,0.0076893,0.741994,0.0873492,0.151309,0.460516,0.942966,0.760696,0.713207,0.965566,0.733473,0.181654,0.914962,0.276638,0.764493,0.902937,0.0712434,0.940929,0.306036,0.834456,0.88168,0.800521,0.619039,0.13229,0.100786,0.596668,0.0957822,0.97561,0.0304136,0.0795082,0.851765,0.191024,0.654452,0.900073,0.240443,0.447302,0.333412,0.483016,0.666759,0.292295,0.548219,0.409228,0.603344,0.533295,0.0295092,0.206059,0.668356,0.486397,0.797346,0.544673,0.50543,0.257894,0.553863,0.531477,0.821195,0.892337,0.753913,0.329659,0.109451,0.527679,0.348302,0.585225,0.209632,0.568211,0.238782,0.225386,0.576937,0.397486,0.383514,0.365549,0.40596,0.932466,0.686539,0.654737,0.886523,0.280374,0.802874,0.781541,0.0809498,0.272344,0.888493,0.111668,0.458418,0.497018,0.555364,0.0422603,0.484702,0.0165656,0.386201,0.947361,0.958721,0.499684,0.990399,0.0316889,0.786094,0.373696,0.2878,0.262774,0.0910052,0.526996,0.84805,0.023868,0.0146814,0.716514,0.190112,0.434055,0.903627,0.219213,0.530862,0.0683391,0.114649,0.166629,0.081509,0.0407702,0.427303,0.743128,0.481365,0.958576,0.640825,0.1254,0.117903,0.327075,0.709909,0.667349,0.345325,0.276562,0.514415,0.168055,0.104891,0.443285,0.246761,0.600986,0.306778,0.966817,0.301794,0.643404,0.0975905,0.926213,0.0647449,0.665509,0.0893385,0.0668017,0.838358,0.456737,0.456028,0.225192,0.372252,0.377435,0.503407,0.126151,0.36297,0.156269,0.467833,0.904842,0.488668,0.956317,0.468269,0.203719,0.173995,0.798179,0.852101,0.795934,0.984887,0.134265,0.366886,0.743565,0.740857,0.899992,0.670187,0.606903,0.292714,0.650179,0.35783,0.711372,0.287419,0.620702,0.969103,0.376604,0.971262,0.241292,0.431286,0.981886,0.669304,0.360446,0.546447,0.828581,0.294356,0.377426,0.917171,0.780322,0.798871,0.25584,0.09539,0.264319,0.934403,0.226086,0.806932,0.725148,0.874684,0.796075,0.52764,0.403572,0.526595,0.0912975,0.665223,0.865451,0.620888,0.0393303,0.502307,0.43052,0.968135,0.228608,0.793656,0.889097,0.382567,0.999521,0.558652,0.417202,0.934211,0.496053,0.259506,0.935226,0.594872,0.816586,0.563176,0.340391,0.863263,0.0288163,0.434109,0.20629,0.0726761,0.657072,0.669253,0.775615,0.747851,0.161693,0.936639,0.334116,0.918936,0.603184,0.350519,0.996019,0.484365,0.0860729,0.203678,0.940087,0.206137,0.851766,0.302668,0.916578,0.314223,0.538931,0.668921,0.769024,0.133541,0.993162,0.26992,0.204979,0.378416,0.927226,0.168393,0.637888,0.143129,0.145193,0.113634,0.138746,0.634969,0.736149,0.754229,0.58513,0.532035,0.194679,0.546666,0.701452,0.540176,0.797883,0.465483,0.858928,0.802184,0.791122,0.879375,0.0572773,0.883893,0.0575757,0.83646,0.610865,0.992706,0.821367,0.263212,0.312913,0.738867,0.424046,0.0875748,0.368594,0.158312,0.220918,0.091508,0.342548,0.402988,0.739207,0.765751,0.442259,0.703857,0.458736,0.377161,0.946017,0.923154,0.0652055,0.563023,0.995615,0.614225,0.119021,0.409355,0.702714,0.512015,0.307453,0.371024,0.34385,0.673509,0.24033,0.89452,0.120109,0.522577,0.0964483,0.875575,0.609451,0.628553,0.678369,0.926326,0.481516,0.0524874,0.696648,0.236733,0.98489,0.00313115,0.847176,0.461598,0.397733,0.615102,0.318616,0.647029,0.592116,0.0238054,0.853438,0.716378,0.364817,0.820566,0.502222,0.0541676,0.946852,0.699691,0.577984,0.072891,0.464803,0.384814,0.280136,0.912881,0.665444,0.893524,0.799477,0.421423,0.0008412,0.922824,0.373405,0.796728,0.403099,0.053656,0.210932,0.656516,0.746205,0.513969,0.614198,0.232831,0.00958866,0.128378,0.0735004,0.74469,0.890314,0.671289,0.24729,0.7677,0.145349,0.821837,0.561637,0.235445,0.599738,0.356236,0.800373,0.792838,0.879313,0.203673,0.655251,0.705703,0.962941,0.638863,0.513016,0.791693,0.801371,0.325557,0.295703,0.208606,0.458331,0.2994,0.557768,0.800285,0.76955,0.649464,0.561819,0.505628,0.901703,0.242809,0.803524,0.854751,0.952755,0.718212,0.473487,0.359721,0.531745,0.418168,0.486059,0.712308,0.729896,0.464376,0.317438,0.737008,0.350927,6.56843e-05,0.212014,0.22413,0.0478255,0.575591,0.645644,0.0616405,0.142831,0.669157,0.690867,0.867671,0.226255,0.118704,0.731636,0.673356,0.186421,0.4582,0.580856,0.260411,0.731749,0.448271,0.377402,0.100543,0.271213,0.00848037,0.522434,0.352706,0.498903,0.0613995,0.145665,0.901837,0.619655,0.0109393,0.516388,0.238111,0.102075,0.959667,0.633346,0.785285,0.0781369,0.299276,0.650222,0.248412,0.0613695,0.792181,0.222531,0.318702,0.562355,0.851438,0.0548083,0.425174,0.123794,0.237738,0.0583275,0.00712025,0.12716,0.899852,0.0524413,0.849591,0.638529,0.649149,0.859105,0.138131,0.885964,0.438842,0.633496,0.262685,0.500408,0.974968,0.973045,0.724889,0.530464,0.345501,0.230535,0.837989,0.999562,0.291768,0.890214,0.0849881,0.325723,0.721185,0.787469,0.72092,0.35758,0.794588,0.728127,0.238425,0.807666,0.821252,0.0906253,0.150207,0.544785,0.0410686,0.299951,0.104475,0.72022,0.379796,0.135025,0.157162,0.811393,0.575367,0.769756,0.205671,0.947782,0.0718476,0.0399679,0.765485,0.852624,0.307043,0.394641,0.391679,0.870576,0.623866,0.549983,0.111211,0.390093,0.239886,0.635249,0.840997,0.641206,0.664858,0.334576,0.913842,0.175776,0.833468,0.381895,0.890212,0.403964,0.523917,0.659232,0.357592,0.472261,0.28654,0.334101,0.613752,0.677111,0.231998,0.629543,0.771682,0.00202292,0.433941,0.379556,0.235439,0.786635,0.536427,0.0444353,0.965422,0.380468,0.339614,0.732129,0.00142455,0.443693,0.391336,0.861316,0.98761,0.963767,0.636213,0.235716,0.206078,0.851253,0.0603617,0.728845,0.527328,0.901894,0.54305,0.354952,0.450306,0.195505,0.0905014,0.45015,0.308237,0.105502,0.0220846,0.736391,0.800524,0.608844,0.622251,0.391127,0.205189,0.697322,0.426513,0.878683,0.903684,0.667674,0.244081,0.839847,0.0532427,0.160798,0.371009,0.527407,0.700448,0.126997,0.165752,0.998575,0.466792,0.390689,0.752243,0.569505,0.457117,0.167466,0.00265563,0.378729,0.665882,0.275006,0.964103,0.793279,0.749551,0.0889215,0.234308,0.634436,0.0811079,0.771726,0.0334128,0.320146,0.573654,0.653864,0.480022,0.439146,0.04175,0.229332,0.718997,0.426809,0.123805,0.0999818,0.896811,0.19959,0.380321,0.68017,0.530967,0.417149,0.951189,0.173263,0.265951,0.753509,0.0909345,0.951792,0.996195,0.163233,0.545493,0.758766,0.357985,0.199678,0.815459,0.877121,0.228544,0.233288,0.322004,0.0454512,0.442154,0.674221,0.707763,0.0128775,0.220197,0.527499,0.707045,0.695594,0.113505,0.55418,0.427826,0.20964,0.136497,0.751421,0.029945,0.507508,0.984945,0.912265,0.873146,0.416004,0.140458,0.802881,0.764723,0.956543,0.382757,0.603993,0.0514419,0.423282,0.712645,0.339899,0.909615,0.22296,0.457686,0.946526,0.73201,0.404939,0.314327,0.458453,0.722497,0.65525,0.253254,0.887863,0.896319,0.425014,0.336823,0.558633,0.687159,0.532583,0.371878,0.0992796,0.632889,0.91401,0.220416,0.00870639,0.343618,0.68151,0.74033,0.880919,0.316001,0.688065,0.183153,0.190616,0.452931,0.261132,0.804767,0.365242,0.181247,0.33698,0.748743,0.867091,0.605581,0.198975,0.127303,0.415679,0.750618,0.0535818,0.259347,0.623247,0.0122763,0.743884,0.69771,0.102261,0.772672,0.925672,0.724222,0.0258204,0.931892,0.474677,0.164977,0.289022,0.54079,0.0481806,0.1837,0.960525,0.145468,0.451364,0.742472,0.447957,0.883838,0.12099,0.66741,0.0908977,0.742875,0.166462,0.432085,0.956515,0.567798,0.885171,0.949749,0.619857,0.596018,0.257993,0.432734,0.611023,0.200064,0.368409,0.86201,0.51379,0.544943,0.540644,0.83639,0.419883,0.394417,0.496176,0.850956,0.609485,0.740208,0.772295,0.508006,0.253978,0.482062,0.384944,0.378002,0.315443,0.393378,0.317551,0.464534,0.314417,0.641405,0.279492,0.279836,0.996163,0.253928,0.228701,0.488701,0.525711,0.862621,0.312119,0.918197,0.809703,0.427026,0.329577,0.792057,0.550121,0.676877,0.169278,0.960536,0.885224,0.374007,0.590333,0.612978,0.0692984,0.899128,0.8153,0.723445,0.823213,0.825133,0.0373253,0.0961505,0.600341,0.376426,0.756153,0.331139,0.500642,0.740064,0.584278,0.19401,0.767401,0.581134,0.0900252,0.228398,0.108694,0.405182,0.41344,0.854603,0.277589,0.642532,0.0479316,0.599003,0.0675644,0.700228,0.12688,0.39591,0.851299,|0.991212,0.466255,0.256291,0.204878,0.217401,0.256905,0.29606,0.616342,0.0373854,0.443627,0.510285,0.741053,0.379234,0.210921,0.682074,0.5059,0.427866,0.236928,0.896789,0.333837,0.139759,0.251042,0.875442,0.00883812,0.710941,0.173033,0.659762,0.0927137,0.345228,0.134676,0.336116,0.0893868,0.414731,0.320038,0.140449,0.678615,0.771113,0.289097,0.396159,0.0868713,0.278571,0.711911,0.717024,0.167468,0.763734,0.151737,0.250739,0.732239,0.834359,0.390324,0.16549,0.0977318,0.972359,0.346228,0.631798,0.447387,0.860057,0.337605,0.232545,0.151013,0.259049,0.872246,0.324601,0.622051,0.79859,0.0588782,0.0513817,0.0284914,0.225466,0.873906,0.406447,0.432176,0.298122,0.670929,0.723337,0.112631,0.158273,0.495078,0.789167,0.557673,0.304196,0.788406,0.266306,0.555248,0.625901,0.486132,0.155279,0.901328,0.364013,0.424402,0.278206,0.152303,0.78786,0.343597,0.82782,0.937477,0.562501,0.335178,0.277665,0.168728,0.263766,0.501903,0.89198,0.383506,0.836027,0.84498,0.496544,0.187395,0.561431,0.0277604,0.563077,0.325338,0.029805,0.884785,0.483068,0.294162,0.962456,0.966009,0.140811,0.659434,0.571958,0.175611,0.0552966,0.146005,0.33778,0.982086,0.362018,0.805745,0.624395,0.099791,0.947828,0.988923,0.265198,0.0180851,0.846811,0.805404,0.210088,0.428048,0.141924,0.161733,0.212528,0.776477,0.683947,0.526587,0.966086,0.57613,0.567768,0.375358,0.535963,0.952656,0.43475,0.599106,0.27515,0.396943,0.433693,0.711621,0.306928,0.880422,0.426661,0.583928,0.73904,0.475533,0.495378,0.681144,0.670218,0.729576,0.835068,0.987166,0.436158,0.920848,0.283387,0.221972,0.0707644,0.172367,0.516311,0.675425,0.972239,0.00464034,0.319055,0.718331,0.930362,0.00195026,0.382668,0.546094,0.113105,0.481221,0.336311,0.463831,0.657808,0.297605,0.216646,0.734075,0.116553,0.787442,0.681188,0.748219,0.271653,0.669857,0.256237,0.569017,0.320801,0.0219573,0.713129,0.508777,0.540823,0.360539,0.450818,0.544151,0.176143,0.952932,0.784767,0.319195,0.615449,0.199807,0.393613,0.658838,0.919194,0.347326,0.230157,0.228599,0.875582,0.868849,0.7154,0.166236,0.66289,0.804162,0.541964,0.944828,0.0377011,0.0167686,0.636293,0.737974,0.401628,0.727106,0.934464,0.397598,0.802882,0.220634,0.324077,0.0815046,0.640738,0.701808,0.0905079,0.786181,0.628487,0.850932,0.843673,0.858444,0.517493,0.80198,0.10162,0.953081,0.239382,0.442416,0.113452,0.255996,0.635534,0.200717,0.693262,0.898618,0.524121,0.857546,0.796378,0.398428,0.549285,0.296668,0.557559,0.245766,0.998031,0.448123,0.50492,0.187172,0.533147,0.523689,0.243362,0.67266,0.11881,0.765334,0.428297,0.238792,0.54095,0.194831,0.998892,0.264288,0.77304,0.532459,0.22702,0.720734,0.270097,0.321327,0.152491,0.10916,0.145819,0.524592,0.728233,0.701421,0.23816,0.426783,0.47201,0.435404,0.956951,0.282712,0.97875,0.620848,0.779817,0.581658,0.577166,0.72357,0.891645,0.663052,0.574002,0.345349,0.883802,0.283432,0.945178,0.87134,0.952256,0.482887,0.684314,0.401144,0.305602,0.569526,0.55042,0.522009,0.645579,0.0442331,0.789115,0.364825,0.047651,0.000762343,0.682405,0.625534,0.111606,0.319091,0.872033,0.0389439,0.0174765,0.736186,0.318027,0.786832,0.570834,0.600581,0.0537773,0.718859,0.701641,0.240998,0.043358,0.370963,0.574536,0.985792,0.705025,0.516814,0.746788,0.691936,0.471311,0.438443,0.816587,0.536409,0.693451,0.893129,0.813415,0.775487,0.268964,0.73365,0.944522,0.144077,0.707473,0.771235,0.656258,0.934677,0.725106,0.644554,0.831764,0.4584,0.758408,0.515399,0.0801286,0.766895,0.369384,0.858204,0.834242,0.61216,0.703536,0.260587,0.387305,0.255776,0.162975,0.567285,0.532916,0.636621,0.666119,0.613992,0.210056,0.238422,0.899022,0.289345,0.120012,0.954125,0.0316059,0.759242,0.762111,0.500093,0.793,0.393183,0.665846,0.290768,0.658091,0.226139,0.609236,0.807507,0.790217,0.673102,0.456111,0.310177,0.290842,0.290943,0.838105,0.753551,0.20042,0.238777,0.440371,0.10706,0.0982075,0.254763,0.971587,0.103183,0.621353,0.52482,0.0376041,0.179114,0.59787,0.835239,0.420787,0.136701,0.199957,0.978704,0.140973,0.272659,0.958259,0.16411,0.804842,0.906166,0.501666,0.023691,0.562569,0.900752,0.781672,0.0203795,0.195088,0.341189,0.611368,0.881003,0.716461,0.890055,0.102977,0.530266,0.899094,0.430051,0.728685,0.568028,0.912641,0.0454979,0.308608,0.909166,0.525552,0.140476,0.364432,0.172057,0.353334,0.942064,0.359584,0.927988,0.77705,0.50835,0.529489,0.81938,0.892972,0.0154985,0.334157,0.0316584,0.598388,0.318971,0.978611,0.204036,0.0311414,0.353969,0.619648,0.183376,0.0310919,0.398949,0.863529,0.994732,0.775615,0.784335,0.377806,0.261226,0.422047,0.310297,0.0529297,0.518575,0.390432,0.816054,0.537164,0.538137,0.129329,0.956158,0.480819,0.278435,0.249916,0.926121,0.529049,0.301995,0.523807,0.797369,0.436097,0.657659,0.503523,0.955891,0.0644077,0.932027,0.00917214,0.630113,0.334611,0.425855,0.117024,0.986048,0.987801,0.304184,0.377954,0.039936,0.483136,0.207857,0.592634,0.484322,0.376567,0.940696,0.134437,0.957466,0.0511252,0.970258,0.973159,0.298297,0.833299,0.577721,0.0696591,0.524669,0.0922559,0.159149,0.894858,0.203965,0.320802,0.181334,0.303678,0.225053,0.648571,0.514196,0.369212,0.5535,0.183511,0.374908,0.517849,0.772398,0.0229371,0.912388,0.399558,0.205677,0.556069,0.443295,0.356073,0.95471,0.104772,0.55608,0.585028,0.229778,0.391126,0.75157,0.750573,0.211444,0.075349,0.293891,0.610538,0.325897,0.585293,0.803408,0.795611,0.0657706,0.667787,0.303726,0.656724,0.684631,0.180878,0.916301,0.386038,0.905371,0.476476,0.470338,0.182483,0.880798,0.108263,0.99981,0.0914488,0.019111,0.0828365,0.9566,0.145609,0.157268,0.813204,0.462353,0.938504,0.539569,0.968264,0.00201792,0.595487,0.900506,0.0318794,0.306672,0.264257,0.475618,0.955393,0.0340137,0.801713,0.949483,0.982628,0.883657,0.407799,0.0274742,0.739535,0.37708,0.388175,0.903056,0.885989,0.0165082,0.942227,0.0523633,0.125111,0.47155,0.746746,0.892302,0.461629,0.442105,0.658111,0.359723,0.999433,0.491356,0.422967,0.389208,0.982781,0.810102,0.371201,0.377316,0.909032,0.515984,0.0307138,0.91809,0.635982,0.742177,0.134909,0.987062,0.64536,0.650602,0.966287,0.397319,0.554019,0.110258,0.914217,0.0516775,0.965626,0.16892,0.441877,0.460374,0.49872,0.776169,0.954967,0.978226,0.110159,0.332116,0.0618981,0.737039,0.791736,0.0376868,0.590115,0.428633,0.835891,0.0197948,0.337824,0.0109998,0.145729,0.943819,0.343178,0.166572,0.596296,0.280738,0.638129,0.0821392,0.259189,0.708654,0.424045,0.797382,0.269873,0.103535,0.0588869,0.126104,0.495213,0.867804,0.496222,0.147512,0.549101,0.354843,0.527963,0.320671,0.0629726,0.895006,0.179686,0.62651,0.0160836,0.135021,0.783281,0.882137,0.77927,0.863231,0.521789,0.505893,0.466043,0.405075,0.654118,0.37498,0.863975,0.328807,0.168674,0.13547,0.432735,0.214621,0.173792,0.278891,0.268011,0.201957,0.375328,0.790915,0.804986,0.919549,0.286457,0.864283,0.131729,0.812797,0.730418,0.233537,0.0390083,0.0274602,0.069414,0.849666,0.347073,0.440077,0.660431,0.0431752,0.525106,0.998379,0.49061,0.861216,0.638853,0.262545,0.30667,0.796104,0.651059,0.982924,0.970833,0.0515497,0.131584,0.276987,0.380796,0.233364,0.389921,0.735717,0.510154,0.27027,0.532837,0.558597,0.93829,0.759812,0.434173,0.0200199,0.409064,0.731339,0.139798,0.424756,0.83957,0.58579,0.0502815,0.132844,0.13201,0.647899,0.994485,0.501226,0.387141,0.350701,0.806379,0.712128,0.710176,0.0588306,0.176186,0.415157,0.295404,0.771224,0.920451,0.200614,0.16245,0.530624,0.607591,0.302827,0.488859,0.489239,0.767231,0.565405,0.179401,0.993342,0.259577,0.427385,0.898046,0.990985,0.284755,0.942215,0.501842,0.25579,0.594512,0.654127,0.766773,0.487867,0.802265,0.384379,0.065329,0.177016,0.568365,0.468007,0.0920305,0.215038,0.216981,0.906557,0.227827,0.363798,0.394913,0.937266,0.711903,0.436954,0.876025,0.0367888,0.124519,0.194406,0.560879,0.769458,0.335818,0.57737,0.399197,0.202417,0.42791,0.191982,0.835703,0.421128,0.229898,0.624951,0.85213,0.981873,0.212567,0.544911,0.99672,0.101123,0.636061,0.873051,0.180711,0.940743,0.0840964,0.980572,0.478956,0.749023,0.057464,0.241623,0.261031,0.133954,0.215084,0.656727,0.513655,0.237686,0.359233,0.609658,0.113818,0.134723,0.949714,0.251891,0.0760019,0.587717,0.323576,0.561451,0.743219,0.259757,0.458028,0.00353855,0.628879,0.533644,0.63175,0.513628,0.320086,0.0720578,0.817368,0.730593,0.242682,0.510601,0.310642,0.271487,0.368215,0.875274,0.944629,0.596087,0.147531,0.371648,0.104399,0.514131,0.0738958,0.184848,0.346169,0.0266489,0.713704,0.408916,0.420839,0.17899,0.689172,0.164472,0.818626,0.603186,0.650333,0.245729,0.799925,0.446431,0.168955,0.557664,0.44204,0.168373,0.0188915,0.248653,0.600973,0.849113,0.753777,0.0836273,0.579588,0.743471,0.69467,0.777865,0.200326,0.444856,0.0295698,0.404602,0.103223,0.819009,0.176191,0.0652348,0.721085,0.736839,0.0302541,0.364315,0.832125,0.117309,0.224027,0.899248,0.148035,0.886733,0.222937,0.340944,0.823223,0.917108,0.743343,0.205671,0.0362481,0.313489,0.490269,0.402898,0.455982,0.279989,0.991992,0.0664962,0.920384,0.658847,0.208034,0.0817517,0.295617,0.499926,0.757995,0.197488,0.908685,0.37426,0.551145,0.161213,0.0063861,0.956167,0.889633,0.31089,0.567491,0.35303,0.0191752,0.777821,0.781477,0.176279,0.467047,0.149848,|0.155892,0.317671,0.801403,0.944409,0.507813,0.0649784,0.353764,0.126629,0.658623,0.953351,0.871293,0.854225,0.295695,0.51487,0.75915,0.929913,0.651539,0.888346,0.986406,0.0521507,0.524943,0.0349436,0.501818,0.434832,0.902788,0.450697,0.679879,0.290825,0.916354,0.696005,0.635822,0.39685,0.660349,0.865118,0.0061484,0.65804,0.280479,0.129402,0.603376,0.288784,0.733116,0.20161,0.593023,0.207844,0.5665,0.410831,0.996933,0.0344526,0.0775545,0.891995,0.918533,0.907938,0.159132,0.0599978,0.831213,0.339527,0.771229,0.789843,0.156758,0.134551,0.412657,0.84313,0.409037,0.441861,0.443348,0.368124,0.830517,0.222046,0.126347,0.0139114,0.258448,0.13878,0.16136,0.0635427,0.993549,0.45485,0.454404,0.955923,0.912095,0.255345,0.580254,0.762693,0.314334,0.201238,0.293323,0.412097,0.758007,0.668891,0.277108,0.642191,0.873798,0.484841,0.159727,0.24538,0.649922,0.949435,0.0208387,0.128959,0.300445,0.0954512,0.114795,0.23374,0.502944,0.779487,0.425526,0.801227,0.873856,0.320704,0.712761,0.763449,0.69752,0.237521,0.301264,0.825541,0.456408,0.724786,0.816986,0.36133,0.362437,0.207024,0.754947,0.182854,0.953259,0.799444,0.485732,0.855407,0.560967,0.803563,0.356334,0.231466,0.972428,0.0421209,0.450651,0.086296,0.0182528,0.731883,0.087034,0.146924,0.393171,0.78712,0.447983,0.456489,0.989521,0.248239,0.798449,0.813902,0.153447,0.408514,0.0592844,0.477314,0.910146,0.620082,0.228502,0.845701,0.369239,0.951213,0.580483,0.435785,0.612343,0.573278,0.438963,0.105991,0.421035,0.164565,0.519871,0.428901,0.595393,0.371602,0.45092,0.414327,0.776803,0.135219,0.673843,0.237917,0.86371,0.913747,0.69225,0.630696,0.793104,0.333242,0.70716,0.445812,0.183307,0.759979,0.87317,0.526406,0.099955,0.789198,0.59137,0.906548,0.870523,0.327053,0.355631,0.118574,0.0407254,0.868422,0.115973,0.96854,0.351233,0.84247,0.618955,0.693587,0.927366,0.513569,0.816442,0.340962,0.0634355,0.610617,0.781539,0.921542,0.905616,0.712021,0.330095,0.106566,0.50309,0.281097,0.817824,0.361863,0.433253,0.148015,0.990411,0.874936,0.0844102,0.589446,0.706825,0.941108,0.539948,0.0819322,0.704869,0.816808,0.939698,0.974465,0.0244085,0.609875,0.134266,0.503811,0.0356246,0.100556,0.195685,0.0939031,0.775877,0.0189015,0.41507,0.534033,0.752705,0.719813,0.660014,0.293422,0.953325,0.477953,0.356164,0.0399266,0.875939,0.0922326,0.295065,0.427505,0.553022,0.519343,0.185972,0.128999,0.576885,0.615712,0.0167949,0.954114,0.442746,0.532493,0.0691964,0.598012,0.289393,0.872934,0.0987555,0.627474,0.523376,0.0649108,0.566037,0.655484,0.0427774,0.925744,0.373487,0.355435,0.999659,0.0491712,0.623768,0.982319,0.605466,0.6077,0.118675,0.831596,0.804999,0.956364,0.17422,0.875907,0.559745,0.674412,0.787787,0.798198,0.597506,0.529827,0.301149,0.984643,0.866173,0.900941,0.393639,0.391572,0.542506,0.720125,0.524716,0.201744,0.925079,0.331161,0.910917,0.886017,0.940055,0.290138,0.0750495,0.461843,0.865309,0.686727,0.541916,0.119097,0.0127636,0.723997,0.899691,0.0478545,0.263208,0.35176,0.565664,0.819264,0.668821,0.483981,0.692541,0.889911,0.530365,0.032222,0.646626,0.189205,0.193068,0.0781799,0.116238,0.653159,0.160479,0.268267,0.87277,0.283425,0.971277,0.91665,0.359046,0.0606815,0.954478,0.33238,0.821715,0.376033,0.363324,0.824774,0.847782,0.600361,0.932279,0.0918059,0.204844,0.412354,0.642353,0.623873,0.46719,0.0481966,0.442273,0.962694,0.0821834,0.0938987,0.0564936,0.987804,0.668525,0.0307822,0.755458,0.464289,0.12045,0.0719235,0.234536,0.085929,0.0990776,0.805504,0.400925,0.250671,0.751743,0.39114,0.214949,0.271487,0.204883,0.316846,0.985759,0.938331,0.788981,0.133619,0.0504969,0.34691,0.136213,0.425449,0.851326,0.258237,0.30138,0.987469,0.502021,0.266454,0.772119,0.136194,0.938055,0.272747,0.98525,0.596193,0.8967,0.478414,0.361865,0.476565,0.807667,0.74075,0.213146,0.537687,0.349435,0.14473,0.581771,0.230036,0.831066,0.513676,0.821274,0.178652,0.394989,0.27356,0.036588,0.778667,0.586256,0.322581,0.518193,0.754582,0.781372,0.759397,0.377027,0.692589,0.972628,0.277874,0.777041,0.885208,0.663051,0.205946,0.335521,0.271975,0.678998,0.0218915,0.325239,0.428923,0.942042,0.730149,0.904323,0.654134,0.792872,0.913612,0.139128,0.10905,0.654393,0.216747,0.519603,0.393546,0.983432,0.931328,0.421468,0.479096,0.811614,0.454659,0.58733,0.491945,0.50025,0.191005,0.0645965,0.57781,0.800491,0.00345922,0.968082,0.506549,0.194811,0.705534,0.673913,0.117977,0.00746483,0.160239,0.114453,0.482583,0.651149,0.647214,0.236179,0.718067,0.860193,0.142256,0.401634,0.166401,0.598856,0.218001,0.181684,0.425212,0.611396,0.707484,0.719579,0.706214,0.678713,0.182736,0.71287,0.759595,0.106281,0.331893,0.0462396,0.0775117,0.358558,0.0821876,0.225346,0.00693911,0.571611,0.0951353,0.868731,0.89577,0.560092,0.744957,0.239145,0.112149,0.529362,0.607429,0.41752,0.25758,0.79227,0.626508,0.368365,0.0609506,0.0676256,0.59337,0.962515,0.308715,0.787822,0.772182,0.912308,0.912931,0.251855,0.36141,0.460052,0.368724,0.583159,0.663227,0.940791,0.636357,0.978725,0.409547,0.918235,0.121406,0.94265,0.871395,0.222212,0.973104,0.615869,0.528907,0.979428,0.83792,0.991274,0.722456,0.752832,0.179032,0.904242,0.271836,0.28531,0.704069,0.270841,0.372703,0.0578843,0.513892,0.199281,0.52021,0.258337,0.580256,0.205965,0.611289,0.774472,0.0635737,0.168487,0.138767,0.766335,0.927014,0.39022,0.70314,0.123008,0.710635,0.581551,0.0101844,0.950083,0.174592,0.778975,0.791661,0.887834,0.182108,0.106592,0.587319,0.117707,0.497801,0.0917236,0.80148,0.363439,0.495866,0.000367284,0.00693673,0.2578,0.946142,0.496347,0.76309,0.874387,0.644965,0.962592,0.379216,0.0446537,0.133774,0.9053,0.932064,0.769801,0.581845,0.562672,0.147995,0.369196,0.253114,0.420772,0.79289,0.387666,0.0456316,0.363605,0.413305,0.0903801,0.741864,0.395906,0.279422,0.925057,0.730928,0.402493,0.454728,0.031151,0.573395,0.519659,0.34652,0.444266,0.343719,0.198901,0.826303,0.954254,0.670459,0.0160443,0.159231,0.87144,0.208223,0.519834,0.371995,0.371157,0.766563,0.181215,0.924687,0.602154,0.693382,0.0142913,0.170503,0.990383,0.567841,0.00821602,0.967806,0.951064,0.111719,0.494858,0.948131,0.129586,0.511992,0.119246,0.48528,0.195248,0.913277,0.765436,0.618904,0.492595,0.572129,0.807269,0.108378,0.299895,0.0505869,0.931928,0.572116,0.648242,0.888929,0.949332,0.996531,0.814367,0.462323,0.363126,0.679581,0.0409837,0.704142,0.017621,0.552373,0.634064,0.877978,0.30017,0.419514,0.510216,0.969137,0.929777,0.478041,0.429175,0.932101,0.811868,0.130199,0.0611823,0.621493,0.693336,0.666471,0.839958,0.522536,0.207197,0.513071,0.413554,0.992612,0.152932,0.0741382,0.513594,0.896484,0.831491,0.736031,0.381769,0.961449,0.960963,0.891122,0.411397,0.4062,0.170629,0.753511,0.199332,0.677482,0.845637,0.81301,0.160744,0.142796,0.268214,0.660047,0.885949,0.494945,0.339164,0.787073,0.464633,0.272802,0.585995,0.836643,0.132436,0.97779,0.0216594,0.237732,0.55507,0.554256,0.478596,0.410356,0.124265,0.959459,0.885366,0.0461545,0.420634,0.954471,0.636573,0.505645,0.119929,0.57627,0.376021,0.661423,0.967795,0.593349,0.883252,0.318407,0.710706,0.519313,0.385521,0.907967,0.183769,0.308512,0.235471,0.750401,0.702931,0.734288,0.389922,0.688853,0.419229,0.814354,0.834265,0.361318,0.513775,0.0194705,0.040054,0.407506,0.318265,0.316029,0.722236,0.666672,0.541219,0.219588,0.819829,0.865449,0.615464,0.776841,0.572571,0.410927,0.700686,0.0187713,0.366011,0.960652,0.37303,0.895871,0.411745,0.313502,0.259345,0.0407492,0.706663,0.564523,0.729849,0.398186,0.125568,0.229747,0.725538,0.479084,0.656744,0.741165,0.74175,0.330082,0.0860874,0.123421,0.428802,0.501569,0.570091,0.215931,0.128698,0.0310091,0.328974,0.0243652,0.897348,0.896631,0.483641,0.950119,0.741338,0.248744,0.355848,0.884541,0.809808,0.784736,0.641052,0.1474,0.612366,0.842545,0.247437,0.317373,0.0833681,0.932634,0.897453,0.0805112,0.665228,0.15381,0.575898,0.890386,0.0472089,0.788578,0.53815,0.700739,0.786632,0.603274,0.0781665,0.0947255,0.905437,0.214908,0.714168,0.191038,0.206543,0.472197,0.831118,0.999977,0.162279,0.247299,0.369138,0.272216,0.556869,0.116033,0.971435,0.757515,0.433929,0.0343876,0.952333,0.85858,0.0323614,0.452667,0.00449324,0.123503,0.974684,0.378931,0.194568,0.0305964,0.332781,0.513931,0.0462219,0.561546,0.418308,0.99761,0.308558,0.7387,0.114998,0.929704,0.507385,0.756996,0.00642574,0.279471,0.90369,0.129133,0.702341,0.787315,0.670127,0.828338,0.319765,0.460089,0.995744,0.417034,0.473241,0.240645,0.695671,0.807406,0.0156422,0.0833485,0.607759,0.675157,0.789419,0.36577,0.756145,0.828573,0.365727,0.31463,0.376357,0.420106,0.0182683,0.574038,0.457957,0.262127,0.606766,0.347838,0.850238,0.404459,0.828187,0.668241,0.111936,0.923075,0.624994,0.817908,0.0170422,0.690645,0.670682,0.934014,0.438511,0.875299,0.440806,0.0704257,0.612931,0.19053,0.41313,0.0417209,0.578703,0.157803,0.271708,0.840212,0.618909,0.180858,0.987936,0.408965,0.890677,0.505873,0.699772,0.698249,0.252108,0.355039,0.598879,0.0809054,0.595555,0.536658,0.644989,0.103489,0.90584,0.474234,0.941155,0.0926892,0.425762,0.803973,0.62079,0.0723106,0.10275,0.803537,0.271377,0.28031,0.0172188,0.869012,0.16649,0.346013,0.18362,0.631301,0.027996,0.83336,|0.377297,0.804686,0.406172,0.789842,0.873834,0.382363,0.476739,0.375267,0.897495,0.745577,0.963488,0.968271,0.373097,0.0224556,0.017257,0.732397,0.441528,0.159947,0.473255,0.029713,0.186805,0.507917,0.228558,0.444012,0.56656,0.646767,0.62491,0.311882,0.392791,0.397488,0.569438,0.396592,0.225989,0.446345,0.737881,0.994182,0.344636,0.159945,0.709274,0.673124,0.225127,0.310122,0.793556,0.917486,0.716128,0.886912,0.85662,0.347414,0.962477,0.0220254,0.00441092,0.477075,0.832732,0.399039,0.681676,0.336244,0.0206057,0.954506,0.272722,0.427995,0.864156,0.517745,0.973109,0.251555,0.478083,0.137659,0.740509,0.237052,0.177264,0.410059,0.292314,0.0221329,0.18114,0.766673,0.334108,0.831697,0.254258,0.526141,0.261688,0.956112,0.292539,0.0279608,0.992653,0.460032,0.727833,0.445532,0.577657,0.639519,0.529651,0.467672,0.642478,0.130398,0.768289,0.7102,0.0632239,0.543887,0.658313,0.749905,0.446878,0.809956,0.744716,0.7314,0.193422,0.879298,0.783101,0.0174692,0.652008,0.0143682,0.935816,0.456003,0.581072,0.57768,0.943081,0.339464,0.103787,0.0676091,0.934169,0.0262011,0.38661,0.753126,0.625254,0.874289,0.00138199,0.764332,0.201399,0.54388,0.188667,0.00639278,0.289751,0.655275,0.364935,0.899183,0.718769,0.35291,0.616052,0.621703,0.687519,0.358297,0.300725,0.846504,0.798033,0.73421,0.993737,0.561564,0.430052,0.0701542,0.0403962,0.218039,0.0643486,0.473295,0.570916,0.731543,0.293302,0.716065,0.245588,0.843644,0.712372,0.0163526,0.805694,0.630271,0.634542,0.0250537,0.799807,0.35269,0.166881,0.715527,0.272015,0.669898,0.961761,0.804708,0.847827,0.906835,0.16415,0.338601,0.221461,0.287237,0.731958,0.435406,0.501578,0.657579,0.662058,0.0359136,0.657875,0.900411,0.485016,0.347128,0.978803,0.652368,0.0779698,0.418378,0.583264,0.409172,0.780689,0.687535,0.894638,0.587964,0.936247,0.408335,0.791883,0.891599,0.888141,0.718021,0.507139,0.707289,0.0844325,0.654974,0.158044,0.766157,0.452831,0.160343,0.811996,0.691652,0.0194128,0.322711,0.680909,0.823798,0.509312,0.929814,0.158672,0.649945,0.539128,0.506829,0.201197,0.388364,0.0234659,0.0470378,0.507919,0.00349504,0.34161,0.654038,0.963432,0.490278,0.167371,0.895125,0.845036,0.390797,0.71483,0.200221,0.650453,0.170603,0.363486,0.227311,0.55707,0.273478,0.385629,0.404289,0.268833,0.951214,0.858144,0.570308,0.564625,0.129053,0.438132,0.978242,0.653949,0.497118,0.377462,0.0389788,0.186755,0.97727,0.352653,0.706268,0.140066,0.138835,0.903267,0.407671,0.175913,0.670015,0.777458,0.498829,0.536158,0.619065,0.0791675,0.0792443,0.0990531,0.109171,0.808763,0.734273,0.90355,0.712578,0.598565,0.231998,0.996239,0.795282,0.23378,0.235053,0.335907,0.141814,0.586404,0.939205,0.675592,0.992258,0.926861,0.441434,0.503445,0.793375,0.358549,0.932088,0.583113,0.396074,0.524849,0.22235,0.64497,0.626798,0.68598,0.738665,0.120107,0.0829509,0.692568,0.333936,0.453426,0.547199,0.755937,0.257577,0.0144619,0.751493,0.56626,0.975608,0.792239,0.970743,0.368176,0.19935,0.53199,0.252945,0.597509,0.750974,0.784782,0.387704,0.937013,0.17184,0.366441,0.604499,0.441697,0.582471,0.582216,0.909299,0.625566,0.328681,0.734325,0.35207,0.007572,0.726551,0.487961,0.58639,0.649931,0.409951,0.238063,0.976485,0.352797,0.300326,0.413914,0.0276925,0.252457,0.366638,0.78049,0.651583,0.26196,0.132798,0.798242,0.0808171,0.00833052,0.0945479,0.0132952,0.718802,0.853776,0.104456,0.39029,0.106736,0.812233,0.340565,0.65439,0.0434324,0.973719,0.557751,0.334019,0.939102,0.44411,0.472211,0.84047,0.165765,0.00735044,0.710146,0.993041,0.271923,0.998554,0.19472,0.130345,0.677893,0.508481,0.92824,0.607403,0.311709,0.0590951,0.932096,0.941567,0.840175,0.920419,0.485783,0.39246,0.309966,0.190788,0.316776,0.989962,0.315801,0.814133,0.789692,0.241604,0.693752,0.946464,0.172225,0.0102208,0.197543,0.176115,0.568734,0.968765,0.865827,0.201459,0.0577224,0.475208,0.389725,0.427008,0.290995,0.332655,0.866615,0.234592,0.0708788,0.522589,0.601393,0.844025,0.5204,0.0924043,0.78501,0.730314,0.611955,0.780692,0.402013,0.70087,0.92221,0.599308,0.87621,0.0142353,0.723448,0.519646,0.639873,0.7941,0.400445,0.287286,0.130217,0.664944,0.132468,0.667637,0.238558,0.549295,0.654257,0.0194901,0.663466,0.042154,0.295078,0.0565253,0.160986,0.0905043,0.879,0.408757,0.555203,0.0984561,0.303588,0.597569,0.768036,0.26374,0.978485,0.621792,0.515653,0.367867,0.898017,0.918662,0.331819,0.288327,0.307229,0.695128,0.496248,0.371,0.306405,0.0879368,0.979451,0.13432,0.362293,0.948275,0.664087,0.970853,0.868403,0.8235,0.175222,0.496711,0.590802,0.675083,0.838996,0.708116,0.676281,0.728806,0.279881,0.86886,0.933323,0.437273,0.612864,0.848493,0.24826,0.819152,0.446398,0.349551,0.00205278,0.227675,0.0441595,0.241241,0.86513,0.552985,0.487708,0.85983,0.693523,0.140862,0.135112,0.684791,0.0179855,0.102626,0.235523,0.314962,0.646157,0.0946755,0.398139,0.606679,0.565582,0.404952,0.681907,0.274918,0.944766,0.00389045,0.817747,0.730451,0.0868183,0.814107,0.774152,0.210554,0.0136411,0.775708,0.401574,0.720573,0.590559,0.751423,0.925736,0.298973,0.29872,0.216003,0.516564,0.147438,0.83913,0.959121,0.68485,0.383637,0.461258,0.676457,0.13055,0.628978,0.559903,0.752821,0.639146,0.761421,0.863333,0.110259,0.587894,0.0924755,0.587509,0.291428,0.937321,0.170756,0.133269,0.59488,0.978103,0.809835,0.462309,0.21533,0.117757,0.916627,0.260887,0.522907,0.872189,0.741214,0.595579,0.541551,0.41693,0.775005,0.82928,0.56397,0.0380741,0.43413,0.0372021,0.0801824,0.600942,0.377353,0.313557,0.092874,0.423524,0.603986,0.963791,0.583363,0.728839,0.671279,0.285485,0.101973,0.636593,0.380055,0.999694,0.143869,0.02866,0.334472,0.166763,0.126181,0.509156,0.350884,0.930329,0.728854,0.196423,0.614955,0.187328,0.652479,0.113903,0.168613,0.584049,0.727288,0.442105,0.313875,0.821029,0.676289,0.054229,0.246266,0.711343,0.0670595,0.00438696,0.612717,0.505121,0.597876,0.746621,0.538809,0.675293,0.261545,0.353173,0.791298,0.977312,0.624337,0.475507,0.729768,0.576926,0.244165,0.710443,0.0271966,0.0759924,0.131348,0.756812,0.177312,0.402801,0.418093,0.640331,0.299409,0.357517,0.711447,0.211496,0.429108,0.737881,0.196974,0.414453,0.816244,0.716316,0.994687,0.371375,0.321103,0.882525,0.912868,0.263357,0.43224,0.961323,0.462894,0.883615,0.767419,0.110273,0.12448,0.28772,0.482402,0.56849,0.223873,0.801813,0.577552,0.394702,0.12522,0.796227,0.881264,0.178494,0.389145,0.0562704,0.044946,0.719965,0.989141,0.364349,0.453896,0.539364,0.144468,0.669482,0.471574,0.751209,0.151423,0.00829333,0.455135,0.513046,0.520837,0.660731,0.152253,0.401203,0.710691,0.762249,0.0449054,0.773406,0.822981,0.534357,0.394875,0.107608,0.188406,0.770598,0.876789,0.947095,0.224098,0.63801,0.0952947,0.81851,0.51657,0.900379,0.882472,0.709197,0.309164,0.194133,0.697631,0.874408,0.161731,0.421669,0.526329,0.716495,0.717165,0.59626,0.14387,0.0175222,0.328818,0.118269,0.343877,0.521652,0.759967,0.256756,0.171626,0.656879,0.993344,0.845482,0.980202,0.339675,0.663584,0.049499,0.56027,0.384255,0.0519757,0.0285348,0.403034,0.686674,0.670005,0.932549,0.44573,0.0292169,0.00725144,0.663345,0.212437,0.434286,0.676766,0.61464,0.788229,0.733229,0.653248,0.318532,0.430663,0.917714,0.102222,0.799367,0.389263,0.318446,0.241136,0.906544,0.0736846,0.400181,0.857305,0.902116,0.66149,0.342092,0.621393,0.30755,0.769138,0.405342,0.83202,0.16926,0.710566,0.509316,0.0818164,0.0370628,0.71308,0.0737814,0.397402,0.524679,0.398731,0.324689,0.903473,0.928228,0.457776,0.850131,0.428327,0.837208,0.890527,0.650529,0.632127,0.873205,0.821902,0.677361,0.711846,0.23687,0.223476,0.252308,0.191533,0.324292,0.265702,0.55595,0.568313,0.68592,0.840937,0.355846,0.00911468,0.72854,0.623138,0.88178,0.67911,0.99088,0.315208,0.767877,0.508785,0.604821,0.273566,0.75713,0.489344,0.695858,0.929037,0.592523,0.271337,0.660459,0.928113,0.997922,0.232094,0.172278,0.738011,0.316919,0.116048,0.968665,0.567326,0.649036,0.212367,0.786682,0.241368,0.441157,0.225508,0.0213987,0.881289,0.770876,0.322877,0.775943,0.52599,0.950288,0.798507,0.302026,0.0180312,0.464433,0.657865,0.963404,0.419627,0.314327,0.943979,0.463672,0.868691,0.592191,0.592547,0.22137,0.0408841,0.762479,0.682026,0.832765,0.282849,0.300437,0.905715,0.407015,0.418282,0.0871247,0.42471,0.138274,0.161416,0.680542,0.0558883,0.183267,0.8365,0.683957,0.473819,0.162479,0.0248886,0.157248,0.46958,0.106346,0.0327287,0.16831,0.328291,0.873881,0.483738,0.568476,0.329024,0.575876,0.603071,0.918704,0.442041,0.173451,0.40822,0.915203,0.792262,0.605491,0.209168,0.952354,0.478943,0.440927,0.842286,0.320835,0.812693,0.084256,0.00665128,0.839678,0.149167,0.780471,0.139302,0.284951,0.0553324,0.286932,0.58191,0.22359,0.915228,0.829549,0.732823,0.717813,0.0794843,0.464634,0.825602,0.186712,0.371429,0.884001,0.79826,0.494445,0.529558,0.296235,0.632175,0.683152,0.716368,0.12474,0.271352,0.613956,0.679268,0.212434,0.185075,0.171001,0.810972,0.936117,0.229616,0.366291,0.245784,0.385269,0.237788,0.0247668,0.757524,0.918404,0.5199,0.193813,0.765118,0.371489,0.817231,0.268073,0.670179,0.0608709,0.973933,0.962774,0.690527,0.282512,0.650763,0.325318,0.578291,0.316844,0.782774,0.711955,0.528719,0.318565,|0.947627,0.883307,0.667548,0.322635,0.566745,0.406113,0.832439,0.341393,0.43671,0.75796,0.0356027,0.00848615,0.838406,0.122923,0.0379824,0.620959,0.736663,0.495015,0.727235,0.151231,0.385472,0.608193,0.143277,0.128984,0.846522,0.585586,0.413529,0.421184,0.0340136,0.497925,0.145118,0.0492777,0.367229,0.457498,0.601205,0.920477,0.626202,0.585147,0.34331,0.021173,0.0845,0.0519401,0.840232,0.630469,0.251183,0.668225,0.385097,0.255565,0.786116,0.785228,0.825103,0.308866,0.948778,0.703739,0.331318,0.692046,0.426328,0.656098,0.370066,0.655064,0.629099,0.377527,0.79629,0.763385,0.424036,0.698547,0.668559,0.0142467,0.238591,0.282451,0.184025,0.229938,0.160958,0.545266,0.8719,0.493051,0.637846,0.948275,0.302705,0.982383,0.32185,0.0655018,0.198225,0.429643,0.949473,0.395103,0.210949,0.344663,0.343874,0.577937,0.350285,0.768447,0.0107383,0.84547,0.439808,0.230597,0.0814346,0.892286,0.63436,0.51861,0.676473,0.0833212,0.108026,0.090324,0.396705,0.876985,0.412415,0.356194,0.345701,0.650825,0.579572,0.128312,0.255056,0.816107,0.273382,0.327038,0.831621,0.772688,0.381458,0.129254,0.606784,0.997,0.152059,0.380008,0.197057,0.65795,0.978261,0.984644,0.475559,0.728509,0.602618,0.267525,0.667296,0.372506,0.802944,0.768359,0.400595,0.147371,0.892624,0.886194,0.875795,0.22227,0.271402,0.570537,0.325004,0.0225393,0.717956,0.517468,0.357029,0.523927,0.826035,0.135153,0.527939,0.0907163,0.343588,0.0498945,0.515631,0.954957,0.907611,0.146258,0.427153,0.563858,0.757567,0.50923,0.89064,0.766473,0.0392094,0.974551,0.738539,0.150788,0.214184,0.745908,0.896373,0.512187,0.886997,0.367899,0.787105,0.720006,0.29927,0.021748,0.82825,0.0174325,0.720672,0.30312,0.847427,0.454971,0.753173,0.583212,0.503717,0.26729,0.00334734,0.514111,0.324046,0.279103,0.931878,0.102331,0.0945964,0.560662,0.278545,0.695676,0.284808,0.66519,0.388194,0.905998,0.724554,0.27457,0.327731,0.550665,0.0392627,0.723866,0.307324,0.328913,0.893573,0.239693,0.718177,0.505508,0.53387,0.521361,0.480508,0.0542567,0.373849,0.803727,0.41257,0.301831,0.63886,0.244887,0.00754833,0.462818,0.830609,0.543995,0.864369,0.496321,0.59128,0.102433,0.614222,0.786251,0.739578,0.548493,0.126321,0.964672,0.412422,0.111803,0.620716,0.19328,0.332743,0.0186471,0.201307,0.55007,0.416178,0.589408,0.189899,0.745395,0.0998136,0.647696,0.254279,0.961583,0.121627,0.960897,0.500713,0.903977,0.896139,0.778911,0.999035,0.404336,0.641476,0.881454,0.337674,0.248855,0.725218,0.400987,0.942173,0.386998,0.115995,0.435997,0.309699,0.0799689,0.529229,0.219123,0.669106,0.000346959,0.335614,0.134001,0.286243,0.82539,0.712708,0.878298,0.778514,0.758042,0.294095,0.430978,0.594478,0.564733,0.387093,0.32565,0.658322,0.94769,0.400718,0.391575,0.263009,0.427554,0.321727,0.668989,0.304876,0.409836,0.676817,0.52805,0.981926,0.740795,0.434623,0.704525,0.104393,0.129278,0.272517,0.104826,0.782671,0.975387,0.0296074,0.257046,0.470718,0.83284,0.154261,0.111309,0.58171,0.130311,0.520176,0.855956,0.270586,0.687588,0.478911,0.197537,0.515329,0.739574,0.404463,0.966959,0.234721,0.623407,0.849812,0.873036,0.344673,0.806456,0.821019,0.148218,0.190436,0.345407,0.637013,0.867562,0.397844,0.908187,0.958467,0.20205,0.390055,0.658788,0.353379,0.537139,0.238306,0.0985098,0.86184,0.724242,0.797531,0.213484,0.204833,0.70728,0.8995,0.84462,0.734019,0.772296,0.212274,0.14526,0.534728,0.314674,0.104946,0.630593,0.762106,0.815158,0.910101,0.475142,0.520115,0.846769,0.51656,0.291979,0.419607,0.59444,0.512871,0.228751,0.388221,0.965331,0.556054,0.625071,0.337826,0.335131,0.280047,0.427889,0.915895,0.887025,0.864742,0.188455,0.100501,0.896164,0.825628,0.00145429,0.797972,0.180591,0.533607,0.389389,0.199167,0.734687,0.658731,0.199768,0.417075,0.666091,0.988596,0.68781,0.936646,0.830582,0.0223774,0.120483,0.0904574,0.0589746,0.350639,0.324435,0.840839,0.42182,0.116127,0.122744,0.260744,0.252563,0.78353,0.0334778,0.445792,0.151267,0.902116,0.644276,0.572277,0.281052,0.149903,0.988937,0.680101,0.609642,0.583073,0.239842,0.193021,0.263293,0.185514,0.13359,0.625138,0.0118482,0.344546,0.907775,0.887012,0.527084,0.238748,0.137734,0.9808,0.985384,0.572412,0.229766,0.592879,0.574999,0.410639,0.638039,0.802425,0.310267,0.81703,0.445162,0.177751,0.487101,0.0408408,0.854816,0.552152,0.0568385,0.857336,0.0297787,0.62735,0.59736,0.984112,0.437043,0.600363,0.471546,0.783927,0.0324936,0.717894,0.0133884,0.0578452,0.867388,0.485076,0.727699,0.950445,0.897833,0.574872,0.81223,0.801491,0.567534,0.381279,0.512857,0.742842,0.440198,0.834721,0.611083,0.967708,0.563603,0.54714,0.0570523,0.964772,0.324809,0.552986,0.825663,0.62908,0.394593,0.504601,0.72613,0.626921,0.814411,0.0567819,0.491931,0.366311,0.291848,0.0989959,0.689233,0.670359,0.80153,0.717423,0.701134,0.18813,0.410832,0.640206,0.0261712,0.63895,0.974616,0.885511,0.121158,0.219128,0.518356,0.0899912,0.025693,0.164883,0.727982,0.192551,0.255664,0.0136819,0.0425916,0.659886,0.461454,0.770493,0.428563,0.563218,0.724343,0.156117,0.347882,0.333682,0.164015,0.810631,0.363932,0.156395,0.572496,0.681407,0.94142,0.212802,0.985885,0.703641,0.442845,0.583001,0.995837,0.526772,0.202817,0.110686,0.0671189,0.781278,0.455375,0.801399,0.482419,0.18746,0.803103,0.533753,0.330373,0.876795,0.681943,0.890202,0.313263,0.668798,0.563092,0.766801,0.156437,0.661403,0.545063,0.0600263,0.364014,0.0123711,0.939344,0.557238,0.47025,0.763242,0.125255,0.829421,0.0415346,0.145724,0.132538,0.667229,0.349319,0.535374,0.56067,0.23459,0.929455,0.153643,0.865516,0.152065,0.78399,0.0717586,0.631408,0.986126,0.174622,0.26221,0.286068,0.157188,0.501101,0.180004,0.176847,0.773164,0.727265,0.417489,0.664965,0.737958,0.604328,0.348177,0.100273,0.237771,0.518365,0.847559,0.138609,0.388247,0.194598,0.846358,0.227123,0.487261,0.0385754,0.688146,0.410799,0.358702,0.159026,0.388604,0.977817,0.428898,0.0375936,0.958138,0.71348,0.138761,0.836143,0.659447,0.00106025,0.717471,0.908675,0.427786,0.680261,0.766324,0.512701,0.0437641,0.903921,0.2066,0.43048,0.107106,0.709127,0.978571,0.799403,0.478614,0.968541,0.968528,0.757649,0.0941661,0.611586,0.250833,0.433648,0.552015,0.160179,0.320994,0.0549707,0.0501972,0.629987,0.348836,0.288682,0.148549,0.631739,0.0923504,0.159557,0.938107,0.46713,0.525886,0.243275,0.0307329,0.892154,0.556121,0.42116,0.523676,0.997116,0.904172,0.0758229,0.761154,0.10136,0.175667,0.29605,0.567051,0.305753,0.567741,0.843662,0.763315,0.977158,0.590162,0.243128,0.56696,0.529085,0.834842,0.158407,0.262492,0.994916,0.140793,0.226605,0.159964,0.715046,0.454475,0.0550025,0.747593,0.0035342,0.66595,0.0403574,0.343018,0.484343,0.69407,0.661327,0.64107,0.299757,0.736133,0.719839,0.528792,0.934641,0.646557,0.567778,0.863784,0.195745,0.188735,0.639593,0.0195309,0.448241,0.604349,0.495696,0.552814,0.174254,0.127634,0.0148593,0.792356,0.720266,0.518903,0.0545647,0.120627,0.806904,0.729619,0.684903,0.14509,0.553623,0.265895,0.779787,0.793796,0.790174,0.789534,0.415303,0.459991,0.200492,0.860398,0.0802659,0.418631,0.349127,0.622829,0.112857,0.786375,0.943852,0.2598,0.896301,0.379479,0.819332,0.197275,0.218908,0.0129293,0.61066,0.497906,0.572674,0.187825,0.102777,0.0888308,0.678439,0.196397,0.938525,0.053005,0.667817,0.319445,0.614843,0.394023,0.866671,0.326978,0.768277,0.38362,0.535241,0.786257,0.264156,0.557215,0.632355,0.575896,0.124461,0.663941,0.00605345,0.0342241,0.690743,0.388047,0.22005,0.796566,0.945414,0.4618,0.316449,0.320931,0.0710909,0.36545,0.421856,0.0322435,0.542113,0.373699,0.991041,0.425589,0.773327,0.0155571,0.454902,0.501531,0.557842,0.671025,0.721108,0.827868,0.323631,0.846014,0.951855,0.630989,0.554098,0.41388,0.659195,0.173568,0.283939,0.784121,0.0986283,0.651769,0.206487,0.869758,0.197302,0.656696,0.895506,0.929395,0.149365,0.523784,0.995252,0.457385,0.517281,0.864745,0.554248,0.222409,0.210345,0.805169,0.587522,0.895287,0.954149,0.281237,0.174949,0.599921,0.200093,0.167536,0.203852,0.78346,0.166411,0.522086,0.659824,0.484668,0.288517,0.0311376,0.0319703,0.0286906,0.852153,0.271343,0.286521,0.686824,0.164235,0.404434,0.940114,0.664603,0.375678,0.862342,0.544755,0.173808,0.850742,0.161292,0.313939,0.996838,0.368462,0.526935,0.78992,0.929017,0.638025,0.128785,0.492377,0.876901,0.846636,0.977548,0.403024,0.309539,0.386109,0.419278,0.23806,0.938253,0.97904,0.283282,0.686802,0.879229,0.178859,0.239297,0.416214,0.249015,0.766422,0.269508,0.875666,0.307412,0.891108,0.541408,0.568077,0.902588,0.0513268,0.536914,0.704371,0.187597,0.560427,0.106869,0.660235,0.717718,0.0144212,0.66503,0.33167,0.292498,0.105944,0.754068,0.258959,0.963975,0.468405,0.707723,0.36073,0.287696,0.645464,0.0604669,0.298373,0.819775,0.414886,0.945073,0.615342,0.64868,0.0214074,0.809231,0.151015,0.204106,0.419739,0.0593891,0.232823,0.158794,0.0470705,0.711928,0.309241,0.391653,0.410868,0.5628,0.652388,0.53394,0.506045,0.675745,0.663927,0.195648,0.0756068,0.333338,0.467311,0.957512,0.689368,0.67043,0.176155,0.23035,0.888762,0.923274,0.530806,0.397459,0.781199,0.0903181,0.28295,0.264974,0.324183,0.904588,0.216705,0.970063,0.254608,0.127376,0.0206978,0.709031,0.448138,0.999379,0.0931641,|0.794297,0.836113,0.487527,0.45497,0.881342,0.796503,0.630101,0.0418268,0.838177,0.178787,0.950078,0.905282,0.107863,0.931333,0.0935572,0.308413,0.997243,0.572373,0.268353,0.936271,0.174069,0.281474,0.841059,0.415698,0.387497,0.547183,0.208351,0.194186,0.881565,0.553505,0.151683,0.554441,0.340566,0.794862,0.592708,0.933115,0.733167,0.136458,0.469487,0.880972,0.79658,0.825701,0.0038479,0.0940278,0.994112,0.754854,0.522612,0.176034,0.203108,0.37647,0.834495,0.89879,0.746084,0.454568,0.0343005,0.637649,0.805832,0.0407158,0.851986,0.689799,0.966653,0.995356,0.370124,0.49979,0.517137,0.745334,0.0294712,0.559007,0.549007,0.683598,0.447872,0.622528,0.406587,0.230254,0.0288264,0.540558,0.879061,0.773538,0.959722,0.585128,0.844202,0.565477,0.878643,0.181638,0.185698,0.315431,0.995074,0.583293,0.651404,0.581461,0.374902,0.050944,0.233056,0.279123,0.938578,0.1023,0.900854,0.21883,0.963166,0.0721648,0.25538,0.89521,0.672282,0.14835,0.625325,0.366279,0.13211,0.264061,0.322312,0.0358937,0.864289,0.773409,0.570735,0.523941,0.766069,0.55573,0.9805,0.0653262,0.511848,0.29832,0.878857,0.333585,0.225091,0.688167,0.982779,0.702679,0.570909,0.745057,0.193649,0.810984,0.0484647,0.505017,0.343678,0.550599,0.790357,0.853443,0.276086,0.339704,0.453588,0.927099,0.735412,0.901295,0.50259,0.858644,0.549309,0.803011,0.868623,0.768205,0.764852,0.985687,0.19177,0.898479,0.239335,0.422965,0.74777,0.0876394,0.907531,0.5758,0.426217,0.891294,0.905925,0.126736,0.0977895,0.233714,0.816158,0.854565,0.101688,0.0405805,0.255239,0.142775,0.137145,0.0271228,0.716093,0.500114,0.273275,0.170172,0.786662,0.47082,0.665565,0.91353,0.480314,0.64188,0.444894,0.898422,0.718721,0.224153,0.0301563,0.934422,0.716415,0.316752,0.836002,0.403391,0.0424096,0.53959,0.658115,0.285822,0.661628,0.662052,0.526346,0.268646,0.275781,0.223573,0.429428,0.452706,0.652003,0.500511,0.444156,0.495923,0.833909,0.752853,0.720855,0.828014,0.172623,0.766775,0.090205,0.666225,0.000247896,0.842355,0.403763,0.75466,0.538847,0.694767,0.122245,0.642083,0.694233,0.882949,0.02879,0.103059,0.205661,0.145551,0.815115,0.0309611,0.666753,0.537051,0.176211,0.144777,0.789127,0.385637,0.368205,0.881189,0.615347,0.132243,0.416967,0.126647,0.441867,0.309648,0.965045,0.0146793,0.268577,0.62626,0.0707433,0.0592451,0.657349,0.202428,0.889407,0.518351,0.618781,0.124905,0.355769,0.668988,0.235651,0.657249,0.531073,0.297325,0.889991,0.410258,0.646264,0.582974,0.88573,0.191399,0.10384,0.0681241,0.0826246,0.166103,0.579998,0.607832,0.133167,0.165688,0.168445,0.307535,0.332279,0.88698,0.510707,0.00485909,0.725796,0.752957,0.232856,0.996644,0.921845,0.996958,0.8145,0.384245,0.792648,0.117975,0.701077,0.444142,0.303726,0.780994,0.5727,0.859177,0.373043,0.870312,0.089843,0.358632,0.742433,0.968605,0.516762,0.797101,0.102998,0.259854,0.138651,0.821563,0.117654,0.531539,0.140742,0.209114,0.578449,0.438788,0.817024,0.969718,0.0638644,0.448914,0.871122,0.453766,0.837384,0.364657,0.593668,0.91438,0.447843,0.28236,0.957035,0.0475532,0.352651,0.110915,0.604748,0.676101,0.0483434,0.159629,0.704615,0.406567,0.485541,0.24435,0.886612,0.87146,0.783034,0.124574,0.120272,0.0544901,0.203258,0.0398529,0.405164,0.0876307,0.881386,0.686415,0.2541,0.908758,0.361679,0.412798,0.751348,0.555122,0.851775,0.755587,0.203112,0.861306,0.633674,0.788838,0.443971,0.176684,0.893752,0.515806,0.790885,0.0330393,0.936334,0.930715,0.341835,0.96868,0.476456,0.0604284,0.428609,0.764404,0.112956,0.184757,0.208061,0.684283,0.231641,0.533318,0.563675,0.682886,0.148718,0.568477,0.0137341,0.132253,0.0450256,0.745866,0.363512,0.137711,0.820792,0.53552,0.330787,0.00279599,0.46154,0.582438,0.273931,0.337186,0.366377,0.506151,0.365236,0.0911745,0.249733,0.324131,0.471483,0.480675,0.948418,0.132605,0.178316,0.578396,0.85397,0.370883,0.449279,0.273466,0.789361,0.503632,0.41612,0.194931,0.460476,0.0458717,0.198276,0.996477,0.171983,0.21673,0.802117,0.0340073,0.309378,0.458103,0.477217,0.495299,0.60168,0.791699,0.863701,0.400359,0.148849,0.710372,0.778206,0.750262,0.6027,0.231753,0.97794,0.280493,0.831227,0.0302844,0.932144,0.2885,0.316848,0.777743,0.254556,0.556782,0.855446,0.514726,0.824136,0.427599,0.904846,0.640063,0.778579,0.522535,0.218495,0.783417,0.932393,0.64951,0.0949076,0.467864,0.313911,0.276263,0.307158,0.519499,0.951786,0.980322,0.763833,0.423132,0.0347926,0.173148,0.151894,0.691648,0.400388,0.0478153,0.107557,0.0662684,0.854398,0.638582,0.1211,0.333137,0.767976,0.319385,0.122934,0.794367,0.344777,0.667934,0.252138,0.664463,0.530004,0.765199,0.188853,0.258126,0.0806924,0.159595,0.396293,0.886866,0.639526,0.51428,0.803874,0.941503,0.535032,0.397193,0.346223,0.0603428,0.432128,0.895035,0.304925,0.285846,0.410178,0.88399,0.651179,0.418873,0.748587,0.791121,0.743734,0.417581,0.016948,0.373787,0.0085032,0.771479,0.609925,0.206036,0.0708414,0.731762,0.362192,0.272282,0.842059,0.37676,0.837583,0.981834,0.996546,0.586358,0.039085,0.487314,0.74049,0.201173,0.457535,0.0704406,0.244269,0.73767,0.506411,0.306438,0.24429,0.323599,0.83743,0.7302,0.383425,0.523663,0.0867299,0.611253,0.695101,0.938455,0.594042,0.302926,0.426611,0.202078,0.155954,0.678563,0.954854,0.0242872,0.130723,0.959394,0.560953,0.880806,0.862253,0.436846,0.628231,0.738758,0.23306,0.109125,0.42274,0.998224,0.26895,0.482435,0.764318,0.648694,0.488451,0.811255,0.220287,0.601874,0.97819,0.779607,0.0928915,0.00732082,0.968495,0.512724,0.247481,0.774227,0.999844,0.48743,0.391318,0.25858,0.760979,0.303933,0.924327,0.329554,0.831223,0.0706002,0.237947,0.893347,0.635274,0.385886,0.340998,0.255143,0.986314,0.55232,0.870646,0.78532,0.641569,0.656276,0.454824,0.821939,0.946558,0.284025,0.171975,0.284057,0.106073,0.687927,0.351573,0.523701,0.212162,0.425656,0.0399162,0.0419471,0.477113,0.666071,0.15047,0.0751777,0.557635,0.641419,0.979367,0.73306,0.850652,0.305509,0.850772,0.174246,0.483859,0.271148,0.782763,0.871914,0.539772,0.919448,0.901095,0.191787,0.19368,0.137104,0.661135,0.398496,0.419134,0.469246,0.826668,0.808038,0.169917,0.169059,0.596564,0.527927,0.190765,0.254996,0.681668,0.36559,0.859768,0.530473,0.140223,0.949979,0.315359,0.911907,0.356557,0.286959,0.247294,0.826689,0.321484,0.349056,0.668584,0.590336,0.926239,0.80195,0.308822,0.42735,0.639458,0.554402,0.596821,0.804364,0.861885,0.658392,0.376932,0.117137,0.179593,0.811748,0.990374,0.216587,0.539528,0.797414,0.738815,0.596047,0.969263,0.869459,0.0754672,0.896037,0.794985,0.417331,0.590688,0.614261,0.290694,0.278538,0.453081,0.0320739,0.579245,0.8332,0.384514,0.95474,0.205364,0.984464,0.955808,0.926517,0.426513,0.9091,0.491849,0.049176,0.717794,0.395981,0.161279,0.387322,0.747985,0.390826,0.372995,0.53485,0.568254,0.832178,0.913342,0.714759,0.334849,0.0578769,0.682741,0.859935,0.674387,0.904496,0.29657,0.640411,0.880381,0.642056,0.152744,0.751372,0.93188,0.380235,0.408404,0.313463,0.726714,0.388096,0.161746,0.153338,0.058292,0.940893,0.880386,0.772262,0.196355,0.0660992,0.399761,0.375356,0.693166,0.893795,0.35686,0.979701,0.84944,0.839505,0.103409,0.449257,0.937331,0.990047,0.185879,0.212015,0.989465,0.655982,0.706121,0.54149,0.251086,0.970669,0.470169,0.726478,0.740701,0.507168,0.700107,0.00134057,0.348774,0.642396,0.848694,0.094997,0.536104,0.415871,0.178786,0.810892,0.0861876,0.240166,0.600899,0.0289305,0.638651,0.755217,0.768384,0.18166,0.400155,0.84029,0.0207736,0.060523,0.337187,0.762235,0.69329,0.434401,0.517412,0.922498,0.153803,0.284331,0.954138,0.780173,0.29657,0.0981373,0.644735,0.699926,0.876319,0.578152,0.742932,0.530176,0.115225,0.218092,0.262913,0.22325,0.0595711,0.147872,0.508325,0.345104,0.170755,0.771784,0.586952,0.784887,0.553826,0.603968,0.217802,0.907101,0.55889,0.966423,0.571293,0.884722,0.535241,0.250481,0.766228,0.725872,0.666071,0.893432,0.598645,0.829568,0.660493,0.0951828,0.833605,0.486528,0.622487,0.618042,0.0922709,0.0190763,0.363768,0.943991,0.893124,0.102092,0.372981,0.868597,0.281,0.526384,0.790013,0.580955,0.811473,0.104294,0.63533,0.339995,0.301468,0.762381,0.0574489,0.866502,0.376104,0.277757,0.850801,0.106052,0.732921,0.978862,0.279666,0.809141,0.524509,0.51608,0.014236,0.403919,0.955105,0.347884,0.700465,0.0645856,0.181759,0.775284,0.459353,0.149549,0.179932,0.378366,0.183501,0.533078,0.459802,0.361133,0.0610337,0.985048,0.249726,0.602581,0.0879955,0.34919,0.53121,0.0544254,0.746748,0.873151,0.0557683,0.627304,0.682706,0.0302345,0.4447,0.85777,0.441865,0.487017,0.876079,0.843432,0.4907,0.47673,0.533219,0.273013,0.549384,0.507019,0.391708,0.468735,0.837547,0.672209,0.668531,0.97217,0.66833,0.82425,0.774845,0.294316,0.336373,0.550931,0.373579,0.239374,0.336017,0.788107,0.611478,0.660552,0.186347,0.221606,0.44011,0.268397,0.0255326,0.685406,0.367384,0.880938,0.88048,0.420048,0.528567,0.501207,0.455594,0.936682,0.894525,0.683183,0.315467,0.480723,0.119287,0.599341,0.516916,0.744429,0.697196,0.946028,0.103053,0.469938,0.403726,0.625888,0.296793,0.548792,0.647401,0.801105,0.752303,0.178977,0.240277,0.631052,0.686584,0.554104,0.838964,0.0366394,0.277668,0.379797,0.106518,0.528376,0.571313,0.236617,|0.30074,0.89172,0.212998,0.201445,0.634589,0.608801,0.353096,0.844009,0.34144,0.172616,0.401945,0.639705,0.526526,0.719484,0.361496,0.421502,0.845408,0.0499623,0.194926,0.848023,0.609605,0.193018,0.483741,0.835079,0.735384,0.700097,0.810064,0.711594,0.85278,0.381069,0.674465,0.171856,0.996684,0.054322,0.156947,0.898236,0.625441,0.504198,0.787832,0.988303,0.0267039,0.372812,0.988073,0.188667,0.826772,0.0296055,0.956137,0.778003,0.219344,0.588341,0.249647,0.665513,0.540529,0.811985,0.505318,0.295939,0.767835,0.312124,0.641271,0.145131,0.328579,0.0227184,0.291075,0.764713,0.684316,0.573057,0.327839,0.390181,0.298793,0.981486,0.364958,0.0714906,0.465362,0.605708,0.591223,0.607953,0.081497,0.119521,0.346392,0.0144307,0.923301,0.522472,0.606862,0.680347,0.956162,0.241433,0.448506,0.656497,0.964234,0.236499,0.189382,0.391555,0.538828,0.492533,0.117584,0.793208,0.9009,0.224657,0.680009,0.739918,0.204492,0.53113,0.784979,0.853514,0.555627,0.943452,0.830514,0.552695,0.699886,0.174968,0.543524,0.897688,0.35416,0.947251,0.172401,0.833324,0.180416,0.353342,0.861203,0.300954,0.323216,0.320799,0.741955,0.213397,0.982617,0.702696,0.305168,0.92361,0.436161,0.413323,0.785251,0.0871063,0.880673,0.180743,0.682178,0.565948,0.864712,0.474319,0.244511,0.766635,0.197997,0.897767,0.754205,0.124282,0.133882,0.497873,0.449687,0.781075,0.0110641,0.572769,0.797646,0.757839,0.422417,0.612895,0.000303149,0.403549,0.859157,0.734607,0.467274,0.455757,0.669555,0.57651,0.301697,0.969678,0.27679,0.767348,0.570603,0.476936,0.980708,0.736549,0.292015,0.434768,0.710261,0.360442,0.203893,0.695588,0.889263,0.31074,0.546334,0.831757,0.084523,0.879086,0.145715,0.535994,0.202967,0.307454,0.714224,0.878935,0.37216,0.56388,0.510527,0.184487,0.988848,0.747978,0.98648,0.88141,0.628485,0.385763,0.99853,0.236527,0.9919,0.790529,0.520417,0.0731688,0.731168,0.316612,0.78643,0.804842,0.941748,0.816418,0.160076,0.919987,0.389445,0.392002,0.292431,0.588972,0.173071,0.619734,0.998864,0.245537,0.0850589,0.0878868,0.159111,0.315122,0.00706452,0.70443,0.603728,0.442658,0.488088,0.62809,0.0114944,0.810647,0.686062,0.528212,0.771692,0.871585,0.616431,0.275958,0.0583515,0.333583,0.145102,0.305707,0.599652,0.953247,0.518837,0.383779,0.230737,0.595244,0.384953,0.756055,0.548716,0.192383,0.754892,0.419713,0.684271,0.757369,0.702667,0.468254,0.850063,0.237885,0.0387284,0.494305,0.69593,0.114532,0.474801,0.628154,0.0526697,0.725707,0.450265,0.361725,0.101684,0.421846,0.0621814,0.332832,0.792114,0.989435,0.248673,0.235966,0.617604,0.60123,0.660824,0.744916,0.156232,0.39027,0.720578,0.83311,0.983211,0.796359,0.75422,0.954209,0.187853,0.709061,0.274372,0.617242,0.2925,0.227251,0.59996,0.353302,0.125499,0.502663,0.673115,0.75188,0.212191,0.220018,0.338016,0.851704,0.912154,0.915355,0.768814,0.162436,0.75926,0.402417,0.750825,0.324292,0.849775,0.0872524,0.232232,0.654675,0.241481,0.708898,0.582491,0.484043,0.724361,0.885297,0.291123,0.335021,0.354008,0.00465137,0.318528,0.636454,0.970999,0.312235,0.122967,0.645736,0.918372,0.592544,0.412424,0.505554,0.839102,0.539908,0.946045,0.218302,0.765612,0.27435,0.564454,0.590181,0.564586,0.855833,0.45547,0.192937,0.983826,0.14852,0.940752,0.648541,0.770272,0.104422,0.208275,0.656949,0.59385,0.687204,0.239248,0.506014,0.798475,0.592575,0.129173,0.514799,0.959588,0.77018,0.215804,0.727884,0.753816,0.767961,0.993656,0.0500793,0.221577,0.781545,0.909783,0.0330926,0.27536,0.242259,0.0880674,0.321947,0.0523562,0.976439,0.0975158,0.621907,0.141922,0.868193,0.659259,0.637428,0.0655492,0.942169,0.723731,0.105526,0.190093,0.365373,0.371521,0.146779,0.751057,0.193509,0.681114,0.995371,0.962541,0.379123,0.356441,0.696631,0.0695033,0.330943,0.183114,0.671087,0.346424,0.00418538,0.692376,0.562832,0.696994,0.349911,0.391545,0.872312,0.319619,0.305677,0.663096,0.228394,0.880615,0.483652,0.450762,0.666425,0.796003,0.796817,0.0443817,0.914855,0.838573,0.128939,0.882849,0.966671,0.166301,0.199601,0.990088,0.053295,0.997121,0.462568,0.249489,0.128133,0.92422,0.0372353,0.965172,0.296364,0.876465,0.204592,0.453464,0.741068,0.298917,0.344249,0.985294,0.252206,0.545629,0.711523,0.946456,0.251587,0.808959,0.0185781,0.783993,0.311298,0.0772933,0.666247,0.463859,0.348868,0.366708,0.546442,0.914931,0.189448,0.378054,0.527665,0.89693,0.985572,0.242624,0.108197,0.729523,0.357866,0.377063,0.320505,0.809878,0.625704,0.9032,0.771826,0.357883,0.438748,0.534908,0.757873,0.898185,0.805258,0.795682,0.653963,0.127309,0.0981362,0.890944,0.546593,0.28911,0.0438111,0.238584,0.261456,0.393536,0.650956,0.0405336,0.879002,0.11545,0.222581,0.0984619,0.648079,0.49581,0.537572,0.0600283,0.580115,0.603352,0.510227,0.679912,0.570916,0.855932,0.84409,0.750306,0.797706,0.917808,0.70443,0.682881,0.653271,0.851436,0.59947,0.353278,0.392474,0.972799,0.409688,0.102916,0.839722,0.728754,0.276191,0.864709,0.61209,0.747253,0.113362,0.853458,0.00934553,0.138142,0.0436619,0.726365,0.374585,0.212259,0.731666,0.942834,0.581249,0.40198,0.702725,0.0501011,0.813463,0.196271,0.280593,0.882796,0.14519,0.08112,0.908465,0.0575452,0.239802,0.117937,0.534469,0.0931825,0.202438,0.510129,0.0384513,0.856241,0.437138,0.239671,0.139472,0.29322,0.442735,0.728263,0.647773,0.107826,0.0405076,0.293104,0.276656,0.434972,0.961854,0.0639156,0.637023,0.262107,0.0497816,0.670537,0.452225,0.940483,0.580584,0.546414,0.992773,0.23655,0.696021,0.333003,0.467056,0.931212,0.580407,0.165883,0.879788,0.903925,0.369409,0.334587,0.28338,0.62421,0.215221,0.922161,0.503966,0.528024,0.611649,0.00165051,0.995234,0.213021,0.0470681,0.995405,0.574485,0.979181,0.734732,0.212629,0.0946404,0.091719,0.35179,0.564669,0.110885,0.152259,0.350416,0.724303,0.363136,0.781227,0.278845,0.615971,0.551348,0.555441,0.631652,0.430034,0.0663205,0.27033,0.315483,0.531695,0.478021,0.520179,0.411281,0.168404,0.661679,0.126656,0.848987,0.161558,0.444594,0.42309,0.488362,0.685861,0.707928,0.882813,0.960943,0.347314,0.678468,0.27705,0.989857,0.716856,0.301193,0.485821,0.633297,0.192199,0.920812,0.0108397,0.259493,0.0869874,0.26034,0.177985,0.110592,0.788743,0.950716,0.289374,0.46918,0.261824,0.271716,0.0483968,0.275688,0.234354,0.122704,0.136226,0.182024,0.131396,0.938941,0.289528,0.418589,0.147014,0.644245,0.593396,0.227332,0.294072,0.351044,0.823509,0.185199,0.781175,0.59532,0.182735,0.00927907,0.917164,0.859688,0.59606,0.712371,0.0166046,0.103935,0.211558,0.0271658,0.0544168,0.879236,0.876125,0.913742,0.805844,0.33739,0.585081,0.912614,0.223247,0.200019,0.554738,0.32738,0.0147013,0.456947,0.616624,0.521083,0.739012,0.476527,0.194227,0.873476,0.895539,0.787033,0.261837,0.993494,0.477476,0.526247,0.968853,0.462282,0.720514,0.270858,0.653639,0.118526,0.27896,0.0189648,0.549127,0.504849,0.658074,0.310859,0.10737,0.905831,0.724858,0.126417,0.845347,0.0869859,0.0808139,0.958014,0.160881,0.580184,0.909416,0.389376,0.723117,0.976972,0.377854,0.658226,0.430024,0.842027,0.187878,0.171387,0.622191,0.861548,0.944772,0.455624,0.449532,0.277793,0.530108,0.867621,0.57884,0.101438,0.787846,0.456223,0.45407,0.00971013,0.682478,0.261247,0.711916,0.276215,0.422551,0.338489,0.351435,0.297342,0.0154791,0.383583,0.260742,0.598843,0.185641,0.260365,0.56986,0.132533,0.706268,0.360608,0.949542,0.567626,0.899592,0.448073,0.885087,0.00103623,0.270834,0.56849,0.372386,0.422532,0.973414,0.0659723,0.654855,0.966254,0.0643558,0.363483,0.142082,0.0255294,0.975107,0.365196,0.378147,0.751333,0.242167,0.896593,0.00262052,0.41575,0.0155592,0.461517,0.533475,0.469055,0.933555,0.899196,0.632327,0.0918126,0.141531,0.666945,0.122012,0.952521,0.62585,0.590042,0.975913,0.348897,0.822344,0.66621,0.300342,0.208598,0.969296,0.629836,0.00709665,0.406486,0.521913,0.450259,0.116441,0.69361,0.819623,0.643327,0.0892702,0.195365,0.500906,0.11017,0.976592,0.8822,0.0298933,0.380105,0.950022,0.403306,0.118556,0.947829,0.843624,0.442221,0.563635,0.834214,5.54323e-06,0.535259,0.335787,0.104214,0.380203,0.0423977,0.247552,0.461871,0.534893,0.546461,0.171681,0.949948,0.579258,0.962037,0.723667,0.7434,0.980958,0.502038,0.602234,0.979023,0.383697,0.415967,0.118514,0.915734,0.596314,0.589896,0.986128,0.293548,0.425957,0.916495,0.569792,0.294666,0.912226,0.213268,0.622643,0.836792,0.316263,0.734489,0.585088,0.737196,0.797002,0.422061,0.501991,0.19004,0.89511,0.257923,0.499049,0.52185,0.793917,0.0809737,0.323937,0.89843,0.633204,0.130654,0.27399,0.327524,0.591375,0.626233,0.0653715,0.169925,0.543542,0.974858,0.348878,0.718812,0.329475,0.380206,0.720992,0.781923,0.180456,0.848647,0.931492,0.618071,0.910099,0.703642,0.706329,0.407646,0.408511,0.181319,0.511308,0.468465,0.0624483,0.29134,0.895996,0.590506,0.244201,0.286888,0.584106,0.861829,0.404289,0.516911,0.632696,0.314877,0.707124,0.96252,0.408543,0.0787731,0.337873,0.385807,0.406639,0.804553,0.698836,0.6344,0.293743,0.866434,0.833299,0.0481188,0.770597,0.812617,0.371986,0.776856,0.24666,0.0296029,0.395655,0.445513,0.799456,0.105411,0.261098,0.852936,0.0112783,0.519321,0.196331,0.452662,0.351759,0.123932,0.939916,0.0308287,0.0306132,0.903075,0.502216,0.493031,0.968137,0.52661,0.242102,0.0941746,|0.134202,0.613568,0.896466,0.578421,0.201492,0.919545,0.382076,0.339747,0.447281,0.277541,0.550688,0.193377,0.666363,0.259954,0.575116,0.859508,0.916243,0.728853,0.912098,0.843277,0.886395,0.665882,0.507505,0.621987,0.399118,0.635078,0.816987,0.354912,0.367472,0.208445,0.724782,0.664441,0.92989,0.892407,0.376186,0.659124,0.542092,0.412842,0.118781,0.950028,0.204878,0.445617,0.516096,0.788664,0.360276,0.983138,0.754352,0.656672,0.737123,0.30578,0.7934,0.388021,0.257877,0.0170634,0.848509,0.454189,0.311522,0.397497,0.375899,0.498915,0.681751,0.325097,0.868513,0.643536,0.971006,0.759812,0.747713,0.9324,0.646041,0.412479,0.743472,0.547681,0.209581,0.0578979,0.47263,0.426428,0.825075,0.301597,0.586675,0.106248,0.372573,0.807404,0.67741,0.796126,0.961086,0.0292967,0.691181,0.969853,0.196118,0.0467874,0.322978,0.353045,0.447409,0.341546,0.529671,0.277599,0.4308,0.660155,0.919741,0.939605,0.210243,0.686539,0.899419,0.446212,0.423537,0.733253,0.619074,0.0782456,0.453917,0.192284,0.810687,0.538062,0.283756,0.577582,0.32293,0.185518,0.14438,0.700896,0.359633,0.275174,0.0567202,0.073245,0.404382,0.394091,0.0129271,0.576977,0.0560146,0.257373,0.538074,0.430401,0.0311394,0.198763,0.293418,0.344593,0.0546529,0.669583,0.508166,0.863849,0.552687,0.626616,0.631433,0.992762,0.897017,0.746417,0.743412,0.0121132,0.911023,0.273614,0.183149,0.255183,0.00438672,0.256524,0.844159,0.624176,0.478922,0.914879,0.383979,0.684115,0.628733,0.18315,0.178248,0.362924,0.93623,0.543139,0.535083,0.980762,0.807184,0.129228,0.0469004,0.285851,0.988155,0.43258,0.176652,0.801249,0.704454,0.507001,0.286878,0.123181,0.258195,0.82022,0.417778,0.339909,0.0947522,0.866741,0.707343,0.120623,0.934003,0.510325,0.0441055,0.547977,0.847045,0.375432,0.408405,0.278458,0.71387,0.497221,0.764987,0.579975,0.376663,0.15474,0.181683,0.601261,0.510224,0.220606,0.300451,0.734388,0.0808225,0.693907,0.900237,0.0601304,0.160952,0.597851,0.802315,0.970749,0.779859,0.0588906,0.342985,0.193987,0.733833,0.694432,0.305963,0.89132,0.919035,0.211637,0.392375,0.07465,0.0571906,0.224402,0.53542,0.188046,0.124228,0.948524,0.313293,0.403583,0.927055,0.949594,0.835771,0.167105,0.225648,0.937416,0.354167,0.29926,0.683557,0.775453,0.343248,0.336362,0.582646,0.87782,0.465266,0.89077,0.157199,0.186549,0.273802,0.148886,0.764393,0.468325,0.359355,0.283519,0.0172253,0.570477,0.201458,0.564567,0.49136,0.401877,0.535613,0.960463,0.908866,0.833097,0.718707,0.159124,0.648396,0.310125,0.821775,0.350919,0.347447,0.0649355,0.67013,0.452849,0.640746,0.241207,0.760861,0.452683,0.0985538,0.840439,0.01685,0.650889,0.368984,0.827357,0.276453,0.674793,0.661132,0.84405,0.792442,0.788201,0.846946,0.646191,0.0638611,0.925872,0.0162561,0.0846386,0.435131,0.119249,0.574503,0.576546,0.453232,0.838614,0.699789,0.813007,0.620217,0.847167,0.483555,0.595257,0.269136,0.808474,0.808354,0.734293,0.517784,0.105762,0.795474,0.791656,0.299627,0.966918,0.795741,0.0846833,0.0462054,0.855888,0.439979,0.551178,0.816063,0.0213099,0.802574,0.208807,0.716321,0.556867,0.601996,0.0626209,0.154859,0.511119,0.912338,0.00873232,0.334083,0.454367,0.748008,0.865462,0.900249,0.712225,0.182969,0.650207,0.558215,0.667689,0.141852,0.641881,0.630696,0.174944,0.779905,0.785122,0.412666,0.037519,0.762655,0.625451,0.839267,0.632647,0.86722,0.520997,0.374074,0.387297,0.603031,0.0239152,0.714006,0.331965,0.390553,0.120262,0.145826,0.777671,0.626629,0.64707,0.174231,0.777641,0.464646,0.870044,0.82147,0.352814,0.852308,0.983728,0.835124,0.569096,0.168535,0.205507,0.342188,0.98797,0.386522,0.137017,0.510621,0.233535,0.149856,0.64498,0.300799,0.47457,0.168944,0.530299,0.654244,0.0166749,0.135722,0.684346,0.911874,0.482011,0.0388731,0.305457,0.556077,0.533946,0.0962445,0.397841,0.660458,0.67055,0.296021,0.167505,0.667795,0.339851,0.80609,0.0672665,0.599522,0.26021,0.947072,0.916988,0.643565,0.764448,0.208847,0.869876,0.46638,0.81136,0.588864,0.718051,0.387095,0.00761461,0.297825,0.25443,0.0918543,0.546042,0.169717,0.942798,0.931091,0.531523,0.659815,0.232336,0.377323,0.17005,0.269647,0.0811501,0.410376,0.217855,0.0544033,0.853032,0.308376,0.133886,0.844406,0.351168,0.856124,0.537076,0.819857,0.863477,0.402196,0.580447,0.971972,0.219819,0.37424,0.195325,0.897772,0.108257,0.0926204,0.00995004,0.864353,0.055915,0.393412,0.695144,0.272089,0.889344,0.228127,0.715553,0.370975,0.938187,0.210985,0.536892,0.00342917,0.353686,0.0583779,0.145249,0.983241,0.265757,0.304045,0.1852,0.473385,0.709073,0.234884,0.611366,0.0267667,0.62139,0.896991,0.0599698,0.289249,0.0248982,0.54406,0.371498,0.595847,0.0818419,0.771716,0.622598,0.651007,0.735778,0.631626,0.200722,0.874416,0.476429,0.083703,0.72833,0.626201,0.279662,0.0537196,0.337259,0.886571,0.418482,0.509963,0.411272,0.0672829,0.886962,0.735091,0.432806,0.740781,0.226339,0.203068,0.139865,0.629636,0.919665,0.656579,0.553813,0.789092,0.116947,0.744466,0.492026,0.0473663,0.00209612,0.598898,0.235608,0.271953,0.521863,0.929082,0.377223,0.109127,0.938401,0.458945,0.306031,0.122588,0.651737,0.110493,0.749916,0.247286,0.882209,0.301115,0.130948,0.332412,0.159404,0.838526,0.0556977,0.0374507,0.819562,0.900003,0.114958,0.87585,0.23435,0.718412,0.994604,0.612079,0.478565,0.180768,0.580148,0.64795,0.796757,0.0653856,0.0738118,0.129096,0.364001,0.719826,0.0258466,0.292616,0.955017,0.833554,0.412602,0.167755,0.125171,0.648658,0.835967,0.394175,0.855197,0.406209,0.384579,0.242055,0.245845,0.788021,0.564506,0.636232,0.610462,0.209278,0.998296,0.138196,0.081388,0.899079,0.560342,0.747017,0.774824,0.149538,0.374767,0.889112,0.541426,0.0978978,0.140917,0.360065,0.767872,0.909181,0.385082,0.739206,0.986147,0.440559,0.709052,0.744497,0.854723,0.261679,0.436014,0.28579,0.880605,0.753747,0.967018,0.470808,0.364182,0.112795,0.147996,0.698692,0.576928,0.367324,0.703732,0.40455,0.353693,0.10946,0.870599,0.753927,0.208754,0.24292,0.613498,0.201101,0.830222,0.81648,0.200125,0.0819977,0.75555,0.0276324,0.0753426,0.0969216,0.00830942,0.607905,0.0514036,0.614955,0.0132347,0.667704,0.873393,0.948044,0.299672,0.414205,0.474937,0.580074,0.798125,0.576631,0.613879,0.6187,0.681555,0.79116,0.465311,0.603237,0.753091,0.573918,0.241831,0.53196,0.296201,0.107539,0.0528934,0.555285,0.679128,0.917791,0.951307,0.123477,0.671088,0.803399,0.406385,0.38383,0.930389,0.0297506,0.155119,0.170529,0.69971,0.0507488,0.182812,0.0234932,0.624465,0.835999,0.900988,0.887343,0.635909,0.86893,0.855193,0.76994,0.899853,0.0547834,0.833615,0.534568,0.184425,0.779418,0.175594,0.324656,0.808214,0.138309,0.246618,0.0892317,0.225124,0.0862061,0.759724,0.111038,0.313635,0.262501,0.763104,0.777873,0.612134,0.522994,0.16761,0.614307,0.255686,0.613069,0.393631,0.0977636,0.150111,0.0593511,0.518816,0.709373,0.574254,0.0567919,0.834489,0.434864,0.319254,0.947824,0.775524,0.492728,0.596618,0.256306,0.672062,0.472554,0.326083,0.944202,0.573675,0.0164129,0.23558,0.496864,0.35808,0.76429,0.106267,0.967439,0.763032,0.199299,0.225359,0.767608,0.856942,0.174549,0.488039,0.396795,0.443893,0.808437,0.546838,0.663084,0.105542,0.473937,0.471198,0.0725154,0.815105,0.700387,0.375069,0.522787,0.538369,0.870704,0.921391,0.85599,0.167455,0.603063,0.509884,0.220263,0.914398,0.244254,0.912399,0.547859,0.130687,0.458853,0.702193,0.973449,0.510046,0.484074,0.327911,0.255573,0.253681,0.0326331,0.0213113,0.73614,0.794448,0.149618,0.319462,0.106433,0.0179116,0.5671,0.83397,0.748047,0.0992758,0.976222,0.406243,0.394628,0.621136,0.945053,0.128037,0.387769,0.781641,0.395805,0.0861423,0.935494,0.913997,0.122107,0.348915,0.482051,0.807741,0.326947,0.200864,0.271572,0.755429,0.952501,0.797859,0.838821,0.423897,0.147103,0.555364,0.627673,0.114706,0.967108,0.184964,0.368325,0.597014,0.967264,0.691994,0.676543,0.919247,0.929889,0.985708,0.229868,0.139868,0.206865,0.7177,0.0161455,0.224864,0.852579,0.0952617,0.307329,0.904761,0.476404,0.499503,0.912994,0.523234,0.428406,0.2021,0.00140411,0.503612,0.338438,0.899861,0.262574,0.740188,0.224425,0.724114,0.832913,0.576154,0.687833,0.20182,0.513711,0.11528,0.205095,0.764795,0.916931,0.396352,0.432313,0.928157,0.965861,0.238488,0.754075,0.84624,0.411343,0.616174,0.520429,0.159821,0.379333,0.342227,0.391132,0.388552,0.568314,0.0993348,0.238817,0.348153,0.0200578,0.71202,0.262629,0.885641,0.2214,0.706486,0.408669,0.965702,0.779147,0.77712,0.838933,0.515531,0.27636,0.483783,0.775713,0.587378,0.419881,0.0654415,0.0768267,0.352427,0.0208251,0.509722,0.103689,0.967524,0.846264,0.0978959,0.871218,0.0659995,0.713707,0.31748,0.949513,0.966072,0.479542,0.586912,0.266748,0.225248,0.155254,0.856136,0.233727,0.56032,0.598826,0.597347,0.562947,0.547674,0.605512,0.624588,0.422979,0.755153,0.212515,0.658264,0.351831,0.234637,0.397509,0.696676,0.634578,0.0482014,0.9642,0.0412292,0.685289,0.348952,0.0432954,0.772274,0.651551,0.917656,0.157367,0.714662,0.604148,0.732737,0.366379,0.0845857,0.446817,0.432963,0.954778,0.379657,0.402187,0.358603,0.404649,0.779782,0.98673,0.0530629,0.610499,0.658853,0.929431,0.0721288,0.81329,0.272878,0.116362,0.00697213,0.60099,0.336483,0.0343726,0.389683,0.941129,0.366607,0.409944,0.702133,|0.434396,0.181087,0.425012,0.156956,0.72307,0.0164179,0.518386,0.178694,0.730842,0.748516,0.187541,0.175223,0.701639,0.390369,0.585971,0.32129,0.963038,0.981479,0.681266,0.693418,0.554991,0.816033,0.730089,0.489302,0.635085,0.495619,0.770987,0.94011,0.083569,0.307612,0.204082,0.49559,0.159585,0.947983,0.279561,0.0424073,0.845354,0.0829173,0.873175,0.340906,0.851115,0.891892,0.743447,0.749297,0.813799,0.896312,0.719287,0.784899,0.239076,0.393923,0.00421572,0.0276538,0.387775,0.43739,0.142837,0.804601,0.366756,0.904872,0.582876,0.0371414,0.887063,0.0966642,0.0623768,0.961024,0.916955,0.181031,0.746171,0.338898,0.103655,0.6734,0.000927687,0.017457,0.161157,0.688868,0.987011,0.19646,0.18635,0.762524,0.387863,0.851051,0.38759,0.849643,0.326849,0.868795,0.0684949,0.133329,0.0641983,0.894911,0.116662,0.718227,0.596779,0.00371403,0.302327,0.479077,0.483884,0.71902,0.228919,0.047981,0.0602748,0.173184,0.452436,0.440337,0.464259,0.457978,0.211229,0.533619,0.821198,0.0501438,0.211507,0.541759,0.041743,0.273048,0.914646,0.998054,0.269993,0.0683429,0.671825,0.327441,0.97533,0.808685,0.564244,0.350114,0.0264313,0.948721,0.502237,0.651196,0.155295,0.117473,0.00522065,0.929485,0.974346,0.760387,0.908902,0.293566,0.0847803,0.302018,0.890579,0.73182,0.381316,0.466653,0.643323,0.953936,0.592285,0.457106,0.39591,0.288888,0.842204,0.299426,0.780122,0.642813,0.639744,0.225173,0.770898,0.217851,0.0399122,0.752048,0.477865,0.855973,0.947857,0.269494,0.998927,0.986301,0.728942,0.709241,0.402552,0.00685036,0.87881,0.0934536,0.00144649,0.572344,0.096861,0.0752108,0.567239,0.585461,0.577803,0.572857,0.834002,0.200807,0.318187,0.67406,0.860452,0.248776,0.640521,0.616661,0.478984,0.767965,0.563026,0.328549,0.871477,0.858452,0.150561,0.12989,0.155013,0.272391,0.613047,0.446723,0.162469,0.304758,0.55966,0.307009,0.316706,0.610148,0.315892,0.544516,0.0911428,0.426872,0.523642,0.250003,0.595459,0.347777,0.686152,0.859191,0.284912,0.618122,0.681313,0.873833,0.670294,0.994319,0.1755,0.175179,0.542071,0.877747,0.920758,0.263758,0.964763,0.409487,0.887812,0.793568,0.908644,0.753254,0.699447,0.0938911,0.958575,0.155939,0.633394,0.270034,0.739566,0.092591,0.590522,0.146833,0.401097,0.529749,0.450795,0.935475,0.71048,0.132261,0.292705,0.244771,0.661169,0.967899,0.655987,0.729257,0.0937621,0.0711215,0.542628,0.466724,0.0532515,0.745867,0.794321,0.953209,0.170907,0.205201,0.856232,0.332813,0.913307,0.389814,0.161608,0.0113125,0.543109,0.126426,0.560916,0.252965,0.254836,0.412929,0.943605,0.586977,0.238444,0.571474,0.041901,0.0501173,0.52181,0.511592,0.248102,0.0690821,0.0381827,0.968814,0.29795,0.664845,0.422974,0.0869182,0.707233,0.848772,0.522483,0.376154,0.840089,0.730249,0.710447,0.526802,0.204614,0.58442,0.184478,0.144645,0.744217,0.361233,0.151982,0.301387,0.934249,0.860551,0.724066,0.964793,0.736949,0.0487586,0.594451,0.99456,0.567618,0.958481,0.521231,0.915897,0.0275978,0.379817,0.193424,0.349228,0.108744,0.440001,0.6412,0.893463,0.928239,0.410264,0.754786,0.456189,0.568326,0.443745,0.0700478,0.832929,0.101704,0.423733,0.141378,0.124053,0.986437,0.740736,0.776402,0.631861,0.449855,0.0114036,0.996571,0.191354,0.641441,0.856073,0.452298,0.616775,0.130378,0.0769409,0.52067,0.225605,0.238747,0.389808,0.363249,0.147576,0.84478,0.155738,0.772805,0.556113,0.387627,0.329516,0.954761,0.845158,0.579331,0.564235,0.832773,0.624216,0.808897,0.736867,0.611007,0.131809,0.676525,0.640642,0.957785,0.374383,0.510273,0.756894,0.802162,0.457818,0.377719,0.459008,0.44696,0.87199,0.796663,0.206073,0.804775,0.0431475,0.255058,0.426384,0.0298996,0.299977,0.310339,0.523701,0.0844701,0.32819,0.110641,0.16033,0.910845,0.577618,0.630551,0.052088,0.417147,0.752832,0.690808,0.797656,0.215717,0.217117,0.763541,0.50902,0.551571,0.84635,0.433824,0.534779,0.0235837,0.923706,0.256051,0.404722,0.850624,0.225068,0.158126,0.543983,0.0620093,0.101241,0.119378,0.940796,0.861198,0.959201,0.690168,0.782393,0.62021,0.374482,0.234693,0.874568,0.585823,0.432762,0.197178,0.962285,0.621766,0.312988,0.423396,0.951328,0.803051,0.0320554,0.681988,0.639262,0.319319,0.237291,0.810759,0.233549,0.686354,0.638399,0.0999122,0.450206,0.495231,0.754097,0.182976,0.752345,0.793469,0.982519,0.0173409,0.691733,0.537828,0.531547,0.0718326,0.608265,0.334351,0.893298,0.947834,0.0161023,0.822531,0.0574934,0.736523,0.850399,0.550897,0.148855,0.750088,0.61684,0.659915,0.0580046,0.441793,0.201385,0.156001,0.943124,0.419053,0.425606,0.244226,0.0956595,0.290731,0.014086,0.951659,0.927145,0.480932,0.819396,0.39636,0.247091,0.470906,0.555656,0.71817,0.578473,0.934752,0.188677,0.0741999,0.952074,0.55639,0.183317,0.499789,0.930251,0.544248,0.124893,0.300026,0.0325553,0.981452,0.511775,0.0728943,0.358631,0.714962,0.953097,0.438186,0.432969,0.776774,0.24034,0.858804,0.643367,0.21804,0.031121,0.692195,0.297375,0.0155861,0.0751917,0.134497,0.66329,0.974326,0.581692,0.320777,0.188704,0.809835,0.139338,0.793782,0.13394,0.254643,0.422653,0.656532,0.720625,0.674984,0.272288,0.137514,0.544794,0.335984,0.949884,0.31355,0.753255,0.155093,0.148553,0.646288,0.853442,0.735239,0.736486,0.281799,0.454049,0.385062,0.927759,0.463044,0.0338582,0.826254,0.398048,0.155781,0.266351,0.00877249,0.715981,0.4832,0.471317,0.332262,0.618128,0.682951,0.909371,0.619882,0.795348,0.0608248,0.74924,0.633867,0.563633,0.857314,0.0682848,0.909915,0.139588,0.174183,0.394097,0.330254,0.164033,0.273414,0.0648963,0.733407,0.126799,0.0274306,0.488916,0.186381,0.513481,0.352711,0.059397,0.73179,0.842351,0.294555,0.259424,0.0959243,0.319814,0.687223,0.311374,0.197216,0.977381,0.777708,0.954684,0.0519992,0.0853946,0.401753,0.0594472,0.446044,0.598998,0.917831,0.282872,0.68666,0.196422,0.831299,0.771755,0.214868,0.0286269,0.0879523,0.269653,0.486349,0.884801,0.308006,0.564485,0.89863,0.425191,0.0761783,0.212369,0.864514,0.358135,0.585298,0.115944,0.271942,0.21257,0.918392,0.411381,0.375345,0.833202,0.832449,0.701453,0.0977758,0.324542,0.66785,0.930129,0.672187,0.623835,0.428128,0.0563744,0.623803,0.922026,0.51339,0.712896,0.0555282,0.955167,0.287232,0.851187,0.189271,0.356548,0.293867,0.447179,0.110463,0.663466,0.146145,0.339816,0.057072,0.578698,0.933097,0.805722,0.665712,0.311136,0.746268,0.189584,0.937943,0.501337,0.620511,0.330392,0.880457,0.49148,0.495266,0.0189051,0.307986,0.666577,0.414729,0.982234,0.228227,0.144908,0.161733,0.246129,0.953267,0.67411,0.584671,0.984869,0.477354,0.0501456,0.675895,0.1569,0.550504,0.717319,0.455487,0.179229,0.559048,0.0511173,0.859324,0.209071,0.03166,0.470531,0.896798,0.573132,0.421834,0.475449,0.791696,0.379487,0.929407,0.245745,0.307161,0.467408,0.427121,0.949613,0.0427318,0.435678,0.222556,0.107035,0.605704,0.588559,0.0370054,0.946469,0.342364,0.659239,0.598717,0.643776,0.985933,0.341681,0.878313,0.268481,0.569579,0.153197,0.293121,0.736672,0.267073,0.228773,0.0662934,0.996393,0.0603985,0.643067,0.834221,0.0372416,0.444421,0.185903,0.221579,0.39821,0.24196,0.147724,0.946817,0.156616,0.635441,0.372573,0.697716,0.91344,0.469177,0.510341,0.891475,0.878468,0.802592,0.763591,0.99229,0.119886,0.148618,0.875153,0.973108,0.275865,0.06263,0.0404459,0.0426556,0.918414,0.242014,0.889323,0.64844,0.689111,0.14794,0.319015,0.0585968,0.604479,0.132947,0.278541,0.748164,0.424693,0.568077,0.411151,0.687958,0.568646,0.469458,0.450445,0.353422,0.901312,0.194019,0.732828,0.525274,0.310007,0.763551,0.864932,0.954983,0.375753,0.317075,0.135272,0.265003,0.472014,0.177499,0.966303,0.000612676,0.661064,0.784158,0.296283,0.82546,0.169364,0.761143,0.860458,0.106965,0.745867,0.292615,0.546343,0.89809,0.671088,0.983315,0.574934,0.571936,0.913139,0.856386,0.777901,0.826549,0.181066,0.198099,0.0835077,0.517758,0.489564,0.0293267,0.18015,0.0393003,0.177232,0.0897779,0.917705,0.416452,0.434019,0.346614,0.800794,0.442225,0.766783,0.15687,0.751782,0.558323,0.30926,0.833109,0.840304,0.547261,0.586474,0.552111,0.359133,0.523319,0.3505,0.234402,0.619961,0.927942,0.931879,0.90709,0.00157505,0.178324,0.25701,0.0804653,0.928585,0.645665,0.543075,0.679841,0.75689,0.811498,0.313569,0.0656176,0.495227,0.0743819,0.710279,0.411206,0.517929,0.898634,0.587493,0.962162,0.844335,0.546855,0.412433,0.0194612,0.0659292,0.0382795,0.106988,0.254445,0.544908,0.733479,0.208902,0.809117,0.144365,0.51379,0.577398,0.504684,0.423147,0.796867,0.867239,0.881066,0.0928348,0.894337,0.658501,0.796841,0.624279,0.914077,0.466749,0.474687,0.779652,0.977786,0.191452,0.12155,0.88011,0.678931,0.602056,0.0989506,0.213373,0.888768,0.130439,0.422535,0.569645,0.0570739,0.160784,0.764467,0.752996,0.980588,0.933044,0.49512,0.374043,0.968745,0.937028,0.752905,0.982235,0.455287,0.494204,0.424635,0.276557,0.213741,0.755693,0.928864,0.233911,0.175334,0.104351,0.938596,0.526995,0.258913,0.339374,0.939326,0.394717,0.176475,0.36534,0.925529,0.852148,0.570312,0.603761,0.23935,0.562572,0.191708,0.650975,0.710642,0.490417,0.122423,0.321561,0.712822,0.870636,0.235547,0.403673,0.830692,0.314974,0.585984,0.9648,0.185078,0.676033,0.299156,0.793473,0.837166,0.260891,0.968161,0.984226,0.783864,0.109038,0.655708,0.182361,0.513318,0.867557,0.185571,0.827843,|0.918771,0.722794,0.513139,0.302082,0.0390818,0.179237,0.340994,0.023511,0.407509,0.471992,0.403779,0.953977,0.614792,0.592039,0.967665,0.917641,0.220533,0.244824,0.921551,0.380947,0.270561,0.675385,0.659742,0.273249,0.884806,0.976273,0.122219,0.698751,0.427984,0.804134,0.631936,0.739397,0.664316,0.484613,0.145793,0.0164873,0.127684,0.187374,0.159984,0.30939,0.139614,0.311333,0.262177,0.202323,0.978898,0.322992,0.620267,0.882389,0.8103,0.355643,0.783387,0.718391,0.818179,0.315654,0.717275,0.325536,0.287533,0.831491,0.848568,0.941346,0.926428,0.716397,0.801087,0.733005,0.479216,0.780449,0.707474,0.217558,0.010651,0.562025,0.413377,0.731048,0.331869,0.430266,0.344039,0.770388,0.78642,0.463502,0.934839,0.0473483,0.302484,0.837551,0.105234,0.364134,0.764929,0.703627,0.0604188,0.355697,0.928377,0.952608,0.248344,0.214481,0.985364,0.509258,0.287187,0.189671,0.417746,0.627859,0.953105,0.260189,0.407147,0.680782,0.1805,0.857787,0.258406,0.000530422,0.223198,0.322214,0.98115,0.302358,0.594793,0.754959,0.728572,0.741942,0.46531,0.840354,0.626061,0.22419,0.471949,0.914324,0.467625,0.196163,0.471345,0.575555,0.770097,0.0149109,0.728154,0.516876,0.115523,0.575496,0.959451,0.71258,0.599349,0.581804,0.782893,0.778549,0.650899,0.490795,0.458571,0.628701,0.479996,0.116287,0.362475,0.244423,0.476722,0.296761,0.506394,0.939473,0.179425,0.717748,0.0152152,0.872984,0.415175,0.353668,0.105492,0.475196,0.997762,0.1298,0.0216475,0.164064,0.130969,0.0296178,0.19524,0.331984,0.251326,0.199539,0.94187,0.958087,0.160523,0.308263,0.522947,0.0279734,0.355199,0.667207,0.938118,0.764432,0.51686,0.209627,0.338477,0.298322,0.834634,0.240328,0.886525,0.282328,0.177957,0.110759,0.92427,0.13153,0.195745,0.994321,0.0647473,0.822569,0.150394,0.164406,0.130174,0.336237,0.113207,0.299375,0.880835,0.188141,0.81705,0.772363,0.169154,0.751117,0.519106,0.447861,0.397975,0.0010615,0.671487,0.553612,0.538899,0.0474935,0.239578,0.57454,0.401361,0.454044,0.302438,0.835131,0.0670103,0.0712028,0.496896,0.615537,0.577962,0.853656,0.220588,0.975668,0.434096,0.0879799,0.490146,0.673432,0.00498366,0.559266,0.0308605,0.283237,0.446404,0.91539,0.280471,0.0327067,0.941904,0.253516,0.705577,0.373244,0.986327,0.891927,0.758384,0.74555,0.536301,0.929812,0.176747,0.947249,0.149094,0.0596166,0.251739,0.318623,0.496951,0.70009,0.322081,0.168458,0.762035,0.16447,0.263935,0.499287,0.692178,0.176122,0.596515,0.858542,0.450699,0.784706,0.138638,0.656544,0.453628,0.517275,0.436525,0.680898,0.580873,0.874746,0.70065,0.272597,0.42877,0.891875,0.90413,0.919238,0.745235,0.0984389,0.284197,0.0603395,0.666716,0.686347,0.769116,0.685788,0.346314,0.641678,0.200538,0.660719,0.580298,0.776273,0.393159,0.235604,0.320208,0.104233,0.464064,0.13067,0.0480115,0.989841,0.354487,0.0758986,0.515448,0.801248,0.651778,0.943723,0.218704,0.784303,0.336183,0.366353,0.0893092,0.11006,0.754962,0.306204,0.393317,0.470923,0.865683,0.509165,0.855277,0.0644513,0.458008,0.647716,0.27954,0.482226,0.964029,0.69571,0.228586,0.613736,0.687045,0.119476,0.754867,0.795879,0.475349,0.0248896,0.63337,0.926245,0.914218,0.283171,0.0819485,0.640156,0.541799,0.606993,0.815295,0.558759,0.0403329,0.696698,0.646531,0.348749,0.0106821,0.444172,0.52876,0.764533,0.162664,0.502082,0.668129,0.434845,0.269008,0.944426,0.0208165,0.845894,0.897669,0.163713,0.493798,0.730031,0.538895,0.984326,0.345266,0.285372,0.336417,0.46065,0.532921,0.569362,0.176625,0.354928,0.505216,0.716559,0.442379,0.0909568,0.268482,0.343478,0.481801,0.281444,0.377903,0.0879739,0.825791,0.224071,0.594298,0.267113,0.736999,0.509761,0.864661,0.269497,0.317025,0.158082,0.89561,0.0890848,0.186301,0.448935,0.608857,0.810413,0.814487,0.331898,0.428272,0.287195,0.999551,0.246123,0.419146,0.139302,0.85719,0.620594,0.101712,0.815515,0.805187,0.350477,0.0402662,0.286164,0.780482,0.596911,0.318275,0.272649,0.871544,0.39698,0.974157,0.256623,0.52585,0.379401,0.68444,0.234642,0.694081,0.810094,0.120501,0.90927,0.691956,0.949611,0.0765585,0.727241,0.187851,0.376737,0.455727,0.674837,0.863447,0.716918,0.437354,0.498236,0.0176452,0.356381,0.28267,0.235839,0.754966,0.925655,0.63353,0.302163,0.787544,0.862502,0.228854,0.785676,0.654019,0.9013,0.483249,0.969234,0.581774,0.181258,0.289024,0.899461,0.664962,0.159138,0.653433,0.925014,0.271033,0.639219,0.688911,0.42348,0.966912,0.842621,0.937974,0.781169,0.0432082,0.0445424,0.119743,0.659076,0.619682,0.128622,0.0268981,0.32923,0.0244004,0.597616,0.674809,0.0350881,0.390734,0.404652,0.678817,0.999476,0.747095,0.915323,0.0947948,0.189456,0.97078,0.921389,0.583364,0.289119,0.927455,0.402201,0.23798,0.520136,0.909644,0.625277,0.774276,0.0520164,0.595993,0.712742,0.528087,0.903453,0.505266,0.314083,0.873056,0.81121,0.461648,0.444369,0.589189,0.229802,0.686765,0.155559,0.828849,0.4517,0.692661,0.206551,0.507516,0.936214,0.717101,0.418835,0.74079,0.869672,0.269801,0.680479,0.0378283,0.912457,0.859147,0.729783,0.372338,0.983437,0.983424,0.932394,0.0668519,0.86911,0.0816849,0.63635,0.729761,0.262239,0.913744,0.405576,0.197554,0.328016,0.0946991,0.539437,0.0664381,0.633182,0.202458,0.270758,0.00428146,0.0251673,0.464279,0.505815,0.782489,0.513657,0.893267,0.353702,0.342563,0.0295994,0.221937,0.320417,0.311272,0.533536,0.86589,0.00026089,0.503307,0.709468,0.704428,0.0338382,0.27982,0.682579,0.57556,0.752663,0.00595337,0.512721,0.455598,0.556309,0.71053,0.0817014,0.218559,0.707728,0.811057,0.287115,0.0111834,0.56358,0.0607892,0.634897,0.165299,0.119571,0.0296731,0.15145,0.944621,0.666373,0.566502,0.319783,0.293932,0.845247,0.896088,0.62166,0.426917,0.939513,0.149501,0.152388,0.769677,0.654282,0.130373,0.203051,0.0583412,0.668117,0.596893,0.261598,0.657514,0.65994,0.426804,0.494236,0.133011,0.42563,0.65861,0.142735,0.154715,0.425648,0.964912,0.462975,0.277785,0.275277,0.945983,0.498842,0.377909,0.894544,0.832962,0.599522,0.316118,0.54578,0.117322,0.793622,0.718041,0.247253,0.54974,0.163318,0.893155,0.69097,0.358447,0.942124,0.307202,0.045009,0.729223,0.232579,0.909461,0.811003,0.858095,0.980574,0.157477,0.752936,0.809425,0.334117,0.817048,0.312267,0.113404,0.175317,0.962359,0.259459,0.996479,0.835089,0.105644,0.92575,0.572575,0.0842453,0.290895,0.15167,0.953527,0.477079,0.544094,0.317468,0.276965,0.778839,0.464446,0.471866,0.661208,0.0951995,0.0804912,0.756495,0.0532655,0.109405,0.466036,0.502826,0.120235,0.0210143,0.396596,0.0793685,0.507998,0.793071,0.131222,0.285683,0.976347,0.229877,0.573414,0.37932,0.584177,0.271617,0.57482,0.290305,0.911523,0.577068,0.162923,0.275963,0.394223,0.245034,0.593298,0.67591,0.0804392,0.342229,0.48067,0.835487,0.64849,0.146291,0.725077,0.662034,0.147964,0.102933,0.70298,0.162454,0.85889,0.747365,0.977959,0.197768,0.834179,0.640887,0.691151,0.103989,0.587561,0.749328,0.345651,0.0809201,0.358621,0.0778378,0.149622,0.197473,0.797402,0.483457,0.954106,0.96396,0.413541,0.260577,0.854162,0.208535,0.331393,0.159981,0.0336097,0.15227,0.528395,0.539827,0.0929207,0.362042,0.204003,0.0211824,0.0392367,0.540673,0.899123,0.372921,0.0248805,0.698434,0.0871946,0.174273,0.118361,0.245052,0.713514,0.292543,0.0986383,0.348892,0.407008,0.00242198,0.565202,0.471405,0.153916,0.485648,0.82628,0.213188,0.471559,0.270926,0.766934,0.650964,0.316118,0.893249,0.345035,0.0176589,0.744178,0.220133,0.33089,0.0440443,0.399027,0.0854061,0.765592,0.68927,0.83349,0.573662,0.638023,0.506473,0.974469,0.857085,0.474895,0.6576,0.698292,0.326992,0.326413,0.551558,0.148285,0.893203,0.56649,0.437805,0.7086,0.240903,0.792547,0.559793,0.16,0.729674,0.76147,0.543232,0.694692,0.998797,0.888659,0.286132,0.200099,0.591978,0.300963,0.16785,0.954839,0.335607,0.0766041,0.528581,0.155692,0.0682068,0.437086,0.489155,0.635079,0.100287,0.332513,0.257542,0.304377,0.234278,0.555702,0.25321,0.684039,0.91176,0.1048,0.332868,0.907374,0.130563,0.184742,0.00865662,0.434878,0.662768,0.95052,0.379763,0.18246,0.149752,0.525468,0.600754,0.119956,0.696022,0.705338,0.264926,0.09319,0.612117,0.641798,0.143601,0.651633,0.470951,0.583973,0.0508478,0.170908,0.682596,0.338301,0.969226,0.98729,0.40756,0.85003,0.98081,0.610673,0.240351,0.424427,0.267804,0.129326,0.562993,0.782823,0.224471,0.0522996,0.0637778,0.647024,0.364698,0.970601,0.31706,0.537375,0.0882695,0.359878,0.0527608,0.38655,0.953617,0.836939,0.500688,0.226554,0.748482,0.715354,0.290606,0.297534,0.283738,0.61347,0.156684,0.493527,0.77887,0.333158,0.875524,0.0817146,0.0777614,0.621168,0.715655,0.706556,0.56838,0.568166,0.647099,0.213123,0.589063,0.637318,0.26272,0.315561,0.237897,0.144896,0.259749,0.752197,0.423021,0.681794,0.802329,0.628098,0.290722,0.63586,0.643466,0.512669,0.813481,0.859914,0.778537,0.786486,0.237321,0.265849,0.601751,0.481112,0.0843396,0.820228,0.805858,0.984261,0.96162,0.598365,0.83373,0.68088,0.971503,0.562959,0.752427,0.436861,0.0131055,0.591501,0.120646,0.17672,0.467551,0.709119,0.316122,0.813918,0.979554,0.882003,0.168614,0.768683,0.151606,0.0754759,0.512396,0.986874,0.109913,0.201147,0.084875,0.738557,0.331232,0.631911,0.278021,0.3378,0.073338,0.741997,0.0922881,0.900105,0.58282,0.671998,0.157998,|0.00743753,0.21716,0.176886,0.697163,0.993895,0.324982,0.648554,0.547001,0.363913,0.322277,0.853245,0.706812,0.230148,0.62576,0.747248,0.114462,0.167651,0.0401995,0.7616,0.968768,0.0965328,0.76141,0.715428,0.790245,0.306199,0.103294,0.932196,0.182827,0.82284,0.217693,0.576254,0.858338,0.0415969,0.158276,0.254386,0.0176538,0.909911,0.169802,0.567465,0.559908,0.750017,0.889819,0.551915,0.0509086,0.0440009,0.283421,0.644161,0.291454,0.796872,0.835015,0.683817,0.293602,0.814429,0.878865,0.0198075,0.435559,0.988564,0.286978,0.368434,0.0389458,0.892814,0.347713,0.820282,0.593114,0.230444,0.461285,0.548183,0.205021,0.340137,0.408883,0.496803,0.341561,0.661475,0.187278,0.666892,0.0282577,0.412859,0.471483,0.600927,0.0110387,0.158037,0.753993,0.33024,0.0586203,0.685404,0.136395,0.144603,0.716173,0.346864,0.424763,0.496351,0.973588,0.897708,0.21316,0.463255,0.478294,0.63517,0.970352,0.476578,0.851315,0.459074,0.702457,0.850052,0.791619,0.571531,0.788523,0.617275,0.495955,0.604022,0.307005,0.930049,0.0287848,0.0125899,0.687423,0.69985,0.0843151,0.844911,0.473553,0.0537784,0.675597,0.992074,0.387688,0.095168,0.193261,0.423434,0.0431452,0.41893,0.392428,0.237575,0.565206,0.817322,0.354787,0.294424,0.193132,0.187735,0.00196958,0.694623,0.04689,0.0772386,0.283905,0.555706,0.252177,0.0961226,0.844462,0.351961,0.63228,0.296732,0.54457,0.877207,0.328401,0.0711958,0.992215,0.0028674,0.135395,0.963987,0.322128,0.734406,0.914735,0.598604,0.416633,0.00707889,0.353732,0.906702,0.980123,0.432114,0.496142,0.202278,0.987063,0.468075,0.576822,0.332004,0.912264,0.773852,0.956696,0.582009,0.289335,0.26068,0.769236,0.239258,0.101296,0.350428,0.966269,0.378546,0.0221142,0.786844,0.653005,0.0183781,0.880417,0.129472,0.667953,0.601984,0.0998977,0.278294,0.129564,0.95342,0.345788,0.510931,0.716667,0.837098,0.431958,0.907829,0.0804661,0.742436,0.810874,0.670528,0.479107,0.641627,0.826534,0.0980372,0.0477247,0.995339,0.888613,0.4621,0.456798,0.912469,0.143656,0.410802,0.917986,0.460043,0.933634,0.949225,0.567958,0.264116,0.130397,0.927595,0.664181,0.613439,0.919081,0.905881,0.00257897,0.71398,0.453471,0.235949,0.0633471,0.453265,0.08295,0.929957,0.317142,0.349199,0.736789,0.442641,0.315606,0.893228,0.802695,0.827633,0.892212,0.914697,0.570209,0.61588,0.723871,0.575276,0.510624,0.0618303,0.473551,0.269714,0.250334,0.13867,0.543944,0.0524504,0.36833,0.723239,0.606972,0.548238,0.866818,0.780802,0.144981,0.599279,0.553283,0.836856,0.470871,0.555441,0.528339,0.663037,0.703287,0.631384,0.542825,0.284312,0.847424,0.625412,0.683522,0.674511,0.69798,0.186362,0.532499,0.120859,0.657392,0.483913,0.245261,0.448548,0.490515,0.767741,0.626724,0.880219,0.579182,0.19254,0.866161,0.444024,0.156721,0.816146,0.260732,0.420173,0.598409,0.998006,0.180244,0.36725,0.801332,0.0228449,0.417322,0.882477,0.43144,0.43719,0.695294,0.339682,0.605574,0.14966,0.260163,0.221118,0.944336,0.129899,0.0771918,0.350611,0.167748,0.946318,0.595658,0.377971,0.642308,0.751862,0.693123,0.479193,0.410688,0.61856,0.312077,0.721936,0.540888,0.73638,0.323456,0.854935,0.300083,0.00712103,0.845628,0.675331,0.625123,0.512789,0.432658,0.701531,0.858133,0.166811,0.217178,0.223925,0.356163,0.84299,0.675001,0.384345,0.820678,0.544066,0.375561,0.990435,0.413699,0.905486,0.190699,0.9187,0.00871885,0.170046,0.00704747,0.293624,0.313104,0.893479,0.160948,0.330595,0.483005,0.264089,0.080663,0.261096,0.242105,0.295148,0.785732,0.754606,0.346376,0.831714,0.147125,0.955396,0.281704,0.088192,0.0756957,0.565895,0.764457,0.432296,0.327549,0.707756,0.435361,0.502871,0.0401139,0.0947621,0.267013,0.814645,0.557488,0.288147,0.0503676,0.942165,0.253942,0.708008,0.753345,0.267182,0.616827,0.884168,0.120035,0.0679705,0.392866,0.810768,0.462378,0.0149447,0.994004,0.993121,0.936201,0.668698,0.674902,0.225668,0.203061,0.962169,0.140473,0.372218,0.0622295,0.956762,0.552001,0.479245,0.118914,0.946137,0.275099,0.447491,0.579081,0.769485,0.176426,0.0829046,0.484046,0.787887,0.0194109,0.527694,0.435387,0.576008,0.0406839,0.799902,0.636694,0.240889,0.245863,0.689915,0.271557,0.3713,0.742592,0.826532,0.461652,0.684643,0.592502,0.0775219,0.840127,0.537183,0.139107,0.976423,0.618182,0.752315,0.67873,0.338142,0.386284,0.358569,0.101218,0.00876004,0.157496,0.51371,0.726258,0.7371,0.463319,0.901861,0.254172,0.640929,0.787467,0.433606,0.294152,0.720312,0.382393,0.151035,0.233607,0.023551,0.223392,0.363653,0.551868,0.86756,0.153092,0.965621,0.798495,0.15273,0.406265,0.0436251,0.366865,0.807403,0.336613,0.590345,0.988056,0.893173,0.713073,0.296856,0.315617,0.23749,0.306586,0.363802,0.0506942,0.610415,0.982538,0.841923,0.456695,0.348291,0.0983518,0.0690708,0.51995,0.274998,0.0725688,0.231469,0.335297,0.544314,0.873975,0.55253,0.665915,0.310184,0.134085,0.431291,0.0848699,0.420599,0.554745,0.342009,0.764427,0.907965,0.0648907,0.263794,0.0530165,0.355359,0.656135,0.322275,0.0926612,0.980449,0.58054,0.797737,0.943442,0.415468,0.316115,0.134308,0.284906,0.420793,0.309484,0.909768,0.828732,0.803133,0.421863,0.298341,0.909496,0.00607967,0.0382072,0.809551,0.947419,0.191178,0.978571,0.193189,0.320374,0.470762,0.892165,0.154549,0.623775,0.783438,0.0499901,0.79272,0.490383,0.996899,0.932079,0.812344,0.223208,0.685005,0.955197,0.582678,0.0614666,0.0576785,0.302753,0.1713,0.201973,0.776996,0.31805,0.799587,0.768305,0.953469,0.683088,0.819478,0.875829,0.960892,0.932132,0.282705,0.290757,0.962303,0.533497,0.626591,0.092878,0.242557,0.40289,0.813912,0.0614707,0.369534,0.549646,0.0168921,0.919938,0.241309,0.78981,0.620586,0.013075,0.310497,0.4818,0.255226,0.72302,0.156841,0.386664,0.782478,0.732172,0.170367,0.600236,0.951702,0.988261,0.900524,0.265516,0.989907,0.538507,0.641706,0.744739,0.0802804,0.0778914,0.717277,0.640984,0.366543,0.141718,0.200891,0.651574,0.883704,0.0303042,0.841742,0.0341021,0.305579,0.551492,0.660448,0.772394,0.306196,0.30432,0.544445,0.00893927,0.0275046,0.147723,0.245595,0.196522,0.703182,0.789769,0.45622,0.304684,0.1377,0.453091,0.164692,0.0489174,0.444926,0.479073,0.812402,0.455887,0.537296,0.308999,0.876488,0.835037,0.54032,0.33591,0.292353,0.807978,0.989369,0.984817,0.517726,0.620944,0.575641,0.0709034,0.714496,0.748498,0.250266,0.115645,0.913885,0.81574,0.505763,0.315453,0.359189,0.323172,0.435325,0.269359,0.90393,0.898686,0.729197,0.172363,0.158543,0.783896,0.123775,0.056549,0.882676,0.734219,0.333742,0.558716,0.645616,0.941444,0.136097,0.0817845,0.093687,0.7182,0.668471,0.446027,0.343735,0.0559982,0.50148,0.38494,0.175969,0.847433,0.903515,0.33447,0.90802,0.909735,0.0357285,0.788003,0.59971,0.464594,0.829907,0.876951,0.933936,0.333312,0.130786,0.191084,0.168097,0.170137,0.040325,0.192561,0.404392,0.731487,0.95727,0.431018,0.494621,0.862628,0.88219,0.664766,0.766433,0.0434631,0.309815,0.106554,0.89304,0.872817,0.369927,0.259312,0.894365,0.933008,0.0550197,0.503271,0.248915,0.0527731,0.141047,0.30217,0.784489,0.0571722,0.145251,0.222603,0.517904,0.669218,0.492511,0.311522,0.00667214,0.565645,0.495481,0.46925,0.906666,0.417319,0.202065,0.349621,0.893778,0.67323,0.172739,0.701192,0.408717,0.886672,0.392206,0.100631,0.92727,0.338197,0.538871,0.997299,0.557579,0.375659,0.681938,0.0793085,0.828745,0.422912,0.754358,0.00311869,0.587242,0.00590032,0.748097,0.278332,0.10014,0.819366,0.906163,0.0808753,0.191444,0.536509,0.554785,0.55461,0.111144,0.145751,0.159088,0.0187299,0.514826,0.350212,0.126303,0.796908,0.947547,0.851593,0.843876,0.514144,0.74033,0.691022,0.0858846,0.0327313,0.476374,0.347572,0.658984,0.177144,0.790669,0.948248,0.621179,0.755932,0.718697,0.489601,0.523866,0.576293,0.990845,0.510221,0.436128,0.0950974,0.556912,0.429934,0.27308,0.466021,0.131642,0.366604,0.625271,0.195061,0.354153,0.498364,0.401752,0.846337,0.375893,0.631681,0.192798,0.314757,0.381869,0.635767,0.411388,0.983967,0.181668,0.965745,0.939452,0.333143,0.802028,0.697459,0.675887,0.736351,0.0905408,0.344848,0.965084,0.000602841,0.600535,0.728704,0.145313,0.504277,0.133737,0.461422,0.134051,0.490205,0.340852,0.340749,0.860903,0.582856,0.872927,0.395352,0.00784904,0.313042,0.166198,0.890895,0.615085,0.869135,0.794526,0.954412,0.407866,0.263883,0.199406,0.420126,0.305007,0.559705,0.724631,0.474482,0.790505,0.498125,0.413668,0.353708,0.574773,0.54988,0.680506,0.693398,0.891308,0.242296,0.996469,0.804814,0.104021,0.406719,0.42568,0.435876,0.607464,0.428277,0.210084,0.943446,0.828517,0.649441,0.327447,0.711146,0.235166,0.36742,0.916666,0.268724,0.197547,0.491677,0.657536,0.608268,0.822266,0.0426793,0.983832,0.896128,0.777485,0.781904,0.755959,0.27222,0.907145,0.174275,0.977902,0.596539,0.135019,0.0851141,0.0843714,0.110049,0.946672,0.567219,0.312895,0.849619,0.57366,0.291363,0.577143,0.529712,0.109512,0.262372,0.511745,0.879451,0.509124,0.991375,0.218414,0.356753,0.647427,0.899953,0.134249,0.283731,0.745474,0.500064,0.477408,0.49748,0.514132,0.182545,0.104192,0.369605,0.530305,0.773465,0.976184,0.918681,0.207511,0.877059,0.516969,0.11291,0.785845,0.209479,0.830892,0.0760985,0.731773,0.175328,0.115438,0.641932,0.76127,0.359459,0.491656,0.818721,0.128308,0.122876,0.0862016,0.0524195,0.575701,0.694511,|0.146438,0.676052,0.00785249,0.290761,0.0577133,0.834351,0.974165,0.225878,0.733875,0.687614,0.271961,0.071393,0.695315,0.142937,0.792273,0.669561,0.326106,0.734666,0.743182,0.659657,0.853489,0.868849,0.293375,0.496882,0.464306,0.574572,0.64906,0.302281,0.200047,0.294407,0.0910397,0.118284,0.876781,0.92153,0.608834,0.970818,0.404026,0.174946,0.204276,0.835977,0.713452,0.681181,0.827964,0.816915,0.581493,0.983501,0.248181,0.968933,0.376752,0.331185,0.576542,0.907485,0.386029,0.661609,0.997928,0.421054,0.465636,0.487525,0.0192268,0.756971,0.795671,0.0303482,0.792465,0.853832,0.182134,0.580069,0.215252,0.345759,0.598559,0.858856,0.0335845,0.847562,0.938331,0.00783163,0.709036,0.0902476,0.0063445,0.309995,0.090281,0.723974,0.313112,0.204709,0.803257,0.27709,0.688188,0.5031,0.848053,0.252632,0.0269583,0.076553,0.966162,0.691424,0.430029,0.519914,0.217701,0.475754,0.327337,0.739037,0.774059,0.462864,0.797478,0.424133,0.88618,0.508613,0.209729,0.696549,0.000730217,0.347448,0.98498,0.0812988,0.933421,0.88582,0.174795,0.87142,0.489825,0.345731,0.607388,0.23422,0.971006,0.649321,0.992893,0.816619,0.985464,0.108818,0.710438,0.349223,0.176108,0.806505,0.64857,0.293705,0.877472,0.0598,0.173615,0.0450963,0.371699,0.510888,0.272398,0.091974,0.285655,0.65168,0.395665,0.586111,0.327935,0.904367,0.969117,0.347595,0.923004,0.740169,0.943167,0.302231,0.226722,0.684111,0.368072,0.958378,0.714094,0.523671,0.129185,0.569158,0.645876,0.940263,0.849725,0.31614,0.0808453,0.901038,0.0682107,0.200529,0.309979,0.948117,0.265618,0.155478,0.468579,0.45371,0.06525,0.53318,0.690063,0.418727,0.588887,0.729902,0.742103,0.667615,0.554511,0.828154,0.283216,0.152264,0.369161,0.818421,0.245857,0.803571,0.271837,0.424286,0.193056,0.480028,0.72759,0.621967,0.240745,0.539259,0.801392,0.655775,0.00640625,0.913018,0.907997,0.431221,0.760383,0.126355,0.887327,0.584475,0.904278,0.614058,0.307994,0.034487,0.876486,0.7152,0.826072,0.995358,0.626998,0.096985,0.573476,0.988449,0.45985,0.953757,0.701224,0.16734,0.37287,0.489654,0.851867,0.213808,0.986873,0.273842,0.685648,0.18246,0.905231,0.517187,0.561847,0.481588,0.517012,0.466106,0.509095,0.641124,0.741741,0.156339,0.420057,0.609364,0.252465,0.583419,0.0995911,0.853161,0.0854814,0.759086,0.389944,0.380803,0.360167,0.935667,0.795403,0.232171,0.898561,0.57362,0.395912,0.612147,0.3379,0.171154,0.11274,0.0162189,0.482632,0.661194,0.499594,0.341985,0.127466,0.312279,0.98411,0.88617,0.371692,0.745045,0.910824,0.96614,0.196229,0.278918,0.900546,0.286517,0.53089,0.297311,0.590587,0.607092,0.120293,0.894817,0.242229,0.863595,0.686549,0.0999897,0.425674,0.600334,0.6213,0.808801,0.659292,0.619599,0.564086,0.109171,0.254306,0.671731,0.948075,0.96233,0.88652,0.139715,0.0795641,0.822829,0.499208,0.0835347,0.180714,0.253891,0.510294,0.731277,0.297808,0.91732,0.254862,0.299283,0.200014,0.788724,0.615978,0.187116,0.606154,0.158202,0.609302,0.425386,0.316407,0.960944,0.532395,0.515463,0.963375,0.441868,0.997515,0.685826,0.313566,0.0763645,0.432909,0.506641,0.930715,0.0567893,0.61734,0.7603,0.470006,0.948211,0.590243,0.234155,0.708512,0.977562,0.414314,0.019568,0.639522,0.611998,0.935597,0.731883,0.989009,0.96501,0.475068,0.748586,0.626375,0.573233,0.35459,0.586844,0.658621,0.0244533,0.168174,0.104122,0.492777,0.804041,0.894976,0.23832,0.11404,0.484052,0.263648,0.971824,0.505707,0.121264,0.310656,0.90686,0.906172,0.350037,0.0642098,0.306529,0.603476,0.128809,0.638236,0.749399,0.827295,0.58123,0.623782,0.437968,0.661194,0.820736,0.266993,0.56592,0.826839,0.602866,0.153966,0.0226335,0.753824,0.799113,0.70616,0.895918,0.643613,0.964518,0.186845,0.0268123,0.0514361,0.239377,0.504626,0.388501,0.503609,0.339946,0.97319,0.579629,0.199506,0.432223,0.294733,0.896113,0.369411,0.748215,0.986418,0.59732,0.390102,0.929163,0.00247282,0.219885,0.725061,0.65457,0.804544,0.390729,0.207215,0.654901,0.000518203,0.378174,0.32668,0.166651,0.580302,0.56377,0.301067,0.945571,0.461404,0.704647,0.786721,0.16118,0.839222,0.351037,0.0128936,0.612979,0.632638,0.203514,0.418687,0.474856,0.396478,0.311686,0.504699,0.328979,0.927444,0.96792,0.299499,0.758607,0.533173,0.402717,0.532597,0.0768269,0.112163,0.735143,0.993947,0.591267,0.311014,0.0568424,0.733322,0.568903,0.173164,0.28336,0.268028,0.657143,0.583484,0.0764521,0.453879,0.28116,0.807653,0.516662,0.628761,0.743233,0.749318,0.213536,0.368617,0.688586,0.649374,7.82013e-05,0.673804,0.611255,0.255321,0.907524,0.615947,0.0926333,0.310272,0.519725,0.303869,0.902889,0.561721,0.0751646,0.227602,0.774729,0.833738,0.578886,0.914178,0.682311,0.533711,0.876813,0.450848,0.74264,0.0921654,0.242223,0.131852,0.643622,0.976063,0.945771,0.886434,0.158119,0.366104,0.213854,0.665538,0.964734,0.965267,0.584103,0.48242,0.291722,0.0431539,0.872808,0.296325,0.242089,0.156824,0.92193,0.452696,0.188463,0.671247,0.788757,0.457903,0.82919,0.509926,0.831664,0.4131,0.684901,0.0283655,0.914033,0.677327,0.440767,0.901929,0.886847,0.203315,0.791072,0.746606,0.88147,0.687731,0.317955,0.423217,0.237389,0.96085,0.33606,0.873408,0.665167,0.342819,0.704201,0.49661,0.756118,0.822514,0.524479,0.859778,0.297713,0.553201,0.945216,0.464891,0.690106,0.948646,0.284408,0.0286668,0.751754,0.987999,0.656158,0.638711,0.711226,0.27301,0.820947,0.382687,0.198839,0.742961,0.283419,0.107824,0.709207,0.593873,0.900298,0.589558,0.791239,0.705482,0.290135,0.503275,0.167179,0.500659,0.62947,0.643138,0.857593,0.213982,0.0521136,0.863843,0.392954,0.150955,0.0938395,0.433489,0.556985,0.225852,0.575792,0.832792,0.394509,0.115178,0.89804,0.562717,0.333742,0.767231,0.0698025,0.917822,0.355145,0.550686,0.825837,0.356052,0.026166,0.219428,0.488271,0.00459689,0.809679,0.144422,0.47224,0.9899,0.660928,0.285709,0.0502757,0.583128,0.317264,0.538297,0.960513,0.420377,0.885359,0.326975,0.615362,0.128523,0.57162,0.564234,0.371314,0.990039,0.526393,0.331948,0.912017,0.0855278,0.435459,0.5596,0.360485,0.787065,0.708183,0.520077,0.374901,0.521263,0.214944,0.51652,0.603666,0.241504,0.168895,0.644191,0.532609,0.715803,0.572931,0.0450429,0.833753,0.510227,0.918337,0.904152,0.722753,0.233357,0.967491,0.604428,0.808722,0.833731,0.793477,0.763454,0.484265,0.385334,0.736972,0.467954,0.546253,0.510973,0.564385,0.0466602,0.112491,0.997239,0.337747,0.335413,0.801989,0.681188,0.191566,0.166547,0.780034,0.172756,0.618493,0.578757,0.761301,0.324681,0.74416,0.416651,0.986449,0.456152,0.665342,0.0540839,0.491895,0.195159,0.374561,0.395741,0.350922,0.790558,0.932174,0.941117,0.153951,0.983789,0.980298,0.779009,0.324664,0.465296,0.348963,0.32771,0.806903,0.33099,0.183076,0.79497,0.644134,0.93973,0.781865,0.74974,0.244919,0.230487,0.730963,0.9759,0.601182,0.0322362,0.791186,0.334287,0.653567,0.739575,0.880747,0.0506118,0.894275,0.334726,0.961013,0.747652,0.407182,0.156037,0.414218,0.944469,0.00695825,0.591841,0.937356,0.826387,0.921747,0.459624,0.595692,0.127439,0.196482,0.259892,0.0482962,0.544864,0.707347,0.0118288,0.521279,0.0169958,0.848952,0.870878,0.821046,0.409635,0.162111,0.70326,0.372656,0.998174,0.536534,0.958033,0.91217,0.162463,0.281787,0.715848,0.727761,0.324164,0.884248,0.166267,0.846794,0.836341,0.956982,0.363997,0.208814,0.811544,0.258863,0.44966,0.587189,0.337478,0.765407,0.571654,0.669349,0.559875,0.40724,0.316649,0.00699574,0.818072,0.443109,0.202034,0.356989,0.187081,0.509226,0.999202,0.903799,0.890139,0.629247,0.441087,0.939894,0.921776,0.908963,0.841444,0.0616216,0.361787,0.0285065,0.14179,0.539521,0.0110444,0.0961767,0.280462,0.615416,0.0864807,0.824911,0.361493,0.500174,0.524173,0.551981,0.404151,0.833724,0.788368,0.728824,0.268866,0.74735,0.653788,0.52158,0.862516,0.389881,0.18556,0.558726,0.0972942,0.0514442,0.467657,0.666155,0.555388,0.394747,0.959907,0.655754,0.986965,0.681647,0.485597,0.0617966,0.355974,0.056397,0.257051,0.981871,0.589557,0.204129,0.0261565,0.0159439,0.755244,0.194874,0.807388,0.794316,0.855382,0.338755,0.377691,0.286318,0.929097,0.506144,0.948903,0.440073,0.957707,0.292406,0.116605,0.162768,0.591677,0.406342,0.776671,0.444914,0.0520503,0.0848555,0.699832,0.849794,0.236349,0.440104,0.884871,0.064864,0.338069,0.289376,0.800725,0.0470566,0.865666,0.159658,0.40389,0.0303128,0.929196,0.767883,0.633558,0.527479,0.372433,0.924471,0.863295,0.764025,0.882345,0.918031,0.304292,0.476477,0.18595,0.493377,0.950537,0.596108,0.213894,0.437086,0.196279,0.0463421,0.211381,0.910863,0.172474,0.152039,0.94002,0.753353,0.621515,0.590876,0.797182,0.262257,0.837403,0.721992,0.518681,0.908636,0.159848,0.229265,0.769374,0.998074,0.409095,0.907822,0.320707,0.849231,0.884582,0.809762,0.939897,0.129863,0.438854,0.674042,0.305634,0.719233,0.996854,0.744019,0.0714416,0.0603806,0.0631801,0.486558,0.972368,0.0573901,0.125538,0.0742288,0.180321,0.864046,0.744694,0.311642,0.642113,0.127301,0.489895,0.471078,0.381481,0.755339,0.734158,0.822447,0.302994,0.692551,0.499992,0.862612,0.5583,0.296469,0.752294,0.775833,0.694451,0.845588,0.094268,0.400228,0.422912,0.139597,0.19093,0.0972689,0.0434922,0.557154,0.256388,0.622913,0.759931,0.816084,0.3589,0.617506,0.12059,0.77854,0.170534,0.698747,|0.313102,0.382922,0.555369,0.904094,0.368879,0.659243,0.167549,0.181654,0.845876,0.679538,0.0441371,0.501737,0.821897,0.706915,0.375296,0.760379,0.584513,0.366912,0.779329,0.850969,0.438232,0.69985,0.840768,0.182794,0.879013,0.465943,0.355585,0.482414,0.791592,0.199196,0.602773,0.724615,0.946732,0.0963796,0.389173,0.22269,0.891994,0.456711,0.948033,0.30559,0.778634,0.428782,0.70088,0.214291,0.206915,0.483014,0.422616,0.745013,0.451401,0.523811,0.357637,0.963704,0.130544,0.486352,0.554372,0.253778,0.63627,0.0752816,0.0673611,0.901294,0.816689,0.407411,0.654385,0.967899,0.00501937,0.869966,0.983562,0.314983,0.949224,0.769039,0.984526,0.85692,0.686481,0.0993482,0.151578,0.327561,0.787666,0.0193304,0.372708,0.811688,0.701599,0.332688,0.623853,0.169224,0.236387,0.749956,0.380095,0.859201,0.574711,0.711484,0.723318,0.711529,0.281525,0.526604,0.837513,0.50575,0.631825,0.207029,0.260088,0.309093,0.665213,0.722211,0.724319,0.7777,0.296746,0.141257,0.225314,0.824903,0.269303,0.875666,0.356158,0.903479,0.668432,0.998001,0.344609,0.508703,0.570425,0.311142,0.721821,0.661315,0.635789,0.465823,0.992047,0.545094,0.522169,0.764899,0.872067,0.74323,0.949258,0.569552,0.740795,0.14077,0.253291,0.256469,0.530513,0.776648,0.809109,0.91857,0.96474,0.189713,0.747112,0.568539,0.889403,0.0324973,0.612823,0.5873,0.268589,0.92816,0.157789,0.258645,0.449087,0.678311,0.163712,0.207385,0.180776,0.178453,0.422295,0.746298,0.682291,0.444674,0.353716,0.718868,0.277447,0.646698,0.762653,0.842115,0.663116,0.609558,0.236506,0.556451,0.237892,0.793224,0.807808,0.348597,0.717659,0.881473,0.21663,0.710687,0.742078,0.322634,0.451159,0.205708,0.0326353,0.241988,0.509403,0.0105864,0.165666,0.245806,0.104211,0.0452347,0.224593,0.529107,0.480369,0.465769,0.932369,0.802734,0.99383,0.86829,0.966791,0.800628,0.256176,0.644791,0.36919,0.524901,0.239637,0.884248,0.634163,0.855307,0.303575,0.473776,0.0130439,0.277045,0.952871,0.0474347,0.380542,0.0509906,0.0333713,0.343089,0.969655,0.772149,0.720026,0.847064,0.719119,0.558921,0.972391,0.892728,0.690137,0.34047,0.263031,0.626427,0.125109,0.424951,0.548224,0.633878,0.331123,0.468072,0.271688,0.861825,0.844681,0.324182,0.00725687,0.604288,0.339769,0.824235,0.178221,0.606914,0.62362,0.314279,0.629001,0.483486,0.522449,0.949295,0.95961,0.6836,0.651328,0.215142,0.964215,0.881649,0.0657648,0.724676,0.730464,0.811706,0.994253,0.319493,0.448925,0.940751,0.339547,0.0573731,0.503032,0.492859,0.571726,0.711803,0.262767,0.392145,0.601803,0.42649,0.381725,0.534062,0.598248,0.898062,0.467034,0.951327,0.913625,0.358734,0.585967,0.825115,0.699349,0.631605,0.774244,0.0863386,0.927806,0.481698,0.123742,0.506016,0.601313,0.750798,0.728111,0.327631,0.834352,0.12661,0.0257512,0.716185,0.754313,0.16076,0.0863571,0.545084,0.327126,0.548223,0.169837,0.729463,0.967457,0.362885,0.12243,0.932967,0.687506,0.139165,0.891271,0.769557,0.874412,0.912256,0.0847846,0.960922,0.0157763,0.675733,0.717126,0.796492,0.970375,0.144334,0.827989,0.333377,0.603432,0.107834,0.0555493,0.225614,0.920687,0.605071,0.757559,0.235207,0.71731,0.975661,0.481745,0.730017,0.224475,0.108823,0.932692,0.625944,0.773519,0.82241,0.955271,0.507291,0.649162,0.612446,0.15988,0.591356,0.178274,0.634048,0.368854,0.265295,0.381191,0.782152,0.952754,0.431326,0.148495,0.3898,0.00746393,0.793221,0.736369,0.863952,0.56247,0.277991,0.383461,0.619092,0.897552,0.0665332,0.935712,0.0892795,0.805434,0.72042,0.419425,0.552968,0.0852947,0.865969,0.9817,0.787065,0.0855184,0.667302,0.154654,0.811642,0.666777,0.860939,0.656385,0.550297,0.753338,0.666378,0.503149,0.354841,0.640748,0.155061,0.629408,0.970315,0.211478,0.618375,0.224401,0.446993,0.270788,0.920135,0.444128,0.533206,0.780055,0.936976,0.174657,0.603379,0.990558,0.476389,0.602066,0.208146,0.916275,0.419181,0.997481,0.428308,0.180433,0.897215,0.259974,0.166245,0.945376,0.0214185,0.646494,0.22393,0.193031,0.837328,0.225783,0.192973,0.786156,0.890858,0.03772,0.707864,0.970199,0.767442,0.0535293,0.0728235,0.396031,0.40824,0.632627,0.567268,0.0854058,0.0575576,0.497646,0.168829,0.55971,0.479133,0.0234224,0.339975,0.854631,0.928704,0.0363857,0.413632,0.0755482,0.265571,0.874105,0.830168,0.689592,0.0531101,0.969344,0.354058,0.769005,0.275882,0.983887,0.17762,0.545055,0.0976156,0.865518,0.110121,0.580528,0.199676,0.391067,0.174259,0.0134531,0.371716,0.242687,0.696005,0.824655,0.300659,0.51855,0.955894,0.845376,0.697569,0.95978,0.806814,0.598155,0.67593,0.690653,0.410504,0.474758,0.691721,0.393886,0.0449812,0.150681,0.993565,0.00805801,0.798959,0.510204,0.0489724,0.458735,0.273987,0.381111,0.922087,0.752873,0.90855,0.803635,0.419205,0.58745,0.179384,0.124327,0.949677,0.556915,0.908787,0.123057,0.903466,0.456556,0.354928,0.48044,0.381528,0.795424,0.416705,0.927437,0.506898,0.746224,0.708068,0.0288856,0.857413,0.684019,0.869874,0.630414,0.603679,0.123368,0.609921,0.744959,0.408839,0.904681,0.883047,0.250706,0.927433,0.430807,0.284596,0.345903,0.936259,0.319066,0.725788,0.559402,0.938676,0.676034,0.82506,0.432635,0.385926,0.0934381,0.258263,0.868646,0.799162,0.95519,0.630567,0.820239,0.868703,0.385162,0.56918,0.635207,0.166637,0.225137,0.653634,0.264098,0.771353,0.94223,0.919856,0.401463,0.225704,0.40585,0.722004,0.527207,0.920629,0.495579,0.78628,0.277716,0.291785,0.0180082,0.698887,0.785702,0.239199,0.268723,0.136353,0.894793,0.757869,0.479103,0.128846,0.39366,0.731138,0.0919276,0.940947,0.16269,0.575831,0.879207,0.256041,0.654331,0.802615,0.925779,0.198196,0.70536,0.3324,0.931879,0.651981,0.852976,0.370404,0.664816,0.236605,0.766642,0.966909,0.416726,0.683165,0.563133,0.227944,0.949082,0.916956,0.990766,0.310088,0.240572,0.0536354,0.802549,0.218517,0.539314,0.496993,0.0406976,0.394745,0.732784,0.811788,0.516703,0.329643,0.0804352,0.820778,0.758784,0.270565,0.656182,0.620145,0.172832,0.232885,0.384918,0.771394,0.490012,0.867994,0.59145,0.208797,0.722329,0.344612,0.231466,0.0963825,0.11405,0.288898,0.88699,0.050585,0.873068,0.673604,0.552106,0.359033,0.945961,0.0161303,0.873302,0.675924,0.270883,0.80332,0.938757,0.516153,0.940923,0.172929,0.0880837,0.848592,0.519024,0.700382,0.952905,0.315419,0.966119,0.285435,0.493958,0.510046,0.746177,0.587703,0.881416,0.216856,0.540898,0.446929,0.0807262,0.0605293,0.358288,0.906076,0.349114,0.457168,0.842979,0.285719,0.445289,0.967914,0.704706,0.949036,0.760282,0.280553,0.0489522,0.141179,0.629934,0.963977,0.879213,0.721009,0.408082,0.248966,0.808516,0.119865,0.536451,0.489287,0.826499,0.792548,0.0553746,0.875639,0.788792,0.410555,0.856352,0.456068,0.152988,0.502273,0.541547,0.433783,0.110846,0.525688,0.0188264,0.219328,0.534903,0.919525,0.149174,0.5769,0.172535,0.381633,0.190011,0.370388,0.134508,0.890838,0.170735,0.650102,0.865182,0.970749,0.0899851,0.283289,0.44948,0.831185,0.269489,0.841971,0.355892,0.049554,0.948225,0.951843,0.342339,0.369464,0.189389,0.695201,0.144664,0.634903,0.926127,0.867772,0.614084,0.38663,0.477517,0.517047,0.175937,0.791065,0.925476,0.0912699,0.704433,0.614175,0.64932,0.786854,0.71754,0.102939,0.452581,0.0847814,0.825624,0.993692,0.16273,0.116263,0.961524,0.750406,0.841933,0.667028,0.763514,0.920066,0.938682,0.0129282,0.887262,0.720177,0.567906,0.383474,0.894567,0.762813,0.350714,0.880368,0.715353,0.475547,0.213479,0.990706,0.0354902,0.927877,0.392755,0.366509,0.665123,0.53755,0.486434,0.896349,0.801456,0.994772,0.995772,0.893868,0.896329,0.354046,0.0745906,0.47562,0.670981,0.836644,0.709171,0.858272,0.105316,0.238411,0.292533,0.827431,0.257105,0.247819,0.66166,0.911136,0.853421,0.749262,0.358893,0.80888,0.788265,0.175074,0.515955,0.258911,0.445444,0.981786,0.199278,0.868411,0.548545,0.558624,0.277352,0.242199,0.540814,0.619152,0.637757,0.848866,0.387144,0.641685,0.35763,0.665673,0.789268,0.784703,0.900276,0.0626146,0.621876,0.60851,0.065051,0.718504,0.365732,0.837099,0.437712,0.0315506,0.615357,0.578516,0.0263221,0.263598,0.196373,0.744443,0.808119,0.675321,0.532929,0.99739,0.360765,0.412619,0.220334,0.220757,0.112134,0.256999,0.524414,0.000976741,0.822805,0.652474,0.120056,0.103706,0.645295,0.984851,0.266915,0.372914,0.93466,0.257596,0.645237,0.937604,0.936267,0.448783,0.605916,0.463223,0.737704,0.306336,0.0377771,0.509252,0.870988,0.142597,0.904803,0.836104,0.933472,0.866709,0.595342,0.968913,0.21936,0.0446102,0.44129,0.763613,0.572186,0.675132,0.3502,0.829555,0.856074,0.598984,0.365369,0.550879,0.862286,0.304043,0.128775,0.346723,0.425593,0.647047,0.604294,0.779025,0.212811,0.617275,0.267965,0.793629,0.88046,0.473005,0.430586,0.735542,0.0915787,0.992604,0.943362,0.584387,0.980947,0.889026,0.747819,0.298636,0.249428,0.411842,0.553007,0.965913,0.108395,0.843048,0.118226,0.610919,0.135194,0.332339,0.443994,0.404096,0.225428,0.399945,0.482334,0.174528,0.281202,0.491582,0.643265,0.0101412,0.662683,0.493553,0.589928,0.868678,0.351335,0.87331,0.390173,0.093098,0.773702,0.728146,0.120129,0.974261,0.457793,0.406453,0.182991,0.535821,0.612535,0.891279,0.71671,0.641656,0.36483,0.278404,0.865638,0.280073,0.50829,0.352863,0.0129841,0.775622,0.491688,0.312305,0.830306,0.985751,0.187,0.920707,|0.736575,0.351824,0.394197,0.80191,0.982748,0.0199881,0.204444,0.905642,0.462452,0.511925,0.127545,0.703824,0.0804174,0.196437,0.437786,0.637644,0.764797,0.454055,0.553372,0.658949,0.795826,0.902841,0.976198,0.872143,0.371276,0.161099,0.0120627,0.395109,0.013439,0.704996,0.266191,0.794443,0.309406,0.62796,0.881775,0.137265,0.416618,0.00244659,0.641854,0.0176072,0.0672256,0.612159,0.282251,0.524813,0.0813525,0.151179,0.272477,0.427666,0.166446,0.980807,0.0668857,0.848545,0.560535,0.0711774,0.194184,0.526154,0.540838,0.128774,0.83534,0.883218,0.312705,0.997208,0.329706,0.483735,0.740402,0.152339,0.113147,0.981686,0.450359,0.606057,0.652421,0.12203,0.653417,0.788594,0.486115,0.622585,0.325506,0.943668,0.165735,0.829955,0.226828,0.851595,0.621193,0.524172,0.23762,0.51101,0.485031,0.165835,0.800675,0.264125,0.514983,0.65461,0.230892,0.424296,0.927593,0.0589753,0.381301,0.542865,0.500574,0.2874,0.144263,0.923457,0.641781,0.0968315,0.774993,0.202283,0.857616,0.0854704,0.813561,0.443263,0.38055,0.748157,0.617443,0.60137,0.167801,0.148536,0.570717,0.600895,0.552322,0.975998,0.118567,0.815059,0.960532,0.314427,0.897347,0.252134,0.229029,0.650704,0.881019,0.746562,0.668974,0.0870904,0.267876,0.0682647,0.212879,0.703754,0.908337,0.4255,0.59928,0.332929,0.681261,0.933318,0.884714,0.84119,0.116999,0.982915,0.861026,0.610688,0.6148,0.498793,0.03321,0.239695,0.430755,0.424936,0.458942,0.794994,0.546085,0.243147,0.3937,0.135167,0.228701,0.815262,0.136774,0.633473,0.438405,0.72808,0.272954,0.00622988,0.812626,0.0147676,0.0949737,0.457482,0.495543,0.439059,0.361463,0.387132,0.240592,0.753094,0.480303,0.257406,0.602256,0.365765,0.0337,0.0423158,0.531847,0.559951,0.560394,0.00498199,0.668199,0.0986824,0.299077,0.438806,0.1271,0.0784044,0.118652,0.882085,0.0229083,0.671805,0.464484,0.553847,0.60606,0.952712,0.96526,0.43739,0.948553,0.222392,0.664245,0.230825,0.0970712,0.566908,0.572045,0.227931,0.315431,0.783986,0.36076,0.587487,0.349159,0.249017,0.43529,0.790629,0.242287,0.954783,0.339114,0.663947,0.63228,0.225106,0.514121,0.184344,0.617985,0.338715,0.01563,0.403816,0.116536,0.496067,0.201436,0.778258,0.0574219,0.653684,0.295189,0.66359,0.88344,0.753392,0.933922,0.983604,0.844184,0.390474,0.141593,0.0127658,0.091215,0.0414557,0.135699,0.915878,0.434101,0.107322,0.39471,0.336325,0.0547985,0.799651,0.279181,0.0211303,0.474239,0.934013,0.282687,0.0751933,0.543554,0.120874,0.0386004,0.510215,0.836596,0.363359,0.821969,0.557719,0.502851,0.810537,0.757872,0.353371,0.28619,0.893099,0.538536,0.497233,0.45959,0.513451,0.613825,0.155918,0.0811496,0.659912,0.0960152,0.990331,0.859908,0.665994,0.677157,0.941548,0.988582,0.125131,0.638929,0.491262,0.529795,0.489681,0.359,0.462598,0.873798,0.67658,0.539322,0.25178,0.214637,0.797092,0.279402,0.198701,0.114012,0.636345,0.432038,0.490461,0.935812,0.00860757,0.054513,0.249789,0.709356,0.0168487,0.504848,0.979307,0.562221,0.218951,0.499689,0.139342,0.947326,0.134922,0.238717,0.821612,0.584717,0.632598,0.771431,0.195629,0.893473,0.672403,0.422316,0.0610789,0.644861,0.617583,0.795165,0.806833,0.411507,0.1731,0.24833,0.0396158,0.228935,0.481042,0.942501,0.0455245,0.836374,0.516726,0.98637,0.143724,0.867428,0.209514,0.652782,0.676595,0.314695,0.116072,0.964484,0.557131,0.755214,0.468519,0.138782,0.95222,0.732824,0.399637,0.241043,0.0775455,0.936801,0.535732,0.24902,0.00810546,0.474503,0.056267,0.868377,0.929293,0.711566,0.460348,0.75912,0.774598,0.207765,0.969039,0.963058,0.198023,0.674953,0.307998,0.911707,0.256204,0.770924,0.081055,0.291477,0.639198,0.997739,0.593829,0.204546,0.498492,0.915605,0.0991011,0.537813,0.252763,0.929623,0.952903,0.491643,0.192026,0.877999,0.601246,0.908403,0.759823,0.456122,0.430381,0.561812,0.876621,0.567524,0.612405,0.432493,0.193925,0.173127,0.577856,0.66521,0.549115,0.199884,0.155569,0.0591064,0.245214,0.544025,0.0324146,0.798067,0.154083,0.327153,0.273187,0.131072,0.857622,0.745964,0.836445,0.112778,0.817657,0.740731,0.132555,0.7319,0.484906,0.35665,0.961619,0.275386,0.0827013,0.523895,0.636372,0.475082,0.503711,0.227287,0.129372,0.0463003,0.601756,0.746787,0.0624048,0.749269,0.145154,0.211476,0.0726928,0.253397,0.134476,0.928109,0.986709,0.226543,0.823328,0.483572,0.527202,0.896215,0.74734,0.640705,0.485437,0.0823582,0.144097,0.384697,0.908194,0.778889,0.949726,0.342823,0.212392,0.210021,0.602918,0.601858,0.277277,0.747104,0.905745,0.941392,0.352214,0.157811,0.00778598,0.407047,0.335999,0.574835,0.0394199,0.783348,0.39246,0.35569,0.828038,0.864302,0.4451,0.481048,0.142957,0.505022,0.40308,0.176162,0.174495,0.405775,0.49803,0.500388,0.114439,0.87086,0.79396,0.0748264,0.123502,0.509098,0.662326,0.0845333,0.693457,0.502757,0.207373,0.852849,0.758485,0.594813,0.636792,0.514465,0.461329,0.0682489,0.0998405,0.673841,0.720579,0.512791,0.26853,0.601073,0.514934,0.428512,0.128999,0.000789762,0.547597,0.510932,0.219205,0.809961,0.876392,0.397833,0.667797,0.0573911,0.443813,0.775187,0.854512,0.746582,0.184244,0.103287,0.181616,0.562499,0.319587,0.892523,0.775028,0.88992,0.990772,0.651626,0.797637,0.445795,0.190796,0.486151,0.676779,0.517281,0.710994,0.868023,0.394671,0.0678711,0.358685,0.521434,0.365669,0.261751,0.673943,0.143681,0.000142872,0.695614,0.775918,0.935896,0.0889494,0.508452,0.179267,0.452623,0.670116,0.00391853,0.529081,0.230998,0.772267,0.125095,0.98972,0.312613,0.193569,0.269732,0.603446,0.888564,0.6266,0.988368,0.720201,0.24784,0.673786,0.35488,0.42181,0.933227,0.805078,0.100903,0.838281,0.544397,0.230091,0.011116,0.576384,0.264134,0.384166,0.124827,0.415744,0.546999,0.505967,0.717639,0.954841,0.137463,0.0122138,0.326557,0.317744,0.740693,0.621939,0.479535,0.814441,0.713208,0.980285,0.502509,0.0988122,0.696239,0.811936,0.845924,0.600782,0.531687,0.294649,0.703989,0.631057,0.588185,0.861016,0.427558,0.642258,0.880674,0.58566,0.22609,0.000307798,0.410667,0.865517,0.940286,0.143163,0.667928,0.741359,0.0786948,0.915025,0.292924,0.867911,0.627442,0.0551513,0.613383,0.967171,0.422524,0.398523,0.0783967,0.137628,0.709377,0.00348043,0.239778,0.649582,0.0788074,0.741594,0.567861,0.522474,0.324309,0.344582,0.729508,0.108724,0.718541,0.385142,0.673767,0.137251,0.111718,0.560587,0.860096,0.295204,0.975992,0.736126,0.933891,0.724229,0.78675,0.731632,0.784741,0.500566,0.503895,0.806341,0.111404,0.165635,0.731185,0.608414,0.570082,0.377156,0.0146029,0.94842,0.508917,0.473568,0.319713,0.927379,0.0585824,0.0945181,0.493878,0.621287,0.00504214,0.283248,0.501891,0.425955,0.994882,0.413846,0.373874,0.0862802,0.621501,0.491618,0.27897,0.313365,0.721071,0.846819,0.746145,0.248287,0.519385,0.295497,0.600183,0.601918,0.811837,0.587677,0.513864,0.512317,0.696823,0.062205,0.790098,0.481703,0.444167,0.678959,0.282912,0.00623065,0.858251,0.0825179,0.590192,0.727006,0.0375651,0.0946575,0.23763,0.435313,0.804861,0.429418,0.394789,0.67685,0.729288,0.520002,0.338541,0.761325,0.164992,0.0288863,0.49757,0.720707,0.474317,0.389267,0.565362,0.305204,0.0166152,0.356045,0.91643,0.13214,0.819152,0.765276,0.161431,0.967536,0.0464475,0.371604,0.580849,0.74516,0.179403,0.102894,0.661305,0.118929,0.7672,0.987592,0.562516,0.620093,0.600727,0.456135,0.608665,0.590307,0.18555,0.606972,0.651466,0.149165,0.647934,0.269474,0.0200295,0.677188,0.939778,0.635123,0.897901,0.57851,0.197573,0.878188,0.0981722,0.929944,0.657737,0.344266,0.167945,0.57743,0.424294,0.0725589,0.199976,0.293631,0.760597,0.143309,0.590073,0.0796009,0.132786,0.762141,0.566089,0.179445,0.0506403,0.285386,0.0470472,0.36198,0.945815,0.984034,0.0426553,0.124203,0.925086,0.745902,0.0185319,0.272957,0.977347,0.365077,0.49138,0.535719,0.368655,0.888252,0.101656,0.957791,0.837648,0.136466,0.582437,0.284375,0.343763,0.382338,0.113673,0.727826,0.429427,0.265168,0.315539,0.387799,0.417882,0.455454,0.00634426,0.728811,0.739614,0.498525,0.39747,0.1275,0.050597,0.272111,0.821709,0.865111,0.649129,0.46581,0.384692,0.949969,0.19621,0.695705,0.881114,0.600265,0.716534,0.79086,0.0235859,0.609227,0.129637,0.755757,0.24152,0.5433,0.826201,0.7612,0.915364,0.43552,0.80521,0.0834971,0.526394,0.672372,0.495469,0.125676,0.0711695,0.316328,0.570466,0.791946,0.223786,0.100993,0.79819,0.711807,0.628639,0.556418,0.369183,0.578714,0.0844921,0.601574,0.671623,0.646188,0.150403,0.217897,0.925342,0.307296,0.446578,0.0735757,0.457507,0.426631,0.471003,0.879792,0.277009,0.577103,0.935133,0.829651,0.0963404,0.749831,0.47027,0.998029,0.694811,0.174498,0.804968,0.787671,0.744084,0.901949,0.0653652,0.857081,0.223932,0.452932,0.374115,0.507379,0.314004,0.191134,0.519031,0.974468,0.0622468,0.160639,0.709692,0.866018,0.0714085,0.620046,0.855939,0.340708,0.915122,0.692857,0.684854,0.518647,0.547747,0.652714,0.269959,0.777834,0.241551,0.379215,0.457956,0.299877,0.576196,0.76929,0.465323,0.113627,0.476526,0.113262,0.624931,0.965055,0.869218,0.539797,0.802555,0.78767,0.469977,0.406899,0.428129,0.140977,0.48684,0.819752,0.493171,0.200251,0.879895,0.437735,0.295744,0.848147,0.431145,0.259699,0.250473,0.481742,0.0845875,0.249684,0.735661,0.944284,0.175467,0.0749883,0.80725,0.792737,0.717452,0.737686,0.432272,0.6592,|0.370986,0.414863,0.961046,0.429055,0.344962,0.335107,0.677068,0.596458,0.107673,0.824301,0.559236,0.124528,0.952006,0.847512,0.0737978,0.476391,0.140478,0.345131,0.941194,0.716654,0.771458,0.316751,0.337909,0.908058,0.978696,0.72535,0.537229,0.834231,0.664337,0.775203,0.267139,0.418693,0.254233,0.834964,0.227216,0.452707,0.865352,0.839741,0.167941,0.148248,0.302418,0.808786,0.123544,0.404874,0.376305,0.758614,0.591161,0.986992,0.191369,0.605152,0.298888,0.390208,0.311513,0.771043,0.638186,0.712207,0.150185,0.776802,0.128592,0.155235,0.224303,0.392582,0.969195,0.798525,0.834468,0.382102,0.301811,0.153439,0.217163,0.84275,0.123062,0.520081,0.288389,0.952224,0.350439,0.924209,0.578795,0.701517,0.63559,0.95473,0.856534,0.502693,0.805489,0.683852,0.0984711,0.340579,0.897056,0.366225,0.886618,0.269151,0.791079,0.558402,0.466093,0.744817,0.56003,0.442695,0.537197,0.856728,0.911544,0.788794,0.143208,0.424414,0.735926,0.392586,0.357199,0.465768,0.332375,0.258302,0.941271,0.0976729,0.247293,0.309803,0.580207,0.268377,0.842765,0.309034,0.556168,0.955526,0.29059,0.942017,0.891671,0.440952,0.482076,0.305476,0.547639,0.966738,0.609911,0.472751,0.735943,0.26639,0.462703,0.39479,0.298464,0.00271124,0.59112,0.00424999,0.294172,0.940019,0.133471,0.12202,0.6385,0.0221058,0.912721,0.615283,0.938843,0.237214,0.158348,0.964326,0.526038,0.100966,0.943426,0.13164,0.953843,0.784725,0.69076,0.243578,0.910027,0.691746,0.511023,0.711812,0.426077,0.13817,0.847434,0.765894,0.508264,0.480678,0.129271,0.0346959,0.4851,0.0255125,0.486734,0.593086,0.170362,0.0953404,0.22601,0.279297,0.397781,0.00836653,0.207102,0.426612,0.765579,0.644234,0.647859,0.553774,0.843649,0.68952,0.357193,0.405234,0.750637,0.455446,0.4255,0.199432,0.00550574,0.253699,0.626638,0.868037,0.415126,0.988418,0.884422,0.00146985,0.561836,0.492698,0.210587,0.943374,0.171618,0.375405,0.0845929,0.257361,0.0186399,0.720917,0.507208,0.552098,0.797123,0.700449,0.674783,0.759626,0.0813762,0.235614,0.492637,0.410091,0.0804634,0.129303,0.727704,0.603766,0.879006,0.73777,0.791908,0.217024,0.0580732,0.538898,0.482927,0.111129,0.36538,0.948999,0.70082,0.848039,0.901184,0.996732,0.0563944,0.342472,0.645174,0.47358,0.972639,0.935225,0.56265,0.0999442,0.795657,0.711501,0.740853,0.935429,0.683333,0.74177,0.767487,0.973302,0.422745,0.645846,0.241874,0.303761,0.0554606,0.601704,0.61012,0.261588,0.189876,0.767504,0.477311,0.619573,0.43671,0.859239,0.226578,0.97739,0.121656,0.493903,0.316458,0.904257,0.785123,0.72706,0.848759,0.0476775,0.896392,0.701437,0.224437,0.172819,0.236848,0.445833,0.144894,0.531777,0.703738,0.484331,0.962269,0.238292,0.76899,0.0834502,0.713609,0.469439,0.156216,0.306809,0.615668,0.250017,0.0193027,0.325105,0.700217,0.672469,0.867606,0.632042,0.402019,0.714034,0.409821,0.538651,0.551295,0.660597,0.62401,0.586618,0.295408,0.254841,0.806611,0.0100057,0.347468,0.63028,0.660193,0.500717,0.538803,0.101246,0.521735,0.281604,0.0319233,0.213769,0.949524,0.351099,0.922965,0.431985,0.219076,0.442586,0.865935,0.882134,0.455748,0.378576,0.557276,0.35605,0.283379,0.476058,0.456668,0.215185,0.635864,0.509341,0.981145,0.943,0.244193,0.406467,0.546094,0.379014,0.297412,0.349093,0.444264,0.162665,0.563749,0.822774,0.19457,0.79205,0.877981,0.895921,0.0579634,0.810418,0.340418,0.365247,0.638599,0.20939,0.240882,0.798315,0.25364,0.714773,0.699683,0.948119,0.15926,0.110345,0.990977,0.995844,0.7896,0.844009,0.552317,0.821672,0.936236,0.650953,0.579576,0.029874,0.981881,0.323459,0.386817,0.0761781,0.191834,0.139507,0.871682,0.149628,0.852986,0.937753,0.266993,0.370601,0.482858,0.235073,0.545642,0.939233,0.8483,0.0675246,0.953725,0.09999,0.0703502,0.255988,0.609824,0.413873,0.0551912,0.529871,0.10157,0.514351,0.125067,0.2104,0.00378567,0.678166,0.663493,0.320112,0.648336,0.787197,0.0278696,0.79005,0.382692,0.225646,0.290635,0.86751,0.28288,0.760008,0.734444,0.26386,0.998117,0.0827171,0.381748,0.945378,0.416733,0.0862543,0.693105,0.862977,0.759452,0.152587,0.569382,0.396501,0.61801,0.147883,0.0645537,0.326401,0.59536,0.117312,0.988809,0.746924,0.600132,0.378288,0.131368,0.421571,0.937249,0.577631,0.377833,0.597861,0.315729,0.706374,0.809098,0.313728,0.544127,0.500596,0.135204,0.228291,0.783521,0.915102,0.413361,0.910519,0.551151,0.347052,0.57174,0.133514,0.7528,0.177213,0.139848,0.293404,0.545737,0.83759,0.909891,0.0589266,0.0724278,0.857746,0.127275,0.486423,0.873305,0.670412,0.179009,0.682829,0.526189,0.534582,0.805758,0.41992,0.975722,0.269898,0.734307,0.981895,0.0937994,0.614436,0.433924,0.0540894,0.116936,0.888179,0.3678,0.423306,0.297032,0.460433,0.0759943,0.379443,0.323165,0.488745,0.985236,0.623237,0.971658,0.796322,0.477709,0.0542718,0.140837,0.514195,0.0294339,0.965669,0.915898,0.587974,0.992638,0.30492,0.77106,0.979492,0.623152,0.773719,0.296918,0.811252,0.23641,0.403603,0.0312811,0.496329,0.985241,0.547455,0.13485,0.230271,0.315962,0.44655,0.560124,0.836297,0.509452,0.574752,0.977553,0.827522,0.66143,0.524904,0.701029,0.10151,0.98986,0.898486,0.926346,0.0921591,0.797615,0.202836,0.887191,0.0249589,0.357021,0.599482,0.718866,0.662931,0.0959206,0.281622,0.516955,0.271014,0.517793,0.27436,0.963878,0.383144,0.587678,0.815673,0.700573,0.187284,0.384212,0.996999,0.501628,0.774599,0.352685,0.452031,0.875068,0.512918,0.480178,0.830542,0.780037,0.391936,0.586556,0.943066,0.647923,0.0805464,0.0280048,0.335906,0.453741,0.486467,0.35615,0.226515,0.180732,0.499674,0.0497317,0.903492,0.209603,0.16121,0.685349,0.140182,0.196751,0.287992,0.810785,0.259908,0.695689,0.421081,0.172555,0.487399,0.984884,0.0995125,0.559297,0.832718,0.958071,0.0344121,0.843041,0.0142242,0.174101,0.971804,0.367798,0.355562,0.548827,0.223717,0.392912,0.905513,0.688416,0.965914,0.173136,0.374867,0.116377,0.817706,0.43014,0.153307,0.158587,0.77966,0.116555,0.470135,0.225501,0.297046,0.663533,0.115905,0.0512658,0.933032,0.525976,0.254419,0.280281,0.383274,0.329635,0.462572,0.330584,0.647737,0.552593,0.710674,0.943238,0.544352,0.378489,0.67624,0.43786,0.0531857,0.401005,0.790481,0.544188,0.69983,0.166214,0.00672352,0.0072906,0.228445,0.411072,0.176023,0.235422,0.73163,0.549826,0.942856,0.187033,0.0165824,0.331717,0.664222,0.153067,0.638074,0.285393,0.28976,0.397405,0.552778,0.00325096,0.806351,0.0977907,0.610466,0.314111,0.823321,0.623759,0.725786,0.0288324,0.974273,0.0165343,0.604461,0.141507,0.677011,0.246702,0.40139,0.0771529,0.910749,0.382323,0.631002,0.760022,0.580101,0.395867,0.968534,0.0110252,0.885854,0.127989,0.231808,0.553259,0.244653,0.850398,0.454011,0.615171,0.907214,0.129641,0.178151,0.200978,0.919063,0.367795,0.171066,0.408019,0.012963,0.187202,0.9472,0.22761,0.993317,0.0437447,0.711656,0.168837,0.651425,0.137571,0.87685,0.152008,0.966338,0.00570792,0.272566,0.0859506,0.602698,0.877511,0.26216,0.618673,0.392842,0.710094,0.763888,0.8023,0.0308871,0.381793,0.560226,0.293889,0.553411,0.795892,0.186184,0.583445,0.424825,0.308048,0.720401,0.974868,0.60528,0.276942,0.751744,0.0718746,0.406858,0.1976,0.711215,0.0507351,0.51169,0.867708,0.858926,0.321177,0.837801,0.337314,0.286153,0.754645,0.650468,0.21321,0.326042,0.567999,0.867393,0.0533687,0.421545,0.0561378,0.286548,0.0917678,0.777571,0.823901,0.877477,0.264066,0.9678,0.332084,0.181325,0.404505,0.301311,0.646199,0.50843,0.511745,0.446312,0.617121,0.253834,0.167687,0.653653,0.45249,0.0139388,0.468824,0.095122,0.0979666,0.878214,0.699859,0.0992911,0.841066,0.737249,0.996083,0.29289,0.642832,0.217016,0.230913,0.21675,0.0708418,0.867865,0.0768618,0.571051,0.0784807,0.777995,0.468443,0.513417,0.0221773,0.625915,0.604203,0.305082,0.968238,0.296678,0.242009,0.202674,0.866816,0.959121,0.744047,0.705177,0.767175,0.252059,0.285097,0.983756,0.980322,0.587866,0.595036,0.93322,0.0441856,0.669566,0.619349,0.238908,0.824449,0.994854,0.487957,0.504011,0.56049,0.659515,0.960496,0.665,0.0586011,0.171757,0.296648,0.311185,0.10716,0.674618,0.790121,0.0881395,0.484817,0.39395,0.0941644,0.57279,0.691142,0.960929,0.40196,0.984819,0.474299,0.903772,0.563365,0.216452,0.332604,0.355346,0.243442,0.985188,0.779121,0.560333,0.54928,0.410426,0.624089,0.743775,0.870028,0.023057,0.769617,0.513834,0.895235,0.815287,0.906749,0.145888,0.700752,0.607507,0.644941,0.492547,0.588934,0.723257,0.929834,0.247436,0.29723,0.939475,0.602144,0.924832,0.829448,0.0119064,0.582146,0.716217,0.514463,0.0714089,0.929354,0.7467,0.00534689,0.567901,0.550186,0.0754779,0.935096,0.999387,0.574539,0.198922,0.0141175,0.718292,0.0649342,0.497599,0.234174,0.187212,0.313338,0.158415,0.545591,0.565677,0.548053,0.448218,0.404133,0.3461,0.966561,0.483485,0.61839,0.301266,0.116482,0.287358,0.608555,0.14822,0.207993,0.592293,0.337548,0.649618,0.778781,0.581366,0.173697,0.433257,0.0839527,0.320089,0.625099,0.470564,0.765726,0.282774,0.650622,0.478521,0.946318,0.703679,0.212383,0.0476566,0.559803,0.277859,0.569171,0.621388,0.546334,0.81884,0.106427,0.586192,0.875208,0.91257,0.417597,0.74332,0.241598,0.466311,0.26467,0.907269,0.173006,0.645964,0.853292,0.105767,0.518604,0.273454,0.441615,0.867942,0.730481,0.391258,0.941632,0.931653,|0.881439,0.487053,0.784729,0.298079,0.785367,0.951918,0.58449,0.902851,0.61192,0.920665,0.605433,0.840731,0.693615,0.659923,0.42945,0.925312,0.943312,0.159327,0.850705,0.644996,0.312277,0.046004,0.646166,0.37302,0.929198,0.374673,0.964805,0.386311,0.68553,0.0989091,0.247106,0.153547,0.335738,0.855261,0.924706,0.494751,0.391959,0.0297883,0.2796,0.467233,0.792026,0.916702,0.211143,0.79528,0.759871,0.683949,0.35736,0.0427676,0.540032,0.00790578,0.468731,0.648313,0.288603,0.377245,0.0188737,0.538167,0.627552,0.0358243,0.154241,0.838264,0.475999,0.765496,0.925019,0.484091,0.155684,0.957987,0.539043,0.695675,0.350242,0.703642,0.498368,0.392033,0.230909,0.512012,0.202314,0.0168499,0.457529,0.422531,0.306159,0.57836,0.551731,0.76003,0.52139,0.466207,0.299844,0.131141,0.202385,0.312932,0.602793,0.877038,0.42872,0.93899,0.0378141,0.320423,0.366231,0.294486,0.0100697,0.304018,0.194111,0.0980287,0.803767,0.0716834,0.872451,0.775525,0.341867,0.532456,0.398298,0.421952,0.369545,0.695712,0.941634,0.118831,0.125539,0.992912,0.149468,0.705547,0.964183,0.195868,0.722127,0.846567,0.874134,0.486079,0.263749,0.655956,0.488528,0.195801,0.0557408,0.77739,0.425172,0.902069,0.0128242,0.13671,0.35902,0.708351,0.521406,0.429984,0.618875,0.619556,0.479217,0.346315,0.638351,0.919217,0.436668,0.824185,0.327172,0.586692,0.666416,0.239051,0.523412,0.168853,0.103621,0.952925,0.596647,0.508995,0.847691,0.808996,0.813954,0.76702,0.215412,0.548742,0.997357,0.605931,0.0250185,0.522706,0.789891,0.869259,0.655437,0.00339478,0.238908,0.897393,0.145866,0.348021,0.919632,0.554246,0.87063,0.474748,0.583684,0.974589,0.464524,0.339411,0.854984,0.971504,0.179007,0.873161,0.540575,0.957611,0.99086,0.304055,0.319344,0.74627,0.389572,0.398587,0.158646,0.599719,0.425407,0.285768,0.649576,0.568923,0.561546,0.377501,0.313837,0.183091,0.179391,0.36517,0.34395,0.571305,0.256183,0.90779,0.969245,0.243045,0.337354,0.936998,0.484752,0.6444,0.17402,0.591481,0.297683,0.340146,0.529625,0.901922,0.418854,0.60452,0.946478,0.0325038,0.996487,0.199424,0.643475,0.202922,0.0827674,0.345455,0.423801,0.157964,0.222871,0.337048,0.0854198,0.901069,0.132239,0.307279,0.236336,0.547702,0.158444,0.886776,0.894876,0.210908,0.71681,0.919701,0.978388,0.638548,0.138667,0.134934,0.262434,0.457357,0.620839,0.747073,0.673561,0.277148,0.26471,0.13626,0.47431,0.382279,0.624955,0.98058,0.143361,0.535794,0.124397,0.839661,0.633305,0.0743977,0.608268,0.210799,0.650522,0.797922,0.0182042,0.340877,0.480941,0.490683,0.732489,0.0821202,0.990122,0.080927,0.88156,0.472437,0.0679504,0.136194,0.579809,0.343116,0.948658,0.0310107,0.421895,0.269086,0.19278,0.556355,0.651299,0.375877,0.0791686,0.300274,0.727073,0.26196,0.214917,0.110778,0.268682,0.5312,0.0108458,0.803047,0.0675345,0.476083,0.79157,0.165364,0.49881,0.477937,0.860134,0.701154,0.539085,0.00729543,0.849795,0.231725,0.330809,0.107928,0.799705,0.473879,0.468843,0.874003,0.00104243,0.0756012,0.055626,0.280918,0.144655,0.567582,0.955017,0.62509,0.991411,0.198759,0.384046,0.0655243,0.900704,0.056154,0.608528,0.980121,0.66234,0.707155,0.780682,0.116756,0.682699,0.337322,0.0565975,0.211668,0.139433,0.0886258,0.455019,0.266742,0.0776592,0.548225,0.516026,0.194645,0.0359695,0.389392,0.993225,0.00670385,0.21943,0.688333,0.211322,0.51607,0.655413,0.712444,0.623235,0.292587,0.595688,0.730084,0.556506,0.57425,0.620839,0.832128,0.320731,0.367472,0.197684,0.247884,0.307805,0.465005,0.986452,0.20845,0.981011,0.500377,0.260063,0.20034,0.315408,0.723211,0.665136,0.92365,0.696634,0.893427,0.182353,0.404574,0.547188,0.443961,0.159186,0.889516,0.103769,0.520643,0.0510271,0.601928,0.516807,0.324458,0.841472,0.870932,0.604768,0.727778,0.765497,0.770407,0.470409,0.363609,0.530597,0.510952,0.631908,0.330414,0.395387,0.291901,0.798336,0.963183,0.317022,0.462642,0.655478,0.896087,0.819535,0.312792,0.757042,0.93921,0.061002,0.294317,0.280509,0.240867,0.961949,0.190089,0.074623,0.966682,0.476136,0.394761,0.723293,0.49436,0.736029,0.877737,0.732952,0.950865,0.795075,0.681269,0.851864,0.113596,0.111841,0.749053,0.199454,0.410268,0.445003,0.919858,0.708596,0.760092,0.425558,0.0261498,0.589346,0.0662887,0.394139,0.373728,0.504489,0.946477,0.280897,0.136154,0.57682,0.262042,0.54477,0.487746,0.366019,0.466196,0.212824,0.446315,0.725238,0.0491831,0.102688,0.705571,0.615131,0.0237262,0.36917,0.877793,0.668095,0.534536,0.213482,0.339954,0.79561,0.226608,0.841736,0.655852,0.893308,0.00714278,0.841543,0.760173,0.952015,0.391722,0.842124,0.904291,0.323403,0.662476,0.855333,0.238161,0.0750235,0.768269,0.145832,0.529241,0.271981,0.205909,0.219308,0.985485,0.660158,0.201368,0.324519,0.713482,0.330227,0.479162,0.464402,0.284939,0.241045,0.655866,0.867047,0.745609,0.238871,0.0686479,0.356384,0.938176,0.4376,0.699138,0.478335,0.535968,0.857417,0.780466,0.332695,0.966745,0.84986,0.763199,0.398476,0.308339,0.567637,0.659372,0.948821,0.555599,0.233567,0.321808,0.877437,0.0892431,0.0435423,0.119979,0.0546253,0.413431,0.289955,0.709531,0.748067,0.243988,0.925989,0.100106,0.765728,0.565079,0.659061,0.964232,0.107159,0.559967,0.10518,0.711681,0.913383,0.627946,0.832121,0.733424,0.546835,0.0796113,0.685598,0.232482,0.289831,0.649519,0.0843845,0.82158,0.866837,0.925344,0.089662,0.017671,0.570042,0.132895,0.644245,0.187837,0.0937146,0.176089,0.460437,0.896626,0.443334,0.339335,0.0521962,0.443072,0.524403,0.787166,0.0615477,0.0978172,0.198816,0.033498,0.892183,0.899405,0.815814,0.51584,0.895721,0.0286217,0.222626,0.769217,0.00667089,0.190513,0.0929907,0.717787,0.725877,0.874194,0.51338,0.172888,0.00517738,0.30471,0.668234,0.22739,0.461936,0.693132,0.352701,0.12134,0.0214136,0.832028,0.243542,0.914665,0.955028,0.0376071,0.253131,0.601374,0.356878,0.67344,0.487597,0.666786,0.600883,0.578472,0.714387,0.276872,0.0152443,0.603843,0.984803,0.0469236,0.0782229,0.463505,0.151874,0.657361,0.44394,0.277884,0.168122,0.556683,0.315678,0.152881,0.8044,0.517618,0.821841,0.132525,0.656578,0.779036,0.716397,0.715042,0.0274069,0.185801,0.990892,0.165219,0.890798,0.259063,0.403914,0.822324,0.742979,0.217577,0.0364347,0.62226,0.876085,0.0291383,0.77182,0.906892,0.308569,0.449475,0.602765,0.228726,0.305125,0.226156,0.919768,0.393805,0.524649,0.554545,0.0170816,0.494716,0.0988154,0.163369,0.691735,0.212788,0.0583754,0.0164167,0.622898,0.393005,0.686862,0.0080291,0.741501,0.431172,0.820886,0.142426,0.485588,0.872214,0.0664684,0.770714,0.53364,0.460967,0.574345,0.717341,0.185621,0.976702,0.544752,0.588412,0.300032,0.990598,0.568664,0.890449,0.975493,0.492022,0.250404,0.31121,0.730172,0.947745,0.634169,0.34319,0.845851,0.208191,0.932356,0.749463,0.10191,0.218186,0.771005,0.59378,0.0505489,0.271329,0.735119,0.160787,0.470946,0.929821,0.75266,0.842575,0.523366,0.0389072,0.507394,0.32602,0.0835063,0.249217,0.696726,0.969734,0.519981,0.250342,0.221261,0.29132,0.382574,0.902895,0.577956,0.00288683,0.246313,0.671139,0.141785,0.135556,0.308579,0.704844,0.863707,0.426014,0.672724,0.283548,0.158955,0.192114,0.0880029,0.490976,0.245388,0.278672,0.795143,0.549335,0.345095,0.475955,0.968582,0.634445,0.826038,0.913164,0.452507,0.845958,0.38776,0.278774,0.951174,0.945022,0.770664,0.226159,0.236447,0.324799,0.446551,0.630622,0.143474,0.784454,0.883937,0.774236,0.403821,0.30228,0.0710213,0.343251,0.312384,0.33141,0.568207,0.535109,0.571177,0.962148,0.637102,0.472232,0.304782,0.721183,0.932385,0.620708,0.387871,0.698444,0.431286,0.0408969,0.321293,0.0639957,0.170205,0.347944,0.527965,0.996791,0.809453,0.33167,0.939026,0.457238,0.0713651,0.171857,0.405453,0.122269,0.510075,0.70458,0.307667,0.725005,0.482892,0.594795,0.236282,0.632017,0.204677,0.585579,0.405795,0.510057,0.18394,0.536064,0.404069,0.979645,0.0994939,0.0273977,0.202928,0.388549,0.248499,0.682061,0.82368,0.358942,0.756173,0.151218,0.816,0.39883,0.0671008,0.054195,0.0365294,0.549892,0.0844471,0.378901,0.195077,0.380094,0.105222,0.948394,0.857607,0.491641,0.87698,0.883509,0.589056,0.408021,0.620569,0.948227,0.362411,0.315259,0.0451514,0.0519584,0.236817,0.579733,0.282104,0.0469581,0.540267,0.841263,0.178057,0.0203636,0.711916,0.132361,0.248349,0.0186355,0.62218,0.0023489,0.348348,0.883984,0.889158,0.431751,0.0115919,0.926198,0.836299,0.0372553,0.386679,0.793233,0.489122,0.928171,0.770433,0.80785,0.892652,0.00838965,0.396477,0.994318,0.986557,0.903554,0.88935,0.945617,0.553777,0.0958361,0.485542,0.513485,0.929664,0.0342051,0.684958,0.943606,0.351297,0.405536,0.624445,0.486125,0.564652,0.071391,0.0104323,0.942565,0.922258,0.907454,0.0637222,0.217672,0.553382,0.37739,0.559328,0.381207,0.798636,0.997618,0.734262,0.67127,0.34682,0.00285804,0.930801,0.810566,0.902217,0.282927,0.236844,0.0955982,0.98167,0.640952,0.737584,0.487119,0.424778,0.2063,0.335008,0.0201423,0.139254,0.530614,0.696778,0.758301,0.452363,0.484363,0.236596,0.956749,0.919886,0.623636,0.853827,0.50984,0.244408,0.715372,0.58472,0.111636,0.851365,0.0896617,0.418223,0.972853,0.13248,0.896725,0.909876,0.329991,0.217297,0.599638,0.688609,0.458394,0.772893,0.473281,0.995155,0.421874,0.903529,0.585347,0.90939,0.314166,0.337483,0.190661,0.209093,0.783158,|0.61767,0.424412,0.950943,0.338891,0.160015,0.300444,0.883574,0.159375,0.744717,0.987677,0.168019,0.895734,0.174853,0.269741,0.0194969,0.755673,0.349197,0.50428,0.433037,0.45339,0.790864,0.758085,0.552144,0.264195,0.533955,0.723425,0.525716,0.488172,0.0903154,0.192346,0.955547,0.305865,0.800228,0.65303,0.00340611,0.902114,0.909855,0.0211508,0.912838,0.187248,0.516313,0.420012,0.884988,0.859226,0.185519,0.738589,0.31354,0.944167,0.0910785,0.276884,0.531803,0.776665,0.775948,0.859569,0.67095,0.896018,0.452076,0.0547375,0.954994,0.327833,0.374441,0.808394,0.646936,0.968738,0.948773,0.295173,0.634696,0.163281,0.370871,0.139468,0.206438,0.0603,0.415841,0.268824,0.381396,0.631034,0.0112212,0.714518,0.00429016,0.695027,0.674654,0.861095,0.407601,0.0563754,0.995787,0.000413597,0.129565,0.0083549,0.862164,0.0608034,0.545021,0.643634,0.31883,0.255108,0.812227,0.176531,0.246377,0.957969,0.0190278,0.37637,0.997066,0.00765568,0.457175,0.51094,0.622248,0.913196,0.553897,0.223325,0.109808,0.150022,0.0063954,0.0993649,0.898085,0.776549,0.676477,0.114918,0.276284,0.784634,0.447542,0.706258,0.342259,0.644699,0.446246,0.590829,0.866587,0.68784,0.966953,0.689822,0.853849,0.582377,0.826431,0.0425279,0.0970156,0.132529,0.687562,0.732548,0.345395,0.230938,0.0900273,0.966045,0.262331,0.913896,0.935067,0.70714,0.822902,0.0762706,0.339747,0.885517,0.483749,0.665727,0.00125283,0.49305,0.868388,0.399116,0.37451,0.730389,0.314123,0.716647,0.363811,0.194859,0.877637,0.466011,0.318213,0.266299,0.513549,0.897922,0.281481,0.54569,0.1329,0.469904,0.466082,0.229756,0.116638,0.241426,0.054597,0.946673,0.0753858,0.705496,0.837456,0.224643,0.28299,0.186699,0.62828,0.479062,0.44622,0.19422,0.247457,0.249207,0.715504,0.940546,0.827764,0.388253,0.349786,0.838905,0.478405,0.0733285,0.717564,0.36647,0.758113,0.573319,0.737091,0.978817,0.144023,0.927339,0.706127,0.417722,0.574277,0.692039,0.0850697,0.836904,0.953341,0.283523,0.319298,0.778919,0.849928,0.600471,0.0436825,0.561112,0.992046,0.437279,0.48796,0.320283,0.810841,0.216502,0.449431,0.568364,0.114889,0.042424,0.991175,0.507261,0.5084,0.0265655,0.634576,0.243154,0.582716,0.641708,0.0810743,0.436333,0.507532,0.277618,0.546007,0.508056,0.0452284,0.397916,0.735167,0.917151,0.0437375,0.174802,0.153668,0.195055,0.934345,0.00470495,0.223959,0.53614,0.152978,0.639488,0.0746377,0.822602,0.166893,0.116171,0.207106,0.0988965,0.43563,0.586686,0.218898,0.342292,0.682812,0.63831,0.980609,0.673265,0.136592,0.196021,0.506076,0.774525,0.812297,0.311227,0.298118,0.914744,0.135092,0.711499,0.92015,0.882314,0.12709,0.0367216,0.179088,0.212164,0.129787,0.55393,0.311776,0.573245,0.957428,0.448563,0.48248,0.351929,0.417023,0.471666,0.430615,0.778332,0.597342,0.760004,0.189227,0.322699,0.611746,0.237325,0.334304,0.594243,0.49921,0.443961,0.833032,0.187924,0.96329,0.16899,0.756824,0.668906,0.615923,0.862638,0.665666,0.588866,0.804843,0.595113,0.494399,0.470285,0.527031,0.970937,0.671215,0.874722,0.560333,0.911069,0.592146,0.250973,0.303405,0.658576,0.911899,0.275289,0.632057,0.622576,0.283437,0.740366,0.0185788,0.0298845,0.260127,0.616489,0.385863,0.221405,0.115762,0.933017,0.610364,0.765883,0.970293,0.636029,0.689097,0.592065,0.683547,0.191713,0.582264,0.635795,0.045711,0.124237,0.538913,0.576862,0.665056,0.047217,0.585201,0.232672,0.852848,0.365589,0.539177,0.691209,0.72698,0.178688,0.993653,0.68497,0.969168,0.988648,0.844141,0.669364,0.654978,0.497425,0.964972,0.579926,0.513529,0.18173,0.505587,0.365389,0.797813,0.758439,0.163935,0.55245,0.3652,0.61753,0.180065,0.31499,0.524554,0.573018,0.615255,0.986719,0.969599,0.289523,0.52335,0.46818,0.881694,0.308384,0.876425,0.74804,0.553854,0.090214,0.936299,0.180299,0.611452,0.841925,0.783267,0.58512,0.579779,0.535056,0.596508,0.716749,0.017417,0.693524,0.929905,0.74117,0.94079,0.352362,0.585462,0.819951,0.373232,0.978574,0.703749,0.695455,0.707235,0.955298,0.726254,0.0705394,0.768352,0.497182,0.81311,0.127666,0.511361,0.414742,0.516701,0.327143,0.0329115,0.360333,0.880686,0.6573,0.610851,0.720445,0.521807,0.581222,0.198102,0.74638,0.318681,0.251922,0.322318,0.361437,0.456293,0.597503,0.584009,0.732579,0.510135,0.116685,0.579237,0.277141,0.817891,0.170758,0.480121,0.585794,0.73539,0.980232,0.0900593,0.156176,0.620307,0.885923,0.102109,0.183833,0.936533,0.851589,0.725799,0.876021,0.860373,0.198339,0.612331,0.0631894,0.951544,0.31048,0.80474,0.320598,0.880391,0.710139,0.526055,0.515535,0.601576,0.632908,0.902297,0.117405,0.977405,0.635124,0.473639,0.0860708,0.446954,0.165699,0.347313,0.268976,0.608318,0.115324,0.00650895,0.90643,0.347053,0.512677,0.444078,0.27643,0.572352,0.878045,0.121345,0.773282,0.199176,0.37709,0.557745,0.685136,0.357096,0.923943,0.38707,0.101621,0.0886358,0.720903,0.622596,0.409341,0.808608,0.6949,0.508785,0.307967,0.265755,0.507832,0.92145,0.347021,0.523987,0.274505,0.010669,0.956974,0.670321,0.827617,0.745113,0.722153,0.40484,0.523631,0.226879,0.550036,0.225365,0.845506,0.91168,0.679265,0.0245783,0.621294,0.434854,0.00902104,0.179586,0.494242,0.999354,0.143508,0.656792,0.804215,0.912845,0.0120262,0.70539,0.572792,0.0213817,0.30063,0.222875,0.460668,0.515545,0.921002,0.0519201,0.461108,0.953751,0.367006,0.512762,0.79622,0.96666,0.0719372,0.89989,0.625893,0.374571,0.00219238,0.897451,0.490111,0.284222,0.00152034,0.926373,0.406912,0.278639,0.889107,0.0157967,0.915964,0.589864,0.207671,0.881621,0.288769,0.912804,0.753639,0.560241,0.802022,0.972377,0.314622,0.784259,0.28459,0.732597,0.65805,0.165641,0.214017,0.0875767,0.668329,0.891071,0.245709,0.949212,0.779396,0.986261,0.582635,0.793124,0.813578,0.70476,0.396129,0.289694,0.494123,0.397962,0.815272,0.50261,0.566604,0.00224155,0.384197,0.386721,0.417628,0.626524,0.20923,0.203098,0.192065,0.290556,0.281347,0.65206,0.323546,0.572425,0.450783,0.640157,0.76173,0.446479,0.854872,0.220318,0.350978,0.0844864,0.600455,0.0746681,0.972412,0.79214,0.813989,0.0506274,0.987688,0.942646,0.69215,0.918948,0.0824583,0.612654,0.540612,0.134774,0.829899,0.510535,0.351474,0.672683,0.0162444,0.120376,0.806733,0.465404,0.162621,0.182682,0.664888,0.461628,0.30217,0.470747,0.726324,0.937551,0.845886,0.373591,0.203428,0.401105,0.11433,0.659747,0.0188253,0.0442081,0.910812,0.236715,0.296861,0.432799,0.500793,0.742671,0.260677,0.935347,0.682587,0.176121,0.577791,0.763744,0.984542,0.230245,0.844656,0.258497,0.876633,0.37127,0.401655,0.606918,0.576995,0.222413,0.700328,0.280392,0.316818,0.413078,0.126628,0.373618,0.0633513,0.602799,0.143662,0.20459,0.482175,0.0751691,0.669154,0.744122,0.548738,0.51284,0.562261,0.472154,0.408831,0.15993,0.976793,0.30717,0.0743977,0.691456,0.989491,0.688555,0.128486,0.641392,0.0871419,0.0709161,0.951024,0.0549806,0.299003,0.288515,0.35852,0.251324,0.910531,0.00608766,0.831897,0.271567,0.889519,0.337217,0.178961,0.0967138,0.479705,0.333771,0.101196,0.611757,0.364755,0.404075,0.97541,0.993827,0.809463,0.743711,0.825358,0.080341,0.84085,0.0718486,0.670817,0.522895,0.876977,0.749625,0.399233,0.553752,0.868299,0.192819,0.642594,0.32851,0.450477,0.574116,0.920902,0.63356,0.790904,0.575286,0.917736,0.917387,0.133397,0.460031,0.459978,0.571574,0.977325,0.333101,0.98668,0.53298,0.811998,0.457681,0.831567,0.298974,0.801617,0.807571,0.745443,0.463955,0.780614,0.87394,0.458553,0.681434,0.76758,0.128995,0.505089,0.418088,0.583152,0.41727,0.353762,0.874394,0.740008,0.730895,0.788727,0.741812,0.22754,0.607564,0.127559,0.382203,0.488288,0.266463,0.246615,0.269397,0.34768,0.862386,0.718859,0.934392,0.938807,0.731202,0.331584,0.268764,0.866518,0.252476,0.72268,0.323562,0.74582,0.901356,0.75277,0.396644,0.796194,0.612554,0.687764,0.174109,0.389906,0.0576106,0.447028,0.870039,0.926434,0.614377,0.634937,0.331266,0.840958,0.368898,0.957446,0.748762,0.330934,0.751774,0.87392,0.839135,0.762858,0.642682,0.923576,0.211107,0.78754,0.277918,0.282316,0.361966,0.838703,0.206302,0.000392556,0.344638,0.918977,0.0657581,0.137065,0.0740892,0.916965,0.469577,0.00851154,0.648097,0.408202,0.188668,0.225947,0.114949,0.985615,0.224764,0.586071,0.104773,0.871468,0.29837,0.501605,0.822388,0.0729031,0.654209,0.645727,0.0217924,0.121937,0.631822,0.241815,0.331108,0.15043,0.94415,0.546863,0.222061,0.0836967,0.451465,0.726004,0.656519,0.779948,0.927912,0.920492,0.623579,0.069319,0.948074,0.336626,0.957963,0.765275,0.91206,0.848642,0.651585,0.861942,0.970789,0.953855,0.803357,0.579756,0.414063,0.867091,0.772313,0.391175,0.305407,0.420485,0.923094,0.399889,0.534383,0.489173,0.226264,0.925335,0.4968,0.712384,0.828256,0.422916,0.14832,0.510661,0.973504,0.701202,0.880867,0.780074,0.514771,0.410588,0.354656,0.290514,0.694219,0.959764,0.518233,0.0100992,0.558972,0.339995,0.625118,0.522311,0.822342,0.168028,0.878472,0.13912,0.95368,0.587854,0.168614,0.504273,0.0519012,0.354391,0.538489,0.319572,0.0224249,0.751036,0.213877,0.447548,0.525537,0.380932,0.0738519,0.582324,0.0676492,0.948238,0.134508,0.213533,0.0657039,0.056859,0.600918,0.534127,0.0701564,0.804964,0.493415,0.892772,0.861311,0.263715,0.988708,0.157415,0.281448,0.0376728,0.355477,0.28788,0.342874,0.470651,|0.750401,0.65722,0.487103,0.100303,0.576591,0.0756272,0.266637,0.36509,0.867343,0.326441,0.179788,0.588471,0.169001,0.116647,0.765922,0.403922,0.089883,0.447021,0.74662,0.247766,0.336724,0.301855,0.814267,0.686077,0.940586,0.923665,0.510238,0.882711,0.352873,0.817162,0.449406,0.775161,0.0135741,0.877133,0.68716,0.612355,0.0177076,0.598789,0.343248,0.815252,0.594391,0.784138,0.803325,0.559928,0.856912,0.560758,0.456502,0.148165,0.364099,0.81375,0.960414,0.332011,0.444282,0.38867,0.720817,0.611417,0.854335,0.500451,0.750294,0.331392,0.435335,0.495139,0.346071,0.696149,0.336469,0.732234,0.0477711,0.671419,0.23767,0.426941,0.221321,0.0193115,0.69127,0.505812,0.875949,0.746805,0.0488613,0.119851,0.410514,0.738702,0.471382,0.736113,0.543363,0.0890468,0.936226,0.485484,0.941273,0.868614,0.913027,0.913441,0.248895,0.228317,0.463614,0.866727,0.831337,0.689255,0.438233,0.158747,0.836261,0.106393,0.664171,0.3381,0.174586,0.859289,0.87543,0.101559,0.249532,0.611324,0.331289,0.176391,0.302002,0.00863177,0.27012,0.878351,0.63033,0.59431,0.119505,0.586216,0.424701,0.194987,0.156878,0.858512,0.562984,0.563567,0.453165,0.873039,0.952086,0.257546,0.151939,0.432371,0.253295,0.112352,0.25679,0.162129,0.788972,0.892231,0.256746,0.457867,0.657479,0.780152,0.362199,0.519171,0.612778,0.96011,0.857303,0.774727,0.197777,0.21474,0.815956,0.236733,0.0866445,0.340221,0.116716,0.898251,0.522782,0.6037,0.829128,0.715886,0.545438,0.910571,0.790834,0.442946,0.451176,0.123051,0.153378,0.14599,0.977029,0.302447,0.718804,0.746403,0.192175,0.940265,0.180825,0.71898,0.123226,0.0927802,0.785495,0.222401,0.00319427,0.525689,0.31255,0.476503,0.872534,0.203971,0.978457,0.319556,0.494353,0.666133,0.43921,0.207836,0.657205,0.0279192,0.0817759,0.343262,0.74027,0.823907,0.418127,0.00470114,0.467962,0.655629,0.979267,0.538656,0.529218,0.681125,0.0984659,0.540743,0.38063,0.829087,0.982927,0.510184,0.469179,0.748335,0.202479,0.594622,0.0629839,0.059053,0.482503,0.422969,0.861251,0.982179,0.849818,0.354084,0.628007,0.80523,0.455077,0.656155,0.360271,0.126082,0.972732,0.937332,0.786922,0.873458,0.799028,0.438458,0.694289,0.643368,0.956981,0.231572,0.261877,0.432309,0.21377,0.779228,0.398903,0.373631,0.466641,0.866122,0.904467,0.890099,0.936908,0.397156,0.167357,0.815428,0.314001,0.509193,0.7733,0.0395148,0.475879,0.271917,0.1652,0.00487101,0.80665,0.417966,0.160711,0.208657,0.0262201,0.39908,0.943714,0.908686,0.121985,0.56282,0.011169,0.125186,0.595552,0.557644,0.35531,0.355385,0.946752,0.83395,0.499582,0.944521,0.804972,0.783781,0.486282,0.259666,0.172726,0.731562,0.549668,0.0212659,0.261103,0.887669,0.606994,0.267773,0.245432,0.367373,0.73468,0.185102,0.310956,0.805161,0.827213,0.389178,0.563841,0.381792,0.135629,0.317832,0.901814,0.900035,0.38688,0.830571,0.915311,0.971313,0.710284,0.276744,0.322301,0.485053,0.352735,0.875245,0.39919,0.656759,0.0612881,0.887441,0.879136,0.813438,0.143644,0.272149,0.310274,0.222419,0.612625,0.652555,0.340986,0.0588509,0.407882,0.13356,0.673863,0.945647,0.830251,0.651866,0.422213,0.693057,0.895263,0.568239,0.0917524,0.0126095,0.649388,0.406216,0.366295,0.358334,0.559957,0.332951,0.265832,0.218807,0.220586,0.540966,0.791122,0.737777,0.211091,0.848326,0.562787,0.218651,0.246351,0.553196,0.638989,0.050465,0.535334,0.134869,0.916804,0.0397425,0.945573,0.332615,0.201183,0.645239,0.23362,0.0460308,0.884558,0.321541,0.655329,0.777917,0.627423,0.443125,0.28674,0.567787,0.547323,0.96122,0.71028,0.446065,0.930684,0.364917,0.427337,0.692476,0.726867,0.2251,0.0112691,0.193012,0.18892,0.555047,0.645852,0.93156,0.622452,0.315324,0.885513,0.40117,0.581211,0.688212,0.403794,0.0951347,0.580595,0.375524,0.861886,0.627255,0.773504,0.117617,0.382085,0.12999,0.975304,0.967483,0.513326,0.211819,0.189445,0.515525,0.153277,0.413976,0.953495,0.926531,0.946417,0.973962,0.298862,0.498106,0.345336,0.715736,0.493149,0.581091,0.604703,0.596291,0.143518,0.0893109,0.917153,0.456492,0.525675,0.898543,0.811987,0.0656855,0.149801,0.853762,0.531439,0.779304,0.603463,0.916586,0.97902,0.384233,0.117527,0.204539,0.56031,0.105867,0.23837,0.505526,0.510847,0.319047,0.221803,0.646564,0.290181,0.527832,0.348492,0.295604,0.831646,0.571953,0.0645491,0.0199169,0.159711,0.68704,0.0328726,0.11735,0.0756593,0.874079,0.455194,0.443329,0.040554,0.0192605,0.456865,0.312514,0.614242,0.930714,0.764282,0.192851,0.604497,0.749941,0.27586,0.184028,0.53552,0.662228,0.54985,0.858584,0.534457,0.638739,0.385669,0.0368258,0.618512,0.443195,0.010417,0.246756,0.995563,0.216762,0.736322,0.126635,0.0348296,0.917956,0.806456,0.149373,0.250263,0.44732,0.748468,0.0170142,0.0803748,0.388795,0.876108,0.765807,0.118903,0.721683,0.998236,0.259719,0.404798,0.218414,0.400414,0.112595,0.175619,0.667752,0.676789,0.932566,0.814235,0.423995,0.402177,0.639287,0.302633,0.351312,0.382332,0.569922,0.365136,0.13077,0.150491,0.178152,0.000227809,0.457122,0.950469,0.52012,0.110392,0.703518,0.616016,0.436949,0.21001,0.32103,0.425061,0.188983,0.514422,0.869654,0.348633,0.00875312,0.690174,0.73747,0.526283,0.0148853,0.308394,0.855995,0.874728,0.109168,0.114432,0.136901,0.15603,0.626186,0.291031,0.742513,0.742708,0.470209,0.0458916,0.473543,0.358173,0.923212,0.0355366,0.0751584,0.134292,0.0763144,0.904346,0.741136,0.237164,0.614443,0.671352,0.984064,0.194607,0.436259,0.657693,0.581022,0.899187,0.85321,0.119206,0.944162,0.979436,0.243117,0.571163,0.861636,0.229204,0.543193,0.312645,0.700767,0.3856,0.343653,0.639883,0.540231,0.00555229,0.239953,0.44696,0.85797,0.0951313,0.695385,0.677649,0.197378,0.179586,0.118476,0.299154,0.685937,0.861362,0.942726,0.0609796,0.957643,0.480721,0.624287,0.0506669,0.812345,0.955992,0.634138,0.484825,0.394334,0.345358,0.247341,0.0254421,0.246442,0.743864,0.366333,0.82177,0.184714,0.0185252,0.855981,0.433343,0.101875,0.923474,0.424402,0.547535,0.878929,0.171756,0.952892,0.184237,0.787533,0.402701,0.419101,0.572571,0.333079,0.182325,0.169938,0.0864486,0.208518,0.0148225,0.87989,0.897093,0.869577,0.544603,0.582196,0.989051,0.522327,0.0369309,0.880891,0.10475,0.618014,0.0039472,0.810419,0.266498,0.546344,0.163411,0.0741812,0.00350642,0.308952,0.0321631,0.599675,0.338183,0.25482,0.216541,0.694684,0.606539,0.658033,0.0846196,0.166127,0.313046,0.080768,0.863306,0.482592,0.86182,0.50619,0.563036,0.573932,0.187296,0.773728,0.428148,0.969794,0.440708,0.397783,0.523942,0.199361,0.545312,0.829862,0.043593,0.800927,0.704248,0.874548,0.3492,0.128203,0.472238,0.0545716,0.607291,0.907472,0.170179,0.616685,0.510619,0.657471,0.517436,0.834966,0.899154,0.603149,0.946293,0.0766364,0.410961,0.822559,0.505344,0.96516,0.00318336,0.745012,0.275833,0.397864,0.399134,0.0127791,0.439097,0.885252,0.0652466,0.306452,0.364051,0.317815,0.0471307,0.7086,0.129294,0.577893,0.453236,0.479764,0.336329,0.41357,0.557807,0.328977,0.836091,0.34143,0.70562,0.874069,0.293856,0.280134,0.414528,0.300007,0.0783434,0.370266,0.608044,0.32052,0.0677026,0.648226,0.557894,0.187103,0.530527,0.407027,0.817156,0.105432,0.998356,0.879578,0.422763,0.66313,0.941033,0.175018,0.587305,0.259362,0.71994,0.192205,0.197695,0.339399,0.750802,0.635063,0.986369,0.40015,0.295752,0.390089,0.346267,0.550014,0.0874009,0.337518,0.687404,0.358139,0.422387,0.497157,0.562409,0.76777,0.383954,0.480767,0.843046,0.747288,0.707032,0.455447,0.519331,0.471057,0.324508,0.479443,0.696543,0.632356,0.255892,0.896997,0.331053,0.393783,0.410162,0.283779,0.288852,0.0594366,0.591779,0.650508,0.933044,0.0230296,0.765172,0.216827,0.208435,0.00259215,0.525239,0.394737,0.782647,0.249788,0.528688,0.179314,0.604199,0.80867,0.699578,0.285066,0.0931782,0.640922,0.426823,0.337001,0.679685,0.134985,0.449107,0.801533,0.669192,0.917765,0.870362,0.13412,0.851626,0.45453,0.839534,0.741002,0.65926,0.73547,0.927282,0.0889719,0.108701,0.540406,0.29749,0.343029,0.320823,0.0391299,0.735259,0.789611,0.546061,0.76541,0.22312,0.0984403,0.700666,0.170982,0.736246,0.984413,0.691218,0.179479,0.21299,0.80747,0.54024,0.826695,0.127361,0.852642,0.689621,0.162751,0.517082,0.805168,0.0654703,0.659249,0.252817,0.526089,0.673749,0.306001,0.499791,0.523136,0.800705,0.661005,0.931287,0.423298,0.520965,0.387266,0.427755,0.950053,0.0584661,0.132727,0.260859,0.13551,0.342445,0.435529,0.973715,0.720932,0.956836,0.9201,0.452618,0.11594,0.814339,0.0770534,0.506748,0.0667651,0.383281,0.353063,0.236146,0.497124,0.308472,0.694767,0.811043,0.15966,0.941861,0.43186,0.113557,0.206432,0.0509185,0.447429,0.714735,0.746074,0.757471,0.649547,0.0610277,0.898326,0.473277,0.66618,0.269455,0.238103,0.691773,0.896439,0.15305,0.723565,0.781737,0.407454,0.939124,0.478606,0.384624,0.855499,0.118736,0.97081,0.543238,0.160578,0.614558,0.623353,0.724832,0.575134,0.640864,0.192453,0.483294,0.440185,0.58594,0.330691,0.0788239,0.244342,0.704232,0.568447,0.965847,0.733546,0.625131,0.150579,0.0647865,0.0576363,0.913707,0.00834346,0.180591,0.312995,0.592026,0.759366,0.520781,0.395997,0.496246,0.791326,0.773401,0.894604,0.870466,0.905001,0.258812,0.910465,0.913005,0.218727,0.751621,0.297748,0.329367,0.610663,0.246301,0.305113,0.876171,0.321105,|0.698149,0.626337,0.850412,0.312811,0.332783,0.766669,0.826038,0.309207,0.869468,0.363757,0.668375,0.00402749,0.686445,0.259577,0.0112612,0.338208,0.0608815,0.878793,0.501219,0.487981,0.90172,0.832638,0.0868375,0.627604,0.162937,0.625081,0.537554,0.696276,0.579105,0.719353,0.929683,0.88714,0.537201,0.56399,0.843471,0.12058,0.366573,0.459295,0.0232038,0.789129,0.784724,0.536007,0.669077,0.579396,0.354436,0.972864,0.591712,0.586976,0.0185535,0.37924,0.51185,0.364673,0.538517,0.573429,0.564958,0.62064,0.00381833,0.598369,0.903259,0.419629,0.0451331,0.761164,0.00694776,0.233746,0.786396,0.57785,0.555344,0.355332,0.118659,0.46975,0.0686014,0.000461042,0.823863,0.730314,0.870187,0.891931,0.550162,0.139802,0.79928,0.559826,0.412162,0.589594,0.339566,0.714659,0.240758,0.44499,0.0425417,0.28534,0.842313,0.0537292,0.0332513,0.585206,0.95561,0.890232,0.903225,0.828661,0.978247,0.424548,0.0841038,0.0999869,0.666853,0.31374,0.852955,0.0661998,0.268958,0.128022,0.102895,0.941799,0.641696,0.633615,0.0584976,0.380205,0.445988,0.711522,0.201808,0.489537,0.374728,0.555886,0.667713,0.957669,0.326101,0.65775,0.40221,0.929157,0.467425,0.381336,0.311492,0.285519,0.0434196,0.481277,0.929579,0.252078,0.468488,0.72682,0.100792,0.617669,0.037796,0.146391,0.17723,0.850784,0.542526,0.0803983,0.20761,0.374907,0.145537,0.0308883,0.397036,0.106111,0.399977,0.558015,0.078536,0.268162,0.151877,0.999368,0.551688,0.2578,0.0519762,0.827712,0.66436,0.676231,0.82632,0.102892,0.117212,0.795595,0.635063,0.457798,0.203743,0.821984,0.0456979,0.449694,0.731903,0.389172,0.467758,0.243317,0.379073,0.773472,0.44055,0.468035,0.962841,0.979183,0.808382,0.593205,0.778116,0.193673,0.0182559,0.69174,0.911297,0.435722,0.62786,0.121985,0.507297,0.788819,0.788777,0.458331,0.295938,0.432682,0.463017,0.369101,0.32024,0.653899,0.0323386,0.0613598,0.499096,0.332637,0.360427,0.31296,0.468812,0.576199,0.521459,0.157195,0.810631,0.900355,0.531973,0.191798,0.378455,0.12184,0.361125,0.284757,0.491839,0.413868,0.150097,0.870189,0.280213,0.222156,0.981344,0.974453,0.549853,0.566353,0.126173,0.922423,0.274887,0.847345,0.474802,0.511309,0.388736,0.219421,0.989203,0.937527,0.731615,0.141792,0.623788,0.161131,0.982947,0.909522,0.434434,0.690204,0.532487,0.427781,0.429872,0.891876,0.622327,0.294504,0.207588,0.41534,0.118945,0.73728,0.931927,0.878677,0.313328,0.755171,0.042172,0.0109499,0.399653,0.753527,0.0722812,0.420307,0.884309,0.148498,0.950899,0.590696,0.143929,0.437685,0.189297,0.580885,0.220471,0.55564,0.20283,0.301862,0.708895,0.0091635,0.281604,0.0176345,0.984876,0.656376,0.697684,0.545983,0.945869,0.592768,0.378776,0.934863,0.563533,0.887566,0.710529,0.83846,0.0816527,0.217779,0.574239,0.249607,0.466175,0.898918,0.539581,0.989073,0.807705,0.00665569,0.448224,0.110919,0.659038,0.911084,0.420908,0.420592,0.809568,0.306817,0.122512,0.637616,0.0761327,0.00941736,0.170253,0.732787,0.456077,0.641343,0.544785,0.798406,0.964028,0.408187,0.509303,0.208343,0.803831,0.415309,0.0696731,0.171894,0.884026,0.666221,0.753496,0.779693,0.0433212,0.882649,0.621808,0.31762,0.317085,0.958304,0.337801,0.383055,0.164316,0.920883,0.538505,0.392078,0.0381898,0.236307,0.0239373,0.829227,0.435951,0.808588,0.812862,0.0554823,0.0212231,0.0292525,0.552504,0.225768,0.603817,0.793398,0.710256,0.157096,0.0849043,0.284509,0.630264,0.335047,0.509194,0.130567,0.1132,0.189608,0.369785,0.398715,0.19761,0.127475,0.752285,0.913249,0.856308,0.428319,0.0140464,0.051168,0.774817,0.63379,0.276976,0.196764,0.23741,0.874596,0.939111,0.597953,0.12798,0.269235,0.407426,0.240213,0.850469,0.54021,0.118797,0.10397,0.0413015,0.188987,0.308661,0.978295,0.319907,0.758611,0.307235,0.1003,0.669082,0.837097,0.826243,0.291511,0.380039,0.279773,0.579906,0.864728,0.867884,0.0745987,0.182644,0.392856,0.000585675,0.429662,0.312126,0.779308,0.716978,0.183105,0.473377,0.946879,0.802812,0.0642401,0.0383011,0.175852,0.276468,0.962525,0.48086,0.839701,0.140001,0.821691,0.0249918,0.916403,0.116767,0.673835,0.260742,0.792536,0.511253,0.452811,0.670586,0.349617,0.519306,0.355195,0.194279,0.99225,0.236117,0.95906,0.788879,0.800674,0.338508,0.036711,0.972983,0.461018,0.572441,0.1222,0.436913,0.0564582,0.314732,0.840945,0.479192,0.901131,0.411245,0.805737,0.539859,0.295822,0.292569,0.383055,0.501203,0.80766,0.462528,0.746557,0.135557,0.909246,0.493175,0.00596005,0.983164,0.920206,0.680685,0.727945,0.837987,0.407088,0.889287,0.914664,0.0328225,0.545625,0.0853588,0.0952404,0.257893,0.619338,0.781719,0.946952,0.11614,0.672672,0.0220199,0.771851,0.65193,0.582058,0.622237,0.867371,0.256123,0.538512,0.450455,0.536035,0.790354,0.606948,0.669251,0.858797,0.51129,0.857247,0.357762,0.233573,0.676408,0.974575,0.548753,0.256708,0.988589,0.99753,0.673975,0.818976,0.10494,0.374257,0.752781,0.393822,0.967027,0.626817,0.876469,0.442759,0.785744,0.65278,0.0107398,0.0203761,0.742528,0.968337,0.150425,0.578011,0.65292,0.19476,0.741873,0.126238,0.525624,0.910815,0.569363,0.838979,0.474575,0.414466,0.894822,0.493705,0.179344,0.387747,0.192162,0.243928,0.460493,0.947282,0.0599445,0.363968,0.796444,0.126865,0.64906,0.562004,0.599499,0.844237,0.655094,0.285179,0.632357,0.879605,0.490631,0.957013,0.178596,0.78505,0.117914,0.164308,0.270404,0.678095,0.936661,0.188109,0.472681,0.940209,0.67324,0.0149523,0.419484,0.878176,0.778705,0.858695,0.333404,0.90842,0.1288,0.115513,0.525766,0.944113,0.325741,0.266569,0.00778186,0.572083,0.551134,0.852064,0.924497,0.630368,0.717028,0.761278,0.290309,0.820477,0.627468,0.95474,0.611005,0.43268,0.761718,0.294405,0.604821,0.321286,0.0558295,0.863522,0.895707,0.922047,0.374309,0.366351,0.244825,0.842264,0.288654,0.970709,0.78034,0.00793117,0.166841,0.199476,0.854621,0.262583,0.864473,0.89989,0.659574,0.576139,0.476816,0.0856251,0.976731,0.462903,0.441077,0.354934,0.826341,0.770857,0.902808,0.551851,0.609141,0.155762,0.630196,0.642484,0.0545304,0.943703,0.750364,0.233292,0.778271,0.668843,0.0184547,0.606442,0.340179,0.491344,0.181292,0.841736,0.876421,0.824791,0.676899,0.394042,0.215104,0.128983,0.502966,0.164586,0.0225264,0.301285,0.969583,0.298072,0.730499,0.323409,0.968519,0.453914,0.15074,0.7192,0.938261,0.371194,0.27657,0.245091,0.800812,0.58021,0.387905,0.433202,0.56775,0.51306,0.554528,0.817814,0.00244004,0.628748,0.194308,0.215308,0.353735,0.10536,0.606314,0.63479,0.376446,0.172432,0.979204,0.621847,0.67495,0.0959822,0.35153,0.0686087,0.0389417,0.00484949,0.694544,0.661317,0.854238,0.216446,0.2676,0.767905,0.722558,0.369825,0.507945,0.549779,0.966253,0.358563,0.156185,0.627606,0.534631,0.0222566,0.61192,0.637358,0.0838255,0.557707,0.689174,0.533414,0.525439,0.42289,0.601272,0.198587,0.863939,0.10005,0.853555,0.784259,0.92099,0.414745,0.148001,0.983293,0.834718,0.640432,0.0136552,0.927929,0.965672,0.822715,0.0593689,0.634304,0.274153,0.85052,0.327995,0.0415385,0.279885,0.409338,0.96855,0.580995,0.599886,0.615643,0.80015,0.0297504,0.076365,0.542887,0.160986,0.924207,0.713837,0.0572388,0.648353,0.361185,0.971955,0.321466,0.137819,0.389259,0.823988,0.395302,0.365627,0.659658,0.590813,0.735629,0.901613,0.674599,0.619472,0.510902,0.186479,0.867978,0.576262,0.103634,0.791741,0.393263,0.890772,0.373855,0.615785,0.41944,0.250369,0.449591,0.0755259,0.512905,0.907735,0.486737,0.53206,0.22684,0.71522,0.0587531,0.351434,0.517217,0.311279,0.0122538,0.288488,0.547814,0.301533,0.639723,0.580542,0.704673,0.964201,0.600125,0.328861,0.311784,0.894217,0.782733,0.372368,0.549413,0.53049,0.474355,0.178395,0.293397,0.931502,0.244172,0.186002,0.973395,0.375453,0.919837,0.875291,0.25661,0.254892,0.644278,0.14931,0.308098,0.338358,0.427218,0.26132,0.446691,0.826582,0.345049,0.752656,0.977079,0.0235496,0.402789,0.0157154,0.683645,0.935023,0.134084,0.791735,0.522525,0.655994,0.115516,0.690702,0.125731,0.124898,0.358055,0.924927,0.403913,0.881708,0.925686,0.693667,0.583139,0.215781,0.445659,0.98412,0.541881,0.977669,0.475579,0.470622,0.0160015,0.44966,0.562577,0.625404,0.0174978,0.94673,0.735168,0.430483,0.957626,0.518075,0.620376,0.649497,0.850195,0.209515,0.763456,0.436356,0.900543,0.957569,0.189094,0.632343,0.383211,0.4484,0.353932,0.414404,0.7409,0.358706,0.44319,0.61968,0.387905,0.275209,0.405626,0.835487,0.706604,0.386661,0.748472,0.275207,0.53037,0.697486,0.803003,0.531446,0.953946,0.576969,0.460746,0.223108,0.318114,0.379314,0.623739,0.104259,0.136263,0.326998,0.139773,0.0394691,0.140701,0.569829,0.170654,0.198946,0.141188,0.121083,0.671105,0.980984,0.696009,0.05256,0.676427,0.72016,0.925309,0.891764,0.400052,0.477733,0.739925,0.339854,0.216944,0.147032,0.861675,0.491681,0.151901,0.347447,0.858669,0.865217,0.436396,0.746668,0.304799,0.245673,0.231987,0.483447,0.85181,0.36547,0.0389087,0.0654082,0.0607657,0.109929,0.888999,0.164019,0.563375,0.687388,0.856345,0.0722719,0.618012,0.584169,0.626736,0.685036,0.745117,0.411899,0.57992,0.785313,0.22608,0.469572,0.0477536,0.768677,0.830349,0.778033,0.652272,0.455375,0.455502,0.860318,0.472536,0.749308,0.180713,0.0298004,0.0623925,0.634943,0.664489,0.213349,0.430087,0.233663,0.187937,0.826076,0.358178,0.735329,0.73139,|0.523728,0.577151,0.160242,0.447755,0.84657,0.775553,0.880283,0.668001,0.458215,0.507501,0.80943,0.714204,0.968627,0.648857,0.534786,0.433126,0.227495,0.87881,0.416435,0.941851,0.0231452,0.529828,0.880187,0.0605153,0.502707,0.877678,0.00498539,0.0491583,0.963421,0.218491,0.78923,0.098479,0.333707,0.251871,0.824311,0.080888,0.238709,0.0762531,0.535333,0.150792,0.421996,0.166053,0.453432,0.555514,0.817353,0.567621,0.554462,0.20664,0.540328,0.651726,0.63655,0.489455,0.453678,0.262836,0.130478,0.514919,0.408367,0.338894,0.954262,0.613662,0.108896,0.0103444,0.0310345,0.566582,0.601361,0.844704,0.085157,0.964718,0.599476,0.713426,0.743289,0.652701,0.932552,0.424103,0.156057,0.0376489,0.023208,0.239408,0.594059,0.489116,0.0901552,0.595671,0.531692,0.250138,0.258474,0.754678,0.421007,0.553614,0.300111,0.657155,0.510123,0.623804,0.523663,0.520905,0.516675,0.50834,0.508865,0.141432,0.272611,0.331046,0.77785,0.654268,0.718265,0.430848,0.621198,0.900402,0.881843,0.133391,0.239572,0.308028,0.157817,0.284829,0.0305441,0.83469,0.426762,0.93859,0.827676,0.762024,0.357274,0.200001,0.0153782,0.231374,0.33995,0.470539,0.86564,0.762923,0.708713,0.953114,0.584751,0.29519,0.998574,0.254712,0.465191,0.947669,0.0354458,0.867005,0.290384,0.00297719,0.831095,0.62131,0.831447,0.537685,0.558906,0.608863,0.27031,0.0378472,0.253947,0.846933,0.637475,0.0919625,0.0255926,0.289513,0.176298,0.101986,0.298437,0.439238,0.657353,0.920842,0.445552,0.916277,0.106494,0.663027,0.32273,0.446849,0.480519,0.914483,0.679093,0.683195,0.373735,0.569858,0.422976,0.925989,0.422737,0.94356,0.817113,0.871679,0.992947,0.789436,0.447192,0.819344,0.302563,0.127268,0.939857,0.590048,0.905185,0.141152,0.168655,0.882612,0.855111,0.128593,0.246089,0.960295,0.835756,0.48062,0.956179,0.553992,0.390324,0.522483,0.436199,0.313683,0.816071,0.274949,0.327935,0.0288613,0.201199,0.229329,0.698971,0.284529,0.437229,0.376766,0.874045,0.47953,0.0764035,0.11403,0.340966,0.79674,0.915212,0.234325,0.0966213,0.582849,0.485158,0.688558,0.851773,0.150472,0.936802,0.97787,0.998352,0.182627,0.769406,0.210459,0.293911,0.366335,0.663674,0.274691,0.743636,0.768454,0.523265,0.705871,0.763424,0.564324,0.312571,0.792267,0.0124502,0.644863,0.617878,0.953621,0.408569,0.0794286,0.77908,0.717858,0.19766,0.480737,0.890651,0.554451,0.868602,0.815153,0.59576,0.539281,0.955619,0.930563,0.239144,0.67733,0.475036,0.27293,0.553511,0.58938,0.498137,0.0744733,0.790379,0.699421,0.0517923,0.558987,0.488462,0.596302,0.573628,0.967842,0.0636547,0.272118,0.593995,0.667603,0.220076,0.111936,0.663607,0.80227,0.70446,0.274963,0.36904,0.610194,0.706035,0.321672,0.366046,0.258876,0.633911,0.924108,0.574716,0.450726,0.790779,0.453907,0.619345,0.359324,0.801381,0.19139,0.12704,0.538328,0.525541,0.406637,0.357008,0.114177,0.669456,0.567313,0.0041253,0.937324,0.991009,0.125441,0.821812,0.501448,0.122532,0.088104,0.290088,0.461375,0.0432404,0.403567,0.905908,0.210548,0.330382,0.244888,0.476691,0.437408,0.916403,0.00881696,0.107238,0.399017,0.0126794,0.387119,0.740629,0.268486,0.791403,0.310069,0.347692,0.106045,0.395539,0.00498241,0.913258,0.86163,0.0727512,0.402294,0.887418,0.109138,0.693606,0.68679,0.861685,0.402603,0.595316,0.850085,0.390042,0.801879,0.91174,0.315423,0.200785,0.129435,0.650683,0.75902,0.183495,0.086403,0.337818,0.419033,0.0520911,0.495892,0.897625,0.893484,0.275339,0.832904,0.766237,0.535827,0.472376,0.359661,0.248953,0.766984,0.510679,0.417037,0.0111719,0.678691,0.26574,0.884793,0.135147,0.648949,0.186423,0.388779,0.666886,0.742361,0.262744,0.0383179,0.412111,0.0841057,0.189571,0.149776,0.669522,0.167823,0.346762,0.273538,0.309191,0.149438,0.258828,0.538291,0.586888,0.7404,0.889815,0.788955,0.511319,0.386503,0.647058,0.768112,0.402502,0.121642,0.509393,0.88558,0.295339,0.300992,0.460926,0.655227,0.145764,0.127118,0.63239,0.513216,0.0305999,0.84702,0.715927,0.330489,0.959968,0.122183,0.663221,0.806234,0.420027,0.287551,0.413717,0.0305369,0.63383,0.0824768,0.10789,0.960154,0.498807,0.74299,0.809253,0.117776,0.22521,0.42441,0.9893,0.272897,0.374816,0.857741,0.797323,0.909718,0.805048,0.782298,0.122354,0.287585,0.431843,0.94563,0.955451,0.342775,0.3578,0.51812,0.0666199,0.107679,0.100953,0.209859,0.261117,0.00387591,0.825145,0.390775,0.252622,0.640433,0.957411,0.387011,0.611802,0.477318,0.700883,0.918999,0.423428,0.709042,0.805613,0.15866,0.653932,0.890143,0.446726,0.272264,0.274933,0.958864,0.0526478,0.378638,0.729663,0.32995,0.589884,0.633221,0.796383,0.525553,0.878878,0.331447,0.807485,0.692312,0.900711,0.435171,0.475029,0.986607,0.163735,0.600014,0.816914,0.948854,0.93208,0.151025,0.570221,0.465527,0.582737,0.962065,0.620325,0.904121,0.773856,0.662352,0.551299,0.386019,0.815406,0.435365,0.373607,0.6893,0.673254,0.763592,0.480396,0.753573,0.642937,0.216478,0.699206,0.777396,0.913026,0.344436,0.0839049,0.842674,0.43264,0.753968,0.0581104,0.038694,0.558591,0.0617749,0.228827,0.0612432,0.456042,0.978838,0.93334,0.3103,0.599256,0.452871,0.681141,0.91307,0.862205,0.0203448,0.388342,0.937643,0.827501,0.7805,0.408382,0.414577,0.819626,0.286696,0.912833,0.908835,0.257777,0.279894,0.923039,0.552811,0.999304,0.31306,0.392907,0.0774915,0.77592,0.660055,0.434313,0.330737,0.831228,0.0684834,0.00201631,0.147885,0.0809671,0.210831,0.185744,0.0312722,0.792302,0.0857041,0.845903,0.322967,0.308473,0.354675,0.327136,0.469653,0.995443,0.195072,0.539464,0.511724,0.671596,0.381055,0.31664,0.471759,0.981314,0.150527,0.709613,0.752202,0.912435,0.236223,0.268912,0.941218,0.114295,0.791651,0.923097,0.054222,0.140216,0.0276231,0.119331,0.731137,0.656397,0.328293,0.183851,0.78495,0.355594,0.117958,0.815077,0.159629,0.919407,0.141746,0.671099,0.49707,0.176091,0.794953,0.2546,0.552875,0.898429,0.872155,0.299217,0.72825,0.364384,0.841631,0.274148,0.987363,0.13568,0.441289,0.66008,0.645453,0.442578,0.609722,0.325136,0.698417,0.0488669,0.0257072,0.373293,0.282414,0.748055,0.508391,0.947063,0.557333,0.742033,0.835028,0.44102,0.177074,0.277679,0.359719,0.788349,0.592738,0.657523,0.00122112,0.254385,0.159851,0.457568,0.344631,0.943803,0.695552,0.267646,0.337914,0.536174,0.124647,0.536864,0.728065,0.937542,0.319668,0.587888,0.832205,0.650013,0.561858,0.37383,0.855929,0.727858,0.902414,0.81794,0.299004,0.511382,0.0775276,0.167495,0.632644,0.299498,0.381505,0.136113,0.836673,0.571911,0.185514,0.0544552,0.00552982,0.733644,0.057817,0.450977,0.740464,0.483173,0.970421,0.0650076,0.708607,0.661166,0.266168,0.658609,0.0858968,0.174847,0.383828,0.774682,0.0231787,0.39731,0.786981,0.272366,0.662395,0.730342,0.757235,0.167309,0.907307,0.180763,0.784823,0.234388,0.380501,0.303345,0.848383,0.346356,0.588735,0.363418,0.881694,0.674074,0.902441,0.392419,0.14645,0.64306,0.668003,0.45422,0.529541,0.794142,0.706337,0.151638,0.985036,0.659776,0.796614,0.0601352,0.772088,0.157066,0.181857,0.221092,0.751243,0.341941,0.880605,0.780132,0.146955,0.685719,0.190048,0.866891,0.950917,0.349928,0.342808,0.891319,0.076961,0.455423,0.803753,0.745296,0.00245667,0.803075,0.720471,0.810202,0.344246,0.770145,0.500471,0.983638,0.547808,0.275526,0.904776,0.606567,0.931838,0.79367,0.011821,0.474972,0.728003,0.904525,0.575956,0.266055,0.526509,0.86293,0.23029,0.535435,0.66916,0.379335,0.0801635,0.993792,0.634433,0.814397,0.947491,0.493711,0.769464,0.380167,0.251127,0.87506,0.113253,0.185813,0.279701,0.573357,0.808218,0.835935,0.283916,0.622644,0.637562,0.124842,0.576486,0.515597,0.164059,0.585076,0.401751,0.802049,0.831947,0.275278,0.0564982,0.951554,0.526865,0.925798,0.413196,0.241845,0.0771524,0.34291,0.655177,0.653702,0.757648,0.85354,0.577442,0.42208,0.737873,0.628833,0.313349,0.196648,0.499766,0.21053,0.356808,0.750341,0.731422,0.123209,0.20844,0.888679,0.965484,0.394897,0.0550823,0.607954,0.215483,0.675855,0.970217,0.153058,0.413757,0.83992,0.00673592,0.887656,0.0246504,0.9966,0.298415,0.183431,0.0992382,0.288252,0.352468,0.20266,0.19329,0.663245,0.395372,0.993765,0.626132,0.0231954,0.638594,0.277279,0.0243396,0.938016,0.442261,0.794305,0.332265,0.843111,0.991416,0.85287,0.190045,0.512236,0.496227,0.923257,0.631676,0.398804,0.389202,0.916367,0.764682,0.11144,0.152065,0.0685869,0.844414,0.00556862,0.219817,0.156824,0.0743818,0.869474,0.66699,0.778147,0.104184,0.138775,0.828541,0.471391,0.110444,0.655212,0.523968,0.0650077,0.122632,0.240188,0.854689,0.642558,0.00703162,0.889736,0.329284,0.274627,0.576343,0.207443,0.197426,0.225952,0.295544,0.251534,0.544481,0.0011549,0.697204,0.830135,0.947516,0.119812,0.170539,0.36344,0.244849,0.185816,0.767095,0.884934,0.22342,0.0786169,0.288157,0.681892,0.959508,0.991756,0.162523,0.671176,0.539394,0.3313,0.334236,0.291362,0.493787,0.105072,0.562995,0.443298,0.345824,0.137817,0.237165,0.757861,0.295348,0.764881,0.815733,0.516046,0.772637,0.362806,0.92317,0.259718,0.3873,0.539964,0.909234,0.0952107,0.00749272,0.759154,0.853705,0.235289,0.781699,0.475634,0.230704,0.542608,0.467287,0.613198,0.958733,0.555183,0.562483,0.706712,0.896904,0.96096,0.429665,0.92732,0.687591,0.0800211,0.452433,0.853554,0.635414,0.879299,0.560612,0.280454,0.883288,|0.2348,0.0146407,0.0130344,0.604057,0.411811,0.142538,0.256892,0.854819,0.562737,0.65922,0.320241,0.746339,0.630434,0.712814,0.867291,0.769878,0.838227,0.949565,0.687265,0.837928,0.161158,0.302171,0.298182,0.444636,0.150981,0.726977,0.0063107,0.727912,0.373989,0.585968,0.144382,0.743201,0.821599,0.81559,0.192907,0.754249,0.244176,0.197495,0.444327,0.618659,0.891249,0.20875,0.607252,0.32332,0.764345,0.382892,0.465214,0.520429,0.984933,0.21808,0.755007,0.394581,0.0950813,0.576538,0.572554,0.892167,0.199607,0.0264279,0.802361,0.152975,0.078245,0.505905,0.812446,0.0416665,0.922575,0.882584,0.159418,0.695493,0.554259,0.716756,0.22379,0.598368,0.226578,0.202367,0.562286,0.248633,0.87236,0.0286897,0.327224,0.413554,0.93618,0.317304,0.911158,0.548413,0.382868,0.281895,0.0649792,0.00237405,0.778543,0.538902,0.0886338,0.324217,0.108913,0.684395,0.463596,0.281079,0.812621,0.846228,0.855598,0.442575,0.935355,0.264317,0.469107,0.571096,0.67259,0.525345,0.741036,0.396263,0.307489,0.140852,0.930401,0.109762,0.140351,0.579929,0.408764,0.235734,0.135338,0.193292,0.332184,0.428791,0.723278,0.563023,0.294903,0.989591,0.838175,0.869899,0.586449,0.373965,0.586479,0.128584,0.950543,0.624712,0.500384,0.0723698,0.0110437,0.00357735,0.736325,0.983473,0.595425,0.976263,0.173148,0.144616,0.644131,0.87152,0.0119643,0.540776,0.677389,0.69984,0.869344,0.509672,0.0939406,0.781172,0.439071,0.259462,0.807298,0.467366,0.056686,0.533962,0.383867,0.346223,0.752385,0.946478,0.787722,0.8863,0.379002,0.716817,0.409184,0.45782,0.861217,0.950506,0.150522,0.251596,0.750412,0.299026,0.880618,0.445082,0.968973,0.347946,0.692778,0.465592,0.293155,0.116351,0.542526,0.31578,0.220158,0.182176,0.868617,0.720295,0.472338,0.174096,0.21429,0.44584,0.27838,0.502563,0.901155,0.106913,0.56319,0.751722,0.384993,0.726058,0.315799,0.0270127,0.163525,0.119234,0.297205,0.816899,0.344669,0.298181,0.361138,0.714897,0.0722182,0.209376,0.911223,0.258048,0.423589,0.0284719,0.382745,0.805953,0.771174,0.929928,0.987291,0.653081,0.169792,0.859445,0.18019,0.319072,0.109979,0.46848,0.456625,0.488593,0.788129,0.317201,0.264768,0.95237,0.0916365,0.845627,0.140123,0.132695,0.801896,0.552988,0.556966,0.229172,0.207526,0.364503,0.0980764,0.0754219,0.22508,0.459592,0.53953,0.375013,0.324814,0.831084,0.322489,0.15591,0.106539,0.894595,0.0905356,0.467017,0.449628,0.26647,0.539907,0.745383,0.721886,0.638292,0.200736,0.0490271,0.231821,0.576513,0.643599,0.603131,0.863829,0.088167,0.847605,0.52013,0.218564,0.229596,0.375952,0.418763,0.520985,0.543855,0.805553,0.00669146,0.202725,0.0693039,0.672984,0.652494,0.970107,0.843109,0.92905,0.298396,0.773908,0.491264,0.295069,0.752539,0.861727,0.123046,0.989076,0.347709,0.535997,0.396257,0.428548,0.454625,0.556251,0.526147,0.812131,0.697871,0.649886,0.993937,0.485759,0.142047,0.552956,0.521174,0.411437,0.53695,0.446578,0.770581,0.188736,0.774568,0.448776,0.995947,0.100009,0.808965,0.278613,0.48289,0.00175828,0.227189,0.40766,0.508688,0.566426,0.934893,0.64817,0.395621,0.790117,0.246629,0.5518,0.123995,0.0697464,0.547263,0.200644,0.825069,0.287844,0.32743,0.3143,0.76364,0.801349,0.415784,0.685302,0.431111,0.990816,0.499527,0.438352,0.00634915,0.214672,0.268219,0.244289,0.209492,0.235992,0.0238237,0.421931,0.526623,0.191531,0.0153357,0.244133,0.798909,0.636443,0.66468,0.402783,0.343775,0.38848,0.491495,0.641548,0.496007,0.626669,0.570337,0.670538,0.485246,0.301607,0.57406,0.681731,0.57676,0.275399,0.0861625,0.795958,0.228195,0.0771302,0.946353,0.643115,0.262873,0.129005,0.55231,0.523859,0.333786,0.572954,0.797691,0.629794,0.728346,0.177503,0.59141,0.502831,0.759891,0.799084,0.0394289,0.0809789,0.565007,0.687647,0.10572,0.769439,0.488428,0.156996,0.950249,0.226066,0.312127,0.503965,0.35964,0.69272,0.844478,0.659936,0.0512118,0.944968,0.0924692,0.446952,0.583192,0.276599,0.0975666,0.915401,0.573234,0.00329638,0.698287,0.922066,0.0152507,0.411961,0.706163,0.304719,0.6799,0.42149,0.981997,0.455694,0.448616,0.506898,0.830986,0.391687,0.366488,0.805737,0.089873,0.89216,0.314425,0.777625,0.693286,0.794412,0.0495238,0.835946,0.610421,0.0461369,0.370842,0.847356,0.00522035,0.165489,0.915575,0.235481,0.994365,0.988437,0.410631,0.599442,0.061654,0.0885539,0.637924,0.820209,0.408499,0.91616,0.178819,0.772464,0.033246,0.580918,0.00928324,0.0545872,0.527482,0.959398,0.150034,0.562307,0.0349767,0.481364,0.365141,0.54894,0.414007,0.247449,0.79696,0.308968,0.285426,0.650735,0.585373,0.632977,0.34755,0.0347089,0.662918,0.555545,0.103491,0.975004,0.438965,0.760344,0.900513,0.200874,0.31562,0.316557,0.545504,0.368927,0.133765,0.703981,0.794317,0.159532,0.358262,0.837887,0.487021,0.723739,0.524474,0.341958,0.319937,0.960797,0.856774,0.38021,0.58259,0.94642,0.975452,0.751239,0.104228,0.670415,0.780137,0.182434,0.756063,0.783884,0.288974,0.937104,0.546832,0.332803,0.371735,0.240042,0.828998,0.0952415,0.619253,0.0184633,0.167059,0.470339,0.264987,0.555578,0.234167,0.243358,0.0869714,0.013445,0.864255,0.576015,0.878326,0.163043,0.542409,0.407053,0.429536,0.531954,0.0808059,0.748495,0.841017,0.0496242,0.545643,0.944909,0.490143,0.045018,0.590444,0.915411,0.776226,0.411971,0.168017,0.269154,0.188942,0.0785164,0.747137,0.6232,0.881098,0.612023,0.181961,0.307688,0.768726,0.332779,0.251255,0.0150354,0.994475,0.505684,0.294882,0.338156,0.723693,0.872641,0.544366,0.0312887,0.92183,0.439088,0.929212,0.911223,0.489507,0.556165,0.680544,0.40192,0.83595,0.611335,0.912428,0.81225,0.328336,0.115273,0.507231,0.267188,0.825172,0.610904,0.174167,0.25389,0.14318,0.461048,0.512683,0.126439,0.652171,0.74601,0.340377,0.0168024,0.0983554,0.193753,0.911424,0.38113,0.0711915,0.448846,0.501837,0.304533,0.645518,0.20935,0.168598,0.631356,0.44877,0.638769,0.616723,0.239821,0.494208,0.235999,0.134082,0.423025,0.74615,0.376942,0.361349,0.750543,0.0862552,0.18237,0.13235,0.622763,0.781614,0.00763285,0.0410762,0.147628,0.00694853,0.226514,0.358912,0.208119,0.0352669,0.745189,0.952844,0.24306,0.743487,0.255251,0.806948,0.546084,0.461901,0.783586,0.546223,0.78914,0.446534,0.931561,0.112236,0.0571508,0.88078,0.0463064,0.13339,0.431463,0.239138,0.402472,0.332025,0.402955,0.649086,0.0293437,0.81526,0.840736,0.697771,0.673345,0.863943,0.371403,0.292027,0.792384,0.0410848,0.371945,0.514014,0.67521,0.305952,0.598754,0.174925,0.333121,0.719479,0.896468,0.765698,0.229753,0.202622,0.543163,0.871825,0.176726,0.74235,0.0544748,0.716033,0.227393,0.352352,0.78356,0.0647898,0.594863,0.374234,0.135756,0.260341,0.0713497,0.0613762,0.434437,0.629375,0.760214,0.593615,0.823926,0.994866,0.75903,0.942793,0.847018,0.187829,0.194395,0.221248,0.999747,0.114625,0.456616,0.0580902,0.664178,0.312952,0.0870957,0.923179,0.287225,0.523338,0.567162,0.161368,0.102996,0.731773,0.0858734,0.676591,0.12713,0.0559453,0.395403,0.765373,0.0137643,0.435829,0.00809491,0.215339,0.939686,0.895793,0.487407,0.431674,0.577057,0.716968,0.88898,0.119731,0.889461,0.184039,0.0706463,0.389199,0.909077,0.379085,0.0400292,0.0406308,0.941865,0.794775,0.787566,0.469067,0.340437,0.147556,0.633253,0.384306,0.896612,0.33177,0.857084,0.581999,0.504418,0.40297,0.248427,0.538816,0.357177,0.71606,0.260269,0.765998,0.645962,0.645917,0.779313,0.603331,0.531858,0.42446,0.943662,0.574434,0.869666,0.471273,0.280876,0.963663,0.158572,0.275229,0.587803,0.726628,0.677304,0.237204,0.154601,0.308119,0.737422,0.736166,0.288089,0.493618,0.631417,0.932627,0.1643,0.208616,0.463086,0.344898,0.980183,0.700013,0.94432,0.764523,0.637458,0.980267,0.830915,0.10787,0.201222,0.445673,0.954543,0.182355,0.407963,0.15448,0.0107843,0.2112,0.897009,0.711526,0.262452,0.367707,0.262357,0.153489,0.453072,0.0973405,0.485697,0.0962008,0.570421,0.328883,0.827352,0.556148,0.655194,0.134367,0.941851,0.827662,0.216497,0.487926,0.402625,0.351254,0.534293,0.588458,0.0142842,0.284432,0.932947,0.27043,0.249819,0.254275,0.762733,0.746417,0.24209,0.374679,0.387374,0.598408,0.766161,0.994454,0.365325,0.888367,0.744079,0.242405,0.476971,0.71514,0.283291,0.712517,0.0578241,0.811074,0.912373,0.820166,0.712291,0.314377,0.561083,0.527688,0.764038,0.391305,0.151722,0.654498,0.293888,0.675019,0.551516,0.768827,0.471459,0.505617,0.228302,0.423365,0.347574,0.0908326,0.395217,0.403591,0.289781,0.289511,0.25573,0.261383,0.213577,0.714498,0.69396,0.406991,0.391068,0.443114,0.399404,0.610238,0.5343,0.482102,0.402736,0.183983,0.706013,0.385152,0.0918331,0.634564,0.734585,0.153299,0.577895,0.127499,0.707601,0.26777,0.562934,0.421938,0.863673,0.394327,0.829762,0.903976,0.0903823,0.966036,0.41452,0.493543,0.996399,0.231109,0.585888,0.23313,0.26299,0.733877,0.0497845,0.513738,0.128655,0.728343,0.415144,0.454515,0.611864,0.976417,0.220617,0.588277,0.703028,0.643857,0.694023,0.278474,0.674809,0.639425,0.485942,0.58993,0.473256,0.68189,0.956473,0.423698,0.808481,0.464275,0.0872337,0.858955,0.551509,0.68093,0.511653,0.997073,0.433383,0.653031,0.668649,0.041356,0.945849,0.452091,0.0579734,0.77877,0.405393,0.713561,0.879843,0.919249,0.400848,0.574489,0.797183,0.0461554,0.531933,0.332785,0.320124,0.897161,0.333527,0.170152,0.859494,0.887892,|0.95722,0.33741,0.685135,0.477337,0.654257,0.518033,0.187213,0.182672,0.902352,0.44341,0.963697,0.112023,0.890459,0.0564917,0.32282,0.165298,0.396145,0.236789,0.315942,0.664704,0.740577,0.574563,0.814095,0.669947,0.353873,0.114988,0.343465,0.99903,0.787682,0.0700266,0.68199,0.844586,0.000119865,0.985125,0.757601,0.404322,0.213998,0.386857,0.813737,0.598873,0.47264,0.0352443,0.995064,0.963407,0.763773,0.507902,0.12321,0.568492,0.537208,0.335661,0.232315,0.568262,0.0590855,0.595709,0.207217,0.0365677,0.652477,0.909691,0.315016,0.203364,0.413534,0.204234,0.235489,0.958657,0.782409,0.7081,0.745814,0.0100095,0.261274,0.49994,0.930405,0.185651,0.847507,0.240408,0.639774,0.241575,0.00908184,0.519952,0.452106,0.170958,0.104429,0.472859,0.0837488,0.903378,0.422792,0.262699,0.870147,0.412464,0.837154,0.693986,0.632511,0.245744,0.677956,0.801438,0.372153,0.773325,0.120486,0.222174,0.531369,0.201145,0.315643,0.391395,0.0188818,0.386763,0.140852,0.155802,0.814457,0.840114,0.115521,0.73125,0.0907583,0.780674,0.0365779,0.0148709,0.472387,0.19963,0.65393,0.160792,0.641478,0.403245,0.641162,0.266352,0.812046,0.289336,0.334554,0.993066,0.635717,0.463392,0.160202,0.241868,0.738009,0.923779,0.0188888,0.613844,0.388502,0.424539,0.65299,0.424402,0.598168,0.399319,0.271914,0.401752,0.98417,0.371942,0.618782,0.714036,0.715335,0.897401,0.289322,0.360021,0.922027,0.192496,0.796015,0.881591,0.0572677,0.271267,0.388024,0.105032,0.407733,0.260875,0.757691,0.432741,0.465882,0.0911067,0.992658,0.35003,0.0116649,0.257932,0.130129,0.0916824,0.216496,0.891695,0.672939,0.722098,0.24789,0.956949,0.0890145,0.820729,0.434504,0.308442,0.240451,0.366992,0.580866,0.690365,0.424547,0.760333,0.270675,0.8754,0.131941,0.132218,0.11515,0.40003,0.606263,0.0492659,0.925518,0.720921,0.810186,0.0120761,0.880759,0.0247347,0.0767687,0.574892,0.545299,0.245307,0.178637,0.0946653,0.95114,0.405775,0.307531,0.815723,0.685984,0.56395,0.490552,0.61771,0.441972,0.574171,0.523279,0.503536,0.365452,0.467944,0.15267,0.557611,0.504678,0.66647,0.463947,0.204028,0.753334,0.759798,0.852831,0.919724,0.782604,0.886642,0.918081,0.621474,0.657215,0.0916933,0.486286,0.436286,0.0849124,0.231583,0.887881,0.9433,0.792274,0.38166,0.774811,0.680549,0.774931,0.406459,0.650993,0.825093,0.0108717,0.0101097,0.169555,0.370864,0.852144,0.400052,0.668554,0.44035,0.488196,0.563968,0.964446,0.843526,0.930676,0.698348,0.567772,0.685528,0.692756,0.128147,0.237267,0.557827,0.454921,0.542609,0.715511,0.166604,0.154354,0.0755613,0.105966,0.334396,0.976454,0.450795,0.459844,0.532279,0.953171,0.823816,0.731604,0.527874,0.525072,0.824801,0.0147351,0.881474,0.491277,0.103446,0.235868,0.862165,0.781319,0.139092,0.429583,0.592335,0.715156,0.556508,0.802119,0.0442541,0.489747,0.0343895,0.442143,0.66096,0.566818,0.978417,0.893332,0.790142,0.0500136,0.974078,0.500641,0.474602,0.90793,0.738954,0.080902,0.935217,0.310454,0.156865,0.529612,0.519764,0.636567,0.822136,0.889998,0.590872,0.178745,0.279243,0.773906,0.560432,0.0562985,0.927296,0.401783,0.420025,0.943779,0.603688,0.18736,0.534909,0.850204,0.284542,0.273548,0.473714,0.265951,0.238265,0.496409,0.38568,0.459028,0.770088,0.190107,0.594219,0.75556,0.0585681,0.916656,0.57707,0.402957,0.214158,0.66012,0.768913,0.973513,0.783253,0.964007,0.0256524,0.78304,0.28087,0.0198942,0.686559,0.92423,0.825669,0.498505,0.151372,0.235789,0.195018,0.44883,0.443066,0.858627,0.934678,0.0989106,0.791505,0.36634,0.483334,0.545414,0.669856,0.277968,0.972638,0.14443,0.174541,0.501226,0.927506,0.6754,0.563254,0.249199,0.908718,0.559941,0.0639612,0.0854336,0.541496,0.0350882,0.0764554,0.906822,0.166455,0.120856,0.841293,0.580897,0.0251461,0.125419,0.30856,0.857913,0.613955,0.622143,0.31681,0.966333,0.0650978,0.978607,0.581937,0.58259,0.717308,0.813439,0.528207,0.400415,0.847732,0.342172,0.913548,0.556337,0.908819,0.888902,0.610374,0.31645,0.496281,0.773283,0.149193,0.0652749,0.230219,0.283912,0.74903,0.502608,0.676709,0.838205,0.720184,0.955383,0.806217,0.271514,0.035678,0.791262,0.895514,0.0207376,0.612435,0.125964,0.146235,0.466782,0.795649,0.425805,0.33439,0.994891,0.0928733,0.662483,0.863741,0.705545,0.997514,0.960628,0.337695,0.417867,0.185804,0.423481,0.843245,0.601912,0.244472,0.191377,0.42608,0.868004,0.86033,0.245273,0.386994,0.498072,0.344799,0.545488,0.431828,0.78463,0.0847543,0.516756,0.437352,0.619184,0.385819,0.443799,0.740607,0.311052,0.0723186,0.870345,0.23279,0.128812,0.653518,0.109969,0.582793,0.780752,0.955631,0.236256,0.29038,0.493878,0.612039,0.290979,0.661016,0.102824,0.0893431,0.314939,0.851609,0.449301,0.210315,0.669565,0.0398441,0.988576,0.262373,0.422388,0.828026,0.94324,0.310721,0.63383,0.648661,0.153771,0.645554,0.229793,0.644429,0.214946,0.60503,0.184292,0.416998,0.872533,0.769028,0.0360339,0.889612,0.834755,0.814378,0.386667,0.988315,0.427019,0.189039,0.428457,0.517168,0.696292,0.992172,0.914581,0.15187,0.0405697,0.572763,0.075103,0.166987,0.39971,0.822184,0.896563,0.362128,0.845114,0.518566,0.00707507,0.224328,0.852405,0.633154,0.236025,0.0169867,0.203089,0.828734,0.0986105,0.831756,0.203113,0.724503,0.900412,0.911153,0.277977,0.316549,0.314776,0.883855,0.274423,0.979273,0.522442,0.313228,0.51086,0.335649,0.902171,0.75947,0.957898,0.781449,0.523121,0.694595,0.488665,0.292419,0.767196,0.328002,0.413601,0.902634,0.557467,0.874658,0.663063,0.811943,0.842837,0.274409,0.126803,0.898994,0.129891,0.960216,0.297673,0.194105,0.360107,0.976187,0.201389,0.374341,0.674352,0.161356,0.898414,0.701123,0.75048,0.453396,0.830093,0.64454,0.65719,0.189586,0.734846,0.185158,0.549551,0.618605,0.0653856,0.909798,0.818178,0.877108,0.673234,0.712412,0.735915,0.596501,0.0104616,0.379838,0.524028,0.508972,0.272309,0.499055,0.724582,0.766179,0.784825,0.513852,0.636415,0.0886357,0.743089,0.352833,0.642306,0.270748,0.21713,0.461607,0.0236102,0.338254,0.876348,0.0451225,0.221808,0.0855409,0.651258,0.354596,0.693836,0.270047,0.400932,0.639756,0.499837,0.9339,0.427169,0.191607,0.815066,0.564796,0.673956,0.456765,0.143642,0.186915,0.993991,0.332601,0.852301,0.253348,0.449907,0.830078,0.229798,0.453565,0.160726,0.298521,0.393645,0.804839,0.758172,0.447096,0.913895,0.431833,0.883156,0.954483,0.627791,0.141328,0.973283,0.689252,0.960315,0.25897,0.741265,0.627063,0.396629,0.541154,0.766958,0.664555,0.622493,0.200439,0.218298,0.497875,0.646539,0.18159,0.971312,0.596858,0.926344,0.0394316,0.0867743,0.298863,0.522283,0.109945,0.876514,0.734032,0.942863,0.646197,0.0626374,0.640451,0.827763,0.0168239,0.135264,0.718139,0.247953,0.182829,0.774815,0.583932,0.0181829,0.879218,0.375096,0.992139,0.153779,0.202304,0.050055,0.0238425,0.955875,0.707622,0.532228,0.288758,0.851251,0.356013,0.951962,0.897101,0.76205,0.623448,0.879098,0.436023,0.438098,0.876533,0.427267,0.475321,0.452351,0.832837,0.926879,0.698753,0.269086,0.425776,0.822018,0.401772,0.142641,0.161617,0.436906,0.524262,0.616202,0.427172,0.378455,0.677143,0.533297,0.806667,0.964218,0.464712,0.603734,0.326982,0.508938,0.633256,0.377822,0.00616485,0.487483,0.532581,0.0327809,0.0810333,0.63225,0.263708,0.207683,0.296887,0.917586,0.0698463,0.807865,0.548902,0.95841,0.253536,0.0115601,0.841702,0.825881,0.0121992,0.373025,0.643417,0.715998,0.676876,0.601843,0.459676,0.135228,0.469997,0.0927398,0.822662,0.932859,0.379536,0.781748,0.507662,0.746297,0.0767633,0.0621433,0.95667,0.850426,0.677092,0.205765,0.668168,0.166564,0.125909,0.610354,0.581263,0.398366,0.458549,0.696019,0.14205,0.308757,0.456546,0.242597,0.144668,0.162955,0.826302,0.200126,0.765455,0.198275,0.658142,0.835118,0.838493,0.769287,0.0597506,0.928657,0.678699,0.0372839,0.830979,0.939416,0.145726,0.9009,0.822413,0.372393,0.765398,0.621724,0.949182,0.187829,0.210996,0.162037,0.551605,0.402035,0.591251,0.637034,0.825472,0.512008,0.937944,0.921153,0.613757,0.549242,0.942062,0.777934,0.891016,0.564129,0.532725,0.320537,0.873683,0.476936,0.383283,0.532081,0.246552,0.648972,0.854647,0.077475,0.580595,0.232136,0.790555,0.0793442,0.615823,0.083796,0.0769064,0.678599,0.86491,0.136902,0.479209,0.122381,0.892295,0.226867,0.914805,0.361084,0.854752,0.779668,0.151219,0.871784,0.0164776,0.365831,0.606371,0.0561982,0.35192,0.875835,0.206765,0.226251,0.758501,0.23991,0.639167,0.328125,0.229171,0.397663,0.315915,0.67142,0.667241,0.216814,0.626267,0.385284,0.0823848,0.0741223,0.942586,0.849221,0.143926,0.705277,0.642343,0.163154,0.809468,0.0772321,0.866351,0.827073,0.475397,0.770265,0.130598,0.516593,0.801615,0.225997,0.767149,0.497998,0.832938,0.775908,0.103786,0.0694251,0.479161,0.045698,0.299468,0.273228,0.606487,0.937504,0.62313,0.847136,0.430066,0.34678,0.720353,0.273646,0.313496,0.378057,0.514734,0.637098,0.596102,0.355755,0.204146,0.129335,0.668534,0.67646,0.495749,0.708001,0.272023,0.307715,0.983889,0.226899,0.602637,0.842916,0.240482,0.927877,0.282403,0.114515,0.553986,0.772176,0.280946,0.0746993,0.993521,0.962037,0.225166,0.379589,0.870922,0.829964,0.623452,0.933581,0.567366,0.318498,0.917093,0.476314,0.191885,0.679554,0.876349,0.575899,0.369963,0.50758,0.911262,0.00817788,0.178089,0.425593,0.62587,0.69838,0.244249,|0.954476,0.412221,0.190724,0.967262,0.918154,0.648098,0.201497,0.175587,0.104684,0.579182,0.0604928,0.763675,0.271815,0.316576,0.588302,0.856343,0.314256,0.515825,0.439445,0.48493,0.281935,0.136927,0.978216,0.823274,0.911165,0.402912,0.139212,0.251388,0.623389,0.983989,0.992988,0.194091,0.531229,0.229539,0.761268,0.334737,0.755969,0.182456,0.0184821,0.779819,0.811491,0.981681,0.953282,0.414182,0.385945,0.0411125,0.97922,0.527671,0.034833,0.398206,0.907149,0.145466,0.539402,0.248336,0.846084,0.0244344,0.242424,0.449239,0.313919,0.279023,0.656592,0.862538,0.368865,0.306797,0.32952,0.839698,0.671949,0.685079,0.372009,0.0472451,0.533011,0.553992,0.051911,0.505319,0.771284,0.664557,0.210267,0.713892,0.374334,0.961532,0.637021,0.756071,0.414216,0.142857,0.807135,0.219545,0.385149,0.744643,0.806691,0.345823,0.143565,0.059506,0.854381,0.651919,0.0518384,0.465641,0.822771,0.975952,0.479808,0.225378,0.493113,0.982748,0.731306,0.25185,0.0319123,0.139831,0.843924,0.99245,0.897276,0.539946,0.431986,0.265353,0.748788,0.207527,0.638234,0.223958,0.572776,0.561938,0.280922,0.0157792,0.222981,0.945021,0.282614,0.652385,0.299684,0.770742,0.407526,0.0536771,0.82332,0.0772895,0.289444,0.516477,0.0747586,0.534308,0.806668,0.0202233,0.439526,0.0355484,0.795638,0.113485,0.537311,0.385706,0.910608,0.328255,0.528385,0.584781,0.711683,0.862977,0.711604,0.947126,0.685598,0.276514,0.437873,0.280631,0.938879,0.0399966,0.734594,0.0824477,0.0182103,0.614913,0.517363,0.99999,0.631435,0.597021,0.132831,0.281851,0.683623,0.450025,0.708357,0.647686,0.785983,0.359347,0.736101,0.299351,0.827899,0.954842,0.00958824,0.983136,0.661841,0.801268,0.465073,0.543848,0.643535,0.741527,0.0827968,0.839306,0.366461,0.420084,0.386899,0.446018,0.447554,0.112557,0.918455,0.212634,0.336737,0.656183,0.753314,0.534425,0.213911,0.692832,0.351793,0.168707,0.693312,0.751888,0.474591,0.89229,0.898215,0.62227,0.686644,0.978529,0.856181,0.681838,0.376262,0.942789,0.317375,0.125243,0.827443,0.00757307,0.643851,0.0704468,0.355066,0.6222,0.917903,0.445443,0.335189,0.507573,0.848551,0.00157344,0.892851,0.736161,0.387821,0.408425,0.898799,0.750134,0.100005,0.157133,0.597738,0.733502,0.230787,0.0302569,0.796814,0.294216,0.161549,0.570719,0.351944,0.669237,0.905456,0.507994,0.715729,0.108314,0.581349,0.0606868,0.434423,0.511246,0.924877,0.899224,0.562812,0.266825,0.191326,0.314378,0.241123,0.731856,0.559913,0.247792,0.0990375,0.866874,0.96676,0.988629,0.380694,0.989136,0.171844,0.0938143,0.599749,0.88425,0.851363,0.835947,0.721963,0.0794724,0.144921,0.401781,0.229298,0.539372,0.78393,0.593426,0.678263,0.0384733,0.0953917,0.838736,0.691357,0.293361,0.245719,0.0679821,0.020719,0.550973,0.803285,0.0598484,0.599609,0.860661,0.566641,0.369474,0.0972634,0.596871,0.86925,0.506346,0.887539,0.742693,0.565625,0.416211,0.495438,0.270466,0.731748,0.946481,0.953603,0.564267,0.663797,0.774707,0.958615,0.551862,0.906638,0.08724,0.976212,0.490463,0.876549,0.820513,0.106908,0.665854,0.811891,0.0648047,0.284985,0.598715,0.800576,0.958388,0.780632,0.674072,0.652093,0.793941,0.0627989,0.478415,0.130431,0.640851,0.740303,0.726704,0.413801,0.330173,0.64016,0.425601,0.891388,0.975693,0.607223,0.66044,0.281701,0.387839,0.748799,0.404606,0.7862,0.339621,0.879783,0.544764,0.441274,0.764219,0.821868,0.901008,0.412365,0.88109,0.01218,0.527432,0.479353,0.87851,0.346892,0.319927,0.934936,0.0320248,0.932867,0.18402,0.908694,0.894742,0.276953,0.657352,0.248051,0.419658,0.338798,0.676634,0.738698,0.223821,0.902446,0.591438,0.765417,0.562989,0.597536,0.754205,0.313862,0.372063,0.41869,0.915152,0.377297,0.381055,0.254537,0.76724,0.319566,0.39343,0.17155,0.574769,0.204107,0.64571,0.521125,0.904368,0.282129,0.956115,0.735176,0.740443,0.368734,0.60729,0.326323,0.619457,0.110709,0.945328,0.307527,0.272632,0.760335,0.966798,0.801084,0.741535,0.0316133,0.367786,0.536229,0.821385,0.617819,0.189536,0.763454,0.627832,0.247454,0.835208,0.745205,0.317398,0.308185,0.0631571,0.423643,0.472484,0.674155,0.186429,0.955474,0.793253,0.321798,0.373899,0.450606,0.492012,0.162441,0.984043,0.565018,0.99673,0.837595,0.909246,0.273552,0.981568,0.917584,0.887352,0.851003,0.657425,0.258226,0.632965,0.201145,0.431878,0.87388,0.198804,0.0309256,0.929448,0.118762,0.624788,0.168003,0.196285,0.299155,0.00793588,0.5747,0.253021,0.487319,0.73683,0.970282,0.913383,0.828163,0.0640752,0.620485,0.45051,0.545677,0.384634,0.568482,0.097872,0.397303,0.912909,0.298948,0.609535,0.700188,0.982243,0.916264,0.309104,0.56643,0.480043,0.118398,0.425511,0.77029,0.436499,0.395645,0.734736,0.471862,0.293442,0.483553,0.421612,0.637469,0.350967,0.740049,0.448268,0.738159,0.378958,0.426132,0.55321,0.757696,0.199333,0.522102,0.706112,0.700938,0.815982,0.789576,0.0353788,0.883848,0.920156,0.950363,0.606508,0.999188,0.477127,0.958838,0.0496393,0.996095,0.146163,0.2626,0.112197,0.446173,0.975991,0.971237,0.769729,0.292725,0.542384,0.229286,0.84993,0.791418,0.71042,0.138512,0.0437407,0.0429966,0.0524368,0.33396,0.52046,0.486342,0.53001,0.392863,0.155865,0.893509,0.166475,0.591938,0.0598078,0.165867,0.725403,0.989219,0.0349401,0.96142,0.909298,0.41996,0.38211,0.587566,0.0730309,0.176468,0.295613,0.669031,0.835883,0.809847,0.996151,0.841951,0.515495,0.244833,0.641155,0.449627,0.634906,0.819628,0.0350934,0.760108,0.934892,0.131647,0.0850453,0.863173,0.656509,0.29274,0.715649,0.0895241,0.422912,0.478768,0.14411,0.59581,0.756133,0.00492132,0.809771,0.602317,0.126517,0.230522,0.851842,0.770601,0.554721,0.489272,0.872742,0.388159,0.465339,0.548459,0.0394647,0.686292,0.533136,0.452478,0.0813621,0.292547,0.620489,0.682332,0.526611,0.289184,0.353064,0.186071,0.642982,0.770937,0.977899,0.709064,0.109659,0.507994,0.774641,0.29701,0.715828,0.924615,0.145641,0.529637,0.154183,0.775557,0.697566,0.32508,0.242016,0.297584,0.487136,0.106534,0.420083,0.670094,0.507589,0.00306213,0.70503,0.739338,0.574309,0.985617,0.813987,0.936336,0.264379,0.744981,0.456516,0.647527,0.827672,0.260466,0.894445,0.555659,0.290878,0.622955,0.838834,0.883561,0.866865,0.919066,0.498265,0.613478,0.62141,0.303289,0.372523,0.499101,0.366615,0.421794,0.606723,0.663124,0.0778549,0.0209641,0.427932,0.345554,0.553912,0.150525,0.501602,0.159522,0.685105,0.959834,0.501529,0.583058,0.317977,0.573812,0.0778511,0.565775,0.641567,0.650329,0.687126,0.99664,0.823226,0.166096,0.746572,0.460041,0.738195,0.313546,0.330376,0.417708,0.297355,0.520893,0.41541,0.35088,0.252391,0.036806,0.0982881,0.914581,0.273663,0.41937,0.800774,0.981415,0.508462,0.60094,0.972925,0.661248,0.232431,0.471543,0.0850705,0.708411,0.520183,0.796603,0.0811541,0.856062,0.658565,0.43358,0.833423,0.121696,0.153349,0.0250489,0.428104,0.00779212,0.0445638,0.342179,0.652569,0.514718,0.823251,0.47307,0.254406,0.531593,0.725853,0.436039,0.696278,0.10845,0.762261,0.881862,0.86737,0.489347,0.501285,0.562073,0.479231,0.813228,0.453249,0.0594919,0.850605,0.0798984,0.895729,0.99412,0.743404,0.159561,0.241724,0.510601,0.898805,0.724477,0.441924,0.234503,0.421641,0.574169,0.932258,0.160921,0.243961,0.967,0.942466,0.470837,0.335075,0.1311,0.529611,0.644389,0.814799,0.320896,0.759882,0.474244,0.413651,0.205114,0.57589,0.891131,0.0176572,0.913894,0.890216,0.766878,0.578139,0.536857,0.665633,0.0126375,0.912198,0.00315487,0.312313,0.621863,0.0763865,0.219252,0.0633449,0.472801,0.299193,0.907595,0.748055,0.44399,0.320367,0.804224,0.824054,0.974049,0.970393,0.575146,0.984752,0.149732,0.538438,0.801062,0.344135,0.192507,0.951425,0.164156,0.931646,0.265678,0.0716602,0.512716,0.822924,0.3788,0.211764,0.951623,0.36292,0.721984,0.11492,0.53741,0.454606,0.342362,0.260949,0.902922,0.909974,0.76407,0.983701,0.64486,0.691006,0.395839,0.808022,0.0507636,0.648598,0.44778,0.185601,0.113435,0.871382,0.413294,0.0290321,0.912697,0.037596,0.264724,0.663224,0.108163,0.0908733,0.99261,0.249395,0.272736,0.858336,0.644453,0.430164,0.568989,0.544174,0.454886,0.0431699,0.189488,0.680197,0.849766,0.982185,0.043404,0.686893,0.142979,0.714558,0.210923,0.884735,0.515441,0.192529,0.302261,0.691972,0.195895,0.846533,0.312703,0.73338,0.161112,0.359369,0.261068,0.563998,0.63947,0.327055,0.635912,0.64352,0.68593,0.643907,0.409981,0.897304,0.393774,0.543914,0.0632241,0.333114,0.00508404,0.0958971,0.453135,0.453737,0.945556,0.523716,0.472199,0.356206,0.637209,0.339109,0.202605,0.334572,0.855896,0.00416684,0.0865709,0.051636,0.720746,0.962151,0.38692,0.50678,0.0986486,0.69659,0.907505,0.657451,0.840585,0.696641,0.86172,0.35619,0.300315,0.525283,0.818718,0.147085,0.416782,0.61226,0.614292,0.994207,0.912371,0.922739,0.608194,0.126084,0.617081,0.410413,0.838072,0.815939,0.0856947,0.68418,0.994508,0.0383648,0.468684,0.180628,0.940877,0.506625,0.61513,0.953188,0.0520304,0.00598735,0.668716,0.206289,0.888212,0.0524477,0.90999,0.303877,0.168288,0.860668,0.390473,0.639133,0.485177,0.236436,0.26568,0.797111,0.214571,0.643107,0.461992,0.931699,0.370339,0.573911,0.479497,0.590754,0.44683,0.684581,0.361658,0.238905,0.0949265,0.962218,0.993812,0.877395,0.636006,0.854269,0.950635,0.917556,0.46087,0.565807,0.401088,0.754569,0.244063,0.160053,|0.562703,0.327744,0.528388,0.672252,0.371276,0.937222,0.482521,0.721281,0.845421,0.512366,0.0439054,0.617708,0.994207,0.157371,0.396743,0.703262,0.992655,0.978685,0.510036,0.810964,0.973054,0.160878,0.898642,0.564762,0.993912,0.792528,0.828211,0.587913,0.333383,0.43507,0.916587,0.733053,0.758248,0.679751,0.982025,0.971275,0.866399,0.0651665,0.138598,0.781817,0.533146,0.654277,0.936472,0.653667,0.0301247,0.09739,0.278515,0.515384,0.311478,0.507434,0.511756,0.443874,0.526499,0.202122,0.886531,0.622756,0.285871,0.268359,0.260249,0.680814,0.245826,0.0611904,0.895901,0.976325,0.488529,0.36724,0.730581,0.192961,0.313244,0.627741,0.680098,0.787741,0.507792,0.394633,0.0112711,0.333275,0.84689,0.0015803,0.774243,0.290723,0.013827,0.821841,0.348123,0.537503,0.763256,0.902503,0.979628,0.54318,0.538358,0.500075,0.756675,0.846387,0.862062,0.948907,0.426596,0.637985,0.684325,0.0859745,0.00235015,0.761804,0.726428,0.683653,0.543757,0.352573,0.276143,0.0549817,0.392109,0.638472,0.560027,0.450518,0.880391,0.452436,0.129631,0.855729,0.676209,0.188194,0.52571,0.662042,0.550085,0.232139,0.904127,0.558543,0.643062,0.810991,0.66395,0.556365,0.873455,0.838763,0.591187,0.178154,0.220042,0.819957,0.0568128,0.382682,0.43591,0.0773945,0.014926,0.0124156,0.177152,0.758427,0.56396,0.0287652,0.844907,0.0878279,0.0705525,0.634666,0.88899,0.278027,0.30194,0.287344,0.013746,0.750872,0.639687,0.114556,0.900339,0.10095,0.738715,0.968661,0.118307,0.305979,0.781141,0.0587075,0.704921,0.159157,0.577261,0.0104798,0.155251,0.916033,0.00153899,0.857463,0.353871,0.221315,0.744835,0.204388,0.00742352,0.59657,0.807935,0.0457062,0.415334,0.887013,0.684136,0.867081,0.413164,0.74456,0.717007,0.0520254,0.757478,0.603529,0.792922,0.157517,0.0815231,0.838539,0.620274,0.276753,0.0113693,0.163941,0.20889,0.551878,0.265762,0.913643,0.240925,0.0900198,0.345991,0.499656,0.284383,0.635363,0.553102,0.553671,0.375549,0.300837,0.595846,0.126593,0.773616,0.39839,0.861789,0.838726,0.724454,0.78682,0.799907,0.883251,0.640118,0.425798,0.0247088,0.771071,0.324435,0.246271,0.435355,0.107644,0.461465,0.231761,0.347786,0.536558,0.303152,0.625786,0.107187,0.975222,0.293844,0.905807,0.69815,0.140613,0.294771,0.385759,0.435786,0.991355,0.270637,0.947881,0.192976,0.767348,0.14194,0.149349,0.473686,0.55224,0.974546,0.546234,0.0159056,0.167466,0.670839,0.675012,0.971993,0.659969,0.0184099,0.269052,0.917172,0.559582,0.510879,0.711497,0.575073,0.517187,0.53023,0.212466,0.511369,0.105349,0.359139,0.514205,0.476932,0.899207,0.819495,0.307388,0.845504,0.408553,0.919812,0.781715,0.442297,0.935645,0.169071,0.807021,0.564151,0.850898,0.662739,0.760279,0.439709,0.319207,0.236095,0.492892,0.437235,0.699651,0.733161,0.075999,0.355909,0.125421,0.895747,0.641638,0.385399,0.187452,0.257392,0.289093,0.8679,0.573067,0.934128,0.731025,0.380017,0.0302876,0.11433,0.521886,0.177777,0.45218,0.790898,0.78205,0.83073,0.803912,0.552861,0.989767,0.0163014,0.425406,0.897187,0.0594109,0.129632,0.213695,0.885033,0.89973,0.321272,0.605494,0.151322,0.0581375,0.0472183,0.855922,0.78359,0.462719,0.643281,0.740714,0.974727,0.39037,0.378062,0.129745,0.500306,0.0987075,0.453146,0.495672,0.604715,0.617468,0.173938,0.757258,0.9211,0.357861,0.450524,0.839668,0.482877,0.0998703,0.806549,0.314444,0.325167,0.383339,0.298282,0.116678,0.917905,0.664601,0.824502,0.962891,0.749828,0.505469,0.627245,0.117807,0.568743,0.201422,0.385013,0.858752,0.485877,0.69147,0.122098,0.657817,0.664992,0.0172713,0.0549424,0.442713,0.373053,0.63372,0.457936,0.328065,0.902276,0.888512,0.504723,0.157378,0.372394,0.178037,0.0600665,0.429072,0.903121,0.42988,0.00966638,0.649451,0.578992,0.789328,0.347866,0.223,0.878542,0.920015,0.0228792,0.992264,0.223106,0.0226536,0.65266,0.0613983,0.12909,0.6342,0.749168,0.097886,0.716353,0.488279,0.754957,0.299067,0.947603,0.30478,0.348069,0.611483,0.0892849,0.317017,0.059196,0.601877,0.0105901,0.168961,0.545979,0.338066,0.570098,0.483456,0.910883,0.750896,0.188733,0.0608782,0.397996,0.950959,0.834154,0.443676,0.911695,0.405392,0.4803,0.547443,0.241512,0.855415,0.31609,0.1309,0.113842,0.894852,0.794004,0.146726,0.328494,0.0360831,0.852852,0.02308,0.389324,0.867125,0.784825,0.926451,0.585729,0.651453,0.758234,0.478061,0.0448226,0.430068,0.304211,0.191522,0.369094,0.827626,0.883092,0.958318,0.561741,0.8768,0.975833,0.449872,0.246598,0.504427,0.271614,0.804622,0.644875,0.979783,0.627799,0.758594,0.0733267,0.064831,0.296321,0.48554,0.0945612,0.461773,0.536665,0.357867,0.297586,0.173443,0.950544,0.972013,0.415505,0.364332,0.184111,0.0033648,0.589096,0.506505,0.0573702,0.651969,0.503069,0.573721,0.551987,0.561228,0.971386,0.277138,0.936981,0.528672,0.996546,0.847462,0.0405672,0.260928,0.0565158,0.0240856,0.460802,0.842219,0.658278,0.11958,0.0422187,0.544674,0.293671,0.109799,0.199927,0.758474,0.0994034,0.06585,0.30593,0.706351,0.0224965,0.912218,0.850524,0.597695,0.0559831,0.846602,0.991558,0.333228,0.897294,0.984286,0.237099,0.499941,0.631534,0.273347,0.531359,0.967981,0.01502,0.188344,0.967683,0.214886,0.415731,0.0333082,0.401579,0.512061,0.600471,0.732753,0.319462,0.151429,0.375694,0.451324,0.882783,0.460601,0.800172,0.4067,0.791455,0.781231,0.595818,0.442015,0.55653,0.30512,0.959559,0.139443,0.145458,0.686304,0.820393,0.839763,0.860086,0.632513,0.274084,0.755497,0.65128,0.997086,0.226806,0.626369,0.226069,0.762557,0.445786,0.272532,0.208221,0.0225886,0.151044,0.986692,0.114017,0.199294,0.490481,0.710479,0.145581,0.625567,0.237796,0.498616,0.0501968,0.0794594,0.430471,0.962681,0.396844,0.239217,0.951383,0.666489,0.837244,0.147106,0.171255,0.426581,0.671464,0.939193,0.24728,0.450552,0.786595,0.285404,0.0757561,0.156817,0.755336,0.964374,0.237862,0.488613,0.216778,0.411023,0.532177,0.445236,0.658389,0.379254,0.723896,0.0678394,0.268082,0.368162,0.391691,0.380915,0.687514,0.180174,0.983967,0.79767,0.0712196,0.94751,0.761915,0.726309,0.672605,0.726962,0.0418563,0.806602,0.0803946,0.712112,0.489385,0.843272,0.859383,0.212484,0.168828,0.110532,0.920288,0.781049,0.112669,0.34268,0.731977,0.577162,0.548252,0.474401,0.763099,0.720739,0.454218,0.864653,0.363155,0.706472,0.339954,0.528754,0.50572,0.16017,0.679423,0.547144,0.809122,0.00372511,0.872919,0.398203,0.525197,0.46332,0.593298,0.594708,0.653662,0.623422,0.802141,0.0733037,0.675946,0.725997,0.526989,0.493777,0.519255,0.143973,0.637127,0.71238,0.56794,0.743533,0.78096,0.757478,0.754552,0.843662,0.805973,0.234402,0.775276,0.428189,0.426905,0.107217,0.887438,0.550008,0.856625,0.864125,0.973939,0.37377,0.343273,0.12101,0.00417489,0.489716,0.0613244,0.291555,0.919828,0.7715,0.681982,0.988231,0.416114,0.420585,0.102106,0.426828,0.945517,0.0972874,0.415059,0.591118,0.761074,0.18405,0.598384,0.568649,0.26558,0.191485,0.81472,0.87302,0.0747108,0.634384,0.309956,0.484904,0.622814,0.433769,0.364411,0.791096,0.402522,0.76243,0.537623,0.0736878,0.692253,0.311308,0.508796,0.664696,0.295091,0.422656,0.840946,0.329556,0.922035,0.255407,0.372767,0.42455,0.135884,0.02583,0.0472136,0.280233,0.133573,0.749473,0.188347,0.573919,0.849004,0.694274,0.0440891,0.793315,0.40072,0.231708,0.010254,0.322705,0.52809,0.40637,0.784775,0.293013,0.605256,0.620032,0.0629492,0.417297,0.39868,0.194138,0.0644662,0.677426,0.547579,0.14766,0.0188469,0.117914,0.959405,0.516083,0.15881,0.0353596,0.69377,0.720649,0.601001,0.785153,0.390186,0.432203,0.92309,0.152124,0.180189,0.621827,0.590167,0.378235,0.943363,0.854667,0.840279,0.231183,0.015173,0.691273,0.0910312,0.098834,0.395382,0.0933514,0.412985,0.434556,0.512054,0.0494814,0.899717,0.15583,0.224933,0.972268,0.804491,0.574604,0.347844,0.691626,0.643016,0.585983,0.271952,0.00389719,0.0983211,0.152226,0.294533,0.953323,0.964305,0.142584,0.499464,0.184584,0.121811,0.767876,0.809394,0.0965701,0.20229,0.946403,0.138252,0.13902,0.719323,0.643959,0.977683,0.0268589,0.238848,0.294329,0.972438,0.768692,0.857421,0.344985,0.594369,0.716976,0.826082,0.291019,0.308822,0.719777,0.445483,0.850809,0.886916,0.846878,0.436498,0.364699,0.862126,0.49358,0.637,0.560149,0.336838,0.528138,0.865999,0.727434,0.350062,0.799884,0.92848,0.705278,0.695343,0.949592,0.879886,0.152254,0.295827,0.771115,0.320062,0.20417,0.355841,0.135996,0.158685,0.123752,0.516822,0.471825,0.636734,0.525557,0.261894,0.71673,0.595011,0.162679,0.90018,0.0750263,0.121759,0.706518,0.0433565,0.617911,0.826339,0.787146,0.937506,0.0187017,0.152864,0.33073,0.91139,0.868137,0.726371,0.364341,0.394945,0.611277,0.460999,0.844011,0.343665,0.308204,0.307883,0.0744786,0.930766,0.0498711,0.978482,0.047493,0.181209,0.936744,0.846881,0.427693,0.47515,0.771316,0.646533,0.350093,0.328186,0.476282,0.137084,0.774969,0.520415,0.0569575,0.0250718,0.624492,0.364811,0.612897,0.41802,0.191427,0.0100712,0.772111,0.829392,0.353655,0.607577,0.547427,0.0311792,0.801807,0.140895,0.267166,0.205517,0.782949,0.960821,0.622796,0.567851,0.108602,0.510828,0.268241,0.3285,0.942295,0.979816,0.803593,0.841489,0.601794,0.980459,0.27202,0.192738,0.369607,0.718357,0.505774,0.697576,0.448382,0.165285,0.108241,0.699595,0.024304,0.731198,0.830913,0.2179,0.706444,|0.280553,0.135811,0.565947,0.0201429,0.512539,0.524475,0.0963538,0.594137,0.190099,0.700146,0.92361,0.395887,0.166883,0.764392,0.687323,0.313781,0.284342,0.768753,0.987814,0.0147576,0.0261415,0.575088,0.050486,0.991356,0.050577,0.48617,0.357576,0.811064,0.285562,0.0055995,0.743239,0.937628,0.974047,0.311579,0.585615,0.620668,0.437159,0.813709,0.199336,0.60943,0.44506,0.613179,0.70899,0.955085,0.409409,0.480866,0.99569,0.580244,0.610492,0.701976,0.751183,0.982437,0.952724,0.0936939,0.538542,0.372101,0.743465,0.560088,0.861219,0.699815,0.365939,0.969769,0.663899,0.0256404,0.476254,0.429188,0.551064,0.0390999,0.587055,0.53296,0.0359069,0.655633,0.897809,0.0134941,0.642527,0.947968,0.673454,0.625074,0.4998,0.919159,0.0183997,0.158022,0.788798,0.640024,0.70836,0.419894,0.94369,0.438167,0.286791,0.238544,0.712421,0.177497,0.528611,0.160635,0.9168,0.444578,0.616444,0.299542,0.0619695,0.173911,0.242188,0.791855,0.21675,0.720411,0.195598,0.68885,0.346403,0.611698,0.914323,0.93753,0.336213,0.717616,0.59168,0.144533,0.674235,0.188295,0.925818,0.0344077,0.939429,0.560652,0.820195,0.39985,0.0271246,0.6717,0.726704,0.822809,0.551093,0.143799,0.466406,0.923611,0.47909,0.711343,0.599534,0.440308,0.0924892,0.954146,0.354439,0.771287,0.909158,0.215017,0.602592,0.593725,0.550159,0.192859,0.0283119,0.420558,0.917686,0.874772,0.217706,0.396435,0.985032,0.29296,0.886383,0.0121914,0.536511,0.467379,0.0827036,0.608616,0.518361,0.147747,0.0131556,0.00985873,0.869677,0.666465,0.040952,0.320704,0.278902,0.303101,0.276054,0.668651,0.662578,0.843148,0.478751,0.624298,0.3201,0.488091,0.916386,0.161414,0.327911,0.118282,0.805877,0.318709,0.670259,0.252018,0.588496,0.215992,0.639617,0.403087,0.831754,0.775646,0.964301,0.433364,0.952553,0.343946,0.647987,0.0182537,0.359185,0.634215,0.684102,0.895355,0.889899,0.991466,0.154183,0.948362,0.187019,0.0182049,0.640881,0.710373,0.918156,0.615773,0.727582,0.607933,0.937498,0.255667,0.96104,0.262325,0.4038,0.604864,0.0912144,0.151132,0.966594,0.961672,0.242267,0.680675,0.108172,0.740627,0.154143,0.72826,0.796426,0.738146,0.077206,0.738398,0.807879,0.770949,0.811035,0.758908,0.666763,0.00276017,0.0932205,0.360134,0.967172,0.613335,0.0100644,0.738063,0.0701917,0.472679,0.26038,0.246841,0.509121,0.0973272,0.764407,0.177253,0.864036,0.339919,0.92281,0.855631,0.223084,0.770114,0.432224,0.624106,0.762339,0.2611,0.432353,0.940546,0.321527,0.397296,0.324074,0.807417,0.871537,0.590722,0.776376,0.622888,0.444596,0.80334,0.689871,0.909807,0.506765,0.427267,0.937257,0.0775437,0.202183,0.389751,0.444499,0.608433,0.728207,0.17315,0.616408,0.511028,0.0527819,0.164653,0.112167,0.0669702,0.694952,0.227138,0.0764277,0.897446,0.884432,0.759045,0.0433494,0.548548,0.90425,0.283031,0.741797,0.737918,0.577866,0.824695,0.537473,0.13213,0.868615,0.0373527,0.146013,0.0760044,0.614897,0.916839,0.63104,0.209135,0.00981534,0.460657,0.255995,0.417436,0.0340126,0.977122,0.984123,0.106736,0.766754,0.105202,0.786879,0.627461,0.833187,0.309931,0.916725,0.5158,0.0530927,0.532726,0.489141,0.0854735,0.960951,0.674883,0.171391,0.923096,0.165953,0.672009,0.472842,0.380482,0.591055,0.959837,0.662168,0.819488,0.73046,0.826745,0.46298,0.833904,0.794004,0.961443,0.689455,0.912328,0.758981,0.183371,0.823585,0.758,0.502763,0.256186,0.218572,0.972982,0.730846,0.0694525,0.513395,0.725449,0.828492,0.197951,0.769358,0.385553,0.874952,0.281402,0.489536,0.0846137,0.46614,0.791339,0.688167,0.131404,0.858505,0.879337,0.648386,0.467066,0.573074,0.00684226,0.00794822,0.904066,0.0575885,0.689116,0.439294,0.697388,0.449266,0.334977,0.960308,0.319258,0.484091,0.257825,0.535169,0.67114,0.730952,0.0447219,0.0846673,0.370515,0.587877,0.550913,0.942738,0.426054,0.39017,0.166424,0.631367,0.861317,0.415785,0.71128,0.291567,0.963434,0.48635,0.689612,0.419495,0.722019,0.408522,0.404411,0.74618,0.0782403,0.0799555,0.939998,0.945297,0.901427,0.763672,0.253829,0.209875,0.767098,0.97377,0.11306,0.778023,0.559732,0.921602,0.0570872,0.793552,0.831192,0.222973,0.846911,0.594978,0.950209,0.442566,0.379578,0.78119,0.989509,0.359208,0.546308,0.699198,0.482121,0.18185,0.240038,0.452305,0.776868,0.898133,0.588892,0.514695,0.942983,0.0333775,0.954997,0.150503,0.998417,0.85448,0.918326,0.110825,0.311726,0.185677,0.093209,0.475199,0.800324,0.367239,0.164532,0.0186228,0.726447,0.4043,0.256684,0.759596,0.0976757,0.365785,0.745448,0.286057,0.480624,0.802031,0.849178,0.819006,0.370168,0.309226,0.0942224,0.158575,0.557203,0.535372,0.81796,0.265195,0.259296,0.387833,0.352423,0.397099,0.768079,0.0294371,0.547858,0.26785,0.221246,0.668486,0.517806,0.86587,0.62783,0.234713,0.224687,0.38218,0.665905,0.977858,0.74308,0.702007,0.718661,0.0467662,0.122493,0.269521,0.731977,0.949011,0.0456834,0.648097,0.593432,0.66813,0.494929,0.779329,0.769285,0.530297,0.586784,0.696608,0.941439,0.319658,0.540854,0.581656,0.934053,0.941885,0.234175,0.354632,0.242734,0.84142,0.603757,0.106794,0.151122,0.491867,0.947074,0.990056,0.688881,0.737241,0.18292,0.798239,0.737255,0.776479,0.657996,0.703939,0.65066,0.0402339,0.293881,0.401313,0.0649195,0.863966,0.717725,0.32968,0.781166,0.180108,0.364371,0.145205,0.959052,0.570878,0.591163,0.254538,0.240877,0.0825167,0.677149,0.794392,0.978638,0.436468,0.194415,0.440779,0.736252,0.164237,0.579241,0.0890998,0.00449383,0.710021,0.410057,0.599904,0.181144,0.309518,0.810751,0.312011,0.188462,0.10106,0.44006,0.664539,0.740975,0.756196,0.899649,0.97484,0.286565,0.114747,0.628319,0.241995,0.999133,0.763571,0.00271535,0.378655,0.422414,0.815575,0.241523,0.976287,0.738652,0.335928,0.404965,0.271058,0.170426,0.864044,0.402527,0.406849,0.972571,0.0380825,0.785035,0.939676,0.0325096,0.606948,0.930199,0.204942,0.666509,0.538607,0.68818,0.115614,0.304151,0.575966,0.371254,0.537665,0.679993,0.527416,0.509452,0.573897,0.391051,0.90159,0.80956,0.763345,0.411525,0.358556,0.479503,0.512148,0.791896,0.666283,0.116818,0.304054,0.379678,0.791753,0.235472,0.296567,0.873682,0.580397,0.989456,0.392543,0.317589,0.702548,0.413484,0.689448,0.232347,0.976447,0.0380248,0.163939,0.43077,0.646143,0.862055,0.239644,0.274876,0.0436946,0.438939,0.487361,0.130294,0.812218,0.332165,0.325993,0.0670416,0.151489,0.240636,0.460501,0.552231,0.361175,0.594507,0.907829,0.538166,0.696435,0.843926,0.400957,0.61783,0.53914,0.627514,0.067897,0.210317,0.992528,0.238482,0.386274,0.358075,0.285162,0.457857,0.123108,0.828444,0.959549,0.00130409,0.324352,0.301396,0.0936045,0.830571,0.183892,0.245645,0.668018,0.579802,0.506297,0.693446,0.719613,0.792613,0.363689,0.533869,0.695357,0.799062,0.917856,0.0255902,0.936546,0.276765,0.918242,0.642734,0.349753,0.689699,0.474632,0.690153,0.459245,0.152112,0.33754,0.54877,0.733814,0.13054,0.420225,0.261471,0.764772,0.544755,0.414122,0.548687,0.951863,0.0309451,0.729738,0.560751,0.566139,0.769478,0.29646,0.496672,0.275984,0.404009,0.113267,0.695709,0.95529,0.539731,0.146001,0.537668,0.374915,0.902317,0.17244,0.933865,0.35542,0.0661173,0.433556,0.576309,0.881318,0.444143,0.225981,0.0730816,0.0683774,0.00654024,0.82391,0.40136,0.993144,0.396456,0.821214,0.398314,0.069673,0.269297,0.89111,0.659519,0.880071,0.733875,0.193023,0.83646,0.335162,0.606559,0.819953,0.350442,0.338309,0.820849,0.644158,0.566014,0.0931919,0.91916,0.281971,0.384612,0.058163,0.227651,0.61187,0.259484,0.855347,0.41731,0.126862,0.451635,0.831647,0.0445,0.316726,0.284381,0.98591,0.00340629,0.489031,0.504212,0.637518,0.98486,0.810428,0.129356,0.514837,0.744077,0.392977,0.201066,0.122293,0.544543,0.396637,0.64274,0.553049,0.959582,0.955989,0.432133,0.310239,0.223579,0.716082,0.780385,0.907151,0.644324,0.340011,0.168739,0.27274,0.29823,0.0203029,0.806338,0.59844,0.050217,0.674531,0.897575,0.519499,0.814815,0.764605,0.230121,0.772951,0.261788,0.746219,0.563582,0.425203,0.112936,0.313155,0.546993,0.54366,0.467369,0.410334,0.672368,0.576378,0.892272,0.085516,0.940175,0.614541,0.131232,0.427184,0.740743,0.454022,0.933945,0.218572,0.712536,0.743894,0.507252,0.575394,0.851207,0.0450158,0.857022,0.253657,0.32564,0.973944,0.594751,0.464368,0.462138,0.466624,0.215445,0.784308,0.0300136,0.128442,0.517243,0.594808,0.335957,0.68534,0.468405,0.43326,0.119372,0.838159,0.45761,0.515998,0.689842,0.948578,0.247201,0.24767,0.491447,0.00260878,0.7434,0.490843,0.00445169,0.000142038,0.66601,0.439333,0.399274,0.58991,0.298827,0.830376,0.110576,0.279915,0.735499,0.703183,0.73012,0.403669,0.118827,0.964607,0.0293453,0.0274159,0.401565,0.302174,0.957376,0.81038,0.430261,0.433785,0.510989,0.443675,0.00660038,0.509055,0.74013,0.559455,0.137499,0.696837,0.502884,0.65161,0.242865,0.202206,0.536044,0.0209463,0.960437,0.076627,0.0517957,0.950473,0.610473,0.136833,0.283623,0.110007,0.600618,0.0143833,0.149686,0.110361,0.537935,0.110582,0.821841,0.484384,0.0963025,0.881791,0.99669,0.140964,0.648225,0.721241,0.730108,0.572521,0.700555,0.603437,0.588014,0.433661,0.0155913,0.608137,0.719885,0.192471,0.567717,0.378451,0.742251,0.298836,0.192174,0.224502,0.0348496,0.0535258,0.588908,0.251487,0.342549,0.199336,0.915994,0.620401,0.98606,0.691137,0.993022,0.531923,0.999856,|0.374332,0.862904,0.434526,0.598144,0.00277817,0.71009,0.3839,0.217696,0.730405,0.379386,0.651958,0.515914,0.395571,0.421251,0.752693,0.611555,0.144856,0.492535,0.913088,0.146609,0.352276,0.422498,0.62462,0.806265,0.813431,0.397442,0.662679,0.617678,0.402405,0.371774,0.60444,0.124248,0.75434,0.199401,0.889766,0.179608,0.608024,0.545289,0.580444,0.96082,0.382878,0.134845,0.728901,0.869962,0.921548,0.202149,0.617884,0.335523,0.872374,0.201366,0.952266,0.797755,0.458988,0.186633,0.998479,0.711384,0.598533,0.507664,0.997441,0.779122,0.155333,0.80034,0.0197595,0.758119,0.196207,0.816844,0.467455,0.0452031,0.200739,0.0933267,0.81448,0.592073,0.182947,0.0812017,0.687915,0.958731,0.469491,0.600413,0.794835,0.973409,0.739673,0.0931643,0.337222,0.355978,0.0826175,0.116435,0.00375551,0.792048,0.0537303,0.584211,0.683279,0.650765,0.346876,0.184978,0.306265,0.139241,0.778357,0.450789,0.955427,0.559092,0.205338,0.504793,0.781952,0.152129,0.0639372,0.621409,0.666577,0.582898,0.568911,0.126884,0.152691,0.734528,0.29112,0.766075,0.881244,0.599041,0.573011,0.0810381,0.174023,0.458833,0.448479,0.942474,0.434664,0.878308,0.662794,0.258026,0.830999,0.19757,0.452495,0.920434,0.140529,0.388132,0.846549,0.0908448,0.643774,0.0439903,0.914693,0.1038,0.544633,0.934366,0.872513,0.278357,0.723392,0.560577,0.858339,0.261008,0.416769,0.633631,0.688131,0.691217,0.955395,0.1033,0.883618,0.976414,0.526186,0.757697,0.749906,0.51544,0.412487,0.342091,0.595364,0.863389,0.0722762,0.961758,0.104154,0.141752,0.39113,0.544323,0.372477,0.577581,0.932929,0.547207,0.837167,0.902804,0.191313,0.880238,0.433012,0.851025,0.0954615,0.509338,0.271788,0.306094,0.926931,0.311341,0.315322,0.86151,0.831784,0.151972,0.571941,0.458353,0.361863,0.538467,0.817054,0.910022,0.331787,0.128969,0.386307,0.506372,0.886681,0.361232,0.215042,0.55636,0.875826,0.901004,0.965933,0.133199,0.19049,0.88624,0.427773,0.265437,0.20849,0.82099,0.919413,0.871923,0.27326,0.386078,0.140276,0.997469,0.289816,0.871667,0.271128,0.24577,0.659731,0.226181,0.45328,0.890484,0.951596,0.885936,0.848325,0.801344,0.890385,0.959343,0.182179,0.497212,0.452465,0.471094,0.00544012,0.86845,0.974974,0.354127,0.582063,0.103047,0.0310702,0.360912,0.895014,0.998762,0.877665,0.292546,0.373216,0.499305,0.639828,0.566272,0.72205,0.962723,0.0935441,0.529613,0.587042,0.960318,0.0239624,0.126776,0.700072,0.0305094,0.654667,0.747111,0.359696,0.903185,0.70253,0.405666,0.01314,0.912362,0.470394,0.161693,0.986451,0.465771,0.810836,0.812845,0.477559,0.993062,0.737999,0.0180548,0.722464,0.386742,0.399732,0.126699,0.508498,0.884902,0.382827,0.944694,0.783878,0.450096,0.161157,0.747596,0.690707,0.947292,0.807664,0.40533,0.574357,0.289264,0.283193,0.717199,0.999656,0.343198,0.42374,0.152282,0.444589,0.82352,0.950556,0.585415,0.330872,0.848361,0.379436,0.293856,0.964536,0.53197,0.513366,0.602983,0.5446,0.516501,0.767377,0.102836,0.244735,0.239519,0.46363,0.0416701,0.995555,0.391035,0.432897,0.0951598,0.959337,0.194811,0.0963224,0.502612,0.736838,0.8539,0.297463,0.425596,0.300326,0.156478,0.24187,0.69334,0.841899,0.086432,0.069814,0.928732,0.52468,0.319199,0.586947,0.196087,0.617199,0.929972,0.362579,0.0687485,0.575022,0.308331,0.90444,0.0662303,0.982,0.476522,0.236816,0.843551,0.149337,0.919074,0.221134,0.417652,0.637973,0.323082,0.828276,0.687793,0.668417,0.762583,0.650194,0.208328,0.158214,0.258157,0.782233,0.0990226,0.928908,0.107647,0.392844,0.454577,0.459704,0.763807,0.188039,0.523826,0.860409,0.484846,0.0466103,0.951708,0.928087,0.273449,0.210578,0.0813023,0.0812374,0.302785,0.696396,0.494875,0.662479,0.323575,0.451024,0.279792,0.0210987,0.916278,0.285679,0.693126,0.882822,0.862801,0.5814,0.926537,0.0592777,0.74738,0.206991,0.686878,0.386308,0.0662492,0.0415416,0.357563,0.636042,0.564327,0.938011,0.849346,0.753022,0.867729,0.515314,0.94639,0.451967,0.546346,0.315085,0.829826,0.24535,0.594599,0.422267,0.480917,0.0854705,0.0256053,0.314344,0.823168,0.137646,0.999239,0.277271,0.640348,0.274336,0.617767,0.472779,0.156117,0.946387,0.62925,0.688031,0.0133424,0.102647,0.94045,0.797968,0.60214,0.678205,0.245305,0.0650452,0.527003,0.356045,0.787297,0.97017,0.212358,0.566575,0.165581,0.447592,0.363104,0.452027,0.64921,0.302888,0.168595,0.247238,0.40559,0.326647,0.128549,0.152615,0.641155,0.602051,0.0323568,0.957141,0.237938,0.136206,0.118398,0.785432,0.441307,0.415935,0.0431644,0.392234,0.907433,0.837012,0.853119,0.439946,0.548167,0.456427,0.695579,0.373371,0.861032,0.533085,0.903125,0.619672,0.773985,0.198767,0.184046,0.101442,0.194551,0.0196646,0.602756,0.504901,0.922188,0.845229,0.657412,0.0949888,0.794674,0.938071,0.863035,0.158221,0.0257065,0.0405522,0.278436,0.454911,0.878452,0.33937,0.259111,0.141951,0.53755,0.0936809,0.865312,0.361843,0.397584,0.490898,0.872435,0.302198,0.982453,0.302067,0.333707,0.462545,0.615306,0.894309,0.532121,0.390855,0.955082,0.0487783,0.183072,0.854072,0.459436,0.224545,0.648405,0.15814,0.629736,0.307291,0.891182,0.801377,0.267485,0.514461,0.503057,0.0747131,0.959813,0.694859,0.325716,0.174535,0.497546,0.000854254,0.214861,0.847491,0.00256741,0.824259,0.5068,0.202723,0.292826,0.100848,0.771333,0.511251,0.578086,0.197035,0.215909,0.509681,0.762711,0.537207,0.499522,0.22188,0.742348,0.225854,0.533692,0.73988,0.479694,0.0692968,0.134098,0.105582,0.243044,0.283142,0.165476,0.120135,0.810458,0.617452,0.59312,0.357628,0.743806,0.505798,0.658589,0.640384,0.86366,0.784303,0.502169,0.556039,0.195603,0.472776,0.558828,0.0760244,0.563489,0.585943,0.403329,0.845044,0.455318,0.483766,0.848593,0.561634,0.764297,0.404034,0.55467,0.351523,0.395397,0.43352,0.61111,0.421819,0.738271,0.372265,0.63719,0.891136,0.277049,0.720348,0.418066,0.255362,0.979874,0.079056,0.107037,0.915946,0.641563,0.226622,0.435275,0.0624384,0.388941,0.964095,0.810236,0.574502,0.874063,0.190603,0.541061,0.283076,0.742653,0.0267229,0.232142,0.400594,0.801255,0.793861,0.510668,0.14581,0.937542,0.510221,0.0638688,0.794301,0.171585,0.0227679,0.266917,0.130888,0.595972,0.952217,0.523703,0.739288,0.182817,0.740091,0.450116,0.0295737,0.648951,0.793734,0.699122,0.482582,0.492487,0.862204,0.476082,0.368379,0.39323,0.909833,0.972433,0.00489026,0.685651,0.036972,0.776876,0.524381,0.490638,0.479985,0.211253,0.955418,0.745226,0.290855,0.214761,0.248231,0.13588,0.0781761,0.541897,0.307908,0.36292,0.484095,0.299064,0.787374,0.210256,0.0424763,0.338615,0.34746,0.490058,0.440253,0.825852,0.275974,0.451695,0.946386,0.715617,0.891656,0.276933,0.388208,0.368014,0.0988204,0.820561,0.670461,0.94842,0.859414,0.65988,0.0630616,0.403377,0.135044,0.0692399,0.214559,0.115489,0.659369,0.188725,0.237598,0.382889,0.980689,0.730405,0.246787,0.807179,0.817193,0.574437,0.637257,0.796214,0.29347,0.466892,0.223667,0.852827,0.766912,0.612145,0.629912,0.896796,0.179601,0.914127,0.306004,0.388366,0.81324,0.172535,0.186907,0.0689282,0.46467,0.390098,0.851129,0.690523,0.241098,0.896711,0.646997,0.458307,0.591898,0.407075,0.0692756,0.697225,0.136816,0.317246,0.458323,0.957016,0.0631773,0.157774,0.715141,0.504365,0.852319,0.390754,0.216069,0.746098,0.397214,0.113652,0.0280709,0.251679,0.0630073,0.494012,0.363272,0.972941,0.230185,0.0420534,0.303452,0.289174,0.497588,0.907273,0.719163,0.292978,0.155839,0.319285,0.167338,0.634175,0.48928,0.711233,0.0757022,0.0748112,0.504359,0.675955,0.866584,0.054253,0.855861,0.44607,0.024767,0.158417,0.975054,0.169155,0.791695,0.443865,0.0774056,0.10106,0.0919796,0.32998,0.681266,0.653409,0.634531,0.713516,0.077865,0.725076,0.834421,0.627784,0.867505,0.810689,0.19403,0.0845162,0.645275,0.550467,0.478174,0.578529,0.212603,0.635018,0.913397,0.720364,0.870966,0.532579,0.186682,0.508274,0.874231,0.137771,0.395768,0.975145,0.621345,0.602212,0.356628,0.505939,0.292479,0.474306,0.267263,0.895619,0.38939,0.406553,0.990925,0.286138,0.902119,0.90039,0.354049,0.0203182,0.729055,0.749886,0.388485,0.161844,0.989417,0.32497,0.735027,0.00684905,0.0418953,0.731337,0.505019,0.811414,0.600104,0.344769,0.380145,0.513077,0.974857,0.347566,0.272199,0.267172,0.862636,0.55775,0.314002,0.719001,0.928496,0.324682,0.291096,0.478469,0.109025,0.384927,0.0914378,0.705356,0.0629579,0.96281,0.729421,0.18858,0.52058,0.387745,0.576622,0.536929,0.145842,0.749351,0.981731,0.30115,0.712439,0.348307,0.548463,0.559323,0.790167,0.958316,0.792338,0.396842,0.258117,0.684442,0.678685,0.725124,0.931346,0.120891,0.915182,0.70639,0.134801,0.693538,0.747784,0.330918,0.052237,0.591145,0.0511255,0.87043,0.686181,0.115557,0.547488,0.187061,0.00317645,0.0759878,0.795325,0.233303,0.311556,0.26618,0.181418,0.0788203,0.676848,0.648818,0.930612,0.350702,0.208679,0.895829,0.411549,0.0238662,0.582637,0.411457,0.831196,0.395443,0.031031,0.185641,0.120695,0.238764,0.0982321,0.439135,0.414155,0.573125,0.866448,0.00950336,0.684696,0.502596,0.531586,0.561837,0.204968,0.383918,0.025758,0.310006,0.20871,0.9258,0.0521088,0.832203,0.0422657,0.0374472,0.983951,0.327742,0.921706,0.114766,0.782166,0.381472,0.200226,0.588322,0.019641,0.703818,0.329209,0.470604,0.0427433,0.379731,0.218427,0.534588,0.161414,0.856066,0.165923,0.684357,|0.470066,0.117318,0.548652,0.0306773,0.145359,0.198245,0.984096,0.363085,0.318018,0.990717,0.589776,0.551039,0.853406,0.120749,0.707287,0.293383,0.186184,0.460946,0.139449,0.573788,0.448433,0.406264,0.205884,0.468936,0.151497,0.267452,0.728077,0.324603,0.733726,0.146159,0.0132627,0.191811,0.0312144,0.919019,0.0337643,0.13181,0.722228,0.290419,0.90828,0.877503,0.988953,0.849314,0.698145,0.610119,0.745769,0.791422,0.0498466,0.17871,0.557363,0.815044,0.0050208,0.623913,0.639675,0.31985,0.784589,0.611866,0.86763,0.932052,0.429906,0.898759,0.775582,0.961815,0.426829,0.548127,0.269841,0.924399,0.18385,0.0297655,0.778434,0.629962,0.135283,0.214153,0.747331,0.98433,0.396145,0.260262,0.886286,0.15092,0.934986,0.067205,0.537493,0.524956,0.399656,0.357525,0.607666,0.517043,0.400016,0.545319,0.679596,0.0287721,0.128015,0.106215,0.91629,0.583382,0.408434,0.149576,0.218426,0.304711,0.718039,0.897278,0.568674,0.260813,0.694316,0.407718,0.249572,0.198852,0.717794,0.606504,0.532636,0.341424,0.0166671,0.0410433,0.843993,0.609311,0.179062,0.937264,0.322204,0.0631005,0.479471,0.905775,0.405819,0.546688,0.30538,0.406393,0.365092,0.385944,0.87668,0.815257,0.876048,0.368551,0.611193,0.124236,0.0528783,0.934418,0.646885,0.712533,0.746553,0.70708,0.486967,0.900582,0.287379,0.226624,0.283599,0.708201,0.448417,0.850964,0.772195,0.704179,0.132836,0.138078,0.447083,0.29419,0.456452,0.325371,0.0994079,0.97855,0.488834,0.0394607,0.186554,0.669003,0.123778,0.774965,0.818887,0.876081,0.61347,0.827072,0.613728,0.267366,0.813781,0.710265,0.145423,0.0918998,0.841962,0.0314681,0.075685,0.786415,0.0773548,0.950461,0.254163,0.834424,0.857601,0.163025,0.762385,0.324331,0.807067,0.297486,0.412332,0.647548,0.954002,0.517922,0.862506,0.485674,0.965598,0.130388,0.760681,0.0794123,0.946283,0.551596,0.142712,0.274881,0.00250071,0.0296537,0.304101,0.657929,0.585613,0.572161,0.24247,0.291199,0.660171,0.346804,0.161361,0.539723,0.491501,0.986948,0.14743,0.856659,0.385925,0.0871687,0.00486457,0.96303,0.739369,0.728286,0.970034,0.787984,0.30516,0.372846,0.983232,0.882292,0.243171,0.928979,0.0789869,0.524076,0.220224,0.404993,0.377711,0.298489,0.422945,0.392669,0.729345,0.249178,0.94664,0.52617,0.0108793,0.0360386,0.944922,0.0593215,0.716798,0.0539537,0.383358,0.69964,0.570268,0.752069,0.778115,0.774316,0.101158,0.844603,0.831865,0.9174,0.305051,0.807665,0.567192,0.592578,0.956409,0.798211,0.541753,0.433325,0.356116,0.581814,0.244929,0.57429,0.336553,0.698843,0.0609267,0.898355,0.00586814,0.614119,0.619306,0.450071,0.290677,0.890241,0.5654,0.340928,0.59579,0.211228,0.0390643,0.463722,0.314177,0.118918,0.457986,0.0675803,0.223932,0.975557,0.841314,0.661006,0.62074,0.800951,0.46579,0.956619,0.444235,0.137774,0.0582163,0.205499,0.511373,0.969648,0.73945,0.15195,0.228478,0.187595,0.916232,0.457086,0.433596,0.738494,0.296224,0.249791,0.72969,0.909608,0.680796,0.335161,0.0258701,0.143767,0.527355,0.352476,0.518319,0.820032,0.735857,0.807147,0.0194992,0.338957,0.0693946,0.932735,0.704304,0.653708,0.249762,0.415314,0.0680394,0.752411,0.499612,0.140364,0.155096,0.175124,0.140037,0.247092,0.225279,0.20564,0.187853,0.0351928,0.407121,0.95237,0.98606,0.767743,0.473249,0.986981,0.467351,0.119538,0.796792,0.893478,0.419745,0.902912,0.405716,0.451566,0.96352,0.579511,0.0874028,0.160851,0.930674,0.641434,0.712944,0.812351,0.492433,0.557844,0.585066,0.0157049,0.7584,0.639288,0.906829,0.662842,0.494457,0.674968,0.938966,0.197046,0.469674,0.175022,0.825508,0.805506,0.102792,0.63783,0.246498,0.930785,0.345291,0.831803,0.0923035,0.471398,0.139733,0.796542,0.78252,0.815847,0.862048,0.00715673,0.00611234,0.751169,0.424555,0.0333128,0.0936422,0.194081,0.975829,0.238829,0.847086,0.149604,0.777192,0.115527,0.53209,0.0692216,0.91188,0.577226,0.509706,0.728869,0.0340828,0.929681,0.951143,0.0909542,0.374795,0.0712909,0.763465,0.782774,0.719559,0.690562,0.0110838,0.0157264,0.0931752,0.573915,0.287784,0.896989,0.94876,0.535027,0.255513,0.169187,0.290895,0.401326,0.482372,0.291698,0.361762,0.886036,0.500523,0.406413,0.35698,0.435585,0.5149,0.543456,0.765862,0.414156,0.90739,0.744539,0.816871,0.229064,0.337191,0.621599,0.823367,0.508584,0.328204,0.429691,0.853638,0.86205,0.0291934,0.0311233,0.182238,0.728124,0.830619,0.295006,0.607357,0.975844,0.839078,0.453288,0.962811,0.757653,0.328845,0.870883,0.0425034,0.478933,0.303575,0.176726,0.679531,0.733966,0.510295,0.417323,0.330177,0.133464,0.44115,0.461364,0.915318,0.0709119,0.880467,0.599635,0.902765,0.173629,0.316339,0.476212,0.131273,0.774739,0.464861,0.771996,0.427063,0.0596209,0.332089,0.041603,0.991531,0.0807391,0.70005,0.568408,0.640822,0.741931,0.885438,0.0414348,0.528953,0.916836,0.352864,0.205369,0.689704,0.602944,0.717973,0.680182,0.446765,0.878861,0.937674,0.535311,0.136511,0.705088,0.108011,0.267582,0.145915,0.651681,0.683036,0.905763,0.164679,0.626062,0.368174,0.31316,0.592113,0.0630287,0.472795,0.665783,0.37856,0.31822,0.0366086,0.640185,0.422045,0.647314,0.150252,0.889377,0.126419,0.986881,0.612937,0.401398,0.594501,0.333821,0.773493,0.779213,0.0727924,0.968203,0.292804,0.883331,0.468956,0.420758,0.509887,0.399652,0.31751,0.199965,0.700513,0.955882,0.12633,0.447185,0.735572,0.579979,0.403423,0.188103,0.722543,0.283743,0.128056,0.744672,0.103762,0.513887,0.0824583,0.386946,0.181828,0.636877,0.264433,0.89243,0.795132,0.589723,0.133705,0.0508984,0.296407,0.493697,0.750498,0.546412,0.777935,0.366088,0.132634,0.629196,0.0439985,0.473749,0.41781,0.137847,0.878654,0.7261,0.073538,0.81713,0.263333,0.051542,0.686669,0.835796,0.422301,0.959792,0.468105,0.916674,0.794163,0.467578,0.969541,0.949153,0.561629,0.174689,0.0822883,0.0252825,0.535309,0.606094,0.973563,0.675888,0.653917,0.250972,0.993292,0.340319,0.354989,0.775269,0.739072,0.321369,0.22681,0.605467,0.00291431,0.189454,0.412346,0.258472,0.259346,0.137755,0.886913,0.211925,0.122883,0.231201,0.904078,0.611888,0.415128,0.57495,0.353365,0.873207,0.575472,0.243605,0.168016,0.286888,0.0377691,0.111717,0.245626,0.255664,0.0157941,0.584508,0.503092,0.121554,0.806244,0.312706,0.135708,0.0873007,0.288008,0.256998,0.671705,0.202164,0.959892,0.650635,0.956464,0.379679,0.487397,0.294186,0.429029,0.126273,0.561222,0.0355262,0.176923,0.518884,0.764643,0.857389,0.980477,0.781776,0.783449,0.570736,0.473152,0.548011,0.849346,0.0908815,0.126918,0.162759,0.506993,0.666359,0.961919,0.810217,0.985621,0.647395,0.000977874,0.797723,0.950894,0.477475,0.885342,0.298046,0.613935,0.789334,0.3827,0.204911,0.425589,0.570281,0.885127,0.965089,0.275117,0.853282,0.342814,0.497441,0.771638,0.751828,0.0426325,0.452166,0.782443,0.112448,0.339064,0.649929,0.659161,0.637053,0.092001,0.814181,0.00442958,0.315111,0.16558,0.437842,0.869261,0.927649,0.806353,0.375423,0.254476,0.549395,0.904101,0.397466,0.749185,0.469698,0.605506,0.333924,0.870249,0.337641,0.86096,0.938253,0.480849,0.501816,0.988019,0.265335,0.635554,0.0928537,0.829631,0.0952605,0.656177,0.609517,0.362062,0.146939,0.0513582,0.0801646,0.0522568,0.429718,0.972162,0.450058,0.625714,0.0582685,0.535171,0.488706,0.388713,0.725791,0.790725,0.593349,0.664128,0.0328525,0.817494,0.559711,0.524317,0.322762,0.739306,0.444963,0.450232,0.52365,0.184977,0.529639,0.310463,0.752201,0.37498,0.260207,0.663603,0.832107,0.178937,0.353671,0.690306,0.558506,0.991803,0.577177,0.431362,0.562944,0.764251,0.866545,0.179657,0.712888,0.726377,0.895372,0.341096,0.521231,0.383601,0.734663,0.994682,0.372875,0.478016,0.646967,0.977257,0.337619,0.845584,0.806456,0.737879,0.153867,0.456535,0.519196,0.355976,0.641998,0.0374593,0.853274,0.782015,0.194779,0.497924,0.402353,0.477403,0.741394,0.983049,0.0141179,0.368103,0.640909,0.172585,0.220253,0.824331,0.383019,0.104817,0.288682,0.792211,0.920289,0.177402,0.63288,0.842587,0.53834,0.00308603,0.650324,0.198397,0.628974,0.323451,0.736449,0.501027,0.860886,0.896996,0.0931773,0.120139,0.212194,0.828535,0.0721181,0.862811,0.790839,0.226174,0.101689,0.560814,0.756206,0.446347,0.961295,0.171694,0.00784719,0.208485,0.702431,0.926487,0.620604,0.937334,0.443946,0.371677,0.257048,0.366252,0.262959,0.0238979,0.620349,0.275416,0.379609,0.84853,0.410378,0.377013,0.622882,0.191195,0.139613,0.8192,0.919857,0.620862,0.789067,0.934316,0.382156,0.110766,0.289672,0.945249,0.0178289,0.27902,0.266162,0.286523,0.300401,0.199089,0.929488,0.601945,0.367027,0.399647,0.556353,0.217824,0.32501,0.234809,0.575162,0.718496,0.951164,0.0909362,0.861827,0.288937,0.241561,0.925441,0.828679,0.11434,0.242044,0.0409964,0.880626,0.985668,0.12635,0.77914,0.490818,0.90653,0.340785,0.602236,0.487419,0.934902,0.0427393,0.454489,0.686262,0.0627452,0.831213,0.464908,0.972025,0.321606,0.341264,0.902178,0.963058,0.564346,0.94173,0.939615,0.677088,0.599594,0.0938188,0.545808,0.270822,0.826453,0.389055,0.662955,0.588109,0.754319,0.768489,0.00240815,0.148758,0.717747,0.446048,0.313292,0.927681,0.407521,0.0777371,0.709249,0.51486,0.653858,0.38824,0.590338,0.939206,0.448974,0.938444,0.762123,0.992075,0.568608,0.945217,0.437848,0.580562,0.057376,0.5366,0.574807,0.947606,0.485603,0.217716,0.224738,0.270914,0.0207502,0.0691626,0.865011,0.0241328,|0.174297,0.417619,0.368601,0.620456,0.867948,0.997032,0.121186,0.540265,0.128338,0.934224,0.227942,0.203103,0.49522,0.302303,0.624453,0.0593368,0.246519,0.585466,0.358853,0.710877,0.792004,0.231197,0.206552,0.948828,0.402708,0.0154441,0.355711,0.662078,0.663113,0.40945,0.132306,0.0726382,0.476943,0.902482,0.00101173,0.724783,0.81892,0.306191,0.647246,0.00112736,0.376057,0.0765492,0.938839,0.518603,0.777766,0.421819,0.619335,0.661205,0.351039,0.702851,0.218702,0.602238,0.0181873,0.00410563,0.163267,0.429718,0.542763,0.377015,0.964123,0.940742,0.0664041,0.650788,0.515964,0.883185,0.423722,0.390189,0.204886,0.864314,0.328839,0.212817,0.9586,0.274936,0.922083,0.158731,0.633987,0.641709,0.933438,0.40641,0.17642,0.957714,0.752535,0.469614,0.443228,0.460774,0.59003,0.448656,0.688,0.475669,0.251716,0.412958,0.30699,0.388632,0.0129606,0.341405,0.181198,0.944868,0.112017,0.648453,0.750535,0.292854,0.982678,0.39953,0.125396,0.317915,0.790735,0.359902,0.507752,0.162634,0.233012,0.869736,0.284484,0.12385,0.113151,0.0302043,0.960959,0.763706,0.513948,0.967243,0.136303,0.372226,0.0674977,0.50223,0.423977,0.704492,0.71499,0.103259,0.830648,0.190626,0.248694,0.162506,0.73841,0.588113,0.755061,0.382791,0.575132,0.0609617,0.516485,0.439923,0.0650738,0.268603,0.384586,0.516593,0.616089,0.0915953,0.569322,0.926795,0.733611,0.689707,0.768442,0.265454,0.289685,0.278553,0.665363,0.0454156,0.833104,0.0492699,0.0657834,0.851928,0.169509,0.603074,0.248753,0.595355,0.0796803,0.788402,0.749325,0.681346,0.104288,0.887313,0.601508,0.165495,0.843556,0.796497,0.533572,0.413937,0.782508,0.296777,0.0192472,0.23075,0.864035,0.544977,0.543915,0.117921,0.947452,0.786338,0.0555471,0.245883,0.87167,0.352124,0.524574,0.0334356,0.725887,0.104354,0.386002,0.451216,0.631338,0.35906,0.991566,0.177215,0.410165,0.209921,0.423073,0.403558,0.456023,0.0811299,0.134067,0.0827741,0.659889,0.725707,0.185874,0.201396,0.891821,0.866134,0.832718,0.697209,0.119274,0.86477,0.71442,0.330395,0.298229,0.614523,0.71606,0.26248,0.894466,0.650161,0.361464,0.99838,0.426621,0.452679,0.261342,0.486259,0.946091,0.157405,0.577254,0.750029,0.0480423,0.958682,0.114999,0.539249,0.239313,0.624799,0.128744,0.872646,0.446303,0.603753,0.217881,0.832691,0.0533755,0.44239,0.571767,0.191084,0.621985,0.798096,0.39887,0.269482,0.978882,0.0626093,0.717478,0.0942437,0.00647658,0.898346,0.403456,0.0575626,0.350829,0.184248,0.813352,0.675245,0.325033,0.19173,0.234503,0.0634708,0.718778,0.71048,0.423258,0.676373,0.969848,0.0132546,0.0986892,0.349186,0.872426,0.839104,0.802158,0.858439,0.225275,0.722767,0.405989,0.814922,0.939384,0.530895,0.850022,0.263049,0.250482,0.487118,0.837153,0.508433,0.128709,0.896933,0.454307,0.686062,0.746848,0.282317,0.0512658,0.351486,0.104008,0.37627,0.823217,0.518891,0.707646,0.417211,0.315316,0.663233,0.540327,0.215304,0.0228675,0.102719,0.633318,0.333257,0.241154,0.968868,0.411364,0.821552,0.153079,0.948028,0.0298878,0.612443,0.186739,0.871132,0.189762,0.00590223,0.519544,0.269404,0.319042,0.229266,0.921801,0.73907,0.998033,0.857234,0.13914,0.702042,0.295865,0.661758,0.365387,0.435946,0.654835,0.685129,0.535485,0.034035,0.681608,0.723697,0.808303,0.225898,0.991393,0.713403,0.936159,0.780988,0.97811,0.836125,0.117622,0.848252,0.51484,0.208894,0.521118,0.639797,0.641461,0.128037,0.174985,0.996464,0.444344,0.128631,0.798201,0.548021,0.210659,0.695823,0.0685791,0.224525,0.653208,0.300543,0.822528,0.997837,0.794958,0.814967,0.446287,0.892251,0.632736,0.813174,0.369373,0.382731,0.649982,0.842678,0.53569,0.421427,0.0442296,0.102832,0.0432616,0.765486,0.648712,0.485796,0.510054,0.357989,0.907762,0.987385,0.862703,0.142686,0.054453,0.597775,0.775048,0.321134,0.846016,0.824162,0.206049,0.140515,0.192337,0.496252,0.746101,0.434592,0.891588,0.0789862,0.277303,0.474044,0.356358,0.159832,0.541258,0.807684,0.76358,0.761245,0.545023,0.699068,0.440109,0.0488278,0.111892,0.813873,0.139099,0.7771,0.113313,0.732698,0.184719,0.199774,0.656355,0.807807,0.459212,0.707923,0.483954,0.918479,0.560373,0.73182,0.952393,0.667462,0.74209,0.75743,0.718195,0.654021,0.281406,0.990684,0.633331,0.0780097,0.0650086,0.0350501,0.150442,0.888416,0.385338,0.918651,0.412088,0.576215,0.376086,0.912824,0.618632,0.297123,0.299344,0.568031,0.796187,0.18522,0.403031,0.177046,0.438164,0.111291,0.371904,0.024835,0.293894,0.613699,0.915063,0.143314,0.691587,0.69147,0.88314,0.796322,0.976975,0.405355,0.347906,0.5663,0.0684388,0.709527,0.401045,0.284819,0.0680659,0.333729,0.467856,0.365823,0.217948,0.274862,0.961382,0.0335363,0.569291,0.443509,0.734798,0.285682,0.625652,0.881581,0.519783,0.564607,0.147902,0.558764,0.191594,0.604426,0.303347,0.114565,0.344371,0.399879,0.15313,0.563335,0.222972,0.44509,0.577052,0.266136,0.792478,0.0160705,0.70108,0.91642,0.0635663,0.539262,0.0760704,0.473944,0.245293,0.819334,0.283757,0.572483,0.877312,0.197692,0.815487,0.9911,0.61342,0.83972,0.274721,0.634935,0.62379,0.670595,0.539702,0.950108,0.86319,0.390187,0.56267,0.812542,0.0834613,0.731217,0.0493807,0.706565,0.58559,0.164376,0.655702,0.209184,0.193711,0.584252,0.279009,0.0644981,0.348272,0.475783,0.200532,0.543382,0.127036,0.890378,0.140795,0.483041,0.837004,0.435789,0.253585,0.8014,0.0158595,0.427384,0.499275,0.602955,0.78615,0.00585824,0.703596,0.657305,0.379365,0.949777,0.532643,0.52477,0.843995,0.0937393,0.623878,0.854667,0.943799,0.224852,0.284622,0.522886,0.631223,0.66835,0.797922,0.746766,0.850921,0.991088,0.744959,0.837074,0.899878,0.85858,0.502539,0.352898,0.466815,0.485276,0.84898,0.455885,0.995803,0.706407,0.696322,0.882306,0.446041,0.435284,0.786622,0.359174,0.420773,0.707626,0.601151,0.672344,0.0697516,0.862764,0.338204,0.286084,0.185896,0.118081,0.914991,0.360183,0.0780197,0.649827,0.0851182,0.485361,0.480559,0.621672,0.590898,0.435512,0.885873,0.951654,0.990036,0.388572,0.091936,0.773349,0.590664,0.0597967,0.557542,0.403117,0.38338,0.263627,0.457791,0.231928,0.822251,0.170876,0.390467,0.586207,0.972247,0.330889,0.126111,0.615863,0.808352,0.855624,0.352795,0.773078,0.384029,0.372719,0.280578,0.665964,0.146439,0.479916,0.904127,0.383298,0.707005,0.223204,0.621187,0.0554433,0.39552,0.0456337,0.757652,0.482044,0.188506,0.759004,0.448545,0.298214,0.855103,0.0254923,0.126374,0.723218,0.938617,0.812651,0.661411,0.0966469,0.721382,0.263475,0.950648,0.555853,0.98798,0.746356,0.654803,0.623415,0.607191,0.376904,0.358901,0.378723,0.904979,0.0733477,0.964165,0.868831,0.282683,0.938646,0.848052,0.384634,0.421909,0.216378,0.480066,0.436379,0.0571166,0.559566,0.693497,0.296225,0.846925,0.666696,0.221868,0.46338,0.0103119,0.777479,0.856757,0.714085,0.3441,0.79546,0.213126,0.85566,0.334128,0.201326,0.222108,0.481219,0.771162,0.863252,0.510956,0.0797353,0.989363,0.451258,0.220736,0.2323,0.351941,0.328927,0.139039,0.586528,0.988604,0.244865,0.89283,0.482078,0.325808,0.668447,0.170816,0.261984,0.788602,0.714963,0.811846,0.53711,0.124624,0.74976,0.597601,0.172176,0.928693,0.6839,0.625016,0.501538,0.762953,0.593265,0.214256,0.790992,0.967241,0.92001,0.356619,0.788191,0.389358,0.314231,0.00548118,0.578152,0.159983,0.854285,0.703817,0.213738,0.258502,0.559783,0.402099,0.968315,0.0768148,0.683111,0.752048,0.367251,0.0121858,0.0498912,0.757576,0.338044,0.226613,0.87278,0.419215,0.479749,0.217195,0.575014,0.841129,0.717792,0.492041,0.838336,0.641082,0.685876,0.411259,0.53931,0.0361688,0.458928,0.0660605,0.912194,0.125234,0.211473,0.376568,0.976004,0.289563,0.497911,0.448972,0.106961,0.798232,0.498232,0.660132,0.49083,0.0744755,0.406129,0.926027,0.674343,0.621101,0.265872,0.339296,0.31789,0.489799,0.339968,0.0911996,0.194225,0.938649,0.212033,0.788944,0.59465,0.832765,0.291414,0.171119,0.26734,0.0466495,0.865507,0.730393,0.327262,0.0478138,0.968913,0.121973,0.811374,0.906288,0.700129,0.844163,0.414285,0.563122,0.442807,0.827898,0.0414832,0.924774,0.43013,0.481224,0.348264,0.941857,0.0423812,0.633546,0.828211,0.655253,0.93308,0.0418899,0.848236,0.763593,0.231772,0.00495052,0.906399,0.846623,0.276685,0.502648,0.571401,0.148001,0.618295,0.508085,0.00118363,0.468323,0.261306,0.189901,0.335489,0.259408,0.781635,0.242812,0.059163,0.89576,0.474009,0.686924,0.618943,0.69644,0.343724,0.693334,0.138749,0.522798,0.642133,0.0284721,0.159454,0.953266,0.952679,0.405132,0.300535,0.446353,0.650718,0.738271,0.118291,0.224524,0.519432,0.993481,0.816633,0.330673,0.214792,0.495193,0.277451,0.82174,0.822655,0.112108,0.404111,0.595003,0.915572,0.43651,0.337693,0.703292,0.505397,0.166694,0.415772,0.271433,0.38176,0.0827299,0.813909,0.436415,0.481638,0.581716,0.101113,0.0695345,0.738723,0.095015,0.723275,0.793401,0.449741,0.163878,0.835473,0.119538,0.657144,0.408085,0.395577,0.450262,0.325002,0.353058,0.397168,0.543547,0.0902925,0.567713,0.790682,0.513562,0.239561,0.380185,0.952684,0.570761,0.815888,0.474671,0.676507,0.28354,0.388394,0.291463,0.914534,0.937696,0.131804,0.508773,0.178946,0.547944,0.997097,0.877308,0.545731,0.662809,0.805535,0.834759,0.925577,0.697854,0.280356,0.0180891,0.247303,0.172191,0.370234,0.239854,0.91553,0.250836,0.107683,0.370448,0.672213,0.923308,0.824417,|0.0672276,0.0138164,0.72024,0.0348272,0.00103998,0.0704264,0.556569,0.454852,0.585162,0.624203,0.794895,0.383974,0.963822,0.300061,0.676525,0.861244,0.897024,0.62307,0.135452,0.00622362,0.0612261,0.588832,0.384949,0.177846,0.367912,0.325864,0.833519,0.670304,0.992424,0.652999,0.435093,0.795941,0.0964856,0.894602,0.640889,0.190149,0.529175,0.434689,0.137009,0.649239,0.531656,0.447368,0.181329,0.635642,0.731583,0.549908,0.124944,0.474369,0.366963,0.952479,0.636377,0.379947,0.708136,0.839064,0.686342,0.0119516,0.346958,0.372264,0.69214,0.696982,0.618727,0.466254,0.324322,0.623768,0.416297,0.172382,0.580207,0.440141,0.602582,0.553657,0.246181,0.653852,0.275084,0.493392,0.530278,0.00273788,0.518737,0.393784,0.0928933,0.0267883,0.149626,0.0998264,0.00445175,0.474684,0.434009,0.0170566,0.567174,0.972208,0.620863,0.0358564,0.395753,0.644175,0.213776,0.109752,0.0948729,0.78971,0.317609,0.233588,0.85354,0.433063,0.0339384,0.718779,0.301912,0.833041,0.0573113,0.307007,0.0898076,0.500969,0.700987,0.98902,0.819402,0.0716574,0.397985,0.514102,0.493972,0.550587,0.981507,0.768753,0.685292,0.457925,0.361458,0.156857,0.908482,0.0450481,0.174661,0.442934,0.475048,0.162383,0.467753,0.423592,0.106858,0.632736,0.398379,0.697222,0.285895,0.929568,0.529177,0.261636,0.546111,0.844574,0.449115,0.43276,0.809973,0.950647,0.47326,0.0183491,0.557844,0.371508,0.944947,0.999334,0.838885,0.679616,0.215654,0.678048,0.874261,0.982919,0.124692,0.259915,0.867927,0.393391,0.51639,0.448333,0.221704,0.791269,0.832562,0.700797,0.517925,0.089192,0.523618,0.0637488,0.40588,0.574688,0.950781,0.397342,0.227583,0.63032,0.87378,0.0923275,0.567425,0.0734104,0.750646,0.163835,0.370938,0.338061,0.208497,0.33919,0.351965,0.00482821,0.075617,0.508647,0.668513,0.0162555,0.263004,0.562193,0.127023,0.950588,0.329105,0.592505,0.768285,0.146675,0.0379466,0.0627146,0.283698,0.369538,0.0901619,0.996959,0.294019,0.455375,0.663536,0.316309,0.156308,0.900867,0.0540155,0.310903,0.357519,0.142049,0.914453,0.53936,0.769997,0.231347,0.594868,0.34545,0.739758,0.79837,0.99353,0.669871,0.572469,0.790958,0.317204,0.756324,0.0919357,0.612348,0.0743806,0.763625,0.956111,0.983859,0.312151,0.247196,0.558888,0.899971,0.760635,0.456297,0.69422,0.790284,0.710672,0.672273,0.826207,0.547543,0.0313309,0.506991,0.0815716,0.290298,0.859988,0.860316,0.820598,0.995591,0.917126,0.0712916,0.0649309,0.184279,0.384402,0.0210875,0.448124,0.37437,0.222086,0.480063,0.587327,0.0999641,0.00263411,0.0884669,0.375724,0.0152955,0.932314,0.277849,0.92295,0.466092,0.0450905,0.44354,0.314059,0.944906,0.781772,0.528313,0.591357,0.0184889,0.0461666,0.393711,0.0253804,0.947878,0.180862,0.636517,0.389988,0.485855,0.974933,0.75728,0.408235,0.825826,0.527183,0.33931,0.950229,0.050154,0.176537,0.796511,0.341377,0.995899,0.760316,0.696901,0.36081,0.922291,0.213446,0.913711,0.219005,0.956373,0.894771,0.682526,0.254146,0.672621,0.217853,0.477125,0.781125,0.113449,0.176615,0.246204,0.0131172,0.288016,0.731151,0.435764,0.540245,0.459613,0.80233,0.0978555,0.0474809,0.842127,0.551004,0.465437,0.8217,0.88234,0.457478,0.630563,0.467667,0.0975694,0.244288,0.454318,0.648084,0.15084,0.394259,0.186333,0.162479,0.2039,0.546146,0.488848,0.929924,0.672966,0.26643,0.654277,0.933842,0.283192,0.660067,0.416732,0.243812,0.177599,0.141093,0.409419,0.577801,0.625975,0.429571,0.519514,0.318365,0.986395,0.185668,0.295437,0.995142,0.81041,0.0181318,0.0721053,0.364515,0.50497,0.847739,0.43962,0.765164,0.477611,0.0311586,0.063919,0.101253,0.812416,0.67494,0.781749,0.982279,0.809968,0.702831,0.645065,0.0847749,0.744173,0.153412,0.292799,0.0668967,0.277608,0.458916,0.185992,0.711679,0.772848,0.662792,0.239419,0.835947,0.220276,0.619051,0.24428,0.981334,0.619276,0.291876,0.555275,0.968226,0.884544,0.928654,0.367473,0.889752,0.786692,0.940533,0.842554,0.285597,0.227269,0.835576,0.771277,0.481572,0.248669,0.511412,0.367327,0.360433,0.300078,0.841122,0.768084,0.906331,0.411283,0.704702,0.0146722,0.653525,0.34288,0.738723,0.0489495,0.642571,0.426652,0.104247,0.102067,0.48488,0.156218,0.550673,0.857461,0.339615,0.50293,0.328319,0.337236,0.213755,0.874617,0.373098,0.759391,0.35905,0.0613076,0.81043,0.75033,0.239869,0.352634,0.243008,0.171658,0.335604,0.739804,0.00135219,0.924533,0.876828,0.0265549,0.516857,0.0286736,0.448641,0.864424,0.296902,0.252618,0.751112,0.0950371,0.485022,0.831161,0.283271,0.682009,0.221019,0.83613,0.236561,0.193948,0.889968,0.203331,0.705497,0.875082,0.209872,0.75528,0.55109,0.429913,0.711318,0.988679,0.798051,0.475754,0.20589,0.963111,0.743721,0.373477,0.493009,0.174525,0.614817,0.667913,0.835899,0.882295,0.791813,0.141039,0.821567,0.161542,0.382017,0.0653681,0.905902,0.764518,0.564036,0.268519,0.127809,0.480929,0.0167962,0.486798,0.951801,0.275259,0.594418,0.994985,0.0505468,0.814284,0.705245,0.880563,0.577849,0.0606943,0.0473453,0.274437,0.215014,0.400276,0.727328,0.904449,0.0739385,0.2806,0.510759,0.375964,0.666534,0.528079,0.153452,0.753116,0.642988,0.52584,0.602004,0.904549,0.714565,0.176844,0.728752,0.673726,0.919157,0.136783,0.63681,0.665278,0.136948,0.18362,0.110475,0.393496,0.832466,0.606194,0.110021,0.0412439,0.895997,0.740675,0.966355,0.45842,0.971168,0.338953,0.409389,0.584578,0.109984,0.275328,0.631,0.927131,0.830856,0.18137,0.264913,0.546519,0.578447,0.679592,0.669205,0.45623,0.949008,0.840842,0.281795,0.694129,0.698536,0.603499,0.512373,0.217088,0.0686232,0.0223888,0.741103,0.0835529,0.928307,0.0838698,0.87386,0.297125,0.00598705,0.189051,0.876044,0.984254,0.597812,0.367945,0.590252,0.42083,0.0915507,0.437268,0.356981,0.463321,0.781649,0.508383,0.0961261,0.0964735,0.2339,0.451499,0.74144,0.107332,0.167363,0.114762,0.661149,0.851544,0.00685531,0.721307,0.532588,0.574546,0.377927,0.87729,0.789334,0.121409,0.282544,0.854585,0.618604,0.751906,0.0149382,0.219473,0.925457,0.65327,0.136179,0.172188,0.390532,0.374838,0.124529,0.558257,0.363487,0.775249,0.79429,0.0690036,0.5187,0.155815,0.477049,0.0519494,0.891097,0.812088,0.419441,0.322773,0.697809,0.117657,0.82957,0.416859,0.178763,0.245178,0.342426,0.129203,0.961425,0.585221,0.924789,0.744535,0.581741,0.54696,0.0507586,0.715938,0.449635,0.323446,0.855531,0.970707,0.825215,0.935901,0.367744,0.527934,0.139149,0.219929,0.795686,0.676096,0.232699,0.594971,0.479171,0.422264,0.749059,0.680265,0.642528,0.16134,0.433872,0.877943,0.724139,0.646447,0.976529,0.568615,0.0683194,0.836755,0.48446,0.788135,0.667016,0.143817,0.964895,0.524561,0.767642,0.610359,0.295016,0.23104,0.666318,0.267225,0.473199,0.632419,0.695354,0.826091,0.245498,0.0578594,0.98776,0.767623,0.350839,0.101841,0.304187,0.678784,0.981798,0.374664,0.165157,0.768006,0.927588,0.972927,0.903738,0.37266,0.877262,0.459734,0.195942,0.461301,0.167684,0.0328797,0.939571,0.488875,0.284869,0.88464,0.215257,0.409922,0.0632809,0.136681,0.62351,0.87695,0.619508,0.176453,0.813656,0.900268,0.0509122,0.707545,0.414113,0.340937,0.10023,0.85012,0.296969,0.0370941,0.996587,0.343047,0.443078,0.0648503,0.941438,0.593378,0.783578,0.30613,0.742216,0.238442,0.393882,0.91482,0.565419,0.150039,0.0726777,0.0175366,0.113274,0.515625,0.343858,0.577449,0.72534,0.161051,0.283671,0.680921,0.418205,0.269441,0.678328,0.31342,0.237026,0.123254,0.380824,0.707378,0.571316,0.888071,0.291841,0.272498,0.92819,0.0859303,0.390902,0.451558,0.41812,0.775498,0.338926,0.13313,0.127927,0.797396,0.664799,0.893839,0.2631,0.604886,0.33308,0.807889,0.908873,0.92074,0.639334,0.629384,0.128525,0.0593773,0.57682,0.54174,0.729313,0.0526873,0.619564,0.425333,0.177641,0.347257,0.710668,0.66704,0.555247,0.0592697,0.53362,0.956228,0.650259,0.34186,0.703894,0.41046,0.0266045,0.946577,0.592295,0.444352,0.18493,0.81171,0.365741,0.856013,0.495443,0.480359,0.148066,0.967742,0.737016,0.404973,0.226362,0.0529903,0.579739,0.170385,0.620461,0.912027,0.482106,0.858847,0.614954,0.402825,0.959033,0.398125,0.637651,0.784302,0.447815,0.643722,0.862776,0.108879,0.584399,0.409186,0.706281,0.462147,0.322829,0.165704,0.379488,0.752297,0.321394,0.405293,0.479131,0.740221,0.106571,0.155319,0.985899,0.203067,0.674906,0.95224,0.411862,0.515854,0.669901,0.60522,0.494713,0.41873,0.609125,0.424085,0.608275,0.154483,0.833266,0.613148,0.434892,0.386821,0.309545,0.667323,0.682889,0.8072,0.615145,0.89007,0.396388,0.859579,0.273025,0.665002,0.345763,0.351041,0.829802,0.0214834,0.132529,0.794755,0.0327435,0.249838,0.827367,0.87083,0.426919,0.758394,0.11541,0.465587,0.4385,0.0228283,0.999042,0.236442,0.930947,0.460206,0.0840943,0.590698,0.831231,0.691276,0.0593984,0.794149,0.0783429,0.709011,0.840655,0.707165,0.554835,0.547725,0.0370201,0.813669,0.10073,0.472607,0.0358895,0.153191,0.0966908,0.00883842,0.626194,0.420755,0.425311,0.916121,0.0195351,0.647207,0.850543,0.299402,0.905486,0.581085,0.794852,0.169689,0.113895,0.705092,0.32719,0.581282,0.484255,0.0740812,0.727927,0.713862,0.160324,0.643638,0.932587,0.487055,0.540483,0.56409,0.783878,0.0995452,0.22959,0.628236,0.245868,0.767534,0.286765,0.877472,0.732791,0.294865,0.398446,0.581264,0.640219,0.701105,0.719532,0.153447,0.595297,0.47712,0.67242,0.0680469,0.831494,0.578158,|0.903799,0.986493,0.188123,0.719917,0.871083,0.799875,0.249247,0.989083,0.740141,0.00711715,0.999442,0.237919,0.939728,0.825269,0.481713,0.41764,0.667957,0.928664,0.352556,0.233291,0.876026,0.619975,0.425287,0.30903,0.0471541,0.71163,0.456051,0.925718,0.924927,0.39176,0.754095,0.936451,0.557744,0.817633,0.0297146,0.418987,0.190004,0.237154,0.882427,0.443973,0.461993,0.360751,0.085005,0.0800991,0.684119,0.436978,0.338625,0.988123,0.206762,0.0573235,0.161118,0.818606,0.734362,0.35497,0.934967,0.557691,0.0529009,0.132178,0.609846,0.673811,0.968656,0.898185,0.348568,0.17806,0.778808,0.240004,0.319253,0.460395,0.413874,0.774822,0.267596,0.962432,0.561105,0.559486,0.198568,0.850085,0.0353275,0.25967,0.235984,0.826245,0.168987,0.0716342,0.839019,0.926212,0.756143,0.20782,0.614368,0.0426064,0.17933,0.381803,0.773847,0.872469,0.218475,0.923787,0.294817,0.231809,0.344474,0.543381,0.978204,0.371066,0.397245,0.296242,0.453084,0.34944,0.285527,0.722914,0.297312,0.021943,0.188169,0.649635,0.444408,0.351066,0.0288535,0.586258,0.120845,0.995656,0.070235,0.0454424,0.217345,0.332103,0.666427,0.687265,0.326472,0.672157,0.337645,0.879446,0.228065,0.557441,0.531692,0.808378,0.931588,0.389436,0.0784662,0.126373,0.172731,0.120631,0.442895,0.263086,0.14263,0.0947579,0.295622,0.525926,0.272928,0.162825,0.273709,0.207644,0.745345,0.0337487,0.316037,0.3722,0.678545,0.522159,0.888063,0.459257,0.703275,0.878512,0.600879,0.241163,0.360364,0.4797,0.741819,0.504669,0.743326,0.241604,0.208384,0.20063,0.434149,0.232863,0.0710669,0.654812,0.46913,0.448346,0.912806,0.840319,0.886497,0.483751,0.357738,0.184424,0.924693,0.525226,0.506989,0.345617,0.844103,0.589441,0.591214,0.836026,0.658663,0.959036,0.06399,0.822023,0.594413,0.629067,0.859755,0.276076,0.3968,0.669621,0.333197,0.10404,0.382966,0.568112,0.523326,0.85785,0.369591,0.62489,0.789507,0.0493721,0.842157,0.643107,0.062339,0.8982,0.843308,0.0637946,0.258932,0.765669,0.762603,0.49647,0.308563,0.65564,0.527748,0.305867,0.50944,0.177899,0.620993,0.198438,0.112609,0.482482,0.925264,0.397771,0.204377,0.552162,0.280956,0.537435,0.0611346,0.334538,0.995305,0.742887,0.0838076,0.192323,0.116388,0.948191,0.300083,0.249823,0.595568,0.785556,0.276958,0.582783,0.952951,0.70489,0.427572,0.0746445,0.461025,0.627168,0.139958,0.373803,0.47872,0.11894,0.689341,0.465241,0.832889,0.798232,0.0355833,0.507626,0.852223,0.0179313,0.275357,0.968147,0.108448,0.5703,0.571402,0.916808,0.415221,0.604649,0.788078,0.528834,0.693042,0.54418,0.395278,0.508527,0.690334,0.0103044,0.679964,0.0369476,0.996167,0.754115,0.487995,0.502977,0.212112,0.992874,0.0984233,0.329197,0.29057,0.629848,0.934934,0.772111,0.55122,0.905192,0.192296,0.636173,0.0392652,0.61587,0.705602,0.530167,0.523598,0.89676,0.229692,0.25549,0.581725,0.985272,0.786331,0.161648,0.733574,0.89166,0.533035,0.970237,0.749707,0.827331,0.951093,0.377531,0.0943049,0.414268,0.241811,0.289751,0.320404,0.0583106,0.101379,0.471834,0.116126,0.17781,0.786283,0.869729,0.595297,0.678038,0.245629,0.233762,0.349337,0.596885,0.284623,0.826632,0.567344,0.757443,0.522393,0.440174,0.235817,0.118919,0.0179139,0.874444,0.783111,0.613278,0.412224,0.983195,0.902786,0.807173,0.726325,0.393093,0.363446,0.395846,0.0934766,0.136401,0.534086,0.51021,0.556912,0.38029,0.0220073,0.996314,0.565214,0.3289,0.0550682,0.191687,0.316714,0.876158,0.0283063,0.091998,0.000551283,0.732572,0.0925502,0.355628,0.710753,0.292758,0.577989,0.150696,0.993053,0.110125,0.529769,0.985669,0.217217,0.768021,0.647683,0.98673,0.728829,0.895222,0.366477,0.207097,0.910049,0.846055,0.654047,0.284654,0.554116,0.51066,0.797111,0.889969,0.16183,0.125775,0.527444,0.248399,0.376807,0.547182,0.998237,0.502154,0.333355,0.473221,0.314639,0.721101,0.864815,0.743623,0.945088,0.0451055,0.205396,0.999882,0.590158,0.0604519,0.686755,0.137668,0.376906,0.604187,0.118096,0.518951,0.375128,0.558734,0.278335,0.535896,0.548301,0.833712,0.402582,0.532267,0.518786,0.803522,0.447886,0.113791,0.690628,0.10485,0.0380134,0.112601,0.157782,0.0778584,0.773865,0.335682,0.549043,0.693574,0.671574,0.798412,0.528923,0.868794,0.378752,0.095852,0.0651716,0.257098,0.112346,0.757091,0.968356,0.911805,0.185649,0.450011,0.746993,0.894636,0.798071,0.958062,0.450105,0.65591,0.380067,0.621128,0.123,0.754385,0.784028,0.805755,0.291042,0.0943291,0.64199,0.975974,0.656753,0.0529299,0.872586,0.1182,0.509013,0.275362,0.148361,0.117258,0.457418,0.43908,0.39021,0.618172,0.818853,0.224708,0.910973,0.996312,0.0694943,0.900223,0.204824,0.576123,0.834577,0.124628,0.00260341,0.420454,0.259604,0.35589,0.326994,0.192613,0.795651,0.796173,0.839331,0.310834,0.652905,0.992532,0.191354,0.845031,0.253261,0.471807,0.684237,0.415841,0.409484,0.654452,0.316765,0.0646321,0.269945,0.535512,0.679005,0.918287,0.233751,0.545648,0.102805,0.719717,0.396241,0.36755,0.957613,0.676776,0.0972004,0.854772,0.364704,0.839576,0.769304,0.189753,0.544231,0.771862,0.958309,0.85454,0.0194489,0.566286,0.249073,0.903236,0.889103,0.48656,0.271344,0.950059,0.359656,0.652219,0.899019,0.655092,0.459764,0.921597,0.697508,0.846141,0.475017,0.353547,0.130942,0.167318,0.355476,0.230656,0.949648,0.706038,0.815707,0.396455,0.942863,0.824971,0.60752,0.827788,0.705187,0.45013,0.0988237,0.758294,0.661325,0.114772,0.242074,0.571164,0.239216,0.182742,0.190399,0.812868,0.409784,0.665306,0.896412,0.993439,0.641043,0.443905,0.707185,0.469482,0.602659,0.804036,0.733729,0.352733,0.608558,0.0924771,0.864678,0.670915,0.933491,0.781367,0.370335,0.676943,0.0114446,0.0522553,0.489667,0.356758,0.465659,0.950422,0.983027,0.12809,0.858844,0.966018,0.539867,0.973288,0.197987,0.935995,0.818171,0.325052,0.245084,0.0507526,0.273965,0.981938,0.137283,0.337274,0.375926,0.971196,0.261588,0.287587,0.0409061,0.982506,0.234894,0.276635,0.997296,0.455509,0.536367,0.892556,0.936773,0.625685,0.106803,0.353848,0.202803,0.976699,0.960917,0.635755,0.673878,0.0605977,0.0979139,0.966582,0.228788,0.501067,0.751091,0.866986,0.661919,0.131307,0.863501,0.0151541,0.448084,0.132327,0.450163,0.489775,0.569526,0.291291,0.714266,0.948319,0.916599,0.933813,0.0825194,0.996355,0.56669,0.0239839,0.547085,0.516887,0.137877,0.918126,0.0326439,0.0413037,0.998364,0.218374,0.169547,0.697859,0.796456,0.251064,0.735598,0.761563,0.707075,0.273246,0.899111,0.086801,0.157309,0.442073,0.192812,0.109823,0.678861,0.746217,0.729093,0.110452,0.672656,0.641083,0.14319,0.661784,0.377557,0.559067,0.68863,0.731197,0.806394,0.390417,0.894044,0.364623,0.911826,0.155138,0.470666,0.544553,0.113026,0.638983,0.245717,0.105568,0.871239,0.28305,0.184824,0.85643,0.451119,0.858847,0.805592,0.130527,0.799801,0.70525,0.402304,0.624818,0.00841898,0.288483,0.809074,0.874508,0.593684,0.837114,0.95955,0.401753,0.416698,0.564526,0.145704,0.666936,0.663187,0.988798,0.767975,0.654525,0.634302,0.512702,0.855858,0.551157,0.831402,0.109282,0.490303,0.196274,0.264495,0.696067,0.283845,0.15003,0.186177,0.817641,0.723583,0.935169,0.556297,0.125171,0.872773,0.587827,0.812759,0.370932,0.747717,0.814423,0.344771,0.0339506,0.373685,0.513868,0.541856,0.365487,0.982998,0.0439688,0.147614,0.320509,0.169751,0.208029,0.0941334,0.669656,0.300468,0.136541,0.79249,0.8153,0.329316,0.564332,0.865862,0.613053,0.33123,0.282906,0.113109,0.216789,0.443903,0.129342,0.201826,0.868235,0.798916,0.111291,0.783004,0.181235,0.0862473,0.133565,0.598811,0.31065,0.438208,0.318447,0.424142,0.921308,0.292236,0.687545,0.73221,0.697003,0.555494,0.152928,0.273658,0.870269,0.686801,0.585197,0.600289,0.0784712,0.269516,0.188604,0.975929,0.732486,0.182683,0.113319,0.644463,0.62227,0.862038,0.907699,0.849683,0.0754023,0.336524,0.989477,0.686673,0.912433,0.741408,0.558456,0.417956,0.646189,0.885757,0.274754,0.851497,0.449249,0.810794,0.993186,0.988385,0.277904,0.0702191,0.148293,0.194261,0.93113,0.839874,0.375944,0.147654,0.120368,0.591344,0.00255907,0.183982,0.506545,0.445306,0.153677,0.735067,0.810466,0.186356,0.648584,0.42798,0.891993,0.670337,0.205993,0.452366,0.967843,0.466308,0.951814,0.27691,0.349013,0.757101,0.31464,0.359748,0.691996,0.438232,0.776723,0.849558,0.968324,0.347001,0.465948,0.121963,0.956176,0.304723,0.219119,0.801721,0.190264,0.983016,0.713367,0.751834,0.13214,0.723883,0.214917,0.382623,0.551971,0.63614,0.598115,0.973971,0.706003,0.61123,0.449212,0.811052,0.0419728,0.00475073,0.814512,0.929572,0.589477,0.724244,0.817038,0.500748,0.0142969,0.467475,0.894859,0.942844,0.132807,0.279377,0.541807,0.385808,0.770044,0.388852,0.298814,0.988311,0.522617,0.460196,0.130226,0.967486,0.664957,0.602042,0.441303,0.545457,0.943273,0.186061,0.245747,0.442169,0.31155,0.0751204,0.941052,0.4499,0.625583,0.684289,0.882357,0.203923,0.452975,0.790526,0.0551538,0.0686683,0.342908,0.274405,0.303847,0.225373,0.726518,0.442602,0.856126,0.758817,0.817533,0.4935,0.847079,0.657458,0.298132,0.108022,0.220438,0.394536,0.632293,0.513962,0.89705,0.955527,0.76342,0.736373,0.660534,0.0453411,0.550594,0.873002,0.620179,0.951794,0.954415,0.831923,0.0768356,0.365425,0.444618,0.23477,0.902626,0.624559,0.534751,0.435646,0.0550202,0.522738,0.144961,0.521547,0.554208,|0.237826,0.780486,0.868615,0.916996,0.50942,0.579121,0.758417,0.00264466,0.657365,0.964927,0.310513,0.750707,0.657911,0.60975,0.0229711,0.675872,0.154436,0.130088,0.155683,0.795677,0.719882,0.445564,0.224737,0.230098,0.899678,0.0528778,0.0695224,0.827686,0.350249,0.611823,0.801146,0.766594,0.172248,0.0624797,0.794299,0.758608,0.313969,0.321535,0.194422,0.949946,0.813431,0.201558,0.540882,0.478938,0.670181,0.88063,0.77208,0.993437,0.672999,0.853465,0.80992,0.0112683,0.847846,0.798918,0.452901,0.181124,0.161096,0.824533,0.723324,0.287993,0.725176,0.391164,0.196843,0.650822,0.97708,0.114116,0.233818,0.837673,0.971532,0.99744,0.832583,0.1602,0.989256,0.572094,0.941682,0.329893,0.0628877,0.732734,0.778328,0.134624,0.306465,0.696554,0.699652,0.351612,0.118184,0.937241,0.926236,0.0216811,0.713518,0.621701,0.168542,0.806115,0.957653,0.262604,0.653464,0.697389,0.169995,0.359785,0.988234,0.219206,0.251853,0.0324532,0.485079,0.156834,0.793482,0.233217,0.101728,0.752956,0.552355,0.07683,0.323538,0.456115,0.0373265,0.985579,0.358615,0.897873,0.968342,0.836287,0.752323,0.522102,0.321846,0.203067,0.848947,0.388101,0.636237,0.00162554,0.0213001,0.913011,0.354633,0.552237,0.894297,0.646479,0.480684,0.936778,0.315994,0.195354,0.587142,0.465662,0.858144,0.619216,0.0499279,0.262389,0.827023,0.294534,0.543513,0.10305,0.579305,0.229596,0.523873,0.244595,0.413083,0.40634,0.676494,0.520346,0.0201109,0.777479,0.0511726,0.067881,0.832549,0.0604879,0.686294,0.360191,0.259298,0.32385,0.711748,0.894814,0.89885,0.392608,0.284171,0.161273,0.760539,0.580633,0.431093,0.487928,0.528811,0.761854,0.732147,0.455694,0.883126,0.69279,0.129767,0.365125,0.989878,0.45717,0.6212,0.604828,0.279732,0.855151,0.912715,0.746504,0.320748,0.362456,0.926361,0.798179,0.663952,0.586315,0.975795,0.650325,0.58339,0.265393,0.267322,0.877978,0.1495,0.541872,0.175749,0.452428,0.503289,0.684402,0.0346155,0.211781,0.66802,0.215084,0.395581,0.20158,0.890453,0.992975,0.0911475,0.649887,0.933075,0.768216,0.760697,0.174473,0.614981,0.580535,0.46579,0.855715,0.309302,0.033632,0.964726,0.940051,0.0755925,0.471847,0.933613,0.149471,0.0862546,0.369876,0.883191,0.724804,0.514345,0.219523,0.467805,0.223277,0.769194,0.198825,0.02282,0.444349,0.678039,0.355404,0.458026,0.698541,0.576112,0.292806,0.0329975,0.685464,0.267081,0.608784,0.00512749,0.448223,0.884764,0.0839556,0.516033,0.0614955,0.674536,0.975046,0.486512,0.719441,0.781232,0.676949,0.611612,0.0426348,0.748679,0.897627,0.738004,0.931756,0.722566,0.800368,0.74941,0.509009,0.412697,0.239927,0.688608,0.421506,0.717198,0.409491,0.396824,0.786926,0.793223,0.440239,0.106973,0.788579,0.105062,0.79515,0.294675,0.281837,0.172161,0.982911,0.812035,0.609087,0.798047,0.626168,0.0506386,0.283293,0.899624,0.142393,0.213374,0.0242032,0.317695,0.676854,0.15835,0.473598,0.101927,0.977537,0.78602,0.0230844,0.435293,0.823777,0.418178,0.945795,0.709107,0.00359869,0.438274,0.792759,0.278471,0.861839,0.213504,0.453553,0.547811,0.764552,0.572911,0.555897,0.910757,0.494472,0.0108885,0.775314,0.46941,0.798345,0.552969,0.968154,0.861972,0.313205,0.311659,0.913078,0.506822,0.811585,0.482087,0.395595,0.765919,0.224344,0.480615,0.357483,0.864816,0.532168,0.901369,0.641244,0.559159,0.619101,0.527516,0.966925,0.178224,0.741958,0.0323296,0.0455772,0.329477,0.581502,0.466495,0.731503,0.718625,0.833313,0.597543,0.0490808,0.535539,0.477186,0.863404,0.93952,0.0920247,0.368526,0.925856,0.0244401,0.0965325,0.659973,0.551726,0.131644,0.506209,0.605081,0.661925,0.537005,0.518033,0.132928,0.1739,0.282358,0.282379,0.0960878,0.130057,0.523341,0.550987,0.80096,0.818923,0.966085,0.326099,0.194038,0.721901,0.0547922,0.647832,0.085963,0.931578,0.904087,0.376645,0.170112,0.179838,0.920412,0.621379,0.227047,0.336411,0.752622,0.565069,0.982147,0.385662,0.640693,0.573966,0.314304,0.431096,0.520967,0.25321,0.059513,0.810232,0.134035,0.456051,0.832581,0.888757,0.219546,0.00127524,0.17276,0.944728,0.201738,0.562326,0.723329,0.621324,0.963561,0.403659,0.527373,0.370765,0.97741,0.0455273,0.590782,0.217606,0.907738,0.0224305,0.640824,0.346652,0.406508,0.192241,0.53162,0.28341,0.680376,0.547131,0.0306709,0.860403,0.828671,0.318694,0.750955,0.342624,0.394853,0.56379,0.173883,0.330021,0.437437,0.94458,0.519019,0.958074,0.607736,0.942151,0.596863,0.452453,0.726001,0.492499,0.233818,0.280079,0.442029,0.966431,0.683397,0.0573993,0.756621,0.764614,0.12393,0.138529,0.976242,0.681335,0.837889,0.327217,0.133279,0.678486,0.793287,0.855136,0.316509,0.479683,0.66231,0.221923,0.335247,0.992442,0.438673,0.781669,0.74714,0.96543,0.934399,0.512868,0.910617,0.355608,0.460846,0.126382,0.749767,0.486839,0.0091188,0.236132,0.181064,0.859678,0.868033,0.888668,0.717037,0.00400823,0.0716426,0.393145,0.301992,0.56778,0.129288,0.0642769,0.318555,0.38011,0.0751566,0.100735,0.434942,0.991109,0.693018,0.894473,0.248664,0.363092,0.327042,0.845094,0.624206,0.28453,0.228766,0.714231,0.799579,0.205535,0.0752794,0.156029,0.516746,0.765443,0.282958,0.842349,0.592698,0.984648,0.163207,0.679663,0.51827,0.556816,0.854417,0.335723,0.138225,0.253229,0.624665,0.49113,0.995703,0.755744,0.411083,0.417827,0.504301,0.0468462,0.226707,0.444891,0.0613115,0.676268,0.166277,0.077393,0.256439,0.589473,0.239081,0.141597,0.966082,0.0762427,0.982349,0.0741549,0.577069,0.287557,0.343085,0.369717,0.0130375,0.876244,0.465073,0.470919,0.687704,0.503075,0.708071,0.750121,0.169391,0.595559,0.569059,0.0836886,0.722957,0.9746,0.859369,0.483021,0.393014,0.841718,0.675911,0.0358883,0.803087,0.492411,0.333044,0.261816,0.483313,0.16006,0.100654,0.714181,0.720216,0.613286,0.0161145,0.585596,0.640912,0.79802,0.197409,0.415454,0.296294,0.192211,0.859151,0.666145,0.316091,0.949109,0.587982,0.90929,0.134016,0.807686,0.41481,0.2412,0.76565,0.365088,0.848758,0.636988,0.0200603,0.998893,0.0732678,0.44704,0.600819,0.558366,0.385623,0.0569496,0.0778161,0.877212,0.760439,0.545768,0.242774,0.0483966,0.0334442,0.809364,0.858744,0.502535,0.114155,0.121118,0.933776,0.243747,0.572308,0.647483,0.190839,0.82832,0.759596,0.76519,0.797008,0.98132,0.402213,0.800898,0.437156,0.324196,0.377156,0.0338798,0.504648,0.271748,0.0421982,0.149038,0.150986,0.600014,0.243483,0.323368,0.567363,0.376131,0.122557,0.19489,0.167613,0.120936,0.974954,0.913991,0.495666,0.469489,0.904106,0.951114,0.148112,0.745861,0.0456339,0.60838,0.0149705,0.379812,0.347566,0.531828,0.84224,0.767134,0.988689,0.16526,0.937783,0.464741,0.472825,0.42322,0.72158,0.812449,0.736583,0.991508,0.613025,0.818993,0.538326,0.860104,0.365002,0.738061,0.785899,0.703309,0.00656855,0.832486,0.20728,0.652995,0.712082,0.507847,0.470959,0.930576,0.213633,0.464669,0.333618,0.0287536,0.920059,0.579648,0.796642,0.660544,0.228366,0.56417,0.0198292,0.77886,0.0648293,0.982709,0.748997,0.520097,0.147411,0.963502,0.610055,0.147236,0.655826,0.761205,0.445357,0.439377,0.33917,0.504264,0.673034,0.413572,0.782296,0.931363,0.519848,0.18015,0.724787,0.372415,0.972619,0.019501,0.415426,0.306431,0.407175,0.224145,0.984,0.458814,0.900567,0.792216,0.633651,0.0727094,0.0809675,0.0361168,0.886755,0.695818,0.666503,0.370531,0.526694,0.599454,0.0746567,0.263703,0.126065,0.314285,0.326452,0.0178727,0.0796687,0.960246,0.394944,0.171571,0.0536638,0.0346594,0.512083,0.978834,0.577252,0.86274,0.546826,0.112815,0.0479754,0.354617,0.387326,0.761902,0.0111842,0.608634,0.264024,0.493254,0.987608,0.233173,0.367624,0.92586,0.844689,0.371014,0.71095,0.714581,0.0903721,0.214623,0.106488,0.816644,0.830102,0.748982,0.673967,0.619222,0.49715,0.835192,0.961941,0.380291,0.144961,0.315571,0.0135102,0.523801,0.28289,0.406186,0.751961,0.885855,0.143615,0.949302,0.575079,0.500737,0.700255,0.813452,0.892748,0.0914888,0.779136,0.540442,0.785149,0.417273,0.770438,0.929599,0.00418317,0.642257,0.944988,0.220037,0.504583,0.334112,0.333552,0.184498,0.516639,0.167398,0.981964,0.482154,0.0772911,0.234263,0.382536,0.621482,0.381005,0.389736,0.806663,0.965158,0.672677,0.794028,0.899692,0.419557,0.681737,0.753927,0.793558,0.713329,0.803147,0.288427,0.698844,0.947758,0.575392,0.609744,0.531941,0.210057,0.538088,0.593885,0.245261,0.17929,0.0601107,0.316839,0.764928,0.836806,0.511083,0.198637,0.550258,0.0158209,0.041067,0.87861,0.252085,0.800859,0.786467,0.0951065,0.645093,0.272027,0.747989,0.0128175,0.638759,0.415526,0.445521,0.662143,0.162155,0.505249,0.972257,0.366971,0.417686,0.114105,0.819609,0.311927,0.616063,0.681118,0.553917,0.112731,0.235961,0.243048,0.390082,0.479208,0.19167,0.999451,0.542933,0.842731,0.211343,0.35512,0.437914,0.922084,0.0478632,0.350125,0.820176,0.659878,0.857694,0.834459,0.518234,0.309128,0.616038,0.152419,0.876616,0.933253,0.973858,0.455605,0.240742,0.0612724,0.839786,0.0802784,0.0232901,0.687986,0.586132,0.675757,0.313694,0.217087,0.585542,0.660599,0.064698,0.0467559,0.155132,0.0502281,0.525939,0.0412775,0.0810612,0.795719,0.776449,0.177098,0.487779,0.281586,0.0815715,0.995585,0.694947,0.798332,0.575911,0.592355,0.7902,0.859653,0.884259,0.201042,0.0246084,0.785949,0.717687,0.820044,0.39963,0.194529,0.252467,0.674418,0.434727,0.564911,0.388342,0.786654,0.569818,0.612084,0.996269,|0.870505,0.820431,0.262982,0.96378,0.663432,0.474425,0.530688,0.513782,0.359724,0.710558,0.561588,0.820656,0.281816,0.208744,0.0401201,0.93397,0.99522,0.467602,0.101668,0.364376,0.1367,0.224883,0.543649,0.845897,0.684625,0.726625,0.998858,0.588987,0.420549,0.703844,0.229923,0.444509,0.898031,0.238981,0.95197,0.498177,0.265726,0.67648,0.548006,0.313194,0.507732,0.307916,0.615758,0.17359,0.205769,0.636111,0.482516,0.950864,0.242444,0.233316,0.784956,0.593923,0.689754,0.0243056,0.000584424,0.749079,0.750422,0.0546701,0.884712,0.351199,0.544441,0.542982,0.987652,0.119918,0.722951,0.18892,0.872926,0.620844,0.012825,0.186589,0.700271,0.748488,0.901867,0.867435,0.260817,0.941993,0.05949,0.601888,0.83861,0.068681,0.648184,0.186423,0.176512,0.978013,0.916918,0.226474,0.767807,0.544697,0.680351,0.87561,0.592776,0.964988,0.623363,0.834098,0.199444,0.868099,0.530032,0.726479,0.379553,0.598841,0.882508,0.862179,0.340971,0.260899,0.737883,0.447658,0.875857,0.954872,0.252392,0.938759,0.982362,0.876364,0.0867005,0.75117,0.876275,0.666263,0.632201,0.907259,0.295477,0.849818,0.77768,0.647553,0.479433,0.557224,0.35395,0.487612,0.704421,0.386647,0.921104,0.357036,0.0264778,0.0837417,0.0482107,0.328554,0.238784,0.247961,0.890201,0.962769,0.472655,0.0199361,0.02961,0.795514,0.438503,0.303427,0.936073,0.989073,0.312776,0.968103,0.876965,0.262009,0.988469,0.479645,0.874875,0.302822,0.968094,0.0513762,0.970755,0.739934,0.371817,0.396413,0.695752,0.231453,0.492347,0.617089,0.414233,0.526901,0.779178,0.281887,0.0496107,0.124206,0.453213,0.074443,0.44385,0.511999,0.0832136,0.097831,0.600664,0.757413,0.978375,0.945433,0.490775,0.00620419,0.712801,0.366754,0.268494,0.681787,0.167969,0.0778125,0.817662,0.902224,0.68696,0.000394583,0.952366,0.0687811,0.67164,0.24183,0.0416356,0.990927,0.229171,0.865117,0.583842,0.526509,0.0919799,0.397702,0.827091,0.945903,0.0897568,0.900287,0.830855,0.627723,0.440135,0.840072,0.517092,0.665234,0.7694,0.31409,0.0285747,0.112712,0.411387,0.887591,0.72995,0.156519,0.558758,0.429863,0.552803,0.654335,0.32838,0.225335,0.288534,0.30294,0.128454,0.997828,0.858634,0.694203,0.888519,0.530826,0.217918,0.852452,0.993521,0.37644,0.353691,0.984565,0.708554,0.0732601,0.71894,0.102385,0.00868464,0.38398,0.677028,0.460285,0.46984,0.27474,0.109332,0.0713807,0.145039,0.784081,0.692426,0.421907,0.275823,0.814994,0.161386,0.814633,0.723798,0.524015,0.653237,0.520792,0.960682,0.0890329,0.633975,0.862771,0.690722,0.0577171,0.0668158,0.292731,0.289107,0.429348,0.992149,0.0289968,0.1537,0.525111,0.22514,0.0203919,0.952507,0.951651,0.204561,0.824814,0.612726,0.45181,0.4559,0.335777,0.363433,0.266752,0.0935328,0.344171,0.832503,0.272916,0.341129,0.821367,0.106698,0.96795,0.145023,0.137399,0.624023,0.476322,0.647896,0.614821,0.575146,0.78285,0.0970581,0.197918,0.562372,0.678626,0.0553176,0.176445,0.588096,0.24694,0.860505,0.287295,0.0943791,0.191174,0.550716,0.524131,0.858363,0.643295,0.688422,0.962496,0.299586,0.506328,0.053385,0.176151,0.558691,0.424988,0.769691,0.174239,0.158268,0.192248,0.64486,0.246373,0.559845,0.957499,0.426413,0.276403,0.872825,0.891087,0.0308992,0.344531,0.0218278,0.820684,0.305416,0.952839,0.570571,0.0359178,0.457289,0.534383,0.696317,0.458185,0.335938,0.982634,0.397079,0.431074,0.000186682,0.84335,0.0371262,0.655627,0.979453,0.242215,0.659798,0.509056,0.0669027,0.476967,0.924829,0.552933,0.49133,0.588897,0.260588,0.944389,0.804264,0.481558,0.917088,0.388005,0.229635,0.0138174,0.642948,0.30408,0.153885,0.141099,0.986778,0.99689,0.511193,0.0251567,0.290286,0.24948,0.356668,0.388843,0.725212,0.903515,0.890505,0.470673,0.0631894,0.305851,0.743019,0.167333,0.262543,0.849741,0.318574,0.456031,0.971688,0.838472,0.788431,0.99261,0.485118,0.619136,0.833494,0.488249,0.830005,0.354634,0.394955,0.585461,0.892956,0.239716,0.0836236,0.00976914,0.343533,0.283254,0.860148,0.908844,0.101748,0.730574,0.913937,0.403913,0.467917,0.989281,0.384395,0.581965,0.80351,0.297118,0.798252,0.499795,0.503856,0.829944,0.0518571,0.121796,0.389001,0.12499,0.222394,0.642717,0.453027,0.623637,0.727106,0.12834,0.747125,0.934311,0.402675,0.203208,0.0626908,0.723686,0.75136,0.185244,0.498888,0.133076,0.309697,0.0783974,0.371633,0.298035,0.563839,0.374201,0.900838,0.778402,0.503604,0.24443,0.578216,0.232217,0.647152,0.996125,0.221614,0.869285,0.305523,0.909489,0.184878,0.520195,0.682684,0.915682,0.883963,0.0980602,0.183111,0.821395,0.908351,0.3328,0.621179,0.631364,0.721651,0.572901,0.466708,0.454786,0.500991,0.0611475,0.509646,0.594942,0.133801,0.354378,0.912207,0.626591,0.0449713,0.173092,0.704268,0.537084,0.667047,0.265374,0.897069,0.935815,0.662151,0.100697,0.311206,0.744048,0.232337,0.96717,0.70586,0.634601,0.326249,0.412531,0.83982,0.311551,0.564527,0.6434,0.445293,0.56356,0.864239,0.714758,0.174321,0.279979,0.23443,0.731512,0.904588,0.863405,0.491047,0.408945,0.616683,0.530334,0.616551,0.9551,0.74126,0.524782,0.783318,0.0944604,0.471621,0.800252,0.216144,0.863628,0.57852,0.308218,0.788303,0.484176,0.338701,0.62174,0.0865892,0.752228,0.393008,0.309971,0.634227,0.42925,0.726696,0.40836,0.344404,0.97606,0.258649,0.915763,0.80355,0.443755,0.748903,0.49096,0.95198,0.857746,0.337976,0.107496,0.146253,0.932799,0.924498,0.565138,0.0740368,0.0482464,0.626894,0.327858,0.0755789,0.772176,0.52836,0.0777712,0.261429,0.744214,0.991823,0.365945,0.914405,0.177886,0.18784,0.111859,0.885825,0.923091,0.869265,0.657634,0.507757,0.535873,0.718342,0.0212115,0.871898,0.374596,0.561236,0.381196,0.313769,0.721187,0.378178,0.126945,0.387513,0.704178,0.417658,0.236894,0.292911,0.906766,0.381575,0.0200936,0.967347,0.316802,0.386077,0.761752,0.136084,0.19293,0.704442,0.69146,0.368053,0.168693,0.842172,0.646274,0.45313,0.844301,0.00864422,0.0429641,0.993335,0.641064,0.101517,0.736735,0.708076,0.595223,0.718139,0.425444,0.627998,0.11094,0.211258,0.275378,0.928811,0.681597,0.516767,0.0381007,0.73056,0.828824,0.37759,0.587213,0.0369747,0.467284,0.314225,0.459033,0.824231,0.203888,0.233227,0.666855,0.910883,0.0443611,0.473872,0.0503525,0.718794,0.913172,0.559087,0.808321,0.507771,0.789805,0.453594,0.342069,0.0805022,0.503969,0.364892,0.0687057,0.597593,0.62147,0.198002,0.743872,0.192729,0.538275,0.23806,0.357323,0.493924,0.138107,0.211774,0.424754,0.0830285,0.102651,0.532646,0.783862,0.285365,0.809651,0.116071,0.469432,0.266418,0.75406,0.207118,0.224896,0.527327,0.116095,0.821534,0.193679,0.465737,0.407778,0.626467,0.508669,0.512763,0.856617,0.838178,0.482025,0.763717,0.718722,0.596154,0.902645,0.819981,0.184826,0.606472,0.293338,0.537679,0.627647,0.19053,0.297954,0.97114,0.653039,0.438193,0.247789,0.897953,0.556366,0.583297,0.320872,0.0441204,0.0258035,0.29698,0.327617,0.957656,0.392038,0.217373,0.438377,0.527711,0.36841,0.523474,0.362718,0.836138,0.00101936,0.96577,0.200444,0.789925,0.694291,0.962874,0.977798,0.279801,0.94177,0.39209,0.564377,0.952248,0.885511,0.688508,0.686583,0.441983,0.10771,0.157949,0.112926,0.219398,0.856264,0.362908,0.0488208,0.702375,0.76357,0.276221,0.177659,0.775215,0.106672,0.0198758,0.663439,0.0270292,0.870812,0.160014,0.723709,0.709463,0.734709,0.984099,0.786913,0.563416,0.560375,0.490883,0.0399324,0.193299,0.0952327,0.317406,0.916855,0.178061,0.606428,0.42868,0.606389,0.655743,0.556276,0.118762,0.503414,0.27956,0.194205,0.900724,0.768544,0.420966,0.240592,0.941507,0.828383,0.80536,0.795555,0.135482,0.152915,0.601078,0.130586,0.245052,0.821341,0.924979,0.21192,0.524886,0.177989,0.97318,0.0473936,0.327802,0.613404,0.161814,0.385403,0.37978,0.872679,0.701643,0.786116,0.0110084,0.771796,0.378954,0.537266,0.750207,0.70736,0.426581,0.38372,0.289416,0.799914,0.77341,0.866934,0.961915,0.736073,0.0746237,0.26332,0.0174726,0.304341,0.788911,0.25127,0.479216,0.128206,0.372995,0.59814,0.681291,0.349982,0.526336,0.680977,0.235669,0.543634,0.926351,0.605249,0.527967,0.760042,0.0543804,0.438738,0.643575,0.144756,0.617079,0.534949,0.835559,0.0316084,0.564473,0.446351,0.330196,0.906654,0.811372,0.969262,0.160317,0.294395,0.407249,0.661916,0.354409,0.381532,0.666873,0.996881,0.265957,0.499915,0.888553,0.988284,0.157222,0.620263,0.730443,0.897907,0.281726,0.553412,0.21367,0.106526,0.953912,0.202943,0.509991,0.571068,0.104523,0.37462,0.371097,0.686836,0.245127,0.981292,0.270898,0.548426,0.126089,0.744908,0.424226,0.495877,0.857775,0.34339,0.137606,0.576949,0.252149,0.738108,0.489845,0.182352,0.98711,0.830701,0.182692,0.0123872,0.526233,0.116884,0.102424,0.435358,0.0379329,0.348571,0.276785,0.882456,0.73467,0.195863,0.99737,0.063347,0.0758206,0.592827,0.66217,0.840327,0.698991,0.93488,0.429365,0.938268,0.156915,0.362013,0.503264,0.0934757,0.945525,0.598385,0.900446,0.580623,0.200755,0.218589,0.441089,0.817158,0.285049,0.28264,0.976689,0.397124,0.595525,0.345933,0.873755,0.338247,0.886598,0.260497,0.121293,0.44371,0.546954,0.614665,0.510021,0.324451,0.910328,0.507469,0.458014,0.937004,0.0733812,0.801629,0.345249,0.511197,0.170032,0.0248913,0.236378,0.147579,0.428333,0.255048,0.984446,0.599507,0.301998,0.439522,0.117482,0.498806,0.402033,0.650723,0.678421,0.941998,|0.470072,0.690996,0.0793316,0.53006,0.629408,0.977149,0.543157,0.714339,0.914065,0.19491,0.34331,0.683331,0.97139,0.500751,0.950063,0.0279338,0.683868,0.954989,0.490549,0.809244,0.747655,0.84597,0.0140272,0.433012,0.241935,0.197138,0.487951,0.234396,0.446914,0.364291,0.653201,0.418989,0.627704,0.703706,0.0843365,0.672244,0.436576,0.740123,0.91637,0.775234,0.858423,0.958657,0.42576,0.00995517,0.407867,0.417973,0.26586,0.371541,0.0713115,0.079958,0.582903,0.576425,0.557353,0.0298166,0.498476,0.558316,0.0811754,0.699004,0.621787,0.896536,0.090404,0.455026,0.411634,0.15811,0.11144,0.690737,0.209301,0.526082,0.670614,0.916821,0.405818,0.544518,0.828179,0.8973,0.67878,0.374817,0.0950289,0.645385,0.402597,0.696975,0.570295,0.483148,0.701902,0.129446,0.812717,0.477849,0.300355,0.836915,0.795213,0.388025,0.575698,0.753944,0.134404,0.357386,0.38817,0.173341,0.132086,0.798378,0.777877,0.393596,0.367676,0.285518,0.390401,0.00784832,0.408212,0.684783,0.954077,0.690228,0.572642,0.137955,0.493853,0.386308,0.0162126,0.442107,0.530642,0.501565,0.421713,0.0745242,0.613379,0.603547,0.551736,0.963821,0.609274,0.693945,0.982755,0.534032,0.860822,0.40932,0.897368,0.428195,0.205436,0.908569,0.932366,0.870105,0.714448,0.0266111,0.908573,0.892114,0.500591,0.684908,0.0448187,0.98468,0.448134,0.970029,0.587022,0.317091,0.487462,0.99944,0.159867,0.488505,0.395883,0.897927,0.339938,0.982878,0.389221,0.140341,0.4983,0.552471,0.642758,0.480489,0.579246,0.729299,0.127127,0.360789,0.134843,0.938379,0.080203,0.841897,0.650044,0.503811,0.606338,0.862767,0.632627,0.602115,0.370674,0.690747,0.283019,0.741525,0.741229,0.0688202,0.100352,0.876122,0.840544,0.991476,0.129952,0.29967,0.0300615,0.629458,0.901443,0.31829,0.659539,0.683209,0.188487,0.615768,0.396602,0.662258,0.745921,0.645498,0.468835,0.345521,0.4017,0.199154,0.972437,0.23966,0.646713,0.845384,0.136377,0.917898,0.191859,0.542664,0.617228,0.592854,0.762118,0.53313,0.765925,0.724016,0.413757,0.404096,0.314895,0.342507,0.541309,0.969246,0.030713,0.479544,0.582455,0.299708,0.517199,0.133226,0.545873,0.928954,0.048238,0.0531289,0.308786,0.144194,0.773106,0.478642,0.996287,0.325929,0.299656,0.975887,0.371009,0.876276,0.605682,0.0778697,0.688087,0.354117,0.560491,0.17298,0.714056,0.111433,0.0137154,0.729271,0.937471,0.48862,0.909024,0.183803,0.44949,0.53928,0.483151,0.204928,0.224186,0.873418,0.199291,0.198874,0.104065,0.502925,0.964975,0.527947,0.200683,0.368197,0.890665,0.62346,0.554373,0.0797202,0.370742,0.159177,0.059269,0.766507,3.58224e-05,0.919213,0.598518,0.13889,0.444635,0.092143,0.329701,0.273647,0.152819,0.14617,0.405713,0.368603,0.0976212,0.48758,0.307543,0.113626,0.36958,0.795594,0.211977,0.892677,0.0799884,0.734289,0.796399,0.226947,0.130601,0.817174,0.0120776,0.125842,0.998942,0.695434,0.866884,0.832167,0.0510635,0.0188366,0.334906,0.229228,0.622734,0.206955,0.885185,0.935875,0.149806,0.0690597,0.426544,0.192801,0.876476,0.174145,0.85043,0.849608,0.250641,0.428797,0.211985,0.844532,0.846011,0.292044,0.180863,0.228974,0.692172,0.648557,0.739948,0.338799,0.350526,0.397919,0.450602,0.925693,0.00657219,0.143058,0.830675,0.479559,0.346193,0.102141,0.43556,0.0574963,0.775393,0.177336,0.788878,0.839556,0.697036,0.270531,0.0165555,0.636827,0.995075,0.488813,0.581476,0.351629,0.789837,0.569198,0.378837,0.990409,0.343184,0.200282,0.740052,0.9243,0.896637,0.740721,0.344657,0.189617,0.107195,0.864126,0.76526,0.936906,0.154365,0.988582,0.666082,0.175888,0.527142,0.879358,0.554596,0.372932,0.284461,0.215416,0.646959,0.196929,0.510955,0.548129,0.967551,0.895716,0.229947,0.491005,0.303399,0.17108,0.691058,0.316747,0.830563,0.988376,0.499426,0.159894,0.135037,0.829391,0.286757,0.465268,0.754648,0.106916,0.813771,0.06232,0.163456,0.0607874,0.293987,0.16013,0.780299,0.949614,0.721219,0.687731,0.341121,0.978123,0.360884,0.17209,0.973934,0.294198,0.075496,0.254525,0.382367,0.387463,0.995079,0.0572687,0.58557,0.0454788,0.71453,0.0159057,0.859774,0.0580789,0.959291,0.208354,0.331375,0.945645,0.352133,0.0346808,0.948772,0.0836921,0.991037,0.149026,0.560122,0.499758,0.108058,0.819462,0.465636,0.940958,0.790161,0.432753,0.637517,0.283427,0.619329,0.140348,0.296131,0.997798,0.110577,0.541034,0.964572,0.67802,0.6245,0.855663,0.576518,0.740218,0.780827,0.258924,0.495705,0.842041,0.14902,0.237497,0.664696,0.787338,0.187644,0.571159,0.1666,0.993621,0.0600084,0.783853,0.264277,0.809355,0.31156,0.468297,0.852557,0.989911,0.329008,0.924142,0.716103,0.669682,0.151609,0.0306073,0.320739,0.759158,0.522243,0.796092,0.675918,0.128862,0.379699,0.514184,0.733386,0.368134,0.965734,0.482353,0.306543,0.723704,0.717639,0.354849,0.503537,0.597151,0.403112,0.672679,0.234076,0.604531,0.136438,0.87242,0.40583,0.466401,0.324776,0.28023,0.629375,0.75456,0.366443,0.763645,0.686322,0.588398,0.0394722,0.566151,0.288771,0.815503,0.954327,0.693781,0.212057,0.69096,0.820722,0.808844,0.164144,0.110034,0.496855,0.292701,0.834672,0.840242,0.032731,0.338086,0.316195,0.602755,0.386474,0.254169,0.689096,0.588766,0.947257,0.55066,0.490187,0.435962,0.454642,0.476861,0.978897,0.0905425,0.555467,0.993519,0.841032,0.196889,0.529967,0.00331974,0.346395,0.53853,0.965425,0.276448,0.269363,0.508785,0.653918,0.0920942,0.35018,0.377224,0.0796984,0.178262,0.621289,0.367567,0.280503,0.209607,0.668467,0.722777,0.358252,0.432067,0.496894,0.583274,0.304022,0.301311,0.748165,0.0199224,0.10044,0.612196,0.484293,0.185284,0.552115,0.0632501,0.230043,0.606915,0.211554,0.436428,0.696489,0.0937532,0.394332,0.715351,0.458131,0.363828,0.19024,0.00283647,0.687137,0.339426,0.92707,0.367129,0.978839,0.712132,0.735059,0.922294,0.605019,0.991994,0.826352,0.852883,0.71799,0.419701,0.39716,0.759207,0.191293,0.105926,0.139856,0.975285,0.745545,0.316462,0.252399,0.289797,0.203012,0.0102119,0.818851,0.978734,0.395478,0.573193,0.0295327,0.790626,0.796396,0.538226,0.598462,0.912195,0.889491,0.173029,0.378056,0.464037,0.473731,0.231538,0.215817,0.938018,0.546757,0.599564,0.283621,0.599101,0.336933,0.0917572,0.192157,0.459763,0.850592,0.433731,0.176375,0.309709,0.852806,0.855023,0.382521,0.34211,0.645627,0.868263,0.208374,0.000987113,0.805109,0.438214,0.49923,0.470298,0.611206,0.799098,0.625917,0.831457,0.103294,0.972689,0.894626,0.232417,0.696218,0.113722,0.914796,0.281409,0.518318,0.202553,0.332946,0.950697,0.00585938,0.444051,0.726318,0.886045,0.816068,0.451751,0.786508,0.309534,0.947574,0.994973,0.54816,0.912825,0.998493,0.670737,0.211698,0.799375,0.873256,0.0132454,0.446256,0.285471,0.119969,0.540336,0.669706,0.528904,0.602942,0.51132,0.764186,0.505939,0.935622,0.172346,0.389197,0.304964,0.878776,0.859276,0.609375,0.783975,0.205448,0.7128,0.876591,0.640384,0.777681,0.0391909,0.862191,0.671011,0.204733,0.627215,0.686424,0.543089,0.11511,0.0274354,0.55918,0.357211,0.858316,0.607179,0.237368,0.963504,0.303536,0.589525,0.797659,0.594555,0.862705,0.941527,0.0424824,0.575607,0.302693,0.330575,0.869574,0.527943,0.432376,0.639922,0.531716,0.55652,0.946272,0.0361896,0.244271,0.384141,0.547872,0.228011,0.236806,0.944669,0.557658,0.961646,0.143332,0.776689,0.435409,0.280995,0.162529,0.874593,0.956392,0.93387,0.88427,0.902708,0.621843,0.150502,0.243758,0.752583,0.465927,0.394267,0.966974,0.00999153,0.78381,0.342179,0.609021,0.752267,0.00794202,0.481683,0.335444,0.915142,0.983439,0.704364,0.588486,0.109546,0.973466,0.104602,0.440834,0.221137,0.389014,0.351923,0.575345,0.761087,0.230902,0.622637,0.552,0.807485,0.599481,0.877548,0.309325,0.991693,0.109315,0.218123,0.965206,0.19366,0.348736,0.459985,0.358449,0.294563,0.618773,0.865231,0.0636865,0.627567,0.888677,0.14005,0.513872,0.084393,0.254514,0.71367,0.0214337,0.0344487,0.783994,0.678408,0.944539,0.440419,0.593527,0.915782,0.789105,0.920616,0.193705,0.620662,0.426598,0.985149,0.0091334,0.862842,0.735009,0.34878,0.171229,0.568119,0.194961,0.441817,0.0633461,0.810845,0.828587,0.0158171,0.410424,0.198613,0.442236,0.170043,0.0386826,0.814513,0.349042,0.952789,0.893619,0.030879,0.173126,0.861233,0.736638,0.551795,0.188103,0.641846,0.633638,0.610517,0.487386,0.138629,0.557738,0.31949,0.18461,0.827268,0.0102322,0.0120547,0.565669,0.347737,0.251067,0.172849,0.691998,0.601721,0.788808,0.197196,0.54419,0.919756,0.942823,0.377845,0.0566292,0.211419,0.700764,0.370533,0.588091,0.857178,0.934015,0.580954,0.396788,0.123819,0.684613,0.114556,0.413675,0.0394124,0.494929,0.990886,0.695951,0.245577,0.556204,0.446694,0.967876,0.237102,0.667004,0.936148,0.424517,0.371236,0.808896,0.663923,0.590272,0.0378476,0.729669,0.279717,0.909893,0.354411,0.545903,0.786219,0.766008,0.351561,0.940536,0.564078,0.878671,0.932015,0.0901515,0.434712,0.567653,0.191646,0.911471,0.59787,0.0474827,0.636021,0.897354,0.157987,0.775458,0.0521641,0.814501,0.270118,0.539571,0.0364505,0.466107,0.740073,0.0497659,0.442704,0.998738,0.332777,0.864661,0.0148908,0.109463,0.804577,0.338675,0.402508,0.091224,0.782837,0.0806348,0.74965,0.596697,0.511003,0.654306,0.795794,0.499827,0.758483,0.931433,0.805327,0.67545,0.767094,0.960751,0.778183,0.658379,0.167443,0.986505,0.441195,0.810102,0.982732,0.360739,0.735068,|0.512693,0.215558,0.389277,0.667998,0.240413,0.402989,0.116042,0.756254,0.975269,0.901573,0.808713,0.994543,0.0726503,0.661787,0.417594,0.922346,0.496605,0.617002,0.366048,0.714168,0.942707,0.290418,0.634669,0.296032,0.776985,0.496528,0.00753373,0.916738,0.29127,0.584861,0.652218,0.821491,0.41926,0.661295,0.621807,0.390536,0.581944,0.978995,0.806076,0.657559,0.390918,0.932293,0.777744,0.0889466,0.312824,0.634986,0.426104,0.110149,0.95365,0.356846,0.188279,0.739896,0.792959,0.868137,0.125031,0.201339,0.717206,0.42183,0.0237653,0.0477107,0.587952,0.933745,0.397286,0.430509,0.923236,0.476027,0.859157,0.0266969,0.844655,0.519937,0.362751,0.116226,0.0252194,0.274221,0.0269213,0.237732,0.170954,0.0817062,0.00525731,0.466897,0.734239,0.375406,0.372946,0.190118,0.0623493,0.61424,0.713847,0.754148,0.442211,0.356316,0.456707,0.824106,0.941834,0.137018,0.604912,0.382028,0.725068,0.756204,0.896513,0.443742,0.0282577,0.523072,0.540293,0.0174133,0.26856,0.163516,0.962118,0.901719,0.746506,0.305391,0.845146,0.64254,0.942774,0.40604,0.779902,0.142115,0.832429,0.424444,0.470437,0.878029,0.122081,0.917239,0.00208461,0.226289,0.108864,0.595739,0.282991,0.90713,0.937529,0.085394,0.568158,0.923807,0.501073,0.20798,0.55522,0.378726,0.659881,0.486389,0.63871,0.240675,0.734978,0.39038,0.112427,0.929593,0.0155938,0.0931233,0.480737,0.669571,0.470537,0.0662052,0.650116,0.498441,0.893046,0.484724,0.396447,0.279008,0.706521,0.559469,0.950137,0.709673,0.871866,0.442912,0.961038,0.730686,0.122276,0.272755,0.123856,0.547894,0.690682,0.391126,0.585398,0.360797,0.356659,0.431289,0.555946,0.471848,0.404209,0.44252,0.13572,0.469716,0.107951,0.516235,0.705728,0.0590399,0.0531971,0.135127,0.0280995,0.905106,0.379305,0.933049,0.437743,0.335625,0.648727,0.407109,0.228001,0.0282893,0.446656,0.274258,0.650107,0.448728,0.0353889,0.22468,0.159144,0.741919,0.826438,0.894739,0.0664963,0.899733,0.0129968,0.738085,0.307769,0.296535,0.255372,0.553881,0.760464,0.511114,0.295988,0.0451784,0.738809,0.521648,0.395742,0.662085,0.638632,0.380295,0.00428039,0.744033,0.537843,0.724267,0.401352,0.151362,0.419884,0.395456,0.804782,0.141313,0.121602,0.443123,0.959003,0.321839,0.38127,0.558345,0.704559,0.939714,0.348371,0.967889,0.19427,0.714462,0.671248,0.957395,0.68242,0.446297,0.261569,0.641536,0.75727,0.725466,0.262777,0.274481,0.428618,0.0440686,0.314495,0.509664,0.820317,0.6552,0.685726,0.671881,0.402357,0.28329,0.705192,0.0186054,0.410544,0.901664,0.602406,0.51875,0.652467,0.206873,0.280707,0.312982,0.647768,0.343095,0.329757,0.727755,0.217203,0.184363,0.168151,0.472143,0.905201,0.89715,0.241303,0.385231,0.277796,0.326371,0.498698,0.255991,0.78349,0.821511,0.353639,0.635727,0.407396,0.7447,0.994274,0.164628,0.861263,0.859354,0.0189574,0.289291,0.783977,0.136849,0.740481,0.622259,0.86962,0.664653,0.311178,0.804497,0.194606,0.548264,0.516406,0.763903,0.498537,0.119493,0.1985,0.58873,0.812301,0.225598,0.767353,0.451076,0.911028,0.463206,0.775453,0.892613,0.0365786,0.86564,0.517904,0.962017,0.332541,0.553391,0.0962179,0.200023,0.0699776,0.225069,0.849665,0.34737,0.460229,0.0130822,0.191841,0.81237,0.246903,0.110135,0.948767,0.328961,0.99799,0.14384,0.216694,0.263702,0.847159,0.234182,0.827648,0.292942,0.354843,0.779658,0.0124369,0.407796,0.564745,0.0495815,0.0590199,0.949837,0.72896,0.495195,0.631402,0.314335,0.141655,0.197634,0.25208,0.877119,0.0923539,0.0390609,0.644087,0.303475,0.964969,0.441938,0.930673,0.57859,0.305665,0.692152,0.247503,0.517471,0.655041,0.652833,0.0888285,0.983395,0.523834,0.434938,0.721711,0.764827,0.119803,0.200255,0.674,0.204986,0.20568,0.480109,0.347125,0.61732,0.118703,0.81522,0.806616,0.500548,0.225142,0.290588,0.0415436,0.969211,0.133237,0.453544,0.708762,0.0980558,0.398369,0.799517,0.209188,0.960142,0.482578,0.463794,0.622717,0.928488,0.870726,0.245821,0.44395,0.331654,0.978783,0.768187,0.157382,0.0924357,0.00495493,0.532847,0.201218,0.333539,0.0153919,0.396197,0.942654,0.225739,0.541562,0.11111,0.756734,0.13963,0.425773,0.088385,0.985164,0.082502,0.616698,0.671534,0.882295,0.623957,0.038483,0.448693,0.356733,0.608334,0.364444,0.751339,0.736212,0.446535,0.376515,0.63602,0.848653,0.88173,0.734057,0.613634,0.69147,0.392081,0.754484,0.343106,0.528651,0.0593147,0.387335,0.380279,0.480375,0.436521,0.188558,0.456842,0.189969,0.852566,0.933355,0.0565717,0.145243,0.70638,0.622738,0.254335,0.24276,0.264574,0.491664,0.319341,0.101141,0.000763178,0.990907,0.358659,0.269295,0.461493,0.69633,0.467167,0.516816,0.408872,0.0659369,0.896893,0.182396,0.966212,0.393394,0.775156,0.970927,0.332568,0.658204,0.355642,0.356642,0.376607,0.366479,0.626494,0.224126,0.431738,0.33555,0.0530834,0.934514,0.481701,0.921542,0.756746,0.703181,0.913203,0.772341,0.302425,0.295727,0.126066,0.140004,0.742473,0.0800571,0.0812939,0.265574,0.830478,0.698546,0.58838,0.780503,0.53859,0.595228,0.0120772,0.146213,0.399019,0.768402,0.924632,0.174157,0.532866,0.760619,0.579212,0.862108,0.657147,0.0229349,0.40603,0.616971,0.685642,0.36918,0.512931,0.105004,0.550596,0.0836512,0.291397,0.299765,0.845068,0.0238724,0.728687,0.231506,0.767443,0.755631,0.192924,0.953144,0.288798,0.0081982,0.725317,0.522737,0.0727087,0.894258,0.0139761,0.110422,0.204983,0.0563461,0.454576,0.786331,0.377335,0.519992,0.615332,0.672781,0.135745,0.257693,0.234464,0.239369,0.67515,0.178694,0.0961972,0.225818,0.47648,0.144969,0.422007,0.779421,0.652667,0.296269,0.615824,0.668459,0.223363,0.662388,0.100763,0.402723,0.777154,0.402114,0.65559,0.96134,0.325238,0.290702,0.987866,0.490214,0.685963,0.902543,0.774049,0.0297715,0.6332,0.00825733,0.134185,0.722326,0.847739,0.0079326,0.523028,0.905637,0.255202,0.47805,0.257437,0.110575,0.143269,0.178949,0.763279,0.778581,0.462978,0.93151,0.219953,0.00837767,0.699881,0.872095,0.728176,0.274045,0.381682,0.961367,0.308781,0.627146,0.298188,0.582163,0.314605,0.0689895,0.100568,0.221323,0.186075,0.80191,0.307014,0.780182,0.82352,0.931047,0.517908,0.392485,0.273422,0.0387748,0.147417,0.784712,0.337058,0.434614,0.900426,0.935677,0.327537,0.143197,0.00132471,0.321435,0.407262,0.516336,0.637849,0.303297,0.960886,0.945464,0.744822,0.727914,0.978082,0.863105,0.819902,0.563518,0.3319,0.486429,0.217961,0.165939,0.402136,0.746499,0.790191,0.937643,0.553948,0.501084,0.0995452,0.979529,0.132232,0.371414,0.853239,0.263333,0.79277,0.886286,0.580749,0.940359,0.868433,0.263721,0.236755,0.126405,0.546689,0.769701,0.051628,0.170696,0.0968636,0.8117,0.956017,0.904705,0.122975,0.196395,0.0894959,0.0103453,0.263843,0.858136,0.475942,0.618291,0.102718,0.963907,0.440893,0.708049,0.0088011,0.946517,0.372468,0.176708,0.86029,0.611731,0.645399,0.192252,0.104714,0.905603,0.609077,0.196142,0.846013,0.168717,0.366467,0.767163,0.308455,0.769081,0.129628,0.318393,0.414378,0.0517023,0.804482,0.212906,0.0904103,0.32332,0.589547,0.28543,0.226209,0.431968,0.306768,0.759443,0.981531,0.352863,0.323973,0.231441,0.14723,0.0776582,0.243498,0.558631,0.0200619,0.498975,0.56776,0.483655,0.364532,0.371454,0.853312,0.09411,0.58738,0.361258,0.495908,0.463895,0.32212,0.934526,0.189911,0.480897,0.0119116,0.696597,0.525064,0.171201,0.747811,0.687356,0.619191,0.863202,0.209729,0.271984,0.577737,0.979191,0.878797,0.834131,0.26322,0.42736,0.99885,0.392157,0.281714,0.275985,0.744685,0.0576819,0.0293846,0.993494,0.879581,0.0346119,0.378017,0.0700314,0.0738542,0.29036,0.501869,0.394063,0.477237,0.544102,0.211305,0.882071,0.217898,0.515071,0.459537,0.914037,0.41858,0.115153,0.145306,0.0654374,0.147421,0.0790281,0.991854,0.41532,0.645668,0.0724916,0.455459,0.324298,0.531248,0.889964,0.915915,0.656793,0.875644,0.0320895,0.800334,0.137133,0.942098,0.808133,0.153566,0.446578,0.290889,0.900474,0.761605,0.698251,0.286401,0.229028,0.458235,0.677695,0.267898,0.188483,0.549133,0.00594705,0.341423,0.722779,0.842334,0.389624,0.371229,0.0729948,0.476104,0.3896,0.659627,0.750905,0.559783,0.749286,0.0750535,0.318885,0.927678,0.856046,0.279226,0.866358,0.637855,0.453124,0.127482,0.95868,0.227658,0.495717,0.644779,0.424272,0.323937,0.850624,0.592426,0.540012,0.713652,0.134247,0.504715,0.37658,0.263778,0.979639,0.609008,0.998124,0.352622,0.834072,0.39269,0.95256,0.193074,0.150454,0.456876,0.0645417,0.92218,0.921193,0.552443,0.856103,0.94464,0.314252,0.99688,0.480298,0.601665,0.278569,0.735296,0.65978,0.0751795,0.322894,0.208912,0.230477,0.179117,0.242858,0.280154,0.346557,0.500441,0.010366,0.68613,0.776798,0.667624,0.420802,0.397195,0.651391,0.621805,0.367568,0.755041,0.26119,0.490941,0.141361,0.514708,0.894055,0.85417,0.156817,0.40397,0.832925,0.7727,0.701728,0.509682,0.678253,0.235253,0.229716,0.832785,0.502398,0.874541,0.453968,0.282108,0.226922,0.321581,0.21143,0.400495,0.233406,0.526822,0.468421,0.02152,0.0377972,0.233157,0.213943,0.174137,0.289514,0.915652,0.961391,0.291798,0.616,0.358977,0.105095,0.285407,0.145795,0.77793,0.17153,0.868563,0.329802,0.0140269,0.218162,0.297841,0.317177,0.992036,0.201558,0.941704,0.825112,0.556003,0.583801,0.435262,0.889618,0.301405,0.631738,0.0661606,0.876966,0.0919488,0.636509,0.972555,0.33267,0.25873,0.549992,0.604008,|0.912632,0.347006,0.716922,0.415921,0.121697,0.366345,0.133385,0.461343,0.49016,0.772533,0.15274,0.629489,0.576211,0.312516,0.675203,0.845969,0.572066,0.0331795,0.143256,0.807495,0.413925,0.97508,0.20544,0.837222,0.640451,0.369428,0.697586,0.803054,0.466045,0.802045,0.210544,0.699796,0.797621,0.960714,0.00679672,0.183549,0.24881,0.123924,0.650893,0.430861,0.793758,0.467338,0.56987,0.848222,0.496228,0.0206562,0.851638,0.279888,0.784965,0.187813,0.2039,0.528816,0.781542,0.200143,0.338128,0.108666,0.0215256,0.866215,0.263455,0.836804,0.738792,0.0405284,0.341541,0.241854,0.799837,0.604802,0.666299,0.51366,0.580465,0.552152,0.746111,0.586726,0.0269333,0.550797,0.39939,0.082465,0.284697,0.711681,0.669243,0.013163,0.558413,0.227115,0.512442,0.325504,0.921872,0.683309,0.615837,0.740918,0.230357,0.253956,0.378125,0.438729,0.0908353,0.959198,0.0409296,0.739679,0.035601,0.361838,0.892537,0.261128,0.754094,0.218451,0.247841,0.113058,0.470696,0.796763,0.273912,0.25708,0.185033,0.956603,0.342088,0.402189,0.886677,0.411477,0.871342,0.206601,0.79276,0.75254,0.623992,0.667448,0.891917,0.742692,0.570064,0.327127,0.91242,0.231426,0.239897,0.914598,0.149579,0.951473,0.995749,0.179732,0.989554,0.372423,0.913433,0.285415,0.751429,0.879607,0.461907,0.86104,0.72919,0.556532,0.153788,0.0714524,0.341913,0.403218,0.149589,0.205585,0.550427,0.763549,0.214579,0.849452,0.282148,0.606987,0.503927,0.133816,0.14581,0.709239,0.919843,0.86337,0.832424,0.0349841,0.122937,0.887563,0.931701,0.781748,0.933364,0.31497,0.547359,0.406681,0.682289,0.575106,0.302846,0.199136,0.454488,0.610551,0.956642,0.558631,0.146348,0.848564,0.786871,0.56088,0.0521505,0.951893,0.146345,0.706009,0.436094,0.942905,0.342651,0.350659,0.851042,0.993366,0.587044,0.469317,0.400395,0.816099,0.793587,0.510234,0.126801,0.272512,0.884966,0.898952,0.634286,0.707006,0.762629,0.218045,0.889334,0.403768,0.798921,0.310611,0.995852,0.424062,0.275825,0.632044,0.584106,0.659393,0.601603,0.446341,0.559974,0.0464228,0.367453,0.940526,0.820336,0.875497,0.879932,0.0909314,0.806392,0.13081,0.930379,0.616637,0.554511,0.714085,0.95633,0.515374,0.00495297,0.0287021,0.850385,0.117751,0.266274,0.185658,0.183551,0.378397,0.13804,0.495364,0.44416,0.961872,0.932386,0.866434,0.322325,0.435176,0.28603,0.108208,0.528521,0.570879,0.071674,0.724453,0.650175,0.847211,0.109199,0.212301,0.933553,0.187789,0.38515,0.194651,0.496613,0.992878,0.0165319,0.0822755,0.279542,0.491177,0.169079,0.884843,0.465217,0.394283,0.0994555,0.211334,0.177097,0.735741,0.220676,0.276608,0.21825,0.0437968,0.836179,0.803969,0.841469,0.876282,0.416559,0.266891,0.466342,0.466014,0.660418,0.879995,0.979467,0.269319,0.368482,0.972266,0.757119,0.683556,0.788314,0.842066,0.652523,0.315175,0.933557,0.115773,0.101876,0.586014,0.201554,0.97106,0.164197,0.528295,0.263852,0.779423,0.77049,0.427692,0.310744,0.708871,0.186237,0.931453,0.760209,0.850547,0.29282,0.0360403,0.0713773,0.934076,0.180535,0.106034,0.706544,0.947312,0.555374,0.344781,0.206458,0.789196,0.611637,0.809064,0.0340808,0.518751,0.931995,0.29186,0.632165,0.298861,0.11496,0.457152,0.195663,0.976383,0.204531,0.0604373,0.256896,0.204105,0.0511444,0.55323,0.178908,0.664326,0.212172,0.879925,0.926271,0.418657,0.208403,0.60204,0.211861,0.792401,0.326828,0.19718,0.435737,0.852722,0.506992,0.125919,0.995557,0.988927,0.732638,0.566274,0.389505,0.930462,0.499014,0.0673705,0.553903,0.0861352,0.421413,0.0880624,0.0664091,0.00700206,0.208052,0.493111,0.52172,0.662494,0.834214,0.204812,0.395779,0.354636,0.465804,0.110577,0.64027,0.543637,0.206235,0.489529,0.957907,0.473169,0.92015,0.980346,0.243175,0.845067,0.442119,0.659674,0.316606,0.93048,0.116789,0.359337,0.832908,0.58465,0.706753,0.93834,0.322313,0.542826,0.0535843,0.968963,0.30574,0.812726,0.217406,0.632816,0.414981,0.834576,0.28164,0.681268,0.611231,0.39056,0.663208,0.0942996,0.141416,0.312291,0.850371,0.212097,0.555375,0.143169,0.887563,0.870537,0.912221,0.843425,0.585845,0.90373,0.939228,0.0843043,0.181379,0.855822,0.58267,0.11749,0.534167,0.9458,0.529705,0.273863,0.596403,0.664648,0.0280893,0.62462,0.968791,0.963637,0.472966,0.635238,0.843927,0.994317,0.512292,0.405023,0.763171,0.173435,0.323613,0.862863,0.462725,0.547827,0.893243,0.844869,0.749904,0.861649,0.836923,0.634103,0.616417,0.323489,0.86908,0.697339,0.0469738,0.0499871,0.440179,0.00623327,0.177596,0.505713,0.721287,0.0454272,0.366856,0.368967,0.631697,0.789313,0.679726,0.354931,0.392247,0.0681495,0.58442,0.342534,0.154653,0.551666,0.687628,0.613802,0.652874,0.295852,0.910312,0.221107,0.323461,0.237645,0.762674,0.0218284,0.135096,0.492983,0.202771,0.718479,0.190456,0.476784,0.689056,0.820935,0.0973431,0.223787,0.967489,0.589511,0.428256,0.293531,0.514766,0.476209,0.833613,0.256446,0.934282,0.538175,0.330247,0.495728,0.65632,0.0418021,0.668947,0.246792,0.176627,0.117043,0.578124,0.64371,0.257799,0.297798,0.023986,0.721298,0.311271,0.897043,0.270028,0.212413,0.302985,0.680302,0.643017,0.62753,0.731321,0.193364,0.300497,0.285922,0.767152,0.992281,0.917215,0.959152,0.122719,0.986906,0.490846,0.818346,0.557704,0.922086,0.189426,0.588412,0.674345,0.310061,0.468263,0.0970468,0.944612,0.181466,0.597057,0.637218,0.160073,0.371468,0.935317,0.550888,0.232842,0.340948,0.88266,0.459832,0.659429,0.358629,0.831049,0.886142,0.0389293,0.877219,0.0312571,0.652534,0.729424,0.450794,0.244192,0.672558,0.778489,0.442652,0.258681,0.0865943,0.134547,0.15434,0.246358,0.0730098,0.869731,0.623981,0.582695,0.943025,0.545083,0.208745,0.725013,0.599647,0.0871219,0.872896,0.237825,0.905247,0.323868,0.891272,0.961167,0.0269216,0.629996,0.89286,0.607162,0.450539,0.566048,0.634241,0.984629,0.154064,0.0178798,0.741092,0.975798,0.13607,0.130646,0.946619,0.927423,0.162339,0.204134,0.0420389,0.916235,0.702759,0.335273,0.582369,0.856061,0.219851,0.282821,0.16036,0.146157,0.357023,0.983956,0.615277,0.912753,0.226497,0.659907,0.850888,0.511376,0.298504,0.148885,0.461657,0.867347,0.552444,0.00599593,0.0415379,0.983756,0.307474,0.801357,0.719639,0.412226,0.240698,0.966551,0.952772,0.647605,0.0484781,0.0386024,0.839725,0.560483,0.0268956,0.0871264,0.930419,0.131416,0.901286,0.454488,0.422919,0.820882,0.499216,0.721134,0.235238,0.0750201,0.604905,0.776938,0.401744,0.906072,0.354204,0.253315,0.540783,0.448833,0.614538,0.307226,0.807702,0.0042659,0.487478,0.366713,0.185116,0.137581,0.138926,0.556321,0.228865,0.953172,0.14972,0.979306,0.718756,0.109185,0.863399,0.151235,0.598632,0.24736,0.493409,0.732809,0.871883,0.072326,0.603929,0.545374,0.0147095,0.513678,0.0160002,0.480802,0.0387052,0.00724429,0.693731,0.038783,0.225504,0.0106106,0.273405,0.0646858,0.784735,0.591171,0.200262,0.397058,0.601413,0.787555,0.765543,0.502445,0.481594,0.216214,0.443901,0.408986,0.230831,0.533485,0.801196,0.698231,0.980366,0.869957,0.916484,0.0261138,0.262629,0.429517,0.930032,0.866047,0.844064,0.96292,0.647411,0.0656747,0.248343,0.401848,0.118675,0.891906,0.263402,0.70341,0.357832,0.721174,0.333143,0.065429,0.525262,0.422865,0.278506,0.00118041,0.667198,0.685472,0.792306,0.489174,0.950514,0.81424,0.871084,0.444395,0.941225,0.605756,0.538847,0.458454,0.295355,0.2354,0.161872,0.257716,0.625856,0.54288,0.334298,0.584332,0.571538,0.300729,0.395052,0.428365,0.273212,0.831629,0.560947,0.170897,0.804704,0.943088,0.140817,0.998345,0.719857,0.549523,0.19012,0.691266,0.175973,0.680554,0.558125,0.633044,0.3103,0.127856,0.576445,0.961014,0.715325,0.211205,0.412511,0.221461,0.398449,0.123997,0.431284,0.634769,0.44898,0.841599,0.471029,0.259078,0.357395,0.92454,0.394561,0.407957,0.34978,0.087796,0.765638,0.885289,0.971545,0.870676,0.42077,0.117543,0.548785,0.426043,0.28136,0.446129,0.487482,0.719121,0.688356,0.628448,0.941155,0.916023,0.880433,0.25384,0.51826,0.452797,0.643814,0.516434,0.985967,0.325428,0.277667,0.766291,0.874519,0.467138,0.603541,0.494387,0.482424,0.214756,0.875495,0.368632,0.681205,0.727509,0.65452,0.550996,0.529499,0.0801811,0.107978,0.651393,0.398679,0.994759,0.318941,0.478683,0.737833,0.217171,0.218755,0.641742,0.212702,0.558077,0.0667708,0.979133,0.24065,0.376078,0.859104,0.126074,0.444206,0.859494,0.51251,0.218026,0.410558,0.982398,0.308273,0.0254864,0.0318416,0.088468,0.824632,0.151309,0.130358,0.28847,0.102957,0.63629,0.695888,0.615346,0.07506,0.5703,0.289574,0.565655,0.794148,0.755895,0.802272,0.419344,0.179873,0.22825,0.0917044,0.471141,0.612371,0.13491,0.774431,0.81961,0.954928,0.463893,0.398896,0.743577,0.53467,0.933988,0.444257,0.644526,0.212161,0.294905,0.872818,0.424579,0.133809,0.82344,0.749781,0.695135,0.897334,0.838426,0.769594,0.449294,0.764046,0.286884,0.467072,0.298296,0.170338,0.280494,0.502442,0.917178,0.45732,0.458474,0.665716,0.52121,0.817155,0.809832,0.613469,0.37136,0.392176,0.895504,0.39397,0.680715,0.968997,0.703497,0.958105,0.451084,0.027185,0.354371,0.638427,0.471707,0.316233,0.226697,0.595941,0.732643,0.644984,0.986253,0.563072,0.320854,0.691408,0.0272139,0.752156,0.339672,0.290062,0.447871,0.798263,0.0160581,0.91187,0.542125,0.657329,0.554274,0.142159,0.435859,0.285963,0.143975,0.707266,0.653481,0.15204,|0.546406,0.788806,0.0352632,0.812366,0.624931,0.571642,0.226543,0.857635,0.966977,0.642079,0.431021,0.563193,0.386215,0.102262,0.021306,0.570812,0.658193,0.797108,0.00816822,0.925517,0.245119,0.243643,0.781397,0.712224,0.0436149,0.895247,0.978597,0.941803,0.912784,0.842807,0.665963,0.32508,0.480935,0.656226,0.878649,0.612504,0.765646,0.0804371,0.807702,0.956146,0.592095,0.771557,0.48758,0.261262,0.080361,0.516676,0.870868,0.696304,0.271107,0.799515,0.596984,0.802511,0.228187,0.34597,0.568345,0.60786,0.548597,0.866673,0.225541,0.761587,0.797785,0.0598447,0.917825,0.436411,0.419526,0.682636,0.570289,0.353812,0.495451,0.474197,0.51489,0.0690483,0.926378,0.261327,0.535196,0.0423391,0.510219,0.356389,0.563859,0.438245,0.270339,0.964624,0.224008,0.407225,0.628249,0.832836,0.967193,0.520382,0.419218,0.296408,0.914625,0.453498,0.725735,0.0642984,0.474228,0.869429,0.726153,0.612865,0.84042,0.357641,0.440823,0.965265,0.695965,0.629237,0.256744,0.705989,0.290944,0.64843,0.095992,0.542538,0.720421,0.882788,0.911428,0.122423,0.0905144,0.317571,0.399407,0.378202,0.0735048,0.950231,0.1904,0.514165,0.453531,0.342334,0.367211,0.549377,0.0695847,0.790614,0.666242,0.0382255,0.799595,0.576068,0.802393,0.168325,0.879954,0.497716,0.223777,0.714168,0.0191119,0.328041,0.885459,0.403958,0.968778,0.996628,0.207443,0.469014,0.470088,0.594117,0.694215,0.530572,0.406037,0.330362,0.207178,0.0373476,0.876109,0.967082,0.872923,0.465695,0.244874,0.35102,0.566367,0.727132,0.627717,0.565885,0.0468315,0.356526,0.821656,0.515355,0.123699,0.0905775,0.643041,0.72791,0.421302,0.246434,0.316104,0.141735,0.930985,0.581653,0.0377936,0.915884,0.188951,0.178386,0.960103,0.480019,0.593508,0.396532,0.378787,0.254466,0.952781,0.656441,0.221128,0.267194,0.93526,0.424519,0.468316,0.989783,0.311948,0.328144,0.213834,0.0709565,0.0660715,0.30468,0.880254,0.846234,0.751598,0.894833,0.031494,0.522253,0.722222,0.542857,0.234543,0.898562,0.954586,0.945459,0.753011,0.534068,0.55202,0.0302997,0.703582,0.920782,0.712063,0.695034,0.112062,0.461048,0.438382,0.0778774,0.477546,0.837219,0.360536,0.400557,0.983684,0.568254,0.364834,0.996553,0.686888,0.134586,0.273541,0.336803,0.754986,0.852,0.20515,0.216734,0.847176,0.0658237,0.359266,0.446332,0.46914,0.342008,0.94345,0.223211,0.545592,0.756476,0.243937,0.316026,0.186807,0.946087,0.828162,0.363367,0.189327,0.204139,0.28206,0.592541,0.213725,0.950119,0.947769,0.134902,0.641523,0.10728,0.161165,0.911528,0.265137,0.112666,0.0733166,0.467051,0.0757172,0.501948,0.233471,0.608779,0.591938,0.0880772,0.452024,0.976275,0.976,0.276657,0.332705,0.0999223,0.471326,0.179816,0.962825,0.257634,0.229043,0.545102,0.485554,0.355814,0.135466,0.866029,0.973741,0.283483,0.827464,0.577486,0.228391,0.118027,0.222481,0.124575,0.525243,0.136169,0.679047,0.892235,0.439341,0.391294,0.029247,0.045903,0.0144221,0.723256,0.999937,0.0189472,0.421534,0.0854891,0.440815,0.459566,0.0624191,0.427839,0.579598,0.406264,0.935235,0.199905,0.330455,0.188145,0.983861,0.717641,0.582908,0.476654,0.482068,0.265144,0.393418,0.140328,0.97995,0.191835,0.434211,0.0653465,0.752049,0.568947,0.332302,0.0632725,0.43096,0.239825,0.0802258,0.0292358,0.5199,0.375445,0.0680983,0.976416,0.684107,0.654518,0.621171,0.778544,0.455578,0.582568,0.680653,0.591466,0.537238,0.813903,0.176814,0.0262794,0.597975,0.967492,0.627692,0.537494,0.977392,0.115107,0.43375,0.556415,0.220455,0.34411,0.641707,0.674486,0.878962,0.0482779,0.93806,0.210342,0.408134,0.0343941,0.700175,0.779347,0.954311,0.0564557,0.990149,0.271282,0.558157,0.308407,0.36863,0.416133,0.201235,0.778515,0.544405,0.824402,0.315443,0.271739,0.115262,0.784789,0.15543,0.289623,0.885953,0.786591,0.279117,0.788889,0.742529,0.0962092,0.70599,0.61501,0.65764,0.22232,0.467585,0.353599,0.756587,0.552863,0.984028,0.45186,0.543148,0.0316473,0.751001,0.341151,0.542255,0.899434,0.528001,0.881478,0.47927,0.735443,0.196324,0.125468,0.877928,0.647014,0.941241,0.870383,0.639806,0.148367,0.466392,0.846415,0.615994,0.243285,0.489304,0.857394,0.184324,0.276955,0.656317,0.350159,0.228063,0.154483,0.502266,0.327262,0.607013,0.638617,0.702057,0.539851,0.740254,0.807698,0.43801,0.574183,0.909507,0.536377,0.383536,0.492753,0.176867,0.102216,0.901285,0.980365,0.725489,0.258803,0.967916,0.118712,0.49423,0.238605,0.689472,0.743638,0.0650675,0.26462,0.90545,0.4372,0.10663,0.974491,0.0661034,0.538077,0.630168,0.13203,0.815837,0.993729,0.831089,0.135942,0.135759,0.938236,0.654168,0.443958,0.352884,0.994157,0.758771,0.0898603,0.852073,0.973295,0.0153157,0.366239,0.164792,0.399539,0.172758,0.807811,0.9532,0.934073,0.25779,0.244346,0.893904,0.501767,0.914498,0.315357,0.857419,0.273385,0.987755,0.420702,0.473043,0.917619,0.0368223,0.581,0.575312,0.645799,0.0112294,0.292507,0.827171,0.776245,0.848183,0.067437,0.830042,0.0821254,0.402655,0.025291,0.0953321,0.680643,0.151518,0.58115,0.901763,0.313419,0.731843,0.0581429,0.568213,0.152218,0.564237,0.142262,0.811267,0.161836,0.616665,0.0631165,0.302984,0.474083,0.244574,0.262656,0.162136,0.573848,0.442674,0.5893,0.702347,0.802287,0.267229,0.136389,0.734771,0.182606,0.703276,0.728434,0.631051,0.788292,0.0623158,0.248746,0.61966,0.185576,0.801754,0.315169,0.444713,0.263121,0.296896,0.387379,0.699639,0.968949,0.605566,0.967313,0.673504,0.906537,0.887819,0.148287,0.604449,0.914005,0.962542,0.764567,0.638513,0.483687,0.79107,0.651995,0.22223,0.518481,0.990012,0.131056,0.52632,0.469835,0.291558,0.404656,0.727786,0.415019,0.111951,0.597225,0.0844791,0.66871,0.536973,0.342553,0.00505632,0.62916,0.215259,0.428313,0.98629,0.761472,0.939163,0.39266,0.102509,0.377326,0.652685,0.340425,0.231915,0.222908,0.369297,0.331592,0.635827,0.738459,0.347079,0.85021,0.614518,0.603066,0.151278,0.14797,0.240891,0.638639,0.590077,0.262713,0.174397,0.98704,0.223305,0.393745,0.834935,0.491377,0.134864,0.304667,0.79599,0.42994,0.45205,0.875045,0.349943,0.711818,0.293078,0.563019,0.476966,0.911197,0.494298,0.721546,0.433551,0.532223,0.273457,0.970982,0.535553,0.644013,0.793297,0.177899,0.8334,0.246805,0.461587,0.735959,0.292819,0.871878,0.3515,0.281715,0.0470624,0.433576,0.56478,0.250212,0.974475,0.182171,0.381,0.411147,0.996824,0.972894,0.825469,0.597497,0.607625,0.250795,0.28771,0.433719,0.863777,0.665434,0.949782,0.240099,0.443171,0.706728,0.456217,0.264557,0.203257,0.250768,0.386822,0.38274,0.298755,0.653019,0.167013,0.728023,0.345083,0.748725,0.93195,0.339313,0.563844,0.0145649,0.929586,0.830022,0.907459,0.447237,0.372211,0.042102,0.227899,0.698925,0.295354,0.642031,0.4556,0.143911,0.816912,0.768698,0.683598,0.498843,0.563948,0.11134,0.635893,0.753033,0.907423,0.398561,0.00831902,0.97457,0.237854,0.74404,0.791079,0.632573,0.936353,0.899212,0.0930918,0.568198,0.353104,0.8913,0.36359,0.664453,0.585055,0.697839,0.181348,0.884983,0.40321,0.536341,0.712543,0.216798,0.675181,0.568811,0.874696,0.771069,0.0983813,0.378104,0.920821,0.737785,0.250572,0.350179,0.892259,0.6816,0.15561,0.651586,0.258982,0.431302,0.312011,0.274949,0.421623,0.871497,0.693468,0.385736,0.527801,0.393267,0.547683,0.0235316,0.860773,0.000176191,0.957333,0.477017,0.92916,0.948956,0.68868,0.108263,0.784812,0.596747,0.622386,0.998449,0.81795,0.975357,0.254885,0.240556,0.600173,0.948717,0.200471,0.265353,0.501173,0.910315,0.615247,0.406155,0.722376,0.0551606,0.462175,0.602361,0.322143,0.744823,0.223662,0.540586,0.350617,0.666889,0.676782,0.960193,0.627378,0.882187,0.795835,0.291406,0.235192,0.269845,0.675437,0.186077,0.726772,0.709666,0.960352,0.307426,0.235775,0.292679,0.202773,0.652644,0.832219,0.978597,0.780661,0.215009,0.2649,0.60156,0.761364,0.477461,0.135753,0.801602,0.185724,0.152198,0.204224,0.148671,0.684748,0.5439,0.888053,0.758238,0.322826,0.462193,0.123969,0.101286,0.326027,0.528922,0.313998,0.274399,0.325722,0.796925,0.902499,0.322682,0.661505,0.103149,0.114934,0.80813,0.343847,0.0965652,0.953881,0.968633,0.717948,0.990949,0.948034,0.719757,0.353867,0.745616,0.469771,0.240323,0.815186,0.133881,0.82115,0.181477,0.308896,0.545856,0.772951,0.939769,0.38994,0.00860447,0.944393,0.852019,0.333958,0.947193,0.675855,0.80017,0.79095,0.0143941,0.0223826,0.988261,0.916059,0.957893,0.544417,0.0390043,0.12697,0.806192,0.650825,0.85173,0.349139,0.0585264,0.836143,0.0421798,0.680561,0.963817,0.265657,0.750678,0.671671,0.32327,0.680322,0.609529,0.458442,0.437891,0.157236,0.459616,0.282071,0.637919,0.199726,0.944754,0.670027,0.899608,0.418373,0.359998,0.914336,0.675436,0.519276,0.774516,0.978507,0.596935,0.40697,0.565141,0.353283,0.744482,0.40585,0.279279,0.941509,0.680998,0.542745,0.151522,0.672551,0.854511,0.582693,0.709923,0.632151,0.391387,0.271632,0.664956,0.919254,0.0489596,0.8285,0.265547,0.7482,0.721341,0.140946,0.30705,0.287352,0.87068,0.844445,0.341932,0.868716,0.0586914,0.664078,0.653945,0.684109,0.180852,0.312702,0.514054,0.312326,0.311293,0.871968,0.00342882,0.13864,0.669671,0.669364,0.830088,0.506816,0.315748,0.517548,0.692708,0.797844,0.809191,0.732125,0.17745,0.343777,0.749898,0.144441,0.257282,0.151611,0.321552,0.597096,0.27752,0.0158026,0.343365,|0.163107,0.137623,0.0987647,0.409515,0.959068,0.726581,0.26388,0.167988,0.612461,0.00913197,0.0737892,0.137216,0.736217,0.827505,0.12832,0.508646,0.685388,0.526899,0.245884,0.783327,0.457656,0.0394922,0.277754,0.890968,0.760325,0.76771,0.14258,0.421674,0.488201,0.661627,0.321284,0.121079,0.278806,0.363179,0.503096,0.780402,0.985596,0.258615,0.516305,0.474057,0.708021,0.813836,0.640893,0.686284,0.830593,0.569404,0.985763,0.409337,0.839111,0.55802,0.401395,0.172994,0.37556,0.058251,0.580363,0.0625794,0.286397,0.851537,0.316662,0.595119,0.751764,0.83005,0.837334,0.0180002,0.028883,0.128386,0.757697,0.624295,0.639231,0.953222,0.570451,0.395018,0.897545,0.413482,0.934744,0.484045,0.328829,0.0353058,0.46558,0.413875,0.987761,0.444164,0.571462,0.66683,0.990224,0.605437,0.38877,0.562347,0.648404,0.128469,0.853215,0.308412,0.120631,0.956,0.143027,0.15863,0.669376,0.140901,0.601256,0.480731,0.676661,0.985308,0.528436,0.535664,0.713377,0.608004,0.507497,0.314475,0.330162,0.551604,0.894761,0.102796,0.792296,0.993638,0.686123,0.882358,0.120697,0.450231,0.0191758,0.183924,0.407977,0.831808,0.766236,0.104996,0.629496,0.649769,0.63752,0.90044,0.443716,0.891758,0.50416,0.92261,0.239749,0.79369,0.204593,0.53216,0.456827,0.320709,0.767335,0.136606,0.64665,0.00180066,0.107939,0.262057,0.211725,0.51426,0.99623,0.981985,0.934355,0.745783,0.468197,0.994019,0.996234,0.587454,0.215371,0.825745,0.0913342,0.195138,0.294486,0.448008,0.955822,0.512306,0.251581,0.589099,0.68413,0.822291,0.247376,0.630671,0.965063,0.512184,0.257354,0.819161,0.182041,0.241264,0.579867,0.739121,0.973154,0.526205,0.941544,0.160984,0.0405266,0.517595,0.608832,0.191754,0.79425,0.674065,0.338026,0.26762,0.24343,0.746611,0.240837,0.514769,0.124235,0.120983,0.864239,0.0449094,0.163596,0.205204,0.21872,0.472071,0.243921,0.616516,0.0426638,0.722263,0.0840484,0.179922,0.494697,0.0842758,0.280906,0.242781,0.48345,0.201697,0.0678303,0.945027,0.955628,0.882441,0.319447,0.248902,0.124507,0.125017,0.243888,0.21502,0.821985,0.462559,0.949342,0.47068,0.961855,0.0144531,0.521899,0.667766,0.448142,0.941042,0.690917,0.836689,0.71724,0.908391,0.975553,0.91746,0.233731,0.305223,0.761406,0.477665,0.881849,0.299763,0.40389,0.0648993,0.589904,0.482148,0.177999,0.433906,0.242974,0.506147,0.707126,0.48605,0.344363,0.488015,0.888195,0.711008,0.0428333,0.00621396,0.411617,0.490753,0.964572,0.772195,0.760451,0.185095,0.545521,0.870701,0.134856,0.652444,0.741609,0.210045,0.770138,0.9103,0.782765,0.326544,0.514216,0.766682,0.0632105,0.633309,0.071188,0.079522,0.283674,0.941045,0.190383,0.77185,0.584132,0.0132608,0.480461,0.749895,0.533893,0.698875,0.467761,0.474491,0.674118,0.544262,0.973048,0.703427,0.880219,0.43677,0.259176,0.279392,0.166975,0.654178,0.981036,0.620987,0.265755,0.662116,0.966981,0.504377,0.591655,0.430844,0.00343364,0.43067,0.258798,0.920078,0.884454,0.482273,0.451866,0.218562,0.469458,0.454107,0.781912,0.212879,0.665421,0.518035,0.994841,0.137948,0.913742,0.978453,0.0883631,0.580166,0.908564,0.571107,0.0174583,0.284182,0.257279,0.590617,0.806723,0.952278,0.0898927,0.537927,0.858675,0.223362,0.0377653,0.800556,0.0171348,0.254216,0.409991,0.636617,0.671886,0.766044,0.502784,0.494972,0.00816637,0.790964,0.255101,0.81887,0.101456,0.18729,0.144283,0.176416,0.235568,0.190902,0.420378,0.131992,0.846121,0.47745,0.955579,0.743283,0.65927,0.585155,0.945236,0.897672,0.361292,0.263193,0.117395,0.452158,0.745146,0.730705,0.0351718,0.791673,0.592559,0.137035,0.185798,0.101555,0.225629,0.110932,0.17092,0.112441,0.718994,0.777468,0.470165,0.77046,0.948073,0.290861,0.313351,0.176963,0.762621,0.783786,0.601235,0.342444,0.976756,0.0303432,0.812153,0.487266,0.147082,0.539784,0.69892,0.432081,0.301272,0.368754,0.971888,0.768879,0.456729,0.426427,0.710735,0.805119,0.946557,0.533923,0.714595,0.246629,0.0175279,0.53911,0.588076,0.886478,0.121619,0.157457,0.0817254,0.309326,0.380173,0.441533,0.231311,0.439403,0.764139,0.959246,0.227952,0.992859,0.542808,0.190415,0.742409,0.0607024,0.994719,0.457397,0.626206,0.651906,0.0395794,0.417767,0.395814,0.54695,0.312851,0.25432,0.195997,0.812959,0.645493,0.0970561,0.882078,0.233812,0.204358,0.905136,0.59327,0.103726,0.687938,0.799764,0.426824,0.948303,0.355737,0.827573,0.440615,0.869946,0.444544,0.978589,0.311024,0.800853,0.636534,0.728125,0.15072,0.971255,0.733116,0.928968,0.956205,0.788069,0.641301,0.572835,0.785284,0.401495,0.497656,0.967134,0.332126,0.873392,0.286803,0.260654,0.0644611,0.884137,0.237238,0.83397,0.552128,0.64449,0.331615,0.545297,0.338184,0.960415,0.950554,0.994324,0.176135,0.981423,0.241731,0.647143,0.695967,0.574129,0.73925,0.525917,0.814557,0.0880073,0.0816848,0.592428,0.983078,0.381918,0.732005,0.144458,0.0998655,0.352325,0.249383,0.625306,0.0840593,0.673006,0.854717,0.629673,0.325625,0.788119,0.395244,0.415771,0.326863,0.588768,0.489059,0.967854,0.344015,0.820953,0.721545,0.0640585,0.858818,0.381497,0.380637,0.325435,0.909097,0.524352,0.615943,0.704839,0.70177,0.326926,0.330901,0.0526993,0.95752,0.77486,0.493257,0.890422,0.509849,0.609659,0.161528,0.587302,0.140855,0.410693,0.647672,0.850042,0.672468,0.277049,0.186575,0.193706,0.685277,0.406042,0.223929,0.792288,0.933862,0.496586,0.335719,0.843952,0.265894,0.410543,0.216122,0.685386,0.395966,0.471938,0.00605714,0.7331,0.355233,0.990518,0.94041,0.483511,0.88564,0.286017,0.675555,0.774905,0.39329,0.661388,0.324943,0.201968,0.0421154,0.635052,0.644448,0.488885,0.790013,0.151042,0.583571,0.684191,0.74005,0.740827,0.642013,0.206098,0.237543,0.810537,0.915258,0.575406,0.403627,0.205306,0.719392,0.865456,0.122426,0.0350913,0.733216,0.190944,0.456936,0.133293,0.350909,0.553475,0.499483,0.228779,0.181147,0.809023,0.867368,0.453031,0.864644,0.549171,0.637435,0.428583,0.105651,0.322903,0.82337,0.5707,0.687944,0.468362,0.759315,0.967701,0.161805,0.887348,0.289361,0.468653,0.665806,0.938572,0.164652,0.160575,0.587217,0.3182,0.894956,0.256469,0.263422,0.790573,0.421639,0.981577,0.604701,0.0986474,0.673521,0.802916,0.411867,0.204507,0.140822,0.676628,0.0175155,0.624383,0.122399,0.50084,0.317676,0.33261,0.410656,0.59393,0.265553,0.275847,0.523946,0.911192,0.162413,0.844334,0.961422,0.502881,0.760412,0.437292,0.874965,0.8772,0.415416,0.0753037,0.461701,0.942512,0.298059,0.831377,0.909635,0.29247,0.957967,0.336879,0.740175,0.831166,0.377067,0.1145,0.0808656,0.510661,0.118005,0.779223,0.0537009,0.814426,0.298271,0.340507,0.664763,0.925639,0.293198,0.253642,0.28958,0.162986,0.643087,0.62806,0.452447,0.454722,0.709697,0.0425326,0.922695,0.434846,0.595634,0.572466,0.715975,0.367584,0.161037,0.223223,0.97783,0.514084,0.377656,0.645554,0.0290666,0.620719,0.423049,0.276367,0.823175,0.87284,0.021496,0.319697,0.62125,0.786352,0.34406,0.0377086,0.508615,0.557143,0.226641,0.347517,0.424172,0.256124,0.321355,0.546939,0.282272,0.752468,0.275695,0.483067,0.119152,0.903098,0.686273,0.415061,0.988318,0.167615,0.0166789,0.662813,0.867234,0.7822,0.0275008,0.137193,0.839493,0.504752,0.795386,0.665199,0.916569,0.780332,0.683069,0.654213,0.764671,0.50679,0.767506,0.418801,0.15131,0.422406,0.732308,0.491522,0.755447,0.419006,0.425602,0.226802,0.863092,0.13305,0.789716,0.48988,0.948427,0.466377,0.363777,0.0614734,0.367693,0.83887,0.404215,0.332694,0.0241352,0.785258,0.627368,0.66054,0.86963,0.71445,0.702563,0.237338,0.0939565,0.0358102,0.178845,0.338847,0.565776,0.63402,0.566541,0.836991,0.653899,0.503287,0.384864,0.0245006,0.0521014,0.209142,0.275669,0.559694,0.187348,0.995451,0.305887,0.887449,0.36569,0.3768,0.44948,0.621309,0.342243,0.354245,0.0206662,0.708451,0.792623,0.975569,0.497371,0.638558,0.302011,0.170616,0.0251642,0.0574194,0.364432,0.13097,0.212515,0.966435,0.734461,0.843852,0.562186,0.256721,0.208786,0.719243,0.100702,0.951526,0.118332,0.534115,0.284592,0.271358,0.450285,0.244496,0.50267,0.545846,0.892204,0.829826,0.477308,0.823948,0.180638,0.481386,0.565834,0.819894,0.911836,0.328541,0.512591,0.794208,0.724557,0.0559093,0.594698,0.532212,0.0748521,0.852617,0.259427,0.00270993,0.278143,0.582246,0.319437,0.062555,0.840731,0.485722,0.854192,0.15858,0.369671,0.611027,0.491979,0.626958,0.495774,0.117781,0.862562,0.796955,0.581121,0.693111,0.666767,0.815671,0.30572,0.787465,0.661503,0.4533,0.508386,0.90662,0.193587,0.356089,0.18996,0.253129,0.97849,0.917561,0.819441,0.0352566,0.240129,0.830891,0.110292,0.474921,0.662865,0.236986,0.807909,0.217503,0.407235,0.311328,0.875483,0.285525,0.296578,0.543902,0.184741,0.337234,0.0678567,0.67229,0.150063,0.22295,0.120794,0.684752,0.955412,0.221941,0.460735,0.381095,0.922221,0.628468,0.725523,0.211267,0.703479,0.177739,0.805213,0.794757,0.817375,0.814279,0.447288,0.280783,0.991332,0.232376,0.692821,0.690514,0.925614,0.0102019,0.00749499,0.49236,0.00305712,0.118747,0.861257,0.132887,0.624936,0.776301,0.934297,0.108993,0.457607,0.647854,0.701197,0.728429,0.230364,0.49647,0.919973,0.945578,0.103375,0.507371,0.914506,0.321314,0.29343,0.707159,0.506379,0.846046,0.774897,0.277207,0.860569,0.514326,0.422788,0.824754,0.200785,0.884569,0.256347,0.455196,0.300866,0.115267,|0.87144,0.860085,0.0563718,0.195499,0.116897,0.677535,0.225227,0.616668,0.202112,0.168464,0.465703,0.529308,0.281825,0.401325,0.714799,0.805947,0.0220497,0.420408,0.586944,0.323748,0.46399,0.219958,0.038303,0.407106,0.444472,0.464651,0.0960079,0.872562,0.185985,0.510148,0.354043,0.284867,0.635389,0.37168,0.59677,0.820251,0.214503,0.609526,0.435625,0.0233058,0.537425,0.524608,0.0797915,0.237317,0.246834,0.682032,0.236269,0.613275,0.00807041,0.516257,0.689827,0.631985,0.98471,0.390935,0.283739,0.498656,0.870495,0.322753,0.644205,0.266693,0.292554,0.212923,0.761112,0.790664,0.867451,0.0236484,0.633738,0.510557,0.325274,0.391807,0.310073,0.401693,0.866203,0.123946,0.0383269,0.719849,0.831867,0.239652,0.759966,0.874543,0.537264,0.0291342,0.424489,0.284087,0.185005,0.518834,0.115513,0.38859,0.699442,0.145425,0.799249,0.663562,0.742028,0.456841,0.416788,0.302865,0.841384,0.63809,0.600873,0.638509,0.732592,0.0263838,0.295546,0.980778,0.724505,0.249125,0.217662,0.178554,0.204695,0.128426,0.747782,0.237446,0.243001,0.0691156,0.95818,0.199795,0.129046,0.194816,0.884595,0.259318,0.26241,0.7231,0.706866,0.485449,0.643849,0.540719,0.298969,0.833891,0.0100498,0.290063,0.0845346,0.592492,0.375013,0.0605577,0.95266,0.532838,0.228448,0.283196,0.78411,0.909941,0.241415,0.0950782,0.913262,0.751437,0.0300813,0.175172,0.00947559,0.521118,0.957336,0.0321705,0.930728,0.689078,0.948291,0.283872,0.142175,0.0884251,0.902473,0.531168,0.636849,0.275987,0.815826,0.16453,0.99477,0.493259,0.763727,0.412091,0.27755,0.0490726,0.32418,0.983581,0.721231,0.189535,0.561434,0.245208,0.260067,0.846329,0.520156,0.692915,0.692839,0.0483637,0.494839,0.655535,0.624031,0.285583,0.473537,0.0210562,0.345966,0.547912,0.640804,0.157737,0.231219,0.908051,0.678429,0.613038,0.677322,0.459099,0.0967981,0.128789,0.273432,0.533942,0.927776,0.291607,0.257104,0.84057,0.459236,0.453975,0.379915,0.830312,0.380872,0.329498,0.234863,0.983952,0.0168829,0.682959,0.641271,0.243984,0.237077,0.396501,0.31328,0.869452,0.889995,0.793206,0.695004,0.796073,0.998146,0.209875,0.99435,0.10576,0.468388,0.314253,0.819913,0.341222,0.157836,0.407733,0.652592,0.647067,0.722071,0.458985,0.296705,0.0648464,0.195285,0.408563,0.209351,0.387236,0.952387,0.782129,0.588884,0.31586,0.174974,0.0719503,0.4943,0.623254,0.702682,0.36914,0.0550042,0.560731,0.861935,0.269818,0.731771,0.617768,0.536153,0.057786,0.618713,0.78804,0.00119555,0.175406,0.733218,0.972946,0.876929,0.388706,0.806451,0.0282254,0.445585,0.680698,0.5355,0.357109,0.619399,0.122419,0.806427,0.052781,0.337567,0.00676465,0.766047,0.982792,0.368779,0.248651,0.550841,0.250523,0.395373,0.318313,0.0352628,0.897428,0.0792051,0.897096,0.328445,0.11885,0.00119454,0.56156,0.0277765,0.538833,0.493897,0.772252,0.159906,0.116007,0.367306,0.0455751,0.285996,0.791365,0.241766,0.199867,0.471568,0.515113,0.905243,0.231812,0.51582,0.179392,0.0273619,0.640865,0.789071,0.0574204,0.723117,0.559782,0.261028,0.72439,0.348606,0.317071,0.628849,0.18844,0.71303,0.43429,0.753566,0.783148,0.947918,0.7211,0.531841,0.8113,0.683276,0.639429,0.912454,0.767411,0.440751,0.869231,0.458708,0.738377,0.840932,0.391393,0.970352,0.296782,0.777685,0.400539,0.113649,0.209952,0.313184,0.73811,0.359821,0.856886,0.505665,0.217036,0.312416,0.906631,0.666841,0.265877,0.659327,0.442954,0.834575,0.213446,0.822138,0.84341,0.499355,0.202288,0.203336,0.6516,0.829287,0.0655705,0.326246,0.861751,0.87927,0.515272,0.941172,0.819804,0.101469,0.291938,0.392398,0.205872,0.823672,0.671678,0.55882,0.445926,0.547626,0.384107,0.305776,0.499468,0.341506,0.706172,0.746784,0.799385,0.0182021,0.989782,0.0713774,0.851194,0.0109569,0.134396,0.0815033,0.951828,0.392177,0.169161,0.885827,0.335159,0.826133,0.703988,0.603038,0.192166,0.793559,0.962265,0.798881,0.647603,0.0985786,0.960952,0.761725,0.560895,0.76513,0.522759,0.685238,0.925774,0.583992,0.42871,0.839005,0.81338,0.406437,0.770818,0.480737,0.411545,0.549144,0.735925,0.11325,0.880884,0.906038,0.348375,0.186561,0.615912,0.206691,0.965072,0.84394,0.894783,0.476684,0.0680491,0.806548,0.694272,0.0576055,0.635597,0.152797,0.707443,0.268875,0.963527,0.0136752,0.380688,0.223053,0.679832,0.460375,0.34287,0.639629,0.471057,0.52642,0.667123,0.166886,0.406893,0.585778,0.984394,0.485411,0.59678,0.15323,0.389826,0.168563,0.912217,0.890624,0.00699818,0.719468,0.689326,0.5889,0.104915,0.345438,0.947182,0.0123525,0.0263762,0.484702,0.770474,0.975316,0.914722,0.0110231,0.326648,0.357639,0.963225,0.332488,0.239451,0.728931,0.391824,0.148393,0.303049,0.214477,0.472503,0.667947,0.402066,0.967442,0.427763,0.466633,0.924283,0.539101,0.530312,0.709216,0.591739,0.88494,0.219732,0.606328,0.0559619,0.388507,0.179394,0.155696,0.596998,0.295306,0.757698,0.711293,0.954935,0.475208,0.224459,0.737499,0.332703,0.710563,0.547428,0.23101,0.449145,0.594171,0.434389,0.783409,0.581397,0.740515,0.976375,0.890545,0.190538,0.0870035,0.185909,0.684566,0.525695,0.439545,0.344642,0.604096,0.166049,0.317351,0.283761,0.993869,0.410938,0.587721,0.527497,0.23124,0.393277,0.341385,0.70501,0.440297,0.858349,0.160978,0.876687,0.0729186,0.724052,0.276891,0.103675,0.315088,0.10199,0.825333,0.177819,0.6241,0.0666055,0.341159,0.954623,0.0758743,0.00450313,0.086071,0.50472,0.942098,0.497144,0.836037,0.0833254,0.231564,0.750603,0.633535,0.0633777,0.0792142,0.986351,0.983407,0.00331426,0.751494,0.991081,0.551514,0.776974,0.690637,0.968715,0.60439,0.673123,0.474724,0.386603,0.602131,0.509452,0.902647,0.973479,0.865485,0.0476111,0.682639,0.883595,0.36587,0.63125,0.485904,0.508299,0.440362,0.981057,0.716826,0.55537,0.769929,0.113218,0.232549,0.725085,0.0403256,0.694128,0.891116,0.413395,0.353613,0.308561,0.0670818,0.722415,0.459001,0.130545,0.17325,0.674943,0.816304,0.0315323,0.517816,0.597518,0.672088,0.356812,0.0115074,0.593989,0.635106,0.639834,0.785625,0.400273,0.193648,0.878336,0.498998,0.957551,0.185662,0.140008,0.800371,0.756171,0.811194,0.981597,0.683088,0.475143,0.0647123,0.617227,0.896803,0.823832,0.335785,0.347761,0.0579448,0.673698,0.963325,0.728019,0.0116041,0.326875,0.948372,0.532487,0.660055,0.232531,0.599122,0.531225,0.872819,0.860301,0.509298,0.729675,0.55945,0.844037,0.686682,0.677962,0.802857,0.20328,0.540644,0.997043,0.695867,0.953875,0.618357,0.39419,0.726506,0.0281414,0.743376,0.219359,0.0622334,0.117777,0.225649,0.0708545,0.0231467,0.012068,0.201056,0.530387,0.151546,0.170905,0.82592,0.0903817,0.966892,0.965539,0.540326,0.121224,0.482793,0.141948,0.609725,0.775007,0.776757,0.475305,0.671049,0.121054,0.959526,0.704657,0.642016,0.452135,0.751698,0.961376,0.142978,0.381119,0.899125,0.221603,0.226393,0.197413,0.545426,0.0602621,0.639398,0.0308594,0.38474,0.231307,0.594706,0.572637,0.492561,0.0229391,0.57483,0.633884,0.437401,0.977773,0.948626,0.577925,0.94158,0.327516,0.217065,0.972779,0.825409,0.670948,0.01135,0.55426,0.526377,0.366169,0.265101,0.535763,0.511622,0.487632,0.168224,0.188466,0.663048,0.802551,0.253427,0.863302,0.490936,0.540093,0.197681,0.698219,0.706824,0.196115,0.927114,0.336717,0.767957,0.76833,0.0846911,0.581949,0.594547,0.618853,0.195653,0.662872,0.71212,0.548586,0.940745,0.80214,0.0494661,0.836247,0.347976,0.132377,0.157895,0.988434,0.657539,0.214665,0.993616,0.735538,0.465613,0.880259,0.690511,0.213507,0.488353,0.267338,0.84521,0.0373788,0.314326,0.61717,0.38043,0.872567,0.529971,0.858943,0.903648,0.870128,0.218891,0.194877,0.544255,0.440007,0.337557,0.955362,0.961917,0.533278,0.188096,0.268836,0.41766,0.970466,0.523826,0.0184613,0.648661,0.0578655,0.229818,0.626826,0.632811,0.40552,0.29119,0.867811,0.676713,0.400285,0.0656784,0.97991,0.363283,0.461166,0.42386,0.924882,0.262237,0.213857,0.64867,0.208578,0.0184074,0.18741,0.638661,0.920072,0.405182,0.985014,0.1027,0.581924,0.883396,0.377459,0.465051,0.918916,0.522862,0.327506,0.387721,0.0681592,0.538769,0.517915,0.900784,0.134077,0.965949,0.235615,0.407825,0.180824,0.00792712,0.97375,0.629082,0.315232,0.460735,0.827905,0.772071,0.425786,0.038471,0.669239,0.277299,0.465346,0.00980848,0.636713,0.447857,0.606613,0.697072,0.913086,0.59146,0.436336,0.0289689,0.178046,0.134275,0.61019,0.206461,0.431139,0.166017,0.142299,0.592019,0.0053913,0.64482,0.869737,0.0298084,0.870634,0.270313,0.477534,0.136179,0.428177,0.0226484,0.65513,0.39048,0.46108,0.324649,0.655296,0.658462,0.419543,0.390941,0.757179,0.95298,0.467061,0.464813,0.104637,0.380735,0.531761,0.5772,0.821489,0.0772787,0.111138,0.973561,0.194959,0.906583,0.161624,0.782997,0.78246,0.889965,0.499156,0.698063,0.120262,0.168344,0.189961,0.537997,0.600641,0.662718,0.243093,0.764917,0.055039,0.464468,0.336965,0.36219,0.460206,0.838289,0.942588,0.459907,0.18651,0.0662701,0.584603,0.375601,0.756026,0.325694,0.749775,0.731571,0.346219,0.155002,0.504059,0.622173,0.357654,0.962958,0.0233612,0.570177,0.35996,0.711677,0.934433,0.754235,0.864532,0.334794,0.333005,0.95225,0.476614,0.400015,0.865728,0.27957,0.237756,0.284677,0.402562,0.675217,0.314882,0.885474,0.450493,0.64231,0.7574,0.481025,0.902656,0.135707,0.658562,0.13257,0.344727,0.18821,0.168106,0.468981,0.886638,0.989348,0.439191,|0.987268,0.284518,0.00864214,0.0740448,0.255244,0.952557,0.452312,0.0726322,0.67453,0.445944,0.493341,0.506883,0.981043,0.666744,0.554382,0.85361,0.157979,0.354509,0.92609,0.820537,0.223608,0.805034,0.497198,0.705366,0.401375,0.0126302,0.687072,0.220429,0.0200127,0.494375,0.106222,0.490699,0.667311,0.407556,0.114514,0.0371324,0.763694,0.301892,0.738038,0.356457,0.0971543,0.104011,0.158784,0.0595371,0.175447,0.787938,0.535896,0.495829,0.896928,0.746841,0.611661,0.435146,0.766771,0.9335,0.473967,0.935586,0.392184,0.692154,0.469092,0.994604,0.325744,0.552203,0.755082,0.842981,0.912997,0.711045,0.481173,0.737573,0.0780154,0.478231,0.453035,0.939111,0.523533,0.509351,0.108755,0.343103,0.749806,0.0871571,0.760673,0.119795,0.420989,0.739185,0.0771868,0.410768,0.220428,0.486243,0.829759,0.219227,0.213783,0.12561,0.129965,0.880856,0.388031,0.836518,0.140392,0.7453,0.965059,0.177846,0.233119,0.423001,0.445015,0.820031,0.96889,0.238357,0.0544872,0.688758,0.486012,0.409557,0.364313,0.366812,0.42796,0.107485,0.506135,0.419321,0.321608,0.418742,0.463116,0.168161,0.812827,0.957165,0.698251,0.300802,0.322311,0.483454,0.739421,0.792819,0.35924,0.646626,0.0899687,0.0789534,0.10571,0.352185,0.547607,0.514121,0.669975,0.33462,0.973405,0.477955,0.955102,0.496228,0.973525,0.289484,0.154281,0.230812,0.0785905,0.557268,0.0435846,0.985102,0.350695,0.115125,0.073944,0.260996,0.21815,0.17578,0.201004,0.0184836,0.389984,0.696075,0.09383,0.495962,0.832131,0.479375,0.944559,0.606906,0.0431577,0.989807,0.910584,0.387507,0.422467,0.606005,0.666415,0.0621855,0.893279,0.319901,0.226014,0.0295729,0.842339,0.479577,0.922802,0.301112,0.574865,0.10091,0.785742,0.798111,0.568912,0.840471,0.223411,0.498518,0.477711,0.0483166,0.267194,0.813858,0.967193,0.701241,0.300694,0.0768215,0.192842,0.601674,0.119625,0.343142,0.90772,0.885876,0.694826,0.53262,0.453119,0.828889,0.313266,0.325945,0.136461,0.892588,0.388939,0.222017,0.176635,0.917787,0.897271,0.254214,0.867444,0.90447,0.181028,0.755859,0.494445,0.352612,0.79392,0.544239,0.905808,0.0593413,0.783466,0.0163275,0.468478,0.121656,0.698734,0.472439,0.104024,0.231802,0.786764,0.998933,0.119106,0.96464,0.259061,0.716739,0.48875,0.347533,0.723565,0.883577,0.928729,0.0596318,0.697251,0.669711,0.822554,0.89587,0.710151,0.983275,0.357287,0.425189,0.0473284,0.914101,0.646301,0.219414,0.947318,0.45618,0.724674,0.513416,0.712311,0.789265,0.0363611,0.592899,0.974929,0.198103,0.596244,0.345282,0.683481,0.623255,0.744074,0.756435,0.0439933,0.317384,0.353969,0.346951,0.0340481,0.733656,0.473512,0.351915,0.628475,0.752074,0.309813,0.428289,0.00356817,0.726221,0.118544,0.631814,0.108988,0.74682,0.957179,0.53168,0.838047,0.256959,0.686959,0.895377,0.136499,0.642678,0.907196,0.866595,0.270616,0.313633,0.812274,0.403775,0.713247,0.936323,0.191833,0.538938,0.957282,0.195972,0.754158,0.0444852,0.848227,0.831993,0.923433,0.656895,0.00526112,0.493357,0.428831,0.0420061,0.200947,0.681353,0.186221,0.636446,0.988407,0.68539,0.614205,0.261841,0.296781,0.841843,0.73626,0.607291,0.504023,0.224633,0.987499,0.306448,0.961165,0.45361,0.469756,0.885866,0.502951,0.526586,0.88522,0.781804,0.781487,0.749515,0.603775,0.184707,0.694035,0.190541,0.246188,0.336443,0.257922,0.442737,0.601554,0.442445,0.787969,0.448449,0.790389,0.0996397,0.402378,0.0519506,0.267013,0.0630856,0.0992827,0.55686,0.995753,0.984944,0.11786,0.896408,0.46967,0.78411,0.0533108,0.553231,0.876533,0.483844,0.573052,0.563419,0.173146,0.463888,0.327741,0.765923,0.0574046,0.674638,0.820679,0.184496,0.0854151,0.109165,0.930175,0.781415,0.219431,0.884692,0.735932,0.424327,0.359796,0.68436,0.430791,0.178785,0.746265,0.418716,0.177197,0.661099,0.72115,0.490251,0.651594,0.470138,0.909652,0.921317,0.148814,0.738674,0.2264,0.258357,0.242962,0.847325,0.567396,0.217266,0.347032,0.0332546,0.167927,0.525691,0.258539,0.507528,0.623415,0.60879,0.27436,0.0564077,0.774144,0.906956,0.655111,0.986401,0.471329,0.291015,0.776139,0.341432,0.0829462,0.210972,0.552026,0.617685,0.849981,0.480473,0.353611,0.464464,0.697383,0.238759,0.959299,0.847973,0.44022,0.071663,0.487939,0.879127,0.214397,0.203453,0.978649,0.988772,0.586627,0.207302,0.576515,0.351528,0.383158,0.338468,0.219902,0.747127,0.033505,0.0884781,0.533866,0.328126,0.670158,0.447951,0.320975,0.465135,0.1061,0.768562,0.6099,0.657969,0.323946,0.160304,0.738278,0.416429,0.640087,0.912602,0.160905,0.28499,0.118398,0.0830921,0.078723,0.00189853,0.379066,0.00133216,0.896494,0.155909,0.63282,0.238846,0.172389,0.922794,0.797669,0.29979,0.87225,0.9977,0.190402,0.039793,0.73336,0.276093,0.723189,0.190489,0.621217,0.491576,0.264368,0.228872,0.888786,0.134458,0.134316,0.981365,0.924269,0.882241,0.454311,0.993718,0.349677,0.842461,0.696575,0.589652,0.886635,0.508763,0.732213,0.33067,0.455579,0.835812,0.518937,0.623487,0.815928,0.75192,0.374896,0.576422,0.648813,0.0452964,0.113854,0.331541,0.494326,0.33137,0.0625793,0.720235,0.251444,0.73912,0.666554,0.557162,0.337789,0.4488,0.182669,0.733567,0.81981,0.790819,0.678816,0.323467,0.836571,0.717537,0.998737,0.913755,0.807411,0.136658,0.621879,0.325642,0.100369,0.426047,0.646627,0.925365,0.806775,0.340065,0.395891,0.127288,0.953063,0.759452,0.00541496,0.520047,0.527277,0.602536,0.000801265,0.088796,0.545428,0.723893,0.677297,0.735701,0.380996,0.456818,0.429884,0.71215,0.486033,0.901353,0.787031,0.50783,0.295501,0.0520033,0.539935,0.677135,0.287441,0.703544,0.666543,0.195366,0.70045,0.5774,0.920953,0.781241,0.45262,0.223497,0.687054,0.475101,0.347733,0.468504,0.0822675,0.0622177,0.229369,0.353361,0.742299,0.637075,0.0448933,0.847088,0.945146,0.732482,0.71372,0.879979,0.288497,0.0235669,0.476923,0.178123,0.92385,0.0109355,0.640711,0.0973881,0.551674,0.485628,0.936657,0.242426,0.664555,0.366021,0.269406,0.0833043,0.109135,0.175395,0.184704,0.36832,0.0265727,0.496919,0.00338697,0.449361,0.865612,0.164772,0.0600516,0.714667,0.898852,0.759908,0.829027,0.0223861,0.595952,0.40223,0.430914,0.565351,0.604733,0.886368,0.644555,0.369302,0.638327,0.640014,0.231038,0.514082,0.519046,0.199954,0.239875,0.503286,0.0650353,0.413031,0.175568,0.241938,0.423576,0.701992,0.568817,0.468495,0.205518,0.992601,0.679631,0.977381,0.69677,0.996548,0.220796,0.363645,0.125105,0.455966,0.618819,0.351598,0.0220775,0.434007,0.600621,0.163794,0.136741,0.772817,0.348485,0.175799,0.824724,0.747202,0.103966,0.299846,0.646217,0.334437,0.246546,0.641788,0.224813,0.888749,0.178053,0.87782,0.758523,0.908409,0.533527,0.787344,0.965061,0.259988,0.956812,0.164038,0.978403,0.666063,0.93769,0.933622,0.873238,0.14918,0.402483,0.993475,0.771666,0.790359,0.101019,0.285876,0.445413,0.966956,0.200883,0.913665,0.713145,0.647511,0.7203,0.903027,0.857111,0.327812,0.145476,0.89988,0.697033,0.76233,0.957886,0.841939,0.8333,0.206398,0.946074,0.406726,0.969495,0.878646,0.517132,0.556985,0.615736,0.418885,0.893566,0.585227,0.164714,0.289355,0.490944,0.413818,0.87993,0.596817,0.345514,0.915211,0.40489,0.677856,0.740489,0.0766702,0.369948,0.825552,0.131944,0.256366,0.644855,0.324638,0.651474,0.488998,0.878112,0.10443,0.12769,0.502782,0.978255,0.893041,0.510657,0.435863,0.307802,0.47716,0.0710949,0.721218,0.0104784,0.356165,0.171431,0.781903,0.828264,0.650397,0.100917,0.699016,0.642911,0.656992,0.832334,0.137625,0.379598,0.569027,0.903984,0.3001,0.102249,0.265203,0.00682431,0.326798,0.978786,0.84242,0.621139,0.635193,0.512647,0.580156,0.0757024,0.111043,0.681031,0.328386,0.676463,0.920164,0.397545,0.488007,0.75694,0.613952,0.672378,0.0310491,0.565409,0.3801,0.522891,0.784655,0.130528,0.442275,0.619841,0.493629,0.33284,0.38671,0.669337,0.978051,0.571032,0.175733,0.0897338,0.740045,0.271144,0.696392,0.74859,0.832765,0.0449184,0.319453,0.218404,0.112133,0.160896,0.837888,0.290636,0.363747,0.322178,0.932439,0.133195,0.286479,0.467299,0.648786,0.0628571,0.209038,0.747674,0.625305,0.75869,0.684138,0.317903,0.844897,0.985787,0.870043,0.745719,0.439103,0.827225,0.580478,0.819304,0.242929,0.0856948,0.576786,0.650823,0.557313,0.181872,0.000175536,0.958361,0.175014,0.0866412,0.510215,0.151281,0.952966,0.953818,0.11238,0.0332711,0.767062,0.465291,0.788516,0.618095,0.0286576,0.204132,0.294058,0.159401,0.201031,0.515855,0.756703,0.622767,0.821561,0.51408,0.828827,0.262806,0.0868956,0.999359,0.962471,0.162094,0.233247,0.282198,0.0261301,0.774141,0.730628,0.231469,0.878839,0.324182,0.915707,0.375988,0.278376,0.61379,0.709485,0.147147,0.511222,0.995168,0.468426,0.916336,0.175339,0.894824,0.601708,0.471976,0.675089,0.129564,0.97872,0.176839,0.931376,0.0780292,0.969807,0.116123,0.526694,0.599754,0.118643,0.645779,0.175856,0.803025,0.131453,0.500757,0.339177,0.183988,0.691512,0.557189,0.813962,0.166447,0.0221595,0.0525728,0.177633,0.5106,0.615658,0.819323,0.0167595,0.659112,0.719223,0.842264,0.992103,0.81314,0.483394,0.479362,0.768143,0.21972,0.00333434,0.277637,0.37723,0.925938,0.27254,0.305104,0.186694,0.761665,0.391581,0.458496,0.424866,0.246024,0.0609801,0.888622,0.0547091,0.638595,0.60842,0.456635,0.915786,0.283794,0.173393,0.427672,0.69241,0.780937,0.879598,0.0818291,0.0973743,0.104939,0.384557,|0.17752,0.421873,0.10801,0.437403,0.56156,0.695083,0.286518,0.537168,0.908925,0.000980079,0.0423128,0.351494,0.297309,0.572181,0.951712,0.654916,0.741054,0.574,0.317,0.916271,0.365623,0.359031,0.667619,0.126876,0.416743,0.0563929,0.0274014,0.110503,0.978898,0.00596058,0.855856,0.978354,0.61477,0.371554,0.0358502,0.903538,0.539026,0.802458,0.427793,0.480072,0.135987,0.3246,0.874202,0.0204278,0.401067,0.569198,0.574153,0.145505,0.252668,0.995889,0.822419,0.816992,0.65321,0.00796962,0.265103,0.30069,0.657375,0.352857,0.867442,0.722569,0.0497897,0.987635,0.255788,0.419003,0.972913,0.291816,0.125493,0.974027,0.211384,0.725932,0.803133,0.490645,0.306184,0.682429,0.223083,0.95318,0.412844,0.0856015,0.14661,0.997752,0.453977,0.229001,0.590179,0.00813919,0.892212,0.693236,0.644362,0.308449,0.00510645,0.0946671,0.277453,0.0481884,0.536874,0.442581,0.170576,0.881296,0.556965,0.963438,0.482946,0.640521,0.75893,0.145553,0.665031,0.357604,0.3216,0.453574,0.0580013,0.31974,0.781412,0.206217,0.093191,0.392923,0.40909,0.391353,0.129409,0.944016,0.973122,0.552715,0.317853,0.714935,0.829631,0.324727,0.0381984,0.114974,0.657889,0.46596,0.758205,0.155678,0.721596,0.773805,0.797836,0.673583,0.179671,0.917809,0.0950302,0.715976,0.925219,0.0955111,0.0303064,0.923953,0.583392,0.320491,0.351121,0.48474,0.794326,0.244561,0.924919,0.986154,0.104122,0.812313,0.67314,0.75006,0.563717,0.525071,0.970951,0.528718,0.12314,0.0639809,0.923282,0.446865,0.0260766,0.414962,0.068336,0.618835,0.695247,0.0811207,0.473981,0.915961,0.0266768,0.337837,0.0456648,0.12133,0.659163,0.598431,0.551229,0.665115,0.416843,0.0181575,0.642571,0.223355,0.636039,0.104145,0.0704863,0.048027,0.445417,0.713822,0.506862,0.559739,0.26941,0.720905,0.198823,0.073111,0.80545,0.162209,0.132687,0.295865,0.396608,0.437921,0.138415,0.469013,0.0871036,0.87963,0.508546,0.453858,0.927127,0.644928,0.193165,0.833676,0.796257,0.389058,0.399,0.941047,0.238672,0.338222,0.0742305,0.783093,0.602886,0.164126,0.863088,0.433665,0.217913,0.224887,0.584142,0.814495,0.156609,0.509966,0.187441,0.551551,0.876868,0.695969,0.512468,0.0624923,0.95116,0.757428,0.251622,0.517442,0.619904,0.342012,0.726622,0.825237,0.14101,0.93162,0.975482,0.439236,0.0909176,0.0206583,0.504857,0.0458741,0.444792,0.670605,0.534157,0.607441,0.162346,0.548539,0.567339,0.730338,0.389313,0.306431,0.710783,0.367615,0.464183,0.951604,0.224695,0.119221,0.392353,0.788659,0.426411,0.657432,0.416619,0.710421,0.928141,0.281094,0.0535535,0.65037,0.671604,0.863104,0.182006,0.429365,0.231852,0.311423,0.466829,0.295534,0.24327,0.738561,0.047374,0.643747,0.552785,0.53616,0.579394,0.196889,0.0644491,0.0557454,0.287573,0.824076,0.247847,0.250797,0.640162,0.15867,0.221939,0.258123,0.891404,0.279055,0.879223,0.143349,0.306698,0.232904,0.98834,0.578654,0.343093,0.317639,0.506564,0.769225,0.946817,0.917281,0.0946501,0.0165589,0.757761,0.91467,0.850224,0.20608,0.276323,0.688316,0.928466,0.833537,0.892934,0.598692,0.621549,0.0625897,0.916659,0.768508,0.732492,0.550462,0.639698,0.160572,0.432831,0.020325,0.095235,0.971717,0.633634,0.81033,0.925673,0.936843,0.527034,0.610162,0.270425,0.751857,0.398011,0.142363,0.774061,0.955712,0.628545,0.0595057,0.434182,0.498911,0.916756,0.822901,0.224282,0.857149,0.757049,0.715065,0.39157,0.505964,0.731997,0.90223,0.648349,0.342293,0.17926,0.770029,0.833002,0.413347,0.699992,0.473737,0.82316,0.858662,0.871921,0.243832,0.632492,0.104141,0.527803,0.875441,0.533514,0.167883,0.46127,0.828814,0.526176,0.122169,0.427485,0.542757,0.900497,0.609697,0.691427,0.425757,0.558974,0.517677,0.163841,0.426202,0.955308,0.0275643,0.0225341,0.447229,0.600433,0.324318,0.167799,0.936057,0.56671,0.236403,0.1647,0.379709,0.0211138,0.559037,0.0546416,0.860023,0.904721,0.764236,0.426024,0.724746,0.78384,0.159685,0.0636905,0.626888,0.0120667,0.574057,0.0700111,0.879455,0.0656298,0.417784,0.178056,0.130913,0.0140554,0.834085,0.373393,0.733947,0.331602,0.489343,0.494343,0.053014,0.784199,0.350773,0.737256,0.73563,0.790749,0.0188673,0.421216,0.415976,0.931828,0.640833,0.492644,0.528489,0.824006,0.125998,0.879499,0.892094,0.651436,0.894983,0.864257,0.483534,0.935838,0.634378,0.286869,0.00943005,0.552638,0.462841,0.849284,0.431539,0.499066,0.89265,0.930979,0.364023,0.690267,0.507333,0.655879,0.323988,0.374864,0.0947215,0.338148,0.519578,0.0453339,0.74007,0.533214,0.973989,0.766627,0.281725,0.873697,0.441297,0.820298,0.957027,0.533823,0.185927,0.252005,0.29147,0.56872,0.879351,0.248014,0.487723,0.286921,0.674433,0.889889,0.860707,0.963358,0.653287,0.448695,0.752235,0.711926,0.11482,0.311812,0.84246,0.467894,0.0881134,0.0582761,0.979825,0.829506,0.929837,0.4965,0.934764,0.315203,0.361135,0.090452,0.344604,0.229171,0.00951475,0.308473,0.0247619,0.803709,0.717724,0.378929,0.300222,0.701126,0.0813738,0.0637301,0.918628,0.0271605,0.964895,0.881604,0.857865,0.511629,0.386878,0.132607,0.237381,0.958322,0.836195,0.026803,0.949163,0.922834,0.723614,0.953443,0.518039,0.420493,0.13324,0.88332,0.120069,0.0646598,0.855114,0.55686,0.317237,0.855274,0.593542,0.730563,0.659998,0.764677,0.927466,0.895292,0.101058,0.993033,0.258411,0.0574396,0.498055,0.519524,0.397228,0.378651,0.403271,0.491256,0.101782,0.322218,0.790979,0.641534,0.933092,0.704927,0.0575156,0.806871,0.67485,0.462295,0.418798,0.217685,0.543037,0.297113,0.547077,0.765268,0.455992,0.532399,0.180174,0.10087,0.501029,0.119913,0.584184,0.589211,0.788506,0.648902,0.909634,0.998715,0.674477,0.403038,0.351814,0.616902,0.871842,0.558429,0.192959,0.53577,0.45877,0.530566,0.827487,0.103386,0.795131,0.585105,0.683582,0.0930497,0.573653,0.408724,0.35564,0.433128,0.104316,0.62777,0.796905,0.86635,0.512612,0.437594,0.0262145,0.808448,0.639807,0.209802,0.461672,0.0572878,0.138731,0.997947,0.55653,0.522133,0.936604,0.344257,0.619535,0.697691,0.840298,0.260085,0.835198,0.309143,0.855383,0.787848,0.116401,0.782673,0.261952,0.830395,0.128099,0.170056,0.0354211,0.790787,0.694896,0.874661,0.529296,0.361961,0.866759,0.302046,0.314346,0.771393,0.287134,0.223228,0.0243026,0.478033,0.829439,0.39756,0.930438,0.468678,0.359826,0.0805775,0.100235,0.179206,0.811101,0.122692,0.344394,0.297614,0.80321,0.701182,0.167652,0.197858,0.246375,0.449879,0.370708,0.04844,0.544916,0.87439,0.918719,0.25759,0.587424,0.22488,0.432677,0.162977,0.57596,0.978261,0.594815,0.165927,0.25787,0.722587,0.460593,0.531088,0.348056,0.272678,0.736643,0.890308,0.101047,0.669124,0.0196947,0.203309,0.140679,0.695822,0.445466,0.299965,0.452518,0.60766,0.990585,0.770345,0.995754,0.165936,0.865087,0.637328,0.26359,0.0359833,0.347564,0.364389,0.637939,0.141095,0.577383,0.045046,0.466019,0.525468,0.989972,0.267475,0.921307,0.359074,0.0969462,0.515541,0.420598,0.867451,0.35745,0.173105,0.622934,0.250743,0.532759,0.763448,0.990052,0.342363,0.861975,0.998136,0.812372,0.227106,0.937361,0.53041,0.713973,0.707609,0.787194,0.595168,0.66633,0.0612299,0.578348,0.632347,0.0745655,0.12206,0.913449,0.405585,0.73816,0.599253,0.314952,0.358025,0.99641,0.120364,0.550053,0.00843173,0.757449,0.0927833,0.0501063,0.790708,0.300493,0.729496,0.585844,0.524376,0.961003,0.082873,0.274197,0.540294,0.066484,0.609916,0.506743,0.0700986,0.679544,0.15216,0.310221,0.872832,0.354491,0.0160757,0.172197,0.353431,0.482847,0.391425,0.364819,0.27268,0.811997,0.860649,0.47204,0.35048,0.574568,0.524902,0.227902,0.117148,0.037888,0.862554,0.90699,0.0211911,0.393069,0.41538,0.594395,0.724959,0.477214,0.639785,0.984402,0.40027,0.244298,0.790127,0.930728,0.735377,0.399895,0.81014,0.756896,0.923139,0.53095,0.349243,0.288308,0.703646,0.386127,0.694799,0.916075,0.785019,0.837789,0.555545,0.531704,0.0845019,0.572849,0.538353,0.416638,0.515174,0.677983,0.424433,0.541126,0.233313,0.261619,0.96553,0.436285,0.0918949,0.740332,0.111348,0.156077,0.726783,0.350648,0.0179922,0.0771381,0.176228,0.785923,0.032505,0.195636,0.939964,0.276901,0.340159,0.716709,0.242685,0.458801,0.246179,0.13098,0.406985,0.355774,0.38575,0.988058,0.570031,0.505487,0.997633,0.696483,0.647784,0.423819,0.531464,0.0931751,0.181247,0.210735,0.662887,0.435449,0.00879592,0.259243,0.99326,0.0633746,0.920339,0.948944,0.162052,0.100419,0.848114,0.14487,0.227482,0.211188,0.949793,0.936537,0.874356,0.574294,0.355534,0.299554,0.173765,0.365477,0.2849,0.817266,0.887762,0.0657415,0.507092,0.283157,0.901996,0.594208,0.257556,0.921976,0.985275,0.423019,0.853918,0.0956602,0.757796,0.431185,0.127661,0.349402,0.0606745,0.793692,0.474603,0.44004,0.201145,0.0551113,0.33037,0.47499,0.048362,0.261592,0.768415,0.46827,0.0902223,0.0412628,0.571874,0.801753,0.658161,0.634451,0.400673,0.306217,0.640559,0.908171,0.00627387,0.846592,0.143604,0.651634,0.486183,0.545835,0.398798,0.335974,0.0653431,0.0413872,0.347099,0.156688,0.105615,0.20275,0.0281593,0.870554,0.419371,0.505304,0.069128,0.617455,0.669056,0.410515,0.840614,0.809581,0.483157,0.68913,0.581452,0.756715,0.143231,0.260775,0.79762,0.849899,0.0581566,0.0335139,0.829726,0.687291,0.687832,0.931908,0.600444,0.748917,0.874002,0.333229,0.765529,0.671802,0.0277454,0.338461,0.824909,0.304594,0.594069,0.276975,0.389493,0.105822,|0.587099,0.418174,0.436166,0.752524,0.0485412,0.343863,0.0268185,0.243878,0.13556,0.308501,0.648935,0.0935073,0.171447,0.585036,0.16343,0.943235,0.266321,0.590099,0.892242,0.895304,0.709377,0.637758,0.924416,0.893219,0.701863,0.126055,0.66974,0.362011,0.723134,0.745293,0.491571,0.87817,0.964711,0.91091,0.343797,0.0137953,0.31062,0.952905,0.968557,0.481644,0.809076,0.170534,0.96893,0.776293,0.334503,0.617169,0.0612644,0.825539,0.427885,0.807241,0.944999,0.384358,0.547104,0.759708,0.164847,0.0400855,0.782538,0.955029,0.856743,0.938477,0.84614,0.253201,0.717431,0.351212,0.64571,0.389252,0.674785,0.750749,0.542682,0.0116729,0.948966,0.705658,0.000162244,0.62056,0.0492251,0.568724,0.466591,0.723131,0.863883,0.425432,0.93174,0.283981,0.336178,0.500308,0.159631,0.349946,0.647655,0.623674,0.161052,0.110695,0.135347,0.949799,0.757757,0.771578,0.0193488,0.408375,0.553071,0.218563,0.117322,0.856813,0.890226,0.69558,0.735437,0.192052,0.536225,0.278453,0.192384,0.0945318,0.416422,0.229773,0.822296,0.0784643,0.207992,0.615649,0.904669,0.107163,0.778278,0.693641,0.30473,0.813376,0.0613546,0.329218,0.855524,0.0852679,0.636336,0.54294,0.536113,0.428514,0.386623,0.659414,0.504163,0.156394,0.475411,0.937099,0.322463,0.0659301,0.928318,0.738091,0.974156,0.840785,0.0997432,0.457103,0.467609,0.853925,0.564567,0.214326,0.534587,0.303602,0.522613,0.166614,0.425401,0.365004,0.0607488,0.235152,0.0718002,0.564193,0.173873,0.350025,0.809897,0.130335,0.00948876,0.735922,0.861771,0.648221,0.493266,0.918716,0.367242,0.731664,0.58004,0.940008,0.110506,0.591283,0.645271,0.0458257,0.240062,0.0915851,0.497892,0.139068,0.453656,0.162794,0.200542,0.369615,0.5975,0.710512,0.142887,0.633296,0.322623,0.683953,0.749694,0.492235,0.153233,0.605603,0.334293,0.629062,0.279677,0.63149,0.71905,0.396026,0.641703,0.881226,0.363124,0.723798,0.218367,0.717197,0.710764,0.129084,0.223806,0.405337,0.613611,0.365031,0.864491,0.5335,0.47587,0.0301355,0.172345,0.700833,0.553171,0.774348,0.338202,0.760218,0.799528,0.968074,0.525136,0.467344,0.657762,0.80775,0.459575,0.246796,0.779589,0.360039,0.280944,0.227114,0.418929,0.841192,0.133979,0.470475,0.310571,0.758727,0.0524768,0.445314,0.33069,0.878958,0.774295,0.412772,0.612702,0.864228,0.74406,0.673054,0.846,0.189542,0.877208,0.59655,0.359555,0.0827198,0.775774,0.688574,0.00413144,0.741121,0.803936,0.921564,0.290775,0.0895396,0.662342,0.652059,0.530671,0.860438,0.135748,0.274645,0.524674,0.122778,0.348467,0.76494,0.63305,0.787625,0.0547596,0.654413,0.282652,0.0712062,0.29129,0.870544,0.151998,0.567115,0.252674,0.131763,0.695131,0.0560896,0.11091,0.618267,0.54432,0.30346,0.377651,0.401106,0.189126,0.205842,0.0731858,0.330249,0.182212,0.149025,0.300678,0.436647,0.372037,0.879971,0.913728,0.470059,0.075142,0.965168,0.32858,0.574327,0.355116,0.0945567,0.0345208,0.479383,0.623683,0.872468,0.949535,0.309784,0.730329,0.231529,0.748112,0.551569,0.549108,0.693422,0.000771523,0.782203,0.769701,0.33589,0.205528,0.327199,0.24775,0.108111,0.834712,0.790114,0.989685,0.659135,0.39284,0.375326,0.258407,0.877229,0.255332,0.323501,0.443286,0.702682,0.500163,0.434058,0.0513976,0.977689,0.272663,0.237392,0.991791,0.0871468,0.778445,0.540246,0.550593,0.662231,0.972234,0.595272,0.0456752,0.601749,0.650749,0.592337,0.545066,0.688588,0.186368,0.737601,0.386475,0.40196,0.725408,0.441645,0.161289,0.702027,0.639211,0.832986,0.176496,0.299101,0.527821,0.193735,0.576938,0.395772,0.0353182,0.730016,0.328521,0.937603,0.415343,0.715782,0.564584,0.663657,0.943762,0.498788,0.805958,0.0948672,0.157218,0.296559,0.619494,0.845027,0.280633,0.775389,0.71191,0.805643,0.443616,0.621577,0.392426,0.494131,0.251087,0.569228,0.332433,0.958731,0.560683,0.143486,0.699191,0.0253348,0.643525,0.626951,0.867103,0.646325,0.799828,0.885484,0.465243,0.0189153,0.72078,0.355885,0.133191,0.571061,0.62011,0.756042,0.902407,0.981152,0.912456,0.177841,0.217338,0.168398,0.989986,0.0511584,0.973988,0.917573,0.48701,0.581223,0.554765,0.29573,0.097869,0.414288,0.703378,0.970606,0.831217,0.880892,0.632992,0.254321,0.43056,0.275276,0.885139,0.147236,0.409805,0.0733091,0.230242,0.189792,0.589096,0.142895,0.958552,0.12341,0.360283,0.772629,0.650125,0.819296,0.39782,0.821077,0.896914,0.742603,0.227806,0.21317,0.7265,0.534922,0.979025,0.53016,0.275888,0.473745,0.386364,0.543407,0.00738043,0.987324,0.674465,0.0941818,0.491327,0.429019,0.87638,0.972019,0.128432,0.637396,0.240124,0.171634,0.0949101,0.771195,0.14803,0.0936453,0.523822,0.803399,0.602447,0.794731,0.988091,0.942344,0.84045,0.659444,0.299372,0.32257,0.150548,0.0678904,0.592026,0.0829682,0.946702,0.88764,0.97643,0.751489,0.687769,0.383508,0.114883,0.367813,0.273185,0.375192,0.474896,0.832455,0.730722,0.375066,0.693699,0.491637,0.557565,0.885466,0.827691,0.421399,0.372454,0.753394,0.943837,0.49292,0.38305,0.208126,0.788198,0.232901,0.384469,0.112952,0.278573,0.883671,0.179566,0.708582,0.260111,0.945786,0.0271825,0.885283,0.0900245,0.0506512,0.232613,0.27514,0.62222,0.102807,0.0347437,0.0722305,0.301719,0.224727,0.476759,0.945277,0.48691,0.964735,0.0538132,0.31079,0.65751,0.679932,0.38985,0.821323,0.44446,0.913013,0.0625579,0.584087,0.806043,0.266951,0.808685,0.361365,0.665241,0.0878508,0.672668,0.437071,0.841475,0.598268,0.473299,0.160818,0.851014,0.287708,0.601587,0.740103,0.281489,0.356034,0.660562,0.287693,0.435998,0.261452,0.600763,0.708851,0.0485685,0.752875,0.434881,0.287593,0.0355245,0.333428,0.29432,0.256984,0.466757,0.326215,0.96246,0.15272,0.420079,0.96975,0.127533,0.905691,0.81582,0.831266,0.0710728,0.863349,0.846437,0.178399,0.59985,0.491418,0.773445,0.785737,0.241217,0.968339,0.844904,0.127787,0.213976,0.365997,0.108986,0.713597,0.469645,0.611913,0.782962,0.299206,0.250084,0.07739,0.575527,0.0818908,0.598636,0.0731034,0.625459,0.761678,0.476553,0.306687,0.996765,0.588504,0.479555,0.698462,0.375414,0.199548,0.289053,0.2838,0.797212,0.1444,0.98596,0.295158,0.501506,0.901767,0.904439,0.457756,0.262846,0.624392,0.33608,0.53179,0.493864,0.0482608,0.456152,0.91957,0.777888,0.985902,0.225956,0.572427,0.743825,0.805961,0.0458967,0.931679,0.230601,0.974369,0.29486,0.15232,0.00943869,0.285686,0.430817,0.35798,0.14541,0.219531,0.458924,0.185577,0.222834,0.983907,0.342213,0.763148,0.0532661,0.914537,0.326955,0.818799,0.223651,0.390817,0.0831076,0.588605,0.361819,0.250026,0.202567,0.923119,0.573312,0.60087,0.323702,0.144659,0.441961,0.239843,0.379061,0.545493,0.481287,0.132515,0.738264,0.59004,0.428237,0.464245,0.876184,0.534336,0.346304,0.973835,0.215757,0.399837,0.00125396,0.397479,0.0100387,0.0201474,0.789913,0.279301,0.103218,0.626567,0.497147,0.306457,0.417308,0.0643817,0.343123,0.112293,0.496863,0.213153,0.770977,0.253427,0.4558,0.277566,0.717961,0.931647,0.56723,0.991505,0.642624,0.255971,0.548811,0.539781,0.230784,0.833144,0.527336,0.145392,0.17845,0.723609,0.487671,0.722985,0.688933,0.734786,0.745133,0.214584,0.126581,0.076703,0.723945,0.196549,0.957904,0.62283,0.94361,0.348272,0.697132,0.62803,0.422176,0.594519,0.855001,0.667365,0.78428,0.612934,0.146557,0.744614,0.132655,0.0689489,0.680204,0.321228,0.0587573,0.584577,0.142208,0.193478,0.963608,0.222457,0.240344,0.922354,0.356175,0.828324,0.879167,0.988941,0.435548,0.601364,0.0309924,0.103087,0.0961831,0.688467,0.552385,0.658203,0.044498,0.001508,0.692527,0.627251,0.181345,0.625366,0.459741,0.24059,0.349116,0.351261,0.40898,0.883785,0.577403,0.0194012,0.723811,0.154452,0.945131,0.216421,0.715638,0.403972,0.544964,0.452726,0.534533,0.409604,0.20948,0.620148,0.683174,0.10017,0.203772,0.925827,0.855981,0.00613976,0.823022,0.252569,0.318034,0.941712,0.455706,0.283437,0.326287,0.263529,0.948615,0.834155,0.719654,0.986135,0.345969,0.108733,0.911574,0.951282,0.23761,0.30479,0.739034,0.446356,0.327471,0.421463,0.476928,0.504326,0.158651,0.641995,0.552001,0.535215,0.181844,0.201856,0.392611,0.916514,0.306499,0.871079,0.775108,0.617275,0.421135,0.416582,0.864002,0.356888,0.173955,0.0304111,0.0619565,0.334244,0.828832,0.385234,0.867475,0.541432,0.577964,0.308638,0.10832,0.578103,0.97397,0.0982595,0.986474,0.739274,0.725337,0.238925,0.390774,0.508217,0.279324,0.36728,0.974399,0.857957,0.588866,0.94398,0.860016,0.454956,0.437613,0.53213,0.15554,0.2159,0.640839,0.99304,0.571449,0.641073,0.044741,0.462015,0.192687,0.807509,0.776654,0.127838,0.107149,0.445888,0.491301,0.746531,0.232354,0.345359,0.0964521,0.472873,0.849257,0.729752,0.699876,0.344761,0.258825,0.328057,0.919106,0.625703,0.754492,0.269598,0.246812,0.347575,0.369865,0.755934,0.181808,0.0125547,0.451636,0.805335,0.28964,0.662427,0.295798,0.35804,0.963771,0.565358,0.533233,0.176654,0.328005,0.346419,0.486492,0.0481055,0.678429,0.829585,0.893932,0.184658,0.589654,0.997154,0.0261527,0.469105,0.274508,0.180638,0.758454,0.957388,0.706321,0.305312,0.357751,0.195866,0.973708,0.755634,0.293391,0.676136,0.662872,0.625773,0.0901827,0.0805187,0.15708,0.512506,0.321011,0.513947,0.602878,0.826158,0.554933,0.865946,0.733691,0.104801,0.996357,0.582507,0.87626,0.0621553,0.838052,0.428566,0.518893,0.590475,0.698534,0.188748,0.134323,0.903306,|0.8436,0.559384,0.669844,0.854166,0.661855,0.943493,0.760138,0.77728,0.43146,0.616595,0.730284,0.928023,0.523964,0.753641,0.901878,0.280423,0.636109,0.163631,0.808137,0.513305,0.65953,0.176622,0.742196,0.980866,0.472978,0.758158,0.428501,0.325558,0.659884,0.286307,0.478286,0.860114,0.41679,0.12722,0.961407,0.899731,0.0349521,0.952381,0.801854,0.495027,0.748345,0.632655,0.602367,0.633005,0.17608,0.754885,0.584734,0.491185,0.239943,0.69317,0.787895,0.577794,0.385484,0.65534,0.534977,0.85423,0.578254,0.988503,0.837663,0.445862,0.664409,0.104061,0.726267,0.809005,0.932922,0.820656,0.954096,0.514756,0.689274,0.471171,0.744931,0.426439,0.955855,0.176185,0.239943,0.790821,0.0764576,0.0370923,0.935918,0.366815,0.243632,0.649014,0.305215,0.540514,0.104739,0.520608,0.649825,0.171497,0.20759,0.037227,0.85643,0.210204,0.289915,0.591395,0.860186,0.858051,0.990478,0.0356327,0.381506,0.0973725,0.41482,0.93407,0.0804066,0.278443,0.268315,0.900154,0.430552,0.923806,0.198686,0.399368,0.794174,0.487327,0.278669,0.275778,0.565261,0.167544,0.409048,0.0142131,0.627882,0.419152,0.266565,0.800073,0.0106423,0.110067,0.748497,0.734353,0.584853,0.632004,0.796553,0.780371,0.973654,0.573939,0.274373,0.548948,0.612772,0.172645,0.0302633,0.567418,0.336671,0.660962,0.837498,0.272826,0.218987,0.917746,0.405544,0.677663,0.131835,0.335602,0.121976,0.292563,0.741508,0.862329,0.0148122,0.0175684,0.675766,0.553145,0.141925,0.480164,0.0964389,0.453549,0.959473,0.146274,0.40397,0.288854,0.0637055,0.0533279,0.123728,0.440933,0.638844,0.613456,0.752098,0.800119,0.317748,0.0868375,0.957341,0.502537,0.66743,0.816711,0.170339,0.78741,0.763861,0.239454,0.321874,0.154867,0.590132,0.122737,0.231862,0.929,0.662204,0.179974,0.793948,0.00594062,0.576666,0.828839,0.158022,0.426959,0.0021928,0.289402,0.491003,0.18406,0.112774,0.753264,0.566918,0.0184835,0.568624,0.0540448,0.901059,0.113907,0.387839,0.0659137,0.161232,0.954751,0.841261,0.7658,0.77893,0.763494,0.382729,0.0373722,0.216197,0.161059,0.0865225,0.181565,0.18022,0.338346,0.687856,0.320263,0.604393,0.648693,0.354305,0.212555,0.331215,0.272153,0.469655,0.127366,0.804462,0.148556,0.589275,0.194163,0.907737,0.369887,0.97825,0.806469,0.444844,0.151183,0.380916,0.418566,0.498992,0.387215,0.875256,0.0885545,0.300353,0.384243,0.157033,0.605289,0.00844729,0.479879,0.467916,0.486421,0.190805,0.153509,0.0727634,0.521399,0.391495,0.20276,0.860788,0.180608,0.010053,0.578446,0.659967,0.606649,0.683124,0.507939,0.869089,0.0515911,0.67747,0.225072,0.698049,0.207326,0.543712,0.263874,0.0679689,0.376366,0.560893,0.123503,0.363919,0.669871,0.682475,0.622035,0.0355476,0.203153,0.827552,0.0342838,0.398983,0.0426619,0.523896,0.832568,0.4845,0.168105,0.435159,0.756314,0.0650799,0.137254,0.769639,0.154842,0.754817,0.188454,0.0914187,0.979123,0.580875,0.230852,0.318476,0.352293,0.778006,0.753101,0.490485,0.497657,0.0635883,0.173905,0.202017,0.321609,0.746695,0.492614,0.382214,0.411759,0.0644103,0.79707,0.143536,0.367515,0.581852,0.954279,0.673782,0.515854,0.351713,0.584586,0.0809259,0.23335,0.432276,0.274914,0.649153,0.364371,0.515258,0.584852,0.840489,0.882811,0.535951,0.985652,0.403052,0.139074,0.287533,0.526437,0.205109,0.768932,0.73835,0.770621,0.677706,0.412838,0.830481,0.630265,0.862062,0.115991,0.531971,0.326369,0.774133,0.876784,0.655369,0.501175,0.445916,0.627503,0.321119,0.0358593,0.861077,0.115541,0.148212,0.601219,0.574784,0.807549,0.791995,0.628187,0.403506,0.105813,0.522194,0.912804,0.356622,0.204964,0.546215,0.781804,0.589322,0.514608,0.489001,0.120721,0.643506,0.51643,0.525433,0.0883901,0.843488,0.577183,0.505384,0.0758598,0.629551,0.166961,0.135204,0.116503,0.127026,0.75995,0.845632,0.905652,0.667946,0.869287,0.224422,0.83331,0.899035,0.15644,0.0939445,0.691374,0.87846,0.673041,0.236341,0.778583,0.0620126,0.90255,0.228552,0.519577,0.545647,0.141068,0.0760621,0.104771,0.892199,0.339518,0.756084,0.745831,0.878732,0.928276,0.0927839,0.296036,0.589494,0.500429,0.165005,0.39622,0.26734,0.0267147,0.548067,0.335371,0.837028,0.818662,0.262462,0.25282,0.624506,0.346027,0.772419,0.508019,0.979152,0.118099,0.301096,0.427153,0.180154,0.29915,0.33922,0.316213,0.164424,0.405504,0.537453,0.808335,0.339983,0.314306,0.5667,0.852755,0.729566,0.648407,0.118936,0.909167,0.931354,0.521824,0.959903,0.666964,0.881336,0.55509,0.141623,0.817458,0.966268,0.170879,0.762472,0.480704,0.689038,0.234204,0.784633,0.326728,0.559464,0.572682,0.571305,0.193094,0.912827,0.589544,0.876568,0.411956,0.710786,0.496769,0.650857,0.972132,0.934108,0.902863,0.649089,0.664255,0.613384,0.0736949,0.896288,0.00077033,0.143438,0.573357,0.91002,0.854593,0.420295,0.30561,0.63029,0.484131,0.888425,0.881481,0.315207,0.0223698,0.0704394,0.753367,0.0421212,0.920554,0.639984,0.110476,0.502718,0.207221,0.633187,0.633895,0.0204154,0.45037,0.42654,0.112921,0.123094,0.648291,0.581278,0.382404,0.386883,0.116614,0.360076,0.73279,0.530977,0.162922,0.816297,0.334995,0.872759,0.989442,0.604163,0.731896,0.772245,0.854737,0.60921,0.467526,0.0843458,0.143501,0.798786,0.773779,0.691906,0.800408,0.0707306,0.246479,0.06995,0.971386,0.492809,0.220895,0.216924,0.80482,0.311143,0.65494,0.783573,0.910859,0.052622,0.0997573,0.497468,0.774757,0.0156907,0.114657,0.40146,0.551743,0.975014,0.408523,0.083649,0.107533,0.228842,0.893874,0.97018,0.664935,0.994,0.682218,0.390759,0.478412,0.14285,0.282749,0.633926,0.216021,0.245211,0.00271565,0.450868,0.678635,0.977578,0.733294,0.569676,0.838109,0.290802,0.0822743,0.376368,0.0819253,0.541616,0.176608,0.368121,0.2646,0.698429,0.725266,0.0534317,0.670283,0.29635,0.374386,0.956948,0.451128,0.0912445,0.272672,0.501095,0.743735,0.296232,0.343219,0.740698,0.0807207,0.237939,0.717135,0.523074,0.119514,0.190554,0.723945,0.761491,0.0204743,0.0265159,0.702705,0.212843,0.893307,0.608787,0.846967,0.460058,0.736312,0.537027,0.998177,0.948344,0.278114,0.23177,0.237273,0.607236,0.783722,0.329645,0.306802,0.347088,0.999112,0.00272447,0.0349321,0.239985,0.663459,0.917511,0.671459,0.145505,0.0475953,0.427212,0.571191,0.694134,0.816658,0.0647877,0.807706,0.837488,0.321139,0.609484,0.765606,0.822679,0.781824,0.25418,0.897389,0.409121,0.799623,0.438545,0.278492,0.968215,0.85649,0.173075,0.745791,0.46598,0.314643,0.96785,0.561672,0.630587,0.10632,0.728514,0.474517,0.980009,0.562628,0.48724,0.162533,0.999387,0.14932,0.0913014,0.170281,0.296433,0.0262281,0.61351,0.191444,0.436664,0.836581,0.186725,0.39995,0.893738,0.472366,0.660682,0.299649,0.913594,0.39386,0.974633,0.448377,0.147053,0.564196,0.469058,0.802269,0.778958,0.496736,0.276271,0.633221,0.778464,0.71733,0.378589,0.126764,0.694691,0.444693,0.143079,0.327442,0.450566,0.702981,0.0290827,0.0338449,0.0700091,0.015118,0.165918,0.739009,0.440412,0.290694,0.0300843,0.757037,0.547374,0.21301,0.472681,0.75145,0.012326,0.848809,0.342625,0.71255,0.410692,0.272641,0.638523,0.191559,0.322012,0.159109,0.174666,0.0543153,0.954534,0.093672,0.869318,0.0361352,0.712101,0.649135,0.0285504,0.23843,0.0635223,0.125469,0.343349,0.703698,0.639605,0.931166,0.367574,0.545068,0.37529,0.0974615,0.621613,0.255561,0.791944,0.795942,0.724366,0.879342,0.753034,0.534822,0.848014,0.264747,0.00728434,0.959549,0.902644,0.0821255,0.586196,0.205565,0.0608512,0.33647,0.103439,0.177096,0.37966,0.611043,0.90175,0.221738,0.380152,0.0203056,0.769244,0.732218,0.822664,0.738203,0.8566,0.76524,0.936943,0.97524,0.855493,0.180125,0.195705,0.0174025,0.0854251,0.437092,0.507085,0.89946,0.713741,0.488048,0.753665,0.754085,0.0866746,0.0681455,0.986196,0.630831,0.399925,0.789176,0.6424,0.500119,0.617493,0.865813,0.737719,0.568599,0.0456956,0.565149,0.922891,0.683846,0.391242,0.576471,0.868757,0.73686,0.384879,0.822999,0.173712,0.118082,0.048766,0.99123,0.028255,0.919849,0.159777,0.754944,0.0497169,0.0906417,0.422896,0.303009,0.342519,0.802623,0.236939,0.10372,0.632892,0.908567,0.977351,0.868194,0.171946,0.615777,0.698529,0.445078,0.70414,0.815741,0.341917,0.998843,0.510611,0.993987,0.661406,0.753524,0.251793,0.345738,0.889941,0.729036,0.285525,0.847926,0.299185,0.24754,0.198593,0.734144,0.200034,0.438401,0.166474,0.544636,0.561343,0.271156,0.581829,0.893286,0.666465,0.126619,0.158453,0.437834,0.749887,0.573278,0.775524,0.0907679,0.38148,0.916168,0.973088,0.918119,0.448831,0.641664,0.104376,0.369133,0.423867,0.464297,0.568338,0.822843,0.439233,0.12262,0.351983,0.122914,0.105909,0.426759,0.571222,0.434398,0.173411,0.877104,0.410946,0.308004,0.479128,0.446053,0.0827964,0.905871,0.943439,0.23875,0.776503,0.82631,0.708991,0.821288,0.567649,0.464166,0.748971,0.431012,0.530962,0.925654,0.989468,0.836429,0.38439,0.833779,0.162429,0.904341,0.187896,0.462672,0.441644,0.637175,0.560359,0.137107,0.248608,0.618215,0.594647,0.344547,0.904666,0.28991,0.483806,0.979052,0.391515,0.568841,0.347883,0.311657,0.41258,0.065414,0.355854,0.938173,0.898023,0.639363,0.204292,0.402318,0.37906,0.88537,0.737593,0.03637,0.885854,0.762985,0.0243474,0.843839,0.930743,0.915359,0.625576,0.729373,0.625495,0.15754,0.0935154,0.627068,0.586577,0.0433819,0.33311,0.92238,0.116558,0.348701,0.0982487,0.844752,|0.562094,0.44091,0.981888,0.523848,0.263915,0.211084,0.506467,0.279642,0.243997,0.422727,0.108127,0.649313,0.917022,0.8094,0.886613,0.00167823,0.653559,0.152148,0.74621,0.988352,0.513523,0.228547,0.665403,0.975624,0.0704802,0.0956278,0.270718,0.200516,0.973501,0.744567,0.659781,0.806652,0.141396,0.498178,0.374666,0.351099,0.733171,0.808913,0.423156,0.631466,0.532694,0.296475,0.122412,0.936943,0.887004,0.0367677,0.197823,0.324595,0.355652,0.195169,0.10674,0.654373,0.540664,0.537369,0.854646,0.293143,0.33052,0.125586,0.194838,0.604737,0.114827,0.617672,0.717514,0.834632,0.565657,0.591726,0.417424,0.564532,0.973195,0.578394,0.981962,0.238349,0.830707,0.841944,0.367569,0.927826,0.219086,0.75236,0.968879,0.536207,0.573176,0.215565,0.537623,0.538529,0.087459,0.65529,0.410931,0.73245,0.983557,0.181142,0.587399,0.956936,0.982787,0.373701,0.697855,0.737008,0.937973,0.0656158,0.788438,0.445526,0.66092,0.00462979,0.872908,0.173018,0.765523,0.0457206,0.267493,0.907205,0.504268,0.41057,0.619585,0.0868034,0.75721,0.229356,0.804431,0.65733,0.373108,0.154935,0.832181,0.143434,0.716781,0.963038,0.686456,0.845978,0.0414706,0.665012,0.222981,0.134133,0.490309,0.425663,0.240306,0.88075,0.7811,0.014258,0.614212,0.582439,0.467922,0.149951,0.778166,0.796466,0.22057,0.630591,0.663458,0.596052,0.981456,0.794546,0.796655,0.717626,0.0251251,0.641152,0.627225,0.866339,0.562408,0.653342,0.27828,0.0265171,0.127253,0.34642,0.133357,0.248541,0.531236,0.379246,0.539734,0.256311,0.287784,0.465083,0.558816,0.908072,0.606851,0.382228,0.533885,0.118728,0.748326,0.981291,0.362534,0.674183,0.808446,0.659868,0.692674,0.661066,0.469818,0.623192,0.210222,0.668924,0.173257,0.951351,0.666827,0.65661,0.729923,0.553897,0.660488,0.948623,0.571913,0.269188,0.923974,0.394992,0.723948,0.844412,0.371019,0.145795,0.991187,0.624805,0.788982,0.14061,0.730561,0.517448,0.116682,0.0345019,0.514072,0.581605,0.0366077,0.769983,0.452971,0.942152,0.653714,0.390693,0.733405,0.313561,0.618506,0.428473,0.553089,0.653347,0.293945,0.724042,0.321771,0.459445,0.219617,0.541036,0.456695,0.0378482,0.670064,0.288281,0.856659,0.94391,0.315652,0.633853,0.608907,0.807377,0.882018,0.829768,0.791831,0.140224,0.987749,0.914012,0.153532,0.558661,0.24524,0.398458,0.48926,0.74826,0.105641,0.539576,0.927712,0.678041,0.103724,0.120323,0.150718,0.401689,0.0963806,0.118099,0.742785,0.769356,0.216123,0.902572,0.723453,0.350042,0.410476,0.785934,0.539988,0.803023,0.849823,0.925267,0.75486,0.324616,0.674584,0.49935,0.383516,0.258415,0.0567454,0.860229,0.350447,0.361787,0.0573221,0.019796,0.0186619,0.26715,0.342171,0.843617,0.519221,0.0727407,0.566603,0.01921,0.567825,0.339334,0.119726,0.760515,0.271829,0.485298,0.605026,0.606122,0.264601,0.30973,0.203887,0.560975,0.537304,0.857457,0.777459,0.324139,0.0237848,0.0295532,0.546802,0.28545,0.158155,0.572977,0.231244,0.500894,0.0456324,0.77223,0.994289,0.864991,0.509533,0.21178,0.728189,0.680746,0.576768,0.570147,0.118662,0.71428,0.614433,0.719309,0.264451,0.405117,0.890833,0.922402,0.063579,0.253428,0.462132,0.198914,0.62417,0.121215,0.579647,0.536284,0.942346,0.772888,0.00455737,0.336825,0.0079276,0.0471734,0.917511,0.518951,0.710187,0.0404892,0.777382,0.571636,0.585769,0.514912,0.164351,0.678077,0.199098,0.927485,0.976941,0.344957,0.177013,0.51486,0.0313773,0.432142,0.88835,0.472491,0.588589,0.287666,0.595332,0.563921,0.952861,0.889545,0.308068,0.983455,0.531113,0.449385,0.641317,0.106068,0.90324,0.912524,0.589733,0.32241,0.294933,0.656823,0.722124,0.710305,0.888635,0.75145,0.532295,0.438993,0.718635,0.312687,0.111035,0.538413,0.0326663,0.0451897,0.514934,0.441422,0.430627,0.422921,0.884841,0.121643,0.832143,0.766532,0.857153,0.138665,0.117792,0.991115,0.316789,0.176227,0.844141,0.343944,0.00820208,0.70288,0.862176,0.755265,0.3944,0.207152,0.760586,0.608483,0.725922,0.858042,0.866526,0.739099,0.716873,0.322901,0.633747,0.689465,0.803785,0.725898,0.506057,0.669527,0.75084,0.42929,0.964352,0.0717235,0.356465,0.935804,0.0256386,0.14927,0.764469,0.0378528,0.436771,0.603638,0.987619,0.44399,0.361567,0.24252,0.338811,0.973039,0.521317,0.491431,0.947803,0.453249,0.0617113,0.033544,0.197434,0.937503,0.40794,0.73287,0.10337,0.0330361,0.273857,0.106294,0.508077,0.2996,0.512556,0.0971443,0.946165,0.508785,0.18803,0.916004,0.278136,0.386755,0.938096,0.557285,0.951195,0.0240346,0.486693,0.738861,0.749809,0.818832,0.430399,0.114442,0.712763,0.841752,0.403713,0.316576,0.377751,0.165422,0.654469,0.390621,0.238427,0.571179,0.754537,0.45656,0.682365,0.436871,0.915443,0.702772,0.463378,0.270893,0.480992,0.625438,0.554486,0.874908,0.400705,0.528074,0.481487,0.0568541,0.575356,0.0157038,0.253537,0.198023,0.128457,0.334245,0.275252,0.502355,0.768171,0.834613,0.311613,0.385879,0.935508,0.102945,0.328886,0.216758,0.0211304,0.946621,0.970712,0.906456,0.95303,0.636124,0.748708,0.407201,0.843018,0.644935,0.734081,0.684421,0.746646,0.553034,0.99723,0.657451,0.705598,0.840959,0.902823,0.513923,0.499351,0.433742,0.106141,0.903935,0.92609,0.157595,0.718846,0.469483,0.921528,0.236512,0.756831,0.213196,0.845026,0.912061,0.984322,0.406303,0.943511,0.976752,0.00846213,0.518493,0.637614,0.860987,0.660781,0.841891,0.00994617,0.831978,0.0870273,0.92714,0.573062,0.450159,0.105032,0.336961,0.85279,0.428929,0.280556,0.90112,0.0788595,0.647274,0.38019,0.637356,0.779091,0.150596,0.801199,0.382835,0.443124,0.312524,0.237611,0.947572,0.902741,0.167658,0.536379,0.330603,0.177104,0.183015,0.0326888,0.128147,0.653303,0.845388,0.477999,0.334404,0.377065,0.241013,0.249973,0.803601,0.800092,0.773439,0.529316,0.0830545,0.08505,0.758286,0.933087,0.426865,0.149161,0.0429776,0.669141,0.512303,0.570545,0.629976,0.252458,0.682443,0.548994,0.593218,0.781547,0.0186037,0.162647,0.192081,0.957449,0.676752,0.455606,0.764703,0.656962,0.850117,0.511171,0.45814,0.0571339,0.204817,0.0684799,0.716008,0.132685,0.39464,0.967876,0.401096,0.454669,0.563378,0.533396,0.737794,0.236534,0.443334,0.405945,0.179048,0.943997,0.359053,0.527782,0.298098,0.258978,0.0762251,0.301567,0.723068,0.744176,0.513795,0.395748,0.920978,0.674188,0.43541,0.701332,0.820968,0.657398,0.10457,0.251382,0.391566,0.35554,0.994221,0.849486,0.697641,0.222025,0.878728,0.420428,0.506802,0.189712,0.0250542,0.292259,0.610044,0.903075,0.0785453,0.495191,0.0711673,0.125104,0.117364,0.181773,0.521678,0.447899,0.547723,0.498675,0.986031,0.462842,0.159847,0.382456,0.040621,0.699978,0.618876,0.794141,0.114746,0.502122,0.821478,0.993512,0.0355538,0.214144,0.514952,0.208694,0.638716,0.249288,0.912226,0.813558,0.172108,0.903786,0.525497,0.621063,0.562152,0.150319,0.520547,0.124375,0.0693161,0.800831,0.117913,0.882832,0.604314,0.766117,0.121388,0.29174,0.592909,0.380662,0.140274,0.0169325,0.663184,0.484762,0.641646,0.805193,0.0385259,0.956336,0.308173,0.670774,0.678694,0.043737,0.0588941,0.271956,0.314436,0.888598,0.772989,0.00562543,0.242143,0.491167,0.851057,0.369635,0.188866,0.96174,0.377057,0.0535682,0.379925,0.602899,0.608659,0.409302,0.158156,0.635443,0.938975,0.836906,0.426947,0.0874441,0.731972,0.702184,0.533198,0.593508,0.245822,0.385739,0.405605,0.352007,0.0483691,0.754103,0.606611,0.625107,0.289011,0.46323,0.883917,0.0891008,0.775028,0.223195,0.359522,0.611503,0.709754,0.467148,0.706369,0.167713,0.197112,0.360326,0.66723,0.536893,0.854414,0.890253,0.515097,0.32425,0.683896,0.874213,0.779681,0.862742,0.311941,0.18741,0.59739,0.340238,0.973477,0.117706,0.819823,0.128024,0.520705,0.143946,0.386029,0.338468,0.908521,0.721484,0.788444,0.850045,0.455717,0.470534,0.278248,0.829515,0.328646,0.137883,0.0312249,0.725413,0.871151,0.149938,0.744824,0.294956,0.506809,0.0350814,0.949534,0.480357,0.746434,0.108123,0.235653,0.640221,0.909364,0.489123,0.284523,0.304977,0.0112481,0.0650138,0.929874,0.660901,0.00691605,0.958721,0.0418304,0.448955,0.199966,0.856897,0.200618,0.514934,0.0185396,0.586407,0.462639,0.00832701,0.384591,0.121672,0.671404,0.0916377,0.0477876,0.225241,0.929084,0.771671,0.327336,0.345114,0.517482,0.757661,0.983966,0.545774,0.199796,0.48165,0.0773627,0.183231,0.871848,0.458667,0.218088,0.746354,0.581822,0.798772,0.825511,0.817982,0.445469,0.779051,0.486496,0.39743,0.0932724,0.53728,0.307107,0.00213885,0.590904,0.332256,0.962122,0.879715,0.973031,0.655678,0.55741,0.0526611,0.992581,0.445156,0.589749,0.719333,0.416946,0.197245,0.682433,0.716952,0.0112225,0.611612,0.720085,0.97086,0.92654,0.297001,0.287357,0.465328,0.443131,0.564867,0.839269,0.0704179,0.490584,0.881022,0.300401,0.141158,0.446881,0.952365,0.439298,0.44107,0.512304,0.218371,0.510528,0.347088,0.716585,0.382839,0.534862,0.760176,0.251638,0.676701,0.290069,0.24225,0.275457,0.598776,0.965297,0.970944,0.788159,0.517961,0.584514,0.0868133,0.139298,0.171701,0.922358,0.655374,0.495419,0.77037,0.0859718,0.443269,0.671048,0.26248,0.395528,0.0904747,0.829887,0.859843,0.463297,0.800932,0.459741,0.630337,0.457468,0.54886,0.105903,0.62479,0.0128057,0.0617147,0.473833,0.320891,0.0990418,0.307925,0.690662,0.18691,0.448452,0.978723,0.0598144,0.67575,0.302728,0.739944,0.150399,0.732675,0.353816,0.80007,0.827416,0.50227,0.522501,|0.843107,0.659693,0.709413,0.635709,0.992297,0.289581,0.501304,0.225299,0.532212,0.192239,0.95773,0.338211,0.0899376,0.708141,0.307061,0.751058,0.888809,0.426012,0.535825,0.530427,0.480732,0.044693,0.830556,0.191262,0.916118,0.471434,0.449975,0.619628,0.472405,0.242759,0.841117,0.229803,0.741481,0.281095,0.637187,0.964849,0.12567,0.057802,0.813092,0.244541,0.887063,0.804197,0.378253,0.177475,0.337896,0.246385,0.0528085,0.572252,0.154302,0.68605,0.140872,0.384999,0.766325,0.115117,0.227841,0.0349453,0.467297,0.867269,0.226471,0.680854,0.13386,0.174769,0.686377,0.930026,0.304334,0.138799,0.0202786,0.876576,0.301654,0.49047,0.171897,0.488772,0.434317,0.0791149,0.967326,0.696598,0.333104,0.30631,0.179633,0.197309,0.0236,0.693238,0.494385,0.504513,0.992488,0.650216,0.0622844,0.823105,0.368708,0.0407817,0.995937,0.103535,0.852607,0.228335,0.590727,0.0417084,0.690135,0.566715,0.296921,0.308369,0.273554,0.755607,0.130118,0.810486,0.47294,0.849142,0.327232,0.36982,0.448893,0.635907,0.0696639,0.819257,0.134798,0.865886,0.911058,0.148454,0.784524,0.88013,0.631346,0.130683,0.956665,0.166535,0.156811,0.824286,0.0731733,0.27697,0.938376,0.528905,0.301999,0.212299,0.126531,0.470077,0.827201,0.82522,0.964341,0.0353769,0.441736,0.715791,0.00732309,0.400713,0.651043,0.207715,0.0635107,0.5468,0.793391,0.499291,0.97496,0.314411,0.426233,0.193202,0.931381,0.324038,0.0493617,0.632584,0.217325,0.897626,0.970501,0.87964,0.391646,0.783257,0.452014,0.83388,0.801294,0.835764,0.95339,0.571682,0.131284,0.426519,0.673069,0.639734,0.179102,0.99532,0.219689,0.00262636,0.629904,0.628747,0.936651,0.762908,0.442985,0.663743,0.373554,0.386379,0.219668,0.992604,0.899371,0.827475,0.521891,0.650801,0.282636,0.270147,0.37867,0.690301,0.228767,0.14649,0.574307,0.273932,0.57643,0.6693,0.362848,0.00549299,0.906222,0.619849,0.121194,0.745349,0.777645,0.984187,0.327343,0.937563,0.85134,0.479669,0.720227,0.315916,0.912719,0.0916291,0.0258808,0.0550777,0.00193942,0.0409892,0.312854,0.16855,0.745488,0.273921,0.708173,0.454137,0.596467,0.220053,0.696716,0.85191,0.854924,0.974958,0.234942,0.0760631,0.980087,0.965542,0.8487,0.0876601,0.277971,0.401764,0.749092,0.516866,0.262745,0.679878,0.763707,0.48921,0.497661,0.335266,0.19899,0.413396,0.27887,0.230029,0.437846,0.909195,0.650392,0.373102,0.0405584,0.0763257,0.171238,0.0567395,0.845439,0.281911,0.918156,0.0407273,0.134658,0.249104,0.809041,0.367556,0.0688044,0.268978,0.630714,0.960068,0.686624,0.219315,0.732124,0.723992,0.79183,0.177485,0.527256,0.843477,0.542957,0.303602,0.915043,0.330869,0.0606114,0.846259,0.597622,0.810029,0.0901574,0.0205851,0.860122,0.381031,0.625772,0.902811,0.206311,0.191119,0.267546,0.869492,0.800129,0.0267103,0.0181673,0.222444,0.336596,0.4144,0.309295,0.380139,0.34611,0.719895,0.896582,0.0545217,0.554215,0.751271,0.207383,0.508777,0.660379,0.580194,0.557453,0.863645,0.376279,0.0693408,0.64867,0.219682,0.0807921,0.555294,0.594611,0.975804,0.81279,0.0324762,0.210738,0.774629,0.116283,0.0715258,0.463046,0.322249,0.00565141,0.366966,0.535428,0.151298,0.648805,0.474035,0.965922,0.956312,0.404813,0.830794,0.414998,0.336896,0.319702,0.644118,0.284375,0.111686,0.356123,0.382912,0.196962,0.115345,0.572418,0.665179,0.421334,0.391475,0.633298,0.0311661,0.137309,0.077595,0.624295,0.51335,0.929155,0.000131607,0.508641,0.644961,0.200417,0.641594,0.638855,0.389094,0.784748,0.828962,0.993922,0.089008,0.93441,0.272093,0.241723,0.0787804,0.177793,0.0264378,0.319688,0.259784,0.737808,0.734855,0.536315,0.354564,0.799501,0.408432,0.730259,0.608254,0.394347,0.832358,0.627084,0.672725,0.353858,0.731011,0.924902,0.564397,0.730714,0.150811,0.998348,0.186198,0.30456,0.962546,0.763928,0.903083,0.954525,0.195915,0.259724,0.71106,0.157655,0.651367,0.378837,0.137216,0.887559,0.929289,0.0815757,0.330162,0.543146,0.459068,0.913374,0.45825,0.323846,0.215194,0.0710499,0.414456,0.357738,0.779834,0.196405,0.214963,0.36237,0.251647,0.64791,0.909753,0.170482,0.941779,0.748414,0.992944,0.621721,0.148379,0.587882,0.405289,0.737948,0.703756,0.0511907,0.566748,0.660839,0.514525,0.904006,0.829495,0.392442,0.283114,0.798536,0.432154,0.552712,0.586259,0.336346,0.0135488,0.246033,0.951964,0.946505,0.133416,0.824641,0.926172,0.408655,0.150832,0.040787,0.799875,0.60514,0.52204,0.411637,0.0756025,0.643114,0.950859,0.329901,0.406092,0.806346,0.644478,0.880031,0.261258,0.622766,0.870404,0.319402,0.177976,0.0192435,0.467249,0.660102,0.751086,0.888369,0.571875,0.102979,0.352347,0.897233,0.476417,0.697834,0.610506,0.712573,0.53556,0.255258,0.184374,0.793166,0.692172,0.586654,0.0640213,0.701442,0.910737,0.805043,0.463171,0.833976,0.283607,0.427195,0.796163,0.111615,0.200175,0.738266,0.437286,0.97608,0.493557,0.260284,0.575623,0.545235,0.582115,0.240533,0.782521,0.465757,0.128127,0.742698,0.0832519,0.876164,0.128564,0.914284,0.596836,0.849025,0.0616102,0.630194,0.427628,0.146484,0.331318,0.171841,0.233675,0.801041,0.115858,0.689211,0.953522,0.888684,0.0444757,0.555786,0.964501,0.721219,0.946973,0.748104,0.425102,0.706022,0.161228,0.160047,0.794079,0.757703,0.263233,0.798268,0.973776,0.893679,0.378016,0.462892,0.545368,0.415383,0.754881,0.985187,0.313515,0.104905,0.500252,0.961007,0.867243,0.0805049,0.798396,0.13201,0.157287,0.25274,0.333907,0.884367,0.969488,0.206515,0.175686,0.502674,0.0666419,0.730257,0.306355,0.314361,0.120002,0.924263,0.646506,0.896419,0.942575,0.129545,0.348699,0.474941,0.815823,0.576331,0.84161,0.842954,0.432777,0.616586,0.963029,0.108525,0.508753,0.513421,0.417434,0.496514,0.407663,0.285817,0.0421813,0.854535,0.187639,0.930589,0.705222,0.716018,0.317859,0.751646,0.181888,0.87972,0.323722,0.949471,0.443734,0.0477753,0.617323,0.620287,0.297829,0.935296,0.753759,0.20708,0.344438,0.327695,0.28056,0.698066,0.409914,0.282205,0.669137,0.528128,0.291279,0.630211,0.113605,0.42547,0.712752,0.133951,0.0360548,0.997086,0.739891,0.129574,0.459295,0.0281631,0.0175129,0.123092,0.640438,0.19655,0.835088,0.554374,0.780141,0.0289207,0.140034,0.825432,0.949932,0.769519,0.0122179,0.981517,0.613215,0.538279,0.372235,0.913402,0.723455,0.28155,0.17396,0.704028,0.575053,0.903332,0.785108,0.332404,0.375457,0.667754,0.404707,0.496914,0.470155,0.528612,0.340195,0.0495616,0.0621055,0.0889498,0.64303,0.847099,0.335177,0.222046,0.71962,0.27183,0.616326,0.659867,0.16327,0.361897,0.988805,0.0555777,0.835265,0.580907,0.844461,0.449712,0.555418,0.128666,0.066896,0.792131,0.94969,0.418594,0.985978,0.00563616,0.369107,0.259737,0.895918,0.955723,0.666063,0.574452,0.884962,0.606105,0.890698,0.0286735,0.0241026,0.619154,0.670086,0.0803816,0.422233,0.67403,0.61644,0.755458,0.978578,0.789311,0.604927,0.810558,0.275621,0.856609,0.836579,0.611671,0.91849,0.229222,0.639331,0.104465,0.818391,0.591458,0.71999,0.168124,0.994825,0.0397961,0.57434,0.349959,0.0826431,0.742068,0.733608,0.559128,0.438326,0.750874,0.5934,0.0832825,0.489872,0.75975,0.4214,0.399067,0.6221,0.353724,0.491328,0.781494,0.814155,0.924585,0.17243,0.938732,0.148675,0.438037,0.327116,0.536431,0.435444,0.564831,0.936944,0.2835,0.231979,0.926377,0.37732,0.597257,0.801367,0.704098,0.663495,0.0584759,0.278346,0.685741,0.355204,0.607492,0.104622,0.278614,0.212549,0.205625,0.885887,0.612292,0.911583,0.276486,0.319064,0.0439658,0.0880005,0.253805,0.633835,0.968534,0.294189,0.0838501,0.21297,0.0672767,0.936937,0.00163245,0.13825,0.685881,0.653678,0.766283,0.747514,0.705633,0.720472,0.776329,0.42007,0.81648,0.169743,0.674218,0.128516,0.808121,0.975248,0.415219,0.285673,0.0471515,0.782091,0.32638,0.494285,0.417956,0.630759,0.191355,0.764824,0.506031,0.0773211,0.486542,0.470218,0.745943,0.119283,0.0917025,0.317702,0.476675,0.739362,0.0403403,0.192915,0.6528,0.973794,0.433826,0.950169,0.265434,0.405381,0.577555,0.0256149,0.511791,0.466097,0.538408,0.0556945,0.229094,0.436419,0.062579,0.208729,0.624873,0.078697,0.101223,0.0038228,0.282685,0.0680147,0.936317,0.950693,0.424742,0.582942,0.59854,0.0720478,0.379345,0.457339,0.992431,0.274315,0.594504,0.471841,0.898999,0.387101,0.516093,0.584822,0.989513,0.995365,0.364741,0.857198,0.863535,0.289086,0.927768,0.864643,0.597611,0.324172,0.485128,0.122188,0.280055,0.805094,0.857445,0.116932,0.0666978,0.173466,0.39726,0.592351,0.925061,0.856683,0.377544,0.698531,0.310334,0.981659,0.573053,0.768138,0.723787,0.653987,0.563145,0.800285,0.652998,0.586899,0.414018,0.449901,0.542371,0.710619,0.777467,0.796166,0.806325,0.642194,0.63539,0.124597,0.78043,0.48422,0.428213,0.976557,0.0780601,0.777243,0.0856212,0.0892298,0.240773,0.469929,0.38198,0.917428,0.0108731,0.976675,0.0330927,0.318989,0.0909377,0.971316,0.875403,0.0802367,0.405553,0.72817,0.713329,0.880479,0.563781,0.263563,0.730396,0.84713,0.72977,0.617235,0.936905,0.547664,0.354018,0.493304,0.866888,0.517926,0.947416,0.866539,0.0328179,0.951393,0.53419,0.0969648,0.692373,0.337066,0.465376,0.970799,0.68538,0.224883,0.587132,0.400563,0.563068,0.509037,0.787039,0.650396,0.2924,0.361483,0.0865037,0.729428,0.803647,0.96075,0.057218,0.703589,0.605994,0.453671,0.407508,0.107114,0.0122173,0.883504,0.271449,0.788897,0.974626,0.322616,0.402523,0.663666,|0.473227,0.0144979,0.986139,0.6576,0.492543,0.325472,0.308984,0.410105,0.483765,0.854295,0.739597,0.620468,0.342303,0.985867,0.244578,0.654063,0.461477,0.715874,0.75445,0.948714,0.266516,0.0992199,0.53809,0.255573,0.514216,0.466444,0.544843,0.871533,0.152809,0.491264,0.606589,0.0134438,0.920919,0.566328,0.292364,0.705329,0.472099,0.327014,0.323317,0.774524,0.415995,0.874924,0.708366,0.124605,0.85794,0.928103,0.704237,0.735444,0.0633349,0.191603,0.171157,0.233898,0.821152,0.363836,0.101441,0.901448,0.0664535,0.621515,0.838766,0.249946,0.707589,0.0922108,0.850923,0.737648,0.133889,0.70021,0.583799,0.380229,0.708835,0.947917,0.660403,0.299117,0.548876,0.0405573,0.245217,0.384698,0.915127,0.574472,0.230848,0.406374,0.991474,0.0358856,0.384038,0.52697,0.788855,0.0982438,0.84716,0.947318,0.713427,0.413008,0.807391,0.880732,0.20761,0.0353159,0.881202,0.58475,0.610287,0.730759,0.81762,0.0876286,0.311376,0.254016,0.201483,0.696068,0.773521,0.116857,0.872344,0.170764,0.377825,0.276565,0.830628,0.579537,0.00761008,0.138497,0.453903,0.673638,0.238982,0.656844,0.582576,0.749134,0.195453,0.543929,0.657806,0.336778,0.172351,0.873932,0.109514,0.574935,0.0655335,0.771864,0.830779,0.0801139,0.325956,0.295611,0.177973,0.538851,0.698059,0.954342,0.528665,0.792453,0.565113,0.262199,0.138975,0.0322133,0.915377,0.527249,0.58948,0.978968,0.0232673,0.978212,0.397237,0.967959,0.96082,0.0905204,0.117864,0.375732,0.57995,0.677699,0.606107,0.072476,0.60649,0.424235,0.862254,0.479953,0.915209,0.595514,0.633279,0.715658,0.505245,0.103403,0.478341,0.465558,0.0380157,0.349433,0.804715,0.818502,0.900808,0.178135,0.195638,0.952243,0.171304,0.611396,0.218102,0.912659,0.856752,0.668114,0.547048,0.0651645,0.0356542,0.763263,0.0546796,0.468378,0.369259,0.32855,0.17109,0.879154,0.69136,0.572608,0.884257,0.0948712,0.870685,0.954055,0.320653,0.915883,0.101563,0.292268,0.825798,0.0247307,0.0858831,0.260114,0.162348,0.186128,0.538097,0.0622374,0.0577317,0.0649374,0.72299,0.752261,0.831696,0.349302,0.315021,0.987529,0.838912,0.0342942,0.483088,0.445052,0.394803,0.868427,0.76639,0.314464,0.817781,0.696448,0.515998,0.66848,0.319205,0.846887,0.468183,0.907151,0.471004,0.962019,0.806974,0.0998918,0.386068,0.114372,0.282692,0.0851744,0.355128,0.0341702,0.262968,0.985739,0.378294,0.396928,0.718922,0.724914,0.15601,0.624235,0.920744,0.85232,0.21739,0.705102,0.058748,0.802954,0.35135,0.240305,0.292169,0.131219,0.570327,0.794845,0.784595,0.446548,0.396141,0.98779,0.254807,0.0626536,0.0727994,0.53147,0.0274432,0.571503,0.189371,0.907217,0.448439,0.295669,0.947999,0.275355,0.29696,0.348899,0.562989,0.72582,0.311476,0.465683,0.202582,0.282124,0.0327686,0.739828,0.590076,0.396264,0.491279,0.932598,0.728551,0.829949,0.296414,0.692053,0.398265,0.793215,0.618011,0.26437,0.585123,0.41987,0.277379,0.0640227,0.585065,0.659848,0.344349,0.509498,0.0755924,0.977409,0.951139,0.821528,0.898184,0.783501,0.781021,0.314096,0.362557,0.411761,0.278218,0.38294,0.935923,0.861807,0.128572,0.214548,0.000701487,0.182318,0.241635,0.484639,0.829861,0.972074,0.623877,0.314113,0.981509,0.930648,0.518279,0.303827,0.212403,0.207841,0.540488,0.100567,0.475165,0.69074,0.36102,0.440317,0.842932,0.201996,0.415831,0.141777,0.626115,0.744157,0.0848951,0.0899475,0.39458,0.603496,0.908303,0.180379,0.47941,0.575048,0.219222,0.60557,0.482809,0.959345,0.563265,0.712998,0.521463,0.0885241,0.599586,0.940585,0.0397288,0.890083,0.851084,0.821079,0.899597,0.49727,0.872046,0.269665,0.73437,0.14309,0.947227,0.326101,0.400175,0.415228,0.149747,0.677815,0.329432,0.144608,0.169989,0.651375,0.977686,0.759088,0.853269,0.268085,0.00196105,0.784148,0.0290263,0.057691,0.036332,0.982072,0.808182,0.669953,0.357809,0.293428,0.513065,0.161098,0.854101,0.494378,0.822795,0.946297,0.370239,0.593256,0.000756562,0.453663,0.168296,0.608648,0.0185841,0.362271,0.385687,0.390573,0.707294,0.912618,0.717708,0.842782,0.295622,0.840039,0.489447,0.905011,0.399328,0.745532,0.176552,0.166781,0.0637392,0.921919,0.811907,0.33798,0.460834,0.609459,0.484574,0.185789,0.0288067,0.626622,0.290784,0.876864,0.290283,0.478159,0.0188581,0.759431,0.714597,0.577907,0.0327436,0.0822415,0.0526109,0.817717,0.15515,0.117276,0.285963,0.815353,0.880498,0.197555,0.641889,0.404312,0.634543,0.806444,0.632976,0.863149,0.956795,0.862285,0.0329165,0.445709,0.563947,0.951601,0.621638,0.403515,0.383425,0.128851,0.834295,0.375876,0.0693651,0.0707986,0.571968,0.509947,0.0724407,0.157622,0.151936,0.566918,0.333274,0.487353,0.622317,0.362881,0.268575,0.0283017,0.334632,0.791299,0.00254399,0.653792,0.872808,0.170002,0.185959,0.481383,0.110363,0.428972,0.522508,0.165346,0.448766,0.935015,0.598103,0.0993147,0.240069,0.638538,0.899393,0.225789,0.373547,0.468887,0.973595,0.256397,0.488799,0.0515888,0.654739,0.820185,0.292197,0.770209,0.00239557,0.829731,0.937707,0.174754,0.675635,0.221987,0.375593,0.24412,0.714342,0.828957,0.231012,0.65286,0.749308,0.243029,0.18501,0.42086,0.098114,0.102275,0.327769,0.0725866,0.765376,0.0353834,0.654465,0.230155,0.837362,0.589321,0.258072,0.884453,0.531667,0.994509,0.87838,0.514186,0.593908,0.980144,0.352171,0.711467,0.212832,0.746626,0.513801,0.0807219,0.586239,0.981606,0.0669177,0.751695,0.733977,0.886254,0.145612,0.934997,0.299594,0.862435,0.341405,0.142131,0.0575882,0.710871,0.662221,0.66021,0.482409,0.415346,0.847366,0.114441,0.561143,0.346102,0.645759,0.676455,0.833493,0.647663,0.894213,0.116421,0.627958,0.170989,0.133834,0.125251,0.481736,0.231262,0.238177,0.42091,0.8102,0.894395,0.803759,0.183837,0.0289559,0.216392,0.188541,0.0890221,0.12903,0.776321,0.165749,0.44939,0.986403,0.443887,0.106544,0.445605,0.0307558,0.857425,0.923978,0.0302172,0.138138,0.18653,0.272443,0.723819,0.712506,0.852055,0.945781,0.188941,0.493258,0.497359,0.217943,0.390614,0.202496,0.660919,0.972001,0.672241,0.226652,0.484275,0.292812,0.783752,0.0285013,0.274442,0.115917,0.859373,0.294073,0.0808291,0.448482,0.116332,0.522381,0.00255084,0.269574,0.485427,0.568878,0.777042,0.262028,0.871845,0.698472,0.133718,0.277048,0.851344,0.0379736,0.438926,0.121861,0.243882,0.279519,0.326001,0.926006,0.147255,0.282553,0.979921,0.509211,0.918904,0.608566,0.390173,0.724027,0.261388,0.765272,0.160773,0.826488,0.651811,0.666514,0.32078,0.879079,0.417101,0.0153698,0.143047,0.702594,0.869096,0.563575,0.0215544,0.473227,0.961133,0.300789,0.251086,0.461732,0.29441,0.840083,0.595741,0.670549,0.630584,0.418896,0.353008,0.893359,0.542159,0.0177487,0.843123,0.962395,0.68733,0.238516,0.672055,0.409932,0.378766,0.35723,0.737884,0.830251,0.574637,0.340377,0.300637,0.747196,0.35809,0.316144,0.240852,0.171769,0.503222,0.0315893,0.0519881,0.224719,0.251709,0.526675,0.900825,0.0994633,0.121989,0.47742,0.346569,0.714013,0.342169,0.802933,0.964317,0.548578,0.57924,0.587442,0.186566,0.434815,0.128529,0.662268,0.264039,0.543303,0.566146,0.400736,0.398163,0.614603,0.8724,0.327626,0.207402,0.322527,0.161334,0.754508,0.379617,0.0304379,0.0142373,0.917244,0.996457,0.447785,0.128262,0.966376,0.930953,0.0582467,0.577349,0.376235,0.629618,0.671034,0.982247,0.637494,0.211161,0.5265,0.56973,0.772364,0.438608,0.395096,0.51206,0.727681,0.244349,0.937646,0.783817,0.804001,0.122166,0.0666515,0.0786324,0.454745,0.737582,0.899971,0.932254,0.580357,0.353384,0.83955,0.225311,0.951801,0.27285,0.958465,0.381498,0.591635,0.393963,0.930746,0.0640058,0.922855,0.205795,0.0659069,0.970204,0.870596,0.826549,0.416014,0.866324,0.258776,0.151246,0.162073,0.444882,0.254949,0.375207,0.639351,0.602203,0.354122,0.43985,0.336026,0.567139,0.198386,0.132009,0.133932,0.834704,0.29792,0.768565,0.965151,0.636883,0.572641,0.0752262,0.568045,0.91955,0.63303,0.65471,0.897619,0.397279,0.286866,0.357106,0.733158,0.669923,0.371262,0.881642,0.713496,0.661919,0.456508,0.509697,0.951527,0.179315,0.0320636,0.40342,0.33208,0.284296,0.243756,0.951562,0.325776,0.239535,0.877187,0.623185,0.679974,0.652298,0.514171,0.0147764,0.325854,0.968529,0.372069,0.345947,0.265121,0.690966,0.497104,0.195072,0.172915,0.240672,0.219377,0.624104,0.722322,0.304078,0.62406,0.693451,0.72952,0.738586,0.921948,0.755968,0.981059,0.0106233,0.537399,0.0482181,0.337471,0.572255,0.426377,0.430804,0.219371,0.26143,0.282462,0.0245278,0.872264,0.813188,0.166469,0.89094,0.174328,0.319277,0.833256,0.879964,0.645222,0.942427,0.00920039,0.0548156,0.875831,0.72539,0.539841,0.240877,0.227887,0.816179,0.757711,0.226686,0.776411,0.0288662,0.46194,0.550217,0.486636,0.792587,0.82499,0.627709,0.965456,0.350137,0.889006,0.269632,0.534722,0.827221,0.64723,0.617971,0.687286,0.189683,0.455529,0.343699,0.0135486,0.844037,0.281696,0.540151,0.919803,0.945825,0.194436,0.367924,0.39474,0.66337,0.337708,0.408309,0.318117,0.942787,0.749301,0.532538,0.230483,0.36996,0.206569,0.403997,0.770557,0.0662352,0.963182,0.0994907,0.693201,0.659105,0.137262,0.800994,0.337548,0.268087,0.839825,0.130491,0.353537,0.0789952,0.443036,0.0911587,0.976496,0.921243,0.261382,0.450985,0.499219,0.457643,0.934357,0.88029,0.517916,0.777372,0.773886,0.954821,0.558565,0.413553,0.139571,0.0743304,0.489914,0.896658,0.762292,0.905984,0.368695,0.13921,0.702136,0.782248,|0.690772,0.113269,0.647159,0.2634,0.66822,0.495115,0.828457,0.649854,0.555315,0.256243,0.525605,0.972271,0.724086,0.142895,0.725379,0.243874,0.454762,0.658193,0.934672,0.888131,0.255598,0.0870201,0.384129,0.763766,0.551673,0.298728,0.9592,0.886828,0.23753,0.428122,0.769867,0.837618,0.874619,0.151073,0.952011,0.0874475,0.156977,0.353729,0.523209,0.403961,0.945479,0.159841,0.995201,0.101016,0.257225,0.30788,0.833071,0.292048,0.0940135,0.27915,0.583347,0.439789,0.224975,0.918592,0.452279,0.645742,0.335859,0.118914,0.00839663,0.855805,0.418285,0.596683,0.678475,0.731455,0.389025,0.0806472,0.923728,0.396257,0.572779,0.160914,0.477904,0.227731,0.109277,0.865565,0.0616176,0.235235,0.0387697,0.636762,0.935118,0.573413,0.00363368,0.276899,0.243333,0.802444,0.0564095,0.959992,0.251623,0.127897,0.400821,0.223276,0.394814,0.0321568,0.266261,0.0502392,0.128002,0.983287,0.875691,0.0793179,0.318609,0.211398,0.123477,0.438553,0.854089,0.00205684,0.846444,0.125951,0.251401,0.600332,0.458867,0.686175,0.523538,0.352602,0.363355,0.110205,0.0794458,0.989091,0.280113,0.649378,0.708401,0.266402,0.171111,0.0545915,0.564741,0.676696,0.325305,0.243211,0.132118,0.0510109,0.751853,0.668849,0.761141,0.325104,0.858973,0.344452,0.327163,0.861115,0.466002,0.225452,0.852439,0.749965,0.894257,0.499395,0.163176,0.802374,0.495865,0.246726,0.414618,0.810194,0.348017,0.96552,0.726068,0.560401,0.323435,0.57394,0.214603,0.937977,0.404214,0.330494,0.361931,0.770624,0.687888,0.966141,0.720721,0.755347,0.707501,0.326889,0.560946,0.0891047,0.28747,0.716679,0.663907,0.246173,0.184671,0.871712,0.37718,0.272953,0.898762,0.736011,0.444588,0.566297,0.594883,0.405702,0.180544,0.742423,0.596255,0.160806,0.519085,0.771093,0.8558,0.198574,0.831344,0.837319,0.41233,0.861417,0.486881,0.563205,0.599026,0.923195,0.628773,0.661489,0.290857,0.989559,0.857106,0.839254,0.732773,0.0979325,0.987405,0.0388894,0.774521,0.419499,0.933911,0.458911,0.369035,0.611598,0.294011,0.702891,0.677665,0.270907,0.631795,0.742406,0.409823,0.696641,0.87803,0.88123,0.316798,0.927694,0.514051,0.451485,0.471001,0.365286,0.878749,0.847682,0.214045,0.0898927,0.121899,0.373064,0.342133,0.0496746,0.720866,0.143565,0.267326,0.215103,0.379639,0.256501,0.991644,0.672827,0.903839,0.933043,0.773357,0.604011,0.279432,0.657711,0.63521,0.203812,0.148915,0.847133,0.0630437,0.834597,0.295297,0.88388,0.977077,0.711257,0.839402,0.694152,0.485664,0.988103,0.367977,0.18151,0.203499,0.506577,0.298726,0.0199605,0.88192,0.879279,0.111351,0.796944,0.547634,0.53401,0.705747,0.879148,0.910339,0.941053,0.403121,0.827974,0.857281,0.76643,0.135277,0.439552,0.414366,0.358613,0.126204,0.34145,0.83568,0.336006,0.112561,0.510051,0.164985,0.734356,0.323634,0.541902,0.205758,0.849225,0.851948,0.890658,0.903778,0.833621,0.339765,0.136189,0.891745,0.0294703,0.561234,0.833074,0.622621,0.399222,0.28337,0.31406,0.00644886,0.185205,0.302977,0.677388,0.515358,0.884792,0.758407,0.167983,0.77536,0.416763,0.651997,0.848046,0.01853,0.135642,0.327165,0.611374,0.613474,0.421018,0.854464,0.153704,0.757002,0.327574,0.838555,0.579447,0.167732,0.808664,0.187094,0.910865,0.752861,0.785141,0.0785616,0.915705,0.99383,0.680806,0.657041,0.425091,0.513663,0.149616,0.766375,0.780187,0.952114,0.708117,0.338567,0.191764,0.762784,0.896325,0.795935,0.260026,0.270725,0.191644,0.0629381,0.73376,0.566755,0.685722,0.395984,0.687298,0.859663,0.965325,0.139492,0.548006,0.451552,0.281492,0.947753,0.514988,0.823298,0.480004,0.543056,0.498324,0.591506,0.590799,0.541138,0.668726,0.652284,0.34938,0.563641,0.407657,0.96763,0.3231,0.452172,0.589352,0.805767,0.0755639,0.00693452,0.630343,0.94576,0.822971,0.493439,0.135303,0.366183,0.870927,0.720601,0.631492,0.822713,0.843736,0.468565,0.313557,0.235721,0.863281,0.216383,0.528335,0.577772,0.727747,0.818954,0.265761,0.0484212,0.642486,0.944061,0.327821,0.685067,0.520482,0.254705,0.0783592,0.517791,0.681861,0.933818,0.847403,0.592205,0.43385,0.420667,0.598346,0.692927,0.198173,0.668359,0.937692,0.15216,0.87824,0.612566,0.384168,0.912595,0.788042,0.249757,0.238014,0.728684,0.501451,0.89972,0.990816,0.75144,0.201282,0.358553,0.51671,0.938223,0.90074,0.944198,0.10481,0.917722,0.952068,0.819823,0.902619,0.070788,0.94556,0.519453,0.252051,0.973623,0.456157,0.556539,0.830473,0.478836,0.981532,0.522348,0.0578555,0.784185,0.298257,0.661474,0.694067,0.976811,0.77071,0.169546,0.00578004,0.862065,0.995182,0.610581,0.789271,0.266699,0.463573,0.264309,0.524649,0.87196,0.935962,0.877696,0.59824,0.593949,0.844419,0.536366,0.681094,0.451423,0.408238,0.027327,0.329794,0.223531,0.29634,0.0195493,0.780511,0.785907,0.216582,0.280009,0.216216,0.305376,0.41627,0.653748,0.881581,0.260429,0.595486,0.884601,0.212378,0.849939,0.663302,0.00637567,0.195678,0.168022,0.160649,0.625006,0.391439,0.893281,0.672974,0.39432,0.444594,0.216526,0.214269,0.577079,0.0162231,0.223445,0.120875,0.119178,0.0626483,0.549353,0.523117,0.394578,0.7118,0.350889,0.841586,0.514762,0.239232,0.259464,0.264145,0.787529,0.258782,0.969066,0.228968,0.391948,0.361958,0.433373,0.604885,0.910974,0.749329,0.580926,0.0444131,0.552164,0.650486,0.282981,0.0819236,0.612061,0.598972,0.410342,0.309844,0.363715,0.0147977,0.0429371,0.575591,0.948283,0.0122163,0.151822,0.572717,0.74534,0.365711,0.951758,0.107317,0.365564,0.2206,0.26023,0.000193715,0.466309,0.816682,0.413123,0.955937,0.500977,0.56726,0.565855,0.0500581,0.640629,0.988484,0.589688,0.264269,0.75177,0.934442,0.363383,0.999353,0.815711,0.656713,0.0618109,0.45776,0.790417,0.710513,0.76912,0.737545,0.981471,0.916253,0.870893,0.560452,0.788963,0.431622,0.272064,0.850203,0.23259,0.121393,0.910185,0.913956,0.787598,0.479836,0.684219,0.265637,0.125289,0.373178,0.494579,0.798863,0.299966,0.939799,0.886939,0.98183,0.835392,0.316796,0.0646834,0.572761,0.897109,0.744288,0.589556,0.72611,0.207897,0.550666,0.627698,0.396093,0.00807232,0.147677,0.527948,0.91359,0.201235,0.337877,0.197112,0.728447,0.583709,0.747599,0.747938,0.907803,0.973694,0.303598,0.00293356,0.308553,0.54746,0.833005,0.271194,0.0411619,0.711828,0.189249,0.234519,0.659892,0.964684,0.213832,0.108177,0.807634,0.769212,0.00904304,0.629234,0.794035,0.759671,0.0296826,0.631918,0.911711,0.954053,0.480423,0.289189,0.921787,0.719817,0.903788,0.597824,0.626986,0.474837,0.205444,0.536663,0.0630662,0.92352,0.919811,0.220047,0.4273,0.143556,0.106682,0.200493,0.593581,0.329007,0.165685,0.242809,0.392342,0.531461,0.923876,0.942343,0.886387,0.421175,0.883164,0.642465,0.777951,0.143861,0.916856,0.19972,0.293702,0.91231,0.116225,0.130658,0.155723,0.0551735,0.126772,0.399107,0.421213,0.681059,0.0356078,0.375509,0.38948,0.686994,0.364825,0.579058,0.812046,0.196263,0.643457,0.27759,0.216834,0.477762,0.907789,0.924516,0.826375,0.504609,0.982324,0.192248,0.392412,0.811767,0.102588,0.114775,0.682746,0.158394,0.840643,0.146013,0.274041,0.662572,0.332373,0.0767121,0.0380833,0.45384,0.365966,0.249146,0.834942,0.448851,0.707474,0.359991,0.114602,0.295388,0.399105,0.756304,0.610385,0.242589,0.258371,0.701483,0.791032,0.63861,0.0689182,0.539391,0.634439,0.621546,0.2341,0.962881,0.470458,0.158086,0.400081,0.702043,0.997545,0.356689,0.900226,0.398437,0.756376,0.294113,0.446708,0.508526,0.67671,0.851204,0.807396,0.506768,0.347617,0.791793,0.714199,0.357107,0.972487,0.287882,0.457265,0.525866,0.934192,0.73368,0.60464,0.352778,0.0433429,0.871453,0.85383,0.0067246,0.649342,0.979547,0.000189722,0.936139,0.802374,0.550153,0.870541,0.276927,0.969953,0.158199,0.531115,0.342047,0.123499,0.824737,0.786808,0.326876,0.95977,0.759812,0.685404,0.19543,0.449694,0.420114,0.366112,0.535157,0.84373,0.983783,0.377647,0.993341,0.161268,0.019177,0.159608,0.824162,0.970093,0.0608028,0.825384,0.755237,0.201252,0.48939,0.203747,0.0120162,0.90942,0.580331,0.317541,0.944213,0.976406,0.945867,0.283626,0.966486,0.845862,0.859041,0.324822,0.24251,0.426545,0.195403,0.88491,0.255109,0.100814,0.528551,0.186944,0.538638,0.623147,0.0201056,0.160542,0.151021,0.911657,0.340264,0.142833,0.702298,0.505297,0.557116,0.692534,0.128013,0.89213,0.302479,0.37068,0.492759,0.984201,0.0252093,0.623297,0.0116274,0.0660054,0.439987,0.391311,0.8942,0.397462,0.513873,0.367226,0.574466,0.172712,0.398194,0.47081,0.724135,0.233888,0.722955,0.249176,0.892223,0.667992,0.19098,0.398324,0.798535,0.38377,0.734504,0.586407,0.0312957,0.0114388,0.249851,0.458038,0.421509,0.1772,0.402592,0.141786,0.00410753,0.318031,0.00257367,0.2607,0.014815,0.00247097,0.179564,0.804515,0.429166,0.731978,0.606769,0.990644,0.086975,0.308772,0.858498,0.380354,0.503128,0.597169,0.26971,0.0297925,0.207055,0.0612332,0.41612,0.350582,0.93174,0.953683,0.651038,0.446487,0.293603,0.601925,0.245902,0.697154,0.360336,0.731555,0.723757,0.16841,0.104711,0.12172,0.13843,0.755077,0.786388,0.845929,0.044506,0.537546,0.991225,0.777576,0.749616,0.74025,0.305974,0.311129,0.524636,0.0105643,0.275282,0.428544,0.0650881,0.0563147,0.214346,0.281226,0.0827274,0.464383,0.631904,0.286213,0.10939,0.351988,0.436212,0.912653,0.163243,0.845062,0.704198,0.0690308,0.872031,0.719835,0.890104,0.713658,0.181072,0.741876,|0.584149,0.0482726,0.549353,0.80172,0.293322,0.574477,0.945284,0.358716,0.105791,0.814698,0.0254285,0.638937,0.333829,0.749209,0.613732,0.0823464,0.0570847,0.374523,0.119285,0.00415194,0.0554223,0.305777,0.772082,0.726816,0.84353,0.588871,0.935347,0.229033,0.0838178,0.0655621,0.891596,0.475262,0.566869,0.871379,0.579624,0.102004,0.647726,0.675976,0.714929,0.00855929,0.280942,0.606093,0.275947,0.898346,0.415909,0.516429,0.0257899,0.0547132,0.159892,0.466195,0.196484,0.882342,0.230511,0.187302,0.974998,0.148772,0.847628,0.395615,0.927217,0.787949,0.321783,0.992423,0.935375,0.740022,0.285083,0.455387,0.225781,0.106691,0.766846,0.87561,0.382233,0.596441,0.802859,0.6662,0.731959,0.098794,0.648501,0.0532589,0.112327,0.744781,0.118501,0.142561,0.237825,0.13486,0.661071,0.659872,0.868928,0.587852,0.712615,0.0451626,0.715383,0.506352,0.0722261,0.657048,0.691321,0.223987,0.600864,0.495055,0.0304512,0.474804,0.356334,0.430923,0.445386,0.732525,0.156519,0.129265,0.571409,0.964127,0.210503,0.511131,0.394882,0.819827,0.777454,0.177577,0.340464,0.317873,0.908501,0.250709,0.886916,0.547349,0.381607,0.20528,0.0588537,0.221673,0.744889,0.181982,0.584015,0.118876,0.750319,0.248436,0.00497818,0.225424,0.442751,0.425712,0.289092,0.79261,0.888208,0.856204,0.571974,0.589194,0.55242,0.308144,0.691945,0.104673,0.420572,0.608146,0.027247,0.928404,0.0710201,0.502301,0.986369,0.663634,0.628806,0.648069,0.514377,0.947758,0.550388,0.563263,0.0849615,0.189953,0.94997,0.814553,0.752492,0.775302,0.365978,0.974368,0.797304,0.0109947,0.00227755,0.0189966,0.571173,0.898725,0.949099,0.694761,0.529345,0.9732,0.949301,0.248864,0.343015,0.46555,0.476414,0.604829,0.0767704,0.578417,0.0165697,0.427083,0.482119,0.591788,0.166572,0.00838715,0.195682,0.534143,0.990902,0.996124,0.0741999,0.861893,0.605544,0.116933,0.731966,0.450443,0.445491,0.789181,0.257111,0.940984,0.764356,0.694979,0.540893,0.819297,0.0720078,0.35921,0.0352951,0.122093,0.226368,0.285479,0.657184,0.93832,0.865092,0.229831,0.331462,0.604163,0.965298,0.651961,0.789824,0.853141,0.304981,0.357584,0.906591,0.321813,0.662639,0.0501254,0.174381,0.571329,0.422198,0.268952,0.0857747,0.533389,0.151312,0.405822,0.777624,0.763037,0.14132,0.477943,0.3067,0.914745,0.887662,0.161648,0.569559,0.188915,0.204543,0.520716,0.423443,0.389422,0.631294,0.730151,0.226725,0.675087,0.882641,0.39143,0.313597,0.891602,0.538949,0.369279,0.727613,0.413722,0.0229125,0.93502,0.361074,0.937404,0.459504,0.957364,0.91526,0.538937,0.233831,0.737327,0.429836,0.85264,0.416747,0.305575,0.24406,0.467138,0.275036,0.0497603,0.795117,0.38146,0.231018,0.491957,0.425888,0.0171921,0.32659,0.0824463,0.885609,0.593796,0.430706,0.617408,0.0979707,0.796727,0.379022,0.670775,0.361323,0.206146,0.0179125,0.185361,0.605253,0.725631,0.0981053,0.835623,0.188912,0.127622,0.686395,0.439709,0.745569,0.521008,0.821852,0.254927,0.868007,0.701552,0.866058,0.870899,0.250851,0.205357,0.967955,0.565334,0.782012,0.259115,0.322551,0.796903,0.299685,0.940573,0.688986,0.357734,0.388526,0.898466,0.487897,0.951874,0.651772,0.411479,0.192403,0.521426,0.866366,0.149199,0.624776,0.619303,0.596149,0.389933,0.515428,0.0497473,0.687088,0.383948,0.620476,0.52062,0.271467,0.0494806,0.790639,0.0517535,0.864577,0.158288,0.091549,0.269936,0.626416,0.525455,0.884757,0.866735,0.481075,0.0684927,0.490422,0.859464,0.929051,0.577794,0.595844,0.177575,0.823845,0.283543,0.358811,0.0357169,0.408713,0.12246,0.461227,0.948749,0.789701,0.135043,0.473206,0.0605863,0.516021,0.911834,0.199046,0.758077,0.827284,0.0709105,0.44346,0.42713,0.266527,0.672809,0.833364,0.229549,0.606687,0.10353,0.783824,0.0131222,0.372689,0.397848,0.58764,0.0973851,0.658017,0.323459,0.379274,0.74044,0.569399,0.461461,0.373533,0.43978,0.27506,0.408995,0.0096224,0.936986,0.732971,0.299721,0.0262562,0.563845,0.526866,0.967197,0.792792,0.677796,0.0356628,0.444948,0.320731,0.190278,0.429813,0.025673,0.208205,0.944438,0.303277,0.220689,0.203163,0.979277,0.80883,0.457835,0.785348,0.668236,0.713766,0.0320603,0.96436,0.513938,0.390113,0.759696,0.329826,0.397451,0.988511,0.331285,0.643289,0.753988,0.149984,0.890015,0.79781,0.319699,0.300274,0.980387,0.483583,0.601344,0.334286,0.728653,0.561,0.553135,0.452104,0.59568,0.871999,0.757791,0.847767,0.0667625,0.412455,0.94088,0.761319,0.204126,0.330551,0.908269,0.173658,0.317212,0.960528,0.254522,0.671894,0.324282,0.020019,0.976723,0.532318,0.655235,0.258927,0.421755,0.865864,0.922865,0.297042,0.67861,0.663453,0.854393,0.0200285,0.230895,0.545347,0.361589,0.0637894,0.156423,0.724981,0.165853,0.382828,0.346036,0.252073,0.588836,0.133049,0.786373,0.698953,0.746311,0.880821,0.206185,0.895473,0.4482,0.143895,0.202458,0.962696,0.621116,0.871652,0.69425,0.572194,0.561936,0.151417,0.110577,0.789185,0.765856,0.444922,0.581221,0.261482,0.777232,0.995317,0.00325245,0.811939,0.558204,0.254214,0.98481,0.769724,0.980193,0.408435,0.523108,0.738732,0.941155,0.35054,0.677078,0.194107,0.317825,0.223368,0.417017,0.988283,0.628131,0.94844,0.761816,0.843832,0.332829,0.133374,0.747433,0.352209,0.307478,0.387059,0.498284,0.888835,0.875751,0.192101,0.584352,0.441205,0.472662,0.838577,0.209703,0.809772,0.91923,0.508881,0.538228,0.779213,0.980461,0.665463,0.57718,0.693355,0.396995,0.0860149,0.755757,0.492383,0.968088,0.399737,0.27304,0.695017,0.87308,0.538977,0.160534,0.916494,0.927674,0.520623,0.432626,0.0206943,0.211544,0.771444,0.18629,0.35768,0.316242,0.0349113,0.716613,0.84488,0.839525,0.794884,0.208896,0.883841,0.472413,0.54625,0.96701,0.250508,0.910197,0.169394,0.832624,0.645444,0.236395,0.503996,0.411767,0.693277,0.12967,0.107639,0.399957,0.556251,0.194158,0.894017,0.565894,0.526991,0.120571,0.0177731,0.734062,0.498548,0.923553,0.170308,0.768084,0.113117,0.00115371,0.44422,0.689102,0.218206,0.663869,0.668137,0.550895,0.336838,0.750152,0.383007,0.45341,0.314336,0.0920143,0.845732,0.797847,0.39637,0.470619,0.161364,0.471977,0.107838,0.274577,0.245102,0.177593,0.447186,0.309435,0.636087,0.56973,0.857947,0.999531,0.0305789,0.406916,0.110428,0.843251,0.467315,0.258853,0.725215,0.0295982,0.0640975,0.227559,0.11526,0.435849,0.575335,0.796776,0.695418,0.796161,0.40361,0.0847713,0.0852146,0.806413,0.732246,0.348012,0.300758,0.0279787,0.286777,0.42499,0.18998,0.195432,0.494565,0.170233,0.859039,0.949282,0.533648,0.562782,0.886456,0.625857,0.984082,0.171494,0.0771872,0.00657666,0.641948,0.278086,0.0356102,0.467535,0.798764,0.314603,0.647947,0.626922,0.175677,0.539452,0.493342,0.148854,0.618844,0.77721,0.909669,0.492925,0.0787287,0.281069,0.382482,0.243303,0.0481792,0.296999,0.956697,0.45611,0.236568,0.373894,0.637178,0.699248,0.206778,0.537959,0.00168395,0.648905,0.562952,0.666328,0.337322,0.956127,0.313602,0.550086,0.0751901,0.0804867,0.181259,0.935168,0.215929,0.249488,0.915004,0.543989,0.618091,0.56694,0.269314,0.172287,0.665216,0.829252,0.0199712,0.722555,0.124688,0.315297,0.895717,0.161079,0.893157,0.493968,0.0137485,0.874681,0.1719,0.489173,0.453469,0.949473,0.449019,0.0698882,0.709894,0.39849,0.837199,0.294329,0.42641,0.819296,0.995983,0.910979,0.191505,0.414517,0.586702,0.979784,0.533049,0.690141,0.169239,0.716841,0.493269,0.386325,0.740532,0.74481,0.699283,0.168696,0.335034,0.107217,0.487767,0.29664,0.156972,0.610895,0.345136,0.326005,0.693178,0.157245,0.183739,0.28195,0.558979,0.563194,0.734482,0.950907,0.712269,0.994792,0.486513,0.0304912,0.577816,0.896481,0.952785,0.931878,0.713265,0.412232,0.890444,0.911394,0.291353,0.460927,0.0938819,0.161503,0.535981,0.764673,0.612633,0.620602,0.447751,0.80054,0.950092,0.787045,0.947163,0.615486,0.717624,0.193983,0.676656,0.92272,0.750741,0.397113,0.805663,0.305046,0.0183912,0.347732,0.061868,0.739948,0.235003,0.504697,0.201021,0.248891,0.5615,0.070848,0.564759,0.511222,0.605211,0.977839,0.505534,0.710135,0.126081,0.241442,0.145271,0.886141,0.200144,0.303745,0.938607,0.0182807,0.517306,0.705981,0.979793,0.670998,0.792471,0.591076,0.22832,0.659004,0.142141,0.361285,0.210264,0.29207,0.275439,0.869233,0.097029,0.655455,0.439636,0.968225,0.0098716,0.714664,0.268091,0.553601,0.333148,0.173988,0.887792,0.355436,0.69857,0.832292,0.406668,0.904031,0.219155,0.268243,0.967979,0.967681,0.232055,0.970257,0.365302,0.812273,0.159783,0.334408,0.0252447,0.447958,0.418283,0.947464,0.164652,0.710443,0.139292,0.827936,0.80401,0.0212646,0.707538,0.0915191,0.201745,0.477859,0.374477,0.779613,0.177182,0.2614,0.326322,0.135388,0.680155,0.332289,0.342123,0.443591,0.141645,0.896383,0.97271,0.331611,0.833616,0.849865,0.03381,0.0393238,0.223814,0.565378,0.571894,0.65571,0.584167,0.781233,0.629159,0.575898,0.69203,0.435745,0.180645,0.62213,0.91028,0.536984,0.955683,0.893505,0.791684,0.30332,0.48792,0.467702,0.759194,0.0691664,0.945486,0.272262,0.808518,0.452241,0.495893,0.000759125,0.194308,0.132628,0.205845,0.681233,0.686829,0.523838,0.65716,0.733151,0.340549,0.574705,0.203487,0.799215,0.38864,0.143642,0.178498,0.879691,0.785758,0.571648,0.669931,0.0722917,0.0460691,0.901174,0.00658411,0.44403,0.131771,0.128095,0.468516,0.896905,0.988258,0.46621,0.448388,0.721316,0.52268,0.0175968,0.673245,0.684319,|0.648891,0.696662,0.325589,0.99211,0.58539,0.883196,0.232695,0.199543,0.353739,0.67261,0.0921506,0.466363,0.278854,0.392998,0.480239,0.953779,0.79552,0.232824,0.281289,0.22221,0.909519,0.314261,0.58147,0.11018,0.777931,0.60561,0.778284,0.191551,0.0497661,0.40247,0.516612,0.0484987,0.368311,0.395192,0.694857,0.686215,0.406531,0.739111,0.0687599,0.38162,0.360985,0.246672,0.38582,0.776734,0.335147,0.548399,0.0988116,0.196704,0.790057,0.079765,0.658394,0.635477,0.211875,0.444307,0.241064,0.386384,0.577576,0.0949037,0.167772,0.903709,0.834918,0.0512674,0.918554,0.936946,0.0145576,0.442117,0.954039,0.0739565,0.385071,0.589156,0.563741,0.237326,0.40044,0.970271,0.286833,0.232334,0.875661,0.857714,0.604387,0.595679,0.727518,0.569503,0.106339,0.986452,0.419322,0.548913,0.496891,0.221705,0.271083,0.524885,0.924664,0.864678,0.715685,0.695565,0.0424554,0.843388,0.822435,0.294634,0.395445,0.626821,0.912153,0.0304357,0.0329127,0.232876,0.0205684,0.459798,0.612716,0.266043,0.291409,0.767958,0.0120875,0.564224,0.148264,0.297653,0.214473,0.306746,0.0951881,0.761837,0.661022,0.0131968,0.500987,0.909291,0.339656,0.268546,0.802043,0.489781,0.340859,0.88462,0.366375,0.915268,0.252922,0.416035,0.215476,0.801769,0.478768,0.626268,0.628003,0.11231,0.685385,0.0626777,0.440372,0.411734,0.609381,0.717852,0.908615,0.77571,0.984546,0.437021,0.422023,0.820474,0.255052,0.70785,0.230423,0.801592,0.659295,0.582995,0.279792,0.0198728,0.0207561,0.939807,0.218939,0.985823,0.0696932,0.551696,0.946658,0.850915,0.917904,0.630965,0.989725,0.0864416,0.425578,0.319838,0.873717,0.614085,0.538619,0.529748,0.675132,0.39048,0.658623,0.470487,0.503164,0.533683,0.990106,0.765491,0.695407,0.25221,0.693305,0.860166,0.176132,0.347615,0.522354,0.407687,0.0307598,0.529306,0.400442,0.287799,0.544225,0.211394,0.221402,0.130596,0.817339,0.305146,0.701415,0.0885296,0.717274,0.564975,0.330278,0.94171,0.0484986,0.633791,0.54417,0.178289,0.0135257,0.51341,0.117882,0.611596,0.250126,0.0466861,0.279278,0.474873,0.523683,0.428366,0.975574,0.257694,0.800105,0.90056,0.648493,0.931686,0.705624,0.204373,0.867435,0.0894889,0.622603,0.476984,0.279041,0.498421,0.250006,0.466367,0.790033,0.835924,0.272105,0.0303012,0.39764,0.457476,0.943299,0.203724,0.105522,0.312637,0.311321,0.881208,0.603376,0.974215,0.728749,0.225548,0.602858,0.45684,0.877754,0.684039,0.595185,0.320989,0.73855,0.447186,0.898459,0.0225525,0.796876,0.274696,0.470738,0.384475,0.989383,0.484311,0.681331,0.446912,0.319866,0.132723,0.405338,0.389549,0.538745,0.974359,0.574995,0.479044,0.574978,0.756264,0.165334,0.80293,0.835057,0.101542,0.742189,0.403567,0.0241035,0.0443937,0.801491,0.522479,0.124391,0.920242,0.784629,0.875062,0.384508,0.579722,0.259885,0.729848,0.920105,0.923741,0.427774,0.0893629,0.517712,0.317775,0.337694,0.34573,0.774567,0.920661,0.823858,0.500893,0.223735,0.600314,0.637628,0.523992,0.429947,0.956266,0.209054,0.947754,0.0244692,0.487822,0.218445,0.593773,0.517991,0.430578,0.811394,0.350214,0.761543,0.0921642,0.720409,0.992282,0.233861,0.115192,0.629879,0.65722,0.0500882,0.338551,0.733923,0.113083,0.392888,0.704897,0.206256,0.721926,0.506486,0.712337,0.126386,0.833044,0.410436,0.156575,0.873834,0.744201,0.11139,0.881733,0.435059,0.521614,0.780244,0.261655,0.233093,0.904399,0.411313,0.942852,0.592943,0.60699,0.706614,0.736583,0.93854,0.169704,0.13986,0.0206594,0.742476,0.0904839,0.667872,0.844255,0.452679,0.0826017,0.582491,0.612772,0.748069,0.759236,0.220859,0.446109,0.771144,0.514698,0.350788,0.0206521,0.779748,0.722741,0.930435,0.883625,0.733357,0.199169,0.955227,0.202377,0.599096,0.225492,0.357172,0.514565,0.663339,0.239681,0.302147,0.895227,0.889311,0.810916,0.708164,0.96594,0.542827,0.313982,0.195427,0.11718,0.864113,0.406075,0.349478,0.0578235,0.955031,0.18857,0.939927,0.204747,0.0733641,0.160583,0.636071,0.511959,0.726432,0.288261,0.217595,0.0215394,0.00685751,0.925782,0.805778,0.333394,0.0278445,0.729471,0.0311629,0.358051,0.615066,0.896974,0.914492,0.919258,0.477951,0.531757,0.85855,0.133319,0.614776,0.368343,0.546576,0.903929,0.70098,0.499815,0.894933,0.191231,0.640632,0.285778,0.267331,0.928402,0.781992,0.439427,0.0652803,0.770951,0.550416,0.206801,0.771867,0.221492,0.872089,0.0670786,0.719993,0.299483,0.417636,0.523983,0.7787,0.163599,0.657766,0.355545,0.168259,0.72911,0.492187,0.744923,0.628756,0.538261,0.20437,0.170119,0.500384,0.0125932,0.716305,0.760146,0.233153,0.525007,0.531931,0.929848,0.748662,0.711221,0.0196168,0.892695,0.984921,0.682637,0.982034,0.955199,0.675134,0.959607,0.0580651,0.437645,0.336963,0.178805,0.710611,0.367919,0.658225,0.938832,0.709637,0.819825,0.427494,0.0832226,0.203104,0.484959,0.464901,0.814127,0.144847,0.44711,0.0674495,0.938388,0.278489,0.144735,0.451848,0.399098,0.719772,0.0805821,0.923542,0.0812299,0.746948,0.156259,0.700965,0.676907,0.25269,0.373315,0.587094,0.443006,0.502275,0.890002,0.195251,0.706499,0.68343,0.583526,0.0128741,0.0589753,0.0289699,0.987169,0.965007,0.505631,0.234532,0.387505,0.566409,0.0394594,0.400804,0.432733,0.0792839,0.923724,0.346991,0.638189,0.0859405,0.242196,0.393497,0.779341,0.563667,0.0115338,0.550079,0.464864,0.849106,0.20904,0.658067,0.834949,0.999187,0.549401,0.600903,0.712374,0.436719,0.049604,0.400347,0.294619,0.244045,0.925484,0.484817,0.243205,0.143165,0.993888,0.130309,0.714552,0.145016,0.954176,0.133801,0.126058,0.675385,0.19981,0.0624368,0.196766,0.620438,0.181306,0.282282,0.424429,0.429876,0.462171,0.26708,0.952027,0.618729,0.759117,0.475416,0.569422,0.601115,0.581693,0.365279,0.443389,0.0372019,0.797575,0.240427,0.300911,0.347784,0.362038,0.43799,0.219154,0.0675583,0.547898,0.276088,0.859789,0.738617,0.890851,0.858927,0.42084,0.331711,0.290322,0.87077,0.293467,0.170036,0.344555,0.344233,0.0215624,0.610667,0.922738,0.565586,0.350998,0.627153,0.473178,0.575785,0.784648,0.585237,0.920338,0.026105,0.690663,0.550918,0.646802,0.728227,0.596609,0.509648,0.530008,0.0774715,0.225795,0.866821,0.594184,0.305313,0.118876,0.979253,0.164384,0.759191,0.383827,0.956442,0.0202974,0.454714,0.0420658,0.843145,0.256954,0.789658,0.566352,0.116745,0.745945,0.165694,0.432655,0.333471,0.523109,0.385902,0.108239,0.435162,0.967707,0.77259,0.853118,0.430824,0.0963388,0.740564,0.572331,0.694905,0.396489,0.827595,0.98545,0.609198,0.0959301,0.357213,0.584233,0.671856,0.428147,0.623314,0.100256,0.512704,0.508649,0.594769,0.792828,0.0246361,0.127891,0.441184,0.0648122,0.0679541,0.254332,0.829465,0.621405,0.888921,0.364713,0.385187,0.264689,0.337446,0.132691,0.245711,0.496504,0.508241,0.969308,0.99195,0.213796,0.983638,0.576461,0.3472,0.413538,0.279477,0.353313,0.366772,0.0992265,0.300271,0.693612,0.210125,0.447131,0.15529,0.654225,0.0384939,0.154923,0.603856,0.479705,0.961767,0.714439,0.518852,0.544649,0.847116,0.842524,0.510808,0.222262,0.167553,0.0614415,0.0552992,0.535608,0.66715,0.564815,0.680298,0.461136,0.0253736,0.646267,0.12324,0.967204,0.010546,0.459813,0.831412,0.0525725,0.293368,0.876999,0.930245,0.913051,0.894597,0.293449,0.913602,0.745562,0.856931,0.452739,0.588384,0.994474,0.982818,0.186112,0.0736284,0.359066,0.0259709,0.386503,0.516766,0.715385,0.243718,0.317577,0.950492,0.710416,0.370254,0.878698,0.0548069,0.0182795,0.454078,0.774523,0.639008,0.848204,0.861342,0.347928,0.457847,0.879891,0.488989,0.289264,0.79071,0.02048,0.370015,0.730749,0.315217,0.285979,0.356846,0.339078,0.721426,0.85663,0.253872,0.308259,0.832728,0.12799,0.464222,0.446786,0.607103,0.413384,0.169272,0.148362,0.625264,0.809924,0.748797,0.495114,0.399465,0.548039,0.213242,0.768,0.334085,0.458147,0.0949336,0.723644,0.797533,0.0152103,0.932661,0.376352,0.215929,0.157885,0.925118,0.307468,0.653778,0.611773,0.0886974,0.52454,0.0546953,0.807621,0.166889,0.748219,0.859409,0.495571,0.117244,0.434421,0.579391,0.00995803,0.917627,0.556874,0.284885,0.947478,0.631645,0.432025,0.785959,0.780996,0.285727,0.920178,0.275101,0.861554,0.532245,0.0150653,0.473114,0.617289,0.455404,0.468638,0.408224,0.834504,0.901107,0.0210085,0.0619496,0.538782,0.394818,0.117406,0.239012,0.651792,0.964972,0.0635955,0.547407,0.831186,0.603188,0.24593,0.260794,0.517205,0.032445,0.245854,0.297508,0.272059,0.871129,0.70235,0.230696,0.425211,0.621054,0.36271,0.572892,0.59565,0.514106,0.573316,0.916098,0.495487,0.760807,0.0256054,0.711608,0.120792,0.835054,0.897441,0.818512,0.796427,0.967623,0.40242,0.103719,0.928126,0.233279,0.396679,0.801505,0.923247,0.856712,0.811592,0.278732,0.374614,0.506707,0.0170756,0.732496,0.453167,0.261144,0.667743,0.921587,0.245816,0.872214,0.289784,0.234695,0.862727,0.887151,0.49707,0.828733,0.576626,0.616126,0.854813,0.640429,0.726017,0.354021,0.951159,0.379672,0.321691,0.758364,0.563232,0.546291,0.840901,0.932638,0.438924,0.614165,0.250618,0.315816,0.882993,0.657996,0.135735,0.420011,0.381274,0.151248,0.556404,0.628006,0.860125,0.200065,0.491157,0.635067,0.419919,0.972291,0.558631,0.909209,0.155247,0.879825,0.778453,0.442568,0.977613,0.651008,0.0845327,0.7065,0.0490379,0.869399,0.540494,0.243859,0.626414,0.826882,0.714525,0.713505,0.548966,0.466979,0.701782,0.0533519,0.365906,0.460687,0.157017,0.710634,0.78271,|0.0601362,0.315302,0.67816,0.90075,0.984276,0.542704,0.271416,0.529105,0.183626,0.103029,0.746641,0.462255,0.572108,0.879332,0.612865,0.183607,0.420727,0.315361,0.338611,0.524296,0.376647,0.283974,0.222326,0.0247554,0.11138,0.692568,0.705775,0.575301,0.826286,0.843498,0.211176,0.0958154,0.907013,0.203962,0.697837,0.156687,0.376295,0.388352,0.46896,0.749478,0.64508,0.124322,0.901553,0.934375,0.901048,0.776996,0.78926,0.495669,0.120118,0.369661,0.949591,0.691345,0.152514,0.513388,0.487491,0.934166,0.897515,0.324615,0.92151,0.315307,0.878531,0.797272,0.868073,0.949787,0.838404,0.711759,0.598824,0.00812775,0.744087,0.36314,0.39525,0.181642,0.243991,0.23804,0.170728,0.778987,0.804625,0.527122,0.64201,0.455202,0.45729,0.599062,0.0690463,0.519004,0.362553,0.327152,0.822698,0.921042,0.72968,0.631862,0.829159,0.787237,0.0559499,0.411069,0.846457,0.534078,0.245282,0.357436,0.997203,0.703453,0.612707,0.566894,0.217877,0.987282,0.508569,0.204645,0.257778,0.49155,0.0871774,0.766969,0.870671,0.304598,0.161242,0.400987,0.854592,0.561552,0.378182,0.996207,0.0412412,0.201762,0.795901,0.73982,0.608615,0.0736033,0.878901,0.641413,0.0385626,0.972173,0.410349,0.0814635,0.585455,0.897555,0.0543755,0.538897,0.967577,0.503624,0.711843,0.331358,0.0788307,0.943873,0.62852,0.116718,0.852884,0.640342,0.694426,0.870617,0.263458,0.0801222,0.686191,0.711815,0.968389,0.442779,0.0878903,0.932271,0.340035,0.340271,0.656987,0.643811,0.501993,0.194017,0.132757,0.135723,0.750599,0.303516,0.666786,0.41551,0.158764,0.358175,0.169566,0.198954,0.199891,0.395621,0.149001,0.629937,0.686851,0.513104,0.725245,0.793034,0.500774,0.243962,0.139243,0.146073,0.972205,0.0789806,0.34393,0.338769,0.9147,0.437745,0.301318,0.827733,0.705738,0.510327,0.740995,0.627089,0.247049,0.0452246,0.686735,0.156048,0.793461,0.274955,0.931367,0.0649503,0.0189906,0.0885347,0.976453,0.695538,0.999684,0.389855,0.591349,0.993819,0.306423,0.06784,0.614736,0.863839,0.287559,0.296443,0.0426614,0.300147,0.649804,0.220326,0.253447,0.40498,0.72273,0.723554,0.83151,0.536695,0.701114,0.872543,0.10666,0.226731,0.67527,0.270985,0.784288,0.486537,0.220809,0.829515,0.683339,0.418073,0.904492,0.811778,0.201484,0.760358,0.345882,0.982342,0.979912,0.6414,0.816556,0.654972,0.442193,0.677648,0.535267,0.747334,0.0846636,0.963712,0.591814,0.865873,0.364727,0.88106,0.825901,0.184631,0.61037,0.079469,0.867191,0.951851,0.245572,0.229026,0.582034,0.143787,0.957745,0.676531,0.287831,0.839014,0.490897,0.227881,0.756994,0.976836,0.985936,0.466241,0.113155,0.584793,0.578841,0.456856,0.162454,0.15586,0.0281656,0.335965,0.303501,0.853911,0.690933,0.236415,0.0288968,0.540395,0.988344,0.864969,0.727853,0.998917,0.0129128,0.229898,0.210275,0.766424,0.910092,0.486876,0.645705,0.207033,0.485687,0.443161,0.542873,0.31978,0.849465,0.0565661,0.678061,0.246978,0.452792,0.946955,0.772276,0.299369,0.181042,0.427373,0.378116,0.872875,0.277839,0.301874,0.968835,0.458703,0.693693,0.615349,0.513336,0.464153,0.042932,0.605934,0.951957,0.893901,0.428357,0.769562,0.383668,0.615839,0.887848,0.399045,0.0216655,0.577182,0.99639,0.87995,0.794967,0.386319,0.427826,0.147739,0.747922,0.962815,0.167528,0.38416,0.800158,0.726542,0.0815525,0.355959,0.880428,0.190085,0.545433,0.323428,0.512935,0.0867823,0.0637603,0.560177,0.868026,0.829704,0.784706,0.90381,0.983829,0.435455,0.4081,0.898784,0.474491,0.990954,0.969833,0.916562,0.821326,0.259783,0.479249,0.31932,0.681276,0.213944,0.632231,0.819301,0.614463,0.701405,8.34465e-05,0.463987,0.37595,0.543955,0.418283,0.989731,0.621578,0.577888,0.235876,0.717812,0.690132,0.623234,0.736153,0.989367,0.618765,0.37601,0.177082,0.99701,0.0686031,0.148662,0.394094,0.993294,0.188688,0.0236295,0.789875,0.681402,0.143803,0.821625,0.993209,0.209854,0.654025,0.138892,0.753802,0.959286,0.82088,0.182351,0.233937,0.522581,0.444794,0.679101,0.627433,0.744194,0.674123,0.128401,0.698169,0.613064,0.674201,0.901694,0.278047,0.71131,0.345009,0.0986946,0.940504,0.921522,0.315281,0.18142,0.859704,0.325924,0.393207,0.0748896,0.739937,0.23458,0.0561471,0.130437,0.669036,0.971843,0.229471,0.803663,0.251012,0.752069,0.223803,0.929129,0.0275347,0.721211,0.746666,0.954547,0.280891,0.680134,0.554174,0.38928,0.621627,0.992574,0.740752,0.0867749,0.213773,0.207816,0.118369,0.0259765,0.403805,0.548895,0.246618,0.761323,0.842368,0.248013,0.389711,0.170509,0.302976,0.583203,0.84772,0.631323,0.486914,0.939154,0.626058,0.430175,0.913968,0.687107,0.81045,0.972524,0.84047,0.15801,0.768954,0.681221,0.63038,0.961316,0.876103,0.927752,0.306034,0.669163,0.622089,0.201684,0.0773985,0.32931,0.503845,0.945795,0.544544,0.115173,0.179048,0.330993,0.649252,0.513739,0.901991,0.225637,0.194099,0.613852,0.519236,0.89024,0.390565,0.113436,0.168809,0.470966,0.891689,0.552251,0.509383,0.0218094,0.455374,0.109599,0.825922,0.988634,0.299138,0.556855,0.484619,0.956504,0.368149,0.92836,0.88062,0.804741,0.983875,0.68855,0.973538,0.287381,0.0960822,0.32998,0.635006,0.270686,0.741629,0.845149,0.0531092,0.561654,0.932324,0.59302,0.0297549,0.813884,0.827039,0.0766187,0.404523,0.806473,0.819676,0.518207,0.658295,0.916048,0.263766,0.81856,0.685364,0.137325,0.443325,0.69645,0.960885,0.556119,0.103155,0.0575032,0.886949,0.257765,0.524921,0.671714,0.167932,0.755062,0.169713,0.563659,0.366574,0.963795,0.530111,0.25322,0.723789,0.970781,0.405661,0.391803,0.918034,0.442247,0.723967,0.992249,0.246644,0.631691,0.71938,0.379519,0.272843,0.815298,0.174237,0.124942,0.212342,0.278767,0.383504,0.785567,0.497218,0.446451,0.79585,0.43916,0.698545,0.876396,0.404495,0.585141,0.965877,0.893268,0.80792,0.728806,0.752019,0.949663,0.752469,0.528969,0.34725,0.268102,0.315087,0.638112,0.00629735,0.484452,0.262169,0.35929,0.820584,0.389143,0.331143,0.784358,0.885817,0.928878,0.974398,0.783583,0.826427,0.96624,0.657005,0.747282,0.869796,0.907367,0.956296,0.446838,0.419014,0.342829,0.434101,0.143367,0.763211,0.431057,0.723077,0.466281,0.671273,0.159584,0.971382,0.613934,0.768692,0.0947411,0.567726,0.759806,0.224884,0.470965,0.249994,0.40241,0.59425,0.174746,0.283967,0.0973966,0.581341,0.87709,0.498248,0.341476,0.555338,0.522132,0.382968,0.417296,0.115451,0.00124562,0.0779518,0.38468,0.844079,0.740521,0.57098,0.493295,0.365379,0.932164,0.560619,0.382885,0.363255,0.704708,0.257099,0.51363,0.947563,0.485965,0.189298,0.170967,0.00667572,0.220473,0.241169,0.977167,0.192306,0.0185373,0.408674,0.0449675,0.654825,0.440245,0.922097,0.591605,0.435236,0.00917715,0.0209941,0.869361,0.42394,0.694841,0.302913,0.829467,0.621611,0.146298,0.524122,0.818855,0.070222,0.397948,0.303682,0.538173,0.870977,0.823798,0.195584,0.339932,0.873533,0.376163,0.814438,0.698926,0.0800547,0.845175,0.578603,0.284421,0.267919,0.383268,0.0390509,0.801274,0.955841,0.545392,0.418078,0.668916,0.0490561,0.142699,0.568387,0.420615,0.413679,0.598141,0.404706,0.696874,0.490837,0.300275,0.818942,0.866951,0.00241339,0.425779,0.724692,0.325114,0.44769,0.402735,0.966532,0.652897,0.601853,0.171948,0.0126112,0.435807,0.819761,0.682175,0.496799,0.702259,0.0596172,0.257917,0.979108,0.638472,0.513652,0.774682,0.492584,0.456695,0.0100509,0.905176,0.896202,0.686184,0.419173,0.23108,0.172521,0.288451,0.15873,0.332904,0.392788,0.202779,0.875687,0.658018,0.75042,0.330435,0.804954,0.99518,0.453987,0.588395,0.570145,0.116576,0.887375,0.525814,0.837743,0.608317,0.0596215,0.534819,0.190183,0.495996,0.533109,0.520701,0.843117,0.674074,0.309583,0.837802,0.406053,0.31553,0.1141,0.311038,0.741241,0.445642,0.667487,0.695269,0.86153,0.737189,0.371312,0.818456,0.169397,0.718976,0.335171,0.950293,0.29205,0.978207,0.759764,0.961193,0.233454,0.301161,0.220252,0.902287,0.576005,0.87488,0.346717,0.711433,0.576332,0.219843,0.420841,0.361577,0.957996,0.0321562,0.628257,0.974553,0.548133,0.609064,0.890264,0.479775,0.331589,0.719846,0.0339186,0.333437,0.88939,0.970495,0.524767,7.33137e-06,0.360165,0.974657,0.399136,0.993408,0.952896,0.571923,0.2139,0.990634,0.356346,0.429519,0.218369,0.236569,0.631221,0.687748,0.21306,0.127394,0.382892,0.592696,0.182717,0.306179,0.535989,0.0620498,0.0749692,0.630082,0.260482,0.234176,0.681487,0.514591,0.340054,0.140118,0.638538,0.682672,0.822822,0.0583116,0.740118,0.690623,0.560009,0.512511,0.217316,0.935734,0.983226,0.509776,0.849426,0.122256,0.41691,0.530935,0.779434,0.861406,0.126107,0.703565,0.852552,0.703299,0.790435,0.207475,0.363505,0.542445,0.11695,0.998711,0.77421,0.586896,0.734648,0.760812,0.367267,0.0013113,0.145245,0.996417,0.129685,0.252633,0.00427657,0.799612,0.21895,0.0615796,0.254972,0.356119,0.223366,0.360185,0.279982,0.724384,0.243657,0.497284,0.989862,0.0504417,0.158136,0.802025,0.3976,0.0132541,0.822426,0.25303,0.974825,0.358064,0.641731,0.508471,0.323243,0.537321,0.320699,0.807417,0.969848,0.270606,0.375778,0.908232,0.736929,0.943166,0.135076,0.239243,0.0476058,0.249965,0.634322,0.81882,0.478789,0.0820565,0.0913491,0.350398,0.295998,0.49052,0.318817,0.684184,0.39069,0.617191,0.681262,0.555647,0.743236,0.210885,0.086498,0.579946,0.553432,0.907636,0.325786,0.606063,0.851078,0.428108,0.35621,0.162301,0.358405,0.724761,|0.332035,0.505818,0.769451,0.498312,0.134472,0.943155,0.61012,0.809481,0.843912,0.739463,0.272326,0.289851,0.593545,0.819484,0.251367,0.604778,0.737087,0.711539,0.263429,0.099678,0.268111,0.288422,0.000202119,0.0172541,0.773573,0.115749,0.978797,0.644803,0.811677,0.298739,0.0450364,0.717903,0.580767,0.448833,0.454673,0.576837,0.140649,0.93872,0.666419,0.0207291,0.296166,0.410065,0.868415,0.999903,0.735032,0.172694,0.720349,0.38828,0.754666,0.792864,0.938214,0.26682,0.420787,0.480286,0.245613,0.493649,0.243753,0.758393,0.239396,0.0948516,0.148789,0.228882,0.12929,0.0947878,0.0403029,0.421865,0.644334,0.951359,0.621479,0.241051,0.551249,0.067306,0.726509,0.459138,0.614804,0.505772,0.244092,0.417003,0.822699,0.343112,0.943358,0.913714,0.451055,0.91837,0.310316,0.892339,0.257537,0.85956,0.0661002,0.353977,0.966158,0.872849,0.0078283,0.422532,0.0162209,0.107329,0.871586,0.899633,0.471301,0.0746508,0.0215269,0.61827,0.129063,0.908497,0.853094,0.527288,0.00286746,0.016449,0.624941,0.830812,0.898448,0.231564,0.734287,0.302319,0.678068,0.562186,0.290822,0.686017,0.336563,0.47581,0.548089,0.824534,0.764632,0.491297,0.165145,0.740005,0.676566,0.59534,0.801258,0.0429657,0.12668,0.36165,0.413928,0.527972,0.519284,0.555555,0.746177,0.752988,0.0463622,0.779543,0.9345,0.258501,0.44474,0.470348,0.0526308,0.729491,0.801994,0.490205,0.109872,0.251454,0.868468,0.892702,0.0564283,0.41076,0.903069,0.690968,0.567107,0.0685161,0.819962,0.194462,0.444886,0.506211,0.795605,0.586238,0.624297,0.460416,0.573626,0.615894,0.0463384,0.257274,0.538981,0.151757,0.77127,0.556701,0.928553,0.644828,0.250754,0.118961,0.323947,0.368128,0.520943,0.709583,0.635378,0.18144,0.468188,0.342338,0.915861,0.538519,0.779337,0.768353,0.589174,0.128024,0.115699,0.708597,0.771449,0.911313,0.11652,0.82292,0.789687,0.95385,0.226969,0.638443,0.434854,0.133321,0.911199,0.893053,0.671029,0.891577,0.324113,0.0920638,0.532983,0.630642,0.98498,0.0316978,0.272926,0.555592,0.819889,0.251739,0.72367,0.349295,0.14131,0.497075,0.841256,0.249367,0.545011,0.405285,0.990618,0.339692,0.116692,0.548371,0.2675,0.24987,0.583324,0.810147,0.777319,0.994018,0.475226,0.0100847,0.0190524,0.706825,0.70289,0.118524,0.0532078,0.0437573,0.186368,0.641174,0.282096,0.758351,0.789329,0.708574,0.553156,0.238702,0.90775,0.65679,0.602999,0.838198,0.633473,0.628763,0.628223,0.714433,0.0215812,0.703532,0.897478,0.0852674,0.605209,0.137625,0.893609,0.622931,0.883837,0.815606,0.468318,0.250131,0.624242,0.266407,0.782644,0.139156,0.998537,0.378201,0.0787793,0.00902861,0.627777,0.00226319,0.141131,0.569247,0.427807,0.605491,0.481393,0.213527,0.521645,0.966482,0.293252,0.070995,0.144303,0.0356213,0.95784,0.776397,0.606872,0.972965,0.471078,0.507219,0.425487,0.487723,0.304452,0.297656,0.394473,0.655764,0.773771,0.928136,0.893455,0.477963,0.591513,0.169747,0.334976,0.529044,0.831454,0.354945,0.854098,0.792018,0.532521,0.945087,0.909199,0.808086,0.733251,0.266587,0.347841,0.31398,0.52525,0.97839,0.391743,0.538782,0.0526908,0.244819,0.37964,0.616898,0.878597,0.619583,0.152746,0.535118,0.314013,0.792652,0.591946,0.0293322,0.990402,0.96525,0.313841,0.974227,0.840509,0.264824,0.50866,0.82357,0.286686,0.0483466,0.199569,0.902816,0.107752,0.253472,0.38672,0.777173,0.86101,0.639763,0.962143,0.381666,0.341688,0.275119,0.360436,0.976091,0.741786,0.525545,0.982659,0.578821,0.583454,0.625105,0.558046,0.558405,0.0733353,0.883831,0.930817,0.550792,0.414457,0.867192,0.236499,0.0194532,0.275746,0.799393,0.80572,0.62422,0.496452,0.412534,0.701296,0.438434,0.188337,0.130446,0.208674,0.936833,0.962768,0.95858,0.834224,0.00591248,0.052623,0.540498,0.757455,0.159716,0.806384,0.665114,0.72082,0.00903434,0.110846,0.457241,0.960894,0.938928,0.931563,0.442727,0.753795,0.376845,0.0514085,0.187637,0.649731,0.162354,0.637756,0.78943,0.823833,0.452995,0.426161,0.447264,0.914323,0.0636538,0.675765,0.621249,0.894023,0.2427,0.0717173,0.85249,0.158818,0.105595,0.797971,0.325504,0.156003,0.407306,0.408061,0.894628,0.465293,0.437075,0.0699026,0.858223,0.911677,0.353202,0.0695553,0.720388,0.512053,0.393154,0.366996,0.380969,0.889554,0.721291,0.103381,0.0723772,0.16247,0.604379,0.697696,0.772154,0.336421,0.017464,0.957013,0.765812,0.781731,0.392739,0.354835,0.230503,0.410165,0.352997,0.0637401,0.380249,0.833875,0.898812,0.928413,0.0250555,0.16805,0.596761,0.319686,0.544959,0.602787,0.472227,0.089837,0.207395,0.911463,0.494864,0.772074,0.153043,0.364092,0.442077,0.388358,0.00524372,0.704426,0.166062,0.862137,0.138735,0.293341,0.547222,0.112506,0.606776,0.0565578,0.225528,0.581668,0.834167,0.470779,0.915615,0.056287,0.421286,0.968004,0.588672,0.104963,0.305742,0.804737,0.235668,0.469378,0.01724,0.604813,0.674297,0.90882,0.162621,0.389466,0.534249,0.537155,0.52555,0.795737,0.572415,0.192828,0.657686,0.72222,0.405504,0.306457,0.906869,0.0341886,0.318258,0.580116,0.369581,0.355354,0.932803,0.793306,0.448267,0.218238,0.532756,0.719306,0.255595,0.977333,0.584269,0.983816,0.328259,0.945315,0.0523664,0.805777,0.891018,0.366353,0.170624,0.00760919,0.468253,0.254121,0.252675,0.843946,0.62048,0.865574,0.118836,0.673994,0.819749,0.311901,0.412512,0.881203,0.133857,0.264685,0.939479,0.279716,0.874907,0.433873,0.236147,0.971294,0.187827,0.652547,0.313555,0.235642,0.865677,0.411383,0.0252398,0.568566,0.743244,0.00719416,0.593424,0.460949,0.523617,0.498193,0.625952,0.54503,0.807423,0.419891,0.804062,0.206588,0.106939,0.835298,0.465762,0.546748,0.699339,0.603138,0.669084,0.946328,0.0280776,0.669303,0.382072,0.747015,0.559148,0.116202,0.415094,0.808141,0.102381,0.570572,0.94798,0.5925,0.512494,0.358882,0.00183517,0.42602,0.872492,0.135785,0.51645,0.951846,0.595985,0.466483,0.293217,0.966266,0.0433115,0.160425,0.716006,0.280245,0.641926,0.352235,0.917447,0.419486,0.306122,0.521762,0.747605,0.523815,0.531867,0.95399,0.0689403,0.787859,0.423779,0.946717,0.114044,0.909795,0.541063,0.54936,0.293457,0.319315,0.414666,0.0782755,0.183239,0.986548,0.339632,0.975975,0.898098,0.0470183,0.920525,0.95313,0.0139576,0.0218765,0.386099,0.193255,0.550319,0.122132,0.879139,0.860648,0.589063,0.0661097,0.239199,0.482413,0.367121,0.811982,0.590881,0.848439,0.669407,0.128297,0.177682,0.354165,0.111036,0.155024,0.228713,0.294664,0.546875,0.966472,0.105654,0.539072,0.448333,0.879176,0.0293868,0.959,0.384853,0.227772,0.856549,0.538149,0.88414,0.294297,0.431351,0.931652,0.328313,0.356025,0.898525,0.964125,0.657681,0.503447,0.471401,0.130288,0.223926,0.931166,0.0602362,0.109821,0.589722,0.597904,0.00947464,0.971017,0.295809,0.138748,0.742481,0.241681,0.0928041,0.306564,0.104373,0.728054,0.142509,0.663776,0.164833,0.511536,0.527302,0.500084,0.964938,0.214359,0.995212,0.819959,0.63928,0.0639321,0.593368,0.917968,0.928441,0.405217,0.227798,0.169159,0.887515,0.816888,0.551091,0.961977,0.0545401,0.591635,0.141396,0.164371,0.534971,0.820861,0.994313,0.560168,0.000271618,0.884202,0.756355,0.469905,0.510978,0.0942372,0.920624,0.333504,0.216961,0.97867,0.0969759,0.737312,0.792839,0.681299,0.753342,0.961136,0.346865,0.85161,0.494151,0.0393366,0.980906,0.146372,0.901197,0.2492,0.0970823,0.66003,0.270423,0.15598,0.63997,0.860636,0.260417,0.458697,0.188867,0.138528,0.226414,0.339296,0.465848,0.0700845,0.470395,0.2176,0.468812,0.285063,0.80916,0.880138,0.594299,0.387679,0.881253,0.591157,0.507742,0.186111,0.917882,0.800721,0.679473,0.993939,0.760497,0.779462,0.553625,0.919011,0.465515,0.890521,0.516385,0.56851,0.9184,0.197127,0.58701,0.958548,0.34041,0.958705,0.905118,0.183525,0.759234,0.925541,0.641482,0.60139,0.0905803,0.547931,0.650686,0.69182,0.9567,0.691888,0.206106,0.264823,0.0953338,0.469747,0.735802,0.298891,0.0099349,0.0596099,0.0519742,0.609967,0.854568,0.416372,0.695515,0.606935,0.684878,0.582541,0.0622696,0.520922,0.919601,0.459628,0.644671,0.572339,0.574671,0.347559,0.437654,0.673728,0.132558,0.0439136,0.299536,0.189852,0.108741,0.443869,0.555641,0.451528,0.757939,0.778319,0.110775,0.919775,0.256082,0.469451,0.860699,0.0450985,0.219327,0.588888,0.483697,0.0687682,0.157317,0.424677,0.976979,0.199408,0.456191,0.305396,0.553467,0.623517,0.860428,0.976272,0.103627,0.533109,0.386169,0.694691,0.607645,0.832437,0.183309,0.986958,0.696976,0.158645,0.979032,0.107373,0.360296,0.385335,0.039659,0.234228,0.00958931,0.0531541,0.100606,0.0402082,0.242475,0.593933,0.861302,0.656709,0.987082,0.157179,0.912413,0.116937,0.105438,0.781811,0.103813,0.755352,0.352751,0.282264,0.116757,0.556776,0.0290047,0.604445,0.879933,0.975046,0.343491,0.538973,0.228592,0.945504,0.0100973,0.0588962,0.530001,0.586819,0.244925,0.14118,0.713791,0.121177,0.658663,0.336813,0.900733,0.0126406,0.708847,0.480803,0.562079,0.251374,0.176866,0.890846,0.183356,0.902186,0.150895,0.796957,0.945236,0.760094,0.255906,0.586415,0.480113,0.0135638,0.823145,0.0693215,0.508637,0.962833,0.136892,0.370838,0.202067,0.399859,0.383504,0.263137,0.878435,0.462658,0.37057,0.748586,0.0785334,0.944823,0.0745054,0.86491,0.735879,0.0105578,0.0628778,0.395822,0.175257,0.0261346,0.922541,0.974254,0.739764,0.912358,0.543905,0.169991,0.529804,0.401438,0.595766,0.268464,0.261396,0.413899,0.383198,|0.3003,0.415621,0.340537,0.816894,0.910527,0.0950171,0.568867,0.445896,0.324347,0.0951219,0.931807,0.669885,0.53834,0.295211,0.167982,0.187722,0.184575,0.63918,0.26771,0.85969,0.25668,0.368769,0.829139,0.969535,0.415714,0.113553,0.403977,0.440068,0.0878332,0.0740151,0.669526,0.147116,0.00163704,0.302181,0.839831,0.191117,0.230529,0.790349,0.808486,0.566474,0.0438589,0.320249,0.298121,0.578479,0.582869,0.455559,0.407951,0.119054,0.732772,0.0318641,0.842668,0.0573074,0.603393,0.758457,0.134882,0.161823,0.677738,0.434182,0.685679,0.365016,0.175331,0.611362,0.762782,0.572288,0.296548,0.93911,0.4644,0.602411,0.807402,0.796005,0.51558,0.88622,0.061915,0.648009,0.87652,0.592354,0.0506664,0.638633,0.128774,0.219199,0.674141,0.858621,0.349388,0.549684,0.501901,0.00863636,0.0332552,0.564597,0.649975,0.129317,0.328693,0.939456,0.34929,0.447092,0.526389,0.926473,0.699729,0.57982,0.558016,0.859305,0.363491,0.57706,0.179446,0.170711,0.260603,0.13564,0.391892,0.603948,0.805143,0.460532,0.416804,0.633149,0.548745,0.151789,0.561936,0.989608,0.57053,0.400938,0.0194153,0.378651,0.994826,0.633864,0.287412,0.751242,0.244197,0.587475,0.869621,0.145362,0.528452,0.839877,0.0775542,0.0505102,0.143317,0.214648,0.756837,0.493977,0.0897254,0.482097,0.332837,0.137267,0.945738,0.943401,0.326892,0.590881,0.0780382,0.539523,0.419969,0.415418,0.15239,0.384534,0.669161,0.547324,0.442204,0.709238,0.191666,0.312088,0.00172782,0.366004,0.836444,0.0842646,0.205367,0.977426,0.524299,0.132985,0.434329,0.526902,0.6561,0.709347,0.867212,0.753388,0.82755,0.788117,0.391619,0.583,0.21078,0.547311,0.774819,0.0991193,0.0624563,0.499884,0.094225,0.412008,0.000937402,0.515247,0.415644,0.106841,0.692235,0.453133,0.163615,0.0594306,0.389013,0.910254,0.0653778,0.31654,0.750821,0.125343,0.30649,0.48399,0.346283,0.668474,0.655198,0.774501,0.569438,0.0477319,0.512345,0.208142,0.606399,0.57002,0.332769,0.782793,0.0887301,0.997582,0.829095,0.56108,0.366118,0.936459,0.229768,0.775429,0.656598,0.321438,0.530564,0.918737,0.194667,0.52522,0.69052,0.514735,0.433087,0.275946,0.786741,0.839102,0.171431,0.0870125,0.737956,0.999663,0.842472,0.291867,0.623356,0.217772,0.415601,0.392618,0.903124,0.133836,0.524731,0.20069,0.694625,0.967924,0.15585,0.830202,0.668954,0.258593,0.743518,0.140188,0.141681,0.598571,0.147064,0.335051,0.47409,0.781022,0.756251,0.82338,0.379064,0.134938,0.693939,0.117421,0.611414,0.489668,0.298007,0.991336,0.43861,0.531735,0.995466,0.906573,0.144534,0.719843,0.834943,0.876596,0.855542,0.764251,0.365619,0.777488,0.852726,0.852584,0.0128154,0.79891,0.410076,0.380888,0.479716,0.216125,0.216921,0.306765,0.188498,0.503248,0.0514234,0.98175,0.483012,0.241144,0.0415825,0.550093,0.370847,0.798889,0.329808,0.356945,0.823615,0.869033,0.63872,0.0510657,0.660471,0.0748416,0.709814,0.229281,0.63886,0.41481,0.606947,0.599957,0.881073,0.209286,0.733567,0.517455,0.125577,0.180414,0.443784,0.919679,0.344592,0.198717,0.575815,0.682962,0.0802567,0.903582,0.238348,0.103602,0.711106,0.303613,0.264043,0.973494,0.180914,0.531761,0.411515,0.982037,0.998358,0.823243,0.140918,0.542974,0.860966,0.214927,0.291578,0.702835,0.729876,0.978786,0.610556,0.937893,0.246971,0.291356,0.2804,0.934535,0.4438,0.772171,0.827383,0.762239,0.752107,0.840172,0.798656,0.370075,0.783617,0.147449,0.0838669,0.176593,0.205468,0.983523,0.088334,0.450229,0.128691,0.100864,0.144285,0.120525,0.212693,0.421998,0.0421364,0.915118,0.292091,0.327722,0.467681,0.775253,0.143802,0.765732,0.810096,0.920096,0.248858,0.353389,0.361557,0.242336,0.897518,0.322314,0.497384,0.516064,0.615353,0.716832,0.71139,0.80779,0.866568,0.621762,0.60965,0.0881819,0.854506,0.0686265,0.956863,0.352966,0.856618,0.637976,0.835615,0.7827,0.128784,0.0718824,0.5216,0.614503,0.672415,0.784238,0.701382,0.946133,0.312814,0.162834,0.167176,0.696607,0.563026,0.448385,0.743623,0.801786,0.146225,0.217671,0.695194,0.402649,0.440078,0.172028,0.367439,0.957686,0.721493,0.242803,0.120385,0.633638,0.377457,0.200754,0.0243646,0.149604,0.2691,0.0344943,0.733714,0.0963317,0.116178,0.459411,0.913997,0.357074,0.874317,0.296567,0.891209,0.993856,0.0889122,0.466297,0.578219,0.71104,0.641523,0.786334,0.886821,0.0588862,0.830455,0.127918,0.81034,0.962531,0.605044,0.456858,0.536413,0.287459,0.732367,0.910335,0.18667,0.979038,0.484722,0.0198469,0.905293,0.0286788,0.65441,0.746983,0.417964,0.637505,0.983634,0.390006,0.56668,0.585715,0.833403,0.488447,0.529507,0.135759,0.955445,0.974679,0.354661,0.391014,0.0918735,0.00471103,0.532813,0.788476,0.259179,0.697431,0.450886,0.469531,0.260599,0.625121,0.491011,0.827842,0.759429,0.35526,0.408243,0.447652,0.640842,0.308559,0.0140843,0.264319,0.709441,0.57397,0.850351,0.720202,0.0563986,0.346122,0.338033,0.160642,0.990279,0.463573,0.0390335,0.383641,0.768149,0.560032,0.392263,0.876749,0.48853,0.062087,0.366609,0.872048,0.0680784,0.993672,0.063557,0.549721,0.0244989,0.0397391,0.548737,0.546364,0.00689203,0.895526,0.914686,0.117831,0.161765,0.0142342,0.403325,0.212992,0.923727,0.135444,0.565552,0.845144,0.567008,0.0859274,0.952818,0.637375,0.19201,0.0375264,0.737055,0.192544,0.942219,0.153997,0.105278,0.921038,0.871278,0.827483,0.0642575,0.9292,0.0692362,0.513977,0.189565,0.578367,0.764075,0.118982,0.4029,0.618263,0.776065,0.0612332,0.451024,0.644113,0.702886,0.640404,0.736803,0.446277,0.656931,0.815654,0.982265,0.155977,0.0366462,0.197751,0.747604,0.883978,0.435717,0.889187,0.770097,0.202112,0.259432,0.00869334,0.258898,0.427582,0.890422,0.678713,0.229498,0.0807959,0.523981,0.381916,0.795321,0.684974,0.839942,0.307898,0.244526,0.770007,0.453294,0.384011,0.282285,0.0446165,0.201789,0.711585,0.657488,0.116566,0.187624,0.962462,0.443969,0.805222,0.991901,0.721707,0.571517,0.396757,0.58923,0.252291,0.3138,0.0939583,0.192772,0.256805,0.32061,0.416191,0.610671,0.654406,0.904411,0.689749,0.207129,0.152446,0.493928,0.0599328,0.246248,0.402178,0.173998,0.0921149,0.71755,0.287709,0.443978,0.83313,0.799873,0.010065,0.622191,0.45476,0.946107,0.200875,0.978469,0.136125,0.655707,0.143797,0.120244,0.969301,0.278567,0.493311,0.802653,0.31912,0.753835,0.202782,0.323832,0.923346,0.273845,0.624573,0.891874,0.434077,0.4935,0.79617,0.366684,0.532657,0.242967,0.0721852,0.459533,0.803064,0.66143,0.984125,0.779567,0.65263,0.22435,0.113571,0.575808,0.520447,0.120374,0.843881,0.454579,0.581761,0.614798,0.546296,0.114887,0.48498,0.719119,0.538058,0.841351,0.399304,0.733631,0.224997,0.624708,0.518854,0.135827,0.540116,0.659947,0.179996,0.655358,0.480042,0.173775,0.480116,0.892487,0.804937,0.44605,0.863806,0.109034,0.0956123,0.679062,0.449818,0.689415,0.157334,0.0663942,0.3443,0.158476,0.796384,0.142148,0.198198,0.299294,0.654068,0.271475,0.985353,0.540944,0.741318,0.441925,0.898827,0.302796,0.004673,0.748848,0.854234,0.127409,0.752405,0.787146,0.870223,0.0794671,0.713701,0.22283,0.768598,0.997662,0.617916,0.0854263,0.14801,0.696113,0.226696,0.187979,0.753223,0.173714,0.771071,0.154298,0.369008,0.749991,0.859384,0.787248,0.385373,0.0783032,0.36158,0.890474,0.839535,0.326344,0.0112815,0.396874,0.109192,0.293971,0.398308,0.311297,0.739955,0.361061,0.284514,0.206323,0.376609,0.874965,0.889809,0.0111092,0.851927,0.665601,0.985602,0.550839,0.302564,0.590169,0.0913529,0.409531,0.634405,0.507,0.143413,0.648019,0.206204,0.929323,0.865942,0.827466,0.457756,0.537706,0.575137,0.974085,0.342806,0.457693,0.86461,0.105531,0.313736,0.0515356,0.355097,0.977239,0.121557,0.34667,0.416113,0.769141,0.958273,0.65199,0.867949,0.914506,0.972236,0.0191068,0.666847,0.417033,0.77468,0.714346,0.385396,0.187441,0.702553,0.505883,0.93258,0.301041,0.977142,0.761658,0.538306,0.0267954,0.402094,0.705617,0.499559,0.664166,0.0401582,0.171682,0.679727,0.928019,0.930195,0.692586,0.878544,0.382298,0.767899,0.551479,0.655205,0.465412,0.610092,0.30555,0.179526,0.662408,0.794161,0.866729,0.121332,0.623088,0.0635896,0.168029,0.529853,0.748084,0.264604,0.978387,0.201381,0.462199,0.980499,0.19928,0.0102736,0.753566,0.45958,0.84194,0.350034,0.244822,0.604637,0.549936,0.226878,0.428825,0.0916436,0.494744,0.829726,0.574987,0.955764,0.521929,0.651415,0.679315,0.141859,0.498199,0.433479,0.725988,0.4015,0.908923,0.321698,0.859688,0.879876,0.510316,0.946429,0.42158,0.680693,0.154853,0.236178,0.0977785,0.911657,0.571191,0.66939,0.0794069,0.683756,0.55089,0.25984,0.806308,0.753648,0.458766,0.731671,0.563873,0.322888,0.351013,0.163843,0.773279,0.992789,0.105738,0.13418,0.0358464,0.187685,0.533068,0.0701253,0.12151,0.72128,0.0589966,0.220549,0.830409,0.540459,0.0427557,0.0470647,0.949893,0.385797,0.736312,0.478848,0.629953,0.884957,0.803055,0.713076,0.907428,0.101665,0.688209,0.133746,0.608365,0.574568,0.79457,0.636158,0.720828,0.0601423,0.133179,0.694148,0.313615,0.401019,0.89413,0.373273,0.613086,0.0494755,0.955857,0.750567,0.639826,0.75913,0.499037,0.705299,0.261891,0.555949,0.00736547,0.541971,0.648554,0.486468,0.0917602,0.209491,0.605795,0.422396,0.314612,0.286217,0.705694,0.0725054,0.488996,0.947217,0.916989,0.173561,0.860276,0.812968,0.154561,0.0577108,0.0418893,0.646364,0.333371,0.751533,0.856991,0.923982,|0.0310981,0.918346,0.0995185,0.818775,0.240624,0.321792,0.597057,0.373346,0.850208,0.664635,0.150116,0.936936,0.969359,0.819888,0.21619,0.317165,0.991376,0.123316,0.201025,0.227674,0.579075,0.241953,0.395031,0.748882,0.347831,0.246832,0.125753,0.801868,0.352051,0.196522,0.125506,0.690615,0.874199,0.84791,0.285711,0.141922,0.808874,0.158762,0.872496,0.941156,0.917846,0.812873,0.511985,0.853081,0.155418,0.507139,0.157771,0.631427,0.986601,0.691338,0.780593,0.179731,0.517211,0.84379,0.885447,0.586227,0.970907,0.419522,0.212303,0.0145328,0.841096,0.214422,0.503144,0.270516,0.254709,0.427709,0.817555,0.806632,0.65183,0.158285,0.957586,0.242221,0.118621,0.83352,0.440488,0.236176,0.369867,0.217293,0.250941,0.650072,0.787239,0.268212,0.339857,0.364907,0.165952,0.488322,0.174618,0.7231,0.52326,0.113823,0.768788,0.720127,0.835184,0.609765,0.240519,0.0684187,0.182364,0.60507,0.470319,0.735441,0.226596,0.883096,0.833591,0.44064,0.257288,0.109975,0.854747,0.41178,0.587252,0.852766,0.752242,0.0454583,0.276987,0.373071,0.931906,0.139252,0.601236,0.0291719,0.523389,0.775456,0.849421,0.629578,0.0512514,0.0232908,0.884779,0.073855,0.694316,0.159493,0.471776,0.125974,0.646558,0.982382,0.593126,0.805994,0.511465,0.337138,0.0684907,0.280721,0.343538,0.651097,0.289126,0.313042,0.848362,0.176969,0.371883,0.76918,0.741478,0.989709,0.273983,0.0636903,0.494177,0.692532,0.527485,0.48329,0.938825,0.0708565,0.389327,0.585327,0.781523,0.113731,0.686656,0.684367,0.381067,0.931827,0.578647,0.852407,0.348807,0.280168,0.0847849,0.0994309,0.307773,0.851652,0.151791,0.447842,0.927813,0.994347,0.834086,0.406371,0.653925,0.377843,0.0757011,0.431615,0.0511011,0.720349,0.9863,0.332769,0.322505,0.793326,0.0563723,0.79683,0.792929,0.0260256,0.0583596,0.626246,0.00267285,0.955128,0.653075,0.39334,0.297683,0.928177,0.848904,0.40421,0.56407,0.711408,0.328867,0.442541,0.475502,0.4771,0.854546,0.101529,0.703018,0.679515,0.430127,0.553549,0.529075,0.352007,0.0452084,0.90598,0.487443,0.113,0.844245,0.942537,0.716577,0.939013,0.96398,0.17716,0.373032,0.168546,0.0920202,0.229636,0.31937,0.975108,0.593286,0.188981,0.369845,0.883393,0.556412,0.214285,0.700703,0.0568041,0.469417,0.355809,0.779527,0.754464,0.646164,0.872875,0.0959858,0.874985,0.758685,0.253352,0.273534,0.928507,0.522205,0.0642047,0.441051,0.615198,0.305166,0.978092,0.751033,0.333977,0.302421,0.124588,0.745328,0.0297573,0.448886,0.396541,0.938709,0.406712,0.0991255,0.0732706,0.735946,0.739766,0.469371,0.73361,0.0131206,0.912569,0.518617,0.526048,0.0727364,0.875757,0.433974,0.585545,0.599673,0.341776,0.545328,0.809394,0.56857,0.980953,0.581316,0.688119,0.297584,0.504178,0.177055,0.620429,0.473374,0.147891,0.738095,0.905943,0.633456,0.989239,0.426767,0.773582,0.975728,0.77252,0.558018,0.750287,0.847355,0.183801,0.363675,0.582336,0.0885487,0.739799,0.960246,0.690085,0.372451,0.275538,0.0304191,0.672511,0.687026,0.770376,0.739718,0.729183,0.401101,0.626763,0.932899,0.593449,0.521284,0.532347,0.581556,0.457338,0.71704,0.224164,0.8044,0.787017,0.516552,0.201492,0.583376,0.620492,0.821632,0.824817,0.402415,0.34968,0.745127,0.417454,0.0975301,0.266573,0.207811,0.797961,0.964815,0.0158318,0.856899,0.994799,0.240053,0.398132,0.76936,0.412633,0.823431,0.682185,0.675058,0.708757,0.0845073,0.403443,0.0955955,0.714275,0.949098,0.387183,0.881541,0.903713,0.627711,0.870738,0.143634,0.160827,0.534258,0.758201,0.164306,0.652891,0.407744,0.801884,0.72921,0.190376,0.666978,0.104513,0.534641,0.266136,0.843777,0.733822,0.366674,0.445982,0.486919,0.653862,0.575022,0.682466,0.13345,0.639233,0.0658335,0.0386521,0.500403,0.806177,0.00156629,0.362322,0.318088,0.429449,0.600194,0.521897,0.31149,0.454744,0.750194,0.446228,0.0329147,0.1389,0.343894,0.0573199,0.252675,0.92305,0.397589,0.192512,0.0520822,0.613923,0.216754,0.573586,0.865264,0.326463,0.228307,0.997248,0.161537,0.0735162,0.9523,0.98652,0.025899,0.0221835,0.857529,0.0846466,0.995675,0.691655,0.0711576,0.160073,0.797301,0.70753,0.329777,0.724878,0.502227,0.250625,0.0885551,0.155442,0.204482,0.499083,0.0348637,0.0681435,0.778234,0.919172,0.316385,0.506333,0.608441,0.087337,0.966521,0.0777918,0.273125,0.952639,0.5645,0.0911034,0.802334,0.622971,0.681821,0.720485,0.822246,0.907363,0.888832,0.300806,0.166103,0.13558,0.994588,0.269694,0.670074,0.951534,0.0809609,0.0953452,0.314988,0.943003,0.707786,0.746117,0.224907,0.943083,0.512655,0.750425,0.154954,0.0807009,0.423825,0.10043,0.960441,0.558965,0.0198229,0.401765,0.849542,0.580331,0.0105574,0.760774,0.268327,0.876122,0.0707276,0.722596,0.202875,0.275433,0.889714,0.996681,0.803141,0.120162,0.238989,0.0865086,0.74047,0.963293,0.509393,0.154402,0.905671,0.956981,0.32562,0.905876,0.00441754,0.87548,0.0437521,0.422911,0.299282,0.442508,0.611411,0.900856,0.079716,0.879936,0.308416,0.140342,0.755858,0.0853238,0.352484,0.863398,0.640181,0.424927,0.981143,0.143313,0.536001,0.942687,0.772985,0.0667763,0.735782,0.711875,0.654636,0.0102364,0.355188,0.713729,0.971906,0.0149527,0.738439,0.221443,0.981936,0.435048,0.330887,0.375292,0.47143,0.863903,0.203916,0.512363,0.550236,0.518632,0.155303,0.601961,0.25143,0.267422,0.293172,0.163085,0.634847,0.175692,0.251201,0.847094,0.604042,0.87604,0.956838,0.759618,0.1169,0.188101,0.608039,0.704092,0.559569,0.0810757,0.911142,0.526028,0.510272,0.954699,0.389332,0.545208,0.0490603,0.0222228,0.149286,0.452132,0.219452,0.537434,0.748619,0.532874,0.513208,0.821435,0.506524,0.596741,0.827523,0.138709,0.128237,0.052878,0.781132,0.668495,0.0175239,0.548317,0.904235,0.841813,0.676733,0.25672,0.443276,0.793677,0.338086,0.0460852,0.991479,0.0663213,0.314996,0.116828,0.720741,0.921127,0.245454,0.639456,0.371277,0.957797,0.0630338,0.0569344,0.602396,0.669175,0.623286,0.322156,0.789439,0.162324,0.0250019,0.398765,0.353913,0.67214,0.923367,0.0500997,0.36824,0.330706,0.395194,0.907763,0.932473,0.395181,0.731565,0.42659,0.990445,0.175919,0.82224,0.286912,0.750406,0.768302,0.792833,0.0933709,0.179045,0.160813,0.272811,0.718862,0.0228238,0.48079,0.30045,0.225905,0.306324,0.260497,0.349987,0.669608,0.513859,0.579475,0.185508,0.657035,0.640156,0.338393,0.819163,0.537314,0.683545,0.516314,0.353417,0.713948,0.312637,0.908135,0.320905,0.516028,0.293469,0.800129,0.911768,0.502084,0.640419,0.391378,0.405576,0.0764279,0.572325,0.723764,0.464565,0.227456,0.241415,0.623078,0.359904,0.399109,0.364614,0.172931,0.891733,0.935231,0.0884211,0.813357,0.399134,0.409556,0.717489,0.387173,0.766769,0.205073,0.512165,0.193625,0.186532,0.296076,0.282363,0.333019,0.188788,0.481173,0.738478,0.867653,0.773341,0.220914,0.445467,0.404884,0.494596,0.343658,0.740723,0.559923,0.437734,0.925748,0.0904564,0.676997,0.278064,0.969367,0.460878,0.991659,0.243794,0.676498,0.249863,0.310387,0.936161,0.641739,0.900892,0.242911,0.207601,0.270896,0.913923,0.0281312,0.309072,0.581636,0.763884,0.0298766,0.911386,0.883448,0.165738,0.0344147,0.27134,0.860185,0.59157,0.755997,0.277418,0.365268,0.862364,0.727692,0.816097,0.522807,0.335968,0.954802,0.52762,0.142859,0.454718,0.46195,0.580068,0.0463543,0.0768318,0.726668,0.585013,0.416511,0.898665,0.158665,0.586515,0.938811,0.530392,0.778558,0.60795,0.905275,0.047211,0.283544,0.445033,0.12516,0.325226,0.202721,0.500184,0.210178,0.652632,0.0261008,0.835065,0.150969,0.148598,0.922703,0.985851,0.286263,0.634827,0.884413,0.449744,0.467254,0.467452,0.420057,0.479126,0.820252,0.340706,0.559416,0.471012,0.838014,0.934823,0.0768518,0.168416,0.406615,0.590707,0.287331,0.96203,0.293032,0.948846,0.273529,0.115233,0.874751,0.490656,0.831219,0.470628,0.858514,0.192608,0.659339,0.239927,0.337403,0.277057,0.547445,0.73078,0.256396,0.601325,0.489086,0.410698,0.806455,0.519714,0.853999,0.39464,0.53304,0.529163,0.652515,0.407288,0.354396,0.14252,0.553736,0.29117,0.301834,0.814978,0.141976,0.701224,0.168802,0.802175,0.512555,0.781383,0.670846,0.283301,0.827298,0.871193,0.0311992,0.321981,0.982291,0.237096,0.633518,0.540385,0.717574,0.421685,0.344213,0.133018,0.97131,0.824642,0.613284,0.99001,0.608345,5.76973e-05,0.936257,0.74694,0.0248601,0.278822,0.759065,0.945309,0.0468287,0.234941,0.618132,0.782108,0.0444151,0.41889,0.380043,0.644432,0.807358,0.683177,0.954734,0.406825,0.0731543,0.729918,0.16475,0.986666,0.883095,0.144469,0.844134,0.780773,0.532388,0.158219,0.810488,0.870901,0.263975,0.228763,0.698372,0.984349,0.968939,0.266092,0.49219,0.234504,0.542234,0.955082,0.416411,0.534824,0.452348,0.099808,0.859562,0.104912,0.840881,0.797487,0.757656,0.738627,0.541861,0.58813,0.253701,0.126954,0.580792,0.806775,0.943128,0.528642,0.98637,0.743237,0.520119,0.805117,0.790328,0.4255,0.738176,0.0297127,0.189332,0.387236,0.163254,0.603515,0.163039,0.823787,0.95396,0.296641,0.693813,0.510731,0.18611,0.061168,0.3159,0.43189,0.947668,0.659559,0.334199,0.674104,0.144594,0.913486,0.195178,0.236544,0.221101,0.0395796,0.185093,0.841971,0.410231,0.0742366,0.213786,0.198174,0.0562929,0.946049,0.404827,0.160715,0.0904784,0.493955,0.958574,0.785716,0.162807,0.0221332,0.365074,0.48303,0.649363,0.439487,0.115319,0.537392,0.459264,0.554069,0.113895,0.0926139,0.868213,0.272843,0.222926,|0.370111,0.642235,0.644441,0.386721,0.253055,0.929922,0.24677,0.0496479,0.877614,0.701349,0.886952,0.133191,0.25446,0.933472,0.597812,0.877461,0.317493,0.181564,0.214186,0.25498,0.38294,0.146836,0.908464,0.436238,0.841766,0.19304,0.124473,0.751493,0.688349,0.409664,0.408173,0.885986,0.282916,0.454269,0.622012,0.529877,0.27706,0.698697,0.377678,0.230985,0.234206,0.764335,0.254761,0.971616,0.246123,0.0195712,0.67999,0.25476,0.0707251,0.455595,0.347041,0.124083,0.182608,0.990995,0.826968,0.836567,0.127284,0.65731,0.391712,0.599284,0.185269,0.528122,0.85566,0.260875,0.180461,0.255614,0.352977,0.508121,0.946399,0.523681,0.0274669,0.942526,0.897058,0.0116843,0.655937,0.281968,0.570562,0.317824,0.365871,0.684112,0.325792,0.819988,0.2188,0.252516,0.848176,0.848339,0.519567,0.366088,0.365955,0.280566,0.297532,0.550366,0.903059,0.420148,0.0664153,0.399766,0.714889,0.923298,0.685304,0.86686,0.193615,0.510656,0.283107,0.760559,0.668085,0.547758,0.905125,0.176408,0.987538,0.597015,0.624783,0.00878572,0.182272,0.285759,0.121267,0.861905,0.280769,0.685246,0.0544645,0.893148,0.600289,0.290105,0.20152,0.0707236,0.199252,0.481885,0.775847,0.630569,0.216684,0.185543,0.092329,0.990149,0.26323,0.471179,0.3188,0.295783,0.141334,0.506505,0.579982,0.4347,0.575501,0.513151,0.472557,0.189019,0.839132,0.226577,0.773021,0.661411,0.0751642,0.0663913,0.967969,0.729385,0.310031,0.657559,0.651893,0.363756,0.0626724,0.652621,0.844247,0.0266473,0.37395,0.384998,0.927459,0.777106,0.214676,0.765484,0.786671,0.316316,0.159411,0.0354059,0.0718488,0.702907,0.150867,0.509727,0.399529,0.687705,0.681722,0.32616,0.692395,0.676301,0.602579,0.478925,0.115944,0.0281249,0.803175,0.943312,0.734783,0.999087,0.115621,0.53379,0.41392,0.942995,0.813579,0.543565,0.466851,0.679658,0.338037,0.0381217,0.614925,0.755016,0.662284,0.658515,0.37907,0.826464,0.699185,0.495089,0.428402,0.408855,0.9839,0.206369,0.255987,0.99477,0.686515,0.393635,0.258509,0.735735,0.14703,0.990486,0.871874,0.0167454,0.79238,0.40238,0.965792,0.569736,0.933304,0.368451,0.821159,0.880339,0.481175,0.585545,0.626033,0.4561,0.257483,0.885704,0.410138,0.798013,0.881632,0.719634,0.0893409,0.671634,0.94436,0.131116,0.278279,0.10737,0.545198,0.525625,0.543695,0.738547,0.0760112,0.0445727,0.288665,0.487061,0.914117,0.66351,0.4937,0.13318,0.287499,0.654671,0.968216,0.799063,0.248738,0.455771,0.452275,0.983736,0.116406,0.628528,0.398907,0.827819,0.77384,0.590697,0.624805,0.853398,0.0283096,0.435976,0.916578,0.597377,0.685733,0.317941,0.786149,0.323682,0.0871772,0.640127,0.314937,0.264302,0.229567,0.53928,0.47005,0.510781,0.476682,0.283388,0.890318,0.542501,0.771462,0.317823,0.778267,0.798659,0.849923,0.479392,0.962744,0.221655,0.709131,0.0497346,0.795386,0.414297,0.587491,0.945736,0.846867,0.227381,0.169928,0.254196,0.00243694,0.367206,0.900873,0.566592,0.888368,0.00184077,0.093399,0.235637,0.529108,0.518921,0.691624,0.243777,0.51749,0.105514,0.530649,0.206167,0.930261,0.547008,0.0352069,0.418541,0.384047,0.50688,0.0338135,0.131513,0.84296,0.236081,0.627676,0.100823,0.228597,0.692555,0.397635,0.443486,0.112409,0.19122,0.694486,0.643294,0.668465,0.159763,0.915542,0.673973,0.933406,0.33017,0.518744,0.420689,0.315227,0.0794551,0.608785,0.050048,0.601833,0.896556,0.943616,0.21964,0.787167,0.232369,0.724584,0.77121,0.949701,0.302285,0.931916,0.271776,0.560521,0.116802,0.5456,0.533308,0.0766492,0.993794,0.817672,0.447554,0.561535,0.117553,0.0896285,0.828968,0.491288,0.592704,0.780271,0.990937,0.840036,0.748194,0.602485,0.857477,0.704256,0.689074,0.889223,0.603158,0.384096,0.938239,0.429686,0.289038,0.655503,0.00212651,0.983881,0.0632673,0.318204,0.665738,0.812983,0.292487,0.983505,0.608309,0.338914,0.875953,0.223432,0.154079,0.863113,0.303442,0.416932,0.578101,0.149047,0.929224,0.877041,0.898823,0.567535,0.646196,0.0980839,0.786433,0.679647,0.856164,0.175208,0.436261,0.75484,0.594157,0.184126,0.368077,0.865315,0.293227,0.649505,0.746657,0.151882,0.260155,0.35885,0.173419,0.484161,0.402125,0.891124,0.908617,0.420642,0.992397,0.651749,0.493668,0.238627,0.237642,0.786244,0.790819,0.991149,0.739576,0.143268,0.0062229,0.364338,0.376815,0.660401,0.598361,0.888054,0.733141,0.987898,0.264434,0.550688,0.43321,0.506392,0.870408,0.0990717,0.11641,0.0768971,0.781746,0.64272,0.271072,0.759524,0.639642,0.815071,0.724662,0.675001,0.963001,0.4293,0.313397,0.660015,0.685673,0.418951,0.854635,0.936334,0.381974,0.211073,0.125037,0.361742,0.910968,0.499138,0.537359,0.741133,0.257479,0.0518551,0.238275,0.66594,0.651977,0.721355,0.323123,0.374157,0.188155,0.390735,0.283454,0.152168,0.165822,0.546278,0.0377463,0.00127846,0.966883,0.728369,0.977613,0.354386,0.0465642,0.683823,0.408197,0.865224,0.15735,0.085145,0.740601,0.713306,0.681935,0.0378514,0.0959345,0.98461,0.796247,0.803351,0.0496184,0.686897,0.395572,0.223716,0.561769,0.847679,0.433417,0.125859,0.162377,0.7998,0.736143,0.686994,0.46391,0.991887,0.654284,0.170657,0.853448,0.785595,0.0928953,0.237084,0.179957,0.421441,0.475914,0.1352,0.0268863,0.227429,0.647414,0.82693,0.633216,0.508725,0.436719,0.193458,0.192287,0.85054,0.263528,0.737079,0.734473,0.604953,0.197771,0.509227,0.780878,0.179738,0.700281,0.792233,0.577832,0.332634,0.785694,0.133631,0.0540932,0.199138,0.592884,0.0957927,0.00460249,0.357072,0.317051,0.594373,0.881138,0.937522,0.599443,0.478524,0.399457,0.870438,0.805424,0.49362,0.220343,0.929324,0.951058,0.351628,0.637154,0.186984,0.673657,0.52004,0.63721,0.575345,0.182978,0.0559025,0.228236,0.503406,0.237747,0.613461,0.33503,0.999101,0.897062,0.396283,0.606895,0.611721,0.363421,0.696808,0.579425,0.315673,0.0959049,0.0839609,0.407163,0.0845894,0.993061,0.0460476,0.222519,0.549721,0.729419,0.0977424,0.00648916,0.332273,0.669646,0.30601,0.633623,0.638472,0.779322,0.672117,0.406343,0.146367,0.846532,0.451615,0.946419,0.304921,0.638728,0.550545,0.192014,0.93526,0.0247752,0.854211,0.601076,0.0951047,0.352716,0.537613,0.754043,0.617519,0.145039,0.0563834,0.65894,0.933182,0.305723,0.247273,0.0683913,0.743704,0.730183,0.702066,0.442656,0.22989,0.210783,0.17056,0.527762,0.0699921,0.645804,0.0920091,0.930014,0.292649,0.166878,0.973969,0.964545,0.354516,0.712672,0.0365012,0.296453,0.488589,0.0635365,0.761453,0.307128,0.178829,0.936573,0.744043,0.281049,0.0266444,0.631383,0.781121,0.545984,0.988706,0.519594,0.845725,0.590997,0.881151,0.222118,0.310009,0.723287,0.281834,0.328529,0.458113,0.849175,0.663451,0.772796,0.663275,0.538844,0.485009,0.806033,0.551517,0.373895,0.289718,0.239885,0.380114,0.0616051,0.21197,0.793483,0.654772,0.232656,0.462515,0.417587,0.483492,0.435642,0.11681,0.84749,0.215078,0.807953,0.103598,0.11213,0.481093,0.844953,0.702934,0.0189186,0.560736,0.0796514,0.603413,0.266849,0.83766,0.508932,0.756837,0.85771,0.23346,0.328169,0.00486279,0.163295,0.442552,0.589088,0.529862,0.777134,0.844757,0.117195,0.376056,0.229931,0.798334,0.592909,0.883993,0.754611,0.411823,0.375466,0.586537,0.715425,0.226993,0.578898,0.922598,0.372002,0.243005,0.722792,0.850228,0.0895266,0.619428,0.0232512,0.565079,0.876857,0.924679,0.323312,0.731139,0.0902629,0.27569,0.428547,0.824494,0.986945,0.0930105,0.461053,0.645614,0.162348,0.617675,0.428712,0.247006,0.837148,0.527092,0.670802,0.675302,0.319054,0.701122,0.640151,0.0528936,0.37356,0.461991,0.17251,0.300912,0.147398,0.92834,0.9179,0.553482,0.999617,0.0250639,0.585766,0.631848,0.818934,0.158075,0.471952,0.488417,0.299433,0.0404175,0.888725,0.899815,0.356837,0.926342,0.402936,0.86533,0.987733,0.441328,0.267604,0.331529,0.339697,0.483479,0.151518,0.817055,0.939134,0.160304,0.745409,0.250934,0.128973,0.304495,0.561695,0.202402,0.812783,0.484036,0.314054,0.277744,0.937444,0.220865,0.0484033,0.653468,0.977564,0.803957,0.614671,0.21597,0.150688,0.395308,0.65643,0.423171,0.0750736,0.620937,0.897417,0.672331,0.638679,0.984938,0.235245,0.351628,0.69703,0.411015,0.840027,0.31219,0.663148,0.331087,0.75532,0.600258,0.314664,0.442085,0.609133,0.56412,0.88719,0.755131,0.202718,0.835899,0.253977,0.487778,0.211885,0.462885,0.781826,0.23164,0.923585,0.0626902,0.441474,0.116628,0.425589,0.321033,0.983494,0.300249,0.974498,0.472521,0.725382,0.384506,0.153307,0.0708486,0.0279013,0.284357,0.610825,0.0302877,0.25653,0.253643,0.155491,0.651491,0.831945,0.564795,0.0456203,0.74634,0.537397,0.998664,0.197368,0.938449,0.353167,0.57222,0.545987,0.233318,0.571486,0.685249,0.29874,0.171965,0.091038,0.693795,0.0927815,0.947016,0.563458,0.568714,0.909048,0.544549,0.583622,0.880042,0.0248967,0.433306,0.770057,0.391518,0.766451,0.601807,0.701696,0.684161,0.170706,0.625987,0.802359,0.574577,0.243109,0.465997,0.33397,0.310998,0.236448,0.330857,0.28532,0.781515,0.994636,0.760816,0.212154,0.374866,0.976524,0.364278,0.888425,0.579695,0.983721,0.0890016,0.130017,0.0290166,0.191469,0.184758,0.383262,0.79932,0.538861,0.555203,0.358255,0.0231704,0.128003,0.648435,0.638531,0.75728,0.134573,0.224679,0.199317,0.900109,0.140702,0.0803835,0.737903,0.846787,0.721528,0.452632,0.492746,0.500315,0.45362,0.275094,0.532727,0.899023,0.315811,0.68659,0.939418,0.718762,0.454884,0.0813361,0.590281,|0.462811,0.347886,0.258428,0.542298,0.291827,0.298888,0.316407,0.8846,0.753613,0.668198,0.0132989,0.792011,0.520021,0.20764,0.803155,0.646039,0.654241,0.492856,0.290761,0.537185,0.66173,0.766607,0.441021,0.827756,0.721134,0.631167,0.0505512,0.0864691,0.266791,0.670748,0.568368,0.0835887,0.557085,0.0178249,0.746286,0.784066,0.356029,0.623699,0.483615,0.642024,0.701828,0.915895,0.344028,0.146501,0.850292,0.130973,0.0487749,0.142342,0.794285,0.888216,0.0473968,0.26076,0.175387,0.452353,0.932463,0.50959,0.834991,0.81252,0.544999,0.194153,0.871173,0.622886,0.705971,0.335148,0.648879,0.199812,0.558074,0.445297,0.928499,0.868788,0.441456,0.00989324,0.645673,0.240835,0.559705,0.311051,0.416888,0.549615,0.17723,0.466222,0.465066,0.28084,0.0486031,0.225397,0.890861,0.759426,0.107612,0.770301,0.771918,0.613356,0.872151,0.60391,0.454485,0.196466,0.141137,0.54579,0.315685,0.499202,0.628457,0.681932,0.432378,0.00719345,0.819811,0.787142,0.900108,0.623762,0.0152408,0.755459,0.11386,0.235733,0.0143483,0.968077,0.613707,0.328921,0.221307,0.483908,0.436917,0.0206023,0.502182,0.172901,0.519963,0.930293,0.947267,0.623714,0.987229,0.336228,0.778584,0.449013,0.177872,0.409989,0.788021,0.896002,0.709866,0.970837,0.462472,0.727091,0.193591,0.0184866,0.633761,0.226895,0.469782,0.758559,0.916662,0.803938,0.837483,0.305862,0.56858,0.17847,0.164649,0.0257955,0.0266518,0.530661,0.573966,0.754872,0.691503,0.272376,0.0495843,0.76746,0.417667,0.59406,0.974212,0.737485,0.180026,0.478163,0.147455,0.961004,0.23682,0.963829,0.699605,0.455093,0.950806,0.112488,0.204219,0.426653,0.789302,0.126946,0.270894,0.183,0.646476,0.534583,0.310548,0.165389,0.86833,0.359496,0.177061,0.382761,0.665387,0.303696,0.280212,0.914522,0.0744559,0.998958,0.409529,0.686758,0.0354574,0.384641,0.328394,0.498942,0.205175,0.183953,0.725467,0.597706,0.166422,0.575307,0.459536,0.180848,0.666684,0.659027,0.196605,0.68073,0.695138,0.2807,0.799616,0.303127,0.38604,0.263151,0.20862,0.547602,0.0295538,0.627627,0.102096,0.0265002,0.0113307,0.384036,0.236209,0.0905228,0.635385,0.96606,0.562895,0.454812,0.459756,0.920565,0.248809,0.635323,0.877464,0.303888,0.244305,0.0531985,0.823152,0.530888,0.273676,0.571,0.961199,0.374169,0.402882,0.684692,0.762793,0.299613,0.547893,0.856423,0.446806,0.740334,0.0781167,0.695306,0.920604,0.905546,0.814428,0.60141,0.589146,0.822348,0.734445,0.50622,0.86338,0.439493,0.42257,0.566255,0.346955,0.434971,0.228861,0.571685,0.734351,0.179393,0.987803,0.633331,0.373663,0.44267,0.424364,0.436616,0.597631,0.426819,0.0436063,0.915224,0.866067,0.91381,0.213739,0.917862,0.0728578,0.0983872,0.808009,0.681007,0.604934,0.478554,0.793774,0.967814,0.472991,0.0262055,0.883565,0.385023,0.423466,0.558484,0.746048,0.423367,0.963606,0.0621544,0.651664,0.988681,0.910637,0.789458,0.67981,0.325779,0.37022,0.660598,0.0868365,0.562497,0.999651,0.468125,0.344138,0.044374,0.20289,0.634604,0.400174,0.595083,0.30799,0.837464,0.725774,0.879674,0.922495,0.261402,0.0702008,0.555378,0.0138802,0.292878,0.0794691,0.932676,0.550417,0.660516,0.839687,0.999013,0.691099,0.897151,0.105123,0.706684,0.990884,0.520755,0.742212,0.0429835,0.870345,0.821326,0.0306562,0.569584,0.961813,0.999425,0.999971,0.843127,0.634664,0.378991,0.940887,0.83411,0.217824,0.235791,0.819885,0.991784,0.070991,0.154664,0.977848,0.38768,0.539422,0.807361,0.248911,0.182427,0.0846438,0.695778,0.503701,0.759568,0.614628,0.123799,0.251526,0.33039,0.595547,0.254347,0.376585,0.384538,0.907025,0.420669,0.252691,0.508682,0.0713988,0.067674,0.616852,0.367377,0.607912,0.684862,0.516818,0.169319,0.849894,0.089121,0.00425994,0.311693,0.688094,0.845849,0.21681,0.188947,0.445574,0.944502,0.177791,0.0107373,0.240289,0.179564,0.575465,0.634547,0.305565,0.419655,0.812963,0.378525,0.0107374,0.137291,0.0509955,0.720333,0.802104,0.0893263,0.247465,0.304038,0.708873,0.62224,0.771141,0.980661,0.736212,0.421321,0.925914,0.481291,0.449311,0.019591,0.832879,0.628465,0.813042,0.765637,0.960037,0.604093,0.878547,0.326083,0.858836,0.393867,0.97008,0.969435,0.362652,0.272261,0.203681,0.753831,0.523229,0.32817,0.160411,0.282661,0.503393,0.00382739,0.469251,0.0515573,0.342039,0.712399,0.67485,0.776917,0.997804,0.874862,0.885834,0.017858,0.910275,0.807176,0.807219,0.284523,0.345026,0.789423,0.249612,0.0799395,0.566299,0.871522,0.374786,0.289968,0.679045,0.176095,0.882187,0.520938,0.254919,0.541386,0.971171,0.204531,0.739578,0.973835,0.466538,0.012602,0.297185,0.819518,0.882665,0.607854,0.801936,0.990802,0.78685,0.625537,0.70625,0.374617,0.721427,0.700324,0.0278353,0.619378,0.514153,0.390255,0.343049,0.907286,0.227321,0.736409,0.941995,0.263506,0.352462,0.324701,0.427215,0.409906,0.585717,0.638958,0.330247,0.119246,0.104505,0.10948,0.686802,0.363577,0.100579,0.252304,0.522374,0.222488,0.173581,0.47899,0.350501,0.230753,0.518979,0.256089,0.296693,0.925999,0.599463,0.443783,0.413454,0.469966,0.520354,0.286696,0.401931,0.602948,0.272346,0.621919,0.455411,0.280232,0.33367,0.66793,0.500556,0.865613,0.990006,0.8358,0.392097,0.0484845,0.873136,0.621438,0.891895,0.341889,0.298816,0.26308,0.214109,0.306256,0.0912581,0.997694,0.868019,0.0215945,0.337425,0.538902,0.930439,0.640678,0.24679,0.711858,0.936379,0.30523,0.0175573,0.37281,0.73916,0.989337,0.300648,0.387743,0.7476,0.622733,0.836924,0.687926,0.377572,0.951314,0.283568,0.332755,0.529173,0.864774,0.510729,0.0785921,0.0331975,0.180441,0.930771,0.26602,0.74926,0.353683,0.167917,0.681728,0.678758,0.800585,0.682806,0.164529,0.367315,0.0994526,0.73652,0.318346,0.0721422,0.365153,0.706614,0.446526,0.909799,0.919397,0.347641,0.366094,0.629119,0.877984,0.86442,0.887819,0.885888,0.982367,0.408694,0.0891421,0.745148,0.731553,0.881602,0.374181,0.673724,0.116061,0.908107,0.105185,0.96737,0.89885,0.380344,0.846428,0.128809,0.276834,0.115735,0.475038,0.377203,0.47816,0.837459,0.691049,0.372952,0.806009,0.34623,0.928767,0.184616,0.247738,0.632892,0.317202,0.988421,0.966786,0.295892,0.948109,0.338853,0.64015,0.369545,0.631754,0.208097,0.422712,0.431221,0.997304,0.933749,0.514601,0.33155,0.0220624,0.431729,0.723836,0.219676,0.326474,0.612,0.350361,0.329204,0.476622,0.258121,0.942623,0.164062,0.328601,0.595963,0.335118,0.900269,0.0589837,0.201129,0.81942,0.358101,0.475271,0.296905,0.130955,0.0646093,0.0491661,0.534314,0.0916523,0.312874,0.507655,0.97911,0.799146,0.643923,0.377447,0.735592,0.233825,0.162088,0.0914965,0.742918,0.686558,0.496104,0.212576,0.379686,0.777204,0.818752,0.0516724,0.718272,0.592279,0.176816,0.786169,0.193382,0.362662,0.561137,0.251096,0.724897,0.237945,0.842393,0.781981,0.0958651,0.490864,0.175897,0.671287,0.0612197,0.797529,0.477106,0.943251,0.646168,0.785651,0.376783,0.82759,0.367431,0.189503,0.0924017,0.147765,0.965611,0.741085,0.547805,0.798747,0.906223,0.381639,0.407406,0.167354,0.0583646,0.784441,0.48478,0.0113043,0.400206,0.527371,0.0954795,0.725225,0.850759,0.0380611,0.382472,0.452906,0.676675,0.778761,0.475719,0.879268,0.376971,0.59253,0.0817891,0.922609,0.672605,0.604905,0.294516,0.898076,0.541558,0.715273,0.356896,0.371394,0.572182,0.159902,0.641593,0.605027,0.539302,0.0452306,0.957202,0.419503,0.654656,0.912588,0.00791615,0.465131,0.469356,0.782574,0.90708,0.17377,0.521851,0.512714,0.946911,0.99604,0.512984,0.163217,0.684121,0.726106,0.067003,0.81088,0.686323,0.706372,0.689804,0.646293,0.137057,0.817252,0.797412,0.531222,0.74685,0.719347,0.178803,0.96096,0.625227,0.658489,0.934516,0.760824,0.260847,0.817993,0.86003,0.491247,0.13644,0.0740755,0.897688,0.594258,0.598949,0.254625,0.693933,0.450883,0.761619,0.426287,0.351655,0.537031,0.628412,0.006293,0.131092,0.107273,0.749053,0.354331,0.241616,0.787727,0.0963992,0.952729,0.752624,0.316791,0.172988,0.299303,0.83167,0.375722,0.61492,0.324795,0.913575,0.255671,0.714558,0.0848482,0.566386,0.413805,0.0304587,0.0459569,0.276411,0.492655,0.203174,0.10677,0.186863,0.88127,0.152403,0.978619,0.53338,0.39341,0.700392,0.290289,0.729537,0.71997,0.694537,0.0111567,0.275894,0.0377609,0.220439,0.279529,0.540614,0.48429,0.215859,0.663386,0.518307,0.207997,0.266071,0.726642,0.0417951,0.402531,0.636254,0.0577661,0.641496,0.960562,0.478842,0.415829,0.971948,0.612979,0.488218,0.378388,0.583788,0.0568025,0.694101,0.798029,0.33881,0.0663757,0.679503,0.937499,0.384831,0.81515,0.713245,0.790033,0.0975506,0.501873,0.0643288,0.174076,0.244376,0.64563,0.742879,0.479277,0.369172,0.330453,0.974859,0.501696,0.17972,0.326637,0.150555,0.290748,0.204065,0.128697,0.372691,0.282724,0.024782,0.297702,0.0502095,0.44653,0.0697002,0.403274,0.224048,0.488311,0.138783,0.740207,0.902024,0.642535,0.313932,0.915913,0.993297,0.52813,0.22247,0.0939738,0.619233,0.717196,0.407954,0.748011,0.754432,0.390938,0.0127195,0.00496382,0.672266,0.861185,0.425767,8.2016e-05,0.890463,0.24546,0.876859,0.609456,0.496842,0.806541,0.887951,0.452263,0.0310258,0.334659,0.159226,0.876325,0.721735,0.957244,0.764287,0.821376,0.626394,0.492824,0.427154,0.831097,0.128518,0.495382,0.228498,0.53231,0.874895,0.421709,0.0334787,0.0542943,0.935801,0.298546,0.447296,0.53437,0.713733,0.226006,0.61661,0.413494,0.952784,0.676226,|0.520081,0.578411,0.12873,0.625732,0.248758,0.678507,0.359651,0.639384,0.697736,0.238838,0.503575,0.866991,0.48058,0.547046,0.403855,0.217607,0.886711,0.142533,0.853752,0.7119,0.608415,0.803883,0.93603,0.415379,0.548721,0.40982,0.0792962,0.591718,0.0309844,0.185704,0.936281,0.024958,0.0774776,0.481858,0.421948,0.81686,0.223478,0.967049,0.187273,0.537538,0.431364,0.854739,0.608209,0.946302,0.397628,0.465947,0.114157,0.57884,0.750996,0.192139,0.099595,0.00615656,0.182274,0.767882,0.774978,0.892787,0.712462,0.672319,0.346158,0.260643,0.283895,0.45224,0.462891,0.253382,0.268192,0.741381,0.599912,0.466585,0.528364,0.551552,0.931448,0.779824,0.475863,0.539051,0.21932,0.115072,0.673094,0.483055,0.215755,0.513722,0.358359,0.424233,0.175441,0.429894,0.665619,0.874037,0.961194,0.229429,0.630771,0.770781,0.203806,0.75823,0.769132,0.141939,0.938541,0.0446235,0.155625,0.707205,0.306468,0.192862,0.762507,0.797568,0.487226,0.572427,0.616015,0.572678,0.74283,0.246394,0.982556,0.823888,0.111643,0.298375,0.353064,0.861729,0.33466,0.0887159,0.234005,0.00613147,0.28102,0.751362,0.496197,0.288242,0.0996028,0.060746,0.182616,0.0589397,0.183549,0.978421,0.590797,0.0690074,0.608047,0.844709,0.186951,0.0383877,0.03481,0.67851,0.0161817,0.216512,0.235466,0.425361,0.3373,0.895357,0.501982,0.73662,0.73824,0.587167,0.544122,0.306852,0.963825,0.420837,0.13096,0.0413219,0.168758,0.584271,0.377184,0.69062,0.213889,0.776004,0.722996,0.767391,0.232569,0.946644,0.0351968,0.881161,0.805548,0.501197,0.150076,0.960752,0.886314,0.509395,0.914066,0.153849,0.426786,0.745424,0.519375,0.159742,0.531812,0.671438,0.833621,0.875454,0.783275,0.541003,0.885181,0.699991,0.430087,0.827259,0.0912148,0.86684,0.854468,0.252432,0.593226,0.756387,0.235599,0.984708,0.361925,0.520053,0.507527,0.114505,0.119787,0.73061,0.450198,0.634576,0.0892264,0.889954,0.317808,0.0225732,0.696094,0.636603,0.00553918,0.317829,0.475457,0.954713,0.0278319,0.535134,0.228018,0.370327,0.131077,0.325052,0.18492,0.259797,0.457499,0.649539,0.4839,0.144162,0.335203,0.384286,0.051824,0.416482,0.211618,0.17714,0.477281,0.596241,0.87033,0.335636,0.479828,0.398721,0.92004,0.312853,0.950137,0.533064,0.176165,0.636514,0.96553,0.234718,0.157053,0.631562,0.626988,0.176164,0.458185,0.5867,0.172629,0.256737,0.216172,0.807875,0.0800217,0.37695,0.165603,0.189744,0.847838,0.288781,0.33395,0.693821,0.0827845,0.64689,0.628022,0.269705,0.236435,0.583025,0.0220649,0.578253,0.68472,0.121479,0.312327,0.97031,0.800677,0.373628,0.359004,0.989473,0.360413,0.263289,0.779857,0.737544,0.559354,0.11065,0.0923082,0.297834,0.584842,0.854693,0.823206,0.250774,0.974722,0.782498,0.22071,0.934406,0.89166,0.750392,0.412235,0.2814,0.93189,0.540903,0.935453,0.121375,0.416358,0.891773,0.533163,0.746694,0.339099,0.549484,0.640751,0.470367,0.772106,0.175973,0.944048,0.547128,0.458589,0.152174,0.531994,0.853359,0.698478,0.0182827,0.891575,0.614235,0.95715,0.759006,0.324241,0.388391,0.944943,0.793204,0.223063,0.111801,0.0145974,0.78091,0.473939,0.644751,0.182001,0.703624,0.75979,0.593517,0.996684,0.695471,0.586713,0.239114,0.165791,0.536589,0.132567,0.710776,0.921083,0.910718,0.825034,0.341355,0.244685,0.197071,0.461354,0.113821,0.777103,0.591406,0.289092,0.615496,0.172063,0.884573,0.796583,0.391562,0.997329,0.883795,0.33194,0.738041,0.287754,0.440132,0.60567,0.148707,0.58367,0.890911,0.475068,0.949333,0.145251,0.287025,0.5815,0.621729,0.142419,0.0599369,0.705355,0.209844,0.201231,0.307339,0.242511,0.558157,0.515067,0.400719,0.456614,0.0973376,0.377153,0.523449,0.763541,0.450752,0.478881,0.853532,0.773184,0.453918,0.399413,0.070834,0.525645,0.387795,0.434042,0.198698,0.967126,0.597462,0.370575,0.565565,0.347453,0.369512,0.127799,0.175731,0.0579712,0.181604,0.626342,0.411316,0.184383,0.142326,0.260745,0.166004,0.638075,0.0700811,0.540782,0.757418,0.357135,0.444305,0.625831,0.361107,0.0140917,0.0129724,0.51307,0.396583,0.486292,0.768754,0.942196,0.334957,0.987181,0.379641,0.171401,0.0556335,0.324138,0.882108,0.67843,0.952885,0.425916,0.405875,0.165922,0.502052,0.752856,0.4463,0.257672,0.166725,0.332665,0.814423,0.203333,0.856827,0.566627,0.217614,0.319348,0.758971,0.0577061,0.157324,0.383805,0.119398,0.282233,0.951317,0.10245,0.995492,0.712975,0.472824,0.434379,0.475201,0.279451,0.356839,0.866751,0.270116,0.175813,0.48419,0.794621,0.455306,0.0947105,0.215958,0.950467,0.93172,0.233028,0.111976,0.844161,0.468932,0.43665,0.557994,0.208266,0.65034,0.852339,0.867292,0.68285,0.0394053,0.750706,0.0852863,0.603266,0.258094,0.487283,0.578282,0.489792,0.499695,0.934538,0.417266,0.140055,0.498349,0.4537,0.439189,0.419822,0.263621,0.856646,0.528585,0.489901,0.349098,0.249878,0.288308,0.805571,0.368779,0.618683,0.298217,0.675935,0.92191,0.430093,0.999255,0.216152,0.347223,0.00816196,0.256458,0.56559,0.836477,0.0824248,0.274619,0.774225,0.667615,0.522041,0.351332,0.474728,0.623831,0.0504014,0.526973,0.182317,0.262027,0.0476933,0.874174,0.4401,0.333684,0.8528,0.572878,0.190746,0.665533,0.432074,0.256953,0.923153,0.544904,0.66771,0.656901,0.362109,0.73869,0.867526,0.87464,0.854522,0.745577,0.719221,0.72651,0.49833,0.121726,0.297513,0.687874,0.341197,0.696307,0.90192,0.558348,0.863741,0.329529,0.687253,0.871563,0.0239363,0.889059,0.463446,0.878454,0.874777,0.234123,0.972851,0.0230761,0.245813,0.435529,0.184006,0.265848,0.673856,0.773986,0.0127068,0.165746,0.968195,0.626011,0.84075,0.90039,0.0798738,0.733311,0.332611,0.740851,0.541918,0.48777,0.737303,0.613641,0.346841,0.579203,0.0781812,0.789806,0.248235,0.0263959,0.755461,0.612187,0.86044,0.474114,0.958212,0.763711,0.668544,0.184676,0.123409,0.23927,0.0186647,0.45568,0.648935,0.630505,0.472709,0.393061,0.428468,0.612824,0.956392,0.0149767,0.559641,0.541132,0.805383,0.555315,0.311024,0.564835,0.499743,0.5394,0.182198,0.678287,0.752894,0.900287,0.372179,0.54767,0.0592946,0.320693,0.814401,0.0567461,0.666755,0.0978715,0.145186,0.631557,0.63863,0.493096,0.191374,0.181923,0.594849,0.117726,0.194776,0.387562,0.481532,0.976857,0.824724,0.0194597,0.592105,0.994298,0.121494,0.395223,0.565416,0.0472709,0.862911,0.737908,0.532316,0.302164,0.839361,0.289572,0.431369,0.233539,0.380876,0.848184,0.441682,0.823393,0.336718,0.0391872,0.0475282,0.432127,0.447036,0.943455,0.789957,0.429798,0.690947,0.648215,0.161412,0.396505,0.441128,0.195523,0.202884,0.394624,0.807395,0.535422,0.474823,0.801521,0.330743,0.20307,0.636827,0.165603,0.869998,0.515247,0.732991,0.104454,0.015224,0.694335,0.00859952,0.138181,0.080056,0.407374,0.49639,0.138118,0.369846,0.170388,0.266209,0.43732,0.928036,0.674602,0.62135,0.326088,0.242622,0.411217,0.503132,0.636025,0.482824,0.124017,0.87288,0.286647,0.0357082,0.746164,0.256559,0.283039,0.606431,0.00645131,0.68797,0.709403,0.0830209,0.371446,0.666583,0.515941,0.214761,0.162195,0.230306,0.375009,0.982813,0.39935,0.266836,0.492743,0.445379,0.444564,0.72418,0.170459,0.68923,0.301354,0.125693,0.490042,0.853038,0.481122,0.638453,0.915394,0.714337,0.79965,0.163749,0.834155,0.243735,0.69814,0.563508,0.403073,0.102305,0.414976,0.42585,0.689157,0.478401,0.00700951,0.523303,0.149987,0.60319,0.853728,0.115557,0.0468628,0.705902,0.427369,0.81632,0.0463516,0.426736,0.854776,0.432688,0.151919,0.768931,0.879718,0.294757,0.916861,0.890182,0.939991,0.653304,0.727041,0.587411,0.195559,0.901225,0.524696,0.537129,0.633685,0.819681,0.274802,0.312542,0.0157626,0.124235,0.137595,0.488075,0.695388,0.0968049,0.945574,0.857523,0.768508,0.965754,0.264599,0.0796299,0.273826,0.633709,0.693568,0.470197,0.601447,0.0843104,0.879346,0.920148,0.855565,0.376566,0.341204,0.789651,0.110115,0.956512,0.409013,0.355619,0.118679,0.632565,0.0211074,0.125414,0.314056,0.642249,0.463205,0.865567,0.367909,0.4907,0.709104,0.212405,0.0432597,0.235508,0.498653,0.206915,0.461942,0.690679,0.181975,0.469448,0.537562,0.0725333,0.658221,0.587623,0.889339,0.902368,0.242084,0.8558,0.396063,0.203088,0.958019,0.450259,0.0774179,0.13121,0.397841,0.131965,0.3598,0.292203,0.677858,0.375336,0.331543,0.377628,0.740603,0.600431,0.988566,0.505699,0.504836,0.782781,0.552145,0.938044,0.218657,0.974408,0.433484,0.0887375,0.958423,0.0506756,0.116324,0.316196,0.648064,0.612602,0.0294204,0.361773,0.330545,0.831946,0.392028,0.986001,0.124665,0.129464,0.104644,0.99879,0.316643,0.692996,0.444486,0.466356,0.474722,0.0261679,0.963347,0.959326,0.249522,0.518486,0.360036,0.909002,0.879079,0.717709,0.541363,0.69112,0.0859157,0.781074,0.998095,0.318328,0.455617,0.942993,0.0409876,0.35801,0.192861,0.834455,0.459388,0.554754,0.596911,0.602891,0.903887,0.592857,0.466482,0.595921,0.722913,0.88148,0.806978,0.47915,0.902656,0.25912,0.30922,0.759823,0.052611,0.15526,0.872839,0.400519,0.928555,0.406038,0.0135593,0.0417958,0.724641,0.0540525,0.493297,0.129279,0.29977,0.0718271,0.627079,0.767901,0.993661,0.590742,0.297046,0.690748,0.342597,0.19822,0.312829,0.804362,0.149345,0.894697,0.568434,0.694021,0.770926,0.688228,0.914753,0.14411,0.677386,0.863285,0.428413,0.68154,0.969468,0.623695,0.922836,0.544503,0.978949,0.652592,0.959625,0.866489,0.609804,0.258789,0.0959072,|0.0241257,0.946968,0.906946,0.255573,0.242988,0.720641,0.929973,0.819986,0.533607,0.778928,0.627431,0.815196,0.233873,0.151227,0.425302,0.74016,0.561185,0.291953,0.190446,0.880651,0.0806408,0.205643,0.901433,0.0925229,0.724491,0.259194,0.459598,0.885074,0.851533,0.527448,0.410637,0.417169,0.195414,0.652403,0.496272,0.606226,0.780033,0.707896,0.116941,0.487152,0.594811,0.467695,0.210382,0.572635,0.0894418,0.783479,0.752252,0.0892354,0.751274,0.677902,0.254988,0.697539,0.122104,0.778482,0.673434,0.200929,0.962174,0.802981,0.46199,0.819882,0.120896,0.148782,0.862177,0.833351,0.139985,0.971211,0.957296,0.29468,0.708767,0.491172,0.237073,0.717088,0.835585,0.535802,0.798992,0.458355,0.160371,0.928302,0.101746,0.308111,0.181444,0.497634,0.877823,0.61248,0.848491,0.687787,0.639007,0.853364,0.450896,0.805744,0.771715,0.403689,0.0955943,0.0699528,0.41203,0.124584,0.460863,0.643503,0.298734,0.190618,0.680371,0.10757,0.772183,0.986051,0.7965,0.782579,0.270015,0.754547,0.692563,0.0628317,0.604109,0.864291,0.704968,0.916574,0.902215,0.96774,0.676412,0.881615,0.535127,0.897391,0.577672,0.633929,0.745226,0.687338,0.161459,0.381472,0.89491,0.270872,0.739014,0.860772,0.817839,0.924607,0.294577,0.641762,0.701661,0.599485,0.831025,0.773405,0.3751,0.5371,0.0282235,0.432435,0.00845438,0.768562,0.814017,0.108337,0.182298,0.442077,0.656824,0.594568,0.907761,0.749706,0.913813,0.0777677,0.70235,0.737399,0.911818,0.754539,0.205029,0.736237,0.995666,0.117635,0.831905,0.327569,0.297855,0.262682,0.238781,0.223697,0.229892,0.361197,0.35595,0.628014,0.127034,0.196334,0.112313,0.130656,0.414402,0.514102,0.494538,0.599389,0.340289,0.0949642,0.532099,0.897927,0.102789,0.323449,0.958659,0.670239,0.32555,0.428534,0.868432,0.524714,0.845441,0.342238,0.188542,0.0642334,0.726185,0.120116,0.112538,0.624103,0.718627,0.176796,0.977419,0.369692,0.696543,0.036543,0.368785,0.059499,0.887783,0.212914,0.757928,0.492449,0.216378,0.881144,0.395535,0.967487,0.966293,0.478956,0.989425,0.254079,0.584398,0.903694,0.607015,0.0180883,0.0385742,0.926946,0.188455,0.623267,0.0149271,0.0353929,0.80523,0.806435,0.00621998,0.203482,0.0158846,0.918166,0.595174,0.656878,0.395417,0.960426,0.543189,0.603241,0.531556,0.711631,0.4404,0.899485,0.7977,0.344564,0.64291,0.264104,0.390331,0.790266,0.144893,0.0507091,0.473345,0.0321274,0.844869,0.742057,0.975422,0.622065,0.484142,0.439999,0.929549,0.624101,0.246611,0.271567,0.923806,0.32474,0.383345,0.534577,0.63782,0.659612,0.6223,0.750136,0.673157,0.21394,0.695355,0.874418,0.432061,0.694427,0.491933,0.136978,0.0952235,0.923327,0.925701,0.181959,0.935632,0.179376,0.984568,0.909839,0.900405,0.645608,0.834608,0.30114,0.759254,0.555429,0.70033,0.219466,0.757163,0.541504,0.839818,0.557985,0.94346,0.0202954,0.0410194,0.817051,0.136825,0.489499,0.691024,0.135878,0.808515,0.836639,0.909624,0.860356,0.436814,0.169125,0.220006,0.122541,0.325381,0.340164,0.712184,0.956787,0.707249,0.463933,0.928301,0.34335,0.0951672,0.492001,0.195933,0.46228,0.687328,0.223366,0.992027,0.524405,0.70188,0.46719,0.530856,0.293976,0.156653,0.14494,0.88059,0.616313,0.725447,0.703786,0.662192,0.181561,0.0921147,0.784849,0.282762,0.578861,0.742873,0.0523173,0.18127,0.714122,0.698577,0.972929,0.361349,0.470017,0.76639,0.466381,0.273382,0.756104,0.076543,0.366903,0.195984,0.491825,0.666883,0.25922,0.604292,0.976746,0.315449,0.206236,0.791766,0.126331,0.00241214,0.520203,0.620447,0.537473,0.0134665,0.417976,0.503089,0.7517,0.438137,0.538572,0.340762,0.600579,0.245461,0.454199,0.716183,0.809433,0.139654,0.693259,0.705417,0.420785,0.81326,0.67907,0.638588,0.364936,0.592269,0.383645,0.883973,0.352143,0.856007,0.290864,0.372738,0.518481,0.589834,0.878701,0.167628,0.20733,0.705718,0.749427,0.991996,0.749729,0.903282,0.267777,0.473124,0.498282,0.545538,0.995252,0.862388,0.601525,0.453169,0.684539,0.580724,0.295944,0.15643,0.440098,0.849839,0.788512,0.144558,0.185496,0.964404,0.364155,0.665765,0.230872,0.512996,0.559925,0.286527,0.186014,0.675367,0.846545,0.214158,0.92011,0.777881,0.158041,0.44816,0.67896,0.981559,0.666016,0.255499,0.693597,0.853897,0.759312,0.213974,0.221473,0.571406,0.740364,0.00455016,0.95135,0.784734,0.780762,0.975739,0.30759,0.29316,0.931076,0.458924,0.591338,0.793473,0.698985,0.629105,0.930001,0.713684,0.986219,0.87582,0.691002,0.520991,0.200253,0.572205,0.132304,0.226928,0.826222,0.629742,0.506683,0.931315,0.45943,0.54375,0.578189,0.720039,0.205811,0.602546,0.886028,0.938412,0.632072,0.910072,0.19829,0.927732,0.58885,0.859139,0.444193,0.777176,0.689058,0.354528,0.164682,0.930109,0.845547,0.966046,0.248888,0.648488,0.117252,0.30398,0.705201,0.207325,0.84402,0.126678,0.840964,0.80474,0.662826,0.814179,0.0406086,0.118319,0.354915,0.526278,0.722314,0.0463498,0.654848,0.767596,0.769284,0.551719,0.887625,0.123345,0.70935,0.426103,0.717078,0.427211,0.894013,0.486864,0.842469,0.96115,0.804166,0.242567,0.598678,0.776481,0.668461,0.536965,0.924784,0.690111,0.556577,0.663175,0.268226,0.710784,0.287618,0.418748,0.626188,0.296396,0.913886,0.651851,0.214469,0.548314,0.759985,0.325372,0.499297,0.0624834,0.0665702,0.946145,0.834596,0.22812,0.857114,0.156623,0.398365,0.670781,0.173491,0.0878656,0.14966,0.0917535,0.326983,0.939697,0.997772,0.0106221,0.435767,0.373633,0.73555,0.613928,0.848726,0.060116,0.0157374,0.629824,0.401637,0.899645,0.893696,0.462344,0.649696,0.948995,0.367734,0.086094,0.145353,0.430173,0.776906,0.994222,0.941634,0.389677,0.631869,0.735449,0.51103,0.0237902,0.889847,0.918064,0.418527,0.00371885,0.838382,0.585895,0.0353709,0.325458,0.639034,0.488635,0.149344,0.322243,0.716453,0.986335,0.961697,0.516706,0.874405,0.909705,0.255915,0.142028,0.921371,0.444549,0.515678,0.0784799,0.980671,0.792042,0.942608,0.0470848,0.873007,0.0764174,0.910023,0.780405,0.491576,0.220334,0.800936,0.443985,0.146884,0.383525,0.314109,0.216054,0.408145,0.391581,0.288518,0.145572,0.761482,0.217657,0.203378,0.172473,0.634841,0.286832,0.853415,0.145185,0.514826,0.392446,0.638058,0.117181,0.183855,0.959147,0.592181,0.0128572,0.0946214,0.0935788,0.99627,0.353433,0.444127,0.746301,0.261502,0.323493,0.566896,0.0630264,0.218058,0.806901,0.0857685,0.0097664,0.0188767,0.862733,0.102695,0.993697,0.93572,0.027459,0.744538,0.709751,0.302001,0.202016,0.375393,0.874833,0.10808,0.698953,0.816909,0.940005,0.113603,0.33375,0.50037,0.0860156,0.159379,0.523922,0.509086,0.27463,0.232451,0.65511,0.65438,0.38228,0.151698,0.121374,0.119602,0.770691,0.080166,0.715563,0.56603,0.621929,0.491351,0.467624,0.935011,0.52603,0.301835,0.756561,0.8382,0.355639,0.914028,0.376644,0.752237,0.359001,0.576643,0.505663,0.24342,0.170428,0.176011,0.236722,0.11105,0.102099,0.124814,0.312846,0.935244,0.855566,0.467017,0.9203,0.0443525,0.610956,0.618976,0.972166,0.236583,0.766525,0.132393,0.286754,0.841198,0.697971,0.621779,0.36906,0.271419,0.670509,0.380061,0.426235,0.933813,0.830962,0.906826,0.813511,0.923476,0.701726,0.801427,0.899009,0.558559,0.606934,0.809307,0.145136,0.41965,0.372304,0.250704,0.0428668,0.797372,0.625817,0.543337,0.367048,0.960109,0.754949,0.968608,0.534657,0.554204,0.234646,0.761525,0.351027,0.492087,0.173738,0.495601,0.986433,0.608718,0.634021,0.857946,0.124923,0.242507,0.488625,0.803562,0.322473,0.712162,0.413423,0.866332,0.0582354,0.440134,0.256361,0.653991,0.989801,0.95542,0.740914,0.0798559,0.74531,0.505558,0.602715,0.648445,0.0190123,0.526258,0.181889,0.100875,0.145793,0.371668,0.211984,0.170494,0.516241,0.982386,0.851584,0.173637,0.971401,0.544825,0.568533,0.208458,0.543142,0.38761,0.241381,0.846478,0.85274,0.687788,0.0558521,0.110922,0.376293,0.641152,0.0898693,0.282559,0.87424,0.544109,0.531126,0.440922,0.953161,0.820921,0.0595521,0.0515478,0.464889,0.808248,0.386338,0.818605,0.262441,0.150386,0.895307,0.892925,0.511175,0.824371,0.168599,0.451984,0.777101,0.815539,0.393256,0.999364,0.398055,0.011573,0.266583,0.711587,0.0668209,0.0407817,0.206204,0.858994,0.959986,0.555207,0.602299,0.886198,0.927834,0.782847,0.51839,0.124511,0.845467,0.460364,0.945061,0.0911506,0.303881,0.720267,0.240101,0.5676,0.995723,0.772003,0.768484,0.136667,0.135413,0.811186,0.805483,0.717586,0.709091,0.0581127,0.886735,0.271787,0.774196,0.7567,0.0618473,0.378145,0.506802,0.414085,0.882474,0.84834,0.0246098,0.793056,0.972789,0.330687,0.48179,0.2347,0.933088,0.078356,0.395646,0.319667,0.813244,0.682942,0.839354,0.745454,0.369409,0.0504643,0.60333,0.711026,0.822065,0.124602,0.267517,0.940148,0.446831,0.829929,0.945984,0.564527,0.948878,0.122823,0.79097,0.639599,0.546314,0.776432,0.379113,0.11292,0.921657,0.491088,0.267289,0.74364,0.209628,0.336172,0.356371,0.307252,0.941673,0.31124,0.52194,0.50097,0.970342,0.42557,0.107114,0.312667,0.711081,0.406791,0.954852,0.117747,0.0173519,0.950938,0.36715,0.213263,0.936476,0.320163,0.779874,0.999058,0.054682,0.57727,0.238911,0.873193,0.687905,0.747718,0.900191,0.439176,0.996935,0.577859,0.766387,0.275112,0.756279,0.954428,0.766294,0.257999,0.0959888,0.0856276,0.368656,0.473261,0.839143,0.324237,0.00778431,0.329147,0.244856,0.568432,0.921809,0.944045,0.678401,0.610382,|0.6045,0.823693,0.00112057,0.0985625,0.338192,0.142632,0.583876,0.352852,0.575823,0.692464,0.286788,0.700357,0.118143,0.952887,0.0901139,0.318897,0.480615,0.00204474,0.615511,0.783941,0.655803,0.533355,0.916282,0.163048,0.0368481,0.557494,0.367109,0.908379,0.260008,0.542303,0.048107,0.77652,0.478459,0.821721,0.732569,0.753938,0.277423,0.385165,0.355965,0.120767,0.124539,0.29955,0.301602,0.13111,0.0911785,0.603186,0.149541,0.987092,0.624307,0.954128,0.130701,0.198322,0.660736,0.510485,0.48956,0.224558,0.671856,0.14887,0.555256,0.0620154,0.0810142,0.815582,0.635009,0.649016,0.529732,0.0326124,0.856422,0.0636188,0.265695,0.175131,0.738157,0.545447,0.618965,0.964389,0.9245,0.289246,0.504817,0.0532697,0.283086,0.997999,0.317113,0.300614,0.516333,0.812462,0.160086,0.576829,0.699915,0.392849,0.147989,0.95182,0.892813,0.835989,0.482369,0.906335,0.261752,0.0460199,0.96126,0.0857314,0.847263,0.759094,0.425143,0.658897,0.596098,0.236052,0.850775,0.0792671,0.777917,0.326468,0.22057,0.0153521,0.974797,0.131814,0.962095,0.121827,0.570615,0.455544,0.871398,0.478808,0.716305,0.909188,0.991236,0.84388,0.931043,0.771671,0.66615,0.0010621,0.678302,0.929776,0.309965,0.565139,0.393556,0.0327648,0.0496067,0.874579,0.324813,0.883595,0.360042,0.173343,0.240266,0.961831,0.910217,0.0406079,0.672649,0.462694,0.488918,0.937905,0.181424,0.383331,0.940881,0.0548059,0.203871,0.442932,0.264951,0.8413,0.354496,0.0634605,0.830742,0.515798,0.117264,0.721871,0.0276017,0.909518,0.699542,0.563745,0.796899,0.18581,0.0119058,0.19412,0.413441,0.351301,0.946175,0.637053,0.36656,0.419735,0.644814,0.122799,0.510683,0.373346,0.653836,0.922099,0.388663,0.672374,0.902795,0.291777,0.202531,0.827572,0.109864,0.375914,0.262106,0.251143,0.914218,0.53207,0.748423,0.00433987,0.930383,0.384508,0.301802,0.902575,0.654953,0.644342,0.304379,0.65299,0.860924,0.86632,0.64051,0.465218,0.845716,0.546938,0.489812,0.246359,0.461924,0.591808,0.56936,0.483261,0.641222,0.463336,0.239771,0.16762,0.850592,0.931542,0.720045,0.177633,0.865344,0.648797,0.876979,0.849965,0.223373,0.911651,0.8212,0.765518,0.0749364,0.568217,0.582246,0.405384,0.512389,0.273563,0.729752,0.28955,0.0588805,0.732643,0.336021,0.306983,0.332587,0.118668,0.539369,0.337344,0.361492,0.186444,0.885379,0.400847,0.486708,0.221032,0.951701,0.536556,0.301458,0.938486,0.865616,0.673883,0.0870301,0.733487,0.0945293,0.483244,0.292275,0.708682,0.900612,0.436819,0.934356,0.990874,0.934195,0.603861,0.937245,0.561854,0.49522,0.438077,0.556151,0.143518,0.911356,0.0140921,0.217795,0.245608,0.07322,0.561607,0.35234,0.565912,0.735151,0.575986,0.670303,0.53219,0.585532,0.464659,0.769306,0.173372,0.0115608,0.620922,0.0617573,0.725204,0.241344,0.769719,0.276318,0.242513,0.0424915,0.734312,0.75033,0.149699,0.966581,0.519787,0.887751,0.703914,0.321938,0.217881,0.765854,0.381475,0.31334,0.265371,0.914292,0.821554,0.0457328,0.783669,0.865748,0.998783,0.740383,0.860634,0.428386,0.96383,0.332694,0.0554267,0.915516,0.464188,0.65433,0.807274,0.8038,0.72181,0.940509,0.734838,0.783821,0.712563,0.357119,0.236646,0.715959,0.328995,0.833305,0.204209,0.203453,0.373473,0.631028,0.653168,0.0169739,0.0682604,0.670658,0.782489,0.392087,0.899494,0.273945,0.866286,0.837248,0.969113,0.865196,0.275103,0.125284,0.255826,0.180902,0.437734,0.476968,0.158221,0.522897,0.776774,0.861643,0.644956,0.0238675,0.354179,0.328267,0.748473,0.341495,0.410743,0.447765,0.476363,0.516102,0.599681,0.402783,0.263788,0.713836,0.116522,0.911956,0.586714,0.884686,0.684398,0.256098,0.0158094,0.967454,0.0318397,0.788886,0.977533,0.742063,0.172203,0.364152,0.302829,0.98463,0.0558304,0.774945,0.898475,0.932194,0.748924,0.0352786,0.802909,0.330791,0.241871,0.681634,0.0882599,0.82456,0.81139,0.718521,0.537009,0.696827,0.602027,0.0989127,0.405299,0.0913505,0.116657,0.854074,0.939957,0.189042,0.454185,0.425765,0.422409,0.418102,0.228752,0.477867,0.407001,0.828932,0.85471,0.162306,0.169869,0.436822,0.170718,0.849879,0.837671,0.694934,0.101594,0.578929,0.200426,0.499674,0.23008,0.495516,0.481666,0.360338,0.465834,0.119304,0.120965,0.118561,0.567162,0.775442,0.803828,0.365085,0.121474,0.050859,0.454558,0.0388532,0.0945766,0.709271,0.0072456,0.5365,0.923867,0.215623,0.358434,0.74661,0.397295,0.476482,0.8798,0.663773,0.860565,0.381553,0.574515,0.0811149,0.919238,0.787314,0.804137,0.163831,0.927687,0.907251,0.134727,0.307425,0.721937,0.577984,0.0752607,0.270744,0.0305582,0.264541,0.347702,0.558276,0.843998,0.840487,0.984379,0.441419,0.0950601,0.126156,0.990388,0.950523,0.82461,0.714656,0.318032,0.396813,0.121542,0.325268,0.277454,0.884688,0.412542,0.879416,0.28765,0.782265,0.857286,0.288742,0.621507,0.584194,0.235816,0.633463,0.731301,0.129115,0.644713,0.592087,0.810537,0.969388,0.861033,0.299935,0.0477798,0.904302,0.0380927,0.998808,0.0698605,0.367294,0.452905,0.904486,0.461077,0.859548,0.666456,0.148317,0.277608,0.153466,0.331644,0.917113,0.74207,0.7391,0.632109,0.150001,0.543201,0.949089,0.21847,0.0362662,0.806857,0.374441,0.600091,0.30608,0.772207,0.237707,0.298496,0.439285,0.340433,0.0808009,0.359086,0.411212,0.199797,0.569605,0.477425,0.660835,0.827195,0.92873,0.355487,0.191891,0.393289,0.9561,0.355856,0.44842,0.0130385,0.0078094,0.443773,0.931114,0.841388,0.846732,0.780264,0.93563,0.826953,0.946149,0.87599,0.133046,0.837986,0.711555,0.930758,0.689403,0.863506,0.314768,0.291629,0.275269,0.591645,0.148505,0.427651,0.922502,0.993814,0.189257,0.993179,0.342346,0.914355,0.194997,0.43103,0.509948,0.389213,0.0243907,0.0262723,0.554329,0.30875,0.51805,0.909383,0.0472958,0.41738,0.795302,0.768951,0.986369,0.817555,0.744584,0.963948,0.882674,0.343057,0.376305,0.847443,0.00808239,0.0631903,0.47803,0.591044,0.795032,0.0780994,0.587482,0.108518,0.571839,0.97984,0.850533,0.0913629,0.780794,0.328558,0.215802,0.764854,0.178411,0.174218,0.206184,0.755596,0.510616,0.230446,0.538176,0.0961493,0.678289,0.214554,0.0138047,0.776456,0.316572,0.0127138,0.508633,0.616899,0.52652,0.900471,0.20314,0.572838,0.577618,0.461976,0.683423,0.443936,0.268489,0.661312,0.641802,0.343097,0.681679,0.262543,0.297004,0.456124,0.7681,0.033151,0.444681,0.0500837,0.220875,0.67943,0.590441,0.19389,0.982676,0.459652,0.689807,0.511569,0.192803,0.977901,0.190144,0.127806,0.333044,0.212308,0.885958,0.761337,0.458944,0.215768,0.367853,0.943664,0.0116172,0.666853,0.844187,0.828263,0.976874,0.272216,0.423854,0.97997,0.475049,0.972164,0.924965,0.479827,0.0811356,0.520886,0.987847,0.172762,0.884182,0.956184,0.889051,0.0359662,0.838644,0.579367,0.501253,0.686518,0.118842,0.563905,0.967295,0.567084,0.881748,0.768021,0.789507,0.760125,0.372844,0.64868,0.38064,0.561027,0.370189,0.160978,0.052147,0.927704,0.976315,0.838479,0.873847,0.615401,0.0389035,0.604827,0.500089,0.834697,0.126087,0.0022707,0.861207,0.432059,0.593418,0.704552,0.0481048,0.393917,0.261262,0.333823,0.593338,0.421384,0.815438,0.196296,0.957352,0.81628,0.344589,0.283054,0.919213,0.741047,0.436342,0.795069,0.360241,0.223898,0.843525,0.143014,0.486319,0.506051,0.0729393,0.264139,0.493263,0.825374,0.842988,0.792141,0.097942,0.471032,0.743066,0.731516,0.738453,0.3192,0.414946,0.223279,0.465955,0.365819,0.0235237,0.715027,0.760847,0.829647,0.912167,0.32784,0.136233,0.417691,0.80673,0.805985,0.803407,0.134996,0.472531,0.6011,0.532539,0.0742229,0.613113,0.203217,0.146728,0.416094,0.894982,0.294169,0.907522,0.97101,0.214149,0.438211,0.322242,0.523207,0.772229,0.30244,0.738358,0.0827416,0.410431,0.486789,0.116427,0.794359,0.700907,0.737022,0.693984,0.111026,0.764727,0.291388,0.556797,0.851934,0.945343,0.333371,0.670096,0.996062,0.598355,0.298682,0.311232,0.313539,0.527489,0.261133,0.734536,0.65779,0.0338887,0.0122463,0.322966,0.417373,0.70294,0.841467,0.99233,0.352228,0.434588,0.0313537,0.750974,0.294753,0.278762,0.977956,0.331181,0.522815,0.310938,0.0976234,0.131092,0.0317196,0.767358,0.421155,0.417257,0.0891702,0.376872,0.583669,0.529395,0.924404,0.455509,0.46991,0.67692,0.15547,0.8825,0.102046,0.295998,0.296453,0.947863,0.107381,0.187648,0.318619,0.526245,0.395542,0.589216,0.0058732,0.46703,0.18237,0.133325,0.477809,0.888717,0.9597,0.0341195,0.537998,0.578204,0.320733,0.497942,0.256313,0.254235,0.366397,0.25342,0.184665,0.85009,0.854541,0.338,0.908274,0.012233,0.773727,0.170735,0.821506,0.723431,0.296391,0.872502,0.840156,0.791682,0.713005,0.651629,0.0854405,0.887946,0.655613,0.555238,0.186907,0.600302,0.829474,0.42939,0.747104,0.481932,0.273411,0.603036,0.0554035,0.228596,0.406296,0.995117,0.404845,0.834886,0.804861,0.511202,0.379321,0.943543,0.590418,0.953346,0.314903,0.20118,0.555805,0.347947,0.629509,0.620522,0.101245,0.738462,0.831905,0.348201,0.584036,0.672833,0.480153,0.0353099,0.208277,0.247449,0.0128157,0.0956652,0.6508,0.597228,0.976193,0.331049,0.712095,0.648485,0.518037,0.247114,0.0552063,0.348715,0.0216459,0.489804,0.164869,0.73514,0.846513,0.1468,0.504299,0.197101,0.276154,0.194511,0.0874853,0.843894,0.658852,0.549015,0.960162,0.251454,0.832097,0.336889,0.726086,0.210756,0.150505,0.501707,0.0358376,0.653734,0.0375451,0.14009,0.50368,0.135371,0.0385243,0.113887,0.6272,|0.115338,0.1178,0.0691789,0.479809,0.236164,0.133833,0.823335,0.0640102,0.574661,0.478916,0.621417,0.333206,0.850658,0.476145,0.540969,0.954442,0.436918,0.750761,0.465595,0.866526,0.176497,0.117145,0.776555,0.745313,0.984927,0.715837,0.114058,0.788273,0.375255,0.472405,0.530291,0.417335,0.235615,0.877117,0.200672,0.110305,0.859812,0.320085,0.501843,0.198369,0.500409,0.667129,0.643653,0.520943,0.838047,0.685774,0.828007,0.452695,0.31093,0.770916,0.25698,0.192083,0.99958,0.191073,0.949203,0.305807,0.713583,0.129836,0.220427,0.330151,0.122069,0.813303,0.259659,0.55008,0.462106,0.128352,0.70309,0.14234,0.308494,0.507086,0.68786,0.716213,0.813468,0.00540435,0.527528,0.599287,0.329002,0.0214292,0.141099,0.0846197,0.769284,0.835821,0.0803001,0.538622,0.880259,0.226256,0.364637,0.595537,0.219507,0.873314,0.583229,0.78185,0.24473,0.233332,0.253022,0.264264,0.867687,0.404073,0.329662,0.0143528,0.0637054,0.599473,0.964002,0.465286,0.213208,0.354692,0.206334,0.641119,0.378217,0.90118,0.708295,0.757584,0.892142,0.117238,0.256502,0.941915,0.833561,0.371642,0.282899,0.31501,0.997538,0.776466,0.0741401,0.481458,0.307912,0.351785,0.662582,0.117224,0.423029,0.227618,0.624329,0.808025,0.863285,0.253587,0.126779,0.266133,0.789545,0.878779,0.086798,0.555513,0.164491,0.700949,0.899672,0.0087387,0.188697,0.151299,0.847858,0.333557,0.741578,0.660959,0.475639,0.39321,0.257218,0.647056,0.0858576,0.707953,0.0818199,0.168012,0.399311,0.179416,0.10645,0.9517,0.426239,0.213087,0.022692,0.641599,0.565125,0.253237,0.712037,0.0370584,0.526452,0.252173,0.457749,0.101867,0.5381,0.819938,0.186305,0.97869,0.959191,0.0381856,0.719187,0.41449,0.200038,0.856594,0.137578,0.324212,0.784329,0.0695279,0.630063,0.75752,0.334135,0.785632,0.501869,0.534603,0.74855,0.457862,0.698713,0.793199,0.828437,0.923149,0.56891,0.227108,0.284882,0.451253,0.844409,0.28834,0.63261,0.124436,0.511014,0.39491,0.251281,0.877163,0.0771319,0.475088,0.187364,0.875106,0.590333,0.481722,0.569975,0.76562,0.954906,0.376304,0.41491,0.564997,0.384963,0.253299,0.564841,0.522423,0.783986,0.882288,0.0341213,0.591469,0.0277465,0.0311816,0.901608,0.422931,0.205126,0.591779,0.981674,0.875248,0.873635,0.60411,0.807191,0.172696,0.623417,0.853591,0.439924,0.709311,0.831428,0.96113,0.120824,0.0596638,0.694196,0.607264,0.480584,0.932089,0.841181,0.717369,0.275326,0.720665,0.798824,0.389345,0.537431,0.431528,0.642182,0.150753,0.785238,0.809331,0.426953,0.688787,0.545078,0.194239,0.896959,0.523407,0.301657,0.545238,0.191657,0.129685,0.812175,0.0963411,0.21179,0.0337638,0.457686,0.127361,0.154085,0.10177,0.0195427,0.558459,0.712302,0.81973,0.628798,0.155969,0.378532,0.0547259,0.994767,0.111055,0.750784,0.892355,0.0960764,0.165657,0.586006,0.302271,0.431797,0.916825,0.307063,0.439483,0.272096,0.245412,0.190973,0.8477,0.682493,0.161717,0.201578,0.9133,0.0185665,0.602533,0.601438,0.617676,0.496871,0.235614,0.230836,0.767327,0.513018,0.21408,0.225954,0.295963,0.893109,0.424546,0.536882,0.803764,0.831678,0.74636,0.164574,0.850056,0.864937,0.54157,0.052689,0.341498,0.147396,0.860446,0.376005,0.620508,0.667194,0.0957291,0.44331,0.0440084,0.92879,0.353848,0.67529,0.491915,0.594853,0.105917,0.782578,0.290413,0.51745,0.31092,0.100412,0.589715,0.877209,0.699666,0.527971,0.418062,0.679412,0.156512,0.0698452,0.182128,0.4672,0.716976,0.145602,0.135786,0.998586,0.709798,0.81179,0.433828,0.28718,0.230905,0.353746,0.252485,0.623627,0.704735,0.0164363,0.464224,0.434095,0.695072,0.771002,0.778914,0.525499,0.026465,0.690221,0.0585028,0.0107138,0.00990754,0.254747,0.848877,0.682007,0.652311,0.755776,0.85327,0.356119,0.486235,0.24128,0.690386,0.645939,0.45871,0.69777,0.757462,0.464167,0.295017,0.864368,0.0177456,0.0874361,0.0979361,0.285718,0.469175,0.61594,0.989299,0.247034,0.864858,0.940629,0.134603,0.568213,0.259134,0.758451,0.237957,0.852323,0.744307,0.253487,0.279971,0.689169,0.480371,0.529247,0.462801,0.997303,0.88143,0.0864075,0.957709,0.725226,0.239927,0.856859,0.843998,0.778739,0.734717,0.055587,0.75567,0.523605,0.351533,0.0452884,0.293543,0.513283,0.294451,0.266294,0.423638,0.0737811,0.924555,0.533882,0.996472,0.904454,0.311733,0.0110932,0.668502,0.305539,0.267038,0.972257,0.780463,0.350409,0.280124,0.33094,0.53216,0.0310398,0.817904,0.660568,0.0742502,0.135011,0.58326,0.269064,0.635009,0.676513,0.0238547,0.33722,0.635823,0.198312,0.571973,0.0308055,0.766954,0.230363,0.968554,0.505179,0.174348,0.531041,0.738453,0.0126632,0.976938,0.545495,0.132225,0.511548,0.184934,0.2089,0.826598,0.269644,0.409564,0.258837,0.6741,0.0409602,0.357059,0.871881,0.279225,0.243296,0.910994,0.803615,0.0792786,0.950535,0.798609,0.976695,0.258643,0.547457,0.838725,0.396084,0.287768,0.655741,0.0534496,0.530283,0.846386,0.199333,0.636499,0.968979,0.615768,0.507599,0.546406,0.879345,0.386352,0.463804,0.106617,0.81412,0.315807,0.138577,0.946121,0.85761,0.647486,0.149544,0.11414,0.588369,0.179981,0.680535,0.534042,0.558987,0.954501,0.365327,0.573965,0.280586,0.749237,0.203122,0.402796,0.863114,0.218925,0.463698,0.275338,0.184322,0.767056,0.791309,0.180215,0.322686,0.596479,0.70295,0.405834,0.797177,0.459087,0.254844,0.372232,0.657367,0.931839,0.0281032,0.441567,0.148823,0.104637,0.949128,0.463045,0.78937,0.415378,0.140001,0.310414,0.957725,0.539691,0.383071,0.884207,0.496175,0.892328,0.247092,0.608283,0.416854,0.82411,0.952003,0.984498,0.726297,0.407237,0.204728,0.316917,0.335008,0.725608,0.0751966,0.298222,0.855967,0.235962,0.612857,0.806954,0.58427,0.0686784,0.646683,0.171314,0.206065,0.00479645,0.317721,0.80826,0.603787,0.790943,0.0672637,0.123289,0.898796,0.215056,0.171544,0.544101,0.102284,0.572157,0.621148,0.162005,0.00942218,0.882061,0.505437,0.516459,0.269516,0.915269,0.706833,0.845735,0.245974,0.554507,0.532884,0.752762,0.00771207,0.0391368,0.763546,0.457054,0.142843,0.636237,0.618766,0.761352,0.838216,0.0700663,0.631015,0.0563838,0.688241,0.935327,0.611697,0.77263,0.503764,0.464316,0.469535,0.763493,0.341899,0.186174,0.719408,0.0109134,0.720794,0.666089,0.0320726,0.0192003,0.351171,0.612513,0.705537,0.800128,0.306124,0.0332116,0.0904773,0.476359,0.834309,0.280064,0.279964,0.198654,0.911204,0.583371,0.84463,0.501451,0.424181,0.0658981,0.602201,0.711391,0.445099,0.474611,0.775623,0.481034,0.0761082,0.873443,0.563908,0.98206,0.449709,0.395315,0.624651,0.714692,0.0750911,0.98525,0.398179,0.0904615,0.912587,0.973756,0.562709,0.196963,0.718019,0.263224,0.902766,0.324244,0.321757,0.836681,0.530914,0.768691,0.502231,0.921355,0.542774,0.509532,0.678449,0.115002,0.320961,0.976989,0.938894,0.470141,0.712691,0.726489,0.509245,0.508392,0.480619,0.944275,0.822929,0.950359,0.785994,0.517857,0.646201,0.717976,0.701428,0.503337,0.0438099,0.0768491,0.103215,0.239788,0.735261,0.570132,0.471362,0.695937,0.0958495,0.590754,0.88612,0.767576,0.965182,0.710108,0.694929,0.985414,0.37426,0.615254,0.779719,0.41957,0.978027,0.0497423,0.0822868,0.119153,0.734307,0.0455476,0.751731,0.76112,0.81685,0.575708,0.783215,0.369621,0.263708,0.901377,0.7787,0.146922,0.52721,0.232434,0.778197,0.432855,0.757118,0.902692,0.741622,0.427001,0.0711898,0.308643,0.837154,0.599024,0.673815,0.900012,0.0691999,0.485694,0.955497,0.123801,0.51119,0.127797,0.224474,0.0687665,0.112172,0.926227,0.953722,0.664729,0.905195,0.149408,0.929275,0.527355,0.0284215,0.464478,0.573048,0.71732,0.948714,0.289174,0.485058,0.192804,0.39645,0.316511,0.253243,0.0380735,0.131741,0.495911,0.202834,0.714087,0.449281,0.545374,0.771747,0.4272,0.578467,0.699028,0.982244,0.518178,0.615583,0.321007,0.752902,0.380778,0.225982,0.434969,0.211144,0.317169,0.031554,0.132217,0.690286,0.36125,0.625609,0.928824,0.759877,0.579708,0.304322,0.698872,0.88172,0.371093,0.831221,0.311874,0.659121,0.247143,0.729865,0.266104,0.172893,0.684903,0.913531,0.100205,0.333317,0.0360528,0.247921,0.637355,0.183512,0.614171,0.618358,0.564054,0.652011,0.121299,0.455162,0.669585,0.287385,0.227093,0.74643,0.824718,0.472959,0.687417,0.666311,0.271077,0.906154,0.785574,0.632643,0.922579,0.974753,0.283583,0.473088,0.928988,0.887362,0.86888,0.773648,0.650182,0.404506,0.209128,0.9988,0.838453,0.298794,0.108377,0.175952,0.442642,0.037554,0.119926,0.623815,0.28152,0.552157,0.679161,0.494667,0.252391,0.270203,0.129943,0.0370581,0.874643,0.350834,0.290203,0.266537,0.480999,0.754773,0.867583,0.990956,0.585188,0.265988,0.392695,0.862004,0.874014,0.862285,0.310387,0.0565843,0.552412,0.484324,0.238111,0.728697,0.837468,0.251304,0.240959,0.707307,0.951673,0.738166,0.151744,0.811771,0.597401,0.397434,0.161706,0.119491,0.367451,0.876369,0.681829,0.16408,0.268016,0.853045,0.806528,0.695023,0.256492,0.446603,0.264759,0.73588,0.870362,0.00623941,0.338403,0.710959,0.299175,0.888297,0.652205,0.111547,0.734259,0.360717,0.291292,0.74874,0.852886,0.60085,0.317823,0.414086,0.988003,0.987029,0.55244,0.825822,0.692803,0.0349079,0.312743,0.994065,0.77906,0.00815302,0.136742,0.998202,0.831345,0.17491,0.283211,0.471642,0.878249,0.25357,0.32065,0.067474,0.740388,0.419563,0.948912,0.915839,0.618969,0.573611,0.420452,0.744826,0.93472,0.387277,0.474047,0.0885665,0.111465,|0.77351,0.427091,0.581193,0.568455,0.381465,0.539121,0.00177747,0.235277,0.314658,0.298858,0.24565,0.58672,0.449442,0.332479,0.561107,0.680125,0.240709,0.464274,0.921383,0.450195,0.0325107,0.403152,0.538841,0.770784,0.0635194,0.250323,0.59144,0.98788,0.153219,0.698961,0.468399,0.274513,0.0339109,0.0131868,0.0484965,0.37922,0.0727348,0.132129,0.529686,0.867968,0.741309,0.893161,0.530962,0.786788,0.378007,0.182438,0.507076,0.0898363,0.648596,0.132832,0.910252,0.330555,0.425729,0.119224,0.158017,0.650148,0.352053,0.381059,0.225389,0.186496,0.772553,0.472414,0.335788,0.468002,0.817546,0.467038,0.0144593,0.245147,0.614667,0.998415,0.548998,0.466116,0.851029,0.0163099,0.649117,0.352562,0.00195217,0.60978,0.29125,0.460387,0.172585,0.977169,0.528678,0.0596431,0.787061,0.431009,0.20738,0.670038,0.469589,0.500334,0.692495,0.254945,0.460052,0.551896,0.55836,0.638289,0.480592,0.0814995,0.792084,0.892991,0.396522,0.074107,0.882439,0.962851,0.672083,0.171856,0.117047,0.33238,0.0154938,0.281961,0.250157,0.594373,0.152862,0.448287,0.83473,0.355639,0.368527,0.182656,0.440116,0.169722,0.0131061,0.43736,0.572299,0.742727,0.668537,0.360567,0.881216,0.337929,0.243142,0.254812,0.0401918,0.774688,0.253916,0.580483,0.667171,0.894566,0.710942,0.523964,0.991007,0.372337,0.189015,0.161717,0.518281,0.461076,0.158698,0.865182,0.0735536,0.728971,0.302521,0.70242,0.800924,0.187776,0.168156,0.100094,0.0787441,0.109149,0.0289413,0.127013,0.507177,0.759585,0.939631,0.74283,0.15512,0.887138,0.321057,0.756357,0.568986,0.465944,0.422111,0.251271,0.00513268,0.752499,0.00625944,0.471283,0.800424,0.616987,0.4604,0.164289,0.381994,0.175036,0.579624,0.740705,0.704689,0.193736,0.551446,0.526133,0.841082,0.397179,0.465942,0.662353,0.690582,0.661183,0.695626,0.165135,0.996139,0.086992,0.190366,0.757069,0.759854,0.179497,0.355876,0.662699,0.899669,0.0796626,0.692299,0.9369,0.172572,0.36842,0.114588,0.0225987,0.183922,0.289923,0.534991,0.74929,0.224933,0.787831,0.861329,0.751828,0.445306,0.122931,0.245868,0.845867,0.289696,0.724204,0.944188,0.518456,0.020934,0.874502,0.268164,0.192654,0.869625,0.685842,0.956919,0.6212,0.0627141,0.721986,0.814381,0.740308,0.16351,0.894143,0.715046,0.16178,0.434319,0.192709,0.0479342,0.568307,0.219204,0.82056,0.274328,0.969764,0.244836,0.83508,0.209395,0.842178,0.535605,0.832445,0.214344,0.656329,0.39975,0.20527,0.325186,0.00554538,0.179905,0.532457,0.325312,0.770836,0.729965,0.57861,0.165794,0.49546,0.531092,0.236834,0.842933,0.838387,0.278975,0.248824,0.238647,0.27693,0.985479,0.508578,0.663172,0.0682579,0.886475,0.754767,0.0018875,0.64004,0.736648,0.993441,0.511088,0.0939994,0.704111,0.0744129,0.20461,0.645662,0.217239,0.301613,0.0685136,0.429842,0.273784,0.729555,0.406192,0.757143,0.78219,0.180025,0.0394262,0.0900034,0.16551,0.00889587,0.963486,0.683,0.460197,0.135636,0.752755,0.107657,0.586315,0.107732,0.252765,0.250663,0.260832,0.65317,0.828179,0.0989837,0.16136,0.550436,0.474299,0.916684,0.763702,0.726161,0.159447,0.538626,0.471562,0.303792,0.458909,0.89405,0.635245,0.0164914,0.528288,0.00683314,0.389773,0.528724,0.65739,0.567833,0.947399,0.202496,0.931428,0.58327,0.795653,0.202128,0.16464,0.712265,0.370124,0.34275,0.0624307,0.151704,0.89466,0.638722,0.478121,0.993719,0.504156,0.985183,0.2121,0.527061,0.552792,0.688324,0.1093,0.761935,0.402594,0.550134,0.670868,0.52484,0.0624876,0.826353,0.161999,0.389994,0.946302,0.0438898,0.115109,0.274004,0.229396,0.603602,0.601348,0.762175,0.249725,0.668816,0.836636,0.0258099,0.897395,0.508746,0.18237,0.777231,0.493831,0.946717,0.648816,0.812744,0.575002,0.0593532,0.186814,0.200822,0.326159,0.41884,0.644208,0.63695,0.887747,0.295606,0.578118,0.372224,0.562976,0.597694,0.331269,0.139429,0.277176,0.413678,0.245453,0.533571,0.738436,0.261313,0.152838,0.655564,0.295194,0.786546,0.947418,0.728083,0.0996063,0.271642,0.454844,0.346445,0.253918,0.157566,0.0134691,0.723446,0.64887,0.525495,0.212996,0.596733,0.563169,0.838021,0.77281,0.114891,0.221641,0.024237,0.539239,0.0370761,0.706681,0.631172,0.83455,0.9735,0.0472035,0.882576,0.417105,0.286824,0.368619,0.9898,0.799214,0.541652,0.760032,0.435287,0.670154,0.229295,0.25124,0.605763,0.854261,0.742808,0.308746,0.071858,0.39796,0.292167,0.964817,0.126948,0.0622484,0.484575,0.812196,0.733402,0.609558,0.111541,0.87052,0.680128,0.584715,0.419673,0.745958,0.661584,0.895105,0.662947,0.193728,0.116176,0.312003,0.440629,0.932835,0.663648,0.483881,0.822234,0.360892,0.107004,0.185183,0.591995,0.46287,0.79159,0.427347,0.535532,0.569853,0.941251,0.762622,0.747083,0.618823,0.206935,0.555543,0.792655,0.909729,0.253314,0.0528897,0.429965,0.208944,0.960203,0.0446194,0.644857,0.790285,0.688877,0.675834,0.376492,0.687099,0.837832,0.30686,0.999106,0.38736,0.758602,0.468451,0.711291,0.917537,0.774412,0.02244,0.559799,0.669567,0.941888,0.434538,0.176128,0.932764,0.701194,0.335823,0.403217,0.242053,0.853994,0.510334,0.0874661,0.0779128,0.120671,0.522258,0.627451,0.634881,0.668811,0.730102,0.203416,0.487609,0.725613,0.703103,0.946304,0.981789,0.453785,0.0193408,0.189743,0.172953,0.0506892,0.180594,0.0324656,0.210566,0.851699,0.572134,0.553057,0.0722783,0.470517,0.613637,0.115731,0.784077,0.98503,0.476501,0.433286,0.141995,0.226317,0.289491,0.323509,0.293709,0.206114,0.550779,0.618468,0.654441,0.504667,0.302383,0.0980139,0.564527,0.797736,0.861545,0.461098,0.241004,0.400744,0.189256,0.412828,0.433197,0.776786,0.322771,0.708252,0.911449,0.467502,0.776037,0.250541,0.44651,0.527543,0.572378,0.756722,0.950742,0.145376,0.51665,0.313987,0.766346,0.288172,0.727109,0.420918,0.79282,0.403449,0.0553524,0.504255,0.56634,0.578539,0.563153,0.48572,0.0506455,0.534252,0.885647,0.0302723,0.574464,0.319671,0.255354,0.202271,0.578321,0.718756,0.194753,0.936297,0.951809,0.427189,0.922875,0.431493,0.123213,0.934863,0.874772,0.133004,0.723531,0.0654629,0.806154,0.659557,0.315534,0.292342,0.708584,0.352997,0.183548,0.351336,0.933251,0.57562,0.277684,0.945352,0.0986384,0.0216306,0.286974,0.7262,0.62579,0.532922,0.0424627,0.20009,0.993214,0.751104,0.851235,0.204047,0.934373,0.742056,0.567674,0.739564,0.394794,0.851078,0.463212,0.527564,0.696102,0.00575018,0.247367,0.832946,0.465504,0.0710902,0.443985,0.00544995,0.826878,0.930238,0.0377231,0.25659,0.1484,0.0913273,0.758128,0.995259,0.888634,0.152709,0.228406,0.213341,0.543008,0.532792,0.754079,0.515905,0.758731,0.697332,0.843802,0.833423,0.197379,0.579434,0.791521,0.761453,0.578831,0.351904,0.109685,0.84257,0.540422,0.212195,0.990778,0.945883,0.0742206,0.28175,0.350067,0.488248,0.589676,0.632681,0.758394,0.685837,0.811706,0.731506,0.431304,0.0728834,0.813467,0.48804,0.0650094,0.203843,0.0740464,0.400768,0.320243,0.827046,0.384188,0.513384,0.282388,0.831614,0.0648737,0.476849,0.439913,0.175583,0.846838,0.439034,0.0741289,0.999467,0.51016,0.0232089,0.763681,0.162268,0.86921,0.133891,0.789176,0.349063,0.741961,0.373257,0.643865,0.769271,0.864941,0.763141,0.916284,0.358957,0.144893,0.660433,0.0303397,0.298035,0.581734,0.199523,0.77285,0.639122,0.0149416,0.841189,0.675259,0.432968,0.115847,0.512413,0.618773,0.873117,0.784925,0.0173593,0.90034,0.711809,0.919356,0.940046,0.933544,0.364949,0.605471,0.857554,0.095929,0.028534,0.740163,0.565487,0.817245,0.864812,0.259996,0.579968,0.47377,0.0126558,0.204143,0.249462,0.64517,0.191035,0.594378,0.699405,0.24272,0.982194,0.177649,0.0746962,0.320453,0.771124,0.914481,0.0167791,0.626555,0.446222,0.804034,0.0833629,0.921028,0.760122,0.663064,0.789317,0.66407,0.491782,0.76755,0.12075,0.515922,0.807859,0.552262,0.626948,0.715726,0.795812,0.930296,0.61725,0.979567,0.70787,0.62975,0.459987,0.163918,0.700392,0.510315,0.634613,0.523494,0.214131,0.177809,0.758451,0.400372,0.371878,0.68965,0.667665,0.509506,0.530072,0.658545,0.373303,0.0574852,0.733069,0.820886,0.0603234,0.695416,0.240442,0.0989562,0.439598,0.619742,0.127942,0.614103,0.106588,0.0497279,0.414474,0.337922,0.995399,0.710933,0.280382,0.786334,0.210238,0.36251,0.396833,0.4786,0.881691,0.0221894,0.275611,0.233183,0.64179,0.876682,0.730597,0.554399,0.528219,0.0855901,0.555832,0.387655,0.859195,0.473013,0.941587,0.857807,0.290253,0.466873,0.319032,0.680939,0.328402,0.546276,0.644094,0.60266,0.785869,0.491293,0.966535,0.69154,0.792313,0.532455,0.339025,0.163555,0.69859,0.834345,0.129164,0.459384,0.975169,0.031894,0.854201,0.183205,0.300957,0.369966,0.84738,0.64082,0.821854,0.570373,0.719064,0.345976,0.44693,0.081522,0.319832,0.602476,0.589046,0.246772,0.975706,0.631454,0.395375,0.478172,0.434215,0.657048,0.339966,0.0233457,0.247768,0.0771461,0.630185,0.918654,0.517101,0.554445,0.0687975,0.515634,0.976847,0.328774,0.978099,0.428013,0.280308,0.213867,0.682574,0.742128,0.768191,0.0918706,0.679442,0.197261,0.104185,0.922486,0.848574,0.551636,0.223252,0.793536,0.560591,0.412241,0.525217,0.432712,0.439391,0.0863995,0.592423,0.00697821,0.96477,0.097279,0.94611,0.989925,0.328213,0.93501,0.820967,0.733323,0.537913,0.274021,0.842424,0.279552,0.617764,0.113521,0.471687,0.283681,0.00207847,0.535853,0.204348,0.841636,0.508168,0.332049,0.0342463,0.34661,0.246966,0.00267518,0.850936,|0.30733,0.313508,0.371923,0.480833,0.369146,0.311465,0.740583,0.239079,0.00391507,0.29187,0.377678,0.940324,0.364141,0.308409,0.884824,0.62246,0.0493209,0.365561,0.120114,0.961453,0.936407,0.137677,0.96731,0.433243,0.500978,0.0452386,0.948142,0.140011,0.840887,0.097455,0.540596,0.428245,0.0993507,0.962816,0.933755,0.620026,0.290793,0.599832,0.973726,0.704124,0.746877,0.798162,0.651095,0.895785,0.970072,0.765731,0.668832,0.814592,0.942743,0.451123,0.395314,0.10463,0.62945,0.271156,0.948231,0.285756,0.958764,0.0142078,0.0604327,0.161058,0.653445,0.691819,0.414067,0.753945,0.87426,0.0333626,0.434512,0.643509,0.353086,0.389966,0.610511,0.470769,0.857954,0.649548,0.418958,0.632781,0.930869,0.871696,0.858854,0.0816768,0.835899,0.426054,0.141403,0.118001,0.33186,0.383193,0.0252839,0.304442,0.697885,0.994493,0.234314,0.495912,0.377222,0.633174,0.544353,0.624369,0.380211,0.959718,0.198162,0.783828,0.929885,0.948275,0.378622,0.312935,0.524351,0.64448,0.283989,0.979927,0.632579,0.0314492,0.817085,0.921631,0.952687,0.303853,0.127615,0.103284,0.88732,0.389047,0.233928,0.071813,0.915384,0.977244,0.36808,0.634403,0.291389,0.494633,0.207962,0.00536412,0.558127,0.565998,0.113349,0.433475,0.21785,0.945462,0.273762,0.723657,0.450158,0.0834646,0.422519,0.750592,0.203354,0.795474,0.935978,0.89875,0.449197,0.573675,0.285881,0.518481,0.374459,0.195613,0.291333,0.691546,0.0952175,0.958869,0.948018,0.0172899,0.826117,0.747643,0.0858066,0.723704,0.0030033,0.884078,0.809796,0.621138,0.284857,0.716895,0.158566,0.767744,0.339646,0.242875,0.564505,0.534738,0.639951,0.0584354,0.303868,0.72125,0.34614,0.0052352,0.711045,0.237905,0.425596,0.296665,0.56546,0.571816,0.572627,0.868214,0.153165,0.0276616,0.659948,0.499916,0.625514,0.479471,0.414732,0.282507,0.594537,0.997449,0.0325335,0.272816,0.0378451,0.994468,0.35013,0.455085,0.846152,0.0732061,0.240219,0.834196,0.861709,0.276719,0.137148,0.381315,0.404602,0.278971,0.534317,0.475025,0.854093,0.497112,0.808529,0.479332,0.286312,0.048721,0.556869,0.753415,0.116962,0.318941,0.614367,0.568556,0.211246,0.635582,0.424921,0.779854,0.200335,0.735474,0.985156,0.408494,0.0483456,0.545772,0.39131,0.143063,0.100189,0.78875,0.276305,0.645705,0.0521841,0.613471,0.640212,0.90668,0.05594,0.62117,0.320259,0.212356,0.701828,0.107983,0.319328,0.935354,0.654847,0.199987,0.445458,0.336498,0.324705,0.826791,0.328246,0.0936185,0.293405,0.599587,0.297864,0.231433,0.168863,0.16705,0.16094,0.103077,0.0431194,0.12663,0.0654031,0.351196,0.858641,0.224237,0.912098,0.321156,0.938956,0.148509,0.360793,0.154436,0.243566,0.448116,0.410319,0.246255,0.592741,0.752703,0.904142,0.407432,0.463453,0.582175,0.670717,0.421693,0.122255,0.0895812,0.91313,0.963379,0.0427791,0.64998,0.736058,0.0570937,0.135725,0.913534,0.540605,0.106757,0.702654,0.912834,0.105028,0.574335,0.70679,0.0145336,0.692708,0.951106,0.273081,0.574992,0.822856,0.314388,0.177177,0.138866,0.527598,0.313627,0.108438,0.251083,0.841127,0.928502,0.685499,0.378868,0.334559,0.3565,0.628872,0.795107,0.342133,0.409937,0.426414,0.817752,0.377318,0.423581,0.740151,0.818547,0.239274,0.756462,0.890785,0.156618,0.295099,0.743052,0.0809627,0.13648,0.393719,0.332464,0.577,0.594427,0.472399,0.998277,0.544624,0.399597,0.767469,0.380596,0.353774,0.940722,0.431205,0.286561,0.0430163,0.438464,0.725042,0.668051,0.15339,0.517822,0.529128,0.717047,0.26871,0.306867,0.542588,0.399052,0.272234,0.298885,0.910606,0.940232,0.00773174,0.293591,0.20186,0.959982,0.784345,0.689759,0.103966,0.888484,0.596049,0.362764,0.576313,0.0332024,0.554925,0.467711,0.0791577,0.17714,0.679249,0.585368,0.298414,0.660417,0.0340062,0.166263,0.121144,0.893431,0.581329,0.742663,0.970759,0.112892,0.907638,0.48698,0.333497,0.330179,0.157498,0.562384,0.658695,0.150585,0.616603,0.154727,0.0755857,0.212745,0.594687,0.496615,0.740629,0.109353,0.423611,0.354917,0.511853,0.42123,0.0797778,0.884777,0.652986,0.855083,0.953557,0.563318,0.50405,0.614055,0.373424,0.370778,0.235042,0.587168,0.259733,0.363655,0.475775,0.716015,0.472193,0.503119,0.010262,0.0197142,0.480238,0.767788,0.41406,0.900482,0.0804815,0.689981,0.779126,0.660379,0.100978,0.762218,0.190914,0.423978,0.827979,0.278826,0.135031,0.299623,0.0510052,0.141109,0.377472,0.463765,0.366743,0.596979,0.635693,0.655926,0.703516,0.652829,0.640693,0.587454,0.163578,0.732591,0.585019,0.729041,0.691721,0.510627,0.358995,0.512501,0.242303,0.718954,0.377984,0.111756,0.202941,0.731994,0.0258149,0.591007,0.936946,0.923366,0.525749,0.748119,0.875709,0.542707,0.486315,0.597523,0.907949,0.66168,0.467749,0.44292,0.978644,0.325872,0.0680774,0.0661772,0.0420783,0.921965,0.758239,0.904949,0.708756,0.314455,0.614418,0.230376,0.812708,0.552272,0.217213,0.78456,0.27462,0.659918,0.206055,0.840909,0.955121,0.784405,0.757988,0.787268,0.122699,0.498161,0.37147,0.100555,0.666069,0.308669,0.867882,0.170924,0.825759,0.666005,0.521613,0.781285,0.270059,0.649715,0.2754,0.902463,0.0237908,0.484179,0.336608,0.413952,0.778755,0.978745,0.000254333,0.830197,0.500851,0.886397,0.740535,0.700471,0.228926,0.457207,0.441104,0.450707,0.560956,0.360812,0.722089,0.904882,0.463207,0.125367,0.915669,0.723775,0.968565,0.2121,0.776595,0.218821,0.398001,0.667738,0.795974,0.106066,0.648782,0.774981,0.273462,0.843575,0.175508,0.791205,0.32401,0.578047,0.337533,0.489246,0.0596689,0.621899,0.930151,0.165578,0.389674,0.394927,0.657388,0.970963,0.980353,0.730108,0.457706,0.99964,0.431279,0.595119,0.718737,0.315997,0.140315,0.211565,0.82961,0.0276489,0.394497,0.280896,0.514178,0.30972,0.225189,0.822281,0.896201,0.918059,0.00628549,0.513474,0.481356,0.806948,0.335469,0.887449,0.589669,0.624503,0.499787,0.0829932,0.360817,0.611847,0.0490423,0.947934,0.884214,0.701715,0.685805,0.157125,0.239995,0.713457,0.902868,0.799784,0.676135,0.364064,0.899312,0.623468,0.664193,0.233514,0.825797,0.427438,0.266926,0.561679,0.428191,0.739053,0.0429948,0.216263,0.640859,0.290328,0.502293,0.0103005,0.408933,0.684172,0.838091,0.500344,0.723762,0.104032,0.0873992,0.779463,0.724023,0.00923771,0.405654,0.582005,0.682468,0.440485,0.692132,0.189927,0.670622,0.578254,0.971809,0.925142,0.927743,0.144992,0.512191,0.673334,0.267216,0.551504,0.357525,0.0761919,0.844219,0.140048,0.127385,0.743353,0.971804,0.717089,0.998097,0.803094,0.129969,0.632552,0.617978,0.737373,0.115345,0.735123,0.109928,0.0991802,0.0972141,0.978127,0.312895,0.164147,0.27721,0.0536833,0.506943,0.394651,0.682419,0.49611,0.390483,0.315621,0.482435,0.567039,0.643055,0.556038,0.401616,0.0606773,0.595737,0.685816,0.581271,0.253512,0.884016,0.390164,0.598706,0.0229974,0.341485,0.361122,0.155757,0.325948,0.548772,0.999934,0.465461,0.935124,0.967612,0.703623,0.479657,0.472786,0.156337,0.483503,0.982406,0.427666,0.70166,0.218605,0.830357,0.507957,0.0146616,0.957764,0.759616,0.580112,0.815325,0.810083,0.104439,0.0897666,0.41362,0.528837,0.0430422,0.579157,0.604251,0.878149,0.322345,0.403679,0.704908,0.483808,0.718584,0.0755512,0.0535207,0.723937,0.764753,0.167002,0.635731,0.0160626,0.358569,0.920707,0.723,0.159783,0.366743,0.702262,0.90984,0.195202,0.465181,0.684761,0.998672,0.958428,0.627082,0.971879,0.725208,0.641174,0.538893,0.765137,0.191917,0.967966,0.20825,0.198285,0.306293,0.0229917,0.508361,0.0449918,0.211585,0.628044,0.92219,0.618056,0.00183839,0.724504,0.9427,0.950676,0.627357,0.923259,0.635534,0.975818,0.660452,0.605827,0.791326,0.55305,0.248357,0.509125,0.799072,0.689663,0.5244,0.979077,0.656243,0.1236,0.868988,0.70898,0.910918,0.294657,0.32754,0.938566,0.236418,0.900772,0.178031,0.574476,0.765527,0.918949,0.167978,0.455658,0.337215,0.501923,0.555401,0.294972,0.495503,0.0621873,0.527283,0.415081,0.619113,0.02427,0.521305,0.0160174,0.284452,0.922629,0.501831,0.859098,0.81555,0.318192,0.491318,0.90262,0.42498,0.784044,0.985268,0.556832,0.994833,0.910993,0.635823,0.760614,0.136806,0.663631,0.196143,0.315877,0.336088,0.148343,0.74835,0.444594,0.414092,0.0800864,0.594816,0.133503,0.563975,0.537507,0.816233,0.582682,0.668313,0.846068,0.346307,0.802282,0.726983,0.416803,0.861809,0.552884,0.530342,0.693248,0.793808,0.342093,0.942743,0.713763,0.961905,0.253737,0.164141,0.526575,0.391322,0.593707,0.290792,0.824238,0.996436,0.32631,0.991649,0.0443086,0.379949,0.268547,0.882432,0.102,0.0238904,0.126335,0.124991,0.365852,0.982627,0.934193,0.260149,0.176559,0.105498,0.637517,0.120005,0.434176,0.216635,0.299263,0.657946,0.182587,0.611083,0.568733,0.753857,0.221632,0.966812,0.676807,0.551008,0.698625,0.63745,0.324238,0.00443929,0.146977,0.00441486,0.473304,0.865861,0.856996,0.427933,0.038267,0.129083,0.347043,0.953481,0.770782,0.807045,0.484217,0.770543,0.327,0.585379,0.67686,0.0212103,0.262033,0.510647,0.214795,0.216191,0.887705,0.213028,0.704866,0.824615,0.395381,0.470079,0.490764,0.379485,0.930949,0.781417,0.0822614,0.678359,0.0157427,0.338033,0.971538,0.966628,0.0607478,0.755907,0.65381,0.513179,0.53215,0.139253,0.619204,0.124886,0.803028,0.775788,0.963641,0.684196,0.376434,0.472244,0.219546,0.976297,0.582703,0.954882,0.851768,0.583831,0.730005,0.765729,0.806135,0.0580051,0.725131,0.412384,0.399187,0.554914,0.593436,|0.807228,0.504175,0.0241995,0.518629,0.697025,0.985522,0.517079,0.617841,0.629246,0.685041,0.533205,0.419456,0.651771,0.16297,0.212317,0.442463,0.841248,0.679346,0.765178,0.444917,0.160706,0.269156,0.812778,0.0841338,0.472984,0.335674,0.323215,0.775755,0.400425,0.497294,0.612284,0.229714,0.38945,0.210187,0.0391731,0.674961,0.108789,0.848847,0.754517,0.615519,0.480235,0.907916,0.13079,0.941976,0.405586,0.461018,0.722461,0.113874,0.36085,0.906346,0.450518,0.444709,0.259285,0.465641,0.0409713,0.361709,0.17697,0.444219,0.389594,0.369896,0.461222,0.472452,0.196079,0.500312,0.408964,0.882609,0.214685,0.74666,0.417782,0.853321,0.843394,0.916834,0.150424,0.0395261,0.497041,0.752573,0.586196,0.204081,0.470059,0.117835,0.950057,0.74222,0.65621,0.0728892,0.37484,0.881134,0.585514,0.923285,0.97803,0.373418,0.695884,0.102826,0.725848,0.624128,0.940554,0.148979,0.631845,0.109544,0.0684195,0.987891,0.0369828,0.285701,0.157161,0.492832,0.202964,0.97666,0.925777,0.132643,0.198904,0.89545,0.962068,0.683554,0.808483,0.817484,0.425982,0.356347,0.625898,0.935284,0.639178,0.319095,0.92129,0.886078,0.952956,0.278576,0.0353305,0.864428,0.208007,0.400578,0.140887,0.567956,0.0265555,0.774057,0.680331,0.433134,0.911898,0.640017,0.594188,0.737838,0.870271,0.405121,0.765485,0.729425,0.710285,0.863149,0.622406,0.826546,0.735741,0.0170093,0.206179,0.540544,0.742792,0.783961,0.37345,0.831229,0.183204,0.0733403,0.982316,0.159126,0.727508,0.425356,0.511357,0.636829,0.210094,0.374955,0.890266,0.560202,0.340824,0.90084,0.557173,0.871489,0.334487,0.500622,0.860333,0.0111075,0.599603,0.155847,0.930049,0.817226,0.936114,0.724396,0.530039,0.157496,0.338874,0.368733,0.120289,0.948343,0.0691665,0.225606,0.690884,0.554894,0.1293,0.716051,0.105197,0.0433977,0.444891,0.175533,0.352188,0.301731,0.212678,0.406787,0.108016,0.286489,0.125454,0.364943,0.103916,0.057467,0.770885,0.485302,0.425707,0.416631,0.577465,0.417401,0.775274,0.92495,0.229546,0.80715,0.253537,0.102182,0.830955,0.661795,0.0244259,0.396926,0.985721,0.304037,0.403714,0.53178,0.44541,0.646618,0.384217,0.126988,0.199332,0.831018,0.882992,0.504471,0.263377,0.399688,0.451456,0.943136,0.030894,0.196989,0.847722,0.565844,0.664165,0.00790673,0.791513,0.502201,0.699807,0.989788,0.355151,0.105481,0.356275,0.51466,0.238558,0.634325,0.684441,0.830765,0.911245,0.821958,0.886238,0.759343,0.948889,0.319181,0.0495023,0.13642,0.509098,0.403807,0.65245,0.149926,0.32323,0.257999,0.904896,0.343493,0.928769,0.835732,0.604918,0.988721,0.833294,0.574297,0.75451,0.896723,0.522786,0.566712,0.808946,0.745972,0.348214,0.857922,0.203885,0.517351,0.132071,0.93811,0.469474,0.97448,0.715986,0.122994,0.169801,0.0503713,0.508282,0.473561,0.0741705,0.0877216,0.191062,0.851194,0.068683,0.282657,0.176499,0.29698,0.531803,0.523734,0.660292,0.0976962,0.821046,0.639599,0.623762,0.322929,0.677744,0.0650597,0.342301,0.0791031,0.109412,0.102286,0.59834,0.393677,0.0577902,0.874158,0.0324595,0.235067,0.0137898,0.767549,0.97316,0.711377,0.121862,0.198,0.753116,0.533813,0.0183807,0.899919,0.538718,0.76212,0.63928,0.180793,0.888157,0.54938,0.488487,0.305867,0.0186043,0.0289652,0.351715,0.624382,0.00771928,0.933863,0.571499,0.249523,0.521777,0.522934,0.323805,0.901907,0.0105804,0.869526,0.987143,0.923434,0.174875,0.400347,0.884717,0.964474,0.841859,0.803359,0.216435,0.0310053,0.343916,0.976131,0.747088,0.624842,0.10691,0.152433,0.723734,0.42866,0.545548,0.314631,0.278728,0.245772,0.581902,0.335714,0.0173416,0.10135,0.314617,0.141457,0.0404053,0.948447,0.43834,0.946514,0.718371,0.528884,0.0967662,0.288972,0.176753,0.977835,0.494309,0.852089,0.988906,0.519261,0.559485,0.325763,0.143615,0.92743,0.934102,0.0720884,0.76914,0.563896,0.9625,0.852102,0.665227,0.00558835,0.326492,0.49985,0.113329,0.651178,0.335872,0.896181,0.540591,0.982502,0.60993,0.0925575,0.958962,0.44655,0.196177,0.672465,0.848973,0.716235,0.764135,0.0823098,0.537975,0.34779,0.725637,0.0827489,0.933962,0.00238234,0.142726,0.481067,0.00925833,0.338523,0.778681,0.854079,0.163075,0.681224,0.176743,0.244152,0.83621,0.225203,0.229764,0.677305,0.228382,0.322705,0.574558,0.203367,0.792613,0.845475,0.147169,0.787295,0.224561,0.353427,0.864618,0.677476,0.864956,0.981517,0.447724,0.469954,0.314812,0.210581,0.861803,0.766076,0.0575504,0.267553,0.839915,0.597249,0.630465,0.101548,0.0418142,0.931402,0.215984,0.315016,0.556581,0.93732,0.357716,0.0296254,0.0704241,0.702918,0.11641,0.165921,0.962092,0.0990952,0.488412,0.696103,0.306149,0.487105,0.854696,0.56087,0.318294,0.61807,0.257223,0.854181,0.528321,0.0220709,0.0786137,0.425078,0.264779,0.000502706,0.360329,0.769035,0.511588,0.268183,0.336746,0.117555,0.709428,0.411061,0.88011,0.838826,0.105047,0.013976,0.595779,0.369908,0.313641,0.785271,0.577339,0.0601995,0.010166,0.349856,0.0126225,0.267331,0.562369,0.892711,0.491707,0.620077,0.354259,0.271483,0.328642,0.161824,0.824326,0.83666,0.0824724,0.684247,0.944927,0.616076,0.766066,0.797245,0.60517,0.103228,0.597467,0.901721,0.475407,0.453354,0.188782,0.798995,0.0156977,0.117642,0.752872,0.261507,0.378893,0.404498,0.602466,0.302276,0.406571,0.396903,0.280802,0.492195,0.889725,0.196465,0.884747,0.47638,0.220059,0.723925,0.192792,0.120637,0.910533,0.328273,0.214521,0.743963,0.773054,0.421948,0.285603,0.984859,0.803499,0.389669,0.695585,0.0268017,0.960096,0.93386,0.312955,0.278601,0.755304,0.507316,0.303507,0.292665,0.164665,0.328907,0.15816,0.298112,0.900538,0.876918,0.379348,0.100422,0.493295,0.554792,0.391852,0.385519,0.112386,0.482073,0.88834,0.735522,0.467014,0.372053,0.651456,0.608355,0.199006,0.190686,0.213928,0.389497,0.513895,0.250623,0.929481,0.878069,0.0150468,0.331152,0.271034,0.886175,0.565392,0.28587,0.602082,0.849835,0.551238,0.943098,0.629306,0.814931,0.892874,0.812204,0.337548,0.479845,0.486848,0.459122,0.855012,0.242556,0.228997,0.752832,0.378321,0.602921,0.92231,0.643662,0.565341,0.40157,0.729708,0.561896,0.492226,0.689416,0.336089,0.605521,0.655833,0.692032,0.108447,0.0952968,0.141755,0.645423,0.330375,0.664204,0.753087,0.078364,0.244484,0.951452,0.129734,0.078109,0.590113,0.914668,0.751552,0.547284,0.427422,0.694917,0.699476,0.0992184,0.596906,0.819554,0.667005,0.956453,0.604333,0.614047,0.316273,0.304408,0.0082702,0.046049,0.492122,0.800235,0.173092,0.241943,0.408946,0.204445,0.976891,0.773891,0.152821,0.914561,0.665275,0.0824108,0.593139,0.838979,0.968964,0.401734,0.27261,0.370363,0.588851,0.145283,0.224404,0.774363,0.509593,0.666362,0.135998,0.158547,0.283493,0.195489,0.584905,0.652947,0.069995,0.349966,0.26425,0.594875,0.324173,0.565612,0.0461314,0.309816,0.493693,0.579682,0.386038,0.502471,0.268152,0.709889,0.84826,0.167626,0.899317,0.178381,0.557453,0.907905,0.635957,0.920663,0.867727,0.44916,0.388921,0.800039,0.175609,0.417533,0.119841,0.583155,0.056236,0.756202,0.864435,0.990882,0.268203,0.49692,0.118998,0.427725,0.613516,0.721034,0.687496,0.367788,0.754259,0.973672,0.676347,0.56982,0.115281,0.508343,0.078107,0.474425,0.0623931,0.509162,0.201959,0.393922,0.20381,0.304676,0.362264,0.649919,0.639973,0.975247,0.499283,0.170864,0.864207,0.433574,0.452819,0.292376,0.946934,0.9558,0.0617133,0.290783,0.135691,0.684212,0.438781,0.749965,0.128477,0.748618,0.268411,0.730428,0.248014,0.901449,0.743309,0.547629,0.598356,0.410971,0.362401,0.898225,0.928644,0.385723,0.560531,0.153759,0.342894,0.19707,0.406228,0.0254325,0.374768,0.530448,0.151797,0.592546,0.159552,0.00666147,0.0322599,0.39449,0.562155,0.838999,0.0741982,0.95258,0.129042,0.127596,0.394875,0.189444,0.917263,0.500677,0.438971,0.327174,0.900881,0.0161812,0.819812,0.488137,0.863192,0.766689,0.621149,0.843774,0.615052,0.048624,0.902998,0.923415,0.272469,0.951231,0.850227,0.70073,0.741058,0.652523,0.187967,0.0401132,0.52749,0.52146,0.361537,0.372678,0.360963,0.431699,0.113182,0.0210427,0.186384,0.0289251,0.343495,0.755165,0.0267441,0.835031,0.739463,0.614867,0.0772914,0.138366,0.442703,0.96773,0.596232,0.381184,0.0674966,0.714406,0.602526,0.185997,0.302249,0.946759,0.875654,0.847561,0.204167,0.973887,0.471645,0.418741,0.16938,0.784695,0.374139,0.930144,0.0017547,0.16595,0.301488,0.57615,0.353981,0.528807,0.263503,0.320916,0.157817,0.109031,0.422849,0.878208,0.170063,0.447076,0.00395209,0.0533384,0.585457,0.400077,0.212931,0.356381,0.732579,0.611321,0.835064,0.293372,0.604022,0.162216,0.197072,0.0542391,0.894497,0.542228,0.785234,0.0438317,0.465434,0.159865,0.887776,0.823156,0.917929,0.234406,0.0285652,0.272565,0.480696,0.597728,0.367707,0.339573,0.964788,0.263367,0.465029,0.44004,0.369252,0.770012,0.432046,0.761834,0.419814,0.0852872,0.0773917,0.102224,0.16991,0.941957,0.618476,0.950968,0.0718439,0.507491,0.888283,0.979231,0.423879,0.661204,0.929909,0.918897,0.236367,0.357261,0.140848,0.747995,0.285927,0.95589,0.448734,0.0952374,0.207435,0.37361,0.750314,0.162653,0.754065,0.382056,0.737567,0.613264,0.329791,0.0607525,0.286061,0.275807,0.659832,0.0681282,0.222571,0.514197,0.251048,0.097958,0.983379,0.315001,0.946629,0.183905,0.460848,0.117239,0.408916,0.422972,0.675975,0.495745,0.854778,0.589567,0.344616,0.00494784,0.187871,0.200135,0.362626,0.83839,|0.635401,0.222414,0.414618,0.744478,0.568504,0.88042,0.512096,0.885295,0.765723,0.124935,0.874863,0.875039,0.866382,0.438427,0.325948,0.137991,0.497829,0.893549,0.484799,0.746053,0.507946,0.97345,0.0558395,0.270977,0.474392,0.696649,0.140836,0.831597,0.923467,0.609169,0.219007,0.499645,0.336061,0.142887,0.190504,0.950695,0.606462,0.709629,0.147436,0.959647,0.842135,0.89061,0.601417,0.89062,0.704512,0.119833,0.237702,0.702087,0.4847,0.155641,0.140891,0.680723,0.569961,0.928672,0.675933,0.668187,0.297086,0.933716,0.546035,0.618362,0.512624,0.414453,0.757276,0.807509,0.173255,0.179213,0.490309,0.810596,0.724167,0.144354,0.703837,0.497894,0.759187,0.508322,0.370984,0.79712,0.540805,0.773172,0.101542,0.0651211,0.560951,0.471577,0.0470214,0.647366,0.877701,0.108285,0.999522,0.834486,0.197927,0.901606,0.484763,0.496351,0.701964,0.0084064,0.304293,0.405048,0.65533,0.21371,0.30145,0.78328,0.648029,0.402166,0.46942,0.408442,0.25171,0.43271,0.699994,0.465391,0.523102,0.512789,0.952145,0.687184,0.696029,0.938645,0.287751,0.529991,0.240322,0.601005,0.883463,0.977326,0.569464,0.560755,0.322031,0.507068,0.772275,0.896107,0.388142,0.759301,0.550807,0.0575783,0.655131,0.412301,0.116669,0.774971,0.619674,0.105096,0.712961,0.116241,0.862085,0.217018,0.549173,0.639322,0.874936,0.882408,0.242523,0.745497,0.530941,0.64369,0.322194,0.266633,0.860096,0.648586,0.760211,0.0257546,0.275649,0.987864,0.307728,0.872366,0.87895,0.42519,0.731626,0.261214,0.71226,0.134722,0.795277,0.226137,0.863711,0.379146,0.453878,0.488198,0.540371,0.266471,0.261648,0.679689,0.666587,0.537104,0.303575,0.965146,0.0626149,0.972268,0.685905,0.0419799,0.0897217,0.0775326,0.575876,0.499224,0.996581,0.66214,0.986501,0.644668,0.427707,0.0380195,0.736275,0.886832,0.760729,0.52023,0.302994,0.620822,0.759776,0.498316,0.270778,0.633279,0.752451,0.179319,0.303173,0.767715,0.939688,0.903173,0.671069,0.566466,0.573083,0.957081,0.545558,0.298506,0.247872,0.0669283,0.225906,0.226112,0.452285,0.032956,0.086607,0.924331,0.952375,0.918629,0.496631,0.367793,0.0888945,0.274104,0.0934743,0.437846,0.824917,0.949975,0.898715,0.0124123,0.935319,0.118915,0.956934,0.441795,0.325684,0.771406,0.133593,0.0955877,0.732406,0.89108,0.0797932,0.853644,0.906485,0.406916,0.473315,0.188514,0.650331,0.762224,0.578281,0.165056,0.285802,0.816736,0.255294,0.242792,0.320824,0.648521,0.0202776,0.812055,0.992568,0.486502,0.671242,0.662699,0.655282,0.914499,0.193508,0.648327,0.336488,0.757467,0.957772,0.0838562,0.362649,0.0293818,0.974275,0.485537,0.15639,0.23494,0.893047,0.764148,0.0913589,0.00896871,0.87771,0.531504,0.356489,0.964104,0.0118812,0.792525,0.546378,0.1124,0.00841284,0.886708,0.264363,0.789183,0.871739,0.256494,0.782593,0.806037,0.592595,0.277653,0.473452,0.90364,0.244487,0.839393,0.848878,0.532866,0.105558,0.842977,0.637357,0.557381,0.796969,0.755318,0.196727,0.31618,0.432606,0.790821,0.753189,0.000464261,0.324821,0.987724,0.929031,0.253538,0.00101858,0.0914983,0.520722,0.0251858,0.669215,0.435415,0.769377,0.429342,0.298581,0.183972,0.734727,0.715713,0.785052,0.874678,0.045247,0.995295,0.957096,0.167805,0.16957,0.645459,0.240364,0.892313,0.906362,0.894323,0.875019,0.754424,0.936431,0.165337,0.807306,0.51972,0.909921,0.568996,0.593234,0.926126,0.00382197,0.498227,0.613684,0.18906,0.488334,0.250515,0.470634,0.686305,0.988522,0.128986,0.67318,0.395556,0.0561196,0.777893,0.830767,0.170452,0.463134,0.569651,0.754897,0.212997,0.461325,0.82383,0.26397,0.915586,0.898243,0.201755,0.416949,0.461041,0.0647584,0.0469432,0.947285,0.819999,0.610086,0.525737,0.601204,0.662373,0.594697,0.448421,0.456881,0.642154,0.100022,0.404547,0.409509,0.988202,0.42588,0.842057,0.813802,0.764907,0.548343,0.719285,0.0146272,0.635578,0.548115,0.276705,0.11323,0.4874,0.392637,0.842533,0.0996103,0.655762,0.113974,0.270568,0.6258,0.812783,0.2146,0.790879,0.0729305,0.522357,0.248311,0.68756,0.475542,0.842157,0.548341,0.982237,0.494029,0.283072,0.862367,0.12925,0.250657,0.909797,0.921645,0.0720724,0.739505,0.144929,0.961228,0.280061,0.328371,0.928076,0.412495,0.592169,0.636203,0.550618,0.677673,0.802346,0.156207,0.382913,0.153428,0.239246,0.652457,0.334683,0.747599,0.213606,0.123909,0.101981,0.702282,0.630666,0.697377,0.703938,0.302616,0.490416,0.504074,0.882733,0.752838,0.0952955,0.688915,0.563958,0.363614,0.969466,0.810749,0.944028,0.736615,0.224132,0.656411,0.927676,0.139387,0.769311,0.0320977,0.238265,0.656744,0.640955,0.665535,0.0731348,0.077567,0.663115,0.546378,0.342851,0.587909,0.64193,0.189584,0.504354,0.955631,0.744088,0.767661,0.142738,0.519145,0.707976,0.400892,0.811116,0.347826,0.0471628,0.515926,0.350771,0.0809875,0.126123,0.411821,0.907928,0.515426,0.669651,0.131392,0.524517,0.0340289,0.324067,0.91496,0.00881755,0.0145921,0.928571,0.712796,0.103912,0.694471,0.153338,0.52382,0.783217,0.11156,0.531672,0.713655,0.614191,0.199935,0.665941,0.813998,0.187913,0.992203,0.0212017,0.184421,0.0356222,0.44024,0.95593,0.97133,0.0321292,0.230706,0.904495,0.856591,0.399609,0.0235286,0.992936,0.252633,0.24658,0.163908,0.339764,0.412587,0.664999,0.336798,0.255547,0.82648,0.00624722,0.652333,0.284472,0.459576,0.0654783,0.719806,0.479021,0.115424,0.65646,0.747709,0.89877,0.459333,0.581395,0.447658,0.482764,0.948047,0.0422968,0.484901,0.512796,0.955844,0.188263,0.458285,0.149074,0.176509,0.217091,0.575315,0.539431,0.0363844,0.859112,0.421125,0.413689,0.850163,0.81411,0.220158,0.107301,0.320501,0.381441,0.200612,0.727113,0.756026,0.244426,0.263237,0.287593,0.940807,0.199205,0.584467,0.446053,0.46454,0.73655,0.389954,0.329483,0.557058,0.525599,0.738182,0.772504,0.679451,0.342473,0.35552,0.443507,0.418511,0.947675,0.590836,0.651759,0.509753,0.492567,0.263296,0.340782,0.922206,0.336352,0.792678,0.73996,0.750314,0.823836,0.0827145,0.0784211,0.0659894,0.189228,0.680227,0.608757,0.306569,0.882291,0.960121,0.662881,0.23719,0.17877,0.262628,0.771097,0.745718,0.432334,0.779451,0.821085,0.208387,0.756908,0.752286,0.507001,0.873017,0.86722,0.731227,0.466231,0.418491,0.767009,0.906915,0.198992,0.725817,0.770015,0.856372,0.00311548,0.849358,0.721745,0.770675,0.400647,0.720036,0.242777,0.0244507,0.441225,0.602051,0.2167,0.351225,0.188286,0.524618,0.323962,0.0830495,0.636836,0.0183303,0.390922,0.998693,0.224332,0.867978,0.613373,0.248062,0.755659,0.11666,0.138903,0.847011,0.489,0.931442,0.245082,0.168176,0.177395,0.653858,0.183075,0.451176,0.123997,0.0357186,0.662452,0.544983,0.982998,0.677436,0.970921,0.327252,0.236678,0.456644,0.179885,0.596298,0.956943,0.919767,0.123835,0.489271,0.13218,0.459768,0.732865,0.974838,0.612537,0.908705,0.798831,0.796017,0.199876,0.819006,0.107712,0.552601,0.866652,0.921074,0.616137,0.452867,0.813361,0.632322,0.279418,0.915008,0.546902,0.91806,0.865074,0.392149,0.15953,0.674189,0.548493,0.709286,0.218591,0.362886,0.80458,0.318879,0.540767,0.307347,0.0642776,0.497019,0.367748,0.930436,0.30137,0.157497,0.581978,0.169406,0.71894,0.0274899,0.416458,0.902991,0.515501,0.0305149,0.366459,0.612304,0.655765,0.948006,0.449087,0.82182,0.270826,0.78124,0.567647,0.628765,0.846358,0.222361,0.74608,0.213024,0.190952,0.486068,0.812093,0.257967,0.728347,0.549482,0.793132,0.112779,0.14404,0.188834,0.0442688,0.90827,0.881614,0.864149,0.864715,0.625749,0.704109,0.948777,0.217093,0.372639,0.861389,0.348441,0.479028,0.187685,0.657005,0.279468,0.619538,0.898737,0.189419,0.531316,0.305983,0.776845,0.79912,0.792428,0.022091,0.53286,0.378935,0.925794,0.735825,0.379464,0.431204,0.00106108,0.452264,0.0225013,0.471575,0.617069,0.0363084,0.187347,0.127931,0.839116,0.209494,0.144393,0.748388,0.598858,0.122942,0.591663,0.265209,0.965594,0.401412,0.850162,0.259873,0.777625,0.595467,0.700151,0.804049,0.352893,0.854944,0.879864,0.0222981,0.513992,0.249245,0.292404,0.964247,0.135924,0.647993,0.196657,0.0460296,0.138957,0.913136,0.056417,0.613224,0.975617,0.819081,0.344401,0.275883,0.917277,0.166481,0.706577,0.428035,0.650102,0.172743,0.57865,0.0113144,0.372233,0.776216,0.510239,0.364245,0.914685,0.84766,0.322542,0.792353,0.225964,0.303196,0.346731,0.0827025,0.615197,0.558643,0.94322,0.908712,0.903725,0.393903,0.0805122,0.811006,0.386101,0.67805,0.945947,0.909555,0.170141,0.341071,0.284618,0.307678,0.00596291,0.00658309,0.227797,0.12958,0.777834,0.584135,0.939919,0.0793487,0.586215,0.349648,0.765745,0.852501,0.836528,0.00673729,0.920294,0.253301,0.960112,0.366212,0.617531,0.435956,0.738419,0.0487157,0.549433,0.330246,0.502022,0.924653,0.593479,0.180116,0.477835,0.251025,0.54518,0.341485,0.152657,0.82087,0.597523,0.545268,0.734663,0.326283,0.155281,0.70578,0.900058,0.261463,0.551007,0.324446,0.937719,0.0358121,0.879662,0.52801,0.0422222,0.970169,0.654118,0.340348,0.219749,0.55434,0.999875,0.480106,0.0657182,0.532731,0.295132,0.65569,0.105681,0.932401,0.209131,0.600814,0.948309,0.108545,0.254689,0.511841,0.627296,0.771984,0.26714,0.314582,0.276828,0.567868,0.45867,0.889319,0.688872,0.159156,0.444567,0.997317,0.672604,0.0221691,0.332741,0.503721,0.323156,0.871498,0.417426,0.649354,0.800913,0.878198,0.519631,0.666142,0.406192,0.602624,0.923817,0.58856,0.711741,0.0289733,|0.356584,0.249391,0.300953,0.512378,0.689729,0.725008,0.569664,0.843613,0.157272,0.387947,0.90299,0.569035,0.988842,0.303553,0.0154288,0.715255,0.71685,0.960814,0.3557,0.54564,0.547134,0.933167,0.707779,0.629926,0.990174,0.339273,0.334447,0.821077,0.961746,0.311221,0.924469,0.102719,0.610707,0.256838,0.226795,0.0991984,0.708488,0.392815,0.39289,0.14064,0.797127,0.598445,0.876464,0.0752123,0.900722,0.286429,0.554166,0.526746,0.537825,0.244538,0.972077,0.00253659,0.0176443,0.394967,0.748568,0.858858,0.570858,0.508,0.407307,0.603149,0.322231,0.70093,0.94544,0.839359,0.101095,0.088457,0.169941,0.123347,0.615441,0.102201,0.366737,0.0533636,0.49024,0.628736,0.510204,0.432175,0.83057,0.379216,0.810037,0.836332,0.398187,0.562155,0.148948,0.596185,0.0904025,0.879205,0.648824,0.565679,0.661613,0.0613974,0.418263,0.300698,0.481664,0.217688,0.296123,0.356176,0.0625252,0.970198,0.846611,0.873331,0.59656,0.384153,0.308488,0.774471,0.182076,0.930595,0.548841,0.765288,0.568215,0.957796,0.0522287,0.814029,0.269814,0.391415,0.0168013,0.320201,0.928848,0.397394,0.432591,0.286085,0.263467,0.394777,0.245153,0.0321233,0.588991,0.0828313,0.751559,0.503088,0.141531,0.522571,0.529117,0.0107647,0.598227,0.418367,0.266415,0.522136,0.370301,0.22229,0.399454,0.758127,0.520136,0.496833,0.806878,0.185573,0.123059,0.608051,0.169229,0.716394,0.696667,0.271463,0.742894,0.657062,0.702893,0.668999,0.955831,0.88237,0.504275,0.353625,0.979598,0.716833,0.154672,0.49211,0.669761,0.427112,0.681224,0.785212,0.108002,0.680292,0.520367,0.0673388,0.548733,0.284048,0.76479,0.332167,0.424622,0.251427,0.842194,0.789939,0.710703,0.314434,0.150759,0.873393,0.40027,0.516557,0.435594,0.926953,0.620292,0.271354,0.609491,0.540475,0.18774,0.437981,0.0574791,0.00553954,0.345662,0.731995,0.771172,0.070094,0.147301,0.631323,0.21544,0.786787,0.0195845,0.763614,0.464492,0.91832,0.225645,0.816843,0.48916,0.0321448,0.149083,0.0250863,0.693637,0.199875,0.909132,0.620104,0.637273,0.395639,0.309134,0.92932,0.011184,0.189189,0.977806,0.793596,0.247289,0.884442,0.098317,0.909617,0.578214,0.316293,0.324945,0.0745555,0.138491,0.287647,0.058415,0.312344,0.928745,0.407976,0.497466,0.774476,0.261524,0.194294,0.736933,0.89747,0.32901,0.133578,0.501857,0.267515,0.382774,0.908836,0.484052,0.701928,0.593486,0.843238,0.488367,0.275901,0.784649,0.396621,0.975072,0.502222,0.0454857,0.052167,0.387093,0.536509,0.117142,0.618012,0.298151,0.378337,0.548498,0.409982,0.362332,0.653908,0.278146,0.902818,0.556715,0.908936,0.502554,0.958461,0.392543,0.148003,0.786111,0.958835,0.487284,0.449773,0.435647,0.250978,0.248301,0.837493,0.707742,0.883256,0.45139,0.997124,0.49894,0.670864,0.584888,0.461026,0.105306,0.210824,0.0359109,0.127751,0.149665,0.224642,0.268655,0.827823,0.0957005,0.0603494,0.0107173,0.553554,0.107665,0.0582759,0.691244,0.270823,0.473755,0.498435,0.696949,0.789502,0.339151,0.774694,0.478719,0.377352,0.682155,0.584468,0.377759,0.945316,0.478221,0.947864,0.84633,0.656454,0.921375,0.177336,0.948305,0.432273,0.52058,0.734046,0.737682,0.148838,0.516454,0.32763,0.40131,0.479245,0.364756,0.496767,0.424946,0.527231,0.92979,0.982467,0.636171,0.412367,0.229243,0.697635,0.826778,0.820727,0.5771,0.110848,0.119168,0.315757,0.255656,0.520791,0.390372,0.841493,0.794368,0.749435,0.864659,0.460366,0.249759,0.310751,0.656572,0.0327222,0.0736153,0.979377,0.879012,0.372274,0.279316,0.546356,0.677244,0.02499,0.610399,0.620619,0.00844252,0.31307,0.315482,0.536455,0.580739,0.0746685,0.355619,0.454713,0.360448,0.704911,0.225282,0.249424,0.323447,0.780127,0.96296,0.010919,0.301353,0.313472,0.819856,0.142928,0.760534,0.310703,0.640927,0.0862857,0.838494,0.860562,0.846177,0.173356,0.499331,0.361022,0.986817,0.977196,0.520078,0.715069,0.619904,0.60429,0.377698,0.267848,0.146695,0.827064,0.423368,0.889755,0.261327,0.426294,0.126668,0.353397,0.772762,0.166471,0.678721,0.362048,0.0146364,0.852095,0.289332,0.90155,0.0406211,0.178373,0.874374,0.611294,0.959848,0.632481,0.736479,0.76467,0.295492,0.165684,0.48182,0.209008,0.720576,0.0243662,0.403117,0.797524,0.434238,0.0928349,0.45366,0.423675,0.291524,0.0282835,0.544965,0.640441,0.506998,0.367453,0.879915,0.127802,0.591708,0.814939,0.651989,0.461134,0.95463,0.714068,0.492224,0.0495977,0.944614,0.483627,0.586838,0.862682,0.838582,0.496159,0.243768,0.37318,0.108947,0.397639,0.668641,0.485278,0.19604,0.0405558,0.384968,0.915184,0.0392568,0.800946,0.957003,0.00418854,0.446932,0.939992,0.1804,0.782305,0.229673,0.255722,0.0361961,0.891938,0.764908,0.73566,0.156062,0.316123,0.105561,0.279087,0.0795026,0.36701,0.0425351,0.215629,0.55891,0.275738,0.578256,0.68058,0.0344362,0.413528,0.857781,0.699195,0.071323,0.513461,0.726549,0.542888,0.894377,0.542591,0.745625,0.406395,0.803072,0.78249,0.314942,0.585507,0.240976,0.0687817,0.335905,0.325764,0.871979,0.745124,0.252546,0.247029,0.355421,0.193134,0.410055,0.170636,0.216526,0.762417,0.613853,0.0359083,0.583902,0.859659,0.616105,0.93736,0.969721,0.892098,0.794529,0.745251,0.812275,0.324984,0.566532,0.766962,0.254271,0.572306,0.170224,0.175658,0.677334,0.970613,0.436775,0.873343,0.269587,0.242832,0.496868,0.978167,0.369554,0.588933,0.236958,0.397011,0.732513,0.475005,0.756591,0.578276,0.0239406,0.0248037,0.248121,0.971703,0.768317,0.111391,0.636391,0.634871,0.250042,0.411006,0.98379,0.139166,0.572294,0.918664,0.640009,0.600174,0.221404,0.115952,0.0213761,0.475089,0.260543,0.43285,0.19312,0.332893,0.174788,0.215831,0.560841,0.454449,0.151831,0.81813,0.856082,0.0526829,0.620705,0.606186,0.113434,0.28259,0.319579,0.239834,0.418123,0.135357,0.749483,0.970691,0.201518,0.223163,0.51769,0.578452,0.829195,0.579998,0.12697,0.29041,0.54025,0.789981,0.502185,0.888689,0.264715,0.161838,0.296664,0.791252,0.193156,0.185155,0.0798781,0.399731,0.530933,0.202417,0.115478,0.994105,0.460544,0.505837,0.241201,0.112014,0.929041,0.597216,0.203103,0.220893,0.238048,0.734619,0.735114,0.385555,0.514505,0.595207,0.295831,0.487681,0.00467372,0.585115,0.493577,0.671938,0.212271,0.905593,0.607218,0.0191148,0.457404,0.760559,0.730428,0.631116,0.521698,0.481978,0.956162,0.936328,0.952715,0.0611563,0.528146,0.357684,0.532813,0.649749,0.34503,0.843356,0.655396,0.0619492,0.282751,0.36687,0.42862,0.757728,0.913373,0.255254,0.194275,0.10561,0.421593,0.537396,0.249448,0.0945951,0.9503,0.882534,0.634677,0.00453013,0.17069,0.819184,0.503455,0.88868,0.771708,0.343936,0.553885,0.0115715,0.973933,0.80993,0.0762051,0.87946,0.360594,0.631385,0.297799,0.783379,0.696329,0.515048,0.553017,0.168669,0.76384,0.577462,0.357553,0.0404744,0.172281,0.401201,0.109417,0.289978,0.758391,0.443671,0.652296,0.867855,0.420029,0.388404,0.35649,0.481341,0.882629,0.0492953,0.974478,0.965682,0.647739,0.467778,0.474516,0.132741,0.278017,0.639171,0.617581,0.870704,0.0790082,0.657377,0.411474,0.527367,0.87482,0.376631,0.87546,0.198607,0.624462,0.65591,0.298491,0.830755,0.888222,0.197691,0.872248,0.776527,0.594161,0.551613,0.356004,0.117583,0.715225,0.128435,0.284919,0.486023,0.953412,0.135208,0.910875,0.626622,0.111648,0.228926,0.968851,0.93135,0.974334,0.38873,0.792015,0.441831,0.665693,0.931936,0.493022,0.755464,0.333805,0.914359,0.191238,0.29567,0.0467609,0.0615183,0.988272,0.930805,0.0254069,0.990264,0.556341,0.182828,0.694018,0.288213,0.669274,0.253923,0.304565,0.581542,0.995773,0.78236,0.649038,0.278178,0.335825,0.78975,0.40303,0.586677,0.974614,0.398779,0.499514,0.219168,0.575992,0.523292,0.720391,0.338981,0.33125,0.0158478,0.267269,0.0898809,0.281585,0.586153,0.0257072,0.225664,0.69192,0.0292712,0.234175,0.434418,0.129551,0.0954168,0.313836,0.954016,0.304253,0.945796,0.559018,0.327024,0.427414,0.453918,0.419792,0.415352,0.875839,0.727774,0.510255,0.763252,0.293041,0.509187,0.596871,0.398112,0.929142,0.810316,0.867902,0.324381,0.337966,0.453933,0.900617,0.0979069,0.503762,0.935217,0.555617,0.810489,0.76223,0.489374,0.448793,0.476074,0.994871,0.149791,0.584875,0.961355,0.610277,0.0128356,0.501819,0.865034,0.93553,0.355105,0.437908,0.69237,0.625646,0.20995,0.539425,0.0663669,0.821381,0.606589,0.0864938,0.359728,0.868485,0.798764,0.427881,0.305237,0.698697,0.725819,0.21582,0.912117,0.431333,0.454947,0.603075,0.884653,0.380867,0.949632,0.789847,0.781017,0.868025,0.64276,0.511696,0.562946,0.345546,0.570214,0.665021,0.58552,0.541059,0.584489,0.768078,0.157774,0.943721,0.317142,0.137589,0.363615,0.476575,0.802057,0.171533,0.279768,0.707269,0.398519,0.888987,0.743624,0.968507,0.972496,0.546467,0.530278,0.653446,0.351986,0.410523,0.0314758,0.947695,0.943815,0.996227,0.338052,0.640493,0.0214066,0.919237,0.197056,0.509342,0.73091,0.707544,0.782643,0.726676,0.062663,0.265258,0.377144,0.0315508,0.893499,0.758358,0.0601805,0.991366,0.912349,0.945719,0.414592,0.830506,0.0789391,0.288469,0.114954,0.345126,0.308565,0.301559,0.516971,0.595105,0.41429,0.602087,0.543763,0.262876,0.668175,0.0701465,0.576238,0.564223,0.59279,0.969763,0.417257,0.856739,0.834504,0.188211,0.572029,0.214277,0.0672201,0.518089,0.972676,0.157508,0.861285,0.0879359,0.452024,0.935866,0.923698,0.77569,0.730607,0.724283,0.741998,0.425162,0.979818,|0.0955071,0.857188,0.0355765,0.718077,0.236389,0.442474,0.54877,0.628124,0.107677,0.0269794,0.276128,0.452641,0.682054,0.37006,0.813435,0.0995919,0.963902,0.194105,0.867156,0.243043,0.873132,0.940419,0.558181,0.502054,0.519156,0.581849,0.955209,0.206978,0.995337,0.278107,0.00949788,0.306658,0.911084,0.0457791,0.469969,0.130883,0.594529,0.154777,0.0504675,0.180296,0.520443,0.264051,0.658606,0.224766,0.164048,0.431175,0.177612,0.932925,0.826918,0.465234,0.0272947,0.31725,0.130849,0.546632,0.807459,0.350894,0.279831,0.937294,0.0883449,0.285115,0.855025,0.00110424,0.746126,0.232356,0.9113,0.135039,0.876563,0.147575,0.847493,0.0749491,0.763127,0.195703,0.201395,0.742562,0.579248,0.323472,0.354473,0.96402,0.756491,0.5877,0.200025,0.518509,0.867828,0.250573,0.335988,0.134085,0.863849,0.233941,0.342176,0.480853,0.995278,0.300857,0.550442,0.0135797,0.163054,0.25238,0.333576,0.842931,0.373653,0.305436,0.679435,0.301889,0.537536,0.0990714,0.225363,0.706734,0.989018,0.27047,0.0829943,0.732545,0.0140995,0.446112,0.884278,0.15283,0.0426791,0.490564,0.254486,0.944381,0.705273,0.599587,0.166601,0.420968,0.398451,0.242443,0.12217,0.779224,0.624709,0.978907,0.767541,0.125103,0.833548,0.302198,0.273256,0.885328,0.863725,0.124679,0.842994,0.441863,0.33595,0.352146,0.937111,0.545728,0.364144,0.278513,0.957644,0.872918,0.237836,0.79729,0.0651079,0.545475,0.650681,0.110473,0.248231,0.865577,0.133859,0.17247,0.390416,0.357007,0.0400667,0.455122,0.38313,0.0712053,0.0693901,0.83255,0.394164,0.734821,0.556066,0.285873,0.101128,0.861564,0.390126,0.218869,0.476205,0.474511,0.881681,0.239523,0.248473,0.250423,0.851698,0.417033,0.00325966,0.951944,0.768603,0.798811,0.0349904,0.943196,0.141553,0.754341,0.248138,0.127084,0.596873,0.266326,0.315589,0.867585,0.249276,0.945989,0.615013,0.54227,0.856317,0.269968,0.246971,0.33009,0.758466,0.304868,0.603483,0.992893,0.380217,0.330254,0.745424,0.631853,0.194541,0.814648,0.542239,0.206065,0.550981,0.518335,0.81263,0.447012,0.170291,0.135928,0.502167,0.33294,0.938319,0.646485,0.673767,0.584875,0.332261,0.752588,0.690284,0.0899486,0.0468053,0.7714,0.209927,0.286054,0.55869,0.838202,0.130667,0.023647,0.130269,0.278998,0.327825,0.376338,0.729889,0.103162,0.077337,0.142307,0.637695,0.419649,0.112103,0.342455,0.531183,0.435113,0.431161,0.909868,0.617495,0.47368,0.97444,0.664725,0.282978,0.417086,0.548468,0.734472,0.800776,0.935199,0.33149,0.561703,0.380738,0.624105,0.894745,0.960698,0.65754,0.219053,0.373019,0.738078,0.00786048,0.991634,0.37887,0.259281,0.883054,0.353521,0.404999,0.0509627,0.0497097,0.261882,0.0724325,0.287875,0.0756171,0.297446,0.96658,0.392583,0.0881319,0.576484,0.254487,0.318807,0.788853,0.307899,0.540529,0.530649,0.276826,0.452271,0.432388,0.121348,0.659782,0.0847155,0.455785,0.545851,0.996457,0.75808,0.998176,0.865025,0.428835,0.645363,0.96452,0.20007,0.631306,0.321963,0.340043,0.285968,0.334251,0.936768,0.168336,0.523979,0.527066,0.683761,0.326713,0.262546,0.562039,0.254236,0.810419,0.0936123,0.123646,0.575506,0.991945,0.688962,0.0568707,0.767566,0.395673,0.0882431,0.495913,0.701004,0.283998,0.602699,0.028326,0.998036,0.420334,0.840629,0.981143,0.557025,0.50795,0.182899,0.0102788,0.454328,0.722043,0.523753,0.881427,0.966444,0.0584241,0.813003,0.444525,0.640208,0.627044,0.847003,0.00196475,0.445289,0.902511,0.206729,0.701632,0.739111,0.904837,0.210789,0.954302,0.628609,0.742507,0.304487,0.56621,0.649812,0.690587,0.290359,0.489135,0.568895,0.501067,0.163554,0.813976,0.833628,0.129738,0.102258,0.387837,0.898579,0.848755,0.976177,0.296205,0.356093,0.291888,0.646961,0.516858,0.560757,0.00702876,0.547586,0.900161,0.488159,0.406685,0.509877,0.410089,0.393421,0.717064,0.339628,0.80938,0.0565165,0.299349,0.860889,0.398689,0.371588,0.15291,0.0163429,0.519728,0.762198,0.289868,0.775854,0.533102,0.279814,0.195609,0.0196449,0.90724,0.916599,0.743795,0.818768,0.718444,0.520999,0.441057,0.853435,0.602077,0.264878,0.689921,0.525815,0.635382,0.480418,0.68328,0.15536,0.683826,0.171237,0.641445,0.575341,0.753042,0.171217,0.467426,0.943486,0.819245,0.827564,0.670781,0.472133,0.856011,0.679993,0.687949,0.571971,0.815729,0.0594262,0.298518,0.686257,0.187083,0.627125,0.218579,0.496388,0.710498,0.79114,0.488421,0.298305,0.470295,0.113617,0.800103,0.577283,0.892617,0.968668,0.878584,0.492136,0.439714,0.0248367,0.511029,0.249179,0.557296,0.46378,0.466053,0.370794,0.981087,0.141925,0.697211,0.0790893,0.851759,0.542499,0.605395,0.16935,0.126722,0.023218,0.490154,0.354978,0.530542,0.960405,0.43381,0.182243,0.417561,0.506739,0.250439,0.206369,0.189143,0.933705,0.093267,0.641009,0.952899,0.316228,0.411483,0.435394,0.884419,0.375824,0.455655,0.515691,0.717226,0.289705,0.741004,0.977857,0.107928,0.164719,0.0496484,0.483538,0.607008,0.104557,0.186171,0.686563,0.740442,0.0488964,0.819697,0.0331254,0.328587,0.500371,0.466811,0.0180886,0.763239,0.169315,0.0838003,0.36895,0.950265,0.0952028,0.542419,0.527495,0.828033,0.832008,0.163692,0.155751,0.839545,0.821086,0.915591,0.367831,0.242405,0.287178,0.972403,0.769003,0.368535,0.893164,0.232593,0.119423,0.55845,0.848775,0.773908,0.792543,0.101031,0.798433,0.344928,0.249535,0.495126,0.0551211,0.534873,0.101627,0.470791,0.397126,0.172917,0.316457,0.805323,0.656637,0.710797,0.556759,0.60425,0.543515,0.156873,0.287975,0.688113,0.357995,0.253961,0.527622,0.54712,0.867843,0.448683,0.165263,0.907938,0.384615,0.228397,0.320787,0.979016,0.934247,0.912216,0.60201,0.750883,0.191772,0.12992,0.91034,0.196099,0.751376,0.296293,0.900914,0.747607,0.531591,0.426641,0.59408,0.0912755,0.727982,0.623315,0.624768,0.845473,0.634805,0.8938,0.629219,0.828015,0.570259,0.643146,0.65551,0.317121,0.591127,0.724158,0.755596,0.086895,0.857705,0.43412,0.0913515,0.998062,0.0719295,0.895525,0.745376,0.347388,0.326502,0.0943732,0.749237,0.412353,0.908385,0.910666,0.860058,0.713946,0.660074,0.308499,0.138685,0.398629,0.499595,0.432595,0.977467,0.801509,0.657401,0.181699,0.358462,0.58154,0.630822,0.732262,0.211287,0.629735,0.0874177,0.455395,0.00512505,0.482508,0.659514,0.818944,0.358191,0.227393,0.7416,0.249104,0.67421,0.0396276,0.806713,0.731592,0.981126,0.0362588,0.740064,0.491017,0.84723,0.0964199,0.870583,0.561109,0.858571,0.496305,0.320027,0.933732,0.606798,0.419399,0.465095,0.629947,0.496766,0.0881569,0.493413,0.704661,0.387831,0.582297,0.57596,0.331333,0.207461,0.227853,0.802641,0.712255,0.308552,0.564587,0.252929,0.481714,0.654799,0.460975,0.819593,0.406734,0.235828,0.100483,0.758576,0.534891,0.431253,0.697228,0.44825,0.0732252,0.0520808,0.107918,0.331047,0.605718,0.997906,0.0721234,0.616583,0.889679,0.687729,0.286207,0.938514,0.593424,0.617425,0.0482659,0.192781,0.529591,0.136016,0.412088,0.104089,0.555184,0.536697,0.0621378,0.683029,0.475224,0.320589,0.220087,0.607553,0.71717,0.425902,0.0392654,0.432734,0.197318,0.29533,0.357287,0.945219,0.844924,0.105841,0.894109,0.227641,0.616971,0.102127,0.803118,0.0330865,0.18637,0.390777,0.83239,0.84765,0.551733,0.287017,0.528215,0.659919,0.456923,0.0291038,0.0830373,0.723367,0.468257,0.438361,0.297244,0.361591,0.318407,0.330048,0.920835,0.0340321,0.439366,0.642069,0.733344,0.317456,0.459183,0.0203868,0.455935,0.789179,0.804713,0.197111,0.724341,0.80126,0.216569,0.990375,0.592964,0.0607927,0.899364,0.792663,0.61011,0.0639892,0.881174,0.716909,0.112272,0.00500733,0.14859,0.843067,0.953351,0.788593,0.51113,0.737033,0.763265,0.223607,0.433962,0.131069,0.798909,0.156206,0.669607,0.120444,0.279551,0.10247,0.911303,0.83096,0.443213,0.888069,0.0415888,0.601191,0.0762162,0.0997981,0.356785,0.524283,0.248389,0.0866411,0.0490782,0.252542,0.444745,0.534915,0.738066,0.97347,0.780999,0.39174,0.14384,0.283993,0.134517,0.634901,0.484173,0.521323,0.0225325,0.771157,0.178476,0.401169,0.0269869,0.393171,0.837755,0.938141,0.645681,0.419798,0.733054,0.0117636,0.969084,0.10426,0.924238,0.203171,0.268551,0.649444,0.925525,0.872171,0.526638,0.93296,0.590939,0.203076,0.970787,0.991453,0.852349,0.443699,0.622212,0.1532,0.332253,0.552062,0.559649,0.0852572,0.380028,0.8132,0.689903,0.909202,0.00524467,0.489522,0.104788,0.803223,0.567409,0.694719,0.776022,0.580288,0.273413,0.315069,0.351964,0.0013051,0.868529,0.388111,0.223463,0.536807,0.388594,0.775964,0.920008,0.420134,0.860685,0.378683,0.73844,0.27122,0.824066,0.580433,0.183423,0.0645801,0.553545,0.17929,0.924607,0.405017,0.453167,0.82116,0.535426,0.528784,0.753191,0.231671,0.4728,0.879988,0.121884,0.873672,0.197297,0.637784,0.458413,0.0655407,0.391484,0.000945985,0.679998,0.919625,0.000998735,0.951352,0.568081,0.775751,0.549987,0.662921,0.717116,0.604806,0.626698,0.420574,0.786789,0.687011,0.0222018,0.300641,0.612461,0.992278,0.85298,0.837801,0.123147,0.326214,0.49736,0.217281,0.807653,0.785708,0.268738,0.627409,0.324731,0.763893,0.741176,0.135356,0.599561,0.960259,0.603084,0.342779,0.349554,0.66097,0.516765,0.73229,0.313566,0.156863,0.247569,0.68681,0.279193,0.441952,0.671732,0.315788,0.0193377,0.750689,0.759063,0.377831,0.579596,0.524612,0.462087,0.055415,0.443445,0.91278,0.233454,0.709409,0.54238,0.187566,0.147291,0.142292,0.42851,0.785625,0.816928,0.486629,|0.428012,0.374329,0.506371,0.991215,0.252321,0.377508,0.883399,0.367832,0.830698,0.319889,0.651019,0.892523,0.870924,0.682044,0.531893,0.0338322,0.590195,0.847016,0.825835,0.0553234,0.7511,0.0614344,0.972492,0.59189,0.0658088,0.367858,0.142966,0.534371,0.299166,0.079097,0.228931,0.702571,0.835,0.819175,0.513879,0.281549,0.608374,0.455268,0.559965,0.343453,0.409156,0.257874,0.0090239,0.933186,0.231589,0.791591,0.74714,0.29915,0.939107,0.664461,0.357985,0.7408,0.633015,0.145293,0.27661,0.557072,0.883564,0.916862,0.650933,0.495858,0.3505,0.939745,0.449557,0.554489,0.510567,0.605199,0.185546,0.252394,0.416307,0.0747492,0.601007,0.673583,0.934859,0.902746,0.372151,0.0571744,0.420532,0.438858,0.359492,0.0261757,0.0404372,0.834722,0.00189197,0.792233,0.874607,0.896386,0.241988,0.798292,0.101314,0.359843,0.907209,0.414472,0.604293,0.569366,0.025164,0.810119,0.173057,0.10939,0.61147,0.260257,0.108065,0.528726,0.607908,0.195526,0.601009,0.301312,0.0782489,0.789024,0.319726,0.222707,0.776626,0.207726,0.0392742,0.927252,0.014877,0.086219,0.730958,0.504126,0.069871,0.729103,0.298717,0.87313,0.452761,0.823399,0.260912,0.484158,0.096007,0.626354,0.652183,0.100236,0.438012,0.617469,0.35885,0.393643,0.169719,0.449215,0.0580264,0.0920842,0.792241,0.976243,0.16248,0.0792122,0.311418,0.192027,0.883932,0.614231,0.726705,0.922523,0.459556,0.422836,0.400733,0.668419,0.72028,0.919734,0.837178,0.241677,0.994654,0.182266,0.83536,0.859989,0.789319,0.318262,0.18703,0.839611,0.398001,0.51635,0.984086,0.733945,0.0949745,0.665391,0.505535,0.987089,0.481819,0.36606,0.64681,0.283806,0.381858,0.360757,0.191919,0.802806,0.628996,0.362529,0.116475,0.424568,0.517671,0.0366711,0.991036,0.796254,0.233293,0.606945,0.146753,0.809147,0.391526,0.76863,0.488367,0.697454,0.402298,0.9175,0.939559,0.563663,0.804098,0.205503,0.155756,0.680876,0.97823,0.910572,0.0163714,0.872155,0.841589,0.194052,0.0403945,0.93589,0.788445,0.252527,0.145108,0.0277276,0.591291,0.626216,0.0328064,0.310776,0.549878,0.362568,0.786412,0.496082,0.833665,0.0748186,0.827312,0.952546,0.0600981,0.755961,0.614208,0.460827,0.10039,0.163746,0.38941,0.950457,0.933087,0.713593,0.994267,0.142524,0.594668,0.235969,0.66374,0.234123,0.674484,0.783252,0.696437,0.438867,0.159675,0.601055,0.618011,0.85922,0.798827,0.454209,0.273255,0.740809,0.721541,0.176614,0.320196,0.24939,0.305497,0.0575224,0.922612,0.161727,0.942372,0.907176,0.573617,0.49793,0.0486795,0.211088,0.898548,0.168103,0.410429,0.467029,0.0432527,0.578409,0.386916,0.582699,0.933239,0.148102,0.126831,0.0209495,0.711003,0.310471,0.429612,0.427846,0.913474,0.700347,0.207661,0.106392,0.875669,0.665837,0.94603,0.702775,0.284953,0.125953,0.0165102,0.528781,0.942644,0.342859,0.207542,0.595931,0.388153,0.0412106,0.975575,0.0998319,0.984813,0.491603,0.244452,0.730405,0.817005,0.157394,0.848963,0.260757,0.714806,0.802476,0.142526,0.284778,0.0431022,0.943545,0.0135731,0.645869,0.751318,0.752712,0.249682,0.145511,0.49246,0.770669,0.418554,0.0575544,0.847065,0.160617,0.339524,0.923966,0.766017,0.416601,0.568716,0.59049,0.0855727,0.280116,0.451717,0.974474,0.529073,0.781209,0.250056,0.920975,0.571305,0.609221,0.0555838,0.645847,0.37342,0.698012,0.25518,0.622948,0.00813001,0.458515,0.151668,0.161713,0.851939,0.190038,0.179479,0.403293,0.0254512,0.633356,0.804493,0.692248,0.468573,0.557691,0.748322,0.774132,0.342414,0.117795,0.999534,0.229937,0.974731,0.559052,0.306824,0.49753,0.657791,0.737475,0.243029,0.120119,0.209659,0.850912,0.190009,0.569973,0.312322,0.668261,0.673778,0.139981,0.0393236,0.0794325,0.187211,0.906696,0.989787,0.0730605,0.687995,0.407054,0.510669,0.326706,0.939409,0.308602,0.94748,0.619388,0.081138,0.371954,0.24463,0.851689,0.133122,0.342065,0.871369,0.175927,0.510094,0.462733,0.660104,0.322445,0.200566,0.963307,0.541871,0.354562,0.134316,0.372203,0.626243,0.625545,0.984341,0.148455,0.582521,0.842512,0.548679,0.88109,0.822313,0.960529,0.0675553,0.760975,0.214628,0.612879,0.0221349,0.490526,0.86512,0.392892,0.0893425,0.636257,0.442248,0.585168,0.515882,0.862694,0.482909,0.379779,0.366989,0.0788219,0.332658,0.725697,0.659469,0.0139016,0.393387,0.812307,0.741248,0.454786,0.819064,0.141927,0.38982,0.688556,0.417734,0.544946,0.299533,0.72916,0.304938,0.648159,0.277769,0.995973,0.595165,0.828,0.166868,0.801395,0.494552,0.204637,0.0671173,0.466629,0.0621679,0.391731,0.78414,0.0568193,0.401699,0.960897,0.268861,0.556282,0.0263072,0.232416,0.061972,0.421139,0.139645,0.0794643,0.149485,0.9468,0.847971,0.995167,0.67956,0.729835,0.308668,0.00412768,0.253588,0.845957,0.463167,0.821624,0.330463,0.594276,0.164189,0.058459,0.905457,0.654251,0.415301,0.908319,0.666493,0.0260502,0.273678,0.383277,0.427734,0.856379,0.0803935,0.916927,0.312254,0.742146,0.439526,0.481522,0.371051,0.198993,0.771075,0.76466,0.474506,0.0353232,0.912107,0.293649,0.858325,0.628735,0.422877,0.826519,0.214779,0.116277,0.0743877,0.357622,0.669431,0.152269,0.589309,0.477741,0.834545,0.761395,0.759276,0.862218,0.833576,0.399559,0.250894,0.712143,0.0292472,0.262479,0.0774392,0.0149288,0.113514,0.565633,0.686524,0.665956,0.367052,0.361011,0.252406,0.422258,0.308548,0.154231,0.0590565,0.485991,0.27945,0.541273,0.188548,0.326918,0.369602,0.62569,0.219591,0.303479,0.188174,0.298428,0.0947362,0.389822,0.516349,0.244588,0.177531,0.765494,0.787251,0.545236,0.704534,0.125583,0.499148,0.114623,0.0605079,0.547036,0.58818,0.927069,0.377533,0.0617439,0.286197,0.66321,0.426748,0.642059,0.358865,0.567703,0.672011,0.608581,0.822171,0.637481,0.69709,0.767107,0.0169305,0.45525,0.268163,0.0791939,0.353715,0.705966,0.386887,0.786764,0.0355671,0.551885,0.730601,0.668227,0.297649,0.411428,0.705162,0.188847,0.382224,0.681046,0.38939,0.9246,0.0295784,0.175209,0.183078,0.866615,0.384873,0.750682,0.265616,0.751922,0.722993,0.47722,0.792184,0.132778,0.0946593,0.633647,0.0969024,0.808609,0.36772,0.888259,0.783881,0.851962,0.217948,0.199061,0.614131,0.827312,0.527688,0.631166,0.389003,0.9315,0.69905,0.447771,0.147851,0.593455,0.721612,0.500962,0.667272,0.529124,0.514768,0.526035,0.928434,0.69622,0.567467,0.117169,0.226653,0.812426,0.967901,0.017571,0.326962,0.396941,0.56827,0.166809,0.430078,0.691087,0.0398261,0.0744814,0.0552744,0.841584,0.00555658,0.361273,0.913778,0.809988,0.329655,0.812863,0.417674,0.470037,0.308153,0.855313,0.0231681,0.0860412,0.129241,0.876214,0.00554079,0.784147,0.836597,0.997096,0.582543,0.682388,0.62901,0.271479,0.0543892,0.836335,0.879654,0.0344206,0.463886,0.862468,0.340548,0.784152,0.882539,0.864579,0.534123,0.778273,0.908116,0.0570214,0.89732,0.787658,0.973479,0.692436,0.247095,0.261864,0.145497,0.24683,0.895252,0.470412,0.139712,0.952464,0.635252,0.169659,0.24549,0.82039,0.848095,0.379642,0.163194,0.746744,0.968558,0.514118,0.65175,0.277135,0.823678,0.245642,0.123268,0.628138,0.54043,0.921498,0.765252,0.614701,0.97475,0.614567,0.832293,0.353761,0.454046,0.398813,0.217308,0.643783,0.951395,0.337906,0.43211,0.175826,0.231189,0.775206,0.479222,0.152744,0.106069,0.780282,0.406504,0.909438,0.268383,0.073096,0.558419,0.121572,0.865967,0.331236,0.603942,0.850815,0.946045,0.479248,0.218835,0.920177,0.322686,0.2865,0.390906,0.958871,0.783243,0.839615,0.52902,0.620493,0.680528,0.224529,0.953668,0.583973,0.515715,0.170091,0.101432,0.576685,0.673709,0.623814,0.114236,0.682745,0.762452,0.576184,0.913866,0.362022,0.378721,0.28177,0.696448,0.577545,0.39037,0.335971,0.0102944,0.931816,0.150559,0.00617486,0.233746,0.358647,0.26292,0.179088,0.855704,0.525727,0.592377,0.642099,0.386047,0.420794,0.532011,0.821064,0.829667,0.743666,0.960058,0.0684993,0.347885,0.810703,0.741028,0.53828,0.879036,0.512174,0.802754,0.407665,0.27455,0.835214,0.762473,0.546602,0.510331,0.280664,0.235443,0.923961,0.782525,0.649847,0.508133,0.950732,0.684677,0.766309,0.436389,0.123413,0.0208228,0.000914454,0.826692,0.79392,0.0657864,0.772999,0.540811,0.814197,0.655522,0.165946,0.71495,0.422946,0.357034,0.88525,0.791725,0.283886,0.817375,0.381371,0.72318,0.68589,0.264938,0.713279,0.839773,0.761858,0.141418,0.426795,0.503743,0.96041,0.127139,0.957618,0.949968,0.951931,0.198994,0.365114,0.317165,0.103532,0.923146,0.967004,0.285123,0.910327,0.0481228,0.642199,0.719169,0.0400353,0.849561,0.194619,0.530428,0.333811,0.282517,0.494022,0.798193,0.280681,0.563805,0.02741,0.634398,0.549321,0.958154,0.198024,0.748962,0.662674,0.94758,0.93315,0.810335,0.214634,0.95911,0.445951,0.432266,0.745913,0.440886,0.677456,0.322768,0.899629,0.875019,0.964936,0.907292,0.46141,0.0728724,0.401192,0.294118,0.514127,0.4577,0.800307,0.42772,0.735717,0.293109,0.11867,0.00194669,0.629232,0.499317,0.996494,0.187431,0.592933,0.719358,0.335955,0.139218,0.157021,0.559645,0.53755,0.82497,0.459335,0.0543471,0.0755044,0.628979,0.285066,0.833758,0.212631,0.119967,0.397952,0.495957,0.952932,0.568625,0.133685,0.614246,0.440266,0.21509,0.855559,0.996138,0.323987,0.10398,0.15728,0.750157,0.707998,0.807326,0.258142,0.873108,0.606782,0.605726,0.768902,0.325897,0.688503,0.752665,0.0926932,0.240448,0.870003,0.555951,0.931898,0.690428,0.844963,0.303124,0.888193,0.836712,0.0407364,|0.271966,0.241518,0.397749,0.824317,0.351309,0.451576,0.109507,0.45651,0.713771,0.0185254,0.86293,0.420289,0.569001,0.471124,0.416363,0.0838992,0.378695,0.587405,0.563212,0.778069,0.610764,0.655106,0.149289,0.556944,0.704757,0.505622,0.102838,0.640699,0.501756,0.647717,0.966216,0.410496,0.797516,0.108137,0.125317,0.203925,0.592505,0.743816,0.764182,0.198403,0.374317,0.107038,0.245223,0.381036,0.247904,0.438731,0.728003,0.562666,0.993722,0.534986,0.638118,0.868971,0.201279,0.471621,0.156539,0.235676,0.44318,0.14168,0.978048,0.849554,0.453049,0.546776,0.0393701,0.463819,0.678572,0.857099,0.408525,0.381869,0.382859,0.614799,0.811644,0.16626,0.521866,0.17956,0.391478,0.459839,0.345991,0.945213,0.0539727,0.624518,0.928378,0.0934685,0.356535,0.734273,0.374207,0.808865,0.0938316,0.579088,0.829457,0.240247,0.57183,0.86952,0.989394,0.473406,0.830945,0.515052,0.213535,0.0186557,0.0381115,0.425902,0.784608,0.408737,0.995308,0.431543,0.242943,0.789972,0.964819,0.744141,0.461209,0.711483,0.971415,0.082925,0.515913,0.632774,0.170184,0.811016,0.763928,0.143706,0.579301,0.190566,0.678064,0.875811,0.297391,0.962946,0.750437,0.992261,0.754244,0.839597,0.46543,0.776956,0.453535,0.690056,0.0932491,0.810904,0.862989,0.531369,0.2316,0.66862,0.24049,0.43983,0.0269748,0.0795791,0.141626,0.951953,0.542076,0.617684,0.352359,0.133911,0.423426,0.607638,0.830503,0.155316,0.0254648,0.610857,0.428401,0.0760285,0.825455,0.450069,0.656514,0.758641,0.104416,0.584091,0.993218,0.813447,0.957599,0.671665,0.641371,0.527636,0.682183,0.071128,0.472077,0.371345,0.57016,0.127235,0.552852,0.890257,0.198078,0.584831,0.220351,0.600545,0.66632,0.391349,0.92657,0.77403,0.0894793,0.0640249,0.161238,0.590113,0.269239,0.272759,0.641036,0.0804744,0.7566,0.808643,0.897753,0.162763,0.718837,0.3583,0.87206,0.711272,0.38505,0.409558,0.142345,0.402209,0.650441,0.487559,0.815885,0.407894,0.528544,0.426016,0.449623,0.623411,0.619474,0.205704,0.721871,0.885576,0.991071,0.671613,0.947778,0.535998,0.490555,0.372608,0.260846,0.831718,0.622556,0.395286,0.937463,0.986682,0.795103,0.937795,0.798617,0.956437,0.748118,0.247637,0.156292,0.993543,0.348387,0.6629,0.898386,0.290514,0.982943,0.901114,0.675472,0.519338,0.205171,0.815697,0.309466,0.723611,0.539401,0.657526,0.0132071,0.963888,0.654671,0.549248,0.0192304,0.176817,0.456598,0.149332,0.377226,0.278445,0.529271,0.347974,0.961775,0.339102,0.974746,0.668635,0.123481,0.284938,0.296022,0.731015,0.200571,0.592719,0.689638,0.443614,0.98996,0.122371,0.868513,0.787556,0.118113,0.481391,0.903108,0.399753,0.151395,0.984091,0.201495,0.584938,0.924795,0.738334,0.022655,0.949373,0.928536,0.600165,0.158222,0.59553,0.449368,0.293882,0.0478091,0.568792,0.945716,0.68917,0.991225,0.347994,0.418868,0.130436,0.283758,0.676614,0.218841,0.0063684,0.552603,0.414881,0.0140257,0.382963,0.6924,0.758976,0.144688,0.394593,0.649212,0.775163,0.376476,0.370283,0.229627,0.0227336,0.268191,0.73049,0.55681,0.814564,0.669186,0.579767,0.654627,0.907361,0.653532,0.517209,0.987618,0.150189,0.29925,0.317415,0.793971,0.31593,0.381602,0.0862924,0.080501,0.562558,0.244647,0.548806,0.375031,0.22066,0.562312,0.261769,0.850162,0.796101,0.873104,0.52621,0.62831,0.714816,0.114367,0.149666,0.232116,0.0402722,0.288385,0.946033,0.493329,0.468573,0.251921,0.341374,0.0389464,0.4034,0.133355,0.00544035,0.236838,0.832181,0.943174,0.0833675,0.183809,0.566723,0.207342,0.3943,0.931767,0.217526,0.901428,0.487963,0.2105,0.631924,0.475143,0.0691235,0.646118,0.00353909,0.0414698,0.580561,0.108393,0.0605447,0.922572,0.982804,0.229622,0.772065,0.450846,0.0933875,0.397179,0.88181,0.0052765,0.270704,0.664773,0.299459,0.194254,0.311701,0.72111,0.61623,0.996826,0.59604,0.988307,0.810395,0.957983,0.70653,0.815478,0.68596,0.141862,0.127649,0.712505,0.936365,0.384405,0.348378,0.0563831,0.369508,0.774626,0.100863,0.668743,0.350189,0.545175,0.217413,0.850171,0.186,0.545293,0.686225,0.905223,0.668162,0.733982,0.587402,0.936872,0.895762,0.951523,0.99503,0.733557,0.89376,0.937954,0.0947389,0.545016,0.326979,0.340253,0.851757,0.690297,0.960279,0.925634,0.839172,0.502793,0.244341,0.637485,0.207089,0.768794,0.861139,0.899389,0.109289,0.443816,0.0536174,0.0217916,0.290731,0.0828326,0.81527,0.779054,0.753752,0.464842,0.554453,0.339081,0.693412,0.930233,0.873104,0.385531,0.414076,0.23213,0.564016,0.730205,0.0980865,0.949793,0.654256,0.956822,0.758576,0.730397,0.24366,0.478658,0.308703,0.713453,0.427978,0.110205,0.541761,0.521242,0.577569,0.80855,0.465901,0.0922075,0.387202,0.418,0.719642,0.236239,0.596233,0.939289,0.978535,0.0626799,0.737136,0.0647004,0.430425,0.159592,0.648014,0.119301,0.93604,0.0251793,0.5772,0.449861,0.136559,0.449251,0.839332,0.19936,0.914608,0.0191699,0.775849,0.538238,0.173873,0.929918,0.444714,0.853794,0.34191,0.993563,0.384961,0.28865,0.352359,0.581195,0.622495,0.0972731,0.752878,0.416172,0.522608,0.573033,0.232875,0.0519867,0.63027,0.220826,0.179839,0.876672,0.071214,0.291588,0.174819,0.751977,0.509256,0.239013,0.903985,0.90463,0.969826,0.942026,0.962559,0.787934,0.236601,0.586654,0.431705,0.154157,0.752553,0.987718,0.230539,0.300914,0.598174,0.0117954,0.0321609,0.314664,0.853917,0.36735,0.520462,0.0458547,0.724053,0.617248,0.0559224,0.869323,0.738338,0.379083,0.405297,0.651129,0.765272,0.781494,0.779629,0.337587,0.283392,0.130579,0.299135,0.843039,0.43867,0.132962,0.0107321,0.0684962,0.41844,0.555536,0.599054,0.608352,0.0906666,0.567007,0.463717,0.661922,0.267399,0.230724,0.150521,0.420384,0.549499,0.922151,0.584852,0.794897,0.615768,0.430333,0.573555,0.707143,0.354144,0.637899,0.500312,0.403688,0.518756,0.357413,0.637152,0.72602,0.221304,0.237125,0.45052,0.616281,0.917719,0.3021,0.964917,0.206947,0.980874,0.439402,0.899191,0.695822,0.335056,0.490636,0.852618,0.885139,0.111166,0.997188,0.361617,0.165563,0.631145,0.693996,0.596378,0.745483,0.856632,0.764342,0.4084,0.343301,0.193702,0.110656,0.425689,0.884167,0.709028,0.977592,0.8813,0.515797,0.952983,0.673384,0.274175,0.418932,0.515907,0.451177,0.0205122,0.282594,0.91157,0.859932,0.612098,0.427391,0.0388244,0.983833,0.304214,0.793575,0.557253,0.890095,0.526074,0.967771,0.577818,0.0134053,0.307525,0.790182,0.325894,0.34214,0.837875,0.659054,0.183183,0.302941,0.323135,0.061562,0.121152,0.607893,0.344067,0.20572,0.683417,0.787591,0.959596,0.271934,0.371781,0.340185,0.215114,0.0326324,0.835918,0.699881,0.25203,0.769493,0.106378,0.689162,0.243247,0.777054,0.0367562,0.874239,0.061184,0.445637,0.298152,0.94585,0.551379,0.464292,0.139506,0.417931,0.411151,0.410588,0.655618,0.20238,0.800988,0.325791,0.607074,0.514486,0.334509,0.862167,0.397766,0.84152,0.0438555,0.434967,0.999588,0.188609,0.344658,0.501161,0.694239,0.569633,0.702572,0.691944,0.282188,0.182656,0.906938,0.591548,0.819454,0.133919,0.410038,0.571087,0.220949,0.0916477,0.395262,0.110124,0.245829,0.911601,0.67357,0.221321,0.71816,0.41431,0.154875,0.468674,0.00934821,0.806146,0.273323,0.0560872,0.448438,0.661795,0.569085,0.43348,0.247345,0.610373,0.147381,0.989313,0.49299,0.139448,0.584011,0.460976,0.285488,0.333718,0.759648,0.283641,0.637524,0.316202,0.648808,0.804557,0.671201,0.548812,0.815769,0.600647,0.960058,0.847121,0.282428,0.132653,0.183548,0.143888,0.309495,0.248941,0.091653,0.928491,0.207714,0.258782,0.736583,0.8927,0.586266,0.335526,0.673182,0.834829,0.51526,0.0926424,0.471326,0.0775743,0.916471,0.542422,0.201097,0.0326393,0.629244,0.965045,0.370375,0.531448,0.053544,0.737587,0.877948,0.424679,0.490473,0.893226,0.990999,0.825363,0.930727,0.359608,0.440448,0.591507,0.886255,0.079805,0.622601,0.352922,0.487562,0.0326149,0.798737,0.225167,0.398214,0.989368,0.499538,0.0683181,0.787951,0.918531,0.415528,0.563569,0.953474,0.148569,0.219858,0.662198,0.346711,0.18878,0.150714,0.807872,0.839418,0.547971,0.981847,0.901186,0.723095,0.767918,0.81024,0.456853,0.01499,0.199003,0.552039,0.770722,0.452817,0.936379,0.35359,0.852496,0.476946,0.147692,0.342489,0.868689,0.138853,0.065559,0.942252,0.801826,0.815623,0.408108,0.363024,0.629715,0.485436,0.940504,0.101834,0.718962,0.821175,0.170519,0.184609,0.117415,0.40735,0.0235663,0.481578,0.343235,0.749862,0.924022,0.338033,0.751838,0.859835,0.811075,0.81717,0.84862,0.240407,0.617223,0.371356,0.473641,0.975883,0.335064,0.772535,0.32499,0.343298,0.153486,0.294905,0.24538,0.852294,0.455361,0.811557,0.117839,0.11064,0.802048,0.0255666,0.742815,0.598625,0.677025,0.248901,0.89898,0.434218,0.718255,0.373967,0.0408633,0.716452,0.429445,0.5416,0.200768,0.57554,0.476018,0.250634,0.229232,0.520721,0.847376,0.300215,0.327468,0.327404,0.563986,0.952784,0.420163,0.144049,0.839532,0.09342,0.505892,0.722227,0.239991,0.310471,0.390737,0.705221,0.0254025,0.450194,0.388912,0.323173,0.403742,0.804489,0.118451,0.353871,0.482861,0.574773,0.403131,0.120792,0.22795,0.664896,0.107646,0.257225,0.899668,0.711066,0.160524,0.294363,0.0456939,0.687845,0.817357,0.89444,0.761775,0.639997,0.138378,0.0601074,0.308961,0.746433,0.462472,0.117432,0.694629,0.19231,0.920147,0.491922,0.36905,0.281798,0.127242,0.0773492,0.0475669,0.534954,0.185624,0.647663,|0.722123,0.0514653,0.0420899,0.642161,0.418746,0.404808,0.354047,0.157935,0.957441,0.855387,0.579946,0.530782,0.367673,0.73508,0.900021,0.973952,0.130411,0.196054,0.553976,0.253696,0.0218062,0.506737,0.473425,0.349011,0.148964,0.320719,0.161044,0.84425,0.806308,0.526526,0.42277,0.954221,0.0587137,0.0994551,0.985507,0.423803,0.460276,0.0103357,0.654052,0.342374,0.664218,0.134757,0.986547,0.680255,0.0302325,0.538008,0.443114,0.451442,0.370955,0.435793,0.0233698,0.203644,0.684802,0.422232,0.437453,0.466694,0.237007,0.0986016,0.977286,0.274304,0.369554,0.589585,0.507742,0.763692,0.403352,0.0625917,0.803938,0.0684466,0.828321,0.669156,0.499497,0.499862,0.443212,0.223668,0.983324,0.630099,0.864477,0.69049,0.755754,0.607543,0.185789,0.667645,0.11866,0.191575,0.530747,0.540175,0.0222834,0.761597,0.0356164,0.150717,0.156792,0.819551,0.725987,0.761304,0.831485,0.109835,0.980876,0.236348,0.902663,0.829894,0.62999,0.0189577,0.117861,0.199249,0.968047,0.0575487,0.258296,0.416949,0.228011,0.911666,0.979449,0.866585,0.261266,0.237094,0.534852,0.68982,0.368263,0.884035,0.250278,0.0275937,0.682711,0.843974,0.204364,0.893219,0.511226,0.697813,0.780952,0.64093,0.811593,0.959093,0.43314,0.958734,0.377946,0.0446941,0.417918,0.55303,0.41199,0.55033,0.532797,0.250924,0.0985079,0.840283,0.293528,0.0797051,0.994444,0.434794,0.885314,0.755191,0.922622,0.47988,0.771948,0.395738,0.23631,0.31814,0.965253,0.580957,0.720795,0.586754,0.206227,0.554231,0.385236,0.876738,0.70245,0.468181,0.616458,0.0865088,0.125702,0.393841,0.943635,0.450346,0.317179,0.739955,0.544386,0.279534,0.120462,0.51531,0.691634,0.182294,0.210048,0.419766,0.372944,0.849285,0.979525,0.196442,0.946346,0.427453,0.783978,0.521164,0.130558,0.163164,0.272256,0.633966,0.749581,0.887283,0.517876,0.290041,0.135111,0.947738,0.0142505,0.319861,0.233493,0.245087,0.294993,0.538576,0.643762,0.784251,0.795264,0.788577,0.377064,0.0105034,0.260032,0.647048,0.365121,0.628818,0.214494,0.387708,0.155008,0.77383,0.682805,0.974128,0.289786,0.0746171,0.450766,0.926534,0.17178,0.667703,0.647384,0.366947,0.809934,0.631077,0.945726,0.612885,0.663473,0.639399,0.720179,0.573993,0.442231,0.730222,0.181428,0.514179,0.950279,0.751431,0.545733,0.574443,0.917982,0.329922,0.709852,0.534552,0.556263,0.0702246,0.132768,0.56622,0.505122,0.447718,0.482044,0.540295,0.662419,0.408524,0.763489,0.209615,0.72381,0.22114,0.0078271,0.0788601,0.258332,0.0984404,0.527049,0.657334,0.54351,0.820428,0.715178,0.316117,0.75165,0.968551,0.734056,0.461681,0.45797,0.983664,0.227219,0.656875,0.230814,0.765537,0.567255,0.265527,0.793498,0.576142,0.320446,0.52377,0.288887,0.174078,0.23355,0.0558388,0.867364,0.691028,0.721947,0.895281,0.815023,0.380892,0.0195389,0.764264,0.878686,0.0456961,0.35947,0.201996,0.39821,0.430407,0.406834,0.00997633,0.0742574,0.465901,0.796381,0.18656,0.872533,0.765917,0.865934,0.206204,0.678344,0.878115,0.275935,0.530407,0.82755,0.512077,0.690063,0.816449,0.619552,0.590221,0.501898,0.521862,0.0266567,0.235338,0.887153,0.813975,0.551597,0.914421,0.943152,0.741152,0.24946,0.0992656,0.663875,0.601371,0.372399,0.351937,0.845647,0.604955,0.742336,0.349349,0.833879,0.006787,0.0678496,0.776895,0.346609,0.159721,0.548215,0.303379,0.506461,0.208886,0.560838,0.0602407,0.464025,0.616224,0.0764459,0.317786,0.0571706,0.037896,0.193979,0.665473,0.650637,0.192707,0.373663,0.783191,0.545933,0.675606,0.543132,0.960526,0.826085,0.0755822,0.67434,0.775295,0.0947876,0.408863,0.967932,0.0922225,0.599127,0.523742,0.655776,0.926911,0.961908,0.442814,0.0401924,0.967259,0.0320418,0.045846,0.384283,0.844397,0.858366,0.414753,0.580394,0.0669463,0.305987,0.23459,0.262204,0.20197,0.629142,0.452954,0.548145,0.446916,0.743824,0.0977206,0.12686,0.041293,0.530731,0.286478,0.0754388,0.377865,0.463628,0.125984,0.0433228,0.135312,0.246726,0.900191,0.844576,0.942317,0.611075,0.613111,0.616358,0.249166,0.318186,0.900548,0.845239,0.0652447,0.806656,0.272202,0.417137,0.97383,0.741734,0.205949,0.685291,0.445269,0.347389,0.574999,0.384338,0.437834,0.287103,0.400014,0.128405,0.871601,0.593295,0.333158,0.668905,0.766005,0.6933,0.500833,0.996218,0.334825,0.456704,0.956105,0.109823,0.366761,0.249967,0.601651,0.242537,0.745492,0.545385,0.497011,0.206018,0.937372,0.619001,0.671081,0.707962,0.834736,0.153548,0.871618,0.479145,0.81936,0.916609,0.206741,0.838764,0.850765,0.553439,0.28922,0.683005,0.653371,0.0705171,0.641144,0.910465,0.122719,0.742214,0.153601,0.186835,0.903339,0.689138,0.0190055,0.976908,0.40971,0.974431,0.875469,0.982904,0.678104,0.746355,0.850937,0.866747,0.0842397,0.842344,0.973787,0.630397,0.578842,0.395031,0.446998,0.337837,0.29614,0.741107,0.758844,0.243086,0.361146,0.306968,0.447556,0.0346677,0.924789,0.391094,0.271645,0.370772,0.783777,0.650633,0.555917,0.934849,0.825662,0.523007,0.0249428,0.364002,0.568959,0.584186,0.706159,0.0689161,0.0941033,0.172978,0.848069,0.210986,0.42687,0.311742,0.262448,0.0123912,0.721016,0.550979,0.984935,0.840446,0.0689389,0.458906,0.743662,0.159965,0.0971462,0.333682,0.878431,0.607453,0.741441,0.793919,0.204442,0.460441,0.486857,0.387518,0.357056,0.790741,0.961026,0.712909,0.832558,0.307286,0.258375,0.185008,0.550114,0.661096,0.455121,0.499479,0.389491,0.373062,0.657336,0.21731,0.779173,0.886671,0.958261,0.909098,0.365865,0.601676,0.881573,0.130767,0.169817,0.528846,0.876563,0.108366,0.93286,0.879973,0.610534,0.744653,0.933857,0.752241,0.599389,0.0068776,0.665162,0.389471,0.383178,0.0907751,0.425588,0.0505199,0.644631,0.488948,0.577724,0.058787,0.350656,0.0579417,0.163539,0.415366,0.689354,0.456092,0.369063,0.328855,0.724929,0.301933,0.680045,0.955542,0.216258,0.152573,0.427861,0.94504,0.48417,0.222307,0.560043,0.978765,0.665691,0.431622,0.737225,0.945822,0.623029,0.46731,0.206341,0.317593,0.10323,0.175516,0.988284,0.362342,0.166151,0.270395,0.250448,0.197112,0.0907406,0.14251,0.319644,0.891483,0.369422,0.749319,0.129683,0.316149,0.464671,0.859033,0.483821,0.899797,0.362848,0.957763,0.945902,0.609614,0.0937827,0.738422,0.651825,0.898031,0.354684,0.838698,0.260826,0.905435,0.205254,0.0438233,0.13866,0.520412,0.991887,0.603327,0.110325,0.389265,0.35229,0.403227,0.331825,0.0926877,0.143655,0.505461,0.490093,0.0681685,0.871551,0.563918,0.795481,0.113074,0.886686,0.198743,0.855358,0.61505,0.287286,0.594472,0.277704,0.186911,0.290592,0.117107,0.404679,0.163958,0.951228,0.320373,0.836694,0.741691,0.804233,0.129223,0.00921404,0.592656,0.324685,0.880218,0.528372,0.497284,0.197437,0.882375,0.317742,0.202765,0.424724,0.569936,0.67515,0.961179,0.468848,0.527724,0.85664,0.0682935,0.997542,0.543002,0.770453,0.107687,0.69739,0.0102661,0.630094,0.685376,0.232212,0.607766,0.797616,0.837851,0.828107,0.156596,0.37379,0.279436,0.442281,0.831842,0.948381,0.296761,0.68243,0.203282,0.604938,0.46289,0.684894,0.878278,0.446048,0.966539,0.190134,0.41873,0.274311,0.70868,0.856758,0.371115,0.025332,0.522626,0.170314,0.00150967,0.770826,0.115498,0.734896,0.725827,0.0319397,0.500445,0.0442951,0.294331,0.151008,0.813114,0.0227684,0.725901,0.232075,0.758717,0.51199,0.43144,0.136785,0.791159,0.976905,0.378159,0.964045,0.875312,0.00241822,0.938834,0.619243,0.294401,0.943988,0.019821,0.832555,0.645339,0.219887,0.85948,0.614822,0.769303,0.67421,0.628367,0.148669,0.525171,0.480439,0.4717,0.22898,0.862317,0.851723,0.631451,0.862479,0.323673,0.776045,0.969071,0.347222,0.432835,0.125148,0.208202,0.188232,0.596864,0.491758,0.132864,0.909378,0.236758,0.925765,0.0144983,0.305351,0.340685,0.130456,0.795231,0.245247,0.834053,0.893517,0.82178,0.325658,0.963265,0.313013,0.775042,0.0983366,0.944273,0.552349,0.813541,0.286804,0.722666,0.88452,0.162918,0.515779,0.846992,0.867422,0.6614,0.231808,0.735626,0.672265,0.0269067,0.591921,0.516794,0.97509,0.336821,0.364461,0.403933,0.47007,0.347374,0.275297,0.114101,0.119095,0.0352491,0.998389,0.987015,0.514973,0.323282,0.550281,0.33962,0.930736,0.158927,0.340961,0.399469,0.94874,0.646503,0.827368,0.74945,0.353495,0.220029,0.717109,0.271145,0.908581,0.427124,0.454017,0.978905,0.510524,0.725882,0.774931,0.647079,0.768068,0.321607,0.464304,0.866554,0.257999,0.4934,0.868314,0.114051,0.270237,0.172095,0.819964,0.603863,0.53046,0.75192,0.545955,0.182369,0.713625,0.10685,0.0692018,0.477556,0.0337955,0.807388,0.263993,0.602761,0.883413,0.910449,0.253738,0.126641,0.156729,0.178623,0.728691,0.99479,0.968853,0.469392,0.346654,0.836056,0.478535,0.182151,0.44714,0.730944,0.0496411,0.179068,0.678177,0.437765,0.84028,0.294461,0.736584,0.170852,0.277626,0.219935,0.0504937,0.478184,0.642537,0.0287156,0.0779251,0.240477,0.654701,0.69287,0.238469,0.726971,0.208529,0.225336,0.737757,0.448193,0.555755,0.59485,0.52261,0.475156,0.502733,0.15242,0.101029,0.872387,0.882721,0.53642,0.542701,0.139777,0.812313,0.571128,0.971033,0.59478,0.151623,0.882075,0.906971,0.119404,0.314426,0.321756,0.191049,0.29704,0.712995,0.156533,0.224018,0.742017,0.968209,0.755398,0.528272,0.832536,0.520902,0.996242,0.574219,0.315246,0.439401,0.418292,0.824503,0.498886,0.799478,0.647285,0.0121888,0.778949,0.312097,0.755059,0.299271,0.365443,0.0621429,0.920916,0.680713,|0.181675,0.787962,0.363096,0.578044,0.879105,0.225348,0.649009,0.0719315,0.30298,0.760292,0.246297,0.989069,0.701946,0.0742974,0.508579,0.889758,0.632787,0.552882,0.164347,0.119335,0.188067,0.133579,0.65906,0.982572,0.818082,0.6838,0.495226,0.606988,0.528109,0.713982,0.621794,0.204533,0.138108,0.743435,0.255338,0.1772,0.722464,0.816291,0.104303,0.577948,0.576982,0.54223,0.651037,0.598274,0.527227,0.13869,0.0802674,0.948376,0.927519,0.50196,0.141592,0.96492,0.60654,0.482257,0.655606,0.0912079,0.874176,0.366042,0.537476,0.612686,0.917517,0.377197,0.00145018,0.296964,0.191247,0.710202,0.737488,0.546996,0.0451663,0.285785,0.846522,0.780708,0.474789,0.0550103,0.540227,0.541249,0.883038,0.742431,0.644966,0.8998,0.718656,0.179883,0.30795,0.644325,0.72095,0.568322,0.481665,0.375415,0.0257765,0.739233,0.805592,0.453195,0.169808,0.296069,0.817327,0.800697,0.587748,0.244007,0.779529,0.800763,0.111569,0.469628,0.0592436,0.439955,0.324516,0.855058,0.538805,0.0220079,0.753143,0.1532,0.0442468,0.735769,0.181152,0.876053,0.973666,0.776815,0.147442,0.0673367,0.700891,0.248192,0.860969,0.321506,0.0850077,0.636953,0.0337593,0.72111,0.545255,0.892982,0.0954142,0.521166,0.223651,0.119723,0.487396,0.0379419,0.0793538,0.0843484,0.156296,0.0490516,0.84972,0.597742,0.978753,0.183228,0.876336,0.539825,0.327694,0.0141459,0.710416,0.701691,0.30116,0.844376,0.477979,0.533574,0.312298,0.348392,0.449709,0.720259,0.690354,0.756506,0.516898,0.76956,0.422434,0.729854,0.0822235,0.375733,0.36886,0.313811,0.647983,0.223976,0.15821,0.914289,0.34631,0.677955,0.0952866,0.919264,0.575924,0.24263,0.932548,0.732069,0.480885,0.554126,0.620314,0.499966,0.424675,0.125345,0.82881,0.503243,0.96396,0.60219,0.342111,0.242209,0.150884,0.379011,0.314374,0.388494,0.240906,0.605629,0.231194,0.818883,0.267509,0.312969,0.145467,0.42009,0.402317,0.83735,0.579367,0.615005,0.965843,0.34217,0.503148,0.614695,0.423754,0.545677,0.0892595,0.73111,0.962406,0.90433,0.188299,0.863553,0.969503,0.559608,0.543853,0.0699816,0.627234,0.110685,0.925487,0.980348,0.674725,0.467903,0.348782,0.636682,0.344352,0.915575,0.157976,0.985558,0.712488,0.864154,0.927481,0.274864,0.0108402,0.294087,0.840231,0.60816,0.231254,0.718239,0.434297,0.623954,0.45866,0.132333,0.718599,0.0851979,0.252707,0.593768,0.14386,0.322789,0.292919,0.129399,0.805814,0.629806,0.467194,0.0217824,0.73309,0.685298,0.715769,0.786072,0.530375,0.769148,0.345553,0.157903,0.0693529,0.465351,0.554861,0.235489,0.824786,0.119424,0.11596,0.641144,0.960053,0.873892,0.206331,0.671858,0.797974,0.402997,0.240064,0.389365,0.894165,0.0611801,0.53323,0.357358,0.0307024,0.8249,0.492504,0.353007,0.13189,0.988637,0.00537461,0.81585,0.845061,0.371388,0.983624,0.591917,0.0403693,0.107739,0.655731,0.118024,0.348801,0.813144,0.875175,0.25132,0.090983,0.0732616,0.435368,0.582051,0.367349,0.107363,0.537953,0.286872,0.707734,0.147881,0.795089,0.465963,0.607315,0.827586,0.720135,0.477218,0.6791,0.435844,0.621227,0.931261,0.86891,0.614821,0.0267721,0.319583,0.6923,0.173229,0.352851,0.428163,0.0569407,0.939533,0.67167,0.672669,0.477913,0.711413,0.978853,0.238074,0.2034,0.716942,0.112779,0.862521,0.770912,0.753627,0.550611,0.833159,0.288796,0.588643,0.481707,0.788199,0.417488,0.399661,0.443628,0.49928,0.362544,0.278531,0.198366,0.436546,0.0609946,0.249168,0.61793,0.151726,0.468831,0.066025,0.992128,0.956937,0.329753,0.0793644,0.512982,0.48666,0.044753,0.0477769,0.117903,0.189514,0.55794,0.8573,0.0379087,0.112563,0.691864,0.619959,0.396975,0.0914625,0.98311,0.885269,0.825399,0.489454,0.302926,0.49486,0.908318,0.891444,0.903816,0.900798,0.897641,0.528836,0.0949696,0.397786,0.836738,0.124747,0.613041,0.49421,0.0306132,0.315551,0.0317396,0.81469,0.0899189,0.739618,0.422502,0.396713,0.782065,0.474395,0.0795252,0.713673,0.674697,0.734369,0.945176,0.824033,0.0598637,0.700088,0.934634,0.486217,0.239101,0.307604,0.366054,0.936989,0.0858359,0.645492,0.785347,0.92229,0.951837,0.168272,0.182438,0.757529,0.928335,0.0366148,0.632389,0.481908,0.474439,0.363201,0.669559,0.0935762,0.209378,0.56907,0.45809,0.826045,0.477255,0.971098,0.938641,0.393368,0.322948,0.841862,0.0500317,0.734275,0.911733,0.209139,0.269217,0.203109,0.47395,0.25606,0.252873,0.26873,0.668008,0.333102,0.0563895,0.67126,0.733116,0.143985,0.433374,0.58017,0.877466,0.433938,0.95039,0.0280911,0.77811,0.64479,0.904769,0.814447,0.574817,0.960839,0.418478,0.67958,0.636136,0.286724,0.91847,0.779106,0.0703928,0.410589,0.400639,0.784849,0.275138,0.399812,0.602713,0.45328,0.940234,0.0625313,0.708611,0.183226,0.925654,0.602744,0.454626,0.607453,0.423884,0.544658,0.423029,0.504782,0.0021767,0.155519,0.245102,0.446064,0.307287,0.0557194,0.538402,0.075952,0.321335,0.592622,0.931735,0.466366,0.869001,0.759264,0.513306,0.451534,0.390755,0.952185,0.262583,0.885492,0.506493,0.186319,0.919577,0.49202,0.417067,0.234682,0.752434,0.86267,0.214208,0.412265,0.281542,0.526052,0.916854,0.219878,0.930336,0.197831,0.869917,0.935547,0.106083,0.0400926,0.574266,0.428583,0.909178,0.135135,0.898552,0.805775,0.517533,0.778474,0.514822,0.0692598,0.660538,0.280323,0.843394,0.119928,0.368374,0.322968,0.0626473,0.633255,0.238615,0.422029,0.859132,0.619514,0.363378,0.348676,0.28009,0.495756,0.48625,0.0569665,0.367022,0.988927,0.74402,0.285115,0.424636,0.0657724,0.387324,0.563742,0.317698,0.347893,0.373771,0.666157,0.777586,0.45387,0.706917,0.672159,0.0514627,0.470552,0.959711,0.894914,0.81453,0.47576,0.751496,0.055389,0.280553,0.584304,0.176324,0.752205,0.754872,0.706758,0.224765,0.962478,0.125558,0.0414747,0.0865172,0.0259738,0.731131,0.510272,0.652,0.547051,0.376704,0.637293,0.346751,0.830882,0.869073,0.0904455,0.876673,0.9581,0.730691,0.615993,0.590185,0.223549,0.619237,0.0578874,0.964577,0.975013,0.234856,0.884273,0.956556,0.225511,0.409476,0.69103,0.670612,0.182699,0.128078,0.0542267,0.631776,0.486645,0.733437,0.666879,0.762257,0.947304,0.863128,0.460725,0.625184,0.791785,0.950121,0.06917,0.287433,0.603767,0.179362,0.588014,0.527631,0.26285,0.751336,0.193263,0.591658,0.0168729,0.063805,0.536644,0.226017,0.951252,0.880849,0.963387,0.07019,0.437511,0.772821,0.935732,0.657876,0.613212,0.121547,0.767706,0.3709,0.0997534,0.248924,0.480793,0.865978,0.653822,0.99922,0.444547,0.961064,0.459105,0.0271159,0.535893,0.231952,0.682076,0.719958,0.527556,0.860915,0.609694,0.397759,0.503073,0.966439,0.688776,0.350426,0.960918,0.09262,0.606715,0.694533,0.247457,0.116955,0.945448,0.120772,0.108726,0.0849695,0.523246,0.635846,0.468377,0.79165,0.147477,0.878152,0.650838,0.0293803,0.833789,0.108279,0.356544,0.495998,0.444617,0.716413,0.222623,0.545035,0.861423,0.735549,0.607337,0.236728,0.905682,0.0502002,0.525046,0.381854,0.221469,0.895771,0.0170853,0.587347,0.93645,0.325408,0.593331,0.612137,0.874574,0.342849,0.9114,0.708732,0.923964,0.584004,0.756223,0.582474,0.126835,0.199811,0.702345,0.528074,0.0303802,0.444714,0.925508,0.74008,0.710962,0.544608,0.0350969,0.412888,0.352718,0.921169,0.375436,0.781601,0.106391,0.442918,0.772021,0.336266,0.398719,0.811229,0.536059,0.101157,0.690507,0.989181,0.993256,0.0492174,0.265092,0.133372,0.517016,0.247315,0.912812,0.29895,0.163245,0.18825,0.337098,0.470285,0.975589,0.836401,0.886954,0.14968,0.713097,0.0538779,0.14519,0.420305,0.639557,0.649282,0.552805,0.442848,0.371833,0.128027,0.27892,0.311122,0.524589,0.578741,0.292174,0.85785,0.101925,0.531697,0.0893362,0.61246,0.291421,0.599227,0.69713,0.24215,0.948769,0.202615,0.637291,0.612688,0.119921,0.824378,0.622874,0.993757,0.599778,0.979104,0.698585,0.0680952,0.0957639,0.549448,0.626461,0.191832,0.0370789,0.17065,0.244114,0.27903,0.917098,0.605834,0.306481,0.182757,0.573788,0.817163,0.0167736,0.20587,0.601626,0.908291,0.125808,0.290168,0.743188,0.795248,0.479777,0.583656,0.48606,0.272827,0.486255,0.857194,0.684875,0.70955,0.283495,0.667441,0.608549,0.0895052,0.918473,0.791636,0.665064,0.340384,0.492267,0.673574,0.79893,0.483866,0.170793,0.774149,0.388157,0.0277604,0.0648433,0.623841,0.428312,0.603343,0.412679,0.911076,0.382152,0.737836,0.98594,0.45412,0.937944,0.230241,0.531026,0.839953,0.662212,0.835084,0.512037,0.810577,0.511835,0.623814,0.514751,0.0786161,0.894614,0.611108,0.378485,0.0522787,0.584624,0.368801,0.498572,0.324334,0.749232,0.564905,0.825973,0.0323292,0.168278,0.0271675,0.284757,0.357615,0.804991,0.846964,0.102036,0.759583,0.511638,0.266534,0.30197,0.366304,0.42753,0.492341,0.631164,0.603562,0.972675,0.728991,0.93273,0.139163,0.080856,0.812948,0.042254,0.200015,0.094959,0.927594,0.0662019,0.258137,0.428542,0.272797,0.238691,0.656445,0.157068,0.166697,0.479937,0.304007,0.97726,0.0254453,0.633048,0.913043,0.903758,0.85515,0.96898,0.661992,0.192648,0.449048,0.114891,0.609905,0.781704,0.136518,0.476148,0.324688,0.637114,0.910368,0.371573,0.915028,0.194473,0.309944,0.19787,0.738685,0.0284354,0.312693,0.594144,0.290504,0.555028,0.0810913,0.404613,0.0943912,0.818934,0.429589,0.501161,0.20376,0.129416,0.59261,0.426538,0.759317,0.346696,0.304572,0.259377,0.892412,0.435501,0.222647,0.227234,0.376163,0.504486,0.914286,0.300022,0.285707,0.563586,|0.372539,0.815454,0.474021,0.218939,0.626402,0.748768,0.425075,0.19398,0.0887317,0.470471,0.331767,0.636946,0.936256,0.571465,0.311635,0.189497,0.380659,0.964362,0.435321,0.888647,0.0279754,0.941289,0.810587,0.115183,0.337633,0.854304,0.704521,0.281831,0.250219,0.32961,0.711898,0.0200998,0.356443,0.81161,0.180117,0.191018,0.0251875,0.353528,0.763897,0.380936,0.280922,0.575089,0.866999,0.798362,0.55151,0.87609,0.63505,0.962987,0.726726,0.552684,0.561044,0.612982,0.977569,0.681868,0.255435,0.0775345,0.977872,0.729351,0.555246,0.374552,0.856858,0.98542,0.197533,0.173516,0.577887,0.266668,0.815344,0.852719,0.669475,0.988168,0.0134485,0.683029,0.139115,0.135421,0.909333,0.1271,0.748181,0.0170287,0.615605,0.980815,0.634711,0.194572,0.819883,0.456548,0.151812,0.449377,0.706221,0.981783,0.824382,0.678158,0.570678,0.831648,0.00557292,0.214057,0.0977898,0.447696,0.76848,0.613637,0.191619,0.836852,0.515653,0.182022,0.0197623,0.22328,0.264275,0.00618541,0.345445,0.548459,0.712166,0.803847,0.547769,0.335214,0.534542,0.495263,0.54215,0.63431,0.582031,0.579901,0.619191,0.302552,0.551211,0.915732,0.457226,0.453727,0.0712403,0.428592,0.0115142,0.662272,0.083899,0.30675,0.667419,0.689974,0.68795,0.556391,0.495609,0.489275,0.505013,0.613727,0.959642,0.32943,0.402647,0.345263,0.63264,0.209401,0.378046,0.107708,0.463702,0.161604,0.602499,0.0163013,0.684945,0.0482051,0.550486,0.809311,0.670063,0.854067,0.972081,0.790662,0.267968,0.611651,0.604143,0.879709,0.856532,0.262021,0.929542,0.0326492,0.753101,0.633158,0.445445,0.0939463,0.37424,0.71672,0.365978,0.377762,0.673644,0.191277,0.161496,0.270498,0.784029,0.694369,0.750191,0.770863,0.31083,0.965639,0.886007,0.944487,0.476895,0.555873,0.224054,0.0737817,0.219011,0.382145,0.127275,0.493259,0.692829,0.176846,0.801625,0.248105,0.741627,0.183874,0.23647,0.0404733,0.0114961,0.0465418,0.304127,0.298466,0.816695,0.676197,0.959618,0.744261,0.863023,0.667644,0.338584,0.625436,0.59696,0.846714,0.433367,0.506169,0.666819,0.217973,0.983314,0.57684,0.107415,0.205401,0.694423,0.321763,0.543309,0.393562,0.315425,0.231182,0.216706,0.0349428,0.503888,0.448615,0.149268,0.629061,0.241158,0.0756351,0.794039,0.729759,0.212396,0.644932,0.683124,0.689262,0.227534,0.762062,0.181688,0.0696457,0.107326,0.18709,0.630817,0.797827,0.498409,0.194511,0.738139,0.932241,0.804942,0.341164,0.805169,0.735585,0.095847,0.636188,0.486335,0.68855,0.106863,0.761477,0.654496,0.0433303,0.107087,0.0324996,0.117423,0.352826,0.276903,0.259394,0.915527,0.443816,0.677746,0.722756,0.118675,0.598148,0.923742,0.41934,0.217483,0.777178,0.332421,0.473582,0.980785,0.49125,0.23641,0.475385,0.780187,0.482297,0.492489,0.205946,0.835031,0.932857,0.0577789,0.977811,0.917058,0.525336,0.819913,0.631782,0.282989,0.945763,0.935215,0.674849,0.766265,0.310137,0.0475251,0.354135,0.387199,0.556753,0.155447,0.774605,0.524947,0.529055,0.336838,0.668841,0.78171,0.687078,0.712678,0.604981,0.685326,0.400751,0.0897986,0.981235,0.909458,0.335005,0.733536,0.89331,0.131625,0.730931,0.923436,0.561675,0.857416,0.528076,0.0177052,0.762936,0.611646,0.924113,0.215628,0.703626,0.799624,0.0869549,0.13737,0.212822,0.944432,0.593565,0.978754,0.0680751,0.283244,0.850651,0.404057,0.82516,0.44323,0.469231,0.685624,0.913452,0.0285459,0.502555,0.248778,0.656502,0.409001,0.490639,0.35509,0.816918,0.372599,0.830707,0.189535,0.00809103,0.574517,0.277626,0.434678,0.810813,0.939692,0.920078,0.357887,0.971154,0.0234193,0.318328,0.556972,0.489605,0.780115,0.837458,0.0764825,0.322598,0.563227,0.367486,0.265277,0.695969,0.0401546,0.724289,0.41854,0.488979,0.976627,0.103977,0.842306,0.490766,0.889592,0.828632,0.0355822,0.728579,0.0537238,0.944211,0.385608,0.891796,0.5357,0.980536,0.753731,0.0610675,0.992126,0.0209765,0.971711,0.790628,0.202458,0.941182,0.333928,0.836785,0.993995,0.592561,0.313109,0.131143,0.858492,0.0255533,0.645649,0.0660005,0.315642,0.33418,0.785036,0.154188,0.487403,0.714645,0.040226,0.576485,0.321506,0.659279,0.520344,0.626122,0.254094,0.0901912,0.590249,0.626165,0.574756,0.978697,0.458811,0.668043,0.428434,0.72906,0.989239,0.296537,0.842493,0.172357,0.532929,0.625078,0.410137,0.740355,0.606904,0.453919,0.592428,0.226839,0.303142,0.434909,0.89992,0.539906,0.951056,0.223806,0.347269,0.442932,0.0158929,0.317357,0.0381005,0.200719,0.0102514,0.602079,0.402838,0.86163,0.857613,0.487782,0.934634,0.559,0.959889,0.856347,0.221198,0.671466,0.922114,0.71851,0.409126,0.373033,0.607823,0.835206,0.836668,0.454802,0.163232,0.529015,0.34754,0.690875,0.770642,0.762944,0.815309,0.294858,0.149138,0.785027,0.406357,0.642503,0.227249,0.561325,0.66283,0.245724,0.00728601,0.339303,0.307944,0.0779222,0.176765,0.817963,0.859623,0.572158,0.733503,0.18494,0.432458,0.538752,0.753304,0.238977,0.524165,0.982101,0.933793,0.149887,0.733569,0.0465827,0.0569915,0.141238,0.127822,0.145424,0.667995,0.91701,0.350665,0.687715,0.976672,0.547957,0.187888,0.00674731,0.142367,0.809456,0.449963,0.590261,0.629731,0.74326,0.882258,0.417777,0.387918,0.953823,0.913225,0.179519,0.383707,0.161883,0.464824,0.767332,0.540449,0.977591,0.661702,0.394345,0.523195,0.797151,0.457748,0.253144,0.861165,0.802092,0.739595,0.758677,0.502178,0.06181,0.383545,0.818332,0.918223,0.160424,0.98216,0.183982,0.164215,0.608092,0.640225,0.281352,0.383314,0.713084,0.921143,0.474867,0.647569,0.570997,0.739016,0.195824,0.157365,0.312294,0.609004,0.744234,0.169355,0.881214,0.39125,0.0656356,0.589111,0.494372,0.167001,0.97504,0.536414,0.956922,0.815013,0.292061,0.289437,0.542151,0.427818,0.404938,0.81781,0.964497,0.934017,0.697102,0.126304,0.0532711,0.548973,0.727298,0.313594,0.126509,0.675771,0.0110056,0.613048,0.741105,0.855903,0.871629,0.119374,0.981356,0.735023,0.346108,0.61232,0.0270076,0.600223,0.995986,0.78757,0.624767,0.0615091,0.924361,0.321094,0.48381,0.849918,0.0502968,0.363985,0.223636,0.11414,0.545369,0.110045,0.342574,0.199383,0.220339,0.00694865,0.447942,0.46706,0.821119,0.0858808,0.136034,0.734742,0.910919,0.70182,0.675124,0.0272191,0.178943,0.625942,0.246364,0.844372,0.0362765,0.376396,0.0451921,0.690435,0.605572,0.381865,0.0679903,0.289913,0.83724,0.369846,0.696166,0.101465,0.189788,0.280513,0.801348,0.717526,0.283106,0.725212,0.452001,0.350827,0.568373,0.795873,0.714164,0.608069,0.596524,0.0640114,0.714253,0.83677,0.458673,0.581932,0.588838,0.300464,0.267967,0.796788,0.501435,0.142648,0.678595,0.749322,0.219886,0.922821,0.534314,0.637709,0.18273,0.256928,0.818413,0.218223,0.334954,0.620988,0.345952,0.986578,0.458727,0.515125,0.5891,0.702904,0.933099,0.906802,0.00250924,0.185908,0.00156301,0.444971,0.160375,0.567644,0.291857,0.672169,0.243825,0.469012,0.621049,0.0352576,0.451212,0.678959,0.596413,0.436633,0.0549505,0.06964,0.981573,0.62414,0.744705,0.79932,0.650127,0.848533,0.762779,0.149989,0.918715,0.382841,0.480292,0.950578,0.180579,0.08382,0.58509,0.992881,0.20847,0.45763,0.1133,0.498639,0.168644,0.926943,0.889547,0.377876,0.894872,0.255687,0.658803,0.813009,0.748914,0.711595,0.666374,0.986265,0.241222,0.84117,0.331447,0.326797,0.851977,0.342787,0.680994,0.139732,0.197663,0.707364,0.0058049,0.933501,0.866898,0.195885,0.98545,0.567319,0.782182,0.716134,0.327615,0.103447,0.376024,0.609211,0.138265,0.105222,0.00786507,0.912653,0.169288,0.562957,0.426682,0.534735,0.545183,0.738056,0.760024,0.457393,0.0182302,0.274429,0.269368,0.0432059,0.071174,0.596257,0.0473555,0.660319,0.710861,0.816283,0.459763,0.134222,0.824905,0.282048,0.684312,0.596714,0.563579,0.150544,0.788018,0.395807,0.943159,0.188394,0.236031,0.615975,0.683753,0.49572,0.0421343,0.678019,0.596547,0.922172,0.977372,0.216736,0.516273,0.573226,0.350318,0.855743,0.31575,0.223984,0.803642,0.61732,0.484828,0.543996,0.0919672,0.073004,0.848206,0.363244,0.549665,0.949713,0.659856,0.0497345,0.243727,0.613761,0.627497,0.0595043,0.475767,0.989678,0.25763,0.700918,0.187312,0.272398,0.23441,0.704825,0.130575,0.801225,0.642253,0.968211,0.254488,0.269754,0.686723,0.830012,0.595207,0.630957,0.439083,0.787095,0.152518,0.598533,0.205274,0.722534,0.788581,0.41691,0.847502,0.535065,0.314247,0.768486,0.501459,0.489705,0.811106,0.134691,0.0794697,0.283472,0.403274,0.66124,0.497338,0.319014,0.725488,0.0941129,0.941181,0.50315,0.157236,0.360974,0.605104,0.0522677,0.271511,0.899167,0.499987,0.54429,0.61435,0.539002,0.0964267,0.911795,0.705696,0.814116,0.891335,0.615781,0.783,0.882616,0.788505,0.00982332,0.657379,0.124408,0.226851,0.707251,0.574794,0.959904,0.897292,0.963395,0.992387,0.756256,0.748326,0.180033,0.275738,0.251212,0.420054,0.742873,0.829776,0.40827,0.552361,0.0710944,0.798962,0.197907,0.424965,0.736035,0.91324,0.147057,0.167011,0.872679,0.427679,0.173126,0.596836,0.75636,0.245732,0.478974,0.222023,0.544208,0.494586,0.226891,0.568168,0.393407,0.173243,0.0950563,0.0724834,0.383502,0.772012,0.387886,0.477525,0.606841,0.803118,0.527594,0.0494038,0.196239,0.336832,0.922588,0.899662,0.358534,0.143589,0.414894,0.886741,0.360409,0.851915,0.251641,0.611575,0.777033,0.147953,0.540187,0.262075,0.88481,0.918408,0.18835,0.385772,0.261207,0.0628752,0.639524,0.868268,0.968354,0.82281,0.12886,0.555622,|0.411137,0.619482,0.30588,0.334235,0.9248,0.957246,0.0306516,0.243804,0.262295,0.818421,0.127029,0.847751,0.0655369,0.475526,0.583903,0.598353,0.894362,0.952522,0.566404,0.88741,0.515723,0.705464,0.25464,0.445175,0.596505,0.501811,0.110436,0.245077,0.289265,0.0294347,0.685942,0.283727,0.71801,0.96106,0.169499,0.376765,0.134884,0.0855402,0.397609,0.755907,0.0169342,0.835214,0.998245,0.270731,0.174451,0.0526162,0.591807,0.899785,0.542571,0.428389,0.147294,0.0862316,0.374536,0.416001,0.597531,0.156925,0.366404,0.0684756,0.160002,0.269927,0.252405,0.618817,0.584354,0.947216,0.748009,0.604923,0.140299,0.912821,0.726556,0.633037,0.293826,0.741751,0.653315,0.85048,0.642452,0.119783,0.848872,0.968901,0.610604,0.42642,0.0251147,0.00372231,0.222287,0.553027,0.579105,0.987437,0.718702,0.482643,0.864856,0.580839,0.912167,0.0439383,0.910434,0.18457,0.216686,0.861376,0.00950271,0.558164,0.561955,0.3005,0.0737712,0.787626,0.557544,0.897229,0.448877,0.0774361,0.8524,0.281431,0.998595,0.955865,0.160785,0.181708,0.997827,0.520086,0.174933,0.257544,0.309034,0.662862,0.442093,0.643511,0.422567,0.926721,0.756604,0.236357,0.658843,0.824021,0.411159,0.155038,0.358323,0.512913,0.824855,0.289143,0.540325,0.810926,0.0622702,0.107059,0.383639,0.528204,0.800712,0.221907,0.54421,0.525531,0.00486952,0.0764058,0.397231,0.492257,0.874917,0.136373,0.435305,0.936467,0.311457,0.547691,0.962437,0.0410862,0.5914,0.75808,0.883831,0.261887,0.371702,0.0845774,0.244989,0.444434,0.922274,0.699433,0.311982,0.959911,0.43898,0.839131,0.643722,0.35468,0.747545,0.256916,0.894252,0.246649,0.516251,0.685362,0.967911,0.251015,0.0661445,0.408767,0.496844,0.245585,0.474153,0.371179,0.92461,0.791858,0.612324,0.445979,0.67561,0.260623,0.868293,0.943903,0.794765,0.0667748,0.0690216,0.132964,0.445333,0.733869,0.366715,0.363614,0.246858,0.885544,0.583448,0.34093,0.310574,0.0908985,0.0812928,0.69915,0.393781,0.121066,0.327956,0.165836,0.773755,0.403572,0.410192,0.301355,0.568121,0.672658,0.93716,0.321347,0.517434,0.500216,0.36971,0.12303,0.742568,0.124622,0.0760325,0.359963,0.243283,0.837636,0.967906,0.903326,0.158937,0.566509,0.551851,0.302148,0.647997,0.587601,0.0605826,0.787139,0.730429,0.507514,0.76551,0.963392,0.345324,0.902011,0.317492,0.283957,0.158314,0.40817,0.0413533,0.228144,0.0702768,0.489864,0.713453,0.0342071,0.34291,0.373533,0.265257,0.867008,0.526264,0.305592,0.222234,0.507513,0.606893,0.196035,0.683351,0.149015,0.140316,0.0337818,0.275572,0.994175,0.872625,0.843283,0.997463,0.327318,0.0487359,0.751155,0.432139,0.399229,0.74155,0.352336,0.906689,0.312728,0.219024,0.662946,0.642586,0.539487,0.0579106,0.387119,0.927759,0.608118,0.384253,0.718831,0.259167,0.161251,0.181927,0.24778,0.832555,0.931397,0.0473382,0.729446,0.12257,0.712054,0.743027,0.228222,0.970077,0.143489,0.130248,0.440466,0.537639,0.509782,0.778804,0.393948,0.331896,0.111309,0.107536,0.901416,0.133195,0.213824,0.980269,0.448417,0.235738,0.799951,0.782487,0.794964,0.745197,0.273998,0.809899,0.380186,0.915674,0.0935816,0.190754,0.519499,0.370805,0.629072,0.563582,0.195292,0.0734431,0.538861,0.819938,0.097334,0.0290546,0.255308,0.0649863,0.0407013,0.881666,0.481057,0.0122761,0.123753,0.55728,0.301316,0.0719081,0.210035,0.500183,0.641744,0.675138,0.366814,0.643999,0.0604002,0.0538557,0.81267,0.36342,0.385523,0.984538,0.708909,0.0269421,0.505983,0.168113,0.254604,0.213158,0.639511,0.756823,0.268068,0.121673,0.527602,0.211257,0.856543,0.563754,0.37033,0.497695,0.119983,0.467561,0.929582,0.207494,0.309807,0.917224,0.855763,0.532775,0.812002,0.307339,0.44377,0.492462,0.71922,0.487079,0.164346,0.675865,0.377728,0.374733,0.256077,0.237802,0.125316,0.0287574,0.0457522,0.871906,0.184179,0.476215,0.953909,0.361002,0.23995,0.163565,0.35552,0.921401,0.0128607,0.696071,0.0650377,0.776235,0.625746,0.6832,0.752269,0.039427,0.501723,0.0819163,0.264625,0.554189,0.18014,0.881539,0.527402,0.394227,0.812614,0.924361,0.986261,0.727692,0.721103,0.0629429,0.12296,0.122242,0.976505,0.170138,0.496346,0.0844545,0.701387,0.697167,0.424079,0.109496,0.578469,0.0683802,0.108719,0.83861,0.61271,0.65119,0.389949,0.183147,0.504283,0.659516,0.721012,0.0859719,0.124767,0.813473,0.649331,0.517821,0.0142555,0.156543,0.791008,0.437366,0.0746051,0.494509,0.8338,0.0738581,0.0574183,0.687191,0.373876,0.121455,0.426468,0.569818,0.67645,0.393924,0.037576,0.922082,0.972323,0.5191,0.32817,0.617234,0.90611,0.780901,0.954724,0.754663,0.801242,0.588099,0.583912,0.483492,0.762863,0.253229,0.145923,0.994746,0.54505,0.208781,0.521421,0.674435,0.334881,0.700742,0.822657,0.356576,0.111601,0.0284563,0.961987,0.373416,0.214757,0.710492,0.0118317,0.467826,0.910727,0.92855,0.264386,0.93385,0.100845,0.250695,0.468864,0.956466,0.72373,0.721407,0.279168,0.154304,0.332727,0.607549,0.499319,0.455384,0.522886,0.658212,0.40522,0.865701,0.814998,0.832596,0.395598,0.940047,0.725594,0.694348,0.753992,0.473372,0.770031,0.885561,0.518328,0.944373,0.283276,0.637919,0.184542,0.35822,0.125998,0.98184,0.796174,0.373002,0.585328,0.925295,0.470327,0.101853,0.518638,0.635984,0.235106,0.44255,0.0755127,0.442596,0.57348,0.192861,0.298216,0.546983,0.71431,0.00961667,0.141046,0.0396948,0.166954,0.520563,0.814812,0.0642713,0.61737,0.55271,0.612709,0.458681,0.975175,0.662915,0.485231,0.0760277,0.530555,0.596718,0.155384,0.129827,0.427039,0.329108,0.496491,0.677246,0.461409,0.109303,0.0651901,0.612662,0.812678,0.489587,0.363913,0.778754,0.0647264,0.754419,0.645999,0.547718,0.602772,0.968344,0.100251,0.448797,0.877824,0.45442,0.279453,0.359302,0.648408,0.544204,0.303496,0.156605,0.727369,0.687023,0.677641,0.893283,0.468644,0.954052,0.797716,0.0939656,0.922864,0.00877631,0.666783,0.918187,0.10187,0.298336,0.191591,0.0892862,0.695546,0.337701,0.643797,0.395812,0.990058,0.79091,0.434647,0.31643,0.982535,0.304088,0.0884519,0.803946,0.0451871,0.864389,0.887021,0.501899,0.0168177,0.980379,0.146617,0.637214,0.324653,0.38086,0.514071,0.834044,0.760872,0.499389,0.167817,0.899057,0.70287,0.696271,0.434744,0.00458539,0.0330927,0.40726,0.503951,0.924965,0.761989,0.314949,0.52431,0.748842,0.148581,0.636862,0.116457,0.358476,0.672387,0.384174,0.734788,0.241635,0.49443,0.874661,0.628764,0.787745,0.162436,0.237902,0.856086,0.277671,0.125105,0.44074,0.587063,0.650217,0.549419,0.776024,0.432666,0.0876057,0.825628,0.273125,0.696433,0.811741,0.846257,0.385232,0.974058,0.377103,0.658347,0.196879,0.808213,0.244,0.114442,0.776977,0.443335,0.955086,0.172933,0.0779357,0.876464,0.964718,0.835403,0.391143,0.602091,0.067883,0.74718,0.807357,0.841251,0.0476494,0.651542,0.737408,0.823392,0.409774,0.214601,0.930951,0.912371,0.601581,0.754573,0.00983167,0.957688,0.925418,0.904567,0.830075,0.872089,0.321495,0.601828,0.758764,0.933646,0.593696,0.446512,0.804646,0.315898,0.545412,0.893992,0.0565335,0.0226519,0.798057,0.708797,0.00268894,0.625351,0.109662,0.202373,0.970698,0.264831,0.293003,0.624487,0.727817,0.153187,0.129068,0.140743,0.344649,0.268051,0.0817182,0.571027,0.0124502,0.0704885,0.221317,0.268837,0.295111,0.13611,0.263574,0.265917,0.0149018,0.859071,0.374415,0.539,0.39679,0.108439,0.88824,0.964743,0.0325899,0.401661,0.419214,0.744894,0.12408,0.991908,0.751704,0.806932,0.112877,0.929927,0.913016,0.032714,0.594151,0.710682,0.398042,0.424205,0.415763,0.832621,0.208865,0.948774,0.370814,0.707891,0.921416,0.628828,0.0963632,0.483868,0.453169,0.0321533,0.541889,0.000601172,0.562526,0.0770362,0.180359,0.287322,0.990568,0.79473,0.260722,0.218701,0.84565,0.359658,0.326643,0.924746,0.936072,0.0860517,0.632575,0.387961,0.80734,0.315441,0.969721,0.68987,0.311622,0.265825,0.600217,0.822416,0.0081529,0.432317,0.141922,0.413206,0.679416,0.665002,0.542479,0.361719,0.811041,0.905402,0.771035,0.889711,0.83972,0.205519,0.62687,0.600592,0.490888,0.591749,0.182518,0.920014,0.866619,0.281175,0.152384,0.789735,0.859017,0.191602,0.129008,0.0823351,0.963647,0.14979,0.768335,0.190619,0.8245,0.00798231,0.671838,0.400736,0.469547,0.386367,0.164346,0.448858,0.380774,0.430979,0.142889,0.134198,0.0665017,0.171429,0.481983,0.132596,0.411214,0.306423,0.35253,0.544843,0.169966,0.0306373,0.553689,0.0615506,0.0412919,0.987962,0.813605,0.79492,0.839353,0.921324,0.877138,0.341735,0.266855,0.385401,0.228683,0.807481,0.726837,0.0337276,0.0884037,0.766527,0.158926,0.137898,0.375626,0.0273063,0.528159,0.737341,0.810528,0.19612,0.315957,0.890513,0.726522,0.891138,0.867079,0.23771,0.909492,0.468849,0.750508,0.573883,0.196821,0.674569,0.585626,0.45716,0.822854,0.204042,0.728538,0.464902,0.158684,0.296928,0.807821,0.414355,0.524004,0.413808,0.461637,0.050896,0.38341,0.361898,0.277357,0.577933,0.218161,0.557315,0.419108,0.981877,0.831331,0.252679,0.155371,0.592041,0.980011,0.408448,0.843982,0.27159,0.0315863,0.128822,0.251176,0.428944,0.626235,0.937206,0.467014,0.762407,0.185466,0.747854,0.570443,0.893819,0.183688,0.413569,0.142348,0.399209,0.5053,0.716671,0.607043,0.415051,0.495883,0.597392,0.699198,0.853072,0.706356,0.500989,0.644976,0.205516,0.0684258,0.956715,0.630922,0.146355,0.918318,0.981841,0.0237306,0.218249,0.976614,0.306233,0.176743,0.699331,0.0554022,0.295453,|0.281819,0.761908,0.676076,0.219312,0.304837,0.89917,0.91701,0.212028,0.080381,0.586278,0.845978,0.721078,0.482485,0.146905,0.240298,0.378259,0.625671,0.456009,0.118776,0.625737,0.476109,0.718083,0.219597,0.94518,0.185218,0.703288,0.905808,0.0142422,0.971691,0.0128289,0.346993,0.923519,0.364537,0.938575,0.0498395,0.568203,0.143699,0.848827,0.41542,0.559503,0.170629,0.744194,0.904602,0.142734,0.00313979,0.557639,0.964356,0.515992,0.66801,0.849851,0.590997,0.471619,0.0199002,0.500927,0.820868,0.333514,0.126422,0.426794,0.619684,0.88139,0.138427,0.229849,0.349773,0.567791,0.86267,0.965106,0.202042,0.973874,0.134495,0.657074,0.0624656,0.508989,0.667271,0.733252,0.347981,0.0648619,0.447757,0.471912,0.209203,0.921523,0.418555,0.80285,0.570782,0.107041,0.00869894,0.443994,0.806929,0.580555,0.141317,0.498706,0.840307,0.0362954,0.146858,0.598019,0.975934,0.0294536,0.2659,0.797986,0.671247,0.769811,0.608809,0.0995958,0.27837,0.650271,0.252528,0.325166,0.289431,0.199477,0.459188,0.889755,0.721079,0.70707,0.466889,0.984841,0.221575,0.641769,0.754337,0.357741,0.777686,0.278616,0.960034,0.341603,0.550516,0.660775,0.769003,0.189649,0.528936,0.108996,0.150344,0.683835,0.782976,0.0217101,0.74633,0.679925,0.563086,0.190934,0.307982,0.510297,0.237946,0.906031,0.66959,0.946102,0.647478,0.788965,0.518085,0.704276,0.595405,0.900303,0.965481,0.0443349,0.275466,0.8825,0.0157598,0.217389,0.393554,0.537165,0.417859,0.518577,0.0105165,0.205513,0.350036,0.0923668,0.192663,0.501279,0.0996513,0.807908,0.88875,0.365302,0.951297,0.592952,0.264678,0.865109,0.629435,0.382556,0.870997,0.246524,0.354423,0.637749,0.184765,0.12337,0.359819,0.000350237,0.653661,0.995423,0.182119,0.096885,0.945362,0.661438,0.943045,0.162488,0.565146,0.939367,0.254482,0.584254,0.0659066,0.297944,0.157992,0.16155,0.0236694,0.632595,0.277828,0.631928,0.93316,0.466443,0.655283,0.522705,0.629653,0.51191,0.0323961,0.358363,0.872511,0.39296,0.877775,0.178276,0.513272,0.309424,0.988341,0.755962,0.307189,0.191778,0.511615,0.32233,0.740816,0.674437,0.736631,0.713535,0.920158,0.848368,0.256455,0.913463,0.486082,0.551526,0.300557,0.0200776,0.72079,0.951099,0.464425,0.188722,0.869714,0.9249,0.111305,0.524021,0.0222815,0.48409,0.518099,0.0812154,0.218093,0.829409,0.614354,0.0279957,0.324911,0.93659,0.545991,0.0342425,0.0858552,0.0422331,0.398238,0.665339,0.860949,0.416713,0.21753,0.981831,0.695477,0.734998,0.395749,0.45738,0.596738,0.722965,0.18999,0.839909,0.472358,0.735545,0.309563,0.493645,0.845843,0.194847,0.285356,0.695569,0.348072,0.710735,0.632369,0.724714,0.0744085,0.772293,0.31681,0.540341,0.621721,0.657604,0.561298,0.481192,0.7209,0.890081,0.242957,0.136223,0.351301,0.841318,0.23277,0.150056,0.667763,0.280917,0.0459999,0.74605,0.348803,0.691472,0.542112,0.318396,0.473918,0.881547,0.550193,0.231022,0.836908,0.848807,0.335005,0.131424,0.172609,0.504071,0.0205384,0.0816309,0.131931,0.706833,0.602759,0.302982,0.126426,0.463329,0.27993,0.48137,0.373405,0.372145,0.502343,0.91738,0.197511,0.281244,0.529302,0.24901,0.585963,0.415058,0.295426,0.703725,0.970021,0.283811,0.0725458,0.866547,0.56511,0.375729,0.119401,0.509817,0.383015,0.117865,0.53444,0.240433,0.0496984,0.898195,0.858587,0.163703,0.994875,0.517097,0.213224,0.526875,0.195479,0.520856,0.907744,0.258661,0.997607,0.581355,0.985055,0.127159,0.803666,0.995928,0.960285,0.202369,0.505397,0.400336,0.0300645,0.0144146,0.521457,0.987027,0.749024,0.183665,0.31276,0.686499,0.393404,0.725388,0.9846,0.0363452,0.96408,0.581123,0.708343,0.998787,0.38234,0.421475,0.53825,0.440762,0.530747,0.104342,0.101085,0.290985,0.195019,0.212918,0.0794597,0.393086,0.488893,0.630271,0.784746,0.252821,0.234009,0.360523,0.449745,0.115131,0.298056,0.771317,0.197451,0.213179,0.326998,0.158419,0.529734,0.740756,0.929697,0.224889,0.0318702,0.153992,0.705955,0.241007,0.324115,0.422536,0.340192,0.456113,0.821031,0.825455,0.917291,0.110852,0.643871,0.936824,0.805286,0.746424,0.223903,0.00903177,0.169025,0.0222158,0.647351,0.0446312,0.562309,0.431806,0.583316,0.787085,0.874734,0.185497,0.853368,0.452931,0.631233,0.818004,0.531471,0.407335,0.430022,0.470699,0.628241,0.484785,0.984631,0.817057,0.0795426,0.725619,0.53272,0.0839295,0.281496,0.662898,0.369071,0.0914308,0.610336,0.267278,0.90408,0.434228,0.898417,0.773614,0.83016,0.693877,0.101348,0.657204,0.707851,0.109657,0.755644,0.355047,0.473308,0.175767,0.448593,0.127668,0.929622,0.980587,0.998985,0.9207,0.486959,0.169026,0.410119,0.68404,0.305955,0.0554452,0.816293,0.833408,0.283427,0.307745,0.0669193,0.221191,0.617219,0.861107,0.909454,0.284809,0.311969,0.474077,0.647156,0.208099,0.265897,0.248384,0.77902,0.898112,0.466335,0.951921,0.143637,0.449888,0.754032,0.475511,0.00318754,0.626325,0.177384,0.6555,0.195316,0.732377,0.214799,0.881753,0.426197,0.939627,0.638814,0.860677,0.063913,0.0438043,0.336724,0.0676183,0.299864,0.349562,0.612163,0.464439,0.813089,0.816215,0.132973,0.897998,0.432136,0.840843,0.322671,0.249248,0.723723,0.591558,0.675436,0.201559,0.867585,0.661895,0.302681,0.999824,0.388774,0.914159,0.50262,0.91352,0.288851,0.082046,0.176315,0.956035,0.3234,0.12567,0.100959,0.685516,0.532018,0.58845,0.535323,0.0605821,0.756248,0.773971,0.808111,0.21438,0.748918,0.37188,0.119338,0.320727,0.478247,0.657556,0.855153,0.275612,0.97738,0.307442,0.982647,0.302134,0.332967,0.376793,0.387434,0.356832,0.659088,0.211115,0.74632,0.679558,0.511657,0.457061,0.191657,0.70541,0.748018,0.617623,0.203691,0.107843,0.239259,0.295796,0.643097,0.833706,0.65799,0.486629,0.670742,0.690098,0.0874187,0.975318,0.433877,0.193467,0.339756,0.285797,0.495306,0.882326,0.294519,0.945143,0.248318,0.328477,0.119715,0.325499,0.616789,0.338359,0.194668,0.2049,0.3779,0.854731,0.559742,0.259197,0.442563,0.453619,0.580044,0.736301,0.049304,0.494326,0.28642,0.118187,0.642181,0.704485,0.755715,0.835979,0.182462,0.0519946,0.369364,0.605073,0.888096,0.887131,0.846044,0.89439,0.242256,0.487447,0.534511,0.865378,0.17689,0.741686,0.530328,0.672508,0.0586072,0.23445,0.809011,0.0598311,0.46124,0.724269,0.406001,0.0102343,0.581436,0.58711,0.298435,0.525804,0.890843,0.988313,0.997067,0.209058,0.934428,0.193711,0.538791,0.617585,0.807458,0.879654,0.850691,0.557612,0.976428,0.318511,0.719536,0.43481,0.752058,0.884543,0.617339,0.0343243,0.37728,0.45863,0.517477,0.87053,0.253514,0.512658,0.233847,0.622317,0.13309,0.703165,0.169242,0.491578,0.32325,0.716736,0.126379,0.224037,0.662148,0.311234,0.167218,0.335137,0.526914,0.45464,0.126052,0.798203,0.220468,0.611747,0.0150884,0.301605,0.712214,0.734875,0.844184,0.6092,0.681893,0.512899,0.667466,0.204714,0.0210389,0.92971,0.823577,0.264705,0.115988,0.435885,0.629056,0.60044,0.608472,0.363159,0.922395,0.685022,0.922577,0.178417,0.492687,0.567223,0.898569,0.909871,0.175875,0.932241,0.875142,0.464616,0.61081,0.539691,0.469487,0.112421,0.919172,0.714455,0.717589,0.781061,0.300827,0.0558265,0.450301,0.476993,0.891023,0.51045,0.645982,0.0778599,0.0761422,0.517515,0.856085,0.379548,0.904991,0.887451,0.834877,0.907136,0.276427,0.299099,0.819806,0.171289,0.544881,0.994057,0.972618,0.771376,0.603382,0.370592,0.0140702,0.318168,0.225351,0.375053,0.841617,0.512967,0.483108,0.0986067,0.865051,0.933971,0.80568,0.748151,0.0338733,0.309094,0.641253,0.700525,0.0596381,0.523111,0.356754,0.756478,0.538942,0.631232,0.941637,0.170475,0.255295,0.774488,0.936549,0.25374,0.588408,0.347625,0.191509,0.478746,0.0648786,0.497137,0.0442299,0.787036,0.375246,0.762586,0.255834,0.408107,0.645277,0.640182,0.00530022,0.449666,0.495986,0.50812,0.0156077,0.851169,0.211785,0.0892019,0.233362,0.103445,0.367349,0.1748,0.433524,0.0142961,0.829183,0.968321,0.592314,0.347848,0.18534,0.401821,0.502348,0.568386,0.962958,0.830265,0.0404216,0.29847,0.742439,0.847049,0.336964,0.990945,0.0716053,0.217199,0.849697,0.152721,0.634823,0.598732,0.561537,0.381082,0.264153,0.753317,0.880549,0.664323,0.724314,0.536002,0.746464,0.743278,0.0518689,0.204186,0.319755,0.23867,0.90481,0.932712,0.601975,0.980397,0.908526,0.384661,0.795993,0.00289154,0.0869235,0.914546,0.593132,0.553355,0.326199,0.00985187,0.598395,0.563289,0.035023,0.351711,0.214145,0.917684,0.822955,0.0702378,0.742633,0.504049,0.656991,0.0346169,0.862513,0.23938,0.997795,0.112209,0.531851,0.502041,0.52613,0.210031,0.623002,0.279785,0.903346,0.690775,0.672525,0.664133,0.55178,0.272031,0.130552,0.0417145,0.535856,0.139262,0.922806,0.885469,0.768475,0.474195,0.34552,0.350371,0.988467,0.18008,0.249378,0.316787,0.582669,0.719957,0.75446,0.107008,0.0148335,0.491413,0.210377,0.00232244,0.74614,0.447937,0.336287,0.122348,0.867628,0.417867,0.508796,0.961422,0.939879,0.510856,0.319675,0.80315,0.868803,0.596976,0.503982,0.242609,0.346756,0.268101,0.592236,0.832092,0.275294,0.941056,0.305302,0.710581,0.621494,0.297047,0.590434,0.294025,0.264427,0.0457037,0.097386,0.15506,0.740563,0.877534,0.224317,0.318762,0.225193,0.159025,0.484629,0.204545,0.0868041,0.688277,0.739282,0.762376,0.64973,0.755161,0.608673,0.837184,0.334369,0.841231,0.0345472,0.81365,0.321058,0.654822,0.89669,0.848179,0.538011,0.842304,0.807635,0.244112,|0.737368,0.199225,0.0135471,0.960411,0.570325,0.296475,0.260276,0.416513,0.946917,0.144194,0.325013,0.459687,0.623422,0.105439,0.45362,0.558453,0.814445,0.0772557,0.99805,0.30097,0.97408,0.759403,0.615009,0.95812,0.56526,0.30008,0.315387,0.76183,0.365596,0.906157,0.0746502,0.737694,0.270238,0.0997513,0.896185,0.696081,0.995561,0.781164,0.0069803,0.365648,0.932663,0.412003,0.907314,0.0734894,0.300133,0.120573,0.60664,0.991859,0.74969,0.0425583,0.54827,0.683299,0.717155,0.0636193,0.434951,0.983368,0.85241,0.587777,0.177634,0.42681,0.0970694,0.140609,0.339029,0.361583,0.47452,0.77333,0.985051,0.952799,0.467191,0.411556,0.817579,0.684044,0.424122,0.817823,0.418472,0.751135,0.690271,0.0207128,0.216782,0.00845063,0.571444,0.130723,0.0420535,0.0980943,0.262309,0.531517,0.42759,0.974516,0.315171,0.980502,0.0699623,0.550619,0.191355,0.188093,0.893498,0.776484,0.920428,0.782592,0.705371,0.775003,0.234003,0.867143,0.133244,0.36597,0.997073,0.376622,0.247078,0.298762,0.65072,0.939048,0.202918,0.576158,0.191334,0.0186309,0.312493,0.263529,0.0584185,0.156003,0.642328,0.581462,0.604265,0.821327,0.0897741,0.396633,0.941433,0.417545,0.814936,0.182779,0.301293,0.776542,0.427907,0.647472,0.281732,0.91792,0.159039,0.212026,0.884799,0.36062,0.0389332,0.192761,0.725352,0.317253,0.864913,0.251151,0.210715,0.935141,0.885125,0.17107,0.752543,0.0133811,0.406582,0.0790714,0.229772,0.267096,0.28028,0.598064,0.0542994,0.531131,0.14209,0.148299,0.441097,0.613062,0.677252,0.233241,0.254404,0.676394,0.0479824,0.534393,0.204032,0.212463,0.401711,0.838039,0.00459462,0.633246,0.942575,0.915377,0.718791,0.583033,0.0579301,0.728094,0.158735,0.652097,0.455872,0.759656,0.923537,0.275276,0.630331,0.977623,0.964243,0.56928,0.400942,0.0310137,0.270733,0.787718,0.133552,0.756812,0.348784,0.561412,0.967058,0.919897,0.890304,0.884164,0.513989,0.769379,0.581916,0.793465,0.461326,0.160328,0.571429,0.465584,0.855854,0.0163109,0.379535,0.930223,0.945465,0.265963,0.175128,0.261543,0.31104,0.609342,0.789904,0.218839,0.784389,0.0220955,0.091221,0.606081,0.133253,0.996874,0.599228,0.492006,0.87983,0.550115,0.691295,0.107826,0.0172234,0.546796,0.974833,0.297153,0.395504,0.141761,0.416843,0.85673,0.517461,0.879781,0.505841,0.353644,0.936836,0.554494,0.298905,0.951224,0.86361,0.301125,0.796039,0.432008,0.573291,0.226563,0.928752,0.0872937,0.770977,0.655333,0.152237,0.443871,0.5799,0.949924,0.566518,0.993188,0.980133,0.76286,0.00686449,0.547537,0.141685,0.181261,0.409085,0.486875,0.803283,0.0880064,0.526447,0.515916,0.439093,0.842163,0.335654,0.139771,0.928795,0.216541,0.52401,0.116345,0.620458,0.923162,0.871941,0.0237999,0.347739,0.348475,0.191388,0.672439,0.573673,0.505467,0.699186,0.446229,0.689691,0.830302,0.346333,0.921811,0.453458,0.485499,0.134564,0.316355,0.501683,0.841809,0.14081,0.53962,0.81598,0.103695,0.857453,0.961406,0.497042,0.478513,0.262255,0.540816,0.421609,0.914032,0.860772,0.984835,0.0544127,0.00756001,0.548073,0.656023,0.760368,0.0850364,0.633236,0.486722,0.194039,0.948576,0.0551356,0.493419,0.057759,0.316133,0.113508,0.862144,0.583895,0.628124,0.801596,0.381589,0.491422,0.799165,0.551467,0.491785,0.218003,0.239376,0.819906,0.884585,0.825588,0.773381,0.12512,0.424608,0.728875,0.859653,0.502839,0.744125,0.692691,0.825007,0.908174,0.95238,0.890564,0.0589939,0.0458545,0.462044,0.693658,0.314167,0.624518,0.696015,0.25356,0.0889896,0.874215,0.218164,0.550427,0.731489,0.888119,0.508026,0.866272,0.313697,0.447283,0.928154,0.567995,0.972257,0.596071,0.873906,0.946039,0.214894,0.868283,0.80494,0.17284,0.489331,0.230956,0.38736,0.570294,0.651781,0.00750166,0.0277128,0.441643,0.446742,0.803899,0.71197,0.606021,0.780709,0.759357,0.0991423,0.382424,0.113782,0.465472,0.392446,0.35827,0.69218,0.155832,0.350993,0.737759,0.140837,0.442484,0.551813,0.370887,0.726225,0.900351,0.0686288,0.628304,0.166387,0.22689,0.500779,0.975351,0.446035,0.263717,0.325156,0.712237,0.176009,0.903596,0.419032,0.989792,0.262188,0.879776,0.538829,0.91621,0.746684,0.00288755,0.486764,0.774174,0.555819,0.359775,0.685392,0.984019,0.913964,0.500979,0.784415,0.766363,0.491599,0.0246334,0.538733,0.0481694,0.41896,0.210674,0.543455,0.0537085,0.189165,0.541838,0.182692,0.717035,0.379566,0.107908,0.646314,0.838259,0.692573,0.942067,0.974226,0.502687,0.622011,0.84687,0.381226,0.593269,0.95335,0.245527,0.634733,0.160863,0.808002,0.562766,0.460179,0.260799,0.113203,0.20061,0.896063,0.793818,0.378537,0.645355,0.492228,0.115773,0.326179,0.756002,0.515248,0.567325,0.740971,0.583947,0.366209,0.450414,0.414797,0.149846,0.892016,0.156971,0.112064,0.3575,0.213517,0.854471,0.995728,0.208611,0.517826,0.782182,0.590279,0.594995,0.496521,0.0168333,0.181783,0.690798,0.36571,0.0571232,0.828074,0.163613,0.000619113,0.563648,0.714511,0.0598606,0.649604,0.981051,0.0789206,0.614478,0.33702,0.713831,0.974759,0.0352074,0.211049,0.251611,0.94123,0.920323,0.564825,0.983663,0.542832,0.624044,0.100116,0.277665,0.33452,0.086399,0.749305,0.347668,0.62008,0.697943,0.704086,0.55644,0.244832,0.771849,0.0274556,0.828203,0.646907,0.525512,0.283906,0.84026,0.565859,0.94925,0.339842,0.306104,0.573489,0.992298,0.579179,0.393549,0.849269,0.705938,0.117414,0.036244,0.802326,0.868619,0.686916,0.311979,0.453411,0.121711,0.573417,0.0640435,0.618459,0.0290831,0.390549,0.347412,0.590034,0.0578591,0.601862,0.588209,0.0205687,0.513336,0.882365,0.850748,0.674165,0.0486447,0.659892,0.411024,0.0559376,0.827615,0.579822,0.0979788,0.836596,0.227746,0.205808,0.74699,0.0899901,0.298895,0.767951,0.306333,0.110153,0.629661,0.433145,0.784587,0.42743,0.0392163,0.709953,0.779229,0.288254,0.198844,0.853947,0.531703,0.288944,0.463529,0.00248241,0.410084,0.728094,0.805786,0.676816,0.376996,0.919317,0.847385,0.860108,0.139044,0.702381,0.226015,0.902272,0.430843,0.241634,0.856846,0.609543,0.951399,0.583407,0.990635,0.196307,0.514875,0.0637568,0.661086,0.143372,0.861791,0.642782,0.0305225,0.273519,0.245866,0.41187,0.818992,0.972046,0.0480249,0.542886,0.727397,0.205791,0.727001,0.0863285,0.578246,0.474057,0.13853,0.0270182,0.342143,0.0859964,0.464986,0.867445,0.109606,0.109696,0.885806,0.353843,0.796866,0.490744,0.143377,0.0917127,0.637029,0.315066,0.341764,0.843008,0.982648,0.148554,0.0271233,0.994265,0.928602,0.779622,0.165102,0.0627751,0.586055,0.477143,0.474485,0.61129,0.764673,0.0551004,0.963552,0.42366,0.0583243,0.875139,0.635214,0.268699,0.0686738,0.543906,0.440569,0.559478,0.188846,0.172997,0.595981,0.238344,0.310576,0.780487,0.375414,0.0945413,0.86539,0.517884,0.115308,0.0523519,0.971635,0.396903,0.203086,0.568924,0.146784,0.770033,0.0996953,0.511057,0.877586,0.115983,0.772762,0.0703563,0.792236,0.148365,0.460337,0.383649,0.860142,0.416306,0.970083,0.00854462,0.909554,0.475395,0.694583,0.416629,0.397791,0.969811,0.975707,0.265128,0.912277,0.639414,0.331065,0.805188,0.0965133,0.0596611,0.0680215,0.618085,0.384595,0.659307,0.469625,0.199725,0.99359,0.504062,0.340947,0.30846,0.949519,0.341657,0.645791,0.473426,0.276348,0.748446,0.381069,0.0736769,0.759109,0.0537023,0.612777,0.70478,0.804404,0.453948,0.121858,0.475509,0.213145,0.842565,0.610938,0.794501,0.744436,0.134044,0.690685,0.62864,0.0278572,0.788368,0.466162,0.909987,0.124636,0.47113,0.52181,0.87889,0.117539,0.269866,0.622051,0.234879,0.44396,0.664939,0.166625,0.277312,0.800368,0.209288,0.827139,0.0568798,0.682711,0.886341,0.139486,0.644918,0.365178,0.332562,0.0507231,0.711112,0.802412,0.0738119,0.651525,0.488983,0.227099,0.749406,0.333701,0.766517,0.114699,0.401495,0.382657,0.574327,0.316446,0.795191,0.67963,0.354146,0.440669,0.352283,0.208252,0.956379,0.253922,0.176332,0.145975,0.39108,0.641131,0.0199109,0.183264,0.933611,0.49879,0.582658,0.672445,0.869175,0.0692039,0.115697,0.0838068,0.131372,0.267026,0.939376,0.175314,0.732013,0.196977,0.7346,0.244325,0.906028,0.13853,0.342345,0.555625,0.730698,0.25492,0.326414,0.271489,0.831495,0.819773,0.942664,0.690178,0.00623912,0.781098,0.417081,0.656308,0.919806,0.910846,0.197449,0.497859,0.46868,0.526996,0.0260352,0.867325,0.0017674,0.979009,0.157103,0.0682049,0.629841,0.936107,0.00468343,0.979279,0.998053,0.74352,0.897355,0.534099,0.0926253,0.011826,0.71281,0.975742,0.86479,0.255297,0.890991,0.241118,0.816408,0.145204,0.27105,0.947053,0.824571,0.320342,0.761772,0.167404,0.951923,0.96342,0.596789,0.783636,0.573964,0.837874,0.547646,0.178033,0.0787507,0.187535,0.598301,0.390073,0.540091,0.864913,0.231102,0.570394,0.873329,0.59644,0.221815,0.685744,0.307438,0.316379,0.740848,0.435508,0.0772489,0.535699,0.882751,0.57043,0.0312531,0.281131,0.609145,0.662645,0.701866,0.168964,0.629366,0.0534537,0.419506,0.855143,0.604635,0.16487,0.184206,0.648363,0.145232,0.941714,0.507702,0.791137,0.85475,0.128149,0.174408,0.747928,0.311938,0.91972,0.716819,0.3721,0.985583,0.907641,0.197392,0.97313,0.862066,0.761629,0.64542,0.91242,0.192031,0.00476223,0.639578,0.518288,0.657209,0.567543,0.139969,0.0625366,0.635714,0.199227,0.43952,0.884413,0.966583,0.868276,0.540646,0.752951,0.450974,0.671506,0.186444,0.560204,0.1081,0.114956,0.763914,0.367338,0.25197,0.497031,0.0265331,0.348796,0.325278,0.149646,0.0870678,|0.998233,0.449017,0.980568,0.273146,0.288527,0.110803,0.3785,0.593658,0.152423,0.803591,0.879159,0.111518,0.470679,0.00823557,0.966716,0.86529,0.566455,0.158936,0.197067,0.308873,0.656995,0.818658,0.583969,0.27496,0.8175,0.0488973,0.110508,0.429861,0.375882,0.521828,0.358865,0.841295,0.402505,0.0512299,0.942515,0.176085,0.668829,0.434834,0.334845,0.851231,0.115404,0.483403,0.12096,0.882919,0.57128,0.189014,0.856144,0.25941,0.0373068,0.32822,0.955836,0.316251,0.796693,0.0292106,0.252962,0.342168,0.0856771,0.510053,0.692349,0.308498,0.402883,0.323229,0.0751923,0.116182,0.445481,0.151717,0.970203,0.58259,0.914853,0.358496,0.917793,0.309824,0.574751,0.0483872,0.729169,0.675309,0.849523,0.15577,0.932488,0.0450988,0.875183,0.596021,0.951867,0.498538,0.728806,0.332969,0.625473,0.253941,0.282508,0.393591,0.891809,0.886311,0.764926,0.272651,0.970908,0.704416,0.354528,0.821647,0.293727,0.165003,0.159771,0.232703,0.111164,0.102705,0.439731,0.304084,0.179342,0.137315,0.267423,0.529497,0.184865,0.203301,0.973664,0.00130719,0.250785,0.360305,0.858774,0.504561,0.772205,0.00167704,0.939564,0.0529066,0.991243,0.872199,0.224006,0.215034,0.180613,0.69765,0.234631,0.892813,0.825864,0.919915,0.901302,0.496759,0.52777,0.324073,0.561189,0.540031,0.368791,0.974975,0.823778,0.227661,0.10504,0.446598,0.924271,0.837041,0.0972164,0.781837,0.855892,0.283289,0.202939,0.449341,0.767816,0.882361,0.865896,0.04834,0.0602405,0.409578,0.901084,0.182771,0.392339,0.677701,0.159567,0.325483,0.626668,0.284747,0.498208,0.131308,0.445797,0.878794,0.784493,0.849205,0.942034,0.0413809,0.29263,0.842942,0.791218,0.605475,0.686058,0.19346,0.872571,0.26526,0.174131,0.164307,0.374773,0.0710128,0.58512,0.983589,0.703721,0.300447,0.639326,0.332194,0.226916,0.148794,0.976912,0.471474,0.314697,0.542055,0.833934,0.483745,0.174007,0.703865,0.560209,0.30466,0.167458,0.834065,0.57609,0.10882,0.929864,0.19734,0.124521,0.254559,0.281546,0.0470525,0.204745,0.958867,0.516093,0.109549,0.89962,0.818357,0.427284,0.948042,0.566648,0.355179,0.450699,0.0782317,0.191191,0.221459,0.493197,0.264375,0.962708,0.545289,0.974615,0.235141,0.0436306,0.204286,0.415707,0.71244,0.0628256,0.763715,0.971922,0.801383,0.319077,0.90587,0.612687,0.939783,0.244375,0.380672,0.470399,0.936198,0.913092,0.257366,0.0951213,0.81118,0.561038,0.648432,0.318223,0.883584,0.719927,0.795423,0.531642,0.344876,0.716766,0.674354,0.745356,0.24591,0.676408,0.420797,0.0848511,0.638253,0.258624,0.517492,0.715288,0.426091,0.380168,0.0625746,0.331189,0.985564,0.110496,0.445461,0.670986,0.175796,0.943292,0.0489953,0.672231,0.740374,0.58229,0.18751,0.593956,0.611139,0.785715,0.766961,0.125179,0.412112,0.460661,0.135015,0.394329,0.702884,0.466787,0.979868,0.564628,0.74926,0.457347,0.346686,0.712663,0.420817,0.877226,0.981564,0.592064,0.332174,0.317187,0.835248,0.761182,0.195407,0.166999,0.148927,0.473782,0.542956,0.686993,0.795038,0.512118,0.8561,0.223195,0.239926,0.150812,0.13083,0.822218,0.932167,0.644035,0.520216,0.278102,0.16648,0.915986,0.921262,0.844358,0.887262,0.151741,0.138668,0.416166,0.606102,0.592068,0.532197,0.572484,0.360852,0.3793,0.286473,0.934107,0.823974,0.0551585,0.710499,0.553527,0.291559,0.0180758,0.139398,0.975427,0.809773,0.907106,0.183156,0.800997,0.620337,0.538375,0.365687,0.875281,0.563737,0.433029,0.171206,0.86974,0.114167,0.814126,0.80674,0.429084,0.398351,0.613247,0.909344,0.704209,0.281705,0.509059,0.617562,0.897456,0.145052,0.504364,0.534332,0.725154,0.183522,0.561774,0.258475,0.0890393,0.102555,0.50055,0.487134,0.994631,0.38043,0.85004,0.413137,0.882679,0.516482,0.200286,0.463384,0.769978,0.857112,0.781827,0.178614,0.665242,0.753868,0.535232,0.985537,0.956,0.809038,0.748815,0.645144,0.895443,0.41248,0.921816,0.481529,0.17705,0.0576625,0.800143,0.034945,0.75319,0.262518,0.907849,0.914376,0.106596,0.558165,0.154717,0.697319,0.415415,0.302473,0.797694,0.697838,0.592351,0.383253,0.725735,0.599781,0.407399,0.505862,0.621098,0.0210728,0.565484,0.246251,0.0936536,0.793252,0.0225806,0.106708,0.396815,0.208277,0.22521,0.0903111,0.617542,0.114795,0.0890445,0.976166,0.943032,0.861215,0.339603,0.41711,0.429692,0.912034,0.013465,0.483585,0.982246,0.0367168,0.0477446,0.623444,0.504717,0.706414,0.901196,0.686136,0.548039,0.780385,0.498491,0.756819,0.0169871,0.0676268,0.927993,0.784885,0.651472,0.717831,0.636126,0.58091,0.941149,0.883271,0.667967,0.0855609,0.607408,0.758303,0.268234,0.790852,0.247966,0.728788,0.632997,0.847243,0.214203,0.843885,0.0604903,0.22581,0.937884,0.399253,0.75203,0.807251,0.0380159,0.726578,0.510077,0.639336,0.507228,0.298156,0.182439,0.626504,0.503295,0.019477,0.782179,0.821118,0.105123,0.0617803,0.905293,0.0283214,0.590195,0.724808,0.746441,0.518474,0.563911,0.65791,0.898645,0.0430887,0.399391,0.808225,0.841231,0.669124,0.650155,0.90452,0.209381,0.35566,0.690936,0.747371,0.275469,0.910165,0.68524,0.223993,0.49761,0.45853,0.788417,0.725707,0.688631,0.583933,0.685383,0.676051,0.769531,0.794893,0.910162,0.0965689,0.268905,0.675678,0.39772,0.659564,0.895592,0.320097,0.225443,0.256932,0.620113,0.779509,0.48973,0.265958,0.0127438,0.519407,0.86808,0.339537,0.524133,0.353348,0.410964,0.813581,0.402831,0.747433,0.607486,0.815975,0.368598,0.908975,0.387905,0.923865,0.412809,0.592384,0.877315,0.779167,0.00304127,0.256748,0.383404,0.293707,0.73904,0.185152,0.822456,0.27427,0.237945,0.311053,0.776529,0.456348,0.0274311,0.318291,0.259889,0.125194,0.858653,0.675455,0.0853796,0.626121,0.299927,0.0026508,0.69383,0.253289,0.865125,0.762034,0.580476,0.837233,0.88364,0.24398,0.105006,0.673546,0.594507,0.836129,0.528318,0.843034,0.090835,0.01114,0.909108,0.136918,0.858376,0.680808,0.427548,0.0310346,0.43381,0.138763,0.994491,0.996405,0.765953,0.556755,0.88533,0.432045,0.596242,0.177423,0.318064,0.815022,0.818361,0.552293,0.951768,0.862747,0.16982,0.278114,0.860827,0.315281,0.646443,0.267925,0.691024,0.490865,0.0304544,0.219226,0.494842,0.653997,0.592657,0.900165,0.95321,0.482792,0.420956,0.878627,0.511633,0.495644,0.508997,0.0588146,0.871109,0.250743,0.112283,0.101092,0.955131,0.918643,0.852045,0.255177,0.393177,0.377147,0.608568,0.497937,0.832035,0.125766,0.3408,0.242405,0.481375,0.475523,0.316195,0.240577,0.36672,0.827799,0.561446,0.483073,0.00180364,0.497637,0.762922,0.807605,0.632709,0.0415704,0.872855,0.140978,0.413306,0.275785,0.424094,0.201352,0.868754,0.303571,0.40261,0.953577,0.753793,0.0866109,0.139171,0.71075,0.00544441,0.577718,0.691868,0.507894,0.68714,0.319202,0.703474,0.118046,0.469232,0.0839656,0.435585,0.177246,0.879896,0.887594,0.254821,0.890997,0.0130397,0.912062,0.855031,0.876526,0.309548,0.727745,0.018277,0.225584,0.813818,0.00324416,0.836293,0.169054,0.0882654,0.28732,0.136477,0.415597,0.857183,0.335025,0.627028,0.585151,0.00742406,0.358295,0.540823,0.174383,0.0195895,0.374063,0.524901,0.0950712,0.863879,0.456921,0.812005,0.905324,0.82587,0.807459,0.639161,0.0465829,0.829241,0.211343,0.356043,0.916418,0.153515,0.992428,0.119341,0.91641,0.920952,0.0627243,0.904805,0.445566,0.172996,0.109221,0.492538,0.899981,0.829991,0.950458,0.728956,0.544212,0.0464733,0.764036,0.484449,0.272901,0.378738,0.800546,0.828825,0.674446,0.829548,0.821935,0.423522,0.477881,0.567451,0.76069,0.519374,0.182768,0.202429,0.45399,0.831719,0.923623,0.890796,0.431272,0.843226,0.112432,0.0650749,0.161667,0.718151,0.841635,0.203995,0.220576,0.354326,0.100257,0.350534,0.591755,0.666595,0.838989,0.370402,0.911123,0.64602,0.5353,0.202848,0.713124,0.719619,0.99932,0.751498,0.647098,0.634401,0.515159,0.435858,0.335479,0.0558717,0.482551,0.221466,0.692453,0.369403,0.551654,0.229359,0.626223,0.746011,0.137999,0.85844,0.179838,0.505125,0.593477,0.271561,0.325343,0.898632,0.306435,0.998173,0.209156,0.979996,0.502537,0.637328,0.842693,0.733693,0.983705,0.116533,0.139291,0.570404,0.0910352,0.327723,0.82557,0.105851,0.43105,0.631154,0.96443,0.159845,0.795526,0.0844743,0.155484,0.359217,0.338381,0.741413,0.059577,0.675144,0.0198415,0.891681,0.471495,0.870282,0.412594,0.970122,0.615758,0.920564,0.599529,0.58165,0.601082,0.763336,0.965627,0.325595,0.901478,0.483597,0.641659,0.495363,0.794992,0.390876,0.352803,0.0771579,0.461106,0.500936,0.72364,0.451325,0.333424,0.570493,0.629239,0.0288499,0.103067,0.0415052,0.880614,0.635825,0.170061,0.0356429,0.606933,0.182695,0.0698038,0.375536,0.314088,0.821594,0.0549618,0.883644,0.966811,0.381915,0.990031,0.0486993,0.362704,0.492921,0.0656646,0.756038,0.260825,0.794663,0.464926,0.708046,0.116408,0.304929,0.394734,0.557666,0.824777,0.686334,0.670467,0.643245,0.984951,0.820588,0.0189037,0.385419,0.738367,0.369456,0.158302,0.783606,0.928374,0.871508,0.257946,0.289348,0.81441,0.245046,0.379624,0.889099,0.0409491,0.967563,0.530355,0.793116,0.13836,0.89351,0.00139433,0.629122,0.401857,0.482011,0.584076,0.892038,0.941235,0.524329,0.155055,0.304662,0.384088,0.683018,0.110129,0.128149,0.00991994,0.0171608,0.330503,0.589645,0.718908,0.315072,0.977174,0.732801,0.225117,0.0311606,0.532027,0.0110201,0.840568,0.524862,0.739388,0.736689,0.0156825,0.765882,0.437602,0.905297,0.244315,0.466321,0.380077,0.835169,0.544045,|0.692197,0.462157,0.00789315,0.259635,0.471671,0.0832898,0.62644,0.921897,0.471602,0.163644,0.482015,0.787066,0.115226,0.0910117,0.75241,0.579437,0.599683,0.410556,0.399696,0.143893,0.0471265,0.790128,0.307677,0.812907,0.575448,0.474531,0.0438269,0.986443,0.990921,0.915264,0.898296,0.158101,0.523388,0.631475,0.672804,0.0576839,0.10232,0.0624779,0.907175,0.748932,0.161776,0.304777,0.872966,0.725375,0.368395,0.15002,0.467931,0.367277,0.317731,0.797408,0.0231982,0.115801,0.761214,0.284848,0.0385541,0.133424,0.00115913,0.331613,0.134512,0.698771,0.0857692,0.139881,0.805624,0.861809,0.427654,0.943895,0.191757,0.925866,0.0739653,0.11778,0.106112,0.901493,0.393551,0.0635216,0.232134,0.606888,0.169902,0.431595,0.856254,0.423427,0.0779019,0.50681,0.874765,0.911694,0.716312,0.783941,0.423094,0.0918898,0.860921,0.947027,0.950839,0.187919,0.712203,0.518489,0.0364991,0.24777,0.729938,0.081722,0.584016,0.500677,0.417162,0.357056,0.539602,0.476024,0.287965,0.77115,0.59931,0.634383,0.702204,0.620876,0.976251,0.281567,0.155915,0.248321,0.175388,0.870223,0.0522642,0.222955,0.863612,0.827864,0.526464,0.899821,0.344726,0.886253,0.20143,0.978754,0.0187883,0.828095,0.212586,0.337057,0.69778,0.320098,0.73997,0.459473,0.836903,0.556462,0.206012,0.238818,0.957768,0.819076,0.781553,0.997403,0.467331,0.0404899,0.221354,0.286135,0.974088,0.634168,0.291615,0.408662,0.211,0.539047,0.0615351,0.767787,0.902392,0.774515,0.588217,0.367505,0.97059,0.269944,0.563988,0.491841,0.777609,0.334336,0.270331,0.510769,0.403637,0.618656,0.897272,0.459212,0.973611,0.0991507,0.310567,0.584987,0.833845,0.357831,0.64921,0.0296631,0.422947,0.629776,0.983972,0.523154,0.66299,0.954823,0.0684639,0.49712,0.688845,0.252094,0.805404,0.804477,0.468859,0.329937,0.0642018,0.138313,0.386313,0.970241,0.351066,0.182027,0.203996,0.054193,0.201058,0.00934649,0.160884,0.0230145,0.519515,0.198623,0.60332,0.672902,0.227271,0.474941,0.839429,0.537299,0.366776,0.193338,0.509311,0.73028,0.337487,0.606714,0.134712,0.229192,0.209292,0.951873,0.334758,0.428962,0.311583,0.711186,0.986171,0.160793,0.587873,0.467324,0.799873,0.637299,0.319332,0.654467,0.237582,0.889792,0.737343,0.522277,0.713181,0.95819,0.591047,0.726414,0.573493,0.400788,0.11099,0.0882739,0.900588,0.805902,0.441492,0.83431,0.986907,0.443732,0.819966,0.486949,0.428642,0.469585,0.706687,0.00621712,0.745864,0.249834,0.877381,0.304674,0.86688,0.139024,0.488168,0.724132,0.496906,0.230131,0.554259,0.546239,0.584092,0.590591,0.213753,0.428096,0.0953448,0.570532,0.454218,0.275293,0.0620578,0.550161,0.854143,0.67015,0.940011,0.812667,0.206961,0.842423,0.463232,0.840722,0.0779809,0.259417,0.291509,0.025521,0.411655,0.133934,0.944657,0.466511,0.479248,0.971609,0.802786,0.669864,0.358665,0.760749,0.597945,0.726502,0.841554,0.324395,0.558404,0.433809,0.175306,0.600676,0.300786,0.707858,0.767532,0.717166,0.148788,0.262887,0.946163,0.540825,0.450458,0.47247,0.00555569,0.618616,0.384383,0.639288,0.756717,0.585417,0.407871,0.980311,0.353292,0.417682,0.439502,0.992169,0.121535,0.510703,0.690594,0.558985,0.789271,0.527335,0.475203,0.107479,0.621309,0.763982,0.31826,0.360186,0.550409,0.650237,0.995542,0.222034,0.366852,0.693952,0.464089,0.501728,0.0750265,0.446469,0.0512989,0.284902,0.09534,0.930274,0.455501,0.609982,0.986423,0.0837771,0.0271416,0.352144,0.0329309,0.87689,0.68853,0.368618,0.905433,0.786042,0.240215,0.566376,0.495371,0.460041,0.679351,0.750514,0.971705,0.358969,0.294183,0.466953,0.878357,0.837341,0.827348,0.830859,0.0901076,0.739589,0.466058,0.700859,0.294316,0.0646347,0.061183,0.408994,0.529264,0.634289,0.775459,0.0153476,0.838513,0.735613,0.18902,0.476604,0.885039,0.0769207,0.593009,0.600026,0.462354,0.630083,0.32822,0.695024,0.293997,0.583605,0.156081,0.675086,0.0246295,0.498301,0.376749,0.992293,0.627849,0.493644,0.0108058,0.58478,0.562303,0.72583,0.103744,0.117144,0.973389,0.263403,0.312752,0.379714,0.237617,0.810475,0.534214,0.17432,0.0260631,0.301768,0.719368,0.436258,0.526364,0.325404,0.340275,0.729836,0.910615,0.908239,0.863128,0.194902,0.0282721,0.716951,0.555906,0.83289,0.857637,0.170905,0.622206,0.576167,0.912933,0.0783441,0.916592,0.794108,0.0713468,0.203025,0.968934,0.724892,0.989779,0.952584,0.276677,0.267474,0.449456,0.669099,0.208096,0.124096,0.0342971,0.825534,0.0952858,0.728674,0.95102,0.626294,0.387804,0.293127,0.652489,0.528575,0.702505,0.448719,0.630688,0.883624,0.639491,0.457221,0.654754,0.31419,0.842681,0.0882852,0.693491,0.121996,0.893544,0.306213,0.845307,0.508989,0.940891,0.548617,0.667619,0.302407,0.777003,0.0903496,0.510262,0.0817258,0.277228,0.0907544,0.712117,0.349212,0.393608,0.858088,0.963526,0.163537,0.6524,0.515679,0.842803,0.483499,0.58878,0.961875,0.524644,0.848492,0.853468,0.762324,0.582575,0.838835,0.370007,0.52278,0.65255,0.192215,0.921132,0.651271,0.551961,0.83944,0.702766,0.541349,0.0920293,0.480048,0.252909,0.111216,0.658994,0.195036,0.160726,0.861885,0.87291,0.757792,0.332495,0.471231,0.402041,0.194901,0.395382,0.2347,0.30658,0.144798,0.476809,0.662194,0.397777,0.324621,0.0223377,0.895221,0.606502,0.119699,0.711688,0.508468,0.256076,0.170004,0.509148,0.635842,0.408576,0.318214,0.0997652,0.062456,0.876603,0.720074,0.314033,0.428951,0.528636,0.325642,0.265439,0.121958,0.274082,0.945543,0.637695,0.750624,0.553072,0.352131,0.759204,0.365277,0.139015,0.957133,0.32054,0.859167,0.611598,0.026727,0.577092,0.565125,0.957092,0.198663,0.0612621,0.527498,0.375419,0.432006,0.728809,0.27238,0.219812,0.437312,0.554617,0.349428,0.989284,0.386068,0.519995,0.190292,0.589291,0.658353,0.718101,0.63196,0.880916,0.936816,0.967031,0.797855,0.789415,0.483558,0.833149,0.983864,0.939295,0.724785,0.42789,0.820626,0.48664,0.202943,0.42252,0.307446,0.973157,0.425668,0.549794,0.840016,0.0265557,0.736438,0.154102,0.654949,0.154976,0.199869,0.549358,0.8699,0.325518,0.651036,0.149767,0.996623,0.592135,0.00648463,0.921082,0.215727,0.969408,0.0296788,0.352488,0.635866,0.0882812,0.300551,0.0200679,0.278824,0.524892,0.00133187,0.859297,0.404437,0.323624,0.852929,0.956464,0.332578,0.736528,0.0307581,0.218408,0.307135,0.536414,0.770328,0.248193,0.755312,0.629109,0.7981,0.950607,0.487303,0.890032,0.475903,0.74619,0.386501,0.66934,0.344545,0.0557719,0.0933837,0.435874,0.855246,0.653607,0.0984328,0.0652214,0.152126,0.633608,0.547215,0.809795,0.886694,0.697271,0.905657,0.600243,0.358203,0.920779,0.190405,0.680008,0.617818,0.577923,0.36629,0.629886,0.523351,0.420687,0.980081,0.7058,0.276268,0.0223101,0.421599,0.792178,0.947601,0.197318,0.693097,0.331227,0.395773,0.345458,0.947806,0.438769,0.213303,0.612444,0.405258,0.331778,0.502289,0.311786,0.55149,0.0632504,0.147924,0.250973,0.308716,0.011288,0.550166,0.675771,0.321161,0.743347,0.65051,0.468216,0.0792023,0.265549,0.924936,0.252292,0.653137,0.73049,0.971201,0.130046,0.77974,0.275244,0.114965,0.449897,0.414289,0.174128,0.216047,0.0569322,0.18835,0.630079,0.0796444,0.867003,0.205407,0.926974,0.0968285,0.686694,0.893986,0.905089,0.554081,0.352252,0.226984,0.60937,0.426021,0.722206,0.336567,0.765138,0.738687,0.0805864,0.179821,0.0410969,0.699585,0.207299,0.648041,0.122712,0.0282443,0.844671,0.674604,0.450509,0.0128418,0.704843,0.562476,0.458937,0.981302,0.379843,0.430281,0.112281,0.0100199,0.639107,0.489362,0.931884,0.40793,0.278283,0.871222,0.498235,0.8078,0.907169,0.131766,0.505906,0.870918,0.572637,0.556055,0.25427,0.180243,0.0216148,0.795767,0.445677,0.792652,0.855913,0.70762,0.746212,0.870672,0.760453,0.580177,0.291607,0.352677,0.61727,0.378517,0.176389,0.419341,0.863845,0.220956,0.637901,0.0945424,0.122392,0.468139,0.454461,0.0633774,0.302269,0.0766755,0.681511,0.0441001,0.0525719,0.456618,0.852018,0.806208,0.908688,0.366419,0.599583,0.62846,0.821148,0.874354,0.475616,0.290111,0.953755,0.339112,0.848966,0.639883,0.892894,0.340945,0.41556,0.924215,0.953341,0.571126,0.815384,0.537387,0.115454,0.576479,0.766466,0.146241,0.916376,0.30198,0.308669,0.353248,0.857898,0.641199,0.289604,0.0492705,0.387434,0.483777,0.256086,0.800345,0.920342,0.786272,0.498102,0.720368,0.739297,0.376146,0.538303,0.857607,0.469771,0.62445,0.466984,0.832178,0.979329,0.549996,0.521722,0.703995,0.20901,0.0608175,0.650519,0.504918,0.480142,0.81703,0.455691,0.244416,0.995915,0.800185,0.749539,0.103195,0.443465,0.140831,0.433992,0.713751,0.423337,0.0592944,0.815946,0.420153,0.491089,0.507133,0.599571,0.618018,0.241887,0.814349,0.329013,0.267155,0.688818,0.418789,0.547386,0.220484,0.28251,0.531927,0.405061,0.49648,0.0590055,0.0428119,0.794553,0.950183,0.0685545,0.923201,0.059525,0.0922712,0.414095,0.888851,0.523421,0.308984,0.640241,0.625212,0.986555,0.757758,0.237399,0.271834,0.190609,0.913072,0.602742,0.130654,0.525553,0.815841,0.752132,0.00531483,0.856402,0.0427572,0.176448,0.93669,0.998326,0.119463,0.37593,0.187834,0.693324,0.885574,0.594131,0.208698,0.210388,0.214726,0.10496,0.834921,0.693369,0.784996,0.778973,0.0533355,0.155467,0.901891,0.966008,0.984666,0.301358,0.490284,0.606348,0.337656,0.674346,0.184085,0.180273,0.741459,0.741048,0.937643,0.690646,0.107412,0.471782,0.874672,0.794474,0.707586,0.556678,0.127496,0.396755,0.711697,|0.719075,0.459807,0.286148,0.861834,0.252513,0.68943,0.498167,0.546353,0.0940657,0.169517,0.364206,0.155549,0.704944,0.632137,0.642743,0.990722,0.208584,0.645841,0.864709,0.676094,0.108087,0.600655,0.47602,0.984321,0.707129,0.468144,0.180761,0.376865,0.309352,0.256169,0.240211,0.518713,0.368782,0.213767,0.330555,0.39427,0.746989,0.316461,0.331324,0.230299,0.665338,0.892235,0.771345,0.462961,0.248896,0.777043,0.997438,0.449385,0.926095,0.084913,0.916414,0.925222,0.0445161,0.320291,0.940885,0.699643,0.926116,0.187196,0.905835,0.0439191,0.882001,0.539626,0.504463,0.261949,0.061986,0.719281,0.300904,0.74542,0.501497,0.986715,0.515498,0.209665,0.952569,0.396744,0.318683,0.99332,0.334806,0.424376,0.995658,0.486125,0.217417,0.356111,0.805574,0.903371,0.864567,0.402239,0.198951,0.870986,0.037937,0.0663159,0.0170526,0.767675,0.725602,0.678997,0.608167,0.1869,0.651119,0.145568,0.598839,0.0443885,0.452232,0.891155,0.0683352,0.338768,0.852445,0.0775385,0.704174,0.0722362,0.446011,0.580386,0.75893,0.0721344,0.616769,0.218447,0.909933,0.387172,0.531581,0.573343,0.7001,0.344691,0.263959,0.846948,0.170025,0.221688,0.722442,0.412754,0.892966,0.2009,0.291682,0.8255,0.232911,0.374816,0.478188,0.611326,0.749593,0.90913,0.856861,0.563343,0.646575,0.801596,0.812479,0.217994,0.272911,0.0922994,0.782426,0.531792,0.614424,0.762283,0.890632,0.228262,0.303913,0.151268,0.601376,0.232675,0.0577344,0.726197,0.596273,0.592548,0.491161,0.944743,0.264514,0.0919831,0.821923,0.816577,0.814828,0.45907,0.214371,0.791262,0.318674,0.34311,0.634999,0.488478,0.74601,0.263474,0.719348,0.24314,0.8432,0.0841039,0.35256,0.0498381,0.15933,0.508766,0.690702,0.783292,0.755611,0.365517,0.166666,0.00152642,0.219285,0.972986,0.777801,0.97395,0.121901,0.717622,0.478956,0.621782,0.252182,0.240694,0.815463,0.59202,0.659443,0.0275948,0.680832,0.397984,0.983881,0.613298,0.361132,0.972374,0.245216,0.193694,0.304033,0.11751,0.0694541,0.952466,0.827766,0.0561938,0.144437,0.547156,0.575982,0.206792,0.883467,0.540681,0.516307,0.784626,0.939105,0.11091,0.419864,0.708155,0.394674,0.775991,0.907719,0.401805,0.133857,0.388819,0.47458,0.867425,0.669029,0.293676,0.891015,0.666717,0.704836,0.904699,0.95589,0.821224,0.63102,0.692595,0.793876,0.0707955,0.114377,0.166181,0.389133,0.370135,0.189004,0.698695,0.351875,0.782229,0.540545,0.139352,0.24203,0.645533,0.246425,0.968017,0.750744,0.668602,0.672143,0.474419,0.618439,0.24551,0.200791,0.464293,0.307804,0.890496,0.867682,0.0600039,0.692197,0.662796,0.0821414,0.428985,0.328171,0.217936,0.655678,0.94169,0.602652,0.812694,0.639128,0.341954,0.555154,0.761115,0.756273,0.650398,0.678774,0.00241035,0.948182,0.820433,0.25569,0.770888,0.810268,0.722174,0.303793,0.584832,0.402838,0.953313,0.783851,0.97542,0.00994545,0.967503,0.027869,0.52807,0.94294,0.469827,0.0753071,0.0694792,0.55586,0.782877,0.399675,0.172516,0.924595,0.756788,0.535224,0.130773,0.765655,0.865555,0.859886,0.478858,0.158963,0.218732,0.492577,0.186194,0.943958,0.306147,0.857004,0.696547,0.745955,0.562665,0.895319,0.328336,0.743592,0.487365,0.775231,0.109176,0.178315,0.665522,0.10348,0.812524,0.777061,0.579475,0.884869,0.898786,0.513843,0.427325,0.456862,0.478713,0.949638,0.478085,0.252852,0.986894,0.803396,0.725857,0.94657,0.401252,0.416152,0.256342,0.740383,0.774633,0.976061,0.276058,0.161613,0.347095,0.575558,0.941883,0.466169,0.420564,0.800632,0.459618,0.755721,0.390535,0.663442,0.881933,0.598832,0.215763,0.485551,0.396295,0.576267,0.471053,0.412993,0.0474475,0.508858,0.464878,0.969155,0.992478,0.0930035,0.961665,0.975555,0.466014,0.406128,0.898946,0.459177,0.869396,0.249796,0.60214,0.389964,0.536591,0.960753,0.245596,0.715494,0.503743,0.692277,0.375318,0.713655,0.260933,0.885699,0.180586,0.548016,0.0931336,0.787921,0.917813,0.0371583,0.670387,0.579886,0.375922,0.302752,0.635355,0.0546072,0.139783,0.975215,0.495854,0.272634,0.682813,0.895611,0.695755,0.31682,0.821148,0.748241,0.460207,0.0704432,0.668498,0.281214,0.196851,0.295954,0.178259,0.700586,0.284575,0.709112,0.138035,0.878849,0.126242,0.585809,0.209573,0.285685,0.0131637,0.911019,0.270429,0.952706,0.702975,0.504621,0.676588,0.0145644,0.539073,0.543797,0.751975,0.270285,0.660979,0.0488502,0.368166,0.0723471,0.244072,0.0772604,0.879496,0.27941,0.820774,0.0529486,0.525545,0.248635,0.0603605,0.122002,0.21464,0.0413092,0.921101,0.999868,0.413201,0.417679,0.772241,0.371669,0.71493,0.042466,0.0698639,0.146626,0.446534,0.612949,0.492399,0.767937,0.159787,0.388929,0.0881572,0.956088,0.992579,0.139284,0.932105,0.179272,0.469241,0.995208,0.494843,0.288465,0.484896,0.554484,0.93332,0.810259,0.715411,0.424225,0.921376,0.326503,0.642578,0.49313,0.138181,0.219772,0.62779,0.396992,0.8718,0.494568,0.718927,0.820877,0.34435,0.531258,0.955339,0.479055,0.965171,0.779756,0.0397731,0.832753,0.909519,0.397812,0.626812,0.867072,0.418401,0.185227,0.309934,0.964735,0.382913,0.496612,0.746622,0.344959,0.924777,0.93984,0.880169,0.478553,0.965766,0.671221,0.0875011,0.989673,0.245181,0.528469,0.373864,0.915859,0.947306,0.147232,0.0415393,0.212953,0.308845,0.624893,0.112269,0.746337,0.00694174,0.106219,0.637806,0.351949,0.384472,0.925693,0.744693,0.772504,0.375135,0.65067,0.326242,0.419984,0.770571,0.368671,0.567168,0.762134,0.451356,0.836467,0.151226,0.871222,0.157019,0.452726,0.940423,0.6576,0.174258,0.506946,0.126714,0.271391,0.0303332,0.250532,0.593491,0.381154,0.0503966,0.506731,0.901695,0.650251,0.507072,0.496264,0.382374,0.4175,0.139615,0.112102,0.00866354,0.590331,0.625551,0.0070672,0.902904,0.607202,0.785328,0.359173,0.200531,0.556491,0.220756,0.46049,0.545287,0.382374,0.117774,0.538506,0.808596,0.136749,0.991566,0.211218,0.0105726,0.649801,0.609845,0.320969,0.0122127,0.985378,0.318079,0.064362,0.68449,0.0994084,0.545771,0.721513,0.882661,0.363331,0.372468,0.220446,0.442566,0.754781,0.935309,0.0155904,0.13048,0.447889,0.785496,0.728726,0.669345,0.221084,0.761294,0.410373,0.492753,0.669432,0.544968,0.500897,0.415041,0.518734,0.224919,0.167973,0.799009,0.88233,0.587672,0.0334641,0.0808664,0.144133,0.0170782,0.523597,0.678926,0.563069,0.0509989,0.537134,0.346875,0.589569,0.110737,0.975746,0.985839,0.108804,0.794295,0.923452,0.420798,0.73132,0.425495,0.0202396,0.182893,0.224471,0.799573,0.77839,0.794402,0.394632,0.729002,0.287335,0.549772,0.303376,0.0623991,0.197478,0.204516,0.641514,0.0811263,0.383446,0.514381,0.898656,0.545802,0.867776,0.22195,0.230944,0.73188,0.301857,0.0102835,0.803231,0.470753,0.916957,0.713609,0.849087,0.252691,0.903058,0.742362,0.271979,0.027509,0.243737,0.12987,0.43473,0.765743,0.868156,0.573655,0.963301,0.845074,0.434496,0.00763905,0.754039,0.551692,0.911041,0.397058,0.624185,0.633005,0.293899,0.363399,0.543526,0.274758,0.450035,0.0245014,0.728766,0.0390303,0.759422,0.283327,0.609474,0.844138,0.485778,0.929429,0.131719,0.655855,0.258465,0.0784132,0.145254,0.953388,0.208568,0.691521,0.973485,0.695817,0.858691,0.0182733,0.973317,0.662698,0.429824,0.0520576,0.939456,0.0812779,0.135031,0.585481,0.694376,0.953813,0.437774,0.773561,0.292278,0.56154,0.319419,0.287692,0.16697,0.54565,0.712031,0.767727,0.416125,0.717491,0.265387,0.794474,0.170824,0.337011,0.430243,0.488997,0.454664,0.317489,0.855342,0.199861,0.872293,0.792372,0.273189,0.180446,0.180627,0.937106,0.280604,0.341702,0.0252358,0.25885,0.867666,0.420582,0.278402,0.336021,0.317511,0.679878,0.875208,0.73771,0.99299,0.600011,0.478223,0.589583,0.726698,0.385547,0.0502616,0.883365,0.289448,0.279025,0.629167,0.530953,0.339497,0.0232624,0.987537,0.397999,0.510725,0.859764,0.66892,0.317031,0.907079,0.31012,0.223733,0.462054,0.561083,0.863722,0.375129,0.980557,0.355827,0.827487,0.411916,0.110105,0.891176,0.0828964,0.663981,0.823626,0.180958,0.811238,0.666817,0.774236,0.418574,0.758478,0.515278,0.218303,0.147543,0.368742,0.100499,0.0833457,0.477033,0.546086,0.906251,0.110754,0.477754,0.498216,0.610208,0.272249,0.589396,0.741796,0.706933,0.653825,0.0743806,0.390226,0.274024,0.979662,0.567545,0.525896,0.853185,0.725815,0.678472,0.873673,0.676159,0.20657,0.772734,0.20257,0.255927,0.328007,0.933365,0.476567,0.834482,0.624144,0.483163,0.764513,0.273116,0.963025,0.418411,0.0251025,0.230686,0.947761,0.681564,0.756806,0.3236,0.19501,0.137779,0.0129337,0.199916,0.317411,0.811948,0.637948,0.849663,0.112231,0.680081,0.492332,0.468828,0.975915,0.208167,0.479819,0.587096,0.524362,0.0728645,0.362725,0.229383,0.96841,0.451772,0.772147,0.990267,0.796027,0.569944,0.997134,0.144218,0.25798,0.632196,0.890482,0.872055,0.0194505,0.865029,0.401802,0.810785,0.0475103,0.757594,0.660172,0.495947,0.685047,0.294936,0.647692,0.728278,0.534407,0.468831,0.699802,0.595397,0.842545,0.382836,0.760332,0.00969523,0.42763,0.273313,0.877618,0.314169,0.937493,0.005844,0.903223,0.217226,0.64378,0.747754,0.929085,0.585736,0.907776,0.60536,0.846441,0.0103882,0.643945,0.132644,0.528142,0.594827,0.549885,0.844995,0.811472,0.381048,0.832506,0.876824,0.816817,0.24535,0.668083,0.992835,0.415938,0.526986,0.362775,0.464008,0.561286,0.502257,0.555833,0.268494,0.067319,0.324818,0.355655,0.832275,0.313893,0.475772,0.919231,0.46355,0.59742,|0.271937,0.802435,0.135834,0.31549,0.6347,0.648249,0.6687,0.310286,0.234474,0.0345998,0.779304,0.738979,0.104457,0.0756814,0.39066,0.990444,0.0714821,0.104382,0.854513,0.0508229,0.472386,0.796244,0.777174,0.0824094,0.153867,0.288734,0.567265,0.970181,0.940597,0.121148,0.792016,0.602597,0.291901,0.351937,0.453614,0.0979846,0.129675,0.459074,0.615693,0.290617,0.390362,0.0533209,0.324625,0.722261,0.173256,0.786726,0.362799,0.594462,0.685209,0.85284,0.605447,0.420146,0.949622,0.627972,0.479332,0.192071,0.290014,0.131277,0.171387,0.357542,0.00900334,0.951476,0.332119,0.461193,0.411979,0.373029,0.820241,0.613486,0.943866,0.0293158,0.450443,0.264538,0.0755111,0.344177,0.748733,0.322085,0.483746,0.690845,0.701269,0.0417458,0.902211,0.534977,0.388654,0.152403,0.344529,0.918894,0.964702,0.534683,0.757088,0.113212,0.312628,0.086327,0.289181,0.318451,0.840558,0.325927,0.713077,0.498252,0.317646,0.835173,0.261619,0.293183,0.847105,0.250127,0.529102,0.486206,0.2885,0.275305,0.499275,0.921896,0.319958,0.196772,0.649256,0.312319,0.407699,0.801849,0.347051,0.777527,0.125057,0.68584,0.926743,0.157034,0.360166,0.629395,0.814101,0.854517,0.683417,0.772668,0.245733,0.129294,0.549301,0.814819,0.919791,0.931383,0.132456,0.713602,0.23289,0.516313,0.920841,0.104116,0.218547,0.737693,0.203024,0.974149,0.396512,0.444263,0.518604,0.713089,0.0621112,0.433044,0.800201,0.0121883,0.354144,0.806186,0.659849,0.775113,0.296401,0.887553,0.926174,0.184629,0.0444379,0.210808,0.0545046,0.921096,0.186546,0.667551,0.0988382,0.640314,0.901938,0.81913,0.830162,0.211921,0.10904,0.263763,0.570379,0.026935,0.915947,0.274357,0.689111,0.341832,0.813542,0.604503,0.709559,0.673527,0.356556,0.690501,0.4127,0.853881,0.317897,0.135197,0.763941,0.271521,0.377063,0.760876,0.754421,0.0705402,0.596986,0.565243,0.303073,0.275081,0.0848293,0.403546,0.0903626,0.343925,0.407754,0.703203,0.0756519,0.784189,0.987752,0.527183,0.0518383,0.556548,0.327268,0.176931,0.394873,0.53442,0.43454,0.741549,0.934457,0.86979,0.860445,0.577444,0.478806,0.904265,0.949861,0.902863,0.375325,0.20976,0.955373,0.324674,0.0829952,0.806371,0.723243,0.875566,0.670862,0.725798,0.626435,0.648859,0.770463,0.535826,0.795865,0.331655,0.726225,0.918058,0.0983147,0.91748,0.875923,0.27454,0.974113,0.353393,0.116514,0.735263,0.341356,0.117727,0.813605,0.0592076,0.661285,0.576077,0.51037,0.390624,0.0637797,0.827769,0.912687,0.19354,0.117858,0.328816,0.544632,0.636054,0.915219,0.743797,0.371615,0.553625,0.362499,0.00814527,0.0394844,0.45635,0.499691,0.29126,0.435716,0.00362444,0.0347718,0.871204,0.292372,0.154177,0.777951,0.611077,0.917438,0.206263,0.587091,0.878844,0.0483385,0.661923,0.826286,0.101213,0.181398,0.510268,0.417587,0.877532,0.796128,0.580258,0.0284417,0.399781,0.396572,0.192556,0.592933,0.995017,0.0422965,0.501568,0.342827,0.933688,0.508296,0.635327,0.747404,0.689834,0.737106,0.598127,0.817256,0.524096,0.631358,0.617717,0.328267,0.244072,0.950994,0.499688,0.753979,0.203286,0.292581,0.130387,0.890068,0.876588,0.219175,0.682808,0.0867795,0.177815,0.992566,0.455629,0.584776,0.193735,0.32929,0.207267,0.562095,0.101127,0.972304,0.172016,0.291237,0.982592,0.450115,0.21085,0.0365959,0.536441,0.308862,0.080049,0.771855,0.983998,0.359774,0.97446,0.418401,0.665527,0.474102,0.824502,0.381352,0.838781,0.000708282,0.12969,0.606806,0.15352,0.601799,0.122025,0.371403,0.131273,0.526233,0.0726361,0.346258,0.0315038,0.583296,0.919075,0.428858,0.23902,0.130178,0.165832,0.523205,0.82386,0.662419,0.777486,0.365378,0.270563,0.140415,0.136293,0.0812285,0.717105,0.741726,0.777912,0.688171,0.383647,0.970695,0.897287,0.477497,0.87615,0.404445,0.298919,0.0900641,0.0292373,0.45945,0.657003,0.98796,0.506073,0.725932,0.0228415,0.743399,0.0343578,0.493021,0.625912,0.484264,0.761285,0.468249,0.333614,0.380674,0.954627,0.0574558,0.557872,0.236665,0.437017,0.378058,0.3275,0.19317,0.00511038,0.141269,0.854578,0.434479,0.895937,0.427123,0.394144,0.136918,0.572677,0.539,0.536365,0.212612,0.893684,0.348117,0.385444,0.586989,0.115304,0.149783,0.31696,0.190721,0.736841,0.600142,0.0741245,0.641257,0.100748,0.536014,0.601914,0.14479,0.647999,0.902816,0.0638393,0.182578,0.687074,0.638205,0.731464,0.815506,0.98508,0.271942,0.183182,0.728572,0.750032,0.443444,0.722368,0.346729,0.762899,0.200052,0.680922,0.894715,0.653956,0.663891,0.437191,0.440178,0.184129,0.56219,0.241886,0.352099,0.513829,0.338687,0.635246,0.533835,0.188961,0.815734,0.747867,0.52062,0.769192,0.748835,0.0500789,0.138535,0.666982,0.535082,0.851456,0.544035,0.937477,0.386377,0.839484,0.130279,0.572315,0.893444,0.136349,0.527207,0.113668,0.0126865,0.136204,0.148691,0.28821,0.842693,0.208999,0.234385,0.741878,0.597943,0.787706,0.623378,0.463953,0.920269,0.10707,0.55872,0.76765,0.651037,0.132041,0.127984,0.00867498,0.907628,0.679935,0.223859,0.409526,0.356577,0.626662,0.716698,0.0761231,0.258251,0.362272,0.485631,0.15943,0.921139,0.169537,0.901656,0.61982,0.496461,0.484657,0.205683,0.934202,0.570197,0.62698,0.826458,0.642956,0.488836,0.033547,0.497418,0.431509,0.0759037,0.170047,0.777761,0.789404,0.197938,0.800075,0.455061,0.989164,0.288645,0.458339,0.377114,0.484617,0.258246,0.607865,0.810039,0.171118,0.769426,0.0860959,0.224405,0.314383,0.201822,0.0537279,0.13028,0.368904,0.270079,0.237954,0.143412,0.378628,0.833435,0.628886,0.354278,0.110988,0.574984,0.373022,0.344622,0.72386,0.429876,0.213951,0.227686,0.976407,0.283285,0.841881,0.355627,0.322685,0.034967,0.467068,0.0908509,0.356929,0.368181,0.534635,0.627522,0.955744,0.32475,0.378772,0.0707141,0.787939,0.0453302,0.433349,0.642871,0.639199,0.0646356,0.199297,0.935409,0.0124465,0.922104,0.333838,0.883323,0.976082,0.236851,0.613171,0.9978,0.625509,0.824259,0.254117,0.656863,0.125921,0.916804,0.0878057,0.746885,0.0778922,0.580432,0.912766,0.821986,0.442039,0.642644,0.149866,0.457704,0.178912,0.0475084,0.749794,0.133203,0.758393,0.954159,0.369524,0.0962041,0.227231,0.225609,0.368307,0.654522,0.633686,0.0937437,0.780685,0.116239,0.663954,0.434883,0.0214461,0.291169,0.918212,0.52618,0.925167,0.213935,0.0790974,0.184008,0.503547,0.43805,0.92462,0.502563,0.113284,0.533304,0.830923,0.138679,0.692711,0.702175,0.614623,0.868745,0.556875,0.991331,0.667541,0.954251,0.43867,0.173698,0.892522,0.0750401,0.843713,0.0179523,0.0144681,0.923373,0.991984,0.582102,0.171664,0.538383,0.335711,0.177065,0.398337,0.533559,0.203,0.872278,0.401847,0.927397,0.407897,0.341063,0.931564,0.579674,0.619419,0.760445,0.605344,0.511198,0.949204,0.0737225,0.547429,0.802275,0.919568,0.119603,0.292259,0.963363,0.670799,0.232875,0.982685,0.909746,0.752187,0.150665,0.122283,0.920509,0.593041,0.938109,0.770833,0.488923,0.156521,0.476541,0.204712,0.279198,0.899817,0.70695,0.111539,0.493526,0.473854,0.765287,0.192538,0.587733,0.531281,0.885961,0.125913,0.88342,0.579849,0.0450227,0.579897,0.916401,0.635789,0.266589,0.63779,0.273322,0.224969,0.662057,0.244892,0.695507,0.38269,0.797767,0.00919056,0.980889,0.600322,0.265213,0.598917,0.469931,0.520466,0.662553,0.613029,0.0160623,0.459625,0.933737,0.521192,0.290655,0.20601,0.892132,0.499036,0.892569,0.556072,0.993171,0.110638,0.745297,0.564521,0.656569,0.479557,0.475213,0.763529,0.574553,0.291081,0.714223,0.744298,0.836061,0.30351,0.240384,0.954494,0.929707,0.515463,0.335945,0.355072,0.569341,0.191298,0.123443,0.944421,0.974757,0.567918,0.123924,0.848092,0.233689,0.0133653,0.0129444,0.740867,0.770701,0.548383,0.30227,0.897661,0.300683,0.393814,0.538528,0.934408,0.757187,0.544289,0.451343,0.950925,0.355203,0.397448,0.948779,0.693114,0.708115,0.0547121,0.0940698,0.822111,0.388605,0.674982,0.962168,0.120236,0.690418,0.982707,0.448459,0.697196,0.365767,0.28925,0.19592,0.819445,0.510861,0.488641,0.649121,0.588087,0.461508,0.467633,0.877487,0.528245,0.503389,0.0657153,0.596449,0.788076,0.214449,0.634623,0.805942,0.0435197,0.825871,0.980594,0.468172,0.830865,0.902108,0.702855,0.496873,0.206708,0.812117,0.142258,0.394782,0.889252,0.928331,0.519001,0.312526,0.451527,0.377776,0.599734,0.789246,0.757284,0.477233,0.859758,0.416756,0.926316,0.177808,0.865547,0.643409,0.344647,0.417987,0.148697,0.427754,0.184166,0.92649,0.714827,0.444452,0.607982,0.107852,0.696998,0.873506,0.11168,0.360395,0.0369062,0.325931,0.906824,0.983256,0.717411,0.333322,0.69106,0.198582,0.813002,0.431261,0.866282,0.0517924,0.328213,0.812648,0.274835,0.414988,0.37368,0.435327,0.349841,0.159252,0.445041,0.136906,0.849331,0.776684,0.594153,0.857846,0.62056,0.207926,0.233891,0.90472,0.146084,0.931485,0.303902,0.645038,0.954167,0.530181,0.734865,0.511175,0.692238,0.763718,0.956132,0.906088,0.492504,0.425941,0.323201,0.297998,0.62114,0.634646,0.733093,0.672791,0.066013,0.449633,0.0694039,0.586708,0.532821,0.528267,0.868712,0.399135,0.242759,0.0308035,0.0529749,0.0744824,0.305202,0.215651,0.935085,0.291103,0.683688,0.786585,0.522396,0.945346,0.0706325,0.692179,0.0753105,0.840751,0.343736,0.236253,0.790746,0.95639,0.537012,0.344922,0.507329,0.2168,0.148548,0.608596,0.210024,0.382565,0.827328,0.799082,0.144523,0.233328,0.28161,0.874315,0.94461,0.637157,0.435381,0.955117,0.817228,0.00749654,0.786726,|0.152065,0.575901,0.0160443,0.412549,0.39956,0.592301,0.79558,0.151558,0.932912,0.690986,0.478263,0.100307,0.0682697,0.488495,0.8223,0.592014,0.898649,0.419368,0.490239,0.0915533,0.127896,0.618831,0.449229,0.0949506,0.00408524,0.992875,0.629863,0.28415,0.279434,0.611316,0.127842,0.975639,0.972883,0.143452,0.55621,0.317191,0.695382,0.222725,0.395021,0.234479,0.740009,0.0185157,0.63329,0.842449,0.676741,0.616969,0.735525,0.319834,0.261162,0.39481,0.507661,0.994309,0.842351,0.921165,0.563065,0.551043,0.268263,0.853194,0.276557,0.726607,0.665079,0.558672,0.802246,0.935453,0.272844,0.0728628,0.636856,0.980468,0.954489,0.516409,0.351433,0.149702,0.741618,0.109412,0.770803,0.892195,0.133249,0.763064,0.436292,0.719354,0.310345,0.665966,0.203724,0.0189131,0.625177,0.567033,0.251086,0.872173,0.762444,0.0540971,0.692055,0.402362,0.867706,0.846746,0.110357,0.111222,0.208951,0.747993,0.0477431,0.491064,0.596275,0.374377,0.223104,0.500919,0.409782,0.0772462,0.0604988,0.840896,0.446565,0.970981,0.299844,0.191473,0.301083,0.39744,0.663387,0.936743,0.912796,0.902221,0.0777792,0.622674,0.137221,0.676933,0.674164,0.135328,0.8413,0.406773,0.553512,0.677745,0.903731,0.672758,0.558627,0.608838,0.486379,0.564936,0.942411,0.557712,0.61949,0.176434,0.74112,0.467198,0.857661,0.289919,0.695142,0.112516,0.316061,0.291761,0.0526851,0.184477,0.156059,0.127436,0.692435,0.801107,0.430733,0.882729,0.54453,0.338504,0.989701,0.518165,0.35358,0.884607,0.751776,0.322372,0.391086,0.0604042,0.481354,0.436084,0.852473,0.323435,0.155139,0.699834,0.0108256,0.448457,0.0895488,0.411528,0.699654,0.39865,0.963537,0.51289,0.752816,0.319764,0.132552,0.602061,0.694976,0.197776,0.704433,0.751105,0.787845,0.282486,0.00404018,0.00594562,0.969192,0.0207987,0.212994,0.733517,0.654432,0.475777,0.50011,0.281893,0.0376154,0.301701,0.995296,0.428239,0.226669,0.473216,0.068314,0.47272,0.148143,0.107801,0.226129,0.592999,0.496335,0.567098,0.503657,0.371386,0.495067,0.962559,0.535094,0.188994,0.344097,0.967595,0.931189,0.44373,0.0969688,0.962293,0.997541,0.822482,0.143436,0.671958,0.483334,0.0342135,0.246687,0.110419,0.404271,0.286003,0.912271,0.324923,0.464335,0.757767,0.229731,0.271288,0.312784,0.944284,0.318232,0.0735149,0.495502,0.0661025,0.282174,0.763821,0.286015,0.98232,0.144906,0.397244,0.158034,0.149827,0.741239,0.339472,0.357096,0.429956,0.510341,0.598711,0.861618,0.21168,0.919033,0.0534549,0.465174,0.848082,0.944963,0.504914,0.417242,0.499496,0.267262,0.70637,0.86836,0.191255,0.218371,0.38536,0.396867,0.539469,0.569479,0.366925,0.551092,0.137548,0.0296862,0.409856,0.906785,0.712649,0.320473,0.34645,0.305811,0.368384,0.715411,0.489973,0.409821,0.150525,0.932087,0.745993,0.168969,0.146464,0.789539,0.488177,0.1007,0.570671,0.191584,0.374738,0.443981,0.0645676,0.726583,0.188947,0.730099,0.964448,0.180124,0.0669764,0.138972,0.942699,0.280022,0.141134,0.222853,0.772566,0.207814,0.803414,0.3116,0.527501,0.0575736,0.805419,0.346446,0.400825,0.539382,0.936066,0.131076,0.93232,0.122803,0.696455,0.810301,0.362615,0.053676,0.856482,0.559753,0.589663,0.616873,0.088552,0.257942,0.174764,0.464077,0.330125,0.469611,0.264414,0.924765,0.964713,0.558817,0.415227,0.11372,0.49198,0.914897,0.208975,0.753597,0.203305,0.148564,0.472754,0.286004,0.532178,0.418815,0.79112,0.142356,0.690693,0.34375,0.118143,0.901458,0.648154,0.0359019,0.532223,0.0622597,0.818344,0.302222,0.279116,0.634523,0.156761,0.850955,0.492456,0.952224,0.521217,0.00393087,0.966663,0.118723,0.838206,0.581052,0.321226,0.324139,0.460673,0.821297,0.851702,0.485071,0.776403,0.14753,0.000957668,0.331442,0.440532,0.896165,0.901474,0.415637,0.401111,0.705948,0.647332,0.952161,0.942719,0.548392,0.199467,0.672452,0.135367,0.36053,0.617221,0.867019,0.267416,0.447214,0.000939429,0.927934,0.703919,0.75234,0.298109,0.0132819,0.403552,0.489838,0.883097,0.853592,0.525734,0.74281,0.976013,0.992912,0.460065,0.165226,0.362258,0.415699,0.00753826,0.833712,0.401315,0.308511,0.440808,0.746832,0.821866,0.841829,0.317932,0.463914,0.15374,0.964772,0.610076,0.679787,0.634395,0.923591,0.40118,0.946431,0.479192,0.433876,0.250925,0.744023,0.945853,0.908349,0.624338,0.844424,0.579735,0.371058,0.00452846,0.641259,0.169881,0.338707,0.45515,0.103125,0.750579,0.899538,0.965153,0.890514,0.452724,0.551246,0.220505,0.435612,0.253097,0.285686,0.618354,0.680123,0.371017,0.69861,0.815293,0.229302,0.446024,0.584447,0.196201,0.352758,0.0249277,0.836305,0.476447,0.942046,0.788252,0.203086,0.0708936,0.91056,0.790131,0.49199,0.180673,0.851701,0.928184,0.528935,0.733164,0.342069,0.961357,0.639236,0.878253,0.242484,0.375787,0.102834,0.0121412,0.721027,0.0057801,0.444471,0.775263,0.502924,0.34059,0.104076,0.477598,0.449784,0.0622031,0.463076,0.847746,0.469627,0.65927,0.772103,0.216322,0.556992,0.717354,0.0635787,0.243889,0.498025,0.280693,0.322746,0.963676,0.819454,0.0173101,0.310453,0.640451,0.0907141,0.609953,0.543327,0.392734,0.62852,0.434202,0.827546,0.550159,0.0342549,0.594687,0.909967,0.970505,0.984553,0.361559,0.463285,0.341916,0.744535,0.443405,0.46982,0.771913,0.00911528,0.499215,0.264986,0.694181,0.947431,0.281924,0.681348,0.130862,0.553712,0.465018,0.252807,0.38046,0.759703,0.0659849,0.438048,0.708581,0.0854841,0.766553,0.664786,0.725053,0.987979,0.893093,0.828593,0.622891,0.337741,0.903948,0.487607,0.895018,0.884253,0.378291,0.127219,0.00792301,0.192235,0.147265,0.497212,0.507759,0.793791,0.00918752,0.112934,0.624365,0.775354,0.668757,0.632145,0.955487,0.601275,0.26199,0.999609,0.157534,0.698242,0.130754,0.353516,0.378282,0.303883,0.242691,0.587159,0.763364,0.103638,0.547628,0.0272951,0.168367,0.367876,0.620482,0.77507,0.182337,0.0103068,0.212827,0.308719,0.838344,0.466432,0.0712698,0.887708,0.175417,0.729425,0.913666,0.665759,0.54822,0.823619,0.331791,0.456644,0.920334,0.76569,0.530367,0.633564,0.359867,0.311588,0.0996485,0.477253,0.912718,0.971472,0.455879,0.0484611,0.853844,0.118176,0.898943,0.975786,0.38727,0.633914,0.500784,0.861708,0.920445,0.185856,0.936204,0.348749,0.599983,0.0149839,0.215279,0.988667,0.623167,0.0707266,0.733535,0.6444,0.783519,0.325429,0.353861,0.504107,0.0553688,0.611184,0.578245,0.926968,0.380508,0.447637,0.476237,0.369334,0.346673,0.893537,0.0353802,0.201905,0.0851654,0.606514,0.955519,0.259582,0.77673,0.0318975,0.55149,0.312952,0.552929,0.0635594,0.432894,0.26614,0.991572,0.0945224,0.956565,0.93441,0.934301,0.402978,0.959015,0.857359,0.420295,0.808893,0.634792,0.651303,0.165884,0.257728,0.672509,0.81261,0.704962,0.848672,0.126498,0.939802,0.952772,0.140291,0.908753,0.726112,0.512086,0.23284,0.693456,0.728652,0.719101,0.465696,0.339098,0.642732,0.420613,0.0929741,0.331443,0.370913,0.312647,0.648458,0.590657,0.205968,0.0727355,0.616474,0.281518,0.936258,0.954091,0.169525,0.0935346,0.303443,0.110249,0.807689,0.228813,0.307164,0.374851,0.910325,0.107273,0.411276,0.451733,0.810611,0.791448,0.61143,0.0501815,0.918418,0.539013,0.374296,0.526263,0.0479611,0.375569,0.798494,6.31809e-06,0.371682,0.0138542,0.749517,0.813512,0.0473204,0.26471,0.376827,0.841636,0.847392,0.473712,0.99328,0.525547,0.32062,0.655915,0.521379,0.982115,0.602373,0.489334,0.789987,0.101329,0.527792,0.564013,0.429874,0.239047,0.216913,0.173743,0.965663,0.680857,0.719644,0.353092,0.0121373,0.628369,0.17678,0.958378,0.24415,0.252109,0.459121,0.627367,0.142465,0.102918,0.861419,0.573504,0.438312,0.248881,0.41439,0.637751,0.429789,0.0456904,0.834413,0.297921,0.611149,0.512496,0.549716,0.0737869,0.657144,0.877544,0.740794,0.947635,0.245836,0.989125,0.0453331,0.355373,0.741006,0.468982,0.735258,0.50963,0.180688,0.540171,0.764839,0.56254,0.815946,0.971151,0.333619,0.606286,0.0413618,0.0257421,0.496464,0.429163,0.62227,0.838257,0.801792,0.526846,0.0318289,0.809947,0.0952402,0.379345,0.955781,0.496066,0.255268,0.222242,0.662977,0.850505,0.554775,0.0783932,0.457462,0.653603,0.487121,0.370544,0.82986,0.73179,0.00214124,0.397701,0.245981,0.34744,0.60303,0.369243,0.233992,0.669207,0.502029,0.110306,0.968702,0.360099,0.311175,0.110722,0.841833,0.313102,0.406449,0.583089,0.250003,0.437571,0.29838,0.533601,0.450532,0.116353,0.151923,0.887839,0.0820863,0.765488,0.258105,0.303585,0.87143,0.817018,0.96987,0.361683,0.606019,0.0146994,0.69014,0.00899208,0.913832,0.495389,0.166941,0.283005,0.548631,0.471342,0.224916,0.163665,0.474812,0.135931,0.0548731,0.646594,0.112397,0.0178251,0.310879,0.463985,0.405785,0.14828,0.470484,0.129984,0.0855283,0.586,0.485559,0.575164,0.365774,0.525384,0.390179,0.191847,0.864305,0.102866,0.979013,0.675833,0.42454,0.384896,0.277132,0.0766874,0.799059,0.653001,0.997069,0.548206,0.218162,0.725409,0.932038,0.700289,0.318992,0.859072,0.578606,0.550447,0.288624,0.107528,0.903993,0.485497,0.729774,0.901204,0.489415,0.455493,0.711754,0.32551,0.303833,0.5026,0.96705,0.972219,0.335053,0.601942,0.718912,0.338,0.68282,0.137782,0.599478,0.0963326,0.471812,0.331189,0.932786,0.745603,0.0482626,0.184661,0.200059,0.239948,0.634982,0.632352,0.123822,0.500421,0.915768,0.189796,0.487832,0.086489,0.109764,0.0744154,0.796472,0.563459,0.142753,0.28288,0.21081,0.870284,0.802842,0.588081,0.121377,0.881531,|0.447757,0.447047,0.560739,0.471124,0.374305,0.482219,0.38035,0.727369,0.845965,0.113678,0.0143556,0.567774,0.901657,0.502409,0.276951,0.399907,0.87169,0.526763,0.882193,0.948601,0.740653,0.141336,0.657141,0.770431,0.911794,0.894375,0.621264,0.38803,0.317863,0.623388,0.34727,0.430041,0.447238,0.636595,0.871985,0.41464,0.601174,0.138861,0.251623,0.3229,0.876113,0.975806,0.308792,0.321702,0.348476,0.437796,0.824213,0.743403,0.797662,0.999097,0.555899,0.319113,0.420404,0.605136,0.407257,0.739481,0.943906,0.0418506,0.672334,0.497911,0.406757,0.783334,0.532583,0.542367,0.237028,0.665783,0.211269,0.703271,0.127482,0.309574,0.166894,0.666781,0.563625,0.400837,0.532252,0.124507,0.541709,0.98617,0.304132,0.917089,0.897278,0.456939,0.546698,0.873396,0.949443,0.053523,0.209625,0.615235,0.797308,0.822918,0.539104,0.901421,0.806033,0.661589,0.80871,0.488323,0.91421,0.281013,0.55024,0.201893,0.915637,0.0750112,0.874547,0.890314,0.781594,0.500361,0.64439,0.321895,0.885363,0.994981,0.231143,0.649707,0.202104,0.511615,0.561682,0.213115,0.626471,0.561107,0.633375,0.821847,0.33735,0.401969,0.843037,0.387739,0.790749,0.0395213,0.258946,0.466503,0.369086,0.158921,0.0338696,0.691364,0.424834,0.330115,0.341744,0.450178,0.785072,0.329799,0.30865,0.708644,0.973837,0.633719,0.819164,0.449682,0.504059,0.0083791,0.0405664,0.64264,0.521027,0.671032,0.109354,0.264426,0.837456,0.896027,0.0450343,0.176215,0.542622,0.765115,0.894787,0.608662,0.186107,0.360666,0.63935,0.737584,0.511729,0.173353,0.695255,0.479542,0.805203,0.271404,0.307086,0.186094,0.716847,0.610941,0.713538,0.687664,0.0898187,0.908086,0.577182,0.209063,0.737499,0.543067,0.0730892,0.930271,0.780372,0.718532,0.77843,0.46962,0.65738,0.459186,0.441257,0.45994,0.322769,0.739251,0.630497,0.728525,0.236572,0.130161,0.0374855,0.854809,0.910727,0.219161,0.191237,0.86687,0.259744,0.055612,0.77633,0.588245,0.469458,0.764602,0.12394,0.668191,0.267197,0.264683,0.599216,0.666828,0.303825,0.563623,0.204195,0.685222,0.780408,0.538948,0.685452,0.822368,0.318913,0.141322,0.0260105,0.52126,0.0281234,0.956027,0.00604719,0.812066,0.831662,0.526941,0.566375,0.00251991,0.847531,0.0377803,0.435104,0.678966,0.17507,0.739372,0.316676,0.495552,0.958512,0.507919,0.366493,0.826573,0.449989,0.341404,0.032541,0.987274,0.0617884,0.183752,0.248129,0.893306,0.766365,0.66287,0.827225,0.154652,0.602612,0.202458,0.165186,0.0722791,0.483911,0.887843,0.0596069,0.811988,0.532814,0.594559,0.980637,0.102313,0.0277357,0.459528,0.761687,0.213692,0.639886,0.218978,0.0343675,0.461179,0.516197,0.0771483,0.0872141,0.532308,0.570726,0.088333,0.108412,0.617121,0.934436,0.639547,0.204017,0.346408,0.568193,0.457914,0.468524,0.293585,0.595413,0.343754,0.704884,0.526245,0.167594,0.411463,0.535103,0.462614,0.00952959,0.6656,0.964011,0.124719,0.37406,0.221307,0.0870645,0.733025,0.997808,0.635578,0.916141,0.348518,0.323527,0.97738,0.606002,0.520382,0.0578197,0.178394,0.0586011,0.644303,0.147175,0.702363,0.440995,0.0806061,0.232528,0.869281,0.809114,0.950912,0.985445,0.17356,0.85383,0.976553,0.496683,0.412493,0.37502,0.797804,0.866213,0.119187,0.959307,0.640194,0.61093,0.342219,0.402377,0.826317,0.218781,0.424177,0.917341,0.57208,0.871072,0.996695,0.243098,0.775106,0.888199,0.0786944,0.811493,0.829313,0.447767,0.294841,0.949739,0.906502,0.818263,0.583054,0.0564484,0.947246,0.596811,0.389406,0.293095,0.779789,0.673206,0.242059,0.0257211,0.907575,0.494864,0.94413,0.625095,0.169651,0.767871,0.888451,0.870639,0.402367,0.359956,0.669326,0.940214,0.471732,0.584093,0.799354,0.477352,0.783007,0.483772,0.969441,0.295275,0.774724,0.586293,0.415329,0.0917886,0.701736,0.16088,0.854811,0.462084,0.678511,0.571718,0.442911,0.592387,0.661374,0.332155,0.879581,0.810567,0.424583,0.107213,0.525196,0.585245,0.152741,0.363604,0.657675,0.42258,0.26025,0.167442,0.4224,0.142362,0.870998,0.0827068,0.213812,0.283706,0.032132,0.309144,0.168297,0.134674,0.453848,0.464609,0.654769,0.25982,0.222645,0.0119747,0.915223,0.27822,0.406247,0.353293,0.831661,0.970759,0.189444,0.892215,0.860187,0.0939075,0.896877,0.673617,0.0854193,0.551479,0.928067,0.27989,0.50688,0.452781,0.937173,0.675272,0.115787,0.805552,0.248281,0.512942,0.062893,0.432087,0.141483,0.923771,0.870775,0.972486,0.303672,0.284569,0.356001,0.678859,0.485671,0.653152,0.306583,0.825227,0.506728,0.0554549,0.269708,0.720857,0.195213,0.723115,0.204327,0.150473,0.755362,0.491557,0.0792073,0.222595,0.735459,0.940131,0.581734,0.854901,0.982867,0.70306,0.691892,0.0355153,0.380767,0.0995966,0.26476,0.295573,0.93039,0.191558,0.164411,0.249295,0.267449,0.523219,0.273728,0.994684,0.576598,0.495103,0.403849,0.119799,0.646128,0.590648,0.187706,0.0191306,0.211464,0.809606,0.645838,0.270648,0.475479,0.332544,0.649407,0.299624,0.122965,0.991919,0.769898,0.353868,0.760617,0.16258,0.720429,0.692118,0.583902,0.378882,0.0831469,0.904718,0.271146,0.272192,0.681809,0.446247,0.561803,0.876609,0.842185,0.9876,0.223808,0.588605,0.420039,0.891477,0.150584,0.376189,0.337872,0.0858395,0.77436,0.17777,0.278735,0.5587,0.83757,0.829754,0.0544012,0.54267,0.721903,0.369676,0.564612,0.657607,0.00937223,0.251387,0.604108,0.842645,0.360112,0.403782,0.587348,0.0315173,0.819015,0.0165733,0.799451,0.802635,0.96477,0.660458,0.763365,0.667105,0.110016,0.341333,0.269779,0.505776,0.499015,0.75067,0.763709,0.54738,0.317199,0.420366,0.721306,0.741722,0.596139,0.233397,0.454211,0.303707,0.371096,0.470156,0.122092,0.144907,0.572215,0.935026,0.413546,0.244062,0.24343,0.402162,0.742862,0.666593,0.599395,0.609977,0.953686,0.634627,0.500034,0.138561,0.382893,0.615956,0.590542,0.50163,0.293774,0.651201,0.226155,0.538038,0.399638,0.906269,0.451722,0.306267,0.277007,0.825913,0.325221,0.703487,0.078567,0.456236,0.842662,0.944563,0.691963,0.894287,0.178606,0.768023,0.015292,0.739294,0.813884,0.850367,0.250934,0.343369,0.773637,0.80823,0.187131,0.743979,0.554462,0.176207,0.194868,0.611917,0.622314,0.00487608,0.956498,0.208521,0.235521,0.764801,0.82218,0.503577,0.395614,0.849244,0.0800182,0.286291,0.7224,0.265974,0.985733,0.153104,0.503802,0.667005,0.61407,0.877637,0.416225,0.258347,0.884399,0.498526,0.644083,0.0391787,0.418308,0.283112,0.497869,0.891308,0.239331,0.0370371,0.464238,0.914562,0.758385,0.582419,0.228292,0.670063,0.601999,0.898536,0.304855,0.832943,0.726887,0.939904,0.431459,0.918497,0.49934,0.835777,0.571396,0.873455,0.759403,0.400288,0.986028,0.239823,0.465438,0.461441,0.215878,0.698475,0.405489,0.807219,0.8119,0.927036,0.639811,0.0768093,0.332101,0.380093,0.324492,0.931438,0.187731,0.0941511,0.142245,0.0673078,0.0120688,0.309554,0.796725,0.212217,0.333841,0.695026,0.82954,0.384506,0.461857,0.867779,0.195271,0.770322,0.61966,0.932442,0.889332,0.737238,0.368073,0.548372,0.413907,0.00415188,0.905028,0.214885,0.863343,0.377719,0.574575,0.904491,0.00527871,0.386322,0.759785,0.129701,0.421707,0.46647,0.176724,0.384189,0.294939,0.892162,0.938288,0.173726,0.621694,0.77029,0.357472,0.371738,0.436351,0.409607,0.00978017,0.951698,0.918126,0.263046,0.0777564,0.672165,0.00322539,0.0665392,0.717076,0.0511892,0.853571,0.360603,0.777007,0.847638,0.00109935,0.0107925,0.472251,0.585701,0.966284,0.802599,0.583395,0.413024,0.00796497,0.281282,0.645499,0.632934,0.297836,0.0567001,0.780918,0.625131,0.746737,0.25405,0.910613,0.182632,0.362791,0.689972,0.756476,0.503354,0.657813,0.855973,0.0867917,0.778696,0.770469,0.129248,0.524379,0.308085,0.0606217,0.450161,0.754942,0.653264,0.998796,0.292674,0.759368,0.262273,0.393384,0.00141352,0.307854,0.715207,0.545537,0.10347,0.688166,0.358086,0.408204,0.030812,0.654324,0.711763,0.800616,0.818954,0.48486,0.0902475,0.976581,0.0869015,0.41655,0.562991,0.087382,0.934048,0.162958,0.934313,0.802889,0.35526,0.69907,0.683028,0.882268,0.61195,0.584335,0.486155,0.078277,0.626883,0.193833,0.14083,0.634886,0.996669,0.800593,0.0440219,0.662314,0.138611,0.061505,0.760001,0.901557,0.426739,0.181921,0.862644,0.622701,0.562339,0.913066,0.925156,0.692413,0.477045,0.359459,0.596227,0.752478,0.78542,0.00747764,0.311943,0.457774,0.666465,0.344764,0.816298,0.110807,0.976398,0.154244,0.221582,0.0263835,0.735731,0.602189,0.986913,0.3711,0.980581,0.0240807,0.0877435,0.922315,0.609833,0.433373,0.898954,0.084639,0.243999,0.036212,0.0733373,0.532438,0.0372831,0.795002,0.0116578,0.219728,0.248277,0.415882,0.138384,0.982041,0.887148,0.995877,0.0541043,0.501332,0.0845676,0.59651,0.914752,0.824052,0.87411,0.388488,0.984531,0.927936,0.229087,0.748864,0.459689,0.337284,0.165493,0.808565,0.797712,0.429974,0.924371,0.549546,0.316472,0.145703,0.0348535,0.306595,0.407097,0.791042,0.788057,0.854116,0.628923,0.0420066,0.929467,0.17989,0.301057,0.0632642,0.90965,0.13144,0.926225,0.322597,0.267978,0.100647,0.197867,0.466956,0.735519,0.385108,0.471601,0.287549,0.465447,0.33954,0.966815,0.668029,0.0666184,0.375832,0.789047,0.00607836,0.466284,0.00494379,0.148173,0.882724,0.306898,0.0101098,0.83651,0.167249,0.240795,0.485332,0.374107,0.188321,0.745133,0.713588,0.147901,0.425776,0.0255143,0.478875,0.542351,0.0236513,0.00984365,0.552816,0.0821955,0.619936,0.313099,0.927059,0.722365,0.623653,0.0831152,0.0822366,|0.155809,0.0898461,0.733665,0.416628,0.402416,0.659555,0.361228,0.941526,0.397688,0.643048,0.0705743,0.0738825,0.877226,0.604233,0.760352,0.41912,0.538381,0.770734,0.338565,0.59755,0.0192768,0.627728,0.90135,0.616744,0.0910814,0.651064,0.386997,0.933538,0.246151,0.407723,0.363045,0.983044,0.996399,0.239847,0.358965,0.149852,0.50875,0.0957525,0.823707,0.513869,0.576551,0.750279,0.351983,0.845354,0.847248,0.00260317,0.593563,0.0601732,0.819471,0.0892038,0.0360162,0.070239,0.823209,0.0356537,0.801955,0.00567085,0.931937,0.560464,0.716479,0.182397,0.10912,0.937474,0.774877,0.384266,0.139832,0.367948,0.691815,0.29438,0.175562,0.460547,0.418436,0.563889,0.669202,0.579324,0.831086,0.585165,0.196223,0.199723,0.556111,0.474122,0.269744,0.325483,0.337173,0.312663,0.570959,0.925385,0.424893,0.985549,0.908272,0.388975,0.258586,0.953049,0.427256,0.906731,0.0498881,0.383216,0.698091,0.0725632,0.796135,0.72481,0.922011,0.327422,0.670088,0.340785,0.498447,0.0440235,0.584789,0.661118,0.443777,0.545026,0.91433,0.035352,0.724211,0.575718,0.400891,0.67118,0.986523,0.739487,0.610359,0.623697,0.604244,0.238897,0.89941,0.101122,0.980515,0.753859,0.475429,0.071031,0.411498,0.66029,0.0130326,0.401959,0.826972,0.272596,0.0800256,0.956558,0.844189,0.72635,0.128887,0.83939,0.295799,0.609101,0.479112,0.37309,0.600194,0.95604,0.249192,0.857306,0.193803,0.974518,0.372009,0.881117,0.764578,0.202231,0.654133,0.325361,0.320561,0.752,0.737616,0.849871,0.515833,0.846896,0.367286,0.239354,0.855268,0.210958,0.818251,0.283646,0.485553,0.778148,0.214247,0.135836,0.683892,0.030696,0.466681,0.88949,0.99616,0.873214,0.385888,0.235547,0.564689,0.080878,0.593035,0.240945,0.333195,0.599456,0.756818,0.648761,0.903461,0.264134,0.816739,0.837068,0.421429,0.695133,0.530253,0.0513463,0.452239,0.732342,0.690124,0.842166,0.966099,0.400197,0.14132,0.921598,0.916615,0.533483,0.39333,0.608705,0.939237,0.272842,0.341295,0.852113,0.025668,0.666643,0.100786,0.387731,0.00737119,0.407592,0.723589,0.501406,0.175895,0.203758,0.884163,0.0731881,0.900151,0.535115,0.240481,0.0987707,0.097113,0.0520561,0.953422,0.946905,0.329076,0.818962,0.597671,0.206288,0.714662,0.550189,0.975778,0.316945,0.777202,0.75512,0.388925,0.114906,0.985829,0.0408996,0.98952,0.78581,0.293438,0.107557,0.482888,0.748962,0.178168,0.860146,0.774682,0.437096,0.474035,0.879478,0.667589,0.959636,0.879905,0.0776243,0.294665,0.447877,0.865644,0.801973,0.267335,0.775984,0.815224,0.598829,0.184192,0.356323,0.58321,0.751157,0.525204,0.683742,0.719299,0.477846,0.691622,0.150089,0.982732,0.0145263,0.406552,0.823936,0.00542492,0.538011,0.670137,0.788152,0.703544,0.759297,0.891325,0.145869,0.824331,0.125937,0.710412,0.419851,0.320083,0.586631,0.663482,0.425887,0.202721,0.932854,0.238462,0.364027,0.329351,0.522021,0.0762038,0.469114,0.767839,0.365186,0.136209,0.625186,0.869417,0.03341,0.718788,0.482263,0.185006,0.40554,0.906412,0.566689,0.00946772,0.334584,0.00192803,0.286895,0.921206,0.551847,0.303106,0.821911,0.0388767,0.0359339,0.138667,0.82503,0.759228,0.304577,0.314216,0.569087,0.890381,0.00194359,0.229337,0.254569,0.678683,0.444134,0.398049,0.853172,0.906258,0.180837,0.645486,0.111078,0.405953,0.713612,0.217263,0.106446,0.831245,0.936809,0.982903,0.159709,0.409766,0.227099,0.0393206,0.863187,0.586452,0.580246,0.789734,0.523277,0.156426,0.235043,0.969876,0.151567,0.681778,0.301489,0.611562,0.929071,0.214037,0.725885,0.539402,0.73879,0.511798,0.332604,0.177191,0.368006,0.525076,0.220967,0.00400972,0.563982,0.796116,0.920166,0.827676,0.842733,0.863163,0.131603,0.267846,0.794633,0.732749,0.928159,0.0738533,0.676372,0.0179526,0.575551,0.4911,0.0195344,0.285024,0.196282,0.151339,0.257108,0.563338,0.671556,0.322715,0.526771,0.58805,0.275513,0.402676,0.0746598,0.13039,0.818784,0.74235,0.170019,0.839291,0.588538,0.178859,0.646598,0.31871,0.341614,0.885791,0.794986,0.229043,0.16883,0.340341,0.709622,0.493954,0.570103,0.691361,0.0248533,0.212573,0.633506,0.541284,0.809155,0.182319,0.801477,0.204056,0.298855,0.33293,0.860226,0.414672,0.689961,0.27502,0.534824,0.355919,0.597232,0.735578,0.995314,0.771325,0.0801844,0.881094,0.264026,0.601746,0.847517,0.787265,0.0101014,0.293014,0.485514,0.971893,0.684303,0.907264,0.903326,0.786567,0.8876,0.682125,0.762138,0.820037,0.710281,0.226706,0.120057,0.859751,0.314987,0.386701,0.132921,0.0825857,0.636562,0.624147,0.693695,0.5454,0.46498,0.778698,0.701805,0.350014,0.935304,0.387035,0.583307,0.709988,0.69047,0.961979,0.944489,0.137742,0.147429,0.924597,0.523364,0.0686249,0.227624,0.18432,0.540162,0.0345584,0.84926,0.8611,0.723177,0.97371,0.0949617,0.867931,0.395889,0.302308,0.999883,0.241548,0.82982,0.179299,0.818381,0.425803,0.80366,0.458782,0.97182,0.0715401,0.725209,0.825283,0.575457,0.640571,0.603535,0.723656,0.356776,0.216941,0.907619,0.474797,0.237225,0.263408,0.0041489,0.873418,0.843008,0.13025,0.595095,0.954046,0.57319,0.810401,0.981705,0.402505,0.0386347,0.14167,0.93264,0.429683,0.108016,0.573593,0.268898,0.981228,0.787133,0.891891,0.660059,0.611808,0.389027,0.282012,0.487517,0.0387371,0.865079,0.543501,0.848238,0.0609136,0.863308,0.428003,0.13692,0.270499,0.308868,0.0401976,0.20993,0.0641953,0.339874,0.169295,0.42978,0.717102,0.942807,0.797259,0.0995478,0.895871,0.297345,0.30515,0.572546,0.186391,0.851157,0.419548,0.290335,0.847376,0.46527,0.692133,0.591065,0.960954,0.190742,0.0618873,0.883586,0.800607,0.0195643,0.258671,0.947658,0.405453,0.0946315,0.719191,0.413211,0.292509,0.695114,0.508497,0.327185,0.236436,0.248353,0.551556,0.654943,0.0395768,0.90153,0.389162,0.437501,0.514693,0.415162,0.688394,0.664077,0.62602,0.489817,0.25096,0.789093,0.455129,0.169095,0.294572,0.8896,0.95103,0.722489,0.83333,0.106892,0.202847,0.47588,0.359344,0.376279,0.933781,0.655164,0.94909,0.116279,0.867206,0.862448,0.291788,0.493395,0.168818,0.231703,0.00445861,0.69335,0.154495,0.0537121,0.912822,0.317321,0.0580044,0.408111,0.478206,0.438495,0.0536126,0.0173981,0.0239377,0.176865,0.192617,0.519526,0.664514,0.805291,0.435095,0.690972,0.0161037,0.428229,0.0132154,0.868205,0.779855,0.116168,0.840735,0.53332,0.688625,0.317475,0.547549,0.469459,0.529957,0.119282,0.180647,0.879401,0.438307,0.835182,0.597987,0.957696,0.0118724,0.977638,0.375314,0.32212,0.661451,0.553663,0.529135,0.426721,0.483639,0.354747,0.0568779,0.96052,0.292423,0.34652,0.87672,0.787574,0.298224,0.507591,0.552225,0.76928,0.886354,0.229235,0.0192789,0.187624,0.815528,0.374433,0.353967,0.995113,0.627415,0.850936,0.347394,0.190493,0.641284,0.163862,0.696337,0.571888,0.00115061,0.186384,0.992069,0.995001,0.922264,0.841204,0.993272,0.900224,0.0902439,0.331257,0.920976,0.700043,0.287985,0.0897079,0.586241,0.452304,0.972749,0.171905,0.064953,0.462515,0.671846,0.524814,0.0559189,0.475838,0.323574,0.867307,0.526126,0.790789,0.106057,0.800654,0.112052,0.199014,0.581416,0.646025,0.597193,0.573903,0.577065,0.225453,0.778347,0.213981,0.456423,0.883051,0.436983,0.265665,0.414317,0.697889,0.879723,0.939815,0.803889,0.702249,0.212305,0.843358,0.668124,0.193292,0.690988,0.958513,0.456365,0.768774,0.241834,0.525632,0.264427,0.859105,0.578697,0.669205,0.115773,0.544265,0.0920848,0.0437111,0.596767,0.261986,0.645423,0.607089,0.0127664,0.916526,0.876682,0.905415,0.657166,0.80397,0.649447,0.652394,0.918321,0.882393,0.677732,0.504786,0.730625,0.932512,0.665493,0.228895,0.691578,0.357138,0.820837,0.100807,0.48878,0.0905741,0.550504,0.283045,0.590387,0.930956,0.707564,0.559639,0.998807,0.653151,0.779321,0.180716,0.409783,0.595604,0.640396,0.981174,0.386739,0.269256,0.45903,0.339738,0.155852,0.593396,0.186116,0.243966,0.780496,0.563246,0.953585,0.342008,0.531771,0.0464897,0.061147,0.635654,0.195561,0.127848,0.43198,0.166207,0.941604,0.346514,0.553226,0.044682,0.816799,0.931058,0.0902172,0.575207,0.938433,0.166942,0.682387,0.821172,0.101117,0.872938,0.947921,0.206102,0.800017,0.369331,0.473573,0.344282,0.755832,0.626574,0.10901,0.104077,0.670632,0.894284,0.565208,0.796473,0.952344,0.351435,0.0645636,0.128042,0.751026,0.776783,0.251889,0.818511,0.602184,0.242556,0.383297,0.255895,0.132427,0.505025,0.279287,0.642553,0.166645,0.738566,0.147894,0.92263,0.745537,0.812528,0.0878198,0.210309,0.44709,0.133366,0.287541,0.190643,0.361563,0.944763,0.191161,0.876086,0.0700184,0.443195,0.580377,0.241626,0.882338,0.391641,0.090492,0.667521,0.568614,0.383413,0.723563,0.370692,0.214474,0.500509,0.170366,0.392648,0.307272,0.94608,0.375439,0.954439,0.111572,0.174975,0.747454,0.100364,0.299623,0.785149,0.858927,0.307084,0.603294,0.846879,0.351555,0.127541,0.961591,0.108116,0.293894,0.516427,0.116332,0.470041,0.796905,0.0608878,0.443827,0.914889,0.51405,0.724287,0.499833,0.821834,0.732036,0.788903,0.0324489,0.077674,0.942025,0.734321,0.948262,0.41667,0.206265,0.348187,0.949975,0.00824642,0.380761,0.98562,0.636574,0.113448,0.185683,0.220146,0.659512,0.300461,0.856689,0.879294,0.161462,0.400657,0.723272,0.13092,0.800582,0.691908,0.790184,0.057978,0.0844315,0.832593,0.711846,0.440625,0.0365027,0.307781,0.609419,0.602236,0.548583,0.639534,0.812155,0.880699,0.626413,0.259354,0.035535,0.927704,0.610378,0.810803,|0.891412,0.969673,0.732641,0.755862,0.784515,0.379002,0.617715,0.0359398,0.766399,0.939636,0.828789,0.311416,0.375992,0.10214,0.571489,0.147341,0.391659,0.18022,0.0573212,0.468118,0.219453,0.309104,0.736616,0.140296,0.565438,0.455682,0.891365,0.287508,0.510772,0.17721,0.6253,0.631856,0.923186,0.165947,0.791649,0.637669,0.915373,0.906472,0.307037,0.167683,0.301328,0.937969,0.00760788,0.0952125,0.157933,0.564996,0.578996,0.597225,0.265016,0.300828,0.942982,0.183694,0.889468,0.910701,0.214857,0.978755,0.529229,0.314237,0.866683,0.908044,0.422345,0.32909,0.0316305,0.0421578,0.453337,0.344593,0.0585722,0.875491,0.56086,0.523836,0.830903,0.774956,0.165157,0.0710766,0.721654,0.323685,0.487912,0.437886,0.567927,0.312036,0.152978,0.222104,0.297344,0.493342,0.0528659,0.123828,0.103044,0.843207,0.37653,0.358751,0.0126517,0.318159,0.154877,0.28685,0.989662,0.760177,0.554309,0.529229,0.568491,0.653874,0.947125,0.513829,0.214944,0.202438,0.480851,0.48244,0.365388,0.197827,0.097835,0.546556,0.737853,0.757905,0.260401,0.377977,0.271388,0.896957,0.251244,0.0322717,0.22879,0.891984,0.74895,0.481091,0.527723,0.776681,0.668089,0.994528,0.500182,0.413805,0.628377,0.345666,0.638342,0.413345,0.889826,0.25565,0.523575,0.455559,0.769204,0.258412,0.125345,0.0117142,0.332298,0.376598,0.631231,0.26082,0.304093,0.760254,0.28994,0.347627,0.982805,0.910135,0.527503,0.883251,0.913033,0.783061,0.878367,0.315004,0.959007,0.164336,0.287505,0.681722,0.37166,0.65387,0.682165,0.578633,0.317609,0.570693,0.905456,0.0487586,0.49403,0.208128,0.955343,0.820248,0.681328,0.282895,0.119932,0.29246,0.816776,0.122593,0.273016,0.292683,0.972124,0.551126,0.111707,0.728189,0.413647,0.938581,0.568308,0.473616,0.173743,0.839027,0.573245,0.953204,0.395517,0.828625,0.306654,0.828591,0.264367,0.451068,0.229924,0.146518,0.321865,0.643424,0.147837,0.781294,0.159571,0.373267,0.634005,0.552296,0.769049,0.966337,0.287779,0.797616,0.0668795,0.528943,0.615678,0.747409,0.324595,0.166175,0.253799,0.766861,0.316972,0.23756,0.977018,0.784728,0.776815,0.554261,0.971079,0.991417,0.229469,0.683201,0.840332,0.253469,0.440072,0.866235,0.302231,0.36575,0.820848,0.0128867,0.916226,0.627138,0.668161,0.0727783,0.511946,0.922079,0.386684,0.677438,0.840198,0.852007,0.984053,0.740365,0.649516,0.829291,0.462549,0.306187,0.693662,0.386502,0.122688,0.58374,0.856309,0.815256,0.745927,0.351115,0.300217,0.473988,0.898835,0.211908,0.79362,0.658636,0.404853,0.67834,0.85242,0.38708,0.0797008,0.611531,0.626481,0.0744846,0.751203,0.914461,0.238826,0.0905876,0.525475,0.00677544,0.650368,0.802656,0.820384,0.683104,0.540049,0.904137,0.65549,0.764546,0.808951,0.910815,0.0313126,0.329658,0.557437,0.305882,0.494444,0.389675,0.409316,0.097443,0.917979,0.333992,0.383102,0.488282,0.235789,0.512266,0.266223,0.246198,0.251715,0.81518,0.807168,0.410036,0.375788,0.583278,0.836055,0.247351,0.0373356,0.67885,0.412699,0.503874,0.914328,0.450725,0.820926,0.304771,0.453529,0.681995,0.70346,0.342691,0.887009,0.188261,0.99157,0.738418,0.569012,0.305109,0.687752,0.0236257,0.796642,0.759101,0.58161,0.384669,0.861881,0.953832,0.463749,0.905994,0.721744,0.396573,0.0379676,0.73721,0.739344,0.434913,0.527786,0.718997,0.310921,0.703971,0.256154,0.337959,0.35106,0.15009,0.5137,0.748161,0.35121,0.375885,0.541672,0.800569,0.477616,0.714147,0.455429,0.507667,0.599291,0.975876,0.928255,0.643666,0.296048,0.436925,0.318761,0.160259,0.523232,0.0931037,0.308955,0.666182,0.919238,0.699456,0.329837,0.218542,0.824636,0.0586885,0.15617,0.533157,0.266415,0.337174,0.0572344,0.175185,0.121177,0.211,0.307826,0.783359,0.0873016,0.284512,0.56142,0.0861587,0.560128,0.0498771,0.962626,0.0284438,0.0890503,0.319847,0.641028,0.732544,0.159959,0.858609,0.713919,0.260766,0.123362,0.526421,0.211662,0.106848,0.891096,0.913033,0.0547962,0.938664,0.696253,0.534002,0.209427,0.387197,0.274076,0.0383497,0.0805594,0.629731,0.430358,0.419413,0.772127,0.0177646,0.237165,0.32493,0.97385,0.461022,0.979348,0.505931,0.98436,0.903404,0.62369,0.369346,0.609965,0.650251,0.206573,0.778898,0.145362,0.640912,0.458468,0.0425884,0.578737,0.583095,0.644618,0.794215,0.671924,0.711619,0.613612,0.937879,0.834982,0.332241,0.573029,0.593946,0.918646,0.973831,0.488414,0.627284,0.750073,0.934982,0.207079,0.0186042,0.720305,0.0409989,0.955817,0.130859,0.679044,0.677936,0.858619,0.337282,0.858423,0.168667,0.532803,0.664852,0.203427,0.492518,0.639876,0.637688,0.600897,0.317125,0.909095,0.105629,0.469282,0.140928,0.160805,0.755761,0.51849,0.108087,0.393833,0.823146,0.38773,0.773092,0.424072,0.639553,0.554278,0.189759,0.318391,0.736536,0.629391,0.503618,0.814179,0.933416,0.737319,0.288822,0.0913066,0.238529,0.323004,0.885536,0.311378,0.152516,0.0207232,0.682963,0.909205,0.660325,0.320304,0.154304,0.349574,0.027214,0.237199,0.879171,0.697017,0.600746,0.34325,0.572392,0.583967,0.670314,0.70786,0.993966,0.199068,0.271113,0.12977,7.89762e-05,0.855515,0.722596,0.335596,0.56932,0.411913,0.396017,0.0753286,0.583843,0.122336,0.935314,0.905927,0.441817,0.301573,0.785623,0.706765,0.704756,0.395821,0.229699,0.0694453,0.194112,0.425056,0.527712,0.956247,0.591807,0.316702,0.664728,0.726099,0.835992,0.607081,0.478833,0.939246,0.293461,0.165598,0.45234,0.390403,0.0601496,0.755448,0.754689,0.719561,0.0508901,0.350515,0.690311,0.548882,0.491746,0.762455,0.131995,0.407959,0.763741,0.556823,0.915794,0.766297,0.1045,0.00222772,0.0852145,0.968599,0.7274,0.0227413,0.733786,0.194757,0.504892,0.0531513,0.524639,0.722116,0.657431,0.486711,0.770317,0.802447,0.663533,0.366198,0.45845,0.359622,0.0931981,0.583026,0.130599,0.249654,0.696647,0.143998,0.496376,0.11316,0.677557,0.490184,0.158058,0.368018,0.860962,0.488666,0.492866,0.712582,0.0875617,0.1223,0.479753,0.212434,0.0144781,0.961734,0.632687,0.753182,0.909167,0.465962,0.07782,0.260932,0.452735,0.0871281,0.0464756,0.0660453,0.403606,0.0098663,0.00188231,0.625961,0.17395,0.571731,0.526793,0.510869,0.672581,0.305182,0.234228,0.134682,0.352439,0.763879,0.517765,0.479658,0.54862,0.106539,0.400935,0.563428,0.581641,0.838536,0.318122,0.322067,0.73257,0.649509,0.0629382,0.332487,0.229088,0.543089,0.525953,0.650959,0.641771,0.267398,0.0750408,0.948404,0.85526,0.0760347,0.251274,0.415477,0.742311,0.602537,0.717749,0.0870823,0.868887,0.456371,0.607784,0.899996,0.260763,0.823985,0.321102,0.159095,0.617519,0.0163447,0.899958,0.266477,0.41823,0.258842,0.342974,0.938115,0.0226778,0.536489,0.258851,0.23801,0.0108632,0.16772,0.440404,0.125884,0.414346,0.332924,0.77682,0.60923,0.417627,0.815087,0.424404,0.254208,0.0672592,0.91811,0.34982,0.252678,0.687841,0.264858,0.985959,0.438212,0.13934,0.129059,0.428181,0.208328,0.229903,0.638179,0.243285,0.52433,0.925745,0.194076,0.0819728,0.0575013,0.285746,0.972143,0.933097,0.155142,0.498971,0.751923,0.621892,0.337243,0.859689,0.544725,0.435012,0.303587,0.630955,0.746217,0.565071,0.81467,0.869932,0.694684,0.488557,0.353846,0.177224,0.384293,0.996631,0.0953972,0.392217,0.810391,0.560704,0.83492,0.747542,0.0117377,0.0305858,0.091564,0.616921,0.802911,0.360592,0.637552,0.862945,0.290708,0.925045,0.528509,0.774749,0.532846,0.750099,0.96856,0.0451065,0.690055,0.698856,0.916161,0.764486,0.629297,0.428689,0.518716,0.0773024,0.0253735,0.160242,0.655545,0.736525,0.559064,0.100644,0.52689,0.783597,0.743496,0.291835,0.665988,0.572709,0.00433552,0.0344915,0.864251,0.392099,0.420392,0.611386,0.889633,0.550852,0.815691,0.909427,0.990354,0.399217,0.582268,0.648726,0.734735,0.949983,0.311006,0.174493,0.721638,0.129103,0.64053,0.428707,0.0663825,0.0703398,0.856411,0.142917,0.138882,0.380948,0.671934,0.857518,0.672512,0.0143458,0.398609,0.0280167,0.349754,0.488381,0.362916,0.543799,0.00381953,0.943564,0.810198,0.702154,0.301678,0.851614,0.782657,0.374979,0.952517,0.088697,0.357734,0.671203,0.657823,0.0821574,0.0164872,0.0589573,0.0437058,0.319771,0.190937,0.0662227,0.401147,0.934418,0.477167,0.345943,0.563689,0.972872,0.556249,0.798158,0.812572,0.951124,0.51393,0.72718,0.486418,0.633357,0.11288,0.28478,0.692645,0.769047,0.827586,0.749654,0.267211,0.501248,0.159514,0.296874,0.0351823,0.169421,0.665508,0.331014,0.848053,0.597813,0.340914,0.0168688,0.374892,0.455635,0.648942,0.726758,0.938587,0.161428,0.14011,0.883368,0.309648,0.441189,0.298267,0.177948,0.286249,0.510478,0.565509,0.558033,0.78523,0.930264,0.292093,0.509715,0.014264,0.211302,0.689817,0.613898,0.213129,0.29506,0.197119,0.728942,0.916612,0.577828,0.940161,0.950245,0.191037,0.7757,0.320063,0.91434,0.100822,0.0818858,0.00590158,0.445287,0.122369,0.657778,0.0291951,0.82751,0.76052,0.229432,0.995773,0.551718,0.360493,0.750133,0.0789079,0.882512,0.847017,0.731109,0.321552,0.360793,0.964118,0.902581,0.0632333,0.20015,0.0480723,0.243847,0.517403,0.830994,0.567293,0.43341,0.795811,0.362733,0.311134,0.771488,0.249825,0.555361,0.267328,0.607709,0.473776,0.678952,0.773707,0.561424,0.908698,0.230036,0.741087,0.624642,0.324507,0.463631,0.80279,0.935498,0.0905958,0.0778555,0.601915,0.603904,0.645018,0.203397,0.889236,0.901767,0.87445,0.947662,0.238235,0.12378,0.0787497,0.949234,0.41287,0.516418,0.317295,0.38302,0.0224866,0.166948,|0.736699,0.542532,0.508284,0.963036,0.19036,0.873055,0.58937,0.101758,0.679738,0.265658,0.904419,0.11964,0.162124,0.531545,0.980734,0.224018,0.00783741,0.163733,0.854486,0.404678,0.771091,0.17273,0.0958462,0.454742,0.43099,0.011014,0.235249,0.998208,0.660631,0.419809,0.591644,0.160755,0.532824,0.279073,0.574425,0.19614,0.759186,0.0310768,0.687431,0.317651,0.686572,0.930094,0.517474,0.78916,0.72813,0.67414,0.34887,0.0622631,0.637943,0.907131,0.362722,0.653293,0.321302,0.470861,0.151834,0.806052,0.165459,0.779268,0.540154,0.76635,0.558222,0.851001,0.247004,0.0605977,0.869454,0.644554,0.470242,0.122047,0.455108,0.0377486,0.938173,0.678,0.566945,0.180884,0.50604,0.772874,0.729373,0.968148,0.661369,0.466816,0.959232,0.786894,0.758723,0.22673,0.475588,0.525626,0.194636,0.243189,0.314554,0.784707,0.272886,0.466463,0.745449,0.12457,0.504892,0.832376,0.37298,0.44227,0.307437,0.219743,0.0327329,0.388803,0.845373,0.0898884,0.557903,0.626975,0.956316,0.1392,0.790676,0.687468,0.362046,0.118665,0.541907,0.03774,0.754318,0.0827018,0.604157,0.291267,0.620805,0.786536,0.423788,0.570688,0.629865,0.0100587,0.163902,0.181533,0.897965,0.526124,0.793571,0.418793,0.690145,0.252004,0.712231,0.156774,0.432083,0.254162,0.0197969,0.219821,0.726373,0.988453,0.758151,0.559533,0.314211,0.36736,0.772394,0.740074,0.859507,0.996562,0.579618,0.464169,0.251758,0.822905,0.278408,0.203944,0.443466,0.188113,0.204377,0.111385,0.0143769,0.300906,0.338681,0.251597,0.225343,0.16922,0.686668,0.570762,0.0547972,0.163472,0.893107,0.851734,0.488967,0.888228,0.488535,0.906775,0.934457,0.10302,0.8093,0.0469074,0.86314,0.175916,0.785863,0.780107,0.360993,0.34216,0.891341,0.800178,0.566209,0.4064,0.444519,0.752396,0.930626,0.814227,0.397598,0.413301,0.838487,0.65606,0.652716,0.413594,0.472452,0.443038,0.611751,0.0122992,0.57101,0.0284846,0.24347,0.23903,0.48448,0.812779,0.0626065,0.844624,0.796278,0.523212,0.675809,0.121714,0.418589,0.989083,0.0522711,0.0528098,0.290128,0.399962,0.79363,0.748977,0.313664,0.286125,0.913298,0.369527,0.542796,0.73235,0.964988,0.661868,0.309063,0.289707,0.878625,0.0813484,0.168356,0.952782,0.590647,0.353706,0.95076,0.471154,0.105304,0.73289,0.776165,0.279587,0.988113,0.464091,0.796152,0.445525,0.701366,0.154083,0.439645,0.0183023,0.315711,0.290928,0.447209,0.25669,0.853893,0.627355,0.690254,0.000169873,0.55072,0.0693017,0.704374,0.294723,0.991721,0.710422,0.964852,0.930949,0.988989,0.229753,0.70973,0.281595,0.736954,0.97299,0.436401,0.818683,0.456178,0.562025,0.709611,0.0949304,0.81496,0.545717,0.0320722,0.465766,0.185513,0.158093,0.168049,0.484129,0.945749,0.75346,0.218756,0.332589,0.380232,0.0269628,0.634092,0.699266,0.836258,0.476194,0.966279,0.752623,0.966484,0.269769,0.623267,0.639889,0.331255,0.336805,0.55392,0.591083,0.42148,0.731592,0.367568,0.955967,0.910566,0.909635,0.601847,0.204748,0.678033,0.211489,0.345786,0.487119,0.497423,0.00226021,0.322894,0.725862,0.0568309,0.53012,0.993853,0.575361,0.188149,0.71196,0.329662,0.917063,0.133873,0.0986053,0.81971,0.52251,0.336434,0.374316,0.685593,0.862709,0.492113,0.0569492,0.694114,0.559941,0.521634,0.494616,0.0773501,0.198547,0.587238,0.246067,0.331,0.353434,0.653102,0.612789,0.314916,0.0434906,0.30975,0.897987,0.405679,0.214314,0.94135,0.300605,0.832677,0.902253,0.338036,0.913973,0.246853,0.410707,0.591502,0.90407,0.785242,0.752041,0.176734,0.0713704,0.071021,0.604044,0.281828,0.747993,0.822827,0.738541,0.636525,0.784629,0.485188,0.285247,0.749387,0.657676,0.999868,0.0410901,0.434612,0.424328,0.913854,0.150085,0.140884,0.298818,0.368604,0.072356,0.119798,0.412884,0.831353,0.463764,0.490584,0.796725,0.931477,0.368274,0.909503,0.829983,0.727425,0.46699,0.566417,0.610827,0.457178,0.443282,0.774589,0.980057,0.965384,0.678505,0.669182,0.564648,0.826994,0.0947216,0.935004,0.0127869,0.595935,0.00606298,0.402776,0.180287,0.617514,0.758843,0.0774464,0.527261,0.255828,0.0699298,0.795997,0.0386527,0.322149,0.157023,0.231515,0.163601,0.690669,0.182166,0.922795,0.499689,0.242444,0.317188,0.419573,0.291376,0.18756,0.587887,0.771435,0.376232,0.479578,0.620276,0.963527,0.463501,0.464826,0.525814,0.355686,0.91842,0.0185833,0.386617,0.206789,0.0997559,0.472307,0.714779,0.155317,0.991192,0.628656,0.0456317,0.0412182,0.602123,0.184502,0.262874,0.745416,0.259173,0.991045,0.0237894,0.0129283,0.480432,0.745926,0.936814,0.978017,0.533305,0.259209,0.475062,0.74711,0.0852926,0.159053,0.710975,0.374277,0.596121,0.257419,0.751685,0.99859,0.205325,0.125716,0.484192,0.825264,0.304919,0.321948,0.964975,0.44769,0.288682,0.719816,0.88381,0.178776,0.407096,0.934939,0.747593,0.327511,0.636134,0.764444,0.25326,0.237787,0.953013,0.603685,0.414477,0.988964,0.816857,0.190345,0.298298,0.46542,0.533895,0.130335,0.513197,0.402393,0.194148,0.121766,0.919981,0.411518,0.291655,0.0839319,0.833962,0.767759,0.164002,0.486457,0.562694,0.910111,0.803228,0.295832,0.340694,0.970501,0.385555,0.786978,0.642426,0.777385,0.135203,0.38712,0.443107,0.567977,0.552619,0.944296,0.908506,0.473326,0.745529,0.801496,0.493539,0.626837,0.243177,0.175221,0.78041,0.472254,0.765756,0.366127,0.601889,0.221492,0.645189,0.834752,0.109777,0.636271,0.254646,0.318124,0.440277,0.184752,0.715904,0.50409,0.511269,0.391084,0.214097,0.295518,0.696297,0.694941,0.871756,0.707048,0.396584,0.28044,0.612425,0.379596,0.918585,0.803727,0.586058,0.0291861,0.313353,0.765253,0.710385,0.569845,0.542634,0.687873,0.843192,0.841986,0.554455,0.86876,0.53721,0.197372,0.267803,0.324848,0.398896,0.462243,0.201159,0.499742,0.326663,0.485064,0.855945,0.103135,0.632182,0.0177577,0.553682,0.415512,0.886598,0.620999,0.403794,0.189496,0.983363,0.789385,0.0614761,0.946258,0.00262928,0.879852,0.367944,0.827013,0.592936,0.711466,0.118932,0.254587,0.431897,0.224346,0.974039,0.443286,0.960294,0.86846,0.900177,0.606312,0.621826,0.0217075,0.127259,0.901036,0.659213,0.28528,0.916236,0.2886,0.969237,0.982943,0.577963,0.684712,0.563749,0.541265,0.171042,0.330418,0.643009,0.617761,0.100734,0.288789,0.466365,0.233059,0.435021,0.679955,0.593187,0.993913,0.721335,0.696752,0.148736,0.584219,0.87929,0.169812,0.0505278,0.0047735,0.197323,0.297835,0.427042,0.159276,0.295091,0.940551,0.487272,0.567878,0.00935751,0.530267,0.862599,0.102797,0.752315,0.858529,0.604256,0.792876,0.868145,0.0923694,0.088038,0.462952,0.849358,0.892596,0.513519,0.547021,0.837616,0.256415,0.128008,0.425171,0.488231,0.290514,0.21544,0.0950491,0.348842,0.242349,0.248618,0.412683,0.655374,0.173416,0.629478,0.45526,0.589812,0.739143,0.322804,0.888912,0.0215034,0.621199,0.280378,0.198751,0.1482,0.820819,0.337524,0.87455,0.453908,0.0229319,0.461791,0.640384,0.37241,0.0703701,0.0795713,0.950886,0.315547,0.286218,0.533414,0.970056,0.542777,0.779826,0.879839,0.452005,0.703637,0.220752,0.703038,0.150346,0.529189,0.0198525,0.478851,0.361166,0.204323,0.184519,0.598993,0.276191,0.803402,0.969629,0.19192,0.199776,0.0384331,0.619967,0.355436,0.394578,0.808248,0.99401,0.381486,0.572447,0.169816,0.172177,0.700513,0.159332,0.549571,0.629058,0.792943,0.471723,0.885188,0.106097,0.858596,0.416934,0.381449,0.047502,0.680802,0.452631,0.709648,0.0464704,0.315398,0.451534,0.0391062,0.214776,0.884486,0.488021,0.968894,0.441103,0.127259,0.410617,0.0281903,0.154521,0.0837169,0.00167042,0.0996148,0.479567,0.337542,0.957595,0.0683062,0.182151,0.542328,0.0576865,0.667988,0.897437,0.690518,0.915652,0.749964,0.637172,0.548822,0.390593,0.253186,0.868935,0.969037,0.385341,0.108981,0.63133,0.505312,0.178029,0.361629,0.426637,0.633206,0.656772,0.0307944,0.446853,0.649163,0.462585,0.752395,0.292714,0.504913,0.352158,0.799436,0.66327,0.730104,0.777185,0.634531,0.275362,0.141987,0.375072,0.607587,0.80489,0.363938,0.464467,0.528744,0.893363,0.750327,0.53467,0.933214,0.524136,0.971791,0.954829,0.987961,0.855986,0.603408,0.0350307,0.899019,0.585477,0.618483,0.672292,0.130831,0.170451,0.361509,0.191277,0.440577,0.64424,0.498001,0.800834,0.0721473,0.902711,0.211682,0.139586,0.681684,0.733586,0.69976,0.0833409,0.408269,0.530289,0.800226,0.190181,0.0732606,0.774788,0.664484,0.91576,0.822686,0.0638616,0.214658,0.790198,0.56328,0.746966,0.294529,0.415143,0.633802,0.642654,0.615737,0.988855,0.601549,0.918044,0.908132,0.398812,0.677965,0.707912,0.651301,0.450385,0.82713,0.194316,0.0246662,0.750304,0.0439072,0.115791,0.302432,0.315647,0.383205,0.691182,0.998839,0.333952,0.108822,0.268238,0.390396,0.287889,0.0665058,0.213789,0.931927,0.926223,0.435487,0.525936,0.553449,0.67497,0.81255,0.852362,0.118075,0.437617,0.816225,0.96608,0.588242,0.396422,0.970696,0.435601,0.260566,0.904625,0.731173,0.550326,0.426319,0.326945,0.407797,0.0189561,0.312073,0.235141,0.270193,0.597665,0.756745,0.228097,0.763976,0.956796,0.742672,0.842717,0.867293,0.727344,0.821327,0.502643,0.255842,0.246451,0.757478,0.816492,0.333356,0.832126,0.921269,0.251796,0.962817,0.536179,0.281086,0.485745,0.747573,0.369049,0.269979,0.0768383,0.75314,0.28022,0.512827,0.650965,0.652933,0.286609,0.737069,0.631803,0.222508,0.453974,0.176366,0.518098,0.0925263,0.420384,0.0799721,0.680393,0.58321,0.774305,0.0142432,0.581472,0.903013,|0.565783,0.333834,0.581968,0.865029,0.638477,0.432609,0.974225,0.469743,0.834863,0.648663,0.513223,0.130329,0.0943298,0.0508261,0.750194,0.293963,0.38019,0.483993,0.268524,0.955038,0.797577,0.000766993,0.381615,0.506484,0.0629269,0.888234,0.180758,0.0671153,0.80089,0.334595,0.117462,0.6817,0.675497,0.616515,0.884421,0.556268,0.175472,0.920128,0.0361379,0.132839,0.938604,0.610708,0.940344,0.328802,0.323777,0.911158,0.402622,0.198637,0.0701436,0.735214,0.869885,0.707552,0.184539,0.886471,0.960826,0.0891473,0.48657,0.198971,0.753673,0.617495,0.433446,0.275856,0.900639,0.90725,0.463853,0.541808,0.0563757,0.319228,0.238481,0.973186,0.423696,0.976381,0.793364,0.923936,0.000958622,0.465772,0.0923759,0.641679,0.987968,0.65027,0.999359,0.46169,0.550903,0.425847,0.898053,0.473713,0.617283,0.668901,0.0173153,0.805636,0.59884,0.381995,0.457502,0.0651553,0.00174421,0.773616,0.334458,0.96681,0.32902,0.686556,0.173747,0.0491321,0.0730462,0.809027,0.736381,0.64658,0.862042,0.0499943,0.33612,0.773274,0.205324,0.700653,0.146443,0.72961,0.47291,0.885193,0.34104,0.376864,0.309013,0.888987,0.407708,0.0388549,0.454069,0.368242,0.351239,0.774872,0.45252,0.985443,0.273434,0.0602976,0.0609373,0.877307,0.313462,0.719267,0.126834,0.616585,0.646379,0.948596,0.845783,0.814475,0.710719,0.473483,0.566327,0.453327,0.878841,0.674079,0.190347,0.96101,0.225693,0.920985,0.983885,0.411134,0.760014,0.291101,0.977756,0.748497,0.646839,0.235577,0.881625,0.837717,0.433363,0.263284,0.392226,0.458532,0.209818,0.856198,0.259309,0.117229,0.828602,0.479419,0.856179,0.626673,0.349591,0.842702,0.735985,0.779763,0.359509,0.120101,0.936571,0.637819,0.999806,0.356024,0.861737,0.34915,0.904719,0.0657675,0.795082,0.195586,0.416604,0.512059,0.0260093,0.894981,0.846409,0.467136,0.533239,0.784897,0.156608,0.624074,0.193786,0.0431936,0.829816,0.917393,0.0210499,0.392441,0.0664575,0.58456,0.778787,0.842237,0.620821,0.970729,0.452379,0.232938,0.940565,0.738086,0.802357,0.940531,0.573572,0.283472,0.0126286,0.669226,0.282977,0.228513,0.797844,0.68697,0.425671,0.253944,0.839754,0.607423,0.567337,0.730968,0.924028,0.178835,0.175477,0.105682,0.12965,0.633494,0.560337,0.252614,0.77598,0.136377,0.305352,0.231885,0.610086,0.92848,0.0506091,0.225598,0.54366,0.0598313,0.0500804,0.311327,0.853267,0.0403008,0.709667,0.196929,0.732516,0.217105,0.348522,0.393422,0.424846,0.148554,0.25663,0.567697,0.432646,0.449332,0.635022,0.218977,0.965291,0.440608,0.519813,0.456995,0.455296,0.814126,0.477973,0.314579,0.347181,0.00538719,0.649303,0.0599086,0.741677,0.468276,0.949712,0.276873,0.543983,0.997793,0.876217,0.47447,0.142353,0.720639,0.775993,0.738229,0.0512364,0.529101,0.275197,0.457218,0.744439,0.679454,0.197797,0.173215,0.970646,0.722742,0.0872614,0.986936,0.67663,0.140556,0.785851,0.11233,0.376548,0.414377,0.00157368,0.231127,0.0181933,0.0582304,0.99248,0.895991,0.622087,0.775241,0.121151,0.602351,0.61764,0.590051,0.360144,0.324818,0.210573,0.213316,0.977934,0.452091,0.0955175,0.933717,0.57469,0.284478,0.233737,0.311261,0.788489,0.188965,0.606854,0.484017,0.774878,0.56732,0.429786,0.930165,0.655395,0.31978,0.206342,0.584337,0.409388,0.835778,0.947048,0.0168759,0.372872,0.282815,0.162218,0.1183,0.284897,0.0816907,0.261703,0.216179,0.912403,0.0607104,0.894388,0.503534,0.967852,0.708231,0.977232,0.466012,0.342477,0.780265,0.0726261,0.209501,0.998934,0.989362,0.164376,0.875438,0.0631008,0.427921,0.983567,0.0844378,0.0604073,0.22649,0.315455,0.672732,0.329759,0.30682,0.302137,0.805188,0.412561,0.519876,0.309347,0.602133,0.859354,0.579494,0.644252,0.148081,0.311923,0.595249,0.0654352,0.993715,0.189421,0.220632,0.851776,0.804752,0.382194,0.95776,0.84362,0.170781,0.373026,0.357115,0.763929,0.512222,0.63557,0.299362,0.121441,0.098749,0.332667,0.496737,0.452609,0.84635,0.249472,0.402243,0.103253,0.472883,0.505034,0.951542,0.772878,0.136439,0.881675,0.074919,0.320818,0.719757,0.785798,0.676404,0.00345945,0.694626,0.571815,0.0991783,0.409717,0.669563,0.839699,0.921711,0.346554,0.900423,0.508931,0.479484,0.139045,0.376641,0.801774,0.91958,0.933655,0.420445,0.89392,0.650677,0.540692,0.531271,0.210506,0.400832,0.39092,0.141787,0.234716,0.0284898,0.887709,0.670645,0.333793,0.565684,0.533056,0.171007,0.816967,0.484692,0.76466,0.480073,0.967119,0.505661,0.344731,0.115036,0.293071,0.169996,0.113716,0.971732,0.571626,0.551147,0.325979,0.0235442,0.820261,0.295638,0.93939,0.799839,0.866383,0.370016,0.713999,0.613038,0.977969,0.559988,0.224714,0.774393,0.436491,0.675984,0.668358,0.211036,0.629775,0.431794,0.437681,0.78149,0.549583,0.269526,0.476395,0.522601,0.302702,0.364871,0.115149,0.806089,0.832708,0.780522,0.914665,0.166658,0.796542,0.686981,0.828934,0.44845,0.767273,0.247586,0.88676,0.408362,0.341541,0.154069,0.709225,0.962209,0.347888,0.346649,0.965095,0.77951,0.502485,0.0250032,0.651402,0.173338,0.346482,0.0667457,0.88428,0.711196,0.610624,0.738692,0.936379,0.298159,0.722852,0.573358,0.417627,0.0760469,0.704138,0.0954639,0.542972,0.224743,0.925555,0.175301,0.35344,0.915755,0.210989,0.589557,0.688552,0.0808529,0.346468,0.596708,0.158812,0.45726,0.446523,0.0215982,0.847377,0.346631,0.50841,0.220109,0.460537,0.701403,0.913916,0.829143,0.916064,0.620694,0.310315,0.73188,0.165506,0.352474,0.805282,0.699845,0.957803,0.490824,0.962144,0.969117,0.720933,0.762253,0.128121,0.92502,0.84465,0.0129876,0.0813505,0.548116,0.130207,0.50014,0.431203,0.0901554,0.104337,0.363061,0.214306,0.542545,0.243858,0.0234859,0.615526,0.0871141,0.909847,0.853222,0.782202,0.789205,0.426602,0.0314829,0.629924,0.324518,0.722799,0.422975,0.178254,0.149642,0.188765,0.249383,0.106055,0.202462,0.997991,0.51307,0.616716,0.396835,0.133608,0.488787,0.034274,0.275231,0.244345,0.315765,0.416768,0.941626,0.483455,0.141445,0.912929,0.929032,0.350166,0.270531,0.777405,0.894806,0.611929,0.0311454,0.514656,0.28116,0.20736,0.385127,0.639931,0.944676,0.554921,0.836263,0.942777,0.398303,0.439384,0.970468,0.58201,0.410887,0.734062,0.478806,0.865971,0.57639,0.0558723,0.705249,0.655442,0.314934,0.145046,0.0814801,0.292157,0.960708,0.154392,0.724702,0.936647,0.157973,0.313011,0.489849,0.147528,0.676669,0.0532709,0.306166,0.0705725,0.195508,0.464111,0.520035,0.340307,0.95946,0.537567,0.0864961,0.74593,0.448566,0.29079,0.269953,0.679349,0.56382,0.167266,0.865656,0.817402,0.744994,0.781989,0.237577,0.562767,0.945807,0.0987108,0.142511,0.871836,0.276068,0.770129,0.400567,0.129601,0.838598,0.662124,0.544005,0.470323,0.143416,0.346346,0.702636,0.366192,0.175482,0.17137,0.970025,0.579867,0.679782,0.518582,0.991482,0.988754,0.664702,0.239938,0.0151543,0.0425305,0.791101,0.695702,0.113349,0.364621,0.77732,0.655351,0.270605,0.362521,0.958132,0.822521,0.887103,0.609543,0.607667,0.712309,0.796769,0.203539,0.0059166,0.291115,0.538634,0.00341171,0.506005,0.810515,0.474652,0.586812,0.666308,0.41481,0.973437,0.415269,0.723543,0.364144,0.614532,0.8046,0.874431,0.591192,0.129786,0.966262,0.575172,0.811696,0.0888043,0.846965,0.30106,0.144605,0.483178,0.651705,0.012391,0.498677,0.716531,0.967468,0.599575,0.403966,0.286753,0.517945,0.14915,0.184619,0.715419,0.208263,0.123589,0.554477,0.339715,0.975218,0.281156,0.0653276,0.0857788,0.57562,0.0557908,0.647259,0.645467,0.241682,0.236528,0.968746,0.25127,0.176752,0.580993,0.960527,0.155639,0.336618,0.984471,0.894837,0.151376,0.997403,0.206997,0.948164,0.0908821,0.137839,0.150963,0.131919,0.424205,0.31087,0.0770605,0.751647,0.808924,0.074605,0.700152,0.04232,0.964069,0.715793,0.564517,0.499175,0.331614,0.970108,0.607327,0.0740806,0.664581,0.632254,0.150324,0.380832,0.27244,0.29926,0.585095,0.91777,0.22023,0.150272,0.723026,0.217333,0.861509,0.140108,0.442125,0.568987,0.879849,0.986287,0.695912,0.053133,0.153647,0.558406,0.384114,0.135572,0.15516,0.738117,0.882184,0.023429,0.438967,0.15966,0.639746,0.897703,0.940548,0.874523,0.808305,0.52222,0.575799,0.328133,0.648211,0.772907,0.441834,0.10438,0.126467,0.141235,0.122851,0.876271,0.234352,0.104908,0.0474269,0.762003,0.47604,0.271776,0.78407,0.0376093,0.950215,0.15783,0.320318,0.544709,0.538719,0.129478,0.907633,0.0349605,0.811473,0.483742,0.727292,0.302962,0.505855,0.646313,0.538571,0.936077,0.787704,0.962062,0.450475,0.00206125,0.936373,0.714415,0.601084,0.16531,0.356592,0.375971,0.267976,0.329331,0.0632619,0.443963,0.899994,0.925224,0.243671,0.65979,0.884819,0.491786,0.669252,0.0529463,0.889955,0.409366,0.782978,0.945843,0.0718495,0.219506,0.529324,0.958708,0.468772,0.890999,0.7512,0.318481,0.294276,0.0152476,0.535048,0.946379,0.070043,0.870122,0.617408,0.342775,0.382529,0.695526,0.0630276,0.248297,0.22187,0.451054,0.78221,0.325184,0.415141,0.380334,0.23772,0.0990427,0.1718,0.125062,0.372431,0.687,0.293934,0.625846,0.458488,0.0479666,0.88326,0.520536,0.0229095,0.515664,0.958295,0.839046,0.706562,0.290741,0.345586,0.246404,0.869922,0.394859,0.247805,0.477922,0.0737452,0.579445,0.927481,0.491637,0.903666,0.958237,0.659886,0.560817,0.167666,0.645419,0.116618,0.310125,0.377923,0.0171034,0.982645,0.864619,0.749773,0.290759,0.185723,0.598769,0.23842,0.753678,0.210212,0.255056,0.662872,0.648936,0.453106,|0.872864,0.952899,0.219609,0.590347,0.570511,0.788853,0.454241,0.975407,0.883115,0.860211,0.54225,0.302548,0.32425,0.161733,0.334309,0.0317627,0.786467,0.998955,0.753472,0.29299,0.473674,0.480278,0.0496138,0.401508,0.749809,0.129494,0.552422,0.321182,0.265096,0.907815,0.275182,0.672129,0.564967,0.490666,0.797244,0.386178,0.561798,0.972242,0.731483,0.0629657,0.235103,0.239186,0.47634,0.791204,0.792044,0.247322,0.600403,0.794611,0.074609,0.612673,0.0486596,0.456437,0.115331,0.380682,0.414252,0.344851,0.936196,0.544703,0.507908,0.181259,0.979781,0.67579,0.608431,0.672364,0.78405,0.50652,0.160556,0.154022,0.283267,0.346026,0.925761,0.748146,0.773595,0.489889,0.456274,0.650691,0.910566,0.658732,0.154834,0.381543,0.71744,0.145545,0.113665,0.359245,0.440262,0.596567,0.390839,0.984468,0.38042,0.620541,0.392093,0.760699,0.468849,0.80492,0.174936,0.966246,0.284907,0.0135491,0.636941,0.273792,0.921309,0.454309,0.2826,0.931228,0.293751,0.90163,0.749212,0.301155,0.315493,0.700432,0.480275,0.953576,0.43125,0.067009,0.869094,0.321963,0.61394,0.852399,0.607429,0.569635,0.556471,0.962283,0.471114,0.198493,0.839589,0.505608,0.250676,0.295392,0.0939751,0.903685,0.0580948,0.551794,0.360623,0.0102089,0.698997,0.856525,0.567323,0.808262,0.6463,0.904588,0.52031,0.431954,0.378143,0.537179,0.0171933,0.536333,0.816004,0.406169,0.0305153,0.952856,0.995965,0.726278,0.437971,0.301213,0.275792,0.830058,0.198656,0.0298803,0.7495,0.260669,0.93094,0.746039,0.262395,0.244063,0.0216008,0.655465,0.185693,0.268466,0.203915,0.0208222,0.624347,0.276032,0.0739698,0.971942,0.496798,0.322597,0.457995,0.2984,0.563235,0.232716,0.101957,0.338344,0.679918,0.0737084,0.171557,0.3931,0.0266639,0.977499,0.821676,0.869612,0.610873,0.355177,0.144536,0.214247,0.2648,0.673784,0.769886,0.391578,0.897973,0.606635,0.626419,0.654499,0.955371,0.14659,0.466088,0.427698,0.25459,0.500081,0.255619,0.305951,0.820144,0.53377,0.679883,0.2225,0.154303,0.817804,0.29236,0.908553,0.916257,0.897874,0.792073,0.32321,0.689773,0.72885,0.761309,0.0363124,0.316641,0.13693,0.585526,0.511905,0.804115,0.626901,0.8549,0.38234,0.0829936,0.195169,0.676429,0.765787,0.0844856,0.221522,0.709485,0.204876,0.365532,0.877403,0.387536,0.969285,0.571351,0.662971,0.735018,0.0738279,0.511162,0.26992,0.256788,0.341445,0.803263,0.562486,0.540526,0.991478,0.911064,0.453832,0.370505,0.262838,0.636014,0.743976,0.473532,0.250447,0.269553,0.200154,0.416196,0.791973,0.995721,0.60819,0.435766,0.806205,0.319804,0.195855,0.103155,0.447697,0.072203,0.215016,0.0562555,0.663911,0.347771,0.98201,0.213414,0.987612,0.671531,0.0925636,0.46278,0.379814,0.463391,0.398253,0.985972,0.0359968,0.596557,0.244791,0.630485,0.332545,0.349539,0.475227,0.201179,0.0840173,0.0744102,0.87285,0.610744,0.472376,0.750197,0.220555,0.799573,0.617507,0.137091,0.715647,0.315077,0.975849,0.0610101,0.440737,0.162733,0.275562,0.525941,0.771528,0.365562,0.754237,0.340747,0.960546,0.760246,0.52326,0.379251,0.014375,0.91368,0.229428,0.30915,0.597264,0.149913,0.264806,0.0850608,0.650188,0.929893,0.842168,0.709268,0.976785,0.583957,0.433587,0.280044,0.0770218,0.437481,0.81076,0.00903296,0.402118,0.124288,0.189108,0.190796,0.331385,0.437986,0.524987,0.108029,0.289051,0.464624,0.113263,0.654865,0.308306,0.617944,0.333905,0.0976731,0.110435,0.398337,0.218345,0.55318,0.54739,0.253585,0.216792,0.757499,0.426921,0.923108,0.756318,0.581239,0.700906,0.838068,0.975205,0.726006,0.398828,0.614368,0.372999,0.232037,0.910123,0.101919,0.87745,0.902881,0.478901,0.444008,0.0947955,0.862599,0.32839,0.586083,0.94309,0.288553,0.658235,0.890753,0.100645,0.237378,0.546725,0.00678384,0.68869,0.653407,0.676088,0.819798,0.565916,0.40387,0.748174,0.420723,0.107024,0.554629,0.46856,0.661987,0.442418,0.566622,0.34781,0.231118,0.649796,0.00383931,0.943188,0.310075,0.30001,0.544163,0.762013,0.890412,0.623898,0.682761,0.297124,0.110182,0.294612,0.407138,0.030387,0.0712181,0.0125347,0.503124,0.420244,0.698075,0.552292,0.825276,0.583098,0.862801,0.575725,0.662625,0.130325,0.204722,0.375216,0.387745,0.116106,0.990989,0.431046,0.654209,0.746557,0.460575,0.510922,0.231362,0.234107,0.0390644,0.232415,0.766469,0.5888,0.376708,0.846739,0.667278,0.913445,0.476329,0.902086,0.985381,0.122308,0.481825,0.23278,0.343001,0.728078,0.616667,0.214194,0.983052,0.115789,0.526535,0.465345,0.433568,0.353992,0.636049,0.98481,0.15995,0.0553467,0.754535,0.41677,0.982387,0.725752,0.0106291,0.425115,0.329921,0.478468,0.501347,0.645151,0.336057,0.109388,0.607999,0.374474,0.891503,0.0900164,0.792973,0.183188,0.139801,0.663341,0.0855808,0.713689,0.202851,0.581132,0.238983,0.0746643,0.087597,0.010999,0.454983,0.604767,0.901055,0.325221,0.406004,0.226014,0.63001,0.613205,0.0427091,0.364196,0.739294,0.701597,0.922722,0.0222899,0.547385,0.930235,0.758556,0.12123,0.490365,0.222519,0.396833,0.667413,0.993419,0.765726,0.140629,0.68513,0.945129,0.199346,0.448294,0.403852,0.995338,0.112674,0.295378,0.950875,0.490918,0.566367,0.888479,0.609215,0.201872,0.204898,0.994805,0.750899,0.94889,0.945093,0.00570673,0.21089,0.990313,0.778728,0.206698,0.164393,0.512325,0.708199,0.36944,0.351675,0.849517,0.179731,0.670228,0.150956,0.842902,0.422706,0.913064,0.0645272,0.694111,0.554632,0.434772,0.169407,0.528318,0.415978,0.390023,0.363242,0.277281,0.597145,0.288777,0.368871,0.637369,0.440013,0.860119,0.529441,0.763869,0.398974,0.749473,0.41739,0.204273,0.00198287,0.539494,0.963115,0.806311,0.386818,0.953337,0.908125,0.63067,0.887341,0.835793,0.970357,0.643557,0.185423,0.467814,0.014424,0.845441,0.165646,0.38804,0.997924,0.981322,0.885104,0.00731295,0.886351,0.502009,0.311685,0.992034,0.165213,0.963815,0.457145,0.257058,0.0332891,0.947202,0.461828,0.513226,0.549816,0.840357,0.90583,0.969856,0.0192029,0.69397,0.294778,0.474867,0.937126,0.429571,0.383765,0.942612,0.769505,0.5431,0.598214,0.0472698,0.297826,0.375802,0.210911,0.0532395,0.187324,0.41922,0.301054,0.727805,0.602713,0.32728,0.565783,0.822901,0.694965,0.696416,0.402117,0.605263,0.750281,0.366619,0.210762,0.825904,0.806921,0.653023,0.407431,0.600736,0.128186,0.568654,0.798545,0.574756,0.0167696,0.296986,0.100195,0.431127,0.311051,0.492572,0.414649,0.121965,0.764076,0.247853,0.910473,0.0675806,0.5858,0.992496,0.157736,0.459134,0.577997,0.693601,0.787429,0.976161,0.638629,0.0584767,0.309251,0.354029,0.0597028,0.669928,0.214313,0.904513,0.570741,0.188554,0.170078,0.357808,0.249732,0.217807,0.97094,0.314949,0.713576,0.945211,0.0189375,0.754873,0.494821,0.972217,0.274959,0.409906,0.3232,0.77153,0.356072,0.600683,0.575403,0.555624,0.206796,0.887548,0.603201,0.730785,0.993116,0.72377,0.750355,0.680952,0.702484,0.985101,0.9344,0.0802023,0.0786228,0.0465764,0.211171,0.802436,0.510597,0.962784,0.735562,0.779211,0.713321,0.683921,0.915643,0.879962,0.961249,0.7137,0.00562781,0.22358,0.691239,0.895794,0.0151103,0.831362,0.987082,0.363642,0.880113,0.690278,0.731352,0.238576,0.676423,0.526599,0.325846,0.578575,0.490582,0.69154,0.960244,0.848531,0.882699,0.800306,0.775231,0.303441,0.61942,0.0983933,0.474324,0.449072,0.888386,0.393211,0.19179,0.599935,0.550118,0.842277,0.303668,0.178256,0.0440344,0.984496,0.775718,0.119499,0.123981,0.258266,0.343921,0.990469,0.541485,0.202522,0.974757,0.0808782,0.693156,0.415006,0.486113,0.133005,0.719915,0.126522,0.645829,0.510514,0.127087,0.455072,0.995301,0.723099,0.0228647,0.870107,0.936461,0.236327,0.400306,0.00522608,0.514181,0.0161766,0.677684,0.297414,0.361669,0.483762,0.111923,0.337157,0.762361,0.375426,0.325043,0.367823,0.553921,0.634091,0.10398,0.828803,0.683883,0.0872551,0.14365,0.557657,0.162309,0.415318,0.770846,0.091748,0.740765,0.3336,0.314294,0.444587,0.946032,0.858999,0.0666935,0.364536,0.423156,0.0609832,0.0439554,0.392272,0.991221,0.717939,0.124698,0.622927,0.212527,0.37443,0.168727,0.941483,0.0714602,0.851935,0.774305,0.843846,0.583465,0.970123,0.657295,0.24085,0.877748,0.2721,0.87046,0.206456,0.961195,0.268045,0.145645,0.744039,0.756268,0.058715,0.958052,0.821964,0.0383813,0.517939,0.194316,0.732724,0.19543,0.0759069,0.288739,0.756488,0.502193,0.310771,0.706893,0.710208,0.110017,0.859679,0.541452,0.619969,0.318453,0.186689,0.594486,0.873545,0.0274522,0.0646731,0.891728,0.442028,0.212132,0.537744,0.0528584,0.494536,0.582176,0.105228,0.742974,0.74636,0.155475,0.865968,0.313127,0.777908,0.276241,0.964499,0.1091,0.490536,0.401981,0.552788,0.103245,0.376014,0.626898,0.800114,0.382705,0.690277,0.0637583,0.382473,0.0690585,0.397744,0.384757,0.822467,0.203116,0.188518,0.0674445,0.731104,0.544674,0.538848,0.658808,0.165913,0.447005,0.147946,0.86368,0.715258,0.289923,0.802912,0.623764,0.560755,0.184549,0.407135,0.747385,0.446027,0.66205,0.0440701,0.759347,0.0377067,0.697153,0.966496,0.0600157,0.73224,0.702298,0.345431,0.00869977,0.341827,0.877919,0.227297,0.671736,0.371954,0.81062,0.916428,0.988321,0.296671,0.661798,0.840801,0.899561,0.213809,0.627573,0.123117,0.673126,0.760008,0.506794,0.831775,0.292546,0.892178,0.298439,0.308199,0.219993,0.679758,0.136914,0.576666,0.276318,0.615887,0.343038,0.559212,0.770216,0.188352,0.732265,0.202133,0.708488,|0.4481,0.546345,0.201613,0.751149,0.608752,0.370777,0.145325,0.263211,0.869209,0.704851,0.5782,0.462563,0.429914,0.822064,0.82105,0.584505,0.828583,0.932573,0.467546,0.974988,0.392803,0.61944,0.935629,0.81263,0.472752,0.733271,0.697889,0.390319,0.953798,0.133478,0.0610439,0.179084,0.400213,0.257545,0.862555,0.232111,0.187704,0.554367,0.700253,0.380846,0.489534,0.787099,0.551068,0.653739,0.108092,0.476643,0.805442,0.684345,0.31028,0.359835,0.284393,0.620889,0.320991,0.565254,0.603529,0.989536,0.988216,0.415703,0.624047,0.468352,0.244765,0.545914,0.646111,0.359118,0.37583,0.866643,0.266921,0.260969,0.994182,0.94638,0.410816,0.187629,0.336097,0.368631,0.0934003,0.438832,0.298662,0.539369,0.479498,0.764486,0.638813,0.470519,0.354943,0.445886,0.530634,0.58716,0.233202,0.323574,0.132705,0.178846,0.851388,0.228043,0.0285389,0.575146,0.346619,0.714534,0.603779,0.993128,0.0735723,0.46343,0.0368518,0.644083,0.852551,0.949288,0.0943058,0.871169,0.570537,0.704293,0.676636,0.548705,0.0947059,0.357084,0.919299,0.849146,0.664148,0.00108588,0.268393,0.815447,0.414318,0.290028,0.56313,0.167943,0.101616,0.34198,0.724293,0.679954,0.931124,0.352897,0.736401,0.790482,0.0709805,0.842278,0.0688951,0.00919592,0.470462,0.657305,0.0862479,0.771331,0.924556,0.789028,0.58981,0.457428,0.924775,0.052317,0.146086,0.360032,0.0925426,0.457456,0.850672,0.219973,0.887803,0.576694,0.280807,0.473785,0.665313,0.418727,0.678502,0.145748,0.440268,0.595037,0.74007,0.36447,0.638091,0.948772,0.572647,0.652775,0.395203,0.344346,0.283535,0.176511,0.750841,0.748288,0.581975,0.545072,0.984489,0.775313,0.878559,0.485361,0.783268,0.981662,0.948122,0.128945,0.171202,0.216457,0.154162,0.677149,0.525956,0.950431,0.00106329,0.869215,0.247332,0.814762,0.196714,0.257708,0.071346,0.957634,0.453026,0.514092,0.0069018,0.179829,0.370333,0.574732,0.978349,0.0246987,0.536878,0.637617,0.150254,0.491208,0.18847,0.656883,0.731875,0.161404,0.821061,0.342746,0.252195,0.550542,0.440646,0.81143,0.655888,0.979267,0.076656,0.916898,0.960966,0.706187,0.398908,0.80046,0.487196,0.79476,0.682632,0.241169,0.620185,0.455641,0.292828,0.649251,0.102143,0.139317,0.993468,0.880848,0.742299,0.306106,0.522951,0.255704,0.075503,0.779889,0.802478,0.399914,0.383571,0.337287,0.575414,0.193263,0.813857,0.0197299,0.96385,0.861529,0.899189,0.241068,0.692876,0.0342171,0.427864,0.913273,0.78211,0.508531,0.414536,0.0421687,0.97441,0.942398,0.419031,0.929089,0.164242,0.683139,0.670104,0.937666,0.300721,0.779968,0.487325,0.465739,0.604802,0.116205,0.799145,0.496461,0.455311,0.624817,0.803441,0.871673,0.278404,0.334303,0.146013,0.912226,0.604061,0.393705,0.360492,0.663976,0.739636,0.315785,0.558073,0.147836,0.904414,0.404952,0.463981,0.64906,0.723767,0.122977,0.728408,0.488025,0.204485,0.250191,0.0397487,0.351207,0.36554,0.588267,0.613386,0.411254,0.539747,0.967338,0.0945525,0.556388,0.213375,0.101615,0.777249,0.0290656,0.0809876,0.116549,0.107342,0.213085,0.466519,0.527353,0.615451,0.0680142,0.217441,0.530944,0.711881,0.304407,0.990168,0.61389,0.319693,0.507082,0.0467765,0.388507,0.686844,0.240449,0.230346,0.563919,0.728664,0.486674,0.240203,0.077408,0.00479245,0.889935,0.888286,0.922649,0.218455,0.0264457,0.951512,0.971158,0.494373,0.654151,0.51491,0.504359,0.87261,0.965951,0.18263,0.419744,0.10723,0.576248,0.366244,0.755708,0.727956,0.2967,0.965174,0.344372,0.258299,0.0230532,0.417373,0.599489,0.156062,0.409967,0.805941,0.599327,0.602234,0.800026,0.825939,0.795161,0.0786038,0.188317,0.0350951,0.654533,0.631809,0.698296,0.372788,0.198066,0.00696766,0.833667,0.200271,0.302118,0.969962,0.253705,0.301041,0.209384,0.774575,0.886529,0.0047437,0.240217,0.584402,0.848868,0.0798223,0.164881,0.981056,0.327358,0.717344,0.915505,0.560665,0.787899,0.215654,0.826939,0.853529,0.485036,0.691372,0.223602,0.984572,0.980669,0.813937,0.825479,0.0872676,0.00802952,0.45184,0.381407,0.61304,0.598004,0.147446,0.233096,0.771469,0.183918,0.0276728,0.91179,0.0977526,0.109017,0.273554,0.0969979,0.731472,0.105074,0.0892614,0.467295,0.330737,0.0407687,0.246493,0.46288,0.301985,0.643751,0.614546,0.497994,0.551416,0.101756,0.755959,0.768529,0.13374,0.443984,0.19965,0.706277,0.0688191,0.830306,0.0279752,0.874671,0.830126,0.992309,0.87018,0.789667,0.819991,0.515078,0.0161242,0.051827,0.490933,0.176818,0.629339,0.248326,0.501247,0.37633,0.509416,0.0824427,0.0895674,0.952814,0.0831817,0.193014,0.721496,0.855154,0.737185,0.767352,0.422287,0.644021,0.204119,0.141808,0.800809,0.602331,0.148163,0.24925,0.380234,0.594653,0.60043,0.928177,0.257653,0.758692,0.929698,0.235039,0.272077,0.679493,0.616999,0.562426,0.419349,0.816907,0.227112,0.307281,0.0108789,0.182602,0.934155,0.901153,0.87961,0.0943796,0.258822,0.869705,0.950125,0.191138,0.592679,0.703935,0.280144,0.801298,0.0013535,0.472954,0.271082,0.705838,0.817246,0.756614,0.477521,0.0124203,0.61482,0.982309,0.893455,0.622697,0.172405,0.644985,0.514351,0.826256,0.906518,0.39747,0.326899,0.561993,0.953919,0.90986,0.854824,0.94423,0.205559,0.0762342,0.145807,0.302354,0.450786,0.869757,0.763033,0.539713,0.629476,0.925265,0.0596506,0.774906,0.908587,0.823635,0.483551,0.885469,0.580037,0.0851004,0.765722,0.529138,0.444921,0.085226,0.104277,0.128908,0.460853,0.630051,0.438089,0.359026,0.591953,0.640116,0.634948,0.201721,0.652603,0.188779,0.194526,0.678039,0.388998,0.253167,0.851323,0.551317,0.505381,0.350569,0.915381,0.788782,0.356099,0.31738,0.0433667,0.622622,0.450483,0.0423636,0.577118,0.62836,0.124776,0.632498,0.686229,0.883021,0.709053,0.100578,0.324378,0.0405731,0.410664,0.692402,0.619526,0.690163,0.689458,0.801702,0.422054,0.919382,0.310462,0.454352,0.787466,0.592966,0.986194,0.166269,0.226989,0.806552,0.584214,0.54725,0.695064,0.167664,0.252532,0.368461,0.376139,0.975489,0.572846,0.347492,0.903234,0.124845,0.152146,0.685264,0.741089,0.67981,0.190159,0.869835,0.0912343,0.116166,0.790869,0.491642,0.631343,0.562531,0.904497,0.593202,0.645795,0.733476,0.13868,0.871268,0.00312895,0.707363,0.524625,0.80509,0.47534,0.787937,0.0155455,0.680843,0.720603,0.292051,0.868846,0.979196,0.699533,0.878595,0.726602,0.252712,0.490443,0.722175,0.104076,0.316601,0.806277,0.185322,0.299003,0.234811,0.708396,0.133382,0.511799,0.787759,0.774087,0.227154,0.625224,0.545615,0.975158,0.47982,0.590863,0.70694,0.858135,0.0467018,0.774712,0.645618,0.723136,0.371482,0.42351,0.119675,0.311931,0.216358,0.628355,0.498159,0.456195,0.0905191,0.845123,0.779398,0.0158269,0.944845,0.228873,0.899792,0.154703,0.701279,0.537026,0.30789,0.533533,0.998357,0.327748,0.915895,0.493039,0.752604,0.0305593,0.756792,0.901752,0.811126,0.809831,0.520764,0.0650515,0.374292,0.86102,0.848129,0.544577,0.616465,0.0612438,0.379624,0.128476,0.103468,0.73057,0.825562,0.604919,0.676838,0.261205,0.280472,0.751878,0.386152,0.0349348,0.932187,0.69071,0.127167,0.52396,0.00846922,0.392791,0.342291,0.392597,0.0106926,0.248097,0.0876545,0.884446,0.0771996,0.909365,0.146707,0.46874,0.288779,0.108941,0.508089,0.868712,0.965642,0.42007,0.341014,0.214133,0.681084,0.7197,0.733072,0.683212,0.1497,0.104063,0.610404,0.590652,0.761016,0.753044,0.794813,0.480761,0.56632,0.612063,0.409779,0.137947,0.944401,0.855945,0.793677,0.356987,0.213326,0.186256,0.369908,0.0262382,0.719216,0.965711,0.126637,0.966685,0.873776,0.259986,0.549891,0.347649,0.558363,0.656609,0.655693,0.788328,0.424137,0.753646,0.880686,0.51391,0.053595,0.081172,0.0538772,0.0334514,0.591944,0.54284,0.510494,0.857746,0.574037,0.308557,0.0288956,0.973258,0.354375,0.598332,0.535212,0.548436,0.201335,0.345852,0.761712,0.626583,0.0176519,0.942384,0.353755,0.559007,0.825231,0.89105,0.455508,0.997628,0.898346,0.803222,0.61442,0.668116,0.209525,0.604344,0.0281197,0.0237147,0.860047,0.676666,0.153673,0.444451,0.577837,0.7241,0.918187,0.88664,0.306939,0.210399,0.70668,0.947829,0.719006,0.316841,0.652423,0.570004,0.567374,0.981234,0.400844,0.431489,0.0598206,0.317548,0.830367,0.196027,0.37083,0.272443,0.854246,0.31975,0.212368,0.142828,0.441534,0.721998,0.650623,0.683124,0.460069,0.899011,0.299405,0.654386,0.81287,0.452724,0.242632,0.268546,0.784153,0.840845,0.69709,0.879089,0.295318,0.104749,0.217768,0.1978,0.271017,0.396698,0.932101,0.370403,0.724856,0.868976,0.501188,0.27406,0.0666282,0.0453354,0.136923,0.0882132,0.795478,0.824755,0.0190665,0.877392,0.584068,0.0557731,0.0953388,0.943686,0.449777,0.142527,0.744522,0.799376,0.136356,0.377535,0.523716,0.376751,0.151505,0.00812,0.522753,0.750848,0.938131,0.219913,0.693788,0.417115,0.393441,0.150182,0.031964,0.189142,0.535782,0.713056,0.819592,0.695209,0.557369,0.0676963,0.0924121,0.715825,0.267589,0.234723,0.0672683,0.507968,0.609887,0.400406,0.634594,0.00437373,0.679333,0.14031,0.86898,0.684994,0.358163,0.697472,0.182671,0.596053,0.0865436,0.287197,0.589616,0.889236,0.302733,0.453183,0.629459,0.96039,0.153508,0.896412,0.564153,0.559529,0.711397,0.664909,0.833997,0.714389,0.111305,0.862131,0.477304,0.673193,0.103157,0.210294,0.771725,0.34198,0.383398,0.777376,0.632006,0.257435,0.257095,0.690735,0.644855,0.568827,0.164082,0.880707,0.900973,0.554242,0.479814,0.306113,0.79236,0.90997,0.119468,|0.125905,0.797647,0.699802,0.29015,0.624552,0.762523,0.953086,0.646208,0.756056,0.813001,0.561769,0.197847,0.629821,0.117333,0.992985,0.567839,0.313267,0.604613,0.674827,0.204342,0.784734,0.920857,0.595393,0.411077,0.33968,0.820454,0.142559,0.664267,0.73121,0.474107,0.237532,0.24461,0.120129,0.478593,0.738089,0.0810581,0.629875,0.298524,0.604316,0.57761,0.241762,0.588718,0.871084,0.941514,0.31372,0.389993,0.180622,0.565458,0.0783029,0.889751,0.990696,0.927525,0.558916,0.186076,0.283809,0.21595,0.011685,0.693371,0.328494,0.545114,0.687952,0.804961,0.653724,0.74348,0.379886,0.323917,0.224719,0.922603,0.151788,0.83831,0.117806,0.454613,0.42924,0.761762,0.329495,0.155091,0.456239,0.219071,0.389496,0.325543,0.316452,0.573119,0.363341,0.336732,0.901192,0.196243,0.272535,0.0507259,0.803356,0.516266,0.737208,0.786605,0.997699,0.847963,0.39544,0.76737,0.0921707,0.426097,0.137227,0.373144,0.92703,0.684238,0.851911,0.367259,0.0544378,0.159901,0.566771,0.079165,0.43544,0.600039,0.634977,0.283,0.717105,0.293161,0.194737,0.167185,0.564921,0.302928,0.749728,0.61649,0.356199,0.380101,0.0324548,0.246468,0.432068,0.823563,0.873359,0.20741,0.0145974,0.263638,0.971693,0.760447,0.00178754,0.422872,0.320413,0.620723,0.362646,0.445014,0.610308,0.426226,0.0760747,0.0565155,0.615184,0.914553,0.699207,0.668284,0.495497,0.190343,0.0615474,0.0749057,0.949127,0.781887,0.903178,0.450587,0.879647,0.937512,0.967156,0.836325,0.349159,0.669161,0.921859,0.496557,0.17005,0.663239,0.957248,0.371434,0.0339244,0.290984,0.146072,0.478795,0.230204,0.166515,0.443326,0.709888,0.985923,0.77444,0.394988,0.989985,0.520754,0.680398,0.508046,0.0380521,0.99138,0.27606,0.913286,0.627806,0.61206,0.52796,0.360954,0.760341,0.774028,0.713601,0.188057,0.528866,0.139834,0.368886,0.837636,0.75166,0.441038,0.178758,0.207551,0.779401,0.580406,0.663826,0.437822,0.626246,0.286728,0.303415,0.83978,0.404446,0.416826,0.961963,0.797848,0.154135,0.413457,0.12982,0.211123,0.642623,0.149288,0.569935,0.165828,0.190328,0.472046,0.307395,0.32837,0.367056,0.348604,0.144196,0.86586,0.710212,0.249025,0.203312,0.261997,0.760653,0.592127,0.822729,0.934859,0.713278,0.448142,0.438388,0.370565,0.279202,0.817708,0.434824,0.322464,0.535372,0.64077,0.673607,0.659561,0.355942,0.0616927,0.689971,0.300379,0.728199,0.856641,0.0911515,0.859833,0.954078,0.0692879,0.229061,0.676602,0.0845708,0.689075,0.65375,0.763006,0.40077,0.451472,0.972784,0.473752,0.141752,0.077927,0.224493,0.542155,0.901876,0.48401,0.44891,0.953127,0.214391,0.254833,0.712404,0.921341,0.193511,0.244864,0.0118625,0.599763,0.530156,0.0501241,0.283104,0.355155,0.657899,0.491217,0.84369,0.872714,0.0495982,0.229271,0.513068,0.371338,0.384365,0.103357,0.949312,0.128584,0.0990121,0.545973,0.953695,0.152093,0.579659,0.0080592,0.836118,0.189488,0.0331281,0.294113,0.00825799,0.34458,0.10576,0.779212,0.780384,0.764775,0.634926,0.222991,0.373459,0.968322,0.379783,0.349295,0.0668606,0.48524,0.6285,0.804782,0.571384,0.936639,0.979381,0.532228,0.126086,0.182264,0.840545,0.345881,0.283821,0.128823,0.666718,0.52819,0.0340587,0.799796,0.0452886,0.759392,0.533937,0.532877,0.093245,0.574253,0.130912,0.576084,0.898251,0.787137,0.733844,0.761066,0.599443,0.0539127,0.490268,0.954771,0.411264,0.29603,0.0893086,0.111373,0.357656,0.0711496,0.829744,0.820294,0.848899,0.635631,0.581942,0.378494,0.517059,0.692033,0.781618,0.790548,0.774434,0.184583,0.710326,0.962775,0.522637,0.228297,0.304028,0.755428,0.74675,0.217328,0.928729,0.618339,0.0483986,0.471578,0.18968,0.910828,0.716368,0.601142,0.869828,0.657711,0.413194,0.683844,0.0407084,0.581381,0.438481,0.677769,0.737652,0.0815037,0.362445,0.755795,0.755722,0.662558,0.594327,0.80527,0.205094,0.246113,0.0345823,0.467267,0.36058,0.852467,0.0204316,0.113256,0.189304,0.88831,0.873119,0.252206,0.10777,0.0349775,0.231753,0.419791,0.238511,0.0283418,0.370824,0.87696,0.80033,0.32961,0.456129,0.616721,0.537702,0.894574,0.963363,0.000133336,0.472804,0.757419,0.77461,0.0833528,0.615326,0.263893,0.344011,0.745727,0.970505,0.55912,0.599501,0.270918,0.299189,0.997966,0.758655,0.0761425,0.781915,0.0625939,0.341877,0.898989,0.591678,0.211741,0.304123,0.489116,0.814968,0.997445,0.807164,0.630745,0.707691,0.316411,0.974503,0.480577,0.334554,0.89847,0.534852,0.992412,0.174941,0.883359,0.112675,0.550701,0.568416,0.150289,0.129175,0.0880468,0.286618,0.35273,0.437656,0.693052,0.0161714,0.364631,0.183782,0.238529,0.735456,0.651891,0.187846,0.329464,0.347596,0.781697,0.282752,0.366171,0.687855,0.459969,0.810449,0.936495,0.446212,0.836078,0.153271,0.835492,0.602175,0.18276,0.663222,0.262709,0.954168,0.47236,0.187609,0.552262,0.214088,0.548267,0.117097,0.602975,0.519729,0.616967,0.234183,0.823627,0.392363,0.215762,0.164805,0.164327,0.86061,0.937854,0.220823,0.989628,0.803581,0.820801,0.570422,0.443187,0.795794,0.217513,0.0931928,0.452872,0.552438,0.319144,0.562637,0.939938,0.290925,0.907116,0.351717,0.944376,0.859845,0.493062,0.0478016,0.487495,0.868835,0.149777,0.455724,0.591575,0.0604861,0.500041,0.510758,0.753519,0.459343,0.216341,0.972422,0.944289,0.384043,0.0214893,0.96204,0.0603735,0.580206,0.628061,0.619715,0.587096,0.282967,0.0430224,0.467565,0.398379,0.775815,0.0376014,0.663068,0.392136,0.142625,0.251226,0.156107,0.835938,0.907106,0.628141,0.188191,0.486698,0.654719,0.0592808,0.761147,0.971921,0.240453,0.158768,0.249274,0.188497,0.331445,0.681137,0.143386,0.0952777,0.13206,0.871404,0.253786,0.62958,0.333989,0.392218,0.799885,0.699758,0.503103,0.732924,0.159319,0.380191,0.247972,0.878265,0.450627,0.493583,0.420313,0.84593,0.467533,0.783584,0.98469,0.0494533,0.201622,0.52405,0.512448,0.438628,0.473428,0.424769,0.591948,0.330269,0.791181,0.144059,0.529582,0.480756,0.255149,0.928583,0.677315,0.60086,0.806966,0.288328,0.742175,0.514495,0.768365,0.908417,0.487564,0.867465,0.874458,0.490811,0.25977,0.0626884,0.377542,0.00637603,0.330144,0.259812,0.885214,0.809058,0.525958,0.781248,0.065348,0.289467,0.751725,0.393479,0.730176,0.00354713,0.25221,0.631009,0.501881,0.277664,0.359287,0.00848466,0.451493,0.26436,0.460696,0.481575,0.721634,0.0208639,0.18999,0.351192,0.856962,0.366905,0.572353,0.278671,0.790902,0.170231,0.282149,0.478846,0.011975,0.302087,0.551299,0.263658,0.726712,0.230115,0.626045,0.309451,0.0396289,0.669039,0.111485,0.550199,0.704429,0.397209,0.472119,0.428245,0.484906,0.364171,0.504526,0.413284,0.722826,0.156494,0.188652,0.174189,0.730419,0.643379,0.4535,0.949847,0.248342,0.465981,0.77464,0.52944,0.123098,0.0726861,0.486786,0.333259,0.260336,0.519412,0.933597,0.763494,0.842447,0.769487,0.0118337,0.810911,0.579957,0.202784,0.582537,0.3809,0.117867,0.472703,0.401927,0.554392,0.114174,0.0764691,0.322772,0.537756,0.60854,0.749733,0.867347,0.855208,0.51617,0.406927,0.954053,0.142253,0.484275,0.00361276,0.770613,0.370947,0.751603,0.360151,0.832463,0.161232,0.477676,0.833018,0.830197,0.813582,0.284043,0.405521,0.250324,0.120793,0.103374,0.741371,0.359767,0.917623,0.554737,0.537966,0.819967,0.102867,0.243294,0.235609,0.751506,0.882049,0.495864,0.554122,0.218755,0.804296,0.133903,0.951028,0.805232,0.363054,0.331454,0.197378,0.634792,0.767094,0.750703,0.39296,0.720746,0.309635,0.957166,0.90511,0.642144,0.553176,0.655089,0.58358,0.860332,0.36302,0.00278902,0.725445,0.726341,0.489996,0.245804,0.806644,0.0631511,0.443832,0.0283675,0.11464,0.725155,0.032845,0.469166,0.340254,0.721806,0.700248,0.492719,0.861441,0.955826,0.087341,0.84409,0.733035,0.609013,0.0363544,0.150353,0.0721453,0.0252396,0.10755,0.396717,0.331286,0.471692,0.0873604,0.423593,0.172742,0.373154,0.126064,0.623587,0.480482,0.486084,0.455496,0.724268,0.984279,0.464109,0.26389,0.685706,0.439473,0.71582,0.647629,0.665613,0.268191,0.0158526,0.0435798,0.487065,0.412097,0.249049,0.632737,0.695288,0.535068,0.283971,0.414982,0.904709,0.0289867,0.489282,0.0100952,0.852822,0.142262,0.713265,0.549447,0.14431,0.630366,0.397006,0.638619,0.264503,0.585449,0.0816111,0.742725,0.626528,0.844955,0.654046,0.955056,0.95461,0.378702,0.533987,0.7362,0.58931,0.967821,0.4414,0.168687,0.146413,0.392046,0.853862,0.621129,0.353717,0.782543,0.681262,0.87957,0.828181,0.365931,0.0537657,0.954145,0.026861,0.188209,0.211224,0.0347009,0.488033,0.171849,0.270394,0.206378,0.230423,0.860048,0.184759,0.739331,0.102967,0.476826,0.0675985,0.534076,0.382021,0.895462,0.215683,0.901394,0.657444,0.639527,0.632047,0.146056,0.775034,0.218973,0.299321,0.312441,0.702824,0.871261,0.107742,0.00063926,0.976501,0.560372,0.0855148,0.660932,0.39069,0.868572,0.917053,0.040644,0.420994,0.465115,0.31971,0.757948,0.287129,0.871892,0.538083,0.136836,0.0196116,0.379793,0.734727,0.0145528,0.919974,0.365567,0.589182,0.848637,0.952293,0.0601069,0.355687,0.876862,0.153852,0.0445535,0.624381,0.862264,0.19098,0.509961,0.927864,0.201496,0.23817,0.0638845,0.0533732,0.947399,0.0944867,0.797595,0.609036,0.397258,0.179934,0.787851,0.79302,0.446878,0.59462,0.925417,0.583856,0.779584,0.238727,0.957329,0.236447,0.119308,0.012857,0.396267,0.0869938,0.0421813,0.733473,0.612172,0.265032,0.219396,0.0643301,0.651222,0.491978,0.932432,0.467043,0.553316,0.708561,|0.826712,0.878257,0.715485,0.787663,0.859196,0.0610616,0.324374,0.16592,0.556221,0.456682,0.449899,0.0655284,0.756184,0.442275,0.383853,0.00558561,0.230518,0.309644,0.921441,0.42199,0.87764,0.703068,0.930472,0.980516,0.464372,0.950399,0.570031,0.345215,0.872314,0.749431,0.676358,0.264834,0.54,0.59313,0.352933,0.163042,0.762044,0.537784,0.343197,0.849046,0.285351,0.796749,0.723252,0.500409,0.0728789,0.935795,0.478864,0.840603,0.0884743,0.457292,0.0468976,0.971056,0.308901,0.055652,0.227368,0.983723,0.406829,0.97341,0.910706,0.853697,0.797201,0.823897,0.851885,0.625608,0.0385845,0.164014,0.13993,0.580917,0.201323,0.489057,0.33862,0.482523,0.611204,0.814696,0.218881,0.311343,0.496084,0.408942,0.259133,0.14948,0.279396,0.27474,0.541806,0.620402,0.318462,0.649808,0.639543,0.0206164,0.586993,0.994062,0.206266,0.0550432,0.321054,0.192166,0.0702962,0.990673,0.760661,0.228403,0.604327,0.656774,0.921073,0.371932,0.0498245,0.075399,0.948217,0.498181,0.540995,0.523293,0.614127,0.893889,0.108063,0.0742052,0.515973,0.107031,0.284046,0.932497,0.161297,0.310733,0.318242,0.695861,0.777058,0.323658,0.899459,0.667401,0.825816,0.609082,0.191788,0.87059,0.293703,0.200283,0.145234,0.775272,0.681001,0.255123,0.759141,0.902198,0.899222,0.969211,0.691987,0.18525,0.355034,0.482614,0.980762,0.444581,0.420781,0.225015,0.783955,0.107507,0.738067,0.52772,0.235154,0.740961,0.694043,0.57058,0.69342,0.876474,0.468223,0.363406,0.096912,0.640084,0.728056,0.475532,0.648545,0.139986,0.42622,0.606789,0.440235,0.0909091,0.896406,0.90238,0.09939,0.154494,0.357767,0.256804,0.875192,0.781318,0.611906,0.608895,0.270137,0.597104,0.210651,0.250265,0.429031,0.714046,0.0678785,0.533826,0.266147,0.738448,0.45951,0.865356,0.315161,0.317505,0.648907,0.0588269,0.147662,0.293408,0.947005,0.660011,0.516917,0.733017,0.381816,0.244021,0.897092,0.684272,0.210017,0.166567,0.570041,0.720612,0.0685265,0.571276,0.955578,0.68415,0.673999,0.645525,0.108554,0.908196,0.716225,0.264012,0.384091,0.733067,0.281133,0.712501,0.650642,0.725923,0.171463,0.114495,0.78249,0.270264,0.304913,0.994871,0.793412,0.776258,0.302304,0.719186,0.528915,0.177372,0.222524,0.880337,0.847916,0.0388801,0.493537,0.561652,0.569267,0.984632,0.762713,0.34411,0.564605,0.510886,0.353813,0.648758,0.0563999,0.446631,0.117759,0.680509,0.583762,0.829051,0.407594,0.63484,0.616419,0.559764,0.507578,0.441283,0.0260266,0.977273,0.874728,0.490452,0.48098,0.408458,0.541456,0.718073,0.978237,0.965852,0.608686,0.824122,0.793805,0.188159,0.319644,0.0634869,0.472756,0.166336,0.778992,0.174177,0.579286,0.570734,0.107096,0.479068,0.787031,0.210808,0.491057,0.968722,0.598032,0.45616,0.783744,0.123833,0.486983,0.610192,0.790063,0.175926,0.572968,0.381545,0.960943,0.355304,0.905721,0.716748,0.0664972,0.279365,0.383891,0.452298,0.414937,0.29075,0.0752883,0.129999,0.196987,0.922009,0.890766,0.51402,0.45235,0.922067,0.440489,0.65191,0.229341,0.859779,0.431137,0.751885,0.272115,0.167411,0.071853,0.608205,0.323852,0.952305,0.935838,0.494493,0.276708,0.988381,0.211354,0.769644,0.275884,0.220156,0.458007,0.64572,0.874725,0.83986,0.0830044,0.853035,0.626862,0.361414,0.216656,0.348298,0.228117,0.678371,0.571234,0.932879,0.0170397,0.585617,0.692587,0.604306,0.0178065,0.310823,0.816938,0.571321,0.739431,0.19979,0.90824,0.772585,0.034331,0.0229674,0.0534433,0.876159,0.814917,0.463982,0.987078,0.526562,0.0151863,0.0429397,0.251939,0.809676,0.747337,0.284459,0.784706,0.38933,0.920518,0.352503,0.166993,0.912643,0.389437,0.801366,0.138878,0.573968,0.371084,0.412797,0.76003,0.106377,0.775831,0.539919,0.775334,0.38602,0.623991,0.240624,0.0365406,0.938595,0.589708,0.781385,0.529801,0.350223,0.0700445,0.977774,0.139546,0.530559,0.270776,0.61711,0.672262,0.68931,0.960043,0.559743,0.222224,0.490234,0.87417,0.653916,0.324893,0.43245,0.650078,0.643631,0.198143,0.956387,0.159459,0.949715,0.979374,0.707253,0.285584,0.290984,0.0858129,0.467464,0.319918,0.23222,0.356369,0.469222,0.415116,0.297056,0.306405,0.0833329,0.623596,0.871841,0.282149,0.816545,0.511547,0.216371,0.857931,0.772064,0.955999,0.818383,0.853544,0.70672,0.209684,0.609795,0.416106,0.542101,0.449781,0.297761,0.21082,0.675276,0.858284,0.0252295,0.80856,0.965971,0.956606,0.0966914,0.47962,0.88573,0.326126,0.37242,0.0616036,0.25167,0.143773,0.457752,0.233045,0.133944,0.0644965,0.595483,0.703907,0.280283,0.352413,0.798351,0.00890964,0.0833473,0.0292677,0.19465,0.994509,0.324218,0.87887,0.68096,0.536084,0.181271,0.969221,0.818757,0.569906,0.63167,0.342896,0.435722,0.270778,0.349413,0.603301,0.241763,0.476533,0.696311,0.582421,0.422073,0.546555,0.366633,0.855242,0.24679,0.329105,0.328239,0.893382,0.751695,0.959927,0.00112867,0.739805,0.428959,0.632322,0.260853,0.00529265,0.328431,0.815518,0.151215,0.300263,0.91973,0.598614,0.831212,0.374078,0.917303,0.411614,0.931362,0.264073,0.961012,0.2052,0.420908,0.911269,0.905546,0.168244,0.371342,0.000500321,0.431057,0.541968,0.450511,0.0163298,0.635938,0.873929,0.159829,0.590669,0.205785,0.704836,0.929061,0.357955,0.834022,0.931303,0.806414,0.361473,0.308235,0.559276,0.919134,0.548321,0.691898,0.682258,0.952295,0.588186,0.719674,0.70061,0.0979142,0.701433,0.477202,0.0656868,0.695546,0.440328,0.907261,0.248466,0.784793,0.890921,0.831587,0.169568,0.80154,0.235626,0.836183,0.657259,0.205671,0.195232,0.93741,0.663797,0.504561,0.990841,0.647853,0.834316,0.625377,0.134245,0.552683,0.180072,0.395249,0.00120783,0.467782,0.20642,0.0273041,0.263702,0.993712,0.00172156,0.546094,0.810073,0.12271,0.376934,0.528852,0.710848,0.639549,0.44665,0.350572,0.123194,0.790406,0.295176,0.602449,0.561047,0.726399,0.954478,0.744592,0.368687,0.932938,0.209661,0.660549,0.17262,0.56242,0.571792,0.184394,0.159957,0.836574,0.0074836,0.841982,0.617352,0.420067,0.0613758,0.541541,0.282601,0.716752,0.0805371,0.882143,0.144342,0.144924,0.349135,0.106725,0.814608,0.512455,0.722603,0.233548,0.561971,0.545759,0.336502,0.135328,0.475999,0.07629,0.242905,0.0494579,0.234413,0.307493,0.709019,0.266918,0.623469,0.299853,0.190043,0.581124,0.478069,0.701363,0.939875,0.0330629,0.296047,0.523606,0.554804,0.570175,0.483076,0.484385,0.116869,0.45468,0.58594,0.319303,0.341981,0.279701,0.576514,0.83848,0.195938,0.367835,0.20271,0.483181,0.270009,0.528869,0.730208,0.193278,0.903667,0.971086,0.119938,0.512377,0.395734,0.429019,0.196791,0.559344,0.461359,0.293846,0.72124,0.809931,0.248883,0.926282,0.456556,0.368527,0.398939,0.408958,0.583947,0.30378,0.988872,0.127471,0.567077,0.465478,0.894879,0.317336,0.300369,0.942969,0.286259,0.448304,0.74461,0.757979,0.579721,0.619087,0.572858,0.526251,0.208234,0.25805,0.836385,0.974121,0.950555,0.148032,0.854454,0.503894,0.739527,0.161045,0.00499356,0.858038,0.150671,0.814268,0.530926,0.476795,0.757879,0.131517,0.00971508,0.918155,0.955777,0.355972,0.519149,0.694675,0.25573,0.265246,0.276932,0.926417,0.869744,0.579776,0.889088,0.0580034,0.508229,0.611098,0.728927,0.963874,0.935419,0.941577,0.749253,0.993113,0.586209,0.428799,0.730651,0.209315,0.344264,0.422517,0.133823,0.128757,0.688569,0.68293,0.968995,0.729371,0.21907,0.280609,0.342256,0.25757,0.714555,0.84575,0.932783,0.501828,0.377786,0.30085,0.036447,0.173702,0.6594,0.64499,0.39256,0.0667121,0.521206,0.364631,0.827299,0.556991,0.841019,0.361112,0.813375,0.710586,0.49175,0.926504,0.0850498,0.656964,0.91631,0.386607,0.678248,0.44553,0.315026,0.735013,0.762982,0.021472,0.0155617,0.0755762,0.506494,0.215755,0.257602,0.286181,0.99694,0.932046,0.270713,0.215427,0.526639,0.245079,0.55896,0.20748,0.482241,0.947376,0.275699,0.311815,0.0756826,0.164222,0.393569,0.210473,0.355531,0.466295,0.0640192,0.934659,0.951516,0.995302,0.312468,0.929382,0.521065,0.0294576,5.76377e-05,0.464698,0.0305108,0.754178,0.931665,0.142211,0.356701,0.316353,0.930519,0.14507,0.924181,0.626895,0.670761,0.95647,0.540036,0.602235,0.925469,0.415818,0.0763235,0.276998,0.939918,0.93673,0.0811237,0.6103,0.563288,0.874901,0.107319,0.699596,0.373757,0.16588,0.0973302,0.863083,0.920803,0.216424,0.992951,0.784108,0.0997643,0.268599,0.945473,0.373605,0.767382,0.936042,0.985612,0.0158468,0.218528,0.929957,0.886145,0.947938,0.636286,0.673484,0.559949,0.141675,0.792596,0.443979,0.669719,0.961374,0.293483,0.679032,0.825721,0.248822,0.959857,0.110931,0.432153,0.868574,0.280244,0.558765,0.441957,0.0940367,0.561544,0.375611,0.19467,0.218935,0.595985,0.98776,0.662378,0.00825554,0.631191,0.186335,0.9078,0.811009,0.187765,0.701667,0.540906,0.407208,0.949289,0.914145,0.577739,0.108079,0.368291,0.443449,0.484906,0.641175,0.650511,0.626633,0.191677,0.971521,0.717268,0.398677,0.794278,0.174148,0.909216,0.0808969,0.919989,0.597825,0.36272,0.596084,0.954997,0.746482,0.616518,0.822475,0.626029,0.791955,0.0773456,0.851297,0.243928,0.0530863,0.815931,0.711177,0.39644,0.270906,0.11835,0.208314,0.50731,0.934139,0.430015,0.959378,0.623769,0.818198,0.952496,0.27502,0.25787,0.0121501,0.26253,0.787695,0.984197,0.699307,0.00167048,0.879317,0.493797,0.882452,0.107488,0.00630063,0.97859,0.0112134,0.14075,0.21451,0.157613,0.404992,0.160486,0.28556,0.846738,0.886956,0.25904,0.839898,|0.597478,0.79279,0.705627,0.822884,0.853518,0.156144,0.841634,0.632274,0.242116,0.171243,0.974896,0.376661,0.94521,0.341631,0.92066,0.120501,0.0426352,0.743971,0.143611,0.226451,0.075766,0.358452,0.352141,0.955995,0.971725,0.561291,0.292592,0.170308,0.664995,0.178801,0.56758,0.929863,0.99495,0.876728,0.146389,0.590831,0.200493,0.709451,0.257741,0.139149,0.925588,0.112404,0.89975,0.0539759,0.564766,0.101481,0.711868,0.543257,0.835695,0.0566123,0.95613,0.44763,0.763871,0.805369,0.983984,0.626551,0.451395,0.710484,0.00980723,0.487869,0.387424,0.627084,0.693887,0.377457,0.750797,0.0898694,0.812215,0.63779,0.511438,0.617164,0.914782,0.744418,0.602053,0.856273,0.223912,0.701188,0.285108,0.118436,0.173427,0.248225,0.366175,0.102441,0.903181,0.60901,0.873687,0.872669,0.129912,0.119378,0.455286,0.331816,0.11947,0.711806,0.774222,0.937318,0.632051,0.0642862,0.0461911,0.446939,0.136215,0.961442,0.487594,0.301423,0.524732,0.50544,0.00906718,0.811294,0.215749,0.270964,0.509549,0.942424,0.116259,0.746673,0.216708,0.15921,0.830177,0.272447,0.0303177,0.791282,0.633429,0.816421,0.482699,0.199986,0.0217713,0.501345,0.154922,0.597053,0.964441,0.688876,0.526996,0.813668,0.868466,0.392124,0.478059,0.751213,0.4062,0.67396,0.684556,0.246834,0.452138,0.653267,0.94048,0.803796,0.637034,0.229309,0.275431,0.157248,0.0697965,0.782461,0.693297,0.325235,0.908332,0.810428,0.474849,0.627289,0.673993,0.550466,0.301026,0.94416,0.628153,0.260867,0.71259,0.0956622,0.936304,0.965084,0.226111,0.255508,0.546384,0.686149,0.992634,0.678275,0.963753,0.345392,0.119349,0.345028,0.242593,0.473656,0.175161,0.172528,0.617241,0.128127,0.928922,0.00433677,0.459511,0.0180718,0.681657,0.237002,0.571235,0.477951,0.235535,0.0611993,0.663028,0.337462,0.637151,0.200916,0.319359,0.0873279,0.492333,0.659657,0.357146,0.534245,0.734373,0.594318,0.76912,0.770695,0.67165,0.722046,0.84461,0.51159,0.800767,0.648823,0.447163,0.815526,0.860524,0.923305,0.521698,0.422451,0.726692,0.29024,0.710108,0.659083,0.0025984,0.879538,0.463409,0.49188,0.186889,0.531611,0.920219,0.929714,0.733869,0.102747,0.452382,0.95586,0.211458,0.879803,0.419659,0.406999,0.109943,0.957845,0.322822,0.0456039,0.108473,0.77609,0.655835,0.682661,0.522822,0.672823,0.325336,0.798355,0.925978,0.522906,0.601442,0.266175,0.651446,0.0289524,0.667069,0.363066,0.819659,0.267228,0.375261,0.892511,0.159754,0.239539,0.353923,0.867277,0.230735,0.967762,0.996294,0.756173,0.0451028,0.864217,0.274631,0.169502,0.783501,0.297779,0.807453,0.907005,0.893995,0.476064,0.363946,0.809505,0.461986,0.634148,0.808257,0.629204,0.883124,0.809577,0.848522,0.493225,0.498013,0.848952,0.135165,0.178388,0.525371,0.161267,0.738364,0.909482,0.252962,0.08284,0.163473,0.524008,0.580867,0.00128418,0.846609,0.37018,0.906914,0.89363,0.30245,0.306301,0.668427,0.282539,0.565257,0.882431,0.52503,0.99836,0.440479,0.912834,0.316779,0.145097,0.0207544,0.257613,0.542354,0.151895,0.846471,0.482759,0.600653,0.399191,0.28928,0.580539,0.091114,0.295713,0.891502,0.111815,0.945135,0.713732,0.801231,0.377266,0.330639,0.389902,0.511542,0.515858,0.424673,0.606308,0.13353,0.957999,0.736479,0.799391,0.619837,0.90755,0.659278,0.688808,0.444227,0.388472,0.387807,0.152752,0.0117046,0.876318,0.953421,0.124848,0.735448,0.75178,0.29423,0.273545,0.0469403,0.453534,0.235397,0.158307,0.416674,0.500756,0.157463,0.478781,0.264691,0.0277144,0.751844,0.837964,0.264182,0.50246,0.373636,0.78577,0.352817,0.129447,0.342411,0.512192,0.110831,0.41554,0.407657,0.798964,0.0960569,0.0975801,0.832255,0.733387,0.322735,0.0306875,0.925361,0.261696,0.720073,0.878078,0.672908,0.371662,0.188014,0.670502,0.175395,0.743019,0.610093,0.889329,0.888629,0.172199,0.947937,0.144075,0.327361,0.94326,0.670992,0.0146958,0.902737,0.561227,0.400392,0.459331,0.657814,0.501069,0.512891,0.993383,0.441191,0.655152,0.626417,0.18932,0.776028,0.661592,0.427992,0.993815,0.999184,0.210535,0.837872,0.803239,0.120865,0.329632,0.11702,0.270347,0.86537,0.0640325,0.0544037,0.933092,0.648866,0.42288,0.40738,0.541043,0.722989,0.723287,0.652715,0.121536,0.284648,0.256243,0.303806,0.896352,0.636426,0.303526,0.803534,0.0753446,0.760563,0.898211,0.149678,0.212841,0.388143,0.660413,0.200632,0.967587,0.0439565,0.122889,0.270334,0.567863,0.32999,0.773705,0.391024,0.880691,0.08936,0.332165,0.840966,0.404132,0.200068,0.746749,0.789104,0.615775,0.525636,0.754439,0.127203,0.102065,0.192309,0.0168317,0.409084,0.566989,0.443126,0.445415,0.774601,0.000921309,0.747531,0.383146,0.0271813,0.40095,0.814138,0.948648,0.469419,0.689386,0.951284,0.627128,0.0137124,0.807932,0.427637,0.683686,0.16151,0.000177443,0.673096,0.646202,0.125332,0.863298,0.246915,0.869793,0.690082,0.979089,0.332499,0.439659,0.136106,0.905433,0.52582,0.311239,0.303228,0.316965,0.258761,0.0539929,0.162344,0.0743957,0.754211,0.597304,0.0249852,0.248756,0.751656,0.896583,0.491251,0.676256,0.201647,0.372381,0.258484,0.81015,0.451035,0.31841,0.0367181,0.54084,0.959851,0.727372,0.529902,0.566848,0.751462,0.0508304,0.682778,0.433109,0.235329,0.802512,0.563234,0.115722,0.734394,0.831587,0.3596,0.441168,0.0956986,0.613364,0.633104,0.835847,0.236163,0.293611,0.181287,0.183693,0.753249,0.558984,0.456176,0.886754,0.819583,0.471034,0.223347,0.0609012,0.812069,0.400296,0.344011,0.356031,0.791578,0.943747,0.602659,0.780159,0.23454,0.687499,0.792965,0.2903,0.692678,0.87544,0.498281,0.976953,0.615324,0.225011,0.532051,0.361745,0.839356,0.232551,0.629439,0.433273,0.605088,0.575786,0.827042,0.976634,0.202287,0.116813,0.0490212,0.722651,0.972516,0.386703,0.596081,0.737475,0.138505,0.761633,0.805936,0.0850959,0.389159,0.14378,0.216765,0.441333,0.0640368,0.447821,0.241329,0.0059492,0.0997773,0.370297,0.214009,0.407636,0.131974,0.726509,0.376373,0.447914,0.841583,0.614304,0.579592,0.915985,0.656998,0.923887,0.080501,0.737584,0.911796,0.010242,0.962567,0.21134,0.166338,0.916344,0.938281,0.938501,0.32305,0.00939918,0.340897,0.0508311,0.386664,0.277317,0.714577,0.644136,0.224679,0.328397,0.890851,0.0782123,0.987476,0.590811,0.952221,0.334822,0.413458,0.122561,0.825178,0.163658,0.167364,0.638648,0.781888,0.225376,0.87472,0.472159,0.0245208,0.683152,0.366164,0.452105,0.357096,0.528282,0.575542,0.660257,0.177079,0.79558,0.0213161,0.894188,0.0957059,0.256508,0.0759223,0.363042,0.456899,0.543257,0.158637,0.82593,0.372833,0.411982,0.758382,0.091483,0.43334,0.572433,0.612972,0.496714,0.658642,0.880841,0.354402,0.500691,0.357524,0.201008,0.41538,0.982887,0.0999625,0.745857,0.73944,0.179377,0.100884,0.221021,0.76387,0.420422,0.206554,0.612876,0.545328,0.858213,0.229605,0.737748,0.557687,0.30619,0.837766,0.945646,0.12844,0.0702248,0.0435013,0.730948,0.815739,0.22152,0.501093,0.458113,0.332932,0.917906,0.811969,0.250637,0.3977,0.671,0.801984,0.673744,0.190258,0.768559,0.50769,0.0760161,0.264736,0.267457,0.673333,0.282611,0.288453,0.912645,0.0185065,0.2312,0.79713,0.496257,0.458384,0.182741,0.318478,0.59533,0.161616,0.0706101,0.78174,0.840935,0.81906,0.715802,0.913108,0.94588,0.203063,0.146287,0.123813,0.84833,0.455557,0.72145,0.230365,0.788873,0.733042,0.810183,0.0740795,0.284563,0.458435,0.538192,0.885888,0.399737,0.946971,0.912112,0.626449,0.938123,0.260453,0.934169,0.594875,0.283661,0.7548,0.748388,0.00267363,0.7487,0.939802,0.483947,0.914617,0.599683,0.628393,0.501335,0.650459,0.656761,0.57672,0.434133,0.325775,0.245128,0.214265,0.906597,0.902812,0.264908,0.875348,0.927644,0.197597,0.959057,0.627505,0.685398,0.94473,0.868589,0.146251,0.90465,0.922285,0.156614,0.871675,0.941192,0.523114,0.468391,0.244916,0.589647,0.770014,0.774804,0.626074,0.00787389,0.563244,0.815412,0.966797,0.702876,0.946064,0.351767,0.204979,0.774636,0.797642,0.253864,0.503925,0.0721846,0.582655,0.567531,0.0104418,0.441515,0.344512,0.875474,0.646109,0.410793,0.117205,0.845085,0.195103,0.721858,0.443604,0.928701,0.77406,0.0527182,0.502063,0.929835,0.7391,0.800996,0.934179,0.449335,0.423206,0.691014,0.0725315,0.5867,0.48958,0.420102,0.85367,0.0768697,0.430927,0.130281,0.365209,0.504966,0.566043,0.871548,0.812527,0.42192,0.0387467,0.18833,0.813181,0.401969,0.889272,0.986419,0.6525,0.464335,0.546824,0.941082,0.893896,0.137852,0.779552,0.354043,0.698778,0.0448648,0.578574,0.224392,0.0780457,0.704674,0.250352,0.482961,0.221111,0.934873,0.111858,0.136481,0.692834,0.715063,0.983811,0.443315,0.183644,0.883223,0.412168,0.934075,0.4,0.111053,0.589509,0.661216,0.987206,0.513639,0.89876,0.49368,0.449161,0.78393,0.651145,0.0541935,0.213342,0.438763,0.993523,0.782719,0.904312,0.313988,0.166418,0.650197,0.702031,0.156395,0.539859,0.133931,0.139227,0.471697,0.706903,0.00630558,0.452088,0.0828685,0.40863,0.978867,0.57255,0.916216,0.987062,0.438676,0.869998,0.103405,0.230938,0.846408,0.850713,0.989668,0.711519,0.457457,0.547941,0.53303,0.826173,0.280746,0.51587,0.92454,0.851534,0.492879,0.416232,0.00658619,0.172088,0.691812,0.141893,0.23663,0.0636308,0.641607,0.883406,0.328275,0.360018,0.306431,0.619618,0.348546,0.688687,0.721558,0.693739,0.665558,0.652922,0.324493,0.1416,0.785115,0.730145,0.815435,0.647981,0.395529,0.525542,0.113943,|0.615059,0.0895841,0.592089,0.446604,0.21717,0.911028,0.490389,0.485566,0.727214,0.402022,0.0670833,0.351474,0.852569,0.622532,0.0611247,0.715212,0.918039,0.881126,0.925321,0.305246,0.45451,0.540266,0.476548,0.955408,0.216981,0.438468,0.630069,0.820851,0.412428,0.0142186,0.38723,0.295286,0.229721,0.423242,0.567615,0.82786,0.397463,0.645878,0.286916,0.567411,0.0578973,0.757517,0.742689,0.0728819,0.889937,0.723889,0.559453,0.318323,0.0388879,0.88672,0.579828,0.967393,0.0677537,0.0777925,0.0379632,0.0469866,0.522927,0.701749,0.492245,0.55956,0.142499,0.927048,0.916283,0.872095,0.485952,0.284618,0.369204,0.62441,0.52627,0.749068,0.969078,0.713038,0.259122,0.715638,0.74053,0.580677,0.684537,0.589956,0.536028,0.917301,0.863086,0.801005,0.765877,0.273647,0.802197,0.011496,0.984165,0.219593,0.824845,0.53295,0.569027,0.0399113,0.0477841,0.967519,0.141051,0.925195,0.583465,0.80987,0.406505,0.42306,0.695258,0.994362,0.954804,0.158151,0.106418,0.193885,0.905711,0.684394,0.0837187,0.671959,0.918782,0.806114,0.238606,0.613797,0.396873,0.881618,0.882181,0.535685,0.788835,0.622917,0.409445,0.707853,0.00737983,0.45081,0.608974,0.725204,0.124863,0.198819,0.521977,0.326265,0.68935,0.376229,0.30638,0.599708,0.710718,0.128431,0.325081,0.930685,0.167365,0.901733,0.828063,0.387708,0.0202929,0.555613,0.849965,0.338526,0.468757,0.464648,0.193967,0.908963,0.63323,0.303138,0.576844,0.623491,0.204862,0.724625,0.813638,0.615676,0.385127,0.24019,0.839724,0.0914159,0.490099,0.105036,0.546943,0.342772,0.871788,0.474446,0.177461,0.983906,0.885843,0.611014,0.628202,0.743422,0.563835,0.224561,0.546513,0.83178,0.521514,0.651945,0.144973,0.654972,0.0511611,0.310316,0.382752,0.165573,0.180005,0.267441,0.968042,0.385315,0.719867,0.602983,0.806236,0.526224,0.972345,0.368549,0.608823,0.814222,0.662426,0.0659124,0.0846247,0.0179722,0.533802,0.363599,0.110238,0.376067,0.982405,0.747781,0.831358,0.245063,0.552114,0.995804,0.687439,0.950685,0.97908,0.653568,0.532378,0.659367,0.0817782,0.461283,0.290391,0.0343138,0.567653,0.774459,0.289685,0.804455,0.248605,0.621412,0.565338,0.830587,0.192373,0.878711,0.117485,0.154528,0.134956,0.308448,0.53148,0.0669995,0.28441,0.97053,0.548719,0.279403,0.122117,0.471353,0.0280837,0.610736,0.516915,0.711636,0.0167297,0.782249,0.231021,0.885478,0.122233,0.175397,0.0662191,0.853032,0.213257,0.943922,0.599929,0.234771,0.448257,0.253937,0.475578,0.48934,0.0743423,0.897644,0.750054,0.938194,0.726387,0.743813,0.809924,0.281391,0.537198,0.865069,0.877683,0.28494,0.506631,0.813288,0.970552,0.324396,0.349462,0.867964,0.298737,0.937985,0.333476,0.0319992,0.404508,0.238795,0.413379,0.422609,0.663562,0.267027,0.602117,0.74957,0.0171512,0.61406,0.451201,0.258396,0.0635048,0.461216,0.792785,0.476429,0.924447,0.220149,0.492747,0.307578,0.406035,0.938777,0.907151,0.963274,0.728207,0.976807,0.360736,0.83467,0.743305,0.258161,0.848756,0.406405,0.0757412,0.261738,0.868026,0.0497708,0.663723,0.231812,0.61316,0.240167,0.992462,0.98023,0.733899,0.832128,0.826732,0.102041,0.621603,0.872863,0.114013,0.61744,0.741616,0.472246,0.981216,0.0145873,0.0835093,0.766806,0.182284,0.950435,0.833306,0.798054,0.27187,0.143294,0.740059,0.84233,0.737185,0.890495,0.938182,0.176406,0.264392,0.35954,0.252428,0.631174,0.890391,0.406354,0.470471,0.285671,0.274841,0.227465,0.0752153,0.905029,0.551656,0.54638,0.485885,0.7313,0.512034,0.17541,0.973619,0.376209,0.776,0.23347,0.70769,0.243153,0.393119,0.440837,0.397924,0.650763,0.480686,0.990471,0.304856,0.597254,0.418207,0.194416,0.751593,0.760963,0.717084,0.987053,0.107871,0.447483,0.114229,0.412457,0.515511,0.55267,0.25403,0.821836,0.798037,0.206908,0.478186,0.0317789,0.111867,0.735706,0.829525,0.856531,0.327893,0.19487,0.321759,0.704967,0.529707,0.126396,0.579757,0.224066,0.4807,0.212094,0.244511,0.828852,0.768645,0.264588,0.994621,0.650658,0.400099,0.375442,0.1823,0.324358,0.916918,0.0464056,0.634939,0.721407,0.583983,0.434901,0.202649,0.786616,0.839636,0.491009,0.0268989,0.040783,0.171141,0.583527,0.0199983,0.0607035,0.8483,0.470897,0.758091,0.677598,0.174483,0.0747374,0.713208,0.285889,0.577164,0.709034,0.540824,0.230192,0.933161,0.311119,0.414827,0.259607,0.200976,0.709112,0.129535,0.879907,0.0308028,0.402625,0.329206,0.462301,0.738046,0.246787,0.513596,0.816593,0.519974,0.537038,0.0641882,0.0690182,0.728806,0.413905,0.816235,0.796024,0.629153,0.530534,0.819936,0.261933,0.439164,0.838153,0.206913,0.375316,0.388042,0.0792287,0.713986,0.384256,0.0173681,0.385637,0.574493,0.533817,0.973953,0.265011,0.76713,0.240266,0.156681,0.72967,0.198586,0.148254,0.0537738,0.657232,0.590234,0.683047,0.340321,0.0696854,0.308145,0.112497,0.0758004,0.87628,0.201678,0.0135093,0.123053,0.671323,0.645481,0.204815,0.923295,0.575432,0.759327,0.340898,0.158688,0.336347,0.611735,0.846519,0.31337,0.279621,0.416719,0.19756,0.264693,0.378415,0.194234,0.22264,0.144274,0.766575,0.155586,0.470116,0.480585,0.182318,0.586329,0.811826,0.847551,0.115774,0.136618,0.459671,0.656234,0.632315,0.625531,0.824907,0.764521,0.0454217,0.106986,0.159171,0.557706,0.615764,0.321232,0.861378,0.307038,0.626098,0.467801,0.758047,0.300145,0.8681,0.165283,0.297224,0.860661,0.719089,0.44556,0.277051,0.982671,0.417416,0.643592,0.421093,0.423933,0.333979,0.975335,0.376193,0.60567,0.604128,0.675208,0.816591,0.20428,0.509918,0.634279,0.664946,0.782208,0.605223,0.963695,0.290683,0.369333,0.374545,0.44466,0.526788,0.200028,0.25679,0.15645,0.56562,0.046959,0.884723,0.551966,0.974959,0.479709,0.518227,0.964277,0.27536,0.583765,0.327036,0.109724,0.16601,0.134982,0.994383,0.140384,0.541873,0.446354,0.441384,0.896191,0.941236,0.30597,0.965778,0.356845,0.621502,0.732015,0.358768,0.189873,0.431489,0.370183,0.0171483,0.916079,0.633507,0.240112,0.759111,0.188344,0.16854,0.343326,0.836533,0.708885,0.250609,0.87337,0.271069,0.537759,0.0657946,0.489627,0.812246,0.772582,0.582033,0.411198,0.493457,0.147358,0.64944,0.00632751,0.119535,0.977789,0.799133,0.705601,0.540603,0.236398,0.669914,0.963286,0.105428,0.72901,0.5481,0.826234,0.866641,0.0195807,0.761748,0.0659932,0.279745,0.165719,0.213567,0.920497,0.0980297,0.0357241,0.264233,0.378789,0.938151,0.651272,0.830754,0.663648,0.10168,0.569832,0.544966,0.539271,0.905858,0.998807,0.443238,0.219419,0.694967,0.88399,0.698077,0.290405,0.593267,0.970149,0.691321,0.302583,0.457934,0.923148,0.359946,0.845414,0.659692,0.696399,0.386243,0.792883,0.491508,0.396624,0.45807,0.0571374,0.502382,0.702489,0.632554,0.0516119,0.495372,0.97261,0.0855013,0.786356,0.835026,0.28561,0.318153,0.0258648,0.869535,0.357892,0.76844,0.136859,0.99929,0.203677,0.61033,0.0544734,0.59271,0.55066,0.345993,0.606419,0.609537,0.536103,0.743424,0.440319,0.121712,0.564419,0.0293614,0.43865,0.356331,0.534302,0.670048,0.929675,0.682768,0.165595,0.454534,0.0298582,0.721459,0.68066,0.323156,0.541432,0.779791,0.075134,0.958986,0.0767332,0.679791,0.810083,0.699127,0.136857,0.287063,0.372322,0.525678,0.076765,0.133728,0.143779,0.364685,0.415972,0.24087,0.891534,0.659226,0.971091,0.482301,0.883636,0.332434,0.29301,0.221167,0.902892,0.129074,0.126732,0.611819,0.439246,0.771743,0.869926,0.569315,0.934467,0.1226,0.783506,0.808927,0.902785,0.519027,0.761568,0.429423,0.601553,0.400431,0.849265,0.479454,0.0171309,0.978613,0.677251,0.879198,0.525367,0.48929,0.106822,0.282857,0.451304,0.535586,0.0831246,0.357042,0.407208,0.516601,0.711716,0.345073,0.39556,0.787789,0.501928,0.290725,0.733387,0.441123,0.154018,0.902505,0.110084,0.852553,0.0195078,0.343356,0.52023,0.158933,0.16426,0.0629405,0.235085,0.569343,0.221062,0.364654,0.834972,0.697331,0.930877,0.534744,0.805202,0.947269,0.19359,0.359877,0.300818,0.534286,0.000877798,0.221187,0.644153,0.416185,0.896624,0.86545,0.249907,0.382236,0.927925,0.63366,0.147977,0.461905,0.149997,0.611623,0.514539,0.437984,0.340028,0.680117,0.198346,0.197474,0.20792,0.746546,0.061233,0.0322205,0.462905,0.0970598,0.463385,0.171461,0.0532982,0.501422,0.430188,0.342521,0.715239,0.970921,0.901682,0.707487,0.641971,0.596612,0.650181,0.601286,0.102614,0.030726,0.240927,0.900651,0.644064,0.236523,0.941481,0.884899,0.577784,0.355923,0.32792,0.26768,0.164329,0.294862,0.0476812,0.73765,0.823759,0.0540196,0.225411,0.593893,0.321475,0.0279952,0.558377,0.0182906,0.281867,0.400881,0.0817918,0.592575,0.503404,0.395036,0.17143,0.954788,0.0826184,0.548515,0.152817,0.660824,0.943524,0.179135,0.296315,0.211507,0.352107,0.939464,0.231625,0.489737,0.525539,0.272629,0.99392,0.832855,0.316728,0.885893,0.720152,0.276599,0.347584,0.602986,0.744631,0.855332,0.451937,0.60788,0.63038,0.961367,0.658852,0.877825,0.64382,0.552139,0.767695,0.543031,0.338508,0.626543,0.963461,0.00374085,0.972457,0.624199,0.0869169,0.286596,0.466619,0.619899,0.830784,0.406711,0.143943,0.0453348,0.790214,0.0314443,0.47998,0.229408,0.656409,0.629115,0.812485,0.0305694,0.050599,0.671448,0.339437,0.0125144,0.884338,0.0956025,0.465666,0.554151,0.994267,0.497143,0.984464,0.1616,0.742017,0.622296,0.475377,0.545978,0.813016,0.522143,0.69266,0.591118,0.278987,0.957262,0.870501,0.105822,0.4169,0.724682,0.917056,0.159069,|0.728688,0.957658,0.927036,0.0405435,0.0769576,0.351216,0.968105,0.143576,0.169732,0.612624,0.69714,0.86707,0.237979,0.0416378,0.467559,0.0136106,0.605656,0.861414,0.442119,0.488908,0.519291,0.695881,0.5752,0.851623,0.959463,0.44928,0.483613,0.190479,0.766856,0.309657,0.995814,0.465925,0.940388,0.804001,0.3986,0.159468,0.462565,0.831267,0.713426,0.568045,0.442158,0.0639439,0.0814688,0.600666,0.797317,0.0997911,0.513077,0.710326,0.92624,0.883973,0.197814,0.44933,0.833882,0.958659,0.648059,0.0267959,0.621446,0.16296,0.875566,0.146222,0.909576,0.570211,0.0327405,0.29053,0.467301,0.651183,0.720185,0.790432,0.222874,0.202004,0.196713,0.273072,0.931711,0.119542,0.284712,0.438143,0.870509,0.964757,0.479443,0.180781,0.709402,0.898181,0.826435,0.443158,0.093819,0.858493,0.572701,0.505079,0.703538,0.141328,0.537483,0.820987,0.0135341,0.359545,0.0410318,0.53085,0.313668,0.631235,0.912767,0.946775,0.924564,0.939397,0.793552,0.859244,0.540366,0.512192,0.97145,0.326398,0.452426,0.0173008,0.710877,0.352595,0.347606,0.999716,0.733551,0.867902,0.271045,0.411005,0.765174,0.388491,0.617484,0.595381,0.287501,0.29414,0.592112,0.995868,0.690842,0.449812,0.493589,0.0437346,0.256017,0.0910737,0.0821601,0.935202,0.948434,0.12961,0.861535,0.809896,0.919174,0.98366,0.554912,0.798296,0.906594,0.950082,0.966281,0.293394,0.243235,0.233039,0.921999,0.0387076,0.709318,0.596594,0.482287,0.741603,0.459769,0.348868,0.544393,0.412976,0.848384,0.930654,0.0125272,0.87967,0.886074,0.619556,0.437569,0.71366,0.335012,0.116506,0.0576985,0.409384,0.405463,0.371784,0.630151,0.571145,0.32058,0.418943,0.923254,0.235333,0.563715,0.566052,0.554639,0.669694,0.148029,0.510895,0.583749,0.137445,0.234803,0.552252,0.847101,0.210799,0.357618,0.456184,0.351601,0.883881,0.770734,0.224893,0.773976,0.851059,0.542304,0.293688,0.539812,0.222106,0.910997,0.705773,0.424261,0.606563,0.727,0.905014,0.794768,0.59154,0.0827286,0.522436,0.50983,0.696371,0.399292,0.482299,0.365599,0.0170147,0.209877,0.148439,0.162186,0.621344,0.396861,0.011105,0.0634809,0.404078,0.432917,0.442841,0.832886,0.216888,0.951789,0.3406,0.159029,0.53021,0.242073,0.801407,0.467283,0.74725,0.956391,0.408262,0.901092,0.333993,0.893222,0.643286,0.702579,0.164177,0.530988,0.397716,0.961063,0.463412,0.559902,0.176267,0.0282287,0.96768,0.181315,0.559536,0.474306,0.851583,0.439389,0.539356,0.419118,0.72145,0.504049,0.209224,0.233363,0.158798,0.713971,0.888329,0.677236,0.926496,0.905699,0.17553,0.57369,0.753747,0.0875188,0.0138443,0.97503,0.597612,0.308115,0.458159,0.171243,0.2863,0.531581,0.957376,0.151609,0.0327271,0.085144,0.0852041,0.958232,0.0202177,0.419016,0.298755,0.753241,0.884669,0.0881182,0.965851,0.981375,0.318818,0.178,0.047077,0.305705,0.486904,0.166122,0.256093,0.869236,0.938692,0.774391,0.469561,0.719861,0.520716,0.500262,0.821655,0.720687,0.809042,0.382271,0.107542,0.652369,0.654878,0.977959,0.701028,0.866333,0.182552,0.709935,0.190433,0.497953,0.913839,0.161142,0.770849,0.225655,0.84849,0.266227,0.646253,0.764117,0.614837,0.925135,0.0689899,0.150036,0.710331,0.758487,0.494199,0.217056,0.578797,0.582948,0.557616,0.787,0.170362,0.0412965,0.226691,0.676524,0.53798,0.154686,0.446056,0.975677,0.149171,0.730816,0.112471,0.910132,0.0255396,0.372394,0.0980588,0.812115,0.352004,0.427428,0.454704,0.461735,0.272062,0.686183,0.356331,0.880534,0.414238,0.148919,0.186632,0.853458,0.41661,0.537922,0.854158,0.302497,0.312366,0.460849,0.994853,0.309676,0.169291,0.565386,0.760192,0.910647,0.156051,0.161716,0.0151268,0.651326,0.23871,0.647972,0.517382,0.0201468,0.587648,0.293685,0.692984,0.0162379,0.486427,0.460917,0.659365,0.885481,0.929532,0.866339,0.571515,0.789716,0.738648,0.705304,0.282098,0.847896,0.495219,0.918198,0.993333,0.567304,0.337564,0.559021,0.887993,0.653411,0.547888,0.649732,0.865472,0.0584713,0.378865,0.548728,0.783254,0.839657,0.218767,0.607575,0.587752,0.713001,0.706317,0.5414,0.442363,0.465906,0.0862378,0.979189,0.917478,0.976354,0.14971,0.0589138,0.629788,0.400725,0.690646,0.890925,0.792565,0.251377,0.94267,0.759958,0.712518,0.704589,0.0982009,0.558455,0.70924,0.499397,0.127108,0.608475,0.248852,0.172968,0.22693,0.762852,0.647845,0.754135,0.482078,0.797797,0.652086,0.569521,0.725819,0.0041815,0.23064,0.0873819,0.511818,0.740437,0.0186816,0.260993,0.836509,0.366855,0.0885518,0.183859,0.908476,0.26681,0.703099,0.549912,0.583121,0.421672,0.749511,0.83528,0.429075,0.180329,0.146341,0.966391,0.881837,0.190983,0.888257,0.622922,0.0452778,0.115761,0.84749,0.777466,0.277022,0.644213,0.0629551,0.759639,0.716073,0.442009,0.315893,0.873038,0.777359,0.859908,0.578281,0.631762,0.856128,0.990604,0.226998,0.202464,0.390255,0.589084,0.810156,0.0407628,0.500483,0.712084,0.0645753,0.0774579,0.696811,0.175299,0.471638,0.198799,0.658974,0.127069,0.294387,0.368752,0.265455,0.763121,0.150401,0.880374,0.365151,0.658556,0.530907,0.560139,0.00419569,0.410862,0.293962,0.882515,0.168972,0.278481,0.873414,0.730506,0.0110328,0.495618,0.414148,0.164131,0.351941,0.412486,0.236926,0.544307,0.403835,0.474961,0.434156,0.732572,0.523725,0.14118,0.0192414,0.3294,0.475012,0.723421,0.407073,0.917098,0.890306,0.288936,0.392325,0.145627,0.884797,0.408438,0.177155,0.674607,0.257238,0.56808,0.401728,0.165496,0.246155,0.354906,0.551267,0.990112,0.227727,0.640608,0.652902,0.376235,0.44644,0.376307,0.248184,0.879217,0.577488,0.72917,0.673474,0.69549,0.400621,0.398483,0.346537,0.763337,0.135839,0.496548,0.466359,0.955889,0.745239,0.823582,0.00826305,0.984331,0.319429,0.470936,0.413279,0.943941,0.0528998,0.633047,0.701206,0.927704,0.00640637,0.214181,0.681106,0.166807,0.53573,0.466199,0.11032,0.165395,0.532314,0.812832,0.394935,0.208043,0.205919,0.0101019,0.130174,0.812309,0.42838,0.351837,0.890161,0.279173,0.373037,0.851389,0.949124,0.579985,0.333482,0.839966,0.260424,0.164425,0.169662,0.825889,0.923982,0.561031,0.0723578,0.638635,0.258658,0.388465,0.639327,0.818367,0.362689,0.745146,0.745141,0.475355,0.635834,0.0525129,0.678037,0.223178,0.299602,0.475699,0.328358,0.394307,0.127196,0.23699,0.835234,0.925392,0.537826,0.532783,0.208189,0.914688,0.77726,0.0202467,0.939656,0.45533,0.167067,0.911263,0.895639,0.475911,0.843302,0.05305,0.116596,0.409508,0.277175,0.0764647,0.279132,0.383582,0.364808,0.0868555,0.143449,0.574882,0.402925,0.495258,0.664212,0.728985,0.334817,0.441212,0.765767,0.253209,0.967583,0.204358,0.638696,0.530372,0.716818,0.92412,0.905593,0.374644,0.821946,0.360379,0.407995,0.858351,0.548616,0.115651,0.280704,0.686684,0.853157,0.778456,0.321523,0.31871,0.739244,0.183256,0.33695,0.845303,0.790999,0.996405,0.198651,0.305211,0.907156,0.0819304,0.529171,0.416285,0.620877,0.181715,0.932273,0.227289,0.0420517,0.230585,0.805094,0.760952,0.630874,0.474996,0.515822,0.221527,0.286965,0.897265,0.111591,0.20447,0.354367,0.16409,0.295079,0.5516,0.0555673,0.225144,0.395874,0.0500953,0.323151,0.934664,0.819755,0.576275,0.149339,0.607857,0.655798,0.537823,0.109989,0.708983,0.304273,0.51359,0.791571,0.512376,0.061021,0.363965,0.345148,0.31865,0.462209,0.964545,0.712926,0.592649,0.337205,0.967129,0.970084,0.356055,0.609846,0.440728,0.699502,0.453937,0.56615,0.775462,0.626703,0.349006,0.466508,0.597827,0.285928,0.02787,0.749941,0.107835,0.182151,0.450042,0.529868,0.412428,0.482436,0.63699,0.950779,0.421492,0.461881,0.513913,0.693597,0.123185,0.457734,0.572572,0.0234119,0.139387,0.0611001,0.761209,0.126958,0.744771,0.536196,0.582816,0.304629,0.962844,0.214189,0.686319,0.669212,0.67377,0.478645,0.334712,0.796698,0.26864,0.986028,0.990224,0.768408,0.91294,0.864136,0.246023,0.950104,0.216569,0.702345,0.633456,0.547105,0.239832,0.861711,0.492099,0.3157,0.0249832,0.014859,0.286618,0.982684,0.314234,0.476082,0.509035,0.76643,0.964481,0.667517,0.0502317,0.254285,0.833685,0.286886,0.423286,0.626104,0.511407,0.776333,0.200445,0.138435,0.290869,0.785455,0.0417002,0.110552,0.409337,0.132341,0.545964,0.158436,0.863978,0.544055,0.0957003,0.431352,0.754584,0.596019,0.0761065,0.412152,0.280464,0.0643088,0.143953,0.592852,0.698755,0.681328,0.437893,0.28928,0.266234,0.21988,0.678979,0.083923,0.762141,0.33305,0.525729,0.955824,0.0187117,0.251075,0.750952,0.558152,0.100528,0.0168489,0.00195533,0.380019,0.267744,0.109408,0.882724,0.194118,0.366048,0.30241,0.0679489,0.634889,0.598955,0.443038,0.945218,0.865543,0.809642,0.312328,0.452365,0.994796,0.224941,0.613931,0.219412,0.821655,0.853602,0.378829,0.222597,0.72982,0.879858,0.893607,0.0201932,0.674218,0.881096,0.10655,0.791347,0.0281907,0.759529,0.629434,0.195306,0.367608,0.642906,0.870971,0.592233,0.58249,0.0586727,0.667087,0.196098,0.646726,0.0431775,0.869822,0.283417,0.848429,0.917564,0.99057,0.222114,0.598334,0.2244,0.866897,0.997023,0.145031,0.342241,0.767004,0.515474,0.646774,0.331208,0.167734,0.0902327,0.819071,0.42874,0.730544,0.939194,0.078796,0.83148,0.147418,0.202319,0.241313,0.951866,0.652538,0.269902,0.123372,0.131207,0.249718,0.408018,0.765651,0.734278,0.643124,0.518325,0.928829,0.659198,0.0197197,0.555075,0.516956,0.758063,0.099244,0.00814193,0.0170609,0.649978,0.849973,0.789072,0.58227,0.0855217,0.905455,|0.00369519,0.7514,0.779167,0.305207,0.142264,0.107445,0.636084,0.250904,0.901366,0.02428,0.168399,0.927803,0.446622,0.282731,0.0220353,0.303804,0.123315,0.698129,0.451105,0.89436,0.543236,0.378292,0.600764,0.224147,0.0788912,0.26934,0.344217,0.242469,0.260543,0.429147,0.996865,0.086257,0.92398,0.839087,0.797985,0.749245,0.512842,0.65557,0.914639,0.972032,0.455114,0.77609,0.503093,0.0721031,0.784869,0.459187,0.207513,0.139108,0.59868,0.033306,0.37377,0.359255,0.138531,0.947032,0.652138,0.363852,0.00914681,0.427426,0.836216,0.0503327,0.0186055,0.0921891,0.241698,0.608946,0.231051,0.197827,0.439277,0.692625,0.758307,0.126696,0.369944,0.000902414,0.778241,0.528213,0.384746,0.421246,0.175887,0.537084,0.628327,0.831227,0.545687,0.608381,0.0507467,0.0926014,0.0618511,0.102701,0.324314,0.323542,0.99717,0.768813,0.0641174,0.0846997,0.632256,0.293379,0.977114,0.559131,0.59773,0.587459,0.276322,0.764937,0.7654,0.502142,0.0577202,0.827314,0.48475,0.337701,0.44583,0.707027,0.487923,0.451071,0.813763,0.0183219,0.707861,0.104273,0.94289,0.494026,0.417623,0.160118,0.0153393,0.840295,0.49138,0.524259,0.68818,0.503756,0.0953959,0.0699688,0.500429,0.358156,0.325524,0.0149355,0.123355,0.508695,0.711912,0.587768,0.264063,0.751777,0.0547149,0.201309,0.324011,0.396532,0.165748,0.751496,0.62545,0.242965,0.0296703,0.465925,0.573537,0.630814,0.247269,0.923374,0.0940281,0.54499,0.874018,0.343046,0.905732,0.63594,0.936459,0.914609,0.0496861,0.0937745,0.227477,0.354154,0.499627,0.630619,0.42251,0.768767,0.501275,0.438542,0.522883,0.367288,0.772553,0.153279,0.392513,0.745828,0.75847,0.931343,0.0185498,0.954589,0.772758,0.762314,0.942404,0.727971,0.556309,0.135011,0.56827,0.390097,0.451175,0.0074262,0.546661,0.792841,0.834308,0.978388,0.540779,0.000176311,0.449644,0.171154,0.266675,0.082481,0.74748,0.421449,0.420097,0.684754,0.137301,0.828667,0.202894,0.521886,0.130594,0.584831,0.608753,0.300682,0.344391,0.659712,0.202681,0.0847389,0.250229,0.359682,0.637067,0.526438,0.626509,0.632722,0.303507,0.962525,0.208731,0.329281,0.162453,0.973782,0.587435,0.601304,0.574142,0.584983,0.772694,0.137081,0.854041,0.2401,0.615109,0.868527,0.664595,0.907049,0.133428,0.832158,0.234342,0.913064,0.0414059,0.303629,0.782175,0.414506,0.613872,0.374389,0.776602,0.98483,0.00934619,0.128883,0.94278,0.352059,0.968521,0.702633,0.876256,0.187631,0.758905,0.394167,0.146661,0.827223,0.384118,0.923156,0.447833,0.184984,0.170633,0.900908,0.0910981,0.974695,0.12542,0.591749,0.858129,0.788493,0.432617,0.714521,0.973831,0.999864,0.154515,0.415599,0.79485,0.947597,0.936606,0.621084,0.871341,0.712168,0.4933,0.489072,0.105759,0.774139,0.15633,0.158569,0.780496,0.198442,0.4613,0.485304,0.636589,0.75008,0.853261,0.667775,0.997628,0.307941,0.562334,0.72068,0.857141,0.42038,0.498465,0.82109,0.664084,0.686019,0.14285,0.0897776,0.623795,0.327666,0.856661,0.378326,0.390239,0.00631505,0.303313,0.526076,0.169981,0.56095,0.34517,0.396017,0.331235,0.247562,0.36396,0.960335,0.885667,0.98768,0.975352,0.0275682,0.909518,0.0231628,0.664384,0.701007,0.730282,0.540045,0.437051,0.822616,0.648307,0.794306,0.822367,0.539135,0.691556,0.0637304,0.798602,0.321085,0.198747,0.684534,0.834823,0.205173,0.269638,0.854788,0.269754,0.04456,0.463249,0.504196,0.692803,0.164304,0.0347589,0.528338,0.85598,0.351115,0.211197,0.595859,0.669839,0.96334,0.482695,0.589795,0.148377,0.650165,0.616086,0.0273097,0.0372564,0.233532,0.197962,0.7288,0.580696,0.130994,0.981872,0.726344,0.825049,0.28536,0.0196091,0.87691,0.135747,0.67346,0.657835,0.795308,0.691508,0.9274,0.67566,0.600893,0.989917,0.0715168,0.752928,0.283852,0.727979,0.524231,0.147542,0.248573,0.945489,0.532156,0.860852,0.344528,0.896164,0.37206,0.361914,0.603426,0.235058,0.310259,0.0657257,0.232909,0.464843,0.973469,0.795844,0.998496,0.802463,0.809213,0.158053,0.560294,0.175025,0.817673,0.28917,0.583868,0.880268,0.910062,0.806442,0.220855,0.617238,0.460002,0.159082,0.414502,0.629712,0.760312,0.863186,0.155136,0.584197,0.54981,0.452306,0.324431,0.0720578,0.836777,0.402389,0.431049,0.41033,0.182451,0.78504,0.588401,0.0565234,0.474409,0.203119,0.149938,0.378666,0.271632,0.734276,0.702947,0.477661,0.959498,0.688996,0.905284,0.904017,0.0683581,0.124759,0.796873,0.946597,0.514207,0.0208212,0.22445,0.0327976,0.239126,0.113657,0.710023,0.493478,0.172121,0.752784,0.432119,0.869046,0.917528,0.0761833,0.312804,0.749451,0.451671,0.206253,0.488373,0.73497,0.755289,0.751533,0.764274,0.232295,0.139746,0.616995,0.235302,0.893936,0.52074,0.633385,0.416581,0.971072,0.51682,0.875594,0.469196,0.493747,0.480446,0.145106,0.54028,0.716497,0.747262,0.716115,0.0690851,0.228612,0.472004,0.265027,0.172099,0.41717,0.264027,0.195428,0.799207,0.7435,0.996616,0.871337,0.973042,0.790698,0.223275,0.731102,0.955555,0.416762,0.657852,0.610639,0.79901,0.534371,0.93863,0.60063,0.469499,0.389955,0.943214,0.640441,0.238328,0.702782,0.893654,0.371531,0.443303,0.981096,0.759392,0.724247,0.157964,0.395705,0.232475,0.785905,0.134596,0.75477,0.814508,0.815712,0.614527,0.817463,0.369199,0.779277,0.123071,0.0280561,0.168929,0.336546,0.205137,0.648356,0.908052,0.58705,0.58833,0.0508577,0.584537,0.589554,0.617939,0.241608,0.590682,0.357382,0.206835,0.177987,0.060174,0.320176,0.145544,0.228976,0.27357,0.939837,0.909039,0.266079,0.901999,0.106353,0.824822,0.13227,0.125492,0.568051,0.690556,0.714687,0.509332,0.16545,0.690341,0.125249,0.951677,0.874605,0.391098,0.496439,0.89228,0.151338,0.386385,0.915021,0.442296,0.716247,0.575524,0.972164,0.201948,0.911016,0.131183,0.411009,0.485401,0.826423,0.689044,0.735794,0.650104,0.0151026,0.626191,0.295318,0.195118,0.618189,0.830745,0.828142,0.895209,0.783644,0.911063,0.0632392,0.993532,0.600176,0.0765963,0.721274,0.696242,0.480452,0.778611,0.279643,0.398637,0.722901,0.971826,0.0504522,0.951952,0.388111,0.658066,0.420415,0.0753313,0.863424,0.817123,0.890376,0.817435,0.939241,0.240832,0.489027,0.307682,0.609261,0.580366,0.658714,0.377481,0.0292714,0.43932,0.764543,0.506833,0.880453,0.516401,0.79579,0.984345,0.026934,0.843021,0.0357407,0.198067,0.578537,0.0100997,0.322409,0.730079,0.368115,0.691338,0.169446,0.376677,0.707241,0.362883,0.20064,0.421677,0.153796,0.423862,0.685955,0.337581,0.985033,0.444396,0.730729,0.161112,0.216928,0.30838,0.176405,0.794737,0.580796,0.590705,0.607159,0.505783,0.42449,0.768334,0.905122,0.116612,0.136559,0.132381,0.829523,0.161343,0.302258,0.275528,0.198243,0.145606,0.861008,0.146193,0.212394,0.503981,0.719319,0.684469,0.907043,0.90734,0.64202,0.00339097,0.129147,0.886962,0.659995,0.624752,0.676236,0.468413,0.657745,0.285883,0.615801,0.442214,0.0565702,0.345129,0.808877,0.926643,0.161748,0.0123121,0.190135,0.121854,0.255843,0.826274,0.60032,0.592425,0.811082,0.437063,0.0187842,0.21544,0.174131,0.419631,0.263205,0.846171,0.63349,0.83965,0.748974,0.675892,0.50728,0.530111,0.732472,0.0144479,0.127208,0.303926,0.811585,0.516592,0.854611,0.390018,0.435648,0.684277,0.332175,0.585469,0.530768,0.41799,0.530134,0.765156,0.280789,0.419408,0.346114,0.0958492,0.402678,0.819361,0.132834,0.413561,0.117112,0.533378,0.794616,0.443932,0.785478,0.212669,0.484288,0.376299,0.0350536,0.570242,0.0111641,0.182603,0.112671,0.123182,0.319848,0.416517,0.301275,0.818217,0.253243,0.0626894,0.577428,0.312609,0.557323,0.0301486,0.141673,0.637792,0.648619,0.56587,0.227255,0.101587,0.641337,0.620964,0.891945,0.782273,0.164444,0.478823,0.892861,0.288198,0.192575,0.325506,0.812327,0.0227891,0.0374118,0.00169933,0.364174,0.446926,0.778075,0.000634491,0.0098443,0.286993,0.736504,0.250807,0.911012,0.552067,0.0605578,0.456902,0.535592,0.298829,0.0734317,0.468361,0.495858,0.661757,0.310725,0.77728,0.0673581,0.689141,0.429579,0.415318,0.163023,0.190304,0.426058,0.656571,0.811725,0.942281,0.138587,0.816543,0.509832,0.199455,0.459432,0.603632,0.605796,0.610158,0.0037623,0.301419,0.777822,0.0518516,0.597472,0.112896,0.173956,0.25765,0.58675,0.664823,0.460702,0.70025,0.397077,0.872634,0.922721,0.143219,0.766742,0.253796,0.647798,0.717206,0.214797,0.112901,0.776154,0.529906,0.835617,0.216987,0.345917,0.861597,0.951504,0.400493,0.785421,0.614076,0.0104016,0.117276,0.171212,0.116337,0.191734,0.547224,0.370351,0.669414,0.208068,0.826689,0.564603,0.584002,0.668643,0.643343,0.457391,0.992884,0.4996,0.100212,0.0940837,0.0556071,0.0546073,0.217541,0.0456115,0.0858539,0.874867,0.178173,0.639054,0.521101,0.494842,0.607985,0.0376924,0.873604,0.279804,0.633523,0.885864,0.211875,0.515153,0.871288,0.894531,0.0166053,0.715075,0.428106,0.728339,0.862295,0.220211,0.463635,0.763005,0.0427789,0.0869973,0.713656,0.972744,0.91012,0.773116,0.56005,0.818511,0.105887,0.402152,0.0411314,0.867251,0.704822,0.0209228,0.83854,0.531107,0.568334,0.452884,0.659353,0.618509,0.254245,0.696692,0.287543,0.744315,0.516831,0.519073,0.0674006,0.663207,0.0730439,0.930909,0.218088,0.73912,0.936925,0.653609,0.205003,0.283631,0.343047,0.516499,0.836069,0.533501,0.642417,0.402041,0.549227,0.729927,0.752589,0.106888,0.53625,0.117502,0.628733,0.961392,0.646714,0.166896,0.969016,0.590369,0.309728,0.453762,0.965889,0.466902,0.00511736,0.0563676,0.382398,|0.6009,0.168662,0.988775,0.0600501,0.712857,0.587658,0.549553,0.0430056,0.16594,0.0647128,0.801201,0.883906,0.465867,0.68447,0.225638,0.9258,0.297769,0.945026,0.858586,0.158504,0.421352,0.516474,0.719333,0.444349,0.792616,0.572188,0.543721,0.611845,0.718049,0.685032,0.336895,0.256142,0.507055,0.394292,0.0604343,0.855392,0.210823,0.0629246,0.625855,0.485709,0.0954386,0.172051,0.933895,0.772456,0.425824,0.53125,0.670758,0.715537,0.85941,0.905699,0.777379,0.191895,0.16798,0.143271,0.255998,0.769773,0.5423,0.42469,0.101508,0.647127,0.766557,0.810503,0.946709,0.664693,0.542916,0.499696,0.954999,0.47563,0.41846,0.219762,0.901437,0.118145,0.684359,0.116164,0.00579005,0.0411766,0.57532,0.907568,0.386413,0.253833,0.138789,0.438995,0.351298,0.868392,0.544473,0.109012,0.735797,0.412129,0.889956,0.657916,0.394568,0.413635,0.682742,0.146597,0.906175,0.889228,0.875981,0.872062,0.221354,0.616806,0.154008,0.699769,0.0477382,0.139358,0.41109,0.505831,0.299527,0.917289,0.933477,0.940566,0.641007,0.0371963,0.162471,0.397367,0.618207,0.734811,0.0809976,0.0376809,0.530223,0.356545,0.399466,0.438601,0.767936,0.0524545,0.940434,0.901414,0.49311,0.385762,0.902271,0.67042,0.83984,0.170673,0.240842,0.286862,0.380961,0.511137,0.84084,0.724105,0.436359,0.883975,0.670521,0.159838,0.320789,0.975632,0.758785,0.333278,0.112893,0.911631,0.467849,0.898221,0.0269557,0.59238,0.607399,0.87423,0.355833,0.0144421,0.043736,0.933707,0.0408694,0.769203,0.51282,0.603758,0.213103,0.888653,0.0793687,0.238869,0.466841,0.82018,0.818441,0.567407,0.201284,0.859451,0.493525,0.175969,0.86156,0.66959,0.846357,0.367442,0.605654,0.0437154,0.698793,0.670257,0.115491,0.969465,0.432372,0.0949539,0.761154,0.914562,0.902916,0.287941,0.61469,0.512386,0.0310805,0.118858,0.406009,0.475049,0.33229,0.776392,0.882237,0.250989,0.48063,0.680963,0.022997,0.783222,0.664102,0.228406,0.428667,0.200661,0.923062,0.181998,0.522735,0.415096,0.923778,0.570176,0.24311,0.938685,0.680329,0.22764,0.0842794,0.777632,0.913305,0.920716,0.0760936,0.22658,0.968836,0.483349,0.00218475,0.949093,0.85846,0.62376,0.192256,0.376095,0.302967,0.563439,0.415222,0.697767,0.874156,0.646225,0.683771,0.0425273,0.424607,0.319261,0.146002,0.39427,0.0161435,0.69079,0.0281225,0.846026,0.774393,0.82295,0.545393,0.0406836,0.530577,0.955802,0.696262,0.350264,0.993447,0.778717,0.479918,0.898406,0.620016,0.77066,0.58098,0.278541,0.682904,0.939061,0.114252,0.570408,0.486315,0.15692,0.803974,0.080504,0.253102,0.560365,0.425566,0.612862,0.535016,0.554619,0.492462,0.129498,0.961338,0.0670698,0.55393,0.342386,0.276156,0.475707,0.377232,0.962313,0.299263,0.0621968,0.149738,0.958266,0.640335,0.365881,0.708997,0.764407,0.508649,0.639669,0.724369,0.5218,0.0592473,0.809918,0.0654968,0.0575542,0.210407,0.220828,0.203316,0.392721,0.181425,0.634849,0.615444,0.197959,0.3788,0.0327454,0.495648,0.0714659,0.0785573,0.44136,0.960646,0.203995,0.431234,0.402295,0.700235,0.608019,0.0672092,0.802404,0.353098,0.813819,0.836012,0.361156,0.586044,0.0627494,0.755176,0.0217511,0.675538,0.64774,0.977448,0.0570799,0.637295,0.967026,0.0486919,0.869614,0.381327,0.790427,0.280288,0.323641,0.297491,0.0586045,0.263034,0.204159,0.376809,0.553304,0.768767,0.776876,0.381687,0.865589,0.149078,0.346267,0.543568,0.670006,0.441417,0.715843,0.775604,0.0165698,0.996553,0.821403,0.687407,0.00768518,0.775137,0.441313,0.747653,0.628487,0.719287,0.0514739,0.307932,0.110766,0.650533,0.0987868,0.0364017,0.905418,0.0883005,0.617633,0.374396,0.296355,0.596405,0.921681,0.144951,0.651568,0.00906211,0.548719,0.901604,0.469807,0.838049,0.584625,0.13784,0.616509,0.688665,0.714578,0.680414,0.0550261,0.325843,0.539626,0.872988,0.634996,0.0929461,0.818489,0.0346379,0.610674,0.574232,0.143789,0.199124,0.98592,0.141371,0.225739,0.243961,0.58069,0.902,0.649331,0.996691,0.472183,0.609851,0.761818,0.540934,0.662289,0.354195,0.461079,0.0854565,0.0240179,0.810519,0.496536,0.0848608,0.635564,0.923877,0.542206,0.218625,0.792486,0.63195,0.780883,0.859161,0.813832,0.865966,0.0456963,0.183041,0.877748,0.682648,0.780669,0.266674,0.387374,0.361761,0.993293,0.460842,0.969969,0.923822,0.729998,0.733116,0.0831844,0.0693178,0.521092,0.918932,0.612067,0.184244,0.168431,0.269291,0.167641,0.555183,0.572678,0.405024,0.438142,0.454611,0.724295,0.342037,0.201755,0.319193,0.652212,0.733005,0.071583,0.177589,0.40111,0.875821,0.151834,0.5541,0.690124,0.759411,0.807519,0.909952,0.393079,0.458152,0.0168511,0.352471,0.43225,0.365476,0.708965,0.428124,0.840133,0.415351,0.30818,0.622893,0.865353,0.660468,0.911967,0.331182,0.348264,0.581564,0.416593,0.112382,0.189919,0.760401,0.602941,0.910894,0.0140616,0.241672,0.578607,0.718404,0.261821,0.975517,0.363903,0.221072,0.216782,0.331665,0.933752,0.659972,0.231298,0.551121,0.69912,0.164848,0.155637,0.91279,0.316577,0.334083,0.162899,0.0614986,0.999639,0.384653,0.800555,0.00102884,0.386859,0.287083,0.252227,0.507638,0.635835,0.178142,0.94175,0.919863,0.483551,0.88091,0.525659,0.0206903,0.273509,0.980998,0.601427,0.519744,0.0740068,0.836312,0.691968,0.0524599,0.459708,0.267412,0.296275,0.317992,0.240494,0.910685,0.659156,0.278841,0.697879,0.256158,0.639747,0.759215,0.599465,0.01548,0.901805,0.046058,0.72518,0.993818,0.328778,0.727236,0.914539,0.615521,0.592513,0.505386,0.515465,0.557808,0.892827,0.0397897,0.202292,0.757827,0.292918,0.921022,0.276398,0.348439,0.602305,0.310756,0.216343,0.926953,0.791151,0.857248,0.308549,0.354817,0.675088,0.28505,0.650682,0.689256,0.859017,0.772468,0.210097,0.846769,0.632933,0.00334603,0.326817,0.821631,0.96227,0.146331,0.891709,0.656527,0.735998,0.390146,0.72444,0.880022,0.313834,0.43573,0.754388,0.419133,0.963901,0.59627,0.345894,0.927271,0.623888,0.982027,0.952317,0.704139,0.919331,0.343904,0.444809,0.0684073,0.873646,0.247879,0.535535,0.931912,0.0887823,0.100046,0.969254,0.513395,0.140832,0.240344,0.151075,0.00783932,0.472219,0.757378,0.652063,0.806351,0.42728,0.0360569,0.0499606,0.141862,0.612199,0.107953,0.391017,0.379626,0.449861,0.299189,0.881787,0.0459869,0.158662,0.776227,0.306853,0.856911,0.0941704,0.198938,0.866921,0.457196,0.14697,0.613201,0.563646,0.784549,0.0295933,0.473636,0.781758,0.244009,0.116306,0.537506,0.948378,0.092361,0.85765,0.355367,0.566668,0.211072,0.546232,0.2769,0.0351584,0.198601,0.27125,0.343083,0.710433,0.621529,0.962211,0.0205844,0.313758,0.999212,0.766301,0.256829,0.485348,0.667018,0.239881,0.299893,0.482018,0.415556,0.407437,0.887263,0.173785,0.00199372,0.874841,0.555381,0.0118242,0.388062,0.167697,0.216284,0.910331,0.917668,0.832399,0.967261,0.975589,0.32717,0.422898,0.12111,0.57803,0.622038,0.50854,0.720509,0.266674,0.0510499,0.0134689,0.828468,0.268891,0.117794,0.596624,0.560176,0.00872785,0.535639,0.902789,0.158937,0.732449,0.776363,0.678836,0.740782,0.196449,0.460429,0.422902,0.29797,0.510244,0.795812,0.890534,0.324213,0.233048,0.133428,0.855762,0.654881,0.200234,0.060976,0.500488,0.507908,0.15521,0.489766,0.282129,0.581428,0.944919,0.368441,0.270205,0.294147,0.52285,0.238029,0.808118,0.126805,0.502354,0.357212,0.261224,0.329179,0.330625,0.0371894,0.66349,0.17822,0.97796,0.266887,0.412338,0.812489,0.0323891,0.494383,0.97927,0.47666,0.471532,0.0682569,0.394863,0.931182,0.0482988,0.924636,0.435197,0.31323,0.797382,0.148818,0.519649,0.740837,0.487079,0.941495,0.360975,0.914626,0.468448,0.219105,0.72427,0.702727,0.73717,0.915621,0.202154,0.808252,0.114668,0.989758,0.294215,0.0306404,0.128256,0.336891,0.54247,0.214214,0.737251,0.24619,0.919675,0.310357,0.31241,0.972075,0.579595,0.26295,0.549395,0.62696,0.00352317,0.0739212,0.716179,0.1683,0.676727,0.248261,0.940166,0.123775,0.564507,0.129198,0.94332,0.516259,0.566994,0.864716,0.489563,0.890398,0.735895,0.623822,0.296118,0.164708,0.0729658,0.641081,0.535662,0.844927,0.305079,0.993545,0.739349,0.780947,0.28827,0.461171,0.211741,0.394554,0.105579,0.903026,0.418338,0.745668,0.150243,0.767641,0.951886,0.714632,0.411699,0.808372,0.676559,0.80827,0.46574,0.677502,0.462421,0.74523,0.191294,0.453549,0.601558,0.843247,0.656789,0.539995,0.424487,0.525834,0.74559,0.71042,0.675571,0.82802,0.143887,0.848712,0.30908,0.744621,0.464836,0.253061,0.964304,0.460068,0.546824,0.421695,0.7691,0.168769,0.296105,0.614205,0.427137,0.600138,0.458591,0.0641411,0.507619,0.0471101,0.604429,0.659673,0.560083,0.423033,0.120811,0.497095,0.705256,0.702623,0.921208,0.099628,0.0127633,0.383292,0.347117,0.892831,0.511467,0.724452,0.0036844,0.471612,0.620927,0.240561,0.605245,0.385039,0.893737,0.246496,0.153371,0.94975,0.329537,0.397505,0.475802,0.444477,0.829445,0.48509,0.985217,0.92774,0.472926,0.874296,0.49089,0.604366,0.118616,0.899606,0.78181,0.704621,0.550689,0.402211,0.141958,0.690511,0.0399937,0.800934,0.0132064,0.581835,0.745517,0.3536,0.422436,0.189059,0.46827,0.786751,0.0739134,0.450076,0.892752,0.445772,0.563621,0.87986,0.64982,0.504831,0.0542698,0.499137,0.746028,0.634802,0.978305,0.295645,0.557655,0.0923738,0.46107,0.691156,0.850991,0.288191,0.00283247,0.253717,0.752283,0.0406629,0.978769,0.494659,0.49618,0.70191,0.0303732,0.455498,0.0871284,0.98827,0.0956693,0.722239,0.740542,|0.785559,0.448239,0.115451,0.711127,0.358998,0.548706,0.474765,0.181381,0.427538,0.347708,0.244747,0.639884,0.604403,0.959899,0.135816,0.847523,0.0319273,0.890323,0.440291,0.415088,0.268828,0.16714,0.171292,0.355467,0.398528,0.334187,0.0324041,0.725199,0.0195709,0.446025,0.277524,0.525156,0.0382824,0.233698,0.767495,0.220823,0.346109,0.695529,0.472516,0.633379,0.608998,0.407019,0.788465,0.129561,0.589668,0.474065,0.0531706,0.200859,0.138252,0.992205,0.146847,0.326178,0.0738534,0.182291,0.314454,0.091006,0.879398,0.261717,0.874286,0.262702,0.61538,0.60038,0.821701,0.597731,0.388365,0.119916,0.715949,0.964993,0.435802,0.441621,0.473416,0.929739,0.926848,0.749475,0.161301,0.275451,0.879786,0.603731,0.705699,0.818835,0.259557,0.485896,0.899962,0.13846,0.636969,0.671327,0.90746,0.0211757,0.441917,0.722963,0.317962,0.489247,0.51079,0.101822,0.517248,0.382155,0.874435,0.852453,0.0211108,0.297271,0.987846,0.849628,0.692425,0.85051,0.754632,0.654112,0.907926,0.223783,0.562471,0.84421,0.698706,0.796572,0.85815,0.624678,0.0196789,0.896292,0.0323236,0.466686,0.446855,0.965525,0.457388,0.952936,0.16587,0.15557,0.290949,0.585583,0.425455,0.260819,0.503517,0.926512,0.220733,0.522423,0.442782,0.546732,0.389546,0.936842,0.479999,0.697055,0.965487,0.192585,0.375343,0.289039,0.0898777,0.224916,0.910178,0.0528601,0.224281,0.411262,0.950006,0.804154,0.652457,0.527184,0.567554,0.0353684,0.889789,0.774199,0.685753,0.335139,0.0159064,0.992756,0.812487,0.62096,0.695387,0.549981,0.383416,0.965387,0.488251,0.951299,0.362097,0.139138,0.903207,0.193958,0.458988,0.642103,0.108663,0.257064,0.661184,0.190303,0.671474,0.334221,0.546361,0.088106,0.459059,0.374352,0.612807,0.315309,0.597563,0.905545,0.0288708,0.662566,0.629244,0.605829,0.0830779,0.564265,0.648669,0.257624,0.0802482,0.0122442,0.402739,0.131585,0.616899,0.927209,0.0508469,0.485335,0.401908,0.62077,0.0609769,0.658049,0.515528,0.723877,0.45162,0.303341,0.976784,0.581725,0.886237,0.484963,0.771451,0.681458,0.211145,0.5809,0.290642,0.259638,0.614625,0.0434244,0.677215,0.392262,0.763504,0.812298,0.0434165,0.501483,0.632597,0.418733,0.531407,0.703161,0.176156,0.463123,0.785411,0.561812,0.168126,0.482659,0.497079,0.0745365,0.548837,0.625292,0.794693,0.0656289,0.240393,0.6026,0.200734,0.757986,0.0357032,0.380022,0.7289,0.438661,0.575799,0.387807,0.161189,0.842469,0.218654,0.813242,0.74991,0.156803,0.735508,0.0614746,0.99864,0.374881,0.723784,0.821395,0.139805,0.262023,0.66768,0.267217,0.785138,0.230923,0.244465,0.812559,0.835151,0.981194,0.65279,0.890403,0.684283,0.320165,0.577391,0.44257,0.00882018,0.647558,0.0762388,0.184208,0.311932,0.848555,0.549848,0.63048,0.0339683,0.491472,0.317712,0.601149,0.796946,0.356127,0.61913,0.67349,0.495524,0.4834,0.65751,0.281228,0.253793,0.354291,0.0225183,0.711403,0.384796,0.285378,0.575378,0.888475,0.941718,0.424605,0.695678,0.573978,0.182364,0.425628,0.622015,0.966689,0.0259935,0.195653,0.0882583,0.852436,0.656241,0.406996,0.403451,0.199011,0.19657,0.549171,0.711004,0.268217,0.179548,0.466,0.602678,0.808335,0.212526,0.339784,0.148721,0.265334,0.720339,0.285713,0.363557,0.101497,0.609629,0.66957,0.986626,0.226545,0.949252,0.132926,0.0710688,0.786504,0.728163,0.97048,0.871102,0.524614,0.208821,0.678699,0.24992,0.267268,0.979346,0.664694,0.663386,0.495746,0.771571,0.0108364,0.371359,0.529128,0.609994,0.054015,0.896751,0.100876,0.0729862,0.861712,0.855765,0.146841,0.242514,0.262364,0.668285,0.0171835,0.980769,0.477564,0.544361,0.628962,0.214407,0.541988,0.944349,0.974873,0.45515,0.40292,0.393451,0.82788,0.0854677,0.432148,0.514122,0.00852668,0.683654,0.560799,0.108303,0.929004,0.327533,0.876884,0.444376,0.680542,0.179505,0.127725,0.844658,0.0483401,0.416382,0.599662,0.947363,0.762517,0.0685596,0.00392467,0.888056,0.307651,0.878544,0.629462,0.520737,0.0936615,0.829649,0.750552,0.171358,0.051092,0.389882,0.941461,0.280881,0.911209,0.906655,0.988191,0.459912,0.868622,0.0548418,0.564847,0.915029,0.0408159,0.971281,0.701849,0.145406,0.754815,0.944278,0.26141,0.00213337,0.385408,0.291199,0.191247,0.303067,0.00465816,0.604902,0.936899,0.375488,0.805524,0.299548,0.483526,0.234041,0.747341,0.349893,0.794878,0.46961,0.43988,0.1799,0.00738603,0.313468,0.249766,0.36288,0.28856,0.323719,0.894795,0.895027,0.273053,0.399882,0.780874,0.440113,0.26756,0.0377068,0.874856,0.816857,0.437901,0.282393,0.137314,0.0498285,0.971327,0.188034,0.847263,0.418659,0.115309,0.992319,0.235108,0.10432,0.806377,0.342325,0.656255,0.699157,0.982245,0.925469,0.832085,0.0967333,0.21286,0.805587,0.437149,0.436598,0.620661,0.515367,0.982651,0.362069,0.0953955,0.392788,0.856082,0.309412,0.884066,0.954681,0.0756218,0.335103,0.6716,0.6304,0.919764,0.474694,0.57004,0.763826,0.342229,0.594127,0.613728,0.536822,0.103607,0.433679,0.124245,0.734428,0.500101,0.642634,0.0796829,0.199841,0.195453,0.635277,0.502622,0.650341,0.701731,0.975181,0.0695296,0.0253454,0.390097,0.913394,0.372246,0.833578,0.82549,0.353926,0.849989,0.301801,0.10821,0.936095,0.681304,0.952271,0.382151,0.394609,0.553982,0.864644,0.768757,0.703861,0.793254,0.178344,0.820831,0.855895,0.118995,0.947407,0.0924407,0.00408691,0.570467,0.957349,0.0876477,0.674385,0.551703,0.419804,0.472144,0.607236,0.2991,0.0639671,0.425561,0.166575,0.0778918,0.403095,0.226832,0.76273,0.746457,0.516015,0.252461,0.583854,0.737306,0.388984,0.350191,0.572324,0.0661278,0.703343,0.454764,0.817605,0.563057,0.0928522,0.686541,0.702436,0.711603,0.161343,0.330111,0.557345,0.723064,0.865646,0.750584,0.819182,0.270744,0.0404192,0.254708,0.920024,0.464277,0.980914,0.479797,0.278428,0.059549,0.277245,0.532641,0.544635,0.0643645,0.265985,0.483734,0.0756928,0.183847,0.164727,0.711584,0.123255,0.970695,0.44114,0.913034,0.725732,0.773688,0.908733,0.737995,0.994411,0.441161,0.00672436,0.588555,0.0472062,0.381236,0.231307,0.0539049,0.916221,0.582836,0.968312,0.630144,0.78351,0.399254,0.702008,0.814273,0.612161,0.785466,0.258784,0.47049,0.404282,0.777462,0.0609677,0.397259,0.975027,0.792079,0.609289,0.565668,0.0490917,0.599264,0.49486,0.065064,0.0328943,0.294267,0.75804,0.320632,0.649977,0.724778,0.801489,0.586708,0.958594,0.493384,0.625324,0.147788,0.864302,0.613538,0.221184,0.722691,0.391695,0.813511,0.828247,0.236381,0.0105494,0.319687,0.341342,0.44569,0.977136,0.0592124,0.724353,0.816808,0.195919,0.202782,0.606269,0.812846,0.660883,0.0857268,0.352507,0.234859,0.346736,0.00880188,0.346885,0.856262,0.643894,0.977714,0.15925,0.193274,0.456962,0.250236,0.504528,0.42138,0.741369,0.513524,0.258282,0.657267,0.086636,0.201782,0.296275,0.682083,0.913122,0.532456,0.524935,0.243644,0.962631,0.00181133,0.152642,0.134095,0.333833,0.610013,0.128514,0.31619,0.637094,0.64025,0.453468,0.521652,0.692377,0.355604,0.792411,0.448655,0.265147,0.721341,0.143063,0.608715,0.767599,0.379135,0.431409,0.611255,0.275405,0.48129,0.970121,0.916281,0.544679,0.910284,0.656516,0.837893,0.639129,0.884985,0.859492,0.128679,0.348429,0.760701,0.668754,0.480945,0.271506,0.576769,0.93832,0.307417,0.655736,0.560014,0.195141,0.0611176,0.253508,0.130839,0.951643,0.968228,0.645081,0.728536,0.11874,0.704518,0.777504,0.789269,0.247823,0.702287,0.97656,0.529562,0.979607,0.783301,0.0620329,0.579349,0.874335,0.761636,0.372709,0.427371,0.810292,0.911571,0.940354,0.5661,0.0967466,0.879613,0.904531,0.744972,0.132239,0.147862,0.159109,0.149271,0.529563,0.851699,0.657579,0.256068,0.88097,0.288729,0.267207,0.389044,0.456036,0.533365,0.499438,0.319797,0.555702,0.781712,0.872505,0.1075,0.453396,0.69969,0.342974,0.335339,0.665992,0.639015,0.509887,0.931031,0.74471,0.0735343,0.54329,0.197718,0.24192,0.154527,0.788912,0.317671,0.965865,0.698171,0.189643,0.122074,0.249633,0.341357,0.51218,0.17606,0.0917497,0.286918,0.554374,0.922786,0.190038,0.0574666,0.553914,0.63563,0.179523,0.727662,0.703514,0.15997,0.098865,0.674364,0.172578,0.983683,0.0160789,0.847635,0.944578,0.887053,0.167426,0.0642502,0.785664,0.417446,0.450404,0.16876,0.264381,0.370451,0.305926,0.889121,0.147348,0.381496,0.296295,0.692291,0.87238,0.652102,0.310842,0.168542,0.831747,0.0251464,0.96083,0.64711,0.0056932,0.899781,0.79488,0.421037,0.151106,0.260553,0.952391,0.207629,0.466926,0.186418,0.74733,0.717036,0.836643,0.519432,0.0458536,0.544342,0.992558,0.0563229,0.0502618,0.896557,0.463438,0.665361,0.629764,0.0577561,0.532156,0.323398,0.84878,0.979818,0.38893,0.340449,0.501503,0.225159,0.530483,0.179238,0.0998976,0.998961,0.322743,0.0488737,0.366687,0.101903,0.572109,0.404112,0.466329,0.332443,0.276334,0.0702376,0.765648,0.338325,0.959916,0.774075,0.901462,0.559905,0.322915,0.791025,0.023438,0.77438,0.816018,0.437164,0.560267,0.793527,0.0105392,0.696325,0.645219,0.342263,0.174533,0.933494,0.571127,0.214334,0.915964,0.471409,0.0209576,0.529864,0.556764,0.905627,0.396354,0.266384,0.843297,0.663998,0.311244,0.787145,0.381561,0.31197,0.47165,0.103801,0.989718,0.436311,0.475384,0.791106,0.0382457,0.976711,0.233518,0.296423,0.279618,0.357768,0.561513,0.771132,0.414913,0.778866,0.503343,0.610259,0.521206,0.838916,0.000388563,0.153236,0.67069,0.00301069,0.380153,0.75274,0.705086,0.678904,0.357812,0.801055,|0.73725,0.953827,0.986428,0.879814,0.754348,0.675244,0.203872,0.304385,0.489811,0.571137,0.555606,0.417105,0.869766,0.826164,0.782682,0.775384,0.929372,0.691061,0.852692,0.243528,0.315913,0.632049,0.19288,0.760766,0.42721,0.0462246,0.827983,0.133169,0.702976,0.0410602,0.860851,0.567204,0.68273,0.601895,0.810905,0.699218,0.549531,0.560014,0.536646,0.746194,0.0937439,0.892303,0.848063,0.367527,0.0634719,0.572885,0.27645,0.763934,0.935597,0.437313,0.571118,0.0401812,0.502124,0.454377,0.346538,0.187241,0.690972,0.294069,0.796103,0.0629642,0.183339,0.547656,0.106943,0.339487,0.568562,0.418044,0.210092,0.225467,0.0923077,0.604029,0.5719,0.960431,0.0577673,0.126719,0.968355,0.555313,0.855139,0.434719,0.938508,0.234086,0.0194836,0.226774,0.0610149,0.73687,0.256328,0.883126,0.320137,0.0599933,0.906973,0.744493,0.608154,0.176879,0.601132,0.253551,0.411885,0.91263,0.459106,0.03202,0.601029,0.153321,0.0404911,0.445535,0.188696,0.91401,0.336966,0.0609936,0.565162,0.0410131,0.688845,0.219393,0.162647,0.355721,0.858832,0.122595,0.915414,0.440167,0.429847,0.980682,0.34252,0.0328709,0.922787,0.089685,0.540317,0.610509,0.690572,0.763732,0.824652,0.311878,0.869765,0.631928,0.792713,0.932885,0.379009,0.161364,0.961888,0.965024,0.881829,0.920405,0.605416,0.636618,0.827836,0.145828,0.746425,0.462012,0.932377,0.863725,0.395822,0.592951,0.0806094,0.227388,0.733248,0.542814,0.315044,0.308775,0.933578,0.156037,0.24499,0.059137,0.0517595,0.945751,0.833252,0.24271,0.441734,0.835242,0.940113,0.482216,0.282454,0.558833,0.193753,0.380992,0.556255,0.575438,0.438678,0.348865,0.395316,0.380676,0.162743,0.0190939,0.398368,0.602453,0.856905,0.470869,0.653238,0.15911,0.87345,0.216194,0.818671,0.223958,0.976577,0.765201,0.0409639,0.995911,0.806914,0.121368,0.0217057,0.385591,0.0408405,0.698508,0.146123,0.518155,0.978662,0.0195017,0.581444,0.877563,0.329062,0.497561,0.270248,0.779109,0.447769,0.962204,0.505929,0.166905,0.767873,0.315661,0.935458,0.379805,0.349877,0.940519,0.547828,0.814045,0.382204,0.00861633,0.271645,0.194088,0.727399,0.645717,0.598376,0.215439,0.937687,0.51235,0.718372,0.37109,0.706879,0.878593,0.994121,0.92809,0.533394,0.45164,0.346004,0.536961,0.690227,0.925732,0.929769,0.999225,0.614752,0.639959,0.588293,0.727806,0.900027,0.981334,0.850124,0.326798,0.74515,0.797313,0.362717,0.255257,0.0647718,0.711399,0.892399,0.115272,0.82809,0.844668,0.0472612,0.883794,0.484468,0.440345,0.820528,0.235478,0.312967,0.277213,0.710939,0.927141,0.580729,0.245975,0.340644,0.656369,0.00472385,0.171958,0.382344,0.613524,0.637859,0.900511,0.686966,0.904561,0.431497,0.125941,0.806741,0.384023,0.884014,0.155545,0.071766,0.740198,0.724086,0.148501,0.900049,0.267721,0.0440251,0.780946,0.220483,0.241493,0.901057,0.746141,0.989429,0.236697,0.875158,0.186363,0.162437,0.543522,0.290889,0.617307,0.61561,0.915991,0.379382,0.22563,0.373125,0.174479,0.0809969,0.682377,0.637946,0.526513,0.811773,0.206361,0.239775,0.40682,0.26069,0.165754,0.399641,0.411652,0.802031,0.725034,0.601957,0.308034,0.684009,0.829427,0.542171,0.0184578,0.342488,0.807003,0.972292,0.888899,0.364791,0.227745,0.993695,0.665762,0.618318,0.678701,0.610273,0.792919,0.709619,0.870476,0.946499,0.318111,0.786641,0.806286,0.687014,0.854637,0.966995,0.0279742,0.723953,0.428128,0.988485,0.640136,0.559865,0.176225,0.644145,0.0735495,0.561586,0.320394,0.416753,0.760306,0.378682,0.00652415,0.0561728,0.211715,0.44541,0.522426,0.344945,0.442087,0.0427779,0.801763,0.728038,0.386758,0.752668,0.209709,0.364799,0.870693,0.513929,0.250771,0.508615,0.529621,0.473851,0.625475,0.163446,0.0662552,0.915969,0.984736,0.943248,0.72675,0.882689,0.60926,0.997862,0.862276,0.559298,0.472908,0.042173,0.563677,0.468035,0.503115,0.280961,0.768478,0.871239,0.601359,0.0381785,0.217248,0.253265,0.629302,0.728706,0.642745,0.686336,0.872021,0.0751717,0.277271,0.571568,0.897077,0.732552,0.481549,0.384016,0.54687,0.703884,0.813149,0.540652,0.850798,0.700625,0.621005,0.302091,0.547894,0.801481,0.12934,0.706497,0.653362,0.11377,0.52472,0.787369,0.650753,0.709053,0.0178319,0.896697,0.331587,0.519298,0.398336,0.677129,0.772412,0.520639,0.645025,0.527303,0.826653,0.630303,0.998112,0.0229995,0.551191,0.644939,0.0564566,0.39285,0.311962,0.51134,0.603971,0.888915,0.0533955,0.277772,0.452982,0.640498,0.976027,0.819371,0.894022,0.789301,0.812573,0.689618,0.565727,0.280978,0.547035,0.256712,0.420876,0.863185,0.92299,0.291465,0.902147,0.926798,0.157445,0.80049,0.961795,0.158471,0.67296,0.646596,0.237706,0.900514,0.957119,0.70365,0.353352,0.137893,0.931655,0.547066,0.161231,0.944016,0.292684,0.316063,0.323207,0.07122,0.446278,0.0721134,0.0844257,0.259993,0.950363,0.664297,0.336743,0.832584,0.634869,0.455525,0.660532,0.366951,0.0150052,0.796176,0.150544,0.211379,0.71553,0.0846439,0.0562877,0.148848,0.557371,0.542463,0.448093,0.63866,0.505819,0.54149,0.582149,0.128061,0.127374,0.803834,0.929662,0.923534,0.897058,0.754937,0.499646,0.602068,0.472019,0.971517,0.0838569,0.544197,0.671785,0.159847,0.315126,0.202994,0.785056,0.27111,0.762308,0.771923,0.529512,0.0214882,0.921242,0.478532,0.845059,0.45487,0.472415,0.598424,0.604383,0.53393,0.539494,0.536913,0.909834,0.40947,0.191312,0.765496,0.574779,0.793677,0.182527,0.441137,0.907662,0.638205,0.623598,0.194377,0.519244,0.110987,0.0472077,0.478938,0.339278,0.313837,0.388886,0.260479,0.034182,0.135338,0.946171,0.783779,0.421062,0.602518,0.559881,0.152845,0.22865,0.23861,0.953438,0.31536,0.373004,0.94187,0.641296,0.689847,0.364676,0.996681,0.0981149,0.194715,0.251235,0.0959725,0.271583,0.0114652,0.033762,0.0387318,0.331232,0.0241937,0.952724,0.344086,0.565503,0.656039,0.770436,0.861465,0.88962,0.537075,0.161835,0.9803,0.119167,0.976843,0.0665538,0.372379,0.974606,0.498837,0.469739,0.794013,0.489915,0.86183,0.92442,0.317886,0.250114,0.439623,0.360761,0.275908,0.643705,0.0980192,0.838446,0.786983,0.498674,0.697055,0.561772,0.691696,0.671401,0.0526304,0.791956,0.520458,0.851968,0.987149,0.303844,0.72895,0.673296,0.0354168,0.665727,0.190969,0.172301,0.905283,0.194574,0.468374,0.0884643,0.509406,0.977844,0.543952,0.172605,0.946198,0.83947,0.320835,0.206855,0.503472,0.68765,0.626478,0.850594,0.425037,0.0925093,0.925495,0.00128919,0.982588,0.206802,0.825894,0.733443,0.0863524,0.807812,0.866571,0.737665,0.680884,0.0352899,0.109545,0.156953,0.282759,0.402491,0.812241,0.927911,0.568085,0.646406,0.496417,0.461063,0.886243,0.241214,0.509938,0.712347,0.340504,0.816095,0.558899,0.175244,0.567375,0.0120026,0.93994,0.229656,0.408836,0.293741,0.682191,0.163878,0.418908,0.241573,0.720042,0.604896,0.251356,0.390531,0.560939,0.435305,0.66792,0.493542,0.352962,0.849087,0.829053,0.99649,0.458557,0.862839,0.724578,0.98101,0.557546,0.759373,0.889369,0.0908478,0.671544,0.419008,0.222044,0.119858,0.484942,0.446792,0.938953,0.93973,0.333972,0.884964,0.00910193,0.810393,0.615359,0.626748,0.0799564,0.94779,0.599611,0.127078,0.814065,0.760844,0.176615,0.633115,0.0998279,0.411073,0.511324,0.800795,0.179385,0.0738567,0.597094,0.138366,0.518385,0.836146,0.873711,0.0182691,0.547846,0.605059,0.335093,0.677807,0.0309043,0.0162703,0.601832,0.11674,0.153351,0.479311,0.190295,0.27275,0.769309,0.76112,0.894545,0.352451,0.735575,0.509983,0.198937,0.875434,0.869779,0.66927,0.775734,0.231445,0.267218,0.823864,0.533362,0.130393,0.317589,0.00110012,0.0256205,0.809834,0.650346,0.323386,0.926345,0.477526,0.265508,0.774778,0.539414,0.827075,0.410255,0.661974,0.939676,0.044435,0.600209,0.362772,0.860458,0.095741,0.758937,0.164593,0.135541,0.964713,0.159492,0.0414946,0.548128,0.102746,0.0509152,0.837698,0.252421,0.789802,0.591932,0.629569,0.816603,0.120065,0.0156444,0.500358,0.362886,0.181883,0.252074,0.741698,0.563203,0.5728,0.458863,0.148151,0.331091,0.110194,0.337619,0.617159,0.499733,0.446508,0.579605,0.380337,0.233284,0.676332,0.66213,0.19075,0.304976,0.457737,0.830715,0.839866,0.943966,0.704163,0.805129,0.615646,0.319871,0.0160179,0.308925,0.0818354,0.282279,0.242916,0.851315,0.596348,0.49291,0.564285,0.0388595,0.400472,0.480261,0.283755,0.802909,0.381417,0.960296,0.142943,0.127979,0.309144,0.532449,0.64758,0.597418,0.664477,0.758562,0.643462,0.269929,0.433282,0.482472,0.17784,0.637689,0.663289,0.660069,0.853224,0.425149,0.690418,0.484996,0.769664,0.695691,0.84549,0.189233,0.440517,0.694163,0.789414,0.0203195,0.119096,0.802602,0.566873,0.655653,0.11276,0.222524,0.213032,0.971734,0.498482,0.586394,0.229227,0.852432,0.3358,0.633919,0.956988,0.631028,0.786724,0.681848,0.36591,0.353433,0.0827245,0.168188,0.526854,0.462108,0.898977,0.245932,0.914798,0.847544,0.384088,0.769943,0.698344,0.0867166,0.385356,0.611636,0.344761,0.0808425,0.764801,0.45223,0.569181,0.445828,0.141403,0.636467,0.584877,0.677703,0.774495,0.840195,0.511632,0.776158,0.20529,0.290198,0.856743,0.297766,0.0401006,0.802985,0.654871,0.424211,0.343325,0.00388283,0.730369,0.477348,0.135134,0.363935,0.576932,0.908215,0.995754,0.583013,0.0909675,0.353329,0.288653,0.275863,0.969261,0.0190088,0.0936058,0.16413,0.78785,0.167605,0.107054,0.910517,0.7343,0.385411,0.967165,0.997774,0.416159,0.30231,0.697872,0.388037,0.505748,|0.508514,0.714667,0.88392,0.883498,0.952542,0.606106,0.626161,0.800473,0.292251,0.373027,0.807975,0.641331,0.984312,0.980388,0.646301,0.895121,0.679524,0.736253,0.522503,0.663149,0.345916,0.212331,0.588322,0.776932,0.346175,0.165445,0.868329,0.508307,0.251258,0.791405,0.58705,0.132437,0.730154,0.0320508,0.0767085,0.541458,0.823206,0.524308,0.680545,0.584662,0.202176,0.924015,0.766087,0.358047,0.625686,0.143401,0.462349,0.302406,0.847996,0.531708,0.656232,0.382067,0.158798,0.731232,0.368865,0.98208,0.239586,0.424666,0.604826,0.556915,0.492749,0.91144,0.468281,0.740282,0.413375,0.495168,0.361046,0.362585,0.776531,0.215335,0.900497,0.910046,0.6569,0.254311,0.0236609,0.717302,0.806683,0.480898,0.0525448,0.956865,0.0247874,0.532825,0.210229,0.865731,0.497225,0.895499,0.235553,0.793898,0.0659342,0.636714,0.257285,0.136604,0.136653,0.391772,0.851862,0.42447,0.834499,0.0626763,0.178958,0.0551329,0.0867267,0.90788,0.26428,0.268048,0.505496,0.830204,0.370604,0.382067,0.232831,0.683744,0.748792,0.939934,0.497864,0.418559,0.765532,0.423702,0.12738,0.469063,0.645529,0.103123,0.793591,0.875066,0.453965,0.269948,0.270392,0.218314,0.409645,0.419543,0.967103,0.0107675,0.794321,0.574091,0.826745,0.750415,0.0253318,0.936701,0.078648,0.224597,0.166903,0.513293,0.453555,0.00994354,0.0967346,0.270672,0.96929,0.561872,0.744552,0.289172,0.711034,0.810599,0.443915,0.420671,0.0419141,0.797828,0.90446,0.866097,0.0866988,0.0692861,0.648873,0.516684,0.865469,0.790322,0.51007,0.291598,0.563043,0.978313,0.392634,0.574913,0.314824,0.614139,0.134116,0.873785,0.640772,0.603187,0.677793,0.754368,0.574419,0.101095,0.23863,0.465995,0.216309,0.467344,0.877898,0.365075,0.415071,0.898629,0.837403,0.131583,0.168028,0.376642,0.0872897,0.743644,0.384603,0.852344,0.21998,0.158723,0.109829,0.950625,0.596747,0.203539,0.374617,0.36562,0.911423,0.940106,0.565003,0.378116,0.250277,0.0520992,0.256699,0.863804,0.426984,0.273891,0.0153873,0.733392,0.287584,0.073056,0.235352,0.774772,0.434557,0.606217,0.964564,0.875483,0.991975,0.179534,0.80292,0.335411,0.0349563,0.206472,0.100581,0.524768,0.982319,0.104753,0.390825,0.177503,0.434882,0.785643,0.30081,0.0836866,0.0208939,0.352139,0.155445,0.631941,0.316416,0.899936,0.58553,0.204099,0.586913,0.680104,0.254258,0.346691,0.978494,0.226663,0.531954,0.508146,0.849387,0.131275,0.851697,0.531711,0.161474,0.443622,0.569128,0.108808,0.884502,0.7909,0.351339,0.43483,0.0692276,0.120732,0.253907,0.817948,0.803575,0.341834,0.174435,0.995593,0.0189736,0.206524,0.419168,0.336316,0.98291,0.891711,0.0428842,0.974519,0.155642,0.0602115,0.410341,0.470548,0.716152,0.574948,0.148317,0.30702,0.731427,0.419109,0.402781,0.202211,0.990121,0.376642,0.969807,0.0549142,0.061859,0.151717,0.616776,0.0267965,0.372197,0.421019,0.690242,0.0709774,0.609361,0.846957,0.0265735,0.0876792,0.391497,0.162908,0.00115919,0.361455,0.549651,0.195756,0.320781,0.225042,0.48039,0.371142,0.933461,0.0359101,0.439399,0.871742,0.491066,0.336923,0.0200589,0.11318,0.33635,0.282907,0.657188,0.340699,0.861137,0.175437,0.984165,0.726044,0.0176072,0.880954,0.504523,0.946428,0.0127606,0.875958,0.201384,0.717541,0.910718,0.693448,0.525468,0.149892,0.930045,0.0156137,0.346267,0.0496535,0.650543,0.690907,0.617572,0.91239,0.775855,0.946844,0.515489,0.194004,0.695136,0.539848,0.474556,0.480895,0.0326542,0.327827,0.030752,0.825481,0.539792,0.0304143,0.339953,0.647236,0.471545,0.181866,0.786102,0.130362,0.210254,0.561597,0.495828,0.28586,0.616448,0.0846632,0.0159112,0.918741,0.612152,0.539964,0.0690755,0.259757,0.34028,0.0265649,0.899808,0.217518,0.197997,0.599998,0.728201,0.334773,0.0987551,0.914186,0.463766,0.812994,0.903133,0.748617,0.530426,0.0904225,0.0431857,0.47161,0.515624,0.165117,0.168116,0.386872,0.166067,0.963668,0.45763,0.846262,0.644992,0.545132,0.776496,0.455601,0.413175,0.346342,0.471203,0.0419424,0.427791,0.302975,0.0977589,0.720056,0.673929,0.133567,0.275852,0.564852,0.110157,0.0525795,0.107638,0.0881634,0.646653,0.999285,0.781504,0.714874,0.962017,0.917499,0.0165893,0.702267,0.209361,0.21757,0.205087,0.557389,0.693262,0.934844,0.121647,0.231744,0.440733,0.855899,0.294009,0.200267,0.476386,0.984368,0.33852,0.196801,0.188923,0.375226,0.352801,0.0169543,0.509333,0.617919,0.882151,0.581795,0.837834,0.88634,0.252005,0.359278,0.932753,0.608863,0.772148,0.749653,0.529666,0.490149,0.326683,0.697142,0.936059,0.349415,0.430294,0.0274178,0.873742,0.0522573,0.146993,0.255411,0.519589,0.775446,0.591549,0.179501,0.0853767,0.781739,0.444982,0.746066,0.468025,0.759982,0.683095,0.239555,0.928412,0.496777,0.0453722,0.156828,0.290407,0.792506,0.090128,0.171384,0.506596,0.974785,0.847718,0.0576504,0.870044,0.379576,0.333058,0.680296,0.0793263,0.196696,0.386976,0.41018,0.89125,0.349784,0.0733691,0.0618708,0.189956,0.000829577,0.248567,0.538757,0.219726,0.527011,0.193191,0.429703,0.794502,0.514107,0.675162,0.829469,0.361705,0.408573,0.613613,0.125391,0.589875,0.0962608,0.30298,0.572496,0.485975,0.0582865,0.628944,0.867841,0.293009,0.388714,0.9984,0.198662,0.102887,0.821378,0.692623,0.631133,0.783526,0.278395,0.798817,0.457483,0.773172,0.337449,0.497443,0.265918,0.853555,0.19773,0.830064,0.737012,0.122043,0.0596485,0.572401,0.0471979,0.0324401,0.409336,0.62527,0.706071,0.0444054,0.607846,0.219589,0.339179,0.108071,0.64165,0.48593,0.947238,0.143227,0.638722,0.709784,0.705732,0.77806,0.255725,0.0264372,0.337332,0.929583,0.947733,0.212509,0.88331,0.719446,0.183946,0.51348,0.229621,0.956951,0.275539,0.726808,0.768811,0.255914,0.0991924,0.891551,0.508691,0.213601,0.683645,0.131048,0.49257,0.689537,0.377392,0.786106,0.666094,0.861102,0.601891,0.757288,0.381061,0.796167,0.828863,0.75499,0.857683,0.200179,0.642134,0.493591,0.0336871,0.934673,0.060329,0.225225,0.146813,0.255661,0.579295,0.0936079,0.150871,0.622982,0.133214,0.224786,0.486345,0.129565,0.0778787,0.604555,0.41599,0.359997,0.196576,0.71118,0.384562,0.281645,0.390546,0.815973,0.928135,0.298992,0.955803,0.232565,0.275823,0.367074,0.345372,0.727394,0.328149,0.0115747,0.995813,0.806961,0.376061,0.0672927,0.815591,0.124183,0.121706,0.0039469,0.196115,0.327729,0.906702,0.928395,0.105155,0.570105,0.246204,0.00960737,0.0248923,0.740828,0.185254,0.979393,0.578872,0.172668,0.515576,0.352928,0.448948,0.741817,0.557135,0.690146,0.501498,0.709864,0.202591,0.121961,0.116417,0.328344,0.526978,0.575025,0.521957,0.307907,0.609735,0.266385,0.47181,0.0869155,0.0770791,0.186362,0.511577,0.940662,0.80484,0.736879,0.715707,0.139568,0.610819,0.202307,0.190724,0.638848,0.79345,0.634912,0.169111,0.676289,0.988871,0.75897,0.367546,0.886971,0.391522,0.710351,0.448386,0.440575,0.262292,0.463166,0.569695,0.154494,0.545352,0.248576,0.954281,0.422606,0.37454,0.719591,0.894065,0.268973,0.0490324,0.296684,0.120533,0.0718016,0.0429389,0.152653,0.519712,0.235026,0.773375,0.230561,0.65532,0.783967,0.590582,0.601861,0.00659865,0.697987,0.680281,0.616392,0.867809,0.487481,0.53796,0.702238,0.59577,0.646125,0.619072,0.000131309,0.0642968,0.973127,0.959103,0.425263,0.624174,0.889737,0.844194,0.687371,0.971956,0.436639,0.11859,0.921918,0.774142,0.25023,0.139828,0.895026,0.0688126,0.621746,0.193579,0.870555,0.225835,0.153723,0.416219,0.232612,0.96967,0.922948,0.0805572,0.570293,0.892558,0.568476,0.592436,0.452481,0.14114,0.306574,0.94236,0.892403,0.226958,0.543383,0.750645,0.916316,0.00675929,0.14474,0.414511,0.0716429,0.873597,0.76591,0.0262424,0.135527,0.277304,0.560156,0.643749,0.0305434,0.249087,0.717201,0.128521,0.861351,0.353689,0.456503,0.134647,0.0288237,0.564931,0.886735,0.917067,0.513947,0.612007,0.805014,0.46641,0.627805,0.509503,0.551924,0.98038,0.403371,0.987433,0.689569,0.973756,0.073015,0.510174,0.0470417,0.779456,0.531643,0.493969,0.305966,0.321751,0.0120403,0.771433,0.565984,0.989032,0.674891,0.156925,0.563821,0.592158,0.476223,0.0461363,0.176129,0.0183084,0.646392,0.0704597,0.0403466,0.495477,0.40284,0.691685,0.292108,0.757808,0.547054,0.89741,0.470059,0.511332,0.33624,0.735423,0.72237,0.649536,0.936885,0.992112,0.30475,0.425572,0.0347547,0.434648,0.119914,0.0084458,0.426218,0.167526,0.318488,0.229243,0.932701,0.513992,0.571081,0.605058,0.898298,0.613224,0.830701,0.780936,0.512091,0.347024,0.758693,0.900984,0.632198,0.828579,0.674997,0.583633,0.259262,0.772707,0.696943,0.789148,0.522385,0.180259,0.0325746,0.471255,0.425039,0.54797,0.681833,0.820942,0.504393,0.840175,0.110919,0.00355649,0.00105023,0.182585,0.732809,0.649799,0.616674,0.189603,0.476448,0.530227,0.728632,0.116076,0.656165,0.811768,0.0870361,0.57915,0.757713,0.610614,0.642881,0.892542,0.551227,0.0361801,0.998309,0.88187,0.473298,0.595259,0.981043,0.480473,0.692439,0.375764,0.00683439,0.789325,0.377479,0.158554,0.998904,0.982293,0.630143,0.38503,0.592232,0.984765,0.609934,0.820485,0.952118,0.166599,0.977363,0.723025,0.0184117,0.98136,0.197625,0.633408,0.00781143,0.356126,0.524009,0.420036,0.833283,0.217262,0.0387357,0.830661,0.124832,0.00574172,0.542212,0.358831,0.936804,0.132013,0.0945641,0.0543572,0.136366,0.332704,0.853155,0.256555,0.19306,0.522297,0.1134,0.36721,0.764502,0.0334794,0.69325,0.315713,0.841417,0.391146,0.847989,0.226822,0.0951455,0.879521,|0.150071,0.0228893,0.606699,0.314983,0.0292182,0.286682,0.101716,0.0916502,0.292128,0.0425553,0.534965,0.967699,0.474382,0.0467355,0.330348,0.123371,0.0129179,0.327534,0.446132,0.369796,0.268902,0.428365,0.313581,0.294904,0.848895,0.380646,0.198794,0.384377,0.771443,0.850017,0.339446,0.619545,0.820701,0.499675,0.73643,0.545439,0.350276,0.089641,0.0369514,0.231635,0.273345,0.336264,0.133439,0.931404,0.0873834,0.48637,0.637657,0.578204,0.704964,0.977776,0.944828,0.41744,0.296642,0.0252704,0.297829,0.261503,0.913867,0.623626,0.762471,0.388279,0.37991,0.787433,0.627248,0.83614,0.827083,0.715537,0.576605,0.709835,0.723695,0.0357068,0.291158,0.202928,0.509247,0.543579,0.32241,0.697287,0.854308,0.121183,0.982009,0.523635,0.0598052,0.0511943,0.29587,0.126206,0.231187,0.157178,0.740998,0.740622,0.122761,0.0738857,0.985116,0.303226,0.461867,0.38753,0.220155,0.0469215,0.0720031,0.911845,0.360827,0.337603,0.128351,0.267027,0.370551,0.950828,0.248247,0.951087,0.0723835,0.714717,0.554821,0.606752,0.995838,0.348813,0.916381,0.200483,0.646584,0.337442,0.0489818,0.373999,0.560405,0.159232,0.634296,0.540364,0.176585,0.86286,0.143531,0.666485,0.476008,0.162578,0.0254702,0.801314,0.196351,0.119461,0.412814,0.269987,0.666341,0.898138,0.741932,0.971165,0.246734,0.169718,0.974947,0.0872535,0.371629,0.49003,0.48291,0.421661,0.863686,0.0348315,0.968862,0.141608,0.418876,0.131774,0.0276356,0.493241,0.909853,0.266145,0.308675,0.117267,0.753164,0.118013,0.834004,0.09952,0.400807,0.134612,0.685172,0.242674,0.238069,0.0764053,0.807536,0.918106,0.369904,0.140823,0.728008,0.6822,0.729514,0.0937904,0.121054,0.20696,0.743797,0.811626,0.892231,0.584041,0.66671,0.891177,0.40234,0.0653549,0.529274,0.496812,0.365903,0.678899,0.586498,0.4067,0.248917,0.985054,0.198194,0.321522,0.134216,0.424584,0.576913,0.565981,0.131261,0.724762,0.873989,0.291972,0.368962,0.00135154,0.624963,0.954736,0.0728804,0.746703,0.48293,0.755457,0.572822,0.965717,0.092416,0.21878,0.855723,0.249348,0.453321,0.800645,0.755238,0.862783,0.58767,0.860073,0.753057,0.0322405,0.955049,0.0188847,0.637296,0.853446,0.0214884,0.164666,0.484972,0.594649,0.775494,0.040729,0.92075,0.712549,0.708385,0.634295,0.262989,0.683352,0.757709,0.817059,0.504132,0.848714,0.918312,0.676724,0.0554357,0.259722,0.398205,0.95626,0.313044,0.56383,0.737554,0.592608,0.599682,0.374289,0.544998,0.519376,0.352322,0.865744,0.670916,0.780725,0.88616,0.263366,0.755245,0.577542,0.444019,0.529601,0.72067,0.223458,0.826874,0.508325,0.866553,0.360913,0.126574,0.902084,0.288923,0.700136,0.10309,0.526312,0.413548,0.826535,0.252666,0.223171,0.614698,0.995833,0.206496,0.265939,0.756116,0.335266,0.849868,0.617282,0.975034,0.298167,0.47624,0.104945,0.281869,0.258915,0.743151,0.520772,0.382137,0.34856,0.252123,0.431276,0.416085,0.422948,0.311893,0.966632,0.748766,0.574747,0.855102,0.321168,0.903166,0.984276,0.161479,0.902677,0.415573,0.149973,0.336562,0.18063,0.268089,0.240485,0.814458,0.153426,0.306826,0.761643,0.523991,0.674941,0.431033,0.741553,0.828826,0.65815,0.754946,0.517267,0.798181,0.952764,0.0601355,0.769412,0.343923,0.391303,0.687734,0.303578,0.288371,0.196632,0.235305,0.151815,0.116957,0.37603,0.360583,0.447412,0.718098,0.136266,0.860751,0.286573,0.984495,0.847805,0.651046,0.115616,0.17183,0.491441,0.287486,0.757461,0.88865,0.227279,0.627003,0.867715,0.448156,0.393495,0.185835,0.532237,0.138809,0.653778,0.51859,0.544931,0.858597,0.500696,0.622139,0.763691,0.865484,0.488007,0.834236,0.908827,0.228942,0.599986,0.755674,0.725439,0.601901,0.78347,0.0714678,0.888249,0.791241,0.574042,0.612859,0.302717,0.426037,0.576539,0.612435,0.40666,0.225695,0.299537,0.630063,0.381774,0.508508,0.751303,0.716487,0.967412,0.460373,0.753982,0.70878,0.906047,0.403029,0.593697,0.679515,0.466502,0.269691,0.411603,0.00286496,0.707905,0.522385,0.923622,0.858725,0.385771,0.781438,0.856034,0.315318,0.664418,0.939083,0.270001,0.194721,0.0463508,0.0541347,0.122094,0.764667,0.730749,0.258829,0.138602,0.86443,0.812343,0.722534,0.277101,0.838924,0.140428,0.41226,0.75051,0.901865,0.708084,0.690579,0.807112,0.727415,0.789914,0.302372,0.110393,0.294782,0.0734977,0.580359,0.109929,0.180828,0.197966,0.053756,0.650887,0.969648,0.315996,0.471819,0.468413,0.603438,0.899267,0.517887,0.432446,0.596346,0.518102,0.961852,0.0231376,0.929486,0.317085,0.60569,0.931586,0.484368,0.598236,0.979261,0.584518,0.247739,0.283837,0.915826,0.861423,0.160303,0.0369802,0.324662,0.414922,0.0496681,0.740402,0.38711,0.280412,0.0606791,0.97812,0.755153,0.404492,0.604825,0.384352,0.593424,0.898512,0.616217,0.661038,0.494467,0.96989,0.609128,0.333504,0.942187,0.658345,0.772875,0.988169,0.130262,0.179751,0.857039,0.863907,0.898602,0.148561,0.728354,0.877055,0.0820747,0.769022,0.208687,0.218715,0.972793,0.260593,0.475976,0.533843,0.0645386,0.688528,0.447527,0.0761294,0.678218,0.763159,0.809054,0.163072,0.464776,0.779198,0.573151,0.837956,0.0538099,0.767285,0.325779,0.588328,0.121948,0.790851,0.612915,0.633633,0.236676,0.432768,0.27002,0.858658,0.333363,0.587327,0.859261,0.58176,0.27795,0.490903,0.291847,0.132914,0.835691,0.618854,0.00515151,0.444017,0.591926,0.329083,0.326591,0.104226,0.0675007,0.356515,0.708472,0.913821,0.0773076,0.684517,0.739084,0.9569,0.466924,0.918044,0.252243,0.923567,0.865987,0.160375,0.269418,0.71718,0.572253,0.733684,0.706878,0.804429,0.842521,0.20409,0.349058,0.630839,0.803376,0.759741,0.755093,0.823336,0.0618567,0.89574,0.13343,0.850321,0.210889,0.352778,0.575091,0.981913,0.569674,0.0324894,0.966497,0.951557,0.841489,0.462275,0.575348,0.491812,0.678995,0.236595,0.384044,0.885303,0.976564,0.618987,0.4974,0.829318,0.102661,0.873658,0.407093,0.745796,0.419913,0.429894,0.476402,0.22052,0.134041,0.294717,0.391672,0.845143,0.21848,0.570071,0.403914,0.00595224,0.772949,0.0342144,0.796745,0.804944,0.954295,0.0481945,0.874754,0.0258929,0.180972,0.168719,0.4419,0.101999,0.740153,0.0713032,0.396889,0.960217,0.635342,0.9933,0.700229,0.611245,0.49549,0.16468,0.362995,0.890921,0.0759831,0.182093,0.0546918,0.0345146,0.602752,0.389142,0.288989,0.279374,0.904253,0.267527,0.316075,0.246072,0.141028,0.83204,0.402066,0.0280237,0.668046,0.917218,0.189013,0.202338,0.790708,0.633326,0.727454,0.532149,0.249643,0.578017,0.0289486,0.587775,0.427984,0.513828,0.0649741,0.407243,0.346489,0.90301,0.370257,0.438833,0.777968,0.62187,0.452391,0.59303,0.00438422,0.755346,0.429282,0.625483,0.694076,0.424995,0.924024,0.718438,0.631565,0.970316,0.483829,0.293627,0.375831,0.391822,0.166736,0.125631,0.111275,0.879057,0.788278,0.682942,0.470884,0.152309,0.929067,0.520161,0.850947,0.772584,0.055217,0.524705,0.23653,0.347051,0.371478,0.389355,0.122684,0.348601,0.954984,0.515935,0.327839,0.598432,0.584418,0.464643,0.229931,0.890357,0.898116,0.630647,0.879065,0.676441,0.481256,0.084277,0.36145,0.755019,0.661944,0.634139,0.691728,0.269215,0.153023,0.459972,0.133495,0.759539,0.431369,0.783955,0.270533,0.310632,0.813445,0.119952,0.283638,0.599969,0.299918,0.3574,0.0201135,0.075725,0.609723,0.400663,0.635601,0.544323,0.07266,0.158906,0.571222,0.591833,0.370791,0.233126,0.848736,0.196903,0.150484,0.774929,0.246707,0.836377,0.912235,0.897348,0.301304,0.201038,0.523641,0.991166,0.778387,0.718169,0.454135,0.0506335,0.00747222,0.110353,0.274164,0.75343,0.360708,0.122317,0.987808,0.17539,0.222456,0.69912,0.159766,0.541425,0.743054,0.112827,0.626227,0.949011,0.801073,0.282568,0.606181,0.194508,0.92531,0.509052,0.561872,0.536331,0.476062,0.136856,0.719876,0.83284,0.672261,0.910432,0.552331,0.641778,0.0253124,0.876103,0.573343,0.365092,0.229658,0.181733,0.107625,0.917973,0.866447,0.587546,0.669921,0.05261,0.70453,0.729007,0.917655,0.0519341,0.410782,0.497208,0.0136709,0.66157,0.126734,0.640424,0.733756,0.642519,0.273048,0.422067,0.764522,0.793121,0.723475,0.572561,0.916287,0.989952,0.203415,0.044286,0.908652,0.100959,0.58411,0.391172,0.0438157,0.51084,0.759315,0.146122,0.540074,0.623624,0.611103,0.945817,0.372019,0.0422661,0.702097,0.731313,0.972366,0.07374,0.011251,0.0256699,0.339305,0.339709,0.72301,0.760942,0.281327,0.0663744,0.74492,0.16099,0.707003,0.71286,0.306801,0.244856,0.819158,0.504523,0.202764,0.509061,0.198706,0.325879,0.858558,0.0809327,0.62412,0.19788,0.951968,0.717921,0.367315,0.462282,0.127381,0.196141,0.945164,0.678955,0.77635,0.962115,0.614113,0.945569,0.649998,0.245917,0.713748,0.84222,0.319049,0.507464,0.623853,0.59493,0.968471,0.859604,0.926072,0.409749,0.330306,0.840309,0.0470119,0.016528,0.027806,0.321854,0.513521,0.401208,0.434838,0.657051,0.301264,0.861228,0.805967,0.322374,0.327974,0.805151,0.565295,0.225618,0.906591,0.670272,0.317279,0.71972,0.0226787,0.617109,0.181274,0.51257,0.562643,0.939021,0.0428683,0.180871,0.025808,0.571883,0.272694,0.680609,0.617639,0.265573,0.18667,0.0863014,0.133595,0.590236,0.63374,0.117276,0.946825,0.219763,0.165703,0.623164,0.228046,0.415977,0.261101,0.227959,0.0893798,0.0294665,0.495074,0.0820383,0.145981,0.261925,0.872112,0.454032,0.709304,0.0366442,0.76435,0.917332,0.112485,0.225413,0.962406,0.975492,0.297309,0.31331,0.556747,0.948766,0.115371,0.435188,|0.718318,0.932393,0.168007,0.33436,0.760738,0.740217,0.00434393,0.173697,0.0953243,0.931539,0.583749,0.373549,0.218856,0.833171,0.496067,0.722355,0.120406,0.0182136,0.026926,0.790474,0.854742,0.951434,0.160929,0.20249,0.023506,0.741555,0.774468,0.464584,0.591557,0.417852,0.232687,0.296721,0.384134,0.927316,0.626134,0.307364,0.648786,0.0854703,0.0293261,0.412733,0.397935,0.134392,0.677126,0.919119,0.652105,0.640357,0.581181,0.811413,0.0490409,0.458669,0.210173,0.655344,0.896562,0.7988,0.915396,0.82839,0.752429,0.157655,0.232405,0.145041,0.134383,0.120204,0.0191224,0.115861,0.730491,0.839583,0.10161,0.902037,0.961245,0.620063,0.823184,0.352385,0.334676,0.346862,0.878952,0.0723162,0.221265,0.879435,0.693378,0.882171,0.112658,0.477021,0.77061,0.94928,0.157168,0.649396,0.521192,0.949289,0.403732,0.59318,0.817655,0.153827,0.644469,0.273662,0.556873,0.449744,0.574574,0.0101067,0.913634,0.830517,0.450076,0.687838,0.320945,0.571144,0.782369,0.577719,0.971104,0.415873,0.309054,0.978486,0.87465,0.872195,0.0991154,0.847771,0.459458,0.25601,0.757834,0.949585,0.412564,0.133822,0.00249749,0.31607,0.732528,0.314564,0.457582,0.341676,0.874813,0.921246,0.772742,0.421268,0.00306314,0.451076,0.314286,0.596224,0.0436689,0.238493,0.926215,0.640337,0.944572,0.538065,0.280124,0.813935,0.0547,0.50336,0.14047,0.32428,0.208964,0.374705,0.125118,0.612115,0.899596,0.502212,0.547914,0.399599,0.406846,0.700396,0.853257,0.846246,0.176657,0.762008,0.817226,0.125849,0.161883,0.0614079,0.463921,0.333214,0.650467,0.521815,0.131349,0.330995,0.73262,0.29731,0.856451,0.233025,0.102141,0.578521,0.997277,0.643128,0.377783,0.139207,0.298579,0.97524,0.342911,0.582388,0.0502846,0.179292,0.141485,0.959467,0.635378,0.572548,0.350379,0.614185,0.740623,0.960105,0.0121311,0.816743,0.0598304,0.944496,0.940322,0.440426,0.320707,0.850866,0.993536,0.490168,0.946828,0.0353152,0.290056,0.389525,0.329197,0.995863,0.448204,0.142144,0.354373,0.000591993,0.0313083,0.0636369,0.287499,0.397282,0.373917,0.914284,0.884039,0.00920814,0.685971,0.345792,0.413429,0.674559,0.0169508,0.0600998,0.591042,0.676586,0.426495,0.502069,0.304656,0.363899,0.559725,0.312916,0.0840338,0.936802,0.777234,0.26847,0.154786,0.348399,0.0518923,0.832767,0.432988,0.914839,0.783106,0.223594,0.970371,0.0856581,0.425544,0.18241,0.0783272,0.70439,0.129156,0.162661,0.865874,0.520019,0.690553,0.639587,0.927608,0.908367,0.148114,0.608627,0.245283,0.775867,0.387614,0.268992,0.765665,0.417471,0.847701,0.264039,0.672914,0.758186,0.443196,0.186996,0.162535,0.916907,0.0497426,0.1628,0.199932,0.841836,0.616065,0.66327,0.170592,0.804627,0.441604,0.36436,0.0458246,0.549335,0.449576,0.0747954,0.748533,0.551949,0.482578,0.518025,0.117913,0.490804,0.12433,0.974478,0.440787,0.852164,0.933895,0.774548,0.953873,0.565102,0.855333,0.547057,0.153445,0.938694,0.709664,0.155956,0.574283,0.893406,0.499983,0.481578,0.846292,0.521591,0.399134,0.800918,0.728929,0.809916,0.397652,0.852356,0.371453,0.546978,0.386442,0.585122,0.369707,0.914919,0.131681,0.822259,0.759537,0.166971,0.496205,0.223027,0.85441,0.834831,0.476874,0.399723,0.628773,0.0668335,0.100709,0.927362,0.676135,0.402396,0.860908,0.433214,0.905063,0.984154,0.199987,0.640589,0.507182,0.723737,0.349903,0.549089,0.407466,0.608194,0.355119,0.268696,0.634747,0.384755,0.461574,0.960841,0.959339,0.874885,0.657869,0.969964,0.976707,0.239113,0.425477,0.164324,0.13177,0.806242,0.457833,0.288703,0.279216,0.0194492,0.500384,0.85303,0.763638,0.0703513,0.0787068,0.593184,0.124333,0.532484,0.665683,0.152774,0.209391,0.579793,0.333941,0.296775,0.0955232,0.395327,0.896559,0.812859,0.174068,0.0899956,0.760276,0.38456,0.120405,0.909706,0.620927,0.641339,0.252129,0.256493,0.252632,0.595404,0.329499,0.924371,0.950832,0.921142,0.515091,0.625252,0.209058,0.730152,0.945559,0.65779,0.201498,0.663974,0.565987,0.916764,0.460278,0.874778,0.164371,0.937603,0.273215,0.380942,0.164009,0.757542,0.680338,0.980399,0.472074,0.913017,0.0456539,0.515337,0.396092,0.671051,0.977781,0.958394,0.14157,0.543895,0.335834,0.0820911,0.547173,0.611432,0.655265,0.569303,0.772371,0.595329,0.140359,0.326091,0.624118,0.319978,0.346153,0.213961,0.910229,0.357402,0.88543,0.390665,0.532173,0.173915,0.724867,0.665374,0.879061,0.19302,0.672942,0.00146657,0.75309,0.406347,0.514501,0.368517,0.607285,0.200916,0.0253539,0.163879,0.74187,0.823555,0.035602,0.466226,0.792118,0.987254,0.940363,0.388227,0.995978,0.133587,0.0582798,0.0679122,0.552824,0.902131,0.31468,0.607283,0.0836591,0.501566,0.633598,0.753176,0.950561,0.43734,0.578591,0.174991,0.139541,0.486533,0.619533,0.632559,0.180541,0.548584,0.251805,0.426632,0.50637,0.247204,0.568949,0.543232,0.446896,0.262791,0.120841,0.429364,0.613009,0.610279,0.792943,0.592114,0.504563,0.728162,0.164861,0.441866,0.642351,0.26181,0.199114,0.236472,0.837535,0.87233,0.892554,0.546628,0.233532,0.767322,0.314764,0.0894437,0.371298,0.80298,0.426412,0.859713,0.712454,0.833194,0.752877,0.0406405,0.483155,0.171375,0.721418,0.430714,0.608685,0.27142,0.136703,0.242603,0.677969,0.655801,0.882704,0.504831,0.479874,0.219157,0.339133,0.250298,0.681017,0.828364,0.527557,0.218232,0.0596794,0.382703,0.650951,0.700259,0.668705,0.252647,0.655866,0.590306,0.858643,0.286568,0.56123,0.674676,0.28297,0.475156,0.149852,0.667884,0.849683,0.377163,0.219319,0.683482,0.157391,0.880722,0.46026,0.524594,0.565812,0.520086,0.851574,0.561235,0.65038,0.606049,0.465541,0.472918,0.0812812,0.12105,0.0672123,0.661862,0.521042,0.255542,0.0342255,0.816722,0.201524,0.600348,0.259116,0.0145783,0.53393,0.174454,0.0394282,0.573755,0.569462,0.424547,0.357714,0.890658,0.0923958,0.774704,0.279888,0.117822,0.97193,0.165067,0.744413,0.529424,0.690632,0.361737,0.604727,0.152122,0.60705,0.590243,0.388668,0.740708,0.409677,0.924736,0.79392,0.872243,0.246361,0.956797,0.490357,0.20717,0.0543074,0.643351,0.223863,0.12939,0.0686432,0.334735,0.514673,0.657265,0.365514,0.342932,0.0067417,0.0719775,0.891932,0.370505,0.463076,0.963763,0.581271,0.13945,0.0759896,0.0842335,0.746318,0.906995,0.31007,0.0894849,0.844636,0.468564,0.595258,0.970687,0.411937,0.268524,0.134955,0.868967,0.333982,0.628148,0.308657,0.887603,0.318322,0.363271,0.535601,0.722188,0.431014,0.640145,0.589738,0.291599,0.812283,0.0233775,0.665827,0.352191,0.842091,0.152308,0.0266981,0.677906,0.645178,0.168448,0.217752,0.17888,0.602985,0.885223,0.438119,0.313335,0.654155,0.449513,0.903226,0.327,0.0291233,0.278777,0.378115,0.267929,0.0721209,0.979084,0.922533,0.444748,0.309345,0.0624535,0.452058,0.0719211,0.914276,0.871923,0.849266,0.632177,0.622984,0.886569,0.705635,0.543696,0.188309,0.776363,0.719594,0.737379,0.647551,0.932296,0.73362,0.395973,0.596142,0.869293,0.151775,0.844789,0.329794,0.610468,0.0960786,0.203748,0.322506,0.781972,0.473463,0.33744,0.292766,0.137613,0.654548,0.734715,0.514129,0.548567,0.705293,0.889374,0.568204,0.662835,0.932378,0.492199,0.421898,0.724402,0.247987,0.0840659,0.605221,0.131935,0.822271,0.225914,0.411696,0.297465,0.678049,0.696404,0.16952,0.473701,0.564616,0.059193,0.385914,0.175281,0.100536,0.0387822,0.0858261,0.435916,0.725564,0.963255,0.885073,0.533234,0.16465,0.612717,0.00461614,0.584853,0.0429227,0.314159,0.694801,0.811269,0.869924,0.370995,0.100461,0.525552,0.607102,0.211309,0.780342,0.678573,0.925613,0.441823,0.0128096,0.307426,0.912479,0.307547,0.663427,0.388486,0.0596448,0.70932,0.0634792,0.750521,0.102436,0.05246,0.043099,0.465555,0.930502,0.685567,0.666847,0.846487,0.763712,0.641089,0.871759,0.444335,0.459541,0.714022,0.428304,0.190578,0.535697,0.278946,0.734563,0.764402,0.843822,0.875625,0.949804,0.210672,0.00668007,0.644646,0.556481,0.421133,0.579167,0.789297,0.0649128,0.550925,0.772296,0.516052,0.41931,0.719244,0.540708,0.534778,0.320028,0.783701,0.940305,0.292278,0.206071,0.709038,0.483456,0.0158575,0.44992,0.677451,0.804561,0.793198,0.366955,0.0219847,0.139028,0.682166,0.775375,0.296265,0.922928,0.414126,0.766986,0.82936,0.00469643,0.0353609,0.135469,0.436903,0.672641,0.163021,0.284337,0.403127,0.273046,0.387595,0.831892,0.953187,0.145174,0.821594,0.900837,0.650257,0.0701474,0.338967,0.0697232,0.0543091,0.743243,0.0760345,0.0660667,0.132907,0.549594,0.616884,0.671602,0.903497,0.00204641,0.575302,0.612031,0.659145,0.0646343,0.462087,0.904526,0.594451,0.360326,0.817422,0.135796,0.75224,0.39639,0.424165,0.627823,0.64896,0.344796,0.745433,0.331343,0.884823,0.26052,0.503162,0.553962,0.580881,0.177834,0.512851,0.140231,0.390548,0.556406,0.460329,0.942696,0.0141183,0.750168,0.802279,0.0118166,0.0749335,0.769574,0.401606,0.0487438,0.616919,0.432238,0.0357167,0.486804,0.185207,0.754446,0.0954161,0.153403,0.144651,0.751522,0.311435,0.968895,0.586388,0.954448,0.247566,0.279257,0.348749,0.11745,0.341695,0.895015,0.00678009,0.125506,0.368851,0.240856,0.683572,0.98045,0.0262692,0.0879211,0.497557,0.631849,0.807901,0.667715,0.203305,0.431765,0.218058,0.951178,0.590238,0.772571,0.337624,0.0275832,0.923107,0.642,0.404162,0.54327,0.0482086,0.355108,0.00793451,0.383021,0.379924,0.271338,0.746666,0.585453,0.343889,0.0655615,0.236479,0.164542,0.650886,0.449473,0.600456,0.822285,0.545859,0.931125,0.507563,|0.0604858,0.304504,0.699993,0.967299,0.448429,0.0199414,0.127477,0.51706,0.643399,0.585548,0.753458,0.506334,0.351443,0.024317,0.808472,0.0385621,0.797792,0.228747,0.447131,0.277203,0.603868,0.518016,0.704729,0.923315,0.431228,0.486586,0.176322,0.745456,0.99235,0.0303753,0.12215,0.356806,0.47129,0.825497,0.474737,0.838356,0.757757,0.849102,0.538261,0.501729,0.478202,0.606106,0.223423,0.681991,0.640777,0.880305,0.268485,0.478645,0.975387,0.732025,0.226632,0.509117,0.353164,0.909243,0.531961,0.526611,0.104831,0.03161,0.0407049,0.268729,0.379107,0.553092,0.537552,0.0945649,0.895542,0.750457,0.560312,0.240361,0.102271,0.996284,0.589779,0.502503,0.716376,0.666293,0.627858,0.714999,0.365158,0.194356,0.55366,0.711952,0.71233,0.191086,0.162205,0.256868,0.494455,0.872942,0.311163,0.258068,0.762991,0.719506,0.179043,0.71687,0.457368,0.850584,0.170272,0.209197,0.181893,0.806063,0.296401,0.488222,0.466521,0.970203,0.584162,0.664075,0.180479,0.590767,0.616177,0.159107,0.266214,0.50145,0.398684,0.27867,0.878888,0.5811,0.834637,0.680753,0.31368,0.607766,0.612917,0.68711,0.402203,0.74411,0.431524,0.788173,0.233213,0.630713,0.0246814,0.805924,0.217206,0.6995,0.152339,0.575584,0.0781426,0.368041,0.756968,0.802488,0.774879,0.272572,0.572886,0.322794,0.504639,0.746793,0.587826,0.749987,0.664779,0.860501,0.53059,0.294063,0.336147,0.289068,0.0287232,0.421786,0.0935132,0.813595,0.48885,0.787697,0.437484,0.598255,0.574416,0.156825,0.695724,0.215021,0.483663,0.110196,0.433009,0.621513,0.527589,0.271722,0.559047,0.468293,0.341973,0.510632,0.358014,0.54491,0.245189,0.516154,0.740157,0.459222,0.706138,0.863446,0.980153,0.342063,0.680618,0.718522,0.240177,0.744607,0.57414,0.736755,0.456723,0.481482,0.710759,0.309183,0.746945,0.989359,0.316333,0.0513087,0.714746,0.120037,0.131905,0.932428,0.247265,0.588829,0.416835,0.982457,0.192815,0.26768,0.597438,0.739936,0.640756,0.999267,0.412298,0.629146,0.118613,0.415325,0.230045,0.634749,0.522558,0.124132,0.16148,0.107373,0.808615,0.75998,0.124008,0.591195,0.102779,0.0527149,0.959723,0.769886,0.938319,0.875076,0.951433,0.14396,0.873833,0.403769,0.596275,0.812398,0.387452,0.659342,0.229175,0.677429,0.120606,0.691442,0.709357,0.768857,0.612584,0.177489,0.436741,0.685944,0.781272,0.264736,0.861345,0.677148,0.866048,0.372883,0.199527,0.41831,0.377901,0.627849,0.341756,0.361221,0.319977,0.769884,0.684217,0.372513,0.513019,0.664059,0.445531,0.486981,0.440633,0.27516,0.630856,0.453468,0.602654,0.261527,0.684316,0.792082,0.537845,0.38624,0.92434,0.492636,0.975702,0.74238,0.395736,0.521812,0.596659,0.117423,0.849019,0.977532,0.310075,0.0219076,0.512563,0.902513,0.00688905,0.573049,0.909939,0.625129,0.936589,0.48391,0.416742,0.902661,0.613434,0.0605013,0.921003,0.41433,0.748702,0.0107278,0.540125,0.486624,0.312688,0.0197126,0.324431,0.121218,0.694897,0.0993934,0.102749,0.00802249,0.237179,0.0417213,0.658482,0.413512,0.716009,0.427823,0.702196,0.786651,0.381848,0.304209,0.0189469,0.30835,0.757598,0.777873,0.899296,0.781782,0.211689,0.402526,0.167637,0.434319,0.155386,0.25512,0.339439,0.985132,0.831977,0.417766,0.169246,0.38672,0.992903,0.772198,0.17259,0.762445,0.921144,0.581911,0.92622,0.534808,0.740493,0.80506,0.217029,0.157657,0.310714,0.833801,0.164039,0.83249,0.806113,0.435892,0.722327,0.684328,0.0583919,0.27164,0.692358,0.649176,0.486759,0.59071,0.00294173,0.244468,0.215997,0.738608,0.242128,0.043444,0.354113,0.933068,0.87007,0.437981,0.632206,0.583864,0.535445,0.0284309,0.835192,0.599092,0.578123,0.201323,0.629714,0.797198,0.0445849,0.599509,0.931739,0.396774,0.469898,0.769473,0.318267,0.537807,0.430366,0.474487,0.625552,0.715565,0.106472,0.934745,0.786571,0.118672,0.964258,0.261159,0.428513,0.507817,0.509221,0.561927,0.93677,0.432128,0.548915,0.564642,0.702713,0.227783,0.312655,0.274204,0.972742,0.925731,0.204047,0.766321,0.584902,0.672621,0.278182,0.0557646,0.547033,0.784189,0.758013,0.0579427,0.14718,0.384438,0.809161,0.445794,0.494057,0.427445,0.484116,0.324007,0.629589,0.234491,0.701484,0.316559,0.485164,0.449433,0.0831309,0.903842,0.478058,0.832321,0.286842,0.260168,0.439773,0.319316,0.0669059,0.131961,0.427941,0.757579,0.0321155,0.283283,0.645759,0.166616,0.451207,0.858923,0.336595,0.960951,0.176229,0.374022,0.340933,0.755272,0.780506,0.859674,0.707196,0.129638,0.281722,0.352057,0.411956,0.855375,0.472688,0.815427,0.712963,0.133921,0.971769,0.2782,0.365872,0.453567,0.910053,0.532973,0.422394,0.751753,0.238955,0.81718,0.127111,0.535018,0.185293,0.545761,0.132842,0.262605,0.958342,0.20044,0.689984,0.00428057,0.226744,0.534544,0.932935,0.208805,0.942124,0.806609,0.155391,0.718526,0.0296715,0.511661,0.785602,0.577287,0.0805307,0.576795,0.90254,0.681493,0.354779,0.834412,0.607246,0.173072,0.302762,0.0339655,0.695581,0.551283,0.351968,0.186058,0.34183,0.924015,0.109825,0.825539,0.601254,0.852918,0.283599,0.736783,0.626408,0.919455,0.93954,0.604314,0.839873,0.955672,0.798456,0.58169,0.999707,0.372725,0.687395,0.083415,0.109395,0.0733031,0.623156,0.144243,0.338909,0.791774,0.63658,0.459987,0.726658,0.382463,0.908146,0.929723,0.606906,0.913127,0.453669,0.804346,0.0322249,0.100325,0.843234,0.349284,0.548261,0.154382,0.760311,0.250089,0.00235796,0.293906,0.585657,0.67117,0.136443,0.452409,0.383161,0.820547,0.729757,0.571288,0.135003,0.0820434,0.723446,0.369812,0.247417,0.669266,0.0312687,0.339975,0.196038,0.0723287,0.279176,0.899399,0.648763,0.813908,0.697917,0.0951628,0.423035,0.669551,0.194255,0.857714,0.68462,0.708002,0.929108,0.47281,0.510516,0.914411,0.151324,0.983599,0.863696,0.225088,0.89491,0.0938571,0.249219,0.444951,0.946709,0.436176,0.577776,0.222224,0.567193,0.151095,0.291404,0.967073,0.820688,0.567198,0.792517,0.333798,0.0093872,0.11555,0.230503,0.569085,0.0909134,0.507503,0.259215,0.18772,0.931804,0.750134,0.745878,0.156438,0.501906,0.278034,0.602146,0.651814,0.551358,0.515769,0.921174,0.300545,0.943981,0.61765,0.833238,0.398329,0.536876,0.589139,0.22029,0.211459,0.0190272,0.417512,0.420964,0.117482,0.52683,0.553892,0.845307,0.953607,0.841138,0.441002,0.302006,0.812918,0.821385,0.475182,0.158879,0.818037,0.101531,0.496859,0.383993,0.487766,0.13176,0.616816,0.750413,0.823296,0.398873,0.0753502,0.84689,0.441794,0.377957,0.177851,0.879194,0.00453478,0.140749,0.967677,0.745062,0.622761,0.781975,0.351636,0.387326,0.301374,0.558672,0.963639,0.114383,0.98887,0.283775,0.201134,0.0457663,0.307985,0.539551,0.338973,0.64512,0.0789689,0.464544,0.273769,0.419861,0.597362,0.582705,0.262116,0.458063,0.996236,0.264943,0.418941,0.861476,0.698379,0.571117,0.638396,0.299258,0.65684,0.0303883,0.519191,0.994218,0.272817,0.862655,0.74319,0.966361,0.215151,0.99998,0.352543,0.236733,0.989492,0.168081,0.907602,0.856843,0.787289,0.888617,0.800296,0.434502,0.321145,0.628334,0.70436,0.3421,0.814923,0.345266,0.240394,0.83997,0.316862,0.0875371,0.370991,0.0341869,0.0510544,0.236495,0.162069,0.61165,0.402828,0.267752,0.878828,0.660223,0.680899,0.834745,0.801158,0.305388,0.905722,0.451765,0.801254,0.288725,0.346544,0.636061,0.352037,0.173644,0.603797,0.17161,0.464867,0.186124,0.466017,0.406406,0.444371,0.695487,0.797425,0.806932,0.859307,0.97299,0.191249,0.74398,0.566551,0.97279,0.763686,0.523021,0.0783955,0.861792,0.127334,0.895139,0.926511,0.338669,0.0710024,0.465312,0.205433,0.292998,0.662082,0.554182,0.437252,0.520645,0.552507,0.198725,0.0284087,0.453825,0.246404,0.622159,0.944266,0.79285,0.922651,0.687784,0.674909,0.977302,0.741892,0.805598,0.135762,0.965553,0.965387,0.760654,0.965019,0.507807,0.92426,0.0968177,0.943158,0.539228,0.234844,0.39348,0.794678,0.359933,0.175762,0.614523,0.0246432,0.800293,0.30653,0.743078,0.97795,0.972255,0.648843,0.136942,0.69821,0.210887,0.874223,0.675796,0.898207,0.478952,0.843035,0.738555,0.356382,0.199166,0.961512,0.638887,0.46539,0.0966133,0.468803,0.101657,0.249836,0.77286,0.0879021,0.878044,0.272202,0.195063,0.967617,0.645803,0.649009,0.539485,0.662725,0.929866,0.810033,0.460934,0.412561,0.845579,0.455761,0.0773154,0.449048,0.600632,0.175142,0.0269439,0.612472,0.307401,0.318859,0.14219,0.018025,0.210824,0.709732,0.43964,0.275825,0.856784,0.7019,0.819286,0.559763,0.279081,0.762301,0.367449,0.645764,0.0466966,0.192163,0.0383113,0.96853,0.460472,0.135916,0.557728,0.99221,0.780614,0.8702,0.332773,0.901333,0.8714,0.0758768,0.509905,0.715193,0.0173802,0.759295,0.5813,0.310315,0.0397974,0.0659789,0.899797,0.407641,0.988364,0.777194,0.407165,0.385725,0.39964,0.280945,0.889345,0.0276148,0.875831,0.832892,0.156057,0.398062,0.994434,0.330572,0.732507,0.773763,0.304107,0.483363,0.547857,0.160023,0.908735,0.217506,0.586748,0.67527,0.760625,0.569923,0.158283,0.870918,0.0960199,0.194028,0.829257,0.665553,0.362825,0.562841,0.632825,0.732951,0.055433,0.853083,0.894571,0.118716,0.400046,0.404755,0.160789,0.284783,0.730056,0.39635,0.645162,0.444982,0.842643,0.359044,0.377568,0.929456,0.43792,0.68449,0.294181,0.514984,0.883994,0.202393,0.534706,0.251483,0.79655,0.664294,0.720237,0.713235,0.906685,0.766109,0.504433,0.255367,0.525225,0.798086,0.748168,0.747138,0.807938,0.969115,0.877675,0.508337,|0.653367,0.184354,0.0503851,0.489052,0.535748,0.682578,0.928037,0.755225,0.185284,0.350106,0.0467978,0.138109,0.527962,0.883433,0.604674,0.679108,0.401457,0.34569,0.949187,0.454527,0.788926,0.339349,0.551261,0.0305422,0.373017,0.26336,0.414331,0.946212,0.847385,0.794717,0.0329987,0.0285462,0.0623921,0.518692,0.488857,0.252936,0.909419,0.940282,0.472412,0.298869,0.760327,0.241031,0.507134,0.951925,0.49531,0.325444,0.215573,0.986821,0.322691,0.985987,0.921927,0.629102,0.227825,0.365773,0.963734,0.300095,0.00953525,0.0907208,0.557099,0.565851,0.562595,0.625734,0.0214899,0.0817909,0.816628,0.664603,0.256152,0.491515,0.972888,0.705734,0.0358182,0.0665653,0.0795585,0.193299,0.424131,0.110819,0.704401,0.172114,0.769178,0.0135089,0.214344,0.825411,0.97185,0.423113,0.958768,0.816452,0.622552,0.751564,0.817571,0.615685,0.635531,0.287359,0.330332,0.5183,0.100809,0.234991,0.806486,0.338031,0.169173,0.150909,0.491742,0.164936,0.936533,0.864561,0.818752,0.484055,0.900369,0.821518,0.102391,0.811501,0.656846,0.785852,0.503352,0.322637,0.732615,0.711994,0.478238,0.0358154,0.479186,0.843285,0.140427,0.678839,0.524939,0.37403,0.729961,0.16363,0.151629,0.84649,0.818598,0.114586,0.176247,0.526651,0.835311,0.332321,0.632131,0.235507,0.257895,0.923323,0.477134,0.0521515,0.240075,0.723539,0.875493,0.0278537,0.257245,0.952627,0.981484,0.55997,0.0984674,0.511196,0.158527,0.2585,0.396308,0.0251185,0.722167,0.26572,0.658029,0.717131,0.557395,0.280491,0.55977,0.617007,0.292714,0.0134914,0.172032,0.0881631,0.74934,0.934825,0.390334,0.0750899,0.744157,0.288227,0.559029,0.486649,0.115809,0.571164,0.330231,0.570134,0.879241,0.945718,0.932831,0.198124,0.345105,0.955587,0.0186157,0.948894,0.233632,0.619584,0.699599,0.619281,0.789415,0.0679314,0.92491,0.20662,0.495452,0.76761,0.978702,0.287775,0.540543,0.166628,0.574295,0.260387,0.142908,0.210327,0.462987,0.956709,0.0592093,0.155066,0.501441,0.495235,0.465189,0.0558261,0.871627,0.618783,0.505083,0.00220001,0.529849,0.387387,0.60033,0.945581,0.769568,0.78251,0.815766,0.477617,0.467704,0.189864,0.837027,0.928357,0.734563,0.397032,0.859362,0.679599,0.272646,0.577277,0.725772,0.124922,0.41054,0.622352,0.821638,0.343928,0.767949,0.0764778,0.131808,0.623703,0.188132,0.110282,0.601994,0.373672,0.726216,0.306209,0.00747377,0.183036,0.28297,0.651576,0.193491,0.343664,0.880628,0.986856,0.383759,0.88426,0.987086,0.167152,0.00118369,0.565493,0.442684,0.578593,0.040263,0.320308,0.217424,0.316674,0.289094,0.748148,0.671277,0.81944,0.286378,0.322422,0.795831,0.438985,0.588007,0.269801,0.358022,0.25199,0.995393,0.7675,0.478786,0.90685,0.789731,0.489468,0.250292,0.702388,0.919111,0.00560385,0.701441,0.561796,0.662731,0.312455,0.230402,0.537715,0.144658,0.222619,0.889102,0.0216396,0.5501,0.52994,0.98262,0.0592489,0.86761,0.0741268,0.158175,0.824417,0.130265,0.0444192,0.948831,0.0945675,0.0461984,0.980394,0.732577,0.502704,0.830427,0.401814,0.80988,0.514993,0.190375,0.906768,0.631849,0.706196,0.0289267,0.668298,0.498421,0.321214,0.466123,0.819845,0.658026,0.721955,0.883432,0.325328,0.187244,0.582064,0.04158,0.125842,0.857491,0.494293,0.865408,0.443293,0.57612,0.542331,0.508328,0.110369,0.211531,0.539135,0.402997,0.0798382,0.0173649,0.947802,0.197221,0.0896675,0.605571,0.539286,0.509176,0.327473,0.833541,0.129089,0.0213454,0.060914,0.982622,0.36061,0.455442,0.360446,0.417168,0.215295,0.146118,0.741197,0.870277,0.013831,0.665529,0.148755,0.255401,0.526518,0.0837643,0.751581,0.0508187,0.400084,0.402268,0.82357,0.238013,0.717169,0.497357,0.463404,0.841154,0.687464,0.253282,0.76982,0.0399119,0.449154,0.795628,0.00326717,0.685114,0.429346,0.133262,0.416309,0.777787,0.488145,0.609258,0.597239,0.515934,0.384241,0.40455,0.942191,0.448249,0.64217,0.316444,0.879863,0.354945,0.554542,0.542759,0.15937,0.501725,0.219874,0.0581661,0.495246,0.861277,0.164879,0.0892382,0.00452614,0.156547,0.691674,0.9466,0.638781,0.399627,0.240681,0.598253,0.882957,0.229303,0.629218,0.630829,0.904087,0.797961,0.613347,0.511494,0.19529,0.804061,0.823004,0.714334,0.314412,0.518765,0.280749,0.869491,0.316964,0.180713,0.5622,0.764299,0.817518,0.865535,0.611496,0.586658,0.533469,0.736772,0.476998,0.427716,0.765797,0.764154,0.97845,0.261334,0.889584,0.948075,0.20908,0.871678,0.275028,0.234222,0.439209,0.504102,0.171862,0.278339,0.43745,0.75376,0.898427,0.247076,0.245323,0.0698182,0.82151,0.535021,0.875924,0.183224,0.301622,0.755467,0.417125,0.153864,0.0602098,0.500199,0.103798,0.139032,0.539379,0.584728,0.805343,0.915217,0.208221,0.967701,0.0980846,0.674584,0.265297,0.644121,0.392834,0.237017,0.172846,0.818269,0.0610788,0.894014,0.795431,0.716345,0.690683,0.137801,0.537126,0.9638,0.14606,0.187061,0.773355,0.0073483,0.567996,0.694506,0.243534,0.574699,0.700605,0.204738,0.636595,0.7942,0.703692,0.910841,0.772985,0.109254,0.275424,0.289702,0.669983,0.0436205,0.541653,0.734365,0.745081,0.371929,0.111392,0.646453,0.26585,0.305803,0.201387,0.144359,0.0458705,0.489051,0.553422,0.746725,0.249589,0.275683,0.237495,0.220639,0.937993,0.921756,0.219886,0.378556,0.0351742,0.897012,0.480115,0.0765265,0.282558,0.331162,0.884594,0.973551,0.83506,0.744658,0.443798,0.913795,0.603558,0.331987,0.305694,0.710149,0.844108,0.265263,0.879133,0.0759842,0.332569,0.848203,0.988749,0.823851,0.654806,0.852123,0.67936,0.824273,0.159414,0.155943,0.092084,0.703835,0.418103,0.893133,0.35468,0.59191,0.551721,0.366719,0.633059,0.758701,0.732264,0.522694,0.170241,0.372372,0.334361,0.693552,0.548722,0.967686,0.140717,0.118004,0.225905,0.560487,0.166954,0.995059,0.0813136,0.461679,0.663396,0.569796,0.849811,0.472911,0.877379,0.703048,0.853015,0.905532,0.726111,0.248557,0.786533,0.899461,0.969245,0.116824,0.793689,0.91894,0.558455,0.162591,0.773724,0.0603303,0.0985596,0.427801,0.618763,0.5332,0.658519,0.870955,0.127258,0.679105,0.305938,0.504921,0.468475,0.0828748,0.708931,0.179606,0.226917,0.953484,0.159795,0.241749,0.158492,0.585939,0.978031,0.225528,0.462781,0.503471,0.139844,0.181417,0.764141,0.974916,0.51218,0.956491,0.6137,0.426555,0.452912,0.335698,0.311912,0.667632,0.699967,0.537448,0.566087,0.643705,0.420627,0.224939,0.240796,0.277475,0.567928,0.665527,0.154817,0.195479,0.20765,0.393903,0.15868,0.870252,0.539457,0.533717,0.414187,0.79239,0.0204528,0.166035,0.943589,0.254968,0.720782,0.897911,0.583263,0.902622,0.94146,0.992486,0.890904,0.931817,0.366388,0.909403,0.533187,0.574641,0.544065,0.739769,0.264553,0.0679407,0.687613,0.0862776,0.716487,0.158408,0.958092,0.512205,0.837399,0.7972,0.656024,0.921489,0.765975,0.588455,0.868633,0.323668,0.920825,0.488062,0.368983,0.614681,0.497121,0.428512,0.154809,0.860795,0.6488,0.0867597,0.456403,0.448849,0.793305,0.367001,0.151936,0.636887,0.617392,0.215984,0.104554,0.0798852,0.0681592,0.24179,0.303728,0.00231999,0.140579,0.5402,0.958281,0.622947,0.0327146,0.92912,0.0375245,0.829354,0.344135,0.138771,0.458726,0.336625,0.0589778,0.780959,0.550699,0.64986,0.559588,0.334384,0.883502,0.472686,0.670643,0.668238,0.196795,0.390654,0.334099,0.476102,0.215772,0.681182,0.936742,0.805735,0.494522,0.413395,0.225989,0.902224,0.987608,0.593306,0.545127,0.958577,0.203032,0.751899,0.454584,0.0706778,0.90789,0.156829,0.258671,0.64148,0.347269,0.240723,0.110078,0.00505161,0.463436,0.197505,0.511243,0.199267,0.346894,0.548765,0.916144,0.111499,0.475175,0.859989,0.44778,0.0179667,0.725057,0.565849,0.810766,0.462138,0.127068,0.386197,0.572371,0.0978988,0.302634,0.159173,0.872906,0.0723727,0.786095,0.547291,0.207462,0.328964,0.575965,0.623116,0.162012,0.617784,0.771105,0.766467,0.340264,0.133175,0.218463,0.245171,0.781504,0.865198,0.600763,0.0508281,0.488689,0.162988,0.192777,0.187445,0.346145,0.664003,0.147034,0.569368,0.699681,0.629936,0.504671,0.653253,0.220787,0.862585,0.337743,0.909982,0.80549,0.750461,0.889458,0.77096,0.829529,0.207495,0.973715,0.289414,0.018919,0.849171,0.371156,0.281618,0.599569,0.230556,0.764236,0.937759,0.456424,0.35778,0.90337,0.275577,0.852912,0.145828,0.878146,0.551398,0.238542,0.382981,0.354903,0.602241,0.869227,0.876363,0.320498,0.00458258,0.256389,0.452431,0.546293,0.983562,0.099337,0.0688265,0.0503414,0.299255,0.923272,0.718751,0.541565,0.717137,0.430896,0.369322,0.231299,0.280607,0.933338,0.757838,0.0957966,0.321199,0.853082,0.00813323,0.518912,0.169726,0.171285,0.797732,0.667009,0.84095,0.432465,0.657755,0.911061,0.122986,0.736144,0.287999,0.252078,0.693022,0.405957,0.790833,0.552272,0.446036,0.310044,0.822391,0.411071,0.0623863,0.137613,0.0605107,0.991904,0.873134,0.128227,0.0178608,0.145301,0.757615,0.0716864,0.110237,0.654915,0.410434,0.265754,0.797288,0.379769,0.694989,0.464943,0.775854,0.170103,0.309299,0.986024,0.349581,0.0500315,0.0471072,0.841384,0.573594,0.403143,0.74417,0.0686284,0.57981,0.125635,0.541707,0.120182,0.889147,0.600333,0.823748,0.0522277,0.775451,0.532612,0.227158,0.707007,0.167475,0.503052,0.583094,0.535659,0.722486,0.259427,0.319646,0.472794,0.41166,0.00854325,0.327235,0.455527,0.636696,0.239346,0.545583,0.132721,0.987378,0.376368,0.651894,0.0195309,0.735192,0.282614,0.721299,0.311436,0.358581,0.435807,0.234114,0.219593,0.0598656,0.860719,|0.744938,0.642941,0.0674769,0.746832,0.58206,0.249011,0.644738,0.677376,0.156761,0.884169,0.913189,0.915946,0.276841,0.761391,0.996174,0.320061,0.965712,0.251249,0.655744,0.866135,0.765609,0.705511,0.722977,0.0612721,0.510425,0.961248,0.711513,0.934582,0.764743,0.525774,0.473567,0.928398,0.106523,0.337813,0.580881,0.0376161,0.698575,0.273457,0.690988,0.00750834,0.767171,0.00477409,0.767487,0.23716,0.0783997,0.137076,0.729013,0.110538,0.892944,0.992867,0.753184,0.094254,0.439095,0.590014,0.504434,0.512226,0.568578,0.993763,0.286356,0.430415,0.420423,0.766449,0.714295,0.291571,0.238302,0.240359,0.143091,0.215504,0.881045,0.994798,0.509377,0.74351,0.270515,0.735842,0.174305,0.25368,0.489905,0.437719,0.154544,0.0493449,0.456019,0.788945,0.353147,0.998626,0.427673,0.09311,0.987051,0.507058,0.609818,0.612629,0.322048,0.155958,0.153425,0.157292,0.585242,0.858514,0.649133,0.64598,0.185444,0.226393,0.500108,0.198866,0.293828,0.503042,0.93747,0.182338,0.41326,0.2906,0.579255,0.17667,0.652933,0.916953,0.35822,0.903208,0.291289,0.391324,0.947513,0.76285,0.797507,0.380697,0.598624,0.812369,0.402606,0.878973,0.0729329,0.886383,0.646581,0.108082,0.0341144,0.832955,0.594597,0.404212,0.565532,0.204328,0.247686,0.281375,0.971171,0.229933,0.719528,0.450495,0.242476,0.93598,0.658094,0.610416,0.98166,0.156569,0.936905,0.192731,0.785041,0.785125,0.294431,0.942848,0.778411,0.15134,0.248548,0.568869,0.754761,0.618856,0.164224,0.0210407,0.152819,0.986389,0.321597,0.114348,0.736996,0.210676,0.00462848,0.093741,0.318315,0.695331,0.195336,0.439367,0.100012,0.708589,0.686469,0.281129,0.590409,0.352799,0.882373,0.625906,0.510138,0.805882,0.752566,0.191571,0.415102,0.843609,0.466268,0.287608,0.444464,0.321026,0.793969,0.806568,0.416846,0.680262,0.593615,0.568869,0.591434,0.988613,0.867929,0.541537,0.792302,0.386136,0.930706,0.890092,0.764239,0.175562,0.853734,0.675284,0.581881,0.91264,0.0631955,0.624793,0.312289,0.0166748,0.100904,0.693286,0.332071,0.556167,0.261049,0.137695,0.437852,0.487099,0.702634,0.963131,0.515065,0.923696,0.470708,0.474743,0.602824,0.0630274,0.689135,0.526693,0.965955,0.312029,0.921568,0.71969,0.90859,0.697154,0.451906,0.710118,0.635968,0.681226,0.538952,0.645461,0.0831712,0.303394,0.990387,0.374029,0.0138725,0.0847046,0.0637616,0.924177,0.959863,0.0910197,0.597756,0.66375,0.699512,0.0972193,0.305608,0.781082,0.912717,0.270893,0.323559,0.586388,0.302534,0.55002,0.502508,0.558617,0.337249,0.136889,0.878378,0.559347,0.831066,0.685037,0.819481,0.205405,0.404364,0.264941,0.849743,0.760403,0.598436,0.489883,0.469305,0.554291,0.51855,0.809527,0.791501,0.178701,0.947593,0.851944,0.580017,0.131101,0.301515,0.494128,0.958154,0.0144385,0.742995,0.765154,0.131875,0.442643,0.307107,0.916321,0.453526,0.763156,0.233489,0.431847,0.450248,0.958596,0.0933605,0.16762,0.111478,0.613609,0.875348,0.646153,0.370939,0.228762,0.126794,0.230177,0.215074,0.434779,0.434653,0.571323,0.391492,0.0518725,0.198501,0.960674,0.0206163,0.771846,0.512015,0.345423,0.818997,0.387139,0.0353842,0.348093,0.556532,0.849477,0.131296,0.0140921,0.430866,0.578763,0.17641,0.10979,0.829332,0.348608,0.461971,0.353859,0.943679,0.703708,0.667679,0.209316,0.857882,0.656469,0.785315,0.685505,0.846702,0.663493,0.88356,0.921292,0.916217,0.359179,0.45282,0.203044,0.9315,0.419191,0.39207,0.637431,0.546199,0.0635085,0.324139,0.708562,0.71056,0.151133,0.540433,0.474325,0.572241,0.401608,0.540075,0.472329,0.145531,0.987731,0.837443,0.0164332,0.269639,0.633151,0.493792,0.735187,0.0453011,0.057399,0.0943636,0.4148,0.956839,0.308163,0.0621071,0.0840261,0.114392,0.887722,0.949184,0.535695,0.384991,0.582859,0.527965,0.124276,0.946773,0.0178016,0.091562,0.694986,0.948171,0.729817,0.771954,0.89432,0.61132,0.391876,0.375273,0.858521,0.465901,0.824752,0.823062,0.297574,0.45804,0.383661,0.454148,0.347704,0.272012,0.291641,0.41122,0.634846,0.380609,0.734677,0.694078,0.978791,0.960173,0.563631,0.730266,0.211321,0.506706,0.7815,0.676013,0.0669748,0.354674,0.710335,0.433387,0.600956,0.244293,0.19291,0.437718,0.132891,0.839191,0.576438,0.277418,0.00412393,0.176219,0.148251,0.815658,0.0984292,0.967112,0.117496,0.653082,0.602645,0.929599,0.723211,0.374131,0.875981,0.760752,0.00276864,0.425656,0.741852,0.46423,0.675099,0.626758,0.649443,0.450407,0.0599741,0.610238,0.0204254,0.293678,0.566916,0.39758,0.15632,0.553983,0.54068,0.815124,0.843033,0.237513,0.112155,0.258574,0.51981,0.117509,0.559943,0.97146,0.84853,0.121868,0.084462,0.572043,0.287083,0.944485,0.13628,0.513539,0.100097,0.35024,0.804126,0.838796,0.0694953,0.639868,0.739756,0.746284,0.250894,0.44921,0.634708,0.25541,0.652294,0.16485,0.555711,0.749598,0.721093,0.603578,0.977359,0.35602,0.315061,0.208476,0.066467,0.0260218,0.714511,0.345186,0.644253,0.662426,0.46646,0.703158,0.0362561,0.0903847,0.190126,0.358041,0.468637,0.695951,0.645584,0.495846,0.856858,0.404494,0.941744,0.11811,0.0526763,0.24488,0.518835,0.215294,0.598801,0.338615,0.147383,0.441115,0.37102,0.98948,0.922177,0.0367749,0.724359,0.708191,0.106863,0.938546,0.689005,0.0286741,0.787559,0.343554,0.617077,0.305187,0.954676,0.858178,0.533312,0.81776,0.832594,0.889631,0.808595,0.342268,0.0082826,0.498842,0.0071975,0.622579,0.976667,0.214166,0.234811,0.1919,0.190476,0.156562,0.434413,0.324927,0.527702,0.888359,0.941931,0.225769,0.731881,0.157441,0.188486,0.722831,0.446467,0.536628,0.475016,0.205832,0.314253,0.847969,0.0519392,0.0111151,0.318485,0.771893,0.611897,0.616204,0.762996,0.903408,0.247225,0.879299,0.990231,0.669582,0.689238,0.830326,0.880194,0.100815,0.583643,0.757228,0.953557,0.337691,0.731132,0.206086,0.513991,0.240254,0.600457,0.186902,0.368099,0.231699,0.124367,0.171865,0.33736,0.77478,0.53658,0.169584,0.256706,0.511388,0.395888,0.920747,0.53118,0.180659,0.874826,0.229831,0.385863,0.536475,0.0947545,0.930474,0.730016,0.146456,0.442837,0.418161,0.291066,0.133903,0.994239,0.075625,0.567631,0.326915,0.934484,0.38125,0.422231,0.518501,0.801743,0.206029,0.37139,0.287857,0.943004,0.836103,0.217662,0.848705,0.332938,0.363175,0.601136,0.690443,0.506062,0.31253,0.123408,0.0623732,0.706099,0.683593,0.55373,0.501643,0.63615,0.720059,0.856907,0.00339454,0.485874,0.886692,0.799351,0.99563,0.955651,0.591549,0.29285,0.454232,0.0300586,0.0167612,0.899242,0.165716,0.890083,0.927034,0.251175,0.77536,0.737445,0.892259,0.24067,0.873408,0.494731,0.08726,0.311353,0.247276,0.0826551,0.503295,0.440978,0.771359,0.117195,0.953972,0.391003,0.436195,0.173564,0.884061,0.682769,0.835334,0.621323,0.108549,0.823802,0.0749364,0.198246,0.747854,0.0161754,0.270687,0.404774,0.340635,0.804339,0.627572,0.0821485,0.327784,0.385888,0.683176,0.979835,0.665462,0.636592,0.14844,0.803563,0.0713638,0.476103,0.956023,0.00190639,0.607508,0.397961,0.667154,0.246876,0.0196304,0.735901,0.139685,0.598824,0.0596368,0.438478,0.313806,0.409108,0.820542,0.0547744,0.926569,0.290307,0.767648,0.641043,0.345812,0.451424,0.915931,0.642392,0.250733,0.91186,0.320489,0.448089,0.342965,0.843156,0.317159,0.0964928,0.275249,0.748815,0.753801,0.806259,0.672069,0.600385,0.540953,0.857583,0.0245536,0.0518488,0.849908,0.694308,0.546867,0.287505,0.349566,0.773482,0.131765,0.399084,0.381249,0.730255,0.0547777,0.172791,0.9208,0.361974,0.945859,0.799701,0.410544,0.55378,0.720331,0.0813869,0.748749,0.425823,0.18834,0.00043416,0.301604,0.93885,0.556402,0.523111,0.274427,0.994372,0.13569,0.690808,0.54965,0.604603,0.364318,0.897255,0.407036,0.914818,0.520422,0.404327,0.937304,0.126751,0.72288,0.115296,0.36117,0.717671,0.172513,0.610687,0.960276,0.157413,0.801651,0.29606,0.977678,0.119181,0.063894,0.171711,0.846547,0.760862,0.199192,0.292212,0.0147449,0.00523019,0.504047,0.720198,0.917381,0.0890657,0.365977,0.729938,0.518904,0.435828,0.761239,0.663211,0.383657,0.343691,0.442683,0.944554,0.138168,0.680239,0.320605,0.226325,0.227715,0.400929,0.815484,0.323059,0.0619296,0.81803,0.269031,0.555264,0.95968,0.219852,0.89741,0.717673,0.211638,0.859627,0.995985,0.674681,0.831794,0.00775105,0.982551,0.30586,0.431486,0.725924,0.210191,0.73143,0.628411,0.266995,0.571454,0.282246,0.190702,0.996789,0.337717,0.748187,0.0226167,0.399131,0.780038,0.113074,0.453796,0.507793,0.484144,0.621629,0.421,0.59576,0.499942,0.514028,0.160241,0.59623,0.209981,0.85455,0.933546,0.546202,0.743514,0.671446,0.72767,0.444752,0.427823,0.684033,0.549219,0.371488,0.58856,0.57281,0.937283,0.911611,0.268275,0.752733,0.843021,0.433157,0.36644,0.377618,0.281767,0.372211,0.644134,0.138322,0.959649,0.0313236,0.583065,0.334244,0.282595,0.793304,0.838271,0.543858,0.411517,0.21079,0.949539,0.304935,0.488096,0.8635,0.80132,0.847817,0.237434,0.160365,0.0768265,0.819947,0.195659,0.853651,0.224267,0.673375,0.557923,0.351018,0.18173,0.307297,0.0944318,0.988347,0.334491,0.310942,0.237937,0.775849,0.669738,0.908014,0.873555,0.696,0.412795,0.961077,0.529501,0.94462,0.120022,0.562243,0.684819,0.396657,0.356956,0.167749,0.91093,0.979291,0.498748,0.264755,0.46782,0.0558742,0.493164,0.196366,0.171988,0.566698,0.128284,0.163052,0.627045,0.188946,0.0198581,0.75353,0.49796,0.591951,0.929703,0.201632,|0.760079,0.731655,0.416034,0.0456749,0.242502,0.362668,0.261485,0.657886,0.25161,0.0393343,0.657714,0.539306,0.234443,0.426909,0.686374,0.81633,0.87883,0.762286,0.486838,0.138983,0.0288451,0.328794,0.658587,0.0272922,0.755417,0.613097,0.0172002,0.0610546,0.169072,0.613404,0.84478,0.0218617,0.103588,0.494124,0.593346,0.429461,0.354861,0.0448654,0.230919,0.85441,0.732104,0.691264,0.718835,0.518383,0.933166,0.961035,0.624839,0.0530647,0.49936,0.849705,0.213491,0.160772,0.607671,0.411261,0.11758,0.781149,0.0195291,0.355147,0.0257211,0.860084,0.474477,0.289728,0.961742,0.805393,0.902644,0.593157,0.170482,0.687821,0.954765,0.079034,0.991519,0.733045,0.259993,0.01464,0.0424522,0.86972,0.162151,0.129607,0.068588,0.00885165,0.132662,0.532754,0.749404,0.0126497,0.319549,0.257469,0.791502,0.221806,0.0667597,0.662876,0.793364,0.681312,0.36023,0.712294,0.834966,0.263954,0.00912857,0.569799,0.67637,0.69103,0.368833,0.22401,0.283119,0.837969,0.617674,0.0807046,0.327247,0.268016,0.747766,0.68181,0.276281,0.0928392,0.566806,0.528141,0.659014,0.586292,0.336007,0.535605,0.759348,0.77817,0.502456,0.0599756,0.910222,0.991497,0.446569,0.391481,0.864255,0.424107,0.620984,0.117788,0.67332,0.865055,0.293271,0.953286,0.775185,0.433045,0.657731,0.935472,0.250228,0.592029,0.306514,0.223616,0.935505,0.679751,0.480388,0.680329,0.675035,0.510117,0.47958,0.211151,0.831923,0.00270689,0.340246,0.0185918,0.52469,0.150264,0.560753,0.403679,0.802649,0.86854,0.273088,0.744832,0.735606,0.455854,0.298833,0.879075,0.0374271,0.994002,0.180693,0.999561,0.0845775,0.336466,0.707011,0.737454,0.474143,0.39207,0.457328,0.944421,0.743927,0.930337,0.345663,0.331103,0.141145,0.7169,0.407984,0.0343624,0.276008,0.94457,0.735218,0.621364,0.192454,0.176576,0.781689,0.480685,0.432287,0.565746,0.919434,0.721134,0.995373,0.419216,0.130494,0.437027,0.0183798,0.598372,0.683323,0.120032,0.17817,0.386735,0.518424,0.60374,0.576993,0.535608,0.946675,0.797957,0.793525,0.0381438,0.805782,0.198188,0.273603,0.889609,0.665676,0.402581,0.433501,0.4222,0.547992,0.0726892,0.790933,0.830375,0.327116,0.971302,0.573454,0.859799,0.361021,0.54746,0.463748,0.583571,0.876945,0.110036,0.998917,0.341402,0.989809,0.411383,0.707759,0.74372,0.0978287,0.109189,0.376511,0.161456,0.12908,0.26255,0.0639293,0.479255,0.822615,0.122681,0.208025,0.70448,0.267888,0.145881,0.517531,0.761,0.141943,0.30628,0.151531,0.375207,0.0979875,0.700402,0.173663,0.212567,0.785629,0.810853,0.871574,0.871981,0.400312,0.493059,0.48965,0.860572,0.372549,0.421394,0.167342,0.318442,0.0291528,0.0381689,0.576814,0.377747,0.537744,0.867536,0.361791,0.618699,0.757344,0.392159,0.31909,0.200021,0.816066,0.673268,0.365957,0.444865,0.572206,0.335654,0.569132,0.174921,0.46479,0.537976,0.914897,0.308904,0.386679,0.63118,0.444575,0.0401068,0.639032,0.407328,0.461079,0.591019,0.289176,0.0117722,0.394976,0.053824,0.522707,0.793235,0.332753,0.944253,0.062067,0.976553,0.687047,0.553978,0.108662,0.00898916,0.00264567,0.339544,0.592155,0.0615395,0.990995,0.396087,0.0135869,0.857079,0.382466,0.088209,0.26091,0.277502,0.0685547,0.0164242,0.762774,0.34454,0.212918,0.575682,0.000417292,0.99195,0.474435,0.522167,0.201959,0.785982,0.583255,0.555334,0.286558,0.652151,0.527624,0.0493243,0.177643,0.440699,0.880918,0.751841,0.807386,0.867683,0.676145,0.211292,0.722782,0.879375,0.227428,0.779027,0.675568,0.365951,0.666708,0.651517,0.932433,0.98622,0.401088,0.50262,0.197383,0.189617,0.295916,0.364735,0.175341,0.21544,0.278414,0.620413,0.829707,0.607077,0.175221,0.874541,0.642174,0.175565,0.515372,0.365672,0.697729,0.212875,0.719833,0.861413,0.402517,0.104017,0.802103,0.833569,0.849386,0.969143,0.956251,0.137268,0.872073,0.337259,0.819757,0.38899,0.89603,0.410005,0.871673,0.165913,0.486449,0.249799,0.367526,0.318114,0.35277,0.0748823,0.645499,0.718778,0.710574,0.683567,0.54182,0.0385891,0.522335,0.676129,0.320422,0.99504,0.0918263,0.756263,0.34568,0.0797065,0.815958,0.0497303,0.332057,0.478869,0.650134,0.380725,0.625442,0.90404,0.62528,0.0507007,0.0664512,0.669358,0.250949,0.974683,0.74113,0.450487,0.835227,0.840655,0.926241,0.110833,0.35093,0.21758,0.103803,0.671743,0.433506,0.942907,0.221949,0.545729,0.168689,0.287418,0.135349,0.73194,0.278607,0.258287,0.849448,0.770521,0.79278,0.248093,0.366625,0.88545,0.697942,0.0807682,0.449995,0.750671,0.691723,0.287544,0.67864,0.614911,0.946031,0.0441703,0.650175,0.801984,0.135079,0.66449,0.455047,0.792757,0.450797,0.499198,0.968212,0.948824,0.916653,0.366242,0.356046,0.749988,0.131558,0.0730284,0.55635,0.802064,0.624379,0.519335,0.951218,0.445541,0.241541,0.730125,0.146116,0.56809,0.0639645,0.487162,0.708767,0.986499,0.127775,0.598382,0.783956,0.612146,0.433083,0.304423,0.479705,0.751037,0.851094,0.966205,0.799008,0.523109,0.93456,0.306458,0.212067,0.0972556,0.710817,0.660402,0.460363,0.257503,0.692158,0.380673,0.161553,0.0428492,0.448389,0.709501,0.986077,0.315007,0.793518,0.387345,0.00118595,0.978901,0.88368,0.116373,0.0793046,0.379185,0.798139,0.198923,0.37134,0.942211,0.244937,0.752345,0.139162,0.500565,0.816723,0.984342,0.132752,0.507727,0.776043,0.172773,0.189146,0.920401,0.00349313,0.500211,0.183854,0.727156,0.281053,0.831778,0.98144,0.0301008,0.758288,0.325126,0.638028,0.652938,0.331895,0.811283,0.465991,0.144311,0.782544,0.427444,0.139238,0.761398,0.410966,0.472972,0.632828,0.257514,0.00414956,0.758756,0.076363,0.999257,0.0722671,0.647882,0.321046,0.402754,0.48391,0.784948,0.85514,0.752964,0.328145,0.148561,0.95114,0.375237,0.0209702,0.897433,0.419551,0.505888,0.908033,0.142299,0.106384,0.842222,0.516999,0.79118,0.181475,0.621139,0.419598,0.514788,0.0309331,0.570461,0.968486,0.0864719,0.556204,0.865889,0.251054,0.355618,0.185289,0.836855,0.349305,0.66375,0.287451,0.934236,0.537934,0.358012,0.863018,0.746954,0.519943,0.314684,0.074907,0.112319,0.0840598,0.969444,0.717742,0.842555,0.479133,0.203733,0.694132,0.927571,0.668879,0.195931,0.132581,0.990226,0.167765,0.253343,0.665335,0.45943,0.0890504,0.0746779,0.39394,0.116339,0.534545,0.0289801,0.0830119,0.490959,0.795006,0.680346,0.968495,0.591614,0.678334,0.217905,0.211566,0.312656,0.53298,0.494654,0.515363,0.615335,0.83134,0.637826,0.126885,0.755117,0.117085,0.0168384,0.274231,0.161076,0.54905,0.179151,0.0651287,0.399165,0.0131309,0.637662,0.0548437,0.236467,0.131003,0.713251,0.704413,0.0573618,0.785983,0.103955,0.410376,0.422924,0.866668,0.616693,0.0628291,0.735358,0.287424,0.84465,0.216748,0.012637,0.694196,0.583984,0.0806476,0.121105,0.594046,0.320282,0.924108,0.812044,0.528502,0.0113454,0.453876,0.318773,0.774389,0.726803,0.637936,0.0340078,0.321359,0.545851,0.73143,0.746605,0.283492,0.0412344,0.47936,0.232502,0.162265,0.573025,0.123603,0.310335,0.142955,0.871607,0.0846617,0.223671,0.419143,0.30516,0.796255,0.141224,0.80919,0.971751,0.480709,0.121012,0.00140893,0.214691,0.206933,0.313775,0.179533,0.405,0.205685,0.0696196,0.318839,0.732749,0.0250582,0.112984,0.2312,0.532253,0.362581,0.648561,0.110646,0.779913,0.377076,0.838333,0.917425,0.24077,0.0466284,0.713184,0.147152,0.543533,0.339857,0.969502,0.32797,0.705306,0.0849715,0.00481272,0.289729,0.54489,0.94734,0.715072,0.871031,0.992273,0.233793,0.307774,0.553483,0.2905,0.0604571,0.785578,0.93765,0.683433,0.587354,0.569565,0.948634,0.837678,0.229523,0.407131,0.439714,0.966487,0.548553,0.0382169,0.67652,0.609745,0.97147,0.497115,0.338845,0.518338,0.840224,0.124832,0.420768,0.458641,0.617888,0.644439,0.750295,0.507291,0.103919,0.879149,0.673549,0.86609,0.568232,0.186272,0.492372,0.589366,0.0748756,0.789763,0.946873,0.791896,0.460478,0.307944,0.476065,0.579242,0.571508,0.0136931,0.162097,0.52465,0.24078,0.741017,0.992534,0.965831,0.728651,0.231017,0.827242,0.876041,0.363097,0.25054,0.283536,0.73466,0.114602,0.449703,0.0612786,0.337302,0.49959,0.185717,0.583611,0.70312,0.109883,0.282317,0.290448,0.224011,0.385302,0.92095,0.00542849,0.31542,0.0555887,0.0688574,0.113758,0.450714,0.616727,0.624733,0.162929,0.00293052,0.548666,0.0881411,0.938312,0.707856,0.139978,0.422597,0.192027,0.916233,0.741184,0.981878,0.409269,0.754336,0.316744,0.473514,0.0388219,0.515248,0.438931,0.054839,0.949964,0.35509,0.457904,0.934884,0.549316,0.841788,0.515898,0.467031,0.565048,0.743657,0.424739,0.47776,0.162187,0.383949,0.633822,0.669025,0.0332818,0.688306,0.630872,0.257312,0.648155,0.063592,0.703035,0.828132,0.284165,0.315776,0.264737,0.103202,0.0872046,0.90783,0.342236,0.883246,0.931064,0.57419,0.987429,0.973761,0.523853,0.675591,0.411821,0.503768,0.585031,0.823875,0.581245,0.488388,0.175864,0.869253,0.232876,0.663697,0.461087,0.453826,0.640728,0.4573,0.926307,0.548651,0.849015,0.507898,0.739177,0.915128,0.521627,0.508709,0.538754,0.773043,0.77918,0.466374,0.285391,0.0852226,0.294434,0.343571,0.923937,0.132887,0.314816,0.125665,0.259319,0.521617,0.356679,0.58097,0.236556,0.842941,0.0725246,0.8838,0.963191,0.299073,0.0429072,0.0767202,0.904252,0.515924,0.973995,0.833839,0.904897,0.541617,0.342977,0.647004,0.262458,0.65677,0.183633,0.497899,0.884827,0.633154,0.0430242,0.837974,0.281112,0.512758,0.273693,0.86054,0.960397,0.103889,0.408811,0.983451,|0.194145,0.903482,0.802059,0.664591,0.834932,0.0478759,0.498689,0.396024,0.0862074,0.108041,0.266366,0.0506408,0.713975,0.232408,0.00862575,0.196232,0.551525,0.657386,0.221086,0.552774,0.454962,0.0751522,0.632363,0.215845,0.70753,0.854462,0.168896,0.813905,0.425918,0.869855,0.0717491,0.426584,0.292952,0.85801,0.216653,0.970792,0.535468,0.813812,0.67121,0.929156,0.135085,0.701702,0.387572,0.365885,0.397725,0.0721239,0.384577,0.696108,0.530877,0.0207243,0.735633,0.743361,0.745105,0.039601,0.382489,0.995098,0.906175,0.640021,0.506672,0.465261,0.531467,0.741846,0.498796,0.248198,0.475543,0.26504,0.723271,0.145008,0.0123129,0.720181,0.892345,0.773906,0.705243,0.390048,0.792172,0.994748,0.107023,0.320523,0.582635,0.465896,0.671581,0.573588,0.487606,0.367595,0.607868,0.263453,0.665935,0.906132,0.764286,0.633716,0.778444,0.124797,0.636899,0.334989,0.85281,0.683163,0.756084,0.0336658,0.228981,0.656292,0.993473,0.0562198,0.0984676,0.155836,0.408423,0.835396,0.00667512,0.559937,0.535136,0.494386,0.934851,0.388194,0.850702,0.476221,0.451022,0.195599,0.257042,0.143901,0.0449605,0.284501,0.628671,0.501313,0.297969,0.905545,0.0389788,0.38682,0.641556,0.859837,0.0471681,0.35357,0.744704,0.0421358,0.0894861,0.511621,0.370471,0.736185,0.790098,0.814317,0.567266,0.769031,0.810704,0.807641,0.768467,0.266962,0.380529,0.573635,0.0607633,0.779877,0.904559,0.24205,0.637504,0.26258,0.150287,0.405809,0.92377,0.960587,0.0975123,0.996465,0.0555523,0.423015,0.252997,0.791227,0.0831987,0.909541,0.443735,0.929857,0.584675,0.225924,0.341373,0.951242,0.463897,0.120096,0.0915832,0.974106,0.87728,0.665415,0.708007,0.00809669,0.929923,0.137611,0.962763,0.745181,0.723654,0.823004,0.0400754,0.0281255,0.508423,0.967893,0.184414,0.779059,0.872353,0.0984877,0.150843,0.296063,0.550437,0.40056,0.397016,0.861826,0.261767,0.722362,0.244592,0.353002,0.665644,0.956812,0.366135,0.99663,0.61557,0.618963,0.210818,0.549334,0.0982043,0.98425,0.927432,0.264892,0.0747352,0.406091,0.826991,0.758135,0.443365,0.158089,0.72688,0.346842,0.933864,0.892765,0.14644,0.590113,0.00755757,0.684417,0.740284,0.651487,0.237709,0.145921,0.33702,0.371527,0.679923,0.454658,0.227206,0.987523,0.0564965,0.13834,0.973119,0.836391,0.601266,0.492411,0.308968,0.699299,0.0996879,0.517043,0.671271,0.922342,0.261422,0.401415,0.847267,0.47401,0.100557,0.107025,0.651073,0.196776,0.163436,0.980168,0.152072,0.298616,0.0124564,0.781191,0.402236,0.292618,0.33169,0.599044,0.871081,0.372851,0.888577,0.985677,0.889653,0.761194,0.744071,0.593077,0.781824,0.382226,0.694521,0.138455,0.755764,0.382687,0.0604678,0.95739,0.160932,0.472936,0.0663019,0.376244,0.153646,0.0477015,0.0468228,0.017871,0.468404,0.508544,0.532644,0.612532,0.478915,0.624713,0.856278,0.0920708,0.400761,0.516268,0.729199,0.473233,0.636575,0.181545,0.966798,0.302335,0.652977,0.977759,0.830382,0.0145412,0.411977,0.969605,0.8589,0.0629244,0.253469,0.910668,0.237758,0.0378815,0.499392,0.988368,0.851573,0.72502,0.0319991,0.819689,0.355772,0.779895,0.477576,0.924285,0.0870548,0.539911,0.10965,0.54398,0.544641,0.575416,0.123819,0.698777,0.360404,0.641577,0.732731,0.411037,0.831706,0.482551,0.744928,0.288583,0.0181187,0.166657,0.862562,0.881878,0.947877,0.756934,0.549958,0.459713,0.357147,0.370394,0.253662,0.768112,0.353642,0.604003,0.498582,0.542579,0.151402,0.567311,0.211553,0.250453,0.634197,0.119162,0.605069,0.0993888,0.493791,0.548083,0.228087,0.307588,0.794047,0.424406,0.21442,0.0737015,0.591757,0.312753,0.35334,0.15239,0.810878,0.999387,0.00451118,0.673669,0.359604,0.156418,0.623208,0.96851,0.256792,0.971717,0.108686,0.635933,0.933565,0.891007,0.566289,0.14104,0.896237,0.0993997,0.144149,0.242323,0.0161323,0.575582,0.69993,0.823551,0.382443,0.159191,0.130742,0.345191,0.596693,0.536404,0.562711,0.658974,0.710724,0.710975,0.473913,0.577125,0.340365,0.838052,0.251072,0.53613,0.614445,0.347191,0.00480556,0.553066,0.861005,0.0314198,0.281293,0.0669814,0.72257,0.400365,0.45818,0.323921,0.715699,0.200508,0.626181,0.498607,0.359749,0.391676,0.488895,0.210834,0.970496,0.594282,0.119246,0.826173,0.191172,0.885047,0.835032,0.978399,0.431561,0.494386,0.995158,0.114921,0.783682,0.223348,0.0821291,0.405832,0.366393,0.609708,0.694232,0.502375,0.465102,0.894203,0.584788,0.956669,0.343087,0.607059,0.0265895,0.51122,0.791255,0.88905,0.177101,0.634318,0.587829,0.253178,0.952747,0.137846,0.343525,0.466013,0.871834,0.904079,0.0548672,0.178236,0.147021,0.588143,0.439606,0.309199,0.719903,0.28424,0.942876,0.394562,0.445013,0.857131,0.0559052,0.165603,0.342694,0.432321,0.536643,0.949772,0.2798,0.886006,0.162797,0.541436,0.701362,0.505927,0.344625,0.711399,0.415703,0.821734,0.152012,0.994999,0.221136,0.972483,0.143746,0.379653,0.888644,0.0371731,0.775711,0.654184,0.705944,0.722361,0.888199,0.247906,0.164068,0.731165,0.816145,0.800087,0.0434391,0.294778,0.314932,0.566759,0.677442,0.721374,0.0300969,0.39142,0.401095,0.151814,0.0726492,0.889028,0.194747,0.268148,0.159473,0.291694,0.176094,0.0151896,0.109764,0.415775,0.919213,0.931364,0.809031,0.0542697,0.201816,0.0117836,0.381492,0.0522175,0.628091,0.848845,0.185357,0.342198,0.732464,0.692769,0.356878,0.859999,0.204406,0.825858,0.97358,0.687226,0.879175,0.952036,0.938515,0.533977,0.742311,0.408587,0.835294,0.565675,0.208052,0.190787,0.953288,0.777599,0.100513,0.519211,0.410405,0.0752687,0.0126072,0.471549,0.283825,0.254872,0.581376,0.393846,0.811567,0.150738,0.13456,0.561296,0.791803,0.234372,0.701354,0.355331,0.531726,0.663559,0.0321155,0.989333,0.207242,0.507105,0.450999,0.749763,0.468907,0.975402,0.236439,0.840128,0.456833,0.961173,0.817811,0.13234,0.406293,0.872797,0.840416,0.899151,0.290955,0.904923,0.555323,0.533939,0.671336,0.00775844,0.855252,0.73533,0.124562,0.509716,0.20726,0.941026,0.262733,0.484559,0.859793,0.591546,0.595834,0.883699,0.796392,0.0515504,0.949193,0.0234234,0.816412,0.979852,0.808422,0.098926,0.128303,0.417425,0.242251,0.262722,0.221064,0.809605,0.478325,0.19381,0.597401,0.19545,0.850159,0.988064,0.962899,0.994466,0.130089,0.399047,0.936571,0.699199,0.714913,0.57633,0.319609,0.996035,0.178133,0.753836,0.340691,0.479554,0.256121,0.505318,0.825487,0.562414,0.26925,0.739911,0.421255,0.194434,0.848374,0.202022,0.895192,0.542207,0.468366,0.182614,0.00210512,0.764078,0.183689,0.474944,0.637715,0.664458,0.452986,0.0900238,0.956431,0.805194,0.652207,0.440577,0.0841746,0.373666,0.924177,0.40754,0.376238,0.906224,0.836799,0.382234,0.51844,0.844131,0.286759,0.399445,0.740601,0.618732,0.153843,0.728259,0.996454,0.772187,0.849127,0.617295,0.0337767,0.924656,0.26702,0.876437,0.425449,0.944533,0.565353,0.736666,0.82027,0.539985,0.434338,0.954268,0.539143,0.504321,0.990697,0.382224,0.90309,0.47486,0.651803,0.540004,0.189943,0.787265,0.553234,0.0701559,0.652232,0.93901,0.0164109,0.0324179,0.274899,0.121573,0.649566,0.544138,0.194774,0.460922,0.638745,0.00481308,0.968748,0.302662,0.335458,0.830512,0.783656,0.850038,0.0583347,0.110256,0.999808,0.00946432,0.428263,0.690997,0.137669,0.968513,0.384291,0.0366895,0.646398,0.501187,0.62129,0.820078,0.700364,0.317768,0.0457511,0.458792,0.570939,0.0362781,0.233917,0.752276,0.631654,0.888363,0.412492,0.384381,0.187398,0.62338,0.663683,0.037532,0.154677,0.246631,0.401592,0.990091,0.859256,0.892046,0.00108451,0.406782,0.653435,0.696172,0.855685,0.996766,0.650153,0.104437,0.408467,0.469362,0.499777,0.108143,0.551409,0.786705,0.608736,0.837318,0.690436,0.839032,0.992614,0.888662,0.162019,0.163868,0.79991,0.281973,0.0316127,0.0352775,0.998974,0.731635,0.796174,0.13894,0.566481,0.568263,0.223201,0.0182366,0.626084,0.418566,0.0107405,0.353238,0.578038,0.887004,0.162975,0.914247,0.924983,0.694889,0.205361,0.745251,0.887613,0.0866641,0.994632,0.928989,0.180635,0.576276,0.575089,0.704688,0.237675,0.823555,0.471796,0.773396,0.818922,0.13039,0.996982,0.220013,0.867297,0.494443,0.702507,0.631347,0.304423,0.672102,0.0510398,0.783115,0.17386,0.558161,0.0284135,0.566807,0.347514,0.939888,0.263383,0.303983,0.101132,0.833718,0.0370656,0.918385,0.859172,0.588731,0.0680137,0.571478,0.629437,0.175883,0.758083,0.916007,0.819081,0.313669,0.076676,0.866228,0.49644,0.497562,0.419696,0.317876,0.802748,0.267316,0.925374,0.00946766,0.526146,0.763005,0.248204,0.860564,0.432742,0.285721,0.133959,0.859761,0.862331,0.900892,0.0652061,0.92648,0.232618,0.504313,0.403026,0.0195897,0.485125,0.227034,0.338103,0.0269474,0.983329,0.083443,0.0724533,0.0513383,0.153973,0.0657657,0.231423,0.688306,0.208419,0.731405,0.08474,0.589611,0.879398,0.961301,0.73618,0.681716,0.925489,0.551949,0.243798,0.878648,0.521823,0.401235,0.418468,0.230415,0.510204,0.578536,0.778308,0.0751733,0.529336,0.553636,0.818537,0.000730693,0.958049,0.801117,0.949429,0.121053,0.648687,0.0156761,0.596493,0.466665,0.974335,0.266052,0.871313,0.677247,0.242682,0.25181,0.273443,0.71643,0.5856,0.139834,0.284528,0.192012,0.502034,0.214443,0.693743,0.0193415,0.290158,0.551638,0.683144,0.769174,0.138531,0.454652,0.742364,0.31559,0.280043,0.767592,0.228628,0.224619,0.903796,0.293588,0.0934557,0.412578,0.18669,0.453077,0.579388,0.161992,0.379392,0.431074,0.340339,0.382772,0.925023,0.650204,0.364931,0.694489,|0.0632708,0.408752,0.210098,0.24834,0.647267,0.75054,0.871158,0.94049,0.912885,0.658442,0.734274,0.399279,0.943589,0.911325,0.382973,0.0790352,0.904021,0.955635,0.864341,0.788148,0.771793,0.0192816,0.692258,0.664118,0.694607,0.319915,0.114206,0.842334,0.995321,0.764655,0.499864,0.785524,0.476112,0.718709,0.909319,0.547798,0.484171,0.32637,0.555081,0.830404,0.371151,0.224436,0.616246,0.171297,0.239644,0.121013,0.809202,0.535546,0.221893,0.225502,0.110496,0.209463,0.120627,0.371609,0.198868,0.910791,0.377491,0.457926,0.57442,0.44475,0.545936,0.0388473,0.208842,0.624389,0.094943,0.688537,0.136217,0.254244,0.476925,0.191668,0.803558,0.53713,0.438683,0.878122,0.892433,0.889314,0.490911,0.18619,0.538532,0.00218725,0.370552,0.0467338,0.966433,0.470388,0.730927,0.207808,0.143965,0.0421493,0.285417,0.353707,0.888205,0.168719,0.709451,0.627106,0.835674,0.747285,0.848631,0.459251,0.167063,0.358527,0.68425,0.340408,0.26044,0.696573,0.217314,0.566414,0.985465,0.854813,0.310651,0.107037,0.630482,0.242649,0.592638,0.187122,0.117063,0.904957,0.1475,0.760364,0.331406,0.982996,0.569417,0.779999,0.717741,0.200541,0.670868,0.190279,0.575253,0.802324,0.873541,0.991585,0.270076,0.337164,0.747043,0.426561,0.911299,0.293764,0.414787,0.172571,0.634977,0.424726,0.756596,0.347461,0.387033,0.498418,0.935182,0.884569,0.883148,0.534909,0.679099,0.74154,0.45236,0.883995,0.959738,0.480616,0.134725,0.859189,0.631072,0.423022,0.6173,0.229381,0.0541443,0.697443,0.197708,0.318195,0.31427,0.575644,0.615691,0.0337683,0.079037,0.489012,0.659108,0.154914,0.0768247,0.304729,0.0204159,0.65236,0.0821754,0.266575,0.827943,0.0556319,0.407477,0.0126674,0.551345,0.279028,0.563528,0.0343368,0.626501,0.261058,0.542025,0.0458105,0.862401,0.499995,0.0779507,0.202784,0.304447,0.104707,0.599489,0.0896445,0.908529,0.984846,0.786206,0.151588,0.0479779,0.448815,0.880107,0.590373,0.474567,0.015652,0.0523878,0.517029,0.974989,0.42118,0.524721,0.86766,0.978018,0.766233,0.198041,0.493707,0.387588,0.650353,0.465923,0.971713,0.679337,0.898483,0.822772,0.860569,0.300021,0.645785,0.263346,0.0646937,0.320802,0.972829,0.70305,0.621765,0.933363,0.724874,0.937075,0.00366127,0.549072,0.589965,0.407746,0.887245,0.166952,0.58497,0.546481,0.379121,0.719158,0.920281,0.254666,0.166088,0.538305,0.402986,0.141603,0.969241,0.739092,0.0611376,0.27183,0.31585,0.841856,0.273456,0.431338,0.975596,0.887341,0.623084,0.0804106,0.900502,0.0326199,0.309803,0.298575,0.528783,0.358702,0.972114,0.715985,0.7904,0.676839,0.412022,0.928259,0.388909,0.922614,0.387622,0.0712346,0.353193,0.782601,0.311535,0.271795,0.681105,0.0713624,0.821982,0.76478,0.31501,0.0866846,0.912532,0.0450783,0.00146013,0.359586,0.441866,0.0666837,0.294467,0.562716,0.65756,0.149389,0.52532,0.917993,0.436862,0.598489,0.525972,0.31054,0.284913,0.658556,0.291795,0.6401,0.272109,0.301184,0.402199,0.40617,0.26883,0.327981,0.172331,0.653065,0.936601,0.201705,0.277986,0.336869,0.534406,0.150283,0.129796,0.383332,0.492741,0.677505,0.403621,0.45692,0.620785,0.799966,0.887279,0.821856,0.674885,0.849259,0.744708,0.319752,0.323664,0.260707,0.443783,0.292433,0.304651,0.60257,0.0790887,0.752396,0.646635,0.88324,0.235031,0.252453,0.474497,0.891357,0.390934,0.62657,0.0944702,0.280589,0.860429,0.78756,0.760812,0.409661,0.87348,0.392627,0.242824,0.67619,0.812404,0.494817,0.243967,0.764443,0.67072,0.182952,0.474224,0.95242,0.062591,0.349339,0.887383,0.475693,0.511709,0.785141,0.259486,0.32174,0.499021,0.734559,0.599569,0.987047,0.879674,0.234413,0.443314,0.771329,0.261328,0.908903,0.800865,0.710496,0.694948,0.725955,0.355189,0.22722,0.487772,0.743679,0.350993,0.0803459,0.578939,0.749612,0.875404,0.91777,0.812174,0.840289,0.965855,0.178202,0.248454,0.494954,0.879827,0.739642,0.678228,0.0664521,0.866762,0.866935,0.628737,0.084186,0.472006,0.833167,0.691567,0.0881005,0.600094,0.989477,0.900704,0.683433,0.0227194,0.692406,0.666217,0.0388065,0.484369,0.268359,0.585878,0.290859,0.489339,0.226007,0.0535843,0.972347,0.890016,0.94248,0.705848,0.926134,0.842318,0.700802,0.16474,0.864446,0.145341,0.430391,0.154103,0.98204,0.390417,0.993191,0.714038,0.65908,0.209782,0.127086,0.611967,0.887855,0.443957,0.0708396,0.389069,0.214734,0.896696,0.920615,0.462473,0.0350749,0.141595,0.245175,0.360562,0.706891,0.464215,0.597507,0.147651,0.0687789,0.5321,0.0579439,0.268157,0.768234,0.54731,0.674378,0.40027,0.2072,0.412147,0.816561,0.468861,0.415726,0.0571234,0.0933585,0.371177,0.521058,0.249308,0.215022,0.332981,0.0162344,0.872613,0.0757772,0.681412,0.773,0.65875,0.509446,0.113049,0.162037,0.225865,0.287888,0.149346,0.175145,0.647901,0.125354,0.373808,0.994134,0.349406,0.57171,0.10463,0.813397,0.328642,0.0764852,0.079544,0.771212,0.316847,0.256454,0.822541,0.622732,0.587964,0.729661,0.885435,0.540528,0.425099,0.134723,0.129827,0.995243,0.396422,0.555023,0.814938,0.153122,0.359383,0.549052,0.397834,0.0485839,0.611417,0.810511,0.0497166,0.0103187,0.578605,0.360756,0.491338,0.380942,0.225198,0.424625,0.650101,0.358301,0.298262,0.456644,0.416958,0.270865,0.348344,0.0944462,0.253991,0.43646,0.0666887,0.132873,0.784652,0.979809,0.00466955,0.747318,0.330298,0.30585,0.912379,0.625619,0.462862,0.515061,0.264376,0.39281,0.785646,0.31783,0.196132,0.841839,0.221401,0.572383,0.923241,0.239428,0.39173,0.865642,0.401568,0.810667,0.229218,0.435523,0.809722,0.956314,0.548199,0.755568,0.00159258,0.976369,0.765496,0.268189,0.858424,0.77494,0.434815,0.931152,0.915991,0.702761,0.562201,0.753791,0.493327,0.168269,0.780037,0.523491,0.703134,0.886489,0.689252,0.630297,0.662261,0.833098,0.238841,0.182298,0.743993,0.512935,0.803266,0.73514,0.253022,0.31146,0.20975,0.771073,0.429414,0.899959,0.106463,0.816004,0.53366,0.158082,0.789804,0.324337,0.157942,0.455009,0.697669,0.621865,0.0637772,0.0353589,0.0646107,0.451985,0.0603786,0.439395,0.12682,0.207591,0.957898,0.104208,0.13351,0.626469,0.303515,0.292246,0.15895,0.601762,0.021486,0.242018,0.00336659,0.704967,0.00853997,0.339663,0.464984,0.094075,0.756131,0.348248,0.307656,0.108806,0.577539,0.554861,0.240728,0.240573,0.605305,0.278082,0.514019,0.389497,0.456464,0.713946,0.860598,0.920947,0.94477,0.56587,0.803275,0.891525,0.714532,0.378731,0.107941,0.448024,0.011834,0.149129,0.898491,0.793197,0.276246,0.336866,0.049978,0.99621,0.902941,0.427305,0.768643,0.488857,0.039439,0.346965,0.882448,0.113069,0.530774,0.251187,0.516568,0.396058,0.977327,0.389122,0.330909,0.838089,0.693073,0.468164,0.437081,0.362964,0.879338,0.288123,0.486812,0.187586,0.361123,0.259126,0.743928,0.920465,0.774596,0.933064,0.568977,0.0227155,0.187213,0.00506037,0.983608,0.361691,0.503214,0.135552,0.0502818,0.748276,0.696436,0.732198,0.388681,0.446776,0.211861,0.766654,0.809728,0.418038,0.241805,0.0989897,0.263944,0.494871,0.386087,0.929008,0.256518,0.620362,0.77389,0.396533,0.275309,0.412754,0.877869,0.928062,0.191413,0.211607,0.266095,0.00284636,0.108055,0.0743195,0.114567,0.339894,0.860118,0.0289778,0.651767,0.521301,0.806467,0.402867,0.545502,0.309152,0.992507,0.419217,0.944716,0.250293,0.284123,0.180626,0.262586,0.127872,0.667092,0.360425,0.688795,0.508289,0.187636,0.374671,0.888661,0.876996,0.707318,0.759665,0.267617,0.311657,0.0854545,0.558002,0.461816,0.723577,0.353954,0.996461,0.844206,0.936988,0.290318,0.464246,0.211693,0.788176,0.794197,0.732009,0.200164,0.287075,0.0268,0.983822,0.365035,0.0805541,0.293874,0.703919,0.214242,0.935782,0.101476,0.306709,0.773802,0.0440418,0.858092,0.359594,0.441491,0.773637,0.468426,0.306894,0.494682,0.279742,0.025601,0.456343,0.319348,0.117683,0.287231,0.00330198,0.769603,0.907206,0.817109,0.718688,0.991719,0.715697,0.109014,0.984784,0.990722,0.79127,0.666963,0.917451,0.913455,0.309989,0.84487,0.502473,0.960509,0.63991,0.156673,0.843579,0.949272,0.503429,0.822862,0.819493,0.169132,0.540709,0.331887,0.838307,0.0147101,0.765866,0.300092,0.242075,0.416482,0.420199,0.835194,0.296099,0.424323,0.98179,0.916867,0.951656,0.800511,0.309463,0.847943,0.187167,0.607966,0.099605,0.76869,0.307774,0.18542,0.652887,0.932555,0.703026,0.984089,0.524353,0.588421,0.393409,0.772392,0.427334,0.67238,0.325256,0.625199,0.345745,0.844366,0.37125,0.920015,0.316404,0.0266861,0.657066,0.0179739,0.310062,0.337099,0.602359,0.873017,0.836407,0.36237,0.0324985,0.685258,0.979413,0.288322,0.0988026,0.396047,0.58329,0.940274,0.883226,0.75,0.426797,0.916902,0.560097,0.560738,0.652557,0.123229,0.488403,0.831064,0.153184,0.736938,0.346549,0.979778,0.285247,0.778023,0.399899,0.0241051,0.122124,0.91348,0.687232,0.0600022,0.657032,0.659804,0.956459,0.882802,0.11956,0.897744,0.21645,0.808525,0.604037,0.954307,0.593783,0.724543,0.0335816,0.662046,0.0867095,0.0412884,0.688699,0.196994,0.731816,0.822486,0.118612,0.287603,0.77697,0.897429,0.201434,0.271492,0.781682,0.736732,0.489567,0.47666,0.753214,0.185697,0.441565,0.0284179,0.138162,0.238026,0.526243,0.480616,0.636974,0.356707,0.712776,0.825049,0.138788,0.58831,0.162634,0.899107,0.850962,0.752771,0.127853,0.635233,0.748045,0.486797,0.538713,0.410766,0.838408,0.171039,0.388957,0.648238,0.934173,0.575492,0.766117,0.274178,0.736458,0.365037,|0.229035,0.200504,0.621044,0.569824,0.782383,0.776694,0.409062,0.554553,0.644579,0.799406,0.919138,0.570471,0.0705338,0.965429,0.0722544,0.24241,0.193531,0.231087,0.444892,0.324018,0.996495,0.754861,0.266102,0.906677,0.907606,0.336511,0.313338,0.484592,0.60834,0.99013,0.108473,0.277804,0.0591593,0.405157,0.488334,0.378721,0.350507,0.266282,0.511583,0.573491,0.119986,0.625423,0.591631,0.744419,0.390944,0.847217,0.162257,0.311106,0.813515,0.50308,0.325507,0.338529,0.65106,0.457093,0.388289,0.956327,0.880056,0.164012,0.0979648,0.176581,0.847981,0.746617,0.485717,0.204946,0.314064,0.570891,0.160462,0.198512,0.887828,0.456992,0.253355,0.697897,0.995215,0.654045,0.897958,0.680915,0.0193463,0.16981,0.744786,0.371907,0.532953,0.00370538,0.9064,0.634735,0.832155,0.17435,0.542371,0.587478,0.0279183,0.640032,0.984374,0.425809,0.115279,0.994719,0.115305,0.63811,0.375711,0.149557,0.960017,0.336303,0.639003,0.69388,0.118769,0.579037,0.912838,0.392309,0.0498378,0.253896,0.0481219,0.477573,0.28581,0.420461,0.700909,0.691704,0.821822,0.29238,0.0698403,0.706132,0.0296991,0.959192,0.484895,0.249869,0.932048,0.0839326,0.898435,0.238234,0.662808,0.442032,0.984172,0.825213,0.321659,0.30143,0.151496,0.155773,0.465679,0.333941,0.756278,0.568456,0.781589,0.865158,0.445132,0.249061,0.370537,0.760121,0.893446,0.129374,0.198886,0.607161,0.172612,0.503966,0.18855,0.602115,0.984666,0.316209,0.586557,0.30963,0.38137,0.356034,0.766083,0.981316,0.179935,0.277898,0.943248,0.47951,0.721233,0.121506,0.00949299,0.0717004,0.999535,0.29989,0.267835,0.0364511,0.123452,0.318213,0.93294,0.524779,0.873842,0.851312,0.713313,0.932156,0.947081,0.0903226,0.858285,0.934211,0.0727657,0.517376,0.309553,0.588414,0.0888391,0.977256,0.835656,0.065353,0.117291,0.232873,0.303743,0.584736,0.422817,0.847419,0.509313,0.88114,0.27881,0.326526,0.767451,0.055036,0.479221,0.713665,0.728176,0.113752,0.973805,0.282665,0.703588,0.232251,0.670962,0.281023,0.136453,0.760355,0.440222,0.35383,0.884882,0.971403,0.870889,0.138482,0.689843,0.760223,0.926676,0.696833,0.819861,0.318785,0.53129,0.0685309,0.963508,0.578327,0.793635,0.744709,0.929367,0.90742,0.273491,0.625333,0.928015,0.272246,0.928535,0.169864,0.619513,0.274059,0.475612,0.17919,0.658686,0.56036,0.893843,0.806793,0.510357,0.524756,0.276608,0.0294539,0.689606,0.945248,0.502676,0.013527,0.167803,0.606243,0.0255455,0.698102,0.685245,0.697918,0.0378125,0.40634,0.979746,0.508533,0.649925,0.633477,0.75819,0.555029,0.556062,0.79863,0.636026,0.112329,0.449959,0.529884,0.64192,0.47664,0.805178,0.956046,0.211163,0.321588,0.251749,0.855914,0.496522,0.713246,0.0780928,0.249061,0.597092,0.97196,0.417913,0.247739,0.0502733,0.561634,0.505066,0.460062,0.794641,0.24761,0.546379,0.50209,0.8416,0.578778,0.717941,0.83834,0.168838,0.335159,0.433136,0.603936,0.240241,0.915582,0.906461,0.0580177,0.834636,0.188413,0.337302,0.0460162,0.30872,0.333214,0.0395467,0.681107,0.769305,0.469934,0.634639,0.681851,0.566569,0.275648,0.992592,0.188839,0.716051,0.45073,0.248793,0.738921,0.971326,0.438466,0.902369,0.832709,0.802325,0.411293,0.0833635,0.999778,0.81331,0.513644,0.651473,0.790319,0.570336,0.927616,0.0722236,0.353773,0.0741157,0.654671,0.324383,0.511893,0.830356,0.724189,0.0126756,0.265135,0.661464,0.401442,0.738593,0.296404,0.67073,0.7594,0.903884,0.51448,0.645433,0.862338,0.174051,0.366866,0.326114,0.339794,0.578566,0.300116,0.26487,0.987522,0.240995,0.155347,0.513702,0.676429,0.370239,0.235465,0.112646,0.362291,0.127349,0.781361,0.877245,0.821086,0.11101,0.383178,0.847,0.671937,0.995596,0.768604,0.953365,0.47331,0.530208,0.261869,0.488326,0.0627587,0.172919,0.765783,0.282156,0.00311148,0.0875077,0.453011,0.592582,0.894981,0.595663,0.244407,0.382799,0.782928,0.393179,0.214273,0.718731,0.403648,0.691358,0.750971,0.109279,0.908882,0.486531,0.925048,0.163299,0.595563,0.818335,0.0978178,0.817203,0.648518,0.318995,0.76798,0.987569,0.00349867,0.159582,0.261757,0.178624,0.902469,0.359336,0.629981,0.252743,0.846008,0.268276,0.991988,0.951448,0.243104,0.921741,0.327028,0.162856,0.903259,0.850274,0.659704,0.185483,0.761807,0.115891,0.105898,0.780097,0.30354,0.334207,0.722362,0.47218,0.926782,0.607562,0.816348,0.494954,0.378783,0.316824,0.400238,0.139916,0.207624,0.149245,0.217217,0.820034,0.702691,0.529123,0.256281,0.525083,0.475475,0.879344,0.600793,0.599714,0.198172,0.943376,0.157214,0.552046,0.39583,0.647445,0.513562,0.0404975,0.093657,0.464232,0.192571,0.869921,0.944523,0.105812,0.660435,0.033758,0.293201,0.249678,0.347461,0.747009,0.676568,0.0534371,0.164529,0.345997,0.128551,0.234479,0.901407,0.216721,0.93447,0.412875,0.76104,0.0203323,0.672293,0.141241,0.505554,0.810678,0.295405,0.190479,0.715195,0.133815,0.0789533,0.330187,0.0177994,0.0935797,0.31368,0.956596,0.471065,0.623991,0.540993,0.765398,0.693412,0.102874,0.273195,0.294852,0.786171,0.89026,0.983808,0.804032,0.848072,0.211458,0.978491,0.250988,0.99628,0.157053,0.381246,0.280093,0.390269,0.789533,0.485633,0.00390351,0.085109,0.895371,0.106015,0.0476684,0.299635,0.439728,0.440953,0.00514162,0.50668,0.50794,0.647789,0.56166,0.0810221,0.185101,0.756472,0.452173,0.629264,0.351035,0.790743,0.93968,0.0882041,0.147794,0.298443,0.140552,0.232879,0.725931,0.609234,0.241863,0.00618136,0.287717,0.561614,0.444188,0.939332,0.588117,0.965328,0.000890613,0.296979,0.722301,0.74716,0.0469597,0.847908,0.927797,0.354911,0.832639,0.154423,0.917489,0.856955,0.694579,0.173571,0.103582,0.29541,0.705877,0.738543,0.382827,0.983666,0.435679,0.312217,0.37784,0.964973,0.720467,0.201774,0.150758,0.758049,0.0215586,0.336714,0.211878,0.84059,0.855736,0.283596,0.1637,0.451677,0.407131,0.931402,0.348491,0.291934,0.839331,0.86826,0.986509,0.00301814,0.094693,0.549384,0.443492,0.937735,0.456635,0.39539,0.367961,0.520079,0.468399,0.617518,0.200239,0.468126,0.609617,0.278945,0.761537,0.642278,0.0562255,0.691337,0.851789,0.688063,0.784,0.9825,0.814535,0.185603,0.818658,0.355774,0.0304994,0.462026,0.739149,0.282675,0.576218,0.109788,0.46539,0.915583,0.956691,0.601594,0.1691,0.772111,0.147338,0.329252,0.589619,0.45136,0.964729,0.234159,0.767242,0.256933,0.815104,0.0449989,0.546809,0.939196,0.0276679,0.0528247,0.21009,0.863675,0.726566,0.0199122,0.128249,0.344287,0.448031,0.890946,0.765784,0.273746,0.503554,0.736985,0.0286958,0.0148127,0.552149,0.571513,0.562683,0.769196,0.81584,0.167775,0.694158,0.0375156,0.863662,0.957889,0.0706193,0.765367,0.615038,0.96979,0.0712204,0.363075,0.758186,0.725993,0.250698,0.921741,0.717595,0.545876,0.349281,0.499587,0.72576,0.38091,0.911301,0.0447468,0.371264,0.98329,0.591509,0.794787,0.644921,0.65314,0.201499,0.546028,0.468609,0.0995091,0.40503,0.139904,0.706386,0.910296,0.558894,0.802689,0.89674,0.931861,0.116601,0.708978,0.983356,0.775896,0.475467,0.410793,0.903082,0.0981759,0.569068,0.896501,0.420452,0.248045,0.903825,0.31896,0.16802,0.844882,0.0198945,0.0167056,0.633162,0.717876,0.825112,0.843976,0.996137,0.577238,0.923743,0.736143,0.982823,0.380693,0.731484,0.876838,0.578993,0.802151,0.451655,0.154855,0.812914,0.0469827,0.676405,0.54539,0.579673,0.852605,0.271105,0.55978,0.271772,0.142169,0.846448,0.268437,0.519925,0.126877,0.218173,0.809561,0.799328,0.535048,0.127575,0.721931,0.688195,0.858083,0.655178,0.953457,0.272027,0.450527,0.637371,0.0737225,0.371601,0.0780202,0.161916,0.681296,0.445236,0.356361,0.55961,0.817209,0.00569761,0.0850589,0.955344,0.0215781,0.61613,0.0651422,0.9257,0.931781,0.412157,0.00572258,0.0882123,0.759403,0.420803,0.674051,0.102883,0.260202,0.61879,0.68091,0.226831,0.416616,0.514034,0.51402,0.326893,0.023432,0.823274,0.563729,0.417425,0.157827,0.941379,0.938401,0.219706,0.417964,0.777285,0.371937,0.775997,0.990493,0.841745,0.0204314,0.214546,0.318871,0.718896,0.255111,0.821409,0.991863,0.104918,0.0110741,0.389848,0.396475,0.758285,0.47679,0.00782669,0.587985,0.263238,0.0375515,0.0653575,0.292092,0.172175,0.842356,0.702095,0.579997,0.942714,0.80566,0.80043,0.0899359,0.393155,0.982895,0.999009,0.075504,0.0441747,0.592992,0.119137,0.10782,0.115129,0.445512,0.595628,0.801779,0.541033,0.781889,0.556559,0.442062,0.624524,0.131455,0.117679,0.182009,0.236502,0.829385,0.389347,0.213332,0.140672,0.581323,0.60582,0.500644,0.920226,0.900282,0.271601,0.0151835,0.133215,0.648995,0.623065,0.507948,0.161424,0.904883,0.564464,0.860623,0.260263,0.749513,0.143769,0.266424,0.0134771,0.334405,0.812329,0.713409,0.230628,0.394528,0.47736,0.243228,0.192696,0.469107,0.571824,0.973224,0.937171,0.440654,0.846812,0.625407,0.129392,0.359138,0.654849,0.660443,0.229808,0.946049,0.207289,0.53363,0.0989695,0.219396,0.273677,0.265286,0.202444,0.558378,0.989955,0.714713,0.525715,0.813122,0.676303,0.234428,0.351351,0.797638,0.955213,0.228361,0.895843,0.596243,0.614778,0.782465,0.839749,0.813471,0.160085,0.160881,0.747181,0.0397618,0.675952,0.827146,0.501633,0.800116,0.22814,0.32094,0.377908,0.566027,0.539137,0.150392,0.698378,0.340062,0.236682,0.937601,0.897224,0.345378,0.571138,0.975211,0.981736,0.829561,0.0555118,0.368219,0.938474,0.864845,0.704001,0.0433014,0.504552,0.746408,0.765721,0.993085,0.825724,0.185004,|0.241181,0.540771,0.809996,0.87504,0.493049,0.719809,0.596919,0.501217,0.323564,0.747791,0.385759,0.667913,0.249147,0.985053,0.694087,0.886214,0.866961,0.296468,0.613794,0.0114307,0.16541,0.966889,0.9521,0.31295,0.0867109,0.676566,0.056669,0.287797,0.932706,0.780298,0.727031,0.188106,0.753958,0.426087,0.110074,0.465014,0.226526,0.965015,0.343939,0.645263,0.264714,0.800744,0.684342,0.115272,0.473415,0.0582626,0.909995,0.802763,0.287689,0.205176,0.236115,0.262793,0.197387,0.279088,0.958397,0.0510784,0.976468,0.120178,0.277931,0.768065,0.714742,0.456307,0.139248,0.7378,0.962781,0.776955,0.383868,0.674432,0.023497,0.995274,0.450068,0.983744,0.874283,0.503885,0.940591,0.081706,0.766092,0.233165,0.270963,0.703183,0.445928,0.398134,0.302108,0.325793,0.420802,0.875995,0.382723,0.263525,0.376563,0.450303,0.960876,0.952304,0.888585,0.671909,0.40411,0.917441,0.665067,0.998192,0.533446,0.702759,0.84721,0.315279,0.229579,0.475599,0.598814,0.607941,0.319678,0.748716,0.844098,0.476727,0.824733,0.0684816,0.950947,0.391485,0.424284,0.850798,0.939705,0.823841,0.694752,0.801467,0.275891,0.967414,0.810607,0.798707,0.405046,0.263293,0.442483,0.964991,0.0857747,0.467457,0.851606,0.663113,0.991101,0.870976,0.29077,0.334643,0.184832,0.0431793,0.963697,0.0352743,0.00550228,0.250812,0.174101,0.778509,0.428156,0.253894,0.815943,0.0456398,0.177875,0.27639,0.696998,0.475388,0.891221,0.845661,0.391076,0.178318,0.388469,0.969546,0.0026359,0.594071,0.495074,0.648625,0.407396,0.392211,0.277934,0.459623,0.218139,0.802099,0.377842,0.402003,0.690695,0.598105,0.915649,0.667179,0.978033,0.367923,0.9265,0.507221,0.678863,0.136508,0.512176,0.230244,0.880698,0.274291,0.157216,0.429199,0.235653,0.871312,0.356853,0.890817,0.938112,0.824273,0.719215,0.810661,0.79456,0.249935,0.821056,0.805321,0.706353,0.988296,0.637955,0.758839,0.398518,0.748268,0.980803,0.0524481,0.577221,0.0484357,0.296603,0.211048,0.509479,0.939564,0.471943,0.398344,0.37828,0.102936,0.93499,0.236644,0.149146,0.000754654,0.151927,0.132113,0.297783,0.755848,0.380944,0.639025,0.786733,0.792679,0.104708,0.379366,0.112302,0.525758,0.970641,0.307605,0.363427,0.0708495,0.324722,0.379269,0.730138,0.637664,0.544146,0.541567,0.427363,0.264984,0.805196,0.296815,0.17238,0.673008,0.346934,0.0700542,0.324392,0.0696488,0.819978,0.908703,0.764139,0.166503,0.5224,0.366496,0.331702,0.290682,0.898929,0.926518,0.577549,0.4042,0.0225059,0.951846,0.225676,0.235665,0.390625,0.243107,0.736683,0.626918,0.0882983,0.924405,0.571742,0.870778,0.504061,0.314779,0.939978,0.017514,0.807549,0.286193,0.723733,0.0912953,0.446724,0.396104,0.324052,0.416709,0.132746,0.801774,0.305673,0.815153,0.304632,0.863669,0.792462,0.0957883,0.904098,0.668469,0.461311,0.818313,0.39233,0.944568,0.4262,0.629661,0.676671,0.354768,0.170666,0.945397,0.957718,0.0858312,0.327254,0.623474,0.220998,0.370899,0.554342,0.568202,0.862445,0.758707,0.79405,0.955268,0.78556,0.1552,0.80267,0.481668,0.395334,0.575516,0.859003,0.622159,0.155171,0.798864,0.685206,0.6974,0.707718,0.326984,0.16216,0.708595,0.669552,0.401758,0.668013,0.717902,0.743542,0.275732,0.85802,0.845944,0.55113,0.793873,0.128784,0.702988,0.0772365,0.189085,0.949682,0.0397999,0.234563,0.859174,0.941352,0.12829,0.404216,0.869693,0.512955,0.720827,0.287786,0.173798,0.918914,0.76214,0.784766,0.619869,0.278982,0.822306,0.0491916,0.840034,0.49472,0.517471,0.753599,0.372222,0.421875,0.618378,0.718986,0.110159,0.848505,0.614591,0.128213,0.219035,0.933911,0.976754,0.665911,0.00420505,0.0700399,0.710808,0.154053,0.60396,0.792624,0.920461,0.548801,0.011872,0.86688,0.438578,0.780437,0.60277,0.222497,0.687234,0.0574868,0.493735,0.354218,0.104646,0.553868,0.793628,0.563094,0.893467,0.741529,0.320234,0.045881,0.572505,0.369034,0.143798,0.615381,0.872951,0.461256,0.574842,0.0683767,0.513488,0.991891,0.149092,0.458338,0.8164,0.442024,0.749511,0.354993,0.0728754,0.988158,0.272272,0.930563,0.983833,0.0891424,0.368813,0.540058,0.171507,0.168476,0.0696968,0.718962,0.278926,0.0184075,0.0705216,0.12598,0.63879,0.716335,0.608493,0.0491669,0.47725,0.98433,0.576503,0.225562,0.717969,0.859072,0.45155,0.318042,0.986122,0.840466,0.162737,0.0638572,0.743317,0.22522,0.959041,0.21298,0.398292,0.771301,0.106682,0.553591,0.737659,0.89224,0.78682,0.815607,0.294914,0.957562,0.0589876,0.518182,0.747115,0.990941,0.389253,0.105577,0.888444,0.897139,0.515281,0.936695,0.728093,0.576503,0.0813469,0.902566,0.867586,0.137583,0.97386,0.620579,0.131215,0.771581,0.0931619,0.573259,0.508604,0.779932,0.252387,0.436728,0.387726,0.256007,0.501133,0.672185,0.906132,0.0697106,0.184669,0.161563,0.931783,0.71696,0.800508,0.0764611,0.587145,0.452931,0.155661,0.487213,0.465638,0.332267,0.842053,0.191963,0.525421,0.145023,0.162675,0.466119,0.291055,0.209317,0.921565,0.448744,0.0857533,0.062544,0.335842,0.268564,0.113192,0.236509,0.578517,0.710564,0.192372,0.914391,0.718785,0.877149,0.289281,0.19053,0.352811,0.294733,0.199311,0.433134,0.906483,0.171279,0.488093,0.0812107,0.0505553,0.157223,0.908554,0.367586,0.092267,0.568007,0.771748,0.288776,0.956661,0.12037,0.0654736,0.731691,0.876571,0.234955,0.16732,0.0877023,0.718125,0.020022,0.189697,0.397339,0.834657,0.108981,0.215345,0.304624,0.0166786,0.502555,0.899472,0.189182,0.172741,0.983368,0.343306,0.65866,0.309149,0.185817,0.594844,0.363996,0.416798,0.243538,0.616712,0.634519,0.792234,0.659607,0.00302064,0.266518,0.55069,0.608211,0.535851,0.536556,0.322308,0.821324,0.411621,0.0443475,0.245823,0.347843,0.521918,0.626472,0.791636,0.729719,0.319794,0.835144,0.0507368,0.999983,0.490615,0.473453,0.796571,0.404816,0.396955,0.715747,0.862583,0.833634,0.969354,0.620336,0.695025,0.411868,0.662458,0.0900654,0.679978,0.241077,0.660288,0.548824,0.402042,0.371306,0.670815,0.95449,0.0514734,0.395971,0.193122,0.200283,0.979698,0.319009,0.522814,0.389081,0.92692,0.49757,0.424485,0.257379,0.977652,0.959762,0.363503,0.348824,0.986987,0.964187,0.941892,0.384614,0.491475,0.952919,0.449166,0.552892,0.68872,0.0325575,0.716341,0.80218,0.37936,0.838596,0.076054,0.950035,0.748223,0.228485,0.00757742,0.877785,0.765758,0.238185,0.694934,0.573386,0.293029,0.151929,0.998156,0.407578,0.614374,0.070313,0.510503,0.348033,0.642086,0.545991,0.93407,0.640368,0.619666,0.306248,0.419152,0.202059,0.0894538,0.834726,0.0979895,0.0950572,0.337949,0.770561,0.919257,0.0411884,0.925619,0.621439,0.685114,0.45339,0.144076,0.474913,0.470373,0.138957,0.101754,0.428077,0.333413,0.518954,0.37074,0.493866,0.588304,0.115409,0.212283,0.10937,0.661577,0.0737312,0.682652,0.71521,0.33561,0.924048,0.148473,0.839002,0.738258,0.428304,0.320912,0.101862,0.116471,0.0177419,0.997282,0.0130134,0.845068,0.448938,0.296103,0.315458,0.140305,0.784614,0.672694,0.0707952,0.689142,0.748614,0.362482,0.292933,0.952323,0.374976,0.379132,0.728987,0.565693,0.923544,0.401795,0.560439,0.975159,0.545243,0.0775166,0.297719,0.52153,0.466319,0.0896491,0.556346,0.395955,0.371374,0.503026,0.615865,0.286602,0.129814,0.187977,0.95789,0.349906,0.0596122,0.857408,0.979131,0.347493,0.605908,0.772158,0.467861,0.133022,0.349546,0.214738,0.522342,0.0543275,0.890341,0.791592,0.181348,0.779963,0.585433,0.525969,0.211791,0.233979,0.475965,0.347342,0.484606,0.543176,0.0874594,0.424167,0.916158,0.392404,0.305232,0.778469,0.254364,0.819938,0.864285,0.570753,0.529819,0.110714,0.883672,0.969664,0.31255,0.470952,0.168147,0.331636,0.182951,0.862866,0.976387,0.0681846,0.97539,0.386661,0.763679,0.368862,0.249384,0.247771,0.965558,0.644745,0.839073,0.948133,0.0683561,0.00675309,0.40667,0.881258,0.404225,0.265632,0.619574,0.887611,0.163132,0.524696,0.228095,0.313567,0.33182,0.363321,0.287039,0.356869,0.99989,0.347632,0.322996,0.770347,0.0466664,0.269354,0.588546,0.355111,0.825911,0.736192,0.460056,0.717314,0.739527,0.0427994,0.288917,0.503823,0.98223,0.065998,0.113878,0.627822,0.228689,0.415929,0.0136704,0.633581,0.103893,0.0947002,0.0577277,0.320218,0.119468,0.471045,0.00222075,0.625233,0.393703,0.791448,0.644162,0.582378,0.118467,0.365735,0.417183,0.908274,0.411669,0.692906,0.508958,0.931485,0.108105,0.0355947,0.324391,0.221904,0.00478655,0.464111,0.34018,0.306534,0.598385,0.382314,0.349219,0.326251,0.562023,0.328687,0.412231,0.372566,0.170109,0.681527,0.25704,0.200098,0.640328,0.156616,0.0716918,0.308263,0.55418,0.204794,0.600635,0.396372,0.506338,0.00913352,0.905659,0.822938,0.149482,0.481916,0.173399,0.168861,0.297457,0.082036,0.297177,0.591657,0.810155,0.495575,0.576254,0.036445,0.240198,0.24267,0.189463,0.686921,0.918159,0.406938,0.0631858,0.703378,0.956636,0.383603,0.339478,0.510706,0.166155,0.596313,0.117206,0.640833,0.326707,0.521761,0.124748,0.635859,0.691817,0.259463,0.748845,0.0063684,0.443964,0.113392,0.517836,0.730417,0.795201,0.447397,0.547756,0.870706,0.139308,0.134299,0.877543,0.00717586,0.580698,0.987886,0.134102,0.307648,0.90043,0.365322,0.821156,0.866432,0.806263,0.886852,0.233212,0.592009,0.0180119,0.780255,0.932819,0.830842,0.826859,0.642826,0.694861,0.508035,0.804071,0.913649,0.683154,0.401074,0.0158216,0.534556,0.142408,0.015199,0.420028,0.0485917,0.615782,0.875918,0.0740175,0.134758,0.204781,0.200602,|0.958379,0.986717,0.442229,0.0968108,0.051082,0.46796,0.875144,0.968586,0.334525,0.779456,0.633741,0.299727,0.159276,0.501573,0.281687,0.669068,0.263446,0.0767401,0.351941,0.662826,0.119949,0.478933,0.699553,0.0740359,0.0593692,0.435168,0.0159448,0.509748,0.630436,0.967332,0.432294,0.372562,0.827987,0.433533,0.928319,0.338316,0.882624,0.392493,0.0451385,0.881767,0.154143,0.0575113,0.234635,0.291239,0.0618405,0.572487,0.299516,0.0512785,0.951772,0.394422,0.40886,0.998906,0.632182,0.395909,0.0116051,0.802878,0.786644,0.704632,0.474161,0.39898,0.819435,0.549727,0.436159,0.75213,0.186765,0.952897,0.423041,0.719058,0.602368,0.644053,0.443369,0.138704,0.337561,0.671216,0.714678,0.230936,0.383595,0.368011,0.265923,0.344242,0.157556,0.490895,0.350046,0.856777,0.417886,0.396296,0.888676,0.687495,0.663264,0.404914,0.113258,0.513015,0.961599,0.86843,0.226737,0.591071,0.640379,0.112991,0.215581,0.188193,0.550379,0.418628,0.299131,0.611569,0.275094,0.228175,0.489642,0.727609,0.527758,0.86211,0.506035,0.452106,0.0862497,0.878447,0.446806,0.937933,0.54482,0.209283,0.0988356,0.633938,0.51878,0.802638,0.450106,0.600813,0.223424,0.813126,0.815002,0.596364,0.504198,0.263767,0.781686,0.667962,0.0698659,0.830303,0.421922,0.983355,0.786561,0.56229,0.567388,0.2167,0.476029,0.502019,0.473886,0.84216,0.00702119,0.535452,0.1388,0.553405,0.281604,0.323212,0.145938,0.489273,0.696612,0.872865,0.892523,0.900995,0.226585,0.674215,0.910713,0.664788,0.875526,0.22847,0.98613,0.991805,0.935537,0.616821,0.486523,0.594417,0.669933,0.357656,0.222662,0.953051,0.440049,0.261492,0.315247,0.439989,0.316831,0.5572,0.538344,0.197812,0.704718,0.203874,0.570948,0.565181,0.0807069,0.676627,0.111399,0.178775,0.690547,0.780695,0.965694,0.215623,0.462172,0.71886,0.490007,0.548019,0.107837,0.732026,0.419347,0.533808,0.65602,0.181989,0.728251,0.413871,0.968939,0.882441,0.275677,0.783495,0.227245,0.450027,0.82281,0.708733,0.282712,0.26456,0.273457,0.155091,0.640719,0.214554,0.795541,0.50579,0.582547,0.585714,0.242642,0.651033,0.684379,0.397684,0.623857,0.589571,0.95354,0.00305694,0.218125,0.587808,0.442104,0.209583,0.723751,0.583859,0.319195,0.864996,0.192864,0.218656,0.0802161,0.109623,0.439985,0.809375,0.143238,0.200584,0.581606,0.688351,0.382769,0.0225525,0.72542,0.100407,0.313593,0.843068,0.670882,0.742399,0.156518,0.738186,0.493834,0.138981,0.15348,0.0829767,0.460318,0.0450507,0.138249,0.7216,0.762117,0.988081,0.521436,0.117443,0.555361,0.463025,0.401566,0.144585,0.437626,0.0339971,0.237624,0.548205,0.111795,0.586972,0.141233,0.376009,0.468756,0.7458,0.198966,0.808122,0.469916,0.0468788,0.0616601,0.0664435,0.810218,0.859994,0.345999,0.717469,0.560641,0.15758,0.393765,0.144393,0.696472,0.870271,0.955811,0.876838,0.267068,0.438981,0.412396,0.228889,0.403626,0.52608,0.395638,0.579216,0.697345,0.132844,0.826882,0.0158095,0.262504,0.58325,0.676727,0.284928,0.0308446,0.978704,0.296817,0.0128362,0.935922,0.160479,0.122319,0.906933,0.979978,0.35352,0.322613,0.443138,0.840181,0.0720793,0.801256,0.850091,0.163371,0.433573,0.463123,0.996161,0.479144,0.446301,0.362532,0.213165,0.194955,0.823244,0.936368,0.51677,0.323017,0.524284,0.272698,0.920624,0.0810974,0.606955,0.0291216,0.706825,0.365138,0.0899286,0.544487,0.559001,0.262609,0.662102,0.177226,0.736582,0.969346,0.400643,0.84446,0.172293,0.917935,0.953281,0.248708,0.85438,0.16265,0.978181,0.732006,0.895659,0.394705,0.204387,0.0193831,0.714567,0.887523,0.855503,0.709143,0.940468,0.129037,0.982255,0.0581266,0.9591,0.838882,0.545924,0.36701,0.421615,0.368732,0.0963159,0.0306287,0.951537,0.982649,0.977137,0.241747,0.263441,0.769852,0.777,0.228115,0.0823417,0.680225,0.568172,0.370441,0.0879295,0.896526,0.166835,0.433297,0.893411,0.356451,0.334832,0.619152,0.793701,0.726457,0.815078,0.977649,0.937236,0.977798,0.138686,0.64209,0.292583,0.0729686,0.119183,0.677426,0.434754,0.304879,0.328861,0.846714,0.437487,0.094683,0.673819,0.473278,0.619911,0.0396698,0.025224,0.822124,0.557897,0.934015,0.948579,0.0412319,0.703337,0.377449,0.917059,0.0353223,0.372643,0.673641,0.318571,0.474809,0.594637,0.543475,0.0342208,0.716854,0.412037,0.302024,0.397961,0.460514,0.366681,0.0302801,0.715668,0.637545,0.211807,0.186623,0.115818,0.56153,0.490242,0.413727,0.943194,0.935247,0.435577,0.217494,0.490351,0.237429,0.156481,0.874155,0.533674,0.329546,0.864163,0.427583,0.11495,0.866981,0.878943,0.930904,0.317515,0.525932,0.569897,0.901724,0.640047,0.777349,0.0225407,0.988323,0.421619,0.601965,0.638886,0.734775,0.727727,0.0517065,0.397756,0.427882,0.230609,0.116985,0.0236494,0.904253,0.279839,0.298544,0.867593,0.705683,0.138684,0.409478,0.69025,0.505857,0.0333612,0.531236,0.89971,0.98714,0.0109491,0.458051,0.0290223,0.458928,0.882465,0.667958,0.714639,0.277712,0.0359886,0.862049,0.366818,0.117927,0.722898,0.636075,0.702014,0.917329,0.321872,0.291519,0.800451,0.89375,0.780905,0.988681,0.72136,0.517212,0.500027,0.938988,0.514659,0.543458,0.231198,0.225427,0.62781,0.307373,0.691195,0.0339162,0.736792,0.412996,0.688485,0.130715,0.17174,0.31227,0.259797,0.127694,0.892226,0.195362,0.550554,0.663815,0.16085,0.989558,0.942735,0.872036,0.444706,0.421584,0.698955,0.509387,0.263912,0.336326,0.469754,0.370685,0.203326,0.753765,0.550242,0.524283,0.700496,0.0562969,0.920603,0.00961554,0.273975,0.24856,0.278652,0.516405,0.267041,0.0349556,0.453981,0.315916,0.649161,0.653634,0.644183,0.913852,0.627728,0.627894,0.303677,0.29206,0.69471,0.0804195,0.392741,0.711539,0.839938,0.478797,0.791246,0.197385,0.552292,0.263362,0.934751,0.301277,0.93982,0.704506,0.444138,0.866008,0.398974,0.714051,0.734413,0.261789,0.0687685,0.925901,0.283156,0.221317,0.657405,0.940173,0.635364,0.930529,0.433118,0.794065,0.398556,0.208526,0.0145344,0.803738,0.495911,0.760804,0.839338,0.610369,0.927933,0.610706,0.491195,0.206813,0.243167,0.534464,0.206821,0.520946,0.147825,0.0854792,0.462091,0.883682,0.661091,0.61354,0.620529,0.838315,0.0378213,0.475117,0.733989,0.929896,0.251838,0.716445,0.596099,0.926796,0.759173,0.641572,0.4193,0.237462,0.576507,0.099668,0.076806,0.207702,0.516642,0.206061,0.0307326,0.576559,0.801242,0.723496,0.992523,0.431937,0.490047,0.881761,0.85852,0.663305,0.408525,0.806012,0.282719,0.80529,0.248146,0.403154,0.0273088,0.13192,0.539251,0.384169,0.734823,0.757763,0.771427,0.199368,0.997364,0.213832,0.215911,0.80616,0.754096,0.683329,0.619987,0.885763,0.111646,0.181843,0.944921,0.863489,0.0436999,0.921193,0.14855,0.72761,0.262718,0.00641954,0.194588,0.834645,0.461373,0.846003,0.161292,0.809438,0.69242,0.938425,0.979532,0.888324,0.908967,0.0195006,0.802342,0.721611,0.678581,0.238472,0.456209,0.648038,0.928182,0.223183,0.306829,0.516747,0.375775,0.857525,0.151862,0.663093,0.420994,0.353031,0.0407166,0.371823,0.0848549,0.622107,0.780123,0.0873923,0.436289,0.799282,0.0696121,0.132847,0.415779,0.974785,0.223252,0.654107,0.842254,0.399571,0.678631,0.257112,0.626734,0.91518,0.83998,0.427926,0.183307,0.0170396,0.232335,0.968442,0.618422,0.749218,0.302548,0.859818,0.450674,0.0266329,0.735451,0.077651,0.111838,0.420784,0.325818,0.895992,0.984131,0.180584,0.0381547,0.359878,0.109472,0.282614,0.544496,0.179088,0.524818,0.431056,0.549985,0.0863682,0.5908,0.569524,0.779556,0.791005,0.335259,0.927242,0.022014,0.0337844,0.793551,0.311464,0.509614,0.866367,0.388155,0.173832,0.260587,0.804486,0.582941,0.661575,0.837905,0.972336,0.849854,0.6002,0.554868,0.21388,0.29223,0.51452,0.264704,0.319689,0.679513,0.0452219,0.967408,0.807408,0.907725,0.380573,0.352889,0.629164,0.669872,0.716582,0.177393,0.238836,0.478732,0.501927,0.285775,0.642624,0.523542,0.740617,0.541306,0.612117,0.311776,0.855034,0.387804,0.0412557,0.900569,0.425555,0.958833,0.580327,0.41456,0.953393,0.577153,0.42014,0.630251,0.874106,0.0990548,0.469335,0.125613,0.415226,0.772774,0.450238,0.911518,0.329148,0.568293,0.176749,0.130441,0.34458,0.597029,0.384557,0.996052,0.434988,0.810497,0.214557,0.95856,0.349032,0.346334,0.464583,0.952729,0.914056,0.397834,0.248624,0.244031,0.0207051,0.650635,0.237663,0.334009,0.416237,0.233958,0.1846,0.461946,0.546098,0.446913,0.531734,0.882884,0.396568,0.556101,0.15163,0.735115,0.450485,0.415997,0.33293,0.386716,0.133257,0.024733,0.511126,0.17284,0.993104,0.440323,0.900652,0.440232,0.943926,0.983276,0.823398,0.0852351,0.433007,0.302403,0.681327,0.700492,0.309673,0.167928,0.918047,0.687223,0.98927,0.942865,0.268257,0.768847,0.412886,0.142194,0.462395,0.901444,0.304585,0.473606,0.261425,0.251604,0.0521822,0.147861,0.970775,0.749033,0.625845,0.467681,0.982934,0.30655,0.730081,0.774763,0.0078907,0.538553,0.143994,0.645995,0.990096,0.419277,0.583879,0.391321,0.868137,0.943391,0.926058,0.601428,0.847301,0.428586,0.745417,0.971226,0.279173,0.187838,0.126197,0.59139,0.838845,0.808445,0.933586,0.911332,0.0674765,0.524073,0.714238,0.721636,0.671298,0.252923,0.778216,0.974535,0.468534,0.2311,0.767976,0.309672,0.565768,0.0839477,0.718928,0.252529,0.287653,0.880883,0.800631,0.436485,0.444547,0.766005,0.892054,0.742278,0.959538,0.217606,0.228466,0.625078,0.087377,0.960837,0.157841,0.249259,0.242582,0.0712996,0.740006,0.680901,|0.602758,0.525864,0.799252,0.294155,0.394935,0.608777,0.298423,0.316573,0.0509021,0.751466,0.493275,0.731805,0.523019,0.220631,0.179183,0.175728,0.489333,0.0787396,0.628207,0.144641,0.224686,0.207066,0.774767,0.863483,0.514039,0.171693,0.866838,0.396969,0.551842,0.972556,0.907923,0.102612,0.13727,0.443275,0.431885,0.215421,0.34157,0.983138,0.155499,0.548596,0.897942,0.649415,0.445096,0.579518,0.487635,0.354208,0.892523,0.170547,0.281068,0.388294,0.39492,0.334898,0.22015,0.40189,0.348451,0.783758,0.805009,0.269531,0.0364693,0.0767167,0.921858,0.116728,0.788231,0.619463,0.399826,0.00856346,0.102514,0.543771,0.250594,0.585703,0.569971,0.803321,0.0978369,0.384964,0.874569,0.676717,0.0783447,0.918305,0.305829,0.53974,0.785381,0.111214,0.34086,0.670085,0.72161,0.945768,0.7351,0.428957,0.657254,0.931367,0.327367,0.803398,0.200724,0.47734,0.345298,0.624338,0.665337,0.141452,0.580608,0.269835,0.259416,0.177062,0.82004,0.175896,0.243294,0.778893,0.890702,0.0638685,0.320361,0.307995,0.935391,0.827731,0.370384,0.334506,0.4612,0.0304688,0.640256,0.816537,0.120725,0.649583,0.695775,0.850834,0.578417,0.802136,0.628849,0.252992,0.54337,0.0460152,0.0122679,0.0537926,0.906145,0.774991,0.677418,0.965011,0.662659,0.232708,0.363654,0.415929,0.631091,0.0662189,0.44052,0.225324,0.613585,0.200251,0.29747,0.92498,0.585272,0.464916,0.156659,0.252658,0.0112932,0.294673,0.0844128,0.0305728,0.784877,0.215712,0.989412,0.839742,0.840492,0.704856,0.623046,0.38317,0.118951,0.791713,0.443943,0.934358,0.18794,0.362238,0.939443,0.492508,0.406018,0.161861,0.743189,0.391256,0.908435,0.854179,0.862875,0.830789,0.356575,0.423576,0.205263,0.00787538,0.862399,0.153817,0.928891,0.299982,0.0811941,0.87317,0.129231,0.483239,0.0439435,0.592322,0.459592,0.687585,0.258286,0.261614,0.298052,0.00869709,0.4111,0.347894,0.843967,0.559887,0.835518,0.11235,0.856958,0.927923,0.411063,0.0543435,0.242742,0.726231,0.20579,0.389789,0.38115,0.954943,0.812844,0.820968,0.165778,0.329249,0.996729,0.287085,0.654266,0.281194,0.772983,0.594294,0.562395,0.139172,0.375055,0.193883,0.268505,0.706376,0.865458,0.955989,0.850843,0.180314,0.0905576,0.686814,0.362218,0.321755,0.348024,0.840517,0.386898,0.893162,0.838016,0.633845,0.511685,0.0886999,0.676485,0.443652,0.579106,0.402233,0.348361,0.766715,0.408924,0.485254,0.317052,0.629388,0.320427,0.513415,0.803275,0.191938,0.321328,0.888036,0.485238,0.0374452,0.638759,0.677058,0.309654,0.61578,0.995872,0.0818368,0.568151,0.175821,0.660986,0.97885,0.169973,0.437113,0.94829,0.464686,0.365532,0.401849,0.137559,0.487136,0.552085,0.946135,0.335852,0.646457,0.518586,0.189492,0.137518,0.455693,0.401152,0.461427,0.117798,0.154394,0.871595,0.476555,0.390635,0.961378,0.001939,0.257215,0.716721,0.48109,0.0674996,0.0974327,0.973323,0.414941,0.340644,0.324537,0.618594,0.202632,0.502965,0.925859,0.803158,0.143096,0.258833,0.801869,0.165644,0.525515,0.593651,0.1985,0.6897,0.299686,0.650482,0.315692,0.708013,0.93845,0.301239,0.471674,0.57049,0.528892,0.158378,0.994183,0.941445,0.11249,0.0176561,0.54681,0.489585,0.0484321,0.486094,0.957861,0.569039,0.781976,0.970536,0.382564,0.544536,0.789455,0.570863,0.134438,0.800545,0.131789,0.911384,0.858704,0.177257,0.210318,0.863166,0.270102,0.733714,0.651894,0.0596189,0.584811,0.426392,0.946548,0.403183,0.116418,0.755326,0.959497,0.0477704,0.68441,0.966809,0.448547,0.0500651,0.00903469,0.598436,0.360044,0.631115,0.797684,0.820439,0.869812,0.863197,0.955943,0.4384,0.344571,0.524615,0.607447,0.306462,0.953945,0.379464,0.339945,0.350155,0.217567,0.0838661,0.716026,0.513668,0.219647,0.957455,0.974299,0.591223,0.0176632,0.109216,0.147938,0.773104,0.443915,0.369946,0.562742,0.717311,0.981751,0.973883,0.106883,0.121225,0.214703,0.140971,0.520803,0.0600985,0.16576,0.241242,0.00334114,0.619323,0.912526,0.185941,0.0966315,0.784902,0.446006,0.161841,0.2426,0.751248,0.501907,0.185341,0.676444,0.956937,0.426446,0.114743,0.617014,0.434469,0.326477,0.705606,0.990133,0.701059,0.939598,0.853464,0.388361,0.396587,0.124752,0.00060451,0.76992,0.836463,0.642643,0.129059,0.325175,0.909805,0.606877,0.516212,0.980422,0.208922,0.314098,0.690528,0.44271,0.326259,0.141284,0.616347,0.684123,0.779827,0.274931,0.864649,0.500805,0.541308,0.0532548,0.620909,0.2002,0.567069,0.655487,0.0666342,0.720577,0.559014,0.256929,0.13693,0.868021,0.717785,0.424473,0.235039,0.745803,0.276426,0.833097,0.669393,0.176088,0.0856349,0.238763,0.863982,0.445497,0.479242,0.376853,0.3943,0.255718,0.201936,0.058025,0.352633,0.419961,0.177295,0.880591,0.572495,0.41105,0.556977,0.300212,0.329608,0.884099,0.523904,0.424867,0.844631,0.000954092,0.479269,0.521894,0.582289,0.77745,0.369354,0.0674689,0.567693,0.325657,0.303587,0.8314,0.195368,0.956312,0.399737,0.203083,0.972341,0.508071,0.548076,0.494384,0.289761,0.584305,0.102587,0.327275,0.164708,0.554424,0.120306,0.75439,0.983632,0.0382228,0.924952,0.234003,0.346383,0.399148,0.889322,0.525578,0.32914,0.0279934,0.161458,0.43771,0.627776,0.855665,0.87693,0.761147,0.989876,0.66379,0.626916,0.367105,0.542239,0.67296,0.0874889,0.269457,0.188721,0.0449166,0.0156083,0.0829955,0.84102,0.165252,0.114552,0.878992,0.211281,0.591298,0.841191,0.143787,0.59087,0.407801,0.241677,0.0232512,0.456982,0.733686,0.365462,0.217045,0.86365,0.737161,0.762232,0.220807,0.779796,0.71475,0.661411,0.0640348,0.867016,0.83083,0.205143,0.989656,0.782055,0.418478,0.821486,0.1181,0.682897,0.991683,0.172637,0.214252,0.214118,0.798335,0.642267,0.337353,0.0567588,0.736326,0.213198,0.724939,0.141867,0.418309,0.744453,0.526539,0.432017,0.458197,0.342937,0.0332974,0.484788,0.825086,0.633512,0.489926,0.518925,0.99304,0.0110688,0.139188,0.319861,0.565428,0.573526,0.755452,0.76032,0.58743,0.750713,0.779213,0.937873,0.681121,0.48817,0.587025,0.861083,0.294606,0.621422,0.358528,0.0968135,0.00634718,0.805142,0.0864277,0.90275,0.558784,0.971668,0.429016,0.75186,0.619622,0.508143,0.780825,0.996483,0.705274,0.0324213,0.697828,0.682063,0.536868,0.87936,0.913363,0.0734571,0.764755,0.25309,0.692448,0.0325053,0.506506,0.406362,0.170401,0.719409,0.298168,0.289002,0.246888,0.847773,0.516953,0.293136,0.97561,0.949029,0.0691195,0.427027,0.916914,0.164264,0.298661,0.948404,0.508002,0.656728,0.774834,0.0403338,0.45216,0.539808,0.840484,0.0490586,0.73923,0.149641,0.932738,0.10082,0.620385,0.633887,0.419434,0.915239,0.396616,0.288004,0.39426,0.774963,0.454684,0.331505,0.46672,0.0640913,0.842048,0.760452,0.428404,0.92789,0.25662,0.209377,0.859819,0.383121,0.911142,0.18574,0.498519,0.569096,0.191585,0.537968,0.350903,0.447895,0.931284,0.403669,0.403501,0.893451,0.535376,0.586564,0.465494,0.517486,0.413902,0.114839,0.847395,0.154724,0.234984,0.894199,0.845672,0.421043,0.850672,0.792155,0.958243,0.962958,0.206975,0.849452,0.989892,0.404353,0.235558,0.904631,0.256469,0.678363,0.351839,0.342625,0.223877,0.649249,0.63198,0.407924,0.0486292,0.782326,0.868952,0.714472,0.394924,0.0570745,0.496125,0.594043,0.396233,0.912273,0.0793161,0.678916,0.949794,0.491201,0.246054,0.259555,0.347994,0.477903,0.672736,0.519002,0.284356,0.56014,0.326766,0.131875,0.205244,0.810362,0.778349,0.769042,0.638055,0.219732,0.854885,0.885644,0.0507154,0.124227,0.903991,0.0814239,0.269249,0.94549,0.164022,0.357467,0.242012,0.582112,0.287612,0.163395,0.504906,0.265381,0.205657,0.730138,0.639729,0.125908,0.860068,0.38743,0.61713,0.917273,0.844557,0.497202,0.0769038,0.190956,0.34575,0.203793,0.765586,0.454332,0.0200982,0.864782,0.960829,0.810084,0.760044,0.946542,0.204151,0.736438,0.229029,0.363248,0.213756,0.546148,0.895589,0.444099,0.211741,0.0897235,0.935151,0.598429,0.176638,0.202813,0.0174655,0.277922,0.46217,0.936092,0.170637,0.422875,0.539227,0.622763,0.478814,0.300923,0.598117,0.372452,0.557922,0.165629,0.824615,0.740981,0.349833,0.209089,0.676344,0.994269,0.391251,0.411853,0.288481,0.750877,0.1008,0.4708,0.115205,0.624294,0.459208,0.810446,0.675079,0.732609,0.396515,0.835424,0.975532,0.544375,0.927787,0.73792,0.470572,0.439908,0.371226,0.813799,0.27468,0.210134,0.351428,0.819997,0.521618,0.0543547,0.745516,0.834901,0.296741,0.265593,0.907129,0.980921,0.194021,0.604726,0.825728,0.812823,0.978182,0.227963,0.678523,0.321852,0.719088,0.861591,0.198511,0.00322634,0.666799,0.590076,0.848158,0.82893,0.754504,0.802825,0.141131,0.481291,0.0985056,0.671035,0.197116,0.12005,0.325791,0.525191,0.485131,0.076095,0.909271,0.765411,0.685306,0.961612,0.438253,0.0766214,0.0637805,0.448679,0.358704,0.590059,0.306324,0.733634,0.703572,0.424927,0.841486,0.545985,0.648697,0.84992,0.787536,0.551737,0.235952,0.290536,0.759325,0.947505,0.698692,0.245994,0.25925,0.965834,0.866043,0.456502,0.246093,0.751504,0.286752,0.986014,0.586428,0.413658,0.0426173,0.161586,0.849842,0.632242,0.922491,0.90246,0.315052,0.0780816,0.0798451,0.979535,0.0186221,0.873704,0.722064,0.154047,0.216293,0.862144,0.653907,0.810158,0.819041,0.0896221,0.979307,0.698275,0.754284,0.845687,0.449653,0.750626,0.0155239,0.493477,0.403629,0.759176,0.279502,0.653321,0.658,0.481092,0.142421,0.492094,0.560528,0.510809,0.831941,0.692214,0.0791383,0.587351,0.830071,0.392394,0.930305,|0.719366,0.504283,0.681222,0.729275,0.172487,0.506879,0.456972,0.443577,0.771418,0.470748,0.898762,0.146702,0.148856,0.675428,0.575915,0.589693,0.752482,0.338025,0.533829,0.789048,0.216675,0.60801,0.751232,0.68269,0.0897694,0.403641,0.107859,0.0792475,0.782466,0.16232,0.894133,0.656315,0.230312,0.275053,0.0277013,0.692825,0.211868,0.561648,0.98641,0.402859,0.353415,0.458563,0.100196,0.973832,0.811683,0.552917,0.807397,0.970212,0.808758,0.0067907,0.0531133,0.540253,0.131234,0.215751,0.0255812,0.362201,0.30512,0.998286,0.088294,0.828254,0.365686,0.11903,0.985794,0.169138,0.288624,0.364305,0.918143,0.873063,0.0432331,0.380173,0.75144,0.965573,0.362902,0.696321,0.0582539,0.0442609,0.396421,0.957254,0.0607436,0.486387,0.793556,0.764778,0.133166,0.561181,0.719018,0.18505,0.110959,0.758598,0.578639,0.487129,0.253441,0.638331,0.795514,0.608885,0.356165,0.45633,0.338506,0.770224,0.625124,0.921998,0.126632,0.55811,0.651798,0.492102,0.424347,0.656436,0.270407,0.745371,0.662011,0.726795,0.599574,0.280242,0.530954,0.945633,0.617836,0.792465,0.537314,0.0838092,0.698699,0.280736,0.064683,0.447477,0.4291,0.161113,0.213832,0.849638,0.269563,0.375237,0.770118,0.969556,0.820292,0.119084,0.611354,0.0461962,0.7785,0.162305,0.374882,0.774087,0.485877,0.216133,0.926074,0.0867491,0.717829,0.862232,0.732906,0.826276,0.709956,0.453672,0.177736,0.252319,0.477265,0.388606,0.58123,0.836814,0.250858,0.112706,0.58962,0.569715,0.447479,0.15381,0.961761,0.573973,0.885689,0.554469,0.0774371,0.387969,0.807058,0.723128,0.073195,0.595917,0.92802,0.771033,0.528655,0.30145,0.156522,0.278119,0.537635,0.0964358,0.664828,0.858088,0.790677,0.603402,0.435924,0.157857,0.370318,0.456062,0.020245,0.460113,0.909563,0.412705,0.701829,0.429581,0.837395,0.704509,0.499724,0.0377206,0.719144,0.0232157,0.13617,0.200746,0.575466,0.958477,0.97567,0.690287,0.228383,0.988367,0.471301,0.496955,0.095226,0.273728,0.29231,0.602562,0.997038,0.818453,0.955875,0.668004,0.124984,0.481621,0.0820686,0.468675,0.0972623,0.899441,0.0676026,0.360017,0.186384,0.81543,0.305808,0.971129,0.0876532,0.0171564,0.886405,0.0400808,0.240652,0.756867,0.651881,0.683082,0.487951,0.621764,0.70925,0.0710928,0.845472,0.51331,0.259861,0.568697,0.757625,0.461184,0.612567,0.761283,0.0507542,0.405209,0.517818,0.17505,0.963521,0.062272,0.178381,0.400422,0.168849,0.713212,0.243637,0.818127,0.764997,0.463669,0.122546,0.954378,0.721851,0.664672,0.212291,0.369911,0.0960472,0.340611,0.079946,0.680504,0.0796303,0.508096,0.365824,0.489543,0.592299,0.665348,0.523783,0.502446,0.184797,0.225116,0.909638,0.296042,0.544421,0.00728565,0.780827,0.995332,0.290424,0.457272,0.571783,0.296071,0.692097,0.549494,0.216731,0.0118194,0.226255,0.579241,0.0374471,0.908249,0.0217295,0.759615,0.228236,0.0159015,0.0824032,0.704501,0.780361,0.129578,0.430577,0.324927,0.867712,0.82169,0.257676,0.712078,0.881092,0.267752,0.930006,0.551125,0.650747,0.255428,0.503004,0.00696266,0.475352,0.300592,0.289874,0.176468,0.291203,0.313001,0.403801,0.637323,0.448042,0.52113,0.0674468,0.262245,0.634578,0.256591,0.314215,0.706413,0.0783513,0.420196,0.908119,0.297021,0.885291,0.107843,0.354714,0.0530345,0.431555,0.859316,0.566746,0.0389696,0.421106,0.443425,0.0802767,0.750166,0.329277,0.355469,0.239713,0.263368,0.0409635,0.208753,0.497595,0.595295,0.384091,0.698921,0.672186,0.190273,0.140957,0.293468,0.984057,0.183466,0.209343,0.543239,0.287067,0.396204,0.584161,0.21352,0.673561,0.476063,0.380764,0.116955,0.81552,0.434725,0.376843,0.429625,0.571817,0.628153,0.70135,0.997491,0.201531,0.837778,0.440039,0.404628,0.372468,0.101243,0.742786,0.595384,0.572366,0.282574,0.158376,0.104836,0.023765,0.429354,0.0472271,0.230633,0.481487,0.974446,0.375335,0.859172,0.262954,0.0681254,0.0837376,0.214714,0.328105,0.659606,0.529656,0.364647,0.029383,0.535316,0.246387,0.480126,0.637431,0.701385,0.125093,0.277465,0.940849,0.363943,0.314381,0.46121,0.458306,0.542473,0.244051,0.364109,0.962912,0.337919,0.268149,0.262652,0.532931,0.0684702,0.446055,0.576064,0.748082,0.130343,0.608858,0.261225,0.162558,0.315232,0.911514,0.55827,0.356654,0.631036,0.410854,0.179105,0.000166237,0.964485,0.0520946,0.710705,0.743854,0.191312,0.777494,0.651661,0.579598,0.979048,0.198442,0.871244,0.358847,0.459615,0.345385,0.892463,0.780252,0.372554,0.963071,0.0688859,0.889358,0.412987,0.639051,0.963644,0.389092,0.0951276,0.301648,0.0225751,0.000261128,0.0532527,0.154996,0.455928,0.714875,0.30249,0.657591,0.308906,0.135762,0.447037,0.392797,0.939896,0.907119,0.976574,0.841007,0.835603,0.161258,0.891129,0.714382,0.818841,0.461635,0.0467947,0.916287,0.665027,0.844511,0.0302043,0.0851874,0.258474,0.758097,0.057028,0.228673,0.619749,0.346159,0.11158,0.890617,0.135555,0.712999,0.069291,0.908139,0.147984,0.286639,0.661445,0.247834,0.0711172,0.370374,0.685092,0.847914,0.266506,0.617176,0.668566,0.210204,0.187329,0.535735,0.520945,0.328899,0.989759,0.423714,0.392942,0.969762,0.0118256,0.137874,0.329622,0.0463779,0.308275,0.249219,0.0973362,0.62004,0.244534,0.69155,0.373126,0.889527,0.397038,0.252555,0.735436,0.92803,0.987625,0.992401,0.704102,0.671801,0.518487,0.514213,0.0115621,0.827827,0.885185,0.502395,0.990408,0.42961,0.653176,0.706413,0.58801,0.686613,0.951026,0.537841,0.508976,0.047262,0.867152,0.706843,0.0283015,0.171265,0.947202,0.642964,0.741292,0.998088,0.270172,0.218161,0.042224,0.490499,0.799113,0.76867,0.348257,0.343891,0.272927,0.936147,0.207912,0.226596,0.921079,0.783509,0.573841,0.67888,0.673274,0.502137,0.251735,0.865515,0.603638,0.884564,0.244235,0.0935915,0.944502,0.586745,0.934417,0.61689,0.869742,0.426401,0.922085,0.15017,0.1001,0.295224,0.256336,0.157484,0.20697,0.830045,0.333932,0.948734,0.076721,0.816996,0.592232,0.987532,0.0978742,0.597552,0.613193,0.138361,0.690054,0.482958,0.442858,0.396723,0.315368,0.126688,0.861462,0.641749,0.114736,0.378045,0.1787,0.0483733,0.202034,0.439708,0.148562,0.279795,0.416557,0.156068,0.317741,0.0396479,0.751839,0.66766,0.895016,0.276167,0.939093,0.766306,0.672299,0.951125,0.188022,0.550034,0.892768,0.537509,0.798408,0.543537,0.440345,0.703777,0.437787,0.609186,0.415863,0.515389,0.236196,0.821881,0.571423,0.276478,0.20963,0.362004,0.417192,0.405057,0.768893,0.338429,0.366914,0.508272,0.269177,0.775783,0.717523,0.117736,0.0879804,0.843262,0.229572,0.971535,0.395574,0.225068,0.849013,0.680037,0.0192451,0.360946,0.749199,0.341144,0.0416851,0.597839,0.937215,0.994318,0.667518,0.392542,0.0616599,0.621181,0.865294,0.826909,0.136742,0.487875,0.405536,0.737955,0.795874,0.639414,0.0987003,0.407406,0.92071,0.158139,0.0435636,0.323067,0.979427,0.0341202,0.786698,0.0614603,0.123029,0.43692,0.873771,0.0963514,0.295546,0.045917,0.247737,0.688307,0.389702,0.979858,0.757079,0.91407,0.127477,0.848521,0.228462,0.432302,0.854176,0.0485815,0.592767,0.479508,0.793308,0.226217,0.433523,0.902105,0.490901,0.313407,0.903364,0.526566,0.34736,0.801604,0.6387,0.167847,0.242809,0.277775,0.631583,0.259477,0.598237,0.207384,0.38232,0.378022,0.973955,0.112501,0.112396,0.895454,0.396538,0.29745,0.767866,0.788916,0.634212,0.0795307,0.80597,0.873184,0.829839,0.612283,0.169312,0.588395,0.245094,0.70679,0.876905,0.563667,0.651193,0.0269592,0.353107,0.670891,0.787608,0.0792054,0.225432,0.0604495,0.356491,0.219178,0.454328,0.186893,0.0972645,0.310727,0.330353,0.321413,0.178689,0.292106,0.299386,0.679678,0.326191,0.00305873,0.505663,0.931932,0.895784,0.215382,0.55019,0.181303,0.685266,0.597274,0.544564,0.635977,0.658078,0.721266,0.626901,0.332171,0.151376,0.874047,0.132659,0.705491,0.344168,0.370564,0.491322,0.927209,0.0574176,0.0468978,0.611561,0.235851,0.599229,0.287238,0.225994,0.0102309,0.132715,0.658636,0.563623,0.5376,0.792641,0.458047,0.682001,0.541999,0.190578,0.391035,0.00525528,0.637895,0.202623,0.787469,0.792455,0.682288,0.993153,0.378,0.0118852,0.63596,0.760471,0.518452,0.313241,0.124885,0.361894,0.609788,0.351708,0.953409,0.116262,0.60422,0.582755,0.621405,0.518375,0.214457,0.275695,0.588784,0.181713,0.414212,0.0580093,0.970794,0.723306,0.104057,0.876863,0.557137,0.523479,0.0998675,0.652462,0.783541,0.133894,0.621451,0.412284,0.475605,0.31054,0.798244,0.143797,0.82804,0.867376,0.373994,0.578556,0.855723,0.0692816,0.72567,0.132941,0.310103,0.586507,0.870252,0.321308,0.342627,0.191555,0.0303735,0.381636,0.428658,0.0913504,0.549787,0.490657,0.548528,0.0503502,0.25398,0.0437767,0.104276,0.125355,0.996691,0.496443,0.257304,0.839785,0.291132,0.962248,0.0350247,0.256541,0.532992,0.295738,0.251444,0.206252,0.631611,0.897697,0.144459,0.48666,0.127568,0.824796,0.491593,0.282849,0.521348,0.0924456,0.182373,0.0109938,0.5558,0.756848,0.79508,0.576793,0.38126,0.689122,0.0101991,0.601417,0.938946,0.990957,0.063112,0.506907,0.00320268,0.156254,0.646287,0.00042057,0.694678,0.034433,0.727698,0.0542241,0.829684,0.525893,0.00760937,0.958133,0.643837,0.333601,0.477826,0.89198,0.921145,0.803157,0.229657,0.60339,0.963884,0.813858,0.510211,0.163825,0.916979,0.948258,0.305773,0.366215,0.903591,0.479402,0.688022,0.0087713,0.524969,0.44777,0.74601,0.642789,0.327479,0.464346,0.254066,0.601541,0.881973,0.707263,0.519191,0.932575,0.0600604,0.185135,|0.35675,0.582428,0.0408681,0.250638,0.801729,0.465753,0.83883,0.320291,0.5269,0.103156,0.703206,0.377152,0.727472,0.383288,0.836798,0.895684,0.660429,0.596321,0.391456,0.0686721,0.499893,0.0444705,0.932744,0.514714,0.255747,0.306397,0.730536,0.0942894,0.207766,0.370394,0.0572522,0.0600249,0.424446,0.781479,0.750648,0.275818,0.717361,0.39058,0.410261,0.861033,0.296138,0.249944,0.349275,0.380088,0.757343,0.393405,0.622101,0.653514,0.148454,0.988816,0.623537,0.356454,0.918398,0.198535,0.197403,0.41622,0.0395096,0.4823,0.244573,0.203415,0.227267,0.0119423,0.219526,0.780431,0.908874,0.876377,0.969646,0.478038,0.410622,0.323343,0.449591,0.739998,0.785577,0.30012,0.366472,0.30406,0.862645,0.97814,0.439946,0.486184,0.157543,0.825853,0.0232874,0.699613,0.164307,0.852413,0.342739,0.154692,0.577007,0.960869,0.410857,0.403249,0.965615,0.770943,0.546896,0.787611,0.726719,0.501972,0.567924,0.177354,0.490475,0.0143562,0.0797594,0.221323,0.81681,0.232604,0.598285,0.146774,0.175935,0.290538,0.342477,0.794589,0.0711933,0.261875,0.814995,0.334725,0.860799,0.41661,0.0514187,0.0285116,0.160306,0.690306,0.754854,0.0442489,0.637252,0.0825395,0.617727,0.828514,0.416416,0.0763994,0.928584,0.124709,0.652183,0.782188,0.0432827,0.589481,0.670557,0.52003,0.610442,0.293461,0.74878,0.821652,0.35788,0.721332,0.890001,0.545431,0.474659,0.830466,0.181237,0.829819,0.660895,0.0414268,0.259126,0.152678,0.732418,0.135625,0.983488,0.0259943,0.346562,0.794312,0.836902,0.608381,0.250901,0.0315278,0.869689,0.190061,0.117574,0.963035,0.756026,0.775719,0.652934,0.449954,0.208587,0.816765,0.117432,0.477533,0.971819,0.565471,0.281161,0.376182,0.622478,0.895573,0.503979,0.163462,0.57896,0.0695006,0.898254,0.82335,0.565212,0.615235,0.702675,0.750017,0.625909,0.638887,0.813598,0.823357,0.974137,0.86604,0.00837934,0.171179,0.740708,0.152385,0.550413,0.812855,0.702151,0.938821,0.674589,0.248012,0.328999,0.545486,0.828649,0.119938,0.552262,0.398262,0.918128,0.248522,0.288858,0.560005,0.490037,0.15018,0.251236,0.768427,0.997059,0.859549,0.783841,0.191475,0.848384,0.216346,0.485216,0.386696,0.375668,0.838173,0.604103,0.626945,0.101083,0.682629,0.580888,0.0740117,0.62893,0.425685,0.712823,0.475778,0.152221,0.291013,0.80109,0.789382,0.669738,0.92769,0.419306,0.55789,0.517204,0.276623,0.536569,0.322701,0.285997,0.90187,0.466728,0.134274,0.0606127,0.0534618,0.795393,0.814417,0.957298,0.360554,0.231663,0.941321,0.28209,0.408868,0.216761,0.502492,0.36042,0.175119,0.39935,0.831163,0.360025,0.734972,0.00597763,0.642981,0.748909,0.130814,0.821173,0.581036,0.241025,0.586397,0.0368512,0.442741,0.665282,0.172969,0.604725,0.706672,0.59219,0.0633122,0.948199,0.339228,0.466748,0.163664,0.511324,0.952452,0.228198,0.217578,0.542012,0.584935,0.143517,0.167193,0.702982,0.490089,0.488391,0.46966,0.104212,0.209785,0.748067,0.655367,0.641856,0.358044,0.793283,0.11201,0.803883,0.0789552,0.320939,0.604844,0.583261,0.213307,0.354272,0.910669,0.013553,0.680157,0.675359,0.573729,0.965058,0.446192,0.370612,0.576658,0.510688,0.930954,0.894312,0.658949,0.201104,0.973821,0.614954,0.748155,0.102823,0.427339,0.357492,0.338937,0.258864,0.000535131,0.918351,0.69821,0.0293452,0.630693,0.413016,0.314982,0.351257,0.417758,0.324945,0.302813,0.87026,0.270546,0.662365,0.0528041,0.760089,0.803293,0.415372,0.76474,0.781646,0.472925,0.444045,0.556768,0.902255,0.301747,0.869064,0.228929,0.866333,0.843254,0.0142189,0.514207,0.838995,0.860277,0.570624,0.524545,0.451759,0.654466,0.0814909,0.434486,0.657537,0.0465004,0.0268278,0.119458,0.363341,0.0525227,0.442245,0.295813,0.311847,0.216068,0.136292,0.0487567,0.697634,0.688741,0.619717,0.351868,0.975978,0.126312,0.216742,0.946394,0.605656,0.409534,0.120076,0.28985,0.097061,0.334213,0.786831,0.807589,0.935629,0.188306,0.183912,0.67354,0.352913,0.369101,0.327818,0.771094,0.51372,0.775528,0.113225,0.868709,0.0633796,0.940718,0.715774,0.661141,0.174813,0.158419,0.770522,0.956311,0.0908933,0.609392,0.277489,0.660258,0.0780908,0.933794,0.372911,0.0467312,0.561014,0.590907,0.580898,0.895519,0.551829,0.409185,0.636644,0.0617081,0.121871,0.446286,0.0728579,0.48546,0.732782,0.907524,0.975687,0.826621,0.444161,0.21521,0.982897,0.289118,0.152345,0.621099,0.804717,0.974399,0.747897,0.755352,0.408763,0.0622694,0.208353,0.516659,0.466233,0.527392,0.953517,0.292927,0.794615,0.358921,0.692294,0.220084,0.399923,0.878689,0.640915,0.263106,0.419591,0.0434202,0.860445,0.18436,0.528677,0.77741,0.933718,0.534211,0.442609,0.270743,0.990233,0.959582,0.209305,0.186424,0.924784,0.277593,0.724587,0.13574,0.816306,0.491713,0.728309,0.427357,0.795004,0.145258,0.499491,0.645336,0.323187,0.163576,0.777716,0.0119849,0.114712,0.527032,0.271499,0.795295,0.170387,0.245971,0.666547,0.967161,0.204572,0.194053,0.00163722,0.648471,0.116518,0.688015,0.259306,0.0128672,0.514559,0.678158,0.622667,0.155445,0.725817,0.64804,0.936453,0.856243,0.314927,0.186781,0.727505,0.910664,0.443136,0.402558,0.952627,0.318669,0.289479,0.744992,0.449581,0.264487,0.20335,0.594553,0.125899,0.333157,0.809439,0.389416,0.506022,0.227933,0.14785,0.466814,0.202686,0.57384,0.739864,0.482372,0.420384,0.377511,0.678999,0.96688,0.802227,0.717364,0.044994,0.539597,0.625445,0.491226,0.79731,0.896474,0.138783,0.0135184,0.505128,0.418107,0.604025,0.647745,0.11584,0.00211048,0.589549,0.161222,0.588121,0.719769,0.487627,0.177628,0.71322,0.927844,0.496312,0.0867015,0.515379,0.633013,0.0166515,0.783468,0.833388,0.635386,0.0383798,0.651507,0.143268,0.120906,0.177729,0.157904,0.0564072,0.336394,0.274765,0.850361,0.717262,0.401377,0.683018,0.317561,0.862762,0.840015,0.87034,0.32937,0.38771,0.24534,0.889226,0.058911,0.423235,0.875542,0.194795,0.287429,0.815998,0.885781,0.293932,0.880925,0.294336,0.158222,0.934268,0.616305,0.367126,0.792045,0.464331,0.447923,0.330273,0.707286,0.0370929,0.216053,0.674058,0.593548,0.604606,0.178383,0.649449,0.699643,0.331702,0.00782603,0.555448,0.964006,0.127674,0.0287663,0.233278,0.876903,0.248923,0.657029,0.354715,0.0390332,0.438655,0.0401751,0.649252,0.116629,0.372869,0.165045,0.261587,0.501762,0.938235,0.194757,0.119115,0.622506,0.386797,0.599516,0.0881151,0.313692,0.462022,0.575085,0.966433,0.481052,0.107033,0.238107,0.0420288,0.0268123,0.932649,0.337097,0.846291,0.250576,0.432799,0.528985,0.500686,0.610888,0.977335,0.0394167,0.643336,0.347829,0.069976,0.542874,0.28691,0.524275,0.779242,0.138277,0.236555,0.270417,0.4162,0.962573,0.945633,0.629432,0.591,0.766587,0.404662,0.586195,0.942588,0.358146,0.256578,0.299708,0.476808,0.175931,0.875358,0.248992,0.987378,0.662804,0.486382,0.124916,0.904797,0.829908,0.872851,0.0205508,0.747763,0.478369,0.115933,0.205645,0.162008,0.0581117,0.350884,0.229617,0.710485,0.618872,0.51197,0.355075,0.945254,0.823082,0.0443513,0.558034,0.622182,0.493728,0.969172,0.532556,0.459494,0.165087,0.289418,0.88409,0.636875,0.129718,0.0725802,0.827159,0.716419,0.969858,0.594978,0.876036,0.272463,0.309504,0.959231,0.974362,0.652281,0.632443,0.84908,0.487805,0.681563,0.890651,0.744454,0.429688,0.364132,0.895604,0.949969,0.985211,0.892273,0.241162,0.15378,0.882463,0.251686,0.702449,0.80386,0.773721,0.739693,0.403373,0.330031,0.0673784,0.78144,0.0185966,0.901108,0.752178,0.013862,0.654436,0.0139005,0.345624,0.845978,0.968374,0.713641,0.552823,0.813177,0.177298,0.0730528,0.280835,0.972332,0.603606,0.334327,0.331062,0.0785755,0.474509,0.666133,0.397445,0.108783,0.765511,0.794223,0.297186,0.645835,0.350237,0.73601,0.740605,0.341253,0.767967,0.671808,0.351513,0.749704,0.627583,0.578682,0.124662,0.203272,0.77622,0.169625,0.249361,0.0645229,0.231103,0.466617,0.959158,0.812533,0.988825,0.221668,0.0952811,0.500457,0.159368,0.348272,0.648278,0.729608,0.79661,0.297903,0.298721,0.586357,0.909493,0.495535,0.0579253,0.836316,0.679982,0.351279,0.0383266,0.736077,0.689827,0.218397,0.96226,0.481469,0.753173,0.376449,0.00355673,0.276204,0.42208,0.959542,0.51491,0.83988,0.36701,0.992785,0.670782,0.466701,0.210846,0.451594,0.1816,0.775574,0.14235,0.563355,0.740015,0.808417,0.349772,0.328388,0.218348,0.74955,0.436793,0.891116,0.173751,0.0497393,0.0253851,0.93856,0.0281424,0.563177,0.994466,0.167272,0.93393,0.0461106,0.549488,0.13521,0.631212,0.743924,0.379531,0.471994,0.455894,0.930538,0.188422,0.375594,0.631891,0.954433,0.642897,0.925462,0.109829,0.570934,0.43425,0.654269,0.381262,0.00463498,0.0751253,0.0444666,0.0340406,0.0960524,0.940971,0.302359,0.877612,0.668545,0.398102,0.865405,0.719053,0.384209,0.319356,0.396771,0.0547712,0.280725,0.63347,0.104551,0.492737,0.789179,0.186831,0.374532,0.13055,0.70756,0.931202,0.112657,0.587135,0.412005,0.355195,0.956106,0.654686,0.20983,0.820383,0.820214,0.381941,0.311446,0.550654,0.848149,0.535231,0.207214,0.640469,0.753683,0.681165,0.435408,0.352095,0.766056,0.43539,0.19815,0.218087,0.5146,0.982787,0.639922,0.750842,0.270467,0.300549,0.684521,0.410649,0.0149302,0.21311,0.0352237,0.27266,0.261779,0.278313,0.0525971,0.981935,0.233249,0.357609,0.486522,0.599938,0.77412,0.509491,0.524205,0.350185,0.110092,0.682352,0.690705,0.373073,0.8426,0.239807,0.591828,0.663661,0.829792,0.0240659,0.322982,0.69133,|0.00342429,0.376363,0.593047,0.428656,0.445588,0.438277,0.114745,0.987993,0.159948,0.72195,0.0218686,0.923346,0.40001,0.885116,0.445801,0.563904,0.20515,0.749929,0.427123,0.291281,0.815397,0.798974,0.774807,0.533158,0.459399,0.856629,0.800219,0.796988,0.181831,0.885294,0.802568,0.15003,0.893802,0.56506,0.674154,0.419118,0.0619789,0.424239,0.39642,0.173082,0.36457,0.991305,0.0301806,0.142771,0.592876,0.181658,0.522581,0.800117,0.829842,0.174031,0.180695,0.699355,0.574672,0.0940645,0.338909,0.723123,0.0565457,0.113481,0.511201,0.834303,0.758144,0.908974,0.327879,0.164522,0.711937,0.26276,0.596179,0.224189,0.50209,0.671002,0.123957,0.7384,0.254116,0.585123,0.597472,0.114713,0.693398,0.840061,0.617339,0.921404,0.26354,0.495888,0.0142002,0.405464,0.329011,0.577144,0.112656,0.240417,0.703321,0.179893,0.263169,0.504868,0.937847,0.433982,0.692247,0.826804,0.597871,0.643762,0.0320451,0.946969,0.55541,0.0464487,0.583638,0.0282718,0.460634,0.071466,0.120126,0.782776,0.995453,0.108078,0.224456,0.0310814,0.114865,0.66193,0.0105321,0.956579,0.744761,0.404251,0.124937,0.261668,0.959487,0.125492,0.555577,0.0586599,0.485102,0.896545,0.565355,0.582793,0.365414,0.9497,0.247951,0.137897,0.109289,0.824069,0.977362,0.0502504,0.828597,0.353205,0.00351429,0.595404,0.702739,0.837122,0.434549,0.551526,0.856435,0.0102493,0.314877,0.868064,0.0676016,0.469047,0.877323,0.693705,0.544251,0.708658,0.156944,0.887532,0.671089,0.446677,0.155895,0.126609,0.58867,0.710923,0.328297,0.73617,0.0858139,0.211556,0.839044,0.110903,0.155079,0.334082,0.609945,0.93381,0.645985,0.0397657,0.87576,0.991312,0.533984,0.00681967,0.802663,0.587172,0.966391,0.492595,0.712571,0.284795,0.19029,0.305633,0.115886,0.993538,0.465216,0.769143,0.832678,0.967465,0.70464,0.00594115,0.602092,0.62715,0.314456,0.444005,0.700834,0.53471,0.532346,0.62949,0.918494,0.0329204,0.167853,0.850587,0.578574,0.42729,0.102514,0.499992,0.779373,0.543759,0.308061,0.839833,0.434056,0.734376,0.161322,0.45942,0.035868,0.83948,0.355844,0.848146,0.624053,0.833991,0.591802,0.522178,0.134704,0.920126,0.60791,0.672452,0.326962,0.779441,0.710105,0.879684,0.152006,0.364248,0.476284,0.674537,0.816953,0.981246,0.0342569,0.836403,0.414519,0.695079,0.433544,0.749454,0.232268,0.638132,0.352883,0.49665,0.052123,0.405657,0.933457,0.105267,0.554813,0.00573879,0.256123,0.0295943,0.966596,0.756447,0.264403,0.168156,0.135188,0.0999449,0.99328,0.227716,0.931449,0.739928,0.123257,0.193337,0.0127967,0.219141,0.735051,0.243739,0.627968,0.598007,0.20607,0.734562,0.766545,0.490994,0.254464,0.904152,0.288505,0.39374,0.62092,0.295135,0.853327,0.0322152,0.410029,0.85677,0.597983,0.293676,0.928352,0.896066,0.875764,0.0391877,0.448347,0.25353,0.317587,0.838841,0.158191,0.993741,0.788521,0.122226,0.46097,0.319102,0.892545,0.0493368,0.368125,0.660021,0.588657,0.169887,0.19282,0.0129336,0.971541,0.0364497,0.43641,0.519738,0.721329,0.597886,0.166432,0.254549,0.542212,0.228389,0.129989,0.0264571,0.62209,0.705536,0.77942,0.974209,0.874377,0.0197592,0.265214,0.535255,0.854741,0.368845,0.273804,0.367923,0.12622,0.664174,0.327608,0.145424,0.00638831,0.893542,0.28246,0.729472,0.540131,0.0852264,0.383675,0.532224,0.0614178,0.526686,0.278496,0.429496,0.695094,0.878921,0.731938,0.140115,0.773764,0.313113,0.562233,0.3305,0.981868,0.91104,0.131385,0.279038,0.465614,0.227922,0.508353,0.974189,0.00287491,0.775319,0.953931,0.727799,0.283359,0.647094,0.858088,0.845199,0.597513,0.310187,0.552748,0.811036,0.643356,0.281909,0.549978,0.0136368,0.173612,0.293955,0.757833,0.353387,0.523169,0.830108,0.229495,0.505533,0.120274,0.906972,0.161534,0.45342,0.425246,0.762101,0.229195,0.122359,0.0716961,0.249698,0.422092,0.961446,0.0406011,0.217312,0.423064,0.560043,0.486671,0.704031,0.347421,0.094968,0.587601,0.304839,0.0761508,0.35745,0.504522,0.252776,0.405319,0.84431,0.587045,0.423859,0.165843,0.279783,0.763874,0.573,0.377768,0.188963,0.184223,0.0335196,0.580339,0.387348,0.497076,0.0195265,0.299224,0.623741,0.164412,0.28751,0.620103,0.0861946,0.907151,0.0352443,0.341924,0.304839,0.372654,0.66409,0.270781,0.338712,0.672706,0.754554,0.757011,0.433787,0.3859,0.847343,0.589819,0.0171008,0.280602,0.675964,0.0489827,0.772588,0.610457,0.0982224,0.247025,0.092335,0.238521,0.59902,0.721641,0.699247,0.0467381,0.323478,0.892908,0.407778,0.643816,0.839742,0.611599,0.22085,0.511099,0.637398,0.0368055,0.274682,0.429248,0.567587,0.831921,0.952674,0.406721,0.696588,0.872545,0.415151,0.539008,0.521894,0.237337,0.687323,0.223085,0.644054,0.859521,0.0138487,0.943934,0.895146,0.0536557,0.627853,0.838796,0.514418,0.716645,0.956495,0.0341026,0.46502,0.238401,0.203854,0.284729,0.15253,0.870555,0.010181,0.923327,0.754976,0.457869,0.0728052,0.2629,0.617013,0.843522,0.376126,0.319204,0.0908517,0.688259,0.486984,0.550154,0.493244,0.156911,0.630228,0.260971,0.873481,0.0505337,0.888859,0.185199,0.520127,0.347121,0.200011,0.405279,0.734098,0.0733947,0.226065,0.676538,0.0826433,0.344258,0.636037,0.752761,0.701814,0.347036,0.629941,0.239289,0.413808,0.98036,0.911679,0.233319,0.0840723,0.226613,0.348797,0.857037,0.215733,0.540036,0.588516,0.996274,0.655381,0.111939,0.878584,0.326201,0.967566,0.0114214,0.351405,0.377336,0.370354,0.542386,0.559928,0.872597,0.835187,0.992072,0.580971,0.957424,0.529365,0.0239408,0.795463,0.178775,0.748358,0.059795,0.670825,0.650009,0.98755,0.386713,0.700944,0.66964,0.126444,0.0801429,0.169929,0.517486,0.495911,0.369836,0.964051,0.109304,0.308646,0.439489,0.0389423,0.939322,0.500082,0.130502,0.676602,0.530955,0.152424,0.109958,0.686941,0.843252,0.554763,0.0983807,0.564565,0.193258,0.455663,0.21044,0.718315,0.273832,0.0336258,0.209342,0.615598,0.529596,0.862751,0.500797,0.274579,0.192621,0.118436,0.477272,0.574148,0.266473,0.279785,0.287456,0.386951,0.0686291,0.53446,0.44177,0.718354,0.62185,0.622608,0.972508,0.30446,0.343647,0.0285659,0.461349,0.491512,0.306877,0.497361,0.00678372,0.351453,0.480686,0.734172,0.527205,0.257075,0.779305,0.887903,0.871889,0.204353,0.00909728,0.520497,0.519437,0.999368,0.535219,0.0051012,0.413552,0.624721,0.759082,0.556423,0.216835,0.426972,0.814192,0.171922,0.318676,0.580141,0.162844,0.798944,0.215915,0.156052,0.22356,0.248029,0.977629,0.942922,0.937258,0.296045,0.923874,0.020768,0.743997,0.824456,0.853531,0.861785,0.826301,0.272492,0.0599564,0.123769,0.385715,0.462392,0.158242,0.141342,0.749422,0.343924,0.0734251,0.176843,0.987662,0.442729,0.0861245,0.8078,0.828418,0.669315,0.744589,0.54865,0.521512,0.663133,0.656014,0.549784,0.218562,0.0712715,0.368304,0.998026,0.350733,0.622171,0.176534,0.939509,0.901785,0.892068,0.62355,0.511224,0.427562,0.663096,0.0170739,0.682345,0.722359,0.80291,0.157582,0.461842,0.951483,0.604748,0.852693,0.788079,0.646294,0.0253717,0.310434,0.0731272,0.806221,0.33782,0.959983,0.55178,0.405429,0.896516,0.261297,0.166593,0.642931,0.186029,0.721668,0.168411,0.163241,0.409212,0.955178,0.268101,0.56172,0.709714,0.230586,0.966608,0.233967,0.416602,0.959952,0.310134,0.262657,0.412995,0.120025,0.30109,0.985552,0.355986,0.451065,0.826036,0.110377,0.362253,0.274831,0.160668,0.24412,0.0501683,0.359858,0.772101,0.398814,0.092031,0.207238,0.62276,0.216341,0.918538,0.28254,0.563648,0.63157,0.414969,0.391075,0.0767633,0.535065,0.958335,0.713827,0.0642922,0.857623,0.649211,0.725375,0.642476,0.100895,0.404365,0.547503,0.542019,0.912178,0.511792,0.945088,0.14477,0.550026,0.759345,0.613976,0.628288,0.379224,0.424637,0.255003,0.693267,0.160128,0.836754,0.256112,0.391971,0.182872,0.426058,0.700024,0.697274,0.259814,0.422168,0.527086,0.0856357,0.0626641,0.0773209,0.138355,0.0350837,0.682478,0.197072,0.390493,0.906789,0.399373,0.89792,0.0571844,0.676612,0.137037,0.152583,0.74166,0.492034,0.959846,0.0244523,0.924861,0.14592,0.629647,0.282592,0.794645,0.938648,0.435497,0.386919,0.111027,0.0956168,0.0259101,0.559409,0.606144,0.492123,0.945104,0.35351,0.378318,0.641677,0.375481,0.303324,0.648284,0.549869,0.242268,0.114938,0.101096,0.673243,0.820917,0.0799121,0.595199,0.927859,0.625802,0.80699,0.138261,0.223732,0.685237,0.825257,0.293973,0.24833,0.477968,0.0783385,0.610264,0.326327,0.729149,0.628993,0.839039,0.306315,0.931766,0.0187954,0.516848,0.713458,0.88408,0.259078,0.0844883,0.98235,0.502624,0.435188,0.889631,0.734163,0.234646,0.549356,0.701483,0.415189,0.428839,0.752274,0.143032,0.0705449,0.682795,0.702712,0.547423,0.127167,0.180791,0.146916,0.417398,0.90973,0.503713,0.32531,0.844887,0.597694,0.51277,0.37235,0.0123364,0.834463,0.881082,0.217128,0.454345,0.908473,0.338005,0.485309,0.859633,0.952917,0.530517,0.836558,0.226811,0.734746,0.631177,0.887832,0.769072,0.307052,0.522923,0.0269113,0.36455,0.50871,0.585522,0.384543,0.688644,0.582739,0.172582,0.418307,0.1498,0.691705,0.469841,0.645121,0.342174,0.825641,0.86636,0.11865,0.37947,0.133543,0.989223,0.671758,0.00152367,0.00197703,0.29571,0.0625499,0.412213,0.847967,0.815173,0.871454,0.169181,0.868696,0.493458,0.205301,0.218706,0.293056,0.859835,0.272023,0.610181,0.845341,0.297328,0.559153,0.446359,0.892323,0.183769,0.212779,0.858588,0.617551,0.193243,0.26628,0.281862,0.647758,0.914953,0.458083,|0.986062,0.0303543,0.0031302,0.934219,0.815259,0.639247,0.700125,0.101369,0.793458,0.971373,0.141136,0.121578,0.346374,0.471486,0.523413,0.440155,0.739928,0.823113,0.656373,0.612808,0.786397,0.289741,0.115576,0.857665,0.731134,0.265379,0.644384,0.0315399,0.580409,0.952445,0.980681,0.442349,0.00393814,0.639775,0.071831,0.888788,0.750599,0.992103,0.197146,0.10903,0.0753152,0.476682,0.939877,0.15116,0.159297,0.619199,0.662011,0.676337,0.766689,0.920028,0.523272,0.207597,0.695334,0.415346,0.385438,0.50179,0.58967,0.213894,0.978605,0.510128,0.302419,0.735969,0.146872,0.855941,0.843998,0.0786239,0.451961,0.81847,0.862089,0.804096,0.955477,0.0302135,0.104971,0.0335796,0.384639,0.832388,0.729187,0.659109,0.136862,0.027428,0.36541,0.698792,0.998371,0.60152,0.0159612,0.107416,0.101535,0.20934,0.915556,0.359419,0.549259,0.313375,0.646895,0.29054,0.619462,0.631298,0.231216,0.465864,0.418752,0.378943,0.692393,0.543628,0.880061,0.00829339,0.443006,0.808404,0.280808,0.0666478,0.362968,0.0481739,0.322109,0.871617,0.569943,0.172864,0.0572251,0.0789124,0.285321,0.498191,0.699978,0.27502,0.432104,0.198514,0.0647299,0.502423,0.82989,0.84921,0.679826,0.354978,0.539928,0.439807,0.498934,0.816192,0.952059,0.729892,0.458243,0.230065,0.660965,0.0199313,0.1005,0.0352342,0.214454,0.796067,0.0625889,0.815561,0.458514,0.898775,0.997652,0.488549,0.206541,0.611419,0.963482,0.561801,0.0110995,0.761668,0.630897,0.439991,0.596739,0.150907,0.867999,0.165347,0.865722,0.966693,0.0702811,0.093882,0.558612,0.177923,0.66478,0.542588,0.1733,0.197278,0.485477,0.342279,0.252233,0.687387,0.59636,0.822616,0.651385,0.155571,0.29432,0.855043,0.595837,0.837716,0.588685,0.418703,0.815891,0.506792,0.439346,0.979452,0.681931,0.0963188,0.0410094,0.620665,0.0135262,0.187052,0.833933,0.803426,0.226891,0.82485,0.968968,0.436671,0.8579,0.537298,0.550754,0.353586,0.352727,0.189259,0.284198,0.520259,0.104928,0.833562,0.830095,0.459536,0.602085,0.946291,0.281801,0.364983,0.0574993,0.413411,0.321023,0.173719,0.910948,0.0945962,0.549578,0.59729,0.0625117,0.361144,0.225983,0.851434,0.811867,0.980987,0.352108,0.298238,0.587101,0.979855,0.73247,0.852392,0.92611,0.324505,0.538609,0.835405,0.480443,0.428593,0.981655,0.643421,0.944397,0.567284,0.104379,0.667199,0.418031,0.373845,0.904193,0.0501777,0.645159,0.519982,0.704309,0.666068,0.259128,0.161512,0.548471,0.486596,0.257386,0.837116,0.20921,0.871805,0.419919,0.209776,0.298555,0.511493,0.438452,0.0322028,0.102207,0.598407,0.0807227,0.812762,0.430134,0.873194,0.891945,0.680325,0.848399,0.962497,0.0367594,0.828643,0.0704361,0.307747,0.192176,0.0201432,0.678487,0.90211,0.678048,0.105243,0.255579,0.616928,0.419176,0.407952,0.836858,0.129262,0.0891728,0.404604,0.605683,0.13468,0.524287,0.224696,0.166016,0.316235,0.863813,0.811353,0.819725,0.544393,0.230828,0.872833,0.234339,0.0399145,0.244502,0.791989,0.257201,0.00663412,0.331132,0.813506,0.0872307,0.966448,0.818957,0.206858,0.271094,0.167165,0.630628,0.110539,0.498552,0.0411127,0.791364,0.857273,0.0252771,0.917272,0.164984,0.314798,0.904681,0.931901,0.290043,0.138223,0.126061,0.700809,0.668682,0.32815,0.635452,0.86499,0.336509,0.115504,0.497639,0.271903,0.316594,0.598522,0.140726,0.809331,0.270425,0.425521,0.953991,0.162098,0.830384,0.419547,0.561286,0.464408,0.677372,0.112129,0.912829,0.884461,0.491892,0.836878,0.543433,0.712212,0.0175337,0.843732,0.605186,0.267444,0.0908931,0.419977,0.68958,0.989655,0.602385,0.00649142,0.435503,0.0407934,0.143791,0.5089,0.837334,0.0170082,0.316258,0.75853,0.619782,0.698416,0.493446,0.869953,0.607344,0.669388,0.966874,0.942511,0.0734845,0.370845,0.625229,0.353178,0.242027,0.771856,0.877878,0.69337,0.683511,0.62441,0.947699,0.557251,0.807719,0.725431,0.272924,0.393062,0.260755,0.341394,0.549495,0.300894,0.723056,0.131072,0.695655,0.8674,0.0721942,0.590879,0.834792,0.929196,0.702639,0.733684,0.52177,0.517223,0.444875,0.485357,0.634286,0.618781,0.0705523,0.897286,0.574003,0.00151336,0.268216,0.0756262,0.225632,0.000368237,0.401965,0.227671,0.277218,0.813555,0.543532,0.343526,0.453773,0.502804,0.261549,0.849792,0.8323,0.987807,0.513065,0.308317,0.199373,0.49223,0.120952,0.927059,0.381947,0.638203,0.181158,0.830128,0.719808,0.372893,0.351384,0.379145,0.506108,0.163523,0.0738694,0.00012517,0.499306,0.984208,0.504913,0.738539,0.702892,0.642637,0.590354,0.848381,0.901349,0.606892,0.849127,0.186751,0.821579,0.0206649,0.482003,0.382077,0.157697,0.119075,0.0286393,0.233411,0.107283,0.0186808,0.227354,0.473249,0.284778,0.339298,0.391426,0.886761,0.43449,0.298442,0.384487,0.774965,0.0780588,0.659598,0.65578,0.518996,0.29045,0.417315,0.285166,0.0322293,0.832386,0.263703,0.297631,0.294014,0.943096,0.835719,0.356409,0.0113857,0.0652018,0.865958,0.906346,0.185399,0.370534,0.658227,0.648983,0.329678,0.301502,0.462511,0.958848,0.24526,0.208536,0.433299,0.576121,0.483361,0.382841,0.329619,0.302362,0.456781,0.717133,0.90142,0.586139,0.0891279,0.31815,0.226467,0.583651,0.970131,0.120382,0.728293,0.45876,0.895716,0.192101,0.177288,0.658754,0.179851,0.110587,0.280841,0.0416254,0.602267,0.896737,0.56057,0.76815,0.74528,0.129172,0.357016,0.164665,0.383542,0.888584,0.632604,0.79914,0.751775,0.38666,0.273698,0.866234,0.656132,0.132809,0.762774,0.277598,0.828636,0.965537,0.481844,0.030949,0.343095,0.374558,0.961743,0.626223,0.0349372,0.882014,0.217128,0.159511,0.64571,0.090816,0.270207,0.0466555,0.750575,0.0116054,0.139728,0.863407,0.00539863,0.908774,0.266295,0.907422,0.321516,0.94395,0.439208,0.671664,0.36149,0.220179,0.299003,0.497727,0.647798,0.107043,0.639547,0.53491,0.84531,0.130068,0.878477,0.0317346,0.392915,0.810018,0.444071,0.84326,0.30961,0.365415,0.128803,0.561016,0.244529,0.175387,0.123008,0.921153,0.0525476,0.409633,0.102275,0.0511966,0.250728,0.181418,0.240499,0.166009,0.561791,0.275803,0.236485,0.631656,0.786413,0.0149519,0.32462,0.647565,0.91885,0.545552,0.630762,0.615586,0.264349,0.904543,0.761856,0.572136,0.282489,0.692028,0.474969,0.090736,0.790999,0.968038,0.764518,0.411811,0.0186758,0.931745,0.233445,0.914515,0.686597,0.620244,0.755742,0.39807,0.708681,0.785327,0.396758,0.154809,0.528522,0.933221,0.605278,0.571365,0.860494,0.796541,0.782287,0.378341,0.666046,0.694294,0.738053,0.936565,0.787504,0.752896,0.863535,0.527682,0.870064,0.952732,0.0705938,0.66769,0.626582,0.93675,0.480311,0.4845,0.445052,0.309548,0.919404,0.243114,0.994987,0.243375,0.463497,0.168701,0.632953,0.80042,0.615655,0.184211,0.595951,0.806375,0.881508,0.501781,0.991053,0.389378,0.0129748,0.912472,0.598872,0.106779,0.171231,0.284192,0.444343,0.745709,0.579574,0.505893,0.154465,0.544303,0.565831,0.76812,0.87676,0.70473,0.135085,0.98813,0.699296,0.104931,0.747359,0.702527,0.0260211,0.00659966,0.717068,0.0377873,0.374161,0.183234,0.129276,0.0553575,0.518467,0.656691,0.757027,0.695764,0.778318,0.4319,0.834166,0.12738,0.340197,0.0388111,0.925795,0.586844,0.828536,0.814042,0.420336,0.893812,0.536999,0.394087,0.655809,0.0999172,0.236323,0.17929,0.241342,0.153422,0.613175,0.387762,0.431894,0.490225,0.752843,0.73769,0.0331889,0.231962,0.854233,0.751521,0.555942,0.25089,0.181809,0.755151,0.892947,0.257209,0.365789,0.541233,0.581365,0.83902,0.249339,0.165305,0.976725,0.120576,0.107625,0.941327,0.579663,0.284339,0.394196,0.242068,0.73433,0.794459,0.856658,0.629599,0.19221,0.852556,0.242127,0.954469,0.350824,0.489137,0.11866,0.530663,0.617221,0.836377,0.963946,0.254668,0.515101,0.0513737,0.35739,0.91586,0.499021,0.148657,0.0799087,0.90412,0.190922,0.27876,0.676306,0.886737,0.771398,0.724038,0.614891,0.791877,0.323504,0.177562,0.991113,0.69291,0.192667,0.499685,0.0229872,0.88299,0.501434,0.66839,0.207581,0.118222,0.96456,0.573637,0.851873,0.0234435,0.85946,0.969046,0.482639,0.550815,0.552337,0.456778,0.637677,0.573451,0.338518,0.220946,0.524098,0.760649,0.0839744,0.478482,0.53195,0.10905,0.596856,0.611786,0.215659,0.608118,0.680961,0.945121,0.256292,0.22675,0.667147,0.805855,0.760354,0.0321539,0.288259,0.448691,0.392231,0.223294,0.367211,0.625233,0.143559,0.329651,0.609879,0.321696,0.694004,0.838944,0.987324,0.0047546,0.947746,0.174289,0.635775,0.271591,0.0209743,0.458054,0.468771,0.862462,0.379621,0.423787,0.599521,0.0227139,0.6252,0.0938682,0.0209402,0.730126,0.911393,0.86882,0.0292506,0.44003,0.588377,0.647954,0.12408,0.787279,0.981831,0.192923,0.395473,0.0104514,0.07251,0.245712,0.483237,0.0460219,0.491298,0.189285,0.275576,0.395466,0.151296,0.45403,0.223987,0.811588,0.0197973,0.948055,0.55005,0.925363,0.537331,0.249857,0.850154,0.101583,0.192638,0.550418,0.512528,0.897193,0.726637,0.97386,0.979833,0.829102,0.628546,0.698887,0.682997,0.482622,0.867195,0.101765,0.838492,0.498352,0.681562,0.165864,0.674456,0.443612,0.301735,0.344834,0.884634,0.348069,0.84379,0.569807,0.29182,0.463482,0.413414,0.0106764,0.235445,0.913045,0.644227,0.951661,0.637157,0.935661,0.429044,0.948487,0.0242524,0.162102,0.808709,0.402406,0.882401,0.285961,0.172879,0.00282449,0.269136,0.010321,0.946201,0.784279,0.332297,0.629163,0.879454,0.82456,0.482813,0.0356618,0.408807,0.570528,0.395378,0.816836,0.782561,0.646134,0.624336,0.746975,0.983382,|0.891095,0.226815,0.0353669,0.0218924,0.153943,0.411136,0.969896,0.712386,0.211126,0.868988,0.690894,0.227398,0.468275,0.16662,0.173551,0.835775,0.479919,0.499769,0.70259,0.340212,0.395228,0.852884,0.526933,0.975097,0.598225,0.0112052,0.0708733,0.778095,0.96015,0.00477886,0.286904,0.731905,0.634133,0.0754418,0.719266,0.567342,0.478239,0.969498,0.908928,0.652951,0.619726,0.63084,0.270375,0.526297,0.829749,0.183396,0.455541,0.569848,0.481661,0.884567,0.151959,0.723134,0.951915,0.470597,0.655707,0.455273,0.387724,0.683116,0.149269,0.27601,0.478233,0.25171,0.248743,0.648375,0.422101,0.713852,0.518225,0.930618,0.926386,0.646537,0.504149,0.997411,0.163224,0.348447,0.0278163,0.926148,0.576664,0.874122,0.973069,0.206761,0.520333,0.23115,0.530267,0.403239,0.343123,0.328867,0.704701,0.847917,0.00681835,0.931506,0.0376683,0.615114,0.128184,0.642383,0.500454,0.470963,0.479504,0.116572,0.0533289,0.676101,0.253348,0.277351,0.670941,0.212554,0.527235,0.12814,0.245243,0.929807,0.236825,0.103594,0.121434,0.0605012,0.0788668,0.570843,0.383628,0.389036,0.0995919,0.194534,0.114203,0.00173575,0.996269,0.323075,0.596197,0.640724,0.488872,0.89675,0.572612,0.485077,0.114587,0.993917,0.150563,0.365026,0.478645,0.750812,0.301191,0.129359,0.937355,0.786047,0.894933,0.817629,0.544206,0.663689,0.247704,0.160849,0.963303,0.373778,0.0947642,0.0947635,0.674864,0.816559,0.025044,0.539289,0.230671,0.353735,0.778017,0.50733,0.591467,0.652033,0.817093,0.525963,0.0900584,0.319971,0.488344,0.505533,0.550476,0.763877,0.977254,0.894062,0.931813,0.0614486,0.984111,0.268336,0.485869,0.850829,0.460461,0.0807615,0.0209156,0.910392,0.308599,0.0658168,0.714594,0.561987,0.437045,0.561184,0.815047,0.571598,0.0149179,0.514204,0.260196,0.864992,0.0854824,0.940228,0.55054,0.70758,0.640035,0.0316469,0.696947,0.707821,0.593091,0.734138,0.713746,0.622262,0.587922,0.368393,0.320437,0.411009,0.740284,0.4227,0.67026,0.225134,0.729305,0.733644,0.142772,0.350516,0.950963,0.373483,0.0618409,0.828109,0.575686,0.54233,0.245339,0.131922,0.804695,0.218648,0.482326,0.122799,0.814381,0.0789134,0.336614,0.734304,0.869375,0.538993,0.190998,0.781905,0.730376,0.409051,0.340095,0.161535,0.975537,0.977299,0.601266,0.939956,0.771822,0.971168,0.320366,0.980965,0.42737,0.252764,0.0145692,0.689665,0.243273,0.611822,0.713312,0.341806,0.810045,0.317187,0.453706,0.139191,0.831461,0.710841,0.877728,0.111295,0.863821,0.362595,0.674979,0.689455,0.15671,0.344423,0.60879,0.110208,0.396244,0.377856,0.590586,0.725369,0.555155,0.427306,0.149588,0.748812,0.0152624,0.903189,0.171491,0.259776,0.432355,0.24562,0.867584,0.579262,0.731152,0.00291228,0.203336,0.799585,0.436756,0.84767,0.503837,0.110404,0.576851,0.0617319,0.592222,0.323034,0.136119,0.772184,0.166989,0.076795,0.131458,0.41904,0.150247,0.787362,0.935213,0.0102236,0.302297,0.86963,0.818868,0.894438,0.0765082,0.334948,0.968225,0.0683544,0.0405152,0.676649,0.658748,0.251573,0.520948,0.709209,0.659445,0.283375,0.650888,0.488964,0.698677,0.116426,0.204986,0.00299299,0.351667,0.941491,0.865055,0.689874,0.653193,0.333438,0.103305,0.525398,0.968716,0.130792,0.936545,0.467555,0.660617,0.310979,0.267473,0.963256,0.853128,0.958399,0.0720906,0.49949,0.279516,0.523755,0.918259,0.280126,0.776815,0.857577,0.985635,0.507216,0.80571,0.938678,0.575206,0.48439,0.704056,0.98125,0.990195,0.436907,0.145347,0.314338,0.603106,0.370514,0.553066,0.351551,0.231901,0.52749,0.742458,0.0639369,0.483411,0.328815,0.300076,0.376585,0.779038,0.188254,0.0685193,0.87013,0.777913,0.977468,0.663989,0.858379,0.951172,0.269657,0.960243,0.0861047,0.113714,0.184733,0.38926,0.180216,0.38667,0.351313,0.152818,0.720558,0.880578,0.461857,0.563172,0.72239,0.245807,0.788265,0.881391,0.518406,0.124547,0.756749,0.155486,0.941509,0.671419,0.743144,0.190746,0.557615,0.683245,0.706226,0.51065,0.482243,0.81414,0.414226,0.288238,0.338487,0.932704,0.505183,0.383352,0.584443,0.881636,0.885457,0.823159,0.490651,0.376542,0.763479,0.331825,0.68567,0.469156,0.602657,0.417473,0.506763,0.188957,0.389464,0.638926,0.355527,0.575772,0.677491,0.242452,0.061936,0.796884,0.277138,0.128317,0.414884,0.480063,0.540103,0.154473,0.75569,0.258383,0.183821,0.0271857,0.348971,0.593546,0.183589,0.0185949,0.670177,0.0774075,0.877221,0.871665,0.726703,0.110506,0.30609,0.333406,0.836803,0.832456,0.304572,0.230295,0.861094,0.356138,0.617131,0.335194,0.165402,0.15506,0.835171,0.0717146,0.181337,0.663925,0.0791281,0.867613,0.213264,0.51636,0.198739,0.675109,0.142466,0.138718,0.0956424,0.568074,0.550015,0.0790625,0.532983,0.841654,0.635309,0.357579,0.440176,0.210184,0.633475,0.703984,0.539878,0.919594,0.614995,0.705199,0.582868,0.812652,0.631026,0.527768,0.404015,0.416487,0.523848,0.372029,0.873339,0.142698,0.63421,0.89521,0.158973,0.834668,0.99927,0.734239,0.929284,0.503181,0.139422,0.505266,0.191842,0.335831,0.224022,0.11853,0.443939,0.381075,0.83963,0.295587,0.246522,0.145479,0.00629425,0.242559,0.500596,0.437853,0.513414,0.0991758,0.437783,0.230263,0.551998,0.402229,0.079025,0.706223,0.845366,0.884239,0.892417,0.799024,0.314964,0.639215,0.0544047,0.664497,0.682779,0.384389,0.0760684,0.900807,0.0481121,0.874119,0.656,0.173506,0.571028,0.132673,0.436103,0.574546,0.610795,0.648283,0.878021,0.254726,0.167299,0.538399,0.856821,0.732105,0.737952,0.496299,0.972375,0.560311,0.386991,0.812815,0.983451,0.0578743,0.367913,0.866645,0.159979,0.761667,0.407064,0.501099,0.502318,0.700329,0.20625,0.617968,0.60211,0.965697,0.276394,0.685844,0.903512,0.929406,0.464513,0.350181,0.527538,0.539842,0.0179167,0.798562,0.195898,0.443528,0.455221,0.486326,0.719465,0.381509,0.173483,0.192661,0.017082,0.889839,0.455841,0.352747,0.393632,0.892884,0.462307,0.907139,0.130259,0.783156,0.297755,0.271911,0.426834,0.0123596,0.152807,0.525065,0.162453,0.524948,0.696332,0.808927,0.604545,0.688492,0.164327,0.666521,0.230791,0.824461,0.0606736,0.708111,0.931175,0.459438,0.915385,0.499246,0.209381,0.571279,0.278039,0.0141909,0.126698,0.746046,0.281023,0.65898,0.443316,0.191691,0.68527,0.32121,0.628726,0.936489,0.0925603,0.145864,0.921475,0.746958,0.790633,0.338909,0.182659,0.619575,0.762814,0.853524,0.0269964,0.645741,0.725796,0.85141,0.887514,0.525931,0.525441,0.302619,0.847885,0.511285,0.476193,0.299596,0.692176,0.688167,0.454238,0.758831,0.590605,0.710989,0.937951,0.403461,0.953547,0.466427,0.741804,0.902678,0.282549,0.493318,0.0173364,0.607781,0.0914656,0.904903,0.133552,0.464077,0.153284,0.0134864,0.587342,0.487415,0.800474,0.453729,0.201609,0.13798,0.7514,0.390342,0.0930509,0.311725,0.261666,0.576128,0.00931674,0.989663,0.914659,0.796539,0.115262,0.92788,0.217215,0.63156,0.37488,0.0254763,0.229677,0.555193,0.0549962,0.13891,0.953265,0.119242,0.705055,0.622861,0.73477,0.744602,0.814335,0.164615,0.38537,0.563937,0.784874,0.362264,0.908492,0.223052,0.516254,0.526104,0.135611,0.296501,0.582309,0.87342,0.463078,0.718403,0.865645,0.652816,0.189755,0.214086,0.261545,0.762478,0.569225,0.0093084,0.23238,0.549593,0.762229,0.177577,0.737248,0.75787,0.866799,0.949154,0.973781,0.734295,0.63764,0.200259,0.763847,0.680229,0.9497,0.387047,0.0780725,0.223192,0.0373277,0.593176,0.314187,0.586784,0.121675,0.964615,0.392818,0.287273,0.695092,0.300045,0.815379,0.0894287,0.196494,0.364081,0.371837,0.251083,0.189742,0.123954,0.872707,0.433015,0.542577,0.0997373,0.737243,0.500146,0.382635,0.377434,0.0237507,0.915438,0.509532,0.0281131,0.31644,0.611744,0.720773,0.864537,0.646114,0.84428,0.86183,0.11037,0.0273669,0.208527,0.225585,0.854562,0.371035,0.250064,0.643435,0.199645,0.89138,0.902537,0.640578,0.374566,0.479677,0.486354,0.172159,0.818087,0.0209291,0.595505,0.637495,0.301451,0.627274,0.769462,0.448234,0.91031,0.295851,0.197343,0.363025,0.405576,0.611516,0.279074,0.342789,0.775324,0.661229,0.391089,0.110513,0.900567,0.0564561,0.00738418,0.451034,0.909539,0.0429989,0.323233,0.128246,0.793405,0.687198,0.432819,0.25566,0.948779,0.305489,0.261899,0.854877,0.583488,0.103286,0.982643,0.169395,0.422084,0.723939,0.0502058,0.901596,0.0526544,0.353416,0.89434,0.727072,0.557883,0.701016,0.0976317,0.297232,0.993344,0.0521351,0.45572,0.190784,0.618614,0.946295,0.458639,0.284543,0.434429,0.242344,0.805786,0.99421,0.0984817,0.423222,0.83949,0.275784,0.302576,0.133823,0.749846,0.305421,0.379651,0.986207,0.0790026,0.336484,0.00868171,0.114908,0.463595,0.633478,0.658237,0.50028,0.870081,0.6376,0.85275,0.525663,0.315489,0.0536526,0.419044,0.110545,0.964564,0.9771,0.788924,0.82431,0.587321,0.707734,0.384159,0.145536,0.891538,0.371927,0.858621,0.688795,0.622432,0.88902,0.548022,0.719042,0.0858527,0.133788,0.458416,0.572318,0.242837,0.69041,0.414627,0.341327,0.865651,0.454294,0.721906,0.400423,0.60676,0.457848,0.058665,0.282601,0.944591,0.320521,0.642592,0.898502,0.8031,0.0324812,0.0116563,0.69218,0.244985,0.990402,0.661822,0.937794,0.419412,0.00708598,0.262349,0.520023,0.00566,0.69394,0.917729,0.639661,0.66677,0.356736,0.161128,0.274231,0.904049,0.541198,0.571724,0.381474,0.37873,0.417056,0.576501,0.584018,0.0459059,0.629284,0.768748,0.49409,0.518595,0.975945,0.0927623,0.467016,0.880378,0.139376,0.40568,0.0354754,|0.917527,0.532181,0.14103,0.92415,0.184512,0.139334,0.645713,0.907666,0.349292,0.221543,0.441321,0.395311,0.342964,0.106644,0.639101,0.0182672,0.60122,0.411586,0.0438591,0.00943524,0.641448,0.465928,0.96868,0.679356,0.640334,0.141697,0.649886,0.934381,0.338314,0.889899,0.674085,0.603803,0.599147,0.685409,0.96854,0.413081,0.131991,0.198119,0.693647,0.916683,0.421563,0.157409,0.651552,0.0868292,0.174716,0.900772,0.591049,0.605554,0.163652,0.646448,0.632809,0.387833,0.288546,0.0257475,0.276603,0.399423,0.955583,0.237076,0.1753,0.0270073,0.32777,0.889928,0.129184,0.305153,0.514882,0.591341,0.71351,0.0393114,0.0460736,0.472218,0.937126,0.164604,0.178569,0.549833,0.382685,0.956427,0.650885,0.120215,0.285013,0.236282,0.545101,0.0984772,0.425413,0.48278,0.470562,0.18465,0.301196,0.239312,0.608838,0.81359,0.665952,0.269319,0.215909,0.0328298,0.886166,0.745453,0.0501726,0.260118,0.83469,0.87453,0.408147,0.075431,0.0816386,0.507085,0.658498,0.425487,0.80422,0.536146,0.666973,0.528625,0.550682,0.918943,0.58925,0.831019,0.644524,0.300973,0.801862,0.447344,0.263187,0.806767,0.423243,0.613747,0.201552,0.256811,0.954894,0.742032,0.21365,0.806408,0.58812,0.575182,0.551629,0.852342,0.281833,0.0767036,0.203521,0.43167,0.30571,0.861734,0.535609,0.618089,0.907544,0.889574,0.759081,0.253718,0.0474516,0.798494,0.129383,0.865252,0.880679,0.209747,0.6147,0.665405,0.277616,0.409168,0.754894,0.584612,0.976551,0.0983094,0.035815,0.577354,0.898767,0.0408744,0.149584,0.415112,0.445293,0.581399,0.116653,0.973521,0.838455,0.00867516,0.967341,0.270419,0.841375,0.180136,0.736805,0.120627,0.38695,0.472822,0.626163,0.997953,0.615903,0.475109,0.211824,0.704453,0.649118,0.0382845,0.473273,0.597274,0.520496,0.0892931,0.17782,0.095292,0.246419,0.245328,0.295397,0.0568692,0.788635,0.523106,0.0183718,0.837867,0.0414903,0.726406,0.481931,0.490831,0.745929,0.011094,0.0941265,0.00464016,0.205851,0.876039,0.713018,0.697647,0.808504,0.0111449,0.510009,0.50638,0.839268,0.511392,0.881063,0.217061,0.97113,0.149128,0.0413403,0.661007,0.243601,0.414998,0.141947,0.0139199,0.552362,0.0997186,0.794994,0.581146,0.667764,0.764376,0.404322,0.656002,0.891495,0.948373,0.493147,0.890495,0.20683,0.0331693,0.362723,0.444543,0.175083,0.171255,0.839409,0.649768,0.753204,0.668984,0.039467,0.947697,0.211202,0.288094,0.135802,0.752181,0.447047,0.984497,0.74046,0.569488,0.750182,0.958415,0.480754,0.287929,0.318082,0.52785,0.742024,0.329305,0.281527,0.741942,0.844881,0.0969173,0.390888,0.862825,0.795358,0.217454,0.925104,0.202408,0.869148,0.830517,0.220582,0.532335,0.641322,0.798348,0.1196,0.714527,0.252857,0.417319,0.688584,0.0139263,0.107871,0.186735,0.168938,0.324925,0.358956,0.247518,0.220389,0.756752,0.280254,0.0509661,0.472597,0.626063,0.409612,0.144596,0.730458,0.0920169,0.31881,0.261465,0.295191,0.0399156,0.145385,0.946626,0.0891461,0.485024,0.972875,0.599565,0.325591,0.4504,0.0712539,0.124288,0.970308,0.00226945,0.556158,0.722131,0.48121,0.443562,0.934036,0.12249,0.916216,0.284173,0.488844,0.859254,0.791391,0.0470833,0.345953,0.0122069,0.203231,0.999709,0.392227,0.921749,0.441172,0.427961,0.309153,0.959697,0.759498,0.852102,0.0241389,0.86992,0.154288,0.395089,0.285167,0.592405,0.460867,0.0463927,0.879955,0.80589,0.975392,0.3891,0.165237,0.0614808,0.333049,0.332181,0.141686,0.743523,0.894489,0.381536,0.0257597,0.503151,0.766532,0.87645,0.709903,0.207838,0.625128,0.854313,0.120342,0.637227,0.442638,0.645908,0.32558,0.0540845,0.483122,0.133594,0.357075,0.148468,0.84239,0.149206,0.857484,0.568977,0.222743,0.746386,0.762512,0.484695,0.570479,0.153863,0.195334,0.0358449,0.149113,0.414509,0.799192,0.916729,0.939221,0.606366,0.607681,0.349867,0.836698,0.871194,0.794911,0.557011,0.984806,0.426223,0.436307,0.956591,0.753753,0.775114,0.385973,0.832444,0.779703,0.290238,0.515279,0.972877,0.879937,0.927726,0.706679,0.337634,0.442565,0.615551,0.840131,0.366045,0.483992,0.346778,0.0416033,0.972683,0.760774,0.351816,0.159117,0.619553,0.828607,0.582007,0.902332,0.258943,0.883346,0.0911325,0.283195,0.0528094,0.826649,0.672585,0.692971,0.484547,0.0961066,0.24782,0.563989,0.730164,0.149329,0.176923,0.0374761,0.867668,0.18062,0.877553,0.972731,0.540516,0.903839,0.875107,0.425916,0.259877,0.0326899,0.866037,0.0140871,0.125405,0.0254197,0.937472,0.25523,0.73193,0.0047965,0.0495793,0.277256,0.202547,0.324372,0.856512,0.793234,0.180355,0.495265,0.226442,0.652085,0.384162,0.745648,0.772728,0.83206,0.756783,0.98332,0.944984,0.568237,0.270838,0.204205,0.706578,0.0631768,0.397554,0.479173,0.672987,0.290803,0.184751,0.624831,0.123262,0.894675,0.109195,0.140902,0.198865,0.879811,0.0323148,0.179616,0.344181,0.813519,0.466251,0.167555,0.673783,0.00986779,0.0180648,0.499908,0.766481,0.7115,0.755593,0.572107,0.742723,0.604822,0.722522,0.620203,0.948161,0.577527,0.773302,0.589648,0.91479,0.0929368,0.774357,0.109757,0.887252,0.520953,0.109765,0.627812,0.764784,0.558182,0.0923783,0.285785,0.965371,0.775031,0.872784,0.834524,0.0680285,0.192968,0.637427,0.751137,0.951425,0.0744652,0.426543,0.0415868,0.531327,0.768271,0.373752,0.406579,0.753776,0.694006,0.300804,0.0873774,0.6595,0.995285,0.746781,0.133922,0.7552,0.821315,0.666598,0.0677288,0.390979,0.298002,0.956489,0.602871,0.64167,0.0774081,0.532512,0.569566,0.0382654,0.427461,0.410258,0.450112,0.483221,0.878751,0.487678,0.52045,0.99772,0.328812,0.566871,0.404068,0.131919,0.0462322,0.709759,0.421024,0.139348,0.279078,0.245316,0.60581,0.484163,0.0109891,0.915477,0.0559445,0.0198588,0.29569,0.536472,0.374268,0.374935,0.226239,0.629084,0.142368,0.721229,0.957151,0.798522,0.802297,0.903408,0.703182,0.27153,0.701591,0.978169,0.377227,0.283448,0.157318,0.588313,0.0320182,0.428178,0.935275,0.94056,0.156909,0.672987,0.667144,0.0610279,0.15941,0.694378,0.262771,0.70633,0.501784,0.160256,0.511099,0.165283,0.224564,0.949646,0.600357,0.275773,0.53773,0.439043,0.64703,0.712428,0.598093,0.527909,0.432548,0.710468,0.206816,0.500529,0.133975,0.487095,0.654944,0.0207265,0.520274,0.62298,0.774583,0.0613855,0.636995,0.187884,0.251764,0.632818,0.36635,0.960621,0.158295,0.406299,0.347954,0.877278,0.777459,0.456491,0.618708,0.72911,0.761617,0.913597,0.462718,0.126496,0.110436,0.858764,0.219928,0.672063,0.904153,0.378881,0.711863,0.0395066,0.523274,0.2135,0.541667,0.333446,0.89922,0.432532,0.796521,0.101818,0.158269,0.948194,0.204509,0.952967,0.241305,0.426633,0.312044,0.74085,0.357012,0.869032,0.710751,0.308163,0.366641,0.439615,0.921283,0.880983,0.347356,0.737739,0.022967,0.362239,0.91659,0.53698,0.571597,0.926496,0.81823,0.770153,0.640055,0.620014,0.153985,0.0363525,0.223804,0.567423,0.257377,0.0989017,0.99467,0.315825,0.782624,0.314834,0.023323,0.66068,0.0629041,0.56592,0.269243,0.249188,0.0265561,0.0624919,0.750432,0.641071,0.0993205,0.591247,0.616433,0.0917007,0.397629,0.816513,0.19717,0.341134,0.716153,0.265572,0.680363,0.437794,0.0884135,0.654017,0.905716,0.28203,0.973938,0.605478,0.745584,0.569727,0.347164,0.36608,0.500337,0.387622,0.169653,0.524883,0.833851,0.242668,0.46252,0.0401093,0.207065,0.455241,0.687406,0.678032,0.781625,0.191155,0.967331,0.108881,0.325051,0.180995,0.91378,0.947689,0.0650047,0.107009,0.0240021,0.781373,0.667654,0.551987,0.473439,0.911688,0.131682,0.705988,0.121113,0.56248,0.974894,0.316303,0.515577,0.0831208,0.801508,0.495846,0.495144,0.728422,0.283134,0.120867,0.311326,0.463857,0.906275,0.422536,0.668678,0.333328,0.466271,0.866136,0.253349,0.484149,0.136412,0.109402,0.844883,0.947902,0.945923,0.0157432,0.675714,0.426118,0.140144,0.0839144,0.0476882,0.531239,0.477214,0.168596,0.563043,0.294595,0.905254,0.726908,0.328378,0.823132,0.129169,0.319235,0.785428,0.962878,0.252096,0.0753044,0.25764,0.952915,0.0189093,0.936199,0.304173,0.939852,0.821927,0.108488,0.594301,0.243793,0.813563,0.285093,0.64097,0.0250731,0.316843,0.541324,0.653844,0.579978,0.569842,0.734422,0.539626,0.145822,0.508948,0.682492,0.0513213,0.569528,0.389324,0.614866,0.8055,0.132472,0.844354,0.0706125,0.625495,0.237932,0.487842,0.734278,0.944636,0.761949,0.403684,0.537057,0.506335,0.0648628,0.892502,0.17344,0.0581161,0.753902,0.848988,0.146557,0.746708,0.927758,0.555651,0.183916,0.87239,0.11511,0.803069,0.744568,0.90629,0.832488,0.00662363,0.496655,0.977126,0.621033,0.565593,0.125338,0.182942,0.0315189,0.274421,0.512995,0.851145,0.578636,0.562523,0.863923,0.890459,0.422178,0.0244641,0.83386,0.669331,0.867957,0.14278,0.818858,0.753285,0.266517,0.103355,0.709597,0.434092,0.507415,0.229592,0.966226,0.665149,0.479723,0.331774,0.358666,0.867826,0.714579,0.17122,0.860627,0.339839,0.210837,0.951373,0.432406,0.0886408,0.642931,0.449785,0.532629,0.506672,0.717478,0.316915,0.31504,0.96904,0.100643,0.441716,0.854093,0.192838,0.285717,0.212023,0.320608,0.19407,0.387306,0.695948,0.470345,0.0185683,0.0150073,0.0277486,0.119473,0.775231,0.210486,0.422802,0.642117,0.858328,0.52503,0.219334,0.454578,0.723055,0.401916,0.182324,0.162363,0.987813,0.654104,0.686722,0.358241,0.54219,0.947909,0.40809,0.558609,0.0995504,0.725345,0.111868,0.684084,0.784566,0.819792,0.159255,0.282329,0.117405,0.572016,0.789913,0.433676,0.307797,0.580786,|0.749527,0.814712,0.0418872,0.952504,0.654982,0.22009,0.16215,0.978984,0.399598,0.802578,0.73241,0.104673,0.78026,0.263069,0.462961,0.631513,0.910585,0.546656,0.194554,0.765867,0.706917,0.222465,0.771833,0.682797,0.71076,0.566805,0.52313,0.98613,0.250484,0.414479,0.0164533,0.943511,0.389785,0.0967155,0.22962,0.324791,0.748551,0.714685,0.366948,0.536719,0.0440974,0.378156,0.472354,0.559435,0.588907,0.925147,0.320161,0.415098,0.559866,0.501358,0.109728,0.913406,0.231418,0.826412,0.564707,0.824599,0.0527664,0.180762,0.891092,0.398579,0.672214,0.52012,0.159625,0.73849,0.624247,0.828589,0.463001,0.785198,0.91278,0.407837,0.329541,0.434522,0.289557,0.238095,0.122782,0.223163,0.560095,0.515611,0.106895,0.608529,0.655695,0.0152382,0.886772,0.200549,0.644322,0.234661,0.953117,0.224203,0.266589,0.00801837,0.894766,0.769777,0.155406,0.993209,0.789904,0.490022,0.642667,0.586051,0.296357,0.377019,0.677732,0.320242,0.869972,0.141346,0.134608,0.0643251,0.779149,0.11721,0.201524,0.644857,0.124786,0.899027,0.459587,0.752162,0.289692,0.900698,0.611709,0.439886,0.644737,0.515393,0.0801374,0.543678,0.499988,0.0241824,0.224329,0.540728,0.627194,0.501145,0.811022,0.795931,0.0527822,0.413314,0.939717,0.987109,0.56826,0.446769,0.518606,0.92274,0.947062,0.0896443,0.475309,0.419713,0.0605398,0.886288,0.139527,0.175322,0.448786,0.14437,0.099893,0.216926,0.137871,0.839516,0.515048,0.646221,0.789592,0.685722,0.986802,0.926625,0.817466,0.815914,0.652278,0.952087,0.363754,0.76377,0.982759,0.523193,0.912182,0.118167,0.535664,0.420404,0.266032,0.368467,0.893912,0.285104,0.898746,0.045301,0.897758,0.93977,0.910742,0.25134,0.0238288,0.389373,0.85675,0.505348,0.251107,0.461036,0.365739,0.630695,0.0412598,0.052075,0.436999,0.405037,0.189947,0.200772,0.872866,0.9242,0.523692,0.402905,0.733987,0.191823,0.326672,0.229879,0.601382,0.663645,0.374532,0.0817745,0.543942,0.79623,0.143129,0.614469,0.154453,0.262428,0.300494,0.426963,0.887097,0.330471,0.900894,0.167326,0.917786,0.801486,0.356295,0.0954155,0.966387,0.226245,0.178977,0.217271,0.99275,0.297351,0.133421,0.10674,0.802312,0.0315678,0.598924,0.224189,0.968763,0.0837977,0.28251,0.558881,0.493791,0.402285,0.12063,0.480156,0.71216,0.49016,0.543214,0.404801,0.407435,0.341212,0.35428,0.736011,0.639083,0.105412,0.669236,0.428042,0.38309,0.411323,0.533906,0.943972,0.400221,0.385039,0.599952,0.378195,0.271738,0.583635,0.471359,0.359325,0.618211,0.727925,0.45814,0.694919,0.926543,0.0212219,0.626585,0.130447,0.564248,0.115058,0.923642,0.181195,0.797413,0.739016,0.850553,0.198687,0.48788,0.253289,0.175255,0.50581,0.100792,0.394338,0.786295,0.122525,0.923548,0.36937,0.874469,0.744025,0.968171,0.124883,0.798639,0.502109,0.932778,0.520726,0.405847,0.307639,0.254575,0.0899775,0.672188,0.386313,0.0536683,0.850753,0.743178,0.969311,0.545406,0.403621,0.226133,0.895419,0.326435,0.93553,0.0961773,0.611283,0.677435,0.0737697,0.323484,0.869769,0.921944,0.840545,0.161471,0.971106,0.572939,0.518744,0.0844919,0.284961,0.479267,0.487869,0.314364,0.451404,0.937861,0.328549,0.107372,0.279403,0.49558,0.526367,0.998289,0.437504,0.523624,0.211803,0.36277,0.697538,0.585792,0.684796,0.291259,0.72106,0.548352,0.5264,0.0344737,0.799009,0.372251,0.819947,0.94773,0.558871,0.0969239,0.79054,0.753351,0.737037,0.0421811,0.89467,0.927575,0.893184,0.130091,0.702802,0.404835,0.836499,0.185445,0.182362,0.402338,0.553616,0.686835,0.201924,0.445582,0.55065,0.569986,0.848763,0.765673,0.355539,0.594593,0.172337,0.591059,0.614076,0.595247,0.528013,0.363107,0.00892878,0.788757,0.061125,0.0310885,0.576896,0.534628,0.191969,0.259025,0.869766,0.394418,0.915535,0.400671,0.864218,0.703415,0.381327,0.707587,0.213138,0.286601,0.69216,0.63031,0.136023,0.473418,0.955811,0.538512,0.897143,0.978395,0.332258,0.477859,0.255094,0.306196,0.612559,0.0145577,0.553875,0.542716,0.820685,0.0637472,0.128161,0.948922,0.851424,0.198214,0.270847,0.151307,0.220227,0.809966,0.664111,0.513313,0.0736974,0.526667,0.445228,0.937602,0.242006,0.51505,0.0354579,0.197987,0.135538,0.89524,0.217972,0.799102,0.865237,0.679067,0.980502,0.338949,0.335816,0.921843,0.370998,0.950286,0.324797,0.0994059,0.354409,0.68995,0.283993,0.955358,0.324104,0.363509,0.913895,0.831422,0.571719,0.93443,0.95724,0.104538,0.0381081,0.459183,0.477775,0.773204,0.258807,0.108618,0.607187,0.839132,0.888101,0.066759,0.361974,0.172893,0.95568,0.4431,0.887146,0.734706,0.113042,0.950911,0.861322,0.647322,0.84761,0.448632,0.262814,0.739374,0.902471,0.693248,0.0961622,0.229883,0.406364,0.801252,0.30494,0.604101,0.355741,0.5938,0.281586,0.823327,0.981354,0.579562,0.456195,0.710877,0.403702,0.925194,0.154171,0.141901,0.192473,0.448279,0.904602,0.922977,0.683207,0.663901,0.560036,0.757544,0.214463,0.68201,0.691352,0.156053,0.180573,0.862826,0.560358,0.335384,0.692944,0.060013,0.86442,0.805676,0.972815,0.39497,0.0301941,0.803772,0.313459,0.751727,0.894758,0.286808,0.0596222,0.317461,0.937852,0.443384,0.374044,0.0723129,0.887444,0.471885,0.424118,0.394507,0.972286,0.599235,0.465111,0.717552,0.589489,0.0414499,0.661234,0.93951,0.512787,0.514527,0.805447,0.429701,0.240659,0.515311,0.267335,0.101745,0.929349,0.524678,0.48614,0.223709,0.935007,0.507305,0.335868,0.899162,0.999764,0.770178,0.774447,0.843882,0.757355,0.985177,0.619992,0.229187,0.297027,0.297166,0.815346,0.70773,0.872733,0.625563,0.429535,0.342022,0.896045,0.433711,0.245819,0.444087,0.170245,0.86414,0.664666,0.653565,0.744185,0.62127,0.297465,0.556994,0.924424,0.209676,0.912411,0.79274,0.866209,0.628131,0.0221683,0.519243,0.964565,0.502089,0.336737,0.520712,0.696251,0.458119,0.498217,0.873409,0.785999,0.0991767,0.255725,0.274555,0.764648,0.868739,0.928396,0.635222,0.12003,0.550865,0.0626062,0.385373,0.918642,0.144158,0.404287,0.769066,0.856945,0.960523,0.273883,0.230796,0.660232,0.102573,0.367123,0.944027,0.803871,0.758651,0.387777,0.301584,0.623802,0.958074,0.479148,0.173758,0.282623,0.480476,0.575313,0.374922,0.0298045,0.584269,0.316586,0.662961,0.653482,0.822191,0.09708,0.100275,0.0190436,0.335016,0.0794123,0.415909,0.623784,0.486209,0.109168,0.100056,0.804023,0.13171,0.687099,0.386967,0.802064,0.738731,0.349216,0.13286,0.811444,0.0669988,0.442177,0.878729,0.617907,0.286189,0.00419337,0.428212,0.779938,0.915011,0.603063,0.758077,0.381925,0.428956,0.408744,0.441037,0.0791624,0.236532,0.757331,0.31877,0.182043,0.0779939,0.100683,0.590703,0.830467,0.715207,0.879551,0.429314,0.671659,0.109428,0.74194,0.0947155,0.554968,0.772476,0.663139,0.699102,0.144661,0.12928,0.336205,0.813839,0.0196277,0.0182485,0.271368,0.237714,0.277898,0.561536,0.894954,0.67275,0.469463,0.0332755,0.260248,0.875511,0.238341,0.0424064,0.385434,0.544393,0.611637,0.221509,0.649139,0.889437,0.240564,0.523667,0.0608737,0.442543,0.967392,0.0981529,0.264485,0.130461,0.828508,0.782534,0.532275,0.742522,0.457468,0.514477,0.48579,0.789815,0.297696,0.981087,0.0441312,0.52764,0.649122,0.441897,0.836343,0.509278,0.843881,0.480663,0.0723972,0.625019,0.833362,0.28859,0.308383,0.985952,0.150758,0.643909,0.745569,0.867813,0.347817,0.598508,0.702801,0.0711555,0.754986,0.775187,0.783591,0.455186,0.443248,0.397069,0.874803,0.178308,0.30236,0.909109,0.507836,0.467844,0.973832,0.523256,0.593674,0.855469,0.956012,0.781042,0.61875,0.116643,0.175858,0.514164,0.0936285,0.780242,0.856107,0.137123,0.7962,0.0883219,0.44456,0.63941,0.401433,0.5978,0.791837,0.991716,0.192955,0.493791,0.99693,0.373484,0.133966,0.743635,0.258145,0.732891,0.0484653,0.565298,0.417032,0.157643,0.508594,0.896081,0.820084,0.185543,0.779624,0.0416213,0.700489,0.948289,0.0205886,0.194811,0.222797,0.874394,0.0858484,0.86212,0.204153,0.34265,0.742851,0.737806,0.353628,0.937049,0.124913,0.431803,0.282742,0.815906,0.695699,0.813707,0.710668,0.133492,0.493031,0.443607,0.094888,0.329045,0.944729,0.970047,0.486089,0.751432,0.533096,0.470488,0.282951,0.65691,0.711928,0.874297,0.117683,0.862576,0.0530304,0.512807,0.0852498,0.389879,0.74596,0.633995,0.255023,0.574436,0.637063,0.373276,0.962275,0.499218,0.0091207,0.150877,0.0231391,0.293918,0.593772,0.0158551,0.224826,0.141596,0.516751,0.3638,0.455358,0.740866,0.778867,0.821942,0.621343,0.0894797,0.199067,0.0262826,0.757562,0.915028,0.649325,0.332191,0.434519,0.886027,0.178796,0.546263,0.0504073,0.542613,0.636476,0.165957,0.92366,0.0124726,0.174659,0.648826,0.743797,0.336519,0.0802945,0.334651,0.403718,0.225572,0.300495,0.519973,0.434092,0.774471,0.922908,0.78569,0.438395,0.886338,0.896462,0.21596,0.225673,0.364399,0.248437,0.352268,0.769294,0.704062,0.511918,0.919093,0.967924,0.857933,0.838982,0.927385,0.668939,0.835632,0.623871,0.763971,0.521837,0.988944,0.689391,0.0359448,0.142922,0.625191,0.879373,0.857868,0.0067327,0.366871,0.174768,0.132746,0.27013,0.116473,0.0367886,0.224835,0.168923,0.453282,0.107953,0.491959,0.657519,0.0567002,0.763445,0.25786,0.132025,0.152258,0.643145,0.931122,0.875579,0.133678,0.18782,0.172008,0.292942,0.55886,0.300925,0.410643,0.791798,0.190816,0.0119015,0.48842,0.511705,0.824804,0.89766,0.140317,0.231249,0.615058,0.0803812,0.0483935,0.415628,0.111908,0.000515103,0.555772,0.606151,|0.76773,0.62484,0.498083,0.977554,0.657953,0.178643,0.402121,0.154602,0.276429,0.334159,0.454118,0.00919938,0.656082,0.775917,0.688189,0.257675,0.117249,0.978969,0.810457,0.589646,0.937214,0.435856,0.253311,0.528662,0.450907,0.414643,0.174968,0.675281,0.802145,0.646283,0.563759,0.320435,0.330174,0.206811,0.898021,0.399768,0.962015,0.508177,0.356057,0.894185,0.637493,0.0503055,0.383018,0.0541446,0.839216,0.960723,0.0082469,0.930088,0.721322,0.941037,0.681248,0.645711,0.0599814,0.881085,0.312316,0.248361,0.643721,0.576893,0.621455,0.211542,0.907791,0.858814,0.981512,0.72379,0.346306,0.712093,0.608582,0.745442,0.174,0.646627,0.391695,0.854693,0.346449,0.183937,0.526019,0.997953,0.558455,0.980312,0.330874,0.163352,0.580254,0.192292,0.716609,0.582836,0.620446,0.0467245,0.358761,0.0240408,0.694835,0.39377,0.374105,0.519212,0.183387,0.41432,0.02428,0.00485456,0.127403,0.966942,0.755651,0.806043,0.838166,0.677511,0.66496,0.202143,0.0553609,0.981209,0.877832,0.54687,0.133092,0.172134,0.414619,0.474681,0.92623,0.945227,0.416203,0.7696,0.346599,0.531004,0.76516,0.354212,0.149641,0.703758,0.401706,0.646483,0.604005,0.170862,0.829689,0.33168,0.349334,0.49975,0.481081,0.697523,0.738957,0.808808,0.40719,0.358972,0.888793,0.6724,0.796796,0.926051,0.847496,0.870781,0.127147,0.659953,0.280271,0.0916874,0.586491,0.154735,0.474634,0.535718,0.488583,0.838878,0.116265,0.475716,0.655355,0.496141,0.525733,0.57273,0.709634,0.469748,0.536252,0.974265,0.99992,0.465244,0.920984,0.506776,0.649087,0.177417,0.516267,0.688869,0.57386,0.540291,0.50256,0.689379,0.176595,0.388748,0.981526,0.134171,0.415587,0.45881,0.198039,0.850173,0.52153,0.814004,0.951581,0.453632,0.619967,0.445893,0.699054,0.323058,0.895182,0.0844696,0.853653,0.331974,0.137621,0.179978,0.0853043,0.881619,0.70389,0.230811,0.262629,0.349444,0.595938,0.101744,0.24812,0.282195,0.20626,0.591311,0.809588,0.771652,0.168679,0.834941,0.463564,0.0327297,0.644262,0.70209,0.565662,0.549722,0.834675,0.271713,0.431205,0.18728,0.37178,0.463963,0.0373811,0.397661,0.256862,0.4732,0.999163,0.898367,0.362886,0.269383,0.543709,0.394924,0.0702122,0.16156,0.36252,0.845443,0.586894,0.686387,0.363127,0.307519,0.525821,0.609754,0.946591,0.641339,0.209434,0.824716,0.0118423,0.720117,0.0787128,0.723005,0.534145,0.249696,0.721723,0.506153,0.615546,0.663993,0.565417,0.649861,0.528488,0.534301,0.424939,0.972877,0.130147,0.425535,0.51849,0.166073,0.828426,0.578279,0.022343,0.250259,0.0863544,0.45273,0.208512,0.0219067,0.0510949,0.0431615,0.106959,0.38346,0.257598,0.455116,0.55702,0.882491,0.466353,0.406379,0.426759,0.321493,0.0353768,0.672703,0.0886373,0.866213,0.0359948,0.8919,0.107467,0.697157,0.0728742,0.101539,0.0245903,0.0240593,0.859489,0.537947,0.443985,0.805083,0.051167,0.597668,0.0366036,0.578523,0.186247,0.741499,0.238401,0.455703,0.868637,0.468842,0.894058,0.649794,0.794736,0.383713,0.982182,0.28421,0.971757,0.692698,0.48955,0.0729009,0.406395,0.83484,0.71433,0.588226,0.144904,0.409568,0.718225,0.186782,0.921251,0.192197,0.538859,0.28229,0.881195,0.69071,0.752897,0.759112,0.656149,0.402005,0.275251,0.249522,0.473481,0.290585,0.465922,0.824931,0.979408,0.0106225,0.473001,0.900031,0.437813,0.687741,0.636193,0.572828,0.374834,0.344859,0.330271,0.302057,0.568089,0.756256,0.539981,0.569638,0.265885,0.26249,0.276486,0.238144,0.407731,0.274929,0.934035,0.246395,0.675857,0.0371794,0.00553191,0.781654,0.00937647,0.482983,0.966052,0.15663,0.539827,0.137782,0.423872,0.900706,0.984484,0.897252,0.0708303,0.685922,0.582917,0.203688,0.511191,0.681058,0.749577,0.0660736,0.140381,0.938302,0.882767,0.882215,0.885232,0.151767,0.226949,0.00313413,0.17116,0.0536125,0.45371,0.555564,0.574044,0.997887,0.544225,0.706067,0.95517,0.380211,0.186758,0.652332,0.26602,0.959552,0.602087,0.10042,0.785498,0.545891,0.143285,0.692574,0.186821,0.324987,0.476271,0.992006,0.321727,0.194048,0.406653,0.635114,0.778915,0.805693,0.779062,0.741815,0.00993031,0.622922,0.337281,0.843536,0.444214,0.625022,0.413814,0.857795,0.552874,0.559037,0.708292,0.0228839,0.155704,0.355623,0.414687,0.990118,0.0255753,0.477955,0.95455,0.492232,0.741688,0.188173,0.546555,0.268324,0.984607,0.923619,0.149846,0.203245,0.71728,0.95563,0.182692,0.879393,0.243812,0.648299,0.348989,0.960768,0.439078,0.0353346,0.992247,0.76375,0.746032,0.438829,0.235314,0.265575,0.445674,0.562244,0.11461,0.353062,0.940498,0.807377,0.930145,0.341464,0.784736,0.829185,0.466972,0.195245,0.0103407,0.931254,0.47884,0.78497,0.743085,0.863296,0.0536265,0.156036,0.681152,0.564061,0.206791,0.18514,0.299047,0.861058,0.624366,0.0179542,0.948865,0.992254,0.680238,0.149341,0.429621,0.953331,0.829541,0.0143462,0.48945,0.322988,0.896764,0.82384,0.361732,0.204629,0.689661,0.953854,0.506039,0.0390672,0.244103,0.856086,0.676225,0.857896,0.647857,0.702411,0.592819,0.451097,0.249416,0.0823218,0.87556,0.5632,0.787285,0.0916036,0.385457,0.801186,0.00308508,0.863122,0.15662,0.708521,0.934491,0.251014,0.38891,0.0809579,0.28034,0.221928,0.573985,0.265994,0.0748087,0.378884,0.680955,0.944509,0.576834,0.484053,0.982653,0.6032,0.920752,0.843263,0.917084,0.900499,0.698535,0.401562,0.92564,0.952711,0.744305,0.843995,0.776386,0.844716,0.67725,0.0482615,0.0991345,0.165252,0.226369,0.386399,0.411011,0.895117,0.513127,0.537948,0.961728,0.407075,0.466649,0.760352,0.720941,0.462212,0.229916,0.600952,0.10252,0.537464,0.66521,0.540606,0.114986,0.651134,0.630647,0.227988,0.842811,0.841033,0.315464,0.82751,0.958024,0.814823,0.0990128,0.991524,0.165639,0.764472,0.521653,0.396052,0.230205,0.269539,0.820115,0.918277,0.385865,0.220061,0.347365,0.973842,0.578114,0.139869,0.631491,0.513646,0.822908,0.351794,0.408657,0.23461,0.537579,0.401841,0.906046,0.849219,0.848749,0.96189,0.67706,0.653791,0.522336,0.81803,0.643377,0.0764083,0.766058,0.343807,0.608585,0.745142,0.114392,0.526781,0.353409,0.60217,0.0903983,0.174179,0.0436948,0.941563,0.742059,0.592099,0.81297,0.795984,0.719241,0.319037,0.269604,0.909742,0.730581,0.793447,0.64944,0.421073,0.965282,0.802221,0.676604,0.824101,0.137179,0.224116,0.510514,0.268672,0.834526,0.830382,0.607223,0.210304,0.0324544,0.896072,0.109484,0.832871,0.157734,0.0554746,0.617708,0.499471,0.950277,0.335841,0.390352,0.0572217,0.593517,0.924846,0.143852,0.197197,0.543098,0.733194,0.759893,0.497269,0.137104,0.628793,0.495721,0.0575441,0.504016,0.892549,0.351475,0.478036,0.0280674,0.848294,0.393207,0.200892,0.0843538,0.606156,0.171001,0.191792,0.231718,0.808312,0.235045,0.384453,0.308174,0.361869,0.612958,0.548129,0.991009,0.446597,0.989163,0.494597,0.606498,0.990756,0.409423,0.915153,0.0957,0.589864,0.00819284,0.211036,0.923149,0.664434,0.179424,0.47,0.649478,0.0502962,0.430033,0.897961,0.0364084,0.785849,0.326598,0.840783,0.976458,0.349081,0.82965,0.463584,0.323788,0.90346,0.709427,0.208081,0.597548,0.117521,0.705577,0.622658,0.523462,0.86601,0.510183,0.0195168,0.584526,0.637663,0.804471,0.613322,0.229351,0.0288951,0.158767,0.622309,0.253583,0.0485569,0.58919,0.401645,0.790464,0.771185,0.151623,0.230082,0.575191,0.949455,0.310002,0.0204842,0.485778,0.107357,0.740617,0.963927,0.670537,0.813331,0.510882,0.426466,0.251157,0.920603,0.573759,0.619469,0.31265,0.0895075,0.481384,0.746779,0.969743,0.788461,0.459784,0.211841,0.241052,0.832523,0.857247,0.372685,0.964438,0.621626,0.63361,0.958849,0.209736,0.641976,0.374218,0.210632,0.02368,0.779672,0.29283,0.288534,0.605582,0.430323,0.785811,0.855625,0.709695,0.906577,0.331508,0.78644,0.790216,0.600983,0.655888,0.665151,0.665307,0.123332,0.462831,0.650128,0.865169,0.97331,0.784691,0.438514,0.536991,0.994793,0.818986,0.49212,0.0327518,0.0417693,0.441015,0.335233,0.32944,0.0188687,0.175248,0.65972,0.741189,0.91105,0.106872,0.0388946,0.462456,0.0236698,0.579872,0.493021,0.79212,0.662338,0.864296,0.267569,0.325621,0.482459,0.996717,0.901012,0.170445,0.445374,0.857241,0.0532134,0.237663,0.285113,0.798838,0.492772,0.470568,0.606413,0.0292543,0.826285,0.223462,0.953179,0.0196243,0.936495,0.785386,0.585639,0.706435,0.937599,0.113597,0.850185,0.982711,0.19625,0.55306,0.619715,0.160867,0.87183,0.885129,0.797365,0.753473,0.358091,0.798139,0.00377905,0.134109,0.465865,0.339079,0.411753,0.601811,0.909837,0.710747,0.199104,0.275499,0.745518,0.524089,0.473691,0.571146,0.548942,0.876099,0.0100728,0.958556,0.995585,0.522096,0.285392,0.720207,0.861134,0.0434049,0.0911104,0.191605,0.334225,0.327045,0.944732,0.957126,0.246412,0.846714,0.417142,0.995053,0.957976,0.808038,0.872275,0.445039,0.787081,0.401589,0.865729,0.857794,0.692849,0.728105,0.153435,0.68423,0.821083,0.137782,0.909118,0.973536,0.121231,0.0402612,0.866645,0.264048,0.0157164,0.857942,0.366622,0.927596,0.550688,0.880979,0.608395,0.728438,0.0503036,0.28309,0.174553,0.362992,0.480999,0.336521,0.680661,0.468217,0.881851,0.703365,0.0816244,0.505212,0.27945,0.744271,0.796766,0.219921,0.0277198,0.336459,0.910082,0.326593,0.860628,0.633092,0.594958,0.0883963,0.613753,0.26978,0.523044,0.0730249,0.662607,0.0407448,0.143933,0.344227,0.87793,0.422248,0.900064,0.101658,0.0856999,0.100623,0.794708,0.172858,0.71483,0.560248,0.678475,|0.480791,0.205127,0.535278,0.804739,0.205503,0.231281,0.726912,0.397676,0.116277,0.147111,0.445231,0.178699,0.269731,0.112838,0.439843,0.976968,0.534877,0.607541,0.0658281,0.474154,0.950664,0.625056,0.841811,0.30935,0.97253,0.0966225,0.537872,0.889771,0.264135,0.280479,0.00819099,0.321229,0.0950898,0.306336,0.289295,0.195108,0.111909,0.084852,0.93647,0.173082,0.64076,0.740226,0.570017,0.197919,0.792736,0.0485288,0.581992,0.365454,0.617294,0.875978,0.517384,0.418682,0.0985225,0.176359,0.759682,0.233234,0.959841,0.0826914,0.844484,0.831452,0.396551,0.337416,0.142872,0.342529,0.447822,0.770675,0.0726328,0.530725,0.667941,0.182062,0.152178,0.72523,0.355956,0.528374,0.251024,0.5629,0.107638,0.739804,0.799059,0.705691,0.556764,0.368542,0.946545,0.527419,0.479851,0.013535,0.517885,0.281721,0.982841,0.0195166,0.267671,0.899222,0.690713,0.291157,0.397817,0.674819,0.850656,0.93209,0.783963,0.414923,0.342595,0.303159,0.874943,0.0140721,0.681659,0.574619,0.657659,0.330564,0.41738,0.508562,0.160229,0.605891,0.0226851,0.541056,0.306525,0.347435,0.624413,0.621551,0.221988,0.529162,0.0591258,0.969613,0.816913,0.398207,0.361103,0.960137,0.245895,0.00826806,0.0113972,0.492795,0.389295,0.230345,0.173917,0.477227,0.353036,0.570006,0.143038,0.0390137,0.729151,0.0617306,0.982965,0.342692,0.876277,0.824611,0.479436,0.336354,0.93696,0.771134,0.381335,0.843415,0.0484792,0.252292,0.828698,0.516624,0.795805,0.470155,0.481091,0.817384,0.557195,0.233422,0.806365,0.0624884,0.493125,0.0751849,0.0250526,0.432987,0.940213,0.805325,0.766722,0.554765,0.599603,0.305597,0.884628,0.595697,0.880212,0.617013,0.458185,0.65884,0.166189,0.486023,0.94656,0.728579,0.896607,0.569592,0.383308,0.165803,0.499422,0.877666,0.427175,0.602992,0.347004,0.116159,0.0883064,0.267812,0.669243,0.1689,0.934033,0.840393,0.799496,0.0777735,0.508031,0.254294,0.821032,0.753577,0.77112,0.742093,0.537991,0.433058,0.223361,0.818272,0.314141,0.112279,0.0123918,0.175124,0.355738,0.52303,0.226566,0.255498,0.708523,0.417736,0.708466,0.00304514,0.317835,0.146709,0.288372,0.86409,0.742418,0.668932,0.517098,0.803996,0.248583,0.897868,0.00428671,0.749677,0.989416,0.677825,0.766496,0.184826,0.154984,0.568019,0.580413,0.0869945,0.388784,0.904292,0.339187,0.64029,0.405826,0.138327,0.840007,0.631546,0.219829,0.180553,0.379771,0.461426,0.894819,0.35019,0.753052,0.00297225,0.341847,0.0553972,0.209721,0.147041,0.0617585,0.0629554,0.836156,0.512565,0.198394,0.821389,0.33526,0.887289,0.832611,0.0773754,0.0567695,0.132999,0.131386,0.568269,0.558448,0.588993,0.863025,0.693121,0.335913,0.711374,0.828442,0.130904,0.702451,0.346584,0.752528,0.532729,0.847492,0.40481,0.13754,0.843454,0.204576,0.613547,0.128102,0.526077,0.7995,0.0357867,0.68331,0.282063,0.504478,0.425173,0.18406,0.319216,0.0418917,0.533208,0.762518,0.637388,0.440681,0.36523,0.560832,0.959162,0.542179,0.10786,0.148126,0.621533,0.211807,0.696466,0.944592,0.181695,0.168465,0.829021,0.161511,0.0456124,0.48252,0.291148,0.0814694,0.47063,0.555992,0.381816,0.451527,0.464672,0.00280017,0.997733,0.713813,0.370802,0.759795,0.801234,0.715935,0.841807,0.616581,0.513067,0.358304,0.635762,0.432481,0.961239,0.758172,0.605881,0.444913,0.390263,0.743167,0.806191,0.444655,0.897451,0.0154726,0.827039,0.707599,0.505755,0.638937,0.20741,0.829866,0.855272,0.0601496,0.60349,0.950961,0.975831,0.798808,0.316368,0.846513,0.407426,0.381323,0.444134,0.407616,0.570166,0.381503,0.636707,0.236522,0.990002,0.500663,0.714296,0.500107,0.811616,0.300487,0.53376,0.836595,0.298427,0.680783,0.976858,0.779591,0.693543,0.697888,0.871149,0.553551,0.0496277,0.663811,0.771224,0.791031,0.249289,0.0292758,0.213918,0.210034,0.233703,0.100975,0.308796,0.610494,0.054309,0.471509,0.825213,0.692569,0.931919,0.712275,0.0252134,0.934308,0.749184,0.467126,0.817053,0.853757,0.569037,0.971542,0.827634,0.804356,0.108521,0.982299,0.165148,0.52662,0.209084,0.504392,0.4078,0.806017,0.938745,0.35124,0.421001,0.711515,0.843136,0.543499,0.923565,0.72243,0.539786,0.566429,0.822878,0.862203,0.456773,0.424904,0.67421,0.96527,0.415013,0.146065,0.137952,0.779916,0.00388503,0.0962153,0.23112,0.0338964,0.087349,0.690752,0.131219,0.0581655,0.451468,0.828643,0.409539,0.918839,0.978019,0.0909125,0.966443,0.785971,0.282664,0.901887,0.0298051,0.426068,0.671385,0.711357,0.143319,0.946928,0.102509,0.291824,0.291495,0.457694,0.639342,0.28645,0.19904,0.107074,0.0706022,0.509727,0.519254,0.993651,0.173694,0.701208,0.589919,0.936506,0.218553,0.150256,0.301922,0.214894,0.397641,0.516872,0.182318,0.781147,0.926086,0.698104,0.255901,0.737445,0.330097,0.688207,0.17211,0.396712,0.338875,0.183977,0.25559,0.749206,0.0113519,0.579527,0.453283,0.22796,0.946586,0.86211,0.259948,0.745542,0.621394,0.74551,0.52933,0.70732,0.509431,0.814695,0.733811,0.593418,0.639929,0.303526,0.728295,0.32138,0.866258,0.516266,0.14789,0.058706,0.221534,0.0612453,0.589048,0.715114,0.852459,0.845956,0.792232,0.353952,0.115824,0.692485,0.376134,0.0667694,0.322233,0.0386447,0.0835821,0.733277,0.203102,0.210449,0.199981,0.692828,0.803794,0.123093,0.0677345,0.630033,0.108122,0.630871,0.993334,0.865841,0.879154,0.24403,0.454481,0.620003,0.767872,0.557556,0.650171,0.41969,0.298754,0.856955,0.189049,0.765301,0.987038,0.811077,0.597272,0.405977,0.771641,0.381546,0.804082,0.0782769,0.466889,0.623334,0.932842,0.540743,0.253054,0.945878,0.276554,0.347463,0.155172,0.986316,0.211531,0.108077,0.284817,0.30312,0.0218624,0.315934,0.307163,0.857282,0.657979,0.423791,0.895955,0.0112511,0.507467,0.34022,0.124473,0.8044,0.900335,0.510943,0.398533,0.875798,0.755183,0.234989,0.338036,0.594766,0.356736,0.775158,0.309201,0.282883,0.905695,0.654459,0.462107,0.522847,0.638299,0.741128,0.511374,0.827118,0.438904,0.582637,0.808009,0.122709,0.132261,0.0603213,0.713216,0.321414,0.695494,0.422331,0.624185,0.95742,0.912057,0.787263,0.0910258,0.30754,0.487004,0.919885,0.369551,0.659891,0.392733,0.97609,0.0593517,0.544233,0.230464,0.664847,0.36649,0.218368,0.907155,0.459885,0.73641,0.177442,0.230365,0.0572915,0.493967,0.458797,0.0927553,0.747672,0.220141,0.441168,0.261866,0.362868,0.728818,0.450134,0.128806,0.853209,0.796243,0.992259,0.73249,0.333742,0.323621,0.0981531,0.593909,0.610006,0.075316,0.602498,0.868242,0.136175,0.767178,0.489752,0.253899,0.76986,0.792865,0.873084,0.582026,0.362266,0.208366,0.261641,0.612037,0.711551,0.806172,0.17049,0.011029,0.0956454,0.374367,0.805529,0.496034,0.539352,0.246144,0.623035,0.747138,0.530424,0.164203,0.0389197,0.390827,0.681461,0.775546,0.188731,0.637428,0.0159719,0.848994,0.265901,0.440734,0.0327227,0.83641,0.0746759,0.591378,0.844728,0.872502,0.115247,0.753931,0.353689,0.920949,0.629512,0.485716,0.932176,0.246443,0.59214,0.826783,0.769724,0.735109,0.963475,0.117439,0.975525,0.0456107,0.681272,0.317535,0.602864,0.209187,0.47554,0.115072,0.609222,0.999693,0.155211,0.196318,0.411923,0.332623,0.154513,0.805223,0.934174,0.87848,0.383948,0.809769,0.471786,0.420533,0.0416255,0.497707,0.295961,0.995726,0.456558,0.808769,0.122159,0.377932,0.407935,0.394761,0.702118,0.845795,0.460296,0.523402,0.0591763,0.0696691,0.191816,0.600367,0.471473,0.361275,0.101718,0.0606768,0.68905,0.425636,0.532968,0.816502,0.915201,0.266536,0.651524,0.405629,0.117098,0.807827,0.48688,0.606517,0.890381,0.39888,0.0601703,0.373374,0.423086,0.464105,0.375227,0.355171,0.690811,0.404439,0.671076,0.944626,0.691879,0.623296,0.156014,0.462026,0.0083819,0.709973,0.146541,0.0724783,0.441648,0.92149,0.274692,0.0905421,0.426317,0.545829,0.112925,0.656113,0.481066,0.66341,0.325335,0.754476,0.911553,0.408801,0.617107,0.538333,0.634621,0.705056,0.851249,0.797316,0.622417,0.342675,0.145772,0.260796,0.921528,0.659865,0.0328279,0.135153,0.903237,0.93464,0.933993,0.535785,0.495669,0.97323,0.399407,0.587685,0.868734,0.897875,0.849599,0.819932,0.0730888,0.733165,0.396417,0.678353,0.791873,0.0885177,0.390236,0.130177,0.700121,0.694626,0.37278,0.952521,0.562883,0.932815,0.789038,0.867241,0.308629,0.743998,0.0827904,0.771671,0.878469,0.516952,0.397537,0.333712,0.222508,0.38558,0.957929,0.839902,0.861474,0.369369,0.239344,0.565998,0.12252,0.268388,0.447226,0.483088,0.723707,0.0301622,0.714038,0.40948,0.302607,0.869616,0.650187,0.0226836,0.321903,0.258476,0.980382,0.206042,0.264145,0.197439,0.734552,0.533604,0.883371,0.331344,0.861606,0.575494,0.595124,0.912755,0.515865,0.364042,0.706405,0.43585,0.812051,0.0439864,0.763024,0.42301,0.74507,0.232793,0.519696,0.367935,0.590112,0.691749,0.842442,0.198384,0.820517,0.942251,0.933199,0.609591,0.163858,0.182672,0.522685,0.962076,0.500531,0.952017,0.412727,0.262487,0.623992,0.705673,0.465464,0.744642,0.186446,0.782513,0.524295,0.897984,0.0843043,0.581494,0.0782188,0.19291,0.0168712,0.151401,0.933428,0.557831,0.508102,0.084078,0.869966,0.809189,0.837462,0.891151,0.682205,0.758435,0.797044,0.397342,0.818027,0.344565,0.078611,0.90466,0.654581,0.520511,0.361523,0.980433,0.394442,0.672525,0.355798,0.77217,0.773167,0.38635,0.31833,0.470971,0.118845,0.0729699,0.393221,0.453608,0.112523,0.826598,0.695975,0.927105,0.844267,0.510773,0.724033,0.772779,0.631957,0.528957,0.873396,0.978657,|0.765017,0.840093,0.874914,0.823759,0.354424,0.393743,0.581503,0.140932,0.949804,0.330445,0.650011,0.378588,0.362434,0.24309,0.999335,0.716488,0.311655,0.975412,0.00497609,0.757508,0.983174,0.525854,0.743152,0.469682,0.953218,0.409145,0.403654,0.609421,0.57623,0.254439,0.876796,0.561527,0.44005,0.244977,0.424008,0.0108999,0.931614,0.279627,0.0908955,0.0994459,0.212116,0.221717,0.608614,0.805729,0.950639,0.347958,0.182025,0.267187,0.59605,0.156428,0.0862807,0.551319,0.537754,0.595832,0.668038,0.519119,0.17536,0.0246339,0.347699,0.152826,0.844624,0.884754,0.587252,0.939629,0.333794,0.0162739,0.827761,0.993394,0.152757,0.804804,0.928812,0.577414,0.800943,0.398421,0.462103,0.637514,0.358136,0.485117,0.253702,0.0451549,0.0251531,0.558573,0.0494747,0.216885,0.585406,0.635282,0.000440538,0.064022,0.222511,0.884901,0.0350151,0.494797,0.590162,0.593535,0.635231,0.455546,0.563222,0.886456,0.322794,0.997821,0.162843,0.782392,0.895243,0.548722,0.224263,0.467581,0.540547,0.568665,0.803553,0.537412,0.307042,0.0953507,0.443819,0.226396,0.780213,0.387173,0.497307,0.973129,0.789578,0.0429356,0.312754,0.182368,0.554636,0.065367,0.0514712,0.408607,0.80953,0.673534,0.139558,0.0646161,0.77214,0.962308,0.611499,0.951566,0.397098,0.638613,0.00441295,0.206911,0.321551,0.284218,0.360625,0.367139,0.99901,0.448885,0.960977,0.243423,0.397024,0.217332,0.297033,0.734305,0.957424,0.423647,0.364182,0.487028,0.224304,0.245685,0.00785685,0.108156,0.102108,0.670516,0.221323,0.39225,0.711606,0.800456,0.658952,0.11393,0.376469,0.48399,0.78538,0.101976,0.560474,0.803083,0.164258,0.743223,0.253739,0.285598,0.561873,0.0134538,0.109422,0.124171,0.10695,0.828932,0.911237,0.291687,0.132002,0.892668,0.632026,0.889187,0.577808,0.907261,0.0456089,0.40609,0.68148,0.86346,0.346994,0.82178,0.618147,0.132804,0.933972,0.782723,0.81885,0.749945,0.746157,0.739064,0.907658,0.731865,0.0139527,0.241048,0.772391,0.402667,0.429953,0.326043,0.675952,0.556617,0.394711,0.617114,0.875399,0.882006,0.428895,0.135717,0.372551,0.581702,0.910835,0.56367,0.784348,0.952883,0.42367,0.885244,0.956975,0.471074,0.507659,0.884688,0.728973,0.855451,0.183137,0.710741,0.315841,0.405851,0.130863,0.318153,0.674488,0.800071,0.608877,0.332176,0.68189,0.745065,0.265861,0.914419,0.353781,0.229249,0.773612,0.919871,0.990889,0.926732,0.33537,0.528505,0.348702,0.284609,0.299988,0.256982,0.62357,0.843767,0.918261,0.0226852,0.65952,0.252395,0.907973,0.185831,0.542874,0.827539,0.296923,0.976167,0.258191,0.167604,0.0923842,0.932073,0.40283,0.611161,0.415116,0.44545,0.928418,0.619492,0.979748,0.786917,0.899565,0.209483,0.902002,0.3876,0.310838,0.672327,0.0222747,0.0892045,0.000741601,0.385171,0.804738,0.273609,0.148591,0.613703,0.026435,0.222827,0.504467,0.524391,0.197818,0.935705,0.516567,0.660527,0.66264,0.469536,0.561729,0.472948,0.93125,0.927932,0.481252,0.445149,0.533792,0.744092,0.780592,0.107267,0.191686,0.0867788,0.279085,0.388282,0.706861,0.837137,0.633977,0.19368,0.63198,0.100609,0.30473,0.0870067,0.735008,0.250711,0.220807,0.664163,0.583119,0.12889,0.396814,0.00238812,0.00279135,0.706257,0.222449,0.859729,0.0414375,0.669812,0.205607,0.518827,0.855758,0.562525,0.161765,0.183835,0.540168,0.33482,0.755054,0.213359,0.911828,0.152874,0.87191,0.396562,0.293713,0.876326,0.87668,0.739242,0.0954506,0.549873,0.964808,0.68487,0.88193,0.0352715,0.463539,0.895393,0.481189,0.942719,0.459493,0.194599,0.0509431,0.418114,0.245436,0.538952,0.741674,0.0676806,0.380068,0.851189,0.370325,0.718884,0.254402,0.479589,0.797415,0.716158,0.691116,0.28677,0.699514,0.763234,0.413593,0.626966,0.385822,0.603993,0.0683414,0.94512,0.897364,0.192153,0.814144,0.129372,0.455929,0.573648,0.89117,0.335173,0.636418,0.392656,0.301164,0.9754,0.826937,0.916171,0.443208,0.334791,0.611544,0.394759,0.122733,0.223118,0.611697,0.035887,0.540468,0.160641,0.245666,0.779173,0.726011,0.562216,0.816292,0.0252377,0.852124,0.977846,0.0466855,0.646133,0.826833,0.341484,0.455283,0.838055,0.5388,0.766697,0.92951,0.241006,0.619851,0.860809,0.570343,0.171303,0.425585,0.964916,0.771084,0.492533,0.105513,0.687271,0.974797,0.52735,0.974214,0.910061,0.881453,0.375901,0.66037,0.0510453,0.98644,0.823456,0.300093,0.377995,0.711633,0.852917,0.949208,0.137817,0.516451,0.718786,0.16906,0.587671,0.278613,0.992065,0.294124,0.640755,0.257411,0.0755814,0.942081,0.226183,0.954092,0.472256,0.254953,0.207781,0.828952,0.842427,0.50582,0.520037,0.843003,0.912106,0.0543591,0.540564,0.0976786,0.468081,0.967348,0.879992,0.953121,0.328319,0.206082,0.744633,0.637204,0.152322,0.528147,0.905637,0.708456,0.614988,0.812193,0.388326,0.925194,0.724936,0.106447,0.390699,0.145628,0.247899,0.399703,0.949018,0.902033,0.573148,0.921462,0.248135,0.489575,0.145276,0.439399,0.288569,0.209113,0.388675,0.734153,0.977501,0.116624,0.970804,0.290087,0.706377,0.384483,0.848971,0.855554,0.854822,0.233494,0.17624,0.766729,0.758676,0.747853,0.665682,0.185389,0.123064,0.836483,0.454318,0.821363,0.652108,0.203852,0.25439,0.831113,0.416768,0.0328977,0.505494,0.132819,0.887354,0.512504,0.0701816,0.322729,0.177208,0.32979,0.269467,0.825451,0.575828,0.675016,0.395186,0.518278,0.129575,0.361588,0.846974,0.599439,0.500326,0.166828,0.355242,0.671371,0.575842,0.309978,0.18931,0.193199,0.955299,0.491008,0.718405,0.615254,0.934301,0.10082,0.532857,0.835591,0.624093,0.826638,0.756254,0.353593,0.909959,0.751871,0.0301569,0.980407,0.450801,0.737275,0.378455,0.0118703,0.0367227,0.65717,0.719842,0.535621,0.528153,0.246595,0.612147,0.476744,0.151577,0.525806,0.976584,0.0484897,0.52601,0.539503,0.755783,0.672813,0.0263066,0.45914,0.034724,0.205553,0.210922,0.343774,0.0193092,0.139505,0.893622,0.690941,0.2815,0.928964,0.550362,0.061402,0.145553,0.753211,0.31129,0.210231,0.446598,0.409551,0.0943406,0.766563,0.19079,0.696116,0.334351,0.469127,0.431055,0.00999296,0.45143,0.223251,0.808414,0.655316,0.836293,0.456616,0.757499,0.305978,0.28283,0.176489,0.175083,0.971463,0.66055,0.743953,0.467407,0.16929,0.181008,0.0969919,0.482287,0.883044,0.0152937,0.714847,0.60312,0.272236,0.0869021,0.927424,0.512387,0.126837,0.741195,0.93271,0.213696,0.500873,0.640699,0.66081,0.407706,0.535792,0.293253,0.236938,0.0952777,0.049826,0.812193,0.617173,0.124211,0.375274,0.393876,0.619248,0.576407,0.775807,0.663816,0.323997,0.683979,0.80037,0.970632,0.0213993,0.204406,0.0380443,0.47689,0.904995,0.764603,0.148878,0.485762,0.407868,0.202232,0.165448,0.485821,0.624994,0.826733,0.0840886,0.397106,0.614107,0.27626,0.961327,0.42445,0.721476,0.496341,0.52314,0.477531,0.366414,0.48621,0.652959,0.165621,0.394263,0.580247,0.173561,0.202712,0.545277,0.934857,0.0450355,0.244145,0.289047,0.586337,0.262285,0.624164,0.668025,0.925648,0.43878,0.0699151,0.414621,0.780907,0.726486,0.570077,0.455472,0.648265,0.319097,0.0717728,0.663851,0.661483,0.970011,0.00601763,0.181196,0.910582,0.679686,0.682468,0.860721,0.710491,0.863436,0.181195,0.629362,0.780765,0.788492,0.226538,0.131767,0.795709,0.905799,0.389177,0.961763,0.704465,0.711081,0.0261852,0.511101,0.818475,0.489584,0.687801,0.302906,0.0978531,0.321726,0.132805,0.953813,0.243635,0.399624,0.220237,0.382418,0.941507,0.625986,0.328282,0.643709,0.910941,0.197434,0.0902843,0.0517412,0.0388598,0.290784,0.90939,0.668084,0.0397905,0.764488,0.0640699,0.83681,0.868634,0.10103,0.753539,0.213128,0.592716,0.945002,0.42359,0.897638,0.193955,0.389919,0.36269,0.953758,0.90554,0.0506948,0.110053,0.0953627,0.984322,0.540552,0.972085,0.357087,0.863809,0.0310224,0.774321,0.424213,0.1024,0.019962,0.953109,0.0771658,0.717675,0.944412,0.439222,0.966053,0.233728,0.215639,0.477201,0.652376,0.99335,0.0221681,0.0493821,0.379411,0.401256,0.3237,0.971077,0.116287,0.477113,0.295755,0.294173,0.636578,0.20777,0.0899656,0.546389,0.15124,0.281218,0.960864,0.768513,0.00427139,0.276052,0.00239211,0.440004,0.981789,0.780587,0.582323,0.112622,0.627707,0.889155,0.4139,0.00117034,0.393535,0.849901,0.605285,0.378113,0.382894,0.244042,0.857681,0.495135,0.125175,0.97229,0.932938,0.272637,0.418285,0.99286,0.30043,0.326625,0.126345,0.639487,0.759218,0.608648,0.0428913,0.696508,0.0431502,0.565037,0.870654,0.274227,0.0322292,0.678441,0.103899,0.0159523,0.088571,0.951884,0.815298,0.773303,0.0881616,0.0479402,0.103292,0.741204,0.591421,0.30999,0.303101,0.909597,0.133634,0.265932,0.12309,0.353402,0.478965,0.213453,0.346477,0.150476,0.536282,0.282031,0.85169,0.693464,0.905556,0.843707,0.592609,0.808751,0.996843,0.416018,0.541005,0.791389,0.247048,0.0217514,0.487208,0.66078,0.427145,0.295745,0.156723,0.577318,0.367467,0.864012,0.325391,0.842706,0.948764,0.436228,0.660659,0.653685,0.148884,0.680766,0.354267,0.0913537,0.16544,0.465973,0.141907,0.671872,0.287704,0.0834165,0.386348,0.770636,0.799218,0.040525,0.176657,0.660355,0.705048,0.176132,0.855981,0.636848,0.551027,0.859094,0.616111,0.224753,0.632983,0.495191,0.823801,0.867079,0.683147,0.160953,0.923485,0.885029,0.218683,0.493262,0.172127,0.955155,0.78052,0.93357,0.132021,0.730477,0.131948,0.766315,0.564771,0.473442,0.398456,0.631573,0.688553,0.921305,0.446628,0.953753,0.779522,0.620276,0.741832,0.4505,0.0837625,0.612689,|0.90789,0.389742,0.585209,0.15559,0.37008,0.869142,0.195904,0.82281,0.811167,0.901666,0.288817,0.310842,0.533538,0.0144566,0.54608,0.785592,0.425937,0.98189,0.773341,0.15282,0.0922924,0.979262,0.516347,0.223522,0.817007,0.244465,0.167992,0.749004,0.0780172,0.406988,0.828513,0.972548,0.686247,0.0826519,0.842627,0.0694252,0.0241485,0.0473374,0.471076,0.0316561,0.176429,0.88313,0.229841,0.0623477,0.747848,0.807772,0.657704,0.682448,0.643484,0.0602109,0.531352,0.030336,0.819872,0.800215,0.056357,0.571206,0.661851,0.0171279,0.465908,0.65285,0.257306,0.926772,0.612206,0.552993,0.512546,0.437145,0.410166,0.549082,0.69175,0.815064,0.812948,0.497808,0.0274482,0.1835,0.350509,0.62978,0.966944,0.641096,0.0877581,0.818266,0.059787,0.146108,0.431414,0.496547,0.0793963,0.0399364,0.198647,0.384672,0.368696,0.576254,0.724535,0.275398,0.225933,0.774706,0.680237,0.963252,0.872703,0.121493,0.0513364,0.413817,0.527435,0.907076,0.935257,0.0575777,0.128399,0.424432,0.40225,0.863261,0.806032,0.313683,0.82893,0.954913,0.0118817,0.637774,0.638152,0.043008,0.182011,0.950527,0.473333,0.969977,0.0475038,0.835166,0.114311,0.592754,0.624538,0.841394,0.853115,0.65795,0.78786,0.0491356,0.353083,0.933193,0.248895,0.471564,0.284372,0.107603,0.20677,0.0226571,0.267521,0.268542,0.0601212,0.709045,0.201601,0.369442,0.541582,0.787809,0.299138,0.088378,0.169044,0.804247,0.612014,0.957024,0.624623,0.306646,0.501468,0.71402,0.447412,0.806594,0.298211,0.545001,0.846625,0.951661,0.277356,0.932002,0.685173,0.362075,0.697301,0.503346,0.161065,0.195112,0.249644,0.294926,0.167542,0.641313,0.805602,0.0118932,0.839567,0.203026,0.123051,0.80002,0.915085,0.988188,0.656377,0.71708,0.150686,0.828473,0.64999,0.499816,0.861572,0.393427,0.28439,0.0568883,0.585023,0.275602,0.0788422,0.861383,0.219863,0.211809,0.0194757,0.621824,0.712555,0.258751,0.753321,0.987466,0.495344,0.333135,0.422195,0.729972,0.543171,0.966728,0.252347,0.0204125,0.204836,0.0433471,0.922533,0.0722036,0.65137,0.0794321,0.774398,0.372894,0.99872,0.13934,0.705774,0.0525107,0.564003,0.516461,0.732769,0.289863,0.64529,0.424607,0.93022,0.66802,0.546861,0.278543,0.71941,0.199474,0.266042,0.118559,0.992957,0.42204,0.0245732,0.455958,0.934063,0.477573,0.0838283,0.129462,0.818794,0.885476,0.659008,0.421898,0.520285,0.980497,0.760546,0.531761,0.509197,0.771177,0.741969,0.450577,0.751579,0.11937,0.955599,0.25557,0.727274,0.687656,0.903448,0.825195,0.288204,0.550803,0.191361,0.797922,0.503111,0.421962,0.158558,0.380423,0.226098,0.99864,0.464487,0.878187,0.998253,0.564021,0.63766,0.852319,0.964942,0.506872,0.48225,0.416687,0.26642,0.643621,0.0169089,0.883862,0.323099,0.718238,0.837977,0.994538,0.878488,0.383234,0.076181,0.393626,0.0318559,0.46023,0.553748,0.220091,0.754685,0.668211,0.0324221,0.448004,0.578274,0.713131,0.0131583,0.378043,0.265464,0.388738,0.34975,0.916832,0.258408,0.777229,0.600539,0.229059,0.725057,0.808265,0.858739,0.472549,0.509634,0.425281,0.0726405,0.0325744,0.0919,0.200445,0.517592,0.940164,0.618489,0.506586,0.589634,0.521843,0.00156873,0.882706,0.132747,0.956071,0.148775,0.185414,0.247399,0.316328,0.528161,0.928148,0.209767,0.882139,0.443015,0.0555224,0.379897,0.339495,0.543971,0.238693,0.198364,0.958335,0.333637,0.443561,0.577548,0.703202,0.492069,0.761233,0.636036,0.301518,0.308254,0.419721,0.233875,0.426555,0.75775,0.525609,0.212431,0.82042,0.133479,0.983882,0.825808,0.160527,0.448357,0.0906528,0.901527,0.929703,0.278153,0.0756064,0.888731,0.981903,0.140457,0.226511,0.51259,0.0606873,0.539248,0.643133,0.241141,0.887307,0.463947,0.838133,0.081965,0.574977,0.503418,0.196366,0.251447,0.838705,0.100978,0.749537,0.909949,0.75813,0.0632656,0.254862,0.0990412,0.0243417,0.659821,0.380139,0.2251,0.879585,0.690174,0.905017,0.363496,0.698457,0.866242,0.0519826,0.753751,0.294749,0.261939,0.354658,0.0393114,0.141488,0.253714,0.382875,0.963045,0.900489,0.0660027,0.836845,0.226567,0.699228,0.467648,0.892103,0.150951,0.499896,0.599115,0.802813,0.905581,0.68612,0.959131,0.857324,0.23314,0.10292,0.985365,0.0774738,0.568407,0.624134,0.116209,0.267009,0.115298,0.148009,0.343524,0.543451,0.415725,0.196218,0.426574,0.258002,0.270265,0.379024,0.142548,0.160031,0.313271,0.832604,0.396831,0.576421,0.28689,0.652225,0.995996,0.373659,0.252033,0.257125,0.858398,0.872905,0.864306,0.829536,0.508356,0.295851,0.513181,0.175827,0.879698,0.889105,0.336747,0.695834,0.00408387,0.551755,0.613639,0.222361,0.733342,0.219237,0.615363,0.687777,0.280252,0.615166,0.451971,0.559444,0.565111,0.0668097,0.590753,0.447905,0.292216,0.555803,0.638994,0.959877,0.850132,0.0814856,0.0341652,0.521698,0.99903,0.653742,0.733312,0.172935,0.253391,0.190175,0.477553,0.415058,0.815197,0.596951,0.984264,0.0255878,0.171506,0.0590655,0.767004,0.376208,0.340692,0.904748,0.383678,0.89111,0.0625809,0.680439,0.604738,0.0309355,0.215927,0.975874,0.290566,0.821897,0.468597,0.853858,0.393409,0.0147337,0.710097,0.0346997,0.740268,0.611483,0.344744,0.751765,0.108574,0.439242,0.66864,0.813722,0.42864,0.10014,0.0337188,0.0169469,0.165667,0.0810863,0.391804,0.805909,0.0144889,0.847477,0.0346711,0.442633,0.011417,0.598177,0.397619,0.28863,0.970533,0.528574,0.164554,0.718054,0.171421,0.82908,0.275096,0.0184477,0.601121,0.0698716,0.347277,0.558509,0.666021,0.80088,0.155885,0.325834,0.459554,0.630029,0.158352,0.92829,0.764649,0.460039,0.30162,0.226035,0.445364,0.138613,0.0541951,0.274981,0.851168,0.889126,0.134596,0.382219,0.184458,0.288625,0.753159,0.0954549,0.970887,0.801204,0.108172,0.00134957,0.122051,0.162826,0.524536,0.12649,0.0196036,0.110596,0.665041,0.922075,0.633115,0.135423,0.541254,0.823637,0.734005,0.418994,0.511177,0.907509,0.45148,0.683806,0.934088,0.737723,0.366361,0.813109,0.254465,0.310813,0.725843,0.764784,0.576293,0.295131,0.214983,0.993023,0.47405,0.576,0.0527735,0.0594886,0.717606,0.470935,0.60607,0.477372,0.761051,0.202748,0.963771,0.643747,0.0346811,0.328831,0.628444,0.812212,0.371582,0.603058,0.706414,0.695022,0.748272,0.21167,0.325114,0.201898,0.36013,0.521634,0.585503,0.294849,0.390644,0.205171,0.334614,0.693589,0.815238,0.788943,0.538891,0.951003,0.285153,0.021849,0.0746669,0.938664,0.0853856,0.341637,0.150519,0.0589555,0.466653,0.74957,0.998924,0.906178,0.68152,0.748322,0.729113,0.338955,0.390002,0.696706,0.592175,0.615901,0.325593,0.950579,0.91291,0.698476,0.757223,0.196835,0.468378,0.405287,0.714946,0.0945846,0.582865,0.360535,0.172614,0.397361,0.650397,0.271707,0.621901,0.507238,0.0249977,0.272292,0.111054,0.960045,0.128712,0.925461,0.0630202,0.0863426,0.316234,0.981286,0.396462,0.332405,0.262662,0.0912098,0.666647,0.931153,0.823791,0.876155,0.873394,0.161481,0.371885,0.303941,0.946543,0.99103,0.825731,0.921366,0.721689,0.0560551,0.975407,0.0413497,0.252319,0.515314,0.433996,0.107821,0.515762,0.283303,0.908228,0.562724,0.885794,0.907704,0.62452,0.688713,0.948583,0.263912,0.0176741,0.40628,0.303318,0.283179,0.605821,0.581375,0.922561,0.68525,0.682824,0.354001,0.75701,0.179012,0.802234,0.895862,0.681965,0.314696,0.786071,0.26866,0.785679,0.0722999,0.218095,0.373095,0.0954575,0.231103,0.151895,0.580188,0.228478,0.691102,0.661417,0.899453,0.48557,0.593139,0.835982,0.0179328,0.970886,0.213318,0.941626,0.51266,0.756693,0.76368,0.108389,0.415096,0.836547,0.82248,0.20098,0.29345,0.145823,0.116532,0.616975,0.623918,0.540098,0.417136,0.840456,0.472089,0.706784,0.565798,0.628649,0.863098,0.413807,0.0653547,0.784953,0.491976,0.29887,0.447151,0.0441123,0.508798,0.700455,0.755449,0.813955,0.993288,0.0348924,0.634675,0.576463,0.97833,0.416207,0.957834,0.879719,0.950464,0.114578,0.25575,0.326881,0.589409,0.0767936,0.683386,0.846653,0.032195,0.187908,0.67971,0.0899513,0.422201,0.626361,0.10847,0.973582,0.335059,0.546052,0.808342,0.961672,0.41352,0.825054,0.248742,0.811593,0.348833,0.404429,0.673467,0.89855,0.895391,0.993331,0.655871,0.0442501,0.23371,0.552427,0.891318,0.9292,0.594121,0.524675,0.912608,0.846921,0.898218,0.365498,0.223879,0.599047,0.17557,0.0358429,0.00336081,0.545615,0.172283,0.533609,0.0728169,0.884403,0.905149,0.771213,0.513265,0.559996,0.840088,0.760458,0.907824,0.222669,0.727432,0.981877,0.00275147,0.580748,0.878231,0.644854,0.704518,0.191595,0.821884,0.970855,0.677627,0.598915,0.187675,0.469028,0.728901,0.374026,0.30182,0.476868,0.194796,0.208686,0.445454,0.693264,0.423733,0.0627894,0.0804791,0.861518,0.101261,0.365569,0.636571,0.669813,0.533344,0.931419,0.846183,0.0781374,0.481016,0.41712,0.176514,0.663334,0.24292,0.886962,0.260501,0.527206,0.0466995,0.0935434,0.687003,0.866993,0.276101,0.307532,0.169249,0.339947,0.512083,0.596977,0.0742641,0.901602,0.987231,0.13201,0.914155,0.900716,0.258686,0.0900846,0.15802,0.558995,0.180083,0.63203,0.760668,0.790079,0.885831,0.13595,0.419721,0.522487,0.454562,0.312918,0.928741,0.963991,0.824094,0.533086,0.476654,0.462317,0.48661,0.399343,0.242188,0.723647,0.285117,0.0750563,0.944172,0.84188,0.493205,0.566904,0.540466,0.394069,0.227806,0.744173,0.207365,0.377241,0.275169,0.288451,0.413365,0.352443,0.841043,0.390712,0.143687,0.982612,0.698083,0.0654407,0.236313,0.74715,0.44654,0.776565,0.489946,0.119212,0.481686,|0.371752,0.655115,0.150759,0.555875,0.798173,0.436146,0.335708,0.687962,0.145839,0.617888,0.384455,0.699552,0.337298,0.515238,0.442793,0.540416,0.834468,0.271896,0.978992,0.122879,0.157094,0.565619,0.746152,0.518193,0.944518,0.260124,0.83797,0.56968,0.214974,0.429323,0.645082,0.395585,0.05351,0.789619,0.0105015,0.0944944,0.8821,0.58427,0.293555,0.302527,0.603788,0.429319,0.741081,0.287219,0.770975,0.186013,0.165124,0.178801,0.312063,0.340432,0.513172,0.820489,0.480361,0.708973,0.478224,0.288175,0.486863,0.536019,0.122975,0.952948,0.869201,0.509442,0.898333,0.39793,0.404046,0.553398,0.110107,0.292069,0.517904,0.904341,0.161119,0.911709,0.42239,0.649479,0.0549844,0.298139,0.251842,0.262904,0.736659,0.589519,0.344754,0.161466,0.335104,0.571116,0.283561,0.710581,0.465126,0.818885,0.406233,0.0405384,0.744445,0.0615436,0.00115401,0.201379,0.792139,0.60967,0.598484,0.19734,0.271274,0.0416219,0.739177,0.312078,0.466319,0.842247,0.0323848,0.150278,0.500178,0.547022,0.941408,0.0991271,0.269395,0.288414,0.153043,0.307732,0.84948,0.262651,0.310892,0.366818,0.703404,0.945504,0.934399,0.542624,0.164464,0.749143,0.8066,0.454674,0.0221791,0.453511,0.628375,0.568174,0.563588,0.00744247,0.786667,0.671517,0.491556,0.689395,0.393163,0.198291,0.732794,0.204374,0.478826,0.694735,0.678674,0.463575,0.148963,0.0479366,0.737783,0.398014,0.75304,0.0344394,0.927007,0.377109,0.22167,0.818123,0.456286,0.0284605,0.211347,0.520021,0.540519,0.431429,0.998849,0.331267,0.412435,0.858006,0.473203,0.878064,0.647248,0.792802,0.303963,0.271582,0.106167,0.632262,0.696181,0.369076,0.00881231,0.460217,0.690784,0.215693,0.439786,0.325896,0.242861,0.327509,0.26841,0.0732238,0.983951,0.341443,0.956316,0.510067,0.941455,0.526046,0.769764,0.510757,0.649049,0.654678,0.747309,0.319208,0.488898,0.210331,0.94602,0.597125,0.308295,0.950985,0.562719,0.75787,0.673598,0.285114,0.470276,0.238469,0.291016,0.15195,0.47795,0.197858,0.893242,0.191825,0.00645185,0.162906,0.155208,0.081063,0.111251,0.99083,0.338784,0.577918,0.305014,0.486626,0.339785,0.880245,0.823497,0.383639,0.358895,0.206113,0.904194,0.824382,0.324354,0.707637,0.5608,0.298461,0.997084,0.152252,0.728999,0.567143,0.00789332,0.453459,0.437659,0.725292,0.255094,0.963963,0.552158,0.84201,0.975664,0.622644,0.344651,0.502322,0.857005,0.0737534,0.630524,0.655224,0.900099,0.0434172,0.0449949,0.835978,0.755412,0.924251,0.331946,0.745682,0.404076,0.657247,0.20548,0.260929,0.582307,0.371306,0.967619,0.147528,0.113421,0.133387,0.876131,0.224109,0.488375,0.312808,0.0595606,0.787839,0.037484,0.737299,0.62394,0.159247,0.00235891,0.149514,0.0399066,0.94799,0.403459,0.668184,0.397387,0.601962,0.839912,0.108804,0.407377,0.887309,0.0357593,0.216272,0.626907,0.612759,0.449014,0.347295,0.659277,0.995401,0.36057,0.381044,0.684608,0.486252,0.979909,0.16118,0.621367,0.873128,0.296906,0.155797,0.205844,0.39988,0.655701,0.0152821,0.634364,0.432886,0.858212,0.248024,0.721527,0.157382,0.810435,0.729882,0.962219,0.703315,0.524622,0.516773,0.304523,0.320961,0.767961,0.595253,0.596898,0.440217,0.685975,0.909477,0.330495,0.181623,0.30475,0.0975132,0.628758,0.142033,0.122347,0.0681418,0.113249,0.560271,0.865239,0.295292,0.573247,0.817768,0.771783,0.581957,0.822845,0.146278,0.497954,0.0657609,0.0296944,0.314695,0.737456,0.320911,0.301983,0.701707,0.599291,0.973963,0.506219,0.819881,0.73179,0.693664,0.924253,0.452646,0.067443,0.148114,0.239148,0.357881,0.241271,0.499151,0.744383,0.348758,0.727032,0.410844,0.350508,0.0421502,0.95209,0.758474,0.503088,0.856917,0.51126,0.472351,0.368975,0.0116237,0.0975535,0.342941,0.557157,0.369736,0.120275,0.632852,0.485117,0.439986,0.0750076,0.857546,0.560332,0.184752,0.252344,0.936402,0.888601,0.487537,0.233266,0.277811,0.565513,0.943777,0.135247,0.861044,0.30899,0.28765,0.66575,0.917885,0.674821,0.570379,0.476526,0.603633,0.646848,0.242065,0.103292,0.515072,0.389033,0.389539,0.323701,0.174459,0.939963,0.127549,0.643199,0.868133,0.269426,0.675047,0.289164,0.245992,0.973895,0.163044,0.677499,0.53418,0.337239,0.380566,0.684611,0.247814,0.773484,0.0665967,0.123226,0.94852,0.0196786,0.846872,0.909569,0.862771,0.279125,0.845563,0.963068,0.912393,0.188909,0.318874,0.363409,0.000926137,0.178079,0.132999,0.837158,0.439748,0.278896,0.0636843,0.850682,0.595568,0.597599,0.703397,0.377593,0.335295,0.376637,0.359721,0.240691,0.477462,0.925446,0.717071,0.601197,0.850204,0.594138,0.389744,0.582123,0.853103,0.233443,0.408715,0.233836,0.967285,0.755461,0.408738,0.182517,0.675136,0.87916,0.868128,0.608906,0.763448,0.155212,0.764064,0.504419,0.356441,0.318144,0.563941,0.540129,0.679022,0.924675,0.722457,0.212893,0.945451,0.956569,0.704062,0.0566146,0.563715,0.889203,0.383243,0.712646,0.912069,0.40936,0.240396,0.0615954,0.087674,0.265121,0.160439,0.241218,0.373194,0.273381,0.328144,0.772769,0.200443,0.160238,0.818716,0.33337,0.760274,0.85534,0.000529647,0.507109,0.724532,0.940595,0.298737,0.353771,0.596457,0.383438,0.810549,0.73061,0.762794,0.561202,0.974638,0.361851,0.345282,0.661443,0.317696,0.845393,0.417329,0.837834,0.077292,0.44047,0.637744,0.918349,0.846879,0.396601,0.664188,0.0188346,0.542407,0.291341,0.773101,0.937635,0.691841,0.873556,0.0473654,0.922736,0.759905,0.16422,0.853026,0.719025,0.865691,0.0632357,0.708899,0.218784,0.352959,0.1641,0.777916,0.838494,0.139152,0.842823,0.693933,0.165915,0.82745,0.0927486,0.604783,0.442619,0.975105,0.221404,0.17357,0.383849,0.642783,0.97005,0.821064,0.01789,0.971344,0.539546,0.546886,0.0973353,0.639002,0.663203,0.701573,0.173557,0.586516,0.815586,0.33968,0.975877,0.787828,0.46839,0.659446,0.143496,0.479766,0.626707,0.738689,0.415819,0.770764,0.16534,0.831377,0.888239,0.748315,0.133339,0.166028,0.690512,0.209311,0.581348,0.838536,0.985832,0.637285,0.346875,0.435756,0.793976,0.669231,0.483577,0.0258695,0.663393,0.840869,0.548204,0.347629,0.252367,0.695032,0.115141,0.157164,0.0677025,0.109686,0.148222,0.272254,0.188594,0.206673,0.633116,0.766968,0.0545896,0.954827,0.46037,0.788848,0.628154,0.13513,0.106936,0.588894,0.183604,0.876682,0.572923,0.130902,0.348124,0.419235,0.559401,0.733252,0.810886,0.289636,0.345225,0.101602,0.265591,0.277334,0.448842,0.434447,0.570239,0.200443,0.643077,0.869923,0.184805,0.949354,0.933282,0.65548,0.164801,0.231143,0.0457502,0.689658,0.716988,0.839219,0.392232,0.966905,0.0505402,0.0387074,0.954881,0.682269,0.384121,0.448508,0.278091,0.905978,0.309594,0.971177,0.543968,0.03972,0.185254,0.296181,0.437457,0.157153,0.870944,0.454233,0.588884,0.712674,0.724758,0.638391,0.77005,0.280256,0.339939,0.585993,0.119197,0.302171,0.149205,0.271709,0.553027,0.572206,0.952373,0.248913,0.288803,0.295342,0.746692,0.584334,0.694837,0.387306,0.0604717,0.599749,0.092489,0.0311366,0.79681,0.780195,0.160832,0.575014,0.739559,0.387328,0.542714,0.596215,0.781321,0.000479937,0.863345,0.415927,0.566631,0.144332,0.135838,0.578011,0.719018,0.884747,0.990335,0.512469,0.689023,0.803472,0.773494,0.526262,0.114154,0.137491,0.670107,0.0520064,0.40802,0.760425,0.737032,0.17231,0.81594,0.440941,0.135939,0.168932,0.264161,0.844257,0.0201106,0.806949,0.314274,0.876792,0.880612,0.0771149,0.203779,0.0896435,0.840246,0.0845472,0.654031,0.701817,0.15878,0.015653,0.286099,0.573567,0.835846,0.493126,0.0344285,0.490184,0.0645865,0.5479,0.577922,0.248483,0.549772,0.00272149,0.52076,0.715315,0.254851,0.742534,0.886936,0.546486,0.142399,0.607412,0.971123,0.744744,0.29198,0.36705,0.741559,0.873092,0.941926,0.00209427,0.2353,0.191359,0.162244,0.40448,0.329928,0.134868,0.110506,0.937482,0.949164,0.445843,0.546653,0.938232,0.594365,0.658648,0.520643,0.551966,0.742708,0.616433,0.888613,0.766933,0.199316,0.0335782,0.405054,0.0797565,0.00619644,0.367614,0.493193,0.611021,0.590253,0.95896,0.524025,0.887679,0.216709,0.712226,0.0804099,0.587774,0.739558,0.363699,0.458196,0.208391,0.647519,0.735756,0.520304,0.786971,0.229577,0.580074,0.124582,0.264409,0.876052,0.21636,0.174612,0.704682,0.236172,0.355379,0.363431,0.910605,0.8537,0.779519,0.356311,0.72754,0.824749,0.231955,0.395772,0.84242,0.992234,0.402194,0.50159,0.0323619,0.605442,0.542553,0.555716,0.839285,0.864043,0.546895,0.042319,0.964737,0.406815,0.0483052,0.881956,0.44564,0.863325,0.882594,0.406878,0.461017,0.566538,0.883087,0.656494,0.733266,0.392579,0.752678,0.776794,0.412434,0.681293,0.775753,0.896849,0.341708,0.344422,0.510758,0.4575,0.27871,0.799103,0.923094,0.610706,0.361639,0.97625,0.184502,0.424631,0.926098,0.244713,0.682726,0.95663,0.254175,0.637417,0.182448,0.157614,0.87721,0.0369152,0.586359,0.550757,0.428299,0.397446,0.297723,0.818596,0.138406,0.83538,0.84199,0.291481,0.0981938,0.802521,0.512033,0.713151,0.248388,0.112095,0.079251,0.472272,0.045367,0.960542,0.0570644,0.252387,0.842156,0.462507,0.229599,0.0163305,0.884946,0.804953,0.503842,0.0496837,0.685859,0.978479,0.237259,0.839405,0.118193,0.131464,0.354024,0.304274,0.910369,0.888836,0.600278,0.270158,0.741317,0.914614,0.709225,0.484932,0.362269,0.218734,0.0411248,0.465748,0.572246,0.659974,0.211651,0.803409,0.771749,0.986378,0.280373,0.719588,0.0487575,0.723242,0.317514,0.682384,0.938289,0.114421,0.853919,|0.830498,0.199675,0.727389,0.792406,0.813283,0.791263,0.346894,0.221015,0.991203,0.541405,0.336486,0.486138,0.810096,0.433715,0.803873,0.279103,0.547754,0.963134,0.39336,0.29298,0.182974,0.690168,0.0673124,0.185404,0.518997,0.130646,0.306875,0.677587,0.691957,0.172284,0.665134,0.416861,0.483454,0.324074,0.420824,0.575234,0.180452,0.940628,0.861362,0.585929,0.241645,0.114131,0.113046,0.882644,0.834184,0.656783,0.470926,0.148952,0.514565,0.245964,0.88025,0.97366,0.281539,0.721542,0.878863,0.88848,0.214054,0.958727,0.199194,0.701991,0.0259989,0.258023,0.9849,0.633074,0.525547,0.256755,0.833706,0.882059,0.379828,0.944892,0.653057,0.933431,0.512391,0.866338,0.56039,0.448759,0.965794,0.357127,0.930402,0.249928,0.0267693,0.150157,0.836136,0.503965,0.877962,0.0296658,0.485319,0.997391,0.364776,0.211263,0.959742,0.335674,0.0936169,0.540699,0.741953,0.209506,0.211487,0.491041,0.75287,0.96546,0.436257,0.401326,0.688774,0.0579153,0.195296,0.223388,0.450494,0.605215,0.392589,0.502429,0.0247137,0.193615,0.835568,0.233992,0.0857948,0.539499,0.83116,0.689558,0.0730456,0.957537,0.847658,0.721534,0.716922,0.971592,0.795224,0.627791,0.584165,0.971372,0.231478,0.616419,0.524267,0.241757,0.738571,0.258815,0.772241,0.913893,0.488678,0.328165,0.882104,0.649629,0.627671,0.722554,0.0845867,0.0546584,0.282978,0.133793,0.401478,0.642658,0.558911,0.0568124,0.275455,0.892721,0.92126,0.0357972,0.483623,0.76665,0.375622,0.541962,0.115204,0.162401,0.225596,0.794374,0.0211973,0.492089,0.507663,0.0136878,0.518667,0.271746,0.857131,0.791846,0.0931266,0.0817444,0.272215,0.527507,0.196286,0.193905,0.541941,0.738442,0.31778,0.124922,0.539225,0.777694,0.358809,0.987209,0.922076,0.623702,0.840449,0.545793,0.431577,0.396603,0.227561,0.800852,0.0551016,0.16129,0.849342,0.996217,0.385244,0.0958697,0.685172,0.616508,0.00414526,0.485339,0.972211,0.491211,0.825858,0.23386,0.991046,0.146487,0.10333,0.149175,0.76232,0.268243,0.816016,0.0968192,0.874322,0.737159,0.537166,0.889275,0.436813,0.930004,0.401294,0.986581,0.176653,0.267999,0.690455,0.624033,0.846447,0.811016,0.0797416,0.158581,0.299639,0.738976,0.959458,0.0674847,0.491607,0.661649,0.198483,0.437717,0.334535,0.795834,0.823067,0.207521,0.293151,0.647203,0.714562,0.675547,0.543165,0.044705,0.163312,0.218425,0.692906,0.707487,0.462402,0.459951,0.361924,0.903747,0.562132,0.961905,0.062597,0.755757,0.871281,0.0805095,0.261468,0.115113,0.999368,0.662097,0.506396,0.00671637,0.292604,0.695662,0.307346,0.319691,0.352363,0.39645,0.108804,0.452246,0.564447,0.684132,0.958992,0.23629,0.333047,0.218978,0.0168938,0.246896,0.600489,0.368074,0.171002,0.840521,0.977327,0.149408,0.832436,0.238083,0.0406659,0.152325,0.0460516,0.828149,0.19153,0.243774,0.990062,0.53272,0.229234,0.0121097,0.603581,0.194874,0.23946,0.188666,0.995245,0.446937,0.771243,0.989767,0.460147,0.752401,0.611585,0.458022,0.510474,0.935416,0.500083,0.394893,0.24787,0.764557,0.482315,0.169045,0.720036,0.639981,0.600336,0.0713484,0.290334,0.488677,0.345238,0.685083,0.0140432,0.917952,0.781255,0.342262,0.334963,0.188752,0.682248,0.42839,0.96776,0.190126,0.941486,0.204826,0.265371,0.27545,0.412795,0.457937,0.328784,0.0771672,0.876023,0.740439,0.130563,0.148655,0.974565,0.395813,0.103985,0.125598,0.508663,0.819561,0.0983562,0.879339,0.7119,0.0356876,0.26279,0.104847,0.835899,0.424345,0.88285,0.67467,0.766405,0.546458,0.0705769,0.437747,0.698564,0.595119,0.0759386,0.310902,0.276884,0.431901,0.526682,0.659417,0.341136,0.676267,0.949508,0.758786,0.602198,0.793392,0.180369,0.188549,0.0174361,0.515559,0.530598,0.351796,0.513619,0.351935,0.147109,0.0249321,0.901781,0.708911,0.959176,0.521874,0.957533,0.304826,0.399821,0.71648,0.656376,0.335842,0.73196,0.936184,0.516175,0.169939,0.189277,0.305226,0.0205563,0.291996,0.182614,0.0150921,0.0952951,0.398096,0.434124,0.20771,0.229629,0.904114,0.0796319,0.213502,0.385131,0.841668,0.88475,0.0132778,0.902752,0.67312,0.0723898,0.143823,0.789589,0.421352,0.947286,0.757895,0.961861,0.56219,0.984912,0.565309,0.991921,0.814608,0.760896,0.34598,0.268751,0.122943,0.810708,0.566556,0.535012,0.435728,0.685843,0.00688243,0.500479,0.58197,0.656315,0.304491,0.157274,0.873901,0.574799,0.77684,0.984497,0.109456,0.234474,0.797,0.813915,0.162582,0.718489,0.318459,0.100017,0.34809,0.266874,0.083495,0.879924,0.696912,0.977131,0.804232,0.286911,0.975336,0.797949,0.204759,0.186347,0.419871,0.467365,0.42296,0.138712,0.993259,0.904243,0.167212,0.409383,0.784706,0.90853,0.883187,0.71384,0.210447,0.988097,0.588632,0.278287,0.323422,0.543609,0.485653,0.452757,0.904764,0.641986,0.627213,0.0651252,0.827476,0.451113,0.270499,0.305934,0.14114,0.45223,0.781785,0.0709855,0.78051,0.0836879,0.228422,0.537768,0.858898,0.507848,0.970375,0.347759,0.223969,0.059952,0.915402,0.603254,0.401145,0.519151,0.385865,0.66936,0.520532,0.764766,0.969744,0.760774,0.0822671,0.234457,0.122336,0.85537,0.578365,0.0435942,0.104334,0.139474,0.528724,0.814821,0.211717,0.125625,0.201087,0.826676,0.320023,0.236785,0.011079,0.344651,0.791465,0.231979,0.74211,0.0917127,0.673042,0.779544,0.943184,0.860261,0.504809,0.0452347,0.222424,0.00309402,0.734744,0.732319,0.369281,0.0810632,0.0829693,0.711852,0.575186,0.690581,0.653324,0.053745,0.838395,0.533552,0.938663,0.0890466,0.529548,0.00820392,0.29344,0.0481854,0.365618,0.0870236,0.801841,0.436778,0.95157,0.638841,0.53042,0.776677,0.548723,0.840107,0.588852,0.462244,0.479198,0.631736,0.920059,0.00940698,0.906761,0.328,0.811251,0.152663,0.587278,0.595771,0.541086,0.621331,0.14076,0.279699,0.847727,0.0402709,0.890032,0.684609,0.941064,0.421596,0.757382,0.397538,0.30958,0.219765,0.898678,0.705853,0.177699,0.857134,0.161323,0.826586,0.653874,0.989289,0.570813,0.817055,0.832869,0.239458,0.459434,0.433641,0.899919,0.5957,0.283377,0.74287,0.980555,0.285306,0.995936,0.191521,0.328325,0.952972,0.604758,0.650212,0.857523,0.620412,0.879074,0.325469,0.851336,0.180493,0.2965,0.771985,0.898108,0.775726,0.974606,0.505793,0.561004,0.23145,0.746961,0.830352,0.0898582,0.819384,0.390227,0.0740105,0.632288,0.657915,0.934892,0.865284,0.997229,0.613346,0.31909,0.0726612,0.644971,0.272447,0.180201,0.674228,0.760577,0.602742,0.458576,0.399496,0.441889,0.752087,0.499076,0.129061,0.0653504,0.953521,0.561861,0.556935,0.156968,0.825486,0.33372,0.242696,0.772435,0.862103,0.728065,0.745892,0.858844,0.752995,0.258618,0.920611,0.488517,0.851254,0.759013,0.787824,0.940577,0.190106,0.847347,0.336362,0.844882,0.605842,0.296503,0.448497,0.337777,0.497748,0.41131,0.94244,0.332253,0.443199,0.67723,0.439292,0.571707,0.93427,0.257641,0.581385,0.545177,0.530193,0.842192,0.106693,0.0248188,0.598018,0.568167,0.275706,0.476951,0.622854,0.375133,0.558781,0.306206,0.0997754,0.896421,0.259033,0.039042,0.221068,0.937358,0.770461,0.122475,0.999653,0.874982,0.23491,0.402207,0.367879,0.0411087,0.220825,0.867038,0.270901,0.284473,0.558488,0.177819,0.45837,0.408463,0.059374,0.857814,0.0208447,0.770592,0.126774,0.554339,0.672535,0.0241644,0.820476,0.117826,0.775618,0.793275,0.879394,0.241094,0.73483,0.62535,0.896829,0.168144,0.726493,0.938723,0.941356,0.525269,0.546753,0.631092,0.880014,0.0422299,0.927356,0.0951295,0.620682,0.13722,0.844158,0.251389,0.500415,0.848766,0.160266,0.565531,0.758111,0.409092,0.698472,0.996728,0.42186,0.144553,0.532554,0.563177,0.775018,0.243079,0.652315,0.219004,0.302098,0.720445,0.701035,0.000780165,0.108597,0.694528,0.675861,0.0142094,0.466691,0.140296,0.66227,0.25862,0.413,0.436693,0.687674,0.53486,0.636359,0.194236,0.489616,0.867142,0.587304,0.407682,0.375732,0.0628639,0.0794583,0.718583,0.333652,0.539143,0.435923,0.906516,0.198085,0.672546,0.11894,0.917958,0.845266,0.568421,0.284723,0.243571,0.764012,0.215941,0.906762,0.665152,0.816106,0.0467824,0.92182,0.304676,0.815651,0.239595,0.100911,0.824922,0.564106,0.49014,0.134429,0.948467,0.623254,0.74117,0.599886,0.866441,0.842387,0.154332,0.700315,0.35779,0.786906,0.805004,0.110141,0.0367216,0.699643,0.887024,0.0127516,0.849489,0.262286,0.249342,0.781555,0.465142,0.291599,0.559111,0.772161,0.418232,0.122363,0.297433,0.441963,0.433431,0.197089,0.547629,0.278235,0.102694,0.571419,0.189264,0.137821,0.477922,0.83124,0.596905,0.803821,0.384988,0.579887,0.186343,0.655322,0.878997,0.718208,0.924681,0.0815875,0.933179,0.307724,0.823335,0.439658,0.7597,0.383824,0.902603,0.466615,0.788981,0.426501,0.0849016,0.0495706,0.10654,0.863743,0.11786,0.602833,0.566806,0.27961,0.181209,0.5854,0.818587,0.283156,0.376801,0.105149,0.713262,0.179565,0.746013,0.298049,0.636018,0.574313,0.395004,0.307541,0.0213345,0.0293512,0.811892,0.282215,0.607163,0.303802,0.00391841,0.218157,0.911038,0.0796878,0.905731,0.0506685,0.90538,0.306718,0.485393,0.325495,0.610941,0.66829,0.940574,0.698991,0.808183,0.307409,0.671442,0.514933,0.194866,0.0523409,0.226574,0.406915,0.774683,0.0274214,0.381902,0.705459,0.909909,0.360314,0.387304,0.850472,0.816026,0.578831,0.686102,0.399385,0.377396,0.097886,0.595154,0.455455,0.820625,0.730581,0.49053,0.252587,0.339253,0.253775,0.66919,0.625007,0.237641,0.597067,0.204384,0.237114,0.857248,0.231083,0.151366,0.707484,0.467512,|0.119175,0.735497,0.916567,0.0549462,0.741001,0.652333,0.218143,0.152389,0.956376,0.786994,0.0562541,0.805312,0.171812,0.198816,0.558493,0.1547,0.240464,0.729668,0.278369,0.757248,0.611072,0.15724,0.137309,0.261577,0.890209,0.314176,0.142497,0.239679,0.989571,0.675287,0.714807,0.592098,0.956221,0.607774,0.494164,0.110766,0.0544976,0.746741,0.731981,0.624487,0.468316,0.248051,0.496989,0.0389797,0.775835,0.0745575,0.653117,0.359834,0.136984,0.30025,0.572061,0.976161,0.512448,0.214848,0.60268,0.393906,0.394026,0.131255,0.290113,0.257262,0.456528,0.833873,0.888338,0.0876401,0.680939,0.371663,0.994215,0.1801,0.962708,0.51509,0.266479,0.585843,0.618841,0.792258,0.762201,0.19489,0.123416,0.320854,0.287224,0.898326,0.937922,0.582645,0.269946,0.757233,0.194594,0.77136,0.945057,0.34407,0.818808,0.522379,0.107988,0.237252,0.159402,0.00393343,0.679792,0.38217,0.567409,0.523708,0.665075,0.767585,0.501806,0.569601,0.818313,0.0828498,0.61551,0.0915251,0.330689,0.0771657,0.269105,0.741367,0.665546,0.129894,0.477326,0.947349,0.797935,0.0104594,0.484149,0.947257,0.53277,0.265581,0.124278,0.860416,0.249514,0.0610172,0.0458965,0.678437,0.883364,0.815202,0.500136,0.8362,0.398021,0.60122,0.231457,0.938887,0.147981,0.441788,0.197202,0.633068,0.643245,0.426202,0.9572,0.378593,0.878051,0.59397,0.302429,0.722194,0.301601,0.217649,0.653458,0.837156,0.835038,0.852167,0.771275,0.0494005,0.525875,0.20183,0.668626,0.737269,0.408374,0.971098,0.514547,0.798159,0.866292,0.511654,0.117062,0.743923,0.863906,0.594716,0.395109,0.0545948,0.832283,0.159288,0.248023,0.423623,0.329876,0.635029,0.345206,0.960459,0.0576414,0.372002,0.285746,0.594615,0.470699,0.0535269,0.56389,0.288799,0.105603,0.60271,0.866285,0.227628,0.387242,0.593616,0.483954,0.418731,0.688595,0.154836,0.571002,0.703617,0.583608,0.592158,0.813418,0.722428,0.539313,0.72592,0.805895,0.381032,0.122759,0.768938,0.391926,0.176337,0.379681,0.310459,0.378883,0.393559,0.558911,0.507344,0.0530884,0.606574,0.430297,0.788822,0.808586,0.819633,0.398933,0.648816,0.327458,0.492572,0.092164,0.89655,0.752674,0.192678,0.393459,0.803852,0.587464,0.342851,0.557599,0.588873,0.106311,0.723892,0.179151,0.0804441,0.345903,0.614064,0.935154,0.716137,0.0348179,0.53632,0.507033,0.313643,0.820076,0.279492,0.338615,0.76767,0.128257,0.643916,0.206996,0.981769,0.974979,0.1849,0.658805,0.280193,0.351281,0.65898,0.0483731,0.0961086,0.446133,0.498223,0.922901,0.342399,0.96905,0.1301,0.224805,0.250776,0.649409,0.818349,0.253952,0.687388,0.602221,0.395792,0.574509,0.930121,0.20578,0.206083,0.02237,0.63306,0.405594,0.908527,0.38573,0.790687,0.00421268,0.722495,0.843807,0.256358,0.667995,0.130528,0.903081,0.973539,0.33436,0.159022,0.882578,0.91073,0.153404,0.517651,0.636211,0.8441,0.0478713,0.932474,0.407237,0.00103068,0.359839,0.0826938,0.788284,0.463939,0.0517449,0.646235,0.680302,0.285265,0.963992,0.552644,0.453901,0.851925,0.218041,0.613746,0.0270587,0.247048,0.969225,0.385647,0.187286,0.703909,0.762041,0.626773,0.766828,0.612437,0.223886,0.429565,0.246428,0.407076,0.512333,0.0429618,0.524814,0.722057,0.491683,0.00354379,0.585413,0.719346,0.526666,0.581314,0.538483,0.267761,0.985531,0.904248,0.313302,0.36709,0.700235,0.413824,0.95417,0.274648,0.837422,0.972559,0.519753,0.860844,0.722443,0.990638,0.822174,0.0903171,0.768499,0.039957,0.742613,0.0674144,0.163571,0.730067,0.861857,0.101611,0.520859,0.161043,0.815249,0.849725,0.962107,0.603438,0.852337,0.571868,0.653733,0.132109,0.339663,0.634241,0.0299916,0.513455,0.916081,0.254299,0.730067,0.147202,0.241989,0.593463,0.729766,0.747487,0.0681397,0.388532,0.4334,0.175,0.299047,0.203901,0.444713,0.645528,0.720147,0.390664,0.866968,0.494757,0.585524,0.87089,0.757349,0.962125,0.171037,0.492593,0.936495,0.224984,0.666134,0.610669,0.0869841,0.216023,0.611716,0.10261,0.344253,0.94142,0.776736,0.911337,0.552596,0.276978,0.432929,0.860564,0.782975,0.0952528,0.968054,0.607224,0.805863,0.487969,0.0889231,0.0304934,0.391541,0.625677,0.0443025,0.179037,0.979906,0.333976,0.127696,0.595351,0.272705,0.192245,0.269339,0.981868,0.15073,0.235077,0.810474,0.105834,0.024454,0.676637,0.747685,0.257719,0.62338,0.995149,0.911722,0.499817,0.67144,0.903532,0.36886,0.161345,0.00833708,0.41246,0.975276,0.917034,0.842082,0.017601,0.203187,0.0313955,0.604028,0.102378,0.62133,0.214819,0.319272,0.772271,0.141051,0.517404,0.941648,0.327161,0.469353,0.824001,0.185472,0.418161,0.744732,0.98631,0.363617,0.285693,0.494779,0.967582,0.0179651,0.342487,0.0369607,0.451923,0.914587,0.371605,0.339818,0.915876,0.991454,0.252609,0.909835,0.512283,0.817303,0.78453,0.684176,0.0590745,0.490837,0.91203,0.742308,0.550231,0.189397,0.702575,0.737371,0.47764,0.550391,0.172647,0.962647,0.18718,0.159502,0.0127338,0.0901903,0.605646,0.203361,0.60615,0.908515,0.374004,0.805727,0.180776,0.621944,0.420805,0.0355837,0.496092,0.968428,0.0449845,0.358908,0.669414,0.777788,0.000470161,0.369786,0.367854,0.77666,0.026804,0.0901229,0.637833,0.281144,0.372437,0.177333,0.133302,0.597011,0.3543,0.634421,0.291919,0.437981,0.0672143,0.367149,0.155257,0.274709,0.219201,0.0187631,0.611274,0.350745,0.255684,0.363791,0.855425,0.396606,0.0961739,0.794988,0.961037,0.838064,0.047858,0.0124575,0.558514,0.39058,0.76081,0.105747,0.451244,0.501987,0.946006,0.429182,0.138674,0.756486,0.710321,0.582283,0.516184,0.762473,0.984948,0.664146,0.0670636,0.817059,0.139405,0.117727,0.581647,0.350613,0.249844,0.0454333,0.56325,0.919837,0.569185,0.470815,0.45703,0.628057,0.363622,0.426808,0.0511017,0.257847,0.457342,0.579917,0.535999,0.797222,0.281986,0.433549,0.93771,0.214623,0.813174,0.324399,0.241779,0.169333,0.87479,0.695883,0.432443,0.713173,0.659492,0.935035,0.0403793,0.749039,0.391726,0.0830498,0.0710453,0.139806,0.514974,0.370385,0.0650948,0.863023,0.638477,0.510305,0.703718,0.64064,0.722013,0.646427,0.322264,0.816933,0.199437,0.868293,0.798233,0.641931,0.470378,0.386461,0.060173,0.97371,0.991339,0.503522,0.939708,0.837346,0.499679,0.287975,0.171542,0.855895,0.898263,0.0912452,0.568009,0.841309,0.548385,0.36287,0.129374,0.749439,0.182758,0.281241,0.567052,0.306175,0.436926,0.808268,0.0811737,0.171465,0.602393,0.424879,0.649924,0.895128,0.897102,0.729567,0.594059,0.252607,0.328163,0.14265,0.17744,0.129926,0.0537536,0.911929,0.718926,0.412987,0.984945,0.241384,0.894275,0.0139596,0.533296,0.871262,0.232766,0.573651,0.994262,0.335617,0.552845,0.0257145,0.990198,0.642324,0.640014,0.0569695,0.204234,0.746809,0.442945,0.560512,0.664999,0.616261,0.0883505,0.217654,0.803161,0.630579,0.568829,0.903465,0.781903,0.0545708,0.569238,0.0910483,0.527968,0.799063,0.431823,0.245095,0.970168,0.703213,0.302327,0.908425,0.668614,0.847675,0.212509,0.282606,0.973946,0.316881,0.486258,0.450129,0.778047,0.0678977,0.61167,0.412559,0.0336941,0.972514,0.404593,0.935432,0.839782,0.628104,0.13674,0.757327,0.173365,0.300413,0.745298,0.204489,0.544389,0.0223756,0.0536236,0.924574,0.20527,0.752687,0.667786,0.431785,0.432101,0.627721,0.84338,0.824412,0.585934,0.807854,0.931719,0.459137,0.372486,0.685102,0.189273,0.99655,0.750244,0.428255,0.132637,0.238424,0.93817,0.712593,0.270564,0.40764,0.75462,0.322069,0.377033,0.260778,0.427696,0.33803,0.677692,0.258194,0.113984,0.00492066,0.838758,0.156557,0.0610638,0.609919,0.187857,0.078819,0.879601,0.199703,0.959708,0.432323,0.925902,0.378782,0.369351,0.627755,0.125236,0.387492,0.254332,0.964677,0.190268,0.533588,0.44332,0.822514,0.910498,0.364789,0.170198,0.0840338,0.631031,0.34533,0.0351955,0.673792,0.20069,0.0453466,0.136053,0.305555,0.214513,0.657408,0.830026,0.103195,0.335635,0.580544,0.679201,0.037511,0.22144,0.793305,0.946766,0.774104,0.923491,0.00249106,0.0638466,0.735214,0.483439,0.998787,0.000201344,0.866828,0.675398,0.917219,0.277551,0.831619,0.918139,0.788465,0.876655,0.278676,0.379581,0.644204,0.718519,0.818296,0.198237,0.609069,0.0369477,0.294556,0.778367,0.880896,0.299478,0.378747,0.963238,0.633495,0.00866884,0.273466,0.910024,0.514739,0.116305,0.277662,0.257922,0.775797,0.503236,0.957935,0.58477,0.569295,0.895554,0.375297,0.468795,0.769808,0.523171,0.18793,0.508226,0.129691,0.348665,0.293096,0.538927,0.6769,0.0933231,0.281929,0.776993,0.882842,0.927132,0.368345,0.404806,0.972701,0.872486,0.739573,0.904563,0.903607,0.995874,0.936436,0.320693,0.498561,0.793321,0.336346,0.106896,0.713421,0.507477,0.949351,0.0515605,0.771057,0.289696,0.333577,0.627791,0.358924,0.663652,0.884787,0.276314,0.152538,0.281224,0.967898,0.135139,0.662556,0.313168,0.705938,0.604844,0.321857,0.0717227,0.573413,0.178335,0.518461,0.816701,0.802322,0.726437,0.396299,0.133024,0.0760399,0.28814,0.1397,0.853905,0.725281,0.989763,0.122526,0.346978,0.571644,0.289308,0.974689,0.222222,0.573253,0.523853,0.714293,0.026909,0.371917,0.283344,0.0576735,0.556911,0.208404,0.879257,0.130099,0.680512,0.468184,0.145328,0.453462,0.0702985,0.278481,0.220431,0.222237,0.550517,0.58612,0.385788,0.156058,0.0109462,0.888775,0.073158,0.596589,0.274369,0.94351,0.568787,0.633785,0.108409,0.48453,0.830625,0.169371,0.701416,0.442247,0.0495186,0.0773613,0.622603,0.000216961,0.846598,0.103398,0.966225,0.427728,0.799089,|0.717259,0.74708,0.334763,0.877965,0.42437,0.60862,0.506279,0.818328,0.895219,0.90614,0.620223,0.642221,0.837328,0.132565,0.0676687,0.696606,0.0505683,0.265424,0.956307,0.641701,0.494792,0.109331,0.884013,0.387495,0.631075,0.121095,0.570771,0.483308,0.79712,0.274144,0.377145,0.916286,0.0959345,0.775744,0.0837532,0.242733,0.669892,0.506039,0.122095,0.135136,0.423805,0.916625,0.97621,0.23706,0.439887,0.70453,0.168093,0.434872,0.786507,0.14203,0.122769,0.846305,0.118237,0.808274,0.381918,0.719662,0.946187,0.187577,0.955848,0.00727451,0.572751,0.35233,0.673799,0.328489,0.849955,0.144209,0.0184987,0.367198,0.0851182,0.365675,0.30286,0.803186,0.987607,0.0866048,0.895198,0.226197,0.949841,0.0836537,0.295301,0.275559,0.568615,0.0668032,0.609525,0.124562,0.924149,0.573543,0.0706517,0.294286,0.609035,0.0929262,0.673289,0.39006,0.528872,0.236006,0.0912249,0.344081,0.892956,0.680471,0.470583,0.319413,0.403529,0.646092,0.93606,0.150073,0.942442,0.254164,0.2635,0.594184,0.682326,0.225142,0.345634,0.563869,0.960242,0.646503,0.481093,0.841803,0.361108,0.351422,0.437403,0.337165,0.280674,0.726879,0.74501,0.815733,0.511141,0.39823,0.931376,0.965948,0.974869,0.102909,0.0591738,0.209241,0.488852,0.586418,0.503645,0.654603,0.870611,0.113599,0.881662,0.941069,0.649304,0.559554,0.704446,0.430718,0.788242,0.626382,0.957705,0.335971,0.623203,0.0232993,0.0642028,0.104816,0.675578,0.580227,0.926252,0.659634,0.949747,0.186643,0.145957,0.138423,0.851286,0.490066,0.468432,0.756604,0.632392,0.0024839,0.761425,0.0434077,0.845764,0.0953735,0.867748,0.570363,0.790827,0.202606,0.795229,0.924357,0.169731,0.283601,0.287146,0.261429,0.743326,0.856977,0.573189,0.979291,0.149933,0.971115,0.106174,0.682292,0.340636,0.221818,0.237933,0.98586,0.221855,0.0069567,0.342226,0.262936,0.142303,0.853235,0.123587,0.0568823,0.136321,0.722246,0.263396,0.81854,0.609104,0.442938,0.616667,0.0935955,0.570828,0.189448,0.309887,0.368771,0.538786,0.177518,0.617098,0.044996,0.767437,0.0410764,0.420388,0.819488,0.562295,0.0554442,0.669427,0.373279,0.725905,0.633893,0.76313,0.323387,0.268763,0.0465816,0.0667036,0.771654,0.0835425,0.679925,0.56075,0.0449511,0.350391,0.735788,0.250057,0.681454,0.602996,0.41434,0.625357,0.173851,0.206311,0.867331,0.00395215,0.73405,0.345821,0.0882491,0.870093,0.351353,0.044538,0.287955,0.322735,0.230186,0.301179,0.367725,0.932783,0.93355,0.420936,0.102609,0.187381,0.486313,0.470682,0.676365,0.439396,0.402715,0.555511,0.281578,0.506969,0.599607,0.707563,0.878097,0.357196,0.785882,0.349881,0.140622,0.87832,0.196718,0.141785,0.0688495,0.674445,0.412701,0.351702,0.22158,0.0629265,0.346691,0.889118,0.648794,0.292359,0.271501,0.127854,0.316678,0.698849,0.689161,0.590067,0.583511,0.81424,0.566546,0.32258,0.102542,0.114235,0.518115,0.356031,0.0403538,0.752749,0.00987798,0.379365,0.77352,0.500127,0.220349,0.0153442,0.283903,0.336962,0.449293,0.734808,0.668406,0.856299,0.964728,0.882487,0.911745,0.0415477,0.524843,0.277582,0.10977,0.315901,0.515473,0.79269,0.693019,0.666537,0.539676,0.9802,0.00117308,0.537242,0.744315,0.215962,0.879994,0.917655,0.327538,0.651169,0.129749,0.526961,0.655609,0.468506,0.593805,0.448691,0.614559,0.958398,0.974119,0.785251,0.876693,0.352097,0.509256,0.113646,0.265744,0.609387,0.777772,0.0477537,0.280092,0.90963,0.694949,0.770613,0.557329,0.620881,0.165459,0.615306,0.493697,0.549665,0.638557,0.411862,0.792936,0.225218,0.596948,0.888213,0.634266,0.574314,0.119956,0.970137,0.582816,0.517222,0.882673,0.275911,0.118091,0.582941,0.491584,0.285512,0.413715,0.289012,0.160597,0.89174,0.491748,0.883004,0.486678,0.379589,0.960979,0.14373,0.711743,0.444122,0.100457,0.020386,0.012822,0.794012,0.46773,0.182191,0.619209,0.728018,0.11128,0.855788,0.930481,0.214859,0.43434,0.313057,0.190272,0.485756,0.358048,0.815125,0.560478,0.0602911,0.798838,0.542957,0.880517,0.443944,0.44383,0.181415,0.933548,0.703803,0.909422,0.260842,0.591332,0.901563,0.500296,0.469531,0.461049,0.909314,0.055059,0.602214,0.971403,0.212746,0.0399814,0.809166,0.532203,0.124501,0.183623,0.392448,0.799609,0.200213,0.383168,0.735348,0.859407,0.604741,0.640629,0.482985,0.137234,0.103303,0.453443,0.413815,0.440019,0.980405,0.751744,0.925758,0.876873,0.799783,0.462989,0.239844,0.283928,0.3765,0.728068,0.0340043,0.466421,0.77707,0.143638,0.382584,0.226338,0.888595,0.329165,0.629307,0.372877,0.358079,0.447081,0.293848,0.268872,0.00483054,0.629442,0.33167,0.335023,0.398209,0.977994,0.140509,0.685856,0.9438,0.658128,0.545728,0.16207,0.341884,0.801004,0.328524,0.919489,0.3623,0.891878,0.583908,0.0145679,0.167956,0.0749056,0.647818,0.565412,0.765834,0.526376,0.357258,0.903044,0.572406,0.0385573,0.448435,0.241682,0.536236,0.239473,0.250032,0.0312195,0.602282,0.30432,0.34627,0.767423,0.673715,0.194938,0.602376,0.462311,0.783765,0.83583,0.107436,0.277517,0.224706,0.0807711,0.84205,0.0355363,0.846956,0.387999,0.0519491,0.969749,0.188365,0.684436,0.382174,0.574238,0.261228,0.550619,0.0186872,0.5671,0.900581,0.0177465,0.921712,0.16219,0.366781,0.584536,0.0903544,0.812312,0.668506,0.706698,0.754311,0.760534,0.508792,0.94612,0.0392342,0.52738,0.117232,0.589567,0.927817,0.948057,0.341842,0.310624,0.542334,0.320219,0.335408,0.660025,0.0956615,0.437252,0.364051,0.966399,0.240856,0.577724,0.305067,0.0275703,0.642313,0.653035,0.350675,0.976916,0.496575,0.791598,0.277867,0.897737,0.00772297,0.285177,0.732031,0.741242,0.7469,0.382296,0.857573,0.683879,0.52283,0.602216,0.239064,0.0821738,0.73495,0.794589,0.486397,0.343558,0.982406,0.639037,0.678955,0.20527,0.532087,0.0838076,0.0542033,0.414322,0.418916,0.517639,0.974304,0.48727,0.825527,0.461913,0.259841,0.0961179,0.25698,0.795389,0.0173324,0.136793,0.147401,0.738298,0.335333,0.452885,0.874293,0.996671,0.687324,0.927643,0.317913,0.498501,0.769208,0.966941,0.417467,0.567645,0.959356,0.915846,0.179117,0.903636,0.885505,0.602201,0.0158518,0.536069,0.94621,0.964628,0.383158,0.203976,0.805414,0.235598,0.0531502,0.153912,0.457656,0.464198,0.339915,0.776376,0.271665,0.302721,0.97792,0.267911,0.439373,0.411963,0.338992,0.76807,0.124319,0.0605444,0.831707,0.866712,0.760604,0.813708,0.326826,0.0297218,0.703093,0.930296,0.153248,0.193716,0.612074,0.104502,0.936794,0.291947,0.859627,0.00293308,0.757064,0.303668,0.0759395,0.625359,0.250529,0.261155,0.374786,0.120897,0.311371,0.346945,0.471046,0.23279,0.00123286,0.136134,0.477823,0.321572,0.736963,0.420665,0.508464,0.586227,0.0914023,0.748856,0.860067,0.240898,0.131115,0.950999,0.137037,0.240797,0.896385,0.102563,0.933671,0.0606484,0.599006,0.793156,0.704363,0.265659,0.614178,0.710244,0.433556,0.51788,0.718149,0.400384,0.948321,0.182773,0.753243,0.999064,0.372172,0.769954,0.695174,0.789131,0.0121495,0.439972,0.0543519,0.370037,0.626524,0.764162,0.265194,0.859735,0.257589,0.846962,0.839357,0.857021,0.652779,0.858626,0.989469,0.497697,0.572361,0.126087,0.857166,0.302761,0.78561,0.609779,0.773464,0.00696492,0.483272,0.446347,0.647822,0.0411804,0.65013,0.750527,0.561116,0.426925,0.00950968,0.246755,0.296058,0.327722,0.825752,0.875075,0.781392,0.886549,0.501671,0.973531,0.0981981,0.418615,0.417511,0.197518,0.705105,0.188331,0.218319,0.371271,0.395925,0.458546,0.840072,0.372279,0.610145,0.714973,0.986681,0.57274,0.783984,0.884844,0.390729,0.0191277,0.0111631,0.5571,0.0172048,0.0670441,0.122727,0.379155,0.611638,0.907617,0.941889,0.327671,0.80768,0.114677,0.956502,0.382318,0.333158,0.700173,0.539631,0.826552,0.737986,0.518652,0.593532,0.965425,0.442892,0.330932,0.114854,0.219852,0.510743,0.445832,0.948346,0.575139,0.874534,0.238369,0.259656,0.748677,0.954618,0.986548,0.0256857,0.21696,0.772467,0.765763,0.847831,0.904938,0.273818,0.871768,0.621904,0.994668,0.531272,0.915665,0.396383,0.862709,0.883402,0.0876432,0.104531,0.414869,0.42967,0.845678,0.246405,0.183062,0.359783,0.963428,0.972831,0.724301,0.135035,0.593123,0.492525,0.946594,0.534491,0.548039,0.978553,0.714473,0.725343,0.399223,0.80605,0.398007,0.00485665,0.658433,0.48746,0.255113,0.264633,0.207994,0.458275,0.929317,0.988575,0.163533,0.761143,0.615053,0.465685,0.495063,0.0360437,0.260607,0.664252,0.543765,0.215126,0.170304,0.0268463,0.079897,0.00383806,0.194222,0.0206437,0.532405,0.0559356,0.494646,0.75555,0.637228,0.223877,0.562543,0.260069,0.3053,0.684628,0.573068,0.5234,0.0381551,0.896824,0.967178,0.651904,0.939507,0.883189,0.714254,0.942662,0.429776,0.682771,0.827122,0.381542,0.594799,0.380957,0.879847,0.345755,0.630409,0.347727,0.565224,0.745654,0.837348,0.27915,0.387546,0.406985,0.781886,0.740219,0.862085,0.963566,0.628283,0.636295,0.0543739,0.869526,0.104162,0.47264,0.140413,0.719198,0.164466,0.682446,0.36769,0.94541,0.63705,0.0135152,0.969739,0.505477,0.510001,0.781092,0.179699,0.109197,0.433539,0.586084,0.212654,0.832004,0.616287,0.587262,0.0343859,0.435543,0.738181,0.271845,0.862718,0.151135,0.931727,0.331854,0.458986,0.893245,0.574835,0.910629,0.213947,0.176222,0.0150782,0.217536,0.718316,0.763023,0.851506,0.0207052,0.886469,0.508213,0.162393,0.297934,0.387853,0.26027,0.990478,0.471318,0.814435,0.83315,0.889611,0.158001,0.51738,0.817665,0.133856,0.051458,0.900707,0.709269,0.567388,|0.995688,0.825587,0.319641,0.0928509,0.363209,0.910092,0.280117,0.834806,0.345724,0.709809,0.531255,0.0449526,0.96778,0.247283,0.248033,0.731781,0.15326,0.102544,0.074051,0.128319,0.0893742,0.882055,0.0866342,0.752957,0.562216,0.447489,0.805652,0.208688,0.610519,0.797431,0.856225,0.625422,0.0935195,0.181148,0.651202,0.151452,0.274354,0.653863,0.0872682,0.546819,0.912585,0.0602877,0.0974765,0.812687,0.603415,0.199375,0.319784,0.512114,0.564475,0.706299,0.618011,0.296759,0.875606,0.989037,0.400226,0.256079,0.145219,0.995252,0.593233,0.87665,0.586533,0.936983,0.383285,0.907174,0.387425,0.500852,0.508037,0.828649,0.47954,0.630989,0.369593,0.778241,0.355186,0.51313,0.217898,0.586441,0.812147,0.782693,0.0398215,0.116358,0.671266,0.242435,0.23154,0.383802,0.6715,0.708704,0.612686,0.00912654,0.353229,0.609356,0.868896,0.861543,0.536077,0.503775,0.438669,0.520887,0.129582,0.603051,0.833969,0.331682,0.0692871,0.0254297,0.603475,0.974431,0.405626,0.420165,0.0356122,0.222577,0.600059,0.0738955,0.113066,0.374088,0.79659,0.233938,0.615336,0.112099,0.614133,0.964194,0.987117,0.517882,0.556868,0.469433,0.108894,0.642208,0.915882,0.00278151,0.262237,0.266931,0.59578,0.830675,0.352886,0.81978,0.86995,0.213415,0.960765,0.176389,0.0286283,0.022864,0.733656,0.953562,0.724819,0.627486,0.271479,0.2133,0.0990683,0.155152,0.245671,0.924631,0.376771,0.416815,0.455938,0.732099,0.0808672,0.486968,0.567452,0.0863051,0.0462455,0.149012,0.776193,0.996137,0.112115,0.0984587,0.643472,0.996819,0.666086,0.367628,0.00578886,0.371475,0.305474,0.0477515,0.619648,0.538036,0.338587,0.264542,0.601246,0.052058,0.0451968,0.771176,0.88013,0.901134,0.456515,0.166507,0.0355918,0.173944,0.77995,0.849883,0.196471,0.933619,0.97502,0.0119759,0.775509,0.335108,0.662403,0.484214,0.179882,0.327747,0.955459,0.861339,0.0856655,0.58168,0.101127,0.638053,0.178397,0.943966,0.956681,0.0455453,0.505182,0.796568,0.26025,0.414106,0.442598,0.719629,0.0438902,0.946828,0.20463,0.302007,0.602007,0.251855,0.89936,0.0284069,0.128407,0.875691,0.801886,0.20582,0.803155,0.58359,0.615816,0.971344,0.120716,0.213655,0.215846,0.165942,0.00267595,0.738169,0.111045,0.952889,0.510335,0.925664,0.585738,0.0926631,0.614756,0.969728,0.13674,0.710373,0.336469,0.619972,0.0918044,0.863133,0.86591,0.0470929,0.548161,0.73738,0.0627381,0.588541,0.766429,0.271475,0.493012,0.244379,0.0563194,0.956053,0.563813,0.496045,0.474327,0.963846,0.15387,0.152501,0.765683,0.890409,0.351044,0.361983,0.835146,0.363935,0.580477,0.107386,0.82995,0.636293,0.910057,0.797564,0.175644,0.0202435,0.445487,0.535784,0.496461,0.308133,0.926412,0.840513,0.099142,0.246624,0.550063,0.894665,0.935396,0.301001,0.106892,0.432736,0.115486,0.204431,0.572267,0.203706,0.189981,0.645178,0.360041,0.689686,0.372569,0.602454,0.614426,0.453658,0.484108,0.888508,0.570278,0.077431,0.516993,0.712092,0.357347,0.299676,0.212294,0.931941,0.743013,0.126046,0.481136,0.887028,0.257178,0.0507929,0.0729366,0.398739,0.860075,0.374184,0.418114,0.302335,0.310985,0.630377,0.794908,0.926861,0.792581,0.890894,0.721638,0.154347,0.283301,0.0577374,0.190233,0.376439,0.182129,0.599817,0.880647,0.182144,0.601255,0.628358,0.109728,0.740668,0.321338,0.439333,0.0209442,0.184592,0.720462,0.0535851,0.918565,0.649993,0.0896943,0.116094,0.458908,0.0609162,0.336406,0.66667,0.738551,0.84537,0.153193,0.796117,0.466889,0.206441,0.88616,0.38242,0.274484,0.888006,0.452707,0.0701799,0.0544811,0.859548,0.750973,0.697404,0.0654452,0.44709,0.667399,0.788453,0.93409,0.13302,0.94337,0.739057,0.181916,0.919887,0.607753,0.642491,0.105667,0.0514929,0.211517,0.196619,0.890883,0.479783,0.237994,0.049394,0.225154,0.70544,0.458561,0.0100608,0.939696,0.136914,0.223688,0.0628988,0.0986584,0.107199,0.523108,0.111567,0.736025,0.351478,0.0342622,0.282592,0.708963,0.289751,0.421854,0.376497,0.022205,0.211671,0.0120428,0.474489,0.0161052,0.736596,0.955729,0.876721,0.304516,0.0315174,0.726485,0.888687,0.920199,0.619139,0.878445,0.375319,0.557682,0.284419,0.790932,0.307935,0.841767,0.627708,0.574066,0.446173,0.81496,0.229024,0.531257,0.378389,0.0314983,0.600742,0.484974,0.748494,0.737516,0.183271,0.168763,0.793218,0.757982,0.174173,0.753607,0.757421,0.410024,0.660875,0.753323,0.676375,0.66395,0.148216,0.478179,0.848089,0.209874,0.459536,0.268028,0.948938,0.73887,0.172341,0.731174,0.831251,0.156734,0.806491,0.226168,0.205643,0.329758,0.325275,0.48519,0.366936,0.350414,0.155254,0.298649,0.111771,0.0516024,0.939397,0.234356,0.868831,0.441513,0.358977,0.730451,0.538345,0.887978,0.679862,0.139575,0.0902619,0.147185,0.636563,0.757167,0.47303,0.939738,0.921614,0.369148,0.00711638,0.076595,0.935242,0.179312,0.91408,0.0836041,0.926238,0.49564,0.789964,0.293862,0.200047,0.327126,0.437735,0.335263,0.371327,0.863048,0.250653,0.560119,0.583844,0.649847,0.426526,0.336294,0.822339,0.495317,0.442206,0.679354,0.442811,0.413237,0.681509,0.0476751,0.693639,0.906507,0.559516,0.833691,0.428152,0.989368,0.276864,0.499574,0.215218,0.480111,0.00862449,0.287502,0.0505764,0.454609,0.865648,0.656074,0.271716,0.472637,0.34332,0.699038,0.700447,0.220065,0.497017,0.191088,0.195085,0.502062,0.307665,0.750978,0.23601,0.512798,0.270201,0.774255,0.702413,0.707812,0.672011,0.690624,0.0125405,0.382309,0.867633,0.0327951,0.762815,0.617874,0.66565,0.0213537,0.449378,0.204357,0.0828177,0.777261,0.610357,0.663931,0.0250869,0.0106114,0.123348,0.705917,0.0223301,0.729562,0.831293,0.717346,0.828608,0.841227,0.919157,0.636198,0.679178,0.00490379,0.223313,0.978996,0.906739,0.344981,0.874362,0.833734,0.551707,0.771157,0.701221,0.632755,0.952281,0.300255,0.627128,0.0671822,0.152535,0.144577,0.668573,0.52185,0.430543,0.904786,0.0873706,0.311571,0.351066,0.778457,0.807747,0.296252,0.990101,0.214024,0.373769,0.891239,0.182453,0.873871,0.103972,0.550045,0.682041,0.675647,0.478953,0.229647,0.531234,0.0401432,0.785416,0.149622,0.224917,0.97929,0.965602,0.358088,0.90196,0.380623,0.0517068,0.986047,0.651314,0.520379,0.977999,0.73136,0.525023,0.915688,0.983268,0.552219,0.0929881,0.743389,0.215859,0.489815,0.788257,0.727708,0.666426,0.302035,0.212569,0.379536,0.745765,0.552511,0.213825,0.593542,0.106418,0.35187,0.640122,0.968262,0.93021,0.530124,0.151345,0.664737,0.183769,0.302522,0.733902,0.728587,0.00159973,0.684994,0.0231188,0.700579,0.775434,0.543346,0.857496,0.572316,0.459008,0.214032,0.217403,0.3072,0.16396,0.381935,0.698869,0.161694,0.912807,0.144362,0.544016,0.187771,0.561516,0.514255,0.576456,0.9983,0.0255864,0.620057,0.59754,0.00678504,0.499785,0.258653,0.336556,0.304191,0.461045,0.544061,0.136615,0.423864,0.0291868,0.826426,0.666085,0.569259,0.295398,0.213562,0.16457,0.480325,0.575403,0.649355,0.678151,0.189749,0.666314,0.900979,0.553948,0.39547,0.880275,0.880501,0.233281,0.497083,0.202424,0.399352,0.857866,0.721499,0.454646,0.143693,0.896024,0.586286,0.97973,0.668009,0.962553,0.673414,0.721861,0.952967,0.209254,0.936746,0.0142736,0.60528,0.31173,0.484327,0.138667,0.73419,0.888404,0.607024,0.564097,0.737474,0.855827,0.845292,0.382898,0.154621,0.828031,0.591101,0.442402,0.27287,0.227047,0.518445,0.38567,0.792203,0.35644,0.0815478,0.950052,0.547078,0.236446,0.436206,0.759766,0.651872,0.429309,0.472735,0.824111,0.650104,0.0666148,0.542758,0.675847,0.735692,0.0931376,0.989918,0.329087,0.077863,0.848776,0.591458,0.382629,0.494394,0.605462,0.411178,0.0811293,0.28808,0.450826,0.544274,0.179475,0.185941,0.678663,0.0649868,0.134238,0.890173,0.51621,0.346282,0.740192,0.424737,0.00823504,0.436423,0.231041,0.834031,0.716613,0.968373,0.520053,0.576011,0.478826,0.467233,0.523943,0.0714323,0.261828,0.860254,0.0652001,0.597917,0.880174,0.0543947,0.451538,0.0672956,0.911878,0.263195,0.864476,0.0308012,0.401926,0.346863,0.588254,0.773306,0.879598,0.0950305,0.487052,0.0549452,0.00224477,0.483149,0.707169,0.334357,0.29492,0.947758,0.389865,0.465489,0.514364,0.454805,0.716713,0.799759,0.0894577,0.459795,0.579643,0.817506,0.939603,0.77749,0.172903,0.0554242,0.97332,0.312525,0.012908,0.896244,0.596019,0.667986,0.488125,0.423599,0.702775,0.0240963,0.049498,0.61709,0.783253,0.434168,0.233941,0.622296,0.633347,0.318327,0.00220215,0.292172,0.693046,0.456444,0.249008,0.349393,0.627416,0.0789435,0.407009,0.322472,0.287903,0.234161,0.345552,0.198698,0.774981,0.252578,0.826073,0.131075,0.987471,0.0887315,0.98502,0.953948,0.181527,0.846406,0.237143,0.611998,0.788257,0.25868,0.296517,0.896531,0.622674,0.162511,0.473451,0.0135846,0.970889,0.271448,0.238239,0.399022,0.929931,0.957766,0.740889,0.2116,0.56349,0.480238,0.843971,0.972348,0.00586897,0.600337,0.122773,0.899462,0.639782,0.74434,0.135876,0.856045,0.773119,0.674295,0.434994,0.963695,0.484907,0.868141,0.498207,0.0753343,0.357606,0.669327,0.712632,0.386572,0.464607,0.790812,0.888355,0.946539,0.439098,0.399348,0.799266,0.586453,0.839128,0.815273,0.273777,0.698937,0.804979,0.896286,0.691784,0.0929666,0.5854,0.766715,0.233686,0.0220346,0.525896,0.223959,0.728902,0.379631,0.0394228,0.0813846,0.328837,0.804352,0.640988,0.48898,0.294464,0.104342,0.313957,0.952781,0.376886,0.932133,0.21094,0.755271,0.69729,0.942623,0.553194,0.187199,0.724366,0.949778,0.629331,0.768069,0.951389,|0.310822,0.212064,0.762759,0.965672,0.866383,0.238496,0.593378,0.57997,0.286866,0.147718,0.705821,0.38616,0.749339,0.690899,0.16111,0.940538,0.329547,0.419279,0.284055,0.836066,0.730321,0.794755,0.305721,0.543253,0.614954,0.324496,0.0390776,0.0595263,0.800148,0.772553,0.246377,0.314317,0.0217274,0.088974,0.995876,0.186924,0.0686579,0.766131,0.776131,0.593688,0.0240312,0.457125,0.797894,0.751714,0.135941,0.11282,0.173083,0.485707,0.449317,0.610064,0.703068,0.960706,0.342951,0.221865,0.718887,0.739628,0.819206,0.778711,0.0149244,0.72856,0.850708,0.80344,0.0738374,0.972921,0.0469118,0.219104,0.76433,0.00410175,0.644506,0.827933,0.312221,0.261307,0.329045,0.897195,0.22915,0.785083,0.95307,0.991113,0.308256,0.274491,0.856171,0.634534,0.994939,0.926209,0.938438,0.619806,0.251483,0.896504,0.926621,0.528135,0.708766,0.528818,0.152929,0.563661,0.894188,0.813432,0.581157,0.528156,0.404139,0.520425,0.644562,0.509421,0.0547853,0.693475,0.557391,0.683706,0.992225,0.826091,0.519589,0.238161,0.74877,0.369573,0.486251,0.232124,0.193018,0.0120938,0.0848579,0.132486,0.506585,0.814063,0.803525,0.201317,0.653033,0.110374,0.345358,0.479739,0.534376,0.990104,0.580347,0.541414,0.29064,0.419281,0.407184,0.0296344,0.55612,0.937213,0.603298,0.953454,0.170891,0.212007,0.678471,0.0190263,0.687798,0.999406,0.0708248,0.924568,0.139253,0.72037,0.450009,0.675942,0.89291,0.872234,0.126902,0.448557,0.35643,0.98175,0.197841,0.20078,0.595779,0.276426,0.181641,0.330225,0.780647,0.709402,0.189605,0.993989,0.346271,0.604975,0.979907,0.183801,0.460282,0.264644,0.335054,0.945437,0.776807,0.0882803,0.1604,0.171871,0.0822594,0.536362,0.0301201,0.53723,0.431717,0.536357,0.693392,0.265427,0.335462,0.345444,0.143314,0.899699,0.821843,0.525136,0.986969,0.461,0.920523,0.046322,0.633434,0.195227,0.598153,0.323299,0.231281,0.136824,0.0791408,0.0511817,0.266477,0.873854,0.0762168,0.049723,0.77877,0.950196,0.595404,0.243655,0.539796,0.883,0.49413,0.217467,0.579488,0.22016,0.0509596,0.250933,0.567099,0.113119,0.900834,0.465751,0.061649,0.370516,0.40275,0.638877,0.126108,0.545999,0.532423,0.620463,0.56856,0.351469,0.9518,0.171611,0.9184,0.923819,0.334413,0.986816,0.819754,0.197437,0.391137,0.969001,0.446624,0.206798,0.988927,0.0404701,0.867645,0.620295,0.940144,0.33978,0.486736,0.813502,0.590164,0.10146,0.0842183,0.601831,0.180009,0.243822,0.67943,0.711244,0.169678,0.19249,0.351838,0.579949,0.391515,0.361016,0.134814,0.05062,0.616709,0.827666,0.755843,0.417489,0.716993,0.134908,0.114441,0.506809,0.682051,0.748719,0.904589,0.375646,0.836708,0.600826,0.388485,0.828701,0.425496,0.274888,0.826896,0.906599,0.445403,0.111306,0.739911,0.0346367,0.8893,0.811527,0.440749,0.638461,0.211568,0.153644,0.80985,0.537391,0.779584,0.242877,0.744218,0.535146,0.287871,0.740003,0.697345,0.176756,0.993326,0.95462,0.975667,0.624343,0.405735,0.103312,0.200828,0.839355,0.870738,0.413668,0.26826,0.895713,0.856429,0.623164,0.961116,0.0111008,0.928595,0.332285,0.872351,0.233101,0.471001,0.0233596,0.191311,0.284274,0.870439,0.325426,0.116626,0.405513,0.737999,0.162512,0.1177,0.640141,0.28256,0.81917,0.352948,0.289086,0.807863,0.685891,0.975754,0.425233,0.864262,0.358588,0.358932,0.740106,0.373926,0.447308,0.760221,0.448585,0.842614,0.537082,0.839771,0.301387,0.786081,0.261617,0.413374,0.617718,0.33501,0.920458,0.754922,0.851262,0.161881,0.726245,0.414577,0.114435,0.112581,0.238136,0.343775,0.767782,0.67616,0.795685,0.504417,0.412579,0.37341,0.425661,0.0775425,0.0905879,0.370991,0.336508,0.364689,0.471543,0.640657,0.799168,0.0725034,0.327345,0.675879,0.306009,0.646014,0.703546,0.0905427,0.915214,0.621858,0.739829,0.30221,0.67249,0.628677,0.669151,0.377474,0.549471,0.791755,0.161542,0.438973,0.42345,0.341967,0.375392,0.448666,0.681699,0.983331,0.970578,0.953855,0.868958,0.674334,0.172744,0.344732,0.007577,0.449452,0.120518,0.50767,0.256002,0.86826,0.0764688,0.506794,0.538549,0.214636,0.830721,0.871061,0.45573,0.977107,0.297406,0.365708,0.221141,0.0624092,0.645367,0.202408,0.054549,0.196044,0.363285,0.219575,0.477438,0.0573998,0.537111,0.471973,0.856822,0.270162,0.346259,0.94164,0.405821,0.369882,0.89287,0.421483,0.598895,0.382238,0.015432,0.869881,0.766182,0.928828,0.230647,0.0778376,0.9921,0.722718,0.875481,0.427301,0.551269,0.656409,0.321176,0.864808,0.917328,0.162879,0.687228,0.0663198,0.728803,0.311663,0.288396,0.507255,0.273119,0.0607532,0.931066,0.97819,0.722133,0.260646,0.874826,0.598217,0.59015,0.0274319,0.322387,0.596691,0.700703,0.55482,0.687327,0.221174,0.0211172,0.325484,0.685799,0.797148,0.145024,0.414825,0.405629,0.532067,0.106957,0.156891,0.77885,0.324033,0.415458,0.730237,0.887007,0.863877,0.879157,0.808653,0.871353,0.841206,0.268967,0.0632227,0.369163,0.695939,0.518593,0.865948,0.436381,0.614919,0.30543,0.912129,0.885016,0.745034,0.77797,0.347077,0.534815,0.336844,0.439489,0.404221,0.293286,0.623966,0.659872,0.0868937,0.199879,0.230423,0.6322,0.322323,0.925668,0.251219,0.424501,0.643906,0.0405098,0.662611,0.424895,0.967191,0.976531,0.427713,0.761414,0.247405,0.582579,0.641807,0.169239,0.919095,0.32661,0.460165,0.278086,0.340085,0.212871,0.312839,0.456934,0.869986,0.896725,0.806449,0.97548,0.277539,0.720382,0.426842,0.475032,0.387736,0.611323,0.0747328,0.0469828,0.578665,0.857323,0.301763,0.0203338,0.168583,0.519233,0.682656,0.100791,0.283847,0.537053,0.191511,0.511557,0.148318,0.35192,0.37801,0.257481,0.675908,0.143275,0.773851,0.973547,0.48106,0.725933,0.949742,0.245106,0.529495,0.0399759,0.911021,0.634072,0.539959,0.810401,0.187665,0.210785,0.682641,0.418442,0.408345,0.606623,0.134833,0.601376,0.0224996,0.308108,0.724154,0.969664,0.0486317,0.547542,0.434444,0.20779,0.305378,0.825087,0.254086,0.736503,0.513779,0.192144,0.268159,0.1443,0.325809,0.812827,0.72804,0.847865,0.345695,0.936764,0.562165,0.719365,0.541247,0.309443,0.689896,0.916718,0.272939,0.000101388,0.212706,0.12125,0.0683622,0.908498,0.605703,0.460553,0.558627,0.200057,0.969902,0.555875,0.319047,0.392762,0.725389,0.703401,0.243313,0.521743,0.482676,0.716722,0.7111,0.561222,0.0267783,0.97862,0.456345,0.0410016,0.51978,0.536828,0.528012,0.379555,0.0572866,0.969997,0.338651,0.61062,0.109969,0.740228,0.584951,0.42694,0.926656,0.907674,0.759989,0.555812,0.999844,0.29301,0.808684,0.93661,0.31504,0.594871,0.202421,0.726829,0.62955,0.434251,0.602161,0.572043,0.69167,0.73805,0.711016,0.97243,0.858081,0.396726,0.785405,0.00744772,0.495504,0.310966,0.696991,0.893647,0.112087,0.785432,0.281383,0.962111,0.642337,0.513617,0.383695,0.0927733,0.768883,0.834132,0.0382746,0.558905,0.0151191,0.0872293,0.86996,0.591914,0.909781,0.871729,0.832928,0.735327,0.790581,0.250239,0.460591,0.92182,0.472271,0.755661,0.034148,0.861069,0.569278,0.801207,0.781388,0.910197,0.974157,0.0163878,0.440633,0.243546,0.810111,0.645048,0.0110456,0.316203,0.702941,0.612146,0.521843,0.936471,0.595943,0.399606,0.0942612,0.698599,0.544,0.583348,0.544164,0.142445,0.537556,0.659244,0.957451,0.642923,0.0796723,0.537034,0.728342,0.241034,0.381872,0.668092,0.996466,0.909097,0.144708,0.43256,0.581324,0.383065,0.82083,0.611358,0.768926,0.617872,0.833179,0.555847,0.564838,0.576992,0.0522884,0.0299836,0.652914,0.79754,0.782099,0.262244,0.239475,0.0556971,0.24256,0.70717,0.397322,0.445832,0.808343,0.02144,0.40188,0.565599,0.603591,0.337354,0.972416,0.430556,0.800277,0.0671642,0.796519,0.584549,0.903276,0.699644,0.632011,0.30278,0.655267,0.271396,0.800346,0.407198,0.547734,0.811409,0.206996,0.86749,0.78991,0.474296,0.459529,0.105571,0.280285,0.93391,0.620177,0.387951,0.455782,0.766985,0.522817,0.351574,0.816704,0.553277,0.985268,0.91404,0.846296,0.0491084,0.268064,0.711922,0.334122,0.250371,0.962767,0.442367,0.226863,0.348698,0.275818,0.10631,0.764383,0.655393,0.392415,0.110482,0.447329,0.223356,0.123049,0.313463,0.474839,0.744596,0.671876,0.0727777,0.132146,0.796094,0.526404,0.684123,0.680946,0.475736,0.648954,0.24144,0.68004,0.181034,0.6747,0.610014,0.692501,0.987028,0.138641,0.858153,0.0363245,0.181854,0.187492,0.649094,0.831756,0.242165,0.469317,0.734864,0.664137,0.864852,0.147581,0.401484,0.671005,0.368434,0.384794,0.0731245,0.241449,0.0372747,0.0807893,0.389438,0.48234,0.175221,0.438705,0.890595,0.640533,0.150091,0.133813,0.353078,0.868408,0.999405,0.569745,0.141415,0.473786,0.402925,0.37214,0.424608,0.495714,0.740076,0.119733,0.412847,0.107488,0.177775,0.980132,0.605008,0.184055,0.0461724,0.56845,0.451809,0.550288,0.624287,0.520706,0.283617,0.629354,0.541379,0.817333,0.0831518,0.0907322,0.621201,0.968673,0.626675,0.934197,0.497766,0.560955,0.521229,0.0308059,0.934691,0.486507,0.037221,0.441844,0.651712,0.745458,0.490598,0.211798,0.933237,0.464616,0.117803,0.103592,0.422256,0.487893,0.310654,0.0506568,0.459666,0.80986,0.669647,0.396827,0.372942,0.908724,0.259847,0.938578,0.814532,0.0396506,0.424915,0.718218,0.48261,0.803625,0.579377,0.834885,0.0873623,0.350216,0.963986,0.377858,0.0342669,0.764621,0.286258,0.346644,0.967699,0.644368,0.128795,0.770366,0.980345,0.14964,0.504624,0.0249835,0.406849,0.148368,0.383093,0.602457,0.657099,0.678334,0.54776,|0.739603,0.750811,0.15841,0.672575,0.557371,0.847152,0.630734,0.131521,0.190263,0.360583,0.240002,0.287237,0.650527,0.18273,0.337545,0.888874,0.973989,0.0988063,0.789538,0.685801,0.906563,0.199258,0.166146,0.0867752,0.416642,0.748693,0.520031,0.429685,0.314088,0.168804,0.168265,0.93666,0.418678,0.475901,0.1925,0.185444,0.390698,0.782523,0.943169,0.908162,0.471606,0.562184,0.297535,0.510587,0.242848,0.345816,0.925411,0.149578,0.783787,0.690164,0.903457,0.560693,0.851179,0.380741,0.725233,0.257427,0.643536,0.132764,0.706685,0.997264,0.517528,0.804702,0.101819,0.0269818,0.894054,0.273989,0.557912,0.961036,0.257385,0.65571,0.834829,0.695791,0.193454,0.0430167,0.523483,0.338349,0.0548105,0.460916,0.246859,0.11561,0.776893,0.163043,0.536609,0.241427,0.872488,0.45858,0.604967,0.492173,0.186259,0.0593181,0.894952,0.923778,0.680511,0.140272,0.438689,0.493456,0.955047,0.996259,0.404965,0.865393,0.351626,0.989542,0.872276,0.0616678,0.225648,0.058305,0.329305,0.396366,0.625194,0.704371,0.0764056,0.409521,0.622474,0.540443,0.716882,0.0481164,0.917682,0.183772,0.0431995,0.821333,0.901399,0.758613,0.131197,0.25527,0.814161,0.136947,0.950212,0.396878,0.217698,0.402753,0.608395,0.812912,0.895277,0.677283,0.397605,0.890132,0.959307,0.902524,0.886088,0.00514758,0.60171,0.30812,0.758672,0.546638,0.497805,0.401812,0.53376,0.782366,0.415226,0.234195,0.800681,0.711638,0.368261,0.826226,0.0671619,0.524267,0.776243,0.226622,0.629753,0.693385,0.525081,0.263621,0.0592551,0.786856,0.0871791,0.996849,0.0266249,0.511139,0.962339,0.579634,0.0309887,0.636311,0.261879,0.808001,0.424191,0.502372,0.449608,0.0664276,0.175671,0.113715,0.481806,0.0555409,0.103312,0.315591,0.572514,0.976808,0.294681,0.0411078,0.136046,0.278723,0.145292,0.217665,0.663837,0.828048,0.933719,0.235128,0.100373,0.407194,0.698272,0.670751,0.902363,0.882174,0.165672,0.00418073,0.0581892,0.406843,0.088517,0.121969,0.253857,0.373669,0.509518,0.657997,0.646281,0.437133,0.762192,0.737122,0.253064,0.0928584,0.331739,0.272815,0.0848117,0.292124,0.266548,0.065941,0.636926,0.59357,0.506046,0.194217,0.91846,0.837675,0.168026,0.143553,0.0249546,0.800642,0.788117,0.248021,0.947368,0.859557,0.587851,0.176294,0.738742,0.575922,0.28558,0.683062,0.611382,0.825646,0.628462,0.209652,0.69816,0.680573,0.41815,0.981925,0.901724,0.76845,0.862876,0.854304,0.314902,0.70873,0.0467995,0.0793088,0.100708,0.620971,0.269268,0.166563,0.349567,0.212974,0.803665,0.411783,0.968198,0.127969,0.144492,0.456047,0.836989,0.93481,0.854309,0.578209,0.964395,0.16844,0.736037,0.397801,0.441044,0.195513,0.0612651,0.693341,0.121359,0.715334,0.804164,0.44124,0.454372,0.972876,0.661753,0.852438,0.411261,0.690974,0.708519,0.207169,0.38762,0.437473,0.338295,0.332293,0.0400413,0.0176064,0.563306,0.289345,0.0740263,0.885903,0.842994,0.500268,0.0135049,0.0889174,0.786277,0.625663,0.80518,0.342948,0.263866,0.899129,0.0621551,0.0906286,0.0260305,0.120107,0.624697,0.781173,0.935281,0.20965,0.63302,0.27661,0.337954,0.410486,0.259159,0.793984,0.381698,0.551097,0.441172,0.253386,0.380132,0.628817,0.0935258,0.942492,0.695319,0.545916,0.559442,0.649901,0.333156,0.370326,0.259917,0.997458,0.8848,0.0781937,0.340747,0.899803,0.80051,0.657958,0.0908453,0.114317,0.115044,0.995984,0.823989,0.0230877,0.361468,0.369711,0.577208,0.34894,0.949214,0.673984,0.074384,0.1987,0.834897,0.0639662,0.454411,0.198318,0.229892,0.486563,0.513901,0.325317,0.231962,0.374259,0.191689,0.477604,0.0202399,0.162052,0.878001,0.83534,0.685547,0.776836,0.523599,0.657819,0.224466,0.236367,0.258859,0.640443,0.997922,0.0529866,0.76178,0.256583,0.750932,0.705635,0.567734,0.597344,0.461817,0.217355,0.185829,0.162271,0.314916,0.895637,0.0829986,0.809214,0.642919,0.539111,0.779531,0.733932,0.869615,0.279428,0.975941,0.682208,0.395311,0.493815,0.188955,0.521329,0.0431023,0.714602,0.568721,0.53841,0.130377,0.44525,0.222435,0.823391,0.0512183,0.479237,0.903968,0.146699,0.0843851,0.737305,0.30799,0.301732,0.453419,0.832328,0.879935,0.990592,0.695491,0.0892313,0.504482,0.257078,0.701585,0.641803,0.273643,0.370245,0.562131,0.159423,0.306098,0.223086,0.677342,0.62795,0.619931,0.695445,0.830641,0.088534,0.523115,0.404001,0.241595,0.13665,0.520432,0.925691,0.108606,0.63911,0.184107,0.199154,0.453006,0.055702,0.242013,0.253964,0.305949,0.195626,0.940534,0.489973,0.195921,0.45907,0.691001,0.32571,0.490148,0.0089556,0.137953,0.335477,0.520504,0.484539,0.569543,0.719844,0.969624,0.0867626,0.58716,0.894531,0.442668,0.978692,0.361971,0.234683,0.303871,0.789814,0.227077,0.300473,0.607219,0.485236,0.114703,0.448066,0.642311,0.296346,0.716714,0.4821,0.732491,0.884907,0.197302,0.71002,0.520533,0.90798,0.622401,0.301039,0.144374,0.148622,0.232843,0.136557,0.170831,0.0553285,0.188579,0.174538,0.537558,0.735481,0.0765751,0.650658,0.428888,0.757953,0.658088,0.175709,0.402699,0.887826,0.720004,0.416384,0.903958,0.902019,0.902444,0.840196,0.522602,0.0832,0.104758,0.209923,0.383453,0.102315,0.541568,0.657621,0.873361,0.237658,0.855814,0.950046,0.628224,0.912766,0.0122016,0.601398,0.686689,0.190007,0.579256,0.559421,0.171803,0.62063,0.422443,0.447989,0.075289,0.603663,0.372139,0.208154,0.257915,0.0353363,0.57151,0.261075,0.123292,0.452948,0.352311,0.262372,0.0899949,0.743202,0.119022,0.485036,0.657173,0.803809,0.400381,0.8086,0.501211,0.78835,0.133089,0.889867,0.834523,0.891073,0.594555,0.147959,0.933513,0.925398,0.257657,0.388076,0.621144,0.496831,0.526855,0.384312,0.456132,0.60482,0.0532384,0.266502,0.305346,0.363378,0.260307,0.333706,0.485531,0.511728,0.00779301,0.619341,0.411972,0.751996,0.598599,0.788016,0.738253,0.269883,0.355116,0.0578249,0.569627,0.614553,0.353599,0.299963,0.136496,0.40987,0.956716,0.0954428,0.88991,0.478246,0.431235,0.628,0.835261,0.336017,0.00329173,0.841088,0.993741,0.40309,0.637529,0.8266,0.0146392,0.305955,0.723502,0.00920534,0.13823,0.202171,0.940188,0.182793,0.23131,0.63946,0.0246108,0.412186,0.678282,0.358797,0.0530813,0.168609,0.380382,0.109439,0.866316,0.147684,0.676497,0.794113,0.187846,0.740077,0.187287,0.283858,0.802656,0.0379174,0.515894,0.642476,0.389363,0.184238,0.0216973,0.89277,0.0773293,0.970887,0.354969,0.775329,0.641842,0.914568,0.33493,0.19771,0.356851,0.325522,0.629109,0.646061,0.731201,0.455559,0.622501,0.545903,0.878554,0.455122,0.135172,0.950887,0.514815,0.441558,0.0617921,0.693664,0.404594,0.0232897,0.358956,0.769624,0.145149,0.142587,0.794342,0.705947,0.223774,0.0033406,0.830012,0.72959,0.191306,0.0484865,0.106372,0.519228,0.776522,0.861099,0.641742,0.785076,0.0786772,0.44493,0.725389,0.27613,0.309939,0.220461,0.845472,0.450566,0.284631,0.8091,0.0834439,0.443538,0.886076,0.333033,0.289247,0.310827,0.746102,0.698003,0.610619,0.839326,0.973448,0.55485,0.845248,0.983524,0.466012,0.962634,0.952521,0.217698,0.781462,0.513817,0.920919,0.470974,0.728465,0.537723,0.852184,0.78255,0.170041,0.943465,0.29331,0.209262,0.732967,0.837041,0.342344,0.0896664,0.987932,0.816704,0.464086,0.58508,0.605849,0.0295811,0.496434,0.920109,0.32063,0.517004,0.697833,0.181131,0.292593,0.323177,0.417026,0.408449,0.24525,0.242074,0.500028,0.565002,0.69122,0.788185,0.624343,0.669407,0.537366,0.181145,0.080887,0.43311,0.957387,0.572659,0.170259,0.0779217,0.952999,0.817453,0.462061,0.142422,0.0690124,0.373808,0.403676,0.356101,0.669132,0.700582,0.282935,0.31188,0.474468,0.538368,0.389,0.967562,0.647274,0.134911,0.934141,0.445784,0.991793,0.571069,0.279709,0.331498,0.919317,0.365424,0.159309,0.776035,0.431672,0.0289608,0.0558451,0.656761,0.800848,0.626333,0.345517,0.452169,0.806349,0.0423285,0.0178724,0.49163,0.0431132,0.658476,0.644924,0.706701,0.814619,0.915253,0.68114,0.0587047,0.401819,0.68611,0.845049,0.0525466,0.78668,0.304649,0.0914499,0.534942,0.377508,0.335929,0.0459632,0.334416,0.704954,0.72686,0.36943,0.0097031,0.0482665,0.808439,0.209127,0.505037,0.710033,0.689949,0.229875,0.560902,0.277837,0.990213,0.92147,0.212088,0.256089,0.197748,0.58783,0.828471,0.565517,0.487722,0.729168,0.691207,0.831923,0.403207,0.314849,0.213338,0.0317857,0.267288,0.185745,0.379484,0.725266,0.18947,0.739096,0.95642,0.443638,0.215422,0.137686,0.102443,0.913618,0.645693,0.814532,0.177956,0.854776,0.555793,0.0479749,0.459414,0.738123,0.159078,0.978276,0.64942,0.130332,0.234951,0.964978,0.0416012,0.913786,0.658126,0.744859,0.30059,0.0687811,0.0711396,0.563141,0.510527,0.215989,0.48873,0.458739,0.547494,0.12254,0.432513,0.716258,0.496387,0.234239,0.860408,0.33584,0.0801987,0.838891,0.0503651,0.796906,0.71193,0.491989,0.552492,0.308522,0.538025,0.556815,0.711908,0.647749,0.368246,0.840881,0.708907,0.860258,0.961289,0.24159,0.696976,0.0495768,0.546814,0.486647,0.298391,0.771808,0.768238,0.777648,0.995758,0.0829771,0.54544,0.896616,0.309634,0.0828595,0.484403,0.211303,0.830279,0.951822,0.781446,0.922965,0.827483,0.71739,0.465476,0.611575,0.163696,0.176522,0.071133,0.728067,0.599152,0.435715,0.315144,0.023415,0.316519,0.965184,0.687214,0.811233,0.0427985,0.228878,0.544202,0.505442,0.604065,0.511096,0.764857,0.84427,0.986259,0.0785261,0.994718,0.823579,0.965934,0.49961,0.325528,0.483899,0.27334,0.970868,0.410556,|0.953978,0.919297,0.00236768,0.373186,0.50369,0.691132,0.358266,0.685101,0.43971,0.886333,0.83691,0.649471,0.566367,0.973172,0.509966,0.776003,0.767458,0.0133106,0.690245,0.598629,0.406655,0.362904,0.670302,0.0958326,0.883104,0.686204,0.794011,0.131199,0.256078,0.846832,0.201883,0.532728,0.572796,0.365563,0.773952,0.747847,0.614274,0.890414,0.458656,0.774015,0.354129,0.360762,0.873778,0.822164,0.392444,0.720484,0.664316,0.0615667,0.905663,0.485607,0.167152,0.994402,0.549256,0.332097,0.871439,0.602727,0.862198,0.86311,0.493031,0.704426,0.77264,0.0836304,0.0432965,0.194213,0.657355,0.922359,0.632985,0.625969,0.268421,0.987373,0.410309,0.0955034,0.245903,0.907233,0.225813,0.94992,0.96546,0.168906,0.228709,0.918926,0.42508,0.597441,0.859574,0.228104,0.620641,0.0225717,0.76489,0.588714,0.507334,0.599357,0.295384,0.659012,0.489156,0.120322,0.823717,0.330403,0.242905,0.0126359,0.755088,0.787073,0.10708,0.762741,0.461297,0.938869,0.159758,0.828148,0.796223,0.473947,0.336596,0.0839851,0.311245,0.526597,0.771008,0.251043,0.478572,0.0338999,0.255857,0.0572267,0.521221,0.269435,0.205727,0.918114,0.337933,0.126365,0.99467,0.352968,0.58123,0.165174,0.138274,0.372315,0.989914,0.115135,0.216024,0.278424,0.871209,0.247292,0.457626,0.282169,0.342086,0.228875,0.00454432,0.416113,0.561345,0.199529,0.595527,0.780214,0.688305,0.257925,0.00399119,0.457465,0.286051,0.838062,0.721491,0.954798,0.0239161,0.818808,0.839984,0.0531443,0.434952,0.111662,0.66125,0.159676,0.988954,0.608445,0.443006,0.196489,0.835437,0.512404,0.0814124,0.0781343,0.00168127,0.0981098,0.4906,0.00657171,0.270955,0.348825,0.433769,0.307929,0.502495,0.206717,0.65606,0.493853,0.114317,0.652979,0.17815,0.771682,0.958998,0.33939,0.550223,0.687451,0.320793,0.381527,0.436459,0.909545,0.205122,0.217769,0.348377,0.997558,0.920454,0.869284,0.235775,0.0161356,0.189761,0.637966,0.772396,0.397121,0.749528,0.805218,0.565007,0.873905,0.812848,0.209268,0.218456,0.931132,0.857619,0.338373,0.282173,0.529529,0.0143083,0.597508,0.478619,0.429674,0.731332,0.14396,0.12326,0.14803,0.143674,0.627101,0.391334,0.403218,0.0346032,0.388037,0.118675,0.00550777,0.818967,0.803089,0.580139,0.141358,0.920353,0.0300252,0.816564,0.772627,0.257737,0.655847,0.817455,0.890057,0.260687,0.449276,0.8646,0.692123,0.415866,0.373519,0.187808,0.0180983,0.488185,0.771175,0.698119,0.519984,0.878947,0.665959,0.0405524,0.605264,0.519386,0.756023,0.633809,0.499444,0.42444,0.353638,0.188842,0.730969,0.196377,0.931035,0.609235,0.353867,0.538245,0.566712,0.0764672,0.106443,0.717949,0.342006,0.780411,0.490625,0.69807,0.0650597,0.980816,0.525097,0.430573,0.300429,0.13941,0.0389602,0.102149,0.00901997,0.139157,0.0874017,0.0330078,0.193158,0.705994,0.0422609,0.21969,0.162885,0.733682,0.805368,0.991401,0.569089,0.856436,0.598541,0.747854,0.618322,0.613569,0.880637,0.720453,0.265099,0.395343,0.612188,0.326722,0.783995,0.937165,0.149713,0.186323,0.219306,0.66107,0.462378,0.0675391,0.0468004,0.720325,0.0857947,0.486512,0.15604,0.352343,0.902588,0.391194,0.400716,0.495944,0.14233,0.561275,0.282726,0.442472,0.0901251,0.924643,0.506885,0.574281,0.414642,0.0410537,0.499606,0.29388,0.155928,0.808958,0.532752,0.0513073,0.675699,0.196474,0.938055,0.440717,0.309983,0.803579,0.427713,0.0156372,0.720542,0.0577295,0.810931,0.762322,0.24896,0.415794,0.257931,0.707236,0.799562,0.527296,0.0281209,0.105093,0.20073,0.325743,0.326959,0.571138,0.327907,0.751836,0.679675,0.929117,0.142346,0.0277942,0.938808,0.740358,0.565474,0.262874,0.641019,0.494581,0.993641,0.37803,0.903171,0.642066,0.165838,0.931232,0.366399,0.335722,0.300094,0.887107,0.953607,0.901107,0.373073,0.364599,0.115762,0.700372,0.132662,0.717088,0.587305,0.648957,0.238079,0.943212,0.311,0.889193,0.175454,0.269157,0.828861,0.367403,0.934965,0.557859,0.263229,0.62235,0.617159,0.435157,0.820713,0.875384,0.201767,0.629358,0.89501,0.383887,0.406174,0.918817,0.257158,0.36827,0.379544,0.29596,0.521939,0.837825,0.528383,0.834793,0.198373,0.605564,0.409528,0.149318,0.29881,0.370208,0.497986,0.861539,0.518899,0.780789,0.147723,0.951968,0.886908,0.969359,0.519454,0.636674,0.617577,0.0312068,0.207136,0.422022,0.650479,0.982089,0.257829,0.0913683,0.217647,0.216785,0.729524,0.204526,0.355652,0.616331,0.581634,0.545804,0.027194,0.930398,0.467382,0.101105,0.511682,0.373003,0.786322,0.33609,0.11131,0.723386,0.110855,0.608118,0.387436,0.223615,0.556438,0.983152,0.173829,0.0214583,0.141072,0.793232,0.315974,0.880747,0.243098,0.719153,0.865778,0.414171,0.668961,0.977046,0.0159639,0.690152,0.548223,0.693463,0.417167,0.469825,0.859442,0.758081,0.920982,0.423177,0.472052,0.773795,0.344975,0.901088,0.432771,0.439592,0.255905,0.981564,0.818523,0.515303,0.890471,0.977117,0.395715,0.528635,0.606126,0.733107,0.92566,0.159073,0.225641,0.81045,0.330822,0.302155,0.0907721,0.747125,0.158835,0.284746,0.649845,0.670822,0.236967,0.518246,0.798346,0.744886,0.160378,0.623675,0.922473,0.969642,0.130373,0.0145942,0.929011,0.714739,0.112198,0.357453,0.794659,0.679614,0.569013,0.852216,0.763311,0.00703132,0.85112,0.553533,0.656268,0.873863,0.830914,0.384545,0.0987425,0.577114,0.322686,0.943901,0.433254,0.231824,0.315385,0.313766,0.237071,0.615049,0.713334,0.82863,0.524613,0.187429,0.735285,0.958759,0.634083,0.0683819,0.334599,0.785937,0.611561,0.979485,0.124648,0.747815,0.494879,0.444547,0.0381683,0.432512,0.154579,0.362969,0.265165,0.767402,0.751433,0.295749,0.0925613,0.937975,0.415504,0.438306,0.217395,0.421279,0.137776,0.989346,0.416018,0.69963,0.22,0.529905,0.988787,0.566808,0.545895,0.712788,0.135683,0.479417,0.457877,0.0840837,0.32594,0.540919,0.488902,0.772581,0.313719,0.123379,0.188447,0.425679,0.219601,0.966426,0.258594,0.432085,0.0163809,0.660206,0.83937,0.468511,0.268435,0.355542,0.676178,0.359888,0.580883,0.755569,0.313586,0.603096,0.919496,0.862201,0.76026,0.441639,0.791024,0.619184,0.618524,0.281979,0.201437,0.579937,0.810416,0.793293,0.994297,0.399612,0.642395,0.991541,0.631214,0.648996,0.120612,0.191985,0.593502,0.913895,0.783331,0.271752,0.0691106,0.864829,0.86318,0.80288,0.78421,0.832381,0.993039,0.122999,0.280555,0.738288,0.972538,0.191135,0.200102,0.172183,0.514454,0.842113,0.0721785,0.909228,0.359285,0.924408,0.875799,0.999762,0.288471,0.781902,0.281327,0.308376,0.10014,0.106794,0.295166,0.264382,0.478046,0.359677,0.737488,0.244886,0.284716,0.102596,0.499125,0.729523,0.930966,0.766559,0.428776,0.393009,0.552844,0.103432,0.337437,0.543112,0.468707,0.219301,0.597574,0.157507,0.326784,0.94978,0.335277,0.0102294,0.714239,0.946789,0.875643,0.829396,0.172054,0.597216,0.215218,0.179345,0.375259,0.543897,0.0163021,0.190811,0.698554,0.413682,0.931477,0.384774,0.309061,0.592111,0.418183,0.0562807,0.0147159,0.388046,0.124293,0.706406,0.161912,0.176253,0.187977,0.527644,0.384374,0.130825,0.537651,0.0429258,0.0996658,0.573165,0.995162,0.037407,0.746441,0.657203,0.32097,0.572862,0.801171,0.413049,0.0182211,0.499863,0.407665,0.326913,0.214823,0.298825,0.87959,0.703451,0.550332,0.678164,0.162866,0.29104,0.794779,0.600761,0.779186,0.981413,0.496396,0.996415,0.18616,0.547114,0.39507,0.301098,0.589867,0.39803,0.741749,0.705942,0.864262,0.650484,0.15428,0.325131,0.721583,0.41819,0.896784,0.699332,0.285492,0.666151,0.269958,0.87628,0.928642,0.673606,0.206929,0.852061,0.743097,0.238194,0.184791,0.990369,0.0730416,0.695314,0.87908,0.452357,0.785016,0.660613,0.00607729,0.564336,0.321465,0.00110036,0.717257,0.477665,0.463923,0.734884,0.386668,0.744794,0.847783,0.891133,0.890472,0.0626161,0.251271,0.779734,0.25186,0.596655,0.112053,0.231822,0.85077,0.811761,0.8909,0.985537,0.876893,0.941088,0.487999,0.909864,0.0696446,0.868846,0.234118,0.760225,0.20661,0.445296,0.47693,0.595288,0.737632,0.247562,0.288253,0.775663,0.748467,0.0384181,0.168806,0.264893,0.611317,0.229342,0.0841922,0.817676,0.277767,0.46504,0.403826,0.767298,0.855336,0.884513,0.199187,0.91242,0.0909948,0.301821,0.0839632,0.304732,0.1433,0.127916,0.593889,0.951378,0.992376,0.203592,0.893156,0.585442,0.389959,0.971565,0.281752,0.0135966,0.355679,0.0768602,0.828945,0.775099,0.76105,0.946192,0.00641304,0.496995,0.243234,0.0305147,0.418732,0.0493345,0.725228,0.942098,0.650955,0.456535,0.850784,0.268888,0.305243,0.460902,0.433453,0.773465,0.976168,0.868709,0.0316326,0.82478,0.882728,0.262298,0.614325,0.755179,0.0676688,0.960365,0.276087,0.208937,0.717284,0.366108,0.426411,0.316704,0.113059,0.680004,0.27189,0.34653,0.130705,0.448677,0.96136,0.0686033,0.484828,0.31371,0.639882,0.579322,0.482562,0.55799,0.250388,0.826227,0.490115,0.924547,0.620911,0.585243,0.399598,0.704562,0.100037,0.80608,0.519985,0.0777055,0.622168,0.0613887,0.337024,0.843662,0.844912,0.840399,0.353922,0.716554,0.61203,0.491297,0.961379,0.945546,0.279597,0.356014,0.479684,0.417898,0.391393,0.0357683,0.985988,0.541604,0.565077,0.463933,0.632284,0.432778,0.472907,0.105706,0.0271038,0.715212,0.52576,0.680526,0.918288,0.196201,0.160565,0.849325,0.808783,0.781616,0.392536,0.669352,0.518575,0.280322,0.182462,0.385059,0.0628391,0.211949,0.69015,0.372751,0.141078,0.998275,0.761167,0.84719,0.263373,0.0541239,0.95661,0.783663,0.847354,|0.574595,0.538548,0.0259179,0.738831,0.105916,0.566582,0.983035,0.686039,0.393747,0.335956,0.471516,0.910235,0.710787,0.928402,0.641927,0.949394,0.396948,0.424137,0.928894,0.00273067,0.911199,0.666825,0.407233,0.56215,0.338968,0.00734687,0.265955,0.87023,0.160171,0.0674443,0.315387,0.971043,0.313198,0.605303,0.91014,0.172899,0.46095,0.107107,0.163259,0.496565,0.483336,0.558937,0.553623,0.45946,0.153972,0.1968,0.723231,0.57963,0.62779,0.0706325,0.428893,0.00765586,0.828816,0.783167,0.568347,0.887594,0.746132,0.363899,0.721078,0.530875,0.684479,0.731481,0.890866,0.298408,0.718266,0.138533,0.875556,0.233162,0.980053,0.143077,0.453136,0.370106,0.325936,0.870038,0.161551,0.635003,0.518739,0.983434,0.896701,0.0267567,0.990417,0.310078,0.205109,0.708096,0.723309,0.589601,0.243655,0.472799,0.795859,0.90902,0.313905,0.45,0.734607,0.672965,0.545519,0.903483,0.937061,0.80021,0.95086,0.00181925,0.334901,0.150355,0.686521,0.248728,0.924369,0.376378,0.698704,0.068777,0.640015,0.382445,0.780994,0.732033,0.635952,0.743025,0.215998,0.398819,0.513105,0.999653,0.673664,0.800822,0.253523,0.874302,0.883161,0.686845,0.646108,0.383943,0.0607077,0.605659,0.656746,0.246305,0.86365,0.980322,0.729058,0.129675,0.240925,0.669279,0.455472,0.887782,0.395147,0.930376,0.604596,0.919236,0.656055,0.170783,0.6296,0.719378,0.953269,0.657093,0.407934,0.219859,0.849722,0.248465,0.481643,0.835143,0.94686,0.560455,0.498697,0.16914,0.148392,0.625198,0.493295,0.85173,0.194008,0.132868,0.922094,0.69276,0.226976,0.764281,0.691056,0.21034,0.49861,0.490173,0.575816,0.866307,0.464791,0.236861,0.479449,0.247602,0.714322,0.554542,0.964877,0.326229,0.533906,0.0189002,0.345114,0.939139,0.706378,0.765249,0.656755,0.615837,0.123623,0.993078,0.387236,0.81343,0.423563,0.0266626,0.880727,0.455596,0.0997649,0.575742,0.00765103,0.163298,0.202016,0.75253,0.410309,0.110383,0.343728,0.456237,0.878223,0.607267,0.105559,0.71226,0.357201,0.964017,0.760643,0.433145,0.463262,0.18552,0.379714,0.249084,0.23259,0.268676,0.10555,0.414455,0.0784004,0.03732,0.545975,0.940847,0.573632,0.970685,0.197521,0.603535,0.694586,0.413251,0.570474,0.547309,0.499173,0.760901,0.489803,0.648107,0.99279,0.942568,0.885931,0.718845,0.512463,0.401791,0.618146,0.23874,0.544822,0.593318,0.605969,0.429217,0.651675,0.463022,0.801225,0.829534,0.0340715,0.634766,0.467663,0.236528,0.603041,0.377414,0.554549,0.956972,0.0547498,0.0401121,0.819537,0.358495,0.285532,0.624019,0.757105,0.639675,0.0512488,0.437366,0.443664,0.167015,0.955838,0.17539,0.0872521,0.192623,0.184058,0.0259103,0.438643,0.79782,0.93109,0.0621072,0.736537,0.128046,0.646237,0.995598,0.84589,0.8894,0.0374956,0.311964,0.207336,0.0963876,0.693703,0.486051,0.7989,0.111825,0.455578,0.212722,0.820512,0.861889,0.352714,0.368254,0.370445,0.986717,0.772706,0.0248957,0.215171,0.303212,0.00268841,0.419963,0.777545,0.902989,0.934444,0.905441,0.238404,0.421234,0.0427014,0.406925,0.796146,0.0939656,0.354294,0.530536,0.428553,0.17945,0.451226,0.961613,0.953966,0.65399,0.709707,0.764249,0.805089,0.28321,0.985585,0.849698,0.951794,0.349824,0.136067,0.563398,0.115742,0.861285,0.44768,0.879579,0.490033,0.539257,0.34785,0.0242675,0.221958,0.890708,0.316474,0.702388,0.885565,0.304435,0.890193,0.765757,0.508555,0.026936,0.919656,0.884479,0.230322,0.188469,0.511743,0.896148,0.273066,0.109566,0.451533,0.646731,0.292456,0.675979,0.563421,0.937084,0.351146,0.616491,0.0902637,0.393428,0.0589988,0.284921,0.835152,0.198803,0.83386,0.468928,0.256037,0.315485,0.175667,0.570082,0.637065,0.88199,0.43993,0.295099,0.532679,0.172392,0.3993,0.678458,0.36834,0.676073,0.629734,0.635206,0.656318,0.477701,0.2558,0.570178,0.187123,0.0245773,0.0294168,0.743148,0.227057,0.730481,0.109193,0.66327,0.809907,0.468353,0.513538,0.00603878,0.736061,0.604849,0.542976,0.253742,0.923285,0.37651,0.392266,0.42797,0.580268,0.848762,0.934971,0.461172,0.737437,0.0889012,0.899978,0.389214,0.947207,0.57082,0.317381,0.966683,0.181425,0.496456,0.300534,0.0591435,0.978245,0.955643,0.147497,0.457909,0.00943065,0.328404,0.763911,0.453477,0.480085,0.526495,0.116087,0.242672,0.890237,0.540987,0.683412,0.879065,0.853166,0.207436,0.586121,0.174822,0.766508,0.326551,0.530791,0.152747,0.690223,0.0119408,0.51774,0.0755991,0.604667,0.4908,0.799721,0.973681,0.696193,0.245137,0.328113,0.422076,0.0484415,0.20987,0.425683,0.154204,0.633421,0.499305,0.0318214,0.368797,0.192979,0.95118,0.3868,0.00857168,0.357007,0.267043,0.832851,0.288781,0.732189,0.409559,0.661032,0.754953,0.442612,0.235805,0.0670689,0.308418,0.0341558,0.790396,0.602459,0.256471,0.891631,0.20923,0.173212,0.617717,0.133124,0.425857,0.520693,0.109704,0.395644,0.0559846,0.471739,0.139668,0.924243,0.878287,0.992372,0.275475,0.580718,0.0482157,0.984959,0.256878,0.0930607,0.407618,0.912106,0.936093,0.890694,0.891372,0.762401,0.736318,0.0706639,0.879498,0.657364,0.768463,0.423422,0.0468702,0.571438,0.059786,0.870533,0.100766,0.807637,0.948159,0.172769,0.575837,0.550147,0.811326,0.393359,0.461969,0.104483,0.893648,0.596685,0.0300017,0.0737762,0.237392,0.961222,0.0388413,0.365612,0.844934,0.466017,0.184296,0.303282,0.387684,0.749839,0.316453,0.487496,0.253647,0.681415,0.550334,0.48602,0.0734326,0.669144,0.467917,0.227067,0.617311,0.314682,0.643832,0.770867,0.367306,0.546832,0.315381,0.756694,0.45421,0.175518,0.837794,0.493584,0.90169,0.348046,0.550759,0.362634,0.856281,0.853356,0.259695,0.561607,0.0489023,0.081938,0.60304,0.0847027,0.903573,0.954096,0.627401,0.899354,0.835639,0.592285,0.228982,0.951632,0.466292,0.683428,0.83115,0.980916,0.964252,0.458375,0.0429565,0.766603,0.0539257,0.873544,0.945665,0.777195,0.843512,0.865593,0.186518,0.358292,0.382398,0.860956,0.198355,0.393051,0.866241,0.946823,0.0676369,0.6609,0.729705,0.0073024,0.736477,0.245424,0.722022,0.0870311,0.0290056,0.396012,0.530862,0.926765,0.432996,0.778026,0.903268,0.219734,0.489533,0.829735,0.581189,0.917117,0.577048,0.112446,0.757744,0.270778,0.178162,0.305196,0.279998,0.0915254,0.482729,0.454189,0.12184,0.0681776,0.976955,0.926743,0.17395,0.0184458,0.570753,0.976235,0.197045,0.623783,0.453607,0.309592,0.572744,0.239741,0.495855,0.197024,0.979345,0.921982,0.71375,0.277799,0.754412,0.976793,0.180739,0.983301,0.11123,0.945645,0.0969599,0.907645,0.518745,0.809103,0.992176,0.479302,0.440323,0.456674,0.304706,0.744182,0.390732,0.148631,0.991736,0.844501,0.161506,0.10141,0.385485,0.715885,0.317459,0.883085,0.825604,0.100112,0.930236,0.739677,0.0809003,0.503095,0.206371,0.299681,0.248463,0.79257,0.506084,0.103083,0.355909,0.65109,0.32808,0.285511,0.0862009,0.101472,0.377677,0.9769,0.12116,0.933453,0.545008,0.551341,0.396287,0.42517,0.141036,0.371494,0.577837,0.463337,0.23146,0.211334,0.259133,0.548489,0.641392,0.546857,0.524522,0.399471,0.677916,0.35417,0.465072,0.584317,0.145919,0.119788,0.48438,0.386014,0.166345,0.299928,0.193107,0.875807,0.682764,0.530035,0.489173,0.0722796,0.0140833,0.370745,0.908009,0.700995,0.488379,0.00103575,0.274875,0.557973,0.46101,0.594107,0.703001,0.277288,0.404898,0.974168,0.10723,0.15634,0.608286,0.693362,0.358908,0.784584,0.449272,0.0799173,0.217571,0.779372,0.492095,0.713262,0.73505,0.731083,0.113166,0.99097,0.292255,0.0316256,0.611671,0.999063,0.821176,0.955816,0.531111,0.756044,0.769315,0.877043,0.109024,0.34382,0.398162,0.176143,0.0534616,0.431973,0.432421,0.917709,0.914339,0.661622,0.786835,0.361491,0.950475,0.269877,0.163638,0.504824,0.0066399,0.550178,0.250303,0.900418,0.199847,0.00578594,0.70475,0.335337,0.729664,0.996372,0.690152,0.861281,0.839403,0.214763,0.4872,0.944672,0.943522,0.0311075,0.507413,0.692839,0.0203441,0.107535,0.9702,0.952913,0.561401,0.611087,0.113413,0.315434,0.151106,0.0587959,0.370758,0.900902,0.378409,0.0697674,0.166688,0.271151,0.802289,0.0749215,0.485756,0.474394,0.0247077,0.79166,0.064063,0.364541,0.892576,0.865597,0.867665,0.719319,0.00843054,0.209225,0.729452,0.722147,0.552278,0.422719,0.906993,0.870341,0.364609,0.285806,0.595661,0.909114,0.23625,0.538763,0.167481,0.376599,0.564431,0.614293,0.275954,0.700875,0.20448,0.661909,0.0732191,0.157994,0.757486,0.0964625,0.491105,0.506618,0.601083,0.595724,0.315,0.117579,0.254735,0.946044,0.00219929,0.298354,0.527935,0.879642,0.00699759,0.85923,0.712005,0.616651,0.716755,0.0285013,0.320356,0.463552,0.613926,0.71096,0.192821,0.806127,0.756838,0.488216,0.311038,0.213818,0.342835,0.746763,0.780332,0.30784,0.571965,0.615038,0.6205,0.441297,0.447384,0.0414324,0.345276,0.643463,0.356739,0.459306,0.599411,0.993905,0.767217,0.105287,0.737194,0.251437,0.278416,0.283026,0.517042,0.805991,0.99701,0.940635,0.795641,0.722737,0.966905,0.221751,0.963959,0.89019,0.548817,0.524743,0.31703,0.25112,0.301436,0.318271,0.786719,0.134667,0.478446,0.392069,0.431605,0.862158,0.578795,0.164782,0.147913,0.934386,0.246367,0.252624,0.61745,0.507896,0.27755,0.691558,0.882685,0.521959,0.786553,0.409268,0.746035,0.249214,0.752115,0.815154,0.0939959,0.10164,0.3342,0.508053,0.682532,0.342144,0.927146,0.811348,0.85782,0.85983,0.00277299,0.727878,0.146969,0.0257817,0.223629,0.777232,0.58129,0.721645,0.935714,0.502496,0.59464,|0.786925,0.442311,0.181322,0.46991,0.35133,0.184407,0.114613,0.557064,0.924159,0.561746,0.0404595,0.59476,0.639343,0.0321159,0.567648,0.113904,0.71285,0.920069,0.188533,0.659634,0.177119,0.650657,0.61735,0.620987,0.0929253,0.787149,0.628626,0.603559,0.702692,0.571388,0.729765,0.920079,0.174967,0.00197506,0.277933,0.0183296,0.590611,0.939075,0.112722,0.59676,0.767465,0.0123538,0.742966,0.811714,0.123112,0.661679,0.0504541,0.21578,0.310564,0.0500979,0.90946,0.768976,0.256864,0.300449,0.511039,0.662865,0.233144,0.494255,0.34534,0.343185,0.432593,0.5542,0.275661,0.966058,0.801873,0.915038,0.139993,0.809985,0.906624,0.224995,0.145198,0.290444,0.670549,0.706509,0.0387422,0.80461,0.806736,0.255822,0.00843638,0.328485,0.115987,0.818268,0.24037,0.437594,0.523907,0.562784,0.463035,0.921035,0.893696,0.403937,0.509532,0.649224,0.697693,0.993366,0.666745,0.184495,0.19507,0.906256,0.785325,0.745829,0.319431,0.384668,0.852727,0.751652,0.439871,0.794595,0.737421,0.796006,0.508864,0.090754,0.0691684,0.332817,0.852409,0.201165,0.788684,0.892576,0.962952,0.3783,0.860651,0.132909,0.380423,0.165548,0.175812,0.274496,0.702651,0.168537,0.0323511,0.421939,0.500798,0.320644,0.896941,0.0450355,0.453334,0.133987,0.938856,0.378817,0.400206,0.0701444,0.698485,0.462107,0.730765,0.767004,0.902369,0.018728,0.159435,0.120973,0.889838,0.20353,0.610401,0.0275749,0.379457,0.136316,0.710829,0.0444955,0.880991,0.291665,0.119458,0.92693,0.415892,0.758703,0.203254,0.818468,0.826136,0.467099,0.790148,0.115012,0.723276,0.458878,0.784156,0.703836,0.55631,0.641156,0.996761,0.162483,0.639446,0.791483,0.124735,0.149076,0.0103462,0.0559472,0.935398,0.576328,0.113983,0.973679,0.494074,0.639604,0.134639,0.392019,0.546406,0.864444,0.606408,0.504952,0.297561,0.926997,0.10761,0.182089,0.0801787,0.420545,0.21988,0.980619,0.213266,0.277458,0.536754,0.868126,0.385365,0.889174,0.411858,0.623977,0.816302,0.196722,0.0278103,0.677898,0.516389,0.856561,0.00721228,0.466335,0.0399185,0.572309,0.295643,0.37605,0.0945964,0.0932577,0.768347,0.337997,0.470455,0.238848,0.0997245,0.192304,0.372033,0.694578,0.478346,0.112159,0.440218,0.29517,0.959897,0.135605,0.809891,0.978537,0.0768545,0.7816,0.67595,0.736213,0.587935,0.31853,0.888505,0.0319103,0.94117,0.288151,0.206208,0.0956961,0.721,0.246555,0.954634,0.0854279,0.247536,0.117678,0.206861,0.160167,0.866246,0.905008,0.342862,0.571037,0.311114,0.548543,0.353377,0.234623,0.118239,0.269613,0.388969,0.478703,0.599467,0.415016,0.0482503,0.258024,0.0630636,0.808421,0.574637,0.826236,0.969049,0.229067,0.347942,0.304607,0.489643,0.856039,0.159326,0.191544,0.0201997,0.0594327,0.179351,0.861564,0.334576,0.952364,0.274872,0.774555,0.275237,0.0349247,0.22983,0.0799056,0.825988,0.782209,0.365047,0.0665375,0.557973,0.748739,0.564131,0.151898,0.880364,0.123378,0.472217,0.211272,0.890101,0.539293,0.46892,0.675878,0.75222,0.356296,0.478881,0.316895,0.372511,0.716587,0.381284,0.253095,0.599225,0.487327,0.969634,0.680636,0.780872,0.501361,0.916154,0.183748,0.0455676,0.239461,0.582906,0.551007,0.888875,0.973913,0.814983,0.0161926,0.274731,0.120255,0.0416177,0.668911,0.592584,0.721363,0.857896,0.234666,0.674845,0.147268,0.0394147,0.369816,0.589215,0.932878,0.641787,0.808692,0.284128,0.507525,0.960042,0.311871,0.0164613,0.735699,0.873331,0.377495,0.930572,0.00649095,0.743432,0.248953,0.0226382,0.0662473,0.414771,0.216333,0.706821,0.926962,0.776856,0.669716,0.347825,0.13234,0.645939,0.462852,0.0241649,0.0764933,0.365518,0.0982167,0.9596,0.76434,0.464743,0.434421,0.665256,0.229155,0.574089,0.280394,0.590241,0.0709448,0.297759,0.934309,0.367018,0.390515,0.234755,0.210975,0.00198531,0.18226,0.945655,0.888165,0.250245,0.355109,0.174186,0.91906,0.167718,0.0156274,0.276751,0.452474,0.6042,0.870064,0.622908,0.871337,0.410211,0.269244,0.109603,0.191736,0.0601125,0.412507,0.437276,0.731197,0.260017,0.96151,0.306905,0.968709,0.667723,0.962116,0.800641,0.0675179,0.735732,0.6896,0.120173,0.176605,0.395771,0.293633,0.284357,0.399805,0.323936,0.912192,0.345182,0.773518,0.726852,0.927715,0.56785,0.665869,0.595466,0.368625,0.952861,0.0768542,0.818798,0.612922,0.487794,0.166006,0.231689,0.081329,0.723914,0.544909,0.248519,0.882298,0.445835,0.279073,0.661435,0.790695,0.884789,0.705076,0.247777,0.6043,0.124535,0.740757,0.0299384,0.034603,0.242741,0.598187,0.574646,0.804029,0.896336,0.712743,0.893996,0.0575255,0.733093,0.727684,0.279665,0.780496,0.0138854,0.690657,0.967363,0.742538,0.788055,0.787916,0.735331,0.410677,0.131481,0.0863342,0.234264,0.47304,0.775831,0.334556,0.871177,0.8804,0.708473,0.417163,0.381013,0.910211,0.886023,0.0640457,0.496344,0.0804687,0.413416,0.366111,0.37211,0.212663,0.388008,0.439902,0.43736,0.0321156,0.530592,0.0160856,0.7251,0.0838757,0.0112316,0.392126,0.0615098,0.0282534,0.722307,0.841763,0.675035,0.903596,0.370026,0.789725,0.607853,0.630966,0.287643,0.131705,0.629277,0.327782,0.573364,0.995189,0.575493,0.0928317,0.455005,0.517062,0.920103,0.306007,0.296483,0.0198768,0.22084,0.758295,0.897343,0.0907825,0.06564,0.731944,0.245777,0.984486,0.890803,0.576885,0.915519,0.835349,0.769916,0.0676609,0.808383,0.398061,0.850067,0.398175,0.729731,0.55927,0.425237,0.969217,0.161253,0.898937,0.493568,0.850165,0.251838,0.0670297,0.918202,0.906717,0.858234,0.477048,0.546797,0.0985641,0.617116,0.803444,0.821327,0.709819,0.335031,0.130554,0.598269,0.991632,0.771097,0.403769,0.024975,0.992777,0.809248,0.734756,0.167325,0.668104,0.357826,0.0150282,0.270704,0.844687,0.076834,0.477815,0.113947,0.209051,0.637019,0.314291,0.65867,0.662231,0.27599,0.320979,0.138524,0.420604,0.500516,0.183356,0.810322,0.584976,0.520584,0.0456116,0.68207,0.524991,0.46689,0.4707,0.377914,0.355529,0.182712,0.848753,0.275114,0.292054,0.487329,0.665149,0.738755,0.0461609,0.72819,0.893856,0.0387366,0.847352,0.066735,0.872099,0.625448,0.355691,0.327873,0.18998,0.0755213,0.613878,0.358755,0.16828,0.40274,0.951553,0.030768,0.586467,0.0841062,0.113332,0.434672,0.674532,0.992172,0.69847,0.652335,0.220493,0.320837,0.764493,0.893766,0.811745,0.365682,0.0498475,0.430903,0.57411,0.851411,0.263396,0.742921,0.552057,0.865224,0.650101,0.139769,0.401966,0.162304,0.8376,0.855647,0.261901,0.114776,0.752948,0.246043,0.481621,0.751402,0.333775,0.768879,0.578133,0.79511,0.121714,0.667083,0.490539,0.626975,0.573678,0.414751,0.920741,0.158779,0.759058,0.873715,0.402999,0.227923,0.0365075,0.527799,0.921364,0.989523,0.866817,0.0972458,0.732364,0.667484,0.427834,0.732885,0.907156,0.341395,0.792685,0.219703,0.517467,0.927866,0.333437,0.0103095,0.286791,0.0616217,0.496716,0.755772,0.304941,0.130405,0.0592886,0.691665,0.638663,0.444828,0.653539,0.142203,0.731663,0.212488,0.732424,0.202171,0.456875,0.0668323,0.668206,0.693668,0.408177,0.127324,0.261498,0.133353,0.905807,0.860727,0.222187,0.372648,0.313082,0.664349,0.222654,0.539005,0.580049,0.776154,0.00516754,0.818147,0.100716,0.940351,0.319375,0.514822,0.350904,0.0301023,0.821355,0.966622,0.884883,0.0822448,0.494291,0.756452,0.756526,0.48326,0.859852,0.485436,0.00232977,0.312258,0.84009,0.229768,0.263827,0.454574,0.258844,0.598142,0.330391,0.229413,0.895061,0.910053,0.97319,0.0184981,0.223992,0.623647,0.678557,0.951661,0.0253692,0.210308,0.156221,0.0367984,0.671038,0.875778,0.274253,0.470719,0.499633,0.41274,0.32893,0.83136,0.146864,0.804591,0.754659,0.0699662,0.118643,0.698648,0.0480457,0.595533,0.932568,0.103572,0.583857,0.340133,0.64576,0.179903,0.0401759,0.308127,0.997718,0.0582951,0.876472,0.0662625,0.736595,0.551013,0.0978819,0.696822,0.285584,0.441175,0.347848,0.0647804,0.720616,0.0335245,0.136305,0.275247,0.00550073,0.972747,0.174792,0.344178,0.731899,0.691761,0.833855,0.484588,0.0273905,0.519384,0.104355,0.94197,0.100249,0.750004,0.743716,0.76733,0.70588,0.58781,0.96284,0.854822,0.934168,0.0459159,0.715785,0.996034,0.164406,0.346769,0.439584,0.425025,0.0580001,0.363257,0.256787,0.34985,0.807424,0.246116,0.621973,0.248303,0.401068,0.284703,0.423238,0.410812,0.942919,0.675166,0.897388,0.595172,0.520493,0.277473,0.326396,0.612445,0.171822,0.36861,0.795363,0.435689,0.264278,0.253467,0.0644609,0.715287,0.85189,0.237005,0.596762,0.915323,0.868807,0.721222,0.480199,0.851662,0.840035,0.58029,0.232418,0.843288,0.284244,0.967948,0.523603,0.458381,0.616172,0.860778,0.182637,0.0539931,0.42548,0.0269825,0.681258,0.740955,0.569897,0.239437,0.0928261,0.162307,0.411646,0.376309,0.112649,0.355585,0.0154675,0.808031,0.879262,0.523147,0.879794,0.794724,0.638643,0.161157,0.604118,0.462385,0.596439,0.170417,0.927363,0.166294,0.505964,0.34648,0.890543,0.478259,0.24941,0.830528,0.532654,0.384018,0.0611554,0.576585,0.390295,0.245266,0.956962,0.352893,0.195336,0.516848,0.514285,0.880835,0.63667,0.274432,0.166776,0.324606,0.725813,0.591564,0.938812,0.333596,0.0525357,0.777546,0.9934,0.863892,0.671609,0.281492,0.73664,0.728617,0.161453,0.991165,0.799796,0.298857,0.672376,0.770761,0.33528,0.245104,0.167928,0.713136,0.16153,0.14651,0.333396,0.181265,0.844748,0.255114,0.0974034,0.725843,0.744932,0.752267,0.0809507,0.532721,0.21282,0.958974,0.127113,0.026111,0.332227,0.526244,0.866625,0.385225,0.548013,0.621043,0.816605,|0.804665,0.119423,0.0127778,0.64403,0.172506,0.456136,0.167021,0.776227,0.725865,0.303672,0.692876,0.288513,0.512056,0.512832,0.27432,0.113848,0.750043,0.729443,0.748838,0.745264,0.42151,0.210536,0.233811,0.705056,0.387937,0.912371,0.0807629,0.347175,0.231813,0.14041,0.138145,0.437385,0.777326,0.916331,0.561367,0.653604,0.0476112,0.0176476,0.879265,0.376153,0.583798,0.920723,0.611855,0.106517,0.192666,0.734102,0.46977,0.781549,0.392958,0.336561,0.660411,0.104997,0.224925,0.843649,0.565535,0.84768,0.0517832,0.54847,0.713202,0.954296,0.826099,0.5537,0.194457,0.12923,0.988638,0.725532,0.286369,0.344265,0.332941,0.449014,0.820784,0.690235,0.697409,0.274728,0.790958,0.182111,0.928214,0.61479,0.861155,0.5965,0.109346,0.362087,0.0737116,0.940482,0.152517,0.210825,0.954614,0.317989,0.902904,0.139055,0.655937,0.384958,0.216906,0.525218,0.217177,0.00662273,0.365322,0.491497,0.348977,0.512785,0.832386,0.549161,0.134563,0.216757,0.564968,0.00690854,0.614995,0.296145,0.667,0.0221589,0.744342,0.163083,0.223251,0.172839,0.128354,0.32998,0.990823,0.857031,0.820342,0.838003,0.113883,0.372532,0.293356,0.360286,0.0995843,0.105976,0.796496,0.190319,0.504316,0.865444,0.315118,0.0273246,0.0104669,0.188653,0.274142,0.522402,0.249406,0.796087,0.0242648,0.940142,0.613151,0.477223,0.778016,0.42494,0.252728,0.417993,0.657516,0.289226,0.411239,0.697678,0.302292,0.395895,0.448902,0.154785,0.50432,0.760348,0.124076,0.642789,0.985718,0.00472242,0.52936,0.456501,0.28003,0.876361,0.116076,0.841306,0.540792,0.476526,0.851873,0.968431,0.410697,0.880213,0.807867,0.391661,0.955318,0.642076,0.68401,0.754993,0.23815,0.26328,0.0520716,0.981595,0.252601,0.262891,0.168923,0.72692,0.907477,0.600187,0.784043,0.169863,0.160653,0.77565,0.23852,0.900399,0.682666,0.05721,0.662114,0.28954,0.902403,0.883767,0.944667,0.510731,0.722193,0.324743,0.494294,0.931052,0.216361,0.525046,0.647383,0.788684,0.453565,0.38293,0.348004,0.745651,0.923353,0.253267,0.854129,0.116525,0.971486,0.520086,0.740145,0.503254,0.628461,0.0865915,0.0636763,0.435657,0.815553,0.765265,0.958886,0.89347,0.401844,0.00701982,0.594603,0.608208,0.967023,0.0847006,0.0601943,0.762551,0.351153,0.578145,0.771873,0.0205862,0.436343,0.105195,0.180039,0.869012,0.652162,0.515215,0.533181,0.812977,0.148296,0.732699,0.183828,0.0878541,0.424463,0.972754,0.639749,0.16605,0.158632,0.564894,0.632173,0.824549,0.0774204,0.391481,0.906776,0.362669,0.540288,0.774373,0.814748,0.16505,0.677814,0.430426,0.212175,0.91337,0.904446,0.311876,0.870573,0.640991,0.794633,0.855859,0.83067,0.9284,0.11427,0.0358859,0.738619,0.136229,0.430998,0.324522,0.962538,0.153762,0.937226,0.761026,0.581368,0.441586,0.0932321,0.624248,0.64494,0.839479,0.670846,0.75823,0.938111,0.666053,0.0140421,0.496624,0.00784326,0.713741,0.483789,0.89287,0.0596479,0.302146,0.79992,0.0715864,0.41374,0.259976,0.731249,0.666517,0.941275,0.331096,0.425826,0.532718,0.698248,0.494516,0.407047,0.905263,0.455088,0.199635,0.768096,0.774538,0.58236,0.732378,0.130939,0.566966,0.140102,0.208911,0.78144,0.741164,0.831405,0.41821,0.215374,0.429465,0.557714,0.977103,0.421688,0.215437,0.455331,0.860177,0.153269,0.250936,0.765189,0.883148,0.298286,0.998947,0.348815,0.302417,0.370135,0.661523,0.390761,0.745317,0.894592,0.730601,0.808348,0.789358,0.212351,0.178369,0.722212,0.324862,0.89099,0.257611,0.772415,0.735468,0.318751,0.481793,0.614796,0.354459,0.242019,0.921582,0.688967,0.849757,0.160061,0.413266,0.726763,0.938042,0.535739,0.994851,0.877664,0.507966,0.408174,0.201605,0.883002,0.696892,0.779622,0.76923,0.853095,0.504297,0.515969,0.764532,0.463021,0.655102,0.147504,0.728517,0.0522111,0.152447,0.0531899,0.285673,0.597711,0.838647,0.233482,0.316187,0.190736,0.685917,0.142855,0.0571812,0.453394,0.893813,0.721347,0.695253,0.916351,0.364256,0.585521,0.217386,0.788965,0.642993,0.707276,0.250539,0.170783,0.922098,0.446969,0.492918,0.702753,0.630579,0.860429,0.383519,0.549385,0.0459251,0.42809,0.690449,0.917062,0.524257,0.2414,0.633229,0.868144,0.00637203,0.348052,0.168778,0.556862,0.279823,0.3409,0.290018,0.401751,0.449842,0.230606,0.394968,0.42706,0.974516,0.639474,0.269444,0.521863,0.952676,0.693708,0.568991,0.888546,0.270934,0.981211,0.313648,0.246587,0.386682,0.0724223,0.504357,0.105281,0.327974,0.336295,0.545093,0.869856,0.443167,0.725538,0.494893,0.579371,0.432577,0.492701,0.348034,0.11191,0.286267,0.506267,0.693125,0.781587,0.295394,0.585216,0.791107,0.942092,0.743492,0.941538,0.669276,0.624531,0.767196,0.0281622,0.114775,0.720653,0.92576,0.188703,0.712858,0.405227,0.508419,0.898672,0.446275,0.809983,0.517543,0.80871,0.671854,0.20886,0.692501,0.295415,0.40296,0.44832,0.4427,0.676509,0.891492,0.723157,0.717279,0.751112,0.845587,0.708616,0.45157,0.52939,0.112803,0.0370103,0.0676321,0.237258,0.0587542,0.0670546,0.534422,0.655683,0.450123,0.681325,0.183977,0.582518,0.726296,0.677262,0.628947,0.0777359,0.950909,0.830849,0.665428,0.821776,0.450805,0.182159,0.127893,0.126691,0.584673,0.391614,0.112386,0.264514,0.30931,0.0819579,0.863981,0.793689,0.181162,0.698717,0.246755,0.00972492,0.570006,0.777391,0.834561,0.605119,0.724056,0.0652187,0.0777709,0.551961,0.574526,0.512636,0.616559,0.925119,0.353047,0.733023,0.166808,0.725905,0.39287,0.638081,0.154804,0.324326,0.941195,0.527103,0.200539,0.982134,0.209975,0.162606,0.199943,0.12061,0.268903,0.586897,0.903768,0.575988,0.208392,0.596247,0.243281,0.99139,0.133613,0.88563,0.618669,0.144956,0.736131,0.022131,0.746496,0.793517,0.761149,0.706677,0.995663,0.513762,0.946471,0.0892941,0.00183696,0.021933,0.349724,0.381718,0.422439,0.169657,0.932706,0.25535,0.466716,0.0473822,0.940551,0.712382,0.320329,0.578722,0.024932,0.605231,0.718013,0.735558,0.675706,0.894819,0.0837362,0.142473,0.56568,0.109598,0.576723,0.239091,0.591164,0.233951,0.85554,0.611965,0.61488,0.0789534,0.497642,0.934825,0.769472,0.691779,0.0861821,0.724547,0.616413,0.64632,0.478747,0.931779,0.928086,0.838247,0.686234,0.00355637,0.82151,0.763838,0.336462,0.00326079,0.913695,0.480948,0.580341,0.191891,0.6808,0.327556,0.670076,0.829695,0.303051,0.243571,0.516999,0.815008,0.67775,0.252433,0.266612,0.213166,0.717723,0.1084,0.37264,0.143269,0.248428,0.828633,0.870823,0.629836,0.806182,0.7563,0.810146,0.254972,0.634606,0.0430022,0.819989,0.375983,0.753504,0.726035,0.988398,0.893533,0.283739,0.934688,0.829335,0.989611,0.602622,0.915196,0.590317,0.0106139,0.939074,0.24259,0.296195,0.419377,0.246866,0.35652,0.00255471,0.60342,0.892855,0.509003,0.233754,0.556722,0.328093,0.566067,0.0393824,0.649395,0.588434,0.310861,0.757562,0.906628,0.574034,0.00538206,0.647747,0.446276,0.442841,0.862767,0.133849,0.899106,0.396864,0.0507368,0.984481,0.89614,0.255754,0.963104,0.809107,0.725356,0.961881,0.902464,0.181216,0.637875,0.486479,0.792348,0.921391,0.528221,0.506124,0.127741,0.56831,0.568765,0.0844861,0.172221,0.345217,0.890308,0.755855,0.158041,0.646584,0.659065,0.941814,0.620817,0.369589,0.688015,0.0275471,0.284885,0.455342,0.656018,0.093601,0.887659,0.162219,0.123764,0.0349424,0.738104,0.526102,0.783781,0.242937,0.892038,0.0822344,0.839319,0.0393227,0.306476,0.205574,0.563312,0.18959,0.273413,0.3806,0.365305,0.0636761,0.703125,0.118676,0.197394,0.21715,0.10647,0.295789,0.910705,0.0309361,0.516267,0.226111,0.555321,0.9962,0.364195,0.726534,0.247518,0.109197,0.556235,0.290718,0.827091,0.983892,0.197666,0.445462,0.482497,0.78741,0.378565,0.524854,0.435158,0.42803,0.779997,0.689434,0.754183,0.524681,0.60555,0.233963,0.0118799,0.609925,0.673438,0.844054,0.78686,0.712103,0.487905,0.696934,0.955782,0.959821,0.832719,0.553957,0.159647,0.312787,0.452824,0.893823,0.696238,0.386025,0.941316,0.790464,0.9414,0.614617,0.217235,0.101785,0.142873,0.660955,0.0731825,0.751931,0.890584,0.0530608,0.0621583,0.0837537,0.979321,0.409241,0.604672,0.14347,0.577244,0.317386,0.282666,0.925945,0.403441,0.455984,0.940796,0.272964,0.810883,0.0841043,0.87494,0.0762203,0.074895,0.856109,0.661417,0.0884203,0.959812,0.855243,0.879668,0.836072,0.269298,0.00518191,0.461922,0.0858018,0.877843,0.639021,0.373407,0.946196,0.658761,0.34579,0.181144,0.104759,0.897442,0.201617,0.0648643,0.385884,0.367815,0.688451,0.445026,0.00934744,0.309574,0.290337,0.273525,0.0758496,0.857338,0.982598,0.297909,0.0593719,0.739657,0.57816,0.197064,0.372298,0.860236,0.0297517,0.972617,0.337227,0.557607,0.572402,0.333204,0.116961,0.218598,0.735195,0.741308,0.53944,0.291031,0.433018,0.419953,0.371688,0.959788,0.445656,0.226569,0.992838,0.0920697,0.144396,0.893542,0.417787,0.990336,0.543053,0.853045,0.0444139,0.444006,0.922485,0.866694,0.556183,0.403237,0.773516,0.0288267,0.701899,0.746639,0.533476,0.110002,0.633813,0.558667,0.279989,0.421241,0.947491,0.804957,0.523963,0.0819777,0.320879,0.60884,0.683845,0.761766,0.598363,0.636045,0.509753,0.816066,0.20558,0.429894,0.555696,0.540812,0.192248,0.916097,0.565015,0.332948,0.233155,0.920613,0.178243,0.591685,0.24482,0.523133,0.504302,0.675019,0.868487,0.473998,0.903695,0.921241,0.016374,0.901135,0.0290688,0.832127,0.786187,0.580688,0.676384,0.509983,0.0324618,0.439724,0.275471,0.00818759,0.866413,0.854736,0.577446,|0.404022,0.107719,0.543958,0.749247,0.830736,0.43296,0.996518,0.85459,0.93138,0.397083,0.0600372,0.662679,0.786022,0.0350273,0.209783,0.642564,0.866794,0.9715,0.392094,0.10633,0.172307,0.113027,0.159785,0.826291,0.608156,0.714896,0.227057,0.291661,0.264041,0.975977,0.292157,0.296942,0.463944,0.195673,0.468161,0.555724,0.0470973,0.821135,0.368159,0.605288,0.295738,0.517532,0.0896107,0.939334,0.33756,0.264913,0.78705,0.794404,0.0688876,0.698655,0.304318,0.117143,0.496951,0.437056,0.448238,0.836084,0.0652428,0.414786,0.0612782,0.673693,0.602426,0.677064,0.968691,0.832175,0.13168,0.259589,0.630298,0.877206,0.569402,0.822356,0.723829,0.495664,0.714172,0.704467,0.536307,0.153075,0.413623,0.163046,0.146411,0.867416,0.133856,0.387412,0.0357728,0.370246,0.956921,0.373403,0.207906,0.540453,0.119673,0.334012,0.92644,0.734289,0.549767,0.26159,0.253724,0.724832,0.2626,0.378585,0.854632,0.0311649,0.488453,0.945573,0.145324,0.260423,0.675358,0.858928,0.217476,0.803376,0.568973,0.672892,0.693135,0.59681,0.791478,0.292225,0.745475,0.158438,0.384424,0.573439,0.35719,0.617779,0.0388993,0.511416,0.756858,0.0973414,0.535598,0.669666,0.0475114,0.753337,0.0224298,0.0681515,0.059171,0.0958939,0.197638,0.55069,0.253034,0.806642,0.173043,0.731074,0.74011,0.596173,0.95672,0.93539,0.748307,0.620641,0.4156,0.241035,0.370044,0.435275,0.318931,0.0915214,0.298848,0.0579874,0.164213,0.283811,0.902103,0.252255,0.887405,0.81614,0.964124,0.790839,0.297219,0.691097,0.36664,0.975307,0.943842,0.77836,0.212593,0.15836,0.278711,0.497115,0.0783854,0.927877,0.0297922,0.0134545,0.51498,0.0500551,0.0794572,0.253971,0.437367,0.819941,0.83603,0.212788,0.0361094,0.371909,0.931378,0.75446,0.0412111,0.697968,0.0999143,0.338122,0.662103,0.53626,0.766447,0.367938,0.227314,0.825078,0.271881,0.876725,0.247994,0.23091,0.0889817,0.713058,0.532306,0.60643,0.144717,0.950999,0.197475,0.666398,0.357906,0.54594,0.113499,0.885567,0.0018605,0.724752,0.442392,0.706212,0.374654,0.610129,0.0146679,0.0479726,0.876433,0.522288,0.492423,0.926315,0.187114,0.955126,0.526944,0.138049,0.799907,0.622121,0.492507,0.484297,0.870249,0.747559,0.542645,0.621296,0.879058,0.569471,0.662522,0.661443,0.014945,0.456715,0.0652589,0.665319,0.0984281,0.252917,0.0664756,0.581221,0.705763,0.92064,0.448344,0.110139,0.326231,0.412325,0.287996,0.567981,0.251031,0.79788,0.537252,0.13079,0.360261,0.143716,0.0290301,0.472402,0.341522,0.10705,0.346862,0.157714,0.23826,0.259678,0.573108,0.109673,0.733214,0.0570113,0.177557,0.408349,0.604959,0.0770141,0.825777,0.0640609,0.931375,0.0550355,0.802663,0.787711,0.587592,0.530515,0.304855,0.643125,0.193707,0.76639,0.243151,0.231332,0.834196,0.420106,0.819377,0.7703,0.968322,0.240378,0.281716,0.0547711,0.417295,0.199425,0.754896,0.0128576,0.684529,0.160629,0.47748,0.512251,0.375949,0.249818,0.518558,0.868744,0.0226689,0.758105,0.594428,0.433357,0.90701,0.600058,0.681281,0.716451,0.850755,0.552211,0.0074451,0.757071,0.858033,0.65137,0.701192,0.791744,0.35351,0.110429,0.983756,0.264762,0.0226932,0.322041,0.882995,0.469421,0.913806,0.412686,0.803713,0.562678,0.243831,0.907923,0.890239,0.631331,0.00657618,0.774477,0.376934,0.252827,0.823047,0.0946473,0.120155,0.898622,0.688146,0.202968,0.677846,0.221292,0.476556,0.769727,0.716512,0.153139,0.0649239,0.990932,0.185418,0.351309,0.926418,0.108013,0.258517,0.262623,0.217352,0.0462805,0.532462,0.629866,0.387706,0.0715553,0.0176744,0.39494,0.163722,0.077976,0.466592,0.0133714,0.10732,0.253426,0.655964,0.701183,0.574094,0.608074,0.311321,0.383651,0.54472,0.977303,0.330397,0.193511,0.068386,0.559822,0.395705,0.869332,0.931704,0.271996,0.907934,0.293271,0.422881,0.361869,0.596331,0.0746601,0.57537,0.327407,0.976756,0.563342,0.927339,0.463112,0.316198,0.888971,0.952007,0.132538,0.611606,0.129013,0.106377,0.384019,0.2695,0.382545,0.59324,0.349113,0.4972,0.404728,0.101045,0.611734,0.652411,0.724278,0.187726,0.286824,0.640945,0.235281,0.428648,0.693408,0.73473,0.769829,0.446491,0.241729,0.741078,0.196216,0.79711,0.886377,0.100446,0.61157,0.726327,0.504018,0.374942,0.84486,0.0391085,0.839889,0.569568,0.0116277,0.362131,0.151007,0.566724,0.112068,0.66979,0.290096,0.497258,0.752913,0.076367,0.973339,0.444016,0.125279,0.16699,0.64744,0.168084,0.0885041,0.0958914,0.0126075,0.0831073,0.962425,0.192594,0.140485,0.143274,0.0709125,0.661427,0.967998,0.00959802,0.898592,0.673728,0.0419396,0.650086,0.60771,0.421451,0.272267,0.297035,0.506789,0.37175,0.726742,0.296759,0.843062,0.240514,0.683012,0.200197,0.369565,0.979206,0.296957,0.254099,0.517087,0.77498,0.812836,0.694772,0.77901,0.728119,0.769267,0.302541,0.0969684,0.594333,0.828341,0.711828,0.477432,0.102951,0.927362,0.334433,0.800825,0.944387,0.69887,0.938485,0.882868,0.0609848,0.436554,0.772951,0.845597,0.00328505,0.595637,0.0102153,0.110669,0.349371,0.789348,0.156208,0.0209146,0.373597,0.0853156,0.43593,0.748198,0.855305,0.416966,0.985704,0.255825,0.720059,0.837601,0.468715,0.874726,0.488673,0.218356,0.0630704,0.711802,0.20989,0.860372,0.00172573,0.809859,0.584672,0.533397,0.860105,0.703761,0.967403,0.189677,0.558751,0.211513,0.219851,0.543127,0.698724,0.121401,0.0736409,0.875942,0.543637,0.478473,0.387246,0.96422,0.506194,0.265421,0.766107,0.127928,0.814183,0.578622,0.587719,0.437547,0.0917809,0.803655,0.329669,0.210914,0.449972,0.0964108,0.44369,0.62822,0.349453,0.926856,0.598693,0.784732,0.692074,0.942978,0.269165,0.139639,0.11469,0.24876,0.262797,0.52651,0.442262,0.395452,0.417992,0.595259,0.358001,0.881887,0.954577,0.552486,0.684965,0.341249,0.00861299,0.617135,0.607906,0.607565,0.367933,0.00890362,0.698008,0.796838,0.588449,0.559221,0.894812,0.116385,0.087364,0.609511,0.466699,0.00688612,0.830787,0.66661,0.760935,0.90549,0.476806,0.674318,0.504027,0.294993,0.188928,0.380015,0.906681,0.0137901,0.298621,0.431794,0.00470066,0.315388,0.0653014,0.901835,3.86238e-05,0.973296,0.333592,0.67594,0.907292,0.563058,0.138894,0.920243,0.302178,0.628793,0.780041,0.219355,0.159971,0.922041,0.44698,0.288549,0.930162,0.0700099,0.748966,0.323227,0.941509,0.948796,0.113165,0.333466,0.937572,0.22728,0.426617,0.109365,0.360608,0.458899,0.783931,0.0371918,0.36204,0.514402,0.628953,0.35296,0.55456,0.119759,0.314594,0.871492,0.504029,0.00436717,0.538847,0.588108,0.547846,0.0302355,0.73723,0.257452,0.53507,0.0946618,0.834605,0.651096,0.952756,0.296551,0.630587,0.350662,0.888336,0.311496,0.669457,0.497838,0.801404,0.196475,0.269354,0.445744,0.214635,0.730321,0.962058,0.886395,0.372338,0.808536,0.0341477,0.213487,0.164461,0.357067,0.165552,0.166413,0.67513,0.625819,0.117897,0.108016,0.562525,0.019156,0.969334,0.924934,0.166929,0.310781,0.605474,0.49247,0.86246,0.0367864,0.495796,0.896367,0.560471,0.254495,0.512538,0.882173,0.447776,0.674545,0.124465,0.705846,0.971013,0.435935,0.611807,0.753536,0.342367,0.384749,0.286048,0.366924,0.535304,0.617173,0.19589,0.979949,0.321471,0.583378,0.675881,0.911869,0.203317,0.097411,0.769396,0.139741,0.114055,0.661579,0.210186,0.350309,0.867203,0.721989,0.286903,0.587193,0.34856,0.525012,0.88999,0.0236952,0.201215,0.674113,0.129166,0.41633,0.417023,0.755983,0.126307,0.221429,0.148977,0.730826,0.436491,0.0764886,0.375782,0.299894,0.286262,0.00784743,0.521984,0.590237,0.871763,0.127926,0.854478,0.392611,0.909356,0.771875,0.964474,0.0120403,0.312422,0.595443,0.110205,0.831214,0.102087,0.165223,0.286257,0.817077,0.939313,0.639433,0.127555,0.331958,0.436464,0.247569,0.486196,0.937559,0.875224,0.278487,0.140452,0.782655,0.775435,0.846871,0.561506,0.309039,0.566427,0.190758,0.994428,0.381872,0.732451,0.981755,0.307008,0.531963,0.444437,0.689766,0.191842,0.0306397,0.972509,0.402136,0.991301,0.889078,0.458203,0.00250101,0.870187,0.163321,0.633868,0.270093,0.403964,0.674783,0.904371,0.480528,0.283576,0.945173,0.452039,0.644911,0.834662,0.990521,0.588152,0.488338,0.665714,0.209443,0.605326,0.833568,0.748002,0.624672,0.973816,0.989801,0.552205,0.420848,0.737753,0.442238,0.640718,0.248642,0.098278,0.644746,0.507082,0.809517,0.389825,0.933871,0.644909,0.718857,0.799291,0.638661,0.286596,0.305175,0.346685,0.0339248,0.82525,0.612606,0.894202,0.794297,0.586923,0.0297287,0.831812,0.273793,0.574309,0.457093,0.269156,0.340149,0.0566364,0.344726,0.567166,0.604759,0.236953,0.248498,0.32061,0.347178,0.67328,0.953945,0.975441,0.816564,0.0707361,0.492949,0.949566,0.445262,0.825264,0.66433,0.49245,0.0049569,0.948771,0.0253046,0.0492468,0.650301,0.635431,0.404853,0.226434,0.354893,0.0527582,0.205638,0.601692,0.240707,0.156128,0.399271,0.0810826,0.700019,0.827296,0.360859,0.591379,0.128523,0.0165081,0.564884,0.725089,0.812244,0.616334,0.672679,0.332007,0.33247,0.562098,0.258266,0.710872,0.523197,0.716017,0.218583,0.304485,0.717453,0.168523,0.613738,0.478766,0.698364,0.449037,0.592933,0.746424,0.388378,0.447906,0.790422,0.478127,0.955136,0.0973173,0.669509,0.828484,0.675346,0.533016,0.857916,0.333992,0.794599,0.722854,0.954483,0.0500252,0.291691,0.743968,0.812235,0.450809,0.47027,0.734798,0.782939,0.880722,0.873026,0.508954,0.851031,0.429244,0.202261,0.311214,0.279456,0.901234,0.80842,0.731043,0.88871,0.397024,0.176476,0.368124,0.353811,|0.00223982,0.620824,0.28308,0.495596,0.543914,0.0677461,0.0302851,0.907907,0.397389,0.450455,0.76738,0.795981,0.620108,0.849545,0.347308,0.777422,0.926914,0.267513,0.18331,0.867875,0.953049,0.584255,0.339635,0.286863,0.962544,0.296676,0.857912,0.615053,0.933006,0.675267,0.458461,0.60864,0.938282,0.555733,0.069743,0.580527,0.920377,0.975608,0.932076,0.399739,0.501248,0.309699,0.850369,0.0801383,0.105061,0.20233,0.194474,0.622625,0.540405,0.567971,0.235599,0.7608,0.389259,0.545709,0.354606,0.909896,0.202537,0.0751889,0.0239459,0.137315,0.967922,0.252966,0.283187,0.435202,0.162416,0.721432,0.108976,0.0530848,0.823465,0.669498,0.173239,0.596007,0.831845,0.845373,0.761086,0.0783954,0.858232,0.446738,0.789608,0.0774378,0.93514,0.560209,0.71644,0.0311689,0.258452,0.994026,0.770134,0.028071,0.546933,0.302104,0.769301,0.19484,0.67341,0.405003,0.835639,0.0909809,0.70678,0.919783,0.525556,0.681141,0.0509627,0.157251,0.339449,0.0628375,0.930131,0.743034,0.962259,0.231999,0.351025,0.246198,0.770363,0.590566,0.380227,0.0412014,0.91099,0.303308,0.515526,0.543373,0.427883,0.0701824,0.186965,0.626548,0.00876331,0.51136,0.619322,0.513114,0.956573,0.519516,0.576324,0.104041,0.0833949,0.780569,0.178606,0.416884,0.499254,0.103929,0.173087,0.670088,0.7507,0.26748,0.772844,0.956143,0.618546,0.923698,0.930987,0.215072,0.0851472,0.254719,0.968825,0.232429,0.481597,0.0851231,0.641174,0.255268,0.573721,0.695552,0.570716,0.639539,0.994936,0.116041,0.670563,0.239804,0.102927,0.853892,0.0809097,0.283031,0.175083,0.421014,0.945332,0.558148,0.816993,0.634467,0.760636,0.626956,0.648543,0.315177,0.0191169,0.102196,0.374076,0.660721,0.907348,0.475122,0.930735,0.331779,0.200321,0.409495,0.89549,0.836983,0.0436652,0.335953,0.344761,0.37869,0.282897,0.85184,0.1473,0.0188189,0.663619,0.926429,0.567628,0.138045,0.624849,0.607127,0.0609899,0.194348,0.716609,0.0961045,0.626,0.293415,0.825894,0.326834,0.34872,0.336739,0.221962,0.932604,0.927972,0.833839,0.148535,0.367667,0.0350287,0.596388,0.466257,0.384007,0.468722,0.951092,0.417493,0.733002,0.349958,0.0198012,0.279239,0.532582,0.953989,0.0831006,0.0824097,0.82849,0.698557,0.0467942,0.0998697,0.700533,0.66399,0.254885,0.143527,0.846026,0.0753328,0.280117,0.992315,0.736137,0.200308,0.449724,0.350664,0.679331,0.587423,0.569012,0.80276,0.523145,0.398541,0.523573,0.606091,0.293344,0.592897,0.443938,0.822784,0.264296,0.328534,0.516325,0.871252,0.0671334,0.552622,0.038696,0.656688,0.795481,0.351497,0.256695,0.997503,0.984061,0.773946,0.502114,0.619594,0.473918,0.97008,0.931628,0.31954,0.971577,0.483573,0.647185,0.889024,0.310247,0.961067,0.00616378,0.973306,0.543652,0.226378,0.534451,0.724191,0.975663,0.0610443,0.894329,0.227441,0.513655,0.22674,0.718112,0.789809,0.234133,0.944011,0.16461,0.25622,0.780453,0.00504309,0.0227528,0.126846,0.309763,0.444545,0.353901,0.72599,0.684284,0.635313,0.627265,0.306457,0.276676,0.837043,0.921669,0.0633842,0.503148,0.792225,0.546731,0.864934,0.199556,0.668781,0.713993,0.231575,0.434661,0.0594268,0.297507,0.870996,0.0737692,0.683274,0.0317202,0.629265,0.803485,0.85221,0.207699,0.286584,0.317981,0.440215,0.82096,0.257175,0.987778,0.613722,0.32949,0.392524,0.488097,0.469366,0.0900614,0.0164679,0.434322,0.968545,0.908064,0.757894,0.926392,0.302297,0.262567,0.192017,0.583308,0.539958,0.781829,0.436197,0.638902,0.313745,0.756636,0.397878,0.564877,0.769417,0.0443793,0.530208,0.471415,0.155242,0.248551,0.170433,0.0763028,0.0868943,0.323358,0.422083,0.380972,0.726891,0.254781,0.52576,0.324717,0.654313,0.966141,0.816649,0.155272,0.704223,0.979056,0.995401,0.367615,0.775298,0.717055,0.760617,0.542904,0.82597,0.589121,0.587645,0.211384,0.818456,0.064682,0.392742,0.896983,0.415822,0.587868,0.00614685,0.452406,0.685811,0.415722,0.543825,0.537805,0.977073,0.0230907,0.626683,0.57688,0.290095,0.57495,0.785316,0.505565,0.786283,0.114557,0.0335796,0.372556,0.303186,0.805832,0.994469,0.619313,0.819106,0.935863,0.794723,0.669495,0.0999939,0.69909,0.813826,0.937841,0.0538188,0.0905426,0.308454,0.683125,0.347184,0.852237,0.836086,0.991737,0.930451,0.989328,0.353957,0.0342106,0.939543,0.216781,0.338457,0.116699,0.100544,0.273031,0.892108,0.317182,0.44467,0.367506,0.47394,0.806528,0.36871,0.624723,0.710191,0.031397,0.664486,0.176613,0.92427,0.930127,0.875343,0.843808,0.826901,0.114305,0.994568,0.529477,0.374982,0.0484403,0.242938,0.256277,0.56814,0.919089,0.0443304,0.0356727,0.737002,0.872142,0.500266,0.711402,0.902505,0.688015,0.736088,0.986065,0.00652081,0.107726,0.478404,0.571244,0.62462,0.0861667,0.0851683,0.587513,0.933095,0.667768,0.876047,0.839848,0.375545,0.595944,0.794208,0.845792,0.0657215,0.609811,0.701181,0.0803821,0.584042,0.879424,0.769595,0.574779,0.920432,0.23235,0.35952,0.986186,0.00083667,0.402227,0.279457,0.544341,0.127254,0.251483,0.60324,0.235031,0.662139,0.306717,0.167883,0.0660232,0.0258803,0.522595,0.258633,0.713515,0.505371,0.393783,0.64582,0.108067,0.780799,0.594509,0.314502,0.842163,0.933194,0.985074,0.474134,0.0141225,0.958699,0.355529,0.0183104,0.462227,0.577506,0.33316,0.489677,0.907116,0.16765,0.598888,0.0955372,0.184106,0.235401,0.252242,0.0353931,0.740299,0.851958,0.733204,0.920554,0.57309,0.593692,0.231024,0.359565,0.741873,0.432856,0.132331,0.275605,0.692434,0.576321,0.561742,0.623984,0.922487,0.623352,0.742932,0.210816,0.176293,0.751724,0.670174,0.717679,0.807105,0.287666,0.376447,0.997692,0.829901,0.458279,0.78681,0.204953,0.880612,0.980418,0.761611,0.335278,0.859697,0.677844,0.504328,0.289967,0.223257,0.353241,0.403167,0.905636,0.167955,0.579008,0.889298,0.55437,0.920715,0.950366,0.225766,0.536399,0.129641,0.48264,0.139753,0.223606,0.0102895,0.746842,0.437309,0.673343,0.0114412,0.515815,0.087517,0.360692,0.415559,0.161138,0.529459,0.813331,0.611768,0.397579,0.630629,0.955453,0.0314351,0.650942,0.748422,0.783512,0.518596,0.182014,0.36086,0.19611,0.022994,0.875556,0.330209,0.0207748,0.406507,0.840748,0.627371,0.605937,0.709413,0.305881,0.212869,0.802443,0.0741224,0.715761,0.142342,0.403824,0.0512487,0.328665,0.398471,0.892366,0.244846,0.379651,0.182895,0.247496,0.0757251,0.581552,0.606525,0.285756,0.539848,0.693174,0.423788,0.590261,0.363149,0.650338,0.509225,0.132153,0.088006,0.196948,0.715457,0.592091,0.792318,0.474007,0.559553,0.885747,0.871611,0.502561,0.363496,0.172263,0.259982,0.411495,0.722669,0.26519,0.7268,0.543414,0.178163,0.48067,0.861462,0.831948,0.0682892,0.900975,0.493405,0.231852,0.897351,0.823558,0.877923,0.51928,0.377892,0.811173,0.496605,0.385542,0.233002,0.347343,0.882877,0.188137,0.984558,0.103925,0.00236034,0.545154,0.340854,0.123172,0.513879,0.670679,0.91413,0.863144,0.0540929,0.803271,0.794501,0.17839,0.9342,0.451667,0.975633,0.485982,0.143049,0.747833,0.733387,0.115852,0.163284,0.0201213,0.815617,0.942644,0.410438,0.428494,0.57102,0.463811,0.663017,0.510415,0.123603,0.642368,0.464766,0.256717,0.166503,0.951543,0.578678,0.124181,0.756555,0.66656,0.974508,0.517727,0.0796893,0.441914,0.680867,0.836992,0.193352,0.544058,0.538251,0.464382,0.2964,0.629432,0.585704,0.11674,0.210506,0.0202752,0.507692,0.73611,0.721937,0.484346,0.765054,0.11138,0.0526669,0.0911922,0.0711698,0.577441,0.591603,0.786488,0.556286,0.997934,0.554628,0.0746641,0.552411,0.349548,0.618984,0.384395,0.330633,0.654321,0.453496,0.758718,0.366927,0.768096,0.542839,0.826319,0.932303,0.392622,0.913351,0.179922,0.747083,0.57035,0.72002,0.760998,0.751834,0.395489,0.808557,0.209548,0.0830827,0.485016,0.116518,0.0482216,0.129635,0.561791,0.113906,0.0754736,0.670679,0.795813,0.795405,0.177577,0.104771,0.0411961,0.884409,0.0123212,0.528041,0.126026,0.765276,0.919351,0.554646,0.458532,0.512187,0.669518,0.134523,0.76643,0.953657,0.977036,0.772388,0.796277,0.355078,0.328085,0.810885,0.627982,0.740159,0.173159,0.432825,0.69713,0.26882,0.4306,0.364975,0.889263,0.910536,0.19384,0.692674,0.762267,0.14553,0.310097,0.87725,0.987496,0.0876321,0.614349,0.995342,0.791244,0.263633,0.603248,0.713432,0.781424,0.0113019,0.0746052,0.0382211,0.9033,0.860943,0.0306745,0.5238,0.217353,0.00391018,0.633767,0.661436,0.311723,0.51655,0.988518,0.576477,0.911587,0.495727,0.804232,0.818542,0.918152,0.00556839,0.0581041,0.41201,0.125403,0.386038,0.489498,0.906343,0.774584,0.9615,0.687033,0.243921,0.708368,0.555616,0.707277,0.775232,0.353626,0.386435,0.842341,0.893682,0.864629,0.333092,0.78696,0.879798,0.564569,0.98689,0.670975,0.906246,0.576538,0.0560697,0.645397,0.0518061,0.555981,0.0349044,0.0370078,0.875515,0.0818002,0.206815,0.301751,0.597568,0.204736,0.0845272,0.556244,0.465332,0.505785,0.316597,0.819618,0.525563,0.397729,0.770325,0.194558,0.656162,0.692494,0.779024,0.488309,0.44532,0.933613,0.992927,0.507887,0.55796,0.0232247,0.957224,0.658376,0.588757,0.00935102,0.836492,0.446021,0.567281,0.794888,0.895186,0.264043,0.509289,0.966191,0.261119,0.790556,0.666741,0.391439,0.748382,0.451224,0.679815,0.0999998,0.251628,0.00420457,0.273301,0.351648,0.941667,0.0971147,0.742877,0.938957,0.63458,0.170049,0.169978,0.776822,0.115169,0.763273,0.685087,0.473195,0.260781,0.585745,0.561584,0.29206,0.276395,0.478527,0.668715,0.674986,0.248761,0.916569,0.942798,|0.824117,0.801876,0.515608,0.112319,0.855641,0.141939,0.435096,0.876074,0.722797,0.0169222,0.808563,0.384305,0.760068,0.0292395,0.0477291,0.69132,0.269766,0.132781,0.888208,0.747604,0.729104,0.378438,0.46757,0.614347,0.850607,0.87658,0.856308,0.698635,0.576047,0.514775,0.261666,0.566181,0.177685,0.207033,0.355652,0.831543,0.865786,0.191007,0.991576,0.666665,0.283998,0.394891,0.321211,0.321074,0.133978,0.193241,0.271533,0.297957,0.213985,0.591518,0.981806,0.869118,0.755777,0.243155,0.0892926,0.00680602,0.926743,0.0238503,0.908094,0.85058,0.213655,0.529581,0.194883,0.794394,0.394328,0.291284,0.854636,0.248227,0.409367,0.45571,0.905165,0.0941169,0.322422,0.818177,0.590317,0.484876,0.0526665,0.549645,0.0832226,0.738309,0.604956,0.852248,0.639012,0.579585,0.60578,0.214905,0.28194,0.496234,0.915258,0.59078,0.591314,0.744915,0.0310857,0.0711743,0.628043,0.649553,0.0738397,0.816731,0.662421,0.834735,0.489632,0.133512,0.250049,0.833817,0.397261,0.430767,0.878287,0.691398,0.338861,0.476155,0.555135,0.141184,0.154786,0.130685,0.65048,0.16611,0.229075,0.556891,0.777029,0.972655,0.0408881,0.990425,0.637774,0.975658,0.265033,0.0496331,0.374537,0.598503,0.525414,0.642974,0.856067,0.654875,0.586222,0.94645,0.351722,0.73398,0.979204,0.278752,0.404792,0.950275,0.564905,0.716226,0.047244,0.0745943,0.328426,0.485228,0.0354041,0.707009,0.372463,0.784257,0.959324,0.159854,0.0633265,0.467169,0.43094,0.00966716,0.49886,0.777893,0.214025,0.197455,0.466297,0.952554,0.258816,0.0229135,0.645713,0.435208,0.635876,0.920741,0.869131,0.185297,0.761532,0.278719,0.0223887,0.00521058,0.316527,0.957291,0.964781,0.438734,0.231791,0.726916,0.0847891,0.176832,0.233044,0.0264494,0.437513,0.833176,0.650609,0.6055,0.213613,0.537363,0.156449,0.349568,0.237499,0.583073,0.871478,0.0414338,0.563084,0.161062,0.962363,0.871076,0.123098,0.683209,0.978031,0.630297,0.919162,0.715212,0.105228,0.567092,0.022581,0.499113,0.203442,0.713677,0.781946,0.625374,0.0247505,0.332473,0.324798,0.452757,0.826382,0.756256,0.494602,0.387946,0.570572,0.813955,0.241202,0.0931501,0.644392,0.779987,0.846409,0.369983,0.156159,0.252313,0.790348,0.884969,0.960022,0.22033,0.417506,0.128503,0.732254,0.338919,0.0535954,0.41542,0.264996,0.410606,0.577738,0.450527,0.422784,0.604925,0.690675,0.26457,0.928956,0.476048,0.448861,0.721489,0.0519026,0.939625,0.322837,0.456671,0.729815,0.936273,0.170382,0.382411,0.372725,0.025176,0.34266,0.406705,0.051623,0.701737,0.841632,0.940573,0.905727,0.114577,0.0371539,0.0318352,0.629799,0.630208,0.0147148,0.228932,0.771758,0.851237,0.012997,0.932585,0.791477,0.983311,0.249059,0.040962,0.381335,0.60913,0.397339,0.789446,0.11359,0.353196,0.882155,0.157419,0.373631,0.759395,0.917607,0.819204,0.475569,0.401314,0.224862,0.413035,0.00943476,0.691639,0.306565,0.0435486,0.568066,0.0653343,0.0420987,0.619601,0.0454009,0.777504,0.713979,0.840692,0.599044,0.668789,0.162556,0.994679,0.959558,0.273432,0.315395,0.536321,0.799723,0.0591157,0.418374,0.0561967,0.327287,0.0599282,0.62146,0.543698,0.476415,0.851542,0.00222826,0.452678,0.384354,0.925595,0.567901,0.810006,0.23818,0.73868,0.17225,0.645916,0.672311,0.301953,0.280021,0.139404,0.999714,0.155888,0.914167,0.796344,0.113015,0.339488,0.233313,0.258458,0.31919,0.0798375,0.802259,0.678366,0.19375,0.499179,0.641507,0.885727,0.0472948,0.522307,0.777614,0.0184256,0.502314,0.409956,0.111004,0.876422,0.170428,0.398179,0.0976325,0.535772,0.398719,0.103821,0.204457,0.773699,0.958703,0.703688,0.617271,0.622745,0.179772,0.141281,0.416683,0.229117,0.361248,0.909041,0.28783,0.79466,0.869476,0.595706,0.828422,0.520679,0.169069,0.620234,0.684755,0.431865,0.785473,0.410419,0.127794,0.0975736,0.267339,0.10676,0.243934,0.0087347,0.771712,0.194791,0.752758,0.0811154,0.81526,0.240413,0.946519,0.0430519,0.943893,0.0172415,0.0763344,0.122695,0.745553,0.547857,0.436746,0.653956,0.921367,0.734192,0.833809,0.306013,0.0426984,0.379945,0.435413,0.0184456,0.0183482,0.935602,0.739203,0.444606,0.219943,0.920031,0.801718,0.703281,0.367808,0.566936,0.0793372,0.797227,0.995631,0.447085,0.0682808,0.559635,0.419662,0.0834643,0.0306566,0.963314,0.768089,0.351784,0.402697,0.379158,0.390377,0.200773,0.542298,0.736634,0.513419,0.139297,0.0949906,0.160858,0.304336,0.551918,0.642796,0.108602,0.34775,0.0284116,0.41863,0.957162,0.254247,0.183483,0.0941279,0.202613,0.888637,0.67893,0.565071,0.743352,0.125542,0.0684106,0.529653,0.394704,0.195763,0.912636,0.821144,0.41948,0.611509,0.340892,0.247603,0.726073,0.43099,0.669667,0.639462,0.33182,0.969365,0.0375026,0.61402,0.388084,0.294425,0.401981,0.695181,0.17863,0.71274,0.584937,0.280354,0.497045,0.21628,0.6421,0.58397,0.597391,0.54331,0.119977,0.138948,0.931625,0.514909,0.326997,0.622832,0.266476,0.367941,0.668541,0.122854,0.134036,0.695513,0.450945,0.337503,0.296954,0.122526,0.776467,0.836544,0.481784,0.571105,0.423834,0.640848,0.437042,0.680982,0.655445,0.585854,0.134047,0.37485,0.802247,0.237765,0.636186,0.970378,0.626987,0.984673,0.295699,0.0616755,0.889882,0.390403,0.172158,0.0917038,0.841747,0.355827,0.118575,0.820597,0.357444,0.830477,0.49285,0.805329,0.877281,0.249684,0.868814,0.823936,0.668584,0.97248,0.65705,0.419413,0.411666,0.663412,0.759303,0.976601,0.138752,0.892004,0.214967,0.811259,0.631216,0.880841,0.679709,0.553546,0.496701,0.286016,0.312327,0.300354,0.532686,0.106864,0.207413,0.957142,0.552289,0.75503,0.41444,0.0282703,0.778394,0.327307,0.296059,0.436182,0.603402,0.858871,0.772426,0.293228,0.914756,0.162278,0.737939,0.680249,0.122015,0.703879,0.86511,0.211544,0.600523,0.349723,0.339857,0.642468,0.351976,0.669527,0.901516,0.591691,0.945739,0.344398,0.934434,0.866209,0.452907,0.396094,0.449504,0.569744,0.739077,0.767106,0.627782,0.0626657,0.619925,0.366097,0.807556,0.66026,0.387861,0.772401,0.186335,0.922468,0.533369,0.424608,0.50317,0.775798,0.54455,0.643538,0.544844,0.484506,0.298251,0.730549,0.2156,0.459663,0.926916,0.0454552,0.21156,0.970103,0.162238,0.175215,0.405836,0.929521,0.795913,0.00291443,0.0322685,0.924052,0.244882,0.275444,0.40512,0.27148,0.376858,0.538511,0.110566,0.83477,0.745129,0.566958,0.984853,0.893445,0.2614,0.905527,0.776455,0.126087,0.80328,0.0114565,0.525354,0.810408,0.529922,0.63635,0.487711,0.123658,0.989192,0.701176,0.6466,0.444165,0.899282,0.594104,0.634864,0.0950169,0.621175,0.191217,0.776886,0.0542983,0.396671,0.417383,0.903446,0.424917,0.742616,0.333192,0.0762216,0.212865,0.961832,0.218111,0.965779,0.583266,0.188809,0.179654,0.106971,0.50121,0.841626,0.866096,0.0574123,0.626216,0.430637,0.970328,0.11899,0.585477,0.401434,0.542298,0.56587,0.87983,0.788411,0.0262707,0.190086,0.267082,0.751664,0.427609,0.932849,0.816486,0.462256,0.315307,0.538697,0.928741,0.28234,0.489248,0.330784,0.591539,0.250727,0.912123,0.458696,0.570131,0.438945,0.153448,0.785588,0.0950362,0.762688,0.522013,0.00552046,0.417429,0.827844,0.503918,0.318536,0.70563,0.437612,0.332886,0.843259,0.214494,0.779735,0.360698,0.951107,0.491387,0.186635,0.101701,0.909689,0.593291,0.917861,0.175645,0.814858,0.477798,0.741889,0.710637,0.612238,0.714784,0.93828,0.47995,0.644798,0.139977,0.938632,0.237344,0.793004,0.630985,0.679864,0.0637745,0.177294,0.616461,0.981662,0.601972,0.186157,0.915093,0.871358,0.390421,0.469536,0.223721,0.536257,0.91686,0.688421,0.815079,0.756477,0.550569,0.312387,0.0349533,0.3619,0.284467,0.0713363,0.876019,0.94332,0.982799,0.767204,0.647891,0.959733,0.726334,0.434597,0.274097,0.774899,0.581032,0.422788,0.387754,0.684413,0.804658,0.394583,0.686466,0.332689,0.655693,0.883519,0.18007,0.656013,0.602259,0.996285,0.629668,0.574819,0.0668138,0.503654,0.688114,0.39024,0.814342,0.483273,0.624603,0.550007,0.977078,0.766176,0.645101,0.868135,0.0587242,0.71835,0.799196,0.328831,0.941023,0.116487,0.822218,0.661172,0.783478,0.256186,0.845156,0.88149,0.0538086,0.998938,0.811576,0.856556,0.919618,0.201871,0.561583,0.610475,0.579453,0.489514,0.708627,0.0751137,0.961498,0.522104,0.162262,0.908663,0.680136,0.684052,0.0840698,0.423924,0.966211,0.92866,0.390958,0.405728,0.71969,0.164279,0.596654,0.789987,0.214275,0.153203,0.953765,0.216389,0.810194,0.694011,0.709953,0.509118,0.587149,0.155299,0.29154,0.514676,0.679175,0.770149,0.932052,0.117294,0.0161132,0.806853,0.20211,0.618107,0.111455,0.041499,0.536715,0.379986,0.658696,0.715383,0.622396,0.976779,0.842069,0.975106,0.735471,0.996224,0.82289,0.444163,0.18941,0.534314,0.739746,0.861621,0.0806427,0.540808,0.833888,0.326196,0.0189537,0.921977,0.273012,0.577437,0.315569,0.014186,0.94048,0.652637,0.918824,0.694541,0.62593,0.112135,0.493783,0.779102,0.433844,0.195556,0.733454,0.213209,0.625412,0.0706331,0.740782,0.147169,0.380674,0.916056,0.514193,0.822875,0.798166,0.39108,0.113474,0.156483,0.541942,0.394692,0.883568,0.0889652,0.957499,0.793286,0.112158,0.672522,0.997777,0.913645,0.5535,0.121799,0.765333,0.141983,0.923112,0.583044,0.354974,0.0198722,0.466802,0.159817,0.432201,0.679128,0.224638,0.784642,0.281072,0.029229,0.805939,0.0687265,0.85576,0.292513,0.028618,0.532112,0.977625,0.519855,0.41647,0.881447,0.488027,0.983642,0.669583,0.991935,0.509003,0.777169,0.149646,0.960806,|0.948166,0.267832,0.585202,0.734796,0.961218,0.536819,0.908015,0.925694,0.397708,0.661261,0.905553,0.727737,0.753603,0.332911,0.877512,0.690444,0.168437,0.361671,0.740911,0.838131,0.383868,0.802098,0.285542,0.45251,0.433542,0.229057,0.608431,0.317773,0.661712,0.665784,0.423996,0.164658,0.300099,0.887966,0.551622,0.728689,0.177073,0.683797,0.258625,0.913936,0.147497,0.865349,0.284758,0.296105,0.13951,0.231855,0.285411,0.518191,0.137827,0.591038,0.0868769,0.963918,0.263602,0.87849,0.456294,0.964715,0.0208599,0.611459,0.194328,0.153613,0.698565,0.415887,0.846258,0.0406468,0.595427,0.998062,0.595757,0.382449,0.42379,0.462025,0.806213,0.0603571,0.893912,0.12922,0.763057,0.032903,0.380087,0.126531,0.42886,0.579637,0.760204,0.00688505,0.949634,0.403544,0.0548336,0.598556,0.360469,0.617976,0.907605,0.760329,0.622022,0.799023,0.350077,0.0449545,0.172452,0.151495,0.603367,0.31019,0.260393,0.369897,0.663726,0.922646,0.842273,0.18407,0.46029,0.807881,0.749878,0.417275,0.184862,0.210702,0.244835,0.440044,0.964759,0.591586,0.575639,0.9064,0.737617,0.761324,0.301676,0.603312,0.704043,0.315524,0.241513,0.867021,0.330326,0.324368,0.084847,0.247637,0.861194,0.998251,0.472487,0.329407,0.374011,0.644945,0.303951,0.391273,0.0725921,0.152164,0.907253,0.513258,0.426703,0.22953,0.131792,0.4668,0.609074,0.385278,0.461044,0.0742126,0.598946,0.047658,0.386885,0.969279,0.0503898,0.348556,0.758909,0.957562,0.485975,0.613664,0.534407,0.791416,0.735267,0.314051,0.905825,0.70115,0.313463,0.262719,0.84134,0.868288,0.736826,0.307721,0.44367,0.392682,0.535311,0.679542,0.453083,0.685558,0.788975,0.125731,0.373219,0.813428,0.774808,0.31065,0.559329,0.202857,0.846325,0.444125,0.335068,0.320444,0.864241,0.743477,0.843216,0.183216,0.904077,0.538808,0.23133,0.472454,0.845297,0.727421,0.910504,0.222037,0.236847,0.159597,0.153385,0.0540714,0.544431,0.514651,0.538971,0.151413,0.00891739,0.0296746,0.959719,0.0345284,0.42347,0.466226,0.679699,0.983235,0.971023,0.103566,0.539704,0.0106809,0.802736,0.803986,0.496306,0.535212,0.320011,0.0221838,0.455035,0.255422,0.674805,0.112539,0.459377,0.177067,0.588972,0.581718,0.615317,0.144319,0.416553,0.627924,0.922343,0.627242,0.648288,0.304321,0.800963,0.050783,0.991927,0.161782,0.488995,0.143414,0.234482,0.476616,0.441139,0.64966,0.50217,0.802857,0.716484,0.0727257,0.525235,0.785882,0.787023,0.655385,0.582361,0.447285,0.227021,0.966803,0.708745,0.473708,0.983,0.0130744,0.864869,0.657336,0.434599,0.116778,0.272874,0.72385,0.895981,0.328032,0.479914,0.132615,0.459524,0.509801,0.626883,0.0916744,0.0201609,0.336197,0.00560743,0.095865,0.682936,0.773199,0.71624,0.739428,0.572505,0.646212,0.123242,0.579074,0.0977464,0.179168,0.599743,0.434843,0.617773,0.271547,0.470888,0.578482,0.23237,0.483665,0.722391,0.305114,0.773213,0.84972,0.115924,0.0514498,0.625792,0.338371,0.585947,0.220928,0.701556,0.268498,0.54078,0.423415,0.800668,0.19545,0.448998,0.38882,0.241916,0.749603,0.102456,0.972957,0.124809,0.50992,0.131215,0.937518,0.0876194,0.764247,0.189374,0.166641,0.797726,0.588724,0.691611,0.29766,0.0644688,0.881873,0.870162,0.30393,0.872682,0.576887,0.926463,0.297468,0.952573,0.843775,0.742409,0.128771,0.994193,0.357003,0.170533,0.421898,0.977869,0.118198,0.685696,0.465082,0.840287,0.783109,0.519726,0.631759,0.0771383,0.918014,0.0190484,0.853861,0.524078,0.620594,0.935259,0.320683,0.268115,0.662605,0.209432,0.437784,0.712603,0.771996,0.865039,0.804786,0.900152,0.336152,0.847982,0.809488,0.577146,0.779119,0.10782,0.779546,0.947675,0.612844,0.188758,0.0845305,0.942335,0.874292,0.922649,0.233942,0.0567814,0.460578,0.581506,0.0761817,0.506155,0.318729,0.921641,0.498439,0.142594,0.284713,0.219796,0.466499,0.898179,0.113731,0.850826,0.308218,0.921463,0.176871,0.431606,0.0683197,0.588438,0.505562,0.479554,0.95314,0.77168,0.585542,0.965022,0.141024,0.815987,0.775584,0.833421,0.763942,0.239532,0.824601,0.148458,0.776504,0.882689,0.462599,0.711631,0.66708,0.842712,0.936958,0.782864,0.29158,0.0447185,0.817228,0.900539,0.342199,0.0247431,0.141147,0.206101,0.0771987,0.671092,0.233232,0.0196472,0.513345,0.989554,0.955114,0.0124534,0.194513,0.691241,0.552753,0.292776,0.402843,0.36504,0.140029,0.703059,0.741664,0.869648,0.999688,0.158514,0.996784,0.79016,0.108823,0.15884,0.177567,0.715358,0.889951,0.91294,0.0189978,0.623862,0.75439,0.0916451,0.790239,0.516147,0.360991,0.044354,0.881859,0.258783,0.395484,0.762852,0.76706,0.484162,0.335293,0.470272,0.265203,0.0655955,0.801305,0.0273005,0.355284,0.04583,0.432768,0.391797,0.928978,0.222054,0.666684,0.905197,0.221857,0.564777,0.116397,0.945837,0.24421,0.0513424,0.696512,0.115692,0.312559,0.233706,0.323235,0.336163,0.115792,0.371703,0.814797,0.344128,0.72872,0.979221,0.578616,0.472032,0.645593,0.514129,0.672613,0.234965,0.267835,0.121078,0.787888,0.619684,0.245895,0.824929,0.576286,0.933823,0.812163,0.248132,0.498212,0.848772,0.840517,0.396563,0.125357,0.662404,0.621391,0.199707,0.616795,0.839904,0.765748,0.633544,0.189943,0.666223,0.959177,0.881657,0.0173844,0.0906857,0.445665,0.287001,0.713604,0.102401,0.752557,0.423419,0.225169,0.787865,0.344209,0.787913,0.820204,0.582073,0.315682,0.972767,0.929518,0.260547,0.921215,0.434948,0.602559,0.728542,0.238433,0.81782,0.183553,0.89191,0.898537,0.969802,0.87115,0.675522,0.97731,0.065208,0.92661,0.206591,0.474938,0.856442,0.0456415,0.343142,0.627256,0.898641,0.806143,0.49087,0.355147,0.798513,0.997843,0.765888,0.928594,0.535127,0.0163397,0.242524,0.808988,0.649863,0.217067,0.356039,0.777511,0.29787,0.26099,0.872955,0.127486,0.10751,0.635561,0.787808,0.301834,0.690101,0.357931,0.6351,0.839341,0.205296,0.984743,0.162948,0.255278,0.794071,0.862731,0.895146,0.818375,0.415587,0.644808,0.700029,0.147508,0.300102,0.752062,0.199366,0.680995,0.587559,0.857403,0.889406,0.546653,0.216776,0.580467,0.109386,0.802693,0.950283,0.509782,0.446478,0.924025,0.535607,0.342693,0.405346,0.743551,0.276558,0.786866,0.0809053,0.980979,0.422644,0.710794,0.511405,0.957338,0.583642,0.68115,0.137691,0.589272,0.496228,0.877736,0.976682,0.859401,0.327682,0.793232,0.0860621,0.592754,0.769383,0.843668,0.410744,0.563318,0.306533,0.0815784,0.0766453,0.118079,0.121604,0.365572,0.523105,0.589919,0.792255,0.712868,0.307574,0.51998,0.346838,0.868549,0.850326,0.878495,0.32722,0.447839,0.555721,0.86617,0.19338,0.402062,0.477547,0.77287,0.308871,0.401002,0.535422,0.107937,0.971973,0.443289,0.00755954,0.646429,0.596389,0.572391,0.253016,0.335455,0.219318,0.0170229,0.506873,0.898441,0.726837,0.190467,0.608701,0.888755,0.995417,0.596994,0.627894,0.646456,0.0227272,0.56697,0.764294,0.387989,0.204277,0.382067,0.339921,0.73152,0.382685,0.457914,0.628667,0.389508,0.588344,0.805855,0.515192,0.340766,0.0031023,0.487866,0.13817,0.64769,0.307586,0.584622,0.154101,0.9404,0.394786,0.426953,0.789461,0.0837563,0.688928,0.623316,0.858371,0.0838718,0.584678,0.543605,0.961848,0.483657,0.0969858,0.902955,0.311707,0.215233,0.464905,0.72079,0.58858,0.601084,0.646824,0.744037,0.945793,0.146822,0.527448,0.737718,0.344018,0.0609173,0.555244,0.292207,0.492749,0.515197,0.807691,0.801207,0.605229,0.343933,0.226779,0.420147,0.958883,0.157882,0.282025,0.126988,0.788506,0.0538967,0.520766,0.237259,0.77661,0.954625,0.677987,0.229735,0.239756,0.0121506,0.245579,0.149691,0.37669,0.146676,0.657022,0.380211,0.149687,0.69909,0.832278,0.0923523,0.536392,0.849323,0.459248,0.859455,0.827455,0.684336,0.158785,0.426069,0.835469,0.769691,0.0376425,0.943005,0.707458,0.635389,0.638476,0.116843,0.411361,0.444034,0.738307,0.391055,0.122968,0.890135,0.166836,0.975481,0.0614461,0.984325,0.00229031,0.0929881,0.421409,0.250607,0.633849,0.310426,0.478963,0.861357,0.631647,0.43561,0.9399,0.0377782,0.216854,0.478128,0.907927,0.125345,0.559338,0.458668,0.241031,0.0437123,0.496864,0.74207,0.194724,0.742291,0.156071,0.0420273,0.0277199,0.3921,0.19667,0.487658,0.546215,0.845383,0.727233,0.985723,0.0733404,0.271192,0.997039,0.806934,0.673394,0.73988,0.70215,0.793905,0.805494,0.110316,0.573223,0.909518,0.945561,0.431106,0.763888,0.698499,0.80012,0.0985448,0.516891,0.30111,0.850464,0.512922,0.244935,0.328339,0.506077,0.351787,0.38304,0.186562,0.894452,0.44908,0.866983,0.87214,0.729532,0.148538,0.402054,0.0914065,0.173884,0.675703,0.163325,0.811868,0.227567,0.74887,0.0466298,0.644993,0.404921,0.383579,0.14856,0.395301,0.544358,0.178501,0.799817,0.358787,0.86949,0.675578,0.336738,0.695676,0.809042,0.538484,0.0233274,0.136388,0.518995,0.795221,0.0671635,0.507672,0.948427,0.554343,0.46174,0.0455694,0.241552,0.997174,0.60415,0.0229102,0.0811433,0.946581,0.958881,0.369413,0.71582,0.277994,0.247091,0.81688,0.0849225,0.957381,0.63906,0.653441,0.441497,0.186754,0.731503,0.215181,0.737764,0.597988,0.0240178,0.0898665,0.288192,0.557685,0.598985,0.435451,0.451295,0.905163,0.155067,0.705155,0.751385,0.3239,0.843019,0.425331,0.698755,0.771157,0.881282,0.839606,0.0471259,0.924414,0.456255,0.425624,0.340384,0.501806,0.523665,0.168258,0.307335,0.109467,0.459443,0.585942,0.15867,0.745885,0.365528,0.158736,0.318386,0.234272,0.722383,0.961967,0.0352973,0.600478,0.393545,0.554593,|0.308558,0.863651,0.13115,0.729126,0.808334,0.0535118,0.0223132,0.66303,0.0976253,0.461442,0.415728,0.829993,0.750407,0.319264,0.382553,0.756993,0.551167,0.283304,0.525879,0.971085,0.726549,0.188473,0.295834,0.018469,0.539113,0.888235,0.852451,0.166033,0.370013,0.53524,0.226636,0.306137,0.802933,0.93309,0.26127,0.215238,0.308989,0.231586,0.5943,0.665224,0.33185,0.361114,0.355311,0.41073,0.507806,0.633748,0.116533,0.564831,0.45544,0.899663,0.856155,0.581254,0.398182,0.744389,0.914883,0.218604,0.308426,0.428206,0.899576,0.80378,0.166735,0.97095,0.759287,0.686848,0.587934,0.490738,0.477375,0.207763,0.862182,0.120107,0.0375977,0.356919,0.632475,0.236845,0.458568,0.00367904,0.423296,0.00953966,0.598646,0.0309459,0.13806,0.421664,0.623937,0.201825,0.67114,0.90976,0.990993,0.330594,0.990044,0.130766,0.556021,0.69081,0.741577,0.172512,0.570948,0.144537,0.499837,0.777032,0.50735,0.0164711,0.608488,0.86457,0.77873,0.402824,0.122957,0.617098,0.480632,0.261168,0.259321,0.981621,0.781481,0.24466,0.329952,0.759924,0.870116,0.0374663,0.332604,0.624831,0.213154,0.516778,0.811618,0.648835,0.052007,0.443413,0.424511,0.415081,0.044787,0.755762,0.862574,0.94694,0.616298,0.777869,0.764673,0.700087,0.118245,0.991843,0.598776,0.958811,0.274941,0.723682,0.690772,0.248531,0.970562,0.945717,0.158475,0.370886,0.476898,0.502503,0.703449,0.157946,0.698269,0.661189,0.776076,0.74121,0.39083,0.868695,0.0598952,0.542733,0.85977,0.191757,0.0754225,0.314935,0.918031,0.225754,0.569558,0.875008,0.0159307,0.823892,0.397067,0.800265,0.445712,0.442483,0.127129,0.720414,0.251411,0.179822,0.302254,0.880292,0.277499,0.733366,0.0604553,0.24377,0.908719,0.626876,0.685191,0.530454,0.846605,0.0907924,0.572244,0.948675,0.96278,0.176719,0.493192,0.535649,0.250339,0.0848058,0.0240052,0.329314,0.900573,0.283166,0.371025,0.985711,0.419842,0.782576,0.573196,0.701129,0.796017,0.44432,0.18131,0.488842,0.95074,0.269363,0.548472,0.279731,0.252578,0.0893774,0.574274,0.646156,0.00559342,0.206168,0.243595,0.599301,0.99867,0.136789,0.653839,0.533518,0.197035,0.214124,0.878284,0.831285,0.33911,0.221077,0.166137,0.603375,0.926876,0.929577,0.911038,0.0441262,0.311549,0.936999,0.108631,0.444388,0.934225,0.87413,0.176934,0.656727,0.802625,0.169524,0.164551,0.612954,0.333516,0.284737,0.760083,0.714143,0.931811,0.77649,0.442629,0.0346569,0.480027,0.921887,0.506632,0.216437,0.142372,0.611313,0.867159,0.86906,0.802916,0.583119,0.103973,0.418509,0.446929,0.720166,0.854779,0.837371,0.189613,0.900766,0.445074,0.527092,0.668841,0.44538,0.722568,0.833047,0.172852,0.903087,0.042811,0.844651,0.683855,0.119963,0.795575,0.879284,0.376869,0.196546,0.265053,0.618858,0.568708,0.499665,0.223551,0.651331,0.346433,0.381544,0.500264,0.339101,0.197277,0.0230561,0.288223,0.903558,0.134774,0.970726,0.924156,0.188629,0.240566,0.222557,0.946455,0.613758,0.0712352,0.163784,0.163998,0.619385,0.652588,0.659318,0.788341,0.451924,0.324796,0.194681,0.0110536,0.865526,0.731394,0.929113,0.834221,0.0512988,0.243596,0.0414834,0.456591,0.827748,0.888942,0.689422,0.425303,0.430928,0.684744,0.647304,0.725151,0.0303257,0.302807,0.484694,0.377377,0.97296,0.0500868,0.742171,0.611552,0.990293,0.451249,0.0258616,0.49177,0.676673,0.0924265,0.704953,0.270034,0.346829,0.0662817,0.116957,0.27511,0.746338,0.754446,0.198292,0.637721,0.281315,0.706303,0.296842,0.750323,0.728528,0.809389,0.701187,0.0058223,0.957874,0.595943,0.397944,0.140665,0.20691,0.209525,0.177051,0.506133,0.601728,0.736017,0.704787,0.706315,0.383855,0.899224,0.419063,0.439353,0.0108289,0.903166,0.0666232,0.983973,0.707793,0.041656,0.795802,0.918585,0.436311,0.83406,0.925435,0.0138752,0.12383,0.317712,0.139138,0.962326,0.0810679,0.0614832,0.705056,0.531159,0.46522,0.348226,0.461284,0.144707,0.951883,0.885046,0.558657,0.940513,0.0698877,0.35528,0.668282,0.803837,0.31636,0.912609,0.551846,0.327811,0.895349,0.120102,0.297047,0.710913,0.810309,0.183531,0.398819,0.265476,0.80362,0.982261,0.0197452,0.384008,0.0351296,0.516425,0.276698,0.857441,0.187031,0.297924,0.357714,0.233889,0.999414,0.492274,0.593208,0.298793,0.9879,0.181347,0.674184,0.479612,0.379675,0.641869,0.915928,0.400516,0.381644,0.142417,0.399473,0.886134,0.881243,0.538375,0.0546593,0.301371,0.663659,0.367249,0.42479,0.0179641,0.813481,0.0706154,0.0674814,0.529428,0.0221545,0.908051,0.243029,0.222034,0.79076,0.931598,0.654653,0.074145,0.738075,0.261387,0.644919,0.0810012,0.896902,0.271504,0.303204,0.582254,0.665309,0.560815,0.349468,0.760702,0.456785,0.530083,0.407446,0.0970761,0.0113314,0.988305,0.686407,0.0491415,0.998412,0.802289,0.039978,0.363964,0.898314,0.508752,0.377094,0.796961,0.447603,0.831288,0.402113,0.430665,0.842557,0.928829,0.18347,0.884962,0.83057,0.93143,0.729426,0.165442,0.3192,0.842165,0.821764,0.804622,0.328386,0.979526,0.554391,0.562068,0.190671,0.446353,0.493915,0.405006,0.57637,0.813595,0.580944,0.0754431,0.88471,0.335228,0.799368,0.534858,0.658101,0.0508961,0.665126,0.854638,0.230926,0.213335,0.861399,0.18942,0.0602778,0.426612,0.754441,0.734986,0.152214,0.838316,0.77453,0.688877,0.385994,0.049002,0.0979384,0.742953,0.0171494,0.263016,0.834917,0.265986,0.6979,0.368556,0.604618,0.315095,0.763502,0.497069,0.366519,0.118218,0.897202,0.476238,0.0127882,0.537157,0.0177526,0.71404,0.172819,0.500504,0.780117,0.213399,0.644861,0.00204009,0.487381,0.00931972,0.774206,0.482957,0.696291,0.278255,0.532759,0.938852,0.252725,0.317806,0.100673,0.18747,0.263462,0.166539,0.774303,0.119628,0.48847,0.256288,0.363045,0.143646,0.789185,0.495931,0.0373759,0.967773,0.653269,0.616882,0.808638,0.415833,0.268061,0.558906,0.147289,0.0410671,0.159637,0.715551,0.166188,0.299236,0.657885,0.695837,0.9045,0.0884739,0.800782,0.978583,0.94858,0.421277,0.891046,0.863539,0.216706,0.0517917,0.486473,0.766623,0.15314,0.700146,0.415232,0.479254,0.863147,0.838423,0.145663,0.500498,0.785589,0.400491,0.620216,0.000416279,0.640745,0.352567,0.604326,0.123403,0.66722,0.85828,0.549507,0.031529,0.297415,0.64914,0.017462,0.40653,0.235419,0.294623,0.218603,0.159258,0.265847,0.0279244,0.693409,0.0712261,0.21747,0.593099,0.721378,0.383627,0.567836,0.161501,0.310471,0.451787,0.425641,0.891656,0.507889,0.264751,0.443109,0.852243,0.0109833,0.541072,0.537813,0.0623194,0.837875,0.556976,0.629458,0.189576,0.870283,0.187091,0.965446,0.358534,0.824348,0.0270156,0.326229,0.245082,0.882521,0.760027,0.908868,0.220618,0.73099,0.951697,0.824584,0.234118,0.577345,0.0547435,0.841384,0.825422,0.499114,0.325656,0.942984,0.482749,0.891938,0.316507,0.398152,0.533086,0.852047,0.726873,0.169945,0.0315453,0.64446,0.0757071,0.200083,0.103597,0.270372,0.0646625,0.96792,0.169984,0.587097,0.219378,0.377935,0.338443,0.174931,0.26823,0.260883,0.242324,0.0505615,0.881285,0.764748,0.915052,0.358728,0.519958,0.592224,0.0377944,0.712513,0.304522,0.397086,0.689234,0.563731,0.488144,0.700066,0.928783,0.337236,0.427975,0.819843,0.916645,0.458693,0.437102,0.864922,0.395566,0.368418,0.753634,0.584763,0.223316,0.707391,0.100002,0.69351,0.919468,0.894417,0.166263,0.0284481,0.176612,0.468051,0.515945,0.41102,0.415072,0.0685021,0.251554,0.43647,0.429177,0.300354,0.333835,0.728411,0.266613,0.335616,0.586926,0.392984,0.418426,0.0343835,0.83202,0.515858,0.435991,0.0163643,0.227174,0.923061,0.967111,0.603459,0.827254,0.134529,0.946543,0.201766,0.3111,0.83423,0.125166,0.218079,0.0608533,0.321836,0.0118409,0.212838,0.740604,0.364215,0.566988,0.984551,0.481459,0.142662,0.380298,0.714568,0.545057,0.416424,0.436506,0.495917,0.940556,0.829124,0.509901,0.0511516,0.918991,0.809802,0.827629,0.518385,0.77573,0.302573,0.447489,0.93715,0.0299944,0.062736,0.950996,0.0958583,0.480033,0.352462,0.842601,0.16667,0.334114,0.565749,0.811294,0.178219,0.109787,0.261095,0.160984,0.714298,0.807804,0.257275,0.00589538,0.258758,0.12628,0.0135447,0.616732,0.0444464,0.177435,0.509639,0.245062,0.652396,0.869902,0.765304,0.042806,0.348829,0.481442,0.0412777,0.0253793,0.613099,0.759287,0.144018,0.445188,0.963663,0.114286,0.00697917,0.244495,0.334619,0.875194,0.321246,0.246628,0.357736,0.29333,0.684181,0.696457,0.577399,0.219868,0.233075,0.576071,0.112757,0.0768384,0.719426,0.00527954,0.794884,0.844952,0.744308,0.265445,0.701852,0.135711,0.277551,0.372366,0.555879,0.686061,0.631644,0.14658,0.984554,0.0322949,0.191549,0.582941,0.878177,0.0640056,0.0724185,0.254368,0.847662,0.279796,0.652435,0.348318,0.0877539,0.425495,0.300855,0.580303,0.575276,0.272967,0.146743,0.880612,0.446923,0.13282,0.481244,0.236807,0.269066,0.633849,0.648848,0.398684,0.693715,0.341621,0.136613,0.185217,0.900131,0.0669171,0.0351388,0.125732,0.597828,0.306678,0.913933,0.70032,0.91292,0.00219607,0.6692,0.287934,0.910355,0.830165,0.0875984,0.0721079,0.461067,0.355264,0.223489,0.463473,0.502167,0.340616,0.152219,0.977757,0.63059,0.0508993,0.594665,0.295001,0.322024,0.195961,0.792349,0.15621,0.641959,0.532687,0.423211,0.789143,0.757994,0.603931,0.264857,0.34148,0.422496,0.541294,0.933985,0.217243,0.502205,0.342628,0.700264,0.929115,0.83472,0.370139,0.61802,0.987252,0.803154,0.874544,0.84083,0.0617318,0.50446,0.124733,0.852841,0.0745578,0.0293893,0.161776,0.432803,|0.192541,0.0638928,0.779375,0.658215,0.905287,0.4669,0.45833,0.204542,0.697929,0.783269,0.523669,0.283744,0.754862,0.336035,0.702905,0.750117,0.550613,0.0936683,0.247173,0.0720962,0.441359,0.654438,0.0629032,0.12618,0.212517,0.389104,0.198011,0.841446,0.352359,0.816517,0.979331,0.986511,0.971549,0.477904,0.152552,0.0368239,0.284653,0.257017,0.480465,0.377494,0.514952,0.941455,0.507052,0.895479,0.865807,0.683221,0.737384,0.0615779,0.173826,0.122906,0.375294,0.421614,0.606099,0.629367,0.705775,0.77011,0.293637,0.29603,0.485589,0.100552,0.426573,0.147412,0.0661367,0.820153,0.520775,0.228827,0.726924,0.302384,0.0867056,0.171005,0.823903,0.521949,0.502243,0.809456,0.728007,0.57726,0.349417,0.273605,0.840247,0.194353,0.130271,0.824638,0.13089,0.959323,0.690754,0.119376,0.840417,0.363497,0.705049,0.519835,0.668827,0.432509,0.526098,0.0278162,0.657714,0.5034,0.521916,0.886038,0.261701,0.753038,0.302046,0.811932,0.233604,0.503427,0.720964,0.911054,0.0507228,0.425112,0.219642,0.578911,0.53152,0.104596,0.754533,0.283235,0.965921,0.969774,0.664173,0.0556804,0.56245,0.834895,0.477189,0.494446,0.545035,0.94659,0.922986,0.59617,0.221636,0.420012,0.884524,0.0436207,0.710231,0.406081,0.630485,0.817788,0.52254,0.624009,0.437408,0.134202,0.443466,0.0839251,0.963032,0.699667,0.218149,0.533238,0.0303535,0.859279,0.0118667,0.693663,0.207173,0.0971484,0.807663,0.998702,0.556936,0.0188584,0.982767,0.352392,0.218975,0.151285,0.0229537,0.547215,0.945865,0.132335,0.905589,0.269012,0.343338,0.670411,0.875854,0.688827,0.243738,0.221611,0.535688,0.0171806,0.477212,0.879014,0.884575,0.752167,0.153145,0.42733,0.0180487,0.544293,0.60511,0.639638,0.160207,0.000940561,0.159333,0.416446,0.535514,0.17576,0.454269,0.056567,0.733162,0.50824,0.930445,0.190318,0.550958,0.794049,0.334368,0.131108,0.707725,0.263046,0.606439,0.901166,0.708427,0.266768,0.135002,0.71721,0.990122,0.714298,0.699187,0.0347784,0.38664,0.843085,0.238425,0.550582,0.832626,0.699493,0.903387,0.741109,0.00837874,0.591022,0.231275,0.225709,0.486463,0.234456,0.756746,0.827577,0.40835,0.032174,0.681199,0.19688,0.767357,0.105163,0.750594,0.963307,0.995436,0.744969,0.497924,0.946497,0.369716,0.207311,0.612732,0.141907,0.04589,0.376239,0.71775,0.256227,0.859976,0.362319,0.0685608,0.696659,0.364906,0.463334,0.284035,0.55591,0.550956,0.0178506,0.260249,0.0052731,0.217576,0.902948,0.638542,0.57964,0.0840423,0.380094,0.974081,0.11901,0.328476,0.375578,0.283146,0.785601,0.286861,0.276812,0.0836384,0.231085,0.714968,0.102249,0.314815,0.214062,0.273739,0.431383,0.783508,0.273186,0.819749,0.388421,0.503439,0.984975,0.263907,0.66999,0.150799,0.66231,0.188605,0.902181,0.987604,0.879709,0.773316,0.729179,0.645644,0.388631,0.661677,0.742866,0.693761,0.184317,0.696789,0.81939,0.120293,0.4905,0.980551,0.973838,0.606516,0.242237,0.631534,0.635937,0.889927,0.80338,0.108576,0.920397,0.736816,0.39695,0.454654,0.621739,0.560642,0.515122,0.130747,0.252249,0.168496,0.561784,0.148744,0.821453,0.174354,0.968864,0.863811,0.524187,0.0778906,0.529033,0.883518,0.628471,0.058907,0.468358,0.701154,0.221196,0.151013,0.561087,0.531948,0.549327,0.598709,0.17805,0.406935,0.335522,0.689207,0.37937,0.454791,0.229381,0.0120105,0.146263,0.630841,0.0856466,0.475763,0.289388,0.527134,0.654837,0.995332,0.849183,0.574485,0.583573,0.758256,0.854797,0.978777,0.260846,0.140726,0.0524872,0.0687532,0.782069,0.980772,0.848013,0.902803,0.802195,0.127062,0.376765,0.0154538,0.550881,0.272658,0.857522,0.41437,0.178964,0.24311,0.0500989,0.466558,0.771553,0.222587,0.797825,0.529454,0.829082,0.205859,0.388654,0.530696,0.415451,0.894328,0.11328,0.0513365,0.203745,0.87218,0.89584,0.851036,0.930013,0.764701,0.97753,0.215691,0.46517,0.734043,0.323336,0.839131,0.0404707,0.948251,0.683028,0.657374,0.441525,0.289267,0.646965,0.11456,0.331026,0.633665,0.513494,0.383082,0.984822,0.350479,0.627225,0.508542,0.34437,0.985054,0.883878,0.891138,0.65176,0.384927,0.433893,0.411045,0.678461,0.0457249,0.372689,0.415148,0.34133,0.419491,0.971845,0.602249,0.816695,0.745752,0.52974,0.281697,0.732388,0.770496,0.666395,0.503548,0.479941,0.584879,0.198725,0.113658,0.70724,0.882364,0.960928,0.460738,0.576127,0.363967,0.756341,0.69899,0.936161,0.693268,0.30924,0.591054,0.361467,0.561999,0.757163,0.427847,0.172495,0.00754124,0.348619,0.972518,0.0564864,0.422888,0.305644,0.553833,0.0375149,0.642713,0.578718,0.0272095,0.265721,0.0808906,0.953482,0.882741,0.819264,0.0323809,0.673119,0.768819,0.337743,0.0062741,0.845496,0.619501,0.565347,0.421497,0.279902,0.343334,0.158056,0.868993,0.194263,0.0528873,0.806577,0.461357,0.432737,0.0212708,0.12119,0.0345276,0.0345218,0.620216,0.266007,0.0478253,0.797914,0.22606,0.387804,0.63777,0.434736,0.301508,0.0331733,0.66023,0.676839,0.414845,0.593045,0.770894,0.677101,0.297099,0.000280678,0.42418,0.476087,0.612294,0.679383,0.0912511,0.567752,0.443812,0.544705,0.353143,0.174553,0.112952,0.665263,0.0829356,0.454454,0.0758072,0.0491652,0.277827,0.0692264,0.6696,0.875077,0.410866,0.699881,0.573052,0.04481,0.812507,0.795656,0.443948,0.801493,0.933317,0.700092,0.0239665,0.0294018,0.567452,0.294281,0.527626,0.530312,0.268776,0.358757,0.959479,0.447514,0.417655,0.67392,0.817195,0.0882615,0.404608,0.043142,0.0209853,0.246504,0.532153,0.381676,0.725503,0.56516,0.44346,0.549376,0.00893438,0.127571,0.184856,0.939189,0.326411,0.116544,0.943612,0.433063,0.357381,0.246147,0.701197,0.480974,0.274361,0.932676,0.0988342,0.958303,0.719054,0.805376,0.779005,0.129152,0.300706,0.937726,0.0820678,0.0180212,0.930156,0.71769,0.190078,0.51948,0.458376,0.896537,0.662095,0.663604,0.20553,0.336276,0.66499,0.385358,0.401071,0.262138,0.60203,0.746033,0.0461684,0.319142,0.252516,0.106108,0.251134,0.528043,0.178046,0.992704,0.951557,0.845989,0.956002,0.998,0.0375515,0.803342,0.283364,0.160828,0.694216,0.827762,0.0434579,0.0703257,0.25921,0.536258,0.602075,0.0755691,0.193668,0.219201,0.980282,0.514476,0.635047,0.992142,0.744741,0.615758,0.746757,0.54103,0.629541,0.813238,0.348344,0.937398,0.835196,0.797514,0.581616,0.493249,0.900706,0.65232,0.69504,0.251397,0.996966,0.0237126,0.175646,0.438287,0.904554,0.117191,0.791822,0.236138,0.804949,0.361582,0.766029,0.974028,0.117866,0.241464,0.835677,0.403054,0.0638596,0.909023,0.629036,0.576881,0.121158,0.602539,0.62604,0.710188,0.494247,0.973222,0.970735,0.362021,0.244444,0.923007,0.0976776,0.524592,0.862711,0.0149167,0.725798,0.471456,0.78618,0.851719,0.672567,0.210466,0.678123,0.147911,0.687785,0.687388,0.428251,0.958134,0.166811,0.889273,0.806438,0.237758,0.27367,0.0940597,0.0376426,0.694529,0.714677,0.905928,0.948729,0.539548,0.212296,0.981535,0.607868,0.922612,0.218006,0.52103,0.4461,0.252597,0.536181,0.704609,0.902962,0.473949,0.928279,0.886272,0.246042,0.738343,0.0781438,0.961101,0.675812,0.468109,0.330166,0.971152,0.055362,0.00814432,0.314732,0.0828947,0.633802,0.406206,0.195786,0.475095,0.688437,0.374144,0.896102,0.130471,0.0954506,0.584991,0.454327,0.217378,0.270464,0.73289,0.0283363,0.442695,0.109506,0.967244,0.570068,0.0555104,0.0337818,0.590764,0.939678,0.28144,0.0262418,0.702505,0.395171,0.922704,0.17858,0.652445,0.763311,0.974351,0.132292,0.694983,0.673985,0.893715,0.120751,0.263622,0.729431,0.950339,0.275527,0.287429,0.05425,0.76352,0.299381,0.881683,0.371909,0.625885,0.457624,0.410054,0.531445,0.695495,0.819852,0.879903,0.698493,0.483778,0.163303,0.650784,0.577808,0.285507,0.458949,0.821699,0.357602,0.655541,0.938606,0.761808,0.943493,0.964942,0.248692,0.441543,0.118863,0.441305,0.381487,0.342128,0.88467,0.0776515,0.32803,0.704115,0.339747,0.00143081,0.949597,0.342766,0.480289,0.740678,0.524815,0.101607,0.169108,0.977775,0.324931,0.180106,0.610522,0.413158,0.791596,0.0332319,0.0133646,0.802111,0.773425,0.296945,0.829446,0.779753,0.80895,0.225947,0.649034,0.313259,0.665254,0.655948,0.976966,0.566168,0.891576,0.615255,0.785489,0.0813234,0.498609,0.153137,0.082841,0.238217,0.884297,0.22769,0.220978,0.795861,0.830623,0.267846,0.658322,0.638173,0.819557,0.308008,0.927224,0.712773,0.810665,0.136602,0.245857,0.894839,0.12439,0.973862,0.557878,0.309926,0.060538,0.603292,0.540437,0.942832,0.590908,0.803567,0.141895,0.696244,0.625336,0.0883394,0.862175,0.517436,0.665915,0.808089,0.9026,0.0881696,0.886246,0.919856,0.620584,0.093236,0.213075,0.388013,0.484831,0.904579,0.680727,0.325352,0.995256,0.620727,0.724864,0.821901,0.905853,0.307596,0.123924,0.963301,0.276662,0.165758,0.156922,0.260304,0.482309,0.587612,0.232564,0.474438,0.224978,0.662311,0.0698049,0.329639,0.152746,0.116876,0.185701,0.110745,0.853391,0.654186,0.140723,0.235175,0.446584,0.417663,0.180741,0.773131,0.258689,0.308385,0.910149,0.349629,0.850251,0.386918,0.343965,0.923873,0.732805,0.291106,0.828962,0.749415,0.526875,0.20832,0.33319,0.304742,0.919303,0.336544,0.334531,0.509981,0.790028,0.32589,0.921306,0.671871,0.628289,0.785861,0.535678,0.00211072,0.0918474,0.535995,0.0240771,0.915118,0.157123,0.461006,0.0617502,0.364091,0.973405,0.713604,0.135427,0.655436,0.804397,0.547375,0.644296,0.4094,0.919936,0.0450726,0.819736,0.520386,0.615134,0.761202,0.664084,0.219965,0.907464,0.151665,|0.346556,0.367505,0.849293,0.301143,0.967517,0.217623,0.250104,0.447054,0.242908,0.717274,0.652119,0.847081,0.681066,0.833883,0.817315,0.803973,0.159963,0.65595,0.308851,0.658274,0.447717,0.471717,0.300796,0.00583923,0.718072,0.412631,0.985554,0.0388329,0.21776,0.052606,0.918397,0.777527,0.531816,0.0847631,0.281873,0.746687,0.0706761,0.200357,0.571228,0.0216834,0.452375,0.091282,0.805767,0.680044,0.231131,0.788499,0.217171,0.884304,0.499436,0.459679,0.281495,0.682374,0.865064,0.705928,0.867848,0.914997,0.949689,0.370007,0.893662,0.626263,0.040882,0.484275,0.939365,0.825972,0.606367,0.106966,0.14696,0.775185,0.458775,0.897676,0.40362,0.211656,0.75059,0.356842,0.781547,0.376747,0.921649,0.146053,0.899511,0.898477,0.475639,0.388779,0.40973,0.789149,0.816222,0.237767,0.184244,0.356939,0.764431,0.633731,0.822707,0.92917,0.0902853,0.450453,0.409877,0.398591,0.0136403,0.313106,0.181271,0.763092,0.23394,0.49438,0.244535,0.759522,0.579206,0.624632,0.967742,0.796259,0.793106,0.0550169,0.809593,0.891752,0.892705,0.603731,0.957791,0.929091,0.969252,0.83965,0.491753,0.0934319,0.0664017,0.0242279,0.197061,0.763418,0.672142,0.273192,0.689977,0.0146051,0.819139,0.748187,0.256391,0.714358,0.585838,0.0279446,0.687639,0.799862,0.0984821,0.255592,0.734165,0.0471596,0.0571033,0.323262,0.159522,0.781674,0.609107,0.826199,0.22833,0.87135,0.238522,0.148175,0.432501,0.590502,0.09531,0.425414,0.418693,0.690768,0.256217,0.169824,0.855189,0.0866979,0.138795,0.138465,0.184157,0.0916327,0.507289,0.463996,0.791404,0.917333,0.882847,0.968332,0.727766,0.509564,0.243663,0.188091,0.208666,0.65507,0.564351,0.938594,0.842284,0.503672,0.115291,0.298746,0.764898,0.0169329,0.811516,0.803094,0.995327,0.841992,0.585397,0.877309,0.275701,0.896069,0.979058,0.257096,0.027192,0.102936,0.496918,0.23231,0.928437,0.378859,0.753057,0.963817,0.933031,0.813967,0.211728,0.179603,0.52364,0.342639,0.721818,0.36893,0.228734,0.78965,0.387891,0.343443,0.512797,0.674084,0.706491,0.469218,0.578201,0.512123,0.14645,0.977883,0.995552,0.949191,0.867718,0.0608819,0.00266945,0.64868,0.487066,0.52874,0.734868,0.549638,0.612893,0.110375,0.864084,0.453021,0.983331,0.237641,0.264357,0.922363,0.0732518,0.691405,0.155319,0.320544,0.589467,0.374517,0.277049,0.353277,0.134208,0.332962,0.45427,0.411789,0.842361,0.329276,0.338387,0.502444,0.349282,0.713026,0.626909,0.56633,0.925819,0.396934,0.589941,0.478806,0.518337,0.676513,0.15332,0.186543,0.940082,0.4273,0.521579,0.143087,0.100703,0.0447558,0.975239,0.194503,0.170058,0.240619,0.523424,0.805959,0.98548,0.270043,0.88904,0.0206805,0.663121,0.861728,0.663448,0.235755,0.884147,0.433505,0.507806,0.838825,0.858816,0.283201,0.620669,0.818689,0.580385,0.938835,0.143727,0.703858,0.867623,0.109601,0.389323,0.100185,0.634558,0.387733,0.658674,0.89563,0.243579,0.478928,0.363419,0.958318,0.935368,0.625475,0.548818,0.71395,0.183616,0.0150094,0.858442,0.618662,0.999138,0.143822,0.3579,0.154319,0.3216,0.992961,0.36748,0.104204,0.62736,0.415719,0.494613,0.214617,0.0149429,0.165466,0.999593,0.774813,0.233295,0.240264,0.527381,0.138572,0.525242,0.99623,0.182314,0.343515,0.0407161,0.666991,0.392972,0.506215,0.271048,0.648103,0.194086,0.86628,0.83913,0.818167,0.827332,0.187242,0.28059,0.68209,0.152697,0.0914181,0.469725,0.221416,0.377958,0.80141,0.528668,0.343207,0.721107,0.458145,0.657336,0.496159,0.989194,0.663233,0.883579,0.859086,0.0983289,0.47181,0.043271,0.706048,0.047679,0.880899,0.414289,0.608151,0.317687,0.629032,0.193288,0.465368,0.963601,0.232062,0.781758,0.999588,0.135412,0.914339,0.852577,0.478787,0.172962,0.274617,0.978804,0.515371,0.910624,0.821585,0.857471,0.587396,0.976833,0.304017,0.284437,0.47931,0.493512,0.361745,0.752667,0.466755,0.543903,0.0147691,0.656718,0.067897,0.812599,0.355837,0.880416,0.98452,0.791724,0.115408,0.981363,0.0921339,0.14712,0.658865,0.596151,0.810436,0.207482,0.0172237,0.651656,0.920485,0.566399,0.129131,0.787306,0.200972,0.952941,0.702491,0.494871,0.436298,0.760568,0.0911987,0.56106,0.140046,0.76027,0.814392,0.408632,0.601949,0.539647,0.276099,0.75704,0.126562,0.169192,0.710965,0.590636,0.24341,0.0196571,0.779002,0.699222,0.581188,0.626781,0.529115,0.257751,0.119715,0.36437,0.560835,0.244502,0.529523,0.277145,0.275958,0.675468,0.737955,0.93352,0.565759,0.94557,0.81205,0.752318,0.915365,0.592968,0.398314,0.572888,0.25684,0.938543,0.287075,0.648618,0.627874,0.328751,0.243415,0.568487,0.422998,0.86256,0.435301,0.489321,0.627129,0.12007,0.30243,0.964198,0.840864,0.620456,0.685063,0.524524,0.230327,0.14596,0.890129,0.594454,0.206728,0.80918,0.0775886,0.463616,0.328111,0.929046,0.0106804,0.176859,0.981308,0.442742,0.29979,0.270395,0.194169,0.718019,0.803333,0.127754,0.126886,0.362003,0.027397,0.0509293,0.891941,0.934752,0.976278,0.289568,0.813106,0.507638,0.811554,0.568841,0.477161,0.691019,0.151092,0.829703,0.983152,0.336212,0.803381,0.438201,0.565629,0.611169,0.262941,0.492945,0.610656,0.25058,0.885264,0.981252,0.219645,0.121116,0.848042,0.120468,0.967143,0.936554,0.770877,0.0809689,0.870056,0.450003,0.729163,0.00306648,0.235939,0.121123,0.398249,0.142734,0.421317,0.986666,0.711142,0.929116,0.247743,0.428302,0.680813,0.236922,0.298259,0.72998,0.718645,0.259455,0.220059,0.457252,0.893497,0.496388,0.571443,0.759819,0.873322,0.664725,0.378859,0.449139,0.350022,0.0877392,0.322264,0.417455,0.0421338,0.792672,0.830914,0.551692,0.60688,0.461861,0.581844,0.391387,0.802658,0.801057,0.621908,0.732356,0.27283,0.442833,0.866112,0.238025,0.0819389,0.318281,0.0725646,0.127493,0.377337,0.867243,0.393477,0.346111,0.0624335,0.968366,0.0294158,0.398546,0.7285,0.563277,0.318732,0.530989,0.97768,0.261395,0.283512,0.705889,0.02248,0.190769,0.444546,0.260716,0.916038,0.105449,0.747875,0.955445,0.971242,0.696747,0.721276,0.864302,0.351475,0.0037964,0.727359,0.899194,0.315632,0.402419,0.518529,0.168024,0.217978,0.441665,0.841327,0.0158094,0.967604,0.610903,0.214339,0.233133,0.682294,0.675623,0.737202,0.357488,0.998276,0.608402,0.282524,0.345438,0.760474,0.362381,0.114748,0.593204,0.83628,0.730551,0.386059,0.962049,0.265357,0.923785,0.0490897,0.935919,0.607993,0.129648,0.428246,0.98828,0.268586,0.953399,0.103676,0.550059,0.956793,0.241188,0.3913,0.320394,0.0804648,0.533204,0.451503,0.508105,0.170245,0.763,0.634167,0.14936,0.931341,0.35046,0.236446,0.332806,0.334873,0.851678,0.681173,0.140834,0.950338,0.676352,0.920205,0.977724,0.867772,0.0860782,0.74022,0.596099,0.251876,0.794096,0.226651,0.329901,0.150825,0.0285946,0.598716,0.629412,0.290011,0.445421,0.90096,0.791562,0.455987,0.36973,0.573605,0.833145,0.374029,0.656863,0.481311,0.536983,0.41521,0.906508,0.931526,0.16693,0.0868526,0.943764,0.510715,0.117185,0.472059,0.958179,0.0143033,0.517492,0.686651,0.178809,0.0387499,0.233626,0.682799,0.706455,0.772918,0.312322,0.597345,0.377167,0.94452,0.963008,0.0127824,0.491089,0.326362,0.351323,0.455653,0.239591,0.653308,0.573634,0.734971,0.450622,0.614597,0.33806,0.421924,0.288897,0.239574,0.79914,0.270602,0.610425,0.883761,0.581668,0.611353,0.835452,0.680099,0.657354,0.891649,0.746307,0.519454,0.946827,0.625584,0.506911,0.158389,0.756807,0.376459,0.707622,0.34188,0.572791,0.470603,0.097276,0.605604,0.670505,0.98031,0.416909,0.795939,0.679109,0.500184,0.38223,0.73828,0.265247,0.543814,0.900367,0.526217,0.970505,0.910405,0.992233,0.0885916,0.548711,0.786533,0.498794,0.139689,0.246608,0.00182688,0.992096,0.288421,0.347105,0.295662,0.876873,0.921833,0.97474,0.452386,0.560127,0.566397,0.187034,0.0189055,0.681335,0.132582,0.964241,0.714919,0.214806,0.885837,0.318233,0.547794,0.999977,0.971345,0.600928,0.991138,0.888893,0.248917,0.879615,0.500866,0.625978,0.666659,0.123637,0.945778,0.230464,0.1023,0.738148,0.29366,0.532729,0.147671,0.248799,0.249782,0.281909,0.0837467,0.716259,0.226284,0.434015,0.24413,0.316852,0.168034,0.562452,0.269987,0.605165,0.234044,0.502294,0.878376,0.683674,0.734539,0.046159,0.839575,0.347607,0.507724,0.560278,0.30407,0.540968,0.961201,0.263935,0.369155,0.459,0.888377,0.30562,0.027954,0.444211,0.0213692,0.351437,0.434696,0.949637,0.36485,0.880074,0.638278,0.99496,0.477065,0.189946,0.0534369,0.799154,0.147123,0.700008,0.964828,0.59519,0.600088,0.617627,0.432324,0.041986,0.821743,0.0451834,0.427705,0.162317,0.494157,0.770842,0.185994,0.386026,0.320678,0.386085,0.981336,0.240247,0.217131,0.201251,0.867058,0.346846,0.334106,0.445671,0.651662,0.993886,0.284022,0.708664,0.360143,0.618368,0.786809,0.312628,0.465236,0.750349,0.945267,0.317684,0.106952,0.952937,0.897918,0.157898,0.942212,0.871344,0.185195,0.0794584,0.595676,0.602974,0.482448,0.160099,0.69142,0.0359972,0.0318477,0.589975,0.232584,0.774333,0.961151,0.474019,0.0373397,0.0810328,0.327355,0.809451,0.590941,0.612564,0.0402527,0.582995,0.183748,0.287947,0.380295,0.758531,0.597836,0.674923,0.0626425,0.882288,0.0574166,0.834797,0.190915,0.158197,0.514817,0.359618,0.65438,0.948369,0.806472,0.921991,0.926143,0.742169,0.27551,0.535369,0.782175,0.400865,0.849794,0.574975,0.811105,0.575812,0.625586,0.627556,0.362885,0.341697,0.956366,0.414035,0.0335491,0.232508,0.99705,|0.998521,0.751281,0.853339,0.0138106,0.171498,0.182011,0.122612,0.944758,0.360231,0.849283,0.201475,0.879939,0.645309,0.232935,0.66368,0.565254,0.339454,0.603998,0.376917,0.732445,0.702826,0.259041,0.0692606,0.478767,0.914926,0.666045,0.2094,0.542633,0.633357,0.441459,0.979923,0.530819,0.363062,0.229383,0.16382,0.00632954,0.688055,0.0164705,0.569681,0.572196,0.82014,0.113725,0.376626,0.357752,0.645871,0.609809,0.466293,0.0674941,0.7667,0.905085,0.534367,0.223835,0.672813,0.865015,0.45731,0.921822,0.618231,0.858625,0.560223,0.922115,0.301386,0.658292,0.570957,0.722211,0.162287,0.79328,0.518277,0.854061,0.232761,0.700527,0.161739,0.694158,0.672017,0.619479,0.0717015,0.469561,0.151412,0.392022,0.00804055,0.707296,0.795016,0.321234,0.946747,0.839988,0.764476,0.294768,0.295659,0.343735,0.705071,0.668567,0.440547,0.263979,0.900332,0.421141,0.371299,0.119623,0.0927449,0.865242,0.15961,0.588288,0.48502,0.115285,0.924326,0.621901,0.971129,0.561262,0.701449,0.406397,0.587286,0.470548,0.64146,0.493136,0.0995261,0.756233,0.439142,0.880633,0.960305,0.592676,0.107399,0.622395,0.338145,0.19777,0.992193,0.231344,0.693036,0.218576,0.838134,0.863853,0.632197,0.241703,0.441597,0.377914,0.157517,0.422029,0.546298,0.24591,0.723236,0.884684,0.21517,0.0725628,0.937861,0.843864,0.438717,0.492763,0.89178,0.492464,0.409942,0.250947,0.837759,0.952002,0.008439,0.84822,0.727474,0.262794,0.285873,0.724239,0.936671,0.657526,0.397651,0.533327,0.848851,0.667632,0.734616,0.573813,0.654342,0.59466,0.138003,0.561589,0.957468,0.210965,0.591697,0.464297,0.0368254,0.795074,0.436305,0.15551,0.537065,0.568758,0.516742,0.0128099,0.186692,0.667599,0.976387,0.848912,0.366492,0.130916,0.985016,0.722669,0.000596702,0.896768,0.00402492,0.612593,0.72834,0.175385,0.11777,0.10319,0.706452,0.764183,0.345247,0.40872,0.896995,0.307025,0.644045,0.0720357,0.686913,0.0426329,0.0552331,0.0330948,0.404991,0.406113,0.0339646,0.618392,0.24189,0.169982,0.274915,0.930424,0.858388,0.913448,0.628928,0.264818,0.0714111,0.0854358,0.711866,0.258501,0.521405,0.744275,0.0721629,0.288604,0.906416,0.641313,0.405848,0.139133,0.481936,0.264903,0.644596,0.710105,0.0993088,0.289425,0.542073,0.241042,0.94856,0.322507,0.214095,0.419754,0.602599,0.431732,0.681952,0.582343,0.477871,0.996035,0.438424,0.336278,0.17874,0.222036,0.928017,0.630192,0.365032,0.389623,0.560503,0.767657,0.342087,0.134494,0.936937,0.806512,0.657933,0.156851,0.828468,0.115595,0.0640465,0.734498,0.182004,0.332652,0.869984,0.604034,0.675334,0.621586,0.139473,0.146073,0.697206,0.56915,0.463736,0.867,0.0772535,0.990334,0.762492,0.79215,0.460353,0.938418,0.25376,0.748727,0.606745,0.71868,0.85629,0.466628,0.407171,0.84148,0.421812,0.807822,0.260669,0.554009,0.338228,0.440858,0.211157,0.510974,0.216072,0.055223,0.0200062,0.346431,0.0822201,0.621406,0.2246,0.380791,0.516951,0.191972,0.589271,0.749482,0.249682,0.019478,0.966469,0.923913,0.930748,0.140702,0.427514,0.794003,0.281295,0.646738,0.0269844,0.575032,0.563797,0.286545,0.443216,0.593359,0.655428,0.369787,0.11854,0.842475,0.13969,0.335508,0.763033,0.818302,0.0433228,0.907486,0.904644,0.21459,0.323183,0.986544,0.120448,0.260667,0.707194,0.935394,0.149556,0.531302,0.768474,0.0368024,0.862003,0.825134,0.281792,0.964016,0.0791755,0.133944,0.335624,0.234902,0.203762,0.322857,0.467525,0.755861,0.23229,0.984278,0.557968,0.0297337,0.938843,0.976768,0.00691378,0.439239,0.16008,0.674878,0.557742,0.174153,0.528384,0.946314,0.312849,0.419734,0.52453,0.77145,0.685799,0.950418,0.152042,0.158349,0.171051,0.480134,0.98994,0.914358,0.224994,0.679697,0.757632,0.287553,0.550987,0.711899,0.875561,0.167834,0.613365,0.147258,0.5337,0.925765,0.700186,0.302802,0.885743,0.886081,0.354912,0.0284342,0.486306,0.813903,0.546736,0.946831,0.275595,0.521832,0.829923,0.598871,0.681957,0.196202,0.04827,0.30116,0.913032,0.785918,0.0259576,0.186007,0.000690818,0.927317,0.193853,0.365707,0.488328,0.482238,0.892169,0.501278,0.570222,0.72546,0.663256,0.614076,0.083832,0.0105122,0.460234,0.0720253,0.119722,0.772728,0.368958,0.80865,0.452211,0.139447,0.417673,0.474548,0.122957,0.957475,0.940927,0.318731,0.262028,0.463192,0.382425,0.359111,0.761407,0.138252,0.986932,0.679274,0.569622,0.27416,0.236814,0.952961,0.776482,0.856256,0.470744,0.331664,0.43102,0.0211669,0.970463,0.879753,0.143958,0.154739,0.899704,0.76631,0.0575547,0.985027,0.300546,0.983122,0.967034,0.77503,0.0039432,0.436039,0.812737,0.96739,0.767575,0.20545,0.799458,0.0862754,0.842958,0.883662,0.62091,0.373852,0.502196,0.830696,0.642084,0.776077,0.0309066,0.0132205,0.62018,0.724415,0.43863,0.225525,0.137867,0.854729,0.912836,0.600528,0.371193,0.195473,0.463389,0.903527,0.905976,0.773943,0.00435418,0.879595,0.11738,0.0446247,0.0497402,0.207485,0.298066,0.517223,0.779153,0.910099,0.935616,0.752655,0.347391,0.484823,0.51736,0.598736,0.415062,0.222564,0.571738,0.407956,0.715225,0.719946,0.936941,0.414992,0.591634,0.915747,0.912936,0.22569,0.419472,0.33114,0.496796,0.957294,0.148467,0.602498,0.298546,0.0557194,0.383768,0.811049,0.0814269,0.710661,0.631253,0.112215,0.451321,0.894711,0.718662,0.955019,0.788639,0.555593,0.962771,0.246644,0.280795,0.464596,0.105275,0.726137,0.727254,0.567428,0.625889,0.178241,0.0505866,0.0693141,0.122386,0.73478,0.130641,0.226381,0.38066,0.522808,0.118664,0.61064,0.187529,0.100152,0.563811,0.775968,0.371457,0.284093,0.241242,0.890844,0.772949,0.639449,0.642216,0.385054,0.884009,0.955944,0.315491,0.143728,0.535083,0.828359,0.292891,0.0525209,0.389834,0.90377,0.583373,0.13779,0.323447,0.730215,0.447024,0.281457,0.996414,0.6868,0.238718,0.0912736,0.0908733,0.879852,0.405795,0.488269,0.244012,0.332119,0.712422,0.51366,0.591716,0.969225,0.701601,0.623572,0.237094,0.31348,0.236581,0.558042,0.828516,0.140531,0.10319,0.32765,0.524315,0.439237,0.150871,0.756113,0.428075,0.197035,0.465969,0.350727,0.410233,0.289078,0.0241902,0.997918,0.219138,0.108934,0.334781,0.830716,0.487745,0.290387,0.744289,0.890486,0.243285,0.434403,0.107611,0.661743,0.300187,0.123243,0.501013,0.824454,0.508998,0.657125,0.690258,0.867562,0.748468,0.544958,0.367037,0.367674,0.940842,0.563112,0.888029,0.707016,0.458711,0.833534,0.7262,0.113375,0.984564,0.948761,0.103236,0.33055,0.852318,0.752521,0.953002,0.388877,0.0322603,0.498463,0.425682,0.715774,0.191769,0.35658,0.190134,0.20099,0.289768,0.941093,0.478159,0.822831,0.605397,0.623327,0.579714,0.529406,0.00085777,0.0963584,0.402386,0.0146589,0.696839,0.264635,0.908345,0.236496,0.373271,0.083632,0.888556,0.0989744,0.253417,0.00825661,0.151936,0.401048,0.45501,0.161647,0.942406,0.24702,0.333628,0.26011,0.376088,0.876346,0.442679,0.711673,0.547208,0.447347,0.498467,0.0987475,0.0981801,0.426742,0.556614,0.545607,0.491958,0.507269,0.807091,0.0727493,0.892398,0.640434,0.984347,0.247788,0.620458,0.570576,0.941463,0.898668,0.100676,0.77951,0.245041,0.847412,0.274408,0.883829,0.0150598,0.92114,0.232322,0.921922,0.864368,0.61279,0.84786,0.185131,0.113347,0.998356,0.0587238,0.771775,0.153148,0.66635,0.77684,0.435659,0.800406,0.178731,0.416831,0.745988,0.14589,0.551618,0.808913,0.707171,0.222529,0.854962,0.0908881,0.513207,0.966213,0.280987,0.470226,0.606047,0.494089,0.0275693,0.941213,0.537329,0.0529569,0.395507,0.473947,0.858305,0.237516,0.988476,0.135408,0.535094,0.227526,0.141542,0.430613,0.859025,0.275247,0.295453,0.146794,0.50999,0.548982,0.102603,0.115282,0.627266,0.837271,0.93782,0.919793,0.286295,0.111691,0.589077,0.0927909,0.712378,0.243297,0.290392,0.787072,0.398874,0.374993,0.404368,0.467195,0.0224493,0.96795,0.0744277,0.115797,0.136049,0.653208,0.760158,0.77349,0.759127,0.883765,0.488664,0.157357,0.74623,0.398548,0.65032,0.241113,0.829937,0.949398,0.279561,0.473183,0.903992,0.183853,0.753212,0.824368,0.874646,0.0169242,0.0749514,0.220596,0.739761,0.460684,0.242716,0.255835,0.69287,0.233331,0.355791,0.261923,0.584713,0.902749,0.484422,0.646978,0.898755,0.891692,0.948389,0.478221,0.281796,0.0812017,0.916031,0.630082,0.752626,0.674185,0.922746,0.846759,0.900107,0.795829,0.810919,0.0274956,0.262139,0.486632,0.843302,0.292521,0.352575,0.913843,0.165214,0.188375,0.897879,0.00185484,0.673022,0.185956,0.793578,0.246033,0.380821,0.689128,0.885026,0.655017,0.422388,0.715195,0.559583,0.212572,0.833462,0.0313326,0.687717,0.185518,0.775607,0.980556,0.532342,0.423325,0.327443,0.989986,0.271064,0.683805,0.739176,0.64002,0.594501,0.134579,0.718686,0.302422,0.198472,0.909239,0.179268,0.658053,0.56573,0.746117,0.946645,0.371531,0.684559,0.320082,0.816806,0.212927,0.333085,0.495461,0.792201,0.565836,0.708342,0.421813,0.492606,0.0878267,0.288958,0.598991,0.340267,0.747758,0.518513,0.822385,0.739027,0.66577,0.354051,0.645302,0.865357,0.643879,0.453857,0.775943,0.0789893,0.711213,0.747235,0.524399,0.382305,0.315282,0.755564,0.316021,0.982084,0.278059,0.20519,0.405256,0.543703,0.697749,0.808512,0.8909,0.582254,0.93495,0.421757,0.651797,0.11622,0.391276,0.0559732,0.752755,0.349311,0.301391,0.823754,0.132211,0.559582,0.495218,0.449472,0.03309,0.0438516,0.98699,0.964551,0.1429,0.831847,0.962555,0.859202,0.0877495,0.992309,0.667179,0.130632,|0.0940337,0.507364,0.17511,0.270254,0.667367,0.669917,0.905579,0.165546,0.976789,0.369783,0.480963,0.23022,0.175818,0.950561,0.00891256,0.942786,0.640733,0.0961151,0.302107,0.489719,0.142258,0.621346,0.187964,0.377688,0.299122,0.724256,0.174696,0.720033,0.57272,0.120219,0.681407,0.97927,0.996015,0.513755,0.397211,0.0156059,0.948276,0.345348,0.298203,0.47844,0.442846,0.330421,0.630909,0.664112,0.0203424,0.98257,0.733346,0.870704,0.120184,0.638627,0.172878,0.891794,0.864148,0.179887,0.344971,0.541709,0.552919,0.360421,0.572774,0.959289,0.823046,0.991936,0.064751,0.444689,0.100243,0.630765,0.625625,0.0530828,0.457404,0.138745,0.633813,0.482408,0.884403,0.692895,0.269582,0.722393,0.793025,0.2144,0.557199,0.438693,0.882338,0.640461,0.120678,0.508491,0.0759478,0.77692,0.0332823,0.198858,0.835314,0.380561,0.924835,0.647269,0.242582,0.767811,0.477991,0.29692,0.797796,0.91237,0.121238,0.145482,0.278688,0.289752,0.768471,0.136685,0.387625,0.0911756,0.901726,0.0149679,0.5332,0.0910191,0.422189,0.535766,0.319901,0.201867,0.232489,0.118322,0.389305,0.61696,0.533746,0.328013,0.247786,0.337843,0.0977125,0.644818,0.0978372,0.0834929,0.474453,0.848719,0.280439,0.732524,0.00577509,0.948895,0.571373,0.156965,0.0854391,0.409886,0.885589,0.655761,0.67252,0.574296,0.717123,0.674753,0.752537,0.402425,0.839707,0.170586,0.403642,0.882963,0.554007,0.207364,0.632785,0.248391,0.989023,0.775041,0.115056,0.205865,0.682782,0.151344,0.746678,0.426328,0.75813,0.537613,0.99163,0.714245,0.144626,0.823002,0.450745,0.593089,0.812688,0.183926,0.2892,0.0313528,0.167124,0.76574,0.0380604,0.617707,0.648537,0.325874,0.853501,0.37772,0.540259,0.264615,0.707522,0.691459,0.814024,0.534705,0.527892,0.473484,0.194443,0.129347,0.889575,0.780555,0.828738,0.26364,0.26169,0.262225,0.0491682,0.495753,0.589743,0.620999,0.785724,0.142531,0.360669,0.610812,0.760496,0.87362,0.266077,0.0454968,0.850617,0.400347,0.00716519,0.640934,0.359394,0.468959,0.965989,0.429233,0.0081684,0.555123,0.998804,0.568135,0.742399,0.99689,0.653939,0.460023,0.535923,0.030298,0.71678,0.0928939,0.897349,0.143473,0.344346,0.467998,0.778352,0.804907,0.367022,0.55547,0.900746,0.113269,0.167888,0.614108,0.956045,0.322728,0.810838,0.0962614,0.340609,0.684498,0.667919,0.486469,0.969315,0.980005,0.192649,0.363488,0.92009,0.759512,0.919946,0.0853083,0.497889,0.995443,0.375539,0.0134808,0.774864,0.511343,0.683788,0.969901,0.865777,0.708549,0.758165,0.457245,0.856237,0.445021,0.26129,0.0338204,0.569813,0.779204,0.756284,0.407786,0.191629,0.78334,0.403345,0.544208,0.545842,0.816667,0.850167,0.199841,0.0900491,0.339577,0.903305,0.986549,0.167241,0.00505042,0.581322,0.271236,0.168083,0.812383,0.32134,0.762971,0.168722,0.698137,0.810673,0.166393,0.260204,0.479967,0.531545,0.817005,0.740504,0.0646069,0.271885,0.622726,0.514506,0.318373,0.777269,0.154424,0.719682,0.833491,0.878781,0.871253,0.954534,0.926457,0.636313,0.312998,0.865882,0.70912,0.139064,0.374948,0.71946,0.274096,0.69785,0.512529,0.799489,0.325831,0.127538,0.025824,0.952661,0.0301577,0.979264,0.463677,0.060089,0.756313,0.819904,0.982846,0.527164,0.965688,0.485399,0.666291,0.852174,0.732356,0.281404,0.00507128,0.379463,0.572914,0.96113,0.537152,0.679896,0.537785,0.348476,0.528997,0.431697,0.6384,0.156558,0.963497,0.716389,0.699186,0.308304,0.243553,0.565599,0.261618,0.033116,0.125818,0.0153825,0.45817,0.502629,0.765366,0.775884,0.896024,0.465583,0.604896,0.572586,0.509047,0.0581867,0.457088,0.632133,0.395075,0.969288,0.363053,0.369803,0.789233,0.171861,0.217748,0.705686,0.148525,0.651685,0.414481,0.330093,0.178392,0.400576,0.851316,0.904097,0.412754,0.0175337,0.680457,0.25958,0.924903,0.377011,0.30849,0.355343,0.54182,0.210114,0.093251,0.631372,0.472287,0.79841,0.00527185,0.519093,0.94936,0.819429,0.0980272,0.570514,0.463245,0.132502,0.613969,0.901052,0.99384,0.140266,0.688599,0.606518,0.511068,0.411647,0.883145,0.132775,0.65218,0.107118,0.142708,0.281091,0.434608,0.563765,0.795766,0.303163,0.494932,0.392942,0.427587,0.437417,0.379461,0.351085,0.205469,0.264465,0.370073,0.228431,0.839501,0.784983,0.0749628,0.352501,0.255004,0.65883,0.961158,0.506581,0.96809,0.634997,0.587149,0.318762,0.184929,0.183596,0.315692,0.01847,0.0262179,0.955168,0.891733,0.509439,0.973957,0.779148,0.655001,0.489069,0.125018,0.115888,0.774674,0.831249,0.085923,0.30867,0.5987,0.990807,0.563996,0.652166,0.75648,0.204624,0.543557,0.0209154,0.173431,0.629209,0.375188,0.51474,0.407419,0.565592,0.472984,0.87345,0.859963,0.900249,0.159067,0.829945,0.841673,0.000321746,0.785434,0.0753088,0.576305,0.455597,0.926618,0.00785768,0.666444,0.996486,0.0866699,0.412656,0.00955689,0.48699,0.682029,0.0690562,0.90269,0.503431,0.125144,0.306847,0.449092,0.305337,0.830244,0.175988,0.253381,0.012359,0.125015,0.872166,0.417956,0.311066,0.809446,0.450183,0.74479,0.689793,0.944338,0.957095,0.658934,0.596259,0.401033,0.534651,0.555793,0.200125,0.222094,0.194796,0.271231,0.118926,0.837171,0.16805,0.520496,0.806859,0.12567,0.353497,0.924356,0.605435,0.63868,0.899302,0.397238,0.875037,0.271741,0.716558,0.20072,0.468251,0.548651,0.203935,0.57895,0.618045,0.55448,0.99267,0.420529,0.534065,0.1971,0.662749,0.649477,0.431101,0.569383,0.000219882,0.31352,0.141947,0.902737,0.378009,0.959695,0.373274,0.188857,0.985252,0.256062,0.264691,0.297772,0.670234,0.10037,0.351184,0.19328,0.417505,0.29346,0.913927,0.335343,0.124742,0.13143,0.205104,0.898472,0.914437,0.99215,0.0265313,0.960967,0.49345,0.468604,0.656271,0.693915,0.910539,0.633724,0.494114,0.467167,0.373449,0.490366,0.37649,0.297073,0.535937,0.0424645,0.0608723,0.872741,0.698839,0.941908,0.997566,0.496876,0.349827,0.802142,0.785891,0.689952,0.317942,0.828114,0.854657,0.718519,0.781856,0.185905,0.468235,0.0457468,0.884978,0.0642424,0.413961,0.423766,0.77432,0.446907,0.350156,0.000492394,0.43404,0.941938,0.992642,0.439361,0.483844,0.399419,0.955764,0.471089,0.75229,0.716131,0.417144,0.672773,0.405095,0.327331,0.333517,0.166826,0.227893,0.984552,0.723558,0.582488,0.225818,0.280241,0.537674,0.856531,0.492008,0.699495,0.760159,0.00969112,0.449024,0.224314,0.0309376,0.502986,0.497317,0.43248,0.169174,0.806117,0.712349,0.83235,0.0436188,0.0779704,0.886656,0.316745,0.585196,0.423268,0.897719,0.786538,0.123202,0.628366,0.834924,0.816894,0.297832,0.984457,0.544526,0.445453,0.883826,0.717381,0.357421,0.29889,0.452182,0.681345,0.861497,0.574792,0.155644,0.240971,0.0273702,0.30636,0.0122405,0.172228,0.689333,0.648909,0.902743,0.465247,0.53016,0.844749,0.278646,0.514007,0.151309,0.0627413,0.355338,0.795759,0.823584,0.560968,0.339371,0.797572,0.625348,0.0964363,0.191939,0.125061,0.527535,0.863414,0.569574,0.198161,0.176143,0.862003,0.589509,0.533017,0.837956,0.732161,0.827193,0.312121,0.0257468,0.040265,0.963788,0.657881,0.712139,0.658243,0.743436,0.534144,0.817047,0.856943,0.809283,0.00904995,0.462614,0.583637,0.123827,0.198464,0.816214,0.557615,0.315162,0.15013,0.845022,0.306457,0.824521,0.350614,0.436886,0.250278,0.911732,0.729086,0.247818,0.349333,0.751957,0.824701,0.693267,0.45525,0.190138,0.514717,0.515162,0.438296,0.702483,0.836473,0.239008,0.0527753,0.613296,0.425564,0.476941,0.371207,0.0862609,0.456043,0.842364,0.0788838,0.816503,0.834746,0.0575529,0.414587,0.475915,0.964619,0.869021,0.690207,0.74065,0.697544,0.806456,0.649883,0.166948,0.840094,0.114976,0.21494,0.654968,0.518201,0.933991,0.259239,0.623629,0.355263,0.112981,0.449126,0.508683,0.414883,0.159312,0.666932,0.549428,0.369336,0.583167,0.377797,0.34182,0.431842,0.424197,0.469109,0.377945,0.0915086,0.713394,0.509737,0.753431,0.620889,0.10144,0.278444,0.529235,0.218964,0.665194,0.108971,0.394469,0.914563,0.535793,0.982299,0.144324,0.796065,0.627702,0.83408,0.371495,0.734003,0.429776,0.053297,0.765421,0.812426,0.792226,0.929495,0.413194,0.177033,0.816274,0.344156,0.999269,0.755701,0.360524,0.36945,0.541716,0.707689,0.315554,0.31462,0.149921,0.690156,0.422254,0.372501,0.325428,0.226256,0.515867,0.615206,0.203796,0.709765,0.976289,0.285224,0.959832,0.971391,0.450963,0.237325,0.374855,0.390064,0.228998,0.143639,0.268572,0.769963,0.992627,0.462529,0.827266,0.450478,0.142447,0.1809,0.939891,0.701087,0.239794,0.714934,0.0925739,0.0762894,0.263149,0.716528,0.357165,0.150783,0.429546,0.636896,0.203858,0.880636,0.689266,0.561613,0.0979426,0.012518,0.776211,0.670971,0.610587,0.823844,0.130263,0.0591832,0.511715,0.514369,0.582462,0.850941,0.219996,0.591509,0.638555,0.9285,0.846747,0.862605,0.49453,0.732554,0.930257,0.966473,0.0219857,0.740576,0.626696,0.328013,0.0903217,0.308023,0.780647,0.452067,0.538413,0.595995,0.9197,0.831545,0.168861,0.299165,0.313335,0.746149,0.850694,0.304725,0.0142419,0.82826,0.580282,0.597788,0.718076,0.342947,0.615726,0.36567,0.841517,0.607924,0.916229,0.0384199,0.765437,0.956082,0.372454,0.781871,0.539627,0.497771,0.936321,0.603886,0.349584,0.792437,0.741865,0.315072,0.0294645,0.869676,0.592611,0.62938,0.521127,0.975391,0.563302,0.911999,0.899728,0.21978,0.144055,0.568685,0.662027,0.997176,0.00686574,0.651481,0.764126,0.429004,0.192493,0.465912,0.64366,0.714606,0.752713,0.780765,0.887649,0.641562,|0.177647,0.922174,0.835442,0.883127,0.487435,0.21717,0.167216,0.364973,0.641285,0.653054,0.380056,0.619357,0.783303,0.31399,0.250088,0.0770453,0.0173658,0.197083,0.610254,0.961544,0.765334,0.314842,0.0584939,0.966781,0.980861,0.717764,0.60377,0.886092,0.354463,0.327192,0.695847,0.588885,0.35193,0.172981,0.92719,0.0805653,0.359996,0.366424,0.680566,0.643105,0.54198,0.354467,0.757127,0.842567,0.209635,0.444641,0.0564241,0.368662,0.607975,0.68415,0.428667,0.391227,0.56682,0.127146,0.692723,0.60714,0.129143,0.287638,0.780855,0.918448,0.559176,0.376357,0.0168563,0.543106,0.83752,0.000608802,0.204587,0.353664,0.253893,0.0427358,0.576542,0.36996,0.720154,0.603298,0.762821,0.512497,0.139006,0.478287,0.454619,0.0783902,0.91932,0.428536,0.166007,0.56174,0.977349,0.903754,0.224783,0.0510553,0.24801,0.384692,0.052865,0.733754,0.319714,0.134278,0.837537,0.9691,0.924738,0.973957,0.664947,0.777585,0.52084,0.000292301,0.756019,0.412012,0.712027,0.294083,0.234329,0.373849,0.773358,0.720826,0.791338,0.335808,0.907748,0.826258,0.658639,0.738952,0.155662,0.756338,0.0949072,0.359193,0.402448,0.446944,0.725433,0.0875329,0.0345212,0.418529,0.521093,0.267924,0.196752,0.728597,0.689335,0.867469,0.789637,0.121063,0.497124,0.869741,0.100311,0.178094,0.72937,0.682751,0.270397,0.795221,0.167472,0.212919,0.483869,0.0268505,0.611483,0.819173,0.513056,0.38839,0.142709,0.284065,0.510965,0.292924,0.576224,0.566071,0.375524,0.0829414,0.11602,0.825052,0.712177,0.641921,0.718677,0.310624,0.624998,0.554781,0.0728784,0.16075,0.877013,0.715532,0.729246,0.332834,0.376644,0.826341,0.401072,0.238056,0.661272,0.285483,0.177232,0.553523,0.702911,0.135879,0.869001,0.528011,0.130246,0.349305,0.975996,0.107178,0.675213,0.827057,0.554431,0.0620451,0.948456,0.746727,0.664669,0.0695227,0.655329,0.24051,0.852604,0.832908,0.223925,0.321146,0.0798396,0.245796,0.548196,0.555417,0.520459,0.539222,0.995561,0.120121,0.480872,0.143617,0.625612,0.0193543,0.455824,0.0766135,0.854978,0.533343,0.107605,0.916741,0.0964483,0.80507,0.53996,0.794717,0.903143,0.989931,0.0415331,0.946751,0.81545,0.370493,0.0649133,0.733289,0.0134624,0.69128,0.703816,0.899781,0.530124,0.0818959,0.371756,0.0137653,0.556501,0.855805,0.647331,0.519252,0.284068,0.891017,0.839603,0.743942,0.755651,0.938448,0.115306,0.33532,0.586317,0.660623,0.133193,0.810641,0.757817,0.189081,0.976464,0.907997,0.312165,0.279562,0.708349,0.992143,0.203914,0.961881,0.186716,0.768141,0.111075,0.765435,0.0104915,0.882383,0.711687,0.327116,0.0221817,0.695903,0.918472,0.698026,0.916385,0.218769,0.260821,0.070235,0.704368,0.654924,0.0803002,0.305731,0.258389,0.615304,0.935629,0.746068,0.257224,0.96905,0.739736,0.643762,0.446246,0.3719,0.997382,0.190507,0.0324693,0.095365,0.804211,0.021633,0.782709,0.0170284,0.939272,0.497809,0.3739,0.220979,0.699475,0.528415,0.243979,0.500528,0.531855,0.623446,0.872653,0.346467,0.195977,0.700896,0.666691,0.70646,0.205073,0.958367,0.0531927,0.442349,0.485919,0.716645,0.750015,0.0761502,0.720568,0.790592,0.28071,0.220995,0.648229,0.573709,0.460506,0.170762,0.983193,0.346317,0.87896,0.770822,0.523594,0.459982,0.892811,0.101584,0.0767904,0.856779,0.688167,0.38446,0.338925,0.589873,0.513984,0.445324,0.468714,0.570232,0.0557914,0.421152,0.520743,0.783222,0.933621,0.907612,0.425933,0.447448,0.946667,0.152901,0.838458,0.355464,0.656993,0.00197321,0.296352,0.630288,0.944389,0.0953198,0.840927,0.864497,0.118177,0.704473,0.331629,0.551305,0.648111,0.91604,0.281744,0.701278,0.486847,0.540726,0.860458,0.723168,0.239634,0.0247698,0.132778,0.164396,0.249106,0.48213,0.998782,0.481668,0.756622,0.574191,0.295142,0.671455,0.0278921,0.47663,0.0395904,0.541908,0.132698,0.917003,0.772434,0.367896,0.0540984,0.799159,0.7249,0.429896,0.600198,0.949379,0.36615,0.864715,0.473387,0.562563,0.534433,0.633529,0.787788,0.625628,0.988317,0.093217,0.350114,0.446267,0.815535,0.842024,0.553827,0.785704,0.299748,0.41886,0.42535,0.422208,0.893521,0.847583,0.173427,0.106454,0.0321658,0.968609,0.442357,0.625314,0.0523621,0.672311,0.932776,0.261491,0.909603,0.0612278,0.182055,0.517212,0.522593,0.178886,0.236522,0.410893,0.631894,0.758816,0.46231,0.568919,0.26075,0.782468,0.745427,0.0287385,0.273595,0.23382,0.508496,0.275857,0.10511,0.510132,0.924684,0.0984929,0.524909,0.0756482,0.721994,0.715589,0.683164,0.984423,0.72822,0.240627,0.520279,0.698048,0.925386,0.842399,0.306689,0.429619,0.0666752,0.899956,0.0101396,0.916875,0.427282,0.205265,0.150911,0.0471151,0.370306,0.628455,0.91136,0.669905,0.74179,0.749272,0.733872,0.116958,0.279331,0.457994,0.888954,0.451643,0.896177,0.799626,0.72201,0.645723,0.859843,0.629387,0.838636,0.00229818,0.692551,0.780323,0.369559,0.68614,0.295508,0.371712,0.744568,0.961839,0.846377,0.910357,0.634843,0.165499,0.111915,0.937444,0.456712,0.527078,0.573651,0.117748,0.402942,0.105391,0.294651,0.667435,0.392807,0.7464,0.379829,0.688926,0.117205,0.674541,0.941224,0.420839,0.418007,0.833758,0.406217,0.199076,0.583145,0.724821,0.876017,0.485693,0.310017,0.764489,0.655597,0.837606,0.120499,0.933398,0.902384,0.140563,0.438591,0.409341,0.293535,0.212124,0.0240875,0.0089398,0.780936,0.0440169,0.211389,0.317501,0.387507,0.815591,0.170369,0.297148,0.466664,0.916788,0.959588,0.516029,0.0592234,0.838627,0.607329,0.404468,0.011674,0.655323,0.412766,0.827395,0.017918,0.275081,0.0694169,0.40019,0.663646,0.144726,0.0016858,0.115475,0.98038,0.805649,0.96224,0.89565,0.166946,0.686125,0.957373,0.0801975,0.435606,0.14656,0.13374,0.869221,0.761736,0.796409,0.878333,0.519456,0.374672,0.648741,0.262669,0.977289,0.904752,0.578116,0.275137,0.494128,0.975277,0.852179,0.944992,0.634771,0.595922,0.604174,0.225674,0.171842,0.746308,0.62085,0.862539,0.907954,0.588466,0.112631,0.152228,0.223312,0.486908,0.638694,0.152122,0.57266,0.927061,0.519011,0.443267,0.702985,0.734406,0.0642581,0.561652,0.342963,0.132258,0.106562,0.433921,0.873627,0.600661,0.430219,0.700627,0.409805,0.166466,0.852698,0.84644,0.741265,0.833643,0.640252,0.332102,0.00574458,0.630383,0.245236,0.925924,0.44238,0.429897,0.649323,0.495768,0.316289,0.0782204,0.741012,0.638704,0.523578,0.15893,0.43293,0.109094,0.739002,0.34032,0.579138,0.74356,0.587432,0.0935554,0.12347,0.215649,0.766646,0.576833,0.301069,0.0208155,0.0255585,0.163706,0.50484,0.192878,0.979981,0.233939,0.450385,0.561757,0.0417905,0.195926,0.981249,0.35411,0.553262,0.477592,0.122692,0.0837686,0.539595,0.0462383,0.679173,0.353864,0.296452,0.00208122,0.271407,0.146303,0.270193,0.410887,0.808742,0.48892,0.0162516,0.256819,0.0368974,0.822344,0.755374,0.686852,0.923993,0.915412,0.562245,0.721373,0.246916,0.0145766,0.914418,0.442975,0.0410114,0.836014,0.00887895,0.0116612,0.692982,0.56356,0.759656,0.181004,0.845422,0.463815,0.518583,0.908906,0.381006,0.764818,0.461975,0.087241,0.218757,0.852398,0.220374,0.5054,0.0812567,0.303093,0.129072,0.306018,0.570862,0.750108,0.377819,0.872805,0.918568,0.670971,0.579294,0.839415,0.213662,0.657005,0.0507057,0.960984,0.665721,0.422554,0.810393,0.724196,0.848551,0.246449,0.938686,0.410924,0.178669,0.492371,0.843229,0.9249,0.494834,0.149766,0.591063,0.27466,0.0900986,0.527594,0.123741,0.910461,0.308048,0.103258,0.362214,0.17856,0.634439,0.501293,0.12902,0.958977,0.0607991,0.16797,0.904828,0.117695,0.0887511,0.981514,0.737479,0.0452978,0.00428462,0.27896,0.927427,0.698193,0.193372,0.15382,0.528914,0.706038,0.952288,0.164729,0.258494,0.318264,0.384143,0.597665,0.679562,0.49998,0.15138,0.643141,0.68192,0.613899,0.683538,0.404749,0.959813,0.815683,0.401869,0.897511,0.156829,0.656661,0.850307,0.488584,0.715376,0.916994,0.123653,0.00795829,0.945314,0.766149,0.537636,0.308485,0.738156,0.222136,0.952365,0.829872,0.579082,0.290656,0.0888135,0.31546,0.641029,0.956268,0.924555,0.783588,0.145552,0.460242,0.901393,0.434964,0.693244,0.213611,0.363973,0.937207,0.991815,0.551298,0.74473,0.774619,0.210067,0.607298,0.915704,0.637636,0.123123,0.403757,0.466382,0.885666,0.546533,0.759731,0.592186,0.92164,0.16897,0.649735,0.897497,0.707871,0.679837,0.228429,0.840976,0.587895,0.560431,0.364048,0.0731009,0.110418,0.18851,0.521217,0.0279538,0.0285752,0.0457984,0.768186,0.433419,0.599692,0.228176,0.689764,0.636175,0.602756,0.163746,0.418087,0.382147,0.800218,0.0130109,0.237667,0.399114,0.977676,0.388535,0.151609,0.0568449,0.779563,0.735335,0.135257,0.169553,0.137478,0.295798,0.950696,0.0638346,0.0295725,0.510954,0.525102,0.804124,0.510063,0.59529,0.477843,0.365836,0.412758,0.906786,0.555141,0.578174,0.219674,0.232322,0.946325,0.739386,0.0746881,0.0817471,0.597902,0.811278,0.0987571,0.295947,0.0569453,0.142774,0.859533,0.87991,0.197388,0.711013,0.428121,0.243149,0.231707,0.568247,0.822583,0.838112,0.307048,0.65165,0.817711,0.98573,0.0655346,0.915133,0.266744,0.986057,0.193395,0.0986148,0.918651,0.433235,0.715414,0.00071764,0.398935,0.293828,0.146638,0.908303,0.666643,0.502503,0.497063,0.882683,0.79452,0.897093,0.919955,0.0422528,0.814531,0.934051,0.363887,0.486675,0.349696,0.209371,0.77322,0.0125077,0.0416015,0.506924,0.223319,0.326643,0.0506164,0.940121,0.834091,0.0237169,0.0449374,0.333507,0.850668,0.785889,0.849786,0.699574,0.127728,0.896068,|0.855329,0.467006,0.0708783,0.661222,0.850752,0.623931,0.688055,0.398626,0.195752,0.259274,0.908938,0.74534,0.486021,0.555483,0.0159574,0.895601,0.668866,0.422466,0.48241,0.0969833,0.0711061,0.892971,0.12914,0.12318,0.0927022,0.852975,0.33361,0.757497,0.0729015,0.936109,0.415187,0.336622,0.154567,0.900253,0.326111,0.0709346,0.298581,0.351641,0.158349,0.70833,0.366578,0.021146,0.7515,0.0465087,0.441814,0.535821,0.874691,0.291464,0.862518,0.74768,0.605682,0.483907,0.929302,0.44998,0.141808,0.819375,0.0672725,0.872581,0.189356,0.789882,0.017577,0.184336,0.50046,0.0526515,0.794832,0.166827,0.369793,0.454079,0.143623,0.788299,0.611381,0.990315,0.988803,0.790214,0.0386623,0.395541,0.442057,0.298505,0.0669578,0.779034,0.19575,0.546965,0.56171,0.571753,0.16432,0.984493,0.667133,0.294322,0.575396,0.537358,0.55608,0.190616,0.508835,0.880018,0.671528,0.873042,0.141429,0.0750768,0.736845,0.647711,0.00831336,0.239089,0.523381,0.668151,0.365801,0.697072,0.648881,0.472667,0.324989,0.472933,0.0434567,0.872581,0.956486,0.635577,0.777961,0.393828,0.994085,0.390919,0.515755,0.62437,0.505098,0.0535535,0.323704,0.910459,0.35479,0.793242,0.126282,0.991741,0.422516,0.679024,0.449467,0.779183,0.960109,0.863322,0.400926,0.803483,0.320695,0.70608,0.141059,0.774342,0.340794,0.2136,0.929222,0.572973,0.856159,0.322603,0.650337,0.703233,0.575393,0.0344626,0.629935,0.00860459,0.88379,0.681693,0.472718,0.695319,0.707343,0.539949,0.378719,0.914965,0.0562586,0.150251,0.859789,0.179445,0.322757,0.525144,0.0927746,0.614166,0.344822,0.517179,0.413148,0.457555,0.859532,0.498511,0.858015,0.694244,0.611784,0.0454297,0.397549,0.375748,0.972908,0.576146,0.840611,0.13323,0.344972,0.923212,0.923896,0.868671,0.914813,0.367907,0.891564,0.0834404,0.035113,0.4407,0.607786,0.402103,0.70908,0.230069,0.831046,0.693102,0.868476,0.784269,0.285279,0.524721,0.0547345,0.614628,0.8964,0.068921,0.974146,0.996936,0.234407,0.0966047,0.786315,0.358056,0.994954,0.0287595,0.341602,0.962604,0.375232,0.456796,0.49982,0.457804,0.469577,0.0673904,0.947242,0.745796,0.214531,0.0680831,0.0613187,0.672997,0.904102,0.632251,0.753549,0.994447,0.312342,0.499097,0.222344,0.768556,0.147782,0.108149,0.640671,0.599559,0.850223,0.591486,0.451798,0.768875,0.88791,0.606482,0.576128,0.468165,0.940658,0.530956,0.133492,0.575751,0.968467,0.613528,0.82544,0.601044,0.51547,0.550783,0.111667,0.0923482,0.398653,0.657014,0.959906,0.349228,0.321624,0.845402,0.916995,0.357068,0.55578,0.315324,0.851992,0.520073,0.186461,0.448389,0.595765,0.790561,0.123959,0.471747,0.523855,0.797362,0.300149,0.617747,0.844534,0.300925,0.0314632,0.177181,0.0567107,0.109273,0.813107,0.93114,0.699835,0.960043,0.526256,0.374968,0.355041,0.589077,0.66498,0.227689,0.564767,0.872015,0.768017,0.873273,0.849653,0.949285,0.435845,0.430418,0.628277,0.401954,0.939773,0.39213,0.746965,0.530787,0.651174,0.965117,0.505307,0.780437,0.74507,0.794707,0.83099,0.633174,0.555658,0.280089,0.833592,0.249146,0.341708,0.628062,0.861534,0.775351,0.0658494,0.749452,0.987109,0.444341,0.507067,0.937339,0.443176,0.436576,0.125552,0.604173,0.730935,0.666185,0.912086,0.427088,0.688819,0.269209,0.159995,0.445708,0.872722,0.993663,0.179583,0.738965,0.772714,0.833918,0.293811,0.287897,0.846908,0.81707,0.287832,0.651263,0.500656,0.186173,0.0630867,0.450869,0.13662,0.211445,0.598829,0.491585,0.70143,0.784439,0.0911414,0.484266,0.87565,0.495461,0.0270898,0.138425,0.681079,0.988845,0.698911,0.26935,0.143252,0.788612,0.301797,0.2384,0.583146,0.416224,0.135431,0.0150056,0.765244,0.601511,0.329505,0.85234,0.513724,0.0179958,0.487832,0.664393,0.137289,0.996378,0.289167,0.519702,0.72477,0.729772,0.772932,0.412931,0.21287,0.900847,0.685168,0.280153,0.688553,0.395371,0.714574,0.856497,0.74188,0.106834,0.287498,0.33746,0.202311,0.792214,0.162813,0.0191565,0.437206,0.199577,0.215546,0.534346,0.988173,0.602373,0.0227194,0.203818,0.142746,0.260116,0.800088,0.666179,0.0426024,0.263467,0.752789,0.947976,0.505253,0.250428,0.864569,0.560626,0.32651,0.733427,0.0744454,0.675337,0.993349,0.0596596,0.73195,0.841151,0.121547,0.0299903,0.391924,0.499236,0.299528,0.551995,0.0425882,0.554854,0.256,0.0334833,0.224566,0.44365,0.379168,0.12537,0.0969331,0.495227,0.28615,0.22658,0.58594,0.030977,0.0305258,0.42326,0.512602,0.00109679,0.325172,0.896915,0.917739,0.0274092,0.703596,0.634362,0.955432,0.974475,0.871705,0.560237,0.0303711,0.989478,0.458705,0.304881,0.286044,0.18695,0.550387,0.642632,0.00761312,0.535,0.0553678,0.385609,0.9973,0.730601,0.28844,0.833051,0.387856,0.963654,0.790897,0.4395,0.582371,0.366337,0.749786,0.796235,0.556721,0.651868,0.291239,0.894315,0.699088,0.784484,0.826379,0.477099,0.124253,0.0597512,0.825396,0.0165593,0.0443015,0.984734,0.449925,0.991368,0.199455,0.795809,0.398392,0.396106,0.716705,0.62711,0.118966,0.468779,0.365606,0.418176,0.208028,0.319583,0.309128,0.662731,0.926393,0.724667,0.748422,0.238145,0.858338,0.22774,0.52505,0.548838,0.343747,0.807324,0.527673,0.02507,0.689911,0.688801,0.471457,0.349934,0.701881,0.266476,0.552619,0.0477735,0.110968,0.820758,0.769644,0.891691,0.849512,0.709582,0.682516,0.734378,0.574369,0.711336,0.60748,0.0178326,0.311711,0.103135,0.213953,0.52346,0.243975,0.825028,0.781152,0.421831,0.965122,0.623624,0.42459,0.0976968,0.929555,0.881633,0.586802,0.129297,0.739065,0.905426,0.364176,0.423617,0.424818,0.851781,0.300485,0.487064,0.543481,0.777721,0.708818,0.259462,0.7771,0.347144,0.0363672,0.915129,0.593638,0.755853,0.453413,0.132555,0.83173,0.60943,0.225395,0.283714,0.884621,0.392259,0.332366,0.747586,0.427086,0.00806874,0.180576,0.0223904,0.590083,0.800663,0.473463,0.14093,0.665353,0.738467,0.401083,0.96478,0.372087,0.962276,0.474104,0.183164,0.950063,0.408227,0.986034,0.260859,0.625019,0.510733,0.569855,0.868725,0.13754,0.522498,0.0456076,0.700063,0.858337,0.490303,0.541448,0.638011,0.860861,0.741786,0.599099,0.0781526,0.269305,0.954219,0.231544,0.625333,0.512679,0.198425,0.653874,0.0383172,0.431643,0.807589,0.279054,0.305463,0.18374,0.372924,0.902039,0.0293629,0.23498,0.80814,0.263272,0.333343,0.43002,0.436168,0.821964,0.19258,0.634007,0.847783,0.0135493,0.709179,0.520531,0.255326,0.23829,0.643714,0.604213,0.58849,0.800449,0.378479,0.152192,0.890793,0.375356,0.49511,0.420919,0.369845,0.722461,0.809676,0.534475,0.0383927,0.0343149,0.609103,0.0534055,0.325087,0.255358,0.550177,0.837336,0.425264,0.483414,0.00176209,0.877556,0.10674,0.451618,0.683802,0.919381,0.986008,0.876218,0.135854,0.200487,0.587173,0.765426,0.307852,0.618382,0.216902,0.187555,0.131065,0.362464,0.523052,0.239759,0.881769,0.185635,0.710842,0.43384,0.71288,0.274312,0.73379,0.839731,0.88079,0.367247,0.72463,0.708434,0.103767,0.715223,0.400278,0.430364,0.0798315,0.510997,0.48706,0.987591,0.490796,0.527223,0.0549584,0.446235,0.626912,0.276177,0.125516,0.680244,0.513782,0.702417,0.404108,0.928676,0.345735,0.331086,0.912592,0.916572,0.644423,0.133287,0.379609,0.178396,0.730143,0.740125,0.583029,0.182892,0.201051,0.321578,0.459718,0.711656,0.681256,0.510265,0.813748,0.301103,0.972862,0.639671,0.458452,0.713877,0.941047,0.702201,0.772966,0.443295,0.779891,0.297599,0.872461,0.041208,0.95696,0.932861,0.93768,0.619468,0.832,0.793771,0.468326,0.856471,0.522115,0.466043,0.621675,0.724182,0.316376,0.969794,0.867613,0.190827,0.785668,0.277467,0.127243,0.83083,0.514686,0.876824,0.0761694,0.00606352,0.336634,0.995389,0.0446448,0.493832,0.54464,0.143036,0.624989,0.807074,0.183641,0.496434,0.230096,0.271926,0.502228,0.733111,0.102428,0.174939,0.150304,0.804503,0.390593,0.132307,0.500678,0.642453,0.650528,0.186612,0.836877,0.915134,0.985607,0.102134,0.938679,0.779575,0.556207,0.720619,0.583993,0.338365,0.952491,0.536441,0.446547,0.0135475,0.47754,0.144192,0.0962523,0.363881,0.112398,0.429792,0.15056,0.687281,0.940087,0.55839,0.667407,0.685746,0.195546,0.961138,0.296234,0.123984,0.189783,0.99483,0.43565,0.198841,0.872908,0.842218,0.991646,0.534558,0.0345904,0.960257,0.464838,0.742569,0.0483987,0.647156,0.869333,0.502923,0.919765,0.213957,0.81014,0.793673,0.538101,0.562143,0.0929943,0.944217,0.133791,0.401081,0.809048,0.11904,0.863419,0.249539,0.467145,0.682176,0.146018,0.820359,0.260274,0.667121,0.148208,0.132541,0.797291,0.349344,0.682842,0.0600842,0.603703,0.47129,0.308639,0.848376,0.593236,0.66998,0.418989,0.919213,0.0582253,0.329664,0.00943232,0.66967,0.92898,0.351811,0.526483,0.193778,0.77336,0.652111,0.913205,0.406129,0.0691963,0.909108,0.246998,0.431723,0.609754,0.819065,0.83901,0.875483,0.827076,0.833016,0.905484,0.0241636,0.193796,0.0412593,0.300325,0.136166,0.234504,0.597893,0.973642,0.060098,0.343233,0.673846,0.205816,0.388653,0.0599691,0.282409,0.573152,0.570271,0.591134,0.293327,0.93826,0.977764,0.777133,0.0238134,0.195922,0.0501851,0.819921,0.322318,0.614954,0.331446,0.899737,0.947471,0.0567648,0.298986,0.593202,0.00976396,0.146362,0.792208,0.916055,0.400396,0.285537,0.608,0.523841,0.307361,0.457191,0.944587,0.964548,0.71072,0.606664,0.589981,0.302782,0.218358,0.647324,0.79771,0.76512,0.978604,0.403494,0.149681,0.961586,0.0590222,0.887025,0.809166,0.647058,|0.531812,0.844041,0.393163,0.741704,0.688257,0.254402,0.729337,0.28682,0.649693,0.862142,0.94422,0.816392,0.437439,0.767308,0.644066,0.152572,0.150785,0.912337,0.120074,0.0649059,0.895342,0.698427,0.816845,0.880997,0.532883,0.96443,0.0698223,0.694192,0.336134,0.24094,0.261601,0.758975,0.773564,0.416467,0.697175,0.898119,0.0201284,0.110443,0.978283,0.788275,0.0709584,0.896009,0.0399328,0.833291,0.772137,0.834405,0.623699,0.531047,0.945627,0.485478,0.00734466,0.957375,0.505226,0.83968,0.25437,0.29967,0.24624,0.330053,0.877672,0.581593,0.750424,0.0865901,0.476703,0.668341,0.947899,0.303215,0.986428,0.134492,0.0528603,0.569834,0.235749,0.541675,0.231114,0.0448963,0.470973,0.651331,0.802875,0.574321,0.976581,0.637705,0.802577,0.527389,0.657689,0.735211,0.749656,0.937567,0.711245,0.510213,0.287248,0.960475,0.842577,0.157683,0.651012,0.363676,0.897259,0.360352,0.823906,0.526618,0.635999,0.508901,0.866295,0.217176,0.05856,0.157786,0.0553384,0.780625,0.677432,0.358931,0.595907,0.523152,0.473624,0.115591,0.929211,0.339604,0.389962,0.504824,0.183957,0.482902,0.811214,0.401592,0.180722,0.933112,0.711809,0.64594,0.557158,0.213646,0.218713,0.207066,0.766579,0.223842,0.138047,0.267248,0.0701723,0.0995579,0.611663,0.151715,0.648198,0.0287016,0.350477,0.844256,0.436134,0.56933,0.173162,0.325479,0.633218,0.443242,0.82622,0.151989,0.203935,0.415865,0.0438792,0.993256,0.920286,0.712975,0.111284,0.955149,0.247761,0.64017,0.531294,0.642928,0.954354,0.375154,0.0947125,0.17426,0.455406,0.514915,0.752436,0.996754,0.654,0.788969,0.808732,0.384976,0.781184,0.633213,0.197989,0.0551187,0.398742,0.721336,0.784681,0.518719,0.0583602,0.949557,0.949113,0.118116,0.494204,0.906737,0.832334,0.741244,0.666092,0.148421,0.434487,0.555517,0.920659,0.246512,0.0480672,0.941536,0.457905,0.739179,0.371234,0.363941,0.688298,0.388145,0.78308,0.846307,0.828588,0.462947,0.0567115,0.910818,0.257433,0.726665,0.233152,0.657604,0.823128,0.854219,0.107489,0.54232,0.572267,0.122536,0.042576,0.509325,0.0182212,0.409885,0.873317,0.17369,0.366354,0.400888,0.876731,0.433591,0.820618,0.950612,0.801459,0.699715,0.265402,0.445412,0.57849,0.626445,0.0153481,0.753857,0.831463,0.545772,0.715146,0.35483,0.826414,0.0041948,0.626464,0.897227,0.0923018,0.255766,0.101676,0.740891,0.128562,0.243517,0.722214,0.26591,0.801602,0.593349,0.740163,0.0850029,0.931872,0.480106,0.32378,0.555891,0.213919,0.203314,0.508709,0.862641,0.705852,0.1173,0.644163,0.724883,0.708081,0.245957,0.618955,0.800355,0.67266,0.485924,0.639417,0.600374,0.220818,0.864423,0.737568,0.00471371,0.711686,0.0853587,0.748956,0.00245696,0.268307,0.187314,0.00279462,0.319661,0.496822,0.914638,0.34359,0.504681,0.0483016,0.563883,0.726308,0.65312,0.594921,0.422236,0.256506,0.573828,0.65831,0.0970576,0.935025,0.940885,0.710446,0.961565,0.613314,0.171163,0.173432,0.705358,0.140367,0.801926,0.657272,0.755521,0.108778,0.106762,0.0163429,0.325039,0.902043,0.335768,0.536935,0.103554,0.201259,0.903426,0.0681772,0.125165,0.576507,0.028761,0.736604,0.896672,0.592511,0.704446,0.382019,0.79451,0.513565,0.308678,0.429598,0.228974,0.16875,0.28085,0.667144,0.371465,0.191034,0.233777,0.481853,0.252785,0.5989,0.296991,0.366775,0.00973678,0.579325,0.66022,0.530002,0.756136,0.350027,0.791671,0.186563,0.256766,0.425347,0.0465392,0.87018,0.685195,0.980311,0.18199,0.668204,0.964331,0.146653,0.92143,0.898187,0.0211096,0.342488,0.172631,0.349239,0.922346,0.837684,0.0740498,0.288869,0.27031,0.551522,0.420214,0.17249,0.89807,0.616702,0.913169,0.40024,0.0583978,0.888308,0.346336,0.534525,0.033644,0.278934,0.650211,0.471043,0.835087,0.599119,0.0518087,0.660562,0.115926,0.303026,0.680237,0.28308,0.958992,0.198277,0.562659,0.113561,0.0494174,0.75588,0.0309462,0.955234,0.909617,0.9446,0.771155,0.69926,0.954982,0.689028,0.436513,0.0848513,0.944976,0.626947,0.0155428,0.992731,0.0015651,0.318905,0.694704,0.474342,0.735017,0.137123,0.508595,0.578273,0.150359,0.370112,0.916814,0.975086,0.373961,0.976782,0.578784,0.593531,0.333459,0.385151,0.758581,0.674921,0.164617,0.224034,0.822037,0.451085,0.386688,0.0291955,0.0107258,0.796199,0.201896,0.34672,0.409152,0.469001,0.844776,0.772922,0.543582,0.622561,0.911399,0.99532,0.0806968,0.460455,0.506556,0.188079,0.320531,0.849846,0.901885,0.489159,0.0526506,0.998043,0.692182,0.400353,0.434449,0.954444,0.898918,0.158624,0.92697,0.728146,0.745019,0.600705,0.99805,0.423701,0.712052,0.949533,0.642781,0.426768,0.61025,0.120256,0.202283,0.27086,0.458195,0.0918148,0.396926,0.669588,0.961237,0.214135,0.407414,0.655787,0.0163869,0.330284,0.161951,0.633394,0.529887,0.761049,0.634442,0.699844,0.413853,0.74874,0.615038,0.599231,0.408033,0.737689,0.8465,0.265361,0.373591,0.112235,0.888175,0.161339,0.964682,0.591638,0.0890272,0.159176,0.141157,0.479171,0.504691,0.516995,0.835219,0.800094,0.730143,0.256893,0.491585,0.546661,0.623107,0.13803,0.086974,0.49356,0.517678,0.176317,0.655477,0.394843,0.94855,0.401143,0.379853,0.569472,0.547746,0.174899,0.644492,0.955159,0.808876,0.457528,0.427585,0.148739,0.19722,0.281088,0.0844666,0.465745,0.121068,0.177192,0.511369,0.531734,0.422311,0.933503,0.166499,0.832128,0.50955,0.390899,0.384776,0.682932,0.304388,0.0953963,0.494885,0.369255,0.324408,0.768086,0.510771,0.0839476,0.174001,0.914469,0.446673,0.189969,0.113886,0.109703,0.73338,0.351915,0.27759,0.650278,0.590595,0.596196,0.549306,0.893995,0.814455,0.928594,0.767404,0.711043,0.365916,0.854799,0.258028,0.925115,0.886187,0.606191,0.297727,0.99389,0.340502,0.860742,0.967557,0.886969,0.1926,0.188292,0.0404987,0.736714,0.364656,0.445734,0.229956,0.0636939,0.678357,0.361542,0.11885,0.336089,0.038977,0.807603,0.387433,0.502971,0.814498,0.12174,0.477522,0.598205,0.142637,0.882,0.691865,0.155622,0.59756,0.337192,0.441747,0.519445,0.942612,0.339462,0.451434,0.569431,0.882444,0.128155,0.807298,0.642773,0.359424,0.610796,0.0870768,0.340462,0.843116,0.348613,0.160705,0.570719,0.996047,0.772732,0.683836,0.85561,0.346104,0.803804,0.798354,0.525356,0.943988,0.218245,0.274548,0.783411,0.97298,0.584573,0.423464,0.308667,0.716205,0.597979,0.646964,0.688617,0.461482,0.33642,0.269394,0.467241,0.772563,0.793663,0.623574,0.0277137,0.616533,0.206132,0.661939,0.918874,0.75492,0.7826,0.293201,0.427601,0.926241,0.92687,0.366211,0.525967,0.797161,0.469164,0.638085,0.825669,0.857732,0.299313,0.0936456,0.146495,0.287201,0.366895,0.701153,0.997271,0.688669,0.351602,0.560302,0.052946,0.654669,0.508055,0.750756,0.778394,0.372971,0.375714,0.0359328,0.583422,0.124248,0.0994742,0.621057,0.331818,0.709192,0.304056,0.301307,0.875921,0.731077,0.750259,0.670538,0.903524,0.347481,0.471795,0.837453,0.90292,0.749038,0.888404,0.26983,0.779808,0.474414,0.321551,0.936472,0.831861,0.139273,0.666066,0.332653,0.929613,0.969821,0.408355,0.498632,0.526726,0.128091,0.0179099,0.305587,0.176047,0.726846,0.209994,0.404435,0.186096,0.939885,0.775884,0.613315,0.589367,0.778392,0.50588,0.609383,0.679417,0.553771,0.813449,0.0727707,0.0607824,0.169295,0.408076,0.146377,0.0246686,0.877052,0.890999,0.660697,0.267924,0.0878148,0.588178,0.69414,0.276932,0.866482,0.473,0.0297737,0.64282,0.446916,0.449421,0.642069,0.930534,0.81653,0.344404,0.946961,0.636159,0.461887,0.297365,0.794974,0.494652,0.708285,0.302095,0.154042,0.586925,0.312314,0.446788,0.29736,0.345274,0.657875,0.361222,0.989645,0.475694,0.978058,0.796903,0.469236,0.46278,0.240795,0.256051,0.211203,0.955415,0.134642,0.342055,0.890505,0.455548,0.0619597,0.855962,0.274755,0.962975,0.847841,0.131641,0.484406,0.110876,0.91329,0.227455,0.256741,0.295771,0.936501,0.264422,0.00708795,0.784617,0.930247,0.149228,0.750064,0.371945,0.923326,0.745515,0.439785,0.30987,0.281901,0.787057,0.447444,0.5699,0.597677,0.830954,0.300823,0.969986,0.290649,0.530994,0.185613,0.718144,0.194559,0.16375,0.726606,0.447909,0.796836,0.118712,0.526278,0.836051,0.284322,0.224182,0.394448,0.656234,0.867183,0.723667,0.294031,0.76567,0.0190477,0.61514,0.20229,0.450781,0.154539,0.194224,0.160537,0.366733,0.549728,0.701731,0.160599,0.232051,0.960832,0.96625,0.253201,0.747403,0.186169,0.894846,0.324742,0.405344,0.35159,0.665386,0.535259,0.21295,0.305023,0.631833,0.548575,0.495015,0.4008,0.725297,0.367571,0.484303,0.961572,0.113389,0.313417,0.842304,0.144785,0.0982206,0.112176,0.990243,0.770147,0.874025,0.746822,0.0134222,0.830509,0.58595,0.353671,0.262426,0.0103146,0.226431,0.095548,0.246423,0.755995,0.839302,0.570625,0.561693,0.980294,0.661004,0.554924,0.296585,0.413033,0.472191,0.521803,0.86288,0.765363,0.64671,0.40736,0.345877,0.653947,0.674895,0.517732,0.640083,0.584625,0.314864,0.630538,0.961365,0.282284,0.714807,0.626983,0.29312,0.0856957,0.708499,0.430119,0.172763,0.273863,0.801434,0.268636,0.231042,0.960275,0.0361426,0.0903788,0.898324,0.786445,0.960431,0.714306,0.494888,0.477298,0.686918,0.642349,0.992483,0.267813,0.895918,0.897268,0.386779,0.745665,0.434876,0.238561,0.439649,0.188234,0.495852,0.0852882,0.61106,0.200968,0.766492,0.320509,0.549493,0.04439,0.664137,0.554666,0.327968,0.560335,0.87448,0.812475,0.808477,0.649997,0.673756,0.963008,0.589539,0.232362,|0.629259,0.865567,0.362801,0.229838,0.461921,0.631477,0.841441,0.132841,0.668262,0.629438,0.28017,0.740379,0.874357,0.855139,0.80338,0.905594,0.00967926,0.33658,0.273775,0.59681,0.388529,0.655786,0.169033,0.732912,0.451671,0.748653,0.81055,0.171457,0.315954,0.307088,0.629691,0.263137,0.229213,0.781063,0.621763,0.669786,0.580706,0.451063,0.55346,0.745899,0.79175,0.439511,0.527655,0.216311,0.711948,0.647282,0.807165,0.995698,0.939328,0.334592,0.812165,0.404692,0.408292,0.905059,0.28769,0.763124,0.193746,0.00356483,0.17619,0.522818,0.910626,0.0245564,0.154991,0.493579,0.454455,0.081733,0.0726106,0.168334,0.0502762,0.606028,0.240851,0.90174,0.476691,0.765071,0.699208,0.232545,0.611158,0.311494,0.253426,0.015889,0.926685,0.080754,0.230012,0.159338,0.564288,0.712524,0.157139,0.549192,0.187526,0.239623,0.100741,0.304787,0.152425,0.0670553,0.743486,0.981048,0.538254,0.791306,0.867765,0.505352,0.707598,0.773808,0.888355,0.766096,0.968491,0.183605,0.537103,0.187704,0.161845,0.0439903,0.845861,0.860624,0.545456,0.594817,0.580321,0.708774,0.119185,0.738828,0.554142,0.294089,0.736805,0.15133,0.716537,0.2733,0.745391,0.622889,0.512907,0.425799,0.643218,0.043619,0.909364,0.303048,0.139324,0.463773,0.965216,0.0170145,0.749675,0.16678,0.450964,0.112773,0.539324,0.824305,0.87207,0.747751,0.345698,0.999313,0.126121,0.21534,0.6611,0.895007,0.0764544,0.89345,0.88425,0.773431,0.98029,0.825669,0.24332,0.713608,0.295056,0.857212,0.688386,0.617979,0.4273,0.912751,0.836307,0.0247484,0.320531,0.119433,0.405133,0.178587,0.587175,0.151585,0.529294,0.501006,0.251681,0.990957,0.183214,0.467442,0.15459,0.79703,0.446347,0.380029,0.625265,0.426505,0.49949,0.899432,0.848521,0.787302,0.643047,0.0557143,0.266208,0.95475,0.108848,0.75724,0.941073,0.843529,0.603823,0.965193,0.503001,0.241117,0.150938,0.24515,0.261058,0.843095,0.53171,0.77495,0.367514,0.760396,0.176037,0.167874,0.700743,0.91013,0.486165,0.461296,0.115858,0.824441,0.078024,0.374749,0.0263355,0.295572,0.913866,0.254832,0.845159,0.056792,0.132053,0.821151,0.690038,0.82925,0.460879,0.405379,0.854052,0.0324686,0.936122,0.0268231,0.477737,0.367565,0.884354,0.433692,0.832405,0.805593,0.684075,0.00536782,0.702108,0.278435,0.267105,0.516472,0.0996615,0.612924,0.789376,0.406861,0.0464819,0.00326377,0.285245,0.427243,0.665808,0.992818,0.255935,0.657515,0.995804,0.0264455,0.76751,0.205308,0.529071,0.618099,0.152986,0.0615959,0.845415,0.772901,0.0499967,0.648897,0.242169,0.843203,0.00443822,0.159024,0.876342,0.841239,0.617717,0.692852,0.0777028,0.360931,0.0607954,0.770355,0.716074,0.23427,0.198409,0.195743,0.0737278,0.765122,0.192426,0.761005,0.698514,0.0615852,0.371784,0.728503,0.765078,0.288708,0.913052,0.765942,0.186282,0.505336,0.394314,0.257687,0.316935,0.216348,0.365273,0.314393,0.171052,0.0637836,0.225514,0.248843,0.830391,0.839281,0.971836,0.771085,0.910671,0.48275,0.237444,0.534297,0.370487,0.679486,0.376744,0.925957,0.362479,0.389561,0.879349,0.699083,0.787656,0.379667,0.955383,0.582274,0.153281,0.730893,0.473192,0.308951,0.909028,0.338828,0.572495,0.794947,0.757827,0.481282,0.150238,0.261451,0.215352,0.382882,0.639912,0.274865,0.383922,0.291005,0.0689189,0.251752,0.934586,0.0801705,0.989359,0.239219,0.595084,0.410866,0.748226,0.257347,0.233334,0.463538,0.435394,0.118633,0.0270676,0.055684,0.393278,0.444194,0.854732,0.235832,0.00632882,0.62303,0.53913,0.324114,0.567755,0.695233,0.0667399,0.727264,0.908512,0.876456,0.245168,0.743074,0.845268,0.435015,0.172312,0.64085,0.291986,0.0586163,0.565872,0.373186,0.571797,0.466281,0.829703,0.800192,0.204279,0.901128,0.510539,0.309339,0.301614,0.0585259,0.824774,0.957848,0.636774,0.30931,0.0557804,0.199902,0.0283286,0.764961,0.0329185,0.470169,0.880365,0.593336,0.123038,0.845849,0.621019,0.559734,0.166385,0.214507,0.754375,0.659421,0.836447,0.995478,0.83657,0.0891374,0.300625,0.385006,0.789885,0.347384,0.458922,0.122786,0.535234,0.988017,0.222966,0.00281328,0.441651,0.242711,0.00983328,0.372499,0.494935,0.763826,0.326164,0.663585,0.444082,0.00413013,0.239007,0.525529,0.35655,0.442913,0.758347,0.432031,0.928835,0.272974,0.0838776,0.866054,0.910258,0.399743,0.189085,0.0537613,0.778637,0.514498,0.398005,0.208687,0.256265,0.196212,0.0859364,0.521038,0.532189,0.477241,0.245181,0.181135,0.728935,0.84864,0.300397,0.368554,0.599879,0.85068,0.677845,0.105186,0.551244,0.024393,0.306153,0.396935,0.0143078,0.575131,0.904105,0.441142,0.674754,0.389692,0.783338,0.397512,0.519963,0.375731,0.336271,0.427176,0.406381,0.23626,0.584931,0.568918,0.430287,0.502102,0.138478,0.894011,0.706962,0.5065,0.0454488,0.71063,0.186487,0.232516,0.676924,0.970974,0.778157,0.834812,0.340375,0.468861,0.962173,0.196567,0.365719,0.384816,0.9184,0.765269,0.101196,0.687783,0.554049,0.71619,0.767011,0.0191213,0.694225,0.181693,0.495788,0.465275,0.491882,0.515997,0.308724,0.107295,0.41612,0.360742,0.876289,0.688887,0.0154007,0.648466,0.613396,0.00796849,0.707194,0.926715,0.340542,0.290695,0.0647731,0.879558,0.0999208,0.84479,0.98832,0.83784,0.006706,0.686762,0.683989,0.448721,0.881328,0.364267,0.668784,0.622104,0.532303,0.804162,0.796867,0.654132,0.972753,0.327881,0.355938,0.213318,0.0152956,0.307981,0.290636,0.334053,0.953682,0.942302,0.149072,0.016571,0.816205,0.52529,0.49265,0.3879,0.688682,0.636057,0.975117,0.778207,0.421593,0.799802,0.747084,0.589245,0.692598,0.521591,0.48229,0.628916,0.872543,0.933238,0.686631,0.878388,0.264173,0.513401,0.0113899,0.716127,0.256392,0.798885,0.111936,0.478773,0.810416,0.840104,0.066303,0.262502,0.161284,0.822498,0.709032,0.701215,0.0953062,0.67964,0.810963,0.819482,0.541856,0.977047,0.894824,0.775533,0.966275,0.515434,0.0987729,0.839702,0.69448,0.876256,0.0876971,0.42144,0.159163,0.0227829,0.565305,0.892445,0.515819,0.125941,0.544615,0.0810777,0.943555,0.35404,0.374907,0.598176,0.983713,0.120723,0.619341,0.604535,0.555369,0.38512,0.642495,0.917461,0.00152683,0.188431,0.639396,0.760698,0.909712,0.772936,0.79342,0.328376,0.177587,0.350812,0.360099,0.445634,0.529898,0.527264,0.408807,0.125579,0.126223,0.599084,0.929794,0.811876,0.701407,0.0228044,0.952258,0.641904,0.0235098,0.749139,0.677399,0.660146,0.639232,0.911843,0.676385,0.357099,0.887555,0.33439,0.217633,0.326713,0.883108,0.905808,0.476286,0.159178,0.537029,0.836402,0.939675,0.914311,0.244816,0.627627,0.379996,0.053279,0.505882,0.205733,0.197287,0.790706,0.284128,0.629849,0.877951,0.859448,0.621998,0.419879,0.167981,0.118336,0.707165,0.877349,0.879682,0.477427,0.971281,0.123697,0.750392,0.151381,0.910874,0.940974,0.346576,0.59533,0.0827503,0.593112,0.0557722,0.904215,0.868222,0.785616,0.181163,0.335114,0.143962,0.744322,0.650161,0.19071,0.270683,0.504015,0.601694,0.798807,0.0807977,0.229383,0.990894,0.923182,0.737979,0.210259,0.465523,0.868618,0.624023,0.277014,0.26748,0.850075,0.520206,0.253486,0.032508,0.279223,0.409859,0.567819,0.67658,0.325727,0.446156,0.939852,0.187092,0.147512,0.622466,0.624208,0.597273,0.84367,0.33349,0.6499,0.0322271,0.798693,0.710387,0.909144,0.593761,0.00834751,0.944,0.324958,0.410335,0.225409,0.634783,0.744345,0.595577,0.993082,0.0537668,0.138314,0.178083,0.770554,0.380527,0.0596195,0.867024,0.408185,0.40374,0.400868,0.56722,0.421527,0.0138594,0.380263,0.897851,0.00184208,0.00273603,0.713468,0.583881,0.000269949,0.449273,0.14388,0.0635592,0.624049,0.50606,0.933125,0.148888,0.436517,0.960433,0.354093,0.629624,0.630253,0.392506,0.178978,0.679196,0.0522745,0.492186,0.248115,0.863758,0.609377,0.780639,0.687291,0.508413,0.267053,0.49556,0.126994,0.497653,0.118219,0.370148,0.699405,0.661713,0.501004,0.818482,0.50206,0.367639,0.850023,0.770885,0.35743,0.338252,0.464103,0.592922,0.688293,0.371312,0.870673,0.550419,0.669675,0.945779,0.605658,0.996011,0.460847,0.459707,0.526854,0.820765,0.368867,0.586535,0.818382,0.2878,0.748032,0.511657,0.603,0.379209,0.683165,0.240956,0.410089,0.587609,0.912864,0.413478,0.990053,0.84039,0.409238,0.381387,0.0705457,0.101436,0.0018121,0.0847128,0.844856,0.35152,0.520788,0.777873,0.123796,0.121441,0.480554,0.59008,0.292207,0.272665,0.637568,0.216396,0.482638,0.902427,0.246442,0.480043,0.155232,0.901858,0.799831,0.517983,0.0776249,0.906945,0.779032,0.104178,0.851817,0.253991,0.652007,0.737734,0.423785,0.214706,0.514707,0.916488,0.0384122,0.800849,0.026027,0.937172,0.570619,0.0783607,0.309625,0.268677,0.348436,0.79154,0.251604,0.496276,0.74921,0.192693,0.502031,0.347946,0.472658,0.731474,0.993453,0.240135,0.859641,0.348119,0.114217,0.357653,0.272685,0.0568066,0.214463,0.0338537,0.210917,0.951623,0.866533,0.68238,0.54007,0.643006,0.302313,0.420067,0.945636,0.258809,0.805755,0.402872,0.20019,0.748357,0.205655,0.588001,0.836936,0.69461,0.405163,0.413366,0.863739,0.768566,0.640152,0.818125,0.968791,0.262451,0.292378,0.14722,0.512597,0.0985617,0.0962964,0.421282,0.597403,0.0194858,0.857781,0.258888,0.072202,0.231902,0.0615643,0.991125,0.294642,0.940864,0.388263,0.801512,0.474225,0.66165,0.978651,0.448922,0.169599,0.168909,0.537758,0.792125,0.578822,0.863889,0.732577,0.93268,0.0197365,0.37209,0.20636,0.873109,0.894736,0.11335,0.283816,0.900885,0.748036,0.889859,0.124056,|0.800499,0.474638,0.856722,0.341462,0.346953,0.301582,0.104403,0.114091,0.34264,0.0449271,0.370433,0.623992,0.094085,0.746814,0.547097,0.911644,0.392618,0.904183,0.702844,0.398992,0.0921975,0.805439,0.21032,0.0610469,0.318646,0.56245,0.710427,0.828093,0.34411,0.140893,0.426447,0.787597,0.659116,0.367531,0.716777,0.476042,0.392498,0.573358,0.621869,0.279001,0.324391,0.310043,0.00922406,0.181318,0.600881,0.922967,0.443091,0.588159,0.311002,0.828542,0.27059,0.928334,0.839375,0.227426,0.662964,0.237669,0.58187,0.53907,0.106176,0.177606,0.269058,0.63891,0.898213,0.690433,0.324582,0.364053,0.0426424,0.154357,0.62381,0.615585,0.515296,0.983851,0.0357547,0.255454,0.316883,0.713422,0.418122,0.63199,0.797686,0.235386,0.694988,0.374965,0.784378,0.136256,0.851951,0.725209,0.690629,0.772984,0.619474,0.717708,0.587127,0.990753,0.044615,0.810808,0.948427,0.935781,0.410284,0.884944,0.62088,0.0452272,0.910512,0.967819,0.515472,0.39442,0.773299,0.505491,0.083134,0.825076,0.486826,0.577961,0.340619,0.672657,0.398797,0.353242,0.580721,0.629959,0.978636,0.592816,0.212452,0.330692,0.577706,0.203827,0.651285,0.286197,0.392587,0.95134,0.27202,0.186136,0.752716,0.311816,0.864356,0.537329,0.513939,0.940729,0.594039,0.886249,0.168033,0.177531,0.576753,0.197672,0.526357,0.770252,0.577111,0.120645,0.556773,0.134796,0.907401,0.265486,0.532379,0.13324,0.610766,0.851775,0.217997,0.847517,0.670752,0.971227,0.499413,0.864732,0.290694,0.919855,0.737049,0.230904,0.469142,0.978981,0.0395174,0.807732,0.891034,0.0713111,0.917844,0.961189,0.709229,0.852421,0.346428,0.356119,0.698949,0.0661122,0.951735,0.134055,0.423935,0.775852,0.177349,0.369268,0.905571,0.128712,0.818431,0.166356,0.050316,0.248515,0.938832,0.527338,0.670724,0.0521312,0.928823,0.194868,0.688496,0.345355,0.0426351,0.230239,0.269792,0.957628,0.0885352,0.278643,0.721708,0.722366,0.364283,0.137136,0.855339,0.439424,0.272372,0.430953,0.321585,0.514459,0.565407,0.821537,0.735931,0.128348,0.49943,0.546181,0.237993,0.818023,0.810706,0.0338037,0.146877,0.145612,0.614903,0.924077,0.791374,0.212096,0.815929,0.683488,0.557474,0.204327,0.852587,0.293144,0.5795,0.604555,0.262623,0.242244,0.368176,0.627747,0.581199,0.185054,0.978568,0.967619,0.462544,0.129941,0.645453,0.466243,0.525996,0.698415,0.141954,0.794269,0.813286,0.269816,0.319419,0.895431,0.576563,0.550664,0.261065,0.627999,0.819108,0.695185,0.419621,0.542241,0.0241494,0.65197,0.811382,0.542854,0.87136,0.805076,0.386443,0.496521,0.48934,0.645253,0.899554,0.0949703,0.667965,0.0627698,0.796609,0.413202,0.669477,0.400195,0.533593,0.730545,0.802701,0.531547,0.133377,0.141243,0.64229,0.615111,0.901885,0.890935,0.964488,0.728978,0.969641,0.358417,0.372056,0.143142,0.890554,0.314424,0.930239,0.705408,0.736983,0.575705,0.60074,0.143755,0.643833,0.945843,0.3793,0.985034,0.598657,0.72492,0.835997,0.955221,0.409939,0.846821,0.733692,0.446287,0.807391,0.933385,0.639699,0.628232,0.833016,0.332008,0.00763679,0.0638532,0.556393,0.58411,0.903449,0.335181,0.75289,0.187211,0.829166,0.704104,0.606694,0.133762,0.255984,0.842871,0.345305,0.0667408,0.839991,0.269146,0.144027,0.502068,0.574292,0.330049,0.890688,0.897266,0.505767,0.521775,0.293885,0.438927,0.442682,0.649551,0.495395,0.813381,0.125784,0.374421,0.839787,0.428446,0.310969,0.609336,0.228193,0.725185,0.859485,0.859004,0.567987,0.395036,0.174303,0.605719,0.35727,0.578799,0.539385,0.530731,0.654107,0.173643,0.377892,0.577358,0.861746,0.549791,0.362694,0.070689,0.588525,0.352338,0.455895,0.321766,0.892061,0.497454,0.500773,0.989906,0.0721842,0.483726,0.981767,0.515024,0.120658,0.223984,0.535862,0.281256,0.0723876,0.395543,0.806582,0.416883,0.822723,0.606659,0.130528,0.936279,0.163277,0.0812364,0.329497,0.956619,0.236623,0.65218,0.5959,0.381914,0.405864,0.151845,0.740106,0.560594,0.44511,0.511001,0.775075,0.457292,0.854699,0.6534,0.822365,0.310072,0.0516891,0.615549,0.711707,0.825723,0.150386,0.855712,0.0327013,0.0434006,0.264613,0.295606,0.938478,0.155988,0.51484,0.319577,0.544571,0.916165,0.512333,0.260682,0.87558,0.232748,0.19592,0.327622,0.400869,0.66169,0.64382,0.407641,0.359657,0.157054,0.0437021,0.548108,0.541612,0.289758,0.0289451,0.222474,0.905639,0.121562,0.229769,0.387833,0.0246585,0.170374,0.45847,0.758224,0.704894,0.960821,0.594026,0.787894,0.150542,0.853078,0.873914,0.0132027,0.691761,0.569287,0.612976,0.167585,0.732677,0.438684,0.147053,0.340602,0.474999,0.923571,0.512749,0.669159,0.419382,0.258092,0.337153,0.441985,0.420286,0.00234503,0.748156,0.488442,0.579369,0.135281,0.206077,0.680717,0.343919,0.599124,0.840394,0.556389,0.954015,0.32574,0.187551,0.562132,0.443077,0.522639,0.366838,0.767133,0.441121,0.481545,0.218681,0.306318,0.614158,0.293522,0.310649,0.383795,0.998198,0.750135,0.598409,0.279279,0.43106,0.862028,0.70662,0.73167,0.996377,0.679981,0.501794,0.423955,0.164757,0.585203,0.085631,0.0197141,0.478149,0.676863,0.00164801,0.0799679,0.941128,0.00680429,0.420434,0.00484103,0.454992,0.141271,0.862456,0.654515,0.877079,0.880753,0.286252,0.0291926,0.344704,0.122961,0.198812,0.146859,0.506256,0.098469,0.579698,0.610482,0.730656,0.0932271,0.0699144,0.0977169,0.148652,0.420513,0.887725,0.508188,0.633893,0.932939,0.178178,0.134867,0.207735,0.791826,0.0613782,0.48677,0.479007,0.610361,0.0998276,0.984726,0.193504,0.721734,0.504226,0.886961,0.989935,0.486037,0.503222,0.632579,0.658913,0.734112,0.462594,0.595691,0.937586,0.54965,0.104442,0.584798,0.246185,0.676214,0.441168,0.134992,0.0722924,0.839577,0.862943,0.507487,0.00362879,0.894455,0.544265,0.18792,0.298564,0.512138,0.66225,0.699007,0.227717,0.746298,0.905215,0.38703,0.0686501,0.811156,0.613614,0.296286,0.610704,0.338946,0.288033,0.646142,0.22563,0.611499,0.0914937,0.46568,0.989218,0.696445,0.210758,0.330586,0.271428,0.993927,0.0481376,0.589244,0.20559,0.123697,0.941016,0.404156,0.00968152,0.132916,0.182336,0.628783,0.501988,0.50638,0.482848,0.193715,0.744598,0.789673,0.414357,0.0841119,0.881805,0.593238,0.0683509,0.880283,0.499453,0.903034,0.0911555,0.750711,0.513844,0.0760491,0.501255,0.944441,0.712413,0.803996,0.518498,0.777205,0.533137,0.545046,0.190821,0.274554,0.092764,0.712941,0.31192,0.295156,0.805744,0.47303,0.769033,0.544507,0.747327,0.0483629,0.905052,0.990133,0.234365,0.705932,0.951505,0.607579,0.0593432,0.596848,0.932249,0.755789,0.203196,0.966613,0.0679381,0.632114,0.0944511,0.398567,0.499172,0.281195,0.816015,0.344021,0.265626,0.311053,0.810561,0.77511,0.797288,0.615925,0.900766,0.608372,0.738041,0.811061,0.308762,0.989873,0.198694,0.293069,0.700458,0.43913,0.752087,0.42054,0.0146427,0.0179157,0.276632,0.728112,0.661665,0.695146,0.544903,0.229008,0.817441,0.218381,0.0866109,0.490676,0.152577,0.406695,0.208517,0.773985,0.95332,0.577964,0.261178,0.60732,0.339716,0.781816,0.865895,0.135556,0.48732,0.395727,0.045386,0.697848,0.833776,0.635218,0.493578,0.033859,0.236532,0.114228,0.635028,0.0242869,0.729108,0.68115,0.234569,0.107243,0.326001,0.601199,0.522899,0.248883,0.532468,0.46355,0.735713,0.0425187,0.954413,0.992971,0.954367,0.595041,0.168491,0.572166,0.572071,0.265168,0.932059,0.490958,0.251774,0.715727,0.499936,0.14812,0.703747,0.89799,0.493068,0.899112,0.784373,0.472943,0.068027,0.489737,0.75082,0.578138,0.834101,0.687659,0.748662,0.191106,0.822887,0.899884,0.389088,0.755766,0.733106,0.35096,0.344372,0.849311,0.907183,0.850127,0.0235271,0.887407,0.242656,0.443362,0.0329841,0.235763,0.429522,0.0192917,0.183459,0.924563,0.204139,0.0336754,0.123781,0.119645,0.257839,0.531624,0.853478,0.117708,0.97702,0.0244199,0.394675,0.796485,0.296457,0.875655,0.827597,0.17124,0.951546,0.782229,0.899753,0.614873,0.306316,0.499552,0.149542,0.668613,0.711032,0.537475,0.924239,0.25761,0.34362,0.845684,0.379952,0.654286,0.825739,0.303818,0.248854,0.619276,0.425571,0.581177,0.367258,0.936494,0.641521,0.645548,0.275305,0.805779,0.194305,0.169921,0.696626,0.808509,0.966295,0.429599,0.528349,0.156848,0.817427,0.962045,0.314805,0.943267,0.604959,0.307942,0.7191,0.706401,0.277935,0.875404,0.681186,0.599028,0.222401,0.403744,0.169117,0.481957,0.751875,0.379916,0.938059,0.403954,0.853299,0.899262,0.918581,0.990797,0.911215,0.0861438,0.500379,0.105902,0.396262,0.256804,0.845347,0.06354,0.0393685,0.166813,0.488513,0.271683,0.15864,0.744363,0.147231,0.11937,0.897418,0.344315,0.00617844,0.660124,0.555027,0.428404,0.634023,0.281685,0.829868,0.133706,0.599974,0.935982,0.736524,0.432381,0.671573,0.849576,0.272856,0.986891,0.837373,0.406907,0.199843,0.916996,0.917444,0.94221,0.64001,0.947426,0.308135,0.966866,0.51282,0.324907,0.314091,0.458132,0.219691,0.917985,0.840726,0.897718,0.355863,0.513856,0.677144,0.298074,0.609796,0.303817,0.00508225,0.062199,0.364227,0.455056,0.596768,0.961299,0.465108,0.369966,0.894386,0.504884,0.951524,0.583148,0.952881,0.241723,0.720783,0.329262,0.391342,0.0371642,0.306109,0.315089,0.636495,0.364786,0.938606,0.743626,0.33987,0.650285,0.742132,0.0411254,0.289039,0.717121,0.170815,0.743432,0.376764,0.54955,0.901305,0.0193732,0.972468,0.615927,0.413515,0.100564,0.00381309,0.428325,0.269794,0.679876,0.098174,0.162108,0.859285,0.245331,0.513072,0.125849,|0.500519,0.380294,0.22838,0.798531,0.933455,0.276739,0.396844,0.0786453,0.657093,0.644189,0.89695,0.505978,0.51666,0.385786,0.716967,0.0288777,0.184891,0.162933,0.595498,0.370576,0.683353,0.125152,0.357149,0.839274,0.634729,0.686772,0.776902,0.217578,0.205183,0.122178,0.437161,0.221649,0.310524,0.607315,0.487648,0.783438,0.0468985,0.695363,0.919156,0.442696,0.638307,0.67419,0.701593,0.753675,0.814662,0.168247,0.325145,0.479654,0.950756,0.110118,0.598299,0.749416,0.685123,0.860911,0.82005,0.00955003,0.234375,0.0605659,0.297209,0.217968,0.449867,0.645263,0.674563,0.652418,0.00832969,0.801999,0.893168,0.466308,0.857604,0.67973,0.456318,0.939665,0.190801,0.62259,0.501909,0.671224,0.211615,0.0842589,0.866567,0.0542474,0.121774,0.180982,0.478174,0.589778,0.955815,0.946238,0.182607,0.153108,0.696334,0.537628,0.388014,0.841693,0.139294,0.454174,0.997301,0.29903,0.774697,0.294714,0.548506,0.755688,0.364172,0.920108,0.356134,0.241794,0.509891,0.150217,0.218741,0.937455,0.452441,0.739248,0.352919,0.178076,0.748215,0.253808,0.239736,0.765644,0.42452,0.456602,0.970038,0.698936,0.331115,0.428447,0.819228,0.702563,0.366499,0.528223,0.242923,0.471232,0.322094,0.497348,0.969637,0.279356,0.871227,0.625892,0.967046,0.158529,0.276846,0.630552,0.909023,0.6499,0.0482724,0.247172,0.53412,0.526362,0.784014,0.904043,0.566669,0.668943,0.00830173,0.0132561,0.523088,0.860237,0.112597,0.163495,0.195938,0.145425,0.507948,0.129123,0.858887,0.971641,0.58547,0.558111,0.593779,0.800797,0.769965,0.275157,0.490628,0.623183,0.754896,0.96895,0.231887,0.0474872,0.940709,0.15727,0.098953,0.457017,0.600998,0.870583,0.175138,0.472149,0.331617,0.836804,0.740651,0.176747,0.381543,0.388332,0.587769,0.965333,0.584851,0.930828,0.672982,0.147317,0.266921,0.853884,0.183349,0.348612,0.676472,0.625772,0.940872,0.95443,0.973797,0.15978,0.830966,0.399976,0.311225,0.885706,0.164721,0.489547,0.659369,0.544448,0.33887,0.548053,0.790443,0.931743,0.725109,0.68134,0.205338,0.737566,0.957118,0.542138,0.711174,0.671632,0.0599486,0.330829,0.241086,0.0406105,0.0253191,0.66732,0.813734,0.838582,0.341298,0.996249,0.667936,0.311516,0.768869,0.492225,0.541217,0.351521,0.999702,0.031654,0.207733,0.968057,0.412238,0.984501,0.0723819,0.465784,0.75855,0.339553,0.505108,0.455312,0.191615,0.585975,0.587383,0.611324,0.128946,0.488445,0.647556,0.014344,0.0646104,0.881381,0.323162,0.0784338,0.108542,0.252902,0.297463,0.0753272,0.739195,0.725705,0.100961,0.215409,0.65403,0.863406,0.803941,0.905687,0.839912,0.808429,0.21441,0.999611,0.67108,0.799952,0.709436,0.909211,0.675664,0.646526,0.728819,0.513257,0.0837062,0.657691,0.516078,0.214575,0.695152,0.458709,0.669386,0.221886,0.600626,0.568455,0.18516,0.509275,0.182048,0.419148,0.877355,0.538924,0.45101,0.323002,0.671029,0.759373,0.986658,0.701842,0.933778,0.4869,0.421741,0.623148,0.849311,0.269027,0.364739,0.286648,0.991789,0.067183,0.445123,0.898682,0.195407,0.724376,0.431678,0.728068,0.510894,0.166015,0.631487,0.308323,0.0412468,0.617214,0.272723,0.861288,0.843978,0.0124903,0.846579,0.775295,0.955755,0.706586,0.915415,0.0743418,0.19931,0.0657024,0.403296,0.230959,0.823914,0.891778,0.226313,0.785948,0.780277,0.18107,0.515019,0.790067,0.0929141,0.0901907,0.579275,0.650595,0.536996,0.177434,0.183169,0.0507308,0.33971,0.743511,0.124633,0.0130724,0.777389,0.404459,0.218786,0.0808122,0.212387,0.594569,0.89571,0.928753,0.0471488,0.643239,0.434399,0.979053,0.177316,0.881045,0.5639,0.47413,0.78849,0.905065,0.896408,0.129181,0.483783,0.807865,0.303842,0.162469,0.312365,0.114012,0.585272,0.626676,0.848395,0.671502,0.720961,0.57104,0.403881,0.92328,0.378201,0.0991896,0.695133,0.563007,0.777885,0.621373,0.801384,0.972866,0.0581295,0.0936457,0.119666,0.795478,0.0499057,0.245376,0.210852,0.936542,0.946104,0.533848,0.00830424,0.856221,0.625618,0.650884,0.981278,0.935656,0.520983,0.280138,0.877252,0.120873,0.823787,0.599104,0.170173,0.94327,0.614341,0.264646,0.337302,0.966996,0.585184,0.468282,0.0501772,0.923359,0.921096,0.757859,0.635524,0.901982,0.0374722,0.299767,0.762537,0.841249,0.428704,0.519793,0.711339,0.662817,0.276724,0.355891,0.357135,0.90525,0.913971,0.114475,0.648035,0.359516,0.129818,0.235487,0.685212,0.734677,0.49812,0.90831,0.87284,0.168593,0.179863,0.801232,0.81187,0.291646,0.68314,0.593069,0.946199,0.593934,0.118143,0.643965,0.71317,0.256568,0.300667,0.158139,0.924579,0.303734,0.162144,0.774961,0.37322,0.263815,0.879027,0.426085,0.501065,0.236017,0.9705,0.925332,0.401216,0.366223,0.67175,0.12855,0.451984,0.0766893,0.666583,0.642424,0.649427,0.960477,0.680337,0.199811,0.389494,0.0485895,0.555645,0.329384,0.832775,0.932083,0.875624,0.0575099,0.544685,0.276758,0.145493,0.958307,0.328955,0.59732,0.426847,0.864605,0.336292,0.603699,0.0961444,0.718014,0.0182086,0.638792,0.134731,0.139366,0.831714,0.582761,0.828123,0.190672,0.936738,0.227014,0.214938,0.018159,0.42468,0.889171,0.366025,0.424505,0.632359,0.118014,0.35077,0.352432,0.942609,0.791565,0.820353,0.0722042,0.265826,0.710852,0.931872,0.606309,0.137703,0.327884,0.0969846,0.905045,0.19292,0.378426,0.983869,0.692641,0.762403,0.25482,0.741274,0.318758,0.848799,0.915131,0.92766,0.249912,0.273917,0.180244,0.620624,0.642096,0.377977,0.483201,0.231169,0.708017,0.182611,0.971995,0.0471709,0.81134,0.409784,0.529833,0.17486,0.241459,0.337016,0.819228,0.87582,0.179566,0.378032,0.425741,0.750771,0.623327,0.0160945,0.62275,0.309985,0.994394,0.704775,0.73615,0.37277,0.991088,0.683873,0.560743,0.726036,0.985316,0.0877907,0.377585,0.983359,0.263415,0.38308,0.869069,0.393811,0.85967,0.1887,0.488227,0.592326,0.68156,0.750923,0.868478,0.640454,0.730919,0.0152385,0.451511,0.962807,0.465808,0.638583,0.0662893,0.958647,0.0912067,0.165038,0.593965,0.615828,0.709867,0.88961,0.313732,0.953912,0.323953,0.928024,0.517903,0.0739007,0.784482,0.944314,0.951486,0.295165,0.400101,0.0303589,0.11549,0.648907,0.346148,0.768135,0.0233947,0.125681,0.703063,0.169001,0.255009,0.228904,0.900587,0.795787,0.886757,0.0185024,0.122133,0.277748,0.810387,0.401213,0.577581,0.828876,0.792987,0.723251,0.0412025,0.352218,0.194235,0.741809,0.0976124,0.751291,0.829956,0.376807,0.149207,0.834252,0.0226527,0.770253,0.116751,0.387958,0.348342,0.640676,0.610086,0.251094,0.640433,0.330408,0.7423,0.0183877,0.552811,0.0506029,0.832224,0.496826,0.341302,0.635727,0.801791,0.489182,0.0537408,0.195256,0.811151,0.677923,0.0988069,0.772288,0.994661,0.435148,0.273332,0.259019,0.46237,0.733215,0.976935,0.890684,0.141266,0.612977,0.646981,0.243302,0.922294,0.123668,0.126898,0.333959,0.955602,0.334693,0.747722,0.894669,0.544377,0.751663,0.343314,0.365249,0.855082,0.714249,0.293977,0.741532,0.400901,0.882666,0.675848,0.735397,0.878135,0.357186,0.161863,0.241827,0.319533,0.367295,0.742169,0.511681,0.0109833,0.282229,0.162077,0.462247,0.951558,0.59047,0.883657,0.975338,0.601487,0.873054,0.595155,0.184249,0.261619,0.972122,0.971636,0.0461888,0.287671,0.922065,0.226236,0.619204,0.00223607,0.56145,0.171631,0.167372,0.903398,0.599646,0.0137787,0.949528,0.727356,0.546986,0.959978,0.99076,0.196118,0.00197119,0.867568,0.366531,0.833635,0.596188,0.939205,0.215827,0.196329,0.103111,0.6601,0.00118792,0.11638,0.0730224,0.272386,0.256614,0.0715185,0.0958531,0.452464,0.133408,0.333031,0.603557,0.0111541,0.198342,0.145446,0.0890573,0.719147,0.987444,0.23004,0.942982,0.767636,0.582675,0.0631758,0.114203,0.200017,0.444593,0.970429,0.438993,0.157173,0.32817,0.953447,0.0120444,0.497086,0.899183,0.687923,0.514626,0.446415,0.39294,0.146788,0.745678,0.00596726,0.590269,0.223265,0.370246,0.125156,0.041012,0.933336,0.955287,0.657119,0.22474,0.734422,0.782275,0.214941,0.222543,0.943096,0.315138,0.924709,0.511171,0.94793,0.585586,0.159552,0.0232683,0.242379,0.435972,0.846648,0.462042,0.720222,0.849834,0.675456,0.13417,0.539739,0.130931,0.94234,0.676145,0.298692,0.452397,0.876391,0.26864,0.912509,0.671216,0.742782,0.56377,0.022191,0.223197,0.929082,0.0356817,0.217493,0.266609,0.710356,0.462468,0.892033,0.383879,0.538325,0.612665,0.42595,0.950093,0.36942,0.232262,0.346881,0.52274,0.747871,0.736608,0.648923,0.613362,0.934854,0.692452,0.186079,0.642923,0.154283,0.712539,0.912155,0.109122,0.530204,0.509407,0.666477,0.0898608,0.822344,0.566616,0.57071,0.260504,0.638039,0.0988234,0.1831,0.386751,0.265242,0.551371,0.367634,0.43972,0.901257,0.595496,0.416082,0.0710602,0.609423,0.74711,0.31077,0.801781,0.450851,0.62803,0.00338858,0.228971,0.916297,0.170409,0.0379095,0.139904,0.749306,0.68474,0.623318,0.249928,0.954627,0.096878,0.797697,0.643481,0.999007,0.509018,0.698398,0.100263,0.869793,0.28638,0.664722,0.531547,0.245426,0.0176525,0.547573,0.344858,0.559227,0.0104329,0.509054,0.988993,0.263089,0.0552572,0.1877,0.53073,0.665449,0.304213,0.0372474,0.0599215,0.0524462,0.436856,0.988944,0.379768,0.226014,0.463183,0.447716,0.843723,0.921934,0.584097,0.153692,0.0234988,0.4603,0.521196,0.204774,0.648836,0.924783,0.828892,0.601731,0.135047,0.643565,0.155685,0.422059,0.662405,0.36374,0.7478,0.978633,0.554855,0.751838,0.190545,0.960531,0.279749,0.273998,0.379863,0.085905,0.796616,0.897587,0.347179,0.427742,|0.810325,0.937248,0.99477,0.471328,0.0725057,0.00292093,0.267591,0.621189,0.492749,0.315332,0.633156,0.000929534,0.155346,0.866056,0.882915,0.146208,0.20549,0.524267,0.679903,0.379551,0.458967,0.683855,0.443551,0.040977,0.313481,0.138674,0.469333,0.649967,0.0274218,0.831199,0.140702,0.630926,0.245749,0.910256,0.847718,0.612276,0.460053,0.341189,0.528213,0.179644,0.659686,0.453036,0.694921,0.100438,0.526377,0.574127,0.149878,0.577313,0.279338,0.449881,0.869104,0.651675,0.425761,0.499835,0.791698,0.729208,0.89491,0.807128,0.174137,0.285525,0.677755,0.536798,0.674948,0.0206288,0.477771,0.321875,0.433478,0.163595,0.947152,0.937359,0.535508,0.125095,0.429605,0.584766,0.924647,0.232189,0.926162,0.686717,0.839621,0.298004,0.983766,0.444586,0.502369,0.336078,0.123181,0.758199,0.0475614,0.902833,0.802841,0.039919,0.0620964,0.174375,0.0387225,0.910253,0.0331484,0.951997,0.8132,0.290518,0.589473,0.978661,0.639903,0.430837,0.555858,0.51817,0.566986,0.129291,0.181935,0.0731167,0.142196,0.982689,0.179411,0.478494,0.689884,0.837844,0.263133,0.928554,0.394459,0.855626,0.500635,0.590274,0.68817,0.472839,0.632303,0.289101,0.673226,0.726726,0.149815,0.509234,0.428517,0.986546,0.846134,0.571938,0.386209,0.697191,0.646623,0.492139,0.431108,0.691474,0.441536,0.762083,0.557493,0.764411,0.596042,0.29395,0.585596,0.396243,0.0460829,0.787956,0.342831,0.509341,0.394099,0.954701,0.0434734,0.163235,0.420741,0.050724,0.224065,0.384907,0.474636,0.596032,0.624298,0.925115,0.95029,0.0656751,0.813945,0.0964975,0.331763,0.99167,0.351673,0.905128,0.579463,0.499224,0.811763,0.907685,0.501438,0.88887,0.536391,0.808701,0.0500606,0.603167,0.933649,0.809682,0.605739,0.674775,0.0451502,0.96639,0.237076,0.220642,0.669641,0.57752,0.236051,0.828248,0.908951,0.665765,0.0856225,0.16591,0.141142,0.867955,0.966607,0.90612,0.418321,0.0955868,0.828342,0.394553,0.274065,0.00981182,0.00418973,0.873857,0.448917,0.188581,0.895988,0.550407,0.76895,0.29016,0.570431,0.438647,0.772693,0.459371,0.427699,0.100005,0.878116,0.805029,0.92918,0.651894,0.970021,0.664707,0.469607,0.40426,0.413292,0.639216,0.375516,0.799912,0.964172,0.0216608,0.094067,0.286116,0.382997,0.75787,0.110522,0.179426,0.834959,0.53838,0.360693,0.433524,0.802229,0.0340747,0.149022,0.122857,0.701223,0.401327,0.14531,0.0384485,0.696039,0.272991,0.648009,0.585093,0.11909,0.878076,0.0488572,0.227632,0.424712,0.0101612,0.541472,0.223476,0.805547,0.44678,0.683383,0.34488,0.747922,0.548726,0.141029,0.907362,0.160074,0.668981,0.30041,0.153883,0.999822,0.0116136,0.211481,0.779764,0.335903,0.247593,0.318282,0.55934,0.185508,0.575725,0.657088,0.344289,0.440664,0.82756,0.474557,0.501304,0.304972,0.577461,0.82286,0.631397,0.637669,0.977019,0.934511,0.140431,0.015729,0.702072,0.152847,0.0507587,0.333538,0.196633,0.325911,0.266144,0.959741,0.372785,0.0695537,0.281788,0.38813,0.798132,0.0175117,0.805282,0.966264,0.100331,0.0867452,0.246184,0.20651,0.187056,0.056555,0.641011,0.708694,0.682964,0.441313,0.802742,0.505449,0.531348,0.954493,0.480947,0.128415,0.0932208,0.561921,0.0439216,0.183277,0.0823634,0.789649,0.978808,0.399048,0.510831,0.594697,0.955682,0.761245,0.929926,0.475003,0.720639,0.193608,0.658686,0.210691,0.189365,0.151347,0.445234,0.976032,0.617192,0.689727,0.685651,0.0748163,0.427993,0.766395,0.10835,0.171467,0.673822,0.803156,0.640392,0.668665,0.190499,0.268924,0.684405,0.869965,0.315588,0.751198,0.586871,0.590955,0.842239,0.0176046,0.31627,0.446411,0.594781,0.104654,0.423121,0.540381,0.774967,0.678852,0.396628,0.117539,0.909384,0.82462,0.895316,0.523663,0.0936345,0.119356,0.591455,0.649879,0.557949,0.574373,0.333796,0.629729,0.827796,0.0225087,0.948908,0.870277,0.509202,0.894432,0.637728,0.352679,0.458113,0.80749,0.996856,0.0149356,0.0909489,0.0865837,0.417851,0.814198,0.941095,0.211849,0.769599,0.545712,0.618029,0.691229,0.701261,0.199908,0.138906,0.214779,0.41727,0.484806,0.240416,0.0986097,0.184239,0.22972,0.0610439,0.440125,0.272838,0.975797,0.510916,0.196821,0.956664,0.93826,0.926304,0.639247,0.804161,0.842341,0.673912,0.196048,0.471705,0.568199,0.356088,0.0345487,0.551831,0.530592,0.342651,0.742595,0.0840473,0.545368,0.0775601,0.342979,0.551086,0.247611,0.623765,0.0496663,0.0263345,0.628925,0.452707,0.0857181,0.190864,0.302476,0.592572,0.270548,0.504981,0.611947,0.441101,0.0491124,0.879843,0.447582,0.420389,0.89788,0.823489,0.157552,0.408099,0.624838,0.544957,0.552083,0.332083,0.54887,0.292725,0.725359,0.262943,0.504478,0.901222,0.646412,0.466874,0.367994,0.95744,0.852681,0.453003,0.052249,0.862723,0.00927299,0.836509,0.656899,0.55097,0.11756,0.520972,0.304175,0.315842,0.906917,0.149307,0.0500209,0.862925,0.513804,0.711375,0.847774,0.692148,0.583152,0.843572,0.412352,0.829668,0.205133,0.309783,0.34196,0.928226,0.679675,0.291126,0.489482,0.395749,0.554148,0.167539,0.923065,0.828227,0.577969,0.432946,0.117642,0.544779,0.185584,0.337595,0.450164,0.826782,0.45658,0.00129944,0.825383,0.824427,0.189217,0.272052,0.412102,0.221332,0.227,0.0928854,0.254866,0.496215,0.141839,0.310882,0.0710391,0.222577,0.0114254,0.489046,0.94423,0.141432,0.655904,0.524056,0.215037,0.408911,0.124746,0.619518,0.756029,0.743596,0.466978,0.196647,0.238815,0.881511,0.309187,0.558052,0.168672,0.325725,0.755205,0.63026,0.0265292,0.12541,0.823128,0.806912,0.729344,0.327699,0.533003,0.214783,0.516802,0.00720572,0.792657,0.888081,0.671709,0.812515,0.825765,0.755454,0.522465,0.933783,0.549338,0.16296,0.554967,0.714985,0.130988,0.324276,0.636293,0.179737,0.499838,0.678481,0.308348,0.114342,0.960713,0.690723,0.748399,0.506793,0.852987,0.639755,0.673328,0.424577,0.730443,0.00558388,0.247531,0.335397,0.374383,0.456715,0.119893,0.573738,0.422054,0.192296,0.42,0.0916749,0.742824,0.795841,0.846364,0.0309188,0.436732,0.315483,0.0202405,0.57559,0.342999,0.0540352,0.805848,0.0258357,0.772511,0.082499,0.302317,0.218724,0.785631,0.713424,0.236235,0.556632,0.00377828,0.284277,0.563675,0.743073,0.311512,0.777337,0.794524,0.906125,0.218474,0.0841535,0.830312,0.415234,0.00103575,0.39376,0.607407,0.566206,0.373466,0.256193,0.652096,0.739081,0.251555,0.0527544,0.494017,0.354023,0.0641496,0.660669,0.895159,0.589594,0.20734,0.150729,0.241618,0.944391,0.333128,0.671774,0.0364656,0.968932,0.751697,0.963269,0.762886,0.990161,0.753301,0.751884,0.604522,0.474947,0.745206,0.993854,0.572109,0.404277,0.893816,0.855866,0.418836,0.392847,0.523974,0.305952,0.68573,0.903576,0.07235,0.318185,0.206636,0.684296,0.437658,0.149227,0.654711,0.336197,0.996,0.270678,0.861326,0.792049,0.454962,0.907124,0.893889,0.69448,0.803354,0.748736,0.159275,0.834376,0.803165,0.517049,0.326946,0.130963,0.640621,0.569265,0.723335,0.791727,0.242561,0.946876,0.315339,0.0443289,0.34061,0.467607,0.695345,0.179341,0.204241,0.87042,0.847853,0.625334,0.435455,0.434475,0.61929,0.141705,0.839621,0.304868,0.592986,0.0152659,0.44575,0.990377,0.739089,0.792103,0.341774,0.489869,0.0189563,0.368351,0.952854,0.851011,0.510024,0.951001,0.298649,0.46398,0.936313,0.0343459,0.34953,0.805466,0.0911032,0.370064,0.571526,0.534436,0.115041,0.284226,0.169431,0.01142,0.236437,0.605154,0.268295,0.654165,0.528124,0.982038,0.838655,0.856851,0.84085,0.0446926,0.228972,0.895642,0.0439157,0.435359,0.704616,0.772792,0.664632,0.628784,0.473214,0.728457,0.643202,0.299271,0.0158184,0.465343,0.965737,0.0222375,0.0872624,0.370498,0.503498,0.463773,0.0394409,0.254476,0.496372,0.501748,0.45225,0.492002,0.853215,0.248875,0.697185,0.520719,0.81619,0.336146,0.856988,0.241133,0.401858,0.222455,0.835628,0.763142,0.619336,0.331165,0.600831,0.304057,0.586564,0.318778,0.932177,0.149324,0.864067,0.71166,0.517943,0.113058,0.948623,0.721459,0.443946,0.231799,0.558315,0.13862,0.121581,0.936552,0.204534,0.0624812,0.64801,0.74558,0.0469877,0.49527,0.777902,0.607188,0.632566,0.885127,0.116713,0.381516,0.285121,0.99543,0.0262213,0.993567,0.236781,0.0203906,0.0929278,0.0377679,0.646985,0.362013,0.243529,0.457884,0.614945,0.898867,0.343042,0.0276871,0.458032,0.248193,0.726952,0.211629,0.508334,0.251247,0.177252,0.519461,0.167061,0.778739,0.502511,0.032997,0.883767,0.412382,0.472479,0.85315,0.208689,0.992398,0.180492,0.319658,0.203858,0.454935,0.575156,0.273977,0.247426,0.797465,0.228814,0.533729,0.909168,0.626717,0.375884,0.0685298,0.779648,0.142887,0.104055,0.717512,0.910719,0.470574,0.592511,0.924445,0.200556,0.400107,0.840703,0.467781,0.492197,0.14877,0.946898,0.110106,0.386746,0.720591,0.710113,0.200336,0.31812,0.405191,0.200524,0.344245,0.564159,0.147485,0.863467,0.246077,0.460158,0.50919,0.727879,0.994848,0.0513786,0.472731,0.567745,0.906808,0.225037,0.731271,0.613524,0.0491592,0.847581,0.620594,0.323699,0.0293152,0.895637,0.9299,0.903769,0.721275,0.596008,0.51056,0.697518,0.017809,0.914281,0.248905,0.833069,0.940135,0.0543138,0.880055,0.918754,0.147632,0.372943,0.202542,0.077602,0.969777,0.499107,0.702733,0.406455,0.353637,0.590797,0.339648,0.976804,0.820141,0.295977,0.734509,0.120625,0.472491,0.362016,0.717336,0.40951,0.629315,0.891133,0.863645,0.496878,0.839688,0.854595,0.768864,0.776404,0.523569,0.38453,0.91757,0.449067,0.626019,0.32798,0.866761,0.806581,0.92855,|0.0685585,0.718986,0.657393,0.0375665,0.721993,0.59457,0.283992,0.89761,0.30792,0.67047,0.511627,0.241407,0.902046,0.756569,0.0533121,0.16745,0.0915072,0.880626,0.0521656,0.995354,0.211284,0.128024,0.234898,0.685016,0.561978,0.430753,0.863441,0.122645,0.212814,0.309876,0.636898,0.687528,0.00776386,0.676598,0.324908,0.338293,0.913998,0.77753,0.868986,0.619096,0.99291,0.286422,0.420308,0.0485249,0.0663818,0.534025,0.131368,0.0839664,0.802488,0.845493,0.739396,0.880636,0.320046,0.893654,0.268532,0.1008,0.231684,0.162921,0.362273,0.502434,0.782366,0.831476,0.11369,0.645146,0.0105805,0.72972,0.83465,0.0239837,0.761875,0.545137,0.0518084,0.176413,0.518712,0.222323,0.616154,0.507879,0.101568,0.977794,0.223971,0.123196,0.995348,0.68116,0.672768,0.121411,0.905187,0.435156,0.879564,0.238011,0.531838,0.626899,0.731831,0.59744,0.907978,0.365516,0.498038,0.7586,0.763019,0.0346332,0.479117,0.489721,0.927676,0.336001,0.0184977,0.973925,0.926268,0.137608,0.612149,0.799071,0.417956,0.289606,0.0729445,0.0233441,0.0636247,0.833715,0.359062,0.582237,0.873296,0.821552,0.983826,0.731042,0.272496,0.818067,0.935179,0.180599,0.163082,0.104642,0.690074,0.091774,0.795815,0.204229,0.266372,0.261429,0.114732,0.0995226,0.729198,0.887471,0.448209,0.638303,0.992026,0.959491,0.855954,0.370838,0.394983,0.325812,0.264791,0.813409,0.298271,0.148839,0.974485,0.247671,0.651907,0.519887,0.226474,0.721653,0.631717,0.538728,0.180766,0.270857,0.186061,0.910226,0.406174,0.847392,0.248206,0.851543,0.336997,0.694498,0.705629,0.651272,0.565271,0.488642,0.904535,0.023074,0.162888,0.11117,0.193971,0.637182,0.510398,0.396732,0.318962,0.303624,0.856785,0.53786,0.268614,0.232836,0.988575,0.0576658,0.580189,0.955764,0.686384,0.437428,0.0907105,0.658942,0.0435441,0.553949,0.524789,0.241161,0.714995,0.307,0.155347,0.033951,0.0744227,0.807796,0.844309,0.787171,0.261246,0.753206,0.976987,0.965899,0.0116547,0.0668458,0.315349,0.904646,0.483116,0.117067,0.33356,0.117972,0.0032177,0.134492,0.503028,0.799381,0.271976,0.0690829,0.316728,0.39847,0.545244,0.84278,0.565377,0.37067,0.847449,0.259829,0.642004,0.92755,0.844165,0.58013,0.0519628,0.903907,0.299234,0.710082,0.270419,0.462431,0.248567,0.610932,0.419343,0.3701,0.900846,0.0457108,0.550395,0.159594,0.0521297,0.195437,0.851444,0.703098,0.751639,0.964256,0.106033,0.93109,0.146239,0.109362,0.92546,0.215907,0.193229,0.269804,0.753719,0.948934,0.687966,0.457492,0.170418,0.389479,0.233768,0.911671,0.47872,0.0306535,0.254102,0.930715,0.887918,0.759616,0.0531785,0.642977,0.155781,0.107277,0.276128,0.876493,0.388724,0.274498,0.65339,0.793529,0.414154,0.512216,0.213192,0.224532,0.201471,0.196867,0.55322,0.945539,0.514837,0.113474,0.197213,0.663964,0.493016,0.784946,0.832096,0.845527,0.137559,0.349554,0.469175,0.815148,0.112806,0.0159183,0.295439,0.0954396,0.715974,0.787886,0.94906,0.1273,0.0207235,0.961231,0.467017,0.259854,0.773572,0.84525,0.220413,0.308446,0.120837,0.100133,0.426677,0.92394,0.0831769,0.864018,0.661743,0.357036,0.604713,0.66038,0.0618786,0.110336,0.151165,0.78326,0.830262,0.841032,0.196436,0.611665,0.784113,0.936769,0.239782,0.0174429,0.200342,0.335997,0.969775,0.329842,0.984747,0.852555,0.507773,0.950112,0.79325,0.425792,0.845905,0.145062,0.83962,0.958178,0.811989,0.897536,0.601425,0.441943,0.11122,0.122486,0.728757,0.129723,0.352796,0.529874,0.725313,0.342573,0.760044,0.62555,0.976857,0.89232,0.656408,0.6934,0.627222,0.829483,0.25788,0.900494,0.764903,0.711018,0.598235,0.0851635,0.376292,0.977736,0.910263,0.349961,0.474238,0.20012,0.155064,0.929075,0.34495,0.836173,0.295028,0.971993,0.659001,0.276935,0.740045,0.355839,0.662339,0.881862,0.778631,0.00504184,0.459809,0.579194,0.393711,0.809063,0.782186,0.585597,0.973805,0.540109,0.800542,0.287035,0.644682,0.822901,0.838752,0.250283,0.722854,0.802083,0.289956,0.132867,0.0325888,0.785529,0.24411,0.232159,0.571328,0.0501001,0.571268,0.539355,0.0914149,0.998139,0.950046,0.980279,0.186866,0.405504,0.562193,0.149108,0.983615,0.278626,0.220952,0.93943,0.438603,0.487427,0.988052,0.888941,0.00998831,0.598542,0.897668,0.393489,0.0286589,0.640474,0.793153,0.0663567,0.846196,0.909673,0.255241,0.703684,0.793072,0.174335,0.453472,0.681489,0.803772,0.19503,0.272548,0.175169,0.809106,0.720026,0.922105,0.525991,0.918027,0.788315,0.769501,0.700891,0.714619,0.0376227,0.62177,0.491721,0.973811,0.0285946,0.0331233,0.70365,0.0714715,0.8001,0.895242,0.764534,0.729311,0.828138,0.371179,0.066385,0.789949,0.281076,0.145669,0.791893,0.90009,0.663793,0.720217,0.425301,0.417077,0.576391,0.607421,0.487508,0.83201,0.798125,0.715102,0.705119,0.067342,0.079253,0.462467,0.101315,0.24345,0.533771,0.698253,0.461489,0.869155,0.649577,0.955305,0.659499,0.735603,0.143073,0.431868,0.402794,0.231963,0.0398782,0.0735766,0.78673,0.398862,0.940728,0.519499,0.306033,0.5128,0.823781,0.834668,0.64666,0.289181,0.677223,0.00521171,0.452366,0.689932,0.9309,0.747757,0.920901,0.339346,0.411089,0.783582,0.675186,0.532573,0.828028,0.875433,0.67257,0.925662,0.161828,0.679151,0.946192,0.17039,0.586041,0.240894,0.11483,0.582259,0.857363,0.0289636,0.442634,0.820807,0.281837,0.471098,0.940322,0.822695,0.049226,0.177951,0.897491,0.455303,0.974132,0.265653,0.454469,0.986433,0.989366,0.643948,0.591557,0.246426,0.383165,0.136468,0.664178,0.49374,0.635415,0.235936,0.259672,0.71947,0.14661,0.134852,0.0266939,0.286769,0.326519,0.734905,0.820488,0.71417,0.556427,0.359918,0.559086,0.842871,0.0305271,0.872297,0.512205,0.838818,0.474567,0.756936,0.0840514,0.525672,0.699364,0.302088,0.433808,0.782414,0.535628,0.521084,0.119423,0.462585,0.950993,0.917054,0.694135,0.616109,0.572827,0.583579,0.323109,0.997126,0.562887,0.861065,0.82866,0.0919676,0.656989,0.0278323,0.245987,0.033489,0.631704,0.218275,0.383486,0.705167,0.887775,0.474011,0.480128,0.0351118,0.735681,0.865326,0.726824,0.513731,0.598058,0.0494683,0.56414,0.744886,0.0307364,0.0479638,0.706991,0.0841767,0.675838,0.321056,0.803848,0.362517,0.457683,0.377792,0.823507,0.465939,0.305246,0.560983,0.653933,0.278465,0.317885,0.331502,0.610989,0.34042,0.678788,0.263362,0.926228,0.696388,0.658664,0.0514275,0.643537,0.645398,0.944569,0.786615,0.429128,0.327456,0.0497353,0.360698,0.111976,0.592238,0.931786,0.0375178,0.926717,0.89458,0.980311,0.895984,0.527101,0.196791,0.377725,0.557565,0.333092,0.512205,0.130214,0.193975,0.670241,0.325051,0.959628,0.584247,0.751158,0.817348,0.638503,0.0384642,0.463723,0.0626154,0.51436,0.276304,0.289908,0.527102,0.918309,0.39601,0.457534,0.400849,0.017759,0.548986,0.397158,0.883312,0.215526,0.144632,0.217096,0.183875,0.195404,0.408965,0.293179,0.147938,0.534296,0.0616981,0.34231,0.163689,0.640975,0.549688,0.613794,0.335832,0.352474,0.995275,0.713493,0.768516,0.765519,0.965444,0.630672,0.667339,0.978235,0.48506,0.852813,0.00971472,0.586405,0.873049,0.0681624,0.0700287,0.527595,0.275393,0.384077,0.102627,0.296135,0.750634,0.130734,0.548619,0.449447,0.754691,0.294212,0.75567,0.0782883,0.274774,0.628998,0.965271,0.691335,0.974655,0.333762,0.219124,0.989868,0.465614,0.502876,0.187984,0.977238,0.0986542,0.796129,0.820912,0.911434,0.42717,0.236575,0.55752,0.223993,0.517169,0.697733,0.222885,0.692225,0.483374,0.799403,0.23088,0.214459,0.435066,0.712258,0.563314,0.0400086,0.957004,0.00904751,0.659023,0.131935,0.836457,0.840254,0.748285,0.165264,0.082987,0.329913,0.861745,0.475037,0.760843,0.0816789,0.994781,0.681018,0.266348,0.562485,0.421242,0.0504534,0.6221,0.992977,0.879865,0.840748,0.330396,0.762016,0.20062,0.716919,0.242676,0.598864,0.167968,0.835236,0.636228,0.0292444,0.137679,0.660446,0.111253,0.811553,0.417474,0.730509,0.240379,0.115419,0.684412,0.780434,0.0626966,0.545303,0.326932,0.412843,0.625427,0.506046,0.0416994,0.478922,0.275778,0.775524,0.675892,0.362929,0.0308482,0.182138,0.193559,0.0246665,0.132659,0.712649,0.77565,0.128415,0.415327,0.829747,0.858831,0.621666,0.854728,0.380794,0.577876,0.30703,0.823607,0.488223,0.460328,0.798511,0.474751,0.776431,0.936395,0.363541,0.382925,0.313241,0.556031,0.805377,0.297767,0.984534,0.247857,0.491199,0.461161,0.197267,0.608691,0.263032,0.529533,0.730519,0.832141,0.341101,0.480686,0.364946,0.0502446,0.160662,0.807328,0.593206,0.973724,0.495484,0.39507,0.748701,0.837364,0.931369,0.295379,0.330808,0.990107,0.302549,0.981091,0.110753,0.491327,0.548877,0.0382903,0.699131,0.918338,0.374344,0.412684,0.658766,0.0466419,0.172926,0.0136365,0.692623,0.272221,0.15875,0.554882,0.593911,0.237008,0.623547,0.907957,0.344451,0.671727,0.67929,0.425312,0.528659,0.539641,0.123756,0.166415,0.0381446,0.746838,0.226914,0.153991,0.783245,0.597826,0.951826,0.716528,0.663473,0.667571,0.409419,0.16051,0.875582,0.534212,0.346186,0.4024,0.395456,0.948683,0.526528,0.520737,0.00397515,0.342288,0.245331,0.0790288,0.381819,0.854034,0.0112395,0.103925,0.025092,0.370872,0.912767,0.763781,0.719475,0.572176,0.490842,0.165954,0.344303,0.705168,0.372953,0.380089,0.533903,0.721435,0.322627,0.00687444,0.66427,0.861309,0.849286,0.603381,0.475644,0.475636,0.671709,0.665797,0.129623,0.768323,0.638832,0.106345,0.958428,0.391779,0.912914,0.199107,0.862705,0.0972083,0.0229861,|0.88351,0.911438,0.448242,0.455144,0.27735,0.768445,0.71476,0.542471,0.591049,0.899131,0.0258901,0.589706,0.197775,0.0648143,0.692962,0.500095,0.821096,0.548388,0.695726,0.476267,0.821594,0.835384,0.553787,0.529689,0.154484,0.370081,0.678574,0.862242,0.69699,0.723995,0.756254,0.0639879,0.995777,0.887344,0.819307,0.754443,0.854059,0.313194,0.0214434,0.192013,0.63793,0.496014,0.455852,0.598015,0.791362,0.918149,0.935234,0.877153,0.681014,0.57487,0.441324,0.416845,0.932129,0.462289,0.400385,0.846212,0.523467,0.261784,0.354962,0.452545,0.319457,0.0945567,0.181877,0.645413,0.0167148,0.483081,0.277687,0.593801,0.202545,0.266578,0.629635,0.594032,0.503749,0.793705,0.789629,0.382029,0.989258,0.78004,0.710186,0.192239,0.889881,0.00237322,0.792395,0.786857,0.366138,0.0599785,0.267632,0.783363,0.909809,0.0111354,0.400626,0.00809693,0.57689,0.472763,0.0378594,0.058329,0.61532,0.0347394,0.311807,0.326998,0.324802,0.418649,0.861827,0.450073,0.675254,0.411764,0.22384,0.99781,0.380269,0.876506,0.665543,0.242952,0.580859,0.980389,0.110556,0.30499,0.966334,0.297777,0.811407,0.940148,0.79602,0.438736,0.437022,0.33922,0.281641,0.81975,0.582301,0.380502,0.2121,0.298696,0.259386,0.472345,0.300995,0.280887,0.427448,0.453331,0.938285,0.298648,0.422233,0.701505,0.638722,0.16283,0.317724,0.0471912,0.0506638,0.0252209,0.539619,0.361011,0.40711,0.559281,0.402848,0.306823,0.00162035,0.143477,0.816667,0.425019,0.507575,0.197972,0.517504,0.433174,0.616435,0.797499,0.420506,0.0737839,0.0498688,0.267606,0.0112571,0.181385,0.654285,0.148951,0.558873,0.804408,0.229556,0.655636,0.411724,0.663441,0.0801712,0.786206,0.951481,0.171258,0.822142,0.418611,0.896071,0.512229,0.575528,0.17203,0.0234658,0.275335,0.261517,0.0447544,0.877859,0.459524,0.568713,0.547388,0.437381,0.259576,0.466021,0.247136,0.219822,0.0359573,0.712629,0.292772,0.012834,0.257426,0.447425,0.533839,0.707728,0.321565,0.200198,0.433477,0.628508,0.148094,0.972965,0.0542926,0.669227,0.594535,0.986354,0.701706,0.915941,0.0817187,0.391317,0.829006,0.468145,0.688134,0.0331945,0.723835,0.509412,0.00466335,0.254704,0.364451,0.245785,0.217131,0.169456,0.893152,0.486562,0.0673016,0.39556,0.276299,0.85369,0.811433,0.972687,0.792105,0.500197,0.695097,0.553101,0.917215,0.214038,0.674975,0.174299,0.999899,0.0619012,0.427379,0.140196,0.0531141,0.369703,0.110236,0.695065,0.129315,0.216283,0.101061,0.379552,0.938968,0.589248,0.380803,0.436863,0.718585,0.467596,0.36892,0.122256,0.519151,0.696563,0.783793,0.52822,0.618202,0.842554,0.269153,0.918037,0.850222,0.612523,0.214673,0.146279,0.610897,0.204984,0.852422,0.863933,0.390021,0.466231,0.441258,0.963713,0.289437,0.253295,0.75458,0.645273,0.605353,0.498513,0.140191,0.32667,0.0558515,0.729341,0.977007,0.582285,0.763439,0.67519,0.666134,0.117387,0.31339,0.0482227,0.847051,0.151832,0.330575,0.0948296,0.511108,0.231912,0.562647,0.646514,0.125963,0.484535,0.0379804,0.682612,0.36049,0.355095,0.0701484,0.445936,0.0206581,0.153861,0.621048,0.759386,0.911977,0.817739,0.773521,0.460874,0.337326,0.780152,0.712899,0.76999,0.726621,0.641241,0.637302,0.612481,0.0274837,0.482797,0.411994,0.481568,0.367736,0.75693,0.415508,0.42962,0.301482,0.259616,0.502674,0.613668,0.807128,0.0489247,0.0541733,0.115493,0.726748,0.135062,0.412042,0.470182,0.507086,0.18963,0.680365,0.585103,0.709462,0.853422,0.597049,0.992853,0.170129,0.831237,0.621083,0.0547829,0.186991,0.926934,0.872296,0.00453013,0.611717,0.458851,0.146285,0.708458,0.593362,0.031877,0.0156333,0.420216,0.0568456,0.751662,0.0306157,0.297043,0.761753,0.941561,0.23175,0.716826,0.863932,0.280015,0.741173,0.397071,0.544087,0.606021,0.365743,0.540955,0.210076,0.816167,0.862164,0.267271,0.779935,0.0118187,0.229696,0.208976,0.864689,0.966175,0.34776,0.980821,0.173926,0.964413,0.313033,0.353446,0.425026,0.310885,0.936271,0.15959,0.996184,0.348172,0.392983,0.232506,0.459536,0.786615,0.380389,0.525061,0.92667,0.448377,0.0879593,0.841517,0.186547,0.650477,0.690397,0.506767,0.132997,0.953348,0.435289,0.967668,0.567198,0.270288,0.330723,0.170548,0.832724,0.647329,0.124744,0.432997,0.0179222,0.286835,0.549232,0.557002,0.363055,0.0358991,0.510335,0.325579,0.788256,0.578867,0.122388,0.61626,0.882207,0.253196,0.084578,0.17753,0.396207,0.687474,0.510611,0.43459,0.219888,0.067898,0.499924,0.457074,0.285917,0.977099,0.746861,0.167111,0.944891,0.756047,0.764335,0.473027,0.108431,0.527115,0.222279,0.012553,0.585079,0.101174,0.240542,0.685664,0.844869,0.656617,0.0839144,0.947134,0.380217,0.587333,0.647696,0.506252,0.996466,0.175666,0.574378,0.816276,0.180475,0.795394,0.209557,0.538382,0.287697,0.561901,0.151747,0.0374895,0.75256,0.678557,0.778477,0.714584,0.0241236,0.486786,0.863637,0.223083,0.0756866,0.970349,0.802995,0.119544,0.101118,0.551292,0.798457,0.835573,0.681105,0.360372,0.27851,0.240243,0.20884,0.940491,0.515305,0.60884,0.486505,0.807462,0.274062,0.979442,0.449064,0.494797,0.87281,0.694846,0.569515,0.794917,0.883147,0.791823,0.903479,0.398216,0.115448,0.959135,0.844742,0.379669,0.735619,0.923187,0.36045,0.351774,0.139353,0.589267,0.0157173,0.925628,0.653876,0.914325,0.872248,0.596293,0.779253,0.923765,0.0559391,0.0939301,0.958598,0.680945,0.736537,0.0873836,0.183543,0.362595,0.992951,0.696954,0.622465,0.541499,0.262522,0.465027,0.936815,0.0105152,0.842477,0.119857,0.552201,0.0519403,0.350306,0.794985,0.947949,0.412929,0.69435,0.672328,0.243459,0.23314,0.710332,0.441476,0.254664,0.0285495,0.881661,0.100174,0.12454,0.563521,0.379449,0.454781,0.428688,0.798949,0.050393,0.939557,0.441666,0.0362545,0.20601,0.176725,0.517196,0.346726,0.236512,0.786331,0.139218,0.474406,0.788399,0.226781,0.750211,0.0252442,0.814006,0.85013,0.394769,0.960655,0.46522,0.0370877,0.703546,0.422364,0.760936,0.586343,0.783049,0.16075,0.684025,0.687796,0.0224245,0.936224,0.483815,0.375854,0.113939,0.700559,0.637504,0.757956,0.595283,0.54269,0.810531,0.876916,0.121049,0.601721,0.55805,0.915397,0.630499,0.319914,0.649484,0.550591,0.503251,0.311817,0.401452,0.752476,0.753635,0.780968,0.887353,0.316304,0.639841,0.163341,0.205491,0.190345,0.477375,0.62518,0.751595,0.0702467,0.0279824,0.899488,0.576482,0.744971,0.00283307,0.681522,0.0539692,0.573831,0.717808,0.322102,0.099038,0.283853,0.775288,0.395376,0.76532,0.574296,0.181515,0.102994,0.0253772,0.90747,0.738467,0.366583,0.049442,0.928448,0.881817,0.457384,0.372126,0.840127,0.247674,0.216579,0.609503,0.938594,0.298854,0.131275,0.757538,0.76755,0.407113,0.616547,0.260633,0.567057,0.5766,0.527763,0.759514,0.707054,0.409823,0.767584,0.139584,0.750283,0.31376,0.926027,0.141931,0.616246,0.483248,0.374875,0.394502,0.710457,0.0999684,0.0452065,0.100053,0.593508,0.289865,0.999454,0.811632,0.309601,0.187314,0.25912,0.975677,0.803787,0.228102,0.731683,0.732333,0.451177,0.575754,0.0807197,0.00663596,0.44441,0.673196,0.62492,0.0414394,0.631819,0.684,0.325314,0.419361,0.317914,0.987794,0.789874,0.822609,0.591076,0.920594,0.272074,0.705172,0.869942,0.29384,0.715794,0.127163,0.625517,0.504295,0.103616,0.473667,0.684975,0.791126,0.503438,0.920845,0.629739,0.268927,0.0118452,0.301368,0.744309,0.370115,0.176198,0.320356,0.52532,0.658462,0.714566,0.544741,0.624752,0.560423,0.576684,0.330807,0.400508,0.442756,0.362915,0.983709,0.116568,0.324605,0.617964,0.00177181,0.07077,0.224533,0.780167,0.84898,0.165412,0.657719,0.167748,0.371723,0.288761,0.330528,0.0789163,0.521028,0.818149,0.431691,0.609006,0.968158,0.0494816,0.36574,0.853895,0.541779,0.481161,0.85514,0.748167,0.518174,0.969725,0.79675,0.599598,0.000689924,0.829137,0.160578,0.44422,0.820241,0.116954,0.447573,0.10585,0.451011,0.843393,0.925711,0.805742,0.364723,0.398869,0.818083,0.0675869,0.792048,0.102553,0.940877,0.810726,0.897235,0.815482,0.00431609,0.489613,0.551405,0.959744,0.379555,0.595914,0.180543,0.335393,0.610629,0.653582,0.431852,0.319991,0.66906,0.990694,0.349855,0.860074,0.573009,0.65435,0.210281,0.883273,0.242369,0.487662,0.0793266,0.664461,0.339081,0.889481,0.444798,0.329011,0.191889,0.322229,0.508917,0.207681,0.169044,0.27117,0.225788,0.277399,0.439141,0.830135,0.865455,0.52806,0.324247,0.40171,0.778878,0.9949,0.25939,0.279683,0.993867,0.835931,0.754895,0.00570375,0.120711,0.0604793,0.270283,0.207795,0.53332,0.427755,0.960711,0.293338,0.936647,0.390727,0.470736,0.881805,0.379033,0.141057,0.0665464,0.619671,0.716394,0.635946,0.553008,0.372952,0.801711,0.907802,0.159685,0.746958,0.65692,0.52249,0.909155,0.644669,0.856913,0.981567,0.575917,0.618235,0.513052,0.518123,0.0695069,0.926962,0.729331,0.822406,0.0465789,0.98414,0.764149,0.116126,0.827602,0.279927,0.708277,0.355023,0.254845,0.499335,0.225241,0.423005,0.262245,0.564806,0.361979,0.481956,0.693963,0.953942,0.883072,0.102351,0.678042,0.612755,0.980526,0.956872,0.348164,0.355797,0.701072,0.555315,0.713189,0.00520313,0.325882,0.85743,0.854294,0.483102,0.43176,0.879316,0.512936,0.394542,0.0459728,0.131291,0.225659,0.836175,0.53977,0.675533,0.729271,0.0199958,0.501747,0.134812,0.408054,0.28157,0.0370944,0.575886,0.0791253,0.388665,0.482738,0.842263,0.962127,0.164574,0.564599,0.581525,0.702575,0.317081,0.0515992,0.972428,0.483188,0.605761,0.0344332,|0.956572,0.73151,0.382539,0.362925,0.303566,0.836276,0.855417,0.319124,0.375264,0.533147,0.466508,0.462915,0.809989,0.747661,0.453576,0.604791,0.0946118,0.165645,0.817145,0.584996,0.750257,0.153237,0.905903,0.686505,0.726209,0.476265,0.400418,0.922333,0.601218,0.878358,0.385961,0.67006,0.679584,0.79654,0.188075,0.033619,0.65029,0.614417,0.168908,0.833028,0.873837,0.0527757,0.653348,0.23231,0.24415,0.982359,0.512911,0.318417,0.834585,0.385188,0.627284,0.872198,0.757753,0.805044,0.422094,0.417854,0.585892,0.242032,0.147139,0.486714,0.378659,0.124381,0.470168,0.815728,0.359827,0.935768,0.795692,0.572004,0.511028,0.173816,0.900504,0.485639,0.824769,0.550636,0.177452,0.0524731,0.0387436,0.233087,0.81833,0.779446,0.0379818,0.833447,0.451108,0.765346,0.464013,0.293524,0.989231,0.535309,0.842327,0.569115,0.356213,0.105016,0.202267,0.402714,0.198454,0.298002,0.920642,0.34452,0.468915,0.92059,0.0425091,0.675865,0.0115758,0.166247,0.349614,0.383397,0.490401,0.332718,0.0900645,0.0818137,0.356792,0.0466767,0.196287,0.388853,0.490253,0.118427,0.34454,0.705719,0.537353,0.165511,0.481843,0.323199,0.43541,0.657083,0.312884,0.118384,0.681573,0.488105,0.812313,0.948547,0.36794,0.953359,0.392119,0.818195,0.921245,0.935126,0.679926,0.745366,0.418232,0.170067,0.594815,0.35842,0.854122,0.590478,0.699956,0.248327,0.733687,0.789765,0.228914,0.23181,0.694934,0.257571,0.438884,0.450226,0.015796,0.944975,0.719764,0.605863,0.248888,0.821504,0.476121,0.117269,0.931836,0.585431,0.105265,0.643386,0.442326,0.94999,0.745705,0.255861,0.245698,0.304404,0.072095,0.274863,0.421697,0.910344,0.22952,0.0333169,0.051995,0.101708,0.22166,0.724379,0.176851,0.424516,0.790156,0.594333,0.566628,0.627462,0.996999,0.575058,0.271883,0.530468,0.754413,0.416696,0.00398558,0.0386914,0.748255,0.299889,0.641624,0.0214479,0.0129075,0.577561,0.540824,0.732569,0.239686,0.647445,0.145588,0.784613,0.363451,0.399449,0.646854,0.618413,0.82809,0.873281,0.851012,0.744814,0.771376,0.805174,0.450089,0.733207,0.631375,0.975321,0.0688426,0.301816,0.214258,0.805039,0.419462,0.851877,0.302313,0.606234,0.00535566,0.315476,0.630969,0.896696,0.879915,0.355264,0.401074,0.63626,0.116533,0.145154,0.945125,0.372013,0.638573,0.00352561,0.112183,0.21825,0.0343074,0.7151,0.881797,0.359877,0.0698205,0.448546,0.0932835,0.0144497,0.229778,0.456423,0.491349,0.116988,0.0751513,0.902053,0.457586,0.568897,0.712988,0.872778,0.00744879,0.751697,0.194608,0.994092,0.255641,0.00441796,0.890854,0.535547,0.826444,0.206281,0.826951,0.918241,0.416789,0.915656,0.335916,0.952739,0.974333,0.0770066,0.0780632,0.444888,0.91629,0.271596,0.816776,0.793288,0.232345,0.0221633,0.699276,0.0550308,0.618436,0.133503,0.166839,0.472561,0.699545,0.331113,0.253077,0.0412019,0.79626,0.860807,0.574889,0.286881,0.706405,0.874085,0.127021,0.467263,0.204275,0.787722,0.390206,0.737573,0.739603,0.269991,0.46307,0.501709,0.508177,0.221475,0.512963,0.381018,0.460109,0.788941,0.431596,0.0687268,0.835152,0.545951,0.162039,0.481907,0.123487,0.26828,0.91829,0.798817,0.556842,0.739388,0.743038,0.419224,0.0404926,0.427676,0.228895,0.70476,0.0277289,0.533214,0.807753,0.07688,0.204235,0.598693,0.109848,0.132075,0.303104,0.581461,0.596618,0.60195,0.404639,0.0539689,0.706419,0.248499,0.10505,0.488627,0.0401448,0.981943,0.226778,0.450643,0.293349,0.990335,0.854748,0.680774,0.812977,0.0864028,0.473644,0.0393072,0.932952,0.467063,0.0443984,0.670781,0.774623,0.498131,0.15401,0.472327,0.131848,0.290793,0.980152,0.443773,0.461961,0.0231311,0.264906,0.416089,0.776122,0.531848,0.350866,0.315517,0.23524,0.979135,0.704914,0.261343,0.7986,0.542148,0.821621,0.202127,0.0975811,0.246221,0.319491,0.872538,0.42467,0.0971459,0.987647,0.538549,0.143186,0.073167,0.89237,0.857156,0.502773,0.985853,0.311876,0.72766,0.755618,0.964433,0.414474,0.467896,0.682225,0.566821,0.788536,0.291253,0.6386,0.0745509,0.73416,0.968662,0.487436,0.402242,0.538701,0.244728,0.306387,0.6646,0.461205,0.214847,0.800438,0.596482,0.460118,0.595211,0.0625221,0.957552,0.0524577,0.345117,0.966127,0.450373,0.13032,0.808029,0.362029,0.576682,0.850767,0.102003,0.611752,0.591757,0.125387,0.597284,0.125236,0.22357,0.0391229,0.994668,0.510719,0.993934,0.422301,0.157936,0.097447,0.295105,0.991712,0.915597,0.742388,0.269589,0.0178255,0.586486,0.187258,0.850915,0.719617,0.897938,0.621718,0.108704,0.304126,0.311534,0.386913,0.80917,0.604711,0.779574,0.558879,0.136827,0.818492,0.0908038,0.850083,0.0028584,0.841054,0.913295,0.098977,0.804424,0.393306,0.600557,0.956999,0.640704,0.248888,0.624468,0.0705093,0.215397,0.157293,0.150942,0.582114,0.862034,0.594864,0.0874135,0.25308,0.284323,0.272513,0.0181752,0.490303,0.477631,0.230117,0.168124,0.499272,0.694638,0.767979,0.544579,0.651673,0.506822,0.989303,0.111739,0.504249,0.434416,0.230528,0.983644,0.935272,0.705731,0.916168,0.873903,0.955081,0.679481,0.828396,0.459171,0.461348,0.115766,0.995385,0.262616,0.649923,0.987031,0.192298,0.116874,0.808352,0.604702,0.0413678,0.371146,0.545645,0.29544,0.923852,0.644328,0.847428,0.635706,0.19171,0.800945,0.20628,0.00909102,0.651958,0.0794488,0.823684,0.301439,0.030232,0.939104,0.739055,0.81509,0.533297,0.442254,0.851024,0.712613,0.049549,0.594306,0.861424,0.0474156,0.728801,0.274064,0.108423,0.551184,0.700873,0.144962,0.681792,0.643155,0.802424,0.515674,0.603646,0.116388,0.0420051,0.731494,0.289747,0.146668,0.821122,0.58471,0.435599,0.609937,0.925064,0.53729,0.481579,0.646549,0.24401,0.0397057,0.893392,0.502071,0.664653,0.61806,0.499301,0.0459282,0.675052,0.47418,0.253953,0.408346,0.861485,0.781146,0.633793,0.668471,0.729681,0.722043,0.658501,0.149046,0.416616,0.850256,0.226513,0.0443458,0.568967,0.0292318,0.889875,0.575259,0.0582448,0.276243,0.618859,0.195563,0.249574,0.250869,0.694423,0.80658,0.571031,0.114366,0.358333,0.507093,0.89357,0.0592346,0.240332,0.7073,0.668521,0.651361,0.0925574,0.558815,0.456558,0.927997,0.550544,0.97601,0.1443,0.0752736,0.444121,0.629901,0.186602,0.42381,0.853537,0.509132,0.948226,0.279097,0.536456,0.068825,0.194172,0.46048,0.870878,0.495176,0.545576,0.0559223,0.996861,0.673186,0.623164,0.503783,0.417156,0.692824,0.508648,0.954598,0.458966,0.625294,0.43441,0.222676,0.490161,0.378455,0.771759,0.697487,0.438286,0.323218,0.612236,0.283886,0.958954,0.0102956,0.827124,0.497217,0.269128,0.0866591,0.53832,0.914077,0.13467,0.521417,0.662237,0.21092,0.427615,0.75872,0.923018,0.0345532,0.958085,0.84802,0.908383,0.922862,0.717877,0.894763,0.720255,0.136824,0.74562,0.291068,0.928978,0.232189,0.81213,0.989801,0.549658,0.919285,0.871519,0.163843,0.545543,0.287567,0.247861,0.751659,0.373383,0.714534,0.381653,0.627976,0.875626,0.953038,0.786756,0.449078,0.0589659,0.359806,0.818276,0.197462,0.889861,0.0969493,0.151702,0.371455,0.602954,0.497092,0.751394,0.669722,0.936584,0.149653,0.556536,0.152794,0.838671,0.366286,0.345186,0.708192,0.116049,0.237593,0.443138,0.976095,0.378093,0.558182,0.509932,0.23657,0.980884,0.963688,0.758805,0.576285,0.0621833,0.39791,0.614646,0.740438,0.975952,0.0159668,0.180938,0.545993,0.957234,0.224777,0.839632,0.810105,0.0526704,0.669819,0.407241,0.808206,0.781713,0.71851,0.292463,0.792101,0.254391,0.929996,0.138816,0.244503,0.479554,0.292963,0.79041,0.722805,0.890302,0.63883,0.945121,0.343577,0.717942,0.485834,0.636765,0.495732,0.695931,0.658931,0.093928,0.04823,0.291562,0.649778,0.346198,0.935615,0.825536,0.312618,0.822235,0.000204802,0.558103,0.168795,0.164693,0.456436,0.394141,0.412622,0.263219,0.579622,0.583768,0.850405,0.82688,0.561464,0.465287,0.555382,0.791175,0.645431,0.439144,0.473525,0.668891,0.516312,0.786088,0.468455,0.385534,0.211404,0.53974,0.00696826,0.613098,0.205139,0.219786,0.470367,0.117969,0.081479,0.904354,0.152787,0.127372,0.496019,0.816584,0.74477,0.642157,0.0539429,0.0352607,0.521845,0.643483,0.712357,0.777086,0.489319,0.596957,0.786576,0.187847,0.754624,0.630298,0.364483,0.165837,0.901813,0.892382,0.276297,0.598387,0.677751,0.808497,0.576475,0.126321,0.642886,0.958849,0.296813,0.0559586,0.381204,0.325361,0.670014,0.860436,0.991841,0.728723,0.319617,0.285116,0.22483,0.25698,0.900317,0.00575989,0.456436,0.728501,0.128495,0.680654,0.736827,0.173908,0.559916,0.0448488,0.113127,0.669206,0.193628,0.604982,0.523821,0.730692,0.730492,0.242761,0.369704,0.617622,0.832932,0.920834,0.737979,0.263778,0.489508,0.224354,0.760669,0.382455,0.511344,0.200599,0.210133,0.896385,0.147122,0.849091,0.022925,0.123607,0.846508,0.224492,0.47676,0.135293,0.926557,0.646624,0.558295,0.388891,0.187625,0.472013,0.538536,0.747955,0.584846,0.436899,0.651324,0.784188,0.656775,0.370126,0.270664,0.570898,0.64833,0.214665,0.14738,0.457653,0.346487,0.408607,0.0959958,0.87724,0.509599,0.0188503,0.965668,0.623176,0.0276886,0.641394,0.192859,0.9106,0.833142,0.651463,0.146249,0.143069,0.0636221,0.931179,0.411147,0.247806,0.7601,0.207712,0.711891,0.425333,0.0961689,0.266012,0.272747,0.681648,0.507697,0.033493,0.643839,0.577337,0.470688,0.276605,0.761497,0.574518,0.767854,0.790431,0.0391709,0.67936,0.829042,0.686843,0.723775,0.940305,0.149996,0.509228,0.30544,0.522708,0.685325,0.400729,0.0897819,0.115471,0.521097,|0.105694,0.940505,0.326479,0.921762,0.452882,0.418016,0.229957,0.556794,0.884377,0.457957,0.739157,0.05592,0.872088,0.705866,0.322702,0.907707,0.51051,0.916869,0.626082,0.762592,0.588982,0.999155,0.744785,0.671119,0.182813,0.45142,0.188609,0.807824,0.836571,0.952399,0.443099,0.51151,0.889502,0.17109,0.252693,0.120192,0.417887,0.770821,0.17478,0.373377,0.896987,0.698122,0.599114,0.689665,0.0102518,0.42305,0.117953,0.261036,0.469452,0.135,0.448497,0.469568,0.0195533,0.88309,0.357828,0.972678,0.173833,0.815299,0.800046,0.546154,0.351162,0.749857,0.418828,0.0298445,0.151837,0.484103,0.99714,0.268392,0.581396,0.562927,0.117293,0.075896,0.892916,0.538004,0.27064,0.914593,0.223423,0.0679907,0.839523,0.602145,0.964576,0.833179,0.135667,0.0719725,0.342756,0.46028,0.498246,0.419191,0.925111,0.683504,0.398452,0.613686,0.114037,0.740349,0.439493,0.926461,0.842286,0.519826,0.238815,0.83154,0.185921,0.0493994,0.560501,0.215652,0.864901,0.485455,0.976802,0.509364,0.961772,0.187722,0.62269,0.536825,0.573495,0.114626,0.860402,0.550292,0.500205,0.909725,0.308953,0.241185,0.876022,0.637157,0.117718,0.179935,0.516659,0.36802,0.614542,0.582286,0.0604076,0.857538,0.430257,0.402225,0.313513,0.512813,0.34284,0.126101,0.255597,0.731863,0.125358,0.474801,0.160228,0.92211,0.20401,0.374223,0.648351,0.797781,0.713285,0.942777,0.23077,0.0443825,0.821341,0.863313,0.154386,0.486999,0.994367,0.464592,0.405102,0.697654,0.491974,0.620292,0.283064,0.428964,0.980713,0.904799,0.105477,0.736977,0.84023,0.0123904,0.374646,0.108903,0.716313,0.954128,0.923501,0.34959,0.615516,0.685531,0.287434,0.0841155,0.946617,0.0522958,0.737959,0.221264,0.680622,0.149869,0.884446,0.870666,0.0810989,0.0847247,0.387745,0.254016,0.442375,0.17573,0.232943,0.908083,0.784875,0.48139,0.67969,0.722068,0.823731,0.81591,0.60784,0.539238,0.415697,0.602515,0.996654,0.704132,0.0283253,0.852856,0.268543,0.229129,0.992599,0.507855,0.380012,0.307955,0.0813455,0.137278,0.573392,0.546522,0.690548,0.666465,0.688454,0.973041,0.275554,0.679145,0.809349,0.613939,0.122987,0.0157682,0.337117,0.700777,0.505519,0.68806,0.124986,0.240162,0.606576,0.749183,0.338246,0.906549,0.514527,0.872423,0.872589,0.489972,0.129973,0.24703,0.270433,0.152617,0.740712,0.37094,0.777476,0.109055,0.697437,0.204534,0.248883,0.654172,0.451388,0.94525,0.0120376,0.995932,0.74249,0.691397,0.6,0.936656,0.652619,0.885215,0.622524,0.983535,0.607824,0.294916,0.243118,0.307161,0.315623,0.134972,0.63359,0.0359268,0.434537,0.48465,0.779609,0.0946237,0.757219,0.826065,0.348155,0.51952,0.133253,0.551426,0.161006,0.430097,0.88917,0.702029,0.198644,0.171019,0.373054,0.0554724,0.832574,0.0609531,0.435381,0.115467,0.135525,0.836143,0.464397,0.656975,0.989981,0.452746,0.197708,0.945372,0.912568,0.267174,0.822511,0.236067,0.193042,0.452545,0.0130564,0.631987,0.925699,0.554388,0.117151,0.85224,0.983945,0.234936,0.489894,0.234016,0.082221,0.116481,0.0399071,0.409622,0.755035,0.325795,0.77663,0.347586,0.915229,0.77834,0.928864,0.41647,0.0799148,0.769875,0.195161,0.623824,0.788792,0.309556,0.954232,0.932427,0.436159,0.45763,0.565062,0.0780952,0.37455,0.0416788,0.0891535,0.821543,0.659706,0.800734,0.661267,0.197692,0.88557,0.979333,0.998478,0.872532,0.14623,0.0779846,0.491894,0.603716,0.497996,0.675003,0.0865583,0.13261,0.599832,0.187133,0.67184,0.273918,0.913919,0.982936,0.409451,0.0025872,0.255662,0.220454,0.310408,0.489161,0.480059,0.0617808,0.650408,0.788285,0.645426,0.562437,0.467098,0.0188264,0.33903,0.0429879,0.0643663,0.72524,0.624545,0.837009,0.56295,0.895198,0.78336,0.000317454,0.825945,0.0601609,0.908142,0.506745,0.822952,0.909579,0.444488,0.62297,0.0882683,0.979053,0.0337952,0.425659,0.0623782,0.379186,0.701755,0.240541,0.951031,0.0264076,0.222483,0.783966,0.325998,0.591015,0.888822,0.483687,0.0541422,0.720078,0.269705,0.673266,0.211825,0.477045,0.117364,0.416192,0.614018,0.931303,0.759934,0.877567,0.375015,0.713438,0.978454,0.827343,0.275356,0.931404,0.563777,0.0597682,0.0634549,0.0737183,0.434729,0.952573,0.00355685,0.294559,0.380297,0.146888,0.206985,0.17469,0.934132,0.955862,0.934299,0.546365,0.0848089,0.14005,0.494148,0.105482,0.559051,0.222263,0.358318,0.0442364,0.779194,0.147363,0.741225,0.0277191,0.450773,0.398002,0.319112,0.920744,0.763487,0.916126,0.195971,0.420322,0.258727,0.595454,0.347292,0.0462847,0.249166,0.718261,0.131725,0.626028,0.759752,0.748747,0.275436,0.316475,0.689848,0.0570514,0.755983,0.199336,0.736234,0.131955,0.855247,0.56724,0.397789,0.861922,0.0145013,0.649598,0.712367,0.440284,0.943097,0.587603,0.616326,0.612501,0.297117,0.0778018,0.245281,0.27152,0.911651,0.622191,0.441898,0.313257,0.685556,0.248254,0.500828,0.948658,0.849107,0.721574,0.194571,0.410988,0.730341,0.448389,0.653506,0.36101,0.605777,0.25753,0.976739,0.0781637,0.0717413,0.379934,0.657734,0.0641807,0.882311,0.321858,0.876233,0.446505,0.657085,0.420739,0.98498,0.695998,0.919372,0.531174,0.246347,0.531902,0.00203675,0.248334,0.933399,0.223244,0.251567,0.581731,0.363871,0.0109313,0.366653,0.735644,0.356048,0.536101,0.768313,0.447945,0.740625,0.0930844,0.578663,0.473858,0.861491,0.581792,0.530244,0.0647983,0.583888,0.0117915,0.34868,0.27718,0.797703,0.298051,0.185215,0.0111979,0.992597,0.352127,0.681141,0.683455,0.830984,0.42148,0.547874,0.0714764,0.856631,0.11793,0.053786,0.79454,0.616235,0.642394,0.25643,0.531058,0.928883,0.598107,0.760392,0.92446,0.972454,0.0551944,0.0706567,0.609246,0.506669,0.220803,0.0878224,0.856127,0.347885,0.00891054,0.0152791,0.0495613,0.0880294,0.287357,0.384021,0.706643,0.64918,0.148459,0.149821,0.613783,0.596855,0.132972,0.228025,0.925766,0.488686,0.773139,0.422463,0.980804,0.265431,0.767998,0.878917,0.942578,0.236835,0.462129,0.289028,0.070328,0.896697,0.356631,0.327471,0.224122,0.982525,0.544374,0.26094,0.767964,0.315864,0.0106392,0.748313,0.0174154,0.620279,0.0744733,0.79329,0.861359,0.00236493,0.353931,0.249549,0.139953,0.788927,0.170336,0.284997,0.156641,0.776999,0.1993,0.072083,0.596661,0.223496,0.563925,0.488176,0.545154,0.248589,0.293626,0.682178,0.76001,0.591731,0.127053,0.386555,0.835639,0.868119,0.408673,0.0659882,0.133253,0.109616,0.0205529,0.652573,0.409692,0.43207,0.306465,0.546292,0.0617765,0.992342,0.156033,0.114788,0.100461,0.0352458,0.032402,0.758291,0.462692,0.0657408,0.0425496,0.660707,0.173408,0.941359,0.589549,0.550604,0.453165,0.423455,0.777876,0.107554,0.324673,0.61528,0.305997,0.295885,0.377544,0.0226698,0.963082,0.899736,0.306615,0.928667,0.12226,0.638377,0.998202,0.507077,0.500798,0.294031,0.754668,0.230035,0.586708,0.010126,0.618277,0.0415077,0.594459,0.282637,0.140268,0.897139,0.808421,0.981142,0.73801,0.630561,0.184673,0.309879,0.910107,0.802804,0.812966,0.251082,0.978062,0.211651,0.741794,0.911243,0.882124,0.0884327,0.617982,0.37343,0.777489,0.755978,0.668035,0.313455,0.424351,0.601922,0.698774,0.928358,0.52885,0.766758,0.642939,0.748878,0.510777,0.305031,0.121953,0.0532942,0.261508,0.802317,0.828168,0.87133,0.857596,0.0175647,0.796253,0.534152,0.501957,0.371624,0.253893,0.255253,0.63188,0.284833,0.461984,0.75111,0.42116,0.740645,0.385216,0.694734,0.241073,0.44222,0.247192,0.281037,0.399179,0.252691,0.846754,0.833619,0.80616,0.314225,0.734294,0.313445,0.763694,0.174512,0.0311246,0.978207,0.275501,0.0720435,0.569098,0.296589,0.651199,0.00468206,0.708198,0.682472,0.951416,0.54219,0.309065,0.959968,0.97296,0.358987,0.351208,0.61439,0.891277,0.775528,0.747325,0.548161,0.943328,0.87947,0.499873,0.920032,0.916576,0.0795954,0.822582,0.120228,0.882098,0.527326,0.110796,0.813231,0.205335,0.17537,0.53045,0.63545,0.914474,0.621417,0.440832,0.93107,0.737181,0.864826,0.048646,0.950143,0.19919,0.993468,0.599499,0.724557,0.105117,0.102484,0.480387,0.305401,0.569294,0.807902,0.630034,0.22482,0.291503,0.727348,0.174243,0.679207,0.111417,0.172555,0.236822,0.83175,0.972207,0.123433,0.416725,0.867523,0.0291638,0.241773,0.0829447,0.279408,0.0315911,0.690586,0.887341,0.278376,0.00543404,0.983745,0.0979348,0.728809,0.0894921,0.257266,0.152075,0.119975,0.108208,0.506096,0.0114154,0.0844216,0.412325,0.909764,0.312206,0.628358,0.76287,0.452359,0.931785,0.91051,0.665477,0.509888,0.40674,0.0961861,0.530704,0.946863,0.607239,0.68815,0.601149,0.271917,0.738024,0.339059,0.326171,0.25045,0.359457,0.659629,0.768765,0.102718,0.500532,0.905426,0.366921,0.906231,0.249191,0.493373,0.0654078,0.403331,0.501271,0.488864,0.772643,0.940073,0.576778,0.63912,0.928167,0.312828,0.42468,0.659369,0.173204,0.336532,0.546187,0.757681,0.81787,0.352047,0.30562,0.549357,0.327764,0.896808,0.00857699,0.096202,0.807799,0.0308818,0.593781,0.215761,0.430258,0.141364,0.728345,0.151701,0.53357,0.934639,0.718697,0.424927,0.314683,0.261301,0.495524,0.126993,0.0264572,0.111785,0.215414,0.365241,0.298469,0.372512,0.31265,0.429901,0.500408,0.889664,0.474012,0.0311486,0.622973,0.482314,0.417569,0.0843344,0.109173,0.316978,0.0248241,0.978988,0.159522,0.158587,0.533675,0.257718,0.121991,0.670527,0.685279,0.709976,0.142226,0.965004,0.856082,0.199248,0.0180962,0.0449957,0.9107,0.954863,0.958604,0.522146,0.783883,0.414264,0.347444,0.454371,0.444223,0.589788,0.835738,|0.872493,0.328486,0.238666,0.776101,0.21033,0.537021,0.514292,0.931629,0.761888,0.452678,0.037536,0.17593,0.510005,0.0526462,0.157917,0.826438,0.461113,0.870097,0.0384592,0.63614,0.111111,0.119211,0.141647,0.925932,0.486312,0.557188,0.00960577,0.315252,0.863989,0.872554,0.200786,0.188843,0.792353,0.140637,0.612601,0.4957,0.280175,0.392233,0.646857,0.557729,0.154247,0.915642,0.972598,0.882438,0.297048,0.413949,0.382801,0.37316,0.225614,0.697986,0.865315,0.976673,0.732024,0.340006,0.430419,0.342448,0.580065,0.421472,0.589452,0.249839,0.986282,0.0136615,0.425758,0.459847,0.57947,0.662804,0.490385,0.515368,0.489968,0.48434,0.0767735,0.652067,0.38387,0.551269,0.943332,0.383364,0.439334,0.109392,0.353137,0.0136319,0.470516,0.397312,0.233694,0.745535,0.902546,0.773616,0.0171141,0.395927,0.753313,0.405808,0.99467,0.0397497,0.190474,0.535729,0.178667,0.437147,0.544646,0.90021,0.721651,0.769624,0.132916,0.23887,0.948994,0.53837,0.724086,0.928344,0.0649067,0.382564,0.993397,0.966951,0.0637705,0.467588,0.953915,0.829651,0.0491176,0.49777,0.181847,0.258909,0.204065,0.964902,0.920605,0.0964193,0.556684,0.490595,0.875094,0.555323,0.413827,0.653073,0.457229,0.715442,0.579311,0.0113779,0.889749,0.912516,0.59566,0.120126,0.277263,0.927109,0.354188,0.31763,0.596256,0.971639,0.702248,0.763147,0.690997,0.934608,0.39983,0.559926,0.010258,0.173048,0.638764,0.889882,0.290371,0.389958,0.827945,0.946613,0.351294,0.204207,0.351527,0.994799,0.317713,0.529821,0.349464,0.918202,0.700106,0.838315,0.444555,0.652024,0.916973,0.0744553,0.301331,0.397691,0.489709,0.289974,0.772881,0.258095,0.492158,0.418293,0.774783,0.869362,0.583484,0.603692,0.265032,0.962321,0.0342213,0.742223,0.947128,0.770107,0.558622,0.296457,0.0435379,0.431823,0.575676,0.570988,0.630583,0.357972,0.353417,0.462959,0.428237,0.654263,0.499192,0.585212,0.776304,0.417587,0.834074,0.817227,0.186678,0.320823,0.624515,0.53696,0.21729,0.049804,0.2552,0.492555,0.909926,0.331392,0.233159,0.890097,0.154176,0.291446,0.605385,0.0687743,0.0763573,0.749111,0.248563,0.470738,0.719071,0.424696,0.74292,0.769928,0.652106,0.294374,0.149235,0.0323057,0.700862,0.476981,0.263496,0.329942,0.88216,0.0890353,0.79411,0.856727,0.103314,0.810064,0.901171,0.170108,0.096846,0.296963,0.426995,0.578907,0.0260267,0.743669,0.941453,0.355619,0.471976,0.181643,0.516917,0.119264,0.846009,0.567223,0.74033,0.238737,0.499451,0.238633,0.983989,0.803889,0.966651,0.0972707,0.653546,0.0362569,0.297495,0.923406,0.522922,0.632859,0.491799,0.161696,0.108408,0.0893366,0.964377,0.365216,0.819034,0.75412,0.813151,0.965809,0.80023,0.452746,0.430236,0.176811,0.714784,0.0343689,0.447703,0.459419,0.493361,0.469026,0.828486,0.0543069,0.251196,0.993492,0.97122,0.482915,0.0270194,0.600137,0.261386,0.189227,0.722272,0.0095551,0.185019,0.862592,0.290101,0.874345,0.946439,0.344435,0.146628,0.524877,0.00533551,0.897505,0.686607,0.340488,0.467708,0.689576,0.155423,0.756244,0.449497,0.696259,0.323942,0.482469,0.57307,0.0126892,0.20469,0.00134945,0.963487,0.456838,0.694303,0.870527,0.602331,0.627553,0.733345,0.426098,0.882044,0.582322,0.24599,0.264286,0.276041,0.378574,0.245963,0.58328,0.714377,0.711486,0.573563,0.36104,0.272293,0.0872127,0.123515,0.518439,0.254436,0.194744,0.17185,0.315469,0.674527,0.477228,0.775083,0.348323,0.570282,0.793004,0.680163,0.283928,0.526704,0.399162,0.272645,0.320773,0.221147,0.909397,0.264395,0.526384,0.112353,0.935592,0.0380793,0.25958,0.202269,0.767153,0.554755,0.990019,0.229315,0.796999,0.0133966,0.518227,0.112791,0.344723,0.69702,0.35515,0.948536,0.0162289,0.0356677,0.646933,0.43924,0.83616,0.976047,0.641365,0.599645,0.232652,0.79941,0.981541,0.351014,0.340824,0.295386,0.539364,0.343,0.266073,0.373007,0.246098,0.448811,0.767446,0.635759,0.436009,0.201271,0.725227,0.459048,0.243543,0.368419,0.950165,0.194361,0.519461,0.396139,0.230068,0.169773,0.0496637,0.152785,0.424451,0.304707,0.498712,0.54683,0.599106,0.315833,0.517088,0.932975,0.443397,0.851354,0.0197706,0.977789,0.344682,0.977985,0.645473,0.462716,0.536187,0.896405,0.409821,0.367063,0.733825,0.123139,0.422623,0.273996,0.718759,0.709179,0.0980485,0.403519,0.832269,0.17125,0.547392,0.949944,0.575935,0.613883,0.614973,0.038499,0.0987147,0.71586,0.88328,0.758616,0.898102,0.775912,0.311181,0.149395,0.0638179,0.116227,0.006859,0.537467,0.728702,0.180095,0.828834,0.90433,0.232887,0.609747,0.839065,0.729697,0.0480706,0.155118,0.447886,0.326398,0.212896,0.824406,0.299905,0.905331,0.228784,0.711003,0.177218,0.460941,0.261551,0.399862,0.7995,0.206699,0.432954,0.303154,0.265144,0.466001,0.638126,0.0441034,0.912449,0.0562768,0.775874,0.0181116,0.194136,0.77182,0.393817,0.170522,0.140023,0.318451,0.660497,0.205499,0.234826,0.738671,0.757705,0.434218,0.544653,0.65923,0.531273,0.555409,0.691636,0.617856,0.83407,0.596955,0.781536,0.768814,0.191749,0.34906,0.757952,0.0267933,0.716101,0.0233665,0.0383483,0.514068,0.0732975,0.520107,0.766349,0.5322,0.528563,0.197671,0.179581,0.0597425,0.277175,0.223584,0.942144,0.817383,0.816459,0.56187,0.136683,0.108609,0.17043,0.554445,0.5708,0.809337,0.0192789,0.138406,0.617171,0.0941623,0.340641,0.335388,0.728787,0.311317,0.199682,0.666077,0.173467,0.296553,0.957087,0.476466,0.0514902,0.484967,0.0691745,0.249705,0.160182,0.957086,0.112198,0.622476,0.502066,0.856324,0.073381,0.713481,0.754939,0.148601,0.244768,0.432257,0.00233209,0.88046,0.309094,0.3567,0.261299,0.997802,0.280764,0.427087,0.31169,0.874229,0.928558,0.270979,0.89167,0.797627,0.151278,0.219106,0.595923,0.231275,0.985396,0.155606,0.0592333,0.892033,0.0757734,0.0257858,0.91023,0.762878,0.728227,0.294467,0.285326,0.0301248,0.613794,0.317963,0.297619,0.298231,0.484716,0.586886,0.0876149,0.254902,0.110964,0.0844514,0.251852,0.47777,0.746801,0.286143,0.624669,0.209448,0.0406994,0.29941,0.695755,0.362897,0.00286639,0.0384663,0.18534,0.0894075,0.194814,0.57104,0.866484,0.0960894,0.266038,0.961069,0.330089,0.859652,0.258052,0.0167817,0.535515,0.326129,0.684419,0.334128,0.517263,0.723442,0.400608,0.798174,0.751373,0.475352,0.966163,0.905467,0.213254,0.838836,0.562864,0.236265,0.740499,0.12643,0.121692,0.361049,0.667096,0.330742,0.151139,0.341258,0.402806,0.345661,0.465957,0.600541,0.327043,0.242417,0.743483,0.525906,0.800834,0.6025,0.863873,0.486257,0.581175,0.137613,0.79783,0.528011,0.264665,0.0128217,0.0570381,0.388113,0.804878,0.917992,0.86391,0.298547,0.883657,0.14713,0.552033,0.678932,0.0160472,0.27991,0.453227,0.0700402,0.873501,0.711297,0.543342,0.656956,0.195718,0.433502,0.60745,0.908257,0.878415,0.652644,0.468479,0.783489,0.155218,0.585872,0.996786,0.695906,0.494709,0.0249504,0.632244,0.307134,0.955942,0.774638,0.0478471,0.328233,0.161814,0.972012,0.391038,0.829206,0.15421,0.0864067,0.796177,0.57811,0.530118,0.76711,0.0216485,0.173408,0.799489,0.996743,0.552606,0.304206,0.153665,0.14567,0.235934,0.949873,0.130987,0.0208969,0.588715,0.760283,0.997959,0.576781,0.249837,0.800362,0.748286,0.911131,0.0647804,0.206271,0.513792,0.9481,0.586164,0.580624,0.164676,0.0290112,0.0434517,0.658315,0.144513,0.120294,0.690602,0.0575249,0.991574,0.820261,0.707912,0.694472,0.479756,0.0397276,0.131084,0.971008,0.694741,0.565258,0.304898,0.736548,0.0163274,0.697846,0.82602,0.55034,0.124824,0.118954,0.503688,0.883884,0.817547,0.473462,0.288217,0.310328,0.437495,0.800823,0.0760199,0.249916,0.72949,0.118887,0.543135,0.743092,0.10485,0.0550814,0.190966,0.395317,0.862556,0.358679,0.207367,0.630629,0.408713,0.34406,0.187414,0.83442,0.746733,0.649694,0.190988,0.383899,0.238141,0.47352,0.401552,0.970411,0.399172,0.725594,0.0070008,0.562855,0.283609,0.0768024,0.264051,0.203217,0.944858,0.501972,0.885434,0.668034,0.152107,0.597639,0.356514,0.839599,0.93181,0.227802,0.255717,0.716499,0.29972,0.0620468,0.109014,0.99897,0.817459,0.411397,0.448713,0.174537,0.318496,0.340091,0.952132,0.0196906,0.456525,0.152733,0.435389,0.462078,0.300388,0.331966,0.571347,0.730003,0.165213,0.0337866,0.928148,0.548177,0.464151,0.689633,0.366802,0.208096,0.309293,0.869725,0.291396,0.185104,0.315865,0.606995,0.266313,0.110019,0.0126897,0.205517,0.717636,0.917653,0.831914,0.528175,0.132447,0.513956,0.870441,0.431339,0.409444,0.0559269,0.941257,0.959533,0.732745,0.546037,0.550572,0.883051,0.416936,0.97165,0.94214,0.0268092,0.309987,0.663701,0.673899,0.926094,0.683112,0.0825477,0.322171,0.792014,0.218978,0.976416,0.00180155,0.986641,0.0941408,0.381084,0.743044,0.872757,0.405818,0.542784,0.240304,0.452951,0.155876,0.320614,0.141995,0.274502,0.489437,0.11385,0.537216,0.0585108,0.244075,0.166397,0.905122,0.0341942,0.82839,0.345288,0.432219,0.977547,0.291375,0.353367,0.677636,0.495958,0.309333,0.171756,0.383406,0.356589,0.770114,0.277088,0.251397,0.074846,0.585424,0.0974182,0.0426528,0.276866,0.797603,0.312157,0.513379,0.767757,0.511507,0.171553,0.571255,0.441491,0.72026,0.936186,0.381278,0.0360897,0.770336,0.378792,0.753678,0.0432442,0.212619,0.418045,0.582133,0.656309,0.828499,0.356923,0.968476,0.752471,0.593418,0.289214,0.0384535,0.682431,0.725283,0.609971,0.515884,0.365673,0.973842,0.65841,0.490555,0.317088,0.397256,0.895583,0.417123,0.0872288,0.58564,|0.115899,0.638903,0.390374,0.910157,0.261924,0.322328,0.608523,0.454221,0.847151,0.879068,0.817632,0.483755,0.693203,0.197397,0.229958,0.325079,0.460909,0.684037,0.413651,0.830386,0.137202,0.395689,0.46135,0.660619,0.898825,0.926001,0.510154,0.147133,0.436572,0.491082,0.193588,0.940739,0.657288,0.489357,0.628552,0.285057,0.399044,0.115942,0.969477,0.924938,0.16469,0.389567,0.75903,0.387705,0.709328,0.695482,0.239644,0.758149,0.791198,0.823153,0.538489,0.835732,0.633704,0.636379,0.533307,0.642333,0.0485516,0.356331,0.0747888,0.996884,0.300027,0.413871,0.686172,0.467012,0.988631,0.826062,0.542911,0.337376,0.636104,0.299715,0.577834,0.756003,0.544662,0.970303,0.0604597,0.894971,0.6771,0.81504,0.119442,0.364325,0.415535,0.733677,0.111603,0.761619,0.605873,0.576743,0.206659,0.440265,0.22732,0.418467,0.508683,0.261353,0.0857441,0.337467,0.19155,0.872625,0.0298644,0.31309,0.821722,0.959425,0.480247,0.109226,0.670579,0.348149,0.00718564,0.138678,0.533775,0.502516,0.750893,0.0436625,0.670404,0.601909,0.845792,0.191731,0.0361235,0.567765,0.0136521,0.417793,0.532123,0.939611,0.873678,0.930282,0.927412,0.390387,0.0437092,0.71296,0.129164,0.162666,0.105921,0.802607,0.858953,0.560006,0.722475,0.169731,0.926379,0.222439,0.27386,0.68331,0.69476,0.0180188,0.262406,0.653409,0.534698,0.166857,0.722748,0.0340514,0.793537,0.89463,0.254083,0.544292,0.185417,0.359774,0.524481,0.991124,0.113648,0.342874,0.554944,0.0766082,0.735632,0.659742,0.390812,0.429538,0.0487294,0.248681,0.720326,0.351426,0.549097,0.0787033,0.299314,0.446858,0.153674,0.744714,0.571484,0.310504,0.511112,0.712148,0.28912,0.880988,0.98229,0.907259,0.267989,0.78004,0.908522,0.296602,0.615247,0.975212,0.35509,0.629216,0.122558,0.0645722,0.361431,0.364513,0.618529,0.456751,0.285858,0.824692,0.093006,0.987449,0.194263,0.591768,0.247634,0.50444,0.303255,0.505507,0.988996,0.791942,0.75818,0.322007,0.124518,0.0713089,0.634819,0.189099,0.437988,0.369202,0.333888,0.760032,0.657887,0.473914,0.659304,0.307567,0.899117,0.86977,0.66827,0.776188,0.285254,0.802747,0.987203,0.248523,0.771038,0.385706,0.388905,0.514821,0.299906,0.855899,0.820657,0.294113,0.254479,0.385922,0.528602,0.498035,0.713743,0.914739,0.756096,0.587512,0.578887,0.390908,0.787166,0.988669,0.286812,0.76371,0.0974397,0.499245,0.148433,0.373384,0.979733,0.573212,0.368201,0.557886,0.11457,0.654709,0.909509,0.141321,0.801744,0.344234,0.889501,0.817828,0.965274,0.0560151,0.830956,0.412423,0.703457,0.743792,0.494131,0.64952,0.965902,0.330662,0.0492893,0.0653874,0.740708,0.710501,0.183437,0.869936,0.152812,0.649541,0.321919,0.706248,0.504256,0.750258,0.928479,0.155968,0.756351,0.768802,0.0962384,0.688002,0.343894,0.278613,0.601287,0.198484,0.60256,0.844829,0.475829,0.235279,0.477045,0.0693061,0.902528,0.238599,0.00353307,0.359988,0.273334,0.754187,0.843202,0.923524,0.98006,0.359516,0.131493,0.690396,0.357339,0.237468,0.0574892,0.52857,0.4353,0.9472,0.734613,0.693834,0.11534,0.713775,0.272657,0.926634,0.0396804,0.444169,0.540305,0.291262,0.968007,0.165737,0.233335,0.06343,0.619837,0.928777,0.820748,0.485055,0.293711,0.70253,0.115626,0.091258,0.0990263,0.0365592,0.230805,0.0108652,0.0401608,0.646696,0.6099,0.0978189,0.586591,0.529421,0.15075,0.330941,0.716905,0.297381,0.344027,0.706946,0.838895,0.146491,0.467829,0.192033,0.718972,0.366312,0.223656,0.329123,0.834425,0.494411,0.86082,0.923853,0.985064,0.873918,0.472481,0.0277449,0.0842044,0.0124485,0.393459,0.452958,0.332981,0.884642,0.827124,0.366305,0.452283,0.436664,0.827126,0.825347,0.867984,0.398093,0.565101,0.486746,0.58203,0.476312,0.00750786,0.907471,0.471178,0.721925,0.199715,0.653048,0.268036,0.582179,0.748884,0.638554,0.196441,0.583615,0.198045,0.381313,0.720079,0.878567,0.823088,0.825331,0.989387,0.569548,0.720049,0.690783,0.318853,0.903045,0.702842,0.67365,0.0247404,0.346766,0.595796,0.0192933,0.13552,0.456241,0.62614,0.0240741,0.935486,0.667994,0.0377271,0.191655,0.877848,0.63888,0.830636,0.190455,0.938263,0.593912,0.611971,0.554269,0.0694461,0.149325,0.903186,0.460632,0.203406,0.28403,0.142995,0.0485444,0.167352,0.124531,0.0246838,0.579323,0.873895,0.717976,0.293819,0.0149751,0.739333,0.886552,0.329001,0.448806,0.661169,0.63205,0.710895,0.499422,0.983597,0.656321,0.369142,0.681482,0.649834,0.993907,0.0897188,0.107806,0.637605,0.878654,0.1606,0.0363513,0.0331818,0.284668,0.462408,0.779185,0.57474,0.903984,0.223582,0.0727346,0.356063,0.438256,0.389845,0.547422,0.626288,0.815474,0.0161049,0.305087,0.762216,0.119606,0.165049,0.398068,0.492338,0.950868,0.138161,0.407984,0.386742,0.915724,0.024152,0.0612546,0.624267,0.0722172,0.364477,0.163155,0.837529,0.503473,0.832931,0.828059,0.178843,0.7499,0.599839,0.206961,0.0799527,0.685771,0.261586,0.796058,0.729676,0.639126,0.364923,0.100454,0.346937,0.933692,0.96184,0.334139,0.525911,0.0236881,0.220282,0.568879,0.778684,0.870506,0.461833,0.686984,0.68184,0.232247,0.533469,0.58133,0.636447,0.518767,0.991883,0.0621949,0.784085,0.202982,0.891677,0.824389,0.234918,0.967908,0.598632,0.178972,0.0225875,0.462131,0.623302,0.713067,0.758239,0.424223,0.0792171,0.244216,0.405357,0.177453,0.869834,0.00267994,0.831242,0.399303,0.725686,0.906952,0.742829,0.79215,0.400075,0.071689,0.92775,0.532297,0.987716,0.697238,0.450547,0.143405,0.605004,0.846212,0.553424,0.144498,0.5589,0.646145,0.48582,0.815158,0.433554,0.604006,0.930749,0.412879,0.737408,0.924478,0.778957,0.505629,0.92684,0.616932,0.577945,0.5863,0.372572,0.76113,0.304854,0.711557,0.543219,0.188343,0.681931,0.172395,0.208961,0.376097,0.632281,0.612396,0.180539,0.393959,0.399687,0.795197,0.114647,0.317393,0.635174,0.858284,0.839991,0.667325,0.556312,0.940819,0.200702,0.0418797,0.408126,0.756758,0.425431,0.0420761,0.526689,0.314658,0.453382,0.0190274,0.488343,0.805593,0.315065,0.492114,0.525849,0.647982,0.286996,0.397354,0.295358,0.740967,0.432576,0.152449,0.0942397,0.306113,0.0360947,0.230628,0.63695,0.928892,0.328675,0.647075,0.511418,0.213646,0.377908,0.936501,0.191715,0.251735,0.192664,0.0218491,0.231874,0.654938,0.00895804,0.478168,0.719093,0.23898,0.127292,0.788494,0.336547,0.140892,0.230046,0.99936,0.960519,0.751749,0.241682,0.673126,0.853114,0.827678,0.72426,0.0835473,0.916001,0.251198,0.902787,0.780513,0.355947,0.998253,0.494894,0.476847,0.555335,0.789684,0.519156,0.940261,0.920222,0.763132,0.894722,0.481023,0.859656,0.699976,0.510464,0.092281,0.594306,0.603868,0.00758165,0.692589,0.509047,0.0597603,0.503149,0.295106,0.312619,0.975783,0.41093,0.613643,0.958247,0.117724,0.844156,0.854402,0.10428,0.734561,0.488195,0.897026,0.472058,0.685403,0.851513,0.333047,0.0195516,0.494191,0.135035,0.899386,0.142676,0.738257,0.727149,0.911878,0.990119,0.792831,0.330591,0.122802,0.876273,0.980692,0.569035,0.00307554,0.604014,0.990905,0.132078,0.526306,0.219835,0.745772,0.336341,0.0947244,0.816889,0.717659,0.660521,0.429424,0.974182,0.491237,0.630062,0.849564,0.506777,0.997134,0.829994,0.673423,0.0869202,0.878471,0.0815148,0.292058,0.107363,0.983831,0.925901,0.676428,0.546075,0.806753,0.367249,0.112153,0.0722611,0.424088,0.0902147,0.164038,0.839193,0.0581034,0.885323,0.763229,0.110569,0.934627,0.801579,0.973337,0.4693,0.585437,0.192489,0.304293,0.356191,0.768792,0.0804228,0.34036,0.511471,0.610232,0.430155,0.384807,0.791928,0.232673,0.38076,0.321319,0.555844,0.339192,0.713283,0.84288,0.688542,0.86969,0.364703,0.0392727,0.100768,0.165009,0.000986636,0.980155,0.115267,0.463864,0.0110162,0.242992,0.563301,0.49861,0.119202,0.827537,0.0751242,0.314457,0.441264,0.433062,0.274557,0.076506,0.187141,0.328137,0.839187,0.177207,0.858456,0.642198,0.125601,0.749332,0.775709,0.116899,0.993023,0.278684,0.757661,0.345582,0.0924713,0.752922,0.0096159,0.438501,0.265381,0.939135,0.255118,0.869531,0.288227,0.827467,0.901191,0.0902992,0.797313,0.279014,0.223513,0.12696,0.775239,0.847091,0.223478,0.113666,0.780393,0.86257,0.547167,0.278348,0.871486,0.568175,0.188547,0.748006,0.828578,0.509385,0.658926,0.501725,0.867979,0.117907,0.463205,0.279798,0.712326,0.054122,0.365079,0.280512,0.424336,0.104801,0.0226076,0.871162,0.784669,0.7994,0.568111,0.329454,0.0522177,0.207085,0.00668508,0.548502,0.953515,0.0351149,0.237714,0.411134,0.258426,0.959948,0.307177,0.566221,0.699894,0.453615,0.305591,0.862312,0.276225,0.743041,0.398786,0.256838,0.157774,0.106679,0.16143,0.300874,0.721543,0.73676,0.874379,0.886541,0.962117,0.165457,0.314699,0.449791,0.842439,0.203529,0.72345,0.000426471,0.173781,0.0817225,0.275929,1.07884e-05,0.251485,0.0710939,0.826142,0.801697,0.845565,0.194608,0.506604,0.15142,0.684079,0.0682157,0.680675,0.933143,0.872394,0.746065,0.974004,0.56257,0.206888,0.876821,0.218289,0.0624,0.349782,0.983779,0.152907,0.247813,0.459745,0.103274,0.318292,0.66678,0.24712,0.461738,0.757659,0.663674,0.00670975,0.886111,0.733569,0.778553,0.0741846,0.0118234,0.167833,0.670544,0.949298,0.123234,0.83354,0.483512,0.263851,0.146358,0.713996,0.307849,0.0429721,0.106633,0.160198,0.936114,0.599342,0.752884,0.456173,0.539923,0.660136,0.932508,0.94687,0.918237,0.694577,0.890888,0.826593,0.453835,0.744408,0.664771,0.322234,0.689389,0.415348,0.0998558,0.696591,0.609907,|0.715284,0.164628,0.851277,0.948079,0.0749195,0.208018,0.749852,0.44289,0.172597,0.753557,0.413765,0.506838,0.12698,0.88453,0.213769,0.709787,0.999615,0.269084,0.112112,0.26208,0.90998,0.807518,0.411561,0.397396,0.530222,0.591835,0.0753356,0.683529,0.576278,0.942023,0.890212,0.894071,0.296254,0.19171,0.211102,0.299627,0.0582286,0.0998374,0.668402,0.715667,0.141092,0.147204,0.0937774,0.842633,0.463494,0.393503,0.462355,0.430148,0.342628,0.675917,0.849498,0.38617,0.91926,0.959331,0.980273,0.729561,0.311442,0.637107,0.611414,0.266744,0.716284,0.275738,0.298692,0.318382,0.292819,0.333408,0.548912,0.539253,0.597277,0.517412,0.452887,0.653471,0.768663,0.900573,0.749159,0.559348,0.282295,0.419595,0.662967,0.368654,0.455325,0.942997,0.916984,0.996265,0.470199,0.399912,0.980356,0.351263,0.683192,0.00488889,0.531859,0.3773,0.194993,0.190732,0.229419,0.978891,0.219529,0.197887,0.269726,0.93691,0.0146342,0.41283,0.380121,0.37017,0.898224,0.11232,0.225657,0.200112,0.988878,0.680958,0.531931,0.39867,0.438065,0.323214,0.732778,0.195122,0.34133,0.358803,0.192852,0.633208,0.622667,0.730136,0.302005,0.386937,0.511681,0.705992,0.826941,0.300822,0.576399,0.874062,0.689337,0.0229902,0.509423,0.798278,0.294582,0.490184,0.982838,0.309769,0.515538,0.186149,0.877662,0.212584,0.0215127,0.290684,0.807824,0.845335,0.0997722,0.398826,0.479181,0.590369,0.909549,0.757932,0.399456,0.325992,0.158102,0.34222,0.358791,0.572034,0.102575,0.165458,0.336895,0.429751,0.192253,0.681437,0.840441,0.250448,0.606162,0.792318,0.858845,0.734073,0.5228,0.200473,0.976671,0.41974,0.541279,0.935856,0.899547,0.565064,0.0909534,0.760845,0.600103,0.782788,0.740236,0.553826,0.187183,0.82656,0.958315,0.784508,0.417008,0.925373,0.577314,0.354911,0.308006,0.896168,0.881475,0.799403,0.941768,0.438462,0.695532,0.170567,0.0451902,0.755954,0.813291,0.276427,0.738907,0.451629,0.970501,0.543886,0.340276,0.525793,0.930163,0.243108,0.243443,0.428871,0.513785,0.601901,0.394875,0.815145,0.874008,0.665994,0.789643,0.665169,0.682624,0.408412,0.515283,0.0295222,0.513755,0.980819,0.627608,0.361039,0.273561,0.196904,0.821818,0.517931,0.569541,0.443518,0.139126,0.390382,0.543745,0.318255,0.149209,0.972519,0.931104,0.216372,0.0512727,0.894246,0.808639,0.917931,0.255325,0.229292,0.477003,0.0667762,0.776195,0.972299,0.75747,0.215207,0.757558,0.322916,0.279098,0.914486,0.470861,0.962193,0.351376,0.409069,0.0933115,0.909269,0.788156,0.617921,0.799494,0.290087,0.270903,0.965502,0.679357,0.865578,0.285807,0.258267,0.079639,0.894928,0.563898,0.945975,0.58317,0.0683523,0.992974,0.723942,0.138279,0.298762,0.182439,0.154487,0.786272,0.0516803,0.897702,0.675401,0.722382,0.422245,0.500096,0.457416,0.715583,0.0535591,0.375812,0.763367,0.0736418,0.991911,0.142065,0.183931,0.418222,0.0185466,0.320678,0.24423,0.265265,0.623685,0.128038,0.345823,0.731645,0.0728756,0.122981,0.938606,0.970484,0.253797,0.770916,0.0821546,0.959273,0.394902,0.777043,0.200387,0.893182,0.587269,0.0997414,0.168441,0.744062,0.871842,0.43611,0.748047,0.593275,0.739509,0.923799,0.267127,0.303616,0.376842,0.635876,0.684395,0.299058,0.403246,0.564951,0.495723,0.772513,0.488748,0.68707,0.41741,0.575121,0.423284,0.194865,0.639896,0.00705087,0.699457,0.664022,0.796563,0.0736196,0.686997,0.85471,0.629964,0.836253,0.0802807,0.270032,0.52408,0.608225,0.702306,0.468742,0.606385,0.499553,0.824077,0.550449,0.460614,0.175578,0.699578,0.0479558,0.670787,0.715705,0.684681,0.288774,0.679272,0.478063,0.525903,0.479471,0.0540516,0.368054,0.179817,0.431742,0.43082,0.27888,0.145525,0.176579,0.17378,0.285774,0.467673,0.883352,0.988729,0.664111,0.675678,0.223942,0.312923,0.839101,0.915361,0.792318,0.581672,0.528333,0.989289,0.203796,0.261578,0.872991,0.853027,0.306928,0.799847,0.607344,0.203833,0.848262,0.557868,0.655123,0.704304,0.269296,0.991477,0.949667,0.494499,0.479011,0.452949,0.373241,0.74881,0.945477,0.592176,0.784122,0.5673,0.667233,0.379213,0.139872,0.394939,0.374256,0.418907,0.825486,0.653042,0.608992,0.527774,0.886696,0.518279,0.51534,0.983743,0.424361,0.106967,0.862446,0.260107,0.288719,0.383152,0.509609,0.894062,0.206917,0.538414,0.169829,0.800687,0.578896,0.51977,0.258392,0.318568,0.822217,0.788623,0.378476,0.802216,0.757133,0.633877,0.211169,0.297821,0.367935,0.61608,0.608266,0.941409,0.846923,0.97454,0.769607,0.679487,0.224025,0.254343,0.620658,0.998459,0.569923,0.358327,0.334417,0.16988,0.713088,0.651431,0.317983,0.532258,0.102147,0.674736,0.10294,0.512428,0.961308,0.377979,0.698015,0.780949,0.681298,0.459587,0.692604,0.534493,0.486375,0.414801,0.989372,0.561866,0.425202,0.79651,0.963418,0.117832,0.772357,0.277155,0.216947,0.925223,0.252512,0.319035,0.154109,0.883669,0.174486,0.829828,0.192678,0.430069,0.724194,0.516578,0.285942,0.457384,0.341736,0.0235155,0.196501,0.677358,0.378895,0.81352,0.169488,0.122029,0.920511,0.674298,0.941303,0.0789341,0.454602,0.960542,0.153129,0.937129,0.92088,0.725466,0.758056,0.396531,0.297656,0.684922,0.519562,0.407876,0.643684,0.780855,0.373664,0.126076,0.624348,0.181899,0.325875,0.661703,0.595788,0.130433,0.722134,0.441688,0.2975,0.755777,0.937639,0.472755,0.445039,0.0369938,0.0740134,0.922301,0.838162,0.957449,0.863675,0.0412934,0.864287,0.597936,0.690568,0.878759,0.732056,0.814547,0.0215058,0.698335,0.218465,0.546793,0.755265,0.614542,0.735672,0.672048,0.651937,0.5502,0.937566,0.114416,0.409522,0.190568,0.690517,0.309001,0.137341,0.501105,0.901376,0.0219628,0.366502,0.0443911,0.497881,0.402454,0.481147,0.240958,0.881777,0.21545,0.0515668,0.423907,0.832356,0.500203,0.375596,0.958478,0.9479,0.00791103,0.789662,0.631655,0.0184354,0.235048,0.828345,0.947436,0.757676,0.137278,0.935717,0.284867,0.606666,0.644053,0.999211,0.39864,0.162082,0.890877,0.304327,0.113997,0.160139,0.767682,0.107622,0.0544136,0.291715,0.542223,0.562911,0.293901,0.0640863,0.60331,0.979395,0.563122,0.605218,0.84292,0.365832,0.551586,0.64301,0.246494,0.997331,0.307889,0.46475,0.72342,0.181986,0.0352723,0.611623,0.468973,0.482673,0.88139,0.38405,0.899199,0.969634,0.0256495,0.187678,0.20568,0.493113,0.0082708,0.597655,0.384116,0.327972,0.610297,0.39618,0.0598204,0.985796,0.386654,0.748994,0.333005,0.24448,0.953361,0.458926,0.448821,0.98236,0.685152,0.0703984,0.36638,0.409158,0.141654,0.82722,0.665953,0.893682,0.642334,0.951951,0.881146,0.805774,0.88569,0.0959336,0.270482,0.915119,0.286217,0.586798,0.973952,0.376819,0.83731,0.42828,0.928386,0.488351,0.840448,0.807149,0.541302,0.38425,0.0409834,0.341247,0.313583,0.467253,0.0505885,0.889512,0.426466,0.784462,0.932965,0.510182,0.355347,0.229058,0.9338,0.164002,0.982869,0.848325,0.562918,0.821408,0.84766,0.466435,0.180933,0.421173,0.380884,0.716898,0.905318,0.383848,0.580259,0.852315,0.13409,0.0626258,0.160184,0.337564,0.368629,0.805466,0.07399,0.706979,0.592361,0.45563,0.855036,0.0223737,0.731195,0.565582,0.472792,0.141606,0.661642,0.607196,0.356018,0.177173,0.250323,0.371842,0.41715,0.0852137,0.85868,0.0540572,0.393314,0.0838104,0.330178,0.425803,0.153823,0.294577,0.0778781,0.0565216,0.0041548,0.121531,0.0685316,0.117448,0.931444,0.925827,0.817097,0.188753,0.044888,0.634302,0.564035,0.922027,0.475213,0.77937,0.871801,0.887472,0.822265,0.704728,0.454343,0.380069,0.497795,0.482008,0.222958,0.124321,0.348466,0.112239,0.243418,0.899201,0.793562,0.922436,0.76899,0.303102,0.963162,0.949038,0.52359,0.0397562,0.514421,0.848682,0.792832,0.285533,0.27303,0.439976,0.56842,0.915233,0.747597,0.993699,0.281018,0.626807,0.610302,0.565462,0.209089,0.561712,0.7042,0.851666,0.0322182,0.711648,0.869341,0.681407,0.0828753,0.063267,0.00770664,0.878644,0.716899,0.316411,0.969431,0.669612,0.55329,0.395295,0.851241,0.715193,0.328509,0.10494,0.528817,0.707603,0.694642,0.543978,0.192382,0.0788013,0.80467,0.267604,0.86483,0.442331,0.353654,0.350894,0.593579,0.178652,0.0121959,0.365976,0.198845,0.171583,0.0542161,0.430949,0.750175,0.400356,0.969302,0.235384,0.506531,0.379005,0.667581,0.549199,0.237141,0.913182,0.940212,0.408122,0.549605,0.718116,0.687312,0.559104,0.383343,0.286703,0.103456,0.392909,0.13109,0.123109,0.952374,0.691244,0.36515,0.513375,0.0964563,0.948358,0.352494,0.383868,0.240805,0.613338,0.895365,0.139693,0.619628,0.148607,0.381198,0.0627614,0.645492,0.710051,0.670219,0.988454,0.463261,0.181834,0.497307,0.465411,0.946471,0.356127,0.972325,0.669997,0.778072,0.369675,0.404845,0.810388,0.229386,0.638753,0.250991,0.321532,0.666081,0.654495,0.424206,0.811562,0.758773,0.986054,0.424145,0.988924,0.731037,0.13046,0.754124,0.941815,0.84806,0.0422499,0.45716,0.759918,0.942864,0.260101,0.415078,0.692735,0.51918,0.86946,0.237666,0.202896,0.401183,0.852219,0.244466,0.171911,0.118386,0.497568,0.427541,0.544197,0.268471,0.067443,0.469315,0.383264,0.813756,0.144742,0.0352755,0.165969,0.929236,0.195378,0.949134,0.69462,0.122034,0.946369,0.515057,0.752192,0.715913,0.43504,0.827927,0.729523,0.428495,0.623624,0.892746,0.0763384,0.00297672,0.516096,0.588955,0.434284,0.763185,0.70164,0.745938,0.240181,0.16761,0.65834,0.160963,0.344728,0.133358,0.191279,0.800816,0.475504,0.891629,0.0178846,0.339379,0.756471,0.928687,|0.371437,0.018144,0.95453,0.89367,0.729943,0.218591,0.703325,0.165428,0.778832,0.822605,0.312285,0.544843,0.610263,0.208597,0.87656,0.359115,0.0449314,0.850919,0.609312,0.558605,0.260233,0.479039,0.839626,0.106833,0.756403,0.287605,0.260818,0.683402,0.231289,0.916106,0.598615,0.970654,0.553299,0.17375,0.180439,0.790749,0.19565,0.284691,0.120383,0.432455,0.492949,0.220059,0.168236,0.0587333,0.234459,0.299392,0.781157,0.686452,0.274275,0.462846,0.572731,0.536611,0.127346,0.586837,0.800036,0.873827,0.251434,0.297275,0.099834,0.730645,0.0773318,0.00153965,0.829658,0.36578,0.32917,0.633554,0.990113,0.412207,0.401889,0.49432,0.0252489,0.808678,0.594546,0.57978,0.338413,0.667887,0.321344,0.656169,0.336663,0.406686,0.69125,0.863767,0.753195,0.758885,0.875133,0.358094,0.963636,0.444203,0.341392,0.331205,0.738099,0.377409,0.503275,0.743545,0.0548159,0.614574,0.240859,0.978341,0.812181,0.533636,0.352906,0.311876,0.671435,0.157916,0.585016,0.469302,0.200498,0.220522,0.0301412,0.882592,0.0794043,0.586207,0.525124,0.650069,0.658787,0.387572,0.0858265,0.92895,0.0478476,0.826524,0.810127,0.646656,0.047501,0.836638,0.505891,0.585699,0.162984,0.145551,0.478755,0.965434,0.325569,0.730988,0.912089,0.770119,0.48724,0.344773,0.0652082,0.808572,0.192336,0.74316,0.651336,0.566456,0.870112,0.295755,0.550045,0.219828,0.625053,0.242596,0.519789,0.648476,0.806189,0.639707,0.449332,0.419005,0.818791,0.67896,0.179727,0.619336,0.58194,0.784192,0.309719,0.378439,0.560123,0.636107,0.330364,0.0776939,0.304124,0.71012,0.0910141,0.754486,0.175649,0.407976,0.901091,0.120087,0.0512782,0.93058,0.330101,0.820563,0.268761,0.0181217,0.529014,0.654158,0.409553,0.354032,0.805851,0.854984,0.414838,0.784862,0.574524,0.779058,0.386033,0.0985274,0.242531,0.885847,0.583405,0.60402,0.134778,0.561193,0.762899,0.284005,0.194374,0.0954517,0.667028,0.990672,0.034647,0.293091,0.893761,0.41076,0.903445,0.624326,0.486345,0.214372,0.37503,0.504854,0.512372,0.986458,0.783339,0.368716,0.803753,0.100875,0.49237,0.455497,0.432609,0.182541,0.840978,0.579098,0.661821,0.327707,0.386496,0.478825,0.457843,0.892297,0.0131176,0.718982,0.258425,0.488975,0.990645,0.419392,0.960725,0.894977,0.540449,0.128225,0.995979,0.501125,0.00332618,0.867943,0.393336,0.659746,0.411106,0.54638,0.175153,0.529473,0.698201,0.76033,0.506761,0.49686,0.795464,0.870554,0.0335918,0.8456,0.0835886,0.30617,0.25271,0.43689,0.828674,0.0858076,0.0764968,0.646738,0.247239,0.642382,0.600615,0.596262,0.662388,0.866579,0.30357,0.942927,0.00974739,0.136636,0.109745,0.833794,0.318077,0.802945,0.305505,0.0688882,0.985928,0.494607,0.298979,0.881635,0.68644,0.744129,0.118625,0.188866,0.575075,0.814604,0.893968,0.100234,0.312765,0.098098,0.363939,0.195859,0.626485,0.863322,0.802388,0.512475,0.133262,0.293796,0.34799,0.659784,0.731241,0.353225,0.701086,0.247905,0.564888,0.863003,0.554516,0.658444,0.752208,0.0759426,0.0669923,0.0422905,0.642112,0.927098,0.387605,0.244236,0.685625,0.100662,0.42965,0.395899,0.375807,0.693327,0.627435,0.334955,0.307723,0.54762,0.846317,0.209935,0.856676,0.670883,0.349673,0.372463,0.450812,0.217276,0.0432972,0.424419,0.622684,0.206784,0.852665,0.843037,0.328093,0.588152,0.555722,0.873947,0.530159,0.867339,0.49811,0.610675,0.569623,0.513078,0.00704849,0.815855,0.446316,0.00785464,0.658068,0.166565,0.289642,0.647781,0.572747,0.335262,0.649742,0.184131,0.596745,0.370814,0.851213,0.866777,0.516226,0.617643,0.31866,0.914462,0.351205,0.596597,0.0400881,0.874814,0.0206934,0.0958585,0.638857,0.583083,0.475588,0.302637,0.497332,0.809348,0.700323,0.218953,0.505513,0.0681345,0.737267,0.0687144,0.625435,0.553175,0.70124,0.559811,0.895522,0.74816,0.862113,0.698084,0.0735154,0.621729,0.828097,0.0407631,0.574561,0.366245,0.990419,0.878793,0.578163,0.366741,0.00458837,0.578481,0.560659,0.864792,0.465396,0.990423,0.496694,0.331436,0.319457,0.119115,0.0588665,0.007182,0.619852,0.0503843,0.781822,0.0489619,0.885835,0.740809,0.405435,0.28848,0.9475,0.254335,0.737025,0.35132,0.902267,0.101925,0.300786,0.128525,0.907831,0.564778,0.23033,0.83951,0.433117,0.930697,0.0204983,0.759796,0.658839,0.345226,0.947925,0.954857,0.670601,0.232554,0.828762,0.790874,0.628557,0.598373,0.535054,0.413426,0.792699,0.987183,0.214909,0.784168,0.989969,0.08001,0.868219,0.468766,0.386031,0.67456,0.435556,0.197762,0.819619,0.3252,0.593778,0.379847,0.268322,0.605791,0.737749,0.600222,0.475994,0.386624,0.0565916,0.340475,0.103907,0.521588,0.867221,0.589245,0.697906,0.933725,0.176568,0.425403,0.828894,0.269927,0.246583,0.19762,0.173472,0.877208,0.829258,0.887245,0.400762,0.551203,0.733207,0.693137,0.0906165,0.853138,0.0679548,0.811874,0.0721948,0.878318,0.874538,0.279689,0.809459,0.542512,0.66448,0.800444,0.758073,0.488651,0.816905,0.0266931,0.742853,0.818478,0.466301,0.707249,0.452753,0.985715,0.195542,0.806767,0.5409,0.517061,0.470916,0.802551,0.171887,0.645428,0.916836,0.315366,0.688301,0.0417528,0.0829332,0.476713,0.605968,0.687563,0.0732877,0.415943,0.961847,0.078334,0.0373138,0.716182,0.421764,0.227477,0.499729,0.0219627,0.0506895,0.162915,0.390373,0.0601443,0.505268,0.216468,0.526598,0.44355,0.928501,0.375522,0.638986,0.513518,0.855002,0.738842,0.438815,0.251224,0.753454,0.427325,0.0724711,0.956404,0.478323,0.997443,0.224151,0.731283,0.701522,0.904402,0.0854484,0.777726,0.664913,0.0561971,0.956295,0.549801,0.64127,0.927516,0.666661,0.343476,0.748072,0.972571,0.315624,0.316308,0.366708,0.962763,0.00994515,0.288214,0.26932,0.884121,0.6285,0.0663958,0.9869,0.919222,0.863076,0.276156,0.161612,0.937617,0.57675,0.0635656,0.18486,0.721363,0.193795,0.834615,0.159505,0.607326,0.923536,0.0031963,0.681774,0.602195,0.227471,0.875795,0.578036,0.291424,0.35206,0.526672,0.91005,0.164552,0.459648,0.862558,0.950412,0.136989,0.163227,0.370503,0.524886,0.864467,0.840562,0.92251,0.666037,0.484839,0.484901,0.997309,0.295597,0.122209,0.536606,0.197539,0.752385,0.285029,0.944855,0.951084,0.538249,0.466124,0.313361,0.973258,0.43144,0.825147,0.183794,0.509528,0.228631,0.107334,0.76015,0.0369654,0.396895,0.874589,0.161739,0.163459,0.851431,0.539848,0.367555,0.164511,0.675372,0.433416,0.710233,0.675197,0.248964,0.140081,0.506319,0.513097,0.396768,0.562518,0.657623,0.525306,0.219108,0.158892,0.663505,0.294997,0.271657,0.841475,0.0686863,0.23985,0.544909,0.0254917,0.377962,0.986919,0.0961613,0.0459904,0.682151,0.837348,0.350203,0.548248,0.906976,0.238609,0.534832,0.00435305,0.715547,0.7018,0.824858,0.978074,0.560068,0.825545,0.863158,0.424604,0.527535,0.532517,0.918785,0.769679,0.987829,0.614918,0.748113,0.0800859,0.218599,0.897692,0.679734,0.0915564,0.231842,0.393194,0.722951,0.508632,0.371324,0.776654,0.392659,0.27582,0.944867,0.930396,0.865973,0.416666,0.915604,0.502979,0.162713,0.852758,0.386838,0.0366239,0.359067,0.756961,0.131527,0.24308,0.00329685,0.718481,0.120421,0.568044,0.175421,0.962191,0.561155,0.0773516,0.613702,0.704842,0.879922,0.963926,0.329838,0.0238537,0.835147,0.676343,0.480378,0.86732,0.38452,0.344685,0.00565475,0.442456,0.0831912,0.558362,0.173331,0.623291,0.137703,0.461771,0.0608778,0.0387588,0.839931,0.231664,0.442393,0.630891,0.627299,0.241104,0.699921,0.398964,0.0837651,0.0916202,0.0533437,0.714497,0.281502,0.170319,0.0189561,0.991185,0.343243,0.0352553,0.610525,0.298556,0.0616251,0.164438,0.561211,0.16736,0.913922,0.951043,0.81364,0.145289,0.938866,0.522732,0.115418,0.223992,0.0166765,0.873821,0.00824851,0.0506439,0.422111,0.0712457,0.392107,0.451229,0.423233,0.810729,0.469407,0.694703,0.848373,0.344219,0.597656,0.0647818,0.664985,0.38354,0.372463,0.538655,0.28466,0.496008,0.297943,0.475895,0.578932,0.653462,0.78124,0.459013,0.252943,0.657105,0.335104,0.575914,0.550995,0.208772,0.337288,0.199687,0.186224,0.652182,0.761763,0.0945297,0.950792,0.855506,0.29109,0.384415,0.925219,0.226875,0.223442,0.319201,0.784351,0.725709,0.661323,0.398591,0.648929,0.911488,0.196864,0.152249,0.479224,0.905146,0.428842,0.679476,0.225756,0.588053,0.426936,0.523862,0.382765,0.209166,0.332962,0.542981,0.659255,0.922435,0.747871,0.698683,0.820928,0.896016,0.831266,0.771703,0.601898,0.784927,0.255173,0.909853,0.33972,0.28188,0.110946,0.185559,0.434459,0.965092,0.10055,0.547426,0.000834346,0.699827,0.878902,0.957371,0.497601,0.164365,0.833392,0.820305,0.275298,0.785263,0.192444,0.679948,0.513638,0.497761,0.549349,0.812995,0.588454,0.072888,0.0649693,0.422089,0.436552,0.657673,0.264897,0.998445,0.0442843,0.235213,0.0392705,0.0861668,0.751073,0.754953,0.729449,0.278176,0.328044,0.310072,0.671116,0.542369,0.730565,0.991812,0.466879,0.147839,0.85081,0.711714,0.899021,0.571108,0.479006,0.598931,0.26151,0.045318,0.156919,0.440848,0.911364,0.506525,0.193702,0.559013,0.541933,0.26991,0.220617,0.699749,0.986539,0.152833,0.144026,0.879384,0.795349,0.892363,0.916874,0.605354,0.850926,0.26958,0.344559,0.76058,0.387717,0.574096,0.638621,0.943968,0.903308,0.0672998,0.988109,0.643994,0.149377,0.143134,0.08478,0.938484,0.581726,0.078742,0.647401,0.128112,0.264443,0.748527,0.822802,0.31869,0.383154,0.325886,0.806369,0.30336,0.574278,0.671314,0.393729,0.274979,0.174261,0.764143,0.412496,0.291558,0.28507,0.427802,|0.597758,0.800374,0.245518,0.140793,0.903717,0.0752117,0.46042,0.189628,0.312659,0.244171,0.305262,0.00397986,0.412721,0.958914,0.998071,0.0577518,0.94488,0.109813,0.742371,0.599741,0.121337,0.461498,0.146927,0.68334,0.0848168,0.757386,0.091558,0.924301,0.47246,0.486453,0.523032,0.384189,0.704964,0.77202,0.81538,0.21002,0.451808,0.0830613,0.388394,0.870727,0.473659,0.462481,0.0431862,0.182359,0.332435,0.306294,0.0197392,0.578095,0.51845,0.770908,0.122728,0.618978,0.567194,0.2214,0.874053,0.862068,0.118103,0.0239055,0.117134,0.0947075,0.864348,0.316074,0.596865,0.67022,0.892393,0.935041,0.58637,0.189159,0.0388545,0.647053,0.533633,0.164285,0.991733,0.0474196,0.973754,0.0615544,0.841246,0.2999,0.351755,0.518379,0.139296,0.827962,0.379193,0.447226,0.162791,0.927379,0.959355,0.346961,0.831981,0.505915,0.972308,0.544372,0.509591,0.349427,0.635346,0.410537,0.49191,0.721957,0.398536,0.152225,0.487044,0.963419,0.155845,0.454955,0.695377,0.324411,0.0591471,0.432176,0.543891,0.492653,0.179569,0.447188,0.451278,0.959029,0.0459211,0.663331,0.245393,0.49146,0.71979,0.569892,0.886085,0.834611,0.580481,0.653016,0.913493,0.594862,0.0169611,0.677386,0.422783,0.613762,0.498222,0.588654,0.991699,0.630957,0.255806,0.372597,0.963921,0.564771,0.836318,0.250874,0.267503,0.683891,0.269158,0.503776,0.0680564,0.0306414,0.707029,0.0331123,0.254559,0.869282,0.428659,0.094611,0.508014,0.816654,0.723228,0.361592,0.977088,0.462768,0.486812,0.145984,0.876714,0.635194,0.183424,0.966694,0.309076,0.374785,0.0363411,0.575042,0.0394997,0.0490803,0.636715,0.257546,0.538612,0.156771,0.625717,0.515447,0.920513,0.642157,0.789071,0.696664,0.0498704,0.870719,0.411967,0.801816,0.593351,0.470041,0.0794914,0.65841,0.105733,0.103405,0.657888,0.673918,0.117697,0.569246,0.393369,0.638754,0.939655,0.419674,0.623121,0.763476,0.86893,0.740564,0.673599,0.204155,0.733747,0.535591,0.90773,0.284302,0.513029,0.322633,0.471659,0.345208,0.338381,0.309568,0.207767,0.656709,0.750217,0.220079,0.0289558,0.129592,0.656979,0.71239,0.60445,0.948642,0.604404,0.625077,0.757813,0.739908,0.833413,0.287035,0.0658332,0.24905,0.723104,0.774413,0.399918,0.304897,0.902345,0.0415676,0.23529,0.200122,0.565815,0.533419,0.935846,0.341341,0.818823,0.616135,0.713644,0.312734,0.62173,0.36623,0.588624,0.984545,0.8717,0.280606,0.188054,0.173872,0.06582,0.430072,0.252202,0.178812,0.661242,0.26203,0.00347877,0.494047,0.612987,0.308094,0.241754,0.795558,0.690333,0.140421,0.553217,0.0888996,0.90067,0.665261,0.602979,0.749316,0.674679,0.219391,0.446856,0.90068,0.825764,0.911045,0.0356414,0.976046,0.474665,0.260591,0.964629,0.407747,0.725076,0.0387064,0.468687,0.237906,0.185855,0.0933369,0.0497203,0.898588,0.0945119,0.829697,0.718537,0.655241,0.536747,0.331268,0.622444,0.888461,0.795448,0.597422,0.133494,0.241898,0.0112275,0.74099,0.234862,0.942024,0.585545,0.545259,0.0545499,0.263969,0.256343,0.148882,0.469012,0.443158,0.520568,0.492049,0.481838,0.759999,0.605772,0.651322,0.828159,0.703014,0.431159,0.700886,0.406432,0.967012,0.0881129,0.138856,0.00442302,0.483443,0.723081,0.345582,0.858626,0.263487,0.721536,0.786822,0.351525,0.0674781,0.999109,0.438289,0.4994,0.813358,0.876792,0.0122049,0.972933,0.0980573,0.656333,0.981032,0.754088,0.32685,0.498452,0.33736,0.863527,0.536832,0.573696,0.0616741,0.877691,0.056386,0.77424,0.332717,0.147166,0.22534,0.0920966,0.515988,0.549764,0.125684,0.762758,0.807987,0.583908,0.958388,0.632893,0.915597,0.0960334,0.416741,0.280927,0.36428,0.732024,0.0492832,0.00703961,0.583299,0.314583,0.0712269,0.91855,0.737172,0.0554647,0.516862,0.440959,0.486733,0.756422,0.129885,0.799666,0.938137,0.0948812,0.897542,0.348194,0.698321,0.0506014,0.413089,0.0391946,0.669299,0.601578,0.363218,0.0415524,0.593235,0.411299,0.0739691,0.354087,0.685715,0.893705,0.348738,0.719697,0.821372,0.68848,0.134228,0.0447134,0.352703,0.416928,0.668525,0.741579,0.898276,0.714953,0.621832,0.243251,0.834286,0.756458,0.826333,0.842183,0.315164,0.0228238,0.909092,0.639358,0.68114,0.997275,0.931521,0.833551,0.138106,0.425838,0.335945,0.409521,0.120176,0.106441,0.698138,0.162956,0.6539,0.143992,0.247299,0.440102,0.440252,0.32713,0.557461,0.941368,0.145429,0.0529569,0.997635,0.941851,0.228999,0.499307,0.268454,0.112551,0.095966,0.14866,0.934538,0.551023,0.427067,0.367171,0.00636548,0.123717,0.899657,0.679469,0.142199,0.579106,0.928178,0.97216,0.745168,0.075978,0.63943,0.531457,0.406386,0.0597958,0.309003,0.853968,0.667266,0.674956,0.653623,0.292829,0.687784,0.219259,0.646747,0.422579,0.871116,0.341379,0.525456,0.43692,0.454262,0.790766,0.0896955,0.896838,0.281928,0.68585,0.105813,0.306397,0.729952,0.56939,0.872134,0.170638,0.391013,0.97409,0.831422,0.14191,0.141424,0.22805,0.511388,0.670311,0.545048,0.365137,0.847141,0.517492,0.663566,0.0981218,0.851214,0.57018,0.987834,0.088677,0.739683,0.784567,0.651345,0.228019,0.0898592,0.941075,0.391963,0.683412,0.639661,0.581569,0.0296052,0.408563,0.932101,0.217029,0.761484,0.308564,0.684221,0.204834,0.645209,0.282682,0.691162,0.0444598,0.778533,0.0370876,0.900155,0.284615,0.349789,0.0106801,0.366055,0.162781,0.375021,0.460772,0.312796,0.3742,0.735795,0.817081,0.330523,0.122024,0.314792,0.126536,0.397892,0.0726227,0.363239,0.228428,0.398931,0.476506,0.823708,0.802396,0.0891021,0.948959,0.148859,0.84477,0.500885,0.9145,0.948486,0.603013,0.989766,0.896989,0.48311,0.254877,0.887385,0.61353,0.730317,0.638156,0.824619,0.482275,0.42367,0.0882846,0.881886,0.286789,0.418304,0.33123,0.550743,0.102479,0.916938,0.910103,0.342023,0.901262,0.115431,0.164616,0.768738,0.817012,0.45958,0.242854,0.196293,0.0315229,0.869232,0.595025,0.810744,0.358129,0.620608,0.148917,0.277442,0.509664,0.236462,0.297909,0.358031,0.659425,0.675835,0.675532,0.974945,0.258296,0.0192715,0.0875827,0.456582,0.623081,0.429898,0.198501,0.379695,0.0945595,0.688985,0.529407,0.443179,0.148352,0.15846,0.827236,0.144104,0.11234,0.993201,0.578941,0.45445,0.227953,0.757559,0.776233,0.58995,0.342236,0.480256,0.679478,0.433628,0.929649,0.794113,0.0370269,0.973012,0.563053,0.927687,0.852886,0.0677733,0.0933508,0.159584,0.581705,0.614113,0.831688,0.120473,0.958325,0.126699,0.572697,0.337977,0.107867,0.965662,0.660605,0.455773,0.101504,0.858385,0.0906888,0.977967,0.294732,0.3202,0.756776,0.456552,0.855834,0.58565,0.503951,0.793787,0.933653,0.700453,0.777222,0.281858,0.919169,0.768096,0.184171,0.836172,0.677168,0.599716,0.710645,0.441658,0.484753,0.965824,0.810218,0.573117,0.805594,0.349135,0.805542,0.708133,0.673888,0.640541,0.683501,0.2359,0.0968643,0.734319,0.0617961,0.650495,0.656811,0.850584,0.987587,0.0385826,0.432863,0.310324,0.805863,0.674769,0.643035,0.378988,0.378382,0.234168,0.68924,0.0428578,0.551517,0.666064,0.681495,0.684913,0.780325,0.692214,0.16152,0.589059,0.654315,0.121074,0.594492,0.378882,0.46096,0.281294,0.0967637,0.91134,0.901865,0.319938,0.533991,0.774659,0.170022,0.896346,0.807178,0.423593,0.329835,0.811373,0.960178,0.643475,0.368026,0.626617,0.826424,0.221514,0.979247,0.031299,0.488865,0.0020591,0.577807,0.290621,0.525274,0.242135,0.805257,0.0636005,0.566234,0.639463,0.0319664,0.159212,0.439753,0.588347,0.0404372,0.233725,0.00553292,0.770095,0.318774,0.79881,0.359275,0.312013,0.534591,0.936605,0.39907,0.6996,0.585048,0.883395,0.213533,0.573994,0.631576,0.816149,0.158404,0.751471,0.509664,0.715692,0.232192,0.868203,0.973407,0.920959,0.26322,0.384835,0.516617,0.166845,0.121233,0.74839,0.890557,0.742076,0.369035,0.692656,0.873208,0.392604,0.478835,0.817111,0.226153,0.782137,0.872699,0.00925547,0.764254,0.0236007,0.281821,0.192895,0.547222,0.00673616,0.933807,0.674912,0.430134,0.564696,0.401615,0.409729,0.747556,0.200919,0.0770206,0.646006,0.339752,0.623201,0.416284,0.0931285,0.503803,0.657133,0.877262,0.54392,0.624988,0.0154397,0.520241,0.122795,0.900874,0.378906,0.831245,0.901854,0.309772,0.530807,0.278405,0.51516,0.20656,0.232335,0.322837,0.424939,0.578763,0.736846,0.75792,0.632412,0.255334,0.00265586,0.491135,0.635769,0.677446,0.417861,0.541998,0.948756,0.0284182,0.674558,0.245066,0.817527,0.921225,0.366033,0.283161,0.16579,0.160643,0.194784,0.896437,0.127217,0.28966,0.867777,0.660307,0.746256,0.277769,0.866733,0.508898,0.86932,0.919431,0.821485,0.935654,0.454379,0.900099,0.64666,0.129596,0.73024,0.582364,0.542986,0.478468,0.679091,0.179789,0.174539,0.863389,0.0725979,0.729887,0.850763,0.822221,0.882654,0.0406862,0.122186,0.974711,0.495303,0.102695,0.401379,0.285447,0.87683,0.0609524,0.643595,0.428656,0.527517,0.709584,0.211583,0.763305,0.382066,0.491973,0.635278,0.172033,0.956695,0.476413,0.565751,0.839466,0.356421,0.150015,0.595248,0.40903,0.256112,0.325749,0.339891,0.852655,0.247985,0.963646,0.0188934,0.964132,0.186938,0.886677,0.823253,0.89633,0.868636,0.828173,0.452899,0.675677,0.217981,0.436536,0.256525,0.107938,0.181263,0.923155,0.887538,0.745716,0.470235,0.875045,0.672017,0.527003,0.0352793,0.721894,0.110925,0.398452,0.269536,0.964054,0.647171,0.757328,0.945645,0.114762,0.318693,0.811915,0.365289,0.734398,0.605999,0.947901,0.0171244,0.486841,0.425873,0.549299,0.026984,0.0435454,0.572936,0.350089,0.144658,0.222655,0.658658,|0.8364,0.791398,0.814813,0.616409,0.890526,0.975988,0.153059,0.373816,0.564161,0.184138,0.552897,0.0100641,0.665365,0.729429,0.41476,0.814897,0.435139,0.207075,0.234286,0.641976,0.280192,0.214861,0.918933,0.938159,0.593611,0.617215,0.0563241,0.105179,0.722091,0.811485,0.49143,0.198992,0.676463,0.0452165,0.434695,0.852996,0.207665,0.82123,0.848324,0.0257745,0.856798,0.349549,0.384438,0.437995,0.260817,0.02588,0.728765,0.22325,0.387516,0.149114,0.0530895,0.572033,0.584265,0.42121,0.0120657,0.10092,0.630965,0.134836,0.00442958,0.426693,0.909469,0.344057,0.940589,0.666894,0.723502,0.0247113,0.281977,0.505851,0.701237,0.764295,0.539761,0.376657,0.686353,0.275277,0.881685,0.170043,0.271285,0.0259421,0.0892282,0.798325,0.921006,0.768274,0.990762,0.0115363,0.224644,0.545451,0.960612,0.14964,0.43069,0.629124,0.231222,0.0928197,0.531562,0.510052,0.466979,0.406217,0.595338,0.971924,0.867513,0.913265,0.943102,0.138466,0.84941,0.0158386,0.662365,0.224413,0.954347,0.254893,0.470243,0.490086,0.862205,0.583945,0.502944,0.029097,0.995546,0.0571151,0.00659347,0.112988,0.980767,0.699912,0.268542,0.718362,0.795967,0.160974,0.0465162,0.739901,0.711556,0.300667,0.568209,0.830561,0.708293,0.63836,0.0980822,0.810304,0.836584,0.705929,0.126299,0.903045,0.936387,0.742059,0.614996,0.370865,0.768862,0.518692,0.182137,0.38129,0.100479,0.0945306,0.0538133,0.975208,0.229655,0.120774,0.367158,0.17868,0.96605,0.0592472,0.405746,0.684511,0.464556,0.478191,0.161001,0.347107,0.130676,0.674634,0.37044,0.229523,0.446735,0.19038,0.760674,0.567427,0.641511,0.305717,0.67921,0.491189,0.763786,0.53984,0.817117,0.0643743,0.136702,0.654731,0.615318,0.816133,0.633918,0.487533,0.937547,0.793026,0.309106,0.590644,0.671127,0.348651,0.816539,0.936471,0.0311058,0.442201,0.727412,0.716898,0.101631,0.562679,0.567224,0.572223,0.802544,0.931736,0.737668,0.949933,0.633344,0.42211,0.193129,0.116552,0.0357192,0.876684,0.656064,0.782611,0.476111,0.0216628,0.552412,0.919983,0.539764,0.241545,0.979169,0.796779,0.791575,0.673498,0.177838,0.605799,0.907783,0.804051,0.218538,0.635108,0.329872,0.8394,0.976905,0.102928,0.0188479,0.12145,0.973808,0.85179,0.141281,0.839096,0.221034,0.524803,0.920128,0.388682,0.0884441,0.109362,0.588849,0.96914,0.785091,0.113563,0.746408,0.311167,0.198759,0.0150205,0.901061,0.381909,0.791376,0.310568,0.593787,0.411355,0.525472,0.562902,0.0538548,0.88704,0.794548,0.175613,0.52325,0.962208,0.210426,0.529034,0.916033,0.79152,0.715725,0.678161,0.418695,0.879265,0.853341,0.945635,0.151123,0.819199,0.77889,0.334417,0.375296,0.412632,0.665583,0.174654,0.956653,0.626343,0.965269,0.920513,0.410512,0.32938,0.250142,0.488541,0.942495,0.357476,0.264046,0.806444,0.867937,0.956913,0.0508555,0.0623657,0.0237162,0.566045,0.707781,0.438842,0.657347,0.115557,0.401692,0.148755,0.875305,0.902131,0.089219,0.802867,0.902434,0.684284,0.113106,0.480247,0.313919,0.747684,0.309153,0.361033,0.618725,0.0490769,0.809923,0.524228,0.678211,0.537834,0.0485123,0.711321,0.292124,0.0273783,0.10221,0.509718,0.665672,0.227735,0.376441,0.867597,0.683785,0.705619,0.0807539,0.966261,0.306039,0.808398,0.998827,0.18152,0.164803,0.955894,0.932054,0.369239,0.404116,0.756337,0.962223,0.193222,0.366071,0.035378,0.392895,0.000984907,0.924415,0.803746,0.831255,0.623404,0.427225,0.502428,0.453111,0.585926,0.475672,0.376491,0.288844,0.850388,0.482743,0.527913,0.976301,0.859024,0.898559,0.959106,0.701818,0.646674,0.137045,0.733615,0.692938,0.0271652,0.433183,0.929238,0.844009,0.311391,0.0238715,0.300184,0.225444,0.45034,0.0147117,0.858079,0.765212,0.393977,0.850499,0.804484,0.0560937,0.681145,0.773556,0.932024,0.953446,0.499352,0.619261,0.819176,0.705493,0.826713,0.017658,0.119194,0.816916,0.620192,0.604451,0.949805,0.600874,0.820275,0.955659,0.577259,0.998252,0.779291,0.411062,0.605791,0.510438,0.806022,0.978725,0.0476279,0.959133,0.760414,0.936726,0.318552,0.467071,0.439798,0.395582,0.857846,0.275828,0.162149,0.436832,0.660048,0.402243,0.871877,0.609862,0.0600597,0.334367,0.533447,0.728017,0.745319,0.400842,0.370466,0.207202,0.895493,0.807718,0.521016,0.941145,0.846183,0.803164,0.8584,0.422177,0.759715,0.417629,0.621332,0.315793,0.33521,0.745179,0.92583,0.2352,0.795345,0.486561,0.730201,0.547676,0.426482,0.0308622,0.0230728,0.438628,0.6258,0.646003,0.303604,0.669565,0.216367,0.505213,0.423681,0.613881,0.169313,0.840541,0.528504,0.0628233,0.63483,0.746208,0.763247,0.990925,0.494735,0.634965,0.259449,0.168902,0.221819,0.736176,0.828244,0.0214942,0.153772,0.765265,0.806983,0.989519,0.473143,0.0618114,0.914968,0.801755,0.598631,0.557123,0.973192,0.323879,0.566448,0.612723,0.192077,0.0161521,0.0485502,0.373413,0.0616206,0.262031,0.97778,0.0461285,0.507188,0.7144,0.724546,0.3061,0.971374,0.682358,0.570338,0.661584,0.647764,0.304661,0.202224,0.234345,0.274502,0.287267,0.770321,0.992436,0.87869,0.344715,0.369787,0.39896,0.672413,0.684168,0.4275,0.96483,0.163333,0.321963,0.938842,0.490426,0.392823,0.531215,0.342507,0.695038,0.243926,0.216256,0.440281,0.704316,0.527507,0.513239,0.495667,0.17301,0.464683,0.492019,0.96722,0.619281,0.980746,0.793526,0.0508242,0.64935,0.500705,0.485173,0.499429,0.440525,0.808797,0.705542,0.0159209,0.260127,0.988228,0.0357206,0.757833,0.310488,0.250572,0.0605943,0.901356,0.305333,0.0109231,0.230793,0.796652,0.817674,0.0297672,0.572955,0.379913,0.0692779,0.230348,0.582203,0.703084,0.100593,0.24773,0.0995362,0.299648,0.415948,0.509482,0.610279,0.362093,0.240059,0.103066,0.0176901,0.94257,0.0137972,0.952995,0.58551,0.789401,0.493826,0.526802,0.883222,0.588063,0.0394704,0.763722,0.197128,0.622121,0.794434,0.753641,0.285291,0.90864,0.886578,0.522575,0.456677,0.648918,0.511074,0.719356,0.336228,0.15666,0.557179,0.382161,0.876357,0.87424,0.431214,0.252732,0.149646,0.166144,0.843475,0.995,0.677033,0.271334,0.121614,0.980665,0.436278,0.122482,0.510237,0.835419,0.593219,0.433684,0.367772,0.716843,0.104786,0.686124,0.529155,0.114514,0.607289,0.36293,0.415696,0.952399,0.542785,0.530981,0.0121746,0.983085,0.377058,0.338279,0.187398,0.951364,0.877564,0.434741,0.796186,0.729032,0.694864,0.823653,0.4096,0.96589,0.270594,0.0362015,0.32493,0.803232,0.0885359,0.875059,0.268332,0.110032,0.462712,0.232581,0.464436,0.050482,0.408555,0.206061,0.40084,0.416355,0.886615,0.156865,0.580801,0.886257,0.918733,0.404156,0.124418,0.185992,0.733504,0.189236,0.254771,0.73035,0.418934,0.199169,0.135942,0.992112,0.525148,0.139092,0.306395,0.0922343,0.468796,0.888428,0.759215,0.333356,0.512865,0.174569,0.693516,0.179845,0.345345,0.306787,0.842166,0.196952,0.330932,0.703496,0.898244,0.549684,0.567965,0.6847,0.802807,0.997483,0.150146,0.668198,0.812262,0.814357,0.219906,0.277739,0.637207,0.168576,0.843354,0.163679,0.547925,0.818758,0.456151,0.557429,0.693233,0.292205,0.925087,0.22689,0.740673,0.43057,0.0787539,0.887646,0.0360036,0.737822,0.782245,0.427023,0.798597,0.55695,0.558647,0.317595,0.357874,0.999334,0.361555,0.806826,0.222511,0.51163,0.78889,0.14332,0.700802,0.855477,0.945979,0.913143,0.527732,0.663318,0.622009,0.403904,0.103268,0.390335,0.926795,0.418921,0.746766,0.2141,0.308366,0.618199,0.424067,0.278998,0.465307,0.082581,0.218849,0.0633487,0.901875,0.0363054,0.830467,0.141564,0.382379,0.358218,0.952879,0.420932,0.673288,0.654732,0.235448,0.340491,0.808015,0.338542,0.416937,0.685828,0.486983,0.779074,0.274499,0.555821,0.291134,0.891004,0.651504,0.554421,0.833914,0.814018,0.496438,0.494689,0.0186541,0.260481,0.549834,0.432914,0.139494,0.0818709,0.446208,0.516042,0.986774,0.899721,0.792885,0.957148,0.27223,0.480888,0.871513,0.247503,0.198123,0.0412465,0.107806,0.614409,0.414269,0.0587576,0.365128,0.670563,0.01779,0.810085,0.290817,0.491145,0.698369,0.354496,0.981756,0.371842,0.94807,0.626762,0.668473,0.0482892,0.635154,0.533654,0.899467,0.359166,0.784275,0.73273,0.501116,0.437056,0.645786,0.81449,0.325689,0.518016,0.384661,0.799057,0.753976,0.832292,0.46827,0.821534,0.799868,0.824801,0.80242,0.0324005,0.292284,0.716297,0.833823,0.156599,0.677516,0.380792,0.302755,0.942279,0.417272,0.374453,0.324181,0.0666543,0.542125,0.130273,0.994632,0.474119,0.220186,0.8186,0.439055,0.489665,0.488941,0.547159,0.57659,0.212963,0.668049,0.0296175,0.704873,0.79602,0.325793,0.526934,0.994975,0.604927,0.405038,0.868342,0.158017,0.478973,0.112188,0.236331,0.255649,0.955398,0.881242,0.334115,0.779974,0.873219,0.466522,0.342894,0.790607,0.266387,0.285518,0.716245,0.00772375,0.17278,0.322061,0.0931316,0.367109,0.847661,0.283592,0.446665,0.36083,0.227084,0.634425,0.567636,0.139797,0.161426,0.16216,0.620445,0.689824,0.0990893,0.194241,0.620227,0.405354,0.62412,0.799754,0.132123,0.0730549,0.691865,0.760806,0.426899,0.347348,0.968752,0.0142826,0.764888,0.750136,0.108075,0.35136,0.293217,0.946953,0.263802,0.662217,0.598757,0.650769,0.271255,0.592252,0.0734425,0.787569,0.589586,0.566733,0.76274,0.985093,0.820696,0.72097,0.409059,0.416153,0.503247,0.114232,0.102776,0.80425,0.501202,0.601078,0.729729,0.562673,0.441663,0.991727,0.699153,0.84726,0.783006,0.620752,0.773498,0.366151,0.0660923,0.713519,0.739453,0.894333,0.978997,0.685034,0.722826,|0.343085,0.899909,0.756553,0.993859,0.831799,0.442316,0.582749,0.46705,0.54829,0.264121,0.61373,0.208173,0.0536352,0.323361,0.279573,0.772056,0.346016,0.455347,0.842143,0.574876,0.0271063,0.832132,0.856528,0.936155,0.480352,0.361177,0.589995,0.405529,0.736078,0.250145,0.696485,0.374992,0.0506355,0.998535,0.613722,0.447951,0.830931,0.960674,0.560673,0.569096,0.465362,0.0955673,0.305415,0.978498,0.495313,0.454948,0.271831,0.888708,0.38352,0.754604,0.471698,0.119319,0.299504,0.487727,0.629894,0.215425,0.643929,0.929164,0.797118,0.435322,0.0615701,0.332287,0.329174,0.100904,0.913012,0.580441,0.566326,0.679838,0.899576,0.874898,0.0819381,0.877268,0.0163023,0.671976,0.39777,0.552289,0.571093,0.831844,0.555577,0.29113,0.550282,0.823306,0.729296,0.653469,0.0822177,0.88661,0.0167154,0.52728,0.800738,0.303671,0.901947,0.904251,0.6046,0.99412,0.199385,0.193748,0.982678,0.831449,0.580015,0.259065,0.761633,0.10185,0.682918,0.680147,0.638803,0.717662,0.415022,0.142839,0.661381,0.744381,0.0761145,0.733021,0.953784,0.485311,0.377608,0.773513,0.1901,0.926688,0.46039,0.621476,0.654765,0.492533,0.412876,0.794421,0.0553957,0.789772,0.873967,0.87003,0.409302,0.943045,0.259854,0.86247,0.235593,0.272556,0.24138,0.497914,0.0361398,0.00252843,0.655856,0.992727,0.25991,0.642966,0.412053,0.748802,0.7677,0.423801,0.261185,0.935674,0.184896,0.770038,0.635844,0.10469,0.07372,0.618048,0.719087,0.188398,0.249012,0.831849,0.0285282,0.105507,0.0234021,0.246735,0.425516,0.625995,0.786481,0.121848,0.82546,0.426138,0.982478,0.847352,0.351384,0.359324,0.746342,0.431619,0.854728,0.795331,0.596283,0.000748456,0.889443,0.312423,0.00703883,0.0483235,0.424284,0.608286,0.5643,0.60744,0.932566,0.871816,0.516431,0.816639,0.897102,0.379169,0.650685,0.127888,0.944328,0.146076,0.769125,0.935829,0.342687,0.0758138,0.480841,0.976315,0.661437,0.61938,0.806053,0.369454,0.798174,0.513556,0.115516,0.460216,0.723326,0.403277,0.295931,0.508533,0.183563,0.810537,0.956696,0.398945,0.87878,0.652848,0.365488,0.123299,0.54764,0.717764,0.354554,0.934511,0.502069,0.874574,0.0785763,0.872493,0.101139,0.28066,0.487344,0.78535,0.916589,0.774346,0.276517,0.778306,0.452666,0.121692,0.343599,0.865478,0.520025,0.430773,0.526421,0.15742,0.233368,0.857526,0.515663,0.899345,0.52863,0.586044,0.567607,0.00639194,0.52416,0.903598,0.21928,0.505923,0.609572,0.615386,0.167291,0.788291,0.803786,0.0330076,0.287661,0.372872,0.245789,0.775063,0.28713,0.369117,0.833568,0.72044,0.493743,0.330338,0.789213,0.286343,0.785478,0.967875,0.17526,0.167208,0.91585,0.0876705,0.076168,0.968753,0.322355,0.955141,0.608814,0.974499,0.305192,0.961186,0.603005,0.732006,0.426306,0.0343117,0.362453,0.0488388,0.918792,0.866753,0.694148,0.146606,0.614401,0.270926,0.733989,0.87097,0.201009,0.441198,0.365029,0.586191,0.24188,0.908423,0.988488,0.258158,0.384003,0.316539,0.940902,0.592889,0.634,0.262674,0.404159,0.565596,0.169758,0.969495,0.580365,0.257994,0.102135,0.655232,0.211911,0.282617,0.271532,0.298127,0.592673,0.549472,0.66847,0.911219,0.614942,0.0529237,0.987063,0.640636,0.653734,0.7031,0.667705,0.722378,0.82501,0.851972,0.476212,0.984462,0.205668,0.795905,0.430049,0.999766,0.209081,0.146063,0.377134,0.334804,0.180798,0.326347,0.740982,0.305141,0.321587,0.873359,0.279573,0.731714,0.991336,0.137396,0.433249,0.822755,0.803177,0.648215,0.702955,0.310756,0.717375,0.0108627,0.928203,0.780045,0.134221,0.360838,0.202833,0.253184,0.0152205,0.687177,0.170457,0.265765,0.936874,0.64743,0.39624,0.71989,0.830818,0.802731,0.216221,0.0980307,0.699121,0.0606753,0.311157,0.491155,0.56038,0.922503,0.547319,0.766459,0.359321,0.626217,0.704288,0.551844,0.122378,0.740563,0.229367,0.592554,0.540025,0.252193,0.00493252,0.810333,0.206654,0.2477,0.063869,0.0111588,0.787864,0.882288,0.300268,0.257048,0.280855,0.0672457,0.644535,0.212424,0.650776,0.787687,0.416344,0.904031,0.961788,0.922435,0.260314,0.287307,0.29695,0.342479,0.0399296,0.414123,0.885084,0.775603,0.695358,0.858544,0.931363,0.610499,0.533348,0.36849,0.406731,0.831751,0.270278,0.434534,0.207205,0.601796,0.40567,0.786153,0.252461,0.971495,0.261412,0.491153,0.503137,0.304933,0.613669,0.537986,0.203694,0.539194,0.571926,0.691973,0.979652,0.347422,0.96442,0.220172,0.234322,0.368053,0.646844,0.192203,0.289618,0.108506,0.870116,0.0323022,0.133805,0.754833,0.819687,0.821479,0.436195,0.399821,0.640075,0.0656517,0.858146,0.224041,0.270212,0.739913,0.86135,0.161067,0.394572,0.547548,0.918552,0.819741,0.262263,0.192449,0.780059,0.883588,0.599222,0.196509,0.324005,0.216194,0.311336,0.724271,0.914984,0.266635,0.430888,0.291091,0.90929,0.777934,0.666635,0.582496,0.428782,0.308534,0.164982,0.886528,0.245214,0.824576,0.207936,0.678026,0.14151,0.163412,0.23958,0.855463,0.737552,0.563474,0.583654,0.152648,0.925773,0.391477,0.653795,0.81684,0.808861,0.453166,0.345946,0.194924,0.0835626,0.904271,0.405758,0.352144,0.343536,0.837702,0.746485,0.140839,0.201147,0.637508,0.321662,0.277016,0.541106,0.91307,0.638305,0.637366,0.395896,0.20585,0.899777,0.838724,0.333524,0.648587,0.71276,0.192434,0.140911,0.135749,0.00122893,0.341216,0.568603,0.836569,0.592417,0.452579,0.948127,0.279919,0.854391,0.842909,0.800585,0.667967,0.781174,0.436838,0.465473,0.240217,0.725983,0.744637,0.78776,0.954536,0.330651,0.302628,0.480632,0.46852,0.177256,0.0813738,0.757152,0.821764,0.419392,0.972352,0.869227,0.450469,0.0139524,0.286151,0.75713,0.422318,0.785699,0.0582691,0.788562,0.968305,0.344272,0.862712,0.317527,0.0791761,0.7491,0.35976,0.542107,0.298457,0.521562,0.705936,0.574851,0.48758,0.939197,0.0933297,0.279517,0.195505,0.785492,0.0635876,0.904862,0.256431,0.105212,0.365992,0.982529,0.961306,0.928505,0.110564,0.0966489,0.41585,0.116083,0.713781,0.483975,0.342962,0.249109,0.340279,0.85811,0.189816,0.331448,0.704685,0.378529,0.51625,0.806587,0.555346,0.0709258,0.0826863,0.0188772,0.512488,0.656109,0.613028,0.80905,0.786961,0.512434,0.171513,0.627774,0.957346,0.544539,0.630559,0.258486,0.485881,0.896727,0.554383,0.00278825,0.81446,0.411295,0.661536,0.278244,0.482074,0.906698,0.0174953,0.075941,0.6263,0.107959,0.0573665,0.622954,0.0102655,0.933881,0.11584,0.118492,0.178383,0.418286,0.531774,0.0380968,0.272575,0.811664,0.652963,0.10837,0.0207497,0.0861924,0.692213,0.722681,0.693916,0.161947,0.83399,0.855738,0.577905,0.422396,0.562382,0.807933,0.938915,0.505829,0.614176,0.297103,0.356516,0.280197,0.630493,0.692367,0.214994,0.30071,0.0973513,0.261742,0.481515,0.0124688,0.245393,0.563259,0.587655,0.978299,0.450184,0.527202,0.188862,0.143029,0.909949,0.668334,0.806306,0.0802532,0.0212936,0.599828,0.0402873,0.563751,0.05645,0.727699,0.729552,0.552529,0.106998,0.8627,0.488718,0.564211,0.973466,0.925901,0.438861,0.907502,0.107851,0.403815,0.313882,0.665253,0.456113,0.00714117,0.890658,0.680382,0.273672,0.633146,0.74362,0.605335,0.512475,0.409009,0.309809,0.298667,0.162788,0.178521,0.476869,0.198374,0.7005,0.172472,0.913406,0.185528,0.191289,0.376311,0.342651,0.274693,0.732709,0.523289,0.639751,0.813014,0.0577202,0.489442,0.389887,0.180127,0.303989,0.218647,0.613291,0.798298,0.2893,0.144347,0.80579,0.901632,0.478944,0.955375,0.834011,0.224454,0.119421,0.791629,0.118151,0.339801,0.475609,0.539743,0.495702,0.731466,0.774942,0.104707,0.595581,0.968131,0.176436,0.882571,0.746007,0.935901,0.227589,0.458061,0.0589893,0.737932,0.831087,0.073456,0.2528,0.765179,0.330664,0.435777,0.291885,0.822058,0.943103,0.475781,0.877405,0.301835,0.00603926,0.277515,0.831654,0.646163,0.772281,0.289464,0.641581,0.315439,0.583504,0.728766,0.877374,0.234233,0.691445,0.326096,0.00405306,0.28001,0.481386,0.290265,0.245356,0.414839,0.386377,0.869254,0.130668,0.985447,0.933275,0.60227,0.815725,0.610045,0.630292,0.324688,0.214271,0.152604,0.29095,0.0884486,0.0700008,0.191478,0.827892,0.273355,0.94179,0.212409,0.611572,0.319765,0.695469,0.0359788,0.862719,0.674978,0.555211,0.536134,0.00449914,0.0441236,0.515176,0.420868,0.955477,0.778254,0.966913,0.5067,0.449553,0.530644,0.778299,0.55755,0.591784,0.834493,0.94311,0.309334,0.370152,0.669424,0.538619,0.169556,0.335102,0.755375,0.191044,0.182576,0.963163,0.104947,0.643528,0.15417,0.575466,0.136572,0.122757,0.557156,0.372553,0.833991,0.517468,0.0228661,0.0819802,0.423598,0.628598,0.375581,0.0411874,0.856359,0.321121,0.0819864,0.837168,0.646036,0.773302,0.826641,0.101453,0.280152,0.769155,0.310849,0.469141,0.389485,0.559602,0.181204,0.911539,0.688468,0.313473,0.564229,0.817891,0.676714,0.353948,0.745224,0.786671,0.769681,0.445949,0.0500534,0.728478,0.455495,0.184328,0.841075,0.470695,0.304136,0.305223,0.439375,0.181933,0.0681168,0.878842,0.727176,0.959623,0.769271,0.486121,0.0124896,0.90929,0.248901,0.0298563,0.655004,0.979562,0.683629,0.878933,0.0889443,0.463056,0.192075,0.0668194,0.752831,0.0864042,0.913847,0.593873,0.713002,0.892989,0.483499,0.574019,0.358449,0.064881,0.115081,0.449716,0.3534,0.590096,0.880904,0.453742,0.466413,0.735511,0.122311,0.197838,0.317187,0.784237,0.695979,0.336267,0.944145,0.54082,0.816136,0.91752,0.124027,0.225036,0.18864,0.265155,0.833597,0.980828,0.111714,0.442218,0.894833,0.388346,|0.00867355,0.349693,0.879937,0.16786,0.102521,0.825816,0.973568,0.561583,0.948733,0.936549,0.12337,0.66225,0.0728144,0.366597,0.0936601,0.490033,0.398188,0.0616975,0.978053,0.993279,0.0123354,0.743443,0.593361,0.399116,0.85374,0.993998,0.773206,0.513087,0.0799269,0.777174,0.64898,0.509995,0.385458,0.856556,0.109636,0.0965406,0.374155,0.0883718,0.400283,0.829585,0.0449974,0.333316,0.904588,0.713153,0.409949,0.284569,0.804325,0.173793,0.779303,0.968663,0.856631,0.803597,0.395282,0.401239,0.0707532,0.573572,0.820827,0.566054,0.494618,0.0225115,0.641902,0.643599,0.428307,0.984144,0.9727,0.810228,0.577961,0.0726311,0.391819,0.775081,0.27269,0.95134,0.61254,0.470361,0.705943,0.135355,0.0132373,0.772928,0.199779,0.729766,0.728895,0.391698,0.681532,0.987359,0.542259,0.705856,0.259354,0.408289,0.534864,0.398924,0.536042,0.513282,0.591147,0.874612,0.222802,0.0378861,0.38905,0.214104,0.211647,0.39921,0.43957,0.565913,0.249672,0.0105564,0.274794,0.760607,0.168064,0.939693,0.492992,0.708577,0.49219,0.783875,0.052167,0.400694,0.917485,0.185649,0.186731,0.715423,0.744053,0.608246,0.251086,0.139781,0.720241,0.434118,0.632793,0.218885,0.596649,0.00776947,0.637626,0.454148,0.958686,0.840023,0.147861,0.724059,0.775538,0.135163,0.816004,0.674363,0.938168,0.886786,0.967717,0.513241,0.847696,0.160362,0.601473,0.302406,0.287212,0.236854,0.607057,0.782462,0.00643963,0.946822,0.483537,0.667882,0.202823,0.777795,0.286202,0.83642,0.13741,0.775036,0.0539758,0.422087,0.370779,0.147184,0.571303,0.850015,0.911084,0.955029,0.813643,0.155078,0.506471,0.786592,0.429306,0.850824,0.184849,0.489455,0.423711,0.420911,0.952256,0.255573,0.976621,0.498724,0.346388,0.308578,0.3066,0.920103,0.169929,0.307044,0.740761,0.0635508,0.981442,0.657979,0.551934,0.201295,0.631692,0.450517,0.484999,0.743556,0.753884,0.304018,0.0182306,0.179617,0.912126,0.987118,0.172119,0.460919,0.346975,0.239341,0.783208,0.202358,0.227768,0.810475,0.308537,0.817322,0.572922,0.43284,0.383359,0.707901,0.247241,0.0871442,0.62495,0.821037,0.651551,0.641466,0.527706,0.773831,0.243699,0.916197,0.452318,0.745623,0.128298,0.0925545,0.0794062,0.168582,0.313228,0.966248,0.441671,0.55284,0.971896,0.836781,0.219876,0.433436,0.358776,0.10058,0.638065,0.207124,0.804147,0.966026,0.298375,0.83157,0.480879,0.0279837,0.636232,0.591683,0.00414008,0.552515,0.755349,0.148504,0.739982,0.293336,0.333867,0.902917,0.380148,0.476061,0.78742,0.128383,0.189066,0.916601,0.485734,0.568701,0.70037,0.755197,0.426105,0.260606,0.0691473,0.825578,0.627517,0.100775,0.958662,0.495492,0.728427,0.0941778,0.191016,0.10097,0.135184,0.0479859,0.659102,0.927653,0.312834,0.793127,0.556132,0.229045,0.248897,0.144609,0.0154119,0.903912,0.495679,0.455027,0.870896,0.990806,0.939537,0.348951,0.870835,0.286682,0.895922,0.223219,0.207686,0.373004,0.886991,0.846682,0.665256,0.159754,0.999004,0.207398,0.808758,0.668855,0.26112,0.219546,0.373373,0.92545,0.405637,0.207279,0.927458,0.311663,0.0839635,0.24106,0.447855,0.0296752,0.557904,0.22448,0.361628,0.426045,0.709149,0.0792876,0.496886,0.631223,0.314885,0.588494,0.989047,0.663868,0.238658,0.676359,0.339332,0.140772,0.984294,0.0764948,0.128747,0.826382,0.304396,0.951619,0.527248,0.519166,0.599619,0.52593,0.856299,0.781501,0.441933,0.923275,0.622435,0.399008,0.66626,0.473724,0.256057,0.899379,0.0836318,0.647901,0.896033,0.784126,0.915553,0.242307,0.791671,0.0690592,0.421958,0.25269,0.775696,0.497055,0.693269,0.914981,0.692172,0.787564,0.279093,0.602721,0.0562662,0.237987,0.476186,0.644217,0.42659,0.351568,0.19674,0.507635,0.512731,0.472593,0.039045,0.683928,0.803639,0.202529,0.813516,0.290763,0.186961,0.265126,0.602605,0.209687,0.779584,0.782881,0.653832,0.253349,0.383304,0.517732,0.638862,0.166653,0.92027,0.0860218,0.776564,0.178701,0.928122,0.307435,0.114508,0.40353,0.319591,0.0554851,0.0162114,0.0170304,0.00436544,0.31138,0.983397,0.131018,0.903097,0.327418,0.725963,0.517417,0.551021,0.456117,0.680842,0.0656861,0.468089,0.427261,0.733272,0.58324,0.330161,0.850617,0.838325,0.068786,0.900134,0.624926,0.196881,0.482647,0.513591,0.0133179,0.351425,0.449225,0.167604,0.00456959,0.164088,0.0968176,0.995587,0.418303,0.60058,0.911965,0.261748,0.513928,0.487672,0.331001,0.414171,0.715857,0.727827,0.69621,0.925272,0.598288,0.56745,0.351282,0.543404,0.48128,0.707406,0.259367,0.933271,0.573171,0.0778788,0.757547,0.617489,0.948252,0.605037,0.356044,0.952802,0.147109,0.208855,0.729358,0.865487,0.954639,0.131176,0.724595,0.929312,0.516742,0.151293,0.0348513,0.227149,0.111152,0.530685,0.396847,0.758615,0.570664,0.260754,0.286938,0.0926864,0.580626,0.32708,0.314182,0.927282,0.978057,0.70793,0.343894,0.647046,0.613881,0.544381,0.585054,0.0920965,0.0394576,0.910243,0.642282,0.794178,0.548279,0.437992,0.631438,0.460939,0.792343,0.269336,0.328942,0.176171,0.281699,0.261891,0.412543,0.0708761,0.585555,0.359648,0.943817,0.35352,0.12211,0.74432,0.590862,0.0678621,0.258933,0.678559,0.398461,0.581623,0.105336,0.362727,0.349421,0.880565,0.230637,0.284966,0.87744,0.709699,0.395923,0.834085,0.211713,0.772122,0.309434,0.38741,0.211329,0.294271,0.939237,0.939573,0.759049,0.925491,0.651553,0.995472,0.484926,0.612914,0.571266,0.997737,0.6384,0.0914936,0.2834,0.94274,0.622829,0.0695511,0.164133,0.452174,0.789868,0.87596,0.753053,0.345185,0.312765,0.553841,0.533898,0.743639,0.237671,0.11973,0.464416,0.0714962,0.376746,0.0768772,0.370964,0.361409,0.198541,0.856505,0.27083,0.941345,0.98168,0.544196,0.640832,0.53553,0.293316,0.87116,0.672132,0.581968,0.821773,0.681043,0.90872,0.85368,0.868981,0.881179,0.56756,0.231166,0.530893,0.719171,0.30295,0.0483294,0.257627,0.349215,0.181762,0.0759121,0.749327,0.874738,0.596506,0.663792,0.222932,0.301605,0.480695,0.802038,0.89617,0.479228,0.462233,0.912151,0.70326,0.752139,0.392732,0.0791129,0.954996,0.824531,0.81573,0.0749694,0.441594,0.467279,0.779322,0.993532,0.771388,0.846785,0.539659,0.914215,0.870313,0.126374,0.291147,0.438723,0.544195,0.645373,0.435504,0.381888,0.0761215,0.49892,0.376367,0.0548137,0.447733,0.793506,0.506679,0.534492,0.882454,0.728706,0.397399,0.788969,0.565444,0.213208,0.313514,0.500831,0.476227,0.126933,0.170514,0.914357,0.979411,0.746339,0.255126,0.248385,0.452254,0.106483,0.891397,0.588984,0.0127975,0.557684,0.957559,0.576354,0.964591,0.0322242,0.708876,0.809306,0.764086,0.694664,0.920676,0.827657,0.895413,0.696292,0.872799,0.616943,0.490825,0.367981,0.86448,0.76074,0.757626,0.249145,0.608839,0.313652,0.529981,0.387681,0.218196,0.60666,0.859056,0.761267,0.0860798,0.774516,0.883845,0.57603,0.502329,0.43238,0.985892,0.686064,0.572501,0.665639,0.753493,0.373708,0.780959,0.845133,0.728224,0.692683,0.342956,0.946156,0.181831,0.49781,0.441985,0.705589,0.839121,0.557122,0.0291293,0.0302348,0.333788,0.631291,0.840735,0.97585,0.0670696,0.354877,0.318059,0.891727,0.672945,0.983727,0.27162,0.529433,0.021019,0.528879,0.929873,0.565871,0.742103,0.503286,0.400381,0.751393,0.707579,0.74264,0.765857,0.772226,0.0682914,0.332761,0.442016,0.230403,0.840773,0.241189,0.752678,0.16268,0.425378,0.781857,0.0786268,0.719109,0.216032,0.361405,0.822839,0.534948,0.855985,0.843218,0.326546,0.637254,0.573001,0.847329,0.73813,0.957021,0.870113,0.330672,0.950983,0.508012,0.922172,0.27765,0.612427,0.308728,0.966151,0.629551,0.620198,0.465594,0.964945,0.216154,0.708419,0.820798,0.198213,0.337629,0.629717,0.297735,0.374796,0.557222,0.25732,0.889789,0.935995,0.700729,0.912137,0.336991,0.52275,0.153431,0.74629,0.0326088,0.498503,0.0365868,0.301366,0.65019,0.772601,0.672182,0.297189,0.567632,0.77332,0.190166,0.638473,0.573351,0.720957,0.662812,0.498421,0.0200394,0.176308,0.870997,0.657414,0.905796,0.0273392,0.815439,0.876419,0.71615,0.355131,0.93608,0.274718,0.104523,0.695565,0.510101,0.602269,0.199225,0.348486,0.134624,0.645735,0.146511,0.871976,0.144247,0.22083,0.883048,0.499322,0.283261,0.341682,0.851576,0.174262,0.894997,0.272762,0.0365553,0.400829,0.289952,0.185787,0.580726,0.153201,0.843011,0.511775,0.884671,0.387833,0.923128,0.662296,0.105533,0.488468,0.352693,0.285848,0.320444,0.295476,0.87813,0.642392,0.318664,0.719919,0.90357,0.131205,0.192209,0.604612,0.956545,0.378063,0.956969,0.428984,0.577228,0.878229,0.594136,0.776793,0.965879,0.322516,0.568869,0.816164,0.757032,0.442421,0.454357,0.464752,0.237794,0.0323855,0.162031,0.49436,0.970475,0.994646,0.9248,0.947499,0.0917701,0.592791,0.798536,0.232969,0.50443,0.97664,0.953445,0.4899,0.753003,0.565707,0.685678,0.717806,0.0794519,0.992578,0.855002,0.661512,0.484601,0.650456,0.39983,0.115043,0.283017,0.524625,0.410334,0.0425972,0.309126,0.894987,0.447702,0.545778,0.397357,0.948648,0.270709,0.786437,0.150085,0.389372,0.824197,0.784093,0.883937,0.525725,0.584771,0.340512,0.418974,0.0618827,0.313445,0.565282,0.717783,0.00462943,0.490619,0.956346,0.762144,0.364422,0.750257,0.169072,0.627495,0.159772,0.693415,0.0988967,0.461084,0.999523,0.83118,0.441647,0.817505,0.0298177,0.997537,0.234703,0.813035,0.323854,0.513892,0.249299,0.966654,0.733567,0.451287,0.954605,0.362396,0.258031,0.895315,0.218119,0.611631,0.906749,0.325872,0.422181,0.429821,0.945789,|0.724901,0.531912,0.311449,0.973624,0.434637,0.651606,0.0248329,0.870705,0.763561,0.678627,0.423827,0.706923,0.286022,0.363046,0.727396,0.266043,0.23647,0.578393,0.66906,0.59983,0.57237,0.403029,0.733363,0.21331,0.18516,0.500238,0.694051,0.941053,0.000589371,0.937546,0.755179,0.599822,0.365578,0.587412,0.562375,0.145,0.295072,0.274553,0.744345,0.784705,0.82465,0.681741,0.380007,0.754794,0.658516,0.982923,0.709884,0.685361,0.773657,0.881199,0.27461,0.240226,0.449334,0.557652,0.412627,0.235174,0.552733,0.40863,0.489906,0.125188,0.525165,0.60936,0.647918,0.322876,0.721435,0.5816,0.0992601,0.978451,0.625906,0.368213,0.892524,0.172253,0.920014,0.183369,0.48482,0.719472,0.293611,0.377131,0.725478,0.706737,0.837592,0.269598,0.0175422,0.884935,0.711499,0.846944,0.824615,0.406987,0.843466,0.383385,0.527274,0.717934,0.366302,0.687323,0.317143,0.812281,0.263159,0.194354,0.526371,0.514183,0.933088,0.201614,0.601358,0.135216,0.989315,0.150302,0.437114,0.0292289,0.566098,0.875825,0.208656,0.200974,0.7708,0.160376,0.00538623,0.105737,0.818375,0.232735,0.860055,0.336782,0.236832,0.846066,0.737173,0.285872,0.785647,0.468054,0.115623,0.854252,0.539192,0.0546739,0.487905,0.526499,0.793787,0.748359,0.330063,0.674723,0.173582,0.883806,0.441798,0.933759,0.0249213,0.634999,0.52687,0.783391,0.220707,0.124532,0.522106,0.393785,0.985073,0.485214,0.429541,0.782702,0.74353,0.681669,0.32261,0.355637,0.804847,0.638935,0.837377,0.715729,0.770513,0.00693887,0.987607,0.409502,0.587783,0.972804,0.452218,0.749776,0.685674,0.0740013,0.621011,0.28413,0.00772971,0.477231,0.584045,0.290161,0.234206,0.399233,0.542572,0.410574,0.210266,0.191597,0.122439,0.605566,0.258177,0.48707,0.609046,0.456051,0.652297,0.578186,0.908228,0.433134,0.36356,0.703232,0.44478,0.29697,0.671928,0.944382,0.956214,0.509032,0.270277,0.498756,0.98334,0.48402,0.478763,0.961203,0.821048,0.435088,0.163126,0.895218,0.401331,0.737508,0.214069,0.413351,0.678121,0.273464,0.725337,0.959133,0.632363,0.954387,0.0594714,0.234701,0.0267953,0.708839,0.0455245,0.691913,0.705266,0.0587121,0.896632,0.0659428,0.695194,0.306104,0.411036,0.41687,0.220461,0.51822,0.575971,0.773893,0.924998,0.72301,0.846649,0.681642,0.690476,0.445428,0.562893,0.502169,0.318264,0.270875,0.231858,0.00201422,0.896433,0.989506,0.324113,0.20352,0.313288,0.312648,0.862154,0.410514,0.582597,0.825079,0.303098,0.0516545,0.88698,0.426985,0.371828,0.550076,0.896012,0.790834,0.893705,0.659412,0.850333,0.619531,0.903368,0.671874,0.902659,0.937198,0.614903,0.979638,0.604181,0.201729,0.474227,0.584823,0.00923097,0.307848,0.156733,0.11868,0.710644,0.462888,0.283319,0.706297,0.0437362,0.824711,0.104698,0.432826,0.664192,0.791888,0.682557,0.00850058,0.324169,0.316037,0.20241,0.616049,0.742624,0.450644,0.111956,0.668737,0.617399,0.917861,0.607114,0.569793,0.573263,0.497023,0.548593,0.0538124,0.928423,0.38461,0.243591,0.573886,0.416148,0.642491,0.505465,0.214825,0.903905,0.489089,0.0518116,0.928771,0.156911,0.198749,0.808565,0.733677,0.186131,0.639972,0.550351,0.156242,0.725922,0.177651,0.108677,0.389557,0.730554,0.446717,0.146557,0.848719,0.404214,0.171291,0.600835,0.323686,0.906307,0.508169,0.00325483,0.385084,0.834258,0.40717,0.914081,0.530121,0.424214,0.645761,0.384336,0.987716,0.434117,0.715869,0.786512,0.286422,0.200898,0.572204,0.391248,0.969792,0.247405,0.856572,0.577018,0.74274,0.937922,0.993332,0.690644,0.560241,0.951472,0.889394,0.929033,0.254103,0.356213,0.793723,0.658437,0.0598031,0.0345882,0.801897,0.654643,0.93034,0.690407,0.0211329,0.450791,0.946423,0.0449533,0.398936,0.669926,0.760567,0.0416895,0.947081,0.106332,0.286498,0.231581,0.735736,0.367952,0.23606,0.224401,0.790462,0.299363,0.326663,0.256038,0.363629,0.467096,0.166969,0.682148,0.631891,0.950439,0.76133,0.38919,0.945328,0.930358,0.112692,0.151376,0.776272,0.23154,0.510911,0.943866,0.868191,0.153096,0.794086,0.299675,0.0799888,0.0532265,0.0611593,0.211653,0.871103,0.179388,0.980447,0.822659,0.209679,0.671908,0.207719,0.348428,0.481139,0.315457,0.636838,0.604491,0.136242,0.784872,0.00170881,0.0359831,0.422141,0.879255,0.939693,0.974443,0.571578,0.686328,0.0222427,0.597196,0.304621,0.759404,0.674374,0.126016,0.561762,0.780117,0.187281,0.273651,0.960133,0.0156347,0.35148,0.731886,0.219246,0.108609,0.49662,0.438913,0.920956,0.862086,0.97183,0.766144,0.115267,0.135801,0.859962,0.293399,0.509036,0.344175,0.218192,0.433037,0.33894,0.751279,0.846002,0.701785,0.257049,0.738222,0.952909,0.256587,0.285745,0.158387,0.36394,0.605009,0.210738,0.504863,0.354636,0.335338,0.472041,0.975398,0.0248308,0.245085,0.592689,0.470299,0.980881,0.0466701,0.287279,0.985129,0.618567,0.263716,0.637009,0.676728,0.00236958,0.524477,0.530359,0.599961,0.301589,0.928072,0.267866,0.524721,0.706336,0.360551,0.46367,0.439991,0.287145,0.242384,0.267624,0.841624,0.446273,0.987126,0.568085,0.556737,0.547031,0.802958,0.0509522,0.941138,0.169544,0.874594,0.920225,0.421599,0.380252,0.636157,0.544038,0.693725,0.431958,0.471814,0.725666,0.736148,0.531284,0.590945,0.789721,0.416805,0.0908777,0.779079,0.187134,0.144167,0.470472,0.352246,0.326205,0.717908,0.0410559,0.423762,0.927515,0.278897,0.475691,0.55914,0.701525,0.618373,0.96231,0.947487,0.637422,0.525447,0.736656,0.578188,0.877572,0.123726,0.270383,0.495146,0.237508,0.489172,0.157263,0.477443,0.563158,0.93931,0.683032,0.711547,0.308635,0.148504,0.836837,0.22188,0.60448,0.00732809,0.545055,0.566307,0.522532,0.860663,0.158582,0.408696,0.497594,0.171127,0.627493,0.218007,0.128981,0.534967,0.461255,0.875657,0.608962,0.326939,0.289368,0.620662,0.215938,0.53919,0.922393,0.982248,0.914992,0.71332,0.495643,0.577136,0.673649,0.980873,0.21233,0.0352377,0.366754,0.0108334,0.38769,0.371401,0.445283,0.193192,0.856092,0.592791,0.503815,0.763663,0.760018,0.116527,0.377637,0.0872676,0.0855893,0.717219,0.779417,0.0542735,0.82387,0.994132,0.456639,0.264163,0.344655,0.0482803,0.343462,0.253124,0.656856,0.439767,0.747967,0.854011,0.782986,0.0737437,0.777373,0.0367373,0.908145,0.157711,0.657202,0.477108,0.149612,0.144961,0.224182,0.0884733,0.193514,0.131268,0.728889,0.749529,0.380842,0.865657,0.278736,0.860624,0.63016,0.58474,0.879449,0.830284,0.439433,0.835098,0.105591,0.917552,0.274047,0.606008,0.259943,0.0579903,0.878112,0.15762,0.540487,0.80602,0.326754,0.130202,0.889982,0.220969,0.523178,0.718156,0.240654,0.32945,0.618917,0.826004,0.355047,0.59951,0.528482,0.785758,0.832413,0.359037,0.0930799,0.209036,0.0690139,0.570666,0.383914,0.827319,0.0565791,0.773981,0.379524,0.667515,0.987123,0.557727,0.243434,0.742011,0.985642,0.528487,0.601522,0.25046,0.748876,0.663229,0.848934,0.696454,0.297167,0.627159,0.811086,0.884906,0.966299,0.939169,0.0775424,0.56918,0.547197,0.66208,0.665048,0.629092,0.173396,0.0872739,0.190198,0.283266,0.433446,0.353958,0.193635,0.582647,0.598103,0.876296,0.0344904,0.536266,0.63127,0.262658,0.16743,0.0781,0.158093,0.830098,0.103777,0.187919,0.0952226,0.147998,0.188133,0.130835,0.648003,0.681988,0.448015,0.0687984,0.606867,0.620611,0.108359,0.828993,0.325942,0.508042,0.863426,0.814325,0.804341,0.449862,0.444176,0.118661,0.561656,0.0420598,0.000397801,0.450545,0.96273,0.221116,0.275694,0.995427,0.907115,0.763549,0.748232,0.700551,0.333205,0.954286,0.379156,0.159349,0.351555,0.321432,0.999295,0.103281,0.840992,0.449997,0.167637,0.436685,0.881833,0.0106215,0.0591863,0.270578,0.639705,0.144272,0.0999156,0.440576,0.0020889,0.869774,0.12175,0.379617,0.385665,0.34525,0.0962536,0.414199,0.0563846,0.667535,0.358105,0.951065,0.315309,0.857933,0.166058,0.250653,0.557548,0.956403,0.589384,0.387311,0.745229,0.191811,0.368816,0.647854,0.00454825,0.662939,0.9547,0.474002,0.697399,0.233729,0.21825,0.225493,0.810106,0.27583,0.759749,0.775377,0.532636,0.472043,0.0724832,0.990328,0.461935,0.878956,0.535145,0.0143363,0.0531896,0.853933,0.318791,0.736979,0.869374,0.679766,0.287197,0.671529,0.539454,0.258372,0.064744,0.361338,0.815995,0.252411,0.97873,0.908846,0.835407,0.0734101,0.910702,0.551017,0.253969,0.620848,0.122236,0.370004,0.892777,0.218949,0.887088,0.986629,0.435548,0.616508,0.0241374,0.149195,0.87193,0.873139,0.709484,0.873862,0.909656,0.689935,0.87242,0.731085,0.299017,0.968589,0.121838,0.29545,0.751259,0.299726,0.916296,0.433598,0.563527,0.628678,0.0402027,0.311153,0.177079,0.337961,0.0337644,0.320192,0.233974,0.0175815,0.619112,0.635627,0.770197,0.298801,0.28936,0.700103,0.559037,0.932068,0.0712497,0.393382,0.72925,0.659196,0.440306,0.987151,0.189421,0.786387,0.448645,0.732898,0.888721,0.550899,0.0275405,0.642567,0.0522771,0.232055,0.875213,0.706599,0.495131,0.0585571,0.854552,0.382657,0.999196,0.280135,0.982232,0.726167,0.90837,0.327639,0.595843,0.465486,0.215269,0.247862,0.787508,0.198657,0.270262,0.526782,0.575297,0.780548,0.755445,0.22325,0.931129,0.945755,0.873858,0.623099,0.211475,0.188646,0.762273,0.481889,0.180178,0.0136865,0.617634,0.30455,0.419695,0.981877,0.389723,0.521798,0.310783,0.265612,0.0949001,0.484233,0.0907258,0.505578,0.358998,0.72374,0.804747,0.299398,0.709254,0.24655,0.554875,0.79366,0.763665,0.181415,0.080682,0.210798,0.551446,0.202797,0.30369,0.599997,0.91601,|0.417245,0.639564,0.941752,0.0930169,0.373869,0.12285,0.500413,0.782677,0.0424464,0.385371,0.829303,0.560569,0.170929,0.836586,0.628225,0.904637,0.738847,0.690068,0.633214,0.150607,0.00766778,0.0935538,0.800147,0.112747,0.693258,0.330519,0.640372,0.963632,0.778456,0.878626,0.511223,0.513112,0.695213,0.131587,0.136871,0.805118,0.404043,0.271925,0.0954616,0.594635,0.136586,0.99707,0.121115,0.457109,0.680607,0.932841,0.947044,0.89262,0.184222,0.338718,0.37901,0.466811,0.915502,0.0655622,0.25461,0.417443,0.451623,0.532712,0.173925,0.24372,0.286881,0.358795,0.447379,0.564074,0.350766,0.839732,0.544695,0.448218,0.715586,0.953053,0.681458,0.712288,0.45824,0.639192,0.943108,0.81726,0.200066,0.697535,0.457494,0.997057,0.028586,0.270502,0.225029,0.23499,0.964501,0.378329,0.526326,0.243512,0.688391,0.643586,0.332347,0.0443232,0.235368,0.960815,0.912035,0.235662,0.0608623,0.448336,0.228871,0.809174,0.648806,0.958233,0.0700982,0.591641,0.549845,0.248225,0.0860648,0.263142,0.409298,0.136608,0.0303215,0.397905,0.794151,0.724654,0.828492,0.345518,0.780838,0.205774,0.961893,0.334023,0.836714,0.380634,0.591726,0.0203663,0.486796,0.00483811,0.240467,0.122608,0.553841,0.78372,0.0193366,0.157656,0.923481,0.540333,0.821205,0.725907,0.557741,0.863792,0.469476,0.211675,0.691286,0.146195,0.145537,0.670475,0.892065,0.979997,0.0571333,6.77705e-05,0.801757,0.666284,0.364322,0.428516,0.150142,0.769314,0.50498,0.0683239,0.704305,0.0205797,0.165196,0.19288,0.135956,0.0451404,0.956177,0.33833,0.914313,0.680446,0.663512,0.843867,0.817346,0.154427,0.899761,0.721538,0.763032,0.340994,0.644768,0.638657,0.643874,0.695402,0.661256,0.166943,0.464384,0.936147,0.621927,0.34142,0.365456,0.24378,0.679088,0.546757,0.507385,0.906625,0.270425,0.29465,0.110538,0.334827,0.98336,0.397289,0.100523,0.84712,0.453897,0.483017,0.161578,0.886923,0.780868,0.833784,0.651833,0.0341703,0.316163,0.686753,0.70702,0.561729,0.925257,0.271343,0.72334,0.000752032,0.826975,0.854791,0.512284,0.18374,0.865,0.0953365,0.567222,0.398381,0.0524199,0.387632,0.566093,0.573533,0.895989,0.244076,0.184842,0.542596,0.689352,0.735036,0.961485,0.168295,0.147393,0.118784,0.522201,0.159871,0.636061,0.936962,0.979306,0.832302,0.653147,0.315531,0.268895,0.432703,0.315607,0.900772,0.216224,0.402519,0.797848,0.642254,0.326377,0.783789,0.460677,0.0157161,0.745539,0.166903,0.787137,0.276376,0.664168,0.722086,0.992566,0.853913,0.340551,0.981075,0.981934,0.84658,0.443041,0.479043,0.55943,0.437943,0.474121,0.210355,0.733952,0.616542,0.20592,0.0352157,0.916801,0.0717092,0.782361,0.0535111,0.832948,0.342436,0.881759,0.485606,0.42431,0.827526,0.15952,0.300103,0.758353,0.732583,0.995681,0.434073,0.669229,0.429732,0.0527067,0.621347,0.565411,0.70103,0.206967,0.575109,0.264385,0.804469,0.891342,0.786384,0.861439,0.590386,0.123332,0.568655,0.21209,0.651721,0.265628,0.0870821,0.130144,0.603948,0.754776,0.125787,0.259381,0.175818,0.592664,0.891855,0.811339,0.495694,0.281066,0.276358,0.276045,0.589503,0.818483,0.964688,0.514056,0.718996,0.157925,0.158275,0.512888,0.177305,0.9398,0.459342,0.732581,0.734141,0.589941,0.964022,0.779263,0.305698,0.939829,0.658809,0.933751,0.0654465,0.207318,0.502567,0.851988,0.967549,0.218275,0.553662,0.747131,0.363314,0.0777777,0.88411,0.520498,0.611323,0.195657,0.893289,0.39582,0.397378,0.558106,0.645063,0.38777,0.906848,0.550376,0.276722,0.0213898,0.386425,0.519378,0.847903,0.373204,0.842623,0.603599,0.845623,0.107132,0.443395,0.968745,0.71023,0.931163,0.199078,0.887126,0.548704,0.431252,0.814894,0.960169,0.503899,0.986235,0.685192,0.202547,0.03528,0.489462,0.383455,0.272822,0.0412121,0.892039,0.300914,0.162293,0.560275,0.617084,0.876979,0.589467,0.883857,0.661203,0.412996,0.925194,0.38387,0.707348,0.525112,0.711865,0.979227,0.506791,0.275325,0.468829,0.977168,0.155221,0.950287,0.561025,0.231183,0.774331,0.682061,0.535646,0.434622,0.503907,0.360128,0.371709,0.80168,0.865389,0.021722,0.137112,0.979238,0.919878,0.996369,0.554074,0.699714,0.501614,0.17644,0.87744,0.623547,0.498915,0.206386,0.40713,0.428999,0.914737,0.764906,0.616896,0.798208,0.288009,0.578404,0.261652,0.551381,0.788486,0.607405,0.278713,0.860034,0.446657,0.0996854,0.662866,0.936416,0.636649,0.657929,0.305904,0.872016,0.324633,0.406692,0.416761,0.11257,0.747261,0.0925026,0.248087,0.225708,0.935444,0.953743,0.209885,0.332442,0.866341,0.787807,0.523021,0.586755,0.784783,0.676014,0.166909,0.868446,0.968008,0.283968,0.673505,0.942452,0.00510436,0.696354,0.217914,0.421348,0.860645,0.642647,0.69239,0.104738,0.82308,0.71704,0.102121,0.257055,0.36906,0.228052,0.106834,0.571267,0.391018,0.962288,0.120535,0.859495,0.985282,0.314725,0.985578,0.98876,0.347538,0.705321,0.632809,0.987727,0.0896303,0.772209,0.401682,0.562442,0.889122,0.346781,0.238744,0.759798,0.0932691,0.343005,0.388744,0.684037,0.948391,0.978528,0.0468492,0.745668,0.155323,0.709393,0.887313,0.180984,0.423626,0.678353,0.59521,0.191105,0.933933,0.163509,0.698382,0.532697,0.791896,0.78022,0.53041,0.296185,0.543498,0.601393,0.643047,0.163998,0.13571,0.354922,0.657511,0.249064,0.881022,0.0704364,0.486478,0.85324,0.575209,0.778762,0.136599,0.487299,0.526018,0.460786,0.251345,0.325057,0.0892336,0.85133,0.702097,0.905303,0.15108,0.987557,0.423531,0.38319,0.800372,0.801702,0.181705,0.00589067,0.699799,0.861226,0.62798,0.891618,0.247123,0.74177,0.643802,0.508749,0.0258069,0.820702,0.764621,0.731223,0.810752,0.762799,0.131239,0.37942,0.490055,0.186009,0.0358968,0.487756,0.239186,0.14701,0.788804,0.40148,0.442639,0.0798573,0.391969,0.393482,0.0176222,0.169183,0.900557,0.367586,0.773752,0.428201,0.511348,0.238686,0.914691,0.558137,0.615543,0.713633,0.0830981,0.205362,0.634109,0.151794,0.671871,0.672754,0.241871,0.218483,0.781556,0.527523,0.849968,0.804402,0.539266,0.40762,0.913441,0.792578,0.912103,0.136111,0.594036,0.680487,0.444133,0.566575,0.179033,0.888157,0.828706,0.446608,0.833765,0.65267,0.949667,0.305876,0.204156,0.221242,0.916814,0.246808,0.181586,0.127206,0.682736,0.980706,0.15396,0.435943,0.189617,0.0104725,0.909654,0.465625,0.917626,0.550047,0.197978,0.234754,0.686812,0.669507,0.517874,0.613031,0.576822,0.0326055,0.0223386,0.589548,0.769439,0.600328,0.180089,0.238088,0.445419,0.550642,0.418456,0.405582,0.545998,0.24691,0.196394,0.779392,0.728465,0.686834,0.0613971,0.537098,0.482708,0.187946,0.582012,0.288504,0.0987536,0.618718,0.125214,0.639335,0.668478,0.149723,0.987731,0.568579,0.828034,0.548743,0.794002,0.13442,0.112138,0.526756,0.635042,0.777463,0.320415,0.243629,0.412145,0.865326,0.823586,0.249707,0.0637909,0.0350828,0.36675,0.199118,0.335451,0.115229,0.215528,0.331488,0.0156959,0.481029,0.782326,0.933478,0.607598,0.403844,0.19281,0.537553,0.30589,0.708769,0.287585,0.128255,0.272011,0.113096,0.585018,0.0954905,0.400697,0.511168,0.764734,0.199319,0.187743,0.534609,0.0364255,0.19341,0.458437,0.412404,0.665954,0.484817,0.749751,0.556122,0.906676,0.846957,0.792896,0.836236,0.136997,0.946648,0.922812,0.116919,0.985232,0.699361,0.0365884,0.803049,0.820971,0.149203,0.921396,0.665702,0.509045,0.949867,0.729813,0.439502,0.340587,0.600851,0.89197,0.95017,0.509145,0.452581,0.52647,0.375461,0.451926,0.115718,0.452036,0.985474,0.0308628,0.915267,0.129173,0.426299,0.158521,0.926436,0.396545,0.840983,0.677328,0.961709,0.669412,0.516599,0.912677,0.00765836,0.350598,0.322689,0.826605,0.328338,0.522676,0.490419,0.108817,0.0203984,0.912008,0.335473,0.190507,0.618654,0.0393561,0.0667312,0.517018,0.213797,0.0176966,0.59511,0.545323,0.117472,0.383759,0.216357,0.0523113,0.808637,0.673522,0.211904,0.516496,0.959001,0.781905,0.594183,0.346524,0.631303,0.591476,0.225796,0.675831,0.677737,0.35049,0.709814,0.968829,0.593153,0.0133743,0.734463,0.532166,0.0484983,0.412201,0.345089,0.099792,0.495564,0.00455743,0.439936,0.918532,0.400553,0.966712,0.732081,0.604935,0.37125,0.862421,0.506056,0.356385,0.974455,0.271518,0.264533,0.71374,0.324783,0.545699,0.887412,0.459358,0.847371,0.389852,0.457092,0.981342,0.967009,0.0765086,0.823145,0.793117,0.698058,0.287169,0.480903,0.793117,0.0720648,0.747058,0.644077,0.611956,0.854887,0.0793132,0.666745,0.632383,0.963603,0.0315044,0.271505,0.665185,0.397013,0.842763,0.0160731,0.712642,0.262077,0.777147,0.431594,0.91329,0.342199,0.0772517,0.0128757,0.651345,0.613942,0.759511,0.892599,0.576679,0.169594,0.751527,0.601512,0.0815753,0.980321,0.909878,0.133564,0.864515,0.107696,0.479849,0.237854,0.0998663,0.623802,0.446921,0.440002,0.156621,0.818585,0.985082,0.807287,0.943567,0.888636,0.932147,0.568358,0.0907784,0.875711,0.377562,0.806304,0.0452532,0.780515,0.637678,0.515876,0.255819,0.600445,0.227655,0.261814,0.33224,0.358752,0.737358,0.137537,0.149047,0.62305,0.61614,0.74574,0.768357,0.480867,0.504268,0.804916,0.910082,0.286563,0.686572,0.152194,0.940086,0.0295251,0.567762,0.61976,0.522258,0.451553,0.272397,0.581526,0.762514,0.980276,0.479588,0.176887,0.378472,0.926137,0.752966,0.0583717,0.136972,0.42029,0.15801,0.781422,0.361776,0.782947,0.761147,0.933045,0.991875,0.531693,0.0666798,0.288324,0.555516,0.782222,0.382148,0.608115,0.405772,0.585387,0.779073,0.652302,0.110033,0.905509,|0.799628,0.259609,0.803082,0.339177,0.798752,0.696833,0.237024,0.66734,0.107139,0.980516,0.205287,0.100614,0.975667,0.591815,0.139307,0.813098,0.300026,0.00311232,0.362687,0.299634,0.892484,0.726917,0.0788975,0.32015,0.713348,0.259834,0.492571,0.985241,0.437786,0.737336,0.554207,0.39731,0.274437,0.398976,0.810194,0.631408,0.615387,0.1644,0.183285,0.461268,0.465725,0.0959636,0.987755,0.269222,0.38266,0.524568,0.313648,0.307159,0.868612,0.520518,0.262786,0.464407,0.479309,0.903243,0.418413,0.0235559,0.000410199,0.769132,0.0349232,0.812626,0.235494,0.396072,0.355123,0.476543,0.251255,0.25831,0.937239,0.0598446,0.0504033,0.917648,0.068826,0.780168,0.0923866,0.360745,0.354021,0.74492,0.923027,0.280903,0.573715,0.182445,0.594459,0.767697,0.911115,0.83104,0.124362,0.218977,0.546484,0.425436,0.0640237,0.453208,0.0771537,0.932198,0.83587,0.699791,0.163716,0.742081,0.428503,0.929789,0.656095,0.0174981,0.635946,0.730737,0.731434,0.888976,0.304153,0.333212,0.532908,0.0646065,0.361335,0.594663,0.558553,0.302743,0.400693,0.97062,0.885286,0.138657,0.365429,0.312381,0.128763,0.972692,0.89667,0.838384,0.44868,0.342425,0.231235,0.551031,0.231347,0.844971,0.462824,0.579347,0.825349,0.71141,0.406005,0.270884,0.978064,0.989555,0.0748618,0.313797,0.932152,0.558768,0.735872,0.838645,0.776472,0.142434,0.859817,0.899635,0.997518,0.0870537,0.101089,0.609702,0.219331,0.294763,0.511565,0.999694,0.756387,0.233291,0.457628,0.0428137,0.318748,0.12137,0.236309,0.762741,0.0866492,0.485419,0.242409,0.735932,0.542738,0.885386,0.243176,0.464163,0.750593,0.830539,0.0442715,0.479285,0.891793,0.262536,0.43236,0.47709,0.00153905,0.0121146,0.297871,0.423001,0.076297,0.126397,0.28235,0.825003,0.523771,0.699704,0.709819,0.869289,0.338339,0.462833,0.386099,0.319216,0.887538,0.783366,0.986583,0.968002,0.0636461,0.970184,0.397504,0.742298,0.986558,0.503594,0.12368,0.413549,0.868471,0.064811,0.0969617,0.620491,0.78854,0.133456,0.761,0.602852,0.0705861,0.571181,0.679557,0.0790772,0.357608,0.649858,0.836363,0.973779,0.34397,0.199978,0.650755,0.00349557,0.120115,0.456208,0.10354,0.242964,0.286806,0.332915,0.473734,0.999564,0.445166,0.739256,0.215219,0.882616,0.341451,0.0487303,0.965531,0.803098,0.360387,0.0237702,0.747224,0.856578,0.782739,0.232025,0.836688,0.271738,0.645225,0.52155,0.921808,0.353633,0.601683,0.790662,0.482533,0.488652,0.0576932,0.192659,0.0694369,0.804129,0.743568,0.113501,0.234018,0.104248,0.0934082,0.188632,0.106786,0.177129,0.943938,0.849278,0.0953828,0.25723,0.722598,0.488177,0.630872,0.00995481,0.245137,0.464314,0.326276,0.509752,0.961829,0.717383,0.0474893,0.215223,0.235506,0.523874,0.186789,0.526537,0.18958,0.422341,0.960802,0.439112,0.49479,0.720779,0.603551,0.401325,0.669056,0.857834,0.374853,0.639128,0.776303,0.771556,0.985015,0.482086,0.831338,0.473365,0.366498,0.261618,0.0349804,0.199859,0.77871,0.822666,0.164234,0.550563,0.0684158,0.180436,0.565653,0.495917,0.345018,0.427093,0.23655,0.732888,0.569513,0.249234,0.60896,0.220503,0.340349,0.258365,0.291433,0.732619,0.973405,0.18523,0.276518,0.290281,0.0512581,0.360666,0.455277,0.554944,0.530765,0.857398,0.987815,0.352494,0.931475,0.0540774,0.234246,0.549451,0.117547,0.436759,0.0225667,0.281665,0.43608,0.010132,0.235253,0.602017,0.450429,0.410853,0.14969,0.785074,0.640671,0.365178,0.927471,0.976676,0.976562,0.802267,0.281389,0.0589579,0.989204,0.0864416,0.183812,0.838979,0.935544,0.623555,0.051333,0.0534202,0.0834827,0.888834,0.195374,0.0863413,0.284741,0.232972,0.690348,0.269573,0.271425,0.958983,0.100705,0.846939,0.646598,0.880955,0.165913,0.188864,0.834138,0.216718,0.468164,0.717633,0.0468189,0.744971,0.665888,0.568609,0.426404,0.326196,0.927237,0.0531666,0.616073,0.601254,0.507445,0.0447612,0.760368,0.116928,0.889189,0.0405033,0.421166,0.281108,0.398774,0.475662,0.598657,0.807015,0.451495,0.0576212,0.491072,0.470694,0.853483,0.363164,0.0367964,0.629451,0.408282,0.222296,0.757001,0.822699,0.812405,0.469076,0.474984,0.577993,0.227403,0.152345,0.327036,0.960119,0.992843,0.889399,0.0856617,0.690513,0.17721,0.707138,0.108918,0.108367,0.929543,0.445701,0.339942,0.924948,0.493809,0.675276,0.339505,0.0622423,0.0810244,0.838717,0.534694,0.267742,0.936871,0.861539,0.0253977,0.565375,0.545814,0.628251,0.31459,0.644094,0.965287,0.426643,0.821424,0.232887,0.24722,0.898755,0.577758,0.249609,0.832939,0.293967,0.818181,0.168333,0.814595,0.347517,0.832887,0.732379,0.702629,0.996786,0.531474,0.677061,0.745651,0.522927,0.365201,0.000551105,0.455153,0.00133187,0.222722,0.751554,0.680787,0.568537,0.204107,0.735439,0.422687,0.885845,0.35128,0.725155,0.517383,0.0657734,0.0140287,0.0266262,0.26377,0.898383,0.354563,0.0287268,0.00549406,0.247562,0.802193,0.0417899,0.390208,0.191012,0.769648,0.789654,0.188891,0.276806,0.747891,0.0892024,0.712989,0.175009,0.161866,0.701275,0.816987,0.46166,0.643886,0.492464,0.710152,0.386982,0.0151805,0.849457,0.820465,0.792858,0.0215037,0.552249,0.587186,0.187242,0.768962,0.224087,0.94563,0.739626,0.74913,0.298695,0.739789,0.286022,0.244883,0.443876,0.760214,0.159002,0.627355,0.897838,0.949388,0.536602,0.142007,0.0796343,0.829233,0.102421,0.753049,0.506153,0.296405,0.671726,0.866465,0.37364,0.438426,0.0457737,0.423224,0.168179,0.684741,0.632217,0.1739,0.633477,0.927475,0.0355445,0.136272,0.581841,0.0775428,0.432562,0.233182,0.22878,0.254616,0.136968,0.639621,0.228365,0.356847,0.320403,0.252148,0.148217,0.192972,0.0607961,0.600548,0.789232,0.10706,0.109715,0.0258515,0.51454,0.442498,0.123484,0.194198,0.785578,0.423906,0.229816,0.709599,0.222716,0.0943876,0.222228,0.685959,0.778018,0.216538,0.919815,0.0207418,0.845975,0.529272,0.969057,0.449501,0.572651,0.447392,0.59075,0.81659,0.359081,0.802786,0.717005,0.382896,0.532834,0.185463,0.544051,0.626339,0.762819,0.578582,0.953139,0.026328,0.990713,0.370138,0.778596,0.735282,0.283374,0.821892,0.0295909,0.285334,0.430377,0.205974,0.685641,0.239391,0.715972,0.226883,0.00928867,0.116904,0.292127,0.510951,0.50723,0.831906,0.960551,0.47728,0.729657,0.189051,0.925557,0.563417,0.278536,0.944936,0.327467,0.586073,0.391124,0.9874,0.146539,0.226377,0.148586,0.194644,0.680989,0.946514,0.961594,0.762151,0.510045,0.720474,0.203459,0.686787,0.342571,0.818431,0.102428,0.978071,0.20973,0.923839,0.481572,0.774981,0.56181,0.604025,0.57419,0.820189,0.751839,0.119614,0.55079,0.794407,0.869924,0.0675889,0.160249,0.179645,0.579409,0.294858,0.645063,0.626216,0.785859,0.117829,0.943922,0.255117,0.371757,0.890425,0.288104,0.805402,0.118684,0.108406,0.338716,0.102749,0.0192042,0.89079,0.524155,0.160256,0.52979,0.837606,0.134118,0.595143,0.708549,0.201275,0.37439,0.274531,0.297837,0.671195,0.332509,0.00409967,0.591145,0.897324,0.523078,0.823524,0.0198149,0.596435,0.416848,0.139562,0.886832,0.137389,0.726801,0.751306,0.0442247,0.167738,0.430039,0.752094,0.308134,0.136348,0.305602,0.637156,0.0342234,0.400409,0.0403232,0.298135,0.179842,0.00302899,0.669143,0.0747092,0.383115,0.882642,0.929263,0.443297,0.768328,0.549452,0.767731,0.399115,0.740879,0.830326,0.489105,0.801172,0.31618,0.59084,0.487205,0.938548,0.922373,0.881388,0.821682,0.51358,0.0060941,0.588105,0.995628,0.57416,0.410783,0.210491,0.0196766,0.347793,0.361624,0.76851,0.174377,0.249586,0.170547,0.863894,0.601275,0.136194,0.419306,0.710809,0.0812975,0.199696,0.270334,0.415536,0.0866551,0.80729,0.0832108,0.879311,0.0652103,0.990884,0.115143,0.436358,0.261422,0.433835,0.455386,0.937291,0.0824363,0.259982,0.749695,0.435278,0.104655,0.69133,0.641455,0.84622,0.353793,0.272151,0.984808,0.786823,0.831066,0.749875,0.733248,0.0446851,0.708804,0.428347,0.595592,0.189688,0.892252,0.764559,0.576402,0.45944,0.492359,0.518342,0.871998,0.138716,0.592245,0.10832,0.915192,0.972765,0.722262,0.0551826,0.836785,0.36207,0.622374,0.380629,0.0789912,0.213911,0.311399,0.069743,0.491284,0.495501,0.783985,0.298333,0.877448,0.275779,0.808065,0.647876,0.571439,0.697785,0.414211,0.63079,0.508438,0.509385,0.288068,0.0674495,0.034669,0.0988066,0.408402,0.0884279,0.696655,0.481163,0.955125,0.268112,0.359794,0.867226,0.182091,0.0787589,0.523308,0.95923,0.791996,0.931998,0.799985,0.319232,0.415959,0.11519,0.842613,0.0454802,0.2455,0.303083,0.433925,0.970427,0.790923,0.456957,0.406985,0.679976,0.394187,0.321006,0.425762,0.255617,0.346065,0.265756,0.775176,0.563135,0.641361,0.226877,0.670591,0.427173,0.848018,0.392755,0.0194013,0.535158,0.544073,0.811272,0.824095,0.970796,0.080809,0.659186,0.621596,0.793686,0.162309,0.361979,0.554586,0.912693,0.817179,0.621233,0.320993,0.522387,0.152125,0.133543,0.96006,0.280109,0.256132,0.383092,0.94938,0.272882,0.861068,0.0117256,0.501412,0.271928,0.0719869,0.636545,0.743253,0.133072,0.362394,0.689976,0.385095,0.615658,0.0368826,0.779045,0.147738,0.63872,0.881118,0.4328,0.803999,0.0147824,0.00216508,0.316675,0.999277,0.17699,0.260201,0.223421,0.356461,0.943455,0.895543,0.267743,0.897693,0.199133,0.156985,0.828171,0.978641,0.893721,0.354139,0.621257,0.194996,0.239384,0.254725,0.222558,0.736372,0.112823,0.528962,0.280607,0.327997,0.688205,0.917874,0.874294,0.99578,0.418499,0.928241,0.665055,0.659971,0.351284,0.497941,0.57331,0.239547,0.479562,0.931127,|0.43511,0.900739,0.46673,0.527943,0.0796666,0.7972,0.0148521,0.0257998,0.90677,0.114233,0.377042,0.437048,0.619175,0.125379,0.259314,0.142379,0.91161,0.141283,0.236322,0.0329471,0.0195133,0.90376,0.454112,0.716777,0.933298,0.775872,0.02494,0.838207,0.321155,0.780145,0.211066,0.834517,0.440177,0.63259,0.487951,0.376368,0.769977,0.234346,0.367045,0.825727,0.17356,0.202889,0.132207,0.113883,0.578187,0.78873,0.103859,0.504506,0.83069,0.88638,0.0468797,0.351652,0.906314,0.820298,0.551862,0.825113,0.338197,0.147127,0.567358,0.609939,0.982568,0.594153,0.69789,0.265164,0.855021,0.528567,0.0971445,0.463033,0.993854,0.185425,0.754006,0.963535,0.708721,0.884036,0.0654581,0.260046,0.669617,0.823139,0.742909,0.363408,0.900595,0.294143,0.196937,0.337642,0.774953,0.41605,0.174091,0.515768,0.277483,0.785967,0.904533,0.268652,0.0250961,0.902266,0.263609,0.797956,0.46363,0.0497828,0.691328,0.113847,0.898683,0.411352,0.111391,0.84458,0.411578,0.762643,0.806869,0.0337815,0.27521,0.491488,0.811763,0.590892,0.362315,0.859988,0.956236,0.724234,0.387445,0.522888,0.128632,0.87746,0.382412,0.308427,0.645532,0.732127,0.629712,0.30663,0.43911,0.327883,0.180922,0.0594408,0.546178,0.941177,0.317051,0.480642,0.333527,0.017712,0.775303,0.165094,0.782127,0.75011,0.130763,0.128633,0.391709,0.0371016,0.0942363,0.38546,0.170169,0.59341,0.846913,0.195583,0.739769,0.883736,0.204593,0.903109,0.339471,0.764996,0.671443,0.262678,0.692744,0.691793,0.896998,0.554075,0.799819,0.291881,0.621536,0.791901,0.234507,0.984178,0.778685,0.302268,0.883708,0.948943,0.724933,0.0302075,0.33329,0.974081,0.532524,0.0688028,0.928448,0.230585,0.673922,0.585014,0.200952,0.217465,0.629412,0.262203,0.829877,0.429672,0.0558301,0.164976,0.0730671,0.399955,0.264961,0.451795,0.85365,0.448554,0.486614,0.671988,0.106624,0.115158,0.942152,0.555651,0.66926,0.467045,0.582118,0.921715,0.610269,0.0985862,0.658699,0.872218,0.741623,0.0190147,0.750343,0.163026,0.278782,0.467275,0.0310119,0.945251,0.0584069,0.327091,0.29926,0.406931,0.00472432,0.87411,0.543159,0.100145,0.668527,0.105147,0.534282,0.770383,0.233197,0.709502,0.165887,0.836196,0.372294,0.636837,0.653144,0.108147,0.925833,0.112984,0.194985,0.43028,0.574997,0.251277,0.851543,0.755127,0.190515,0.335504,0.809568,0.472658,0.258499,0.283772,0.613521,0.693304,0.569989,0.530636,0.854191,0.929276,0.0358339,0.533749,0.450682,0.433908,0.965945,0.1267,0.361199,0.0412267,0.904239,0.326709,0.775361,0.460652,0.653302,0.810877,0.485862,0.771087,0.464855,0.48272,0.0809394,0.861962,0.422756,0.81373,0.0498567,0.0699266,0.676677,0.170711,0.0887883,0.678289,0.851763,0.924744,0.985384,0.699038,0.916258,0.751356,0.42635,0.380668,0.961254,0.751002,0.370294,0.341352,0.947558,0.00925356,0.220902,0.627262,0.267176,0.914033,0.239909,0.393752,0.567583,0.0886455,0.951691,0.602184,0.265676,0.320967,0.2626,0.771453,0.528072,0.343728,0.0811219,0.30242,0.537327,0.744537,0.446309,0.940656,0.699784,0.556453,0.319941,0.775537,0.288104,0.332809,0.221459,0.0982977,0.758045,0.373961,0.53219,0.363946,0.993703,0.714246,0.699546,0.146761,0.154796,0.510065,0.716224,0.471154,0.342497,0.706269,0.0737084,0.816689,0.905991,0.489024,0.733923,0.39697,0.327357,0.688787,0.287958,0.182729,0.813527,0.205808,0.717867,0.986023,0.106787,0.680856,0.359393,0.515939,0.514134,0.711237,0.0780086,0.391763,0.174539,0.785968,0.858559,0.285255,0.424685,0.359749,0.334204,0.303958,0.192464,0.16326,0.712272,0.339956,0.835326,0.943971,0.984629,0.652398,0.775078,0.16187,0.241786,0.171385,0.215311,0.280441,0.0707915,0.770792,0.489521,0.569225,0.568454,0.570173,0.906823,0.449979,0.00905222,0.577371,0.926973,0.860227,0.260266,0.638511,0.743361,0.750815,0.658754,0.500763,0.774022,0.989967,0.0661438,0.814705,0.0663725,0.296515,0.0830365,0.685142,0.752838,0.143336,0.184579,0.91654,0.40154,0.227166,0.297221,0.352846,0.0575634,0.968509,0.6059,0.0549414,0.960469,0.246472,0.708052,0.079897,0.51328,0.625751,0.400704,0.553867,0.472084,0.294287,0.0438401,0.392105,0.373279,0.690748,0.0254875,0.276623,0.133847,0.720324,0.484821,0.343914,0.183092,0.803054,0.970414,0.922036,0.577844,0.694086,0.569627,0.617283,0.484473,0.0140932,0.803149,0.342462,0.194481,0.0992222,0.305544,0.965057,0.83839,0.257902,0.907466,0.0970706,0.376706,0.0228774,0.417766,0.818741,0.603882,0.292542,0.750174,0.54269,0.959862,0.288576,0.353833,0.568261,0.948559,0.520458,0.459631,0.301011,0.587287,0.656437,0.623454,0.0109887,0.620741,0.706329,0.317102,0.135681,0.612364,0.215223,0.700249,0.959958,0.422425,0.888841,0.369119,0.824871,0.81018,0.746262,0.286898,0.222197,0.820112,0.698431,0.996944,0.377603,0.805836,0.916961,0.775322,0.00276244,0.859524,0.182086,0.00920159,0.968143,0.461307,0.75643,0.40849,0.75192,0.615003,0.893351,0.887027,0.0607412,0.246711,0.252306,0.929514,0.84945,0.00175178,0.0434155,0.229239,0.221898,0.193854,0.88589,0.997273,0.414097,0.776783,0.991124,0.680099,0.143071,0.363539,0.972878,0.41843,0.0700614,0.391623,0.177266,0.37845,0.706593,0.379525,0.018802,0.445506,0.790806,0.210741,0.455901,0.282342,0.473979,0.194988,0.631008,0.0312833,0.294364,0.696585,0.355047,0.730984,0.563854,0.135463,0.486938,0.589568,0.893441,0.612421,0.259536,0.572559,0.991886,0.13318,0.316554,0.141838,0.245129,0.863549,0.429631,0.165428,0.748038,0.378501,0.640736,0.461882,0.56801,0.48267,0.496355,0.428992,0.194155,0.289294,0.803872,0.836828,0.325839,0.789352,0.0688516,0.650362,0.571472,0.122884,0.597376,0.410876,0.119066,0.885375,0.875438,0.760202,0.187366,0.152069,0.430088,0.363752,0.865181,0.860763,0.583521,0.982626,0.566,0.516648,0.938302,0.220527,0.849893,0.967211,0.0445013,0.276804,0.015722,0.807459,0.522576,0.675048,0.736212,0.109111,0.968528,0.679836,0.703083,0.952996,0.946871,0.869559,0.38621,0.959244,0.592302,0.587973,0.172551,0.764715,0.133079,0.942185,0.0312548,0.97491,0.664788,0.58141,0.465885,0.607502,0.356008,0.368764,0.442061,0.0283884,0.143477,0.707106,0.710446,0.881369,0.103005,0.620663,0.0168481,0.765966,0.841358,0.202781,0.7467,0.944937,0.910056,0.175613,0.00169194,0.229402,0.491213,0.893018,0.851863,0.16491,0.718751,0.898445,0.386356,0.16364,0.927223,0.976836,0.903367,0.394317,0.865681,0.455895,0.632157,0.493193,0.561362,0.953236,0.20892,0.204148,0.0354444,0.422304,0.202144,0.547432,0.89911,0.418539,0.853704,0.268636,0.204857,0.828235,0.925786,0.0246872,0.738637,0.49676,0.485341,0.774545,0.427535,0.946957,0.783516,0.336346,0.524597,0.555024,0.503554,0.160765,0.624147,0.537826,0.852802,0.469063,0.714866,0.627316,0.539687,0.608659,0.123621,0.484926,0.61233,0.18291,0.504374,0.0790642,0.614093,0.825326,0.809787,0.829138,0.958229,0.783551,0.786611,0.00952786,0.462649,0.11252,0.509427,0.605905,0.88843,0.145098,0.393833,0.0214793,0.321451,0.41779,0.921886,0.731773,0.358252,0.794271,0.734112,0.273874,0.581469,0.863942,0.381109,0.168785,0.0568148,0.954532,0.94678,0.0753772,0.441645,0.266721,0.987475,0.827218,0.0689009,0.899294,0.905972,0.618903,0.975178,0.330914,0.323366,0.639369,0.357958,0.0347312,0.388086,0.176723,0.579986,0.143132,0.0414499,0.963191,0.0885242,0.642525,0.229105,0.553763,0.831379,0.309966,0.984991,0.824584,0.720955,0.258435,0.86453,0.933381,0.464697,0.728784,0.562774,0.514283,0.244083,0.150586,0.296611,0.0184382,0.273375,0.405309,0.928814,0.184253,0.750032,0.00121236,0.889901,0.265115,0.81575,0.968585,0.938242,0.394879,0.532228,0.798024,0.406012,0.0868923,0.661186,0.685561,0.830356,0.225093,0.689065,0.837874,0.142745,0.0368396,0.476366,0.486421,0.381639,0.499919,0.850807,0.991759,0.323499,0.78359,0.993335,0.859387,0.858132,0.810359,0.958121,0.10041,0.113801,0.800463,0.817427,0.421418,0.0614412,0.576508,0.779587,0.524941,0.913685,0.372205,0.0721278,0.0453274,0.589866,0.705036,0.694133,0.132771,0.183034,0.572603,0.288298,0.321907,0.514832,0.780918,0.344164,0.113571,0.111479,0.785849,0.827653,0.621077,0.162891,0.96961,0.0116913,0.826814,0.352913,0.638278,0.305079,0.485293,0.86963,0.947578,0.747504,0.998704,0.109302,0.298424,0.519702,0.34104,0.000123322,0.216517,0.770895,0.323622,0.569327,0.511279,0.893608,0.273423,0.94253,0.461968,0.579084,0.278931,0.929531,0.728955,0.360921,0.436561,0.00166637,0.568461,0.348677,0.981337,0.1681,0.586212,0.91434,0.450684,0.993367,0.430123,0.709388,0.00638413,0.720659,0.41251,0.927552,0.0866016,0.100494,0.267647,0.805066,0.0411009,0.394228,0.979624,0.183582,0.863456,0.251076,0.800907,0.467748,0.160289,0.115571,0.218989,0.673276,0.363861,0.0116259,0.198665,0.613285,0.521446,0.776333,0.400515,0.289324,0.547288,0.309981,0.993172,0.096362,0.201977,0.368748,0.339938,0.103089,0.274774,0.322771,0.227268,0.375853,0.927137,0.240494,0.204793,0.940694,0.0263205,0.498611,0.579831,0.380303,0.399754,0.744796,0.955724,0.896329,0.298954,0.809446,0.627094,0.774206,0.700638,0.404213,0.961814,0.912647,0.530457,0.899279,0.204286,0.453219,0.471689,0.450099,0.0489359,0.726175,0.517564,0.390109,0.0354233,0.489981,0.153046,0.410548,0.592132,0.981347,0.612691,0.409519,0.0926149,0.68203,0.571702,0.159006,0.816046,0.476875,0.791896,0.430635,0.528016,0.279937,0.0494072,0.932024,0.826233,0.669573,0.286617,0.910269,0.466897,0.567326,0.323458,0.0277676,|0.515262,0.814968,0.276929,0.0694219,0.827149,0.322264,0.792961,0.348696,0.149726,0.309159,0.0401973,0.0352705,0.288917,0.862755,0.87883,0.345473,0.846979,0.34972,0.95779,0.294881,0.396469,0.972485,0.70667,0.297129,0.979053,0.710924,0.322636,0.845854,0.688076,0.0268973,0.938599,0.298401,0.955716,0.158296,0.860318,0.812355,0.364884,0.427404,0.0335079,0.817435,0.837656,0.697413,0.353702,0.37907,0.0831861,0.416539,0.189347,0.686031,0.822756,0.56964,0.47055,0.88088,0.112859,0.115199,0.41302,0.25432,0.2096,0.317695,0.519611,0.491168,0.168358,0.80991,0.313368,0.294735,0.332005,0.0393732,0.921498,0.00175387,0.619295,0.591486,0.771518,0.89235,0.117772,0.867161,0.151649,0.203566,0.342669,0.603642,0.0133491,0.29183,0.739023,0.334677,0.301602,0.187974,0.710579,0.716701,0.942927,0.637973,0.370818,0.00172317,0.955512,0.93672,0.450088,0.378272,0.0881231,0.660614,0.59903,0.817591,0.761803,0.214506,0.320559,0.739925,0.500847,0.0708685,0.978705,0.584308,0.243871,0.17481,0.766879,0.102958,0.386923,0.261279,0.4375,0.63315,0.909951,0.44179,0.609377,0.897957,0.0569083,0.403802,0.191713,0.659186,0.858763,0.864658,0.535462,0.203777,0.555297,0.452496,0.896726,0.972973,0.70925,0.997503,0.931801,0.0555229,0.655752,0.170534,0.106116,0.566595,0.545313,0.578657,0.745982,0.529834,0.927189,0.219677,0.152438,0.562066,0.592929,0.30355,0.0386106,0.809484,0.302773,0.779396,0.480869,0.944672,0.0717698,0.978861,0.801135,0.861908,0.477209,0.608495,0.695715,0.753477,0.706994,0.415661,0.247253,0.424349,0.286057,0.28304,0.523197,0.462153,0.283663,0.423863,0.894677,0.160071,0.483958,0.353811,0.146196,0.426156,0.865581,0.806033,0.291838,0.336652,0.90506,0.609146,0.161813,0.877196,0.684123,0.523863,0.449457,0.829451,0.344797,0.795699,0.93681,0.854204,0.47999,0.630041,0.576344,0.0541448,0.685839,0.645097,0.621169,0.60193,0.187354,0.167855,0.421466,0.626695,0.470142,0.550682,0.791523,0.600736,0.23447,0.66048,0.58587,0.307965,0.699877,0.220754,0.543039,0.918444,0.437812,0.623092,0.0604385,0.542125,0.640439,0.913705,0.165594,0.55991,0.0693653,0.488261,0.877162,0.152804,0.0155101,0.339726,0.301142,0.68078,0.40386,0.676079,0.441991,0.963042,0.344498,0.950528,0.955086,0.0362698,0.21516,0.910169,0.300769,0.726481,0.451933,0.953135,0.13801,0.303971,0.313653,0.274078,0.382518,0.109637,0.671497,0.418586,0.585927,0.229743,0.727496,0.0765803,0.765333,0.481021,0.414883,0.0112453,0.386953,0.332114,0.0807108,0.98257,0.570646,0.71504,0.911813,0.781854,0.270535,0.260866,0.219184,0.730668,0.84618,0.148912,0.774001,0.992346,0.763432,0.509866,0.770866,0.323865,0.512258,0.35026,0.590813,0.973208,0.0206918,0.0853812,0.919849,0.686576,0.423482,0.239375,0.950546,0.624677,0.817003,0.907138,0.0103849,0.731031,0.299398,0.197932,0.280896,0.209436,0.725749,0.934149,0.943639,0.550536,0.0858833,0.562897,0.601061,0.206594,0.0840495,0.414438,0.391225,0.616122,0.569884,0.434119,0.563338,0.422122,0.0481041,0.157457,0.187356,0.977813,0.851395,0.0672339,0.433328,0.777556,0.0836063,0.334402,0.0220819,0.0614646,0.790265,0.199722,0.206317,0.815453,0.275675,0.673989,0.960012,0.701905,0.15779,0.919198,0.485793,0.258724,0.354976,0.757089,0.660941,0.615718,0.885737,0.322706,0.084154,0.943086,0.765324,0.143408,0.141735,0.590979,0.0271872,0.0596616,0.631127,0.238968,0.493555,0.260689,0.253108,0.70125,0.314159,0.528392,0.0966149,0.0133377,0.713972,0.95513,0.457619,0.671224,0.273548,0.0447943,0.634596,0.463467,0.8448,0.410965,0.499308,0.390078,0.11287,0.971613,0.310086,0.514388,0.89214,0.96066,0.0561305,0.658075,0.725943,0.522884,0.431707,0.701079,0.863152,0.365906,0.689563,0.14039,0.0909971,0.522588,0.428827,0.333485,0.591343,0.324864,0.69945,0.961433,0.165176,0.957522,0.161284,0.753682,0.383608,0.992055,0.703557,0.756784,0.465884,0.340808,0.44953,0.318968,0.252466,0.392455,0.0136586,0.010857,0.155219,0.356625,0.237784,0.609269,0.544068,0.923902,0.272685,0.49051,0.920029,0.785479,0.20093,0.239054,0.604999,0.0976837,0.21527,0.970666,0.432866,0.541002,0.489353,0.632585,0.0121524,0.779254,0.262857,0.20559,0.773725,0.0929314,0.2164,0.765411,0.386941,0.956367,0.330347,0.430375,0.457797,0.0599565,0.731226,0.136809,0.00222301,0.154655,0.0276825,0.982793,0.0488799,0.790525,0.0971249,0.621762,0.32857,0.500343,0.487516,0.0571303,0.903162,0.144271,0.494137,0.469372,0.84291,0.346518,0.91646,0.873896,0.713577,0.667193,0.963382,0.63323,0.327076,0.565489,0.815266,0.58975,0.0227348,0.100296,0.86221,0.222169,0.613116,0.37852,0.138183,0.728512,0.776564,0.561794,0.493064,0.253464,0.315236,0.829913,0.00720984,0.0673586,0.0827612,0.957848,0.689097,0.552496,0.367347,0.651631,0.247194,0.541351,0.512109,0.303361,0.0284675,0.796594,0.981288,0.0757833,0.684301,0.193513,0.723363,0.594009,0.50429,0.444276,0.246369,0.258163,0.796286,0.923927,0.00303805,0.059291,0.486437,0.254208,0.956916,0.635985,0.697824,0.27434,0.191306,0.821229,0.568763,0.221021,0.30534,0.303804,0.688909,0.421593,0.945773,0.122296,0.746256,0.326695,0.322703,0.790804,0.0150592,0.937603,0.965512,0.860603,0.841023,0.511641,0.0588189,0.898476,0.946161,0.912321,0.0686036,0.112858,0.0345322,0.993192,0.509773,0.141549,0.0576749,0.354822,0.998224,0.228661,0.628903,0.775653,0.171583,0.940028,0.680235,0.181525,0.759799,0.110352,0.53048,0.799936,0.463075,0.723448,0.649172,0.274962,0.38053,0.0419804,0.19984,0.870012,0.57002,0.821543,0.00852019,0.954312,0.383864,0.769283,0.375777,0.47134,0.0318766,0.713342,0.628102,0.0934428,0.865493,0.935309,0.752105,0.721337,0.133606,0.178592,0.385628,0.609576,0.128205,0.592373,0.697371,0.269526,0.60025,0.918576,0.216206,0.565017,0.231213,0.584374,0.994126,0.798901,0.323431,0.289536,0.162267,0.716922,0.122843,0.281619,0.455998,0.676006,0.693469,0.755686,0.0128254,0.216683,0.837628,0.897008,0.479735,0.242644,0.783004,0.514914,0.810261,0.724301,0.68504,0.480401,0.222865,0.40712,0.719834,0.0330186,0.900445,0.473506,0.799152,0.404786,0.998485,0.732047,0.962217,0.578971,0.168339,0.207614,0.43055,0.19216,0.875223,0.578232,0.484618,0.389257,0.831827,0.092857,0.743904,0.0580879,0.304312,0.709076,0.957078,0.829957,0.35366,0.374196,0.64074,0.819249,0.871772,0.352655,0.449192,0.790238,0.17457,0.844905,0.0544779,0.306862,0.595147,0.337094,0.0668098,0.881084,0.865865,0.162709,0.793014,0.687613,0.63895,0.207864,0.443099,0.914276,0.170866,0.0317974,0.727322,0.625433,0.222551,0.390399,0.268586,0.00966513,0.367317,0.223391,0.965209,0.178334,0.52169,0.057479,0.46169,0.205612,0.0751508,0.400693,0.150098,0.167541,0.672754,0.869862,0.958401,0.952676,0.505049,0.628988,0.46624,0.257126,0.383197,0.0166004,0.510085,0.951821,0.992505,0.857166,0.479949,0.22146,0.508068,0.566174,0.0863143,0.827123,0.180202,0.519497,0.15463,0.456929,0.619374,0.122026,0.720071,0.736234,0.292204,0.984342,0.0808987,0.578997,0.457311,0.380764,0.367461,0.622119,0.921014,0.243505,0.157487,0.390589,0.505923,0.859594,0.737511,0.283965,0.263846,0.563931,0.292421,0.296573,0.410577,0.624213,0.692655,0.340021,0.37981,0.283353,0.315747,0.870251,0.307624,0.81596,0.0864346,0.852449,0.241866,0.52154,0.462927,0.207851,0.242384,0.611171,0.503512,0.847593,0.355029,0.0285965,0.147668,0.408408,0.850588,0.790269,0.35393,0.115459,0.636191,0.348609,0.269706,0.101059,0.0932733,0.229317,0.00131166,0.781297,0.484845,0.594012,0.274261,0.548304,0.0334007,0.616481,0.379938,0.787908,0.633917,0.505713,0.398184,0.189219,0.326426,0.317971,0.149731,0.307632,0.539003,0.346852,0.780542,0.756479,0.471409,0.63105,0.482716,0.294945,0.398408,0.0027768,0.680258,0.149546,0.597427,0.370589,0.648725,0.0963855,0.216645,0.323596,0.56961,0.766081,0.0493279,0.482341,0.488289,0.155188,0.116038,0.086941,0.479936,0.728474,0.388982,0.114413,0.031273,0.713127,0.767253,0.925482,0.446256,0.546363,0.271191,0.125542,0.0326157,0.594517,0.244238,0.914774,0.724208,0.125852,0.390135,0.439682,0.545695,0.628591,0.971359,0.589789,0.185212,0.664535,0.656036,0.763568,0.143354,0.978059,0.840923,0.795988,0.398533,0.452455,0.599906,0.477204,0.723714,0.74896,0.646165,0.248046,0.228533,0.337716,0.760965,0.98921,0.418908,0.91042,0.658471,0.74558,0.684119,0.675675,0.140379,0.871571,0.303748,0.393318,0.00546175,0.141309,0.52745,0.536293,0.26663,0.324668,0.236339,0.900706,0.909702,0.556844,0.15685,0.938864,0.344184,0.345449,0.281448,0.915322,0.419966,0.152867,0.34847,0.893395,0.314779,0.103072,0.0376949,0.444211,0.114826,0.559301,0.479515,0.639238,0.812306,0.659767,0.86214,0.81612,0.887197,0.620396,0.650284,0.962312,0.117176,0.824362,0.83837,0.377674,0.957378,0.301789,0.72991,0.368388,0.394002,0.98499,0.664906,0.444598,0.341278,0.360451,0.918341,0.211638,0.802164,0.171338,0.360611,0.174508,0.788596,0.580177,0.0953028,0.997055,0.511797,0.978034,0.692171,0.761675,0.548912,0.507952,0.52795,0.296621,0.889885,0.828486,0.148405,0.40691,0.878468,0.364645,0.3641,0.77953,0.0164446,0.828202,0.342694,0.803348,0.0677312,0.466387,0.929433,0.12045,0.740679,0.58553,0.792852,0.449305,0.799821,0.992086,0.797087,0.752219,0.149746,0.161743,0.3972,0.426953,0.652472,0.573967,0.786297,0.376702,0.124529,0.450538,0.508823,0.904042,0.171816,0.0518796,0.16276,0.648037,0.319626,0.586351,|0.764153,0.448098,0.331013,0.479881,0.0983204,0.330929,0.687601,0.616022,0.4229,0.113802,0.141949,0.144144,0.610614,0.696326,0.919176,0.842689,0.661664,0.514133,0.717712,0.782089,0.144245,0.125368,0.53761,0.253058,0.87737,0.36332,0.300139,0.176228,0.893569,0.341039,0.384219,0.987485,0.664601,0.309211,0.198064,0.331799,0.00182402,0.356847,0.931024,0.667472,0.449102,0.63803,0.15114,0.00739044,0.114755,0.77295,0.710823,0.267627,0.888268,0.337673,0.505518,0.919869,0.856257,0.580782,0.433598,0.900562,0.367108,0.310767,0.642189,0.0634156,0.645995,0.377998,0.90423,0.950311,0.935797,0.713521,0.22036,0.989172,0.163494,0.597027,0.418185,0.158406,0.296243,0.986866,0.559766,0.729904,0.435577,0.60586,0.387733,0.495894,0.624803,0.972262,0.760674,0.81258,0.649785,0.157524,0.0627803,0.849282,0.353642,0.150192,0.382413,0.468412,0.426827,0.895753,0.35065,0.0943976,0.304606,0.547523,0.0145056,0.827865,0.205184,0.0836792,0.66469,0.672576,0.0333461,0.259812,0.681954,0.423124,0.5398,0.302629,0.684361,0.635417,0.826295,0.85207,0.380813,0.353601,0.321098,0.106563,0.751091,0.431535,0.730373,0.724933,0.934279,0.913644,0.0449774,0.641693,0.700266,0.00718147,0.599066,0.678922,0.336716,0.725685,0.406715,0.732994,0.631146,0.703004,0.170488,0.980643,0.774098,0.517058,0.447591,0.0907046,0.971522,0.707402,0.377356,0.873061,0.574285,0.761547,0.16735,0.511816,0.274927,0.802542,0.0936191,0.424456,0.115871,0.845877,0.369277,0.742691,0.0452865,0.780035,0.563479,0.875427,0.180452,0.624116,0.904112,0.377456,0.280983,0.859117,0.0848964,0.708113,0.465109,0.800428,0.595074,0.00923032,0.190599,0.355742,0.988269,0.432734,0.348906,0.0191553,0.135377,0.858862,0.985698,0.584975,0.849015,0.512447,0.256426,0.232898,0.0445348,0.885639,0.175066,0.31351,0.513784,0.281512,0.129056,0.628542,0.896588,0.589875,0.188688,0.312341,0.108871,0.932642,0.504688,0.168256,0.177043,0.296078,0.329893,0.0419185,0.320239,0.28755,0.687675,0.938665,0.773703,0.251965,0.794976,0.793237,0.117855,0.262443,0.961529,0.673522,0.246514,0.449067,0.715956,0.249992,0.805545,0.205503,0.794152,0.94635,0.69267,0.848129,0.778309,0.256473,0.790442,0.949183,0.533313,0.795453,0.511924,0.462904,0.393533,0.884948,0.205385,0.370407,0.257266,0.543221,0.0089404,0.894713,0.345108,0.503984,0.617881,0.375437,0.171973,0.0118568,0.687796,0.105689,0.0198463,0.554422,0.472403,0.0389627,0.456254,0.696218,0.924566,0.00170678,0.871971,0.319702,0.828942,0.373817,0.0934561,0.138442,0.592156,0.909907,0.453045,0.209013,0.182344,0.150748,0.574877,0.507906,0.000716984,0.467041,0.70393,0.0471972,0.676353,0.665154,0.237508,0.579042,0.605811,0.0228077,0.802497,0.879224,0.261886,0.175051,0.748539,0.408239,0.528967,0.491795,0.137202,0.514068,0.5475,0.285779,0.258702,0.542887,0.396643,0.293181,0.990009,0.735678,0.579378,0.0824848,0.397713,0.755369,0.580037,0.458834,0.514043,0.178831,0.0765726,0.494801,0.969907,0.298784,0.0813698,0.565036,0.379797,0.820249,0.21853,0.622355,0.225377,0.326141,0.930118,0.611515,0.775035,0.576689,0.0778351,0.617608,0.361657,0.20433,0.723597,0.658108,0.663915,0.971374,0.47695,0.465891,0.91766,0.888377,0.040266,0.0343122,0.43581,0.574954,0.0730554,0.708891,0.674294,0.440818,0.562735,0.863907,0.421584,0.503926,0.265518,0.340396,0.304774,0.152014,0.186908,0.635705,0.205414,0.332087,0.139425,0.887991,0.0302863,0.616999,0.306944,0.947361,0.68008,0.214217,0.632492,0.644327,0.105819,0.23321,0.302387,0.675247,0.767686,0.107486,0.213475,0.433554,0.550624,0.556494,0.383184,0.211645,0.416905,0.615505,0.654608,0.467279,0.303873,0.634342,0.344341,0.670036,0.357632,0.161427,0.545273,0.825321,0.347251,0.0280611,0.869862,0.343381,0.574948,0.488241,0.714673,0.5642,0.780225,0.507001,0.258348,0.355535,0.515742,0.61852,0.549912,0.968261,0.796063,0.722893,0.548473,0.60859,0.147412,0.108512,0.713312,0.465365,0.977966,0.37957,0.585971,0.639216,0.0825225,0.189051,0.648945,0.09396,0.0139931,0.0249957,0.774825,0.139415,0.0363106,0.775669,0.612131,0.978059,0.0591955,0.434134,0.587063,0.562919,0.513166,0.170856,0.67796,0.692217,0.260088,0.741573,0.963752,0.0969578,0.25258,0.869847,0.404468,0.109414,0.805202,0.873003,0.57428,0.635746,0.114791,0.818552,0.955391,0.823003,0.0787901,0.707531,0.583552,0.296531,0.628905,0.47612,0.101387,0.620976,0.626887,0.214257,0.636399,0.331643,0.0235754,0.751222,0.602128,0.698655,0.892375,0.734807,0.313862,0.0814821,0.167517,0.404687,0.65285,0.0657427,0.30298,0.0880858,0.709593,0.895757,0.108366,0.0743482,0.445536,0.992134,0.883664,0.57467,0.679974,0.895424,0.277399,0.0573402,0.137459,0.365054,0.845634,0.210045,0.417297,0.68152,0.271298,0.698045,0.601157,0.188853,0.814672,0.595038,0.0914201,0.960508,0.500406,0.942842,0.868978,0.44412,0.558545,0.359505,0.548511,0.0339107,0.661496,0.891116,0.99776,0.00401169,0.907518,0.429731,0.586305,0.0504196,0.173436,0.576754,0.94878,0.155513,0.428826,0.269939,0.384334,0.978898,0.359181,0.675257,0.324123,0.939757,0.994412,0.814152,0.114176,0.400636,0.536931,0.266659,0.156556,0.756945,0.0922624,0.435291,0.520343,0.957723,0.280571,0.322799,0.0896257,0.871008,0.199697,0.870995,0.663642,0.398557,0.500889,0.691509,0.815664,0.388026,0.887171,0.367598,0.216136,0.506863,0.658537,0.0873094,0.978712,0.222098,0.248487,0.614267,0.345701,0.290135,0.352726,0.270598,0.595594,0.420269,0.409022,0.703255,0.236606,0.719586,0.0650371,0.177708,0.964669,0.196902,0.0811312,0.368679,0.69761,0.180151,0.574733,0.254409,0.83739,0.873003,0.767429,0.188303,0.0655627,0.267143,0.519672,0.951214,0.369047,0.924633,0.274468,0.880506,0.722416,0.0401797,0.108586,0.808468,0.380203,0.0182903,0.599647,0.751291,0.615434,0.919635,0.764488,0.00659889,0.756257,0.135534,0.694615,0.747401,0.94618,0.537689,0.668678,0.815979,0.955959,0.601244,0.91622,0.457557,0.5792,0.265387,0.21113,0.75655,0.321481,0.577718,0.440302,0.23239,0.585375,0.723938,0.623774,0.861965,0.724445,0.104198,0.147006,0.708649,0.340869,0.728157,0.877889,0.632512,0.800781,0.755601,0.811219,0.0164818,0.807108,0.0605553,0.976598,0.375857,0.5594,0.156279,0.619811,0.0632652,0.569946,0.272942,0.787093,0.0173712,0.0325819,0.750812,0.849385,0.751408,0.21392,0.263829,0.992781,0.401162,0.310071,0.603266,0.678788,0.739897,0.104683,0.914454,0.734315,0.93369,0.973919,0.743333,0.719279,0.215248,0.0319552,0.28657,0.627135,0.0978473,0.0683982,0.464447,0.262836,0.607899,0.79705,0.942745,0.0824499,0.611931,0.846551,0.988539,0.935851,0.450931,0.17192,0.792195,0.849372,0.759326,0.302791,0.681621,0.986197,0.80847,0.679639,0.219532,0.644234,0.465023,0.457918,0.349275,0.144985,0.657033,0.352058,0.6045,0.219051,0.537207,0.852116,0.632658,0.61388,0.233085,0.152842,0.342653,0.120724,0.534436,0.361078,0.771695,0.223589,0.609486,0.469494,0.5207,0.477382,0.880548,0.694801,0.151196,0.714589,0.889287,0.845849,0.116004,0.218788,0.637984,0.284528,0.536528,0.193719,0.162359,0.0370564,0.315733,0.845939,0.869818,0.11774,0.382881,0.76926,0.140544,0.240103,0.533978,0.417861,0.688641,0.27639,0.997264,0.367759,0.538832,0.261829,0.89592,0.823473,0.687811,0.433988,0.379149,0.713979,0.340006,0.960456,0.0916014,0.41033,0.55518,0.217652,0.256862,0.521898,0.786245,0.156468,0.50124,0.550102,0.690575,0.029951,0.792285,0.0572698,0.520596,0.945802,0.521299,0.232326,0.870236,0.94487,0.528377,0.518042,0.302179,0.622621,0.205847,0.561241,0.353526,0.715491,0.524808,0.352412,0.928659,0.392984,0.517025,0.72731,0.224064,0.91427,0.845237,0.844376,0.0525432,0.086158,0.418057,0.542282,0.333219,0.248965,0.14838,0.622036,0.886685,0.707353,0.862227,0.495444,0.446043,0.213123,0.686814,0.9439,0.421237,0.177368,0.237486,0.932303,0.167131,0.357319,0.0621558,0.21603,0.444088,0.988963,0.0834347,0.618954,0.309953,0.955697,0.886806,0.890341,0.398432,0.649604,0.876655,0.0748818,0.0605285,0.829499,0.271146,0.778019,0.225562,0.232448,0.0875746,0.925877,0.263179,0.736448,0.921337,0.160693,0.73474,0.904662,0.87119,0.11402,0.495555,0.360223,0.481302,0.19265,0.816849,0.607204,0.891584,0.761349,0.939688,0.666535,0.928383,0.371391,0.6092,0.948632,0.901438,0.306869,0.469859,0.130561,0.286705,0.554919,0.779076,0.544041,0.531106,0.833553,0.532682,0.371798,0.00623202,0.799115,0.676961,0.151059,0.0865177,0.286669,0.24966,0.0503545,0.516381,0.114465,0.13603,0.897913,0.00474787,0.551318,0.273218,0.743927,0.747099,0.809436,0.151366,0.610687,0.263697,0.0702922,0.0410835,0.649993,0.817009,0.679532,0.13661,0.839947,0.408801,0.123365,0.113615,0.464537,0.548308,0.655576,0.812272,0.806901,0.55728,0.483937,0.669477,0.741396,0.413518,0.66666,0.36807,0.381442,0.208883,0.866813,0.605719,0.289041,0.867352,0.919944,0.120651,0.375093,0.843444,0.756772,0.35134,0.293675,0.930922,0.970917,0.619077,0.733608,0.976655,0.507084,0.692437,0.795063,0.0592223,0.513163,0.00430137,0.458449,0.789754,0.026026,0.48023,0.0608845,0.287799,0.112032,0.201544,0.526939,0.0594213,0.845007,0.926201,0.492391,0.393666,0.620636,0.470752,0.243432,0.472779,0.728125,0.162265,0.348545,0.267383,0.996464,0.870888,0.72724,0.845982,0.640508,0.76322,0.421036,0.0558715,0.672975,0.630333,0.440346,0.592743,0.120764,0.613141,0.340599,0.472516,0.407365,0.101129,0.805331,0.430165,0.115077,0.118484,|0.679681,0.785731,0.986795,0.0171746,0.666015,0.821066,0.617207,0.430703,0.467319,0.558695,0.41026,0.544551,0.306986,0.104519,0.772537,0.796893,0.297987,0.34073,0.807233,0.163516,0.342096,0.529258,0.879101,0.0407948,0.178601,0.150049,0.442245,0.857147,0.117392,0.971541,0.978815,0.349858,0.962497,0.820036,0.921021,0.910287,0.696815,0.991342,0.652322,0.864004,0.39143,0.943701,0.807172,0.299735,0.70351,0.68644,0.0065183,0.31269,0.877751,0.0365185,0.252608,0.482153,0.84365,0.791497,0.501903,0.00201124,0.723607,0.642226,0.00359499,0.840472,0.172622,0.0319963,0.453325,0.376008,0.483229,0.294931,0.209364,0.627258,0.892975,0.578638,0.97414,0.701797,0.130222,0.923527,0.954818,0.177647,0.118928,0.664257,0.407061,0.982738,0.424347,0.0701974,0.555813,0.86411,0.618673,0.0708111,0.203762,0.0780029,0.501868,0.760396,0.970594,0.559972,0.994311,0.939585,0.956513,0.622351,0.815802,0.399006,0.407284,0.797797,0.623823,0.408277,0.887431,0.450677,0.4896,0.795705,0.203976,0.645443,0.678217,0.154415,0.0585977,0.633159,0.501209,0.036062,0.70478,0.724005,0.253296,0.987327,0.66004,0.236204,0.623708,0.302132,0.307425,0.389153,0.480618,0.304741,0.537945,0.276882,0.46889,0.141845,0.198622,0.534791,0.717359,0.621931,0.13169,0.279047,0.730157,0.410845,0.49804,0.81451,0.187976,0.468649,0.367186,0.317346,0.512519,0.317505,0.525644,0.569234,0.897542,0.0540756,0.534147,0.976065,0.23282,0.225002,0.966965,0.704541,0.385859,0.443607,0.456114,0.600191,0.157514,0.224765,0.870229,0.578346,0.233094,0.140103,0.933059,0.740995,0.231943,0.642166,0.780369,0.528285,0.749468,0.212194,0.235448,0.470061,0.481861,0.922774,0.258015,0.387807,0.7193,0.786134,0.00956935,0.178334,0.0914323,0.0852272,0.936762,0.5629,0.119551,0.873912,0.911838,0.148878,0.634261,0.475215,0.765694,0.178712,0.957218,0.125711,0.455068,0.959539,0.378575,0.32307,0.452229,0.290303,0.409733,0.376332,0.00861049,0.39579,0.748801,0.198162,0.505711,0.826291,0.21563,0.346325,0.109996,0.216576,0.359099,0.00492102,0.407542,0.214117,0.591658,0.521227,0.218285,0.809961,0.0231227,0.732696,0.43715,0.628835,0.735165,0.34705,0.323241,0.885565,0.441214,0.0822656,0.840219,0.195681,0.744743,0.864358,0.658144,0.30455,0.178764,0.458971,0.2548,0.792235,0.927384,0.590757,0.892541,0.391982,0.367036,0.0774045,0.0210281,0.653179,0.947834,0.569334,0.0352842,0.635257,0.582258,0.777538,0.907117,0.980576,0.430838,0.109449,0.427192,0.374495,0.311475,0.227765,0.942529,0.380374,0.691755,0.718074,0.0215201,0.545584,0.0504075,0.878296,0.820826,0.647212,0.313519,0.703139,0.312729,0.653436,0.900942,0.392534,0.198182,0.561475,0.364683,0.369083,0.392681,0.566108,0.434853,0.0428083,0.980861,0.765779,0.8048,0.491366,0.34796,0.242047,0.578539,0.142255,0.737301,0.0945693,0.489159,0.394428,0.156492,0.630431,0.309231,0.299832,0.865739,0.588783,0.340448,0.511939,0.64568,0.428008,0.92205,0.772949,0.628666,0.533395,0.848862,0.969502,0.580864,0.88089,0.61591,0.126855,0.905461,0.592681,0.0376335,0.492191,0.040558,0.529639,0.419349,0.655932,0.930074,0.710596,0.537677,0.282616,0.181515,0.55807,0.989316,0.0423024,0.0559617,0.730326,0.957147,0.161946,0.796708,0.0223066,0.825079,0.383468,0.0381153,0.824596,0.794688,0.718774,0.566095,0.311593,0.906252,0.934808,0.364166,0.0164111,0.162998,0.133895,0.458798,0.0419358,0.0695223,0.166365,0.400154,0.722056,0.162311,0.998116,0.232281,0.38242,0.479794,0.659685,0.922816,0.73391,0.655919,0.961963,0.881091,0.434191,0.799087,0.376747,0.052994,0.293712,0.6031,0.6936,0.84079,0.872398,0.183933,0.497214,0.886014,0.776721,0.611699,0.930227,0.561819,0.0994804,0.937869,0.839846,0.539023,0.326753,0.503712,0.700294,0.379723,0.943812,0.473259,0.778571,0.883913,0.629033,0.403404,0.790155,0.804206,0.0219547,0.18082,0.0673155,0.0248299,0.820648,0.477777,0.236058,0.486727,0.238121,0.755396,0.724095,0.791868,0.844286,0.625565,0.314171,0.331924,0.0373608,0.851431,0.992468,0.471219,0.11167,0.212964,0.345266,0.128255,0.770528,0.568674,0.816129,0.512826,0.514922,0.822578,0.90498,0.772802,0.610552,0.460037,0.68897,0.576507,0.491649,0.97259,0.442347,0.237144,0.29516,0.201522,0.674812,0.693131,0.950177,0.41722,0.231472,0.746839,0.173369,0.814136,0.224278,0.605467,0.0821123,0.00800341,0.426877,0.798998,0.672325,0.947815,0.714103,0.95108,0.144539,0.644325,0.995235,0.45548,0.597559,0.320487,0.869629,0.735446,0.907562,0.37573,0.958971,0.921206,0.204219,0.524968,0.786001,0.9592,0.495292,0.765329,0.0708786,0.946515,0.558665,0.26043,0.234831,0.206774,0.351941,0.523577,0.00730258,0.0229714,0.710377,0.560213,0.257556,0.860871,0.771282,0.424329,0.222908,0.00493592,0.744576,0.94164,0.673406,0.218491,0.0879629,0.379743,0.902205,0.818868,0.956746,0.961948,0.904765,0.0918193,0.989736,0.379392,0.859105,0.254413,0.81487,0.0538291,0.00651872,0.898407,0.388253,0.120511,0.233607,0.243196,0.70499,0.421234,0.698326,0.0538904,0.0412853,0.747287,0.141559,0.319022,0.834937,0.292955,0.726599,0.586906,0.242441,0.266217,0.146995,0.629144,0.560514,0.489047,0.377632,0.180768,0.799313,0.852697,0.586476,0.327421,0.379353,0.598232,0.60828,0.31843,0.9715,0.209516,0.251864,0.925928,0.663198,0.354283,0.0126734,0.0840053,0.0572053,0.618906,0.957395,0.995498,0.462002,0.559115,0.390798,0.274218,0.46944,0.747063,0.702965,0.565828,0.923943,0.278591,0.078355,0.88439,0.0478839,0.99135,0.622347,0.690806,0.672535,0.691789,0.552417,0.769864,0.651789,0.0342266,0.63456,0.912473,0.414353,0.996199,0.55036,0.735976,0.909191,0.904319,0.33035,0.931806,0.638674,0.439422,0.55682,0.230165,0.167367,0.0543354,0.209327,0.388106,0.437028,0.374584,0.371123,0.794635,0.0699865,0.803917,0.598565,0.182086,0.400252,0.87666,0.0028125,0.242419,0.462522,0.80002,0.917239,0.350553,0.596132,0.984998,0.944688,0.474445,0.637922,0.590964,0.954534,0.543069,0.242554,0.580883,0.0278878,0.682902,0.106288,0.569854,0.912555,0.767487,0.707974,0.542575,0.322435,0.562447,0.803502,0.0450574,0.292568,0.200761,0.401561,0.600253,0.0438492,0.720751,0.481744,0.423084,0.813857,0.221212,0.342708,0.396319,0.627674,0.774028,0.787611,0.0892743,0.160544,0.256001,0.0748849,0.989416,0.716706,0.162607,0.916101,0.971245,0.286562,0.00962186,0.894406,0.0108544,0.177963,0.517665,0.66232,0.242908,0.565815,0.810197,0.461237,0.546171,0.885519,0.401449,0.640269,0.962348,0.762456,0.0182086,0.432592,0.0986942,0.931432,0.814238,0.846002,0.45452,0.312282,0.504888,0.357422,0.131425,0.555448,0.765787,0.266177,0.0669737,0.0433434,0.321085,0.758561,0.626469,0.0870121,0.227379,0.250121,0.0491009,0.999809,0.735714,0.384546,0.208999,0.891808,0.824977,0.0930247,0.148903,0.837917,0.110136,0.542448,0.780331,0.972356,0.452585,0.712462,0.924154,0.589734,0.651859,0.716569,0.548121,0.691016,0.698473,0.494782,0.249697,0.237056,0.597564,0.587989,0.464803,0.48732,0.110855,0.715821,0.351132,0.439173,0.912723,0.880807,0.706705,0.854153,0.199091,0.905088,0.129072,0.185067,0.686874,0.623163,0.00814277,0.695769,0.305121,0.707804,0.544681,0.456486,0.190988,0.615894,0.763259,0.593478,0.781422,0.897089,0.551059,0.624328,0.283664,0.0707506,0.118962,0.735611,0.125542,0.974054,0.0969969,0.641324,0.604647,0.465986,0.520664,0.471168,0.151201,0.526603,0.927823,0.147289,0.568255,0.563269,0.408011,0.131249,0.889627,0.98857,0.879257,0.361598,0.240615,0.0297479,0.835333,0.177028,0.688466,0.461527,0.105331,0.199689,0.533172,0.801435,0.198306,0.335651,0.755865,0.832655,0.646495,0.201499,0.365905,0.612712,0.183388,0.456544,0.435375,0.835664,0.226221,0.130073,0.637592,0.774758,0.169363,0.81906,0.532715,0.1826,0.000839651,0.735591,0.987327,0.134532,0.65048,0.808159,0.818496,0.875249,0.186812,0.210942,0.793202,0.652283,0.334293,0.349928,0.0647305,0.784614,0.883134,0.375743,0.836036,0.525551,0.312564,0.581971,0.571175,0.25634,0.243364,0.706954,0.89638,0.489162,0.553305,0.547527,0.22189,0.652997,0.127961,0.586952,0.464639,0.505114,0.966405,0.505182,0.959608,0.200392,0.705884,0.555918,0.149794,0.609655,0.525829,0.71415,0.768156,0.119236,0.331955,0.424946,0.170568,0.813682,0.924251,0.00391698,0.698936,0.798951,0.620919,0.604567,0.963235,0.482859,0.803492,0.627865,0.741204,0.846008,0.753826,0.524372,0.0702428,0.465999,0.0161476,0.319321,0.340074,0.95478,0.781751,0.126345,0.827027,0.566136,0.768853,0.24524,0.0822949,0.242173,0.0238947,0.0610307,0.960284,0.092224,0.657502,0.549865,0.948499,0.361026,0.642972,0.356413,0.536543,0.986478,0.950115,0.150577,0.196257,0.00923961,0.59612,0.955499,0.313068,0.169911,0.991385,0.669946,0.375515,0.402312,0.223744,0.089035,0.550503,0.914379,0.409106,0.413052,0.764389,0.777683,0.560465,0.555051,0.518764,0.967543,0.449882,0.151186,0.289475,0.483171,0.0223464,0.59023,0.855484,0.116362,0.490535,0.355446,0.464993,0.736272,0.514491,0.759047,0.546704,0.403307,0.911164,0.634041,0.499507,0.141712,0.71529,0.158141,0.205013,0.0696134,0.379199,0.598956,0.739244,0.966208,0.230328,0.920088,0.395503,0.602833,0.0845435,0.547524,0.911018,0.836751,0.953048,0.900721,0.167413,0.884999,0.157159,0.0770373,0.344563,0.411188,0.889967,0.00415367,0.103083,0.137209,0.24358,0.0918756,0.799684,0.969967,0.144233,0.804884,0.110508,0.574813,0.77422,0.178278,0.0150813,0.761399,0.481982,0.284997,0.370034,0.365322,|0.59967,0.910922,0.20184,0.682176,0.831075,0.905626,0.3277,0.059027,0.325121,0.48922,0.430644,0.458902,0.484836,0.766012,0.798566,0.634776,0.459206,0.398383,0.819355,0.890466,0.969385,0.958542,0.720886,0.288545,0.31996,0.217631,0.320085,0.651049,0.232224,0.632257,0.209655,0.113793,0.950646,0.549652,0.856293,0.805688,0.270564,0.284737,0.0866466,0.124515,0.239331,0.53424,0.0402895,0.33332,0.0192359,0.448556,0.941043,0.108819,0.398405,0.979748,0.849101,0.662625,0.651035,0.75867,0.541048,0.131159,0.146833,0.246805,0.417848,0.643968,0.805508,0.40711,0.4316,0.529878,0.779449,0.520256,0.506344,0.537295,0.159515,0.582004,0.754827,0.0384642,0.878725,0.714795,0.403423,0.0798239,0.740736,0.0329864,0.274416,0.188054,0.412298,0.953118,0.695538,0.277313,0.23588,0.549716,0.226023,0.149256,0.332025,0.793526,0.0921731,0.564511,0.48289,0.0362198,0.0245306,0.359409,0.921034,0.30346,0.449385,0.97705,0.744601,0.839233,0.666165,0.784789,0.58214,0.974147,0.931478,0.026823,0.80947,0.0853538,0.037048,0.267386,0.953835,0.915298,0.441906,0.314867,0.904351,0.519727,0.914781,0.870369,0.223908,0.758867,0.291075,0.161928,0.258215,0.402989,0.381712,0.840657,0.560028,0.764163,0.145536,0.0219939,0.114482,0.0880319,0.737494,0.489749,0.3948,0.478307,0.6882,0.911355,0.386491,0.397594,0.357644,0.819105,0.5428,0.27233,0.457402,0.371219,0.256849,0.300121,0.0704731,0.931189,0.0928564,0.155601,0.643034,0.235282,0.477824,0.0302304,0.557492,0.951817,0.858271,0.196018,0.820527,0.775438,0.0248311,0.593544,0.657114,0.705801,0.255353,0.401333,0.843604,0.305416,0.922224,0.103428,0.330481,0.15188,0.720111,0.330965,0.00826406,0.998783,0.608735,0.129956,0.537916,0.276145,0.770743,0.463135,0.709522,0.190621,0.450445,0.302587,0.0838227,0.272132,0.220884,0.0412617,0.322076,0.944626,0.426252,0.516635,0.231891,0.049238,0.354215,0.278356,0.172479,0.43052,0.172386,0.638318,0.323869,0.327523,0.444297,0.527888,0.348071,0.526565,0.370476,0.649164,0.940653,0.239955,0.0676613,0.49607,0.155289,0.59456,0.735615,0.826157,0.092829,0.512915,0.158989,0.785642,0.398189,0.182559,0.81417,0.483231,0.25717,0.664106,0.729097,0.720195,0.931598,0.815341,0.138332,0.2056,0.576937,0.131004,0.486641,0.564046,0.443143,0.551697,0.665623,0.643235,0.989738,0.393788,0.860392,0.624211,0.354956,0.902965,0.479411,0.74191,0.559449,0.684459,0.598136,0.0266399,0.211677,0.348137,0.29404,0.722944,0.260132,0.65512,0.170952,0.325469,0.27254,0.83059,0.181433,0.327855,0.552435,0.50927,0.862653,0.711547,0.909333,0.0318154,0.123241,0.437061,0.866377,0.0656163,0.653132,0.551873,0.586024,0.756954,0.882069,0.0741801,0.858973,0.730562,0.875407,0.550336,0.617259,0.668577,0.214827,0.239484,0.0691935,0.538305,0.572778,0.130133,0.410495,0.580814,0.822706,0.646239,0.565603,0.333009,0.290804,0.403049,0.744595,0.162351,0.811368,0.388762,0.454572,0.396787,0.45914,0.682758,0.164417,0.170805,0.53621,0.572208,0.709823,0.195051,0.916823,0.173216,0.413599,0.0870335,0.13648,0.159539,0.313143,0.445238,0.932718,0.855372,0.621596,0.552767,0.206552,0.289405,0.380777,0.647716,0.096166,0.884401,0.479887,0.421877,0.0184637,0.735971,0.373154,0.710417,0.937226,0.735569,0.196134,0.709553,0.444235,0.434203,0.928708,0.895383,0.751152,0.602768,0.592036,0.35938,0.701459,0.306315,0.476297,0.540959,0.321191,0.37896,0.0608378,0.181946,0.711359,0.234579,0.0540342,0.502267,0.379235,0.488429,0.563938,0.523386,0.885646,0.605334,0.533703,0.624648,0.274528,0.11894,0.482352,0.774918,0.0579044,0.792242,0.620415,0.393975,0.312232,0.951842,0.901994,0.929879,0.446746,0.664889,0.483502,0.327662,0.373549,0.0361509,0.168842,0.612736,0.972561,0.685905,0.677531,0.0959074,0.186802,0.250794,0.23837,0.646726,0.670405,0.967395,0.61228,0.462869,0.032675,0.713957,0.531994,0.982557,0.758201,0.710522,0.379457,0.441283,0.124785,0.018102,0.199979,0.568276,0.901864,0.313734,0.726953,0.334462,0.806101,0.643799,0.979783,0.52268,0.470316,0.605261,0.46046,0.956235,0.663052,0.956022,0.720678,0.21124,0.768442,0.892777,0.866387,0.140558,0.567893,0.274688,0.590441,0.624367,0.826473,0.991553,0.601121,0.1295,0.680566,0.762086,0.796986,0.740493,0.248927,0.583493,0.796222,0.354617,0.571515,0.286533,0.812355,0.771374,0.814575,0.39308,0.06567,0.0241404,0.495848,0.463456,0.0393936,0.908035,0.189885,0.743996,0.616434,0.023158,0.36044,0.776479,0.0643665,0.976774,0.919884,0.426138,0.293628,0.276697,0.867508,0.483289,0.357632,0.331047,0.60738,0.721476,0.800743,0.385739,0.836845,0.357856,0.00630724,0.745143,0.945632,0.863598,0.309247,0.660919,0.309001,0.709604,0.303394,0.234703,0.158479,0.696559,0.325254,0.491962,0.872081,0.852102,0.152075,0.635389,0.491223,0.880775,0.198095,0.582577,0.923915,0.656439,0.221951,0.884713,0.154966,0.0414051,0.108469,0.178769,0.000412345,0.645186,0.400867,0.494228,0.397756,0.757771,0.87981,0.382242,0.111595,0.40214,0.0215522,0.557074,0.437332,0.867048,0.881415,0.149452,0.84359,0.0869917,0.723182,0.84658,0.93034,0.950627,0.522944,0.111685,0.152029,0.0685219,0.0873923,0.0956429,0.269844,0.451362,0.0864797,0.679218,0.977186,0.373421,0.167551,0.941178,0.924256,0.598646,0.681897,0.532545,0.51518,0.408514,0.972699,0.124408,0.858183,0.0816424,0.150843,0.69814,0.841118,0.94422,0.15851,0.943437,0.546752,0.50831,0.610225,0.0100779,0.0766046,0.612318,0.347645,0.149996,0.517934,0.343925,0.900303,0.462307,0.234368,0.897231,0.385252,0.964746,0.0963556,0.0417928,0.549227,0.0451672,0.581313,0.0466267,0.336277,0.685888,0.696964,0.226834,0.0125481,0.247426,0.885322,0.0286946,0.966225,0.0285501,0.0283896,0.46603,0.462226,0.310174,0.493178,0.833116,0.923996,0.285853,0.170388,0.564666,0.837524,0.163522,0.721365,0.980498,0.963447,0.282123,0.944065,0.329704,0.49431,0.423648,0.606347,0.386158,0.375653,0.275513,0.11026,0.992143,0.061453,0.897024,0.575439,0.277248,0.872624,0.751538,0.907877,0.504543,0.33815,0.0172671,0.0151117,0.796193,0.426943,0.675454,0.676096,0.604573,0.385048,0.504364,0.29177,0.00281119,0.861938,0.752883,0.419743,0.563444,0.0472814,0.0448754,0.491776,0.584546,0.998144,0.257839,0.684592,0.204561,0.0953327,0.31152,0.874126,0.526937,0.384006,0.0892268,0.574972,0.957033,0.54466,0.570917,0.891519,0.485644,0.698157,0.0163918,0.709652,0.979681,0.864082,0.325468,0.577022,0.556358,0.717473,0.238932,0.935907,0.355722,0.255194,0.150742,0.680727,0.687581,0.477341,0.645238,0.968816,0.613589,0.980234,0.88985,0.699727,0.1623,0.23478,0.311148,0.770728,0.0265484,0.495928,0.84615,0.293961,0.104331,0.974337,0.0961487,0.311855,0.121204,0.450726,0.63649,0.165376,0.742495,0.421813,0.0998386,0.310908,0.0783319,0.516413,0.0949904,0.644818,0.897066,0.765916,0.412199,0.116605,0.719882,0.70684,0.205185,0.896151,0.0966814,0.175754,0.677415,0.134239,0.00184453,0.581912,0.762891,0.16614,0.0196487,0.377267,0.538003,0.707481,0.0475451,0.430579,0.448989,0.398564,0.995121,0.591619,0.123702,0.0149795,0.632063,0.900472,0.439754,0.952666,0.48284,0.764114,0.87728,0.594865,0.0414256,0.415488,0.0642245,0.52954,0.518993,0.496806,0.677452,0.862758,0.31925,0.421415,0.178868,0.0462679,0.290134,0.104422,0.705934,0.161608,0.615593,0.397033,0.0694965,0.138472,0.162819,0.927094,0.167232,0.185753,0.635403,0.442371,0.843863,0.705428,0.338253,0.121934,0.300038,0.210189,0.465868,0.364864,0.776608,0.257023,0.810314,0.0776839,0.607881,0.192177,0.919657,0.114283,0.618137,0.830518,0.442115,0.990872,0.66714,0.292178,0.757021,0.543866,0.371669,0.0113204,0.395805,0.0699719,0.394233,0.362887,0.561891,0.763958,0.720446,0.471403,0.203506,0.874581,0.0897295,0.213654,0.905893,0.399128,0.245856,0.679936,0.220857,0.400459,0.333054,0.527821,0.289503,0.50052,0.601957,0.687079,0.245233,0.266816,0.549996,0.63547,0.148856,0.482106,0.306631,0.453865,0.0236446,0.713124,0.0566109,0.886276,0.311834,0.564108,0.282641,0.599804,0.768704,0.202756,0.281317,0.575594,0.390437,0.581729,0.187817,0.929429,0.809585,0.703525,0.96594,0.141576,0.983095,0.409786,0.395731,0.875144,0.13347,0.9923,0.301353,0.494382,0.850276,0.171536,0.114681,0.916627,0.437843,0.835528,0.602026,0.355364,0.23903,0.903655,0.257744,0.112914,0.0270058,0.285574,0.207048,0.459687,0.832723,0.00655633,0.507855,0.377024,0.48687,0.626908,0.361227,0.371166,0.43667,0.19094,0.984041,0.338187,0.0866456,0.959681,0.635077,0.618407,0.685994,0.147209,0.997228,0.101649,0.715406,0.991947,0.154719,0.726196,0.21663,0.083068,0.593184,0.915163,0.172623,0.684441,0.87819,0.860781,0.84678,0.159999,0.662857,0.321988,0.832846,0.821289,0.204273,0.701213,0.611276,0.242089,0.044826,0.411308,0.681543,0.523157,0.347512,0.661139,0.847638,0.272998,0.622628,0.156425,0.765901,0.122524,0.372645,0.324236,0.54695,0.661163,0.604519,0.968475,0.667598,0.671624,0.190378,0.887219,0.849077,0.536324,0.0473872,0.565264,0.81592,0.611538,0.167795,0.0478305,0.25246,0.624882,0.448892,0.507095,0.658121,0.612819,0.166325,0.674569,0.0365698,0.0890738,0.685644,0.0754834,0.340294,0.681606,0.0934018,0.62867,0.648654,0.318651,0.970454,0.66822,0.99138,0.401606,0.32305,0.311857,0.085741,0.936984,0.622535,0.156249,0.150198,0.899385,0.222247,0.963482,0.706899,0.158509,0.563258,0.966622,0.788752,0.0314968,0.635251,0.399232,0.716122,0.625507,0.377493,|0.244548,0.549485,0.790019,0.595127,0.607194,0.27971,0.56897,0.726333,0.00803351,0.74233,0.936332,0.720263,0.0586435,0.321721,0.346069,0.551011,0.307667,0.486198,0.257954,0.066134,0.808487,0.916622,0.776137,0.411708,0.352147,0.677524,0.75866,0.836348,0.0540116,0.696122,0.995131,0.548538,0.487868,0.308352,0.035773,0.289865,0.0377504,0.788097,0.187282,0.129257,0.218247,0.217984,0.778009,0.555238,0.420774,0.497543,0.579624,0.946805,0.306809,0.995956,0.696195,0.842797,0.771744,0.353491,0.792388,0.535397,0.148068,0.995595,0.726629,0.0828703,0.293874,0.596904,0.0916104,0.980672,0.234222,0.366948,0.955492,0.131037,0.698379,0.554529,0.326511,0.565518,0.773616,0.662535,0.690193,0.833821,0.828824,0.68917,0.503603,0.138828,0.989689,0.0716999,0.266898,0.469866,0.711845,0.747227,0.0338023,0.876865,0.661886,0.164874,0.837245,0.221842,0.927574,0.47235,0.841099,0.96343,0.271824,0.665745,0.342867,0.722054,0.285517,0.652297,0.359822,0.569842,0.246699,0.904481,0.464802,0.276172,0.0842113,0.0308943,0.0139613,0.433978,0.667378,0.86195,0.732894,0.0127219,0.578602,0.200233,0.631044,0.338214,0.864502,0.0715315,0.303349,0.452941,0.906337,0.98099,0.227686,0.0121332,0.796764,0.515711,0.509565,0.686375,0.95724,0.736636,0.242244,0.00946391,0.700303,0.969062,0.790169,0.97029,0.284813,0.989123,0.805503,0.475632,0.233007,0.347983,0.655694,0.118289,0.451778,0.1401,0.755522,0.939141,0.651735,0.639419,0.865486,0.663609,0.782065,0.347537,0.5849,0.781068,0.194321,0.318872,0.961683,0.555142,0.898219,0.117307,0.364315,0.112861,0.652178,0.343501,0.0872406,0.922285,0.655743,0.743301,0.744899,0.776415,0.873154,0.388704,0.302264,0.440953,0.274102,0.586232,0.819269,0.322237,0.34327,0.237066,0.282187,0.142105,0.73911,0.568284,0.646282,0.625825,0.508686,0.753064,0.657271,0.162837,0.850598,0.169762,0.738572,0.827845,0.0703756,0.0228662,0.0336163,0.771752,0.0880399,0.84292,0.384725,0.756702,0.986679,0.153125,0.434622,0.864691,0.531318,0.108892,0.045745,0.110762,0.16935,0.420409,0.479955,0.411095,0.365574,0.0433573,0.331941,0.570568,0.342879,0.213066,0.0825559,0.583829,0.0654454,0.908673,0.491073,0.544748,0.664511,0.918845,0.187417,0.113166,0.000485718,0.322387,0.847654,0.249427,0.959446,0.390074,0.464377,0.54445,0.918426,0.953978,0.203595,0.519127,0.737333,0.229951,0.335329,0.646243,0.234203,0.994433,0.66036,0.9548,0.601956,0.783918,0.39801,0.702891,0.608101,0.432566,0.560036,0.984721,0.622895,0.877751,0.799525,0.920996,0.187777,0.66607,0.722229,0.504172,0.290379,0.348621,0.455584,0.492899,0.58433,0.914074,0.331397,0.264602,0.631723,0.354104,0.856179,0.468739,0.86585,0.399961,0.122506,0.774358,0.923934,0.262703,0.931703,0.817698,0.917383,0.940063,0.00833905,0.313001,0.393927,0.637468,0.302026,0.654794,0.134454,0.29107,0.130931,0.414956,0.755041,0.0876398,0.474887,0.716691,0.822355,0.277325,0.059837,0.989944,0.246086,0.114693,0.439702,0.174475,0.108954,0.883927,0.140163,0.884518,0.701775,0.918999,0.523305,0.731608,0.397762,0.142509,0.196784,0.539995,0.967565,0.293525,0.315973,0.338732,0.00838703,0.944448,0.423843,0.794714,0.558839,0.904253,0.618778,0.949911,0.460142,0.524554,0.0714012,0.709087,0.322439,0.976058,0.719516,0.957238,0.348556,0.208443,0.612108,0.543258,0.900178,0.200504,0.437954,0.901691,0.842674,0.832792,0.662503,0.404303,0.483112,0.99612,0.779828,0.267573,0.584473,0.68125,0.667642,0.941959,0.328788,0.531808,0.181099,0.293211,0.0295416,0.809904,0.11341,0.136603,0.488048,0.769285,0.573826,0.654113,0.423396,0.862997,0.229846,0.249792,0.967573,0.575279,0.284788,0.912043,0.0632883,0.224999,0.202503,0.702468,0.449142,0.990883,0.967575,0.586829,0.0833185,0.858209,0.305514,0.220215,0.50421,0.903059,0.564067,0.61392,0.964882,0.344283,0.375336,0.27848,0.538947,0.109619,0.81773,0.686825,0.511331,0.909165,0.219508,0.660352,0.0254495,0.229724,0.172772,0.719022,0.327835,0.500579,0.0257756,0.59146,0.816968,0.513337,0.375328,0.396747,0.755439,0.475557,0.0336055,0.0599807,0.147281,0.743675,0.416209,0.659361,0.459718,0.474864,0.165491,0.838276,0.440633,0.416828,0.422724,0.558164,0.542011,0.212398,0.475938,0.84586,0.734804,0.984223,0.316807,0.744858,0.504574,0.202289,0.127611,0.451547,0.696197,0.350259,0.313563,0.428389,0.907814,0.0469032,0.151042,0.885782,0.429927,0.239451,0.655459,0.666074,0.128176,0.486649,0.0723574,0.290449,0.18084,0.907274,0.0599499,0.855318,0.383147,0.569438,0.508058,0.857337,0.783998,0.131327,0.708765,0.278035,0.889752,0.969185,0.634776,0.842998,0.541638,0.406552,0.0459323,0.0765827,0.764566,0.884212,0.800853,0.769551,0.122692,0.428469,0.747885,0.26309,0.291287,0.27275,0.283257,0.668451,0.57967,0.123421,0.0203426,0.991507,0.62059,0.114047,0.807658,0.641353,0.720732,0.421645,0.924283,0.958621,0.707897,0.247346,0.528779,0.780687,0.250947,0.432208,0.36954,0.416625,0.343855,0.376564,0.00485867,0.134835,0.941501,0.409082,0.424935,0.598124,0.0624769,0.885263,0.382024,0.146836,0.410887,0.516868,0.523457,0.254674,0.670992,0.867127,0.0764958,0.726574,0.569625,0.930416,0.944373,0.705848,0.31587,0.593347,0.874838,0.879715,0.366817,0.246694,0.933112,0.439192,0.254034,0.521865,0.283916,0.556475,0.756038,0.39485,0.305056,0.0451795,0.240127,0.53022,0.10308,0.0395355,0.141343,0.279358,0.627291,0.342208,0.121873,0.427454,0.00592148,0.502142,0.222945,0.881465,0.765587,0.903278,0.826986,0.652191,0.503232,0.799705,0.320185,0.298455,0.737118,0.138255,0.468056,0.139979,0.688629,0.347341,0.789998,0.251926,0.57461,0.0650578,0.332002,0.226226,0.305705,0.227472,0.00384849,0.077101,0.284078,0.793516,0.175224,0.686356,0.526921,0.244403,0.623582,0.449528,0.312346,0.493789,0.858299,0.24848,0.112321,0.170105,0.207698,0.202625,0.369391,0.191326,0.240505,0.882415,0.597044,0.61685,0.528302,0.995703,0.5046,0.266223,0.0859555,0.479504,0.273577,0.0853925,0.716564,0.187116,0.884513,0.0932811,0.308753,0.946453,0.448371,0.289445,0.0181187,0.23144,0.652362,0.49437,0.768579,0.977311,0.357169,0.113243,0.806637,0.74498,0.738762,0.342936,0.0593278,0.453049,0.808781,0.941921,0.688915,0.375531,0.612875,0.510894,0.488209,0.44206,0.698886,0.76879,0.424782,0.540827,0.820257,0.36051,0.208971,0.917017,0.716178,0.760226,0.213295,0.0828707,0.920495,0.275767,0.442182,0.203218,0.453416,0.521585,0.348678,0.806542,0.837254,0.269295,0.598198,0.613658,0.0975816,0.471383,0.615475,0.994994,0.500568,0.776535,0.489077,0.348324,0.813396,0.775466,0.301766,0.442473,0.307779,0.635854,0.0254947,0.116437,0.516889,0.344175,0.99718,0.171857,0.882698,0.315251,0.204627,0.672927,0.735651,0.529526,0.238277,0.183004,0.914027,0.945719,0.871224,0.0117137,0.882625,0.402984,0.354452,0.0530441,0.457318,0.770397,0.0416882,0.633799,0.358196,0.24301,0.496696,0.124276,0.126518,0.56021,0.197638,0.0508868,0.761008,0.308361,0.999827,0.0736497,0.164882,0.0342324,0.906049,0.331929,0.830217,0.385594,0.450058,0.439474,0.00746483,0.311148,0.0183856,0.933253,0.249605,0.271691,0.791817,0.260823,0.165797,0.431829,0.352459,0.980857,0.119433,0.257297,0.880034,0.248714,0.468175,0.70238,0.62042,0.898756,0.118319,0.177996,0.0504844,0.175327,0.668778,0.945093,0.0507492,0.419332,0.0607719,0.455973,0.243038,0.977138,0.346582,0.142543,0.417609,0.971605,0.693785,0.88769,0.874178,0.423625,0.625514,0.708158,0.0300179,0.17037,0.580382,0.921493,0.949684,0.926318,0.490582,0.507838,0.536325,0.631951,0.595128,0.0671532,0.85218,0.599279,0.546519,0.650836,0.769556,0.989839,0.954977,0.964377,0.941881,0.641018,0.450624,0.960952,0.960236,0.71662,0.514848,0.182618,0.763124,0.0010882,0.486907,0.848063,0.0636238,0.834098,0.26522,0.0434803,0.65084,0.50404,0.106532,0.219047,0.280609,0.096546,0.735638,0.981443,0.455048,0.912598,0.0147269,0.102625,0.13414,0.274784,0.172546,0.118906,0.798011,0.840877,0.880547,0.690868,0.944857,0.817157,0.677515,0.959849,0.832619,0.842437,0.54975,0.477513,0.409332,0.00449646,0.348456,0.291389,0.291088,0.29861,0.215152,0.765681,0.585674,0.378008,0.835818,0.902728,0.577408,0.0533016,0.0665091,0.0473028,0.482705,0.306294,0.785906,0.328258,0.410044,0.43561,0.115994,0.491568,0.56273,0.739511,0.0697734,0.913305,0.44901,0.279914,0.654945,0.203851,0.552082,0.413,0.58692,0.511148,0.389329,0.83686,0.427179,0.506146,0.574974,0.895488,0.53775,0.477952,0.452093,0.494742,0.861043,0.66631,0.545959,0.841746,0.133017,0.677939,0.544236,0.478521,0.853934,0.35043,0.609466,0.669119,0.902893,0.904237,0.153184,0.164184,0.764888,0.417195,0.774132,0.494384,0.880703,0.148635,0.128459,0.512149,0.610148,0.453673,0.341777,0.207656,0.398435,0.561234,0.14324,0.473012,0.607429,0.271958,0.399078,0.438096,0.937984,0.996696,0.940809,0.514846,0.794266,0.306208,0.0962264,0.214276,0.292719,0.424873,0.696412,0.699227,0.948615,0.019195,0.44972,0.597509,0.654934,0.609194,0.445518,0.21331,0.320796,0.928183,0.70147,0.998023,0.634852,0.560798,0.878023,0.100737,0.866913,0.107218,0.234297,0.833161,0.307368,0.148979,0.429765,0.720014,0.0502075,0.392058,0.63774,0.226847,0.45486,0.0269945,0.386143,0.424313,0.420838,0.634946,0.404813,0.629525,0.296978,0.451604,0.0617297,0.623041,0.318821,0.325936,0.0667511,0.856185,0.961844,0.986039,0.787752,0.848449,0.218627,0.417594,0.861876,0.17435,0.427306,0.98422,|0.0242234,0.247257,0.087151,0.0817915,0.0891548,0.494644,0.460473,0.41003,0.696564,0.82447,0.719152,0.344495,0.452334,0.705614,0.659384,0.394505,0.77035,0.96595,0.662642,0.212797,0.787528,0.610751,0.240529,0.610174,0.376623,0.136853,0.437598,0.535286,0.0579066,0.170782,0.026843,0.94552,0.063144,0.292737,0.96691,0.934858,0.816816,0.0488247,0.39324,0.0475848,0.791539,0.484632,0.0937811,0.830953,0.869325,0.760231,0.195446,0.930711,0.487177,0.279438,0.420617,0.83322,0.453381,0.413753,0.500572,0.506151,0.61754,0.193867,0.205961,0.876678,0.0470382,0.0763236,0.760918,0.444798,0.623562,0.307461,0.172697,0.901547,0.082846,0.599719,0.139339,0.894657,0.805479,0.937138,0.446698,0.251624,0.33248,0.762176,0.570493,0.673851,0.168243,0.0491875,0.368565,0.728897,0.58383,0.718529,0.704505,0.0858306,0.745526,0.497318,0.395649,0.259118,0.416592,0.197993,0.10664,0.59604,0.45236,0.768654,0.803998,0.452941,0.884306,0.874894,0.527248,0.950521,0.380119,0.54739,0.0838758,0.360143,0.459631,0.762322,0.424261,0.278507,0.648843,0.993019,0.320978,0.132662,0.753639,0.153451,0.135354,0.658655,0.888397,0.141391,0.366687,0.538302,0.402079,0.348802,0.0394702,0.910973,0.0710803,0.264965,0.559806,0.314908,0.29543,0.925536,0.879084,0.258042,0.24625,0.627665,0.962587,0.00303024,0.598285,0.60234,0.528653,0.490128,0.616316,0.349739,0.381265,0.151894,0.52629,0.695821,0.855431,0.906214,0.724233,0.12422,0.0797346,0.758911,0.798524,0.725034,0.758534,0.0973499,0.694263,0.27106,0.413324,0.779694,0.216985,0.328736,0.316535,0.104261,0.181277,0.46298,0.186736,0.969068,0.855645,0.0162898,0.559786,0.538258,0.137191,0.603477,0.327341,0.442124,0.236232,0.958086,0.638,0.913815,0.443917,0.985555,0.70605,0.541821,0.806172,0.404325,0.931741,0.24005,0.0985255,0.750071,0.43038,0.929363,0.63211,0.57007,0.748037,0.249916,0.375261,0.495868,0.634391,0.741281,0.0846193,0.812299,0.10319,0.8468,0.315175,0.749468,0.957874,0.464487,0.485755,0.217607,0.247337,0.483058,0.967692,0.258151,0.220151,0.0550023,0.943953,0.858649,0.461772,0.0733542,0.667744,0.561109,0.177061,0.470147,0.90694,0.188559,0.305281,0.945331,0.585318,0.393045,0.860463,0.898517,0.85011,0.182768,0.304304,0.0126669,0.160145,0.497018,0.971736,0.506296,0.407173,0.221185,0.502305,0.567919,0.0959723,0.743495,0.394948,0.242092,0.0289728,0.973681,0.0212393,0.541255,0.866069,0.0617692,0.269782,0.434249,0.784119,0.327472,0.648336,0.917119,0.472259,0.790704,0.380826,0.219703,0.515974,0.172908,0.845455,0.27753,0.0727775,0.54635,0.472146,0.447062,0.224402,0.608858,0.570969,0.328255,0.763269,0.0452723,0.529725,0.987024,0.180918,0.129139,0.0960941,0.0135113,0.892188,0.2281,0.182398,0.111199,0.131511,0.632863,0.0616602,0.0745474,0.901399,0.784521,0.038435,0.797911,0.279348,0.817684,0.605698,0.46276,0.115063,0.360924,0.0506703,0.812733,0.371534,0.579449,0.257394,0.0808604,0.518848,0.951915,0.183647,0.481544,0.00612277,0.511752,0.717234,0.873687,0.0755097,0.0910995,0.0880212,0.656977,0.257185,0.700577,0.856333,0.610382,0.286163,0.133527,0.00499398,0.231732,0.99654,0.680096,0.575866,0.808353,0.184597,0.534429,0.802966,0.355191,0.0997424,0.70934,0.473981,0.0767201,0.888864,0.101367,0.0652905,0.934567,0.499132,0.243826,0.481022,0.778217,0.537307,0.548402,0.503217,0.41047,0.187063,0.970985,0.235055,0.732225,0.92812,0.307341,0.826443,0.623342,0.93222,0.24996,0.810058,0.453754,0.366925,0.401421,0.805271,0.126531,0.324895,0.851862,0.756741,0.288493,0.0535124,0.850256,0.589152,0.773013,0.626499,0.0666774,0.0707068,0.886176,0.149655,0.840078,0.564097,0.023018,0.614386,0.254532,0.226584,0.638525,0.83886,0.180859,0.449952,0.757634,0.908984,0.758443,0.91813,0.154367,0.0586023,0.342102,0.636625,0.140603,0.988204,0.490089,0.135172,0.381133,0.26602,0.380277,0.892605,0.440386,0.145569,0.647242,0.658113,0.619087,0.821987,0.891342,0.341585,0.787886,0.14188,0.0769894,0.772043,0.662729,0.988342,0.07393,0.894651,0.094061,0.458035,0.427136,0.692465,0.395344,0.387796,0.945096,0.152876,0.51792,0.242728,0.496372,0.0188454,0.574312,0.287134,0.0409237,0.258003,0.841834,0.269388,0.155978,0.378356,0.138052,0.695749,0.117621,0.386549,0.198947,0.138569,0.36549,0.732499,0.760294,0.143715,0.13072,0.613589,0.662083,0.113377,0.422291,0.499097,0.783819,0.570121,0.73344,0.234949,0.272159,0.735508,0.477519,0.88647,0.20926,0.116943,0.384036,0.679033,0.777731,0.311585,0.388309,0.405225,0.979319,0.151322,0.485411,0.670592,0.187749,0.132012,0.669185,0.395737,0.375085,0.970591,0.488804,0.289799,0.379165,0.955658,0.724685,0.00035882,0.119551,0.775473,0.799984,0.127279,0.347606,0.0419457,0.838386,0.709415,0.218074,0.469077,0.549494,0.590879,0.778753,0.852419,0.856243,0.498467,0.119152,0.221554,0.676055,0.997478,0.0804074,0.612397,0.591415,0.799041,0.337188,0.529906,0.187863,0.0383213,0.570198,0.537905,0.945726,0.0496362,0.302411,0.573795,0.536381,0.359525,0.598047,0.828523,0.669537,0.566741,0.972428,0.411515,0.249026,0.452111,0.624845,0.976098,0.541518,0.361349,0.382043,0.733032,0.345442,0.646504,0.302296,0.0270978,0.0850721,0.59476,0.400462,0.58595,0.791902,0.214817,0.881096,0.985569,0.559008,0.690051,0.921087,0.590442,0.727166,0.729949,0.02597,0.824092,0.691576,0.454393,0.547517,0.172644,0.420746,0.766733,0.35856,0.398042,0.297095,0.765648,0.262967,0.20754,0.999755,0.982027,0.577404,0.712239,0.754103,0.426156,0.827635,0.91618,0.767514,0.863038,0.365819,0.316515,0.908638,0.0345974,0.950009,0.305696,0.295433,0.377451,0.98332,0.908074,0.834231,0.163971,0.929237,0.140444,0.74161,0.188937,0.0130344,0.385233,0.174016,0.414332,0.311221,0.810461,0.000627995,0.930528,0.376725,0.444293,0.784842,0.832744,0.475768,0.265922,0.884721,0.550547,0.232878,0.406795,0.262923,0.83385,0.943868,0.965451,0.87041,0.0097934,0.546175,0.366367,0.978261,0.572507,0.890183,0.752563,0.091212,0.117476,0.47966,0.13103,0.528162,0.576811,0.94928,0.0368582,0.63191,0.592093,0.514421,0.300098,0.633788,0.284384,0.909834,0.256249,0.548673,0.303945,0.117849,0.230014,0.250624,0.0888649,0.648165,0.766363,0.121608,0.802478,0.58156,0.077051,0.405703,0.459477,0.526099,0.700361,0.0512289,0.811891,0.9692,0.389961,0.192718,0.297007,0.84427,0.366711,0.632284,0.0527367,0.925749,0.848698,0.861581,0.358951,0.568245,0.166144,0.0787123,0.801581,0.274202,0.0797819,0.693896,0.593483,0.316335,0.426241,0.257015,0.915242,0.109352,0.562748,0.595695,0.0821442,0.571462,0.853915,0.333317,0.620575,0.330629,0.931566,0.35761,0.229084,0.248903,0.128383,0.240522,0.495418,0.815984,0.541304,0.985638,0.266065,0.393634,0.490036,0.881617,0.168585,0.87021,0.483174,0.191649,0.78843,0.785997,0.502549,0.609563,0.546655,0.0497472,0.177914,0.314009,0.570863,0.54122,0.0596225,0.589608,0.369434,0.631855,0.191851,0.299232,0.57449,0.73001,0.257371,0.665896,0.668458,0.995938,0.981387,0.848974,0.825913,0.708502,0.95551,0.429331,0.644514,0.208311,0.871824,0.209048,0.878299,0.385027,0.850209,0.866949,0.625266,0.865404,0.565813,0.230331,0.349339,0.858161,0.3808,0.918003,0.627566,0.917183,0.808366,0.214442,0.0956235,0.537192,0.253202,0.984792,0.63716,0.0537789,0.231467,0.346431,0.553398,0.245587,0.595631,0.90725,0.0822117,0.870188,0.291997,0.325727,0.579903,0.867315,0.754944,0.606803,0.314735,0.781485,0.347396,0.848228,0.313131,0.535503,0.791062,0.39953,0.179245,0.85412,0.867278,0.140726,0.69274,0.156536,0.333804,0.341016,0.838311,0.771631,0.247938,0.108123,0.239813,0.817904,0.787496,0.131618,0.444406,0.964815,0.509902,0.382422,0.0725573,0.873722,0.103658,0.129486,0.664733,0.58285,0.962319,0.829548,0.889083,0.294766,0.956852,0.413231,0.163779,0.0329525,0.504365,0.535564,0.0559536,0.20227,0.726871,0.254211,0.78738,0.418215,0.638225,0.642775,0.203248,0.410766,0.26747,0.378608,0.643538,0.737887,0.761322,0.65126,0.497221,0.368132,0.918551,0.895157,0.900544,0.934153,0.478075,0.212407,0.314796,0.982713,0.448288,0.988994,0.903765,0.548353,0.0382951,0.352293,0.376787,0.0818099,0.21975,0.69087,0.664269,0.810801,0.825822,0.981836,0.095399,0.141806,0.680888,0.847167,0.178227,0.311268,0.0541365,0.780953,0.787954,0.433361,0.555953,0.45443,0.559861,0.904541,0.769779,0.45479,0.693226,0.431322,0.0389661,0.445725,0.97398,0.8787,0.717581,0.0314257,0.879398,0.0859764,0.113898,0.47296,0.117054,0.434909,0.987584,0.253852,0.347105,0.877344,0.892846,0.446879,0.364268,0.239168,0.221251,0.00684935,0.612019,0.716137,0.0786985,0.795451,0.946643,0.816067,0.649213,0.582369,0.443629,0.19002,0.829138,0.742666,0.78221,0.955462,0.244482,0.767857,0.136662,0.625708,0.760804,0.721144,0.871863,0.802298,0.566886,0.859682,0.0950719,0.662397,0.294854,0.419082,0.583471,0.942839,0.404016,0.0304956,0.401691,0.0376847,0.768907,0.00832033,0.0711508,0.386261,0.38234,0.966118,0.0907408,0.531497,0.988381,0.544627,0.891511,0.192406,0.912458,0.998954,0.149348,0.249201,0.827312,0.986258,0.891236,0.240217,0.775095,0.335406,0.592568,0.840239,0.958042,0.999009,0.114805,0.196235,0.322721,0.38015,0.0410535,0.132847,0.328458,0.554051,0.525495,0.755351,0.798019,0.26003,0.548141,0.723069,0.24532,0.989842,0.862136,0.0553942,0.697792,0.546239,0.540545,0.674497,0.28086,0.601407,0.70684,0.643415,0.793256,0.591403,0.394662,0.211785,|0.339132,0.997139,0.0527932,0.379068,0.344017,0.969653,0.354493,0.783535,0.165348,0.132789,0.79712,0.934904,0.253433,0.384543,0.523395,0.837738,0.36294,0.343438,0.00312376,0.494429,0.860852,0.345638,0.628967,0.461533,0.504527,0.00309289,0.956693,0.891933,0.375025,0.139907,0.86355,0.547277,0.407274,0.403948,0.92,0.884709,0.163617,0.161888,0.884625,0.857411,0.389151,0.73173,0.292751,0.940584,0.609079,0.383054,0.526184,0.746512,0.125017,0.055297,0.445358,0.0180211,0.316665,0.19312,0.844527,0.00405777,0.450132,0.0649996,0.50434,0.593848,0.25399,0.633946,0.654513,0.231656,0.897594,0.480988,0.264412,0.611588,0.0447519,0.736986,0.957858,0.467551,0.736291,0.943298,0.4677,0.170815,0.155946,0.82064,0.85612,0.851964,0.267596,0.417586,0.906885,0.0131952,0.0805568,0.219382,0.63754,0.912427,0.537288,0.149685,0.608234,0.111098,0.680501,0.364416,0.184154,0.320595,0.380277,0.965732,0.368758,0.435299,0.736798,0.674846,0.431189,0.175427,0.524575,0.253325,0.334295,0.902831,0.00957966,0.0165485,0.313703,0.962843,0.547531,0.640345,0.382074,0.877359,0.539878,0.106007,0.128405,0.730199,0.191404,0.0152625,0.936028,0.034263,0.975838,0.495837,0.610862,0.608418,0.015123,0.927402,0.738931,0.45747,0.708642,0.547242,0.166992,0.120044,0.265981,0.570954,0.437447,0.919458,0.589299,0.765647,0.215322,0.0180846,0.653841,0.461509,0.436192,0.33244,0.449617,0.059489,0.170125,0.380869,0.0488915,0.54781,0.845133,0.668247,0.124551,0.827517,0.479932,0.627128,0.999115,0.0709066,0.871379,0.621653,0.92562,0.390716,0.887756,0.282883,0.00392812,0.192683,0.262041,0.83415,0.982623,0.361859,0.239367,0.59258,0.108195,0.514725,0.992311,0.508414,0.00231785,0.669452,0.807566,0.830422,0.626862,0.26957,0.276085,0.670824,0.704071,0.520293,0.920872,0.811857,0.152343,0.591521,0.160972,0.285775,0.349394,0.578723,0.332898,0.713689,0.0717849,0.770258,0.553414,0.437065,0.427506,0.713598,0.259468,0.216765,0.110323,0.406056,0.48012,0.901685,0.793904,0.794848,0.717116,0.716855,0.395817,0.683534,0.252508,0.788711,0.885055,0.822746,0.279778,0.962723,0.652945,0.0808501,0.750464,0.330001,0.957472,0.659069,0.0499386,0.608057,0.688626,0.487442,0.943921,0.646911,0.352769,0.896592,0.141634,0.035704,0.80407,0.420603,0.603243,0.59406,0.274575,0.781266,0.182579,0.00189239,0.142505,0.686887,0.667423,0.679482,0.684536,0.29743,0.989372,0.63313,0.511368,0.239843,0.34033,0.229179,0.615871,0.613423,0.62089,0.589073,0.973961,0.39887,0.134998,0.979816,0.978,0.206335,0.678459,0.686735,0.664014,0.0725386,0.203403,0.712722,0.235905,0.5045,0.636393,0.552506,0.220182,0.921895,0.846339,0.190101,0.111859,0.259967,0.650304,0.199805,0.177245,0.784517,0.795836,0.577725,0.947252,0.17893,0.754557,0.118169,0.483588,0.199066,0.335182,0.328939,0.0806948,0.235282,0.150867,0.751629,0.567861,0.171376,0.0684027,0.944199,0.2209,0.566781,0.205186,0.854943,0.747073,0.234588,0.315645,0.0724813,0.923429,0.788097,0.677182,0.0820116,0.181641,0.685245,0.367266,0.840245,0.395108,0.32853,0.726386,0.596328,0.831442,0.238545,0.237409,0.732693,0.109538,0.792379,0.63366,0.213878,0.342386,0.752659,0.919747,0.939119,0.0108212,0.992154,0.335714,0.614135,0.423287,0.571844,0.451186,0.00228119,0.937852,0.496765,0.204097,0.983324,0.467577,0.0702309,0.162404,0.692613,0.560403,0.396417,0.777228,0.973369,0.512161,0.0851481,0.164138,0.188356,0.883686,0.40857,0.920834,0.840775,0.982571,0.405042,0.11671,0.413707,0.523396,0.885098,0.0432183,0.496137,0.0591759,0.974994,0.330304,0.0100629,0.140909,0.128419,0.686593,0.0910961,0.580833,0.698348,0.656227,0.931615,0.261088,0.573429,0.782594,0.424744,0.479427,0.453525,0.0504487,0.900633,0.739101,0.980045,0.945813,0.847174,0.80646,0.415617,0.543806,0.990712,0.648344,0.815793,0.20406,0.335918,0.905868,0.23517,0.218223,0.383512,0.857718,0.696352,0.991744,0.894463,0.351704,0.332108,0.831073,0.162283,0.653066,0.287771,0.425995,0.101237,0.647321,0.175157,0.531918,0.985344,0.460076,0.968987,0.228371,0.755813,0.0681984,0.626854,0.971486,0.959934,0.91014,0.936702,0.00358236,0.222381,0.0431367,0.232684,0.443347,0.608702,0.991212,0.843165,0.0478851,0.389393,0.0961602,0.954045,0.764712,0.896264,0.207963,0.99862,0.174813,0.110859,0.747893,0.541439,0.979178,0.977855,0.794755,0.0421693,0.770546,0.851313,0.782308,0.0538406,0.484908,0.537384,0.133318,0.142652,0.224219,0.891531,0.870107,0.49085,0.119514,0.911494,0.819097,0.48907,0.958453,0.227946,0.226538,0.211689,0.847802,0.766447,0.931784,0.258918,0.476979,0.172166,0.288919,0.230278,0.0498792,0.979743,0.886151,0.777217,0.754986,0.541442,0.0575716,0.94202,0.238631,0.669107,0.962365,0.110996,0.856764,0.245885,0.637224,0.837852,0.368659,0.430312,0.0985606,0.706944,0.320824,0.322791,0.362631,0.12256,0.528834,0.15186,0.741746,0.43108,0.0836052,0.40253,0.555656,0.0258088,0.871938,0.250879,0.23431,0.739806,0.525758,0.931693,0.690076,0.39722,0.319045,0.730094,0.767962,0.822919,0.893786,0.99684,0.375018,0.331718,0.386642,0.490854,0.0487292,0.410713,0.932722,0.340952,0.186373,0.347619,0.812519,0.520413,0.984723,0.381175,0.938438,0.00608295,0.295457,0.213894,0.83133,0.298527,0.0737463,0.50352,0.488219,0.666279,0.29787,0.841946,0.786376,0.278272,0.889278,0.377446,0.967127,0.177402,0.265056,0.941711,0.994595,0.811825,0.906451,0.235587,0.610991,0.0590555,0.494116,0.595098,0.713012,0.0916217,0.715292,0.000832021,0.137445,0.324596,0.727433,0.389335,0.570879,0.0763183,0.441776,0.57771,0.151474,0.815113,0.615275,0.431227,0.537832,0.394115,0.465358,0.204119,0.0943819,0.80408,0.745286,0.9155,0.4052,0.432035,0.888517,0.529483,0.849291,0.871524,0.355384,0.639751,0.599418,0.948327,0.475974,0.836443,0.078741,0.51658,0.699374,0.850773,0.824786,0.734414,0.20342,0.640717,0.954457,0.563736,0.588989,0.0213174,0.603862,0.16765,0.767475,0.440093,0.823463,0.556075,0.244371,0.777882,0.0769095,0.605508,0.804531,0.678507,0.344444,0.214491,0.787376,0.951921,0.919835,0.839287,0.640425,0.213572,0.547973,0.800811,0.58213,0.758546,0.00446153,0.762766,0.33056,0.405423,0.658562,0.429265,0.881856,0.156722,0.970161,0.10704,0.471162,0.0462289,0.781548,0.542171,0.546299,0.449737,0.293934,0.802436,0.202391,0.348613,0.834342,0.837404,0.158212,0.444706,0.467801,0.520991,0.466463,0.114262,0.44252,0.0298864,0.2411,0.040637,0.112418,0.759873,0.368557,0.630514,0.801973,0.576799,0.679248,0.240698,0.217788,0.759465,0.646958,0.90229,0.119139,0.625039,0.147478,0.350766,0.091757,0.551053,0.0146772,0.720338,0.193071,0.198342,0.729617,0.809618,0.820625,0.959597,0.0556459,0.209244,0.578735,0.813413,0.415668,0.710441,0.236555,0.935321,0.827435,0.480566,0.441156,0.0355155,0.532661,0.712803,0.101786,0.535036,0.840915,0.770502,0.454602,0.344022,0.738772,0.289244,0.077473,0.132981,0.481864,0.0564916,0.713647,0.662109,0.0290613,0.830449,0.277978,0.896668,0.729125,0.388498,0.00911397,0.0132197,0.140995,0.289643,0.272737,0.259873,0.582587,0.592793,0.645301,0.702512,0.183907,0.863329,0.342375,0.10661,0.355579,0.0235208,0.457443,0.322395,0.145535,0.925147,0.300567,0.960608,0.869423,0.736382,0.446163,0.69685,0.0566037,0.64188,0.235992,0.85297,0.863126,0.617138,0.412226,0.209709,0.395771,0.627507,0.78097,0.713197,0.848893,0.888672,0.430544,0.853022,0.730188,0.220152,0.921859,0.466524,0.615868,0.684616,0.69681,0.891681,0.170884,0.18855,0.369326,0.139039,0.757299,0.490585,0.951209,0.519218,0.458795,0.984212,0.825354,0.681988,0.999211,0.824873,0.900488,0.892502,0.448133,0.867748,0.377813,0.833977,0.177176,0.67756,0.835807,0.245748,0.681716,0.623653,0.710748,0.213427,0.798851,0.448743,0.476446,0.510864,0.0363504,0.887039,0.53946,0.0516873,0.895311,0.502632,0.760523,0.670951,0.17732,0.404268,0.765628,0.308846,0.772226,0.880038,0.746125,0.35312,0.948689,0.00631917,0.0114407,0.4728,0.466431,0.773474,0.789898,0.577649,0.820099,0.667353,0.135602,0.245516,0.0767646,0.948917,0.355237,0.11746,0.991446,0.185454,0.726111,0.357091,0.405341,0.998435,0.730186,0.716766,0.43729,0.869489,0.668201,0.422671,0.559857,0.114073,0.853165,0.242235,0.71739,0.706439,0.493581,0.311314,0.703919,0.825489,0.673436,0.29648,0.295306,0.980681,0.484818,0.490663,0.993348,0.100176,0.52437,0.596343,0.783889,0.194967,0.00938076,0.549603,0.0408171,0.911101,0.690294,0.678873,0.425895,0.915146,0.357795,0.337173,0.815752,0.701162,0.0878801,0.599417,0.263453,0.495856,0.957915,0.384921,0.113919,0.6003,0.398741,0.262145,0.385509,0.32374,0.190079,0.620446,0.213822,0.865485,0.73946,0.721342,0.876637,0.845458,0.963088,0.968324,0.804837,0.039475,0.50529,0.111251,0.540324,0.405084,0.0467067,0.35327,0.860169,0.917131,0.482251,0.0178743,0.604878,0.448688,0.652737,0.645308,0.665099,0.516205,0.155216,0.648862,0.443999,0.627606,0.0309287,0.232727,0.921863,0.0484651,0.438797,0.85888,0.976867,0.448961,0.494065,0.829441,0.771274,0.514489,0.357972,0.0917138,0.472794,0.965446,0.834009,0.79996,0.377796,0.615508,0.0950116,0.901609,0.00735348,0.921306,0.687615,0.571768,0.546174,0.78734,0.815626,0.417602,0.435623,0.139019,0.455533,0.356318,0.344759,0.109064,0.7127,0.276846,0.0501961,0.619242,0.534308,0.159194,0.234851,0.872074,0.046045,0.854523,0.556002,0.939094,0.0079723,0.717394,0.92868,0.773581,0.337286,0.833748,|0.814871,0.926056,0.836051,0.00352836,0.791224,0.415188,0.747231,0.264309,0.817322,0.0439256,0.358989,0.838927,0.578877,0.186289,0.419926,0.911532,0.532108,0.193649,0.0427494,0.865588,0.0161922,0.630991,0.69304,0.0752149,0.44855,0.965539,0.837214,0.658715,0.712442,0.421752,0.594719,0.0845886,0.820085,0.878585,0.260915,0.102515,0.208414,0.818961,0.944753,0.836351,0.945874,0.517966,0.639034,0.779773,0.405327,0.042986,0.563229,0.635014,0.927143,0.532674,0.872437,0.672678,0.988163,0.277851,0.568839,0.169831,0.548206,0.148512,0.483968,0.936128,0.235403,0.17531,0.481988,0.32568,0.522871,0.692254,0.376632,0.362785,0.190668,0.250399,0.831487,0.624069,0.927043,0.0590361,0.13923,0.2942,0.95799,0.954399,0.382286,0.84806,0.557549,0.695984,0.174473,0.628254,0.399395,0.661841,0.221804,0.109057,0.94726,0.524562,0.917775,0.165626,0.833397,0.0925511,0.101089,0.142086,0.168391,0.0707301,0.432339,0.497689,0.22525,0.542302,0.0777193,0.086308,0.350347,0.153298,0.47284,0.471088,0.471376,0.843342,0.113275,0.671367,0.0897216,0.13041,0.655996,0.664837,0.979871,0.751271,0.657802,0.97541,0.812837,0.254311,0.19021,0.271218,0.360412,0.624884,0.418192,0.793057,0.583302,0.291655,0.0641904,0.934387,0.617958,0.158993,0.730444,0.488654,0.748233,0.126902,0.544351,0.438247,0.0675809,0.20826,0.523904,0.101578,0.600384,0.970272,0.583929,0.168877,0.736935,0.365578,0.137911,0.563928,0.195069,0.189002,0.853353,0.0113586,0.64737,0.403862,0.167772,0.118272,0.905489,0.4379,0.335252,0.836117,0.435962,0.69464,0.686206,0.766397,0.71321,0.0811906,0.757414,0.968399,0.26227,0.99124,0.710143,0.0166327,0.721255,0.846878,0.450997,0.594383,0.765826,0.166651,0.582493,0.519883,0.988983,0.813106,0.000695288,0.259128,0.145497,0.990161,0.952868,0.717418,0.464949,0.450183,0.867774,0.0215216,0.994167,0.937408,0.0958602,0.826581,0.663085,0.0763164,0.317914,0.525878,0.597078,0.122528,0.36047,0.370792,0.073055,0.234087,0.459878,0.604958,0.652952,0.241818,0.895582,0.679601,0.215898,0.143284,0.875885,0.687943,0.990778,0.629249,0.793172,0.0463406,0.356794,0.62796,0.546655,0.584806,0.313057,0.485741,0.818234,0.526216,0.786656,0.770195,0.400731,0.144255,0.282952,0.243829,0.0694053,0.60199,0.591295,0.140302,0.0810538,0.339554,0.733081,0.924582,0.00974947,0.345135,0.608556,0.97409,0.600937,0.305856,0.0350645,0.44464,0.663978,0.150399,0.426776,0.920504,0.355969,0.623653,0.344424,0.269857,0.372647,0.290227,0.143615,0.379863,0.869053,0.388152,0.311621,0.558649,0.764552,0.430764,0.840257,0.763562,0.00570631,0.765266,0.887696,0.398613,0.898798,0.28616,0.596824,0.207064,0.181634,0.014269,0.0919679,0.961367,0.651476,0.451698,0.313225,0.208155,0.113722,0.42783,0.828424,0.474688,0.538829,0.496204,0.405224,0.973017,0.0952939,0.443277,0.720852,0.0228013,0.260872,0.305349,0.0890873,0.615634,0.103062,0.171874,0.859936,0.547029,0.705736,0.114787,0.671039,0.78699,0.0774293,0.91844,0.854585,0.976585,0.271494,0.111246,0.0190861,0.958943,0.698637,0.653677,0.193609,0.728438,0.102623,0.946254,0.615912,0.454701,0.854087,0.913391,0.204693,0.377779,0.755584,0.716109,0.132571,0.825186,0.0869521,0.435076,0.533737,0.281908,0.516275,0.786505,0.367787,0.853816,0.131868,0.775741,0.381636,0.552313,0.383534,0.527506,0.845904,0.508628,0.785521,0.594246,0.843058,0.72645,0.708562,0.376893,0.698888,0.431083,0.938635,0.171615,0.0890557,0.453887,0.934664,0.625254,0.649611,0.6346,0.892476,0.0583748,0.799513,0.984959,0.693818,0.340181,0.54945,0.667596,0.437555,0.184164,0.8046,0.134446,0.550347,0.104086,0.0353595,0.61136,0.764135,0.912975,0.285494,0.597587,0.421346,0.0375648,0.332076,0.0686051,0.541709,0.945677,0.37107,0.69959,0.529432,0.937355,0.0521194,0.564348,0.455041,0.402932,0.606692,0.670918,0.386278,0.728202,0.880535,0.316073,0.789611,0.213602,0.346662,0.209474,0.671954,0.135531,0.216496,0.725653,0.716137,0.842459,0.545518,0.534519,0.511853,0.427577,0.0777985,0.017961,0.454321,0.430602,0.955212,0.778853,0.910781,0.264756,0.035902,0.994617,0.372471,0.996042,0.0382658,0.601376,0.18148,0.840493,0.8446,0.219961,0.858322,0.630322,0.819054,0.0719544,0.50564,0.626115,0.611761,0.738681,0.100538,0.112807,0.0588406,0.315249,0.52804,0.658238,0.572743,0.109738,0.438596,0.189154,0.124242,0.0376749,0.975103,0.00788975,0.176831,0.719468,0.484161,0.0777245,0.145803,0.888033,0.280719,0.132035,0.0658192,0.372274,0.357219,0.881996,0.700924,0.359473,0.742787,0.0609773,0.524648,0.0929308,0.564061,0.502377,0.228466,0.407689,0.535728,0.270334,0.285433,0.725224,0.0779844,0.774832,0.207634,0.0934232,0.490936,0.401516,0.23883,0.258853,0.843913,0.115976,0.774939,0.644411,0.716386,0.891341,0.100276,0.0627427,0.65433,0.593869,0.767071,0.755084,0.906455,0.0356277,0.929112,0.283214,0.16553,0.359233,0.192027,0.92346,0.361413,0.306953,0.814093,0.699895,0.788919,0.0689281,0.945982,0.697156,0.319295,0.67492,0.186205,0.35195,0.369916,0.860392,0.456897,0.680157,0.651046,0.301463,0.98863,0.134558,0.223989,0.922868,0.774101,0.879194,0.0695364,0.333542,0.878823,0.147614,0.918506,0.000278771,0.569593,0.210114,0.603636,0.294123,0.313066,0.204321,0.919844,0.450908,0.310834,0.539653,0.0344247,0.698748,0.766641,0.166949,0.670033,0.962913,0.852843,0.735344,0.431077,0.102305,0.94338,0.439115,0.846395,0.719198,0.541273,0.190881,0.379668,0.840912,0.111433,0.625405,0.634455,0.847068,0.00386345,0.800546,0.884869,0.578457,0.489258,0.764567,0.866624,0.70405,0.405221,0.695545,0.986513,0.089959,0.643366,0.102331,0.660626,0.959476,0.988314,0.725391,0.821281,0.391691,0.176802,0.34215,0.800473,0.206511,0.87506,0.246914,0.678779,0.61969,0.860644,0.43296,0.36144,0.49958,0.150165,0.326452,0.354555,0.213737,0.01903,0.28856,0.0272338,0.956714,0.155433,0.856125,0.835952,0.846924,0.895516,0.243609,0.0729063,0.283967,0.930132,0.762908,0.190053,0.622568,0.0621303,0.571888,0.386034,0.741099,0.454083,0.183137,0.334285,0.124437,0.844963,0.041024,0.110432,0.880944,0.41307,0.994001,0.673128,0.484303,0.32708,0.299316,0.528326,0.391523,0.807889,0.0847483,0.96542,0.566001,0.792291,0.218252,0.141265,0.787788,0.625008,0.345713,0.216179,0.559761,0.39039,0.140956,0.981387,0.947205,0.974769,0.135245,0.803937,0.248868,0.0116187,0.473781,0.457154,0.321889,0.208967,0.263448,0.440697,0.872563,0.721586,0.919161,0.393546,0.937678,0.991077,0.262564,0.74743,0.290667,0.301039,0.923471,0.278904,0.779053,0.826086,0.950789,0.991183,0.301244,0.651968,0.656372,0.326144,0.52207,0.122954,0.971073,0.00691819,0.0549278,0.780489,0.559106,0.410118,0.469769,0.219872,0.576275,0.772878,0.847066,0.0963415,0.895087,0.15966,0.407108,0.179364,0.599565,0.866461,0.094615,0.658745,0.316477,0.890339,0.87597,0.310971,0.634959,0.671838,0.672298,0.150123,0.927043,0.483785,0.197469,0.268427,0.0043748,0.902453,0.947585,0.946962,0.463699,0.439265,0.294176,0.180599,0.0911804,0.239261,0.168832,0.121543,0.566876,0.850346,0.870034,0.890103,0.34212,0.148439,0.187068,0.754285,0.341974,0.842963,0.202595,0.131661,0.0348436,0.632919,0.678072,0.191542,0.803184,0.972411,0.120682,0.11519,0.116079,0.359242,0.160845,0.71841,0.407029,0.489328,0.399132,0.36663,0.770691,0.647399,0.323876,0.302387,0.0255392,0.0874423,0.962323,0.598692,0.467928,0.815643,0.853648,0.930649,0.0676216,0.417409,0.364061,0.554846,0.401195,0.494106,0.985563,0.9051,0.712241,0.148624,0.225835,0.00479686,0.122953,0.627733,0.0404806,0.573451,0.780705,0.633048,0.304188,0.854884,0.220941,0.292431,0.429906,0.672741,0.722359,0.357923,0.463581,0.82529,0.301838,0.301438,0.988578,0.342797,0.451209,0.760918,0.269109,0.429673,0.584123,0.815513,0.264643,0.663058,0.527404,0.51013,0.507862,0.162018,0.378741,0.147703,0.45111,0.317583,0.0166976,0.507362,0.979551,0.387754,0.662052,0.821344,0.706034,0.22852,0.144867,0.479009,0.84531,0.821642,0.742016,0.225088,0.539228,0.548669,0.269793,0.376732,0.883143,0.0978459,0.434404,0.206212,0.566991,0.73415,0.761135,0.992506,0.267515,0.150776,0.987111,0.838804,0.598261,0.823542,0.65677,0.0529775,0.770864,0.26608,0.588408,0.429349,0.252205,0.72775,0.456388,0.122724,0.984366,0.598245,0.994233,0.356889,0.329778,0.0956011,0.81296,0.817898,0.138928,0.519269,0.741951,0.433751,0.870245,0.0407099,0.00604188,0.335933,0.317951,0.520957,0.646442,0.0790634,0.34222,0.190316,0.813928,0.477983,0.631544,0.0890769,0.19482,0.701932,0.505413,0.682526,0.548753,0.925963,0.112136,0.455395,0.0544615,0.657375,0.0843351,0.619259,0.510369,0.899311,0.699727,0.721515,0.152805,0.442867,0.644487,0.927811,0.0841246,0.242849,0.31539,0.282858,0.311128,0.425062,0.323814,0.10652,0.839616,0.506175,0.142123,0.350927,0.483175,0.803834,0.663727,0.536163,0.397866,0.294454,0.597357,0.37074,0.812688,0.848125,0.692286,0.490338,0.129757,0.600811,0.245018,0.977806,0.572171,0.512409,0.321176,0.377391,0.0882971,0.356523,0.778183,0.908408,0.647086,0.976268,0.398691,0.569392,0.626793,0.445229,0.094058,0.481043,0.468755,0.838726,0.936509,0.231466,0.305218,0.654018,0.390125,0.107356,0.429651,0.318284,0.855574,0.25446,0.662388,0.915974,0.187873,0.033741,0.225185,0.053362,0.696614,0.770221,0.451731,0.103247,0.0549496,0.24522,0.880155,0.429104,0.78197,0.966463,0.016022,0.369935,0.291336,0.0491167,0.734363,0.700098,0.185914,|0.077957,0.532286,0.554841,0.876675,0.299638,0.933547,0.148894,0.604505,0.902746,0.665167,0.880329,0.638447,0.69124,0.815007,0.836024,0.239129,0.99013,0.562425,0.969736,0.0284396,0.345354,0.519233,0.653157,0.289446,0.284061,0.541296,0.864384,0.471517,0.785618,0.331628,0.999184,0.777093,0.0525663,0.512977,0.796059,0.376049,0.755692,0.491248,0.386472,0.246515,0.510924,0.683931,0.316741,0.0682611,0.00614619,0.107226,0.68879,0.519497,0.742995,0.696321,0.522201,0.269913,0.111519,0.189154,0.522423,0.847692,0.76122,0.398257,0.194651,0.681459,0.66592,0.658942,0.604687,0.360783,0.278905,0.275694,0.476647,0.346083,0.966893,0.876318,0.110563,0.240968,0.46028,0.0460954,0.336421,0.250579,0.775387,0.103563,0.0422553,0.330911,0.619664,0.998549,0.923491,0.120502,0.611715,0.978771,0.0804719,0.0326536,0.22724,0.0972283,0.610611,0.320657,0.910301,0.313771,0.0701734,0.771375,0.835376,0.419017,0.590697,0.635839,0.575448,0.460792,0.181352,0.673851,0.421264,0.0141321,0.831121,0.779832,0.583034,0.287098,0.101683,0.511988,0.534222,0.443783,0.0329111,0.593783,0.951125,0.0533397,0.269673,0.759539,0.835181,0.457604,0.441063,0.98834,0.160763,0.507681,0.292825,0.00323421,0.915867,0.746414,0.0483503,0.392929,0.829142,0.756188,0.967312,0.673915,0.76851,0.339149,0.63684,0.860133,0.861468,0.96209,0.91166,0.511054,0.486802,0.371386,0.713999,0.756826,0.909471,0.788663,0.10968,0.130506,0.459707,0.421489,0.352886,0.372948,0.973054,0.0698666,0.28116,0.619714,0.385147,0.270529,0.596685,0.634755,0.469355,0.373022,0.496882,0.0476898,0.980706,0.00375819,0.503335,0.0208261,0.742396,0.620639,0.126074,0.576082,0.796049,0.0782018,0.781348,0.214591,0.443725,0.132583,0.170891,0.74615,0.221911,0.0637311,0.906978,0.798841,0.0806296,0.774284,0.847455,0.417081,0.0376989,0.146194,0.707168,0.15125,0.185712,0.0279198,0.957651,0.27967,0.729717,0.874767,0.51813,0.712429,0.590464,0.397852,0.390195,0.670715,0.0531462,0.485072,0.580379,0.261161,0.149357,0.078257,0.0373723,0.265259,0.243745,0.82707,0.838993,0.562124,0.172963,0.785231,0.575419,0.240264,0.938309,0.970427,0.90281,0.285464,0.736213,0.27898,0.166521,0.666604,0.743891,0.34748,0.0528713,0.490407,0.38631,0.0896325,0.801079,0.383168,0.31077,0.113449,0.379378,0.688892,0.805103,0.231016,0.861072,0.779755,0.188895,0.893351,0.202308,0.852778,0.266958,0.393486,0.273421,0.0592554,0.132309,0.332751,0.145453,0.0163336,0.650387,0.274056,0.0115827,0.847678,0.428134,0.992108,0.678556,0.400283,0.871727,0.293624,0.364085,0.734432,0.953608,0.962155,0.389008,0.663836,0.977455,0.209487,0.05453,0.369485,0.864074,0.0602849,0.0456045,0.113244,0.659323,0.132892,0.342428,0.433293,0.406985,0.604018,0.0704038,0.666987,0.0686318,0.883725,0.52539,0.549406,0.218568,0.933693,0.401301,0.273609,0.730463,0.293035,0.69909,0.615997,0.111952,0.0449685,0.696654,0.183878,0.198652,0.397958,0.532825,0.969012,0.404101,0.622976,0.371588,0.366084,0.18587,0.764992,0.577865,0.26535,0.84231,0.00688285,0.563796,0.390326,0.890551,0.191445,0.361837,0.520374,0.754707,0.436608,0.388955,0.77712,0.37878,0.0977368,0.249595,0.942447,0.0234957,0.591573,0.667083,0.818672,0.382581,0.577322,0.329427,0.858407,0.0795873,0.904291,0.505058,0.280565,0.791767,0.964676,0.986304,0.738141,0.853074,0.999111,0.194052,0.00178862,0.258167,0.791361,0.021346,0.0918661,0.0437923,0.624223,0.672594,0.875861,0.512923,0.688975,0.554214,0.89838,0.359061,0.9909,0.491138,0.216214,0.831514,0.222226,0.104061,0.263412,0.509345,0.47732,0.291762,0.373311,0.638384,0.236697,0.16175,0.455946,0.778381,0.4654,0.26758,0.539753,0.0852368,0.960685,0.194233,0.225253,0.589498,0.266394,0.443231,0.123015,0.816121,0.73848,0.179882,0.584686,0.631427,0.820761,0.0794803,0.620575,0.386591,0.444708,0.39338,0.0200904,0.94308,0.0531727,0.610426,0.88151,0.363847,0.0267146,0.609944,0.501152,0.334218,0.808657,0.332868,0.104954,0.890744,0.8672,0.912527,0.0863424,0.422168,0.657114,0.750853,0.109976,0.951368,0.971538,0.945163,0.0793139,0.119281,0.0884352,0.237259,0.343458,0.310924,0.876345,0.894856,0.807282,0.855058,0.375184,0.1462,0.581677,0.903874,0.325912,0.631781,0.551146,0.0399687,0.800633,0.156628,0.283516,0.18958,0.759883,0.997909,0.837438,0.0960773,0.666875,0.942958,0.556372,0.679696,0.595611,0.232781,0.210403,0.824989,0.995636,0.791447,0.317685,0.52504,0.989542,0.466883,0.86708,0.13871,0.0332981,0.0583835,0.2577,0.163254,0.00386328,0.962265,0.198022,0.781898,0.284538,0.98236,0.430646,0.324229,0.719707,0.213119,0.0118018,0.808676,0.201013,0.128697,0.337676,0.154251,0.902597,0.783737,0.526218,0.702715,0.804483,0.251215,0.654458,0.845861,0.0267469,0.039736,0.372387,0.105875,0.902969,0.641038,0.0600626,0.499476,0.463262,0.084244,0.0677435,0.0562999,0.726784,0.00589865,0.628636,0.485363,0.700117,0.028044,0.173135,0.643664,0.183682,0.199382,0.174918,0.811535,0.941567,0.0487323,0.99454,0.219277,0.235153,0.551408,0.686161,0.39276,0.589185,0.0574228,0.240515,0.284765,0.952549,0.484873,0.183338,0.161588,0.905467,0.441748,0.543657,0.599516,0.234349,0.149331,0.987212,0.0188032,0.101978,0.107644,0.0220418,0.726921,0.183289,0.397992,0.986447,0.518065,0.842401,0.535891,0.810621,0.705605,0.695401,0.0130059,0.85195,0.72034,0.672151,0.976796,0.714805,0.87269,0.746007,0.901367,0.361306,0.226757,0.268423,0.548933,0.6442,0.600363,0.0785051,0.948206,0.809846,0.858508,0.00267845,0.81039,0.548021,0.397722,0.793649,0.0329595,0.0123561,0.819953,0.0482923,0.180679,0.844434,0.972749,0.147042,0.17384,0.773394,0.424354,0.640162,0.259371,0.281014,0.540233,0.770971,0.979566,0.789726,0.156489,0.0934211,0.0577921,0.683184,0.765766,0.506644,0.989235,0.77353,0.504987,0.0467776,0.473402,0.191828,0.889867,0.0839819,0.903885,0.784019,0.0127404,0.72957,0.697193,0.161641,0.751939,0.592155,0.542833,0.646872,0.278101,0.170085,0.51953,0.343196,0.515141,0.841888,0.461533,0.843953,0.816324,0.171744,0.632875,0.432583,0.0376702,0.0514752,0.235063,0.882707,0.152184,0.410591,0.107228,0.59987,0.445316,0.0747405,0.582892,0.505534,0.719144,0.0449185,0.0173705,0.614385,0.407832,0.387342,0.398082,0.277336,0.810422,0.416272,0.384804,0.270828,0.947573,0.0101417,0.930709,0.594254,0.673646,0.0192783,0.353817,0.211962,0.89197,0.448369,0.365216,0.615494,0.557476,0.994676,0.410385,0.499902,0.286439,0.144564,0.527498,0.221682,0.991189,0.765723,0.667849,0.544225,0.271281,0.535309,0.728487,0.436984,0.448833,0.0714459,0.936203,0.874233,0.360099,0.978206,0.196723,0.767625,0.925061,0.609184,0.949673,0.511516,0.48281,0.968365,0.308916,0.136192,0.776469,0.650516,0.694443,0.942602,0.920258,0.886482,0.51845,0.0834572,0.632313,0.0720267,0.80611,0.873913,0.978434,0.831772,0.291687,0.633403,0.550597,0.838265,0.229823,0.796989,0.787198,0.381839,0.110174,0.147061,0.91928,0.713872,0.79485,0.563587,0.335383,0.0644761,0.754659,0.612351,0.322304,0.195238,0.212902,0.275787,0.428891,0.0664507,0.527297,0.248326,0.591139,0.955929,0.918102,0.919833,0.485655,0.681403,0.901282,0.660923,0.341528,0.301175,0.768714,0.0313212,0.202955,0.911141,0.131598,0.00882274,0.159879,0.953379,0.824264,0.152419,0.862561,0.094813,0.0498787,0.978483,0.286022,0.468361,0.245015,0.0734389,0.523271,0.928886,0.922925,0.565191,0.597504,0.22179,0.855587,0.733473,0.679227,0.192098,0.559462,0.89035,0.743565,0.841349,0.465686,0.810209,0.33155,0.204669,0.625906,0.458568,0.431433,0.823406,0.241458,0.580032,0.199579,0.0950391,0.526567,0.6827,0.473772,0.832839,0.341698,0.194863,0.394911,0.572691,0.681038,0.638002,0.750587,0.671758,0.767909,0.988626,0.156844,0.894811,0.233089,0.509839,0.499275,0.864182,0.975883,0.141718,0.156922,0.322103,0.767571,0.803007,0.678975,0.971267,0.611512,0.685963,0.982359,0.249295,0.0222267,0.123024,0.341305,0.0621,0.937656,0.0913031,0.376708,0.918944,0.765463,0.193035,0.707371,0.00011456,0.560147,0.61855,0.0669168,0.723466,0.631258,0.0222345,0.57691,0.651706,0.637411,0.662896,0.832893,0.503959,0.527164,0.276003,0.906412,0.476232,0.620821,0.597191,0.971876,0.553749,0.517676,0.767104,0.902539,0.264667,0.860656,0.620905,0.510951,0.46039,0.199362,0.0926988,0.750139,0.975453,0.255135,0.857798,0.328231,0.798483,0.541863,0.397395,0.442516,0.89903,0.77763,0.359477,0.0903055,0.44967,0.00997734,0.92521,0.144715,0.1431,0.0952517,0.44023,0.301633,0.378706,0.481951,0.668143,0.179289,0.347417,0.795567,0.396762,0.75761,0.449678,0.851611,0.371268,0.373733,0.11677,0.968353,0.755605,0.83148,0.859422,0.531977,0.778376,0.467885,0.867872,0.773049,0.814007,0.240126,0.442234,0.463711,0.590384,0.583577,0.869437,0.342997,0.178149,0.838794,0.260254,0.649381,0.812205,0.995885,0.438553,0.92941,0.340877,0.662669,0.597915,0.0341015,0.2444,0.881154,0.86732,0.0108965,0.284806,0.473959,0.430849,0.25177,0.536058,0.955182,0.13953,0.359253,0.642391,0.260737,0.807082,0.815813,0.0944996,0.914866,0.754773,0.78032,0.352728,0.376816,0.605161,0.809329,0.291499,0.826619,0.0497388,0.876375,0.545352,0.159845,0.945995,0.122294,0.413898,0.855046,0.191127,0.830417,0.232072,0.576664,0.0565199,0.970286,0.113671,0.885983,0.556042,0.388422,0.841017,0.520105,0.980738,0.306413,0.167122,0.116276,0.438714,0.239005,0.976932,0.584093,0.836712,0.430444,0.434993,0.149396,0.646851,0.482117,0.0418151,|0.38523,0.418489,0.295707,0.771449,0.376827,0.44839,0.796609,0.633692,0.546354,0.000490963,0.621498,0.229322,0.0857717,0.759335,0.862522,0.597069,0.0104308,0.854456,0.439534,0.428466,0.0485148,0.0902088,0.070945,0.813469,0.122102,0.832,0.608987,0.604126,0.831319,0.588554,0.10605,0.913301,0.275112,0.533754,0.777011,0.050448,0.966046,0.216216,0.0556011,0.666187,0.345861,0.964794,0.738562,0.667638,0.464361,0.00995767,0.159012,0.292297,0.419875,0.325822,0.151144,0.600823,0.259782,0.430372,0.670319,0.433749,0.733787,0.997133,0.954669,0.284991,0.451959,0.366308,0.201044,0.979372,0.202813,0.706792,0.198096,0.780144,0.179227,0.919418,0.896798,0.711378,0.276271,0.680471,0.520922,0.860905,0.0453749,0.168812,0.623917,0.0948997,0.495642,0.70675,0.441445,0.637194,0.441934,0.531459,0.743506,0.137522,0.684199,0.61538,0.047245,0.333534,0.921775,0.586387,0.687424,0.829409,0.315848,0.250825,0.0179722,0.961855,0.83577,0.928009,0.978366,0.958151,0.570726,0.917701,0.80548,0.591967,0.493734,0.933158,0.689063,0.0110433,0.643271,0.276665,0.197825,0.758063,0.732167,0.904764,0.407272,0.427739,0.634592,0.0237942,0.402412,0.869475,0.68775,0.800108,0.429482,0.0098055,0.891617,0.203556,0.152718,0.547711,0.163868,0.138874,0.582625,0.326513,0.224761,0.47106,0.114907,0.52084,0.627351,0.77276,0.658448,0.736603,0.247087,0.319695,0.105868,0.983906,0.339079,0.58807,0.988639,0.974543,0.937125,0.0573125,0.658205,0.578165,0.756887,0.572678,0.995202,0.0264904,0.176106,0.582138,0.181936,0.899165,0.0906145,0.374189,0.818112,0.597777,0.870206,0.674479,0.423259,0.340955,0.886093,0.684416,0.391332,0.314586,0.303163,0.971554,0.937838,0.462482,0.91925,0.13789,0.483134,0.51931,0.810624,0.37443,0.627071,0.557971,0.221388,0.0737816,0.482543,0.759785,0.592432,0.796785,0.263819,0.237266,0.665414,0.811868,0.895426,0.603164,0.59024,0.311649,0.709683,0.619523,0.516824,0.127716,0.102535,0.470607,0.916201,0.630531,0.339375,0.884472,0.203495,0.328389,0.0275742,0.903069,0.335643,0.527117,0.366442,0.967136,0.0518408,0.166108,0.708523,0.385342,0.753679,0.845273,0.382732,0.385198,0.650856,0.281408,0.741288,0.705788,0.362049,0.417991,0.453473,0.726461,0.453882,0.886854,0.817774,0.137498,0.530506,0.517071,0.554569,0.910022,0.690618,0.77767,0.976395,0.463077,0.864309,0.379264,0.42711,0.65756,0.275436,0.149092,0.887069,0.629636,0.566616,0.327599,0.793036,0.509893,0.946165,0.438746,0.998162,0.388676,0.454397,0.982942,0.590812,0.805677,0.0856292,0.546852,0.719913,0.0455874,0.0513474,0.613976,0.00861114,0.921044,0.499867,0.841324,0.917611,0.785805,0.460154,0.258777,0.368546,0.890232,0.646393,0.656926,0.448228,0.647287,0.261241,0.773796,0.405969,0.135291,0.811263,0.185171,0.78932,0.290605,0.802286,0.2489,0.51493,0.00579488,0.0714881,0.366333,0.798281,0.193397,0.938432,0.518815,0.909297,0.73771,0.1926,0.00199986,0.349111,0.665989,0.763936,0.128424,0.984877,0.96286,0.906843,0.0980968,0.155736,0.369151,0.155726,0.309778,0.526118,0.871638,0.0187355,0.324345,0.358029,0.436078,0.387128,0.380085,0.846776,0.934359,0.535203,0.784696,0.306595,0.850833,0.734435,0.317555,0.835099,0.772181,0.51718,0.558551,0.603165,0.316992,0.382526,0.0156746,0.700002,0.361231,0.347336,0.423024,0.849028,0.40267,0.198667,0.551748,0.835155,0.393403,0.910448,0.519502,0.101582,0.200799,0.521682,0.684359,0.128093,0.128272,0.0417861,0.601141,0.23681,0.463478,0.806268,0.0791607,0.596499,0.762105,0.417506,0.0402841,0.498485,0.656967,0.690027,0.213149,0.502843,0.971096,0.351187,0.356304,0.844528,0.568829,0.706756,0.968391,0.86706,0.00232381,0.402122,0.4497,0.537262,0.660116,0.693279,0.764713,0.235564,0.389943,0.631158,0.826424,0.99473,0.762243,0.106316,0.788249,0.0239254,0.36806,0.334478,0.714492,0.383567,0.519703,0.868257,0.880204,0.653515,0.991287,0.847423,0.525046,0.693544,0.304539,0.6272,0.576717,0.441956,0.660916,0.435711,0.0587249,0.743559,0.0543178,0.208676,0.720839,0.513026,0.729945,0.55577,0.919415,0.0200738,0.455884,0.46266,0.365351,0.850148,0.125573,0.302006,0.770121,0.759762,0.99878,0.54187,0.0569065,0.697714,0.506877,0.691419,0.124059,0.825056,0.228457,0.0137581,0.743234,0.271341,0.101348,0.314032,0.526106,0.19182,0.552785,0.441437,0.743228,0.724359,0.831159,0.932391,0.829412,0.714779,0.116342,0.510879,0.608676,0.198641,0.725632,0.292068,0.913053,0.599533,0.533226,0.0475672,0.531564,0.0455369,0.78453,0.667993,0.538222,0.853066,0.344065,0.232923,0.903147,0.356479,0.0923844,0.336969,0.538204,0.516836,0.887944,0.0941866,0.208314,0.707623,0.713846,0.663704,0.200013,0.373361,0.0463399,0.486645,0.58528,0.393998,0.28926,0.56252,0.918266,0.891889,0.184938,0.0572613,0.242401,0.689819,0.745305,0.886184,0.917325,0.321388,0.474134,0.485964,0.351725,0.474629,0.638279,0.0752853,0.429938,0.758838,0.513007,0.202541,0.134191,0.621734,0.69324,0.365749,0.198767,0.551894,0.259124,0.195351,0.47307,0.720125,0.238898,0.40096,0.116098,0.347304,0.12271,0.0598187,0.580947,0.289278,0.60655,0.975777,0.286258,0.595196,0.260886,0.923931,0.608067,0.50108,0.795378,0.652208,0.48561,0.823701,0.765165,0.831176,0.875762,0.709827,0.767763,0.412529,0.160333,0.062642,0.146075,0.807927,0.771914,0.225248,0.945353,0.408968,0.715927,0.777707,0.793125,0.986104,0.26867,0.610015,0.50988,0.744745,0.464874,0.55383,0.739927,0.438427,0.860367,0.908913,0.925575,0.199063,0.854559,0.422663,0.329995,0.19376,0.479926,0.135702,0.958706,0.48956,0.0136575,0.101172,0.247605,0.193088,0.691903,0.913401,0.0332506,0.347522,0.816208,0.638465,0.281804,0.0283282,0.501869,0.225251,0.403392,0.664601,0.433778,0.0327826,0.823845,0.162221,0.353267,0.646454,0.110627,0.595449,0.548726,0.586468,0.660961,0.0126792,0.576238,0.9642,0.608556,0.894202,0.983415,0.877917,0.761926,0.681202,0.200638,0.949973,0.0913466,0.417712,0.366649,0.584163,0.024609,0.733775,0.207923,0.701417,0.909202,0.233828,0.540144,0.701505,0.0657623,0.249557,0.106264,0.136907,0.214045,0.838787,0.0518384,0.0136976,0.0649399,0.179556,0.572817,0.430156,0.300615,0.63332,0.192416,0.665079,0.997122,0.933934,0.0945561,0.41607,0.829341,0.784392,0.835941,0.702034,0.302868,0.186292,0.808281,0.678559,0.963732,0.552113,0.0797291,0.0138105,0.482909,0.676218,0.495484,0.885245,0.272992,0.664316,0.538029,0.677514,0.39835,0.207197,0.904085,0.952006,0.814289,0.835096,0.332818,0.310442,0.0700939,0.0903943,0.690444,0.866221,0.88332,0.562808,0.240102,0.988433,0.247907,0.805151,0.0326689,0.166683,0.434661,0.962874,0.309223,0.366648,0.528588,0.944525,0.590115,0.284382,0.505227,0.817757,0.222486,0.374046,0.364361,0.224891,0.434872,0.388409,0.863573,0.850691,0.986364,0.444988,0.0933978,0.48417,0.687949,0.509116,0.0149646,0.824342,0.325849,0.365578,0.269539,0.465684,0.602426,0.853321,0.879589,0.947753,0.979156,0.363423,0.459222,0.802159,0.872769,0.776155,0.120272,0.204127,0.0558076,0.006392,0.559195,0.945642,0.998552,0.445516,0.41486,0.27027,0.773551,0.420882,0.499995,0.877522,0.613078,0.7729,0.442345,0.314941,0.406717,0.64231,0.577363,0.894153,0.193694,0.865168,0.375416,0.456061,0.302858,0.681868,0.810201,0.506878,0.456606,0.0896373,0.295283,0.758345,0.375498,0.731608,0.815758,0.971644,0.746055,0.629475,0.79283,0.346525,0.705208,0.833699,0.0757499,0.0287958,0.481193,0.702323,0.713717,0.359116,0.0882163,0.304672,0.830986,0.032899,0.489449,0.472453,0.105425,0.492951,0.863391,0.428323,0.992425,0.686586,0.721726,0.884955,0.703553,0.959221,0.37011,0.306706,0.731066,0.255556,0.832556,0.523229,0.411211,0.203119,0.582866,0.575562,0.686733,0.678568,0.220628,0.591778,0.157078,0.164031,0.348484,0.385731,0.56378,0.516006,0.634602,0.457355,0.535082,0.73805,0.623384,0.284439,0.96345,0.528814,0.4677,0.241593,0.864191,0.197669,0.419077,0.0896505,0.631182,0.587314,0.166679,0.571636,0.0246867,0.654926,0.916674,0.17899,0.660545,0.0446679,0.867757,0.54305,0.000142574,0.31493,0.423527,0.73656,0.965266,0.767543,0.807813,0.83758,0.105043,0.616688,0.961819,0.215277,0.411908,0.714195,0.310664,0.767615,0.214426,0.669482,0.104736,0.874174,0.0960405,0.340117,0.286287,0.223572,0.404295,0.486855,0.0195217,0.7284,0.306741,0.124066,0.02007,0.10528,0.822677,0.362389,0.577691,0.240382,0.218375,0.815417,0.58431,0.340601,0.999631,0.493417,0.232115,0.079796,0.977428,0.3869,0.732071,0.0674369,0.873535,0.650139,0.844244,0.927137,0.872,0.412228,0.878395,0.554634,0.646161,0.06595,0.844195,0.808098,0.449328,0.0697998,0.774981,0.384134,0.00906807,0.846984,0.856884,0.397577,0.894612,0.870092,0.145883,0.268268,0.00849468,0.174971,0.52185,0.489806,0.341269,0.447662,0.485987,0.497299,0.193219,0.647876,0.595077,0.134104,0.174412,0.823303,0.941374,0.607391,0.137305,0.307994,0.223833,0.438045,0.459593,0.626056,0.598909,0.561958,0.140741,0.11428,0.988673,0.0403478,0.658397,0.940218,0.796688,0.885813,0.10602,0.585852,0.280331,0.666037,0.878988,0.553294,0.510574,0.76831,0.387101,0.550024,0.022339,0.738844,0.0347422,0.348428,0.805537,0.760759,0.221421,0.670721,0.188861,0.11466,0.349238,0.871536,0.930717,0.965877,0.320088,0.454606,0.907229,0.424559,0.269989,0.476447,0.989946,0.808254,0.733503,0.994347,0.267782,0.302909,0.542485,0.661544,0.837959,0.105162,0.0555826,0.413765,0.32835,0.238202,0.382123,|0.155357,0.302914,0.0672891,0.69937,0.731102,0.0696616,0.665042,0.765722,0.995156,0.585262,0.0073601,0.5081,0.760803,0.748888,0.811521,0.988389,0.434379,0.965931,0.52938,0.373554,0.024571,0.246979,0.13101,0.847977,0.38671,0.758125,0.569765,0.614206,0.508854,0.183759,0.269052,0.394776,0.499331,0.16138,0.329201,0.240005,0.755564,0.441518,0.555288,0.606327,0.144807,0.859563,0.745865,0.722889,0.625148,0.400356,0.0623142,0.019756,0.261667,0.594988,0.849497,0.586525,0.791831,0.784403,0.226886,0.409321,0.884703,0.18861,0.632603,0.800723,0.283774,0.595103,0.874797,0.990121,0.0806262,0.61864,0.0747787,0.801628,0.457882,0.39784,0.828107,0.478551,0.280148,0.482481,0.371362,0.261383,0.761904,0.298049,0.386877,0.453536,0.786566,0.780175,0.121504,0.19502,0.296144,0.350469,0.360364,0.429131,0.262969,0.354473,0.146728,0.876573,0.542383,0.547894,0.975236,0.658883,0.221646,0.679668,0.826808,0.642826,0.925298,0.560325,0.794385,0.916078,0.777826,0.795004,0.153896,0.0230321,0.736708,0.256225,0.667277,0.745693,0.974733,0.40439,0.197398,0.384967,0.490196,0.375746,0.168109,0.288449,0.422538,0.268202,0.707433,0.848813,0.870489,0.684751,0.921521,0.613711,0.680793,0.703133,0.774155,0.740216,0.666322,0.811709,0.680949,0.303501,0.447411,0.44147,0.660795,0.539164,0.148441,0.102024,0.0790365,0.349027,0.885323,0.463901,0.555847,0.609501,0.809422,0.186759,0.804394,0.452291,0.966723,0.2241,0.763786,0.33763,0.61286,0.761656,0.10145,0.558872,0.057394,0.684432,0.542912,0.0981953,0.202622,0.723595,0.435835,0.405129,0.566781,0.202287,0.346041,0.244779,0.832695,0.32887,0.444496,0.815949,0.347405,0.51566,0.0735613,0.591088,0.167015,0.693393,0.313461,0.698871,0.614637,0.252595,0.0483342,0.216737,0.96992,0.779327,0.625015,0.0579095,0.188076,0.802204,0.0519991,0.798449,0.968543,0.308973,0.547423,0.656304,0.559754,0.0690826,0.812924,0.659072,0.421551,0.594276,0.197108,0.384522,0.576483,0.48281,0.0311974,0.65418,0.848049,0.883646,0.30438,0.917584,0.825968,0.844219,0.580394,0.218692,0.260367,0.228323,0.708925,0.350932,0.0244887,0.402432,0.216287,0.403658,0.992998,0.790084,0.772648,0.245043,0.89305,0.622123,0.651274,0.113886,0.179059,0.705911,0.990844,0.232016,0.142834,0.562526,0.0691282,0.856293,0.547516,0.170926,0.311198,0.922734,0.776921,0.818402,0.215078,0.674589,0.830975,0.607795,0.297855,0.13261,0.131355,0.870978,0.0633552,0.928363,0.471965,0.611203,0.701491,0.627645,0.872951,0.450917,0.859622,0.306033,0.144851,0.737543,0.992795,0.785578,0.570713,0.502926,0.0244577,0.0546725,0.992123,0.694229,0.400646,0.682441,0.612145,0.841879,0.666509,0.931908,0.513115,0.933533,0.750745,0.711829,0.250527,0.310358,0.77966,0.511631,0.688295,0.916377,0.491953,0.217983,0.0720761,0.963625,0.689816,0.668194,0.909598,0.205219,0.583595,0.57847,0.637248,0.455664,0.289952,0.365414,0.0760355,0.819787,0.789914,0.131776,0.501303,0.640651,0.0696641,0.541348,0.433255,0.508117,0.142836,0.165344,0.995365,0.0255042,0.693649,0.877776,0.535028,0.301582,0.525414,0.744043,0.638573,0.93942,0.560107,0.360506,0.758792,0.469787,0.336294,0.345222,0.454813,0.880425,0.241373,0.893732,0.846125,0.0734899,0.586042,0.66542,0.86783,0.375316,0.115192,0.585223,0.372788,0.193023,0.181122,0.772569,0.467742,0.983084,0.725142,0.454908,0.609075,0.152822,0.837965,0.861263,0.0768138,0.611889,0.3133,0.13575,0.311543,0.289208,0.0702336,0.32034,0.935525,0.623108,0.778224,0.527102,0.79814,0.284093,0.475662,0.454622,0.809216,0.696261,0.411576,0.140589,0.824748,0.68825,0.977621,0.878744,0.678658,0.505949,0.79215,0.683521,0.79201,0.0456169,0.00592083,0.378036,0.940968,0.379691,0.804012,0.975274,0.259061,0.536426,0.99707,0.177579,0.933305,0.122491,0.58904,0.33717,0.750574,0.937826,0.163596,0.692001,0.409796,0.10185,0.11349,0.80705,0.0564453,0.627568,0.595378,0.0018549,0.389723,0.0190536,0.28755,0.911737,0.956479,0.879342,0.372939,0.0840735,0.931908,0.8053,0.458182,0.26313,0.895941,0.155814,0.149069,0.494458,0.101787,0.857641,0.956398,0.388985,0.487985,0.174737,0.285183,0.12248,0.710795,0.928058,0.653145,0.655631,0.0900289,0.346384,0.0302072,0.99411,0.557487,0.212569,0.47353,0.396912,0.950786,0.0820879,0.913301,0.19567,0.950151,0.668703,0.756842,0.42638,0.493704,0.836139,0.970057,0.86248,0.26818,0.684463,0.824876,0.907532,0.404884,0.322543,0.679596,0.560113,0.142457,0.0452568,0.785551,0.224582,0.218267,0.200913,0.478017,0.803564,0.664398,0.513172,0.168778,0.687344,0.886141,0.898867,0.0552819,0.705899,0.40811,0.77282,0.404723,0.901151,0.59294,0.792752,0.965304,0.826187,0.937921,0.647828,0.21474,0.033216,0.0287732,0.199487,0.13344,0.335057,0.23902,0.878093,0.25252,0.411099,0.462041,0.190738,0.224998,0.915725,0.760155,0.100536,0.229428,0.772604,0.290767,0.582374,0.0542322,0.153527,0.249822,0.98369,0.0545193,0.530783,0.586508,0.327789,0.921312,0.968148,0.0739714,0.888908,0.231268,0.438279,0.174666,0.409889,0.557747,0.00257915,0.311826,0.587436,0.0840469,0.00416362,0.363451,0.4117,0.892308,0.451613,0.655214,0.158041,0.25187,0.789114,0.0902579,0.0819274,0.305366,0.605946,0.60778,0.936217,0.206406,0.00130051,0.986091,0.019607,0.136581,0.99793,0.167861,0.195315,0.0970033,0.113637,0.330214,0.823806,0.0759758,0.221028,0.597554,0.908934,0.536579,0.989194,0.46199,0.956779,0.619604,0.684923,0.809905,0.518338,0.445513,0.532189,0.892819,0.884988,0.0861828,0.438556,0.678095,0.0697846,0.0209857,0.887742,0.508347,0.188768,0.500645,0.0356724,0.391572,0.264589,0.934885,0.520414,0.00694036,0.153025,0.398259,0.60219,0.466986,0.640671,0.438904,0.414346,0.50124,0.53982,0.814116,0.0190651,0.953713,0.458292,0.600628,0.48406,0.876588,0.960641,0.175011,0.715365,0.239276,0.648492,0.380574,0.0156554,0.00222421,0.523492,0.582726,0.410182,0.0690414,0.402803,0.381724,0.695625,0.865839,0.211945,0.490183,0.252097,0.467328,0.499072,0.180371,0.0221332,0.178129,0.199729,0.881913,0.79318,0.263048,0.44212,0.583336,0.485466,0.897071,0.947878,0.643217,0.393286,0.822982,0.730852,0.535029,0.323847,0.0553403,0.074631,0.283063,0.202288,0.810959,0.27631,0.489267,0.70791,0.534279,0.139312,0.769262,0.0713108,0.93211,0.363241,0.834695,0.919684,0.131317,0.777325,0.837287,0.0461628,0.977758,0.0172887,0.984138,0.410789,0.552891,0.111895,0.365587,0.861583,0.666873,0.139823,0.24373,0.442519,0.990771,0.898491,0.691319,0.300764,0.177118,0.0281922,0.444803,0.756673,0.0474507,0.103618,0.118961,0.88743,0.515045,0.904154,0.309575,0.283241,0.850255,0.7824,0.324693,0.0757858,0.690125,0.191806,0.781886,0.511974,0.475005,0.448502,0.915943,0.594439,0.458222,0.826831,0.142923,0.351084,0.991618,0.0814186,0.042141,0.414302,0.0118522,0.633573,0.81879,0.210811,0.792061,0.444446,0.206269,0.664579,0.253027,0.484514,0.256188,0.901665,0.956429,0.457463,0.873897,0.623068,0.499693,0.136958,0.6017,0.498478,0.0984372,0.763299,0.92105,0.711232,0.118013,0.553589,0.309768,0.840441,0.975861,0.495751,0.281089,0.351177,0.939241,0.932966,0.984744,0.52408,0.649496,0.172146,0.780915,0.222492,0.859126,0.832882,0.0691526,0.656949,0.451969,0.489568,0.0054388,0.420357,0.972078,0.363215,0.884127,0.275452,0.0896705,0.942723,0.438845,0.622948,0.804386,0.467588,0.80809,0.581056,0.749518,0.61272,0.821369,0.286579,0.478515,0.079636,0.150278,0.193968,0.82736,0.353609,0.972926,0.882495,0.951534,0.420112,0.703029,0.913985,0.343821,0.761267,0.768594,0.843907,0.116821,0.79482,0.474864,0.856416,0.205906,0.0149948,0.306587,0.289851,0.177622,0.333078,0.265945,0.203768,0.0957966,0.43161,0.305519,0.190371,0.921055,0.776785,0.347757,0.0351369,0.560427,0.827195,0.926955,0.624376,0.900983,0.168897,0.916974,0.941548,0.765817,0.518748,0.563892,0.557873,0.358298,0.420135,0.98872,0.12368,0.445391,0.366466,0.207067,0.388062,0.796562,0.26471,0.126725,0.887288,0.507738,0.00211668,0.550601,0.45945,0.0647732,0.917516,0.213919,0.902311,0.00670975,0.618217,0.609136,0.538094,0.458718,0.694761,0.680696,0.79774,0.349513,0.982632,0.315764,0.657132,0.889157,0.961494,0.324845,0.489551,0.0501926,0.911789,0.0394191,0.262571,0.126831,0.661512,0.657486,0.22601,0.973714,0.280156,0.258546,0.967609,0.631084,0.629786,0.881041,0.625186,0.588842,0.6635,0.534558,0.0873458,0.238262,0.00372612,0.0448488,0.856926,0.010722,0.745571,0.175207,0.587433,0.436703,0.974964,0.919928,0.718166,0.642407,0.617647,0.465585,0.735934,0.279772,0.157867,0.519459,0.734563,0.657672,0.0265479,0.525903,0.113578,0.46077,0.402296,0.361519,0.893124,0.631787,0.642983,0.661073,0.732974,0.0311368,0.625849,0.704631,0.361769,0.480213,0.821225,0.0483934,0.693599,0.813496,0.91162,0.22738,0.50923,0.290439,0.817701,0.90324,0.757979,0.698575,0.686005,0.624248,0.53436,0.632847,0.52345,0.575854,0.0741343,0.668816,0.27959,0.813406,0.577514,0.0431107,0.412403,0.488752,0.159138,0.542101,0.851905,0.146007,0.288658,0.913367,0.90182,0.545671,0.260822,0.413897,0.170876,0.132445,0.21623,0.729249,0.207453,0.382397,0.726518,0.146514,0.49877,0.94669,0.887544,0.337265,0.849492,0.829545,0.385972,0.101359,0.117983,0.201722,0.881099,0.331078,0.283913,0.965942,0.676465,0.683259,0.611841,0.761641,0.922877,0.152676,0.0161633,0.801774,0.364905,0.743498,0.658523,0.129704,0.354294,0.48797,0.839538,0.685926,0.762489,|0.727506,0.244197,0.013512,0.311429,0.90717,0.300726,0.151421,0.978689,0.584598,0.157354,0.112939,0.606472,0.172756,0.332485,0.289034,0.16238,0.49887,0.580385,0.736504,0.534703,0.11655,0.672208,0.743583,0.309234,0.253346,0.0304098,0.876615,0.397081,0.981544,0.195164,0.168807,0.906337,0.305997,0.567415,0.183157,0.431304,0.0243832,0.851097,0.433021,0.742895,0.360777,0.00405914,0.586326,0.743576,0.528422,0.336496,0.313823,0.414614,0.128006,0.534588,0.785107,0.263373,0.0923052,0.0112957,0.69182,0.241373,0.505976,0.638099,0.390879,0.530516,0.714203,0.510851,0.847616,0.499944,0.172269,0.462834,0.618441,0.623465,0.0629874,0.290555,0.40801,0.0298774,0.463425,0.311028,0.0124164,0.717072,0.0266302,0.647086,0.998646,0.645689,0.142073,0.569734,0.684363,0.0928478,0.55639,0.16017,0.50774,0.265724,0.138136,0.76802,0.951647,0.263363,0.0344521,0.253492,0.0377331,0.929956,0.196648,0.88399,0.687848,0.143652,0.871625,0.774304,0.128172,0.825294,0.595512,0.188853,0.351743,0.676125,0.881621,0.535261,0.929649,0.335514,0.392962,0.873416,0.332399,0.978072,0.960874,0.858562,0.376778,0.567439,0.615064,0.605962,0.604742,0.575575,0.810002,0.334167,0.936066,0.351795,0.0812417,0.865787,0.330936,0.143374,0.731539,0.143832,0.811702,0.633095,0.19024,0.346998,0.173475,0.00655824,0.765843,0.417201,0.41042,0.0679271,0.315484,0.663548,0.143408,0.704244,0.0446177,0.25629,0.320795,0.59142,0.158945,0.32946,0.557244,0.699514,0.777442,0.0741119,0.918441,0.0521717,0.688123,0.381443,0.282698,0.0722884,0.966636,0.903096,0.176443,0.871603,0.777752,0.582512,0.198114,0.776728,0.285686,0.629058,0.495467,0.611781,0.329105,0.865156,0.391109,0.525368,0.0662137,0.295611,0.0826478,0.934419,0.770598,0.147563,0.583274,0.901417,0.853894,0.450327,0.84424,0.81803,0.484243,0.987218,0.365309,0.417761,0.926605,0.59065,0.243946,0.791779,0.543082,0.255119,0.405748,0.371728,0.559627,0.45808,0.585429,0.3992,0.636764,0.263846,0.732102,0.621104,0.060925,0.74709,0.549897,0.490626,0.770628,0.44561,0.864038,0.133298,0.145601,0.450451,0.0301236,0.138889,0.138513,0.585048,0.280923,0.576613,0.215764,0.28064,0.0627595,0.974173,0.620727,0.545924,0.536078,0.816505,0.851802,0.771439,0.812746,0.534971,0.0258491,0.742726,0.032311,0.96493,0.421396,0.845395,0.0652995,0.853833,0.488393,0.381259,0.353153,0.223703,0.669651,0.0689731,0.65243,0.391742,0.722347,0.955621,0.817227,0.189869,0.608142,0.827237,0.639577,0.147323,0.925831,0.408417,0.266427,0.950085,0.47178,0.90004,0.168942,0.226203,0.506039,0.391019,0.516931,0.876185,0.629336,0.0203455,0.486178,0.395751,0.805124,0.361048,0.573567,0.731645,0.35764,0.631326,0.865852,0.573778,0.310905,0.954158,0.637467,0.500803,0.922294,0.665233,0.307594,0.898222,0.751125,0.155001,0.847359,0.304847,0.439081,0.938777,0.372939,0.413254,0.838865,0.88143,0.268477,0.782346,0.904153,0.975935,0.590511,0.248243,0.864492,0.152943,0.519215,0.034368,0.537344,0.259834,0.0130481,0.126721,0.379966,0.0389305,0.17703,0.194932,0.38784,0.0570917,0.119337,0.0189699,0.409328,0.357663,0.427963,0.917229,0.292908,0.53049,0.500374,0.334126,0.942517,0.366084,0.977683,0.221795,0.547698,0.506325,0.973307,0.714762,0.900801,0.828514,0.268491,0.688328,0.0441811,0.296888,0.00908631,0.970479,0.14528,0.0266825,0.500102,0.52464,0.160037,0.218942,0.154436,0.0945864,0.847375,0.487831,0.728244,0.919923,0.802921,0.364005,0.240782,0.127056,0.00210261,0.97078,0.545071,0.78205,0.0263653,0.706797,0.0927423,0.123122,0.945329,0.51182,0.339839,0.694026,0.262725,0.344697,0.256024,0.106458,0.470124,0.0683497,0.43596,0.962341,0.314789,0.570377,0.981121,0.814864,0.695824,0.514043,0.173845,0.0701113,0.0617099,0.541263,0.743452,0.527535,0.439808,0.542701,0.420358,0.633993,0.684064,0.238544,0.850056,0.0564126,0.010975,0.60159,0.834392,0.907537,0.0750483,0.311765,0.824735,0.158133,0.948393,0.204053,0.183145,0.501884,0.497915,0.720834,0.745273,0.173596,0.399997,0.199724,0.797224,0.644396,0.829101,0.753162,0.186898,0.132282,0.369552,0.437216,0.195858,0.809214,0.680527,0.688424,0.294429,0.547544,0.426825,0.209934,0.279987,0.0501105,0.506906,0.357088,0.645889,0.55775,0.489546,0.335976,0.133518,0.797508,0.478723,0.929528,0.64729,0.367131,0.181318,0.632271,0.801692,0.734728,0.225556,0.918018,0.878933,0.195318,0.274507,0.588915,0.57131,0.0342163,0.521457,0.0277802,0.697236,0.150621,0.281098,0.418073,0.862682,0.329761,0.410621,0.166768,0.517516,0.243017,0.368719,0.956354,0.0157772,0.656862,0.612637,0.0304681,0.637075,0.441836,0.985042,0.00683761,0.644883,0.875169,0.227063,0.907835,0.875524,0.878883,0.760823,0.555399,0.223249,0.439845,0.568826,0.136924,0.175016,0.859402,0.604484,0.497343,0.206855,0.672077,0.991096,0.396147,0.0765564,0.389177,0.486951,0.590918,0.286256,0.378193,0.698325,0.0397928,0.530163,0.925049,0.041425,0.016961,0.818307,0.830852,0.984275,0.18653,0.818532,0.532811,0.591196,0.763467,0.729891,0.375794,0.751177,0.884294,0.994715,0.293285,0.964288,0.825565,0.478784,0.497365,0.0671652,0.812765,0.90614,0.390571,0.000369966,0.19154,0.77758,0.447197,0.130598,0.974358,0.1873,0.970347,0.980725,0.244789,0.0178232,0.527248,0.0458168,0.945605,0.712952,0.217269,0.249585,0.120294,0.701807,0.0628597,0.982147,0.914948,0.0388917,0.878953,0.0632609,0.698768,0.546071,0.5795,0.697687,0.0857821,0.721011,0.514261,0.806063,0.595609,0.657548,0.962244,0.771759,0.987892,0.397692,0.0497355,0.898666,0.398906,0.282774,0.889777,0.602116,0.406835,0.115863,0.67928,0.423415,0.834171,0.61134,0.121581,0.269641,0.18293,0.260656,0.502203,0.597084,0.679036,0.692711,0.301309,0.771998,0.660728,0.918542,0.314633,0.831637,0.809869,0.44951,0.899815,0.0469666,0.401937,0.643434,0.180823,0.450352,0.00935727,0.177436,0.161379,0.735386,0.187406,0.872079,0.773463,0.838442,0.933774,0.0956632,0.459112,0.346275,0.384956,0.0110471,0.845082,0.269539,0.623055,0.373385,0.920583,0.881764,0.587563,0.701574,0.57,0.65177,0.216797,0.599283,0.161249,0.67416,0.748598,0.677945,0.489086,0.137477,0.60161,0.657205,0.314386,0.522746,0.919905,0.902208,0.86739,0.855918,0.298618,0.281759,0.744104,0.913676,0.856335,0.711173,0.183349,0.395423,0.937022,0.265377,0.0218391,0.464756,0.976655,0.111134,0.326687,0.447271,0.338334,0.676556,0.590385,0.443746,0.319024,0.436316,0.665768,0.0326965,0.908446,0.288862,0.715063,0.1074,0.96854,0.329524,0.598386,0.247111,0.736149,0.638739,0.14237,0.56182,0.740485,0.00992793,0.0301984,0.0658883,0.338806,0.939628,0.774638,0.44076,0.69645,0.470556,0.167289,0.630825,0.967147,0.526116,0.711788,0.782132,0.143994,0.00637972,0.948008,0.523564,0.0203966,0.506016,0.0508146,0.648637,0.379703,0.447935,0.900049,0.301264,0.370802,0.760681,0.338592,0.136953,0.405883,0.44733,0.00392509,0.68585,0.174552,0.20544,0.937964,0.600185,0.592654,0.293114,0.577477,0.179262,0.893159,0.123509,0.0511699,0.879202,0.579237,0.257409,0.299051,0.908721,0.422145,0.0254713,0.283735,0.691972,0.672489,0.463885,0.523949,0.157737,0.511823,0.475434,0.516608,0.296397,0.0246691,0.826785,0.304308,0.254969,0.388339,0.559347,0.637962,0.559841,0.52375,0.0418096,0.947625,0.858178,0.759427,0.837229,0.0257686,0.103412,0.455893,0.313258,0.577403,0.624152,0.346492,0.896922,0.815113,0.968251,0.750702,0.445652,0.783869,0.0725104,0.426648,0.573644,0.242371,0.958889,0.398653,0.304035,0.382114,0.447481,0.910512,0.348747,0.236414,0.20526,0.0327809,0.16646,0.409747,0.232796,0.0120513,0.0350692,0.16892,0.133489,0.772653,0.705166,0.67066,0.983284,0.24998,0.307576,0.83005,0.131491,0.539597,0.0618044,0.271174,0.750914,0.0244818,0.471991,0.445578,0.139223,0.117691,0.595499,0.619214,0.827107,0.82967,0.796412,0.0712681,0.788927,0.293307,0.27714,0.503266,0.232189,0.159033,0.0141463,0.548208,0.989121,0.00516146,0.403704,0.00908113,0.771814,0.0776615,0.852516,0.22292,0.866662,0.297288,0.143773,0.461366,0.396815,0.10368,0.780396,0.0705307,0.973568,0.078778,0.816503,0.670982,0.70494,0.993546,0.117711,0.87319,0.975714,0.588946,0.0828595,0.395608,0.871247,0.507734,0.548747,0.0703784,0.222631,0.0474493,0.874073,0.237024,0.606947,0.377868,0.838432,0.776288,0.668611,0.808691,0.17388,0.205605,0.0573329,0.472504,0.560152,0.760605,0.487473,0.997012,0.417375,0.915646,0.177345,0.884125,0.94326,0.214786,0.0799025,0.892554,0.039776,0.20403,0.0847496,0.559858,0.937171,0.151631,0.205789,0.794177,0.393435,0.278552,0.248095,0.999317,0.987025,0.574008,0.0303322,0.10791,0.127896,0.228156,0.130919,0.0726689,0.942774,0.184654,0.0161591,0.10177,0.955485,0.844797,0.671559,0.0512365,0.242408,0.0436969,0.821459,0.0658026,0.340556,0.559567,0.58574,0.518813,0.187291,0.40517,0.126209,0.487335,0.57078,0.614487,0.0614547,0.976916,0.1015,0.707072,0.34117,0.219087,0.0745599,0.0554518,0.646036,0.64822,0.888177,0.436112,0.414483,0.0628894,0.960746,0.87381,0.724939,0.18076,0.92414,0.761413,0.639242,0.26389,0.771079,0.113891,0.812195,0.838257,0.922792,0.665534,0.230922,0.890454,0.734499,0.160232,0.461323,0.555508,0.231602,0.474257,0.64703,0.561899,0.78292,0.818519,0.624967,0.28961,0.317352,0.326043,0.746878,0.710782,0.29462,0.83081,0.0159171,0.998335,0.575136,0.341215,0.831505,0.27291,0.684986,0.152193,0.851282,0.436696,0.519062,0.097306,0.292365,0.885214,0.536256,0.851463,|0.691061,0.0217563,0.273946,0.697899,0.537265,0.923089,0.94237,0.96897,0.352758,0.0281609,0.0128003,0.804357,0.38483,0.889495,0.846876,0.505244,0.477562,0.174644,0.192851,0.0984229,0.925012,0.488386,0.0976351,0.478322,0.62497,0.288403,0.286622,0.916806,0.4878,0.451254,0.770781,0.181767,0.379653,0.164192,0.0212145,0.402608,0.29476,0.0292544,0.514084,0.153665,0.218812,0.283299,0.65642,0.119943,0.97976,0.994349,0.320268,0.335617,0.30033,0.867125,0.696452,0.661703,0.90471,0.489055,0.322707,0.796305,0.548758,0.650817,0.173477,0.765753,0.0173746,0.225313,0.555601,0.127095,0.176209,0.957809,0.192333,0.110955,0.555466,0.695146,0.258101,0.509018,0.526667,0.00850385,0.680952,0.108392,0.616731,0.539328,0.632461,0.0882007,0.0222702,0.738547,0.447591,0.78433,0.435106,0.922279,0.735222,0.731431,0.726968,0.337562,0.412969,0.533768,0.65841,0.161348,0.751086,0.0066967,0.63776,0.971852,0.665678,0.250926,0.0649443,0.448326,0.495323,0.700346,0.23673,0.569196,0.380399,0.0832525,0.596961,0.0431504,0.701837,0.0827292,0.899646,0.948745,0.29583,0.945856,0.0553054,0.555356,0.100383,0.974915,0.48293,0.68067,0.869681,0.243188,0.63476,0.760181,0.860941,0.54007,0.0469578,0.311328,0.50231,0.681908,0.197278,0.251359,0.527756,0.277748,0.041029,0.505705,0.0783384,0.717492,0.249856,0.5734,0.323897,0.834419,0.973554,0.428763,0.622999,0.652227,0.601351,0.137195,0.885168,0.271287,0.918039,0.0473521,0.536089,0.698483,0.144207,0.513663,0.482183,0.402448,0.515227,0.240573,0.459118,0.693783,0.0975533,0.189767,0.703187,0.336726,0.469828,0.709413,0.544209,0.176635,0.0379185,0.303513,0.867456,0.297344,0.417613,0.417477,0.145622,0.0567693,0.180535,0.0921574,0.996084,0.180725,0.587833,0.338714,0.474454,0.0200373,0.745908,0.856375,0.165552,0.421959,0.770903,0.00657225,0.701138,0.112115,0.076309,0.38142,0.361883,0.977196,0.529029,0.857005,0.650588,0.750008,0.42571,0.26212,0.600637,0.135661,0.29655,0.879268,0.589359,0.193951,0.330684,0.716769,0.0551622,0.17226,0.338097,0.595953,0.228876,0.0239496,0.448895,0.665771,0.554763,0.15601,0.457963,0.533201,0.770964,0.0287784,0.522701,0.228249,0.387391,0.121932,0.918282,0.555424,0.377205,0.920786,0.33934,0.0456983,0.633387,0.447772,0.338741,0.403363,0.994345,0.170275,0.349083,0.264127,0.65546,0.703418,0.162342,0.126,0.219228,0.899267,0.108249,0.0238471,0.444951,0.460728,0.926131,0.518302,0.0346435,0.888998,0.0401204,0.687462,0.879564,0.429006,0.464369,0.619019,0.558901,0.522378,0.0213688,0.284286,0.875151,0.613717,0.964454,0.743507,0.865617,0.186291,0.749975,0.570593,0.62347,0.36791,0.202474,0.56954,0.0405018,0.77657,0.615178,0.330561,0.71069,0.270259,0.81118,0.62495,0.109346,0.450812,0.304569,0.254392,0.491032,0.599159,0.586601,0.829146,0.116053,0.891723,0.888796,0.850586,0.395613,0.746997,0.613854,0.862477,0.608825,0.0955345,0.285491,0.82351,0.215432,0.00895596,0.983611,0.828407,0.722778,0.85454,0.763011,0.813835,0.2169,0.293333,0.618841,0.745874,0.273783,0.508388,0.415444,0.39266,0.291806,0.163673,0.995402,0.904355,0.46139,0.318991,0.898158,0.200024,0.743933,0.760321,0.437796,0.143454,0.193798,0.102921,0.161067,0.198752,0.639437,0.726093,0.771389,0.45291,0.958249,0.461733,0.39041,0.990338,0.711069,0.783505,0.493529,0.080066,0.377038,0.322136,0.652706,0.0509757,0.58213,0.942497,0.766727,0.152628,0.0619663,0.650627,0.911889,0.135652,0.323776,0.627372,0.81787,0.033284,0.103858,0.554336,0.771853,0.708721,0.921659,0.678648,0.570957,0.336593,0.795022,0.686921,0.931226,0.472201,0.337393,0.312686,0.235529,0.524414,0.329665,0.126386,0.194496,0.303771,0.255704,0.632848,0.146517,0.216943,0.98565,0.192392,0.919233,0.124939,0.822714,0.157731,0.794274,0.793785,0.370121,0.123551,0.018326,0.752727,0.141617,0.705065,0.302351,0.340698,0.608594,0.396751,0.148353,0.97749,0.168038,0.80959,0.990972,0.528894,0.739089,0.244783,0.638888,0.296486,0.543222,0.361404,0.823016,0.0845214,0.630974,0.846135,0.707601,0.593826,0.735527,0.837335,0.23795,0.157624,0.36621,0.81687,0.160623,0.216609,0.664744,0.567251,0.229918,0.987212,0.284264,0.644813,0.385149,0.993835,0.7263,0.606165,0.814561,0.18282,0.622004,0.896282,0.937737,0.976124,0.898761,0.391646,0.754594,0.343678,0.8987,0.765178,0.732685,0.596659,0.585048,0.786372,0.715927,0.12214,0.351195,0.168404,0.91331,0.82771,0.236291,0.801481,0.137426,0.704591,0.278974,0.582723,0.669722,0.769627,0.59804,0.609357,0.850183,0.604749,0.391597,0.289606,0.658822,0.99705,0.242326,0.661798,0.271789,0.0810245,0.505404,0.441519,0.0384697,0.696561,0.0991281,0.745327,0.0628908,0.0277105,0.990089,0.370388,0.149211,0.901836,0.800069,0.641574,0.796524,0.278603,0.211275,0.715702,0.675314,0.0489354,0.138655,0.0385216,0.781684,0.55688,0.0826297,0.371044,0.328172,0.606467,0.836312,0.452124,0.120995,0.410157,0.752573,0.475733,0.554387,0.407264,0.185771,0.127014,0.576446,0.960061,0.624322,0.749468,0.419979,0.7282,0.912441,0.881883,0.00749099,0.294241,0.86262,0.500117,0.295085,0.253873,0.171882,0.189248,0.0297531,0.639433,0.133758,0.898116,0.553416,0.277799,0.873316,0.326629,0.314089,0.801992,0.574767,0.0684372,0.739846,0.370308,0.0910897,0.890952,0.775327,0.932626,0.892912,0.502511,0.143682,0.842497,0.307821,0.0686336,0.13756,0.977029,0.734071,0.378758,0.360603,0.550142,0.2782,0.218798,0.588153,0.442816,0.494535,0.221201,0.608665,0.751365,0.973737,0.812555,0.798007,0.904033,0.482433,0.530052,0.563926,0.402213,0.927555,0.293547,0.0729537,0.367943,0.916349,0.98732,0.837609,0.79223,0.0684923,0.332362,0.721473,0.206667,0.868751,0.0890281,0.611594,0.627483,0.359598,0.289043,0.266115,0.182571,0.592166,0.556623,0.0416608,0.108755,0.708222,0.676951,0.17161,0.602569,0.590016,0.782304,0.204393,0.954898,0.619974,0.209367,0.068707,0.53822,0.332275,0.152309,0.37301,0.450318,0.000252187,0.284625,0.360838,0.259255,0.388008,0.492328,0.567141,0.139394,0.714984,0.505597,0.451225,0.565946,0.545336,0.854001,0.308806,0.238641,0.455521,0.59559,0.0185266,0.315835,0.0270751,0.144913,0.0820582,0.519184,0.231763,0.213402,0.158381,0.649826,0.874272,0.275434,0.281616,0.315145,0.356661,0.381253,0.892158,0.706338,0.260427,0.0203478,0.536534,0.955618,0.198102,0.00208187,0.330785,0.327098,0.443775,0.0374548,0.381548,0.987443,0.16261,0.729385,0.782679,0.972122,0.569922,0.718675,0.893833,0.421147,0.595073,0.591759,0.667346,0.640883,0.299302,0.383157,0.377304,0.977519,0.341609,0.915541,0.113896,0.671245,0.533026,0.403866,0.556913,0.451737,0.597148,0.183794,0.838293,0.296087,0.301875,0.62351,0.227914,0.156499,0.0290436,0.253735,0.248033,0.904913,0.638619,0.754358,0.225257,0.937271,0.0438237,0.350535,0.514456,0.921306,0.420174,0.142767,0.319176,0.837439,0.871753,0.596627,0.654098,0.729287,0.923184,0.00950295,0.539547,0.335784,0.000459373,0.613878,0.648214,0.913305,0.737244,0.107534,0.216458,0.086603,0.88092,0.496645,0.946886,0.333116,0.918673,0.542909,0.337568,0.682408,0.758593,0.939865,0.560686,0.545652,0.944006,0.91437,0.667745,0.699434,0.42139,0.396947,0.287941,0.213135,0.957958,0.281189,0.852014,0.483222,0.405937,0.726181,0.314994,0.945292,0.596208,0.45143,0.615982,0.881261,0.937549,0.566948,0.189157,0.159793,0.571619,0.725193,0.173412,0.39525,0.0231252,0.563749,0.644435,0.249714,0.522652,0.727054,0.424568,0.954125,0.341657,0.521115,0.0707348,0.400677,0.53207,0.706408,0.526551,0.745,0.954655,0.709493,0.74136,0.980697,0.731965,0.355869,0.174988,0.288799,0.476861,0.944565,0.616849,0.669916,0.691088,0.28115,0.785849,0.95095,0.14459,0.256328,0.0998778,0.839547,0.91082,0.541442,0.523952,0.199069,0.978917,0.602081,0.91342,0.957772,0.881948,0.865837,0.121835,0.266203,0.487877,0.466402,0.182697,0.413995,0.237733,0.714846,0.785788,0.0907547,0.331059,0.754908,0.427385,0.288525,0.424782,0.630956,0.214291,0.0288323,0.0972103,0.698754,0.153386,0.567334,0.95158,0.102021,0.542231,0.132293,0.899006,0.52574,0.406685,0.412404,0.302257,0.905531,0.918172,0.0652099,0.667596,0.127389,0.888794,0.304374,0.349602,0.956369,0.392424,0.813002,0.337538,0.713294,0.699796,0.793485,0.891301,0.159403,0.0607926,0.0215158,0.233015,0.440412,0.661562,0.916702,0.241514,0.991011,0.743347,0.384668,0.217131,0.471667,0.56886,0.16616,0.22681,0.550514,0.404804,0.190594,0.721249,0.378869,0.455416,0.101434,0.469341,0.581328,0.985857,0.623079,0.701286,0.928262,0.994773,0.203941,0.291554,0.520215,0.542455,0.980958,0.882192,0.91558,0.555833,0.825314,0.769371,0.0547033,0.675583,0.962171,0.538468,0.00784838,0.509935,0.0692554,0.495802,0.668104,0.119867,0.817371,0.331317,0.956452,0.0460406,0.920571,0.506334,0.0818582,0.636908,0.586664,0.677728,0.636546,0.878424,0.350399,0.892704,0.664239,0.0166531,0.00832862,0.477502,0.346075,0.381731,0.228645,0.640117,0.80322,0.834387,0.0112649,0.516488,0.333814,0.793322,0.898022,0.020651,0.262867,0.0187968,0.84487,0.833809,0.0519088,0.423282,0.393334,0.152334,0.92621,0.0592837,0.949489,0.948677,0.810651,0.91467,0.68114,0.644937,0.384917,0.869646,0.806253,0.880184,0.59888,0.838858,0.790568,0.907301,0.00712168,0.894963,0.530546,0.566476,0.603966,0.710605,0.296119,0.926967,0.961693,0.819166,0.00320911,0.258694,0.533066,0.416295,0.776052,0.568317,0.0230086,0.201823,0.492689,0.075578,0.821643,|0.676778,0.469818,0.430544,0.36082,0.716949,0.0720449,0.659771,0.920828,0.553482,0.0315893,0.661623,0.701039,0.523865,0.0803308,0.485301,0.564615,0.509175,0.484213,0.812419,0.93941,0.526771,0.516575,0.812515,0.199534,0.645056,0.9298,0.654548,0.0860056,0.0307517,0.384092,0.272694,0.769459,0.125505,0.66544,0.222766,0.749939,0.71106,0.480256,0.475619,0.0657951,0.28168,0.562819,0.465627,0.959442,0.0707527,0.715133,0.851016,0.170473,0.866572,0.139711,0.949125,0.662829,0.249148,0.810261,0.504937,0.167355,0.0112585,0.470928,0.139021,0.514939,0.670055,0.909061,0.07728,0.839653,0.352974,0.895196,0.44299,0.088837,0.112322,0.848274,0.21843,0.586431,0.841344,0.992967,0.184146,0.784945,0.750383,0.991924,0.00256884,0.296752,0.995027,0.191499,0.373583,0.947453,0.698977,0.102909,0.0262123,0.27512,0.626499,0.696591,0.645762,0.981616,0.217645,0.319965,0.120046,0.751003,0.203082,0.957455,0.717332,0.423513,0.159575,0.455041,0.554954,0.396091,0.806822,0.541578,0.221513,0.190516,0.746284,0.650585,0.445063,0.898137,0.337143,0.858858,0.383541,0.353498,0.656797,0.546469,0.657679,0.718131,0.735013,0.464857,0.833486,0.999509,0.0692098,0.53741,0.899171,0.569284,0.864075,0.109719,0.760267,0.147603,0.369777,0.829438,0.779809,0.126164,0.934722,0.39497,0.00962019,0.448654,0.639994,0.545582,0.170586,0.656417,0.545919,0.0219583,0.152709,0.907497,0.590655,0.878568,0.717111,0.0879987,0.501528,0.837154,0.0428758,0.706183,0.623691,0.869027,0.018632,0.74491,0.0964962,0.757163,0.794233,0.374099,0.593158,0.152218,0.101328,0.51139,0.453863,0.157851,0.732352,0.437145,0.163228,0.953211,0.642125,0.551989,0.391871,0.311449,0.512885,0.0961295,0.711512,0.0280692,0.864512,0.155302,0.370029,0.749223,0.759416,0.48875,0.431979,0.0431002,0.73946,0.171522,0.882912,0.349763,0.988864,0.867313,0.174334,0.511936,0.336897,0.913045,0.59013,0.983737,0.61932,0.0358,0.0442337,0.666313,0.541012,0.872657,0.974966,0.362512,0.0751006,0.000825524,0.204301,0.0956445,0.955905,0.92912,0.991443,0.757356,0.601926,0.953497,0.998627,0.256256,0.495683,0.588597,0.118924,0.913849,0.355552,0.537953,0.682647,0.474532,0.59645,0.78623,0.110632,0.536381,0.481581,0.409941,0.332345,0.429084,0.0943407,0.659769,0.171702,0.490031,0.140779,0.379547,0.785685,0.384383,0.437482,0.0934091,0.00588208,0.843128,0.990165,0.624039,0.00627458,0.769062,0.610423,0.592897,0.0596855,0.101744,0.028281,0.285069,0.674085,0.251739,0.766544,0.233681,0.27604,0.0403312,0.0336896,0.894234,0.507621,0.286547,0.978952,0.0358426,0.988247,0.144903,0.210067,0.633075,0.686726,0.883745,0.796622,0.623556,0.41824,0.184318,0.213155,0.0657762,0.965941,0.129183,0.294793,0.761812,0.927444,0.235905,0.940005,0.189734,0.00235373,0.0331597,0.315574,0.423475,0.00335407,0.077334,0.910091,0.833,0.862968,0.908475,0.972293,0.720005,0.959434,0.0255111,0.00639945,0.160628,0.303941,0.892563,0.448954,0.400535,0.400448,0.151927,0.538372,0.480891,0.506828,0.915534,0.671382,0.260743,0.680696,0.533272,0.38634,0.495412,0.54882,0.311398,0.494188,0.161193,0.569953,0.711174,0.31634,0.946751,0.00121903,0.454207,0.6693,0.858532,0.216678,0.356486,0.323203,0.178589,0.784588,0.670569,0.585015,0.692071,0.497905,0.871462,0.346118,0.249426,0.047307,0.149883,0.503838,0.919658,0.0551174,0.40633,0.560846,0.247424,0.39638,0.469019,0.920771,0.419489,0.0551403,0.218555,0.416878,0.790227,0.66779,0.656498,0.5838,0.663864,0.293827,0.549127,0.184418,0.256202,0.679173,0.3795,0.347031,0.703494,0.825202,0.795001,0.405356,0.99519,0.408984,0.173701,0.90132,0.416575,0.348617,0.156111,0.610501,0.258239,0.882854,0.491407,0.877103,0.354154,0.139369,0.974225,0.907144,0.757506,0.34732,0.343362,0.429332,0.687215,0.757589,0.257628,0.364885,0.104527,0.520851,0.302626,0.122169,0.941278,0.909575,0.322559,0.0163073,0.844113,0.445004,0.861141,0.73182,0.807182,0.586086,0.294525,0.891106,0.401962,0.302908,0.745913,0.939524,0.399215,0.382928,0.688236,0.0273218,0.969363,0.942787,0.850096,0.75585,0.258654,0.0822752,0.317732,0.184415,0.653798,0.930602,0.559898,0.0664942,0.052035,0.0469331,0.690287,0.817241,0.917865,0.0565025,0.429148,0.905425,0.841083,0.7733,0.477351,0.148071,0.442125,0.825657,0.704611,0.228238,0.879454,0.843308,0.0532691,0.834013,0.73586,0.990071,0.292025,0.223422,0.408916,0.293892,0.764689,0.529191,0.269658,0.33599,0.377586,0.128587,0.965684,0.115922,0.536902,0.513774,0.512014,0.0553084,0.251587,0.849366,0.587338,0.788431,0.659391,0.877745,0.277453,0.542014,0.909827,0.817313,0.93912,0.742283,0.175166,0.168413,0.692504,0.00277257,0.21107,0.324401,0.399918,0.528218,0.533137,0.140736,0.91652,0.623008,0.766789,0.632352,0.592669,0.138847,0.828066,0.775304,0.119183,0.0700421,0.0129942,0.996471,0.131093,0.00861096,0.626029,0.936851,0.15427,0.851063,0.48831,0.961287,0.0495077,0.609335,0.224544,0.986787,0.960436,0.0124105,0.220345,0.422595,0.874947,0.600616,0.775949,0.460573,0.612931,0.430239,0.280399,0.0516207,0.694795,0.610185,0.288701,0.863607,0.565107,0.912442,0.134483,0.475052,0.791944,0.0139746,0.819756,0.339903,0.396285,0.499591,0.25587,0.723592,0.147239,0.231484,0.35664,0.0765164,0.658614,0.62759,0.0708096,0.406088,0.0964069,0.184874,0.768416,0.465083,0.161008,0.896805,0.487924,0.753866,0.393897,0.887349,0.48442,0.554169,0.0967517,0.551368,0.827986,0.407835,0.0895678,0.324036,0.527193,0.300776,0.129041,0.484495,0.695397,0.311569,0.724194,0.40241,0.888279,0.287592,0.311836,0.846965,0.918442,0.137441,0.765821,0.996641,0.14602,0.171569,0.644566,0.597848,0.793254,0.646251,0.0336581,0.515946,0.0882704,0.13928,0.360684,0.764486,0.0552002,0.229481,0.00787288,0.874443,0.328663,0.533795,0.297862,0.282034,0.329132,0.0109573,0.212851,0.918848,0.887212,0.520581,0.760577,0.965191,0.601559,0.744198,0.210166,0.973467,0.390438,0.311323,0.306392,0.833021,0.906859,0.877553,0.465496,0.0318406,0.29286,0.333322,0.436748,0.410287,0.628677,0.290219,0.629391,0.948682,0.222572,0.149066,0.854251,0.98938,0.586944,0.674611,0.0970985,0.47373,0.941701,0.146797,0.685358,0.281939,0.521199,0.526883,0.105259,0.834017,0.703579,0.856056,0.165274,0.599246,0.397588,0.643763,0.805588,0.220881,0.00834614,0.698134,0.482584,0.375843,0.770442,0.304281,0.938685,0.820587,0.339263,0.979109,0.229834,0.5547,0.410608,0.929052,0.942026,0.482642,0.0210806,0.144788,0.361043,0.786419,0.179681,0.838534,0.434254,0.182455,0.52934,0.786916,0.734754,0.479843,0.669984,0.590444,0.778885,0.413088,0.374219,0.0124701,0.313727,0.0565006,0.845452,0.964803,0.254594,0.494741,0.0331038,0.182241,0.200279,0.151743,0.359355,0.251901,0.0284383,0.693138,0.907506,0.557482,0.394104,0.250131,0.502127,0.569853,0.903707,0.780403,0.20411,0.0202846,0.241911,0.266085,0.702315,0.310682,0.258218,0.945824,0.542981,0.745185,0.177881,0.70261,0.346728,0.196253,0.260175,0.577689,0.74282,0.979704,0.933971,0.821982,0.812356,0.5661,0.513888,0.806912,0.787781,0.485003,0.659713,0.588555,0.98497,0.527839,0.906512,0.784971,0.853555,0.934997,0.887398,0.874736,0.783192,0.668388,0.70828,0.909125,0.940009,0.970114,0.364383,0.84007,0.71058,0.807541,0.280775,0.668987,0.751072,0.380714,0.435606,0.668802,0.40691,0.598072,0.0425661,0.0634509,0.235566,0.269741,0.159253,0.461352,0.517944,0.988348,0.256148,0.74539,0.384264,0.787035,0.330979,0.743744,0.349609,0.557993,0.456731,0.558337,0.102699,0.108473,0.943831,0.610534,0.128171,0.55023,0.0294823,0.108959,0.186829,0.832717,0.87271,0.595486,0.586194,0.506853,0.589533,0.313829,0.629627,0.196783,0.685001,0.0242748,0.940084,0.349895,0.256147,0.162109,0.0221332,0.477035,0.246122,0.386558,0.824377,0.713613,0.526387,0.0839128,0.845406,0.798991,0.950266,0.964603,0.180679,0.647453,0.136668,0.912772,0.161911,0.390281,0.665492,0.735132,0.385671,0.977078,0.320667,0.722613,0.682609,0.218038,0.735747,0.0800877,0.0387993,0.326963,0.226212,0.454611,0.760512,0.425779,0.97289,0.449157,0.221214,0.568563,0.948812,0.489636,0.333932,0.31335,0.387652,0.45257,0.593628,0.590887,0.738876,0.814612,0.909021,0.681658,0.640811,0.676421,0.794876,0.353705,0.998981,0.522903,0.945887,0.372182,0.71541,0.950227,0.131909,0.763967,0.44712,0.899265,0.887547,0.371604,0.485313,0.674254,0.064424,0.37702,0.182486,0.662592,0.670366,0.838613,0.496486,0.049307,0.675356,0.815768,0.30562,0.491301,0.234369,0.97021,0.551577,0.453541,0.878262,0.273678,0.853791,0.0557264,0.644101,0.666929,0.0989659,0.869525,0.194021,0.693906,0.772878,0.81623,0.382244,0.649692,0.24041,0.725935,0.591639,0.213389,0.336939,0.73591,0.5351,0.957823,0.920869,0.155174,0.317071,0.818387,0.756955,0.547882,0.877913,0.939844,0.846007,0.250914,0.953145,0.7585,0.164904,0.604076,0.107174,0.390169,0.795022,0.259327,0.0513765,0.522378,0.163676,0.336153,0.776243,0.857722,0.82373,0.880734,0.542316,0.93262,0.794948,0.783648,0.192923,0.230355,0.184867,0.235743,0.381763,0.597494,0.899757,0.0985242,0.92209,0.899121,0.830337,0.484449,0.0100345,0.232148,0.581778,0.661576,0.705606,0.112216,0.469513,0.579444,0.911108,0.471385,0.332622,0.0926512,0.500156,0.904944,0.261013,0.368173,0.520036,0.877857,0.876178,0.403994,0.0348982,0.507889,0.520694,0.35619,0.821584,0.675708,0.965064,0.318249,0.259103,0.248992,0.198723,0.0175,0.164068,0.945646,0.809917,|0.264078,0.154058,0.631979,0.979822,0.108039,0.975821,0.212032,0.578942,0.699007,0.671669,0.4616,0.926773,0.81788,0.0730994,0.699836,0.17374,0.695732,0.256599,0.299439,0.240551,0.814274,0.129234,0.62503,0.878908,0.40387,0.3293,0.0796847,0.748572,0.766995,0.418026,0.437614,0.14764,0.487569,0.394219,0.556639,0.24823,0.162482,0.619331,0.158336,0.905146,0.354442,0.400864,0.73132,0.717989,0.341445,0.599223,0.0949851,0.00845379,0.494008,0.679829,0.459234,0.651383,0.00325239,0.0337815,0.0999448,0.874935,0.642352,0.436375,0.00182259,0.881204,0.696702,0.225732,0.638683,0.608348,0.771497,0.0136445,0.598886,0.272043,0.69476,0.598679,0.242619,0.972461,0.154645,0.858008,0.00132543,0.365082,0.215042,0.652109,0.912981,0.218314,0.829438,0.885063,0.0823042,0.443465,0.881521,0.57726,0.480202,0.460281,0.833414,0.668662,0.710752,0.110148,0.610622,0.166416,0.282744,0.728278,0.26494,0.174628,0.544829,0.0771233,0.465374,0.687711,0.628924,0.428688,0.820691,0.980394,0.648878,0.352958,0.812469,0.142439,0.724746,0.862081,0.321939,0.850335,0.697937,0.583636,0.12445,0.221662,0.664608,0.922421,0.198832,0.970578,0.467537,0.785456,0.839895,0.379805,0.310835,0.755091,0.595784,0.991364,0.235556,0.27558,0.531316,0.495621,0.0202032,0.385628,0.0245235,0.647805,0.161356,0.804587,0.999137,0.438857,0.806796,0.851207,0.235742,0.478521,0.497641,0.672219,0.0574355,0.872528,0.736705,0.645604,0.456471,0.199949,0.644177,0.585605,0.175223,0.497829,0.606792,0.479776,0.932592,0.349107,0.629061,0.789244,0.678608,0.0467372,0.713584,0.199637,0.956886,0.428068,0.58711,0.738527,0.700334,0.833426,0.937224,0.796342,0.346362,0.256546,0.861954,0.281544,0.827629,0.798956,0.714507,0.578509,0.815932,0.582987,0.282748,0.332923,0.513223,0.366673,0.115878,0.0310087,0.871838,0.110725,0.875651,0.819681,0.204296,0.796543,0.483634,0.668628,0.59316,0.880181,0.339139,0.199266,0.65929,0.988088,0.55405,0.8372,0.493097,0.999547,0.00255811,0.0496921,0.94751,0.580039,0.907337,0.394303,0.369898,0.40276,0.588089,0.941791,0.567,0.548804,0.468318,0.0199782,0.148359,0.166359,0.299991,0.612189,0.636541,0.186292,0.327507,0.468056,0.329189,0.291818,0.383336,0.39934,0.048534,0.350892,0.0193253,0.205814,0.60797,0.73385,0.0147649,0.59267,0.844899,0.755642,0.159636,0.569528,0.445379,0.570004,0.978125,0.638924,0.713293,0.645897,0.0439739,0.182291,0.962469,0.676168,0.539484,0.47211,0.8789,0.468466,0.565644,0.139918,0.312777,0.816193,0.0232551,0.959343,0.419308,0.25557,0.991262,0.512311,0.579385,0.308292,0.22688,0.963136,0.0494682,0.121241,0.674948,0.631613,0.872778,0.659373,0.614684,0.456279,0.91203,0.211468,0.840208,0.370411,0.0641008,0.531864,0.685057,0.911757,0.285074,0.538642,0.971679,0.458102,0.432912,0.414488,0.302134,0.199373,0.845222,0.623456,0.161509,0.303354,0.0854364,0.915744,0.808151,0.00288844,0.800823,0.816182,0.00618583,0.212344,0.558988,0.0137642,0.38213,0.387218,0.421502,0.915574,0.870071,0.361223,0.73739,0.808536,0.565119,0.465586,0.554224,0.261646,0.396925,0.815626,0.0687666,0.690969,0.314496,0.896904,0.676157,0.523502,0.00644624,0.682283,0.0665058,0.238512,0.606201,0.475969,0.306479,0.76715,0.496936,0.487901,0.367047,0.706627,0.915497,0.96635,0.628842,0.0270539,0.0142868,0.815625,0.657926,0.762343,0.736354,0.954551,0.368668,0.844057,0.540388,0.895691,0.150404,0.014038,0.215107,0.53694,0.0581378,0.683825,0.921817,0.128503,0.956286,0.250495,0.985498,0.406331,0.235158,0.411872,0.041737,0.655153,0.0650873,0.404255,0.854273,0.341504,0.33386,0.186316,0.175536,0.613709,0.30614,0.193011,0.556813,0.700038,0.273496,0.592511,0.609201,0.260793,0.207193,0.515758,0.678522,0.597536,0.476824,0.0559821,0.0974695,0.98366,0.112524,0.848899,0.833047,0.20807,0.36996,0.380526,0.386767,0.652499,0.984922,0.104412,0.969905,0.145571,0.178279,0.404096,0.488967,0.806554,0.372572,0.122664,0.948804,0.61541,0.49646,0.545431,0.732977,0.457974,0.863828,0.446451,0.473654,0.148985,0.439694,0.934931,0.330744,0.511196,0.364063,0.415906,0.250158,0.670856,0.338838,0.64254,0.0228466,0.800214,0.236863,0.441902,0.777209,0.940799,0.2022,0.131341,0.0285566,0.588942,0.761982,0.606228,0.941922,0.704355,0.681537,0.083848,0.885413,0.132992,0.238106,0.840884,0.402962,0.020169,0.451673,0.782173,0.0964809,0.0204602,0.931308,0.624273,0.756751,0.850589,0.755257,0.300788,0.42336,0.645921,0.632091,0.659361,0.64812,0.323941,0.994369,0.023365,0.703893,0.922307,0.587969,0.681557,0.0582392,0.46852,0.857949,0.450471,0.205204,0.79927,0.079306,0.695922,0.284265,0.569612,0.0128142,0.30422,0.690018,0.240903,0.683847,0.482611,0.189166,0.650652,0.784602,0.231271,0.507612,0.536615,0.0315814,0.915709,0.808355,0.558755,0.318512,0.0386431,0.922282,0.84163,0.332628,0.643574,0.352157,0.158469,0.717812,0.602009,0.253494,0.37896,0.214626,0.226448,0.220937,0.285263,0.636298,0.724037,0.30073,0.834968,0.644375,0.275079,0.778312,0.37479,0.574733,0.734121,0.93841,0.820424,0.946927,0.944037,0.176773,0.018952,0.416184,0.851774,0.9056,0.442108,0.392041,0.800018,0.221438,0.630542,0.658783,0.895561,0.22638,0.0321253,0.998415,0.301925,0.373886,0.507681,0.216394,0.615898,0.749308,0.595539,0.0616992,0.42126,0.591206,0.784223,0.291269,0.897362,0.636098,0.636158,0.00519371,0.728785,0.695238,0.806036,0.303071,0.858678,0.732173,0.794998,0.548842,0.482146,0.967667,0.75853,0.906006,0.236241,0.257713,0.869825,0.955021,0.518464,0.651396,0.0795109,0.176742,0.799094,0.269366,0.419182,0.768143,0.557647,0.272672,0.357745,0.00236297,0.461927,0.260222,0.728522,0.463055,0.536653,0.0680692,0.855531,0.406054,0.377263,0.426884,0.153232,0.254159,0.654907,0.105936,0.333949,0.0269372,0.856173,0.659481,0.62694,0.70418,0.690176,0.589788,0.267858,0.574499,0.173435,0.460646,0.286767,0.365084,0.31536,0.309643,0.611756,0.606025,0.37739,0.937724,0.628221,0.248217,0.108272,0.716331,0.851825,0.689854,0.347194,0.798676,0.258586,0.165342,0.410841,0.461201,0.791642,0.59861,0.924307,0.664911,0.97456,0.878566,0.446031,0.606415,0.452755,0.339285,0.770866,0.409381,0.9797,0.63383,0.244527,0.167997,0.911651,0.0439448,0.6067,0.280168,0.6442,0.680131,0.711091,0.134644,0.346402,0.0556664,0.436564,0.0789294,0.375216,0.0946054,0.716547,0.208194,0.161305,0.986379,0.306294,0.985605,0.895422,0.0198259,0.292593,0.964822,0.290314,0.0758321,0.868877,0.0928017,0.4649,0.254263,0.218462,0.303688,0.765403,0.444988,0.729838,0.221804,0.0492191,0.5346,0.189864,0.218545,0.900136,0.688159,0.651154,0.484253,0.643594,0.875166,0.999588,0.0393836,0.230038,0.251612,0.637568,0.617501,0.38238,0.696933,0.0073818,0.619603,0.683975,0.811495,0.947014,0.516561,0.973776,0.739396,0.593257,0.594438,0.329195,0.958771,0.858344,0.18781,0.784151,0.205723,0.93264,0.467647,0.294499,0.0697877,0.375613,0.432469,0.59982,0.589463,0.874331,0.514015,0.167789,0.822387,0.667214,0.739893,0.586544,0.15821,0.105049,0.648139,0.236208,0.996284,0.775799,0.468894,0.88804,0.117433,0.828457,0.157516,0.597781,0.579778,0.691062,0.814664,0.208,0.307325,0.242512,0.175763,0.609798,0.739599,0.694688,0.338665,0.729703,0.285963,0.567341,0.559126,0.971647,0.00682843,0.886972,0.667447,0.621631,0.169343,0.426496,0.143156,0.715157,0.166416,0.562322,0.10387,0.053548,0.225676,0.989797,0.403161,0.266137,0.880244,0.379035,0.948514,0.608293,0.588267,0.173565,0.14864,0.477165,0.156614,0.104129,0.251915,0.396423,0.960717,0.50458,0.784775,0.116925,0.894263,0.795302,0.262234,0.638417,0.681726,0.930028,0.190669,0.830909,0.670356,0.579184,0.639616,0.0783709,0.343277,0.612837,0.307481,0.356627,0.484099,0.877319,0.864157,0.283492,0.651462,0.0138438,0.796449,0.0996892,0.194081,0.315843,0.856017,0.783895,0.993044,0.254211,0.35926,0.133413,0.163945,0.0811533,0.133925,0.0642416,0.210871,0.221907,0.0508378,0.399308,0.673058,0.524678,0.213246,0.159442,0.693492,0.949044,0.0218818,0.0908056,0.813992,0.634009,0.245276,0.162669,0.232569,0.978324,0.455318,0.0751399,0.589219,0.180983,0.507577,0.559931,0.791534,0.151781,0.873202,0.107294,0.910121,0.387787,0.47918,0.953073,0.451743,0.964067,0.853118,0.5261,0.486251,0.811433,0.287817,0.894201,0.930724,0.934974,0.621238,0.533334,0.849308,0.159571,0.551779,0.240877,0.790291,0.195632,0.53855,0.509818,0.172873,0.73035,0.0273915,0.966005,0.588415,0.184645,0.344311,0.718702,0.707093,0.0483903,0.0443813,0.237161,0.743288,0.0352198,0.969072,0.508861,0.510918,0.308608,0.670578,0.60695,0.724658,0.588616,0.410684,0.630698,0.248093,0.2459,0.47867,0.456971,0.194515,0.919318,0.757095,0.0512835,0.473624,0.962642,0.439874,0.76925,0.503832,0.863497,0.490643,0.984552,0.625555,0.889028,0.38965,0.486649,0.0458653,0.420135,0.744679,0.876329,0.660308,0.873904,0.331802,0.559676,0.794014,0.564173,0.189436,0.893447,0.625881,0.721262,0.334623,0.0961047,0.227999,0.0247706,0.998789,0.342807,0.138284,0.938748,0.782312,0.000887752,0.679389,0.25881,0.873598,0.0253903,0.733401,0.928649,0.75931,0.426838,0.201729,0.358087,0.717585,0.145944,0.935965,0.291247,0.990263,0.122826,0.459999,0.767016,0.310319,0.21018,0.0904601,0.407096,0.100159,0.472997,0.210516,0.588632,0.510828,0.169314,0.816109,0.955997,0.138894,0.206394,0.844949,0.379568,0.962499,0.119461,0.536581,0.544367,0.814806,0.932555,|0.531364,0.682728,0.443761,0.0293545,0.266139,0.456013,0.374308,0.501601,0.0195311,0.29588,0.354626,0.609544,0.973465,0.0482517,0.328628,0.063144,0.691869,0.874712,0.237927,0.0436985,0.839265,0.634723,0.886042,0.305295,0.496499,0.95259,0.706269,0.971989,0.573062,0.598132,0.354602,0.794914,0.0821248,0.243306,0.676126,0.155778,0.413078,0.314617,0.00191087,0.667262,0.715774,0.9252,0.0337268,0.604169,0.571085,0.185355,0.0981932,0.923132,0.700364,0.22758,0.0139206,0.306002,0.0901949,6.68764e-05,0.892366,0.876937,0.7531,0.557484,0.854641,0.406669,0.0398821,0.981052,0.27573,0.267666,0.450057,0.858845,0.721852,0.273233,0.348361,0.986477,0.874352,0.12573,0.265104,0.666829,0.479084,0.603498,0.465608,0.114737,0.669837,0.650269,0.705355,0.783604,0.555158,0.656942,0.479432,0.59035,0.10959,0.212594,0.298927,0.707165,0.0204527,0.560762,0.403453,0.00992656,0.996449,0.939719,0.753813,0.853245,0.262831,0.32833,0.046321,0.927814,0.136947,0.432648,0.339656,0.275264,0.491779,0.72349,0.979302,0.280364,0.701876,0.674778,0.598856,0.827022,0.867129,0.954036,0.30666,0.187465,0.133373,0.567924,0.00126326,0.825733,0.296815,0.608272,0.414249,0.251881,0.464254,0.696456,0.713139,0.135707,0.463195,0.758338,0.938248,0.76405,0.930063,0.756478,0.470103,0.754093,0.568274,0.682896,0.235649,0.387835,0.70107,0.201862,0.804651,0.434102,0.0936464,0.70309,0.514957,0.227482,0.42208,0.297977,0.16708,0.0220501,0.715915,0.927115,0.521717,0.695923,0.374864,0.102587,0.274516,0.336613,0.00498199,0.555071,0.189463,0.224585,0.646543,0.842826,0.499555,0.712126,0.947438,0.00656915,0.761598,0.930696,0.325672,0.0852795,0.503878,0.58734,0.621265,0.427245,0.241471,0.715131,0.316422,0.549735,0.616999,0.152655,0.213382,0.0618946,0.798535,0.179948,0.0448886,0.39941,0.950763,0.847202,0.471794,0.679047,0.598301,0.653377,0.723891,0.53643,0.925521,0.274904,0.032965,0.91603,0.776946,0.0888119,0.854866,0.483443,0.635579,0.811036,0.0155342,0.441656,0.753817,0.509344,0.685146,0.375335,0.151335,0.809184,0.257086,0.253867,0.824182,0.327242,0.264089,0.166969,0.273829,0.312579,0.175393,0.0271945,0.644768,0.247097,0.118021,0.589333,0.236089,0.192023,0.758987,0.626868,0.488383,0.792289,0.240132,0.0503979,0.480298,0.254627,0.139666,0.35175,0.17854,0.302194,0.690912,0.936243,0.240196,0.786917,0.539977,0.125713,0.0217566,0.861238,0.476175,0.373553,0.654004,0.430576,0.0909001,0.975479,0.264035,0.76573,0.873299,0.829073,0.0414535,0.474356,0.992912,0.37623,0.805396,0.371214,0.48878,0.197259,0.588757,0.540811,0.787143,0.789817,0.826689,0.357555,0.728957,0.0522443,0.289978,0.928673,0.703696,0.427004,0.323194,0.243946,0.501145,0.726218,0.781309,0.450606,0.1838,0.961518,0.708096,0.405229,0.601964,0.802426,0.380802,0.966813,0.640692,0.774061,0.112375,0.949512,0.763673,0.766184,0.317379,0.882864,0.989349,0.907683,0.335663,0.230063,0.623236,0.968653,0.598357,0.908183,0.201453,0.717097,0.948238,0.946211,0.112483,0.393554,0.496593,0.290745,0.117936,0.721445,0.743776,0.592256,0.0082556,0.704585,0.0056355,0.0891156,0.0914397,0.289298,0.19859,0.925308,0.0374489,0.0509744,0.114207,0.397783,0.427074,0.519206,0.0496833,0.584031,0.0863792,0.648423,0.115209,0.2317,0.641563,0.641083,0.792787,0.159158,0.315384,0.469709,0.969212,0.103812,0.838295,0.52913,0.250386,0.578702,0.880711,0.766589,0.515578,0.42672,0.130324,0.283162,0.529828,0.0613784,0.368812,0.114398,0.145567,0.606776,0.0396826,0.572258,0.883294,0.681467,0.80001,0.22165,0.0322703,0.712027,0.720536,0.813715,0.670442,0.721523,0.530135,0.292132,0.792707,0.428535,0.604139,0.57135,0.929207,0.880849,0.763978,0.331068,0.115927,0.0926464,0.757278,0.325403,0.911223,0.676545,0.0905015,0.674082,0.301698,0.381696,0.0043022,0.106367,0.801238,0.967587,0.434262,0.26092,0.728007,0.0960704,0.752908,0.718676,0.843824,0.0349368,0.552663,0.554073,0.726734,0.538015,0.45064,0.983153,0.689397,0.103892,0.136845,0.15466,0.325463,0.433873,0.615953,0.901159,0.614859,0.156396,0.652628,0.507838,0.357393,0.857073,0.508733,0.210429,0.347795,0.577205,0.9037,0.017432,0.761974,0.509473,0.880933,0.556296,0.672892,0.319295,0.807895,0.703097,0.302745,0.912025,0.941576,0.989246,0.707142,0.701352,0.526118,0.906288,0.0649178,0.118967,0.0972554,0.248958,0.33942,0.822506,0.232934,0.0676025,0.993574,0.362568,0.318489,0.0759413,0.116524,0.555766,0.468929,0.842741,0.910397,0.96947,0.326282,0.00038296,0.422377,0.875697,0.877607,0.144132,0.0352468,0.333291,0.890821,0.882726,0.222633,0.205514,0.428898,0.285883,0.199082,0.73673,0.309839,0.974142,0.46186,0.1639,0.940384,0.419132,0.326077,0.218248,0.4117,0.542799,0.536367,0.516081,0.919042,0.517201,0.878898,0.315662,0.121423,0.678208,0.142567,0.489347,0.811252,0.890464,0.25757,0.438407,0.487053,0.471191,0.793894,0.598144,0.636645,0.318213,0.19957,0.210267,0.744265,0.758707,0.891101,0.638645,0.425628,0.317956,0.945994,0.273815,0.472806,0.602678,0.392554,0.358922,0.414295,0.747667,0.868988,0.905584,0.51109,0.978477,0.116274,0.877142,0.250517,0.874078,0.463221,0.759702,0.341275,0.884817,0.14038,0.0456532,0.10709,0.115595,0.115076,0.589109,0.665142,0.255552,0.141756,0.818749,0.121859,0.939713,0.389144,0.51024,0.437913,0.693053,0.835293,0.193994,0.929069,0.305611,0.273517,0.986095,0.445343,0.617656,0.554911,0.27389,0.67959,0.468357,0.958837,0.664991,0.295108,0.00904799,0.868929,0.383002,0.786256,0.940663,0.134631,0.319528,0.237025,0.017621,0.00958806,0.777687,0.233075,0.986308,0.945198,0.636225,0.473624,0.76289,0.411081,0.297096,0.896275,0.816987,0.982911,0.571681,0.256147,0.861131,0.927493,0.74742,0.432516,0.421065,0.779077,0.802549,0.0901896,0.64031,0.613216,0.731513,0.99713,0.750681,0.45724,0.331862,0.70784,0.701314,0.863617,0.578287,0.199025,0.271143,0.474981,0.370355,0.1824,0.648284,0.955605,0.595011,0.0662066,0.874564,0.420797,0.153906,0.105646,0.635188,0.957894,0.952101,0.432779,0.312052,0.825041,0.796914,0.290093,0.417155,0.681512,0.622064,0.543641,0.912264,0.739833,0.0697248,0.510278,0.280792,0.764107,0.431541,0.381632,0.896211,0.958827,0.283314,0.618615,0.918545,0.507476,0.0550835,0.781398,0.651733,0.016576,0.476504,0.912772,0.38899,0.309257,0.728661,0.829801,0.201177,0.0101609,0.489895,0.0151592,0.165921,0.504449,0.824059,0.28992,0.860813,0.532866,0.892473,0.523622,0.751998,0.522716,0.129394,0.423903,0.274605,0.48308,0.816588,0.58733,0.902371,0.694556,0.974618,0.126669,0.302561,0.739565,0.211627,0.0107453,0.341465,0.53101,0.553289,0.802817,0.488788,0.174135,0.106412,0.0121071,0.829795,0.593141,0.366207,0.818704,0.487633,0.483204,0.465093,0.0845544,0.421662,0.0427359,0.566144,0.411393,0.727584,0.129414,0.863136,0.878817,0.645785,0.236672,0.108158,0.734836,0.0829186,0.1101,0.564016,0.960206,0.523742,0.916053,0.962692,0.0814679,0.00168461,0.629639,0.761671,0.936339,0.528907,0.689467,0.101548,0.515905,0.207148,0.0499613,0.903005,0.279955,0.922214,0.645052,0.596967,0.307488,0.656113,0.184965,0.876496,0.77183,0.738568,0.605779,0.431374,0.834857,0.237738,0.7783,0.813916,0.647401,0.151661,0.903033,0.114077,0.266055,0.141697,0.651833,0.734251,0.836384,0.191963,0.997959,0.285269,0.763408,0.481735,0.337864,0.943998,0.206727,0.696858,0.789965,0.0348142,0.068721,0.240759,0.18423,0.765654,0.409199,0.514235,0.676509,0.111276,0.756153,0.310386,0.94347,0.274761,0.919631,0.433202,0.877274,0.98505,0.318805,0.907529,0.40923,0.399856,0.234718,0.954841,0.941844,0.523719,0.0340305,0.763105,0.387051,0.250982,0.639288,0.505497,0.873887,0.972419,0.373148,0.611453,0.636293,0.922735,0.527693,0.750073,0.771288,0.855223,0.317078,0.404349,0.385301,0.983945,0.594202,0.611805,0.483705,0.0653229,0.747851,0.750714,0.201264,0.732851,0.23538,0.542081,0.676479,0.335194,0.361736,0.900883,0.516522,0.403447,0.708981,0.0254111,0.633339,0.454864,0.0170409,0.748493,0.880651,0.356933,0.987162,0.363865,0.233696,0.929425,0.503036,0.46162,0.0813927,0.937593,0.286441,0.983227,0.576745,0.110392,0.798236,0.684779,0.242693,0.554872,0.436242,0.782155,0.473286,0.899076,0.875054,0.27512,0.745413,0.100462,0.48517,0.977158,0.180858,0.0994296,0.930294,0.167188,0.780356,0.828223,0.0636962,0.763892,0.685974,0.0105945,0.091494,0.539549,0.453144,0.399924,0.351828,0.415933,0.990696,0.663756,0.767958,0.638036,0.193954,0.640075,0.925388,0.208144,0.0652366,0.212533,0.016548,0.548326,0.257536,0.383292,0.47429,0.250578,0.181286,0.836565,0.260263,0.227768,0.600092,0.699248,0.265258,0.908803,0.0164137,0.594702,0.182626,0.260583,0.437326,0.967893,0.096916,0.528739,0.443606,0.37063,0.451932,0.253909,0.924844,0.294598,0.62631,0.239823,0.348668,0.00346386,0.708564,0.865937,0.512066,0.662299,0.337342,0.987579,0.0824429,0.871507,0.597531,0.286608,0.60973,0.433212,0.176734,0.793147,0.292344,0.55743,0.758521,0.121948,0.49116,0.0756625,0.199256,0.932263,0.766493,0.230959,0.277525,0.989252,0.789518,0.658337,0.705413,0.76623,0.34318,0.710959,0.195837,0.356772,0.312482,0.518343,0.993788,0.868836,0.529434,0.515585,0.468266,0.739367,0.267251,0.346314,0.58937,0.793474,0.469454,0.658604,0.380367,0.616716,0.582049,0.685834,0.277803,0.851653,0.134915,0.211799,0.28255,0.0323032,0.0379807,0.885438,0.734546,0.0743247,0.128597,0.848243,0.784986,0.750819,|0.497237,0.798088,0.720663,0.0160604,0.181841,0.50874,0.405218,0.0590482,0.805998,0.0877276,0.630517,0.922981,0.796892,0.851738,0.350873,0.839737,0.188553,0.126709,0.629345,0.667688,0.19282,0.441869,0.881116,0.0557434,0.912817,0.750088,0.885429,0.409631,0.319651,0.161765,0.844415,0.672993,0.782232,0.85794,0.279025,0.320491,0.723598,0.847206,0.439558,0.497258,0.305212,0.577599,0.165686,0.576122,0.199407,0.292125,0.902526,0.546108,0.158272,0.0512193,0.410072,0.11601,0.299761,0.827648,0.978783,0.176536,0.913018,0.977627,0.111805,0.146897,0.546471,0.624863,0.962249,0.329725,0.524532,0.00161344,0.541146,0.272818,0.768667,0.242976,0.840943,0.214809,0.507594,0.594964,0.480281,0.839542,0.117515,0.541385,0.745652,0.84031,0.958018,0.0421206,0.175873,0.551449,0.0318958,0.565976,0.904307,0.216435,0.215946,0.988135,0.716539,0.730283,0.430016,0.631594,0.816413,0.849061,0.50274,0.242048,0.948372,0.495729,0.772261,0.954063,0.965415,0.204653,0.00366551,0.178837,0.165556,0.538744,0.918834,0.218551,0.949554,0.146451,0.207975,0.0438237,0.983687,0.14713,0.570684,0.217275,0.195097,0.0833701,0.443503,0.0428877,0.487867,0.190027,0.337921,0.876693,0.526914,0.467692,0.479442,0.306916,0.167477,0.0785299,0.994021,0.405885,0.069315,0.887142,0.10038,0.594183,0.247303,0.78593,0.733476,0.462359,0.903118,0.652585,0.0790091,0.609444,0.315045,0.582338,0.631928,0.703539,0.834799,0.722429,0.117016,0.306987,0.137528,0.841566,0.716073,0.736318,0.569651,0.87232,0.661385,0.732716,0.654048,0.319258,0.504667,0.372895,0.88087,0.876903,0.462992,0.501768,0.820076,0.456187,0.65711,0.573341,0.502932,0.429556,0.654077,0.834617,0.886428,0.576405,0.921658,0.144534,0.114121,0.569608,0.640436,0.32793,0.77479,0.779086,0.0560644,0.567898,0.312583,0.13179,0.543315,0.233123,0.918879,0.221677,0.991274,0.482497,0.275585,0.531005,0.753649,0.448096,0.923864,0.470611,0.245934,0.417789,0.955785,0.219893,0.0768496,0.824499,0.43449,0.64808,0.504055,0.733927,0.931019,0.0809865,0.452173,0.750074,0.561183,0.859834,0.366599,0.883602,0.537268,0.582496,0.26727,0.100232,0.369155,0.116022,0.784277,0.47722,0.577767,0.615414,0.550278,0.460235,0.731223,0.834765,0.90997,0.786548,0.42862,0.68469,0.182145,0.632118,0.462332,0.291673,0.828036,0.740885,0.42911,0.0725775,0.175404,0.0907024,0.447984,0.900274,0.221717,0.390148,0.308864,0.256421,0.918325,0.0138462,0.449686,0.973177,0.724282,0.853894,0.732171,0.847085,0.279103,0.855486,0.806771,0.850573,0.698372,0.96503,0.394059,0.146192,0.512444,0.268743,0.808581,0.860805,0.124451,0.177285,0.880312,0.450857,0.0365488,0.0281395,0.881482,0.455081,0.883874,0.0541523,0.411801,0.00840664,0.00550604,0.0767025,0.791606,0.757649,0.442685,0.130647,0.585237,0.610664,0.737525,0.996453,0.736401,0.99218,0.0291273,0.28238,0.127341,0.541113,0.665042,0.837696,0.763881,0.890162,0.607061,0.587275,0.491086,0.0464743,0.531635,0.569899,0.464172,0.757756,0.354314,0.602593,0.832972,0.14013,0.464313,0.886742,0.0834913,0.568557,0.690105,0.824463,0.0545214,0.966072,0.742372,0.789972,0.814601,0.0502204,0.555896,0.864828,0.797262,0.290263,0.491469,0.086592,0.608148,0.445725,0.516339,0.73897,0.910142,0.549678,0.77834,0.343991,0.690751,0.655905,0.484594,0.495384,0.103494,0.522429,0.329255,0.989061,0.792465,0.65171,0.137153,0.577803,0.109557,0.856502,0.319055,0.333744,0.583282,0.708061,0.970917,0.753976,0.889432,0.258518,0.762006,0.959528,0.831267,0.721804,0.624406,0.71499,0.710375,0.803095,0.500848,0.90186,0.182461,0.578287,0.719946,0.160792,0.0217336,0.621975,0.094354,0.517561,0.588898,0.414616,0.377066,0.730964,0.483018,0.940174,0.379002,0.381364,0.853942,0.802503,0.340477,0.33513,0.456669,0.205438,0.192288,0.0544132,0.124115,0.3394,0.728018,0.37272,0.68137,0.595712,0.456756,0.341487,0.406815,0.975247,0.535791,0.821779,0.206417,0.0223852,0.335842,0.642818,0.118163,0.462492,0.434456,0.808458,0.919527,0.740926,0.240779,0.287634,0.560205,0.011739,0.352138,0.090117,0.167256,0.273297,0.662007,0.736883,0.711361,0.651637,0.521679,0.155676,0.761892,0.920735,0.479743,0.665946,0.0978234,0.940116,0.956904,0.0921206,0.724557,0.550816,0.555209,0.448865,0.48304,0.411595,0.401163,0.684432,0.250082,0.560711,0.822438,0.174121,0.293903,0.13485,0.065163,0.67906,0.984807,0.790611,0.168165,0.368346,0.597997,0.67798,0.496876,0.431593,0.550679,0.832896,0.983884,0.560781,0.893004,0.147075,0.172615,0.428957,0.215758,0.377666,0.653915,0.499275,0.202198,0.176258,0.201963,0.737099,0.989508,0.934723,0.646261,0.184369,0.595358,0.514239,0.668107,0.745802,0.915626,0.205064,0.948803,0.178955,0.929218,0.684995,0.656594,0.560125,0.195152,0.919152,0.403487,0.548029,0.0102461,0.457187,0.330666,0.222281,0.107295,0.176244,0.159659,0.590161,0.270236,0.04826,0.0783385,0.709339,0.0519772,0.487601,0.53087,0.419947,0.29881,0.609108,0.763594,0.377861,0.628896,0.111207,0.22339,0.344618,0.929852,0.406018,0.892457,0.0556831,0.376692,0.128581,0.595194,0.398793,0.234869,0.556751,0.283097,0.204131,0.306257,0.3122,0.753199,0.827749,0.128823,0.660096,0.53764,0.796736,0.301417,0.311077,0.2342,0.0938061,0.386511,0.434471,0.968272,0.731726,0.137715,0.693426,0.305791,0.754907,0.803423,0.253561,0.714332,0.320339,0.895777,0.030409,0.80898,0.476675,0.537235,0.809517,0.0712824,0.0861203,0.744863,0.634883,0.724987,0.424414,0.214556,0.918035,0.0290813,0.930652,0.240654,0.782374,0.848568,0.0643539,0.0332236,0.722613,0.510199,0.146062,0.0430869,0.468442,0.0752756,0.343641,0.713578,0.628339,0.778514,0.301376,0.432228,0.0547095,0.162332,0.745021,0.062153,0.886286,0.485025,0.315827,0.338714,0.194152,0.852651,0.029255,0.958084,0.47983,0.0996527,0.0596165,0.0747876,0.588132,0.878793,0.712029,0.592051,0.51389,0.884844,0.277155,0.39774,0.973597,0.886423,0.0418671,0.209763,0.896298,0.9034,0.373141,0.408498,0.706908,0.894597,0.9753,0.574977,0.934805,0.979362,0.87282,0.327318,0.38776,0.310933,0.984317,0.114729,0.984995,0.329703,0.433353,0.816942,0.389406,0.958755,0.631512,0.931904,0.552063,0.45824,0.456664,0.0029313,0.10229,0.596261,0.945328,0.432497,0.909166,0.69655,0.479651,0.511301,0.588429,0.0297604,0.513313,0.337692,0.120664,0.824027,0.239032,0.254995,0.370412,0.92861,0.555272,0.78244,0.0078451,0.969103,0.571575,0.762673,0.402633,0.288006,0.728844,0.503192,0.669596,0.778755,0.485242,0.0142032,0.475272,0.521006,0.344959,0.546901,0.367714,0.932868,0.452975,0.853384,0.145033,0.451135,0.0124177,0.661059,0.384151,0.889565,0.932686,0.720135,0.748214,0.645777,0.281347,0.318885,0.602189,0.143046,0.79868,0.922336,0.14767,0.797213,0.686642,0.908102,0.384206,0.789981,0.235726,0.499895,0.840895,0.130469,0.740124,0.869353,0.598032,0.694986,0.374373,0.992373,0.488161,0.58598,0.810432,0.379028,0.468529,0.336036,0.28034,0.648277,0.288272,0.546431,0.770113,0.069356,0.73044,0.229339,0.55,0.0441718,0.177615,0.342766,0.894757,0.805195,0.642289,0.860501,0.941361,0.726675,0.64911,0.642067,0.840177,0.793944,0.719427,0.359586,0.488191,0.788336,0.998898,0.882581,0.00966734,0.200562,0.924075,0.862227,0.674003,0.355977,0.139477,0.219143,0.698922,0.461061,0.147622,0.116669,0.508459,0.742425,0.564421,0.931901,0.295034,0.249321,0.692961,0.395698,0.229865,0.0716287,0.961257,0.421587,0.920539,0.262614,0.743626,0.805417,0.142423,0.752497,0.361401,0.758507,0.875408,0.153574,0.267746,0.337873,0.663079,0.0703206,0.131979,0.0733398,0.626643,0.381875,0.698952,0.314109,0.0919685,0.269382,0.839832,0.474718,0.688353,0.459078,0.724561,0.183323,0.63803,0.340126,0.186023,0.359316,0.978462,0.991758,0.146078,0.224527,0.612297,0.683296,0.00973064,0.467691,0.651781,0.308466,0.707465,0.0697332,0.811343,0.167272,0.954512,0.450816,0.831303,0.0813768,0.880555,0.806972,0.465302,0.00314873,0.607323,0.777206,0.251979,0.871603,0.72744,0.28035,0.985127,0.324274,0.0600545,0.420269,0.825075,0.775099,0.0847701,0.220957,0.566924,0.556658,0.138357,0.854212,0.00489634,0.235575,0.716369,0.304173,0.914651,0.116776,0.888013,0.995192,0.59765,0.674686,0.876662,0.536201,0.873603,0.266101,0.14154,0.351678,0.417806,0.0956411,0.921915,0.0242145,0.393499,0.704316,0.530145,0.962303,0.61437,0.604432,0.467474,0.724187,0.849905,0.533297,0.467662,0.0317309,0.826406,0.132668,0.194955,0.507902,0.717218,0.785607,0.560184,0.419863,0.343472,0.250068,0.842979,0.296984,0.216826,0.182093,0.683897,0.0392473,0.6811,0.896703,0.397615,0.832992,0.347851,0.528185,0.847514,0.316914,0.426588,0.0728096,0.423367,0.379371,0.445241,0.406313,0.279186,0.314521,0.0785275,0.247558,0.751177,0.0111253,0.685271,0.913588,0.680436,0.718662,0.982329,0.0481937,0.0462449,0.114663,0.110558,0.77658,0.851849,0.894984,0.239213,0.822132,0.0370467,0.576887,0.0393366,0.0971323,0.0475445,0.730405,0.741013,0.170028,0.566879,0.20949,0.0431842,0.607601,0.644948,0.072174,0.56904,0.68719,0.434089,0.211951,0.632582,0.598881,0.399446,0.230046,0.612837,0.952798,0.967482,0.783717,0.612589,0.862948,0.475654,0.0482349,0.309958,0.978727,0.308979,0.343436,0.584706,0.0603071,0.196816,0.308439,0.313221,0.32182,0.126278,0.346323,0.204277,0.366539,0.229609,0.444675,0.394066,0.806166,0.769416,0.231329,0.773168,0.453153,0.818724,0.0212218,0.873317,0.724327,0.973324,0.810482,0.38829,0.154447,0.977242,|0.805331,0.68264,0.930136,0.125843,0.450732,0.240606,0.252019,0.597564,0.858128,0.015807,0.92053,0.585928,0.659447,0.632204,0.381763,0.929718,0.579963,0.994288,0.44087,0.772019,0.533981,0.959725,0.285625,0.815116,0.518153,0.416369,0.81398,0.800563,9.04799e-05,0.419131,0.0496574,0.599601,0.0714142,0.523494,0.834853,0.367763,0.950676,0.549716,0.799313,0.730313,0.217126,0.157734,0.716169,0.174813,0.613822,0.430864,0.241671,0.148367,0.716999,0.605319,0.82987,0.415303,0.684267,0.333488,0.993583,0.657403,0.444217,0.56602,0.125035,0.193232,0.387414,0.0533396,0.499346,0.520935,0.841304,0.0649093,0.21824,0.300481,0.105205,0.0630333,0.370656,0.452778,0.557812,0.560061,0.281119,0.429648,0.228897,0.982028,0.29307,0.661939,0.646297,0.802017,0.775763,0.0756206,0.472178,0.0584145,0.990417,0.628454,0.363764,0.684225,0.793999,0.963852,0.84992,0.87143,0.297184,0.137751,0.495809,0.0998783,0.0626415,0.477118,0.816138,0.0950564,0.239744,0.0985895,0.0305321,0.543426,0.613097,0.756609,0.348073,0.73299,0.0194144,0.500659,0.616846,0.208431,0.459734,0.490584,0.90691,0.333783,0.835905,0.527544,0.68712,0.74081,0.783728,0.989387,0.868875,0.326278,0.0580221,0.312993,0.224246,0.377995,0.243058,0.578056,0.485749,0.124395,0.404645,0.960342,0.174969,0.362413,0.495554,0.912023,0.332519,0.242289,0.420393,0.581657,0.246755,0.61828,0.204368,0.117693,0.461467,0.580197,0.467333,0.609044,0.64548,0.102593,0.389948,0.522363,0.993717,0.514759,0.433886,0.639931,0.97756,0.0815018,0.622437,0.404478,0.992073,0.643536,0.544712,0.614772,0.681764,0.292785,0.172983,0.918753,0.960792,0.550114,0.499877,0.739113,0.639798,0.0907239,0.901875,0.550001,0.29613,0.580922,0.508356,0.935996,0.413803,0.578236,0.211933,0.645672,0.244407,0.588337,0.453446,0.429374,0.997055,0.705687,0.226355,0.129306,0.419099,0.428671,0.155678,0.327818,0.321723,0.885414,0.724122,0.564276,0.0892957,0.258581,0.00720733,0.310309,0.19661,0.635896,0.212004,0.0751086,0.122085,0.558634,0.0969718,0.688509,0.079509,0.999654,0.826309,0.155784,0.367224,0.718084,0.294149,0.634313,0.210413,0.0548817,0.646099,0.0305851,0.460096,0.633493,0.938273,0.132813,0.293632,0.177694,0.309592,0.284049,0.662345,0.189677,0.416141,0.962154,0.153474,0.526721,0.81409,0.121018,0.869484,0.884654,0.300381,0.275064,0.655788,0.0792873,0.298961,0.250615,0.642771,0.908667,0.187944,0.0104783,0.68401,0.674797,0.0587519,0.35009,0.159289,0.405748,0.141976,0.924213,0.165855,0.516405,0.175288,0.484512,0.920153,0.411451,0.220274,0.604895,0.237623,0.0356017,0.147503,0.770933,0.162204,0.821164,0.686333,0.940014,0.258854,0.704545,0.0144556,0.341396,0.81986,0.76395,0.875668,0.000116885,0.744822,0.444021,0.920075,0.88023,0.911642,0.904467,0.952857,0.500329,0.830053,0.284966,0.710992,0.528442,0.181325,0.941828,0.266967,0.791585,0.377784,0.567444,0.438471,0.080814,0.016008,0.457659,0.125891,0.746631,0.678997,0.295631,0.701254,0.68829,0.408986,0.210179,0.171994,0.77749,0.91535,0.171286,0.287139,0.636691,0.0279631,0.802957,0.61644,0.154653,0.148919,0.0833603,0.549908,0.360457,0.515407,0.819553,0.683854,0.537762,0.896435,0.346351,0.731167,0.307063,0.714281,0.205925,0.479502,0.346938,0.628998,0.59596,0.734291,0.943044,0.203877,0.919971,0.666045,0.444028,0.441967,0.489886,0.958391,0.778803,0.0270168,0.115657,0.433782,0.686728,0.448581,0.219799,0.539584,0.122895,0.661247,0.876743,0.328264,0.739584,0.877988,0.654075,0.55422,0.747746,0.319474,0.564863,0.838872,0.14798,0.233582,0.687854,0.673472,0.709155,0.413858,0.602048,0.953504,0.230764,0.63258,0.842441,0.981934,0.648597,0.157952,0.377894,0.935613,0.277513,0.490448,0.845676,0.915004,0.756694,0.549913,0.477169,0.00850457,0.0507163,0.645576,0.704471,0.833609,0.486672,0.67622,0.456326,0.363425,0.265806,0.274541,0.432541,0.643864,0.821397,0.792469,0.58886,0.570237,0.63567,0.0345926,0.451056,0.899526,0.657718,0.555763,0.488788,0.153516,0.0241974,0.882081,0.775162,0.351924,0.171019,0.69806,0.657603,0.436667,0.62851,0.188071,0.765867,0.669486,0.324569,0.535924,0.486578,0.796183,0.591652,0.354784,0.169125,0.142805,0.568134,0.133285,0.458069,0.014957,0.563843,0.860672,0.669044,0.904984,0.903444,0.29173,0.887295,0.806664,0.635694,0.282221,0.136417,0.154581,0.175713,0.36558,0.019181,0.550538,0.125,0.579845,0.822845,0.92181,0.0918349,0.474349,0.772178,0.790251,0.416762,0.208652,0.204417,0.796663,0.643956,0.838171,0.636655,0.626027,0.322841,0.951723,0.559149,0.95396,0.714135,0.887151,0.871919,0.94602,0.721611,0.847491,0.837147,0.216848,0.437651,0.666384,0.672172,0.877319,0.25951,0.927136,0.971988,0.646531,0.494875,0.890019,0.516377,0.170126,0.570262,0.957079,0.530016,0.850937,0.177384,0.34556,0.296572,0.63716,0.369381,0.505425,0.841631,0.239886,0.569221,0.951687,0.174685,0.719918,0.203085,0.647883,0.747644,0.380023,0.129905,0.0964233,0.803664,0.771241,0.308818,0.327381,0.975224,0.00483418,0.186337,0.579245,0.385717,0.805997,0.415835,0.543076,0.392456,0.283841,0.870972,0.405188,0.627855,0.151347,0.423383,0.465408,0.491655,0.428857,0.974852,0.843026,0.559982,0.426237,0.595602,0.20873,0.446329,0.341891,0.082256,0.337999,0.522227,0.288186,0.940788,0.632499,0.407066,0.997206,0.319193,0.894695,0.397407,0.0749266,0.559054,0.286792,0.899417,0.627347,0.552369,0.600339,0.417647,0.698087,0.299727,0.810575,0.0574669,0.965074,0.0952461,0.406058,0.962629,0.496551,0.880353,0.512342,0.531495,0.721465,0.113956,0.188183,0.219067,0.547344,0.217254,0.304222,0.914492,0.573911,0.631195,0.588907,0.998689,0.381967,0.462619,0.455644,0.704567,0.00138259,0.0403187,0.10849,0.337125,0.807245,0.846854,0.713247,0.325791,0.470739,0.820967,0.0430874,0.814331,0.578568,0.962559,0.617696,0.219568,0.134724,0.531033,0.171229,0.360449,0.560642,0.409689,0.68684,0.391101,0.0947908,0.0715283,0.572411,0.692074,0.140208,0.155198,0.676051,0.784731,0.738922,0.364762,0.935812,0.27306,0.642979,0.183575,0.128895,0.178419,0.14678,0.0619092,0.527036,0.533957,0.996911,0.0434168,0.608786,0.358224,0.656923,0.443053,0.813034,0.762158,0.44612,0.395297,0.247132,0.330938,0.126879,0.518359,0.257124,0.582023,0.545928,0.695889,0.064416,0.528788,0.962295,0.285836,0.563252,0.587589,0.738393,0.449179,0.691539,0.561365,0.184526,0.479093,0.594441,0.993011,0.663743,0.404955,0.456103,0.713555,0.831963,0.816589,0.0315429,0.902912,0.495398,0.932063,0.429923,0.136315,0.615328,0.204248,0.717357,0.496808,0.814865,0.624829,0.624115,0.548168,0.393432,0.625172,0.195277,0.242324,0.285083,0.869132,0.780663,0.319553,0.0790914,0.550652,0.706855,0.753349,0.848985,0.642897,0.304154,0.207568,0.970717,0.156588,0.357488,0.501932,0.199793,0.900174,0.683347,0.328071,0.541042,0.740977,0.797796,0.300822,0.685127,0.194125,0.530456,0.771943,0.751997,0.0546173,0.700472,0.134996,0.734759,0.728653,0.941367,0.805668,0.976895,0.125718,0.866423,0.697112,0.0577763,0.967235,0.467089,0.318447,0.0690239,0.370054,0.569212,0.670952,0.293532,0.0154285,0.309291,0.0347843,0.990858,0.581535,0.0902148,0.0792191,0.95551,0.918928,0.618175,0.553282,0.935516,0.752452,0.47095,0.924023,0.562626,0.0759568,0.836191,0.852669,0.145939,0.0423414,0.975824,0.569448,0.654667,0.0733051,0.920092,0.573475,0.396629,0.697986,0.572292,0.674481,0.164252,0.814384,0.405683,0.403014,0.925314,0.690298,0.845952,0.95365,0.754159,0.197886,0.980481,0.610969,0.521699,0.00905633,0.296267,0.17775,0.700761,0.42907,0.594882,0.0666988,0.689307,0.550249,0.830133,0.688389,0.106428,0.569245,0.807024,0.477368,0.603223,0.943118,0.424842,0.48139,0.589166,0.850842,0.792423,0.415334,0.66086,0.169234,0.168848,0.200637,0.992184,0.977112,0.0632958,0.138748,0.331243,0.373185,0.0354917,0.000270844,0.998739,0.276709,0.0553564,0.972325,0.164676,0.738872,0.745084,0.778602,0.578297,0.8413,0.786211,0.409311,0.53364,0.266392,0.0445425,0.158748,0.891156,0.357336,0.460318,0.734427,0.140294,0.931997,0.974394,0.918733,0.905811,0.7558,0.222553,0.840953,0.296261,0.78995,0.638544,0.65985,0.297013,0.794151,0.182287,0.0633212,0.679116,0.782159,0.718265,0.887171,0.571421,0.0976526,0.255937,0.832172,0.257703,0.845501,0.556843,0.0051223,0.483014,0.916332,0.223282,0.57154,0.518074,0.506836,0.406955,0.360976,0.761118,0.756283,0.85174,0.0661121,0.710143,0.863438,0.383814,0.0591962,0.937041,0.255072,0.69916,0.173199,0.181842,0.429004,0.116368,0.565405,0.753376,0.415106,0.210398,0.671947,0.642716,0.457845,0.739834,0.94426,0.149149,0.826635,0.969198,0.348721,0.712838,0.696353,0.318202,0.249462,0.840675,0.498344,0.935888,0.665774,0.470883,0.996877,0.194334,0.453126,0.385876,0.582153,0.927713,0.740891,0.798679,0.198574,0.234656,0.841278,0.725916,0.833815,0.851217,0.646641,0.0675255,0.503063,0.926319,0.235822,0.112349,0.275338,0.0198249,0.180391,0.281654,0.651218,0.78417,0.63588,0.691701,0.688072,0.611778,0.487104,0.522953,0.444797,0.622853,0.837241,0.231228,0.962724,0.556387,0.63971,0.539759,0.138554,0.291061,0.286282,0.519803,0.118844,0.172938,0.517907,0.713701,0.661754,0.856249,0.884229,0.888844,0.583733,0.560139,0.36208,0.762923,0.857361,0.477709,0.711589,0.544567,0.190922,0.671327,0.0876674,0.159536,0.7494,0.394083,0.873035,0.533592,0.479248,0.265683,0.759141,0.26616,0.888366,0.267095,0.2722,0.93789,0.317616,|0.125218,0.328528,0.984183,0.443258,0.33001,0.187518,0.881096,0.641301,0.520793,0.0568082,0.22439,0.92835,0.841206,0.995634,0.341674,0.0808629,0.517246,0.848281,0.420158,0.561179,0.755837,0.240392,0.632289,0.4228,0.614773,0.336093,0.841606,0.69117,0.316558,0.699104,0.124881,0.728163,0.486905,0.86049,0.462098,0.871089,0.199229,0.435336,0.00227505,0.330923,0.317087,0.543025,0.719,0.495363,0.957415,0.365477,0.748403,0.0674807,0.937733,0.191642,0.826725,0.674633,0.785982,0.975677,0.328069,0.464936,0.232324,0.111271,0.159575,0.403857,0.946809,0.313373,0.805898,0.212395,0.324209,0.659345,0.901638,0.9787,0.0642959,0.127999,0.276797,0.898334,0.491929,0.488853,0.731796,0.0746583,0.465018,0.151871,0.287832,0.722484,0.664217,0.822689,0.475505,0.425232,0.0965761,0.948201,0.263735,0.487109,0.115011,0.909214,0.411855,0.315776,0.226537,0.684383,0.810949,0.942052,0.575738,0.661524,0.322911,0.205397,0.515514,0.052103,0.940317,0.039802,0.185394,0.813482,0.0035758,0.351925,0.253476,0.623399,0.472634,0.25256,0.979243,0.839983,0.833346,0.353447,0.401216,0.314629,0.735303,0.89002,0.253994,0.678557,0.0118868,0.498676,0.0924615,0.402895,0.692065,0.113116,0.941673,0.870013,0.925418,0.651683,0.695929,0.21788,0.167386,0.220972,0.32764,0.771271,0.768329,0.630442,0.259846,0.387376,0.199893,0.85226,0.977848,0.533028,0.871728,0.900391,0.544016,0.675341,0.466813,0.925089,0.237692,0.334019,0.962886,0.0871242,0.136639,0.0440428,0.962428,0.653142,0.967107,0.0835794,0.769152,0.110939,0.791414,0.153514,0.830453,0.666318,0.594247,0.89921,0.750034,0.146278,0.0642482,0.0795382,0.52982,0.536835,0.103394,0.734345,0.30635,0.177227,0.953339,0.0824673,0.681318,0.781175,0.249461,0.417959,0.967748,0.444403,0.322599,0.0943245,0.443883,0.071533,0.0829317,0.981568,0.563367,0.426374,0.0299074,0.17279,0.158922,0.327425,0.474197,0.517711,0.291252,0.450302,0.45791,0.840893,0.237376,0.437261,0.452736,0.869629,0.628323,0.140665,0.408637,0.859791,0.823889,0.0466455,0.0314572,0.129325,0.168874,0.165857,0.96387,0.473665,0.9318,0.158232,0.360933,0.210585,0.147783,0.785575,0.228899,0.783664,0.872806,0.179086,0.880338,0.71054,0.513123,0.352444,0.917099,0.0217949,0.199788,0.843435,0.141645,0.322721,0.858261,0.856066,0.761473,0.194276,0.499426,0.213796,0.307975,0.328437,0.41443,0.65019,0.732735,0.638429,0.915366,0.462794,0.098294,0.237788,0.446177,0.772292,0.296671,0.567131,0.577232,0.676599,0.501697,0.757038,0.62293,0.360392,0.0706319,0.190581,0.696981,0.214169,0.182798,0.674418,0.749912,0.262999,0.712421,0.908301,0.0915341,0.0668526,0.923655,0.500414,0.589066,0.163757,0.364917,0.508504,0.87269,0.757335,0.676047,0.892401,0.520292,0.850503,0.584416,0.497389,0.604042,0.690422,0.571895,0.929383,0.362009,0.936948,0.622485,0.495339,0.802248,0.594727,0.256038,0.922998,0.739644,0.962793,0.884122,0.0445668,0.657772,0.58254,0.715397,0.872539,0.963289,0.3868,0.769207,0.801819,0.502635,0.324991,0.158227,0.467041,0.212315,0.387656,0.483981,0.23664,0.584684,0.662575,0.639002,0.699291,0.724316,0.583523,0.112192,0.979376,0.572751,0.71775,0.617044,0.739672,0.154602,0.564897,0.0697483,0.493428,0.221294,0.663307,0.663264,0.352214,0.962558,0.96636,0.149679,0.67433,0.643231,0.351467,0.970686,0.362729,0.902058,0.455593,0.574918,0.10831,0.92966,0.885162,0.260701,0.704186,0.131822,0.524886,0.755781,0.123557,0.294919,0.619902,0.527807,0.752371,0.798726,0.164835,0.00690019,0.245407,0.812057,0.294471,0.220505,0.841221,0.740168,0.266462,0.211059,0.313243,0.799899,0.920236,0.882678,0.346802,0.882796,0.422699,0.591701,0.755143,0.762172,0.410261,0.903511,0.676639,0.321435,0.983521,0.596737,0.536801,0.0183131,0.360261,0.329825,0.645477,0.0933417,0.779833,0.157089,0.475738,0.0262208,0.810212,0.355454,0.186539,0.771689,0.0222497,0.378697,0.71218,0.562917,0.172159,0.110764,0.320936,0.837581,0.649539,0.0212549,0.585691,0.616044,0.732253,0.883783,0.629455,0.251015,0.0384092,0.800247,0.690915,0.492403,0.269011,0.305637,0.81791,0.380371,0.0705761,0.305306,0.132731,0.307965,0.844261,0.481818,0.0149055,0.825957,0.535546,0.261612,0.909953,0.511784,0.867437,0.0157401,0.851858,0.856725,0.781783,0.157675,0.897248,0.417426,0.59376,0.967497,0.95122,0.687988,0.465607,0.773631,0.978201,0.989983,0.557441,0.614245,0.435337,0.304624,0.716396,0.982189,0.879669,0.954996,0.340137,0.157762,0.666579,0.738064,0.602628,0.518907,0.0264225,0.806742,0.00071919,0.388982,0.00329912,0.916256,0.393649,0.343418,0.707718,0.678211,0.498758,0.756301,0.313835,0.939627,0.074077,0.178607,0.390194,0.477647,0.924341,0.77138,0.551781,0.603883,0.101446,0.817969,0.592679,0.708075,0.915106,0.219485,0.825106,0.118889,0.943696,0.516241,0.196198,0.392653,0.89347,0.754393,0.281509,0.101894,0.9768,0.775174,0.330929,0.397602,0.762664,0.251022,0.763463,0.305343,0.397948,0.260958,0.281928,0.723373,0.190792,0.308862,0.242598,0.413497,0.22783,0.31852,0.936334,0.356372,0.220388,0.244507,0.576584,0.0401704,0.700847,0.000131726,0.266712,0.775132,0.992405,0.308482,0.999307,0.600418,0.613452,0.118363,0.179786,0.271561,0.36314,0.0899546,0.699876,0.841721,0.415868,0.838419,0.373641,0.436649,0.723338,0.758429,0.387846,0.313396,0.127069,0.51024,0.224595,0.816295,0.399231,0.203353,0.771112,0.484947,0.261812,0.391008,0.322288,0.978222,0.757391,0.843536,0.578512,0.701114,0.793696,0.209002,0.783469,0.657167,0.705435,0.615346,0.478377,0.673299,0.422035,0.533061,0.666632,0.824618,0.3933,0.616022,0.639151,0.644135,0.182454,0.621157,0.283639,0.602944,0.00413871,0.782687,0.670951,0.518389,0.289975,0.31851,0.433537,0.54087,0.311363,0.376922,0.157383,0.661789,0.480623,0.220643,0.950978,0.301653,0.0899968,0.248948,0.380294,0.502681,0.466225,0.68648,0.891671,0.756762,0.927768,0.92135,0.0579932,0.690169,0.741116,0.697798,0.687498,0.434375,0.147447,0.276301,0.270872,0.116422,0.357759,0.673318,0.309973,0.137259,0.717555,0.590209,0.455243,0.639374,0.676109,0.572544,0.245179,0.912241,0.433775,0.317992,0.956564,0.373961,0.977731,0.450409,0.437981,0.580258,0.26243,0.280677,0.680561,0.58083,0.442317,0.462251,0.0729945,0.793286,0.155463,0.556439,0.503026,0.571588,0.0927833,0.312982,0.236777,0.772498,0.683946,0.22446,0.157799,0.682937,0.939784,0.685069,0.706049,0.698553,0.510747,0.206817,0.596987,0.32772,0.89203,0.607897,0.045228,0.532807,0.742962,0.0423645,0.484585,0.136652,0.464798,0.070518,0.169988,0.495352,0.206458,0.950865,0.986973,0.389617,0.216311,0.898875,0.980051,0.747264,0.197016,0.785141,0.52499,0.247677,0.232002,0.92828,0.322331,0.12175,0.65611,0.158095,0.226108,0.757201,0.730482,0.0177901,0.722489,0.687864,0.253905,0.800373,0.557958,0.349847,0.750393,0.431897,0.747093,0.460097,0.582422,0.75519,0.208706,0.610069,0.3045,0.0258339,0.644864,0.651018,0.430965,0.679381,0.950888,0.503346,0.234892,0.245518,0.919992,0.545199,0.516121,0.270008,0.574211,0.461159,0.505828,0.440223,0.266234,0.804061,0.358256,0.594381,0.21471,0.609806,0.52979,0.375001,0.629842,0.307719,0.595233,0.224685,0.625115,0.900179,0.0227314,0.419389,0.0488249,0.216774,0.936652,0.402027,0.930542,0.508144,0.0881915,0.639136,0.225739,0.230355,0.118524,0.12533,0.42624,0.700442,0.324996,0.215019,0.165338,0.706483,0.0403682,0.202813,0.604419,0.476413,0.622247,0.380496,0.155524,0.778248,0.231379,0.945753,0.019044,0.914583,0.933647,0.282839,0.360243,0.424009,0.215824,0.0148054,0.249509,0.58534,0.205581,0.566929,0.857695,0.0741526,0.303703,0.962008,0.283583,0.1635,0.682287,0.64862,0.422059,0.549208,0.523408,0.861742,0.119905,0.925805,0.0818506,0.849599,0.157873,0.0760008,0.309135,0.929361,0.566988,0.917613,0.37679,0.647826,0.955199,0.941875,0.339455,0.796989,0.916972,0.607166,0.460289,0.541495,0.37259,0.533296,0.630666,0.282084,0.900635,0.315888,0.996888,0.788492,0.765304,0.250097,0.69856,0.226799,0.809096,0.428133,0.0236871,0.45298,0.322438,0.407701,0.506706,0.660078,0.589817,0.493412,0.95153,0.273536,0.399044,0.423164,0.601229,0.313949,0.510204,0.517419,0.593714,0.26685,0.845352,0.124528,0.864501,0.659406,0.478417,0.625174,0.813048,0.180938,0.37676,0.857401,0.239653,0.511542,0.286345,0.829046,0.64485,0.344917,0.319505,0.23524,0.353823,0.361305,0.276024,0.518883,0.184923,0.327993,0.657025,0.875938,0.995011,0.435711,0.839457,0.8714,0.871088,0.951595,0.331582,0.887351,0.340717,0.430488,0.339588,0.0858184,0.485315,0.759952,0.496742,0.392928,0.119444,0.298894,0.629814,0.0632772,0.889618,0.276664,0.0393262,0.00577289,0.653777,0.731643,0.347953,0.646814,0.717816,0.0719395,0.880158,0.609609,0.253488,0.868979,0.0189914,0.458722,0.101329,0.899567,0.0999019,0.331957,0.0136738,0.918511,0.782863,0.482694,0.619494,0.655738,0.863946,0.765746,0.418529,0.495194,0.103987,0.532433,0.778484,0.0809915,0.831952,0.0411525,0.48135,0.293151,0.615401,0.787751,0.783451,0.508305,0.419435,0.5176,0.160931,0.493378,0.897932,0.885593,0.729684,0.522109,0.807143,0.516925,0.714538,0.619008,0.880472,0.464388,0.849683,0.588464,0.695837,0.623869,0.116209,0.057024,0.416265,0.061428,0.759447,0.913062,0.547368,0.936634,0.129758,0.496932,0.473031,0.455182,0.635228,0.0541024,0.292253,0.80152,0.0238439,0.143977,0.936756,0.897406,0.133361,0.666855,0.219655,0.612329,0.542086,|0.483413,0.699662,0.922021,0.745648,0.857529,0.665886,0.816033,0.515039,0.629604,0.909268,0.149378,0.940271,0.671495,0.702595,0.466916,0.94157,0.136779,0.782456,0.262728,0.489717,0.423795,0.684869,0.0235303,0.0481138,0.259118,0.220215,0.166412,0.600334,0.81077,0.914759,0.584737,0.457841,0.748575,0.62791,0.850248,0.211186,0.827719,0.163274,0.210673,0.220658,0.819888,0.421262,0.609466,0.371328,0.112426,0.817185,0.712697,0.75958,0.765663,0.939601,0.787838,0.493868,0.638928,0.878439,0.939802,0.6501,0.678564,0.909028,0.842372,0.791698,0.409814,0.865321,0.575809,0.590466,0.310409,0.0564101,0.182912,0.156153,0.402872,0.456222,0.32825,0.298177,0.94977,0.0540661,0.850395,0.356911,0.457758,0.446115,0.1188,0.310074,0.848719,0.57054,0.78176,0.493602,0.239027,0.395508,0.998227,0.239992,0.0428056,0.441231,0.0148779,0.802234,0.548099,0.033514,0.329241,0.892794,0.933473,0.958434,0.358185,0.266749,0.863079,0.834106,0.257548,0.869581,0.620738,0.414217,0.0543925,0.849017,0.159014,0.749029,0.404063,0.0812554,0.728247,0.683268,0.00654012,0.267163,0.913661,0.985508,0.00055337,0.910789,0.144916,0.98223,0.764314,0.817232,0.148759,0.554326,0.388044,0.730995,0.159419,0.76958,0.36474,0.883093,0.121358,0.696647,0.157379,0.139923,0.269797,0.571366,0.949675,0.789469,0.188674,0.710059,0.402169,0.274222,0.219751,0.796016,0.444323,0.462296,0.821044,0.347298,0.817923,0.862353,0.999612,0.328159,0.437317,0.288619,0.352983,0.225918,0.0958624,0.326515,0.728003,0.453091,0.369617,0.917074,0.194707,0.41337,0.631999,0.891007,0.344835,0.446512,0.217742,0.937994,0.725487,0.58031,0.881805,0.93755,0.769654,0.517947,0.728938,0.559529,0.998907,0.258648,0.00833833,0.0900005,0.343071,0.860544,0.968364,0.811969,0.0216656,0.578501,0.0700321,0.469815,0.73914,0.936229,0.273082,0.304565,0.443385,0.630181,0.261539,0.672068,0.514378,0.248138,0.609235,0.682049,0.959729,0.851719,0.67287,0.218754,0.993882,0.885548,0.316195,0.264438,0.897914,0.864034,0.379169,0.0474727,0.209694,0.545001,0.27377,0.89178,0.0733163,0.0848843,0.224421,0.5862,0.867568,0.728166,0.411195,0.870827,0.217777,0.881123,0.628481,0.243026,0.425141,0.511647,0.983229,0.986453,0.938376,0.865006,0.237296,0.0239008,0.318491,0.717078,0.349274,0.758153,0.504901,0.933464,0.340718,0.240745,0.443765,0.630584,0.279326,0.962745,0.759434,0.706588,0.848804,0.464147,0.50792,0.971366,0.135489,0.0348986,0.9562,0.995292,0.0153859,0.12439,0.174853,0.243986,0.482603,0.744482,0.0601054,0.751868,0.156787,0.444671,0.247251,0.301764,0.547647,0.449644,0.197483,0.616517,0.409816,0.535042,0.263049,0.221348,0.406849,0.807642,0.940623,0.910175,0.342625,0.29769,0.186334,0.605761,0.787272,0.0402007,0.742967,0.549155,0.220727,0.725481,0.00421625,0.77559,0.0136931,0.886693,0.0307124,0.264998,0.557072,0.518256,0.0396411,0.255309,0.986465,0.291717,0.191388,0.654546,0.691558,0.84293,0.42944,0.762685,0.413023,0.131386,0.557552,0.736447,0.68506,0.560944,0.735051,0.934343,0.46867,0.476307,0.891141,0.165529,0.864777,0.783279,0.818833,0.117537,0.772429,0.690387,0.846849,0.893769,0.444153,0.447557,0.188214,0.0526914,0.963819,0.314186,0.70302,0.394003,0.958249,0.232973,0.493183,0.392352,0.0050317,0.91046,0.506873,0.164866,0.173154,0.993876,0.745193,0.136888,0.208276,0.118496,0.100397,0.913179,0.00998741,0.320855,0.613587,0.49549,0.319938,0.424467,0.287814,0.592319,0.91413,0.574186,0.862648,0.636194,0.198651,0.519495,0.77756,0.446993,0.526357,0.955986,0.667955,0.420037,0.84745,0.675051,0.768796,0.548548,0.622885,0.60048,0.832001,0.00304168,0.224546,0.746297,0.835443,0.143669,0.894537,0.895162,0.889519,0.396873,0.910395,0.998166,0.84956,0.912883,0.829235,0.333787,0.358369,0.136401,0.312497,0.820955,0.675965,0.324004,0.560888,0.975235,0.0652648,0.0510408,0.62684,0.0610263,0.31798,0.589793,0.321566,0.133426,0.566827,0.238088,0.668318,0.757594,0.0562502,0.221513,0.10487,0.663883,0.724192,0.7751,0.755838,0.469424,0.204253,0.937853,0.325304,0.981241,0.841293,0.326893,0.960796,0.22695,0.922605,0.755317,0.770386,0.145531,0.116792,0.562532,0.954147,0.424468,0.513198,0.89303,0.658712,0.848531,0.26621,0.26091,0.922764,0.696779,0.828417,0.985665,0.882852,0.41257,0.539362,0.0316688,0.952077,0.193769,0.597682,0.256489,0.32687,0.510559,0.843093,0.145322,0.489786,0.868637,0.47728,0.220279,0.776675,0.0542479,0.420498,0.947827,0.40987,0.669657,0.037781,0.0952232,0.723681,0.119855,0.0472249,0.178167,0.00628626,0.42337,0.778122,0.054992,0.897552,0.738909,0.482353,0.201156,0.664839,0.27675,0.886595,0.74285,0.814808,0.00877839,0.255953,0.816413,0.420813,0.903951,0.882072,0.568748,0.498273,0.747259,0.338523,0.822361,0.442177,0.730903,0.883396,0.115937,0.968502,0.823331,0.298712,0.164622,0.77162,0.0898891,0.465775,0.193793,0.533843,0.358278,0.936047,0.476617,0.541279,0.676089,0.592809,0.442597,0.406585,0.211255,0.143187,0.104587,0.295509,0.887875,0.998551,0.164417,0.140441,0.000407517,0.694832,0.354888,0.507192,0.930861,0.720835,0.678002,0.19696,0.996498,0.048078,0.516618,0.978953,0.706162,0.833946,0.719351,0.0247605,0.111183,0.369021,0.373363,0.990165,0.330829,0.343467,0.341923,0.561414,0.0116355,0.846486,0.802536,0.0865752,0.957674,0.485121,0.437905,0.14375,0.047211,0.110451,0.836021,0.56796,0.911759,0.297574,0.25085,0.719459,0.422676,0.377994,0.841554,0.00120038,0.880384,0.255343,0.0444549,0.926416,0.03608,0.00272226,0.974429,0.390969,0.343136,0.886539,0.283044,0.748161,0.218312,0.747059,0.939316,0.692629,0.509708,0.922315,0.162347,0.619867,0.750018,0.700495,0.489568,0.389148,0.629319,0.914703,0.428252,0.122627,0.495983,0.902484,0.338278,0.354078,0.619874,0.912979,0.233955,0.892471,0.157423,0.446138,0.521817,0.36627,0.308913,0.26907,0.816993,0.244051,0.307386,0.487701,0.296142,0.847325,0.116919,0.972426,0.379013,0.563221,0.259362,0.515026,0.257666,0.706487,0.375625,0.237425,0.919998,0.683436,0.444821,0.756969,0.95764,0.639514,0.604013,0.443264,0.882259,0.51716,0.754174,0.893965,0.837367,0.676079,0.695097,0.00582474,0.442384,0.232995,0.994789,0.538616,0.261714,0.137861,0.155113,0.953183,0.466853,0.840584,0.394619,0.00219208,0.857779,0.180795,0.488281,0.785284,0.601722,0.556266,0.539473,0.544906,0.451228,0.961382,0.144394,0.532855,0.442659,0.175636,0.917307,0.533865,0.590204,0.106389,0.0130274,0.31724,0.0055086,0.274366,0.298205,0.555764,0.494414,0.696649,0.425268,0.34454,0.849946,0.836661,0.635641,0.238001,0.811758,0.41668,0.215923,0.581481,0.396766,0.608012,0.7522,0.353794,0.92616,0.522843,0.699731,0.929396,0.11701,0.416798,0.761643,0.318496,0.464619,0.872104,0.0800736,0.823143,0.680573,0.288434,0.322975,0.319615,0.164165,0.621105,0.0826914,0.599212,0.298407,0.0249981,0.269725,0.776302,0.587984,0.853446,0.845918,0.120232,0.901859,0.121974,0.322722,0.145643,0.262222,0.109358,0.592692,0.843511,0.936331,0.582841,0.277293,0.112189,0.445166,0.340448,0.403704,0.680172,0.961839,0.149565,0.493615,0.90307,0.80749,0.331697,0.833953,0.728322,0.0558037,0.87126,0.975802,0.366291,0.841662,0.118375,0.028011,0.562992,0.22536,0.276183,0.129216,0.616333,0.205217,0.71067,0.338454,0.540655,0.726133,0.945274,0.609869,0.673218,0.889673,0.992742,0.0260351,0.0495905,0.113857,0.911059,0.975034,0.603943,0.281308,0.116712,0.773976,0.599314,0.516158,0.872627,0.240658,0.195531,0.556096,0.651067,0.984501,0.462514,0.154321,0.804509,0.870422,0.360435,0.59368,0.443945,0.687769,0.00122935,0.889454,0.242813,0.252809,0.544133,0.659605,0.729665,0.443712,0.667516,0.797321,0.931597,0.815499,0.393662,0.485835,0.633899,0.929761,0.830955,0.651589,0.0606029,0.684808,0.21091,0.351287,0.256657,0.709968,0.662365,0.48377,0.780159,0.863649,0.920496,0.377101,0.806627,0.305415,0.627636,0.565163,0.783783,0.490039,0.895746,0.350129,0.503626,0.24976,0.645906,0.292121,0.176367,0.794784,0.941975,0.225669,0.613259,0.208499,0.764757,0.818516,0.501686,0.200003,0.180646,0.77449,0.264517,0.846993,0.479545,0.760396,0.153024,0.269038,0.5184,0.655297,0.237557,0.391577,0.412045,0.65543,0.435471,0.92521,0.966661,0.767126,0.282846,0.0143178,0.504638,0.425626,0.502494,0.00819224,0.948725,0.803142,0.269725,0.341576,0.645323,0.139404,0.930059,0.804512,0.942822,0.114875,0.823174,0.340763,0.584615,0.313431,0.0711465,0.295476,0.123694,0.459649,0.248208,0.994529,0.778413,0.944697,0.759339,0.51273,0.440073,0.463592,0.145031,0.196808,0.663519,0.92612,0.0541116,0.763956,0.615039,0.595504,0.609513,0.659481,0.314272,0.701804,0.921202,0.116223,0.0246582,0.404142,0.829919,0.153438,0.45057,0.1378,0.763543,0.0313988,0.0877894,0.149119,0.782478,0.944081,0.688467,0.318278,0.383408,0.193961,0.941346,0.625969,0.413066,0.745021,0.580982,0.433357,0.145245,0.924218,0.933748,0.579545,0.639183,0.193959,0.151773,0.957208,0.650242,0.864659,0.294515,0.962228,0.315277,0.163349,0.951231,0.180118,0.829584,0.131074,0.888906,0.0702946,0.234346,0.501266,0.448688,0.593696,0.096656,0.952386,0.88854,0.680153,0.708361,0.970164,0.115319,0.985571,0.403884,0.235032,0.858058,0.96164,0.0269751,0.801597,0.680554,0.259944,0.602588,0.609284,0.416583,0.464915,0.00935686,0.739112,0.0651639,0.514068,0.0221797,0.797989,0.979966,0.0054462,0.930588,0.869806,0.65633,0.98808,0.248608,0.714543,|0.366803,0.255718,0.821223,0.135848,0.49305,0.0982963,0.258218,0.495496,0.501118,0.621268,0.464097,0.411854,0.597332,0.382233,0.715571,0.252133,0.244656,0.129963,0.656008,0.184167,0.157988,0.20176,0.303237,0.625002,0.118326,0.38203,0.217503,0.642749,0.833043,0.212082,0.238609,0.423598,0.617044,0.840369,0.666271,0.870494,0.557366,0.401825,0.936977,0.388659,0.565538,0.639934,0.605526,0.130084,0.895688,0.105837,0.0218789,0.957615,0.916977,0.14599,0.329478,0.0704456,0.891503,0.6591,0.871726,0.596193,0.281513,0.28681,0.773403,0.198456,0.338353,0.0128224,0.694855,0.638556,0.77085,0.774172,0.0536229,0.260686,0.887031,0.0218401,0.300304,0.659099,0.787218,0.748992,0.769005,0.988293,0.402606,0.129822,0.130656,0.52118,0.986487,0.567876,0.609152,0.126301,0.324536,0.995333,0.309613,0.341778,0.52257,0.853267,0.0108761,0.633597,0.0969447,0.013886,0.486577,0.580374,0.133435,0.467678,0.346027,0.479269,0.642208,0.741879,0.811274,0.0751471,0.462754,0.138457,0.271963,0.228134,0.705427,0.524975,0.0567564,0.455168,0.923432,0.202427,0.855054,0.0144683,0.237827,0.127533,0.794405,0.254793,0.823865,0.71358,0.0259253,0.181979,0.934689,0.301428,0.375295,0.494261,0.776285,0.409283,0.306439,0.0521334,0.254016,0.0913056,0.429043,0.477424,0.997538,0.213573,0.355061,0.952425,0.0367718,0.418986,0.783242,0.488875,0.0204237,0.794689,0.702537,0.533587,0.224107,0.906316,0.904317,0.887901,0.554999,0.0911718,0.278438,0.0951468,0.0246811,0.415737,0.285528,0.268769,0.274744,0.186602,0.648021,0.799443,0.389556,0.967826,0.530038,0.323581,0.273241,0.608444,0.877433,0.24826,0.605884,0.156551,0.159221,0.842702,0.502406,0.351522,0.180049,0.228578,0.67624,0.300914,0.00725091,0.400038,0.50785,0.966305,0.909135,0.181758,0.425059,0.893687,0.817385,0.33823,0.822874,0.32298,0.421864,0.977219,0.570311,0.764694,0.2413,0.521315,0.141862,0.196742,0.252903,0.610392,0.486596,0.939426,0.921669,0.466467,0.381536,0.920194,0.862204,0.203627,0.613041,0.613641,0.363667,0.0174909,0.49649,0.171214,0.742491,0.313353,0.0504773,0.633842,0.674199,0.211695,0.703552,0.458337,0.422405,0.994672,0.260893,0.603089,0.0966344,0.8852,0.694814,0.322832,0.547121,0.306917,0.612291,0.425683,0.343342,0.549191,0.459129,0.400956,0.979045,0.482719,0.102952,0.738465,0.735698,0.840921,0.355319,0.995046,0.859543,0.200072,0.467471,0.690866,0.832815,0.828363,0.848621,0.111071,0.842099,0.293181,0.996096,0.393501,0.262118,0.867976,0.531633,0.129536,0.328986,0.961027,0.53359,0.16679,0.392831,0.532645,0.954893,0.87672,0.807118,0.45522,0.117758,0.0484558,0.586679,0.868663,0.6167,0.540605,0.933336,0.939103,0.100921,0.161703,0.812974,0.870676,0.268686,0.319594,0.513344,0.147421,0.652026,0.29784,0.567566,0.338392,0.337403,0.521079,0.287089,0.301479,0.435876,0.401184,0.041958,0.60956,0.281798,0.905314,0.693605,0.569799,0.906704,0.47417,0.273883,0.0643283,0.827461,0.109859,0.581572,0.534667,0.128106,0.552769,0.361472,0.978781,0.100409,0.0820466,0.866509,0.658537,0.04859,0.273053,0.832752,0.962513,0.217711,0.0450428,0.829767,0.621242,0.229581,0.595306,0.0899262,0.389806,0.173048,0.455981,0.764111,0.847769,0.0986005,0.810977,0.087677,0.139116,0.758116,0.0515394,0.643121,0.107365,0.127086,0.430679,0.706507,0.502075,0.564416,0.874452,0.858162,0.351938,0.386284,0.0632626,0.050752,0.184418,0.139871,0.120231,0.744197,0.853783,0.335742,0.61676,0.69538,0.0961707,0.68027,0.0457786,0.860692,0.336773,0.258616,0.756601,0.405755,0.0281143,0.25519,0.369082,0.727847,0.844613,0.0522395,0.690746,0.214816,0.531551,0.409039,0.208779,0.122163,0.388796,0.161778,0.142626,0.142148,0.336491,0.973826,0.370896,0.562052,0.0345384,0.746852,0.737678,0.801005,0.641568,0.216073,0.706646,0.356095,0.793632,0.621434,0.927123,0.925604,0.866092,0.97788,0.418752,0.931204,0.898998,0.00041467,0.814862,0.967709,0.552051,0.649191,0.965348,0.81007,0.121279,0.479082,0.639245,0.246906,0.265127,0.959624,0.288159,0.310375,0.189324,0.771105,0.0446011,0.661595,0.703659,0.455937,0.727962,0.455826,0.244808,0.216004,0.02882,0.894255,0.592164,0.575791,0.705893,0.454558,0.67318,0.360925,0.589325,0.635009,0.462278,0.000231743,0.882036,0.539979,0.962806,0.803128,0.0069496,0.962382,0.0861146,0.130176,0.702951,0.794294,0.731848,0.722989,0.651806,0.857378,0.933801,0.729812,0.904348,0.854286,0.595832,0.994463,0.377783,0.744513,0.116355,0.600569,0.0176889,0.225112,0.161016,0.257072,0.959051,0.447485,0.912286,0.836683,0.421789,0.79089,0.466925,0.81663,0.285793,0.748464,0.0678756,0.344612,0.575626,0.765885,0.634858,0.698141,0.0406059,0.78983,0.121226,0.30385,0.515346,0.113774,0.856201,0.754473,0.768841,0.0276542,0.224301,0.190516,0.988125,0.0131237,0.756507,0.525791,0.251097,0.369106,0.0927736,0.936437,0.331726,0.684298,0.0747517,0.0529881,0.825945,0.323919,0.831274,0.286282,0.299983,0.0880769,0.00913668,0.732514,0.241958,0.609642,0.105355,0.00293869,0.529122,0.751617,0.942073,0.178111,0.573608,0.87489,0.736947,0.084832,0.730681,0.229829,0.851099,0.607324,0.877792,0.144308,0.798989,0.79302,0.77964,0.394831,0.442106,0.56757,0.453655,0.174132,0.218536,0.0641317,0.827761,0.653183,0.686484,0.383846,0.205196,0.000968635,0.278243,0.10184,0.777704,0.963065,0.655955,0.223912,0.232365,0.945348,0.627657,0.966628,0.778288,0.510738,0.313107,0.403666,0.703198,0.849422,0.982512,0.0905598,0.106898,0.990706,0.956254,0.309575,0.598601,0.659791,0.209846,0.447339,0.0751271,0.959103,0.325131,0.572475,0.320107,0.135283,0.602318,0.666481,0.370839,0.61497,0.983963,0.879847,0.736289,0.588483,0.0041697,0.141752,0.294123,0.345176,0.327474,0.879266,0.227879,0.743224,0.0580822,0.477014,0.322204,0.078563,0.136375,0.367185,0.353326,0.106634,0.585028,0.879663,0.549759,0.111344,0.424395,0.0379041,0.0875273,0.937797,0.0478421,0.222291,0.23053,0.0527384,0.400482,0.412711,0.83036,0.246366,0.341932,0.610747,0.123673,0.464813,0.803882,0.473223,0.366991,0.645013,0.756827,0.0349669,0.613998,0.820617,0.584252,0.701817,0.569396,0.307048,0.0388926,0.239413,0.866508,0.680438,0.866493,0.361334,0.467265,0.349254,0.368741,0.663483,0.964324,0.54206,0.739302,0.225644,0.783309,0.860543,0.515104,0.848759,0.349698,0.839529,0.504119,0.30367,0.909056,0.929729,0.912518,0.568972,0.916082,0.978513,0.504561,0.496035,0.0354353,0.701009,0.375416,0.304131,0.416286,0.163743,0.652799,0.870987,0.0483727,0.639854,0.867809,0.0765523,0.117242,0.576793,0.655231,0.863513,0.473342,0.851336,0.66036,0.0713468,0.206513,0.354345,0.225372,0.357567,0.524127,0.118473,0.877476,0.866179,0.823784,0.269501,0.246817,0.873447,0.25341,0.610702,0.783011,0.524214,0.455755,0.517652,0.771611,0.533058,0.173456,0.263688,0.725483,0.7641,0.439898,0.540079,0.241428,0.953891,0.821899,0.806679,0.768398,0.764951,0.261012,0.85292,0.00552261,0.826285,0.260246,0.0263466,0.703541,0.20385,0.5521,0.817376,0.871242,0.336441,0.181606,0.160081,0.0559151,0.345753,0.586012,0.532701,0.924779,0.596351,0.648242,0.624941,0.370522,0.635634,0.541809,0.878819,0.939311,0.00349784,0.242431,0.721932,0.913894,0.226628,0.541352,0.394073,0.859035,0.674382,0.321128,0.87703,0.480064,0.015067,0.843238,0.140709,0.336886,0.460898,0.913555,0.579721,0.943278,0.427422,0.884658,0.330298,0.143854,0.938824,0.267661,0.273234,0.181839,0.0931841,0.342826,0.276725,0.632545,0.458117,0.714199,0.610681,0.497367,0.934724,0.187919,0.197991,0.268228,0.0842549,0.329951,0.541222,0.46623,0.658096,0.452599,0.886157,0.375533,0.500231,0.516592,0.400022,0.113308,0.413213,0.953884,0.725429,0.608885,0.111453,0.889247,0.192657,0.41948,0.600024,0.372879,0.209109,0.859422,0.0399414,0.593804,0.613292,0.921193,0.48714,0.312866,0.0269706,0.1936,0.116882,0.646888,0.131395,0.469405,0.56664,0.256098,0.63711,0.0047254,0.391488,0.380398,0.77514,0.933796,0.183368,0.355723,0.00725085,0.919987,0.0200993,0.352253,0.204019,0.182432,0.261769,0.813319,0.023427,0.664808,0.334531,0.045252,0.69684,0.0101407,0.36593,0.426177,0.93374,0.678786,0.397752,0.362493,0.732043,0.605922,0.0347402,0.520816,0.986237,0.251708,0.845845,0.405993,0.271028,0.0203153,0.932535,0.402052,0.603847,0.754208,0.928138,0.959739,0.24179,0.169131,0.0574625,0.658556,0.0448467,0.587372,0.794018,0.5678,0.747157,0.76598,0.0980259,0.0987098,8.21352e-05,0.705596,0.811482,0.772013,0.158065,0.970899,0.292534,0.00737154,0.33622,0.102227,0.536474,0.897589,0.53003,0.52058,0.41385,0.374842,0.767802,0.348933,0.395306,0.63929,0.516209,0.705903,0.824726,0.443921,0.502277,0.629395,0.858447,0.249193,0.375555,0.934575,0.864412,0.496963,0.648379,0.74123,0.216321,0.41192,0.102462,0.966402,0.629542,0.633287,0.178798,0.649873,0.593979,0.757906,0.690452,0.887525,0.0449873,0.903043,0.627892,0.186714,0.0452931,0.650743,0.221621,0.981378,0.105892,0.385106,0.00944453,0.772331,0.399041,0.249139,0.352917,0.200077,0.770496,0.495773,0.274194,0.44048,0.836829,0.435688,0.302995,0.121023,0.966094,0.0350164,0.161546,0.531261,0.923575,0.288882,0.639092,0.0719729,0.462737,0.210293,0.494351,0.445979,0.99336,0.861304,0.205074,0.61108,0.99437,0.257963,0.378992,0.115011,0.141015,0.113897,0.283069,0.775803,0.941708,0.56244,0.895377,0.75319,0.149849,0.176738,0.105317,0.161685,0.026099,0.941207,0.620155,0.800791,0.840585,0.479493,0.994045,0.164024,|0.0913533,0.723173,0.064745,0.435502,0.16282,0.405522,0.998799,0.943811,0.764079,0.816348,0.527804,0.305935,0.640873,0.303283,0.108806,0.0511951,0.673634,0.950785,0.0491006,0.700358,0.517238,0.366644,0.946757,0.452507,0.207724,0.13203,0.397859,0.973544,0.614172,0.63044,0.674186,0.831247,0.308531,0.102348,0.661114,0.161205,0.162725,0.358963,0.279348,0.328734,0.138809,0.154854,0.524111,0.752748,0.480208,0.892304,0.884221,0.618154,0.588295,0.657974,0.117148,0.127471,0.979158,0.104914,0.331552,0.331745,0.160794,0.691468,0.342387,0.168053,0.345639,0.327413,0.309912,0.644564,0.839929,0.857729,0.733592,0.658416,0.148392,0.23358,0.931198,0.720754,0.79256,0.0659636,0.254603,0.286864,0.0467145,0.555913,0.606214,0.785619,0.433864,0.284737,0.144157,0.980006,0.877097,0.342129,0.558833,0.0501368,0.570244,0.259023,0.642419,0.252659,0.281588,0.455854,0.765948,0.106121,0.219938,0.21217,0.819462,0.260663,0.570081,0.724941,0.755431,0.133619,0.874881,0.206615,0.493351,0.924035,0.0121788,0.925469,0.848182,0.339506,0.701455,0.0984681,0.440863,0.413993,0.358855,0.836635,0.787358,0.220092,0.782231,0.621257,0.417906,0.77873,0.288322,0.458578,0.303389,0.752355,0.815726,0.262314,0.306832,0.289277,0.732027,0.872103,0.411145,0.0673963,0.830923,0.449444,0.65052,0.203551,0.0448701,0.698854,0.211039,0.539893,0.320784,0.438216,0.945444,0.495066,0.876667,0.659578,0.164713,0.227462,0.481159,0.243913,0.745216,0.258395,0.401365,0.0166849,0.924298,0.0680277,0.756725,0.177289,0.24375,0.84173,0.718417,0.77678,0.0667058,0.96166,0.794504,0.081062,0.250172,0.449169,0.942218,0.894737,0.609688,0.257814,0.951456,0.440619,0.0896342,0.818202,0.497238,0.311983,0.76005,0.867002,0.010399,0.836439,0.906578,0.221367,0.252832,0.206266,0.392096,0.746352,0.34934,0.667712,0.928089,0.696062,0.515039,0.506083,0.194397,0.595069,0.617648,0.240847,0.446144,0.67304,0.426829,0.85007,0.0332001,0.129593,0.84165,0.596363,0.513804,0.303893,0.881162,0.00265992,0.0439852,0.738018,0.886762,0.834749,0.625981,0.907462,0.480823,0.374021,0.389904,0.491288,0.0714101,0.120675,0.841569,0.0123084,0.343573,0.298711,0.461471,0.481615,0.798484,0.595291,0.229391,0.379827,0.349103,0.796346,0.427495,0.00134802,0.445091,0.244293,0.0580497,0.0215942,0.043123,0.180059,0.203914,0.819953,0.11714,0.856965,0.330762,0.703737,0.62627,0.62234,0.768391,0.987964,0.241037,0.074362,0.856217,0.482718,0.0162966,0.902569,0.844204,0.994764,0.519146,0.350099,0.126517,0.534732,0.337692,0.77451,0.967736,0.631458,0.99782,0.634005,0.849986,0.106906,0.382388,0.81813,0.324453,0.347188,0.500527,0.508187,0.23074,0.307266,0.814802,0.196302,0.452994,0.640824,0.609567,0.564668,0.819763,0.743071,0.173839,0.340898,0.54675,0.514993,0.104348,0.653393,0.0954565,0.968328,0.541952,0.519437,0.00297445,0.0173035,0.144914,0.186203,0.680655,0.817617,0.233689,0.639284,0.516575,0.250214,0.135947,0.923203,0.365999,0.118109,0.864378,0.798596,0.821873,0.689527,0.759551,0.257506,0.744164,0.211308,0.282125,0.586568,0.776268,0.0592547,0.955848,0.192571,0.284213,0.442287,0.901426,0.063799,0.234056,0.392653,0.760592,0.689289,0.0678812,0.480924,0.78875,0.578803,0.658379,0.117145,0.897511,0.16081,0.243482,0.23377,0.111581,0.878653,0.893901,0.623717,0.112648,0.27253,0.968337,0.577888,0.643013,0.482621,0.363239,0.796581,0.202121,0.411232,0.797066,0.17527,0.574062,0.163782,0.757726,0.349255,0.793832,0.487369,0.342561,0.896227,0.720668,0.243463,0.176235,0.683696,0.147396,0.732278,0.00121635,0.0121228,0.504914,0.109098,0.980278,0.124617,0.771589,0.206123,0.592692,0.739953,0.804898,0.654305,0.633229,0.52323,0.433563,0.786336,0.706797,0.343276,0.711197,0.190476,0.309868,0.85316,0.417926,0.0955873,0.379818,0.248262,0.224111,0.441072,0.949895,0.921274,0.0272432,0.606159,0.402316,0.220504,0.481602,0.888252,0.100684,0.987001,0.258624,0.903066,0.245857,0.426469,0.634708,0.719591,0.239966,0.00281084,0.723393,0.98695,0.920192,0.546498,0.209371,0.119132,0.342939,0.970298,0.995895,0.638495,0.457526,0.848482,0.134225,0.953039,0.871743,0.191239,0.42405,0.804121,0.46652,0.402986,0.528496,0.800464,0.29605,0.171927,0.812225,0.627354,0.779529,0.687517,0.177621,0.412237,0.700141,0.105589,0.241012,0.576412,0.181368,0.202413,0.93826,0.326359,0.396123,0.20142,0.554859,0.883607,0.999354,0.469,0.314767,0.778882,0.558253,0.659649,0.926844,0.398,0.424935,0.0509732,0.629253,0.649293,0.182245,0.762282,0.488481,0.833063,0.584405,0.24219,0.20252,0.855143,0.10732,0.791807,0.215971,0.315241,0.194515,0.40826,0.463085,0.530456,0.662863,0.707916,0.0302788,0.381472,0.92186,0.654463,0.022526,0.614542,0.81329,0.555218,0.678131,0.0732985,0.386981,0.97032,0.481694,0.997488,0.407099,0.182629,0.14445,0.820428,0.473584,0.970444,0.161698,0.279965,0.453051,0.62211,0.741111,0.484733,0.407861,0.286707,0.541714,0.677467,0.272844,0.750557,0.564407,0.0847402,0.372961,0.499064,0.243826,0.608899,0.162389,0.0875476,0.24827,0.529437,0.597046,0.596618,0.561458,0.732963,0.556663,0.805436,0.700949,0.3211,0.600854,0.19329,0.875138,0.0906357,0.783777,0.992164,0.237454,0.441297,0.0827991,0.490402,0.145492,0.962651,0.710813,0.443569,0.485574,0.765664,0.990423,0.545245,0.0611263,0.290863,0.184912,0.965265,0.844566,0.718892,0.551253,0.794031,0.586965,0.65593,0.442829,0.41325,0.00479001,0.657061,0.310534,0.6551,0.115274,0.358116,0.596158,0.557481,0.740707,0.737682,0.592609,0.491331,0.749623,0.46997,0.00586444,0.516775,0.233237,0.496915,0.456483,0.0229517,0.42138,0.292681,0.813586,0.603795,0.307612,0.319949,0.162484,0.317059,0.973596,0.227007,0.0372037,0.598409,0.460185,0.39016,0.911442,0.379966,0.205696,0.0479101,0.132242,0.206295,0.625509,0.826858,0.817155,0.816585,0.166607,0.083046,0.798388,0.226029,0.452417,0.0231787,0.839805,0.308745,0.86107,0.194232,0.537809,0.970191,0.985029,0.420692,0.506125,0.502799,0.634761,0.970843,0.660357,0.73197,0.929898,0.56851,0.808338,0.359948,0.8117,0.97057,0.639869,0.967806,0.883501,0.292883,0.180357,0.863726,0.0186237,0.470197,0.992747,0.140303,0.270422,0.451927,0.75726,0.242232,0.549066,0.541174,0.597662,0.296526,0.502837,0.363842,0.755309,0.100874,0.471842,0.60583,0.398194,0.401442,0.347358,0.406241,0.243414,0.667996,0.384985,0.752819,0.885452,0.982496,0.639293,0.701075,0.853379,0.111942,0.464063,0.77086,0.0882525,0.72237,0.77441,0.538765,0.261054,0.360834,0.842841,0.892097,0.0687451,0.918165,0.384314,0.172418,0.773695,0.989235,0.209979,0.198335,0.484863,0.649487,0.138519,0.563348,0.883306,0.391165,0.0398168,0.628031,0.372656,0.747613,0.780814,0.166748,0.322695,0.97275,0.811011,0.0381774,0.72985,0.220127,0.820441,0.319978,0.01687,0.652231,0.527063,0.59714,0.209339,0.387013,0.178937,0.434837,0.521711,0.79253,0.937421,0.169727,0.465904,0.432516,0.51243,0.349423,0.274481,0.671068,0.606722,0.358683,0.205673,0.22231,0.596967,0.629617,0.774827,0.621981,0.290279,0.728562,0.728068,0.674972,0.562215,0.0430251,0.451738,0.837834,0.174966,0.0235391,0.122129,0.684025,0.217281,0.569733,0.909567,0.0880837,0.820001,0.773469,0.415296,0.720338,0.34577,0.471894,0.70885,0.736995,0.0460543,0.742394,0.517296,0.93974,0.343654,0.864488,0.0164581,0.32648,0.818225,0.316895,0.702223,0.27771,0.800828,0.531518,0.798628,0.545625,0.39444,0.286646,0.864062,0.302335,0.194237,0.159652,0.419418,0.38457,0.552384,0.369666,0.335113,0.696236,0.451451,0.0446919,0.752351,0.257953,0.370657,0.0303902,0.675138,0.341784,0.843091,0.665849,0.909259,0.947911,0.74684,0.934085,0.276058,0.501558,0.0937929,0.577574,0.957817,0.154242,0.163347,0.62113,0.317728,0.963304,0.110956,0.879977,0.319504,0.0221878,0.947138,0.456194,0.324596,0.882948,0.120535,0.953129,0.834776,0.355183,0.942996,0.416602,0.235387,0.832696,0.249109,0.954046,0.711378,0.656129,0.763187,0.0871484,0.115134,0.7489,0.598393,0.955142,0.610637,0.842734,0.569859,0.334716,0.341127,0.0690839,0.664275,0.312182,0.180435,0.797289,0.0169644,0.864449,0.0632992,0.060209,0.41225,0.813219,0.25851,0.483101,0.141133,0.464106,0.62866,0.85226,0.93235,0.64497,0.668788,0.538102,0.970522,0.810434,0.389083,0.0455465,0.410259,0.844491,0.64577,0.141646,0.877574,0.578706,0.979134,0.827544,0.581798,0.817895,0.146917,0.271249,0.00158185,0.098191,0.0417328,0.890875,0.329647,0.708161,0.711278,0.762882,0.844219,0.240905,0.840073,0.227097,0.892567,0.274357,0.966706,0.63264,0.397374,0.297768,0.671153,0.762206,0.0587664,0.606188,0.764131,0.247756,0.0832824,0.684701,0.659677,0.0277435,0.897936,0.176736,0.817226,0.681526,0.105969,0.991041,0.450871,0.554225,0.290627,0.471621,0.138547,0.333144,0.688392,0.106067,0.745218,0.160478,0.636558,0.600717,0.608407,0.152151,0.00146371,0.959999,0.953394,0.726432,0.669788,0.102038,0.275605,0.353772,0.594759,0.239479,0.193506,0.0106304,0.0343326,0.526242,0.18732,0.992031,0.78512,0.739192,0.559318,0.960497,0.782778,0.0909827,0.765793,0.51945,0.549973,0.382944,0.657977,0.683157,0.470375,0.00749886,0.0812275,0.863148,0.121136,0.890836,0.561137,0.260988,0.851224,0.458949,0.846271,0.784532,0.855657,0.843787,0.120109,0.599853,0.893675,0.473758,0.763019,0.142936,0.753715,0.543871,0.523268,0.643976,0.123196,0.034105,0.266714,0.993869,0.0552279,0.111187,0.315085,0.411988,|0.534132,0.461518,0.40408,0.191878,0.672957,0.163728,0.193356,0.631812,0.267811,0.742845,0.521349,0.418199,0.25979,0.6918,0.024789,0.051439,0.00682014,0.578624,0.601643,0.564119,0.00711173,0.838642,0.655466,0.244618,0.790446,0.524432,0.476052,0.256022,0.484272,0.721325,0.644127,0.636354,0.897116,0.250523,0.0380743,0.457355,0.978776,0.543347,0.294715,0.613525,0.0157986,0.634101,0.441989,0.97811,0.271235,0.557103,0.431735,0.534411,0.450769,0.520991,0.793812,0.814447,0.121392,0.440846,0.477054,0.355261,0.103055,0.999338,0.0573409,0.338457,0.912378,0.714925,0.288123,0.796092,0.357519,0.980461,0.180865,0.183179,0.842142,0.10071,0.369759,0.211681,0.821242,0.547626,0.453038,0.655024,0.435669,0.933329,0.126712,0.808784,0.951563,0.842769,0.515932,0.23739,0.240556,0.391608,0.712423,0.983356,0.179692,0.278718,0.580793,0.555283,0.853255,0.270296,0.338818,0.722211,0.641905,0.609847,0.252201,0.4494,0.727798,0.445818,0.501577,0.957224,0.0264446,0.811045,0.843837,0.860301,0.564057,0.942475,0.231149,0.488817,0.468505,0.147043,0.0553146,0.169024,0.333979,0.9146,0.94401,0.855351,0.759669,0.165873,0.76854,0.277983,0.0422496,0.573347,0.0903147,0.472071,0.312926,0.609185,0.669172,0.381718,0.807701,0.988284,0.825162,0.551716,0.825162,0.13584,0.832501,0.0457174,0.211804,0.122225,0.717043,0.771892,0.715874,0.450713,0.8508,0.842953,0.516813,0.86793,0.388078,0.847872,0.897135,0.139121,0.750857,0.0329058,0.369806,0.313777,0.656546,0.545235,0.362898,0.672582,0.802275,0.818802,0.0098443,0.457327,0.526087,0.25787,0.59472,0.252759,0.970437,0.752957,0.887198,0.73995,0.372944,0.0824562,0.695067,0.0850169,0.11528,0.574201,0.0574596,0.490645,0.701536,0.925494,0.905542,0.659616,0.618706,0.247427,0.765702,0.0515998,0.347498,0.0303494,0.413018,0.877503,0.39486,0.237887,0.87717,0.332197,0.592147,0.644365,0.141766,0.244846,0.887004,0.992251,0.617331,0.262119,0.368276,0.575344,0.806854,0.714913,0.0257666,0.762486,0.315612,0.037782,0.739647,0.485412,0.50366,0.366181,0.508297,0.769705,0.359825,0.605605,0.88802,0.835416,0.0741664,0.781187,0.01269,0.841951,0.703278,0.717399,0.175207,0.118674,0.199619,0.716597,0.395398,0.0614837,0.100169,0.229663,0.0170572,0.683636,0.977421,0.0847495,0.962869,0.109004,0.921961,0.292724,0.838124,0.763952,0.669291,0.573379,0.210976,0.89036,0.510432,0.243488,0.441759,0.0832402,0.129458,0.708495,0.766072,0.0935303,0.765715,0.665017,0.0500355,0.948014,0.244506,0.0371249,0.0970954,0.393557,0.375379,0.837723,0.129363,0.20727,0.546224,0.0406789,0.208237,0.0445682,0.527282,0.190509,0.543548,0.0853083,0.438517,0.952068,0.665951,0.517117,0.534002,0.735771,0.863165,0.750201,0.00533229,0.401571,0.676625,0.0900179,0.729783,0.834526,0.0603486,0.188267,0.0334098,0.946378,0.277748,0.472891,0.166476,0.0820544,0.962594,0.805774,0.785609,0.656754,0.139087,0.798967,0.14074,0.76259,0.589378,0.785698,0.743458,0.164552,0.878302,0.578011,0.491271,0.748833,0.60351,0.923001,0.458931,0.377316,0.411085,0.962957,0.770806,0.57842,0.332193,0.102186,0.690966,0.0389906,0.253447,0.706258,0.230161,0.299835,0.279742,0.77656,0.344239,0.763016,0.257378,0.500583,0.476825,0.401323,0.731741,0.77238,0.179943,0.856955,0.622948,0.606163,0.430061,0.407332,0.0345224,0.718107,0.365962,0.28062,0.0186969,0.590544,0.519312,0.299889,0.55382,0.556918,0.0642481,0.319457,0.87877,0.566536,0.732005,0.302397,0.575005,0.816287,0.23236,0.0327181,0.300278,0.565774,0.706016,0.878411,0.13997,0.196981,0.672716,0.16995,0.466398,0.645248,0.809847,0.838009,0.891561,0.552115,0.562814,0.962761,0.124884,0.923755,0.185075,0.1178,0.46822,0.312513,0.323402,0.945884,0.693406,0.686508,0.286567,0.906601,0.422508,0.173544,0.340066,0.871976,0.144833,0.404861,0.249965,0.703706,0.774993,0.696315,0.124234,0.78937,0.0914975,0.831926,0.875248,0.973763,0.0488518,0.0367076,0.803759,0.0533586,0.865109,0.731484,0.600332,0.773584,0.875074,0.422126,0.632556,0.448178,0.453527,0.102964,0.708219,0.828507,0.788666,0.812359,0.821796,0.993937,0.29392,0.173632,0.872458,0.394071,0.705429,0.97733,0.101084,0.698214,0.391253,0.212554,0.688356,0.693627,0.204907,0.255739,0.730557,0.0854285,0.531919,0.782341,0.385001,0.515322,0.29035,0.132651,0.0324715,0.537693,0.718812,0.688219,0.313612,0.21767,0.183774,0.449576,0.106416,0.736885,0.708649,0.149765,0.750295,0.795928,0.582554,0.573564,0.771512,0.582779,0.0595134,0.40651,0.345068,0.230384,0.716756,0.899182,0.0306282,0.559787,0.957024,0.282929,0.603886,0.552589,0.0708116,0.858046,0.441319,0.26441,0.371218,0.0592763,0.259378,0.231704,0.510778,0.533646,0.442416,0.815073,0.489634,0.407721,0.662305,0.45361,0.167664,0.260987,0.0760449,0.348046,0.588032,0.967145,0.838755,0.530992,0.796343,0.134904,0.474035,0.297756,0.618304,0.877958,0.569938,0.787245,0.611029,0.483202,0.891494,0.516291,0.987683,0.542831,0.0996953,0.623474,0.605557,0.144243,0.898916,0.812668,0.0945573,0.920167,0.100508,0.809528,0.887823,0.385941,0.651087,0.699374,0.521887,0.719746,0.484894,0.399912,0.700594,0.417835,0.807229,0.771322,0.622749,0.0974442,0.721241,0.644607,0.818321,0.132266,0.0877602,0.609155,0.0146045,0.806561,0.841041,0.182394,0.00937933,0.485207,0.608533,0.159041,0.103529,0.716732,0.705053,0.572719,0.908466,0.162455,0.238677,0.320464,0.0444933,0.405074,0.710768,0.489328,0.22968,0.039896,0.68248,0.470624,0.664903,0.150806,0.00346208,0.518356,0.0808892,0.680865,0.268151,0.650666,0.86156,0.182091,0.144597,0.624032,0.643176,0.992035,0.834083,0.335011,0.528578,0.0819895,0.14713,0.384634,0.453662,0.556733,0.200109,0.379937,0.691361,0.377236,0.663962,0.0375476,0.449501,0.181564,0.259198,0.0966109,0.948922,0.034924,0.104043,0.393832,0.471337,0.528271,0.728271,0.535566,0.191557,0.459547,0.619,0.965072,0.660276,0.0696878,0.20267,0.898554,0.452745,0.588605,0.342958,0.936494,0.346183,0.990344,0.374823,0.93802,0.0110156,0.660451,0.210474,0.787189,0.678363,0.193891,0.925726,0.681385,0.511065,0.755292,0.160788,0.0610961,0.380531,0.555857,0.511769,0.254301,0.977894,0.195095,0.105957,0.470657,0.0960957,0.322966,0.869155,0.739527,0.270151,0.133989,0.333301,0.450617,0.295206,0.404385,0.72292,0.0144942,0.943594,0.812575,0.890817,0.873777,0.641237,0.125597,0.236415,0.930697,0.251693,0.351628,0.876143,0.985677,0.355506,0.707501,0.522844,0.287614,0.14429,0.831055,0.743373,0.218018,0.913925,0.0578123,0.762685,0.433052,0.378587,0.752845,0.261724,0.705544,0.615548,0.0586711,0.621381,0.134633,0.643932,0.579547,0.443002,0.317047,0.43023,0.263959,0.661082,0.0916584,0.974598,0.882864,0.692008,0.970706,0.378201,0.964192,0.24209,0.0802867,0.820553,0.0539988,0.390981,0.515201,0.553818,0.717926,0.135053,0.725875,0.875613,0.39464,0.990571,0.885558,0.98024,0.504722,0.307202,0.852065,0.329897,0.148731,0.281257,0.757124,0.399475,0.711766,0.712632,0.667129,0.806203,0.800074,0.045693,0.257491,0.95412,0.421084,0.84063,0.00947332,0.806569,0.741826,0.438303,0.952617,0.713638,0.926863,0.0362155,0.758012,0.482787,0.706085,0.131278,0.123387,0.25187,0.667691,0.587324,0.154232,0.181208,0.900494,0.909253,0.31938,0.0891874,0.107371,0.928069,0.680667,0.856117,0.0309547,0.495506,0.299812,0.638041,0.430822,0.341084,0.882897,0.210612,0.538842,0.201344,0.745004,0.0827104,0.185073,0.283949,0.601346,0.361815,0.382571,0.329047,0.127195,0.857217,0.0673079,0.368303,0.726944,0.694014,0.676089,0.996058,0.410441,0.357101,0.987347,0.0343749,0.264222,0.287826,0.823353,0.447093,0.936073,0.881844,0.463155,0.035718,0.729564,0.639976,0.181029,0.74516,0.986938,0.558099,0.106227,0.663031,0.203568,0.841062,0.165635,0.962254,0.663887,0.101246,0.631144,0.0877667,0.481244,0.372213,0.478068,0.770079,0.739281,0.288016,0.111808,0.703994,0.324893,0.39779,0.550762,0.0285298,0.49982,0.94201,0.923788,0.3772,0.0166678,0.861816,0.205635,0.442455,0.93273,0.656209,0.289577,0.00256366,0.169942,0.840244,0.345921,0.0367832,0.125419,0.75738,0.854132,0.406179,0.121975,0.0943447,0.783013,0.457646,0.152648,0.831719,0.693526,0.737512,0.593879,0.646599,0.0881842,0.982703,0.0144966,0.0863065,0.945,0.522296,0.447513,0.380865,0.503513,0.403945,0.898486,0.706166,0.646597,0.609174,0.359434,0.965261,0.219214,0.361134,0.590097,0.779054,0.307774,0.838892,0.785105,0.847638,0.458579,0.714212,0.231168,0.907422,0.891625,0.131285,0.865733,0.18541,0.768083,0.897633,0.688584,0.838884,0.0629804,0.890842,0.448492,0.957833,0.810119,0.930026,0.72748,0.732137,0.876358,0.365875,0.322016,0.437635,0.521839,0.287771,0.753992,0.425522,0.391144,0.476116,0.114762,0.559201,0.0835837,0.323864,0.398256,0.078661,0.361657,0.651182,0.0250448,0.407581,0.750044,0.56946,0.781238,0.458389,0.571702,0.102577,0.328978,0.462839,0.308409,0.720286,0.717706,0.926047,0.839238,0.0395417,0.899549,0.370908,0.837584,0.908208,0.132161,0.609374,0.900742,0.559656,0.828055,0.800375,0.810112,0.310637,0.0941542,0.618044,0.660568,0.478078,0.10698,0.905973,0.786186,0.570719,0.815083,0.973599,0.787382,0.722568,0.944572,0.121089,0.617547,0.102467,0.7922,0.241494,0.454392,0.774546,0.0440651,0.288138,0.0019291,0.126773,0.837491,0.441541,0.274506,0.305188,0.413007,0.984854,0.584863,0.614372,0.379747,0.160796,0.593093,0.237376,0.41465,0.603677,0.838406,0.210845,0.716527,0.815864,0.918111,|0.221192,0.534727,0.355117,0.143376,0.841982,0.210732,0.577903,0.869212,0.212075,0.329369,0.289198,0.772264,0.317471,0.0216548,0.687337,0.766162,0.900022,0.00976557,0.906235,0.262291,0.598418,0.400978,0.765547,0.88153,0.851307,0.205996,0.268065,0.831547,0.648194,0.474323,0.844926,0.174325,0.604708,0.776353,0.712665,0.282701,0.496202,0.267766,0.354332,0.484745,0.170366,0.373412,0.678162,0.936558,0.713604,0.971071,0.730285,0.836075,0.243157,0.209163,0.104168,0.971611,0.39948,0.0134296,0.852535,0.922351,0.673422,0.233987,0.855251,0.60991,0.537151,0.712657,0.361005,0.309641,0.0968533,0.231299,0.599487,0.0699213,0.887239,0.493474,0.406663,0.0422875,0.0349812,0.32866,0.994317,0.339323,0.842682,0.530251,0.682326,0.00644362,0.192543,0.574512,0.580654,0.52717,0.555674,0.764815,0.920922,0.904041,0.562124,0.683008,0.266107,0.317049,0.0218637,0.466236,0.335924,0.0534904,0.613706,0.742282,0.0113714,0.991912,0.178579,0.493924,0.486738,0.0927013,0.799658,0.857372,0.731904,0.263101,0.498923,0.48897,0.575706,0.862922,0.27043,0.993501,0.616347,0.920147,0.808841,0.165429,0.788148,0.423458,0.197538,0.414398,0.965149,0.884092,0.306929,0.11263,0.528535,0.0667029,0.0646425,0.556746,0.716122,0.46992,0.828015,0.252657,0.930437,0.366648,0.622791,0.131458,0.30272,0.876105,0.333526,0.882968,0.348094,0.305688,0.733814,0.679118,0.773706,0.671894,0.0588666,0.265971,0.754419,0.562681,0.310782,0.0795324,0.476967,0.172455,0.333638,0.799778,0.411701,0.13038,0.300514,0.761935,0.00465697,0.265926,0.457386,0.0714717,0.841168,0.624908,0.684841,0.220117,0.578004,0.0874078,0.314167,0.971482,0.966629,0.225242,0.602529,0.848658,0.0902,0.538612,0.832565,0.788427,0.22508,0.298497,0.450401,0.0349694,0.999818,0.257275,0.486475,0.222175,0.355744,0.202897,0.379407,0.735095,0.809248,0.735976,0.165664,0.651643,0.150728,0.999574,0.260721,0.0331935,0.252464,0.550349,0.76698,0.656267,0.337729,0.328517,0.0588314,0.0727881,0.0423429,0.417335,0.099236,0.854235,0.0483438,0.549447,0.769865,0.182949,0.451383,0.370998,0.688845,0.254391,0.0790064,0.265688,0.82604,0.321036,0.0136225,0.685721,0.0880023,0.237752,0.597519,0.0100881,0.839804,0.0406375,0.269146,0.801604,0.460926,0.786479,0.0896788,0.330503,0.218467,0.377784,0.574529,0.48719,0.639485,0.206048,0.576176,0.368493,0.764718,0.396105,0.560822,0.249238,0.593886,0.599021,0.121149,0.714391,0.981755,0.490698,0.000760198,0.147106,0.828579,0.0215831,0.969907,0.544836,0.146786,0.735186,0.700417,0.704013,0.258225,0.968568,0.806636,0.87706,0.299883,0.360169,0.70163,0.33968,0.324789,0.418467,0.257852,0.420647,0.858837,0.336489,0.362161,0.499102,0.675168,0.0806506,0.93882,0.854643,0.542372,0.148477,0.794851,0.0537187,0.658417,0.101102,0.0999303,0.0273248,0.0141983,0.887022,0.497967,0.324197,0.544196,0.710833,0.698342,0.193006,0.630275,0.90596,0.312945,0.651951,0.758952,0.787139,0.667078,0.319378,0.959591,0.944832,0.597483,0.629977,0.0907278,0.174146,0.360814,0.925869,0.560354,0.538991,0.620353,0.0455466,0.808999,0.190295,0.515044,0.570896,0.752917,0.119145,0.420357,0.386841,0.86368,0.543036,0.212603,0.572119,0.475468,0.287001,0.984436,0.16593,0.53994,0.606661,0.922434,0.384287,0.376495,0.832883,0.499737,0.939442,0.244441,0.252321,0.571125,0.142931,0.957391,0.0624114,0.574981,0.837836,0.805656,0.750415,0.988838,0.82113,0.588819,0.930092,0.920494,0.028721,0.854732,0.402791,0.261059,0.539616,0.278196,0.187104,0.178623,0.310673,0.259509,0.205135,0.372843,0.893967,0.587977,0.446643,0.227883,0.70185,0.510823,0.0191009,0.95121,0.887602,0.342587,0.200868,0.855152,0.54882,0.900723,0.950223,0.935128,0.448528,0.712688,0.376055,0.902624,0.157195,0.674506,0.0610357,0.546381,0.890488,0.902938,0.24793,0.234399,0.293456,0.984434,0.288101,0.994798,0.685725,0.249896,0.271305,0.0220892,0.73328,0.788202,0.127206,0.523493,0.255522,0.116799,0.968902,0.959283,0.554509,0.597948,0.776315,0.770476,0.277945,0.314764,0.684828,0.684353,0.622531,0.740003,0.586951,0.153503,0.986452,0.0331758,0.501574,0.892525,0.649042,0.154849,0.196071,0.645744,0.563282,0.108404,0.196384,0.829083,0.737619,0.981668,0.227481,0.590236,0.71098,0.550272,0.388669,0.325619,0.750091,0.633497,0.0240342,0.310495,0.243749,0.834805,0.230344,0.268995,0.270668,0.926732,0.8752,0.259985,0.680647,0.775514,0.938766,0.655825,0.730935,0.0776423,0.526194,0.762129,0.0043838,0.744351,0.223329,0.0187021,0.140809,0.573726,0.886491,0.90269,0.14489,0.471773,0.896194,0.781573,0.958317,0.231545,0.690955,0.84542,0.348166,0.428121,0.111356,0.742023,0.399884,0.576066,0.952549,0.0879729,0.253547,0.887896,0.68754,0.61724,0.65228,0.619309,0.00359005,0.85719,0.0466036,0.854957,0.445908,0.682837,0.98075,0.609327,0.0946696,0.496205,0.808796,0.908341,0.298507,0.9635,0.744888,0.545116,0.651724,0.0559587,0.289729,0.800729,0.723174,0.546537,0.0700874,0.584772,0.246235,0.281333,0.897455,0.42761,0.7743,0.30733,0.767368,0.280141,0.0369875,0.0254038,0.0674454,0.130683,0.195007,0.508089,0.0439374,0.475912,0.323257,0.890069,0.189215,0.857503,0.771542,0.671027,0.626593,0.575337,0.739721,0.421902,0.913493,0.780694,0.894324,0.437423,0.461807,0.457057,0.991542,0.947643,0.932296,0.203057,0.121455,0.150679,0.516603,0.261054,0.189024,0.507293,0.107171,0.730249,0.559273,0.23748,0.827634,0.230428,0.907549,0.19924,0.337234,0.0716525,0.137234,0.413285,0.291911,0.409269,0.675921,0.218479,0.681599,0.104567,0.386088,0.362321,0.992482,0.236722,0.00716555,0.90106,0.802471,0.906628,0.910468,0.492733,0.367474,0.37075,0.933415,0.867685,0.0897399,0.80758,0.474704,0.241887,0.896476,0.672051,0.688196,0.785211,0.291073,0.609204,0.0904332,0.231176,0.139251,0.471043,0.936281,0.00243318,0.883274,0.682145,0.989325,0.723971,0.991432,0.320876,0.138586,0.893688,0.0386447,0.313375,0.190776,0.0283853,0.719674,0.539757,0.412522,0.959358,0.173662,0.749353,0.43471,0.737923,0.653217,0.0871615,0.609106,0.280875,0.105326,0.823571,0.937224,0.683744,0.878025,0.119414,0.394685,0.859044,0.20153,0.544043,0.535491,0.21363,0.753298,0.564979,0.215494,0.361519,0.739842,0.935849,0.515236,0.667457,0.877608,0.161994,0.0172868,0.525137,0.778804,0.46105,0.616226,0.567679,0.942122,0.902213,0.17778,0.764432,0.0372703,0.807206,0.162007,0.424291,0.830953,0.148991,0.412261,0.504133,0.00180888,0.527104,0.47759,0.840535,0.549013,0.647102,0.134119,0.640556,0.900191,0.356801,0.590611,0.800637,0.608816,0.842846,0.835141,0.777342,0.0796136,0.880942,0.210474,0.293945,0.446191,0.995871,0.708801,0.625035,0.0545847,0.609637,0.737038,0.175549,0.0541283,0.589514,0.497738,0.517628,0.00890589,0.935928,0.910076,0.811738,0.717918,0.100548,0.171288,0.150498,0.341278,0.338934,0.590118,0.327843,0.246999,0.508413,0.485353,0.276209,0.391726,0.0215312,0.650208,0.688877,0.251857,0.852898,0.509272,0.175541,0.660316,0.983084,0.989255,0.0315138,0.871225,0.606852,0.916253,0.127794,0.217114,0.811759,0.663419,0.026256,0.495348,0.816656,0.35623,0.423826,0.64921,0.385756,0.25031,0.879381,0.497383,0.175908,0.30519,0.590318,0.804444,0.415282,0.911892,0.42182,0.759649,0.346351,0.763683,0.996606,0.112521,0.529181,0.230206,0.514955,0.980843,0.467237,0.426714,0.542929,0.822039,0.558127,0.203368,0.12006,0.127013,0.862108,0.873938,0.505146,0.658664,0.742226,0.561012,0.770429,0.08447,0.443418,0.388569,0.654947,0.711714,0.082018,0.830121,0.177896,0.372606,0.898463,0.584935,0.0177268,0.412911,0.723575,0.575191,0.378297,0.726794,0.381828,0.359091,0.376791,0.629239,0.85653,0.609194,0.14677,0.287164,0.651047,0.302185,0.00632113,0.0411728,0.466668,0.375719,0.462742,0.271691,0.602083,0.441833,0.867748,0.647955,0.766047,0.104506,0.25309,0.773089,0.814141,0.171182,0.241255,0.971593,0.111136,0.108182,0.963863,0.0666944,0.762588,0.548785,0.753769,0.614991,0.185457,0.790461,0.963525,0.725009,0.950031,0.820199,0.0304998,0.791324,0.184444,0.940066,0.0711358,0.874948,0.906627,0.803132,0.477808,0.328199,0.652052,0.824907,0.846039,0.65653,0.408506,0.201786,0.86894,0.929075,0.838276,0.235803,0.528221,0.327274,0.973506,0.125003,0.880865,0.796976,0.00411701,0.598318,0.932766,0.503034,0.496923,0.576194,0.169203,0.245182,0.263515,0.93879,0.749204,0.746416,0.928353,0.823353,0.446379,0.920293,0.942859,0.883545,0.986283,0.824491,0.758092,0.354399,0.80882,0.806124,0.552927,0.486785,0.2902,0.9201,0.929291,0.0401542,0.534267,0.104978,0.629912,0.872903,0.287174,0.927281,0.119435,0.467548,0.229733,0.264035,0.184338,0.0445937,0.0800523,0.0900264,0.553612,0.0351968,0.859957,0.891108,0.22457,0.798058,0.70522,0.142022,0.0781842,0.178085,0.0344024,0.983599,0.613874,0.352085,0.334952,0.00630385,0.685666,0.528457,0.704461,0.169919,0.103449,0.61813,0.969595,0.310658,0.125852,0.279403,0.110432,0.69794,0.126757,0.55086,0.554144,0.097163,0.057777,0.896843,0.491761,0.518537,0.467281,0.908602,0.807694,0.764339,0.928833,0.87603,0.42489,0.652268,0.885815,0.769441,0.832755,0.349767,0.950789,0.0328156,0.276517,0.714592,0.893701,0.319616,0.675459,0.0613072,0.322819,0.779815,0.779182,0.98596,0.604808,0.273605,0.812086,0.399632,0.478449,0.571774,0.354924,0.869872,0.293698,0.901167,0.906752,0.954714,0.943772,0.744972,0.34016,0.720883,0.327021,0.709052,0.633596,0.766479,0.75706,0.109593,0.369919,0.65755,|0.882787,0.0792872,0.0946059,0.528345,0.685593,0.174206,0.961254,0.310225,0.223897,0.48272,0.824044,0.617819,0.578439,0.290978,0.0246884,0.408547,0.596162,0.586151,0.435603,0.683817,0.195423,0.369195,0.757544,0.25253,0.912055,0.260395,0.724742,0.418272,0.152697,0.308822,0.347589,0.145665,0.13722,0.00549734,0.178148,0.600765,0.588221,0.205886,0.557968,0.849935,0.112303,0.195301,0.0169083,0.648648,0.307945,0.484132,0.450781,0.200273,0.654812,0.549742,0.928949,0.00900507,0.365926,0.0463887,0.549198,0.785187,0.875195,0.341473,0.661278,0.672825,0.586256,0.39818,0.356071,0.560056,0.313086,0.887788,0.631831,0.123677,0.191085,0.378768,0.285456,0.694887,0.176838,0.342503,0.10368,0.819538,0.334479,0.311543,0.252003,0.342162,0.640734,0.204527,0.882131,0.0905771,0.0906636,0.873399,0.705719,0.410081,0.0174795,0.46551,0.34183,0.171692,0.570968,0.148324,0.146015,0.739048,0.230065,0.835406,0.350674,0.0351582,0.167776,0.00393438,0.131606,0.574219,0.715828,0.855471,0.176263,0.825959,0.574095,0.268197,0.453103,0.862451,0.00905949,0.51619,0.6322,0.944704,0.201819,0.830966,0.938161,0.0652387,0.381443,0.219583,0.634474,0.0946001,0.632727,0.774068,0.636835,0.764547,0.50965,0.152624,0.570354,0.136908,0.36434,0.288638,0.109842,0.820475,0.447274,0.9113,0.268462,0.239612,0.715798,0.424917,0.542328,0.814918,0.244186,0.810125,0.823303,0.971789,0.957582,0.724717,0.389196,0.394189,0.135655,0.62639,0.967959,0.901145,0.591002,0.564472,0.303119,0.792952,0.609624,0.696664,0.531165,0.869802,0.34638,0.0491696,0.227873,0.238311,0.376094,0.858692,0.582942,0.691747,0.680451,0.419137,0.581054,0.586693,0.426135,0.70971,0.309998,0.299407,0.403253,0.227898,0.581355,0.83031,0.303837,0.212433,0.55835,0.102844,0.0507869,0.927156,0.270809,0.672811,0.319036,0.126877,0.985342,0.194508,0.349362,0.342351,0.348371,0.00871372,0.117229,0.608601,0.666614,0.125799,0.784666,0.914703,0.825942,0.24522,0.598351,0.976455,0.997393,0.874255,0.606983,0.412866,0.55912,0.795684,0.920726,0.796529,0.918188,0.191601,0.710872,0.753593,0.567844,0.432145,0.308442,0.474657,0.360422,0.892327,0.0453439,0.236201,0.21073,0.784698,0.500564,0.944585,0.965367,0.21526,0.30049,0.430178,0.457741,0.344485,0.0624766,0.311147,0.40374,0.318463,0.514998,0.0297242,0.165051,0.95051,0.448521,0.892972,0.159368,0.781933,0.191858,0.430388,0.71308,0.674143,0.0628744,0.0960338,0.810509,0.267842,0.912246,0.211585,0.940295,0.530836,0.300018,0.617392,0.252348,0.686248,0.645404,0.108289,0.118534,0.263796,0.844762,0.859781,0.823363,0.291201,0.308394,0.146623,0.753013,0.189977,0.123057,0.762668,0.459166,0.816359,0.757253,0.875362,0.254718,0.282158,0.21685,0.866885,0.870095,0.0399324,0.520335,0.0574287,0.918761,0.783667,0.625643,0.558073,0.754328,0.195003,0.516083,0.168055,0.306444,0.996606,0.879041,0.649041,0.0364692,0.922206,0.912723,0.683733,0.552308,0.730206,0.283906,0.00409663,0.935303,0.509225,0.830979,0.769358,0.317864,0.108755,0.333276,0.526476,0.484904,0.0671318,0.67259,0.141399,0.503367,0.487998,0.0145299,0.728433,0.972102,0.753276,0.810879,0.426353,0.611024,0.8852,0.626872,0.743251,0.45234,0.378689,0.688862,0.964156,0.847111,0.353087,0.452153,0.487156,0.404265,0.0376155,0.953619,0.509421,0.578077,0.465158,0.69498,0.290895,0.330912,0.921704,0.716309,0.0681783,0.0744109,0.854537,0.980263,0.834011,0.169373,0.946287,0.136466,0.332837,0.445384,0.22496,0.165717,0.793626,0.666894,0.405008,0.329798,0.675263,0.795644,0.663611,0.31938,0.455528,0.243716,0.898061,0.354942,0.249851,0.897187,0.416478,0.26773,0.993693,0.206834,0.568717,0.22744,0.777084,0.364516,0.292211,0.616697,0.372005,0.447892,0.476256,0.787537,0.49946,0.678937,0.689025,0.951689,0.654896,0.401704,0.414637,0.296558,0.406116,0.29424,0.653279,0.201027,0.681068,0.0097385,0.544599,0.900508,0.681553,0.412449,0.140205,0.132596,0.499152,0.787403,0.181074,0.377072,0.534616,0.158212,0.706533,0.792329,0.617349,0.600028,0.722527,0.503837,0.357333,0.469514,0.550738,0.990951,0.17266,0.864859,0.0798866,0.460457,0.675262,0.28907,0.268353,0.0315539,0.45251,0.445348,0.435558,0.212423,0.100066,0.704051,0.508292,0.658011,0.723059,0.119712,0.69489,0.603396,0.525109,0.174655,0.423451,0.728094,0.62868,0.264042,0.0831498,0.38804,0.170518,0.123145,0.207067,0.483698,0.246095,0.235967,0.510224,0.191797,0.16587,0.624011,0.0292693,0.738082,0.69675,0.0351022,0.745723,0.243476,0.495377,0.613473,0.281197,0.706868,0.980062,0.26684,0.339821,0.749503,0.51235,0.376095,0.449785,0.509234,0.530512,0.121696,0.808917,0.273695,0.381533,0.962268,0.421069,0.76938,0.0326564,0.786076,0.0490357,0.387908,0.891066,0.726173,0.893011,0.568891,0.84885,0.721995,0.645542,0.433164,0.34241,0.554177,0.0682833,0.888714,0.996987,0.630233,0.80285,0.724804,0.719361,0.141556,0.76635,0.26352,0.38811,0.697011,0.213877,0.712512,0.83017,0.758683,0.319576,0.298293,0.386507,0.792418,0.202215,0.269839,0.257064,0.330156,0.794316,0.863528,0.200009,0.163749,0.435591,0.324125,0.314171,0.474669,0.688887,0.207843,0.644695,0.744136,0.157259,0.811671,0.089367,0.74833,0.73306,0.913538,0.834041,0.413079,0.407444,0.0918179,0.442325,0.0787972,0.633076,0.0851145,0.646831,0.988656,0.351785,0.331398,0.809146,0.622928,0.195171,0.828168,0.0888516,0.632818,0.557821,0.407715,0.404421,0.679477,0.791492,0.0550188,0.117437,0.70968,0.267421,0.499549,0.977559,0.963479,0.526439,0.619592,0.716258,0.927167,0.832935,0.766532,0.521388,0.961728,0.175536,0.774025,0.140865,0.149841,0.0941983,0.349305,0.532916,0.179456,0.0617719,0.965809,0.24685,0.894706,0.192686,0.658251,0.0384986,0.0670478,0.972135,0.172673,0.505067,0.329892,0.991039,0.909658,0.0825235,0.158285,0.764809,0.534901,0.680385,0.100055,0.707996,0.676912,0.238614,0.23218,0.420348,0.360217,0.648088,0.693428,0.13565,0.676391,0.473312,0.865547,0.688211,0.346826,0.343921,0.753161,0.578872,0.756468,0.282756,0.0238142,0.452556,0.678092,0.258839,0.934119,0.735134,0.209847,0.821126,0.924337,0.771096,0.0408233,0.245234,0.193555,0.267592,0.214453,0.904773,0.445052,0.221179,0.456053,0.847957,0.854283,0.870316,0.11422,0.199053,0.040642,0.227415,0.710742,0.970035,0.676949,0.561172,0.00568587,0.405142,0.821222,0.495914,0.0151386,0.422263,0.629111,0.241053,0.928706,0.873172,0.00102341,0.194376,0.326147,0.0604705,0.488467,0.494932,0.507827,0.824311,0.135502,0.79238,0.570613,0.322477,0.893718,0.424115,0.48275,0.317018,0.0131032,0.630028,0.762851,0.973992,0.768296,0.931158,0.822764,0.723991,0.547985,0.232921,0.651302,0.0421694,0.548478,0.834347,0.846826,0.918876,0.839619,0.523124,0.500439,0.471878,0.547064,0.120396,0.311428,0.966073,0.693863,0.3476,0.575645,0.619189,0.709145,0.683553,0.676661,0.772995,0.974297,0.104972,0.813032,0.0449216,0.00274295,0.530638,0.16624,0.508632,0.0880115,0.618346,0.602681,0.0720996,0.4099,0.0748863,0.0770108,0.772528,0.00790989,0.814256,0.293183,0.816119,0.164545,0.244099,0.740309,0.749762,0.664606,0.026246,0.510878,0.116529,0.845955,0.924599,0.409078,0.0430158,0.385488,0.0403678,0.526833,0.775763,0.686665,0.307841,0.966684,0.892242,0.67784,0.64527,0.418492,0.450599,0.642329,0.394479,0.376611,0.187811,0.641453,0.219199,0.885314,0.542659,0.763138,0.352728,0.746839,0.622887,0.751783,0.329098,0.237135,0.854076,0.536773,0.617907,0.332616,0.647117,0.360665,0.403957,0.894685,0.489321,0.685243,0.317457,0.227344,0.0286354,0.352305,0.105775,0.310191,0.126225,0.0509154,0.00640357,0.21464,0.0206316,0.432205,0.67757,0.62352,0.343554,0.0643771,0.59278,0.137337,0.313332,0.0612535,0.799913,0.251927,0.10678,0.372773,0.508637,0.263948,0.702292,0.0494016,0.924762,0.517399,0.915224,0.717452,0.416499,0.665925,0.188626,0.639407,0.766785,0.87858,0.717288,0.637105,0.854256,0.1761,0.697206,0.478945,0.565568,0.751903,0.507167,0.131869,0.67503,0.318676,0.122728,0.578028,0.232268,0.695871,0.0706052,0.333569,0.532767,0.0873522,0.439019,0.615231,0.505182,0.223379,0.844157,0.910626,0.44758,0.0711443,0.536749,0.0984509,0.0655435,0.492039,0.547985,0.00445986,0.251748,0.929855,0.225466,0.468869,0.600819,0.458098,0.316214,0.767883,0.720356,0.339293,0.0740135,0.171932,0.312595,0.448532,0.873706,0.975493,0.0899596,0.496661,0.0662083,0.874364,0.795907,0.384143,0.46596,0.371244,0.216929,0.511599,0.0502885,0.979412,0.298445,0.662235,0.608812,0.73325,0.536604,0.898349,0.900112,0.868656,0.61273,0.538073,0.0510365,0.50666,0.659809,0.115203,0.0474131,0.736661,0.199952,0.199707,0.79675,0.816904,0.681781,0.58024,0.374639,0.836195,0.158403,0.599911,0.375327,0.0620416,0.960818,0.309891,0.551947,0.859424,0.748582,0.0676211,0.273336,0.100053,0.166967,0.0143975,0.706181,0.624557,0.319337,0.270433,0.898242,0.128588,0.973523,0.87527,0.97187,0.515375,0.923119,0.591027,0.221159,0.234519,0.31659,0.913736,0.933602,0.759199,0.164508,0.516004,0.218046,0.606058,0.170889,0.168136,0.15943,0.400264,0.356054,0.690317,0.0973553,0.372102,0.137194,0.325839,0.807545,0.269366,0.592303,0.198771,0.378032,0.821042,0.177632,0.252208,0.485838,0.943908,0.286856,0.00759268,0.200855,0.396127,0.51202,0.595251,0.115982,0.85515,0.477321,0.711152,0.403911,0.778321,0.515181,0.721777,0.106659,0.549353,0.212477,0.182427,0.949387,0.122259,0.0371272,0.544235,0.805176,0.198611,0.531198,|0.630389,0.134304,0.225427,0.900813,0.282415,0.563374,0.440166,0.308904,0.603512,0.474836,0.090247,0.731721,0.887161,0.472588,0.147342,0.715705,0.207794,0.790815,0.96203,0.427826,0.954958,0.275314,0.515516,0.350846,0.374273,0.883494,0.975178,0.639584,0.538804,0.681439,0.878214,0.817121,0.0956193,0.599141,0.0758855,0.201848,0.775737,0.59942,0.99541,0.224921,0.283724,0.597376,0.465334,0.0539483,0.501883,0.289355,0.0227501,0.752312,0.465345,0.703322,0.283327,0.466962,0.935938,0.278495,0.257503,0.781385,0.271439,0.525365,0.40714,0.0386608,0.840294,0.600223,0.713287,0.806933,0.774477,0.986253,0.398806,0.0408331,0.565638,0.988165,0.64611,0.763009,0.226645,0.51168,0.804114,0.911024,0.982953,0.710472,0.23374,0.684175,0.65942,0.186949,0.867515,0.538198,0.927915,0.290241,0.720407,0.710092,0.0867451,0.569965,0.952672,0.629081,0.855916,0.837183,0.235208,0.245411,0.791613,0.482334,0.894426,0.415051,0.323135,0.578113,0.132504,0.0481408,0.0551091,0.364244,0.323891,0.37972,0.412467,0.421822,0.93458,0.197178,0.856224,0.140594,0.750045,0.334765,0.690037,0.857208,0.269671,0.702349,0.959208,0.859244,0.157699,0.949646,0.415489,0.558661,0.592262,0.901709,0.122194,0.567127,0.210117,0.0162176,0.655809,0.166029,0.898138,0.252073,0.412178,0.923257,0.0481194,0.314378,0.68967,0.65334,0.993992,0.693137,0.719715,0.339335,0.622137,0.467057,0.510503,0.1442,0.5019,0.704319,0.88365,0.0458856,0.0808281,0.98095,0.999041,0.840727,0.451432,0.572066,0.581255,0.904261,0.640898,0.976089,0.883165,0.65084,0.859816,0.547217,0.936451,0.947045,0.189838,0.36013,0.717706,0.513742,0.482254,0.88747,0.984573,0.101004,0.660679,0.176848,0.43993,0.970507,0.0915915,0.609953,0.978193,0.725869,0.211373,0.726525,0.102561,0.546286,0.975495,0.658597,0.593561,0.207677,0.7988,0.909727,0.973784,0.960945,0.377581,0.0982072,0.0788031,0.129533,0.211818,0.18004,0.807056,0.81056,0.990513,0.15104,0.67452,0.461944,0.00510633,0.705485,0.632071,0.430303,0.424334,0.539284,0.518178,0.392147,0.108308,0.715846,0.71235,0.707973,0.150327,0.636737,0.390161,0.0790167,0.179136,0.158872,0.887943,0.868085,0.0852727,0.52191,0.253271,0.395525,0.92037,0.0941969,0.0712163,0.135286,0.356772,0.616299,0.53772,0.553023,0.0122504,0.235147,0.47769,0.707826,0.266355,0.51735,0.35093,0.581597,0.0871192,0.219446,0.808503,0.828497,0.249659,0.276187,0.825018,0.338876,0.698568,0.258975,0.557363,0.919028,0.957791,0.257203,0.769105,0.578502,0.300799,0.599775,0.101273,0.850412,0.961066,0.217777,0.957516,0.932447,0.874665,0.534537,0.0694417,0.665045,0.784092,0.847972,0.569391,0.0402973,0.467382,0.71818,0.0318498,0.109956,0.880288,0.993075,0.997547,0.881149,0.120268,0.171264,0.962025,0.311952,0.738324,0.908,0.136147,0.936793,0.0352767,0.519535,0.655718,0.601807,0.925292,0.740538,0.94776,0.788069,0.524596,0.401599,0.865432,0.344891,0.577403,0.772972,0.758817,0.933652,0.938114,0.106814,0.613874,0.141697,0.545202,0.487716,0.310358,0.650112,0.790257,0.435858,0.375666,0.190756,0.511234,0.769321,0.888309,0.324452,0.281942,0.303039,0.0908433,0.137466,0.499509,0.970502,0.437187,0.602292,0.134732,0.0260572,0.807393,0.989339,0.12979,0.435076,0.675368,0.0113322,0.996875,0.493213,0.460541,0.252371,0.614592,0.314026,0.6141,0.354289,0.419433,0.456293,0.726254,0.627939,0.333883,0.196738,0.721445,0.850229,0.973884,0.527392,0.56731,0.459897,0.266871,0.581928,0.472751,0.723498,0.873537,0.668951,0.523864,0.925278,0.601166,0.386507,0.650811,0.124085,0.831084,0.145098,0.311584,0.122506,0.189116,0.471977,0.959567,0.995765,0.113245,0.406318,0.817048,0.541435,0.306449,0.432006,0.133412,0.0546243,0.669995,0.898694,0.656735,0.314401,0.728158,0.184232,0.460999,0.71886,0.175163,0.0071736,0.378148,0.0315043,0.0416198,0.134027,0.392916,0.861207,0.395854,0.554154,0.149271,0.797575,0.762024,0.915824,0.919962,0.916249,0.882422,0.531928,0.236142,0.348489,0.325116,0.0764629,0.812888,0.0547454,0.947317,0.143949,0.517832,0.518182,0.447529,0.574269,0.562317,0.886369,0.510286,0.943024,0.186392,0.313075,0.381843,0.584454,0.446678,0.557035,0.744768,0.00276053,0.971793,0.926728,0.259249,0.698904,0.39713,0.444372,0.925187,0.377526,0.559177,0.311663,0.853465,0.205393,0.925674,0.789701,0.088841,0.136549,0.455528,0.612862,0.724473,0.162948,0.813564,0.527777,0.763777,0.953774,0.0556768,0.617184,0.81385,0.968102,0.780269,0.96959,0.0784028,0.075494,0.603183,0.511488,0.898605,0.547953,0.891618,0.385047,0.600532,0.877954,0.31772,0.397717,0.0495024,0.376414,0.0451181,0.401802,0.463529,0.795336,0.00887734,0.606091,0.66604,0.94713,0.988507,0.184814,0.906026,0.99144,0.0302336,0.0359561,0.293083,0.797069,0.338368,0.321839,0.519203,0.368558,0.045464,0.384767,0.646662,0.637424,0.149291,0.928132,0.436003,0.375266,0.495234,0.474389,0.980762,0.408321,0.506165,0.360195,0.0137724,0.231895,0.18266,0.803071,0.823605,0.71144,0.857872,0.328438,0.429109,0.979264,0.699249,0.0613269,0.7267,0.411746,0.679476,0.173666,0.272646,0.664233,0.891456,0.483068,0.611651,0.921822,0.972982,0.00705171,0.847699,0.746946,0.939664,0.413838,0.69322,0.574701,0.167617,0.434878,0.204636,0.435767,0.162523,0.397367,0.602091,0.947228,0.72634,0.745465,0.829737,0.335709,0.493482,0.6124,0.0530136,0.317771,0.299018,0.652121,0.0185826,0.663474,0.259141,0.375193,0.733516,0.34225,0.649469,0.481419,0.0118543,0.662173,0.594834,0.107325,0.0184658,0.409124,0.322518,0.509619,0.21418,0.352369,0.878278,0.798032,0.116284,0.462725,0.496811,0.751207,0.686345,0.906234,0.866022,0.372073,0.497455,0.647251,0.0991534,0.606338,0.296259,0.42444,0.876359,0.787183,0.0462639,0.754527,0.0181139,0.0109245,0.843135,0.69423,0.613431,0.860486,0.914271,0.372231,0.366296,0.329373,0.033757,0.453547,0.0370359,0.463517,0.374617,0.577399,0.0531846,0.654029,0.0129945,0.33543,0.664489,0.533217,0.894833,0.138518,0.42462,0.45827,0.124708,0.504198,0.118567,0.221111,0.822782,0.1638,0.442687,0.965686,0.701225,0.840502,0.993351,0.182159,0.326126,0.928856,0.927724,0.899882,0.787064,0.772967,0.481905,0.080045,0.968279,0.68497,0.657252,0.117009,0.629027,0.234668,0.0371056,0.523821,0.696651,0.0487227,0.8204,0.98765,0.458887,0.800597,0.132705,0.939649,0.835974,0.00714618,0.295861,0.0276983,0.789289,0.462381,0.943006,0.949037,0.84907,0.71054,0.633025,0.639494,0.0112336,0.489076,0.877754,0.310306,0.533316,0.428962,0.396925,0.986337,0.348262,0.579941,0.60073,0.466404,0.191755,0.318638,0.82675,0.603079,0.430586,0.342161,0.406056,0.30074,0.155429,0.549715,0.381654,0.682264,0.847352,0.828182,0.112496,0.267864,0.547397,0.507033,0.752358,0.223195,0.476014,0.73128,0.205321,0.235747,0.0211129,0.376127,0.269523,0.871615,0.527831,0.181088,0.778631,0.183517,0.379456,0.675194,0.722528,0.532335,0.161915,0.49672,0.811832,0.191429,0.124368,0.285998,0.281288,0.976339,0.849062,0.493484,0.489792,0.98611,0.960425,0.278592,0.820833,0.561244,0.176497,0.0486463,0.903425,0.730833,0.91714,0.28681,0.244874,0.632522,0.492526,0.509606,0.0779893,0.430012,0.128866,0.163495,0.21225,0.213172,0.639121,0.286313,0.970557,0.271897,0.929151,0.0549387,0.111155,0.93942,0.764164,0.212999,0.667786,0.385931,0.528762,0.663692,0.403444,0.0612981,0.0968277,0.0152518,0.408228,0.640273,0.765697,0.0410695,0.359684,0.81249,0.909511,0.500664,0.394168,0.477008,0.694242,0.857694,0.998878,0.166736,0.495797,0.997016,0.430409,0.874712,0.227369,0.0267586,0.713942,0.120491,0.142232,0.715994,0.974619,0.925101,0.123241,0.861298,0.547594,0.635626,0.754429,0.604439,0.269494,0.882764,0.776811,0.157155,0.548782,0.859439,0.740893,0.0739647,0.571694,0.933679,0.297434,0.7915,0.899913,0.661659,0.203062,0.417491,0.889309,0.0804424,0.379792,0.0718733,0.688305,0.99515,0.834052,0.559037,0.970377,0.866941,0.574324,0.887903,0.91693,0.0449808,0.799224,0.669956,0.386243,0.244932,0.446278,0.0356181,0.220734,0.720289,0.831941,0.980175,0.397595,0.723884,0.0213931,0.125518,0.968153,0.945697,0.239894,0.225179,0.0249417,0.406091,0.275414,0.818191,0.239514,0.21362,0.298898,0.811742,0.162807,0.23356,0.213959,0.846652,0.849195,0.18457,0.594602,0.452938,0.730849,0.254329,0.394919,0.199633,0.288806,0.268339,0.157848,0.340959,0.0274758,0.739625,0.0111764,0.676702,0.345366,0.305538,0.523724,0.617095,0.148587,0.48907,0.632711,0.519004,0.379935,0.32535,0.391352,0.603803,0.870618,0.46642,0.212949,0.360626,0.254411,0.186358,0.675635,0.384529,0.764816,0.208999,0.0140898,0.874033,0.562662,0.780202,0.211784,0.532361,0.879801,0.385934,0.186662,0.121824,0.328455,0.48808,0.570758,0.484264,0.527043,0.0740081,0.486279,0.276375,0.866835,0.279541,0.161989,0.542724,0.388193,0.427829,0.834844,0.616239,0.0891163,0.205337,0.909845,0.86192,0.781834,0.425179,0.261256,0.073281,0.433588,0.957724,0.843832,0.986193,0.253646,0.863312,0.0857982,0.495681,0.13991,0.198086,0.240831,0.914422,0.0933917,0.548448,0.162683,0.0550125,0.886747,0.410297,0.362719,0.422621,0.521142,0.69253,0.0136397,0.344492,0.157333,0.203704,0.287539,0.978984,0.0566515,0.483089,0.392016,0.732072,0.338424,0.57001,0.251261,0.622105,0.792706,0.200937,0.400458,0.36448,0.695491,0.0629001,0.702402,0.876477,0.101279,0.0185385,0.805349,0.289704,0.161032,0.860812,0.911088,0.949881,0.700913,0.826097,0.941556,0.912845,|0.836053,0.360869,0.562985,0.269992,0.628722,0.766357,0.370214,0.1418,0.970945,0.746805,0.828559,0.249335,0.690163,0.179479,0.154262,0.304064,0.695291,0.428578,0.99458,0.206714,0.615841,0.18953,0.505819,0.321316,0.245032,0.371264,0.707994,0.789156,0.479697,0.295402,0.376493,0.474199,0.92169,0.61789,0.803907,0.664734,0.882164,0.809417,0.38432,0.650488,0.411149,0.753733,0.42814,0.400147,0.117188,0.690871,0.704635,0.227834,0.787117,0.0912004,0.34439,0.401223,0.249399,0.55812,0.688469,0.499597,0.235414,0.518726,0.62727,0.356932,0.886862,0.278227,0.193233,0.0316327,0.113074,0.339823,0.517286,0.405037,0.444338,0.0686364,0.784804,0.826555,0.850896,0.256573,0.397623,0.340112,0.298017,0.445503,0.0968133,0.51649,0.971865,0.316515,0.498416,0.663474,0.524518,0.643974,0.0702281,0.952961,0.682958,0.778068,0.417282,0.763076,0.828356,0.464332,0.506887,0.986515,0.373932,0.781888,0.0056783,0.588036,0.49891,0.417552,0.956447,0.996206,0.936242,0.366438,0.794667,0.545676,0.450205,0.446767,0.324661,0.298488,0.63771,0.426691,0.265608,0.717519,0.107447,0.623221,0.559685,0.525229,0.105807,0.940311,0.84861,0.672699,0.611677,0.826174,0.0358015,0.465474,0.00472075,0.440857,0.750223,0.964261,0.172702,0.0510694,0.562615,0.683484,0.311786,0.430643,0.582087,0.159919,0.943392,0.424547,0.695596,0.708672,0.0527478,0.151828,0.209918,0.629105,0.0142881,0.643074,0.372676,0.894958,0.319614,0.115471,0.616392,0.15919,0.229207,0.598074,0.311688,0.259064,0.0371137,0.514827,0.702842,0.861075,0.301049,0.364633,0.314799,0.492347,0.0838436,0.790639,0.859713,0.400037,0.869479,0.880092,0.704949,0.860825,0.981105,0.254297,0.0243568,0.697184,0.0868039,0.748366,0.174423,0.828952,0.896559,0.786391,0.748388,0.281135,0.35338,0.216617,0.362189,0.357972,0.794846,0.425781,0.870062,0.743799,0.857202,0.0692636,0.576796,0.217357,0.831082,0.622922,0.261003,0.243928,0.503286,0.139752,0.65537,0.634626,0.570218,0.900641,0.538677,0.911706,0.608462,0.910511,0.754428,0.731731,0.102351,0.2311,0.421143,0.0265143,0.06661,0.131031,0.0914153,0.939721,0.164708,0.741875,0.663106,0.596691,0.0333915,0.935239,0.621638,0.0992979,0.148671,0.249234,0.447875,0.984634,0.362151,0.826,0.283743,0.817922,0.0892931,0.959651,0.919935,0.727579,0.476522,0.638411,0.547912,0.10418,0.0885231,0.899879,0.460478,0.521827,0.627606,0.94653,0.516704,0.922061,0.381131,0.514717,0.902783,0.759416,0.304813,0.788708,0.558667,0.912935,0.581744,0.978988,0.306832,0.469695,0.841655,0.543596,0.800741,0.113393,0.980532,0.0464473,0.460533,0.336613,0.0445749,0.445472,0.361003,0.0622169,0.921905,0.386999,0.577185,0.23219,0.774019,0.555529,0.858966,0.96763,0.805924,0.961024,0.0119085,0.764982,0.474377,0.810302,0.673375,0.254155,0.592341,0.909587,0.872493,0.474425,0.0697712,0.257189,0.938994,0.610423,0.500256,0.749585,0.269515,0.264763,0.159479,0.203417,0.748479,0.333821,0.442878,0.0697876,0.13675,0.664067,0.998599,0.44123,0.286253,0.65279,0.395777,0.0463222,0.700157,0.692646,0.0082286,0.752395,0.773444,0.950658,0.56441,0.827509,0.724754,0.911481,0.544063,0.719991,0.528,0.450578,0.553587,0.0881522,0.0800903,0.158343,0.0853607,0.498061,0.810915,0.664965,0.919607,0.217658,0.889564,0.249373,0.150517,0.192592,0.747514,0.90143,0.570861,0.51358,0.00824815,0.534181,0.364842,0.899945,0.832615,0.0877439,0.834765,0.893631,0.707405,0.0655885,0.165198,0.853425,0.229431,0.961053,0.155916,0.11802,0.335273,0.827893,0.609005,0.963242,0.290007,0.177521,0.593604,0.171261,0.460138,0.0381612,0.868218,0.0306157,0.334103,0.132119,0.901581,0.519171,0.324261,0.275385,0.0382857,0.277105,0.99887,0.998822,0.645718,0.202873,0.0536278,0.893963,0.0213491,0.462396,0.338023,0.278195,0.234031,0.751333,0.213952,0.145328,0.872869,0.665637,0.581135,0.489769,0.651092,0.0965208,0.544937,0.990766,0.209698,0.855389,0.734769,0.45533,0.461231,0.759958,0.281176,0.8599,0.675899,0.291144,0.016573,0.250218,0.514996,0.931294,0.156421,0.601684,0.473858,0.606757,0.0922188,0.841099,0.568039,0.799632,0.66592,0.988009,0.755495,0.192184,0.790297,0.0225235,0.34097,0.950286,0.0214084,0.719612,0.20254,0.289185,0.959058,0.685301,0.687869,0.937366,0.145699,0.607773,0.161944,0.502181,0.485018,0.723732,0.868535,0.608763,0.27813,0.079903,0.533455,0.31746,0.405707,0.666082,0.579622,0.0437466,0.441679,0.252235,0.500065,0.512196,0.547353,0.544198,0.973001,0.92157,0.305664,0.64584,0.234152,0.131833,0.661957,0.508704,0.582319,0.334959,0.0235897,0.0274371,0.770177,0.660347,0.449609,0.763976,0.432593,0.215058,0.141277,0.0324613,0.687704,0.932561,0.0926124,0.703673,0.734671,0.874168,0.115614,0.466244,0.287702,0.378555,0.807567,0.54751,0.293471,0.267693,0.55617,0.921,0.728372,0.0483502,0.831879,0.0451561,0.954677,0.817821,0.44244,0.0727449,0.839079,0.721922,0.264812,0.122353,0.157872,0.319696,0.103178,0.100396,0.822477,0.095373,0.665891,0.31564,0.486696,0.827974,0.240679,0.521357,0.700052,0.723005,0.0476552,0.24129,0.981431,0.15315,0.30933,0.236213,0.667411,0.00992018,0.0420531,0.42937,0.215085,0.127367,0.535299,0.765416,0.818192,0.35395,0.0689521,0.137993,0.747861,0.18912,0.333282,0.130396,0.309278,0.173675,0.428848,0.737199,0.111391,0.0209594,0.714353,0.952714,0.0406049,0.47046,0.201357,0.549912,0.0945442,0.697944,0.440215,0.392898,0.0703555,0.41819,0.688759,0.143675,0.554008,0.855619,0.509768,0.64735,0.78298,0.599009,0.790643,0.823582,0.317889,0.614379,0.278871,0.866333,0.750551,0.28533,0.328255,0.320651,0.0153503,0.899134,0.542084,0.370435,0.652614,0.810842,0.50753,0.617391,0.780693,0.996411,0.913719,0.399856,0.549785,0.416093,0.398283,0.642086,0.205462,0.377989,0.89784,0.715702,0.161063,0.984099,0.974691,0.952215,0.598294,0.0509658,0.176306,0.941159,0.518117,0.385742,0.648939,0.488217,0.340851,0.701069,0.363157,0.965842,0.308765,0.609129,0.361006,0.273133,0.319581,0.937436,0.480739,0.596131,0.463618,0.193517,0.175681,0.134944,0.783398,0.160918,0.760272,0.32138,0.390266,0.814826,0.819784,0.0982936,0.00560194,0.46925,0.428478,0.72777,0.666155,0.401693,0.144056,0.736979,0.425426,0.161456,0.261296,0.359706,0.688587,0.82129,0.742614,0.844971,0.757169,0.735208,0.133432,0.210384,0.037056,0.96479,0.0546452,0.463213,0.80099,0.246241,0.591916,0.445512,0.341404,0.0338115,0.932499,0.819974,0.407779,0.264988,0.71835,0.0735937,0.118277,0.969968,0.65817,0.228574,0.818376,0.00355953,0.49436,0.639857,0.328143,0.600281,0.374459,0.971865,0.355483,0.186429,0.581527,0.829291,0.219573,0.601265,0.256087,0.378027,0.92938,0.863313,0.822282,0.338196,0.367136,0.0502822,0.719475,0.707032,0.979718,0.138378,0.190911,0.388934,0.852211,0.457625,0.398709,0.196971,0.294067,0.473021,0.5261,0.972994,0.756607,0.708649,0.79925,0.196632,0.612432,0.0662107,0.735117,0.630125,0.0255143,0.16441,0.404482,0.613477,0.888166,0.721441,0.612051,0.459946,0.173371,0.568853,0.741106,0.238163,0.646459,0.561924,0.458609,0.939431,0.433715,0.653262,0.72457,0.639774,0.404846,0.395065,0.150791,0.0444413,0.140648,0.911253,0.778913,0.611232,0.202259,0.159762,0.87647,0.211977,0.935933,0.345618,0.779669,0.491004,0.450766,0.956852,0.694126,0.295953,0.218842,0.707097,0.526758,0.38232,0.440314,0.421883,0.407849,0.623902,0.986145,0.152204,0.176712,0.266221,0.716058,0.465103,0.00534695,0.773836,0.052361,0.942651,0.788876,0.268165,0.752141,0.0322728,0.349365,0.0122752,0.394345,0.113695,0.939101,0.466624,0.0421833,0.887209,0.280696,0.0461234,0.855607,0.199315,0.228118,0.508657,0.820732,0.577948,0.348993,0.384477,0.0103912,0.41801,0.224761,0.142757,0.794803,0.370127,0.187028,0.352824,0.672435,0.687485,0.472971,0.676324,0.545341,0.913526,0.448954,0.486225,0.738644,0.0662769,0.376638,0.934372,0.717643,0.198877,0.134676,0.940086,0.467598,0.838549,0.115489,0.373362,0.334803,0.213653,0.280908,0.666543,0.0672238,0.954822,0.200959,0.582946,0.710129,0.933548,0.292194,0.428852,0.401499,0.404077,0.426737,0.435428,0.711881,0.7049,0.168716,0.29093,0.160106,0.202979,0.3278,0.646217,0.67851,0.490417,0.82417,0.812585,0.579554,0.978037,0.523759,0.902726,0.589333,0.784723,0.613733,0.209259,0.556141,0.0251673,0.778455,0.739945,0.227631,0.995843,0.742937,0.995772,0.779092,0.125544,0.872729,0.228415,0.632017,0.106431,0.537933,0.0463503,0.166522,0.210501,0.771573,0.84677,0.400194,0.39536,0.206489,0.526517,0.605888,0.837796,0.103048,0.830431,0.786556,0.865043,0.192713,0.91892,0.463343,0.788695,0.770872,0.981765,0.442125,0.863664,0.787282,0.962229,0.118802,0.123951,0.37719,0.387924,0.29195,0.991805,0.0597709,0.925138,0.933583,0.57046,0.501298,0.255776,0.868683,0.0527058,0.438663,0.437229,0.154545,0.652125,0.380571,0.936917,0.260331,0.0447016,0.50895,0.561307,0.599889,0.188486,0.192449,0.44437,0.879533,0.957081,0.53274,0.840505,0.469119,0.496214,0.0326756,0.7298,0.862185,0.508792,0.702363,0.069641,0.361043,0.714194,0.0113037,0.522792,0.960841,0.605682,0.319519,0.953044,0.69158,0.634966,0.047875,0.871553,0.419918,0.40357,0.769917,0.307723,0.835806,0.355219,0.490765,0.101235,0.852922,0.732276,0.670998,0.213844,0.251826,0.808794,0.0593832,0.1253,0.243281,0.357321,0.332799,0.985636,0.970257,0.854372,0.460533,0.84303,0.0699733,0.792481,0.532241,0.485104,0.581585,0.148901,0.168873,0.415667,|0.183571,0.478634,0.873686,0.475381,0.718816,0.590025,0.375434,0.823482,0.0710537,0.236486,0.353692,0.998402,0.633544,0.92375,0.0537894,0.374851,0.538742,0.385893,0.0558321,0.321063,0.751553,0.510789,0.195458,0.921949,0.882682,0.808479,0.591254,0.123712,0.441273,0.139549,0.736733,0.97369,0.37645,0.812698,0.0249578,0.975546,0.473622,0.590801,0.248453,0.583001,0.0764325,0.0781711,0.485682,0.78649,0.688397,0.000598907,0.761491,0.815377,0.61604,0.711041,0.874973,0.354435,0.138047,0.745852,0.839576,0.895505,0.542903,0.949323,0.895774,0.582166,0.763519,0.38533,0.80127,0.595142,0.244712,0.522433,0.328796,0.391787,0.724938,0.828031,0.653129,0.80796,0.369636,0.831974,0.276718,0.742055,0.236354,0.142984,0.414154,0.661689,0.226261,0.687938,0.324068,0.350645,0.435841,0.123601,0.0845191,0.556363,0.206916,0.593461,0.86728,0.921795,0.143121,0.369734,0.975725,0.487037,0.951182,0.392182,0.260614,0.460183,0.0897641,0.128352,0.771309,0.285697,0.762007,0.99395,0.0663396,0.476659,0.710743,0.581852,0.803374,0.587822,0.819534,0.496413,0.42422,0.677639,0.331648,0.929517,0.57112,0.174634,0.496767,0.017535,0.20429,0.459524,0.0595272,0.926171,0.75168,0.210555,0.21113,0.0576708,0.424857,0.203651,0.525524,0.374827,0.38457,0.881107,0.616693,0.935436,0.517153,0.493778,0.921409,0.24878,0.793116,0.53472,0.780212,0.971116,0.846552,0.408283,0.0369843,0.43109,0.988232,0.99284,0.228841,0.00211257,0.511604,0.997967,0.939985,0.778813,0.907515,0.416737,0.683232,0.540303,0.273372,0.114574,0.239271,0.364088,0.967363,0.426343,0.0574667,0.965067,0.00956643,0.470972,0.432706,0.482926,0.353928,0.643349,0.802262,0.791363,0.918655,0.975945,0.416761,0.844459,0.439825,0.295234,0.815687,0.765178,0.929168,0.183346,0.765879,0.58423,0.251149,0.511983,0.701577,0.728613,0.130266,0.985909,0.373927,0.28724,0.837588,0.447026,0.708159,0.360384,0.886861,0.624773,0.802868,0.118029,0.807871,0.208057,0.243864,0.297878,0.565627,0.83014,0.919073,0.654894,0.300417,0.80553,0.620876,0.430409,0.743144,0.568754,0.427639,0.808609,0.715827,0.629752,0.266283,0.883323,0.690803,0.887637,0.836359,0.0826212,0.623281,0.130725,0.31779,0.168222,0.307047,0.0165457,0.984389,0.496592,0.480935,0.489766,0.816213,0.757641,0.0995929,0.027347,0.545427,0.18411,0.0691397,0.133923,0.776346,0.0250341,0.0448703,0.981739,0.919003,0.730722,0.457203,0.583531,0.918635,0.912262,0.871797,0.391789,0.967541,0.571839,0.804335,0.334031,0.749795,0.332784,0.892236,0.0860559,0.399967,0.740772,0.708194,0.25597,0.802406,0.859894,0.214064,0.175037,0.187039,0.0848237,0.205667,0.814221,0.3939,0.268428,0.9119,0.391204,0.540801,0.22734,0.84425,0.392884,0.728955,0.217373,0.971731,0.445529,0.445801,0.923593,0.935759,0.131527,0.387576,0.0770849,0.224497,0.366324,0.978777,0.186961,0.416135,0.356346,0.323312,0.302462,0.7322,0.121884,0.417259,0.252348,0.329179,0.472231,0.38499,0.128721,0.329948,0.116974,0.31572,0.947583,0.452876,0.517686,0.721409,0.394243,0.134872,0.701856,0.033215,0.337758,0.690582,0.407701,0.47915,0.150511,0.569507,0.636597,0.469215,0.0480616,0.902141,0.885457,0.83804,0.771223,0.683491,0.399685,0.458403,0.821372,0.445982,0.468343,0.344256,0.185223,0.233035,0.614713,0.824378,0.767145,0.438181,0.328476,0.474009,0.33519,0.646432,0.311321,0.350383,0.148525,0.1748,0.788004,0.744573,0.94565,0.0441945,0.163204,0.815266,0.0283284,0.581596,0.783831,0.288108,0.252725,0.286721,0.892585,0.47804,0.671777,0.470536,0.0121493,0.41309,0.711793,0.00854552,0.885056,0.835626,0.876378,0.890306,0.0699409,0.996392,0.416303,0.616384,0.584868,0.0250055,0.60736,0.590734,0.718539,0.335765,0.709774,0.48378,0.284275,0.805193,0.39613,0.728584,0.632057,0.110066,0.0626077,0.380949,0.55719,0.734637,0.948522,0.341494,0.873924,0.483637,0.191496,0.304671,0.884658,0.0413218,0.100687,0.0685174,0.381623,0.71727,0.287454,0.3998,0.255774,0.432601,0.49145,0.706717,0.17885,0.200162,0.874661,0.173837,0.0462968,0.0621043,0.631884,0.428921,0.884445,0.411298,0.480271,0.348074,0.524008,0.678702,0.897134,0.836277,0.041326,0.215691,0.994714,0.368799,0.45062,0.385374,0.934539,0.858264,0.574669,0.846886,0.0623828,0.915538,0.00710231,0.653697,0.28594,0.66963,0.78114,0.696756,0.319586,0.0460255,0.058609,0.375845,0.856051,0.554401,0.660199,0.405059,0.839533,0.568729,0.949939,0.28055,0.660251,0.901815,0.13359,0.900445,0.441674,0.602905,0.672276,0.434325,0.803227,0.971009,0.934165,0.329207,0.295497,0.828164,0.849373,0.138896,0.282426,0.819933,0.668824,0.281722,0.108932,0.60291,0.770852,0.120517,0.576773,0.215732,0.457972,0.468812,0.539118,0.470023,0.906283,0.121692,0.601726,0.17892,0.758352,0.798924,0.138513,0.117742,0.634065,0.756359,0.795993,0.3358,0.514945,0.840268,0.585124,0.207113,0.199772,0.639778,0.103339,0.0848228,0.400825,0.513053,0.184721,0.536262,0.086543,0.385263,0.294711,0.0759768,0.360016,0.324361,0.399761,0.4123,0.0855491,0.0484927,0.413913,0.552331,0.454567,0.541025,0.767991,0.474815,0.329133,0.0723237,0.32038,0.904911,0.95508,0.717867,0.608434,0.815405,0.97858,0.602758,0.0811794,0.795209,0.521584,0.706891,0.501662,0.666661,0.779327,0.727997,0.483821,0.6598,0.556512,0.411186,0.730749,0.157937,0.216418,0.33578,0.984386,0.0185176,0.395626,0.864051,0.321418,0.650518,0.964022,0.837727,0.225661,0.0522525,0.20174,0.430012,0.433065,0.308509,0.196364,0.60179,0.627325,0.450805,0.850041,0.341457,0.142404,0.939873,0.354702,0.750085,0.736568,0.75433,0.525842,0.303297,0.55196,0.64882,0.414225,0.359228,0.336607,0.750886,0.410359,0.0115559,0.244097,0.782193,0.995669,0.154611,0.762188,0.369203,0.443895,0.705437,0.874373,0.531079,0.379253,0.444809,0.284183,0.285178,0.756555,0.234927,0.420464,0.270574,0.841583,0.550228,0.983449,0.413047,0.416428,0.323732,0.849322,0.399635,0.0979736,0.434786,0.988441,0.566382,0.815394,0.995833,0.288063,0.852075,0.468486,0.231184,0.300683,0.140819,0.758125,0.872174,0.513011,0.799527,0.449751,0.741574,0.067078,0.698321,0.147828,0.306545,0.979916,0.233407,0.382862,0.917711,0.250041,0.53316,0.184503,0.427105,0.549431,0.586864,0.291064,0.853282,0.768783,0.507075,0.843273,0.875327,0.0698514,0.74466,0.223042,0.876926,0.062924,0.226245,0.298356,0.641228,0.0254233,0.473375,0.426265,0.0812057,0.758884,0.0859548,0.0772318,0.287021,0.343889,0.399954,0.385689,0.71349,0.875498,0.448331,0.457068,0.0971357,0.0400723,0.369541,0.718749,0.158238,0.741922,0.0672966,0.986768,0.431507,0.320881,0.799323,0.874506,0.779638,0.726299,0.706645,0.0735487,0.0596648,0.430515,0.335246,0.392798,0.44089,0.256427,0.599105,0.926909,0.543805,0.0200815,0.897873,0.433783,0.885771,0.292849,0.799754,0.954294,0.689634,0.0381105,0.661776,0.18985,0.203556,0.27736,0.889536,0.801275,0.891149,0.806947,0.264087,0.124445,0.507799,0.854288,0.820149,0.422377,0.604307,0.654083,0.69463,0.918233,0.852932,0.463676,0.393674,0.13423,0.00819963,0.96792,0.517161,0.188599,0.394982,0.965169,0.54149,0.499412,0.238799,0.991089,0.186042,0.866828,0.895109,0.295991,0.92546,0.145816,0.138018,0.228377,0.535349,0.582877,0.953245,0.246423,0.53586,0.3916,0.540585,0.214867,0.213011,0.130513,0.7026,0.469384,0.211603,0.181158,0.6945,0.94929,0.585298,0.338633,0.6026,0.662558,0.45328,0.778201,0.300816,0.590861,0.617274,0.745327,0.418148,0.685024,0.89511,0.0109574,0.7391,0.656968,0.869579,0.309084,0.981814,0.326815,0.703759,0.942796,0.59897,0.938681,0.503477,0.562781,0.268968,0.492506,0.759706,0.765075,0.0449664,0.748608,0.703756,0.705225,0.497423,0.0115995,0.56118,0.116452,0.327491,0.788836,0.281019,0.335299,0.0268878,0.921218,0.215461,0.516312,0.714085,0.025587,0.95534,0.403748,0.590463,0.572845,0.621674,0.830429,0.330988,0.880207,0.685159,0.221074,0.918497,0.405085,0.254732,0.422581,0.0270772,0.632003,0.419791,0.54111,0.735922,0.256576,0.419587,0.717972,0.580529,0.919686,0.188042,0.0243778,0.772025,0.0966871,0.25708,0.538391,0.114998,0.900377,0.943404,0.973996,0.855779,0.893721,0.737188,0.306843,0.613744,0.810108,0.0891258,0.353712,0.544689,0.190757,0.985313,0.471076,0.226396,0.0465235,0.630515,0.326166,0.383909,0.487935,0.76576,0.303384,0.228005,0.129359,0.33456,0.389799,0.480197,0.657837,0.0786365,0.349474,0.6841,0.422583,0.246468,0.831668,0.960267,0.986092,0.388871,0.92838,0.530714,0.156103,0.519989,0.911177,0.888083,0.306947,0.773392,0.893065,0.0681275,0.394033,0.238209,0.482308,0.517971,0.965125,0.500535,0.891857,0.122965,0.799261,0.778036,0.240342,0.834551,0.513631,0.244081,0.00122136,0.311025,0.04383,0.498752,0.416065,0.61066,0.146896,0.137899,0.440624,0.350797,0.9369,0.270355,0.79611,0.303486,0.215258,0.30204,0.391377,0.68452,0.0180309,0.774994,0.936556,0.589006,0.87306,0.811216,0.320281,0.760429,0.791981,0.0402474,0.404298,0.709762,0.320157,0.737016,0.446387,0.319849,0.771241,0.437881,0.524435,0.726722,0.0965261,0.424949,0.822562,0.664312,0.989548,0.0444787,0.248099,0.760006,0.125186,0.522196,0.527827,0.940695,0.431482,0.786954,0.419336,0.360274,0.378736,0.949296,0.328336,0.886132,0.0802675,0.448512,0.00169474,0.559864,0.401143,0.401933,0.867863,0.00857705,0.352941,0.426136,0.666839,0.175446,0.620414,0.744987,0.451995,0.729679,0.972601,0.8969,0.494766,0.308434,0.576411,0.936681,0.622497,|0.972753,0.339757,0.31727,0.203848,0.633193,0.325494,0.0885057,0.455386,0.736464,0.662538,0.582268,0.854503,0.275273,0.566328,0.601456,0.668248,0.848531,0.225484,0.692526,0.0751297,0.953392,0.224962,0.130818,0.332794,0.763458,0.180419,0.963878,0.898135,0.732044,0.2228,0.71199,0.12124,0.258986,0.712891,0.067865,0.534935,0.104679,0.149671,0.175477,0.541497,0.585494,0.318517,0.996694,0.5962,0.48504,0.616545,0.693462,0.657903,0.131199,0.108178,0.570231,0.465146,0.888787,0.706393,0.530627,0.47723,0.854038,0.560608,0.999508,0.0559425,0.757474,0.879242,0.979925,0.294224,0.256267,0.223217,0.468197,0.903049,0.356912,0.212354,0.554089,0.837934,0.0700139,0.918519,0.150228,0.837967,0.256552,0.911891,0.618005,0.486069,0.755227,0.128426,0.208869,0.0021171,0.0205052,0.643012,0.416766,0.45379,0.997791,0.263465,0.738307,0.6888,0.872222,0.401363,0.0458459,0.272328,0.174328,0.86584,0.895268,0.283093,0.251238,0.0141942,0.544231,0.240158,0.876683,0.3572,0.701075,0.571679,0.148862,0.794822,0.999502,0.434814,0.378717,0.407979,0.220024,0.640219,0.516335,0.134024,0.531692,0.93151,0.738499,0.951716,0.302771,0.960646,0.79357,0.624647,0.0802631,0.111729,0.0270285,0.823502,0.0137773,0.869375,0.156601,0.444152,0.409229,0.892531,0.610495,0.603369,0.713137,0.216866,0.823402,0.102996,0.11027,0.403996,0.798965,0.690451,0.0244455,0.957026,0.675599,0.849257,0.122314,0.280669,0.24818,0.447487,0.278604,0.823516,0.175267,0.931316,0.367037,0.765591,0.295658,0.140255,0.834367,0.0400248,0.389229,0.633965,0.868869,0.655589,0.505529,0.975024,0.369229,0.326058,0.255596,0.916801,0.0889034,0.909057,0.0748676,0.56909,0.975975,0.501404,0.590804,0.224799,0.041686,0.807407,0.746212,0.339308,0.0696217,0.0752966,0.831636,0.640679,0.661812,0.836678,0.769816,0.0925587,0.80802,0.592837,0.516982,0.0662967,0.612457,0.238754,0.056134,0.578335,0.765752,0.0382254,0.544346,0.10912,0.488265,0.545427,0.927189,0.672552,0.382442,0.721904,0.0423828,0.394396,0.796359,0.173482,0.699524,0.963291,0.808583,0.879087,0.464281,0.677432,0.487281,0.110422,0.393179,0.0368241,0.988657,0.818047,0.44793,0.521414,0.652538,0.746822,0.59182,0.810205,0.79778,0.990162,0.142481,0.767036,0.648196,0.500324,0.0303607,0.203064,0.52389,0.442803,0.187159,0.306138,0.693719,0.666132,0.35388,0.683519,0.416612,0.713318,0.552811,0.530982,0.753672,0.687132,0.332645,0.189445,0.1174,0.372482,0.870127,0.563418,0.889262,0.60582,0.417038,0.586237,0.203166,0.957431,0.264905,0.156961,0.791967,0.348763,0.940279,0.285579,0.83484,0.570388,0.14798,0.799305,0.719092,0.897429,0.0981639,0.889744,0.696389,0.965279,0.633087,0.351442,0.906139,0.395958,0.0184767,0.883069,0.727874,0.153769,0.65551,0.659586,0.827137,0.35673,0.250507,0.209134,0.594899,0.348286,0.639899,0.174593,0.104849,0.00513667,0.39579,0.167502,0.663719,0.643631,0.282036,0.661407,0.632544,0.426489,0.879194,0.866868,0.143456,0.357618,0.631465,0.743557,0.89215,0.401157,0.763944,0.16736,0.144309,0.195397,0.000141263,0.806128,0.139145,0.0778445,0.547687,0.836066,0.676275,0.382208,0.637142,0.826329,0.887836,0.287125,0.408059,0.335515,0.822172,0.955368,0.149373,0.881315,0.241373,0.323154,0.122794,0.323803,0.75071,0.0208787,0.804733,0.812794,0.534635,0.836095,0.91341,0.267303,0.175281,0.212075,0.411005,0.873958,0.389695,0.00868821,0.560226,0.571194,0.0218272,0.185139,0.479312,0.429799,0.741638,0.989084,0.0312089,0.207405,0.71809,0.362413,0.688557,0.17208,0.682016,0.514153,0.0211566,0.830553,0.323806,0.0445559,0.357266,0.599204,0.0644456,0.0856592,0.219771,0.272859,0.960179,0.811668,0.942555,0.969092,0.190054,0.12917,0.103201,0.286337,0.443106,0.570156,0.519622,0.761799,0.014518,0.0348243,0.386037,0.303181,0.133392,0.553922,0.162786,0.112984,0.547665,0.0523024,0.29614,0.144049,0.755772,0.0311102,0.151579,0.422725,0.394921,0.278365,0.694849,0.476804,0.489144,0.164249,0.141363,0.755753,0.0379197,0.559174,0.895665,0.0540471,0.0729865,0.199531,0.137421,0.612286,0.211395,0.130975,0.175109,0.566428,0.672837,0.174477,0.287381,0.341566,0.589332,0.618093,0.762276,0.483932,0.283207,0.818414,0.556688,0.522156,0.611006,0.430134,0.971496,0.223683,0.942479,0.198103,0.435177,0.0936385,0.399825,0.103122,0.339109,0.974659,0.41498,0.244843,0.424455,0.250193,0.799708,0.543535,0.419735,0.774868,0.612389,0.0196304,0.458538,0.339304,0.650385,0.286127,0.0303769,0.679155,0.305706,0.271508,0.481774,0.865139,0.51894,0.896214,0.282651,0.612565,0.607085,0.23851,0.966038,0.885172,0.690032,0.197635,0.688942,0.0385898,0.935108,0.0183417,0.779775,0.599333,0.0395762,0.27525,0.866085,0.0288509,0.62515,0.519801,0.962701,0.23684,0.196606,0.399702,0.00733787,0.189367,0.572431,0.284025,0.121692,0.512533,0.344919,0.366804,0.0281454,0.196231,0.893145,0.167565,0.0931477,0.14815,0.626884,0.455023,0.332353,0.704129,0.685721,0.399951,0.522289,0.169579,0.0509266,0.442779,0.375867,0.659688,0.0695336,0.730681,0.467974,0.445704,0.0726926,0.778452,0.467761,0.321174,0.280567,0.307511,0.77363,0.8842,0.882297,0.307484,0.167537,0.83912,0.834372,0.138543,0.4443,0.908936,0.752609,0.52183,0.421239,0.551106,0.431138,0.482504,0.186919,0.854715,0.52295,0.441365,0.0273097,0.594138,0.262566,0.666778,0.288054,0.66544,0.610366,0.116361,0.471389,0.579378,0.75539,0.413464,0.0488335,0.757425,0.560923,0.954717,0.947863,0.186242,0.481989,0.383133,0.860479,0.995541,0.82914,0.786253,0.54504,0.185564,0.104764,0.0239658,0.299157,0.778991,0.883343,0.945465,0.260388,0.839528,0.853467,0.684555,0.132368,0.375136,0.756756,0.160872,0.849857,0.346837,0.858027,0.89795,0.27349,0.873638,0.833836,0.245791,0.486466,0.922272,0.214374,0.328815,0.974932,0.240068,0.0541237,0.722567,0.182349,0.635679,0.264347,0.828447,0.771418,0.705021,0.843101,0.594905,0.198007,0.94835,0.180881,0.256218,0.216177,0.193847,0.187784,0.780299,0.874435,0.945662,0.269879,0.590534,0.366523,0.77777,0.60046,0.37823,0.764095,0.753832,0.767202,0.522631,0.246654,0.36734,0.216182,0.0944271,0.910339,0.247864,0.231083,0.881357,0.16899,0.963926,0.578214,0.414913,0.605851,0.387338,0.574381,0.412219,0.528945,0.514096,0.885142,0.920832,0.0384184,0.20302,0.443977,0.522029,0.939246,0.0895773,0.315224,0.879058,0.607258,0.787966,0.96003,0.918229,0.776951,0.623971,0.67883,0.993705,0.312589,0.843436,0.0440003,0.258585,0.302356,0.445944,0.147541,0.238506,0.44232,0.994583,0.698292,0.334762,0.309029,0.434399,0.889227,0.0406455,0.546386,0.178541,0.137325,0.0298411,0.60611,0.756286,0.92815,0.714678,0.0933536,0.980657,0.422327,0.542071,0.621452,0.594211,0.0854119,0.342467,0.285244,0.567114,0.200929,0.23044,0.374452,0.708985,0.393172,0.938455,0.986094,0.515505,0.249334,0.0713706,0.0576867,0.805725,0.457708,0.299778,0.745629,0.600179,0.866642,0.0140829,0.735104,0.286135,0.475581,0.585912,0.177264,0.752529,0.86737,0.309002,0.215974,0.253122,0.107556,0.31489,0.332893,0.361482,0.0256727,0.128075,0.246512,0.23282,0.947413,0.003124,0.11818,0.422203,0.606085,0.555503,0.310052,0.14345,0.903124,0.766036,0.308893,0.868601,0.769743,0.381508,0.311933,0.469034,0.867618,0.919301,0.49399,0.335094,0.602598,0.776136,0.576958,0.208278,0.367324,0.0451244,0.106046,0.847432,0.201608,0.25426,0.0829018,0.795878,0.0213262,0.372555,0.933604,0.0896233,0.722229,0.575454,0.667345,0.331723,0.795887,0.257693,0.0772097,0.146539,0.770961,0.310457,0.870566,0.367053,0.581627,0.00889838,0.496284,0.723923,0.374563,0.220114,0.732966,0.444889,0.91336,0.204305,0.765636,0.216537,0.393218,0.39531,0.404265,0.338862,0.73993,0.306486,0.965904,0.588802,0.0535793,0.645321,0.734246,0.727657,0.976449,0.0711508,0.875687,0.856288,0.841871,0.31654,0.685371,0.250093,0.927393,0.316361,0.907796,0.446341,0.172297,0.670019,0.53341,0.0483284,0.163088,0.0676383,0.653094,0.799021,0.903534,0.56378,0.0895249,0.21782,0.922333,0.401639,0.40016,0.901128,0.640917,0.340633,0.37662,0.849239,0.388329,0.337275,0.403502,0.532901,0.154154,0.983805,0.313321,0.00532579,0.701742,0.653353,0.510817,0.506193,0.0644456,0.0633878,0.945317,0.639229,0.420269,0.180098,0.149244,0.897349,0.816071,0.824062,0.369965,0.59014,0.448139,0.960757,0.276778,0.31295,0.542857,0.471895,0.0659048,0.521985,0.0664897,0.407472,0.166636,0.75978,0.658083,0.31599,0.188385,0.503895,0.11083,0.114598,0.657253,0.963827,0.533768,0.75647,0.371028,0.210077,0.237627,0.213355,0.753075,0.468945,0.635477,0.617371,0.869622,0.729036,0.0295675,0.836688,0.220907,0.49557,0.739208,0.762358,0.829764,0.474168,0.858768,0.803661,0.136311,0.878012,0.238802,0.818597,0.267467,0.837428,0.118046,0.954399,0.779069,0.972372,0.518513,0.729514,0.856966,0.413599,0.80105,0.488481,0.923661,0.171825,0.264376,0.0799056,0.326339,0.0128875,0.549217,0.331791,0.178519,0.585264,0.753146,0.12914,0.336195,0.49368,0.462788,0.642389,0.800717,0.0374904,0.30188,0.694115,0.334252,0.750498,0.0561666,0.0448977,0.966259,0.718249,0.476228,0.370319,0.70221,0.0310906,0.270838,0.678451,0.978964,0.171006,0.0376102,0.329783,0.468856,0.79536,0.13078,0.242668,0.99454,0.494235,0.0358507,0.769466,0.175629,0.863098,0.54301,0.69044,0.610862,0.881529,0.290542,0.338534,0.0301389,0.721068,0.75881,0.893557,0.607455,0.94565,0.128614,0.226156,0.0692657,0.442587,0.614978,0.216096,|0.249695,0.0398487,0.0278938,0.431008,0.770977,0.378122,0.467385,0.905136,0.270242,0.734857,0.39467,0.0828831,0.940231,0.433356,0.0181991,0.759407,0.506731,0.534044,0.116374,0.639791,0.0824954,0.488352,0.482697,0.574455,0.933883,0.228647,0.212184,0.895796,0.289532,0.760372,0.00470829,0.075864,0.0799891,0.978916,0.671373,0.624181,0.815366,0.808387,0.842366,0.966195,0.00408804,0.10714,0.77253,0.139604,0.28621,0.256742,0.363757,0.679206,0.417653,0.706617,0.28736,0.754628,0.588103,0.223715,0.861898,0.255638,0.756842,0.433659,0.405909,0.475459,0.067301,0.569551,0.859892,0.528831,0.738679,0.955028,0.847414,0.0338448,0.176718,0.877341,0.781353,0.15915,0.62795,0.70159,0.946355,0.739244,0.405095,0.199458,0.712507,0.213989,0.316536,0.438924,0.00410092,0.545767,0.205451,0.225635,0.755262,0.26505,0.525331,0.0050354,0.764505,0.996638,0.465892,0.916358,0.633234,0.127916,0.378147,0.456181,0.45582,0.48735,0.0129795,0.766094,0.407046,0.174507,0.741237,0.343669,0.715146,0.652323,0.277244,0.292524,0.373587,0.345445,0.270957,0.955676,0.393404,0.591505,0.274356,0.887224,0.46282,0.940059,0.241845,0.710446,0.230129,0.546402,0.229554,0.486706,0.894799,0.59066,0.618725,0.254464,0.462085,0.0873755,0.941173,0.153008,0.948297,0.0778015,0.344938,0.965123,0.527472,0.937603,0.324591,0.232675,0.836299,0.686979,0.270348,0.492334,0.904191,0.625922,0.0890937,0.810832,0.369498,0.557929,0.558923,0.0274899,0.674235,0.395371,0.0138724,0.65819,0.0180536,0.328488,0.023441,0.0520662,0.162382,0.437644,0.256155,0.895228,0.468742,0.0539437,0.724221,0.942325,0.573734,0.84462,0.478697,0.372217,0.847179,0.609826,0.810799,0.789608,0.431975,0.602264,0.132238,0.612434,0.886165,0.0253888,0.806798,0.0513756,0.770055,0.538792,0.504966,0.988546,0.464456,0.214721,0.693075,0.79819,0.284605,0.194437,0.393647,0.640834,0.544466,0.593323,0.518756,0.824159,0.936067,0.881675,0.35241,0.665167,0.967038,0.859809,0.172822,0.0518414,0.436639,0.706293,0.233157,0.755999,0.633693,0.399887,0.297925,0.872236,0.648221,0.882012,0.156857,0.994595,0.672607,0.777038,0.167958,0.908121,0.574716,0.5698,0.352793,0.695113,0.29895,0.154487,0.94183,0.770677,0.0816622,0.219515,0.817359,0.93318,0.252096,0.914692,0.205776,0.346159,0.429551,0.464559,0.524613,0.127168,0.525348,0.856731,0.772262,0.640577,0.856984,0.119169,0.956985,0.647562,0.333105,0.249621,0.0036037,0.525495,0.633293,0.381673,0.483762,0.749717,0.744437,0.762333,0.20801,0.0197072,0.818061,0.573489,0.638847,0.0599277,0.0278315,0.273374,0.705289,0.378506,0.689732,0.886706,0.143682,0.54027,0.220541,0.768282,0.0403751,0.897958,0.289843,0.627896,0.908966,0.298163,0.505919,0.352437,0.835835,0.137592,0.326799,0.995113,0.633624,0.0781352,0.84183,0.658647,0.078734,0.530004,0.681414,0.443471,0.824681,0.851147,0.258333,0.282997,0.358985,0.251174,0.241288,0.0818681,0.603601,0.424313,0.531297,0.0182385,0.94351,0.596181,0.306075,0.06891,0.514706,0.173452,0.899614,0.740657,0.770213,0.414368,0.135334,0.810579,0.187691,0.946451,0.945407,0.252495,0.143536,0.53446,0.548828,0.000989974,0.474219,0.270093,0.741485,0.71385,0.38481,0.940699,0.451232,0.361098,0.674407,0.167461,0.948751,0.339428,0.0019837,0.880164,0.938422,0.978248,0.76999,0.11218,0.0745425,0.5549,0.458377,0.959497,0.256048,0.664935,0.759476,0.41036,0.175061,0.739065,0.818521,0.271313,0.905575,0.814038,0.18929,0.515066,0.119666,0.0632761,0.396114,0.45306,0.514676,0.74007,0.408536,0.553558,0.849955,0.762981,0.161159,0.908887,0.489454,0.84154,0.334584,0.864455,0.680881,0.724831,0.080135,0.599482,0.670577,0.720456,0.0315261,0.231827,0.227267,0.0894918,0.305087,0.331104,0.440047,0.655373,0.134907,0.363867,0.49795,0.252638,0.0113851,0.103385,0.325922,0.132028,0.359982,0.429166,0.0119177,0.384584,0.400143,0.516239,0.625543,0.36584,0.893501,0.00139052,0.0998551,0.56506,0.212688,0.0709479,0.778708,0.478932,0.378678,0.821856,0.184756,0.753039,0.997074,0.666684,0.886942,0.531005,0.948062,0.092306,0.0442067,0.916088,0.121683,0.954274,0.98397,0.735334,0.684339,0.809151,0.374993,0.440411,0.948471,0.633809,0.855019,0.186868,0.041831,0.617841,0.258266,0.43341,0.665502,0.392155,0.390441,0.790616,0.5842,0.127448,0.003905,0.301176,0.620511,0.765148,0.360629,0.46511,0.963575,0.549739,0.300842,0.589262,0.986638,0.766178,0.940546,0.968343,0.862393,0.71025,0.143544,0.0330327,0.66625,0.422334,0.918668,0.115464,0.95317,0.261502,0.329619,0.728556,0.15249,0.350895,0.154619,0.903637,0.849493,0.306812,0.464964,0.194426,0.641409,0.377323,0.901758,0.865949,0.201843,0.759535,0.816297,0.491335,0.278546,0.266987,0.76419,0.178552,0.304655,0.23573,0.327629,0.0838935,0.834671,0.612484,0.179927,0.0818338,0.901225,0.333258,0.777659,0.658831,0.812239,0.872075,0.627171,0.398247,0.547775,0.153882,0.363582,0.76176,0.47804,0.260685,0.961182,0.949944,0.602485,0.742418,0.0454322,0.661075,0.0958934,0.391618,0.811967,0.535193,0.925566,0.137585,0.779764,0.00879264,0.199812,0.244173,0.935056,0.256,0.620231,0.83186,0.437467,0.124086,0.903215,0.311124,0.727697,0.207312,0.776407,0.105496,0.256145,0.179634,0.446919,0.00870252,0.608126,0.224752,0.381783,0.267838,0.106011,0.701524,0.959256,0.518013,0.509826,0.543726,0.862192,0.684493,0.753755,0.0389143,0.817192,0.954693,0.696516,0.211363,0.594637,0.445084,0.244105,0.0248848,0.6729,0.951326,0.874142,0.259329,0.898308,0.793099,0.0612823,0.809424,0.51529,0.17261,0.752534,0.35833,0.243118,0.383821,0.0131117,0.300632,0.947829,0.132142,0.314456,0.435856,0.182551,0.35957,0.899797,0.0119303,0.700803,0.632413,0.411532,0.0508742,0.805647,0.515685,0.28524,0.013303,0.204069,0.807554,0.742882,0.79792,0.547844,0.806301,0.182716,0.693669,0.490706,0.843395,0.437906,0.729286,0.559274,0.965423,0.00359994,0.415828,0.76755,0.58179,0.428306,0.0913076,0.867827,0.480032,0.913105,0.417793,0.955127,0.58342,0.778564,0.103107,0.920434,0.727869,0.381717,0.905556,0.260672,0.335576,0.735989,0.908823,0.575877,0.583625,0.409202,0.269051,0.512335,0.620815,0.0946513,0.0710032,0.428087,0.17462,0.764872,0.595668,0.0640908,0.65885,0.721455,0.524202,0.522885,0.656324,0.125295,0.855039,0.446436,0.347466,0.800489,0.372841,0.204938,0.362482,0.0706965,0.787664,0.655949,0.0602679,0.0434318,0.590355,0.10604,0.977926,0.529734,0.185273,0.474489,0.746474,0.396914,0.529329,0.499487,0.526619,0.70153,0.554614,0.496773,0.910941,0.193747,0.139299,0.682765,0.59319,0.839162,0.957812,0.586387,0.828439,0.45793,0.0331783,0.643715,0.40105,0.623374,0.0928548,0.0353344,0.257949,0.256716,0.64261,0.9345,0.467157,0.145704,0.288582,0.212318,0.752188,0.0116467,0.998529,0.0774583,0.874703,0.2353,0.489721,0.715584,0.460996,0.194268,0.155957,0.19875,0.575109,0.159991,0.564818,0.167877,0.926595,0.687218,0.303783,0.656271,0.55647,0.394819,0.219886,0.754043,0.0617288,0.887625,0.337503,0.198399,0.923682,0.830311,0.20568,0.12915,0.236436,0.514428,0.0740108,0.942618,0.326003,0.515862,0.318175,0.665896,0.171442,0.911575,0.829146,0.247124,0.191577,0.299123,0.768607,0.376407,0.762217,0.991275,0.562806,0.350756,0.450581,0.658757,0.735069,0.898361,0.757751,0.78382,0.533186,0.613687,0.0340032,0.56586,0.679181,0.768222,0.978136,0.756302,0.244971,0.0434479,0.480685,0.251507,0.0494419,0.935631,0.15464,0.637822,0.0102003,0.56289,0.672156,0.433071,0.242114,0.927132,0.137575,0.280897,0.818584,0.687631,0.283123,0.306833,0.146066,0.0215916,0.37083,0.685348,0.560859,0.0305104,0.8634,0.438055,0.859402,0.62521,0.051931,0.972415,0.961192,0.993497,0.629833,0.332284,0.546944,0.946917,0.913054,0.563995,0.0652433,0.585559,0.293153,0.250197,0.421483,0.416241,0.398304,0.245534,0.208767,0.536645,0.724824,0.746755,0.0720239,0.359495,0.192319,0.509772,0.534513,0.991015,0.180545,0.686108,0.820824,0.136186,0.404048,0.616841,0.767018,0.904805,0.566485,0.00744653,0.663609,0.754171,0.87799,0.616894,0.712323,0.122806,0.201575,0.531602,0.804359,0.669943,0.624974,0.649378,0.293542,0.854064,0.160138,0.839898,0.517789,0.131296,0.567073,0.467284,0.758361,0.30753,0.660945,0.605923,0.22357,0.350576,0.858799,0.120471,0.789127,0.869596,0.935738,0.746288,0.272963,0.49606,0.130569,0.676432,0.418776,0.841279,0.707952,0.776259,0.261831,0.131875,0.836862,0.570567,0.175881,0.804886,0.179347,0.21555,0.333284,0.285206,0.498304,0.637,0.116006,0.513938,0.713132,0.554683,0.615635,0.369729,0.12883,0.453444,0.0541324,0.670278,0.0335237,0.778004,0.844426,0.777096,0.899774,0.526813,0.0930645,0.28544,0.38912,0.239318,0.819452,0.814578,0.882198,0.178384,0.34503,0.755748,0.48542,0.717951,0.600862,0.527164,0.437932,0.747237,0.105633,0.770375,0.0304138,0.403184,0.773574,0.729733,0.168836,0.72477,0.529558,0.379766,0.822905,0.921531,0.495808,0.911218,0.760223,0.0834434,0.615097,0.693569,0.89357,0.57987,0.233426,0.856983,0.752585,0.477448,0.991786,0.863809,0.110868,0.501539,0.958307,0.127916,0.838675,0.889609,0.807502,0.550125,0.195588,0.0203187,0.939718,0.668246,0.770146,0.980638,0.851772,0.197306,0.688244,0.0195217,0.0200307,0.641852,0.372969,0.308121,0.132014,0.69733,0.798588,0.811088,0.414729,0.57936,0.170496,0.61698,0.631837,0.287894,0.0332664,0.749601,0.765374,0.0843922,0.978286,0.711189,0.269782,0.886589,0.0487325,0.759539,0.451724,|0.18881,0.665847,0.172443,0.789342,0.531603,0.440554,0.0695997,0.222579,0.506092,0.259695,0.115606,0.58891,0.0389157,0.686653,0.0136973,0.46119,0.498934,0.669056,0.56823,0.291155,0.340611,0.3497,0.123839,0.626774,0.511324,0.296393,0.407279,0.458465,0.850838,0.785319,0.260378,0.0946527,0.615159,0.466044,0.186876,0.241199,0.289877,0.964709,0.778263,0.87109,0.242132,0.851257,0.248318,0.418628,0.696946,0.0204747,0.0294213,0.31279,0.120184,0.97472,0.237685,0.489413,0.941671,0.548566,0.480703,0.314297,0.193574,0.904823,0.184816,0.674632,0.618363,0.260596,0.361396,0.968267,0.47652,0.227814,0.707285,0.181432,0.278344,0.375493,0.797026,0.711868,0.0975566,0.0599216,0.736136,0.931785,0.123389,0.0400366,0.460171,0.929782,0.587562,0.929699,0.0642721,0.852839,0.574224,0.455809,0.968338,0.32387,0.930421,0.186504,0.755013,0.411697,0.756583,0.832127,0.0680513,0.678816,0.313836,0.639868,0.445771,0.785991,0.221435,0.699214,0.972329,0.585493,0.962347,0.646087,0.317871,0.525106,0.251853,0.740749,0.05006,0.0544522,0.0491832,0.76875,0.0192975,0.450154,0.410759,0.0987576,0.2734,0.650872,0.738743,0.196299,0.876772,0.0745206,0.566128,0.345068,0.59796,0.328742,0.255464,0.515754,0.399649,0.368434,0.592899,0.409521,0.0204852,0.164565,0.764506,0.124255,0.328616,0.387007,0.307105,0.140041,0.497294,0.713213,0.0275781,0.382231,0.11208,0.827438,0.53281,0.990435,0.392992,0.798908,0.805943,0.552321,0.530976,0.642935,0.240018,0.601194,0.746605,0.0970839,0.379265,0.855741,0.210777,0.0931623,0.3741,0.473665,0.344437,0.61162,0.553073,0.625029,0.927451,0.289914,0.18049,0.521851,0.596783,0.757744,0.699027,0.677021,0.688396,0.371491,0.630378,0.266271,0.837304,0.786178,0.369603,0.351651,0.0812021,0.523004,0.755157,0.871748,0.64693,0.102201,0.0327856,0.917499,0.973161,0.54862,0.32193,0.163535,0.44013,0.576564,0.541739,0.371027,0.575466,0.0667012,0.589683,0.109597,0.144485,0.580072,0.663638,0.520933,0.710122,0.326892,0.501906,0.119045,0.664462,0.0894105,0.987791,0.942252,0.879849,0.644818,0.193247,0.829027,0.804882,0.101727,0.536616,0.411107,0.0760069,0.916782,0.953255,0.510337,0.194542,0.803547,0.6731,0.0319735,0.303424,0.212056,0.609335,0.637966,0.24779,0.469592,0.90094,0.7425,0.686461,0.604826,0.549274,0.245548,0.956934,0.848841,0.433508,0.247186,0.463405,0.685155,0.436831,0.699429,0.050831,0.0947326,0.0646525,0.597145,0.0676566,0.950807,0.652814,0.0754746,0.819305,0.582481,0.588136,0.49639,0.342056,0.612613,0.280504,0.429121,0.612722,0.108162,0.597265,0.903542,0.744127,0.954704,0.69379,0.81317,0.421767,0.472555,0.305568,0.467818,0.726509,0.157151,0.454964,0.650026,0.52766,0.940809,0.650187,0.137469,0.329248,0.823702,0.919702,0.534424,0.631912,0.594745,0.0969043,0.454299,0.962502,0.54474,0.532395,0.62347,0.600532,0.91428,0.862192,0.3171,0.549552,0.95929,0.790839,0.13058,0.811263,0.916039,0.610975,0.208778,0.511705,0.596775,0.371544,0.203282,0.0181238,0.606232,0.393695,0.0983148,0.320377,0.241177,0.588453,0.00109708,0.92283,0.154045,0.908824,0.729145,0.552552,0.0780743,0.182401,0.710709,0.677594,0.49675,0.151341,0.844355,0.0537254,0.0835959,0.941917,0.37792,0.947389,0.214409,0.00699067,0.977474,0.393464,0.527565,0.688635,0.631868,0.453929,0.871416,0.0891055,0.944228,0.426887,0.779375,0.907784,0.77153,0.96711,0.176249,0.851431,0.290222,0.750055,0.846474,0.861507,0.878965,0.731897,0.161052,0.0760315,0.540941,0.218796,0.385148,0.187944,0.985326,0.335159,0.629177,0.538551,0.0176535,0.35363,0.297914,0.917123,0.487207,0.764623,0.609834,0.240598,0.125658,0.740124,0.933767,0.051002,0.444195,0.617086,0.23714,0.452083,0.781323,0.367457,0.49139,0.753413,0.0569486,0.312497,0.291191,0.308291,0.158937,0.000190258,0.750253,0.128022,0.822725,0.304274,0.441131,0.0372946,0.046948,0.820015,0.418909,0.409425,0.165968,0.620336,0.784335,0.586477,0.590804,0.0145527,0.281193,0.946765,0.930667,0.165273,0.0520514,0.97594,0.360745,0.622077,0.0913804,0.166609,0.979236,0.670674,0.73431,0.727068,0.526282,0.365201,0.744212,0.229367,0.126527,0.596905,0.269242,0.0213914,0.647062,0.813552,0.188625,0.780661,0.0639251,0.252981,0.964941,0.0828239,0.620817,0.913527,0.259442,0.915952,0.146224,0.830605,0.892017,0.488377,0.438537,0.0600411,0.115391,0.365844,0.358563,0.306997,0.318094,0.895064,0.169869,0.802943,0.316924,0.992531,0.117014,0.471029,0.279301,0.340213,0.0233963,0.657449,0.597898,0.793267,0.983956,0.916424,0.494514,0.450555,0.30862,0.863149,0.110619,0.310098,0.110304,0.498058,0.0378086,0.443108,0.435378,0.616961,0.590716,0.153554,0.194042,0.280525,0.422405,0.580726,0.39277,0.723437,0.743324,0.878338,0.750508,0.449539,0.353758,0.0985278,0.988734,0.106468,0.340198,0.624491,0.573841,0.928122,0.631428,0.11435,0.425153,0.442035,0.0397363,0.952198,0.159167,0.138504,0.136067,0.274167,0.58772,0.951493,0.389659,0.179411,0.411314,0.430014,0.332208,0.141676,0.127656,0.514175,0.467429,0.849486,0.970518,0.127339,0.440693,0.0100899,0.680948,0.0327466,0.912262,0.569784,0.0522091,0.352648,0.963755,0.0695806,0.628646,0.821646,0.73241,0.0551505,0.531535,0.0203009,0.35793,0.89587,0.124569,0.775932,0.548532,0.683057,0.380441,0.110442,0.541702,0.889109,0.128463,0.170861,0.00104237,0.450465,0.785193,0.337316,0.633496,0.263617,0.137366,0.473624,0.0567868,0.654612,0.19388,0.615026,0.690405,0.152428,0.0385759,0.557745,0.587302,0.964497,0.898282,0.480164,0.984387,0.734728,0.12388,0.304277,0.112246,0.726415,0.198686,0.377598,0.28187,0.292772,0.657667,0.603899,0.0429336,0.712588,0.89728,0.119804,0.181284,0.371607,0.0980899,0.286584,0.432252,0.368153,0.164739,0.182485,0.173068,0.398775,0.766458,0.828614,0.715129,0.423755,0.627392,0.170398,0.359121,0.42451,0.234663,0.247097,0.66633,0.585161,0.942246,0.584333,0.394411,0.64088,0.859712,0.101915,0.940404,0.464451,0.955681,0.589061,0.518025,0.458131,0.881566,0.632115,0.417137,0.353336,0.699556,0.934416,0.307546,0.160245,0.5684,0.590639,0.0336493,0.745407,0.511246,0.404569,0.980358,0.623714,0.95007,0.0264738,0.120152,0.473408,0.774823,0.976322,0.154776,0.14909,0.486764,0.797426,0.213031,0.885037,0.28842,0.615231,0.219726,0.440994,0.505998,0.549745,0.171844,0.779145,0.738934,0.0111305,0.667574,0.743789,0.424976,0.246209,0.517948,0.117268,0.992364,0.243256,0.301542,0.920775,0.760622,0.0530811,0.682273,0.641648,0.775302,0.609207,0.742677,0.814441,0.825284,0.843715,0.599269,0.45895,0.308639,0.829185,0.540599,0.722476,0.594505,0.579755,0.680745,0.359656,0.95811,0.0188839,0.644594,0.436929,0.151395,0.133263,0.313307,0.907195,0.601051,0.509631,0.161784,0.609125,0.434065,0.404142,0.617919,0.882418,0.215972,0.269795,0.00353473,0.155926,0.358223,0.898021,0.767209,0.658084,0.481245,0.069046,0.795796,0.60216,0.51589,0.178205,0.661726,0.688807,0.0393653,0.0701556,0.135508,0.917327,0.499928,0.55632,0.588109,0.296944,0.265729,0.184077,0.943806,0.508873,0.643455,0.925535,0.642477,0.279576,0.787416,0.00116807,0.611037,0.675955,0.599311,0.38524,0.253168,0.263851,0.822953,0.841192,0.424624,0.0492344,0.719081,0.76031,0.915919,0.773011,0.745037,0.112369,0.710692,0.97418,0.74087,0.354504,0.585299,0.532697,0.465119,0.137444,0.795641,0.646568,0.284082,0.732523,0.36608,0.62141,0.00174004,0.617518,0.241846,0.218046,0.438804,0.0350521,0.434102,0.294964,0.382608,0.924178,0.303727,0.413203,0.924485,0.323945,0.808883,0.136502,0.763315,0.982884,0.191488,0.21392,0.256646,0.891235,0.657036,0.0247845,0.749741,0.786497,0.651705,0.181317,0.022445,0.114246,0.123219,0.132409,0.393547,0.843353,0.116933,0.545836,0.441087,0.0755488,0.627091,0.253971,0.292586,0.705546,0.628105,0.932974,0.157816,0.669146,0.835123,0.73157,0.909743,0.671741,0.312327,0.0902329,0.935709,0.159627,0.14314,0.743169,0.0672649,0.155289,0.723951,0.622234,0.100528,0.43928,0.667283,0.136739,0.090744,0.585176,0.0115787,0.534101,0.764929,0.771193,0.00449973,0.275614,0.605187,0.682193,0.177165,0.954634,0.633905,0.852882,0.0655916,0.371863,0.855189,0.516705,0.33924,0.290726,0.393414,0.209963,0.439067,0.948398,0.031554,0.463723,0.836371,0.94106,0.631301,0.242871,0.37577,0.530337,0.318655,0.0338528,0.545548,0.352885,0.281106,0.753091,0.412645,0.110733,0.878905,0.475292,0.346716,0.785734,0.343874,0.165895,0.112921,0.777644,0.138373,0.815473,0.229783,0.269199,0.699071,0.404649,0.446654,0.164364,0.650928,0.200182,0.802673,0.257006,0.554582,0.136778,0.618508,0.535832,0.980985,0.493627,0.367693,0.795423,0.441791,0.726398,0.0139355,0.482719,0.804113,0.26277,0.305962,0.535628,0.863261,0.474903,0.678213,0.502273,0.682428,0.253425,0.00345486,0.144269,0.75968,0.0348333,0.974018,0.907199,0.870741,0.529109,0.112014,0.858266,0.0196299,0.512822,0.481573,0.408497,0.977996,0.567501,0.896534,0.96792,0.920827,0.0489243,0.423852,0.527039,0.00926483,0.319408,0.240743,0.193639,0.85143,0.69213,0.0316221,0.900764,0.327674,0.408172,0.187772,0.573451,0.610826,0.531684,0.835031,0.737263,0.330491,0.0189441,0.461485,0.397033,0.589351,0.470468,0.213451,0.795707,0.620721,0.144091,0.051291,0.585649,0.757253,0.731327,0.586657,0.760393,0.806145,0.727149,0.493661,0.895687,0.37349,0.75821,0.12811,0.250276,0.845839,0.607144,0.50222,0.968552,0.642143,0.414081,0.0175632,0.365712,0.577523,0.275351,0.651845,|0.126674,0.570781,0.577368,0.572154,0.854175,0.517414,0.356068,0.639572,0.363945,0.150726,0.18533,0.556232,0.459516,0.331647,0.494799,0.882896,0.16875,0.407173,0.732091,0.6436,0.433194,0.618867,0.783908,0.5546,0.250049,0.551217,0.058379,0.217908,0.155906,0.435257,0.373833,0.176037,0.431548,0.524576,0.801067,0.0959989,0.563521,0.324429,0.96952,0.973291,0.0908293,0.506125,0.180887,0.0407183,0.487706,0.410678,0.578444,0.555957,0.0673818,0.422463,0.399187,0.433077,0.799824,0.509284,0.690832,0.0341385,0.629056,0.126156,0.0619406,0.989681,0.0152147,0.625595,0.372059,0.97454,0.239984,0.835736,0.0753217,0.191268,0.589037,0.309939,0.296059,0.591364,0.548775,0.782522,0.10233,0.95325,0.342169,0.094238,0.572965,0.715126,0.929738,0.536052,0.413986,0.0323184,0.410395,0.00722826,0.687979,0.22615,0.595342,0.68984,0.767994,0.530826,0.564507,0.0513883,0.337755,0.698895,0.622587,0.840484,0.945992,0.962702,0.701473,0.737254,0.661179,0.0843992,0.897064,0.327655,0.182811,0.934173,0.893379,0.742596,0.655049,0.419356,0.600802,0.737298,0.333022,0.146075,0.512352,0.929615,0.46432,0.665822,0.747671,0.621426,0.252315,0.462901,0.189931,0.633431,0.860716,0.134796,0.0927414,0.54226,0.53995,0.231726,0.666701,0.834882,0.550563,0.422879,0.504219,0.0166139,0.652696,0.253911,0.307149,0.590913,0.142311,0.94089,0.619964,0.529247,0.354704,0.771839,0.531815,0.295297,0.355533,0.0308499,0.555575,0.576705,0.378239,0.206244,0.747867,0.537316,0.608202,0.04796,0.948959,0.782321,0.473151,0.26951,0.728188,0.183449,0.506156,0.234453,0.460492,0.52965,0.24708,0.276676,0.482534,0.907574,0.824664,0.957082,0.882635,0.154244,0.111167,0.736363,0.258714,0.377762,0.124342,0.568898,0.127699,0.342655,0.69998,0.0712661,0.628911,0.299467,0.533781,0.512779,0.320694,0.374906,0.900519,0.555633,0.934926,0.562275,0.409795,0.427639,0.893544,0.0513861,0.961467,0.565729,0.514168,0.518799,0.191275,0.263277,0.2151,0.671544,0.43205,0.778872,0.269457,0.757364,0.664769,0.475318,0.643791,0.843346,0.641482,0.0158913,0.0701132,0.0603673,0.530418,0.445607,0.0587883,0.717139,0.472098,0.0905146,0.26554,0.78404,0.835523,0.501115,0.951698,0.679467,0.220208,0.915014,0.105236,0.00238842,0.681806,0.775994,0.894978,0.0954785,0.40116,0.19007,0.266183,0.566372,0.420886,0.717168,0.0284693,0.789841,0.00729102,0.243245,0.115958,0.609614,0.806498,0.937977,0.691397,0.0169511,0.634146,0.852954,0.0150651,0.0713663,0.0212892,0.564549,0.634432,0.906379,0.324458,0.768881,0.762341,0.687147,0.176864,0.967246,0.701937,0.841152,0.265125,0.433947,0.838974,0.121225,0.337705,0.646883,0.401274,0.997088,0.608999,0.536327,0.689801,0.348992,0.769248,0.624785,0.318792,0.0597259,0.0297689,0.0799267,0.361499,0.990365,0.0169566,0.0632048,0.581969,0.112596,0.957062,0.855063,0.669369,0.38575,0.181726,0.456365,0.885208,0.914578,0.777745,0.959449,0.0193272,0.329754,0.725301,0.0679473,0.394269,0.297066,0.428088,0.253326,0.0133988,0.657376,0.117931,0.848558,0.273759,0.150774,0.770097,0.311044,0.282966,0.13211,0.416871,0.0613499,0.713103,0.586067,0.130414,0.266039,0.0139305,0.388875,0.823649,0.828796,0.134463,0.556745,0.961107,0.0442539,0.621323,0.816778,0.743329,0.024913,0.236052,0.0260607,0.635042,0.660254,0.572065,0.235211,0.494221,0.0995117,0.702299,0.0305462,0.0302325,0.92461,0.58004,0.995181,0.743498,0.0185165,0.24659,0.228244,0.708275,0.685228,0.154636,0.740036,0.422199,0.0370727,0.756079,0.469521,0.579247,0.561965,0.809425,0.0262746,0.913518,0.920718,0.103206,0.0800937,0.390819,0.630298,0.279132,0.556004,0.282913,0.558401,0.567814,0.493637,0.0290744,0.243611,0.424677,0.238028,0.275991,0.970045,0.577731,0.978421,0.889173,0.171521,0.950308,0.634576,0.821887,0.45479,0.010318,0.267016,0.0726947,0.189829,0.630421,0.0995297,0.0186394,0.501923,0.199832,0.822959,0.850487,0.739967,0.370248,0.227218,0.711193,0.0143578,0.441283,0.192761,0.448246,0.383886,0.683881,0.159173,0.67329,0.0794075,0.434886,0.755495,0.697768,0.891625,0.43119,0.480163,0.229012,0.269635,0.124126,0.238509,0.381801,0.715197,0.669665,0.771633,0.0134789,0.86737,0.820398,0.224847,0.305772,0.621314,0.0776265,0.0161309,0.316071,0.769044,0.271803,0.697275,0.0213308,0.456624,0.246649,0.523972,0.65559,0.950911,0.458514,0.52771,0.197317,0.72589,0.469324,0.0945573,0.572854,0.282163,0.432701,0.164232,0.159426,0.783447,0.153293,0.133143,0.156679,0.176566,0.241499,0.996295,0.834086,0.732095,0.684826,0.483427,0.970941,0.128876,0.680545,0.0469258,0.429141,0.211182,0.60597,0.366461,0.438983,0.22624,0.249025,0.815337,0.920037,0.48995,0.511039,0.768716,0.0360858,0.741628,0.501577,0.848026,0.0591416,0.000986636,0.333569,0.799962,0.984699,0.382841,0.304439,0.111351,0.226288,0.742796,0.812591,0.325567,0.638867,0.0539051,0.791178,0.724947,0.0522314,0.874607,0.362849,0.739817,0.675006,0.42613,0.293669,0.390188,0.837079,0.673497,0.145116,0.531705,0.796454,0.673843,0.395959,0.0670853,0.240167,0.418669,0.963366,0.695831,0.866583,0.507009,0.335997,0.845549,0.515182,0.265463,0.8337,0.337184,0.00992239,0.965348,0.0498818,0.591176,0.912801,0.791193,0.0826219,0.861514,0.035521,0.413731,0.87302,0.277665,0.795187,0.051204,0.494784,0.361783,0.977602,0.0271397,0.999656,0.368433,0.515687,0.602047,0.209404,0.106205,0.695633,0.00534058,0.0956111,0.799605,0.523498,0.815497,0.532091,0.671465,0.143867,0.0761408,0.894869,0.946263,0.434928,0.546229,0.84245,0.886265,0.0765987,0.764768,0.420202,0.450347,0.923615,0.514431,0.258478,0.953221,0.503571,0.0791234,0.855496,0.839869,0.884741,0.0701298,0.199478,0.631298,0.0328828,0.252339,0.590687,0.282275,0.720749,0.0932067,0.476358,0.167669,0.26161,0.421653,0.109497,0.7778,0.192227,0.0865748,0.269087,0.806327,0.114483,0.189738,0.610479,0.557201,0.0350003,0.53918,0.273056,0.98583,0.232306,0.283887,0.410723,0.750686,0.00934952,0.355528,0.508576,0.328522,0.0799342,0.0526708,0.15131,0.999321,0.304724,0.078588,0.671247,0.418839,0.210247,0.528119,0.887231,0.596219,0.978802,0.424261,0.0198917,0.436044,0.277441,0.855229,0.454412,0.289904,0.492549,0.774513,0.844585,0.362833,0.0516989,0.11296,0.538737,0.453327,0.444661,0.919768,0.638607,0.0973098,0.0108301,0.593891,0.433682,0.581933,0.369931,0.205028,0.372458,0.0665322,0.153621,0.881965,0.523546,0.796696,0.537712,0.127981,0.714201,0.955644,0.329662,0.270738,0.359448,0.545192,0.900272,0.248065,0.0858287,0.558053,0.26235,0.64576,0.250464,0.22316,0.0489952,0.851791,0.114206,0.690818,0.631234,0.869144,0.0874264,0.340648,0.0128068,0.11058,0.592037,0.791482,0.0566448,0.424301,0.436436,0.348222,0.230743,0.949047,0.953226,0.135706,0.360593,0.261693,0.868748,0.342238,0.528011,0.0990501,0.43157,0.95858,0.552783,0.707598,0.416576,0.461744,0.182049,0.427446,0.258925,0.90376,0.321544,0.522946,0.630965,0.667541,0.699896,0.0315976,0.772238,0.0274958,0.629359,0.660488,0.259278,0.282678,0.32481,0.0340403,0.467127,0.210158,0.25593,0.609341,0.425458,0.275732,0.0183643,0.835053,0.415904,0.163095,0.493274,0.548018,0.847874,0.815916,0.0266603,0.901105,0.992433,0.0228179,0.499194,0.462457,0.407469,0.596692,0.851958,0.446169,0.398214,0.540053,0.480853,0.20686,0.820646,0.70325,0.703781,0.257146,0.883896,0.32209,0.94846,0.408917,0.446692,0.997465,0.267202,0.737791,0.0803127,0.194072,0.231593,0.852317,0.373703,0.708745,0.492993,0.0942565,0.163265,0.712011,0.133474,0.539882,0.280393,0.0844125,0.449391,0.211813,0.795065,0.370693,0.380874,0.376554,0.979705,0.429957,0.0418264,0.854058,0.510447,0.681445,0.0738991,0.598038,0.792866,0.487281,0.201845,0.875139,0.573292,0.582098,0.806279,0.695369,0.104236,0.0992317,0.601707,0.23916,0.652856,0.16676,0.0195439,0.819919,0.175065,0.683575,0.242563,0.352245,0.867175,0.922331,0.779811,0.948072,0.824313,0.782203,0.861895,0.444595,0.655329,0.861847,0.0363481,0.830572,0.190087,0.109438,0.933689,0.580385,0.768244,0.50959,0.492832,0.392179,0.158883,0.36558,0.194561,0.600504,0.146929,0.0937428,0.527412,0.142745,0.183034,0.450975,0.052913,0.581912,0.240553,0.418118,0.478705,0.628911,0.681114,0.952178,0.142294,0.883764,0.921238,0.660451,0.958047,0.115687,0.597299,0.404613,0.228978,0.303607,0.246505,0.392438,0.544021,0.374825,0.406843,0.409395,0.106761,0.490462,0.977049,0.583265,0.28154,0.536801,0.518807,0.507175,0.344537,0.648305,0.648926,0.0729885,0.153312,0.288916,0.270423,0.983808,0.81968,0.613452,0.93343,0.544776,0.000443101,0.589902,0.729782,0.0758086,0.737649,0.705207,0.153546,0.0338695,0.108783,0.472924,0.0209676,0.543971,0.690524,0.658938,0.793691,0.831396,0.293322,0.529219,0.0984117,0.637579,0.765224,0.560687,0.00306243,0.278766,0.699717,0.595247,0.437034,0.0305577,0.413459,0.786361,0.136014,0.547607,0.737364,0.0175917,0.68102,0.146837,0.533883,0.739562,0.599791,0.4413,0.461882,0.188773,0.319686,0.37042,0.712678,0.829679,0.921062,0.0808907,0.148637,0.881595,0.777395,0.0553952,0.110602,0.42422,0.134957,0.0273439,0.935288,0.0752923,0.0663719,0.0481984,0.832602,0.00346237,0.560577,0.472915,0.0395362,0.0508686,0.913567,0.479334,0.490561,0.443269,0.10329,0.161682,0.0315325,0.703342,0.450459,0.0327933,0.625861,0.707564,0.675335,0.896122,0.968765,0.230209,0.759045,0.158844,0.201931,0.47891,0.775712,0.0499049,0.243172,0.10525,0.892828,0.134783,0.0332029,0.662023,0.0113382,0.170792,0.119753,0.50167,|0.0243222,0.125659,0.488159,0.18471,0.401158,0.164189,0.593873,0.67594,0.687093,0.736344,0.0733994,0.651591,0.530582,0.319209,0.802031,0.675297,0.449203,0.0355585,0.087728,0.597434,0.360321,0.333707,0.743376,0.373216,0.243917,0.374418,0.882713,0.800782,0.727606,0.451999,0.49873,0.363356,0.649747,0.00533038,0.969055,0.258667,0.13008,0.38807,0.395579,0.237166,0.451256,0.867043,0.66999,0.778476,0.982094,0.646492,0.0423421,0.718864,0.260251,0.849434,0.806848,0.381879,0.924344,0.756954,0.0497568,0.515718,0.434438,0.602712,0.0821189,0.653654,0.156612,0.812629,0.447169,0.92201,0.781216,0.83563,0.486293,0.417539,0.72411,0.923645,0.567309,0.65858,0.26947,0.740521,0.366323,0.133141,0.0900738,0.285313,0.919863,0.922516,0.778001,0.633611,0.419063,0.648181,0.275578,0.0688381,0.415657,0.907092,0.456047,0.814953,0.179073,0.095605,0.994211,0.592687,0.497898,0.555245,0.080435,0.530283,0.696662,0.700036,0.0907333,0.299136,0.0970352,0.312999,0.324475,0.240711,0.576468,0.189012,0.363961,0.441488,0.834608,0.126624,0.892716,0.125138,0.654899,0.66059,0.760884,0.433297,0.366429,0.195045,0.594825,0.926201,0.608051,0.482672,0.529498,0.688013,0.667696,0.32211,0.0487695,0.701193,0.0973114,0.910317,0.000356376,0.542198,0.366114,0.447393,0.826121,0.109388,0.475671,0.758092,0.645704,0.535481,0.874478,0.693262,0.245676,0.808832,0.60442,0.76697,0.394118,0.292306,0.269673,0.351178,0.124071,0.811518,0.704193,0.847532,0.993115,0.664158,0.384952,0.98731,0.159312,0.511823,0.186997,0.12975,0.595436,0.314671,0.658666,0.0489278,0.132383,0.275282,0.226426,0.81183,0.957775,0.843431,0.609086,0.747245,0.556541,0.679675,0.599628,0.761348,0.373292,0.805244,0.347626,0.717905,0.52991,0.752206,0.680353,0.424027,0.617352,0.989347,0.757354,0.565126,0.819775,0.323967,0.736175,0.915742,0.287673,0.857828,0.0734876,0.71871,0.215536,0.608689,0.84043,0.0568789,0.204929,0.305162,0.190757,0.948008,0.498751,0.209557,0.912785,0.0259799,0.783973,0.173673,0.454669,0.196338,0.960858,0.181555,0.269073,0.545898,0.110359,0.00768977,0.801321,0.913454,0.92687,0.290512,0.927109,0.138745,0.839377,0.765703,0.389526,0.626296,0.486138,0.96895,0.852206,0.939341,0.245439,0.655584,0.849689,0.105942,0.0663102,0.913289,0.97301,0.812482,0.522053,0.871899,0.538623,0.399721,0.967868,0.714527,0.230893,0.331843,0.14896,0.312996,0.957944,0.315509,0.0545896,0.635607,0.163771,0.021621,0.578611,0.415356,0.488697,0.356738,0.67943,0.47956,0.867477,0.680013,0.424331,0.259187,0.0286597,0.112313,0.844209,0.151948,0.337316,0.701711,0.878606,0.860506,0.607227,0.0511534,0.447731,0.0547065,0.214989,0.656357,0.292708,0.550256,0.902382,0.790385,0.00181174,0.480221,0.797756,0.0707446,0.327159,0.155887,0.374286,0.152971,0.784138,0.528051,0.823665,0.199884,0.132153,0.799253,0.701527,0.423912,0.722504,0.0955054,0.188946,0.128059,0.507572,0.395845,0.148784,0.91229,0.33846,0.778269,0.534989,0.0797755,0.867394,0.958564,0.0320604,0.390247,0.183331,0.0854347,0.947066,0.612536,0.372015,0.753599,0.723073,0.694776,0.694571,0.0481066,0.67127,0.237514,0.225581,0.134791,0.872808,0.194875,0.178544,0.66262,0.863271,0.703136,0.797037,0.811676,0.585557,0.643994,0.968777,0.136436,0.468693,0.172468,0.956132,0.768788,0.470212,0.320938,0.0176942,0.759505,0.820533,0.160372,0.363522,0.115277,0.78082,0.505696,0.42731,0.46572,0.0616838,0.453771,0.529275,0.489928,0.360497,0.410235,0.305975,0.538776,0.137778,0.213711,0.0326505,0.358,0.528999,0.410235,0.531522,0.0304168,0.316221,0.241414,0.891743,0.590137,0.344044,0.524217,0.651721,0.587826,0.582718,0.474268,0.646759,0.50986,0.688699,0.899515,0.924449,0.515372,0.346166,0.746625,0.415134,0.625888,0.0173168,0.669546,0.203589,0.0453894,0.561993,0.269561,0.79829,0.615357,0.831477,0.461641,0.812896,0.374831,0.0474073,0.0527686,0.788566,0.718467,0.935053,0.519417,0.262164,0.357571,0.216326,0.327862,0.81412,0.313646,0.133814,0.477523,0.741232,0.675663,0.0799929,0.384303,0.864791,0.876412,0.276652,0.142366,0.00263894,0.92919,0.778023,0.136878,0.729325,0.836557,0.562302,0.0413081,0.0835409,0.165771,0.516335,0.96205,0.748932,0.7569,0.367048,0.361159,0.248384,0.20467,0.453503,0.761515,0.997751,0.563543,0.544725,0.198563,0.190783,0.422207,0.320619,0.373099,0.761436,0.54502,0.0425252,0.891269,0.600504,0.570337,0.183328,0.413972,0.451749,0.476176,0.417094,0.818752,0.1008,0.657062,0.743167,0.607287,0.183452,0.214681,0.667958,0.744335,0.811804,0.798029,0.0831082,0.236431,0.651586,0.365301,0.576397,0.842783,0.194206,0.479903,0.426605,0.537836,0.0773185,0.489937,0.118736,0.645177,0.876306,0.146675,0.0370287,0.121742,0.829869,0.231173,0.366464,0.154415,0.298891,0.580913,0.676225,0.494941,0.840516,0.77813,0.350496,0.0263429,0.977949,0.434409,0.5284,0.476235,0.96991,0.272503,0.295169,0.659507,0.442841,0.118354,0.393386,0.703298,0.88247,0.719598,0.897854,0.560399,0.587938,0.245325,0.0825205,0.0686712,0.928166,0.607885,0.217401,0.717325,0.745777,0.372983,0.440094,0.57966,0.493223,0.914516,0.310853,0.692212,0.660438,0.457913,0.827329,0.895818,0.32405,0.661384,0.875631,0.447953,0.562478,0.780235,0.553361,0.265715,0.641276,0.646055,0.221333,0.344513,0.840145,0.987195,0.027675,0.763006,0.173859,0.0559657,0.835077,0.139822,0.408558,0.217455,0.204143,0.836262,0.89551,0.759626,0.616692,0.420281,0.356597,0.420244,0.402098,0.439538,0.564869,0.207588,0.76441,0.305537,0.483267,0.0312127,0.349311,0.551764,0.701216,0.00333893,0.890885,0.115987,0.887937,0.161504,0.79571,0.672479,0.357848,0.27442,0.0627195,0.532933,0.498561,0.331203,0.600489,0.91739,0.201797,0.101125,0.194644,0.916691,0.319591,0.235611,0.42877,0.280652,0.38673,0.59412,0.0339832,0.98055,0.538475,0.897311,0.58137,0.658283,0.402716,0.936628,0.636923,0.230098,0.455038,0.481152,0.529478,0.679769,0.279982,0.404591,0.387103,0.326629,0.856005,0.93978,0.65241,0.176933,0.112311,0.775922,0.304097,0.637598,0.65263,0.679815,0.632663,0.702344,0.0186104,0.893652,0.326326,0.927459,0.529633,0.81743,0.508783,0.572048,0.86128,0.290213,0.0703943,0.787178,0.655017,0.888465,0.226468,0.568489,0.483453,0.26802,0.437348,0.549731,0.917091,0.47349,0.329942,0.517612,0.171785,0.17692,0.23826,0.23924,0.126889,0.613566,0.805337,0.389512,0.237022,0.734832,0.322609,0.47043,0.916124,0.974928,0.278565,0.940785,0.833951,0.362655,0.602238,0.880708,0.505192,0.849369,0.088817,0.0397059,0.164409,0.902427,0.438659,0.974339,0.38429,0.0623966,0.738838,0.841488,0.86988,0.503869,0.506077,0.829693,0.227791,0.225984,0.226872,0.902226,0.396747,0.149209,0.774071,0.258705,0.974393,0.125104,0.307909,0.73191,0.128008,0.640906,0.752325,0.370525,0.368836,0.14937,0.8063,0.364707,0.715602,0.185496,0.682761,0.969882,0.656347,0.19844,0.367191,0.912767,0.344417,0.309885,0.494309,0.246089,0.503656,0.388052,0.908006,0.280586,0.128992,0.433676,0.962888,0.484564,0.860703,0.866575,0.52111,0.332587,0.865889,0.523927,0.885028,0.100797,0.672461,0.706739,0.313472,0.617564,0.501867,0.32127,0.903297,0.119431,0.693009,0.65007,0.883289,0.800634,0.188472,0.40027,0.601366,0.435409,0.641396,0.787036,0.495621,0.476283,0.625786,0.442212,0.152448,0.540341,0.386289,0.22446,0.640397,0.160508,0.464005,0.609213,0.299887,0.523824,0.737303,0.376564,0.863846,0.881237,0.527503,0.972876,0.902163,0.890384,0.774974,0.272647,0.203869,0.921948,0.177887,0.198629,0.524387,0.757335,0.849028,0.725474,0.819777,0.830012,0.980473,0.380787,0.457955,0.0457247,0.332575,0.056954,0.0919893,0.47143,0.368516,0.0866435,0.403044,0.435305,0.44199,0.74541,0.102386,0.776679,0.889999,0.795018,0.971293,0.233759,0.106893,0.917351,0.426539,0.966177,0.605459,0.0577062,0.357501,0.951079,0.469653,0.86506,0.78572,0.735598,0.289094,0.464353,0.83718,0.399924,0.27163,0.303914,0.530885,0.0438377,0.308062,0.550961,0.760011,0.519484,0.930637,0.260108,0.544985,0.878302,0.372575,0.602248,0.239168,0.0262516,0.885811,0.982991,0.658356,0.57025,0.948019,0.53656,0.147188,0.80115,0.552725,0.842039,0.852476,0.458485,0.550479,0.207834,0.164415,0.493102,0.713546,0.42223,0.155778,0.858799,0.480574,0.623761,0.86104,0.729666,0.195285,0.74829,0.434496,0.271521,0.966489,0.527447,0.545652,0.723632,0.777897,0.147748,0.584983,0.905654,0.0217974,0.618249,0.585288,0.728416,0.950617,0.853438,0.691867,0.510701,0.125467,0.516956,0.0566395,0.176631,0.544662,0.879765,0.291898,0.256981,0.953385,0.639069,0.991217,0.257479,0.575211,0.992335,0.62047,0.188991,0.574728,0.844615,0.230167,0.309189,0.178595,0.438255,0.123822,0.354462,0.468094,0.450953,0.5648,0.72328,0.69448,0.291643,0.780211,0.883457,0.713128,0.959715,0.731397,0.582305,0.0798078,0.558553,0.419017,0.548634,0.881359,0.546102,0.142375,0.358745,0.145002,0.227825,0.593712,0.722176,0.487215,0.0490609,0.682138,0.942867,0.365571,0.0250902,0.73053,0.94955,0.306591,0.405368,0.550923,0.229241,0.158945,0.240695,0.544053,0.488531,0.844014,0.504363,0.481006,0.109657,0.885376,0.101357,0.881528,0.524831,0.45442,0.132627,0.0868701,0.658566,0.771386,0.292072,0.697025,0.314319,0.831542,0.254541,0.334849,0.560972,0.0981258,0.429603,0.398997,0.0129442,0.795562,0.896006,0.80865,0.162625,0.994492,0.814775,0.407105,0.529369,0.825469,0.124292,0.649393,0.565142,|0.725945,0.94615,0.665454,0.592668,0.412256,0.543906,0.169119,0.888451,0.510563,0.196802,0.342641,0.0291488,0.870731,0.582686,0.0104781,0.791273,0.62774,0.942486,0.834229,0.366491,0.067239,0.172223,0.581393,0.814577,0.271852,0.802276,0.829336,0.293226,0.975564,0.300126,0.865556,0.225945,0.994928,0.0164821,0.874231,0.538411,0.239811,0.736598,0.157141,0.540488,0.534855,0.927879,0.971977,0.438125,0.590017,0.520574,0.83752,0.902739,0.0208893,0.513699,0.911986,0.0496666,0.856924,0.109224,0.223381,0.924567,0.117581,0.571878,0.410416,0.887626,0.942143,0.90862,0.0655816,0.301315,0.865029,0.20255,0.491049,0.604143,0.200188,0.157867,0.813319,0.0323038,0.324886,0.691972,0.0611254,0.270117,0.696823,0.834256,0.342062,0.418458,0.686555,0.0550359,0.294822,0.31583,0.0768101,0.210405,0.866768,0.207033,0.679071,0.190268,0.543747,0.230763,0.708628,0.812431,0.710316,0.247044,0.931684,0.968372,0.650176,0.822083,0.550711,0.502509,0.363787,0.651112,0.111688,0.870249,0.915646,0.986654,0.649145,0.0578768,0.947591,0.217956,0.258035,0.0166192,0.744856,0.601634,0.714056,0.4622,0.678992,0.054436,0.344774,0.200886,0.890581,0.957192,0.875728,0.472693,0.542295,0.551555,0.855688,0.994629,0.633575,0.991043,0.0948954,0.596352,0.237247,0.0482647,0.427388,0.0200729,0.57561,0.200136,0.429457,0.129687,0.108556,0.71958,0.825025,0.251665,0.198816,0.842762,0.959209,0.880325,0.161047,0.449188,0.494096,0.0417054,0.232954,0.9717,0.503794,0.921657,0.587896,0.430534,0.863802,0.591912,0.662444,0.189834,0.017766,0.418464,0.885027,0.666509,0.580238,0.112196,0.768797,0.935066,0.913833,0.933565,0.219744,0.128308,0.373312,0.975061,0.777648,0.869215,0.547072,0.69442,0.491843,0.0912644,0.0897149,0.455243,0.201371,0.988552,0.661719,0.00279129,0.399207,0.735459,0.428713,0.90882,0.558879,0.856484,0.202127,0.868589,0.0330889,0.271691,0.648945,0.679989,0.103576,0.16139,0.529979,0.320525,0.0615242,0.690666,0.566984,0.0987367,0.623045,0.778791,0.521783,0.493219,0.866197,0.556634,0.974506,0.294302,0.154991,0.367265,0.13808,0.290672,0.74873,0.779738,0.201701,0.462434,0.0173932,0.19486,0.0571538,0.201739,0.668482,0.17151,0.101845,0.512205,0.41179,0.475137,0.760623,0.823251,0.433771,0.231975,0.906235,0.2959,0.560521,0.135778,0.882793,0.324295,0.429613,0.59629,0.834169,0.950682,0.606761,0.472149,0.904053,0.719422,0.00470114,0.633499,0.455892,0.926688,0.929375,0.98537,0.209066,0.629431,0.522595,0.761925,0.816494,0.896604,0.676736,0.38278,0.743433,0.412748,0.961465,0.860137,0.246711,0.291077,0.487474,0.908259,0.534425,0.125606,0.368449,0.640118,0.497697,0.262695,0.248669,0.887749,0.246025,0.0869954,0.0273424,0.969853,0.689709,0.591531,0.207805,0.724911,0.430021,0.719458,0.000413716,0.809377,0.118537,0.598701,0.49192,0.740623,0.914097,0.769811,0.129586,0.041091,0.386875,0.92012,0.38605,0.537559,0.190815,0.955153,0.777911,0.417672,0.897611,0.224034,0.88196,0.960909,0.616851,0.228148,0.976359,0.729615,0.032533,0.91116,0.689811,0.675651,0.554499,0.978451,0.260282,0.0267953,0.363391,0.241345,0.986862,0.664457,0.280677,0.868446,0.457629,0.0437499,0.21175,0.934805,0.0828897,0.257435,0.183268,0.892264,0.0570348,0.249318,0.326399,0.645159,0.857517,0.363674,0.207297,0.0447153,0.129039,0.231737,0.528474,0.744581,0.392286,0.496843,0.813726,0.76061,0.643331,0.649243,0.816535,0.639614,0.875405,0.121734,0.28765,0.4109,0.907976,0.734423,0.15748,0.625898,0.3604,0.513224,0.574177,0.994198,0.851218,0.985293,0.650954,0.559097,0.943993,0.530549,0.733416,0.829205,0.831203,0.419833,0.732914,0.764757,0.592486,0.850105,0.840712,0.260426,0.570967,0.988142,0.148174,0.545451,0.837476,0.17701,0.316144,0.0549498,0.173383,0.804401,0.036499,0.902508,0.930004,0.895739,0.979713,0.676403,0.605882,0.194129,0.813406,0.400558,0.865179,0.474235,0.913109,0.829978,0.361754,0.764834,0.805649,0.433915,0.506794,0.709911,0.838384,0.14067,0.509452,0.453968,0.316411,0.652019,0.118467,0.0698782,0.0984316,0.6632,0.233732,0.677096,0.655405,0.9004,0.584648,0.471995,0.522569,0.199582,0.751626,0.237063,0.0144421,0.954064,0.0696728,0.433765,0.887791,0.720004,0.598506,0.884967,0.535302,0.616107,0.669985,0.777012,0.616065,0.00670576,0.712334,0.762204,0.199839,0.824025,0.314622,0.36098,0.728557,0.843526,0.890865,0.972999,0.861955,0.811332,0.0520906,0.773243,0.197843,0.599787,0.550726,0.215075,0.168579,0.164154,0.425519,0.667185,0.919452,0.484653,0.938274,0.792423,0.921124,0.91595,0.801718,0.950621,0.475356,0.331029,0.91178,0.466822,0.651848,0.434537,0.544063,0.650501,0.708358,0.449174,0.933428,0.448969,0.162141,0.464001,0.902999,0.57992,0.456192,0.0995849,0.616771,0.852853,0.251751,0.159196,0.948008,0.721834,0.916445,0.423042,0.0124442,0.164188,0.391224,0.740981,0.982881,0.507113,0.693526,0.0173817,0.920821,0.491796,0.652561,0.15503,0.0165904,0.900149,0.502023,0.393037,0.525118,0.706656,0.454848,0.546051,0.532767,0.874297,0.855888,0.454768,0.872669,0.509369,0.941217,0.361715,0.0591925,0.370722,0.613127,0.319164,0.301001,0.952446,0.50632,0.0592819,0.649703,0.978276,0.301603,0.128649,0.351357,0.708366,0.925345,0.992025,0.400969,0.225679,0.245571,0.327776,0.690135,0.592195,0.502319,0.260446,0.625041,0.64287,0.224926,0.982585,0.242696,0.891203,0.869097,0.315487,0.991164,0.985537,0.874409,0.312742,0.774082,0.398226,0.494747,0.24249,0.832252,0.817239,0.60673,0.10364,0.0891569,0.242805,0.290768,0.259728,0.321456,0.929464,0.0467045,0.108437,0.331477,0.733917,0.610466,0.966065,0.0206901,0.964766,0.553825,0.0721114,0.465609,0.111322,0.1973,0.479658,0.0987967,0.695315,0.812171,0.000463963,0.401761,0.877804,0.263606,0.307089,0.709243,0.198402,0.997739,0.555926,0.165226,0.455808,0.359125,0.711976,0.361436,0.464807,0.919684,0.713339,0.179661,0.599119,0.727763,0.176628,0.747466,0.789166,0.486237,0.432613,0.391663,0.632865,0.138146,0.141138,0.232526,0.546342,0.715525,0.466338,0.650412,0.800949,0.943197,0.03873,0.226877,0.86843,0.328897,0.386627,0.630417,0.279054,0.779933,0.745321,0.0644807,0.680427,0.894273,0.602058,0.168613,0.159511,0.0372653,0.366969,0.682687,0.522458,0.231479,0.358584,0.310944,0.192562,0.627969,0.0844515,0.01118,0.60731,0.0267754,0.391996,0.377927,0.479424,0.716031,0.120461,0.141208,0.168708,0.320896,0.562747,0.509734,0.291905,0.973226,0.503143,0.84445,0.997994,0.0316381,0.916815,0.453335,0.470198,0.0171521,0.604654,0.594983,0.979686,0.510997,0.0564871,0.570257,0.841072,0.259712,0.155391,0.525956,0.240954,0.110047,0.923874,0.850039,0.50656,0.313959,0.631127,0.788026,0.746049,0.770553,0.563473,0.591103,0.982605,0.363395,0.853026,0.700028,0.754513,0.545374,0.566465,0.877202,0.604322,0.971076,0.220603,0.527239,0.261471,0.394914,0.151277,0.703604,0.507299,0.94186,0.168535,0.835887,0.399989,0.0373813,0.634652,0.352997,0.600725,0.842005,0.79257,0.833955,0.881186,0.10158,0.768079,0.463623,0.735054,0.115863,0.291772,0.300003,0.825744,0.815087,0.929271,0.471602,0.23023,0.528918,0.617877,0.229814,0.322126,0.607767,0.186549,0.147023,0.973377,0.509939,0.113761,0.821587,0.567765,0.629482,0.844244,0.0900376,0.872146,0.366752,0.682031,0.350126,0.861029,0.431762,0.360406,0.370885,0.859186,0.570535,0.760068,0.673382,0.485881,0.355877,0.684373,0.0731091,0.488314,0.905961,0.0423818,0.0415887,0.243205,0.781847,0.77404,0.958361,0.647721,0.620792,0.335403,0.868445,0.382276,0.729391,0.0165851,0.178739,0.077074,0.517368,0.154933,0.885011,0.980745,0.824626,0.959746,0.202275,0.0558015,0.963912,0.359631,0.233214,0.244003,0.202591,0.576619,0.149233,0.625245,0.578364,0.691681,0.664254,0.170218,0.73339,0.0933107,0.346878,0.759607,0.453135,0.43524,0.820136,0.0617221,0.784932,0.10387,0.0633129,0.686734,0.326405,0.76975,0.465566,0.404184,0.518009,0.0997607,0.294314,0.783766,0.513904,0.926837,0.917883,0.322506,0.471812,0.754467,0.532016,0.212548,0.956515,0.910725,0.0222933,0.22499,0.948947,0.852535,0.140021,0.0140361,0.642535,0.684036,0.0564036,0.0445535,0.672871,0.0265436,0.606652,0.605749,0.034032,0.530142,0.700144,0.555929,0.812263,0.466667,0.66155,0.377042,0.0207334,0.972132,0.423592,0.283557,0.0848323,0.490249,0.749417,0.121207,0.386938,0.00303584,0.718557,0.44685,0.952448,0.261474,0.100584,0.481389,0.231246,0.483808,0.720827,0.00955874,0.843527,0.792289,0.0976502,0.142203,0.106511,0.496184,0.892548,0.993065,0.638482,0.484804,0.173005,0.693163,0.038674,0.863313,0.109307,0.109722,0.402282,0.860605,0.208264,0.572264,0.405795,0.102906,0.290228,0.036938,0.943127,0.820844,0.0942158,0.913969,0.539854,0.85234,0.11788,0.923428,0.043434,0.779016,0.0510564,0.576349,0.981434,0.192274,0.316515,0.287357,0.569907,0.692849,0.337653,0.086842,0.328095,0.594858,0.806106,0.905975,0.871462,0.579423,0.704072,0.187974,0.213517,0.874936,0.386507,0.671911,0.421949,0.606041,0.676711,0.611853,0.159887,0.0111587,0.714916,0.223965,0.5049,0.612314,0.970592,0.621225,0.63102,0.0933281,0.65598,0.950792,0.900847,0.61699,0.93764,0.950743,0.233479,0.793037,0.254841,0.962533,0.862415,0.232281,0.0549544,0.758979,0.471176,0.17168,0.258639,0.469119,0.178264,0.496437,0.140669,0.358623,0.923304,0.534968,0.425389,0.671249,0.0748466,0.424092,0.0460328,0.866308,0.980254,0.192448,0.601468,0.213757,0.285147,0.702144,0.657431,0.987519,|0.721743,0.277913,0.997361,0.0990217,0.603338,0.0441154,0.949048,0.429262,0.300696,0.957711,0.877462,0.109999,0.721374,0.0818807,0.977981,0.896482,0.289867,0.168828,0.156656,0.457003,0.202122,0.949701,0.27004,0.469104,0.219071,0.214856,0.0638207,0.636185,0.81173,0.502336,0.944721,0.0424589,0.0515933,0.986419,0.981613,0.474036,0.309253,0.359296,0.843641,0.00782299,0.919925,0.656769,0.565374,0.234801,0.0348908,0.457608,0.232756,0.0148273,0.982402,0.403461,0.0339987,0.0419517,0.609271,0.688299,0.115735,0.441781,0.480458,0.952467,0.927641,0.73278,0.795463,0.327321,0.952632,0.290052,0.977472,0.753198,0.90715,0.730106,0.335894,0.566714,0.468796,0.0661697,0.604472,0.145913,0.0502852,0.677638,0.394406,0.0685925,0.067991,0.304013,0.443705,0.415221,0.782894,0.793193,0.0354478,0.593086,0.587594,0.497538,0.935993,0.890064,0.660966,0.775429,0.354513,0.878949,0.455145,0.488387,0.308856,0.537658,0.910591,0.634717,0.048661,0.221725,0.648835,0.551017,0.213599,0.697949,0.0969527,0.376797,0.412104,0.051087,0.863519,0.288368,0.919159,0.043349,0.945095,0.0541849,0.85928,0.0649157,0.328284,0.0502909,0.929321,0.941076,0.974995,0.800879,0.182576,0.282826,0.848232,0.892311,0.780068,0.0556382,0.266442,0.858593,0.372854,0.447014,0.47968,0.99486,0.801857,0.401212,0.347057,0.912903,0.0835049,0.664883,0.323726,0.565923,0.704189,0.247055,0.819508,0.880874,0.419042,0.929677,0.274314,0.571108,0.787038,0.914559,0.00892323,0.0878331,0.330397,0.630054,0.952483,0.722352,0.62921,0.151262,0.50264,0.451057,0.859261,0.344867,0.962063,0.168285,0.321335,0.853991,0.856081,0.923872,0.437194,0.916475,0.330861,0.41538,0.9098,0.47128,0.425303,0.953064,0.279252,0.517138,0.487628,0.315053,0.930891,0.494559,0.665915,0.329715,0.0465719,0.0561126,0.448676,0.54474,0.163136,0.94801,0.779764,0.339246,0.853316,0.22546,0.00868082,0.610329,0.906314,0.444242,0.251875,0.655192,0.472907,0.745085,0.59417,0.138737,0.734675,0.0978665,0.980041,0.462417,0.835958,0.001764,0.264498,0.731302,0.912692,0.149742,0.619691,0.00193125,0.713131,0.728908,0.628775,0.0239096,0.167534,0.728545,0.288642,0.757905,0.658243,0.976353,0.0875202,0.728091,0.953689,0.921419,0.962615,0.856829,0.31556,0.00466186,0.477791,0.125619,0.299123,0.0705572,0.0558751,0.375884,0.335485,0.374144,0.415724,0.870722,0.132619,0.691034,0.18742,0.515871,0.496835,0.272445,0.781517,0.030165,0.999006,0.941676,0.997332,0.319072,0.779369,0.290697,0.195069,0.562859,0.731268,0.120237,0.599493,0.720456,0.239354,0.39451,0.0386695,0.457228,0.819944,0.288462,0.988477,0.908874,0.268418,0.672144,0.11489,0.888039,0.0426586,0.651299,0.289138,0.988296,0.677675,0.704239,0.820855,0.556613,0.745894,0.785378,0.657813,0.282102,0.462104,0.367514,0.193366,0.424435,0.455681,0.915614,0.824603,0.139844,0.975825,0.972925,0.486557,0.455381,0.642926,0.555175,0.237978,0.375154,0.038273,0.191634,0.338442,0.927258,0.968756,0.743923,0.471577,0.229869,0.588225,0.952232,0.992263,0.142173,0.256385,0.695815,0.816028,0.708043,0.105028,0.407202,0.784145,0.377796,0.0234401,0.647124,0.301872,0.819321,0.231304,0.293096,0.721223,0.176672,0.6138,0.662177,0.409168,0.517181,0.100213,0.0673672,0.434151,0.542471,0.624035,0.309415,0.173448,0.978986,0.163114,0.0170277,0.0414506,0.127715,0.989351,0.671417,0.793054,0.390451,0.607227,0.851556,0.321115,0.526438,0.645795,0.681948,0.77243,0.36047,0.196487,0.443062,0.0854775,0.773418,0.0583133,0.474182,0.383084,0.42303,0.175551,0.777848,0.378469,0.167153,0.988596,0.0101079,0.932911,0.138608,0.213526,0.566163,0.416905,0.210455,0.712091,0.469665,0.798184,0.744942,0.903955,0.70644,0.133192,0.230641,0.579576,0.359354,0.53513,0.701112,0.795959,0.902653,0.322246,0.307921,0.743681,0.125587,0.0770804,0.569775,0.885134,0.380353,0.829961,0.613294,0.914616,0.749288,0.639776,0.693995,0.723068,0.877579,0.328294,0.935013,0.667856,0.102381,0.307674,0.295646,0.139688,0.717522,0.264283,0.779649,0.135181,0.26969,0.867952,0.507188,0.305535,0.998323,0.589826,0.920477,0.773332,0.161881,0.247956,0.855033,0.406568,0.836024,0.238153,0.727441,0.900689,0.232623,0.372988,0.412792,0.184294,0.615614,0.997531,0.456022,0.8688,0.935478,0.864411,0.174025,0.621931,0.19062,0.4003,0.101569,0.504247,0.798194,0.553523,0.541982,0.752895,0.852954,0.999344,0.186474,0.0958312,0.406412,0.635085,0.79982,0.37225,0.242807,0.385632,0.551878,0.961821,0.555395,0.362607,0.621457,0.326495,0.953855,0.339793,0.0832534,0.743488,0.111225,0.365034,0.636656,0.121329,0.942415,0.227031,0.0609158,0.0221592,0.983364,0.0317635,0.404708,0.802675,0.140988,0.890696,0.462968,0.198993,0.553431,0.239103,0.740563,0.509559,0.786829,0.223531,0.536447,0.838446,0.671848,0.864293,0.757132,0.714097,0.704091,0.578038,0.733412,0.956322,0.518399,0.778387,0.296114,0.290531,0.944021,0.965033,0.929138,0.0140795,0.110798,0.0261511,0.790432,0.389218,0.54917,0.173659,0.466759,0.541428,0.680053,0.453672,0.628814,0.928983,0.885716,0.13921,0.221226,0.425933,0.107321,0.99694,0.471157,0.913672,0.224817,0.188014,0.594154,0.757466,0.887304,0.504738,0.276033,0.0560292,0.118951,0.690836,0.604936,0.381933,0.611834,0.196226,0.47234,0.523202,0.705909,0.638743,0.557986,0.723441,0.078786,0.598932,0.0555773,0.475613,0.950827,0.744004,0.900727,0.182406,0.572045,0.638917,0.877587,0.286615,0.420694,0.460823,0.429131,0.51803,0.393944,0.56761,0.849324,0.753543,0.623971,0.389349,0.696479,0.626011,0.85218,0.00965327,0.386764,0.338716,0.897539,0.315226,0.923827,0.959868,0.973537,0.624388,0.66029,0.111146,0.758127,0.596789,0.109315,0.889528,0.16425,0.192823,0.639267,0.762978,0.588492,0.147091,0.498626,0.527151,0.182962,0.924378,0.0295165,0.586727,0.175879,0.380246,0.628463,0.875862,0.876018,0.817114,0.813825,0.190578,0.942927,0.178144,0.0547076,0.627627,0.20127,0.81024,0.729307,0.378513,0.850231,0.383191,0.194847,0.483891,0.00737977,0.160934,0.765504,0.412262,0.568663,0.915016,0.701873,0.323821,0.230308,0.475666,0.663169,0.738835,0.793932,0.373526,0.228941,0.898438,0.00108296,0.905945,0.603013,0.0255197,0.825574,0.924739,0.0768178,0.218231,0.0335634,0.572471,0.71045,0.269867,0.597248,0.457461,0.113266,0.255685,0.70138,0.801849,0.59808,0.640811,0.89299,0.71334,0.874423,0.707671,0.515947,0.192917,0.976876,0.677128,0.477096,0.513548,0.970752,0.0236198,0.236443,0.127856,0.118561,0.214041,0.18339,0.928924,0.678061,0.566225,0.762035,0.615699,0.515168,0.770101,0.649786,0.696062,0.819669,0.820593,0.902049,0.97429,0.606684,0.75436,0.663154,0.842794,0.339709,0.365893,0.987903,0.326496,0.0478627,0.293225,0.52906,0.92249,0.589677,0.21356,0.288303,0.646047,0.00840592,0.484549,0.943902,0.0284934,0.274905,0.731933,0.321772,0.258094,0.847767,0.138583,0.499109,0.45061,0.713773,0.929465,0.356197,0.216261,0.808614,0.454678,0.930688,0.961209,0.542272,0.677639,0.173613,0.506429,0.979884,0.000479281,0.50321,0.411472,0.442069,0.488391,0.589978,0.228719,0.482912,0.371144,0.125091,0.091583,0.815939,0.161423,0.06331,0.13683,0.776794,0.840423,0.414371,0.993745,0.980677,0.501122,0.735168,0.484311,0.785134,0.181258,0.420274,0.93743,0.334309,0.677912,0.846945,0.968441,0.854343,0.786409,0.621044,0.926954,0.183507,0.654433,0.862057,0.488822,0.31593,0.282333,0.406339,0.276093,0.575239,0.391128,0.866641,0.103156,0.994017,0.471265,0.6723,0.693118,0.510036,0.7539,0.793737,0.589357,0.800815,0.451978,0.27548,0.907643,0.968394,0.475388,0.205816,0.820952,0.989541,0.245078,0.880731,0.849635,0.847538,0.869345,0.498573,0.887815,0.174229,0.150239,0.202981,0.0540191,0.897409,0.855663,0.280177,0.194265,0.711062,0.479993,0.77078,0.197475,0.872748,0.821298,0.498404,0.511008,0.798946,0.968674,0.215072,0.942791,0.743798,0.233225,0.81639,0.796719,0.568595,0.098845,0.512095,0.920621,0.953146,0.458182,0.725299,0.61365,0.151716,0.387305,0.825973,0.769136,0.722975,0.248619,0.101386,0.963162,0.0265011,0.866513,0.376861,0.706501,0.19888,0.239012,0.995481,0.723067,0.814032,0.138817,0.48862,0.978646,0.700102,0.22675,0.533396,0.876745,0.91784,0.700076,0.629743,0.165949,0.856352,0.588157,0.0920649,0.488552,0.712521,0.716626,0.580749,0.685666,0.904375,0.774631,0.143603,0.928134,0.542057,0.542542,0.589158,0.942282,0.255242,0.451794,0.311151,0.591449,0.685651,0.528079,0.971124,0.653561,0.285473,0.948223,0.594155,0.809354,0.0735358,0.702738,0.492335,0.0660217,0.817805,0.924048,0.203266,0.0163785,0.237215,0.520109,0.861226,0.0790699,0.62071,0.895913,0.713073,0.512871,0.167849,0.429902,0.522567,0.704459,0.922619,0.208262,0.537886,0.673593,0.342923,0.835333,0.960572,0.558151,0.292744,0.768812,0.282014,0.619801,0.132375,0.539958,0.284114,0.924383,0.734499,0.18481,0.704798,0.896588,0.408543,0.982263,0.557974,0.47104,0.483648,0.764487,0.775404,0.258537,0.495277,0.474704,0.311743,0.840889,0.0732523,0.951173,0.945903,0.619329,0.673225,0.276187,0.153248,0.860159,0.885412,0.226819,0.256764,0.153384,0.933532,0.231423,0.434136,0.893582,0.0994431,0.121233,0.776956,0.893921,0.796471,0.794956,0.883752,0.520685,0.641306,0.795623,0.666212,0.196452,0.666525,0.215463,0.947968,0.308847,0.970476,0.00367373,0.929816,0.746377,0.426621,0.787413,0.0877877,0.8472,0.458493,0.417381,0.274819,0.816298,0.981302,0.954769,0.874238,0.394047,0.302539,|0.653615,0.365797,0.955959,0.380525,0.048905,0.479989,0.912104,0.457854,0.900175,0.14223,0.285677,0.00938588,0.901566,0.0270615,0.110245,0.0506857,0.895046,0.706622,0.955487,0.123619,0.543986,0.623821,0.964203,0.976993,0.119779,0.962634,0.87881,0.556558,0.868971,0.063993,0.938898,0.397225,0.0440794,0.420322,0.714556,0.532458,0.93603,0.452643,0.84521,0.829266,0.403229,0.468743,0.359433,0.282152,0.377296,0.700395,0.486724,0.557661,0.882767,0.342087,0.706176,0.60215,0.491134,0.697685,0.0608508,0.533162,0.528693,0.190895,0.81802,0.0914999,0.983908,0.874083,0.166946,0.794846,0.0145761,0.752858,0.467013,0.15148,0.241098,0.643451,0.28449,0.323503,0.251642,0.556381,0.11104,0.682,0.647684,0.948528,0.0774555,0.271161,0.330183,0.288521,0.289291,0.249622,0.650589,0.699171,0.752073,0.90961,0.277474,0.286977,0.0642259,0.434523,0.19959,0.309882,0.537262,0.281773,0.293719,0.198594,0.759966,0.122652,0.0570815,0.0368078,0.160237,0.283014,0.908885,0.173565,0.319884,0.374833,0.747711,0.0557069,0.0169992,0.0432333,0.52932,0.784337,0.887684,0.443325,0.567189,0.345338,0.969498,0.201663,0.946671,0.33749,0.266292,0.771607,0.346924,0.821234,0.506619,0.705057,0.288081,0.0236102,0.183709,0.187954,0.660351,0.556236,0.671386,0.412263,0.253094,0.341171,0.367653,0.804169,0.35353,0.0620606,0.702897,0.701793,0.94183,0.386993,0.930604,0.323894,0.944725,0.0950528,0.408087,0.791044,0.307889,0.691622,0.212746,0.273733,0.202178,0.0984026,0.0431547,0.533897,0.343396,0.730667,0.891486,0.548711,0.13866,0.931643,0.474501,0.361737,0.424541,0.0210852,0.874948,0.676526,0.103622,0.768495,0.269125,0.603364,0.289142,0.589037,0.987261,0.252557,0.144981,0.178126,0.71345,0.861875,0.176367,0.286219,0.855657,0.690028,0.961871,0.0744612,0.493435,0.939331,0.122102,0.0649408,0.311186,0.747287,0.789177,0.365724,0.516061,0.273371,0.468649,0.169541,0.362433,0.793398,0.441077,0.756915,0.757708,0.214007,0.419015,0.442999,0.0993708,0.34344,0.216537,0.528154,0.81295,0.904523,0.227904,0.797327,0.563591,0.124003,0.174985,0.923829,0.794845,0.684696,0.334853,0.947032,0.146841,0.904009,0.515341,0.346665,0.140475,0.505249,0.361254,0.130506,0.950218,0.80881,0.724534,0.535236,0.614471,0.0486556,0.902838,0.760293,0.816462,0.219358,0.159969,0.00772971,0.281983,0.384005,0.360002,0.108137,0.474699,0.3623,0.0622677,0.726493,0.441407,0.208933,0.557222,0.284051,0.313527,0.81105,0.401257,0.726112,0.095146,0.118105,0.0791398,0.548255,0.866297,0.973785,0.0279273,0.0464165,0.826288,0.0863311,0.419834,0.616114,0.924162,0.18261,0.895777,0.916141,0.767905,0.330436,0.9166,0.268574,0.318028,0.768054,0.712594,0.1075,0.0544427,0.685739,0.60506,0.229304,0.019187,0.92312,0.440327,0.355055,0.802071,0.926293,0.482261,0.964739,0.330216,0.234664,0.31624,0.310858,0.520453,0.749034,0.374143,0.460292,0.427183,0.908207,0.502453,0.197421,0.864511,0.676563,0.574787,0.99094,0.46686,0.763301,0.518835,0.0241784,0.417053,0.563268,0.548316,0.928417,0.590361,0.180029,0.823799,0.545235,0.180198,0.62207,0.99432,0.584009,0.205824,0.287957,0.965212,0.184934,0.650583,0.364584,0.989317,0.492116,0.936111,0.318078,0.509049,0.909579,0.208495,0.902166,0.576345,0.357982,0.488608,0.0356495,0.929071,0.798819,0.990679,0.90716,0.705666,0.417047,0.0524756,0.595102,0.670816,0.75214,0.214649,0.863991,0.11275,0.31735,0.865636,0.593326,0.785187,0.390501,0.00941312,0.252775,0.117242,0.627542,0.330118,0.359378,0.744986,0.548089,0.517783,0.745373,0.38758,0.858831,0.806709,0.0615824,0.030304,0.497889,0.433147,0.254711,0.646408,0.817231,0.736094,0.989358,0.393652,0.0118529,0.70666,0.980793,0.567277,0.241915,0.715478,0.505486,0.392577,0.446891,0.464756,0.545701,0.208578,0.935011,0.8107,0.636263,0.774834,0.0959229,0.227062,0.830508,0.807947,0.48418,0.738606,0.629336,0.0666372,0.87634,0.826232,0.31495,0.161689,0.466216,0.477916,0.541447,0.490712,0.369063,0.124463,0.308567,0.859665,0.158258,0.0813396,0.491024,0.622132,0.365695,0.817968,0.746127,0.594711,0.166022,0.538147,0.415833,0.668243,0.25086,0.188085,0.31118,0.074941,0.738926,0.00201023,0.298961,0.520563,0.14557,0.813895,0.429713,0.831129,0.300435,0.0605298,0.94135,0.202372,0.021542,0.446594,0.972337,0.957555,0.612143,0.231427,0.616433,0.56485,0.756774,0.363055,0.899146,0.302799,0.0699624,0.189896,0.270181,0.189712,0.951591,0.974306,0.118401,0.0225726,0.116982,0.00143379,0.363773,0.80356,0.598682,0.837786,0.483797,0.115343,0.36976,0.608484,0.0255362,0.932518,0.299929,0.408273,0.923911,0.235292,0.30724,0.0781603,0.575744,0.1903,0.348569,0.868054,0.688378,0.926118,0.318578,0.886562,0.362869,0.817178,0.894453,0.436812,0.741895,0.636459,0.882384,0.151218,0.102959,0.703504,0.35156,0.225694,0.649757,0.440255,0.281538,0.592157,0.349304,0.668852,0.955337,0.093381,0.518051,0.588958,0.376364,0.693702,0.272567,0.0901723,0.712723,0.325219,0.944324,0.330269,0.503886,0.393972,0.286071,0.325033,0.340775,0.704544,0.159696,0.0429569,0.287267,0.836389,0.0827488,0.737065,0.0853317,0.597813,0.41928,0.669756,0.662159,0.939799,0.206777,0.643575,0.169773,0.860685,0.657874,0.00638944,0.631733,0.0404147,0.128388,0.256779,0.4404,0.696487,0.788981,0.834389,0.962762,0.67442,0.0487828,0.556421,0.562276,0.318403,0.22926,0.385795,0.904406,0.0951475,0.202424,0.374736,0.355844,0.676057,0.0920082,0.214069,0.215633,0.236721,0.241615,0.939315,0.657092,0.372687,0.577983,0.879643,0.260669,0.993012,0.743622,0.825255,0.0239005,0.510508,0.211503,0.420412,0.0662301,0.748534,0.450951,0.77897,0.183946,0.990353,0.364179,0.477509,0.238968,0.0853456,0.181301,0.407213,0.335975,0.239801,0.306466,0.975313,0.89034,0.586426,0.911641,0.954972,0.359906,0.315724,0.467461,0.89924,0.36915,0.130792,0.840826,0.0465623,0.818484,0.169983,0.872141,0.35802,0.142134,0.0417913,0.860587,0.55979,0.683219,0.0671257,0.0167769,0.217109,0.323932,0.50606,0.0273412,0.923967,0.534008,0.347817,0.661298,0.135288,0.216926,0.990292,0.548334,0.908428,0.631901,0.566802,0.715662,0.78037,0.508254,0.291085,0.373801,0.757542,0.12265,0.927707,0.679179,0.441526,0.565602,0.331671,0.598752,0.0763237,0.763203,0.138224,0.642484,0.664181,0.26633,0.528844,0.74198,0.985534,0.145507,0.00854605,0.814285,0.938729,0.257813,0.577509,0.470269,0.890448,0.258383,0.0477961,0.581323,0.991029,0.772474,0.154622,0.659637,0.928166,0.0261971,0.592652,0.632996,0.156944,0.415113,0.879615,0.439878,0.0721034,0.48077,0.897188,0.346782,0.425786,0.130414,0.157319,0.655146,0.370084,0.659765,0.575381,0.113225,0.604738,0.489683,0.868993,0.993009,0.806921,0.845485,0.270677,0.684473,0.297423,0.68484,0.779382,0.656904,0.670867,0.927194,0.910639,0.930653,0.581083,0.165717,0.152887,0.300053,0.0961603,0.460444,0.816892,0.610973,0.817438,0.778119,0.549448,0.408711,0.611223,0.277199,0.795471,0.571535,0.223453,0.464424,0.738843,0.751507,0.476655,0.746918,0.998388,0.0398624,0.548301,0.527839,0.560909,0.0879503,0.808842,0.800264,0.942082,0.839934,0.206945,0.305683,0.494134,0.333564,0.575701,0.202846,0.19218,0.633731,0.995919,0.576469,0.708118,0.654198,0.0315885,0.677664,0.599374,0.521183,0.72506,0.398501,0.637715,0.339093,0.357637,0.84572,0.510497,0.388031,0.644156,0.532783,0.712353,0.783987,0.248601,0.421168,0.401789,0.959197,0.754773,0.631587,0.449584,0.708193,0.134622,0.667394,0.574459,0.55655,0.238892,0.299118,0.716978,0.558494,0.263138,0.524035,0.276047,0.142821,0.983872,0.61938,0.750611,0.180132,0.947436,0.86044,0.352662,0.330628,0.839523,0.244743,0.646808,0.139791,0.438849,0.506661,0.0496748,0.29832,0.683013,0.66476,0.750884,0.613883,0.649771,0.761864,0.321788,0.252677,0.161537,0.345033,0.262608,0.707479,0.342982,0.328346,0.714128,0.806925,0.102749,0.243262,0.947893,0.601504,0.970447,0.202571,0.679913,0.757745,0.478688,0.465241,0.0541796,0.100071,0.873542,0.399157,0.303514,0.777988,0.87476,0.807948,0.950552,0.988216,0.958237,0.13136,0.324494,0.764024,0.323911,0.115697,0.814236,0.487753,0.371027,0.219592,0.648968,0.729996,0.0148674,0.881305,0.0604375,0.784675,0.542422,0.80604,0.904886,0.125355,0.135263,0.78926,0.876155,0.767971,0.45358,0.764246,0.633179,0.231031,0.455148,0.503322,0.207671,0.555736,0.561519,0.391528,0.23034,0.401482,0.773296,0.164756,0.761312,0.659205,0.910592,0.739171,0.218244,0.474036,0.715185,0.456812,0.799993,0.835452,0.516696,0.865174,0.883591,0.561366,0.962498,0.115151,0.596159,0.00548232,0.194518,0.156933,0.696579,0.879668,0.888659,0.270344,0.904736,0.7771,0.861573,0.99521,0.243349,0.852266,0.898288,0.0042941,0.960784,0.648982,0.757742,0.212676,0.629903,0.229043,0.61361,0.816779,0.54268,0.649225,0.54597,0.804724,0.0923917,0.258612,0.650708,0.440973,0.556778,0.476474,0.892176,0.601639,0.00439167,0.0145143,0.852623,0.335458,0.0742205,0.860137,0.411801,0.560225,0.0840541,0.207823,0.114503,0.884061,0.914804,0.274142,0.214988,0.761435,0.414981,0.229859,0.139925,0.379475,0.6252,0.831441,0.88379,0.945862,0.851425,0.403981,0.346131,0.0403115,0.264012,0.346157,0.228716,0.999852,0.602094,0.734594,0.791369,0.216051,0.468671,0.360839,0.653695,0.434078,0.135343,0.413109,0.158551,0.652005,0.0552278,0.888535,0.14968,0.015083,0.117385,0.60966,0.161786,0.0672672,0.730303,0.578923,0.136031,0.716428,0.894111,0.532309,|0.425988,0.554283,0.849478,0.187698,0.853673,0.628065,0.313485,0.90192,0.607147,0.972436,0.318578,0.438438,0.114498,0.548382,0.102378,0.138703,0.893091,0.762462,0.962307,0.579563,0.19238,0.651471,0.81948,0.614211,0.231288,0.0816772,0.324141,0.893942,0.652745,0.0101452,0.151405,0.75255,0.340588,0.385124,0.61778,0.053107,0.683419,0.024962,0.587125,0.365457,0.313899,0.571227,0.280666,0.755774,0.515463,0.710466,0.0836477,0.191263,0.0167239,0.190171,0.347994,0.152762,0.156462,0.0292773,0.842622,0.975704,0.764765,0.876421,0.53645,0.782875,0.127882,0.0509883,0.43309,0.913096,0.190251,0.149106,0.880902,0.512981,0.00915766,0.688767,0.473996,0.0934136,0.289727,0.152046,0.63638,0.0983507,0.987422,0.872661,0.214997,0.691534,0.197112,0.472984,0.663427,0.622833,0.781019,0.655683,0.751061,0.123102,0.927664,0.343128,0.825357,0.41921,0.768905,0.460325,0.438968,0.888781,0.293068,0.382562,0.704331,0.209961,0.11804,0.59111,0.330096,0.22994,0.652498,0.947542,0.268069,0.0892698,0.75426,0.721379,0.288583,0.38988,0.787067,0.777406,0.0932885,0.67242,0.43718,0.912758,0.564811,0.974964,0.841083,0.102476,0.0715137,0.370837,0.962775,0.735757,0.937816,0.145772,0.757757,0.124882,0.945134,0.998412,0.346519,0.324328,0.490167,0.637761,0.693512,0.731306,0.90474,0.696415,0.227901,0.231758,0.0563759,0.246348,0.82109,0.986654,0.382894,0.0813494,0.954101,0.862995,0.454722,0.46015,0.606923,0.144383,0.74961,0.0836948,0.088328,0.39104,0.351676,0.862082,0.616267,0.481382,0.719215,0.650133,0.902386,0.310784,0.714899,0.916474,0.0906684,0.412197,0.159442,0.0415177,0.583292,0.479695,0.0795631,0.0663093,0.364901,0.166286,0.921638,0.760593,0.16697,0.527791,0.828877,0.791087,0.254151,0.448028,0.0439897,0.0878936,0.924157,0.250851,0.914067,0.318604,0.0268018,0.260098,0.12655,0.511997,0.414486,0.841459,0.893479,0.0505792,0.342817,0.110284,0.556686,0.842967,0.474877,0.681654,0.925539,0.90522,0.298591,0.984845,0.14199,0.863853,0.0284291,0.927812,0.216745,0.704318,0.220698,0.299419,0.904108,0.251485,0.549849,0.46922,0.310716,0.156088,0.496607,0.209387,0.280548,0.159539,0.478061,0.432027,0.984557,0.780759,0.538076,0.697955,0.208826,0.149652,0.626977,0.121222,0.570351,0.157238,0.764514,0.631153,0.595377,0.64325,0.831167,0.0550622,0.90715,0.80999,0.743928,0.0409896,0.0349566,0.323695,0.934637,0.219841,0.40483,0.111306,0.0613796,0.164397,0.564223,0.604922,0.949409,0.841772,0.557313,0.898527,0.94065,0.516314,0.72106,0.0342265,0.184374,0.382809,0.131057,0.784947,0.00332427,0.0672299,0.225597,0.0964329,0.428769,0.750179,0.0569282,0.226826,0.662792,0.452177,0.570878,0.541251,0.0770718,0.041571,0.010561,0.108272,0.619902,0.369144,0.120817,0.308531,0.415907,0.162999,0.176582,0.523541,0.0376893,0.42539,0.639011,0.679343,0.534558,0.75244,0.706904,0.478735,0.0229783,0.862357,0.432205,0.218253,0.0602426,0.89588,0.330874,0.245248,0.651765,0.83689,0.108955,0.362168,0.322536,0.458606,0.485532,0.194644,0.666448,0.249652,0.875936,0.796788,0.669793,0.435823,0.112246,0.175871,0.342933,0.767857,0.721182,0.180254,0.0515353,0.994196,0.358848,0.681569,0.615613,0.16449,0.388493,0.825825,0.880825,0.00509268,0.699509,0.737549,0.98115,0.659354,0.974288,0.498736,0.955385,0.716813,0.0789431,0.276825,0.723613,0.997693,0.424042,0.659479,0.36246,0.769829,0.0708632,0.390447,0.934778,0.901595,0.564026,0.332918,0.965764,0.215676,0.132666,0.930456,0.605329,0.754794,0.554839,0.241422,0.843318,0.885128,0.246163,0.121038,0.224716,0.858014,0.414738,0.885497,0.605904,0.269741,0.124638,0.0943025,0.380226,0.433627,0.666832,0.452609,0.644862,0.376602,0.226229,0.101313,0.391876,0.991617,0.180896,0.287969,0.56949,0.861185,0.106863,0.925057,0.511882,0.327192,0.941804,0.370882,0.23627,0.128751,0.546317,0.0509609,0.653783,0.409514,0.868239,0.580198,0.30983,0.736849,0.891918,0.218177,0.375935,0.891789,0.799061,0.923432,0.732106,0.0027889,0.372225,0.0446301,0.439547,0.0899547,0.491424,0.648992,0.55417,0.598015,0.825474,0.32806,0.0519073,0.659116,0.276188,0.391849,0.439931,0.362478,0.476016,0.486165,0.955899,0.510191,0.144863,0.558387,0.0820757,0.185307,0.766028,0.7472,0.032881,0.571554,0.213206,0.143512,0.240476,0.875341,0.428734,0.664846,0.71015,0.202745,0.829657,0.215466,0.593434,0.760405,0.764035,0.388824,0.622348,0.296131,0.397321,0.933424,0.368611,0.753835,0.160104,0.00772119,0.133853,0.00717199,0.0278416,0.905343,0.883877,0.775053,0.264423,0.514072,0.9161,0.677682,0.334274,0.829849,0.359294,0.302662,0.0670982,0.167874,0.744904,0.546717,0.700272,0.308919,0.960314,0.76042,0.133318,0.158105,0.856488,0.739077,0.455057,0.221467,0.525851,0.793163,0.423284,0.577278,0.612066,0.119272,0.0511805,0.0978397,0.412233,0.206223,0.890401,0.201887,0.661516,0.600004,0.610071,0.800602,0.822708,0.677294,0.746868,0.376148,0.152205,0.815343,0.786185,0.934862,0.656856,0.449004,0.47598,0.963742,0.940133,0.446484,0.261278,0.277188,0.429869,0.405344,0.489017,0.289357,0.318938,0.887295,0.0250711,0.439206,0.525067,0.945056,0.302543,0.539263,0.571636,0.556504,0.288089,0.0518592,0.483482,0.225966,0.93112,0.615477,0.433641,0.498951,0.945921,0.367557,0.0756966,0.413217,0.79231,0.788025,0.918699,0.0741943,0.817901,0.326237,0.872775,0.0783655,0.667349,0.46326,0.198796,0.717669,0.183521,0.713478,0.942407,0.415839,0.332328,0.733967,0.575248,0.850821,0.556969,0.0973588,0.0151837,0.56283,0.731701,0.176481,0.439546,0.976998,0.146832,0.279335,0.420347,0.025633,0.0907225,0.840063,0.775521,0.948369,0.363729,0.397461,0.214982,0.0993918,0.899977,0.00408077,0.754091,0.921824,0.151684,0.943197,0.880687,0.342064,0.31837,0.700396,0.331742,0.138666,0.658461,0.24304,0.503162,0.690929,0.502586,0.669003,0.248761,0.0646259,0.604201,0.394421,0.395216,0.301527,0.486215,0.646254,0.879809,0.891712,0.0769749,0.765245,0.228808,0.303771,0.619764,0.935361,0.54265,0.227089,0.0954656,0.329189,0.0302076,0.122355,0.892003,0.420027,0.224856,0.0123892,0.457418,0.633931,0.955287,0.173627,0.246571,0.716378,0.215798,0.0517666,0.641071,0.251771,0.694508,0.756981,0.725504,0.19342,0.357842,0.807477,0.114956,0.980856,0.856714,0.277666,0.603184,0.167052,0.0876191,0.288746,0.610638,0.231898,0.455425,0.729975,0.654825,0.35795,0.438578,0.773477,0.442816,0.44565,0.363956,0.42586,0.158325,0.064491,0.737413,0.944542,0.506919,0.382892,0.405473,0.236513,0.723675,0.302323,0.312766,0.79279,0.178145,0.359084,0.106385,0.881803,0.829668,0.231793,0.727818,0.452979,0.101431,0.681468,0.444745,0.979787,0.56955,0.468682,0.320758,0.556636,0.532214,0.163162,0.79109,0.813451,0.223239,0.317271,0.553129,0.361917,0.691079,0.515797,0.915408,0.13283,0.936234,0.817599,0.00343281,0.105714,0.917994,0.658121,0.693115,0.0161011,0.894135,0.266803,0.221634,0.166548,0.261398,0.210392,0.159801,0.570349,0.344021,0.930556,0.327186,0.600746,0.458222,0.10318,0.104125,0.916283,0.220574,0.770101,0.322225,0.303696,0.198188,0.941649,0.678128,0.973604,0.0050503,0.518701,0.800928,0.0957113,0.732715,0.559773,0.188007,0.600479,0.150765,0.0661297,0.165752,0.484128,0.694452,0.0815768,0.411939,0.0547308,0.0938714,0.44956,0.340201,0.970343,0.73488,0.123433,0.3722,0.0564036,0.499697,0.669105,0.741911,0.619022,0.400363,0.135669,0.888735,0.94061,0.372775,0.931606,0.300386,0.380309,0.38187,0.902742,0.272802,0.915346,0.880536,0.632026,0.416582,0.782601,0.476704,0.849583,0.112794,0.653958,0.318439,0.0267171,0.176954,0.847166,0.916236,0.759508,0.776158,0.128822,0.946661,0.0134839,0.30021,0.494207,0.477572,0.854081,0.50606,0.971823,0.942998,0.793421,0.434035,0.930051,0.281197,0.367794,0.215764,0.713838,0.897999,0.943404,0.863613,0.354097,0.111202,0.255077,0.0728659,0.323501,0.15644,0.756979,0.127334,0.650937,0.764076,0.730599,0.647083,0.159558,0.189347,0.396428,0.932468,0.656197,0.796966,0.0159006,0.694692,0.320563,0.00116599,0.080494,0.863302,0.46419,0.243477,0.444359,0.0964535,0.32967,0.789663,0.11711,0.169755,0.85176,0.502681,0.0203316,0.960505,0.873793,0.109437,0.108103,0.517135,0.189235,0.488251,0.980337,0.670492,0.0120203,0.0162552,0.210441,0.123058,0.463793,0.655057,0.367096,0.318711,0.951149,0.370471,0.433749,0.463241,0.581205,0.74172,0.134596,0.638763,0.77215,0.475549,0.669901,0.515099,0.604439,0.245729,0.928801,0.0499383,0.776069,0.396483,0.157991,0.532207,0.180496,0.459868,0.816012,0.891488,0.507433,0.58978,0.340491,0.0255296,0.962312,0.132292,0.982228,0.0854118,0.0705905,0.0655618,0.998091,0.033978,0.495881,0.724217,0.946517,0.35641,0.861954,0.16782,0.696619,0.0623638,0.0837312,0.625729,0.990235,0.826996,0.573483,0.612479,0.39382,0.250658,0.961151,0.307759,0.355062,0.752146,0.118891,0.409732,0.0553624,0.348734,0.999366,0.227868,0.130982,0.918814,0.269932,0.825942,0.846373,0.14229,0.661005,0.68808,0.435012,0.365335,0.573878,0.197259,0.977464,0.625363,0.390836,0.826097,0.746724,0.312759,0.403702,0.181348,0.854631,0.694296,0.408389,0.630937,0.821289,0.503012,0.164226,0.63641,0.0887831,0.699326,0.545325,0.266365,0.761342,0.872744,0.809194,0.487459,0.187794,0.513396,0.844804,0.532725,0.750373,0.956842,0.623783,0.0357218,0.991527,0.934988,0.378551,0.923799,0.421528,0.795684,0.762341,0.999939,0.844341,0.984902,0.39267,0.666297,0.0272689,0.455493,0.950334,0.871476,0.62114,|0.776016,0.660537,0.280533,0.763449,0.409663,0.348364,0.0990027,0.75978,0.911545,0.955825,0.998488,0.879933,0.554212,0.233236,0.928407,0.537735,0.594572,0.183744,0.769634,0.585299,0.148662,0.0360225,0.897265,0.109543,0.985529,0.954169,0.858841,0.486038,0.808162,0.737982,0.864533,0.157705,0.385729,0.917186,0.270887,0.346047,0.0308976,0.388722,0.142842,0.475324,0.336193,0.118105,0.0970797,0.895725,0.528213,0.563123,0.20702,0.00974709,0.973307,0.194227,0.597431,0.999584,0.831078,0.117536,0.52991,0.928264,0.181284,0.025126,0.637765,0.170659,0.886669,0.277871,0.398701,0.235275,0.179689,0.824738,0.638495,0.810714,0.0397441,0.523259,0.942949,0.892467,0.357868,0.497136,0.967836,0.0535132,0.836416,0.722825,0.0146963,0.312472,0.879734,0.799265,0.66265,0.359454,0.298753,0.787815,0.629485,0.0569429,0.378961,0.902927,0.0419321,0.360611,0.880883,0.619165,0.464306,0.278951,0.438799,0.372384,0.753098,0.189821,0.176087,0.208054,0.962736,0.690982,0.697666,0.424001,0.849434,0.427369,0.883442,0.813054,0.99022,0.466591,0.745191,0.753291,0.103578,0.251103,0.467494,0.253065,0.832845,0.446403,0.589576,0.370509,0.653347,0.241918,0.974969,0.191469,0.0493011,0.672561,0.400373,0.469895,0.473255,0.326426,0.0401904,0.470723,0.772596,0.84544,0.884053,0.215078,0.551003,0.586773,0.574831,0.687794,0.561581,0.994331,0.110809,0.598387,0.793266,0.515076,0.104108,0.381846,0.124637,0.0750329,0.39154,0.103981,0.595417,0.957029,0.439666,0.882814,0.848403,0.382251,0.416246,0.0279471,0.778245,0.966711,0.651458,0.234541,0.143424,0.794301,0.721052,0.214612,0.246196,0.277674,0.746609,0.904718,0.371145,0.0110468,0.569084,0.732353,0.0665879,0.382503,0.543299,0.482784,0.710322,0.266148,0.503308,0.0952955,0.409093,0.565918,0.719637,0.342267,0.167765,0.0334237,0.335358,0.109949,0.576322,0.266338,0.47211,0.0130287,0.540784,0.366444,0.0170059,0.365941,0.795579,0.68347,0.639833,0.453315,0.405701,0.489145,0.440525,0.255051,0.989528,0.130775,0.126583,0.49385,0.0236642,0.303838,0.651562,0.921754,0.729653,0.489589,0.102201,0.95449,0.723018,0.854598,0.53309,0.70362,0.728355,0.587001,0.972399,0.952161,0.649655,0.793764,0.968477,0.994403,0.0837919,0.641077,0.903718,0.95562,0.407275,0.294724,0.544326,0.473389,0.931462,0.284012,0.601906,0.0813694,0.169013,0.85431,0.673424,0.969576,0.104778,0.995687,0.4615,0.726491,0.292672,0.785724,0.520916,0.75828,0.275004,0.406717,0.658358,0.412316,0.504326,0.900432,0.205284,0.151141,0.359074,0.462718,0.521338,0.0295961,0.644051,0.362719,0.116308,0.0726349,0.303255,0.858694,0.565697,0.561544,0.923278,0.338887,0.854627,0.796735,0.847575,0.0558006,0.264916,0.121404,0.983434,0.786688,0.976633,0.198512,0.0549509,0.555958,0.715019,0.286912,0.711716,0.317648,0.693662,0.927017,0.698877,0.66796,0.552193,0.445558,0.0597106,0.32967,0.941181,0.0347126,0.452809,0.153445,0.261758,0.991366,0.17265,0.105343,0.281372,0.0143756,0.415945,0.461804,0.80418,0.830375,0.367994,0.414985,0.630882,0.107685,0.300246,0.161586,0.286173,0.333385,0.145697,0.689605,0.6341,0.419542,0.878331,0.929781,0.465357,0.637025,0.445502,0.368841,0.320367,0.533308,0.385504,0.213351,0.27044,0.7145,0.725784,0.342417,0.53204,0.955532,0.715814,0.871503,0.726423,0.0707315,0.552475,0.376432,0.825558,0.471097,0.430038,0.691142,0.410789,0.892817,0.166388,0.147855,0.965703,0.798877,0.734397,0.421275,0.316078,0.319657,0.754231,0.726686,0.632665,0.0832825,0.171958,0.549537,0.534199,0.152184,0.959198,0.72244,0.907936,0.48228,0.481468,0.306169,0.908629,0.105417,0.954203,0.84874,0.228542,0.539216,0.310151,0.809869,0.117196,0.719621,0.583817,0.728312,0.184364,0.121807,0.299346,0.357732,0.0791674,0.423571,0.201092,0.402946,0.69847,0.393971,0.659375,0.454016,0.547688,0.70531,0.468276,0.540479,0.52463,0.507836,0.247628,0.752407,0.88572,0.77955,0.947992,0.353709,0.223642,0.174775,0.917837,0.62702,0.33738,0.280019,0.663458,0.945801,0.125857,0.853913,0.150836,0.764496,0.708434,0.806623,0.0972294,0.297546,0.381089,0.953724,0.566683,0.199698,0.314906,0.716492,0.626575,0.932708,0.654656,0.667126,0.698451,0.70511,0.0140407,0.400149,0.586811,0.0815682,0.341107,0.508928,0.291671,0.043882,0.259789,0.0243558,0.468617,0.529523,0.54555,0.955149,0.439958,0.87957,0.895981,0.488045,0.546055,0.285478,0.0859,0.785205,0.409083,0.970508,0.483926,0.86083,0.540296,0.124065,0.074069,0.183226,0.545763,0.380025,0.0244709,0.156996,0.563638,0.0886509,0.561466,0.503709,0.100871,0.0747252,0.731973,0.522755,0.910293,0.886617,0.0298628,0.899175,0.308238,0.144434,0.364942,0.376827,0.023367,0.260458,0.222811,0.255697,0.130472,0.275893,0.0456643,0.333224,0.653853,0.0520313,0.525677,0.937884,0.19453,0.934594,0.692056,0.24268,0.898529,0.512198,0.221958,0.619782,0.290575,0.556444,0.685715,0.389699,0.0388447,0.0072068,0.715106,0.723161,0.428724,0.410704,0.986162,0.504745,0.328747,0.597277,0.0806744,0.0583308,0.329706,0.691083,0.709729,0.895308,0.174774,0.591491,0.68657,0.159212,0.756653,0.812708,0.498075,0.468511,0.893259,0.657358,0.408597,0.616983,0.0530134,0.362764,0.790726,0.553355,0.526036,0.109712,0.525952,0.297122,0.0249175,0.657492,0.857302,0.482831,0.565534,0.608817,0.111079,0.76578,0.341175,0.824353,0.126016,0.291586,0.567375,0.30917,0.717967,0.561917,0.739077,0.976028,0.455498,0.947577,0.499719,0.191013,0.047621,0.116487,0.0244129,0.668568,0.357002,0.646553,0.181275,0.0343556,0.42312,0.552743,0.648105,0.105956,0.753397,0.69198,0.0526424,0.317924,0.474903,0.309911,0.518151,0.86677,0.200803,0.663402,0.0358115,0.87134,0.321642,0.847695,0.767807,0.342269,0.904842,0.737682,0.986465,0.439166,0.976901,0.897368,0.0480404,0.796167,0.433508,0.867417,0.068129,0.789832,0.768356,0.733897,0.212621,0.523818,0.885684,0.15975,0.40743,0.909144,0.415992,0.832484,0.639017,0.295,0.628722,0.815324,0.782303,0.724198,0.102524,0.992454,0.00124937,0.515473,0.545552,0.191865,0.345337,0.79414,0.48781,0.189777,0.229135,0.46108,0.469878,0.896864,0.347926,0.038632,0.510437,0.819481,0.652126,0.95861,0.413818,0.501636,0.785213,0.518413,0.754223,0.251895,0.921697,0.875056,0.358251,0.465138,0.441594,0.690445,0.565634,0.521486,0.390248,0.3282,0.727682,0.409906,0.365443,0.566867,0.507969,0.393825,0.579144,0.505183,0.224991,0.643298,0.633135,0.993925,0.729852,0.77013,0.122625,0.400993,0.658467,0.764327,0.273695,0.666265,0.0347339,0.780374,0.130463,0.363347,0.990235,0.154385,0.918505,0.879495,0.77592,0.227548,0.284382,0.13454,0.943219,0.314605,0.195665,0.88788,0.35429,0.603709,0.124945,0.903783,0.97651,0.878869,0.856482,0.954086,0.614547,0.333518,0.783566,0.260663,0.931745,0.169436,0.567105,0.423732,0.521858,0.550159,0.595082,0.26759,0.322277,0.704981,0.168464,0.423048,0.672423,0.121847,0.39715,0.231664,0.121175,0.347027,0.711214,0.732988,0.525052,0.211173,0.386562,0.0573783,0.545917,0.196484,0.691127,0.0333189,0.250224,0.932019,0.0786537,0.637635,0.550412,0.0657405,0.156035,0.813826,0.380576,0.573491,0.540232,0.368487,0.859767,0.522568,0.996596,0.503653,0.1151,0.882448,0.957124,0.0432103,0.607291,0.755118,0.998075,0.311592,0.258396,0.585704,0.660336,0.452751,0.467379,0.792187,0.182551,0.250757,0.745108,0.9992,0.117935,0.372544,0.0225507,0.486125,0.980168,0.915519,0.145624,0.999104,0.710274,0.672986,0.0708119,0.659787,0.729176,0.61443,0.13099,0.117384,0.436835,0.715893,0.322122,0.0102662,0.241738,0.487452,0.690981,0.291957,0.805539,0.800345,0.17226,0.415544,0.0242424,0.509619,0.827634,0.26246,0.98903,0.809431,0.843344,0.418883,0.965976,0.473268,0.296021,0.0718709,0.276988,0.0491968,0.39062,0.465272,0.61051,0.371031,0.375522,0.318419,0.496318,0.378875,0.886496,0.760691,0.0616403,0.293029,0.256234,0.937654,0.940846,0.732196,0.658506,0.633614,0.274892,0.92161,0.955625,0.377808,0.17493,0.82779,0.959204,0.625991,0.87515,0.169629,0.193186,0.504067,0.163553,0.577288,0.920754,0.98041,0.73486,0.64907,0.832729,0.84618,0.901836,0.379188,0.8106,0.107383,0.838873,0.505055,0.892119,0.826074,0.17498,0.00984991,0.0868658,0.280127,0.794928,0.586667,0.947012,0.927067,0.098778,0.594995,0.155107,0.487546,0.817297,0.499345,0.843448,0.613274,0.959489,0.329984,0.846966,0.273518,0.118988,0.843568,0.386467,0.0815437,0.74802,0.896259,0.224184,0.559998,0.326813,0.0378959,0.121553,0.847386,0.292524,0.140303,0.776461,0.53317,0.660821,0.978012,0.993926,0.201429,0.203771,0.480049,0.567588,0.409557,0.920601,0.553503,0.150081,0.975429,0.828936,0.316734,0.719248,0.367048,0.48485,0.514983,0.532208,0.121922,0.196463,0.759373,0.256964,0.667812,0.685534,0.765803,0.625566,0.92222,0.345091,0.843922,0.880636,0.324077,0.0741571,0.188604,0.392817,0.69831,0.205481,0.157551,0.177276,0.395029,0.911227,0.844725,0.268174,0.422488,0.346923,0.474911,0.733798,0.154692,0.541748,0.131846,0.34145,0.713578,0.314703,0.514364,0.993419,0.128079,0.679433,0.548562,0.333154,0.578234,0.580125,0.209724,0.7981,0.20374,0.674491,0.664202,0.963,0.632989,0.00917107,0.721948,0.420961,0.632798,0.804695,0.361877,0.0438055,0.226076,0.603763,0.860536,0.171345,0.661165,0.656749,0.528422,0.875641,0.984721,0.61885,0.516315,0.621,0.504785,0.231135,0.719833,0.981338,0.346714,0.0433226,0.473073,0.389209,0.589567,0.407661,0.62578,|0.773233,0.961061,0.102447,0.535387,0.256496,0.593108,0.036863,0.467071,0.474504,0.565047,0.475448,0.837977,0.881551,0.14884,0.742376,0.996237,0.9068,0.483139,0.448884,0.931326,0.748953,0.0148641,0.0897641,0.11322,0.70036,0.800397,0.00601906,0.76001,0.316333,0.587824,0.59663,0.278972,0.337403,0.8894,0.775303,0.911348,0.384147,0.453658,0.672786,0.946135,0.450279,0.0668167,0.911694,0.204278,0.961766,0.347744,0.464923,0.168056,0.817679,0.501814,0.970173,0.677556,0.467818,0.924804,0.289985,0.418918,0.982348,0.156751,0.434401,0.145167,0.263112,0.856589,0.427362,0.864739,0.94098,0.97079,0.979643,0.593223,0.138849,0.454783,0.948467,0.990745,0.679119,0.773213,0.659902,0.486332,0.156708,0.133169,0.646426,0.965715,0.709046,0.659157,0.550995,0.227839,0.21993,0.427262,0.509955,0.181034,0.166577,0.862191,0.946241,0.731888,0.898032,0.274588,0.278099,0.45298,0.619543,0.67327,0.575994,0.54699,0.560634,0.157386,0.734642,0.605666,0.240691,0.711952,0.303639,0.763716,0.604388,0.543662,0.571434,0.812108,0.425581,0.681114,0.135368,0.562729,0.971691,0.747624,0.304423,0.00345927,0.743037,0.174782,0.629329,0.821345,0.167654,0.110355,0.193926,0.215547,0.586762,0.177388,0.147733,0.28007,0.960209,0.14338,0.509838,0.125137,0.554374,0.138499,0.590384,0.866143,0.915642,0.131008,0.179291,0.885659,0.415029,0.753034,0.358708,0.626802,0.376748,0.715835,0.0135083,0.784999,0.364968,0.166514,0.441903,0.0808212,0.429864,0.123998,0.280384,0.907733,0.970266,0.303828,0.0351356,0.691087,0.0717924,0.152335,0.0171373,0.5617,0.192508,0.666212,0.32398,0.196358,0.225519,0.774587,0.422222,0.751872,0.532785,0.0477151,0.260256,0.138892,0.807312,0.914599,0.660184,0.587879,0.913937,0.95472,0.483219,0.26728,0.375288,0.783926,0.918316,0.964318,0.895253,0.799323,0.258443,0.754063,0.650742,0.072167,0.622539,0.123062,0.295739,0.463114,0.79078,0.62878,0.33513,0.108415,0.589462,0.835836,0.294204,0.953499,0.798788,0.0313875,0.195894,0.271271,0.246342,0.227287,0.217058,0.594204,0.57805,0.891572,0.56433,0.608002,0.436579,0.705768,0.32709,0.973292,0.681314,0.89143,0.392214,0.813802,0.714453,0.697718,0.334963,0.756153,0.176019,0.829203,0.0583392,0.0138537,0.448903,0.961912,0.42415,0.855,0.156326,0.0714432,0.541902,0.483878,0.462376,0.507454,0.99655,0.536483,0.967794,0.754826,0.0307807,0.569423,0.943634,0.866667,0.931797,0.224851,0.451819,0.410525,0.490466,0.615172,0.441141,0.670932,0.691954,0.490492,0.0690038,0.319791,0.23168,0.886276,0.747255,0.0237359,0.480902,0.92966,0.0822224,0.665627,0.450786,0.31715,0.5001,0.0125152,0.833275,0.421078,0.760018,0.944371,0.739656,0.0852089,0.486171,0.104392,0.453747,0.680008,0.938995,0.422373,0.00447327,0.870161,0.535007,0.517903,0.920811,0.110288,0.0755568,0.417779,0.503622,0.509822,0.532028,0.916234,0.928397,0.580284,0.217354,0.654396,0.143109,0.818059,0.187456,0.386371,0.17312,0.20529,0.521465,0.780249,0.367985,0.217722,0.568543,0.789056,0.152597,0.774046,0.910682,0.847814,0.915463,0.203561,0.700784,0.446378,0.881338,0.107601,0.483174,0.714854,0.878574,0.337494,0.76705,0.784759,0.738087,0.999911,0.122786,0.780721,0.858297,0.969369,0.247747,0.100271,0.73017,0.46821,0.375343,0.996929,0.800934,0.538717,0.524795,0.172328,0.316009,0.804777,0.950231,0.200443,0.744567,0.498214,0.621877,0.216011,0.938259,0.268132,0.0955768,0.79907,0.603764,0.36763,0.627584,0.94902,0.490498,0.236259,0.637235,0.914503,0.0907334,0.703219,0.501671,0.295124,0.523861,0.880513,0.267041,0.0677149,0.569767,0.219227,0.220801,0.301191,0.269943,0.973843,0.00156558,0.00724208,0.0969574,0.171887,0.465901,0.763343,0.673431,0.734202,0.950577,0.309224,0.683296,0.62785,0.328446,0.288827,0.824366,0.408611,0.397125,0.960119,0.964342,0.391297,0.876137,0.408876,0.835403,0.0500894,0.0120005,0.836514,0.432645,0.438357,0.946748,0.346061,0.855088,0.0375604,0.236188,0.0245421,0.215733,0.837571,0.724201,0.677261,0.004866,0.912922,0.00745517,0.712224,0.852497,0.154589,0.146602,0.900836,0.105545,0.39379,0.056155,0.854109,0.911923,0.468094,0.261625,0.60904,0.521775,0.501675,0.023359,0.116728,0.545978,0.731976,0.893367,0.583512,0.384895,0.165832,0.643709,0.207403,0.827993,0.887683,0.183327,0.859191,0.0473883,0.624385,0.702906,0.886327,0.926727,0.651497,0.57356,0.325594,0.396164,0.301443,0.383244,0.529221,0.665085,0.281179,0.44343,0.953361,0.537541,0.103521,0.838594,0.762055,0.508241,0.341254,0.677489,0.198165,0.662926,0.380521,0.0604799,0.625609,0.232549,0.246707,0.156107,0.724328,0.357437,0.860641,0.331883,0.570659,0.0536045,0.248668,0.735562,0.681417,0.0283971,0.77919,0.603409,0.407844,0.775254,0.933948,0.57561,0.988398,0.314369,0.596097,0.671046,0.81855,0.905329,0.988211,0.973807,0.248538,0.740426,0.717493,0.471624,0.0180745,0.934341,0.964143,0.32251,0.0603333,0.672991,0.139971,0.715387,0.156873,0.309547,0.94651,0.750618,0.961936,0.299092,0.248482,0.977984,0.046115,0.037502,0.898794,0.935092,0.701622,0.305659,0.453927,0.896078,0.179489,0.544433,0.958136,0.509031,0.940524,0.79968,0.796718,0.608407,0.183511,0.907524,0.344902,0.449298,0.426567,0.141278,0.86486,0.339909,0.35604,0.210364,0.616859,0.223625,0.699738,0.312982,0.0483037,0.0857458,0.264768,0.693442,0.323569,0.708573,0.332929,0.493993,0.8535,0.205529,0.804654,0.539342,0.625648,0.41369,0.875256,0.0526049,0.733508,0.961219,0.755304,0.674066,0.973498,0.32749,0.987648,0.353391,0.671827,0.169174,0.431943,0.598654,0.658475,0.255099,0.220434,0.721047,0.962448,0.813822,0.719929,0.149411,0.706118,0.858928,0.00155658,0.330021,0.366543,0.016822,0.279322,0.282129,0.0157816,0.87364,0.894869,0.724162,0.0448194,0.336875,0.379093,0.5674,0.114073,0.256062,0.499622,0.747057,0.190911,0.141925,0.881143,0.690439,0.433499,0.707001,0.507457,0.399063,0.659916,0.841965,0.31307,0.689431,0.474568,0.700039,0.257294,0.909923,0.573336,0.144609,0.599206,0.994274,0.0819041,0.638674,0.808183,0.252518,0.826865,0.782946,0.139307,0.606414,0.15762,0.381294,0.587561,0.606328,0.114371,0.500277,0.379234,0.893509,0.819628,0.0796802,0.870244,0.377111,0.805372,0.643189,0.282365,0.342225,0.292095,0.79629,0.411384,0.863628,0.14813,0.534974,0.241585,0.0684507,0.437363,0.254778,0.457064,0.00431991,0.683257,0.291692,0.0241085,0.53324,0.523742,0.227152,0.686877,0.0961925,0.862155,0.68218,0.843848,0.0724662,0.383906,0.244382,0.15541,0.188194,0.895261,0.272968,0.631136,0.0448368,0.407422,0.432393,0.474489,0.383042,0.903535,0.420407,0.272462,0.797541,0.046331,0.713721,0.134014,0.70073,0.442337,0.162962,0.686499,0.74159,0.209393,0.216611,0.756167,0.0225859,0.282412,0.990848,0.946466,0.765667,0.381948,0.337891,0.531407,0.888988,0.154296,0.0285719,0.935552,0.535611,0.378694,0.161655,0.236644,0.235605,0.300869,0.817667,0.609437,0.227796,0.312291,0.747666,0.865386,0.938302,0.21865,0.60695,0.908277,0.132645,0.365142,0.417769,0.40581,0.0656809,0.399151,0.380099,0.994726,0.915265,0.452249,0.357866,0.0202822,0.528046,0.526129,0.405079,0.0454566,0.901575,0.715862,0.85224,0.796678,0.391797,0.330616,0.906667,0.0183637,0.739341,0.154755,0.681742,0.504417,0.161911,0.248691,0.700928,0.17478,0.350894,0.0339317,0.156889,0.0230889,0.82977,0.683942,0.558135,0.0950915,0.382335,0.314688,0.714319,0.291649,0.248249,0.901798,0.0206095,0.525071,0.498002,0.852932,0.675265,0.751411,0.194966,0.291021,0.312474,0.109056,0.542243,0.485546,0.400967,0.282966,0.71975,0.489554,0.0169971,0.488951,0.522122,0.437836,0.100574,0.911324,0.840427,0.620601,0.188771,0.297416,0.908294,0.855311,0.298502,0.404353,0.343659,0.932134,0.942373,0.632311,0.787738,0.185984,0.986118,0.0582582,0.647829,0.539921,0.44983,0.254055,0.98165,0.0804986,0.944876,0.366282,0.733772,0.271751,0.813777,0.954616,0.906805,0.493373,0.715511,0.565618,0.792432,0.709151,0.920456,0.0881163,0.143403,0.0180255,0.468767,0.143554,0.0958047,0.755165,0.861694,0.462036,0.869319,0.671245,0.369843,0.536411,0.896834,0.657742,0.15315,0.482925,0.114613,0.8667,0.860832,0.254318,0.11122,0.914183,0.338694,0.396585,0.66635,0.893928,0.15123,0.187264,0.65608,0.0274994,0.876065,0.171571,0.614031,0.448698,0.406083,0.538703,0.0375288,0.979849,0.733476,0.283726,0.65729,0.677042,0.555388,0.858654,0.289698,0.0929202,0.130091,0.566743,0.245823,0.567797,0.766111,0.603503,0.892541,0.281513,0.749907,0.721932,0.470362,0.428748,0.107998,0.686595,0.103399,0.902024,0.340103,0.252255,0.453312,0.308233,0.526351,0.445404,0.0835178,0.190113,0.318563,0.258148,0.91058,0.948136,0.858367,0.219251,0.173482,0.170513,0.215466,0.772334,0.329732,0.534608,0.0376527,0.557872,0.751073,0.291659,0.727343,0.960236,0.0294172,0.79957,0.0693576,0.38815,0.410493,0.911754,0.242247,0.35795,0.546967,0.583892,0.679391,0.373984,0.162275,0.467169,0.240687,0.909788,0.914268,0.861079,0.611313,0.635526,0.175304,0.150131,0.56077,0.845075,0.467411,0.945042,0.207051,0.917557,0.821493,0.754659,0.648351,0.360895,0.834804,0.350407,0.0990539,0.577268,0.969186,0.415878,0.544512,0.928981,0.737685,0.724044,0.717961,0.241662,0.477301,0.539939,0.174763,0.906092,0.794788,0.670329,0.633044,0.556902,0.157484,0.554795,0.628444,0.252309,0.0997228,0.861369,0.45951,0.289503,0.613529,0.0713469,0.496358,0.919616,0.509235,0.0836606,0.167354,0.462807,|0.505127,0.967924,0.771402,0.534272,0.756962,0.160027,0.175467,0.92505,0.293303,0.114292,0.35636,0.985373,0.630313,0.84681,0.18493,0.768617,0.505645,0.0193603,0.876916,0.878246,0.444097,0.658184,0.937867,0.734506,0.947582,0.213163,0.284961,0.0351975,0.369914,0.304479,0.847311,0.590422,0.86788,0.870562,0.544078,0.0654705,0.786612,0.951048,0.33154,0.544343,0.944312,0.69773,0.132578,0.800465,0.4088,0.850679,0.59106,0.722286,0.88464,0.826605,0.907704,0.0364085,0.836414,0.0662428,0.866034,0.959004,0.548292,0.935116,0.68622,0.345273,0.511414,0.0573235,0.934282,0.360289,0.788436,0.964229,0.365583,0.199419,0.0737017,0.699345,0.920489,0.247079,0.221767,0.497575,0.582654,0.712786,0.0506112,0.571143,0.0975711,0.898832,0.320178,0.742461,0.434774,0.0248829,0.918684,0.473398,0.124536,0.44881,0.764663,0.638697,0.540049,0.270782,0.0975665,0.0974054,0.791641,0.571467,0.0745494,0.0300042,0.906447,0.158062,0.249412,0.565924,0.185128,0.144815,0.592141,0.0599878,0.0588816,0.125166,0.0771244,0.784583,0.637771,0.898849,0.772259,0.0149794,0.0764993,0.014412,0.166321,0.1709,0.999424,0.453356,0.129329,0.554973,0.80065,0.613997,0.570444,0.170311,0.819442,0.781104,0.148714,0.977805,0.706287,0.163686,0.706303,0.252335,0.373417,0.755392,0.431876,0.0172246,0.492659,0.370204,0.541378,0.274341,0.108674,0.297892,0.991847,0.523098,0.329304,0.341034,0.374368,0.927854,0.400106,0.440635,0.938271,0.10445,0.794028,0.207435,0.465003,0.105417,0.51991,0.349202,0.0417044,0.619681,0.346455,0.54627,0.170065,0.926476,0.795836,0.793699,0.573972,0.00995499,0.583664,0.150369,0.975599,0.678617,0.0516582,0.730937,0.536318,0.635354,0.292707,0.697286,0.606708,0.996275,0.904539,0.955756,0.95582,0.591152,0.981093,0.754563,0.799795,0.560161,0.739122,0.6647,0.544363,0.0445023,0.50701,0.653657,0.658698,0.324604,0.725409,0.304915,0.634086,0.783717,0.241241,0.54227,0.94788,0.167216,0.473395,0.094244,0.115982,0.458113,0.00557917,0.574797,0.360846,0.379781,0.218801,0.397503,0.640759,0.859779,0.38627,0.498591,0.5474,0.35757,0.222907,0.325413,0.301545,0.00898844,0.517665,0.925415,0.0342501,0.61154,0.310891,0.968328,0.688755,0.551373,0.520139,0.953735,0.026595,0.393938,0.428719,0.953237,0.439396,0.659172,0.371398,0.251253,0.554548,0.127036,0.453448,0.0856044,0.910604,0.865912,0.989992,0.573103,0.859406,0.875128,0.0802088,0.587027,0.360839,0.113168,0.745097,0.467071,0.0862572,0.886333,0.289585,0.777649,0.423769,0.71392,0.643162,0.708267,0.182606,0.0688584,0.322551,0.492195,0.714848,0.140194,0.809297,0.810632,0.92114,0.606365,0.173998,0.661492,0.520723,0.567431,0.0145667,0.861037,0.870469,0.812542,0.129214,0.143395,0.620139,0.940649,0.0770265,0.233547,0.933355,0.0490827,0.341819,0.502513,0.23244,0.773035,0.275905,0.561659,0.64188,0.234555,0.265534,0.967226,0.946304,0.884471,0.675105,0.626905,0.534718,0.167588,0.711353,0.830915,0.315444,0.248574,0.687898,0.437456,0.251436,0.360857,0.45445,0.635963,0.121532,0.609667,0.26702,0.590875,0.169209,0.101326,0.127665,0.358628,0.280636,0.76004,0.269356,0.0239713,0.807601,0.996639,0.90663,0.26636,0.76151,0.7875,0.148736,0.932651,0.351108,0.514404,0.928793,0.556331,0.777032,0.441169,0.368502,0.893279,0.589092,0.774194,0.196755,0.473066,0.846693,0.65273,0.659633,0.353329,0.800506,0.576055,0.718432,0.448804,0.260219,0.0739893,0.890147,0.750457,0.15315,0.18256,0.504877,0.254089,0.143637,0.0605941,0.93091,0.0645852,0.559253,0.770091,0.165635,0.683124,0.648427,0.800589,0.929026,0.472761,0.03144,0.774513,0.853981,0.583381,0.731278,0.491516,0.20072,0.692425,0.00248903,0.376957,0.0233085,0.744008,0.957318,0.465336,0.255226,0.33673,0.71921,0.50051,0.619592,0.798902,0.696294,0.106429,0.103611,0.851022,0.879488,0.52157,0.739297,0.64317,0.610749,0.620307,0.986691,0.930151,0.283214,0.391708,0.608209,0.777645,0.936947,0.938121,0.765432,0.16296,0.860425,0.575218,0.562938,0.121163,0.411906,0.221475,0.666312,0.132224,0.715887,0.151484,0.22962,0.185719,0.050801,0.285507,0.459939,0.483461,0.534386,0.285499,0.0849479,0.947962,0.84581,0.519715,0.199373,0.965441,0.924936,0.555535,0.141585,0.817133,0.9034,0.119546,0.347292,0.160837,0.366971,0.221874,0.210511,0.393761,0.344053,0.959784,0.935778,0.259977,0.523965,0.0159379,0.0400925,0.303915,0.768101,0.273575,0.606663,0.716514,0.225274,0.742864,0.250839,0.0902129,0.314013,0.74451,0.450727,0.182806,0.965135,0.952658,0.0881357,0.562751,0.0788856,0.642658,0.63357,0.808132,0.139836,0.722733,0.26441,0.0626302,0.518316,0.671641,0.820219,0.886836,0.268876,0.838031,0.260928,0.543767,0.497673,0.341854,0.00370145,0.704796,0.627276,0.398149,0.483131,0.540973,0.235429,0.172342,0.494265,0.03365,0.0993427,0.406711,0.398127,0.328809,0.963404,0.751257,0.849633,0.609619,0.549073,0.366701,0.716924,0.475264,0.25029,0.576222,0.938538,0.941624,0.277969,0.0820819,0.393443,0.662903,0.143908,0.656233,0.982977,0.710188,0.935074,0.773383,0.421216,0.946053,0.906191,0.0595464,0.652408,0.458147,0.602065,0.328863,0.66049,0.756598,0.783508,0.0419911,0.84853,0.0815206,0.671133,0.125951,0.976629,0.246226,0.236471,0.095605,0.992473,0.992172,0.559237,0.825691,0.88758,0.578122,0.465151,0.401627,0.532951,0.113472,0.212862,0.459622,0.697828,0.629126,0.00918311,0.295208,0.307679,0.752322,0.608161,0.463956,0.802551,0.934893,0.283949,0.641927,0.238032,0.459109,0.464376,0.255418,0.681099,0.882106,0.272136,0.760164,0.268263,0.0273079,0.109789,0.0912001,0.561299,0.242353,0.19255,0.938604,0.506726,0.393179,0.604282,0.361554,0.726494,0.774208,0.264606,0.977463,0.683989,0.80707,0.27408,0.378807,0.855974,0.42037,0.468888,0.31251,0.356122,0.919742,0.624927,0.667529,0.749802,0.770719,0.686567,0.775543,0.170407,0.266306,0.663297,0.783242,0.493482,0.833721,0.363663,0.396296,0.169047,0.687734,0.620162,0.761556,0.442983,0.898431,0.845898,0.548449,0.869923,0.857751,0.177546,0.361992,0.221322,0.33745,0.73653,0.0913869,0.915541,0.208908,0.369391,0.501884,0.515219,0.853605,0.0921939,0.993258,0.739242,0.35263,0.766649,0.829329,0.298303,0.320022,0.049231,0.924878,0.105404,0.918687,0.593845,0.260529,0.114234,0.970101,0.817014,0.607138,0.67865,0.344168,0.879478,0.441112,0.354383,0.0537295,0.692801,0.340339,0.0115334,0.231992,0.625623,0.978914,0.398398,0.354248,0.316454,0.631392,0.536468,0.204449,0.207871,0.955848,0.40362,0.795793,0.794912,0.541678,0.186999,0.895322,0.640837,0.820816,0.203265,0.656343,0.00335604,0.190437,0.780811,0.360721,0.228653,0.133222,0.763408,0.744851,0.660439,0.966207,0.167112,0.250928,0.750888,0.934034,0.437405,0.421199,0.623319,0.479064,0.602696,0.498449,0.0766479,0.572769,0.299032,0.381107,0.526553,0.0909986,0.784918,0.543518,0.592667,0.77039,0.790482,0.973897,0.952379,0.000838161,0.896954,0.542956,0.736075,0.81879,0.955943,0.0520759,0.0680982,0.381771,0.98184,0.232639,0.965866,0.664557,0.617801,0.702197,0.831739,0.57514,0.14321,0.403932,0.570346,0.432163,0.929,0.703394,0.159817,0.987226,0.482482,0.806798,0.742668,0.180566,0.178565,0.0597125,0.0373704,0.0549199,0.890981,0.127046,0.641658,0.79071,0.810847,0.70707,0.0217783,0.351121,0.782383,0.0804484,0.259375,0.21478,0.430721,0.433588,0.15097,0.464711,0.566836,0.63414,0.0680476,0.106613,0.843204,0.79006,0.0797677,0.0985728,0.58428,0.278282,0.293175,0.439675,0.0977571,0.351574,0.575523,0.638653,0.801812,0.33937,0.266429,0.224347,0.677163,0.518489,0.558133,0.716962,0.856715,0.332668,0.717158,0.760847,0.767388,0.14128,0.865916,0.0319251,0.911747,0.556679,0.293064,0.414641,0.160393,0.754999,0.209154,0.400283,0.64779,0.949019,0.514275,0.365452,0.53595,0.148721,0.23522,0.150455,0.105185,0.69255,0.457023,0.425119,0.736871,0.277605,0.673263,0.120193,0.131583,0.920112,0.942941,0.583199,0.365663,0.167386,0.0701648,0.799418,0.756627,0.137598,0.250884,0.804184,0.166903,0.319404,0.200748,0.72385,0.388915,0.512515,0.281885,0.801744,0.767211,0.865911,0.172778,0.683949,0.89713,0.998246,0.927087,0.283779,0.938746,0.853363,0.517212,0.197344,0.431203,0.981762,0.625523,0.702219,0.0394491,0.471874,0.606414,0.00882173,0.804131,0.466038,0.697803,0.25281,0.621458,0.875798,0.673958,0.881613,0.593524,0.443668,0.604821,0.782824,0.833245,0.460632,0.996165,0.651922,0.276485,0.317522,0.302407,0.0380505,0.585684,0.486149,0.891346,0.36601,0.0301058,0.618436,0.874675,0.758733,0.739053,0.683611,0.582712,0.555741,0.993535,0.343958,0.030279,0.109275,0.159441,0.560539,0.362792,0.517502,0.89729,0.978004,0.589911,0.900839,0.530317,0.770805,0.0958858,0.41866,0.162171,0.142045,0.726751,0.0816559,0.147074,0.390067,0.494387,0.0670853,0.842018,0.819378,0.467132,0.515946,0.709702,0.946964,0.117327,0.49664,0.698304,0.1864,0.355853,0.96669,0.0779574,0.428218,0.89791,0.520179,0.870253,0.0303514,0.406707,0.00871676,0.231249,0.429662,0.294133,0.0778935,0.781701,0.9018,0.917718,0.756041,0.0957793,0.634959,0.707231,0.228305,0.367737,0.933928,0.664641,0.717657,0.698164,0.390033,0.0175641,0.926298,0.77494,0.267415,0.889371,0.635423,0.75536,0.0526541,0.470425,0.272054,0.0826835,0.656828,0.134833,0.114193,0.368276,0.820812,0.415778,0.901353,0.636263,0.494177,0.80928,0.0259058,0.844478,0.545713,0.18589,0.952374,0.235267,0.0122989,0.793679,0.155847,0.205309,0.219895,|0.410254,0.732377,0.412388,0.218917,0.102186,0.157672,0.791758,0.871825,0.404562,0.911783,0.191235,0.698372,0.78454,0.845131,0.404292,0.818516,0.304776,0.800927,0.208195,0.834423,0.874152,0.359526,0.853429,0.0224432,0.874202,0.504688,0.0210624,0.80822,0.907378,0.305032,0.378385,0.938091,0.639286,0.739054,0.226685,0.290359,0.505706,0.698767,0.14635,0.333161,0.459239,0.657999,0.293223,0.783273,0.0601038,0.587437,0.136809,0.316812,0.977786,0.789602,0.410887,0.534832,0.956111,0.343094,0.75091,0.350858,0.876444,0.782705,0.220933,0.0820183,0.869802,0.375821,0.0308445,0.82536,0.273204,0.905057,0.993563,0.57664,0.385433,0.591439,0.617939,0.450923,0.959261,0.829736,0.334967,0.683129,0.297532,0.191423,0.641446,0.801382,0.205562,0.229369,0.453783,0.579324,0.898639,0.956054,0.70173,0.331145,0.221999,0.464991,0.262172,0.858082,0.0566108,0.644189,0.62674,0.417405,0.280859,0.272235,0.100321,0.600768,0.229276,0.887657,0.465574,0.137671,0.00518775,0.75782,0.855177,0.409288,0.586499,0.638751,0.157831,0.591484,0.347534,0.715989,0.580169,0.493854,0.0376995,0.0411642,0.469578,0.437532,0.243965,0.800951,0.287439,0.33465,0.994323,0.562622,0.595075,0.328505,0.04781,0.332629,0.425308,0.517707,0.739889,0.110149,0.46111,0.722137,0.744225,0.353198,0.253804,0.977583,0.0184281,0.846646,0.311144,0.0325614,0.960269,0.369531,0.0568729,0.180353,0.0964642,0.244459,0.686824,0.487193,0.97314,0.730592,0.741291,0.240572,0.560059,0.249347,0.252459,0.387981,0.952633,0.653489,0.922073,0.662394,0.0280933,0.87826,0.347008,0.338771,0.722684,0.957816,0.522036,0.158318,0.951857,0.933125,0.881874,0.210212,0.00155449,0.306379,0.749479,0.240867,0.325204,0.690288,0.889266,0.0840558,0.180393,0.113495,0.51697,0.562577,0.37899,0.046906,0.762312,0.636045,0.877426,0.0734528,0.590747,0.727106,0.0143057,0.310805,0.698593,0.791706,0.302733,0.297962,0.506675,0.258228,0.419869,0.407046,0.233854,0.0460796,0.148891,0.210768,0.635522,0.528176,0.911907,0.900953,0.805204,0.729809,0.636489,0.465603,0.108108,0.013829,0.956773,0.809645,0.749695,0.812504,0.234239,0.739752,0.936701,0.0526527,0.900051,0.475532,0.0432492,0.185689,0.682462,0.723521,0.368125,0.229825,0.932127,0.763311,0.45863,0.6637,0.0521213,0.918224,0.723569,0.716173,0.874402,0.553386,0.454265,0.0676072,0.880117,0.424055,0.0468492,0.879622,0.11021,0.511588,0.922025,0.538448,0.431242,0.730079,0.205425,0.53601,0.0767986,0.678661,0.176,0.206657,0.642653,0.199819,0.291524,0.463853,0.331211,0.815534,0.715698,0.53526,0.266615,0.277661,0.487524,0.905248,0.178319,0.993259,0.133198,0.614357,0.449689,0.197971,0.595524,0.597675,0.503739,0.896168,0.0152676,0.971751,0.977556,0.250536,0.252315,0.853898,0.859344,0.0193878,0.63123,0.267816,0.492986,0.917913,0.85838,0.576834,0.745354,0.319186,0.267892,0.0331919,0.153984,0.276093,0.0723372,0.659041,0.661956,0.19662,0.402051,0.200191,0.890219,0.342741,0.862484,0.929708,0.189311,0.287925,0.989765,0.145931,0.406071,0.640042,0.0594019,0.789799,0.662552,0.671739,0.0725591,0.229306,0.102206,0.335763,0.098177,0.996949,0.861697,0.438622,0.767857,0.735558,0.338503,0.163172,0.372836,0.809124,0.980225,0.765078,0.325081,0.940661,0.117881,0.781343,0.496509,0.852958,0.983812,0.819416,0.0961599,0.988745,0.807349,0.685779,0.0848034,0.809646,0.836503,0.397809,0.513718,0.0823279,0.627374,0.57452,0.0813491,0.0442333,0.75415,0.768688,0.742919,0.0322452,0.0225355,0.536353,0.701491,0.716631,0.77107,0.769513,0.741375,0.0143822,0.721869,0.53953,0.311377,0.930124,0.0546914,0.15859,0.239788,0.181683,0.619972,0.537995,0.501397,0.558668,0.188582,0.115382,0.0439081,0.0012688,0.0128307,0.7833,0.899754,0.937085,0.182116,0.858942,0.488358,0.152402,0.12453,0.6607,0.174414,0.286401,0.776934,0.0985261,0.369874,0.937465,0.801757,0.56597,0.88609,0.3474,0.539089,0.313787,0.307986,0.161522,0.21989,0.478576,0.893202,0.600429,0.639901,0.360013,0.0399812,0.0759949,0.60558,0.19604,0.390183,0.4431,0.809213,0.138261,0.639,0.598127,0.0966112,0.196471,0.780293,0.776864,0.248729,0.483523,0.169673,0.00850868,0.61441,0.832184,0.263549,0.708638,0.331219,0.253339,0.00605446,0.987465,0.772083,0.924873,0.645897,0.405085,0.241209,0.596154,0.759086,0.0461857,0.27822,0.504445,0.520865,0.861676,0.055132,0.689285,0.293487,0.0672781,0.13637,0.586359,0.651518,0.226576,0.157107,0.691488,0.124927,0.177609,0.488557,0.776536,0.747436,0.857745,0.635722,0.415127,0.0837704,0.328153,0.804597,0.17387,0.341262,0.573101,0.224521,0.561529,0.28167,0.228329,0.890847,0.763414,0.56245,0.944566,0.660365,0.0781389,0.312789,0.824863,0.786289,0.436224,0.5235,0.790407,0.877635,0.208121,0.534418,0.523305,0.267671,0.386721,0.449805,0.489439,0.261496,0.964585,0.474806,0.225713,0.252594,0.0994957,0.879455,0.0939147,0.360885,0.507073,0.590355,0.886152,0.909251,0.678061,0.935661,0.235311,0.443629,0.145993,0.401938,0.143638,0.872283,0.608665,0.470348,0.712771,0.411116,0.09038,0.0783488,0.715925,0.0593788,0.379402,0.50767,0.652955,0.27829,0.950783,0.835873,0.830435,0.688652,0.0837653,0.507212,0.961306,0.285247,0.598933,0.877811,0.775017,0.243919,0.00459838,0.961892,0.819185,0.555785,0.448564,0.140807,0.186192,0.627153,0.916479,0.635283,0.0446747,0.325314,0.174764,0.0425617,0.868069,0.530438,0.041548,0.133593,0.690539,0.26874,0.957181,0.174255,0.477274,0.107203,0.261237,0.407602,0.864164,0.745835,0.131894,0.812073,0.908237,0.54144,0.273717,0.961013,0.54263,0.0945052,0.892228,0.0331023,0.605301,0.798784,0.607021,0.986783,0.32776,0.543113,0.320329,0.420058,0.438465,0.755046,0.313181,0.476284,0.655336,0.212229,0.0653302,0.536956,0.664004,0.402485,0.379462,0.779544,0.382504,0.523767,0.292153,0.828148,0.211565,0.210071,0.809145,0.786067,0.261225,0.365585,0.164589,0.799331,0.0721846,0.155684,0.76201,0.0743113,0.9773,0.340304,0.613051,0.508917,0.385778,0.309673,0.0859094,0.912662,0.0678992,0.183186,0.420481,0.574006,0.908009,0.189596,0.459123,0.650858,0.224489,0.462679,0.198443,0.149109,0.448316,0.815822,0.300885,0.832406,0.952815,0.848914,0.413006,0.179778,0.0459752,0.614813,0.307303,0.322313,0.0415025,0.756506,0.749505,0.126967,0.91494,0.502047,0.296488,0.519034,0.304479,0.855715,0.502568,0.397329,0.79128,0.0907466,0.54422,0.19127,0.310208,0.0436456,0.43914,0.506733,0.782131,0.602042,0.429268,0.101872,0.0429121,0.802112,0.889471,0.427212,0.228632,0.0194184,0.548005,0.150545,0.631315,0.776376,0.0815606,0.654559,0.616146,0.755834,0.160833,0.168602,0.490567,0.171628,0.236421,0.524765,0.867485,0.933332,0.338399,0.527633,0.474541,0.37138,0.745184,0.361933,0.801512,0.636507,0.199629,0.180129,0.440093,0.908951,0.122275,0.608083,0.723457,0.366379,0.535383,0.599954,0.471437,0.864484,0.0447664,0.461899,0.62573,0.366495,0.472406,0.40796,0.303315,0.600724,0.745985,0.657798,0.536926,0.809464,0.957465,0.704072,0.986433,0.428016,0.206743,0.917525,0.954253,0.889124,0.647873,0.596728,0.810102,0.944385,0.336339,0.123269,0.608577,0.373444,0.10974,0.295957,0.664504,0.42559,0.0740653,0.71934,0.934565,0.608894,0.305539,0.488622,0.207239,0.547922,0.112492,0.655403,0.216257,0.518297,0.523501,0.524452,0.866562,0.696099,0.781285,0.375166,0.138485,0.0343529,0.123377,0.621811,0.269533,0.0278733,0.709193,0.286485,0.765473,0.860416,0.921926,0.874876,0.0194961,0.337745,0.583456,0.647936,0.194539,0.46137,0.540343,0.169016,0.477,0.995685,0.0409966,0.633856,0.239667,0.483836,0.22434,0.622189,0.759657,0.324245,0.392841,0.881763,0.726141,0.839521,0.97859,0.168068,0.767885,0.378176,0.664346,0.304738,0.238605,0.164041,0.0492811,0.989687,0.365669,0.25549,0.674985,0.759899,0.332421,0.658572,0.500171,0.34486,0.815214,0.068118,0.261055,0.202632,0.811824,0.951557,0.425603,0.727093,0.495272,0.996667,0.0606464,0.587923,0.17178,0.995212,0.342155,0.0653435,0.796609,0.861375,0.749775,0.166037,0.510628,0.881193,0.457794,0.184092,0.305219,0.569263,0.548457,0.525188,0.763427,0.234948,0.808137,0.657336,0.758324,0.124432,0.546203,0.0201102,0.397514,0.789846,0.15584,0.587717,0.442317,0.702373,0.422754,0.97893,0.571359,0.646837,0.460858,0.768646,0.745802,0.737011,0.306312,0.872656,0.940437,0.14012,0.74749,0.427212,0.30226,0.210138,0.263269,0.936252,0.242363,0.724945,0.662757,0.402962,0.257075,0.486091,0.984551,0.75772,0.684172,0.116272,0.802543,0.484517,0.958623,0.957333,0.200982,0.601952,0.0903638,0.577358,0.0772361,0.0599211,0.228702,0.401234,0.33214,0.992997,0.459664,0.689314,0.187926,0.764102,0.199515,0.55259,0.834386,0.761019,0.0837197,0.474213,0.127052,0.400155,0.0243836,0.898634,0.90234,0.0892823,0.0273296,0.830088,0.337076,0.272413,0.121002,0.990761,0.0227457,0.1849,0.810504,0.40444,0.634841,0.0282981,0.930661,0.501658,0.331321,0.112831,0.790634,0.997858,0.903181,0.920443,0.295959,0.410557,0.614502,0.551241,0.951569,0.582072,0.518523,0.712613,0.602101,0.512232,0.903556,0.846142,0.978328,0.884651,0.0677144,0.863457,0.174117,0.833154,0.464918,0.509928,0.103516,0.817348,0.577176,0.154398,0.240554,0.0935925,0.644337,0.353482,0.752611,0.201524,0.479529,0.401375,0.698017,0.638301,0.533165,0.447642,0.222854,0.0346457,0.258099,0.753419,0.76002,0.0797358,0.42315,0.385546,0.0973106,0.139315,0.340022,0.0534152,0.329437,0.790849,0.673106,0.498422,0.263633,|0.363529,0.68853,0.831723,0.681876,0.0837633,0.168984,0.345408,0.598742,0.961042,0.946916,0.866089,0.270885,0.35293,0.891703,0.966644,0.74508,0.318908,0.642113,0.991974,0.596489,0.953314,0.509599,0.878495,0.749112,0.45576,0.595426,0.126102,0.543237,0.96519,0.662646,0.342314,0.598493,0.805515,0.508391,0.506156,0.309258,0.214172,0.0429527,0.00899297,0.578723,0.727751,0.675731,0.895979,0.378986,0.664676,0.306671,0.968039,0.249439,0.914951,0.504655,0.848452,0.97568,0.15081,0.83923,0.149955,0.954904,0.203179,0.45958,0.0102156,0.598358,0.431698,0.98586,0.22909,0.0770515,0.589737,0.391578,0.00625521,0.361903,0.412526,0.168415,0.512426,0.493696,0.956257,0.101149,0.752155,0.0219954,0.19164,0.220786,0.691899,0.989014,0.276238,0.935586,0.199195,0.377467,0.127021,0.610446,0.856266,0.641321,0.362701,0.14134,0.151702,0.534854,0.322693,0.34531,0.832405,0.338395,0.687019,0.0795048,0.803389,0.235969,0.647875,0.65312,0.324315,0.685335,0.319672,0.317338,0.609681,0.803516,0.103008,0.691341,0.0714657,0.0549068,0.834543,0.272248,0.726458,0.821802,0.646697,0.515728,0.395955,0.781806,0.27828,0.601318,0.937073,0.232632,0.106432,0.0739902,0.655417,0.811354,0.744132,0.170004,0.45357,0.305483,0.0681307,0.795155,0.45149,0.603509,0.499399,0.93142,0.981538,0.138103,0.176278,0.721922,0.806418,0.180545,0.365095,0.120606,0.684034,0.420508,0.207095,0.0284176,0.078351,0.324852,0.659887,0.903737,0.587246,0.916319,0.336661,0.580757,0.812815,0.782267,0.202736,0.960271,0.575043,0.857595,0.339017,0.129575,0.590623,0.94796,0.870077,0.136531,0.352611,0.878983,0.557246,0.925387,0.425836,0.684337,0.622858,0.871376,0.537998,0.905298,0.000580728,0.692331,0.985044,0.659646,0.496076,0.285057,0.762942,0.731768,0.621595,0.781268,0.958163,0.428624,0.307743,0.29623,0.2493,0.987743,0.139364,0.906276,0.670453,0.583442,0.477462,0.652137,0.117356,0.412413,0.715721,0.470058,0.098183,0.19696,0.909002,0.53139,0.458552,0.0238423,0.279573,0.0354339,0.834385,0.884265,0.657479,0.0435264,0.0517621,0.933822,0.589023,0.0215788,0.80525,0.061317,0.24685,0.530658,0.308054,0.501566,0.0410526,0.659481,0.376074,0.309369,0.0981357,0.209148,0.242605,0.344583,0.859648,0.858963,0.81332,0.102702,0.138791,0.013886,0.215072,0.66833,0.752525,0.187382,0.421279,0.911722,0.837557,0.795497,0.566134,0.48593,0.37435,0.888237,0.28566,0.0163549,0.271565,0.960111,0.705491,0.231172,0.986683,0.280729,0.451138,0.518764,0.576878,0.142535,0.073248,0.140152,0.324904,0.837184,0.00346005,0.424975,0.641797,0.632493,0.460842,0.967003,0.430462,0.790931,0.537699,0.0609688,0.124731,0.134212,0.749163,0.297674,0.825397,0.752716,0.504562,0.257951,0.109273,0.630109,0.306442,0.151909,0.455141,0.522746,0.114594,0.411679,0.471499,0.217609,0.281023,0.129647,0.294967,0.861441,0.33517,0.491286,0.18017,0.917437,0.376063,0.624064,0.126797,0.278679,0.960093,0.287623,0.252648,0.726102,0.110312,0.671402,0.74086,0.758049,0.486802,0.976805,0.9247,0.955392,0.866691,0.0738461,0.113119,0.667008,0.973276,0.032957,0.999979,0.755646,0.226197,0.430777,0.942671,0.856027,0.421847,0.828714,0.730597,0.8711,0.0130513,0.281246,0.104168,0.620194,0.289896,0.507045,0.438889,0.473007,0.237369,0.270628,0.583861,0.423998,0.493483,0.238161,0.733609,0.108601,0.0909047,0.969364,0.419658,0.434682,0.757433,0.815083,0.980752,0.0300888,0.298421,0.718263,0.594246,0.254702,0.812861,0.483225,0.802329,0.530066,0.189993,0.206372,0.75074,0.0754506,0.212959,0.648374,0.0571276,0.245054,0.295254,0.131486,0.253363,0.952847,0.0182313,0.944818,0.539849,0.354822,0.250887,0.990803,0.549985,0.0247629,0.0629485,0.301193,0.723413,0.57383,0.102707,0.77876,0.203817,0.0708909,0.191385,0.00570416,0.779909,0.903832,0.810036,0.177066,0.65252,0.620299,0.745302,0.776236,0.239204,0.28451,0.49379,0.0743169,0.265174,0.807353,0.782318,0.0728111,0.326804,0.449133,0.492121,0.408077,0.514412,0.973022,0.118151,0.834125,0.25892,0.476311,0.254605,0.24312,0.880795,0.918752,0.0923492,0.109444,0.400199,0.0331358,0.799519,0.0223677,0.573243,0.992513,0.874278,0.631367,0.858662,0.0375405,0.357035,0.123994,0.259319,0.554143,0.995711,0.679677,0.838569,0.904726,0.945008,0.538566,0.221309,0.688941,0.973703,0.658575,0.565369,0.611066,0.0143504,0.104545,0.156051,0.325502,0.212215,0.287476,0.927609,0.676705,0.36403,0.669373,0.142968,0.33947,0.18835,0.975134,0.431907,0.830459,0.545983,0.0600058,0.257942,0.411428,0.251713,0.206734,0.877488,0.659796,0.209658,0.913932,0.360979,0.035463,0.324337,0.18471,0.620971,0.766129,0.986461,0.258131,0.929539,0.481958,0.692445,0.304313,0.167402,0.603153,0.307552,0.894021,0.800928,0.641276,0.0159582,0.694934,0.403803,0.467324,0.523252,0.667136,0.619561,0.022913,0.141591,0.814782,0.50492,0.457272,0.494667,0.257314,0.287228,0.026335,0.14414,0.0504717,0.0563729,0.655405,0.720843,0.999128,0.781602,0.10692,0.924127,0.705338,0.175676,0.112339,0.415647,0.954356,0.124085,0.90213,0.0145445,0.931374,0.571045,0.0358813,0.207405,0.799048,0.435163,0.533705,0.263432,0.628856,0.427075,0.694468,0.989225,0.725412,0.269016,0.888919,0.961019,0.956627,0.639014,0.700399,0.116009,0.737125,0.375673,0.319281,0.33377,0.420783,0.980227,0.979078,0.520359,0.698591,0.0362801,0.862481,0.152376,0.0693647,0.050537,0.942737,0.283475,0.248203,0.968237,0.51812,0.602046,0.175269,0.431252,0.428103,0.854698,0.384098,0.544001,0.0130579,0.677037,0.505928,0.945121,0.822272,0.84168,0.366507,0.0389694,0.867532,0.97665,0.836262,0.46682,0.256237,0.765965,0.537453,0.872875,0.611091,0.39647,0.542869,0.807368,0.376273,0.185327,0.961798,0.958947,0.961467,0.755997,0.0826924,0.674034,0.994567,0.93308,0.980449,0.164519,0.789721,0.300736,0.357826,0.326464,0.883822,0.922942,0.393858,0.59792,0.175994,0.910775,0.27155,0.802598,0.346059,0.0328934,0.495348,0.148857,0.375329,0.497951,0.416733,0.677254,0.399434,0.552135,0.326822,0.385595,0.780102,0.345986,0.514807,0.145712,0.603354,0.445636,0.2206,0.189448,0.279672,0.992542,0.531369,0.815044,0.855795,0.169248,0.107991,0.243207,0.117003,0.794571,0.893841,0.062498,0.253288,0.126924,0.803666,0.0802468,0.371642,0.556318,0.382573,0.815839,0.828269,0.885021,0.942269,0.829781,0.0984516,0.392375,0.479859,0.787043,0.0355182,0.701177,0.846106,0.298066,0.576345,0.445536,0.662681,0.557387,0.481488,0.559164,0.911647,0.120418,0.879343,0.449166,0.525243,0.574927,0.122947,0.086208,0.0010671,0.952277,0.113258,0.166611,0.951732,0.333126,0.955717,0.0227278,0.519091,0.416118,0.586853,0.39924,0.454616,0.0113525,0.613035,0.934322,0.133403,0.328936,0.613032,0.221864,0.706917,0.6382,0.824368,0.890717,0.854299,0.0593776,0.0373968,0.628274,0.856959,0.823474,0.0602589,0.283401,0.32422,0.421639,0.439032,0.290951,0.96665,0.202058,0.394637,0.716193,0.360394,0.188665,0.440157,0.458903,0.612228,0.253846,0.412707,0.348845,0.902782,0.420369,0.0346,0.448466,0.646074,0.35623,0.892727,0.162121,0.94317,0.705115,0.750607,0.324451,0.251947,0.397749,0.984107,0.656923,0.270204,0.242179,0.626955,0.473424,0.214477,0.637501,0.0793636,0.37737,0.784122,0.446064,0.305857,0.162377,0.577379,0.00912249,0.762467,0.310031,0.76258,0.418114,0.671201,0.508594,0.299846,0.426463,0.856081,0.263025,0.929463,0.0392736,0.715616,0.053973,0.218052,0.825657,0.911445,0.783592,0.543369,0.391555,0.215505,0.965938,0.588362,0.276287,0.937387,0.95207,0.994883,0.262335,0.761002,0.684394,0.586958,0.664084,0.230061,0.0113066,0.414867,0.490593,0.0257814,0.85878,0.635958,0.446331,0.412086,0.606077,0.311189,0.502396,0.592908,0.872134,0.140873,0.240764,0.507708,0.167789,0.458735,0.325457,0.800362,0.864327,0.855912,0.401587,0.743142,0.718143,0.466546,0.56499,0.618831,0.0580691,0.576865,0.647803,0.085741,0.9651,0.138167,0.849161,0.139957,0.266076,0.443216,0.314103,0.773572,0.447496,0.109888,0.545318,0.786976,0.923267,0.72615,0.018258,0.770458,0.959335,0.789038,0.201463,0.0495162,0.462254,0.603685,0.70326,0.413107,0.254187,0.77363,0.519685,0.125893,0.992836,0.892532,0.951791,0.347818,0.102618,0.504262,0.920337,0.129401,0.491799,0.133132,0.70082,0.287203,0.946506,0.071058,0.345129,0.0639886,0.185451,0.269647,0.245987,0.19073,0.739129,0.746304,0.560752,0.456549,0.442294,0.36741,0.894837,0.260499,0.222367,0.523253,0.0692233,0.764691,0.01502,0.0447932,0.0918192,0.744343,0.0189101,0.28518,0.0985479,0.0270172,0.687981,0.883857,0.35466,0.671954,0.997738,0.951002,0.689389,0.279709,0.672916,0.837563,0.0535635,0.696711,0.377283,0.446254,0.052855,0.0559486,0.643122,0.0249361,0.296709,0.000785112,0.39313,0.0285498,0.849058,0.164805,0.660645,0.659819,0.936015,0.734051,0.753066,0.0897577,0.28365,0.177282,0.245746,0.275411,0.811201,0.548939,0.442435,0.905914,0.871685,0.20834,0.878591,0.252991,0.934201,0.00894898,0.769911,0.817874,0.515437,0.176272,0.378552,0.85536,0.7871,0.389489,0.650683,0.86879,0.337708,0.185322,0.936835,0.670168,0.207076,0.0200905,0.330164,0.835894,0.254771,0.717646,0.570029,0.493909,0.620383,0.667266,0.0400217,0.83863,0.632396,0.0276588,0.46537,0.600967,0.350652,0.783024,0.196015,0.78196,0.919545,0.803211,0.563685,0.136692,0.827547,0.134903,0.497966,0.7388,0.92892,0.0624717,0.113271,0.545279,0.238606,0.418784,0.157504,0.291945,0.740589,0.39239,0.829707,0.124628,|0.522761,0.203397,0.437334,0.0577162,0.412844,0.0895494,0.285005,0.667292,0.102519,0.360111,0.469706,0.0756506,0.108468,0.655969,0.360894,0.386588,0.0128953,0.00864172,0.72881,0.666284,0.422911,0.609189,0.475536,0.0488496,0.210976,0.351623,0.845427,0.133969,0.918439,0.0453816,0.882311,0.578628,0.861067,0.00597447,0.227185,0.637009,0.807258,0.386153,0.797017,0.194132,0.96319,0.247142,0.487688,0.0475169,0.662424,0.157151,0.387327,0.926277,0.629212,0.047811,0.750181,0.570084,0.259524,0.150182,0.0509344,0.483626,0.837618,0.248725,0.599595,0.931875,0.778674,0.870376,0.400361,0.328707,0.672507,0.495895,0.433648,0.399338,0.144628,0.168325,0.330329,0.963025,0.882945,0.788129,0.909638,0.329861,0.00117421,0.0501944,0.863803,0.583458,0.238389,0.0947999,0.188015,0.224871,0.0408199,0.82102,0.111023,0.341987,0.995796,0.978528,0.800026,0.176189,0.271433,0.419732,0.0908815,0.919736,0.849727,0.634118,0.909802,0.731359,0.810309,0.674908,0.936498,0.858664,0.40299,0.224093,0.739384,0.852699,0.88093,0.394323,0.877958,0.226546,0.928193,0.108202,0.821912,0.895395,0.131203,0.631339,0.325992,0.358687,0.692592,0.940019,0.151195,0.0523798,0.31525,0.783677,0.467359,0.972881,0.239483,0.121565,0.32528,0.422847,0.897435,0.176002,0.393766,0.280483,0.299544,0.328354,0.478556,0.356184,0.719345,0.74646,0.672256,0.828556,0.294241,0.626762,0.988615,0.22664,0.468196,0.861151,0.428073,0.813944,0.0630112,0.813483,0.505969,0.553801,0.333072,0.787934,0.307047,0.602617,0.0515919,0.589343,0.912927,0.276524,0.906242,0.956045,0.654756,0.60097,0.964327,0.203393,0.503554,0.854767,0.146284,0.803849,0.991324,0.34866,0.944215,0.073351,0.422886,0.8745,0.22679,0.947427,0.622777,0.728136,0.429756,0.828863,0.0832565,0.769448,0.434201,0.650634,0.543269,0.589053,0.790385,0.489637,0.165796,0.206155,0.793203,0.59731,0.337848,0.399366,0.000580013,0.155541,0.222267,0.361864,0.743056,0.868137,0.697742,0.231095,0.380424,0.757889,0.225398,0.938462,0.841461,0.141148,0.203022,0.988332,0.346221,0.685235,0.686869,0.788339,0.384865,0.985548,0.503377,0.729593,0.343955,0.643658,0.917216,0.792443,0.155069,0.252357,0.0515399,0.100673,0.344414,0.412385,0.0944269,0.238014,0.90109,0.824142,0.860665,0.276868,0.0110909,0.518905,0.603526,0.650917,0.728279,0.914993,0.954411,0.689981,0.635228,0.680025,0.97286,0.0696199,0.0319418,0.561505,0.130432,0.941229,0.95518,0.580362,0.0536717,0.25561,0.196631,0.449118,0.420244,0.254845,0.843483,0.008286,0.480802,0.645087,0.836696,0.354961,0.883493,0.595875,0.788366,0.107028,0.420036,0.86081,0.713064,0.00421429,0.959676,0.148489,0.174707,0.0450428,0.282557,0.339033,0.472431,0.716525,0.226383,0.582038,0.490815,0.856139,0.637219,0.527854,0.651627,0.541047,0.54407,0.661248,0.0760159,0.116965,0.00527483,0.678973,0.315803,0.613238,0.662061,0.53868,0.785922,0.802706,0.569531,0.215284,0.560618,0.0809706,0.327161,0.504337,0.0181918,0.404797,0.0059036,0.903524,0.558072,0.0708161,0.599659,0.667681,0.86815,0.713458,0.187659,0.88152,0.668292,0.28827,0.819149,0.474571,0.646553,0.386285,0.0360402,0.906741,0.803471,0.63353,0.121768,0.616323,0.325953,0.983229,0.768399,0.166521,0.766033,0.886055,0.650774,0.596055,0.436593,0.973789,0.69301,0.890364,0.0377906,0.578905,0.785386,0.255223,0.857319,0.205319,0.992869,0.902318,0.970744,0.0242305,0.105914,0.371321,0.42512,0.808669,0.0745116,0.19301,0.272515,0.611097,0.0215951,0.375134,0.197034,0.180392,0.663388,0.394856,0.863585,0.213755,0.0213591,0.455402,0.241051,0.42405,0.200783,0.89026,0.48169,0.718543,0.379374,0.609953,0.0251867,0.000830352,0.567739,0.055918,0.0895292,0.627264,0.147433,0.528873,0.881319,0.306869,0.455359,0.917593,0.69797,0.34044,0.222134,0.0898423,0.128867,0.767206,0.0877183,0.071261,0.326295,0.240891,0.441983,0.455525,0.413542,0.720979,0.954989,0.99189,0.372387,0.490713,0.169181,0.711463,0.912211,0.926061,0.0355452,0.0893808,0.0430266,0.119688,0.891834,0.14664,0.338171,0.724104,0.550877,0.896507,0.925386,0.442235,0.471972,0.995213,0.341504,0.799204,0.928589,0.578402,0.565823,0.427418,0.367713,0.132462,0.385206,0.895058,0.507179,0.316056,0.953392,0.488,0.597203,0.147993,0.0832761,0.693715,0.426708,0.947342,0.230246,0.585341,0.238403,0.0275907,0.932072,0.691507,0.0693083,0.703378,0.0134824,0.145442,0.810969,0.286801,0.528391,0.487744,0.319579,0.778481,0.986681,0.170979,0.389429,0.394605,0.480128,0.474546,0.546381,0.620084,0.541064,0.234694,0.17381,0.692466,0.511871,0.542364,0.792081,0.391693,0.891272,0.68016,0.526999,0.163418,0.398266,0.377863,0.907881,0.926183,0.885164,0.486546,0.894363,0.209827,0.703303,0.988897,0.495848,0.422231,0.312506,0.541522,0.315798,0.0614511,0.064384,0.00440532,0.456631,0.46487,0.04706,0.524738,0.015367,0.697121,0.289739,0.703598,0.437725,0.930929,0.411751,0.824858,0.236755,0.0528744,0.596498,0.40987,0.336279,0.583006,0.557344,0.658972,0.604412,0.967927,0.391415,0.464455,0.904125,0.810462,0.91287,0.0130268,0.401,0.228306,0.737692,0.20047,0.37924,0.332896,0.234356,0.838041,0.648013,0.338904,0.491287,0.536251,0.350837,0.377884,0.411437,0.23702,0.79256,0.351398,0.494158,0.999493,0.440941,0.134639,0.263296,0.445348,0.447163,0.0290565,0.834767,0.566907,0.298733,0.956936,0.134997,0.141799,0.359477,0.594621,0.20342,0.563211,0.0722706,0.11291,0.664387,0.207959,0.746605,0.0409176,0.963303,0.791828,0.768081,0.710052,0.475562,0.447796,0.0560815,0.281209,0.07375,0.276577,0.127482,0.599472,0.475316,0.460905,0.51678,0.0116387,0.855464,0.229668,0.643005,0.978949,0.834666,0.919419,0.231177,0.518924,0.677516,0.411088,0.609559,0.522517,0.908548,0.215012,0.805144,0.542017,0.397485,0.0429342,0.659764,0.91925,0.993817,0.469586,0.365535,0.90247,0.0490862,0.0694786,0.398614,0.518343,0.108726,0.890505,0.611752,0.416217,0.402449,0.61872,0.525852,0.92317,0.815137,0.912916,0.476072,0.837638,0.830685,0.480059,0.871894,0.00624645,0.984661,0.292826,0.423949,0.346602,0.310461,0.384266,0.435448,0.945568,0.670207,0.257551,0.190229,0.182959,0.0544508,0.0379812,0.185364,0.179273,0.557035,0.67256,0.906744,0.869144,0.176081,0.788394,0.371725,0.819632,0.718216,0.881013,0.0720664,0.769225,0.0973203,0.956313,0.423594,0.959592,0.170393,0.109896,0.406664,0.890008,0.666949,0.886116,0.29655,0.229603,0.654883,0.737346,0.894022,0.0869401,0.169675,0.636958,0.877227,0.833934,0.163875,0.337825,0.01035,0.96497,0.899965,0.569787,0.151798,0.294875,0.959884,0.86009,0.811293,0.886207,0.378811,0.150258,0.325046,0.204142,0.177049,0.637595,0.53008,0.681537,0.901519,0.0445505,0.151238,0.768983,0.374435,0.730538,0.587393,0.37242,0.472379,0.0854885,0.0792201,0.782926,0.503557,0.616733,0.99728,0.882537,0.768808,0.801915,0.381465,0.259168,0.357368,0.770393,0.585236,0.223203,0.934326,0.684427,0.303317,0.612652,0.188118,0.509727,0.422065,0.839964,0.130676,0.572164,0.83222,0.275464,0.856758,0.412472,0.64216,0.965162,0.569533,0.660639,0.982139,0.320974,0.381241,0.0129084,0.72644,0.00491953,0.247962,0.195641,0.0732265,0.82079,0.650147,0.964732,0.0241036,0.454426,0.74753,0.493361,0.324592,0.868952,0.433804,0.208675,0.0357804,0.298783,0.158148,0.897595,0.758702,0.296916,0.777096,0.224833,0.708062,0.755929,0.0863744,0.539925,0.812863,0.880632,0.767002,0.500827,0.455304,0.0979363,0.0336585,0.991173,0.830548,0.548912,0.9175,0.33195,0.348555,0.212365,0.341919,0.259383,0.796993,0.0388283,0.642577,0.17123,0.613007,0.276311,0.224081,0.357668,0.372981,0.628113,0.858269,0.196357,0.0975393,0.842016,0.551751,0.0125847,0.348266,0.935037,0.818576,0.0577433,0.805486,0.154168,0.782618,0.431389,0.136106,0.296829,0.980419,0.299901,0.588068,0.867488,0.270221,0.0330586,0.682343,0.271539,0.259002,0.129244,0.78298,0.695368,0.119066,0.220548,0.0322004,0.738506,0.0897856,0.993599,0.223833,0.242485,0.261832,0.523444,0.867511,0.727143,0.0563235,0.00251997,0.871201,0.318152,0.416226,0.779622,0.92753,0.67992,0.773909,0.692788,0.425543,0.503158,0.557209,0.410466,0.93544,0.402525,0.122867,0.348961,0.602503,0.0596596,0.732811,0.839153,0.248157,0.428877,0.54658,0.443649,0.875871,0.979686,0.0991224,0.350785,0.562503,0.398885,0.359453,0.2805,0.868001,0.794722,0.970179,0.395846,0.363264,0.213849,0.719589,0.0796453,0.638885,0.502897,0.555193,0.713911,0.0288425,0.77699,0.232988,0.539245,0.425924,0.73365,0.796254,0.032092,0.299701,0.00413799,0.633218,0.503781,0.907036,0.349726,0.752064,0.15413,0.0922156,0.990003,0.00329286,0.739301,0.599348,0.482189,0.390661,0.107678,0.670145,0.470054,0.0253078,0.881201,0.847482,0.644466,0.87894,0.425985,0.875701,0.751454,0.0370548,0.505798,0.488013,0.324963,0.370385,0.492884,0.798602,0.964925,0.396882,0.85493,0.448617,0.492222,0.469232,0.612119,0.9777,0.933024,0.573367,0.203001,0.249303,0.326074,0.244571,0.151237,0.770178,0.414231,0.32925,0.379233,0.493521,0.399982,0.753807,0.190427,0.0979056,0.763631,0.157544,0.946824,0.716638,0.842991,0.74079,0.777095,0.478533,0.134965,0.2759,0.129306,0.599571,0.574122,0.508053,0.410505,0.097204,0.968103,0.311353,0.814308,0.211747,0.963266,0.6079,0.41155,0.613869,0.932522,0.530366,0.416653,0.535754,0.32845,0.135432,0.440078,0.206581,0.0789418,0.796138,0.0225941,0.421352,0.526771,0.944617,0.64567,0.781349,0.778303,0.20606,0.8347,0.327435,0.875171,|0.211374,0.563488,0.836359,0.749851,0.0177422,0.56929,0.453534,0.946673,0.259361,0.336024,0.323542,0.88374,0.43299,0.282604,0.964066,0.394429,0.822175,0.206474,0.00449485,0.411831,0.625427,0.0396443,0.151129,0.42014,0.995456,0.0692413,0.253226,0.822251,0.330042,0.903116,0.677635,0.157224,0.184384,0.75453,0.590784,0.475019,0.824244,0.547501,0.0299917,0.971874,0.981525,0.349571,0.80665,0.737058,0.726128,0.488001,0.956723,0.499729,0.447363,0.340426,0.211928,0.92469,0.384613,0.258481,0.0818771,0.928258,0.245564,0.423443,0.669814,0.123382,0.0668831,0.499761,0.745069,0.731739,0.879924,0.0533251,0.00902885,0.728905,0.841335,0.922837,0.689485,0.364,0.0604111,0.100335,0.927063,0.872461,0.635579,0.768532,0.277161,0.250042,0.715111,0.723891,0.133712,0.584794,0.159916,0.722363,0.499421,0.335246,0.784818,0.863227,0.282226,0.734535,0.789011,0.901815,0.715204,0.838415,0.83052,0.360695,0.352699,0.410763,0.819613,0.843118,0.661303,0.773807,0.759846,0.153979,0.829286,0.0144168,0.672817,0.818529,0.272802,0.339548,0.116557,0.875464,0.875317,0.104769,0.0921794,0.463756,0.509004,0.5856,0.00362533,0.606177,0.236842,0.912496,0.227448,0.60207,0.719158,0.453868,0.540042,0.663975,0.627917,0.495846,0.182422,0.669063,0.977196,0.802599,0.474262,0.463888,0.120022,0.70448,0.505471,0.0985821,0.0449046,0.492648,0.287904,0.0669966,0.358609,0.0765971,0.488607,0.781091,3.91006e-05,0.480078,0.0779273,0.280663,0.450884,0.864811,0.228564,0.704663,0.228579,0.604973,0.8506,0.772844,0.0191277,0.994551,0.560236,0.938719,0.946322,0.837635,0.935869,0.300107,0.344914,0.0402008,0.0195873,0.698664,0.188353,0.560693,0.232243,0.81765,0.295527,0.804645,0.801029,0.657355,0.667234,0.453742,0.300601,0.622855,0.275779,0.181446,0.489441,0.87009,0.896991,0.267822,0.438161,0.432841,0.254155,0.901897,0.274278,0.829611,0.620361,0.29175,0.0733284,0.857429,0.789493,0.991818,0.0416127,0.123556,0.0518475,0.184986,0.316466,0.242172,0.6819,0.329938,0.214374,0.717142,0.143604,0.421902,0.368918,0.943198,0.435632,0.129434,0.0593905,0.469836,0.362653,0.283105,0.185344,0.331485,0.547524,0.798283,0.956242,0.645725,0.99825,0.0035516,0.90707,0.754797,0.201593,0.278427,0.156476,0.376742,0.062165,0.965233,0.802274,0.931829,0.518061,0.971748,0.849473,0.307065,0.723734,0.726559,0.0448483,0.697715,0.918052,0.666043,0.513538,0.416589,0.524096,0.0405052,0.367472,0.808919,0.420948,0.877506,0.954786,0.357781,0.64112,0.299878,0.435846,0.719201,0.28266,0.916172,0.283271,0.00400084,0.424248,0.817978,0.578687,0.647773,0.192392,0.514692,0.669896,0.921783,0.0382197,0.883777,0.591976,0.202606,0.229327,0.996713,0.744881,0.309052,0.0599155,0.046108,0.942899,0.337036,0.989884,0.994073,0.0074138,0.638006,0.3061,0.0734363,0.146547,0.871952,0.894834,0.403507,0.284974,0.50388,0.447009,0.754755,0.319541,0.947841,0.835256,0.315345,0.231892,0.236264,0.523288,0.902158,0.880729,0.125582,0.26382,0.451259,0.587953,0.656103,0.515816,0.770526,0.831894,0.203844,0.145282,0.372386,0.30663,0.2019,0.939406,0.291735,0.189198,0.393265,0.62771,0.455953,0.365669,0.493003,0.895106,0.694196,0.0939145,0.214706,0.54494,0.6696,0.1041,0.733874,0.0941991,0.787167,0.565767,0.813233,0.580265,0.0907694,0.368314,0.496707,0.418238,0.608249,0.433948,0.432522,0.703253,0.593529,0.826119,0.229768,0.961746,0.093521,0.8748,0.357738,0.285701,0.216525,0.223478,0.7442,0.106036,0.127882,0.547934,0.922701,0.89704,0.402128,0.574818,0.507935,0.0171169,0.885307,0.167296,0.238462,0.0250443,0.520649,0.786912,0.817042,0.860453,0.0460825,0.658724,0.246409,0.345844,0.0095728,0.0235826,0.73105,0.446472,0.339377,0.368564,0.0532181,0.361507,0.258803,0.880406,0.607625,0.806854,0.938858,0.78827,0.252746,0.244828,0.9441,0.557442,0.239654,0.549071,0.792569,0.736265,0.24998,0.511398,0.478637,0.736609,0.227763,0.0561187,0.0481043,0.337048,0.734316,0.4679,0.221138,0.975705,0.443574,0.0734851,0.562498,0.691203,0.17572,0.562664,0.226782,0.667098,0.791591,0.141815,0.825838,0.686221,0.280627,0.0175719,0.85304,0.373921,0.786283,0.592735,0.78272,0.406503,0.621787,0.883339,0.648403,0.982122,0.47823,0.167154,0.783136,0.609763,0.313121,0.311656,0.0671698,0.994131,0.231001,0.16878,0.898046,0.668879,0.904448,0.513356,0.435619,0.521628,0.826964,0.112035,0.702426,0.539527,0.971302,0.685799,0.900286,0.235338,0.183246,0.970635,0.7275,0.322273,0.0242475,0.397718,0.537722,0.766759,0.189994,0.00487947,0.378395,0.25492,0.571717,0.192198,0.772107,0.862441,0.436046,0.777039,0.670835,0.607449,0.601245,0.0785698,0.202414,0.208506,0.334311,0.551243,0.0269563,0.986228,0.511746,0.580184,0.935794,0.341462,0.70072,0.627367,0.236753,0.563752,0.194571,0.855296,0.619919,0.102539,0.167006,0.953299,0.982936,0.0269762,0.0631103,0.849729,0.556702,0.52153,0.515617,0.430222,0.676737,0.421166,0.349033,0.438356,0.987635,0.317086,0.688774,0.735989,0.969635,0.0551277,0.220248,0.612725,0.747233,0.768479,0.77444,0.970424,0.888817,0.11659,0.399003,0.505658,0.602574,0.281783,0.131501,0.850842,0.20276,0.177237,0.231285,0.941136,0.753325,0.131407,0.403436,0.834298,0.0870343,0.308499,0.942656,0.769303,0.467449,0.452381,0.416464,0.674142,0.729303,0.201313,0.899191,0.628243,0.889011,0.39288,0.702979,0.559844,0.0920413,0.250426,0.839172,0.28148,0.630296,0.596114,0.857179,0.929906,0.237426,0.0529426,0.171587,0.848535,0.220579,0.74786,0.665873,0.819399,0.546121,0.891457,0.358934,0.729623,0.0320565,0.612554,0.27813,0.810617,0.586604,0.0794655,0.761842,0.818623,0.173429,0.827398,0.138667,0.900744,0.710703,0.874732,0.950444,0.294464,0.362654,0.827365,0.0125924,0.163678,0.192889,0.421144,0.457269,0.362321,0.775455,0.0820321,0.540061,0.259887,0.907748,0.80841,0.317078,0.936094,0.254695,0.809065,0.631467,0.749291,0.668621,0.936497,0.67216,0.587721,0.868838,0.664735,0.542587,0.466211,0.223127,0.976433,0.43314,0.920611,0.0307014,0.698211,0.365149,0.54776,0.0265716,0.327104,0.0755538,0.0893074,0.0854952,0.462852,0.686767,0.669158,0.538361,0.378122,0.767513,0.993911,0.949927,0.688923,0.351656,0.972669,0.467433,0.357358,0.310737,0.528626,0.158084,0.443492,0.211472,0.867356,0.740359,0.360939,0.834247,0.196519,0.021426,0.906878,0.773994,0.320599,0.236032,0.458228,0.59893,0.915361,0.291726,0.299946,0.0793976,0.813234,0.574847,0.405358,0.807622,0.624851,0.494072,0.038057,0.215177,0.973066,0.393139,0.0593033,0.803629,0.0551022,0.706991,0.984638,0.506299,0.911508,0.253627,0.530961,0.553671,0.0280752,0.172841,0.958151,0.423328,0.780465,0.577871,0.831783,0.956555,0.0198596,0.859247,0.656142,0.0335339,0.104379,0.203122,0.169817,0.740439,0.40867,0.0507128,0.656473,0.890065,0.531992,0.791923,0.32739,0.420884,0.109373,0.63585,0.920588,0.0330646,0.281775,0.978962,0.347603,0.333784,0.379625,0.902983,0.237168,0.211523,0.651709,0.704691,0.431418,0.5186,0.269161,0.431856,0.212621,0.274009,0.893741,0.952746,0.563551,0.133326,0.440175,0.777991,0.340494,0.135357,0.161499,0.543591,0.0131786,0.626799,0.717238,0.999055,0.284577,0.0594038,0.462919,0.27256,0.493002,0.222799,0.0896537,0.608549,0.437777,0.832205,0.540561,0.254593,0.202176,0.137403,0.209288,0.731673,0.394549,0.719164,0.891244,0.0551569,0.0355808,0.697529,0.629764,0.420368,0.0853915,0.867164,0.521564,0.0218989,0.190393,0.756606,0.497651,0.246795,0.289391,0.196275,0.494441,0.668794,0.937601,0.727247,0.577653,0.95435,0.693974,0.848074,0.207995,0.72347,0.596699,0.500835,0.673759,0.86618,0.397046,0.581868,0.657173,0.352195,0.0660582,0.829597,0.710363,0.457181,0.342311,0.46266,0.960609,0.334114,0.240172,0.173132,0.101203,0.684166,0.544826,0.0061748,0.0530049,0.667045,0.564565,0.695542,0.755857,0.905082,0.337556,0.989207,0.655233,0.0520545,0.25791,0.00742209,0.793875,0.752793,0.26158,0.0595985,0.304471,0.8428,0.27338,0.254108,0.591706,0.0467598,0.821779,0.849147,0.187506,0.931644,0.136243,0.0554237,0.706635,0.0847556,0.894332,0.113002,0.634648,0.344167,0.0583546,0.0672714,0.388907,0.89155,0.960615,0.672247,0.12061,0.754098,0.781889,0.309148,0.570878,0.486988,0.530109,0.363952,0.530857,0.471843,0.283723,0.0831265,0.533232,0.724055,0.909027,0.706042,0.86025,0.40696,0.633197,0.735419,0.767737,0.331385,0.214207,0.32194,0.124906,0.791937,0.193451,0.439219,0.133834,0.896038,0.765598,0.519502,0.562484,0.826836,0.794794,0.918532,0.24744,0.0534653,0.822956,0.794235,0.760492,0.517218,0.798153,0.706508,0.395589,0.163899,0.669315,0.767773,0.0343118,0.696177,0.930611,0.948599,0.607214,0.0820894,0.318242,0.285259,0.929776,0.197209,0.435366,0.970347,0.905436,0.373755,0.285097,0.615628,0.223296,0.721357,0.441413,0.121912,0.123102,0.871076,0.115718,0.829473,0.21233,0.234308,0.30979,0.777979,0.976104,0.297031,0.419784,0.811902,0.490838,0.907054,0.760936,0.229804,0.183734,0.291333,0.245287,0.745444,0.164735,0.999777,0.443684,0.216331,0.51965,0.547816,0.409421,0.779467,0.359449,0.700996,0.859724,0.276519,0.792441,0.255341,0.699597,0.609463,0.772008,0.767515,0.127614,0.43896,0.247373,0.565708,0.034702,0.637914,0.95216,0.297835,0.783145,0.757571,0.612163,0.498525,0.681396,0.535128,0.00208223,0.420402,0.146639,0.00927079,0.0195479,0.592068,0.0292118,0.462088,0.00449282,0.761235,0.193614,0.650691,0.722436,0.610059,0.439457,0.207997,0.315419,0.888909,|0.947604,0.32641,0.396762,0.00600672,0.502156,0.362461,0.408254,0.769356,0.024687,0.788821,0.162388,0.871695,0.617335,0.509758,0.592502,0.705873,0.26541,0.372915,0.512337,0.230537,0.164663,0.1689,0.879395,0.735174,0.545537,0.422357,0.041568,0.90487,0.321071,0.719124,0.775034,0.745912,0.576688,0.651781,0.685993,0.551863,0.259029,0.43954,0.371782,0.907015,0.33648,0.553381,0.381411,0.911592,0.830483,0.575081,0.583459,0.96402,0.747308,0.907159,0.20115,0.0886497,0.599864,0.486926,0.725739,0.156956,0.862403,0.565866,0.964571,0.170411,0.624209,0.573647,0.430209,0.927075,0.993726,0.51859,0.742048,0.130591,0.914468,0.738179,0.272653,0.018349,0.29103,0.613202,0.503853,0.783896,0.446885,0.574347,0.381394,0.191781,0.930865,0.954698,0.898108,0.590921,0.399604,0.956869,0.0754573,0.00429666,0.327085,0.313482,0.519274,0.744103,0.975222,0.218838,0.902986,0.888407,0.360203,0.499892,0.951991,0.972028,0.740051,0.0622647,0.942402,0.594509,0.849787,0.462658,0.639621,0.690614,0.67903,0.6514,0.703448,0.474879,0.745878,0.30094,0.693452,0.930578,0.61123,0.199485,0.867348,0.569078,0.643413,0.945962,0.389577,0.888372,0.175346,0.0141563,0.649131,0.317538,0.970313,0.426542,0.839444,0.127996,0.281181,0.955063,0.0466288,0.219026,0.439795,0.209639,0.276752,0.116577,0.296146,0.902324,0.351134,0.176042,0.219631,0.209488,0.930171,0.657021,0.497523,0.0687636,0.986304,0.427031,0.896335,0.562868,0.538624,0.554237,0.184125,0.208426,0.992061,0.606252,0.79786,0.577213,0.0859314,0.385402,0.727244,0.437234,0.435479,0.0416107,0.0535069,0.693986,0.111942,0.758841,0.406882,0.407352,0.734815,0.690895,0.367063,0.0653147,0.964432,0.554545,0.56606,0.163599,0.217256,0.538315,0.226234,0.427264,0.0406187,0.201956,0.277294,0.584081,0.651045,0.542629,0.774878,0.735456,0.136931,0.748966,0.95359,0.813364,0.104278,0.716052,0.540566,0.496086,0.391857,0.506188,0.14639,0.047246,0.720869,0.768404,0.487524,0.854335,0.441599,0.240759,0.110464,0.739719,0.242603,0.025842,0.694121,0.591475,0.491172,0.349251,0.928825,0.511122,0.669684,0.554549,0.960958,0.171226,0.433636,0.593852,0.771686,0.285592,0.615244,0.822682,0.808662,0.260353,0.373095,0.955482,0.58033,0.587711,0.804922,0.355226,0.193687,0.287357,0.765235,0.774673,0.879475,0.216695,0.642039,0.860661,0.467514,0.751255,0.107319,0.675256,0.557059,0.496594,0.177486,0.272297,0.369932,0.757132,0.720276,0.0848293,0.622945,0.0439879,0.96051,0.105128,0.638084,0.700371,0.234174,0.553593,0.367306,0.969431,0.975014,0.222116,0.681962,0.860309,0.461998,0.843509,0.371168,0.286927,0.549766,0.440143,0.63882,0.769969,0.355705,0.382892,0.637103,0.573451,0.0109481,0.594864,0.750913,0.236061,0.347044,0.873081,0.558276,0.876767,0.538211,0.00789976,0.423544,0.364018,0.845229,0.754892,0.0666697,0.0660513,0.825268,0.101978,0.5693,0.219438,0.0173811,0.399724,0.606988,0.753374,0.171617,0.20937,0.475712,0.451576,0.441209,0.726243,0.304585,0.819072,0.963652,0.60905,0.599649,0.82654,0.237951,0.304496,0.480725,0.779614,0.0786886,0.250646,0.907915,0.841743,0.8612,0.549171,0.661838,0.434452,0.283479,0.1884,0.858675,0.579895,0.00147706,0.628339,0.220829,0.507925,0.205143,0.501321,0.285801,0.416047,0.0959832,0.716103,0.987511,0.794766,0.025371,0.178598,0.256346,0.401883,0.761858,0.558663,0.925492,0.609488,0.701408,0.0499735,0.288418,0.281058,0.628848,0.195596,0.761459,0.816567,0.201204,0.00993943,0.953553,0.30643,0.57089,0.992927,0.880144,0.0264316,0.458807,0.90497,0.432303,0.614786,0.798608,0.679698,0.135344,0.776745,0.724165,0.366861,0.162451,0.379764,0.808977,0.969593,0.343479,0.723734,0.859291,0.335414,0.341975,0.245195,0.87007,0.719831,0.835961,0.0396845,0.813932,0.283717,0.339048,0.632975,0.943933,0.360053,0.709889,0.569833,0.196349,0.237725,0.754318,0.578389,0.829887,0.845897,0.294059,0.572731,0.850954,0.951397,0.829096,0.0386384,0.5642,0.410905,0.96278,0.0409099,0.561874,0.531398,0.759797,0.0612791,0.304084,0.848204,0.215968,0.803992,0.625411,0.0111111,0.507902,0.954617,0.17571,0.24327,0.0641075,0.519489,0.560501,0.332534,0.861104,0.899951,0.50542,0.850329,0.272716,0.0213316,0.790632,0.0183098,0.715766,0.083938,0.816611,0.96423,0.200761,0.73425,0.192323,0.383376,0.194953,0.416418,0.979246,0.588616,0.704169,0.488084,0.136351,0.79571,0.415546,0.0185476,0.940898,0.953673,0.324658,0.215617,0.784952,0.372241,0.215155,0.720788,0.214669,0.803781,0.70822,0.0341388,0.847155,0.244838,0.586325,0.625186,0.968855,0.438565,0.0616432,0.397864,0.156918,0.846866,0.919852,0.173949,0.293421,0.500718,0.822903,0.69226,0.900385,0.138113,0.502581,0.839075,0.687345,0.184099,0.73133,0.945398,0.125529,0.293709,0.963323,0.472473,0.0318629,0.195076,0.61556,0.442131,0.864336,0.626597,0.586373,0.0524396,0.66388,0.430108,0.0275278,0.96722,0.168388,0.769002,0.795273,0.0401825,0.667009,0.597245,0.846917,0.0884104,0.717371,0.364925,0.666152,0.44077,0.240289,0.0706987,0.42836,0.882226,0.756857,0.540703,0.498076,0.308112,0.38382,0.479134,0.205581,0.660937,0.245739,0.432062,0.699033,0.965925,0.834395,0.44574,0.287342,0.339576,0.80966,0.85234,0.334408,0.266263,0.961936,0.06831,0.422979,0.576533,0.088959,0.16883,0.278072,0.16889,0.411823,0.81233,0.103371,0.717432,0.134152,0.826865,0.531457,0.508735,0.61556,0.94534,0.598019,0.207098,0.638898,0.216577,0.852048,0.99727,0.927706,0.401941,0.960484,0.0611507,0.539759,0.0725873,0.350712,0.331999,0.942857,0.578941,0.738997,0.988996,0.171822,0.809225,0.540467,0.0740718,0.547869,0.765359,0.950316,0.426987,0.441994,0.0102847,0.872906,0.225282,0.084295,0.305365,0.409247,0.0392808,0.805376,0.964698,0.513919,0.595671,0.35078,0.571918,0.973328,0.893775,0.914342,0.297536,0.852144,0.552101,0.408841,0.635327,0.255029,0.177141,0.596789,0.83937,0.204995,0.69167,0.532167,0.430538,0.608368,0.648543,0.398016,0.287573,0.264174,0.625628,0.04331,0.945669,0.920928,0.978771,0.754501,0.750581,0.544845,0.946027,0.705075,0.046931,0.895178,0.601167,0.949562,0.636357,0.964658,0.00234336,0.337198,0.350327,0.289474,0.42794,0.290359,0.831941,0.101309,0.392116,0.751517,0.194456,0.286379,0.402541,0.440659,0.911851,0.377928,0.266378,0.874281,0.996719,0.373509,0.969901,0.102885,0.800685,0.31575,0.651266,0.172396,0.299264,0.949306,0.743508,0.595153,0.595054,0.28372,0.0438572,0.133951,0.0123547,0.460797,0.86251,0.163049,0.308902,0.519434,0.554795,0.0880108,0.697186,0.598025,0.743776,0.563158,0.301276,0.840762,0.150552,0.359376,0.718212,0.768018,0.185664,0.163306,0.932267,0.604216,0.226105,0.505001,0.765977,0.286869,0.518854,0.228999,0.18305,0.583582,0.940752,0.632472,0.18355,0.802892,0.359006,0.932025,0.958556,0.549424,0.805098,0.393414,0.484339,0.812516,0.399142,0.791169,0.412088,0.350097,0.738238,0.104217,0.489165,0.877077,0.808272,0.575851,0.975203,0.984632,0.201417,0.379834,0.942007,0.78962,0.6294,0.171818,0.8248,0.681881,0.225032,0.6564,0.158323,0.726651,0.502972,0.552239,0.83245,0.803708,0.0670199,0.959808,0.12805,0.892823,0.893172,0.344168,0.850943,0.0587968,0.0128549,0.425854,0.266825,0.671927,0.622843,0.445971,0.773601,0.964017,0.885944,0.594724,0.983978,0.0387734,0.27659,0.268843,0.0648335,0.396592,0.132912,0.898039,0.169972,0.215044,0.802833,0.927357,0.54797,0.126015,0.668223,0.806103,0.677163,0.713179,0.564666,0.576845,0.534141,0.524551,0.731854,0.613084,0.253941,0.738451,0.894872,0.167268,0.89239,0.571147,0.203741,0.587245,0.373721,0.939493,0.572806,0.483539,0.371726,0.245996,0.589542,0.0714675,0.423034,0.926102,0.735832,0.539856,0.816026,0.0967938,0.766143,0.501533,0.138483,0.812348,0.00556344,0.940134,0.592197,0.970064,0.394779,0.00941104,0.342436,0.806049,0.496336,0.672677,0.720717,0.276608,0.534378,0.0259742,0.310178,0.672649,0.333104,0.994902,0.673136,0.394239,0.212451,0.834636,0.298746,0.59088,0.241212,0.20777,0.907659,0.980363,0.780849,0.332215,0.744226,0.52198,0.839407,0.176545,0.404795,0.37658,0.976839,0.150151,0.430183,0.867396,0.267679,0.506941,0.584872,0.180931,0.178279,0.0164044,0.0519335,0.156777,0.0845199,0.856406,0.219391,0.877434,0.243564,0.543541,0.275333,0.442339,0.487001,0.908805,0.650382,0.152827,0.259239,0.635504,0.360507,0.452726,0.914062,0.200864,0.691614,0.193433,0.966867,0.307776,0.837948,0.270508,0.386504,0.209215,0.202466,0.206856,0.869058,0.851302,0.569395,0.125369,0.208846,0.143833,0.746057,0.402252,0.127242,0.0916387,0.960236,0.900991,0.0624961,0.66644,0.46141,0.966434,0.16271,0.548907,0.751165,0.464996,0.709511,0.333194,0.587104,0.479765,0.211771,0.942289,0.181612,0.466155,0.277746,0.565921,0.594388,0.191472,0.12931,0.620797,0.668747,0.462,0.26311,0.883685,0.727648,0.827087,0.330999,0.384407,0.628811,0.170248,0.239156,0.947672,0.783978,0.825163,0.71467,0.625439,0.299666,0.51572,0.834409,0.506857,0.936635,0.766057,0.60801,0.164352,0.457126,0.376522,0.924237,0.240295,0.979769,0.424618,0.0131751,0.285622,0.0356516,0.344103,0.343765,0.603744,0.785779,0.315402,0.0439379,0.216272,0.0302967,0.800957,0.726199,0.448864,0.801413,0.0648971,0.0222315,0.312768,0.951937,0.0812101,0.564749,0.997714,0.704121,0.253329,0.722827,0.346726,0.32793,0.878282,0.229305,0.0246766,0.685408,0.260847,0.845398,0.263777,0.786175,0.948987,0.359954,0.927043,0.434551,|0.111081,0.00827432,0.884626,0.859934,0.37498,0.773541,0.148133,0.703197,0.559637,0.591466,0.111456,0.7234,0.858331,0.373814,0.716683,0.672388,0.342334,0.12232,0.949778,0.871432,0.682674,0.797378,0.0511094,0.0337901,0.0770469,0.232414,0.303311,0.571449,0.72854,0.22393,0.608219,0.441763,0.182101,0.82327,0.956905,0.980749,0.398524,0.416992,0.375849,0.232805,0.905876,0.190894,0.46391,0.890962,0.991479,0.661519,0.041795,0.524103,0.703408,0.265522,0.414968,0.130417,0.537196,0.49004,0.239145,0.779396,0.232248,0.293353,0.284572,0.276455,0.215904,0.563575,0.325469,0.109593,0.550413,0.687274,0.528194,0.850067,0.865446,0.307785,0.249289,0.367118,0.0533488,0.980262,0.203713,0.569944,0.272992,0.213236,0.190941,0.693375,0.749715,0.808541,0.792402,0.787994,0.948084,0.885632,0.534201,0.581278,0.906846,0.870535,0.909931,0.615354,0.402359,0.918746,0.341855,0.636233,0.454805,0.610079,0.056016,0.718391,0.92283,0.183421,0.876159,0.284636,0.0143713,0.972853,0.517057,0.424093,0.231809,0.570963,0.380411,0.898802,0.784391,0.270977,0.768532,0.817242,0.489074,0.154197,0.467218,0.741781,0.162459,0.996312,0.962684,0.430725,0.605971,0.633689,0.892376,0.461192,0.528677,0.868852,0.0564491,0.120848,0.380737,0.865088,0.381668,0.38302,0.549173,0.220019,0.894405,0.465897,0.244393,0.0449331,0.32134,0.217238,0.0263296,0.681561,0.416597,0.460078,0.344601,0.921262,0.959465,0.456398,0.504904,0.367035,0.787764,0.61505,0.730416,0.712061,0.0564852,0.835057,0.354362,0.846374,0.798857,0.722245,0.858779,0.253308,0.304103,0.464338,0.931145,0.509137,0.387364,0.0681799,0.537291,0.866048,0.60105,0.557967,0.209103,0.268035,0.618963,0.946941,0.900341,0.981006,0.263964,0.477671,0.60025,0.908244,0.340086,0.864567,0.875968,0.425021,0.409148,0.0314315,0.667577,0.368084,0.724826,0.401091,0.921048,0.0958,0.906096,0.936507,0.492665,0.767761,0.750993,0.312932,0.329373,0.0613994,0.442741,0.468502,0.110268,0.741054,0.419735,0.986652,0.321628,0.555117,0.722582,0.292381,0.95158,0.974796,0.582493,0.611716,0.62689,0.177161,0.871952,0.6077,0.441508,0.140076,0.521087,0.884342,0.8649,0.851218,0.0939871,0.834489,0.990523,0.71672,0.0761826,0.318424,0.926811,0.789593,0.943853,0.155059,0.613155,0.205372,0.477039,0.0671376,0.510498,0.693383,0.216386,0.0294717,0.548915,0.980536,0.213986,0.196802,0.541545,0.962127,0.125717,0.878474,0.0601596,0.609284,0.550206,0.955402,0.875057,0.564666,0.782136,0.506037,0.102306,0.981721,0.215637,0.470745,0.622717,0.890572,0.555921,0.679209,0.462371,0.452989,0.500455,0.196329,0.706452,0.41422,0.694771,0.427515,0.865878,0.227867,0.649071,0.801593,0.447916,0.482619,0.217448,0.921858,0.138068,0.451615,0.869054,0.390894,0.447272,0.675081,0.990698,0.531208,0.373667,0.652125,0.266453,0.193269,0.44982,0.00668144,0.354072,0.302727,0.0618722,0.290254,0.0931658,0.251968,0.379399,0.38542,0.499086,0.678994,0.490283,0.672477,0.769074,0.931136,0.9212,0.810324,0.227461,0.804223,0.846835,0.360197,0.0886907,0.993938,0.198803,0.824885,0.157175,0.410943,0.256436,0.509941,0.409174,0.732618,0.638399,0.969036,0.461044,0.953985,0.502855,0.167468,0.131328,0.892346,0.934464,0.345766,0.00991917,0.738555,0.062497,0.567344,0.167478,0.93136,0.784651,0.565686,0.734087,0.681681,0.741855,0.969817,0.566112,0.241671,0.98315,0.228722,0.429237,0.880687,0.139614,0.32812,0.278896,0.895401,0.110169,0.859688,0.141743,0.43188,0.308563,0.0584137,0.576067,0.6151,0.856906,0.483994,0.0053193,0.504781,0.678431,0.190258,0.185903,0.556482,0.226687,0.700483,0.66947,0.981618,0.24375,0.56413,0.943127,0.651754,0.52364,0.601169,0.551885,0.462811,0.720586,0.100642,0.841599,0.956499,0.566503,0.228158,0.0906108,0.201411,0.0810301,0.0407492,0.352328,0.617798,0.0255883,0.311725,0.461257,0.559237,0.143318,0.382547,0.826303,0.748103,0.0531251,0.862965,0.884998,0.472151,0.488566,0.365464,0.700864,0.418886,0.941147,0.332102,0.837737,0.893708,0.530512,0.196277,0.7964,0.955273,0.15307,0.919211,0.742355,0.0279233,0.448435,0.478815,0.443566,0.736089,0.161514,0.474926,0.286268,0.922564,0.772617,0.272241,0.490424,0.39732,0.238255,0.406478,0.642115,0.462449,0.986919,0.243578,0.736507,0.364182,0.484113,0.404059,0.923708,0.757483,0.747776,0.559618,0.844235,0.503756,0.105044,0.202067,0.790735,0.528879,0.325129,0.863437,0.594556,0.675616,0.155073,0.420543,0.879557,0.688273,0.219254,0.510517,0.995843,0.0552257,0.575847,0.649056,0.0720609,0.575119,0.0332676,0.991445,0.302741,0.960497,0.397762,0.454229,0.0368702,0.257167,0.673732,0.37224,0.775749,0.114929,0.38064,0.294482,0.286682,0.246357,0.705218,0.27594,0.118216,0.0161499,0.714913,0.282626,0.807014,0.818971,0.734453,0.390433,0.853627,0.653516,0.306512,0.279317,0.196059,0.675618,0.479,0.126401,0.865064,0.152351,0.548294,0.575249,0.674974,0.162436,0.978561,0.585597,0.00987333,0.695325,0.814274,0.339538,0.0152138,0.819533,0.638174,0.565902,0.362686,0.441611,0.0300397,0.88586,0.785755,0.467539,0.860135,0.0394279,0.781046,0.042718,0.126414,0.419939,0.917673,0.679784,0.0919669,0.580023,0.29502,0.497073,0.148004,0.591052,0.684395,0.960379,0.322857,0.47224,0.697315,0.375415,0.306096,0.268299,0.473559,0.295637,0.616592,0.750792,0.985413,0.981163,0.830231,0.307804,0.869072,0.616191,0.264698,0.702868,0.2307,0.488547,0.777423,0.992893,0.118091,0.314022,0.933469,0.248655,0.707337,0.42325,0.18091,0.479475,0.753929,0.934654,0.257047,0.147347,0.049156,0.133904,0.248697,0.218857,0.187695,0.47876,0.0270722,0.669939,0.62955,0.0834795,0.393413,0.349998,0.124326,0.840697,0.753971,0.225208,0.945112,0.0277448,0.388489,0.573138,0.581408,0.536373,0.816313,0.521487,0.93899,0.879688,0.923612,0.45137,0.926866,0.155396,0.759895,0.0908029,0.411066,0.340672,0.497282,0.927394,0.672215,0.385348,0.208115,0.098096,0.345308,0.510433,0.345125,0.576769,0.283819,0.443399,0.214718,0.512803,0.810755,0.440508,0.537297,0.695317,0.411275,0.226339,0.585771,0.663016,0.785986,0.878358,0.805406,0.282633,0.856643,0.091848,0.856994,0.942038,0.568311,0.213677,0.595149,0.831022,0.281483,0.295612,0.421235,0.503879,0.625569,0.781925,0.779172,0.115719,0.550282,0.579076,0.657201,0.574769,0.833889,0.394915,0.964182,0.898688,0.779962,0.58755,0.0572511,0.417228,0.661672,0.0323563,0.618566,0.510386,0.914805,0.605707,0.36699,0.240689,0.00605547,0.646036,0.540028,0.66586,0.470996,0.169558,0.244636,0.85436,0.136247,0.231541,0.499058,0.104342,0.512112,0.059979,0.215504,0.134115,0.183193,0.929893,0.250932,0.495303,0.577408,0.85862,0.56378,0.68237,0.0335372,0.149236,0.416416,0.402434,0.554148,0.241359,0.873408,0.383381,0.328682,0.272897,0.850508,0.54051,0.577788,0.464245,0.227166,0.217837,0.836785,0.477603,0.999529,0.687485,0.542521,0.625218,0.898933,0.153803,0.774966,0.922861,0.742574,0.35358,0.488082,0.380139,0.245463,0.190376,0.376172,0.424356,0.623838,0.996521,0.298872,0.431459,0.0190559,0.404824,0.408988,0.774277,0.929277,0.745294,0.944727,0.800306,0.922919,0.478727,0.622405,0.17348,0.227789,0.697646,0.381152,0.831154,0.612247,0.524734,0.575721,0.212435,0.686164,0.54463,0.0273743,0.735351,0.0164832,0.525423,0.0734902,0.714611,0.566952,0.639065,0.150417,0.734982,0.786287,0.580104,0.867088,0.710845,0.62784,0.337633,0.47428,0.675062,0.925422,0.84768,0.14234,0.0964642,0.800959,0.610471,0.397244,0.103285,0.42742,0.0716255,0.826101,0.908388,0.831887,0.445115,0.752906,0.326364,0.1862,0.790189,0.277584,0.736794,0.814874,0.569867,0.256798,0.437876,0.933284,0.0350665,0.365959,0.901969,0.901938,0.67523,0.616932,0.733683,0.43214,0.974179,0.603285,0.0924875,0.0724401,0.297194,0.626113,0.456613,0.0868607,0.733431,0.883276,0.873763,0.710668,0.34111,0.726882,0.205638,0.607391,0.813111,0.488728,0.178032,0.642765,0.719684,0.155832,0.200368,0.788371,0.230616,0.554433,0.73094,0.0334832,0.402918,0.0670119,0.485987,0.0614526,0.392585,0.760746,0.897357,0.682144,0.199987,0.48259,0.719244,0.12345,0.0299419,0.0152883,0.906834,0.861023,0.345815,0.996354,0.61922,0.907448,0.898964,0.828167,0.352874,0.927724,0.90864,0.581499,0.358786,0.333698,0.188627,0.498104,0.458159,0.760021,0.379061,0.167492,0.432422,0.889909,0.556755,0.587198,0.130239,0.00659448,0.898435,0.91494,0.376763,0.132707,0.615241,0.464494,0.184117,0.991049,0.0562544,0.45386,0.649663,0.363789,0.561996,0.720489,0.722503,0.369293,0.269359,0.294573,0.828396,0.303366,0.335566,0.311577,0.131691,0.254235,0.411357,0.661404,0.194274,0.492593,0.926222,0.822502,0.910303,0.969949,0.355556,0.845744,0.989955,0.828084,0.788997,0.074065,0.602421,0.86963,0.0711828,0.0741736,0.964411,0.0332341,0.0965438,0.119672,0.597868,0.382557,0.238303,0.649418,0.615166,0.85302,0.0195145,0.0511844,0.189999,0.960801,0.562989,0.735904,0.731449,0.414131,0.526273,0.165109,0.656648,0.167422,0.490681,0.365203,0.575628,0.972377,0.931826,0.128572,0.199192,0.390846,0.0914718,0.719419,0.70805,0.403294,0.671138,0.774317,0.0552888,0.776411,0.152571,0.0201141,0.133642,0.456277,0.0365096,0.817931,0.779688,0.617442,0.0740904,0.907746,0.840003,0.894513,0.937051,0.436403,0.930665,0.997647,0.263134,0.14194,0.369281,0.278578,0.0156384,0.620653,0.316224,0.54569,0.371721,0.211991,0.51592,0.294524,0.486321,0.61508,0.96186,0.530901,0.315995,0.114547,0.594106,|0.101325,0.0597427,0.45433,0.636887,0.922002,0.0500079,0.698627,0.354711,0.922823,0.424517,0.188001,0.792167,0.12817,0.459817,0.0989227,0.497832,0.216124,0.538582,0.769773,0.103764,0.291317,0.948283,0.105404,0.197345,0.86959,0.967971,0.030943,0.376153,0.142941,0.51017,0.939261,0.484107,0.128406,0.399127,0.996637,0.9198,0.689889,0.279703,0.688829,0.479105,0.044528,0.358924,0.222402,0.655473,0.162886,0.992921,0.165873,0.679443,0.775832,0.696039,0.928652,0.0619383,0.515804,0.958542,0.612969,0.564777,0.502289,0.357907,0.550696,0.76823,0.310749,0.091131,0.659909,0.494717,0.762763,0.037472,0.0135425,0.5339,0.834785,0.392566,0.311072,0.247251,0.917357,0.518895,0.047877,0.604982,0.563326,0.746016,0.849115,0.189928,0.205649,0.974144,0.803398,0.61382,0.518457,0.453832,0.72159,0.459831,0.287285,0.533742,0.981692,0.87652,0.184125,0.510774,0.565586,0.44506,0.454744,0.676147,0.547148,0.487571,0.313661,0.0807569,0.29059,0.283443,0.350088,0.103999,0.507931,0.109249,0.269514,0.886347,0.520398,0.176807,0.818919,0.943522,0.323435,0.648733,0.353485,0.0640137,0.0277635,0.677015,0.508771,0.593562,0.367353,0.316436,0.173651,0.477937,0.599902,0.990413,0.253302,0.902365,0.0218884,0.479099,0.494512,0.702531,0.176118,0.742638,0.922282,0.770257,0.540487,0.95789,0.642491,0.198755,0.296531,0.103086,0.681863,0.139279,0.758379,0.693384,0.330629,0.142139,0.782775,0.788427,0.304708,0.0242472,0.193246,0.844949,0.200954,0.660463,0.450235,0.676339,0.169537,0.629298,0.754832,0.994861,0.437925,0.294653,0.961465,0.706401,0.456589,0.909137,0.240425,0.888753,0.128688,0.870943,0.337284,0.566937,0.741711,0.267242,0.329487,0.39813,0.577118,0.82773,0.638693,0.42339,0.885691,0.630426,0.966347,0.415372,0.851922,0.414706,0.164967,0.991787,0.595703,0.349516,0.593531,0.214833,0.609652,0.0122805,0.778014,0.0192364,0.149872,0.430705,0.711797,0.10415,0.776338,0.736087,0.0318203,0.714755,0.864199,0.589786,0.535701,0.848878,0.599114,0.838376,0.706714,0.194373,0.548495,0.0852806,0.218388,0.736143,0.312839,0.459832,0.148995,0.0567995,0.461987,0.236866,0.165309,0.256697,0.904346,0.501108,0.0477628,0.618672,0.0800825,0.809003,0.344174,0.933765,0.844976,0.257757,0.072766,0.685706,0.102523,0.222242,0.393723,0.787392,0.176525,0.13135,0.00165039,0.0963316,0.183177,0.465237,0.720311,0.847359,0.253032,0.337716,0.47436,0.67962,0.825328,0.588437,0.847235,0.0237045,0.305525,0.308674,0.743369,0.658801,0.797315,0.128391,0.293867,0.0738636,0.0527294,0.092634,0.274922,0.0480018,0.186142,0.306799,0.807498,0.797521,0.0748023,0.451318,0.213384,0.0181664,0.178321,0.416426,0.759051,0.257795,0.051479,0.925556,0.548942,0.855198,0.323916,0.364486,0.154276,0.874147,0.0712625,0.665482,0.768179,0.791139,0.611064,0.0822923,0.696902,0.835388,0.277261,0.179157,0.0344658,0.828416,0.289934,0.799733,0.519952,0.149154,0.104119,0.389144,0.666316,0.275797,0.320952,0.213884,0.0948384,0.973131,0.163319,0.243623,0.357928,0.302918,0.623349,0.0806406,0.648155,0.613829,0.109794,0.0864714,0.858503,0.165308,0.95012,0.734313,0.107195,0.463369,0.745534,0.339478,0.219007,0.0419962,0.327707,0.410505,0.613694,0.178618,0.101856,0.047112,0.532484,0.806211,0.780114,0.561661,0.301391,0.915633,0.539157,0.823967,0.232604,0.797815,0.0405841,0.99715,0.693755,0.74591,0.175071,0.857541,0.50198,0.241461,0.269585,0.0982639,0.468935,0.852812,0.564068,0.684275,0.233468,0.971486,0.20699,0.319447,0.989801,0.86257,0.419988,0.0923052,0.929899,0.860017,0.242572,0.738421,0.907165,0.087435,0.143081,0.514162,0.658468,0.796973,0.0977294,0.547482,0.691197,0.945672,0.728058,0.233611,0.341012,0.451498,0.625587,0.654959,0.704027,0.922993,0.044731,0.200054,0.0524198,0.130956,0.590332,0.431334,0.925718,0.0620871,0.924857,0.636482,0.117526,0.366753,0.865185,0.880252,0.0277726,0.0208546,0.982004,0.0203284,0.954138,0.170594,0.638039,0.881345,0.704366,0.610582,0.845566,0.979336,0.418894,0.763369,0.589225,0.227587,0.175166,0.862038,0.178842,0.834587,0.173079,0.478865,0.0577005,0.40773,0.31719,0.980576,0.333096,0.805535,0.809567,0.719112,0.480102,0.182553,0.327769,0.424275,0.511711,0.583031,0.395698,0.748522,0.580979,0.244253,0.818402,0.0159546,0.663824,0.329786,0.578805,0.246585,0.212072,0.328487,0.250629,0.691056,0.333315,0.608601,0.298068,0.00914955,0.767228,0.103365,0.0459636,0.0153391,0.254629,0.488606,0.600078,0.699145,0.75678,0.560091,0.662721,0.301184,0.664648,0.274846,0.213193,0.789392,0.0818673,0.255706,0.910304,0.454067,0.266334,0.208389,0.48184,0.287871,0.623454,0.637642,0.95735,0.15712,0.0877066,0.259398,0.046447,0.4584,0.247335,0.651228,0.824277,0.0502609,0.81574,0.733118,0.980644,0.930377,0.299594,0.64015,0.48403,0.177525,0.42959,0.771827,0.578821,0.242691,0.975348,0.139116,0.833484,0.0242183,0.0793967,0.881262,0.0988618,0.94963,0.273507,0.259531,0.00526166,0.531275,0.279624,0.0382037,0.280291,0.544648,0.34087,0.535201,0.105666,0.0645713,0.167475,0.227867,0.923393,0.632115,0.933222,0.774364,0.488843,0.599663,0.705226,0.835874,0.545594,0.331456,0.144618,0.814555,0.803975,0.108279,0.979319,0.721111,0.332766,0.909093,0.905533,0.857666,0.853659,0.27025,0.51898,0.0624419,0.854151,0.59153,0.785298,0.855483,0.424815,0.95853,0.664266,0.704579,0.364035,0.744532,0.120946,0.614967,0.439887,0.133805,0.321838,0.673895,0.673538,0.011044,0.117865,0.862406,0.609241,0.652483,0.376098,0.161885,0.532231,0.492891,0.203541,0.266538,0.805588,0.109609,0.236342,0.392577,0.703359,0.281963,0.526983,0.846737,0.655768,0.41336,0.784155,0.0569912,0.0654448,0.504728,0.882147,0.572254,0.329095,0.388209,0.836019,0.870457,0.603768,0.646188,0.456298,0.709208,0.598697,0.246454,0.0781854,0.569483,0.635931,0.106921,0.524922,0.621017,0.278898,0.298867,0.0995076,0.267107,0.336671,0.736237,0.287476,0.954328,0.952776,0.922037,0.801537,0.59947,0.36156,0.107673,0.8942,0.791482,0.792302,0.725972,0.859478,0.291835,0.980761,0.260903,0.41956,0.14344,0.902033,0.203533,0.83165,0.347049,0.873984,0.880366,0.469138,0.048273,0.221826,0.759742,0.894408,0.754464,0.426944,0.295986,0.40694,0.109104,0.290559,0.505074,0.283488,0.328205,0.466827,0.279809,0.770893,0.129516,0.172195,0.837043,0.631868,0.61379,0.976475,0.820882,0.723881,0.0130707,0.0201778,0.42741,0.781951,0.106216,0.645646,0.0281496,0.429172,0.844616,0.916498,0.969663,0.865494,0.805572,0.99146,0.733612,0.693258,0.621419,0.780682,0.0484242,0.75447,0.98537,0.629114,0.208333,0.412729,0.363253,0.0332522,0.829244,0.834664,0.508933,0.716836,0.297711,0.170549,0.551351,0.794734,0.413293,0.271622,0.3837,0.264381,0.148553,0.223259,0.989806,0.156872,0.119997,0.777449,0.617811,0.333444,0.899938,0.652278,0.845423,0.431452,0.201823,0.326926,0.989236,0.842594,0.392309,0.376493,0.541495,0.40474,0.947847,0.983377,0.818799,0.9182,0.478946,0.456255,0.648516,0.220859,0.151305,0.0522941,0.18434,0.597848,0.301316,0.866692,0.864232,0.670958,0.643861,0.805496,0.993521,0.890461,0.58713,0.97793,0.394283,0.983015,0.782479,0.432377,0.189489,0.515948,0.3746,0.529351,0.688535,0.76507,0.287936,0.539063,0.09446,0.392884,0.14078,0.946551,0.193106,0.90033,0.110813,0.853723,0.484889,0.528333,0.00587434,0.570572,0.610897,0.185769,0.382984,0.289862,0.360079,0.347437,0.57314,0.69228,0.125091,0.532384,0.734765,0.093025,0.745041,0.767007,0.360028,0.225139,0.627356,0.740408,0.676806,0.535316,0.676966,0.0135349,0.639234,0.783364,0.71665,0.0432929,0.727376,0.363876,0.529084,0.539369,0.704713,0.37087,0.862639,0.704273,0.838056,0.270143,0.183686,0.356497,0.947207,0.767943,0.400274,0.302087,0.503716,0.288997,0.266917,0.694206,0.638048,0.259654,0.426319,0.0442718,0.0459823,0.126492,0.39965,0.0872187,0.892688,0.300627,0.459588,0.734561,0.443052,0.485829,0.97101,0.469184,0.814518,0.648025,0.36394,0.495142,0.581814,0.908992,0.378469,0.125763,0.407143,0.167302,0.193196,0.333873,0.182303,0.713305,0.432301,0.00236678,0.925839,0.807963,0.729269,0.496261,0.0188936,0.711908,0.784042,0.547344,0.0643056,0.243059,0.761861,0.654361,0.81422,0.116575,0.257247,0.792815,0.903338,0.405019,0.287524,0.0654386,0.581327,0.76447,0.835471,0.675481,0.93566,0.673832,0.727984,0.057642,0.171935,0.9245,0.10651,0.964748,0.745048,0.189745,0.509084,0.813158,0.00687057,0.375615,0.0987613,0.209199,0.455407,0.614448,0.917728,0.371331,0.572251,0.586504,0.686867,0.0936701,0.741312,0.324428,0.341611,0.407025,0.0135663,0.818037,0.164426,0.777804,0.0600441,0.372437,0.758453,0.455115,0.570843,0.809985,0.0264394,0.436855,0.0052138,0.913121,0.61463,0.613972,0.643823,0.360636,0.963656,0.269226,0.00992495,0.702035,0.216419,0.81378,0.690215,0.757844,0.690263,0.249167,0.0427722,0.252193,0.318076,0.757658,0.409156,0.403609,0.283165,0.440777,0.269008,0.360316,0.431393,0.994291,0.714935,0.062994,0.936819,0.437648,0.635207,0.464647,0.50481,0.796606,0.644284,0.421572,0.177675,0.32531,0.806166,0.574037,0.791762,0.178008,0.723291,0.611406,0.143306,0.133281,0.774279,0.3433,0.0230557,0.582633,0.38219,0.267389,0.473802,0.722136,0.711873,0.488949,0.0733771,0.186486,0.0971688,0.654723,0.294653,0.932938,0.9393,0.260987,0.140186,0.251021,0.269519,0.27493,0.0534757,0.701334,0.785676,0.703296,0.856471,0.976022,0.272365,0.605554,0.786229,0.135197,0.263619,|0.510883,0.696026,0.0663669,0.29394,0.266958,0.361918,0.0143901,0.286942,0.910339,0.848377,0.228622,0.881557,0.741347,0.160978,0.428417,0.365805,0.680458,0.329991,0.0201146,0.553266,0.649576,0.476202,0.230396,0.698137,0.691458,0.739797,0.488674,0.712984,0.973077,0.161721,0.843227,0.813726,0.706156,0.669274,0.139046,0.488816,0.439354,0.338927,0.394167,0.954034,0.602839,0.39855,0.877066,0.313384,0.511605,0.947761,0.30068,0.784737,0.956379,0.128336,0.120251,0.187062,0.173531,0.231115,0.000663519,0.585839,0.460627,0.629441,0.765939,0.254433,0.231007,0.602227,0.146545,0.63518,0.873765,0.238655,0.0421433,0.00144833,0.0260903,0.111035,0.998057,0.319044,0.374576,0.603423,0.95385,0.0341785,0.475864,0.216197,0.287201,0.633721,0.0537612,0.370942,0.322554,0.998715,0.204416,0.853898,0.405113,0.167558,0.335416,0.673338,0.276939,0.879897,0.539391,0.6714,0.66414,0.849679,0.4085,0.343296,0.16498,0.498384,0.0386364,0.971411,0.0135978,0.37518,0.849005,0.535872,0.813314,0.10449,0.0496163,0.773431,0.0672567,0.919172,0.0327845,0.864315,0.620262,0.0936375,0.712962,0.0372989,0.707949,0.424709,0.721622,0.422606,0.43782,0.272528,0.00193143,0.838754,0.0522095,0.981818,0.826707,0.875845,0.694758,0.446813,0.848671,0.320523,0.567267,0.503873,0.741001,0.06551,0.915103,0.972551,0.168265,0.980743,0.363021,0.128919,0.314501,0.637269,0.588392,0.838746,0.768766,0.182,0.575284,0.51355,0.129271,0.2502,0.807739,0.957881,0.179656,0.521726,0.0754359,0.765175,0.780449,0.104024,0.719909,0.746206,0.917157,0.600926,0.101331,0.105855,0.0220408,0.398202,0.248352,0.0192435,0.707883,0.591688,0.246962,0.667265,0.991077,0.498057,0.620322,0.648629,0.489686,0.477435,0.586716,0.980824,0.447641,0.630256,0.188957,0.850427,0.966193,0.699982,0.600667,0.37259,0.560086,0.930689,0.46014,0.769817,0.945249,0.0812194,0.657234,0.639604,0.843136,0.596545,0.834451,0.745045,0.449439,0.998729,0.918245,0.900906,0.980307,0.687211,0.692744,0.994314,0.134626,0.797784,0.721488,0.39782,0.618433,0.37069,0.559276,0.487208,0.470059,0.146486,0.514383,0.632807,0.933184,0.808521,0.225808,0.0974331,0.0232512,0.0564144,0.789142,0.625216,0.360659,0.349352,0.430653,0.716018,0.64226,0.805339,0.460616,0.394163,0.261075,0.19497,0.854971,0.88586,0.0209557,0.840935,0.573545,0.407457,0.307833,0.426256,0.193886,0.673845,0.118618,0.480718,0.0343913,0.411825,0.239095,0.694888,0.16973,0.143456,0.971994,0.435358,0.183556,0.333933,0.982485,0.609312,0.246454,0.537671,0.872115,0.172129,0.111334,0.753426,0.613892,0.0223636,0.569548,0.935589,0.555821,0.0481781,0.0392007,0.997817,0.106406,0.0032047,0.453589,0.227046,0.370729,0.433188,0.0528424,0.843783,0.746051,0.273982,0.0793241,0.44575,0.473753,0.882876,0.831365,0.353528,0.331403,0.329597,0.918298,0.060986,0.557652,0.219822,0.846956,0.279025,0.642934,0.33651,0.482383,0.633956,0.0598707,0.966897,0.511924,0.555925,0.051801,0.966181,0.251565,0.203726,0.0410766,0.478533,0.0835936,0.155937,0.25394,0.125491,0.856072,0.621551,0.689152,0.588115,0.369672,0.0808836,0.0181726,0.415827,0.395661,0.97425,0.998861,0.363585,0.919808,0.388303,0.309888,0.0381975,0.239021,0.354734,0.628221,0.580748,0.228271,0.119078,0.198587,0.58273,0.174038,0.745024,0.642131,0.0299599,0.075455,0.123981,0.523753,0.0925435,0.22906,0.59598,0.180537,0.765874,0.0403432,0.70991,0.540496,0.110971,0.372957,0.990801,0.774657,0.196324,0.531834,0.767246,0.632089,0.168763,0.399822,0.202117,0.0875921,0.992005,0.171219,0.851797,0.281884,0.512483,0.780243,0.744745,0.410323,0.671451,0.385888,0.883624,0.264089,0.270192,0.818134,0.201863,0.733921,0.226742,0.139864,0.957477,0.249292,0.142326,0.454073,0.5245,0.592226,0.799664,0.42122,0.670946,0.732712,0.259622,0.0741897,0.0589315,0.604543,0.987251,0.900022,0.282706,0.567973,0.85331,0.12561,0.366469,0.991333,0.909207,0.0834663,0.975075,0.094368,0.0748007,0.487917,0.0665385,0.62309,0.855506,0.105484,0.285344,0.324927,0.661867,0.30987,0.299819,0.671376,0.960958,0.155244,0.160036,0.930592,0.820576,0.885833,0.608795,0.0823501,0.48732,0.00653249,0.369858,0.286044,0.870128,0.344383,0.363798,0.136621,0.813297,0.711226,0.257947,0.0996458,0.998867,0.361543,0.549002,0.406682,0.817967,0.964851,0.809484,0.962505,0.114456,0.355915,0.276384,0.0228016,0.544474,0.867205,0.748045,0.923174,0.479158,0.134036,0.111582,0.865065,0.116938,0.998985,0.0582079,0.37233,0.0638274,0.569773,0.251948,0.824816,0.471154,0.196968,0.392973,0.87336,0.491523,0.402761,0.543015,0.348716,0.953154,0.247534,0.556311,0.64944,0.158993,0.9916,0.520505,0.0662159,0.441763,0.738816,0.255422,0.179107,0.00571674,0.557878,0.665009,0.559693,0.118439,0.195196,0.647264,0.530275,0.705914,0.998222,0.579498,0.964575,0.33397,0.281736,0.738716,0.375629,0.635288,0.204443,0.362847,0.42678,0.577673,0.715872,0.927828,0.416824,0.260496,0.819872,0.275875,0.582096,0.650061,0.777064,0.643523,0.180301,0.823398,0.453502,0.0115007,0.116531,0.681749,0.34407,0.0483642,0.208714,0.130821,0.909633,0.27298,0.356803,0.198438,0.77064,0.0687112,0.0768369,0.936187,0.185772,0.918414,0.454318,0.0769969,0.998815,0.414517,0.36155,0.255797,0.653718,0.453021,0.379364,0.671195,0.192533,0.0160474,0.553233,0.884199,0.380848,0.606447,0.263091,0.0787504,0.567132,0.681368,0.0439363,0.71965,0.379685,0.0677419,0.866964,0.0850727,0.567696,0.490116,0.791532,0.0727275,0.277785,0.472391,0.500562,0.104157,0.508606,0.811413,0.189048,0.575485,0.621759,0.588574,0.112705,0.239844,0.637136,0.87822,0.438936,0.106874,0.546506,0.726919,0.197804,0.0825185,0.543559,0.0863466,0.623714,0.22961,0.459127,0.479526,0.267896,0.964921,0.614823,0.835035,0.746529,0.83976,0.947081,0.460922,0.806487,0.584865,0.743961,0.0857192,0.233221,0.117296,0.630178,0.00228739,0.629724,0.337415,0.281164,0.340204,0.165045,0.796531,0.630874,0.29129,0.355175,0.974908,0.448948,0.231,0.529395,0.887341,0.987021,0.651067,0.934334,0.0973163,0.346157,0.136313,0.713311,0.675651,0.581839,0.434611,0.728894,0.393002,0.621685,0.324789,0.257001,0.12416,0.652922,0.158905,0.806165,0.246635,0.998834,0.0375919,0.261464,0.105729,0.191575,0.314078,0.450806,0.374402,0.0967395,0.26749,0.112406,0.768963,0.234335,0.344433,0.364213,0.973012,0.76884,0.866681,0.283953,0.266687,0.0174832,0.531978,0.656754,0.0859632,0.198576,0.50224,0.816776,0.760489,0.139383,0.654967,0.692508,0.770278,0.992812,0.914163,0.755949,0.0066458,0.630089,0.875657,0.422519,0.83924,0.959371,0.226547,0.788646,0.722815,0.72163,0.715463,0.541083,0.618367,0.668949,0.987723,0.999195,0.746813,0.411633,0.571524,0.0496727,0.635469,0.518267,0.160877,0.914956,0.172499,0.6217,0.308127,0.831422,0.363775,0.501261,0.234844,0.705567,0.738672,0.1169,0.336792,0.752149,0.219467,0.301017,0.104268,0.313241,0.62438,0.903428,0.178477,0.528855,0.631444,0.373078,0.143657,0.540569,0.269174,0.295053,0.410279,0.77424,0.373098,0.66907,0.958243,0.0494135,0.396619,0.705655,0.447627,0.694045,0.122548,0.110883,0.193788,0.736696,0.123446,0.508339,0.0024783,0.948659,0.381123,0.230696,0.135418,0.350725,0.0882892,0.379892,0.743782,0.918479,0.571357,0.741802,0.950201,0.674627,0.9894,0.329058,0.407454,0.0973125,0.212069,0.654959,0.460723,0.609929,0.698596,0.80707,0.555117,0.527149,0.859611,0.519319,0.55791,0.360239,0.578097,0.986699,0.459759,0.0683106,0.726841,0.508379,0.958425,0.682776,0.0977412,0.152615,0.985621,0.189428,0.471597,0.905744,0.0694242,0.847719,0.764523,0.219978,0.184806,0.691259,0.0927098,0.842373,0.277836,0.396912,0.479533,0.501,0.412953,0.905497,0.507398,0.319859,0.970543,0.0774539,0.139834,0.924964,0.281877,0.128853,0.877019,0.660904,0.642324,0.27717,0.437156,0.255516,0.0958952,0.792498,0.709569,0.249021,0.222899,0.398838,0.655308,0.311233,0.886744,0.52508,0.910678,0.833202,0.435503,0.116054,0.678722,0.269926,0.579739,0.488588,0.483989,0.406602,0.871612,0.377729,0.234837,0.926964,0.303372,0.550053,0.400999,0.643051,0.013442,0.231374,0.0327514,0.338775,0.191565,0.666478,0.713655,0.0137515,0.969945,0.844917,0.519632,0.210628,0.533625,0.218459,0.43455,0.215163,0.107599,0.858127,0.10149,0.464649,0.48645,0.211069,0.140986,0.63109,0.912538,0.86398,0.771335,0.203057,0.571573,0.799257,0.527573,0.99945,0.15211,0.329522,0.207098,0.273922,0.233494,0.454927,0.544693,0.102981,0.148981,0.257835,0.179038,0.989853,0.44494,0.367606,0.627349,0.980009,0.129564,0.0769081,0.184762,0.504629,0.271196,0.473653,0.814571,0.908654,0.456302,0.330813,0.266505,0.278226,0.634929,0.924508,0.522144,0.372346,0.174523,0.826863,0.325387,0.564619,0.82146,0.0387145,0.642196,0.850286,0.000604033,0.388369,0.527576,0.535657,0.412298,0.0474632,0.786567,0.127765,0.819188,0.502527,0.738229,0.0465997,0.273055,0.349397,0.526219,0.896325,0.967295,0.337088,0.173799,0.565326,0.35436,0.922211,0.834527,0.274152,0.839921,0.666865,0.140812,0.923891,0.262919,0.114576,0.323966,0.995629,0.0932284,0.353355,0.237607,0.119787,0.322143,0.213493,0.621891,0.155481,0.621808,0.540117,0.00724661,0.0181307,0.177778,0.620291,0.907765,0.68322,0.527981,0.586736,0.277878,0.540287,0.442633,0.785391,0.109699,0.626768,0.198139,0.0532106,0.555119,0.187687,0.518036,0.0988313,0.548909,0.187958,0.292949,0.262968,0.334252,0.243469,0.444409,0.342533,0.468875,0.0473824,0.450332,|0.0837138,0.2768,0.700865,0.681652,0.13772,0.832435,0.279356,0.611532,0.0895509,0.860181,0.699311,0.342656,0.380476,0.807214,0.126409,0.889241,0.330067,0.682615,0.794627,0.255642,0.830252,0.59406,0.0966874,0.0670153,0.400982,0.158745,0.240181,0.47478,0.78433,0.391539,0.543269,0.52146,0.516781,0.347159,0.427376,0.0366028,0.588507,0.0593114,0.320884,0.782356,0.249823,0.113043,0.912827,0.577624,0.877017,0.892822,0.473144,0.713248,0.474645,0.37237,0.673258,0.384606,0.172764,0.0313395,0.485638,0.446192,0.28772,0.0889304,0.547148,0.339616,0.785212,0.468413,0.982181,0.243267,0.654387,0.0484519,0.644662,0.480342,0.819819,0.396201,0.267012,0.112215,0.0803459,0.13381,0.661393,0.869954,0.495136,0.0827451,0.0328466,0.747436,0.721629,0.312414,0.882678,0.378502,0.141418,0.156919,0.60426,0.755776,0.536623,0.131325,0.797535,0.308935,0.145458,0.443705,0.340673,0.974476,0.829518,0.391534,0.100793,0.103038,0.230794,0.390673,0.411628,0.617272,0.0984374,0.185477,0.704251,0.837535,0.2018,0.360022,0.365815,0.463307,0.958323,0.75589,0.374864,0.079464,0.11724,0.0419117,0.520521,0.335811,0.00365287,0.258567,0.287296,0.378142,0.661796,0.202974,0.241366,0.235182,0.61128,0.22482,0.093894,0.0439017,0.687373,0.124056,0.512667,0.204949,0.251214,0.377453,0.243584,0.675241,0.0659662,0.992836,0.615843,0.619462,0.850715,0.901619,0.33147,0.597672,0.782013,0.221686,0.802384,0.373825,0.0951506,0.279702,0.555125,0.283318,0.581243,0.826677,0.4434,0.0319509,0.415246,0.238767,0.453363,0.774592,0.928065,0.773187,0.109486,0.524347,0.00613004,0.347587,0.415804,0.780419,0.980263,0.344316,0.994532,0.245287,0.70097,0.744109,0.941808,0.785325,0.625886,0.42912,0.978746,0.191082,0.123739,0.991318,0.695195,0.135222,0.345502,0.786846,0.926589,0.121153,0.570575,0.240447,0.176984,0.542203,0.939943,0.1701,0.0618185,0.711553,0.385132,0.868454,0.731023,0.292094,0.0606285,0.904026,0.684982,0.600581,0.699199,0.895993,0.38835,0.699229,0.877064,0.190216,0.894418,0.0966239,0.332651,0.570417,0.0829558,0.991669,0.347317,0.081188,0.571027,0.668804,0.242041,0.962671,0.435057,0.233419,0.429894,0.731579,0.504893,0.772068,0.0759076,0.751245,0.957173,0.263004,0.171996,0.267318,0.552845,0.311692,0.335791,0.245788,0.394308,0.576509,0.364851,0.951617,0.452198,0.412963,0.462518,0.653713,0.908846,0.365235,0.457445,0.50583,0.215486,0.130293,0.863129,0.924656,0.878977,0.774615,0.909144,0.465125,0.786202,0.677567,0.78723,0.78861,0.282046,0.901617,0.645096,0.0394897,0.305169,0.966618,0.59908,0.383822,0.102841,0.194989,0.700657,0.0585808,0.0595425,0.865697,0.861372,0.79569,0.931109,0.19896,0.528658,0.245998,0.146944,0.927554,0.617302,0.43698,0.610909,0.532168,0.996634,0.998979,0.382415,0.564249,0.109639,0.312626,0.658544,0.971479,0.176901,0.334684,0.444901,0.758865,0.074286,0.985973,0.64971,0.775688,0.987124,0.266165,0.122435,0.440507,0.21149,0.990474,0.842789,0.61807,0.543049,0.942189,0.316507,0.442061,0.384848,0.0503799,0.161447,0.728098,0.62955,0.729179,0.978938,0.278933,0.883657,0.372554,0.676134,0.0710583,0.606182,0.536849,0.716331,0.250022,0.106626,0.435355,0.0199789,0.789073,0.676552,0.891617,0.0267895,0.5712,0.715603,0.412333,0.0485817,0.319993,0.686957,0.494401,0.149167,0.75833,0.571343,0.559593,0.558517,0.867422,0.523002,0.443454,0.0625106,0.403947,0.392677,0.0119749,0.475425,0.716055,0.990245,0.426092,0.297228,0.964523,0.645439,0.570618,0.749408,0.762697,0.204121,0.35025,0.234654,0.18568,0.263803,0.308302,0.962839,0.322833,0.242137,0.852375,0.497122,0.00287497,0.51074,0.502027,0.448427,0.655847,0.558763,0.392036,0.771234,0.194166,0.922962,0.323785,0.228057,0.137219,0.71188,0.701582,0.979302,0.785969,0.417897,0.881935,0.00758165,0.122248,0.486358,0.857584,0.556389,0.00260371,0.86972,0.9604,0.0482526,0.496518,0.745719,0.984604,0.984019,0.820885,0.963157,0.331805,0.203153,0.139587,0.197972,0.724187,0.0776602,0.295257,0.795163,0.875537,0.261093,0.5658,0.153744,0.375876,0.674947,0.48698,0.792057,0.627723,0.846594,0.308198,0.458134,0.666621,0.607812,0.387192,0.980676,0.90997,0.39322,0.738413,0.00410271,0.7387,0.0200099,0.739803,0.539984,0.0438718,0.540209,0.148976,0.704999,0.0280275,0.462932,0.773969,0.793435,0.500406,0.219643,0.576393,0.325438,0.2171,0.842079,0.0647978,0.805977,0.705087,0.723769,0.660416,0.0840201,0.443657,0.904659,0.778103,0.34336,0.270307,0.91865,0.674113,0.800444,0.0382353,0.0889894,0.739622,0.998473,0.601476,0.575836,0.83254,0.712765,0.249296,0.0429837,0.941622,0.875329,0.120372,0.764237,0.818793,0.694274,0.493397,0.200148,0.568151,0.449049,0.927909,0.996022,0.0919044,0.637678,0.788567,0.838477,0.192036,0.452939,0.620894,0.961258,0.138687,0.122072,0.0403246,0.761566,0.985255,0.640897,0.588778,0.637949,0.370683,0.776231,0.926422,0.0645093,0.466824,0.128941,0.640861,0.81403,0.0953063,0.822342,0.688545,0.773021,0.593439,0.597,0.596362,0.662985,0.290117,0.947315,0.790375,0.154384,0.454191,0.217886,0.907935,0.0151259,0.327385,0.739765,0.191553,0.236714,0.819782,0.406268,0.702518,0.259156,0.314453,0.381793,0.0695781,0.962574,0.0738942,0.667421,0.257661,0.684013,0.203936,0.154841,0.881271,0.474208,0.00359911,0.807366,0.557824,0.930459,0.803505,0.176088,0.718304,0.308611,0.757545,0.191406,0.437872,0.578804,0.02715,0.393665,0.186247,0.71485,0.231183,0.681911,0.559425,0.918213,0.0757477,0.72143,0.945476,0.30188,0.20148,0.870348,0.067009,0.656653,0.416504,0.687741,0.304069,0.675739,0.793347,0.92819,0.0776727,0.526356,0.684676,0.761286,0.671259,0.86592,0.913534,0.74168,0.643099,0.656329,0.145702,0.265831,0.240138,0.424338,0.680914,0.13294,0.949856,0.639596,0.920812,0.656555,0.801412,0.811001,0.309653,0.529453,0.275675,0.636298,0.73222,0.625283,0.484789,0.33028,0.0534355,0.834395,0.428066,0.871371,0.370994,0.39349,0.259231,0.635517,0.983985,0.202886,0.632713,0.882209,0.233048,0.876671,0.909417,0.889195,0.575705,0.535735,0.394632,0.302184,0.583691,0.69037,0.146894,0.744719,0.200787,0.582053,0.571184,0.59827,0.368417,0.977005,0.0771663,0.131173,0.12701,0.241129,0.348125,0.649394,0.799176,0.519802,0.63513,0.305972,0.238155,0.712624,0.381153,0.79176,0.542971,0.0515902,0.924781,0.461347,0.601294,0.854058,0.0866356,0.277026,0.983946,0.632522,0.376492,0.0594691,0.432465,0.328024,0.241346,0.0961307,0.871844,0.352104,0.826702,0.381744,0.980883,0.291821,0.168919,0.399375,0.338111,0.038853,0.0236169,0.977755,0.0143728,0.0214056,0.388543,0.00894397,0.759973,0.693276,0.0160823,0.67873,0.543759,0.849768,0.375881,0.455119,0.762246,0.942464,0.974915,0.136696,0.330393,0.99403,0.212264,0.444757,0.283585,0.705004,0.803958,0.843573,0.435715,0.157126,0.0567772,0.757011,0.157127,0.555908,0.567896,0.371642,0.188063,0.499472,0.735635,0.991177,0.780389,0.775956,0.0421075,0.72923,0.328233,0.0165217,0.40002,0.692435,0.687659,0.947885,0.543088,0.194701,0.877763,0.139889,0.870929,0.741831,0.000971258,0.0231802,0.614936,0.879397,0.747757,0.250829,0.215592,0.743796,0.65315,0.994866,0.660618,0.164779,0.836199,0.388813,0.386303,0.711012,0.534039,0.603018,0.578618,0.838493,0.128187,0.372949,0.862899,0.115207,0.308755,0.168491,0.496072,0.231627,0.209824,0.563675,0.652026,0.609642,0.234415,0.277939,0.609761,0.219712,0.0710097,0.939884,0.94822,0.16364,0.777686,0.587535,0.845563,0.377106,0.999505,0.0374818,0.934666,0.545439,0.845555,0.916204,0.848516,0.406214,0.716916,0.533907,0.327903,0.548542,0.859115,0.0836856,0.116141,0.61615,0.630228,0.802656,0.445589,0.698898,0.224301,0.872595,0.206126,0.678417,0.439667,0.514979,0.7116,0.97782,0.497152,0.185714,0.0492393,0.00771689,0.288903,0.918671,0.844102,0.177908,0.173195,0.367752,0.699526,0.834004,0.562882,0.426217,0.567332,0.341719,0.975552,0.238914,0.24386,0.119275,0.528177,0.811369,0.632356,0.384687,0.240514,0.574599,0.72271,0.359844,0.249605,0.070365,0.854344,0.0366414,0.154135,0.999411,0.537619,0.775221,0.512896,0.612166,0.346248,0.542615,0.497554,0.467166,0.321356,0.862019,0.153536,0.350196,0.337336,0.0272618,0.0946711,0.0222615,0.464949,0.592926,0.507171,0.200581,0.102817,0.234095,0.45481,0.143494,0.451065,0.463,0.0537408,0.311546,0.397579,0.60842,0.0388218,0.845713,0.69678,0.727942,0.201893,0.238719,0.787381,0.372652,0.309431,0.0169377,0.020986,0.245274,0.475178,0.832219,0.267518,0.291535,0.780631,0.980962,0.612681,0.792984,0.975743,0.998814,0.91126,0.518769,0.963003,0.702767,0.552058,0.205752,0.660339,0.631444,0.357557,0.442463,0.145963,0.716659,0.625394,0.503427,0.0920189,0.552663,0.338066,0.119427,0.668287,0.1302,0.977877,0.08709,0.244478,0.54488,0.224297,0.322353,0.664493,0.650365,0.212703,0.869972,0.389205,0.776384,0.855541,0.976211,0.240146,0.211072,0.315006,0.180034,0.421405,0.0123241,0.556737,0.0365714,0.012054,0.592832,0.176649,0.838768,0.767344,0.809084,0.194903,0.922856,0.446724,0.858306,0.562332,0.60653,0.856721,0.361005,0.955944,0.924342,0.271188,0.000761032,0.415934,0.507211,0.290756,0.698575,0.214357,0.986757,0.131723,0.888889,0.287783,0.443037,0.28654,0.661393,0.422778,0.967838,0.00400871,0.0125895,0.397453,0.7949,0.548293,0.803978,0.0613988,0.447202,0.125369,0.79659,0.474422,0.104708,0.112122,0.203001,0.640424,0.386367,0.281701,0.750335,0.156341,0.477613,0.520197,|0.253142,0.4297,0.296718,0.965732,0.297568,0.10724,0.980928,0.761943,0.767923,0.348943,0.445033,0.472051,0.334522,0.80632,0.843251,0.901006,0.611958,0.18606,0.659663,0.867076,0.0284949,0.583444,0.919314,0.582809,0.779539,0.501094,0.230643,0.311102,0.873528,0.584902,0.282681,0.615789,0.931994,0.473936,0.205925,0.933126,0.545224,0.971158,0.854922,0.661787,0.176943,0.933735,0.19255,0.00194246,0.639258,0.296554,0.513994,0.182007,0.421501,0.24989,0.0477673,0.953525,0.650523,0.233775,0.392217,0.272275,0.438634,0.18068,0.918686,0.0612131,0.164117,0.61428,0.614314,0.337751,0.572696,0.0424571,0.439616,0.604943,0.987539,0.903887,0.8559,0.129736,0.348985,0.0310336,0.252609,0.316,0.810879,0.930182,0.230133,0.0540342,0.103569,0.687834,0.415298,0.165521,0.821032,0.63811,0.920926,0.857167,0.959755,0.844495,0.507466,0.651276,0.869712,0.477404,0.86316,0.391113,0.54178,0.998632,0.249555,0.902529,0.0967686,0.887515,0.172752,0.557577,0.444055,0.693437,0.593429,0.151285,0.303934,0.239253,0.763457,0.332479,0.59341,0.833061,0.128464,0.602816,0.925136,0.875971,0.0956247,0.436049,0.248529,0.43011,0.822151,0.951516,0.0412216,0.190684,0.996678,0.540708,0.510622,0.889622,0.576754,0.316821,0.529723,0.771351,0.103009,0.468922,0.286548,0.210274,0.886531,0.954083,0.00921732,0.644432,0.448429,0.499734,0.211095,0.345287,0.687639,0.0370831,0.74596,0.314823,0.968722,0.89787,0.896358,0.0764755,0.556476,0.621973,0.590687,0.204835,0.283163,0.82082,0.237301,0.606933,0.00514913,0.594984,0.885189,0.582465,0.769102,0.305973,0.190994,0.275986,0.382003,0.916569,0.705342,0.540421,0.106433,0.627734,0.191158,0.812176,0.876988,0.223847,0.165077,0.00580567,0.916466,0.714942,0.722669,0.270482,0.434142,0.47491,0.316756,0.788901,0.420679,0.114318,0.202873,0.908122,0.454225,0.889959,0.589476,0.773496,0.775054,0.440184,0.108363,0.373663,0.0674965,0.412303,0.886222,0.993582,0.528463,0.947708,0.754696,0.185782,0.508857,0.910301,0.882363,0.411846,0.971927,0.797023,0.109053,0.0860388,0.836355,0.896643,0.50813,0.457112,0.611588,0.663123,0.594851,0.149596,0.340169,0.729715,0.984463,0.243164,0.731105,0.436817,0.783388,0.948693,0.530867,0.306099,0.575252,0.979797,0.733054,0.724514,0.740735,0.378535,0.73341,0.0223725,0.859943,0.554948,0.499721,0.582991,0.833413,0.950724,0.95496,0.0939545,0.413297,0.541242,0.555843,0.0384441,0.634632,0.878158,0.474837,0.0204133,0.917141,0.147708,0.831004,0.702516,0.393096,0.995811,0.475088,0.74185,0.672894,0.395611,0.294942,0.0418419,0.966151,0.268185,0.481448,0.102965,0.80544,0.827988,0.848064,0.608761,0.338105,0.805412,0.888525,0.242136,0.50014,0.811013,0.601487,0.97802,0.687543,0.840414,0.243503,0.949155,0.788754,0.847917,0.7471,0.892081,0.938619,0.337755,0.765535,0.436473,0.779713,0.958172,0.523971,0.347465,0.370843,0.144427,0.4652,0.80802,0.653425,0.794529,0.795238,0.78521,0.0235633,0.126028,0.799356,0.807788,0.241734,0.309267,0.421757,0.817925,0.650939,0.175758,0.365796,0.00224656,0.785097,0.0254553,0.203391,0.369101,0.907724,0.0394216,0.341222,0.835208,0.351464,0.144992,0.145054,0.190189,0.854583,0.694112,0.282631,0.0797049,0.961489,0.511187,0.0688695,0.849708,0.846828,0.145634,0.861274,0.617073,0.787746,0.963726,0.172476,0.704928,0.718124,0.353168,0.218485,0.781888,0.665078,0.524472,0.698398,0.947006,0.4703,0.611476,0.920424,0.936447,0.47419,0.861044,0.712672,0.929326,0.751984,0.939711,0.0805967,0.476365,0.875311,0.708606,0.209862,0.203249,0.636787,0.482915,0.695196,0.605916,0.614011,0.279101,0.106466,0.509109,0.70303,0.913082,0.998927,0.932695,0.268967,0.565367,0.884706,0.3664,0.0913051,0.670422,0.043439,0.429585,0.570119,0.0745111,0.172151,0.679965,0.539918,0.968178,0.0785715,0.362529,0.0593554,0.171743,0.0256461,0.432212,0.667691,0.888889,0.587761,0.163383,0.590366,0.685534,0.0335906,0.17843,0.377129,0.513808,0.675731,0.954112,0.386955,0.24766,0.372411,0.341866,0.726715,0.0845932,0.127936,0.74731,0.616441,0.79866,0.551555,0.5135,0.933105,0.217463,0.951855,0.382467,0.0194974,0.0825959,0.634929,0.955324,0.84345,0.347003,0.0753982,0.609679,0.17019,0.765301,0.254211,0.159422,0.417284,0.794817,0.608031,0.65749,0.308058,0.717912,0.0898706,0.993744,0.914338,0.778084,0.304327,0.342396,0.234651,0.247336,0.554025,0.240468,0.0979423,0.930987,0.304566,0.783261,0.0940039,0.536663,0.117399,0.436403,0.874767,0.912895,0.272678,0.327638,0.534861,0.0513898,0.273274,0.603091,0.298283,0.147415,0.466677,0.598767,0.748255,0.985756,0.130102,0.478206,0.29082,0.504974,0.859289,0.807296,0.0702887,0.819304,0.504445,0.893494,0.827119,0.582943,0.313174,0.145093,0.990835,0.886741,0.482911,0.362594,0.130378,0.528288,0.588967,0.431133,0.956168,0.287956,0.244214,0.501673,0.727715,0.0738011,0.378168,0.301698,0.451229,0.217579,0.226794,0.229878,0.344845,0.400674,0.0974486,0.313504,0.701245,0.844132,0.213298,0.994232,0.242861,0.209804,0.914551,0.493323,0.50721,0.558663,0.176459,0.511396,0.946892,0.204833,0.685083,0.976,0.469494,0.887419,0.99212,0.434343,0.634077,0.968307,0.0651211,0.673058,0.230272,0.937585,0.415048,0.993799,0.22386,0.619337,0.815018,0.741207,0.579206,0.845496,0.437324,0.8086,0.11764,0.745935,0.232832,0.391218,0.433747,0.00168556,0.0601048,0.968843,0.597933,0.633077,0.920847,0.166546,0.322271,0.0323996,0.0106727,0.796231,0.114969,0.409591,0.414545,0.505441,0.255201,0.0593993,0.400217,0.382568,0.415851,0.733519,0.766809,0.200542,0.586237,0.208939,0.511299,0.0945526,0.0419102,0.908003,0.643122,0.904256,0.674693,0.21273,0.0481643,0.0656135,0.7952,0.916761,0.91936,0.96404,0.952293,0.931935,0.582028,0.732269,0.300092,0.82369,0.53265,0.0383411,0.384215,0.951531,0.363161,0.488143,0.924408,0.839153,0.325441,0.181758,0.862389,0.715953,0.890656,0.342853,0.442751,0.512079,0.0352048,0.366027,0.708986,0.834874,0.551847,0.439676,0.417944,0.174004,0.312857,0.552039,0.66438,0.833041,0.110126,0.563985,0.5658,0.264867,0.915396,0.367876,0.360539,0.371752,0.0132138,0.439908,0.524455,0.516052,0.826007,0.143803,0.735439,0.914112,0.726607,0.627929,0.484243,0.300185,0.347093,0.753113,0.185617,0.602504,0.640456,0.27047,0.980569,0.889165,0.0852814,0.229273,0.146184,0.653208,0.892444,0.106853,0.611887,0.47782,0.780413,0.530522,0.666809,0.269014,0.402375,0.444156,0.960544,0.965883,0.37919,0.812265,0.605003,0.0226269,0.356489,0.220305,0.388728,0.183751,0.80235,0.926069,0.92346,0.368341,0.71242,0.830826,0.373404,0.0748581,0.881323,0.261273,0.827546,0.176015,0.691677,0.225309,0.0303138,0.122389,0.350495,0.161206,0.698654,0.449263,0.163778,0.485763,0.119601,0.0203492,0.548925,0.254969,0.582653,0.191016,0.464188,0.778787,0.47185,0.126271,0.897893,0.309042,0.0417764,0.0385384,0.881459,0.105847,0.98527,0.0160807,0.391118,0.874515,0.843608,0.969531,0.211833,0.465853,0.751254,0.414586,0.0887746,0.781565,0.544429,0.392332,0.855266,0.56916,0.59454,0.921698,0.0442083,0.706427,0.728149,0.880677,0.384527,0.468772,0.601251,0.130197,0.293972,0.0335091,0.628867,0.0467283,0.782139,0.171991,0.902979,0.190261,0.186471,0.316813,0.92713,0.945615,0.152192,0.187034,0.379432,0.58581,0.520989,0.901171,0.548865,0.354083,0.085705,0.985848,0.541458,0.873094,0.12162,0.300487,0.582398,0.565825,0.909071,0.657278,0.909278,0.68802,0.160292,0.197384,0.0528129,0.326005,0.785582,0.604728,0.349967,0.880035,0.757311,0.685272,0.933286,0.292268,0.94155,0.883523,0.395869,0.751294,0.972498,0.903045,0.675526,0.844131,0.978593,0.470843,0.0844523,0.363607,0.584618,0.697563,0.0839365,0.867165,0.470914,0.720321,0.503147,0.11103,0.669474,0.313539,0.824652,0.994959,0.931668,0.263427,0.25785,0.451547,0.878872,0.976874,0.690181,0.350314,0.937034,0.12408,0.179435,0.643193,0.871809,0.895983,0.690395,0.193481,0.308511,0.913325,0.913227,0.38053,0.522617,0.063885,0.129809,0.0799034,0.391369,0.279968,0.355911,0.590816,0.97031,0.0154569,0.483669,0.231956,0.193062,0.921796,0.366971,0.886134,0.748006,0.372703,0.492532,0.842399,0.508963,0.951839,0.762594,0.857976,0.869842,0.651774,0.620968,0.209453,0.372452,0.563912,0.352926,0.210103,0.442184,0.103558,0.501926,0.640986,0.532783,0.504706,0.245735,0.705495,0.641386,0.668308,0.197676,0.917101,0.025571,0.638369,0.395368,0.777109,0.190437,0.459553,0.529491,0.886391,0.59324,0.472828,0.230813,0.198172,0.392198,0.984682,0.118926,0.510763,0.377449,0.221902,0.6125,0.136569,0.683192,0.826205,0.728861,0.979323,0.51027,0.397976,0.24567,0.448753,0.0701123,0.0121201,0.720666,0.791391,0.128087,0.454858,0.413107,0.527542,0.413051,0.86153,0.209533,0.965994,0.795831,0.965146,0.124067,0.910062,0.858856,0.101701,0.466075,0.258477,0.858499,0.0877595,0.500291,0.656577,0.882698,0.977149,0.837127,0.758621,0.764083,0.104758,0.716228,0.615794,0.979019,0.716637,0.150122,0.633974,0.565467,0.907827,0.489459,0.835564,0.566686,0.0532517,0.041779,0.139163,0.41931,0.026915,0.887045,0.213552,0.0983102,0.522228,0.281909,0.367377,0.234461,0.954318,0.713475,0.855205,0.317852,0.771997,0.960595,0.715157,0.423489,0.697246,0.940183,0.715699,0.582332,0.991955,0.317324,0.181721,0.0971117,0.09382,0.96633,0.671514,0.0504002,0.843147,0.316767,0.530059,0.354143,0.608583,0.00568581,0.329166,0.220571,0.718903,0.114213,0.827905,0.194836,0.778794,|0.58055,0.0896314,0.147161,0.673482,0.475099,0.631004,0.941039,0.00622785,0.490229,0.0531613,0.922091,0.54149,0.233795,0.75365,0.143777,0.280215,0.771875,0.370926,0.23135,0.231813,0.380576,0.515809,0.498074,0.336401,0.0320162,0.762851,0.775316,0.415828,0.509189,0.700364,0.374093,0.127076,0.46316,0.63512,0.504257,0.517223,0.581394,0.182969,0.59936,0.921529,0.460619,0.890383,0.11808,0.353108,0.465807,0.520713,0.743986,0.702008,0.103845,0.678069,0.547171,0.15416,0.767114,0.864348,0.283519,0.490142,0.998246,0.347629,0.936252,0.732656,0.246012,0.143245,0.600139,0.605001,0.9332,0.723185,0.352178,0.857852,0.671598,0.660934,0.548977,0.751753,0.103427,0.936451,0.299155,0.0276232,0.132031,0.0154198,0.412063,0.0653191,0.893286,0.6356,0.929213,0.211354,0.136074,0.540917,0.900206,0.633871,0.789274,0.510139,0.816499,0.184744,0.904873,0.460199,0.445382,0.825301,0.911259,0.868991,0.593913,0.384196,0.373013,0.100362,0.53667,0.110124,0.247608,0.473159,0.000485122,0.42785,0.310503,0.172793,0.420843,0.29218,0.935288,0.67577,0.0739626,0.406715,0.980391,0.656486,0.664771,0.135338,0.448908,0.690292,0.975529,0.176521,0.936491,0.939788,0.419418,0.351545,0.537034,0.413849,0.808885,0.535947,0.728735,0.988901,0.30193,0.166363,0.763201,0.664562,0.0471244,0.682575,0.771853,0.155762,0.94386,0.501749,0.372683,0.0353549,0.911622,0.336251,0.536889,0.236408,0.0324686,0.875147,0.338594,0.858195,0.230592,0.72546,0.480487,0.243298,0.678137,0.234127,0.943496,0.122912,0.0168125,0.452581,0.696777,0.350203,0.856226,0.572632,0.886878,0.906557,0.58098,0.708058,0.767708,0.373102,0.650068,0.0922846,0.874284,0.62375,0.961922,0.773287,0.0264399,0.412153,0.282229,0.882168,0.136163,0.842867,0.77197,0.736724,0.0670234,0.489249,0.825959,0.186405,0.97718,0.317466,0.674162,0.273636,0.603339,0.436197,0.0158347,0.796465,0.00103849,0.292338,0.245904,0.630532,0.110036,0.8867,0.717623,0.465874,0.743392,0.598213,0.149782,0.282902,0.260703,0.853929,0.204988,0.123543,0.674384,0.797978,0.690647,0.215394,0.030547,0.77621,0.11203,0.237885,0.737445,0.506177,0.57438,0.490368,0.387852,0.246188,0.198103,0.72715,0.293454,0.921373,0.144635,0.630779,0.399211,0.194639,0.032321,0.616102,0.635413,0.0479625,0.438631,0.503815,0.43847,0.844352,0.277623,0.899771,0.470629,0.729938,0.648418,0.125628,0.660168,0.901249,0.146467,0.59978,0.935491,0.941766,0.00718749,0.244936,0.911759,0.958317,0.866732,0.034935,0.500758,0.270823,0.0398006,0.30587,0.292424,0.221935,0.064546,0.946888,0.714471,0.912,0.999776,0.0229849,0.499889,0.684482,0.72738,0.094803,0.437363,0.220822,0.441471,0.110178,0.868878,0.952564,0.713044,0.64016,0.556704,0.535773,0.418186,0.681383,0.798493,0.196801,0.24949,0.847291,0.613936,0.714946,0.136037,0.309065,0.586977,0.873054,0.25439,0.0341994,0.619303,0.231909,0.090894,0.781308,0.566665,0.48456,0.524134,0.805931,0.449528,0.595001,0.973501,0.563503,0.988744,0.406696,0.783078,0.43715,0.552589,0.703429,0.526433,0.395565,0.764143,0.408078,0.257304,0.828723,0.214538,0.386872,0.380228,0.765516,0.281828,0.794506,0.994387,0.613579,0.830211,0.507873,0.353979,0.629415,0.0275317,0.215258,0.658448,0.312629,0.9533,0.953463,0.513695,0.131526,0.175584,0.556896,0.741084,0.513793,0.813571,0.427738,0.674877,0.349764,0.618295,0.529122,0.336208,0.0808501,0.39163,0.545319,0.661956,0.00769329,0.101301,0.102636,0.36064,0.924253,0.759999,0.450011,0.168586,0.633072,0.888446,0.480656,0.69138,0.477576,0.389205,0.400692,0.909528,0.954769,0.0981912,0.258362,0.684859,0.00468343,0.116917,0.363996,0.834317,0.100166,0.137597,0.138431,0.306396,0.686407,0.309577,0.166616,0.799203,0.212382,0.121712,0.174958,0.256396,0.140161,0.336394,0.78856,0.186891,0.305966,0.756584,0.422031,0.259057,0.501135,0.89214,0.804465,0.0376272,0.936094,0.393416,0.979395,0.190655,0.420909,0.742267,0.173855,0.409921,0.984423,0.925957,0.800445,0.270846,0.804597,0.142585,0.566658,0.16111,0.485681,0.964332,0.311898,0.562407,0.438465,0.478595,0.585888,0.340738,0.476244,0.947042,0.372423,0.0787878,0.326402,0.656502,0.131904,0.323955,0.273455,0.111241,0.52082,0.974964,0.270347,0.379807,0.389606,0.403948,0.0493053,0.845153,0.243573,0.526087,0.38659,0.684833,0.595283,0.00979972,0.904898,0.247781,0.433113,0.903344,0.738156,0.361456,0.31149,0.769215,0.461997,0.485654,0.0947366,0.517071,0.44876,0.65017,0.875211,0.149303,0.460867,0.0200813,0.742788,0.611045,0.653205,0.835093,0.219383,0.305452,0.155088,0.239565,0.491106,0.829694,0.615036,0.471885,0.273653,0.35018,0.764963,0.659903,0.3747,0.816085,0.0471252,0.983016,0.972618,0.789371,0.153323,0.212691,0.864742,0.489284,0.126987,0.282231,0.5861,0.462126,0.180954,0.85389,0.58809,0.600532,0.00657904,0.673389,0.674572,0.0153503,0.658201,0.543567,0.252239,0.430016,0.435897,0.616573,0.284753,0.368347,0.199439,0.382488,0.889221,0.624706,0.428377,0.311292,0.72317,0.850598,0.859601,0.744227,0.283948,0.107463,0.566081,0.779887,0.495668,0.252327,0.0450037,0.364459,0.490618,0.456448,0.565583,0.14842,0.891043,0.608516,0.198818,0.0885634,0.718832,0.767727,0.652536,0.987235,0.297737,0.902593,0.14886,0.356066,0.681353,0.269432,0.137255,0.802551,0.180192,0.897198,0.273501,0.850638,0.747809,0.271477,0.0622392,0.521717,0.180736,0.599829,0.562643,0.457346,0.478156,0.867037,0.108241,0.818222,0.165522,0.747725,0.435202,0.788974,0.242316,0.327603,0.686934,0.323287,0.454843,0.640621,0.891426,0.554768,0.658818,0.443335,0.476629,0.983417,0.302489,0.564671,0.290535,0.166375,0.591763,0.990905,0.21264,0.0586303,0.734767,0.0210772,0.942733,0.0962489,0.23209,0.691207,0.658579,0.867519,0.70881,0.479376,0.745308,0.228728,0.570293,0.0378714,0.242493,0.654131,0.0328038,0.36623,0.948588,0.52613,0.634317,0.422249,0.271468,0.563101,0.826874,0.407397,0.420356,0.194677,0.252729,0.390985,0.350615,0.414483,0.463964,0.624834,0.668379,0.659806,0.355879,0.199761,0.753606,0.972866,0.565551,0.667877,0.417317,0.125453,0.099884,0.895136,0.336874,0.863555,0.610895,0.794848,0.834159,0.968735,0.597142,0.608571,0.578529,0.0449,0.346431,0.413825,0.0418007,0.823489,0.728086,0.0336633,0.656957,0.294448,0.33802,0.344881,0.16786,0.521216,0.618851,0.595257,0.290035,0.754023,0.657968,0.15054,0.114243,0.0638039,0.856087,0.517601,0.489131,0.872169,0.465564,0.0552768,0.181599,0.973657,0.755814,0.0833372,0.6869,0.710767,0.671717,0.549635,0.889433,0.590278,0.293854,0.315176,0.694879,0.315316,0.478318,0.358976,0.392333,0.376525,0.948634,0.594555,0.635123,0.684673,0.390086,0.44931,0.0854639,0.137234,0.63282,0.863943,0.481622,0.948122,0.200062,0.791693,0.0835526,0.942733,0.75751,0.120446,0.761441,0.45497,0.134416,0.121322,0.435266,0.718201,0.167863,0.591234,0.979641,0.575547,0.366733,0.835437,0.438221,0.882289,0.718699,0.965942,0.448873,0.800685,0.890242,0.657088,0.997307,0.0741578,0.769129,0.574833,0.440339,0.769892,0.404031,0.270293,0.808996,0.540442,0.132682,0.261005,0.417346,0.24349,0.624575,0.0905334,0.455362,0.355713,0.327112,0.495802,0.428381,0.131517,0.0556254,0.937084,0.0878816,0.76655,0.627562,0.257803,0.397086,0.10964,0.763302,0.952807,0.889264,0.170489,0.10081,0.558386,0.41627,0.304689,0.269915,0.303312,0.160976,0.955184,0.608711,0.198454,0.480874,0.468592,0.507502,0.081664,0.145207,0.782015,0.465467,0.0190948,0.709642,0.823678,0.59151,0.854673,0.158369,0.0301958,0.215099,0.709873,0.800844,0.942119,0.884532,0.962915,0.852605,0.845025,0.288684,0.427541,0.986783,0.543251,0.0398549,0.742684,0.0511243,0.780198,0.903191,0.789147,0.446399,0.332388,0.666516,0.611082,0.425056,0.317775,0.888335,0.160104,0.181015,0.631048,0.264445,0.277578,0.873837,0.136026,0.3832,0.722539,0.109265,0.481751,0.0381467,0.720665,0.501733,0.487328,0.374933,0.268269,0.583175,0.849151,0.939392,0.973316,0.237213,0.591479,0.844359,0.3938,0.879363,0.190537,0.249904,0.789325,0.047039,0.420626,0.389552,0.935472,0.903435,0.22744,0.882328,0.835981,0.884284,0.790457,0.310747,0.245695,0.657915,0.546211,0.804867,0.773759,0.831262,0.487713,0.34443,0.339746,0.00983942,0.840235,0.757769,0.279378,0.0651312,0.817591,0.500075,0.990456,0.294443,0.767772,0.135707,0.680034,0.0598878,0.945866,0.504398,0.7673,0.179083,0.124398,0.345133,0.431738,0.143095,0.514893,0.795482,0.194951,0.125268,0.634902,0.534252,0.231293,0.140682,0.758083,0.697162,0.395397,0.957919,0.199278,0.432217,0.331613,0.252104,0.321308,0.135765,0.425432,0.0452778,0.511509,0.646096,0.632084,0.883269,0.947957,0.349377,0.805835,0.939414,0.789229,0.0960417,0.67298,0.28899,0.822739,0.723797,0.466951,0.476306,0.320304,0.98848,0.759975,0.250417,0.69418,0.1845,0.0422466,0.851517,0.214894,0.0642238,0.765425,0.298793,0.387636,0.546061,0.664308,0.888271,0.0662366,0.530064,0.320131,0.830251,0.674228,0.909207,0.482456,0.548913,0.480449,0.324148,0.249553,0.392499,0.380135,0.541163,0.735321,0.82762,0.444201,0.402391,0.0215908,0.0857614,0.507044,0.24308,0.0104972,0.72267,0.975725,0.777866,0.412909,0.0781671,0.686628,0.750746,0.668797,0.572664,0.709905,0.80514,0.982279,0.46834,0.434116,0.476249,0.279038,0.378884,0.353216,0.179394,0.822983,0.823796,0.879566,0.679403,0.761781,0.900984,0.780351,0.0160148,0.779218,0.248671,0.907863,0.633075,0.276688,0.811294,|0.242408,0.181048,0.826982,0.616299,0.749918,0.306961,0.08539,0.0586537,0.534843,0.393489,0.778305,0.395635,0.801753,0.585153,0.176951,0.660143,0.698282,0.565451,0.275326,0.161558,0.118889,0.126756,0.0764956,0.461907,0.312072,0.176986,0.249501,0.373537,0.214131,0.720597,0.621238,0.238371,0.432326,0.355867,0.317947,0.662621,0.417002,0.915865,0.658377,0.634044,0.209933,0.591292,0.893673,0.376831,0.389435,0.62123,0.114824,0.93677,0.634866,0.0833008,0.562366,0.912119,0.254654,0.157838,0.817607,0.364408,0.570442,0.137969,0.496232,0.0729946,0.48617,0.860746,0.33975,0.841439,0.00730443,0.808115,0.224289,0.465319,0.243486,0.321441,0.907429,0.689529,0.476849,0.990547,0.984021,0.473024,0.488545,0.999507,0.65355,0.725575,0.120981,0.877485,0.872027,0.227843,0.899047,0.755733,0.279044,0.977812,0.730617,0.850532,0.600169,0.961247,0.155329,0.321975,0.430315,0.22478,0.677033,0.94282,0.185976,0.991656,0.494036,0.808641,0.325504,0.307874,0.56516,0.338058,0.161922,0.0895125,0.534055,0.637808,0.669326,0.854594,0.0196669,0.522331,0.496412,0.892281,0.79036,0.290903,0.639359,0.998113,0.410065,0.492395,0.55334,0.533327,0.519553,0.389404,0.83553,0.599144,0.329506,0.324452,0.815515,0.221627,0.897948,0.474976,0.385998,0.930623,0.493177,0.431803,0.166587,0.317492,0.322055,0.980001,0.822539,0.454152,0.170975,0.878999,0.0354651,0.595357,0.0280409,0.179429,0.0151123,0.704265,0.43804,0.47294,0.0226918,0.936014,0.362507,0.889831,0.830036,0.186147,0.560623,0.918566,0.0332151,0.0966823,0.666481,0.51409,0.0748007,0.279842,0.81318,0.623061,0.826735,0.0570461,0.343241,0.792887,0.169258,0.286087,0.216172,0.875077,0.688358,0.257624,0.825664,0.205696,0.0997269,0.16839,0.0224936,0.387409,0.157672,0.650792,0.447756,0.479338,0.974147,0.0297444,0.720518,0.466316,0.844718,0.97343,0.937538,0.320024,0.95718,0.390842,0.596012,0.460375,0.966886,0.448888,0.713386,0.365347,0.990195,0.76462,0.0214382,0.842504,0.158313,0.456409,0.930398,0.452946,0.357113,0.607965,0.860478,0.804722,0.903808,0.761053,0.400689,0.686111,0.980089,0.875477,0.0911298,0.959365,0.051462,0.894082,0.197673,0.229653,0.57359,0.950154,0.038157,0.265561,0.749677,0.723863,0.0122889,0.944619,0.641263,0.0242463,0.789203,0.136563,0.141367,0.960506,0.69313,0.811801,0.777576,0.808774,0.627228,0.222545,0.470838,0.407573,0.072392,0.373487,0.635235,0.322579,0.190926,0.394182,0.573221,0.312753,0.932949,0.907559,0.171284,0.90001,0.10944,0.926128,0.359942,0.557255,0.766021,0.75841,0.51905,0.398336,0.0185745,0.454774,0.893965,0.572564,0.47539,0.799629,0.88278,0.583995,0.946838,0.192481,0.139891,0.266997,0.19123,0.0361756,0.366073,0.29685,0.105372,0.658017,0.714631,0.242935,0.508403,0.180671,0.285388,0.976415,0.0947724,0.78599,0.755021,0.620022,0.268663,0.86483,0.0208939,0.23099,0.303803,0.57717,0.608318,0.939811,0.351631,0.985083,0.782493,0.951341,0.108393,0.619224,0.382177,0.00670338,0.747381,0.486875,0.565383,0.591846,0.444911,0.400689,0.813543,0.940981,0.388737,0.0113176,0.495842,0.903325,0.814064,0.599079,0.306405,0.534012,0.221642,0.467696,0.341593,0.614073,0.986654,0.61737,0.493097,0.561565,0.0766028,0.353834,0.759934,0.971673,0.524373,0.2896,0.539246,0.957602,0.0148187,0.699157,0.59961,0.325329,0.636582,0.793417,0.942024,0.994014,0.680839,0.702122,0.299381,0.13433,0.674774,0.322347,0.699749,0.953322,0.344098,0.985271,0.982298,0.51953,0.484965,0.728336,0.296724,0.0236308,0.990244,0.159022,0.0188709,0.139451,0.28846,0.051662,0.123207,0.936947,0.42807,0.947794,0.782663,0.855897,0.0475391,0.619185,0.35632,0.421785,0.109507,0.499874,0.540668,0.015142,0.978281,0.263955,0.814845,0.0157196,0.426969,0.837696,0.513774,0.775148,0.12308,0.492343,0.803784,0.505548,0.767946,0.840016,0.0991867,0.820883,0.118975,0.449477,0.788198,0.0886706,0.688949,0.839004,0.691954,0.355592,0.176211,0.660837,0.724901,0.597968,0.603372,0.862894,0.779169,0.726085,0.674993,0.452673,0.0459856,0.044771,0.434215,0.504292,0.834671,0.658202,0.63757,0.281672,0.167966,0.591999,0.117227,0.635295,0.486973,0.567092,0.629964,0.340201,0.330524,0.293014,0.518285,0.433088,0.0735668,0.871981,0.562935,0.718774,0.876624,0.143793,0.487651,0.362332,0.626767,0.873657,0.0262467,0.0184875,0.444177,0.890874,0.758432,0.20624,0.166475,0.952054,0.803069,0.962656,0.615743,0.876601,0.28684,0.520582,0.844109,0.570081,0.822219,0.597688,0.951448,0.568891,0.18588,0.474436,0.0394044,0.141285,0.451421,0.840201,0.339597,0.000915945,0.160289,0.728512,0.978891,0.332209,0.491651,0.729391,0.634868,0.00327027,0.766463,0.735998,0.0244392,0.272822,0.632893,0.738658,0.109759,0.262023,0.306351,0.798337,0.742422,0.43994,0.952233,0.506367,0.88232,0.41364,0.443265,0.200594,0.272757,0.404259,0.867307,0.652031,0.133857,0.551407,0.654332,0.295521,0.711111,0.701854,0.268639,0.950847,0.208904,0.0702754,0.525874,0.695965,0.0133263,0.522745,0.640683,0.24209,0.188202,0.727206,0.0246115,0.67337,0.821153,0.347996,0.723959,0.393047,0.300526,0.165616,0.430114,0.415143,0.333996,0.565041,0.808332,0.459806,0.814672,0.0468543,0.292135,0.181417,0.651802,0.0378308,0.391715,0.0379354,0.205854,0.198018,0.332475,0.370647,0.692726,0.355717,0.900842,0.821385,0.551948,0.55817,0.684994,0.885307,0.52459,0.777546,0.981401,0.986654,0.248261,0.242888,0.5441,0.993451,0.762652,0.518067,0.824122,0.00302243,0.751347,0.188499,0.39773,0.721759,0.500187,0.666413,0.0408845,0.454681,0.0977963,0.312953,0.482028,0.521236,0.86403,0.559419,0.876185,0.451137,0.565077,0.93746,0.647336,0.160077,0.921216,0.813811,0.379758,0.650976,0.761489,0.650412,0.29022,0.201622,0.981701,0.410751,0.879847,0.161986,0.0978772,0.261286,0.597159,0.590898,0.134864,0.104308,0.450181,0.0719231,0.129381,0.445315,0.686756,0.345829,0.698827,0.441777,0.618764,0.984958,0.331151,0.241497,0.242542,0.673452,0.994621,0.422018,0.230943,0.119541,0.635309,0.286512,0.298189,0.00578398,0.159954,0.248218,0.767526,0.899072,0.777839,0.255419,0.497767,0.530691,0.125501,0.659708,0.803743,0.110423,0.781429,0.697847,0.379901,0.756394,0.26732,0.545346,0.802776,0.316719,0.455892,0.207126,0.704026,0.896271,0.0312948,0.583917,0.054151,0.868984,0.171031,0.881064,0.275509,0.377882,0.485459,0.908422,0.218036,0.211203,0.344886,0.401641,0.782952,0.911804,0.673715,0.231661,0.422058,0.312191,0.912291,0.756406,0.271968,0.44463,0.271752,0.121571,0.615407,0.987481,0.808862,0.189949,0.277356,0.242399,0.826013,0.361315,0.457878,0.557527,0.512373,0.142876,0.772865,0.256946,0.670774,0.467492,0.990781,0.634735,0.539052,0.00168318,0.961474,0.304887,0.930412,0.842348,0.712049,0.733085,0.0100577,0.301505,0.811719,0.968043,0.758987,0.170868,0.577835,0.878864,0.994412,0.182923,0.0633032,0.878769,0.651097,0.387818,0.23936,0.669385,0.853764,0.362634,0.340854,0.870017,0.0557575,0.0131475,0.68063,0.691174,0.978143,0.264324,0.828217,0.277431,0.405846,0.461784,0.794869,0.276258,0.677843,0.546217,0.0800931,0.162119,0.903147,0.568675,0.775175,0.230264,0.888316,0.0426235,0.915539,0.761696,0.645195,0.376104,0.780812,0.619446,0.348912,0.284599,0.378931,0.948076,0.862243,0.466078,0.932436,0.0265898,0.316096,0.325577,0.609199,0.354417,0.010285,0.536602,0.378819,0.858139,0.641716,0.16483,0.685924,0.235352,0.442635,0.972331,0.250214,0.144632,0.931628,0.654232,0.73489,0.653214,0.327615,0.192725,0.671621,0.813433,0.446402,0.0619217,0.636654,0.577017,0.989757,0.462894,0.181827,0.791656,0.782063,0.109116,0.572411,0.653629,0.98279,0.363386,0.331737,0.892252,0.716771,0.700232,0.172383,0.627039,0.133761,0.540461,0.872705,0.167064,0.36342,0.695378,0.73172,0.786562,0.245425,0.37702,0.749122,0.249467,0.442522,0.580193,0.506456,0.246874,0.122744,0.0331983,0.796524,0.862493,0.742346,0.976472,0.97543,0.993323,0.346954,0.356705,0.953046,0.447328,0.128935,0.204842,0.758402,0.680605,0.79358,0.440014,0.663544,0.224709,0.786913,0.367554,0.592215,0.480903,0.604856,0.427423,0.46817,0.303677,0.328343,0.571354,0.321254,0.51764,0.923168,0.35082,0.315714,0.285737,0.664898,0.163781,0.702651,0.824762,0.00498617,0.532747,0.512166,0.396942,0.109387,0.58422,0.609542,0.798312,0.41471,0.544475,0.889486,0.851047,0.945166,0.000837445,0.612414,0.860012,0.422875,0.0055902,0.0169326,0.430937,0.921681,0.733809,0.565329,0.745889,0.555276,0.2822,0.418967,0.624032,0.807732,0.234076,0.883232,0.634153,0.507913,0.75263,0.184628,0.971781,0.87255,0.67039,0.789091,0.87636,0.966694,0.875071,0.883199,0.722442,0.548455,0.349221,0.777523,0.74749,0.244661,0.47441,0.0551031,0.846438,0.926527,0.0503554,0.409591,0.450978,0.00831109,0.711734,0.460424,0.412176,0.00157022,0.693096,0.528673,0.600732,0.545452,0.781491,0.896887,0.65976,0.292473,0.752283,0.27339,0.0768312,0.798272,0.715869,0.239771,0.803425,0.315933,0.659744,0.120089,0.0725201,0.862031,0.0385407,0.407073,0.604928,0.748095,0.468573,0.402473,0.805927,0.63392,0.0609307,0.173566,0.872885,0.785405,0.0330738,0.306434,0.0879626,0.251506,0.623892,0.931123,0.0865396,0.435486,0.329526,0.636095,0.510167,0.967652,0.626852,0.0903816,0.193372,0.0911667,0.948045,0.0025394,0.906418,0.897066,0.944622,0.305326,0.315802,0.832749,0.287306,0.366008,0.758147,0.19784,0.170592,0.98117,0.899807,0.791839,0.5025,0.022674,0.170636,0.965432,0.0111443,|0.279448,0.374026,0.737921,0.120998,0.600726,0.905748,0.380823,0.0434206,0.373744,0.513785,0.86391,0.0158547,0.554982,0.119249,0.00409651,0.041414,0.25747,0.746051,0.3947,0.559198,0.564939,0.879263,0.455905,0.859551,0.960843,0.655128,0.147591,0.148951,0.616249,0.334621,0.549388,0.190953,0.239651,0.819145,0.275372,0.213458,0.566376,0.35054,0.855781,0.551337,0.259607,0.338476,0.333575,0.471584,0.387166,0.669325,0.801954,0.338564,0.682951,0.551664,0.748612,0.572857,0.285021,0.396592,0.912736,0.427017,0.885256,0.129774,0.874021,0.0533413,0.168286,0.0276688,0.998472,0.804391,0.683207,0.386233,0.172662,0.548445,0.341308,0.628735,0.886587,0.469571,0.347986,0.0780658,0.279662,0.89117,0.77861,0.654195,0.751554,0.861689,0.531492,0.180954,0.431268,0.671622,0.871605,0.327656,0.417172,0.7975,0.820379,0.435438,0.559275,0.664766,0.24932,0.681205,0.329788,0.868823,0.0474377,0.622409,0.73352,0.800365,0.730123,0.721954,0.836025,0.0561887,0.638837,0.893406,0.362778,0.891132,0.875895,0.975646,0.993418,0.384918,0.37447,0.491154,0.531252,0.878904,0.0812923,0.976549,0.770285,0.203241,0.431517,0.709318,0.500163,0.445814,0.968826,0.625703,0.312326,0.731171,0.494443,0.229602,0.415652,0.937156,0.101553,0.29821,0.182396,0.0694183,0.142097,0.189182,0.44356,0.162994,0.398284,0.800911,0.787756,0.738614,0.640777,0.710675,0.75746,0.163703,0.807036,0.574103,0.711833,0.171777,0.0155966,0.789264,0.190491,0.23985,0.964323,0.6539,0.446591,0.0981197,0.742495,0.251582,0.86799,0.509636,0.278824,0.105941,0.800983,0.0803576,0.00361902,0.143035,0.033235,0.27295,0.334332,0.401903,0.928808,0.15692,0.763342,0.357307,0.281878,0.0780861,0.60277,0.72868,0.443901,0.703127,0.568987,0.935981,0.910652,0.688388,0.0943915,0.358503,0.21647,0.171089,0.0628797,0.408462,0.436134,0.844224,0.280423,0.494171,0.604543,0.458353,0.306219,0.520124,0.462265,0.421489,0.0940454,0.609902,0.202928,0.796126,0.991967,0.170657,0.445397,0.243933,0.834448,0.793554,0.99163,0.381002,0.520754,0.831356,0.730202,0.589325,0.646512,0.667714,0.767975,0.669901,0.867009,0.0349019,0.656484,0.548012,0.353481,0.448611,0.766778,0.277251,0.90483,0.681539,0.310317,0.553176,0.156918,0.0743707,0.166711,0.870181,0.678981,0.104809,0.565579,0.522068,0.284602,0.481069,0.734439,0.476265,0.947785,0.278057,0.982709,0.731952,0.937015,0.615514,0.560286,0.22598,0.939518,0.179339,0.159996,0.840984,0.589235,0.0825321,0.988508,0.79064,0.0112541,0.530851,0.659441,0.898505,0.0772886,0.466677,0.354048,0.447369,0.99628,0.320782,0.080293,0.74708,0.301828,0.581493,0.547192,0.577486,0.701488,0.0871492,0.235846,0.870675,0.143978,0.802819,0.0196316,0.538619,0.94926,0.699653,0.918204,0.490716,0.24624,0.880925,0.671475,0.033444,0.819686,0.584401,0.143445,0.572682,0.48634,0.960388,0.143208,0.116003,0.162841,0.148581,0.973692,0.599212,0.546114,0.880859,0.378756,0.860921,0.0918972,0.559494,0.811231,0.376514,0.722187,0.42378,0.322449,0.0807604,0.0853679,0.527261,0.566822,0.569441,0.163108,0.840779,0.625846,0.362518,0.184881,0.304325,0.498248,0.721219,0.235979,0.457044,0.416939,0.245876,0.820967,0.19404,0.657611,0.205551,0.378506,0.477579,0.952513,0.595941,0.88307,0.337428,0.936053,0.572598,0.109205,0.685862,0.292707,0.301904,0.888768,0.512231,0.0275061,0.28975,0.164125,0.073354,0.805648,0.261957,0.520637,0.179103,0.770452,0.664037,0.289955,0.518688,0.578007,0.325978,0.0526175,0.429735,0.816812,0.606811,0.922962,0.230355,0.430232,0.604211,0.560863,0.512277,0.298067,0.842462,0.183264,0.77286,0.544391,0.352327,0.158606,0.0601428,0.197242,0.509807,0.372376,0.724259,0.257509,0.89289,0.471913,0.826311,0.887654,0.545537,0.229006,0.625238,0.85267,0.150021,0.0926889,0.0532779,0.0218332,0.0519072,0.727696,0.202479,0.549949,0.104227,0.928942,0.28289,0.165429,0.796939,0.609571,0.654761,0.641368,0.664745,0.48571,0.545781,0.193537,0.144596,0.745485,0.254864,0.00852603,0.27533,0.690598,0.57571,0.221613,0.147165,0.356381,0.598094,0.807198,0.00738466,0.923333,0.651136,0.850898,0.557464,0.427158,0.320387,0.589514,0.286463,0.309913,0.0926234,0.939875,0.949319,0.952273,0.341703,0.171562,0.794233,0.791332,0.667977,0.340987,0.370606,0.414686,0.569915,0.550457,0.554614,0.304931,0.894439,0.189804,0.3831,0.501833,0.339434,0.515685,0.427827,0.658165,0.443746,0.934666,0.380347,0.863098,0.828862,0.927544,0.62937,0.86051,0.0127919,0.352955,0.916039,0.366367,0.454731,0.70066,0.0205017,0.0730914,0.123527,0.493203,0.802486,0.737245,0.567387,0.682501,0.0404821,0.455923,0.918057,0.0290085,0.661757,0.670422,0.0797035,0.950197,0.749198,0.0146077,0.582908,0.203897,0.0769146,0.914613,0.391472,0.897767,0.913517,0.327777,0.600875,0.885036,0.569934,0.230969,0.0516204,0.452645,0.549946,0.442176,0.567539,0.0670232,0.230759,0.485383,0.861067,0.994301,0.0637439,0.239603,0.628846,0.563086,0.65934,0.92901,0.308616,0.0163258,0.0233581,0.868894,0.17991,0.245512,0.636897,0.60388,0.274806,0.886854,0.535141,0.0280688,0.806829,0.589908,0.0182858,0.0394472,0.948158,0.547189,0.57292,0.910066,0.773441,0.115011,0.827188,0.78804,0.839668,0.0424665,0.989205,0.800954,0.914177,0.317573,0.162816,0.834579,0.842434,0.40596,0.129212,0.379052,0.94378,0.923154,0.0597163,0.807107,0.49046,0.648894,0.845909,0.808628,0.226951,0.273296,0.666129,0.22872,0.459934,0.772662,0.20727,0.536311,0.349955,0.545062,0.274503,0.170774,0.69772,0.55332,0.732375,0.476238,0.577217,0.121521,0.117275,0.11969,0.375978,0.897949,0.250344,0.625348,0.30263,0.408745,0.253515,0.602133,0.0882285,0.726841,0.233523,0.688557,0.36328,0.305899,0.89625,0.7111,0.297077,0.0479538,0.902325,0.0157202,0.37886,0.436542,0.385005,0.582579,0.0717247,0.328096,0.212907,0.929666,0.593125,0.947622,0.346751,0.937255,0.010636,0.0446795,0.963796,0.00743204,0.73708,0.402265,0.689946,0.915455,0.867267,0.00237215,0.534741,0.356764,0.0225326,0.499812,0.603765,0.284546,0.320027,0.98499,0.676326,0.836586,0.980839,0.981516,0.418157,0.653365,0.189409,0.782526,0.146918,0.733993,0.838469,0.592656,0.812764,0.608862,0.173273,0.67242,0.427573,0.116718,0.630622,0.263425,0.0959534,0.645652,0.0308278,0.767584,0.0714601,0.449964,0.574993,0.864163,0.72218,0.481725,0.177701,0.579648,0.371758,0.407453,0.142544,0.00305587,0.73209,0.962509,0.505544,0.939354,0.565768,0.27239,0.456978,0.345271,0.891647,0.781354,0.117896,0.321153,0.911155,0.907856,0.116484,0.369077,0.685373,0.311535,0.210019,0.406182,0.691054,0.555605,0.130417,0.752384,0.727974,0.326433,0.23022,0.897326,0.950078,0.692345,0.559386,0.735138,0.550127,0.221616,0.290031,0.205185,0.540026,0.790901,0.117385,0.0861579,0.359208,0.799771,0.604957,0.334083,0.10031,0.504642,0.714136,0.954395,0.673017,0.409188,0.099716,0.337433,0.128225,0.00539356,0.706264,0.604619,0.194019,0.583543,0.974417,0.741225,0.187874,0.0728337,0.137662,0.669509,0.516115,0.524654,0.847738,0.522556,0.6116,0.603672,0.935457,0.910731,0.127187,0.620652,0.848264,0.606838,0.483898,0.807721,0.145257,0.152549,0.642845,0.76556,0.744023,0.452673,0.785077,0.459147,0.337119,0.206218,0.450277,0.181252,0.005885,0.0240551,0.94708,0.898226,0.481041,0.940405,0.401629,0.809909,0.333771,0.638794,0.660306,0.360916,0.496205,0.165716,0.058892,0.821075,0.36692,0.562948,0.824799,0.429518,0.736222,0.0156329,0.548395,0.809782,0.831019,0.597495,0.74751,0.085447,0.303363,0.78615,0.268336,0.161201,0.066404,0.0753604,0.721995,0.261274,0.355169,0.895887,0.289931,0.414463,0.45911,0.576176,0.0876429,0.609792,0.112118,0.387693,0.223975,0.692479,0.307144,0.327446,0.194275,0.722462,0.0121652,0.145039,0.191544,0.16477,0.592203,0.161219,0.405701,0.171709,0.345494,0.247105,0.841814,0.302242,0.566913,0.889264,0.924521,0.0935072,0.717099,0.0859411,0.521971,0.496716,0.438681,0.999225,0.425745,0.368244,0.550057,0.753092,0.0761188,0.864325,0.755235,0.752413,0.188705,0.357692,0.740546,0.607705,0.644054,0.902494,0.040171,0.896913,0.741876,0.840331,0.543742,0.862002,0.623092,0.885599,0.0432568,0.891579,0.765522,0.472331,0.785185,0.0435422,0.465005,0.0312253,0.570866,0.246036,0.584234,0.961375,0.693927,0.687278,0.257903,0.36786,0.937142,0.842047,0.890357,0.108365,0.369541,0.746827,0.569072,0.60394,0.668431,0.584644,0.256651,0.771735,0.436543,0.558946,0.862871,0.426512,0.314401,0.20868,0.92551,0.300654,0.991363,0.719293,0.533268,0.91908,0.279616,0.684141,0.398348,0.257612,0.8352,0.116722,0.0490344,0.126765,0.887791,0.93142,0.768315,0.730405,0.176426,0.487977,0.244516,0.0434321,0.324461,0.279657,0.202173,0.0807018,0.968555,0.0654569,0.919256,0.106334,0.1542,0.922688,0.910029,0.375658,0.11763,0.381036,0.939361,0.0378974,0.126126,0.196081,0.495778,0.958154,0.935787,0.870726,0.507899,0.959343,0.267363,0.135458,0.0932646,0.640115,0.976662,0.896104,0.843477,0.991751,0.194254,0.512996,0.42786,0.753628,0.943787,0.283475,0.653658,0.116034,0.337911,0.199391,0.857369,0.525499,0.681345,0.550282,0.184258,0.85613,0.816349,0.5404,0.338157,0.219839,0.109947,0.584659,0.340303,0.347194,0.416477,0.429184,0.0255288,0.475705,0.707011,0.54,0.043317,0.967727,0.607652,0.965059,0.1157,0.811569,0.227083,0.282472,0.00243366,0.82102,0.780398,0.101135,0.821184,0.622678,0.870393,0.00645882,0.0745202,0.641296,0.471182,0.98678,0.415768,|0.0589076,0.827835,0.0115658,0.899062,0.0619097,0.618659,0.953127,0.688492,0.0746087,0.882691,0.879843,0.783949,0.36802,0.963842,0.05841,0.944303,0.172211,0.0688321,0.0106218,0.0102185,0.0476404,0.704483,0.820402,0.0421668,0.487817,0.815834,0.295363,0.83202,0.131548,0.736989,0.624894,0.448843,0.225026,0.626494,0.81663,0.451311,0.920618,0.54284,0.661215,0.494128,0.624637,0.0442354,0.847654,0.108849,0.346823,0.129185,0.773206,0.44293,0.975745,0.143095,0.587466,0.502482,0.964243,0.319681,0.224833,0.6391,0.128901,0.604645,0.192802,0.393373,0.0371341,0.190337,0.898946,0.921483,0.353357,0.304135,0.990247,0.615787,0.679202,0.529743,0.0987152,0.165723,0.560833,0.216424,0.218901,0.351744,0.317076,0.66304,0.214192,0.80104,0.983833,0.660892,0.581177,0.310223,0.404853,0.0881464,0.898633,0.133243,0.143988,0.824648,0.87523,0.870118,0.388232,0.0877501,0.0452965,0.928127,0.236713,0.0811333,0.578825,0.976557,0.735229,0.206872,0.380322,0.107852,0.448321,0.757479,0.800199,0.214284,0.656644,0.235054,0.225498,0.46073,0.855233,0.733818,0.466089,0.985651,0.454289,0.573097,0.718442,0.951794,0.509391,0.488053,0.816915,0.750432,0.00599831,0.980201,0.596283,0.899916,0.655458,0.544514,0.329714,0.277247,0.616862,0.366602,0.950953,0.271406,0.444944,0.337732,0.818813,0.58779,0.608544,0.23351,0.395767,0.840729,0.456432,0.370849,0.183931,0.118145,0.00154424,0.850488,0.746186,0.673423,0.890181,0.108071,0.20849,0.227274,0.0108609,0.244136,0.584863,0.192118,0.234002,0.00248188,0.135793,0.078571,0.807015,0.2288,0.0946978,0.896514,0.216818,0.123307,0.760375,0.819516,0.981203,0.564731,0.813196,0.602579,0.480877,0.437082,0.690531,0.160521,0.507776,0.234123,0.13225,0.251252,0.165342,0.070061,0.060366,0.566113,0.959061,0.243411,0.0743632,0.0638285,0.0735465,0.962487,0.0308712,0.565418,0.112901,0.924722,0.792632,0.290857,0.228037,0.0613195,0.587254,0.0452399,0.0539746,0.291375,0.532446,0.255302,0.408789,0.681844,0.132792,0.127933,0.925559,0.0814888,0.747981,0.658561,0.00159246,0.826094,0.411929,0.062889,0.194977,0.0994674,0.264456,0.112383,0.675072,0.178882,0.0573803,0.133321,0.130322,0.604704,0.744792,0.197426,0.843985,0.99437,0.174124,0.0414906,0.10192,0.242293,0.303457,0.253099,0.64697,0.108235,0.182838,0.589405,0.350385,0.526994,0.987949,0.595296,0.540581,0.31033,0.608281,0.236075,0.543556,0.49093,0.844117,0.222081,0.690369,0.814105,0.258105,0.1197,0.791747,0.760892,0.242328,0.142228,0.992562,0.906255,0.387009,0.247155,0.4083,0.256431,0.585289,0.817981,0.322678,0.574508,0.207554,0.911561,0.144847,0.0383633,0.623069,0.760424,0.94903,0.37446,0.28736,0.269523,0.978117,0.547258,0.602973,0.778943,0.393754,0.493581,0.377894,0.0995608,0.25436,0.257086,0.955775,0.253694,0.450024,0.382622,0.150379,0.355795,0.249968,0.683873,0.685444,0.639071,0.991573,0.951304,0.201906,0.230961,0.230949,0.262397,0.399548,0.683608,0.232092,0.467387,0.064649,0.702965,0.461956,0.44602,0.496574,0.76627,0.0395089,0.838869,0.340132,0.105169,0.164875,0.342847,0.184514,0.126341,0.744134,0.431278,0.248452,0.683485,0.10358,0.918944,0.00165546,0.6044,0.454143,0.260295,0.979225,0.523617,0.740205,0.586399,0.170812,0.0373645,0.786844,0.408194,0.291562,0.899294,0.429831,0.861621,0.988347,0.385537,0.894833,0.936598,0.163373,0.948829,0.12183,0.497512,0.214305,0.15157,0.127632,0.351675,0.366717,0.0524293,0.9713,0.366804,0.848979,0.496649,0.119938,0.500027,0.935376,0.462093,0.183525,0.136377,0.735051,0.841283,0.353758,0.311819,0.163885,0.766909,0.818655,0.391175,0.58285,0.426471,0.747742,0.60713,0.302559,0.417985,0.936099,0.821328,0.0198197,0.350546,0.0905471,0.306596,0.764714,0.211155,0.778242,0.500422,0.369098,0.573452,0.806803,0.0312515,0.94403,0.224366,0.706484,0.397474,0.0721055,0.239919,0.581172,0.565631,0.936944,0.380805,0.189349,0.0506331,0.446424,0.748154,0.183802,0.754358,0.293632,0.202142,0.990439,0.665055,0.739787,0.920658,0.117761,0.303291,0.890821,0.335232,0.757285,0.216877,0.361334,0.372217,0.595707,0.305252,0.476792,0.226186,0.2369,0.0449005,0.183742,0.259487,0.350057,0.91835,0.753296,0.349281,0.433368,0.299716,0.459286,0.519505,0.458302,0.301748,4.78625e-05,0.0311807,0.726592,0.820009,0.399094,0.930917,0.290736,0.47791,0.813784,0.872378,0.908767,0.763997,0.54359,0.616073,0.317617,0.839072,0.187135,0.439884,0.0926734,0.241286,0.666897,0.903162,0.220538,0.387694,0.276268,0.453461,0.017951,0.587983,0.290715,0.594012,0.218511,0.452725,0.408635,0.0293273,0.868936,0.686887,0.283807,0.621064,0.325152,0.66808,0.706018,0.646555,0.0572608,0.274886,0.320998,0.835547,0.858909,0.400255,0.314689,0.481479,0.236239,0.399693,0.379504,0.116072,0.805494,0.773181,0.382555,0.0261184,0.323093,0.435404,0.537923,0.706583,0.222451,0.884176,0.919227,0.101438,0.616583,0.71396,0.0953922,0.828171,0.0491822,0.885051,0.153072,0.32487,0.40983,0.485649,0.576033,0.61542,0.776814,0.833382,0.375641,0.286974,0.481071,0.617296,0.83584,0.433299,0.281807,0.773622,0.646684,0.951482,0.220165,0.71429,0.410787,0.463557,0.817055,0.647924,0.256024,0.0925577,0.369646,0.0267343,0.207238,0.803337,0.176024,0.117079,0.994293,0.976463,0.200444,0.0936854,0.562469,0.0674859,0.204643,0.682185,0.175718,0.156012,0.252752,0.035916,0.121759,0.271581,0.0620722,0.940179,0.166263,0.169501,0.0548984,0.952876,0.912218,0.19591,0.849236,0.268594,0.898356,0.280426,0.47094,0.783519,0.0807298,0.627268,0.949833,0.231478,0.968844,0.325521,0.235982,0.625227,0.0607459,0.0405579,0.393121,0.804009,0.325138,0.567801,0.644991,0.312702,0.491071,0.809806,0.627117,0.666249,0.908085,0.259739,0.505971,0.244471,0.463553,0.675273,0.52419,0.876006,0.337785,0.432942,0.660093,0.200445,0.4893,0.786119,0.000356674,0.941622,0.302326,0.704541,0.262819,0.169035,0.0111732,0.668691,0.814828,0.0202246,0.0727873,0.250473,0.502603,0.0616713,0.951009,0.382188,0.484683,0.395549,0.590032,0.19825,0.970058,0.247963,0.886744,0.249933,0.5711,0.85784,0.331012,0.382946,0.285863,0.333499,0.358788,0.343123,0.781847,0.444864,0.423401,0.235535,0.194048,0.814087,0.847098,0.35018,0.876928,0.809489,0.525565,0.84759,0.0851064,0.440569,0.679735,0.981773,0.63481,0.310635,0.802295,0.065882,0.664271,0.237992,0.64531,0.622863,0.0976629,0.343416,0.332718,0.372068,0.321779,0.480993,0.0251309,0.260352,0.157892,0.046011,0.524844,0.158993,0.663119,0.532049,0.384795,0.534952,0.345631,0.636728,0.325843,0.131199,0.504532,0.931046,0.116938,0.844828,0.839835,0.974762,0.551009,0.408575,0.0318714,0.871269,0.238549,0.581607,0.0351582,0.0830055,0.942461,0.573815,0.767751,0.52899,0.467621,0.754286,0.962563,0.58705,0.162163,0.554209,0.0400534,0.910105,0.535826,0.222746,0.562766,0.877174,0.593867,0.926399,0.369961,0.133247,0.127953,0.382808,0.92461,0.0386246,0.303763,0.690039,0.841732,0.617826,0.448244,0.338669,0.0644643,0.305402,0.912496,0.775801,0.944492,0.302641,0.769122,0.274698,0.772182,0.583442,0.33655,0.957182,0.0349478,0.271838,0.0649073,0.522822,0.446704,0.898676,0.857331,0.270793,0.84443,0.0308945,0.137524,0.627131,0.401277,0.102393,0.751973,0.0732985,0.0469757,0.292385,0.921119,0.103799,0.960455,0.111297,0.804247,0.364887,0.480029,0.731159,0.474977,0.617498,0.567427,0.490451,0.208878,0.380373,0.408428,0.167687,0.40327,0.049972,0.162941,0.393299,0.437241,0.950773,0.524224,0.819672,0.273997,0.316744,0.195828,0.292449,0.879929,0.376989,0.235991,0.405394,0.254477,0.0139551,0.281865,0.35893,0.0847401,0.150613,0.129093,0.125622,0.709132,0.770122,0.981902,0.415745,0.564218,0.184133,0.479544,0.515636,0.741782,0.91288,0.914213,0.724656,0.369608,0.00407189,0.610997,0.208044,0.948235,0.918981,0.672231,0.0362951,0.492361,0.538033,0.514685,0.654624,0.475016,0.130516,0.0152645,0.358827,0.564158,0.780332,0.0875247,0.447727,0.799523,0.185395,0.361637,0.127189,0.883965,0.113323,0.166543,0.141092,0.932346,0.044125,0.517554,0.786585,0.0605122,0.119827,0.222152,0.373275,0.158432,0.622079,0.80119,0.369611,0.776382,0.838406,0.57053,0.398812,0.908052,0.901375,0.965739,0.586537,0.0337123,0.880956,0.787394,0.770021,0.621335,0.158629,0.58815,0.273177,0.470091,0.187476,0.218907,0.0736055,0.914908,0.836963,0.175318,0.0125076,0.886729,0.0190188,0.758908,0.170372,0.0345305,0.798403,0.679625,0.968201,0.150068,0.170558,0.942203,0.217444,0.459621,0.749688,0.807034,0.928263,0.932036,0.382794,0.533921,0.815742,0.312154,0.211961,0.273631,0.270073,0.71286,0.603716,0.647968,0.302775,0.919751,0.99673,0.966696,0.427729,0.754135,0.0402963,0.272745,0.538614,0.507256,0.719797,0.303874,0.918211,0.0531383,0.915548,0.835985,0.340988,0.952665,0.761931,0.521446,0.166932,0.0386695,0.18557,0.539524,0.0865783,0.238668,0.42862,0.962619,0.788358,0.406751,0.254502,0.0605078,0.894083,0.653835,0.244435,0.474037,0.207445,0.788341,0.847605,0.727906,0.785117,0.0616422,0.773274,0.0406142,0.122515,0.420801,0.413116,0.232216,0.0229469,0.826075,0.560824,0.0332144,0.282227,0.421168,0.916045,0.0675977,0.505765,0.535557,0.449682,0.122273,0.188147,0.00102085,0.61541,0.605968,0.921961,0.288774,0.638572,0.406431,0.734647,0.614188,0.449027,0.42784,0.654035,0.964739,0.107027,0.817228,0.230018,0.195927,0.507232,0.674843,0.293494,0.813485,0.0974016,0.228953,0.802237,0.274195,0.768647,0.197165,0.557084,0.489463,0.878515,|0.461646,0.165547,0.060378,0.427255,0.1855,0.21746,0.179719,0.445536,0.495735,0.917065,0.949187,0.514948,0.0569198,0.949666,0.606902,0.514015,0.355399,0.51112,0.649838,0.110554,0.582475,0.542371,0.211625,0.767311,0.231106,0.828973,0.685527,0.832022,0.740247,0.266545,0.417372,0.0534875,0.0425418,0.54798,0.977574,0.248126,0.97674,0.332528,0.787596,0.63671,0.214667,0.299263,0.605223,0.608374,0.445803,0.232448,0.977914,0.520774,0.954372,0.734691,0.229197,0.00263363,0.135598,0.542666,0.891034,0.335208,0.703333,0.120702,0.492871,0.370502,0.901111,0.246184,0.476079,0.704721,0.39473,0.908581,0.976721,0.797517,0.961077,0.733701,0.537049,0.611967,0.781112,0.179209,0.0182942,0.524423,0.751697,0.42449,0.6044,0.539591,0.874179,0.325395,0.097392,0.47857,0.96048,0.979201,0.698124,0.697769,0.917356,0.397075,0.737563,0.460923,0.922476,0.650227,0.328725,0.919819,0.770965,0.0729538,0.825056,0.34737,0.651546,0.57442,0.578416,0.635851,0.410895,0.964436,0.411048,0.173492,0.923651,0.94071,0.303417,0.236324,0.77262,0.532261,0.772473,0.309177,0.383867,0.158542,0.129001,0.154689,0.861407,0.47983,0.148658,0.979992,0.942729,0.210062,0.320088,0.486328,0.508349,0.378355,0.835812,0.605833,0.792007,0.805026,0.693859,0.998772,0.0523806,0.805551,0.731182,0.733419,0.905635,0.100202,0.0908509,0.983733,0.314352,0.351782,0.762798,0.234935,0.790767,0.301783,0.251081,0.233564,0.956549,0.620517,0.355946,0.361571,0.34827,0.0373492,0.163123,0.0442795,0.43972,0.773942,0.625529,0.930619,0.925219,0.838592,0.288063,0.47364,0.102836,0.975188,0.638965,0.554523,0.314684,0.687881,0.154189,0.245591,0.612673,0.41806,0.147845,0.724719,0.171475,0.811071,0.338678,0.848824,0.470002,0.0120395,0.965034,0.252254,0.330995,0.433405,0.712497,0.168584,0.706401,0.92826,0.20001,0.352777,0.768072,0.48364,0.271111,0.00552809,0.169327,0.901333,0.505939,0.732381,0.750504,0.876457,0.689217,0.209416,0.474964,0.84289,0.175173,0.978509,0.00809062,0.153831,0.763017,0.658837,0.653743,0.144603,0.276089,0.952285,0.59857,0.313249,0.126118,0.224095,0.776164,0.879972,0.672697,0.357219,0.083974,0.236124,0.00389475,0.753993,0.869729,0.638832,0.585182,0.400881,0.247788,0.405863,0.802047,0.284416,0.054795,0.0868877,0.243117,0.327832,0.764811,0.957194,0.773836,0.669604,0.126534,0.366159,0.948393,0.166363,0.346013,0.327473,0.571997,0.398702,0.0452821,0.916936,0.845399,0.334246,0.821722,0.0601903,0.548245,0.193797,0.563086,0.354674,0.27523,0.6318,0.478591,0.65379,0.336703,0.12953,0.850609,0.990977,0.218454,0.0105159,0.262573,0.415643,0.63517,0.113242,0.514872,0.399508,0.82444,0.730372,0.0972505,0.153062,0.508419,0.13384,0.411606,0.616337,0.515212,0.817138,0.728154,0.322463,0.520347,0.00293332,0.96378,0.389206,0.912024,0.125914,0.74661,0.116023,0.539574,0.315331,0.0744778,0.516964,0.308973,0.905719,0.165917,0.0344254,0.659788,0.000472248,0.467683,0.666067,0.914152,0.236736,0.787118,0.100705,0.866712,0.373859,0.668862,0.557853,0.635906,0.650628,0.994722,0.516256,0.248393,0.971228,0.771612,0.371756,0.385864,0.949764,0.253977,0.0899964,0.67149,0.92423,0.58494,0.14875,0.858902,0.489428,0.329783,0.366987,0.506592,0.259473,0.0157831,0.187126,0.349676,0.952822,0.495902,0.638275,0.561909,0.625927,0.196136,0.0820953,0.609296,0.783543,0.272033,0.59948,0.27151,0.896362,0.695061,0.260075,0.494603,0.993577,0.94538,0.242338,0.569628,0.365881,0.482837,0.595714,0.0425187,0.597308,0.372166,0.437203,0.791619,0.501566,0.064469,0.643678,0.939278,0.592722,0.599484,0.0018416,0.212379,0.761894,0.677083,0.761068,0.227247,0.131911,0.7132,0.556349,0.171785,0.598931,0.175404,0.0583382,0.451509,0.327833,0.10879,0.578147,0.897865,0.860179,0.840896,0.334039,0.36787,0.946286,0.162486,0.61753,0.32895,0.0714595,0.778401,0.343282,0.523376,0.510677,0.942728,0.431165,0.458427,0.42602,0.588144,0.151166,0.56991,0.825013,0.225493,0.570355,0.176397,0.222318,0.695606,0.77524,0.252682,0.984091,0.745447,0.373269,0.734228,0.397207,0.164205,0.882558,0.87645,0.641276,0.241414,0.918142,0.332194,0.141133,0.957592,0.4613,0.387641,0.00858796,0.851116,0.765241,0.292545,0.864479,0.139555,0.254143,0.914206,0.4807,0.777837,0.20937,0.155568,0.66581,0.38092,0.765306,0.697875,0.745451,0.985025,0.486974,0.331494,0.0331519,0.0794702,0.908859,0.234334,0.228642,0.795182,0.137931,0.65299,0.700637,0.255786,0.333297,0.587672,0.321276,0.798192,0.181283,0.193572,0.896164,0.595152,0.87421,0.349162,0.0226375,0.241965,0.31929,0.0632967,0.161125,0.179492,0.853212,0.201878,0.376797,0.0832933,0.597134,0.694027,0.010578,0.382333,0.220527,0.302149,0.133128,0.938712,0.425951,0.444247,0.426254,0.0944926,0.33113,0.496815,0.705396,0.447106,0.212675,0.984928,0.905339,0.174531,0.802783,0.373617,0.762498,0.686799,0.133152,0.692534,0.534756,0.294131,0.328048,0.881679,0.000199556,0.422747,0.449113,0.0467454,0.418302,0.800932,0.312007,0.328181,0.0692178,0.859561,0.519794,0.5614,0.76253,0.390312,0.92058,0.364028,0.0634758,0.181961,0.29059,0.38867,0.683511,0.612396,0.135452,0.686168,0.93474,0.00506151,0.391255,0.927828,0.150871,0.338235,0.686664,0.444814,0.559862,0.339757,0.104333,0.867959,0.217987,0.0483602,0.0727995,0.79038,0.0198327,0.811379,0.645461,0.749583,0.17922,0.751284,0.0978069,0.919249,0.117307,0.293197,0.232369,0.909928,0.429841,0.912644,0.543846,0.0519678,0.931964,0.99515,0.609238,0.66391,0.630572,0.982798,0.338329,0.652745,0.487051,0.556166,0.0800741,0.0493942,0.479355,0.0116366,0.804004,0.108999,0.256362,0.687618,0.64601,0.603768,0.442086,0.576349,0.579496,0.868364,0.674707,0.475563,0.345936,0.57298,0.29256,0.868475,0.545326,0.185998,0.822375,0.896377,0.256002,0.598414,0.0579423,0.147914,0.256203,0.506014,0.130756,0.224433,0.661339,0.555844,0.860289,0.243071,0.139422,0.0691921,0.734458,0.0513456,0.277374,0.619373,0.392169,0.667919,0.108408,0.5933,0.931611,0.0790721,0.403205,0.900377,0.476474,0.850592,0.899048,0.783603,0.376609,0.478732,0.212197,0.0718961,0.595131,0.17798,0.301403,0.010274,0.108021,0.249406,0.137748,0.745238,0.662748,0.23237,0.464324,0.444696,0.779739,0.034925,0.539628,0.855959,0.110547,0.19201,0.934888,0.0891613,0.121747,0.420654,0.752372,0.015814,0.120438,0.392159,0.459086,0.352162,0.591727,0.166148,0.826932,0.441764,0.430546,0.329791,0.692367,0.286455,0.579766,0.0257579,0.250479,0.739874,0.367352,0.971864,0.671107,0.923187,0.367902,0.857173,0.862472,0.383589,0.501915,0.767942,0.354374,0.522737,0.431,0.0694969,0.268706,0.151069,0.931382,0.786756,0.178526,0.516571,0.36832,0.925333,0.545896,0.370527,0.749159,0.0471069,0.381104,0.481855,0.883964,0.56088,0.147406,0.778084,0.688087,0.317204,0.437491,0.599495,0.480616,0.996333,0.000277996,0.131554,0.119877,0.272948,0.23638,0.407334,0.0696346,0.764884,0.187072,0.991263,0.873238,0.349696,0.498141,0.20977,0.906125,0.665769,0.100136,0.887406,0.549351,0.272096,0.782341,0.444291,0.858079,0.0505332,0.821574,0.504463,0.0249294,0.209582,0.697771,0.0829387,0.944215,0.536023,0.501981,0.29175,0.673325,0.344163,0.107097,0.0755631,0.0114163,0.180918,0.807848,0.0520315,0.654893,0.584257,0.588966,0.403475,0.190514,0.229203,0.769743,0.394617,0.809429,0.732313,0.497427,0.850436,0.962102,0.495502,0.987964,0.738178,0.856367,0.573358,0.189008,0.0879245,0.568577,0.317654,0.264861,0.837568,0.948149,0.804309,0.822318,0.103109,0.272645,0.313027,0.551516,0.647416,0.0517538,0.310299,0.896363,0.658566,0.330888,0.198468,0.186497,0.627855,0.540055,0.676912,0.561411,0.485661,0.612697,0.124332,0.653492,0.652954,0.425599,0.726764,0.155585,0.99978,0.482781,0.885055,0.22815,0.956901,0.251116,0.069926,0.578825,0.95536,0.322249,0.308063,0.133712,0.749239,0.62292,0.46372,0.476971,0.709794,0.240694,0.399001,0.567452,0.964977,0.436822,0.749836,0.970545,0.685451,0.839842,0.806601,0.335379,0.86753,0.702097,0.171513,0.70943,0.480887,0.58502,0.546807,0.651509,0.744197,0.719437,0.563247,0.275041,0.267176,0.856623,0.532669,0.0438965,0.187874,0.0766879,0.184523,0.422047,0.188853,0.592851,0.378027,0.664237,0.0772281,0.351323,0.261948,0.699109,0.781481,0.666211,0.689263,0.112115,0.430194,0.533668,0.36205,0.675036,0.0518306,0.191674,0.542936,0.905307,0.472867,0.468652,0.237613,0.673868,0.974773,0.655936,0.228906,0.205722,0.0608324,0.114283,0.109888,0.497986,0.264716,0.587067,0.89699,0.55281,0.931622,0.684241,0.759575,0.424431,0.456532,0.849222,0.960645,0.505992,0.993683,0.309973,0.16294,0.935439,0.933711,0.212889,0.278739,0.890395,0.589681,0.0283649,0.839685,0.642022,0.975255,0.161999,0.0514818,0.783907,0.303326,0.0292185,0.234585,0.720109,0.954814,0.555191,0.128554,0.128068,0.557256,0.32508,0.54649,0.0475667,0.0422712,0.139049,0.74605,0.748813,0.168466,0.60595,0.334055,0.431914,0.544483,0.471841,0.841005,0.838414,0.866982,0.383576,0.334948,0.895061,0.198008,0.188779,0.881531,0.747493,0.188697,0.114275,0.537038,0.497432,0.432815,0.302177,0.513735,0.102304,0.038447,0.725493,0.260104,0.836942,0.356606,0.809789,0.482594,0.0401375,0.610426,0.574898,0.836941,0.346937,0.547907,0.943778,0.416578,0.570855,0.270438,0.539869,0.27272,0.62743,0.661712,0.602044,0.162789,0.936752,0.892208,0.872236,0.0662856,0.834511,0.444966,0.510794,0.637369,0.809785,0.158122,0.137213,|0.492606,0.548465,0.0428299,0.363006,0.607943,0.865598,0.329045,0.262751,0.855447,0.558015,0.391011,0.765406,0.224884,0.182179,0.844093,0.562132,0.675321,0.236302,0.081399,0.594024,0.574181,0.75901,0.377506,0.40257,0.0717086,0.189384,0.931226,0.72014,0.566287,0.549379,0.360406,0.277206,0.435375,0.947157,0.449347,0.487994,0.959061,0.245356,0.214159,0.417541,0.762218,0.430745,0.0717042,0.379645,0.622931,0.113359,0.644,0.569873,0.982586,0.0756558,0.0717497,0.884693,0.0565577,0.419018,0.587131,0.890926,0.946802,0.558267,0.669014,0.0922613,0.775908,0.636302,0.00201243,0.0184726,0.590927,0.75923,0.421552,0.754943,0.963697,0.188258,0.396139,0.25225,0.277056,0.154372,0.753441,0.007644,0.905532,0.288677,0.733726,0.0306824,0.553423,0.576427,0.259959,0.958816,0.0370101,0.194675,0.636419,0.802368,0.964722,0.411424,0.2146,0.260528,0.0909368,0.507458,0.420803,0.889582,0.900101,0.823071,0.954766,0.526542,0.316992,0.0356397,0.116936,0.107713,0.988388,0.382091,0.695062,0.145855,0.763435,0.307366,0.0181953,0.673398,0.723739,0.496018,0.598355,0.171403,0.919189,0.413597,0.318998,0.946327,0.717091,0.954041,0.901268,0.322916,0.697262,0.814387,0.818972,0.672359,0.488977,0.246921,0.0607036,0.910856,0.641802,0.0484381,0.798357,0.108785,0.177692,0.130632,0.628254,0.204112,0.552054,0.871125,0.362185,0.515987,0.29966,0.286614,0.654257,0.779172,0.40417,0.0624375,0.414285,0.645781,0.226002,0.877917,0.390507,0.939079,0.488421,0.884277,0.95283,0.742377,0.438417,0.948391,0.593939,0.670101,0.459537,0.0700272,0.129352,0.229312,0.694449,0.303344,0.229423,0.0324796,0.401792,0.967037,0.452843,0.0968064,0.580984,0.184284,0.692287,0.94412,0.754626,0.878287,0.337196,0.247025,0.22303,0.0478375,0.620343,0.58687,0.754314,0.956443,0.416649,0.0857919,0.920364,0.439441,0.435773,0.192754,0.197231,0.551492,0.891629,0.33759,0.0652496,0.0306648,0.224973,0.987066,0.76153,0.681416,0.674704,0.733289,0.211779,0.582271,0.654868,0.169676,0.743394,0.788573,0.183609,0.359755,0.933707,0.374638,0.930935,0.282175,0.0199606,0.266785,0.296523,0.894017,0.324776,0.0923906,0.902723,0.254114,0.174223,0.164302,0.659757,0.799341,0.0414087,0.504146,0.581242,0.362716,0.975725,0.47842,0.042792,0.0895568,0.328043,0.765258,0.746402,0.846734,0.524528,0.861776,0.226649,0.188515,0.404262,0.302168,0.0483092,0.474751,0.452619,0.819171,0.0803422,0.581684,0.868857,0.526665,0.00565165,0.755843,0.185788,0.275985,0.462793,0.855722,0.185728,0.409658,0.296738,0.38703,0.443632,0.48472,0.382828,0.259396,0.20577,0.92709,0.0593633,0.580234,0.980259,0.625686,0.646513,0.836649,0.761423,0.439013,0.0378173,0.378316,0.939986,0.625901,0.683016,0.248045,0.336888,0.929151,0.123389,0.0535094,0.144149,0.452085,0.988989,0.682303,0.3951,0.686922,0.694389,0.506824,0.361743,0.0581182,0.271448,0.743064,0.496975,0.604036,0.350117,0.793989,0.00886387,0.483778,0.690777,0.727513,0.678327,0.516526,0.197361,0.494531,0.823673,0.547849,0.271652,0.617314,0.458521,0.729432,0.730827,0.298015,0.506935,0.325437,0.981526,0.715695,0.274568,0.939254,0.145581,0.488643,0.952074,0.173724,0.513239,0.058056,0.954266,0.783166,0.939481,0.031905,0.694272,0.793546,0.164277,0.14624,0.80342,0.675148,0.665831,0.682368,0.52305,0.922094,0.908289,0.713877,0.585533,0.52179,0.741958,0.744312,0.939955,0.192911,0.81388,0.0676234,0.13907,0.967697,0.0529308,0.400037,0.736345,0.523605,0.22603,0.201724,0.864026,0.235591,0.5745,0.426087,0.77283,0.107511,0.150115,0.0974476,0.515662,0.579434,0.838432,0.454182,0.111405,0.776363,0.408154,0.965384,0.493973,0.118783,0.243012,0.241914,0.439915,0.916176,0.464538,0.892489,0.0522364,0.41329,0.413676,0.2782,0.936529,0.549444,0.298313,0.257012,0.712977,0.563301,0.802191,0.70009,0.699878,0.50358,0.351487,0.0678208,0.141395,0.061873,0.717592,0.745176,0.732772,0.965629,0.0771999,0.242925,0.633247,0.232327,0.880917,0.267454,0.492081,0.277763,0.883359,0.741658,0.533583,0.147499,0.488922,0.299567,0.986994,0.0671065,0.940116,0.216154,0.425922,0.723858,0.954751,0.00517517,0.223394,0.83746,0.914541,0.484652,0.32771,0.397463,0.0956687,0.617037,0.575362,0.0683302,0.178727,0.811113,0.639473,0.737913,0.350175,0.773803,0.706726,0.213588,0.636334,0.835042,0.889426,0.924744,0.135361,0.450879,0.797292,0.862078,0.0873314,0.962667,0.973216,0.979182,0.343279,0.252234,0.973642,0.0970755,0.650675,0.20273,0.861111,0.711486,0.432515,0.569005,0.505395,0.211105,0.700478,0.876381,0.0567409,0.644155,0.378223,0.422487,0.983983,0.970168,0.284383,0.500302,0.537421,0.91947,0.995422,0.203559,0.144921,0.876538,0.391848,0.710629,0.382449,0.0833143,0.907588,0.864565,0.276086,0.436176,0.520402,0.133237,0.226421,0.255401,0.770947,0.539394,0.266813,0.130813,0.030897,0.328728,0.190576,0.165552,0.324819,0.675752,0.314327,0.585738,0.237507,0.894201,0.108914,0.683579,0.976091,0.0372666,0.182629,0.891011,0.970134,0.678993,0.388139,0.654985,0.205138,0.158527,0.544212,0.468741,0.340635,0.89344,0.857062,0.481298,0.836534,0.464725,0.207613,0.318538,0.843581,0.890164,0.635862,0.166317,0.83935,0.723148,0.615782,0.896689,0.869856,0.248676,0.0701895,0.76317,0.513821,0.199235,0.0111924,0.83717,0.904959,0.424492,0.191664,0.330166,0.0799869,0.916558,0.797565,0.211734,0.610418,0.300508,0.244971,0.945038,0.623307,0.69203,0.0330799,0.167828,0.980972,0.380754,0.77363,0.375485,0.0909142,0.705725,0.8864,0.204359,0.0159006,0.58501,0.224075,0.519864,0.869689,0.307096,0.020634,0.214373,0.492175,0.665672,0.795891,0.52062,0.597639,0.312047,0.173072,0.248451,0.473627,0.0801432,0.405453,0.399081,0.00969696,0.79689,0.787746,0.418473,0.864948,0.368412,0.336426,0.653849,0.304603,0.552656,0.697299,0.353939,0.607777,0.132315,0.519762,0.454017,0.286384,0.700586,0.426948,0.749631,0.933767,0.933582,0.837952,0.870404,0.609769,0.533162,0.128072,0.273277,0.0636062,0.676633,0.0411544,0.374429,0.578437,0.568824,0.855494,0.0700998,0.773415,0.387772,0.805296,0.746139,0.28592,0.125482,0.800802,0.18806,0.717434,0.0682055,0.962017,0.910368,0.279602,0.148934,0.938924,0.693035,0.211314,0.0537544,0.281232,0.663051,0.558942,0.416366,0.632697,0.541885,0.410339,0.332097,0.357586,0.106588,0.39942,0.202926,0.620846,0.802461,0.593459,0.171687,0.422655,0.113102,0.0340364,0.325728,0.142933,0.206459,0.824403,0.240659,0.139466,0.553949,0.623876,0.198597,0.618461,0.0797547,0.469229,0.6143,0.438702,0.606063,0.541161,0.579508,0.367551,0.6816,0.387738,0.928126,0.0659992,0.0963557,0.565357,0.59732,0.0494352,0.969937,0.741396,0.112316,0.026857,0.37792,0.134721,0.614534,0.9255,0.413497,0.529184,0.034517,0.428444,0.288445,0.27444,0.443042,0.12975,0.264926,0.703127,0.322835,0.51715,0.0751572,0.620535,0.256458,0.290551,0.681896,0.530888,0.941978,0.283874,0.0649592,0.98552,0.685174,0.323867,0.412242,0.720799,0.921401,0.75031,0.739748,0.735693,0.355393,0.236742,0.707846,0.681918,0.991633,0.998524,0.0696297,0.781603,0.664742,0.3859,0.272224,0.189632,0.698135,0.149532,0.138342,0.381152,0.48595,0.644495,0.644371,0.278879,0.169336,0.0645659,0.412627,0.35968,0.906325,0.0489788,0.172164,0.306319,0.922718,0.648319,0.276617,0.686523,0.44419,0.664237,0.994164,0.305704,0.877017,0.640317,0.914029,0.253279,0.111988,0.944749,0.172083,0.608221,0.42149,0.202346,0.615948,0.354821,0.11935,0.317076,0.755792,0.177492,0.148669,0.807307,0.812976,0.727822,0.0628884,0.807613,0.0664389,0.184944,0.0658743,0.79706,0.469575,0.853288,0.697999,0.762787,0.471004,0.153578,0.661825,0.639027,0.923242,0.146965,0.456661,0.193963,0.360634,0.849575,0.49504,0.560139,0.794421,0.437796,0.375143,0.859398,0.59806,0.740315,0.745133,0.172387,0.486414,0.919969,0.731668,0.160662,0.558079,0.792201,0.145727,0.16809,0.350749,0.558238,0.0697362,0.554611,0.937642,0.899244,0.395687,0.544532,0.418318,0.487631,0.279869,0.268274,0.128987,0.513447,0.811815,0.115121,0.520922,0.13565,0.100331,0.347701,0.767793,0.752863,0.069189,0.140695,0.63526,0.0924299,0.764322,0.992655,0.782647,0.479237,0.959088,0.167481,0.411193,0.991927,0.167881,0.610238,0.777452,0.423052,0.419331,0.677957,0.147762,0.375384,0.291989,0.364984,0.541818,0.852373,0.448801,0.0608048,0.392332,0.573193,0.238609,0.0222929,0.750556,0.183619,0.807763,0.293503,0.409826,0.751094,0.364298,0.850754,0.80639,0.941505,0.262745,0.999378,0.15999,0.11325,0.240614,0.97681,0.977561,0.356183,0.0520026,0.271851,0.226773,0.691605,0.617466,0.79904,0.969872,0.141751,0.724107,0.236224,0.391193,0.47538,0.501131,0.403621,0.391156,0.200856,0.0550498,0.598245,0.759333,0.193974,0.685279,0.760368,0.795677,0.00993276,0.963552,0.798176,0.22851,0.729414,0.27992,0.306887,0.0640965,0.127973,0.810469,0.80499,0.315317,0.924091,0.466336,0.62637,0.573859,0.590231,0.320019,0.195605,0.81775,0.369609,0.451749,0.441671,0.606467,0.276335,0.428154,0.083751,0.928056,0.349064,0.227085,0.578343,0.177422,0.91069,0.75602,0.441019,0.731439,0.0766147,0.185299,0.426169,0.931962,0.204872,0.380875,0.23251,0.97565,0.70229,0.81563,0.585432,0.016111,0.695203,0.678351,0.792323,0.494842,0.86715,0.139688,0.944166,0.913436,0.0520251,0.321334,0.813819,0.144657,0.874395,0.432446,0.800818,0.979039,0.717783,0.851418,0.573598,0.589006,0.686073,0.666415,0.53487,0.497301,0.151571,0.972063,|0.31996,0.499657,0.218773,0.654436,0.206546,0.818515,0.625683,0.901278,0.111882,0.418051,0.529741,0.825557,0.297581,0.957556,0.220376,0.600882,0.375614,0.455085,0.643571,0.183881,0.459229,0.837736,0.052095,0.522696,0.993667,0.619964,0.744076,0.0812577,0.138736,0.187387,0.117356,0.9499,0.460915,0.58121,0.891296,0.026,0.227043,0.704291,0.41227,0.95138,0.831494,0.209117,0.531417,0.491449,0.697578,0.331906,0.446615,0.965949,0.146023,0.879498,0.481954,0.684635,0.218183,0.386066,0.440264,0.589884,0.598257,0.105197,0.888099,0.178602,0.102922,0.736206,0.704447,0.939919,0.441872,0.652515,0.197307,0.315132,0.252974,0.232959,0.478674,0.798568,0.992269,0.435199,0.268131,0.674899,0.557137,0.894365,0.287636,0.128426,0.0791192,0.522339,0.145751,0.713506,0.492894,0.0244902,0.0565944,0.914676,0.660577,0.333679,0.337113,0.131404,0.390635,0.8525,0.403768,0.604239,0.0642294,0.561845,0.25527,0.975205,0.72485,0.77136,0.493274,0.964123,0.325557,0.220062,0.265314,0.852578,0.481803,0.491506,0.174432,0.142592,0.460367,0.397157,0.445365,0.681441,0.371354,0.680593,0.0125892,0.564831,0.241091,0.428876,0.47903,0.83924,0.986903,0.986424,0.901774,0.193381,0.294177,0.763746,0.594984,0.231519,0.141227,0.709789,0.252276,0.716251,0.672066,0.36245,0.516906,0.81725,0.656004,0.119602,0.450012,0.675178,0.034545,0.098538,0.105816,0.577781,0.105291,0.472936,0.395795,0.401195,0.653969,0.30785,0.147007,0.31304,0.533833,0.335202,0.31732,0.0204011,0.917978,0.743023,0.740931,0.237748,0.00699705,0.874569,0.686219,0.997645,0.790558,0.399524,0.667984,0.114123,0.357084,0.432893,0.60084,0.474028,0.507567,0.445256,0.985194,0.0877748,0.285609,0.322501,0.558725,0.161143,0.698732,0.0625187,0.31469,0.679511,0.4693,0.123435,0.831431,0.236472,0.0833932,0.266604,0.308889,0.977552,0.212434,0.959165,0.900705,0.803088,0.707465,0.86055,0.0384696,0.298834,0.904774,0.297243,0.876821,0.371964,0.501764,0.659684,0.0538741,0.879702,0.987262,0.779929,0.792578,0.543636,0.98675,0.0698782,0.864474,0.633485,0.742461,0.835702,0.0493877,0.137546,0.228322,0.864125,0.275232,0.718308,0.801595,0.844561,0.846946,0.681809,0.360078,0.575637,0.855307,0.525467,0.997252,0.0258835,0.207229,0.0800657,0.723701,0.537936,0.546034,0.595596,0.439831,0.483993,0.460928,0.327635,0.8916,0.577928,0.2511,0.121144,0.884038,0.304211,0.0220141,0.77786,0.583323,0.293628,0.0315361,0.736696,0.13868,0.610852,0.243167,0.28169,0.305521,0.383448,0.500667,0.0934783,0.831713,0.854342,0.0287241,0.000317216,0.843359,0.4713,0.111489,0.609065,0.201474,0.738333,0.329953,0.492365,0.231129,0.681446,0.776696,0.349648,0.320048,0.734613,0.812004,0.512004,0.516576,0.266747,0.700904,0.815509,0.291489,0.535054,0.596738,0.239337,0.837172,0.60213,0.51863,0.979465,0.0862605,0.729685,0.0848495,0.471715,0.661514,0.540128,0.0586277,0.0557629,0.737236,0.253192,0.53803,0.72173,0.423105,0.0282047,0.855566,0.420589,0.157961,0.159928,6.00815e-05,0.84533,0.769357,0.431008,0.68423,0.989435,0.452543,0.832212,0.388206,0.9798,0.0912807,0.398808,0.855136,0.110452,0.747557,0.840406,0.245139,0.0397604,0.691794,0.44909,0.433333,0.171712,0.177737,0.81497,0.146469,0.932671,0.708613,0.189489,0.802015,0.768459,0.18389,0.148571,0.198211,0.177775,0.701126,0.713654,0.202043,0.384451,0.86883,0.962085,0.284921,0.104438,0.968279,0.505513,0.944594,0.349088,0.166988,0.742789,0.988887,0.950506,0.656588,0.365524,0.0151825,0.618203,0.801961,0.302559,0.427483,0.664348,0.671852,0.530373,0.507788,0.385141,0.86231,0.393687,0.471636,0.560373,0.436003,0.765404,0.133808,0.978607,0.771271,0.758098,0.276506,0.268825,0.713006,0.311549,0.506782,0.845695,0.14268,0.309531,0.200211,0.324068,0.685995,0.744293,0.426787,0.709252,0.819509,0.755621,0.994513,0.492373,0.154828,0.74377,0.444919,0.572258,0.408812,0.451164,0.760689,0.974967,0.555606,0.255891,0.681445,0.262586,0.658151,0.189136,0.579686,0.585247,0.936702,0.196353,0.390788,0.532253,0.597892,0.831429,0.123038,0.53066,0.164309,0.13099,0.481198,0.803578,0.835435,0.177494,0.656202,0.928093,0.244747,0.00998616,0.283675,0.171274,0.78772,0.904229,0.211688,0.870706,0.447553,0.83011,0.246252,0.786282,0.333554,0.772401,0.246321,0.556045,0.741703,0.923233,0.948786,0.368642,0.776866,0.76402,0.245695,0.298714,0.953866,0.746981,0.659902,0.822309,0.857091,0.245433,0.0161516,0.888924,0.632743,0.307785,0.547461,0.735015,0.0243399,0.966412,0.546564,0.518906,0.0594113,0.803569,0.926676,0.166048,0.984464,0.245087,0.44158,0.830255,0.389767,0.742338,0.743958,0.764162,0.350767,0.782994,0.865606,0.560271,0.484547,0.123058,0.061103,0.205453,0.825215,0.615427,0.856527,0.172041,0.992671,0.509468,0.530596,0.176348,0.109745,0.271705,0.936394,0.666101,0.309881,0.789108,0.0905063,0.962999,0.822292,0.920793,0.354249,0.168583,0.528563,0.124394,0.416186,0.962411,0.784129,0.287919,0.191402,0.687558,0.385373,0.920443,0.796213,0.243834,0.338525,0.612702,0.604514,0.395922,0.800109,0.350669,0.979265,0.322353,0.423263,0.484975,0.931063,0.230256,0.712247,0.0122069,0.719255,0.658632,0.685988,0.406506,0.460109,0.570679,0.705128,0.575156,0.828598,0.863833,0.9248,0.753831,0.806955,0.510332,0.0487162,0.445877,0.542034,0.0253979,0.182442,0.0644482,0.955177,0.572421,0.831897,0.197187,0.530893,0.56497,0.167194,0.0450383,0.145933,0.819395,0.895257,0.888297,0.0828348,0.776407,0.74675,0.548839,0.500129,0.44845,0.425662,0.756377,0.987066,0.95075,0.548252,0.947547,0.563238,0.685545,0.650913,0.0442,0.955906,0.49024,0.366358,0.680589,0.656398,0.0986142,0.0219983,0.041028,0.500045,0.964539,0.120961,0.301676,0.55744,0.129141,0.704249,0.950789,0.306614,0.474466,0.548037,0.897142,0.65491,0.193806,0.826922,0.0438895,0.365534,0.0125505,0.126436,0.614001,0.971906,0.365629,0.640911,0.899169,0.287687,0.756966,0.989523,0.721478,0.437756,0.259526,0.221556,0.388968,0.860848,0.815776,0.901631,0.106951,0.725327,0.111756,0.282829,0.942305,0.769233,0.8767,0.778706,0.312701,0.150539,0.404307,0.307137,0.666896,0.790032,0.930995,0.676416,0.0982552,0.591209,0.0366002,0.546675,0.670805,0.897214,0.386872,0.944536,0.70036,0.915828,0.771559,0.113273,0.830103,0.79517,0.6574,0.311351,0.525343,0.419831,0.151378,0.65476,0.4266,0.188333,0.578074,0.258644,0.0482029,0.444941,0.547656,0.14031,0.173913,0.42407,0.772553,0.054359,0.98855,0.733791,0.0347745,0.838213,0.291705,0.871281,0.32268,0.626068,0.608184,0.609705,0.726887,0.70491,0.696512,0.0341553,0.500163,0.644064,0.908167,0.56624,0.209712,0.340677,0.737262,0.661124,0.796716,0.755833,0.845494,0.35223,0.402574,0.099461,0.0950991,0.942102,0.409594,0.928812,0.804652,0.957261,0.542226,0.827539,0.185336,0.204815,0.320084,0.291253,0.534064,0.237947,0.434124,0.0193279,0.282415,0.17841,0.108119,0.442349,0.368891,0.0884154,0.304203,0.0761757,0.940496,0.801856,0.185637,0.104373,0.430207,0.389462,0.581525,0.180689,0.312211,0.684056,0.0977411,0.0308822,0.39556,0.245248,0.282111,0.729844,0.660998,0.39037,0.993231,0.575702,0.624581,0.499023,0.281875,0.713193,0.226439,0.914297,0.539103,0.733867,0.957216,0.771413,0.799319,0.898977,0.956955,0.23858,0.274517,0.745629,0.699316,0.184155,0.492601,0.877769,0.00521332,0.308475,0.14085,0.955908,0.304452,0.79572,0.282578,0.519225,0.893706,0.610887,0.380458,0.447928,0.949088,0.878761,0.838295,0.794447,0.792542,0.337979,0.789962,0.564648,0.473984,0.868912,0.985462,0.319901,0.159647,0.758669,0.759992,0.759292,0.811678,0.988328,0.111971,0.568521,0.625313,0.358305,0.123504,0.566269,0.125693,0.794843,0.272459,0.164405,0.811706,0.121536,0.586616,0.132118,0.774271,0.11868,0.986659,0.0223653,0.777276,0.350714,0.474624,0.777579,0.801341,0.12961,0.0741496,0.919406,0.997837,0.791764,0.372971,0.667032,0.543744,0.0789085,0.663518,0.141461,0.183467,0.464488,0.603091,0.645661,0.974444,0.839748,0.884314,0.0819101,0.440334,0.457576,0.28141,0.63665,0.907681,0.0777506,0.766052,0.291699,0.279981,0.0133215,0.327755,0.462177,0.41581,0.904716,0.109905,0.454396,0.563346,0.0466246,0.126544,0.431234,0.733992,0.130217,0.0250555,0.20224,0.792099,0.329634,0.954125,0.921793,0.519806,0.282739,0.428244,0.402213,0.80165,0.116426,0.253917,0.832655,0.31537,0.815418,0.430232,0.344207,0.705905,0.554676,0.155155,0.643625,0.300804,0.884618,0.105029,0.607936,0.273589,0.772304,0.903396,0.539647,0.748603,0.435289,0.545902,0.311549,0.753162,0.707659,0.302579,0.813607,0.255011,0.737507,0.12875,0.266668,0.549939,0.0197205,0.204767,0.38173,0.986581,0.964857,0.244358,0.357232,0.0513844,0.422315,0.91337,0.683879,0.322796,0.940475,0.313526,0.458439,0.128331,0.458683,0.557382,0.146128,0.146669,0.205299,0.226083,0.240143,0.628824,0.528337,0.507792,0.379782,0.334031,0.552915,0.824933,0.892192,0.0669959,0.0392573,0.203012,0.91935,0.507328,0.811555,0.822884,0.925103,0.0307927,0.331166,0.435586,0.435567,0.957485,0.204437,0.0238493,0.672102,0.0179474,0.695393,0.751983,0.258441,0.174953,0.167176,0.600909,0.240896,0.90366,0.82666,0.616167,0.659682,0.101247,0.0887896,0.0917714,0.855022,0.908054,0.633432,0.159362,0.941717,0.343548,0.457346,0.79074,0.82563,0.633516,0.980243,0.0845432,0.560121,0.699327,0.680713,0.906806,0.849729,0.247569,0.781363,0.582922,0.268051,0.126126,0.992906,0.322078,|0.689012,0.27134,0.30532,0.209451,0.287009,0.902516,0.782899,0.303918,0.567897,0.846781,0.797603,0.934516,0.325461,0.619769,0.245086,0.425836,0.176053,0.821726,0.631937,0.987686,0.175309,0.199683,0.00421333,0.857583,0.519259,0.0646847,0.154959,0.991867,0.881907,0.98976,0.480558,0.294195,0.370374,0.970706,0.226875,0.778436,0.537546,0.225546,0.600524,0.763883,0.259636,0.997209,0.927165,0.746986,0.397262,0.852576,0.31161,0.833322,0.467962,0.823317,0.569509,0.0918191,0.67957,0.223069,0.587191,0.665383,0.169652,0.30293,0.741445,0.00254852,0.833931,0.538336,0.472968,0.00576824,0.467404,0.588111,0.641022,0.841206,0.42321,0.349606,0.353728,0.780496,0.103093,0.637195,0.514209,0.882091,0.478001,0.329886,0.764686,0.750634,0.981012,0.679344,0.693639,0.299776,0.595598,0.451203,0.259843,0.531086,0.353736,0.956037,0.728745,0.965721,0.325474,0.411304,0.0213103,0.172358,0.721378,0.520841,0.552366,0.489942,0.481875,0.242967,0.812805,0.0256741,0.113547,0.76392,0.91837,0.207497,0.29297,0.294268,0.752788,0.928985,0.0841129,0.923671,0.992194,0.326959,0.335306,0.219908,0.720292,0.0441136,0.335015,0.358789,0.676811,0.547841,0.159158,0.65146,0.730421,0.728407,0.0757569,0.599888,0.811878,0.173186,0.729651,0.563539,0.503345,0.565175,0.146616,0.493484,0.0546371,0.676058,0.639502,0.617211,0.424888,0.899765,0.136413,0.298902,0.43009,0.486735,0.077343,0.791772,0.501684,0.0938053,0.657445,0.888712,0.998749,0.541738,0.249006,0.1402,0.604918,0.432849,0.892782,0.329593,0.432645,0.452616,0.762816,0.337234,0.847738,0.376052,0.538742,0.0458065,0.522878,0.917031,0.456179,0.911387,0.539796,0.938349,0.555333,0.321557,0.688775,0.959264,0.514927,0.923167,0.838982,0.881931,0.422629,0.555413,0.254229,0.1019,0.869516,0.576744,0.763517,0.400156,0.215665,0.444296,0.0412476,0.263389,0.283807,0.795449,0.124238,0.981197,0.123626,0.653683,0.0801135,0.591701,0.92635,0.618609,0.196028,0.957428,0.35658,0.727153,0.263361,0.288101,0.982421,0.256353,0.348706,0.0303855,0.914384,0.250047,0.476683,0.998663,0.442773,0.0485495,0.250616,0.0179471,0.205198,0.0119156,0.891581,0.182533,0.372987,0.938574,0.651776,0.822739,0.0410019,0.797967,0.972304,0.209764,0.90251,0.578535,0.654698,0.156913,0.970731,0.529849,0.584646,0.294095,0.365266,0.484509,0.927787,0.347845,0.399972,0.889697,0.69365,0.459813,0.833924,0.739392,0.176094,0.184511,0.00190258,0.497362,0.702534,0.262913,0.337383,0.87342,0.427975,0.255302,0.418544,0.985784,0.769551,0.261162,0.0278872,0.134321,0.103692,0.552527,0.183128,0.942851,0.0381062,0.974194,0.590357,0.511901,0.623944,0.478575,0.566509,0.351086,0.734544,0.587678,0.770849,0.0751327,0.317773,0.624478,0.38144,0.359754,0.132756,0.272279,0.689858,0.79663,0.494386,0.825935,0.115022,0.300693,0.109505,0.528999,0.38462,0.946762,0.641186,0.0112008,0.356768,0.235473,0.916499,0.416159,0.267685,0.644939,0.986134,0.770986,0.173892,0.704491,0.309885,0.042452,0.894579,0.00380915,0.0166861,0.744091,0.939486,0.827499,0.556739,0.286124,0.977247,0.406093,0.171135,0.57701,0.592036,0.553699,0.218613,0.740448,0.0239774,0.170421,0.0232301,0.988814,0.599144,0.560667,0.0682397,0.348733,0.399926,0.936187,0.53178,0.595818,0.659437,0.352794,0.329258,0.788016,0.580792,0.569539,0.27361,0.517904,0.842912,0.0861701,0.853924,0.417654,0.191316,0.556208,0.676057,0.374152,0.86903,0.101795,0.887734,0.586107,0.754761,0.860213,0.197709,0.142648,0.854362,0.245065,0.903347,0.91877,0.82838,0.609014,0.650737,0.505533,0.0723746,0.918609,0.728853,0.14253,0.429887,0.589509,0.484699,0.482424,0.308501,0.674455,0.551316,0.906058,0.521922,0.451255,0.742086,0.0938284,0.199132,0.0171207,0.163268,0.422823,0.827308,0.818399,0.645427,0.944014,0.44262,0.838776,0.513609,0.299154,0.525118,0.0673219,0.115664,0.560918,0.225743,0.441809,0.358561,0.317853,0.28521,0.852672,0.0537405,0.0333414,0.318011,0.549535,0.623207,0.418208,0.880419,0.905322,0.508364,0.850375,0.674628,0.309143,0.713876,0.446975,0.693403,0.733484,0.125835,0.378207,0.752234,0.725017,0.813874,0.377654,0.258741,0.430344,0.754213,0.252548,0.0165361,0.850591,0.601698,0.643474,0.473649,0.544959,0.928722,0.752165,0.0778626,0.403902,0.0612457,0.103031,0.322528,0.819569,0.455918,0.877783,0.79394,0.75645,0.601303,0.922339,0.440188,0.819514,0.237051,0.300529,0.183814,0.182258,0.549794,0.565605,0.158527,0.0839727,0.562726,0.639676,0.0317405,0.771018,0.104793,0.942334,0.487549,0.979125,0.830618,0.322492,0.407194,0.580681,0.830984,0.352591,0.665851,0.104539,0.896116,0.201399,0.322819,0.472723,0.644453,0.348076,0.970408,0.820378,0.588743,0.167899,0.715379,0.898754,0.466679,0.0573799,0.553152,0.541028,0.320659,0.96688,0.433245,0.39878,0.553499,0.382572,0.682279,0.0697309,0.421791,0.728937,0.222817,0.588919,0.904581,0.638619,0.714404,0.436645,0.910862,0.551846,0.939542,0.246608,0.58393,0.977594,0.511004,0.578927,0.195837,0.874264,0.582792,0.65509,0.766362,0.629017,0.949728,0.731774,0.125325,0.200132,0.387561,0.554675,0.962712,0.345097,0.470211,0.24854,0.744098,0.729813,0.110202,0.642641,0.48831,0.162994,0.588142,0.658199,0.110375,0.282344,0.692798,0.8289,0.958113,0.30415,0.761295,0.289097,0.598943,0.511879,0.953525,0.893836,0.074596,0.508692,0.979097,0.243638,0.46895,0.054023,0.00369227,0.358649,0.806637,0.319054,0.744406,0.869667,0.723347,0.869492,0.217855,0.116338,0.311604,0.294931,0.538178,0.24827,0.131789,0.0139656,0.893493,0.00523895,0.236881,0.633808,0.205469,0.842439,0.303948,0.45728,0.595825,0.732932,0.16162,0.0411672,0.102981,0.311135,0.818149,0.163643,0.584788,0.817151,0.196168,0.700382,0.822483,0.153163,0.700382,0.596774,0.153569,0.715477,0.0673353,0.26463,0.222995,0.305299,0.115201,0.207902,0.160728,0.999875,0.418583,0.0512174,0.264701,0.596883,0.973736,0.178812,0.454118,0.834225,0.836513,0.602726,0.751134,0.135801,0.839426,0.625364,0.0608006,0.295854,0.577083,0.855859,0.315363,0.204606,0.28707,0.418762,0.255504,0.934653,0.579765,0.3621,0.14747,0.705959,0.919504,0.0673122,0.731786,0.106907,0.828681,0.432725,0.912442,0.449216,0.871389,0.58069,0.922016,0.17303,0.586009,0.512431,0.552066,0.671476,0.123701,0.154965,0.604348,0.611959,0.671668,0.91814,0.218928,0.850326,0.034533,0.721179,0.411971,0.746955,0.83868,0.102789,0.94156,0.0746214,0.378891,0.150124,0.688106,0.565416,0.89474,0.544758,0.75203,0.138013,0.00662678,0.0514861,0.818493,0.623016,0.216553,0.743969,0.802414,0.638103,0.199733,0.779555,0.306039,0.560388,0.086531,0.280728,0.0768868,0.66415,0.714891,0.76999,0.989758,0.216799,0.418211,0.129214,0.220137,0.945302,0.170892,0.326968,0.814562,0.147495,0.813603,0.758718,0.339201,0.413884,0.673145,0.883717,0.616617,0.120846,0.934196,0.670047,0.604717,0.816165,0.743038,0.133294,0.228476,0.940586,0.0337177,0.335318,0.370278,0.393108,0.756055,0.885702,0.0122803,0.340464,0.697477,0.731068,0.892566,0.216434,0.153995,0.121784,0.454301,0.928518,0.0248345,0.0303788,0.173303,0.573124,0.734218,0.426303,0.946306,0.422331,0.665539,0.707877,0.624561,0.0293057,0.189273,0.614481,0.0408045,0.598045,0.964166,0.0201253,0.396893,0.48642,0.0778846,0.818546,0.526814,0.397586,0.081026,0.943497,0.375025,0.385681,0.386444,0.208337,0.67524,0.994262,0.879657,0.709135,0.607931,0.42652,0.469471,0.908493,0.113549,0.924201,0.368543,0.600263,0.549577,0.614267,0.459282,0.0360873,0.846371,0.0333207,0.322042,0.130704,0.996404,0.0355583,0.385122,0.337035,0.948334,0.346,0.206707,0.905829,0.175325,0.751424,0.416477,0.286817,0.815722,0.778059,0.331659,0.781886,0.923641,0.756015,0.529679,0.904947,0.782586,0.576546,0.783782,0.656457,0.242799,0.819524,0.0165666,0.422447,0.988467,0.490584,0.887807,0.573136,0.0598532,0.532574,0.00598705,0.171317,0.34244,0.17362,0.57154,0.165145,0.635458,0.245876,0.593814,0.913802,0.0140586,0.727682,0.505666,0.10459,0.35395,0.693553,0.125084,0.0943617,0.42609,0.405445,0.715936,0.71351,0.108136,0.994434,0.953437,0.620325,0.667504,0.454869,0.387134,0.317078,0.221058,0.284662,0.0945334,0.593917,0.81154,0.41261,0.205877,0.740038,0.213609,0.0973628,0.537772,0.589053,0.759694,0.898438,0.73876,0.763994,0.216317,0.474676,0.734918,0.272113,0.201459,0.17047,0.236855,0.222328,0.148495,0.863878,0.474501,0.261726,0.724607,0.634303,0.343398,0.920532,0.884702,0.755497,0.627515,0.980428,0.979329,0.724802,0.486528,0.305611,0.0348777,0.213906,0.0519499,0.876426,0.420569,0.735512,0.957439,0.0478507,0.265036,0.763005,0.683533,0.348516,0.365805,0.9409,0.271778,0.410624,0.24368,0.304141,0.0127776,0.73387,0.995066,0.342761,0.348001,0.944567,0.617575,0.0883945,0.446303,0.816253,0.491724,0.47052,0.124683,0.242374,0.985651,0.826837,0.147157,0.802058,0.337488,0.72782,0.502543,0.278026,0.398989,0.0762642,0.134741,0.377999,0.27431,0.949811,0.719711,0.616813,0.462384,0.330853,0.0600237,0.508874,0.302069,0.276427,0.65749,0.114277,0.556374,0.589433,0.89379,0.789438,0.834753,0.766828,0.491397,0.270892,0.240496,0.536155,0.95277,0.314739,0.792231,0.0527105,0.803953,0.355906,0.146193,0.503149,0.983113,0.555292,0.629802,0.454031,0.104357,0.545906,0.417704,0.789172,0.971081,0.76479,0.426289,0.253314,0.112702,0.0708666,0.223849,0.0541561,0.186751,0.701715,0.378662,0.987755,0.133785,0.25989,0.558463,0.721632,0.415567,0.407651,|0.588291,0.438866,0.942116,0.0920502,0.762895,0.644428,0.0519039,0.643102,0.148363,0.666365,0.868415,0.314574,0.204706,0.336874,0.236064,0.50125,0.452772,0.463638,0.969257,0.901965,0.816102,0.117782,0.867664,0.524983,0.547921,0.975191,0.870302,0.253826,0.0888221,0.164616,0.861753,0.791644,0.670633,0.933811,0.166313,0.0671562,0.214276,0.832398,0.764742,0.278252,0.186575,0.0192639,0.566839,0.867098,0.712375,0.28605,0.612514,0.968352,0.163042,0.141882,0.789686,0.655201,0.788629,0.466838,0.328203,0.183559,0.209084,0.905879,0.105354,0.642736,0.988281,0.301656,0.284984,0.131516,0.185582,0.0695651,0.917876,0.48951,0.346945,0.478471,0.00500923,0.00164115,0.931136,0.148859,0.00104153,0.258829,0.515917,0.396476,0.49793,0.509797,0.628879,0.57913,0.800027,0.168238,0.720742,0.598669,0.927919,0.950458,0.50641,0.5662,0.986574,0.174023,0.759655,0.00563431,0.614473,0.243952,0.185314,0.630024,0.95228,0.627595,0.279963,0.976818,0.695418,0.620173,0.572999,0.588896,0.410843,0.111381,0.987151,0.723611,0.279118,0.799936,0.230927,0.052559,0.851798,0.0151451,0.7519,0.432662,0.935543,0.877377,0.945989,0.176268,0.862173,0.816024,0.00412965,0.259359,0.521657,0.602348,0.47006,0.893459,0.969585,0.588526,0.739621,0.464802,0.0971439,0.0366657,0.407769,0.198882,0.932421,0.299117,0.253394,0.207727,0.799425,0.671807,0.449782,0.821281,0.317863,0.523397,0.308974,0.527183,0.502717,0.441288,0.228567,0.337834,0.751233,0.85587,0.435656,0.991548,0.619143,0.192386,0.850031,0.170725,0.604789,0.908525,0.00788033,0.581103,0.0907751,0.697441,0.622064,0.79085,0.162155,0.505677,0.815553,0.319829,0.481562,0.854889,0.819591,0.650906,0.896934,0.168972,0.51081,0.342797,0.769772,0.384343,0.618378,0.377819,0.0730531,0.69549,0.511656,0.318436,0.15579,0.871968,0.787152,0.0389413,0.821881,0.0858029,0.377681,0.243908,0.424697,0.7391,0.722203,0.290827,0.0592008,0.229957,0.184937,0.837386,0.661952,0.575801,0.208388,0.500064,0.640772,0.474474,0.836245,0.416282,0.205749,0.201394,0.310034,0.912582,0.381814,0.464519,0.944713,0.778848,0.151016,0.343761,0.0558677,0.335018,0.874849,0.726786,0.533232,0.599987,0.46944,0.601595,0.161873,0.770997,0.402461,0.99926,0.525768,0.754187,0.58347,0.884887,0.889986,0.195059,0.775487,0.154361,0.932329,0.0650028,0.0316991,0.292226,0.0241024,0.0703921,0.63682,0.830603,0.692438,0.625318,0.401313,0.0304047,0.992816,0.272492,0.831331,0.921743,0.583821,0.730088,0.950951,0.839013,0.500642,0.239341,0.721757,0.910502,0.625023,0.669629,0.833796,0.630348,0.470681,0.372425,0.998779,0.175261,0.182514,0.698504,0.930586,0.121677,0.169575,0.700559,0.44787,0.115032,0.642093,0.523071,0.169942,0.49499,0.644085,0.842055,0.71572,0.668831,0.0144604,0.74569,0.647721,0.832717,0.0903824,0.641546,0.721148,0.56498,0.331313,0.124299,0.595221,0.714457,0.359077,0.794177,0.827858,0.113516,0.971068,0.256178,0.803518,0.526586,0.0749546,0.415805,0.620629,0.303194,0.545716,0.142661,0.770591,0.696818,0.398375,0.238867,0.754488,0.185949,0.429489,0.846302,0.0212156,0.180072,0.788048,0.334575,0.739881,0.509475,0.918596,0.252826,0.724963,0.58376,0.32496,0.293956,0.0956045,0.856276,0.487071,0.800514,0.480801,0.662101,0.399828,0.81349,0.480714,0.80998,0.175007,0.495399,0.674034,0.32725,0.0681606,0.196966,0.741635,0.660187,0.949227,0.235,0.818249,0.0569831,0.534769,0.25106,0.231677,0.881969,0.755625,0.56749,0.181887,0.805081,0.51007,0.432294,0.581995,0.452156,0.780519,0.149155,0.792781,0.707909,0.396332,0.258359,0.569579,0.688983,0.301995,0.500737,0.178721,0.133218,0.785719,0.953793,0.178806,0.617072,0.402776,0.0538885,0.172648,0.979324,0.217064,0.154896,0.879526,0.710918,0.183963,0.538811,0.830528,0.507968,0.734166,0.607669,0.348201,0.788861,0.479347,0.444141,0.645303,0.657173,0.20267,0.502872,0.621461,0.552606,0.952702,0.137885,0.0152724,0.161591,0.502975,0.441746,0.37935,0.361664,0.539062,0.751317,0.0867945,0.467831,0.800336,0.684176,0.803629,0.779067,0.27097,0.521622,0.147638,0.649407,0.873687,0.240946,0.259407,0.0629069,0.986303,0.836737,0.0880456,0.733216,0.494106,0.405671,0.60131,0.306409,0.189529,0.531409,0.0791527,0.926949,0.735493,0.589136,0.634562,0.941285,0.251112,0.138553,0.919725,0.152301,0.0714713,0.0847821,0.435456,0.424591,0.61446,0.806432,0.175477,0.827725,0.693138,0.778151,0.0450188,0.240219,0.968814,0.476234,0.660988,0.10783,0.914763,0.465261,0.59183,0.100567,0.968024,0.416186,0.568718,0.847096,0.55891,0.950374,0.82216,0.0769448,0.128883,0.546135,0.863115,0.285555,0.375275,0.475831,0.634976,0.622595,0.202103,0.507906,0.314497,0.736111,0.794919,0.322782,0.20352,0.523896,0.135544,0.426345,0.745339,0.0910789,0.833973,0.307189,0.897664,0.858317,0.640784,0.887129,0.881884,0.535603,0.916982,0.741698,0.208477,0.995344,0.419654,0.867216,0.184321,0.441996,0.189374,0.0521194,0.0022741,0.649905,0.0739393,0.0510035,0.322838,0.614477,0.0522808,0.481137,0.659128,0.337346,0.36717,0.612729,0.20179,0.135526,0.383701,0.554615,0.480122,0.020003,0.772138,0.717372,0.221415,0.679905,0.51084,0.385665,0.560811,0.79737,0.102209,0.855844,0.124563,0.464854,0.923685,0.775017,0.158755,0.729001,0.600184,0.177238,0.814318,0.429239,0.643243,0.438749,0.135513,0.125345,0.33407,0.0642914,0.593758,0.639443,0.628461,0.300871,0.732703,0.324043,0.423238,0.702982,0.948825,0.99153,0.480574,0.885741,0.236713,0.898817,0.338535,0.649139,0.0386984,0.619271,0.824779,0.868857,0.896514,0.45154,0.813323,0.124317,0.105331,0.0961611,0.539144,0.155796,0.812538,0.183552,0.207068,0.567804,0.710124,0.332564,0.585274,0.907768,0.0839133,0.0103763,0.772121,0.240206,0.757687,0.205027,0.672656,0.94663,0.717471,0.335443,0.597087,0.725964,0.191163,0.074535,0.654309,0.0987036,0.162806,0.707587,0.663549,0.525782,0.406493,0.258672,0.385602,0.0418729,0.11069,0.186458,0.912291,0.1112,0.0072456,0.27606,0.296717,0.253869,0.778914,0.612725,0.367065,0.917486,0.561388,0.227211,0.307206,0.715912,0.947487,0.593538,0.978154,0.906594,0.117571,0.226758,0.767993,0.178081,0.579676,0.49087,0.175424,0.930141,0.991331,0.206385,0.757191,0.960495,0.694822,0.698126,0.0395511,0.721735,0.454013,0.138062,0.643392,0.498463,0.610089,0.808337,0.434463,0.633796,0.550298,0.370619,0.0179229,0.589522,0.488591,0.167321,0.650929,0.68722,0.520325,0.433196,0.558268,0.847512,0.171125,0.636835,0.339586,0.877519,0.327695,0.133157,0.993517,0.257882,0.388936,0.493071,0.0908986,0.109118,0.842243,0.478225,0.649841,0.0485197,0.897721,0.685206,0.485616,0.189393,0.540354,0.801115,0.0335891,0.0133432,0.923107,0.831172,0.954586,0.127282,0.48868,0.440861,0.301837,0.449463,0.345809,0.115139,0.330925,0.706786,0.690186,0.415295,0.517214,0.908228,0.809032,0.932202,0.707026,0.863508,0.122809,0.879288,0.637919,0.328447,0.18967,0.566988,0.963954,0.641668,0.73316,0.542504,0.362682,0.515508,0.683951,0.287184,0.982047,0.601568,0.672363,0.0937677,0.164002,0.961974,0.319578,0.208851,0.962977,0.380509,0.911071,0.632005,0.928843,0.0153615,0.247875,0.709998,0.0902781,0.346681,0.217803,0.0560584,0.509317,0.820491,0.591059,0.66336,0.59096,0.727866,0.399053,0.629669,0.598281,0.0773966,0.0504947,0.883471,0.888332,0.349976,0.877972,0.0503728,0.224282,0.0364231,0.437033,0.233287,0.0268057,0.373341,0.967511,0.97254,0.0180438,0.472556,0.0884405,0.534583,0.233666,0.401188,0.613329,0.796278,0.649742,0.971989,0.0527381,0.0655368,0.244803,0.093302,0.867383,0.328142,0.748447,0.424681,0.093074,0.913959,0.521114,0.254769,0.622913,0.880117,0.455323,0.598072,0.35776,0.484489,0.231907,0.358087,0.444752,0.405216,0.0945269,0.636846,0.0815582,0.126029,0.990128,0.579422,0.654079,0.172241,0.229049,0.847391,0.823119,0.0448036,0.75333,0.903323,0.615706,0.370674,0.363248,0.450046,0.411597,0.110158,0.761155,0.642501,0.0546899,0.752589,0.921495,0.669266,0.392082,0.276327,0.157281,0.718464,0.641188,0.436832,0.074277,0.96121,0.456326,0.0590783,0.593761,0.780553,0.648209,0.476004,0.774446,0.0027225,0.112079,0.520848,0.483945,0.0113388,0.99393,0.175675,0.913954,0.940387,0.66619,0.479923,0.222924,0.597168,0.699837,0.512815,0.644696,0.642907,0.672619,0.71735,0.709819,0.201479,0.495713,0.489517,0.162019,0.803505,0.701121,0.690306,0.607765,0.192195,0.372891,0.69029,0.271168,0.616505,0.556002,0.190354,0.918511,0.397469,0.222818,0.288137,0.815582,0.944524,0.291193,0.735993,0.859604,0.078428,0.937754,0.780351,0.698171,0.681832,0.304752,0.204303,0.767927,0.623146,0.756752,0.318356,0.767667,0.705559,0.143421,0.56522,0.780398,0.80777,0.634699,0.640724,0.606423,0.51857,0.0466703,0.484543,0.0696432,0.845949,0.159647,0.914611,0.792815,0.736554,0.223569,0.834017,0.579703,0.154608,0.909658,0.0823666,0.303161,0.329162,0.839884,0.130516,0.0782717,0.113197,0.461324,0.112842,0.146448,0.179435,0.181019,0.260476,0.47137,0.856501,0.660888,0.496611,0.373717,0.163368,0.330385,0.456136,0.678209,0.941179,0.835435,0.302688,0.70167,0.508066,0.118357,0.702823,0.281794,0.661516,0.132174,0.854937,0.974561,0.932242,0.469866,0.609403,0.936858,0.649205,0.178036,0.518364,0.808582,0.844192,0.219489,0.612928,0.874537,0.438178,0.863239,0.0110761,0.702766,0.0781223,0.0443965,0.724185,0.163911,0.00421768,0.0872141,0.88454,0.688061,0.536968,0.0847778,0.588412,0.204568,0.0502062,0.302762,0.846472,|0.54371,0.269843,0.498605,0.238184,0.693554,0.37946,0.99046,0.684301,0.0982447,0.197467,0.574719,0.30128,0.66356,0.400931,0.623189,0.700649,0.956576,0.914369,0.535207,0.162057,0.467635,0.441914,0.0069229,0.85872,0.477921,0.0626628,0.721123,0.741193,0.717034,0.256889,0.938539,0.637593,0.442002,0.699252,0.512334,0.198136,0.422376,0.17976,0.828361,0.102922,0.972628,0.0108086,0.485997,0.690408,0.457953,0.732127,0.970863,0.653386,0.355192,0.613021,0.0429323,0.378933,0.101093,0.430863,0.988565,0.455258,0.740239,0.633837,0.755928,0.0868074,0.271508,0.245109,0.14815,0.772995,0.96818,0.334999,0.478822,0.922785,0.756305,0.0693439,0.197968,0.997808,0.59274,0.814435,0.376738,0.907671,0.599982,0.00275266,0.164517,0.67854,0.243833,0.102204,0.0881081,0.120455,0.755422,0.933261,0.248348,0.322177,0.981522,0.0787616,0.0887534,0.900216,0.862329,0.994001,0.0649907,0.303601,0.672328,0.77213,0.468664,0.609117,0.913921,0.687419,0.694456,0.505498,0.135492,0.550154,0.914694,0.716803,0.850313,0.668127,0.561211,0.86965,0.917487,0.0823244,0.0950983,0.988813,0.654233,0.261385,0.642981,0.872819,0.351403,0.154357,0.270279,0.278481,0.910022,0.761029,0.78069,0.434604,0.623664,0.220322,0.481548,0.461371,0.505308,0.490693,0.268766,0.903609,0.0854888,0.356547,0.0675018,0.292108,0.376098,0.896178,0.816793,0.319761,0.305381,0.662465,0.28549,0.902895,0.309832,0.244858,0.256692,0.209566,0.842026,0.452132,0.160812,0.740521,0.6364,0.0128363,0.79749,0.211971,0.867738,0.549001,0.423267,0.399062,0.571315,0.653585,0.714932,0.346656,0.740588,0.998052,0.458915,0.0694558,0.552388,0.877206,0.442453,0.67173,0.668687,0.197036,0.292835,0.405617,0.917165,0.853116,0.930752,0.908451,0.477392,0.619312,0.0612465,0.0451919,0.236108,0.0403527,0.345373,0.508235,0.129252,0.366477,0.400911,0.340508,0.939093,0.43178,0.189102,0.625655,0.568218,0.739342,0.505773,0.0147508,0.115708,0.457572,0.675192,0.537946,0.558208,0.207463,0.11647,0.99136,0.567829,0.0633335,0.0332711,0.91367,0.538232,0.581591,0.805597,0.358626,0.838179,0.260788,0.0749221,0.886744,0.337315,0.102959,0.712725,0.567265,0.759151,0.705866,0.162207,0.617942,0.0563856,0.10768,0.280491,0.965825,0.618831,0.748581,0.810764,0.932215,0.735328,0.436639,0.16716,0.364917,0.766512,0.0711058,0.286019,0.306793,0.0543975,0.767847,0.122672,0.326479,0.00271267,0.258433,0.856501,0.887428,0.101359,0.775583,0.876158,0.143709,0.905724,0.226537,0.406526,0.790532,0.302901,0.274532,0.925363,0.854753,0.232761,0.955813,0.814309,0.376562,0.300294,0.897851,0.167714,0.374881,0.165443,0.00616366,0.527993,0.117776,0.917399,0.167583,0.321798,0.535702,0.897263,0.384995,0.623167,0.471756,0.458705,0.0439944,0.490467,0.503263,0.6078,0.816868,0.620607,0.602101,0.941674,0.0452304,0.406881,0.319222,0.73564,0.89516,0.952983,0.194876,0.666652,0.669561,0.298865,0.992822,0.446947,0.0540696,0.796661,0.995757,0.924023,0.816896,0.407027,0.847182,0.915559,0.0844983,0.73878,0.863853,0.210937,0.189427,0.879573,0.644308,0.719889,0.663264,0.894001,0.420919,0.0699086,0.765354,0.534138,0.179111,0.195839,0.451436,0.0194368,0.557131,0.0994977,0.207062,0.685093,0.05153,0.529893,0.984413,0.538231,0.794672,0.487928,0.212339,0.259198,0.588775,0.62265,0.771504,0.932412,0.546466,0.500852,0.188536,0.551945,0.783555,0.817574,0.278618,0.932341,0.996034,0.799684,0.267143,0.0687282,0.27884,0.574636,0.4315,0.648276,0.0690086,0.144085,0.464423,0.124404,0.635473,0.117462,0.669593,0.91707,0.342333,0.220357,0.26356,0.989105,0.372324,0.389444,0.592654,0.587836,0.832237,0.17574,0.385963,0.439944,0.845129,0.970409,0.692549,0.811253,0.64025,0.902003,0.914198,0.12322,0.912788,0.080205,0.312726,0.563006,0.864894,0.375684,0.12737,0.630265,0.680705,0.582494,0.970642,0.250017,0.203206,0.772139,0.481259,0.110204,0.0568393,0.595672,0.493773,0.889199,0.635157,0.0182205,0.886652,0.767833,0.0227956,0.412172,0.996685,0.812804,0.618545,0.22224,0.987476,0.785501,0.209549,0.205605,0.369355,0.852112,0.253953,0.354204,0.980025,0.473491,0.367778,0.261639,0.726461,0.22378,0.890559,0.653869,0.545258,0.623935,0.0353773,0.513974,0.11066,0.741031,0.758075,0.0707005,0.167775,0.144283,0.658208,0.900679,0.184513,0.237362,0.921171,0.171509,0.728784,0.00678891,0.590279,0.450811,0.473407,0.909549,0.214379,0.294493,0.3587,0.869949,0.247255,0.0460777,0.430801,0.23868,0.70392,0.528376,0.644036,0.455472,0.707333,0.815401,0.0615727,0.902674,0.851049,0.119442,0.344172,0.94576,0.433107,0.277151,0.201602,0.341489,0.50197,0.555424,0.0569779,0.586905,0.774918,0.683355,0.366719,0.593997,0.759895,0.422089,0.911462,0.391084,0.189779,0.923585,0.828907,0.342028,0.281701,0.572111,0.0106029,0.769596,0.0627246,0.713289,0.365777,0.949214,0.727944,0.371262,0.01783,0.668524,0.988845,0.621415,0.542204,0.79524,0.304977,0.423976,0.468977,0.38679,0.784373,0.597122,0.494869,0.31773,0.675596,0.927514,0.436041,0.384784,0.222461,0.0709384,0.0427745,0.781776,0.567469,0.0384465,0.460188,0.983644,0.759329,0.974879,0.527608,0.090108,0.259308,0.88078,0.915656,0.513962,0.622324,0.316547,0.737714,0.232249,0.115203,0.0558414,0.950096,0.0465259,0.618253,0.179111,0.366386,0.953602,0.30293,0.0244049,0.140167,0.195194,0.744579,0.0976821,0.763313,0.518673,0.00822121,0.856051,0.871272,0.241783,0.0257325,0.143613,0.0389153,0.495395,0.253538,0.486552,0.832136,0.503696,0.603925,0.453593,0.373126,0.747802,0.326983,0.815744,0.527645,0.433597,0.272814,0.403754,0.325334,0.479725,0.270679,0.439529,0.354212,0.689611,0.607655,0.683729,0.447422,0.344448,0.812496,0.0257925,0.20161,0.948403,0.0767987,0.80307,0.711413,0.488489,0.207042,0.326137,0.941382,0.620908,0.60437,0.157475,0.0711609,0.758649,0.783375,0.640301,0.354697,0.201967,0.486011,0.415367,0.493525,0.491113,0.846059,0.619978,0.710431,0.588175,0.626662,0.259534,0.309477,0.606058,0.29051,0.922815,0.153584,0.605169,0.873839,0.782629,0.708999,0.895718,0.25128,0.463404,0.720175,0.111307,0.602079,0.827816,0.370338,0.941307,0.778655,0.774099,0.631511,0.232333,0.938803,0.716095,0.0714041,0.224636,0.767728,0.960696,0.160474,0.475455,0.600817,0.70387,0.858034,0.433373,0.151103,0.463273,0.446319,0.113231,0.213557,0.530551,0.127618,0.192391,0.570998,0.832137,0.170855,0.791219,0.153544,0.198863,0.57451,0.320008,0.764592,0.14581,0.309041,0.875527,0.750905,0.189982,0.0914128,0.422579,0.0268734,0.521382,0.0491403,0.972984,0.520737,0.123834,0.927218,0.154269,0.16748,0.657671,0.137652,0.972122,0.0701265,0.903834,0.150069,0.511293,0.432079,0.113678,0.436476,0.150151,0.454597,0.464168,0.03408,0.307834,0.605843,0.231632,0.0459875,0.202918,0.959019,0.557047,0.34297,0.312203,0.726391,0.348304,0.223376,0.910003,0.751256,0.924639,0.772035,0.487679,0.749986,0.930317,0.0960174,0.438331,0.162159,0.301529,0.0110592,0.897696,0.417331,0.162971,0.116307,0.204836,0.359114,0.417129,0.0343921,0.422017,0.358319,0.896762,0.547984,0.985197,0.545105,0.42632,0.294913,0.266923,0.265475,0.143093,0.751764,0.532834,0.373214,0.571068,0.134028,0.819794,0.630779,0.903343,0.418984,0.197744,0.956919,0.105824,0.702771,0.979308,0.450477,0.899926,0.0465842,0.495682,0.201476,0.628587,0.722763,0.487916,0.495167,0.426428,0.600395,0.615233,0.526755,0.104135,0.606083,0.41218,0.0142952,0.514713,0.255108,0.246152,0.0924989,0.0406882,0.423251,0.922502,0.135515,0.490858,0.581681,0.102884,0.862069,0.0928641,0.28379,0.0941986,0.60521,0.508297,0.181149,0.202222,0.0118082,0.664235,0.931457,0.292918,0.223044,0.140141,0.959199,0.580196,0.591866,0.0650281,0.282662,0.278498,0.145295,0.161532,0.258451,0.526919,0.0972775,0.592686,0.928167,0.921195,0.139956,0.831327,0.312114,0.941656,0.982702,0.369113,0.885396,0.575853,0.644138,0.0536319,0.992562,0.8315,0.590369,0.583591,0.0140851,0.207153,0.500339,0.95666,0.114967,0.130766,0.353144,0.74363,0.896627,0.645124,0.914953,0.120492,0.023157,0.471582,0.592207,0.493549,0.600167,0.958179,0.593133,0.00238818,0.827351,0.152449,0.153139,0.487981,0.298619,0.266608,0.954998,0.134112,0.885485,0.491143,0.106744,0.632434,0.589597,0.923981,0.593475,0.00623918,0.174839,0.284909,0.997591,0.628275,0.500157,0.757077,0.166815,0.432948,0.422591,0.223367,0.44311,0.410163,0.630886,0.542856,0.439862,0.932158,0.496463,0.962307,0.345651,0.851866,0.541902,0.663661,0.705849,0.728899,0.616024,0.32318,0.0268477,0.0942367,0.816322,0.864375,0.0157123,0.0755389,0.64092,0.705381,0.415054,0.400237,0.513938,0.017204,0.539551,0.515311,0.182706,0.355168,0.835364,0.519143,0.632372,0.88103,0.494594,0.683721,0.488149,0.376206,0.872312,0.83857,4.45247e-05,0.63393,0.647459,0.663751,0.16081,0.412161,0.140853,0.733347,0.767209,0.628168,0.57414,0.782468,0.570164,0.40592,0.982768,0.793062,0.687657,0.646511,0.565839,0.502952,0.231278,0.90654,0.662499,0.631488,0.250618,0.705148,0.187699,0.983099,0.440775,0.630855,0.633604,0.127404,0.621807,0.292192,0.472046,0.962593,0.606514,0.844384,0.28864,0.750057,0.800038,0.520159,0.745679,0.351815,0.411652,0.366899,0.461448,0.946227,0.257322,0.189907,0.437473,0.5483,0.807021,0.871685,0.0927367,0.20062,0.115455,0.149108,0.897167,0.0198058,0.254632,0.595255,0.198806,0.977997,0.58233,0.387497,0.693891,0.565966,0.795231,0.869187,0.795273,0.310582,0.228234,0.745802,0.524612,|0.731993,0.622375,0.968435,0.468085,0.0572881,0.566277,0.296071,0.497903,0.99112,0.414446,0.51559,0.102039,0.744626,0.286435,0.328203,0.462953,0.453817,0.269803,0.339726,0.246566,0.332854,0.936431,0.566127,0.0020951,0.232036,0.365305,0.816358,0.0213159,0.349086,0.822634,0.707894,0.663998,0.579801,0.680858,0.861458,0.538321,0.120406,0.118074,0.822315,0.0743353,0.501501,0.689023,0.486432,0.808179,0.178152,0.512366,0.123777,0.553173,0.678214,0.151568,0.697395,0.396234,0.0937013,0.840841,0.351582,0.355373,0.871991,0.886657,0.0320432,0.603737,0.528396,0.306412,0.957305,0.169283,0.909893,0.703037,0.268897,0.0671088,0.730707,0.287067,0.78557,0.811583,0.484492,0.375497,0.849538,0.801432,0.647454,0.786515,0.872851,0.812929,0.763061,0.946848,0.963996,0.668884,0.825924,0.919024,0.926942,0.242158,0.35264,0.615759,0.775066,0.971706,0.77027,0.047525,0.972024,0.920618,0.0999327,0.616716,0.181908,0.312195,0.0150107,0.395176,0.278334,0.577774,0.396513,0.156248,0.631726,0.714881,0.458639,0.633735,0.693238,0.3275,0.947158,0.723849,0.820097,0.947283,0.438356,0.10912,0.162609,0.933881,0.509453,0.0638856,0.0147806,0.358583,0.380705,0.46916,0.0862794,0.730527,0.82533,0.0391798,0.121491,0.313196,0.117489,0.507136,0.528145,0.198085,0.798836,0.960163,0.0584061,0.749355,0.680199,0.964759,0.505528,0.708047,0.870308,0.508004,0.277938,0.527962,0.568213,0.156042,0.486463,0.69075,0.420883,0.201248,0.119428,0.589963,0.390078,0.262626,0.67623,0.788668,0.897976,0.0236355,0.212252,0.265653,0.207913,0.918367,0.220575,0.232968,0.954607,0.471496,0.570012,0.220396,0.614094,0.842705,0.505249,0.692307,0.357202,0.896878,0.573103,0.5896,0.553321,0.0276397,0.841056,0.967965,0.603004,0.926322,0.486824,0.678654,0.233672,0.846631,0.224745,0.28052,0.582727,0.133306,0.680434,0.379671,0.901994,0.497317,0.469715,0.48178,0.313615,0.148259,0.795255,0.80783,0.492074,0.690802,0.504962,0.875784,0.920261,0.220026,0.814982,0.891725,0.781891,0.511486,0.445917,0.923183,0.926038,0.353401,0.270885,0.266482,0.0581129,0.848559,0.659859,0.54323,0.887012,0.593487,0.292392,0.747771,0.293495,0.352031,0.385642,0.842079,0.312261,0.674813,0.490222,0.819558,0.50631,0.358173,0.2254,0.667487,0.642597,0.986994,0.200037,0.964067,0.350551,0.393006,0.815559,0.104017,0.966366,0.318268,0.52581,0.716939,0.382903,0.605348,0.896487,0.274005,0.498619,0.707034,0.319502,0.78378,0.143014,0.916174,0.463447,0.921918,0.0566896,0.414535,0.810208,0.978116,0.181627,0.113837,0.226012,0.711242,0.0200986,0.37913,0.0181413,0.322035,0.628522,0.254815,0.899164,0.584835,0.308763,0.1561,0.100194,0.665555,0.922431,0.304952,0.398963,0.251879,0.186406,0.224924,0.788834,0.253344,0.543252,0.523358,0.689212,0.598519,0.318385,0.808179,0.390497,0.0225555,0.543929,0.396379,0.632433,0.893728,0.315536,0.518669,0.383297,0.0395947,0.0299428,0.447276,0.965662,0.571978,0.86837,0.434627,0.426334,0.383125,0.888266,0.239355,0.503243,0.499925,0.300416,0.109851,0.728132,0.489775,0.0864307,0.715051,0.599152,0.0692743,0.170237,0.560558,0.603238,0.792424,0.67936,0.691229,0.275396,0.484145,0.320318,0.269451,0.16203,0.832894,0.992064,0.617483,0.741823,0.605544,0.921703,0.0591825,0.255969,0.800441,0.174384,0.712198,0.613579,0.302089,0.674399,0.923141,0.434401,0.390675,0.257822,0.828926,0.405835,0.784169,0.0500929,0.334551,0.853821,0.5073,0.378385,0.352457,0.858252,0.857167,0.165875,0.941631,0.541789,0.398445,0.367359,0.551903,0.0124313,0.107138,0.0183958,0.416375,0.790598,0.635667,0.773777,0.62721,0.343265,0.392748,0.770349,0.31527,0.770424,0.337668,0.139055,0.760774,0.106059,0.880436,0.340714,0.284793,0.528189,0.143795,0.3421,0.165058,0.627168,0.372553,0.00911689,0.261273,0.809743,0.0662846,0.639671,0.287671,0.767083,0.400147,0.576821,0.0511323,0.835857,0.48222,0.461784,0.293713,0.296683,0.392812,0.387458,0.880671,0.426426,0.173164,0.0349887,0.126975,0.932044,0.756871,0.877361,0.003133,0.457069,0.410664,0.607219,0.546773,0.223583,0.844661,0.559329,0.534562,0.941477,0.207261,0.395516,0.343386,0.428726,0.343247,0.482351,0.0618454,0.553948,0.523313,0.991263,0.409369,0.353822,0.469738,0.0101369,0.104623,0.12245,0.846081,0.260722,0.880206,0.717881,0.0208769,0.466887,0.57109,0.857705,0.749756,0.706886,0.75261,0.697018,0.111357,0.842016,0.61746,0.930203,0.102796,0.606959,0.790751,0.505603,0.514377,0.134823,0.144174,0.649204,0.193192,0.184695,0.450127,0.855839,0.393071,0.501553,0.975133,0.89715,0.0392768,0.719258,0.400536,0.612359,0.390364,0.506499,0.569367,0.350829,0.673996,0.149005,0.427898,0.771311,0.923774,0.842932,0.435848,0.783797,0.581454,0.929754,0.880649,0.555093,0.479258,0.160809,0.737761,0.313073,0.676623,0.404565,0.765059,0.266184,0.757237,0.628862,0.100067,0.498165,0.252182,0.699712,0.961142,0.316355,0.468072,0.0988142,0.409359,0.286518,0.17868,0.413077,0.790607,0.790887,0.401492,0.406036,0.438577,0.259103,0.163548,0.86598,0.184642,0.736841,0.0791692,0.306071,0.987191,0.976594,0.0568736,0.0751038,0.521153,0.357365,0.282142,0.511323,0.43833,0.223175,0.0524426,0.273687,0.928616,0.945347,0.761405,0.516854,0.912453,0.0616434,0.937268,0.660306,0.569934,0.540847,0.886265,0.219023,0.0627709,0.628902,0.772519,0.562214,0.669691,0.669353,0.461049,0.0310958,0.1868,0.922601,0.684813,0.880653,0.261458,0.452754,0.925871,0.271683,0.935462,0.244008,0.105593,0.33225,0.993316,0.441698,0.878574,0.870144,0.836379,0.376794,0.915752,0.19587,0.257074,0.225979,0.140946,0.706485,0.656946,0.224987,0.36249,0.905599,0.222354,0.773466,0.532302,0.237012,0.578278,0.187127,0.280358,0.283129,0.51532,0.643383,0.487914,0.599863,0.406647,0.990607,0.651194,0.318435,0.406991,0.67208,0.0177177,0.413784,0.338514,0.618779,0.485608,0.535655,0.672247,0.211334,0.00223231,0.6023,0.4022,0.767123,0.14721,0.167679,0.670143,0.480817,0.836083,0.414815,0.725793,0.818186,0.743443,0.906179,0.7271,0.68032,0.613299,0.132821,0.127053,0.381955,0.728055,0.971912,0.32537,0.173039,0.240427,0.573309,0.252098,0.601269,0.672347,0.551894,0.881689,0.916427,0.0217186,0.196963,0.120641,0.0652714,0.158595,0.191887,0.490514,0.692192,0.108485,0.487519,0.59222,0.784427,0.348946,0.41801,0.114052,0.108037,0.951528,0.625772,0.181665,0.259205,0.00221765,0.992149,0.574112,0.315938,0.488752,0.000752509,0.18829,0.976664,0.473912,0.256082,0.216381,0.717692,0.681504,0.344885,0.999539,0.326873,0.924304,0.927738,0.417631,0.824902,0.924271,0.105991,0.211796,0.919433,0.379495,0.449965,0.57657,0.183898,0.825798,0.416185,0.671186,0.539404,0.163984,0.50902,0.536292,0.0020203,0.1624,0.97743,0.352986,0.000530899,0.708645,0.0364979,0.614104,0.806496,0.177217,0.432177,0.874673,0.239908,0.865429,0.385507,0.986,0.386659,0.926154,0.19035,0.306686,0.55943,0.23813,0.382945,0.537659,0.415604,0.736155,0.796125,0.874935,0.785413,0.685517,0.3393,0.760395,0.77548,0.116246,0.478487,0.203047,0.214236,0.879903,0.350889,0.2098,0.56444,0.0236455,0.194791,0.643538,0.0248967,0.177357,0.589547,0.241599,0.856613,0.395893,0.654808,0.151735,0.305992,0.104917,0.449843,0.45518,0.1141,0.250057,0.133131,0.590944,0.86511,0.639117,0.37679,0.665217,0.87101,0.965219,0.011555,0.829149,0.871005,0.719022,0.38565,0.227447,0.0154406,0.91696,0.557318,0.860936,0.657735,0.585966,0.912152,0.317375,0.612172,0.350065,0.768207,0.409172,0.133485,0.218706,0.585326,0.619248,0.146871,0.130564,0.154179,0.377578,0.781624,0.405967,0.362441,0.413778,0.821035,0.665784,0.14876,0.664981,0.324158,0.747693,0.952529,0.7079,0.23001,0.346814,0.0627785,0.0453026,0.640294,0.523611,0.825979,0.130591,0.708441,0.688474,0.0295295,0.397953,0.46092,0.0245904,0.925254,0.986498,0.683193,0.921461,0.0709116,0.500475,0.698833,0.202351,0.0543839,0.924413,0.0497617,0.761003,0.115741,0.440247,0.274053,0.481659,0.212822,0.501355,0.650905,0.798895,0.16115,0.274014,0.87012,0.0538373,0.457668,0.843042,0.531307,0.114924,0.201138,0.153527,0.458574,0.419786,0.319409,0.291989,0.648457,0.287439,0.12489,0.811795,0.133818,0.649021,0.945324,0.719842,0.962729,0.714568,0.99601,0.163482,0.679435,0.0012821,0.0966558,0.642234,0.0290207,0.0808968,0.78866,0.0524334,0.63411,0.827721,0.794746,0.438889,0.917063,0.675444,0.10073,0.108502,0.530361,0.516611,0.751235,0.482737,0.0194438,0.0601998,0.96607,0.477648,0.468335,0.134318,0.947259,0.140471,0.94382,0.667486,0.638174,0.377787,0.733957,0.340448,0.199553,0.297713,0.780727,0.852846,0.649139,0.425464,0.821965,0.430118,0.302065,0.408225,0.681057,0.245465,0.12696,0.191769,0.881267,0.0305999,0.418276,0.931287,0.411899,0.512324,0.282537,0.467669,0.7072,0.500329,0.185138,0.729173,0.193142,0.495378,0.784313,0.962307,0.87782,0.175481,0.618789,0.274023,0.306619,0.163778,0.0961495,0.231915,0.537452,0.850634,0.468543,0.204037,0.317983,0.292214,0.663352,0.861242,0.839809,0.604243,0.819522,0.241509,0.0389575,0.955834,0.717116,0.846867,0.0596981,0.933785,0.620595,0.430218,0.483099,0.754428,0.220649,0.0308232,0.339996,0.527739,0.241138,0.218948,0.26565,0.881849,0.174277,0.72982,0.959965,0.831211,0.161515,0.305655,0.617923,0.569584,0.619675,0.754152,0.335089,0.704717,0.893407,0.629831,0.537454,0.0677938,0.0189284,0.56206,0.312541,0.028883,0.152522,0.918349,0.782473,0.0970227,|0.0831342,0.0795074,0.86831,0.123671,0.399053,0.716305,0.51073,0.804585,0.906918,0.0102893,0.146615,0.805886,0.465191,0.237023,0.507995,0.808091,0.682883,0.360249,0.211384,0.175344,0.928143,0.356226,0.401467,0.300793,0.0366157,0.835073,0.767632,0.405485,0.489843,0.194278,0.706393,0.260939,0.85611,0.50637,0.35219,0.535617,0.795352,0.347507,0.888513,0.0940198,0.325556,0.520724,0.687195,0.413636,0.838233,0.2952,0.403387,0.301307,0.268924,0.795265,0.227342,0.416868,0.855204,0.301369,0.737701,0.379242,0.3043,0.0718397,0.751322,0.879929,0.698894,0.0112613,0.982459,0.117018,0.63401,0.21326,0.866326,0.850414,0.743895,0.0961896,0.186607,0.416347,0.575874,0.740986,0.909508,0.899009,0.944019,0.553973,0.411578,0.954758,0.843303,0.245758,0.386777,0.728864,0.982625,0.64364,0.0925264,0.0780276,0.141391,0.309656,0.987041,0.5456,0.416625,0.182377,0.914308,0.210309,0.61166,0.0618833,0.921601,0.771577,0.6415,0.460403,0.564227,0.926489,0.626115,0.239319,0.697225,0.576921,0.765493,0.128345,0.849753,0.504861,0.238441,0.358971,0.966286,0.565036,0.609678,0.0829789,0.807414,0.091253,0.329357,0.144772,0.599463,0.844071,0.741898,0.826538,0.60482,0.103816,0.84754,0.253938,0.904259,0.89533,0.684474,0.42294,0.566037,0.0247688,0.531953,0.825014,0.602198,0.673685,0.892206,0.945658,0.741145,0.231367,0.802368,0.000861704,0.984546,0.97448,0.967607,0.412858,0.725594,0.187453,0.583225,0.252547,0.519253,0.0126334,0.851341,0.557733,0.663711,0.183376,0.549984,0.153666,0.870149,0.914213,0.930278,0.0564391,0.438051,0.216823,0.247431,0.550894,0.371831,0.20227,0.645674,0.253908,0.990067,0.291256,0.925084,0.464006,0.354721,0.588839,0.962909,0.466296,0.324784,0.544057,0.137847,0.0821141,0.249678,0.363186,0.433171,0.684148,0.250124,0.726979,0.144432,0.900865,0.684535,0.525118,0.430569,0.888211,0.830871,0.882156,0.62138,0.0486912,0.78176,0.806465,0.671176,0.438235,0.267252,0.619306,0.27346,0.74854,0.529058,0.562976,0.407039,0.167607,0.401031,0.841479,0.274586,0.529739,0.555192,0.332718,0.831749,0.755522,0.859759,0.672642,0.360509,0.586755,0.470001,0.612453,0.044271,0.707132,0.0657328,0.817767,0.593985,0.561295,0.829355,0.329282,0.954471,0.484167,0.435577,0.695679,0.343619,0.676002,0.993632,0.115828,0.137244,0.998584,0.0377091,0.587317,0.374637,0.18365,0.924314,0.934167,0.338772,0.142516,0.791212,0.088348,0.196297,0.479252,0.606311,0.854353,0.915549,0.691098,0.333048,0.672746,0.712282,0.0191206,0.46988,0.0536528,0.961239,0.424867,0.472843,0.0675237,0.219279,0.895623,0.334805,0.862776,0.829146,0.272195,0.735181,0.775621,0.282524,0.712038,0.00831622,0.616525,0.317086,0.328999,0.694021,0.645937,0.769623,0.204254,0.0870827,0.768029,0.86908,0.673396,0.386101,0.43173,0.042094,0.781717,0.62446,0.755075,0.295186,0.460426,0.890379,0.389475,0.755072,0.592471,0.841697,0.997026,0.939114,0.628625,0.444479,0.278828,0.441397,0.174097,0.632556,0.350975,0.541898,0.667154,0.26833,0.12408,0.153894,0.0430301,0.66061,0.966307,0.0743043,0.848689,0.467773,0.184648,0.473435,0.531258,0.369893,0.527416,0.481278,0.700052,0.338617,0.331502,0.486058,0.89571,0.339869,0.673415,0.957156,0.907164,0.0485386,0.251222,0.859211,0.0705291,0.692503,0.210545,0.972949,0.376857,0.104443,0.251988,0.29781,0.820262,0.979515,0.8306,0.193489,0.0442489,0.601155,0.893574,0.946555,0.420653,0.732207,0.530423,0.883733,0.936606,0.0781612,0.484581,0.926672,0.230098,0.837769,0.475598,0.295502,0.296688,0.691553,0.0321141,0.756335,0.837093,0.319762,0.678682,0.762723,0.593192,0.281371,0.756845,0.781301,0.702522,0.420208,0.0487545,0.598576,0.0140853,0.949051,0.29513,0.0150531,0.736969,0.819648,0.568429,0.763192,0.503607,0.0126206,0.272156,0.383871,0.343288,0.478492,0.520679,0.0379913,0.467356,0.180202,0.718671,0.472866,0.479548,0.837164,0.93278,0.352764,0.0767376,0.774575,0.74163,0.71417,0.113915,0.570325,0.320892,0.29431,0.0719225,0.643053,0.441792,0.419937,0.333068,0.228869,0.0545712,0.333866,0.890021,0.587391,0.329935,0.174788,0.755324,0.355398,0.93982,0.32386,0.684374,0.151834,0.175158,0.237638,0.87645,0.200393,0.255651,0.418884,0.00471777,0.241698,0.376158,0.771341,0.370158,0.431029,0.347349,0.83173,0.900671,0.0830051,0.669642,0.585122,0.424922,0.612443,0.0399634,0.00269043,0.133748,0.807491,0.761821,0.0159487,0.656453,0.522471,0.427345,0.359563,0.993035,0.140875,0.376177,0.397319,0.95569,0.993768,0.113597,0.380068,0.705794,0.773025,0.23588,0.429035,0.763353,0.338644,0.43698,0.433175,0.421718,0.0808588,0.0550587,0.0195458,0.948244,0.642831,0.108886,0.642524,0.232796,0.413098,0.705249,0.921435,0.756766,0.25231,0.360891,0.954241,0.362495,0.597004,0.828443,0.226475,0.550202,0.530335,0.627986,0.6279,0.16735,0.579477,0.654275,0.266344,0.452131,0.638711,0.615474,0.504482,0.512,0.86895,0.624117,0.157907,0.025551,0.541516,0.713699,0.203327,0.370011,0.292265,0.447866,0.83682,0.404155,0.231764,0.906651,0.0987716,0.824869,0.452274,0.0360202,0.17069,0.509615,0.581359,0.100156,0.391613,0.229976,0.778043,0.971092,0.399783,0.451016,0.0704685,0.56934,0.524097,0.988913,0.575018,0.513711,0.109953,0.695707,0.761545,0.168373,0.177939,0.158097,0.743509,0.434451,0.405682,0.697664,0.622224,0.53807,0.0645774,0.814686,0.886941,0.562552,0.518815,0.031009,0.862139,0.354152,0.529325,0.672145,0.985855,0.603195,0.549323,0.144991,0.537622,0.595377,0.469654,0.944192,0.674311,0.845922,0.733246,0.137389,0.858992,0.578745,0.0698046,0.776473,0.335843,0.0659255,0.599753,0.96088,0.106653,0.1006,0.89357,0.153578,0.385789,0.282317,0.8458,0.385347,0.822339,0.933043,0.611353,0.267038,0.528221,0.580948,0.11284,0.671783,0.966419,0.465714,0.926728,0.674552,0.398536,0.998993,0.525609,0.97496,0.913449,0.744578,0.143816,0.301915,0.559674,0.753531,0.88193,0.2608,0.0443825,0.827675,0.623779,0.57427,0.378382,0.532503,0.154759,0.0836897,0.876881,0.592051,0.682954,0.34447,0.219432,0.897364,0.747932,0.378326,0.547072,0.630664,0.395156,0.369347,0.293836,0.94554,0.952844,0.287248,0.548499,0.463287,0.513543,0.622946,0.114378,0.625944,0.952865,0.716167,0.14715,0.362432,0.234855,0.666766,0.188067,0.388096,0.718924,0.310397,0.690841,0.654196,0.180678,0.894691,0.800242,0.0567555,0.613829,0.568399,0.489998,0.711922,0.69216,0.120003,0.897689,0.493139,0.366988,0.625215,0.280813,0.291343,0.776855,0.482406,0.826911,0.434332,0.611752,0.513077,0.543543,0.204441,0.241673,0.859838,0.401437,0.460192,0.482448,0.0153515,0.0661324,0.349979,0.298442,0.897005,0.0326319,0.0304108,0.290087,0.670716,0.115309,0.372875,0.900478,0.872843,0.664581,0.659875,0.572631,0.69916,0.344685,0.075254,0.0594521,0.362797,0.572594,0.564994,0.538316,0.126549,0.209985,0.689813,0.926831,0.955777,0.813804,0.364662,0.228566,0.805494,0.0201141,0.897771,0.3901,0.87216,0.52924,0.371753,0.151919,0.261469,0.647918,0.476488,0.701424,0.658976,0.0349641,0.279971,0.733743,0.532285,0.801023,0.761933,0.233355,0.595297,0.905541,0.844988,0.888129,0.756796,0.580905,0.625379,0.456577,0.323893,0.88149,0.627591,0.00608456,0.940508,0.80564,0.962192,0.101396,0.630856,0.115524,0.328887,0.950049,0.0642589,0.1525,0.576082,0.106269,0.628022,0.419642,0.264112,0.835961,0.783355,0.518149,0.76962,0.841708,0.934754,0.844431,0.834354,0.759035,0.301633,0.792746,0.577717,0.268902,0.784194,0.514824,0.191544,0.00105631,0.776795,0.692405,0.875494,0.597744,0.0320222,0.447272,0.92196,0.323897,0.0195872,0.0762658,0.570965,0.208561,0.983387,0.589635,0.407094,0.538516,0.584597,0.494747,0.504452,0.618905,0.991453,0.19301,0.203101,0.0791861,0.257809,0.276561,0.458717,0.887793,0.863032,0.396386,0.717957,0.47736,0.399859,0.527775,0.625942,0.271644,0.290254,0.0405322,0.0335339,0.859942,0.956149,0.266948,0.500557,0.0186425,0.517932,0.686097,0.246737,0.294353,0.987771,0.480705,0.0926269,0.757887,0.855478,0.488632,0.301308,0.923007,0.236251,0.855256,0.681707,0.607399,0.376752,0.484104,0.700219,0.338315,0.0183798,0.471973,0.422897,0.820594,0.22687,0.309507,0.267103,0.630529,0.760585,0.996568,0.53519,0.325052,0.0396384,0.647048,0.525036,0.0149909,0.996197,0.272451,0.541266,0.426987,0.424304,0.895804,0.276051,0.373895,0.245287,0.924427,0.0863999,0.972998,0.919212,0.109043,0.213923,0.522875,0.902448,0.610685,0.94244,0.220988,0.995891,0.658227,0.337555,0.54837,0.439908,0.885175,0.687425,0.0651364,0.553705,0.397701,0.0947279,0.939012,0.627941,0.020047,0.356935,0.858094,0.841287,0.822223,0.986005,0.61067,0.34562,0.136965,0.690132,0.881952,0.916633,0.766462,0.997494,0.104539,0.389315,0.682499,0.561165,0.559888,0.304556,0.354818,0.266871,0.417959,0.660074,0.112879,0.209135,0.517152,0.115612,0.965729,0.927718,0.190194,0.697145,0.153059,0.96724,0.546245,0.186402,0.764026,0.121982,0.803539,0.28148,0.98854,0.627031,0.0866383,0.975705,0.849449,0.491772,0.806115,0.663129,0.175288,0.41604,0.662956,0.500544,0.613563,0.0325626,0.369361,0.613556,0.21585,0.979878,0.829597,0.623137,0.10789,0.744429,0.580411,0.428788,0.0523859,0.329295,0.333077,0.668933,0.982114,0.923013,0.447924,0.13607,0.176962,0.551446,0.666771,0.574789,0.671413,0.494192,0.296624,0.449132,0.334003,0.627661,0.883574,0.805205,0.959736,0.844105,0.545404,0.0223497,0.870937,0.5961,0.133137,0.798364,0.105936,0.00798756,|0.564756,0.441468,0.290055,0.245129,0.0115972,0.524596,0.435748,0.0396165,0.492175,0.018347,0.36479,0.0700635,0.693529,0.110265,0.552788,0.436758,0.072409,0.853969,0.543664,0.0280438,0.768453,0.257423,0.759485,0.513646,0.022549,0.330452,0.912266,0.102375,0.325401,0.84822,0.357717,0.845276,0.0651296,0.271928,0.659417,0.230904,0.138935,0.336266,0.783146,0.252392,0.531415,0.73565,0.678993,0.184137,0.299225,0.350778,0.12299,0.484813,0.895276,0.986074,0.695706,0.778175,0.236516,0.590085,0.0518189,0.807191,0.250607,0.318853,0.182446,0.397494,0.822015,0.359618,0.761617,0.123792,0.324942,0.989359,0.492359,0.296351,0.736709,0.84946,0.850309,0.241564,0.114683,0.0742943,0.786986,0.147876,0.869451,0.108728,0.819131,0.164844,0.27613,0.322643,0.939584,0.205777,0.659409,0.63509,0.647604,0.578493,0.557497,0.771384,0.920712,0.980321,0.860671,0.232917,0.702107,0.606416,0.80241,0.511534,0.704581,0.787745,0.939999,0.25191,0.416213,0.854241,0.151317,0.670362,0.539599,0.94289,0.871378,0.907323,0.301836,0.270182,0.305691,0.905751,0.965933,0.455054,0.313048,0.785853,0.455391,0.795804,0.990324,0.0526714,0.0582545,0.732034,0.469164,0.86153,0.428807,0.69583,0.321152,0.371439,0.28018,0.873264,0.786436,0.510073,0.565096,0.168492,0.548574,0.381614,0.532184,0.506734,0.782966,0.729462,0.631391,0.929629,0.05152,0.3435,0.325362,0.957147,0.984568,0.907818,0.0592301,0.220721,0.0750239,0.924512,0.488444,0.465123,0.820543,0.650652,0.0745625,0.790162,0.777538,0.139444,0.179026,0.583151,0.374333,0.272955,0.187055,0.133009,0.31377,0.276853,0.592112,0.193905,0.440663,0.638981,0.412489,0.593987,0.253058,0.834387,0.0304236,0.944737,0.536825,0.971307,0.181249,0.00292373,0.957341,0.92352,0.106631,0.665881,0.520956,0.842993,0.962046,0.0866339,0.900575,0.167433,0.740797,0.446276,0.616969,0.917225,0.825369,0.7376,0.292395,0.980795,0.0121911,0.551014,0.302222,0.828879,0.951863,0.659787,0.115399,0.947129,0.616862,0.471465,0.861306,0.496323,0.576707,0.426441,0.823007,0.261225,0.605573,0.657924,0.931893,0.160432,0.552913,0.174557,0.361536,0.822826,0.266765,0.611712,0.477972,0.746427,0.403023,0.97531,0.597389,0.607239,0.147795,0.364446,0.0475782,0.159187,0.411169,0.31341,0.377023,0.194085,0.167626,0.999411,0.603514,0.0470521,0.966648,0.374868,0.831587,0.451278,0.757261,0.275981,0.342894,0.48537,0.175094,0.207605,0.243098,0.706937,0.440021,0.482241,0.156271,0.509732,0.506006,0.460368,0.147196,0.870936,0.986418,0.478318,0.476754,0.844299,0.404356,0.528143,0.415915,0.399564,0.65935,0.505238,0.950692,0.0957649,0.28786,0.753743,0.227394,0.456905,0.898463,0.0815474,0.211474,0.0222788,0.74547,0.583759,0.723715,0.523679,0.610478,0.827415,0.363006,0.610802,0.819601,0.4215,0.950458,0.180528,0.559814,0.190131,0.455736,0.509159,0.483357,0.385183,0.368704,0.89939,0.156987,0.421686,0.0033986,0.161388,0.569528,0.514638,0.40678,0.0323149,0.686633,0.231619,0.63739,0.530747,0.370137,0.23068,0.81953,0.0404749,0.586322,0.138595,0.623071,0.826902,0.355525,0.84505,0.363124,0.952837,0.369971,0.814419,0.531226,0.156562,0.789611,0.301828,0.501385,0.842706,0.305931,0.600915,0.848172,0.570557,0.564548,0.557144,0.827793,0.347612,0.605938,0.161753,0.978742,0.96299,0.683355,0.0947722,0.463343,0.522929,0.0348058,0.186291,0.743344,0.993471,0.471784,0.0561979,0.206092,0.31545,0.583263,0.210567,0.974678,0.671373,0.687335,0.751455,0.671725,0.172055,0.0703797,0.126218,0.39518,0.0776249,0.196332,0.122379,0.580869,0.161978,0.834789,0.0171626,0.312575,0.814213,0.85796,0.280286,0.329768,0.870361,0.636315,0.550435,0.820378,0.608106,0.0494327,0.924805,0.923078,0.321348,0.301903,0.837825,0.363778,0.362206,0.831166,0.331183,0.955769,0.554907,0.70184,0.226778,0.282424,0.923369,0.841595,0.649033,0.869068,0.120046,0.610607,0.970408,0.936601,0.593056,0.686714,0.927192,0.988128,0.384527,0.896027,0.609435,0.804429,0.0348092,0.934059,0.473235,0.856181,0.853656,0.304561,0.533359,0.331944,0.437759,0.884655,0.403967,0.325081,0.653109,0.719823,0.289059,0.329802,0.181049,0.928158,0.243642,0.922305,0.374334,0.73296,0.458809,0.288119,0.204443,0.481361,0.251342,0.689302,0.338041,0.314163,0.211877,0.949176,0.778246,0.0401539,0.573703,0.619257,0.0100783,0.583252,0.432476,0.10165,0.553403,0.0421119,0.282146,0.578923,0.287012,0.098596,0.599856,0.567893,0.917874,0.18553,0.690506,0.902882,0.0602651,0.330409,0.765025,0.876124,0.68263,0.572221,0.42416,0.289679,0.0983449,0.643387,0.162295,0.388853,0.628804,0.967475,0.349279,0.416634,0.703931,0.0557483,0.73125,0.797522,0.257924,0.859916,0.400235,0.341363,0.684344,0.712326,0.591517,0.526625,0.276715,0.185964,0.029373,0.286209,0.284699,0.38986,0.423925,0.413348,0.0879848,0.62573,0.0999184,0.0473011,0.0364553,0.203854,0.81481,0.836373,0.554304,0.683581,0.478085,0.299352,0.703168,0.720958,0.607396,0.971585,0.862639,0.30373,0.622057,0.646491,0.788429,0.0480279,0.280142,0.785039,0.772531,0.986394,0.132957,0.912051,0.396891,0.101167,0.625274,0.771127,0.612744,0.792408,0.184381,0.552012,0.0916204,0.688353,0.274294,0.565459,0.819309,0.0498812,0.615081,0.542509,0.987185,0.582587,0.730473,0.558978,0.944734,0.862857,0.817157,0.645557,0.463274,0.614936,0.234324,0.908493,0.933104,0.231332,0.599677,0.176997,0.65782,0.00579733,0.998323,0.147014,0.617249,0.293994,0.567397,0.294343,0.665287,0.904245,0.998569,0.667106,0.399337,0.368108,0.858509,0.202156,0.519173,0.988555,0.61746,0.99218,0.87819,0.769728,0.602783,0.163417,0.229649,0.795217,0.340759,0.0483193,0.626395,0.426777,0.864502,0.440813,0.533598,0.519478,0.0398848,0.245276,0.0360172,0.749301,0.120166,0.794257,0.438727,0.985694,0.701181,0.236034,0.434099,0.933463,0.337745,0.477515,0.202407,0.147353,0.462271,0.754292,0.700756,0.986932,0.760402,0.250479,0.78965,0.443971,0.712796,0.419534,0.039826,0.838637,0.994787,0.0422614,0.719165,0.484899,0.218022,0.279592,0.993059,0.913045,0.881478,0.646127,0.136701,0.46033,0.842744,0.854807,0.0725613,0.142521,0.442459,0.0782795,0.27312,0.617733,0.903445,0.793204,0.614373,0.482814,0.401247,0.923602,0.98559,0.266284,0.656842,0.806569,0.565646,0.861875,0.565256,0.516195,0.70125,0.990046,0.673493,0.17759,0.569146,0.907569,0.314631,0.231821,0.0461047,0.289242,0.199838,0.96317,0.530842,0.375589,0.196365,0.440246,0.546341,0.266129,0.600189,0.468701,0.715346,0.183308,0.756632,0.727024,0.041749,0.0976101,0.854558,0.373616,0.951947,0.290586,0.891363,0.149669,0.186259,0.25508,0.498152,0.841316,0.314638,0.283113,0.0586954,0.72031,0.239973,0.425253,0.00692785,0.456151,0.491728,0.132476,0.234571,0.592778,0.599825,0.498203,0.663027,0.557589,0.41649,0.680747,0.096216,0.399965,0.00323856,0.980749,0.297979,0.0490169,0.193977,0.380336,0.441813,0.12842,0.454263,0.126237,0.652375,0.993115,0.895841,0.761863,0.830409,0.901437,0.315974,0.15977,0.241653,0.800435,0.366879,0.467273,0.58851,0.62601,0.657803,0.542517,0.872349,0.139207,0.841317,0.23167,0.882035,0.72965,0.452601,0.140953,0.246887,0.0670469,0.184403,0.53229,0.0204678,0.254571,0.731069,0.896257,0.230329,0.553207,0.74511,0.50999,0.408206,0.709977,0.59725,0.162307,0.667083,0.541474,0.714618,0.583824,0.1406,0.23866,0.345036,0.316863,0.830245,0.532047,0.971523,0.559278,0.0595521,0.6125,0.445092,0.507704,0.785908,0.928117,0.875114,0.482504,0.325276,0.0735228,0.497098,0.434427,0.891739,0.761482,0.763959,0.33738,0.827228,0.876312,0.980564,0.840905,0.308735,0.743496,0.917633,0.826081,0.589088,0.831626,0.522215,0.311752,0.472163,0.868775,0.829729,0.976229,0.530346,0.471787,0.798445,0.524545,0.0878485,0.402551,0.306757,0.150919,0.371068,0.346706,0.689999,0.246879,0.242199,0.855062,0.831777,0.0621033,0.622954,0.313973,0.222735,0.930824,0.793576,0.3265,0.940625,0.303467,0.906635,0.983159,0.337813,0.548381,0.0209107,0.184142,0.416915,0.332788,0.179895,0.0933766,0.397484,0.829015,0.0325623,0.570887,0.226818,0.981823,0.656703,0.366507,0.0149843,0.400644,0.913363,0.760355,0.855829,0.460327,0.237397,0.57202,0.571926,0.415814,0.196206,0.209448,0.331132,0.619202,0.893864,0.448003,0.345892,0.368793,0.248116,0.601991,0.505539,0.351538,0.662031,0.451463,0.0701714,0.255081,0.993616,0.552855,0.712138,0.569276,0.149681,0.628656,0.862476,0.51835,0.523182,0.765041,0.406917,0.78105,0.0415996,0.348485,0.722726,0.52253,0.21008,0.642382,0.167875,0.863499,0.660828,0.782515,0.220765,0.522574,0.0384629,0.0529319,0.146176,0.71137,0.605363,0.386692,0.231773,0.547465,0.0961722,0.450315,0.682432,0.065305,0.231214,0.886084,0.438812,0.104712,0.405453,0.396446,0.99976,0.551197,0.832781,0.332832,0.351816,0.327196,0.913122,0.225798,0.773884,0.0698046,0.734346,0.225586,0.394808,0.56609,0.326778,0.979788,0.0613906,0.0285214,0.902394,0.837235,0.98418,0.793917,0.364674,0.890675,0.0647041,0.587925,0.617855,0.226057,0.565803,0.774945,0.565145,0.474533,0.454454,0.4805,0.687056,0.0769094,0.823539,0.278802,0.854012,0.462509,0.0249278,0.652363,0.108152,0.429499,0.139003,0.860197,0.219152,0.891034,0.981519,0.281063,0.301945,0.353916,0.698869,0.278897,0.0194556,0.402782,0.318327,0.217026,0.818374,0.578879,0.690451,0.170904,0.842751,0.41678,0.389079,0.219753,0.156332,0.258356,0.738185,0.538583,0.962434,0.0443944,0.784832,0.11191,0.291193,|0.130606,0.181603,0.423419,0.593874,0.805803,0.686394,0.635833,0.112864,0.530886,0.504126,0.950859,0.667693,0.11353,0.968512,0.31928,0.863544,0.923413,0.0262902,0.437393,0.126038,0.769673,0.552615,0.670552,0.38765,0.794051,0.154601,0.934162,0.729362,0.573535,0.803337,0.379767,0.104292,0.269921,0.89243,0.067314,0.851048,0.903869,0.89414,0.58393,0.440417,0.212246,0.707034,0.853435,0.393572,0.847861,0.649752,0.165378,0.799,0.451706,0.125671,0.761703,0.277468,0.922285,0.237185,0.119963,0.770018,0.405372,0.860846,0.962013,0.0096308,0.314336,0.124271,0.891191,0.4657,0.640668,0.67571,0.970943,0.123343,0.32702,0.394728,0.803786,0.0438275,0.168632,0.630413,0.229558,0.489542,0.540805,0.308316,0.258595,0.560655,0.161027,0.175878,0.885628,0.500178,0.268687,0.0896354,0.113915,0.195655,0.62143,0.809217,0.260385,0.815248,0.6617,0.757378,0.217893,0.476815,0.834586,0.721835,0.930696,0.333507,0.425098,0.828949,0.729398,0.800424,0.348531,0.626816,0.917248,0.826056,0.507396,0.819927,0.97827,0.130253,0.422969,0.0687561,0.505917,0.575327,0.598635,0.97248,0.76086,0.236741,0.966368,0.807085,0.901846,0.42694,0.606588,0.00210208,0.504566,0.636038,0.469484,0.0487976,0.610044,0.738949,0.609605,0.103378,0.795828,0.85654,0.14347,0.83324,0.382379,0.584803,0.37038,0.10474,0.73412,0.314537,0.464059,0.560568,0.100126,0.139086,0.424337,0.773598,0.157849,0.891845,0.201241,0.886699,0.389582,0.498246,0.565492,0.6896,0.106908,0.753497,0.871295,0.0130212,0.562708,0.634954,0.771904,0.737579,0.0221777,0.455384,0.82716,0.429941,0.542401,0.306156,0.126704,0.0438518,0.490648,0.771606,0.199199,0.309235,0.419916,0.127058,0.53046,0.895879,0.0418542,0.894602,0.154678,0.263893,0.102167,0.421011,0.235729,0.026028,0.270691,0.975743,0.536274,0.0924754,0.0766276,0.958105,0.457303,0.10306,0.200351,0.530499,0.772663,0.924563,0.291087,0.996327,0.360312,0.108872,0.950609,0.368335,0.306359,0.174217,0.809263,0.825058,0.520159,0.215562,0.0118968,0.0708748,0.879458,0.759299,0.645292,0.857596,0.67848,0.836042,0.440809,0.197698,0.366454,0.325881,0.777646,0.643196,0.348769,0.0911457,0.379667,0.968493,0.468704,0.462687,0.931367,0.622352,0.0719247,0.775882,0.900988,0.152193,0.930496,0.0393921,0.12626,0.0441811,0.141604,0.076771,0.184718,0.375183,0.262136,0.270487,0.137548,0.152796,0.645232,0.398596,0.979286,0.41584,0.357031,0.0402357,0.492086,0.467514,0.94405,0.497339,0.197861,0.10203,0.980587,0.0549964,0.234357,0.566719,0.223126,0.551239,0.912797,0.919744,0.221289,0.145965,0.769637,0.789953,0.304739,0.860437,0.850635,0.147327,0.650844,0.617412,0.361719,0.488555,0.821728,0.0930122,0.556357,0.80505,0.614443,0.288243,0.83296,0.720749,0.381925,0.560154,0.311754,0.595335,0.163657,0.503616,0.409521,0.444536,0.132595,0.147531,0.281826,0.169591,0.0652137,0.758393,0.448668,0.137587,0.990865,0.799338,0.205263,0.715924,0.999887,0.643439,0.870816,0.598466,0.0429283,0.176758,0.90471,0.714636,0.108637,0.912769,0.833766,0.494974,0.361469,0.249776,0.984093,0.962875,0.555503,0.690222,0.500687,0.702985,0.659452,0.112476,0.849059,0.319171,0.495686,0.379255,0.287431,0.614599,0.61338,0.665318,0.99055,0.48637,0.999484,0.347015,0.704139,0.0327896,0.508336,0.55801,0.165997,0.281208,0.929569,0.196229,0.26372,0.640657,0.869313,0.60033,0.385299,0.1152,0.679482,0.233716,0.982211,0.241199,0.0956122,0.0901769,0.0924461,0.149288,0.109921,0.458754,0.357003,0.975426,0.379267,0.561829,0.777748,0.0105609,0.98468,0.996367,0.88191,0.775063,0.214828,0.103792,0.97633,0.862195,0.263193,0.057144,0.667742,0.272704,0.689893,0.858589,0.524937,0.637364,0.529724,0.730384,0.287801,0.383669,0.589291,0.205459,0.779138,0.658559,0.531495,0.609946,0.337933,0.623804,0.515577,0.387829,0.468686,0.0811818,0.183429,0.258961,0.616532,0.155707,0.65505,0.319865,0.659042,0.164895,0.526823,0.566746,0.768887,0.350287,0.842881,0.690594,0.785268,0.934001,0.803972,0.677035,0.590701,0.699295,0.0740584,0.228915,0.324325,0.503108,0.907585,0.269539,0.066968,0.863968,0.539474,0.291065,0.111269,0.388461,0.473102,0.193363,0.262715,0.983443,0.482383,0.109151,0.882194,0.838947,0.02327,0.532463,0.0925725,0.441138,0.194308,0.481068,0.632763,0.771751,0.164419,0.251944,0.242739,0.333057,0.68867,0.625333,0.622438,0.485223,0.891317,0.282683,0.0404967,0.131253,0.163897,0.974951,0.694737,0.0289119,0.126829,0.256863,0.638484,0.854199,0.0186771,0.526233,0.00855309,0.018406,0.64215,0.852238,0.498787,0.164259,0.184186,0.818358,0.279878,0.331886,0.417151,0.143189,0.47274,0.014167,0.312302,0.693837,0.547973,0.470832,0.903505,0.218446,0.029588,0.134084,0.605579,0.567664,0.913618,0.086695,0.19396,0.827485,0.10685,0.259079,0.227003,0.120695,0.762313,0.0637666,0.0841224,0.422051,0.947807,0.799506,0.480138,0.0354272,0.117517,0.618673,0.58057,0.991121,0.216883,0.250691,0.078589,0.349816,0.425093,0.714728,0.907466,0.345827,0.759307,0.320135,0.783762,0.432923,0.838806,0.351783,0.73617,0.963783,0.122039,0.255875,0.809428,0.873964,0.94436,0.851488,0.464309,0.947028,0.164945,0.321027,0.608216,0.753673,0.484122,0.788306,0.768435,0.988664,0.683738,0.625335,0.98879,0.110709,0.898359,0.263541,0.334554,0.392973,0.595832,0.460991,0.32871,0.154916,0.362615,0.315868,0.170036,0.0277725,0.0207516,0.813491,0.29747,0.908946,0.317296,0.0457935,0.392971,0.364635,0.579561,0.573644,0.568435,0.36046,0.683859,0.627251,0.650544,0.830582,0.231643,0.462616,0.898307,0.909222,0.00777334,0.2422,0.988452,0.433717,0.831826,0.793872,0.949879,0.90737,0.547019,0.700512,0.00417042,0.341481,0.636209,0.293588,0.265467,0.235466,0.773818,0.481012,0.505028,0.593196,0.921294,0.301009,0.326186,0.852213,0.100847,0.358771,0.658927,0.550705,0.244625,0.251063,0.0575239,0.185818,0.856639,0.0394285,0.075939,0.849358,0.850932,0.0147402,0.764524,0.298375,0.543804,0.672844,0.643041,0.989245,0.992969,0.168486,0.248056,0.862442,0.191896,0.61623,0.934874,0.318319,0.608239,0.826704,0.879688,0.449387,0.00448769,0.547933,0.263679,0.412697,0.992966,0.0241993,0.948988,0.276227,0.468923,0.0612987,0.214491,0.119102,0.605964,0.780841,0.97144,0.908561,0.386981,0.805869,0.142971,0.870304,0.697917,0.160042,0.552958,0.171652,0.532203,0.0578153,0.26008,0.283461,0.224946,0.564301,0.0501804,0.245264,0.735322,0.392463,0.674644,0.199903,0.551741,0.439929,0.778628,0.188233,0.0495437,0.357148,0.32762,0.0717603,0.904455,0.868529,0.161951,0.938795,0.316936,0.952841,0.688281,0.894421,0.217967,0.679646,0.0725023,0.326131,0.694875,0.30975,0.771882,0.0430989,0.599385,0.756813,0.914593,0.83369,0.40874,0.858903,0.117159,0.758923,0.686522,0.278849,0.323937,0.988143,0.227932,0.287968,0.164647,0.0667306,0.971222,0.782028,0.300717,0.805693,0.355386,0.27025,0.268138,0.911655,0.0262203,0.283102,0.231301,0.392729,0.930052,0.799143,0.585218,0.126936,0.584825,0.257239,0.776833,0.839287,0.872038,0.661993,0.371273,0.214161,0.472656,0.28152,0.354439,0.0603554,0.377585,0.237591,0.950245,0.760457,0.718008,0.786982,0.693742,0.512812,0.34712,0.397261,0.726644,0.748819,0.61223,0.97082,0.923808,0.527296,0.11309,0.88344,0.977815,0.735081,0.874929,0.785493,0.384935,0.946228,0.321835,0.0958361,0.614976,0.406855,0.47487,0.710588,0.919701,0.850727,0.738205,0.295104,0.0386437,0.139053,0.532208,0.0165803,0.20759,0.641031,0.150065,0.346309,0.820449,0.844248,0.764298,0.79046,0.918096,0.197613,0.664043,0.25904,0.758561,0.290668,0.52303,0.422284,0.887737,0.757531,0.410618,0.330352,0.0505418,0.179078,0.393299,0.90378,0.0928798,0.295156,0.0611104,0.241699,0.575773,0.288802,0.0361935,0.257277,0.584372,0.514975,0.846713,0.215214,0.231166,0.370059,0.220006,0.409324,0.227784,0.189475,0.464534,0.11246,0.756295,0.784176,0.927294,0.717325,0.686193,0.865148,0.738124,0.224408,0.751885,0.870727,0.595573,0.748269,0.325735,0.998122,0.705786,0.598529,0.220561,0.0258407,0.185819,0.295461,0.0604439,0.574668,0.752952,0.390198,0.0756984,0.314772,0.615255,0.58961,0.69725,0.717524,0.749061,0.664359,0.185185,0.793979,0.774164,0.425292,0.141152,0.00291121,0.847513,0.0957922,0.162463,0.401276,0.886388,0.895916,0.868394,0.25803,0.583673,0.552735,0.831282,0.226367,0.364215,0.991439,0.779405,0.840708,0.559823,0.365185,0.360596,0.142106,0.068336,0.392541,0.962099,0.660931,0.880098,0.499481,0.381265,0.87258,0.619044,0.32109,0.0487619,0.723864,0.768664,0.828004,0.924567,0.504211,0.252297,0.456827,0.165007,0.0137414,0.0840027,0.156885,0.444221,0.0903327,0.138373,0.859796,0.979677,0.554737,0.398815,0.920623,0.845397,0.770253,0.959582,0.232454,0.955947,0.884123,0.118447,0.0838092,0.494237,0.0294958,0.753732,0.954587,0.60793,0.519389,0.15146,0.39108,0.150376,0.500586,0.787496,0.421094,0.0258363,0.683443,0.106894,0.944978,0.186034,0.849309,0.130836,0.189751,0.515023,0.320145,0.1789,0.0613167,0.474485,0.625074,0.719213,0.299201,0.101002,0.604545,0.0787313,0.818501,0.266569,0.369545,0.677811,0.849611,0.0526253,0.250246,0.899144,0.572439,0.494241,0.71986,0.517971,0.0861508,0.00420886,0.389066,0.0509373,0.545042,0.0497705,0.65125,0.207171,0.59538,0.896123,0.580481,0.478553,0.31911,0.0588071,0.81889,0.881336,0.928972,0.807154,0.507278,0.521904,0.321888,0.579502,0.807161,0.772472,0.39005,0.351597,0.54224,0.673397,0.560606,|0.624836,0.181431,0.208839,0.508028,0.233906,0.0894041,0.323084,0.512596,0.624288,0.926253,0.935571,0.257394,0.844156,0.18072,0.571568,0.946171,0.196245,0.09514,0.424028,0.706779,0.643967,0.0348367,0.656256,0.559925,0.983947,0.572102,0.676976,0.62797,0.867359,0.670648,0.842795,0.409644,0.768368,0.104468,0.519582,0.813149,0.265015,0.54374,0.362785,0.377492,0.469094,0.398678,0.912839,0.0245253,0.629138,0.840106,0.34321,0.197946,0.424812,0.683392,0.167617,0.736303,0.69892,0.00971591,0.339475,0.872879,0.020598,0.33802,0.474427,0.983786,0.606022,0.462695,0.990782,0.053842,0.791354,0.0129701,0.973646,0.432782,0.174053,0.352256,0.162805,0.0102456,0.481093,0.53208,0.699693,0.575427,0.306267,0.31108,0.400134,0.688375,0.285527,0.707291,0.675262,0.42164,0.732324,0.889439,0.363673,0.465403,0.801065,0.254796,0.803866,0.315571,0.771356,0.0829335,0.791772,0.294069,0.705789,0.698317,0.456137,0.533236,0.274761,0.327827,0.690625,0.313728,0.900062,0.303365,0.293931,0.93145,0.798021,0.261176,0.35394,0.708393,0.332461,0.881119,0.334853,0.499959,0.318143,0.507913,0.824577,0.194716,0.129335,0.431678,0.411498,0.0581452,0.340723,0.292505,0.467322,0.441485,0.127933,0.510565,0.721635,0.212653,0.952669,0.540016,0.76589,0.696058,0.506714,0.563724,0.682088,0.0998586,0.90287,0.252636,0.906034,0.0134131,0.439337,0.399759,0.653447,0.0622865,0.23965,0.651197,0.678271,0.439271,0.133079,0.183272,0.533127,0.422665,0.962279,0.617956,0.419685,0.706847,0.8236,0.502751,0.647583,0.478083,0.954146,0.334365,0.647923,0.804844,0.711495,0.492414,0.495829,0.292016,0.0436599,0.990273,0.243818,0.956522,0.632876,0.741777,0.653833,0.938013,0.969219,0.0759418,0.71617,0.399458,0.488828,0.0978103,0.917704,0.284644,0.878505,0.941179,0.636665,0.305726,0.781142,0.161418,0.549977,0.319516,0.321203,0.598901,0.760995,0.21589,0.739263,0.24784,0.0580084,0.0844099,0.575325,0.478178,0.241719,0.494808,0.35705,0.820503,0.901212,0.617997,0.690204,0.854229,0.975529,0.342432,0.564478,0.832249,0.501761,0.470896,0.145265,0.656993,0.420711,0.431442,0.39045,0.424169,0.0672849,0.725091,0.0888203,0.68342,0.660149,0.672902,0.653341,0.547028,0.669278,0.946972,0.466713,0.116118,0.722415,0.345698,0.461505,0.250466,0.0145438,0.0294045,0.221377,0.474662,0.682668,0.460146,0.331028,0.427439,0.266535,0.185979,0.879797,0.406684,0.133683,0.970045,0.0952394,0.79106,0.125674,0.919226,0.114377,0.914308,0.43388,0.239779,0.770957,0.538685,0.933285,0.349242,0.352316,0.827344,0.636936,0.877374,0.236845,0.133562,0.448868,0.89947,0.678387,0.224615,0.774745,0.0430716,0.728614,0.656982,0.156964,0.4793,0.7223,0.0280501,0.771433,0.43663,0.989445,0.544199,0.475122,0.0161885,0.024814,0.620248,0.712304,0.937856,0.604447,0.273508,0.631945,0.17166,0.237524,0.756028,0.925781,0.794482,0.810437,0.66448,0.853312,0.0241358,0.727247,0.794128,0.600712,0.771867,0.493568,0.626923,0.33885,0.179039,0.575951,0.0820253,0.00525689,0.361709,0.108135,0.281529,0.862539,0.680512,0.12378,0.0693812,0.65563,0.310697,0.346882,0.22872,0.558454,0.910495,0.199869,0.897457,0.566203,0.196056,0.560069,0.744122,0.682647,0.364074,0.926616,0.0675302,0.0932738,0.435115,0.0697336,0.397591,0.81337,0.800081,0.0809516,0.206655,0.284946,0.920607,0.517257,0.955373,0.800782,0.615258,0.122469,0.112194,0.166791,0.725948,0.941369,0.449527,0.759948,0.737596,0.405332,0.690242,0.582369,0.603821,0.213165,0.313956,0.93477,0.112956,0.76741,0.372283,0.110923,0.169701,0.161402,0.746825,0.493319,0.915843,0.105962,0.902473,0.667029,0.796975,0.471144,0.428325,0.221346,0.858735,0.266541,0.125238,0.236611,0.878061,0.634915,0.914142,0.650706,0.922784,0.160728,0.945553,0.45,0.0956346,0.219992,0.455937,0.425197,0.0719965,0.287077,0.682059,0.565574,0.358773,0.967725,0.0257221,0.164402,0.290178,0.792903,0.917888,0.208194,0.271339,0.936212,0.817953,0.405222,0.15391,0.966088,0.00164306,0.669305,0.161188,0.851497,0.173237,0.284977,0.849476,0.18246,0.55048,0.606787,0.204617,0.356437,0.925993,0.060957,0.390052,0.924726,0.719595,0.599371,0.907162,0.574835,0.819384,0.702177,0.452572,0.533229,0.162833,0.0858532,0.196296,0.936625,0.930336,0.152527,0.804021,0.592637,0.845302,0.101858,0.184727,0.54857,0.195766,0.31245,0.0904089,0.928402,0.343918,0.269592,0.111102,0.500386,0.303738,0.435356,0.725932,0.070307,0.00391603,0.511098,0.374003,0.299322,0.157406,0.79205,0.124385,0.713625,0.445084,0.699221,0.396279,0.858585,0.922613,0.374242,0.925683,0.486044,0.248539,0.954425,0.546732,0.418175,0.960512,0.481943,0.850872,0.774729,0.182505,0.44031,0.233847,0.904037,0.315515,0.253034,0.949895,0.392689,0.112719,0.191635,0.62588,0.0372787,0.0738672,0.297808,0.0898336,0.0277155,0.318686,0.794805,0.279795,0.381053,0.105296,0.26078,0.779947,0.294749,0.586981,0.925343,0.738734,0.541215,0.893067,0.0706434,0.66753,0.652523,0.752496,0.543665,0.307252,0.999058,0.275419,0.346395,0.693158,0.693545,0.439696,0.626702,0.435785,0.689016,0.292686,0.913194,0.664349,0.203468,0.266241,0.44349,0.0877282,0.0624675,0.579869,0.942789,0.451357,0.696397,0.202191,0.0688347,0.800944,0.529457,0.714372,0.14102,0.195959,0.149363,0.149678,0.425157,0.138529,0.509748,0.756622,0.845637,0.643201,0.38821,0.74371,0.520047,0.122614,0.663824,0.83593,0.556171,0.484113,0.232112,0.495164,0.9292,0.394065,0.0662361,0.912384,0.150747,0.931454,0.161829,0.38445,0.719647,0.31868,0.690914,0.177491,0.984308,0.260032,0.886115,0.00444651,0.812041,0.316757,0.82291,0.520721,0.35152,0.0192561,0.370672,0.553955,0.918805,0.0815502,0.341653,0.680935,0.180025,0.497177,0.99618,0.240206,0.587894,0.669157,0.773839,0.963399,0.818302,0.744672,0.662064,0.559255,0.240017,0.587733,0.863531,0.568083,0.821706,0.266246,0.15408,0.955897,0.51553,0.0566254,0.638195,0.777928,0.365362,0.0950906,0.41259,0.469495,0.890143,0.311963,0.685704,0.452037,0.507328,0.443972,0.625715,6.62208e-05,0.961936,0.0196933,0.582589,0.496108,0.920182,0.767286,0.48079,0.889093,0.853848,0.71072,0.00238407,0.568272,0.451149,0.358808,0.773658,0.487921,0.466725,0.0470688,0.57092,0.153749,0.393113,0.180147,0.917888,0.857629,0.199225,0.378932,0.785726,0.776429,0.449206,0.0195462,0.311054,0.49939,0.0764386,0.293738,0.0165774,0.846812,0.721666,0.650313,0.0356476,0.137112,0.983566,0.550968,0.940392,0.175434,0.645643,0.802849,0.832001,0.950338,0.307012,0.794698,0.543312,0.938625,0.0527615,0.547658,0.329164,0.783081,0.63796,0.809503,0.78522,0.807641,0.291821,0.223143,0.382437,0.106442,0.426598,0.162191,0.663436,0.409513,0.212562,0.412259,0.837421,0.0183345,0.577681,0.570674,0.89319,0.736921,0.778617,0.417827,0.366446,0.0860814,0.616261,0.429973,0.782881,0.028594,0.942373,0.0136833,0.343436,0.892018,0.745641,0.459408,0.846411,0.131286,0.152401,0.0351149,0.886944,0.728852,0.891171,0.00459629,0.73389,0.7811,0.275498,0.371914,0.272445,0.50637,0.921424,0.796869,0.506502,0.938307,0.359739,0.95527,0.593161,0.72603,0.502518,0.768327,0.630723,0.347996,0.816511,0.721703,0.523776,0.733574,0.502897,0.12494,0.291006,0.873082,0.489807,0.455902,0.00546229,0.190722,0.382625,0.472985,0.0923401,0.060476,0.988175,0.180702,0.118317,0.848916,0.552226,0.344433,0.680422,0.0939535,0.157585,0.730257,0.998413,0.558069,0.35781,0.152481,0.339025,0.546016,0.187274,0.306162,0.924,0.18998,0.188298,0.386731,0.763258,0.956344,0.102404,0.101447,0.744729,0.11739,0.65363,0.853242,0.308569,0.578352,0.887573,0.929825,0.886187,0.106307,0.341263,0.689907,0.787212,0.00772083,0.725435,0.361046,0.123193,0.765702,0.700347,0.520627,0.52456,0.514091,0.226849,0.825164,0.354405,0.273193,0.83699,0.0391348,0.472888,0.533202,0.283958,0.926832,0.821073,0.384551,0.472597,0.80476,0.590359,0.404152,0.138489,0.20912,0.162901,0.775987,0.236373,0.616988,0.556612,0.438044,0.688926,0.788454,0.749655,0.121814,0.541874,0.806188,0.123445,0.694564,0.0162022,0.470763,0.193097,0.169444,0.19052,0.952293,0.64918,0.224752,0.575066,0.0536951,0.856275,0.3538,0.500257,0.719302,0.410162,0.346536,0.171814,0.499353,0.439241,0.385554,0.979336,0.442773,0.466333,0.473535,0.213573,0.547953,0.985319,0.465349,0.396404,0.466737,0.162282,0.426933,0.15056,0.326903,0.0364541,0.0184537,0.91794,0.722068,0.952247,0.364746,0.78956,0.92267,0.637885,0.147967,0.688573,0.666084,0.940375,0.101755,0.997599,0.562808,0.189814,0.530504,0.723153,0.43731,0.148097,0.718488,0.173188,0.890136,0.623471,0.463218,0.931625,0.0552536,0.0305277,0.527675,0.854979,0.551106,0.904539,0.0406415,0.361238,0.117876,0.030903,0.721991,0.785688,0.506954,0.365449,0.461939,0.226351,0.938535,0.0352817,0.389365,0.24236,0.916538,0.888419,0.869404,0.000139475,0.733482,0.691441,0.172634,0.474759,0.90975,0.246308,0.555225,0.681953,0.503064,0.46144,0.152644,0.355075,0.358806,0.0561401,0.442793,0.496674,0.873351,0.712805,0.556886,0.802061,0.70534,0.989439,0.331406,0.624271,0.419233,0.54893,0.891678,0.47563,0.318466,0.444725,0.124387,0.296349,0.98355,0.502423,0.501536,0.224458,0.687364,0.795123,0.163187,0.653953,0.832723,0.617332,0.462784,0.812224,0.178652,0.655543,0.460215,0.992909,0.517082,0.820485,0.985912,0.472055,0.726411,0.585857,0.121949,0.978468,0.379588,0.894195,0.689264,0.196653,0.150994,0.721843,0.725883,0.834666,0.431814,|0.767537,0.536492,0.294445,0.739623,0.794702,0.889902,0.909845,0.365841,0.0839314,0.740797,0.282724,0.397607,0.520453,0.271377,0.400703,0.13142,0.687135,0.498913,0.0519947,0.619525,0.207487,0.439047,0.0295436,0.521838,0.962679,0.437888,0.205455,0.590353,0.208358,0.94144,0.894023,0.696189,0.399768,0.142705,0.980855,0.0712843,0.47436,0.383951,0.214013,0.350112,0.440856,0.194876,0.938299,0.39764,0.858744,0.220599,0.785748,0.183222,0.752827,0.817307,0.0670018,0.223584,0.937405,0.805716,0.0607207,0.113589,0.560903,0.263471,0.808255,0.249326,0.534457,0.694032,0.929588,0.179045,0.660079,0.0787012,0.39393,0.0249457,0.203256,0.179965,0.528606,0.304496,0.420496,0.0319167,0.899222,0.344478,0.480555,0.514757,0.292937,0.494703,0.124111,0.465032,0.0388358,0.93043,0.730974,0.955647,0.745221,0.220918,0.470948,0.870759,0.356939,0.666145,0.887677,0.100162,0.701016,0.230566,0.969149,0.220893,0.928733,0.384024,0.288404,0.501494,0.384014,0.7243,0.0951967,0.160536,0.256761,0.418326,0.5646,0.68435,0.377934,0.444995,0.684383,0.0920792,0.674954,0.0112342,0.0743517,0.719342,0.408241,0.240197,0.123688,0.0157087,0.221118,0.828093,0.49556,0.100645,0.0348464,0.572203,0.661655,0.602771,0.953186,0.890487,0.608563,0.270158,0.361977,0.538591,0.522517,0.890307,0.815033,0.0375064,0.0636526,0.179185,0.879533,0.784335,0.371573,0.216171,0.372158,0.896648,0.415839,0.435931,0.493587,0.599205,0.784335,0.6825,0.741347,0.102652,0.271323,0.136679,0.724234,0.0642673,0.526581,0.57836,0.943811,0.294266,0.220004,0.456372,0.361778,0.0561385,0.840765,0.215755,0.0962867,0.0372192,0.74136,0.774581,0.842523,0.307243,0.822916,0.853446,0.654082,0.0636165,0.213627,0.233127,0.920643,0.257909,0.18669,0.892914,0.905232,0.740243,0.576792,0.630963,0.649762,0.0505344,0.117148,0.955133,0.413113,0.180347,0.735901,0.989639,0.0765694,0.915197,0.789954,0.467105,0.8148,0.660867,0.362876,0.174749,0.90614,0.508286,0.431466,0.0911369,0.764415,0.365737,0.540341,0.982591,0.299256,0.717306,0.466781,0.568197,0.225741,0.965022,0.659139,0.25629,0.0728921,0.141356,0.820463,0.609693,0.300241,0.118518,0.215803,0.39241,0.346534,0.843036,0.873968,0.121448,0.814519,0.822051,0.421695,0.0934545,0.0389053,0.842382,0.0802048,0.639618,0.285928,0.118599,0.135025,0.0114287,0.548346,0.676965,0.591182,0.773196,0.227102,0.995073,0.52206,0.691878,0.150783,0.88008,0.111354,0.547046,0.0111813,0.878878,0.914155,0.547912,0.450143,0.530878,0.404991,0.748324,0.347543,0.787769,0.117003,0.409932,0.582348,0.0805833,0.779641,0.745966,0.0165634,0.717998,0.628754,0.146106,0.485762,0.593119,0.140127,0.789786,0.429286,0.633435,0.564623,0.927411,0.186598,0.684495,0.84417,0.808955,0.544579,0.059227,0.113338,0.138643,0.0984783,0.278688,0.356179,0.656645,0.464772,0.181201,0.456953,0.800028,0.681653,0.711599,0.620981,0.926395,0.158868,0.0989276,0.458717,0.703649,0.690714,0.666597,0.319841,0.153777,0.134596,0.71052,0.344248,0.801865,0.898622,0.240863,0.391839,0.198842,0.0622228,0.945954,0.766569,0.963381,0.750434,0.0429552,0.0160452,0.58106,0.904484,0.529465,0.160406,0.171982,0.932672,0.405887,0.573932,0.211742,0.00167334,0.747368,0.332802,0.427283,0.661307,0.212307,0.813653,0.262029,0.117029,0.100738,0.962185,0.997041,0.509176,0.693586,0.393486,0.804302,0.236498,0.450512,0.0822049,0.996904,0.267628,0.444394,0.126219,0.87734,0.815429,0.908126,0.687754,0.345011,0.508732,0.496295,0.701666,0.671,0.885971,0.0504735,0.732309,0.00527251,0.0184798,0.585724,0.7553,0.527671,0.245996,0.616659,0.274423,0.737314,0.623105,0.50695,0.149786,0.642508,0.665816,0.943403,0.165707,0.824994,0.807574,0.0175404,0.564761,0.612518,0.353988,0.35833,0.0982971,0.836354,0.195069,0.933872,0.357436,0.34589,0.303208,0.0497927,0.653343,0.0704616,0.208585,0.869455,0.204862,0.769499,0.938304,0.364781,0.097463,0.956032,0.653959,0.651165,0.20203,0.58874,0.473697,0.667917,0.962588,0.612697,0.914803,0.680071,0.0135091,0.383895,0.0373341,0.419142,0.943437,0.912666,0.889146,0.210241,0.0268165,0.668949,0.0715045,0.264146,0.488674,0.633909,0.216258,0.735849,0.235501,0.972652,0.0650827,0.427603,0.0938131,0.929642,0.977083,0.393731,0.978526,0.498211,0.683546,0.413384,0.829883,0.96141,0.878634,0.256719,0.00229031,0.470986,0.964432,0.148882,0.0704838,0.324078,0.585208,0.576057,0.775556,0.413873,0.683457,0.69989,0.945137,0.853487,0.243386,0.00412548,0.909173,0.174651,0.856292,0.950345,0.789843,0.98848,0.746535,0.823712,0.170675,0.766948,0.269588,0.00208938,0.6984,0.499116,0.850414,0.324755,0.0774177,0.251334,0.340674,0.600315,0.375422,0.4662,0.514445,0.0451634,0.329569,0.967001,0.0650025,0.0855694,0.439093,0.813713,0.587893,0.132875,0.501933,0.609168,0.860527,0.0329906,0.987181,0.668001,0.856489,0.0313737,0.0141659,0.754556,0.118809,0.742456,0.38057,0.724753,0.136504,0.838945,0.884805,0.152465,0.0646713,0.221387,0.59197,0.250834,0.230145,0.912746,0.788146,0.979251,0.941012,0.113541,0.321498,0.209053,0.386835,0.930704,0.842179,0.206347,0.841462,0.606587,0.622263,0.751112,0.0719665,0.160151,0.0854169,0.344919,0.40187,0.554027,0.740074,0.709337,0.294194,0.605016,0.178483,0.716875,0.705725,0.791201,0.809383,0.0419725,0.71667,0.453353,0.868147,0.74166,0.482975,0.308387,0.0274752,0.508575,0.439176,0.524416,0.0627272,0.297162,0.162157,0.418271,0.069197,0.85571,0.803756,0.597728,0.630945,0.315898,0.0587035,0.315142,0.0462039,0.685561,0.904977,0.755488,0.592704,0.817102,0.112942,0.933022,0.390697,0.580524,0.454517,0.0506235,0.052981,0.577829,0.815615,0.869927,0.30656,0.146877,0.457552,0.617082,0.0351194,0.728362,0.206422,0.988837,0.99018,0.69968,0.142043,0.850808,0.678586,0.256441,0.578389,0.194243,0.273834,0.557986,0.258368,0.839552,0.0142419,0.76262,0.201605,0.129759,0.870846,0.20846,0.136416,0.823897,0.181782,0.789099,0.408553,0.353568,0.85495,0.0801846,0.0289074,0.934895,0.28552,0.489738,0.998758,0.202639,0.779685,0.623747,0.442989,0.233362,0.563391,0.847042,0.926985,0.270924,0.694741,0.0132698,0.030452,0.348937,0.540153,0.249777,0.0668017,0.956644,0.361154,0.972076,0.178259,0.782263,0.978333,0.917672,0.495829,0.621915,0.265822,0.66786,0.675792,0.218923,0.998097,0.895694,0.424972,0.676892,0.472923,0.269316,0.935222,0.474468,0.146073,0.677171,0.110598,0.249059,0.214227,0.281756,0.439412,0.692604,0.714813,0.916858,0.126183,0.567161,0.422312,0.260359,0.600371,0.769359,0.22689,0.790164,0.433372,0.689731,0.928291,0.26192,0.547716,0.356949,0.0765188,0.0666768,0.140428,0.413593,0.549847,0.538468,0.40203,0.489309,0.146184,0.50304,0.968832,0.476201,0.161209,0.636363,0.719082,0.564572,0.356488,0.134469,0.114163,0.932902,0.453692,0.962735,0.641158,0.0752824,0.997451,0.48587,0.116218,0.7519,0.624986,0.0362388,0.393131,0.261517,0.569821,0.311659,0.974953,0.250398,0.549217,0.990157,0.389753,0.0271199,0.276608,0.186934,0.365488,0.0815107,0.0115623,0.0772093,0.501957,0.0673239,0.147913,0.276183,0.539594,0.0227962,0.386668,0.229025,0.608997,0.428592,0.753933,0.681064,0.971514,0.377542,0.747107,0.978728,0.553653,0.0980136,0.661008,0.891934,0.980353,0.257738,0.313436,0.857921,0.226799,0.752408,0.628495,0.146552,0.872286,0.311728,0.972528,0.55408,0.298323,0.759336,0.583654,0.185765,0.537851,0.924111,0.216603,0.808476,0.424679,0.8015,0.500526,0.0848479,0.857645,0.898758,0.309629,0.347491,0.788859,0.900837,0.23494,0.109886,0.536776,0.611009,0.104041,0.993119,0.6973,0.565281,0.843363,0.626663,0.00241923,0.0349278,0.133143,0.713412,0.985742,0.83334,0.429057,0.479878,0.253907,0.00797099,0.936425,0.313545,0.991961,0.428214,0.708763,0.37857,0.685327,0.0914896,0.303836,0.509747,0.935811,0.335258,0.122839,0.671394,0.424992,0.0978671,0.393862,0.410446,0.635732,0.17265,0.528138,0.912647,0.643465,0.181815,0.471708,0.961626,0.764523,0.121882,0.230914,0.587183,0.139729,0.826257,0.984452,0.400203,0.115652,0.909453,0.464795,0.928618,0.861636,0.510193,0.887538,0.981781,0.959856,0.887179,0.22912,0.259189,0.861834,0.131651,0.72609,0.490073,0.73089,0.475724,0.214621,0.899316,0.485365,0.843531,0.0551718,0.256174,0.150812,0.565162,0.41633,0.452106,0.98452,0.972442,0.53696,0.36512,0.698419,0.363865,0.714204,0.662537,0.85367,0.741313,0.817223,0.62986,0.503719,0.383387,0.684947,0.461449,0.0245237,0.975361,0.714661,0.310026,0.428304,0.575341,0.175947,0.974209,0.834661,0.607855,0.408462,0.555484,0.872669,0.414851,0.0977426,0.429242,0.797715,0.0229267,0.185334,0.14478,0.581677,0.964597,0.786566,0.0494772,0.470773,0.54278,0.384245,0.895032,0.819781,0.78017,0.961992,0.0433024,0.468287,0.290528,0.257341,0.163372,0.47013,0.834679,0.717418,0.526397,0.371663,0.633969,0.447276,0.883046,0.223495,0.819881,0.248333,0.210808,0.205848,0.688049,0.358536,0.0876286,0.116046,0.586739,0.852767,0.98222,0.0384721,0.604812,0.394214,0.365066,0.706952,0.130474,0.734041,0.458114,0.663069,0.0331035,0.544302,0.392223,0.68953,0.499875,0.724521,0.431842,0.311342,0.111062,0.857569,0.7908,0.899078,0.623933,0.507985,0.475484,0.98915,0.518955,0.73328,0.820218,0.332202,0.836498,0.247818,0.272005,0.903562,0.282884,0.322672,0.0639446,0.56289,0.0987219,0.618613,0.0821874,0.285313,0.456136,0.276638,0.600925,0.0506736,0.273614,0.11904,0.00253916,0.573411,0.118729,0.902752,0.919385,0.16853,0.0510878,|0.318432,0.663917,0.434969,0.828271,0.799817,0.318606,0.290894,0.982759,0.623918,0.577402,0.617808,0.425806,0.117772,0.991141,0.856323,0.483172,0.31273,0.259461,0.198255,0.177517,0.528772,0.53779,0.83173,0.538244,0.435839,0.00149053,0.167211,0.138908,0.441708,0.543167,0.0843832,0.685821,0.15784,0.943262,0.228645,0.121499,0.358075,0.195629,0.475121,0.972751,0.669742,0.591355,0.179278,0.90771,0.904842,0.639656,0.591222,0.709569,0.265904,0.904622,0.651905,0.280074,0.54556,0.425994,0.832936,0.103387,0.786988,0.147651,0.378072,0.123291,0.959066,0.212015,0.230747,0.424668,0.37374,0.262549,0.739877,0.534683,0.592475,0.237784,0.484651,0.764668,0.887183,0.519044,0.680486,0.840888,0.983107,0.508761,0.954523,0.766986,0.910374,0.275554,0.196687,0.444481,0.689418,0.32969,0.245995,0.199847,0.630233,0.342634,0.947437,0.797127,0.788029,0.402326,0.591747,0.0413344,0.479158,0.299354,0.870895,0.997478,0.0294756,0.797463,0.8672,0.568338,0.370117,0.844059,0.457617,0.469248,0.00304943,0.56369,0.795317,0.865435,0.443469,0.517855,0.236047,0.418069,0.389441,0.917257,0.30389,0.616932,0.678983,0.671282,0.857715,0.457494,0.691566,0.442466,0.669282,0.562393,0.798371,0.178828,0.769156,0.611018,0.791169,0.122156,0.996126,0.528224,0.0654904,0.529448,0.726933,0.127344,0.198948,0.404483,0.30148,0.526142,0.751454,0.283613,0.648573,0.88268,0.237546,0.00220782,0.0166505,0.568677,0.787575,0.679211,0.584825,0.929084,0.976754,0.741677,0.368169,0.0674708,0.628861,0.41267,0.357628,0.115231,0.894733,0.0725442,0.860828,0.468475,0.63051,0.256049,0.144859,0.4669,0.546381,0.374605,0.331921,0.0480888,0.783101,0.986998,0.713206,0.857132,0.593096,0.400935,0.645855,0.863166,0.3202,0.131371,0.883818,0.88936,0.588186,0.797969,0.888767,0.612002,0.968119,0.739545,0.626259,0.136317,0.517619,0.634236,0.431658,0.625034,0.0729781,0.600879,0.441161,0.843973,0.198065,0.333959,0.129147,0.330156,0.903879,0.182276,0.682608,0.0333459,0.963126,0.836055,0.19742,0.15757,0.63253,0.0429575,0.155844,0.947479,0.92531,0.0461902,0.862733,0.43315,0.390382,0.801809,0.200123,0.92716,0.468875,0.0124023,0.342378,0.275004,0.328617,0.66223,0.0517049,0.781841,0.254986,0.67027,0.795981,0.27507,0.762729,0.541823,0.850509,0.410147,0.680219,0.0909014,0.803769,0.0517613,0.527496,0.705694,0.963881,0.723149,0.411837,0.724574,0.185127,0.428855,0.243201,0.616264,0.111625,0.526578,0.281019,0.31683,0.250839,0.463205,0.3403,0.478934,0.158215,0.109894,0.741773,0.125046,0.119692,0.208849,0.334603,0.396944,0.16484,0.569615,0.872447,0.202285,0.732783,0.152918,0.535256,0.304879,0.558487,0.917729,0.0174654,0.842057,0.0443881,0.0674702,0.739113,0.589167,0.00299853,0.513921,0.617847,0.72969,0.0378001,0.153699,0.726536,0.813655,0.37754,0.297414,0.995881,0.650584,0.324724,0.0868404,0.11904,0.22751,0.165375,0.286573,0.0894138,0.604348,0.434076,0.0597577,0.276234,0.146053,0.732629,0.684152,0.331705,0.137928,0.705418,0.063603,0.104411,0.591607,0.200252,0.91264,0.517371,0.476733,0.305299,0.142337,0.693594,0.505522,0.678096,0.402084,0.644406,0.363747,0.835782,0.0294253,0.702619,0.7086,0.0919732,0.419775,0.69886,0.951567,0.334534,0.81688,0.11507,0.140169,0.881809,0.913623,0.491971,0.48652,0.543635,0.440389,0.64987,0.540236,0.189403,0.333132,0.335814,0.910115,0.81444,0.418031,0.0663618,0.836013,0.0691999,0.0346221,0.438343,0.879478,0.0559371,0.0831145,0.820513,0.266748,0.858837,0.977878,0.817771,0.323271,0.0126785,0.0154791,0.995183,0.970935,0.970766,0.446047,0.985793,0.175654,0.746871,0.15516,0.828446,0.538502,0.0478876,0.385367,0.686242,0.0506967,0.296311,0.829667,0.425228,0.319508,0.4194,0.809949,0.585238,0.105163,0.856249,0.0912381,0.689918,0.323874,0.815647,0.0214457,0.792177,0.662267,0.906413,0.12402,0.340177,0.376178,0.821922,0.384945,0.750019,0.168335,0.940745,0.202426,0.0476102,0.245036,0.779192,0.355197,0.218383,0.67356,0.165852,0.194917,0.810161,0.166981,0.713826,0.544532,0.132103,0.88899,0.364747,0.646499,0.875044,0.130501,0.560757,0.60278,0.163867,0.476659,0.906303,0.896756,0.429727,0.162764,0.878439,0.807443,0.446935,0.806248,0.0378451,0.233986,0.00774974,0.70578,0.0900226,0.362301,0.733062,0.99835,0.947354,0.103694,0.417593,0.993924,0.147843,0.037472,0.182544,0.648597,0.0837263,0.375265,0.289654,0.682419,0.620165,0.307706,0.00150782,0.434111,0.759163,0.641496,0.349495,0.279201,0.989701,0.539583,0.0988157,0.471142,0.186594,0.975065,0.336705,0.115866,0.689819,0.051745,0.337522,0.687215,0.276667,0.258169,0.799977,0.0025962,0.959244,0.29696,0.129341,0.539937,0.640779,0.411524,0.0317754,0.33935,0.987703,0.868544,0.0711111,0.436613,0.973438,0.440733,0.382685,0.307503,0.624195,0.740846,0.949164,0.108674,0.744837,0.825899,0.780778,0.00170749,0.138748,0.582167,0.225801,0.0528207,0.5883,0.696726,0.822897,0.383738,0.925565,0.320955,0.923375,0.684278,0.477745,0.825184,0.36856,0.250848,0.559715,0.567591,0.377925,0.0579024,0.439542,0.881786,0.466407,0.298248,0.934422,0.672408,0.82032,0.245004,0.87752,0.611195,0.181783,0.743433,0.219663,0.560578,0.0527627,0.83942,0.733579,0.7011,0.597675,0.78151,0.267452,0.149108,0.0378115,0.606454,0.431238,0.180918,0.936428,0.0515897,0.625462,0.745989,0.154398,0.714866,0.192746,0.877095,0.611194,0.336207,0.115987,0.44855,0.187334,0.18764,0.306336,0.90121,0.531252,0.228742,0.245165,0.262611,0.995581,0.696227,0.689963,0.769525,0.907439,0.343545,0.509835,0.750671,0.28815,0.172237,0.339602,0.699351,0.439697,0.792251,0.643917,0.98962,0.83166,0.709882,0.187092,0.578544,0.630167,0.070734,0.410476,0.229658,0.971375,0.707425,0.141416,0.23016,0.826152,0.334692,0.309137,0.442913,0.404692,0.245121,0.977045,0.503395,0.629758,0.632389,0.121529,0.959602,0.502538,0.755466,0.858013,0.568987,0.377233,0.616745,0.49885,0.782734,0.949762,0.573972,0.610976,0.795624,0.94547,0.237761,0.0462478,0.00273693,0.31724,0.342562,0.450001,0.645042,0.306567,0.0947737,0.864746,0.464839,0.506451,0.183236,0.461164,0.707734,0.628692,0.291307,0.710754,0.563356,0.278563,0.881087,0.347224,0.0102935,0.751966,0.105027,0.410708,0.0327966,0.241911,0.0788221,0.0969071,0.600009,0.363167,0.939455,0.62578,0.54313,0.861821,0.338295,0.548426,0.0643585,0.484007,0.517574,0.78037,0.6698,0.274909,0.149858,0.522619,0.599719,0.896792,0.0349137,0.981731,0.426716,0.169338,0.113201,0.138985,0.101413,0.0829744,0.750235,0.582555,0.691422,0.528247,0.500735,0.893987,0.663769,0.11029,0.0249396,0.677917,0.173167,0.941377,0.429299,0.266572,0.624654,0.378888,0.716265,0.462125,0.386451,0.588471,0.564452,0.861445,0.933048,0.426531,0.151038,0.595722,0.244845,0.101969,0.758551,0.55405,0.100394,0.994533,0.64655,0.799411,0.0491084,0.892971,0.624107,0.405064,0.150665,0.583482,0.0571554,0.894729,0.0858383,0.566811,0.927527,0.0384902,0.934502,0.737134,0.839243,0.270699,0.464555,0.206295,0.392075,0.748998,0.846137,0.925697,0.555063,0.114695,0.0812745,0.237718,0.283382,0.0253163,0.14022,0.312055,0.86965,0.577004,0.207705,0.483234,0.306432,0.225192,0.503288,0.28662,0.365261,0.736468,0.0974867,0.277262,0.679551,0.75068,0.779681,0.249457,0.0653347,0.585491,0.965235,0.147771,0.530833,0.346588,0.33061,0.269853,0.0905022,0.408249,0.340436,0.706047,0.238265,0.672835,0.645473,0.817264,0.8435,0.964487,0.144175,0.573547,0.954228,0.118504,0.079772,0.850774,0.451671,0.428574,0.258736,0.644623,0.677467,0.238683,0.680882,0.71888,0.106917,0.832831,0.881075,0.248315,0.846984,0.248303,0.113322,0.147768,0.844985,0.692707,0.301368,0.417927,0.455028,0.765058,0.590104,0.21485,0.843531,0.345734,0.558413,0.210141,0.921293,0.343852,0.294521,0.325152,0.617518,0.897734,0.542141,0.153964,0.872758,0.888649,0.245396,0.309155,0.982778,0.0411024,0.82882,0.376673,0.56132,0.141284,0.303116,0.093913,0.451429,0.299483,0.135743,0.306727,0.728476,0.99591,0.832858,0.125206,0.771147,0.640561,0.402516,0.138227,0.267928,0.61902,0.615249,0.598913,0.461499,0.75129,0.0749596,0.131102,0.722432,0.598751,0.785337,0.459989,0.0828281,0.796753,0.0296337,0.316142,0.124979,0.213994,0.107106,0.522805,0.201422,0.311929,0.62832,0.193989,0.816169,0.834502,0.266333,0.860237,0.0929865,0.463634,0.102455,0.909189,0.198919,0.916766,0.471856,0.164386,0.974694,0.568128,0.313447,0.759321,0.7906,0.63538,0.000355244,0.993535,0.943464,0.349126,0.946293,0.789408,0.424436,0.73493,0.446373,0.304796,0.751998,0.166696,0.0239943,0.816667,0.407991,0.380006,0.670284,0.0237256,0.280381,0.0452872,0.71034,0.711687,0.0667868,0.76586,0.0298871,0.502072,0.110001,0.964888,0.415521,0.515436,0.915366,0.213869,0.76943,0.908212,0.744931,0.448035,0.20335,0.31135,0.170143,0.209522,0.389172,0.670867,0.85302,0.352337,0.485262,0.907139,0.957536,0.51799,0.184571,0.1521,0.301679,0.735177,0.72358,0.810619,0.501174,0.632724,0.6433,0.478902,0.0592264,0.551757,0.268838,0.931543,0.137831,0.476506,0.122031,0.139307,0.0955334,0.491218,0.16256,0.494458,0.339621,0.666991,0.787046,0.0817263,0.289028,0.448136,0.14433,0.86878,0.0916135,0.388461,0.879062,0.0981194,0.371563,0.795086,0.768937,0.220938,0.961634,0.573408,0.0938608,0.990742,0.00459296,0.576458,0.320707,0.389484,0.0362447,0.479637,0.11829,0.689581,0.879446,0.743597,0.717775,0.518999,0.206115,0.474172,0.289696,|0.689475,0.84852,0.910758,0.618762,0.174465,0.0886019,0.960387,0.38372,0.0887612,0.249325,0.34808,0.0232356,0.0151492,0.133136,0.552609,0.420337,0.0116432,0.824999,0.889764,0.0793881,0.290345,0.678664,0.794397,0.716042,0.264685,0.343917,0.132874,0.105217,0.922382,0.266496,0.668841,0.277893,0.691618,0.31366,0.128827,0.28143,0.351317,0.252462,0.626238,0.747918,0.123902,0.579947,0.412377,0.453626,0.76819,0.943231,0.741378,0.377889,0.385725,0.189702,0.893455,0.702842,0.217967,0.376708,0.720848,0.957452,0.394908,0.584822,0.187149,0.104722,0.0716861,0.1188,0.0810229,0.0749992,0.385385,0.329948,0.137911,0.812593,0.0962085,0.772129,0.681958,0.69694,0.607943,0.400481,0.577191,0.650556,0.153686,0.917487,0.636226,0.959252,0.660809,0.130685,0.289142,0.287718,0.131112,0.334061,0.98998,0.756226,0.0584564,0.596621,0.471958,0.76116,0.0175909,0.313979,0.990847,0.115182,0.830316,0.378517,0.312078,0.152435,0.0379421,0.587458,0.376138,0.553976,0.9752,0.209462,0.837762,0.565962,0.00677413,0.704623,0.929468,0.737179,0.922926,0.988366,0.0500466,0.0134007,0.395526,0.2982,0.54754,0.376646,0.941364,0.74839,0.108629,0.555294,0.456866,0.0411244,0.915896,0.252834,0.127483,0.136853,0.94174,0.773879,0.155345,0.92156,0.261064,0.712074,0.458548,0.234874,0.170252,0.567823,0.421994,0.613556,0.79478,0.755508,0.042803,0.287743,0.372748,0.138178,0.9712,0.715295,0.73096,0.312473,0.871429,0.00960243,0.830881,0.57265,0.879914,0.416902,0.679437,0.956491,0.120909,0.487707,0.800375,0.398514,0.39599,0.489232,0.137535,0.330947,0.00553918,0.452226,0.594328,0.617247,0.202293,0.342011,0.579108,0.844298,0.0877274,0.605498,0.861513,0.854222,0.189219,0.243828,0.769426,0.48601,0.679896,0.166205,0.592747,0.315192,0.755247,0.861192,0.211283,0.426306,0.0150081,0.832907,0.725719,0.61858,0.635481,0.583874,0.928656,0.46658,0.557896,0.304298,0.980579,0.92444,0.551871,0.982589,0.631449,0.413551,0.0639446,0.0897957,0.549804,0.560555,0.596182,0.0442557,0.227949,0.9525,0.546092,0.279363,0.888414,0.801465,0.928206,0.820819,0.181202,0.219381,0.137037,0.700085,0.503911,0.378566,0.436503,0.720929,0.67349,0.582188,0.503836,0.427697,0.849017,0.405688,0.269254,0.80283,0.958655,0.327442,0.9777,0.336452,0.828665,0.996826,0.244851,0.564344,0.378718,0.850638,0.14559,0.495807,0.357371,0.389415,0.9307,0.902411,0.746129,0.162711,0.939822,0.769322,0.473902,0.976813,0.632768,0.638212,0.0251431,0.521892,0.672543,0.134479,0.567324,0.481743,0.018261,0.87732,0.439282,0.421148,0.884759,0.796185,0.484911,0.276928,0.995095,0.226983,0.050962,0.24272,0.495763,0.428596,0.768671,0.165147,0.264755,0.333515,0.878684,0.133028,0.148469,0.968063,0.103833,0.802521,0.496069,0.420638,0.656977,0.764171,0.630859,0.260851,0.166538,0.444289,0.719204,0.148152,0.281415,0.69647,0.365107,0.339278,0.657712,0.141575,0.379757,0.826753,0.523613,0.0863063,0.0199253,0.693893,0.798807,0.33619,0.196005,0.160689,0.614843,0.266229,0.071521,0.941645,0.985904,0.10381,0.304873,0.147086,0.199684,0.580828,0.525452,0.0249184,0.853801,0.00927413,0.630199,0.748577,0.133966,0.752161,0.0449424,0.587771,0.35415,0.550508,0.761219,0.309295,0.450773,0.861842,0.643831,0.323719,0.664586,0.0265104,0.664254,0.658711,0.260748,0.286806,0.532393,0.305779,0.625964,0.169095,0.00375593,0.997403,0.29267,0.988798,0.0183232,0.0198108,0.46897,0.362929,0.887217,0.862679,0.887984,0.199829,0.907986,0.594028,0.422368,0.791777,0.822999,0.337686,0.668198,0.544913,0.808204,0.489028,0.946836,0.47567,0.23147,0.0521939,0.13912,0.470051,0.972644,0.178464,0.799296,0.587061,0.276918,0.537293,0.767264,0.44809,0.237733,0.667957,0.0469335,0.477793,0.604428,0.833149,0.448313,0.0712429,0.0828342,0.509351,0.775089,0.759342,0.17135,0.740894,0.842624,0.0775737,0.559898,0.48752,0.857264,0.271756,0.360293,0.0573778,0.792109,0.770823,0.210777,0.653638,0.815872,0.312002,0.702852,0.365342,0.610226,0.398961,0.877631,0.362383,0.759366,0.66404,0.457084,0.315224,0.569256,0.325799,0.599692,0.67053,0.774326,0.294675,0.597573,0.664902,0.26886,0.333478,0.189684,0.551034,0.273713,0.561501,0.548921,0.313221,0.357377,0.0706034,0.809198,0.185871,0.0974662,0.0658823,0.155015,0.681258,0.490806,0.669862,0.19977,0.322126,0.0823642,0.371651,0.521679,0.801677,0.829335,0.204178,0.270614,0.0630729,0.354776,0.796162,0.258816,0.0566334,0.716894,0.151123,0.255919,0.099556,0.0313557,0.699321,0.729066,0.108526,0.416505,0.28483,0.278941,0.851315,0.406363,0.894886,0.0877911,0.768846,0.239508,0.502709,0.8799,0.988081,0.339055,0.125024,0.536753,0.263958,0.289796,0.734971,0.128432,0.88223,0.66762,0.675094,0.638808,0.0211392,0.728681,0.140672,0.278279,0.595273,0.052735,0.46453,0.805338,0.566016,0.705033,0.171121,0.790146,0.6992,0.982248,0.144658,0.937854,0.717632,0.804803,0.567215,0.44744,0.425721,0.100193,0.794705,0.168824,0.295582,0.277237,0.828752,0.428467,0.298469,0.56109,0.607732,0.46795,0.513462,0.964642,0.152387,0.695946,0.342053,0.811098,0.497791,0.512959,0.868178,0.53246,0.356765,0.404472,0.499711,0.995083,0.772896,0.602119,0.103343,0.221296,0.999057,0.348127,0.701666,0.907386,0.0684179,0.987284,0.105636,0.271097,0.159982,0.535203,0.657461,0.573738,0.537988,0.106095,0.61682,0.578878,0.699,0.801861,0.593806,0.37837,0.628752,0.567341,0.367093,0.255772,0.390216,0.364051,0.752592,0.0420727,0.260765,0.950329,0.190851,0.599358,0.555294,0.959893,0.131809,0.734542,0.932007,0.478537,0.817128,0.00268096,0.477021,0.608755,0.482231,0.38505,0.175416,0.932603,0.826993,0.215076,0.820862,0.106428,0.903168,0.0869587,0.280548,0.216889,0.662543,0.730239,0.211229,0.755875,0.627321,0.791989,0.460664,0.514761,0.66915,0.949918,0.993172,0.70809,0.433283,0.879311,0.344904,0.284355,0.105347,0.00506794,0.839621,0.0577492,0.989525,0.324723,0.0557721,0.145205,0.594603,0.797992,0.520719,0.0927551,0.969242,0.0882471,0.672801,0.747356,0.916546,0.378729,0.645721,0.261994,0.892193,0.937613,0.891052,0.706582,0.592514,0.221418,0.51803,0.0914089,0.963344,0.336107,0.109411,0.169223,0.797289,0.909697,0.93478,0.750198,0.466117,0.836906,0.389766,0.959268,0.409624,0.358695,0.379512,0.866683,0.611488,0.129935,0.00665444,0.15947,0.968169,0.786998,0.808383,0.375533,0.796281,0.516175,0.490563,0.207918,0.788694,0.393542,0.0549252,0.690448,0.102432,0.172042,0.530602,0.0829673,0.562838,0.102098,0.983587,0.2738,0.774473,0.758056,0.262891,0.309522,0.818738,0.552085,0.671143,0.627504,0.461454,0.669159,0.80754,0.164041,0.472997,0.929443,0.0601562,0.49162,0.0182917,0.26526,0.696954,0.520555,0.700039,0.592509,0.877698,0.629565,0.666796,0.701246,0.52565,0.553625,0.323807,0.079462,0.928075,0.248556,0.643403,0.584639,0.0479366,0.503202,0.144716,0.957522,0.529794,0.36475,0.612367,0.766612,0.00152057,0.644009,0.289731,0.780973,0.78622,0.389559,0.831919,0.678323,0.46116,0.958159,0.750875,0.339077,0.0231776,0.737003,0.628412,0.25604,0.33968,0.473011,0.411476,0.720003,0.44528,0.0580515,0.37035,0.726119,0.808352,0.1686,0.348344,0.772534,0.426443,0.0245628,0.631191,0.919488,0.50768,0.892898,0.302564,0.141527,0.242644,0.0872236,0.55055,0.549591,0.451752,0.36246,0.243077,0.948336,0.923947,0.592998,0.827718,0.983509,0.445381,0.587079,0.907373,0.824457,0.617464,0.152217,0.508741,0.0473967,0.0822934,0.815101,0.975838,0.60339,0.687657,0.230679,0.872843,0.247583,0.529208,0.36293,0.38219,0.397624,0.370426,0.343062,0.474648,0.055797,0.0917217,0.169836,0.327303,0.634808,0.262397,0.32672,0.870706,0.390314,0.269981,0.746621,0.680475,0.945997,0.0468788,0.16175,0.711259,0.264515,0.700393,0.0605277,0.658301,0.854485,0.298214,0.175761,0.336437,0.646719,0.205407,0.646138,0.479011,0.774987,0.961168,0.625337,0.196123,0.779241,0.509878,0.990922,0.669267,0.976223,0.285975,0.397904,0.698908,0.64336,0.714042,0.98031,0.820993,0.0533264,0.751063,0.149792,0.0220198,0.16286,0.839724,0.763765,0.830774,0.330026,0.695058,0.10834,0.825929,0.886093,0.0761383,0.403271,0.291919,0.645436,0.432568,0.876821,0.738555,0.324391,0.190346,0.460959,0.568307,0.156414,0.802401,0.693171,0.323843,0.277898,0.252789,0.151858,0.625887,0.100206,0.84918,0.145939,0.578412,0.605943,0.860739,0.058921,0.450994,0.892742,0.899719,0.860922,0.372572,0.656979,0.114881,0.149525,0.0657527,0.527561,0.236492,0.177787,0.0258096,0.740699,0.330072,0.861342,0.268207,0.567522,0.57814,0.95949,0.0751873,0.870592,0.48547,0.903927,0.0286929,0.682103,0.553782,0.6134,0.145779,0.468822,0.706966,0.468,0.212384,0.705485,0.749614,0.305189,0.576901,0.643712,0.325611,0.570351,0.682362,0.105379,0.180927,0.132376,0.879737,0.496547,0.60877,0.0778977,0.50739,0.177083,0.58699,0.877822,0.450368,0.0429546,0.980109,0.713612,0.179013,0.406303,0.601238,0.173329,0.253381,0.720133,0.902111,0.815453,0.178051,0.125076,0.909558,0.801316,0.48341,0.454506,0.0529521,0.609587,0.147728,0.410056,0.139596,0.716266,0.306425,0.774039,0.904539,0.223074,0.442698,0.645679,0.319714,0.763757,0.293509,0.932753,0.065845,0.503647,0.573599,0.851189,0.0830312,0.60791,0.34051,0.235775,0.192707,0.704634,0.876382,0.277343,0.73059,0.258968,0.740721,0.46758,0.109485,0.655361,0.229872,0.0756242,0.620858,0.490344,0.119033,0.784055,0.530361,0.471668,0.934459,0.436047,0.0143719,|0.00445133,0.387824,0.217109,0.902751,0.62354,0.0893308,0.85894,0.871732,0.0241889,0.365973,0.807328,0.429713,0.577811,0.306664,0.845147,0.244052,0.413794,0.908923,0.0403545,0.899969,0.811217,0.594258,0.625459,0.413561,0.341052,0.387683,0.091565,0.321302,0.165159,0.345929,0.467602,0.873674,0.757907,0.608113,0.816331,0.526551,0.0185197,0.588511,0.153943,0.992439,0.344465,0.369605,0.0199046,0.519725,0.817397,0.920976,0.777455,0.00142097,0.909314,0.654592,0.321448,0.0659034,0.801782,0.751212,0.40332,0.194276,0.333477,0.00979233,0.613672,0.949471,0.269048,0.923429,0.738951,0.730478,0.919064,0.167964,0.448478,0.861478,0.810091,0.259102,0.11396,0.102638,0.80689,0.40836,0.277226,0.345877,0.490522,0.95024,0.698264,0.239746,0.127281,0.131978,0.733031,0.267174,0.259627,0.949985,0.299243,0.229535,0.297936,0.659759,0.25733,0.126619,0.414838,0.815358,0.539569,0.672037,0.0492945,0.657148,0.152479,0.863481,0.66402,0.199487,0.104216,0.948226,0.507433,0.958119,0.581455,0.0689058,0.967363,0.723544,0.666084,0.557211,0.0967419,0.43982,0.174506,0.320603,0.880707,0.106094,0.719415,0.61546,0.866114,0.200367,0.538388,0.935659,0.724073,0.55176,0.235365,0.690846,0.52934,0.50771,0.125239,0.528298,0.598894,0.908357,0.614344,0.685049,0.47433,0.824444,0.214703,0.470499,0.53578,0.41792,0.379407,0.160153,0.0161859,0.103556,0.237188,0.402315,0.318084,0.544911,0.220358,0.566183,0.447836,0.264285,0.591377,0.534109,0.717505,0.34229,0.995867,0.270222,0.554013,0.89965,0.602857,0.33067,0.413681,0.719648,0.401364,0.900157,0.221556,0.0163547,0.237312,0.282833,0.602624,0.624874,0.941356,0.212987,0.380908,0.015397,0.552962,0.648378,0.355784,0.453712,0.271044,0.133404,0.976687,0.429663,0.518849,0.576962,0.463328,0.959066,0.473984,0.733372,0.328023,0.976886,0.91339,0.537932,0.895378,0.482041,0.620783,0.665857,0.00850934,0.510661,0.829767,0.859478,0.51112,0.81246,0.190731,0.175547,0.776329,0.33395,0.376858,0.96085,0.135966,0.52929,0.1187,0.610024,0.62546,0.0925659,0.377358,0.969037,0.968809,0.559062,0.664444,0.655736,0.798407,0.216919,0.450317,0.57963,0.835206,0.629886,0.731678,0.691983,0.508393,0.307009,0.564032,0.574896,0.710199,0.0867236,0.936355,0.165462,0.00426966,0.721153,0.537778,0.171376,0.579151,0.0427088,0.105757,0.364225,0.527828,0.365264,0.477388,0.264225,0.337345,0.0552014,0.560956,0.964719,0.232051,0.442512,0.254386,0.817849,0.218243,0.216116,0.287018,0.264056,0.383735,0.026749,0.588338,0.456178,0.900936,0.5524,0.685028,0.395339,0.313233,0.814415,0.269215,0.181943,0.126152,0.858238,0.217222,0.427409,0.718769,0.846887,0.531202,0.281843,0.0474592,0.086161,0.469208,0.932274,0.412609,0.46465,0.137638,0.853859,0.75928,0.73363,0.189825,0.572629,0.906442,0.468161,0.993634,0.803782,0.325938,0.744507,0.940353,0.813755,0.759063,0.148526,0.76794,0.164881,0.0534149,0.488629,0.277208,0.763942,0.171317,0.598365,0.402354,0.770841,0.868529,0.0851777,0.357124,0.687868,0.0140014,0.284857,0.752466,0.536375,0.446162,0.590911,0.201978,0.938539,0.508947,0.239814,0.836168,0.38734,0.214408,0.815552,0.245681,0.686894,0.0990974,0.35497,0.854487,0.877986,0.722499,0.675449,0.400689,0.13679,0.766682,0.0646439,0.563803,0.999407,0.904449,0.381509,0.652732,0.337597,0.86393,0.355708,0.567992,0.120587,0.839374,0.393261,0.589389,0.300381,0.134294,0.28234,0.950189,0.112293,0.539365,0.961587,0.118753,0.929339,0.423424,0.339014,0.985042,0.316898,0.134613,0.278012,0.0866109,0.298511,0.0357911,0.323792,0.532665,0.613995,0.627443,0.486519,0.298319,0.705945,0.797829,0.525823,0.242547,0.68532,0.956771,0.323337,0.533852,0.682958,0.362242,0.671462,0.721971,0.582162,0.788589,0.415204,0.648923,0.336538,0.592861,0.298065,0.0436475,0.447578,0.375606,0.462793,0.374002,0.41309,0.257843,0.359614,0.191598,0.761251,0.896873,0.500297,0.399721,0.652481,0.208633,0.113396,0.49091,0.615008,0.0984252,0.0886765,0.834452,0.634847,0.40397,0.428049,0.746147,0.808499,0.816828,0.894995,0.21979,0.444474,0.952734,0.455929,0.342738,0.881285,0.0765329,0.946906,0.420158,0.546052,0.579125,0.965081,0.581623,0.920596,0.26124,0.414173,0.505487,0.935721,0.978655,0.22226,0.538537,0.78906,0.153869,0.0583599,0.290184,0.293676,0.546869,0.188646,0.276396,0.314219,0.860199,0.257945,0.494344,0.497651,0.248657,0.637922,0.0975275,0.808779,0.42803,0.821437,0.74698,0.273443,0.429985,0.383884,0.93059,0.192441,0.238904,0.563637,0.562357,0.408771,0.714814,0.313964,0.500068,0.0120569,0.0985021,0.354927,0.213405,0.69553,0.513419,0.074357,0.26535,0.0639046,0.52124,0.0544186,0.76319,0.547306,0.922964,0.298328,0.626247,0.174248,0.867068,0.813325,0.311928,0.139159,0.707106,0.240125,0.551749,0.637958,0.816747,0.586137,0.55381,0.364774,0.369479,0.341945,0.0216628,0.408533,0.915012,0.19935,0.173362,0.560559,0.257392,0.607988,0.382275,0.238364,0.0835766,0.928794,0.597767,0.968007,0.705873,0.676243,0.814328,0.960245,0.693942,0.217759,0.159767,0.603134,0.848899,0.919717,0.430727,0.435497,0.799633,0.917447,0.217854,0.536603,0.911103,0.621991,0.215437,0.202021,0.512448,0.604716,0.902572,0.785181,0.262113,0.401835,0.829546,0.734392,0.710577,0.0813088,0.0730593,0.471076,0.794869,0.545278,0.746398,0.936955,0.527078,0.507796,0.573223,0.268999,0.3728,0.331901,0.905975,0.695531,0.94247,0.432678,0.104678,0.112658,0.527015,0.099466,0.351987,0.0408454,0.49085,0.664497,0.334355,0.0677928,0.375491,0.0936156,0.768965,0.0711139,0.657575,0.491858,0.623985,0.755521,0.296102,0.263567,0.912065,0.868039,0.537363,0.372564,0.155843,0.622004,0.457998,0.393346,0.230536,0.624444,0.217621,0.570979,0.054602,0.344608,0.890875,0.392285,0.447736,0.99418,0.439,0.334704,0.267878,0.10879,0.339002,0.117174,0.661406,0.577066,0.0538856,0.0303717,0.42718,0.924984,0.570775,0.502307,0.515805,0.861066,0.460551,0.77074,0.709208,0.663441,0.064842,0.584436,0.128549,0.0847175,0.46966,0.955932,0.882543,0.951741,0.634188,0.190015,0.341531,0.0887606,0.0763943,0.796175,0.475955,0.949657,0.279339,0.936016,0.338576,0.377265,0.615669,0.0522493,0.824838,0.468232,0.334037,0.163464,0.487186,0.0681526,0.196753,0.0572171,0.943261,0.550991,0.917058,0.57278,0.61118,0.018603,0.411701,0.824095,0.0901548,0.577616,0.589267,0.845217,0.454699,0.96959,0.6722,0.871909,0.229044,0.597494,0.191404,0.288091,0.767397,0.741059,0.984767,0.606585,0.411073,0.775858,0.423206,0.435522,0.856148,0.642248,0.645362,0.691792,0.00901496,0.472119,0.425661,0.891389,0.448112,0.369461,0.354096,0.47075,0.507082,0.0660535,0.44097,0.951838,0.174184,0.544721,0.864179,0.725687,0.819825,0.702365,0.070426,0.121006,0.105221,0.727675,0.586578,0.829538,0.914376,0.545125,0.524426,0.212753,0.416294,0.209876,0.355376,0.282752,0.392124,0.181734,0.680407,0.453403,0.823648,0.20878,0.144,0.68069,0.884871,0.619902,0.454562,0.0939049,0.472119,0.404083,0.370582,0.623833,0.626224,0.643942,0.178136,0.544636,0.444118,0.473999,0.990032,0.64573,0.287539,0.499612,0.90594,0.837078,0.576835,0.188858,0.659338,0.168255,0.0419272,0.63005,0.228213,0.722364,0.20311,0.102493,0.27566,0.478444,0.267724,0.134234,0.236949,0.457627,0.702559,0.165873,0.51455,0.111887,0.951564,0.326433,0.82367,0.65941,0.569936,0.0965343,0.0975975,0.66422,0.764214,0.340426,0.711911,0.361222,0.993172,0.92637,0.883837,0.296688,0.562799,0.723478,0.760541,0.926457,0.464089,0.181887,0.908835,0.783753,0.106846,0.96397,0.201896,0.499651,0.983787,0.248801,0.722632,0.594155,0.921305,0.435823,0.298279,0.0150702,0.365536,0.440471,0.253346,0.325685,0.952487,0.0242269,0.691527,0.0110162,0.860263,0.259349,0.439904,0.469196,0.304582,0.390461,0.577719,0.273381,0.445876,0.00561917,0.191797,0.747237,0.750201,0.0701139,0.48015,0.911172,0.00308841,0.604413,0.84664,0.897907,0.714675,0.875793,0.213772,0.145664,0.477912,0.921614,0.296529,0.526323,0.760869,0.0137225,0.382902,0.0842785,0.661292,0.901353,0.612354,0.534836,0.925699,0.952561,0.598537,0.685799,0.0258812,0.64147,0.886265,0.661499,0.0465791,0.00688553,0.84411,0.632382,0.493845,0.900217,0.261768,0.434418,0.405169,0.65829,0.289082,0.791842,0.720196,0.767892,0.397054,0.770526,0.440784,0.0698225,0.318928,0.94756,0.537629,0.838347,0.376135,0.305225,0.695024,0.300796,0.336977,0.273166,0.213956,0.211316,0.83223,0.0203633,0.152074,0.507141,0.0202382,0.625028,0.114165,0.339258,0.818814,0.606779,0.30828,0.706833,0.504117,0.266239,0.837676,0.750185,0.294437,0.354731,0.10293,0.106013,0.496126,0.752081,0.115838,0.756561,0.459216,0.99375,0.817197,0.937345,0.237695,0.269127,0.511234,0.736902,0.102504,0.609336,0.705024,0.608917,0.339383,0.024807,0.408827,0.77278,0.107178,0.0973256,0.906084,0.487631,0.649529,0.500078,0.467145,0.165775,0.302209,0.754817,0.00298864,0.80683,0.145976,0.0597135,0.949249,0.547717,0.615223,0.26135,0.281975,0.769732,0.864233,0.0210184,0.092344,0.713223,0.691466,0.238908,0.494886,0.305838,0.143788,0.732381,0.745074,0.947042,0.744354,0.285493,0.060819,0.904699,0.692984,0.348324,0.51945,0.0640926,0.308987,0.788487,0.524466,0.342367,0.14113,0.38829,0.569495,0.0534467,0.272158,0.150358,0.698775,0.619539,0.451313,0.718564,0.360345,0.583094,0.54355,0.811167,0.462787,0.629738,0.741561,0.0890686,0.914543,0.126597,0.690976,0.777706,0.366296,0.33257,|0.889232,0.0545073,0.10169,0.416814,0.519872,0.854556,0.969151,0.96962,0.659869,0.932444,0.589722,0.711694,0.539719,0.269948,0.348788,0.111024,0.078658,0.347195,0.575806,0.534304,0.978662,0.254023,0.596969,0.520458,0.343271,0.0808873,0.416514,0.21737,0.502777,0.200742,0.459608,0.649911,0.568414,0.586158,0.957691,0.570018,0.479314,0.362422,0.179422,0.97172,0.741315,0.48538,0.362007,0.211341,0.805961,0.381186,0.017237,0.38434,0.42847,0.442399,0.0266848,0.353688,0.855768,0.105555,0.372153,0.136465,0.604201,0.0999115,0.973751,0.733742,0.112254,0.487459,0.880661,0.668941,0.00712591,0.221279,0.0174001,0.505401,0.484365,0.577398,0.0883473,0.0765716,0.0565062,0.864139,0.374796,0.904696,0.669177,0.339148,0.509948,0.807677,0.207804,0.890392,0.119289,0.464329,0.0263798,0.75529,0.300463,0.320578,0.456133,0.441737,0.347747,0.123192,0.973826,0.91292,0.26039,0.471965,0.965414,0.959613,0.73593,0.573497,0.396394,0.673783,0.0383763,0.766729,0.511018,0.447674,0.488833,0.157486,0.860918,0.428181,0.935098,0.365702,0.389171,0.24827,0.014494,0.227425,0.855539,0.193452,0.896135,0.347844,0.040528,0.104136,0.206132,0.201492,0.828446,0.981773,0.97285,0.0411438,0.631925,0.0281047,0.229985,0.740938,0.846486,0.51535,0.0193514,0.0915304,0.964444,0.146722,0.607842,0.181974,0.862803,0.49009,0.729446,0.827556,0.342343,0.388175,0.316771,0.0970424,0.812535,0.559829,0.708744,0.781835,0.83397,0.00360286,0.716338,0.138204,0.156169,0.441294,0.0328737,0.307978,0.30292,0.269685,0.382156,0.640003,0.433468,0.552372,0.358657,0.0301288,0.763775,0.689735,0.908661,0.906744,0.915519,0.51009,0.0405228,0.76089,0.866793,0.171075,0.361584,0.243676,0.194818,0.459639,0.718832,0.691754,0.206913,0.748199,0.652435,0.803366,0.393543,0.29984,0.567764,0.745109,0.289626,0.290544,0.826268,0.351159,0.473717,0.997929,0.477307,0.631182,0.318445,0.736833,0.651344,0.0725513,0.64273,0.78919,0.704503,0.743933,0.443258,0.68872,0.890915,0.471557,0.720575,0.941881,0.473603,0.729484,0.0817899,0.367475,0.457863,0.770354,0.768861,0.0882361,0.593518,0.057338,0.218087,0.237519,0.192498,0.300494,0.294065,0.945958,0.473535,0.710708,0.259688,0.40954,0.365358,0.335464,0.602983,0.543091,0.151504,0.324543,0.7705,0.620839,0.91173,0.252803,0.0534484,0.66658,0.454617,0.718909,0.76908,0.913466,0.507776,0.868762,0.443376,0.870524,0.0486791,0.850229,0.549802,0.41169,0.095959,0.727533,0.96853,0.988533,0.605715,0.727283,0.441285,0.450108,0.82218,0.786472,0.0279477,0.973875,0.268517,0.824434,0.998903,0.114674,0.83839,0.817168,0.643408,0.832423,0.397528,0.899305,0.416116,0.0564414,0.433427,0.600862,0.641244,0.0102342,0.999947,0.115778,0.149047,0.0104738,0.486289,0.643513,0.0292871,0.874693,0.77027,0.862381,0.214845,0.806938,0.350851,0.634102,0.0438885,0.703876,0.785614,0.431861,0.0106879,0.525294,0.516025,0.0170253,0.666314,0.926502,0.69213,0.754387,0.111263,0.868539,0.194823,0.485145,0.803174,0.533404,0.873401,0.294645,0.443517,0.151574,0.971115,0.0294674,0.559441,0.250502,0.62305,0.448367,0.0447927,0.270371,0.0657287,0.679964,0.680506,0.104833,0.188199,0.835344,0.163558,0.0477328,0.134881,0.250764,0.210281,0.974845,0.172827,0.604175,0.675574,0.485733,0.7611,0.90935,0.947585,0.155979,0.297485,0.124968,0.627844,0.764944,0.394423,0.621487,0.19329,0.92815,0.131779,0.552015,0.373855,0.958517,0.508557,0.699296,0.531445,0.253252,0.96192,0.341924,0.362957,0.683586,0.957704,0.746109,0.146372,0.784611,0.811872,0.5079,0.338764,0.543142,0.851338,0.225296,0.371666,0.776973,0.481075,0.0231943,0.179506,0.67275,0.407081,0.966571,0.581387,0.483344,0.557591,0.81867,0.362404,0.0111326,0.550502,0.0805879,0.975011,0.0268723,0.723117,0.888452,0.128823,0.21402,0.586341,0.149275,0.254465,0.235288,0.154376,0.150672,0.358371,0.456116,0.235769,0.430543,0.871604,0.572555,0.507159,0.925769,0.725975,0.305646,0.672907,0.988369,0.356893,0.35022,0.88729,0.989042,0.571211,0.0710763,0.141315,0.545473,0.575878,0.426185,0.807979,0.309734,0.920153,0.983858,0.75278,0.535642,0.63323,0.971105,0.806555,0.641999,0.735078,0.28985,0.400933,0.162349,0.661586,0.667463,0.0862061,0.0851905,0.352911,0.0442966,0.230831,0.959109,0.30436,0.56617,0.912241,0.329333,0.402626,0.280484,0.709314,0.738447,0.323205,0.319507,0.0464613,0.867305,0.837817,0.536205,0.332641,0.527451,0.187464,0.961349,0.0417806,0.51382,0.225328,0.0260892,0.535736,0.546851,0.864412,0.870273,0.759858,0.585502,0.937462,0.557506,0.394646,0.907597,0.293025,0.766255,0.909696,0.0776991,0.189996,0.933073,0.411302,0.442343,0.188943,0.799456,0.279558,0.723673,0.705063,0.238308,0.14002,0.5034,0.701142,0.811902,0.451382,0.99273,0.940419,0.826099,0.732249,0.548917,0.980828,0.598517,0.0887071,0.657913,0.327053,0.931248,0.185246,0.725039,0.840588,0.868941,0.335759,0.954595,0.79247,0.095035,0.6978,0.56533,0.819439,0.516542,0.130716,0.0769826,0.808695,0.480537,0.647231,0.203956,0.412485,0.312888,0.358491,0.187075,0.389643,0.514482,0.623004,0.597602,0.356017,0.390932,0.532887,0.753526,0.0434223,0.959848,0.756397,0.700807,0.253573,0.203334,0.499056,0.166385,0.239675,0.538036,0.519236,0.882692,0.490588,0.581949,0.860581,0.525513,0.515265,0.364596,0.221478,0.828408,0.716452,0.492029,0.404924,0.274293,0.524403,0.870015,0.820378,0.120652,0.640986,0.900535,0.668364,0.672676,0.5106,0.411327,0.9124,0.922039,0.954146,0.681575,0.325296,0.356461,0.846547,0.401775,0.401877,0.580598,0.452261,0.320976,0.242153,0.172117,0.0470109,0.0591341,0.580083,0.10269,0.944171,0.416748,0.503585,0.395396,0.924159,0.700792,0.0296704,0.781502,0.827501,0.852504,0.58682,0.260173,0.415841,0.79709,0.819757,0.522332,0.919767,0.706679,0.877188,0.683636,0.974567,0.445977,0.858561,0.657323,0.0529123,0.547943,0.833187,0.584134,0.50064,0.893121,0.107486,0.516763,0.181593,0.543108,0.436163,0.0580454,0.695643,0.625768,0.857026,0.602716,0.803732,0.0865349,0.690635,0.403179,0.916495,0.722739,0.278415,0.94509,0.652146,0.996125,0.0929727,0.25609,0.308628,0.859666,0.236274,0.664421,0.691088,0.33786,0.296683,0.145876,0.98865,0.541351,0.48491,0.254551,0.000779033,0.626728,0.163432,0.812271,0.349975,0.944413,0.0308912,0.786254,0.482954,0.57483,0.113604,0.93649,0.157165,0.72687,0.919791,0.569424,0.73042,0.22057,0.710473,0.721849,0.0409137,0.321238,0.396632,0.432309,0.0949351,0.27594,0.86344,0.179621,0.595082,0.212644,0.0661671,0.309817,0.706087,0.337699,0.351828,0.792596,0.630567,0.900436,0.518392,0.253987,0.101047,0.710908,0.242831,0.713431,0.782736,0.255337,0.68963,0.243111,0.778843,0.983689,0.421406,0.122172,0.785339,0.186637,0.71765,0.441587,0.774866,0.695295,0.0999709,0.574583,0.120148,0.707179,0.998234,0.43924,0.83311,0.464827,0.860805,0.160043,0.645383,0.939006,0.55406,0.809801,0.472722,0.307491,0.00851071,0.0325288,0.39504,0.514109,0.328821,0.0748506,0.697339,0.794339,0.369185,0.111892,0.0544683,0.606846,0.467866,0.361157,0.622222,0.200193,0.994443,0.488914,0.984241,0.79539,0.342744,0.821558,0.90064,0.276319,0.744191,0.928066,0.104523,0.659859,0.0650372,0.692558,0.0417495,0.23965,0.278334,0.170465,0.56939,0.543827,0.316992,0.641454,0.326779,0.15774,0.326846,0.814304,0.422174,0.92396,0.0250947,0.414051,0.574321,0.229383,0.0549047,0.0545149,0.403567,0.354789,0.0656689,0.72379,0.663051,0.0590638,0.563034,0.293671,0.890649,0.238797,0.952648,0.194001,0.209447,0.246698,0.528861,0.486382,0.102847,0.0259326,0.0526864,0.410801,0.510874,0.608718,0.501715,0.77334,0.000607133,0.255804,0.821241,0.0112752,0.0928043,0.214281,0.515709,0.660904,0.534212,0.729473,0.776516,0.959149,0.101115,0.393518,0.893754,0.411207,0.406578,0.384084,0.23262,0.972138,0.824388,0.341293,0.465142,0.680205,0.742202,0.309598,0.879317,0.99476,0.184469,0.127748,0.422297,0.240735,0.895143,0.0439213,0.755109,0.540431,0.308611,0.722188,0.200297,0.281236,0.109919,0.651412,0.734697,0.832896,0.439217,0.18671,0.315836,0.227698,0.19187,0.782864,0.0695856,0.0563822,0.561479,0.662493,0.592502,0.646382,0.918891,0.642482,0.861967,0.826376,0.833335,0.0824423,0.181714,0.574307,0.977613,0.395409,0.867098,0.888655,0.0921288,0.552702,0.451541,0.486796,0.748426,0.377651,0.993538,0.83617,0.0545691,0.066344,0.566947,0.0613575,0.224203,0.228256,0.0764292,0.0913467,0.139613,0.579913,0.229329,0.127961,0.143811,0.928429,0.426181,0.614919,0.113992,0.0192959,0.835355,0.0580697,0.0301321,0.544675,0.956044,0.0836489,0.231958,0.737981,0.303137,0.167218,0.537165,0.16818,0.197727,0.268657,0.867777,0.0913339,0.30925,0.58934,0.360842,0.336696,0.801675,0.924201,0.155348,0.734297,0.653148,0.94125,0.127086,0.149953,0.311287,0.699652,0.723302,0.305903,0.691525,0.242323,0.0965232,0.239392,0.301183,0.827914,0.477817,0.438148,0.0652992,0.286336,0.462471,0.804793,0.336292,0.663117,0.524512,0.498739,0.129293,0.698716,0.910467,0.800581,0.721663,0.898494,0.858221,0.162755,0.858892,0.527381,0.559057,0.31881,0.903481,0.313974,0.112336,0.205922,0.173491,0.744144,0.571529,0.0664444,0.979756,0.342517,0.260467,0.485866,0.0284774,0.75748,0.840593,0.49501,0.554655,0.14613,0.914081,0.309861,0.565884,0.51436,0.0958208,0.969686,0.694121,0.523488,0.862327,0.617965,0.584578,0.0217861,0.870868,0.35561,0.0180965,0.346798,0.558403,0.230643,0.233337,0.0385601,|0.536359,0.869589,0.982035,0.0301253,0.410324,0.0806847,0.0853586,0.258051,0.791385,0.680517,0.755586,0.111025,0.347416,0.506108,0.230623,0.890728,0.0272537,0.36404,0.494389,0.654768,0.976138,0.557929,0.157607,0.859359,0.691006,0.167007,0.551712,0.363237,0.505727,0.0986993,0.0939043,0.699132,0.498698,0.0289865,0.0998528,0.642751,0.118617,0.801598,0.76627,0.517756,0.537165,0.136384,0.653445,0.281294,0.761199,0.338946,0.329942,0.880673,0.0460519,0.487964,0.0858592,0.711224,0.602873,0.173255,0.449963,0.715193,0.620535,0.872132,0.194521,0.470643,0.277436,0.100783,0.975156,0.533871,0.894051,0.924507,0.608641,0.58086,0.82961,0.945324,0.854481,0.731684,0.184496,0.129603,0.649094,0.375839,0.649809,0.658131,0.284567,0.0219665,0.668966,0.292443,0.603231,0.928791,0.359484,0.484462,0.29899,0.98992,0.659835,0.466224,0.711863,0.187978,0.794956,0.493026,0.273814,0.198582,0.056059,0.115762,0.980609,0.376243,0.826425,0.986237,0.386119,0.373301,0.251281,0.332551,0.924083,0.224071,0.313914,0.302347,0.0248516,0.82066,0.900205,0.0646458,0.165443,0.326937,0.929802,0.0334257,0.809162,0.725305,0.452802,0.276479,0.741929,0.585793,0.19545,0.529368,0.644999,0.462202,0.977643,0.469993,0.421056,0.657519,0.821814,0.174932,0.490406,0.436101,0.578977,0.343367,0.550965,0.0761682,0.470363,0.0753331,0.443873,0.614524,0.876452,0.481375,0.20017,0.664742,0.893854,0.934277,0.805181,0.21707,0.102578,0.740522,0.140293,0.169877,0.609858,0.431413,0.41044,0.272487,0.462768,0.211641,0.744976,0.543619,0.973683,0.217067,0.567455,0.432523,0.164122,0.285011,0.228063,0.238444,0.283658,0.0476482,0.901488,0.826606,0.57928,0.118482,0.433168,0.508803,0.960136,0.0242931,0.420185,0.0522861,0.0700648,0.887227,0.33898,0.685404,0.722949,0.612357,0.237683,0.381306,0.918369,0.162597,0.103932,0.159279,0.128528,0.980383,0.101251,0.452546,0.569533,0.431528,0.113246,0.831038,0.210543,0.590957,0.595256,0.711002,0.172089,0.848201,0.357225,0.699533,0.611155,0.799604,0.611488,0.821549,0.965732,0.719857,0.757048,0.465138,0.380488,0.0484458,0.922094,0.554794,0.380129,0.700886,0.472893,0.672959,0.848681,0.843002,0.186156,0.0829058,0.611048,0.340754,0.874493,0.905106,0.0444173,0.0448544,0.086389,0.0874884,0.592301,0.996855,0.636866,0.637251,0.501492,0.0153345,0.895687,0.177559,0.944211,0.278041,0.205213,0.755907,0.377576,0.798844,0.181811,0.357634,0.122078,0.738176,0.768839,0.825285,0.951045,0.430322,0.904972,0.108593,0.903588,0.332504,0.237438,0.539656,0.0468526,0.302466,0.952935,0.616534,0.077108,0.475446,0.83382,0.99632,0.796265,0.412001,0.545148,0.954914,0.265252,0.118534,0.173316,0.591184,0.265831,0.464578,0.377905,0.391015,0.945382,0.176074,0.0463398,0.355157,0.735687,0.665775,0.273664,0.532712,0.300259,0.144309,0.607588,0.45217,0.609722,0.378787,0.380779,0.771123,0.920411,0.998116,0.371019,0.970914,0.633546,0.65122,0.844077,0.878873,0.628526,0.857337,0.107263,0.0493121,0.419611,0.104947,0.0347565,0.265477,0.971047,0.61223,0.0110515,0.226603,0.0155451,0.734519,0.864246,0.94612,0.277983,0.280756,0.330213,0.248129,0.478465,0.484577,0.657843,0.701601,0.604968,0.202025,0.965722,0.400664,0.991329,0.584154,0.988892,0.0218406,0.713045,0.898324,0.607626,0.59954,0.308085,0.800972,0.0602472,0.534638,0.955298,0.850059,0.120774,0.504092,0.252797,0.994513,0.202441,0.52343,0.088522,0.309075,0.00690305,0.23334,0.234186,0.138685,0.490487,0.804469,0.403234,0.839281,0.67243,0.811896,0.212258,0.128257,0.11301,0.831418,0.621893,0.915949,0.107118,0.123675,0.781373,0.907328,0.373284,0.0584533,0.647703,0.477285,0.965544,0.74404,0.636983,0.757193,0.153774,0.97364,0.560198,0.54997,0.207974,0.438662,0.553323,0.377777,0.41969,0.385068,0.879867,0.755236,0.589437,0.932387,0.309328,0.616103,0.0881585,0.912574,0.114432,0.856872,0.119905,0.561609,0.637026,0.863523,0.14947,0.955101,0.940071,0.691313,0.6923,0.652162,0.28857,0.3647,0.63338,0.374082,0.043842,0.770133,0.627206,0.0590704,0.096728,0.120372,0.376439,0.4619,0.944384,0.355235,0.448117,0.808993,0.443039,0.270987,0.380986,0.806765,0.193869,0.320209,0.844651,0.0088461,0.672693,0.172918,0.989732,0.495864,0.316085,0.265137,0.343992,0.500401,0.345715,0.410512,0.63667,0.540495,0.776706,0.131475,0.425488,0.518219,0.129791,0.267521,0.761761,0.296955,0.818011,0.274194,0.600926,0.983257,0.42156,0.638851,0.788552,0.0535771,0.113116,0.177622,0.425149,0.39708,0.597125,0.23787,0.252875,0.14307,0.028341,0.101528,0.221678,0.592761,0.884429,0.860318,0.526609,0.62306,0.824243,0.0807742,0.201514,0.0498481,0.162965,0.572193,0.553868,0.193231,0.891953,0.637166,0.776192,0.48061,0.285182,0.402127,0.212548,0.712407,0.438762,0.419133,0.735176,0.37912,0.217381,0.455287,0.990913,0.783227,0.178823,0.276763,0.826976,0.646001,0.472564,0.4523,0.0798444,0.685294,0.591556,0.635429,0.307824,0.566791,0.761947,0.11436,0.377454,0.370844,0.0931914,0.885514,0.377757,0.144502,0.741814,0.0855367,0.864754,0.125884,0.666619,0.951695,0.946257,0.622136,0.959601,0.876562,0.878564,0.932866,0.432072,0.605548,0.191296,0.818892,0.897188,0.62052,0.371655,0.3075,0.0279509,0.204215,0.887091,0.19325,0.139007,0.409101,0.978014,0.190028,0.229287,0.179402,0.124693,0.0874521,0.674208,0.733128,0.919461,0.171883,0.949442,0.654627,0.129568,0.0245571,0.436946,0.950791,0.312838,0.348482,0.815698,0.166967,0.0265142,0.407027,0.194921,0.067826,0.0181395,0.88585,0.44785,0.618244,0.692017,0.585355,0.673689,0.118987,0.0956995,0.723838,0.476152,0.696652,0.238141,0.0565907,0.68194,0.283961,0.85861,0.0941775,0.4596,0.971853,0.183781,0.229107,0.350774,0.776623,0.0133419,0.365648,0.149989,0.804229,0.399634,0.702669,0.506119,0.877091,0.508376,0.94204,0.484203,0.0121282,0.631718,0.719769,0.896789,0.986648,0.179731,0.832744,0.0176713,0.910413,0.183813,0.869674,0.0846271,0.512404,0.772846,0.283577,0.889515,0.496354,0.63408,0.726537,0.203958,0.899194,0.476115,0.991341,0.899995,0.502949,0.164294,0.219837,0.0362353,0.926791,0.00372821,0.108404,0.197501,0.241172,0.013688,0.757895,0.73306,0.0732866,0.862313,0.547648,0.484415,0.910913,0.135244,0.620309,0.923666,0.436359,0.126744,0.816327,0.437155,0.611647,0.943296,0.332902,0.490304,0.576925,0.390386,0.981666,0.737548,0.841326,0.601659,0.462675,0.425001,0.891794,0.444612,0.833106,0.960005,0.92111,0.417396,0.882174,0.412316,0.13075,0.540715,0.386968,0.712988,0.932161,0.299161,0.892231,0.722169,0.357975,0.579,0.710564,0.639176,0.0929936,0.570836,0.25748,0.423501,0.804402,0.334223,0.996523,0.599502,0.189235,0.31615,0.975977,0.344492,0.610461,0.601069,0.0737966,0.944169,0.953324,0.484176,0.991373,0.840729,0.692365,0.293568,0.719899,0.577579,0.459696,0.740683,0.732382,0.787443,0.469769,0.507783,0.122739,0.46269,0.536688,0.731152,0.045751,0.834547,0.68274,0.098235,0.353955,0.275708,0.55124,0.271961,0.0856898,0.0212958,0.0624706,0.302301,0.11611,0.682624,0.892383,0.557252,0.467696,0.302264,0.116485,0.630333,0.228092,0.682523,0.476993,0.912691,0.109343,0.54004,0.0718946,0.733021,0.482995,0.605274,0.12222,0.319591,0.926037,0.980109,0.930421,0.225554,0.554024,0.660073,0.471243,0.229245,0.310444,0.276749,0.326656,0.974512,0.062115,0.954342,0.353883,0.251396,0.117056,0.715155,0.343456,0.712809,0.285902,0.39293,0.887314,0.0652543,0.454328,0.582039,0.960225,0.607818,0.446894,0.409103,0.451644,0.936254,0.646753,0.720051,0.415257,0.605997,0.838237,0.490172,0.174608,0.901429,0.340356,0.425078,0.460446,0.798625,0.570168,0.378671,0.710978,0.207946,0.160051,0.755681,0.443593,0.641067,0.720611,0.0933074,0.816207,0.938897,0.587433,0.349167,0.350457,0.925157,0.836112,0.293101,0.7287,0.473741,0.413535,0.53646,0.735006,0.137315,0.027415,0.193567,0.0162641,0.888031,0.604834,0.654467,0.741644,0.234304,0.427934,0.848337,0.042338,0.733764,0.233719,0.856892,0.757187,0.615752,0.487755,0.716737,0.830103,0.966006,0.994655,0.303457,0.242507,0.0321876,0.502438,0.0393249,0.368198,0.580526,0.334801,0.610155,0.311599,0.226824,0.300796,0.519529,0.374107,0.943263,0.370679,0.137291,0.0983632,0.915984,0.0958685,0.0197812,0.883453,0.916212,0.977606,0.853862,0.296149,0.184321,0.842509,0.939762,0.659491,0.365844,0.319335,0.13319,0.979905,0.834579,0.939235,0.567075,0.115603,0.750026,0.423839,0.562364,0.662732,0.837541,0.0792605,0.752125,0.561414,0.676937,0.174641,0.092047,0.131642,0.202307,0.898491,0.623789,0.48122,0.668423,0.181664,0.820418,0.046266,0.731009,0.968535,0.107596,0.449476,0.23635,0.443168,0.697017,0.811526,0.812307,0.118614,0.49084,0.0774758,0.0384558,0.0181097,0.435532,0.511676,0.281036,0.208027,0.198575,0.0812783,0.927511,0.982841,0.744319,0.811823,0.437873,0.174818,0.140986,0.578341,0.573122,0.750882,0.892466,0.470639,0.425432,0.141575,0.0101982,0.938427,0.554389,0.801939,0.473907,0.504946,0.742546,0.392952,0.285297,0.889061,0.33769,0.800084,0.17305,0.373011,0.593536,0.865495,0.209697,0.0472198,0.439387,0.837128,0.968091,0.367035,0.621646,0.677363,0.415201,0.30535,0.615843,0.273596,0.484468,0.264228,0.0673976,0.665297,0.333461,0.261834,0.612766,0.150058,0.357325,0.0956016,0.553201,0.632655,0.846035,0.506802,0.880841,0.959851,0.102865,0.309013,0.534122,0.380805,0.308962,0.643854,0.110316,0.0861303,0.203114,0.50829,0.723791,0.136917,|0.0440335,0.264424,0.724011,0.755189,0.308415,0.0581124,0.131594,0.166096,0.0199437,0.514118,0.72097,0.550411,0.59524,0.444795,0.0615087,0.454468,0.00842166,0.0987716,0.131671,0.823094,0.511847,0.236729,0.161271,0.187555,0.575928,0.994352,0.359893,0.863821,0.197659,0.49692,0.725205,0.948161,0.500751,0.154003,0.863076,0.183047,0.0896265,0.392241,0.930782,0.558341,0.885617,0.839214,0.658441,0.1879,0.768909,0.291956,0.159613,0.693066,0.195286,0.773751,0.320862,0.965134,0.0199399,0.00424564,0.742049,0.162323,0.661238,0.543762,0.15739,0.129123,0.443032,0.582211,0.902578,0.592089,0.855728,0.96697,0.911262,0.804139,0.961325,0.38028,0.332209,0.0375754,0.000576794,0.945443,0.687868,0.295792,0.755305,0.541098,0.0732238,0.107602,0.118928,0.00677538,0.477298,0.099776,0.685753,0.606317,0.773391,0.437141,0.771021,0.566952,0.726421,0.349325,0.901936,0.896966,0.0746372,0.387965,0.411691,0.159114,0.369684,0.87447,0.223198,0.927132,0.787103,0.587456,0.842345,0.310804,0.0904131,0.712778,0.0802421,0.57786,0.80933,0.193205,0.910803,0.0858448,0.0425859,0.519108,0.988986,0.483061,0.233955,0.158686,0.241168,0.146,0.51109,0.925161,0.973901,0.694429,0.358039,0.611955,0.200345,0.309154,0.646847,0.0616338,0.652971,0.37951,0.968875,0.797071,0.619697,0.920023,0.428777,0.902532,0.0107599,0.477224,0.705883,0.500813,0.0531968,0.441932,0.992704,0.387757,0.525778,0.0533393,0.0511621,0.25952,0.0409203,0.787318,0.882385,0.888589,0.408316,0.882429,0.123228,0.171825,0.724667,0.747717,0.938537,0.93901,0.159955,0.963491,0.267764,0.364479,0.392677,0.105855,0.676973,0.625569,0.638008,0.533122,0.318226,0.821246,0.636597,0.00981063,0.347294,0.524388,0.943891,0.633926,0.115957,0.405039,0.409816,0.527752,0.325398,0.382109,0.346502,0.704519,0.697766,0.713021,0.161752,0.0873201,0.841516,0.900816,0.767649,0.686667,0.216884,0.142557,0.972526,0.959963,0.153668,0.88452,0.699115,0.39892,0.460441,0.717041,0.0223963,0.0511705,0.311201,0.832377,0.755388,0.579649,0.337817,0.884661,0.436616,0.451284,0.631801,0.847369,0.32753,0.96759,0.0289922,0.0803483,0.510972,0.69792,0.0258711,0.38788,0.516785,0.334486,0.0482599,0.218099,0.65439,0.792587,0.0368925,0.330597,0.37803,0.737605,0.0659038,0.457227,0.24957,0.890845,0.635257,0.478916,0.858551,0.706924,0.79532,0.906382,0.36024,0.551643,0.757488,0.701986,0.426035,0.967533,0.928777,0.388883,0.743197,0.382532,0.0799497,0.903521,0.196409,0.341253,0.814281,0.342548,0.61829,0.101509,0.670344,0.761658,0.529652,0.264435,0.636269,0.44433,0.861796,0.564355,0.571695,0.418356,0.854098,0.060743,0.850203,0.51085,0.849225,0.30472,0.252699,0.9103,0.263575,0.0472253,0.585225,0.0759839,0.378104,0.69153,0.185163,0.155874,0.643757,0.0554498,0.627889,0.153328,0.329845,0.701076,0.154665,0.914826,0.27545,0.762359,0.22576,0.547748,0.819983,0.773322,0.473045,0.89921,0.834359,0.849864,0.000965416,0.349022,0.431965,0.376013,0.539121,0.374305,0.907137,0.0140618,0.186,0.370595,0.5271,0.896659,0.619128,0.931183,0.0132157,0.970182,0.0512649,0.880504,0.418664,0.648763,0.79927,0.987835,0.217655,0.346274,0.199041,0.844137,0.799521,0.987239,0.596936,0.142964,0.470508,0.556264,0.223961,0.919823,0.956655,0.212962,0.420253,0.158123,0.165685,0.529248,0.44121,0.169458,0.113993,0.621788,0.640081,0.877401,0.416569,0.170454,0.290821,0.256431,0.581434,0.211652,0.305245,0.640736,0.459431,0.470755,0.688666,0.386499,0.801345,0.635431,0.156685,0.148169,0.873557,0.311881,0.897163,0.543149,0.870424,0.46184,0.307738,0.541637,0.0355389,0.130268,0.588956,0.215138,0.888603,0.19392,0.54634,0.811511,0.351192,0.929352,0.599165,0.462404,0.670379,0.766483,0.599135,0.488642,0.942645,0.729195,0.0365227,0.760865,0.836073,0.678439,0.236189,0.823516,0.556007,0.898941,0.983429,0.756177,0.817943,0.144987,0.770299,0.359633,0.711551,0.637427,0.955637,0.202569,0.210296,0.401739,0.616584,0.855401,0.179683,0.966284,0.415445,0.892876,0.939158,0.00342709,0.922312,0.0612242,0.112683,0.570796,0.270499,0.925631,0.305737,0.379376,0.178514,0.389598,0.840175,0.0601398,0.943551,0.58575,0.190531,0.318695,0.928174,0.653976,0.200508,0.127421,0.690989,0.774753,0.33117,0.217389,0.230775,0.266962,0.723785,0.57343,0.334592,0.420995,0.494914,0.415013,0.454939,0.200784,0.505723,0.0842722,0.509628,0.893498,0.272878,0.155847,0.634905,0.632513,0.401306,0.224146,0.987055,0.227507,0.322712,0.00230265,0.814066,0.804262,0.611921,0.810635,0.985454,0.0238824,0.543761,0.992257,0.974859,0.714761,0.252771,0.342625,0.238558,0.258015,0.909352,0.157721,0.445237,0.898334,0.0287138,0.42771,0.673233,0.939138,0.772841,0.28526,0.516715,0.121081,0.388288,0.784046,0.783618,0.57109,0.301564,0.566758,0.142548,0.357179,0.395646,0.240478,0.0670195,0.272645,0.50719,0.541454,0.230266,0.46729,0.0663924,0.325109,0.45411,0.594419,0.900144,0.152133,0.088168,0.658388,0.36035,0.406822,0.77837,0.889606,0.415923,0.349589,0.723143,0.368404,0.372488,0.676189,0.689849,0.684609,0.396431,0.379485,0.226354,0.0815802,0.145914,0.522728,0.20934,0.824574,0.562503,0.721619,0.167634,0.778428,0.71324,0.816947,0.984181,0.135887,0.356776,0.465521,0.722867,0.669064,0.573225,0.104477,0.110827,0.1766,0.32153,0.540725,0.606887,0.943935,0.899561,0.590525,0.438002,0.995223,0.0443327,0.824492,0.726096,0.226619,0.220858,0.122642,0.480105,0.166723,0.934241,0.407464,0.198003,0.229857,0.783864,0.916695,0.743834,0.538569,0.288025,0.870659,0.536567,0.436509,0.460147,0.532029,0.651214,0.0630755,0.632841,0.141279,0.0792081,0.294727,0.880226,0.38287,0.683655,0.924392,0.21892,0.0705904,0.980582,0.836336,0.229902,0.498309,0.0821123,0.0941712,0.909964,0.284315,0.553464,0.306818,0.541049,0.968459,0.365398,0.789187,0.848214,0.691475,0.185619,0.219618,0.450231,0.776098,0.896585,0.015964,0.533642,0.0276423,0.0404433,0.476164,0.508256,0.566106,0.828665,0.613013,0.0920191,0.275429,0.348783,0.617964,0.778009,0.210058,0.294374,0.935647,0.537506,0.711566,0.375926,0.24084,0.836101,0.480463,0.891777,0.372858,0.954795,0.494351,0.427269,0.204139,0.257767,0.525695,0.979256,0.954645,0.798675,0.0101519,0.787636,0.561585,0.647877,0.223028,0.101131,0.224712,0.530845,0.517772,0.997649,0.725986,0.480053,0.786429,0.132111,0.82658,0.345393,0.86133,0.652584,0.174262,0.877325,0.7552,0.996829,0.342279,0.391588,0.532878,0.0193809,0.471665,0.481482,0.933886,0.723019,0.868789,0.948733,0.447172,0.144626,0.836521,0.187907,0.198524,0.0308225,0.481644,0.722913,0.272625,0.464299,0.933742,0.529113,0.0998264,0.0804152,0.759236,0.240534,0.71778,0.207597,0.0475173,0.0849724,0.249512,0.300292,0.998222,0.888733,0.587191,0.70059,0.0703011,0.470203,0.765815,0.483378,0.177173,0.481404,0.277891,0.920614,0.426379,0.672437,0.14573,0.677459,0.68729,0.407622,0.356363,0.378777,0.806322,0.155468,0.269758,0.105804,0.0193962,0.441251,0.342355,0.832769,0.530093,0.997654,0.595224,0.109823,0.93049,0.419718,0.777105,0.987677,0.558715,0.873739,0.97262,0.424846,0.973905,0.616286,0.129979,0.180017,0.77821,0.115201,0.012857,0.729784,0.142551,0.0228285,0.269444,0.217438,0.686664,0.13161,0.745809,0.687476,0.761683,0.552284,0.883769,0.866358,0.449727,0.470333,0.139648,0.859773,0.687288,0.720085,0.0719252,0.232318,0.770291,0.788129,0.91683,0.140166,0.348554,0.0398201,0.743442,0.971567,0.0766993,0.085202,0.276357,0.393982,0.365591,0.233412,0.0489479,0.226263,0.292608,0.0669256,0.928035,0.908749,0.72885,0.760617,0.951936,0.185581,0.488695,0.742077,0.219774,0.898487,0.0332236,0.24439,0.793087,0.374412,0.749226,0.107902,0.762273,0.462745,0.47301,0.0226407,0.359947,0.812344,0.901105,0.785875,0.181051,0.0683646,0.167065,0.785802,0.240153,0.110862,0.248083,0.519028,0.142304,0.669272,0.055653,0.12506,0.194843,0.795437,0.857956,0.982694,0.414688,0.789794,0.115056,0.502701,0.565616,0.355341,0.826789,0.611269,0.437877,0.953244,0.983915,0.715134,0.445673,0.659995,0.156505,0.860928,0.469568,0.9659,0.917876,0.0456893,0.324051,0.392057,0.864508,0.443389,0.604891,0.859891,0.990946,0.856889,0.879367,0.625534,0.491831,0.714306,0.696473,0.331391,0.852859,0.652956,0.548724,0.505937,0.49785,0.346038,0.360726,0.180286,0.238665,0.262189,0.257637,0.98906,0.831601,0.788173,0.186144,0.0496019,0.495814,0.0813573,0.269938,0.372504,0.29447,0.622587,0.571664,0.00458914,0.385202,0.748548,0.591889,0.984993,0.751676,0.367983,0.0291489,0.835638,0.487542,0.281559,0.38262,0.702794,0.854965,0.136686,0.297162,0.724119,0.889957,0.402516,0.336064,0.527616,0.247761,0.928874,0.114327,0.600168,0.21754,0.131444,0.986983,0.0408052,0.554469,0.517463,0.294933,0.0833223,0.85427,0.778323,0.599049,0.631975,0.997466,0.571679,0.214696,0.33145,0.992888,0.598549,0.562091,0.585478,0.609497,0.465697,0.469711,0.026403,0.097244,0.586689,0.937032,0.0487277,0.709038,0.0168814,0.522494,0.345383,0.81547,0.59392,0.853962,0.761569,0.688513,0.941815,0.942081,0.634701,0.434201,0.826852,0.865142,0.856906,0.766057,0.486395,0.239977,0.78691,0.877559,0.296437,0.957538,0.182651,0.648358,0.0559244,0.610316,0.117507,0.634179,0.110335,0.0302416,0.330435,0.745065,0.262471,0.937307,0.713799,0.183349,0.27849,0.449834,0.0788298,0.765479,0.330952,0.489111,0.335451,0.428922,0.187455,0.299317,0.18734,0.947795,0.0957072,0.310843,0.888048,0.635791,|0.517405,0.961962,0.451993,0.999168,0.228231,0.887308,0.00913656,0.650654,0.108138,0.486022,0.498745,0.789579,0.470425,0.613355,0.179962,0.0894194,0.386461,0.169359,0.0304015,0.111697,0.607663,0.838693,0.71064,0.7264,0.838266,0.797805,0.30852,0.651475,0.53622,0.080374,0.957911,0.623521,0.501259,0.608397,0.379067,0.354889,0.225158,0.808424,0.87899,0.850122,0.0260989,0.346345,0.686553,0.308236,0.104144,0.392574,0.870664,0.384531,0.825969,0.0348864,0.931752,0.594572,0.502994,0.182731,0.215056,0.344074,0.358001,0.00458312,0.0242834,0.94573,0.871755,0.721922,0.191921,0.0414744,0.322112,0.316511,0.452607,0.83184,0.334893,0.487163,0.933248,0.144403,0.8454,0.514664,0.0824231,0.0987971,0.458399,0.223886,0.92842,0.925395,0.747528,0.322081,0.67818,0.620855,0.65715,0.387018,0.538384,0.860753,0.920867,0.223496,0.119366,0.717647,0.306877,0.392611,0.409774,0.270634,0.716255,0.53533,0.502009,0.402568,0.109645,0.818706,0.301359,0.850723,0.777751,0.334885,0.142641,0.604517,0.378422,0.474293,0.241929,0.326119,0.079817,0.637136,0.233807,0.0100525,0.668266,0.362429,0.996452,0.469183,0.528605,0.374244,0.428437,0.547749,0.819427,0.840198,0.922395,0.361911,0.726973,0.46901,0.88317,0.573484,0.827974,0.427461,0.21834,0.83649,0.735916,0.817538,0.510342,0.40746,0.0212809,0.302719,0.23702,0.252925,0.204571,0.551628,0.841984,0.844436,0.807045,0.367822,0.707813,0.515131,0.650517,0.23348,0.222547,0.250651,0.849977,0.564778,0.238199,0.893349,0.431406,0.965629,0.635725,0.814183,0.859646,0.988908,0.174352,0.99792,0.98605,0.487195,0.46772,0.202312,0.417407,0.142164,0.862184,0.578873,0.0376205,0.161546,0.797341,0.60104,0.502897,0.79923,0.317028,0.694753,0.668535,0.58211,0.125676,0.969873,0.102017,0.212618,0.300034,0.994091,0.610874,0.0271088,0.57768,0.466496,0.605947,0.776834,0.357109,0.89839,0.803073,0.468592,0.421121,0.715878,0.471117,0.168056,0.199075,0.353265,0.0208926,0.26707,0.886321,0.156678,0.366941,0.0346142,0.867641,0.955323,0.318262,0.223203,0.341725,0.0621448,0.513701,0.168842,0.373291,0.282299,0.160846,0.241128,0.669775,0.277671,0.487728,0.637101,0.118839,0.654369,0.127178,0.00219953,0.0750656,0.904546,0.430569,0.86712,0.513629,0.772668,0.386507,0.798004,0.105944,0.598652,0.167047,0.356897,0.82672,0.187311,0.481979,0.914883,0.58908,0.462977,0.752924,0.967935,0.905187,0.584173,0.690811,0.387762,0.335213,0.428002,0.655314,0.408392,0.140842,0.449993,0.970895,0.679369,0.577954,0.336066,0.10025,0.681062,0.819034,0.48946,0.36413,0.0230454,0.947869,0.243061,0.0862252,0.226988,0.0514163,0.403309,0.970497,0.374099,0.503629,0.155821,0.371493,0.0233895,0.0281649,0.167992,0.833357,0.326248,0.943411,0.902249,0.895169,0.897381,0.466223,0.317861,0.292953,0.162888,0.882562,0.00712281,0.364644,0.848483,0.581803,0.950906,0.248901,0.251128,0.871715,0.721298,0.0462778,0.610982,0.390992,0.109432,0.405878,0.378299,0.788849,0.791285,0.479368,0.798867,0.392037,0.221068,0.673907,0.282354,0.71322,0.240487,0.699325,0.592542,0.0637739,0.976922,0.354547,0.460327,0.631349,0.388022,0.868081,0.154797,0.827202,0.0616125,0.236124,0.801232,0.638449,0.562107,0.104327,0.818615,0.300174,0.530361,0.0563124,0.0117874,0.20897,0.663365,0.527643,0.0893296,0.493592,0.716355,0.143224,0.14432,0.0315019,0.779476,0.0580946,0.488387,0.432438,0.443169,0.712648,0.972977,0.837076,0.493317,0.587844,0.955457,0.83051,0.554474,0.429387,0.967517,0.72406,0.14957,0.988889,0.754019,0.768818,0.702829,0.830717,0.767613,0.742387,0.447316,0.140746,0.796724,0.135238,0.149275,0.342129,0.472721,0.575917,0.263082,0.745097,0.805732,0.439512,0.800998,0.137603,0.118244,0.433188,0.727146,0.328617,0.621382,0.13293,0.439362,0.17748,0.790027,0.413666,0.242541,0.178369,0.922381,0.45988,0.580792,0.155892,0.715423,0.191479,0.228071,0.80338,0.130667,0.890078,0.535856,0.264231,0.0414925,0.411062,0.362899,0.391254,0.880984,0.566991,0.884851,0.502777,0.979985,0.687912,0.888023,0.653593,0.810248,0.694906,0.709734,0.41173,0.502635,0.206019,0.84761,0.783091,0.156215,0.335126,0.372337,0.376388,0.269208,0.908455,0.834536,0.00491649,0.352588,0.532599,0.659939,0.80558,0.00642008,0.434787,0.284674,0.0318521,0.220194,0.958864,0.764531,0.637011,0.219553,0.616274,0.236241,0.63543,0.367277,0.894804,0.358026,0.566923,0.747319,0.466677,0.203029,0.111599,0.0951374,0.0370435,0.726924,0.425183,0.288011,0.997867,0.678964,0.438565,0.800683,0.819015,0.787384,0.748402,0.14934,0.596067,0.0701863,0.671272,0.417797,0.411278,0.182836,0.0104008,0.28101,0.509137,0.883931,0.145159,0.907012,0.542402,0.515312,0.157378,0.537031,0.854397,0.992212,0.10123,0.814299,0.1217,0.335224,0.776419,0.00237763,0.604855,0.667772,0.63346,0.545182,0.88645,0.581208,0.702784,0.0466794,0.260226,0.472289,0.542771,0.343518,0.219461,0.588745,0.137048,0.638093,0.711227,0.723934,0.179005,0.387778,0.924269,0.107218,0.720135,0.848836,0.464515,0.952301,0.990681,0.746139,0.165669,0.00507015,0.472664,0.824928,0.184003,0.0322267,0.494658,0.610141,0.918509,0.380132,0.109931,0.995283,0.47404,0.593354,0.413504,0.154235,0.293442,0.677005,0.677952,0.524979,0.619131,0.0546656,0.536583,0.680995,0.63965,0.507171,0.515245,0.131485,0.904936,0.547431,0.434705,0.167459,0.620152,0.426838,0.323632,0.758805,0.500565,0.714257,0.285631,0.857588,0.891095,0.734253,0.822516,0.773497,0.640104,0.537129,0.520511,0.500497,0.428644,0.262152,0.45458,0.619063,0.55614,0.125446,0.0606483,0.862319,0.504098,0.710486,0.186385,0.5445,0.953697,0.950122,0.992247,0.342142,0.501947,0.843188,0.194735,0.904848,0.998316,0.406996,0.956212,0.348829,0.890177,0.584027,0.346495,0.652189,0.953271,0.107234,0.968647,0.646374,0.466519,0.183107,0.882399,0.994148,0.710078,0.965115,0.729889,0.389929,0.0739866,0.518101,0.398328,0.96864,0.532296,0.29572,0.453975,0.767801,0.485622,0.0477735,0.290183,0.140135,0.114154,0.617877,0.227723,0.101658,0.742002,0.0859256,0.985431,0.775755,0.616768,0.754462,0.0453377,0.927419,0.0970725,0.645595,0.0842181,0.930997,0.459887,0.908801,0.942477,0.594729,0.398332,0.585241,0.536567,0.575677,0.651625,0.853699,0.784714,0.80194,0.89082,0.75243,0.436482,0.975611,0.792233,0.0115977,0.603021,0.963893,0.984766,0.0462871,0.904351,0.870329,0.0915762,0.904392,0.00727558,0.0694068,0.302483,0.804972,0.278925,0.869567,0.573298,0.212958,0.0887725,0.503733,0.595466,0.83226,0.0146657,0.401718,0.120056,0.228521,0.30658,0.110481,0.769881,0.0387858,0.348088,0.569536,0.900303,0.257946,0.544024,0.841446,0.0245869,0.708714,0.474938,0.261693,0.475304,0.394051,0.559453,0.484751,0.0651604,0.928705,0.600147,0.0320168,0.365427,0.136156,0.0756422,0.380247,0.028637,0.972465,0.506594,0.476526,0.483592,0.478444,0.640038,0.781574,0.343277,0.734049,0.213198,0.381655,0.509777,0.035167,0.226108,0.504404,0.737535,0.307672,0.831401,0.836879,0.805716,0.30603,0.551385,0.926852,0.0742492,0.324723,0.92582,0.0133813,0.0838501,0.385571,0.746259,0.923193,0.545721,0.19045,0.842456,0.384865,0.301573,0.983826,0.69754,0.345275,0.100554,0.180438,0.425348,0.176345,0.37063,0.420755,0.20306,0.371609,0.118544,0.0188753,0.302892,0.0449666,0.85774,0.304351,0.184544,0.979162,0.27002,0.615503,0.144751,0.338759,0.110707,0.330001,0.274634,0.185671,0.494342,0.157782,0.737706,0.951537,0.579387,0.31758,0.76949,0.479988,0.747183,0.317765,0.410876,0.229098,0.327187,0.794704,0.638212,0.844065,0.218313,0.850846,0.593715,0.36661,0.849441,0.869883,0.0419801,0.917401,0.957001,0.787217,0.0886831,0.888267,0.895938,0.688998,0.851957,0.776623,0.675849,0.331521,0.260133,0.93425,0.615891,0.218367,0.225087,0.755209,0.923072,0.854499,0.195792,0.163297,0.491845,0.379824,0.294056,0.779904,0.327194,0.307703,0.455018,0.663765,0.238649,0.108182,0.0315763,0.803352,0.437481,0.562433,0.347738,0.375369,0.226041,0.438368,0.465893,0.259127,0.769464,0.528489,0.678845,0.809636,0.142262,0.351953,0.0436912,0.986886,0.137896,0.55683,0.0148723,0.320487,0.804965,0.192597,0.914093,0.841557,0.221891,0.977542,0.0202721,0.312058,0.248248,0.280994,0.12381,0.46716,0.991369,0.846325,0.104513,0.350526,0.973782,0.490125,0.366869,0.133592,0.320298,0.756452,0.818884,0.0571264,0.321743,0.561361,0.825295,0.671226,0.3112,0.344825,0.753352,0.338908,0.388368,0.915584,0.273872,0.00417197,0.424604,0.900583,0.207588,0.754601,0.41657,0.268596,0.00923532,0.728266,0.910101,0.92878,0.245418,0.010588,0.611958,0.38168,0.78647,0.0828604,0.169974,0.159049,0.668431,0.494609,0.820968,0.585955,0.271975,0.169512,0.761931,0.679571,0.0327502,0.165121,0.993029,0.167256,0.761939,0.914845,0.535757,0.225511,0.655466,0.293207,0.724246,0.844198,0.716485,0.57853,0.0250438,0.248532,0.824918,0.0135323,0.738917,0.562626,0.989754,0.965128,0.690225,0.793539,0.0417633,0.836021,0.36475,0.743971,0.487998,0.658518,0.146167,0.0102944,0.173419,0.388344,0.579541,0.307628,0.559278,0.766412,0.173573,0.574842,0.107928,0.372119,0.165328,0.717889,0.387709,0.160154,0.971189,0.924085,0.800188,0.244344,0.723122,0.662868,0.764101,0.81904,0.561734,0.39657,0.0707252,0.265321,0.841781,0.753918,0.494835,0.313971,0.125502,0.496858,0.431366,0.585634,0.0879096,0.366237,0.637741,0.245342,0.247122,0.0951817,0.118205,0.677159,0.330328,0.150843,0.962216,0.147986,0.226855,0.410429,|0.362042,0.339897,0.203468,0.961785,0.135035,0.26065,0.944868,0.637175,0.269437,0.0593272,0.0828393,0.135213,0.160122,0.290311,0.207172,0.498906,0.674264,0.818749,0.55741,0.685584,0.963,0.295181,0.444912,0.949001,0.0480313,0.97181,0.830258,0.702775,0.705058,0.0280654,0.377696,0.321077,0.604015,0.156993,0.519318,0.120669,0.929356,0.695189,0.563392,0.372403,0.910218,0.776278,0.835954,0.764505,0.840621,0.681561,0.670123,0.751193,0.690448,0.538586,0.453418,0.441346,0.408318,0.85915,0.0085454,0.929602,0.577263,0.96147,0.143888,0.306652,0.229965,0.790169,0.992773,0.295154,0.794274,0.488726,0.932391,0.151585,0.173381,0.976712,0.0972012,0.517914,0.216948,0.836842,0.684451,0.897704,0.239631,0.585739,0.547676,0.206317,0.677935,0.396928,0.660811,0.787283,0.215397,0.0566769,0.783853,0.319598,0.430741,0.294978,0.942347,0.566277,0.402992,0.568849,0.643349,0.794881,0.934784,0.418551,0.631748,0.0939657,0.594955,0.502127,0.272702,0.646721,0.145562,0.280438,0.208157,0.127899,0.336005,0.619848,0.0972386,0.0903866,0.153554,0.343485,0.754102,0.326551,0.559118,0.081996,0.107232,0.763161,0.991258,0.26052,0.244187,0.443304,0.377541,0.438642,0.228114,0.995438,0.637338,0.155291,0.214475,0.370971,0.776677,0.915131,0.564122,0.582499,0.292477,0.0335624,0.340267,0.221698,0.894836,0.507557,0.369219,0.781462,0.0282366,0.34138,0.220606,0.239869,0.0996561,0.785105,0.228575,0.585615,0.183169,0.715537,0.98828,0.539029,0.105275,0.563496,0.977805,0.102256,0.404832,0.454202,0.949175,0.624853,0.308331,0.944382,0.755574,0.846135,0.383501,0.00559074,0.183769,0.706436,0.190636,0.612156,0.886661,0.295785,0.504565,0.306712,0.959961,0.644391,0.370883,0.522632,0.249825,0.466435,0.707721,0.821349,0.453924,0.535281,0.0969477,0.202526,0.369,0.501561,0.172001,0.698269,0.165536,0.898247,0.839378,0.00943238,0.131064,0.670539,0.804842,0.557235,0.439143,0.930397,0.00547534,0.613003,0.741853,0.916312,0.409689,0.132256,0.649145,0.0956448,0.623122,0.295414,0.544004,0.556941,0.10624,0.302987,0.0511935,0.932968,0.675819,0.69051,0.856013,0.493759,0.472305,0.390484,0.321369,0.56732,0.18109,0.901987,0.486368,0.135783,0.507951,0.57206,0.496914,0.118832,0.598779,0.775174,0.521303,0.96845,0.404508,0.635102,0.659376,0.757012,0.327477,0.0185425,0.759325,0.813665,0.271197,0.701956,0.232365,0.685299,0.671482,0.8078,0.889754,0.188497,0.233461,0.274469,0.149108,0.379635,0.430613,0.396082,0.375369,0.859498,0.702338,0.571243,0.447145,0.977752,0.553306,0.65272,0.51273,0.735873,0.297087,0.732531,0.845604,0.097599,0.201876,0.710073,0.0725282,0.647677,0.556099,0.80186,0.469962,0.211969,0.205225,0.164078,0.079167,0.654982,0.475606,0.0815631,0.0774958,0.26675,0.971283,0.152319,0.927332,0.404774,0.942347,0.306298,0.66188,0.938485,0.528033,0.880695,0.247981,0.824465,0.244394,0.303762,0.466884,0.575481,0.309945,0.279988,0.343376,0.501775,0.638718,0.153267,0.332563,0.372555,0.79156,0.618531,0.398002,0.72954,0.183484,0.768123,0.338175,0.511352,0.684528,0.922552,0.411317,0.636611,0.740484,0.474413,0.536211,0.130031,0.444476,0.0615205,0.989973,0.943398,0.269755,0.198627,0.886036,0.864492,0.568379,0.336823,0.327365,0.206351,0.336411,0.979154,0.352274,0.277053,0.505899,0.264494,0.879342,0.17643,0.616942,0.938211,0.237917,0.405952,0.155498,0.203091,0.656997,0.292325,0.330407,0.571681,0.261901,0.941108,0.997518,0.740873,0.295018,0.995623,0.722457,0.788456,0.850308,0.959882,0.646482,0.28765,0.542047,0.0122317,0.451353,0.753778,0.0723389,0.627565,0.195803,0.395612,0.255232,0.285772,0.532023,0.661889,0.385292,0.00910819,0.497577,0.187534,0.767676,0.274474,0.216088,0.180154,0.968017,0.948399,0.636559,0.308232,0.629348,0.712669,0.680266,0.58065,0.255604,0.019369,0.0829368,0.649277,0.838721,0.719552,0.556599,0.759015,0.497137,0.277792,0.549314,0.636687,0.135449,0.329539,0.98405,0.250556,0.250955,0.722849,0.788352,0.708689,0.667804,0.373452,0.229276,0.745183,0.376566,0.900919,0.201052,0.197484,0.509896,0.431388,0.189327,0.357656,0.988696,0.386837,0.174452,0.00110853,0.115642,0.531765,0.142202,0.637055,0.596982,0.895643,0.529666,0.94377,0.481421,0.247263,0.380191,0.133469,0.0998687,0.773044,0.669688,0.219744,0.425357,0.637701,0.190753,0.639128,0.820846,0.920674,0.384672,0.601544,0.6682,0.478173,0.622459,0.326658,0.672201,0.119813,0.390617,0.85898,0.941267,0.899889,0.577681,0.732706,0.0557886,0.774458,0.980533,0.323122,0.253911,0.662121,0.739785,0.667981,0.669481,0.315854,0.0904281,0.529075,0.797339,0.970629,0.138827,0.224623,0.802301,0.505924,0.111361,0.689572,0.863012,0.160373,0.798002,0.122483,0.548503,0.00375926,0.991199,0.397832,0.412248,0.0925491,0.527982,0.396683,0.689606,0.650056,0.655513,0.608511,0.453992,0.356239,0.487421,0.999312,0.404402,0.48062,0.619486,0.180901,0.166935,0.844237,0.475396,0.777356,0.0575051,0.0686236,0.286613,0.0640597,0.936706,0.687826,0.280426,0.63333,0.291956,0.870322,0.883974,0.998402,0.662463,0.0648835,0.388798,0.639178,0.190864,0.468499,0.401156,0.831274,0.808603,0.330645,0.902026,0.114184,0.909246,0.767999,0.596079,0.126937,0.990781,0.413031,0.570871,0.669453,0.304802,0.352381,0.785162,0.968747,0.587468,0.835908,0.90171,0.641622,0.326257,0.638845,0.747844,0.34653,0.838328,0.623147,0.00184268,0.866661,0.813473,0.550205,0.960621,0.716945,0.695027,0.43852,0.719724,0.283476,0.687348,0.877266,0.297763,0.361942,0.131557,0.463859,0.897297,0.190068,0.586647,0.855603,0.91087,0.724333,0.392136,0.834741,0.585857,0.814287,0.911362,0.543305,0.949484,0.090663,0.225142,0.844707,0.435548,0.764481,0.656231,0.626622,0.921173,0.77903,0.2146,0.990298,0.15883,0.854787,0.478092,0.915899,0.0177456,0.667215,0.0112102,0.172059,0.332626,0.0740423,0.243219,0.374723,0.701056,0.928222,0.779139,0.649363,0.411872,0.132442,0.4738,0.373891,0.0356601,0.695479,0.560816,0.907662,0.670714,0.815731,0.304815,0.891326,0.170162,0.380722,0.496864,0.970581,0.45858,0.608099,0.735305,0.617394,0.252937,0.255003,0.134675,0.0710307,0.668599,0.918363,0.794453,0.376203,0.908995,0.0392929,0.23706,0.195625,0.190374,0.370883,0.893507,0.86799,0.332746,0.672958,0.531862,0.21998,0.589786,0.574386,0.231541,0.825115,0.331427,0.665297,0.29926,0.716305,0.967276,0.63168,0.572201,0.765753,0.656887,0.163719,0.738643,0.859929,0.300002,0.0301278,0.708806,0.210475,0.379784,0.62001,0.321777,0.86531,0.0859128,0.226247,0.96187,0.155866,0.66132,0.0237186,0.579906,0.140147,0.0515983,0.040154,0.970161,0.690431,0.363682,0.165671,0.827287,0.714783,0.542939,0.300623,0.783568,0.327731,0.653298,0.149595,0.782179,0.634993,0.645167,0.550864,0.380842,0.514214,0.368688,0.496121,0.68884,0.917151,0.44367,0.62428,0.730151,0.210318,0.141611,0.632874,0.623117,0.704565,0.874525,0.0183047,0.969644,0.414101,0.525345,0.956269,0.244874,0.185546,0.83415,0.132814,0.786066,0.938508,0.121502,0.266419,0.615108,0.834176,0.551007,0.246038,0.394885,0.937974,0.972396,0.808062,0.305363,0.467995,0.863107,0.165724,0.252761,0.82701,0.0421811,0.482673,0.9738,0.976692,0.151843,0.592288,0.364976,0.0584923,0.268432,0.50953,0.0684481,0.746739,0.827172,0.323699,0.375321,0.80789,0.955042,0.366686,0.320752,0.051492,0.692577,0.425474,0.834188,0.322165,0.10856,0.0235263,0.4553,0.403978,0.459338,0.588891,0.495325,0.00299871,0.61513,0.10412,0.259737,0.0559134,0.27106,0.27735,0.468691,0.911566,0.255511,0.14087,0.762666,0.677284,0.23134,0.522986,0.449408,0.14883,0.0422125,0.459597,0.301664,0.961307,0.912484,0.958039,0.865928,0.456108,0.392475,0.031086,0.363713,0.159168,0.0969715,0.470257,0.0236218,0.771098,0.263295,0.69606,0.108002,0.607392,0.236409,0.522165,0.690626,0.494985,0.464344,0.424122,0.776272,0.991442,0.53275,0.963012,0.464578,0.433543,0.927255,0.410545,0.894752,0.243113,0.867073,0.590502,0.400163,0.43442,0.627201,0.0896377,0.468285,0.730824,0.109705,0.0509564,0.724049,0.951973,0.892057,0.802218,0.988795,0.841487,0.225567,0.987232,0.682205,0.288889,0.456469,0.880885,0.134345,0.180647,0.475567,0.424477,0.166355,0.588706,0.0926192,0.319314,0.637075,0.469766,0.767091,0.11287,0.186161,0.432269,0.876945,0.623621,0.56051,0.340544,0.416421,0.93917,0.106171,0.492497,0.580248,0.297031,0.981403,0.0728536,0.220913,0.842183,0.93462,0.124838,0.632013,0.521326,0.0366332,0.393434,0.198135,0.638133,0.903452,0.101313,0.763852,0.157077,0.945422,0.712974,0.85028,0.130602,0.666146,0.57938,0.364832,0.207246,0.585298,0.497289,0.514407,0.620356,0.222102,0.219258,0.620174,0.0319546,0.0629805,0.817075,0.242491,0.462168,0.349594,0.683192,0.308623,0.927254,0.965533,0.0134708,0.574244,0.077261,0.0529681,0.651151,0.548924,0.0539333,0.519488,0.732786,0.952834,0.999965,0.488872,0.874083,0.150003,0.552194,0.0357133,0.549384,0.37485,0.751533,0.401697,0.24742,0.844984,0.349852,0.169679,0.916131,0.789058,0.514121,0.110832,0.0399081,0.290524,0.213468,0.691017,0.117698,0.578369,0.859993,0.676702,0.793781,0.60248,0.889657,0.203964,0.375874,0.927441,0.0553557,0.714033,0.751787,0.837675,0.158558,0.921777,0.496193,0.824949,0.189978,0.456987,0.557743,0.0355159,0.363632,0.0427529,0.619549,0.216134,0.660849,0.117913,0.564708,0.392083,0.812141,0.19402,0.748164,0.390216,0.654845,0.106041,0.97621,0.303311,0.348222,0.723641,0.878465,|0.144364,0.727834,0.391375,0.340464,0.461609,0.632532,0.026782,0.310259,0.296369,0.664155,0.822663,0.849014,0.542806,0.195065,0.228823,0.362992,0.305291,0.187083,0.154649,0.324844,0.834472,0.826564,0.712058,0.215703,0.209029,0.916161,0.712091,0.891704,0.582972,0.0791525,0.200401,0.681318,0.40923,0.473375,0.423931,0.847986,0.779852,0.0737417,0.388957,0.330647,0.899569,0.750196,0.918219,0.73587,0.70791,0.943706,0.611099,0.595472,0.802111,0.0935545,0.751646,0.024212,0.135893,0.426027,0.48028,0.159459,0.977156,0.233311,0.245439,0.812803,0.556145,0.734075,0.831485,0.502926,0.327333,0.632311,0.501576,0.834265,0.499206,0.385911,0.538413,0.694615,0.413963,0.336452,0.914214,0.970868,0.88346,0.943301,0.532689,0.774688,0.894161,0.0952929,0.0400903,0.00430381,0.753336,0.413625,0.0181724,0.296778,0.316024,0.149579,0.788033,0.484458,0.121884,0.46557,0.692517,0.632849,0.590532,0.765843,0.266779,0.911764,0.559311,0.84446,0.878176,0.395482,0.0798911,0.921891,0.350929,0.436588,0.884498,0.0966491,0.748712,0.489892,0.213677,0.182987,0.659672,0.335046,0.896702,0.428641,0.690402,0.745932,0.453856,0.887373,0.159333,0.0809742,0.831483,0.131102,0.431658,0.869973,0.59638,0.538293,0.720427,0.148052,0.526432,0.907269,0.402099,0.131394,0.795502,0.34377,0.192082,0.936418,0.645068,0.940735,0.565553,0.399255,0.514549,0.524757,0.62494,0.526815,0.0219929,0.227163,0.240241,0.271776,0.421995,0.542884,0.258478,0.123973,0.77048,0.220354,0.0733619,0.712254,0.574087,0.204432,0.0829988,0.257058,0.71926,0.607529,0.360369,0.478064,0.851145,0.866523,0.477189,0.301577,0.615232,0.289808,0.403245,0.906724,0.220521,0.277714,0.973916,0.30376,0.218159,0.874962,0.576718,0.196143,0.783296,0.104426,0.746977,0.950425,0.722486,0.639778,0.414424,0.601273,0.962887,0.699558,0.0573905,0.42271,0.964989,0.716251,0.211369,0.0586157,0.786297,0.642507,0.248745,0.0701022,0.85285,0.934017,0.707166,0.786002,0.673339,0.842875,0.488279,0.224383,0.657927,0.947926,0.52002,0.0329382,0.145539,0.530332,0.582043,0.23466,0.657186,0.981762,0.131861,0.293423,0.125062,0.966751,0.549659,0.0508821,0.000483155,0.202589,0.790833,0.244189,0.619615,0.687894,0.585746,0.998214,0.757345,0.291229,0.119845,0.972623,0.811494,0.0588015,0.552967,0.251583,0.708737,0.262624,0.308586,0.0935746,0.731473,0.582259,0.778483,0.668028,0.229803,0.647736,0.762602,0.599471,0.203771,0.0697376,0.804439,0.795196,0.984253,0.450248,0.0110381,0.422406,0.198531,0.583426,0.0248095,0.926483,0.0374845,0.196856,0.383667,0.458127,0.0740284,0.732037,0.436911,0.624441,0.644421,0.167166,0.197955,0.34451,0.146813,0.697398,0.99048,0.57336,0.520145,0.912811,0.0193325,0.439832,0.62784,0.189918,0.142199,0.304979,0.521679,0.457397,0.00826347,0.58899,0.536233,0.546789,0.900447,0.579404,0.586333,0.525901,0.923883,0.253229,0.474137,0.729926,0.163727,0.245562,0.642266,0.311591,0.516048,0.605632,0.964837,0.516529,0.553353,0.568017,0.618835,0.477953,0.192893,0.10304,0.9539,0.822964,0.491365,0.465881,0.932676,0.145886,0.244504,0.700341,0.657021,0.489147,0.0523943,0.985243,0.473582,0.858102,0.588226,0.471485,0.10683,0.37792,0.697728,0.761642,0.593413,0.699666,0.167435,0.249329,0.319553,0.640803,0.0208423,0.429812,0.659386,0.00138891,0.870774,0.769506,0.00414753,0.92141,0.20367,0.323165,0.313184,0.985666,0.993079,0.380564,0.0375584,0.998756,0.759828,0.256429,0.0634723,0.0607141,0.191095,0.0844942,0.530006,0.39427,0.842123,0.0842378,0.160712,0.607051,0.331074,0.606049,0.791633,0.326918,0.776045,0.769833,0.376352,0.785754,0.562596,0.0560759,0.452457,0.579373,0.445677,0.121168,0.825366,0.527719,0.231753,0.629692,0.341057,0.329268,0.51483,0.685056,0.905306,0.0819193,0.683268,0.510049,0.486444,0.882272,0.920057,0.563257,0.975755,0.0601303,0.986364,0.262617,0.853209,0.864398,0.360755,0.401731,0.24739,0.1631,0.376939,0.168781,0.799801,0.295498,0.705011,0.699154,0.428467,0.313136,0.277839,0.324394,0.212155,0.26357,0.805449,0.770825,0.582446,0.538855,0.321723,0.454069,0.835243,0.824051,0.174805,0.705811,0.899676,0.614236,0.888135,0.408445,0.186877,0.476151,0.441824,0.186491,0.532139,0.486593,0.14335,0.397782,0.43658,0.257479,0.622638,0.130606,0.81193,0.608789,0.808027,0.278678,0.340168,0.804814,0.0804878,0.482883,0.345845,0.201412,0.424768,0.238213,0.75986,0.372228,0.853847,0.517355,0.174557,0.302871,0.101666,0.398184,0.645172,0.426557,0.443368,0.140143,0.25702,0.590213,0.705797,0.364192,0.765614,0.516603,0.0551216,0.102221,0.294573,0.278639,0.657433,0.182223,0.924462,0.783414,0.407692,0.647795,0.604178,0.759341,0.641455,0.412555,0.170324,0.20787,0.59167,0.0278906,0.260556,0.959581,0.643877,0.0967028,0.730979,0.354237,0.98387,0.656475,0.477094,0.478932,0.32045,0.846759,0.979262,0.46459,0.852076,0.290327,0.742521,0.800457,0.219131,0.644293,0.71473,0.0598559,0.753059,0.633701,0.65683,0.659346,0.92291,0.0545118,0.0725217,0.189379,0.126235,0.186013,0.09444,0.971748,0.743935,0.055245,0.134296,0.862433,0.938114,0.80483,0.212897,0.158577,0.0337317,0.174226,0.0642807,0.0355844,0.75787,0.188334,0.0784169,0.230065,0.72018,0.121738,0.149035,0.309965,0.682821,0.469489,0.269979,0.818643,0.508697,0.39762,0.96215,0.395582,0.851737,0.89014,0.808272,0.780312,0.357656,0.51452,0.084736,0.731269,0.694804,0.79472,0.894522,0.739344,0.126685,0.896697,0.502281,0.511127,0.223878,0.0575221,0.456629,0.0506198,0.682356,0.271703,0.806683,0.0780334,0.245033,0.261282,0.184322,0.27643,0.412972,0.0507527,0.216709,0.0245021,0.196003,0.862243,0.0780258,0.585626,0.667597,0.287924,0.170481,0.686115,0.160637,0.227301,0.560888,0.0607342,0.519841,0.146125,0.202118,0.443221,0.148363,0.236099,0.841353,0.776773,0.646439,0.15127,0.677654,0.0545838,0.311517,0.556941,0.805171,0.989764,0.919229,0.990932,0.704769,0.535387,0.571804,0.750616,0.479632,0.661572,0.0575066,0.109904,0.216416,0.441002,0.414802,0.0596103,0.394799,0.556164,0.535925,0.0131848,0.703833,0.0297304,0.158475,0.633633,0.20331,0.723563,0.471645,0.734718,0.544882,0.696445,0.199869,0.648944,0.861003,0.00596607,0.96073,0.514773,0.873939,0.236508,0.833796,0.0406886,0.0554082,0.370582,0.34376,0.842204,0.0201502,0.402166,0.409973,0.946644,0.35844,0.510819,0.05455,0.606003,0.394995,0.888681,0.812776,0.794816,0.0709424,0.204411,0.963072,0.288419,0.230494,0.680556,0.0698025,0.204621,0.832745,0.0490199,0.37099,0.181817,0.738691,0.0172709,0.257674,0.727897,0.231696,0.759089,0.323695,0.844245,0.638863,0.54965,0.79237,0.84414,0.163423,0.520027,0.331574,0.291461,0.672135,0.157001,0.550154,0.781172,0.326107,0.0245594,0.880149,0.991318,0.790285,0.493085,0.732141,0.90319,0.747501,0.854957,0.448478,0.473089,0.862053,0.247956,0.913196,0.424473,0.932778,0.438187,0.410877,0.0111309,0.94144,0.446762,0.0734211,0.0570371,0.121443,0.142826,0.155496,0.52348,0.0976173,0.9107,0.752365,0.0893914,0.143458,0.708372,0.425727,0.0256081,0.752997,0.517032,0.325778,0.0332831,0.43351,0.397374,0.220671,0.118336,0.201897,0.216157,0.433058,0.0646545,0.303246,0.612984,0.356769,0.662624,0.767319,0.863606,0.0402745,0.85142,0.629076,0.0436107,0.660582,0.132421,0.263755,0.560306,0.603317,0.890284,0.128756,0.976295,0.232392,0.0397559,0.382947,0.804439,0.625115,0.633942,0.577137,0.398232,0.737169,0.292326,0.797751,0.616908,0.179699,0.734305,0.848582,0.341302,0.709582,0.700953,0.337289,0.194071,0.676648,0.179157,0.157775,0.609717,0.916468,0.306043,0.221277,0.956086,0.509025,0.65663,0.747221,0.426369,0.921292,0.444463,0.834638,0.238234,0.821672,0.0395486,0.0143607,0.419897,0.813312,0.433907,0.0306548,0.576121,0.932818,0.670386,0.627687,0.14558,0.547409,0.701553,0.639099,0.966786,0.357881,0.316436,0.815392,0.342166,0.651247,0.312021,0.0168241,0.203181,0.672927,0.57283,0.919867,0.121143,0.512679,0.521509,0.102236,0.35539,0.688328,0.412926,0.490418,0.406561,0.359629,0.789031,0.208345,0.376129,0.793866,0.606218,0.663233,0.869143,0.865917,0.387976,0.428104,0.115388,0.137898,0.164755,0.447099,0.551184,0.944992,0.0194852,0.212713,0.967089,0.916472,0.00396556,0.809333,0.0629171,0.631145,0.0105657,0.310119,0.576981,0.16454,0.0965275,0.921483,0.265826,0.179531,0.531412,0.374475,0.156557,0.0967719,0.79885,0.68119,0.826533,0.21348,0.0507941,0.553308,0.467727,0.553967,0.0988328,0.633209,0.993958,0.438111,0.773402,0.0660655,0.132634,0.861746,0.603433,0.793343,0.00495416,0.661062,0.613126,0.785929,0.869902,0.584849,0.644416,0.215269,0.834562,0.719329,0.935901,0.860764,0.52046,0.151479,0.999865,0.443328,0.393376,0.961844,0.622179,0.709897,0.822191,0.68916,0.105387,0.209921,0.854698,0.670898,0.850666,0.800296,0.461695,0.803885,0.6535,0.714266,0.960742,0.409855,0.0413583,0.0466135,0.500399,0.00764817,0.0132659,0.494763,0.849673,0.783175,0.453284,0.0975381,0.414733,0.458785,0.579382,0.962771,0.207127,0.373159,0.833621,0.928801,0.315411,0.791939,0.637164,0.855313,0.262576,0.527056,0.685048,0.744417,0.278396,0.747359,0.201396,0.46114,0.126924,0.398363,0.182662,0.0968912,0.617644,0.803831,0.405208,0.699099,0.616343,0.681028,0.873147,0.0998483,0.372588,0.452501,0.136434,0.403531,0.166229,0.0371583,0.0332436,0.661951,0.5994,0.194227,0.793642,0.583297,0.971321,0.460748,0.760892,0.423301,0.463682,0.235243,0.888509,0.973107,0.511294,0.803916,0.168038,|0.294252,0.54091,0.989061,0.845376,0.950924,0.811284,0.553153,0.60045,0.0463734,0.51889,0.79183,0.850594,0.132006,0.458781,0.756412,0.809372,0.383525,0.497023,0.0219074,0.42237,0.272824,0.310385,0.00272661,0.418118,0.312221,0.142867,0.510315,0.416749,0.623877,0.164303,0.459947,0.646548,0.220098,0.103837,0.871935,0.777967,0.251574,0.765953,0.184419,0.14462,0.31242,0.201193,0.849741,0.8676,0.140057,0.940903,0.209724,0.750166,0.277199,0.824977,0.941848,0.91541,0.785354,0.401022,0.247514,0.467183,0.592804,0.594532,0.580683,0.597076,0.100289,0.864525,0.728984,0.469352,0.729888,0.374054,0.748965,0.270996,0.510699,0.168833,0.883174,0.848215,0.718612,0.496322,0.0369582,0.348449,0.837535,0.14766,0.115841,0.178281,0.434616,0.748437,0.996455,0.585972,0.595927,0.580181,0.376934,0.127365,0.438847,0.0220461,0.494835,0.588924,0.593178,0.702455,0.829256,0.191031,0.885699,0.86068,0.787206,0.0418546,0.861915,0.249558,0.494141,0.225822,0.885451,0.216293,0.660396,0.696597,0.691119,0.644038,0.780849,0.490876,0.666569,0.505904,0.420104,0.457198,0.376728,0.846725,0.897337,0.100547,0.0265898,0.292415,0.707465,0.672513,0.787573,0.712376,0.437485,0.719427,0.368119,0.39065,0.762099,0.678505,0.0952138,0.081325,0.357409,0.675108,0.414759,0.899663,0.575438,0.27529,0.520973,0.147269,0.369607,0.173448,0.791825,0.988782,0.694957,0.425406,0.936706,0.848052,0.931816,0.747208,0.10274,0.422998,0.807327,0.10116,0.443032,0.465226,0.0828367,0.125562,0.863693,0.00395155,0.221974,0.0236251,0.331814,0.726179,0.560442,0.905009,0.0677985,0.893241,0.601419,0.385734,0.920294,0.630732,0.162757,0.7335,0.922523,0.624914,0.496086,0.55849,0.740733,0.393688,0.16876,0.35862,0.00831318,0.00756824,0.0800577,0.408911,0.73172,0.781416,0.970204,0.998411,0.4782,0.164885,0.276721,0.862621,0.778336,0.440633,0.867211,0.694117,0.942245,0.301455,0.865372,0.3788,0.113836,0.168165,0.542478,0.997068,0.737206,0.574069,0.317823,0.368767,0.62324,0.556941,0.98134,0.568662,0.860484,0.983737,0.20569,0.0504328,0.448976,0.191778,0.643903,0.241794,0.640734,0.267988,0.736769,0.425851,0.153175,0.611801,0.863713,0.0431261,0.680213,0.851611,0.941996,0.237961,0.388425,0.453151,0.536779,0.398113,0.431536,0.321274,0.490836,0.0872719,0.0894818,0.243437,0.65987,0.300178,0.892086,0.240549,0.780699,0.536853,0.287175,0.404338,0.680529,0.0544792,0.115069,0.07905,0.522073,0.568231,0.592293,0.282869,0.251086,0.209376,0.215546,0.424288,0.33077,0.805664,0.169217,0.515865,0.636765,0.249966,0.355019,0.897652,0.477387,0.414988,0.289119,0.808814,0.97091,0.0462485,0.511483,0.857757,0.187202,0.586239,0.77972,0.405449,0.504115,0.27466,0.838013,0.35146,0.527511,0.903705,0.696958,0.873512,0.948984,0.0796553,0.753884,0.843148,0.387379,0.893126,0.278373,0.286324,0.821997,0.986757,0.286022,0.989496,0.860099,0.212954,0.526076,0.0481811,0.830836,0.929986,0.17752,0.568283,0.236093,0.762175,0.917432,0.303693,0.16499,0.393455,0.999236,0.246791,0.0199863,0.173252,0.228017,0.217619,0.660016,0.533943,0.431495,0.762764,0.278654,0.431419,0.143251,0.0264992,0.00845742,0.939573,0.204872,0.824427,0.525495,0.192497,0.683576,0.787445,0.414004,0.40049,0.508886,0.713932,0.394632,0.100532,0.546363,0.345461,0.306724,0.180506,0.254647,0.515772,0.0584946,0.687098,0.673388,0.937587,0.591723,0.401895,0.0159343,0.382972,0.856951,0.477596,0.0986608,0.52536,0.268069,0.570735,0.650571,0.651069,0.313122,0.434477,0.756002,0.649885,0.367565,0.407128,0.358859,0.865075,0.705201,0.973382,0.342207,0.117851,0.280154,0.662829,0.736246,0.975206,0.596512,0.74277,0.66373,0.525276,0.926121,0.973787,0.207524,0.779835,0.679324,0.255243,0.811746,0.433113,0.893209,0.282987,0.138995,0.389811,0.388717,0.716204,0.296779,0.282179,0.504093,0.179184,0.242682,0.0136822,0.720752,0.514039,0.584078,0.247246,0.658629,0.139139,0.212003,0.0930539,0.836393,0.331612,0.487918,0.816932,0.151756,0.462572,0.128208,0.727966,0.751013,0.934082,0.0208005,0.581295,0.214858,0.224276,0.850274,0.867938,0.752973,0.771613,0.957459,0.142772,0.88423,0.154146,0.704477,0.207101,0.0390103,0.501399,0.709967,0.447561,0.461799,0.206933,0.366898,0.568813,0.857775,0.582373,0.301595,0.276974,0.440851,0.85908,0.259501,0.0610516,0.215747,0.678267,0.071763,0.143637,0.435112,0.93983,0.0530796,0.652563,0.532028,0.646445,0.856446,0.837724,0.121297,0.357856,0.0659102,0.261057,0.421589,0.398403,0.912942,0.503541,0.833728,0.25218,0.769498,0.961972,0.263079,0.954028,0.435155,0.0210604,0.0687569,0.698706,0.470999,0.305414,0.302159,0.352055,0.654847,0.713537,0.302184,0.10118,0.814056,0.384508,0.087278,0.793309,0.395936,0.83053,0.906482,0.644023,0.259875,0.130189,0.357248,0.567807,0.0922307,0.106624,0.0279472,0.438375,0.780409,0.448338,0.133278,0.98055,0.0047105,0.408015,0.0272821,0.511716,0.49596,0.781181,0.298087,0.389092,0.759539,0.624499,0.295192,0.732341,0.480436,0.995518,0.600177,0.385243,0.359862,0.879593,0.0272505,0.80098,0.328887,0.493952,0.120597,0.925253,0.168959,0.907784,0.538541,0.387739,0.938052,0.785964,0.819158,0.653807,0.0207406,0.363868,0.180695,0.283894,0.209802,0.383957,0.142732,0.431128,0.719664,0.654249,0.0168949,0.290032,0.0589254,0.29114,0.50361,0.506278,0.197791,0.694841,0.00981194,0.875342,0.414989,0.0743197,0.0503539,0.263642,0.300275,0.0654774,0.82927,0.0149937,0.437261,0.0768388,0.781401,0.825435,0.154249,0.705641,0.605888,0.268559,0.175726,0.728683,0.495427,0.308444,0.48398,0.664747,0.0377926,0.107199,0.802667,0.682311,0.818461,0.55108,0.128466,0.265507,0.656439,0.0831994,0.719459,0.983428,0.718879,0.214188,0.857249,0.828618,0.286005,0.411573,0.65699,0.103414,0.386184,0.717213,0.906127,0.252497,0.172202,0.142002,0.384529,0.585907,0.859018,0.266642,0.318323,0.71834,0.681235,0.0570351,0.578084,0.410454,0.31172,0.446759,0.34491,0.81861,0.807576,0.127967,0.952026,0.754658,0.720158,0.100261,0.701006,0.737399,0.951745,0.407677,0.483366,0.601201,0.344456,0.838676,0.0289521,0.690137,0.265005,0.936433,0.489442,0.921394,0.877728,0.419599,0.762264,0.219589,0.944777,0.752946,0.251004,0.880451,0.0782645,0.169238,0.838257,0.568421,0.2175,0.0197629,0.213172,0.240176,0.945433,0.866807,0.948013,0.332276,0.341792,0.405146,0.538432,0.976729,0.451582,0.569315,0.331379,0.380507,0.516022,0.0833055,0.397155,0.572761,0.584731,0.100018,0.212871,0.493334,0.0749178,0.0776183,0.172554,0.872244,0.089181,0.0567543,0.604105,0.839456,0.394518,0.12936,0.569188,0.854103,0.887957,0.42652,0.578573,0.705425,0.454631,0.138888,0.426875,0.937049,0.241556,0.516618,0.436937,0.37676,0.731436,0.128123,0.982364,0.890473,0.210515,0.232684,0.907344,0.214508,0.892209,0.795281,0.902604,0.24823,0.513514,0.0513046,0.611607,0.768133,0.581693,0.455833,0.576525,0.908412,0.0374472,0.441532,0.270377,0.111494,0.270872,0.06372,0.129485,0.0601849,0.113454,0.893792,0.0751687,0.247388,0.28833,0.740396,0.121468,0.591583,0.927771,0.960322,0.57732,0.75154,0.408143,0.141041,0.424705,0.8474,0.79215,0.575757,0.43031,0.859449,0.646728,0.120104,0.98041,0.759697,0.379959,0.661162,0.163771,0.310629,0.895066,0.174712,0.0087415,0.564726,0.351328,0.483557,0.930394,0.0606272,0.981335,0.247499,0.163084,0.648422,0.886222,0.235983,0.625352,0.0163777,0.525527,0.314862,0.751919,0.426005,0.278202,0.132392,0.305133,0.962632,0.206383,0.964274,0.350804,0.532516,0.374986,0.251964,0.261936,0.917278,0.410344,0.85087,0.312902,0.279402,0.660855,0.718852,0.405088,0.0504193,0.0319218,0.677698,0.156166,0.921082,0.873901,0.834851,0.0214762,0.535581,0.105485,0.422535,0.176077,0.885142,0.827843,0.707529,0.833836,0.268735,0.486317,0.0557772,0.784994,0.911828,0.243179,0.914192,0.849336,0.162678,0.387908,0.947339,0.84058,0.815287,0.721938,0.155622,0.970015,0.861175,0.389922,0.3465,0.595683,0.864273,0.697049,0.629415,0.866554,0.770292,0.341636,0.979902,0.806856,0.904302,0.829024,0.0131994,0.873197,0.204523,0.0713698,0.636156,0.649996,0.0516488,0.247828,0.106493,0.424541,0.955394,0.0799888,0.686352,0.0135649,0.470042,0.905023,0.893593,0.64431,0.169097,0.299965,0.758741,0.315422,0.878077,0.787,0.116814,0.982493,0.264845,0.261272,0.523283,0.781105,0.871675,0.389793,0.231936,0.65457,0.418076,0.0014509,0.185876,0.804517,0.0823158,0.0569547,0.231371,0.816884,0.449561,0.615038,0.340751,0.232316,0.92547,0.505263,0.100994,0.495681,0.750119,0.128208,0.576523,0.0563726,0.221321,0.995297,0.044867,0.987429,0.237624,0.28352,0.233788,0.407049,0.326545,0.792234,0.590233,0.694992,0.620205,0.735703,0.534474,0.413197,0.228903,0.068667,0.397418,0.383871,0.484163,0.270902,0.755001,0.963324,0.0621712,0.754694,0.770395,0.998969,0.525207,0.14475,0.0844555,0.369434,0.418027,0.0489795,0.524487,0.687829,0.255488,0.7904,0.105925,0.0335919,0.614342,0.635917,0.934344,0.0336038,0.183574,0.441524,0.188698,0.84715,0.5217,0.992876,0.350445,0.146954,0.566233,0.811388,0.272225,0.639196,0.650718,0.104653,0.738182,0.701035,0.717816,0.417141,0.478036,0.928579,0.538914,0.651316,0.137232,0.217904,0.841129,0.644964,0.341143,0.0982013,0.887983,0.2612,0.0663129,0.523686,0.704357,0.532987,0.652478,0.721543,0.900074,0.879625,0.209068,0.00355852,0.340749,0.594953,0.40697,0.742435,0.850098,0.104504,0.327161,0.968809,0.985654,0.147386,0.240947,|0.968986,0.779115,0.113194,0.46794,0.869819,0.878694,0.892137,0.407509,0.25399,0.707565,0.426498,0.0927629,0.218085,0.523765,0.628567,0.346431,0.519263,0.503114,0.609979,0.289224,0.174654,0.944847,0.0155935,0.197959,0.907229,0.322011,0.406336,0.512022,0.264378,0.835904,0.956561,0.205351,0.879774,0.728708,0.532715,0.649767,0.902103,0.501507,0.432138,0.207738,0.836756,0.906108,0.85794,0.71934,0.992148,0.0570425,0.23475,0.0876591,0.132031,0.797036,0.201995,0.412794,0.155724,0.780829,0.270117,0.43014,0.46529,0.596315,0.510705,0.542419,0.158092,0.252668,0.319072,0.0501249,0.0210784,0.116387,0.888821,0.679726,0.618358,0.382553,0.159858,0.432747,0.342885,0.337158,0.378181,0.975944,0.321487,0.626884,0.185734,0.0121253,0.0622307,0.221604,0.115195,0.969204,0.458291,0.376711,0.738654,0.77278,0.725096,0.099758,0.808302,0.0399607,0.269699,0.0607149,0.661802,0.733147,0.856847,0.0801595,0.825767,0.499717,0.00379431,0.140607,0.403415,0.413421,0.322734,0.596999,0.4568,0.597806,0.919256,0.991895,0.695572,0.532714,0.857645,0.37216,0.920304,0.83203,0.833096,0.366981,0.501044,0.398872,0.230614,0.679011,0.753742,0.359188,0.277187,0.784578,0.192941,0.982118,0.454022,0.0393663,0.914137,0.387963,0.0333361,0.0495199,0.543296,0.0841247,0.209353,0.625511,0.467312,0.890068,0.852251,0.0146158,0.312491,0.215487,0.657767,0.754347,0.790545,0.72948,0.62774,0.743423,0.85227,0.305084,0.62647,0.30505,0.867337,0.711323,0.234837,0.872226,0.339566,0.390634,0.00954217,0.311879,0.0975208,0.87575,0.880824,0.921487,0.554502,0.524461,0.986145,0.327302,0.293527,0.940639,0.454339,0.78173,0.913476,0.970623,0.963983,0.348129,0.342479,0.43732,0.363891,0.213791,0.606881,0.364764,0.380533,0.380226,0.486509,0.70516,0.475181,0.453465,0.359418,0.705028,0.909513,0.471305,0.124371,0.709717,0.393191,0.695949,0.172643,0.918697,0.569654,0.599817,0.308325,0.0729307,0.73403,0.569621,0.729113,0.0845684,0.276693,0.675375,0.220418,0.059003,0.0689617,0.11639,0.248737,0.592706,0.273714,0.447762,0.50153,0.235627,0.945802,0.830264,0.783215,0.242568,0.0440174,0.0376934,0.145048,0.0055427,0.624549,0.264852,0.464595,0.143967,0.707047,0.239123,0.817116,0.995298,0.567776,0.809806,0.268383,0.854912,0.232593,0.662595,0.456556,0.195309,0.409422,0.721137,0.244981,0.914679,0.892425,0.580514,0.134951,0.69145,0.166305,0.547251,0.243585,0.458986,0.254149,0.344249,0.114806,0.985035,0.787771,0.898355,0.327553,0.0275893,0.711221,0.0311371,0.13921,0.968147,0.364598,0.175903,0.813785,0.221384,0.627129,0.322289,0.828729,0.270338,0.217617,0.394109,0.738033,0.381245,0.291253,0.642207,0.188442,0.948141,0.83688,0.579026,0.0635029,0.690157,0.394143,0.145569,0.12111,0.863717,0.561721,0.983219,0.9411,0.514134,0.725077,0.844323,0.365505,0.99422,0.637287,0.995672,0.519855,0.403482,0.318285,0.186292,0.569687,0.296376,0.336194,0.471019,0.0950875,0.71924,0.59355,0.484996,0.0470909,0.781308,0.183523,0.262786,0.452571,0.344175,0.281897,0.761731,0.739399,0.974151,0.451239,0.809772,0.503617,0.906413,0.768373,0.225742,0.584327,0.529201,0.240774,0.853569,0.368399,0.250833,0.524729,0.377625,0.544111,0.72402,0.491083,0.445364,0.0143982,0.505771,0.241683,0.727122,0.830759,0.0196001,0.542792,0.228237,0.093664,0.264298,0.134707,0.715714,0.482653,0.660539,0.309186,0.739538,0.709949,0.176146,0.342919,0.206273,0.488497,0.926932,0.345738,0.179613,0.0965884,0.912956,0.813667,0.621891,0.540538,0.120361,0.0333269,0.888279,0.880293,0.533556,0.616066,0.426932,0.286576,0.186792,0.985967,0.197553,0.219105,0.806408,0.524537,0.178188,0.213931,0.495048,0.740501,0.214126,0.109585,0.862012,0.246069,0.740997,0.071122,0.0623409,0.972305,0.425677,0.463625,0.0457378,0.052955,0.69137,0.00157303,0.156229,0.976312,0.422803,0.361009,0.619909,0.684092,0.918144,0.19624,0.226027,0.12226,0.755575,0.747088,0.307955,0.164156,0.407104,0.0665511,0.754388,0.298952,0.314478,0.100388,0.772725,0.446423,0.995065,0.380299,0.0181992,0.738918,0.814504,0.796863,0.337595,0.117934,0.389125,0.214188,0.927724,0.876904,0.913736,0.662909,0.370684,0.223623,0.47194,0.238903,0.200224,0.365674,0.957964,0.736905,0.874462,0.210085,0.248584,0.714689,0.119436,0.24189,0.994602,0.658198,0.0829998,0.203953,0.777763,0.819937,0.877597,0.7251,0.85629,0.277088,0.416118,0.559156,0.858985,0.0421295,0.744886,0.996559,0.637968,0.885116,0.305186,0.439519,0.604475,0.635917,0.731927,0.719686,0.764565,0.733642,0.158974,0.915075,0.0305178,0.779447,0.743886,0.308403,0.539822,0.290486,0.314449,0.660689,0.588964,0.659032,0.695978,0.618962,0.342501,0.587638,0.28397,0.813292,0.233524,0.659383,0.0122264,0.00063467,0.0293119,0.0613812,0.023521,0.416739,0.387655,0.350864,0.526193,0.581566,0.024892,0.865018,0.0174443,0.0237483,0.989274,0.308353,0.718827,0.876348,0.0568134,0.412882,0.0729577,0.607665,0.199155,0.0777152,0.00867939,0.626829,0.884185,0.430658,0.245598,0.106937,0.598601,0.861148,0.574322,0.305855,0.584921,0.662459,0.926718,0.193621,0.121776,0.0981843,0.715525,0.668055,0.446476,0.319682,0.271538,0.268224,0.330053,0.196703,0.988756,0.272548,0.553234,0.747179,0.376875,0.203805,0.72995,0.963562,0.109773,0.823449,0.703093,0.165837,0.215534,0.640928,0.505618,0.822701,0.867393,0.943065,0.330787,0.209629,0.221982,0.41959,0.258219,0.795265,0.197786,0.54382,0.0201299,0.552904,0.812333,0.806528,0.737274,0.152929,0.716857,0.366921,0.666359,0.78906,0.638529,0.425655,0.475951,0.463561,0.248472,0.982935,0.901703,0.779718,0.901428,0.864538,0.219185,0.252646,0.0590507,0.619911,0.943637,0.366796,0.53536,0.30712,0.126173,0.382313,0.144683,0.314587,0.938598,0.682533,0.555892,0.314386,0.0851628,0.813067,0.890969,0.893156,0.536546,0.101343,0.279211,0.355087,0.789807,0.383995,0.581491,0.0957481,0.147264,0.947348,0.0803871,0.311805,0.846374,0.211749,0.819963,0.355668,0.10345,0.476888,0.588044,0.30793,0.912697,0.752653,0.0905926,0.134878,0.868848,0.586444,0.875003,0.821991,0.530156,0.346394,0.499266,0.0255148,0.454828,0.329986,0.180805,0.102557,0.214522,0.636524,0.35359,0.565201,0.972394,0.660538,0.209339,0.674162,0.456331,0.496071,0.831857,0.894022,0.931065,0.134399,0.403151,0.186092,0.92024,0.150239,0.253055,0.659424,0.389477,0.923663,0.0152107,0.424563,0.567606,0.40382,0.663057,0.546684,0.174586,0.500341,0.310279,0.839519,0.252536,0.16474,0.0758918,0.469903,0.584424,0.00299132,0.648673,0.396277,0.542217,0.600579,0.519903,0.0634193,0.830263,0.392484,0.603437,0.509927,0.339017,0.240384,0.0331827,0.0214739,0.367413,0.535871,0.120986,0.61051,0.0878205,0.941081,0.487085,0.213575,0.742096,0.351467,0.505272,0.0227493,0.45859,0.102324,0.618457,0.0548556,0.856261,0.908083,0.432475,0.334849,0.976046,0.252983,0.845551,0.905173,0.0726008,0.0161232,0.415578,0.8005,0.13466,0.609301,0.144998,0.91159,0.852825,0.0995774,0.41586,0.0202649,0.61558,0.0620315,0.323508,0.41389,0.60294,0.458832,0.101264,0.769011,0.0115675,0.550364,0.148924,0.129921,0.933064,0.784977,0.422733,0.0813887,0.875477,0.0916862,0.366317,0.528172,0.353237,0.978817,0.0188922,0.76666,0.867557,0.283254,0.566971,0.0724694,0.48948,0.0432998,0.444378,0.78401,0.193107,0.656393,0.338293,0.520142,0.427099,0.0699803,0.914505,0.65493,0.492881,0.581065,0.669494,0.670044,0.193195,0.332477,0.373506,0.874787,0.690985,0.0178366,0.850671,0.283324,0.797115,0.887265,0.0626301,0.786838,0.935476,0.180899,0.13048,0.103252,0.358307,0.872752,0.0596296,0.640696,0.149991,0.99136,0.681739,0.192049,0.238343,0.228774,0.546057,0.508499,0.381942,0.683968,0.47752,0.509186,0.993278,0.11906,0.330597,0.212423,0.593636,0.827736,0.761564,0.89322,0.964557,0.120018,0.579529,0.063226,0.382146,0.288902,0.234928,0.922095,0.577489,0.73552,0.0249152,0.500254,0.67336,0.302403,0.989747,0.401162,0.58048,0.967756,0.592139,0.56185,0.508661,0.294824,0.739072,0.927326,0.243097,0.189311,0.523458,0.411873,0.645382,0.931631,0.687269,0.986775,0.661369,0.298811,0.891687,0.787918,0.479901,0.0902761,0.980224,0.155817,0.0331522,0.385352,0.101158,0.0521179,0.185493,0.898355,0.202406,0.0126863,0.455165,0.939592,0.518928,0.66061,0.131585,0.489576,0.52793,0.0608469,0.383679,0.117646,0.993438,0.514198,0.574,0.457188,0.564153,0.154917,0.0753899,0.726697,0.310548,0.711427,0.748602,0.651918,0.783454,0.439354,0.926712,0.3522,0.609562,0.78532,0.156049,0.236146,0.582021,0.15422,0.301419,0.806545,0.207887,0.265039,0.304601,0.272905,0.252716,0.49401,0.878328,0.201777,0.980018,0.474691,0.881846,0.238724,0.543085,0.926148,0.388033,0.458367,0.129866,0.452237,0.57789,0.0755672,0.123444,0.461646,0.845869,0.39535,0.0287409,0.592801,0.304239,0.883289,0.789976,0.61549,0.127555,0.544096,0.19856,0.528033,0.351523,0.14007,0.113492,0.472034,0.433486,0.259453,0.676588,0.895333,0.196,0.258271,0.900503,0.753496,0.475945,0.50861,0.574205,0.497962,0.975318,0.191457,0.978156,0.898013,0.342217,0.518115,0.871037,0.615621,0.0200593,0.985908,0.650183,0.783476,0.360089,0.920103,0.151148,0.849368,0.0617154,0.334274,0.994141,0.325839,0.191027,0.844664,0.14259,0.0886418,0.956429,0.630922,0.709054,0.600911,0.526052,0.0885726,0.272067,0.743102,0.509349,0.472119,0.269741,0.281073,0.059635,0.650581,0.0868747,0.766769,0.050414,0.498807,0.157708,0.701278,0.125118,0.685984,0.275381,|0.0822513,0.978557,0.459614,0.552881,0.564567,0.687137,0.241197,0.591375,0.720447,0.0174847,0.549672,0.868769,0.66913,0.606798,0.871604,0.092725,0.557147,0.236112,0.0851923,0.154821,0.537645,0.822544,0.206116,0.501372,0.32786,0.894478,0.319908,0.809816,0.135214,0.094717,0.773813,0.78294,0.157136,0.90292,0.797431,0.310637,0.870217,0.524671,0.221476,0.705206,0.546797,0.308939,0.467724,0.0614517,0.409237,0.857151,0.119098,0.606292,0.2468,0.94386,0.738606,0.259822,0.211298,0.396165,0.127443,0.30644,0.205125,0.518656,0.836965,0.40288,0.745541,0.00752783,0.528317,0.051034,0.484223,0.0451108,0.696983,0.524859,0.478561,0.660905,0.462941,0.608895,0.64122,0.879294,0.802072,0.367369,0.454808,0.132076,0.526901,0.685141,0.429552,0.755092,0.374584,0.157015,0.0170665,0.675155,0.0603181,0.338946,0.637883,0.549325,0.334678,0.157248,0.213201,0.749213,0.405701,0.89622,0.588591,0.0658582,0.802246,0.312091,0.330738,0.26225,0.995705,0.727613,0.761481,0.872316,0.459951,0.293133,0.84537,0.7146,0.645719,0.95004,0.696262,0.0701261,0.778264,0.388981,0.502175,0.0206686,0.131043,0.268105,0.528155,0.672729,0.327158,0.488899,0.886347,0.730548,0.284171,0.401256,0.28567,0.154622,0.553959,0.323717,0.0612206,0.409697,0.905956,0.252156,0.094743,0.615031,0.679881,0.63777,0.785198,0.698694,0.70529,0.286225,0.217034,0.95493,0.122163,0.980208,0.216751,0.921062,0.329733,0.202895,0.86646,0.00500906,0.337751,0.327183,0.627978,0.915223,0.629101,0.763933,0.106117,0.85147,0.495809,0.173119,0.295428,0.776495,0.000648439,0.729215,0.497282,0.843345,0.942966,0.235974,0.123956,0.577557,0.401603,0.524628,0.80708,0.0833194,0.59227,0.678995,0.879953,0.968914,0.699884,0.709442,0.582697,0.237097,0.459175,0.574544,0.253823,0.871408,0.574394,0.861483,0.319044,0.524752,0.312484,0.389527,0.939443,0.13894,0.449516,0.147276,0.305416,0.235024,0.444948,0.391571,0.597918,0.229702,0.389434,0.909057,0.986352,0.582968,0.992119,0.837993,0.498643,0.637984,0.0135452,0.842715,0.459041,0.800322,0.732728,0.349597,0.588359,0.653042,0.33166,0.00659841,0.634095,0.0614682,0.880116,0.0372065,0.85873,0.247679,0.561675,0.942511,0.0695442,0.429552,0.338889,0.429229,0.59791,0.695243,0.398245,0.0276164,0.0504069,0.965108,0.708772,0.772969,0.114916,0.569736,0.0836033,0.97516,0.396761,0.705014,0.69267,0.442789,0.934202,0.634935,0.377743,0.272306,0.91581,0.74509,0.221177,0.979788,0.10891,0.620238,0.000797033,0.852077,0.767052,0.175517,0.497252,0.00849199,0.425215,0.656601,0.843869,0.204568,0.833419,0.553585,0.425126,0.795705,0.625716,0.626534,0.803427,0.529061,0.549589,0.78316,0.442936,0.460119,0.206222,0.899082,0.54472,0.414644,0.310366,0.26453,0.830156,0.816359,0.187092,0.724601,0.464493,0.689608,0.403526,0.252049,0.763942,0.805504,0.777449,0.00432342,0.617166,0.809025,0.511159,0.530174,0.843058,0.619668,0.0978055,0.679689,0.527346,0.84937,0.894148,0.741343,0.351995,0.676214,0.279093,0.946754,0.70928,0.278807,0.908086,0.44246,0.612622,0.970747,0.459192,0.723145,0.81301,0.64832,0.27941,0.674579,0.144,0.362112,0.609093,0.325587,0.187137,0.584665,0.240753,0.996813,0.926216,0.305494,0.0391926,0.0956604,0.466799,0.155358,0.629807,0.202397,0.983025,0.352412,0.749979,0.874099,0.30564,0.685279,0.175549,0.647678,0.229057,0.195067,0.0624648,0.335574,0.586293,0.568794,0.221049,0.601346,0.677992,0.126448,0.81069,0.189729,0.031587,0.274262,0.433205,0.765122,0.122546,0.246455,0.696095,0.489259,0.448491,0.0309305,0.679267,0.337245,0.822779,0.351536,0.136646,0.796525,0.0536948,0.927378,0.935174,0.109215,0.459644,0.191791,0.0550155,0.136149,0.0954358,0.460184,0.30757,0.16329,0.332837,0.670111,0.866615,0.829187,0.241547,0.0748098,0.0316395,0.640274,0.443043,0.0578984,0.958456,0.432134,0.33764,0.772008,0.956623,0.928584,0.159734,0.334656,0.990257,0.51188,0.891626,0.96058,0.553745,0.387544,0.104857,0.831557,0.376321,0.560574,0.926636,0.435979,0.460156,0.730928,0.893533,0.775573,0.621486,0.0427441,0.19322,0.0698007,0.195441,0.745667,0.920175,0.517909,0.912546,0.301305,0.141405,0.56302,0.614601,0.36486,0.719176,0.354301,0.521708,0.324646,0.361812,0.800283,0.156911,0.478216,0.16073,0.38036,0.983739,0.353231,0.00681937,0.00762141,0.921017,0.452208,0.404619,0.748369,0.150417,0.0415716,0.844087,0.884675,0.345915,0.774429,0.778457,0.804249,0.242377,0.717194,0.962351,0.0433532,0.959693,0.651339,0.808775,0.912689,0.78345,0.326989,0.925656,0.999312,0.801528,0.685286,0.000470698,0.463282,0.0966876,0.046766,0.880997,0.54953,0.512311,0.00225013,0.116619,0.650374,0.663471,0.705814,0.227999,0.466198,0.5196,0.990319,0.0394476,0.482113,0.164484,0.508896,0.49481,0.225039,0.800465,0.00205976,0.54425,0.0715648,0.311449,0.970133,0.257522,0.548673,0.452311,0.364893,0.0163986,0.646485,0.94986,0.208644,0.395281,0.875249,0.108687,0.0911573,0.511415,0.798454,0.175694,0.853313,0.0183374,0.980024,0.309283,0.719543,0.516308,0.600727,0.877908,0.488638,0.099983,0.711792,0.895674,0.683651,0.620955,0.398723,0.422757,0.0170736,0.685094,0.648068,0.0394361,0.401203,0.0863532,0.430628,0.624329,0.818446,0.719034,0.759359,0.649789,0.15947,0.686597,0.699351,0.638022,0.323102,0.370545,0.193307,0.866609,0.63056,0.462625,0.634573,0.20243,0.137473,0.209832,0.0835955,0.387192,0.449033,0.909245,0.946462,0.365837,0.364657,0.143197,0.474913,0.0363935,0.816694,0.793472,0.59483,0.978258,0.0181582,0.241877,0.721898,0.643809,0.172937,0.646015,0.746149,0.610812,0.714251,0.046076,0.86821,0.0094974,0.813586,0.781733,0.717729,0.687884,0.54497,0.887246,0.904807,0.12432,0.0714982,0.839901,0.481085,0.841609,0.561582,0.789348,0.422418,0.13136,0.269565,0.675202,0.307294,0.378076,0.936686,0.340307,0.422653,0.621798,0.277864,0.528177,0.26154,0.880213,0.397158,0.223479,0.321928,0.331925,0.896271,0.0937416,0.0710019,0.400184,0.666335,0.23826,0.479425,0.650632,0.00576705,0.123128,0.868066,0.156239,0.551115,0.564313,0.700362,0.0187806,0.828403,0.550888,0.0344126,0.0806926,0.0106322,0.609665,0.288131,0.187054,0.356933,0.504285,0.731652,0.883572,0.604234,0.770418,0.83183,0.153589,0.484171,0.231793,0.272271,0.644842,0.143001,0.464256,0.351781,0.0573434,0.401936,0.585029,0.668908,0.628655,0.402751,0.209991,0.446715,0.580436,0.389336,0.409034,0.6196,0.263028,0.598834,0.532844,0.865177,0.104355,0.6368,0.113229,0.886524,0.539344,0.307737,0.628153,0.961623,0.0903952,0.881973,0.813692,0.824782,0.414524,0.126399,0.376296,0.569574,0.178187,0.830339,0.49778,0.744447,0.716344,0.79699,0.150215,0.643217,0.169532,0.51936,0.784908,0.115063,0.583358,0.0402175,0.0147452,0.118432,0.56173,0.061688,0.588219,0.750029,0.179948,0.433957,0.262006,0.483873,0.650139,0.398037,0.0426553,0.642415,0.0605173,0.379844,0.253629,0.0331957,0.689384,0.445906,0.573435,0.389955,0.626218,0.447165,0.146257,0.841288,0.180201,0.0491704,0.290468,0.854588,0.433066,0.847039,0.148274,0.754143,0.749667,0.381782,0.274722,0.903244,0.0821247,0.85426,0.954994,0.225138,0.382714,0.619398,0.0725459,0.0267444,0.958674,0.445439,0.746907,0.039923,0.568151,0.993915,0.769566,0.379186,0.712323,0.965864,0.82542,0.170253,0.685331,0.202505,0.192618,0.777918,0.570753,0.319976,0.0876492,0.902388,0.369432,0.100108,0.509066,0.250339,0.655895,0.382389,0.9146,0.050469,0.771363,0.560745,0.536256,0.380204,0.598055,0.375544,0.853605,0.592454,0.302929,0.641355,0.723859,0.726434,0.150289,0.594029,0.668559,0.386077,0.778168,0.094276,0.526314,0.467792,0.0773416,0.124998,0.612745,0.257277,0.661136,0.936303,0.159668,0.383366,0.72407,0.0932057,0.582822,0.260399,0.249085,0.00806487,0.858176,0.361324,0.943062,0.617983,0.444072,0.775515,0.0374171,0.0190902,0.212614,0.305453,0.941399,0.470073,0.273779,0.508417,0.997151,0.830112,0.503945,0.856352,0.621029,0.139025,0.922507,0.740359,0.319715,0.14641,0.718085,0.353952,0.54573,0.0878835,0.818649,0.990683,0.736771,0.935322,0.762084,0.198763,0.793801,0.263495,0.784561,0.125931,0.23991,0.172652,0.61977,0.558048,0.00270009,0.877682,0.124944,0.419628,0.489972,0.740575,0.445091,0.871953,0.673105,0.0729747,0.170413,0.427002,0.288665,0.597442,0.223522,0.0110524,0.797946,0.374874,0.339836,0.262306,0.398524,0.952411,0.386336,0.0821784,0.924319,0.306054,0.347451,0.219203,0.649387,0.630178,0.406609,0.431222,0.481084,0.534039,0.737441,0.0809226,0.0200781,0.771868,0.888167,0.154344,0.803363,0.319051,0.205487,0.239699,0.349382,0.124447,0.898554,0.0386575,0.314027,0.181962,0.50982,0.914262,0.175789,0.378044,0.11323,0.124389,0.119193,0.756821,0.00742942,0.120049,0.672911,0.0823068,0.500143,0.928761,0.0360197,0.125023,0.0386403,0.604503,0.388831,0.0592802,0.272334,0.714775,0.312447,0.996574,0.850261,0.373998,0.831952,0.355511,0.735903,0.589362,0.500855,0.654342,0.0964525,0.569158,0.244295,0.308335,0.574512,0.78134,0.241563,0.667867,0.342776,0.741224,0.296738,0.629883,0.699343,0.851043,0.53944,0.305954,0.877813,0.0743676,0.169737,0.330081,0.334547,0.972889,0.420233,0.583866,0.696601,0.791459,0.152697,0.984743,0.331724,0.715146,0.799708,0.794112,0.0263157,0.964156,0.751587,0.175632,0.594707,0.570274,0.714971,0.0327078,0.394153,0.400741,0.752891,0.649433,0.686683,0.675824,0.769661,0.167539,0.245285,0.462026,0.906242,0.316315,0.818246,0.155924,0.701396,0.883724,0.0225683,0.515514,|0.0702879,0.40053,0.979826,0.193108,0.0809159,0.075097,0.569839,0.500798,0.806749,0.618433,0.261919,0.77449,0.815664,0.413933,0.490298,0.6277,0.328747,0.771408,0.114602,0.780993,0.567224,0.0918596,0.41167,0.40981,0.0957692,0.112079,0.170384,0.203947,0.748328,0.908902,0.138428,0.467757,0.902568,0.637636,0.507088,0.435607,0.824362,0.32409,0.761204,0.759406,0.708931,0.244748,0.0796609,0.7514,0.257701,0.0316526,0.95911,0.728032,0.300251,0.35128,0.44898,0.221462,0.194444,0.704105,0.503801,0.0609624,0.806871,0.688755,0.270665,0.617509,0.113681,0.144927,0.458377,0.977933,0.90115,0.433915,0.244606,0.69073,0.605791,0.22019,0.360305,0.278537,0.628551,0.548903,0.690244,0.684959,0.334096,0.873717,0.444107,0.713368,0.526475,0.558437,0.638838,0.398917,0.0925506,0.169201,0.199607,0.931057,0.934724,0.448676,0.257049,0.804273,0.514306,0.229536,0.662175,0.0900394,0.96123,0.901357,0.0951066,0.599341,0.826634,0.644631,0.907247,0.124232,0.17062,0.600705,0.809379,0.964001,0.715587,0.463329,0.04272,0.957638,0.676343,0.514831,0.225852,0.0580572,0.106297,0.500105,0.0104732,0.621731,0.329174,0.841098,0.299094,0.327984,0.759434,0.222697,0.770467,0.229501,0.292182,0.587933,0.0331215,0.867232,0.35917,0.62117,0.836998,0.921158,0.820515,0.562793,0.0209335,0.974839,0.970693,0.680058,0.313103,0.0500918,0.784009,0.905637,0.988411,0.649029,0.161195,0.302215,0.700485,0.230987,0.560763,0.255568,0.96703,0.472128,0.0345466,0.188779,0.525503,0.726406,0.859796,0.627685,0.569137,0.698586,0.640304,0.406324,0.876867,0.989665,0.755873,0.439891,0.340801,0.336267,0.102896,0.613375,0.22495,0.467989,0.70577,0.895651,0.986736,0.131979,0.0861362,0.904176,0.342473,0.998635,0.563903,0.92547,0.925699,0.186108,0.0812654,0.849549,0.407012,0.765314,0.467592,0.0524461,0.864098,0.138505,0.860731,0.0364318,0.26679,0.281503,0.080188,0.558694,0.89472,0.719634,0.761211,0.288377,0.107976,0.632884,0.634344,0.479226,0.33166,0.853207,0.579981,0.251724,0.326028,0.48425,0.915637,0.485052,0.0228738,0.556276,0.897132,0.000651181,0.0945334,0.387889,0.203652,0.639233,0.708582,0.901219,0.957288,0.49873,0.254895,0.738282,0.306767,0.913641,0.642723,0.446492,0.519398,0.510344,0.935863,0.768829,0.257113,0.326136,0.161826,0.600321,0.488185,0.707697,0.175388,0.69925,0.981609,0.648972,0.982383,0.674069,0.097037,0.684309,0.452222,0.22259,0.830367,0.837205,0.941946,0.0913282,0.206775,0.764074,0.232997,0.215318,0.297429,0.546719,0.860533,0.511062,0.211744,0.0475997,0.968259,0.989893,0.672443,0.413838,0.516631,0.745929,0.196436,0.829062,0.17154,0.653659,0.443565,0.0227587,0.0440114,0.666868,0.681465,0.387022,0.123618,0.398687,0.721867,0.759427,0.605981,0.14731,0.323846,0.343432,0.0107557,0.637193,0.0894757,0.497246,0.996225,0.159477,0.882418,0.343377,0.398707,0.36521,0.489508,0.814881,0.970112,0.0297832,0.645654,0.788992,0.0437555,0.619182,0.707161,0.273757,0.750008,0.779807,0.428238,0.908369,0.239844,0.455097,0.410183,0.991179,0.813742,0.256011,0.9505,0.449824,0.743452,0.0230868,0.976954,0.882767,0.962981,0.36125,0.263448,0.538986,0.107278,0.305897,0.738048,0.994617,0.145116,0.14773,0.288965,0.8938,0.359344,0.642768,0.579334,0.34608,0.479793,0.847536,0.491556,0.923923,0.904405,0.72175,0.474545,0.430212,0.819473,0.678128,0.211821,0.648167,0.828049,0.669629,0.239063,0.881925,0.833982,0.0258804,0.239197,0.496188,0.19152,0.788945,0.508581,0.0418758,0.472134,0.001041,0.498576,0.211066,0.714533,0.543864,0.311454,0.993278,0.978443,0.542317,0.064756,0.848619,0.694693,0.427323,0.670906,0.813813,0.731988,0.821792,0.437998,0.454815,0.311535,0.950658,0.38857,0.756521,0.06759,0.278242,0.482855,0.195307,0.0805088,0.83541,0.560034,0.169938,0.959459,0.144573,0.00147635,0.0150515,0.914057,0.669781,0.844912,0.115637,0.772417,0.94897,0.190004,0.364766,0.639233,0.221555,0.529257,0.789288,0.0165064,0.160728,0.806524,0.0871154,0.690787,0.919121,0.695599,0.0979721,0.271298,0.670933,0.0294979,0.693427,0.164469,0.272891,0.178983,0.98514,0.973626,0.594585,0.827172,0.793809,0.804962,0.284397,0.23305,0.10273,0.435248,0.977739,0.496223,0.460955,0.262242,0.173346,0.787965,0.700539,0.266804,0.0977351,0.0547817,0.895727,0.714331,0.589679,0.262516,0.406887,0.629991,0.258897,0.0130986,0.933155,0.117933,0.0969185,0.792804,0.490864,0.404432,0.70065,0.294282,0.721302,0.490687,0.867191,0.39277,0.76044,0.966053,0.135759,0.647242,0.424994,0.311753,0.590554,0.577951,0.114863,0.826136,0.612573,0.365152,0.179433,0.576121,0.853175,0.228982,0.664908,0.386369,0.00650185,0.402605,0.279149,0.552422,0.719222,0.494129,0.161692,0.266421,0.514937,0.548464,0.872755,0.53078,0.242853,0.355173,0.821462,0.453445,0.615617,0.900844,0.505975,0.271642,0.146991,0.45231,0.212282,0.588291,0.812497,0.928442,0.994314,0.647639,0.864724,0.964816,0.88625,0.365176,0.496896,0.0955149,0.957492,0.542683,0.314034,0.888828,0.463674,0.598908,0.948898,0.168977,0.439506,0.684127,0.978835,0.462343,0.038112,0.890739,0.718862,0.624176,0.362968,0.727228,0.503087,0.749219,0.634863,0.0224424,0.0869628,0.470663,0.246126,0.895927,0.404502,0.832863,0.429979,0.792753,0.00174761,0.239561,0.579418,0.251142,0.720591,0.669453,0.204032,0.970807,0.0720217,0.808291,0.556167,0.422325,0.436324,0.373574,0.832134,0.692502,0.114967,0.485771,0.57608,0.385878,0.326361,0.0637448,0.251241,0.702769,0.39437,0.792688,0.694643,0.857854,0.385953,0.387353,0.106268,0.860781,0.68226,0.0450566,0.40353,0.337798,0.894919,0.878552,0.378914,0.652209,0.638447,0.871154,0.954417,0.133035,0.345826,0.433004,0.184723,0.415077,0.641411,0.771887,0.352247,0.817912,0.885159,0.966211,0.331856,0.310068,0.559613,0.346929,0.873645,0.0747722,0.460669,0.333717,0.525083,0.807428,0.0544775,0.933797,0.826225,0.0766822,0.26174,0.655667,0.681422,0.933948,0.411369,0.378352,0.575777,0.710754,0.0173417,0.237652,0.904421,0.877631,0.793059,0.0482463,0.696624,0.676644,0.522822,0.846064,0.609467,0.74863,0.90111,0.491222,0.429523,0.0505497,0.672997,0.855725,0.319665,0.66472,0.633471,0.857654,0.712771,0.830203,0.510098,0.053192,0.270373,0.0218655,0.706981,0.681446,0.396541,0.920028,0.0293598,0.492822,0.0791243,0.37012,0.803329,0.970408,0.828397,0.900099,0.858972,0.00379527,0.585341,0.453268,0.328349,0.683003,0.468945,0.842759,0.726,0.0782951,0.949507,0.236057,0.59536,0.13445,0.716398,0.935776,0.183122,0.715664,0.589324,0.589719,0.113107,0.557212,0.403351,0.499039,0.394755,0.59289,0.27127,0.924978,0.700213,0.561387,0.196403,0.796718,0.364254,0.914308,0.196585,0.347683,0.462196,0.97386,0.149302,0.618538,0.763143,0.737185,0.885065,0.102731,0.757063,0.726866,0.621578,0.423669,0.995595,0.724496,0.705959,0.799929,0.0188015,0.797735,0.114449,0.763783,0.0520266,0.524024,0.290703,0.438414,0.192579,0.120154,0.532191,0.309674,0.0318928,0.214699,0.99444,0.494096,0.136263,0.88655,0.00471932,0.11102,0.258641,0.210718,0.247625,0.953439,0.505257,0.872433,0.237739,0.889305,0.41478,0.544419,0.945338,0.196794,0.140467,0.183109,0.684312,0.556621,0.0450026,0.312581,0.175335,0.375989,0.803107,0.80668,0.327034,0.0662485,0.657243,0.887941,0.454122,0.0229251,0.0646818,0.50881,0.00910801,0.0942242,0.0018701,0.0422857,0.366415,0.940897,0.205913,0.258779,0.0950568,0.700894,0.441892,0.506438,0.557212,0.211258,0.795084,0.117727,0.518843,0.736533,0.0245107,0.052334,0.644624,0.00582385,0.230173,0.35778,0.981428,0.266807,0.74565,0.196553,0.0909137,0.483342,0.520999,0.636517,0.524458,0.475424,0.656882,0.589952,0.377402,0.322512,0.283285,0.692104,0.797283,0.727982,0.903068,0.591219,0.242572,0.990238,0.880669,0.0396145,0.447146,0.953535,0.289898,0.428682,0.927797,0.0805641,0.234476,0.947625,0.0767474,0.91883,0.0788645,0.638403,0.636199,0.432359,0.869024,0.54255,0.470028,0.890266,0.172702,0.487403,0.420265,0.449041,0.0236681,0.0198004,0.293373,0.535657,0.928937,0.70606,0.643815,0.995177,0.264964,0.351616,0.28004,0.0791469,0.167481,0.468287,0.134139,0.109573,0.210117,0.833138,0.454244,0.659533,0.883896,0.964511,0.342099,0.906379,0.981998,0.609136,0.822553,0.267635,0.0654821,0.537436,0.549818,0.484574,0.524585,0.98606,0.64938,0.742203,0.36886,0.480426,0.724807,0.137274,0.887783,0.968071,0.606718,0.21383,0.444894,0.466546,0.645407,0.348161,0.111054,0.397477,0.110197,0.118075,0.0403288,0.428318,0.357397,0.92352,0.105595,0.0159276,0.428688,0.986021,0.876487,0.565668,0.125575,0.658412,0.0983374,0.0606854,0.601329,0.553798,0.890469,0.668016,0.390751,0.197293,0.463482,0.823745,0.519428,0.160251,0.617066,0.929781,0.97468,0.810544,0.238738,0.217752,0.791173,0.691204,0.623744,0.00628281,0.938249,0.987555,0.917388,0.536352,0.771536,0.478997,0.933138,0.891718,0.878914,0.704986,0.28877,0.0172151,0.377624,0.110441,0.556566,0.285122,0.513036,0.8268,0.238675,0.144971,0.806302,0.863161,0.758789,0.436184,0.750202,0.675991,0.242879,0.908798,0.820988,0.108246,0.636476,0.990386,0.612314,0.652035,0.184445,0.028739,0.431089,0.850491,0.0735441,0.850193,0.293902,0.0269849,0.179937,0.6359,0.99546,0.704063,0.936337,0.556225,0.336325,0.149768,0.297154,0.952354,0.0398573,0.900853,0.481979,0.638367,0.733589,0.537927,0.53219,0.70229,0.177419,0.044358,0.598657,0.694773,0.229698,0.123934,0.724805,0.471718,0.652981,0.238833,0.442309,|0.856923,0.433096,0.618578,0.289972,0.350859,0.928566,0.223017,0.0569974,0.00434363,0.94016,0.143277,0.474853,0.532941,0.0580468,0.0906438,0.687184,0.108753,0.170211,0.271502,0.740417,0.912867,0.738524,0.175223,0.548792,0.641364,0.842013,0.31522,0.739336,0.64615,0.0227004,0.177817,0.136638,0.409468,0.386569,0.786383,0.816915,0.674471,0.0147852,0.807664,0.434781,0.0569828,0.0806251,0.526828,0.771146,0.778463,0.197118,0.56782,0.0929646,0.528905,0.618154,0.3739,0.831378,0.169289,0.72755,0.139125,0.969641,0.895491,0.952367,0.340394,0.240734,0.493656,0.547242,0.867306,0.318235,0.870265,0.815022,0.975352,0.917433,0.384399,0.98835,0.0637043,0.338699,0.302871,0.310739,0.693964,0.710245,0.187012,0.176658,0.0155135,0.81341,0.693775,0.633888,0.0344335,0.981026,0.653601,0.433811,0.578249,0.996285,0.880065,0.712406,0.887185,0.322845,0.793803,0.112328,0.68582,0.173046,0.639745,0.756638,0.316567,0.0927714,0.196007,0.661821,0.552474,0.762163,0.785173,0.149313,0.489199,0.577262,0.117938,0.202827,0.453407,0.382772,0.361928,0.797253,0.64272,0.10568,0.156773,0.428645,0.204513,0.448781,0.569302,0.0321525,0.906941,0.324118,0.197384,0.335388,0.665909,0.342387,0.58566,0.104852,0.705222,0.757153,0.00396287,0.586047,0.908091,0.171207,0.831021,0.804065,0.737858,0.841031,0.277489,0.552877,0.755968,0.342475,0.789347,0.90007,0.515334,0.91078,0.201123,0.768681,0.421725,0.134538,0.612904,0.773311,0.999115,0.450103,0.794909,0.739655,0.913041,0.241496,0.936849,0.838217,0.602159,0.0599577,0.719474,0.685163,0.729105,0.568646,0.854015,0.253385,0.355501,0.0663661,0.513456,0.213491,0.582047,0.631079,0.652218,0.820103,0.60017,0.756938,0.446911,0.110677,0.895348,0.81312,0.30972,0.221327,0.978639,0.400178,0.612755,0.182015,0.836219,0.792102,0.654004,0.891434,0.529572,0.661612,0.384942,0.686793,0.241863,0.746036,0.712109,0.649966,0.616723,0.076021,0.859317,0.52145,0.969529,0.208736,0.79958,0.785522,0.469012,0.494615,0.00566906,0.344926,0.195783,0.0910462,0.256243,0.277962,0.95025,0.176656,0.224306,0.696761,0.421962,0.8299,0.0304402,0.292318,0.716265,0.505866,0.110925,0.797753,0.80009,0.731274,0.696418,0.876868,0.593957,0.92132,0.547931,0.347723,0.351354,0.71676,0.209545,0.0898759,0.817779,0.795145,0.847697,0.617693,0.775336,0.0825933,0.145092,0.606993,0.0112507,0.063693,0.530685,0.741474,0.895009,0.767955,0.506415,0.233241,0.876064,0.104902,0.0274934,0.646765,0.741938,0.0150696,0.598983,0.989871,0.802002,0.534811,0.134256,0.391127,0.0269102,0.979796,0.604524,0.737132,0.576894,0.542216,0.414059,0.188378,0.321041,0.698329,0.0288551,0.180067,0.946782,0.627071,0.294553,0.713343,0.18846,0.696563,0.172395,0.0365623,0.218201,0.647349,0.16381,0.502366,0.768324,0.594413,0.307382,0.132059,0.90759,0.234129,0.60598,0.00275779,0.131704,0.644429,0.874038,0.815293,0.261824,0.277848,0.167104,0.348152,0.42657,0.153152,0.96963,0.361027,0.640855,0.562469,0.435789,0.349597,0.196782,0.646606,0.508038,0.66684,0.244409,0.266504,0.115431,0.393194,0.461472,0.830413,0.205044,0.548264,0.825496,0.110477,0.442439,0.761054,0.662129,0.626483,0.381524,0.801298,0.692302,0.0958156,0.211741,0.531416,0.676255,0.0162321,0.656389,0.38921,0.19031,0.504809,0.0644342,0.557088,0.140804,0.538375,0.356308,0.500861,0.285623,0.0404473,0.413506,0.964302,0.258763,0.447657,0.00863963,0.784281,0.0294856,0.330423,0.224822,0.938316,0.246529,0.231787,0.17696,0.161182,0.0564901,0.0406987,0.373043,0.788233,0.289763,0.788902,0.626613,0.320848,0.0581336,0.26956,0.393607,0.316329,0.798071,0.00215852,0.191242,0.163219,0.774494,0.516327,0.192542,0.378503,0.0971373,0.125129,0.557405,0.617808,0.934326,0.645191,0.233229,0.300118,0.588279,0.157421,0.919976,0.710835,0.346679,0.634591,0.684485,0.0948437,0.600495,0.438173,0.0520811,0.306566,0.884872,0.266048,0.85296,0.730358,0.748629,0.305334,0.493354,0.873207,0.679517,0.425364,0.82189,0.966779,0.0972486,0.733526,0.232351,0.884925,0.027892,0.807244,0.870334,0.201466,0.522031,0.6424,0.122832,0.0869931,0.571083,0.153465,0.474167,0.621827,0.519333,0.4936,0.551474,0.495366,0.538786,0.416427,0.76145,0.965325,0.691719,0.505299,0.629935,0.874805,0.0475779,0.16155,0.150976,0.498862,0.269927,0.993625,0.970839,0.45908,0.468654,0.374277,0.900523,0.976598,0.00625175,0.107892,0.866478,0.417843,0.350847,0.0825647,0.893824,0.489097,0.874473,0.084504,0.0301685,0.110649,0.869329,0.670594,0.319956,0.338719,0.091276,0.501365,0.799472,0.718852,0.58329,0.614576,0.348848,0.524595,0.748788,0.816888,0.475821,0.349131,0.888542,0.686293,0.104828,0.972115,0.396217,0.91001,0.448516,0.700878,0.52185,0.259082,0.70271,0.847311,0.579642,0.860222,0.123986,0.782933,0.000482917,0.467012,0.903803,0.555314,0.54833,0.55896,0.555595,0.404956,0.197307,0.461573,0.124034,0.560139,0.174963,0.864656,0.511971,0.119465,0.771639,0.0219013,0.227897,0.151545,0.16702,0.231065,0.0488461,0.656466,0.288309,0.964296,0.271352,0.134123,0.145035,0.300744,0.678498,0.799622,0.216154,0.676834,0.0704235,0.292711,0.392026,0.00583768,0.31401,0.0957697,0.789501,0.352835,0.596783,0.764091,0.575561,0.476529,0.619989,0.566611,0.609944,0.416135,0.263862,0.953749,0.51908,0.956274,0.711091,0.501297,0.496337,0.0617977,0.754724,0.624618,0.187716,0.615887,0.91327,0.440221,0.203427,0.662351,0.33255,0.405144,0.493082,0.839352,0.470514,0.0698174,0.0661331,0.653031,0.333842,0.898924,0.167547,0.987582,0.668557,0.841266,0.375101,0.544886,0.476096,0.74706,0.516051,0.197949,0.839126,0.649994,0.105102,0.917245,0.619992,0.867861,0.13071,0.0513811,0.743947,0.586058,0.354905,0.534239,0.64381,0.470822,0.453487,0.714328,0.522655,0.509163,0.585194,0.19134,0.734944,0.553998,0.781444,0.186829,0.343988,0.802451,0.62226,0.334955,0.25361,0.682285,0.241867,0.446142,0.283388,0.888095,0.13358,0.952841,0.462186,0.156965,0.522525,0.844874,0.565564,0.995646,0.413322,0.846786,0.162768,0.842133,0.010754,0.430574,0.951639,0.354443,0.216111,0.266239,0.64688,0.877105,0.949356,0.511024,0.191121,0.0104154,0.927453,0.962465,0.0156115,0.652227,0.88218,0.699177,0.341663,0.556747,0.594193,0.382219,0.299877,0.0203251,0.713332,0.0463609,0.992718,0.624186,0.688362,0.470404,0.854721,0.46584,0.730313,0.791261,0.981338,0.135562,0.100922,0.769288,0.960572,0.758057,0.536822,0.303146,0.310097,0.568481,0.269352,0.637333,0.50304,0.151974,0.643646,0.77105,0.999995,0.327607,0.432468,0.395403,0.128352,0.733855,0.697916,0.21946,0.0793777,0.911262,0.251416,0.741115,0.675406,0.130666,0.95254,0.534301,0.0192012,0.677849,0.287041,0.585944,0.84724,0.754094,0.560488,0.222308,0.00173658,0.268728,0.195911,0.931602,0.5385,0.999043,0.772797,0.904042,0.606554,0.609415,0.290753,0.654338,0.658901,0.864001,0.583169,0.0824038,0.0146679,0.215025,0.255383,0.513179,0.140766,0.783861,0.662669,0.103877,0.627566,0.130903,0.118826,0.430819,0.647414,0.865688,0.981108,0.1908,0.87799,0.764526,0.649962,0.298537,0.408418,0.348958,0.65486,0.196465,0.844607,0.0546886,0.109281,0.786855,0.965182,0.854231,0.769534,0.472218,0.797192,0.780871,0.0252389,0.233818,0.375098,0.391191,0.801988,0.194079,0.129779,0.910154,0.0840987,0.477132,0.395165,0.28925,0.397608,0.794693,0.68729,0.506395,0.423304,0.0916414,0.578507,0.390176,0.793289,0.492948,0.801027,0.357035,0.129349,0.0274502,0.984958,0.476971,0.444535,0.653136,0.165592,0.868915,0.174653,0.299611,0.71748,0.441821,0.903041,0.396948,0.783012,0.656303,0.379199,0.0782406,0.949245,0.884871,0.235377,0.130498,0.327877,0.790593,0.993321,0.807775,0.622697,0.629059,0.619818,0.886082,0.816561,0.647959,0.396366,0.375877,0.808194,0.0823339,0.500851,0.914317,0.535116,0.885918,0.796719,0.392545,0.391515,0.841433,0.636669,0.247534,0.0405114,0.490828,0.837633,0.815985,0.0637281,0.714721,0.923522,0.571533,0.421067,0.484893,0.947879,0.474363,0.848649,0.156589,0.202097,0.140815,0.872611,0.24085,0.917364,0.117704,0.218963,0.720348,0.538766,0.645083,0.902361,0.237041,0.0248886,0.843482,0.679064,0.417756,0.293772,0.962411,0.755149,0.789584,0.27153,0.488375,0.199069,0.229074,0.227021,0.304693,0.547931,0.045262,0.658929,0.91406,0.490429,0.328894,0.833337,0.608118,0.320159,0.246106,0.668603,0.408513,0.209124,0.804004,0.542574,0.119403,0.221771,0.0327771,0.351785,0.273,0.238972,0.14088,0.522243,0.947416,0.213998,0.220488,0.863339,0.337949,0.834514,0.12034,0.290663,0.809961,0.784649,0.328563,0.216776,0.00538146,0.178344,0.93015,0.110247,0.076978,0.204907,0.673331,0.65933,0.665399,0.237168,0.593283,0.585269,0.495965,0.807645,0.803761,0.385214,0.322124,0.0587423,0.464147,0.741766,0.226961,0.403339,0.737423,0.0218545,0.757817,0.299114,0.939587,0.459077,0.664696,0.98561,0.906061,0.12542,0.632925,0.60816,0.416182,0.200881,0.857982,0.545781,0.754031,0.869817,0.732456,0.0348507,0.670394,0.539756,0.884275,0.0873381,0.535568,0.0855043,0.783061,0.164147,0.331687,0.971467,0.944355,0.428021,0.840446,0.889755,0.0708814,0.508571,0.0890062,0.31188,0.147061,0.184813,0.35553,0.0719743,0.27834,0.53518,0.244718,0.903348,0.813925,0.291187,0.481156,0.846508,0.882609,0.637013,0.978729,0.0175632,0.260144,0.0367855,0.559685,0.367368,0.421892,0.185092,0.304113,0.513768,0.293034,0.0718513,0.0723001,0.426519,0.616825,0.846112,0.325892,0.199567,0.641555,|0.562469,0.526361,0.275416,0.7156,0.888594,0.0749683,0.800725,0.915462,0.135152,0.502057,0.579595,0.668639,0.735808,0.336695,0.937469,0.602695,0.632687,0.707523,0.511456,0.224459,0.17854,0.123575,0.687508,0.114287,0.275085,0.718311,0.616471,0.979534,0.679692,0.0521194,0.774251,0.677361,0.520201,0.172406,0.982718,0.447427,0.488999,0.634174,0.0229131,0.248737,0.967958,0.955484,0.385734,0.435271,0.699749,0.475625,0.671807,0.497423,0.968257,0.652739,0.430689,0.3097,0.982609,0.740662,0.825001,0.910224,0.590292,0.77569,0.457354,0.866187,0.207907,0.840518,0.723408,0.462732,0.890121,0.6694,0.2151,0.409066,0.774649,0.946221,0.36354,0.215333,0.977162,0.521055,0.546328,0.755516,0.709959,0.0987924,0.127131,0.0791808,0.665791,0.305583,0.975223,0.764623,0.651853,0.411934,0.475434,0.504936,0.832426,0.443283,0.316354,0.0189636,0.464642,0.788774,0.874303,0.910079,0.573332,0.284173,0.289629,0.797081,0.17943,0.337782,0.777321,0.854689,0.605766,0.00405735,0.0218036,0.207418,0.434052,0.230371,0.690382,0.706662,0.306955,0.47364,0.126049,0.993309,0.0195298,0.815342,0.364013,0.908047,0.517926,0.0821511,0.448017,0.802679,0.831656,0.180736,0.158657,0.529253,0.0356015,0.573451,0.825996,0.455664,0.041107,0.414705,0.502828,0.24742,0.0681185,0.636169,0.157681,0.090898,0.138713,0.43465,0.924934,0.989201,0.600601,0.468199,0.470008,0.286998,0.166573,0.0401751,0.888599,0.440723,0.172984,0.368216,0.421301,0.427565,0.0759727,0.0916762,0.631177,0.339088,0.127549,0.109652,0.337856,0.94312,0.834512,0.862525,0.473981,0.846861,0.585025,0.253135,0.825252,0.986095,0.445562,0.957372,0.432858,0.861552,0.0887969,0.266659,0.0875337,0.386263,0.69142,0.372651,0.828529,0.277828,0.287031,0.557011,0.807428,0.077982,0.550645,0.489161,0.122876,0.425597,0.794303,0.137542,0.85082,0.450555,0.272225,0.262984,0.131402,0.539901,0.532709,0.618579,0.0208002,0.134908,0.631859,0.275356,0.751235,0.158258,0.21359,0.319044,0.796431,0.443711,0.192022,0.198626,0.417923,0.951641,0.139181,0.868984,0.946826,0.337138,0.202746,0.881946,0.107202,0.163433,0.724571,0.263617,0.0246096,0.259345,0.69689,0.678644,0.911931,0.0165592,0.424134,0.283887,0.75657,0.761683,0.949045,0.695194,0.594577,0.0950876,0.328193,0.187862,0.0312724,0.00703883,0.0697712,0.437394,0.944631,0.199278,0.962568,0.104537,0.175121,0.144652,0.292774,0.344264,0.620347,0.709099,0.605976,0.453546,0.479998,0.0693282,0.449314,0.357176,0.000228822,0.628154,0.34234,0.466313,0.302593,0.66347,0.602648,0.190237,0.619967,0.20385,0.0281433,0.754936,0.488287,0.946883,0.793824,0.492815,0.0057559,0.870031,0.0979086,0.701897,0.848074,0.284016,0.323446,0.283908,0.613866,0.983707,0.947125,0.343333,0.0719424,0.922998,0.98565,0.619261,0.671958,0.305898,0.963911,0.118859,0.340017,0.116959,0.839588,0.588915,0.482703,0.144095,0.457241,0.410378,0.766075,0.872218,0.61965,0.852739,0.561446,0.540174,0.692866,0.548454,0.183074,0.185834,0.731123,0.612774,0.0604771,0.905035,0.0351707,0.329132,0.303257,0.974359,0.360819,0.44897,0.89279,0.258727,0.600367,0.200816,0.775174,0.499651,0.736408,0.897422,0.197516,0.638234,0.015532,0.0502972,0.224348,0.68014,0.808609,0.962689,0.55978,0.160865,0.457398,0.412465,0.745497,0.187632,0.392011,0.267027,0.539704,0.773843,0.172233,0.99698,0.740718,0.776249,0.698789,0.649703,0.927311,0.109248,0.19679,0.5892,0.984022,0.5269,0.260496,0.340331,0.97349,0.607631,0.565907,0.296418,0.186743,0.40277,0.683014,0.0882,0.553206,0.641127,0.412073,0.511241,0.781214,0.462445,0.910801,0.298104,0.387864,0.184635,0.00196946,0.171695,0.353186,0.266701,0.99432,0.293795,0.228384,0.622739,0.0349383,0.991346,0.103189,0.968877,0.556511,0.664465,0.506394,0.971211,0.0125175,0.196898,0.634855,0.210995,0.0571945,0.682892,0.00960708,0.66171,0.249518,0.212861,0.16193,0.493663,0.465723,0.839153,0.515934,0.945111,0.686323,0.0954434,0.51285,0.916962,0.792709,0.725899,0.895048,0.36767,0.581447,0.300656,0.14412,0.800573,0.344032,0.100491,0.284793,0.985681,0.309488,0.345794,0.560708,0.921412,0.47088,0.990875,0.521483,0.821116,0.71033,0.810656,0.10266,0.534897,0.757099,0.755025,0.912484,0.98866,0.621208,0.752275,0.5313,0.318057,0.522098,0.629212,0.990804,0.767398,0.0291687,0.0198988,0.634646,0.746816,0.837033,0.909049,0.142769,0.154934,0.220629,0.821319,0.663438,0.443295,0.791552,0.611342,0.970716,0.349238,0.515409,0.583272,0.75723,0.222191,0.998644,0.372912,0.689824,0.540855,0.808257,0.88574,0.529048,0.735294,0.799984,0.286665,0.60741,0.605966,0.41467,0.842317,0.107614,0.841406,0.0643739,0.728005,0.555315,0.017221,0.449668,0.289268,0.8535,0.988192,0.681928,0.087198,0.698633,0.430982,0.0558512,0.740422,0.352439,0.232298,0.827951,0.506386,0.080376,0.350752,0.209495,0.513615,0.826241,0.745222,0.125855,0.86518,0.938264,0.458681,0.900634,0.731149,0.903554,0.399362,0.582298,0.785549,0.406299,0.829488,0.498655,0.05533,0.480907,0.0826608,0.262195,0.554056,0.66423,0.00512195,0.726899,0.176562,0.238358,0.959271,0.364809,0.907533,0.454146,0.736756,0.0659048,0.52904,0.0948544,0.00112075,0.574566,0.97717,0.572072,0.772077,0.409759,0.713112,0.52407,0.815184,0.336947,0.44319,0.131779,0.548899,0.896671,0.842867,0.635947,0.119964,0.446891,0.259824,0.927829,0.698052,0.0989504,0.185497,0.0797306,0.905242,0.668161,0.78804,0.847046,0.157412,0.0596206,0.761467,0.271637,0.401112,0.444739,0.349603,0.818804,0.213632,0.194708,0.323204,0.568967,0.00776231,0.41894,0.483167,0.648455,0.626699,0.0112799,0.39168,0.0561445,0.207522,0.0587569,0.0859472,0.702792,0.386954,0.794427,0.282535,0.807185,0.505344,0.592899,0.830537,0.572994,0.716804,0.451075,0.409184,0.750346,0.205727,0.276303,0.264884,0.157553,0.259971,0.311006,0.689331,0.97312,0.870204,0.163001,0.328624,0.604004,0.186826,0.640375,0.549421,0.104849,0.431253,0.117957,0.6957,0.732959,0.06709,0.286073,0.21342,0.576617,0.760861,0.293136,0.173702,0.546639,0.994304,0.924019,0.510189,0.960043,0.921662,0.43193,0.748102,0.729925,0.106079,0.654618,0.350145,0.813933,0.408248,0.0243792,0.760427,0.0123705,0.961541,0.674682,0.00230777,0.155373,0.952943,0.904625,0.243157,0.795791,0.887399,0.586829,0.433446,0.429163,0.277578,0.108716,0.837812,0.874569,0.545603,0.60007,0.10851,0.300709,0.753447,0.795588,0.899148,0.703784,0.0105702,0.479283,0.707658,0.339453,0.578277,0.507894,0.970046,0.636709,0.182202,0.437672,0.135293,0.363054,0.172849,0.817291,0.293592,0.443055,0.981731,0.207384,0.240434,0.690561,0.892382,0.524047,0.283338,0.329134,0.253233,0.291787,0.218601,0.703132,0.590132,0.000973225,0.19979,0.8556,0.0708154,0.716408,0.520344,0.666207,0.705728,0.699318,0.969048,0.597231,0.588856,0.618182,0.581402,0.4283,0.107,0.815143,0.33341,0.281449,0.721535,0.415954,0.122058,0.570186,0.683341,0.510184,0.761608,0.555414,0.965072,0.449578,0.847272,0.728093,0.811021,0.242306,0.86463,0.331463,0.867542,0.727201,0.255524,0.96739,0.353149,0.909774,0.195391,0.25388,0.892591,0.560429,0.686805,0.576108,0.8748,0.198944,0.977347,0.697248,0.834859,0.612375,0.340458,0.431122,0.748153,0.201061,0.497262,0.095144,0.969886,0.0917534,0.683728,0.786764,0.414653,0.184749,0.974315,0.941229,0.602297,0.873308,0.29842,0.532786,0.548629,0.133813,0.24681,0.242139,0.483375,0.159187,0.704789,0.985668,0.574163,0.410264,0.26274,0.527123,0.799014,0.259758,0.0444577,0.860879,0.0263677,0.803124,0.477914,0.76393,0.873741,0.971808,0.111957,0.976573,0.114503,0.0790406,0.562468,0.493802,0.791306,0.223235,0.824674,0.707631,0.922068,0.749872,0.305605,0.052612,0.203408,0.126544,0.576563,0.153088,0.188148,0.895732,0.647305,0.959297,0.200509,0.441281,0.188782,0.26229,0.0327265,0.627943,0.031344,0.303989,0.636431,0.863388,0.0353196,0.629813,0.128295,0.388561,0.247826,0.311362,0.760918,0.132977,0.436146,0.670467,0.851299,0.802383,0.00873739,0.814265,0.0222068,0.987452,0.507302,0.688299,0.887992,0.17977,0.925968,0.752374,0.416702,0.38568,0.681729,0.335156,0.231638,0.454443,0.878776,0.668532,0.21884,0.13276,0.825405,0.27358,0.865347,0.383133,0.427868,0.148233,0.340308,0.722366,0.148111,0.357492,0.222572,0.512009,0.42329,0.433344,0.60777,0.101785,0.155197,0.364364,0.624603,0.649492,0.34608,0.7734,0.551702,0.32361,0.121552,0.669839,0.868772,0.638991,0.777568,0.5148,0.0249358,0.653175,0.496284,0.916466,0.903806,0.546151,0.827273,0.242751,0.169283,0.89087,0.93693,0.968402,0.0164089,0.17527,0.649614,0.612402,0.839181,0.0922108,0.243307,0.780071,0.124429,0.512667,0.714821,0.778321,0.0102989,0.793111,0.75846,0.383548,0.91925,0.25457,0.529162,0.819219,0.0303874,0.886699,0.286239,0.910508,0.866151,0.670151,0.301296,0.187221,0.276734,0.329091,0.803493,0.673747,0.21808,0.761444,0.816265,0.307851,0.985887,0.869276,0.563517,0.189739,0.205677,0.601119,0.576643,0.152985,0.156065,0.312884,0.666042,0.0139391,0.545252,0.656525,0.081663,0.330495,0.802498,0.32984,0.969061,0.445633,0.407493,0.0749589,0.507716,0.0397758,0.926351,0.697209,0.869596,0.827617,0.0471522,0.233244,0.998996,0.970601,0.961411,0.978866,0.848347,0.910118,0.620264,0.618569,0.235159,0.584001,0.130617,0.658694,0.93033,0.765343,0.152378,0.887464,0.961721,0.3089,0.487145,0.808204,0.826608,0.843526,0.744537,0.854998,0.810076,0.35589,0.834859,|0.396889,0.031388,0.571845,0.392082,0.819636,0.0374915,0.104732,0.83949,0.659273,0.89854,0.756525,0.048761,0.766792,0.764394,0.0759878,0.238155,0.480096,0.607407,0.591367,0.608104,0.220159,0.930994,0.071779,0.726688,0.380001,0.891068,0.627118,0.969683,0.929576,0.896751,0.303827,0.0247378,0.71517,0.583459,0.00343484,0.406008,0.0167419,0.327557,0.993129,0.05115,0.160008,0.490471,0.935559,0.227767,0.194498,0.15988,0.292161,0.59547,0.647416,0.922755,0.686379,0.641583,0.138938,0.93732,0.503015,0.291956,0.275345,0.159094,0.961468,0.563108,0.172855,0.996664,0.420077,0.803741,0.261434,0.720792,0.0744739,0.208534,0.951578,0.764737,0.00937968,0.184676,0.480001,0.292294,0.0645598,0.220739,0.768075,0.278696,0.581306,0.607719,0.350535,0.346514,0.546059,0.197947,0.737235,0.62362,0.323096,0.571654,0.0774144,0.622947,0.485632,0.54424,0.799282,0.462092,0.358451,0.474019,0.188191,0.658109,0.789987,0.541237,0.879995,0.668641,0.238095,0.886237,0.690969,0.364154,0.853478,0.558016,0.427599,0.816365,0.33003,0.431933,0.0332868,0.508536,0.398868,0.527081,0.290541,0.280004,0.233615,0.261103,0.134284,0.191032,0.586455,0.244697,0.624265,0.358082,0.626422,0.288406,0.702739,0.245384,0.677105,0.882422,0.57883,0.776533,0.864068,0.978071,0.823572,0.921136,0.508686,0.785455,0.803152,0.184421,0.33745,0.181715,0.637995,0.128837,0.073948,0.605729,0.572773,0.508136,0.673549,0.92439,0.174192,0.108187,0.62233,0.861509,0.517913,0.363269,0.483851,0.210595,0.808098,0.440132,0.97293,0.369084,0.194301,0.699053,0.0313435,0.862118,0.385116,0.950198,0.77173,0.630697,0.0923516,0.530565,0.241324,0.698157,0.509167,0.446839,0.755728,0.859566,0.134066,0.910873,0.0411027,0.598804,0.413684,0.0170298,0.0277861,0.507825,0.0878816,0.890876,0.187907,0.232179,0.310234,0.477425,0.982408,0.271921,0.877418,0.693187,0.999155,0.744125,0.287219,0.115297,0.828852,0.997506,0.0691443,0.0459871,0.312497,0.709918,0.523188,0.6145,0.14173,0.957466,0.55253,0.47028,0.361889,0.198087,0.904403,0.295817,0.493473,0.272389,0.876524,0.771616,0.569252,0.82113,0.776482,0.374649,0.431528,0.0364695,0.744246,0.331391,0.822012,0.801342,0.884582,0.875486,0.923304,0.95163,0.57659,0.747697,0.594076,0.838691,0.921382,0.742633,0.680255,0.363609,0.445665,0.685434,0.856231,0.126274,0.0794246,0.304233,0.698798,0.568572,0.025034,0.482746,0.33083,0.326574,0.63489,0.229467,0.261945,0.375992,0.160573,0.294989,0.288311,0.847929,0.386251,0.72263,0.667083,0.700856,0.844844,0.418696,0.49355,0.375353,0.885271,0.137905,0.270281,0.156839,0.859754,0.268979,0.403046,0.228129,0.257379,0.626274,0.606534,0.679842,0.274652,0.248174,0.159808,0.848885,0.455107,0.285547,0.999765,0.774146,0.117623,0.784208,0.0618765,0.778517,0.593664,0.27881,0.476876,0.56407,0.972966,0.740772,0.666035,0.166665,0.0128657,0.170499,0.706898,0.7682,0.817117,0.420684,0.964803,0.988333,0.743349,0.192708,0.571294,0.460424,0.936916,0.894858,0.923571,0.181264,0.629242,0.0250151,0.394898,0.874791,0.550791,0.828662,0.776761,0.305781,0.0051927,0.150525,0.793373,0.809144,0.755977,0.644265,0.696685,0.38466,0.317321,0.189527,0.458512,0.912238,0.319099,0.61635,0.575717,0.996303,0.233001,0.0501778,0.554358,0.166839,0.427551,0.816534,0.912194,0.024415,0.0651907,0.706245,0.717418,0.265352,0.374854,0.782856,0.282813,0.513402,0.190933,0.126445,0.944362,0.768973,0.754346,0.120212,0.471852,0.109328,0.0118443,0.76548,0.0716454,0.0446774,0.73973,0.714956,0.274806,0.551895,0.779139,0.623074,0.377262,0.126699,0.36675,0.0794016,0.0239205,0.53322,0.614803,0.447725,0.979642,0.0662014,0.190991,0.827647,0.533989,0.543456,0.0901996,0.453067,0.285961,0.974518,0.184378,0.99622,0.146452,0.919797,0.93934,0.919647,0.05998,0.764611,0.572588,0.188927,0.354587,0.313821,0.631622,0.908231,0.877445,0.586004,0.207615,0.741277,0.410303,0.329027,0.359238,0.375377,0.835117,0.644497,0.896181,0.400857,0.273313,0.286161,0.902341,0.583618,0.699153,0.859404,0.740129,0.207403,0.928392,0.575489,0.483491,0.431697,0.934744,0.34846,0.942801,0.158221,0.6911,0.784108,0.257771,0.101558,0.0189567,0.992806,0.862006,0.86893,0.527962,0.668904,0.375256,0.253132,0.844517,0.710451,0.484075,0.800949,0.383635,0.490324,0.378132,0.228136,0.432517,0.256271,0.0354041,0.898598,0.674033,0.643371,0.689889,0.381682,0.83284,0.729359,0.739447,0.920834,0.579917,0.121553,0.412124,0.846935,0.38878,0.703284,0.29492,0.400735,0.544785,0.831794,0.980299,0.547637,0.289549,0.986494,0.529378,0.97603,0.968901,0.444328,0.985003,0.110812,0.213573,0.412899,0.715376,0.804273,0.681068,0.90007,0.323462,0.837737,0.738429,0.643862,0.48501,0.676026,0.0121704,0.208436,0.0325297,0.613584,0.361688,0.784945,0.0964977,0.867993,0.748163,0.87747,0.683548,0.4088,0.0240303,0.00488883,0.173739,0.631412,0.129894,0.00920051,0.443701,0.160835,0.937954,0.354452,0.508587,0.66704,0.715185,0.550112,0.784931,0.328364,0.826545,0.593325,0.394141,0.315039,0.618281,0.842944,0.447168,0.0338039,0.569681,0.496927,0.556823,0.20386,0.679818,0.472836,0.340014,0.945627,0.490018,0.625828,0.30956,0.504156,0.244787,0.136248,0.537662,0.537355,0.505238,0.458319,0.63131,0.895136,0.607066,0.380283,0.32742,0.86691,0.454979,0.948251,0.765701,0.862645,0.497805,0.149591,0.124508,0.767228,0.0347362,0.131855,0.468215,0.0805882,0.536936,0.0293564,0.622174,0.68699,0.66824,0.625328,0.737234,0.3729,0.562952,0.814008,0.414082,0.992182,0.988216,0.0205548,0.650817,0.207487,0.227384,0.976113,0.674761,0.207373,0.579979,0.415801,0.505605,0.236678,0.862754,0.00403208,0.0147046,0.828815,0.258644,0.358132,0.48575,0.259203,0.238166,0.768566,0.653095,0.904457,0.894677,0.209432,0.469077,0.787625,0.749945,0.0705116,0.523394,0.205671,0.954488,0.935847,0.191381,0.770217,0.217147,0.898003,0.772646,0.593756,0.723362,0.368907,0.0506027,0.558467,0.601444,0.210036,0.0711604,0.153063,0.655935,0.0619016,0.486542,0.475251,0.837266,0.106844,0.00368446,0.938432,0.874874,0.0656177,0.707192,0.903746,0.280945,0.462175,0.151883,0.578917,0.375982,0.498464,0.258858,0.683856,0.371903,0.951277,0.475544,0.557325,0.493238,0.0453242,0.311534,0.0942707,0.930474,0.879149,0.36682,0.763817,0.991069,0.751465,0.0125998,0.358311,0.00680059,0.390079,0.996988,0.49765,0.511019,0.974723,0.07137,0.567437,0.288157,0.947261,0.466379,0.699939,0.437817,0.162705,0.56529,0.070399,0.897111,0.283601,0.196094,0.212343,0.872653,0.310274,0.709901,0.388776,0.502324,0.548165,0.790828,0.365987,0.905951,0.125336,0.035632,0.844338,0.401065,0.455445,0.351675,0.291692,0.469423,0.0362844,0.720597,0.534699,0.649649,0.56651,0.608585,0.805367,0.682427,0.729831,0.050671,0.420592,0.444367,0.940189,0.768608,0.418241,0.151251,0.473213,0.233412,0.64255,0.535356,0.599572,0.315593,0.828321,0.717874,0.815357,0.433469,0.50747,0.475933,0.618435,0.160711,0.0665318,0.534938,0.443873,0.347811,0.867961,0.744811,0.601219,0.742288,0.0836138,0.993215,0.0240929,0.446044,0.594905,0.467799,0.711376,0.362771,0.0431688,0.153104,0.802936,0.703409,0.0746258,0.943286,0.00244814,0.111688,0.120858,0.542622,0.975711,0.689997,0.460713,0.27336,0.726809,0.553635,0.472279,0.039916,0.217383,0.847393,0.176397,0.561568,0.422402,0.0107881,0.519746,0.817929,0.244935,0.0296121,0.894318,0.313203,0.728026,0.433437,0.80798,0.560148,0.699519,0.730459,0.469469,0.922259,0.782926,0.329467,0.480913,0.0402665,0.0513999,0.113028,0.539783,0.180901,0.652703,0.218856,0.320234,0.184985,0.622575,0.569206,0.979662,0.93497,0.581244,0.805937,0.671107,0.408414,0.13622,0.326506,0.768554,0.115942,0.983078,0.510847,0.840496,0.598844,0.61524,0.954485,0.260772,0.984718,0.698816,0.977907,0.105859,0.670768,0.868953,0.491416,0.78368,0.955966,0.376085,0.313663,0.677157,0.0747139,0.645455,0.487308,0.176071,0.113064,0.414268,0.430426,0.407291,0.0343145,0.466764,0.545771,0.807023,0.839505,0.779712,0.989911,0.0342649,0.342864,0.144023,0.11944,0.75798,0.549661,0.595208,0.895138,0.904288,0.173034,0.884208,0.325528,0.438964,0.12394,0.976983,0.80557,0.912728,0.141812,0.71865,0.328848,0.70407,0.769585,0.68312,0.35399,0.733769,0.971976,0.2903,0.155514,0.850457,0.90271,0.887258,0.958099,0.0301898,0.201818,0.444896,0.755441,0.0199866,0.831186,0.372101,0.727008,0.627138,0.369079,0.852452,0.87876,0.127892,0.0575578,0.125469,0.0220526,0.977028,0.764229,0.0702437,0.00851536,0.540153,0.41588,0.0508446,0.574489,0.647257,0.788441,0.331482,0.413446,0.319393,0.819831,0.0850379,0.268845,0.958797,0.831716,0.757616,0.565295,0.052448,0.891067,0.0134585,0.223522,0.296599,0.599037,0.688532,0.963454,0.391169,0.326583,0.635328,0.102392,0.577557,0.846406,0.625247,0.899919,0.541753,0.647802,0.800765,0.271326,0.376415,0.566514,0.453357,0.659358,0.0957763,0.440376,0.29108,0.578269,0.7005,0.00224394,0.481438,0.654649,0.284173,0.872127,0.666547,0.346071,0.0388125,0.974143,0.821463,0.611318,0.971154,0.142117,0.515662,0.564111,0.338756,0.019465,0.860252,0.145266,0.611454,0.0485552,0.613242,0.838278,0.684257,0.549307,0.0970761,0.596191,0.109907,0.765153,0.876921,0.764967,0.29673,0.21945,0.816662,0.159089,0.907975,0.557446,0.986157,0.35582,0.050193,0.301109,0.0798036,0.360964,0.839722,0.772048,0.867465,0.73252,0.417057,0.681685,0.843631,0.285304,0.194535,0.365641,0.216658,|0.770092,0.580769,0.0684801,0.463144,0.332799,0.656005,0.351918,0.555999,0.798636,0.456227,0.963964,0.557443,0.12812,0.507019,0.274777,0.113633,0.094536,0.0113727,0.999304,0.0928991,0.686255,0.758366,0.511405,0.765263,0.0619348,0.00414324,0.65919,0.417708,0.572396,0.632556,0.615764,0.733844,0.759164,0.271381,0.286945,0.536322,0.118065,0.846517,0.359608,0.0188299,0.749725,0.959341,0.522619,0.915363,0.0660244,0.404677,0.0193529,0.882004,0.398332,0.889958,0.508375,0.813665,0.672838,0.295785,0.13671,0.93555,0.910873,0.781551,0.847674,0.247108,0.658132,0.458951,0.419838,0.0270568,0.232531,0.434998,0.485478,0.99917,0.634871,0.0134547,0.953267,0.449036,0.102882,0.90256,0.0400974,0.69856,0.363594,0.934374,0.567043,0.34159,0.235175,0.141782,0.054336,0.914018,0.684475,0.160044,0.702582,0.188591,0.658946,0.088374,0.474415,0.518633,0.233519,0.671807,0.554325,0.842555,0.0812959,0.0830166,0.259952,0.985776,0.257912,0.739076,0.447735,0.463557,0.710441,0.287127,0.592288,0.307457,0.136784,0.972497,0.28058,0.881449,0.889215,0.34477,0.916114,0.239732,0.939568,0.067392,0.739225,0.917165,0.393753,0.360978,0.41255,0.958401,0.0493518,0.830968,0.0480459,0.0775782,0.0862336,0.82164,0.322397,0.652075,0.197855,0.163417,0.880493,0.975385,0.76836,0.979939,0.200111,0.342668,0.504349,0.911576,0.431239,0.547723,0.229207,0.843205,0.302878,0.442783,0.752409,0.405241,0.179589,0.674828,0.578166,0.854399,0.560765,0.700839,0.679124,0.674733,0.439462,0.75372,0.122218,0.0484855,0.0323474,0.415,0.863263,0.289642,0.0498584,0.670173,0.908494,0.425715,0.75092,0.616086,0.813007,0.485508,0.835734,0.448623,0.000482261,0.166211,0.644979,0.484868,0.777668,0.706136,0.860727,0.881186,0.378768,0.901339,0.961444,0.963133,0.601499,0.891157,0.7006,0.0962915,0.490508,0.989787,0.97037,0.460604,0.0813516,0.0982472,0.305239,0.743141,0.820069,0.547213,0.414705,0.261508,0.759033,0.980939,0.639444,0.925073,0.662894,0.0119417,0.112745,0.168449,0.381829,0.94702,0.255897,0.848724,0.808,0.656676,0.442045,0.450589,0.151607,0.176488,0.223347,0.570617,0.78804,0.428699,0.113432,0.192646,0.296003,0.0894891,0.939565,0.0142013,0.175914,0.989645,0.406106,0.777204,0.436188,0.842551,0.0522681,0.479448,0.302766,0.215866,0.0178168,0.0267876,0.749858,0.16567,0.49832,0.144298,0.292386,0.828746,0.246993,0.0323251,0.713821,0.505168,0.877895,0.212266,0.523169,0.178414,0.800084,0.0127767,0.653329,0.12532,0.124787,0.459773,0.0197796,0.570993,0.499126,0.516497,0.49499,0.400492,0.933839,0.77484,0.487233,0.827243,0.868071,0.276975,0.800651,0.0587165,0.634994,0.341105,0.229969,0.161584,0.0829241,0.431493,0.508834,0.344397,0.37148,0.286738,0.546461,0.348159,0.473053,0.295585,0.0946193,0.612663,0.825171,0.408221,0.257406,0.591601,0.719971,0.808741,0.712197,0.945557,0.480265,0.436149,0.02942,0.436287,0.401472,0.0977709,0.323039,0.652239,0.037039,0.440247,0.694667,0.237487,0.112199,0.579384,0.774419,0.00908893,0.812587,0.0499309,0.251413,0.863822,0.534014,0.185654,0.867573,0.518297,0.344171,0.0895476,0.716752,0.127582,0.575779,0.832092,0.0686343,0.452132,0.0400239,0.169141,0.774423,0.377076,0.919382,0.746318,0.525682,0.572237,0.0566177,0.214858,0.689998,0.466212,0.521141,0.31758,0.463085,0.23294,0.917196,0.169298,0.367727,0.926204,0.174879,0.908383,0.8566,0.238874,0.788406,0.431679,0.29257,0.90911,0.632004,0.718668,0.510951,0.543317,0.0278917,0.157562,0.70923,0.260695,0.966936,0.0405339,0.406362,0.291729,0.851013,0.325076,0.22521,0.900808,0.55977,0.93499,0.901184,0.88032,0.657899,0.264248,0.7131,0.648761,0.344054,0.567508,0.181635,0.236298,0.725828,0.771933,0.88246,0.0384236,0.827647,0.111803,0.539176,0.981881,0.0711776,0.594641,0.123405,0.34265,0.877015,0.229102,0.589747,0.385691,0.872247,0.879263,0.746499,0.563389,0.790964,0.281028,0.867388,0.497932,0.834195,0.991945,0.279224,0.195704,0.0966696,0.754752,0.400494,0.208421,0.661598,0.240371,0.517631,0.936415,0.816063,0.0926051,0.25095,0.505392,0.511964,0.409962,0.916805,0.758836,0.405622,0.690944,0.153567,0.909548,0.367444,0.44525,0.467263,0.260752,0.784944,0.93946,0.303263,0.640083,0.51231,0.478655,0.0777298,0.622762,0.876093,0.842666,0.726141,0.437458,0.346731,0.274148,0.426858,0.713069,0.0553886,0.439286,0.674879,0.781921,0.592117,0.838741,0.931424,0.786418,0.460169,0.0236833,0.711147,0.772966,0.267837,0.722755,0.106146,0.740962,0.419036,0.99388,0.339489,0.0838706,0.66713,0.437329,0.632017,0.10555,0.0204861,0.643636,0.249117,0.884394,0.906815,0.974884,0.593625,0.00576597,0.414032,0.967382,0.13456,0.370695,0.850566,0.511043,0.540762,0.172837,0.654702,0.51759,0.444816,0.884788,0.570464,0.774338,0.385487,0.687337,0.0780112,0.577163,0.459639,0.960844,0.749937,0.385278,0.439031,0.202024,0.742773,0.382218,0.105994,0.480006,0.466782,0.917444,0.202468,0.271232,0.377039,0.607662,0.635487,0.432179,0.138216,0.820472,0.0422802,0.105706,0.256166,0.995429,0.113914,0.618186,0.910906,0.520313,0.455197,0.868175,0.399064,0.824391,0.707245,0.844172,0.110173,0.466593,0.773274,0.960287,0.330848,0.171106,0.60811,0.813548,0.107002,0.60192,0.08258,0.874662,0.375011,0.864435,0.190431,0.811407,0.0540741,0.860471,0.514055,0.852778,0.186751,0.700062,0.529284,0.575779,0.417367,0.546002,0.320986,0.0703473,0.527763,0.202,0.186933,0.101246,0.99953,0.267378,0.844258,0.138888,0.455309,0.691511,0.193691,0.77697,0.376234,0.927027,0.888976,0.853104,0.200392,0.473589,0.483835,0.986321,0.5839,0.258129,0.839051,0.523786,0.0441158,0.0562727,0.761829,0.985804,0.498088,0.582302,0.0848185,0.501378,0.297992,0.715816,0.312181,0.511971,0.263048,0.945817,0.479746,0.0940933,0.615767,0.233501,0.0721468,0.385343,0.701602,0.388842,0.380343,0.205248,0.818976,0.93033,0.378827,0.0794482,0.140044,0.912097,0.715581,0.0955286,0.584619,0.359006,0.965236,0.87016,0.723732,0.960941,0.115638,0.227724,0.262874,0.27894,0.948012,0.782724,0.577506,0.532706,0.152562,0.186929,0.133645,0.967393,0.219146,0.831276,0.400946,0.257478,0.0428978,0.727267,0.904952,0.436586,0.220736,0.655229,0.882206,0.441932,0.356588,0.458554,0.791848,0.302764,0.393403,0.106075,0.214157,0.627023,0.0328329,0.180031,0.725583,0.0371665,0.937085,0.774566,0.00590402,0.506219,0.432497,0.95268,0.386534,0.431281,0.713147,0.662209,0.0355288,0.565356,0.370995,0.784216,0.00452679,0.585034,0.137786,0.341426,0.914219,0.710974,0.029395,0.746956,0.397301,0.708335,0.635243,0.1172,0.0731707,0.86166,0.950892,0.38958,0.459107,0.211768,0.524662,0.242182,0.968671,0.227433,0.403337,0.738964,0.437906,0.0526572,0.854218,0.100379,0.207635,0.392121,0.0243366,0.284367,0.371186,0.902753,0.608526,0.517571,0.468824,0.57893,0.960743,0.719537,0.783197,0.961972,0.514553,0.304999,0.0481136,0.887088,0.131772,0.595537,0.869176,0.423667,0.115879,0.86477,0.787783,0.165673,0.142729,0.225381,0.695685,0.266007,0.472553,0.404334,0.636837,0.967971,0.404122,0.0203002,0.793078,0.534438,0.430505,0.46902,0.541298,0.175907,0.530712,0.113518,0.174751,0.803766,0.142327,0.0515246,0.239749,0.0518219,0.614657,0.104529,0.180756,0.485175,0.374894,0.0583475,0.0494206,0.950101,0.456493,0.340196,0.629458,0.48492,0.508733,0.122728,0.821436,0.34236,0.401441,0.140432,0.804716,0.379057,0.810852,0.553549,0.427476,0.942723,0.857057,0.241399,0.448802,0.129826,0.0937327,0.747681,0.130115,0.816718,0.711992,0.867727,0.0243201,0.967117,0.9104,0.55431,0.953906,0.563553,0.496006,0.925125,0.548962,0.671988,0.973014,0.469471,0.282111,0.630009,0.0383071,0.76718,0.748472,0.0280979,0.884553,0.396784,0.273157,0.191157,0.0674824,0.669151,0.583528,0.198043,0.183246,0.274483,0.433657,0.791847,0.488912,0.900068,0.578607,0.14529,0.558557,0.0569904,0.208532,0.512562,0.0170748,0.647384,0.750723,0.735238,0.735258,0.698753,0.0683884,0.660703,0.265059,0.0322498,0.210164,0.817568,0.969721,0.592347,0.275799,0.821911,0.0583867,0.0256523,0.678918,0.127189,0.615568,0.632073,0.783568,0.417833,0.102067,0.596776,0.621906,0.669841,0.713355,0.448357,0.317566,0.678785,0.138713,0.655861,0.659352,0.247281,0.45226,0.897251,0.580203,0.285185,0.552073,0.100642,0.804085,0.214715,0.42272,0.187684,0.692718,0.734192,0.20656,0.078818,0.298138,0.382701,0.553255,0.43349,0.410684,0.881791,0.109845,0.860313,0.0571116,0.875904,0.857079,0.142287,0.511912,0.445877,0.561146,0.279413,0.715421,0.433715,0.426885,0.760256,0.413455,0.472545,0.25392,0.496816,0.332363,0.0447857,0.858649,0.403199,0.496751,0.479447,0.337444,0.128473,0.79188,0.649449,0.29902,0.62204,0.113852,0.355447,0.19226,0.290144,0.504172,0.655102,0.389873,0.275367,0.241358,0.583154,0.839355,0.902277,0.570473,0.770283,0.0089488,0.438174,0.876029,0.392304,0.178509,0.523028,0.532028,0.502352,0.101625,0.915009,0.734771,0.376178,0.240479,0.109767,0.261017,0.0427211,0.94196,0.221132,0.611363,0.711113,0.574497,0.601854,0.71052,0.258391,0.133551,0.997699,0.969487,0.194691,0.259283,0.650727,0.382193,0.163338,0.392597,0.919057,0.409763,0.454056,0.72909,0.713389,0.700017,0.928568,0.608793,0.0156345,0.818175,0.666934,0.552938,0.110531,0.694759,0.610801,0.569422,0.289629,0.721084,0.289287,0.657967,0.0210747,0.692979,0.853758,0.357579,0.0285687,0.0677443,0.908093,0.354856,0.151535,0.350699,0.578403,0.355851,0.797407,0.101521,0.854816,|0.828896,0.344117,0.48637,0.141397,0.574573,0.241322,0.103736,0.708149,0.210082,0.0047487,0.657967,0.753728,0.481963,0.907836,0.0908719,0.0380652,0.411819,0.65654,0.886491,0.184832,0.480017,0.667248,0.12133,0.69273,0.137172,0.998979,0.550628,0.0862415,0.104609,0.738193,0.618561,0.916779,0.869948,0.738983,0.0727562,0.296433,0.698735,0.239026,0.299842,0.853611,0.989181,0.677543,0.778132,0.379634,0.0227183,0.907251,0.881107,0.547698,0.321112,0.301241,0.261809,0.620354,0.470712,0.821329,0.544826,0.720026,0.458338,0.0918371,0.809383,0.558706,0.619058,0.697384,0.698888,0.326976,0.475342,0.588018,0.600889,0.810847,0.517498,0.669208,0.467497,0.42897,0.038789,0.312219,0.99371,0.871297,0.842097,0.283461,0.0444079,0.96505,0.4285,0.848911,0.131213,0.840046,0.462921,0.229985,0.0648713,0.227963,0.316244,0.20663,0.371208,0.112089,0.184846,0.840712,0.140737,0.811822,0.763469,9.39965e-05,0.725792,0.667388,0.030002,0.97338,0.273559,0.178142,0.562335,0.631361,0.0190131,0.915826,0.551593,0.347165,0.825833,0.248034,0.640128,0.13989,0.0649577,0.950822,0.328966,0.5633,0.747464,0.620867,0.608098,0.327278,0.203749,0.330248,0.219559,0.362031,0.612505,0.580015,0.0720326,0.795294,0.650814,0.353317,0.220518,0.752088,0.295527,0.55799,0.894894,0.0146693,0.0179891,0.393173,0.341078,0.512754,0.719885,0.878577,0.969484,0.996078,0.220616,0.818267,0.579938,0.479039,0.5254,0.251343,0.244186,0.562634,0.0971622,0.481254,0.252669,0.736429,0.458183,0.325813,0.190258,0.313459,0.33432,0.71457,0.0809132,0.289343,0.977669,0.154779,0.0599529,0.453543,0.170988,0.802017,0.221702,0.0536252,0.123414,0.884291,0.203969,0.970079,0.715632,0.722038,0.527257,0.371758,0.536206,0.944862,0.316505,0.386318,0.152674,0.233633,0.292035,0.401138,0.396243,0.453688,0.546252,0.761914,0.750958,0.0571584,0.971442,0.616621,0.738579,0.860961,0.939432,0.967881,0.36943,0.346461,0.399692,0.286285,0.0544616,0.455619,0.572255,0.755752,0.476335,0.476653,0.170939,0.327443,0.926453,0.359621,0.994244,0.00350571,0.235739,0.0714183,0.234543,0.220425,0.918798,0.378385,0.775386,0.114127,0.598503,0.650107,0.361596,0.0747725,0.199982,0.681987,0.474403,0.268409,0.991566,0.730494,0.427538,0.316754,0.381451,0.499948,0.944867,0.733657,0.31669,0.734211,0.862245,0.128506,0.605739,0.851316,0.0440202,0.827899,0.849682,0.169878,0.299737,0.316068,0.40512,0.0320435,0.115661,0.367716,0.141105,0.388817,0.302224,0.817243,0.961293,0.824471,0.0450865,0.0961583,0.592893,0.383049,0.00991303,0.531428,0.812666,0.714075,0.949485,0.673072,0.958492,0.0907247,0.326951,0.850361,0.777814,0.551173,0.469078,0.536825,0.52865,0.107807,0.575206,0.9531,0.726919,0.941447,0.332762,0.0301158,0.472681,0.957704,0.685748,0.196443,0.900254,0.300454,0.657477,0.191374,0.386891,0.726997,0.695399,0.399684,0.74776,0.201906,0.34527,0.506512,0.456967,0.906496,0.229112,0.44052,0.494197,0.991455,0.311837,0.0767171,0.649054,0.772545,0.180076,0.471528,0.305233,0.25241,0.719306,0.71562,0.634183,0.993132,0.514889,0.0419376,0.118554,0.250963,0.146927,0.701646,0.0151919,0.243781,0.756355,0.615519,0.674075,0.366576,0.835254,0.4506,0.780855,0.778461,0.452992,0.415412,0.498893,0.669876,0.163323,0.481159,0.275192,0.124638,0.40664,0.466733,0.549708,0.88935,0.19047,0.188588,0.66962,0.243657,0.329441,0.633508,0.613822,0.0466912,0.910489,0.431755,0.399317,0.171958,0.468203,0.651497,0.414633,0.305467,0.114354,0.796749,0.222232,0.429376,0.33625,0.093253,0.251751,0.438992,0.0170009,0.700992,0.146016,0.860129,0.509729,0.859362,0.425022,0.0162687,0.35121,0.912473,0.451398,0.40808,0.420582,0.198506,0.273332,0.218255,0.283258,0.0143622,0.992641,0.876028,0.0865318,0.551132,0.207418,0.941743,0.128039,0.137041,0.181388,0.331116,0.518467,0.42399,0.139151,0.179207,0.53586,0.76196,0.116377,0.778647,0.834093,0.59115,0.893378,0.755282,0.271166,0.0411544,0.915415,0.439167,0.52578,0.541972,0.641376,0.466089,0.327553,0.739108,0.855056,0.377757,0.662812,0.845839,0.67158,0.962449,0.524369,0.304318,0.653824,0.208048,0.361573,0.110389,0.00855297,0.362903,0.851833,0.433191,0.0561227,0.637694,0.696902,0.688068,0.672335,0.465145,0.23543,0.0163885,0.0104676,0.044113,0.658605,0.42092,0.132173,0.532704,0.219213,0.251013,0.388603,0.0587782,0.490158,0.0964947,0.954838,0.859741,0.0770444,0.850356,0.285459,0.187183,0.960529,0.421258,0.48496,0.206807,0.32502,0.987247,0.198105,0.441547,0.630193,0.852731,0.512168,0.561958,0.613992,0.211262,0.682435,0.919331,0.331241,0.157078,0.74065,0.0930265,0.126056,0.260144,0.0768564,0.897189,0.693402,0.93763,0.593329,0.0790498,0.114593,0.126932,0.478976,0.969451,0.884973,0.282476,0.505064,0.576122,0.452159,0.465505,0.336491,0.863685,0.934384,0.899322,0.204654,0.0814034,0.206755,0.608223,0.555338,0.210767,0.688338,0.767195,0.749791,0.346779,0.246044,0.197366,0.764501,0.308671,0.799945,0.0878594,0.160601,0.622744,0.403213,0.422052,0.327057,0.516225,0.0584831,0.560416,0.493575,0.407518,0.405199,0.460546,0.950974,0.88874,0.84571,0.565895,0.678357,0.565618,0.30296,0.919829,0.315699,0.411579,0.286005,0.952339,0.400238,0.496663,0.00332832,0.276137,0.334102,0.0680608,0.383776,0.408321,0.0838787,0.120435,0.196127,0.388926,0.217335,0.131158,0.581734,0.660619,0.36016,0.979717,0.210723,0.412684,0.791665,0.0815191,0.0616063,0.799731,0.453016,0.741316,0.556214,0.874245,0.422283,0.805201,0.479206,0.0294303,0.68055,0.154771,0.0402321,0.136594,0.891033,0.486341,0.248534,0.977329,0.738994,0.133661,0.903156,0.578867,0.226788,0.730376,0.979722,0.386952,0.638304,0.054171,0.026449,0.641169,0.997129,0.308323,0.58985,0.421422,0.123901,0.732292,0.332718,0.959274,0.893166,0.268259,0.868585,0.924506,0.576674,0.115072,0.636384,0.241509,0.345127,0.021742,0.359227,0.790644,0.528568,0.7937,0.67779,0.209041,0.871052,0.79974,0.111927,0.634238,0.108064,0.887264,0.306322,0.989146,0.43508,0.814479,0.36129,0.461944,0.400532,0.390752,0.268809,0.822179,0.275072,0.990335,0.356486,0.65615,0.494626,0.452732,0.25653,0.636044,0.413382,0.592536,0.540046,0.732401,0.538898,0.0538611,0.568271,0.0223697,0.747074,0.605416,0.430826,0.796903,0.911739,0.207455,0.0292842,0.300305,0.293317,0.3336,0.560536,0.0512818,0.604805,0.795793,0.429251,0.0223646,0.500776,0.8529,0.2819,0.0394155,0.122216,0.0590325,0.728795,0.487056,0.170966,0.463473,0.696039,0.355115,0.198096,0.445436,0.394545,0.802444,0.607993,0.255267,0.719516,0.397572,0.828297,0.576067,0.77048,0.539002,0.787823,0.12423,0.166136,0.660506,0.22308,0.440582,0.103707,0.44445,0.361102,0.986409,0.994701,0.0477872,0.828706,0.0839218,0.0289606,0.561635,0.780628,0.39447,0.653999,0.0770897,0.629781,0.989415,0.481323,0.237439,0.826746,0.599919,0.030583,0.87723,0.303558,0.670442,0.784943,0.0679743,0.095579,0.890012,0.321479,0.400011,0.716225,0.0481441,0.723183,0.766039,0.213511,0.266867,0.518833,0.105481,0.344931,0.753483,0.754903,0.410094,0.268865,0.916086,0.988064,0.135982,0.925745,0.906099,0.182215,0.298786,0.845084,0.743285,0.0496287,0.589292,0.00952613,0.778221,0.676107,0.504217,0.592272,0.658078,0.739361,0.754908,0.840422,0.265924,0.146261,0.63906,0.875155,0.558747,0.7292,0.600513,0.215888,0.686097,0.682143,0.733613,0.530525,0.142035,0.0153004,0.424007,0.196659,0.250473,0.754673,0.854597,0.37524,0.042495,0.0190353,0.339091,0.363244,0.300092,0.309939,0.38586,0.715587,0.603448,0.456446,0.44317,0.409283,0.181889,0.58754,0.449637,0.102956,0.528437,0.140911,0.869643,0.749495,0.273463,0.707099,0.0474336,0.0523503,0.00187379,0.421387,0.00246376,0.547682,0.563339,0.839696,0.965786,0.649919,0.120467,0.519713,0.74545,0.460703,0.324484,0.595862,0.663233,0.512246,0.110885,0.996305,0.306315,0.585026,0.641851,0.270545,0.344264,0.266292,0.431036,0.979419,0.614532,0.161879,0.280962,0.873293,0.964294,0.692696,0.22593,0.1344,0.254018,0.0432364,0.815444,0.897764,0.27352,0.00753272,0.749911,0.351763,0.471665,0.680022,0.23571,0.0578713,0.332551,0.510825,0.650494,0.721817,0.160645,0.64469,0.557791,0.129441,0.938136,0.528933,0.193116,0.727348,0.204455,0.0338658,0.495585,0.771012,0.259928,0.372045,0.634883,0.496138,0.575578,0.611061,0.200874,0.273753,0.736679,0.279445,0.040597,0.296626,0.252687,0.0359643,0.698726,0.687488,0.378333,0.597651,0.892551,0.845216,0.715515,0.142383,0.0126184,0.238781,0.422426,0.741289,0.0292884,0.199021,0.540212,0.538601,0.559253,0.297419,0.864417,0.305934,0.15844,0.0700036,0.868583,0.653772,0.236979,0.858676,0.11549,0.134098,0.471111,0.00937748,0.622701,0.636019,0.0728957,0.0965753,0.785547,0.989245,0.745189,0.385856,0.965822,0.452605,0.141757,0.217276,0.801444,0.867734,0.565374,0.294895,0.717984,0.661615,0.034201,0.401493,0.262372,0.244915,0.0598519,0.18583,0.0831476,0.85393,0.547499,0.266742,0.988123,0.679777,0.364144,0.981982,0.105029,0.249245,0.308197,0.685559,0.275358,0.879595,0.776823,0.879503,0.00203127,0.0558646,0.587523,0.747609,0.869488,0.12185,0.0914801,0.489312,0.50998,0.817532,0.136085,0.221368,0.585105,0.625717,0.575365,0.62869,0.41566,0.693643,0.142951,0.52204,0.435289,0.869845,0.351713,0.239977,0.963105,0.00840688,0.21298,0.0689516,0.290007,0.867546,0.0904707,0.0211978,0.172877,0.826415,0.159472,0.493318,0.230707,0.744166,0.0767525,0.557765,0.187124,0.88053,0.878672,|0.765205,0.962026,0.845883,0.171561,0.383237,0.020206,0.418369,0.249015,0.190023,0.770169,0.17017,0.0700174,0.529063,0.651277,0.159065,0.4152,0.521132,0.467212,0.0995752,0.280513,0.894385,0.780046,0.0689774,0.45259,0.598516,0.743573,0.75606,0.945085,0.596398,0.393252,0.157935,0.592213,0.720261,0.954057,0.222752,0.684778,0.809797,0.747633,0.056509,0.682085,0.83699,0.0208358,0.385543,0.828072,0.717351,0.651427,0.850788,0.375842,0.155039,0.65854,0.741064,0.852633,0.817946,0.338453,0.490303,0.760874,0.808719,0.777189,0.730034,0.95705,0.111679,0.674992,0.0908946,0.890982,0.904383,0.242234,0.497495,0.789521,0.573991,0.804019,0.931719,0.0999511,0.957547,0.858929,0.101005,0.176716,0.608344,0.349687,0.367272,0.0700291,0.272812,0.178719,0.699278,0.741264,0.656321,0.685568,0.231964,0.453739,0.302993,0.22276,0.748022,0.303682,0.285552,0.0255253,0.355772,0.547622,0.64352,0.25065,0.535418,0.654668,0.247665,0.805465,0.0504063,0.125352,0.812565,0.0550196,0.0764499,0.833969,0.951994,0.335335,0.50285,0.0456418,0.552911,0.504375,0.973058,0.314653,0.103668,0.619024,0.537511,0.381464,0.44708,0.717572,0.441906,0.722763,0.141509,0.832914,0.714123,0.678417,0.856522,0.227869,0.820365,0.217543,0.20664,0.555775,0.74288,0.840841,0.867094,0.0922697,0.546259,0.658314,0.400451,0.220575,0.695931,0.104349,0.559693,0.961003,0.632694,0.807037,0.435618,0.495866,0.305298,0.355107,0.131622,0.896263,0.622973,0.374851,0.44503,0.381912,0.951653,0.418796,0.384732,0.0490687,0.0225916,0.229041,0.369928,0.951019,0.309825,0.687504,0.172883,0.453541,0.205547,0.647959,0.453078,0.578371,0.485821,0.657129,0.806143,0.138367,0.535955,0.682266,0.3091,0.35582,0.809177,0.70374,0.908567,0.979163,0.839681,0.00783288,0.867048,0.229281,0.960219,0.269481,0.160334,0.702,0.881644,0.306335,0.782892,0.299684,0.390731,0.851419,0.311526,0.890646,0.98162,0.953574,0.77121,0.419843,0.538165,0.842259,0.671698,0.678304,0.184368,0.377947,0.379546,0.80088,0.459495,0.79161,0.205772,0.0889384,0.0619947,0.393484,0.431058,0.362095,0.481681,0.489113,0.14616,0.598071,0.25385,0.746821,0.559074,0.0939801,0.633022,0.828038,0.80539,0.243134,0.214342,0.749389,0.160761,0.472951,0.934883,0.289547,0.749079,0.820852,0.562753,0.43564,0.496578,0.975918,0.539545,0.242747,0.977626,0.968026,0.449522,0.721903,0.326644,0.093106,0.0464489,0.142641,0.840764,0.0469435,0.659432,0.193217,0.804709,0.585227,0.127011,0.838311,0.252196,0.579369,0.472207,0.979082,0.424528,0.268229,0.772129,0.0379156,0.0317543,0.82883,0.937948,0.0163769,0.546218,0.513084,0.674589,0.469774,0.402598,0.32493,0.837954,0.0814137,0.871365,0.982904,0.851426,0.238781,0.822234,0.55065,0.604628,0.103884,0.304261,0.0861723,0.418919,0.544634,0.613938,0.956644,0.164953,0.20024,0.828352,0.712026,0.898098,0.344559,0.682141,0.509139,0.671612,0.701883,0.585177,0.851373,0.0397146,0.869299,0.0414188,0.913131,0.752689,0.618989,0.375563,0.957498,0.316613,0.643497,0.145332,0.336367,0.859253,0.904317,0.336765,0.855424,0.699297,0.601195,0.946594,0.0681542,0.92695,0.775774,0.854653,0.690262,0.571677,0.795898,0.836528,0.685221,0.899463,0.504838,0.0158773,0.883173,0.511302,0.930153,0.30633,0.140847,0.049163,0.239926,0.45176,0.467641,0.202255,0.342735,0.587239,0.147625,0.257193,0.489405,0.287783,0.0342736,0.255752,0.650655,0.0932148,0.904206,0.0694126,0.00766313,0.491612,0.630761,0.163892,0.87422,0.157126,0.0589966,0.180206,0.845198,0.988653,0.11341,0.443915,0.0599869,0.101903,0.139022,0.918592,0.480609,0.749308,0.814577,0.2456,0.133126,0.421619,0.357386,0.424432,0.837794,0.734421,0.53641,0.255646,0.82506,0.201291,0.19642,0.472491,0.411539,0.733226,0.167503,0.860764,0.326485,0.732677,0.0740489,0.843985,0.707338,0.218193,0.016141,0.282132,0.994732,0.504952,0.260307,0.92518,0.409161,0.291345,0.225027,0.310315,0.460256,0.66244,0.71964,0.498184,0.898633,0.450336,0.188974,0.901189,0.55591,0.857598,0.970968,0.87283,0.128183,0.340361,0.413191,0.995911,0.331966,0.0349488,0.762657,0.373406,0.140798,0.0681267,0.0430675,0.170846,0.587964,0.182434,0.790639,0.798392,0.849727,0.20244,0.238862,0.671726,0.614972,0.830393,0.39015,0.498666,0.379081,0.29607,0.0499824,0.637859,0.60834,0.280451,0.265893,0.776481,0.00360894,0.397487,0.556658,0.942687,0.562236,0.560706,0.359559,0.935079,0.442297,0.306967,0.461997,0.0665378,0.24174,0.236709,0.20116,0.199353,0.935898,0.759074,0.40492,0.449522,0.553746,0.150382,0.59738,0.763757,0.864166,0.771968,0.63509,0.864729,0.2124,0.391428,0.314122,0.043249,0.739344,0.107465,0.288433,0.766008,0.941688,0.412706,0.715115,0.287338,0.782265,0.615458,0.791691,0.971987,0.462757,0.446837,0.589313,0.168157,0.253373,0.854098,0.536236,0.665449,0.263734,0.579315,0.363356,0.242396,0.867272,0.542506,0.0740702,0.404684,0.697936,0.0892656,0.410708,0.91378,0.0977603,0.909659,0.731323,0.630231,0.990079,0.529134,0.740092,0.450627,0.533026,0.60281,0.439142,0.990472,0.0730988,0.704495,0.18974,0.728169,0.973213,0.448247,0.35366,0.298933,0.878043,0.845274,0.338353,0.695275,0.222559,0.346285,0.349373,0.0177358,0.818906,0.663527,0.399598,0.20053,0.447025,0.559257,0.599048,0.446467,0.180747,0.476863,0.913237,0.88943,0.0099988,0.563032,0.984522,0.661683,0.806264,0.448202,0.918262,0.9921,0.880606,0.224472,0.988563,0.728751,0.94468,0.523833,0.242611,0.9454,0.863738,0.694796,0.479767,0.0116749,0.751511,0.107203,0.0370777,0.0535753,0.68251,0.892593,0.564257,0.970376,0.510185,0.798988,0.397086,0.816234,0.668846,0.979769,0.250365,0.496293,0.294316,0.964514,0.992876,0.981109,0.801319,0.688216,0.945324,0.466332,0.845748,0.336198,0.0724499,0.662079,0.237731,0.864648,0.876561,0.594014,0.245461,0.25556,0.947312,0.472859,0.959582,0.0910357,0.87856,0.132945,0.339369,0.951914,0.184721,0.943044,0.20782,0.985765,0.791839,0.108783,0.15931,0.244846,0.0243194,0.888849,0.165236,0.583305,0.0236714,0.232473,0.526115,0.230921,0.453263,0.720578,0.689779,0.943366,0.399124,0.868051,0.0798766,0.851442,0.40445,0.148031,0.743528,0.411337,0.458778,0.209838,0.742095,0.763917,0.184931,0.0861004,0.534019,0.702677,0.468628,0.138125,0.443227,0.593473,0.829856,0.499736,0.520975,0.922914,0.93378,0.532462,0.0631397,0.478273,0.865546,0.0831428,0.421136,0.278945,0.329904,0.370357,0.162469,0.693881,0.968473,0.673237,0.351261,0.488554,0.703393,0.877452,0.280657,0.619489,0.905424,0.737737,0.215296,0.300692,0.0821026,0.106619,0.424917,0.625165,0.942683,0.954994,0.196124,0.169843,0.902911,0.0247856,0.677592,0.193087,0.0662834,0.710425,0.222376,0.952515,0.645976,0.945438,0.625427,0.153621,0.0227347,0.579911,0.125925,0.0778402,0.87887,0.795228,0.172997,0.422262,0.0616655,0.65328,0.261987,0.225177,0.0380214,0.849837,0.884831,0.648543,0.35193,0.97472,0.53637,0.100269,0.89524,0.872608,0.248924,0.212808,0.244512,0.46541,0.111215,0.0118726,0.525193,0.510099,0.842535,0.909763,0.301047,0.761513,0.126117,0.106048,0.579825,0.901797,0.31677,0.672017,0.0125589,0.0809319,0.346702,0.210591,0.638278,0.817165,0.29067,0.215776,0.694048,0.729007,0.472434,0.11247,0.11384,0.714329,0.968186,0.579202,0.679626,0.097434,0.723967,0.0978451,0.0985085,0.0931556,0.906465,0.420095,0.240275,0.293425,0.479516,0.681172,0.0687591,0.408289,0.619687,0.358729,0.310006,0.0698211,0.75062,0.649573,0.0663717,0.423235,0.199272,0.96535,0.0687721,0.0729402,0.385983,0.349738,0.150921,0.264366,0.645131,0.861984,0.594287,0.0934091,0.167919,0.883274,0.137222,0.715891,0.797111,0.945522,0.371972,0.491009,0.932288,0.862929,0.00657684,0.940303,0.967933,0.0960948,0.866494,0.844205,0.482926,0.577401,0.970347,0.806774,0.243215,0.41797,0.264066,0.310936,0.82989,0.0186977,0.377589,0.457528,0.148252,0.704803,0.0503168,0.0962331,0.500618,0.545824,0.0321296,0.36919,0.524707,0.522076,0.449595,0.429935,0.26948,0.399698,0.849271,0.298952,0.253163,0.412281,0.399298,0.433585,0.344249,0.149899,0.438456,0.31003,0.66699,0.946006,0.493395,0.416716,0.322774,0.118501,0.429651,0.690155,0.100998,0.962975,0.211243,0.196473,0.124282,0.184383,0.248707,0.40583,0.419475,0.0108513,0.318343,0.381776,0.405286,0.535068,0.387674,0.945734,0.592457,0.0687335,0.961867,0.0474941,0.630862,0.57648,0.0617005,0.650275,0.633609,0.648683,0.105135,0.873268,0.0804986,0.779052,0.155848,0.757497,0.0520252,0.649844,0.804165,0.255464,0.958842,0.869459,0.0534113,0.0131052,0.276609,0.765061,0.655759,0.397788,0.620194,0.359818,0.027034,0.680222,0.648034,0.0344465,0.284106,0.746827,0.768419,0.811772,0.672281,0.617446,0.912174,0.342689,0.47004,0.2279,0.337889,0.672962,0.957675,0.747233,0.97809,0.940348,0.44338,0.18796,0.387631,0.629483,0.367006,0.339677,0.274355,0.460047,0.918448,0.400068,0.684664,0.638703,0.446137,0.284328,0.0611498,0.84073,0.1891,0.348496,0.372034,0.586654,0.0261972,0.50089,0.626335,0.683878,0.392164,0.741371,0.257077,0.161459,0.312374,0.0363801,0.0504533,0.186879,0.0512337,0.0938377,0.551704,0.390988,0.0827248,0.284125,0.12538,0.880004,0.795091,0.192159,0.723514,0.750989,0.583257,0.469293,0.979545,0.867023,0.283173,0.424012,0.559074,0.21232,0.438374,0.806451,0.689109,0.669706,0.138215,0.884726,0.0909472,0.136456,0.4523,0.807511,0.758913,0.596593,0.874963,0.685248,0.111369,0.970174,0.13084,0.967335,0.0364441,|0.170315,0.350542,0.902838,0.132993,0.58574,0.584761,0.0820847,0.145098,0.000979424,0.560841,0.587946,0.612216,0.165802,0.925723,0.772291,0.805111,0.306343,0.941769,0.571696,0.942277,0.63989,0.627527,0.4086,0.313836,0.632643,0.959806,0.666023,0.718512,0.382981,0.656339,0.162186,0.26691,0.238423,0.379138,0.55565,0.793295,0.698671,0.3126,0.841653,0.639922,0.91827,0.623733,0.273477,0.730553,0.907983,0.864,0.824132,0.453265,0.770827,0.662114,0.0295823,0.657335,0.181072,0.279794,0.0265221,0.225444,0.644922,0.833467,0.165115,0.850768,0.327162,0.437026,0.546402,0.0970924,0.273444,0.977556,0.826669,0.480839,0.340667,0.660284,0.448591,0.77438,0.118843,0.54392,0.076912,0.970109,0.131276,0.680998,0.848958,0.571793,0.41705,0.788896,0.481648,0.0152587,0.346626,0.0989713,0.129969,0.968633,0.271014,0.112736,0.00923127,0.970193,0.961047,0.847242,0.676297,0.279905,0.694177,0.494929,0.0399888,0.444743,0.699139,0.965726,0.527687,0.170549,0.00649112,0.112044,0.493325,0.363626,0.0749665,0.795062,0.347675,0.99338,0.275534,0.678456,0.959662,0.54006,0.851077,0.788473,0.0359606,0.906619,0.165913,0.845772,0.466048,0.59057,0.49095,0.331818,0.869778,0.530914,0.0645212,0.680969,0.962098,0.088369,0.597769,0.415545,0.253095,0.913981,0.695914,0.334542,0.878109,0.378946,0.954543,0.300921,0.526981,0.83885,0.565802,0.485131,0.832933,0.070882,0.250228,0.224354,0.694621,0.51828,9.20296e-05,0.786147,0.250549,0.252653,0.224301,0.719668,0.047906,0.697939,0.0687016,0.280976,0.169886,0.583019,0.398883,0.37067,0.489277,0.903498,0.25309,0.637808,0.868566,0.180702,0.245069,0.984458,0.0563453,0.359245,0.736434,0.557825,0.276144,0.560207,0.820652,0.412278,0.133044,0.551432,0.269953,0.227365,0.896237,0.838485,0.232228,0.836792,0.178156,0.783955,0.658301,0.745232,0.130738,0.0203214,0.896513,0.647594,0.898935,0.179241,0.613491,0.176287,0.233854,0.422314,0.85539,0.0471762,0.127823,0.614029,0.572517,0.341875,0.232295,0.229017,0.589289,0.300315,0.061133,0.652524,0.638246,0.405528,0.868686,0.943887,0.909161,0.251166,0.596611,0.3002,0.0953238,0.47745,0.549567,0.78136,0.666377,0.895603,0.440982,0.63856,0.128375,0.425256,0.955059,0.124385,0.976356,0.528982,0.479082,0.776521,0.852041,0.706193,0.723106,0.186333,0.136666,0.404766,0.436361,0.348343,0.593388,0.106738,0.296337,0.465123,0.611975,0.102893,0.00369298,0.302913,0.215419,0.607321,0.578891,0.925859,0.489264,0.997165,0.0774338,0.615876,0.70604,0.154875,0.727122,0.965408,0.192606,0.185768,0.110537,0.0335208,0.907628,0.740608,0.538408,0.368267,0.211721,0.249107,0.094929,0.0154043,0.00545114,0.199655,0.412915,0.291651,0.0482731,0.0329865,0.960648,0.0867911,0.642516,0.0662768,0.57019,0.191572,0.0750006,0.493204,0.476127,0.81765,0.854154,0.0803848,0.237275,0.837535,0.108877,0.280671,0.126326,0.829768,0.176479,0.44522,0.799402,0.197161,0.317202,0.115483,0.76981,0.198268,0.00949222,0.861719,0.824278,0.332465,0.959941,0.293083,0.133341,0.474627,0.525882,0.752729,0.523275,0.258215,0.463447,0.73552,0.421043,0.695126,0.887719,0.322462,0.693829,0.358989,0.0160452,0.767587,0.50305,0.00368249,0.45858,0.294605,0.489248,0.551417,0.130089,0.290434,0.765986,0.17493,0.460631,0.752324,0.871247,0.279648,0.354844,0.308821,0.228566,0.187412,0.365487,0.0782704,0.248886,0.415519,0.758446,0.176139,0.489339,0.221977,0.900534,0.755506,0.798534,0.25208,0.0897064,0.389472,0.618389,0.274434,0.218713,0.977592,0.949797,0.180547,0.79447,0.90266,0.877694,0.416225,0.29232,0.865953,0.946874,0.961629,0.969487,0.445396,0.284983,0.939323,0.703636,0.358482,0.0462583,0.0423684,0.109097,0.21114,0.151438,0.164163,0.958999,0.0499292,0.542046,0.295238,0.998515,0.166132,0.402996,0.62842,0.0729468,0.329282,0.714474,0.709318,0.417207,0.788068,0.111351,0.734557,0.919496,0.298299,0.92995,0.889476,0.925312,0.41498,0.95898,0.563183,0.145618,0.690475,0.990535,0.983428,0.111276,0.872133,0.0778839,0.238098,0.147292,0.898017,0.887076,0.523976,0.445495,0.169725,0.181125,0.764814,0.982765,0.65058,0.326636,0.4888,0.883737,0.767084,0.246365,0.332394,0.967434,0.0151396,0.0965694,0.330607,0.635708,0.432818,0.758197,0.584431,0.523383,0.563679,0.0435278,0.0875596,0.477861,0.818862,0.426246,0.600456,0.816606,0.053305,0.89004,0.727292,0.465195,0.665694,0.5866,0.968696,0.0965995,0.266917,0.888579,0.432301,0.811777,0.87176,0.705373,0.473522,0.000831008,0.315883,0.896385,0.978286,0.844037,0.508438,0.587107,0.824991,0.805969,0.996937,0.256882,0.895292,0.461615,0.952676,0.667664,0.985157,0.761208,0.687846,0.0561724,0.823716,0.586545,0.666603,0.960534,0.416024,0.689497,0.774901,0.234253,0.862351,0.748907,0.94952,0.572869,0.0101352,0.943117,0.854445,0.616128,0.542964,0.596155,0.73508,0.4775,0.878059,0.973577,0.736135,0.953916,0.41198,0.253843,0.978145,0.975707,0.81529,0.155019,0.181288,0.181404,0.357237,0.685723,0.145386,0.212745,0.267032,0.855715,0.304846,0.550859,0.975389,0.646871,0.713025,0.97006,0.283576,0.970596,0.695021,0.200617,0.133401,0.0188767,0.508676,0.309952,0.69436,0.0825094,0.643967,0.873191,0.155566,0.00411224,0.829302,0.889216,0.837141,0.865717,0.428363,0.165402,0.261759,0.110089,0.817907,0.309903,0.128388,0.749017,0.734782,0.504568,0.823173,0.94307,0.848437,0.695601,0.991032,0.575948,0.0478479,0.497084,0.258076,0.0980238,0.787328,0.256095,0.972585,0.257057,0.629294,0.530564,0.195606,0.493971,0.822398,0.995881,0.239535,0.332397,0.274604,0.097451,0.739647,0.125535,0.785636,0.11596,0.0889061,0.579032,0.896209,0.257758,0.058931,0.59614,0.805954,0.457426,0.471854,0.349291,0.229423,0.352761,0.663921,0.92679,0.647195,0.588183,0.513418,0.501905,0.931395,0.850936,0.303321,0.907963,0.644322,0.188095,0.12311,0.710886,0.367179,0.736526,0.803656,0.751919,0.598025,0.832798,0.684079,0.419016,0.742643,0.956493,0.928957,0.282806,0.0267944,0.513415,0.87569,0.992379,0.554831,0.897765,0.171773,0.724016,0.560344,0.470684,0.905088,0.0391201,0.881588,0.529737,0.345854,0.847522,0.161616,0.681147,0.313586,0.932075,0.535013,0.472796,0.0369298,0.185929,0.682485,0.577406,0.147619,0.760915,0.429014,0.735077,0.944338,0.134406,0.130293,0.715533,0.734495,0.44343,0.989856,0.935534,0.207582,0.0562329,0.782775,0.536116,0.314826,0.705061,0.749411,0.807812,0.327793,0.554725,0.988519,0.798341,0.765971,0.515823,0.861972,0.248068,0.206131,0.707729,0.380866,0.821666,0.619593,0.0419889,0.681787,0.565148,0.153494,0.247731,0.718071,0.109209,0.910286,0.427538,0.252339,0.283344,0.950171,0.913096,0.13712,0.82932,0.754142,0.796767,0.496981,0.736104,0.605624,0.589105,0.98689,0.347044,0.00537384,0.453444,0.162015,0.884556,0.448346,0.733914,0.672744,0.705573,0.870351,0.718672,0.261556,0.808094,0.871101,0.519945,0.480834,0.146047,0.98467,0.925327,0.958893,0.407577,0.123023,0.705178,0.444159,0.336488,0.792883,0.436343,0.99017,0.49478,0.76047,0.950369,0.384061,0.506951,0.540113,0.747304,0.530121,0.582111,0.442834,0.991239,0.733386,0.94544,0.821737,0.791564,0.966994,0.0180119,0.344679,0.950045,0.529815,0.490109,0.923253,0.803294,0.222828,0.609214,0.572418,0.656214,0.304223,0.228361,0.778409,0.00562805,0.412268,0.312478,0.811565,0.252272,0.373941,0.768833,0.211913,0.802101,0.84776,0.079276,0.0304059,0.663773,0.886411,0.684547,0.295918,0.190451,0.787232,0.321368,0.561772,0.366007,0.283676,0.569735,0.11241,0.212401,0.257792,0.946009,0.106423,0.408161,0.597295,0.745802,0.290966,0.88435,0.545572,0.207337,0.602976,0.282349,0.50473,0.679246,0.360382,0.590809,0.563745,0.920011,0.66689,0.680187,0.808014,0.917536,0.742233,0.247006,0.437092,0.0746346,0.546544,0.197891,0.953451,0.995014,0.380559,0.843598,0.93677,0.0685195,0.740236,0.00305277,0.334139,0.779838,0.610631,0.630054,0.847632,0.509018,0.374853,0.98982,0.846723,0.733618,0.83623,0.853432,0.381481,0.800811,0.618814,0.38973,0.113327,0.771975,0.432669,0.0303297,0.963596,0.657048,0.886759,0.722421,0.738594,0.50858,0.0281874,0.988559,0.0781783,0.414517,0.573798,0.755481,0.15507,0.171968,0.0276431,0.715956,0.981326,0.441653,0.0680044,0.904091,0.452212,0.797522,0.956764,0.897861,0.289824,0.405414,0.876243,0.29873,0.172779,0.522416,0.999562,0.381161,0.857944,0.837794,0.0766913,0.250587,0.3283,0.881784,0.479063,0.14424,0.833312,0.711828,0.704339,0.854116,0.677015,0.266386,0.245398,0.698253,0.336494,0.575348,0.289659,0.524414,0.149604,0.106778,0.625509,0.00522006,0.27053,0.979428,0.717881,0.807953,0.469789,0.650912,0.0213221,0.157394,0.83386,0.873816,0.456496,0.600171,0.308354,0.0446463,0.870229,0.49299,0.741217,0.315481,0.141073,0.0359071,0.323533,0.87024,0.0693947,0.854507,0.00363654,0.487627,0.182906,0.364142,0.528606,0.390044,0.363892,0.0380846,0.808819,0.651183,0.368584,0.936602,0.748318,0.162808,0.550276,0.48278,0.173544,0.728293,0.865077,0.975747,0.731391,0.799022,0.306199,0.282925,0.255546,0.901082,0.215297,0.727844,0.822906,0.871852,0.140178,0.536863,0.756411,0.00316155,0.398525,0.941881,0.893177,0.902593,0.533505,0.704743,0.182493,0.11414,0.498755,0.877607,0.0745564,0.244804,0.703753,0.443259,0.52878,0.501731,0.28161,0.0296742,0.827137,0.469336,0.75106,0.823764,0.777499,0.141729,0.694088,0.609761,0.335817,0.170527,0.116394,0.787877,0.176224,0.431522,0.538553,0.93319,0.291767,0.165786,0.565426,|0.148831,0.19452,0.133535,0.129083,0.43519,0.195302,0.681265,0.946556,0.368837,0.976978,0.139938,0.194417,0.0780756,0.310611,0.998728,0.621233,0.833994,0.125817,0.129368,0.984541,0.994142,0.406923,0.336437,0.156455,0.0974835,0.452956,0.0619318,0.11319,0.396804,0.686998,0.961346,0.31155,0.17609,0.950062,0.277404,0.224361,0.62297,0.364786,0.964267,0.818878,0.553216,0.0660182,0.633489,0.752931,0.691567,0.564232,0.693441,0.454398,0.676443,0.4127,0.553445,0.536035,0.0876986,0.98961,0.696851,0.849445,0.644967,0.231415,0.174892,0.0652184,0.716942,0.0604124,0.267946,0.613852,0.304123,0.0667291,0.972854,0.812965,0.840531,0.637211,0.744094,0.422683,0.676356,0.79135,0.732087,0.896455,0.331517,0.527235,0.404853,0.816422,0.210777,0.560177,0.157072,0.739522,0.484921,0.613535,0.533563,0.670868,0.121481,0.652576,0.0339826,0.935621,0.135473,0.54823,0.512089,0.0947357,0.721721,0.0869656,0.18755,0.597968,0.853543,0.125982,0.969506,0.864927,0.12628,0.842735,0.832775,0.971337,0.112485,0.29149,0.503236,0.84104,0.499858,0.705389,0.983059,0.785738,0.143753,0.51986,0.482277,0.666864,0.694917,0.619608,0.132383,0.864154,0.865089,0.302078,0.16831,0.334016,0.59317,0.835499,0.0739906,0.769336,0.937187,0.00182867,0.33873,0.578959,0.235469,0.30449,0.278157,0.492181,0.936539,0.14108,0.223918,0.734852,0.143194,0.421945,0.880264,0.09163,0.0914887,0.426246,0.452795,0.897335,0.186324,0.760158,0.290149,0.810555,0.426024,0.429777,0.570156,0.326972,0.236502,0.0974838,0.853244,0.261494,0.592613,0.972787,0.80925,0.411763,0.0771243,0.56004,0.85158,0.413308,0.162553,0.74847,0.704236,0.729294,0.300922,0.0934605,0.990134,0.0247109,0.631607,0.269052,0.588436,0.316153,0.36404,0.351618,0.517594,0.410677,0.935531,0.357402,0.132353,0.388972,0.589877,0.445862,0.40665,0.871091,0.465286,0.0838468,0.935751,0.313404,0.481955,0.168451,0.184511,0.257428,0.403565,0.106063,0.121973,0.303751,0.669878,0.0981718,0.869255,0.157295,0.856228,0.199801,0.611192,0.855687,0.726026,0.660316,0.355747,0.43804,0.146535,0.847334,0.188897,0.556803,0.241369,0.154013,0.1061,0.635188,0.511812,0.509086,0.837407,0.251681,0.319177,0.492782,0.163577,0.796819,0.707314,0.367584,0.321216,0.25203,0.605466,0.825989,0.812312,0.758759,0.763423,0.658018,0.0521297,0.583009,0.836801,0.360288,0.964883,0.179748,0.555863,0.661071,0.187394,0.520473,0.883432,0.523036,0.912512,0.717262,0.716803,0.32128,0.961962,0.573191,0.261433,0.150249,0.696261,0.779225,0.0708565,0.716685,0.00296915,0.808187,0.0165538,0.562292,0.426331,0.619517,0.823711,0.184667,0.311276,0.268081,0.140005,0.522956,0.68248,0.199112,0.607369,0.869255,0.21993,0.48511,0.225114,0.695839,0.199199,0.425599,0.542032,0.932991,0.571396,0.218712,0.650006,0.860427,0.0869269,0.29597,0.123554,0.239821,0.0737897,0.920273,0.26783,0.407404,0.0855755,0.35328,0.0145385,0.941841,0.645858,0.742912,0.590568,0.458203,0.160761,0.379527,0.512292,0.239372,0.863501,0.215897,0.954367,0.757465,0.522864,0.63323,0.603513,0.675757,0.366847,0.943503,0.31562,0.906625,0.784944,0.23485,0.643646,0.984328,0.29088,0.601913,0.979858,0.376017,0.862403,0.272494,0.00644892,0.956105,0.674442,0.434194,0.461304,0.602447,0.184388,0.251191,0.417117,0.0315852,0.978772,0.168332,0.228093,0.214109,0.280092,0.532867,0.461463,0.791543,0.804636,0.417017,0.622877,0.941899,0.969346,0.543114,0.439539,0.74547,0.571362,0.647323,0.0196107,0.322686,0.666209,0.692823,0.460847,0.454596,0.21083,0.715256,0.730658,0.787206,0.54415,0.0697549,0.646222,0.956451,0.300923,0.0720723,0.700795,0.844145,0.492877,0.0988696,0.119083,0.585007,0.756,0.683166,0.0308706,0.815697,0.165704,0.884845,0.206445,0.0114237,0.962737,0.834777,0.714546,0.670541,0.520593,0.306355,0.92527,0.262147,0.33467,0.376486,0.130073,0.316706,0.578906,0.207333,0.119177,0.787657,0.351581,0.587343,0.994927,0.965325,0.413831,0.491512,0.719325,0.31262,0.886928,0.963562,0.722658,0.0543989,0.082762,0.289291,0.529869,0.579577,0.881419,0.882383,0.550217,0.93253,0.908059,0.184075,0.123922,0.532464,0.550629,0.178313,0.163584,0.203016,0.00176501,0.655273,0.781561,0.314202,0.614809,0.723587,0.600635,0.738489,0.310988,0.500045,0.256941,0.336898,0.530132,0.36615,0.632708,0.130437,0.9197,0.914911,0.544282,0.362163,0.621987,0.972109,0.723448,0.00436884,0.60137,0.304547,0.619371,0.508771,0.611842,0.487457,0.167247,0.104689,0.880388,0.98036,0.694398,0.0878177,0.637589,0.0759323,0.133698,0.636903,0.486711,0.813921,0.684563,0.0777328,0.404407,0.245986,0.478567,0.134848,0.309771,0.984111,0.281488,0.272745,0.784697,0.0990065,0.926173,0.311772,0.00882852,0.906062,0.072235,0.831081,0.911438,0.241913,0.505739,0.0860066,0.451172,0.369811,0.694811,0.833706,0.569279,0.951874,0.630921,0.985127,0.335963,0.0155549,0.590538,0.54314,0.0245235,0.0946124,0.765251,0.31105,0.471596,0.541694,0.0214427,0.499399,0.325369,0.58861,0.949705,0.329934,0.28508,0.639103,0.276347,0.445335,0.279404,0.919458,0.921507,0.438392,0.305265,0.27702,0.727268,0.237507,0.0414197,0.61374,0.77772,0.697092,0.683964,0.713383,0.19025,0.576681,0.105351,0.344264,0.849593,0.430085,0.713109,0.98756,0.81481,0.44461,0.226026,0.182777,0.861849,0.973246,0.187623,0.792286,0.595662,0.390957,0.377671,0.629735,0.256147,0.312131,0.533618,0.0435335,0.565277,0.115957,0.197015,0.45437,0.211864,0.368983,0.0745706,0.38096,0.927015,0.335865,0.0565387,0.670278,0.0665667,0.170202,0.7243,0.031343,0.367485,0.595387,0.348105,0.830356,0.168027,0.0618624,0.484296,0.477333,0.486063,0.859923,0.252817,0.924782,0.49912,0.538991,0.473423,0.480682,0.843831,0.0338565,0.28618,0.581972,0.178897,0.258989,0.894436,0.529031,0.180617,0.238115,0.128089,0.0661317,0.306684,0.908717,0.144255,0.942908,0.411472,0.451438,0.67718,0.366189,0.256993,0.779993,0.146646,0.845693,0.536085,0.305172,0.0520579,0.859679,0.439904,0.051169,0.0694852,0.602933,0.643142,0.520256,0.300259,0.0602115,0.94893,0.93189,0.916298,0.986981,0.208019,0.476487,0.599574,0.250061,0.597201,0.520453,0.793047,0.507533,0.521213,0.315121,0.87729,0.769858,0.609343,0.0377617,0.572329,0.991589,0.945327,0.764513,0.8524,0.147749,0.176422,0.467379,0.597339,0.753573,0.831885,0.963205,0.411636,0.346011,0.377765,0.80967,0.661216,0.703498,0.731673,0.133089,0.230969,0.417472,0.959244,0.615613,0.112693,0.904663,0.753862,0.52346,0.950251,0.592922,0.779573,0.762048,0.849877,0.83334,0.0602589,0.286109,0.951297,0.0600856,0.159901,0.717386,0.322946,0.0347901,0.728773,0.18921,0.232074,0.779665,0.908875,0.80313,0.253936,0.0652962,0.00534838,0.147253,0.938171,0.225847,0.537886,0.0922357,0.386625,0.753316,0.375674,0.695738,0.188421,0.562451,0.900829,0.42012,0.713648,0.0697917,0.534343,0.260306,0.619634,0.29232,0.987412,0.933498,0.224361,0.726758,0.540835,0.206228,0.0867251,0.174769,0.114419,0.546689,0.806774,0.983549,0.843099,0.793549,0.995987,0.375927,0.813331,0.895474,0.448754,0.245615,0.87295,0.623807,0.0837914,0.765882,0.145647,0.93826,0.741927,0.161345,0.218218,0.248507,0.146203,0.664067,0.362675,0.107442,0.237079,0.927934,0.61339,0.265961,0.151019,0.632711,0.785809,0.944093,0.836155,0.810551,0.993531,0.705065,0.220926,0.753232,0.900365,0.584309,0.859822,0.778187,0.846161,0.766903,0.280299,0.688858,0.646229,0.688977,0.171595,0.178757,0.958837,0.500813,0.143896,0.392473,0.214851,0.055468,0.142274,0.360546,0.171556,0.00991851,0.206644,0.212732,0.144047,0.831698,0.84297,0.464118,0.936036,0.380397,0.0329248,0.933891,0.859975,0.293767,0.706264,0.923231,0.441168,0.438512,0.513492,0.131002,0.672856,0.390719,0.858245,0.113811,0.264822,0.962339,0.406057,0.589157,0.979734,0.341128,0.459988,0.0198045,0.658531,0.871302,0.603384,0.0771718,0.67041,0.00991231,0.777786,0.496116,0.881736,0.132723,0.162988,0.247878,0.76766,0.890926,0.923707,0.90306,0.764753,0.25919,0.499415,0.365264,0.543648,0.820789,0.699202,0.00971413,0.266852,0.393353,0.512943,0.0816859,0.809575,0.938022,0.192937,0.0432625,0.204981,0.0572687,0.0876307,0.00546342,0.50603,0.157907,0.190738,0.788196,0.496955,0.0835102,0.220246,0.359708,0.134793,0.702249,0.43682,0.552104,0.204942,0.322324,0.520282,0.690161,0.112932,0.194886,0.733849,0.505642,0.643723,0.909079,0.719374,0.39994,0.508567,0.895138,0.523452,0.548737,0.146486,0.939289,0.597945,0.667939,0.760249,0.0378146,0.754683,0.0634515,0.18524,0.440273,0.678266,0.29752,0.123729,0.190201,0.659279,0.698689,0.95025,0.806821,0.836536,0.446688,0.218889,0.795124,0.35354,0.273593,0.172927,0.142956,0.248959,0.377768,0.792885,0.807693,0.831295,0.827055,0.5462,0.751576,0.772858,0.529197,0.638195,0.840082,0.321502,0.929963,0.0464326,0.356336,0.591864,0.46608,0.345454,0.0889682,0.424448,0.394503,0.963164,0.237924,0.592499,0.927777,0.890774,0.24961,0.517798,0.643368,0.799257,0.497571,0.455593,0.275451,0.89517,0.205428,0.187952,0.859522,0.0344179,0.743467,0.0313894,0.0845286,0.482859,0.756793,0.0596344,0.674908,0.696026,0.122084,0.244675,0.139466,0.456401,0.293863,0.122451,0.957224,0.256603,0.166261,0.0389498,0.000533819,0.879194,0.301306,0.6345,0.0983632,0.32076,0.336953,0.272612,0.266436,0.195997,0.938969,0.943408,0.496749,0.130233,0.103746,0.281956,0.885117,0.585357,0.819912,0.242681,0.0993084,0.316761,0.241594,0.984792,0.651559,|0.312844,0.683501,0.695685,0.792142,0.848562,0.135077,0.502074,0.939723,0.243427,0.343732,0.603103,0.673141,0.122238,0.500767,0.624533,0.190666,0.072136,0.0380313,0.33357,0.103838,0.332717,0.99974,0.548366,0.269197,0.980568,0.419224,0.740769,0.858538,0.222291,0.836376,0.69222,0.102992,0.308752,0.117205,0.0367516,0.289417,0.535522,0.0301248,0.17198,0.800368,0.239623,0.582475,0.398233,0.853593,0.616105,0.363681,0.00855953,0.736273,0.401505,0.996646,0.806889,0.00905645,0.454641,0.341536,0.881976,0.812099,0.0531942,0.643428,0.827266,0.730916,0.944241,0.509309,0.818746,0.341877,0.15835,0.699591,0.143973,0.62129,0.771139,0.578143,0.171381,0.473486,0.132167,0.199734,0.706778,0.112662,0.469642,0.153847,0.901243,0.800632,0.700656,0.44199,0.285247,0.123947,0.639157,0.76998,0.159774,0.918561,0.986563,0.261085,0.62619,0.613159,0.50101,0.500948,0.862766,0.493234,0.800051,0.0846074,0.483002,0.456521,0.640954,0.587196,0.738394,0.481831,0.830361,0.195809,0.660854,0.31724,0.322666,0.660404,0.0176128,0.925659,0.429078,0.723514,0.921411,0.95592,0.99004,0.926373,0.827012,0.266199,0.273213,0.243048,0.663936,0.395947,0.321738,0.888414,0.0677006,0.115497,0.914991,0.682726,0.911154,0.47824,0.586469,0.519075,0.802174,0.773933,0.758007,0.272621,0.948923,0.267871,0.921362,0.655634,0.304283,0.885074,0.489704,0.812894,0.816997,0.525044,0.625847,0.670734,0.201728,0.84543,0.768547,0.627563,0.964436,0.0628245,0.308903,0.117067,0.499641,0.460942,0.108943,0.906037,0.433957,0.0951276,0.300561,0.79884,0.186181,0.018526,0.327277,0.249089,0.49321,0.871813,0.459946,0.61363,0.32018,0.700091,0.587003,0.0445213,0.361322,0.169608,0.371119,0.0911406,0.619429,0.408557,0.108278,0.614713,0.573854,0.35414,0.98735,0.72703,0.456857,0.656657,0.833764,0.233419,0.26266,0.628122,0.26433,0.857716,0.84815,0.996897,0.383466,0.293172,0.171076,0.39703,0.893922,0.86992,0.700035,0.853581,0.56877,0.181415,0.00864917,0.257902,0.673395,0.565641,0.85073,0.881606,0.62414,0.523343,0.734567,0.837824,0.810161,0.834884,0.498388,0.213846,0.492032,0.577417,0.0248141,0.804195,0.309737,0.92272,0.785149,0.902328,0.447758,0.445057,0.676362,0.385045,0.373743,0.274875,0.857286,0.942994,0.263514,0.748004,0.89069,0.107508,0.528095,0.0929405,0.113433,0.185298,0.797052,0.667479,0.718072,0.0679747,0.294661,0.281295,0.86061,0.13037,0.770188,0.725625,0.88445,0.274867,0.398608,0.162352,0.00724286,0.850384,0.302402,0.846102,0.746862,0.353454,0.380044,0.33632,0.602893,0.391063,0.636054,0.251553,0.302014,0.064795,0.349057,0.0652331,0.750228,0.416665,0.709825,0.203557,0.14048,0.633262,0.544764,0.967284,0.445698,0.0647582,0.999336,0.883521,0.619161,0.826417,0.758754,0.829531,0.376312,0.894352,0.777093,0.597632,0.91437,0.0924432,0.579433,0.874625,0.0495941,0.866421,0.723436,0.200474,0.237494,0.187073,0.662049,0.0828657,0.806225,0.763426,0.848598,0.0106934,0.202828,0.289168,0.929488,0.150265,0.422619,0.359246,0.543867,0.772271,0.985537,0.397855,0.249158,0.744063,0.0954339,0.797152,0.951419,0.622211,0.153228,0.452486,0.483413,0.19548,0.398805,0.976854,0.467079,0.274226,0.160111,0.781359,0.96961,0.658546,0.127953,0.49024,0.229004,0.929594,0.984891,0.348542,0.858825,0.791456,0.498149,0.568301,0.295041,0.970658,0.965006,0.771953,0.301409,0.581878,0.507374,0.249875,0.0972181,0.328821,0.622543,0.729515,0.0979936,0.866898,0.987877,0.0931664,0.760584,0.501715,0.317767,0.26124,0.792326,0.895893,0.922914,0.99237,0.614605,0.0610213,0.1789,0.812883,0.803277,0.627767,0.76944,0.310785,0.821337,0.0583438,0.405036,0.538465,0.876554,0.132016,0.498621,0.346761,0.645638,0.804081,0.996803,0.530093,0.741854,0.915036,0.413882,0.146403,0.897045,0.117776,0.343903,0.37801,0.241606,0.401924,0.58888,0.865417,0.0141678,0.694365,0.11802,0.259166,0.402647,0.960163,0.187474,0.0926918,0.610131,0.527114,0.692082,0.201694,0.303803,0.395968,0.186055,0.690411,0.913323,0.0452547,0.673508,0.476491,0.206996,0.546067,0.0642259,0.437519,0.381679,0.771797,0.16707,0.466497,0.741331,0.411648,0.523523,0.66216,0.875033,0.347055,0.487606,0.210585,0.99113,0.692871,0.957613,0.250662,0.485823,0.0357799,0.296773,0.658936,0.460262,0.5941,0.251283,0.793681,0.142565,0.489515,0.474566,0.0211844,0.0735968,0.251721,0.70505,0.976798,0.544345,0.573768,0.680605,0.900368,0.132166,0.370741,0.185728,0.499129,0.640817,0.833409,0.0486743,0.900625,0.722063,0.841463,0.269945,0.229903,0.472601,0.750297,0.0673812,0.855962,0.105973,0.520944,0.723416,0.726436,0.0703659,0.473422,0.46461,0.839049,0.0722203,0.804795,0.100913,0.236626,0.831489,0.201545,0.551441,0.178218,0.932186,0.484727,0.968305,0.139434,0.0834329,0.439501,0.72361,0.802932,0.349965,0.459895,0.220044,0.592935,0.0504146,0.791532,0.964143,0.523825,0.286099,0.812342,0.775756,0.42575,0.544535,0.849272,0.573879,0.264461,0.725769,0.281817,0.790797,0.858166,0.497754,0.345709,0.0447797,0.397676,0.29372,0.958719,0.488716,0.303044,0.179452,0.176696,0.741484,0.0333627,0.377128,0.11174,0.944675,0.565546,0.105457,0.593587,0.796962,0.911705,0.416817,0.37873,0.743732,0.516101,0.0609322,0.162211,0.0743257,0.382237,0.448837,0.153958,0.880183,0.0518081,0.372413,0.569538,0.378443,0.275761,0.851665,0.452978,0.788643,0.401995,0.351324,0.496692,0.247345,0.560314,0.42317,0.498964,0.327248,0.777653,0.0285699,0.0780599,0.299877,0.202192,0.174193,0.452713,0.994218,0.511801,0.969972,0.819192,0.770408,0.635178,0.118557,0.368922,0.171942,0.238371,0.421449,0.328485,0.154861,0.0140301,0.827007,0.63173,0.690082,0.0123975,0.560436,0.306784,0.85201,0.916045,0.717856,0.937505,0.922162,0.012026,0.70304,0.0793024,0.436219,0.135046,0.107638,0.355405,0.615175,0.871542,0.372436,0.546553,0.231674,0.413542,0.0281348,0.292995,0.198482,0.955441,0.597599,0.883272,0.457768,0.419462,0.256088,0.303851,0.679961,0.724637,0.250862,0.535418,0.64353,0.885711,0.0672326,0.0319362,0.247849,0.0222842,0.957604,0.422688,0.300165,0.736753,0.629226,0.0134258,0.356794,0.330273,0.373127,0.773266,0.437363,0.0950571,0.324087,0.17341,0.697464,0.294631,0.757115,0.578899,0.884096,0.512413,0.0294416,0.741831,0.826048,0.250094,0.742727,0.374378,0.23866,0.0259598,0.681294,0.308986,0.721667,0.930441,0.985193,0.221672,0.975406,0.198214,0.15577,0.461861,0.352593,0.255794,0.636789,0.699067,0.955116,0.167307,0.215311,0.457948,0.810277,0.188754,0.439037,0.281733,0.740662,0.622747,0.481887,0.114015,0.996751,0.506917,0.203807,0.683163,0.397964,0.27848,0.54218,0.800227,0.03929,0.989953,0.886411,0.254727,0.9412,0.136915,0.944338,0.772137,0.0539569,0.0949686,0.689819,0.697283,0.946204,0.477076,0.183328,0.0796139,0.567875,0.944233,0.0516684,0.188893,0.950023,0.146609,0.229392,0.70388,0.102766,0.41121,0.820594,0.970169,0.824313,0.269129,0.221638,0.349031,0.220389,0.166378,0.10814,0.324885,0.809905,0.369789,0.756074,0.944403,0.667708,0.694003,0.319763,0.906873,0.297116,0.523677,0.453911,0.281792,0.183302,0.130432,0.544817,0.345617,0.104034,0.325569,0.255271,0.390834,0.318266,0.0238656,0.477722,0.473469,0.986439,0.326583,0.0662125,0.655771,0.806884,0.916139,0.215389,0.670403,0.274071,0.625774,0.460885,0.419234,0.413736,0.258676,0.137894,0.876828,0.927512,0.374539,0.594331,0.82578,0.194546,0.272579,0.904261,0.494965,0.577438,0.863723,0.338429,0.0213996,0.695578,0.164342,0.121667,0.0358346,0.873731,0.788057,0.741767,0.765755,0.155061,0.127537,0.737595,0.590874,0.943587,0.466368,0.682604,0.515955,0.357116,0.0139539,0.136209,0.644927,0.405833,0.0602029,0.671595,0.654881,0.596688,0.238481,0.0693247,0.861555,0.759391,0.296456,0.987171,0.46752,0.943528,0.364702,0.220692,0.609317,0.250374,0.95076,0.457496,0.417707,0.288595,0.473603,0.608575,0.410607,0.830482,0.625106,0.782056,0.272945,0.373244,0.694953,0.611621,0.0528387,0.405085,0.240373,0.312251,0.664315,0.411672,0.22725,0.299315,0.815262,0.689649,0.237831,0.157672,0.487929,0.120531,0.277341,0.905991,0.0712501,0.0223517,0.0716363,0.31504,0.768601,0.595231,0.429985,0.215447,0.248616,0.795981,0.802418,0.953112,0.820921,0.720167,0.993004,0.101769,0.684729,0.975803,0.770971,0.749863,0.840796,0.637609,0.728323,0.702935,0.688744,0.478106,0.844673,0.404346,0.436358,0.887733,0.176981,0.42183,0.971956,0.704523,0.550083,0.197632,0.0373424,0.218183,0.479382,0.290076,0.396582,0.426039,0.272289,0.19041,0.449806,0.644971,0.962696,0.943313,0.468251,0.0757845,0.984295,0.225986,0.963859,0.848787,0.24888,0.0773671,0.227339,0.250696,0.194486,0.58702,0.81136,0.79792,0.191749,0.53033,0.902337,0.636809,0.157029,0.492396,0.623439,0.534315,0.92602,0.400065,0.760847,0.260028,0.141019,0.913435,0.253758,0.897443,0.529552,0.177223,0.171835,0.736313,0.815256,0.151151,0.546754,0.205923,0.135873,0.52851,0.0997801,0.72211,0.706234,0.134383,0.597126,0.983364,0.235379,0.486525,0.471486,0.384128,0.0869255,0.164892,0.503973,0.722377,0.427454,0.981925,0.921812,0.400925,0.737702,0.0843632,0.585232,0.358896,0.790958,0.666684,0.591962,0.315575,0.450663,0.817434,0.589897,0.46296,0.0438254,0.0523895,0.49778,0.397486,0.989406,0.719987,0.381872,0.803227,0.764973,0.532766,0.711379,0.305136,0.281453,0.624256,0.56632,0.261218,0.0680313,0.826166,0.797061,0.932154,0.520817,0.222614,0.0588635,0.661631,0.305935,|0.325427,0.321555,0.989263,0.241306,0.592527,0.923999,0.282132,0.270591,0.0221722,0.95869,0.783526,0.851527,0.186125,0.831895,0.131775,0.544192,0.465564,0.405122,0.0403402,0.329123,0.642062,0.919571,0.929177,0.0499921,0.932872,0.920057,0.799081,0.74735,0.287696,0.755871,0.130493,0.828423,0.795063,0.424482,0.998507,0.648876,0.468682,0.820542,0.389218,0.633321,0.644175,0.146284,0.716457,0.967964,0.335523,0.194656,0.0818538,0.121388,0.64163,0.812854,0.687598,0.138088,0.736387,0.0859349,0.880422,0.0248416,0.662484,0.0169863,0.951985,0.056776,0.804072,0.915136,0.0530387,0.0363877,0.325284,0.171655,0.26623,0.511561,0.685582,0.305664,0.665155,0.282271,0.591586,0.99178,0.433656,0.556704,0.302327,0.379853,0.429898,0.0527313,0.778314,0.538347,0.482829,0.708775,0.418494,0.593687,0.659568,0.715156,0.798239,0.986945,0.883972,0.676097,0.785625,0.125511,0.463396,0.749023,0.796671,0.0597451,0.348311,0.458445,0.609802,0.397476,0.611099,0.365666,0.0803868,0.484606,0.692413,0.45626,0.771704,0.229382,0.710427,0.74042,0.417559,0.612784,0.687318,0.462761,0.638258,0.315788,0.572169,0.578726,0.288094,0.104227,0.933237,0.0110141,0.361914,0.0196874,0.571858,0.330585,0.758494,0.75209,0.996933,0.777138,0.647695,0.806085,0.889975,0.145438,0.765698,0.51097,0.0215026,0.892514,0.91388,0.281343,0.863474,0.37634,0.554745,0.125721,0.716278,0.849179,0.542888,0.414099,0.0130316,0.010316,0.328312,0.995547,0.51534,0.149307,0.521146,0.28579,0.353906,0.284762,0.936038,0.371069,0.449955,0.664141,0.173428,0.798263,0.47261,0.130772,0.737812,0.727247,0.290558,0.264547,0.115547,0.15448,0.291766,0.923581,0.298806,0.56752,0.87037,0.473106,0.231597,0.479289,0.0586361,0.753303,0.470103,0.611703,0.765668,0.979856,0.625689,0.236197,0.0892498,0.0173838,0.521639,0.810572,0.875841,0.158691,0.62051,0.751813,0.185493,0.092949,0.533611,0.926428,0.801955,0.574849,0.122549,0.27143,0.744736,0.293266,0.397718,0.396961,0.56072,0.683579,0.248655,0.609818,0.417133,0.796578,0.515532,0.723119,0.477215,0.793625,0.143674,0.94303,0.770975,0.741697,0.483182,0.08933,0.470439,0.537758,0.821849,0.982533,0.099838,0.444547,0.433335,0.869978,0.0172992,0.297251,0.55259,0.474567,0.200754,0.965413,0.571806,0.764565,0.0561128,0.284932,0.0975093,0.566066,0.7194,0.510539,0.262616,0.683655,0.0587818,0.0843544,0.991178,0.859517,0.473149,0.174448,0.762959,0.627754,0.131341,0.199748,0.0237334,0.0402815,0.69568,0.807424,0.932683,0.392203,0.401275,0.49291,0.750064,0.639202,0.124142,0.1943,0.29761,0.207274,0.0776781,0.498692,0.0431612,0.0372033,0.678745,0.799619,0.637562,0.935374,0.508115,0.841639,0.516691,0.861065,0.258633,0.781293,0.138018,0.104273,0.981159,0.176929,0.546914,0.939663,0.635214,0.871335,0.0105022,0.0124611,0.655472,0.523921,0.961238,0.291824,0.479196,0.181166,0.352011,0.740224,0.399285,0.282062,0.319477,0.364502,0.913199,0.319813,0.10559,0.56787,0.36895,0.535235,0.490428,0.00279582,0.552741,0.678169,0.738838,0.473281,0.852476,0.567242,0.390941,0.293562,0.588943,0.337737,0.806269,0.193066,0.27267,0.0578948,0.326635,0.526735,0.849989,0.16035,0.441184,0.442404,0.661517,0.487827,0.894878,0.481699,0.104905,0.705068,0.140877,0.221728,0.721348,0.6268,0.288621,0.205752,0.725559,0.158472,0.538793,0.629242,0.698351,0.165449,0.37813,0.932877,0.0446197,0.80012,0.495841,0.688295,0.622887,0.765783,0.584211,0.119519,0.946236,0.620718,0.332244,0.516469,0.972581,0.645574,0.155285,0.0880963,0.408266,0.584738,0.818697,0.837375,0.858938,0.626183,0.348085,0.0205947,0.539319,0.993245,0.659922,0.0506118,0.480128,0.574467,0.567633,0.387384,0.377332,0.587897,0.0276736,0.261375,0.0774878,0.584144,0.0889521,0.847337,0.86577,0.76595,0.528286,0.405827,0.83004,0.0701382,0.0512983,0.684074,0.912695,0.568691,0.132658,0.0554194,0.363935,0.86609,0.909849,0.147787,0.21213,0.554897,0.375473,0.584317,0.404518,0.574867,0.0543429,0.499768,0.189585,0.189966,0.687255,0.727094,0.350976,0.889439,0.6575,0.918306,0.369913,0.0556676,0.387893,0.635345,0.551173,0.410601,0.114432,0.409738,0.790299,0.157013,0.317644,0.810787,0.0327268,0.509223,0.47762,0.353113,0.453324,0.921955,0.45714,0.428127,0.683384,0.693774,0.299808,0.231079,0.29765,0.367304,0.233339,0.522182,0.541754,0.692957,0.564158,0.342981,0.492779,0.582771,0.784826,0.448163,0.905169,0.815704,0.393723,0.638652,0.251628,0.174781,0.207928,0.697518,0.688223,0.348731,0.458056,0.316364,0.566423,0.610374,0.412589,0.937682,0.330709,0.409928,0.177538,0.016353,0.780817,0.00491142,0.72683,0.422265,0.986988,0.658482,0.499204,0.817566,0.430036,0.415415,0.67407,0.148833,0.0346286,0.742666,0.962354,0.421003,0.164865,0.13283,0.525808,0.126418,0.0385543,0.115788,0.831152,0.29055,0.31336,0.851458,0.585356,0.0960531,0.448696,0.607675,0.196285,0.0553761,0.757403,0.00750601,0.247872,0.373734,0.920495,0.442252,0.163402,0.0153129,0.190588,0.553473,0.726977,0.958161,0.548471,0.385193,0.979809,0.389356,0.258465,0.672933,0.0577699,0.834551,0.158576,0.00287926,0.269121,0.089498,0.168172,0.190833,0.35186,0.631906,0.341302,0.263041,0.851951,0.822152,0.921886,0.0552802,0.821018,0.00704014,0.822429,0.54588,0.4315,0.547473,0.585302,0.866172,0.864521,0.675188,0.355791,0.15715,0.947943,0.598466,0.592853,0.698885,0.311664,0.538488,0.56193,0.537344,0.298275,0.351443,0.346182,0.0206779,0.598329,0.790255,0.921277,0.00139666,0.264147,0.449696,0.803127,0.484321,0.70241,0.536822,0.98011,0.492619,0.1448,0.255114,0.0424719,0.482921,0.440149,0.821241,0.556819,0.774996,0.29732,0.0106589,0.200468,0.64981,0.27971,0.00916964,0.815199,0.906412,0.668989,0.626713,0.485859,0.914435,0.0339897,0.684575,0.0265386,0.118252,0.263583,0.152507,0.971044,0.194024,0.357678,0.229682,0.614192,0.339372,0.621239,0.782598,0.58492,0.0629709,0.529523,0.700641,0.770427,0.720118,0.66317,0.409441,0.838987,0.225693,0.80297,0.0847262,0.405242,0.958162,0.833562,0.880185,0.597154,0.489481,0.446603,0.902618,0.304577,0.942354,0.443296,0.173892,0.824181,0.06387,0.0852449,0.465437,0.378551,0.969747,0.493037,0.209882,0.402732,0.0971473,0.463003,0.721874,0.877472,0.574837,0.45244,0.729831,0.00122678,0.841838,0.150919,0.773061,0.503047,0.0374894,0.241997,0.75591,0.459491,0.915098,0.673342,0.25183,0.185816,0.747794,0.00673813,0.495372,0.453196,0.170667,0.524035,0.449211,0.00241488,0.505714,0.324214,0.997758,0.347595,0.410226,0.718301,0.927211,0.0699555,0.694624,0.822969,0.538373,0.704483,0.690129,0.531672,0.449234,0.286261,0.865767,0.397857,0.521713,0.87726,0.86083,0.0567918,0.668248,0.738314,0.469214,0.0736454,0.847255,0.73918,0.886086,0.824974,0.0641325,0.319604,0.505615,0.973065,0.743461,0.571698,0.798126,0.667143,0.872703,0.725588,0.9183,0.0909814,0.130964,0.722201,0.0113558,0.734037,0.345928,0.944455,0.129078,0.4285,0.367458,0.299626,0.489548,0.647729,0.580672,0.576525,0.209523,0.357526,0.118417,0.206791,0.140157,0.157537,0.193215,0.837725,0.927519,0.727827,0.162781,0.325807,0.980223,0.53471,0.417654,0.910878,0.662283,0.758141,0.0252259,0.077927,0.644811,0.619049,0.607679,0.843571,0.428281,0.312427,0.379254,0.010113,0.907283,0.176625,0.678893,0.983815,0.692195,0.695508,0.676535,0.318389,0.512465,0.0248975,0.466284,0.775661,0.466683,0.960358,0.344778,0.772768,0.142842,0.253212,0.0868108,0.288104,0.875217,0.995378,0.602801,0.298472,0.370523,0.395595,0.052716,0.498749,0.439011,0.294658,0.715766,0.98582,0.421045,0.644713,0.725494,0.96113,0.931175,0.110786,0.392759,0.834524,0.184472,0.110819,0.915683,0.365909,0.721864,0.205921,0.679996,0.745445,0.113139,0.869561,0.891072,0.80366,0.798927,0.27766,0.0264606,0.697478,0.475633,0.387604,0.546471,0.482937,0.804306,0.33543,0.723148,0.625881,0.53932,0.192688,0.746676,0.648244,0.970166,0.635247,0.437179,0.165088,0.611858,0.34807,0.604606,0.0906351,0.153343,0.630673,0.516503,0.191479,0.421783,0.47992,0.0639371,0.623869,0.491054,0.0289097,0.440166,0.0186593,0.370332,0.156243,0.677986,0.974951,0.597972,0.544856,0.990188,0.361885,0.53073,0.574153,0.935768,0.247866,0.273386,0.230286,0.359135,0.406086,0.355148,0.602658,0.0997165,0.629046,0.450395,0.273341,0.337784,0.0460061,0.148165,0.0825872,0.940048,0.451126,0.857,0.516212,0.260633,0.221019,0.221392,0.833706,0.0944059,0.638597,0.940976,0.791122,0.212675,0.372319,0.548147,0.239204,0.117008,0.507062,0.349931,0.110744,0.609277,0.890207,0.495178,0.858605,0.396385,0.795141,0.0655569,0.194893,0.134924,0.447285,0.310352,0.350046,0.0880879,0.317019,0.549888,0.681119,0.389502,0.539641,0.292485,0.733659,0.515318,0.811582,0.766301,0.383168,0.775749,0.709017,0.946489,0.1548,0.751083,0.996957,0.270445,0.892217,0.0585389,0.334633,0.036062,0.964447,0.912495,0.954835,0.711817,0.0922982,0.226839,0.705961,0.362494,0.293404,0.777432,0.749745,0.834117,0.650737,0.179558,0.308708,0.00200886,0.64195,0.166196,0.805849,0.241652,0.376991,0.028477,0.298635,0.650369,0.0628947,0.502652,0.788137,0.36113,0.225715,0.0440947,0.574635,0.106519,0.103656,0.288209,0.550879,0.411718,0.76357,0.36309,0.846657,0.940865,0.854398,0.819802,0.116763,0.941834,0.398092,0.962988,0.114198,0.912502,0.796163,0.653521,0.681001,0.835687,0.678479,0.745374,0.277372,0.413386,0.29384,0.936556,0.771029,0.832091,0.482217,0.544552,0.805007,0.655259,|0.867052,0.363877,0.682551,0.0312815,0.751457,0.130516,0.0278092,0.0534404,0.34703,0.0797479,0.832325,0.461247,0.284341,0.202109,0.191415,0.403238,0.990158,0.0855281,0.327193,0.319326,0.461124,0.624613,0.942495,0.439862,0.864595,0.434507,0.471804,0.817998,0.399464,0.501326,0.917051,0.942735,0.4987,0.605593,0.186904,0.212108,0.524159,0.111293,0.602083,0.280745,0.746829,0.381996,0.57928,0.1559,0.370425,0.56536,0.29265,0.913024,0.21166,0.360966,0.105998,0.868189,0.395297,0.673029,0.391994,0.192378,0.290895,0.438195,0.413087,0.83481,0.752619,0.122863,0.636073,0.316387,0.531134,0.934564,0.670985,0.718726,0.71146,0.9463,0.560913,0.936,0.976706,0.731331,0.707659,0.825431,0.821779,0.825548,0.373601,0.586251,0.309087,0.862467,0.93219,0.035819,0.623866,0.964055,0.962136,0.0151882,0.867897,0.577603,0.31203,0.871089,0.0996523,0.270181,0.361894,0.798565,0.837484,0.520982,0.971021,0.889452,0.226075,0.763453,0.831258,0.195437,0.52835,0.173406,0.914999,0.0801587,0.00543344,0.93107,0.0446782,0.417041,0.305035,0.480972,0.364744,0.879905,0.354564,0.274501,0.987893,0.36618,0.117032,0.98682,0.374772,0.645175,0.297947,0.429945,0.893674,0.0729984,0.383204,0.817147,0.232769,0.123312,0.816953,0.581281,0.623344,0.378231,0.510605,0.796797,0.454186,0.717617,0.58227,0.746179,0.895742,0.155257,0.651948,0.014939,0.786757,0.479017,0.995518,0.359556,0.693637,0.478642,0.70303,0.0743184,0.01042,0.243727,0.79301,0.189159,0.570237,0.289511,0.759163,0.95994,0.789483,0.705656,0.292972,0.414234,0.325122,0.937194,0.11294,0.207394,0.555029,0.684728,0.809239,0.81913,0.993005,0.369606,0.83471,0.385372,0.727325,0.0818583,0.45716,0.624528,0.289112,0.59676,0.0517011,0.821236,0.862881,0.801297,0.221433,0.261027,0.932573,0.213013,0.459552,0.639644,0.700963,0.680511,0.0235393,0.0945136,0.0786037,0.174048,0.236949,0.970199,0.809197,0.848219,0.678952,0.385631,0.699776,0.809847,0.0514835,0.515419,0.677348,0.166824,0.378064,0.0184782,0.953841,0.0320281,0.715778,0.638187,0.558248,0.699705,0.389651,0.945928,0.450377,0.211121,0.87422,0.129966,0.137505,0.664212,0.357128,0.693951,0.533513,0.816698,0.170446,0.476083,0.00813997,0.823139,0.725121,0.864166,0.529752,0.229109,0.0696462,0.776666,0.390311,0.316196,0.439821,0.057375,0.442795,0.162943,0.349103,0.0870653,0.313213,0.1983,0.298916,0.785337,0.86384,0.707217,0.133069,0.473204,0.0555149,0.198435,0.637794,0.924956,0.892608,0.231211,0.174957,0.910141,0.0099225,0.260166,0.0868856,0.495358,0.713373,0.859832,0.73273,0.808759,0.783331,0.223629,0.963246,0.866385,0.889064,0.571827,0.238572,0.147429,0.0262097,0.0332791,0.151668,0.767518,0.299493,0.231877,0.324329,0.907682,0.569754,0.499376,0.328218,0.963651,0.481818,0.744306,0.920901,0.537257,0.035611,0.778203,0.620378,0.994333,0.163383,0.900014,0.578888,0.679232,0.382596,0.775447,0.482135,0.569265,0.591642,0.406485,0.276839,0.479587,0.0799889,0.668481,0.945696,0.074535,0.96627,0.478095,0.655168,0.16872,0.334281,0.205142,0.321672,0.0632367,0.59427,0.0168701,0.877521,0.330254,0.194278,0.659915,0.896552,0.0764909,0.586541,0.699052,0.0538155,0.367798,0.867701,0.114913,0.431421,0.315602,0.509932,0.763006,0.492669,0.483342,0.10552,0.803213,0.957224,0.306989,0.0619001,0.969772,0.822984,0.369855,0.679557,0.00206262,0.596234,0.338623,0.0974309,0.668912,0.488803,0.209,0.794979,0.401119,0.600882,0.895569,0.337126,0.503313,0.894766,0.508656,0.109928,0.578883,0.912948,0.614681,0.978602,0.619495,0.776358,0.746855,0.722804,0.172694,0.317128,0.302238,0.823957,0.901237,0.800713,0.7694,0.217309,0.412817,0.27835,0.0840345,0.141421,0.686896,0.753879,0.0197935,0.0116574,0.268414,0.720533,0.0608172,0.791769,0.893148,0.588448,0.953714,0.168709,0.824807,0.127453,0.671524,0.409518,0.38128,0.708589,0.431256,0.751076,0.955659,0.0316834,0.771511,0.958796,0.482513,0.943256,0.704397,0.656518,0.855921,0.815901,0.339725,0.93399,0.996051,0.373708,0.123931,0.710953,0.263193,0.560336,0.610463,0.709296,0.501515,0.780666,0.583418,0.716178,0.301185,0.910758,0.35991,0.525909,0.190732,0.351793,0.0347436,0.39181,0.652117,0.695527,0.0200332,0.670762,0.486567,0.00929868,0.399146,0.86948,0.721928,0.955608,0.148203,0.727997,0.642572,0.360417,0.77855,0.348364,0.562628,0.700721,0.0377094,0.609035,0.285965,0.524825,0.103531,0.242416,0.727503,0.794239,0.452314,0.901216,0.0983291,0.0290526,0.8918,0.463185,0.176454,0.724822,0.175258,0.130944,0.0813349,0.511049,0.301609,0.696706,0.514906,0.0795084,0.204151,0.352802,0.372711,0.581423,0.8361,0.897703,0.458773,0.274508,0.0443987,0.828019,0.467575,0.287037,0.359482,0.630321,0.190084,0.181966,0.541312,0.975653,0.599416,0.524473,0.0880709,0.669405,0.0222457,0.728326,0.691925,0.303452,0.16144,0.476388,0.606596,0.559985,0.537482,0.301603,0.140037,0.205404,0.231481,0.440227,0.312298,0.591226,0.790316,0.647044,0.661765,0.694864,0.228983,0.248565,0.453048,0.328552,0.420957,0.911945,0.467778,0.545625,0.841514,0.0663143,0.964677,0.0994436,0.0275873,0.669679,0.865088,0.863696,0.782371,0.90911,0.2922,0.472362,0.490207,0.159183,0.0723071,0.463196,0.970062,0.818715,0.169034,0.524601,0.404102,0.471054,0.125561,0.83877,0.0230522,0.592161,0.98844,0.93732,0.629967,0.978912,0.789024,0.714427,0.0560937,0.204072,0.731115,0.354081,0.992627,0.747006,0.594805,0.761928,0.165174,0.890487,0.416749,0.134246,0.511974,0.232764,0.302614,0.988865,0.940827,0.108223,0.54973,0.970622,0.923793,0.876032,0.00972307,0.457779,0.118569,0.591738,0.373673,0.415605,0.0159891,0.133781,0.191161,0.700432,0.552897,0.579082,0.873331,0.831289,0.478514,0.402584,0.70148,0.315485,0.973608,0.572101,0.696958,0.592735,0.192768,0.0665768,0.539197,0.379595,0.773114,0.137438,0.661575,0.754434,0.291025,0.941554,0.361377,0.720174,0.693092,0.72419,0.186841,0.59028,0.605046,0.154049,0.216613,0.582965,0.884849,0.756892,0.220565,0.266997,0.677829,0.402169,0.529904,0.158933,0.00873649,0.305566,0.429552,0.408586,0.693749,0.317184,0.7198,0.0957379,0.351485,0.272943,0.801367,0.319637,0.187992,0.828273,0.896842,0.997482,0.328389,0.574929,0.477033,0.470542,0.665885,0.856105,0.64585,0.641631,0.462548,0.763885,0.288393,0.565331,0.175752,0.622869,0.684409,0.642565,0.824621,0.0925003,0.0626119,0.818539,0.48835,0.529223,0.0159817,0.748863,0.2682,0.0245445,0.0462515,0.507133,0.847743,0.13115,0.878873,0.565286,0.216887,0.206781,0.0337677,0.979338,0.837625,0.076911,0.441553,0.963719,0.695728,0.382862,0.742453,0.750562,0.12125,0.203162,0.408082,0.738661,0.139691,0.330897,0.123432,0.00269294,0.0863825,0.809913,0.994806,0.631668,0.0218886,0.148953,0.0506534,0.59323,0.266443,0.64187,0.988516,0.443123,0.973238,0.900762,0.686544,0.725091,0.51571,0.280675,0.221995,0.47184,0.214567,0.845546,0.647113,0.848742,0.916617,0.786642,0.633595,0.256954,0.37559,0.165994,0.51256,0.0229527,0.530142,0.953289,0.562853,0.500186,0.81861,0.221356,0.164423,0.00103706,0.308923,0.316874,0.0625057,0.428773,0.467536,0.627787,0.429701,0.776213,0.207642,0.392299,0.45242,0.0979227,0.735138,0.902492,0.0710834,0.817762,0.944232,0.711161,0.389514,0.386035,0.367325,0.0902446,0.194108,0.848301,0.36295,0.245198,0.134989,0.70576,0.30085,0.794632,0.0808284,0.41156,0.553655,0.358754,0.381248,0.785013,0.760416,0.408614,0.989607,0.448282,0.103922,0.497346,0.536808,0.891547,0.484609,0.40651,0.00647879,0.798753,0.131583,0.259336,0.541965,0.853995,0.394219,0.740617,0.657726,0.788946,0.825904,0.860186,0.644073,0.39396,0.0297809,0.603388,0.97875,0.335158,0.67,0.836582,0.159293,0.151941,0.00551766,0.318463,0.162633,0.77763,0.46332,0.627058,0.929713,0.0944072,0.425111,0.771039,0.717524,0.467667,0.561084,0.0406005,0.912828,0.0972757,0.775096,0.59054,0.45517,0.271089,0.256243,0.515346,0.241275,0.825468,0.616971,0.563586,0.466709,0.202531,0.317452,0.388586,0.688363,0.719537,0.159134,0.070474,0.901921,0.747753,0.173857,0.271114,0.847819,0.00941366,0.474535,0.110411,0.303394,0.0756642,0.666758,0.440317,0.179009,0.472079,0.510781,0.192164,0.559661,0.753735,0.389807,0.937911,0.256037,0.242777,0.455736,0.2109,0.97032,0.791907,0.685091,0.317336,0.000771999,0.192419,0.340409,0.631925,0.659081,0.0829671,0.947002,0.370351,0.883632,0.928304,0.944841,0.221245,0.333391,0.606786,0.466853,0.484576,0.741978,0.834506,0.519511,0.0106361,0.96818,0.28413,0.137857,0.886697,0.84692,0.0430695,0.0174854,0.0511308,0.576825,0.764753,0.920605,0.914892,0.940436,0.581044,0.537994,0.859029,0.981276,0.116934,0.750448,0.202663,0.00493562,0.42416,0.985305,0.855973,0.0111268,0.70228,0.698388,0.867485,0.368051,0.468131,0.630274,0.602286,0.192367,0.532486,0.166555,0.756323,0.969326,0.72304,0.488495,0.824013,0.822345,0.902102,0.521321,0.59834,0.769909,0.274008,0.279003,0.439442,0.0134673,0.153535,0.0794519,0.832974,0.315326,0.527637,0.925272,0.30183,0.446008,0.0912167,0.50468,0.592744,0.182741,0.366711,0.852003,0.946683,0.746678,0.761858,0.567917,0.406279,0.203299,0.700044,0.124961,0.723577,0.564213,0.539212,0.565033,0.811361,0.785967,0.330472,0.560389,0.000206113,0.969999,0.821038,0.503933,0.317869,0.983818,0.889963,0.912978,0.735246,0.317257,0.172963,0.0470314,0.0585887,0.966817,0.0455427,0.721128,0.501739,0.657468,0.629649,0.722958,0.488639,0.471676,0.615296,0.225777,|0.029102,0.957381,0.17279,0.244386,0.956981,0.994947,0.871819,0.897759,0.56353,0.801327,0.131537,0.604084,0.693438,0.563437,0.830394,0.667809,0.810548,0.436765,0.689463,0.492949,0.58328,0.995385,0.216778,0.662074,0.661169,0.707542,0.546077,0.661056,0.42361,0.747979,0.876356,0.189459,0.301416,0.880687,0.8974,0.181125,0.950989,0.921655,0.0358448,0.108235,0.1486,0.171941,0.32757,0.331611,0.96888,0.0142608,0.696931,0.880996,0.831353,0.12737,0.783134,0.358704,0.284178,0.689071,0.70719,0.906768,0.221563,0.0922415,0.687281,0.0946742,0.432085,0.140274,0.48126,0.531537,0.51496,0.202932,0.0308018,0.593272,0.183978,0.364222,0.933498,0.147703,0.870633,0.206877,0.449015,0.603801,0.0974541,0.925945,0.602525,0.335352,0.296644,0.567583,0.983257,0.712979,0.835525,0.586637,0.464016,0.971592,0.903984,0.918131,0.119096,0.468846,0.43143,0.277482,0.575295,0.748871,0.0165712,0.566701,0.766932,0.936603,0.68185,0.803021,0.989064,0.00396603,0.189682,0.456498,0.300338,0.217259,0.446366,0.860286,0.988578,0.863451,0.856644,0.923027,0.64973,0.117181,0.241984,0.677557,0.622533,0.904588,0.587863,0.851391,0.158992,0.0257671,0.151269,0.511076,0.715304,0.751217,0.291231,0.326607,0.915087,0.923771,0.185439,0.743649,0.0746509,0.000407398,0.668539,0.571952,0.194013,0.467128,0.588659,0.972962,0.978521,0.449908,0.865812,0.295264,0.205102,0.235476,0.139178,0.61894,0.181226,0.495347,0.974769,0.743612,0.559212,0.951437,0.625441,0.959998,0.169438,0.574674,0.230041,0.129672,0.149887,0.110746,0.863011,0.151814,0.762423,0.949372,0.837916,0.384621,0.650379,0.0808169,0.596887,0.495248,0.344982,0.802698,0.665002,0.0566451,0.318795,0.912136,0.88595,0.436763,0.307109,0.947306,0.462178,0.287291,0.972183,0.960021,0.70026,0.855127,0.623019,0.936482,0.257051,0.948845,0.587047,0.187997,0.647437,0.357286,0.743936,0.694186,0.830717,0.741404,0.304328,0.114558,0.232633,0.71472,0.229949,0.222476,0.784096,0.737133,0.633207,0.209945,0.559687,0.779514,0.527283,0.417021,0.943244,0.0558695,0.74606,0.338645,0.178167,0.833059,0.602292,0.845341,0.678807,0.879107,0.274721,0.858114,0.815874,0.476668,0.929398,0.00772494,0.077036,0.855371,0.865359,0.879158,0.819348,0.348616,0.080874,0.0290139,0.503215,0.503663,0.530557,0.474279,0.0402116,0.530973,0.463269,0.626066,0.90039,0.0938767,0.91757,0.496277,0.411723,0.575138,0.378191,0.154245,0.482438,0.329378,0.435975,0.19498,0.115716,0.396276,0.915485,0.528435,0.891626,0.158272,0.328454,0.183324,0.826966,0.833125,0.257836,0.444579,0.731225,0.672556,0.645333,0.635832,0.849249,0.0418379,0.963489,0.649334,0.0546719,0.0457984,0.640463,0.256985,0.239899,0.782332,0.469873,0.423411,0.179182,0.0445753,0.957202,0.959826,0.852946,0.44768,0.699984,0.838818,0.14561,0.736978,0.869101,0.605994,0.684655,0.219288,0.377186,0.600726,0.106692,0.645141,0.0846978,0.879796,0.351088,0.385365,0.833569,0.01639,0.365448,0.638899,0.103591,0.280243,0.212203,0.116879,0.339381,0.992193,0.0800436,0.593917,0.475917,0.210094,0.768905,0.965132,0.73399,0.918427,0.928839,0.424495,0.513323,0.619422,0.934371,0.575596,0.695825,0.0567908,0.903781,0.820716,0.817881,0.649058,0.860678,0.0610021,0.858321,0.00132167,0.209379,0.4596,0.37462,0.768649,0.0420992,0.266465,0.648098,0.267166,0.413285,0.191438,0.52587,0.463438,0.668597,0.10067,0.0545575,0.454828,0.592183,0.618176,0.114049,0.738174,0.566498,0.511615,0.533297,0.143174,0.59647,0.611855,0.946264,0.296549,0.788878,0.273635,0.277313,0.853023,0.583712,0.893857,0.359939,0.203421,0.419234,0.183367,0.533208,0.540698,0.734828,0.98721,0.744523,0.388077,0.0134071,0.80568,0.361334,0.378221,0.806806,0.562167,0.424411,0.71431,0.744204,0.195707,0.21519,0.995509,0.289178,0.989986,0.908024,0.163156,0.590937,0.16028,0.981805,0.368474,0.352998,0.678642,0.299781,0.639058,0.639813,0.666875,0.06266,0.930454,0.18626,0.636017,0.020367,0.33927,0.560344,0.898353,0.503119,0.884625,0.486463,0.892147,0.984297,0.814389,0.212639,0.479122,0.257045,0.144607,0.938786,0.31874,0.593797,0.539779,0.271657,0.432846,0.938535,0.747882,0.0500752,0.00513363,0.479681,0.880409,0.341866,0.642235,0.231146,0.646166,0.964742,0.767626,0.477772,0.831924,0.864299,0.559761,0.550699,0.747839,0.11006,0.955073,0.0499251,0.943197,0.904152,0.939565,0.255611,0.432222,0.978114,0.93008,0.964501,0.970925,0.0679008,0.838549,0.577136,0.456898,0.236289,0.0921121,0.0173185,0.545764,0.540493,0.495105,0.42433,0.229666,0.658781,0.425477,0.170653,0.12326,0.439263,0.700958,0.681447,0.344955,0.658504,0.0487416,0.549586,0.0621342,0.50006,0.0736768,0.648904,0.521618,0.732421,0.230975,0.547205,0.968801,0.869456,0.15023,0.328101,0.225518,0.372979,0.738028,0.729699,0.39198,0.652452,0.541961,0.279399,0.517067,0.241947,0.429394,0.961114,0.199954,0.884377,0.90455,0.386961,0.292278,0.0735652,0.692693,0.697308,0.18377,0.0363304,0.682682,0.688486,0.00391912,0.970909,0.585671,0.0298414,0.857845,0.536153,0.997953,0.206608,0.770299,0.142548,0.790394,0.955581,0.402623,0.823512,0.479931,0.319408,0.235142,0.265364,0.245196,0.509615,0.542643,0.801726,0.989233,0.318853,0.417764,0.259712,0.225207,0.266338,0.0858698,0.31769,0.942149,0.617609,0.0906702,0.518274,0.292821,0.123018,0.269626,0.591109,0.704304,0.0854207,0.458987,0.27391,0.00619477,0.033684,0.0316606,0.181311,0.69447,0.537276,0.423363,0.691507,0.354478,0.303484,0.582899,0.281477,0.394225,0.720477,0.897447,0.968839,0.718377,0.304025,0.738663,0.648731,0.594566,0.304942,0.439784,0.870572,0.585355,0.299979,0.846517,0.285845,0.0551904,0.960372,0.0909773,0.643026,0.601194,0.377989,0.833122,0.500612,0.157897,0.180891,0.491674,0.924751,0.174243,0.341072,0.323576,0.531302,0.0117065,0.316387,0.179897,0.649482,0.619112,0.932214,0.0970829,0.740741,0.930779,0.059001,0.41488,0.547558,0.460958,0.342704,0.238392,0.713835,0.212978,0.952434,0.71981,0.299493,0.549809,0.805543,0.176235,0.273255,0.821644,0.994414,0.618155,0.0341082,0.0766327,0.850477,0.440234,0.384388,0.207883,0.166787,0.790609,0.549922,0.399102,0.872983,0.332171,0.711515,0.965475,0.716738,0.952085,0.0244659,0.87395,0.644279,0.103283,0.933217,0.655365,0.657395,0.437964,0.347227,0.817653,0.499117,0.332679,0.542956,0.306446,0.979186,0.783441,0.566865,0.223209,0.904122,0.104105,0.680191,0.00804067,0.946013,0.504013,0.771666,0.967001,0.771646,0.433391,0.443893,0.226767,0.660257,0.464124,0.584463,0.759164,0.259863,0.449731,0.0949897,0.768664,0.320099,0.367231,0.111343,0.963396,0.134263,0.959088,0.641893,0.365835,0.497578,0.0935113,0.170395,0.701745,0.153423,0.904686,0.417109,0.314062,0.985412,0.971641,0.279258,0.803307,0.304504,0.56165,0.350435,0.196968,0.917718,0.809016,0.0995921,0.118241,0.62653,0.903332,0.87431,0.404522,0.90211,0.677384,0.0791438,0.518708,0.981934,0.226592,0.23751,0.946568,0.255276,0.431912,0.142853,0.21862,0.52774,0.928353,0.875381,0.115041,0.379194,0.687994,0.10298,0.761592,0.321192,0.493449,0.7025,0.483257,0.886356,0.682744,0.188227,0.21787,0.233692,0.546511,0.70291,0.308077,0.890376,0.965134,0.253134,0.519061,0.603827,0.116264,0.000114143,0.232376,0.912567,0.494317,0.280524,0.526156,0.895113,0.626387,0.623685,0.823546,0.185508,0.0621562,0.348784,0.605532,0.854493,0.6206,0.297977,0.478135,0.677238,0.910796,0.254171,0.387436,0.627146,0.38247,0.60951,0.39534,0.69148,0.350025,0.295053,0.386889,0.775866,0.211342,0.934527,0.0345745,0.05033,0.400585,0.806862,0.952801,0.389222,0.851677,0.630127,0.342004,0.593839,0.466426,0.888266,0.717516,0.769483,0.00515193,0.0975292,0.763317,0.104418,0.424634,0.660771,0.123553,0.446621,0.31628,0.142524,0.781614,0.0845097,0.48365,0.213067,0.413696,0.155209,0.87439,0.435154,0.548905,0.549621,0.749282,0.0578718,0.459399,0.663476,0.471343,0.466117,0.940707,0.178227,0.0315543,0.557608,0.640636,0.187478,0.140189,0.943856,0.379781,0.579545,0.0309519,0.634107,0.969427,0.511075,0.399559,0.445477,0.674298,0.195547,0.166435,0.763863,0.350062,0.274208,0.657411,0.153538,0.469273,0.0411406,0.425217,0.317383,0.151437,0.087986,0.458178,0.175695,0.73603,0.68397,0.966226,0.105306,0.745225,0.400727,0.116617,0.633268,0.478487,0.774522,0.54766,0.648925,0.52362,0.625134,0.128629,0.385066,0.0674566,0.25645,0.884571,0.473599,0.824487,0.885159,0.027869,0.0582361,0.696128,0.721788,0.907394,0.925299,0.187183,0.0798151,0.287371,0.364058,0.0598946,0.0414371,0.451797,0.223179,0.107812,0.0661393,0.675225,0.91533,0.681645,0.732302,0.712232,0.837566,0.938408,0.636429,0.423186,0.199185,0.406139,0.732462,0.303274,0.401031,0.677294,0.513856,0.0791783,0.130927,0.318772,0.884255,0.423104,0.653353,0.835909,0.536407,0.499074,0.54984,0.875976,0.445615,0.866661,0.439622,0.849672,0.521004,0.279628,0.367973,0.707794,0.354584,0.934118,0.571729,0.0336751,0.83967,0.619189,0.950815,0.681556,0.309236,0.525571,0.498289,0.185374,0.76503,0.50439,0.941457,0.159759,0.845323,0.185674,0.847139,0.472132,0.616529,0.403464,0.276991,0.806869,0.443237,0.416418,0.539843,0.872025,0.75665,0.450712,0.661141,0.488498,0.0393731,0.148463,0.054931,0.778375,0.0224873,0.356857,0.555113,0.661089,0.27299,0.850827,0.652352,0.961808,0.6276,0.781861,0.466976,0.427698,0.960537,0.994698,0.996057,0.363104,0.0979436,0.1478,0.551241,0.143397,0.733187,0.831249,|0.673135,0.515645,0.684572,0.532611,0.418643,0.0244787,0.808658,0.787165,0.783315,0.412642,0.54118,0.0927354,0.110564,0.526952,0.489781,0.275152,0.820095,0.915858,0.952599,0.326173,0.124416,0.419311,0.376294,0.839874,0.91367,0.493153,0.4949,0.241571,0.606016,0.419609,0.144673,0.226189,0.398646,0.386186,0.595691,0.400236,0.558831,0.0715043,0.999623,0.290136,0.505598,0.375048,0.143888,0.325724,0.289131,0.473895,0.544035,0.752286,0.345229,0.953412,0.343522,0.592269,0.133694,0.178727,0.475421,0.78134,0.411486,0.451055,0.396715,0.111967,0.221326,0.793326,0.827991,0.150504,0.924354,0.567163,0.382282,0.719994,0.1979,0.0352935,0.231835,0.923198,0.587859,0.201452,0.00657016,0.875407,0.65754,0.612197,0.543193,0.342371,0.576339,0.116854,0.408813,0.708969,0.132832,0.476628,0.334347,0.412727,0.742563,0.581329,0.166627,0.636679,0.654651,0.124533,0.681173,0.199586,0.517967,0.171382,0.523102,0.204067,0.54303,0.560341,0.876139,0.757072,0.725564,0.585274,0.672878,0.0862167,0.0238721,0.960737,0.234843,0.884149,0.00339472,0.346394,0.972468,0.343973,0.349114,0.0500515,0.999696,0.770292,0.0178553,0.00167525,0.807268,0.149918,0.869669,0.454042,0.867257,0.929199,0.0759093,0.710384,0.408026,0.92447,0.692705,0.472184,0.435216,0.175742,0.118511,0.791202,0.621502,0.257565,0.590027,0.0398757,0.704808,0.463323,0.0671167,0.36152,0.786519,0.671881,0.930012,0.746903,0.0626935,0.770568,0.770179,0.41547,0.31262,0.489907,0.477062,0.625556,0.765866,0.130398,0.208664,0.500275,0.392749,0.307985,0.0305904,0.215327,0.8977,0.395209,0.96578,0.0770899,0.390898,0.455862,0.110152,0.956187,0.0826255,0.545394,0.51029,0.422627,0.554284,0.769018,0.206758,0.329934,0.886341,0.274279,0.396921,0.296839,0.679559,0.736505,0.712638,0.794347,0.0877258,0.983454,0.122857,0.661162,0.528546,0.0118944,0.310998,0.530384,0.397649,0.39099,0.767968,0.59116,0.753919,0.763841,0.494135,0.542388,0.0746166,0.0493104,0.460012,0.155498,0.96532,0.812828,0.418682,0.0942117,0.766241,0.182048,0.907134,0.403265,0.722085,0.812495,0.468118,0.865713,0.886127,0.673586,0.156375,0.633315,0.765948,0.755066,0.394347,0.346767,0.995847,0.624292,0.228147,0.160631,0.905075,0.716047,0.489383,0.388377,0.774766,0.305943,0.0641877,0.793595,0.130179,0.0681624,0.362164,0.782313,0.618452,0.657643,0.760666,0.678359,0.718692,0.0564591,0.371744,0.408457,0.0998653,0.867076,0.224268,0.924461,0.645631,0.821866,0.856392,0.679457,0.0786251,0.0509648,0.247981,0.710028,0.604407,0.264523,0.157004,0.347644,0.437783,0.077161,0.664447,0.763361,0.812613,0.458054,0.590773,0.437405,0.678306,0.791158,0.371278,0.822486,0.837024,0.0727955,0.0332662,0.128599,0.371998,0.553815,0.445556,0.370602,0.74296,0.169769,0.627943,0.551264,0.928236,0.26949,0.104552,0.860473,0.00446296,0.771744,0.764931,0.453035,0.283478,0.604784,0.148133,0.936981,0.0929836,0.254824,0.652211,0.282222,0.704345,0.819017,0.928062,0.788327,0.697031,0.188413,0.196935,0.989202,0.211312,0.141995,0.614196,0.971455,0.830911,0.66883,0.140236,0.988174,0.644115,0.437361,0.0988863,0.385249,0.0583384,0.409869,0.614885,0.392925,0.765392,0.331518,0.0356629,0.861085,0.733766,0.681546,0.969318,0.982101,0.756214,0.678958,0.900317,0.225728,0.846005,0.82886,0.532336,0.975474,0.704474,0.315887,0.802968,0.946517,0.29947,0.989418,0.463715,0.16787,0.518642,0.0935825,0.433181,0.461908,0.0992636,0.271311,0.797538,0.285968,0.326834,0.53353,0.464732,0.794736,0.444638,0.772172,0.0254624,0.967206,0.674101,0.711272,0.860005,0.0297483,0.730412,0.291992,0.719005,0.77927,0.89365,0.4769,0.646484,0.792844,0.56313,0.4224,0.449086,0.241281,0.903224,0.583454,0.380941,0.176194,0.956577,0.912099,0.512412,0.766765,0.743959,0.349788,0.935353,0.338198,0.850475,0.986828,0.442029,0.167502,0.1057,0.36554,0.0661304,0.68611,0.641495,0.197635,0.652773,0.371577,0.574769,0.362737,0.864773,0.0102571,0.921258,0.372406,0.525713,0.469941,0.897288,0.268974,0.616854,0.274996,0.679091,0.639824,0.497774,0.511428,0.174594,0.395244,0.65407,0.230678,0.720463,0.0333005,0.953205,0.262061,0.489873,0.57822,0.582225,0.818195,0.567429,0.241935,0.0984604,0.305438,0.345814,0.953284,0.917147,0.557873,0.585612,0.60818,0.0113693,0.0525877,0.469552,0.0701221,0.978833,0.976441,0.202162,0.816506,0.132995,0.402845,0.332116,0.600327,0.469957,0.188407,0.80173,0.584427,0.101266,0.330156,0.330825,0.529691,0.37315,0.8179,0.919142,0.867066,0.480649,0.0418903,0.583626,0.643164,0.717488,0.699362,0.154146,0.829522,0.683679,0.723506,0.766288,0.485599,0.993774,0.78208,0.919572,0.515879,0.857783,0.580587,0.944346,0.0228905,0.373696,0.820056,0.36824,0.096507,0.877973,0.81719,0.242522,0.606984,0.616871,0.0868846,0.888961,0.281351,0.391807,0.804165,0.67753,0.305302,0.178575,0.22849,0.397836,0.933995,0.578412,0.583637,0.965261,0.693072,0.682712,0.371556,0.927273,0.602683,0.228266,0.797605,0.235558,0.882304,0.965464,0.819098,0.149712,0.154193,0.714714,0.246181,0.401543,0.442992,0.498275,0.197862,0.400095,0.310394,0.45938,0.655504,0.609172,0.916535,0.375301,0.30931,0.675956,0.487152,0.957513,0.0919651,0.202551,0.52352,0.18362,0.27252,0.511025,0.847465,0.64746,0.920727,0.234564,0.482873,0.729336,0.316321,0.117874,0.111816,0.63842,0.613083,0.782029,0.232408,0.776059,0.927682,0.960399,0.891315,0.12645,0.741506,0.746233,0.24396,0.0355023,0.358406,0.431379,0.869494,0.721832,0.503972,0.423718,0.153482,0.571945,0.969651,0.416401,0.18696,0.240759,0.371216,0.896155,0.255673,0.914324,0.502753,0.587182,0.374745,0.729825,0.755602,0.211093,0.0514431,0.260171,0.214033,0.726243,0.797032,0.57781,0.585272,0.972508,0.97884,0.702393,0.192741,0.646571,0.144159,0.24281,0.0605428,0.389357,0.156325,0.665993,0.186733,0.579164,0.861975,0.205811,0.0857886,0.194673,0.474697,0.413216,0.925439,0.274414,0.308958,0.0198242,0.78617,0.199179,0.36779,0.259741,0.364645,0.731694,0.110487,0.0775664,0.0487368,0.331615,0.0871519,0.148792,0.229675,0.598952,0.0426989,0.417355,0.638442,0.935756,0.215992,0.794288,0.912064,0.408889,0.592518,0.8495,0.297845,0.171197,0.629549,0.181045,0.278605,0.823542,0.785224,0.0198008,0.813403,0.892668,0.888745,0.648273,0.90498,0.534658,0.0888029,0.526859,0.596983,0.557957,0.383131,0.251344,0.203303,0.837529,0.379361,0.479562,0.0214926,0.49763,0.701226,0.551775,0.96845,0.839437,0.116933,0.158994,0.392333,0.251119,0.686274,0.593689,0.405362,0.495882,0.237327,0.668126,0.731417,0.0997142,0.130035,0.670156,0.274626,0.147668,0.668226,0.311605,0.274344,0.010293,0.93873,0.526953,0.710787,0.731271,0.807317,0.518937,0.631455,0.00195283,0.728493,0.373028,0.22141,0.652191,0.747456,0.666568,0.935223,0.362764,0.831864,0.200981,0.990128,0.182668,0.134971,0.927394,0.426681,0.192808,0.255619,0.362842,0.666735,0.0767365,0.0329469,0.836739,0.711532,0.1667,0.213429,0.0591168,0.231851,0.860353,0.922576,0.0365421,0.677603,0.795559,0.140243,0.216413,0.0614937,0.010282,0.513523,0.257959,0.929643,0.416663,0.224843,0.384046,0.774317,0.746383,0.790139,0.938097,0.3888,0.60255,0.703618,0.981039,0.37654,0.0595323,0.127617,0.426511,0.649806,0.389151,0.615381,0.116226,0.283323,0.596817,0.0140295,0.238508,0.266479,0.680977,0.150585,0.91444,0.770421,0.297091,0.610947,0.643495,0.165093,0.116561,0.42871,0.0044679,0.304564,0.791939,0.062894,0.187892,0.95748,0.0112863,0.0445073,0.918963,0.302757,0.949086,0.0428945,0.604435,0.788219,0.00791365,0.296439,0.946272,0.403925,0.0274075,0.272054,0.697537,0.139038,0.756663,0.624382,0.574285,0.604066,0.169972,0.0324486,0.545916,0.352206,0.0863486,0.163723,0.982855,0.18036,0.810973,0.819795,0.349781,0.274782,0.394178,0.0525893,0.741759,0.581687,0.829949,0.253656,0.388897,0.679545,0.348877,0.98313,0.739681,0.988645,0.467243,0.383608,0.814827,0.503409,0.0272683,0.524779,0.240066,0.853571,0.527158,0.314128,0.0222624,0.330414,0.890029,0.958904,0.368259,0.713504,0.0695539,0.968793,0.653015,0.161239,0.487353,0.0280635,0.862513,0.574822,0.669652,0.875919,0.53458,0.70072,0.428499,0.455836,0.380343,0.562346,0.133196,0.227021,0.421227,0.97019,0.183014,0.0510033,0.100158,0.891104,0.602374,0.158463,0.1584,0.1776,0.109057,0.225097,0.55003,0.914508,0.548547,0.312096,0.558247,0.665029,0.155191,0.494683,0.501394,0.706575,0.86264,0.608627,0.18775,0.913071,0.963558,0.223189,0.615885,0.0737979,0.63451,0.994439,0.164547,0.940081,0.430965,0.879332,0.058589,0.885522,0.07767,0.883799,0.0397006,0.97599,0.575797,0.737825,0.460329,0.561763,0.163659,0.671265,0.950907,0.798788,0.422594,0.776611,0.621877,0.524538,0.112275,0.703616,0.576116,0.396854,0.55409,0.915149,0.749059,0.201664,0.108987,0.354445,0.858581,0.542974,0.476627,0.523247,0.96409,0.317508,0.182807,0.288587,0.405637,0.70663,0.179755,0.315361,0.765525,0.152925,0.871692,0.000884473,0.867231,0.829438,0.754362,0.821474,0.696529,0.458979,0.312517,0.373416,0.242356,0.940586,0.513067,0.237536,0.297135,0.0350773,0.408766,0.541468,0.28856,0.71213,0.363385,0.702373,0.702466,0.321865,0.0516478,0.141713,0.361935,0.214927,0.635974,0.0804406,0.575554,0.797745,0.630865,0.833521,0.656075,0.498127,0.0474016,0.70294,0.0376659,0.848666,0.605848,0.297855,0.964796,0.498751,0.978304,0.413066,0.874104,0.479966,0.927895,0.974343,0.3449,0.837939,0.866191,0.700564,|0.0246897,0.757864,0.8526,0.97954,0.187095,0.705458,0.594807,0.999702,0.591759,0.331856,0.324295,0.649698,0.0941212,0.360046,0.103617,0.803265,0.380013,0.311117,0.951968,0.567535,0.800774,0.269024,0.709491,0.0252076,0.993345,0.0493296,0.562296,0.694414,0.203043,0.230428,0.350472,0.903607,0.453012,0.653498,0.652435,0.921522,0.822499,0.12217,0.0488836,0.605298,0.0879469,0.881111,0.517225,0.332021,0.953254,0.0591202,0.266336,0.0151752,0.0321874,0.324413,0.113671,0.138029,0.0446149,0.633355,0.159039,0.934999,0.760825,0.11277,0.85103,0.106034,0.911606,0.782059,0.0947594,0.881675,0.104365,0.204406,0.105415,0.451718,0.330652,0.252732,0.20811,0.713917,0.354321,0.76345,0.580437,0.196166,0.80247,0.461468,0.170488,0.452287,0.416349,0.365643,0.569527,0.722062,0.117344,0.917993,0.938672,0.697347,0.390256,0.213076,0.517768,0.883594,0.335965,0.630081,0.934781,0.124062,0.217652,0.647685,0.360936,0.367093,0.586448,0.305251,0.633535,0.788267,0.946959,0.172135,0.479755,0.945857,0.363592,0.124625,0.681475,0.27308,0.822461,0.677664,0.440958,0.713307,0.0728237,0.3381,0.0386059,0.141601,0.228967,0.244293,0.7563,0.32438,0.763979,0.505679,0.39198,0.757122,0.583137,0.330771,0.514518,0.592966,0.810542,0.622201,0.230805,0.712472,0.635033,0.7954,0.831454,0.152033,0.690586,0.332931,0.454007,0.665329,0.984269,0.870375,0.470348,0.692095,0.414381,0.251875,0.644555,0.00201529,0.357857,0.480559,0.282813,0.752962,0.402627,0.0332476,0.0742862,0.0621254,0.380435,0.940713,0.186483,0.353067,0.838929,0.403437,0.277264,0.35846,0.89803,0.127331,0.932989,0.790976,0.330425,0.440063,0.47698,0.919077,0.549824,0.0970626,0.653553,0.517095,0.802736,0.985851,0.147268,0.171652,0.659759,0.423278,0.258244,0.19189,0.924691,0.367461,0.476047,0.76662,0.191626,0.58355,0.579647,0.560231,0.899662,0.310085,0.0279912,0.33687,0.711682,0.130366,0.908978,0.782627,0.542237,0.957973,0.0817762,0.709017,0.618524,0.025079,0.154202,0.253142,0.932314,0.777315,0.526144,0.655677,0.832633,0.460241,0.671494,0.869328,0.656853,0.369446,0.281207,0.825388,0.940396,0.509792,0.212857,0.0286639,0.0630718,0.967683,0.761854,0.0123679,0.141363,0.420849,0.036317,0.566513,0.0347824,0.573982,0.342801,0.108446,0.711538,0.832008,0.215841,0.504461,0.988212,0.76968,0.0701152,0.276448,0.734844,0.726926,0.898008,0.670493,0.725667,0.808871,0.348809,0.0333374,0.652796,0.627385,0.722434,0.727555,0.599292,0.408801,0.12565,0.246,0.873491,0.272555,0.621692,0.550157,0.139772,0.872567,0.211264,0.54459,0.788843,0.813339,0.839511,0.925348,0.119742,0.981081,0.108485,0.0320335,0.541585,0.921074,0.0918816,0.241686,0.837577,0.976762,0.866974,0.680499,0.997928,0.69226,0.166141,0.169784,0.466413,0.958323,0.830961,0.0377002,0.00768429,0.267328,0.696616,0.110143,0.420932,0.404956,0.810748,0.190317,0.356734,0.392536,0.630273,0.65673,0.205879,0.190709,0.321084,0.618784,0.587657,0.131154,0.149104,0.312066,0.726713,0.895894,0.987929,0.333861,0.554008,0.704277,0.114566,0.0151945,0.934908,0.371236,0.16937,0.92673,0.652926,0.962534,0.552891,0.774712,0.735044,0.209136,0.642278,0.762458,0.70649,0.151379,0.519298,0.832314,0.960079,0.0689192,0.0461215,0.0956169,0.186617,0.430886,0.811807,0.666116,0.734953,0.350244,0.5014,0.293141,0.346487,0.978251,0.66808,0.019984,0.961114,0.060704,0.15263,0.606589,0.590455,0.0786686,0.652095,0.06629,0.335205,0.122791,0.571436,0.204336,0.175299,0.405003,0.679849,0.569841,0.783845,0.407053,0.519451,0.814225,0.56787,0.237626,0.682238,0.741515,0.518834,0.780977,0.833736,0.7131,0.411497,0.781267,0.315666,0.646952,0.131677,0.70868,0.0494491,0.305466,0.267906,0.315934,0.909343,0.286391,0.356121,0.225606,0.784726,0.213493,0.129598,0.958832,0.882773,0.366055,0.0171102,0.305058,0.298908,0.923684,0.235511,0.0258324,0.374436,0.599904,0.386597,0.918871,0.592489,0.629617,0.121604,0.987408,0.871468,0.527256,0.0425994,0.378301,0.86379,0.684138,0.971375,0.583187,0.281378,0.356387,0.361835,0.00896209,0.916233,0.554697,0.530612,0.366029,0.976283,0.371984,0.653642,0.257934,0.486308,0.724213,0.858478,0.592044,0.103127,0.943262,0.721048,0.15952,0.363633,0.839468,0.197221,0.699334,0.389841,0.0644591,0.423311,0.125085,0.656298,0.346082,0.37188,0.717142,0.842619,0.995547,0.948813,0.430015,0.704816,0.0118843,0.526888,0.45474,0.217998,0.130207,0.860135,0.0341702,0.524238,0.441342,0.43438,0.536434,0.584022,0.597665,0.979415,0.128997,0.233911,0.0381549,0.918719,0.760561,0.219212,0.725828,0.980805,0.988271,0.282712,0.276228,0.785266,0.663432,0.799661,0.228057,0.647056,0.353683,0.466218,0.340906,0.0931946,0.578961,0.654944,0.016211,0.693525,0.513165,0.112297,0.810691,0.427359,0.102598,0.568399,0.154335,0.585132,0.932338,0.345046,0.457979,0.397515,0.718465,0.0931913,0.675754,0.86862,0.513631,0.848312,0.957914,0.476685,0.337221,0.990617,0.118929,0.494534,0.412836,0.629948,0.705373,0.569945,0.9736,0.954399,0.0097636,0.944901,0.659867,0.662873,0.67453,0.966778,0.453202,0.591979,0.327714,0.460815,0.378638,0.3521,0.145187,0.871884,0.28912,0.252552,0.830328,0.856409,0.0825875,0.849523,0.593974,0.491081,0.84405,0.424812,0.593326,0.956863,0.27435,0.328243,0.859364,0.840336,0.34856,0.167703,0.00949585,0.78242,0.725061,0.282731,0.0859589,0.434933,0.230902,0.592353,0.50447,0.377837,0.108823,0.371778,0.279009,0.862177,0.614818,0.758685,0.495031,0.883312,0.932852,0.811365,0.499158,0.0847536,0.421085,0.615985,0.063896,0.570608,0.0972689,0.0222158,0.330746,0.754222,0.416141,0.957001,0.255745,0.40514,0.00636071,0.0882426,0.459466,0.578934,0.0211145,0.205888,0.810167,0.611155,0.0215636,0.141336,0.578517,0.767231,0.857021,0.960377,0.539531,0.625112,0.842942,0.417691,0.515864,0.609493,0.474164,0.321632,0.545943,0.939022,0.254137,0.185061,0.544969,0.794309,0.7971,0.734134,0.448874,0.972935,0.333266,0.287796,0.748913,0.10665,0.713107,0.447309,0.565965,0.375628,0.79017,0.0624162,0.6899,0.904474,0.523351,0.424126,0.749081,0.179236,0.112377,0.908966,0.181071,0.225257,0.134317,0.988374,0.990678,0.617531,0.945099,0.107033,0.569391,0.492997,0.0148636,0.287902,0.732143,0.737788,0.979608,0.846847,0.0601954,0.383663,0.20226,0.155731,0.52175,0.620316,0.457561,0.343261,0.773096,0.768516,0.81557,0.164564,0.227898,0.8138,0.393107,0.717424,0.123656,0.41859,0.749484,0.960423,0.627423,0.817943,0.00301415,0.769461,0.615266,0.86456,0.335103,0.702641,0.557413,0.654215,0.407958,0.657987,0.113991,0.0307897,0.891228,0.576684,0.95167,0.278517,0.510213,0.938783,0.178371,0.309025,0.833469,0.26138,0.0965231,0.698263,0.815198,0.624394,0.00118238,0.65953,0.262362,0.201994,0.391912,0.253647,0.247166,0.739954,0.784175,0.664659,0.736015,0.275073,0.730048,0.613679,0.0123581,0.586865,0.375384,0.0799128,0.820866,0.0995635,0.190052,0.636733,0.821875,0.113936,0.5669,0.822629,0.506518,0.465685,0.150731,0.641735,0.404235,0.667852,0.352393,0.328429,0.239093,0.0914997,0.0768051,0.694541,0.590349,0.530034,0.660998,0.422606,0.468329,0.609821,0.146577,0.0947794,0.49974,0.922877,0.594503,0.427618,0.109625,0.173982,0.659995,0.115269,0.147016,0.449649,0.139532,0.0546045,0.195357,0.983049,0.0242139,0.98303,0.832325,0.976002,0.874361,0.242309,0.962433,0.345086,0.592528,0.84558,0.366602,0.681251,0.842579,0.55369,0.947895,0.330845,0.00843453,0.471485,0.106714,0.67838,0.796948,0.443599,0.747867,0.7689,0.180537,0.380202,0.421825,0.967765,0.0459688,0.246003,0.545954,0.430552,0.578499,0.184091,0.451139,0.158053,0.583034,0.971816,0.762116,0.0695347,0.43752,0.0923287,0.0159376,0.628575,0.801907,0.143203,0.527518,0.732906,0.772162,0.729666,0.423037,0.0254622,0.687793,0.420504,0.404079,0.846372,0.800151,0.780147,0.869933,0.620673,0.174175,0.840635,0.950016,0.532799,0.682818,0.827121,0.111001,0.926252,0.0667377,0.547811,0.962384,0.0147483,0.51196,0.306182,0.66081,0.252544,0.598337,0.0730182,0.935262,0.89163,0.978373,0.0573201,0.900908,0.67163,0.592113,0.120814,0.290025,0.277525,0.652482,0.612239,0.425604,0.829044,0.450719,0.335801,0.103344,0.316979,0.698177,0.763431,0.0215164,0.128047,0.670535,0.315954,0.612734,0.909212,0.217381,0.919094,0.965913,0.503945,0.243624,0.536615,0.971194,0.478628,0.464391,0.875593,0.685187,0.238917,0.238064,0.214025,0.619822,0.764228,0.521222,0.500247,0.876405,0.136461,0.551042,0.142702,0.33489,0.196691,0.40279,0.0472373,0.327656,0.351531,0.00527298,0.683947,0.763183,0.538063,0.418418,0.338643,0.110937,0.680674,0.774491,0.731283,0.965961,0.103842,0.876036,0.749296,0.449398,0.0384092,0.633716,0.514683,0.547355,0.584248,0.443041,0.72964,0.860849,0.09539,0.644236,0.851702,0.890936,0.476307,0.725206,0.660951,0.486521,0.699487,0.854582,0.890823,0.664525,0.350052,0.947952,0.621835,0.0553863,0.399685,0.443273,0.270115,0.161581,0.343656,0.394415,0.397891,0.52506,0.232449,0.365456,0.748068,0.35741,0.319178,0.34753,0.212372,0.56823,0.0840046,0.496459,0.864479,0.823987,0.198469,0.0462943,0.413304,0.595858,0.662323,0.897105,0.492786,0.00685662,0.0706705,0.428147,0.450637,0.79855,0.353496,0.555,0.12699,0.326416,0.372079,0.432487,0.302431,0.740778,0.426789,0.340779,0.732072,0.167622,0.251147,0.759247,0.667424,0.875342,0.584188,0.461085,0.896968,0.887006,0.273521,0.278552,0.585685,0.0349536,0.236274,0.335601,|0.171551,0.844303,0.457219,0.634106,0.258923,0.712165,0.798099,0.266192,0.791547,0.990435,0.0132498,0.402698,0.438103,0.153439,0.670278,0.891147,0.164073,0.151765,0.158874,0.626783,0.699674,0.605818,0.237416,0.376665,0.590983,0.681341,0.848815,0.95938,0.629883,0.579244,0.859489,0.064655,0.854995,0.525723,0.380094,0.518776,0.360447,0.940619,0.56982,0.239738,0.674671,0.749689,0.848671,0.174505,0.389759,0.621941,0.728389,0.233077,0.541842,0.708732,0.920675,0.0246207,0.725182,0.797836,0.144799,0.551942,0.00538915,0.21883,0.27614,0.0216911,0.190728,0.00392765,0.529426,0.37163,0.835164,0.520279,0.555541,0.386745,0.119112,0.298493,0.573388,0.102893,0.322699,0.649484,0.87966,0.0963498,0.328682,0.376793,0.231482,0.131688,0.841011,0.237147,0.153634,0.329269,0.996919,0.17859,0.117637,0.733616,0.978696,0.4359,0.866275,0.421885,0.251257,0.768468,0.46915,0.361214,0.256177,0.448064,0.806021,0.808326,0.927143,0.452085,0.0207853,0.117305,0.510951,0.833318,0.814403,0.859186,0.823677,0.398131,0.693503,0.357019,0.301397,0.884586,0.142208,0.229833,0.368782,0.306867,0.4776,0.588238,0.255548,0.783677,0.154455,0.420954,0.0764066,0.515528,0.69481,0.0680408,0.522115,0.917615,0.174205,0.105342,0.115875,0.803463,0.139257,0.207204,0.635811,0.954657,0.700925,0.644462,0.0242788,0.38384,0.635527,0.908346,0.0523974,0.825101,0.870373,0.92626,0.285558,0.174494,0.929689,0.522886,0.761728,0.666837,0.397427,0.663279,0.539989,0.0739434,0.42922,0.698809,0.114152,0.421923,0.950102,0.259606,0.302505,0.36051,0.0374807,0.612334,0.54674,0.696809,0.786622,0.536321,0.998655,0.918423,0.871546,0.715153,0.510885,0.860057,0.492794,0.352283,0.0271671,0.194048,0.212268,0.25864,0.761791,0.0347706,0.266767,0.35525,0.829761,0.0290186,0.407782,0.0904743,0.496101,0.494954,0.21654,0.0288554,0.709138,0.539509,0.94309,0.653085,0.579667,0.00500757,0.439123,0.830229,0.886699,0.858456,0.0123571,0.828103,0.225334,0.854293,0.312387,0.776911,0.54976,0.966239,0.467879,0.298942,0.876103,0.960996,0.475335,0.292894,0.185758,0.172579,0.753938,0.619787,0.610414,0.993634,0.600682,0.155759,0.179964,0.50688,0.13145,0.354158,0.103575,0.810768,0.645415,0.0970981,0.814096,0.279371,0.732893,0.0802193,0.998895,0.0165593,0.0561065,0.501669,0.289611,0.962966,0.222376,0.412496,0.215436,0.887272,0.701377,0.770746,0.68319,0.233048,0.770293,0.403431,0.519346,0.762622,0.152247,0.171143,0.340711,0.0406412,0.779673,0.00548226,0.712851,0.887639,0.858934,0.649432,0.0615757,0.204359,0.388237,0.0436746,0.945664,0.375793,0.372507,0.387193,0.83112,0.92031,0.30123,0.0860133,0.849674,0.964824,0.690833,0.540602,0.68487,0.117228,0.365194,0.63615,0.323824,0.850005,0.709138,0.750778,0.43305,0.988209,0.679412,0.628176,0.849377,0.424235,0.466543,0.316693,0.102621,0.856953,0.832684,0.28208,0.693805,0.120965,0.503832,0.105631,0.138122,0.336761,0.773517,0.2022,0.548885,0.925693,0.254177,0.912444,0.570056,0.923017,0.58977,0.416765,0.737883,0.821396,0.179059,0.858725,0.130854,0.259927,0.197483,0.091119,0.564696,0.366925,0.0128044,0.954031,0.589381,0.531886,0.475058,0.224365,0.370392,0.588823,0.814419,0.383726,0.301829,0.651113,0.96328,0.949611,0.439207,0.941913,0.287913,0.244137,0.183129,0.893818,0.00996757,0.85114,0.482048,0.287994,0.118899,0.361522,0.721292,0.649497,0.112173,0.957057,0.51514,0.0419259,0.909897,0.85928,0.31439,0.957416,0.0493686,0.809556,0.286962,0.188845,0.561622,0.611356,0.817382,0.843046,0.62336,0.0824626,0.774632,0.734011,0.170914,0.20575,0.447148,0.381552,0.075328,0.664887,0.551045,0.924519,0.434069,0.528991,0.576451,0.861758,0.213729,0.66243,0.905473,0.796216,0.835779,0.223084,0.186386,0.792148,0.855434,0.557469,0.0281264,0.0697433,0.725969,0.255353,0.801557,0.039547,0.522048,0.578814,0.492156,0.95689,0.262138,0.413472,0.915359,0.828647,0.586859,0.0871123,0.125222,0.943641,0.571872,0.774576,0.942425,0.565142,0.744641,0.0750982,0.299517,0.676095,0.185004,0.808739,0.0545344,0.640026,0.959495,0.517055,0.410765,0.653621,0.74784,0.964606,0.961822,0.346975,0.962548,0.508492,0.469994,0.7949,0.426502,0.938116,0.736243,0.979804,0.874456,0.867194,0.455613,0.337747,0.852762,0.73649,0.260439,0.891279,0.928948,0.810366,0.585016,0.08069,0.545723,0.232871,0.176141,0.338704,0.082951,0.616736,0.641675,0.964597,0.384451,0.180507,0.255288,0.58333,0.418536,0.656722,0.849652,0.71181,0.0859858,0.858942,0.452579,0.411511,0.566747,0.468159,0.902556,0.99806,0.0918759,0.827712,0.243439,0.913578,0.586226,0.0311124,0.616547,0.688285,0.673475,0.948766,0.424981,0.76274,0.332536,0.989407,0.788884,0.734391,0.945728,0.543438,0.857853,0.589127,0.643988,0.703594,0.579673,0.15937,0.838888,0.585004,0.570582,0.362569,0.846259,0.304241,0.858649,0.382497,0.827452,0.328808,0.639473,0.123601,0.1068,0.0440226,0.674751,0.957531,0.226209,0.438982,0.285409,0.6329,0.808624,0.251514,0.782778,0.351951,0.61783,0.0908961,0.105758,0.753525,0.528528,0.00737286,0.155856,0.953939,0.236456,0.0133176,0.328334,0.92404,0.0937393,0.516414,0.019728,0.425995,0.087835,0.28499,0.900487,0.812611,0.32999,0.122169,0.290389,0.864256,0.970337,0.402275,0.87819,0.253805,0.43754,0.108833,0.668738,0.702647,0.765896,0.575373,0.340504,0.63609,0.799736,0.761493,0.0475517,0.108372,0.0663391,0.968056,0.920289,0.850786,0.631003,0.332205,0.755784,0.446583,0.129039,0.240836,0.858178,0.674065,0.856774,0.788851,0.211079,0.201045,0.619722,0.278968,0.572245,0.179778,0.449769,0.732039,0.257191,0.952586,0.239859,0.355782,0.090832,0.450284,0.301828,0.0092625,0.00669712,0.962484,0.645631,0.769605,0.176424,0.204452,0.560417,0.236483,0.0933643,0.55403,0.69874,0.690805,0.29156,0.2365,0.591325,0.323995,0.677619,0.281933,0.683301,0.728489,0.761954,0.538113,0.407414,0.924464,0.866112,0.188842,0.405851,0.229927,0.0270262,0.651546,0.167268,0.16973,0.699067,0.714781,0.649061,0.0469863,0.894903,0.978558,0.333052,0.256752,0.734266,0.42813,0.391898,0.0633371,0.17179,0.538537,0.369045,0.223982,0.350455,0.64926,0.965463,0.931907,0.730556,0.0870416,0.281446,0.944275,0.991036,0.613324,0.385983,0.0967556,0.850734,0.183203,0.259095,0.288392,0.39698,0.803043,0.1664,0.559857,0.892169,0.761115,0.946099,0.412928,0.461042,0.54957,0.0172588,0.926545,0.570464,0.436802,0.26347,0.615555,0.204822,0.541264,0.917582,0.589396,0.800776,0.343139,0.336754,0.20357,0.728401,0.500918,0.778758,0.0169995,0.982029,0.214693,0.680896,0.567981,0.168601,0.237856,0.159486,0.785415,0.562017,0.29907,0.652509,0.954043,0.231759,0.967469,0.111836,0.654571,0.02294,0.301653,0.154,0.783717,0.368739,0.254472,0.632164,0.517682,0.599229,0.487625,0.578606,0.473355,0.931485,0.660514,0.445208,0.241096,0.382464,0.697217,0.715948,0.81839,0.663577,0.829784,0.0186198,0.709398,0.236499,0.403446,0.978716,0.663836,0.869098,0.918588,0.897696,0.131692,0.602534,0.0108356,0.565653,0.973164,0.258422,0.87816,0.4169,0.919526,0.705905,0.480928,0.361934,0.388593,0.152745,0.813032,0.899291,0.0471039,0.578633,0.89306,0.761773,0.293218,0.763081,0.792474,0.0654417,0.692277,0.801612,0.261421,0.989348,0.754159,0.492125,0.603313,0.520309,0.872928,0.0493467,0.55276,0.950739,0.148289,0.970865,0.247039,0.152917,0.418358,0.88654,0.361736,0.701396,0.327723,0.163855,0.102518,0.848214,0.193962,0.0335032,0.773914,0.150088,0.908936,0.539971,0.915756,0.199752,0.29076,0.180705,0.43002,0.807314,0.682385,0.368125,0.41117,0.745322,0.544812,0.768824,0.78465,0.228786,0.601094,0.673662,0.427696,0.408377,0.571943,0.522689,0.985179,0.938605,0.203906,0.429476,0.647591,0.179582,0.943564,0.211136,0.577257,0.330031,0.599132,0.669507,0.154199,0.533652,0.597227,0.451544,0.15376,0.930046,0.359005,0.682192,0.55985,0.537967,0.742163,0.845647,0.0336211,0.0231336,0.8057,0.433307,0.871428,0.78118,0.494907,0.458349,0.991447,0.546342,0.078644,0.207734,0.589945,0.298172,0.516159,0.45218,0.523978,0.428822,0.870208,0.0582886,0.41915,0.869289,0.413372,0.639839,0.166542,0.188238,0.084381,0.0991407,0.108752,0.317167,0.234738,0.498911,0.394373,0.106845,0.573105,0.242498,0.215173,0.324589,0.895114,0.790321,0.253533,0.057197,0.929629,0.561586,0.297857,0.541057,0.802562,0.775789,0.188775,0.326368,0.353885,0.830525,0.159264,0.152163,0.828945,0.992423,0.924347,0.509,0.162563,0.776468,0.414417,0.628915,0.648405,0.459997,0.902677,0.672102,0.6256,0.568385,0.13552,0.473534,0.141872,0.966469,0.572753,0.679637,0.481015,0.422928,0.204656,0.0512406,0.389765,0.00562102,0.272276,0.793665,0.104873,0.539126,0.859416,0.447958,0.0238199,0.322142,0.608199,0.526558,0.713258,0.811025,0.892472,0.561366,0.895711,0.685658,0.55725,0.532725,0.568085,0.752608,0.35997,0.101804,0.448629,0.929249,0.502788,0.196847,0.164822,0.864236,0.259385,0.0221826,0.446606,0.997328,0.488448,0.525932,0.101512,0.00397801,0.677511,0.826396,0.0646697,0.0594587,0.951932,0.672148,0.814828,0.362494,0.213852,0.694573,0.270626,0.312918,0.996159,0.683838,0.347519,0.497663,0.586593,0.41311,0.696677,0.481191,0.47652,0.257194,0.78445,0.306192,0.216147,0.0523646,0.381236,0.570398,0.889958,0.0357857,0.19682,0.149244,0.0362324,0.250926,0.0754562,0.757016,0.0763547,0.873427,0.7142,0.564217,0.24886,0.948879,0.417489,0.866475,0.780433,0.301026,0.292166,|0.595754,0.384695,0.600921,0.569847,0.4233,0.721782,0.874541,0.62137,0.632215,0.349619,0.121341,0.702768,0.071655,0.586797,0.237604,0.0642871,0.811546,0.308393,0.155231,0.356005,0.315696,0.716203,0.449853,0.851458,0.231535,0.417997,0.816725,0.397776,0.32599,0.902418,0.123844,0.982009,0.519782,0.613987,0.517878,0.379779,0.278799,0.585336,0.376293,0.520724,0.622881,0.0617822,0.0542083,0.983789,0.498385,0.787367,0.418183,0.482362,0.246224,0.169273,0.386471,0.559455,0.344861,0.19848,0.854723,0.204673,0.659039,0.545822,0.136281,0.843494,0.90143,0.581661,0.0220101,0.101815,0.743374,0.82131,0.0045079,0.170602,0.00950491,0.609261,0.520449,0.780861,0.181536,0.321425,0.59097,0.940594,0.13479,0.640425,0.381492,0.464302,0.397122,0.489996,0.205163,0.0677542,0.871649,0.913731,0.787928,0.00753587,0.817988,0.395519,0.482964,0.937951,0.842182,0.448367,0.433235,0.720965,0.208821,0.206349,0.858087,0.652738,0.256339,0.282552,0.167351,0.918043,0.021138,0.821402,0.199178,0.482879,0.528554,0.3517,0.849481,0.655527,0.686185,0.639457,0.37705,0.113203,0.106446,0.176092,0.221386,0.996386,0.428577,0.345142,0.347762,0.532181,0.863677,0.0933473,0.201923,0.240942,0.516746,0.311055,0.991974,0.0848453,0.188039,0.537306,0.396327,0.0757232,0.405812,0.354546,0.494996,0.677319,0.944473,0.77228,0.410677,0.965318,0.248899,0.974028,0.0425923,0.128058,0.606904,0.0682731,0.141673,0.510858,0.813723,0.984121,0.362859,0.0913148,0.159383,0.153111,0.782227,0.173452,0.966549,0.87053,0.627674,0.413929,0.169127,0.247386,0.75355,0.690713,0.910858,0.113526,0.747869,0.876282,0.384717,0.0588913,0.113661,0.324825,0.823638,0.620662,0.513617,0.457341,0.063387,0.567222,0.764439,0.0730582,0.408049,0.528091,0.0959292,0.17571,0.248024,0.394885,0.042331,0.0612988,0.331076,0.217077,0.574204,0.184097,0.374818,0.793368,0.696702,0.32154,0.84802,0.830683,0.579829,0.971309,0.103889,0.124429,0.0654924,0.410728,0.983433,0.447712,0.131625,0.356442,0.352638,0.540971,0.259914,0.802895,0.2922,0.420849,0.977597,0.219354,0.369156,0.90575,0.126237,0.641681,0.417206,0.405486,0.274498,0.674646,0.892783,0.20866,0.737055,0.683894,0.079456,0.389622,0.612487,0.853823,0.147842,0.875445,0.866197,0.251945,0.0460227,0.627803,0.455082,0.912783,0.739355,0.41281,0.0445654,0.512138,0.115855,0.879384,0.478811,0.30299,0.622374,0.655374,0.319838,0.774503,0.411172,0.603664,0.149543,0.885662,0.241221,0.308405,0.805914,0.251006,0.442614,0.174054,0.876963,0.320186,0.209032,0.630873,0.292925,0.822304,0.733306,0.359031,0.448792,0.853862,0.765283,0.0788894,0.474418,0.377056,0.65802,0.253619,0.69445,0.571679,0.0959325,0.71658,0.448466,0.554926,0.85971,0.0771469,0.626166,0.471028,0.968181,0.0691121,0.304024,0.970877,0.937849,0.844314,0.425397,0.570503,0.308786,0.0325844,0.945106,0.517139,0.676841,0.99195,0.56027,0.0146388,0.397183,0.357999,0.46261,0.168862,0.13748,0.657001,0.733758,0.159825,0.0715784,0.0328333,0.605142,0.942088,0.36805,0.202743,0.572984,0.594588,0.10964,0.117864,0.766376,0.901342,0.337679,0.41762,0.558895,0.949205,0.142935,0.284199,0.683944,0.971404,0.847434,0.579501,0.469987,0.0385709,0.241041,0.773858,0.0382978,0.425005,0.610084,0.422606,0.308319,0.075709,0.813791,0.148478,0.197236,0.164344,0.331236,0.61919,0.468723,0.426275,0.280433,0.308734,0.949441,0.186825,0.443739,0.497651,0.308105,0.028441,0.251942,0.806027,0.15715,0.133201,0.854982,0.590486,0.457839,0.0701911,0.679989,0.351213,0.160447,0.165429,0.426931,0.326402,0.801197,0.943808,0.322762,0.561263,0.241865,0.41201,0.81401,0.749229,0.0989693,0.0986952,0.29805,0.3572,0.632207,0.254919,0.435222,0.417581,0.251626,0.757523,0.112507,0.496351,0.372573,0.973896,0.443487,0.205905,0.0180871,0.969804,0.323673,0.743355,0.298126,0.991203,0.212302,0.29928,0.205115,0.777461,0.734481,0.644819,0.0782509,0.89024,0.248314,0.875261,0.370713,0.277773,0.243191,0.358213,0.523807,0.779298,0.247952,0.137285,0.198122,0.0189581,0.87422,0.954406,0.142392,0.207178,0.880322,0.188086,0.246849,0.209344,0.727607,0.458316,0.529529,0.247627,0.769101,0.0376081,0.654506,0.58526,0.674144,0.261982,0.996388,0.599591,0.126887,0.944413,0.698914,0.0285033,0.893207,0.866778,0.520877,0.327274,0.418693,0.247692,0.570569,0.0190651,0.759761,0.423244,0.604576,0.635087,0.285898,0.884728,0.150656,0.4384,0.838352,0.045727,0.0584695,0.606773,0.909334,0.0497108,0.246645,0.574516,0.810566,0.692758,0.147832,0.225589,0.612263,0.0627705,0.738644,0.194224,0.224373,0.936531,0.0730817,0.385723,0.42739,0.555944,0.939768,0.826353,0.646077,0.64448,0.0630744,0.351023,0.918583,0.240635,0.820537,0.225535,0.447763,0.716873,0.674933,0.741248,0.808319,0.373319,0.378149,0.533144,0.13948,0.394692,0.498811,0.84678,0.198234,0.291651,0.964785,0.344162,0.0508879,0.642219,0.447067,0.630198,0.0711832,0.0200952,0.812634,0.37799,0.204664,0.0102231,0.165237,0.922446,0.0547581,0.416092,0.163002,0.841135,0.0715438,0.116822,0.148174,0.889989,0.734838,0.790278,0.197384,0.669455,0.511477,0.954814,0.407115,0.506323,0.681379,0.727584,0.203359,0.189048,0.262385,0.218945,0.78954,0.217443,0.94985,0.963929,0.424055,0.240286,0.0179144,0.314148,0.663291,0.342795,0.347311,0.504797,0.923955,0.757847,0.873151,0.818758,0.401241,0.578673,0.718519,0.18868,0.0180489,0.691019,0.527922,0.332678,0.420504,0.443767,0.19358,0.614866,0.0990988,0.781501,0.531532,0.556399,0.0591198,0.635387,0.121262,0.535404,0.50163,0.803442,0.0231305,0.655356,0.343592,0.873717,0.902521,0.129646,0.227037,0.882038,0.616404,0.832573,0.0369982,0.511677,0.0691125,0.931049,0.0111128,0.354077,0.682834,0.708634,0.797953,0.277579,0.431244,0.385991,0.910718,0.671031,0.765962,0.535574,0.908042,0.837584,0.338,0.00841439,0.179987,0.807773,0.692509,0.657746,0.206233,0.654517,0.26728,0.605451,0.500324,0.18934,0.231938,0.995366,0.874223,0.813503,0.530844,0.471203,0.297181,0.302918,0.312857,0.0327826,0.241533,0.0692667,0.209407,0.711722,0.281876,0.605083,0.304287,0.241002,0.0273921,0.39035,0.745458,0.131057,0.896859,0.384633,0.20637,0.314459,0.163769,0.0804155,0.913464,0.750946,0.793362,0.692292,0.356652,0.245617,0.948441,0.482277,0.120198,0.462902,0.545701,0.139532,0.168818,0.611496,0.645655,0.461129,0.270736,0.606898,0.103328,0.280314,0.111806,0.643788,0.825012,0.73453,0.593467,0.519958,0.310017,0.571193,0.0095104,0.975481,0.544582,0.547384,0.883881,0.423839,0.781521,0.850069,0.3032,0.505317,0.00986177,0.133777,0.945401,0.942969,0.901167,0.378145,0.833011,0.600758,0.508663,0.653476,0.463117,0.680836,0.619588,0.82154,0.109092,0.0950954,0.414426,0.528102,0.432288,0.487844,0.257424,0.103306,0.876399,0.967389,0.978879,0.790036,0.421181,0.980526,0.506558,0.0169645,0.66696,0.724344,0.54339,0.564427,0.378237,0.887841,0.708423,0.238066,0.121881,0.718862,0.263866,0.214078,0.181341,0.457371,0.193419,0.818323,0.148355,0.788764,0.0237859,0.0445724,0.770105,0.643216,0.967657,0.0850115,0.880049,0.52753,0.792471,0.552904,0.652211,0.259197,0.973438,0.227323,0.0818809,0.100563,0.167565,0.836767,0.556508,0.386242,0.368673,0.634162,0.415926,0.46968,0.752999,0.358729,0.739199,0.760701,0.322431,0.491129,0.1122,0.577946,0.975866,0.150868,0.945731,0.537443,0.118818,0.279277,0.619976,0.744601,0.20003,0.0593625,0.69014,0.936741,0.591121,0.0152803,0.0488917,0.877939,0.983968,0.557095,0.701888,0.446083,0.817977,0.817998,0.186903,0.0808166,0.850228,0.970432,0.727256,0.739895,0.811837,0.125834,0.21827,0.785305,0.0859042,0.450268,0.588106,0.408174,0.284404,0.227112,0.266329,0.768794,0.0625158,0.800943,0.613494,0.828697,0.533319,0.242768,0.842616,0.727983,0.363341,0.799529,0.307346,0.625765,0.0205753,0.489992,0.489633,0.207925,0.324391,0.262075,0.247943,0.993284,0.0804904,0.942731,0.684086,0.813625,0.800716,0.236587,0.0703357,0.387867,0.694558,0.588166,0.599969,0.894352,0.937727,0.560401,0.0704798,0.763724,0.259007,0.0202415,0.268392,0.51668,0.728658,0.0680984,0.522101,0.423164,0.27715,0.167117,0.599225,0.630262,0.516263,0.938198,0.747231,0.390436,0.883011,0.0960131,0.564087,0.0524598,0.237018,0.505205,0.662359,0.329803,0.326542,0.167679,0.532529,0.705802,0.680832,0.31172,0.624504,0.42424,0.248137,0.236312,0.387383,0.619227,0.682576,0.583286,0.146243,0.263257,0.579102,0.599058,0.806448,0.890437,0.490179,0.655342,0.543363,0.852961,0.516861,0.822081,0.200613,0.971323,0.889317,0.432657,0.315783,0.481283,0.515479,0.302209,0.840374,0.925625,0.184022,0.389485,0.0392369,0.790583,0.903644,0.835514,0.881844,0.912314,0.757824,0.812499,0.0432821,0.532684,0.792535,0.277708,0.453444,0.723107,0.661091,0.540862,0.362229,0.44316,0.76288,0.36807,0.253698,0.786878,0.88469,0.194524,0.238848,0.290872,0.475324,0.437586,0.763867,0.930292,0.753941,0.277104,0.535231,0.0188279,0.17855,0.0392948,0.706604,0.328444,0.455686,0.553703,0.576738,0.188872,0.901618,0.881923,0.0974327,0.139408,0.428931,0.961559,0.240963,0.325128,0.958316,0.560357,0.975552,0.657158,0.408798,0.659191,0.750421,0.854233,0.147098,0.253245,0.0204291,0.791334,0.394373,0.658141,0.846219,0.0674608,0.529001,0.824357,0.776257,0.899792,0.432819,0.707463,0.875634,0.313121,0.501238,0.125012,0.246296,0.440672,0.932603,0.429804,0.0571666,0.841044,0.37752,0.074617,0.877216,0.837252,0.168491,0.0601556,|0.362736,0.694895,0.268299,0.961773,0.8244,0.482543,0.137345,0.661222,0.912903,0.093768,0.351613,0.796625,0.492617,0.208636,0.261223,0.603851,0.728044,0.0242363,0.97704,0.444934,0.847272,0.0854583,0.959082,0.278316,0.00131392,0.187554,0.0721405,0.970145,0.733417,0.353013,0.503249,0.185486,0.544924,0.730806,0.527807,0.936612,0.665882,0.159153,0.908584,0.444791,0.311913,0.55511,0.54007,0.712442,0.963226,0.728443,0.610884,0.172072,0.360942,0.359109,0.753946,0.321738,0.815096,0.249775,0.511201,0.445877,0.344118,0.442078,0.881606,0.00200844,0.565373,0.399946,0.502038,0.632472,0.729307,0.634699,0.303328,0.0509474,0.385601,0.0900052,0.71698,0.472883,0.290302,0.731531,0.24829,0.122438,0.512926,0.252951,0.600409,0.644563,0.212758,0.227749,0.303242,0.620145,0.848203,0.842452,0.865428,0.689574,0.569666,0.208428,0.754618,0.274577,0.377374,0.21109,0.835715,0.197578,0.923478,0.192351,0.0214169,0.316738,0.942704,0.533462,0.384897,0.111874,0.219959,0.570996,0.668396,0.307982,0.223464,0.46178,0.558366,0.910266,0.0868095,0.332547,0.187001,0.674742,0.670075,0.13138,0.512805,0.731989,0.340949,0.637016,0.543032,0.00364989,0.304423,0.09045,0.435555,0.934595,0.9594,0.290386,0.304117,0.330722,0.00698578,0.768075,0.400942,0.043205,0.263949,0.985094,0.421325,0.647558,0.0425692,0.862521,0.00239837,0.940195,0.862236,0.406634,0.763219,0.189543,0.728604,0.558636,0.828965,0.569968,0.539572,0.0379294,0.358751,0.121874,0.690672,0.556474,0.926467,0.035206,0.882545,0.247,0.110885,0.0876342,0.0331464,0.292713,0.548109,0.619022,0.198022,0.611766,0.7719,0.213295,0.958322,0.83754,0.595168,0.584736,0.381238,0.0482094,0.942186,0.571718,0.887003,0.738791,0.270433,0.292511,0.720226,0.315628,0.549752,0.509781,0.718389,0.325419,0.909651,0.616793,0.867699,0.434342,0.404407,0.00289428,0.634105,0.848186,0.680257,0.102606,0.881358,0.636559,0.361273,0.696903,0.992682,0.969369,0.174857,0.821898,0.677919,0.509892,0.0073148,0.0908898,0.517481,0.418587,0.364007,0.592317,0.79024,0.827361,0.913778,0.824833,0.578032,0.236347,0.93341,0.985594,0.55765,0.274198,0.231727,0.817767,0.265062,0.891033,0.160807,0.79454,0.872837,0.764419,0.201323,0.833398,0.448182,0.119945,0.260295,0.717962,0.756303,0.607264,0.493358,0.185958,0.824449,0.983754,0.948949,0.278264,0.120682,0.892715,0.491203,0.473385,0.784385,0.993414,0.857851,0.744229,0.60016,0.437971,0.0623932,0.733262,0.862113,0.907888,0.767181,0.268972,0.528415,0.678519,0.553104,0.241347,0.0245942,0.317191,0.229891,0.11839,0.701948,0.346873,0.350185,0.34862,0.76688,0.255089,0.17132,0.780738,0.719172,0.0505571,0.705174,0.447161,0.309805,0.532103,0.88512,0.954673,0.944654,0.686779,0.501753,0.865566,0.663096,0.821243,0.269331,0.353823,0.969905,0.926532,0.877692,0.77956,0.650373,0.315119,0.401829,0.115054,0.958505,0.219702,0.566861,0.607399,0.546691,0.0923904,0.224687,0.986634,0.0227502,0.311255,0.635962,0.362459,0.012812,0.284657,0.0950577,0.175522,0.288846,0.403594,0.884515,0.0960144,0.871646,0.313231,0.862273,0.000529706,0.713589,0.79064,0.917618,0.35749,0.199336,0.821745,0.85387,0.120408,0.887899,0.370686,0.61282,0.0556322,0.561387,0.844145,0.32706,0.469016,0.748143,0.673587,0.837771,0.846015,0.0505682,0.499048,0.800354,0.354975,0.407538,0.321053,0.750549,0.710964,0.492638,0.95697,0.95158,0.119547,0.451129,0.83909,0.823959,0.81674,0.775034,0.416728,0.9614,0.836932,0.610712,0.926722,0.670219,0.653674,0.513584,0.122316,0.464468,0.720067,0.300205,0.521143,0.865809,0.790384,0.298777,0.246825,0.656848,0.822339,0.78441,0.835145,0.104326,0.477649,0.0519736,0.134188,0.892644,0.27004,0.654699,0.27898,0.586498,0.626565,0.808905,0.532609,0.0615365,0.899424,0.49658,0.282897,0.0137228,0.841678,0.422745,0.400734,0.615392,0.891359,0.501473,0.88997,0.612904,0.0410267,0.0727607,0.428263,0.988006,0.479245,0.421383,0.935777,0.150309,0.0481503,0.359481,0.715148,0.629265,0.97615,0.0858703,0.268,0.568734,0.959854,0.852898,0.333459,0.325357,0.0137852,0.532096,0.151601,0.0344795,0.37444,0.668114,0.824507,0.700358,0.427082,0.212908,0.878281,0.811423,0.434596,0.254487,0.844013,0.101232,0.712548,0.836383,0.590722,0.180665,0.619442,0.665138,0.598978,0.357017,0.607703,0.901843,0.776214,0.997473,0.915,0.432395,0.702449,0.733702,0.482094,0.64637,0.688178,0.269744,0.218252,0.126797,0.394285,0.43425,0.508154,0.814589,0.855812,0.762418,0.881735,0.233115,0.866367,0.090889,0.394916,0.670641,0.500523,0.0156262,0.207115,0.624745,0.822765,0.166331,0.475953,0.420848,0.676065,0.153229,0.190063,0.164453,0.857711,0.962724,0.254026,0.746487,0.1228,0.693452,0.843754,0.632721,0.898965,0.467551,0.891411,0.984211,0.355385,0.79318,0.17894,0.994411,0.728463,0.630953,0.0569203,0.619489,0.523003,0.860408,0.0845785,0.228769,0.752213,0.449712,0.836601,0.32168,0.891982,0.0781454,0.353425,0.135093,0.656059,0.0665525,0.271046,0.71497,0.65758,0.118728,0.444403,0.206403,0.805993,0.930226,0.415715,0.655559,0.182149,0.992004,0.4029,0.835967,0.710982,0.599087,0.168783,0.483539,0.697113,0.562563,0.246123,0.258236,0.2194,0.81727,0.88707,0.17279,0.546604,0.785838,0.775537,0.673077,0.523025,0.433903,0.88234,0.259313,0.903477,0.707858,0.0567035,0.580759,0.215742,0.868467,0.0705686,0.0568238,0.404752,0.869178,0.180852,0.885349,0.403132,0.162185,0.436185,0.983098,0.379627,0.762482,0.326469,0.538998,0.695713,0.675252,0.0275369,0.122376,0.706901,0.792193,0.753721,0.961982,0.594607,0.254759,0.124295,0.636229,0.771753,0.963763,0.951305,0.139375,0.766526,0.423922,0.692611,0.135438,0.871557,0.72675,0.598745,0.0953163,0.825648,0.0308316,0.775931,0.140044,0.00218874,0.744725,0.574826,0.805504,0.215831,0.692435,0.272735,0.222021,0.818321,0.827368,0.463344,0.459905,0.611093,0.115007,0.442094,0.861116,0.823638,0.931325,0.208338,0.323484,0.301351,0.828371,0.511193,0.715872,0.20113,0.708063,0.0332791,0.746183,0.104454,0.989648,0.0570518,0.183134,0.381285,0.988525,0.429318,0.695965,0.150605,0.0811012,0.961303,0.867252,0.679751,0.299758,0.276666,0.748283,0.973161,0.762004,0.621887,0.492584,0.816898,0.180084,0.241262,0.0679253,0.104295,0.992438,0.469934,0.915563,0.233178,0.905083,0.653328,0.11216,0.408526,0.0966783,0.532759,0.621503,0.355322,0.291936,0.810102,0.457859,0.426274,0.519792,0.238933,0.765149,0.883638,0.160178,0.122012,0.710018,0.500389,0.188752,0.910524,0.821411,0.405775,0.898361,0.614504,0.34648,0.0174441,0.627976,0.721531,0.0207105,0.336389,0.216173,0.882142,0.465365,0.824918,0.911635,0.0599391,0.557109,0.194956,0.909515,0.0721151,0.278887,0.568287,0.473387,0.0556358,0.614577,0.313254,0.272416,0.537625,0.404175,0.892582,0.311823,0.817624,0.25695,0.937026,0.282911,0.699594,0.705612,0.607944,0.93631,0.358212,0.616825,0.540635,0.958121,0.627021,0.728697,0.919251,0.155602,0.721594,0.0729349,0.155653,0.327179,0.75769,0.0119419,0.599097,0.422109,0.938447,0.217812,0.00506419,0.758644,0.877017,0.427189,0.0762991,0.625562,0.995929,0.108999,0.511572,0.499509,0.296105,0.850774,0.135696,0.688635,0.511936,0.888869,0.966844,0.416963,0.827656,0.519299,0.534661,0.425057,0.25482,0.579101,0.097133,0.939642,0.856715,0.734172,0.971153,0.03738,0.83454,0.871375,0.0501762,0.264608,0.33284,0.999165,0.63851,0.70937,0.846829,0.403491,0.917334,0.876334,0.423681,0.0594556,0.537411,0.258885,0.0173711,0.641071,0.512465,0.0812038,0.520041,0.712182,0.44221,0.90604,0.0546373,0.256276,0.150181,0.67122,0.511038,0.393513,0.867255,0.690681,0.23928,0.194672,0.939259,0.361781,0.918664,0.103522,0.509491,0.87988,0.0245661,0.744025,0.665602,0.32613,0.489359,0.435034,0.714992,0.212128,0.0268818,0.264093,0.0390514,0.102857,0.0509436,0.409898,0.0843631,0.530388,0.696026,0.993414,0.994724,0.598508,0.373115,0.718973,0.587584,0.815857,0.414084,0.431665,0.907473,0.720905,0.608801,0.185882,0.0947816,0.0674917,0.97431,0.040249,0.51106,0.734547,0.286967,0.538934,0.0975765,0.548189,0.117424,0.179929,0.00386304,0.0612088,0.156142,0.190932,0.489916,0.243008,0.364661,0.771484,0.0449716,0.653229,0.284297,0.588625,0.936259,0.592174,0.195161,0.743571,0.0889115,0.858449,0.903462,0.25949,0.296366,0.0546589,0.865381,0.757318,0.994472,0.108749,0.403877,0.531278,0.667764,0.403881,0.708136,0.0581041,0.760047,0.464797,0.506678,0.655472,0.295093,0.0383465,0.626265,0.0985911,0.625763,0.492503,0.619548,0.299437,0.680762,0.494954,0.489709,0.296945,0.700785,0.863821,0.163812,0.0231224,0.0913067,0.0186295,0.337826,0.673432,0.802816,0.403445,0.718909,0.333412,0.10866,0.515823,0.632808,0.75166,0.298028,0.901269,0.739073,0.800017,0.179472,0.502691,0.166458,0.104946,0.655517,0.915821,0.476432,0.452139,0.94123,0.54715,0.212467,0.183982,0.30615,0.448364,0.367765,0.552843,0.743535,0.486722,0.406541,0.72881,0.792733,0.315645,0.990287,0.239634,0.717599,0.361712,0.198602,0.552338,0.00929576,0.659479,0.212329,0.0820959,0.737785,0.392406,0.261972,0.504391,0.452118,0.749203,0.142597,0.000416934,0.0995818,0.725496,0.724975,0.664889,0.963091,0.509775,0.057483,0.34739,0.58518,0.181999,0.793463,0.393028,0.138151,0.258163,0.268798,0.624888,0.932305,0.910099,0.45946,0.594233,0.105489,0.953469,0.695038,0.939238,0.300939,0.0276746,0.677499,0.602259,0.5249,0.1862,0.0865387,0.966787,0.22726,0.617143,0.223123,|0.467573,0.680545,0.522927,0.368729,0.932845,0.288235,0.611481,0.421276,0.199462,0.297057,0.198749,0.0779665,0.175969,0.0887241,0.876935,0.440204,0.216027,0.121938,0.633149,0.679244,0.105952,0.97933,0.67724,0.42667,0.798854,0.910475,0.26335,0.429731,0.258406,0.585264,0.450817,0.881158,0.0571131,0.259767,0.90118,0.832552,0.216147,0.533733,0.647118,0.374084,0.713561,0.971038,0.381657,0.531019,0.297368,0.786707,0.627024,0.6892,0.619249,0.530992,0.922388,0.489818,0.510233,0.778203,0.741548,0.129333,0.420058,0.541995,0.430247,0.740597,0.238114,0.391402,0.160423,0.0166317,0.569023,0.716817,0.507452,0.530189,0.559933,0.561107,0.0881909,0.524423,0.247696,0.506653,0.934967,0.389562,0.358749,0.341014,0.250021,0.607178,0.749997,0.739364,0.165395,0.811758,0.692394,0.315708,0.36352,0.964274,0.695563,0.509111,0.191496,0.605953,0.634392,0.555354,0.994836,0.999869,0.2653,0.151754,0.578908,0.657843,0.147974,0.449451,0.150173,0.468526,0.839207,0.446015,0.847086,0.338582,0.205335,0.720864,0.792679,0.639264,0.267952,0.807081,0.034355,0.227797,0.511137,0.336695,0.118453,0.438164,0.481037,0.403227,0.495983,0.588235,0.52983,0.156963,0.382754,0.745567,0.457618,0.204889,0.811144,0.576939,0.565331,0.975317,0.499886,0.79689,0.417313,0.912937,0.530064,0.486819,0.567607,0.475908,0.673675,0.464567,0.317253,0.538126,0.0990911,0.467175,0.929204,0.239295,0.521823,0.231766,0.173294,0.905918,0.288088,0.0601115,0.622851,0.649626,0.0481869,0.515688,0.270884,0.452737,0.195392,0.301094,0.189222,0.877459,0.813425,0.175968,0.685188,0.602541,0.694958,0.323511,0.781987,0.218004,0.361822,0.496963,0.447708,0.988977,0.838853,0.132221,0.996766,0.570447,0.164231,0.676649,0.753162,0.0526079,0.359782,0.208776,0.982796,0.869991,0.406864,0.698334,0.138204,0.406106,0.770001,0.894529,0.255483,0.125021,0.783318,0.468697,0.844395,0.903691,0.770852,0.620894,0.121164,0.244412,0.0676629,0.676918,0.00911438,0.470595,0.300631,0.176458,0.245596,0.157838,0.4368,0.138741,0.554348,0.141307,0.533689,0.847868,0.286327,0.0870632,0.131325,0.571272,0.909374,0.435158,0.709774,0.798998,0.908356,0.0857173,0.224608,0.928564,0.59113,0.0455698,0.0322375,0.584264,0.569149,0.0292562,0.210345,0.106325,0.742303,0.702021,0.939951,0.743293,0.0742326,0.924761,0.180425,0.871447,0.507022,0.0518579,0.236346,0.199989,0.0874427,0.234213,0.364899,0.183973,0.518464,0.823923,0.251395,0.746427,0.0447574,0.547836,0.232263,0.860928,0.0197715,0.420941,0.934005,0.23987,0.934089,0.565017,0.80951,0.572924,0.206981,0.586748,0.476925,0.011119,0.383136,0.0498586,0.533263,0.272148,0.251302,0.594801,0.334382,0.677195,0.350403,0.811059,0.111066,0.599726,0.345777,0.343568,0.0167799,0.912307,0.485414,0.334993,0.266016,0.87369,0.392496,0.936875,0.223849,0.681215,0.803437,0.63704,0.345351,0.146368,0.615196,0.449303,0.578537,0.270199,0.859824,0.434219,0.416924,0.401901,0.321827,0.977989,0.657794,0.18046,0.819081,0.0178708,0.613428,0.909669,0.673209,0.392379,0.668741,0.940209,0.544696,0.895163,0.521593,0.284012,0.901375,0.400394,0.221563,0.443376,0.0924756,0.410841,0.718469,0.48485,0.0342016,0.695524,0.884506,0.216871,0.283199,0.133151,0.216221,0.828241,0.0670673,0.127539,0.024375,0.734987,0.490803,0.0267467,0.620408,0.601848,0.210506,0.0138605,0.770764,0.320512,0.171993,0.745091,0.362764,0.367975,0.635116,0.35497,0.0904441,0.758372,0.0869852,0.677014,0.192227,0.722812,0.63141,0.19543,0.199845,0.3234,0.64413,0.803037,0.0180296,0.795277,0.884431,0.732562,0.745938,0.637646,0.265283,0.788555,0.500857,0.076573,0.256105,0.619294,0.986708,0.116949,0.201273,0.701181,0.955038,0.784066,0.00145012,0.196515,0.23403,0.879213,0.65195,0.382974,0.00767058,0.334442,0.858048,0.497656,0.0347099,0.686681,0.658012,0.261589,0.797271,0.57053,0.770287,0.146209,0.531,0.508764,0.659724,0.483405,0.189557,0.191533,0.79372,0.461726,0.810755,0.253095,0.826932,0.505946,0.632567,0.133096,0.848765,0.4533,0.184761,0.970738,0.292888,0.446526,0.389188,0.205801,0.966993,0.91936,0.528494,0.104522,0.395125,0.68234,0.481576,0.985332,0.852088,0.232098,0.708516,0.696465,0.486844,0.735273,0.169302,0.772581,0.110793,0.687616,0.446874,0.64817,0.313938,0.057304,0.265136,0.0468754,0.150292,0.734167,0.661749,0.366383,0.328978,0.322234,0.159905,0.293711,0.0392307,0.704449,0.635213,0.53744,0.248858,0.68792,0.966908,0.180637,0.480345,0.989169,0.49791,0.38495,0.411686,0.967759,0.943408,0.678525,0.885636,0.93224,0.277365,0.950107,0.843782,0.296814,0.981338,0.5972,0.391102,0.151169,0.240705,0.764967,0.535054,0.062896,0.353715,0.287472,0.360626,0.950984,0.716131,0.921728,0.897572,0.127248,0.210199,0.355818,0.988532,0.948033,0.420573,0.600409,0.423794,0.144577,0.328905,0.894049,0.659866,0.384719,0.278493,0.667399,0.518113,0.658911,0.293289,0.360859,0.137931,0.340434,0.0872658,0.212708,0.77766,0.712422,0.508343,0.0991818,0.360081,0.764537,0.0552885,0.602452,0.310439,0.813352,0.0285135,0.0645177,0.307087,0.53537,0.158527,0.270558,0.505793,0.937752,0.890731,0.103976,0.667889,0.984978,0.0733247,0.608208,0.0223791,0.281611,0.0168619,0.814995,0.420534,0.0860291,0.464583,0.528561,0.268664,0.851315,0.59603,0.711154,0.24779,0.047183,0.908363,0.00924158,0.601189,0.871755,0.0558329,0.980683,0.494741,0.566826,0.982737,0.719993,0.503316,0.703703,0.197635,0.497481,0.250327,0.614954,0.617418,0.563064,0.42712,0.303086,0.443007,0.565491,0.45727,0.938514,0.301927,0.502641,0.7426,0.960462,0.246007,0.444221,0.392325,0.0745501,0.867507,0.180129,0.923476,0.977979,0.127326,0.743344,0.31635,0.023067,0.726454,0.380995,0.673042,0.51479,0.586891,0.615739,0.258041,0.732967,0.167185,0.091924,0.482261,0.848893,0.186265,0.34399,0.470459,0.186204,0.956899,0.315437,0.53179,0.69207,0.555425,0.0472565,0.972087,0.958241,0.373395,0.483173,0.823808,0.799058,0.0181324,0.166644,0.68854,0.916666,0.837512,0.0362484,0.859328,0.484961,0.369044,0.230624,0.489231,0.592534,0.515483,0.604973,0.390208,0.303672,0.46055,0.591878,0.412306,0.553228,0.130522,0.790432,0.599537,0.503206,0.569303,0.135969,0.778715,0.729045,0.737649,0.963158,0.837176,0.589539,0.809409,0.486224,0.38281,0.246777,0.603734,0.428504,0.429733,0.0282016,0.0352797,0.128427,0.800544,0.354906,0.232308,0.547533,0.103437,0.974648,0.527016,0.691016,0.693113,0.80864,0.234485,0.219874,0.576401,0.773175,0.845239,0.706971,0.141319,0.704746,0.826442,0.734922,0.790233,0.495375,0.238385,0.91951,0.504326,0.636922,0.350687,0.993946,0.963116,0.926113,0.861379,0.87721,0.960298,0.0356663,0.347872,0.216179,0.945708,0.697608,0.10086,0.598328,0.405366,0.637783,0.259582,0.380969,0.792594,0.283718,0.214036,0.857342,0.624389,0.583292,0.813977,0.875724,0.0137046,0.510107,0.153939,0.789584,0.720691,0.849307,0.511044,0.57503,0.3773,0.357501,0.0803283,0.234302,0.861519,0.526568,0.41412,0.0243568,0.44475,0.753649,0.731675,0.215828,0.0256835,0.700865,0.114009,0.44058,0.15929,0.490087,0.691161,0.83688,0.577162,0.270635,0.0494058,0.241843,0.52367,0.764603,0.26315,0.0598615,0.174995,0.0181283,0.0367488,0.322981,0.982456,0.119789,0.269552,0.552988,0.906831,0.518308,0.401167,0.540856,0.912914,0.541215,0.370668,0.955544,0.44127,0.521782,0.532656,0.7534,0.579635,0.535521,0.712406,0.136158,0.241797,0.255045,0.754579,0.960101,0.38722,0.981129,0.903768,0.120425,0.217137,0.441943,0.797548,0.443327,0.483453,0.83371,0.733206,0.610651,0.504841,0.528279,0.414393,0.251296,0.0969599,0.289068,0.465856,0.164185,0.636721,0.0280323,0.981326,0.96772,0.822032,0.12582,0.246704,0.373226,0.640473,0.667462,0.460398,0.77126,0.856503,0.698116,0.0873159,0.115679,0.60768,0.222439,0.935244,0.414902,0.861529,0.77868,0.513115,0.778607,0.629241,0.940351,0.561072,0.685689,0.925545,0.951444,0.884827,0.707754,0.492504,0.836425,0.0110288,0.19279,0.0392085,0.539396,0.908117,0.0662663,0.00802869,0.137038,0.0873052,0.131795,0.246968,0.716385,0.182573,0.3851,0.297706,0.760201,0.775669,0.994561,0.758982,0.935832,0.366349,0.684731,0.917867,0.505976,0.77219,0.27822,0.710793,0.0604082,0.30101,0.975596,0.117001,0.149996,0.52615,0.793548,0.49096,0.799717,0.276254,0.367211,0.331083,0.384126,0.226247,0.355515,0.262438,0.592119,0.415453,0.993303,0.000193954,0.0924935,0.536156,0.118271,0.0581291,0.83229,0.940179,0.8097,0.475355,0.934542,0.30699,0.590108,0.00368953,0.295921,0.140758,0.455288,0.41068,0.662699,0.817574,0.749488,0.137354,0.6533,0.833935,0.645221,0.0799096,0.452087,0.319128,0.0928096,0.686415,0.413854,0.595374,0.819627,0.8532,0.716897,0.623756,0.402723,0.204849,0.176748,0.871865,0.833504,0.277658,0.862677,0.119981,0.489317,0.626051,0.248544,0.849206,0.370137,0.638623,0.671226,0.892122,0.46639,0.850744,0.78659,0.618934,0.00270277,0.15076,0.0220261,0.792993,0.101172,0.818521,0.349983,0.722668,0.688809,0.205164,0.574372,0.994531,0.17546,0.785162,0.920262,0.683353,0.190091,0.911925,0.0736132,0.347791,0.0230529,0.87233,0.0189855,0.427557,0.235105,0.0552004,0.860436,0.0924254,0.945172,0.924253,0.711859,0.838262,0.807715,0.666285,0.723389,0.732755,0.231599,0.0660136,0.337133,0.232071,0.646647,0.0528569,0.849622,0.48318,0.36061,0.551497,0.648672,0.404904,0.519495,0.112712,0.28718,0.343821,0.412119,0.219684,0.949302,0.97088,0.851708,|0.137141,0.462389,0.734765,0.249932,0.790966,0.735829,0.965267,0.302319,0.771796,0.89211,0.0739462,0.122074,0.961751,0.108818,0.740514,0.572482,0.954244,0.689763,0.403839,0.692444,0.950636,0.87463,0.486339,0.904895,0.597217,0.67184,0.975355,0.140448,0.531279,0.106571,0.324797,0.634417,0.593372,0.869059,0.582964,0.838551,0.754868,0.895149,0.855097,0.666555,0.439274,0.750679,0.465461,0.265925,0.327181,0.144975,0.413104,0.958291,0.269478,0.691863,0.14189,0.522164,0.663432,0.903388,0.965141,0.678546,0.324412,0.605335,0.67867,0.0972766,0.219565,0.693397,0.713916,0.0983714,0.112083,0.152879,0.615327,0.286958,0.290769,0.794906,0.455636,0.860327,0.771022,0.722016,0.44806,0.0175085,0.265109,0.935672,0.430784,0.341681,0.987144,0.4996,0.841906,0.92527,0.37947,0.78502,0.413553,0.753695,0.106303,0.613219,0.585758,0.113109,0.777776,0.660054,0.110274,0.0212482,0.0766506,0.392953,0.904885,0.0254241,0.366808,0.474259,0.12288,0.873629,0.180846,0.267595,0.191985,0.158591,0.686724,0.2583,0.101237,0.619038,0.327366,0.814497,0.664151,0.0734027,0.15255,0.351574,0.720654,0.988094,0.0677816,0.871972,0.117782,0.566325,0.969066,0.679495,0.184988,0.578543,0.0309379,0.465084,0.638552,0.512376,0.161922,0.486554,0.376253,0.467785,0.845952,0.459629,0.982693,0.133801,0.168352,0.574105,0.729151,0.402487,0.0235205,0.940797,0.0154943,0.206208,0.226654,0.0461554,0.955063,0.163868,0.794777,0.140943,0.11662,0.378283,0.239572,0.560285,0.406521,0.910811,0.20635,0.572293,0.554217,0.53926,0.76465,0.0201191,0.561463,0.484534,0.621918,0.729265,0.838925,0.219602,0.133061,0.0826367,0.164523,0.364236,0.586186,0.163477,0.328802,0.884203,0.144398,0.939793,0.27168,0.0188577,0.991553,0.806003,0.632854,0.207721,0.889312,0.287533,0.748391,0.724192,0.807196,0.507261,0.0695541,0.187786,0.0946262,0.0509026,0.250971,0.497389,0.440324,0.875632,0.0247502,0.0827029,0.507975,0.163152,0.232308,0.905412,0.04448,0.968907,0.622035,0.800517,0.102968,0.0208215,0.516742,0.311167,0.582006,0.59785,0.543496,0.140555,0.738467,0.780834,0.217083,0.261677,0.397579,0.115835,0.110117,0.408758,0.0349203,0.679035,0.891871,0.503038,0.160277,0.164458,0.261913,0.587424,0.538166,0.375502,0.811463,0.862444,0.382926,0.643657,0.165024,0.934524,0.689679,0.284565,0.718869,0.0805573,0.249859,0.995829,0.0862358,0.220798,0.697327,0.182915,0.780874,0.658685,0.580781,0.239789,0.633107,0.963149,0.9429,0.100278,0.679291,0.13273,0.928057,0.0348956,0.880435,0.452211,0.554592,0.968567,0.114356,0.641011,0.703814,0.0026567,0.998727,0.780118,0.734249,0.38591,0.88073,0.0441123,0.499139,0.296268,0.77266,0.844927,0.840972,0.250753,0.261773,0.762829,0.634892,0.459111,0.465392,0.256249,0.103464,0.59532,0.739842,0.869594,0.477477,0.468273,0.406283,0.135598,0.249495,0.408541,0.337763,0.931218,0.368404,0.803104,0.823136,0.191319,0.324901,0.770119,0.67997,0.0697136,0.367406,0.301673,0.3541,0.680956,0.569212,0.786319,0.474255,0.165132,0.7067,0.162051,0.725733,0.288265,0.881833,0.154004,0.40618,0.845988,0.522269,0.0978212,0.578428,0.839967,0.418347,0.697732,0.0785928,0.0673349,0.547909,0.968804,0.985777,0.266438,0.952141,0.564239,0.177094,0.945375,0.699051,0.794053,0.764581,0.402311,0.467395,0.233589,0.605494,0.616383,0.370493,0.934679,0.470054,0.70045,0.753976,0.361936,0.711354,0.245499,0.886621,0.650173,0.980791,0.23869,0.37478,0.384026,0.305594,0.999427,0.922382,0.257813,0.814999,0.455463,0.293902,0.944602,0.841644,0.209855,0.788086,0.810678,0.799667,0.127578,0.723888,0.280656,0.375601,0.749669,0.743754,0.611,0.0150191,0.947354,0.0491288,0.760779,0.540544,0.14039,0.431652,0.523704,0.791839,0.555192,0.450169,0.139552,0.0346751,0.156128,0.599967,0.00157797,0.0854119,0.0699546,0.647717,0.65985,0.143414,0.970122,0.303921,0.263472,0.977339,0.269038,0.700927,0.345164,0.264203,0.623978,0.990379,0.140783,0.552658,0.835798,0.24226,0.609117,0.0957693,0.00589561,0.0760511,0.411049,0.567375,0.65365,0.199199,0.00777978,0.338661,0.745983,0.855241,0.015414,0.59624,0.704383,0.703505,0.739071,0.0378343,0.38902,0.44053,0.796341,0.509772,0.195685,0.992888,0.160643,0.493873,0.170751,0.620259,0.884148,0.35987,0.170553,0.0328597,0.994178,0.109383,0.73042,0.403486,0.766266,0.726986,0.0265617,0.079956,0.21596,0.273157,0.641768,0.564146,0.936689,0.588458,0.60594,0.00709265,0.424921,0.380681,0.81101,0.279723,0.928441,0.959829,0.127742,0.809245,0.101726,0.913993,0.972298,0.79823,0.586567,0.67891,0.158636,0.982109,0.0136008,0.143293,0.746819,0.575607,0.976415,0.325712,0.781991,0.229396,0.0708582,0.887306,0.916856,0.423143,0.396624,0.566816,0.605136,0.454812,0.73207,0.95521,0.0753174,0.784177,0.0483863,0.975818,0.799288,0.342141,0.720476,0.708618,0.456732,0.217822,0.683103,0.572235,0.327223,0.225837,0.246594,0.585298,0.240352,0.215459,0.699812,0.593879,0.701167,0.348716,0.207506,0.748823,0.518819,0.697393,0.505424,0.384309,0.31202,0.879387,0.614628,0.0532548,0.997064,0.666916,0.0134812,0.510951,0.608468,0.165742,0.327244,0.717951,0.578965,0.617874,0.774204,0.86451,0.967892,0.102965,0.721451,0.377675,0.0936716,0.841544,0.28409,0.514735,0.158182,0.751113,0.742944,0.920821,0.209912,0.432474,0.725955,0.318912,0.945446,0.362266,0.557098,0.316065,0.141817,0.633502,0.317972,0.744366,0.630827,0.0241876,0.211425,0.813154,0.555251,0.00446653,0.970612,0.907157,0.25853,0.959616,0.0852016,0.127915,0.175494,0.104063,0.345651,0.491883,0.753777,0.795738,0.311595,0.182998,0.610482,0.419837,0.341739,0.270069,0.532545,0.175839,0.519258,0.886833,0.997878,0.0775059,0.162741,0.511202,0.612581,0.441727,0.354235,0.386257,0.813776,0.579859,0.587063,0.938233,0.204937,0.286498,0.713287,0.199932,0.90717,0.978843,0.806856,0.191358,0.792064,0.235097,0.532275,0.815043,0.42556,0.330289,0.966406,0.787219,0.693507,0.801571,0.637137,0.709049,0.806984,0.819964,0.928547,0.356209,0.220536,0.248367,0.450962,0.639293,0.269202,0.376728,0.530605,0.572051,0.921524,0.631079,0.123106,0.680003,0.140562,0.0248135,0.704742,0.176048,0.210438,0.727197,0.524719,0.162656,0.528978,0.249626,0.774957,0.0248205,0.779325,0.798717,0.114626,0.770125,0.1689,0.975712,0.306696,0.192036,0.486075,0.690183,0.492499,0.282634,0.0393828,0.781225,0.582868,0.547445,0.902122,0.773574,0.0480973,0.0281539,0.535698,0.411702,0.327754,0.709054,0.319695,0.803227,0.722649,0.547757,0.102074,0.212402,0.343593,0.0660442,0.25091,0.316189,0.581592,0.171091,0.727021,0.885109,0.426163,0.753066,0.453842,0.111671,0.637563,0.379599,0.31016,0.872477,0.176522,0.336175,0.58076,0.170435,0.608732,0.815445,0.547365,0.0740047,0.439338,0.540558,0.308371,0.337452,0.767771,0.11937,0.840623,0.566742,0.901826,0.0276728,0.333982,0.753729,0.384535,0.461318,0.0752933,0.206529,0.235579,0.102253,0.599841,0.552672,0.4895,0.958161,0.835804,0.908862,0.0867733,0.52813,0.897808,0.615289,0.412374,0.850242,0.236641,0.177207,0.540338,0.999538,0.290219,0.779344,0.0530828,0.277269,0.238635,0.217172,0.893814,0.620674,0.916111,0.83686,0.957365,0.572131,0.0245551,0.998653,0.97129,0.899419,0.254507,0.826676,0.0884563,0.595207,0.803273,0.709913,0.0860109,0.335493,0.447783,0.943492,0.099048,0.298189,0.466696,0.448983,0.854583,0.786387,0.469329,0.49095,0.82662,0.246339,0.755848,0.0309149,0.693807,0.901105,0.966369,0.930689,0.57818,0.35614,0.940167,0.0742302,0.0655568,0.34591,0.0952656,0.321054,0.678289,0.59684,0.145103,0.33867,0.400358,0.314836,0.789142,0.268855,0.447794,0.264247,0.802307,0.368223,0.978674,0.295881,0.102683,0.980709,0.16965,0.325726,0.116754,0.0435615,0.678485,0.285615,0.359203,0.867575,0.582526,0.907265,0.0835209,0.382404,0.0101386,0.202337,0.75428,0.0352005,0.500109,0.736903,0.29889,0.504978,0.530714,0.572936,0.116143,0.751545,0.879107,0.0603557,0.26095,0.500363,0.200842,0.0795408,0.798934,0.391093,0.531803,0.903723,0.655783,0.953117,0.936076,0.780538,0.917226,0.457647,0.392121,0.552198,0.783495,0.841975,0.426532,0.737257,0.538565,0.600512,0.600624,0.0265402,0.6999,0.0952212,0.998841,0.255075,0.151779,0.430703,0.727818,0.503475,0.625933,0.115682,0.27088,0.588857,0.805484,0.283946,0.0821311,0.438868,0.306503,0.799947,0.487807,0.565635,0.178777,0.25541,0.121881,0.507124,0.578562,0.291477,0.831875,0.601114,0.192289,0.0797946,0.497106,0.784586,0.0758381,0.146424,0.427215,0.397006,0.48162,0.80124,0.435891,0.694094,0.728432,0.407803,0.782115,0.209637,0.69991,0.632283,0.207322,0.0721306,0.434024,0.374363,0.442401,0.661346,0.627486,0.628178,0.892622,0.37098,0.397803,0.0567784,0.8721,0.574386,0.727564,0.749887,0.123776,0.511657,0.316165,0.153412,0.351979,0.456761,0.908409,0.687822,0.39141,0.673245,0.737711,0.2664,0.19986,0.914211,0.960934,0.598057,0.616334,0.169539,0.976447,0.317543,0.328791,0.293996,0.528138,0.973644,0.162302,0.708639,0.966496,0.978404,0.0826795,0.975123,0.366219,0.350322,0.989886,0.244681,0.733083,0.389232,0.531571,0.242043,0.421183,0.913421,0.302627,0.362066,0.00264728,0.838798,0.995648,0.65895,0.911059,0.972537,0.9806,0.257527,0.552222,0.633267,0.155868,0.0312321,0.885958,0.647278,0.520346,0.540324,0.866421,0.621554,0.761397,0.252019,0.279073,0.892315,0.222728,0.802634,0.0178545,0.566082,0.96124,0.760397,0.775625,0.456925,0.994384,0.499265,0.197165,|0.798232,0.332622,0.649964,0.928485,0.931565,0.310788,0.439434,0.493077,0.364246,0.020525,0.432528,0.189255,0.537729,0.229185,0.643418,0.383165,0.0734487,0.144979,0.209358,0.956818,0.323056,0.383096,0.962949,0.977623,0.813622,0.442736,0.644609,0.857952,0.603917,0.978889,0.13415,0.858404,0.402596,0.895442,0.457457,0.315987,0.528281,0.000840425,0.823897,0.588607,0.770315,0.517281,0.410845,0.434822,0.629591,0.494691,0.634386,0.486584,0.118473,0.017715,0.222057,0.827987,0.546916,0.511322,0.567274,0.532179,0.699097,0.615845,0.415544,0.834853,0.947591,0.0716764,0.669432,0.662032,0.0459724,0.0865631,0.512615,0.350947,0.645967,0.0752058,0.266723,0.611659,0.179161,0.046241,0.484784,0.379454,0.546396,0.335024,0.962581,0.177102,0.112194,0.800231,0.381225,0.471844,0.193682,0.00211155,0.192715,0.855476,0.235115,0.634524,0.418414,0.207229,0.42301,0.00625509,0.611787,0.189658,0.510965,0.562542,0.726323,0.4231,0.795841,0.509627,0.101513,0.597309,0.648925,0.908516,0.343188,0.208865,0.156027,0.323379,0.601597,0.559821,0.750864,0.610602,0.0629239,0.587232,0.453022,0.987707,0.866374,0.223943,0.172462,0.801337,0.996473,0.203347,0.634034,0.72342,0.041442,0.884569,0.699345,0.0744919,0.993931,0.789183,0.177636,0.24878,0.235693,0.276288,0.482266,0.815073,0.85477,0.740167,0.467155,0.979524,0.912221,0.291947,0.832815,0.0905457,0.210322,0.214839,0.154868,0.721432,0.527459,0.255093,0.341935,0.627516,0.353639,0.303342,0.0990199,0.881397,0.167288,0.555612,0.0128117,0.416453,0.966483,0.171207,0.664311,0.134722,0.858927,0.839039,0.262669,0.45715,0.118323,0.466608,0.00770587,0.142019,0.579292,0.587294,0.839693,0.172728,0.999656,0.0987613,0.384133,0.293544,0.802426,0.0261241,0.662174,0.850974,0.887327,0.719862,0.303277,0.790372,0.238077,0.798701,0.931097,0.0944973,0.168075,0.0152001,0.194784,0.631783,0.374918,0.150662,0.00517309,0.441967,0.148011,0.546518,0.070621,0.275865,0.460626,0.759029,0.993615,0.420772,0.265118,0.704497,0.969666,0.357056,0.323885,0.387736,0.717031,0.985413,0.385336,0.324599,0.975968,0.983632,0.0937248,0.338302,0.0852724,0.972893,0.814729,0.124618,0.900264,0.460248,0.977648,0.243425,0.505421,0.142297,0.626062,0.696543,0.431282,0.418663,0.431474,0.427602,0.880443,0.568043,0.6767,0.0588282,0.632051,0.117817,0.752519,0.266787,0.716163,0.743591,0.44175,0.849057,0.57385,0.183147,0.899259,0.650441,0.737198,0.422058,0.0270355,0.0793125,0.00594074,0.653168,0.593024,0.426515,0.769396,0.902112,0.139156,0.137082,0.730655,0.441521,0.993575,0.946904,0.48105,0.470391,0.864528,0.683548,0.781322,0.748866,0.674516,0.468635,0.878061,0.907217,0.409794,0.467341,0.949835,0.262307,0.382399,0.782438,0.849915,0.0154929,0.0654176,0.102359,0.259411,0.763517,0.356848,0.366005,0.417309,0.256517,0.892021,0.0751469,0.401041,0.656594,0.923142,0.610597,0.477459,0.125665,0.209724,0.914047,0.00521988,0.236471,0.953655,0.180266,0.230422,0.48396,0.622798,0.775656,0.967027,0.486702,0.256071,0.380453,0.311684,0.140149,0.0132264,0.932351,0.00890589,0.578424,0.649364,0.0725495,0.498419,0.627464,0.453114,0.289738,0.244835,0.0575283,0.76243,0.988065,0.664785,0.600876,0.603321,0.406467,0.432028,0.21842,0.700109,0.191752,0.877182,0.614807,0.779982,0.403281,0.167601,0.471506,0.499271,0.141979,0.611361,0.631393,0.100642,0.727054,0.635158,0.390585,0.671868,0.748028,0.478331,0.448586,0.379585,0.145383,0.184402,0.327893,0.867914,0.167157,0.74911,0.359747,0.732418,0.571536,0.983766,0.17975,0.606477,0.370329,0.0586745,0.322681,0.598563,0.504371,0.615637,0.729569,0.914919,0.21181,0.0200337,0.547069,0.858516,0.898073,0.673144,0.598694,0.796676,0.796661,0.932871,0.261378,0.390243,0.634461,0.871318,0.591343,0.393198,0.0869795,0.671201,0.223856,0.47603,0.772333,0.100066,0.860851,0.532081,0.651601,0.0186022,0.939346,0.561125,0.567162,0.954293,0.820368,0.710667,0.965587,0.751914,0.989983,0.515085,0.759798,0.210434,0.308929,0.585012,0.383925,0.617859,0.61561,0.0570253,0.117831,0.467703,0.880863,0.719884,0.999658,0.724185,0.998439,0.537777,0.468542,0.295255,0.611741,0.432165,0.444957,0.955572,0.899906,0.385253,0.755995,0.283709,0.165196,0.218384,0.587208,0.428603,0.646587,0.465538,0.96294,0.149613,0.743521,0.29626,0.244471,0.928172,0.165031,0.407311,0.949736,0.687073,0.685287,0.198188,0.731381,0.390881,0.993678,0.46717,0.763471,0.764254,0.594746,0.0322425,0.727941,0.126822,0.604043,0.847488,0.0482352,0.58959,0.937145,0.768134,0.704782,0.796991,0.357547,0.65242,0.228348,0.187167,0.851826,0.688431,0.727115,0.622706,0.177848,0.40288,0.565423,0.43834,0.919553,0.484478,0.2715,0.0607811,0.304103,0.471142,0.293307,0.630769,0.20852,0.364795,0.0234305,0.432448,0.294144,0.18441,0.538424,0.264869,0.16569,0.795487,0.0150948,0.780406,0.804027,0.00166905,0.257076,0.953321,0.869706,0.39755,0.42438,0.92338,0.840191,0.278646,0.797954,0.639312,0.0378848,0.572597,0.858953,0.946659,0.982453,0.255574,0.348708,0.814632,0.0663794,0.297725,0.891607,0.595687,0.491342,0.401019,0.809531,0.492512,0.274751,0.727476,0.560655,0.154635,0.96136,0.201581,0.475609,0.227609,0.813245,0.0943125,0.731306,0.47599,0.126898,0.162618,0.879545,0.0595731,0.974166,0.832389,0.261836,0.628356,0.379523,0.663245,0.173739,0.55042,0.422424,0.814656,0.596058,0.580667,0.220345,0.492961,0.132431,0.0504659,0.897165,0.495867,0.856696,0.958423,0.104119,0.453698,0.0377962,0.958646,0.731645,0.0163428,0.615527,0.494581,0.998818,0.784912,0.87277,0.681651,0.0596125,0.584321,0.890564,0.217342,0.846881,0.564705,0.623508,0.262227,0.270208,0.880294,0.0198172,0.112488,0.595033,0.503158,0.889681,0.387539,0.735643,0.192199,0.124889,0.40404,0.130175,0.439915,0.0679137,0.468593,0.874896,0.843933,0.951789,0.456052,0.00743014,0.50354,0.934046,0.628253,0.039279,0.605716,0.161384,0.0175852,0.185941,0.167605,0.0293936,0.900303,0.557502,0.0743708,0.158536,0.669241,0.436864,0.621558,0.560687,0.883491,0.999674,0.659136,0.318683,0.757147,0.0239449,0.955374,0.0839032,0.442917,0.546822,0.950359,0.917646,0.875416,0.0252352,0.28318,0.710027,0.731961,0.995846,0.391858,0.498268,0.697798,0.199938,0.37743,0.169374,0.993557,0.539798,0.611392,0.354477,0.877923,0.720537,0.348192,0.0165198,0.769101,0.177862,0.441792,0.62314,0.288334,0.70037,0.111206,0.225788,0.782054,0.207459,0.0693054,0.777315,0.0820943,0.326958,0.856107,0.623008,0.318669,0.872505,0.368267,0.240556,0.106909,0.78385,0.118543,0.105311,0.934125,0.943029,0.176068,0.704455,0.508511,0.144596,0.530063,0.195029,0.339596,0.731545,0.957178,0.361986,5.60284e-05,0.868591,0.125734,0.404192,0.600807,0.346072,0.610967,0.452077,0.454423,0.736575,0.971351,0.776792,0.703626,0.910244,0.81713,0.0765191,0.294773,0.462706,0.00398391,0.261319,0.698463,0.118288,0.783881,0.692067,0.581408,0.139781,0.385879,0.899921,0.993421,0.537094,0.331584,0.447403,0.829004,0.623456,0.113194,0.820161,0.661643,0.426417,0.802111,0.880957,0.869656,0.673481,0.281657,0.608019,0.95904,0.616907,0.93149,0.498711,0.513277,0.256511,0.477942,0.763308,0.240271,0.0948259,0.480862,0.0468796,0.221474,0.3503,0.87767,0.936809,0.830151,0.863199,0.767509,0.526906,0.650918,0.875849,0.00447673,0.979842,0.375279,0.812161,0.454205,0.0186745,0.614355,0.704419,0.163704,0.517239,0.474409,0.252517,0.0823606,0.856718,0.219031,0.737743,0.52579,0.822428,0.568413,0.532291,0.185453,0.508252,0.535873,0.580468,0.209656,0.696765,0.211447,0.465498,0.444978,0.120167,0.614407,0.416419,0.913409,0.668896,0.0570247,0.168287,0.30435,0.0175123,0.755685,0.912994,0.361076,0.0212098,0.748423,0.932236,0.165422,0.988659,0.882792,0.162236,0.87323,0.957221,0.731751,0.395653,0.0419889,0.209463,0.118747,0.840218,0.132865,0.0544616,0.880684,0.525429,0.508025,0.212119,0.0639938,0.126305,0.711796,0.82717,0.470211,0.369588,0.789162,0.572843,0.904383,0.195802,0.178307,0.534681,0.7871,0.0489275,0.372484,0.168982,0.490666,0.535263,0.435478,0.535716,0.579945,0.127929,0.164232,0.174999,0.113877,0.618362,0.755848,0.831847,0.0145268,0.220258,0.916069,0.278491,0.00124532,0.58713,0.468426,0.218286,0.313955,0.520516,0.059933,0.545309,0.0675504,0.712876,0.28699,0.10882,0.829566,0.912122,0.623689,0.399242,0.77359,0.266758,0.554419,0.491042,0.637386,0.852358,0.747482,0.917904,0.588082,0.0540419,0.914869,0.90878,0.910328,0.589455,0.669925,0.522034,0.136951,0.128293,0.785939,0.567911,0.524549,0.550393,0.210922,0.68419,0.562733,0.115215,0.066607,0.835259,0.413517,0.0269807,0.649081,0.832041,0.64968,0.150326,0.178298,0.730344,0.804091,0.383801,0.869936,0.434481,0.203911,0.296871,0.521248,0.866087,0.821402,0.532986,0.791793,0.714738,0.398583,0.627887,0.17836,0.371434,0.53154,0.159075,0.742571,0.327219,0.766885,0.272974,0.548028,0.622208,0.894852,0.909911,0.807471,0.0783646,0.224135,0.354031,0.998637,0.675068,0.967251,0.134803,0.888742,0.370606,0.199561,0.591865,0.531862,0.0346383,0.0594653,0.16716,0.026746,0.402034,0.121686,0.0699873,0.86714,0.971503,0.994064,0.113488,0.234035,0.398196,0.353315,0.570018,0.479371,0.54855,0.999858,0.517436,0.255736,0.450045,0.635804,0.0111681,0.83104,0.561732,0.0419049,0.10346,0.789745,0.603546,0.149223,0.613444,0.850942,0.548637,0.0557505,0.363573,0.180197,0.55311,0.000711739,0.518042,0.072399,0.147687,0.572548,0.938485,0.697142,0.103023,|0.892692,0.956228,0.94536,0.764863,0.061475,0.554665,0.185768,0.802695,0.877145,0.83032,0.100776,0.0103458,0.168699,0.187322,0.286531,0.91144,0.591106,0.748876,0.558711,0.172411,0.354515,0.290701,0.851275,0.431046,0.829179,0.5822,0.545102,0.0468698,0.662715,0.113525,0.717746,0.790671,0.580078,0.511938,0.30762,0.472539,0.366359,0.448485,0.15916,0.48107,0.763637,0.592935,0.955104,0.16443,0.672275,0.167874,0.213412,0.912293,0.990764,0.296949,0.263228,0.248645,0.539352,0.329547,0.934766,0.995371,0.688893,0.263213,0.0028137,0.363024,0.732327,0.486827,0.233715,0.210172,0.403051,0.399807,0.40259,0.0144773,0.335485,0.425362,0.990206,0.805606,0.989595,0.88498,0.820063,0.359726,0.935169,0.850219,0.583038,0.0678653,0.976905,0.816278,0.0776665,0.0401059,0.749897,0.121284,0.133738,0.27724,0.863309,0.00444353,0.881544,0.988616,0.948246,0.764579,0.277529,0.562646,0.965904,0.816152,0.665668,0.0104538,0.426678,0.936996,0.157201,0.151168,0.288464,0.158326,0.755448,0.777401,0.85337,0.965346,0.889184,0.979578,0.494802,0.506165,0.52538,0.687645,0.246977,0.630495,0.221701,0.787652,0.492778,0.844211,0.442082,0.773171,0.149933,0.227294,0.349065,0.2469,0.405976,0.194929,0.906645,0.206605,0.108971,0.579309,0.878054,0.783572,0.20397,0.387705,0.171793,0.511481,0.513384,0.078983,0.725805,0.363514,0.703042,0.107148,0.0177686,0.354717,0.575509,0.862403,0.0493724,0.62764,0.926569,0.574745,0.124543,0.147688,0.770175,0.212592,0.120534,0.0594555,0.641531,0.592598,0.838599,0.106859,0.826592,0.395187,0.0347764,0.71092,0.0836395,0.0332528,0.21266,0.732085,0.541361,0.473449,0.141233,0.112249,0.344397,0.191614,0.0624088,0.406901,0.934186,0.0164408,0.986151,0.821862,0.352141,0.451536,0.874129,0.19065,0.197695,0.405828,0.0516166,0.691958,0.627243,0.0555815,0.24223,0.990218,0.308853,0.634679,0.0296735,0.586035,0.302224,0.318515,0.258962,0.998038,0.734515,0.347727,0.145016,0.10448,0.91608,0.814873,0.0995282,0.509326,0.559371,0.406747,0.601428,0.400676,0.23632,0.516721,0.940631,0.478943,0.00451553,0.776253,0.926564,0.0942045,0.151379,0.108945,0.501931,0.0372106,0.564387,0.628888,0.797649,0.359786,0.869152,0.609905,0.566936,0.335598,0.881208,0.112099,0.0868809,0.116979,0.361719,0.267604,0.248893,0.459367,0.636974,0.847234,0.547837,0.0611663,0.202853,0.772809,0.558613,0.269628,0.278317,0.465296,0.488679,0.424386,0.104903,0.110837,0.420337,0.475033,0.0220939,0.910488,0.83134,0.070043,0.246368,0.202981,0.184172,0.00219363,0.343283,0.454319,0.118815,0.871112,0.926174,0.0538675,0.555504,0.949781,0.00524271,0.924954,0.398966,0.580454,0.909377,0.678997,0.610607,0.360297,0.228557,0.900989,0.508458,0.664035,0.818765,0.981771,0.464871,0.662688,0.837861,0.621238,0.312279,0.0353025,0.089658,0.665346,0.569009,0.818965,0.0836098,0.209643,0.233517,0.73299,0.831653,0.872166,0.242095,0.239899,0.214869,0.246415,0.939573,0.707238,0.131625,0.190467,0.118259,0.771459,0.0134419,0.0154033,0.0540165,0.296497,0.831165,0.657909,0.19333,0.707438,0.798987,0.915287,0.122093,0.675851,0.452182,0.434783,0.967544,0.286279,0.614163,0.67589,0.979157,0.229425,0.869614,0.961524,0.860786,0.138694,0.18249,0.149457,0.268068,0.760435,0.621903,0.889562,0.771042,0.345122,0.998398,0.885081,0.937605,0.771638,0.0179039,0.440403,0.582235,0.814865,0.643291,0.365651,0.69959,0.0323577,0.351591,0.896103,0.113489,0.152617,0.728906,0.261549,0.393844,0.16623,0.294965,0.631049,0.277196,0.194945,0.465809,0.219119,0.404859,0.412163,0.867455,0.417729,0.0199822,0.17046,0.679866,0.475229,0.830116,0.182242,0.929573,0.768066,0.779597,0.000862718,0.988211,0.0832493,0.701853,0.161253,0.833251,0.305376,0.685237,0.189532,0.995642,0.288997,0.131053,0.824529,0.606564,0.965447,0.958032,0.833937,0.322174,0.602469,0.53592,0.617318,0.71157,0.160212,0.326754,0.0655674,0.0414088,0.595115,0.359482,0.201604,0.922051,0.336332,0.293635,0.90522,0.324297,0.620548,0.0616139,0.832772,0.792219,0.333495,0.44273,0.118746,0.711845,0.818616,0.596435,0.753622,0.735618,0.173245,0.113936,0.0504549,0.518274,0.216308,0.672409,0.778729,0.965995,0.70265,0.575395,0.279417,0.0225223,0.958652,0.662227,0.119239,0.822969,0.479437,0.238396,0.205372,0.829016,0.594198,0.153226,0.957858,0.642904,0.211951,0.286054,0.374473,0.380066,0.835825,0.966752,0.794212,0.384762,0.0699562,0.351218,0.585816,0.61028,0.675783,0.011395,0.861929,0.176443,0.546348,0.280988,0.16327,0.93904,0.64616,0.501404,0.0668358,0.410539,0.712294,0.826403,0.257549,0.000910461,0.598231,0.310751,0.669488,0.543073,0.198234,0.194336,0.751474,0.547,0.357644,0.566066,0.371416,0.933621,0.345797,0.279119,0.155,0.749154,0.502985,0.0795619,0.267597,0.684325,0.928218,0.828193,0.712636,0.40091,0.817235,0.462275,0.489738,0.94174,0.181327,0.424485,0.358463,0.34576,0.852723,0.529079,0.412602,0.728172,0.245645,0.206313,0.51565,0.0673205,0.0849562,0.286534,0.109205,0.00259531,0.124532,0.558133,0.968239,0.898917,0.30903,0.944806,0.500372,0.241098,0.445222,0.0402332,0.246012,0.166039,0.118582,0.419821,0.671966,0.898528,0.856057,0.492346,0.819169,0.0450687,0.693718,0.902553,0.937518,0.285653,0.919508,0.97548,0.979393,0.995483,0.412305,0.349621,0.921373,0.627451,0.191515,0.757104,0.962227,0.714061,0.625305,0.317514,0.981506,0.0185186,0.73522,0.040433,0.208819,0.0686787,0.867792,0.0970878,0.34084,0.388482,0.496287,0.737209,0.685111,0.899451,0.854259,0.988011,0.0486134,0.309079,0.893421,0.503063,0.680784,0.459587,0.712137,0.384218,0.45661,0.231812,0.93439,0.163769,0.47785,0.665123,0.376554,0.663726,0.827155,0.353041,0.301283,0.523615,0.225949,0.529495,0.521372,0.723919,0.973477,0.925557,0.74814,0.158588,0.704334,0.334339,0.123246,0.14475,0.915035,0.948244,0.650594,0.829503,0.626749,0.442046,0.161018,0.491794,0.71848,0.529169,0.0846638,0.573255,0.610262,0.897623,0.825734,0.669512,0.47622,0.92543,0.746813,0.667979,0.248528,0.603345,0.0472122,0.601649,0.289218,0.374123,0.425244,0.692552,0.263669,0.00672126,0.342968,0.406561,0.908316,0.0171763,0.847092,0.637976,0.995731,0.724113,0.734024,0.15827,0.637217,0.985086,0.848709,0.023569,0.736598,0.541545,0.896333,0.838782,0.689554,0.100528,0.506344,0.875182,0.884069,0.0929286,0.807927,0.262382,0.673276,0.906924,0.294901,0.576976,0.651981,0.864086,0.457244,0.727114,0.254374,0.373811,0.770158,0.360524,0.749039,0.372164,0.12503,0.121218,0.883301,0.957399,0.191438,0.13968,0.55594,0.966002,0.0546581,0.890936,0.671341,0.0218799,0.165027,0.86444,0.274256,0.313132,0.695521,0.594812,0.343457,0.12301,0.594375,0.128696,0.562892,0.338988,0.987948,0.0493501,0.382479,0.168249,0.81633,0.12264,0.267017,0.987873,0.421353,0.572156,0.702655,0.505058,0.676032,0.0261328,0.0969763,0.856366,0.732567,0.539317,0.067237,0.156824,0.0730855,0.0756735,0.983616,0.601149,0.630996,0.942648,0.200134,0.31917,0.16921,0.344668,0.590665,0.651731,0.862684,0.786991,0.710796,0.329985,0.458527,0.086532,0.391653,0.467128,0.826658,0.0359952,0.967085,0.959246,0.874716,0.435596,0.796068,0.121875,0.904359,0.41891,0.327842,0.832566,0.249297,0.18509,0.759412,0.247485,0.584648,0.723577,0.769982,0.530428,0.131073,0.802622,0.461237,0.922408,0.877205,0.3497,0.352397,0.612298,0.625595,0.189838,0.0765172,0.780321,0.541265,0.11079,0.0336868,0.707035,0.091472,0.714594,0.120307,0.839879,0.700175,0.112435,0.898617,0.995278,0.984011,0.761383,0.349581,0.45199,0.483516,0.658502,0.999542,0.189633,0.070397,0.993267,0.351145,0.441491,0.65764,0.618016,0.98535,0.119713,0.0216688,0.524486,0.689211,0.0888277,0.166518,0.669166,0.79111,0.524131,0.859945,0.989656,0.729457,0.601173,0.55197,0.060358,0.538298,0.814682,0.665886,0.727275,0.996067,0.825087,0.0454127,0.759076,0.820226,0.0981153,0.18988,0.855615,0.0488843,0.6043,0.0867081,0.133667,0.24701,0.131697,0.922736,0.342385,0.41502,0.889146,0.0671704,0.980523,0.67032,0.601029,0.976718,0.873061,0.519917,0.480619,0.317767,0.47567,0.197864,0.176559,0.609577,0.385988,0.159945,0.377475,0.848514,0.826105,0.508408,0.369487,0.192914,0.75721,0.260907,0.319821,0.352058,0.267701,0.0929968,0.155795,0.792031,0.0506629,0.856556,0.152196,0.505619,0.0974783,0.916943,0.52964,0.559045,0.69708,0.327728,0.599885,0.0114272,0.700639,0.110262,0.969475,0.571058,0.387957,0.629022,0.593665,0.889572,0.250879,0.392966,0.887797,0.990256,0.456702,0.339888,0.606051,0.684731,0.0288115,0.925017,0.802218,0.196341,0.0501603,0.812839,0.374366,0.895836,0.897903,0.817441,0.385201,0.608448,0.539899,0.678459,0.0943471,0.115496,0.0898513,0.608725,0.026321,0.958266,0.578865,0.28114,0.892047,0.312473,0.134719,0.300527,0.173331,0.306489,0.4128,0.775273,0.806343,0.989041,0.984816,0.0766697,0.580926,0.975684,0.821286,0.0977362,0.909175,0.0550577,0.643314,0.125351,0.134062,0.452835,0.795452,0.139709,0.37395,0.382683,0.485015,0.887224,0.847944,0.468723,0.368158,0.234064,0.27232,0.779825,0.341807,0.504686,0.28038,0.148762,0.100922,0.918638,0.711443,0.896839,0.341568,0.0244586,0.273766,0.580339,0.841562,0.365897,0.971945,0.485891,0.603127,0.013001,0.373347,0.196586,0.939966,0.908639,0.333109,0.0516917,0.894981,0.920437,0.58567,0.109022,0.965943,0.738255,0.718438,0.0259385,0.190407,0.187399,0.183125,0.747856,0.244009,0.334398,0.431702,0.640106,0.50729,0.0922226,|0.186223,0.676701,0.933802,0.0491166,0.603288,0.733407,0.0777656,0.0119146,0.706148,0.332099,0.396891,0.54719,0.145504,0.652919,0.0146443,0.14706,0.733371,0.494082,0.955674,0.210923,0.637918,0.5597,0.533589,0.511074,0.298983,0.644635,0.29048,0.616008,0.126067,0.195529,0.882333,0.835789,0.911158,0.524268,0.798504,0.322486,0.225335,0.182884,0.524063,0.615331,0.643211,0.295126,0.27971,0.769342,0.428955,0.29006,0.5487,0.61151,0.196986,0.712859,0.431021,0.386049,0.334353,0.927906,0.913912,0.240336,0.565691,0.620624,0.556845,0.394153,0.480791,0.300462,0.548614,0.788747,0.0112138,0.620282,0.574444,0.527526,0.307304,0.0435682,0.546263,0.21665,0.299667,0.188986,0.0839189,0.945918,0.726369,0.371897,0.924363,0.753397,0.807097,0.812401,0.766048,0.0225587,0.383939,0.688192,0.52821,0.310255,0.345546,0.322656,0.111793,0.0918231,0.473816,0.524302,0.626296,0.472836,0.357977,0.981228,0.231101,0.0716816,0.656789,0.727625,0.0732436,0.491415,0.103536,0.543235,0.563636,0.609362,0.877329,0.109749,0.162501,0.990549,0.695265,0.0160112,0.165822,0.660411,0.498731,0.742219,0.434401,0.712974,0.212183,0.843568,0.827859,0.0928977,0.788973,0.396728,0.618425,0.981537,0.531129,0.671591,0.289575,0.839426,0.0842457,0.814674,0.290411,0.849621,0.80383,0.699974,0.222949,0.806481,0.396142,0.621741,0.573469,0.116346,0.0568443,0.0832915,0.70539,0.342655,0.759132,0.660899,0.598736,0.174731,0.631045,0.00475013,0.929961,0.108879,0.642462,0.399574,0.941943,0.096956,0.142541,0.402459,0.135018,0.319943,0.269951,0.493774,0.675927,0.711138,0.517749,0.391976,0.711259,0.883592,0.143846,0.0279658,0.554616,0.0714096,0.0570601,0.372451,0.791723,0.97581,0.182762,0.442968,0.380211,0.155053,0.700407,0.016095,0.460423,0.9673,0.484906,0.176457,0.822443,0.485794,0.620294,0.259142,0.31575,0.0462884,0.126801,0.182299,0.802142,0.265721,0.993321,0.467401,0.976179,0.611988,0.243389,0.0966739,0.716557,0.900885,0.176745,0.985994,0.220515,0.699855,0.532109,0.429346,0.603909,0.567984,0.725262,0.298294,0.895457,0.938922,0.215373,0.431689,0.989067,0.239834,0.139728,0.284552,0.778798,0.622378,0.876377,0.702361,0.245017,0.663624,0.589098,0.801423,0.324139,0.0782664,0.721754,0.283579,0.152104,0.82016,0.595995,0.407905,0.413404,0.433176,0.231915,0.538581,0.592037,0.538573,0.692497,0.525728,0.142562,0.862486,0.503381,0.369606,0.54318,0.844821,0.730742,0.180256,0.420208,0.683559,0.760878,0.872943,0.190724,0.626046,0.536663,0.75561,0.329688,0.09363,0.334574,0.0838932,0.725345,0.0436193,0.0760595,0.970908,0.212493,0.855566,0.601518,0.63982,0.89554,0.941557,0.345091,0.117997,0.161614,0.0514352,0.747512,0.895748,0.331756,0.463071,0.424707,0.969869,0.102621,0.263723,0.21844,0.499945,0.857061,0.656303,0.61072,0.881664,0.507188,0.0745773,0.239708,0.533363,0.522725,0.996306,0.0194796,0.553477,0.562928,0.429526,0.625511,0.673184,0.338836,0.668415,0.838865,0.698374,0.312706,0.169087,0.518345,0.0652444,0.228213,0.17329,0.148978,0.207254,0.960306,0.0239161,0.46172,0.339012,0.593988,0.479711,0.124609,0.495429,0.993354,0.644992,0.916981,0.523331,0.302714,0.689168,0.683365,0.82524,0.330753,0.718977,0.081635,0.412869,0.308494,0.550125,0.964176,0.467829,0.195466,0.229033,0.0313065,0.603586,0.771944,0.0461015,0.629607,0.0738816,0.179606,0.481203,0.105793,0.517234,0.421402,0.603532,0.486225,0.59272,0.988895,0.1637,0.451065,0.916112,0.0208918,0.914827,0.0114588,0.0687926,0.0397916,0.854159,0.69116,0.768515,0.444878,0.328144,0.81222,0.765009,0.872691,0.700365,0.0432215,0.00728941,0.0521276,0.234113,0.348753,0.274523,0.706111,0.184243,0.975204,0.828139,0.668153,0.257929,0.00892782,0.488626,0.393861,0.80494,0.209666,0.441007,0.119092,0.831398,0.212392,0.261407,0.0210082,0.172883,0.583368,0.633741,0.287533,0.121369,0.0685827,0.83113,0.574821,0.177441,0.318284,0.940512,0.902762,0.701289,0.102369,0.591386,0.667715,0.500877,0.883048,0.108377,0.38978,0.914235,0.523998,0.791695,0.861432,0.430351,0.381872,0.933725,0.00469691,0.195042,0.216514,0.663429,0.290014,0.199511,0.856085,0.724341,0.120347,0.607312,0.0398402,0.0926215,0.188612,0.150976,0.139616,0.111857,0.861406,0.535786,0.848031,0.189804,0.72969,0.0906458,0.0335184,0.451849,0.419883,0.412968,0.57053,0.41075,0.212939,0.988408,0.490063,0.686414,0.563961,0.891683,0.856545,0.737923,0.618009,0.363995,0.163187,0.789194,0.178661,0.108488,0.625143,0.555235,0.740416,0.876836,0.301201,0.53332,0.348102,0.98789,0.135209,0.738997,0.17741,0.761002,0.154508,0.877631,0.489945,0.716626,0.521209,0.116916,0.546233,0.363869,0.545921,0.686062,0.344919,0.204,0.0168443,0.29038,0.846624,0.164566,0.666611,0.871713,0.0922734,0.841845,0.547285,0.169125,0.211161,0.485681,0.70353,0.522769,0.021817,0.0311194,0.0151725,0.606862,0.215955,0.744601,0.227201,0.745975,0.504847,0.588281,0.411719,0.129687,0.129632,0.203849,0.921296,0.0624612,0.463329,0.964442,0.38718,0.961621,0.607987,0.0995332,0.849426,0.367892,0.979098,0.817696,0.837482,0.777534,0.424247,0.217606,0.195539,0.283019,0.735042,0.408196,0.333385,0.750493,0.00141829,0.743627,0.0777736,0.439482,0.0763085,0.329188,0.667131,0.869971,0.27747,0.212783,0.555146,0.780558,0.177444,0.676911,0.896361,0.305182,0.812186,0.376676,0.644825,0.734963,0.834761,0.490202,0.676508,0.825668,0.714101,0.897735,0.65704,0.870653,0.630439,0.629072,0.0613938,0.462426,0.00464201,0.279841,0.319444,0.612931,0.563641,0.652159,0.322219,0.68402,0.0361907,0.554792,0.774344,0.222167,0.886036,0.622406,0.493093,0.058721,0.18634,0.652238,0.839615,0.703416,0.354909,0.334859,0.847161,0.643129,0.969319,0.984893,0.80582,0.891226,0.580518,0.533245,0.111338,0.217775,0.41979,0.625868,0.224674,0.956801,0.606197,0.5421,0.141682,0.152573,0.886556,0.528699,0.401214,0.222608,0.752121,0.72678,0.494518,0.756484,0.673452,0.339685,0.805671,0.360615,0.4827,0.180073,0.00245559,0.158828,0.426078,0.566582,0.838163,0.0964842,0.160883,0.471621,0.0514483,0.843156,0.0545206,0.818142,0.156727,0.430961,0.262874,0.465219,0.496393,0.839163,0.18758,0.746512,0.458172,0.680098,0.200614,0.167714,0.911382,0.214717,0.305234,0.208197,0.830813,0.323459,0.0606202,0.938037,0.180868,0.940553,0.454101,0.922017,0.725495,0.115582,0.558721,0.447508,0.167299,0.448414,0.0617909,0.261088,0.794228,0.955712,0.122249,0.654133,0.00882006,0.566045,0.0807639,0.806473,0.706788,0.205445,0.838058,0.529876,0.065809,0.152386,0.360334,0.437636,0.756526,0.517206,0.0260376,0.343802,0.447189,0.643416,0.973348,0.446049,0.139542,0.280658,0.270405,0.588094,0.598293,0.98465,0.495059,0.416362,0.105009,0.183683,0.985827,0.310894,0.982757,0.605198,0.546249,0.299626,0.915569,0.823836,0.129036,0.9936,0.11979,0.507616,0.494998,0.742881,0.924681,0.885122,0.99623,0.148715,0.0223222,0.274981,0.680514,0.215391,0.361919,0.610835,0.136595,0.172097,0.599329,0.49833,0.821112,0.835215,0.496093,0.067052,0.978448,0.989248,0.280085,0.587868,0.723374,0.425422,0.432551,0.555447,0.484445,0.346874,0.717717,0.560838,0.584634,0.867891,0.487314,0.683086,0.779702,0.417202,0.688027,0.0388977,0.667881,0.513082,0.387311,0.198397,0.356848,0.959819,0.83404,0.540672,0.955173,0.312518,0.832932,0.355905,0.69707,0.832177,0.859239,0.565634,0.1824,0.52182,0.754779,0.850723,0.261271,0.406331,0.462452,0.831577,0.904771,0.500652,0.86162,0.525554,0.321357,0.459107,0.0125568,0.292796,0.845854,0.0623378,0.925283,0.0812961,0.825137,0.0495861,0.901812,0.42352,0.290769,0.871355,0.262926,0.167543,0.427923,0.664844,0.0386646,0.115181,0.857035,0.586198,0.153895,0.753873,0.570377,0.566625,0.975738,0.536982,0.531804,0.556124,0.93167,0.152888,0.37956,0.400145,0.72139,0.46909,0.724642,0.240794,0.962316,0.897106,0.717066,0.0704602,0.242579,0.693312,0.0805818,0.321521,0.441421,0.539436,0.854526,0.602033,0.30823,0.92007,0.36027,0.117546,0.24702,0.464314,0.913737,0.342245,0.981592,0.281494,0.42821,0.0292488,0.581814,0.0311035,0.30494,0.656976,0.73582,0.98906,0.43553,0.917732,0.367923,0.875888,0.133563,0.261889,0.267258,0.784429,0.795118,0.363109,0.775311,0.0105838,0.61041,0.14132,0.214306,0.587911,0.0586592,0.00275755,0.095449,0.882268,0.532344,0.917278,0.794233,0.456275,0.22804,0.0124921,0.515376,0.708021,0.615226,0.515701,0.324255,0.177869,0.078182,0.919598,0.476824,0.122613,0.550834,0.572984,0.0228463,0.230261,0.836308,0.393574,0.283705,0.545324,0.642563,0.0641837,0.248232,0.433186,0.855001,0.72715,0.575973,0.208089,0.798457,0.185113,0.176962,0.508841,0.33853,0.370092,0.770769,0.820563,0.128254,0.573378,0.0595649,0.089669,0.975853,0.381115,0.37366,0.804023,0.922202,0.174226,0.9889,0.798104,0.090934,0.300059,0.77692,0.7998,0.752882,0.0801846,0.375291,0.271931,0.482561,0.940791,0.561126,0.388399,0.730696,0.955122,0.0387632,0.0566754,0.788803,0.522043,0.26979,0.664146,0.619484,0.33525,0.979245,0.863922,0.73389,0.879869,0.865075,0.601767,0.324005,0.991033,0.557425,0.324454,0.9383,0.923687,0.935079,0.957226,0.514236,0.823556,0.642468,0.579103,0.646298,0.211508,0.755076,0.393266,0.26743,0.53736,0.320255,0.894844,0.128926,0.503553,0.333031,0.43274,0.208208,0.831282,0.139204,0.639639,0.475573,0.652722,0.386258,0.17854,0.983044,0.082644,0.356777,0.305494,0.794856,0.480006,0.834458,0.241011,0.447664,0.421584,|0.983757,0.826528,0.623192,0.683144,0.98627,0.0042758,0.72576,0.535903,0.93073,0.625208,0.551233,0.985438,0.363142,0.522743,0.754686,0.981141,0.799957,0.459321,0.660994,0.684394,0.46159,0.4077,0.643554,0.889639,0.676604,0.615144,0.320338,0.456109,0.605032,0.995655,0.34793,0.986173,0.366899,0.206706,0.648168,0.842989,0.95951,0.245057,0.862278,0.00413311,0.00743538,0.79244,0.456752,0.468465,0.109653,0.113025,0.886474,0.512855,0.712359,0.0545123,0.0666632,0.667651,0.363234,0.41795,0.81658,0.225876,0.531303,0.974834,0.640064,0.189099,0.965669,0.215745,0.32042,0.939373,0.459208,0.6218,0.215095,0.22366,0.774841,0.630771,0.479822,0.0753501,0.708151,0.639518,0.281729,0.231335,0.514255,0.910886,0.669109,0.0506796,0.0131209,0.336141,0.713942,0.335797,0.591426,0.890123,0.0314527,0.852225,0.0920135,0.222882,0.649591,0.15243,0.673823,0.23534,0.592941,0.624146,0.212996,0.715372,0.21331,0.947358,0.497048,0.84011,0.135237,0.161202,0.462607,0.753863,0.705928,0.928131,0.874486,0.72862,0.625966,0.147693,0.642817,0.522842,0.286081,0.591586,0.447041,0.230746,0.602006,0.316407,0.589427,0.573676,0.0165563,0.83691,0.293786,0.480748,0.60578,0.603879,0.313493,0.843294,0.520763,0.544037,0.832726,0.88108,0.61713,0.408949,0.669751,0.285539,0.849568,0.0257322,0.838934,0.185994,0.239161,0.200257,0.725959,0.813525,0.652398,0.657296,0.537838,0.0924098,0.263734,0.05174,0.425981,0.553431,0.518864,0.206862,0.984748,0.958251,0.132089,0.604945,0.39013,0.972348,0.700266,0.816014,0.0190305,0.493006,0.0331138,0.136716,0.403308,0.20548,0.0416244,0.630474,0.415562,0.479127,0.477225,0.216186,0.489733,0.235442,0.665335,0.39068,0.402577,0.42599,0.492194,0.542955,0.912873,0.283262,0.484805,0.785088,0.213861,0.266999,0.606774,0.0803117,0.594431,0.781957,0.157038,0.692328,0.408312,0.232399,0.1195,0.947805,0.0222839,0.187134,0.901886,0.990817,0.201309,0.519042,0.383071,0.500173,0.375583,0.663035,0.836272,0.11349,0.323469,0.292681,0.956214,0.637486,0.570694,0.0619681,0.0774112,0.00936145,0.833961,0.88877,0.685178,0.5226,0.706969,0.659102,0.209843,0.765902,0.459135,0.212928,0.926008,0.65328,0.939132,0.125497,0.0258604,0.0575752,0.965341,0.929618,0.348963,0.190597,0.320058,0.333564,0.489525,0.00946754,0.179073,0.775379,0.391578,0.219665,0.554476,0.0567812,0.277144,0.316376,0.0152105,0.971629,0.668767,0.897596,0.606073,0.0925377,0.499262,0.778727,0.940893,0.79578,0.271324,0.39576,0.532398,0.0841233,0.987819,0.951081,0.430479,0.442242,0.526733,0.92094,0.859792,0.0424445,0.831328,0.816061,0.364715,0.429467,0.836949,0.586516,0.469765,0.788584,0.937609,0.669266,0.378044,0.38182,0.349889,0.250178,0.00722909,0.847234,0.217113,0.108995,0.270895,0.0804409,0.477759,0.52823,0.373157,0.0462387,0.484695,0.190013,0.469574,0.333004,0.106245,0.973398,0.926722,0.451236,0.265444,0.652005,0.877711,0.240223,0.557329,0.923351,0.0755109,0.333747,0.0996931,0.483067,0.0656441,0.597341,0.974487,0.440246,0.641767,0.0369763,0.132683,0.523606,0.782647,0.120479,0.419578,0.90615,0.125856,0.295092,0.937427,0.514286,0.249443,0.393063,0.61164,0.556365,0.8402,0.622544,0.875683,0.307666,0.611219,0.15591,0.848238,0.477212,0.880844,0.912814,0.814097,0.469658,0.352191,0.480882,0.640068,0.0813641,0.802573,0.768658,0.317756,0.522733,0.234473,0.711293,0.0882226,0.809036,0.558331,0.244092,0.161371,0.372674,0.203088,0.61315,0.785282,0.00200045,0.731274,0.52733,0.264225,0.108116,0.762675,0.0107879,0.811721,0.240517,0.894107,0.310104,0.254044,0.548099,0.390406,0.762047,0.433298,0.931721,0.666922,0.595467,0.843998,0.33613,0.0825649,0.177685,0.331871,0.91987,0.473575,0.0555948,0.208087,0.488138,0.385399,0.920537,0.185017,0.38332,0.618211,0.924605,0.136896,0.197061,0.334972,0.339118,0.593318,0.923958,0.707868,0.780485,0.244378,0.591527,0.662805,0.336134,0.446522,0.591149,0.150046,0.675191,0.105238,0.614244,0.0480717,0.49642,0.251477,0.33178,0.0551144,0.617482,0.139642,0.292786,0.116661,0.409906,0.470651,0.345952,0.160379,0.354093,0.104978,0.940182,0.475348,0.394234,0.452568,0.384492,0.693724,0.653715,0.291574,0.430844,0.0337021,0.558906,0.189914,0.437351,0.123133,0.250492,0.111268,0.60425,0.87116,0.991752,0.841736,0.100363,0.792648,0.135009,0.965209,0.420076,0.838695,0.536821,0.0203618,0.45014,0.586117,0.100443,0.856304,0.0388286,0.0898784,0.828412,0.0380098,0.946167,0.0129267,0.481111,0.334969,0.397099,0.70099,0.572377,0.39377,0.879628,0.359897,0.736172,0.173739,0.968795,0.0571079,0.708933,0.429312,0.639233,0.0513965,0.0411892,0.382875,0.443603,0.371694,0.483015,0.120749,0.057466,0.507972,0.132798,0.645885,0.274868,0.403058,0.513847,0.880444,0.239081,0.0939062,0.0954219,0.0684584,0.0643755,0.865381,0.462469,0.991812,0.478682,0.58734,0.152308,0.919811,0.30401,0.675994,0.240366,0.572274,0.753734,0.17217,0.831882,0.599467,0.0589408,0.405937,0.303132,0.555883,0.0775052,0.0908846,0.711185,0.743998,0.103955,0.361943,0.757732,0.257388,0.777327,0.993629,0.268809,0.0647264,0.965852,0.963381,0.155195,0.910385,0.634992,0.416409,0.917746,0.899134,0.0160537,0.0304514,0.241186,0.200729,0.657237,0.11161,0.351985,0.521985,0.863629,0.090718,0.133314,0.527232,0.828002,0.0913161,0.907328,0.667606,0.689072,0.931291,0.0516176,0.0385967,0.888297,0.973336,0.118498,0.30675,0.29045,0.357538,0.805532,0.494309,0.48401,0.918315,0.781665,0.717433,0.532859,0.656617,0.437467,0.884188,0.492237,0.0809063,0.284527,0.275271,0.362146,0.646331,0.253078,0.260696,0.23989,0.506809,0.897656,0.0203528,0.0823064,0.522718,0.76903,0.573632,0.641428,0.199567,0.799386,0.359604,0.0388821,0.154836,0.628469,0.513811,0.924244,0.357122,0.637802,0.0855009,0.587058,0.0255122,0.614359,0.497137,0.0886985,0.363703,0.899898,0.684654,0.0953284,0.502979,0.158773,0.637399,0.583779,0.637713,0.494781,0.299833,0.388844,0.259253,0.809262,0.191389,0.170553,0.662228,0.170495,0.756203,0.476714,0.00672299,0.0779752,0.469488,0.937665,0.286652,0.216354,0.0264496,0.978875,0.527228,0.916668,0.656878,0.134148,0.832057,0.28951,0.660936,0.760156,0.0295263,0.156196,0.732953,0.855042,0.526434,0.439907,0.601116,0.831524,0.877919,0.891589,0.439892,0.518684,0.480112,0.915595,0.594338,0.234808,0.5509,0.12639,0.845556,0.802335,0.670087,0.53702,0.261767,0.544829,0.554729,0.837353,0.475119,0.752713,0.115767,0.951057,0.833218,0.907808,0.153718,0.349987,0.815043,0.622465,0.0212596,0.567339,0.419965,0.203444,0.661622,0.275518,0.895269,0.593243,0.586576,0.406,0.302789,0.450683,0.800947,0.657731,0.416911,0.271796,0.180279,0.585896,0.819601,0.912665,0.835082,0.623462,0.0113007,0.477796,0.267426,0.475261,0.64803,0.148604,0.911985,0.642978,0.739685,0.807247,0.296762,0.263684,0.669397,0.664202,0.333492,0.198795,0.154159,0.196161,0.316927,0.337823,0.0719587,0.463239,0.904833,0.605497,0.0387866,0.302873,0.200041,0.902287,0.594864,0.758299,0.886355,0.179397,0.706493,0.174851,0.140391,0.894754,0.185145,0.676731,0.070197,0.187742,0.151432,0.477422,0.310197,0.842832,0.453745,0.487616,0.0656649,0.91294,0.856973,0.576736,0.21577,0.774752,0.0247233,0.580394,0.635037,0.595399,0.0278606,0.89367,0.920405,0.256034,0.667001,0.987695,0.543676,0.238464,0.77906,0.694497,0.681221,0.114078,0.366399,0.36409,0.374158,0.0124472,0.993329,0.478986,0.602014,0.44042,0.663359,0.625638,0.169546,0.172754,0.346146,0.384562,0.0366426,0.860517,0.308318,0.233145,0.952257,0.15842,0.990272,0.57857,0.14807,0.152417,0.0962221,0.63384,0.200558,0.203989,0.554711,0.320651,0.339602,0.0159868,0.157155,0.361587,0.77871,0.900433,0.682835,0.869503,0.816198,0.271054,0.943127,0.310396,0.602502,0.909997,0.263843,0.888463,0.537514,0.0188926,0.643303,0.617751,0.625521,0.421309,0.537524,0.956305,0.111064,0.507895,0.138995,0.603808,0.282583,0.965469,0.133359,0.687459,0.549047,0.339875,0.620949,0.151904,0.798519,0.835834,0.209877,0.737397,0.367496,0.250379,0.92655,0.746004,0.561928,0.756876,0.571631,0.87119,0.143915,0.145896,0.401918,0.997778,0.292391,0.603019,0.953304,0.477676,0.856267,0.208536,0.0835202,0.134811,0.590958,0.550184,0.821612,0.376535,0.810232,0.754521,0.985817,0.824191,0.609463,0.0237764,0.267024,0.776014,0.308019,0.168523,0.740798,0.148132,0.648909,0.580768,0.680047,0.999641,0.414575,0.0426875,0.593589,0.766091,0.831245,0.886474,0.387062,0.51187,0.599937,0.36043,0.173401,0.391302,0.425358,0.757005,0.562045,0.0721351,0.299116,0.92526,0.210988,0.717625,0.409466,0.352682,0.127574,0.651956,0.0907796,0.0240701,0.760277,0.947324,0.973174,0.400929,0.0597419,0.7171,0.208186,0.110373,0.591199,0.195825,0.831979,0.554412,0.368873,0.670463,0.641126,0.785882,0.508459,0.705048,0.134705,0.750338,0.399396,0.821987,0.995679,0.135776,0.2868,0.960235,0.0471927,0.448954,0.11363,0.680858,0.393391,0.41249,0.936655,0.805084,0.876461,0.393955,0.577751,0.178473,0.823385,0.782703,0.318618,0.655917,0.599997,0.902252,0.703312,0.0870025,0.0936568,0.151854,0.301487,0.0680181,0.00642818,0.54867,0.518862,0.0932916,0.207424,0.880924,0.430583,0.924758,0.81879,0.12692,0.0472906,0.701145,0.410217,0.708094,0.364188,0.763295,0.308911,0.386027,0.321203,0.203193,0.27042,0.73392,0.756787,0.914542,0.641478,0.186045,0.867949,0.306118,0.269884,0.273224,0.496922,0.663469,0.339952,0.832491,0.890382,0.459049,|0.686812,0.0326014,0.680606,0.199624,0.537945,0.647308,0.196948,0.720397,0.0295785,0.218425,0.34386,0.918459,0.415396,0.19828,0.339793,0.606464,0.151716,0.218313,0.0133454,0.916585,0.950307,0.239381,0.966011,0.742842,0.886259,0.488771,0.913266,0.318292,0.728761,0.292165,0.835863,0.211175,0.777353,0.352757,0.98001,0.693215,0.979245,0.341939,0.784887,0.3798,0.165916,0.318207,0.159599,0.973068,0.74136,0.869024,0.738634,0.536373,0.933006,0.381866,0.494089,0.120552,0.539522,0.622487,0.839157,0.021015,0.297179,0.410975,0.97622,0.954101,0.80278,0.767971,0.981843,0.0310023,0.368361,0.488557,0.837108,0.862734,0.660521,0.00483721,0.00914586,0.971564,0.137222,0.569162,0.625604,0.959391,0.335914,0.0860651,0.661129,0.049697,0.293582,0.0325286,0.868237,0.492279,0.365851,0.409758,0.127643,0.788327,0.610958,0.925001,0.550322,0.406276,0.32258,0.950723,0.0243697,0.193819,0.311802,0.63705,0.853437,0.0934392,0.403896,0.742392,0.276354,0.895456,0.361759,0.398064,0.451961,0.859393,0.438315,0.726601,0.334103,0.554523,0.73618,0.136583,0.242517,0.19054,0.321515,0.16946,0.242099,0.898695,0.327221,0.619869,0.691611,0.298065,0.443294,0.672803,0.523383,0.610511,0.145178,0.68079,0.368875,0.436592,0.512227,0.686477,0.744285,0.224574,0.426406,0.194971,0.0116722,0.46788,0.931314,0.799438,0.431786,0.800148,0.0482193,0.748579,0.792865,0.00594532,0.0538535,0.0649551,0.0147135,0.223837,0.555725,0.624387,0.697157,0.167721,0.993523,0.0737517,0.659484,0.142291,0.066614,0.395031,0.501971,0.304845,0.437898,0.292074,0.538198,0.51904,0.309808,0.137929,0.208188,0.83925,0.75063,0.0500696,0.559307,0.0760076,0.603035,0.726623,0.694529,0.995837,0.880951,0.795917,0.860377,0.843447,0.822399,0.0157486,0.487426,0.332653,0.670464,0.54754,0.728307,0.182633,0.668448,0.192829,0.719724,0.128201,0.993891,0.731803,0.535009,0.295239,0.519836,0.244997,0.784374,0.332055,0.636847,0.760656,0.757739,0.39267,0.496257,0.751196,0.70161,0.502057,0.893508,0.387248,0.849211,0.361538,0.306803,0.317576,0.78261,0.882629,0.0724154,0.91301,0.327143,0.750062,0.307076,0.604615,0.651902,0.594655,0.811658,0.743918,0.775592,0.533534,0.229412,0.208923,0.258332,0.612758,0.731219,0.562669,0.823715,0.681549,0.783083,0.455367,0.286916,0.382779,0.383866,0.0690681,0.475862,0.335797,0.209938,0.917773,0.265561,0.86343,0.669704,0.866526,0.554514,0.426557,0.123975,0.247831,0.305431,0.863894,0.875405,0.384327,0.498582,0.514141,0.524625,0.464014,0.605864,0.90516,0.148038,0.397959,0.32523,0.464486,0.217074,0.344105,0.616714,0.811794,0.713913,0.0114722,0.914364,0.638041,0.339309,0.105883,0.945414,0.660033,0.298451,0.219321,0.615592,0.268146,0.315633,0.610055,0.0503485,0.853745,0.42637,0.338673,0.781008,0.709682,0.133173,0.54527,0.991668,0.14751,0.190009,0.889839,0.547524,0.504791,0.0193624,0.774077,0.786046,0.641278,0.973628,0.33316,0.582614,0.791444,0.942981,0.731628,0.115266,0.784957,0.246328,0.707463,0.371749,0.414278,0.918787,0.696382,0.356109,0.729167,0.26559,0.473938,0.797299,0.336453,0.135663,0.802189,0.833036,0.752366,0.421139,0.650385,0.748608,0.490096,0.536548,0.0790718,0.67237,0.415695,0.715339,0.66958,0.853091,0.733445,0.868543,0.505419,0.253864,0.617649,0.419008,0.510417,0.522577,0.874313,0.420149,0.182956,0.655084,0.373902,0.649265,0.209484,0.0675922,0.565793,0.289216,0.637058,0.399581,0.646749,0.65696,0.0210624,0.948258,0.834552,0.112645,0.307067,0.840191,0.45792,0.163059,0.34933,0.501691,0.958414,0.754472,0.286296,0.898963,0.278948,0.154077,0.268792,0.646477,0.0284652,0.878852,0.489723,0.666704,0.916653,0.617293,0.81127,0.743936,0.568222,0.6284,0.997634,0.444228,0.848362,0.292336,0.0527659,0.883978,0.298014,0.417627,0.538669,0.709088,0.968435,0.399572,0.931848,0.246252,0.412784,0.325778,0.677314,0.000612438,0.624211,0.790027,0.116233,0.470445,0.70573,0.378149,0.16409,0.530287,0.0514596,0.884394,0.65588,0.987904,0.963503,0.878551,0.971359,0.749543,0.446318,0.616412,0.81058,0.0523043,0.803298,0.472332,0.877854,0.825258,0.978831,0.390487,0.37867,0.369874,0.649298,0.493478,0.800011,0.995834,0.371888,0.0693103,0.394482,0.512886,0.74143,0.507215,0.305706,0.543688,0.976487,0.431261,0.522606,0.214335,0.760977,0.467336,0.977117,0.720043,0.108755,0.0559298,0.0275558,0.892402,0.50103,0.0992006,0.199407,0.441488,0.743607,0.739031,0.422121,0.637143,0.254316,0.490152,0.327205,0.0741515,0.950079,0.260143,0.923036,0.209278,0.667024,0.149431,0.135597,0.00516355,0.551444,0.0706961,0.483573,0.349024,0.520519,0.300093,0.941677,0.517282,0.140705,0.143231,0.776087,0.841309,0.439083,0.0827067,0.741228,0.894248,0.264222,0.28326,0.356239,0.0917339,0.0411952,0.945364,0.625371,0.362735,0.191943,0.0617883,0.00405723,0.13018,0.908287,0.730153,0.419971,0.968248,0.638541,0.79296,0.788336,0.479175,0.31138,0.917865,0.0659129,0.102112,0.205611,0.854648,0.4067,0.447361,0.181583,0.232465,0.860847,0.780551,0.680111,0.280788,0.0116403,0.455671,0.922672,0.964884,0.718467,0.382113,0.916767,0.488327,0.167019,0.676452,0.00335729,0.611057,0.64583,0.294757,0.102289,0.84044,0.281317,0.337518,0.93825,0.486185,0.615759,0.0844228,0.394604,0.42428,0.164538,0.971962,0.805285,0.484008,0.176345,0.337061,0.63573,0.196168,0.656807,0.245151,0.266283,0.283412,0.218893,0.675202,0.505524,0.846016,0.844155,0.149573,0.476572,0.649131,0.935644,0.296204,0.243948,0.435125,0.232376,0.627615,0.752882,0.626322,0.811766,0.759921,0.693988,0.0570303,0.763605,0.337443,0.578736,0.906029,0.532722,0.476957,0.712732,0.228022,0.586582,0.656499,0.0450883,0.880524,0.16766,0.200674,0.0573447,0.659426,0.140165,0.873389,0.22192,0.396718,0.570587,0.166633,0.892457,0.786935,0.495961,0.264125,0.97507,0.60652,0.997657,0.610549,0.528804,0.153996,0.554441,0.0593953,0.000740588,0.804321,0.619627,0.910932,0.860435,0.131419,0.300007,0.885858,0.480208,0.943877,0.163387,0.539334,0.540244,0.945436,0.210919,0.617764,0.79735,0.59929,0.835869,0.537819,0.584438,0.434981,0.724809,0.655999,0.971006,0.6513,0.107053,0.882191,0.861749,0.550475,0.51381,0.793614,0.562641,0.51429,0.0296485,0.0715596,0.489404,0.359075,0.245433,0.993517,0.64937,0.0518507,0.128071,0.810467,0.81476,0.290278,0.369981,0.288153,0.223662,0.250517,0.123086,0.308847,0.945054,0.112916,0.110951,0.550655,0.806438,0.108576,0.86974,0.268946,0.956359,0.336873,0.82121,0.957422,0.340953,0.26668,0.926859,0.178634,0.887571,0.775234,0.988608,0.890768,0.606641,0.235714,0.388457,0.388605,0.598941,0.849858,0.672309,0.496006,0.500428,0.554812,0.528107,0.864819,0.692927,0.793624,0.937373,0.154483,0.246869,0.181939,0.981051,0.207258,0.327267,0.290282,0.891756,0.171235,0.308765,0.717573,0.478645,0.141865,0.600911,0.694848,0.195097,0.291905,0.904548,0.429336,0.119695,0.60716,0.350095,0.99704,0.628752,0.243135,0.786567,0.651553,0.772791,0.997291,0.920301,0.165855,0.996421,0.539097,0.0709553,0.189323,0.766484,0.0340506,0.724487,0.361178,0.935148,0.939685,0.871374,0.81488,0.31507,0.150356,0.0762911,0.00685418,0.340637,0.503233,0.569092,0.311182,0.284858,0.864985,0.931867,0.508287,0.00875181,0.0603421,0.237956,0.550221,0.780076,0.254272,0.67169,0.795846,0.121271,0.429617,0.872805,0.950411,0.0935826,0.225432,0.94512,0.613643,0.623078,0.748905,0.439901,0.406929,0.556284,0.055608,0.537238,0.123421,0.874814,0.510629,0.863409,0.807539,0.295438,0.726247,0.21553,0.802556,0.682916,0.832465,0.540987,0.000333846,0.589904,0.465422,0.359486,0.770191,0.811188,0.540953,0.331482,0.150971,0.0284959,0.144765,0.62177,0.272714,0.92322,0.231691,0.205799,0.569628,0.373526,0.520227,0.521511,0.765699,0.780284,0.133139,0.704167,0.363556,0.930354,0.0158842,0.643051,0.826853,0.992567,0.924929,0.411531,0.194426,0.516778,0.477138,0.946463,0.701389,0.571011,0.339675,0.86579,0.859074,0.092663,0.0774385,0.177077,0.237173,0.804606,0.748248,0.123381,0.765392,0.243065,0.592629,0.893261,0.746347,0.452432,0.59205,0.906811,0.519499,0.925494,0.804732,0.884976,0.851096,0.410689,0.772884,0.435759,0.806118,0.542696,0.0962535,0.877406,0.219021,0.057368,0.576045,0.715351,0.202784,0.635624,0.607391,0.710257,0.918138,0.245022,0.300312,0.391753,0.578485,0.309548,0.9077,0.547876,0.323884,0.469016,0.429282,0.13354,0.737199,0.319205,0.181864,0.73795,0.190467,0.699215,0.897936,0.997918,0.130919,0.150376,0.495996,0.179718,0.00919092,0.853982,0.320661,0.298238,0.700551,0.382867,0.392646,0.0748229,0.326371,0.985039,0.917,0.663951,0.855289,0.462073,0.618357,0.0746919,0.480657,0.423589,0.174492,0.106614,0.397477,0.502729,0.567616,0.801628,0.497191,0.852202,0.773132,0.976159,0.324947,0.000523865,0.606835,0.118292,0.587039,0.838789,0.860393,0.790128,0.676661,0.461201,0.905748,0.175444,0.605694,0.725293,0.168103,0.515778,0.530233,0.491348,0.60738,0.482514,0.598043,0.304431,0.277022,0.332877,0.50066,0.490449,0.939579,0.58454,0.546475,0.382395,0.83256,0.490358,0.732865,0.243054,0.084674,0.291609,0.627885,0.191113,0.976217,0.692007,0.158548,0.146945,0.666154,0.925601,0.149206,0.612619,0.178251,0.46437,0.131905,0.276819,0.180198,0.331999,0.218336,0.0286773,0.141566,0.239574,0.100978,0.39908,0.901761,0.708401,0.587553,0.402271,0.50521,0.420787,0.735008,0.645538,0.236514,0.927483,0.627757,0.471025,0.942802,0.747669,|0.775405,0.344513,0.780192,0.523566,0.911746,0.500606,0.178958,0.478958,0.727185,0.426403,0.211724,0.710258,0.146315,0.861856,0.809457,0.99924,0.519745,0.184286,0.488061,0.789626,0.512634,0.72556,0.0970763,0.971195,0.860023,0.747241,0.719189,0.207913,0.752998,0.789631,0.133493,0.229437,0.39299,0.4246,0.323585,0.330213,0.661692,0.389656,0.984619,0.0681708,0.0680869,0.929323,0.426876,0.586762,0.664803,0.765443,0.174975,0.0203725,0.0430676,0.508563,0.270357,0.387429,0.574012,0.378677,0.0202087,0.190473,0.664739,0.0992068,0.0416052,0.58204,0.874417,0.362176,0.93968,0.976949,0.650603,0.233602,0.352024,0.849559,0.451718,0.942594,0.170155,0.568307,0.712492,0.624699,0.917051,0.137055,0.0870863,0.978935,0.415269,0.0311003,0.833062,0.370599,0.240316,0.387841,0.945038,0.134433,0.131753,0.538092,0.621732,0.185061,0.814831,0.83192,0.458408,0.466141,0.600829,0.504755,0.878257,0.259077,0.218335,0.167047,0.0811459,0.632366,0.380852,0.678538,0.878649,0.0176121,0.931501,0.220519,0.230627,0.347452,0.485966,0.640936,0.981849,0.661541,0.572894,0.982315,0.856822,0.00722694,0.265363,0.205506,0.21996,0.846148,0.913638,0.268252,0.273083,0.187197,0.126872,0.267945,0.826017,0.722035,0.575813,0.78071,0.228,0.961537,0.371775,0.833194,0.157398,0.442145,0.892442,0.851696,0.189682,0.0409081,0.33427,0.378844,0.978736,0.62957,0.805227,0.673807,0.368909,0.559046,0.875028,0.338882,0.872633,0.849474,0.798799,0.866716,0.399775,0.00986612,0.151657,0.75324,0.519382,0.347563,0.444568,0.873376,0.0369079,0.90726,0.360547,0.0398202,0.614938,0.373623,0.545355,0.383997,0.254433,0.921619,0.90517,0.465106,0.420409,0.303889,0.36539,0.527056,0.798075,0.467174,0.100765,0.857251,0.817817,0.0231704,0.983634,0.914543,0.9046,0.864721,0.0225824,0.0820501,0.381533,0.230431,0.0134838,0.138575,0.292012,0.234912,0.965122,0.103847,0.217725,0.812857,0.538619,0.774044,0.563176,0.0459498,0.541129,0.881149,0.258915,0.717992,0.843143,0.363385,0.0852181,0.170006,0.729086,0.679849,0.384452,0.127646,0.363985,0.827673,0.461557,0.249544,0.25036,0.437158,0.450486,0.374206,0.0261278,0.134648,0.702539,0.943801,0.462206,0.753996,0.649456,0.394387,0.938833,0.283344,0.877911,0.597696,0.489738,0.254196,0.074535,0.515994,0.617357,0.366908,0.31763,0.559786,0.486128,0.297845,0.571669,0.253395,0.877474,0.36953,0.717926,0.629801,0.443541,0.425485,0.661589,0.662898,0.855735,0.389157,0.489981,0.807142,0.0524232,0.652491,0.725468,0.877523,0.182532,0.442761,0.966312,0.259309,0.853853,0.885382,0.779124,0.449886,0.289447,0.59154,0.0960412,0.296511,0.638547,0.717421,0.785452,0.123596,0.217953,0.634213,0.182817,0.226543,0.814243,0.822207,0.506577,0.611451,0.0339451,0.126543,0.919606,0.623318,0.683178,0.658825,0.258133,0.460259,0.484883,0.86841,0.948857,0.0391114,0.835441,0.534685,0.132833,0.0890499,0.667678,0.169911,0.379025,0.644939,0.427195,0.0350344,0.0462161,0.17723,0.345697,0.569743,0.359624,0.476644,0.637691,0.638824,0.488071,0.505958,0.59982,0.248269,0.042645,0.584215,0.564167,0.398365,0.820677,0.902667,0.566635,0.513479,0.856448,0.254891,0.629047,0.556341,0.676272,0.776435,0.832065,0.126059,0.71873,0.574555,0.532188,0.385651,0.218767,0.891226,0.291751,0.524419,0.791642,0.686942,0.230769,0.476587,0.567024,0.829197,0.389488,0.82366,0.870826,0.213862,0.101089,0.482946,0.52911,0.643382,0.461514,0.0869065,0.669262,0.792569,0.739879,0.136868,0.184904,0.933839,0.625675,0.380474,0.282334,0.906512,0.738596,0.163745,0.316467,0.0742155,0.90581,0.652914,0.202,0.82424,0.675355,0.382354,0.132538,0.0698003,0.960188,0.648156,0.986648,0.377594,0.866248,0.371003,0.806941,0.751593,0.902744,0.816473,0.226115,0.84455,0.755724,0.763225,0.599065,0.740431,0.678011,0.0284313,0.0892946,0.799966,0.779204,0.323372,0.732982,0.958153,0.214045,0.375023,0.460402,0.111957,0.353389,0.912978,0.886562,0.606059,0.518308,0.408007,0.337367,0.942069,0.404536,0.288722,0.724133,0.694897,0.961498,0.174266,0.81627,0.56486,0.0909004,0.667737,0.658781,0.00480491,0.0664381,0.256177,0.944946,0.396505,0.157336,0.277429,0.439008,0.901933,0.572596,0.578576,0.0747914,0.285071,0.726277,0.289284,0.225243,0.356906,0.179231,0.456028,0.189892,0.358708,0.0693692,0.374948,0.340949,0.44698,0.55522,0.244552,0.605435,0.233043,0.513776,0.0811801,0.490103,0.172153,0.574835,0.364362,0.754915,0.0172443,0.607962,0.366848,0.887279,0.256227,0.263574,0.389821,0.144726,0.987805,0.438909,0.620207,0.682195,0.238924,0.592281,0.0332878,0.865206,0.947804,0.718663,0.382734,0.981478,0.208068,0.262872,0.530345,0.537603,0.358762,0.962463,0.656375,0.147538,0.246451,0.0478098,0.767077,0.258512,0.429177,0.749499,0.555986,0.300327,0.718567,0.645808,0.712817,0.358204,0.172811,0.871264,0.238745,0.90656,0.791118,0.0479665,0.839682,0.171769,0.0708513,0.662642,0.175163,0.205231,0.467972,0.403702,0.931867,0.112966,0.608984,0.968877,0.277998,0.220639,0.0403387,0.908727,0.495163,0.458018,0.104033,0.187712,0.825794,0.569992,0.702759,0.642188,0.182443,0.931998,0.0867685,0.777614,0.0464035,0.196901,0.0240916,0.281308,0.290632,0.421277,0.674023,0.13759,0.438058,0.704042,0.564781,0.223951,0.0318828,0.388286,0.993351,0.299108,0.940432,0.648754,0.98587,0.211775,0.269501,0.832867,0.800036,0.991327,0.530276,0.69242,0.0632559,0.117813,0.538818,0.508509,0.289408,0.952296,0.25273,0.71063,0.206833,0.134864,0.31048,0.636498,0.812871,0.217102,0.406112,0.632464,0.768036,0.508637,0.00964767,0.218835,0.052123,0.111115,0.113539,0.775538,0.157627,0.928946,0.996821,0.573556,0.088532,0.398977,0.114031,0.0205713,0.54133,0.196613,0.65609,0.0294564,0.0322441,0.71869,0.482609,0.400774,0.474444,0.590489,0.126119,0.070945,0.503253,0.246327,0.325998,0.00111938,0.285619,0.0393609,0.40577,0.244465,0.624761,0.249257,0.95412,0.754107,0.692248,0.376451,0.422489,0.81885,0.672344,0.948824,0.542315,0.532803,0.108075,0.533555,0.299124,0.228003,0.168154,0.813884,0.917658,0.184195,0.908604,0.208799,0.880549,0.45253,0.234915,0.423095,0.101273,0.712749,0.765165,0.0680187,0.160018,0.964062,0.200853,0.1467,0.771841,0.747261,0.147208,0.689011,0.315677,0.616855,0.544108,0.550456,0.758833,0.231171,0.603922,0.252791,0.645901,0.632418,0.48337,0.401379,0.0843446,0.727427,0.571904,0.222822,0.847298,0.437371,0.0678622,0.235264,0.349406,0.883784,0.0369571,0.718976,0.0662679,0.0342064,0.781358,0.789761,0.621978,0.769645,0.237086,0.23897,0.46478,0.93555,0.843032,0.596975,0.0177041,0.909548,0.334412,0.378998,0.94679,0.249903,0.249847,0.506366,0.965243,0.561756,0.209118,0.644866,0.309727,0.450839,0.438087,0.833731,0.887997,0.375345,0.757883,0.974477,0.991191,0.997426,0.116885,0.349905,0.230555,0.501018,0.741314,0.31358,0.36751,0.100189,0.592493,0.305084,0.223604,0.736395,0.654006,0.523853,0.461167,0.159655,0.318811,0.147262,0.566325,0.51091,0.845389,0.509235,0.147248,0.341745,0.820374,0.112079,0.342117,0.564322,0.25497,0.876163,0.411295,0.241891,0.611185,0.87167,0.973217,0.900026,0.76633,0.0187787,0.877281,0.88602,0.793948,0.234272,0.963834,0.644933,0.708355,0.748943,0.751155,0.494395,0.206001,0.482857,0.115312,0.0144619,0.0844797,0.0300343,0.575226,0.43387,0.199708,0.48788,0.21272,0.0220995,0.71758,0.407329,0.619863,0.281324,0.826436,0.318084,0.573822,0.99411,0.108371,0.222316,0.739774,0.841912,0.192919,0.599039,0.727942,0.624182,0.844796,0.582249,0.0556458,0.212103,0.427483,0.900251,0.67336,0.505884,0.672682,0.792318,0.803725,0.68643,0.773861,0.333045,0.805924,0.191317,0.898618,0.0934696,0.875274,0.385614,0.219549,0.374223,0.298238,0.537126,0.245312,0.344418,0.766151,0.639972,0.672983,0.565874,0.821032,0.292848,0.0668439,0.170277,0.845076,0.737501,0.718813,0.821597,0.863394,0.758266,0.800654,0.828306,0.968565,0.21605,0.713512,0.110164,0.573071,0.988366,0.187845,0.0834494,0.948976,0.76642,0.437702,0.0701941,0.338297,0.052945,0.34803,0.0968021,0.497018,0.342611,0.635929,0.718974,0.717013,0.752999,0.676669,0.764853,0.633468,0.397304,0.637215,0.69242,0.131588,0.7568,0.529491,0.845029,0.750766,0.216583,0.909257,0.0588355,0.0209812,0.658854,0.0468916,0.569642,0.0751844,0.906454,0.774813,0.543209,0.276764,0.114887,0.314206,0.148731,0.392057,0.430549,0.064046,0.973394,0.584009,0.1862,0.511684,0.205941,0.239591,0.599706,0.238156,0.868506,0.127517,0.230807,0.818651,0.251453,0.0758613,0.954517,0.760596,0.249323,0.50067,0.808033,0.00358289,0.556551,0.12285,0.923359,0.793893,0.749589,0.528388,0.464234,0.0157061,0.0635844,0.87122,0.735791,0.156327,0.730067,0.768598,0.9968,0.32788,0.906454,0.668468,0.419575,0.530338,0.658761,0.918566,0.245615,0.801429,0.711511,0.110542,0.477085,0.705031,0.330257,0.0777847,0.0341368,0.465777,0.031141,0.591011,0.585562,0.742275,0.13645,0.106101,0.0983268,0.976672,0.0465533,0.556696,0.17829,0.0204755,0.203727,0.129959,0.782972,0.660058,0.670539,0.172585,0.791883,0.00392151,0.328054,0.900993,0.902031,0.171233,0.479998,0.871128,0.830052,0.733377,0.384902,0.977914,0.223227,0.126697,0.394989,0.788544,0.651964,0.756714,0.00259995,0.434817,0.182988,0.378971,0.439389,0.526997,0.079132,0.745984,0.656331,0.569416,0.726757,0.508354,0.488293,0.548655,0.218214,0.858747,0.534961,0.541328,0.230796,0.698832,0.719244,0.924737,0.538859,0.254822,0.0169557,0.849646,|0.720226,0.415209,0.920649,0.0435802,0.670432,0.891701,0.60707,0.224762,0.0764992,0.528473,0.672355,0.702558,0.93718,0.446399,0.217827,0.569467,0.871628,0.100264,0.3379,0.226221,0.805285,0.846255,0.447623,0.40067,0.335294,0.729994,0.734961,0.343663,0.261844,0.258975,0.791152,0.336259,0.33446,0.915919,0.247626,0.698442,0.98189,0.593632,0.709655,0.620781,0.0688831,0.439085,0.839074,0.468131,0.757188,0.219481,0.153011,0.375149,0.109768,0.686179,0.927307,0.264223,0.201227,0.412241,0.266023,0.7377,0.931034,0.849201,0.255481,0.031008,0.909442,0.949205,0.359001,0.313671,0.341134,0.894016,0.542202,0.690311,0.128646,0.221578,0.596097,0.768764,0.42645,0.19811,0.0275114,0.094187,0.00940669,0.379893,0.655534,0.428428,0.531458,0.569853,0.179477,0.460827,0.838609,0.299372,0.696645,0.85947,0.996332,0.755399,0.756005,0.195298,0.623386,0.829986,0.340598,0.796358,0.500024,0.562987,0.350434,0.188309,0.0300229,0.943418,0.875647,0.963124,0.631461,0.621387,0.0611595,0.8455,0.615291,0.926919,0.471098,0.524069,0.588553,0.269285,0.0497522,0.250418,0.840435,0.421205,0.481101,0.218389,0.0203356,0.216722,0.457171,0.802644,0.655092,0.875085,0.705889,0.393961,0.699753,0.622268,0.61011,0.236195,0.729194,0.491429,0.357753,0.485445,0.799987,0.00858665,0.889077,0.172523,0.675389,0.831781,0.512111,0.911925,0.531177,0.785813,0.302968,0.485883,0.379335,0.366581,0.190807,0.340434,0.0740237,0.593093,0.756729,0.783816,0.650617,0.233745,0.443099,0.526034,0.649825,0.543364,0.21091,0.5098,0.538838,0.819082,0.362354,0.260783,0.192351,0.628058,0.901055,0.164795,0.341178,0.986282,0.62212,0.823479,0.681499,0.178841,0.659119,0.975946,0.394636,0.698088,0.584786,0.388163,0.734633,0.515137,0.815785,0.869642,0.0411867,0.552426,0.378931,0.0218583,0.180164,0.841454,0.557511,0.731468,0.65498,0.402616,0.994514,0.251379,0.0572476,0.0221884,0.0653541,0.72613,0.0319256,0.0345079,0.255608,0.62873,0.75303,0.198654,0.377371,0.566322,0.737055,0.68267,0.0320897,0.861257,0.915495,0.50878,0.0678543,0.0428544,0.887958,0.717009,0.286581,0.610277,0.11249,0.389043,0.888743,0.981688,0.396342,0.0813115,0.100325,0.471077,0.444615,0.515532,0.955848,0.444322,0.306226,0.496554,0.964146,0.406463,0.361774,0.560475,0.237779,0.0159776,0.315171,0.327393,0.725409,0.170162,0.658941,0.668562,0.403339,0.100619,0.126937,0.0913802,0.380662,0.686272,0.461045,0.464149,0.492146,0.603375,0.623997,0.289488,0.64997,0.607302,0.526319,0.960507,0.530366,0.797538,0.12868,0.698589,0.191996,0.226615,0.363702,0.0649549,0.136453,0.421814,0.0147272,0.26603,0.0423582,0.0897533,0.017356,0.0821483,0.35455,0.303711,0.564253,0.888339,0.508524,0.232806,0.353957,0.590759,0.86178,0.235245,0.966577,0.495427,0.565087,0.28944,0.538983,0.979596,0.233244,0.587102,0.714357,0.595983,0.0811518,0.822731,0.687262,0.355787,0.402671,0.214016,0.262223,0.411271,0.173452,0.225492,0.120493,0.760582,0.223342,0.847969,0.251167,0.544723,0.593972,0.601156,0.197767,0.81657,0.439629,0.231158,0.348,0.226028,0.975662,0.794214,0.00891995,0.99881,0.301401,0.105907,0.384294,0.583193,0.224053,0.683421,0.322578,0.068423,0.22712,0.807255,0.704629,0.406553,0.980604,0.191608,0.38144,0.102394,0.251152,0.704946,0.24567,0.68534,0.968057,0.250478,0.0205793,0.815223,0.944785,0.550736,0.950611,0.604682,0.676339,0.394389,0.501601,0.880258,0.958485,0.84798,0.233475,0.00380349,0.95642,0.594151,0.589057,0.650499,0.558186,0.714343,0.338846,0.185807,0.485775,0.151386,0.882737,0.506283,0.108337,0.610883,0.456717,0.0762993,0.897676,0.205245,0.876288,0.260069,0.17456,0.769304,0.399997,0.239287,0.448395,0.66112,0.737342,0.671386,0.72664,0.126131,0.696804,0.0653224,0.256161,0.776467,0.067876,0.762028,0.110673,0.587169,0.826647,0.388494,0.273259,0.957347,0.97078,0.382574,0.491628,0.637197,0.548959,0.396742,0.939469,0.323838,0.516335,0.490721,0.38736,0.0364838,0.915032,0.271651,0.801331,0.673387,0.356721,0.953184,0.923021,0.920478,0.837034,0.942231,0.685259,0.0733522,0.082791,0.196875,0.256663,0.671986,0.265333,0.296818,0.943708,0.507373,0.526444,0.177974,0.405683,0.484184,0.71532,0.0386629,0.369489,0.896152,0.588794,0.504851,0.345801,0.273956,0.935784,0.656188,0.0339001,0.484048,0.0116082,0.928889,0.922452,0.715479,0.0457574,0.323638,0.820271,0.516104,0.143426,0.133854,0.661059,0.0067662,0.67842,0.912654,0.82778,0.77982,0.641522,0.16822,0.673959,0.835947,0.484289,0.864401,0.559569,0.928953,0.031185,0.565465,0.386043,0.832449,0.828292,0.585163,0.848341,0.669954,0.427548,0.927851,0.730761,0.00190425,0.286429,0.352911,0.358728,0.36257,0.989706,0.254857,0.117972,0.582034,0.599991,0.599073,0.0330025,0.146828,0.452162,0.964801,0.758458,0.872285,0.673684,0.315043,0.159034,0.272027,0.744522,0.991694,0.508153,0.136618,0.946257,0.82217,0.898066,0.34034,0.365402,0.112831,0.499645,0.341676,0.0655454,0.638443,0.583583,0.320912,0.0581589,0.160704,0.28207,0.211243,0.162,0.116328,0.450268,0.851118,0.506323,0.383351,0.160568,0.502118,0.0830014,0.617047,0.766219,0.00134194,0.775427,0.191948,0.811476,0.299924,0.701601,0.951122,0.235791,0.130875,0.835637,0.191883,0.888674,0.368779,0.407269,0.409102,0.11848,0.97852,0.418803,0.619044,0.5043,0.327163,0.553983,0.233418,0.358756,0.583337,0.432222,0.628917,0.595434,0.515153,0.916981,0.694913,0.452934,0.995817,0.346488,0.672597,0.7029,0.520154,0.521265,0.376596,0.0296224,0.376278,0.0326775,0.0736682,0.115918,0.756648,0.183086,0.605024,0.378099,0.346931,0.0272062,0.208247,0.227933,0.627849,0.373849,0.523013,0.617603,0.883978,0.708619,0.711468,0.531046,0.462492,0.908392,0.574172,0.39883,0.50071,0.271767,0.775542,0.438486,0.707881,0.334061,0.75905,0.907432,0.411587,0.604442,0.812858,0.270841,0.567299,0.427205,0.484834,0.232891,0.893081,0.550154,0.50327,0.539487,0.594546,0.793645,0.5522,0.224531,0.667358,0.462136,0.377284,0.835682,0.170641,0.36772,0.471816,0.0901334,0.853505,0.825497,0.465223,0.282903,0.726634,0.291739,0.167928,0.363173,0.187384,0.0297232,0.13671,0.31745,0.818495,0.232126,0.627809,0.37312,0.815361,0.739224,0.866416,0.227393,0.118199,0.958868,0.754601,0.932193,0.817048,0.905702,0.638488,0.0933607,0.273042,0.522243,0.530868,0.920888,0.102381,0.0994714,0.496662,0.420648,0.817177,0.76683,0.531911,0.226363,0.175493,0.0962841,0.468047,0.650827,0.0571361,0.351831,0.75023,0.316286,0.481265,0.898254,0.921259,0.98313,0.967111,0.500391,0.0144393,0.208473,0.83029,0.698328,0.341961,0.324345,0.275612,0.207535,0.856021,0.119525,0.370735,0.00851369,0.288471,0.305965,0.24993,0.852543,0.332883,0.679294,0.55544,0.349566,0.491463,0.957479,0.645868,0.553483,0.230911,0.485899,0.144163,0.441351,0.99262,0.276459,0.653296,0.136204,0.930246,0.467714,0.308773,0.352156,0.0582379,0.060822,0.33428,0.661141,0.0851018,0.333914,0.139198,0.770341,0.409688,0.482199,0.565764,0.960036,0.934424,0.608783,0.824936,0.76122,0.0830099,0.360475,0.477285,0.0445575,0.770553,0.315798,0.0322856,0.888042,0.102389,0.880458,0.00917715,0.654207,0.136729,0.847963,0.562083,0.803855,0.611265,0.0743436,0.33058,0.97021,0.772156,0.0391912,0.31134,0.440358,0.384344,0.153973,0.476036,0.629234,0.353044,0.631616,0.0198793,0.550103,0.478067,0.352279,0.616387,0.833342,0.695951,0.915286,0.934158,0.610769,0.600762,0.493235,0.835082,0.1887,0.419795,0.241272,0.59822,0.219087,0.583959,0.582526,0.418184,0.199389,0.242296,0.924712,0.405177,0.368039,0.939236,0.752748,0.906882,0.508795,0.350032,0.215487,0.527224,0.543664,0.193061,0.889142,0.960516,0.893247,0.304822,0.87136,0.221931,0.401143,0.604847,0.743153,0.23818,0.159431,0.92362,0.785984,0.963881,0.746821,0.292888,0.947513,0.674654,0.782734,0.986012,0.476395,0.902389,0.848321,0.29066,0.630907,0.163652,0.328851,0.635422,0.66491,0.0314443,0.69431,0.75243,0.991861,0.555678,0.509734,0.0403431,0.259253,0.698029,0.592317,0.628845,0.0162995,0.0798664,0.226867,0.204198,0.040868,0.633976,0.918703,0.570663,0.887925,0.878917,0.895881,0.0676929,0.406032,0.177561,0.801849,0.692847,0.0262314,0.871847,0.367346,0.627176,0.273988,0.447533,0.31274,0.424935,0.795733,0.875264,0.768104,0.00386965,0.576778,0.2368,0.829692,0.820744,0.192969,0.533741,0.161728,0.474336,0.981708,0.19967,0.014069,0.668658,0.296723,0.651094,0.692435,0.901665,0.201608,0.774127,0.795939,0.605232,0.248474,0.0280302,0.827214,0.521315,0.0748101,0.684961,0.755899,0.0459821,0.461815,0.130496,0.2785,0.340259,0.929485,0.711288,0.654061,0.599649,0.220275,0.698536,0.634829,0.34573,0.555029,0.443641,0.218842,0.560867,0.819673,0.97504,0.778039,0.00524837,0.406782,0.00964838,0.316963,0.36003,0.255042,0.0189674,0.348243,0.405252,0.861606,0.698438,0.499946,0.334463,0.00582862,0.442868,0.907249,0.209876,0.776334,0.499941,0.298602,0.0363433,0.0326146,0.949786,0.45496,0.377997,0.186103,0.515861,0.411371,0.575248,0.0401973,0.0600796,0.868898,0.081961,0.345862,0.112158,0.822115,0.646791,0.170915,0.736433,0.914274,0.869355,0.383543,0.251755,0.345315,0.399128,0.372804,0.220838,0.442461,0.573322,0.142994,0.723331,0.671406,0.897101,0.0648817,0.127407,0.21898,0.86021,0.29942,0.286815,0.92758,0.721452,0.562929,0.53781,0.735232,0.171592,0.927153,0.519294,0.819923,0.30534,0.0219337,0.506125,0.503869,0.67103,0.0812781,0.517041,|0.0654538,0.510045,0.629731,0.497359,0.579265,0.563335,0.721985,0.745257,0.0708761,0.0255806,0.992771,0.791976,0.1871,0.0459585,0.81971,0.222972,0.384712,0.580939,0.449485,0.117255,0.879148,0.25557,0.0424652,0.592373,0.578658,0.214527,0.143937,0.534221,0.456318,0.610946,0.773585,0.166464,0.480765,0.516068,0.642149,0.205441,0.926639,0.136542,0.127088,0.135312,0.443639,0.976843,0.316956,0.0643811,0.0611776,0.905534,0.978703,0.140323,0.847411,0.79359,0.278891,0.41199,0.614938,0.509329,0.914217,0.865397,0.709757,0.875301,0.714108,0.364966,0.507223,0.544895,0.0721689,0.291433,0.8535,0.812419,0.81927,0.957397,0.318769,0.0104322,0.630643,0.874717,0.977647,0.0277568,0.598693,0.435789,0.106775,0.0544077,0.222893,0.417263,0.862194,0.35192,0.939599,0.560414,0.385579,0.567907,0.829736,0.17461,0.438945,0.282583,0.280719,0.526087,0.811228,0.44193,0.816004,0.289838,0.961555,0.743134,0.962623,0.44607,0.879057,0.218265,0.717739,0.650415,0.510376,0.206626,0.901202,0.738079,0.542413,0.360873,0.865559,0.558011,0.107292,0.0915595,0.777873,0.775327,0.787841,0.689854,0.445986,0.159378,0.92949,0.397174,0.857903,0.77329,0.534665,0.372621,0.818247,0.583684,0.187758,0.573066,0.227511,0.127161,0.888144,0.323637,0.449163,0.476483,0.688644,0.0162385,0.640523,0.241034,0.270002,0.511727,0.122022,0.403077,0.140146,0.465562,0.451935,0.109902,0.76918,0.0551352,0.623546,0.0819957,0.481291,0.237595,0.553962,0.829833,0.16938,0.210982,0.168986,0.357718,0.469429,0.982798,0.113531,0.410722,0.316591,0.58077,0.734435,0.193505,0.120468,0.663254,0.140862,0.847002,0.162957,0.0066697,0.253077,0.492367,0.0453362,0.172651,0.733984,0.986323,0.637646,0.241645,0.33601,0.438003,0.648905,0.104604,0.166417,0.650012,0.502796,0.316974,0.0243794,0.542747,0.344487,0.104292,0.52832,0.254294,0.226888,0.701581,0.994152,0.164114,0.189668,0.0886999,0.983401,0.321565,0.931495,0.995094,0.273671,0.0749204,0.331219,0.388115,0.407521,0.651901,0.141276,0.669641,0.282747,0.768304,0.121513,0.396006,0.419826,0.262182,0.148699,0.764817,0.489863,0.310961,0.698631,0.537276,0.566345,0.0652937,0.181981,0.0429003,0.460042,0.695233,0.66298,0.0435659,0.766753,0.633537,0.658355,0.426814,0.0837576,0.493014,0.323419,0.0205918,0.994326,0.647203,0.00801826,0.155663,0.348509,0.805152,0.671654,0.209826,0.482854,0.751384,0.283205,0.840513,0.89126,0.400888,0.0471608,0.661914,0.896028,0.586975,0.724856,0.286802,0.275851,0.976346,0.350638,0.231584,0.773488,0.485284,0.355786,0.11269,0.772221,0.862795,0.305529,0.0599413,0.652158,0.0167668,0.626195,0.64138,0.553438,0.895187,0.316489,0.00776589,0.515505,0.716612,0.0665397,0.0846128,0.198752,0.689573,0.649441,0.0392707,0.992507,0.212473,0.472277,0.195442,0.468189,0.633837,0.465573,0.499428,0.628248,0.624334,0.627405,0.126753,0.43841,0.38131,0.748116,0.451532,0.293851,0.366845,0.00694364,0.512877,0.336891,0.493847,0.772268,0.521953,0.844887,0.701742,0.945844,0.267791,0.625936,0.121078,0.64666,0.100403,0.996429,0.0140791,0.559911,0.44918,0.598233,0.464257,0.111776,0.429886,0.838646,0.65066,0.121059,0.599385,0.35043,0.475773,0.157556,0.627592,0.301584,0.945656,0.0339562,0.0852537,0.333921,0.27903,0.430839,0.977372,0.379869,0.41745,0.447258,0.812328,0.571235,0.456886,0.0648876,0.6344,0.0259641,0.799651,0.441597,0.0832475,0.56,0.760119,0.323893,0.372544,0.5807,0.567731,0.931499,0.267153,0.0436009,0.904908,0.408913,0.598126,0.156107,0.644819,0.849576,0.634822,0.698289,0.560584,0.049031,0.937071,0.0124334,0.361441,0.533613,0.396712,0.0867139,0.689286,0.759943,0.235418,0.315214,0.754559,0.728684,0.907998,0.390766,0.322319,0.379481,0.281737,0.637093,0.0777314,0.417717,0.915817,0.385989,0.080419,0.651373,0.901166,0.340807,0.455782,0.800272,0.405795,0.557008,0.814092,0.905633,0.2675,0.914795,0.623107,0.361833,0.731691,0.445994,0.188918,0.0572889,0.231798,0.946498,0.734765,0.0116866,0.627901,0.794092,0.629679,0.0591682,0.00814337,0.121885,0.877924,0.738627,0.348871,0.465579,0.455821,0.624545,0.783645,0.992026,0.333651,0.118325,0.249177,0.540211,0.898617,0.293231,0.225957,0.630346,0.565408,0.35511,0.491733,0.763391,0.12938,0.714305,0.0634827,0.188553,0.504265,0.268668,0.150059,0.284861,0.228472,0.0153518,0.868004,0.355024,0.0821706,0.428629,0.278446,0.344635,0.0398721,0.242957,0.783709,0.165629,0.342735,0.346692,0.716467,0.781582,0.0592499,0.926932,0.544963,0.405944,0.829766,0.827788,0.483284,0.170147,0.642039,0.783046,0.322566,0.615388,0.977711,0.179024,0.810637,0.557129,0.941287,0.301235,0.793725,0.357882,0.966395,0.429493,0.816787,0.499705,0.233918,0.700573,0.0103234,0.498659,0.080924,0.967701,0.935605,0.174064,0.0733581,0.361694,0.230103,0.862747,0.121091,0.669121,0.264577,0.70489,0.658683,0.0544708,0.79342,0.470946,0.905122,0.808177,0.572379,0.225944,0.583855,0.468264,0.531907,0.261286,0.0565668,0.741681,0.636145,0.45111,0.282655,0.468414,0.316267,0.292035,0.760299,0.380569,0.949484,0.382354,0.503899,0.165511,0.598072,0.124839,0.783832,0.580196,0.197159,0.666138,0.733608,0.424007,0.291803,0.804099,0.0844107,0.0268303,0.646981,0.787852,0.83315,0.634937,0.784986,0.255802,0.749462,0.326645,0.837535,0.6496,0.134956,0.270972,0.24614,0.636169,0.105733,0.428766,0.777669,0.277123,0.967317,0.538935,0.173673,0.360962,0.53697,0.79037,0.464316,0.944402,0.682083,0.422429,0.556185,0.884833,0.597437,0.653911,0.0666943,0.305088,0.931648,0.645536,0.800299,0.353639,0.304302,0.342434,0.117197,0.548549,0.629079,0.613451,0.760527,0.76307,0.782519,0.857944,0.499723,0.198053,0.162313,0.968741,0.441102,0.405675,0.927952,0.671882,0.574271,0.176823,0.457138,0.216328,0.841783,0.122758,0.170711,0.528591,0.155778,0.176906,0.476225,0.290238,0.639571,0.471896,0.462127,0.483234,0.837931,0.358678,0.374113,0.469577,0.364975,0.587478,0.828247,0.526187,0.468483,0.635068,0.92091,0.101163,0.730979,0.741985,0.895427,0.70998,0.270289,0.350727,0.510154,0.247487,0.350828,0.161267,0.980818,0.136628,0.74185,0.965689,0.398255,0.888647,0.185227,0.0573534,0.995085,0.825063,0.902399,0.498936,0.634375,0.530998,0.372674,0.707613,0.229068,0.933469,0.651834,0.654724,0.705203,0.944634,0.0593242,0.761785,0.030416,0.0345293,0.81209,0.180446,0.636808,0.553796,0.149765,0.56611,0.727111,0.836479,0.380742,0.288412,0.0424072,0.67369,0.518637,0.680307,0.902705,0.375706,0.328326,0.77358,0.76838,0.526884,0.912675,0.117189,0.658671,0.487425,0.255221,0.300158,0.617123,0.645333,0.983657,0.726932,0.336843,0.521883,0.246385,0.861441,0.350977,0.0986083,0.44631,0.139097,0.664683,0.671554,0.215538,0.4644,0.0784626,0.484188,0.885785,0.0202946,0.409861,0.782995,0.582401,0.706359,0.383358,0.357821,0.9705,0.365326,0.442548,0.961862,0.709552,0.791843,0.946043,0.540632,0.0104544,0.194091,0.621161,0.355945,0.367282,0.524808,0.508723,0.667755,0.414951,0.890567,0.0395306,0.638924,0.503192,0.75841,0.995534,0.603963,0.0594813,0.721016,0.737289,0.71853,0.488717,0.479813,0.203718,0.43518,0.613512,0.987523,0.955898,0.0107254,0.87948,0.32025,0.277164,0.443352,0.100611,0.310842,0.142296,0.805273,0.862255,0.16918,0.793311,0.344457,0.790194,0.973523,0.953247,0.646856,0.940042,0.634976,0.119804,0.347545,0.0102227,0.538753,0.310868,0.986401,0.0444049,0.736685,0.678575,0.0064019,0.155111,0.07665,0.11117,0.236124,0.0321683,0.345914,0.403549,0.959272,0.400069,0.0157246,0.628441,0.247489,0.027833,0.810691,0.308491,0.91066,0.117946,0.535349,0.367892,0.281264,0.504622,0.310975,0.164236,0.298689,0.86949,0.713856,0.406169,0.883593,0.567248,0.311272,0.151324,0.7954,0.073024,0.168128,0.0394437,0.376513,0.465719,0.843797,0.469736,0.515685,0.875397,0.645968,0.491894,0.132972,0.997967,0.385424,0.778508,0.705433,0.608855,0.496514,0.921851,0.54126,0.268132,0.514475,0.803823,0.644948,0.246608,0.458434,0.467857,0.510891,0.924423,0.440644,0.0585086,0.606395,0.884212,0.624164,0.0909117,0.279035,0.534696,0.581398,0.452883,0.172721,0.0459176,0.235465,0.780209,0.569216,0.181136,0.181279,0.990662,0.490361,0.0218278,0.433132,0.85403,0.340216,0.108993,0.863375,0.380216,0.771395,0.124405,0.650294,0.854783,0.89678,0.025481,0.28073,0.642682,0.758749,0.569762,0.580889,0.615306,0.742763,0.16722,0.580402,0.808223,0.296175,0.49403,0.32448,0.914771,0.554807,0.729648,0.343354,0.225142,0.944528,0.337116,0.590264,0.913929,0.691029,0.436863,0.803885,0.962491,0.345467,0.794549,0.959337,0.066131,0.84506,0.514795,0.766344,0.102987,0.586415,0.635852,0.966328,0.247783,0.53741,0.680721,0.91229,0.608516,0.899203,0.146137,0.762057,0.483897,0.307524,0.0806208,0.966724,0.180137,0.309688,0.698378,0.270939,0.323525,0.819689,0.762296,0.379306,0.776927,0.630405,0.929084,0.865764,0.857541,0.133942,0.894383,0.229567,0.300838,0.916339,0.810489,0.86843,0.760913,0.297622,0.172294,0.937088,0.918647,0.701968,0.319018,0.994532,0.187811,0.323608,0.622084,0.129966,0.603477,0.894312,0.524484,0.199601,0.0813897,0.0420901,0.225592,0.860993,0.379849,0.400707,0.104807,0.495502,0.77177,0.246949,0.634101,0.494205,0.895198,0.36213,0.0521113,0.831562,0.169068,0.276969,0.915782,0.86532,0.798146,0.859161,0.107901,0.59912,0.316949,0.887465,0.532103,0.504802,0.707074,0.80319,0.564811,0.167418,0.664047,0.170807,0.38438,0.449442,0.40285,|0.133397,0.667499,0.00564003,0.994399,0.88557,0.712305,0.35183,0.804952,0.240461,0.512787,0.585899,0.629876,0.653617,0.676333,0.93924,0.265817,0.0105497,0.591477,0.0670176,0.00336337,0.108543,0.119852,0.679745,0.647619,0.843707,0.183618,0.575286,0.531762,0.351258,0.306225,0.0747126,0.083374,0.321502,0.401712,0.19816,0.0766767,0.72426,0.583268,0.344781,0.829131,0.816567,0.366612,0.448851,0.456355,0.611511,0.616472,0.984601,0.88025,0.0210401,0.503652,0.266383,0.718356,0.234108,0.414733,0.0849552,0.0213527,0.97782,0.765036,0.229192,0.37433,0.541155,0.989256,0.599115,0.357771,0.344743,0.607824,0.456599,0.0396369,0.175024,0.756003,0.0870839,0.12123,0.995286,0.889841,0.0356447,0.956885,0.570273,0.376173,0.620543,0.773321,0.374764,0.435127,0.350555,0.291735,0.852825,0.0140636,0.987205,0.101005,0.19794,0.341284,0.479409,0.135106,0.627931,0.491249,0.299743,0.0103056,0.0194311,0.862332,0.812773,0.494006,0.493228,0.889007,0.799704,0.295573,0.884653,0.874653,0.548252,0.294844,0.0923199,0.601471,0.111327,0.522754,0.373562,0.767321,0.989371,0.779346,0.0610278,0.525117,0.300829,0.725114,0.29584,0.163046,0.158566,0.0998783,0.398862,0.540025,0.0557947,0.0436696,0.432873,0.0965695,0.0928206,0.684983,0.1869,0.47134,0.697504,0.155633,0.792805,0.990435,0.246863,0.576372,0.781315,0.655419,0.118084,0.984324,0.124247,0.855241,0.372792,0.572926,0.0381231,0.992705,0.652021,0.952511,0.847555,0.0737879,0.838212,0.603325,0.0657108,0.521259,0.270485,0.699655,0.339306,0.301625,0.742186,0.241361,0.568731,0.175137,0.818751,0.897403,0.933141,0.978369,0.346721,0.0200244,0.798282,0.293852,0.1801,0.788033,0.189627,0.826811,0.706267,0.957307,0.670732,0.222676,0.819398,0.895171,0.948636,0.141084,0.256172,0.652158,0.4627,0.540604,0.738926,0.686624,0.105512,0.356016,0.736075,0.949181,0.97421,0.798222,0.769825,0.351483,0.254956,0.518876,0.779011,0.147203,0.286153,0.635073,0.920111,0.669355,0.650933,0.692016,0.960978,0.767617,0.922903,0.0410248,0.735865,0.785844,0.483298,0.269737,0.761395,0.181698,0.92041,0.0831478,0.370789,0.184928,0.537771,0.686308,0.828911,0.947755,0.277529,0.187504,0.972134,0.0170748,0.641761,0.303361,0.784034,0.702561,0.942134,0.950488,0.166278,0.872168,0.425814,0.313739,0.799833,0.368958,0.494755,0.517272,0.271419,0.355867,0.0966443,0.976077,0.265784,0.188683,0.166217,0.753718,0.765121,0.656856,0.635437,0.486104,0.0386528,0.177441,0.0770988,0.922355,0.497956,0.977128,0.174294,0.82106,0.657936,0.850118,0.190835,0.656768,0.195399,0.653248,0.853483,0.949483,0.186231,0.902964,0.856414,0.846419,0.202492,0.561202,0.754972,0.832643,0.0346724,0.39611,0.0584776,0.522035,0.561058,0.831205,0.592503,0.0871801,0.206343,0.829234,0.661367,0.564397,0.759287,0.932909,0.929292,0.123637,0.00205189,0.190976,0.586296,0.876634,0.583386,0.455581,0.177785,0.726666,0.212352,0.305076,0.997289,0.416458,0.835038,0.0161273,0.771021,0.521437,0.517063,0.415953,0.00366348,0.758751,0.947712,0.957057,0.688527,0.866094,0.744368,0.676005,0.356909,0.377149,0.321823,0.0304787,0.120792,0.596035,0.545484,0.83027,0.629793,0.733208,0.700103,0.38818,0.228674,0.801792,0.0291266,0.685141,0.543645,0.200957,0.611952,0.413413,0.175158,0.421506,0.584135,0.164288,0.801599,0.833696,0.283453,0.919426,0.535573,0.629933,0.205257,0.219307,0.787316,0.324496,0.891594,0.468229,0.624496,0.0861831,0.429206,0.569065,0.355734,0.133145,0.773548,0.576419,0.594044,0.575168,0.305911,0.506949,0.990526,0.0430363,0.843674,0.18454,0.214919,0.89395,0.464339,0.130307,0.805894,0.340154,0.898909,0.757713,0.0459604,0.963617,0.0403209,0.349111,0.846042,0.833871,0.540793,0.750226,0.522137,0.986574,0.130259,0.57119,0.743394,0.24196,0.546232,0.562618,0.505257,0.841293,0.492017,0.438069,0.825249,0.453414,0.781123,0.357868,0.166514,0.525632,0.151462,0.679753,0.775771,0.990219,0.970399,0.448817,0.850152,0.941544,0.143663,0.663434,0.0202015,0.896393,0.598452,0.126444,0.156089,0.874241,0.341559,0.96113,0.474138,0.675369,0.0188715,0.952848,0.647174,0.170325,0.975037,0.220753,0.380249,0.799479,0.700451,0.631517,0.494436,0.460695,0.630549,0.139347,0.769882,0.824507,0.340555,0.0859194,0.774298,0.000381351,0.449006,0.286213,0.563475,0.167188,0.601024,0.621675,0.0868672,0.757014,0.208459,0.344294,0.10873,0.271271,0.869514,0.14428,0.675502,0.759172,0.0429721,0.172741,0.679476,0.947254,0.808134,0.845118,0.372365,0.799915,0.311774,0.393047,0.0352566,0.223734,0.00933462,0.919644,0.332606,0.319922,0.766957,0.73295,0.847895,0.741513,0.813201,0.319862,0.16173,0.452038,0.175254,0.802343,0.433202,0.175861,0.529084,0.251051,0.04589,0.0498745,0.820782,0.980569,0.227719,0.685043,0.860595,0.447754,0.382576,0.587018,0.133734,0.242835,0.420032,0.856531,0.433467,0.637489,0.205328,0.809647,0.0517145,0.965547,0.517917,0.356699,0.79087,0.668833,0.113028,0.742146,0.938157,0.747736,0.315872,0.496956,0.455703,0.199165,0.243006,0.834651,0.13437,0.478354,0.604054,0.563618,0.929657,0.238964,0.0931801,0.448691,0.417555,0.454979,0.306628,0.12715,0.0790578,0.126117,0.859897,0.0379165,0.917569,0.337388,0.262346,0.0248243,0.15115,0.512247,0.871577,0.971622,0.143047,0.565544,0.698772,0.965307,0.78414,0.473442,0.430888,0.303447,0.510532,0.985347,0.978871,0.591609,0.49799,0.881501,0.481622,0.591062,0.408807,0.330151,0.496255,0.440848,0.461367,0.617504,0.812362,0.237617,0.785575,0.29329,0.477868,0.00560218,0.783046,0.832768,0.791048,0.883153,0.096029,0.030353,0.78195,0.454147,0.13326,0.385695,0.00482458,0.700691,0.494113,0.516248,0.224384,0.99101,0.538661,0.97516,0.733436,0.895863,0.36527,0.236167,0.31443,0.172195,0.868507,0.829695,0.870681,0.946481,0.330317,0.174031,0.444632,0.918142,0.66765,0.134125,0.165888,0.0215471,0.803446,0.811672,0.308405,0.377251,0.0880916,0.00981313,0.19492,0.067248,0.227815,0.607877,0.77662,0.673055,0.492981,0.172013,0.0305914,0.943203,0.119848,0.748082,0.484471,0.867437,0.227311,0.893614,0.870037,0.77495,0.622581,0.727987,0.225198,0.519362,0.793483,0.349818,0.66367,0.318439,0.167822,0.167295,0.608453,0.0733033,0.472794,0.85219,0.0543454,0.293587,0.0585484,0.384534,0.77492,0.667174,0.708949,0.77882,0.134875,0.402359,0.642572,0.950856,0.236006,0.217855,0.392342,0.848148,0.566273,0.839286,0.62974,0.268545,0.115353,0.298864,0.865167,0.657875,0.0755029,0.416517,0.520961,0.315628,0.78885,0.676228,0.181222,0.432717,0.985257,0.574123,0.462647,0.879176,0.888852,0.685936,0.493292,0.788629,0.900529,0.586586,0.485641,0.201372,0.74451,0.880263,0.251656,0.624908,0.606698,0.745167,0.618391,0.413694,0.118545,0.83603,0.5849,0.605293,0.47834,0.478813,0.861313,0.463519,0.637631,0.612277,0.584715,0.471885,0.264002,0.806598,0.0442184,0.407751,0.221077,0.123301,0.868897,0.682616,0.951985,0.0182472,0.360653,0.790871,0.535342,0.413827,0.123875,0.767691,0.864714,0.0866616,0.0882825,0.166926,0.654971,0.581325,0.0676328,0.811923,0.793267,0.0851818,0.628043,0.573354,0.00859302,0.950607,0.143031,0.0461053,0.431194,0.684903,0.899027,0.699799,0.106431,0.309536,0.897018,0.369792,0.232494,0.145069,0.344554,0.611131,0.785833,0.396685,0.253168,0.0289275,0.381399,0.275339,0.0659187,0.461423,0.550478,0.792274,0.216948,0.139454,0.243029,0.548357,0.166336,0.446713,0.719432,0.366589,0.313732,0.641537,0.51258,0.212047,0.853757,0.00993395,0.238252,0.638956,0.403999,0.0466673,0.476188,0.423213,0.453777,0.594819,0.749972,0.644078,0.753548,0.670056,0.650723,0.289451,0.143406,0.706112,0.618836,0.31547,0.820964,0.464216,0.0961141,0.209337,0.619499,0.408159,0.777327,0.874824,0.413618,0.146354,0.0772748,0.382865,0.814571,0.395761,0.649286,0.582573,0.434303,0.0558853,0.776635,0.780202,0.247214,0.57158,0.426333,0.353635,0.173142,0.638042,0.218443,0.0975535,0.883983,0.202047,0.369399,0.287305,0.208996,0.87281,0.467133,0.641932,0.853109,0.811917,0.483294,0.517427,0.995778,0.977437,0.21076,0.265169,0.289578,0.972198,0.850513,0.548164,0.783959,0.901526,0.871639,0.840128,0.542987,0.42857,0.220628,0.00294405,0.680953,0.177572,0.342027,0.038482,0.269385,0.0420644,0.338985,0.524671,0.309372,0.079703,0.402356,0.50048,0.191815,0.390249,0.519036,0.807261,0.0485762,0.975712,0.53313,0.425422,0.802302,0.0399694,0.849329,0.253009,0.66158,0.515811,0.613502,0.868454,0.204605,0.0925021,0.0271444,0.29433,0.81064,0.466622,0.872584,0.305414,0.837769,0.365393,0.772622,0.292428,0.0905688,0.126213,0.670627,0.182787,0.919857,0.329221,0.256038,0.783751,0.74397,0.572775,0.940165,0.919246,0.392316,0.929556,0.971642,0.647654,0.903386,0.648781,0.801181,0.691035,0.252509,0.238949,0.400851,0.997414,0.887345,0.383422,0.0568206,0.00329721,0.451798,0.290064,0.684463,0.367032,0.210721,0.619961,0.855742,0.556288,0.170759,0.68694,0.474375,0.720897,0.0279057,0.973315,0.7972,0.609981,0.505964,0.952223,0.264592,0.63547,0.183642,0.533316,0.795702,0.833998,0.312453,0.562547,0.297723,0.453631,0.0995452,0.199364,0.337892,0.741513,0.121888,0.928046,0.301441,0.83208,0.670542,0.664892,0.00179899,0.336348,0.947997,0.228136,0.652113,0.241291,0.415692,0.729268,0.0140746,0.898187,0.426826,0.680904,0.57991,0.580592,0.432346,0.205974,0.988215,0.997051,0.47956,0.636589,0.371743,0.0360588,0.295458,0.392714,0.991423,0.121226,0.900394,0.613924,0.0789518,0.744924,0.350061,0.668122,|0.622062,0.58377,0.910981,0.438148,0.977014,0.939974,0.0345163,0.284078,0.449524,0.841096,0.700184,0.103017,0.170405,0.664959,0.607223,0.570056,0.772551,0.694432,0.0526918,0.0742147,0.429213,0.748366,0.175701,0.0263728,0.435088,0.150127,0.842201,0.00882804,0.33448,0.413082,0.481191,0.914849,0.458726,0.394827,0.208573,0.260343,0.247024,0.325395,0.280109,0.690487,0.383299,0.0241949,0.426337,0.136594,0.42077,0.875285,0.829267,0.420425,0.419843,0.307666,0.60487,0.332993,0.541937,0.408578,0.58975,0.443464,0.820771,0.703657,0.589246,0.540121,0.987884,0.266725,0.089977,0.707047,0.495434,0.854541,0.778755,0.729107,0.311004,0.800528,0.452001,0.205978,0.434188,0.353275,0.135062,0.554068,0.510267,0.388535,0.811965,0.548342,0.290659,0.20975,0.817229,0.0506144,0.132048,0.879697,0.350388,0.894229,0.966103,0.544979,0.624388,0.657224,0.487062,0.736841,0.839159,0.917912,0.881049,0.86819,0.662002,0.284405,0.0294,0.796672,0.751326,0.00393254,0.913287,0.974514,0.470045,0.0707986,0.00659972,0.0655059,0.460805,0.825831,0.783331,0.862244,0.913129,0.102408,0.874405,0.394452,0.46514,0.973215,0.124164,0.667383,0.803054,0.365095,0.515197,0.202434,0.810183,0.92701,0.705203,0.185862,0.564945,0.60884,0.662092,0.24688,0.478492,0.680546,0.453796,0.262274,0.429555,0.14135,0.61675,0.372547,0.933866,0.190425,0.859688,0.126575,0.143077,0.18732,0.560209,0.572365,0.230653,0.170492,0.263597,0.415412,0.171155,0.114947,0.443592,0.550192,0.172511,0.409045,0.802022,0.577394,0.230973,0.636392,0.193074,0.68,0.0565715,0.182304,0.922701,0.501837,0.718403,0.239569,0.739086,0.00395751,0.283461,0.816044,0.471942,0.574469,0.498832,0.179262,0.649254,0.592865,0.139226,0.388749,0.0275347,0.717934,0.520591,0.252721,0.542741,0.368397,0.972977,0.00640833,0.409946,0.36429,0.957333,0.0940778,0.157617,0.871071,0.127111,0.0246266,0.765598,0.513187,0.582576,0.794785,0.0305475,0.187316,0.904923,0.735033,0.84509,0.498049,0.340616,0.591628,0.00241274,0.0672216,0.0477621,0.161858,0.76733,0.292338,0.156227,0.552016,0.188637,0.773631,0.953962,0.648567,0.541482,0.269466,0.179958,0.424134,0.368104,0.97243,0.016942,0.925205,0.0474578,0.877308,0.424375,0.971936,0.600241,0.324738,0.781313,0.848698,0.0671654,0.425688,0.837756,0.233271,0.467358,0.494246,0.673843,0.330518,0.389951,0.345098,0.226823,0.836883,0.767351,0.950209,0.748979,0.555841,0.723343,0.038851,0.951579,0.601008,0.450373,0.494824,0.674458,0.109615,0.600721,0.932997,0.121879,0.805661,0.0479138,0.755003,0.760446,0.228174,0.79842,0.0119098,0.840036,0.888063,0.243658,0.639345,0.416394,0.998091,0.53183,0.561663,0.951257,0.540967,0.69061,0.669434,0.554007,0.71619,0.593233,0.950293,0.440426,0.989526,0.750962,0.642669,0.65808,0.682498,0.127047,0.766446,0.97175,0.965963,0.44936,0.761112,0.362617,0.0584415,0.934609,0.920874,0.403864,0.94345,0.412965,0.84862,0.328534,0.213491,0.178732,0.974023,0.311941,0.852512,0.839066,0.826533,0.670212,0.698063,0.750378,0.304396,0.0305014,0.466874,0.276981,0.511062,0.235353,0.0135037,0.196577,0.775858,0.4071,0.826852,0.187588,0.199676,0.63889,0.156021,0.649118,0.12424,0.490408,0.97354,0.304735,0.660023,0.318334,0.859193,0.655983,0.969044,0.462994,0.993921,0.595685,0.160825,0.403799,0.201192,0.202919,0.767892,0.407806,0.448773,0.577647,0.180186,0.376795,0.846712,0.921496,0.899931,0.548476,0.111828,0.674757,0.314874,0.0718182,0.633049,0.60369,0.594703,0.968527,0.721736,0.789263,0.306031,0.981377,0.983873,0.913365,0.28157,0.622799,0.109883,0.480233,0.106629,0.461952,0.328457,0.739175,0.751407,0.988332,0.337687,0.284401,0.99264,0.698835,0.212255,0.0528539,0.914876,0.285363,0.886336,0.102333,0.47599,0.465117,0.991598,0.247887,0.543308,0.445707,0.912143,0.559846,0.842152,0.287169,0.788862,0.0978401,0.234446,0.23577,0.84094,0.868801,0.564104,0.78169,0.162488,0.303768,0.754245,0.931337,0.175611,0.164968,0.852455,0.0106714,0.488188,0.45049,0.796741,0.665612,0.406648,0.893774,0.12885,0.266656,0.21326,0.668023,0.400766,0.557229,0.709683,0.835667,0.296803,0.223849,0.871625,0.504778,0.659112,0.308762,0.348266,0.562726,0.0356534,0.767448,0.684595,0.022487,0.0865179,0.149198,0.409255,0.613098,0.617914,0.683675,0.0868984,0.715174,0.0813791,0.976367,0.34158,0.649013,0.222366,0.968563,0.418681,0.429788,0.331754,0.922197,0.803183,0.284409,0.467905,0.348373,0.575762,0.0361491,0.837632,0.0496383,0.171907,0.21472,0.307845,0.0218836,0.376033,0.450685,0.533986,0.702088,0.355258,0.458671,0.868155,0.578452,0.065522,0.148016,0.955831,0.324947,0.493019,0.763704,0.634674,0.465687,0.23724,0.366915,0.703335,0.209151,0.321078,0.530787,0.810572,0.233866,0.356484,0.230646,0.761843,0.983683,0.709097,0.609711,0.0248116,0.847835,0.599319,0.912723,0.712662,0.311242,0.940958,0.17891,0.950777,0.619847,0.310862,0.435241,0.311986,0.518777,0.23342,0.102814,0.589523,0.639759,0.0198838,0.471497,0.452385,0.918139,0.23015,0.925518,0.693518,0.487055,0.111157,0.334506,0.592267,0.774868,0.442746,0.776808,0.49795,0.506989,0.0450468,0.203533,0.730061,0.224269,0.301831,0.729328,0.905158,0.386614,0.580223,0.460846,0.209281,0.850534,0.282234,0.40394,0.517835,0.695992,0.895304,0.860228,0.253959,0.83393,0.482074,0.389667,0.450123,0.208469,0.802496,0.211454,0.782235,0.886724,0.0695145,0.345141,0.887601,0.123641,0.422907,0.660768,0.307796,0.948051,0.811431,0.696897,0.73882,0.228796,0.622744,0.249897,0.217793,0.64062,0.574184,0.157058,0.178951,0.128007,0.592417,0.517839,0.939114,0.026664,0.195337,0.929821,0.304926,0.582105,0.170352,0.589426,0.316401,0.702535,0.52838,0.368122,0.8649,0.837948,0.778099,0.409014,0.587911,0.202799,0.578837,0.209967,0.0991073,0.48579,0.609613,0.179042,0.385201,0.836919,0.134949,0.128985,0.0420291,0.402642,0.922598,0.143943,0.0471969,0.528278,0.781343,0.552365,0.886501,0.364135,0.280582,0.499332,0.252785,0.664983,0.123292,0.280004,0.084343,0.740423,0.946122,0.55857,0.5385,0.723062,0.928056,0.932623,0.0761125,0.562934,0.56812,0.649846,0.474477,0.44437,0.808139,0.636348,0.942126,0.808881,0.519595,0.845492,0.86595,0.666034,0.46016,0.799565,0.726071,0.0289491,0.957943,0.476853,0.99087,0.835496,0.869762,0.567399,0.664575,0.444256,0.17816,0.971108,0.186816,0.992237,0.415365,0.0397524,0.481961,0.573348,0.122287,0.345442,0.438917,0.0508469,0.683721,0.558365,0.415502,0.439457,0.680368,0.384164,0.618688,0.833617,0.7167,0.64134,0.560476,0.359423,0.961796,0.563835,0.408343,0.331353,0.163064,0.176628,0.184262,0.398304,0.980531,0.836537,0.870088,0.539818,0.612594,0.592169,0.574273,0.763009,0.791956,0.232595,0.900479,0.755503,0.517243,0.403933,0.0751284,0.619088,0.135632,0.330773,0.912602,0.851703,0.13107,0.049992,0.306963,0.659268,0.70368,0.649395,0.908849,0.9999,0.651536,0.814347,0.996489,0.425663,0.224074,0.000749707,0.935492,0.753654,0.433562,0.514481,0.327986,0.0203625,0.398911,0.476631,0.361926,0.668524,0.0591977,0.531444,0.630353,0.302809,0.312448,0.789699,0.245276,0.0915728,0.853858,0.0619528,0.875621,0.963161,0.825169,0.793911,0.281258,0.0156569,0.370602,0.0480542,0.434473,0.837906,0.955506,0.757381,0.925703,0.133841,0.400692,0.332945,0.932135,0.888226,0.985462,0.250476,0.823792,0.0638127,0.906007,0.119656,0.895739,0.514424,0.0761863,0.810371,0.762431,0.205293,0.831266,0.0659933,0.947075,0.560406,0.802861,0.810067,0.00285256,0.596155,0.797592,0.127915,0.00439566,0.966186,0.605688,0.119222,0.414439,0.27065,0.978048,0.118126,0.306307,0.11248,0.966355,0.30105,0.0261579,0.417473,0.638086,0.774141,0.385601,0.411099,0.99019,0.666962,0.303384,0.463346,0.855348,0.00355172,0.547315,0.756789,0.730191,0.0831226,0.689036,0.153845,0.659648,0.78404,0.205543,0.364663,0.790657,0.0241058,0.883878,0.213294,0.461222,0.788673,0.706465,0.501782,0.538917,0.960183,0.492458,0.115348,0.564415,0.406107,0.867999,0.955806,0.691403,0.559946,0.469256,0.0513123,0.175973,0.205787,0.384616,0.478448,0.171935,0.124479,0.576527,0.361395,0.827942,0.6969,0.577315,0.200736,0.330513,0.553949,0.579246,0.126565,0.827165,0.0573774,0.583391,0.0508471,0.743677,0.0409701,0.409477,0.599857,0.941446,0.329182,0.377014,0.24688,0.564988,0.198541,0.211619,0.735526,0.958915,0.0743492,0.654705,0.432267,0.222528,0.154583,0.886062,0.892255,0.29145,0.305477,0.691481,0.262002,0.761003,0.742116,0.824427,0.109242,0.676816,0.369269,0.245509,0.486046,0.297388,0.661772,0.00747651,0.582577,0.850609,0.398854,0.619429,0.430823,0.374776,0.136185,0.799785,0.490748,0.782715,0.715193,0.55265,0.202214,0.766933,0.748538,0.9205,0.232063,0.202297,0.375767,0.030573,0.963451,0.662656,0.542427,0.931009,0.0952219,0.0723901,0.653591,0.990382,0.968867,0.379436,0.773851,0.670656,0.13206,0.872569,0.510738,0.559753,0.3659,0.539072,0.754482,0.341561,0.0855367,0.568183,0.469177,0.601291,0.747516,0.105023,0.658469,0.216993,0.81128,0.772282,0.168073,0.270555,0.149269,0.508402,0.231419,0.347101,0.729796,0.00506568,0.314111,0.737601,0.0833902,0.572513,0.490281,0.96962,0.519377,0.22705,0.218556,0.014834,0.99955,0.053799,0.854526,0.475953,0.460214,0.816636,0.987031,0.782435,0.08683,0.628013,0.201227,0.938059,0.971185,0.0724714,0.201004,0.620635,0.615443,0.198642,0.722463,0.640121,0.215633,0.285301,0.864127,0.949257,0.973517,0.442118,|0.699262,0.803777,0.844287,0.690353,0.430593,0.490364,0.732134,0.354681,0.219437,0.608525,0.927431,0.171287,0.733471,0.324665,0.154693,0.222742,0.00449049,0.834283,0.979487,0.0100998,0.0388394,0.547667,0.428734,0.770886,0.829724,0.94742,0.273476,0.906353,0.702779,0.761456,0.540658,0.395259,0.822951,0.713482,0.727056,0.695048,0.242427,0.73722,0.919656,0.315148,0.62477,0.65388,0.660813,0.177402,0.997718,0.74571,0.47673,0.0769721,0.955847,0.631011,0.444776,0.673401,0.990831,0.312753,0.0426272,0.152916,0.47423,0.80704,0.804131,0.34851,0.534226,0.518174,0.497966,0.731933,0.731441,0.457835,0.834027,0.37822,0.390361,0.00219721,0.517317,0.895006,0.200743,0.0592809,0.0337055,0.195682,0.630684,0.813468,0.211205,0.153036,0.906641,0.878691,0.167462,0.570631,0.473821,0.933577,0.90712,0.847874,0.18181,0.0059008,0.36866,0.883543,0.245458,0.517643,0.830986,0.450299,0.256022,0.775649,0.943721,0.427316,0.678768,0.345828,0.380704,0.011991,0.673559,0.841886,0.695519,0.21599,0.65966,0.835929,0.205526,0.735383,0.714477,0.196014,0.770806,0.875518,0.714917,0.572491,0.477482,0.653205,0.690849,0.53351,0.700177,0.491651,0.520988,0.531523,0.105987,0.930086,0.308664,0.457143,0.0480187,0.793545,0.961742,0.255821,0.426313,0.97212,0.593977,0.152341,0.594868,0.905997,0.107581,0.82451,0.517265,0.20559,0.363018,0.536526,0.415655,0.246002,0.0586568,0.831345,0.513407,0.878708,0.075122,0.78297,0.405609,0.902359,0.954545,0.759196,0.195747,0.530677,0.686436,0.199535,0.872903,0.690516,0.506166,0.739946,0.127076,0.544712,0.969131,0.31559,0.162888,0.539091,0.635154,0.229084,0.876089,0.866527,0.91463,0.63483,0.491838,0.143287,0.440795,0.773478,0.266664,0.67322,0.496573,0.733547,0.729145,0.335495,0.522918,0.13909,0.454709,0.932303,0.511036,0.511929,0.344828,0.185416,0.889743,0.617167,0.690345,0.157963,0.9501,0.946555,0.48476,0.256226,0.523422,0.032181,0.0884207,0.971526,0.691693,0.258211,0.19158,0.534449,0.0442907,0.347955,0.118979,0.607006,0.399431,0.909674,0.927928,0.418964,0.290702,0.194972,0.24095,0.613411,0.835371,0.0649716,0.376857,0.931243,0.0192616,0.282709,0.458104,0.432492,0.651756,0.810578,0.896586,0.294343,0.632957,0.739709,0.422655,0.498391,0.719889,0.909507,0.701386,0.582819,0.706632,0.0672694,0.807703,0.170201,0.845837,0.11683,0.774718,0.174359,0.289527,0.0689287,0.808288,0.0379711,0.554131,0.352037,0.688193,0.48352,0.362414,0.157049,0.697688,0.446329,0.604683,0.139575,0.0300978,0.975418,0.112399,0.830286,0.0733707,0.758114,0.016056,0.0877442,0.645325,0.59987,0.971735,0.809571,0.519412,0.208353,0.212319,0.640592,0.981439,0.253755,0.973731,0.615526,0.550837,0.589587,0.310569,0.973406,0.210247,0.30766,0.521036,0.426286,0.0186952,0.353269,0.387645,0.320078,0.0577739,0.482506,0.450877,0.2606,0.66365,0.67023,0.893369,0.383621,0.724164,0.224967,0.550888,0.255279,0.54779,0.00305623,0.60326,0.607435,0.0718675,0.269453,0.425819,0.166977,0.843505,0.646897,0.527667,0.967867,0.0287278,0.819266,0.12076,0.0893963,0.230701,0.426646,0.89918,0.387546,0.172517,0.342866,0.408785,0.559461,0.787553,0.275894,0.610351,0.619315,0.928077,0.681547,0.329311,0.40878,0.376368,0.888242,0.656406,0.512299,0.950014,0.128676,0.325457,0.307545,0.727411,0.662112,0.89012,0.466902,0.854593,0.428667,0.207918,0.548173,0.170022,0.595554,0.755373,0.36784,0.844433,0.456235,0.172805,0.617852,0.103853,0.956285,0.255191,0.949047,0.5503,0.110188,0.7422,0.189358,0.774817,0.0366054,0.580872,0.16716,0.766752,0.157572,0.362246,0.110004,0.927105,0.133296,0.0433157,0.845963,0.643198,0.603501,0.989906,0.31046,0.0399725,0.214505,0.655359,0.790761,0.230293,0.18674,0.728718,0.233899,0.0191635,0.643941,0.974914,0.597374,0.815366,0.587706,0.189041,0.292327,0.571127,0.00177008,0.538244,0.780051,0.555893,0.669477,0.854621,0.741634,0.646006,0.381153,0.865919,0.577929,0.664512,0.846617,0.921777,0.193898,0.669842,0.409172,0.772633,0.597367,0.258816,0.878436,0.127086,0.781914,0.247799,0.836776,0.16919,0.720091,0.652576,0.712867,0.0280252,0.867402,0.283037,0.792249,0.722872,0.303412,0.68059,0.316315,0.771073,0.456658,0.236354,0.442404,0.524015,0.769819,0.976112,0.594943,0.450358,0.73533,0.742282,0.893191,0.466997,0.843462,0.609923,0.910854,0.30465,0.67254,0.943952,0.75638,0.611455,0.029483,0.790355,0.695004,0.391026,0.223316,0.826462,0.062179,0.390576,0.227271,0.131243,0.788836,0.0978613,0.433515,0.452856,0.22821,0.468953,0.0947174,0.229188,0.912169,0.0123215,0.370924,0.696867,0.0748436,0.0556351,0.905095,0.572831,0.198262,0.527546,0.508428,0.382115,0.491756,0.176992,0.21498,0.204773,0.860001,0.298981,0.999061,0.891402,0.952187,0.376599,0.85532,0.255301,0.586949,0.831992,0.333283,0.106361,0.386262,0.824962,0.960018,0.396178,0.736551,0.583174,0.69617,0.721991,0.734999,0.722779,0.473453,0.666803,0.437917,0.395951,0.787573,0.156582,0.619358,0.462234,0.0278684,0.140253,0.955508,0.562296,0.409732,0.337379,0.753739,0.758086,0.817068,0.257065,0.827215,0.706091,0.505555,0.5294,0.944885,0.0695969,0.721078,0.55442,0.951537,0.809943,0.756677,0.19828,0.423255,0.0582726,0.394154,0.448223,0.743448,0.179963,0.145836,0.253365,0.251579,0.633255,0.959212,0.830502,0.465104,0.345602,0.560719,0.393684,0.5727,0.109404,0.329578,0.385627,0.93482,0.849824,0.389564,0.0731857,0.796959,0.949028,0.26798,0.225128,0.424975,0.344522,0.980528,0.217261,0.92179,0.71147,0.513478,0.165045,0.112677,0.0784329,0.277381,0.24514,0.791107,0.0021621,0.611358,0.0520451,0.861477,0.656341,0.712986,0.335512,0.437032,0.376292,0.737034,0.0937499,0.122245,0.258138,0.345589,0.389349,0.594655,0.912457,0.463549,0.23298,0.991236,0.677063,0.0513305,0.381457,0.520438,0.191566,0.331203,0.424251,0.608469,0.926045,0.280342,0.725732,0.797689,0.74373,0.303948,0.824123,0.098555,0.664931,0.911409,0.866335,0.129732,0.854851,0.658636,0.0659296,0.126635,0.999934,0.0331064,0.188432,0.233355,0.978502,0.692944,0.346799,0.76813,0.596572,0.466862,0.91079,0.558824,0.332426,0.732662,0.642757,0.586417,0.807457,0.336989,0.202534,0.00934601,0.782872,0.231192,0.721711,0.997016,0.234268,0.659425,0.030568,0.454257,0.398546,0.584729,0.976399,0.233746,0.955089,0.380177,0.847928,0.281192,0.802663,0.20572,0.98129,0.612294,0.422344,0.0632998,0.663168,0.9023,0.489558,0.182825,0.878523,0.0721474,0.873226,0.210117,0.312054,0.872628,0.870561,0.382761,0.639358,0.579816,0.864415,0.481768,0.66707,0.00122011,0.406002,0.254675,0.252346,0.6892,0.0448629,0.0359235,0.079506,0.948668,0.87903,0.849096,0.346072,0.0410572,0.375704,0.355129,0.058816,0.0491365,0.348852,0.65158,0.355892,0.46233,0.524322,0.218191,0.0900072,0.230284,0.881984,0.168308,0.621291,0.883884,0.826535,0.510735,0.395268,0.356193,0.469391,0.225487,0.0865886,0.236533,0.193494,0.894054,0.405326,0.0510333,0.754397,0.952145,0.910097,0.806507,0.463242,0.926321,0.397202,0.569951,0.203448,0.870003,0.0728071,0.523427,0.735556,0.140815,0.504721,0.246379,0.320972,0.678255,0.454318,0.971929,0.229992,0.605993,0.59507,0.528275,0.856209,0.645406,0.789039,0.909754,0.766408,0.650478,0.263541,0.786655,0.647037,0.410487,0.569883,0.0849021,0.901613,0.620255,0.900579,0.0182952,0.85545,0.464719,0.658826,0.108445,0.0140789,0.780647,0.530042,0.631261,0.729433,0.861391,0.959804,0.471832,0.319181,0.624464,0.506817,0.663886,0.809722,0.195627,0.255549,0.586232,0.932745,0.199074,0.471145,0.0522724,0.284828,0.965361,0.748258,0.398899,0.675326,0.45739,0.327475,0.503039,0.894496,0.839479,0.630626,0.373958,0.930904,0.610646,0.310526,0.215765,0.953982,0.247723,0.651751,0.156733,0.231112,0.60413,0.481169,0.457981,0.727971,0.500524,0.251671,0.0817597,0.205206,0.00256222,0.679679,0.787859,0.378957,0.124561,0.422914,0.331627,0.486874,0.698904,0.0177089,0.802588,0.045952,0.491635,0.160986,0.507185,0.00444007,0.677596,0.137393,0.238628,0.0184695,0.366666,0.114935,0.0216457,0.0114962,0.0158719,0.232707,0.427074,0.0140865,0.745747,0.888216,0.0819394,0.221055,0.325666,0.310323,0.776977,0.365599,0.783282,0.0134057,0.936714,0.412063,0.0504444,0.361056,0.948571,0.62939,0.785297,0.49905,0.938857,0.604555,0.149349,0.327562,0.389844,0.587325,0.252021,0.122573,0.131791,0.327542,0.242205,0.798492,0.599061,0.926216,0.516042,0.41915,0.943507,0.50144,0.414592,0.475572,0.0367646,0.401126,0.216458,0.855929,0.0845724,0.97818,0.615759,0.738214,0.316895,0.921884,0.267146,0.919707,0.746436,0.658809,0.102697,0.521848,0.58961,0.701207,0.706997,0.137911,0.561609,0.918699,0.34837,0.267994,0.738248,0.985715,0.881882,0.373471,0.800377,0.618456,0.116081,0.892521,0.628036,0.410802,0.385672,0.715141,0.435542,0.848958,0.354711,0.650951,0.271158,0.339229,0.631674,0.827728,0.091269,0.0474283,0.55109,0.879985,0.261274,0.179793,0.57347,0.755813,0.0915014,0.834672,0.541081,0.752933,0.641104,0.489274,0.46897,0.625869,0.686557,0.497428,0.633159,0.982083,0.122241,0.737926,0.479631,0.833061,0.840518,0.675122,0.104744,0.111739,0.2885,0.833215,0.836041,0.626193,0.259798,0.729896,0.752417,0.342863,0.364632,0.39969,0.633168,0.814505,0.197372,0.565546,0.335713,0.158294,0.538026,0.755721,0.995723,0.652032,0.410938,0.938206,0.777639,0.654912,0.408292,0.505227,0.677341,0.395179,0.0824626,0.978627,0.193001,0.422726,0.270489,|0.644944,0.161465,0.87857,0.112391,0.429332,0.00486034,0.495513,0.240112,0.89819,0.560923,0.544338,0.504785,0.253553,0.645338,0.661272,0.0934632,0.547812,0.776005,0.96983,0.153717,0.181805,0.734179,0.7377,0.937798,0.282221,0.625733,0.847246,0.374508,0.319728,0.986566,0.851831,0.27214,0.544464,0.454816,0.358616,0.276834,0.765978,0.370715,0.425881,0.104758,0.813618,0.878887,0.657124,0.201757,0.170794,0.570119,0.22979,0.609228,0.620138,0.108582,0.300165,0.655047,0.135313,0.292692,0.632571,0.365141,0.861664,0.413327,0.804262,0.688699,0.420727,0.384507,0.690445,0.314106,0.323969,0.235746,0.20931,0.524442,0.715306,0.301419,0.407483,0.159915,0.44191,0.299933,0.128396,0.00751746,0.946654,0.784044,0.889578,0.0869175,0.559621,0.532735,0.545962,0.901417,0.904177,0.0825164,0.735767,0.0229374,0.876839,0.271257,0.564877,0.31229,0.000520229,0.106817,0.238732,0.604174,0.831355,0.686298,0.489478,0.323355,0.486441,0.79452,0.44107,0.274867,0.74411,0.306812,0.0119478,0.306118,0.751419,0.221916,0.391345,0.909397,0.274622,0.285612,0.0327246,0.789023,0.565873,0.0806424,0.945067,0.0775984,0.193799,0.934872,0.187359,0.982547,0.619084,0.468587,0.391617,0.509806,0.362081,0.966566,0.437373,0.385225,0.0911877,0.692161,0.384553,0.209812,0.5362,0.0524909,0.746804,0.346258,0.975932,0.988005,0.598987,0.048895,0.858607,0.23022,0.416754,0.517922,0.806976,0.753482,0.858007,0.891127,0.227948,0.414798,0.724861,0.0373333,0.520586,0.333307,0.898946,0.891764,0.611652,0.814597,0.888381,0.195438,0.625339,0.993373,0.762757,0.649713,0.733486,0.157529,0.644098,0.654407,0.27691,0.926506,0.59916,0.786821,0.0589023,0.494538,0.647696,0.595011,0.709077,0.698958,0.910066,0.112205,0.387269,0.923473,0.798148,0.864368,0.623923,0.420139,0.995575,0.768952,0.828875,0.230588,0.432498,0.5318,0.737701,0.965356,0.756555,0.733494,0.458958,0.67653,0.399803,0.54987,0.610757,0.0141609,0.176111,0.210856,0.481241,0.628983,0.840662,0.894106,0.249142,0.465637,0.0914395,0.290481,0.537767,0.780221,0.496413,0.834342,0.32418,0.389636,0.335026,0.438373,0.543068,0.909969,0.583999,0.830323,0.630206,0.647166,0.34336,0.248814,0.699142,0.0048697,0.210554,0.824977,0.481154,0.644273,0.634371,0.645354,0.384184,0.0691038,0.808473,0.215313,0.0950822,0.185637,0.202492,0.355253,0.199129,0.426889,0.534075,0.522835,0.0848743,0.300913,0.821214,0.157251,0.795332,0.291003,0.270119,0.263622,0.359099,0.605554,0.495425,0.22256,0.732463,0.837115,0.978421,0.342353,0.398846,0.182423,0.197137,0.268963,0.683093,0.397752,0.219692,0.599009,0.524107,0.499105,0.379001,0.619773,0.562237,0.915531,0.17933,0.544188,0.299849,0.078575,0.0221975,0.866578,0.119241,0.306122,0.0601095,0.0255527,0.899595,0.0670819,0.0518834,0.530386,0.100836,0.448007,0.418262,0.776735,0.0156724,0.312867,0.637997,0.891415,0.341285,0.859487,0.847371,0.916155,0.875976,0.723715,0.393278,0.934994,0.0473903,0.516834,0.924787,0.244831,0.992245,0.445556,0.895298,0.317371,0.693484,0.0474761,0.930922,0.73157,0.236316,0.964294,0.879968,0.531075,0.694696,0.906276,0.147153,0.304454,0.768451,0.587068,0.598764,0.954407,0.958962,0.827128,0.248817,0.506674,0.184086,0.689688,0.834643,0.94404,0.108063,0.388729,0.037542,0.751664,0.0785244,0.839593,0.351889,0.332735,0.676528,0.0849318,0.625257,0.425505,0.445653,0.436454,0.115232,0.829833,0.372719,0.580307,0.517471,0.272581,0.18372,0.164695,0.735908,0.946005,0.787832,0.750527,0.426658,0.867517,0.397396,0.198419,0.384144,0.0394205,0.372683,0.994474,0.0726714,0.983467,0.215482,0.568563,0.212188,0.110189,0.967686,0.316064,0.919578,0.615974,0.256088,0.145227,0.000569224,0.4452,0.789252,0.9381,0.730923,0.0633081,0.192114,0.134325,0.228239,0.232964,0.867303,0.0369478,0.548408,0.346075,0.230558,0.294593,0.501841,0.758997,0.360721,0.558742,0.800497,0.983369,0.699254,0.7508,0.402385,0.496459,0.358478,0.896782,0.878772,0.895503,0.825245,0.118176,0.557246,0.0401658,0.170139,0.637313,0.744004,0.718846,0.357452,0.42,0.328295,0.702655,0.84012,0.862435,0.505355,0.150666,0.858067,0.119806,0.236741,0.552072,0.887764,0.85453,0.80041,0.908835,0.921742,0.16911,0.79055,0.153118,0.459268,0.244577,0.274615,0.0410287,0.00904292,0.314725,0.61182,0.869698,0.962439,0.724863,0.190571,0.989004,0.646571,0.527562,0.391947,0.551167,0.212127,0.501462,0.644691,0.867566,0.533129,0.113895,0.61021,0.679951,0.116318,0.180282,0.634779,0.764035,0.752185,0.779973,0.995445,0.359096,0.0183572,0.699918,0.67193,0.223212,0.39391,0.0587191,0.988814,0.309377,0.0712332,0.451843,0.310637,0.206625,0.660056,0.485994,0.111297,0.561037,0.330818,0.805437,0.836757,0.178409,0.609575,0.797603,0.895454,0.136904,0.845331,0.847802,0.528978,0.749099,0.55147,0.226902,0.695355,0.415488,0.369446,0.0756228,0.589127,0.808013,0.42598,0.363656,0.774609,0.220668,0.971677,0.723283,0.635613,0.676746,0.144231,0.600515,0.400691,0.0902194,0.113968,0.418965,0.528765,0.969972,0.520629,0.255901,0.351674,0.567651,0.435737,0.941997,0.843586,0.13144,0.974495,0.286669,0.0137947,0.853543,0.288931,0.141778,0.667465,0.0577644,0.512877,0.746981,0.106063,0.777271,0.60626,0.0949004,0.967172,0.585687,0.660464,0.76768,0.120154,0.95798,0.1876,0.859755,0.294444,0.463688,0.978789,0.810193,0.463193,0.803115,0.215932,0.247568,0.263497,0.990934,0.985357,0.703959,0.527591,0.491983,0.365043,0.982016,0.418717,0.267796,0.216079,0.27115,0.153411,0.244505,0.814312,0.20825,0.960083,0.117958,0.905233,0.653934,0.503808,0.338686,0.6306,0.882878,0.15962,0.367421,0.00223398,0.585119,0.854516,0.29492,0.714449,0.26204,0.800339,0.56629,0.893171,0.527834,0.873097,0.0979238,0.393007,0.093285,0.207773,0.0830718,0.685315,0.531954,0.831821,0.161052,0.893914,0.444863,0.11194,0.682894,0.662039,0.470769,0.835719,0.267563,0.459621,0.518905,0.135549,0.481462,0.358801,0.753667,0.0762993,0.499323,0.489936,0.956628,0.524304,0.348764,0.054162,0.677735,0.158637,0.676284,0.706631,0.691118,0.014042,0.880413,0.818714,0.13233,0.446909,0.579243,0.388808,0.375684,0.604694,0.168056,0.480989,0.155034,0.675322,0.487519,0.785874,0.724811,0.384504,0.36357,0.0331542,0.761595,0.44536,0.497671,0.342793,0.885847,0.0262284,0.362662,0.672988,0.742465,0.768602,0.371668,0.635206,0.709484,0.954832,0.669341,0.280739,0.00779927,0.103107,0.956403,0.204045,0.674379,0.676453,0.0746479,0.805142,0.875689,0.916481,0.414624,0.548804,0.37438,0.0528044,0.996966,0.00289059,0.699341,0.734052,0.513757,0.673399,0.0243124,0.852508,0.768048,0.462211,0.890966,0.336056,0.234853,0.394661,0.0699257,0.591896,0.592748,0.13931,0.683192,0.426655,0.759443,0.246451,0.247054,0.245403,0.820358,0.641027,0.141471,0.105963,0.530131,0.919896,0.2043,0.630643,0.384625,0.997906,0.12758,0.928495,0.51912,0.417502,0.738928,0.410498,0.0414199,0.299173,0.124301,0.525023,0.0586123,0.889035,0.0361381,0.963967,0.130029,0.16813,0.570977,0.772391,0.531169,0.795422,0.662507,0.859696,0.824802,0.26726,0.330799,0.825808,0.706893,0.500359,0.21556,0.635964,0.616454,0.569627,0.372561,0.672032,0.820159,0.181951,0.289246,0.691173,0.658746,0.836431,0.407297,0.541338,0.512843,0.0567209,0.699707,0.617126,0.940346,0.57213,0.174341,0.664417,0.290192,0.210151,0.395246,0.0208027,0.442326,0.453532,0.997284,0.0886146,0.925685,0.67274,0.209458,0.86141,0.990891,0.327913,0.312688,0.844055,0.0711085,0.387291,0.895497,0.558571,0.88591,0.878021,0.617453,0.664796,0.495986,0.275387,0.0268785,0.159286,0.996955,0.136862,0.501187,0.885607,0.113421,0.431157,0.357349,0.399648,0.0777147,0.000522912,0.149415,0.449166,0.396331,0.674655,0.436025,0.882432,0.74187,0.167936,0.949884,0.461168,0.413097,0.337091,0.530686,0.0192827,0.257709,0.373228,0.158622,0.950128,0.24151,0.0953466,0.731792,0.15289,0.539891,0.12543,0.580883,0.252049,0.400921,0.588263,0.425098,0.1149,0.247797,0.417103,0.836076,0.551426,0.796732,0.52394,0.165504,0.103075,0.0909037,0.580213,0.649442,0.111853,0.334697,0.776547,0.934074,0.0477848,0.544597,0.135015,0.732738,0.474186,0.234711,0.573281,0.624512,0.740766,0.686678,0.588751,0.554276,0.171967,0.0706156,0.183015,0.212649,0.65929,0.909145,0.512622,0.56366,0.434819,0.87778,0.940565,0.226461,0.689328,0.500371,0.440734,0.914554,0.828427,0.664735,0.364496,0.343924,0.664392,0.0527724,0.922499,0.401149,0.574746,0.893435,0.163755,0.524326,0.222468,0.512497,0.570157,0.547266,0.824598,0.32952,0.398973,0.711629,0.26732,0.692699,0.113485,0.439704,0.446614,0.991667,0.0416996,0.0259549,0.910299,0.477631,0.893774,0.0327497,0.373308,0.0334847,0.636814,0.466901,0.844853,0.615123,0.719812,0.771005,0.131193,0.380196,0.433206,0.867282,0.793093,0.468163,0.181362,0.540469,0.834859,0.977745,0.733649,0.500018,0.427725,0.303514,0.790009,0.1423,0.289472,0.993496,0.623948,0.260157,0.107014,0.105657,0.717876,0.989955,0.928946,0.272288,0.189236,0.722234,0.202951,0.717994,0.347969,0.0194866,0.275205,0.390786,0.492176,0.143558,0.667755,0.536334,0.464839,0.791521,0.846944,0.100371,0.473968,0.0224153,0.174984,0.444018,0.451145,0.726553,0.829831,0.578283,0.0883173,0.349509,0.868793,0.269781,0.193453,0.00647575,0.418356,0.509451,0.164659,0.171038,0.969325,0.513991,0.387509,0.748392,0.69066,0.661277,0.289046,0.993592,0.307955,0.511533,0.724631,0.189216,0.898402,0.0838713,|0.0605535,0.327454,0.6707,0.494687,0.563253,0.141577,0.731695,0.436824,0.665362,0.679802,0.150409,0.886547,0.55297,0.999936,0.0669225,0.348351,0.912758,0.476338,0.962592,0.791429,0.176772,0.102228,0.0259716,0.454042,0.0117031,0.648952,0.405022,0.981768,0.146329,0.813955,0.607737,0.254601,0.198415,0.00861955,0.409088,0.602653,0.476192,0.756908,0.938417,0.557897,0.349287,0.33034,0.906208,0.858881,0.242549,0.388228,0.0742936,0.477222,0.417074,0.235133,0.345721,0.868952,0.612103,0.299962,0.678801,0.833002,0.592874,0.728159,0.706843,0.254443,0.847288,0.0711018,0.553932,0.914431,0.566888,0.954567,0.284369,0.633933,0.883241,0.0438282,0.85024,0.381623,0.44369,0.582077,0.777148,0.223992,0.192079,0.546371,0.302392,0.676412,0.20467,0.456921,0.263886,0.898326,0.67278,0.862312,0.217809,0.179869,0.96425,0.522602,0.830704,0.161102,0.827907,0.0782064,0.662789,0.221374,0.793829,0.100686,0.341888,0.0168349,0.847601,0.231781,0.109129,0.51467,0.774717,0.395378,0.38329,0.474609,0.943828,0.925892,0.327887,0.720592,0.933851,0.210625,0.00522834,0.388815,0.914796,0.652222,0.0572649,0.252923,0.177508,0.149757,0.489824,0.808045,0.48394,0.49461,0.154379,0.31578,0.426942,0.515451,0.378988,0.0793507,0.0962964,0.350825,0.602205,0.0908734,0.457379,0.484447,0.0647584,0.626929,0.811278,0.217879,0.279656,0.807424,0.587869,0.0806131,0.49667,0.889968,0.895894,0.440599,0.44534,0.0852023,0.256247,0.534559,0.609006,0.322269,0.09949,0.0177503,0.313854,0.128959,0.208188,0.650758,0.508369,0.561456,0.543121,0.413101,0.664182,0.219454,0.145334,0.950673,0.83704,0.863042,0.366748,0.150805,0.578859,0.562392,0.372624,0.14225,0.13842,0.875194,0.237851,0.0135012,0.191634,0.489257,0.949527,0.536456,0.988989,0.65851,0.916939,0.785283,0.765928,0.225717,0.106773,0.350416,0.706385,0.200055,0.896322,0.494557,0.292278,0.864885,0.719376,0.629855,0.555318,0.289449,0.372151,0.0009166,0.188557,0.503718,0.212287,0.913589,0.481733,0.320389,0.185112,0.155053,0.0974152,0.110656,0.391303,0.368411,0.748902,0.274075,0.489855,0.563025,0.337078,0.54532,0.188867,0.576762,0.648508,0.803437,0.0965133,0.217555,0.470678,0.553095,0.743977,0.0121411,0.0749473,0.284138,0.557002,0.402859,0.505226,0.385658,0.2745,0.52652,0.597601,0.903364,0.326004,0.0869082,0.00687957,0.327156,0.967075,0.913036,0.747154,0.969382,0.488018,0.870382,0.875596,0.283677,0.742029,0.566344,0.372868,0.0565117,0.252353,0.451955,0.950705,0.0440934,0.676997,0.432039,0.491129,0.218999,0.185599,0.414973,0.930299,0.052211,0.301307,0.441454,0.535785,0.459342,0.594675,0.311002,0.167767,0.158665,0.363493,0.24998,0.320121,0.873914,0.692271,0.503273,0.528339,0.110995,0.731354,0.515186,0.841692,0.687616,0.96447,0.734725,0.745545,0.972242,0.765893,0.49621,0.748108,0.922193,0.156332,0.14672,0.196721,0.0742662,0.847099,0.099879,0.355755,0.220206,0.937285,0.414706,0.51191,0.531646,0.726976,0.38561,0.795487,0.268101,0.670819,0.964457,0.178589,0.609684,0.199428,0.363563,0.155533,0.465445,0.0821187,0.738764,0.563696,0.345265,0.448194,0.827606,0.657435,0.387552,0.00954491,0.643964,0.646984,0.451127,0.727399,0.534303,0.885243,0.136744,0.911344,0.704077,0.446905,0.841005,0.771067,0.206215,0.251262,0.696474,0.99018,0.98303,0.2376,0.81595,0.339982,0.053651,0.123808,0.544851,0.268326,0.213258,0.797277,0.524179,0.154254,0.0677797,0.318006,0.748309,0.218143,0.262433,0.149358,0.0892615,0.591496,0.123202,0.910229,0.533064,0.540926,0.32431,0.895351,0.996832,0.980844,0.503064,0.061343,0.555024,0.319463,0.646414,0.607471,0.442834,0.236126,0.879592,0.883724,0.532353,0.200905,0.29652,0.778024,0.180832,0.173704,0.480295,0.757965,0.301235,0.00661045,0.365132,0.786691,0.121156,0.328475,0.752887,0.339547,0.147117,0.139872,0.28657,0.687331,0.863553,0.848144,0.882196,0.142431,0.733729,0.682108,0.115568,0.40484,0.120205,0.803538,0.357939,0.331742,0.945775,0.8768,0.969004,0.803631,0.430623,0.77346,0.970342,0.303989,0.0688553,0.797748,0.677669,0.512782,0.87559,0.916198,0.787905,0.404951,0.363283,0.174963,0.810126,0.174406,0.426906,0.0535812,0.513919,0.276282,0.694823,0.362974,0.596077,0.269563,0.363373,0.405604,0.334938,0.635359,0.661352,0.652762,0.700875,0.700417,0.754047,0.678689,0.672251,0.0715508,0.268981,0.575621,0.664798,0.804158,0.708144,0.364967,0.545437,0.0964103,0.884179,0.204752,0.740837,0.870827,0.337083,0.549038,0.819585,0.433444,0.877843,0.820399,0.0536734,0.914936,0.20017,0.0163862,0.241904,0.192984,0.7198,0.463469,0.948664,0.890698,0.848722,0.19243,0.00402212,0.368707,0.716752,0.40458,0.629288,0.118399,0.0116494,0.412747,0.342833,0.546777,0.0918817,0.540553,0.130769,0.401779,0.12804,0.0604708,0.674294,0.607164,0.599656,0.282223,0.734345,0.0368414,0.862795,0.744525,0.228968,0.323466,0.94051,0.0070371,0.210923,0.495946,0.131613,0.269165,0.731197,0.422343,0.142703,0.453005,0.893423,0.657028,0.538125,0.718581,0.357317,0.577477,0.992261,0.190028,0.760296,0.118507,0.326559,0.531072,0.390298,0.887315,0.702369,0.988796,0.21025,0.493539,0.0498585,0.373997,0.755274,0.710562,0.173197,0.359296,0.366134,0.421359,0.904217,0.214674,0.653303,0.954039,0.788954,0.190775,0.640243,0.608154,0.184289,0.792111,0.0609277,0.914102,0.756199,0.0112545,0.389044,0.435254,0.954628,0.409552,0.589836,0.877929,0.604611,0.28721,0.757476,0.354116,0.712538,0.504177,0.954016,0.491583,0.759673,0.891386,0.428673,0.0776643,0.937867,0.585768,0.862517,0.0885812,0.95445,0.475812,0.965912,0.096949,0.663217,0.49227,0.301165,0.931551,0.26151,0.143902,0.818517,0.415287,0.889592,0.175399,0.976891,0.719892,0.438824,0.180167,0.504025,0.637045,0.546452,0.403325,0.410757,0.396074,0.14227,0.722125,0.0397705,0.984201,0.524122,0.229752,0.598207,0.779852,0.030912,0.78823,0.130478,0.250929,0.97003,0.460167,0.11199,0.181636,0.731912,0.204716,0.521788,0.177227,0.16828,0.959794,0.46043,0.561305,0.642477,0.683991,0.734898,0.822856,0.704173,0.299929,0.33946,0.131522,0.982673,0.268975,0.881525,0.338944,0.181082,0.415444,0.195256,0.539813,0.870053,0.46719,0.881981,0.845979,0.452949,0.634306,0.318636,0.323792,0.139183,0.783511,0.216937,0.545046,0.536931,0.650436,0.318944,0.314892,0.849661,0.123923,0.543233,0.918659,0.703799,0.385298,0.55191,0.187968,0.352136,0.181649,0.0834275,0.854338,0.0842431,0.0854397,0.321281,0.229859,0.475945,0.189275,0.354487,0.0249529,0.565558,0.343728,0.828625,0.879853,0.570971,0.907332,0.766417,0.373642,0.866123,0.520285,0.315321,0.73914,0.908084,0.580682,0.50559,0.366567,0.813425,0.76767,0.822016,0.674203,0.37564,0.0392436,0.0261475,0.170057,0.977375,0.500034,0.920976,0.896375,0.53267,0.10172,0.108176,0.0827416,0.986909,0.824993,0.2162,0.314111,0.207292,0.604121,0.169208,0.62107,0.922819,0.261407,0.522716,0.135002,0.438712,0.855117,0.0688521,0.0137668,0.814526,0.523091,0.801643,0.204882,0.0376211,0.397027,0.61152,0.168439,0.256749,0.40051,0.337853,0.0247791,0.704974,0.347267,0.614603,0.723735,0.59252,0.896288,0.363097,0.0369317,0.914043,0.392485,0.319039,0.562275,0.99046,0.356909,0.21443,0.400433,0.618497,0.562075,0.581277,0.974492,0.283979,0.593748,0.832029,0.468958,0.440245,0.0788355,0.843391,0.440387,0.888614,0.71014,0.943152,0.840158,0.0542049,0.69142,0.825079,0.388028,0.00153291,0.853256,0.141067,0.496022,0.616979,0.140589,0.241418,0.544879,0.701676,0.817798,0.705287,0.179324,0.979301,0.0233187,0.85148,0.332837,0.972538,0.0355769,0.848163,0.508771,0.440441,0.0488124,0.945655,0.917018,0.685504,0.61554,0.378382,0.603337,0.505559,0.0419831,0.414278,0.794327,0.233776,0.0075199,0.76465,0.169758,0.707645,0.700379,0.177096,0.902862,0.99274,0.595516,0.0437291,0.847763,0.596628,0.870119,0.61772,0.268703,0.295533,0.75503,0.618749,0.516802,0.874572,0.910917,0.811848,0.29891,0.373248,0.718078,0.946886,0.383985,0.288772,0.487422,0.0967292,0.302723,0.20478,0.777586,0.499782,0.348681,0.481746,0.950945,0.886259,0.445824,0.560105,0.593681,0.859225,0.656666,0.578503,0.613423,0.399403,0.645232,0.267413,0.521403,0.308957,0.179635,0.642955,0.389237,0.633771,0.335833,0.425561,0.441517,0.916902,0.760548,0.432974,0.783511,0.720451,0.175008,0.309534,0.645956,0.706331,0.648129,0.28245,0.0155509,0.85151,0.275199,0.489522,0.859476,0.434206,0.538613,0.696776,0.285633,0.367626,0.540161,0.800769,0.580159,0.93975,0.746397,0.242686,0.932996,0.962506,0.484416,0.50251,0.62058,0.972338,0.647209,0.529529,0.254552,0.456161,0.678953,0.34464,0.420106,0.301819,0.885929,0.756056,0.562101,0.806731,0.582683,0.808844,0.528633,0.945049,0.522041,0.0653755,0.536615,0.895638,0.733972,0.881473,0.326075,0.0817199,0.00128162,0.249846,0.996223,0.252397,0.42034,0.874472,0.971331,0.0783941,0.492465,0.598795,0.821591,0.724733,0.896261,0.96329,0.883693,0.462866,0.614062,0.39569,0.791603,0.417731,0.637417,0.0589464,0.504178,0.59336,0.535495,0.852906,0.358005,0.927876,0.194708,0.352665,0.0931399,0.882156,0.66065,0.928344,0.601786,0.749076,0.836894,0.382932,0.730871,0.599977,0.851035,0.952665,0.0355206,0.182891,0.28807,0.202012,0.404017,0.388096,0.0236848,0.288371,0.456274,0.305357,0.123548,0.670605,0.951792,0.71252,0.208151,0.611409,0.796208,0.912018,0.360081,0.048313,0.896869,0.00584817,0.59106,0.931272,0.0332402,0.120028,0.0825717,0.419386,|0.0431395,0.955771,0.914299,0.34479,0.194798,0.449075,0.675815,0.818944,0.540714,0.0012176,0.97406,0.144619,0.191583,0.521069,0.0566778,0.773516,0.51493,0.718902,0.512943,0.650296,0.579334,0.802448,0.567263,0.167146,0.928327,0.534217,0.680959,0.814686,0.220884,0.263108,0.90946,0.556133,0.560935,0.978866,0.850248,0.24433,0.165823,0.982897,0.290377,0.708205,0.136191,0.763171,0.30725,0.689528,0.163754,0.968911,0.283167,0.381064,0.299508,0.716749,0.620698,0.419744,0.720673,0.649179,0.642607,0.445818,0.795057,0.281428,0.576693,0.255549,0.953941,0.979228,0.748377,0.337807,0.0262675,0.184841,0.503076,0.343212,0.390221,0.955289,0.649545,0.42061,0.150515,0.418019,0.126927,0.928681,0.0139787,0.393799,0.478678,0.315604,0.38871,0.936486,0.741219,0.725559,0.887301,0.761465,0.603792,0.351381,0.454386,0.120692,0.914454,0.780519,0.315294,0.719509,0.920614,0.675572,0.698755,0.307016,0.464296,0.422736,0.952687,0.10129,0.408001,0.34683,0.0890718,0.0666533,0.00201559,0.232739,0.949033,0.835689,0.536083,0.708928,0.20039,0.976786,0.103466,0.548755,0.439343,0.85333,0.7986,0.688895,0.0411938,0.805335,0.54442,0.805173,0.613092,0.921875,0.74567,0.311792,0.395826,0.754856,0.761132,0.716497,0.87228,0.483551,0.301013,0.372114,0.510644,0.091386,0.744155,0.823137,0.442189,0.444439,0.128636,0.97347,0.256024,0.88358,0.547697,0.983553,0.39725,0.388438,0.387043,0.681637,0.331308,0.737703,0.967503,0.275795,0.18081,0.753366,0.378988,0.646141,0.239142,0.794593,0.652995,0.649694,0.0239076,0.924258,0.54045,0.12485,0.834687,0.148992,0.888915,0.997832,0.946896,0.611898,0.327261,0.04031,0.448016,0.776534,0.882383,0.394007,0.121929,0.0107132,0.99356,0.179177,0.70449,0.23119,0.466088,0.680455,0.949631,0.369991,0.151719,0.837407,0.695356,0.832471,0.968903,0.0346885,0.590853,0.553422,0.895108,0.658389,0.378876,0.544452,0.231992,0.196584,0.652744,0.930165,0.0309428,0.0445096,0.227368,0.154312,0.660526,0.252341,0.557857,0.0372443,0.737483,0.382573,0.141706,0.340999,0.508978,0.492751,0.837155,0.174899,0.406879,0.830112,0.434745,0.562242,0.330811,0.519584,0.82656,0.402187,0.39832,0.214489,0.623073,0.810431,0.210001,0.551952,0.0468931,0.255608,0.879521,0.0946333,0.182195,0.370827,0.688187,0.987342,0.15177,0.685502,0.38315,0.0473177,0.150062,0.519346,0.751971,0.475512,0.169768,0.0347765,0.176732,0.494606,0.64798,0.911662,0.929221,0.811887,0.568467,0.550591,0.325076,0.254375,0.0566342,0.13708,0.782396,0.893037,0.887289,0.111401,0.570678,0.224666,0.779939,0.518592,0.886872,0.53425,0.837578,0.41979,0.82277,0.869773,0.690003,0.9243,0.719028,0.0584313,0.630321,0.937116,0.925541,0.826091,0.108517,0.0169791,0.211448,0.0349679,0.778771,0.724654,0.742006,0.516799,0.57161,0.155127,0.989092,0.250807,0.583037,0.184835,0.576403,0.868888,0.28475,0.973557,0.498591,0.482545,0.979079,0.662019,0.534871,0.841986,0.894034,0.856739,0.0524913,0.671612,0.782649,0.15754,0.396266,0.893881,0.99259,0.264784,0.553365,0.329826,0.552181,0.262375,0.310861,0.452021,0.98521,0.279128,0.381922,0.963386,0.399402,0.16399,0.96898,0.773812,0.938786,0.321314,0.703243,0.273606,0.963,0.61154,0.271465,0.88427,0.894682,0.577975,0.721715,0.608177,0.597602,0.772611,0.98145,0.614349,0.151216,0.0092482,0.920063,0.679511,0.564885,0.969496,0.334453,0.153372,0.0313268,0.266999,0.241146,0.743472,0.51541,0.815832,0.646462,0.545995,0.649854,0.58181,0.456928,0.706037,0.885693,0.967243,0.53415,0.448131,0.601199,0.898323,0.00137597,0.695219,0.758668,0.270304,0.771664,0.243964,0.371825,0.824147,0.316183,0.530567,0.137507,0.30552,0.029219,0.284052,0.562772,0.052995,0.945034,0.889445,0.283784,0.058198,0.708503,0.708916,0.85485,0.583219,0.737107,0.109366,0.233532,0.690838,0.353548,0.999014,0.607457,0.942716,0.280589,0.173022,0.898298,0.674753,0.806773,0.143294,0.319398,0.998621,0.736725,0.396875,0.187802,0.144369,0.0707217,0.493611,0.564892,0.769573,0.595233,0.242663,0.600648,0.577563,0.271015,0.39716,0.135316,0.499959,0.067221,0.50007,0.700536,0.803592,0.273988,0.640039,0.520388,0.536221,0.236596,0.850546,0.373286,0.966077,0.518272,0.840447,0.0657302,0.486406,0.0377321,0.191964,0.921711,0.544501,0.98156,0.537159,0.294898,0.281087,0.162328,0.488414,0.370486,0.630259,0.246449,0.568536,0.574582,0.796811,0.0925798,0.928071,0.384379,0.477003,0.693213,0.464774,0.388367,0.875651,0.758141,0.827091,0.290419,0.860185,0.442422,0.864498,0.317609,0.257755,0.546779,0.625577,0.775983,0.227392,0.36457,0.983083,0.834345,0.014922,0.546196,0.250546,0.714857,0.648115,0.296766,0.8874,0.296136,0.214735,0.887444,0.508474,0.679784,0.746285,0.0102586,0.587558,0.440878,0.908087,0.052452,0.758608,0.394084,0.0843493,0.775043,0.441159,0.100096,0.421199,0.246448,0.515851,0.52573,0.402828,0.319186,0.766155,0.969765,0.850947,0.797431,0.0709529,0.0662656,0.368572,0.136845,0.814958,0.513404,0.894295,0.569206,0.696679,0.978805,0.0496481,0.72396,0.344485,0.356615,0.572112,0.119981,0.232625,0.611025,0.0964673,0.61663,0.637526,0.274834,0.707944,0.313112,0.666506,0.515798,0.984602,0.971237,0.719615,0.0971597,0.898951,0.732409,0.463084,0.183145,0.363721,0.0906533,0.874992,0.87726,0.0129691,0.353853,0.596912,0.619329,0.989589,0.187894,0.853135,0.185622,0.539172,0.656182,0.470726,0.433002,0.707685,0.846185,0.60081,0.146237,0.798936,0.123808,0.213554,0.764513,0.124223,0.434737,0.104357,0.389316,0.535088,0.661542,0.275287,0.755012,0.72721,0.823647,0.038149,0.472553,0.278406,0.152268,0.789429,0.911936,0.696728,0.906119,0.555189,0.671426,0.807882,0.247686,0.933515,0.726088,0.771386,0.119102,0.00344759,0.0341747,0.0870945,0.719002,0.994577,0.408027,0.489035,0.557234,0.753564,0.0704939,0.713798,0.234337,0.14761,0.300981,0.16946,0.196584,0.632821,0.315844,0.103793,0.809326,0.180388,0.953594,0.198397,0.870216,0.526153,0.519794,0.553418,0.75629,0.759475,0.438339,0.477528,0.0924386,0.195376,0.310929,0.0176398,0.639943,0.0670685,0.41413,0.493367,0.941516,0.250997,0.490194,0.124034,0.636861,0.150082,0.986714,0.594755,0.769666,0.241819,0.405903,0.895221,0.924344,0.606871,0.484066,0.49697,0.426786,0.721613,0.502762,0.736205,0.31193,0.74783,0.430622,0.59965,0.259272,0.896851,0.63899,0.436958,0.633801,0.0189292,0.394526,0.321082,0.881375,0.00506938,0.00953215,0.849114,0.820352,0.0679235,0.163378,0.392603,0.927309,0.656527,0.186452,0.0603384,0.283527,0.677709,0.856072,0.819559,0.0436569,0.275732,0.331081,0.430373,0.2037,0.796563,0.365114,0.656703,0.0300941,0.566411,0.228661,0.392986,0.399418,0.438671,0.864717,0.247473,0.264319,0.984042,0.594381,0.021238,0.544114,0.587286,0.902307,0.292544,0.814815,0.825418,0.187389,0.925895,0.195321,0.779464,0.0443268,0.899737,0.627275,0.784464,0.606367,0.689312,0.976939,0.896528,0.0485657,0.00583744,0.759995,0.1688,0.488098,0.037513,0.152098,0.261779,0.398098,0.569061,0.350143,0.698714,0.861061,0.791812,0.719132,0.684771,0.412274,0.235467,0.300574,0.0508898,0.753793,0.0205088,0.521523,0.587845,0.998168,0.0976394,0.88292,0.249739,0.149894,0.293606,0.174163,0.0218942,0.350362,0.372254,0.689605,0.674357,0.224016,0.144207,0.905075,0.842371,0.950189,0.292866,0.957519,0.54915,0.584777,0.270418,0.642313,0.631325,0.372472,0.392472,0.973062,0.693616,0.902662,0.919576,0.758301,0.424527,0.157052,0.887712,0.258081,0.169489,0.167896,0.204517,0.0835331,0.883572,0.998944,0.803341,0.86441,0.867756,0.195052,0.94693,0.84659,0.107347,0.814976,0.315531,0.620515,0.919932,0.189901,0.442337,0.403211,0.842412,0.466511,0.654122,0.594773,0.152526,0.810662,0.471968,0.44874,0.627359,0.834199,0.283125,0.169097,0.205085,0.86648,0.83973,0.162452,0.344731,0.114934,0.482758,0.972045,0.00387144,0.218413,0.840782,0.438405,0.386029,0.959786,0.949187,0.0702072,0.230442,0.86972,0.402309,0.0065906,0.0118986,0.0817044,0.0784499,0.422316,0.0772084,0.665695,0.855976,0.330885,0.161147,0.272664,0.781042,0.909003,0.0278468,0.114207,0.0930354,0.412643,0.982507,0.447053,0.515898,0.342117,0.599193,0.145324,0.140405,0.616249,0.166977,0.204942,0.3193,0.88232,0.877187,0.553887,0.661736,0.303671,0.915109,0.839443,0.860193,0.48355,0.530591,0.087912,0.304228,0.64972,0.400842,0.36448,0.148979,0.31089,0.871692,0.74595,0.0814489,0.0701147,0.801839,0.597083,0.620302,0.621147,0.134478,0.123946,0.953958,0.316634,0.739772,0.251268,0.758889,0.938439,0.498906,0.757852,0.582054,0.437069,0.91227,0.600757,0.00468034,0.191977,0.447903,0.75682,0.718571,0.366048,0.657564,0.300603,0.304193,0.786262,0.112793,0.535838,0.440151,0.322891,0.68096,0.395252,0.0921037,0.274647,0.0759406,0.0340924,0.505168,0.508837,0.837865,0.895041,0.7774,0.512955,0.536307,0.0936671,0.639214,0.456215,0.631612,0.771124,0.334424,0.712917,0.199541,0.0432674,0.0369958,0.80515,0.0599126,0.938247,0.187843,0.419691,0.895878,0.43753,0.6425,0.25034,0.53629,0.824735,0.741989,0.703392,0.722577,0.864919,0.284778,0.891459,0.516144,0.769716,0.93291,0.274064,0.435781,0.170347,0.989454,0.738825,0.637816,0.0144056,0.221037,0.973816,0.16588,0.616551,0.402811,0.613753,0.139904,0.162294,0.340286,0.717688,0.088448,0.323868,0.551046,0.952814,0.125335,0.94889,0.136384,0.331053,0.764901,0.995301,0.965048,0.000217021,0.943388,0.402679,0.712537,0.693732,0.577069,|0.6069,0.499248,0.269183,0.751705,0.422464,0.169959,0.183434,0.238415,0.972567,0.981923,0.514975,0.216346,0.0173721,0.127616,0.0150407,0.921869,0.457441,0.143535,0.181283,0.208926,0.581684,0.0272818,0.0119859,0.172636,0.610942,0.883961,0.670524,0.0877783,0.229564,0.945849,0.0372321,0.369342,0.564284,0.655386,0.381511,0.677415,0.0180507,0.344555,0.74062,0.270671,0.465863,0.165562,0.533856,0.11151,0.834791,0.387216,0.970489,0.416342,0.8537,0.735747,0.936959,0.563764,0.309493,0.779799,0.780008,0.613099,0.198935,0.718027,0.167987,0.0393419,0.785266,0.970029,0.31909,0.439439,0.944592,0.120804,0.311406,0.190153,0.0284089,0.664948,0.853171,0.241022,0.204587,0.524282,0.907538,0.696779,0.959219,0.369673,0.290338,0.784429,0.950139,0.603099,0.711644,0.354776,0.757284,0.280321,0.245033,0.522815,0.289911,0.908257,0.855861,0.317743,0.0760885,0.80684,0.212314,0.608586,0.359403,0.0628977,0.0839093,0.606671,0.88243,0.880609,0.701832,0.53609,0.186064,0.794458,0.678273,0.612139,0.244653,0.244305,0.185803,0.720197,0.661778,0.794096,0.479405,0.326453,0.724815,0.0335637,0.000206709,0.54613,0.0435336,0.0530198,0.160539,0.62863,0.998817,0.884985,0.540104,0.456699,0.598375,0.00202101,0.148685,0.581454,0.415705,0.823117,0.0508135,0.195706,0.0708987,0.357609,0.401516,0.130224,0.940358,0.788102,0.167044,0.316869,0.854791,0.878314,0.627973,0.504349,0.685909,0.731832,0.792597,0.125026,0.595872,0.658332,0.537983,0.569434,0.00947917,0.810107,0.37808,0.250992,0.634574,0.324863,0.537396,0.9032,0.671339,0.0417375,0.299188,0.594753,0.190576,0.433266,0.906974,0.7958,0.0712899,0.697402,0.709928,0.706189,0.447096,0.0913642,0.247429,0.829416,0.182641,0.674132,0.424094,0.0165922,0.730305,0.420696,0.370065,0.350739,0.0304096,0.37112,0.815036,0.12994,0.103505,0.456629,0.22334,0.144695,0.643282,0.528568,0.420735,0.685579,0.735169,0.962185,0.102261,0.187223,0.150408,0.789124,0.463009,0.835917,0.345002,0.936438,0.345567,0.334987,0.248039,0.471676,0.850346,0.302174,0.89837,0.729477,0.0671671,0.943101,0.604178,0.726641,0.814853,0.860635,0.999143,0.122762,0.54721,0.332397,0.0346924,0.985963,0.551918,0.234829,0.192735,0.827657,0.864867,0.381785,0.515704,0.344038,0.983127,0.947754,0.550548,0.29305,0.359357,0.0975802,0.734471,0.812901,0.546674,0.888115,0.701991,0.503102,0.607654,0.980264,0.155361,0.440664,0.637348,0.0804929,0.117928,0.351084,0.160309,0.226236,0.992919,0.201832,0.228467,0.176604,0.902842,0.113334,0.303508,0.978572,0.482091,0.195728,0.651716,0.233327,0.464831,0.520584,0.884336,0.535498,0.724217,0.838837,0.941717,0.783084,0.378464,0.688602,0.197315,0.508617,0.709235,0.927279,0.190191,0.664616,0.326524,0.844501,0.0220209,0.702151,0.649935,0.285194,0.729289,0.807333,0.548502,0.211845,0.296608,0.359876,0.994591,0.551976,0.0253226,0.628684,0.637007,0.798016,0.792219,0.357302,0.47717,0.257064,0.328224,0.789839,0.569026,0.366799,0.485246,0.904911,0.846839,0.0102798,0.792111,0.628063,0.613613,0.653529,0.871154,0.415091,0.161073,0.364529,0.555418,0.601628,0.739406,0.550575,0.30494,0.0945494,0.262032,0.535125,0.252949,0.994641,0.112747,0.57199,0.591444,0.664228,0.299232,0.325767,0.117917,0.440378,0.847002,0.055944,0.609136,0.180688,0.837674,0.864884,0.448621,0.931396,0.529703,0.925666,0.930571,0.586237,0.82931,0.323985,0.155964,0.656679,0.402058,0.263711,0.195852,0.418814,0.744802,0.928833,0.468499,0.255099,0.29932,0.759603,0.715186,0.800242,0.662371,0.961971,0.692598,0.780909,0.240556,0.218789,0.297264,0.573026,0.921151,0.501026,0.535073,0.851263,0.545852,0.813021,0.0721411,0.950129,0.214241,0.574871,0.125006,0.426561,0.0609665,0.449348,0.774885,0.0368121,0.34772,0.0708608,0.0176488,0.450257,0.960536,0.0562124,0.656305,0.618042,0.188861,0.21507,0.60893,0.653566,0.904384,0.47864,0.701471,0.779003,0.752429,0.578248,0.418756,0.657868,0.0146147,0.948488,0.444276,0.549108,0.454873,0.443985,0.205308,0.728222,0.242885,0.85919,0.84748,0.110882,0.69628,0.209533,0.864587,0.293098,0.998726,0.302364,0.964044,0.599002,0.0365672,0.384265,0.18806,0.895704,0.1679,0.119467,0.102444,0.434834,0.883887,0.702385,0.81609,0.369543,0.298066,0.0892563,0.153288,0.247293,0.0128023,0.383272,0.416616,0.763783,0.0899767,0.874892,0.235571,0.632479,0.183081,0.221747,0.540151,0.90009,0.128503,0.304087,0.5835,0.99264,0.241872,0.692911,0.324455,0.249902,0.930595,0.827736,0.710569,0.94092,0.775532,0.746523,0.537253,0.922714,0.401806,0.475074,0.306686,0.25005,0.637271,0.340287,0.479183,0.136752,0.72512,0.569186,0.910852,0.317625,0.554347,0.701779,0.687178,0.768741,0.0771317,0.288069,0.73298,0.272545,0.0976834,0.187074,0.160464,0.145731,0.395063,0.92436,0.11219,0.107738,0.038004,0.845547,0.734354,0.630183,0.218593,0.0667717,0.780289,0.168103,0.559833,0.91443,0.915479,0.480166,0.47095,0.849661,0.224375,0.782318,0.39234,0.292869,0.279555,0.26693,0.0796026,0.179394,0.821062,0.416421,0.70903,0.470995,0.639901,0.902229,0.702054,0.63746,0.859498,0.689421,0.973817,0.487157,0.955747,0.577084,0.340284,0.839967,0.0154989,0.0945815,0.0782877,0.876163,0.0684648,0.774274,0.717315,0.821458,0.437084,0.353379,0.519723,0.60343,0.397639,0.75545,0.752811,0.239275,0.76156,0.406627,0.0910392,0.269358,0.348843,0.708999,0.598533,0.370717,0.60496,0.863765,0.125412,0.895465,0.0210941,0.533055,0.353223,0.0896819,0.614787,0.0494994,0.745796,0.667775,0.166973,0.132108,0.718192,0.164434,0.883638,0.797528,0.469665,0.787376,0.06486,0.44266,0.96166,0.421664,0.346758,0.353032,0.231521,0.205006,0.67003,0.356678,0.290907,0.421499,0.173729,0.311345,0.0600499,0.851173,0.413336,0.124925,0.795476,0.708296,0.982951,0.870376,0.49995,0.374835,0.0542139,0.952885,0.874671,0.346777,0.384674,0.892764,0.432638,0.394354,0.655838,0.487709,0.393117,0.426175,0.0476405,0.714397,0.395958,0.585295,0.818768,0.427853,0.727148,0.131445,0.663685,0.367522,0.852491,0.952024,0.530209,0.892697,0.17144,0.00157499,0.370605,0.0824893,0.0342879,0.792371,0.773962,0.961924,0.422191,0.744962,6.65188e-05,0.964735,0.556158,0.0321403,0.490511,0.0706964,0.0962877,0.726129,0.827542,0.0873602,0.246974,0.922919,0.165238,0.58377,0.838614,0.13202,0.0405697,0.760061,0.419844,0.115191,0.59952,0.136512,0.98854,0.12486,0.962478,0.505032,0.973585,0.423033,0.875545,0.311,0.402883,0.868091,0.0611496,0.954923,0.00908041,0.929938,0.00731385,0.959072,0.0462428,0.855186,0.263567,0.803507,0.539815,0.424674,0.61526,0.956464,0.802907,0.663632,0.147997,0.405925,0.584111,0.312513,0.417982,0.68041,0.918823,0.525327,0.92893,0.683131,0.75839,0.859574,0.736385,0.453486,0.192329,0.446586,0.405543,0.575809,0.748267,0.698339,0.856415,0.132889,0.52802,0.598397,0.608468,0.302423,0.48472,0.123116,0.13617,0.438318,0.973895,0.0400637,0.7755,0.289132,0.0174742,0.299104,0.290096,0.643155,0.933181,0.643395,0.817534,0.815882,0.597467,0.160143,0.767675,0.327745,0.269989,0.710877,0.833104,0.766988,0.461325,0.223172,0.192991,0.371457,0.94371,0.82553,0.914587,0.0495294,0.0565982,0.944942,0.727598,0.997654,0.935993,0.832793,0.0764508,0.00241458,0.667167,0.933817,0.0523,0.706965,0.465759,0.988986,0.20499,0.850588,0.60255,0.745616,0.789419,0.362412,0.837744,0.263314,0.250661,0.154824,0.507313,0.698905,0.350455,0.271205,0.0162349,0.899304,0.380396,0.696254,0.263555,0.102397,0.150373,0.127834,0.602556,0.210889,0.0453414,0.435288,0.231163,0.700544,0.783454,0.905064,0.89739,0.610708,0.0130098,0.466682,0.207336,0.267282,0.350016,0.826167,0.531031,0.331425,0.91094,0.469964,0.154873,0.177635,0.247652,0.380481,0.54444,0.316654,0.122593,0.999546,0.857824,0.460127,0.83332,0.139229,0.675457,0.751342,0.700221,0.804108,0.872114,0.0561009,0.794257,0.692543,0.629654,0.140806,0.242164,0.449455,0.66002,0.968407,0.105277,0.734223,0.375398,0.0666954,0.885144,0.614909,0.380336,0.862925,0.51778,0.520012,0.309866,0.193115,0.0399632,0.0300754,0.373055,0.536558,0.412348,0.8091,0.375992,0.0099082,0.942643,0.34168,0.360793,0.101108,0.291568,0.189769,0.103144,0.307199,0.96422,0.761146,0.518545,0.38901,0.233805,0.36036,0.211918,0.942585,0.426827,0.412383,0.9371,0.956884,0.673483,0.955364,0.312719,0.470269,0.901252,0.715016,0.786135,0.917125,0.257926,0.674535,0.451037,0.350282,0.250347,0.984462,0.183842,0.721642,0.0305073,0.111944,0.234766,0.00557595,0.853532,0.970262,0.375774,0.576336,0.55447,0.282664,0.686212,0.972582,0.353294,0.98428,0.404635,0.345867,0.800706,0.0765831,0.647851,0.180799,0.146962,0.829821,0.18255,0.537138,0.153951,0.506376,0.9663,0.896244,0.999348,0.0172926,0.801724,0.910634,0.74551,0.022791,0.473108,0.641581,0.489761,0.628888,0.906364,0.363504,0.00101233,0.617813,0.704617,0.251228,0.959723,0.708446,0.617264,0.491254,0.434069,0.446778,0.856627,0.660459,0.129739,0.401884,0.217449,0.440493,0.879131,0.222324,0.315338,0.555153,0.935789,0.330715,0.743543,0.316736,0.936003,0.884107,0.395409,0.214585,0.475649,0.799999,0.77679,0.901231,0.570614,0.145569,0.377483,0.0711958,0.418627,0.162831,0.807831,0.575316,0.906317,0.785564,0.034857,0.298074,0.879465,0.481281,0.446848,0.300075,0.441188,0.333525,0.554598,0.659776,0.47086,0.120916,0.0477582,0.310162,0.41655,0.441425,0.901441,0.149065,0.0035789,0.375498,0.976859,0.627452,0.117344,0.25704,|0.0578168,0.485472,0.878634,0.269599,0.0813234,0.0483201,0.40673,0.681062,0.93831,0.903637,0.78872,0.359844,0.552698,0.647824,0.711225,0.832045,0.440845,0.454544,0.0371994,0.576603,0.585106,0.790231,0.377962,0.212797,0.78989,0.274861,0.0389749,0.571087,0.476149,0.0591947,0.753023,0.806616,0.558913,0.552857,0.29703,0.217737,0.127703,0.883718,0.82327,0.0858415,0.905292,0.345074,0.677926,0.806304,0.0656588,0.316804,0.222391,0.784352,0.833248,0.840349,0.566694,0.0131564,0.472312,0.569858,0.156149,0.0792718,0.311121,0.446195,0.830491,0.0725449,0.234776,0.593937,0.506638,0.381795,0.303128,0.907634,0.860478,0.492857,0.0139567,0.26165,0.942215,0.124572,0.369284,0.980648,0.821934,0.844442,0.926524,0.813702,0.678366,0.853705,0.771708,0.89074,0.323964,0.91014,0.545187,0.0410743,0.74033,0.970071,0.498374,0.15985,0.878067,0.842672,0.287753,0.880884,0.98388,0.646633,0.475686,0.0701169,0.885828,0.542172,0.0130588,0.040712,0.676623,0.308362,0.513554,0.822173,0.694938,0.829657,0.414091,0.0762372,0.0313578,0.963441,0.461291,0.969381,0.357546,0.948177,0.573519,0.313109,0.926584,0.316264,0.919519,0.777719,0.619219,0.886689,0.0687512,0.308966,0.837457,0.579448,0.298692,0.381757,0.484918,0.114756,0.814563,0.628698,0.128619,0.791352,0.64187,0.679714,0.803003,0.512647,0.423714,0.274279,0.218276,0.705668,0.215263,0.817053,0.845067,0.528181,0.661234,0.401547,0.872515,0.242157,0.906058,0.841864,0.0837206,0.0461553,0.784335,0.500994,0.209625,0.793469,0.136912,0.227534,0.253245,0.648039,0.506105,0.691538,0.307729,0.283697,0.90708,0.774769,0.975864,0.897741,0.71408,0.353979,0.781709,0.0798415,0.557072,0.208862,0.0700489,0.8915,0.700711,0.507958,0.638024,0.607143,0.875848,0.079842,0.833475,0.809417,0.661715,0.172082,0.471497,0.631072,0.962579,0.526825,0.884194,0.120141,0.166745,0.057865,0.121398,0.890535,0.983434,0.468513,0.200781,0.421178,0.474628,0.768502,0.83406,0.966328,0.0329998,0.722917,0.147384,0.12617,0.0887182,0.948787,0.968128,0.753872,0.479771,0.883271,0.711625,0.194882,0.805121,0.310944,0.620207,0.126941,0.782189,0.0497043,0.506955,0.980765,0.158719,0.0689986,0.286616,0.155652,0.448858,0.717624,0.130328,0.441905,0.31913,0.980088,0.825792,0.747835,0.79893,0.821261,0.0566718,0.247835,0.271929,0.884725,0.687465,0.909854,0.211147,0.118033,0.901023,0.0299773,0.556385,0.659235,0.592409,0.40609,0.42917,0.202311,0.441224,0.101513,0.942461,0.524653,0.11148,0.314372,0.227513,0.401767,0.204795,0.716455,0.953291,0.517159,0.730977,0.531435,0.148224,0.087904,0.732556,0.0325194,0.780132,0.390484,0.874256,0.352715,0.953815,0.876549,0.972107,0.766126,0.948686,0.652584,0.601051,0.0731671,0.729706,0.390504,0.34766,0.379129,0.393187,0.581006,0.390861,0.284317,0.127086,0.845495,0.0341277,0.665099,0.489612,0.0543162,0.600922,0.577348,0.700116,0.208829,0.228714,0.941362,0.292145,0.427404,0.834667,0.0251001,0.321998,0.485473,0.0238991,0.893663,0.835136,0.831117,0.934119,0.880546,0.970491,0.565454,0.533584,0.752871,0.539373,0.906025,0.122031,0.674277,0.120933,0.934782,0.331327,0.0895308,0.167684,0.278504,0.459185,0.334355,0.827714,0.519413,0.900545,0.995182,0.7447,0.52568,0.579642,0.647639,0.997151,0.471938,0.665264,0.928926,0.414752,0.756708,0.833635,0.898237,0.687832,0.266169,0.19391,0.255419,0.269297,0.70601,0.698682,0.692324,0.541149,0.415666,0.151186,0.969276,0.96423,0.749938,0.700026,0.669474,0.99923,0.647653,0.318278,0.429979,0.721447,0.66869,0.600364,0.51577,0.293084,0.127306,0.496854,0.508777,0.775571,0.282097,0.951327,0.365086,0.0443683,0.428376,0.585222,0.89009,0.261546,0.759558,0.641502,0.15457,0.61097,0.606441,0.930252,0.591267,0.781993,0.937908,0.619433,0.198779,0.73406,0.486834,0.660232,0.0752701,0.67063,0.984288,0.853225,0.196048,0.90627,0.218017,0.643298,0.0217913,0.245169,0.403471,0.358599,0.00848222,0.311032,0.627339,0.65869,0.323835,0.401781,0.992841,0.788214,0.180666,0.967192,0.867641,0.194098,0.0183501,0.119918,0.432782,0.210531,0.225587,0.0459071,0.199941,0.358719,0.0771155,0.978474,0.175475,0.0840008,0.614582,0.420212,0.427033,0.496791,0.127167,0.60713,0.363128,0.43367,0.627824,0.253387,0.12677,0.925357,0.31607,0.975174,0.293984,0.511953,0.352343,0.678012,0.282481,0.73861,0.602355,0.653297,0.701149,0.772447,0.417587,0.193869,0.982537,0.0414641,0.641081,0.0931425,0.542138,0.38292,0.432698,0.047356,0.695831,0.998111,0.372417,0.853805,0.328155,0.789031,0.30235,0.0540504,0.829904,0.79987,0.285887,0.146306,0.620893,0.849866,0.0519532,0.0983356,0.787721,0.482031,0.939083,0.947075,0.941407,0.744056,0.24694,0.709864,0.258688,0.816977,0.203565,0.19957,0.781272,0.745533,0.933429,0.518742,0.243816,0.99618,0.256225,0.00359827,0.124877,0.785999,0.097021,0.721076,0.100319,0.700804,0.426413,0.103731,0.64984,0.707208,0.0313861,0.376355,0.543759,0.990629,0.487352,0.942254,0.126416,0.485491,0.372889,0.708245,0.262583,0.445847,0.427184,0.862113,0.00806844,0.987592,0.310855,0.756817,0.12756,0.656462,0.876302,0.32097,0.77609,0.499945,0.989708,0.829793,0.976563,0.586622,0.274271,0.370372,0.137526,0.970872,0.589467,0.335387,0.0565664,0.44586,0.595662,0.442071,0.585858,0.609644,0.610798,0.166625,0.59486,0.326052,0.0997118,0.0623664,0.0371164,0.10602,0.491658,0.503515,0.441753,0.814691,0.266387,0.145514,0.710832,0.0311424,0.329009,0.0407715,0.882973,0.333407,0.225574,0.144678,0.124573,0.412547,0.613948,0.367919,0.342667,0.811155,0.246887,0.258826,0.444417,0.999497,0.640301,0.961921,0.412985,0.109024,0.919103,0.645535,0.881787,0.498795,0.0877461,0.932904,0.584416,0.292703,0.398094,0.00753289,0.100207,0.759158,0.023307,0.594997,0.561087,0.68732,0.947573,0.674658,0.112455,0.889478,0.138878,0.963495,0.482773,0.0779885,0.352901,0.833429,0.995238,0.132514,0.206009,0.175584,0.256162,0.68294,0.240882,0.58599,0.892431,0.498569,0.806471,0.703488,0.823923,0.0688838,0.289438,0.121658,0.115975,0.683179,0.115644,0.0807901,0.855398,0.409998,0.0509825,0.902025,0.516665,0.843243,0.610388,0.00768238,0.434947,0.42137,0.25375,0.846578,0.956386,0.0912108,0.73636,0.0565864,0.221677,0.22488,0.457204,0.827711,0.0172791,0.698588,0.32348,0.535909,0.710378,0.652582,0.488151,0.336468,0.281757,0.320554,0.603164,0.706678,0.86181,0.445053,0.0562727,0.58736,0.00289309,0.940868,0.780217,0.333512,0.988155,0.847533,0.330617,0.137143,0.47423,0.520017,0.70281,0.450925,0.119432,0.502422,0.110037,0.789211,0.0263486,0.29707,0.331572,0.447083,0.431385,0.699492,0.429763,0.505526,0.031017,0.999559,0.121066,0.180007,0.64339,0.996411,0.402184,0.202315,0.941927,0.628297,0.480169,0.376621,0.913781,0.783187,0.348823,0.564774,0.0511286,0.517565,0.353006,0.910393,0.0340689,0.409041,0.0997827,0.0779964,0.280296,0.290972,0.653022,0.762085,0.906147,0.285066,0.790554,0.475367,0.131631,0.706065,0.570765,0.892447,0.805567,0.675596,0.386447,0.443368,0.70684,0.0349215,0.736565,0.556806,0.398593,0.995543,0.806762,0.140375,0.802957,0.600132,0.520725,0.80505,0.900218,0.138813,0.106192,0.762053,0.0037272,0.775486,0.520151,0.146662,0.710424,0.614331,0.568175,0.448313,0.442019,0.975292,0.853376,0.801849,0.457736,0.268416,0.283002,0.980822,0.906239,0.531603,0.783149,0.0907732,0.266916,0.957954,0.453112,0.251218,0.340117,0.485217,0.0175147,0.69879,0.734373,0.80866,0.720131,0.852404,0.158838,0.870482,0.286797,0.943554,0.953169,0.727526,0.796515,0.953758,0.069754,0.89269,0.630453,0.66653,0.870673,0.805171,0.784274,0.836741,0.539436,0.310352,0.144911,0.981897,0.427706,0.661526,0.500122,0.111532,0.892381,0.821335,0.804452,0.894472,0.616242,0.660025,0.257772,0.586754,0.580284,0.45498,0.202676,0.577929,0.46293,0.159984,0.547333,0.826954,0.115756,0.643707,0.606035,0.126059,0.570598,0.24415,0.816929,0.330326,0.936749,0.838614,0.588182,0.300301,0.181559,0.923274,0.0382291,0.668055,0.30771,0.449156,0.581709,0.0959132,0.597735,0.797134,0.402642,0.600316,0.909842,0.620072,0.494111,0.509061,0.984556,0.763229,0.794903,0.540662,0.552052,0.37911,0.432984,0.812033,0.524765,0.773205,0.0464746,0.503866,0.500312,0.720297,0.314953,0.212293,0.474051,0.49524,0.610148,0.199874,0.158655,0.586931,0.445489,0.46916,0.805678,0.251904,0.1822,0.380048,0.740329,0.949489,0.959943,0.0762691,0.193044,0.656804,0.728015,0.919507,0.821598,0.568143,0.528513,0.271887,0.771372,0.297042,0.287582,0.666952,0.614822,0.900006,0.846354,0.290744,0.955175,0.256919,0.0311978,0.714889,0.963042,0.567794,0.779567,0.817721,0.92346,0.560988,0.813746,0.212794,0.997511,0.461592,0.924346,0.631634,0.680478,0.713898,0.318494,0.242683,0.0614875,0.391212,0.0896173,0.833957,0.867185,0.149686,0.899484,0.962443,0.076616,0.948757,0.965995,0.223803,0.19537,0.451873,0.599536,0.623868,0.69053,0.715575,0.260609,0.790224,0.0377796,0.616264,0.46924,0.67527,0.0700399,0.614657,0.817244,0.221675,0.0674554,0.357535,0.824942,0.528222,0.625692,0.89735,0.570049,0.665206,0.311689,0.803234,0.585658,0.099786,0.890314,0.741682,0.474203,0.0450359,0.893256,0.431476,0.186182,0.824732,0.4508,0.718851,0.990018,0.0177834,0.866074,0.565804,0.644323,0.700865,0.193278,0.0765551,0.758811,0.0594749,0.794309,0.905748,0.698705,0.868843,0.143713,0.950042,0.890723,0.302041,0.855839,0.0243931,0.0133468,0.470379,0.762921,0.697722,0.254649,|0.755693,0.0711975,0.744013,0.762563,0.314229,0.155099,0.0798177,0.935115,0.79806,0.838561,0.267085,0.679256,0.303251,0.860749,0.958824,0.490499,0.929894,0.325511,0.642848,0.589905,0.644693,0.687255,0.96818,0.533299,0.173447,0.472292,0.997433,0.999613,0.37963,0.474291,0.475962,0.359057,0.0293844,0.0517723,0.0218714,0.92519,0.311766,0.658388,0.721386,0.823138,0.892429,0.845754,0.51085,0.126326,0.876395,0.635643,0.46718,0.295888,0.400516,0.148954,0.345036,0.555553,0.376593,0.20387,0.185676,0.0961066,0.702926,0.78375,0.24054,0.213181,0.186279,0.821177,0.956257,0.975693,0.999578,0.758716,0.585637,0.943349,0.236829,0.396534,0.00246614,0.97716,0.689871,0.325857,0.20429,0.732033,0.469395,0.335914,0.476587,0.552633,0.520344,0.941262,0.480006,0.293283,0.0773419,0.276707,0.0404785,0.704832,0.897163,0.990081,0.731138,0.960547,0.103854,0.720795,0.562865,0.142537,0.431974,0.919907,0.258511,0.28528,0.40454,0.975775,0.752235,0.279641,0.485849,0.691048,0.862778,0.470776,0.409775,0.876876,0.855265,0.0629048,0.353318,0.152924,0.54746,0.276231,0.730218,0.840116,0.0493816,0.56117,0.574067,0.0598859,0.507067,0.567788,0.108163,0.0781491,0.446108,0.623279,0.316757,0.797286,0.207922,0.157392,0.627163,0.713417,0.437868,0.570978,0.316499,0.292566,0.652947,0.684728,0.12754,0.562679,0.211153,0.789366,0.577751,0.911608,0.353977,0.859219,0.36127,0.111495,0.893535,0.516774,0.582256,0.702945,0.816645,0.549261,0.568144,0.787732,0.730125,0.324242,0.548798,0.738433,0.634749,0.747055,0.383823,0.339918,0.613053,0.60452,0.0570084,0.347874,0.242,0.950681,0.815229,0.279732,0.583852,0.71366,0.285728,0.850819,0.0365005,0.43257,0.723755,0.383673,0.522078,0.0834768,0.437275,0.0572295,0.341944,0.747451,0.418005,0.0667521,0.530232,0.185162,0.315042,0.509195,0.689497,0.546712,0.412207,0.274791,0.339127,0.811809,0.544107,0.708834,0.25203,0.267476,0.409474,0.598649,0.000130057,0.209423,0.826709,0.3661,0.332171,0.0433022,0.933278,0.552604,0.953391,0.270864,0.497386,0.894375,0.274011,0.0692697,0.627812,0.437727,0.539036,0.324845,0.0491387,0.240173,0.578647,0.463621,0.74592,0.277133,0.496019,0.891995,0.0207779,0.0504736,0.872337,0.50193,0.644872,0.770537,0.150384,0.299031,0.232751,0.504555,0.260028,0.873217,0.762307,0.0123767,0.79707,0.654522,0.556254,0.376277,0.337411,0.805961,0.668136,0.61724,0.873839,0.305806,0.274093,0.123174,0.46057,0.0700142,0.846981,0.408692,0.365723,0.977027,0.218831,0.167862,0.3652,0.134194,0.233505,0.443963,0.836067,0.396678,0.930425,0.394327,0.914107,0.701015,0.100202,0.225975,0.832806,0.210666,0.880343,0.949264,0.485793,0.985551,0.860341,0.0528236,0.689153,0.133206,0.195142,0.24374,0.975809,0.577365,0.28744,0.211262,0.421795,0.646154,0.360981,0.381528,0.669646,0.649136,0.845493,0.0439801,0.12704,0.765024,0.370859,0.747838,0.0725296,0.101416,0.507202,0.721822,0.427021,0.716969,0.0293207,0.791444,0.629964,0.0221804,0.102013,0.664747,0.295043,0.776317,0.116778,0.844177,0.882747,0.00668609,0.24081,0.333404,0.750977,0.0908831,0.903203,0.449039,0.0759469,0.604356,0.231953,0.177987,0.488425,0.32617,0.880402,0.0236496,0.770583,0.710072,0.573034,0.272398,0.323174,0.292326,0.258698,0.393593,0.651386,0.724452,0.0626912,0.891421,0.663746,0.00690711,0.859504,0.683373,0.651871,0.646524,0.377401,0.527122,0.645762,0.51788,0.778674,0.0862159,0.0976561,0.600258,0.757239,0.450439,0.560176,0.838618,0.977472,0.848018,0.597619,0.0753058,0.929821,0.327483,0.427764,0.713081,0.0809412,0.608619,0.270021,0.0291259,0.938608,0.564755,0.254286,0.0331962,0.204516,0.952888,0.720496,0.552526,0.416721,0.0395084,0.154125,0.435757,0.302496,0.751823,0.176724,0.117313,0.189821,0.814714,0.584495,0.867456,0.876294,0.135766,0.456143,0.198627,0.454289,0.200189,0.524805,0.0629112,0.932977,0.758616,0.242313,0.763395,0.951431,0.297699,0.864212,0.778346,0.365498,0.757926,0.392106,0.363804,0.179451,0.103511,0.350951,0.497517,0.868442,0.567208,0.947765,0.37792,0.416706,0.525233,0.832864,0.805929,0.373523,0.0193533,0.464813,0.0801703,0.206444,0.417357,0.458409,0.005198,0.89375,0.218404,0.808218,0.318238,0.511799,0.668279,0.881547,0.0174098,0.946488,0.547919,0.347676,0.798308,0.518019,0.925162,0.357444,0.32039,0.319477,0.532794,0.995423,0.885066,0.631486,0.798987,0.471506,0.864351,0.387526,0.974384,0.731235,0.561958,0.89799,0.796988,0.726825,0.537014,0.670419,0.441495,0.167274,0.281324,0.225175,0.916728,0.840769,0.0205128,0.993831,0.205761,0.205551,0.56447,0.11787,0.480369,0.808476,0.971445,0.822325,0.772,0.198407,0.992483,0.587417,0.397614,0.244835,0.125737,0.399991,0.353922,0.583069,0.283888,0.815783,0.671486,0.453428,0.866972,0.149942,0.352122,0.963463,0.779381,0.716592,0.724024,0.165329,0.967064,0.296447,0.86943,0.872308,0.412155,0.38636,0.247619,0.844428,0.448867,0.390092,0.600465,0.288392,0.296677,0.512202,0.521037,0.462531,0.396872,0.791692,0.742669,0.835089,0.972704,0.816063,0.659062,0.819924,0.43667,0.98192,0.771603,0.154097,0.320502,0.871326,0.512876,0.638583,0.080973,0.523288,0.686644,0.289689,0.314338,0.151983,0.412193,0.238831,0.73052,0.382408,0.686784,0.0595688,0.903875,0.994805,0.0959942,0.861317,0.356912,0.736124,0.635352,0.557611,0.647795,0.99891,0.0842398,0.645833,0.613532,0.629231,0.474448,0.703821,0.575229,0.477415,0.266281,0.245176,0.994141,0.261077,0.890311,0.213038,0.423495,0.944206,0.571158,0.264773,0.918425,0.966979,0.517634,0.119346,0.745165,0.847542,0.817629,0.151098,0.871073,0.191907,0.675909,0.179963,0.115284,0.359265,0.259519,0.195878,0.247787,0.149082,0.189843,0.0439773,0.721341,0.737994,0.711154,0.450414,0.615304,0.0360155,0.781541,0.558188,0.409597,0.0602432,0.276015,0.755594,0.224661,0.718118,0.19784,0.302846,0.322196,0.901498,0.566308,0.0580246,0.228062,0.704365,0.702752,0.563069,0.468433,0.889303,0.440827,0.660682,0.84389,0.529735,0.264641,0.746436,0.474177,0.626517,0.277904,0.288185,0.964176,0.624634,0.0916445,0.126743,0.535245,0.030298,0.908647,0.872425,0.366522,0.0676348,0.867326,0.770996,0.597521,0.526887,0.539798,0.0495499,0.128425,0.663127,0.947845,0.101285,0.290552,0.905522,0.270554,0.919949,0.902315,0.561999,0.688894,0.898396,0.448261,0.951673,0.438437,0.542068,0.937663,0.717117,0.273475,0.180298,0.0722278,0.136277,0.191356,0.537668,0.921919,0.922829,0.843955,0.0341451,0.614171,0.556603,0.235463,0.884005,0.0793663,0.769916,0.456581,0.322281,0.875459,0.397496,0.259016,0.452357,0.798847,0.279748,0.69569,0.954955,0.339293,0.313095,0.306844,0.0115532,0.650026,0.557843,0.916818,0.432197,0.584448,0.62183,0.0593706,0.33577,0.633693,0.621873,0.715115,0.146861,0.945606,0.513471,0.21495,0.264067,0.980554,0.125172,0.501573,0.715031,0.859226,0.791336,0.0219797,0.958152,0.78253,0.374935,0.422932,0.660074,0.013163,0.553634,0.360652,0.113152,0.432774,0.0181154,0.992678,0.678065,0.0352009,0.645068,0.714266,0.127688,0.110898,0.138652,0.120455,0.195108,0.729621,0.596108,0.501415,0.851189,0.386386,0.316795,0.0374765,0.875833,0.565125,0.0734569,0.648697,0.680077,0.0865017,0.248608,0.19068,0.0444635,0.928095,0.874813,0.59869,0.303925,0.542574,0.704127,0.0204322,0.86519,0.0626921,0.67147,0.0252476,0.952786,0.111449,0.812034,0.991657,0.055845,0.682089,0.667735,0.874243,0.92509,0.952268,0.174122,0.170277,0.46291,0.667845,0.0869709,0.103275,0.951281,0.549005,0.754749,0.189196,0.215778,0.828859,0.842278,0.509078,0.919728,0.00741732,0.860879,0.597232,0.0521336,0.533594,0.902745,0.956927,0.670916,0.11451,0.126814,0.504247,0.420462,0.932871,0.952151,0.873597,0.93122,0.57402,0.154064,0.0322039,0.386727,0.0473208,0.342738,0.454729,0.615434,0.839069,0.0550487,0.175962,0.144437,0.976079,0.545904,0.367625,0.318366,0.185441,0.163177,0.131428,0.443194,0.756744,0.564158,0.607659,0.0999629,0.495904,0.709869,0.0234698,0.689011,0.866892,0.829061,0.188367,0.192356,0.636065,0.550412,0.166613,0.365668,0.567322,0.43252,0.628622,0.300549,0.0425355,0.319006,0.416095,0.26727,0.324209,0.42222,0.245533,0.510432,0.524777,0.9122,0.981215,0.0350485,0.908273,0.342221,0.811442,0.707081,0.489903,0.326368,0.414557,0.895255,0.969737,0.711399,0.832026,0.031123,0.868022,0.527348,0.111775,0.865007,0.315577,0.707573,0.226362,0.961031,0.728359,0.158593,0.476083,0.048797,0.284553,0.160206,0.69523,0.878445,0.798395,0.997061,0.493533,0.507644,0.833842,0.744774,0.309432,0.514275,0.257534,0.481282,0.168338,0.0224764,0.857127,0.910958,0.25799,0.704655,0.125224,0.842155,0.773827,0.519915,0.748525,0.508461,0.371161,0.829729,0.0815771,0.0313814,0.832007,0.551177,0.00364935,0.661496,0.626393,0.037063,0.374707,0.248379,0.583577,0.559794,0.122818,0.297223,0.930608,0.97682,0.585975,0.260601,0.97873,0.584845,0.0563328,0.742597,0.980524,0.609179,0.317882,0.648542,0.368997,0.294068,0.43146,0.130267,0.185868,0.937722,0.723987,0.0605854,0.283974,0.182259,0.911532,0.331487,0.305592,0.83228,0.143442,0.0190164,0.574264,0.615375,0.95275,0.973214,0.946909,0.736093,0.534105,0.42766,0.270297,0.826392,0.763227,0.200257,0.920282,0.660647,0.779068,0.125763,0.670129,0.149763,0.679529,0.319093,0.669118,0.364615,0.820238,0.684537,0.148561,0.372257,0.184149,0.518819,0.363975,0.668977,0.892081,0.585625,0.642784,0.387835,0.793396,0.482987,0.178811,0.954168,0.380981,|0.668113,0.446853,0.178744,0.678919,0.417126,0.531174,0.823461,0.795769,0.922432,0.769124,0.518306,0.92513,0.305672,0.421357,0.842722,0.981299,0.337802,0.157366,0.837137,0.884147,0.275702,0.976106,0.0813501,0.291808,0.659992,0.00867009,0.222754,0.612179,0.263987,0.170865,0.214203,0.857386,0.813806,0.895348,0.873486,0.180818,0.652141,0.875661,0.156842,0.638724,0.202079,0.0705688,0.963595,0.924741,0.0379982,0.810248,0.228892,0.268716,0.81961,0.850504,0.886411,0.948833,0.822694,0.936586,0.36866,0.794329,0.301565,0.658254,0.775016,0.681949,0.0647335,0.431803,0.160636,0.890945,0.944951,0.101626,0.678642,0.221764,0.440603,0.557233,0.253432,0.331941,0.856057,0.306376,0.525173,0.142963,0.454693,0.611014,0.399749,0.876509,0.513761,0.849602,0.35786,0.385796,0.414057,0.64436,0.22272,0.777561,0.866648,0.656488,0.523022,0.460477,0.240522,0.661499,0.264668,0.647574,0.919897,0.128717,0.0789281,0.0710002,0.741647,0.448349,0.833961,0.167738,0.909528,0.638843,0.747117,0.139344,0.389629,0.425971,0.999482,0.0634431,0.492688,0.9595,0.802379,0.33991,0.815549,0.940483,0.491259,0.705132,0.644235,0.120223,0.015902,0.989114,0.927566,0.525806,0.340531,0.146831,0.0724891,0.966692,0.787414,0.162531,0.209163,0.473868,0.415404,0.982601,0.19389,0.453705,0.802941,0.551214,0.713795,0.901732,0.20415,0.190243,0.0274395,0.603132,0.847322,0.0108591,0.779184,0.487451,0.720156,0.694218,0.48415,0.909511,0.303582,0.26207,0.67596,0.161336,0.387379,0.337428,0.00233835,0.167247,0.00188941,0.11705,0.640563,0.152201,0.976519,0.926941,0.415258,0.589871,0.798097,0.981599,0.845889,0.874728,0.226466,0.888493,0.801891,0.126029,0.285708,0.709513,0.0192748,0.0773195,0.797034,0.496337,0.895096,0.987599,0.6321,0.543114,0.039998,0.323399,0.474712,0.901525,0.356478,0.712472,0.0874919,0.78125,0.609692,0.37608,0.72256,0.8046,0.665699,0.773638,0.0561965,0.782841,0.174797,0.530713,0.130867,0.501311,0.280006,0.2725,0.773655,0.168533,0.988145,0.60293,0.308891,0.151304,0.642569,0.186611,0.654093,0.916251,0.906426,0.88333,0.603075,0.529201,0.0542153,0.495567,0.204428,0.0228663,0.463403,0.787414,0.462454,0.494168,0.751954,0.803634,0.92969,0.704841,0.291692,0.381974,0.0869309,0.519075,0.772087,0.479609,0.546795,0.181453,0.967545,0.46421,0.294742,0.112535,0.0783861,0.567085,0.393829,0.111052,0.249536,0.448251,0.386257,0.842588,0.277091,0.550911,0.944294,0.364538,0.365501,0.0517362,0.306548,0.59418,0.869643,0.985014,0.375853,0.722122,0.467402,0.247365,0.639093,0.552306,0.0524619,0.173806,0.351042,0.712377,0.91879,0.0443299,0.592552,0.491758,0.165414,0.56056,0.283009,0.165136,0.309633,0.00506383,0.337965,0.580127,0.203169,0.302497,0.152769,0.241788,0.938676,0.822962,0.0462575,0.98146,0.605403,0.751444,0.23176,0.505035,0.562585,0.821009,0.562361,0.108401,0.377608,0.888561,0.139028,0.984684,0.824644,0.765575,0.0529574,0.124548,0.630408,0.978774,0.119741,0.784849,0.810438,0.876945,0.217781,0.703825,0.0453693,0.160472,0.312002,0.046553,0.875775,0.0671467,0.506383,0.384594,0.46538,0.875039,0.381716,0.112126,0.00933963,0.216807,0.550284,0.142077,0.929944,0.0642278,0.517242,0.199901,0.552653,0.524646,0.217276,0.572692,0.0873805,0.932043,0.560512,0.73781,0.387492,0.455865,0.25137,0.108149,0.457758,0.728826,0.292316,0.179938,0.929025,0.558546,0.157871,0.522386,0.463289,0.856611,0.780587,0.533428,0.680045,0.689961,0.213712,0.723483,0.0886049,0.0288032,0.627391,0.284661,0.557604,0.151339,0.759943,0.18514,0.07428,0.641334,0.418509,0.376842,0.411389,0.142657,0.420597,0.315579,0.551067,0.756581,0.852062,0.287987,0.537139,0.797514,0.0898516,0.178909,0.971906,0.674881,0.288385,0.309568,0.292042,0.669451,0.0880113,0.147684,0.550262,0.803123,0.811916,0.894668,0.923131,0.945037,0.96625,0.592836,0.252989,0.191931,0.799497,0.139643,0.745924,0.343821,0.114548,0.105364,0.668697,0.212347,0.893965,0.454748,0.6533,0.687462,0.949968,0.556368,0.600558,0.72933,0.529148,0.725368,0.963709,0.161216,0.83147,0.00992376,0.192777,0.406626,0.83939,0.757676,0.138803,0.675344,0.357052,0.394718,0.66125,0.276494,0.823649,0.0883854,0.81105,0.727935,0.312607,0.602361,0.0192465,0.916583,0.284382,0.164162,0.182232,0.755883,0.909262,0.00823218,0.386951,0.217921,0.51652,0.648686,0.648673,0.0146785,0.660667,0.477234,0.848616,0.603736,0.254264,0.955093,0.213272,0.790862,0.151632,0.902513,0.612684,0.536947,0.0248166,0.896293,0.728991,0.811184,0.977417,0.116805,0.646731,0.801259,0.693365,0.72282,0.472947,0.600201,0.601573,0.797371,0.941586,0.184876,0.848969,0.330976,0.371171,0.972812,0.811216,0.279966,0.0708393,0.412983,0.722992,0.225928,0.0607961,0.0519063,0.15394,0.871839,0.689756,0.339173,0.714837,0.870862,0.819799,0.393609,0.85143,0.0394811,0.487516,0.914816,0.442512,0.741811,0.235525,0.624526,0.377417,0.707719,0.335522,0.366792,0.41779,0.0809377,0.652491,0.484048,0.833711,0.613687,0.549963,0.451974,0.902799,0.84586,0.204321,0.254962,0.363627,0.925466,0.892825,0.54803,0.337173,0.609724,0.914298,0.300043,0.739802,0.098528,0.231446,0.905175,0.476329,0.859924,0.391152,0.079762,0.299036,0.422303,0.499977,0.670065,0.208328,0.917683,0.351524,0.567659,0.816033,0.572851,0.67583,0.777395,0.762681,0.503091,0.35566,0.884508,0.0952445,0.270896,0.24169,0.96448,0.819361,0.737881,0.307513,0.81495,0.355888,0.346168,0.692579,0.403463,0.617371,0.919339,0.65798,0.703458,0.296971,0.717569,0.335314,0.781914,0.106136,0.0763753,0.69486,0.419088,0.969846,0.097831,0.611705,0.586543,0.21488,0.852391,0.593191,0.189273,0.817664,0.681263,0.100822,0.613748,0.124638,0.354589,0.344325,0.601779,0.716734,0.875759,0.242285,0.636785,0.74109,0.16448,0.162611,0.0619888,0.655555,0.281581,0.541365,0.462705,0.210517,0.401384,0.226354,0.00945222,0.688984,0.72468,0.980048,0.165797,0.963428,0.495082,0.114201,0.209604,0.989956,0.524505,0.455139,0.0585595,0.670008,0.738445,0.420598,0.178964,0.67669,0.390202,0.36572,0.562088,0.510662,0.598402,0.0319756,0.466768,0.977111,0.717095,0.327913,0.870984,0.817868,0.991391,0.626305,0.709584,0.0832349,0.772239,0.369385,0.110535,0.359851,0.264945,0.714882,0.186249,0.314291,0.29645,0.245831,0.921421,0.820693,0.279097,0.57565,0.449335,0.985683,0.0640998,0.790115,0.789571,0.483787,0.0613962,0.686322,0.92181,0.918199,0.328755,0.114243,0.919532,0.515943,0.573869,0.0845919,0.700774,0.459005,0.0205975,0.445575,0.381802,0.374352,0.192489,0.3329,0.0395464,0.219176,0.338852,0.427405,0.806805,0.672291,0.0846683,0.841211,0.360891,0.0442557,0.645814,0.218284,0.432704,0.697497,0.0432877,0.804476,0.229678,0.438154,0.4235,0.329755,0.747382,0.0213922,0.482923,0.0429688,0.220779,0.369081,0.311794,0.546893,0.386877,0.378621,0.561322,0.442363,0.972869,0.933409,0.451801,0.496199,0.71368,0.254451,0.799369,0.710298,0.454143,0.92842,0.818267,0.868735,0.858962,0.294929,0.297703,0.44304,0.779022,0.307975,0.257631,0.0675014,0.25237,0.28615,0.306065,0.220432,0.549111,0.831748,0.911104,0.667372,0.27428,0.899364,0.24388,0.995963,0.950381,0.691763,0.466897,0.597381,0.486361,0.832922,0.626444,0.942084,0.299262,0.83268,0.417014,0.5093,0.777247,0.384754,0.993499,0.978142,0.365594,0.908936,0.993808,0.699354,0.047703,0.598994,0.409841,0.868464,0.74665,0.427077,0.837385,0.174519,0.727022,0.670384,0.109949,0.300477,0.718437,0.199956,0.702512,0.260126,0.440183,0.398717,0.228152,0.198812,0.123789,0.899137,0.845985,0.853889,0.123275,0.86498,0.323502,0.444328,0.0836822,0.452762,0.568651,0.145874,0.363987,0.620726,0.0512019,0.999245,0.375113,0.63233,0.336651,0.646001,0.237908,0.0727566,0.0598623,0.115192,0.843826,0.141211,0.431804,0.581218,0.734902,0.996316,0.299457,0.554489,0.0856231,0.464549,0.847973,0.694551,0.65378,0.122798,0.601426,0.318212,0.644392,0.727104,0.826996,0.802642,0.572326,0.445577,0.841044,0.109824,0.690851,0.540884,0.958994,0.728684,0.0674082,0.286474,0.112702,0.413722,0.866443,0.47776,0.549943,0.503063,0.290417,0.258901,0.476823,0.75408,0.00674903,0.145079,0.700203,0.393815,0.174029,0.348076,0.450881,0.00404364,0.228353,0.63504,0.00207675,0.150795,0.826615,0.188874,0.743416,0.671231,0.428753,0.288219,0.442024,0.28151,0.571323,0.729651,0.679089,0.59234,0.549528,0.140411,0.714222,0.915691,0.517048,0.058495,0.266686,0.172363,0.0974073,0.351987,0.742439,0.761661,0.439066,0.117679,0.0800681,0.48803,0.411763,0.0573799,0.0230179,0.76109,0.0237613,0.514328,0.875745,0.395994,0.276614,0.12254,0.0340995,0.823975,0.131337,0.507255,0.188985,0.18463,0.932024,0.843037,0.232161,0.902326,0.0835331,0.196183,0.852045,0.1466,0.804264,0.970039,0.672459,0.813914,0.165055,0.475396,0.0217065,0.501021,0.0116282,0.594207,0.923596,0.0753837,0.86839,0.133126,0.165103,0.31765,0.301126,0.351743,0.346555,0.00494581,0.314976,0.479699,0.286195,0.597384,0.719192,0.0605221,0.477084,0.721467,0.297055,0.242101,0.741969,0.269822,0.390705,0.751436,0.102451,0.771893,0.00939077,0.782772,0.825019,0.24153,0.15842,0.457104,0.939729,0.538416,0.720443,0.475916,0.156443,0.88854,0.558229,0.894647,0.758811,0.27485,0.139173,0.415877,0.677774,0.850273,0.873232,0.635175,0.928272,0.701145,0.194613,0.237633,0.0669565,0.911135,0.656137,0.887086,0.337886,0.349753,0.492454,0.0442594,0.513312,0.538456,0.694228,0.180829,0.240506,|0.813513,0.0878408,0.769241,0.749289,0.0551003,0.687348,0.346013,0.44135,0.776988,0.455336,0.60909,0.269738,0.770878,0.795286,0.245359,0.432023,0.939618,0.931139,0.827364,0.854777,0.505983,0.981276,0.106111,0.071004,0.349589,0.965334,0.900796,0.699303,0.631382,0.983101,0.646669,0.838555,0.948645,0.0447539,0.271451,0.5247,0.229976,0.856991,0.246791,0.648364,0.662684,0.825398,0.680153,0.943273,0.794208,0.837159,0.919399,0.232129,0.347665,0.363286,0.930541,0.450761,0.341336,0.587494,0.605906,0.825478,0.478599,0.940907,0.239148,0.154976,0.564798,0.30149,0.244596,0.65657,0.887102,0.310354,0.31649,0.238902,0.932976,0.756517,0.461394,0.824224,0.316819,0.466661,0.502191,0.38006,0.459744,0.836446,0.726023,0.802648,0.53145,0.77429,0.313166,0.0761731,0.175929,0.891164,0.743808,0.55092,0.128541,0.275372,0.333536,0.277129,0.651784,0.152875,0.518259,0.874668,0.347359,0.408748,0.208254,0.185871,0.285521,0.833258,0.0467635,0.669694,0.378236,0.835193,0.252295,0.334562,0.683437,0.361933,0.793752,0.275008,0.924641,0.976304,0.410276,0.829713,0.679473,0.986473,0.497304,0.774953,0.114844,0.921185,0.26838,0.503007,0.678735,0.240636,0.654793,0.911541,0.514417,0.918039,0.603532,0.895104,0.499016,0.157907,0.878201,0.520482,0.0776454,0.463363,0.607531,0.97154,0.256833,0.339279,0.860813,0.3204,0.839043,0.469851,0.00905526,0.254981,0.959384,0.303443,0.707318,0.728503,0.531546,0.0576871,0.892153,0.94864,0.484703,0.328352,0.127378,0.0878828,0.371088,0.0287519,0.463706,0.242677,0.713296,0.4577,0.873519,0.159635,0.272946,0.971793,0.231732,0.975366,0.706903,0.26103,0.0559922,0.961903,0.19226,0.815887,0.959382,0.182215,0.667119,0.96078,0.125057,0.272398,0.446577,0.944799,0.819542,0.0203356,0.203097,0.409231,0.597168,0.661264,0.145924,0.362475,0.413845,0.318211,0.616238,0.0887462,0.705836,0.703599,0.70184,0.578964,0.0583695,0.645674,0.364928,0.740612,0.526901,0.77663,0.302536,0.839794,0.550805,0.564607,0.950562,0.462576,0.127543,0.718135,0.77814,0.571558,0.961606,0.178115,0.857537,0.978687,0.891137,0.40477,0.749574,0.344812,0.858499,0.86081,0.999247,0.509582,0.607316,0.934172,0.339172,0.931775,0.842646,0.400821,0.362154,0.911965,0.20796,0.756442,0.598708,0.569869,0.0907779,0.674602,0.193765,0.297086,0.398858,0.625083,0.781981,0.763382,0.401578,0.503886,0.0150852,0.803126,0.140619,0.872226,0.14267,0.932956,0.371316,0.585981,0.53263,0.97558,0.519865,0.391728,0.598627,0.981463,0.734243,0.251904,0.720829,0.937823,0.160361,0.763462,0.548956,0.969332,0.303767,0.945057,0.600424,0.596276,0.875029,0.921597,0.166296,0.745691,0.267201,0.890915,0.633067,0.335283,0.725745,0.647751,0.154066,0.734822,0.606492,0.296235,0.163315,0.408443,0.0894948,0.732374,0.548205,0.594487,0.0611401,0.0122924,0.290119,0.578791,0.465892,0.355355,0.955606,0.244793,0.423984,0.424703,0.699379,0.781005,0.461376,0.32851,0.972177,0.506093,0.867933,0.114213,0.396108,0.237353,0.646891,0.366721,0.414634,0.496155,0.252548,0.507594,0.199078,0.890378,0.261912,0.692611,0.659992,0.744248,0.282598,0.956532,0.905317,0.983513,0.922809,0.529655,0.475071,0.801056,0.498222,0.178545,0.942326,0.343819,0.929132,0.587785,0.00333583,0.399102,0.0775765,0.376225,0.205386,0.284909,0.0340579,0.986435,0.0372616,0.748738,0.060285,0.853692,0.785085,0.255534,0.797455,0.188539,0.81064,0.78388,0.755638,0.676107,0.747929,0.511717,0.87431,0.36737,0.32463,0.299285,0.972911,0.560935,0.372499,0.566846,0.532937,0.733148,0.732838,0.86641,0.625863,0.363774,0.22108,0.219275,0.376389,0.701157,0.113741,0.718956,0.428564,0.236093,0.523551,0.411067,0.939,0.718599,0.201114,0.466181,0.300928,0.897597,0.283802,0.896009,0.850636,0.0158938,0.583247,0.020929,0.79062,0.999139,0.073817,0.988062,0.0123267,0.887118,0.755618,0.326865,0.983283,0.465684,0.88401,0.408687,0.592589,0.908494,0.316605,0.488159,0.560356,0.300441,0.526678,0.780073,0.645128,0.892824,0.872368,0.106155,0.899455,0.64737,0.76605,0.128961,0.857406,0.912787,0.322196,0.137452,0.329481,0.767494,0.362526,0.238112,0.193216,0.437217,0.248798,0.265868,0.429102,0.555953,0.809404,0.422401,0.757249,0.168578,0.55924,0.0923809,0.791804,0.428892,0.469029,0.209372,0.763578,0.517963,0.944812,0.0357035,0.558697,0.534451,0.685427,0.325002,0.644783,0.458332,0.539711,0.412607,0.675053,0.21244,0.244184,0.338446,0.991747,0.222726,0.309008,0.686362,0.383872,0.289358,0.393546,0.307204,0.952996,0.0881806,0.0696481,0.293812,0.909465,0.379604,0.81064,0.931216,0.953646,0.26906,0.0749499,0.354864,0.288602,0.530603,0.896548,0.688119,0.89428,0.409757,0.764025,0.0498678,0.397386,0.201114,0.432047,0.805909,0.861073,0.970672,0.790071,0.700614,0.442814,0.131843,0.585338,0.0203162,0.83867,0.97759,0.241901,0.31813,0.110017,0.253668,0.626899,0.846683,0.891674,0.0146017,0.144638,0.381364,0.744011,0.424938,0.738136,0.604121,0.492139,0.905813,0.0541373,0.484905,0.433937,0.802343,0.911647,0.544544,0.229317,0.35713,0.165091,0.190488,0.0869442,0.0667731,0.087879,0.56888,0.596483,0.978671,0.052415,0.481758,0.0224079,0.624286,0.595183,0.621767,0.839635,0.900282,0.863098,0.128388,0.738833,0.917138,0.338733,0.711594,0.71246,0.514165,0.654513,0.873309,0.958465,0.265784,0.308466,0.933341,0.305586,0.356124,0.0476503,0.173627,0.927,0.535614,0.228335,0.934024,0.94483,0.00525296,0.205609,0.666885,0.00964862,0.938854,0.618661,0.0479071,0.596693,0.150484,0.383555,0.306418,0.86863,0.898692,0.436554,0.0865451,0.691031,0.701543,0.489441,0.79279,0.188073,0.24668,0.370505,0.809556,0.20566,0.981842,0.87918,0.312605,0.357162,0.135375,0.125304,0.46616,0.847793,0.48163,0.633806,0.110082,0.326574,0.618157,0.919787,0.143294,0.000136912,0.889042,0.424905,0.156952,0.0938816,0.670692,0.136841,0.391319,0.0368887,0.289466,0.653503,0.70751,0.588883,0.631134,0.573515,0.651844,0.482248,0.266467,0.938216,0.80151,0.757526,0.549148,0.18828,0.435201,0.39243,0.896928,0.391329,0.803858,0.404974,0.241437,0.893806,0.537153,0.99696,0.809787,0.12098,0.693707,0.300213,0.220582,0.974309,0.958928,0.941833,0.488222,0.0946724,0.866481,0.806437,0.134462,0.658145,0.794155,0.0373831,0.818339,0.352776,0.220232,0.365098,0.0496414,0.0871998,0.839563,0.262611,0.301526,0.65046,0.651083,0.166329,0.383412,0.0988296,0.87903,0.0120023,0.161737,0.311197,0.671336,0.406424,0.451348,0.335749,0.112383,0.917759,0.200493,0.999939,0.228441,0.0681513,0.733237,0.442449,0.861977,0.521568,0.013577,0.658565,0.95151,0.0646691,0.0264228,0.697641,0.864302,0.580969,0.890014,0.795817,0.287866,0.454012,0.509513,0.177806,0.678063,0.942195,0.0812516,0.130784,0.772656,0.2889,0.119371,0.702769,0.71505,0.490308,0.260705,0.878661,0.203632,0.927222,0.979432,0.119281,0.101778,0.52421,0.51627,0.394042,0.0400677,0.352362,0.174758,0.0355702,0.686615,0.218222,0.160135,0.297121,0.722633,0.276642,0.316212,0.303357,0.540179,0.518751,0.0269367,0.0808845,0.33492,0.735665,0.928494,0.989408,0.793575,0.958952,0.462444,0.0941783,0.379203,0.39676,0.245804,0.0807064,0.212567,0.994336,0.361068,0.687746,0.333467,0.200897,0.000979602,0.998594,0.348155,0.445207,0.835194,0.475629,0.153391,0.642421,0.369632,0.886432,0.105196,0.333285,0.630568,0.503791,0.47329,0.593962,0.142491,0.19218,0.93415,0.44619,0.959995,0.541173,0.0884136,0.807938,0.80183,0.585096,0.0420156,0.19883,0.607304,0.0586597,0.641931,0.0799737,0.134224,0.796913,0.878031,0.0699699,0.158405,0.464861,0.345602,0.146492,0.120869,0.310846,0.325098,0.422984,0.763953,0.269212,0.15832,0.314365,0.225038,0.487907,0.27507,0.889292,0.995541,0.672236,0.11525,0.942241,0.0476804,0.127948,0.986638,0.757897,0.578113,0.52962,0.493125,0.848534,0.308671,0.0961123,0.618808,0.249384,0.34097,0.924232,0.138061,0.0794104,0.585251,0.701263,0.0497968,0.0471827,0.0946506,0.36979,0.425653,0.708542,0.59863,0.895098,0.37731,0.600276,0.656141,0.221388,0.281905,0.774646,0.797246,0.774804,0.0452765,0.769349,0.277808,0.756261,0.819912,0.276952,0.320298,0.0116339,0.0231873,0.621705,0.745675,0.0466505,0.0297158,0.0207178,0.781952,0.105326,0.192334,0.361212,0.141352,0.31517,0.643206,0.00334698,0.601258,0.642046,0.355075,0.509846,0.396793,0.525628,0.319717,0.960044,0.10889,0.791386,0.21977,0.800151,0.142727,0.120192,0.78483,0.0729476,0.656633,0.437842,0.445667,0.15822,0.211818,0.574306,0.210163,0.898019,0.751373,0.743052,0.494478,0.539739,0.227969,0.69423,0.665661,0.454645,0.585509,0.783826,0.83531,0.545767,0.615937,0.346226,0.714116,0.507852,0.140659,0.82938,0.439769,0.0833395,0.829466,0.106722,0.0182406,0.264085,0.350429,0.00940293,0.671578,0.187002,0.207043,0.803209,0.189043,0.885533,0.412548,0.290721,0.89432,0.00279385,0.975921,0.39891,0.262547,0.828649,0.611819,0.657556,0.176703,0.686626,0.384801,0.31969,0.278263,0.180543,0.163961,0.325477,0.806115,0.544143,0.215264,0.531433,0.31445,0.644355,0.747895,0.906995,0.54574,0.385313,0.159653,0.965767,0.523823,0.99056,0.412124,0.956734,0.171693,0.586977,0.825759,0.346301,0.743396,0.712467,0.016341,0.732902,0.710135,0.672276,0.146406,0.418609,0.0908238,0.553027,0.24726,0.864261,0.720009,0.65864,0.959067,0.903034,0.881396,0.11106,0.755565,0.538118,0.843195,0.189426,0.797068,0.0129296,0.122769,0.485915,0.630876,0.641717,0.128509,0.978729,0.255221,|0.57756,0.242926,0.40842,0.626806,0.800764,0.239275,0.448081,0.186157,0.224942,0.166124,0.471353,0.437319,0.836443,0.487075,0.828005,0.786353,0.184109,0.565216,0.608059,0.672332,0.762426,0.921805,0.368502,0.675821,0.765687,0.589359,0.23147,0.279439,0.652427,0.341526,0.631803,0.469546,0.632113,0.919533,0.510555,0.792299,0.795018,0.742634,0.0305947,0.829917,0.509398,0.114182,0.312321,0.609779,0.286048,0.349615,0.0456421,0.361098,0.380319,0.806606,0.813432,0.936854,0.950147,0.211404,0.245746,0.709246,0.701242,0.612652,0.699893,0.461364,0.918326,0.434402,0.22409,0.470111,0.564728,0.211714,0.722041,0.0574896,0.764292,0.10779,0.62238,0.204456,0.324808,0.215262,0.917917,0.287618,0.667175,0.392624,0.972263,0.0226442,0.182265,0.91111,0.881221,0.981466,0.402917,0.85941,0.712127,0.716364,0.822096,0.176703,0.0503283,0.926581,0.240964,0.0174416,0.0588214,0.0433233,0.711268,0.501742,0.787654,0.29969,0.492418,0.752578,0.78025,0.580506,0.367625,0.209233,0.405113,0.282743,0.325474,0.608719,0.0915143,0.61142,0.451305,0.826565,0.410149,0.418382,0.410119,0.642337,0.0865209,0.043282,0.124157,0.234465,0.266273,0.074883,0.818483,0.569248,0.613308,0.531706,0.512002,0.00782168,0.739216,0.150565,0.0254877,0.37373,0.0283633,0.13334,0.538697,0.00679272,0.0082956,0.631217,0.116718,0.421019,0.567072,0.118402,0.292092,0.347433,0.584718,0.179529,0.875982,0.950396,0.771634,0.777164,0.860503,0.0970712,0.417594,0.525206,0.724167,0.773414,0.75247,0.605266,0.421426,0.70458,0.648036,0.788386,0.0315619,0.705063,0.230573,0.161193,0.397597,0.156103,0.228003,0.885271,0.933886,0.331331,0.00316018,0.285823,0.0764222,0.962238,0.105478,0.361966,0.323989,0.238521,0.397844,0.0884691,0.96159,0.557572,0.316078,0.855539,0.432171,0.997604,0.311621,0.542281,0.722231,0.0222336,0.908016,0.61015,0.678686,0.128952,0.0938987,0.868898,0.645974,0.97106,0.889167,0.715399,0.485141,0.981235,0.237169,0.22913,0.617321,0.68811,0.155444,0.638682,0.758517,0.655042,0.542851,0.518523,0.593054,0.346829,0.583998,0.487992,0.881491,0.932998,0.354263,0.800275,0.248528,0.560888,0.492199,0.958936,0.649083,0.0734562,0.511793,0.679643,0.922681,0.638014,0.000848114,0.0292827,0.879761,0.277566,0.372332,0.793324,0.489796,0.943052,0.845244,0.978293,0.85343,0.565534,0.887571,0.576592,0.0379894,0.85211,0.775078,0.111032,0.952119,0.910693,0.104075,0.51827,0.550588,0.312014,0.33661,0.960747,0.44793,0.0142245,0.375217,0.834169,0.124913,0.841644,0.854074,0.710388,0.589198,0.231821,0.507726,0.0792297,0.672348,0.981589,0.690323,0.150465,0.293481,0.944121,0.642343,0.192489,0.786149,0.470009,0.522942,0.311001,0.24788,0.82606,0.685011,0.667325,0.593049,0.587949,0.791445,0.644552,0.236163,0.229156,0.0418397,0.920631,0.469869,0.762695,0.204705,0.505731,0.556136,0.726311,0.228106,0.358602,0.321645,0.325486,0.855387,0.866659,0.0416318,0.200904,0.01317,0.876665,0.0748938,0.240268,0.73933,0.0831015,0.786288,0.397922,0.228515,0.0151019,0.142819,0.0342407,0.771327,0.686231,0.147702,0.131749,0.921133,0.30726,0.337519,0.793062,0.720057,0.135931,0.251478,0.623657,0.871372,0.407485,0.87821,0.0637591,0.962572,0.109016,0.963983,0.752871,0.782138,0.764147,0.164202,0.883633,0.778302,0.581287,0.612522,0.688552,0.343661,0.641998,0.746441,0.866905,0.783703,0.692526,0.644812,0.0299648,0.253074,0.912335,0.246454,0.570474,0.557283,0.0232333,0.47717,0.797291,0.490146,0.215535,0.377231,0.837451,0.83945,0.848459,0.190679,0.08106,0.638216,0.107287,0.960552,0.121623,0.919754,0.40863,0.0056361,0.864768,0.200187,0.711265,0.195503,0.49037,0.901092,0.370504,0.467752,0.525357,0.288092,0.146112,0.244021,0.446094,0.471986,0.696224,0.446871,0.321753,0.47358,0.117554,0.822033,0.4314,0.1635,0.285732,0.620289,0.600944,0.509524,0.45514,0.893515,0.246882,0.034798,0.450736,0.350349,0.870229,0.426144,0.456628,0.514407,0.0874418,0.300978,0.321626,0.181146,0.133904,0.953847,0.686471,0.0448137,0.95886,0.283312,0.105039,0.866713,0.817969,0.908397,0.981934,0.129244,0.647716,0.0229945,0.215384,0.913331,0.867347,0.163424,0.662608,0.655669,0.413378,0.675269,0.540754,0.170512,0.600973,0.199569,0.167414,0.933673,0.362988,0.931478,0.778772,0.109065,0.656939,0.882542,0.183202,0.625582,0.296429,0.469662,0.0303366,0.757021,0.306634,0.472054,0.81583,0.220974,0.734595,0.531018,0.336102,0.681336,0.914806,0.755055,0.516216,0.506736,0.24492,0.849432,0.736783,0.615473,0.97519,0.656085,0.721833,0.218283,0.991033,0.0600377,0.359739,0.147095,0.547858,0.424718,0.545908,0.0433469,0.988544,0.886207,0.822013,0.17549,0.0151196,0.0945628,0.605458,0.173791,0.498399,0.0383148,0.958297,0.56942,0.515466,0.622877,0.787594,0.0656423,0.680644,0.66917,0.0404636,0.682344,0.773863,0.151569,0.259717,0.0595905,0.737965,0.867688,0.525563,0.287187,0.779424,0.00643438,0.438374,0.0564013,0.144215,0.525223,0.016691,0.531556,0.346509,0.951622,0.508956,0.563966,0.639464,0.364932,0.955094,0.363989,0.972176,0.621694,0.260512,0.631495,0.262778,0.600152,0.553349,0.0242373,0.0472517,0.199901,0.112798,0.46177,0.785183,0.631744,0.830682,0.734165,0.237061,0.158799,0.189855,0.265625,0.863746,0.97792,0.515016,0.673021,0.469911,0.166452,0.428506,0.377685,0.509256,0.806577,0.57298,0.56926,0.573916,0.178552,0.405757,0.255944,0.473138,0.0718648,0.536236,0.971414,0.793372,0.555859,0.325719,0.343836,0.458778,0.983674,0.224638,0.206228,0.911784,0.445126,0.872188,0.0559893,0.805613,0.0326847,0.805211,0.736716,0.53804,0.527622,0.679999,0.200559,0.00978309,0.260224,0.838725,0.669297,0.674032,0.793107,0.0281385,0.116862,0.980153,0.89444,0.145591,0.0891506,0.396657,0.578736,0.867594,0.97521,0.460469,0.824586,0.297695,0.835172,0.17719,0.823237,0.00313514,0.512039,0.50756,0.872441,0.152131,0.22376,0.807954,0.637967,0.211338,0.792322,0.684244,0.736656,0.825508,0.622334,0.829775,0.924222,0.359717,0.279832,0.984105,0.425499,0.391584,0.502345,0.619893,0.538867,0.18547,0.966871,0.840997,0.242965,0.620378,0.747908,0.827308,0.627523,0.283959,0.658566,0.930154,0.762895,0.0859523,0.338358,0.916698,0.60485,0.877016,0.449882,0.899759,0.148364,0.410846,0.315542,0.838841,0.376501,0.296899,0.120898,0.788034,0.60547,0.3642,0.133328,0.150288,0.167686,0.97617,0.648436,0.108295,0.369263,0.31795,0.364735,0.719935,0.452821,0.111686,0.588304,0.787205,0.834926,0.882456,0.0341971,0.295348,0.604813,0.647271,0.433943,0.452734,0.946694,0.474292,0.254869,0.728646,0.883219,0.0517004,0.911798,0.653971,0.10308,0.260466,0.822885,0.130482,0.598203,0.916669,0.358667,0.208754,0.649183,0.298576,0.158264,0.287075,0.794827,0.0264736,0.315854,0.0627204,0.3305,0.186714,0.856846,0.426955,0.107508,0.0811751,0.710668,0.242853,0.206635,0.889754,0.666057,0.798952,0.771708,0.520649,0.440843,0.821893,0.890044,0.458985,0.653209,0.817879,0.421925,0.703361,0.25686,0.546579,0.936161,0.664663,0.940143,0.501976,0.68373,0.213394,0.153313,0.833591,0.114451,0.632869,0.585329,0.0978145,0.881021,0.825347,0.260744,0.566323,0.863837,0.995627,0.318843,0.975679,0.869283,0.0373427,0.118287,0.861038,0.87548,0.761017,0.477262,0.433617,0.859701,0.255347,0.189042,0.399185,0.628894,0.670781,0.665322,0.656747,0.696105,0.832616,0.705774,0.457582,0.59236,0.825844,0.160462,0.142405,0.578858,0.0951747,0.838826,0.922905,0.682572,0.0982586,0.578674,0.784848,0.146634,0.643147,0.492629,0.331583,0.33055,0.0230476,0.573767,0.502338,0.187899,0.477066,0.517676,0.299466,0.582127,0.0892276,0.302867,0.198642,0.919115,0.588223,0.590715,0.210373,0.902379,0.813773,0.80876,0.0943363,0.570071,0.884238,0.163573,0.586744,0.214255,0.0109591,0.076006,0.376809,0.899732,0.0388796,0.204467,0.232689,0.162302,0.456739,0.234125,0.886728,0.977477,0.807718,0.762288,0.573039,0.507588,0.995147,0.570633,0.101996,0.317617,0.562986,0.319396,0.343492,0.437112,0.0622503,0.453202,0.419746,0.285527,0.786252,0.623994,0.430529,0.421722,0.537568,0.828785,0.437335,0.983164,0.758175,0.0991981,0.377599,0.0778332,0.378925,0.869421,0.918777,0.464809,0.870386,0.749648,0.99851,0.542511,0.013075,0.894745,0.651912,0.11284,0.424,0.254229,0.495939,0.965024,0.563755,0.172056,0.64483,0.759075,0.94918,0.404557,0.796779,0.453624,0.0771274,0.108156,0.200375,0.384106,0.87165,0.121378,0.454929,0.511872,0.227134,0.488782,0.878646,0.408516,0.760197,0.419291,0.520647,0.847775,0.340664,0.25073,0.631119,0.262173,0.1612,0.0619158,0.0546252,0.424233,0.752287,0.0638067,0.440069,0.398532,0.0319673,0.453842,0.673402,0.881058,0.401424,0.557151,0.864172,0.756376,0.425134,0.962571,0.562004,0.392556,0.480333,0.845577,0.60979,0.614616,0.244099,0.60383,0.321174,0.147119,0.608165,0.193219,0.662391,0.220767,0.674711,0.216599,0.827288,0.868429,0.254821,0.350919,0.280816,0.952145,0.938889,0.521574,0.466464,0.885977,0.663565,0.210869,0.562099,0.842679,0.0709212,0.300541,0.731608,0.746784,0.845686,0.738384,0.368928,0.179765,0.861106,0.130208,0.981293,0.843939,0.0362063,0.785969,0.720846,0.126715,0.244274,0.0546354,0.225594,0.179928,0.566333,0.463126,0.467314,0.117388,0.801736,7.64728e-05,0.529319,0.432053,0.597746,0.108989,0.750741,0.856944,0.816983,0.352886,0.126359,0.31629,0.251923,0.698739,0.21445,0.949478,0.738144,0.510716,0.136756,0.907232,0.124848,0.265062,0.0629562,0.102732,0.199465,|0.671538,0.51459,0.684048,0.553569,0.153263,0.369277,0.603797,0.380966,0.853914,0.551924,0.184057,0.858413,0.540082,0.866437,0.298376,0.778754,0.0386188,0.0639089,0.707445,0.00997669,0.450879,0.95582,0.0200978,0.687464,0.300457,0.871121,0.577631,0.395588,0.473269,0.162937,0.0570874,0.011961,0.0475007,0.118654,0.544097,0.962686,0.373345,0.813873,0.348837,0.21789,0.243048,0.816682,0.485649,0.415626,0.614006,0.864061,0.361745,0.159768,0.37916,0.518226,0.239891,0.617891,0.613896,0.301969,0.347681,0.0249378,0.983883,0.300932,0.0583126,0.366672,0.0267896,0.677191,0.514982,0.842748,0.0155134,0.110157,0.211201,0.385713,0.0412425,0.361626,0.150152,0.727886,0.101382,0.0466814,0.301264,0.137809,0.113395,0.0767531,0.00388402,0.666268,0.134669,0.657637,0.554153,0.493187,0.923433,0.862657,0.434051,0.44992,0.41208,0.977745,0.296173,0.604029,0.0674765,0.739452,0.680256,0.927116,0.092548,0.742394,0.832001,0.784922,0.797699,0.102519,0.576309,0.734039,0.868692,0.941917,0.813597,0.114962,0.162662,0.374166,0.92893,0.63962,0.280471,0.735184,0.146943,0.249906,0.969064,0.264008,0.076156,0.844672,0.601045,0.556433,0.350242,0.42285,0.237195,0.0228231,0.42938,0.548265,0.362887,0.99735,0.905353,0.602702,0.645351,0.433964,0.865803,0.605553,0.0295735,0.0409082,0.392712,0.407029,0.275475,0.942753,0.488883,0.620682,0.11762,0.466184,0.928049,0.769492,0.967872,0.966036,0.836514,0.900838,0.899341,0.685498,0.189126,0.841323,0.580745,0.427799,0.0468534,0.313757,0.24018,0.356061,0.0603607,0.781746,0.05039,0.559311,0.916132,0.49042,0.079831,0.480709,0.0673628,0.493846,0.990317,0.248034,0.770514,0.972292,0.937635,0.733198,0.252807,0.562964,0.0683466,0.375284,0.775754,0.495045,0.905749,0.511618,0.524131,0.730851,0.0594751,0.257225,0.758959,0.610186,0.243304,0.534013,0.241372,0.118211,0.80931,0.401626,0.152124,0.364838,0.453307,0.276311,0.89557,0.773026,0.409522,0.454298,0.225646,0.825899,0.108494,0.604812,0.746957,0.620575,0.0450107,0.955889,0.380049,0.642078,0.880547,0.90828,0.826409,0.283376,0.891359,0.533701,0.959704,0.770714,0.601146,0.495955,0.421771,0.954877,0.662143,0.722105,0.100198,0.072247,0.225287,0.788646,0.417697,0.989826,0.00797433,0.909279,0.0341794,0.62241,0.635056,0.119916,0.430058,0.13321,0.80591,0.474233,0.73659,0.942926,0.394291,0.591925,0.88939,0.396682,0.673608,0.688214,0.899013,0.228827,0.75755,0.595476,0.817532,0.664718,0.143587,0.118496,0.666887,0.233568,0.577244,0.880447,0.813955,0.178932,0.130954,0.729113,0.371927,0.872192,0.494366,0.98971,0.52771,0.834237,0.928176,0.676216,0.810252,0.275002,0.692069,0.29054,0.612242,0.376056,0.0571693,0.0409805,0.0365641,0.345491,0.826864,0.123666,0.481068,0.394369,0.199452,0.934356,0.977482,0.588987,0.487791,0.816127,0.691048,0.522934,0.170763,0.679257,0.284845,0.509643,0.321608,0.308335,0.719736,0.641902,0.0468068,0.59454,0.0320616,0.352186,0.988766,0.150918,0.345662,0.70915,0.565639,0.34192,0.0132136,0.206012,0.254731,0.68733,0.434144,0.652537,0.832643,0.664237,0.127861,0.911087,0.776362,0.788978,0.329733,0.354643,0.487161,0.182739,0.120063,0.288559,0.634581,0.589258,0.410683,0.274343,0.0811545,0.484359,0.744672,0.25467,0.860953,0.0293151,0.99046,0.277473,0.879447,0.136285,0.657257,0.0593835,0.777264,0.462419,0.270716,0.303717,0.595802,0.76158,0.199624,0.800187,0.685257,0.73451,0.192295,0.61683,0.542021,0.991355,0.543414,0.119611,0.00637513,0.454973,0.884507,0.419641,0.108624,0.312939,0.866042,0.524376,0.391165,0.258325,0.814939,0.16311,0.0896792,0.45844,0.736508,0.968511,0.0587057,0.221363,0.635203,0.661653,0.781092,0.125277,0.408843,0.443571,0.176154,0.240051,0.373226,0.133939,0.224176,0.194659,0.339854,0.22305,0.783899,0.768069,0.677769,0.296017,0.847719,0.570268,0.888491,0.834024,0.592519,0.354717,0.238388,0.582677,0.58054,0.265665,0.256951,0.146676,0.0931306,0.926886,0.681605,0.587269,0.990751,0.958506,0.00939518,0.202705,0.908148,0.27346,0.30163,0.5025,0.208741,0.553685,0.921714,0.603732,0.849968,0.800976,0.958638,0.732092,0.317948,0.593293,0.186699,0.171154,0.751601,0.388274,0.136476,0.0202242,0.750481,0.680489,0.481524,0.774614,0.352685,0.967556,0.128764,0.235531,0.821883,0.308016,0.682955,0.302553,0.384839,0.602446,0.46189,0.119388,0.384058,0.769478,0.11525,0.741998,0.0180626,0.00284243,0.376396,0.305246,0.554279,0.243391,0.0571209,0.0560594,0.0311675,0.0273955,0.986881,0.78774,0.128429,0.472955,0.423909,0.969076,0.682316,0.470451,0.926204,0.466503,0.796507,0.666699,0.597108,0.977028,0.108448,0.736623,0.799194,0.345884,0.880391,0.79382,0.58381,0.452601,0.668845,0.756588,0.162597,0.0888345,0.463075,0.241211,0.542894,0.289185,0.597584,0.86044,0.653021,0.0636867,0.142455,0.580114,0.67707,0.221163,0.379068,0.833497,0.584634,0.498021,0.268231,0.394279,0.305801,0.727718,0.238895,0.820032,0.723144,0.466198,0.330423,0.317037,0.196836,0.662955,0.252747,0.853759,0.758314,0.298621,0.864576,0.494956,0.629321,0.258032,0.529839,0.0366449,0.938666,0.312815,0.564397,0.430832,0.208217,0.973261,0.445938,0.273508,0.995244,0.650573,0.711173,0.701004,0.842954,0.979638,0.695384,0.619276,0.272721,0.98777,0.866717,0.547919,0.20908,0.168482,0.0752822,0.473666,0.140123,0.623627,0.333187,0.689305,0.660295,0.745486,0.835164,0.223695,0.221139,0.545069,0.624939,0.630116,0.79391,0.613192,0.249773,0.361125,0.999295,0.496274,0.851138,0.612634,0.741651,0.270849,0.831552,0.553087,0.966621,0.887442,0.632876,0.901444,0.757336,0.211669,0.376566,0.363294,0.212032,0.139283,0.908735,0.00625736,0.265741,0.947922,0.228295,0.457082,0.62936,0.976127,0.894976,0.806278,0.646867,0.817607,0.0522448,0.300433,0.016514,0.0651644,0.351656,0.0942775,0.663548,0.510984,0.147076,0.880871,0.244572,0.638839,0.975472,0.739799,0.984966,0.410171,0.120741,0.491383,0.250231,0.506667,0.955486,0.244293,0.688934,0.428568,0.631876,0.554444,0.805129,0.645613,0.956748,0.748543,0.711658,0.267635,0.844473,0.0218918,0.739872,0.652875,0.178246,0.540822,0.169307,0.273356,0.640176,0.897412,0.0404101,0.532468,0.800431,0.0922989,0.471176,0.00276262,0.501579,0.0940531,0.0614977,0.17043,0.321068,0.940935,0.340268,0.529573,0.487441,0.248178,0.370491,0.428581,0.300641,0.330677,0.0315557,0.988795,0.114271,0.527434,0.567491,0.819923,0.0584935,0.595676,0.591652,0.864672,0.80986,0.63351,0.205573,0.0628288,0.556909,0.260239,0.22431,0.410446,0.832479,0.602308,0.613595,0.0636973,0.662579,0.796808,0.967141,0.839913,0.457539,0.713627,0.833224,0.447076,0.665184,0.520133,0.144133,0.696326,0.403531,0.478287,0.353502,0.110923,0.374348,0.725471,0.13441,0.154364,0.519555,0.576311,0.607363,0.439882,0.66253,0.404561,0.131881,0.651722,0.870641,0.112601,0.373858,0.171939,0.951745,0.466705,0.239292,0.341153,0.65512,0.598818,0.178395,0.55214,0.0172821,0.0583254,0.654328,0.0111706,0.700694,0.581803,0.127609,0.833377,0.750922,0.439206,0.177151,0.615389,0.574629,0.181558,0.359123,0.169685,0.0853232,0.245777,0.659534,0.165756,0.333875,0.226536,0.667821,0.346167,0.797974,0.717422,0.936597,0.150923,0.00605386,0.643232,0.660949,0.709919,0.873319,0.317422,0.765468,0.731928,0.231057,0.570592,0.551342,0.416408,0.0407219,0.627447,0.442854,0.256951,0.673974,0.945344,0.823144,0.00993639,0.540352,0.90069,0.747242,0.926137,0.620416,0.702431,0.245611,0.236303,0.119522,0.119565,0.94678,0.757857,0.200786,0.00913334,0.119613,0.750764,0.0810974,0.507958,0.892641,0.9755,0.226374,0.19476,0.0108979,0.352175,0.108225,0.588105,0.110246,0.690456,0.508082,0.0464879,0.756005,0.771196,0.807095,0.67849,0.76205,0.625823,0.84979,0.400391,0.0589988,0.85844,0.303217,0.562245,0.0199932,0.52833,0.904993,0.899781,0.584925,0.236756,0.144667,0.291405,0.190908,0.253602,0.914732,0.916641,0.830933,0.153121,0.695081,0.727728,0.0850089,0.911275,0.277862,0.80643,0.863139,0.21943,0.0943511,0.0885965,0.615383,0.226802,0.136651,0.573829,0.943979,0.542359,0.98423,0.142911,0.291742,0.00125146,0.492298,0.891721,0.350677,0.397741,0.253381,0.732478,0.416191,0.407501,0.211581,0.692585,0.958929,0.750083,0.347512,0.970906,0.355114,0.175083,0.941322,0.591463,0.373458,0.30671,0.217947,0.944024,0.60034,0.237731,0.679998,0.971163,0.810777,0.136381,0.413023,0.0294647,0.709136,0.54429,0.49654,0.921428,0.0262846,0.430878,0.418547,0.859621,0.5189,0.158924,0.116007,0.625184,0.376658,0.929212,0.468917,0.220227,0.497851,0.404201,0.136732,0.947244,0.280119,0.6132,0.190936,0.51011,0.0540145,0.949872,0.951656,0.107188,0.715953,0.847874,0.296693,0.727403,0.62696,0.845527,0.492985,0.81414,0.95917,0.129499,0.0488531,0.418955,0.537253,0.763542,0.0626094,0.122226,0.36647,0.449306,0.905863,0.529031,0.387106,0.782601,0.0767727,0.415341,0.920329,0.778163,0.680933,0.848467,0.785879,0.954005,0.594836,0.225786,0.408142,0.754803,0.0730975,0.309642,0.194739,0.596844,0.27343,0.981028,0.252165,0.420623,0.874965,0.185127,0.164534,0.355364,0.23506,0.107809,0.998106,0.738051,0.554618,0.0846999,0.577353,0.270425,0.887643,0.86821,0.597796,0.791058,0.145109,0.822404,0.84866,0.0442236,0.340255,0.572159,0.776433,0.377652,0.271651,0.523205,0.680482,0.950184,0.529536,0.644681,0.412379,0.811757,0.571488,0.0521154,0.855005,0.5954,0.505807,0.530823,0.61961,0.607665,0.768043,0.127963,0.650757,0.185688,|0.024513,0.361962,0.950993,0.339742,0.67913,0.388427,0.800361,0.463705,0.593063,0.147008,0.913806,0.39092,0.836551,0.765898,0.354495,0.978797,0.685328,0.759653,0.115684,0.644616,0.804376,0.78446,0.4186,0.0783076,0.834168,0.770627,0.482563,0.434961,0.759032,0.784897,0.909781,0.552263,0.22858,0.017199,0.939552,0.757382,0.862244,0.0628717,0.575179,0.818927,0.486756,0.0999157,0.201743,0.71399,0.571598,0.301722,0.0846842,0.956581,0.0540503,0.958548,0.629699,0.82475,0.531296,0.365253,0.389981,0.0546913,0.310653,0.570614,0.501588,0.471547,0.172816,0.716501,0.0713567,0.515326,0.87263,0.842734,0.303821,0.666935,0.0352129,0.30866,0.441269,0.532818,0.216911,0.835351,0.987797,0.835207,0.478309,0.319669,0.371878,0.0528859,0.211915,0.436752,0.735725,0.348926,0.29095,0.247514,0.723305,0.745781,0.201628,0.825299,0.0734223,0.0210617,0.910761,0.773772,0.163156,0.675707,0.762856,0.312242,0.352352,0.931069,0.696356,0.728326,0.696416,0.898632,0.694902,0.81242,0.889194,0.730213,0.542977,0.884121,0.679155,0.380459,0.927452,0.844396,0.871159,0.642703,0.541087,0.205981,0.00142092,0.125211,0.974123,0.896593,0.412696,0.961435,0.0355071,0.129338,0.777503,0.390401,0.484743,0.41852,0.560913,0.26532,0.0673511,0.67715,0.669284,0.143999,0.0906711,0.594481,0.434949,0.895216,0.637583,0.938408,0.962774,0.351342,0.461599,0.563138,0.125961,0.970319,0.0389225,0.603286,0.3499,0.926721,0.0734483,0.915811,0.0454391,0.719137,0.883789,0.619357,0.612611,0.751518,0.110767,0.026238,0.675529,0.236253,0.45088,0.0679271,0.247877,0.83342,0.910277,0.0218288,0.987404,0.685908,0.087504,0.9355,0.0255638,0.334945,0.934542,0.340866,0.511086,0.837906,0.0389129,0.299281,0.288246,0.546148,0.0950927,0.594726,0.528286,0.880697,0.703802,0.052877,0.637618,0.21508,0.909722,0.323377,0.485403,0.605686,0.0512937,0.679309,0.3743,0.926211,0.631859,0.963112,0.915072,0.535492,0.547466,0.7871,0.727913,0.645806,0.452767,0.386675,0.231798,0.71117,0.0935529,0.827788,0.844803,0.608209,0.358598,0.854434,0.90637,0.265327,0.00533491,0.868622,0.511576,0.90101,0.946411,0.501091,0.943022,0.739182,0.395037,0.0929673,0.533013,0.871396,0.738594,0.349089,0.529398,0.158767,0.405704,0.567158,0.925085,0.0667977,0.188609,0.773129,0.753313,0.844251,0.239492,0.662199,0.761286,0.86927,0.381544,0.825195,0.781128,0.336811,0.566202,0.875682,0.658028,0.837186,0.375313,0.60769,0.96165,0.724051,0.530993,0.636604,0.215067,0.491542,0.4663,0.79525,0.439904,0.0592542,0.783584,0.526869,0.442185,0.783958,0.745481,0.766448,0.479092,0.0756713,0.115245,0.154603,0.548879,0.976511,0.657956,0.58395,0.388128,0.667612,0.27149,0.834732,0.0449901,0.115763,0.341882,0.359551,0.0285339,0.291008,0.0564453,0.675922,0.400519,0.439493,0.276078,0.309204,0.228438,0.104704,0.372716,0.821902,0.509046,0.364496,0.29684,0.00946414,0.675412,0.685492,0.736312,0.107775,0.224564,0.478365,0.881224,0.257455,0.945969,0.79174,0.0886214,0.0780469,0.0258557,0.0783125,0.54511,0.745568,0.792857,0.354596,0.569795,0.711274,0.0467376,0.866377,0.126342,0.757831,0.369149,0.924479,0.695968,0.975879,0.322947,0.19952,0.814823,0.44828,0.0980961,0.845023,0.529503,0.714676,0.499629,0.297676,0.0637177,0.284208,0.436614,0.0680902,0.812695,0.700476,0.180185,0.610173,0.00368261,0.66648,0.31225,0.334307,0.704249,0.135874,0.832675,0.887367,0.638361,0.952661,0.0433172,0.297189,0.725929,0.656926,0.513056,0.55713,0.811564,0.0078243,0.489412,0.728364,0.835583,0.548599,0.393581,0.631428,0.524847,0.764117,0.710145,0.274964,0.906357,0.255346,0.916608,0.835481,0.511698,0.210422,0.872097,0.00979072,0.122571,0.386042,0.88043,0.428656,0.263047,0.369319,0.12257,0.572685,0.370385,0.853068,0.326445,0.30818,0.584882,0.807976,0.786425,0.59359,0.929174,0.351535,0.398843,0.378198,0.357339,0.0652567,0.812027,0.908314,0.370282,0.587273,0.103773,0.651342,0.379401,0.518578,0.584728,0.697641,0.377889,0.281397,0.449328,0.206275,0.579175,0.836303,0.444981,0.155552,0.072009,0.361076,0.997541,0.187688,0.765224,0.818011,0.930189,0.673365,0.128019,0.294858,0.0859113,0.280327,0.274062,0.829943,0.00734872,0.184028,0.188128,0.834952,0.106301,0.880407,0.841019,0.654877,0.643695,0.400421,0.914707,0.478048,0.526967,0.628161,0.817792,0.53463,0.928405,0.258317,0.803418,0.575657,0.162132,0.771517,0.342348,0.926775,0.661368,0.893686,0.486541,0.660825,0.165893,0.216556,0.339606,0.226247,0.129447,0.390913,0.842417,0.197061,0.537723,0.642995,0.403554,0.730625,0.227881,0.780815,0.306489,0.0790745,0.119836,0.107297,0.540633,0.794998,0.49594,0.231422,0.4161,0.788755,0.621999,0.117339,0.750501,0.766145,0.889228,0.481135,0.319902,0.988331,0.846526,0.400866,0.867884,0.46298,0.64705,0.874695,0.977381,0.679883,0.749394,0.266642,0.392981,0.221415,0.272328,0.85504,0.769691,0.695654,0.0620071,0.949027,0.0562521,0.246248,0.963952,0.0505365,0.24357,0.294029,0.495369,0.0218795,0.738126,0.79244,0.654694,0.401392,0.249198,0.0509987,0.105303,0.555392,0.170043,0.897423,0.665074,0.514032,0.499776,0.456776,0.0630684,0.381208,0.440038,0.793442,0.802452,0.405149,0.30528,0.908734,0.760434,0.730452,0.319636,0.814113,0.60692,0.266205,0.601225,0.242905,0.200602,0.839221,0.980611,0.84691,0.369268,0.922837,0.807452,0.420728,0.507003,0.0861985,0.161468,0.576642,0.261271,0.478158,0.0522904,0.269114,0.149301,0.914878,0.0846965,0.86013,0.896594,0.834906,0.97389,0.515581,0.194642,0.157949,0.048182,0.304141,0.375828,0.00359887,0.629047,0.0581998,0.877928,0.427876,0.52184,0.80919,0.500119,0.515368,0.648743,0.462093,0.0402812,0.268658,0.148029,0.538518,0.571911,0.814811,0.56147,0.709749,0.472708,0.77766,0.932584,0.571479,0.366945,0.486556,0.474157,0.903094,0.617015,0.944139,0.377394,0.280928,0.677543,0.931742,0.775883,0.00491673,0.264026,0.434746,0.614716,0.341753,0.784139,0.91873,0.945031,0.426184,0.241542,0.984833,0.486996,0.0852482,0.943047,0.39654,0.952216,0.870918,0.682002,0.84913,0.367832,0.397443,0.322753,0.456861,0.0466318,0.0182248,0.192234,0.941062,0.400961,0.516671,0.044284,0.484327,0.0980502,0.257638,0.803574,0.0173481,0.906592,0.439239,0.716863,0.3095,0.90987,0.118624,0.788253,0.0250583,0.333089,0.699452,0.95721,0.364889,0.196108,0.930232,0.982071,0.335594,0.0924994,0.300067,0.184524,0.496995,0.476175,0.169844,0.0937915,0.00506121,0.0464932,0.297734,0.976833,0.573476,0.306539,0.442341,0.99722,0.596225,0.652892,0.743213,0.940351,0.868005,0.444203,0.529792,0.437893,0.944791,0.902163,0.0480813,0.914174,0.186249,0.422421,0.53909,0.0231327,0.121366,0.126729,0.533941,0.106688,0.335574,0.0410158,0.725149,0.718276,0.740269,0.797225,0.139279,0.558724,0.348412,0.484332,0.825726,0.953255,0.222436,0.460003,0.277046,0.204337,0.241119,0.133363,0.124833,0.0767069,0.262143,0.583278,0.625932,0.880836,0.149897,0.864277,0.0787924,0.296013,0.56918,0.886864,0.527045,0.603652,0.637845,0.419411,0.379622,0.836101,0.261157,0.912001,0.591967,0.829136,0.280474,0.0969437,0.591077,0.886556,0.809779,0.130081,0.266311,0.516256,0.220549,0.862676,0.651301,0.870022,0.532972,0.260439,0.77801,0.392517,0.163283,0.96049,0.370769,0.785597,0.302659,0.583856,0.458935,0.71035,0.153279,0.638971,0.368328,0.557382,0.44158,0.401622,0.745486,0.239759,0.708236,0.132039,0.00600535,0.222805,0.299922,0.152439,0.861025,0.240654,0.725974,0.42859,0.738927,0.816846,0.573667,0.609011,0.0767844,0.136756,0.354532,0.448178,0.612666,0.154667,0.54155,0.60735,0.434385,0.789019,0.933087,0.82587,0.916083,0.376481,0.690382,0.831994,0.494232,0.810089,0.839785,0.465879,0.805737,0.770472,0.852423,0.638155,0.709032,0.160701,0.896352,0.518256,0.549751,0.607525,0.342136,0.268652,0.615351,0.203856,0.342492,0.976757,0.950504,0.203915,0.298981,0.0482163,0.152226,0.349401,0.808366,0.656589,0.470676,0.78939,0.0853738,0.369141,0.549899,0.714499,0.368703,0.236505,0.246913,0.52856,0.853692,0.969468,0.866642,0.777592,0.306959,0.63119,0.509344,0.557562,0.109212,0.863466,0.275903,0.35696,0.492785,0.13728,0.361508,0.684935,0.181182,0.283452,0.150616,0.870783,0.574176,0.575328,0.35017,0.292849,0.840296,0.228595,0.935666,0.240892,0.402233,0.214702,0.49586,0.137383,0.779529,0.508172,0.349922,0.0872275,0.142517,0.546397,0.730773,0.76348,0.690428,0.568181,0.865064,0.276286,0.628224,0.63852,0.00134891,0.299042,0.924063,0.874578,0.853829,0.641956,0.511725,0.513173,0.648219,0.0965233,0.467969,0.220799,0.362454,0.589382,0.00681776,0.681803,0.00115645,0.511446,0.489826,0.25536,0.267192,0.604,0.58301,0.897282,0.98659,0.570462,0.419769,0.235384,0.307539,0.717278,0.889583,0.865132,0.6067,0.920165,0.966192,0.188001,0.69683,0.354546,0.125343,0.126781,0.344336,0.624429,0.898889,0.0708428,0.63323,0.992575,0.887474,0.939287,0.639208,0.747262,0.0895662,0.232814,0.397195,0.110528,0.986492,0.790127,0.150918,0.284093,0.193964,0.64085,0.631842,0.574993,0.317039,0.86857,0.402725,0.958548,0.346271,0.80116,0.0839728,0.988564,0.646543,0.510213,0.64604,0.161345,0.73523,0.903906,0.876993,0.0535398,0.846766,0.915876,0.706402,0.460459,0.627189,0.591658,0.00959027,0.762198,0.14209,0.200825,0.273985,0.260364,0.0551305,0.101479,0.300348,0.105722,0.406875,0.283235,0.250604,0.00851959,0.00223643,0.975996,0.461329,0.488487,0.753475,0.161079,0.642247,0.604852,0.287387,|0.70903,0.649929,0.676405,0.0783593,0.532682,0.796299,0.932491,0.0324748,0.952227,0.994737,0.902741,0.44083,0.729652,0.881795,0.667001,0.365969,0.902508,0.541364,0.378696,0.579526,0.757562,0.0418394,0.937193,0.327748,0.319766,0.275946,0.682044,0.550384,0.292404,0.0840766,0.0816584,0.963089,0.516389,0.555773,0.845184,0.222601,0.200288,0.926424,0.843331,0.723703,0.203737,0.225681,0.954999,0.204579,0.713975,0.216511,0.832277,0.226414,0.987618,0.144849,0.960419,0.164143,0.839012,0.0258777,0.290611,0.902092,0.765144,0.642749,0.332828,0.0929855,0.298488,0.0858854,0.584762,0.922315,0.742306,0.63376,0.783302,0.212258,0.225625,0.745544,0.952934,0.657716,0.865416,0.928836,0.844444,0.611687,0.0764558,0.30163,0.428024,0.70937,0.820011,0.746008,0.581755,0.510454,0.630673,0.10895,0.282392,0.933266,0.718716,0.378707,0.413435,0.635191,0.059713,0.339854,0.706955,0.268398,0.00768143,0.736045,0.0990667,0.821988,0.668633,0.171896,0.0248334,0.00860482,0.616452,0.544522,0.736931,0.931843,0.742465,0.250822,0.482526,0.0356032,0.416274,0.421261,0.528394,0.334616,0.639957,0.826069,0.556628,0.386286,0.472788,0.166383,0.044113,0.813564,0.089104,0.968066,0.138907,0.818699,0.96785,0.211814,0.219877,0.905304,0.701096,0.51374,0.625289,0.203232,0.555453,0.656852,0.415756,0.788197,0.774073,0.0697154,0.671471,0.625954,0.755558,0.48141,0.660665,0.176194,0.363442,0.0144674,0.680026,0.474909,0.996652,0.988852,0.318764,0.120737,0.538527,0.0525153,0.430489,0.0467752,0.00320113,0.0713122,0.869569,0.391303,0.547533,0.544463,0.319189,0.167041,0.711847,0.525458,0.850456,0.842277,0.538936,0.834844,0.998459,0.619432,0.116141,0.911456,0.98456,0.244341,0.959146,0.575519,0.499114,0.987099,0.648057,0.303737,0.0957146,0.544884,0.263313,0.109771,0.113856,0.0933628,0.836578,0.51061,0.753869,0.162018,0.0955534,0.745186,0.842669,0.689809,0.798363,0.305675,0.194994,0.730957,0.889254,0.430334,0.22314,0.792653,0.378062,0.855504,0.766255,0.288433,0.860807,0.357758,0.520787,0.16051,0.219558,0.0512846,0.492731,0.0149983,0.970584,0.604555,0.409117,0.967343,0.386643,0.817964,0.521459,0.202944,0.880708,0.486623,0.43281,0.0442429,0.396756,0.0658324,0.962864,0.379045,0.97452,0.170883,0.582506,0.241758,0.638531,0.0463039,0.644396,0.982421,0.660685,0.797851,0.788515,0.387956,0.946306,0.423743,0.0040164,0.28543,0.624514,0.242091,0.406755,0.325217,0.913694,0.636884,0.723673,0.812365,0.62858,0.64975,0.0804708,0.841002,0.86995,0.38344,0.413031,0.956676,0.621363,0.681479,0.0827226,0.555091,0.0167415,0.854891,0.148136,0.432181,0.530615,0.773021,0.886959,0.663238,0.437479,0.282796,0.725011,0.400718,0.516669,0.897901,0.516166,0.827982,0.462984,0.203916,0.89613,0.279494,0.34605,0.48829,0.551312,0.288898,0.712802,0.426704,0.847579,0.189175,0.73717,0.19605,0.136068,0.46385,0.798048,0.0810559,0.392456,0.338027,0.9046,0.396482,0.42059,0.666151,0.541226,0.974156,0.788538,0.961108,0.583891,0.781118,0.24382,0.62937,0.609163,0.0959768,0.0845438,0.694859,0.799193,0.0827143,0.244086,0.293807,0.00748962,0.979245,0.177381,0.908788,0.282168,0.124472,0.991432,0.716579,0.411656,0.964865,0.561462,0.282184,0.947596,0.399159,0.770276,0.729326,0.354307,0.999875,0.770335,0.519233,0.827412,0.55991,0.490448,0.709534,0.803494,0.76684,0.581758,0.560406,0.740627,0.323791,0.485789,0.908217,0.774258,0.989345,0.440142,0.840044,0.768636,0.971221,0.157154,0.882286,0.304041,0.439792,0.666136,0.142709,0.798497,0.772671,0.270577,0.403352,0.158152,0.505916,0.266756,0.420898,0.502246,0.35329,0.750611,0.325325,0.796374,0.623164,0.963198,0.241828,0.635169,0.381951,0.453607,0.69571,0.498783,0.926973,0.32385,0.813975,0.622945,0.192082,0.88057,0.778557,0.251888,0.611424,0.212443,0.28813,0.527938,0.0588785,0.29341,0.0664189,0.475389,0.190824,0.460041,0.146784,0.802635,0.273443,8.63075e-05,0.210507,0.977687,0.811475,0.433774,0.0302361,0.920005,0.297603,0.376315,0.757902,0.819793,0.286215,0.874119,0.699236,0.120426,0.0891758,0.253115,0.30812,0.0157678,0.957472,0.0951957,0.750813,0.177151,0.751928,0.467002,0.77083,0.302347,0.940586,0.123624,0.824944,0.877127,0.283135,0.470428,0.382363,0.923972,0.12328,0.015087,0.485733,0.78032,0.594336,0.713569,0.754743,0.766611,0.627215,0.254584,0.0155571,0.64215,0.535027,0.611749,0.468702,0.171278,0.0167903,0.365901,0.804541,0.911309,0.229667,0.252126,0.0982108,0.692153,0.534281,0.13956,0.373427,0.313781,0.587469,0.656979,0.437932,0.128806,0.54511,0.559914,0.0192024,0.133196,0.428978,0.423921,0.916692,0.0113791,0.946751,0.101019,0.348703,0.332623,0.980318,0.0127835,0.200798,0.973091,0.610041,0.567554,0.54325,0.81369,0.69569,0.955497,0.643891,0.936795,0.108094,0.152138,0.83879,0.843678,0.764639,0.500559,0.351544,0.65012,0.738009,0.114002,0.755786,0.831168,0.92739,0.0778794,0.67664,0.98935,0.221011,0.263373,0.861684,0.993091,0.684314,0.0852614,0.770589,0.44319,0.0782121,0.776558,0.438401,0.432241,0.115291,0.991262,0.178243,0.540895,0.526133,0.170559,0.424138,0.175827,0.143118,0.0140997,0.0468143,0.6182,0.125531,0.84367,0.81412,0.61164,0.949163,0.800233,0.905182,0.51356,0.0398885,0.312838,0.289894,0.650742,0.105862,0.373978,0.543101,0.505484,0.0909165,0.231915,0.930817,0.997588,0.138811,0.526051,0.385475,0.394383,0.147162,0.125625,0.933824,0.777061,0.960036,0.641837,0.442613,0.854069,0.501661,0.157774,0.514318,0.0136053,0.519692,0.141548,0.689336,0.552421,0.245717,0.457451,0.826621,0.610763,0.128157,0.969765,0.588994,0.462439,0.480631,0.0571122,0.65087,0.546512,0.901078,0.69923,0.808236,0.819002,0.0066008,0.563527,0.586486,0.618217,0.506489,0.35703,0.13294,0.953126,0.146173,0.715113,0.0227998,0.29967,0.141108,0.674819,0.542474,0.832854,0.363913,0.239388,0.261885,0.281072,0.766007,0.426232,0.548954,0.834112,0.134909,0.869525,0.755653,0.409406,0.341914,0.308227,0.611372,0.148757,0.692936,0.74019,0.233586,0.488679,0.2385,0.0315134,0.734774,0.194705,0.87938,0.671004,0.592662,0.409674,0.401114,0.73933,0.417628,0.693952,0.728501,0.912882,0.844868,0.533661,0.424291,0.647689,0.39691,0.109058,0.00869596,0.472406,0.0502421,0.378749,0.941746,0.448848,0.825113,0.867287,0.230192,0.0984016,0.594622,0.072103,0.393605,0.834336,0.051422,0.142326,0.194182,0.640003,0.0996066,0.330919,0.363588,0.228375,0.0670399,0.101454,0.316535,0.489163,0.0325169,0.0669706,0.229417,0.820869,0.571567,0.967942,0.29875,0.747475,0.0437964,0.638512,0.618051,0.335202,0.0285593,0.513304,0.773089,0.793856,0.895614,0.546341,0.261962,0.359612,0.198995,0.614684,0.182181,0.198909,0.105828,0.420466,0.169494,0.806532,0.343475,0.836989,0.734165,0.764694,0.256472,0.76694,0.0084998,0.781107,0.391161,0.960729,0.753938,0.208864,0.0917658,0.0601355,0.852341,0.488072,0.792471,0.797494,0.24007,0.95514,0.218236,0.354361,0.365801,0.947094,0.308725,0.881725,0.812942,0.441829,0.781134,0.410246,0.783532,0.400179,0.842104,0.489998,0.115603,0.783664,0.216616,0.570487,0.0207444,0.136619,0.658467,0.760488,0.168759,0.330425,0.00551045,0.923256,0.215911,0.717277,0.614246,0.131226,0.242789,0.300029,0.481551,0.207866,0.646322,0.902773,0.095592,0.654005,0.832855,0.225745,0.585203,0.742149,0.594336,0.392877,0.443295,0.628449,0.926398,0.949651,0.831817,0.547891,0.115592,0.886334,0.361068,0.906822,0.337369,0.397651,0.551683,0.136077,0.00750494,0.969139,0.608484,0.825895,0.295362,0.549866,0.00449765,0.977964,0.164337,0.0992434,0.933402,0.959163,0.873858,0.432244,0.671738,0.527647,0.711779,0.60444,0.177941,0.210558,0.964884,0.579078,0.66164,0.853807,0.990576,0.562106,0.910215,0.784909,0.167797,0.404615,0.747981,0.819915,0.664584,0.273971,0.604131,0.437165,0.470067,0.980165,0.436552,0.925285,0.690666,0.95432,0.701276,0.480724,0.116961,0.927898,0.390822,0.738442,0.363348,0.234339,0.0328534,0.928648,0.0197128,0.231846,0.505458,0.604795,0.628062,0.15743,0.00450975,0.558474,0.528739,0.0590404,0.542846,0.515756,0.346536,0.543464,0.265656,0.213866,0.402627,0.888669,0.288867,0.129764,0.124429,0.880442,0.979125,0.472227,0.969325,0.251015,0.264698,0.701492,0.791457,0.225896,0.0676528,0.702001,0.345065,0.25836,0.282085,0.674603,0.932886,0.974253,0.684367,0.721527,0.368908,0.420612,0.879148,0.593913,0.326903,0.0474581,0.779545,0.809118,0.64475,0.108087,0.10224,0.188739,0.942143,0.952373,0.629288,0.849015,0.651001,0.0199555,0.0575184,0.324611,0.94702,0.641573,0.290121,0.736426,0.48519,0.0494564,0.111741,0.426468,0.147323,0.290596,0.53367,0.199818,0.392406,0.905982,0.973685,0.988265,0.815977,0.128686,0.829611,0.967449,0.171284,0.277127,0.514962,0.875204,0.846266,0.17052,0.418815,0.607901,0.129904,0.0839682,0.641078,0.27511,0.834925,0.789594,0.418952,0.888132,0.690039,0.129033,0.0712337,0.589716,0.770841,0.706535,0.223574,0.15468,0.652242,0.660467,0.413146,0.529457,0.915536,0.154186,0.0633149,0.0249146,0.880407,0.132987,0.20304,0.748472,0.184594,0.876085,0.880259,0.846064,0.422365,0.821875,0.490492,0.281212,0.644513,0.54129,0.597521,0.425858,0.779379,0.0916885,0.159779,0.602109,0.877363,0.111645,0.114181,0.161427,0.770585,0.786333,0.757343,0.837334,0.906297,0.379609,0.237879,0.499552,0.986677,0.961607,0.936901,0.494165,0.0809721,0.716431,0.603167,0.30005,0.0890288,0.941628,0.100601,0.652643,0.0686983,0.0573318,0.535256,|0.692601,0.934014,0.484707,0.947892,0.598089,0.620885,0.034901,0.815182,0.0259637,0.382281,0.835357,0.0663119,0.821301,0.665339,0.454772,0.701939,0.591762,0.452999,0.555881,0.687205,0.0175985,0.800241,0.258417,0.820124,0.0480279,0.143888,0.532698,0.146797,0.283009,0.393356,0.91251,0.574919,0.604376,0.456031,0.122086,0.615498,0.322587,0.636691,0.0347641,0.230307,0.0550921,0.779414,0.189099,0.468779,0.251483,0.133228,0.702367,0.460669,0.222524,0.232213,0.909556,0.444368,0.176072,0.659759,0.778387,0.782729,0.817555,0.631189,0.968521,0.220446,0.243291,0.163815,0.138429,0.950278,0.601475,0.688586,0.161288,0.359972,0.307391,0.731796,0.852118,0.525015,0.0702356,0.00716466,0.599682,0.162513,0.472228,0.996086,0.822999,0.144659,0.0830238,0.607021,0.929466,0.505701,0.410371,0.660701,0.343262,0.458906,0.302981,0.767026,0.947332,0.757314,0.194296,0.0565802,0.960095,0.201132,0.648828,0.0284886,0.161319,0.217587,0.273664,0.522625,0.535074,0.74905,0.859274,0.888676,0.125031,0.470187,0.16872,0.60754,0.179628,0.2446,0.76029,0.790937,0.328272,0.422764,0.373268,0.628265,0.422671,0.0937884,0.0705692,0.790553,0.60894,0.834031,0.0124854,0.0238967,0.613065,0.447203,0.905572,0.59001,0.711161,0.807284,0.391094,0.185906,0.359387,0.110812,0.296038,0.939212,0.20838,0.95129,0.235935,0.371491,0.465503,0.106415,0.408754,0.0885201,0.588941,0.685811,0.473006,0.735807,0.853339,0.0232871,0.0289446,0.264708,0.0999821,0.989477,0.183538,0.328177,0.302509,0.376239,0.718424,0.389942,0.714571,0.205617,0.0378595,0.161279,0.651185,0.703229,0.586419,0.46103,0.947691,0.112546,0.563454,0.128047,0.625749,0.865457,0.352529,0.224295,0.260949,0.711119,0.0718184,0.851016,0.334069,0.201418,0.893064,0.59003,0.252038,0.247113,0.873096,0.636649,0.437301,0.515475,0.0635818,0.204158,0.572699,0.642742,0.125912,0.651623,0.469681,0.16246,0.738199,0.624079,0.850572,0.0225736,0.784931,0.747291,0.835541,0.115426,0.0866849,0.517788,0.58458,0.81837,0.635862,0.958057,0.174025,0.495041,0.868561,0.708025,0.939168,0.219787,0.215761,0.274481,0.75661,0.727706,0.359209,0.275118,0.873783,0.0546356,0.647066,0.0610436,0.46818,0.542316,0.820617,0.790793,0.2984,0.0764041,0.0585016,0.988871,0.644824,0.744036,0.538975,0.471771,0.747433,0.442888,0.387016,0.392049,0.196382,0.48664,0.698839,0.718979,0.202796,0.207691,0.108867,0.287203,0.147053,0.744355,0.798583,0.620228,0.652384,0.379075,0.938456,0.776027,0.102102,0.89766,0.123023,0.961319,0.874111,0.869217,0.236323,0.297767,0.320751,0.0207393,0.647217,0.38045,0.310449,0.773793,0.391241,0.564309,0.682124,0.916739,0.988415,0.848547,0.089718,0.496511,0.101614,0.59993,0.191751,0.075961,0.569034,0.334546,0.506752,0.400933,0.759344,0.650743,0.970903,0.621489,0.80338,0.197016,0.986369,0.475972,0.696382,0.673333,0.221875,0.304268,0.166936,0.526334,0.857205,0.700815,0.0349101,0.438801,0.304032,0.635576,0.532202,0.151233,0.520308,0.0140736,0.86346,0.863365,0.612781,0.149441,0.0236453,0.24769,0.774024,0.86388,0.58051,0.217225,0.474376,0.652916,0.872474,0.17072,0.966239,0.504914,0.765925,0.230375,0.658834,0.824804,0.583278,0.826852,0.701054,0.975191,0.249082,0.2653,0.173498,0.924841,0.118662,0.917873,0.118803,0.114674,0.701554,0.642983,0.82676,0.462743,0.487571,0.618153,0.943967,0.541579,0.920393,0.222233,0.512376,0.503124,0.813285,0.00520843,0.73436,0.966989,0.385431,0.494091,0.563699,0.383679,0.0406888,0.0805889,0.940778,0.847827,0.0259473,0.593072,0.856443,0.769481,0.0949124,0.874648,0.488014,0.376886,0.457257,0.558698,0.137023,0.287828,0.272918,0.983628,0.173772,0.266407,0.136901,0.383628,0.215153,0.836934,0.903639,0.571763,0.96515,0.767857,0.926025,0.540322,0.307146,0.788806,0.721541,0.77954,0.139353,0.896794,0.00332969,0.250726,0.0899246,0.13656,0.0696289,0.660371,0.719305,0.196259,0.441056,0.306301,0.446494,0.873424,0.734643,0.534951,0.352251,0.0738224,0.0397167,0.119626,0.984501,0.555843,0.0439317,0.664715,0.204485,0.63318,0.75304,0.451259,0.236166,0.561163,0.947155,0.831064,0.691146,0.372598,0.554358,0.0906978,0.541691,0.156309,0.622027,0.782174,0.00356871,0.124995,0.768388,0.436081,0.862064,0.500376,0.652182,0.0533025,0.325022,0.366044,0.913071,0.405495,0.205755,0.439736,0.942519,0.215389,0.614479,0.660304,0.438491,0.50327,0.400469,0.73373,0.486573,0.916299,0.58291,0.909955,0.242214,0.0913168,0.179492,0.303874,0.699661,0.607491,0.982007,0.338635,0.912493,0.418364,0.0238515,0.329228,0.495894,0.818108,0.0232815,0.429406,0.726022,0.00741267,0.490099,0.495619,0.970815,0.700577,0.949853,0.726202,0.0803781,0.949264,0.896924,0.839665,0.491961,0.800682,0.65242,0.407094,0.66215,0.126444,0.249009,0.362717,0.852433,0.00352663,0.961868,0.999538,0.916657,0.373871,0.767208,0.490686,0.14532,0.0128293,0.419814,0.91874,0.707672,0.45214,0.0767031,0.733216,0.330395,0.719034,0.907417,0.42163,0.253471,0.087847,0.41903,0.174927,0.842916,0.497047,0.534208,0.769948,0.988097,0.285303,0.849969,0.122685,0.0780522,0.592625,0.207295,0.185205,0.459665,0.105433,0.780957,0.766191,0.254598,0.483346,0.458509,0.133898,0.0249239,0.347606,0.817436,0.582773,0.312121,0.167488,0.106643,0.265623,0.835279,0.935762,0.913234,0.164043,0.653572,0.493283,0.826284,0.49563,0.329238,0.406651,0.298292,0.595244,0.150138,0.172563,0.681675,0.983528,0.118303,0.586938,0.405543,0.775817,0.579583,0.990439,0.183078,0.871641,0.798486,0.99475,0.615925,0.593895,0.263745,0.0241324,0.22695,0.477292,0.927491,0.413383,0.927576,0.707087,0.00501686,0.805327,0.299686,0.53904,0.336609,0.486179,0.68855,0.711798,0.00314993,0.438579,0.110867,0.547338,0.808113,0.700921,0.692923,0.797984,0.0639986,0.949741,0.812464,0.377844,0.738878,0.449775,0.676379,0.790922,0.537851,0.436278,0.287125,0.809067,0.697044,0.558166,0.300173,0.695409,0.608776,0.0322326,0.0930233,0.919137,0.134834,0.943184,0.455877,0.320704,0.0694849,0.510939,0.0823399,0.265869,0.68467,0.389055,0.700086,0.741837,0.774226,0.170771,0.764383,0.817743,0.343242,0.610247,0.731333,0.566432,0.695733,0.702508,0.987513,0.206228,0.374807,0.278872,0.120702,0.8624,0.821396,0.749819,0.413655,0.290119,0.179635,0.720605,0.018402,0.850517,0.345883,0.0154553,0.153722,0.723522,0.692057,0.867866,0.150435,0.361598,0.307692,0.979161,0.178007,0.926432,0.109692,0.474397,0.937613,0.87927,0.367405,0.460567,0.660033,0.173385,0.0875981,0.108053,0.630352,0.433999,0.962892,0.212425,0.759958,0.756085,0.028761,0.627578,0.00751036,0.15521,0.377316,0.929944,0.753961,0.234104,0.318606,0.508001,0.850932,0.620596,0.842655,0.386266,0.479457,0.266687,0.8262,0.201543,0.859944,0.824524,0.524214,0.930842,0.869431,0.443296,0.887926,0.427118,0.896763,0.530552,0.586011,0.586289,0.760387,0.0863501,0.34324,0.440661,0.453109,0.0370117,0.137394,0.0392954,0.902852,0.704574,0.210889,0.383703,0.904875,0.195548,0.502122,0.102912,0.177672,0.948564,0.861368,0.823207,0.33782,0.60927,0.301636,0.382156,0.544481,0.311658,0.504871,0.376565,0.776419,0.877785,0.119979,0.203659,0.443111,0.12309,0.941558,0.398747,0.697753,0.211573,0.571007,0.0101694,0.240665,0.408247,0.824357,0.453444,0.393334,0.115944,0.832143,0.249016,0.326645,0.271882,0.291221,0.30081,0.967717,0.0627523,0.533326,0.438216,0.929542,0.72634,0.205112,0.996711,0.349258,0.00234032,0.687383,0.196945,0.420175,0.0817688,0.981119,0.0144272,0.38927,0.434019,0.1628,0.752373,0.0367727,0.903961,0.032592,0.824741,0.994313,0.143838,0.478338,0.946301,0.265586,0.882844,0.968546,0.404459,0.809548,0.715051,0.831304,0.29449,0.392864,0.950884,0.812312,0.629814,0.373663,0.842532,0.924967,0.418739,0.0311807,0.910008,0.976787,0.129499,0.681568,0.654332,0.828047,0.344542,0.557836,0.820715,0.538504,0.262593,0.663558,0.543608,0.285939,0.0847911,0.475556,0.97579,0.0159924,0.439413,0.0879828,0.723803,0.2126,0.869572,0.713527,0.791648,0.683752,0.721828,0.335001,0.66705,0.438217,0.963174,0.33555,0.946616,0.6075,0.145418,0.000760615,0.233579,0.3109,0.341971,0.458882,0.897819,0.128559,0.343616,0.957856,0.039924,0.914973,0.387747,0.455561,0.227565,0.679861,0.199254,0.68831,0.0432234,0.945867,0.482748,0.48078,0.410757,0.776693,0.210472,0.773262,0.0444968,0.1401,0.225915,0.34401,0.0603454,0.987039,0.426677,0.375955,0.0290185,0.498124,0.572852,0.465339,0.389435,0.771147,0.841556,0.443739,0.0551552,0.55723,0.0426188,0.428289,0.460088,0.699273,0.058507,0.942797,0.46293,0.0973947,0.00618714,0.378731,0.0410833,0.929316,0.0797682,0.952167,0.376093,0.133562,0.0625594,0.329159,0.831885,0.85388,0.675638,0.335951,0.992844,0.113197,0.289218,0.391578,0.354445,0.973946,0.0977774,0.912887,0.718152,0.10746,0.212405,0.322737,0.738121,0.490662,0.507845,0.568904,0.262113,0.905705,0.852466,0.0502428,0.948111,0.110983,0.444412,0.291507,0.634584,0.536807,0.824791,0.976159,0.818229,0.843562,0.68361,0.149602,0.975149,0.645852,0.95006,0.11224,0.108706,0.0318461,0.210872,0.434893,0.163389,0.607548,0.938813,0.707697,0.0657137,0.866903,0.0145663,0.474046,0.461723,0.516943,0.788252,0.334442,0.771912,0.596411,0.954521,0.816236,0.402297,0.0622317,0.817404,0.752629,0.337276,0.294735,0.0585092,0.841859,0.0172353,0.359584,0.0419017,0.43556,0.236869,0.657422,0.623629,0.208426,0.146256,0.946181,0.691264,0.0294845,0.176287,0.776112,0.875679,0.830419,0.482864,|0.706803,0.16974,0.555937,0.107478,0.938752,0.697675,0.779649,0.0629392,0.398656,0.248224,0.325721,0.250184,0.848479,0.100479,0.832878,0.132632,0.492263,0.195425,0.108156,0.353854,0.283538,0.471925,0.991932,0.590771,0.208303,0.773452,0.0924407,0.0884933,0.284257,0.458819,0.1865,0.855079,0.96722,0.0545466,0.80014,0.385633,0.76858,0.894484,0.675127,0.68549,0.513002,0.577133,0.73646,0.234369,0.271314,0.990919,0.402861,0.664457,0.423568,0.821452,0.169832,0.226129,0.101655,0.318257,0.696325,0.805266,0.976907,0.662255,0.152227,0.0364705,0.816872,0.707435,0.256154,0.102052,0.836365,0.191522,0.665421,0.568769,0.566804,0.0411974,0.272407,0.144169,0.0737362,0.767701,0.501565,0.932487,0.956445,0.395695,0.791176,0.187357,0.682402,0.252192,0.420354,0.322861,0.365108,0.960054,0.769393,0.451759,0.0195081,0.781753,0.912818,0.0317509,0.504264,0.308894,0.442733,0.98141,0.801444,0.267893,0.426296,0.421534,0.857805,0.96299,0.246366,0.330993,0.0832136,0.928332,0.873553,0.30244,0.805456,0.520537,0.214275,0.616549,0.329639,0.144395,0.737771,0.0615041,0.246171,0.674634,0.724105,0.668969,0.555753,0.387684,0.803154,0.81066,0.26924,0.323549,0.0106905,0.674455,0.577317,0.735319,0.729486,0.0385846,0.756013,0.734224,0.849122,0.290535,0.017894,0.778017,0.297307,0.280071,0.712688,0.707658,0.618799,0.402791,0.125467,0.549934,0.965599,0.305005,0.779649,0.191719,0.573615,0.71468,0.989346,0.192345,0.14833,0.353847,0.378178,0.687887,0.9897,0.420189,0.798637,0.644331,0.726825,0.352551,0.769522,0.651991,0.120274,0.455546,0.227712,0.545581,0.698451,0.283486,0.792221,0.736707,0.586693,0.345263,0.843784,0.0325456,0.118465,0.476731,0.756038,0.789891,0.324604,0.178506,0.927717,0.944934,0.187246,0.512062,0.178075,0.0162988,0.852538,0.477688,0.452833,0.593243,0.818417,0.751827,0.644966,0.54135,0.535241,0.635814,0.827356,0.134209,0.793346,0.729941,0.425025,0.539279,0.859418,0.350605,0.934675,0.352681,0.711392,0.599927,0.917244,0.18146,0.735755,0.480062,0.910776,0.908628,0.302885,0.0221292,0.942306,0.398809,0.71961,0.488642,0.902438,0.178083,0.399048,0.212481,0.955942,0.429269,0.940163,0.938947,0.154848,0.461124,0.506124,0.261498,0.723235,0.451575,0.869424,0.735398,0.921718,0.46361,0.0732428,0.084164,0.588265,0.0892129,0.737098,0.0926496,0.693389,0.333949,0.172779,0.0987246,0.448621,0.798672,0.880498,0.612293,0.690439,0.449488,0.868883,0.548069,0.660414,0.362469,0.179401,0.970926,0.852805,0.393825,0.0236942,0.00881809,0.379811,0.482961,0.248702,0.232191,0.171034,0.641675,0.718006,0.118055,0.259838,0.014081,0.390267,0.00674015,0.619102,0.977138,0.707112,0.0683174,0.441408,0.690639,0.799366,0.528305,0.651797,0.859981,0.067423,0.532353,0.20705,0.520851,0.318442,0.814663,0.31931,0.508385,0.0947244,0.760716,0.736439,0.948953,0.579092,0.203753,0.668511,0.543122,0.197213,0.379267,0.0169708,0.0393659,0.482068,0.215948,0.800754,0.770699,0.0595378,0.700221,0.555974,0.121466,0.814848,0.56438,0.430174,0.010478,0.200688,0.229427,0.101074,0.451044,0.0991789,0.483312,0.720875,0.434414,0.72398,0.00436926,0.0974163,0.589588,0.956623,0.957274,0.289374,0.0114638,0.0305894,0.605995,0.481862,0.873272,0.275687,0.381803,0.260728,0.14058,0.281492,0.554927,0.899386,0.262271,0.840592,0.741143,0.5681,0.597909,0.872678,0.989799,0.23642,0.741846,0.448418,0.546964,0.68511,0.920126,0.420948,0.567761,0.103653,0.0472596,0.664561,0.882301,0.0241101,0.0152968,0.913665,0.585094,0.081054,0.0558659,0.790986,0.260966,0.527946,0.928978,0.986451,0.819542,0.592819,0.216056,0.918631,0.541139,0.129922,0.158025,0.40124,0.282394,0.953448,0.241248,0.202883,0.0566295,0.44882,0.599123,0.850079,0.553067,0.258705,0.423876,0.909636,0.740339,0.0503367,0.578503,0.0432206,0.0236465,0.855581,0.33053,0.125325,0.496446,0.193377,0.979148,0.754903,0.464404,0.650853,0.752279,0.434542,0.288339,0.0482675,0.325903,0.842722,0.633054,0.708978,0.200775,0.639944,0.790838,0.67008,0.87509,0.723582,0.132839,0.825913,0.514882,0.603509,0.697486,0.859849,0.697441,0.204888,0.61641,0.334071,0.129572,0.686762,0.393927,0.251085,0.107366,0.0773211,0.427636,0.731272,0.535343,0.754826,0.764262,0.0304937,0.262436,0.0645179,0.553925,0.00415123,0.629946,0.311221,0.977439,0.444735,0.225914,0.84369,0.026975,0.995405,0.174539,0.356078,0.616855,0.170206,0.798369,0.591726,0.624851,0.0580194,0.96182,0.582317,0.504868,0.646976,0.037355,0.0828297,0.690585,0.144648,0.647093,0.670589,0.6332,0.992074,0.572181,0.416274,0.6414,0.996741,0.306508,0.770097,0.00901908,0.98258,0.865762,0.67041,0.547939,0.982612,0.794667,0.330026,0.44591,0.309326,0.322186,0.167818,0.370909,0.638678,0.837756,0.0766542,0.186897,0.525894,0.700161,0.380265,0.470592,0.360708,0.941732,0.812309,0.635446,0.337725,0.544359,0.259664,0.868955,0.38435,0.9388,0.841525,0.069502,0.231312,0.661574,0.0268336,0.479379,0.310563,0.164061,0.527258,0.384033,0.507505,0.88895,0.00562418,0.588125,0.931426,0.473316,0.295823,0.167648,0.998427,0.614628,0.301723,0.543676,0.944929,0.0421826,0.229063,0.173808,0.921411,0.836903,0.351138,0.836129,0.186796,0.0929779,0.811275,0.980696,0.282065,0.108217,0.0412814,0.897193,0.223847,0.523489,0.641635,0.907048,0.930632,0.958131,0.0167423,0.822239,0.799536,0.437637,0.431249,0.447261,0.141824,0.0318578,0.304397,0.0443056,0.712994,0.0654424,0.519047,0.922645,0.802721,0.477278,0.554799,0.843287,0.820155,0.820329,0.790803,0.791138,0.449498,0.610918,0.666806,0.177944,0.509881,0.53983,0.526972,0.303283,0.558827,0.919825,0.385395,0.689542,0.137917,0.303159,0.573008,0.101628,0.272881,0.843783,0.777358,0.129246,0.265907,0.125355,0.935758,0.951685,0.648965,0.149226,0.0671253,0.227927,0.0179243,0.847926,0.759926,0.435853,0.869506,0.678388,0.461471,0.0778712,0.726719,0.950056,0.434766,0.626506,0.208756,0.384075,0.864494,0.892896,0.522964,0.249719,0.462443,0.876535,0.0294909,0.737118,0.150042,0.732027,0.525998,0.841475,0.74512,0.0712122,0.821959,0.162687,0.799812,0.816855,0.00387424,0.845461,0.718697,0.617332,0.731977,0.444013,0.661056,0.719301,0.0661757,0.271255,0.35242,0.185604,0.446415,0.887012,0.98043,0.819622,0.351455,0.198701,0.603854,0.132018,0.0263973,0.814707,0.916524,0.277625,0.337278,0.778669,0.94942,0.275738,0.843578,0.493004,0.935961,0.764154,0.791909,0.477379,0.949695,0.0133392,0.579315,0.372405,0.223582,0.354675,0.204943,0.208265,0.88535,0.699986,0.761186,0.434639,0.996247,0.890003,0.612054,0.890531,0.552509,0.494964,0.425805,0.126596,0.27906,0.612187,0.217002,0.58695,0.556354,0.171716,0.155858,0.813594,0.844423,0.733045,0.502577,0.113643,0.907549,0.0458304,0.0775078,0.162556,0.580337,0.928486,0.00834793,0.0858757,0.322703,0.397191,0.246607,0.295368,0.713626,0.333089,0.771527,0.0609471,0.139661,0.923503,0.350161,0.719776,0.939966,0.518252,0.672289,0.576898,0.678254,0.286859,0.622993,0.457089,0.062387,0.485314,0.536781,0.566574,0.401478,0.300763,0.224042,0.662383,0.757627,0.44275,0.697438,0.0894647,0.717538,0.823584,0.312781,0.709715,0.750488,0.896318,0.688437,0.075247,0.220887,0.364789,0.807221,0.0979637,0.657476,0.160282,0.697008,0.321664,0.968785,0.759801,0.663639,0.599847,0.791136,0.904488,0.481186,0.756137,0.997247,0.320483,0.227621,0.470935,0.00535125,0.183792,0.651815,0.13067,0.105223,0.721386,0.0170162,0.519801,0.896745,0.529928,0.322618,0.266779,0.754114,0.325109,0.773626,0.227217,0.563329,0.415929,0.211591,0.135526,0.916313,0.492392,0.180065,0.622658,0.451059,0.194451,0.571033,0.624619,0.456952,0.655806,0.0340339,0.275633,0.638775,0.894335,0.821263,0.638169,0.163964,0.913697,0.814017,0.727813,0.863439,0.772675,0.85759,0.139794,0.691505,0.347639,0.858524,0.668321,0.965188,0.426983,0.135638,0.97001,0.709806,0.700461,0.0904544,0.468309,0.811242,0.243027,0.56052,0.248703,0.913515,0.0623797,0.604759,0.841347,0.170905,0.833783,0.580337,0.414797,0.149529,0.964222,0.0990102,0.616632,0.951315,0.0384367,0.537379,0.461682,0.363394,0.906304,0.372955,0.0886631,0.370291,0.077585,0.41228,0.73964,0.490286,0.877233,0.921721,0.529599,0.774993,0.834055,0.310126,0.128175,0.944212,0.289401,0.505345,0.771093,0.868679,0.279035,0.261508,0.183792,0.179485,0.666888,0.806962,0.856448,0.546247,0.0128604,0.67832,0.10705,0.748094,0.410594,0.855518,0.242294,0.831677,0.00384319,0.284189,0.890791,0.465785,0.671696,0.695654,0.315918,0.932784,0.713321,0.158478,0.602133,0.530955,0.722716,0.418327,0.813264,0.82368,0.147947,0.942546,0.695448,0.766475,0.0428709,0.733896,0.0979903,0.182276,0.0433797,0.0485997,0.272759,0.580228,0.66281,0.989811,0.416717,0.787534,0.116492,0.677387,0.103904,0.545549,0.978126,0.355116,0.271093,0.955403,0.0690879,0.0137082,0.830975,0.63736,0.185309,0.508281,0.500648,0.769293,0.249292,0.586359,0.486184,0.0430602,0.699922,0.744508,0.717382,0.657236,0.881514,0.305351,0.347387,0.742638,0.713608,0.843031,0.496458,0.262011,0.266876,0.471531,0.356578,0.321576,0.465178,0.00720465,0.973261,0.0489363,0.011219,0.680477,0.515806,0.99099,0.629238,0.654506,0.696509,0.0925003,0.58592,0.155771,0.493759,0.920431,0.0775534,0.697536,0.857375,0.0177206,0.548966,0.465105,0.306915,0.405767,0.225854,0.18345,0.517627,0.470928,0.0135276,0.58087,0.58518,0.0353354,0.626657,0.0332434,0.412148,0.76218,0.65506,0.603821,0.189271,0.83923,0.35202,|0.980489,0.951704,0.717441,0.760261,0.634619,0.563932,0.227609,0.167671,0.233835,0.411983,0.662645,0.746532,0.343621,0.620434,0.794591,0.983407,0.525697,0.835299,0.0766634,0.997544,0.444435,0.620776,0.492435,0.836541,0.546986,0.27,0.912216,0.663671,0.320396,0.681872,0.945385,0.468918,0.0603567,0.886368,0.206059,0.362437,0.064506,0.727757,0.28027,0.792803,0.255253,0.149786,0.30128,0.80245,0.318382,0.325017,0.693344,0.912789,0.670733,0.517293,0.0286339,0.680372,0.759263,0.388915,0.938866,0.72766,0.565436,0.204811,0.695552,0.594369,0.590974,0.0609059,0.0201493,0.19523,0.562318,0.735129,0.691973,0.158411,0.692116,0.169796,0.0440744,0.901992,0.796306,0.825337,0.0383157,0.256397,0.463009,0.924232,0.535566,0.397964,0.850443,0.799192,0.086667,0.823422,0.1856,0.171408,0.509839,0.174291,0.383552,0.199826,0.709985,0.528673,0.945056,0.46317,0.445026,0.919836,0.0253291,0.157083,0.933372,0.776669,0.723122,0.73933,0.716141,0.551684,0.12133,0.101121,0.616088,0.693993,0.56097,0.919923,0.433386,0.302125,0.131007,0.888017,0.456841,0.260213,0.0572091,0.921629,0.97885,0.191144,0.444736,0.463454,0.356013,0.39252,0.218718,0.0249235,0.946138,0.723688,0.952756,0.341799,0.508931,0.662481,0.0544064,0.0972097,0.306272,0.406715,0.652238,0.454459,0.512766,0.892158,0.497395,0.629525,0.917922,0.818295,0.955333,0.240139,0.942891,0.64655,0.465582,0.784865,0.375041,0.635169,0.567663,0.108143,0.196922,0.711976,0.902066,0.360803,0.0307543,0.373647,0.86038,0.514934,0.993647,0.471491,0.427848,0.878227,0.853233,0.450416,0.509812,0.426071,0.286653,0.237736,0.121334,0.575536,0.612966,0.0832937,0.197977,0.0164674,0.00157201,0.485278,0.291068,0.0430996,0.716265,0.456569,0.786069,0.679674,0.11751,0.982762,0.694603,0.0595042,0.654378,0.136274,0.56097,0.708711,0.928674,0.926201,0.497404,0.740561,0.272214,0.173772,0.457403,0.834452,0.0612578,0.7271,0.656515,0.949678,0.114729,0.377913,0.194755,0.875303,0.998597,0.726404,0.274199,0.230486,0.410068,0.617028,0.449416,0.171835,0.116246,0.277663,0.789029,0.982822,0.927773,0.400134,0.273512,0.04814,0.941987,0.502501,0.46948,0.399642,0.0358309,0.558641,0.954005,0.161442,0.642284,0.539555,0.929199,0.764715,0.310024,0.233143,0.536542,0.886452,0.0980808,0.210667,0.629222,0.252783,0.944176,0.584249,0.939852,0.0486323,0.139079,0.28807,0.781223,0.0089103,0.130275,0.942146,0.375425,0.364324,0.726942,0.71614,0.257849,0.761184,0.944292,0.27767,0.754844,0.577418,0.212302,0.822493,0.488201,0.0271349,0.202583,0.376005,0.349879,0.780697,0.858916,0.152658,0.691854,0.451431,0.781036,0.191749,0.850091,0.16624,0.784565,0.13533,0.825298,0.256395,0.581972,0.99575,0.384806,0.620051,0.154379,0.284728,0.56797,0.395808,0.206097,0.640041,0.186814,0.856966,0.529379,0.28867,0.608302,0.351494,0.537482,0.873665,0.221844,0.791246,0.535242,0.48851,0.541643,0.182636,0.9666,0.0366554,0.989096,0.360747,0.255279,0.140248,0.218029,0.541511,0.714288,0.418481,0.408717,0.908673,0.7771,0.494231,0.388202,0.844952,0.00365406,0.456757,0.547821,0.307786,0.937037,0.960213,0.395175,0.727286,0.136141,0.659539,0.885639,0.125845,0.780517,0.332399,0.562324,0.756886,0.127209,0.873494,0.659552,0.00221813,0.472586,0.15218,0.633678,0.520803,0.10524,0.775763,0.301943,0.363334,0.228347,0.568674,0.531016,0.0484491,0.185147,0.750487,0.827425,0.974289,0.567231,0.00180268,0.318805,0.890576,0.443778,0.0605241,0.0766728,0.285127,0.91955,0.0748807,0.751942,0.438392,0.038772,0.529104,0.0324962,0.630256,0.776722,0.954493,0.74389,0.966771,0.234567,0.748445,0.613545,0.0742304,0.94725,0.500894,0.440088,0.139198,0.145596,0.0728462,0.813665,0.19608,0.858077,0.811217,0.891048,0.703328,0.979635,0.952139,0.0248787,0.515557,0.289068,0.85659,0.573965,0.995283,0.846163,0.0682915,0.230827,0.200024,0.721913,0.40821,0.764386,0.993758,0.440453,0.873785,0.485529,0.285548,0.609556,0.765128,0.487213,0.853933,0.634737,0.507619,0.344469,0.63903,0.393507,0.633763,0.771629,0.160986,0.207306,0.109283,0.838811,0.696743,0.503314,0.514968,0.425352,0.836113,0.0490621,0.0855085,0.606495,0.599038,0.0349138,0.293748,0.55752,0.41828,0.509395,0.661867,0.0549833,0.847275,0.796118,0.967984,0.968017,0.953156,0.145321,0.289685,0.111302,0.550863,0.29159,0.300442,0.791058,0.476412,0.359513,0.872398,0.873767,0.365648,0.00458658,0.50071,0.0399508,0.726716,0.2007,0.367941,0.471676,0.203163,0.66699,0.653004,0.264725,0.648559,0.637332,0.476149,0.656496,0.55099,0.373384,0.305825,0.52471,0.909432,0.91166,0.656678,0.491556,0.553443,0.51361,0.773751,0.296748,0.327069,0.512791,0.217285,0.911319,0.336712,0.898748,0.133999,0.0919036,0.527397,0.904927,0.352115,0.422807,0.290174,0.855898,0.729341,0.793845,0.923121,0.645344,0.588152,0.437511,0.79204,0.267657,0.397565,0.146917,0.212114,0.842105,0.277193,0.253259,0.846068,0.525488,0.308975,0.398134,0.532038,0.974265,0.697628,0.291701,0.972034,0.553874,0.969687,0.903006,0.430619,0.472612,0.633928,0.405925,0.663771,0.652554,0.304582,0.71724,0.180379,0.899846,0.365265,0.114824,0.244922,0.473214,0.980282,0.163704,0.332632,0.324338,0.519439,0.455306,0.902987,0.11668,0.902839,0.470709,0.751618,0.577564,0.911421,0.799107,0.190243,0.752968,0.139216,0.600204,0.72265,0.772186,0.471209,0.264894,0.909862,0.269498,0.621661,0.130465,0.439784,0.124675,0.956248,0.431033,0.407584,0.0919801,0.714752,0.843425,0.140283,0.17271,0.564806,0.657458,0.193388,0.948385,0.730607,0.424084,0.616934,0.170208,0.537749,0.473907,0.885804,0.91702,0.17935,0.863208,0.344327,0.460919,0.255394,0.216682,0.994944,0.254066,0.749481,0.325391,0.53688,0.619727,0.451181,0.745422,0.157499,0.212211,0.140012,0.15214,0.0594127,0.922665,0.452696,0.08257,0.641883,0.265461,0.748507,0.0165198,0.15456,0.179704,0.0870231,0.574852,0.339793,0.657472,0.268524,0.777672,0.593413,0.433028,0.382527,0.352698,0.67739,0.788733,0.022207,0.277809,0.512454,0.149201,0.628911,0.412982,0.176461,0.700144,0.556037,0.248466,0.612167,0.97506,0.871392,0.893391,0.687087,0.691276,0.635426,0.621103,0.503467,0.619195,0.225116,0.027666,0.189764,0.813727,0.595114,0.153482,0.966008,0.850933,0.430205,0.554481,0.0836181,0.367066,0.638374,0.642523,0.747652,0.677532,0.255727,0.46092,0.85476,0.7707,0.8398,0.311141,0.85619,0.771717,0.222893,0.421611,0.0136863,0.272504,0.0232975,0.980559,0.850411,0.305335,0.912901,0.84019,0.225786,0.353402,0.836279,0.875186,0.391924,0.541902,0.49611,0.111424,0.263401,0.245575,0.144984,0.100044,0.560709,0.965602,0.476091,0.847186,0.0650313,0.854071,0.125847,0.0480165,0.975639,0.444181,0.150034,0.599622,0.45133,0.330163,0.683209,0.690613,0.0918128,0.993568,0.57777,0.602463,0.603688,0.423706,0.749624,0.530013,0.903744,0.724512,0.46567,0.827993,0.273422,0.342698,0.630966,0.828087,0.469549,0.335504,0.162172,0.945561,0.0940842,0.863246,0.34086,0.051381,0.3516,0.619226,0.287857,0.103155,0.648618,0.3483,0.397254,0.0460362,0.926989,0.811385,0.749618,0.18092,0.297487,0.15625,0.345522,0.382501,0.409077,0.105869,0.57507,0.570065,0.689085,0.903058,0.122891,0.188808,0.388483,0.424044,0.373434,0.669927,0.929816,0.217219,0.620683,0.639563,0.175415,0.934578,0.750549,0.00956947,0.977334,0.0211712,0.472427,0.66246,0.0560536,0.46755,0.187827,0.222279,0.875624,0.899406,0.310425,0.873447,0.676149,0.761761,0.0450091,0.887873,0.836729,0.489759,0.239737,0.90139,0.642375,0.834386,0.63083,0.238798,0.999502,0.903443,0.640593,0.385749,0.618635,0.103056,0.0989187,0.0203018,0.467209,0.842241,0.497586,0.0743315,0.740686,0.819257,0.628641,0.455951,0.0194429,0.693049,0.506964,0.271388,0.075308,0.246705,0.0505793,0.163006,0.00887346,0.991248,0.202638,0.716316,0.918625,0.529108,0.150412,0.439459,0.36543,0.754493,0.878663,0.71549,0.802668,0.390907,0.28721,0.682035,0.127207,0.765209,0.693864,0.28205,0.428198,0.640791,0.322593,0.848724,0.650533,0.965824,0.687949,0.565562,0.55035,0.665051,0.629092,0.711032,0.292724,0.688043,0.81778,0.280616,0.45208,0.624529,0.124053,0.201689,0.997709,0.557896,0.661409,0.993419,0.623875,0.380468,0.811069,0.681672,0.340976,0.92123,0.837725,0.826961,0.786852,0.984428,0.96969,0.98705,0.939889,0.517485,0.861579,0.0828189,0.269838,0.17768,0.911275,0.433854,0.938385,0.947745,0.301409,0.34766,0.206646,0.0347618,0.436613,0.800276,0.206802,0.435754,0.345547,0.833103,0.0119607,0.780761,0.158109,0.0362057,0.42437,0.934203,0.55509,0.0135058,0.366957,0.200617,0.0378764,0.943031,0.0335521,0.411525,0.169849,0.377457,0.762736,0.549052,0.979158,0.636451,0.441197,0.860314,0.774401,0.182544,0.719568,0.814718,0.30863,0.438329,0.275972,0.85654,0.592277,0.600618,0.658301,0.754735,0.909328,0.477467,0.921974,0.0904939,0.525859,0.223926,0.22405,0.0234787,0.455768,0.655162,0.268108,0.229719,0.289664,0.803143,0.897178,0.76251,0.220264,0.751483,0.744162,0.617517,0.146838,0.248413,0.518925,0.897156,0.22991,0.620565,0.825227,0.884451,0.75671,0.25727,0.703049,0.828146,0.327983,0.781646,0.770975,0.296811,0.0809262,0.0569203,0.935763,0.728168,0.907716,0.693519,0.480646,0.386251,0.443973,0.675062,0.199916,0.132252,0.0245878,0.840133,0.373107,0.522843,0.517137,0.0524332,0.819239,0.367326,0.557148,0.802088,0.285923,0.790742,0.640969,0.204311,0.488332,0.738067,0.236281,|0.59703,0.703532,0.77895,0.751332,0.430468,0.404722,0.103817,0.323621,0.076051,0.712435,0.125386,0.223549,0.813235,0.925048,0.369675,0.586487,0.122662,0.519888,0.37081,0.704301,0.771792,0.552122,0.655049,0.825399,0.607572,0.0965487,0.0954333,0.406523,0.00280178,0.356492,0.424259,0.387946,0.115409,0.366271,0.58425,0.729977,0.425724,0.619405,0.372167,0.0609984,0.914089,0.462414,0.755415,0.0326006,0.119322,0.94145,0.306915,0.615084,0.228901,0.0727916,0.880731,0.901536,0.512762,0.851249,0.710611,0.808794,0.588731,0.864828,0.493339,0.395166,0.298668,0.411127,0.0456114,0.102883,0.0677094,0.85563,0.334006,0.556527,0.485457,0.408262,0.989849,0.194934,0.428544,0.430684,0.632664,0.831086,0.828925,0.150109,0.33529,0.908148,0.845695,0.104421,0.770116,0.676568,0.650174,0.308264,0.504922,0.273315,0.341251,0.645609,0.0343754,0.535151,0.247988,0.757673,0.428939,0.741174,0.272698,0.832526,0.651065,0.738668,0.641784,0.977658,0.274074,0.0523864,0.478052,0.578324,0.486988,0.114328,0.425289,0.303452,0.43155,0.622684,0.394345,0.310529,0.838676,0.260081,0.608582,0.869957,0.999025,0.608405,0.574987,0.183009,0.511031,0.145533,0.465546,0.413301,0.677231,0.0305341,0.198444,0.651517,0.893024,0.44282,0.970767,0.499436,0.718659,0.741743,0.969647,0.658926,0.704166,0.554841,0.408081,0.441089,0.708521,0.531094,0.158251,0.74944,0.142862,0.131689,0.154964,0.581774,0.980209,0.791845,0.518246,0.401642,0.166523,0.619404,0.0121683,0.255087,0.290984,0.386099,0.857311,0.685901,0.598795,0.778931,0.482051,0.222022,0.753685,0.0537345,0.831741,0.59419,0.624553,0.858777,0.677684,0.0862651,0.515215,0.0101364,0.79248,0.00733036,0.270076,0.00272512,0.894744,0.469434,0.40168,0.415696,0.0893913,0.0709978,0.929932,0.698194,0.71746,0.4845,0.0014351,0.34545,0.397966,0.396116,0.946744,0.243317,0.889406,0.598122,0.795502,0.190481,0.605984,0.662567,0.457957,0.327836,0.863563,0.772399,0.30243,0.817196,0.353351,0.239222,0.520795,0.0832088,0.498485,0.721858,0.589477,0.174736,0.917656,0.487047,0.654983,0.719017,0.524177,0.476139,0.19967,0.347281,0.552555,0.700876,0.416742,0.622151,0.621095,0.356755,0.718359,0.512648,0.307123,0.325327,0.479085,0.576824,0.41244,0.167744,0.476482,0.727255,0.633731,0.144246,0.887965,0.688325,0.572379,0.843021,0.251679,0.196159,0.658295,0.190171,0.13281,0.781359,0.271952,0.512304,0.106145,0.642003,0.792865,0.56023,0.497818,0.555814,0.373123,0.0643777,0.574437,0.0536637,0.0248012,0.9864,0.411361,0.73585,0.45238,0.494728,0.170489,0.875303,0.918848,0.756202,0.0501409,0.698979,0.653969,0.197309,0.0769752,0.147192,0.365834,0.696687,0.715234,0.23675,0.982184,0.300741,0.0512761,0.997966,0.18361,0.119344,0.86452,0.195881,0.0248183,0.656973,0.502721,0.258416,0.404271,0.494418,0.698776,0.12566,0.684874,0.550107,0.100271,0.354881,0.148866,0.480455,0.92636,0.147933,0.964878,0.0542051,0.519039,0.818895,0.769874,0.666271,0.693714,0.378792,0.0939358,0.816305,0.263193,0.893355,0.780491,0.474834,0.727716,0.116239,0.53628,0.568599,0.131367,0.506949,0.0931265,0.493189,0.972165,0.821139,0.279865,0.785273,0.661422,0.759432,0.0782914,0.669519,0.840979,0.91262,0.796427,0.281274,0.0134298,0.746257,0.619291,0.424729,0.679328,0.118668,0.00989205,0.0793732,0.757726,0.559587,0.0339891,0.32441,0.432598,0.067209,0.298028,0.804148,0.514384,0.948805,0.462381,0.309984,0.477635,0.962706,0.365772,0.0705054,0.589297,0.38262,0.171067,0.594599,0.373031,0.605306,0.590011,0.11789,0.0639875,0.559106,0.31308,0.0173798,0.133687,0.0297169,0.592398,0.915666,0.0448306,0.988689,0.724985,0.967206,0.540987,0.0832586,0.553554,0.922977,0.140278,0.578711,0.600983,0.961699,0.748637,0.238796,0.494438,0.208652,0.847467,0.861436,0.85463,0.521642,0.516322,0.545177,0.396163,0.503228,0.863765,0.526542,0.0768998,0.176815,0.124515,0.978644,0.420071,0.0617719,0.142458,0.808733,0.303268,0.880774,0.565701,0.268478,0.327177,0.884265,0.122123,0.220992,0.196426,0.202447,0.854682,0.705331,0.168044,0.13838,0.0264327,0.399271,0.242797,0.489176,0.358152,0.983612,0.210843,0.620385,0.600514,0.353635,0.719777,0.15144,0.165827,0.313511,0.390033,0.928075,0.520575,0.961336,0.856829,0.91319,0.54728,0.684798,0.0923554,0.78598,0.920067,0.752073,0.50158,0.532209,0.156647,0.121894,0.763471,0.155961,0.723566,0.294535,0.672698,0.505956,0.544472,0.315228,0.268143,0.35962,0.078598,0.801532,0.372551,0.648456,0.99752,0.447901,0.104386,0.859303,0.289176,0.199325,0.90123,0.374183,0.692728,0.601225,0.426771,0.416488,0.408921,0.0524985,0.433227,0.440256,0.995362,0.539879,0.562619,0.222209,0.689896,0.0681406,0.089364,0.628756,0.138079,0.191843,0.45557,0.134298,0.122917,0.758134,0.263203,0.543049,0.343365,0.79614,0.0952871,0.284827,0.320074,0.883681,0.178252,0.743175,0.570257,0.617172,0.682622,0.544576,0.993743,0.355623,0.9684,0.888983,0.211292,0.280775,0.494818,0.798292,0.966885,0.818511,0.701338,0.460486,0.724648,0.219951,0.148784,0.783676,0.840031,0.616332,0.900994,0.417034,0.704896,0.500934,0.511888,0.103077,0.38401,0.0553669,0.00478023,0.0835841,0.122067,0.412969,0.0405724,0.901879,0.471963,0.107549,0.705145,0.987062,0.670443,0.453005,0.244944,0.442963,0.686079,0.569959,0.801677,0.965007,0.535957,0.152061,0.501312,0.0775751,0.0438173,0.0324031,0.356424,0.969616,0.0486061,0.940103,0.299994,0.95445,0.775115,0.119435,0.631954,0.493811,0.9533,0.394096,0.724711,0.885082,0.351089,0.0545716,0.0030598,0.69725,0.564661,0.00934374,0.509903,0.887407,0.961412,0.484409,0.0925578,0.409749,0.667817,0.517674,0.26693,0.443906,0.4105,0.121344,0.809282,0.857903,0.684918,0.175845,0.408555,0.179711,0.535929,0.0729559,0.429819,0.188547,0.225173,0.563764,0.937356,0.846925,0.285099,0.414981,0.727022,0.234612,0.855335,0.223603,0.240205,0.379011,0.231106,0.455416,0.226356,0.312745,0.861837,0.431844,0.43639,0.490661,0.20486,0.7458,0.81859,0.0779071,0.802968,0.648652,0.510632,0.485829,0.33439,0.439301,0.49684,0.707333,0.446466,0.51805,0.670256,0.470514,0.411522,0.732991,0.301371,0.383525,0.832212,0.591286,0.0735896,0.23564,0.434687,0.715754,0.279028,0.41027,0.177876,0.769123,0.958618,0.499828,0.781839,0.170448,0.507909,0.0833449,0.000221848,0.743815,0.789967,0.752805,0.734337,0.543823,0.817241,0.162512,0.23789,0.44758,0.512599,0.571853,0.724131,0.187356,0.460221,0.691505,0.395925,0.350648,0.616568,0.797048,0.484062,0.28604,0.480003,0.857512,0.804663,0.927004,0.177485,0.187818,0.00245059,0.608132,0.873262,0.449655,0.293702,0.100541,0.718725,0.46206,0.702124,0.854601,0.221364,0.629155,0.742188,0.894166,0.214112,0.979017,0.948301,0.577266,0.271789,0.212583,0.0274401,0.304045,0.856828,0.718155,0.809435,0.450427,0.517471,0.892487,0.553603,0.0972785,0.0991443,0.487994,0.791383,0.074261,0.991846,0.159362,0.817211,0.394959,0.00831932,0.249109,0.546961,0.872277,0.744427,0.809191,0.91907,0.109554,0.0764144,0.361654,0.274864,0.494566,0.363641,0.205427,0.566133,0.622567,0.0464306,0.121798,0.902002,0.0467175,0.474423,0.7095,0.0201967,0.3817,0.996711,0.878733,0.937091,0.226361,0.783149,0.961711,0.89571,0.44876,0.684254,0.569731,0.645851,0.481922,0.528064,0.788801,0.339849,0.269557,0.161198,0.963902,0.402057,0.65114,0.88662,0.00419551,0.343104,0.676108,0.45019,0.818186,0.218557,0.520815,0.342548,0.768153,0.277435,0.513355,0.0310847,0.0132874,0.946668,0.881587,0.382227,0.114963,0.258965,0.601668,0.513291,0.109453,0.16244,0.207252,0.0608357,0.061967,0.287603,0.188682,0.828032,0.748061,0.0489143,0.276055,0.631532,0.593328,0.575654,0.801723,0.799261,0.504345,0.772277,0.000186682,0.747332,0.60886,0.727168,0.45137,0.349323,0.658998,0.0957138,0.393704,0.906672,0.541382,0.322009,0.167917,0.99232,0.898651,0.828457,0.764391,0.551196,0.343954,0.85272,0.699493,0.883449,0.093318,0.247404,0.32852,0.0300683,0.757214,0.229207,0.846959,0.321844,0.326033,0.64663,0.980147,0.603151,0.738434,0.541695,0.650189,0.682168,0.0205184,0.295175,0.579498,0.307507,0.655672,0.920704,0.405417,0.130999,0.96737,0.238073,0.143039,0.305502,0.408838,0.649718,0.643419,0.584873,0.276235,0.665284,0.579739,0.576393,0.251344,0.163131,0.671388,0.687458,0.426406,0.469969,0.721161,0.0242717,0.0604616,0.949515,0.330912,0.666871,0.800847,0.641825,0.860077,0.510431,0.818378,0.755219,0.718515,0.558229,0.972838,0.19306,0.387544,0.0136805,0.336665,0.254048,0.870376,0.451879,0.716663,0.110145,0.545793,0.864983,0.996716,0.0940334,0.891475,0.144432,0.732455,0.579028,0.120656,0.0739796,0.812338,0.330996,0.366871,0.473251,0.301367,0.335225,0.476032,0.744702,0.311291,0.946844,0.0237195,0.129135,0.957497,0.682091,0.317393,0.35956,0.850327,0.539611,0.660262,0.085297,0.48426,0.692659,0.315781,0.660074,0.326028,0.925805,0.753334,0.53869,0.389583,0.932284,0.88551,0.996994,0.933498,0.0557619,0.374403,0.614876,0.333114,0.838424,0.589713,0.181038,0.864135,0.366758,0.569288,0.394871,0.252331,0.072898,0.597349,0.820334,0.0681258,0.425268,0.307416,0.336468,0.9897,0.0037086,0.0193508,0.645368,0.263955,0.327973,0.388053,0.0101749,0.725075,0.647478,0.0908054,0.565599,0.660662,0.944419,0.913488,0.541016,0.230115,0.0209926,0.453361,0.0881041,0.193384,0.140337,0.0284755,0.970226,0.124723,0.0072906,0.969039,0.842905,0.771904,0.134125,0.324575,0.0661684,0.874161,0.182201,0.798769,|0.665267,0.32514,0.425389,0.24649,0.750908,0.29588,0.280055,0.0813891,0.393256,0.311803,0.120353,0.868603,0.658002,0.780773,0.695382,0.39867,0.871495,0.328999,0.723413,0.00857556,0.370219,0.416957,0.371398,0.27388,0.0424955,0.172907,0.818397,0.458747,0.0389169,0.800416,0.572442,0.870566,0.773007,0.424601,0.801883,0.00843328,0.23699,0.106093,0.254753,0.0215331,0.690637,0.729802,0.317132,0.430412,0.787008,0.686058,0.411106,0.756727,0.470069,0.312756,0.82244,0.296385,0.226694,0.730714,0.273093,0.764337,0.238381,0.385606,0.669701,0.198409,0.100909,0.54668,0.956372,0.0777179,0.592278,0.11933,0.919322,0.976428,0.0848833,0.452998,0.265677,0.310676,0.247365,0.857462,0.605729,0.968974,0.562383,0.0842433,0.776401,0.118091,0.700771,0.92266,0.584011,0.857317,0.36069,0.927048,0.605055,0.868907,0.866195,0.495012,0.163281,0.60022,0.579125,0.459202,0.579029,0.929861,0.191177,0.725905,0.219996,0.479406,0.243774,0.711908,0.424926,0.656684,0.868692,0.343183,0.598076,0.807248,0.568307,0.930131,0.313066,0.89253,0.789956,0.430352,0.402181,0.471377,0.420527,0.847895,0.417572,0.543973,0.202707,0.998641,0.0460118,0.708145,0.330149,0.331904,0.0493332,0.0940703,0.653474,0.770175,0.669289,0.175978,0.100437,0.844475,0.263075,0.682978,0.86895,0.0315997,0.662422,0.440761,0.729632,0.102425,0.534154,0.710666,0.559453,0.0221097,0.197578,0.113569,0.49275,0.0122196,0.713695,0.105172,0.645545,0.787969,0.307603,0.174436,0.684288,0.266312,0.112755,0.814749,0.963485,0.539999,0.442571,0.126429,0.379468,0.176826,0.591352,0.508598,0.377812,0.222764,0.766172,0.762454,0.770003,0.890404,0.956999,0.0412076,0.965487,0.562885,0.9543,0.893253,0.818082,0.315492,0.239849,0.618632,0.32339,0.704936,0.562178,0.799156,0.301672,0.769866,0.663367,0.779893,0.996173,0.922199,0.344106,0.262173,0.575006,0.203687,0.295826,0.642211,0.237658,0.663643,0.942071,0.0665752,0.682001,0.415364,0.817231,0.879448,0.649695,0.978542,0.772238,0.420402,0.226776,0.21787,0.799202,0.59286,0.983182,0.517473,0.426947,0.810274,0.583107,0.782165,0.600369,0.450771,0.703289,0.663098,0.938903,0.139255,0.342832,0.670855,0.299096,0.453609,0.71442,0.345736,0.994096,0.922644,0.409288,0.778135,0.200866,0.856891,0.12638,0.645589,0.387324,0.929243,0.535869,0.899176,0.535926,0.851981,0.361019,0.237229,0.243902,0.971877,0.988763,0.753647,0.956764,0.649373,0.733796,0.946989,0.386991,0.246901,0.611084,0.861575,0.612233,0.463632,0.162048,0.947016,0.789906,0.511947,0.916239,0.13375,0.837116,0.325147,0.258819,0.120568,0.320681,0.700758,0.89906,0.00553441,0.867451,0.0167122,0.394085,0.612409,0.375079,0.762727,0.508679,0.203705,0.511116,0.721972,0.203352,0.727724,0.369423,0.385951,0.519451,0.146141,0.00610262,0.452211,0.121825,0.929127,0.895928,0.0732686,0.792626,0.752469,0.121276,0.859261,0.939112,0.0294574,0.197014,0.309442,0.614854,0.509826,0.173379,0.897347,0.995712,0.741479,0.490463,0.246941,0.7675,0.574504,0.581995,0.804102,0.764727,0.899818,0.33645,0.106337,0.0908726,0.92259,0.243293,0.863862,0.474325,0.405907,0.400519,0.750057,0.228314,0.084568,0.961737,0.526596,0.0371985,0.400668,0.609581,0.601265,0.964063,0.427929,0.932615,0.0586278,0.302155,0.975073,0.0628728,0.823568,0.970735,0.296182,0.182778,0.758943,0.497833,0.215639,0.703153,0.910164,0.346236,0.32503,0.758437,0.27577,0.0886461,0.273465,0.223361,0.439564,0.820693,0.943732,0.812985,0.178938,0.937288,0.903079,0.0908515,0.387541,0.24294,0.972369,0.860567,0.957816,0.980182,0.043519,0.680625,0.301288,0.108937,0.950948,0.157292,0.581911,0.962889,0.845958,0.428287,0.504078,0.537314,0.0890795,0.510198,0.462702,0.758215,0.0443958,0.508933,0.00688368,0.762853,0.497931,0.456745,0.937283,0.997467,0.337653,0.637494,0.017905,0.0214877,0.0243274,0.929402,0.93801,0.394351,0.516783,0.597942,0.607375,0.492091,0.133651,0.331627,0.260826,0.418656,0.485205,0.183597,0.728128,0.419522,0.706274,0.433377,0.215864,0.731699,0.464568,0.465201,0.697607,0.0302327,0.380352,0.162825,0.784732,0.492737,0.877765,0.157506,0.0317979,0.159813,0.0954235,0.94699,0.308652,0.389632,0.132804,0.600934,0.758882,0.405728,0.0871947,0.588591,0.940674,0.12835,0.784147,0.689736,0.468037,0.607278,0.254283,0.681928,0.509899,0.386997,0.825683,0.892246,0.346352,0.543514,0.282365,0.728903,0.302323,0.967642,0.234981,0.108997,0.990984,0.280306,0.573564,0.600255,0.000700533,0.551102,0.921096,0.69883,0.362388,0.214584,0.772312,0.952555,0.644051,0.996264,0.121272,0.167986,0.386879,0.66306,0.791235,0.11791,0.846457,0.0673784,0.00786197,0.5833,0.996877,0.17148,0.275967,0.519584,0.792522,0.987912,0.538968,0.694581,0.610863,0.743756,0.922445,0.513194,0.554348,0.924258,0.0299546,0.608566,0.599006,0.718592,0.223384,0.527581,0.706534,0.153081,0.949619,0.483087,0.256371,0.860914,0.479992,0.235729,0.768774,0.696655,0.546412,0.607551,0.306017,0.952097,0.409618,0.0696164,0.158275,0.771284,0.31701,0.75141,0.0895259,0.168764,0.461527,0.194653,0.80333,0.289491,0.412136,0.401213,0.825888,0.240938,0.865067,0.156285,0.781108,0.720411,0.446573,0.255486,0.376043,0.811332,0.207326,0.810083,0.697292,0.472945,0.356079,0.0955321,0.0293149,0.0674543,0.161489,0.652197,0.23919,0.635757,0.350432,0.289951,0.486493,0.202734,0.686296,0.566117,0.446703,0.271526,0.359101,0.188466,0.935521,0.215301,0.40468,0.773237,0.341651,0.115126,0.885572,0.443138,0.871052,0.300554,0.871566,0.866657,0.836924,0.071538,0.508114,0.331971,0.777211,0.776771,0.316283,0.6193,0.306072,0.109333,0.560068,0.382343,0.979365,0.343518,0.0742632,0.253267,0.391319,0.40665,0.149835,0.992359,0.198128,0.665537,0.474552,0.313708,0.807434,0.545328,0.384948,0.604636,0.929338,0.585027,0.714435,0.570992,0.739215,0.870665,0.14361,0.119394,0.731516,0.257243,0.595245,0.437604,0.24083,0.300182,0.900266,0.722181,0.446087,0.665463,0.074445,0.820693,0.0632446,0.954586,0.740506,0.646489,0.338008,0.123652,0.723608,0.0335113,0.0856502,0.94363,0.496422,0.0880111,0.829024,0.126624,0.266249,0.550801,0.080357,0.697453,0.740198,0.944023,0.486315,0.177012,0.490738,0.746952,0.325956,0.713633,0.933533,0.211116,0.244442,0.516275,0.281828,0.487676,0.450922,0.414428,0.563166,0.317464,0.0555472,0.56481,0.0602164,0.284474,0.367222,0.0340564,0.383639,0.112956,0.882144,0.332794,0.348529,0.331878,0.26097,0.432357,0.192085,0.273181,0.242809,0.798408,0.0850797,0.803643,0.181999,0.225831,0.703588,0.241258,0.659255,0.612648,0.195429,0.0501835,0.470837,0.336189,0.483741,0.491679,0.899856,0.595622,0.792673,0.699041,0.788537,0.538703,0.412244,0.168873,0.639146,0.562038,0.762522,0.706697,0.351577,0.180579,0.319486,0.0907177,0.470383,0.550524,0.108876,0.558491,0.253353,0.230362,0.734485,0.421849,0.120623,0.224647,0.989428,0.475509,0.0711886,0.0377971,0.880574,0.210082,0.370947,0.346854,0.0335885,0.21192,0.305001,0.828006,0.0796466,0.0168435,0.719649,0.793758,0.57853,0.810573,0.852903,0.313105,0.0854901,0.734585,0.8505,0.255334,0.6187,0.216225,0.971486,0.658501,0.711263,0.83753,0.378415,0.00892699,0.0380052,0.419032,0.183577,0.947333,0.608166,0.922511,0.530575,0.679674,0.490042,0.0767726,0.00759041,0.1386,0.238901,0.0263829,0.97656,0.242189,0.647663,0.588665,0.583776,0.229665,0.910882,0.755251,0.240794,0.0106996,0.74042,0.602339,0.693684,0.638614,0.218329,0.733074,0.178048,0.0872723,0.592423,0.947011,0.507484,0.155287,0.171888,0.397523,0.49438,0.875365,0.0727078,0.484267,0.50462,0.561864,0.532676,0.38159,0.297058,0.446746,0.129606,0.902224,0.119447,0.938892,0.483697,0.431995,0.949573,0.663813,0.657463,0.128274,0.134656,0.574611,0.969627,0.103802,0.00401586,0.913642,0.954429,0.141423,0.950607,0.582245,0.13956,0.7247,0.891033,0.426247,0.950602,0.73721,0.617473,0.433696,0.855618,0.839897,0.94979,0.600418,0.215104,0.153903,0.419992,0.324632,0.412754,0.373214,0.412963,0.0705121,0.385914,0.939885,0.895269,0.633129,0.219334,0.195007,0.505687,0.56865,0.927152,0.681128,0.812475,0.603049,0.0549387,0.377943,0.432111,0.656723,0.101019,0.579299,0.111176,0.602742,0.0317698,0.679724,0.677737,0.584593,0.648212,0.353151,0.810802,0.0283571,0.170036,0.64597,0.225389,0.974016,0.725947,0.705662,0.805784,0.196021,0.318497,0.455816,0.925691,0.558384,0.138443,0.34006,0.823275,0.178072,0.553387,0.083962,0.0202206,0.634458,0.460818,0.539236,0.847813,0.808128,0.064885,0.0363578,0.554813,0.44706,0.449499,0.906653,0.104408,0.0322468,0.0955858,0.745178,0.0496096,0.906814,0.85134,0.933534,0.703198,0.634148,0.49342,0.117587,0.617917,0.789869,0.277868,0.853937,0.471283,0.956967,0.20594,0.668254,0.422209,0.616899,0.949174,0.623413,0.00455719,0.740192,0.684329,0.495375,0.675775,0.362517,0.757793,0.389638,0.0271034,0.923549,0.8912,0.992937,0.643426,0.356465,0.40006,0.0506798,0.521438,0.698004,0.528414,0.498731,0.536682,0.119424,0.436073,0.880255,0.484362,0.396122,0.640093,0.934035,0.353854,0.741132,0.791057,0.869123,0.193405,0.538808,0.582021,0.89289,0.624344,0.0763319,0.551019,0.766104,0.924503,0.607448,0.122557,0.362342,0.0157567,0.643971,0.268257,0.253088,0.255868,0.52279,0.338026,0.814216,0.795633,0.923267,0.700568,0.910788,0.842991,0.833185,0.633895,0.0943835,0.464267,0.297643,0.404512,0.67497,0.632709,0.956613,0.513715,0.764907,0.560523,0.518603,0.794283,0.421182,0.538123,|0.790377,0.400787,0.170163,0.440487,0.469802,0.0920942,0.143759,0.0603474,0.104928,0.180787,0.104706,0.45255,0.774083,0.559382,0.0594267,0.576755,0.847205,0.511159,0.834852,0.584086,0.118183,0.630688,0.811113,0.191848,0.938299,0.861547,0.13023,0.489195,0.454122,0.573173,0.347796,0.876878,0.864345,0.919653,0.350372,0.444417,0.0879596,0.244713,0.225708,0.0710795,0.587637,0.909388,0.302075,0.883588,0.588629,0.602256,0.829688,0.825289,0.936694,0.763982,0.76398,0.182258,0.289826,0.499861,0.100875,0.40812,0.88868,0.848381,0.24235,0.19762,0.630624,0.742514,0.0889048,0.849598,0.463262,0.0433419,0.864968,0.803144,0.169461,0.981112,0.9387,0.949812,0.450009,0.341122,0.430693,0.593354,0.346532,0.67487,0.424488,0.0929171,0.959549,0.678084,0.797549,0.715744,0.706765,0.705987,0.690562,0.670307,0.205292,0.32853,0.453947,0.204784,0.676715,0.548023,0.272741,0.949154,0.536209,0.586406,0.786326,0.638657,0.00646985,0.161221,0.581634,0.0397102,0.963528,0.904533,0.606969,0.0740278,0.326198,0.273263,0.977383,0.111763,0.555932,0.906202,0.34254,0.723403,0.541157,0.264201,0.774687,0.384868,0.949649,0.0723346,0.0783101,0.579329,0.103713,0.39678,0.226938,0.690345,0.587118,0.12217,0.760585,0.83216,0.517742,0.537552,0.450477,0.0838234,0.343747,0.0351481,0.382362,0.920753,0.207926,0.684811,0.00790262,0.183591,0.890161,0.450455,0.244317,0.623674,0.418924,0.108746,0.523108,0.259459,0.369461,0.317271,0.757563,0.946976,0.362214,0.796984,0.542807,0.919268,0.165184,0.874189,0.277367,0.969588,0.350999,0.617709,0.465259,0.43989,0.154787,0.330212,0.970156,0.776279,0.763743,0.891775,0.233801,0.66389,0.959677,0.371832,0.669538,0.221038,0.881369,0.835049,0.124008,0.958404,0.625273,0.052598,0.489386,0.0685709,0.137947,0.808043,0.043584,0.806468,0.188338,0.107776,0.916422,0.156422,0.89576,0.550829,0.463045,0.289826,0.418004,0.964676,0.26163,0.924119,0.269116,0.607542,0.780493,0.0294873,0.86555,0.893024,0.121869,0.595805,0.243964,0.802191,0.35589,0.962205,0.992205,0.879212,0.173509,0.501516,0.195845,0.462259,0.0170954,0.378641,0.51442,0.524986,0.167995,0.802357,0.952489,0.888321,0.431734,0.549527,0.121177,0.641285,0.797219,0.27371,0.192177,0.596501,0.730394,0.44066,0.876187,0.621973,0.405108,0.594715,0.809808,0.140708,0.821757,0.842986,0.996456,0.802626,0.76161,0.268127,0.918713,0.934654,0.484322,0.266515,0.921934,0.296083,0.575605,0.0498952,0.783462,0.483337,0.74421,0.657757,0.0533567,0.14378,0.672572,0.922414,0.501131,0.0392888,0.295379,0.583072,0.478215,0.852983,0.565236,0.248895,0.22942,0.170048,0.385147,0.199409,0.159248,0.549335,0.405853,0.707449,0.577355,0.467335,0.112499,0.615112,0.64922,0.537672,0.113344,0.250729,0.464674,0.178204,0.52091,0.762589,0.768441,0.937149,0.358256,0.513181,0.771757,0.0349031,0.134054,0.144578,0.191392,0.815336,0.526903,0.622818,0.27341,0.239815,0.453234,0.605346,0.796155,0.747994,0.192672,0.765466,0.370203,0.511239,0.073086,0.316707,0.35787,0.84293,0.0585526,0.265625,0.169875,0.25507,0.450756,0.141099,0.127142,0.492887,0.222985,0.395922,0.562606,0.000718176,0.223828,0.173191,0.879921,0.195745,0.715455,0.653686,0.511085,0.654601,0.992887,0.412843,0.461585,0.783719,0.85821,0.911519,0.344475,0.959031,0.973597,0.51205,0.540945,0.291903,0.74261,0.661811,0.255155,0.269711,0.597097,0.645446,0.440693,0.921824,0.7907,0.80285,0.112933,0.862812,0.339899,0.820139,0.213259,0.803724,0.316615,0.351164,0.0416966,0.801805,0.0323818,0.233349,0.607102,0.67979,0.725591,0.219412,0.903699,0.58194,0.701798,0.654449,0.623292,0.153296,0.213353,0.805497,0.10511,0.548233,0.691413,0.329462,0.821878,0.716881,0.341031,0.391863,0.913787,0.974134,0.0620358,0.62318,0.613855,0.0964368,0.592413,0.284599,0.077691,0.975672,0.6759,0.358786,0.635031,0.878477,0.309794,0.972242,0.692825,0.302031,0.930719,0.726875,0.736621,0.0689892,0.0717376,0.721801,0.0880672,0.460315,0.888561,0.662174,0.0903615,0.334014,0.547086,0.0144411,0.309791,0.375093,0.613591,0.893946,0.328479,0.428092,0.214957,0.656971,0.424639,0.0110711,0.916113,0.152892,0.537488,0.319826,0.301729,0.237156,0.201371,0.975763,0.602301,0.366283,0.081495,0.259507,0.908562,0.68476,0.00216037,0.292176,0.211522,0.792881,0.781392,0.0338084,0.763176,0.517965,0.702893,0.162833,0.513315,0.213323,0.106342,0.657162,0.819433,0.274304,0.472577,0.417909,0.242544,0.697191,0.210797,0.640358,0.516923,0.781745,0.116118,0.557022,0.720502,0.634409,0.523318,0.904138,0.399016,0.969951,0.920798,0.501612,0.517313,0.0147003,0.611392,0.847359,0.188281,0.476431,0.143709,0.155379,0.491305,0.692677,0.497737,0.937372,0.113681,0.886958,0.853361,0.174491,0.480878,0.870753,0.852072,0.894724,0.517796,0.792095,0.0796088,0.316152,0.757215,0.917142,0.852257,0.817772,0.0137738,0.360638,0.950684,0.520008,0.754254,0.467681,0.491141,0.67352,0.758286,0.866528,0.790063,0.218383,0.453151,0.208032,0.295387,0.569307,0.899021,0.635093,0.57204,0.533653,0.62519,0.248717,0.594405,0.19087,0.78479,0.136442,0.309157,0.267139,0.295898,0.576085,0.41415,0.494281,0.401461,0.0552303,0.204015,0.505368,0.00786388,0.791655,0.259884,0.0551929,0.444419,0.760336,0.693399,0.426454,0.469643,0.779975,0.490724,0.608147,0.952589,0.855145,0.940569,0.49252,0.429671,0.355989,0.786046,0.957603,0.177697,0.253707,0.0714679,0.0981951,0.681438,0.605,0.299111,0.354405,0.915279,0.368188,0.964465,0.537853,0.196884,0.424416,0.140081,0.47321,0.633269,0.179565,0.920661,0.777332,0.647854,0.792466,0.835308,0.253534,0.765363,0.358726,0.572312,0.451928,0.75622,0.195225,0.724058,0.885707,0.982708,0.811306,0.707528,0.100748,0.0788237,0.959126,0.619668,0.663464,0.0286427,0.282704,0.251726,0.144015,0.595375,0.607254,0.271276,0.651844,0.580885,0.914241,0.551637,0.246899,0.478011,0.356383,0.286333,0.249264,0.692985,0.054684,0.577939,0.516247,0.0221,0.142255,0.922855,0.904691,0.6651,0.294925,0.119226,0.594668,0.485998,0.436913,0.989104,0.961639,0.582253,0.819072,0.194169,0.766574,0.198944,0.860764,0.434374,0.0148059,0.0368338,0.232743,0.47509,0.198092,0.263258,0.826758,0.182054,0.945455,0.979277,0.772607,0.506831,0.467126,0.81701,0.966364,0.880148,0.137293,0.0425587,0.655078,0.13344,0.398339,0.789616,0.62783,0.683567,0.860761,0.64824,0.908331,0.76169,0.822584,0.762154,0.415757,0.806308,0.36218,0.274169,0.0662814,0.546672,0.573917,0.543898,0.0478014,0.961449,0.15506,0.771088,0.661039,0.0715823,0.0217636,0.475823,0.71249,0.554918,0.26483,0.681332,0.392994,0.898577,0.712049,0.980465,0.915515,0.264511,0.488167,0.346614,0.420508,0.109283,0.636912,0.26164,0.327054,0.478633,0.861318,0.759133,0.627806,0.334481,0.764085,0.371418,0.022446,0.68565,0.481591,0.665912,0.0902689,0.0154843,0.721266,0.211885,0.0520238,0.836566,0.17523,0.790003,0.40629,0.699921,0.905604,0.597297,0.887526,0.0965768,0.462709,0.452831,0.73187,0.444364,0.773156,0.82001,0.52256,0.399026,0.52912,0.202771,0.306756,0.502565,0.163247,0.161743,0.762053,0.833383,0.725599,0.119021,0.927285,0.0515438,0.166312,0.32017,0.804703,0.885005,0.970904,0.339587,0.0743591,0.918815,0.00596082,0.496432,0.57234,0.818879,0.801592,0.231935,0.362256,0.932427,0.721773,0.0606759,0.172262,0.214498,0.281683,0.0494328,0.488728,0.630138,0.0831041,0.0935844,0.423711,0.757243,0.394984,0.968334,0.665809,0.258714,0.490713,0.521086,0.808604,0.498285,0.800915,0.0650859,0.495795,0.945165,0.787924,0.308058,0.806299,0.402328,0.0555648,0.486512,0.589292,0.899585,0.354574,0.0556961,0.760416,0.207158,0.387494,0.91121,0.636545,0.586638,0.777113,0.861564,0.483644,0.0150577,0.0421407,0.0931975,0.995193,0.681009,0.109802,0.0383254,0.802508,0.33112,0.820093,0.416465,0.226585,0.348007,0.556175,0.322222,0.360383,0.715301,0.445702,0.714311,0.944945,0.27505,0.0276874,0.844256,0.73042,0.515489,0.591673,0.92341,0.203905,0.322315,0.126232,0.46988,0.668361,0.559885,0.863521,0.419638,0.369107,0.248811,0.526604,0.680039,0.229943,0.314205,0.156707,0.565532,0.993024,0.950012,0.197493,0.549221,0.811874,0.408665,0.22394,0.51493,0.393817,0.46056,0.234314,0.647481,0.0309771,0.212464,0.619395,0.0291295,0.37891,0.397957,0.979699,0.250361,0.656025,0.60828,0.199726,0.151165,0.856428,0.453271,0.0496904,0.668333,0.256306,0.488537,0.118931,0.0192964,0.0575209,0.616779,0.121928,0.787473,0.461779,0.406221,0.694615,0.171688,0.962883,0.870725,0.691438,0.821261,0.744666,0.540952,0.377763,0.0183085,0.273425,0.148798,0.857733,0.0313083,0.900415,0.901777,0.587927,0.507063,0.253391,0.572856,0.604447,0.350896,0.117992,0.431588,0.562552,0.469421,0.930568,0.949196,0.519818,0.294711,0.451726,0.106725,0.493298,0.737059,0.271881,0.586408,0.905312,0.907727,0.0122318,0.584755,0.267293,0.26253,0.558396,0.516131,0.608369,0.797738,0.177315,0.945941,0.381933,0.212373,0.185965,0.10758,0.0489815,0.452064,0.286239,0.706997,0.741594,0.073758,0.348228,0.141914,0.990633,0.581882,0.547461,0.866767,0.325552,0.151986,0.200468,0.0134013,0.939415,0.854989,0.758445,0.194314,0.111942,0.946159,0.256939,0.730689,0.56349,0.0641292,0.202705,0.206886,0.0147158,0.623919,0.147179,0.627259,0.895143,0.154099,0.310024,0.79507,0.841468,0.246791,0.704143,0.955519,0.821415,0.822751,0.584235,0.817309,0.806475,0.628438,0.90236,0.745032,0.953056,0.869582,0.362386,|0.17197,0.192452,0.946406,0.16002,0.729212,0.842691,0.205965,0.494079,0.118703,0.466221,0.270552,0.472274,0.828634,0.0876306,0.474256,0.71193,0.950678,0.966687,0.258127,0.986771,0.416655,0.744052,0.439648,0.924564,0.694551,0.158429,0.564195,0.140754,0.789221,0.913283,0.407186,0.847332,0.368941,0.217931,0.239287,0.998128,0.694776,0.133314,0.48436,0.242793,0.316868,0.989437,0.61216,0.908299,0.79573,0.387992,0.601695,0.591091,0.665905,0.289278,0.0821747,0.681539,0.115225,0.362956,0.501821,0.243661,0.0847976,0.24557,0.367663,0.634096,0.627838,0.845568,0.732546,0.227322,0.766351,0.523064,0.724341,0.747428,0.730608,0.0425934,0.288925,0.155232,0.409591,0.0791171,0.392758,0.0972406,0.851198,0.60893,0.419023,0.561164,0.984805,0.70424,0.335731,0.49985,0.0889079,0.387014,0.67118,0.530349,0.996157,0.499426,0.0415087,0.141412,0.435161,0.243054,0.156525,0.44824,0.871292,0.864324,0.600871,0.099021,0.163235,0.273688,0.470925,0.709173,0.661128,0.620043,0.855991,0.684658,0.088163,0.77381,0.0401965,0.654764,0.883724,0.597779,0.0170515,0.304919,0.0816644,0.460261,0.649896,0.0819672,0.235223,0.268244,0.503179,0.659579,0.326146,0.187563,0.306549,0.0492771,0.267598,0.0271696,0.432574,0.886042,0.704445,0.434636,0.203146,0.954741,0.132075,0.448449,0.700753,0.475637,0.182438,0.112479,0.730258,0.42875,0.186826,0.254306,0.750467,0.725399,0.297972,0.321638,0.843331,0.537654,0.411576,0.432797,0.51089,0.0255278,0.744127,0.811844,0.763182,0.675867,0.307472,0.445146,0.717215,0.919228,0.00666386,0.734384,0.163989,0.618272,0.539569,0.877051,0.481335,0.625499,0.0416057,0.119171,0.565661,0.983446,0.226183,0.776894,0.333656,0.301263,0.574304,0.341519,0.07101,0.191916,0.882927,0.4946,0.06133,0.248039,0.539884,0.26608,0.427882,0.375548,0.993127,0.0392316,0.654497,0.870135,0.498764,0.368499,0.604434,0.983241,0.492246,0.519754,0.780482,0.0907124,0.60879,0.505268,0.919931,0.934928,0.302433,0.909229,0.997637,0.0193074,0.931125,0.0225485,0.545563,0.257507,0.500869,0.226511,0.456409,0.321628,0.564306,0.174961,0.736829,0.623845,0.234533,0.418529,0.176118,0.290717,0.200416,0.0874171,0.922149,0.579279,0.135779,0.898388,0.680011,0.40237,0.0268216,0.431791,0.653057,0.694673,0.325908,0.967393,0.61297,0.0163592,0.386794,0.16221,0.45228,0.588913,0.635399,0.532446,0.00791377,0.719814,0.57651,0.238625,0.736704,0.138708,0.143935,0.967614,0.589759,0.704664,0.715656,0.394683,0.845161,0.624829,0.649568,0.0249442,0.901858,0.336138,0.949308,0.589489,0.18467,0.140697,0.483721,0.457896,0.10647,0.427947,0.47671,0.592517,0.584477,0.0784914,0.760414,0.0340328,0.791434,0.264156,0.819113,0.159934,0.774811,0.575963,0.734527,0.0408087,0.542768,0.130857,0.783418,0.752777,0.158529,0.270082,0.0568202,0.0858164,0.806012,0.374033,0.109349,0.775954,0.74258,0.295868,0.923662,0.356896,0.52769,0.361362,0.828129,0.377687,0.775066,0.876047,0.973599,0.491063,0.968993,0.396596,0.233242,0.781453,0.573275,0.598348,0.848017,0.0820039,0.454608,0.953359,0.675168,0.414979,0.811117,0.797818,0.0305782,0.789227,0.155414,0.423892,0.384811,0.487876,0.125096,0.248351,0.915882,0.451108,0.0207829,0.134207,0.23386,0.399304,0.0700895,0.697493,0.415636,0.243519,0.519269,0.290823,0.729227,0.338563,0.304221,0.904257,0.538248,0.837362,0.670601,0.35901,0.702629,0.580427,0.726487,0.375583,0.392764,0.307318,0.0965241,0.560609,0.737755,0.651455,0.683425,0.462833,0.844995,0.857087,0.293034,0.25743,0.055761,0.982849,0.373816,0.93614,0.0524453,0.992303,0.71653,0.703046,0.422689,0.124053,0.711816,0.389244,0.490558,0.655189,0.173465,0.385949,0.89797,0.767774,0.504721,0.822277,0.944746,0.375185,0.187907,0.12393,0.805824,0.162834,0.918098,0.227085,0.833068,0.0660972,0.491089,0.675474,0.906787,0.534037,0.341675,0.905026,0.325589,0.359439,0.662068,0.713692,0.770568,0.735302,0.204996,0.552609,0.373636,0.882289,0.373102,0.0623984,0.804083,0.0905827,0.299099,0.438954,0.439322,0.406246,0.516435,0.849757,0.772506,0.441163,0.96154,0.306101,0.7068,0.982834,0.0913789,0.585486,0.0907537,0.542198,0.269366,0.223145,0.677624,0.0311651,0.384816,0.126502,0.448489,0.863437,0.691991,0.934395,0.307138,0.242441,0.323012,0.241111,0.59588,0.495449,0.113597,0.528039,0.538312,0.691967,0.707181,0.709887,0.477854,0.271864,0.810424,0.104278,0.898849,0.701228,0.767277,0.319362,0.853565,0.823866,0.0456089,0.765409,0.182458,0.286133,0.960638,0.819545,0.0558715,0.0592495,0.627835,0.340827,0.159072,0.080406,0.731552,0.0231369,0.0620629,0.782935,0.0974729,0.334399,0.81421,0.023098,0.371194,0.460708,0.492765,0.841256,0.54716,0.688959,0.114246,0.981968,0.02908,0.811725,0.793872,0.307241,0.933511,0.522092,0.552881,0.428368,0.220922,0.269581,0.522128,0.784847,0.201674,0.236833,0.954958,0.846676,0.18498,0.217045,0.71389,0.492186,0.068272,0.850987,0.124883,0.298572,0.928154,0.724632,0.152393,0.503128,0.441383,0.0867138,0.458535,0.592702,0.788266,0.719442,0.860089,0.300794,0.522527,0.707032,0.0866869,0.698555,0.488954,0.759519,0.705307,0.949214,0.681173,0.887902,0.30018,0.668814,0.972184,0.823635,0.724879,0.258602,0.957978,0.308562,0.0502526,0.546179,0.329246,0.0407856,0.149935,0.70901,0.255403,0.889236,0.0951731,0.680224,0.421676,0.420409,0.813332,0.744752,0.299744,0.632996,0.73392,0.775599,0.238009,0.766852,0.711875,0.848007,0.109613,0.131091,0.410799,0.0753506,0.828439,0.11309,0.550001,0.769162,0.727173,0.563166,0.0035243,0.286763,0.686367,0.293083,0.162439,0.563293,0.995421,0.502532,0.286426,0.675604,0.953279,0.0641976,0.028348,0.10968,0.414359,0.137329,0.356268,0.607615,0.327822,0.29044,0.181699,0.984035,0.699867,0.528674,0.222872,0.431667,0.344845,0.192983,0.796416,0.952672,0.50106,0.500306,0.359265,0.559022,0.0420579,0.0980262,0.846142,0.547827,0.0531279,0.085611,0.0393052,0.251731,0.3075,0.0317534,0.453524,0.635289,0.755208,0.28358,0.953651,0.635203,0.45698,0.376329,0.796648,0.333317,0.159056,0.425797,0.233093,0.627697,0.344229,0.307948,0.35803,0.171794,0.371171,0.805578,0.552599,0.292143,0.260837,0.854248,0.764666,0.0887817,0.602531,0.412233,0.408898,0.482327,0.702843,0.397732,0.10893,0.775658,0.428006,0.690008,0.986574,0.042447,0.23593,0.428801,0.325671,0.0152317,0.985822,0.588229,0.253783,0.255627,0.993914,0.639566,0.0788204,0.964315,0.00457686,0.0234248,0.53336,0.847285,0.658305,0.109898,0.958038,0.504731,0.992939,0.638508,0.05136,0.365864,0.094503,0.417443,0.826651,0.610506,0.30647,0.642003,0.245179,0.1115,0.419498,0.812318,0.252573,0.0315083,0.597435,0.00175291,0.406922,0.207502,0.173224,0.577283,0.947873,0.234599,0.0523773,0.71834,0.648959,0.546012,0.316173,0.555653,0.994338,0.0283177,0.333266,0.829755,0.9539,0.491089,0.441462,0.222626,0.842303,0.427146,0.686387,0.960621,0.855259,0.696523,0.456159,0.186364,0.391963,0.888996,0.950746,0.932821,0.16545,0.690903,0.870984,0.572015,0.631375,0.221907,0.141602,0.234608,0.877939,0.456639,0.687934,0.392057,0.805417,0.0105355,0.0988344,0.00689518,0.301782,0.757708,0.276115,0.303608,0.634088,0.29633,0.997386,0.0225344,0.980191,0.597234,0.0877501,0.307811,0.605648,0.967778,0.11858,0.988828,0.888184,0.912629,0.494735,0.648777,0.631444,0.547187,0.903275,0.490706,0.389012,0.53338,0.818147,0.509857,0.316303,0.980772,0.549884,0.0392982,0.54332,0.458636,0.982967,0.336915,0.965212,0.258156,0.776472,0.474951,0.543665,0.891878,0.173005,0.8278,0.0277976,0.474177,0.613721,0.219875,0.13453,0.238394,0.907063,0.876857,0.484142,0.315753,0.949301,0.673971,0.607349,0.804231,0.182961,0.459832,0.735754,0.244407,0.718438,0.595911,0.705998,0.261772,0.20547,0.764072,0.487045,0.749898,0.253842,0.987385,0.130684,0.419953,0.519156,0.657133,0.57399,0.275415,0.309047,0.179861,0.654615,0.611524,0.087954,0.933708,0.911995,0.423053,0.274384,0.105692,0.395986,0.441778,0.95501,0.768387,0.817317,0.254457,0.678123,0.358665,0.685424,0.252851,0.308437,0.241574,0.553757,0.384871,0.848488,0.335368,0.844997,0.471492,0.299315,0.0390713,0.123582,0.318925,0.755313,0.871065,0.772336,0.952451,0.805642,0.404188,0.919801,0.27583,0.413169,0.539568,0.871051,0.0456353,0.555294,0.00974423,0.702971,0.615358,0.221303,0.826534,0.409869,0.704617,0.0792755,0.19244,0.697267,0.873324,0.831924,0.293508,0.670957,0.945927,0.633088,0.431282,0.456511,0.336424,0.97259,0.798281,0.486895,0.334834,0.490111,0.883564,0.593955,0.710717,0.562965,0.795554,0.208216,0.394902,0.576654,0.284265,0.209838,0.027068,0.00586015,0.113788,0.760361,0.049842,0.799702,0.936184,0.507703,0.127437,0.729749,0.912005,0.910535,0.401329,0.0423999,0.157058,0.0863439,0.465333,0.592735,0.407344,0.335295,0.961591,0.916925,0.247165,0.0591208,0.244074,0.954827,0.19176,0.775354,0.374487,0.695986,0.602103,0.0583038,0.465045,0.847268,0.0581411,0.0772947,0.616028,0.372119,0.702486,0.763051,0.443265,0.37663,0.728375,0.975494,0.212711,0.12633,0.576679,0.189949,0.834287,0.525915,0.775321,0.519344,0.882728,0.780607,0.632139,0.622134,0.897755,0.307264,0.530313,0.465102,0.583888,0.0297049,0.24821,0.462595,0.302254,0.235238,0.900601,0.0718664,0.364286,0.701635,0.0262699,0.856827,0.0481354,0.769822,0.220113,0.569245,0.291731,0.351884,0.206329,0.326296,0.608434,0.819982,0.774001,0.0691711,0.825675,0.708586,0.625916,0.568913,0.00559425,0.658514,0.790353,|0.470037,0.355921,0.497258,0.68626,0.593196,0.0370033,0.0901715,0.391949,0.170408,0.528842,0.911314,0.423251,0.288134,0.260845,0.342704,0.177128,0.2795,0.738497,0.445181,0.292378,0.730237,0.638693,0.614382,0.634766,0.0376955,0.212412,0.142615,0.318869,0.697486,0.36803,0.427873,0.696875,0.428292,0.919128,0.219376,0.666535,0.881243,0.423228,0.555571,0.734035,0.689546,0.438456,0.104702,0.769598,0.464081,0.0111822,0.24813,0.425255,0.0247404,0.0953553,0.236439,0.883963,0.352262,0.907288,0.216808,0.48911,0.0242531,0.848273,0.529887,0.448988,0.874343,0.417765,0.764031,0.684615,0.802289,0.749171,0.861053,0.234464,0.131859,0.832435,0.300493,0.256591,0.4393,0.619888,0.657365,0.854389,0.348402,0.926959,0.215579,0.920346,0.637186,0.915516,0.604966,0.360066,0.298732,0.210737,0.172908,0.768142,0.739993,0.124265,0.463121,0.335863,0.131783,0.399775,0.376162,0.98671,0.934847,0.150297,0.16003,0.661984,0.538663,0.714653,0.915377,0.676891,0.607305,0.12034,0.28829,0.774815,0.759791,0.760184,0.100262,0.316184,0.757592,0.415269,0.264848,0.740474,0.890433,0.0244753,0.473986,0.548321,0.518478,0.54033,0.456109,0.00238293,0.925493,0.83189,0.429531,0.240266,0.21836,0.723636,0.755179,0.396711,0.259009,0.196319,0.833797,0.588968,0.651326,0.708748,0.904872,0.143843,0.416949,0.916056,0.860712,0.141039,0.532684,0.139155,0.564816,0.115614,0.664707,0.0715976,0.990048,0.270126,0.712155,0.101773,0.727734,0.619483,0.315174,0.736108,0.580326,0.224055,0.710369,0.33031,0.264915,0.617291,0.501955,0.97749,0.352344,0.030647,0.691612,0.308323,0.029546,0.812594,0.571236,0.111954,0.687888,0.801201,0.72917,0.381475,0.978786,0.667248,0.976281,0.493634,0.232459,0.672638,0.502264,0.540062,0.450825,0.533464,0.682796,0.746368,0.76761,0.665852,0.62979,0.994925,0.130538,0.750416,0.37451,0.456455,0.935213,0.00602239,0.305946,0.71918,0.252468,0.149304,0.184245,0.582873,0.337672,0.63618,0.767953,0.994986,0.100621,0.594349,0.201617,0.775793,0.610574,0.768191,0.352702,0.174984,0.47829,0.240281,0.991917,0.972338,0.894355,0.446236,0.871872,0.119945,0.120403,0.940184,0.742492,0.119547,0.885764,0.3876,0.182193,0.369733,0.064373,0.505988,0.417613,0.699106,0.48407,0.222021,0.208874,0.615014,0.604603,0.9981,0.348799,0.551624,0.142061,0.186843,0.191582,0.191447,0.198141,0.596612,0.185583,0.00943911,0.342743,0.821187,0.674804,0.25058,5.78165e-05,0.647397,0.631391,0.74606,0.34794,0.0106406,0.639715,0.29343,0.420577,0.251534,0.915738,0.683291,0.643756,0.12489,0.289601,0.0765397,0.281591,0.425412,0.485855,0.581174,0.0800351,0.805196,0.519686,0.107783,0.850552,0.489617,0.474224,0.858626,0.741712,0.788473,0.692787,0.342472,0.59607,0.312649,0.119196,0.834751,0.83235,0.302348,0.813875,0.0837189,0.516421,0.528646,0.287705,0.433562,0.175565,0.153091,0.952195,0.81466,0.848048,0.366884,0.831684,0.615515,0.510673,0.573444,0.835328,0.9818,0.337421,0.580244,0.255942,0.211002,0.552549,0.634809,0.366543,0.697057,0.123404,0.108674,0.273291,0.750375,0.482114,0.449747,0.881329,0.295782,0.859535,0.598244,0.128248,0.46136,0.264582,0.921435,0.984616,0.793965,0.722431,0.505441,0.439405,0.283496,0.748927,0.28915,0.276588,0.0792622,0.111653,0.692625,0.907437,0.774514,0.495338,0.48544,0.914065,0.0702012,0.257082,0.0229558,0.918827,0.88454,0.297403,0.991436,0.240471,0.32844,0.479135,0.886749,0.278578,0.025769,0.645409,0.543615,0.702192,0.421146,0.929299,0.219449,0.449313,0.0942399,0.198164,0.954352,0.0536882,0.0328085,0.843482,0.697261,0.363877,0.929292,0.338867,0.526109,0.355373,0.0574372,0.035564,0.0920439,0.343248,0.169103,0.508956,0.926967,0.69503,0.502204,0.931058,0.337614,0.189686,0.849584,0.972393,0.411994,0.0561092,0.88834,0.553992,0.235152,0.125263,0.98922,0.453699,0.280541,0.171502,0.18871,0.824848,0.458951,0.816269,0.977095,0.0348951,0.260868,0.29551,0.691077,0.391911,0.639333,0.204533,0.622215,0.010213,0.768553,0.650925,0.254966,0.247598,0.558593,0.102447,0.776319,0.901339,0.50493,0.123578,0.956944,0.336113,0.177788,0.903605,0.541641,0.822007,0.19497,0.825042,0.224217,0.600756,0.292851,0.377479,0.532466,0.555855,0.817921,0.965532,0.149977,0.0181069,0.161691,0.17093,0.963703,0.534368,0.629632,0.973759,0.0145945,0.896762,0.631268,0.480718,0.305951,0.480695,0.409094,0.73114,0.673954,0.404574,0.197645,0.0356398,0.218062,0.99479,0.88753,0.245995,0.649635,0.019848,0.135579,0.814097,0.107888,0.727187,0.686721,0.333886,0.80126,0.383467,0.265115,0.529516,0.0714747,0.139533,0.704164,0.529853,0.711611,0.772195,0.905235,0.0337774,0.377268,0.290842,0.709158,0.946095,0.739529,0.919464,0.289217,0.941116,0.0929092,0.107084,0.11827,0.518884,0.789298,0.329885,0.871161,0.875354,0.27042,0.106509,0.0559113,0.636925,0.325905,0.455113,0.331064,0.514576,0.831803,0.467274,0.871452,0.350159,0.632469,0.84367,0.864269,0.38773,0.800405,0.468526,0.605839,0.127417,0.246336,0.219833,0.712389,0.628513,0.303322,0.98695,0.946295,0.566155,0.739672,0.461701,0.455499,0.0240657,0.873291,0.871937,0.598867,0.190898,0.947054,0.458365,0.494997,0.841116,0.108729,0.761511,0.370649,0.586464,0.167398,0.358559,0.96076,0.347759,0.0576073,0.570877,0.282377,0.439031,0.278313,0.150276,0.97544,0.481378,0.0629694,0.196473,0.472136,0.363006,0.620021,0.129455,0.522984,0.32521,0.975263,0.7939,0.272844,0.542381,0.637793,0.720706,0.736564,0.0208393,0.856647,0.459433,0.209529,0.415721,0.89667,0.193549,0.181253,0.445394,0.221917,0.505276,0.384,0.0156663,0.0926957,0.26447,0.541825,0.648211,0.126852,0.395622,0.249115,0.873109,0.00353801,0.099274,0.502814,0.356634,0.77067,0.690878,0.950894,0.184845,0.900313,0.0972149,0.98847,0.111607,0.635842,0.274094,0.12147,0.382306,0.76328,0.14154,0.174465,0.699297,0.328429,0.318666,0.605775,0.289318,0.769129,0.134918,0.459707,0.641464,0.490517,0.892106,0.294658,0.578979,0.335748,0.427661,0.496167,0.331408,0.659169,0.365587,0.384326,0.76618,0.566204,0.473134,0.127291,0.962869,0.337086,0.264599,0.924279,0.932211,0.270521,0.48102,0.185787,0.617282,0.763017,0.977641,0.194318,0.779518,0.787203,0.685273,0.27701,0.251061,0.374504,0.48185,0.348738,0.901236,0.500974,0.895853,0.486765,0.180664,0.842935,0.193745,0.240699,0.689302,0.963498,0.315696,0.606923,0.386441,0.108948,0.0351034,0.406695,0.410253,0.69888,0.562565,0.341429,0.421912,0.86653,0.763996,0.613476,0.169804,0.78505,0.401771,0.621263,0.219558,0.507015,0.182774,0.855998,0.781224,0.778435,0.60208,0.367846,0.336555,0.376905,0.123166,0.22758,0.300172,0.305689,0.698688,0.71891,0.0335619,0.723828,0.643247,0.988682,0.670626,0.913095,0.565963,0.935579,0.729811,0.419397,0.967072,0.955308,0.0420848,0.0424897,0.180434,0.347612,0.414463,0.137118,0.861097,0.186174,0.556749,0.679606,0.733172,0.721089,0.00572562,0.121316,0.249014,0.604335,0.529134,0.0199808,0.162371,0.651418,0.564652,0.58992,0.887239,0.306234,0.542541,0.37832,0.793681,0.0441802,0.841211,0.876593,0.131341,0.865559,0.893105,0.65025,0.197107,0.848363,0.285809,0.192717,0.107867,0.188146,0.274504,0.565255,0.683876,0.560656,0.737279,0.0627719,0.0663541,0.532024,0.628883,0.465882,0.442222,0.330727,0.386415,0.691772,0.788603,0.30902,0.949653,0.401234,0.525401,0.63007,0.33837,0.0831542,0.990279,0.652308,0.640179,0.397769,0.342857,0.646344,0.794533,0.552177,0.331268,0.0436895,0.27372,0.707275,0.393951,0.797986,0.530428,0.674303,0.0210326,0.674894,0.239518,0.426784,0.722463,0.839983,0.912843,0.869073,0.76182,0.694354,0.535664,0.379864,0.330111,0.762555,0.372146,0.343432,0.589659,0.601524,0.335648,0.877511,0.0132887,0.0607027,0.392738,0.0975379,0.950107,0.0397366,0.0626917,0.718089,0.166979,0.92745,0.880888,0.333455,0.974873,0.135681,0.39406,0.118997,0.0804094,0.0823777,0.458785,0.240184,0.0664571,0.810987,0.984341,0.597795,0.76066,0.383783,0.11875,0.236738,0.474806,0.901029,0.579211,0.199525,0.876616,0.429201,0.10194,0.471197,0.116988,0.77248,0.880925,0.184226,0.769544,0.228716,0.421597,0.782811,0.734988,0.522024,0.607377,0.974424,0.912533,0.639867,0.196598,0.518108,0.254108,0.389575,0.660294,0.567587,0.116306,0.506527,0.961751,0.939185,0.785928,0.643912,0.411181,0.266552,0.394005,0.965858,0.614584,0.187802,0.121557,0.889578,0.161792,0.602297,0.785705,0.714258,0.412623,0.259838,0.867298,0.665457,0.451172,0.58693,0.138904,0.525171,0.220347,0.871816,0.486424,0.538817,0.0250999,0.483281,0.28941,0.706619,0.921565,0.861732,0.786238,0.676904,0.961254,0.307089,0.149453,0.0981715,0.764669,0.941235,0.269668,0.12826,0.27584,0.762545,0.764037,0.0335503,0.577236,0.666624,0.105248,0.663038,0.933005,0.687687,0.375898,0.950974,0.740888,0.629795,0.248135,0.639919,0.858918,0.755846,0.489372,0.822316,0.576108,0.652849,0.0358273,0.780578,0.0448654,0.379659,0.0932037,0.0677502,0.786155,0.237195,0.937868,0.724224,0.99091,0.658768,0.856194,0.0995188,0.832597,0.866951,0.975067,0.473346,0.839973,0.512995,0.583904,0.596802,0.00144404,0.0604056,0.0929272,0.4405,0.936917,0.0927143,0.0764705,0.0247909,0.83956,0.539699,0.105581,0.432576,0.787204,0.319826,0.127127,0.114806,0.357798,0.637132,0.984758,0.5974,0.41403,0.174994,0.847035,0.569644,0.173009,0.973198,0.444298,0.99903,0.870511,0.756336,0.591266,0.444504,0.814721,0.413573,0.419012,0.0150006,|0.874795,0.0199208,0.300127,0.205819,0.904594,0.533383,0.965845,0.900873,0.929845,0.520534,0.226448,0.567988,0.174234,0.0582762,0.0639496,0.505313,0.5123,0.275366,0.382322,0.363833,0.378836,0.635817,0.869493,0.0997909,0.502363,0.680326,0.585462,0.233329,0.415596,0.693148,0.0523913,0.0256051,0.190435,0.472734,0.380279,0.733905,0.987003,0.35807,0.0207646,0.708484,0.827699,0.266029,0.548602,0.654669,0.0335308,0.942195,0.868706,0.855645,0.948146,0.937682,0.903697,0.572192,0.806901,0.935442,0.515369,0.0423669,0.949053,0.068566,0.874833,0.768986,0.338059,0.480976,0.267812,0.629585,0.589666,0.442701,0.469335,0.72467,0.331622,0.799853,0.757146,0.993417,0.179803,0.631818,0.198401,0.00213385,0.521598,0.0379253,0.630261,0.412927,0.579658,0.545735,0.507942,0.986676,0.812447,0.83947,0.94953,0.784646,0.0692108,0.394127,0.983811,0.685359,0.424403,0.785236,0.285402,0.583223,0.84937,0.549973,0.577964,0.192364,0.279406,0.762974,0.916686,0.499697,0.99719,0.309977,0.143182,0.379224,0.313581,0.436282,0.2297,0.901127,0.949802,0.906832,0.275906,0.170256,0.687502,0.854862,0.219521,0.457413,0.673876,0.857656,0.270602,0.957868,0.906057,0.317541,0.515503,0.0965682,0.751288,0.777008,0.800853,0.823366,0.0693758,0.0759326,0.264774,0.239324,0.621227,0.429976,0.0102373,0.440946,0.018061,0.172812,0.0780864,0.0396336,0.0104807,0.41091,0.0335652,0.918685,0.943479,0.917471,0.750205,0.524797,0.916794,0.266767,0.907742,0.146141,0.635467,0.34723,0.870424,0.749162,0.591955,0.750441,0.506949,0.0476516,0.673791,0.184692,0.628792,0.297445,0.068393,0.314855,0.528338,0.263611,0.142174,0.390901,0.354644,0.0819498,0.803045,0.914094,0.415266,0.00365782,0.675258,0.855608,0.384085,0.538653,0.125868,0.106288,0.503857,0.0559715,0.487466,0.975799,0.432923,0.592257,0.17364,0.860365,0.881651,0.266012,0.657678,0.253229,0.780649,0.549531,0.272338,0.10105,0.760617,0.554222,0.518188,0.622548,0.229778,0.328605,0.283827,0.358914,0.26053,0.676651,0.169673,0.772725,0.488371,0.526333,0.773227,0.829291,0.0076912,0.334052,0.0556397,0.781638,0.784342,0.661228,0.25238,0.599808,0.867835,0.887851,0.696033,0.95725,0.39953,0.293739,0.518223,0.331108,0.221343,0.0560179,0.541641,0.67785,0.237344,0.215712,0.539346,0.466038,0.50454,0.488316,0.667967,0.459435,0.45104,0.385055,0.75133,0.0352649,0.94515,0.997193,0.470811,0.439741,0.190737,0.315032,0.670578,0.177542,0.293987,0.589489,0.661818,0.694689,0.330848,0.44534,0.369297,0.296839,0.137124,0.452916,0.724103,0.905988,0.278598,0.911672,0.752646,0.481025,0.0390618,0.310965,0.170657,0.104274,0.0346755,0.86953,0.121488,0.486487,0.481547,0.362501,0.729107,0.807401,0.4179,0.682158,0.109872,0.662332,0.471095,0.0236515,0.954134,0.149328,0.0761469,0.172715,0.0671206,0.43127,0.339959,0.862788,0.614398,0.815318,0.804669,0.68829,0.068212,0.719966,0.365531,0.893716,0.324452,0.435554,0.897296,0.501279,0.263284,0.566867,0.969979,0.895429,0.62615,0.742596,0.443279,0.852853,0.115784,0.776432,0.892655,0.0691748,0.608325,0.948014,0.282242,0.568061,0.982389,0.514681,0.438448,0.688035,0.868011,0.332281,0.139297,0.793814,0.102988,0.534899,0.681206,0.0274577,0.0402736,0.310183,0.597104,0.0585771,0.169898,0.952422,0.669179,0.60267,0.146045,0.929834,0.0177707,0.0464326,0.752315,0.0509297,0.889178,0.848459,0.62918,0.194587,0.665933,0.110367,0.609503,0.10631,0.226087,0.254063,0.865134,0.209224,0.972347,0.346861,0.0403671,0.642583,0.376597,0.198011,0.554269,0.18984,0.79907,0.432001,0.923126,0.0572122,0.908662,0.617747,0.159151,0.0539916,0.943678,0.446926,0.22929,0.846811,0.49036,0.700998,0.0280511,0.0923163,0.600721,0.727683,0.0405911,0.110521,0.452876,0.125477,0.00155431,0.0629088,0.841896,0.361036,0.885085,0.784189,0.93353,0.11305,0.711158,0.883465,0.0784998,0.416484,0.319757,0.663731,0.455739,0.179556,0.0508173,0.0264444,0.589459,0.614981,0.633456,0.130047,0.0413204,0.778058,0.489682,0.0396953,0.265722,0.533392,0.889062,0.539168,0.218423,0.438291,0.831854,0.345038,0.731063,0.390196,0.406919,0.525316,0.193199,0.628409,0.439005,0.0492271,0.11443,0.958475,0.831853,0.472773,0.0324931,0.493796,0.0303556,0.401282,0.933916,0.891483,0.414063,0.373425,0.697246,0.278592,0.618262,0.776951,0.938291,0.109432,0.784669,0.779752,0.312568,0.673823,0.633264,0.6537,0.473266,0.0735595,0.579311,0.861869,0.745579,0.613226,0.759309,0.368075,0.452384,0.867628,0.495668,0.109424,0.758137,0.426711,0.508757,0.395973,0.787486,0.756596,0.289332,0.364908,0.528323,0.463591,0.670928,0.296247,0.975526,0.834823,0.689921,0.819317,0.613485,0.980341,0.663292,0.00645632,0.986626,0.570081,0.862883,0.183688,0.799054,0.414605,0.103632,0.00262153,0.447401,0.159614,0.473742,0.290493,0.449125,0.693315,0.258018,0.565474,0.302427,0.344548,0.87279,0.833179,0.300865,0.097333,0.244084,0.144155,0.749975,0.53482,0.263824,0.766839,0.0599793,0.596084,0.684533,0.192533,0.102698,0.0996152,0.384423,0.184222,0.38928,0.822636,0.499461,0.694702,0.779238,0.300705,0.751545,0.0938293,0.272023,0.877609,0.102816,0.656377,0.345591,0.188754,0.365822,0.104253,0.185252,0.380242,0.668088,0.19734,0.121717,0.773746,0.691868,0.594714,0.481908,0.851268,0.167518,0.189184,0.409254,0.452893,0.101704,0.00250006,0.517923,0.824845,0.401471,0.158934,0.425108,0.423635,0.903056,0.496625,0.090549,0.790742,0.243319,0.393887,0.78125,0.465712,0.35646,0.237718,0.159917,0.832877,0.230273,0.336423,0.53987,0.520251,0.0592673,0.640195,0.960498,0.790826,0.543651,0.400884,0.530417,0.150098,0.35817,0.400024,0.35204,0.871346,0.495634,0.681312,0.161343,0.32489,0.843794,0.430544,0.948404,0.982936,0.647399,0.6796,0.466588,0.750741,0.214653,0.683944,0.968729,0.512464,0.311822,0.626589,0.241771,0.419977,0.0515726,0.788541,0.531686,0.682889,0.135893,0.231722,0.140893,0.0191543,0.292136,0.116612,0.859832,0.00594151,0.436897,0.207731,0.909631,0.795942,0.660064,0.688652,0.143124,0.302926,0.848708,0.356409,0.498671,0.674162,0.286492,0.0750215,0.392478,0.24495,0.10965,0.895126,0.424095,0.19731,0.500448,0.861621,0.573825,0.408405,0.842995,0.344639,0.817745,0.904432,0.962931,0.845525,0.889041,0.435239,0.375255,0.802963,0.965565,0.921161,0.0970784,0.682537,0.146434,0.879979,0.0430894,0.176573,0.468554,0.847876,0.0794888,0.515304,0.93317,0.0777844,0.282527,0.366104,0.659886,0.139756,0.0523461,0.196732,0.997984,0.0839072,0.540552,0.64765,0.43962,0.0335038,0.542303,0.71795,0.920488,0.816473,0.163279,0.372698,0.875987,0.107528,0.77941,0.733029,0.715332,0.0542104,0.151378,0.130285,0.939037,0.742236,0.660263,0.55057,0.180201,0.491527,0.61794,0.877433,0.162359,0.231952,0.193198,0.742154,0.963669,0.9949,0.789124,0.450399,0.80806,0.698147,0.596034,0.755308,0.409721,0.0739848,0.879328,0.341015,0.29038,0.369631,0.426875,0.807802,0.0824032,0.125759,0.698533,0.344988,0.757061,0.667813,0.167765,0.646761,0.776687,0.265906,0.168175,0.309441,0.0594898,0.267391,0.153489,0.334049,0.724368,0.0367489,0.140279,0.550665,0.335982,0.324372,0.723272,0.560798,0.368908,0.270716,0.546862,0.493835,0.947296,0.821984,0.449658,0.233467,0.0573586,0.765448,0.644047,0.00863224,0.288984,0.157768,0.499432,0.0009197,0.645572,0.0879253,0.913215,0.695718,0.656051,0.115483,0.0891129,0.167578,0.375507,0.15267,0.568086,0.297357,0.820812,0.427297,0.600192,0.66052,0.693812,0.887246,0.395011,0.630759,0.879763,0.236224,0.89387,0.648641,0.371249,0.630905,0.45321,0.866119,0.523877,0.00959837,0.818227,0.15386,0.832482,0.940854,0.431644,0.210109,0.945216,0.511713,0.846967,0.824268,0.284203,0.491121,0.360602,0.378577,0.4754,0.716918,0.570568,0.239632,0.818289,0.378544,0.0234547,0.51099,0.865158,0.949806,0.48015,0.84193,0.714224,0.692387,0.904161,0.989289,0.237366,0.0421864,0.288092,0.396064,0.234352,0.0142682,0.973381,0.575328,0.505,0.0681998,0.885739,0.355216,0.982512,0.398019,0.748449,0.768904,0.649729,0.607048,0.976459,0.0882476,0.0417061,0.383799,0.234895,0.194854,0.88354,0.520192,0.883017,0.592397,0.159693,0.0763792,0.0591728,0.600457,0.9693,0.904448,0.701559,0.565563,0.75084,0.828337,0.521129,0.138433,0.519631,0.754807,0.879911,0.926587,0.636565,0.532836,0.122871,0.807609,0.901585,0.300817,0.756594,0.39557,0.0555947,0.000909209,0.691885,0.228688,0.0346834,0.942969,0.204587,0.653821,0.945902,0.164444,0.261345,0.662588,0.497341,0.241783,0.546129,0.479275,0.377073,0.274372,0.162926,0.292876,0.196521,0.948781,0.726279,0.868462,0.227037,0.194875,0.0562295,0.0406042,0.284633,0.0257024,0.270391,0.886664,0.188137,0.455372,0.53201,0.450433,0.955951,0.759621,0.145702,0.660856,0.334774,0.526737,0.957953,0.815249,0.0367239,0.0698004,0.728218,0.00800455,0.926592,0.0982742,0.201711,0.461033,0.882263,0.957091,0.495194,0.726012,0.530604,0.791705,0.365132,0.205976,0.754684,0.803924,0.580476,0.813756,0.560605,0.305784,0.120837,0.400628,0.447151,0.68036,0.756135,0.669633,0.000388801,0.539396,0.910292,0.0239823,0.576079,0.910882,0.0979252,0.577587,0.123768,0.969657,0.46679,0.0456337,0.735402,0.708374,0.319226,0.117863,0.355681,0.85898,0.356158,0.239969,0.561734,0.332496,0.0743594,0.549067,0.834342,0.45286,0.769368,0.927724,0.37492,0.220129,0.338731,0.88825,0.2674,0.307253,0.315083,0.0768303,0.171017,0.104779,0.181029,0.867869,0.23542,0.0926701,0.17924,0.0237479,0.307041,0.167247,|0.891487,0.0474386,0.670414,0.0436491,0.492619,0.536048,0.907162,0.0704837,0.0839958,0.84027,0.731719,0.667533,0.910347,0.277572,0.687487,0.437104,0.187025,0.459944,0.801135,0.703677,0.296886,0.917565,0.970138,0.495876,0.158826,0.172499,0.166984,0.29648,0.923918,0.614055,0.546435,0.733088,0.771974,0.491364,0.29041,0.79364,0.904673,0.760542,0.254288,0.656103,0.187603,0.507879,0.0977829,0.568185,0.0377308,0.345139,0.600389,0.153034,0.418378,0.163643,0.658336,0.865123,0.973705,0.405617,0.113167,0.177076,0.0433432,0.45668,0.0496404,0.270743,0.372847,0.181517,0.366981,0.783332,0.717128,0.246694,0.874333,0.662902,0.624456,0.03864,0.423975,0.589976,0.796403,0.269212,0.428083,0.990263,0.175226,0.363732,0.145455,0.721567,0.278129,0.799631,0.631667,0.997969,0.00710714,0.936846,0.535421,0.980553,0.942185,0.41744,0.564719,0.436579,0.0623335,0.882483,0.663043,0.716034,0.791871,0.522214,0.295256,0.705766,0.636587,0.159408,0.555632,0.0191327,0.424591,0.765684,0.484277,0.392087,0.471609,0.352782,0.411181,0.680005,0.332783,0.32742,0.0656334,0.898505,0.787949,0.162743,0.866036,0.816735,0.403332,0.194836,0.453676,0.0321845,0.135978,0.339674,0.763207,0.722391,0.41969,0.995802,0.140346,0.384837,0.115676,0.156552,0.230496,0.765554,0.697764,0.496624,0.305388,0.862556,0.231651,0.94658,0.304386,0.0361553,0.497975,0.279488,0.68078,0.844224,0.94742,0.821251,0.780691,0.675779,0.029366,0.621493,0.983621,0.949952,0.0253175,0.637282,0.93209,0.705873,0.267123,0.92194,0.665477,0.342027,0.102308,0.223931,0.00660431,0.948522,0.795656,0.473316,0.955137,0.184498,0.829247,0.881796,0.303864,0.104502,0.373337,0.649185,0.55435,0.896024,0.244501,0.0164671,0.29505,0.361759,0.319496,0.677723,0.166478,0.870365,0.493601,0.338381,0.489704,0.250662,0.965241,0.866737,0.350398,0.231874,0.463313,0.263588,0.751038,0.915326,0.539113,0.497378,0.84458,0.387998,0.991928,0.89121,0.496971,0.265457,0.0866135,0.0824996,0.208528,0.532714,0.375461,0.235224,0.735756,0.573585,0.989161,0.776518,0.923952,0.873872,0.767484,0.740419,0.971659,0.0730647,0.431569,0.161314,0.762329,0.558699,0.416495,0.539912,0.84534,0.377842,0.863462,0.7268,0.441287,0.511296,0.154591,0.570969,0.643299,0.290065,0.0952124,0.425576,0.719051,0.591001,0.772146,0.825124,0.411243,0.903268,0.901919,0.371824,0.360609,0.0639854,0.476818,0.202612,0.450806,0.529248,0.80011,0.0991591,0.886562,0.353042,0.883456,0.365969,0.105412,0.61679,0.843139,0.672208,0.430357,0.710255,0.799083,0.914505,0.134012,0.979411,0.388443,0.0742567,0.489518,0.650267,0.0614584,0.865636,0.534294,0.998872,0.906897,0.705753,0.493918,0.239296,0.573522,0.61178,0.340528,0.802708,0.0412897,0.0193127,0.209781,0.734435,0.0400194,0.231318,0.578738,0.0611534,0.951153,0.747521,0.999795,0.835332,0.357049,0.615888,0.869115,0.479466,0.566351,0.197833,0.314994,0.412696,0.38546,0.93673,0.497579,0.807581,0.477662,0.722908,0.227978,0.678309,0.488931,0.0452703,0.531987,0.371753,0.25651,0.330674,0.290318,0.771221,0.539585,0.772477,0.694743,0.0353022,0.120499,0.963651,0.770259,0.621556,0.11433,0.675114,0.477181,0.923246,0.30523,0.84156,0.46831,0.395166,0.416262,0.355367,0.918137,0.147553,0.878279,0.934248,0.873589,0.778666,0.567156,0.381527,0.0287009,0.460936,0.247149,0.834572,0.981244,0.426857,0.432006,0.766387,0.836384,0.924762,0.280721,0.407067,0.755534,0.623916,0.0816621,0.504202,0.874814,0.829662,0.332815,0.510638,0.965697,0.21787,0.321329,0.791141,0.795488,0.470147,0.396686,0.776317,0.804715,0.0729393,0.930128,0.1807,0.931013,0.394959,0.435996,0.394337,0.0189397,0.237456,0.384101,0.224083,0.680488,0.637228,0.198439,0.750959,0.294509,0.432957,0.183876,0.88564,0.259766,0.23123,0.830279,0.378105,0.93572,0.58539,0.0267424,0.168999,0.194577,0.454923,0.117774,0.601422,0.616092,0.495093,0.256047,0.414872,0.130949,0.501963,0.638141,0.738864,0.658925,0.57703,0.265787,0.408798,0.00493956,0.727025,0.963964,0.595284,0.577149,0.524443,0.937228,0.733169,0.708066,0.852052,0.32081,0.29763,0.629433,0.158043,0.604712,0.867582,0.896817,0.85733,0.27608,0.57268,0.343593,0.5908,0.278321,0.989236,0.488299,0.583516,0.128521,0.746721,0.528947,0.846282,0.877936,0.076982,0.577198,0.476583,0.514324,0.133133,0.827065,0.100802,0.781801,0.42422,0.00463623,0.70257,0.176612,0.940472,0.177242,0.341547,0.65495,0.0493855,0.728727,0.849046,0.146098,0.626032,0.0264952,0.405423,0.959078,0.410621,0.828164,0.569656,0.487551,0.155214,0.314948,0.554805,0.196372,0.529678,0.247338,0.706478,0.447348,0.579729,0.164174,0.874233,0.851271,0.14955,0.185213,0.344169,0.650275,0.764126,0.774404,0.438034,0.637444,0.571563,0.505922,0.454768,0.0513163,0.371075,0.232862,0.749957,0.2138,0.667503,0.415522,0.76683,0.167263,0.284904,0.8316,0.703621,0.152728,0.144879,0.236945,0.161699,0.44369,0.308237,0.255927,0.74183,0.621792,0.268342,0.954833,0.8401,0.150981,0.220582,0.168325,0.52848,0.742882,0.35254,0.766576,0.0852005,0.5019,0.923713,0.522726,0.91787,0.0358915,0.275099,0.20551,0.647481,0.473965,0.246089,0.0239453,0.265558,0.92085,0.11205,0.0637988,0.863659,0.766881,0.295387,0.47153,0.551518,0.404251,0.0166934,0.0113722,0.230818,0.566401,0.353917,0.364371,0.64079,0.00506228,0.109444,0.3421,0.389306,0.50809,0.0571716,0.99343,0.463776,0.508431,0.119858,0.333507,0.444398,0.881681,0.790967,0.655562,0.517475,0.10393,0.567522,0.625377,0.564541,0.175866,0.436839,0.104278,0.376759,0.383488,0.470361,0.0419457,0.805665,0.769553,0.0946113,0.45492,0.679606,0.766232,0.930551,0.14104,0.883831,0.77428,0.254078,0.228027,0.749043,0.771332,0.102294,0.399176,0.113816,0.166943,0.419265,0.879447,0.35258,0.607892,0.839895,0.623918,0.304754,0.283837,0.61645,0.201237,0.252025,0.998505,0.586532,0.182882,0.987119,0.821068,0.893852,0.459354,0.580404,0.80504,0.553743,0.542253,0.701686,0.105529,0.360366,0.792964,0.551878,0.713823,0.245516,0.182731,0.256174,0.323123,0.790194,0.281297,0.466818,0.0556993,0.53222,0.191386,0.377937,0.723189,0.994766,0.413833,0.691053,0.943056,0.704385,0.571014,0.710792,0.0527136,0.388972,0.225798,0.791737,0.799015,0.269984,0.0717248,0.341946,0.895177,0.0830182,0.844933,0.275357,0.586575,0.256955,0.934193,0.0726518,0.824943,0.840552,0.238215,0.0914407,0.8454,0.263694,0.902076,0.2546,0.683498,0.223126,0.742606,0.697312,0.0885694,0.178434,0.909346,0.404528,0.817139,0.683209,0.834665,0.185262,0.69159,0.22209,0.695821,0.336797,0.505406,0.767184,0.910402,0.585853,0.104337,0.525283,0.46146,0.498122,0.223871,0.978627,0.817881,0.609701,0.839987,0.574483,0.0128115,0.658545,0.350903,0.655626,0.492576,0.541017,0.323195,0.216385,0.761589,0.190504,0.343417,0.255982,0.612671,0.207099,0.734842,0.349439,0.39741,0.962889,0.78433,0.748894,0.804107,0.140628,0.438476,0.825445,0.444712,0.400781,0.279881,0.135962,0.217063,0.810955,0.0331241,0.731484,0.411543,0.753949,0.0563215,0.775692,0.665774,0.434698,0.464032,0.373091,0.986664,0.436679,0.618954,0.376181,0.977339,0.6212,0.673485,0.180861,0.784307,0.518773,0.167885,0.848901,0.167564,0.174414,0.7098,0.969363,0.377015,0.359833,0.354351,0.789334,0.361786,0.40673,0.75379,0.208575,0.0556168,0.0170013,0.563917,0.021928,0.925201,0.723105,0.0276083,0.178839,0.75948,0.636841,0.56633,0.442015,0.890507,0.0308736,0.57343,0.566854,0.345315,0.905871,0.997404,0.917064,0.999125,0.0711301,0.78961,0.0885662,0.550226,0.977198,0.702454,0.199831,0.759954,0.868193,0.889794,0.21986,0.40655,0.0351295,0.802687,0.865893,0.19277,0.242376,0.984112,0.0262715,0.493503,0.402308,0.0937845,0.214259,0.864917,0.666686,0.157241,0.951221,0.687649,0.62592,0.385977,0.948059,0.759987,0.862494,0.773432,0.305902,0.878057,0.500346,0.247569,0.759994,0.464636,0.572558,0.400962,0.441004,0.680539,0.568823,0.330253,0.250892,0.544073,0.849049,0.101771,0.667321,0.807748,0.838823,0.535215,0.474904,0.0449017,0.318006,0.18864,0.530387,0.940345,0.736509,0.321524,0.254626,0.860995,0.49986,0.0683438,0.495729,0.723932,0.134927,0.665062,0.609711,0.810618,0.0842719,0.662884,0.415193,0.713885,0.541076,0.136276,0.581148,0.959145,0.0259086,0.350676,0.865938,0.862702,0.2165,0.858394,0.119701,0.573753,0.783993,0.889144,0.535494,0.659862,0.433819,0.44332,0.731243,0.967172,0.78633,0.836228,0.171181,0.134871,0.255199,0.351582,0.141731,0.670804,0.721473,0.0489889,0.663735,0.420284,0.0648009,0.352692,0.0968255,0.137127,0.839717,0.833762,0.78389,0.20154,0.601544,0.467595,0.132502,0.111012,0.684334,0.278972,0.119491,0.46531,0.91238,0.693572,0.470464,0.473896,0.911364,0.529062,0.0266177,0.768775,0.160077,0.476799,0.183992,0.0350072,0.23091,0.226952,0.865581,0.693003,0.946074,0.714957,0.496569,0.946277,0.494858,0.409999,0.762664,0.0605766,0.828034,0.417315,0.195829,0.000552475,0.830918,0.167605,0.136746,0.758192,0.0701755,0.282907,0.707239,0.807181,0.997187,0.294323,0.273401,0.374708,0.244574,0.527397,0.666065,0.670024,0.271413,0.260571,0.600006,0.495845,0.373112,0.61371,0.21023,0.431712,0.725911,0.373357,0.134527,0.0715523,0.104675,0.773269,0.276241,0.988927,0.365496,0.420523,0.805154,0.61958,0.968273,0.120103,0.798359,0.419283,0.337989,0.793094,0.740032,0.049508,0.020048,0.304336,0.384883,0.968744,0.325267,0.0240446,0.400906,0.420415,0.166249,|0.0979777,0.72298,0.403014,0.843775,0.545088,0.807402,0.461634,0.625197,0.253642,0.376654,0.717138,0.238573,0.87714,0.251764,0.633191,0.209052,0.609696,0.82154,0.508901,0.617777,0.163127,0.622946,0.226825,0.248662,0.929723,0.45983,0.565468,0.642878,0.411882,0.904868,0.714633,0.333671,0.464814,0.243635,0.591269,0.626415,0.521778,0.230191,0.79959,0.550247,0.861631,0.235242,0.0715322,0.121001,0.944544,0.721698,0.947881,0.592085,0.232505,0.888794,0.493169,0.0120146,0.750362,0.637201,0.631989,0.808474,0.712764,0.379626,0.352854,0.462517,0.813742,0.297238,0.544182,0.293449,0.650069,0.149958,0.764347,0.779683,0.50321,0.794722,0.820368,0.0964364,0.988108,0.867219,0.446086,0.812552,0.0507411,0.550208,0.76072,0.398178,0.207081,0.585535,0.356868,0.382424,0.325178,0.301236,0.504658,0.560822,0.36186,0.719089,0.631789,0.384257,0.686334,0.21015,0.047423,0.290845,0.597463,0.275159,0.635837,0.338751,0.721036,0.845358,0.553803,0.0135085,0.664592,0.958403,0.856978,0.184725,0.187576,0.925623,0.227017,0.794036,0.410049,0.593424,0.623926,0.0834182,0.937209,0.407211,0.0562981,0.402593,0.2273,0.38468,0.4687,0.227754,0.469335,0.271908,0.700575,0.344528,0.517914,0.769834,0.416855,0.0603513,0.0204228,0.321887,0.377959,0.557153,0.893785,0.191545,0.670293,0.134863,0.400159,0.642109,0.613819,0.635055,0.422288,0.21102,0.48244,0.182873,0.634238,0.814467,0.958382,0.403712,0.653554,0.910248,0.428006,0.843444,0.597288,0.328207,0.0530338,0.422235,0.381065,0.0713015,0.690187,0.52739,0.115087,0.98034,0.225754,0.0515382,0.347927,0.796381,0.278834,0.362143,0.26172,0.847243,0.247514,0.696399,0.31979,0.362747,0.736303,0.19968,0.679972,0.868477,0.0973021,0.867279,0.0568886,0.0451956,0.953014,0.999176,0.496078,0.0663339,0.163973,0.697111,0.018407,0.921149,0.755848,0.264206,0.752339,0.747594,0.534658,0.935617,0.196366,0.258919,0.492391,0.613332,0.626956,0.323876,0.319079,0.954454,0.813929,0.461759,0.158676,0.137243,0.637573,0.919516,0.776276,0.0799567,0.611547,0.812065,0.384213,0.523928,0.649638,0.0115176,0.382668,0.214463,0.257735,0.218463,0.596412,0.204069,0.549019,0.0883195,0.952557,0.524978,0.509042,0.315235,0.632742,0.564387,0.553132,0.114741,0.161422,0.0385385,0.399033,0.851075,0.0391011,0.302658,0.842357,0.301162,0.71522,0.85397,0.868928,0.00110507,0.485242,0.956994,0.955524,0.27442,0.798072,0.314497,0.593066,0.940055,0.501814,0.768373,0.115232,0.738406,0.0910249,0.0480441,0.952028,0.683463,0.152153,0.51116,0.100425,0.491819,0.522514,0.27876,0.798205,0.848046,0.0114936,0.173734,0.783188,0.946859,0.912783,0.729115,0.87229,0.416852,0.484873,0.755685,0.382553,0.0158666,0.150104,0.105578,0.00640529,0.886309,0.468182,0.226326,0.936538,0.884573,0.722399,0.559803,0.389564,0.0563899,0.043294,0.239253,0.892994,0.55649,0.44584,0.195085,0.392306,0.62204,0.0595868,0.503619,0.44087,0.00166881,0.167247,0.883865,0.714299,0.873365,0.403691,0.963343,0.0836141,0.610742,0.515397,0.421441,0.341908,0.660762,0.478521,0.982567,0.82285,0.680654,0.406936,0.253469,0.471749,0.55047,0.233889,0.0670072,0.74545,0.937105,0.461733,0.295444,0.762111,0.213481,0.146832,0.226143,0.825626,0.723437,0.781424,0.149039,0.105056,0.852763,0.00535965,0.160765,0.355947,0.454875,0.056781,0.689271,0.395522,0.933841,0.789882,0.652422,0.943418,0.478314,0.397815,0.316742,0.857975,0.36737,0.0576494,0.800436,0.148957,0.74407,0.453311,0.0125965,0.698172,0.523433,0.517709,0.100069,0.83747,0.112233,0.476637,0.591392,0.401299,0.905166,0.570575,0.242353,0.942082,0.883177,0.0848959,0.878324,0.940034,0.800179,0.930818,0.178892,0.961747,0.403824,0.220189,0.932556,0.64407,0.269773,0.179812,0.958417,0.440476,0.979977,0.969895,0.344369,0.898023,0.309643,0.873539,0.378842,0.693549,0.0404558,0.00407171,0.640567,0.550977,0.895603,0.30919,0.694909,0.13773,0.0382602,0.0911845,0.663406,0.99955,0.93934,0.204575,0.270071,0.236252,0.436749,0.754474,0.413716,0.376346,0.192186,0.36989,0.334989,0.228677,0.282615,0.256426,0.461283,0.985398,0.911755,0.117409,0.882887,0.509271,0.628395,0.250439,0.353146,0.608217,0.664934,0.471181,0.689019,0.808829,0.138324,0.658942,0.615612,0.302492,0.551812,0.00848603,0.25518,0.012778,0.917645,0.869341,0.168543,0.983271,0.147353,0.760125,0.762766,0.416335,0.194138,0.259265,0.0385345,0.650959,0.502157,0.250815,0.535857,0.390101,0.598229,0.193828,0.742523,0.575493,0.458252,0.342648,0.526251,0.660056,0.749804,0.353196,0.993067,0.294679,0.763412,0.328972,0.981242,0.466922,0.521159,0.940071,0.0967175,0.0911659,0.128174,0.503107,0.279087,0.307995,0.398934,0.582192,0.23832,0.653079,0.369732,0.0610114,0.905585,0.630832,0.941995,0.447726,0.544905,0.0735099,0.270813,0.687045,0.953386,0.82011,0.789223,0.148751,0.314069,0.429473,0.978755,0.0247306,0.404042,0.763962,0.666506,0.630909,0.185719,0.750035,0.88415,0.711129,0.320792,0.847081,0.368453,0.942899,0.643184,0.137473,0.687504,0.676396,0.505508,0.170181,0.459344,0.145827,0.118284,0.986009,0.590072,0.00711042,0.901116,0.238251,0.168601,0.770236,0.700404,0.187794,0.228404,0.320091,0.926408,0.380963,0.0415406,0.362103,0.997711,0.022902,0.741834,0.877375,0.847203,0.520006,0.137506,0.577794,0.068335,0.533406,0.323024,0.971982,0.606063,0.195722,0.49173,0.700524,0.459775,0.306157,0.687444,0.990083,0.333539,0.763803,0.272037,0.132298,0.530948,0.959745,0.555377,0.365851,0.241848,0.132122,0.509006,0.936424,0.536322,0.331988,0.108259,0.709518,0.324291,0.637104,0.124269,0.235997,0.385254,0.841419,0.0783269,0.969484,0.962462,0.91265,0.82847,0.669386,0.318085,0.150868,0.35478,0.798997,0.643401,0.909469,0.814354,0.218254,0.0373623,0.764692,0.405483,0.0702515,0.313651,0.970298,0.998244,0.966183,0.233908,0.454178,0.178277,0.48787,0.599399,0.992169,0.920824,0.901705,0.566776,0.101454,0.674133,0.0195034,0.247191,0.295776,0.814893,0.601945,0.112545,0.330369,0.921767,0.316123,0.822941,0.855259,0.766703,0.119108,0.499436,0.7,0.430338,0.099252,0.160984,0.46708,0.575937,0.301735,0.533572,0.965325,0.753119,0.0284441,0.0498559,0.416292,0.599309,0.192694,0.706394,0.444051,0.421041,0.327182,0.412173,0.683326,0.957234,0.64614,0.749175,0.847138,0.274672,0.52946,0.864968,0.609381,0.0435588,0.576886,0.927841,0.000693679,0.716989,0.624179,0.0322291,0.492738,0.60925,0.14955,0.922451,0.801545,0.760032,0.349662,0.727668,0.97732,0.851191,0.419674,0.179559,0.831569,0.61013,0.590347,0.394726,0.437504,0.926791,0.818972,0.341054,0.188415,0.156222,0.178489,0.512641,0.714427,0.643858,0.137848,0.100172,0.824636,0.480878,0.199086,0.0269287,0.247749,0.751553,0.37534,0.392333,0.674722,0.197407,0.397436,0.932368,0.325324,0.4708,0.345743,0.543532,0.114907,0.376608,0.767894,0.0427712,0.0941993,0.513609,0.65705,0.189342,0.812172,0.44207,0.895502,0.475639,0.497311,0.537481,0.994009,0.46388,0.882969,0.519828,0.269563,0.106629,0.494748,0.606212,0.494016,0.832796,0.0295296,0.595837,0.0216421,0.341489,0.00496024,0.665973,0.321597,0.0443282,0.601215,0.605595,0.678935,0.314872,0.451438,0.825694,0.635137,0.289557,0.119565,0.572349,0.521451,0.054459,0.142747,0.390584,0.99348,0.507182,0.832607,0.66455,0.452851,0.893286,0.0857099,0.893766,0.621611,0.191158,0.590868,0.631124,0.344654,0.00460815,0.522155,0.0335404,0.162215,0.501659,0.821585,0.963558,0.133253,0.389283,0.572811,0.0380379,0.169544,0.105083,0.384244,0.630832,0.282326,0.288553,0.938547,0.44957,0.81949,0.460436,0.150458,0.0207833,0.354857,0.201912,0.090317,0.126375,0.939248,0.129394,0.71013,0.819332,0.125915,0.467992,0.79909,0.669477,0.757769,0.349896,0.481663,0.0232577,0.436731,0.266593,0.989937,0.398934,0.289458,0.280887,0.874127,0.888627,0.27513,0.657374,0.415121,0.901608,0.535164,0.0224794,0.564777,0.718425,0.610159,0.445435,0.919453,0.400295,0.403051,0.734086,0.702991,0.976629,0.728372,0.591183,0.74546,0.707086,0.689073,0.0032118,0.781142,0.155614,0.484835,0.0931036,0.0665625,0.928462,0.103954,0.351751,0.0179467,0.619756,0.181622,0.236676,0.194827,0.626508,0.740969,0.945746,0.557095,0.702731,0.394513,0.686718,0.588934,0.93307,0.776234,0.703329,0.732781,0.71656,0.756155,0.669819,0.669743,0.2047,0.681206,0.621032,0.433618,0.2118,0.754776,0.252629,0.378806,0.53284,0.615177,0.227554,0.300737,0.988306,0.214261,0.0720223,0.315068,0.734851,0.764913,0.793812,0.268574,0.346189,0.667074,0.348804,0.863657,0.081499,0.586702,0.459679,0.226035,0.628002,0.532403,0.0519491,0.290907,0.227612,0.0102105,0.53152,0.673736,0.826044,0.398334,0.401228,0.0486846,0.962974,0.170314,0.21632,0.0844984,0.847418,0.737404,0.345919,0.399877,0.398491,0.878332,0.951131,0.918281,0.990006,0.519903,0.535835,0.470637,0.588799,0.0600587,0.414404,0.158552,0.00443673,0.602139,0.250655,0.234901,0.343312,0.961227,0.390556,0.0342904,0.160961,0.729434,0.797952,0.38669,0.25993,0.63186,0.0519044,0.59824,0.457434,0.835509,0.425323,0.909649,0.264816,0.36306,0.257961,0.0155317,0.663994,0.500953,0.974547,0.329911,0.530877,0.759873,0.576889,0.651389,0.922608,0.697364,0.343406,0.774265,0.412724,0.946181,0.840028,0.91398,0.22086,0.63096,0.222973,0.281249,0.403575,0.705528,0.584734,0.926739,0.858972,0.687125,0.532386,0.0226008,0.155338,0.502374,0.695187,0.221466,0.0348517,0.457147,0.962707,0.644646,0.128204,0.905901,0.671043,|0.185513,0.477713,0.0997443,0.750431,0.169277,0.31365,0.994801,0.165753,0.470204,0.546955,0.248744,0.615194,0.823271,0.740541,0.0906004,0.613559,0.532841,0.17698,0.221966,0.801027,0.805448,0.990546,0.54361,0.960231,0.693088,0.475293,0.913933,0.789999,0.582861,0.639025,0.370097,0.817453,0.81605,0.0634487,0.0602931,0.323148,0.810386,0.662372,0.517558,0.662588,0.292628,0.0213431,0.528273,0.299157,0.23388,0.0789575,0.332006,0.802136,0.90754,0.167319,0.563609,0.562387,0.951812,0.675466,0.24477,0.185091,0.701002,0.141522,0.657122,0.372832,0.54368,0.919174,0.650539,0.776016,0.51047,0.114918,0.772411,0.16936,0.626789,0.081013,0.249488,0.309859,0.518937,0.251086,0.409614,0.311775,0.102914,0.312472,0.169035,0.262216,0.257204,0.537806,0.967642,0.665133,0.389601,0.0194909,0.111869,0.850679,0.35671,0.899945,0.0386986,0.714894,0.329633,0.937607,0.443979,0.771826,0.141687,0.170221,0.29688,0.586772,0.0299461,0.400406,0.210123,0.0581799,0.819149,0.734464,0.768809,0.623686,0.279073,0.30201,0.353221,0.992983,0.736154,0.63937,0.393727,0.449716,0.39584,0.784158,0.942857,0.35563,0.217401,0.173851,0.997561,0.766512,0.384321,0.465009,0.913348,0.189509,0.210996,0.883865,0.438842,0.354371,0.313323,0.743888,0.360658,0.375512,0.783703,0.904968,0.388566,0.386855,0.439444,0.716891,0.33923,0.541371,0.508728,0.351976,0.35024,0.140631,0.489472,0.309693,0.515993,0.97581,0.120952,0.301296,0.596639,0.0558307,0.767343,0.00452685,0.151103,0.0601062,0.248517,0.991583,0.25646,0.716549,0.289533,0.183243,0.955785,0.379023,0.756563,0.805681,0.724743,0.31573,0.221203,0.326357,0.499385,0.275516,0.599577,0.110458,0.316765,0.543559,0.239247,0.916904,0.908933,0.225832,0.823901,0.417615,0.246501,0.738282,0.709701,0.697516,0.626261,0.235379,0.418753,0.593023,0.656145,0.462863,0.484004,0.685707,0.391918,0.590202,0.997087,0.756697,0.23345,0.757076,0.203731,0.484948,0.436859,0.328607,0.710988,0.663134,0.426813,0.596967,0.58331,0.0975859,0.240669,0.860157,0.263305,0.818987,0.641724,0.397258,0.873874,0.0920087,0.907843,0.789108,0.231879,0.767117,0.83195,0.0772352,0.968735,0.654703,0.849627,0.6756,0.9885,0.238769,0.724879,0.772806,0.742734,0.756212,0.462797,0.0520833,0.157141,0.575077,0.890763,0.995861,0.0133341,0.719864,0.959456,0.014222,0.303671,0.325467,0.64719,0.461109,0.926422,0.501334,0.277362,0.195506,0.194939,0.88904,0.476608,0.0915574,0.521668,0.349597,0.988605,0.390394,0.813988,0.925535,0.0689989,0.339544,0.918384,0.414781,0.501729,0.638736,0.545154,0.31118,0.581286,0.205462,0.467963,0.403365,0.945406,0.54298,0.51115,0.554936,0.294042,0.78319,0.747559,0.117261,0.710969,0.791156,0.689233,0.308674,0.819839,0.822105,0.385006,0.855034,0.688486,0.957095,0.23324,0.0865589,0.585612,0.421695,0.827593,0.490855,0.840253,0.437093,0.109812,0.404964,0.960275,0.870183,0.521364,0.150279,0.742669,0.366181,0.221084,0.493194,0.552479,0.417499,0.67838,0.0266397,0.311073,0.190807,0.0951545,0.13462,0.898154,0.837081,0.34544,0.79312,0.509668,0.207719,0.0285708,0.438821,0.195143,0.725152,0.218022,0.327037,0.950669,0.910561,0.815344,0.393019,0.111963,0.131113,0.470613,0.811277,0.516072,0.429216,0.0832414,0.938437,0.0789855,0.303146,0.789582,0.184474,0.189443,0.781407,0.496325,0.574034,0.918807,0.485944,0.737634,0.256258,0.0847693,0.193019,0.953756,0.149105,0.343001,0.298731,0.439579,0.746346,0.826793,0.0200789,0.208865,0.182879,0.840187,0.844484,0.773684,0.721441,0.594315,0.262329,0.592836,0.614932,0.951356,0.998608,0.0154485,0.576904,0.692411,0.994293,0.448288,0.568081,0.436474,0.324462,0.0471907,0.333578,0.399419,0.616275,0.260228,0.913075,0.88372,0.725942,0.128997,0.723495,0.95235,0.539128,0.277304,0.487786,0.401105,0.417718,0.832879,0.898282,0.141821,0.556677,0.492041,0.11049,0.529561,0.17698,0.903007,0.69579,0.0705179,0.0868233,0.633272,0.754829,0.938195,0.989699,0.833145,0.460654,0.162756,0.0929515,0.832383,0.3908,0.629595,0.217918,0.244589,0.532984,0.556377,0.635514,0.408625,0.382709,0.415207,0.21563,0.686776,0.102857,0.391264,0.0979804,0.811483,0.435792,0.0523369,0.214884,0.409669,0.421014,0.73319,0.954026,0.0840023,0.694162,0.154589,0.744175,0.157982,0.21465,0.172445,0.243919,0.884281,0.673246,0.384678,0.370317,0.838241,0.711892,0.225477,0.313183,0.133888,0.770321,0.604572,0.915222,0.359834,0.0569242,0.392563,0.22264,0.0513456,0.836756,0.64882,0.266156,0.510728,0.348479,0.596681,0.277331,0.0236456,0.158062,0.925842,0.987018,0.0537445,0.440211,0.16472,0.70598,0.627891,0.532687,0.695372,0.331127,0.873785,0.731783,0.931485,0.147406,0.808011,0.411887,0.962257,0.542495,0.936956,0.0200641,0.523136,0.11367,0.108277,0.612256,0.857493,0.0170624,0.881793,0.995012,0.61749,0.847087,0.833426,0.58665,0.69,0.257647,0.727124,0.488483,0.378696,0.325405,0.848786,0.301489,0.0114661,0.104778,0.304396,0.95152,0.892905,0.39445,0.965603,0.913504,0.553222,0.173126,0.919795,0.895269,0.0132948,0.177074,0.36838,0.391638,0.625781,0.705144,0.00539517,0.692323,0.355222,0.381028,0.0484949,0.464444,0.49293,0.998371,0.404167,0.619849,0.474976,0.100439,0.151481,0.640617,0.437748,0.525374,0.284448,0.686914,0.218934,0.168677,0.86057,0.180279,0.801768,0.112405,0.152595,0.549248,0.173489,0.336173,0.571569,0.799163,0.848318,0.845274,0.530527,0.492038,0.978431,0.161115,0.552884,0.133011,0.279682,0.578868,0.909794,0.681369,0.165866,0.554404,0.545377,0.920413,0.289298,0.56178,0.728051,0.597695,0.211977,0.569696,0.0328192,0.88723,0.224951,0.758471,0.54701,0.236316,0.194625,0.34856,0.490381,0.863863,0.49464,0.994886,0.536883,0.64568,0.825051,0.0280417,0.918579,0.704385,0.645766,0.457922,0.791807,0.42373,0.211645,0.0823138,0.303988,0.0700899,0.835957,0.508363,0.784634,0.847081,0.221626,0.978961,0.646493,0.548976,0.00016278,0.634963,0.248298,0.773607,0.656551,0.747199,0.827152,0.75706,0.929687,0.446032,0.0245783,0.221732,0.669817,0.85393,0.628034,0.833449,0.272937,0.899506,0.678793,0.0846522,0.667029,0.433147,0.55121,0.679372,0.893651,0.577299,0.711796,0.131837,0.449229,0.747851,0.285702,0.551425,0.225859,0.856125,0.943597,0.199004,0.416982,0.714133,0.517287,0.341795,0.976784,0.948981,0.276984,0.0191404,0.409867,0.616498,0.637886,0.202204,0.736506,0.266034,0.0528436,0.459382,0.181037,0.160743,0.837984,0.123515,0.17323,0.0374823,0.848691,0.0974446,0.140265,0.197464,0.872032,0.0374413,0.621268,0.352586,0.767935,0.0598466,0.204672,0.454501,0.334002,0.886712,0.0718483,0.44935,0.671964,0.674609,0.0990095,0.857715,0.238715,0.199866,0.784765,0.627762,0.600865,0.118091,0.0322401,0.142941,0.692756,0.820925,0.722251,0.89098,0.172459,0.0614936,0.475466,0.441003,0.831808,0.252067,0.857849,0.0427979,0.777547,0.0202109,0.204935,0.0959529,0.735969,0.558273,0.90329,0.650376,0.19257,0.185559,0.227616,0.789471,0.0602005,0.26593,0.784788,0.999602,0.50237,0.159574,0.931873,0.870875,0.409261,0.0126998,0.299098,0.331237,0.214167,0.973397,0.55508,0.354823,0.69905,0.469233,0.074401,0.520076,0.873518,0.649752,0.645975,0.905949,0.582456,0.745002,0.224096,0.76792,0.718343,0.550535,0.731825,0.362631,0.929459,0.803751,0.577809,0.989175,0.153264,0.312757,0.662822,0.930548,0.34753,0.644557,0.583967,0.562234,0.952494,0.541628,0.88163,0.115887,0.108522,0.187679,0.870454,0.797872,0.539212,0.713823,0.613149,0.0670276,0.849512,0.812354,0.0499724,0.084805,0.276449,0.992808,0.26068,0.595152,0.0123914,0.457869,0.427165,0.288624,0.274091,0.323003,0.0407624,0.40305,0.735231,0.903461,0.16197,0.709772,0.594794,0.558011,0.879045,0.925934,0.853921,0.263317,0.481531,0.40269,0.223709,0.00572884,0.0450498,0.584064,0.242237,0.291377,0.530075,0.384181,0.7084,0.6766,0.306468,0.123333,0.760017,0.343349,0.0270385,0.303561,0.65165,0.10862,0.967272,0.691189,0.302096,0.559779,0.622943,0.463336,0.601745,0.601071,0.378694,0.0509588,0.755154,0.358915,0.633187,0.288599,0.132193,0.438813,0.630208,0.504606,0.960084,0.534204,0.406439,0.684135,0.843007,0.0695867,0.23889,0.501931,0.449667,0.100925,0.44523,0.10767,0.429286,0.68687,0.586812,0.0531844,0.846434,0.470385,0.960905,0.241789,0.375347,0.334889,0.407334,0.911034,0.904758,0.514401,0.812572,0.785811,0.773053,0.102734,0.252046,0.791656,0.910963,0.596224,0.696016,0.838319,0.305929,0.103774,0.115706,0.607028,0.986686,0.682016,0.211079,0.451334,0.327645,0.916957,0.192795,0.584325,0.872463,0.397522,0.387649,0.905241,0.776327,0.10636,0.00623411,0.556275,0.787199,0.29517,0.253048,0.403259,0.770237,0.0259703,0.536733,0.441202,0.771871,0.154222,0.531569,0.986848,0.670063,0.692997,0.231302,0.152369,0.320395,0.965147,0.132849,0.889563,0.945913,0.0123282,0.865162,0.361803,0.478862,0.654879,0.43021,0.363967,0.171365,0.95475,0.946641,0.516434,0.732949,0.385066,0.281638,0.00641936,0.79491,0.397742,0.476657,0.395196,0.162748,0.281327,0.862462,0.424947,0.795345,0.698768,0.0462647,0.787081,0.682395,0.742948,0.444637,0.970753,0.993795,0.986607,0.0379596,0.862545,0.96978,0.698314,0.763042,0.741309,0.381841,0.042851,0.356628,0.910411,0.112348,0.940495,0.567092,0.0959838,0.389969,0.820183,0.642629,0.961612,0.75938,0.694883,0.358445,0.44473,0.184866,0.457087,0.720579,0.480497,0.388594,0.514433,0.733097,0.283757,0.82424,0.143545,0.94228,0.680419,|0.48191,0.785298,0.983199,0.0992519,0.218934,0.0368743,0.874523,0.710107,0.811846,0.949308,0.407921,0.816805,0.898385,0.655654,0.409644,0.438998,0.507507,0.901913,0.455693,0.395085,0.393441,0.814691,0.30525,0.491251,0.329897,0.440155,0.553333,0.857526,0.0893483,0.845778,0.891245,0.742888,0.509607,0.0847601,0.820655,0.655275,0.348951,0.763988,0.829089,0.467534,0.118224,0.126165,0.130194,0.996553,0.677569,0.608591,0.449505,0.200417,0.0291197,0.104966,0.720481,0.044072,0.83793,0.0639715,0.621179,0.470322,0.387684,0.361754,0.920917,0.481406,0.958459,0.278802,0.364586,0.0709512,0.283785,0.0932521,0.341633,0.906332,0.495468,0.282956,0.359807,0.538855,0.215717,0.588153,0.815242,0.301561,0.0383639,0.430957,0.529843,0.0345182,0.349544,0.951609,0.431336,0.710737,0.984806,0.154315,0.409924,0.459199,0.109866,0.0780913,0.449878,0.82284,0.715778,0.945553,0.229359,0.12822,0.994394,0.911712,0.225752,0.440916,0.371741,0.686252,0.918775,0.409147,0.623722,0.316919,0.629958,0.450479,0.466275,0.751015,0.355043,0.33559,0.806932,0.393572,0.663517,0.253737,0.683694,0.914539,0.420745,0.848008,0.186294,0.960048,0.514403,0.435602,0.483898,0.338527,0.63731,0.984378,0.762005,0.402623,0.222538,0.149289,0.862394,0.963384,0.490195,0.916619,0.0742894,0.216899,0.7062,0.226122,0.702158,0.534156,0.861076,0.627102,0.0926952,0.193204,0.837019,0.0569878,0.680603,0.426975,0.714847,0.417226,0.489471,0.929857,0.981869,0.44587,0.202123,0.538728,0.258708,0.754773,0.854533,0.124109,0.404899,0.283703,0.417114,0.75641,0.896853,0.866705,0.577173,0.635724,0.445385,0.631319,0.681483,0.243815,0.734732,0.447559,0.395813,0.561452,0.315801,0.5655,0.0445344,0.518858,0.853926,0.117863,0.993148,0.831472,0.351288,0.094826,0.847856,0.923047,0.818513,0.0872438,0.667054,0.965228,0.425045,0.874168,0.878641,0.940149,0.635328,0.663533,0.0915533,0.194878,0.0913408,0.515615,0.972353,0.463053,0.371292,0.206053,0.895634,0.383345,0.663975,0.479858,0.186468,0.203687,0.801539,0.652605,0.272107,0.607832,0.183106,0.842614,0.879166,0.733808,0.742999,0.440162,0.32844,0.81811,0.535893,0.287187,0.477761,0.714562,0.777298,0.624001,0.270059,0.744852,0.457705,0.048727,0.540805,0.884368,0.422193,0.769381,0.639746,0.0715815,0.474584,0.389826,0.711877,0.751204,0.186283,0.0331571,0.287638,0.0887399,0.0404339,0.172418,0.113341,0.758383,0.77423,0.409806,0.670864,0.326085,0.0359998,0.129336,0.715386,0.737428,0.12087,0.680278,0.620029,0.410635,0.0813011,0.710691,0.306638,0.755779,0.0565425,0.309327,0.827507,0.696069,0.70813,0.0917356,0.901059,0.758019,0.646403,0.207303,0.433774,0.0439397,0.53164,0.30168,0.110123,0.694182,0.520576,0.647646,0.0487391,0.152066,0.0801449,0.21152,0.240821,0.818312,0.286152,0.426256,0.428834,0.942322,0.922828,0.790823,0.671661,0.61508,0.888729,0.590422,0.319448,0.896658,0.659068,0.24059,0.919585,0.245631,0.101169,0.462639,0.177635,0.697237,0.660112,0.194573,0.837796,0.386082,0.655922,0.96637,0.285067,0.565374,0.389135,0.9168,0.0395979,0.107643,0.607874,0.852578,0.358221,0.0626155,0.785611,0.374581,0.157425,0.630792,0.432627,0.569709,0.217998,0.205386,0.446367,0.410861,0.897682,0.346019,0.51084,0.0847066,0.272631,0.675429,0.731392,0.129784,0.154214,0.17905,0.175489,0.0297908,0.2913,0.148393,0.910211,0.345878,0.749469,0.442082,0.926948,0.520091,0.280141,0.161428,0.0684616,0.7908,0.0885439,0.922938,0.752772,0.223751,0.531493,0.0807149,0.524171,0.482955,0.835887,0.971223,0.133735,0.73781,0.18889,0.794557,0.106267,0.0153326,0.732265,0.173735,0.820444,0.0256463,0.971492,0.385301,0.17298,0.759494,0.45374,0.256878,0.24581,0.368484,0.308887,0.41529,0.779321,0.460192,0.912017,0.0500268,0.168842,0.860441,0.809762,0.959231,0.428101,0.321628,0.732579,0.252036,0.0888379,0.775717,0.319243,0.131256,0.0817146,0.407755,0.553569,0.268359,0.13691,0.458143,0.489338,0.766142,0.904098,0.0525788,0.797034,0.509829,0.119477,0.481984,0.286895,0.926784,0.956407,0.636871,0.733014,0.678657,0.418671,0.38754,0.500029,0.723225,0.90168,0.926597,0.8892,0.620814,0.822084,0.210974,0.156565,0.396116,0.0137827,0.0284402,0.0188878,0.204107,0.965478,0.0040139,0.414045,0.280006,0.52515,0.556721,0.300358,0.28796,0.602203,0.647493,0.694317,0.903698,0.450753,0.694088,0.677013,0.993114,0.649057,0.184057,0.696109,0.628679,0.643327,0.136286,0.323703,0.948355,0.837679,0.486865,0.665015,0.154476,0.938197,0.391516,0.958368,0.308534,0.279415,0.358729,0.260584,0.0198085,0.399077,0.589814,0.594694,0.968285,0.643808,0.881417,0.975371,0.699425,0.256745,0.237282,0.279776,0.392853,0.189036,0.727097,0.473463,0.174516,0.0776386,0.0406383,0.682529,0.2718,0.703341,0.824174,0.667441,0.373483,0.830409,0.146856,0.220389,0.86695,0.587484,0.480341,0.445633,0.169177,0.878353,0.616554,0.587389,0.132965,0.256301,0.858594,0.3231,0.121499,0.905226,0.583673,0.981754,0.379282,0.0709476,0.435407,0.694202,0.751226,0.255111,0.617824,0.681239,0.684723,0.240589,0.00684971,0.181169,0.514889,0.79915,0.267705,0.222572,0.335015,0.734294,0.978814,0.783647,0.0510256,0.452462,0.367427,0.281706,0.877205,0.516549,0.319861,0.305701,0.914955,0.955788,0.913093,0.129049,0.50744,0.615585,0.913397,0.0279927,0.563954,0.519446,0.951046,0.494001,0.448606,0.234249,0.396071,0.015827,0.258749,0.344626,0.83065,0.344665,0.779833,0.0298552,0.791133,0.662804,0.424202,0.0778419,0.882212,0.0642285,0.723488,0.84191,0.0974935,0.868279,0.529707,0.77711,0.00649017,0.377558,0.894035,0.75148,0.961956,0.395746,0.947993,0.931181,0.423114,0.0152236,0.986295,0.154078,0.248089,0.932615,0.373266,0.265507,0.128436,0.646027,0.794993,0.895695,0.253324,0.641593,0.467989,0.762126,0.187888,0.0615877,0.836,0.371159,0.559661,0.744139,0.592402,0.474276,0.251259,0.100609,0.275887,0.441477,0.109173,0.994806,0.830085,0.83488,0.440973,0.505057,0.092173,0.329892,0.79606,0.607167,0.735693,0.735549,0.78146,0.289501,0.394523,0.000494301,0.428084,0.249502,0.844638,0.563222,0.506273,0.286628,0.146866,0.102013,0.965492,0.510572,0.985516,0.511797,0.943607,0.253933,0.516169,0.0835088,0.404907,0.695825,0.599111,0.54035,0.833624,0.19856,0.713138,0.588502,0.0199385,0.259362,0.219979,0.503682,0.845495,0.684585,0.162831,0.551548,0.485305,0.854401,0.757149,0.900412,0.385376,0.559256,0.384256,0.98966,0.218791,0.500577,0.122664,0.728958,0.673627,0.934436,0.175701,0.463799,0.500783,0.200176,0.412809,0.792515,0.508675,0.358998,0.806959,0.458086,0.0324392,0.541557,0.862544,0.830058,0.9643,0.936092,0.902977,0.975286,0.688689,0.894353,0.0544723,0.290874,0.117482,0.804926,0.252893,0.0613028,0.73092,0.593372,0.0219971,0.0597634,0.647441,0.626634,0.970531,0.126542,0.39378,0.310595,0.330737,0.618548,0.857093,0.432844,0.437311,0.28864,0.364455,0.720686,0.616531,0.569996,0.868071,0.512097,0.755744,0.15195,0.901775,0.337517,0.526062,0.64123,0.928624,0.562371,0.989056,0.852898,0.697025,0.267023,0.0221342,0.0886024,0.395152,0.7546,0.397266,0.344035,0.101662,0.651162,0.343855,0.865844,0.934996,0.178843,0.0973526,0.563561,0.0747544,0.50466,0.830849,0.460263,0.00114888,0.974053,0.256418,0.0188012,0.60698,0.803852,0.339286,0.31925,0.294027,0.233741,0.188534,0.349296,0.131108,0.0832354,0.516742,0.0500801,0.417961,0.97309,0.0510699,0.753998,0.952965,0.665248,0.97273,0.22375,0.598959,0.605415,0.354605,0.227779,0.454531,0.660365,0.355641,0.844171,0.722521,0.774642,0.915788,0.334005,0.417036,0.680012,0.239438,0.23137,0.351999,0.182958,0.148226,0.461989,0.0722398,0.0432563,0.565127,0.788144,0.215467,0.517628,0.758174,0.0122287,0.49898,0.297303,0.13497,0.103618,0.72308,0.392463,0.659325,0.390572,0.323124,0.512561,0.282972,0.742404,0.666537,0.740696,0.574401,0.017511,0.80616,0.493278,0.0789856,0.192736,0.245668,0.896043,0.312669,0.329721,0.686576,0.0771663,0.414818,0.564162,0.432303,0.727488,0.585863,0.0176226,0.914693,0.852253,0.311306,0.137836,0.212264,0.299785,0.545528,0.230026,0.990636,0.521721,0.678301,0.0313651,0.11315,0.949293,0.770537,0.720962,0.624222,0.643569,0.58293,0.530551,0.498507,0.770631,0.605818,0.614129,0.857098,0.314881,0.570881,0.694353,0.229687,0.180266,0.773758,0.48333,0.498489,0.0433781,0.143867,0.503537,0.998041,0.103977,0.876725,0.247381,0.794881,0.591588,0.146284,0.774598,0.63302,0.621615,0.475219,0.605799,0.440735,0.0783603,0.519623,0.64759,0.781902,0.209736,0.0852312,0.418482,0.840226,0.164444,0.400565,0.380839,0.820863,0.522071,0.976458,0.789695,0.506541,0.379753,0.845951,0.693205,0.0485601,0.130114,0.70465,0.620691,0.821502,0.201256,0.816127,0.612476,0.417165,0.0369316,0.818013,0.987935,0.564139,0.993027,0.743088,0.313156,0.852847,0.185494,0.782561,0.101429,0.289304,0.821155,0.00100642,0.759412,0.258308,0.382184,0.703138,0.255077,0.470908,0.475135,0.152801,0.93964,0.77541,0.71684,0.411197,0.593471,0.243919,0.26038,0.256189,0.0939401,0.466268,0.113544,0.987038,0.876558,0.210857,0.859389,0.863084,0.490855,0.336794,0.421469,0.719149,0.484002,0.727569,0.577026,0.13782,0.161156,0.236765,0.477365,0.61664,0.328412,0.111785,0.918089,0.754787,0.478123,0.257282,0.307105,0.747231,0.964974,0.54325,0.0753364,0.294498,0.0989946,0.73509,0.366012,0.204043,0.373331,0.0980036,0.987467,0.567341,0.291473,0.443575,0.345526,0.210418,0.859334,0.502994,|0.123803,0.610472,0.95809,0.839165,0.458847,0.409438,0.649528,0.798882,0.774677,0.808988,0.362784,0.556442,0.457104,0.393546,0.246468,0.39262,0.759185,0.976997,0.34744,0.723701,0.581645,0.43113,0.291737,0.362523,0.315845,0.931856,0.284289,0.283828,0.785318,0.502554,0.100999,0.143072,0.548304,0.243095,0.480752,0.929038,0.801105,0.405632,0.897938,0.820027,0.987197,0.63415,0.390041,0.465739,0.244192,0.937209,0.217622,0.933111,0.834249,0.935786,0.560728,0.781734,0.956828,0.375837,0.874953,0.522843,0.666246,0.94808,0.846842,0.311236,0.778985,0.902631,0.745858,0.157035,0.469979,0.876726,0.697763,0.782189,0.795409,0.153365,0.361858,0.154026,0.626165,0.495179,0.9653,0.434316,0.0281001,0.91497,0.574724,0.556462,0.664708,0.454598,0.140277,0.839662,0.200225,0.467768,0.987327,0.154311,0.86924,0.0251443,0.317508,0.629445,0.0093236,0.361184,0.770241,0.230407,0.307835,0.289852,0.761405,0.535658,0.325266,0.975112,0.845468,0.103806,0.467919,0.496996,0.463468,0.437328,0.6023,0.763639,0.0514343,0.0524767,0.381368,0.704974,0.648145,0.1306,0.519986,0.000232697,0.331908,0.160231,0.220061,0.916435,0.193349,0.0784589,0.727656,0.725988,0.648456,0.390015,0.908022,0.38986,0.205625,0.762819,0.579737,0.0687698,0.837652,0.609386,0.769416,0.636455,0.870478,0.189076,0.579744,0.238818,0.667418,0.998208,0.780399,0.238393,0.0447431,0.581399,0.230961,0.928159,0.0519201,0.300681,0.709655,0.324244,0.764542,0.783173,0.510913,0.274482,0.513056,0.361865,0.479735,0.374174,0.340676,0.880068,0.954235,0.47424,0.0667055,0.57172,0.0144969,0.153427,0.175152,0.235315,0.624156,0.0592663,0.904833,0.98202,0.595319,0.796204,0.0864834,0.456873,0.666937,0.541595,0.85794,0.612232,0.633971,0.213281,0.0588025,0.817422,0.273708,0.563113,0.643997,0.129113,0.673948,0.0666699,0.997583,0.185856,0.52962,0.550531,0.0227558,0.24058,0.294661,0.879311,0.130457,0.37793,0.0206743,0.887909,0.422787,0.376983,0.84647,0.138106,0.900249,0.918159,0.0219207,0.516417,0.869857,0.310025,0.379315,0.17593,0.511583,0.00307369,0.0838171,0.200442,0.203225,0.281198,0.431828,0.790886,0.716611,0.323691,0.546752,0.73974,0.0660859,0.515251,0.489852,0.716269,0.883996,0.238317,0.982182,0.880627,0.764133,0.115751,0.258562,0.253515,0.94013,0.133203,0.0376529,0.796073,0.774726,0.743554,0.547951,0.61277,0.0554032,0.301628,0.66381,0.328119,0.00498956,0.0802774,0.937057,0.670282,0.870322,0.193107,0.996401,0.159462,0.323547,0.721248,0.592333,0.0881494,0.129555,0.0466532,0.79646,0.483154,0.863706,0.420726,0.939632,0.0813701,0.229672,0.310083,0.0710524,0.14711,0.74001,0.5009,0.17491,0.502605,0.313201,0.721172,0.990698,0.43049,0.78685,0.819398,0.605553,0.489816,0.695898,0.0292225,0.759707,0.89166,0.730118,0.450489,0.272485,0.763327,0.427973,0.822538,0.529311,0.513085,0.774417,0.224483,0.0086844,0.780161,0.945455,0.5065,0.23663,0.544871,0.427016,0.57802,0.301731,0.192833,0.186355,0.68311,0.824487,0.657358,0.101893,0.542995,0.649193,0.942074,0.114931,0.301761,0.282823,0.78469,0.922233,0.708243,0.291957,0.814413,0.294285,0.51635,0.265762,0.523141,0.683953,0.209846,0.352904,0.501172,0.749647,0.649056,0.65707,0.378323,0.263641,0.498365,0.814248,0.0934633,0.47188,0.502768,0.903515,0.0841667,0.355255,0.45184,0.657569,0.579763,0.464454,0.541698,0.0204042,0.391652,0.824298,0.421224,0.0453355,0.216815,0.046307,0.468781,0.561593,0.669335,0.143953,0.704392,0.61916,0.659514,0.602236,0.0663939,0.519843,0.634656,0.985289,0.741626,0.173809,0.718913,0.424871,0.789999,0.304237,0.559951,0.181208,0.968895,0.826569,0.392654,0.406082,0.551647,0.322836,0.609272,0.425537,0.377311,0.296391,0.00617069,0.245801,0.605257,0.275146,0.141239,0.769868,0.854761,0.0468133,0.5185,0.288674,0.472941,0.312045,0.754876,0.143623,0.729452,0.724259,0.423998,0.373533,0.225761,0.238479,0.981792,0.218557,0.875088,0.519377,0.953707,0.529792,0.556583,0.0892136,0.186048,0.243861,0.62489,0.779868,0.515871,0.0146049,0.344137,0.659316,0.175388,0.332122,0.592425,0.013693,0.85515,0.0995216,0.0311759,0.17059,0.335811,0.462496,0.148377,0.77469,0.936114,0.391404,0.705383,0.674643,0.675117,0.160674,0.334798,0.620902,0.847595,0.273179,0.303833,0.298644,0.919493,0.383951,0.033478,0.714385,0.587888,0.891737,0.130569,0.0321703,0.567302,0.632609,0.756743,0.14116,0.533045,0.221954,0.990315,0.725111,0.451467,0.184887,0.0562373,0.184631,0.770734,0.333958,0.144589,0.913032,0.879255,0.676931,0.343133,0.0403206,0.870708,0.320234,0.500391,0.168989,0.929984,0.0513775,0.427627,0.367237,0.816634,0.893248,0.197215,0.919417,0.472349,0.822137,0.588758,0.466652,0.67269,0.580825,0.882726,0.653011,0.198091,0.951924,0.818416,0.388611,0.084978,0.502639,0.163532,0.715698,0.90173,0.640142,0.219087,0.634706,0.662951,0.395782,0.40748,0.22206,0.305928,0.807536,0.592418,0.94491,0.642269,0.819504,0.109479,0.0453303,0.459595,0.396602,0.627707,0.293336,0.61419,0.199608,0.852508,0.136435,0.702601,0.992638,0.0319088,0.34308,0.0440449,0.635974,0.892511,0.230826,0.396097,0.475788,0.768759,0.0339056,0.106035,0.223152,0.114922,0.143737,0.766549,0.8397,0.623382,0.53878,0.0779072,0.569159,0.475095,0.685522,0.735275,0.917989,0.741923,0.996433,0.893131,0.0134448,0.0378968,0.0889549,0.0670308,0.678897,0.758124,0.551542,0.344571,0.996699,0.553249,0.844728,0.444574,0.53845,0.977022,0.574228,0.896016,0.503929,0.149421,0.370191,0.762952,0.897282,0.237875,0.149616,0.189861,0.815583,0.329774,0.399146,0.846166,0.47714,0.296362,0.105399,0.603938,0.454096,0.680646,0.496524,0.604094,0.120013,0.915674,0.459475,0.0272706,0.86417,0.606339,0.20911,0.64387,0.754404,0.530406,0.731671,0.749434,0.342459,0.150927,0.886121,0.770181,0.858508,0.666232,0.913341,0.461102,0.144822,0.459961,0.00480205,0.950663,0.809757,0.280345,0.469613,0.874075,0.0954461,0.618499,0.445467,0.379891,0.475028,0.709553,0.39691,0.514313,0.916437,0.0310854,0.253625,0.807739,0.331766,0.957949,0.768232,0.518818,0.296009,0.0906773,0.219287,0.252873,0.431868,0.278384,0.627257,0.688589,0.707134,0.340035,0.0275899,0.592675,0.499548,0.368415,0.880847,0.348043,0.170986,0.284086,0.588962,0.975181,0.311274,0.106898,0.482877,0.745385,0.218169,0.0530771,0.863459,0.945758,0.689712,0.261372,0.189216,0.0986714,0.923727,0.740804,0.447107,0.467499,0.207471,0.00694698,0.115647,0.365514,0.807084,0.954196,0.999031,0.192007,0.817486,0.704446,0.770022,0.873378,0.734025,0.587084,0.900383,0.183461,0.21922,0.691068,0.559061,0.241792,0.419159,0.939247,0.841685,0.624218,0.479897,0.132836,0.393306,0.73859,0.00838131,0.166407,0.928628,0.751475,0.399618,0.986339,0.0346886,0.816341,0.740605,0.0743489,0.659882,0.671847,0.0417038,0.567193,0.141815,0.167828,0.257992,0.0484219,0.677189,0.73629,0.099624,0.948897,0.0598549,0.156473,0.215237,0.41743,0.066523,0.31327,0.955418,0.370806,0.646668,0.530559,0.463971,0.342658,0.0994514,0.108549,0.490928,0.0212628,0.640434,0.329137,0.841968,0.748321,0.802415,0.072909,0.663543,0.00733787,0.884476,0.689223,0.416768,0.801232,0.584458,0.538474,0.464962,0.55509,0.343587,0.249011,0.403657,0.754207,0.282919,0.490033,0.99114,0.44882,0.350131,0.102742,0.753217,0.196819,0.786952,0.658704,0.873262,0.933117,0.255907,0.346237,0.589837,0.319228,0.118291,0.553214,0.185199,0.465239,0.690445,0.456779,0.99386,0.589732,0.485335,0.71241,0.944698,0.867819,0.542457,0.248411,0.934701,0.513348,0.904168,0.021663,0.527029,0.707416,0.0757042,0.584947,0.531158,0.432628,0.869603,0.428226,0.616506,0.820376,0.81437,0.957,0.396756,0.188641,0.381323,0.798355,0.840306,0.399914,0.134325,0.936638,0.13948,0.450898,0.123416,0.973373,0.178419,0.225592,0.600023,0.29327,0.365666,0.886654,0.508452,0.758849,0.241975,0.761916,0.600374,0.557837,0.293833,0.81,0.17519,0.192181,0.00143278,0.247954,0.527482,0.497918,0.140857,0.296657,0.0849286,0.0649557,0.969158,0.870641,0.294649,0.905141,0.579834,0.335042,0.188332,0.973397,0.397361,0.882058,0.0847135,0.745044,0.663553,0.64374,0.304706,0.888561,0.0503441,0.595676,0.756935,0.693211,0.508162,0.376656,0.733989,0.411423,0.586246,0.561634,0.24211,0.482968,0.686728,0.6629,0.588904,0.309858,0.232256,0.46836,0.835511,0.272319,0.859639,0.475884,0.302678,0.911327,0.763251,0.262976,0.875608,0.233893,0.979638,0.791522,0.254157,0.199746,0.770381,0.331365,0.705833,0.649689,0.00609493,0.246463,0.566741,0.337767,0.0135684,0.128407,0.144735,0.880039,0.337252,0.0724529,0.573828,0.163997,0.589663,0.0112431,0.755403,0.983251,0.637677,0.482181,0.308629,0.518616,0.499777,0.476545,0.552624,0.619036,0.0198189,0.0746477,0.651732,0.93974,0.672694,0.150423,0.529076,0.74262,0.611935,0.194683,0.208857,0.154874,0.169159,0.787854,0.659194,0.488846,0.688166,0.726669,0.538462,0.175462,0.135139,0.814136,0.474211,0.431879,0.672934,0.872011,0.389059,0.972803,0.714952,0.839717,0.247633,0.767542,0.926759,0.88964,0.373341,0.778139,0.685159,0.941372,0.430923,0.44397,0.888117,0.663539,0.221255,0.263952,0.711283,0.648718,0.883479,0.153593,0.940738,0.80234,0.400995,0.219271,0.802397,0.257211,0.623024,0.349106,0.793472,0.0737075,0.230799,0.407497,0.270454,0.225624,0.757947,0.285304,0.0632633,0.868724,0.0231375,0.591938,0.0166161,0.548448,0.663681,0.586488,0.18367,0.121695,0.293621,0.838899,0.183032,0.210123,|0.809892,0.149916,0.271471,0.373851,0.225959,0.596966,0.566206,0.296319,0.733595,0.351892,0.63523,0.594101,0.780437,0.928215,0.922369,0.784634,0.323248,0.543891,0.611286,0.105718,0.470782,0.575292,0.567769,0.987516,0.364888,0.85798,0.353732,0.791659,0.735258,0.357044,0.323178,0.0936564,0.633399,0.895174,0.462846,0.0163382,0.958528,0.208412,0.700566,0.995714,0.372621,0.909981,0.0174591,0.892752,0.47457,0.969965,0.153662,0.019128,0.53361,0.549368,0.170453,0.10126,0.279802,0.266675,0.497056,0.563599,0.772509,0.865619,0.379258,0.494251,0.780697,0.435436,0.861027,0.0551922,0.0268655,0.19553,0.356126,0.281062,0.0165963,0.327157,0.0324971,0.639867,0.806521,0.0355899,0.246207,0.104127,0.998861,0.439139,0.145729,0.585214,0.185429,0.205262,0.197086,0.823504,0.50365,0.210533,0.764222,0.580952,0.481683,0.137391,0.196062,0.778665,0.946487,0.721544,0.588683,0.109861,0.19001,0.729188,0.4285,0.88904,0.533116,0.191308,0.222184,0.00438142,0.495165,0.0975677,0.453835,0.137769,0.985994,0.232748,0.778278,0.00947291,0.49225,0.202477,0.0959117,0.635279,0.660765,0.313508,0.681167,0.0327654,0.088303,0.65531,0.948748,0.239115,0.564193,0.308445,0.715636,0.79505,0.859002,0.302309,0.153739,0.625834,0.42479,0.281366,0.671466,0.44982,0.9712,0.0697718,0.717485,0.400486,0.425457,0.164214,0.62902,0.995224,0.0307633,0.8642,0.392635,0.715261,0.809181,0.149915,0.0220776,0.604194,0.119455,0.377282,0.393426,0.153784,0.880695,0.46613,0.835805,0.44759,0.0588722,0.864039,0.959028,0.162687,0.585488,0.0042392,0.442278,0.902148,0.413737,0.635397,0.972083,0.319557,0.688625,0.63386,0.168059,0.853583,0.0815001,0.199553,0.265783,0.946213,0.576687,0.569404,0.253373,0.163812,0.832444,0.609314,0.216122,0.842358,0.111371,0.687008,0.306143,0.690847,0.418831,0.259016,0.21442,0.136399,0.0719146,0.352793,0.273129,0.855856,0.251027,0.885725,0.0270473,0.875159,0.711723,0.262418,0.0448866,0.207812,0.425751,0.0127305,0.377258,0.219651,0.978362,0.758958,0.408081,0.870042,0.441477,0.975143,0.975252,0.923798,0.204642,0.0467041,0.424564,0.824685,0.28481,0.141931,0.986893,0.805584,0.110169,0.611668,0.443393,0.244572,0.148789,0.46599,0.677876,0.337655,0.623649,0.672238,0.909161,0.741616,0.582565,0.572833,0.356383,0.192339,0.32184,0.3976,0.774413,0.0167153,0.32197,0.118593,0.208624,0.187987,0.747286,0.764435,0.602614,0.727217,0.609557,0.406248,0.125049,0.992135,0.0249859,0.555221,0.707425,0.144112,0.288561,0.310198,0.00656056,0.475334,0.631316,0.0785825,0.722821,0.621879,0.880944,0.0206621,0.0886989,0.991617,0.893978,0.115972,0.22412,0.938308,0.129549,0.521187,0.475482,0.333428,0.160981,0.391801,0.516669,0.243773,0.587238,0.547286,0.0305752,0.199337,0.16215,0.736368,0.430064,0.798596,0.80582,0.811701,0.0356177,0.827084,0.946087,0.905973,0.0165042,0.262209,0.219542,0.712942,0.830288,0.169776,0.396471,0.326598,0.42932,0.315503,0.701244,0.533661,0.154931,0.447595,0.900835,0.91811,0.802127,0.828057,0.172771,0.677368,0.572097,0.858619,0.256735,0.45612,0.311164,0.0993948,0.2189,0.18708,0.509095,0.00858033,0.499797,0.908996,0.656576,0.559582,0.104961,0.668612,0.341429,0.71445,0.230925,0.539346,0.967353,0.093468,0.0189096,0.796482,0.131104,0.685262,0.0213041,0.564152,0.824163,0.0312055,0.768897,0.194927,0.996733,0.12636,0.0762682,0.0522046,0.190288,0.239457,0.480865,0.718116,0.870173,0.624017,0.835345,0.72766,0.75889,0.764905,0.750397,0.724245,0.963209,0.872204,0.690451,0.0244791,0.645349,0.308607,0.259079,0.443139,0.238097,0.304176,0.736673,0.218108,0.398194,0.988118,0.28451,0.401604,0.267901,0.307568,0.939531,0.730663,0.206596,0.00264466,0.522638,0.341292,0.994385,0.104557,0.737688,0.248446,0.880675,0.287396,0.835451,0.184329,0.974473,0.0104834,0.0420508,0.993507,0.433899,0.383339,0.171244,0.166421,0.382434,0.566728,0.631473,0.355113,0.448024,0.217739,0.0982488,0.841778,0.729921,0.944595,0.660192,0.721022,0.515738,0.744123,0.572388,0.884053,0.761719,0.026048,0.707571,0.113569,0.512224,0.460845,0.157127,0.267461,0.640777,0.803603,0.590278,0.672004,0.118759,0.62947,0.878438,0.857583,0.219934,0.105247,0.975712,0.409854,0.120691,0.478777,0.498303,0.844183,0.233888,0.799956,0.286358,0.179487,0.755485,0.000473976,0.399574,0.914017,0.356512,0.669102,0.836805,0.953299,0.791611,0.833852,0.963459,0.892936,0.178453,0.792135,0.167214,0.905442,0.934604,0.556716,0.255542,0.788678,0.364416,0.834976,0.449163,0.659628,0.63938,0.252964,0.149961,0.803983,0.148035,0.371693,0.126986,0.522652,0.103815,0.5562,0.807385,0.277663,0.393441,0.0774628,0.464323,0.419617,0.0776423,0.511063,0.477504,0.882312,0.497473,0.609702,0.0481021,0.45552,0.810486,0.334731,0.932402,0.967209,0.755601,0.494749,0.314249,0.728808,0.595823,0.816134,0.88313,0.282556,0.864005,0.282939,0.208181,0.285529,0.143498,0.3101,0.791906,0.269636,0.727804,0.597663,0.477475,0.645042,0.580015,0.865073,0.126395,0.770978,0.786727,0.276885,0.998145,0.71305,0.0474975,0.402619,0.43093,0.478806,0.822011,0.0488583,0.184831,0.562476,0.33576,0.22737,0.788273,0.955164,0.687796,0.393788,0.986614,0.772799,0.627983,0.585268,0.0542745,0.64514,0.144699,0.780714,0.560088,0.540315,0.0416893,0.0715969,0.960171,0.135372,0.547481,0.0547812,0.321492,0.834208,0.48656,0.808372,0.215713,0.6101,0.46089,0.537477,0.909841,0.616894,0.580672,0.56721,0.0207437,0.678409,0.4286,0.831731,0.750885,0.192787,0.492554,0.347334,0.669002,0.0485346,0.0723696,0.713142,0.809101,0.903132,0.807545,0.474048,0.584225,0.71614,0.282834,0.818809,0.102546,0.135504,0.538826,0.257801,0.447659,0.928764,0.458507,0.478239,0.561712,0.945626,0.870597,0.294716,0.969151,0.982518,0.508762,0.975674,0.149114,0.652894,0.492827,0.513552,0.731032,0.0614685,0.754506,0.551738,0.67125,0.282726,0.0475684,0.477162,0.102415,0.359265,0.324885,0.947263,0.219429,0.0711952,0.483203,0.258595,0.46583,0.610854,0.266808,0.84161,0.0860625,0.340201,0.358641,0.490658,0.126217,0.695687,0.816586,0.777014,0.0817986,0.477208,0.223229,0.83946,0.737399,0.697743,0.150816,0.665098,0.84045,0.0180703,0.420219,0.850969,0.902207,0.846278,0.950734,0.827588,0.710844,0.566584,0.656092,0.76232,0.162801,0.312602,0.180165,0.841825,0.190531,0.446642,0.210999,0.177305,0.63274,0.902219,0.368697,0.628138,0.429843,0.431174,0.643648,0.601937,0.100541,0.690022,0.689003,0.723678,0.256519,0.900554,0.29215,0.351409,0.0878982,0.677851,0.722288,0.525627,0.6782,0.671606,0.396098,0.521293,0.219705,0.240404,0.573656,0.562129,0.9742,0.373635,0.930975,0.3324,0.921618,0.0467112,0.870738,0.647746,0.855064,0.599271,0.584125,0.251201,0.330678,0.922338,0.52831,0.882816,0.256226,0.533031,0.731379,0.825882,0.69362,0.389317,0.00671905,0.334664,0.864274,0.295936,0.72773,0.13437,0.837645,0.669859,0.826754,0.155353,0.670036,0.43037,0.645119,0.932383,0.98478,0.221052,0.525584,0.15886,0.1717,0.337854,0.675387,0.680766,0.543505,0.926636,0.458588,0.733833,0.33843,0.0634628,0.389028,0.377928,0.526003,0.0961005,0.442296,0.711768,0.27725,0.29425,0.203629,0.963047,0.198857,0.0579445,0.803991,0.513534,0.0595524,0.54939,0.563161,0.417202,0.102097,0.503844,0.0727711,0.995294,0.995891,0.855651,0.952598,0.879999,0.504638,0.450397,0.258042,0.27676,0.332891,0.43346,0.360618,0.0134021,0.590056,0.554433,0.897481,0.587761,0.213298,0.228393,0.353253,0.366738,0.472954,0.92826,0.333031,0.359128,0.253863,0.416768,0.519181,0.934278,0.79662,0.0464364,0.567242,0.227963,0.865773,0.353663,0.613271,0.398062,0.0146492,0.145632,0.109789,0.949884,0.825701,0.638054,0.63285,0.477669,0.382004,0.661434,0.732983,0.331564,0.413419,0.882783,0.70617,0.477191,0.182805,0.177857,0.166367,0.771224,0.598853,0.469597,0.638693,0.107839,0.459902,0.0998099,0.0536613,0.869234,0.0354127,0.502478,0.0815157,0.311608,0.874718,0.411439,0.750201,0.0495734,0.416471,0.0537021,0.583624,0.902178,0.330894,0.918082,0.0516772,0.003016,0.442493,0.65822,0.964036,0.658425,0.383389,0.590692,0.757539,0.744059,0.221427,0.862268,0.93848,0.295142,0.742878,0.476359,0.683871,0.149099,0.0283291,0.836015,0.556507,0.988012,0.484953,0.900118,0.787771,0.503529,0.688918,0.634129,0.41055,0.468026,0.533643,0.60146,0.970188,0.95509,0.861399,0.242769,0.783708,0.710214,0.298837,0.478815,0.286882,0.634299,0.239293,0.335075,0.66012,0.872688,0.542028,0.982405,0.332856,0.652632,0.730235,0.305224,0.376956,0.267633,0.612379,0.213424,0.814434,0.385846,0.346854,0.0529119,0.968231,0.509394,0.939584,0.0278111,0.364134,0.833806,0.189667,0.899214,0.984108,0.149153,0.190701,0.234235,0.844596,0.0516851,0.628843,0.574843,0.547857,0.505536,0.91025,0.567358,0.0098933,0.341569,0.178981,0.156782,0.987824,0.100055,0.265045,0.145863,0.813577,0.527602,0.00600922,0.12351,0.671386,0.844725,0.341313,0.262664,0.730765,0.880537,0.0405186,0.581599,0.165682,0.712728,0.70405,0.806352,0.863451,0.0818149,0.486688,0.602788,0.263381,0.238949,0.789446,0.0444462,0.795651,0.226203,0.50995,0.621519,0.428848,0.0837297,0.628609,0.84411,0.216571,0.478782,0.736007,0.638571,0.573182,0.488684,0.574436,0.637062,0.598037,0.754881,0.293336,0.581943,0.652797,0.251453,0.899424,0.376457,0.91133,0.0236892,0.40378,0.627255,0.0130274,0.147429,0.502058,0.0104854,0.402163,0.95934,0.552959,0.329375,0.392947,0.674053,|0.405433,0.341407,0.939145,0.285099,0.762639,0.166804,0.646879,0.205219,0.138506,0.45568,0.18203,0.523458,0.533574,0.762287,0.620201,0.671477,0.224763,0.154868,0.175843,0.675296,0.642195,0.580209,0.440983,0.778089,0.671679,0.865104,0.962093,0.182491,0.542503,0.503055,0.91128,0.41252,0.0993308,0.0318614,0.67252,0.228301,0.706868,0.445991,0.831408,0.0353875,0.431026,0.528241,0.460591,0.411797,0.155032,0.0917512,0.195982,0.405362,0.33661,0.780393,0.835642,0.187293,0.125173,0.857526,0.991214,0.56623,0.697302,0.394928,0.716654,0.0558475,0.191014,0.831432,0.230055,0.266534,0.669648,0.223693,0.439934,0.841301,0.0174145,0.724308,0.553854,0.499872,0.049423,0.0888744,0.880287,0.391209,0.414388,0.892298,0.542273,0.839702,0.380725,0.850118,0.161225,0.710068,0.285741,0.817784,0.334944,0.888857,0.441248,0.119178,0.150439,0.959435,0.163927,0.323019,0.32633,0.0172086,0.41821,0.195117,0.160462,0.487394,0.512829,0.717881,0.33365,0.0759111,0.262504,0.230834,0.562945,0.0622209,0.0478704,0.202146,0.22742,0.381879,0.166938,0.694118,0.592117,0.507545,0.0101334,0.631319,0.652585,0.122144,0.559438,0.511019,0.385165,0.265508,0.973955,0.156293,0.455348,0.278649,0.86289,0.474937,0.194832,0.471384,0.87305,0.223247,0.590782,0.0185445,0.738737,0.260529,0.995969,0.615257,0.196392,0.969628,0.545845,0.967194,0.162644,0.688265,0.727686,0.952914,0.153514,0.748781,0.158888,0.764523,0.959723,0.496417,0.837961,0.638321,0.73285,0.808355,0.246155,0.953302,0.764567,0.00439513,0.475694,0.863203,0.778406,0.827859,0.8703,0.461772,0.0887827,0.837093,0.991265,0.714166,0.222935,0.685947,0.687062,0.654466,0.156249,0.971755,0.63871,0.0293394,0.0498071,0.199065,0.231032,0.235929,0.405481,0.83976,0.561662,0.966888,0.57653,0.136635,0.643809,0.99299,0.852858,0.583323,0.970547,0.254785,0.228932,0.143966,0.530366,0.392135,0.190263,0.0349064,0.240758,0.447981,0.940982,0.401173,0.589642,0.877215,0.955489,0.491361,0.718756,0.735131,0.664941,0.418826,0.611641,0.662228,0.704821,0.406914,0.254097,0.837706,0.364406,0.102016,0.61913,0.529426,0.649026,0.696044,0.735534,0.167302,0.470063,0.656428,0.906944,0.920962,0.84339,0.00797188,0.89358,0.896723,0.494915,0.857275,0.31177,0.181464,0.744207,0.495019,0.109751,0.97393,0.135595,0.43751,0.539325,0.740755,0.797418,0.594977,0.71681,0.297566,0.64038,0.136634,0.366649,0.399808,0.0784768,0.474729,0.587693,0.833044,0.430955,0.94016,0.133648,0.632678,0.0669938,0.216425,0.985306,0.950533,0.91568,0.581834,0.543206,0.0447148,0.577387,0.170037,0.210996,0.808866,0.289187,0.419992,0.725883,0.128516,0.784658,0.0479187,0.742668,0.0960581,0.784847,0.525188,0.541211,0.278758,0.466837,0.568481,0.0638629,0.224876,0.206322,0.0804064,0.0492567,0.152864,0.474236,0.350168,0.810917,0.0437573,0.251418,0.92158,0.387729,0.624115,0.087283,0.0107361,0.870936,0.66674,0.119478,0.0687942,0.743062,0.856049,0.635554,0.478801,0.501197,0.681727,0.720514,0.665859,0.635579,0.85548,0.38959,0.0775085,0.264626,0.605927,0.0529394,0.0786134,0.326665,0.542438,0.370794,0.15543,0.264879,0.259304,0.419877,0.206543,0.509437,0.917722,0.134735,0.118746,0.091424,0.840719,0.894878,0.704185,0.18361,0.696647,0.443766,0.903318,0.357208,0.952505,0.310405,0.0952218,0.634878,0.23535,0.741149,0.412004,0.961329,0.362813,0.638129,0.116686,0.242206,0.833239,0.936173,0.0517758,0.378175,0.665205,0.803911,0.769211,0.0945343,0.578036,0.367719,0.128587,0.799467,0.187475,0.453636,0.0784032,0.192889,0.194414,0.323057,0.787959,0.542075,0.755461,0.32577,0.176203,0.658991,0.451318,0.330515,0.508399,0.298032,0.0901401,0.312513,0.267823,0.156686,0.128139,0.850153,0.150232,0.696115,0.434308,0.150389,0.600394,0.586835,0.517207,0.850264,0.393651,0.947704,0.66163,0.153764,0.589849,0.348148,0.234958,0.578453,0.558619,0.0948609,0.579922,0.63587,0.0161018,0.544038,0.18457,0.800948,0.821193,0.214802,0.71282,0.605859,0.733887,0.141407,0.728169,0.353479,0.783351,0.196856,0.109566,0.317899,0.963742,0.20932,0.0806384,0.453441,0.0867232,0.241908,0.267797,0.601914,0.991904,0.595896,0.0418948,0.424132,0.552807,0.0351694,0.116977,0.699471,0.664454,0.496512,0.847078,0.380592,0.145141,0.911897,0.362079,0.818417,0.175588,0.921997,0.89031,0.0803132,0.24931,0.539313,0.852946,0.502153,0.817945,0.059991,0.845997,0.463778,0.284822,0.685888,0.686456,0.22602,0.239906,0.524642,0.0164709,0.14116,0.192161,0.306526,0.906932,0.893298,0.645291,0.204463,0.8765,0.721884,0.502842,0.788938,0.359057,0.0941001,0.881274,0.29049,0.682415,0.194198,0.32175,0.125685,0.73562,0.333546,0.96661,0.919256,0.953021,0.757758,0.174476,0.342299,0.390834,0.798745,0.806917,0.722376,0.000558317,0.907225,0.877931,0.157945,0.492412,0.0301574,0.898925,0.802963,0.59917,0.178943,0.955097,0.0811998,0.978359,0.0543803,0.996722,0.616926,0.550931,0.640832,0.414916,0.22833,0.46793,0.5923,0.0811607,0.189835,0.49854,0.155255,0.201183,0.946624,0.435465,0.510431,0.325925,0.364898,0.196684,0.815412,0.758051,0.785498,0.0532995,0.56353,0.429837,0.888597,0.762416,0.235378,0.428913,0.0401286,0.0778502,0.394556,0.127438,0.543836,0.989089,0.488499,0.830172,0.545442,0.165383,0.134993,0.540362,0.320575,0.567453,0.65227,0.675558,0.260932,0.76124,0.471031,0.319208,0.256848,0.617281,0.216737,0.43829,0.147931,0.572393,0.730664,0.663599,0.0150758,0.61448,0.987339,0.118427,0.671525,0.199055,0.970755,0.376328,0.195181,0.678794,0.625581,0.0884274,0.511922,0.517625,0.518804,0.905833,0.152616,0.689226,0.476181,0.259977,0.123309,0.177028,0.968005,0.0834007,0.275439,0.0519429,0.232614,0.110625,0.817613,0.323107,0.881901,0.652395,0.0246679,0.652606,0.211511,0.894711,0.339847,0.993196,0.139192,0.564894,0.960546,0.354278,0.294445,0.0610148,0.950185,0.266335,0.91086,0.378833,0.73018,0.618025,0.559149,0.594044,0.0731104,0.963129,0.267855,0.581313,0.0704114,0.242173,0.792124,0.455794,0.0796967,0.0488275,0.882218,0.36438,0.446857,0.454093,0.411698,0.519759,0.578593,0.475198,0.600084,0.325298,0.428007,0.282711,0.157549,0.795052,0.538188,0.493848,0.0968807,0.199351,0.768598,0.274016,0.809051,0.135779,0.10066,0.196413,0.415268,0.412794,0.099351,0.426823,0.454981,0.208864,0.950793,0.212169,0.473092,0.00858057,0.443935,0.26022,0.265222,0.781007,0.51931,0.379843,0.880697,0.353424,0.263384,0.994461,0.120957,0.0202253,0.80339,0.299569,0.182981,0.436426,0.694919,0.20166,0.371304,0.632813,0.341793,0.71803,0.506375,0.093089,0.859239,0.931657,0.848534,0.143611,0.817185,0.412631,0.800135,0.298099,0.711625,0.588157,0.730731,0.235941,0.306731,0.974381,0.511737,0.560775,0.422957,0.739038,0.36299,0.124268,0.479391,0.225191,0.226955,0.320813,0.125787,0.56568,0.202714,0.680577,0.834651,0.0712993,0.638143,0.25731,0.0545016,0.681273,0.580176,0.977958,0.522045,0.249342,0.311977,0.69778,0.177271,0.963643,0.727994,0.472847,0.334608,0.0448966,0.886524,0.162438,0.169716,0.933435,0.263127,0.781063,0.698724,0.355392,0.666387,0.53667,0.303162,0.851932,0.581997,0.785959,0.0416189,0.527956,0.367848,0.976729,0.144929,0.730576,0.85775,0.403738,0.245435,0.588565,0.293954,0.570404,0.0620514,0.218726,0.36945,0.52385,0.13432,0.996219,0.0193963,0.716853,0.380636,0.148744,0.432005,0.10119,0.320496,0.206505,0.268656,0.0935141,0.730314,0.458424,0.681136,0.458836,0.73562,0.391083,0.151727,0.626641,0.397283,0.756233,0.986759,0.335269,0.877319,0.387093,0.280137,0.265742,0.876421,0.863215,0.965138,0.662108,0.742553,0.649771,0.424885,0.478914,0.84268,0.807042,0.607312,0.848648,0.830404,0.0717869,0.571332,0.0561556,0.00869018,0.0140148,0.308601,0.645923,0.554238,0.777562,0.313923,0.131616,0.157357,0.394361,0.212986,0.871462,0.167688,0.821381,0.45477,0.795886,0.174041,0.982727,0.273094,0.762435,0.0844988,0.279762,0.939284,0.263543,0.816807,0.407516,0.35668,0.0215607,0.213816,0.124766,0.0821405,0.355013,0.180236,0.518055,0.100847,0.0406546,0.00129008,0.54564,0.114203,0.379511,0.998278,0.459157,0.233261,0.411864,0.893952,0.458009,0.871769,0.701875,0.67737,0.956771,0.658404,0.517849,0.27448,0.90477,0.75783,0.798551,0.491436,0.396363,0.428138,0.721924,0.760348,0.291594,0.239499,0.336821,0.656298,0.776859,0.319936,0.474646,0.735342,0.195344,0.0217313,0.775514,0.750054,0.367358,0.539756,0.149892,0.289376,0.24626,0.894612,0.668744,0.161736,0.967121,0.400485,0.976204,0.657876,0.967852,0.778574,0.893325,0.951461,0.102522,0.901227,0.295671,0.480289,0.371107,0.73464,0.245617,0.940364,0.235889,0.299336,0.369143,0.434464,0.424294,0.227741,0.952338,0.390918,0.410843,0.740032,0.70604,0.924362,0.884788,0.593421,0.57811,0.120941,0.378985,0.073878,0.139226,0.814674,0.748897,0.378051,0.65711,0.490948,0.835728,0.240848,0.187315,0.567582,0.951269,0.500857,0.2249,0.99047,0.562211,0.779201,0.224752,0.34122,0.250186,0.218663,0.0947106,0.695609,0.364349,0.894475,0.377198,0.559997,0.58629,0.152835,0.146132,0.356507,0.0861029,0.358304,0.692495,0.16682,0.756166,0.997079,0.706501,0.715365,0.362325,0.0222347,0.054492,0.718254,0.172336,0.978779,0.0114253,0.163834,0.306919,0.102349,0.808703,0.414971,0.641093,0.0580477,0.15938,0.515715,0.144542,0.54914,0.75329,0.444675,0.659931,0.0456587,0.286276,0.462615,0.43129,0.211938,0.94953,0.46476,0.779602,0.0525976,0.880614,0.88905,0.735021,|0.719499,0.32502,0.7561,0.102068,0.93195,0.562199,0.362984,0.769307,0.744215,0.347131,0.532235,0.133832,0.435979,0.874984,0.991484,0.75259,0.863191,0.738156,0.967353,0.179861,0.375095,0.117792,0.141703,0.196785,0.0389763,0.33667,0.712609,0.703638,0.861263,0.694104,0.629738,0.184246,0.4202,0.565512,0.758176,0.856008,0.646522,0.355571,0.927408,0.497279,0.45062,0.0291678,0.150012,0.678346,0.518507,0.846646,0.117629,0.711795,0.505643,0.862569,0.258639,0.170523,0.399369,0.354366,0.491247,0.59602,0.942561,0.682112,0.0884988,0.694255,0.605241,0.31627,0.95449,0.416931,0.456355,0.128743,0.730051,0.0707252,0.78723,0.695497,0.541987,0.958085,0.353595,0.666252,0.0730247,0.546351,0.628497,0.704342,0.816198,0.614805,0.323724,0.436207,0.206082,0.906108,0.215324,0.641381,0.731641,0.320591,0.817356,0.217844,0.0828009,0.739038,0.77071,0.540821,0.839209,0.595474,0.451387,0.697549,0.118796,0.120643,0.585697,0.0647765,0.867708,0.471484,0.226119,0.423471,0.54303,0.602207,0.939183,0.605442,0.970909,0.634,0.701404,0.407684,0.166719,0.432778,0.0300041,0.0697142,0.102144,0.90633,0.0111793,0.226848,0.433772,0.820198,0.293785,0.789032,0.958473,0.59933,0.650556,0.0490517,0.873285,0.0655928,0.407168,0.372894,0.246198,0.422132,0.668614,0.331686,0.265689,0.770998,0.691548,0.735283,0.318771,0.0948173,0.277179,0.0280018,0.983802,0.0986279,0.47037,0.852885,0.89774,0.474328,0.980926,0.413148,0.771679,0.691974,0.543688,0.902059,0.63384,0.00586939,0.430941,0.467079,0.802362,0.158478,0.8516,0.560119,0.0347065,0.906853,0.10704,0.855684,0.690792,0.290515,0.27658,0.020191,0.0226362,0.439813,0.133299,0.265601,0.472264,0.385646,0.505829,0.797628,0.172204,0.668978,0.519228,0.854689,0.0428132,0.4076,0.524786,0.612295,0.830189,0.040633,0.349571,0.0595554,0.778202,0.309205,0.00436687,0.274085,0.806151,0.72547,0.522045,0.0712949,0.341052,0.932566,0.819895,0.630902,0.749063,0.104356,0.98432,0.955506,0.0367455,0.650529,0.610643,0.852179,0.959964,0.291431,0.771839,0.226512,0.95604,0.627941,0.174085,0.215718,0.756023,0.827689,0.258388,0.456549,0.957932,0.0776864,0.489133,0.354606,0.76769,0.434276,0.992929,0.0611533,0.258915,0.433698,0.699796,0.726044,0.162612,0.924823,0.865381,0.822245,0.100701,0.482691,0.461875,0.915104,0.932338,0.84622,0.980348,0.802031,0.571335,0.64512,0.556284,0.744692,0.800398,0.404491,0.666884,0.779622,0.700259,0.494168,0.51738,0.794484,0.293751,0.937083,0.714626,0.587852,0.319525,0.784812,0.662491,0.16389,0.392085,0.344217,0.0891856,0.247804,0.101186,0.417643,0.253866,0.0950889,0.660114,0.51744,0.754048,0.643536,0.0889819,0.147926,0.283122,0.206078,0.237702,0.533955,0.170058,0.017442,0.393858,0.29801,0.704247,0.876344,0.768388,0.844249,0.832632,0.178815,0.0171357,0.788694,0.813083,0.527243,0.698346,0.942748,0.0917261,0.408102,0.986663,0.466749,0.944431,0.473741,0.749679,0.570014,0.531476,0.0322928,0.680427,0.682393,0.901275,0.445539,0.330047,0.27215,0.532133,0.0820349,0.2543,0.671895,0.32592,0.917135,0.638089,0.377756,0.586633,0.604308,0.936912,0.97588,0.372735,0.721503,0.608793,0.760295,0.247686,0.836862,0.54245,0.877735,0.394319,0.631526,0.255799,0.0310198,0.246943,0.280468,0.975513,0.945648,0.166874,0.514292,0.0705131,0.102285,0.392912,0.653902,0.0961006,0.449006,0.559069,0.799282,0.290015,0.659645,0.49601,0.0210875,0.397539,0.240018,0.116367,0.528232,0.144623,0.562721,0.973241,0.43058,0.732485,0.719002,0.496068,0.453648,0.856323,0.77472,0.6222,0.924756,0.170667,0.442439,0.641862,0.0717158,0.89341,0.379703,0.0531799,0.979178,0.721067,0.492817,0.536992,0.0731655,0.104599,0.150491,0.569303,0.692884,0.679159,0.019662,0.73219,0.955509,0.299902,0.802642,0.716876,0.548029,0.909631,0.72444,0.923961,0.842906,0.171548,0.0874355,0.970069,0.676086,0.802434,0.58121,0.627202,0.524661,0.982049,0.429421,0.42841,0.896466,0.645426,0.629865,0.68509,0.210196,0.0538443,0.25974,0.0601298,0.949398,0.793034,0.0165998,0.657742,0.941584,0.00303733,0.83799,0.0247295,0.666865,0.514162,0.6395,0.851128,0.868814,0.298086,0.424064,0.801848,0.755315,0.410536,0.861401,0.709876,0.327765,0.428221,0.123465,0.871293,0.567465,0.953993,0.745804,0.940699,0.80873,0.275398,0.62213,0.420179,0.796979,0.989345,0.75637,0.822365,0.158385,0.589092,0.389088,0.610636,0.364607,0.290381,0.936826,0.103779,0.987221,0.349919,0.906557,0.142029,0.552958,0.315255,0.776796,0.681194,0.015081,0.358652,0.195016,0.625358,0.000309587,0.278232,0.612065,0.544893,0.748917,0.590818,0.237827,0.607111,0.440892,0.834983,0.288677,0.182438,0.871744,0.83259,0.962541,0.886519,0.217445,0.967714,0.980275,0.236542,0.196654,0.741999,0.128473,0.516779,0.393119,0.580172,0.713751,0.800294,0.484852,0.228653,0.337204,0.0627972,0.0553263,0.392856,0.200199,0.655887,0.0580019,0.894951,0.719551,0.142927,0.161606,0.922258,0.225762,0.470922,0.577373,0.258898,0.346299,0.645676,0.465818,0.628184,0.322389,0.903261,0.520939,0.952559,0.702357,0.0121819,0.768179,0.628207,0.848181,0.132005,0.434997,0.646841,0.234126,0.187895,0.610697,0.25423,0.779081,0.352565,0.295648,0.0619987,0.218569,0.4903,0.552176,0.333539,0.955344,0.386978,0.124352,0.314234,0.00435519,0.811101,0.87034,0.272356,0.740206,0.427857,0.225458,0.414501,0.265583,0.577843,0.491165,0.315372,0.554373,0.824851,0.902633,0.70898,0.505643,0.843084,0.548886,0.201725,0.643895,0.1731,0.635052,0.00361955,0.589722,0.157961,0.495154,0.52586,0.114121,0.190374,0.638356,0.0304645,0.865628,0.161657,0.191209,0.680349,0.507307,0.13317,0.914467,0.768613,0.647108,0.311462,0.318019,0.554731,0.0508131,0.646254,0.996922,0.476177,0.0852126,0.400955,0.677292,0.982505,0.954673,0.251346,0.115519,0.453378,0.283087,0.0565886,0.974326,0.507652,0.859097,0.297153,0.0487662,0.406133,0.504964,0.440293,0.470179,0.674316,0.781384,0.985828,0.55888,0.679686,0.54769,0.172605,0.202897,0.437727,0.525721,0.698597,0.785295,0.485152,0.507556,0.297423,0.47472,0.763239,0.436787,0.156489,0.547987,0.471237,0.582459,0.409689,0.954471,0.326352,0.691809,0.288029,0.871711,0.923241,0.864443,0.609196,0.970783,0.941938,0.56798,0.555568,0.483655,0.12997,0.667428,0.620276,0.183645,0.365871,0.957523,0.394794,0.417216,0.320993,0.661807,0.286909,0.416508,0.54555,0.909683,0.568982,0.874133,0.120467,0.891035,0.884854,0.429558,0.702864,0.369859,0.117152,0.896823,0.753814,0.896488,0.232302,0.55235,0.157037,0.36493,0.319185,0.590809,0.849476,0.460088,0.49261,0.513327,0.965869,0.0230708,0.297234,0.347953,0.565194,0.589376,0.648535,0.884105,0.237605,0.870579,0.814293,0.143395,0.817746,0.948815,0.619735,0.209758,0.319345,0.543018,0.278409,0.578423,0.0962835,0.716747,0.21406,0.192059,0.179633,0.917708,0.0397807,0.452443,0.928764,0.151384,0.866729,0.464388,0.780844,0.263117,0.088793,0.275424,0.0111732,0.37283,0.731853,0.210474,0.4495,0.906758,0.967293,0.377606,0.922326,0.330323,0.131759,0.93379,0.666947,0.599098,0.397664,0.202943,0.253363,0.548359,0.168113,0.578066,0.628873,0.237271,0.134458,0.793448,0.0186974,0.971338,0.0267877,0.626511,0.141246,0.783272,0.758089,0.214846,0.666451,0.297018,0.750851,0.525046,0.431207,0.30045,0.883371,0.0460076,0.143743,0.922383,0.751495,0.905525,0.0877346,0.642205,0.595122,0.389208,0.696789,0.182146,0.781483,0.0158245,0.572969,0.0476026,0.905153,0.220911,0.657968,0.870178,0.141712,0.936365,0.675961,0.220773,0.507823,0.326402,0.149776,0.020875,0.124158,0.460712,0.349589,0.319072,0.963111,0.569268,0.126792,0.195378,0.911363,0.444213,0.049908,0.229507,0.114132,0.91369,0.00341451,0.521233,0.145595,0.264564,0.0194247,0.954099,0.0768678,0.803274,0.795752,0.151933,0.862139,0.382378,0.99166,0.0316779,0.885106,0.20065,0.208104,0.832457,0.730138,0.917424,0.370226,0.505977,0.094105,0.104299,0.796669,0.840231,0.587346,0.584014,0.247612,0.439397,0.481283,0.839406,0.791727,0.63987,0.577336,0.263542,0.803206,0.533202,0.518122,0.275437,0.634348,0.493567,0.799117,0.560184,0.400092,0.745397,0.165032,0.693182,0.0469236,0.0509694,0.619217,0.2985,0.693583,0.889919,0.247307,0.760812,0.612285,0.107718,0.0766194,0.813363,0.155717,0.607499,0.471705,0.720965,0.60695,0.102852,0.235229,0.00847095,0.886554,0.896536,0.619453,0.30857,0.197029,0.881904,0.263421,0.647798,0.380757,0.677905,0.326892,0.478384,0.265333,0.977325,0.312125,0.559211,0.148808,0.627589,0.589578,0.903876,0.744256,0.91695,0.283618,0.0649109,0.323195,0.755656,0.828636,0.280845,0.0767031,0.241102,0.293422,0.0227157,0.00444126,0.721756,0.490971,0.406073,0.152333,0.503132,0.284803,0.877558,0.493653,0.398009,0.715952,0.768875,0.259102,0.601082,0.482821,0.106764,0.863048,0.825889,0.636373,0.347413,0.278541,0.346366,0.856733,0.565239,0.264005,0.913698,0.358299,0.529321,0.474513,0.240306,0.614191,0.0662677,0.769877,0.426823,0.195883,0.443626,0.996452,0.93952,0.316445,0.818193,0.71006,0.366412,0.847113,0.482147,0.921894,0.518836,0.68531,0.901257,0.0584049,0.834697,0.305674,0.12844,0.612553,0.496951,0.535273,0.692435,0.665838,0.986269,0.535831,0.768876,0.923726,0.243238,0.835939,0.685092,0.11406,0.453211,0.139392,0.900898,0.97626,0.029678,0.668482,0.38603,0.185716,0.340581,0.323128,0.873582,0.8632,0.380892,0.857927,0.52053,0.610345,0.431098,0.931293,0.757696,0.564348,0.152668,|0.858545,0.00886112,0.486326,0.950058,0.746181,0.938213,0.871645,0.352907,0.157806,0.832949,0.601266,0.410498,0.196509,0.607582,0.355682,0.646157,0.905509,0.606964,0.882718,0.0425931,0.0261889,0.280082,0.988554,0.895939,0.468653,0.0863045,0.843854,0.167618,0.0898913,0.990132,0.399336,0.00857127,0.358504,0.00170588,0.67175,0.929573,0.159124,0.991146,0.0245554,0.87504,0.593111,0.464661,0.735392,0.145851,0.473389,0.624433,0.418125,0.297867,0.115064,0.830719,0.269087,0.0329515,0.239231,0.475225,0.195068,0.725048,0.434225,0.31461,0.915761,0.616984,0.758426,0.114713,0.967927,0.621237,0.222425,0.0758731,0.0543568,0.595017,0.207111,0.342597,0.766139,0.040561,0.233732,0.225601,0.282775,0.4639,0.0546681,0.0954178,0.673599,0.508974,0.607404,0.420446,0.871142,0.211652,0.945753,0.732142,0.325755,0.946808,0.778144,0.777408,0.545589,0.940117,0.330791,0.347534,0.365834,0.25531,0.0133538,0.63716,0.788141,0.3152,0.962899,0.525989,0.305906,0.47802,0.605752,0.374481,0.689267,0.209191,0.692353,0.481817,0.0089252,0.70564,0.0853251,0.94021,0.549298,0.276111,0.272987,0.148579,0.926719,0.27762,0.348237,0.867726,0.638364,0.369816,0.575455,0.929789,0.491477,0.550533,0.370111,0.987518,0.688147,0.901994,0.594986,0.396181,0.488742,0.581967,0.592354,0.272163,0.291371,0.838623,0.727003,0.983167,0.376325,0.262733,0.988061,0.213119,0.663738,0.0511748,0.70301,0.840422,0.299515,0.198452,0.949431,0.195596,0.545048,0.774883,0.412632,0.440113,0.107971,0.238769,0.809174,0.900324,0.0464428,0.660776,0.932948,0.801578,0.339178,0.103897,0.020362,0.702682,0.189652,0.744458,0.0812239,0.712132,0.472113,0.143622,0.87829,0.208917,0.0523174,0.0425907,0.661842,0.680022,0.655592,0.306493,0.203128,0.804719,0.485529,0.173266,0.800645,0.718203,0.701935,0.79912,0.763592,0.235236,0.856654,0.461869,0.899712,0.373079,0.740942,0.706747,0.121611,0.842541,0.497828,0.805703,0.912887,0.785403,0.485763,0.260371,0.606146,0.179697,0.628705,0.438448,0.0886708,0.434723,0.185647,0.584623,0.316762,0.117499,0.312597,0.362967,0.219139,0.513139,0.0584927,0.519826,0.608888,0.65453,0.413787,0.897871,0.933672,0.597294,0.0907756,0.442054,0.688444,0.845371,0.766706,0.641676,0.639245,0.958384,0.522723,0.51053,0.795738,0.846671,0.095367,0.899456,0.337442,0.884376,0.142233,0.674636,0.271942,0.988151,0.862839,0.803252,0.892606,0.0680227,0.192564,0.837515,0.186821,0.0147277,0.581011,0.892527,0.0009045,0.785875,0.488964,0.406818,0.898541,0.852236,0.560109,0.167262,0.802551,0.142811,0.47004,0.930829,0.0957485,0.0127237,0.346551,0.90998,0.491047,0.556492,0.76761,0.0185078,0.939825,0.577619,0.995989,0.835532,0.945888,0.628746,0.072702,0.446162,0.171961,0.827939,0.623099,0.0127251,0.494123,0.108676,0.49062,0.848797,0.558575,0.672058,0.652856,0.108984,0.668216,0.0595695,0.197813,0.82924,0.237142,0.0418869,0.186447,0.225746,0.408844,0.933762,0.199457,0.502266,0.979183,0.612849,0.253895,0.630003,0.0853302,0.952622,0.476561,0.722586,0.296288,0.488745,0.433838,0.0327714,0.255367,0.896495,0.509714,0.348363,0.334854,0.916979,0.22309,0.503952,0.485294,0.779665,0.934128,0.850761,0.460525,0.499609,0.253093,0.488873,0.837238,0.93975,0.524769,0.84016,0.977997,0.0748276,0.307842,0.938327,0.510451,0.832052,0.719931,0.0701748,0.784277,0.0687417,0.115355,0.924735,0.148754,0.912322,0.534183,0.881905,0.281516,0.628405,0.775892,0.369232,0.112768,0.198884,0.295764,0.364338,0.376019,0.889152,0.954394,0.70353,0.0283316,0.3481,0.0499068,0.429965,0.706964,0.0513839,0.558965,0.349994,0.291203,0.898933,0.595792,0.462628,0.913116,0.38884,0.795587,0.226135,0.129681,0.306503,0.858468,0.518851,0.108557,0.286908,0.399438,0.934392,0.652032,0.663837,0.823732,0.29779,0.0219761,0.376055,0.993742,0.0680903,0.314011,0.686601,0.987053,0.896317,0.925193,0.627946,0.788482,0.652112,0.293076,0.616118,0.330512,0.588143,0.0628795,0.556758,0.692451,0.699985,0.348071,0.315749,0.616857,0.474064,0.989579,0.578209,0.804736,0.351905,0.77393,0.660504,0.388587,0.172168,0.355144,0.872356,0.576531,0.471723,0.361432,0.498129,0.45433,0.880515,0.442474,0.884997,0.487223,0.98571,0.503997,0.579827,0.326914,0.170554,0.677252,0.707402,0.0519286,0.0574166,0.0908123,0.531375,0.324166,0.132077,0.603491,0.0856749,0.714512,0.664017,0.0165008,0.948173,0.0346086,0.157236,0.601544,0.9684,0.449555,0.770821,0.967588,0.0698913,0.533849,0.109474,0.865071,0.730033,0.0537186,0.201144,0.502768,0.138397,0.261078,0.691789,0.53063,0.276913,0.568897,0.890768,0.680954,0.620001,0.343197,0.0198421,0.996841,0.177744,0.290006,0.460179,0.0155994,0.0760478,0.253715,0.709045,0.500959,0.0879232,0.941931,0.951298,0.521362,0.444138,0.933142,0.244939,0.525756,0.517808,0.0546579,0.175551,0.941436,0.309343,0.431899,0.817412,0.740043,0.141708,0.901164,0.146912,0.961883,0.204682,0.303181,0.176344,0.21593,0.0852945,0.926048,0.0273491,0.838119,0.903878,0.158524,0.409045,0.0258727,0.0696391,0.932661,0.908392,0.484273,0.600513,0.298381,0.308305,0.0779282,0.701751,0.286822,0.969287,0.0286729,0.928894,0.0961651,0.485207,0.169693,0.0670598,0.287292,0.391084,0.934878,0.249214,0.84468,0.181028,0.420333,0.569953,0.915285,0.645412,0.308928,0.205112,0.38728,0.980064,0.920507,0.578045,0.484711,0.52578,0.308797,0.293734,0.222806,0.275712,0.131788,0.171303,0.955094,0.670079,0.390749,0.655027,0.72255,0.208435,0.24509,0.449088,0.0767794,0.719355,0.831607,0.477871,0.85431,0.576234,0.931495,0.326173,0.470644,0.9874,0.57929,0.807902,0.453348,0.620843,0.257173,0.561708,0.31577,0.470032,0.431115,0.00843638,0.329212,0.895009,0.522794,0.666108,0.467699,0.840884,0.946024,0.0791464,0.655746,0.79065,0.869257,0.379597,0.607065,0.107956,0.871319,0.109701,0.327888,0.603948,0.468503,0.710453,0.4923,0.869988,0.991403,0.285929,0.497529,0.533696,0.585645,0.579718,0.108648,0.548225,0.604005,0.0265878,0.692151,0.677859,0.198772,0.14984,0.97923,0.667777,0.140659,0.579352,0.360902,0.230284,0.0462481,0.695348,0.0466638,0.418548,0.291326,0.926727,0.263346,0.218872,0.813216,0.492649,0.152495,0.970753,0.526411,0.216613,0.482971,0.735612,0.818263,0.406379,0.238141,0.281286,0.0480678,0.983821,0.0498615,0.96871,0.581927,0.483374,0.207404,0.427613,0.622279,0.51915,0.00162607,0.736274,0.35271,0.109419,0.492435,0.215288,0.548356,0.935417,0.92164,0.189059,0.182263,0.170277,0.22131,0.208308,0.377,0.855554,0.0414286,0.429445,0.616106,0.580854,0.992211,0.250421,0.86192,0.168638,0.32033,0.0350047,0.239018,0.857323,0.143258,0.859204,0.306068,0.73098,0.984392,0.912932,0.106543,0.896741,0.916592,0.938293,0.00435257,0.908174,0.826487,0.80498,0.338927,0.35668,0.982579,0.105388,0.181288,0.063929,0.285004,0.291097,0.267384,0.646729,0.935882,0.949087,0.926726,0.962411,0.427996,0.818688,0.614114,0.534904,0.655185,0.704946,0.825993,0.0763708,0.179539,0.910388,0.712472,0.799019,0.733676,0.15648,0.909796,0.244296,0.94455,0.829496,0.133318,0.500686,0.170032,0.363129,0.16495,0.517431,0.657647,0.110723,0.225542,0.150564,0.957117,0.699525,0.476716,0.332953,0.956518,0.375535,0.835152,0.18577,0.785063,0.937663,0.53769,0.538367,0.591582,0.418483,0.178162,0.871813,0.871815,0.853351,0.188926,0.706569,0.642642,0.12118,0.695921,0.426302,0.0491335,0.122515,0.0403397,0.212889,0.997999,0.211526,0.315866,0.923466,0.801803,0.569164,0.518619,0.930931,0.347601,0.507231,0.7282,0.233455,0.404392,0.701422,0.0559689,0.197706,0.837051,0.289012,0.306978,0.578737,0.277844,0.278067,0.813319,0.579205,0.615179,0.212844,0.806659,0.746955,0.349372,0.492878,0.0386109,0.00103801,0.64539,0.71135,0.623922,0.588796,0.0279174,0.475888,0.414144,0.945385,0.519418,0.810732,0.631263,0.850737,0.489223,0.0782173,0.28277,0.358042,0.328596,0.569374,0.567736,0.267609,0.514679,0.427161,0.918818,0.93964,0.381064,0.0690094,0.966847,0.730793,0.116966,0.177409,0.544731,0.84282,0.290655,0.176358,0.216745,0.233823,0.851348,0.67758,0.303866,0.410603,0.609704,0.389646,0.701525,0.838031,0.000930548,0.200447,0.497777,0.397907,0.252032,0.267037,0.154524,0.0299752,0.80265,0.333435,0.438612,0.111189,0.312966,0.442208,0.50054,0.371309,0.302379,0.991341,0.193695,0.0200984,0.51062,0.221156,0.197473,0.379327,0.00170791,0.26475,0.0261568,0.88791,0.61786,0.519932,0.163879,0.402489,0.752258,0.286396,0.0750606,0.678821,0.174471,0.97106,0.549671,0.116089,0.890721,0.454446,0.697207,0.922143,0.738771,0.643014,0.429329,0.906197,0.604038,0.706032,0.320043,0.563166,0.478439,0.171464,0.465545,0.889018,0.815763,0.235295,0.570355,0.143372,0.0641913,0.819285,0.771695,0.923763,0.71864,0.106974,0.739761,0.342487,0.325538,0.0617732,0.766318,0.524915,0.133197,0.198315,0.904915,0.683926,0.375632,0.42142,0.980765,0.744147,0.910081,0.246523,0.622534,0.285288,0.91571,0.41207,0.000348568,0.914021,0.433597,0.354466,0.203773,0.373797,0.522444,0.313181,0.0226864,0.742602,0.595324,0.135682,0.528445,0.751285,0.732093,0.0128275,0.946365,0.444908,0.242524,0.741788,0.166266,0.0253915,0.144941,0.206301,0.678615,0.981725,0.920779,0.481898,0.853595,0.724029,0.688949,0.210612,0.818165,0.319541,0.947831,0.0145296,0.225737,0.915912,0.7297,0.757281,0.694122,0.571994,0.651716,0.238887,0.53919,0.235348,0.312652,0.898465,0.811061,0.0104615,0.947665,0.797425,0.915951,0.0953394,0.27539,0.821683,|0.992808,0.406671,0.645162,0.0502093,0.962244,0.459492,0.204609,0.116478,0.177812,0.861483,0.101498,0.928079,0.116971,0.768465,0.122551,0.684494,0.619908,0.169387,0.83931,0.402285,0.721467,0.141301,0.88825,0.461427,0.985048,0.683429,0.854874,0.540772,0.450286,0.893591,0.792754,0.635971,0.677486,0.054499,0.921473,0.508673,0.286516,0.720693,0.954581,0.152622,0.0875674,0.115587,0.666796,0.0828164,0.250448,0.450901,0.242358,0.425698,0.908676,0.923785,0.664307,0.950217,0.00220495,0.36436,0.707557,0.17405,0.873613,0.773885,0.873127,0.363241,0.632279,0.467312,0.267138,0.906453,0.729228,0.424117,0.5488,0.700897,0.350708,0.263918,0.467283,0.986411,0.154411,0.824541,0.747912,0.0994183,0.512955,0.464585,0.501016,0.695992,0.609702,0.248612,0.738827,0.99048,0.579037,0.472901,0.327793,0.638419,0.37595,0.169892,0.286128,0.048822,0.0350595,0.843934,0.707368,0.345888,0.282358,0.621184,0.131609,0.982998,0.804458,0.721963,0.792126,0.0512168,0.964661,0.325126,0.374598,0.0865349,0.198558,0.691442,0.743481,0.128926,0.516488,0.226195,0.0142538,0.338191,0.439134,0.880303,0.780837,0.0758728,0.809677,0.291836,0.372692,0.756105,0.867283,0.379953,0.475816,0.55896,0.991021,0.991219,0.0580202,0.718403,0.234463,0.17435,0.177138,0.965406,0.548329,0.820077,0.750452,0.196151,0.862925,0.209611,0.290715,0.846082,0.71199,0.539317,0.0737592,0.168173,0.528976,0.583867,0.391078,0.677742,0.731071,0.963724,0.528113,0.412997,0.319836,0.76825,0.65118,0.559546,0.751319,0.169374,0.77061,0.62611,0.913783,0.574734,0.824783,0.589881,0.673616,0.225517,0.656727,0.0886092,0.122777,0.0705457,0.41545,0.882494,0.35579,0.546001,0.331383,0.723042,0.958328,0.781169,0.967484,0.662392,0.849132,0.842949,0.655749,0.41832,0.153375,0.348434,0.638403,0.737684,0.833902,0.884014,0.150361,0.94744,0.0674378,0.763398,0.397807,0.18021,0.231662,0.177162,0.0950111,0.674717,0.295521,0.866344,0.390543,0.9727,0.468403,0.336804,0.974958,0.309395,0.408802,0.929251,0.157098,0.908648,0.639738,0.434059,0.313249,0.572428,0.473333,0.555031,0.67749,0.730994,0.103121,0.754292,0.447303,0.0508138,0.568096,0.790154,0.799012,0.789389,0.855729,0.35849,0.910164,0.0120224,0.35388,0.998334,0.451858,0.722524,0.598658,0.027665,0.117588,0.636888,0.631144,0.897717,0.861215,0.972065,0.632949,0.784335,0.171215,0.294471,0.200548,0.497024,0.12563,0.0333381,0.405249,0.698126,0.661056,0.645643,0.0753031,0.547637,0.596232,0.00841993,0.986269,0.934394,0.330041,0.0151027,0.181666,0.0178263,0.585831,0.555698,0.535137,0.141965,0.645705,0.525244,0.0813587,0.279122,0.982436,0.592537,0.592543,0.475481,0.6195,0.808449,0.911075,0.177739,0.411359,0.731859,0.70858,0.805234,0.431369,0.458041,0.452195,0.947095,0.986867,0.53036,0.941226,0.119576,0.913928,0.459605,0.912667,0.160926,0.798393,0.494794,0.675184,0.928579,0.323423,0.470144,0.266113,0.891857,0.520435,0.149684,0.538826,0.493293,0.288372,0.683855,0.101068,0.301461,0.952859,0.59399,0.901976,0.453644,0.484669,0.916288,0.379519,0.218458,0.662885,0.864505,0.531577,0.894757,0.556165,0.636606,0.797606,0.650091,0.442359,0.809949,0.848069,0.882665,0.709108,0.794273,0.265212,0.252985,0.777619,0.969566,0.498574,0.0827823,0.11423,0.280931,0.862384,0.1793,0.540765,0.203655,0.784135,0.897073,0.734677,0.267788,0.113036,0.879959,0.247929,0.890338,0.978164,0.657241,0.822631,0.120453,0.356015,0.789563,0.759239,0.649018,0.457296,0.829473,0.883745,0.964403,0.280693,0.910749,0.579943,0.910897,0.123984,0.981549,0.821421,0.660032,0.864317,0.419956,0.591088,0.372657,0.331734,0.314436,0.530587,0.595465,0.891149,0.127434,0.974942,0.39285,0.856759,0.847605,0.430073,0.933533,0.877053,0.205553,0.326477,0.377911,0.587619,0.507155,0.957512,0.747327,0.574361,0.557544,0.104465,0.996573,0.67984,0.103351,0.200119,0.308905,0.33158,0.528876,0.297544,0.557455,0.598716,0.304426,0.0224714,0.593744,0.718505,0.13891,0.159407,0.139501,0.617915,0.672534,0.585929,0.276084,0.805881,0.70821,0.783933,0.804266,0.0413213,0.0362709,0.473421,0.96969,0.153253,0.831361,0.531813,0.0810244,0.418129,0.370691,0.658902,0.519102,0.568787,0.914992,0.719001,0.296567,0.221115,0.383233,0.922989,0.75145,0.412948,0.659962,0.38926,0.106165,0.0507773,0.390503,0.664999,0.837389,0.0013898,0.789317,0.747628,0.364509,0.870666,0.749538,0.569771,0.912669,0.744251,0.36965,0.455291,0.842024,0.158511,0.398174,0.981349,0.839931,0.0913457,0.569021,0.167143,0.554995,0.696422,0.504319,0.00942135,0.156368,0.779431,0.710605,0.618472,0.649908,0.595809,0.598728,0.0517586,0.808825,0.207836,0.379192,0.227591,0.0269447,0.987627,0.75517,0.27373,0.661123,0.462506,0.498505,0.418312,0.722993,0.879194,0.402207,0.143565,0.612457,0.224139,0.214379,0.154691,0.478964,0.590979,0.00266659,0.656931,0.798762,0.76905,0.392421,0.268752,0.573781,0.283386,0.857982,0.524041,0.175596,0.00382304,0.0077849,0.85127,0.190831,0.444314,0.018324,0.670794,0.494013,0.880017,0.66421,0.336682,0.798273,0.590709,0.276685,0.439029,0.133264,0.35758,0.0999971,0.113995,0.869676,0.481851,0.700911,0.142466,0.53471,0.993223,0.74417,0.545349,0.209712,0.661025,0.807201,0.162862,0.26515,0.788267,0.306379,0.778566,0.266503,0.692536,0.055871,0.600256,0.51138,0.158662,0.256312,0.106733,0.77002,0.986127,0.473911,0.666874,0.598852,0.965583,0.727877,0.699447,0.867286,0.784405,0.284135,0.150796,0.52471,0.762623,0.933878,0.724723,0.435399,0.300419,0.247649,0.659298,0.810744,0.532044,0.645825,0.80194,0.0441894,0.396388,0.735192,0.498269,0.805688,0.437975,0.57434,0.428691,0.307348,0.083512,0.811357,0.0469906,0.529376,0.104654,0.178357,0.590629,0.749295,0.434451,0.0510069,0.701398,0.374882,0.666609,0.212673,0.953117,0.106522,0.501512,0.835935,0.134283,0.181438,0.759806,0.38273,0.98118,0.569199,0.836225,0.403311,0.319789,0.0127406,0.152186,0.0469422,0.795334,0.690355,0.640249,0.458122,0.493855,0.345346,0.858348,0.359229,0.663078,0.343379,0.370337,0.769124,0.645646,0.975496,0.113156,0.00749964,0.820457,0.715402,0.581047,0.363607,0.153589,0.856971,0.129313,0.14255,0.347261,0.539403,0.959969,0.974772,0.909666,0.573914,0.164905,0.417035,0.40189,0.549738,0.339218,0.916703,0.795182,0.514847,0.910011,0.235213,0.732107,0.227772,0.262739,0.521776,0.616331,0.567893,0.0445972,0.224142,0.0022245,0.204313,0.363294,0.731169,0.512822,0.782851,0.588526,0.473616,0.570387,0.810775,0.477158,0.799896,0.601373,0.149151,0.046762,0.987275,0.109245,0.752945,0.0487787,0.671588,0.562402,0.677768,0.991642,0.0836606,0.233542,0.283385,0.0566119,0.476339,0.549493,0.108831,0.593609,0.3834,0.231161,0.762651,0.39569,0.61154,0.441903,0.312408,0.147748,0.419656,0.874179,0.592103,0.325971,0.535906,0.308764,0.88673,0.774413,0.578565,0.942037,0.0606781,0.538844,0.060345,0.000932515,0.0343607,0.409806,0.410641,0.142671,0.625308,0.311266,0.266816,0.174165,0.0619828,0.688388,0.0107292,0.553036,0.379395,0.565178,0.188595,0.354397,0.764376,0.418501,0.748762,0.487717,0.754284,0.24536,0.107937,0.168918,0.5432,0.331789,0.439566,0.25035,0.335767,0.821942,0.136059,0.514466,0.107864,0.76749,0.640474,0.25487,0.867554,0.241957,0.58936,0.428602,0.720814,0.159295,0.342015,0.520365,0.379998,0.937867,0.955035,0.682298,0.241811,0.939912,0.0298142,0.655394,0.0541698,0.662355,0.0471139,0.488518,0.739983,0.81221,0.334216,0.0956007,0.281561,0.0443578,0.65459,0.82098,0.172335,0.172346,0.414041,0.387247,0.0717847,0.393726,0.997383,0.466825,0.718304,0.93577,0.907526,0.34482,0.836802,0.110738,0.145624,0.713659,0.0266268,0.408362,0.574264,0.605132,0.375186,0.700333,0.555367,0.473756,0.934606,0.632899,0.76718,0.334068,0.513218,0.468052,0.157307,0.846218,0.286517,0.538131,0.93962,0.503265,0.135726,0.6448,0.278067,0.0130314,0.975593,0.165529,0.916572,0.284412,0.797012,0.876209,0.97526,0.320084,0.406727,0.47441,0.398301,0.462432,0.241487,0.395397,0.203632,0.467318,0.0647274,0.361905,0.713536,0.212697,0.835513,0.876893,0.0767925,0.0497009,0.157465,0.44628,0.243233,0.963045,0.385054,0.649048,0.953289,0.55587,0.131891,0.246419,0.185559,0.950083,0.998722,0.257823,0.577494,0.0726552,0.928519,0.865122,0.822539,0.281211,0.337191,0.206382,0.5121,0.878891,0.940062,0.314628,0.535651,0.0553449,0.361473,0.165958,0.473162,0.846056,0.516663,0.370064,0.938088,0.884479,0.494129,0.753806,0.168511,0.370592,0.661905,0.578359,0.306669,0.341019,0.412655,0.927511,0.335966,0.17441,0.681526,0.808684,0.858626,0.304875,0.772072,0.321939,0.938294,0.239064,0.704607,0.367808,0.867271,0.534516,0.962702,0.0405006,0.936368,0.556829,0.471506,0.339026,0.909145,0.836831,0.634261,0.328772,0.479626,0.958291,0.698624,0.766813,0.613551,0.446948,0.941191,0.836453,0.315091,0.923589,0.120749,0.156256,0.241187,0.903612,0.784594,0.56004,0.166478,0.601523,0.681449,0.235889,0.486506,0.39627,0.32053,0.63648,0.931195,0.89301,0.711532,0.342722,0.484441,0.259905,0.678572,0.950623,0.418849,0.454846,0.85559,0.950535,0.417736,0.75173,0.281652,0.236093,0.301854,0.810224,0.19755,0.0424628,0.615099,0.415184,0.567389,0.0141453,0.639447,0.380625,0.428003,0.776708,0.414192,0.094779,0.52365,0.419468,0.992358,0.916245,0.332713,0.678641,0.950947,0.872902,0.484284,0.566146,0.9997,0.462926,0.175372,0.662506,0.13574,0.23412,0.893725,|0.921049,0.689743,0.154351,0.193951,0.634481,0.227286,0.618177,0.194619,0.453878,0.28881,0.683788,0.293,0.235195,0.246784,0.927712,0.403334,0.829847,0.772697,0.148648,0.763964,0.169189,0.843635,0.892944,0.798392,0.640499,0.297615,0.360125,0.38389,0.852747,0.027435,0.278429,0.0385582,0.546278,0.610718,0.615991,0.662635,0.37643,0.646941,0.768133,0.0941855,0.808084,0.162032,0.234558,0.926027,0.181515,0.103413,0.907595,0.498137,0.262501,0.47435,0.866036,0.118648,0.210879,0.989615,0.0545505,0.0103056,0.662232,0.255383,0.638007,0.255001,0.827368,0.729251,0.468435,0.217509,0.850709,0.657744,0.304932,0.675879,0.901715,0.1464,0.510302,0.119427,0.412971,0.366259,0.746448,0.977194,0.914407,0.124035,0.603547,0.830413,0.552992,0.926981,0.249422,0.84197,0.303139,0.553491,0.428443,0.935429,0.713235,0.593517,0.916742,0.731496,0.850043,0.185094,0.831187,0.0148755,0.683489,0.35421,0.837522,0.316203,0.241189,0.943989,0.617728,0.0876867,0.665641,0.717901,0.365107,0.76525,0.478662,0.550763,0.29153,0.415894,0.544588,0.114341,0.320476,0.389333,0.790989,0.89969,0.59963,0.448509,0.944279,0.742843,0.928894,0.158906,0.319771,0.248106,0.277595,0.00223684,0.587874,0.282138,0.56304,0.749588,0.560668,0.166191,0.964623,0.634881,0.507003,0.228537,0.635066,0.868604,0.805788,0.57783,0.27905,0.888447,0.787855,0.594166,0.915074,0.409191,0.0960679,0.916926,0.670944,0.875259,0.714754,0.9893,0.170263,0.0749068,0.418371,0.0460768,0.873078,0.77968,0.265962,0.8438,0.0413476,0.14134,0.990558,0.684362,0.257854,0.543902,0.793403,0.977326,0.944954,0.689425,0.0122537,0.827864,0.964797,0.652518,0.221169,0.960908,0.65749,0.289858,0.353701,0.833,0.248297,0.293652,0.780296,0.883471,0.974548,0.0197747,0.0669129,0.650729,0.825854,0.578355,0.393123,0.359856,0.368136,0.844182,0.977203,0.0767839,0.130728,0.540541,0.530659,0.863656,0.856541,0.0140567,0.691008,0.672907,0.25473,0.310201,0.0958408,0.551176,0.149594,0.506577,0.447839,0.193787,0.46982,0.0889433,0.487892,0.240837,0.554058,0.0254613,0.45,0.190556,0.481422,0.401925,0.772244,0.748156,0.83506,0.719767,0.377584,0.671194,0.0506452,0.0249803,0.73528,0.243371,0.453778,0.720344,0.924384,0.394382,0.957326,0.686468,0.587103,0.267349,0.140845,0.919405,0.539992,0.876695,0.205517,0.626657,0.995749,0.291129,0.881066,0.197177,0.750004,0.577663,0.299022,0.683559,0.209403,0.532802,0.177396,0.0170367,0.521521,0.188212,0.308498,0.0481752,0.380076,0.365538,0.41267,0.129957,0.849346,0.137379,0.447466,0.609707,0.510245,0.964514,0.0229123,0.172975,0.793905,0.710846,0.892337,0.181305,0.266417,0.103948,0.771336,0.895401,0.42797,0.699384,0.737767,0.800192,0.435521,0.549252,0.0357085,0.381531,0.879915,0.0813282,0.331946,0.422842,0.0308351,0.93527,0.444655,0.529601,0.911352,0.16371,0.516329,0.188811,0.728031,0.717109,0.737215,0.46686,0.270718,0.556804,0.17981,0.9382,0.21388,0.680368,0.0851398,0.918449,0.774735,0.672486,0.492076,0.692109,0.360746,0.360403,0.956355,0.0123712,0.669476,0.836781,0.670428,0.117016,0.265166,0.130044,0.684083,0.823169,0.888034,0.101921,0.830856,0.568743,0.234001,0.569254,0.444134,0.634542,0.999927,0.415952,0.876903,0.938138,0.162115,0.28232,0.0717192,0.149098,0.406434,0.0209344,0.13656,0.394775,0.499941,0.512405,0.594645,0.408066,0.214142,0.453089,0.531555,0.544795,0.835643,0.895256,0.900761,0.352204,0.229192,0.704905,0.986159,0.825575,0.350133,0.92596,0.672938,0.181694,0.0160806,0.434263,0.9328,0.859519,0.366134,0.64966,0.876598,0.150506,0.248652,0.423171,0.277044,0.786188,0.579045,0.732667,0.952836,0.690817,0.0652951,0.626397,0.0733318,0.881417,0.436477,0.166044,0.200354,0.92204,0.55692,0.611759,0.775941,0.787741,0.49333,0.854966,0.434008,0.6213,0.203196,0.602764,0.0407581,0.708574,0.716025,0.637908,0.215121,0.944176,0.285174,0.000872433,0.117127,0.666905,0.274641,0.0327486,0.0152964,0.996251,0.922051,0.247344,0.649515,0.66889,0.264621,0.430987,0.293654,0.701041,0.697919,0.420263,0.28782,0.673851,0.403979,0.496246,0.0573683,0.647461,0.959435,0.281412,0.864691,0.509475,0.591797,0.388916,0.0668797,0.823712,0.703056,0.270791,0.66637,0.520063,0.860655,0.215712,0.077033,0.994579,0.43697,0.61002,0.830482,0.958703,0.932309,0.752995,0.42356,0.524768,0.948663,0.97279,0.104025,0.914513,0.0534545,0.327911,0.0930887,0.177082,0.153328,0.560345,0.973154,0.0486818,0.158692,0.851752,0.283134,0.246588,0.633199,0.729373,0.992749,0.356603,0.211456,0.662959,0.965128,0.497961,0.414508,0.895548,0.597829,0.524525,0.366217,0.656184,0.735604,0.793964,0.235758,0.503337,0.608393,0.541128,0.396414,0.326887,0.0963444,0.54995,0.86817,0.542136,0.959315,0.153354,0.0671032,0.763827,0.537911,0.871616,0.36546,0.61384,0.855515,0.989515,0.561348,0.357672,0.281989,0.661783,0.65438,0.44889,0.0519327,0.773399,0.335873,0.371368,0.312203,0.862557,0.704672,0.23559,0.748895,0.681813,0.75944,0.0552272,0.0588752,0.376277,0.779253,0.0921094,0.0278819,0.747461,0.601217,0.549258,0.269943,0.537116,0.0479636,0.779483,0.542054,0.808932,0.693786,0.45554,0.615885,0.535706,0.412747,0.753046,0.684353,0.989631,0.208953,0.959039,0.415302,0.814476,0.428238,0.38953,0.79177,0.59772,0.0982752,0.465289,0.330293,0.519507,0.181195,0.743565,0.835312,0.477038,0.989349,0.34485,0.98945,0.550865,0.956725,0.866831,0.754217,0.168762,0.494725,0.225527,0.245588,0.58461,0.281353,0.788015,0.55022,0.837673,0.880621,0.496368,0.944916,0.933336,0.57959,0.0817046,0.369868,0.0750805,0.725686,0.429939,0.775826,0.838112,0.772579,0.969534,0.185212,0.200917,0.704956,0.723484,0.70035,0.0783912,0.145685,0.61653,0.547902,0.847281,0.104865,0.768046,0.796578,0.774918,0.24019,0.737585,0.24435,0.678079,0.215463,0.160912,0.105638,0.395288,0.744798,0.145036,0.983004,0.0814561,0.498854,0.384774,0.165163,0.868803,0.817537,0.0420305,0.32588,0.701207,0.341816,0.608155,0.313351,0.453453,0.241697,0.0120221,0.887957,0.181702,0.434002,0.747943,0.226017,0.671941,0.0128711,0.328672,0.288528,0.781972,0.991677,0.246425,0.59888,0.629461,0.827942,0.833774,0.90407,0.618514,0.758354,0.601281,0.343599,0.735309,0.364052,0.966074,0.278799,0.258885,0.147785,0.480241,0.546172,0.240439,0.58524,0.140591,0.0735916,0.618463,0.037536,0.753773,0.541085,0.0789344,0.0145351,0.156668,0.484214,0.454775,0.625526,0.195485,0.0747308,0.654957,0.257387,0.648167,0.07823,0.154083,0.768925,0.63167,0.659316,0.702579,0.827628,0.196033,0.91055,0.461467,0.586392,0.349132,0.228107,0.663643,0.0489383,0.674986,0.92961,0.828266,0.812605,0.960109,0.507831,0.937273,0.644473,0.690405,0.104765,0.0701649,0.0707985,0.057101,0.552052,0.838949,0.204782,0.413422,0.822197,0.581702,0.0983074,0.459118,0.984122,0.563397,0.421782,0.712843,0.717515,0.789336,0.0788023,0.946435,0.473675,0.472206,0.052471,0.354439,0.0368292,0.541263,0.923412,0.908941,0.0833902,0.667286,0.267775,0.775297,0.166894,0.932348,0.162119,0.997626,0.0711024,0.140309,0.157162,0.193349,0.799794,0.685963,0.0407176,0.913218,0.512317,0.450463,0.229363,0.413307,0.500877,0.487511,0.206658,0.826882,0.547587,0.963629,0.253599,0.397106,0.0841353,0.777729,0.162565,0.818453,0.312445,0.818161,0.637143,0.363429,0.0703745,0.231727,0.6308,0.653651,0.737521,0.790256,0.932818,0.522834,0.270796,0.282315,0.123972,0.907724,0.751035,0.197051,0.100889,0.533845,0.204734,0.738117,0.758871,0.766022,0.741526,0.0675278,0.263245,0.675616,0.565346,0.831214,0.0533311,0.981143,0.511195,0.779524,0.286456,0.531789,0.485825,0.463083,0.81931,0.2602,0.804795,0.161514,0.292221,0.39877,0.302657,0.743982,0.0197759,0.794347,0.921027,0.635975,0.495697,0.682444,0.107905,0.415596,0.142073,0.649218,0.85155,0.540788,0.787038,0.799517,0.0700912,0.344363,0.043223,0.464446,0.122285,0.514828,0.765878,0.901846,0.400401,0.994356,0.693339,0.413502,0.365264,0.391102,0.756561,0.33524,0.643481,0.736645,0.757739,0.0342815,0.283979,0.359627,0.613519,0.159003,0.835313,0.55593,0.340113,0.801032,0.958432,0.692958,0.119933,0.558182,0.479931,0.425974,0.891319,0.429859,0.902803,0.674884,0.536404,0.155947,0.15532,0.221648,0.959969,0.447443,0.307958,0.613092,0.518835,0.271692,0.264925,0.915096,0.155688,0.955044,0.611186,0.192399,0.0527058,0.777741,0.353742,0.676796,0.860949,0.294799,0.251931,0.826957,0.772577,0.141153,0.994413,0.230382,0.713181,0.322262,0.461661,0.708186,0.523305,0.953134,0.624454,0.776684,0.655231,0.804746,0.854343,0.945306,0.00926536,0.483302,0.339742,0.40509,0.239712,0.312102,0.0499533,0.660265,0.735149,0.974021,0.136413,0.381731,0.262492,0.892674,0.264788,0.179197,0.409009,0.90669,0.0786726,0.632714,0.5929,0.93543,0.482842,0.277233,0.639265,0.0791946,0.978353,0.0713903,0.863455,0.74516,0.221746,0.292663,0.0878972,0.0509644,0.260311,0.512699,0.606312,0.785412,0.612321,0.663453,0.620183,0.471101,0.381596,0.801453,0.606462,0.496149,0.0755334,0.856867,0.780656,0.710564,0.736329,0.662443,0.0299921,0.884133,0.970107,0.660179,0.29188,0.00589943,0.78368,0.344174,0.336894,0.708097,0.745725,0.336295,0.155146,0.304825,0.64348,0.846445,0.370809,0.263373,0.948578,0.851693,0.356626,0.220674,0.151989,0.206592,0.542194,0.487978,0.640677,0.178799,0.611636,0.889142,0.936665,0.133305,0.247874,0.144832,0.320928,0.9196,0.176472,0.592743,0.717366,0.958092,|0.969337,0.781453,0.533131,0.615349,0.275292,0.29249,0.604023,0.977077,0.615946,0.00354445,0.826162,0.855503,0.507716,0.140223,0.792815,0.720768,0.129363,0.142386,0.616428,0.670906,0.337071,0.0158975,0.980881,0.508297,0.142689,0.265311,0.347259,0.659971,0.112687,0.211017,0.0288064,0.343679,0.720607,0.944892,0.992775,0.771275,0.00587511,0.764128,0.806059,0.200066,0.416487,0.0286173,0.437759,0.278517,0.868459,0.747534,0.469516,0.532687,0.342481,0.572498,0.885822,0.313914,0.614418,0.674231,0.134949,0.617537,0.379385,0.759074,0.55874,0.0640778,0.386218,0.310127,0.0731122,0.018832,0.652397,0.0345762,0.454039,0.318931,0.552867,0.336262,0.845783,0.505431,0.21932,0.55624,0.894152,0.438712,0.0762064,0.936179,0.645189,0.666869,0.603858,0.99614,0.570877,0.56489,0.714069,0.597924,0.574747,0.237024,0.106573,0.349351,0.228259,0.234372,0.606487,0.612319,0.295014,0.949918,0.88225,0.15977,0.0976402,0.297465,0.0860098,0.0319963,0.603235,0.903848,0.714088,0.995827,0.543122,0.917627,0.892306,0.352253,0.00150347,0.834815,0.858991,0.660601,0.750091,0.457973,0.436996,0.862999,0.815538,0.486438,0.440715,0.280889,0.41497,0.429212,0.0696286,0.983461,0.885101,0.455851,0.273114,0.959493,0.949196,0.991951,0.422203,0.0843927,0.538187,0.484389,0.512801,0.577538,0.770924,0.475943,0.224984,0.327772,0.741848,0.880425,0.519077,0.97341,0.671952,0.647948,0.80686,0.569137,0.909144,0.928397,0.836497,0.0471594,0.370823,0.576184,0.323817,0.0819921,0.246437,0.339302,0.136353,0.886379,0.477123,0.589788,0.0597678,0.438438,0.767793,0.94143,0.56176,0.563707,0.64611,0.599826,0.857372,0.0712517,0.712139,0.342452,0.100133,0.921904,0.897985,0.894096,0.447489,0.547086,0.507082,0.207918,0.885478,0.94526,0.726839,0.178091,0.536659,0.738709,0.500955,0.901605,0.183995,0.519763,0.937024,0.0727669,0.788597,0.739197,0.732757,0.11751,0.170359,0.855619,0.712136,0.437347,0.256754,0.498365,0.253457,0.25413,0.0145607,0.143698,0.252366,0.549488,0.703503,0.954088,0.307803,0.799935,0.763041,0.197027,0.870781,0.730465,0.00398397,0.431299,0.335109,0.700948,0.641163,0.0173289,0.457465,0.862646,0.22965,0.207019,0.303414,0.786588,0.536893,0.972301,0.205883,0.124361,0.235209,0.0695308,0.604728,0.839356,0.722308,0.880563,0.793342,0.84192,0.75371,0.232669,0.35905,0.632782,0.574964,0.570428,0.665069,0.933717,0.123176,0.693342,0.995651,0.977713,0.264076,0.0465835,0.83286,0.103622,0.809231,0.975209,0.938785,0.458328,0.602507,0.7013,0.184328,0.0604056,0.24602,0.344895,0.214774,0.757066,0.428238,0.322812,0.157304,0.579273,0.486662,0.749664,0.214676,0.698259,0.357246,0.30859,0.00323069,0.419772,0.305631,0.479916,0.753816,0.791364,0.424617,0.211491,0.107758,0.351711,0.0520993,0.378431,0.876212,0.476536,0.222834,0.36584,0.736977,0.723297,0.0221745,0.630404,0.72079,0.721075,0.572008,0.672788,0.134736,0.494206,0.885921,0.186604,0.327766,0.224116,0.737487,0.81407,0.7693,0.96523,0.861544,0.430206,0.599068,0.131935,0.192503,0.312184,0.835121,0.490445,0.622701,0.342218,0.981292,0.104916,0.939314,0.239319,0.974099,0.723868,0.453768,0.0143882,0.980879,0.983387,0.866389,0.222882,0.530961,0.363411,0.405029,0.771866,0.376351,0.29346,0.976104,0.68168,0.932952,0.854556,0.306298,0.811108,0.346409,0.878591,0.563667,0.583504,0.104618,0.933419,0.642402,0.460887,0.336744,0.686294,0.60685,0.493904,0.802484,0.865374,0.319891,0.142956,0.0692387,0.749573,0.761844,0.375027,0.207544,0.675751,0.679962,0.477946,0.0258171,0.735355,0.104319,0.926649,0.323444,0.690454,0.48004,0.76379,0.156576,0.333456,0.245988,0.18995,0.930375,0.230582,0.18142,0.643671,0.135607,0.392803,0.567753,0.0360577,0.783702,0.133064,0.817741,0.554514,0.275123,0.569571,0.0284102,0.875214,0.603178,0.0554249,0.297405,0.907681,0.13512,0.84473,0.966921,0.294433,0.663166,0.139535,0.0220999,0.242453,0.985885,0.746886,0.709209,0.683423,0.218323,0.841831,0.222319,0.86726,0.906379,0.77609,0.808379,0.500639,0.547868,0.781259,0.978117,0.263189,0.384469,0.86052,0.222812,0.834208,0.00702161,0.155249,0.0264306,0.26595,0.625624,0.124415,0.152776,0.352903,0.197211,0.0748873,0.373826,0.15951,0.127531,0.382644,0.657001,0.889448,0.12609,0.230581,0.436602,0.155425,0.17175,0.781866,0.812964,0.654969,0.741877,0.146989,0.460196,0.0655056,0.680517,0.974209,0.560768,0.69178,0.973884,0.582605,0.352896,0.306666,0.564036,0.388378,0.923386,0.360882,0.425543,0.0443084,0.624362,0.690478,0.160986,0.0846177,0.224004,0.806806,0.936329,0.463254,0.936445,0.0968313,0.893454,0.138051,0.652013,0.322803,0.0603842,0.618549,0.996418,0.717587,0.892713,0.806535,0.0691092,0.774027,0.495319,0.193438,0.968646,0.615725,0.731258,0.441262,0.212583,0.285878,0.266176,0.456781,0.534531,0.580825,0.700313,0.868447,0.166571,0.651929,0.515172,0.783575,0.837114,0.846275,0.68681,0.726326,0.00293547,0.949255,0.875305,0.549084,0.927084,0.418167,0.410021,0.63485,0.757847,0.138435,0.806557,0.950601,0.221251,0.742372,0.253391,0.744747,0.790576,0.837669,0.131783,0.749251,0.922096,0.502669,0.48735,0.645736,0.614788,0.226221,0.657665,0.943265,0.493642,0.727364,0.885097,0.800304,0.406853,0.683139,0.344525,0.800113,0.272063,0.53476,0.931976,0.639932,0.502462,0.9562,0.683761,0.387616,0.19666,0.615939,0.415484,0.699939,0.0969828,0.124609,0.0546761,0.156541,0.362671,0.280173,0.0481228,0.991098,0.210072,0.612612,0.338549,0.413216,0.923155,0.0183894,0.702109,0.970919,0.109944,0.113356,0.485132,0.127033,0.463161,0.767234,0.872282,0.443503,0.635761,0.907569,0.343743,0.292203,0.991196,0.196805,0.613543,0.327766,0.692539,0.0945113,0.641314,0.343632,0.153731,0.682387,0.255032,0.608811,0.749412,0.952656,0.178478,0.971665,0.926432,0.445453,0.558765,0.92318,0.698304,0.294702,0.163929,0.562732,0.0866742,0.745644,0.61806,0.252792,0.368756,0.139673,0.664005,0.591808,0.270184,0.791507,0.18902,0.799802,0.294801,0.641441,0.923388,0.0781733,0.564406,0.59306,0.886146,0.110258,0.487276,0.307755,0.56925,0.973142,0.547798,0.289715,0.366161,0.897466,0.752086,0.316602,0.342145,0.177038,0.370933,0.683074,0.545057,0.067749,0.693918,0.0371802,0.494575,0.342968,0.381803,0.795408,0.931188,0.0384175,0.619328,0.643433,0.571813,0.944674,0.711142,0.154992,0.272859,0.210902,0.0395158,0.160874,0.914676,0.919675,0.473029,0.711288,0.712955,0.648584,0.435902,0.833954,0.470558,0.803178,0.267935,0.712864,0.84893,0.207564,0.984644,0.93492,0.689315,0.562311,0.636864,0.177429,0.991403,0.743521,0.0621371,0.657053,0.192672,0.619674,0.902327,0.437406,0.779092,0.401906,0.487207,0.705018,0.123825,0.711097,0.816613,0.929017,0.0796267,0.461832,0.798067,0.28484,0.940841,0.426538,0.80987,0.725817,0.318622,0.349012,0.365884,0.264745,0.453296,0.200379,0.915301,0.126989,0.523704,0.908697,0.640657,0.416542,0.528657,0.857347,0.491509,0.528278,0.145876,0.49565,0.663165,0.0710185,0.754175,0.912681,0.279472,0.949573,0.986402,0.364903,0.881761,0.760454,0.7587,0.20254,0.856321,0.687813,0.118805,0.486691,0.656593,0.754686,0.656944,0.200413,0.959244,0.4757,0.481484,0.260202,0.244097,0.174643,0.654246,0.988295,0.892713,0.785969,0.480404,0.836634,0.326951,0.0111548,0.65286,0.50744,0.331846,0.799189,0.356266,0.2933,0.981537,0.0706079,0.0482053,0.900104,0.252907,0.746891,0.051744,0.834149,0.938284,0.369387,0.454176,0.23669,0.963405,0.158604,0.695737,0.882813,0.515744,0.253007,0.682106,0.589848,0.390354,0.00231516,0.75305,0.974826,0.528681,0.895066,0.0848112,0.691243,0.596958,0.690366,0.588794,0.404042,0.0474544,0.568215,0.266167,0.922546,0.875484,0.384861,0.0728797,0.240103,0.188603,0.868447,0.672509,0.216513,0.601705,0.896227,0.0688591,0.175362,0.227862,0.435608,0.533658,0.0638889,0.336366,0.909841,0.95717,0.426113,0.20456,0.366808,0.917105,0.43019,0.284512,0.497162,0.263083,0.514002,0.836994,0.302511,0.117647,0.893818,0.684739,0.29521,0.935894,0.351064,0.262822,0.786859,0.807167,0.134841,0.0375371,0.902697,0.506361,0.00925958,0.747038,0.317517,0.537024,0.0998703,0.026198,0.819162,0.817536,0.32846,0.80739,0.654384,0.786054,0.191134,0.539254,0.403654,0.111286,0.829385,0.953586,0.78174,0.241977,0.82709,0.11291,0.377269,0.495128,0.237283,0.0872281,0.0928668,0.960193,0.607766,0.799437,0.196804,0.904725,0.0959666,0.209752,0.832995,0.865914,0.436902,0.786035,0.113308,0.590624,0.231493,0.498654,0.634209,0.934202,0.151607,0.560922,0.29422,0.423596,0.248841,0.751871,0.599051,0.198791,0.597782,0.914685,0.421715,0.602602,0.346774,0.977541,0.00255132,0.623166,0.39222,0.47052,0.814697,0.697617,0.529108,0.829817,0.364381,0.973473,0.984589,0.566773,0.258218,0.533295,0.163563,0.533446,0.431679,0.339754,0.566149,0.689432,0.464265,0.987395,0.627759,0.812991,0.295934,0.657402,0.571255,0.197105,0.685797,0.977775,0.999658,0.69244,0.373433,0.514977,0.263413,0.745957,0.448672,0.430292,0.176529,0.785313,0.667023,0.640216,0.337017,0.495239,0.408484,0.178814,0.0289963,0.778378,0.137914,0.0577399,0.225656,0.385306,0.23863,0.638285,0.0885772,0.855981,0.907839,0.908851,0.602494,0.331212,0.378585,0.50705,0.886823,0.330874,0.832027,0.724603,0.37788,0.715447,0.151776,0.922874,0.968505,0.529991,0.521811,0.890157,0.21373,0.325353,0.709657,0.28068,0.185435,0.52167,0.781511,0.228094,0.615666,0.844686,0.18422,0.944227,0.540514,|0.708774,0.781359,0.494027,0.995462,0.957519,0.54019,0.405576,0.943649,0.676774,0.0348163,0.568249,0.718105,0.982859,0.303859,0.215675,0.196339,0.119841,0.412165,0.34411,0.229943,0.0551224,0.627849,0.588885,0.428707,0.414244,0.151189,0.411321,0.862708,0.413881,0.961419,0.79177,0.222456,0.530996,0.490674,0.119596,0.451301,0.140557,0.136867,0.170071,0.845965,0.902746,0.157614,0.739914,0.760941,0.884584,0.854153,0.638026,0.765478,0.88387,0.224135,0.493821,0.139446,0.845546,0.832107,0.250238,0.524987,0.38016,0.631802,0.823702,0.0382152,0.714141,0.149288,0.454826,0.571844,0.265148,0.564815,0.245845,0.0683773,0.415868,0.21404,0.927468,0.137724,0.664738,0.952231,0.456163,0.0513694,0.14431,0.738496,0.768426,0.205855,0.981662,0.292063,0.939915,0.510869,0.0155281,0.678636,0.895535,0.501306,0.340996,0.0952461,0.0961412,0.503791,0.469698,0.510788,0.745356,0.643134,0.726859,0.799674,0.790651,0.249285,0.617234,0.687487,0.941767,0.233134,0.969608,0.219487,0.771399,0.00957,0.929616,0.427893,0.809592,0.862168,0.508934,0.0879851,0.966157,0.992211,0.742848,0.504764,0.74735,0.428442,0.760265,0.0600926,0.975184,0.816688,0.391225,0.223025,0.536442,0.945201,0.31491,0.684893,0.409397,0.97485,0.733846,0.958253,0.115143,0.67052,0.586031,0.481691,0.22732,0.164778,0.736438,0.752031,0.342933,0.17433,0.94959,0.0732523,0.0134982,0.532258,0.448993,0.243056,0.120834,0.93717,0.677965,0.0835506,0.280893,0.426985,0.0177594,0.7833,0.832717,0.0218012,0.823094,0.58906,0.697641,0.347961,0.144785,0.450748,0.0758715,0.805013,0.00187486,0.436784,0.941841,0.53854,0.197073,0.798436,0.464426,0.495379,0.602656,0.257228,0.252278,0.356723,0.95791,0.748163,0.0347151,0.186881,0.547279,0.460899,0.105798,0.891135,0.595728,0.844549,0.714417,0.506176,0.288965,0.167478,0.749601,0.931698,0.419605,0.471659,0.690444,0.390974,0.145896,0.475372,0.0154811,0.859749,0.95628,0.552407,0.335008,0.275308,0.611017,0.0221722,0.248663,0.0827363,0.27483,0.856193,0.110518,0.153084,0.756379,0.486962,0.543692,0.725528,0.62124,0.0413382,0.475087,0.0635797,0.0353094,0.754052,0.615451,0.0413557,0.887646,0.724552,0.44572,0.0201269,0.580841,0.691918,0.0268058,0.0230746,0.749482,0.238701,0.966336,0.65921,0.900445,0.13556,0.751347,0.935328,0.0925449,0.244296,0.406357,0.282268,0.484656,0.708643,0.180649,0.0358631,0.0504701,0.91999,0.108068,0.0699153,0.590517,0.186019,0.54335,0.467658,0.541874,0.289863,0.73906,0.598316,0.619444,0.59508,0.453741,0.586537,0.246892,0.841155,0.432566,0.868761,0.294339,0.391396,0.367195,0.483417,0.764155,0.037955,0.183515,0.115882,0.318331,0.0697717,0.0346266,0.867358,0.930132,0.164631,0.868842,0.808743,0.864168,0.706054,0.0651317,0.853974,0.699338,0.880189,0.00453311,0.950646,0.234122,0.247126,0.704709,0.237262,0.302136,0.507666,0.24286,0.498846,0.952791,0.675762,0.846844,0.717978,0.89644,0.262307,0.352553,0.651762,0.271656,0.626742,0.621272,0.95,0.215933,0.865113,0.619833,0.24028,0.81817,0.728464,0.805529,0.594698,0.288852,0.27683,0.668467,0.801244,0.824376,0.24859,0.495166,0.252828,0.787782,0.898469,0.40579,0.00173521,0.767409,0.874729,0.542529,0.143224,0.11168,0.67293,0.415868,0.588394,0.951855,0.956602,0.962543,0.520233,0.754464,0.983266,0.987622,0.281554,0.600051,0.822394,0.654776,0.220744,0.862126,0.474851,0.193385,0.971968,0.0357433,0.21921,0.775057,0.906766,0.563159,0.69316,0.635083,0.737488,0.315181,0.598363,0.0592681,0.530099,0.499496,0.0680129,0.458978,0.604284,0.878897,0.42572,0.994097,0.83992,0.572422,0.367156,0.73942,0.814902,0.874429,0.881467,0.227896,0.424717,0.625746,0.266752,0.558971,0.842058,0.0915568,0.687964,0.0931563,0.949024,0.366786,0.959235,0.464573,0.490349,0.324169,0.627037,0.180465,0.273337,0.450918,0.0196133,0.881008,0.371355,0.0289656,0.452879,0.320494,0.712906,0.687052,0.468552,0.705399,0.3739,0.0994256,0.295471,0.0937557,0.949714,0.0268113,0.0779446,0.36269,0.02603,0.434431,0.426929,0.195433,0.886751,0.0624695,0.994371,0.523733,0.0670999,0.963653,0.32861,0.964425,0.880179,0.525457,0.853887,0.449121,0.172687,0.799298,0.420424,0.410987,0.675984,0.681993,0.821768,0.849617,0.732762,0.378437,0.604819,0.932844,0.0832307,0.832011,0.745943,0.433217,0.674031,0.0582557,0.261263,0.787996,0.792432,0.467912,0.0928419,0.873568,0.521376,0.35379,0.95169,0.54695,0.258676,0.677721,0.601098,0.281301,0.135276,0.474374,0.873444,0.0486987,0.937783,0.0411974,0.849596,0.125545,0.91648,0.410428,0.845727,0.554651,0.486064,0.937363,0.364518,0.858551,0.786478,0.852184,0.420979,0.583515,0.997831,0.319407,0.839895,0.0577014,0.46184,0.191455,0.681399,0.797521,0.725819,0.774285,0.65009,0.581436,0.383737,0.863848,0.837366,0.0636736,0.0425317,0.984743,0.587131,0.748634,0.087885,0.0678293,0.889123,0.728269,0.704136,0.00780153,0.63115,0.309325,0.540154,0.782934,0.569389,0.372281,0.866067,0.634467,0.742859,0.257783,0.156363,0.304192,0.439051,0.483359,0.893722,0.941678,0.132734,0.237689,0.955957,0.229087,0.36246,0.420859,0.450788,0.0273961,0.00775176,0.373671,0.183557,0.670889,0.820478,0.524486,0.540444,0.994821,0.636179,0.177003,0.826334,0.732034,0.500437,0.950512,0.743726,0.146137,0.928134,0.205788,0.706455,0.230341,0.912131,0.820235,0.459275,0.49897,0.0671523,0.306081,0.765217,0.998524,0.446975,0.944199,0.464332,0.84062,0.216995,0.103831,0.807935,0.551158,0.31909,0.558186,0.283185,0.965582,0.96332,0.919131,0.997309,0.599193,0.271551,0.267224,0.758794,0.829341,0.730243,0.517909,0.234965,0.531272,0.349952,0.25991,0.47209,0.400164,0.459379,0.822806,0.799508,0.790927,0.970398,0.742261,0.402361,0.687455,0.00685769,0.226016,0.495649,0.569051,0.726622,0.280773,0.861782,0.840732,0.786729,0.761575,0.206177,0.304919,0.589332,0.17695,0.550275,0.252876,0.613595,0.470429,0.161933,0.536355,0.899741,0.430504,0.435833,0.450273,0.747509,0.244759,0.296122,0.664911,0.151341,0.0510438,0.602377,0.158845,0.416734,0.238408,0.828769,0.0264517,0.154807,0.265626,0.933382,0.162021,0.697402,0.490417,0.219633,0.323581,0.352156,0.350619,0.27264,0.961091,0.775874,0.919478,0.274471,0.963755,0.760517,0.208034,0.802007,0.379703,0.757397,0.792484,0.383975,0.578878,0.846547,0.206921,0.182607,0.711653,0.354018,0.419173,0.496994,0.717276,0.0276943,0.406775,0.197595,0.770371,0.295761,0.97875,0.490985,0.84127,0.214031,0.871962,0.454799,0.792361,0.104142,0.788551,0.506492,0.513585,0.727102,0.601151,0.509872,0.098319,0.811395,0.327075,0.499528,0.8902,0.0877775,0.993897,0.419758,0.233994,0.62751,0.388658,0.260715,0.941827,0.668693,0.209087,0.719103,0.986769,0.21191,0.618973,0.269454,0.884102,0.600196,0.467785,0.990607,0.181168,0.613389,0.87858,0.756613,0.346308,0.597232,0.462136,0.565032,0.0409205,0.808754,0.412442,0.581267,0.846378,0.192635,0.884245,0.0142837,0.866246,0.994912,0.721863,0.0615459,0.719083,0.317685,0.389165,0.854909,0.384004,0.205958,0.687746,0.214431,0.846621,0.639448,0.630489,0.543412,0.877619,0.376854,0.0417573,0.53768,0.812068,0.355214,0.430282,0.933295,0.833333,0.533281,0.532032,0.460415,0.581182,0.314898,0.469083,0.403543,0.501941,0.527505,0.566481,0.134689,0.980484,0.895051,0.150309,0.415601,0.8506,0.918118,0.363953,0.191956,0.242487,0.75038,0.187508,0.312605,0.579872,0.323735,0.627521,0.388703,0.4422,0.887658,0.331412,0.464494,0.350814,0.588308,0.1544,0.180576,0.961979,0.150101,0.61699,0.385217,0.546841,0.0163499,0.708714,0.309287,0.86399,0.291661,0.361388,0.293279,0.153341,0.549524,0.450121,0.453951,0.0731534,0.0600453,0.890665,0.976707,0.95328,0.875806,0.160889,0.305778,0.883308,0.670285,0.548936,0.365082,0.355281,0.884863,0.272428,0.329767,0.343712,0.394054,0.119334,0.200534,0.266374,0.73647,0.348228,0.322793,0.276601,0.793009,0.199711,0.390933,0.473433,0.766302,0.158332,0.814453,0.556116,0.605518,0.191271,0.196784,0.705392,0.0393952,0.410416,0.548002,0.514269,0.517766,0.698629,0.205797,0.701398,0.857071,0.871997,0.991496,0.519335,0.115992,0.258085,0.0405554,0.637304,0.447838,0.299681,0.534661,0.145891,0.737705,0.396578,0.184184,0.159597,0.14413,0.672008,0.824466,0.046333,0.0969383,0.770375,0.914549,0.838424,0.43923,0.493506,0.86361,0.235659,0.395279,0.151716,0.44036,0.274295,0.737779,0.0859612,0.273027,0.471425,0.985577,0.596115,0.871829,0.290569,0.167365,0.229492,0.813881,0.278363,0.151407,0.870437,0.689446,0.354076,0.763607,0.842602,0.208022,0.772679,0.512504,0.330244,0.278495,0.582297,0.227352,0.981197,0.672654,0.146237,0.113071,0.835598,0.695084,0.390666,0.554685,0.15454,0.0201011,0.219504,0.829862,0.333014,0.556104,0.885819,0.55871,0.196405,0.0353471,0.00954163,0.0563946,0.100553,0.551362,0.0247997,0.809827,0.204973,0.0694932,0.922316,0.141593,0.480749,0.505972,0.298999,0.447744,0.473634,0.431973,0.579287,0.39291,0.243808,0.927536,0.361378,0.326195,0.206562,0.755764,0.0279142,0.985632,0.0120837,0.0146035,0.0772901,0.0344338,0.803266,0.281235,0.665621,0.287415,0.555508,0.362763,0.906617,0.871867,0.31304,0.999487,0.0830804,0.454796,0.963666,0.178649,0.936277,0.444346,0.540421,0.498796,0.0961885,0.733952,0.935287,0.397045,0.329411,0.519644,0.793189,0.629035,0.915262,0.711851,0.415973,0.620226,0.0503944,0.485982,0.343163,0.582628,0.240261,0.109164,0.414182,0.266992,0.802483,0.668141,0.866392,0.839892,|0.531757,0.105171,0.641306,0.759188,0.92216,0.53418,0.596913,0.25981,0.251615,0.661563,0.529133,0.21732,0.53886,0.244727,0.557045,0.656838,0.689103,0.626671,0.154882,0.996049,0.39025,0.260046,0.711641,0.447423,0.362053,0.953245,0.340026,0.554704,0.66822,0.983261,0.244903,0.199951,0.149079,0.816896,0.860547,0.462607,0.430134,0.268669,0.619919,0.720616,0.227146,0.946201,0.569915,0.181161,0.329573,0.098152,0.998689,0.459851,0.394786,0.0222426,0.355953,0.209789,0.655908,0.600057,0.0460481,0.0707307,0.294813,0.564505,0.868545,0.295956,0.621179,0.814214,0.93721,0.991512,0.397579,0.352892,0.290714,0.840124,0.833097,0.0351062,0.532134,0.32788,0.834356,0.676469,0.748204,0.065319,0.405365,0.100248,0.254129,0.883199,0.565853,0.0752087,0.584839,0.525989,0.372034,0.0532427,0.990652,0.83956,0.794815,0.893631,0.532549,0.330876,0.506636,0.604544,0.489296,0.38563,0.316181,0.342135,0.328846,0.37424,0.810863,0.707654,0.626014,0.427257,0.559601,0.745241,0.688736,0.95508,0.546986,0.709252,0.604097,0.120197,0.62223,0.151757,0.241895,0.512643,0.147479,0.623566,0.955239,0.940466,0.336526,0.643341,0.761644,0.0577055,0.623637,0.742093,0.701264,0.391733,0.923259,0.360409,0.424823,0.6405,0.144174,0.968641,0.868425,0.324877,0.336061,0.374551,0.936442,0.547815,0.729403,0.542515,0.708056,0.448454,0.273887,0.331343,0.345979,0.899226,0.932892,0.0369421,0.139941,0.794963,0.646009,0.871321,0.0476862,0.581106,0.187856,0.0399759,0.774177,0.340984,0.820422,0.103022,0.874596,0.556125,0.933629,0.760488,0.247364,0.485925,0.245675,0.0449337,0.590927,0.759187,0.593768,0.724116,0.129535,0.267394,0.990203,0.598075,0.26804,0.538202,0.959044,0.174354,0.772548,0.711941,0.839829,0.0941786,0.561222,0.447968,0.384574,0.744633,0.829656,0.0319977,0.752616,0.752543,0.0118715,0.713438,0.415588,0.855797,0.946871,0.0468619,0.612333,0.0207034,0.435379,0.975994,0.269574,0.404047,0.0172403,0.134252,0.447559,0.00105572,0.0404794,0.808677,0.410912,0.397278,0.947715,0.227226,0.762643,0.17736,0.395818,0.588723,0.195236,0.779764,0.934209,0.684615,0.818327,0.561487,0.736703,0.0139223,0.845043,0.758333,0.512576,0.345845,0.48875,0.881816,0.617409,0.298083,0.451191,0.810053,0.894014,0.434959,0.20084,0.807767,0.065198,0.660242,0.0997484,0.0561237,0.825135,0.256574,0.716293,0.439084,0.45189,0.769123,0.723323,0.243302,0.395703,0.185027,0.668656,0.458093,0.837339,0.470046,0.698236,0.527951,0.0895808,0.447861,0.528458,0.0210821,0.280803,0.509799,0.669521,0.765476,0.867206,0.113547,0.57772,0.653243,0.635271,0.806628,0.923961,0.00720644,0.133392,0.824201,0.207848,0.145863,0.28578,0.816703,0.350573,0.308201,0.308333,0.315902,0.633947,0.721248,0.958443,0.688685,0.822576,0.92514,0.718276,0.722562,0.162126,0.815804,0.494262,0.0639644,0.416169,0.577236,0.510283,0.200529,0.378643,0.363363,0.385079,0.973337,0.426033,0.418495,0.690157,0.142572,0.424553,0.0455688,0.990815,0.501379,0.619739,0.699546,0.41513,0.950184,0.815344,0.883514,0.0803297,0.13131,0.195819,0.475392,0.211226,0.559196,0.908017,0.426142,0.776763,0.894599,0.610784,0.455357,0.459198,0.9307,0.42187,0.420236,0.453388,0.773025,0.285243,0.708335,0.44173,0.767834,0.80645,0.863037,0.711836,0.269657,0.943314,0.240643,0.423214,0.160174,0.707309,0.495699,0.653757,0.00603944,0.304843,0.454516,0.104982,0.40066,0.913729,0.472589,0.936125,0.0587304,0.84086,0.192709,0.790613,0.0276359,0.0537898,0.0458967,0.527025,0.683012,0.786061,0.795801,0.060474,0.709532,0.604372,0.0516657,0.858462,0.963809,0.586306,0.0053491,0.116872,0.849635,0.375414,0.830428,0.49648,0.16137,0.500476,0.821591,0.112094,0.516688,0.522425,0.768375,0.899364,0.536155,0.782167,0.721189,0.398877,0.734418,0.795551,0.000633538,0.855556,0.386916,0.208118,0.36985,0.671408,0.00887036,0.987198,0.363883,0.874692,0.0253864,0.274393,0.197602,0.319811,0.683348,0.544783,0.52798,0.729334,0.476007,0.0386449,0.546907,0.558278,0.420806,0.959621,0.144531,0.0700106,0.0531345,0.917096,0.842864,0.372339,0.860147,0.211989,0.670213,0.273184,0.531282,0.953745,0.343288,0.0882689,0.702205,0.749619,0.773268,0.512503,0.46401,0.368915,0.643793,0.591576,0.548767,0.864592,0.0781375,0.358038,0.0779353,0.1834,0.123705,0.583797,0.905458,0.339244,0.0929644,0.564271,0.133528,0.0642034,0.665423,0.891931,0.887636,0.802628,0.591387,0.14538,0.771878,0.0958098,0.932264,0.867603,0.546645,0.594258,0.966978,0.832416,0.859691,0.590212,0.908223,0.67854,0.270212,0.215955,0.815505,0.835134,0.86123,0.348903,0.201781,0.0795144,0.970417,0.796104,0.338844,0.0704588,0.834306,0.733863,0.0718327,0.977047,0.689104,0.079093,0.396398,0.330931,0.459402,0.543071,0.656578,0.688199,0.679112,0.168919,0.159837,0.754913,0.89077,0.657197,0.482438,0.753862,0.970718,0.623484,0.568629,0.882104,0.740256,0.840533,0.949993,0.818441,0.156892,0.377458,0.886456,0.208448,0.510775,0.29998,0.129758,0.546023,0.979281,0.432709,0.229962,0.837977,0.0585049,0.767818,0.4554,0.452805,0.413177,0.658508,0.670614,0.166807,0.56892,0.951302,0.172972,0.0951587,0.798475,0.989526,0.220066,0.769507,0.0673039,0.231133,0.726716,0.503507,0.774005,0.0890447,0.0980843,0.309322,0.843061,0.739741,0.320435,0.337168,0.874991,0.347754,0.381771,0.847581,0.470161,0.269593,0.810763,0.149772,0.425589,0.387193,0.205278,0.635973,0.838124,0.294105,0.443201,0.904472,0.972936,0.766572,0.164336,0.795962,0.0586768,0.559381,0.769995,0.099107,0.174388,0.71865,0.955119,0.177993,0.132132,0.347655,0.153314,0.163146,0.535832,0.525414,0.248141,0.203206,0.166245,0.578547,0.040482,0.908621,0.56097,0.949512,0.211459,0.162506,0.236373,0.178988,0.454778,0.306918,0.514193,0.615774,0.727582,0.373553,0.645491,0.788919,0.805023,0.310564,0.261634,0.447422,0.5807,0.491418,0.651468,0.73348,0.0959127,0.532399,0.183712,0.818807,0.834276,0.995052,0.423008,0.281711,0.950222,0.550789,0.941754,0.704081,0.0803649,0.780199,0.965213,0.900143,0.99869,0.154004,0.141882,0.230958,0.259523,0.804131,0.251442,0.310725,0.0931457,0.155258,0.346342,0.334857,0.593585,0.20194,0.0321254,0.485949,0.832221,0.404869,0.331919,0.837156,0.497253,0.410128,0.334959,0.914795,0.538999,0.218367,0.696628,0.441669,0.723446,0.186141,0.184883,0.0180355,0.752572,0.044426,0.662113,0.911068,0.166575,0.312621,0.313531,0.559877,0.755062,0.831323,0.068775,0.443993,0.97522,0.24292,0.0557018,0.851765,0.979617,0.0246547,0.633101,0.414518,0.653051,0.139392,0.652891,0.922272,0.563107,0.203399,0.612925,0.180085,0.795331,0.998314,0.125988,0.172847,0.536346,0.805363,0.67249,0.324363,0.308857,0.0229287,0.778718,0.417581,0.623506,0.399608,0.502414,0.335924,0.953513,0.946903,0.704259,0.292664,0.517539,0.898756,0.953251,0.768083,0.36848,0.243062,0.851886,0.922062,0.707562,0.11037,0.679868,0.757342,0.986581,0.673249,0.978465,0.179215,0.787223,0.94815,0.977264,0.0717184,0.59545,0.3975,0.294708,0.0615788,0.718683,0.474829,0.869423,0.049562,0.699125,0.819177,0.973028,0.299521,0.476237,0.465972,0.675807,0.975369,0.604786,0.833832,0.861869,0.326928,0.501403,0.536257,0.797614,0.0860333,0.208316,0.0816197,0.850612,0.567591,0.0533906,0.265202,0.311577,0.130296,0.614745,0.843357,0.441287,0.983771,0.965179,0.964206,0.526536,0.144074,0.534737,0.422912,0.973186,0.483356,0.946084,0.61849,0.870953,0.478878,0.0244275,0.142758,0.858702,0.727155,0.477754,0.30773,0.494119,0.74554,0.410246,0.662827,0.0673574,0.185624,0.553417,0.789469,0.264621,0.480764,0.952503,0.914139,0.365825,0.943481,0.204098,0.777133,0.50725,0.400523,0.802057,0.797307,0.731818,0.720347,0.0521994,0.0705803,0.891165,0.260048,0.280126,0.274335,0.385755,0.651896,0.133395,0.0861972,0.150555,0.835679,0.0475494,0.452646,0.0415802,0.588601,0.436274,0.0163381,0.054386,0.889388,0.717358,0.816937,0.454198,0.92999,0.688362,0.235721,0.011061,0.0322664,0.502843,0.0441441,0.821644,0.14927,0.977502,0.201487,0.302253,0.92398,0.0606676,0.891463,0.705555,0.99889,0.194806,0.498296,0.15298,0.300703,0.0146513,0.7569,0.822792,0.525282,0.745783,0.467896,0.11978,0.128235,0.021968,0.28441,0.0923359,0.319239,0.72498,0.221598,0.522886,0.15801,0.371172,0.545316,0.764898,0.424615,0.66649,0.588068,0.196813,0.99296,0.245916,0.766114,0.553725,0.169316,0.426841,0.184891,0.0185057,0.561289,0.729053,0.121102,0.0738004,0.972575,0.576238,0.493665,0.154202,0.113935,0.782114,0.70506,0.385408,0.148799,0.944888,0.239988,0.873211,0.325324,0.423032,0.55672,0.137339,0.691882,0.670684,0.201193,0.848928,0.215706,0.626471,0.662926,0.775708,0.642923,0.261205,0.0940461,0.370711,0.487474,0.841291,0.702566,0.833892,0.37746,0.851082,0.620941,0.370452,0.997607,0.79252,0.20029,0.0317771,0.879966,0.248961,0.639694,0.256977,0.242503,0.509006,0.582884,0.0329733,0.144646,0.832447,0.194148,0.413239,0.635682,0.0831878,0.629425,0.738864,0.618575,0.676537,0.225089,0.208606,0.168193,0.841444,0.216784,0.831905,0.812357,0.00641322,0.845493,0.602014,0.636658,0.308159,0.271336,0.812302,0.668935,0.621191,0.638596,0.661844,0.780317,0.565042,0.66836,0.412954,0.419218,0.921252,0.0562265,0.970588,0.487899,0.402334,0.669491,0.134207,0.67103,0.258392,0.699536,0.435265,0.762827,0.320485,0.717049,0.231543,0.714538,0.449847,0.967692,0.857296,0.860952,0.621494,0.615587,0.96111,0.270663,0.1008,0.620156,0.404797,|0.220338,0.176719,0.194271,0.943178,0.202429,0.781101,0.91038,0.709653,0.410266,0.835456,0.544001,0.528991,0.366175,0.641425,0.386307,0.488997,0.184784,0.500685,0.340531,0.612789,0.541925,0.392294,0.356376,0.0331245,0.204543,0.739213,0.965896,0.729735,0.851725,0.104473,0.671097,0.0294421,0.557467,0.330992,0.840381,0.352224,0.0166793,0.222861,0.806348,0.994325,0.117087,0.779728,0.354568,0.891536,0.553436,0.881689,0.142086,0.316636,0.315948,0.895834,0.69438,0.658372,0.794593,0.161534,0.84197,0.0702386,0.770576,0.826106,0.881486,0.718029,0.803069,0.95694,0.597797,0.503322,0.639365,0.88739,0.787485,0.00809211,0.439734,0.539937,0.0929763,0.761034,0.349117,0.484489,0.329467,0.936363,0.452242,0.52024,0.22447,0.769865,0.285794,0.23952,0.124225,0.544339,0.831657,0.386053,0.563633,0.478277,0.608494,0.652339,0.727685,0.608546,0.63752,0.793129,0.344748,0.412628,0.308933,0.354036,0.314167,0.421051,0.0532252,0.382264,0.121897,0.976363,0.385833,0.0667875,0.324266,0.737908,0.595265,0.909515,0.136727,0.893743,0.49593,0.93123,0.947612,0.845857,0.712313,0.0740046,0.287332,0.884342,0.0709201,0.499189,0.234768,0.275291,0.36758,0.455208,0.272433,0.476258,0.677305,0.373153,0.633795,0.73725,0.139285,0.423368,0.73744,0.836239,0.250609,0.373344,0.569128,0.46612,0.97002,0.707721,0.699367,0.931494,0.420783,0.920048,0.541431,0.449033,0.127459,0.0603316,0.757327,0.225938,0.675146,0.263182,0.381967,0.226046,0.371526,0.201062,0.335203,0.568242,0.00342935,0.247688,0.580771,0.316524,0.680787,0.351027,0.873876,0.733447,0.313599,0.926626,0.657874,0.860078,0.931139,0.407966,0.847895,0.495657,0.591548,0.140951,0.370313,0.281,0.720147,0.621896,0.0376025,0.994311,0.203634,0.468546,0.635423,0.780178,0.133074,0.40919,0.589473,0.0989419,0.223515,0.931036,0.288285,0.173989,0.507042,0.0331498,0.896985,0.722431,0.609469,0.0427442,0.0381934,0.130251,0.897632,0.126381,0.338618,0.301934,0.544266,0.55384,0.440061,0.293167,0.195564,0.936281,0.163457,0.327625,0.719832,0.66717,0.47921,0.432774,0.811692,0.388744,0.97421,0.119888,0.190231,0.184318,0.499863,0.729983,0.0909337,0.025581,0.254868,0.57745,0.851392,0.415933,0.471778,0.760673,0.584424,0.841185,0.0226792,0.713156,0.838692,0.97506,0.00437939,0.157048,0.149295,0.125974,0.287413,0.584425,0.317518,0.244232,0.870278,0.356269,0.704002,0.884817,0.51236,0.288936,0.681046,0.644121,0.199108,0.760425,0.0318732,0.608445,0.181799,0.231928,0.355605,0.0205141,0.0603234,0.151378,0.241135,0.54294,0.918724,0.190769,0.271787,0.590201,0.0307879,0.297234,0.440146,0.0321503,0.873428,0.286937,0.649552,0.652654,0.991752,0.17046,0.606263,0.9716,0.508875,0.939017,0.12358,0.739394,0.496678,0.845751,0.0735562,0.887766,0.284546,0.237463,0.0827251,0.939949,0.445451,0.473879,0.211205,0.740686,0.951236,0.869839,0.626179,0.690586,0.717643,0.675641,0.351969,0.89681,0.262278,0.0974056,0.0294564,0.832777,0.498098,0.578765,0.884642,0.324234,0.0328052,0.284839,0.706799,0.540897,0.0969275,0.266638,0.825602,0.0321988,0.575117,0.146961,0.0850236,0.445332,0.8814,0.262207,0.121516,0.734572,0.165731,0.0643835,0.230104,0.466516,0.789652,0.679271,0.220146,0.769575,0.338464,0.381368,0.0418627,0.966572,0.650639,0.0531686,0.0163843,0.258242,0.0211067,0.770514,0.650242,0.199354,0.651248,0.528649,0.972399,0.105485,0.0659918,0.313307,0.138089,0.0792762,0.731597,0.484599,0.506121,0.705365,0.865126,0.046202,0.975465,0.180486,0.100853,0.943874,0.160196,0.421108,0.805456,0.923273,0.90684,0.985183,0.678552,0.146231,0.00926584,0.621142,0.909909,0.933278,0.589042,0.394364,0.0816243,0.171486,0.545359,0.98182,0.152991,0.278614,0.0272953,0.423483,0.678072,0.649659,0.496662,0.518728,0.860429,0.668417,0.370151,0.585624,0.357369,0.620364,0.796241,0.404784,0.807679,0.952376,0.601038,0.439025,0.0702274,0.933829,0.135595,0.737766,0.170228,0.00242251,0.794316,0.517678,0.311453,0.584962,0.137242,0.494487,0.785459,0.628613,0.767962,0.644075,0.276738,0.121906,0.0729824,0.28927,0.191986,0.634911,0.331654,0.551116,0.318969,0.155619,0.871653,0.361625,0.187709,0.393864,0.126176,0.405881,0.836736,0.714993,0.224204,0.465105,0.851934,0.207322,0.556853,0.5418,0.814088,0.260434,0.328337,0.811046,0.350278,0.273791,0.600329,0.484765,0.620063,0.488026,0.52146,0.266753,0.406942,0.935305,0.735952,0.0300898,0.577699,0.970905,0.304203,0.308464,0.0536515,0.739421,0.12159,0.816681,0.990984,0.231954,0.372003,0.906027,0.615358,0.522859,0.111412,0.521267,0.41577,0.654206,0.845401,0.752525,0.788879,0.782415,0.909479,0.37388,0.87806,0.245876,0.702831,0.470274,0.0151839,0.744976,0.558051,0.82602,0.247021,0.497115,0.33975,0.54329,0.536972,0.517179,0.445957,0.899835,0.145958,0.845965,0.950764,0.195739,0.04279,0.704694,0.146552,0.40307,0.408116,0.431809,0.78692,0.0826163,0.0668285,0.0711894,0.404058,0.987913,0.32943,0.397334,0.908373,0.0243707,0.600061,0.219993,0.892839,0.718845,0.124338,0.803078,0.654076,0.964205,0.0103249,0.939394,0.85629,0.0490478,0.688941,0.521934,0.406735,0.0920646,0.87521,0.251236,0.855445,0.0518973,0.989088,0.515438,0.416439,0.186696,0.544632,0.707186,0.361095,0.49225,0.811556,0.58378,0.776848,0.0874875,0.925134,0.186011,0.670978,0.35418,0.647746,0.244171,0.0029273,0.886234,0.824309,0.000839055,0.896229,0.564758,0.982123,0.288103,0.13439,0.506361,0.165486,0.700534,0.326084,0.812244,0.225138,0.339964,0.858465,0.931917,0.520344,0.00742972,0.650194,0.0238526,0.741344,0.322289,0.635011,0.852948,0.129218,0.407127,0.925409,0.413115,0.67496,0.212069,0.922713,0.0760359,0.348041,0.315026,0.25134,0.18119,0.836993,0.35647,0.799996,0.517416,0.586289,0.906923,0.199921,0.468632,0.804845,0.788717,0.838938,0.868924,0.977531,0.541473,0.601748,0.849741,0.834026,0.778798,0.953726,0.497693,0.6582,0.787516,0.496489,0.918906,0.951437,0.964521,0.712582,0.262585,0.764644,0.811461,0.676197,0.96634,0.625017,0.84813,0.965519,0.441293,0.128974,0.125147,0.937546,0.269107,0.101527,0.777237,0.292823,0.150923,0.459994,0.531083,0.351261,0.997194,0.966298,0.0429458,0.546956,0.388589,0.35351,0.421775,0.524744,0.0737238,0.824667,0.695487,0.264882,0.497466,0.13976,0.226151,0.389562,0.575268,0.0326145,0.187025,0.496512,0.549968,0.285188,0.541928,0.157794,0.161744,0.675224,0.744915,0.889448,0.690899,0.88413,0.401571,0.959483,0.697476,0.763149,0.110467,0.336596,0.72054,0.635284,0.295563,0.333416,0.974629,0.87098,0.379378,0.93235,0.618518,0.834919,0.802965,0.444854,0.335343,0.863504,0.201458,0.642028,0.395562,0.130191,0.125506,0.385124,0.0425342,0.871994,0.0763738,0.69413,0.372092,0.516826,0.905643,0.758462,0.255604,0.429402,0.873325,0.0598772,0.987861,0.787728,0.855489,0.0530808,0.778862,0.39722,0.414014,0.374489,0.63211,0.420232,0.282159,0.662258,0.937309,0.406916,0.95276,0.990365,0.481294,0.647606,0.365741,0.15938,0.623153,0.828986,0.289288,0.20673,0.796854,0.8076,0.642028,0.101473,0.0541733,0.376482,0.906603,0.756745,0.900779,0.561988,0.716836,0.0485127,0.911301,0.546236,0.75153,0.122586,0.664106,0.573596,0.884946,0.01411,0.180938,0.11144,0.347791,0.914385,0.325609,0.42151,0.688295,0.256965,0.778602,0.257211,0.137973,0.620432,0.00389773,0.52854,0.256876,0.834885,0.921413,0.377728,0.463243,0.383251,0.72369,0.80517,0.104728,0.394946,0.149834,0.540607,0.939474,0.93047,0.675872,0.0316594,0.125027,0.653834,0.397889,0.72857,0.60513,0.497111,0.307509,0.859341,0.275053,0.63835,0.606125,0.471538,0.126483,0.30993,0.328268,0.645059,0.00653142,0.611021,0.45959,0.166635,0.0789558,0.126242,0.902579,0.602801,0.699378,0.986845,0.486432,0.951268,0.823476,0.0664228,0.979854,0.831042,0.994654,0.968009,0.688633,0.205445,0.988332,0.985839,0.717622,0.197055,0.769881,0.510125,0.965802,0.849391,0.00906909,0.823333,0.398076,0.395991,0.787679,0.14859,0.324885,0.556017,0.768298,0.402768,0.530753,0.523153,0.644093,0.910639,0.322347,0.0645775,0.851963,0.580419,0.0528239,0.613477,0.321804,0.153923,0.939099,0.211625,0.328753,0.838502,0.399599,0.741001,0.267214,0.246454,0.212286,0.863935,0.913769,0.527361,0.626226,0.493465,0.0795293,0.724973,0.679522,0.40168,0.105351,0.374746,0.941564,0.513646,0.295059,0.808142,0.650495,0.325762,0.533605,0.450686,0.360704,0.542581,0.734305,0.163833,0.374618,0.756927,0.785347,0.186651,0.273174,0.648199,0.862771,0.630169,0.491908,0.890653,0.511957,0.469515,0.807602,0.325826,0.592376,0.792144,0.871398,0.622873,0.16352,0.950909,0.559268,0.352142,0.33433,0.57688,0.949076,0.490011,0.565322,0.20382,0.367302,0.370715,0.0303174,0.119189,0.123376,0.354752,0.256788,0.951524,0.224946,0.436415,0.909401,0.167818,0.780037,0.986181,0.468386,0.134747,0.784398,0.478874,0.117088,0.385091,0.919139,0.501597,0.0876963,0.729882,0.694438,0.0489175,0.542241,0.327506,0.469406,0.0916126,0.791194,0.0808963,0.243649,0.00512916,0.0989702,0.419091,0.302742,0.949183,0.425189,0.792391,0.807437,0.2891,0.307515,0.291499,0.655182,0.453522,0.345456,0.256926,0.209704,0.559136,0.410759,0.595273,0.783738,0.887388,0.570848,0.929097,0.848795,0.147095,0.016335,0.699305,0.496583,0.782625,0.42968,0.0651845,0.49378,0.624167,0.927953,0.918122,0.184348,0.207377,0.752117,0.183518,0.047196,0.224265,0.757971,0.44739,0.456428,0.788113,0.860622,0.545687,0.10641,0.632254,0.631396,|0.524355,0.0715393,0.0172231,0.597797,0.435328,0.661033,0.968143,0.843215,0.48913,0.0261989,0.877211,0.0387759,0.99859,0.231974,0.747896,0.726422,0.481469,0.156353,0.544097,0.895965,0.643903,0.642088,0.613823,0.646798,0.304223,0.48328,0.767812,0.916582,0.66937,0.347322,0.594623,0.772274,0.0937476,0.754975,0.550769,0.324846,0.564747,0.649695,0.103155,0.622088,0.142568,0.0786937,0.368358,0.72101,0.016849,0.102954,0.873833,0.394345,0.814248,0.178929,0.654711,0.40679,0.385531,0.515111,0.0959433,0.133682,0.0524104,0.56693,0.82496,0.968998,0.29459,0.73632,0.435126,0.489181,0.79919,0.585781,0.736874,0.730283,0.598067,0.526515,0.611076,0.154515,0.527993,0.22896,0.0917662,0.679731,0.857321,0.979112,0.521836,0.526292,0.666578,0.478278,0.551887,0.922835,0.405812,0.924859,0.63305,0.139471,0.583531,0.568376,0.322157,0.395133,0.711677,0.951916,0.739271,0.337,0.799459,0.707355,0.486762,0.967246,0.735217,0.442588,0.823791,0.880673,0.936875,0.245479,0.176816,0.625623,0.805377,0.405926,0.688425,0.285211,0.780745,0.876474,0.868401,0.00683481,0.698421,0.573302,0.244507,0.368006,0.576777,0.47506,0.256524,0.605237,0.854641,0.94092,0.758596,0.855334,0.451457,0.24472,0.427592,0.909525,0.597116,0.409722,0.711037,0.494634,0.478997,0.463717,0.293433,0.604193,0.898373,0.302308,0.328923,0.574277,0.183642,0.618962,0.0998458,0.593549,0.834231,0.096176,0.387354,0.93702,0.277396,0.150122,0.188775,0.263211,0.320213,0.7501,0.572935,0.0479745,0.518686,0.992616,0.0139055,0.237776,0.574756,0.0194992,0.805471,0.0814598,0.703014,0.773241,0.132343,0.962408,0.933744,0.947124,0.0155054,0.506158,0.439734,0.562027,0.890518,0.537552,0.810423,0.875435,0.742487,0.0199329,0.861937,0.202744,0.446519,0.817886,0.165587,0.422518,0.111052,0.00390607,0.687172,0.574097,0.565994,0.840745,0.837485,0.477169,0.740828,0.0439518,0.471508,0.241793,0.952078,0.282797,0.23839,0.162131,0.280836,0.895722,0.909643,0.759277,0.0670402,0.45236,0.800635,0.725803,0.813545,0.16983,0.459672,0.614567,0.0897113,0.851857,0.729172,0.717849,0.292069,0.207054,0.145989,0.130654,0.502701,0.921508,0.343654,0.394361,0.112982,0.710617,0.623072,0.621693,0.738729,0.562734,0.77483,0.866573,0.636873,0.0226428,0.406366,0.25725,0.81153,0.632152,0.796547,0.254764,0.443932,0.203302,0.523165,0.146978,0.431895,0.162752,0.546995,0.745596,0.380403,0.719573,0.491686,0.240317,0.485134,0.818001,0.771371,0.493591,0.292295,0.861096,0.595643,0.0358775,0.552099,0.0755686,0.492435,0.456725,0.662383,0.265351,0.25244,0.519259,0.710293,0.0621126,0.558946,0.503222,0.411166,0.895261,0.366253,0.0200732,0.0274796,0.718435,0.584673,0.948843,0.234965,0.426045,0.912602,0.218718,0.0728877,0.41946,0.103398,0.94605,0.0626115,0.878172,0.571599,0.47676,0.985525,0.604013,0.955913,0.360035,0.424606,0.382973,0.397585,0.150055,0.236818,0.225848,0.710734,0.289701,0.623206,0.806217,0.703008,0.827151,0.120022,0.673388,0.737495,0.333824,0.374339,0.00294161,0.725545,0.298874,0.5472,0.404295,0.118411,0.614218,0.0883164,0.816492,0.116057,0.828678,0.907609,0.917165,0.822755,0.597456,0.448586,0.500448,0.80613,0.608686,0.739339,0.663118,0.308275,0.283824,0.27055,0.374468,0.309787,0.219308,0.788143,0.100015,0.787113,0.985803,0.34363,0.103645,0.833649,0.71046,0.36876,0.0437025,0.8587,0.222362,0.844673,0.216738,0.324177,0.538878,0.140676,0.0898756,0.805223,0.870778,0.691716,0.623143,0.927653,0.0750269,0.379936,0.667975,0.633974,0.431727,0.710122,0.199813,0.546872,0.750013,0.86253,0.744076,0.565323,0.0903738,0.53948,0.68086,0.738104,0.745712,0.956127,0.52155,0.186661,0.589445,0.0888951,0.988696,0.273005,0.806252,0.814635,0.659082,0.811391,0.260474,0.105497,0.800617,0.409129,0.11191,0.815099,0.391401,0.76738,0.0210694,0.32877,0.805888,0.641959,0.991987,0.280687,0.138888,0.520629,0.36061,0.14936,0.449338,0.195217,0.570306,0.0438504,0.579944,0.604471,0.681279,0.319819,0.770822,0.695811,0.708079,0.635628,0.0882523,0.918065,0.348052,0.553183,0.320339,0.567846,0.471606,0.00126672,0.0391011,0.821734,0.815778,0.225762,0.554095,0.767385,0.571732,0.586523,0.592156,0.852502,0.0452889,0.762283,0.80087,0.180752,0.564112,0.459867,0.166025,0.313188,0.427811,0.696264,0.194449,0.451819,0.14232,0.603256,0.835126,0.298238,0.115374,0.602756,0.403384,0.258603,0.879252,0.587316,0.460099,0.282995,0.395861,0.832669,0.638539,0.388748,0.110102,0.582455,0.448787,0.503962,0.409286,0.588668,0.584246,0.456627,0.592119,0.403783,0.964427,0.235268,0.301364,0.842506,0.990977,0.950392,0.455592,0.642539,0.302496,0.665833,0.378808,0.854698,0.716618,0.189747,0.980843,0.889486,0.440588,0.411911,0.212497,0.0348467,0.833103,0.720925,0.931058,0.791405,0.932664,0.712033,0.428696,0.401562,0.798708,0.812007,0.286437,0.111868,0.075798,0.999706,0.792888,0.402089,0.442797,0.295017,0.725317,0.343572,0.571541,0.660984,0.014845,0.430671,0.208835,0.264282,0.38911,0.704073,0.368798,0.102174,0.937951,0.907954,0.996638,0.0416788,0.218096,0.530739,0.990383,0.740758,0.980641,0.45867,0.0315404,0.105763,0.581584,0.190243,0.32528,0.418086,0.395755,0.790675,0.458795,0.317478,0.271774,0.556029,0.27229,0.600438,0.252672,0.580678,0.525524,0.491986,0.000772357,0.975945,0.817785,0.499,0.829704,0.916507,0.465549,0.0480999,0.052909,0.8681,0.995307,0.0137296,0.857937,0.520263,0.155957,0.50702,0.25287,0.525476,0.946897,0.462667,0.5275,0.589442,0.827185,0.208509,0.116366,0.913806,0.129704,0.303575,0.919428,0.552192,0.598782,0.114614,0.7273,0.576996,0.0527781,0.211979,0.32409,0.263071,0.78945,0.261247,0.299527,0.575118,0.702514,0.759333,0.742887,0.555376,0.936135,0.048948,0.418832,0.145623,0.0269458,0.0259818,0.14391,0.977723,0.308841,0.477038,0.35195,0.0550877,0.242816,0.0586651,0.915511,0.272359,0.334859,0.533029,0.0322235,0.102027,0.643202,0.0208654,0.659059,0.676909,0.385874,0.685266,0.533827,0.543127,0.0835142,0.602983,0.88909,0.0260576,0.689324,0.378056,0.00823486,0.218239,0.192111,0.429237,0.697161,0.63214,0.790654,0.162647,0.688388,0.980155,0.298147,0.564294,0.150536,0.159832,0.708661,0.22461,0.510549,0.752349,0.0905111,0.123027,0.127199,0.302391,0.558968,0.0316584,0.426808,0.995906,0.998426,0.332865,0.453969,0.241175,0.543305,0.633193,0.0637697,0.517006,0.986387,0.23225,0.600182,0.688141,0.807619,0.36544,0.0301812,0.705272,0.590654,0.262431,0.993234,0.762546,0.22335,0.669719,0.937576,0.107486,0.948283,0.780554,0.226961,0.780834,0.282675,0.680764,0.958443,0.942555,0.814177,0.194827,0.921074,0.169055,0.3467,0.765366,0.0629029,0.951333,0.818584,0.146799,0.259942,0.532627,0.515304,0.726084,0.411487,0.248805,0.503151,0.768178,0.865113,0.744562,0.587792,0.103429,0.433652,0.94916,0.400921,0.743362,0.355252,0.453229,0.464003,0.280325,0.95781,0.0988348,0.351614,0.322238,0.12231,0.413054,0.36397,0.438063,0.596031,0.426838,0.401052,0.696676,0.612226,0.915142,0.359153,0.846081,0.0908321,0.0949108,0.2831,0.154164,0.667309,0.165579,0.450742,0.980284,0.832397,0.471064,0.152467,0.120532,0.6044,0.234532,0.923807,0.990053,0.332444,0.408309,0.787822,0.120454,0.437501,0.419744,0.604478,0.793196,0.392864,0.138228,0.183357,0.516894,0.119993,0.23022,0.0444365,0.72443,0.254979,0.568975,0.880146,0.281617,0.224984,0.458042,0.624192,0.952049,0.949262,0.799566,0.498208,0.556834,0.18687,0.642706,0.963826,0.111324,0.756091,0.309051,0.163032,0.889396,0.542627,0.511817,0.668819,0.515638,0.566739,0.978361,0.397859,0.271465,0.576075,0.89102,0.593193,0.441081,0.866929,0.769763,0.307513,0.102932,0.516819,0.373415,0.422931,0.787126,0.664596,0.13459,0.803104,0.384709,0.288738,0.330123,0.744686,0.891983,0.119286,0.0974131,0.904638,0.94472,0.322272,0.697141,0.834321,0.21714,0.966905,0.601247,0.371296,0.763311,0.541646,0.973971,0.31115,0.141179,0.271892,0.464726,0.544436,0.271447,0.299781,0.52225,0.0435257,0.802774,0.345725,0.690455,0.536215,0.790003,0.0107387,0.655601,0.470888,0.504018,0.0414801,0.558923,0.589921,0.0417354,0.477946,0.290075,0.0512174,0.191644,0.235985,0.789848,0.370759,0.36968,0.29163,0.59475,0.115567,0.5208,0.15386,0.820601,0.678691,0.656487,0.0618824,0.0935609,0.651312,0.940204,0.169207,0.236802,0.00194144,0.441712,0.886096,0.358636,0.213342,0.070945,0.837574,0.22745,0.846593,0.280367,0.527807,0.373426,0.173068,0.967192,0.848678,0.803262,0.127504,0.645594,0.259001,0.275957,0.835341,0.8316,0.428283,0.10461,0.837764,0.171268,0.690903,0.834774,0.177933,0.274424,0.982213,0.888443,0.769655,0.801032,0.144329,0.452645,0.810394,0.534897,0.624374,0.74742,0.983719,0.548633,0.286872,0.170427,0.723108,0.116325,0.0891457,0.139858,0.839,0.313196,0.496824,0.324307,0.976022,0.702758,0.3244,0.118341,0.97563,0.200989,0.669307,0.518133,0.540183,0.738416,0.0434885,0.220721,0.218677,0.227514,0.213248,0.625948,0.103568,0.0497553,0.897388,0.471773,0.0487883,0.296195,0.646287,0.370383,0.239067,0.133092,0.442572,0.296955,0.534213,0.747103,0.697137,0.344273,0.183692,0.222552,0.151029,0.242118,0.635153,0.0847168,0.274824,0.200317,0.91959,0.922364,0.506811,0.359888,0.431211,0.567346,0.267718,0.971806,0.036094,0.0717047,0.69828,0.525711,0.873301,0.129116,0.604499,0.0467899,0.100727,0.321549,0.990661,0.654172,0.130712,0.203716,0.0240213,0.836511,0.38859,|0.0921733,0.89906,0.181498,0.621948,0.537763,0.132981,0.756168,0.206343,0.214589,0.449194,0.86209,0.545557,0.755211,0.927061,0.870516,0.125379,0.485384,0.101195,0.169775,0.433255,0.359983,0.223559,0.408724,0.260176,0.14442,0.261261,0.135195,0.718986,0.773809,0.0858076,0.284642,0.509307,0.714962,0.503793,0.0214549,0.251011,0.937858,0.864199,0.827975,0.42394,0.56765,0.0334978,0.389073,0.563153,0.331053,0.442937,0.557189,0.674416,0.19077,0.359743,0.673694,0.544501,0.081504,0.917274,0.540147,0.162656,0.973858,0.753918,0.941454,0.403112,0.798187,0.0338353,0.0217899,0.175488,0.856278,0.250051,0.809942,0.963689,0.796308,0.911168,0.208669,0.691996,0.464351,0.523018,0.989467,0.712155,0.382057,0.133655,0.0826001,0.991649,0.527453,0.73687,0.371452,0.675916,0.883009,0.294422,0.823455,0.22372,0.581876,0.316306,0.91814,0.0471645,0.240761,0.787495,0.432694,0.804569,0.164174,0.302658,0.552136,0.725609,0.679154,0.544684,0.407853,0.497624,0.742757,0.974256,0.0185444,0.420082,0.109274,0.975969,0.318319,0.316465,0.0682248,0.950281,0.145662,0.00436896,0.817889,0.0846167,0.570552,0.865793,0.0822175,0.272113,0.0825494,0.174703,0.0273222,0.949854,0.369195,0.600945,0.233887,0.952643,0.167989,0.0928185,0.0919245,0.752801,0.21461,0.707531,0.703802,0.869797,0.342303,0.648957,0.711639,0.118321,0.806153,0.811548,0.229127,0.197837,0.369583,0.461884,0.658448,0.962333,0.365885,0.918103,0.184667,0.829143,0.634579,0.307844,0.271277,0.23176,0.793314,0.97516,0.532554,0.361505,0.270764,0.014702,0.735219,0.200304,0.854731,0.761331,0.287748,0.0264019,0.348978,0.99058,0.843773,0.7835,0.451213,0.965711,0.95084,0.421187,0.0882096,0.146477,0.288687,0.871878,0.358456,0.459368,0.00322986,0.559621,0.887054,0.130192,0.806503,0.521339,0.0726977,0.69532,0.511832,0.499187,0.578358,0.192703,0.290452,0.225785,0.0385106,0.123585,0.177539,0.143236,0.157382,0.366431,0.149138,0.100367,0.635382,0.852696,0.878416,0.72313,0.847646,0.11415,0.89561,0.36316,0.0172119,0.512291,0.388519,0.716594,0.505368,0.313671,0.613926,0.337643,0.870402,0.196243,0.678837,0.987875,0.838122,0.00492829,0.0891903,0.73997,0.852909,0.778432,0.253237,0.604832,0.894802,0.300504,0.360444,0.734051,0.80203,0.458565,0.489851,0.53684,0.227649,0.300745,0.643662,0.571232,0.416625,0.995708,0.588089,0.366073,0.0211136,0.398926,0.541939,0.00756246,0.973548,0.453922,0.30924,0.188537,0.610315,0.807772,0.590686,0.404128,0.537507,0.746016,0.0793792,0.310827,0.271844,0.169934,0.245652,0.0879786,0.468927,0.495253,0.232893,0.10433,0.0349947,0.234618,0.929842,0.410858,0.442552,0.401409,0.467733,0.0387755,0.798948,0.58667,0.775856,0.220477,0.32661,0.706575,0.932237,0.664969,0.725573,0.500286,0.353584,0.576368,0.225255,0.436219,0.953816,0.00365335,0.224741,0.882339,0.542665,0.394491,0.0592679,0.579509,0.716907,0.460396,0.897893,0.12699,0.736563,0.0800799,0.0581079,0.770843,0.898852,0.525174,0.139215,0.24314,0.165949,0.277499,0.70332,0.525797,0.241145,0.0789593,0.913802,0.732069,0.300807,0.955058,0.651487,0.988743,0.161023,0.945614,0.204199,0.221811,0.719903,0.399344,0.226883,0.183577,0.770443,0.0734586,0.943113,0.846543,0.788861,0.655432,0.711014,0.654754,0.192914,0.893405,0.264601,0.540417,0.91855,0.881872,0.0266926,0.145747,0.601485,0.569277,0.44609,0.831413,0.544756,0.567937,0.258103,0.17735,0.320878,0.0193651,0.724434,0.28927,0.751002,0.0116912,0.198248,0.968218,0.959137,0.183416,0.0325177,0.607106,0.563761,0.96871,0.927467,0.414683,0.472226,0.877581,0.218456,0.172912,0.848585,0.714743,0.277951,0.404618,0.465062,0.340173,0.0143805,0.799556,0.660023,0.0978345,0.91882,0.883276,0.139692,0.159292,0.908995,0.950793,0.366293,0.121371,0.672282,0.175313,0.515778,0.528487,0.322057,0.367485,0.339371,0.71998,0.0998664,0.95659,0.959493,0.188958,0.613452,0.031436,0.547214,0.19534,0.796279,0.371543,0.156872,0.0941865,0.23039,0.44706,0.21725,0.108488,0.129346,0.605599,0.480114,0.0757791,0.310424,0.438935,0.666528,0.096722,0.203232,0.574978,0.578877,0.936393,0.12601,0.539475,0.263505,0.798765,0.0807139,0.718806,0.675038,0.165398,0.381963,0.185087,0.0584209,0.130175,0.645117,0.711673,0.44615,0.542047,0.510758,0.174269,0.145943,0.616228,0.364268,0.309545,0.497988,0.612633,0.472862,0.746653,0.805395,0.198693,0.186917,0.79268,0.350609,0.540395,0.875297,0.130598,0.220111,0.527393,0.0865803,0.013433,0.611318,0.371607,0.508642,0.57437,0.00482041,0.595013,0.646578,0.296256,0.766164,0.95124,0.482548,0.599992,0.81883,0.278423,0.226728,0.0542859,0.944781,0.136787,0.974348,0.117843,0.651777,0.184431,0.175007,0.349965,0.625201,0.0858532,0.341302,0.962657,0.438274,0.583613,0.550214,0.679503,0.325787,0.918361,0.0883763,0.633811,0.607865,0.755986,0.827147,0.980699,0.0744764,0.122061,0.163485,0.188643,0.862967,0.453154,0.751994,0.583747,0.24386,0.072846,0.974472,0.645949,0.484089,0.556245,0.321996,0.9351,0.10585,0.907473,0.0905092,0.973657,0.163001,0.352335,0.893636,0.348243,0.401587,0.339783,0.374434,0.583929,0.272758,0.328944,0.568342,0.363114,0.472696,0.0433287,0.160398,0.326031,0.768982,0.581069,0.197902,0.661521,0.0366836,0.605241,0.410198,0.752294,0.456447,0.0450841,0.339348,0.4284,0.632985,0.518031,0.922672,0.363806,0.278336,0.817154,0.599601,0.783254,0.113079,0.832227,0.289759,0.847294,0.528807,0.570362,0.0384786,0.759124,0.801968,0.921647,0.673525,0.210235,0.557664,0.79142,0.0157494,0.626854,0.966467,0.318984,0.66228,0.223742,0.275859,0.00864291,0.569722,0.160546,0.399722,0.455616,0.990796,0.904413,0.109438,0.482954,0.792854,0.234183,0.272837,0.446179,0.0199904,0.696284,0.949732,0.218639,0.152974,0.548826,0.747945,0.0645223,0.492499,0.75797,0.400237,0.880856,0.15021,0.407264,0.902546,0.267571,0.819877,0.943914,0.488967,0.423998,0.145306,0.107947,0.50129,0.153993,0.867454,0.373395,0.276157,0.865995,0.258725,0.966149,0.446092,0.305325,0.523643,0.76135,0.719691,0.264696,0.497103,0.0695226,0.95884,0.64547,0.626382,0.426018,0.991306,0.822548,0.500333,0.780844,0.114301,0.257772,0.176206,0.540401,0.403455,0.0841699,0.812982,0.892219,0.819216,0.617918,0.0766959,0.276012,0.2356,0.362491,0.391599,0.785761,0.340462,0.70448,0.714641,0.664547,0.872387,0.79292,0.162798,0.906149,0.908934,0.209674,0.706336,0.897617,0.970962,0.813571,0.663843,0.0898752,0.0255179,0.413934,0.840967,0.852619,0.374757,0.852414,0.121136,0.577063,0.315968,0.145817,0.449952,0.902344,0.746068,0.521842,0.680748,0.618337,0.667725,0.0430601,0.0828017,0.487412,0.0450804,0.191924,0.310924,0.762237,0.31352,0.323354,0.0429686,0.930628,0.329639,0.00304115,0.802119,0.730596,0.927222,0.775027,0.685388,0.989,0.778852,0.132145,0.220803,0.47454,0.371579,0.398014,0.127664,0.652386,0.678731,0.565866,0.618176,0.771662,0.710152,0.419777,0.373048,0.97125,0.253795,0.233936,0.105393,0.0406867,0.989256,0.793158,0.137887,0.0509776,0.339419,0.224622,0.385401,0.919413,0.978286,0.560176,0.7621,0.874327,0.810102,0.0464441,0.0945896,0.0369391,0.616167,0.505941,0.634721,0.167167,0.667581,0.831294,0.777844,0.133827,0.646807,0.89236,0.363742,0.900976,0.200157,0.146123,0.697261,0.173555,0.772965,0.00465423,0.541379,0.875478,0.84481,0.310475,0.880586,0.0481618,0.831477,0.493105,0.737114,0.844788,0.97207,0.685668,0.569052,0.472954,0.481006,0.352835,0.485349,0.418939,0.698616,0.190832,0.362325,0.39021,0.619286,0.0850097,0.160718,0.544325,0.40689,0.387292,0.560452,0.681522,0.592843,0.057955,0.528226,0.115594,0.889831,0.466297,0.930611,0.251166,0.0605795,0.308636,0.802855,0.272064,0.318948,0.112239,0.714118,0.728757,0.935477,0.00650418,0.436934,0.302388,0.161067,0.628888,0.822992,0.25728,0.887267,0.328653,0.897797,0.241805,0.946741,0.601903,0.0968177,0.902056,0.938258,0.164372,0.181323,0.831667,0.866063,0.0677369,0.899244,0.846238,0.996319,0.118253,0.137658,0.481968,0.615746,0.982746,0.0589188,0.358426,0.103607,0.0535072,0.613395,0.149711,0.5671,0.0959712,0.939482,0.630967,0.880468,0.104884,0.39835,0.856515,0.728115,0.0860944,0.732814,0.670115,0.877452,0.949414,0.249074,0.851063,0.328839,0.0087136,0.51337,0.166997,0.380329,0.0990557,0.0443349,0.700737,0.506679,0.0316493,0.764513,0.965064,0.191871,0.0341163,0.161136,0.631065,0.540292,0.0937348,0.815668,0.942511,0.416737,0.799876,0.0870535,0.431431,0.575394,0.64436,0.215422,0.245097,0.737657,0.746823,0.740694,0.0574106,0.535484,0.179221,0.323052,0.965254,0.789135,0.37033,0.528589,0.774303,0.787171,0.952921,0.772922,0.289001,0.879924,0.964086,0.880651,0.752307,0.284892,0.230078,0.627533,0.747544,0.204451,0.161125,0.0709953,0.87754,0.653114,0.502589,0.500528,0.684597,0.13592,0.830231,0.887136,0.643144,0.843042,0.366254,0.0678625,0.956131,0.800254,0.845294,0.840104,0.956401,0.197078,0.758524,0.265553,0.759976,0.469693,0.503135,0.458209,0.631666,0.807676,0.530437,0.746311,0.986991,0.080812,0.676725,0.960915,0.608648,0.773605,0.42349,0.584912,0.944851,0.350766,0.678089,0.634864,0.921395,0.460983,0.894927,0.409777,0.0322396,0.160805,0.554734,0.774011,0.751544,0.499553,0.364666,0.205503,0.1831,0.111593,0.107726,0.070147,0.867295,0.470326,0.846807,0.34857,0.118045,0.0794396,0.281808,0.0253857,0.23149,0.273796,0.0888245,0.246255,0.0778999,0.235274,0.591382,0.00234526,0.824396,0.699429,0.242796,0.37716,0.981138,|0.378406,0.821858,0.0597178,0.570383,0.863475,0.049602,0.336971,0.838723,0.606566,0.749001,0.872995,0.409312,0.77315,0.358285,0.0625097,0.583047,0.101322,0.649965,0.492122,0.106181,0.592083,0.727764,0.705906,0.832653,0.992663,0.681045,0.713633,0.882465,0.261713,0.477944,0.928838,0.502374,0.680618,0.427573,0.747129,0.295852,0.52972,0.152995,0.757608,0.88958,0.531328,0.580275,0.112957,0.40785,0.143173,0.999405,0.518405,0.636975,0.429372,0.620072,0.392993,0.960193,0.537901,0.739878,0.0182391,0.746245,0.222858,0.903935,0.662581,0.428435,0.405613,0.681949,0.174747,0.359111,0.607728,0.77172,0.651686,0.174314,0.380056,0.896952,0.237669,0.493723,0.448229,0.392989,0.814333,0.672539,0.547939,0.238808,0.705138,0.26645,0.195111,0.2538,0.74581,0.344724,0.238822,0.853368,0.740813,0.360044,0.719037,0.64885,0.924698,0.476173,0.473512,0.422004,0.149534,0.0696901,0.113562,0.803159,0.154615,0.0823682,0.261155,0.69638,0.68828,0.472818,0.533997,0.457003,0.672153,0.705542,0.856117,0.661747,0.129203,0.705818,0.0365964,0.618544,0.844273,0.711677,0.748913,0.459567,0.548626,0.664697,0.142092,0.539415,0.17604,0.0959381,0.682447,0.0596867,0.958476,0.41561,0.603227,0.384479,0.104561,0.440989,0.488999,0.210523,0.840737,0.982338,0.364758,0.406324,0.954253,0.901488,0.799431,0.952831,0.805433,0.74861,0.245085,0.0368559,0.135268,0.418254,0.807355,0.0945113,0.445258,0.2122,0.360142,0.22674,0.0460216,0.456144,0.748329,0.0224925,0.80016,0.126934,0.744608,0.63128,0.0258293,0.13105,0.0974537,0.960774,0.0424098,0.288363,0.489233,0.0308515,0.896665,0.00852805,0.639631,0.495257,0.726331,0.266995,0.628688,0.686558,0.876694,0.0963135,0.363002,0.396067,0.300762,0.768121,0.627096,0.786616,0.00175291,0.523229,0.751021,0.580482,0.582297,0.382497,0.273221,0.269014,0.954792,0.94236,0.249021,0.61328,0.0144676,0.304678,0.141913,0.865142,0.577374,0.673054,0.952242,0.54281,0.917271,0.929882,0.12673,0.437231,0.834187,0.0506625,0.531831,0.198011,0.166175,0.644456,0.394004,0.65021,0.405591,0.402581,0.739765,0.569688,0.0763551,0.634984,0.361865,0.251031,0.172644,0.485373,0.238523,0.0268939,0.207148,0.0267061,0.0828095,0.258472,0.360783,0.149391,0.166003,0.65009,0.939145,0.606776,0.203603,0.743608,0.552295,0.647857,0.263086,0.0422319,0.116608,0.48204,0.262775,0.338408,0.629015,0.483573,0.91782,0.729843,0.342612,0.794331,0.67533,0.341186,0.26655,0.508393,0.619599,0.845303,0.85811,0.867881,0.350825,0.698346,0.479284,0.135189,0.226952,0.430452,0.754095,0.800679,0.485,0.541356,0.644303,0.904771,0.727176,0.255002,0.984443,0.76445,0.287864,0.242074,0.329181,0.0190845,0.808282,0.903477,0.415178,0.0529234,0.353857,0.0649055,0.525324,0.909249,0.401339,0.689976,0.191819,0.897488,0.727457,0.994106,0.672554,0.601451,0.408307,0.252074,0.726568,0.396752,0.606995,0.0749311,0.664461,0.795611,0.17224,0.239981,0.298646,0.794457,0.528199,0.842237,0.444507,0.295003,0.723423,0.851349,0.171478,0.778465,0.0585421,0.0696805,0.226308,0.250427,0.322707,0.773297,0.31064,0.382707,0.343679,0.92331,0.281666,0.416541,0.418397,0.847253,0.527609,0.16948,0.360489,0.386594,0.587984,0.492861,0.315846,0.741485,0.519586,0.671114,0.52015,0.941048,0.584833,0.567681,0.688825,0.213076,0.796866,0.181917,0.732135,0.449,0.343189,0.204706,0.248186,0.167542,0.215723,0.864874,0.121543,0.747524,0.507385,0.0651467,0.745449,0.489486,0.86469,0.231416,0.404185,0.636339,0.121589,0.506695,0.0353645,0.930278,0.171428,0.841884,0.69079,0.497452,0.420639,0.57228,0.129464,0.56498,0.111112,0.441956,0.754952,0.422812,0.146002,0.270757,0.389508,0.802915,0.508881,0.54179,0.991604,0.769158,0.725878,0.0370125,0.933689,0.261129,0.618991,0.431635,0.891174,0.572422,0.722471,0.666636,0.0492377,0.690881,0.367866,0.216131,0.954556,0.680894,0.801242,0.364981,0.623554,0.718024,0.686216,0.306069,0.610865,0.156739,0.484847,0.508756,0.639529,0.260489,0.0711417,0.89461,0.537759,0.823379,0.2004,0.744342,0.831881,0.378363,0.314993,0.941182,0.8672,0.414955,0.96109,0.82275,0.216873,0.217635,0.248136,0.0759297,0.480697,0.029231,0.747966,0.738867,0.277706,0.0972502,0.128598,0.891416,0.170529,0.752295,0.287098,0.35154,0.58183,0.763814,0.312814,0.433056,0.424952,0.294548,0.170349,0.334103,0.654591,0.832578,0.292205,0.0716522,0.387349,0.708532,0.612241,0.848772,0.461999,0.0133895,0.630044,0.687378,0.117993,0.843031,0.601669,0.366441,0.243311,0.321564,0.348322,0.126408,0.704624,0.735989,0.750334,0.799905,0.394886,0.899492,0.176976,0.443884,0.144982,0.180225,0.519505,0.198652,0.583139,0.36392,0.945984,0.205172,0.818674,0.855956,0.946624,0.222666,0.15064,0.888552,0.217279,0.210391,0.74535,0.152184,0.846241,0.920616,0.666075,0.140339,0.40475,0.982001,0.937789,0.491088,0.558286,0.607214,0.414551,0.783901,0.1334,0.852917,0.655565,0.667918,0.125022,0.649381,0.0157357,0.268523,0.0229434,0.836606,0.216085,0.0951043,0.192315,0.90628,0.157094,0.649027,0.628728,0.760434,0.650589,0.110872,0.302565,0.793873,0.167154,0.211294,0.649638,0.5636,0.947731,0.986311,0.339129,0.15448,0.726708,0.748213,0.262109,0.43302,0.186228,0.865747,0.199915,0.488768,0.146784,0.264809,0.046494,0.0271919,0.360065,0.850709,0.0170616,0.245161,0.198949,0.809548,0.829496,0.870105,0.193579,0.132384,0.391797,0.0340714,0.367375,0.52881,0.311184,0.396916,0.263835,0.113855,0.668655,0.588807,0.737142,0.644935,0.472479,0.372309,0.602957,0.401699,0.240031,0.0308308,0.80539,0.496458,0.955298,0.836369,0.404222,0.67913,0.878002,0.948661,0.949052,0.661582,0.348278,0.486442,0.621299,0.266311,0.575637,0.312362,0.672981,0.757001,0.878723,0.0740163,0.545533,0.0305206,0.803398,0.252751,0.0883094,0.991551,0.83128,0.100866,0.622188,0.127532,0.874452,0.711985,0.269702,0.00340861,0.236163,0.0642122,0.44409,0.103377,0.454767,0.920928,0.189249,0.33448,0.703488,0.733894,0.418268,0.121092,0.462798,0.933943,0.489948,0.17589,0.61946,0.634081,0.0202613,0.853634,0.359597,0.845726,0.794865,0.0524935,0.155508,0.363898,0.824595,0.341317,0.23145,0.621624,0.770742,0.175761,0.484692,0.826328,0.828626,0.589674,0.393944,0.31887,0.791377,0.0337971,0.586432,0.0925408,0.502212,0.421323,0.77675,0.999625,0.783235,0.9323,0.0856035,0.96048,0.666533,0.659515,0.0848864,0.573677,0.0118198,0.119927,0.793804,0.142218,0.533655,0.131007,0.136996,0.578718,0.290801,0.859617,0.0777177,0.0362158,0.291342,0.24331,0.329215,0.238704,0.362378,0.247493,0.861412,0.45362,0.386351,0.296303,0.381398,0.768481,0.55085,0.215764,0.114216,0.340608,0.72907,0.189833,0.767429,0.0860546,0.234632,0.363878,0.0975593,0.135998,0.0552451,0.282845,0.576435,0.209907,0.291957,0.512102,0.552935,0.805499,0.22606,0.995879,0.976755,0.717679,0.817306,0.0893301,0.317425,0.0684433,0.202357,0.240857,0.292915,0.101927,0.319839,0.174664,0.637517,0.998694,0.949816,0.00800496,0.21434,0.150917,0.437196,0.421767,0.983757,0.158745,0.270326,0.441771,0.105383,0.153376,0.902149,0.68178,0.633282,0.338387,0.353497,0.826225,0.746884,0.305739,0.688235,0.901699,0.646625,0.0647836,0.284458,0.150715,0.944949,0.110279,0.810614,0.64273,0.842623,0.674446,0.00439453,0.3013,0.220179,0.222363,0.544149,0.651923,0.54479,0.329783,0.6783,0.531114,0.0181166,0.59863,0.60377,0.0222244,0.702704,0.733821,0.675069,0.26503,0.349881,0.442506,0.145425,0.780127,0.764064,0.00378299,0.660644,0.486955,0.328748,0.110917,0.68901,0.999501,0.519517,0.902548,0.718183,0.597156,0.388271,0.88225,0.535497,0.720237,0.921544,0.397945,0.0285166,0.0466998,0.664159,0.654179,0.962711,0.951225,0.518005,0.441818,0.322439,0.173305,0.502698,0.28081,0.265883,0.527346,0.425334,0.00930417,0.634379,0.128193,0.932759,0.523771,0.458868,0.328999,0.317229,0.106796,0.814896,0.866385,0.110785,0.787159,0.516906,0.548439,0.717623,0.154084,0.270711,0.325592,0.0596362,0.34553,0.781988,0.101068,0.910896,0.955345,0.92928,0.00137496,0.599637,0.536186,0.938737,0.670703,0.0728662,0.219154,0.384769,0.147656,0.215898,0.570592,0.0934118,0.514816,0.276521,0.984457,0.682863,0.248857,0.822413,0.74414,0.940751,0.441215,0.0182645,0.385087,0.515415,0.438977,0.00389856,0.937351,0.868662,0.886629,0.257544,0.751382,0.733181,0.871198,0.725886,0.372495,0.427804,0.251352,0.196049,0.0156217,0.28451,0.475138,0.611788,0.277046,0.526754,0.554931,0.936334,0.882178,0.527983,0.924853,0.862835,0.913737,0.6255,0.585084,0.534053,0.0690469,0.755564,0.034142,0.427534,0.22918,0.264953,0.889162,0.765651,0.61134,0.352242,0.214614,0.317219,0.963517,0.43691,0.0113577,0.0215157,0.572126,0.864615,0.943518,0.397143,0.187666,0.722026,0.111337,0.331339,0.567427,0.358327,0.272207,0.0856588,0.0860823,0.437599,0.59217,0.572298,0.838145,0.0456506,0.54888,0.551347,0.063522,0.64078,0.188548,0.329453,0.214217,0.445003,0.830195,0.447206,0.419064,0.279194,0.522564,0.518666,0.187125,0.0299855,0.394585,0.522163,0.58489,0.972663,0.679507,0.287387,0.296382,0.275187,0.0264055,0.701659,0.61611,0.808279,0.392883,0.75552,0.440053,0.610088,0.952284,0.65847,0.164437,0.938345,0.0542399,0.72982,0.0522349,0.658544,0.667849,0.738462,0.778109,0.425394,0.102605,0.416744,0.147986,0.86861,0.0400295,0.0587806,0.293432,0.120106,0.412677,0.5803,0.810743,0.245073,0.789758,0.55648,0.506857,0.92605,0.0330516,0.926011,0.445001,|0.0905952,0.126848,0.537276,0.25189,0.997148,0.136119,0.762026,0.668621,0.757487,0.338032,0.852426,0.995174,0.597569,0.750479,0.178031,0.571847,0.0225768,0.202534,0.937071,0.588634,0.569469,0.848604,0.237291,0.980168,0.444562,0.739624,0.555494,0.130259,0.154862,0.342649,0.579273,0.0656307,0.606211,0.483686,0.214373,0.636566,0.5911,0.500901,0.414573,0.916104,0.496061,0.103979,0.510191,0.177172,0.217452,0.424408,0.957325,0.649614,0.869357,0.0656002,0.736006,0.720847,0.753436,0.299878,0.313957,0.576561,0.300561,0.240387,0.389968,0.734607,0.416251,0.869459,0.922067,0.847903,0.684064,0.585667,0.644662,0.0115026,0.730239,0.195007,0.654562,0.530394,0.196839,0.381673,0.800051,0.661549,0.34451,0.649667,0.735186,0.866841,0.444264,0.367994,0.406052,0.379982,0.595221,0.453679,0.0670224,0.993247,0.655882,0.700397,0.0905269,0.306323,0.123561,0.346664,0.805984,0.724454,0.525887,0.455423,0.369909,0.186455,0.764582,0.215638,0.60866,0.286208,0.14631,0.823717,0.212461,0.457649,0.870356,0.23017,0.466829,0.292765,0.274737,0.253917,0.227241,0.476312,0.3716,0.11519,0.0844508,0.18117,0.119002,0.11502,0.777255,0.299191,0.297193,0.721838,0.416019,0.106947,0.250875,0.000138164,0.0853674,0.592167,0.325695,0.350063,0.876283,0.582639,0.854345,0.652771,0.86762,0.228977,0.0048244,0.59095,0.747261,0.245622,0.52353,0.600709,0.614383,0.968993,0.570566,0.287141,0.771943,0.913832,0.647554,0.788684,0.857823,0.862088,0.976786,0.822351,0.797314,0.0970165,0.0451719,0.288524,0.641886,0.641599,0.442933,0.177716,0.0780377,0.185856,0.977746,0.792528,0.310818,0.937607,0.273191,0.0625944,0.419472,0.831275,0.296232,0.448923,0.29723,0.493644,0.929888,0.442901,0.911773,0.603312,0.243146,0.975637,0.0447033,0.643904,0.990678,0.582997,0.0579349,0.26946,0.931296,0.979346,0.91328,0.57373,0.519479,0.270565,0.410411,0.63376,0.537877,0.0321229,0.158467,0.00400722,0.861048,0.758631,0.42348,0.252673,0.732687,0.938629,0.539331,0.619465,0.567948,0.191598,0.543115,0.451298,0.45919,0.315212,0.484781,0.879484,0.231922,0.904593,0.366291,0.420719,0.962355,0.548166,0.817272,0.39849,0.402656,0.765703,0.286699,0.290374,0.141782,0.282903,0.146693,0.829464,0.02894,0.207788,0.0198461,0.776612,0.225948,0.211289,0.796439,0.633752,0.215454,0.307053,0.974109,0.949687,0.690607,0.141017,0.218228,0.488686,0.778343,0.664515,0.00741738,0.0476692,0.878767,0.646133,0.497938,0.00571501,0.0822803,0.829218,0.586713,0.976876,0.5177,0.15043,0.260862,0.0565121,0.974629,0.851436,0.619601,0.208232,0.811342,0.73789,0.968825,0.480835,0.49913,0.489432,0.796787,0.786191,0.797168,0.188494,0.22518,0.861827,0.239889,0.83242,0.441225,0.294132,0.411128,0.780342,0.681892,0.907963,0.642283,0.794412,0.354465,0.671025,0.390392,0.812606,0.946105,0.169703,0.164773,0.294397,0.217727,0.51968,0.599104,0.244347,0.57016,0.835693,0.394522,0.844126,0.969502,0.146864,0.0350137,0.529236,0.310117,0.535334,0.393403,0.77155,0.99076,0.296076,0.0302415,0.926373,0.503775,0.775774,0.544883,0.264539,0.743573,0.960619,0.297963,0.400774,0.656079,0.0146405,0.00291264,0.354475,0.316533,0.647432,0.907481,0.180383,0.779712,0.504584,0.3953,0.00505435,0.771717,0.819887,0.356398,0.985263,0.0486035,0.198741,0.0998524,0.945232,0.115833,0.965815,0.101299,0.437969,0.575361,0.194397,0.343103,0.543174,0.833491,0.107297,0.274366,0.19832,0.410637,0.602807,0.398161,0.904015,0.400771,0.507462,0.372436,0.0478314,0.59681,0.75773,0.326573,0.50204,0.618476,0.606453,0.430201,0.540809,0.888653,0.20005,0.0856654,0.603779,0.604634,0.615048,0.848231,0.99199,0.188944,0.93694,0.298268,0.587932,0.0736154,0.955383,0.453345,0.891826,0.304941,0.679409,0.889216,0.70023,0.683187,0.0377435,0.81219,0.978026,0.882526,0.173527,0.0145327,0.999353,0.548676,0.640944,0.0627648,0.263506,0.188218,0.0495407,0.155026,0.372843,0.719635,0.701971,0.0103457,0.240627,0.498786,0.615408,0.910897,0.014533,0.433248,0.593409,0.870598,0.254289,0.834487,0.0171395,0.872617,0.734449,0.588811,0.69844,0.08586,0.877809,0.288437,0.512609,0.505299,0.535843,0.870094,0.396609,0.303833,0.871444,0.963308,0.479622,0.236656,0.894985,0.731093,0.24851,0.71135,0.928711,0.552472,0.480223,0.338493,0.324843,0.769383,0.30269,0.0105581,0.345324,0.843392,0.214629,0.158291,0.037389,0.83251,0.0175928,0.358155,0.459002,0.816775,0.568051,0.701334,0.495359,0.688622,0.00992787,0.174186,0.312706,0.16611,0.605745,0.0136674,0.947809,0.0115945,0.653419,0.362545,0.565503,0.230746,0.383019,0.368633,0.916956,0.551939,0.105029,0.119246,0.917014,0.500719,0.691596,0.297683,0.679394,0.886287,0.0724699,0.753293,0.658823,0.474276,0.245902,0.210469,0.326473,0.820103,0.115451,0.529354,0.29529,0.234217,0.780272,0.489384,0.726618,0.487489,0.49113,0.340572,0.948294,0.219263,0.876524,0.0572398,0.712,0.417655,0.503076,0.183002,0.77706,0.988337,0.350011,0.685415,0.430331,0.862399,0.583507,0.786331,0.759136,0.340034,0.817689,0.107188,0.207574,0.469953,0.357925,0.961235,0.26063,0.109376,0.583718,0.744174,0.901089,0.888144,0.703217,0.142369,0.663558,0.658709,0.0997841,0.142532,0.363093,0.891125,0.259934,0.882631,0.447331,0.638058,0.691895,0.461255,0.948038,0.969533,0.290605,0.5398,0.903369,0.324198,0.826943,0.61249,0.343692,0.0998354,0.156477,0.264892,0.350501,0.909904,0.479259,0.0261093,0.451863,0.692644,0.865158,0.369841,0.734446,0.503851,0.0427684,0.339453,0.444593,0.680334,0.401778,0.896438,0.772228,0.096782,0.345624,0.244767,0.811115,0.00258517,0.984374,0.0639001,0.736881,0.350714,0.772467,0.22597,0.288218,0.150312,0.859066,0.895383,0.750677,0.332281,0.627987,0.0377323,0.92741,0.451844,0.359319,0.215951,0.764261,0.132162,0.687804,0.657651,0.947617,0.434902,0.545974,0.159622,0.21137,0.23417,0.58027,0.29271,0.938539,0.377161,0.289862,0.92016,0.766726,0.886187,0.503938,0.499287,0.609472,0.454196,0.76735,0.685489,0.0440418,0.855122,0.177314,0.467025,0.544254,0.806881,0.0795847,0.638758,0.943221,0.627793,0.82563,0.834509,0.949033,0.0467761,0.238997,0.384002,0.873943,0.179622,0.678704,0.607446,0.831476,0.150941,0.524635,0.0382568,0.128186,0.0782208,0.603792,0.210957,0.811065,0.442504,0.545761,0.323369,0.456615,0.564902,0.766012,0.839802,0.206112,0.366826,0.277341,0.980419,0.223911,0.354348,0.973378,0.52891,0.383333,0.440205,0.580593,0.0262254,0.939399,0.344934,0.713233,0.731724,0.120811,0.982455,0.523781,0.677314,0.13154,0.211746,0.307409,0.376138,0.498729,0.0757149,0.707154,0.501691,0.18442,0.679996,0.70177,0.583557,0.106154,0.864546,0.452571,0.581211,0.978642,0.383862,0.528961,0.147191,0.414434,0.978058,0.934614,0.835502,0.547534,0.234856,0.821347,0.255827,0.580281,0.531326,0.897892,0.116312,0.465259,0.734087,0.885791,0.611732,0.980877,0.207992,0.150953,0.613819,0.259255,0.123737,0.615428,0.785515,0.193828,0.999215,0.134658,0.396559,0.225068,0.107309,0.895674,0.955811,0.301532,0.351632,0.612996,0.97208,0.299715,0.172155,0.356472,0.846651,0.666626,0.53922,0.0100172,0.570602,0.141977,0.93606,0.102567,0.490952,0.0928649,0.654884,0.16522,0.235763,0.857684,0.250971,0.388329,0.899222,0.591121,0.747963,0.581149,0.901024,0.624926,0.0621784,0.482314,0.266912,0.85097,0.915199,0.469513,0.802457,0.394316,0.194992,0.643666,0.873045,0.794796,0.949355,0.482663,0.732023,0.00214279,0.232327,0.284139,0.886524,0.873556,0.540645,0.301949,0.817909,0.640654,0.330709,0.443232,0.768797,0.234133,0.816384,0.118818,0.704533,0.80541,0.755207,0.0164775,0.271594,0.0442374,0.0516502,0.268412,0.730336,0.719408,0.40273,0.718745,0.843754,0.999556,0.403191,0.00544339,0.919007,0.349621,0.783175,0.520816,0.851714,0.97462,0.717471,0.564444,0.271982,0.149844,0.728513,0.169829,0.464781,0.718428,0.871746,0.87854,0.597027,0.255112,0.706353,0.627029,0.678868,0.141473,0.0203669,0.233947,0.14099,0.150151,0.897096,0.428342,0.406088,0.382351,0.346916,0.558178,0.761902,0.815904,0.385169,0.0324326,0.206485,0.68302,0.80302,0.526382,0.0190743,0.914553,0.322107,0.60804,0.198789,0.96809,0.16641,0.68022,0.361148,0.887349,0.354625,0.543407,0.0256767,0.35983,0.851394,0.434442,0.499605,0.300676,0.985214,0.0217983,0.0420784,0.747304,0.930461,0.523418,0.580346,0.612083,0.173152,0.302774,0.34161,0.157491,0.634833,0.384411,0.238844,0.931966,0.0808254,0.797052,0.720304,0.539387,0.534078,0.600823,0.38536,0.994819,0.0399573,0.897736,0.872973,0.824831,0.0934013,0.510586,0.052261,0.888408,0.782593,0.892943,0.641534,0.660618,0.0501051,0.131017,0.9928,0.933952,0.746406,0.415569,0.492403,0.779333,0.839822,0.0485889,0.633175,0.557125,0.911756,0.544601,0.0520231,0.589068,0.379498,0.329129,0.876189,0.0412009,0.271528,0.326924,0.860683,0.310067,0.398014,0.743416,0.497244,0.0825912,0.87226,0.0619574,0.558169,0.259206,0.431016,0.094834,0.561646,0.296971,0.505857,0.907658,0.454818,0.436286,0.135251,0.728296,0.152512,0.613011,0.656937,0.467001,0.386884,0.713205,0.995903,0.61255,0.50791,0.62517,0.497391,0.915189,0.838801,0.411057,0.503748,0.330762,0.930951,0.320757,0.990323,0.479804,0.547655,0.582901,0.710047,0.573204,0.0549746,0.960701,0.457832,0.177016,0.71127,0.385794,0.0512323,0.379351,0.522519,0.0620139,0.715129,0.061265,0.926273,0.510821,0.407266,0.908529,0.116781,0.41429,0.259841,0.0886743,0.920807,0.971732,0.828227,0.853561,|0.461999,0.59749,0.473979,0.336086,0.795014,0.959787,0.926618,0.374053,0.181068,0.311366,0.46582,0.434891,0.050508,0.635536,0.748391,0.755713,0.076366,0.0071978,0.00865966,0.661251,0.272646,0.568431,0.672048,0.430064,0.468388,0.0609169,0.875177,0.218377,0.695231,0.297403,0.708977,0.432988,0.73194,0.949517,0.275146,0.752458,0.0651329,0.0537748,0.385526,0.150196,0.55403,0.678927,0.486198,0.52818,0.842859,0.612803,0.863365,0.925834,0.0176308,0.765825,0.97788,0.0690374,0.373771,0.601272,0.801794,0.295501,0.140622,0.102172,0.450763,0.786092,0.0390227,0.253315,0.30737,0.508045,0.781042,0.938272,0.522788,0.872662,0.581585,0.834518,0.904716,0.198441,0.0614104,0.632009,0.783075,0.465137,0.535466,0.267194,0.0331935,0.641714,0.0789282,0.795446,0.27129,0.940986,0.0981084,0.182799,0.791052,0.0234286,0.597565,0.616317,0.340608,0.0375847,0.603248,0.401579,0.429012,0.539889,0.471198,0.0624924,0.41045,0.682914,0.370302,0.264578,0.333346,0.157287,0.355005,0.254226,0.284128,0.79032,0.146751,0.383845,0.413263,0.221906,0.842813,0.0465263,0.451825,0.22073,0.34241,0.00974929,0.885464,0.769894,0.478625,0.462669,0.528156,0.832787,0.697251,0.466042,0.127984,0.420712,0.35165,0.0472136,0.304635,0.338711,0.686365,0.514555,0.926728,0.115984,0.913481,0.640908,0.239062,0.553947,0.99149,0.982062,0.957151,0.915859,0.60658,0.450323,0.551789,0.852995,0.347579,0.424721,0.882029,0.219825,0.700227,0.235808,0.793907,0.165416,0.24399,0.12411,0.563254,0.887356,0.733127,0.934486,0.974626,0.832411,0.362076,0.804818,0.197165,0.146362,0.596234,0.309667,0.409709,0.777031,0.274958,0.465652,0.882273,0.771225,0.514374,0.610362,0.845412,0.617769,0.722503,0.981402,0.722798,0.0575988,0.520854,0.313978,0.61079,0.925186,0.427435,0.468232,0.412039,0.219438,0.985918,0.820024,0.00415587,0.883615,0.597254,0.0934715,0.558583,0.524662,0.822508,0.589236,0.873316,0.466149,0.470654,0.0818241,0.723235,0.048191,0.739431,0.346262,0.172011,0.618101,0.907157,0.888385,0.640872,0.988941,0.842155,0.524456,0.21923,0.12417,0.245365,0.216435,0.193462,0.160672,0.87249,0.659583,0.793931,0.057839,0.0603486,0.491136,0.911443,0.934216,0.248768,0.962867,0.177355,0.788255,0.796112,0.34954,0.592232,0.329511,0.0988984,0.528457,0.394988,0.386773,0.149622,0.755489,0.319261,0.902195,0.256106,0.794987,0.66262,0.664954,0.00746596,0.698412,0.0727568,0.586516,0.171038,0.337237,0.109177,0.933721,0.997971,0.988996,0.614692,0.578284,0.497199,0.862861,0.351616,0.0487517,0.646495,0.511225,0.928833,0.627896,0.214836,0.547792,0.596864,0.369854,0.657312,0.350082,0.14042,0.855806,0.343837,0.280227,0.468548,0.0315939,0.852051,0.702025,0.267724,0.0455151,0.39843,0.207188,0.0717502,0.985741,0.728786,0.908859,0.392001,0.0981454,0.379261,0.933971,0.89858,0.720638,0.402627,0.950902,0.557119,0.633663,0.54218,0.837997,0.965896,0.938868,0.346274,0.947927,0.528857,0.271677,0.0484714,0.30127,0.129787,0.33667,0.510788,0.064005,0.719105,0.558677,0.5574,0.649999,0.173734,0.997969,0.266891,0.379401,0.193997,0.90994,0.511963,0.461509,0.0308884,0.0819814,0.282465,0.581705,0.208092,0.63278,0.13233,0.0304361,0.74505,0.415564,0.17056,0.182976,0.358533,0.456376,0.919654,0.983602,0.351431,0.732532,0.338578,0.193573,0.826811,0.306218,0.125662,0.602584,0.382365,0.332005,0.203259,0.843363,0.681911,0.38873,0.192107,0.562022,0.122391,0.257631,0.862433,0.160578,0.730268,0.0898422,0.522952,0.10485,0.872858,0.776655,0.400661,0.00222307,0.326894,0.764964,0.351092,0.624773,0.696923,0.505346,0.0645416,0.565454,0.820031,0.725495,0.858094,0.234943,0.882165,0.861759,0.194001,0.0134026,0.730941,0.812315,0.437059,0.0609783,0.583894,0.344397,0.0970004,0.175951,0.272916,0.00666684,0.0529505,0.493941,0.0207759,0.312256,0.232312,0.180476,0.0133752,0.522915,0.987021,0.351707,0.145237,0.767114,0.121149,0.0720277,0.565762,0.0320562,0.502091,0.696724,0.899179,0.133061,0.176524,0.324022,0.753989,0.0806111,0.961137,0.872111,0.367548,0.663216,0.334605,0.318926,0.682311,0.987083,0.449614,0.155482,0.954782,0.90336,0.84662,0.429858,0.741516,0.629585,0.260139,0.558033,0.852386,0.59706,0.813,0.386661,0.281439,0.382529,0.251318,0.643931,0.696146,0.273324,0.649072,0.948426,0.507243,0.520055,0.686342,0.874645,0.112469,0.614863,0.100413,0.657165,0.0740181,0.801255,0.20466,0.492513,0.45058,0.293634,0.48932,0.0987448,0.253816,0.646731,0.160324,0.778997,0.503998,0.761811,0.564262,0.836076,0.615774,0.735285,0.620645,0.694621,0.160337,0.295534,0.191961,0.919955,0.620552,0.0851591,0.301867,0.402259,0.631171,0.202832,0.146651,0.85994,0.316618,0.212475,0.489829,0.444842,0.172816,0.483739,0.930362,0.29963,0.42011,0.540824,0.704424,0.308861,0.899731,0.95941,0.926019,0.590338,0.549496,0.537382,0.738535,0.314016,0.54513,0.348253,0.673558,0.230398,0.59055,0.34055,0.192925,0.0564438,0.754219,0.485607,0.660062,0.0926304,0.924524,0.0297758,0.578285,0.807979,0.189383,0.804306,0.991553,0.663319,0.672892,0.327433,0.536735,0.416984,0.151517,0.455479,0.55476,0.0738799,0.506384,0.206452,0.758593,0.627582,0.433085,0.773715,0.941298,0.834818,0.225258,0.263839,0.952879,0.455873,0.159312,0.250255,0.884167,0.124868,0.00428057,0.237743,0.410581,0.0747212,0.926844,0.315464,0.372083,0.576849,0.673925,0.257211,0.413872,0.265861,0.828386,0.627663,0.149053,0.173662,0.660985,0.00808775,0.602704,0.378686,0.429084,0.711748,0.367675,0.764168,0.763629,0.330739,0.0546672,0.694918,0.143834,0.644499,0.772716,0.732408,0.351704,0.0225633,0.0301504,0.628176,0.0638756,0.869358,0.201679,0.540404,0.943915,0.377864,0.28677,0.185605,0.124352,0.351141,0.476909,0.536974,0.686467,0.39786,0.136495,0.605503,0.481233,0.448591,0.628702,0.805748,0.895394,0.621892,0.504785,0.529083,0.534378,0.688939,0.477209,0.125023,0.60259,0.547392,0.806471,0.208619,0.907632,0.544758,0.594391,0.601517,0.737382,0.887475,0.27758,0.8455,0.12895,0.94863,0.708074,0.368201,0.172246,0.410079,0.306071,0.562999,0.361806,0.00593394,0.837196,0.549339,0.686915,0.846002,0.240497,0.572024,0.770639,0.301112,0.753182,0.082609,0.106338,0.798439,0.404665,0.826417,0.00678676,0.837872,0.447131,0.961787,0.607821,0.652812,0.461885,0.0618568,0.141274,0.532202,0.623374,0.338911,0.0507349,0.180969,0.414899,0.750334,0.325667,0.121459,0.109535,0.142082,0.421349,0.00485414,0.523417,0.0974135,0.929333,0.915409,0.0206483,0.275691,0.77492,0.715096,0.86503,0.884698,0.539517,0.526622,0.564745,0.378639,0.4755,0.0900062,0.119522,0.0966927,0.0358328,0.238461,0.467367,0.99555,0.756613,0.773494,0.844531,0.436333,0.252994,0.849188,0.397126,0.859603,0.391343,0.569196,0.993749,0.713363,0.0310196,0.10794,0.175434,0.729475,0.0527129,0.0810778,0.658599,0.199352,0.0783111,0.668064,0.15324,0.443748,0.0766104,0.545752,0.232997,0.385597,0.125621,0.25434,0.459326,0.0907256,0.292276,0.630705,0.00528526,0.088357,0.403137,0.610789,0.275873,0.11912,0.302194,0.461818,0.812321,0.395183,0.553587,0.263243,0.324921,0.951831,0.814808,0.942246,0.142765,0.705853,0.191107,0.699581,0.38869,0.145957,0.440165,0.914697,0.352237,0.839172,0.330439,0.147911,0.939199,0.259385,0.808007,0.352908,0.0778283,0.755463,0.017027,0.242068,0.659067,0.166316,0.558695,0.237299,0.899577,0.0563284,0.19082,0.302506,0.981326,0.887543,0.350769,0.645521,0.343103,0.907111,0.111574,0.0381423,0.483473,0.961612,0.730037,0.343091,0.513373,0.245874,0.401177,0.287295,0.808811,0.486602,0.475458,0.828277,0.835587,0.635777,0.895441,0.673757,0.847215,0.681231,0.734588,0.312404,0.0134206,0.512911,0.152737,0.933931,0.209132,0.429883,0.367165,0.167813,0.233342,0.228758,0.11095,0.521613,0.252153,0.628168,0.249334,0.0118988,0.811936,0.161882,0.682533,0.688572,0.835915,0.829224,0.11592,0.502519,0.534436,0.783348,0.156085,0.110895,0.623503,0.262788,0.976882,0.541042,0.427819,0.732971,0.45714,0.11828,0.785381,0.233519,0.790824,0.305146,0.334047,0.456375,0.332487,0.644235,0.0130458,0.584514,0.10637,0.241935,0.591995,0.520716,0.52884,0.43864,0.00404269,0.317027,0.983326,0.113937,0.653086,0.345717,0.843241,0.306814,0.178857,0.894811,0.351464,0.696266,0.720081,0.117586,0.425848,0.767817,0.0378538,0.966694,0.121667,0.332323,0.776136,0.274953,0.604133,0.520211,0.772183,0.756039,0.123341,0.237497,0.660881,0.570229,0.766271,0.877486,0.65723,0.225178,0.591841,0.221105,0.545679,0.549167,0.517266,0.239757,0.180408,0.188656,0.963086,0.695523,0.896673,0.332426,0.983279,0.143726,0.211977,0.0351133,0.0216596,0.977476,0.380744,0.0966773,0.661677,0.979728,0.288312,0.644292,0.833237,0.463771,0.56759,0.0821157,0.420292,0.103232,0.885623,0.185999,0.0196179,0.337274,0.995407,0.902468,0.362977,0.308947,0.905526,0.0937052,0.621464,0.0260616,0.580297,0.881139,0.599425,0.556498,0.110322,0.736661,0.132438,0.910973,0.717935,0.326719,0.222846,0.362519,0.621753,0.413323,0.0455339,0.692252,0.32468,0.923001,0.320184,0.277409,0.6129,0.132927,0.570218,0.937871,0.349509,0.159074,0.820193,0.164288,0.927065,0.326038,0.822577,0.14447,0.0154306,0.273133,0.150546,0.93436,0.573357,0.207898,0.392817,0.592832,0.570546,0.351873,0.864629,0.232483,0.909016,0.325367,0.271038,0.965249,0.0954694,0.768607,0.733796,0.164836,0.375059,0.0827843,0.651473,0.218814,0.0554355,0.169303,0.997364,0.454845,0.692693,0.0676134,0.578772,0.630724,|0.164507,0.249544,0.354931,0.502394,0.43467,0.200549,0.435981,0.503071,0.120928,0.951284,0.310904,0.535369,0.586608,0.496493,0.639359,0.863506,0.47859,0.138097,0.440929,0.563949,0.627065,0.0605586,0.756303,0.98377,0.875109,0.291655,0.415787,0.339348,0.0896869,0.926032,0.810238,0.889033,0.270886,0.33419,0.111942,0.63746,0.52385,0.511805,0.822085,0.0126128,0.410999,0.0617936,0.651929,0.799881,0.320166,0.100699,0.165223,0.441164,0.622983,0.74907,0.488003,0.116952,0.214869,0.889835,0.386142,0.729063,0.675806,0.512073,0.195194,0.80009,0.65058,0.626544,0.181197,0.706698,0.701076,0.913486,0.692384,0.264387,0.0495191,0.0120203,0.322702,0.362557,0.791383,0.636532,0.399389,0.956251,0.0398274,0.14696,0.727945,0.597665,0.894627,0.123152,0.17687,0.6977,0.678836,0.791068,0.695653,0.554162,0.212506,0.494206,0.499665,0.932064,0.308416,0.379433,0.811007,0.367321,0.568647,0.976203,0.935539,0.0233861,0.111379,0.799307,0.620188,0.0946352,0.0090304,0.0652753,0.931794,0.346317,0.952627,0.0796967,0.923041,0.408791,0.632919,0.630167,0.29963,0.804981,0.358163,0.226247,0.983388,0.680415,0.362924,0.209521,0.676202,0.287485,0.565798,0.895363,0.19117,0.43786,0.56943,0.608917,0.258793,0.46767,0.765404,0.705783,0.846025,0.468566,0.544699,0.0222119,0.898249,0.159005,0.926759,0.574506,0.572771,0.152511,0.293342,0.719738,0.912369,0.431368,0.778608,0.956887,0.208455,0.835433,0.428563,0.791079,0.646161,0.190179,0.68934,0.0469093,0.77929,0.49046,0.569442,0.41809,0.0356614,0.0479991,0.808458,0.229596,0.002729,0.586194,0.328901,0.0598333,0.420511,0.187869,0.693485,0.861936,0.729576,0.812334,0.807054,0.421712,0.232531,0.313617,0.35587,0.850463,0.45663,0.780515,0.948392,0.696705,0.522241,0.102652,0.779437,0.465103,0.572984,0.944429,0.738959,0.94923,0.501134,0.340198,0.368307,0.196626,0.0434608,0.241704,0.72156,0.811113,0.0791773,0.48043,0.470541,0.0907979,0.243871,0.427954,0.755965,0.431227,0.5581,0.558282,0.028733,0.614253,0.415154,0.643856,0.619393,0.476469,0.975742,0.539798,0.90739,0.901701,0.918191,0.823371,0.289855,0.197573,0.141275,0.760285,0.116425,0.649015,0.124527,0.54181,0.91017,0.348746,0.339121,0.525402,0.335964,0.581751,0.622405,0.440675,0.532324,0.0609164,0.989278,0.881037,0.203176,0.378867,0.251718,0.567744,0.849534,0.730893,0.862195,0.931269,0.12941,0.440644,0.756088,0.0806155,0.476849,0.535899,0.408552,0.362834,0.492912,0.643444,0.6625,0.487049,0.0522998,0.412147,0.605991,0.182965,0.630653,0.228069,0.930357,0.296838,0.388144,0.540064,0.745259,0.197883,0.834909,0.778041,0.908042,0.280477,0.814326,0.508789,0.84826,0.754003,0.0439583,0.909858,0.191813,0.54954,0.553357,0.478709,0.559781,0.182083,0.0272003,0.899163,0.423121,0.896977,0.615643,0.809011,0.813228,0.573664,0.580106,0.11103,0.614567,0.959202,0.802345,0.255091,0.429271,0.629229,0.489863,0.375208,0.251859,0.763762,0.0885126,0.452905,0.422989,0.384729,0.137767,0.215091,0.313416,0.239967,0.00410646,0.704805,0.430215,0.339789,0.642177,0.634282,0.590329,0.882057,0.295224,0.642101,0.708556,0.854479,0.12756,0.307632,0.258347,0.181243,0.894086,0.24168,0.780236,0.38912,0.516009,0.779154,0.722448,0.258409,0.395673,0.16781,0.711148,0.728569,0.0586407,0.142458,0.682554,0.357156,0.748755,0.236144,0.305749,0.845312,0.203085,0.405632,0.30608,0.104164,0.985222,0.440417,0.695448,0.0958446,0.163652,0.727826,0.0119069,0.778227,0.695798,0.798201,0.397608,0.843259,0.519971,0.491581,0.0563866,0.71442,0.421603,0.0461243,0.0718276,0.808042,0.812185,0.739497,0.0464451,0.62247,0.513349,0.49217,0.725368,0.924295,0.815877,0.187491,0.733786,0.127796,0.531203,0.969661,0.845225,0.368498,0.364928,0.926864,0.101262,0.470714,0.933389,0.986459,0.468258,0.998412,0.475607,0.107588,0.451276,0.462187,0.0326954,0.916229,0.0762494,0.860556,0.82071,0.0183977,0.831248,0.255813,0.319801,0.807268,0.288908,0.405517,0.529281,0.468865,0.415827,0.0719823,0.655946,0.282245,0.780102,0.99628,0.905782,0.548085,0.774614,0.909151,0.873945,0.903285,0.844913,0.161823,0.43589,0.434479,0.571325,0.900111,0.964009,0.464492,0.32321,0.367085,0.487322,0.241105,0.941101,0.852406,0.139711,0.0976233,0.563616,0.472394,0.441974,0.613355,0.138766,0.81688,0.0730489,0.160137,0.581304,0.283865,0.456164,0.612606,0.867847,0.209998,0.989463,0.14245,0.483415,0.300175,0.722204,0.373444,0.836949,0.469326,0.0402602,0.0934358,0.168873,0.173954,0.9414,0.859999,0.0129597,0.976759,0.16571,0.108433,0.50446,0.632674,0.606175,0.0977707,0.758911,0.306034,0.107943,0.198654,0.313481,0.362766,0.0866277,0.928716,0.986745,0.914514,0.571855,0.584104,0.158293,0.575935,0.822004,0.786572,0.00367171,0.994734,0.718371,0.339694,0.816333,0.422221,0.377728,0.829338,0.872152,0.746721,0.218144,0.569019,0.382984,0.188836,0.845109,0.145615,0.969802,0.825608,0.858186,0.238057,0.137322,0.567794,0.447888,0.244371,0.813751,0.852066,0.443487,0.596554,0.662408,0.301269,0.319495,0.497958,0.427439,0.238307,0.470741,0.748677,0.424259,0.741669,0.628935,0.727398,0.0855002,0.962231,0.5337,0.726592,0.19403,0.60347,0.0362585,0.70825,0.74903,0.55978,0.869321,0.0865272,0.620016,0.444595,0.0891697,0.684692,0.354142,0.272868,0.530564,0.761055,0.81659,0.490648,0.262556,0.625926,0.632823,0.415252,0.769464,0.78061,0.960452,0.169183,0.0590689,0.23317,0.942092,0.0242456,0.97236,0.47454,0.763712,0.695214,0.861499,0.219274,0.777819,0.123285,0.495313,0.346135,0.481237,0.0902508,0.527816,0.235335,0.655375,0.776151,0.123985,0.545045,0.204837,0.986949,0.986085,0.570916,0.813114,0.251172,0.588984,0.563613,0.062104,0.8273,0.337789,0.311219,0.513515,0.0119979,0.982164,0.607504,0.47523,0.438506,0.0488386,0.211909,0.76272,0.00281096,0.492269,0.204955,0.503912,0.436888,0.746015,0.892999,0.335542,0.272852,0.622764,0.946722,0.878211,0.663781,0.768025,0.362947,0.167495,0.546522,0.431599,0.840012,0.520521,0.553286,0.538746,0.613293,0.920984,0.668017,0.483802,0.840544,0.708898,0.961502,0.252717,0.487059,0.178112,0.417141,0.945761,0.0643705,0.373222,0.443482,0.383416,0.558098,0.724185,0.99154,0.839866,0.948303,0.00385725,0.612354,0.154859,0.658812,0.350199,0.637228,0.781759,0.405593,0.867182,0.834015,0.877949,0.516147,0.968508,0.262765,0.123481,0.579847,0.266316,0.6171,0.982341,0.190292,0.502389,0.172978,0.641671,0.741917,0.250224,0.717183,0.13507,0.794765,0.338005,0.0663891,0.0118573,0.968277,0.208552,0.852196,0.673634,0.60263,0.0113603,0.812667,0.0852205,0.560981,0.119065,0.366453,0.507028,0.531249,0.432634,0.490825,0.331761,0.501109,0.543942,0.79343,0.323681,0.698662,0.736059,0.127732,0.558167,0.909376,0.397212,0.610556,0.52242,0.429235,0.82826,0.531175,0.713681,0.824996,0.559037,0.8683,0.689849,0.592215,0.277481,0.610222,0.992711,0.289261,0.571047,0.854324,0.848824,0.769694,0.129427,0.992742,0.733674,0.0719905,0.125088,0.881442,0.0329944,0.961746,0.328966,0.76582,0.177539,0.977237,0.909021,0.817236,0.995441,0.0851438,0.823281,0.370778,0.156666,0.441276,0.0445433,0.654383,0.664904,0.132093,0.051405,0.540881,0.854106,0.858072,0.28974,0.216403,0.554614,0.921271,0.770691,0.659924,0.613296,0.988805,0.556112,0.928936,0.829413,0.908872,0.977862,0.448061,0.290303,0.810594,0.696867,0.432863,0.867027,0.639084,0.0363065,0.389443,0.441009,0.270971,0.439794,0.361465,0.599139,0.461808,0.0928367,0.488503,0.00219041,0.760529,0.194594,0.641526,0.686537,0.46774,0.0463096,0.793668,0.484425,0.416536,0.431346,0.0340726,0.325381,0.251164,0.165504,0.833022,0.171477,0.693691,0.87175,0.754111,0.0584068,0.39393,0.363909,0.919756,0.875495,0.435789,0.63281,0.744043,0.305794,0.515907,0.935617,0.954758,0.0764405,0.335041,0.210047,0.876925,0.395833,0.356232,0.239517,0.536241,0.97845,0.126292,0.679737,0.0562582,0.760539,0.463584,0.234946,0.0557459,0.786618,0.876896,0.388152,0.0221395,0.0708761,0.178092,0.0813097,0.315842,0.789781,0.188981,0.936803,0.363149,0.929229,0.891034,0.497563,0.870607,0.848675,0.474591,0.0407547,0.825859,0.268424,0.157363,0.798476,0.95792,0.163202,0.063551,0.120177,0.141242,0.799197,0.323881,0.686394,0.54403,0.089821,0.694553,0.301833,0.717469,0.56661,0.67225,0.785597,0.350284,0.526523,0.251585,0.0871142,0.548205,0.205019,0.0489575,0.195704,0.148474,0.520143,0.178483,0.462596,0.535664,0.579799,0.189076,0.105815,0.601327,0.527456,0.80029,0.186394,0.828218,0.853693,0.148754,0.188685,0.583991,0.306464,0.0541341,0.397013,0.322216,0.346875,0.663177,0.623556,0.529722,0.496581,0.22999,0.354477,0.606721,0.0920509,0.486651,0.0692873,0.932576,0.230074,0.441275,0.698405,0.873589,0.779002,0.83026,0.0608076,0.0902714,0.426154,0.419281,0.532947,0.354315,0.379816,0.380505,0.538487,0.395445,0.562119,0.246555,0.582974,0.858218,0.248223,0.487306,0.0336327,0.947083,0.61453,0.339931,0.489745,0.69745,0.064913,0.549966,0.303799,0.00422257,0.378823,0.455319,0.0247633,0.968745,0.396869,0.405752,0.879819,0.681595,0.523849,0.6285,0.0895112,0.230574,0.209281,0.973076,0.155164,0.757114,0.312228,0.315421,0.846398,0.800628,0.431414,0.540767,0.344976,0.0455395,0.228858,0.996664,0.796217,0.71107,0.380897,0.429664,0.889483,0.618018,0.209892,0.78345,0.634947,0.542818,0.477867,0.961958,0.959479,0.1537,0.945076,0.896551,0.23288,0.860406,0.823758,0.396008,0.645141,0.278237,|0.396044,0.622773,0.948364,0.0619402,0.0256642,0.887221,0.3377,0.0814576,0.210901,0.847696,0.185527,0.305361,0.361716,0.967071,0.95422,0.285978,0.724681,0.0510136,0.963542,0.292372,0.898435,0.190987,0.336007,0.0954311,0.351889,0.629707,0.843667,0.667282,0.309847,0.680758,0.789443,0.806155,0.495032,0.695929,0.0428963,0.937314,0.0292538,0.513261,0.00493878,0.0669747,0.321672,0.221589,0.831964,0.391123,0.646754,0.102454,0.36262,0.779765,0.522052,0.784506,0.0247168,0.329865,0.0796127,0.03316,0.725678,0.586416,0.251918,0.747353,0.933123,0.533111,0.405971,0.661975,0.126642,0.71087,0.839856,0.317028,0.808644,0.763237,0.469269,0.605337,0.0821017,0.867455,0.641091,0.696929,0.913007,0.627549,0.645363,0.370296,0.202531,0.556542,0.567361,0.519414,0.532817,0.874117,0.022624,0.23687,0.326107,0.912272,0.102619,0.0781434,0.552386,0.0971604,0.978862,0.244278,0.988736,0.264871,0.407254,0.853826,0.2627,0.997118,0.289253,0.314422,0.0635906,0.819347,0.356415,0.403954,0.441923,0.599665,0.507172,0.469504,0.255559,0.385529,0.442742,0.904298,0.296663,0.251306,0.324877,0.931512,0.548375,0.355863,0.710854,0.940245,0.617582,0.671972,0.907694,0.889653,0.0342477,0.209332,0.996643,0.46354,0.918239,0.292777,0.935157,0.0589846,0.934542,0.785408,0.931903,0.667399,0.281029,0.573402,0.557981,0.1439,0.0450614,0.286763,0.00758767,0.786593,0.516431,0.533006,0.273422,0.411552,0.441201,0.19769,0.451711,0.886815,0.347555,0.521828,0.48125,0.606547,0.0125341,0.225561,0.449771,0.689678,0.459395,0.0244836,0.589781,0.0128613,0.376719,0.108839,0.919062,0.464247,0.927758,0.925005,0.109844,0.99437,0.935107,0.730691,0.208914,0.519935,0.914936,0.561327,0.748827,0.567949,0.166237,0.252681,0.930738,0.904394,0.859396,0.419518,0.0227907,0.688588,0.000814795,0.912045,0.185535,0.45271,0.668292,0.244791,0.95656,0.86712,0.173275,0.0344732,0.953357,0.0925236,0.803672,0.0281953,0.648606,0.560455,0.44853,0.267018,0.875199,0.623156,0.808153,0.690901,0.953361,0.855697,0.183283,0.63897,0.433899,0.692325,0.269198,0.640282,0.853248,0.489389,0.493727,0.777442,0.364323,0.669167,0.597467,0.792324,0.953878,0.837049,0.100756,0.794314,0.671351,0.100499,0.864179,0.695994,0.718601,0.134815,0.81665,0.900845,0.981958,0.957978,0.819533,0.475747,0.722254,0.674061,0.948791,0.125069,0.779934,0.0802563,0.786023,0.55949,0.00643581,0.390884,0.620122,0.475956,0.0112333,0.547432,0.747926,0.950175,0.968728,0.619526,0.120985,0.148815,0.661434,0.403328,0.0516984,0.767508,0.448644,0.168097,0.0177867,0.927972,0.980116,0.543755,0.781421,0.717426,0.588424,0.159911,0.804908,0.0336761,0.616022,0.871028,0.855305,0.112504,0.20815,0.844819,0.134169,0.0815462,0.697702,0.986639,0.0425988,0.698543,0.119176,0.429792,0.0436777,0.810235,0.542335,0.264423,0.498963,0.525644,0.788357,0.343732,0.507594,0.851052,0.164861,0.125835,0.678432,0.15101,0.55432,0.138313,0.267602,0.77428,0.601887,0.121792,0.757122,0.370878,0.581852,0.680565,0.0832966,0.691019,0.586314,0.0263715,0.568549,0.16296,0.886242,0.134739,0.974937,0.479907,0.555591,0.891379,0.430762,0.484998,0.0262788,0.176926,0.60319,0.203924,0.463837,0.337561,0.232114,0.741565,0.36506,0.405528,0.0248254,0.809945,0.251267,0.816001,0.912251,0.752373,0.879478,0.0741119,0.102967,0.854872,0.455505,0.993016,0.134027,0.321087,0.376201,0.46702,0.586959,0.0114834,0.155852,0.842492,0.425726,0.695961,0.463772,0.762783,0.230973,0.867315,0.0452569,0.31537,0.743176,0.158477,0.791243,0.2728,0.25491,0.725089,0.347619,0.0717188,0.790162,0.68322,0.0656934,0.572864,0.727215,0.262436,0.10955,0.340514,0.741855,0.79951,0.0140393,0.353969,0.294706,0.596961,0.302821,0.141428,0.981072,0.848495,0.653056,0.816291,0.124468,0.141932,0.0469617,0.650153,0.82384,0.652797,0.366365,0.336182,0.516874,0.702297,0.419476,0.517327,0.438225,0.933384,0.192503,0.418243,0.373755,0.607281,0.493156,0.647723,0.600188,0.756782,0.780083,0.658622,0.551588,0.448974,0.94048,0.713576,0.867816,0.640351,0.722323,0.168928,0.420363,0.143161,0.738775,0.968959,0.756199,0.234517,0.574802,0.959665,0.488744,0.824633,0.734325,0.222944,0.946034,0.914713,0.944787,0.280869,0.0632794,0.592721,0.448201,0.285864,0.439106,0.794983,0.84918,0.517291,0.0126722,0.237166,0.502176,0.21338,0.599733,0.476673,0.143287,0.815634,0.650973,0.135599,0.0387076,0.372881,0.512398,0.351506,0.0356083,0.184976,0.306988,0.79083,0.817796,0.254605,0.244038,0.351495,0.610251,0.879575,0.391537,0.111621,0.0354734,0.157281,0.0712457,0.430963,0.143511,0.403382,0.457853,0.449265,0.485145,0.538042,0.323035,0.028975,0.912553,0.204203,0.238191,0.924319,0.757936,0.947084,0.164379,0.775434,0.715222,0.903589,0.569315,0.527995,0.0076282,0.256909,0.847561,0.249013,0.666277,0.263635,0.725621,0.499005,0.927751,0.584829,0.65199,0.176333,0.522208,0.0639481,0.462586,0.678827,0.95774,0.811269,0.268095,0.147564,0.568199,0.726019,0.231558,0.934099,0.757515,0.130322,0.991994,0.320305,0.187533,0.940513,0.514355,0.447836,0.819142,0.0548625,0.809755,0.328922,0.00768113,0.12341,0.375991,0.960629,0.760581,0.668266,0.153359,0.374007,0.682786,0.964506,0.266676,0.663335,0.247193,0.912075,0.918253,0.910514,0.855872,0.875685,0.291322,0.320577,0.774877,0.537967,0.91036,0.220685,0.0443518,0.663429,0.0644234,0.91984,0.773347,0.0201156,0.915986,0.0103007,0.984929,0.00835419,0.360451,0.329421,0.774736,0.519636,0.581165,0.319254,0.121118,0.852077,0.690443,0.445103,0.0623035,0.00690889,0.975108,0.475641,0.898367,0.193854,0.154616,0.4407,0.839662,0.533961,0.159007,0.27012,0.818833,0.87257,0.897525,0.83325,0.256175,0.631059,0.803119,0.510402,0.748752,0.986014,0.530257,0.798729,0.576652,0.603474,0.424313,0.96821,0.656305,0.526685,0.237268,0.0171294,0.878709,0.747433,0.142492,0.595602,0.521579,0.470565,0.140975,0.0175923,0.650767,0.165184,0.438592,0.27543,0.579457,0.314163,0.089902,0.0681671,0.464416,0.327947,0.796516,0.771732,0.35529,0.86059,0.768784,0.424056,0.0224783,0.587307,0.940066,0.0394852,0.0897893,0.461731,0.243232,0.389313,0.663403,0.107138,0.994413,0.600821,0.798966,0.525545,0.79326,0.0755349,0.999876,0.872937,0.15498,0.122744,0.576585,0.6306,0.785764,0.276964,0.782437,0.277959,0.223559,0.0585054,0.98325,0.431565,0.530593,0.822311,0.409699,0.900434,0.960443,0.554414,0.00155538,0.207895,0.887373,0.876846,0.00768119,0.152974,0.869419,0.909896,0.230977,0.447609,0.163705,0.210517,0.309229,0.249428,0.952222,0.841421,0.468907,0.561367,0.885598,0.912595,0.723956,0.584946,0.654496,0.80732,0.587307,0.188931,0.28991,0.529946,0.917156,0.085276,0.477725,0.0510923,0.20988,0.663493,0.263078,0.0658078,0.662626,0.911526,0.897629,0.334748,0.962461,0.0286662,0.934955,0.7605,0.221641,0.306942,0.450454,0.0116059,0.126505,0.377833,0.181955,0.814591,0.640869,0.0104575,0.777143,0.101323,0.115119,0.888499,0.59642,0.130878,0.194309,0.770596,0.589563,0.930602,0.772969,0.718051,0.85025,0.8144,0.873261,0.0292577,0.146734,0.307139,0.408764,0.0292985,0.881835,0.75026,0.570353,0.114199,0.368485,0.900482,0.192149,0.904169,0.0915509,0.352117,0.878251,0.928055,0.113724,0.956715,0.294444,0.866202,0.286961,0.764972,0.630383,0.0841135,0.599686,0.689739,0.275218,0.944727,0.247396,0.872954,0.32158,0.483019,0.532287,0.514822,0.644327,0.809694,0.968931,0.0803475,0.434081,0.150298,0.829055,0.820495,0.536013,0.0648409,0.415661,0.787142,0.970391,0.536296,0.263987,0.216595,0.258964,0.965396,0.501397,0.597282,0.10346,0.652476,0.754514,0.424977,0.649081,0.684483,0.0788248,0.136707,0.826073,0.145872,0.257799,0.422221,0.651089,0.552652,0.273492,0.467666,0.486205,0.973482,0.101047,0.502966,0.696206,0.55071,0.203724,0.894522,0.023205,0.514292,0.142262,0.196145,0.809293,0.0188684,0.297801,0.396723,0.262112,0.479496,0.640164,0.0674116,0.333221,0.447362,0.168909,0.205117,0.277883,0.262251,0.345715,0.507774,0.968108,0.105575,0.634015,0.178568,0.927208,0.929667,0.162513,0.374526,0.608036,0.939115,0.965422,0.0813556,0.27915,0.0143909,0.61467,0.184407,0.308888,0.854751,0.83286,0.226493,0.538018,0.303833,0.344984,0.119513,0.515796,0.285865,0.222197,0.375303,0.0454021,0.345202,0.526558,0.0641224,0.339701,0.665772,0.688286,0.228967,0.873371,0.56088,0.610097,0.529402,0.68475,0.728301,0.218495,0.250491,0.300412,0.484674,0.870097,0.463312,0.0817136,0.614255,0.0904936,0.553991,0.241935,0.532505,0.61164,0.301046,0.199894,0.766584,0.708707,0.547321,0.795261,0.212968,0.399601,0.272845,0.395793,0.30459,0.412439,0.739357,0.475491,0.0721,0.275136,0.0200262,0.671775,0.00261569,0.335348,0.569667,0.339452,0.931153,0.510651,0.219464,0.458726,0.645953,0.122355,0.551608,0.407034,0.601803,0.86364,0.133602,0.420442,0.323679,0.605435,0.893157,0.763639,0.0583534,0.47074,0.212375,0.0648112,0.78824,0.0438499,0.361282,0.763762,0.602146,0.854375,0.583263,0.39999,0.350412,0.953498,0.861333,0.622408,0.906047,0.209875,0.127867,0.929328,0.034262,0.15857,0.393415,0.301357,0.705831,0.362568,0.34656,0.0164945,0.889469,0.418992,0.555714,0.10042,0.66451,0.227519,0.627414,0.325782,0.621155,0.0515267,0.310706,0.123447,0.255113,0.838997,0.698096,0.277584,0.164045,0.726007,0.469185,0.414639,0.10797,0.862499,0.32039,0.117386,0.859083,0.620013,0.492591,0.376545,0.886758,0.13444,0.420267,0.217457,0.550369,0.0232838,0.326827,|0.901055,0.235523,0.0798208,0.919751,0.944435,0.553917,0.641547,0.0650675,0.072882,0.982794,0.408489,0.179453,0.662174,0.299101,0.796563,0.0980794,0.931516,0.977056,0.600288,0.207082,0.699192,0.762183,0.819131,0.0790955,0.192531,0.884607,0.135837,0.771058,0.76473,0.344992,0.239425,0.655121,0.692584,0.459101,0.601495,0.280053,0.169151,0.832639,0.432612,0.69073,0.181822,0.221786,0.503133,0.953889,0.589567,0.670041,0.963707,0.92657,0.336235,0.401074,0.269102,0.819189,0.131461,0.243715,0.833422,0.44155,0.786125,0.0623543,0.444298,0.926655,0.473154,0.195173,0.799558,0.396596,0.0812372,0.639224,0.519741,0.0265563,0.243075,0.997037,0.418157,0.0641093,0.185987,0.343441,0.555833,0.3367,0.856523,0.598723,0.306235,0.184119,0.407738,0.8601,0.70713,0.550117,0.0849861,0.204881,0.375165,0.0692418,0.13681,0.943897,0.295872,0.096082,0.0430074,0.908768,0.189736,0.872008,0.870474,0.763117,0.288997,0.526085,0.98505,0.938743,0.48579,0.662877,0.0826265,0.944309,0.162621,0.508695,0.350397,0.0545395,0.325652,0.266778,0.000863552,0.826971,0.2954,0.794629,0.767918,0.912651,0.497227,0.749614,0.395289,0.265361,0.900815,0.585616,0.828252,0.0441778,0.188565,0.803045,0.229107,0.847158,0.870664,0.324968,0.646642,0.771295,0.0311214,0.363273,0.426076,0.412002,0.150953,0.360841,0.811487,0.893527,0.483705,0.452243,0.953022,0.367349,0.293393,0.726831,0.0375482,0.730215,0.730298,0.251711,0.100212,0.0912077,0.840452,0.0374749,0.177489,0.423846,0.0269341,0.567342,0.375593,0.236682,0.796735,0.00845283,0.342108,0.0293236,0.594113,0.992931,0.388951,0.37528,0.712365,0.401404,0.24314,0.056456,0.423241,0.81692,0.191398,0.971856,0.189474,0.313719,0.820214,0.588214,0.00643957,0.601138,0.810567,0.344454,0.0881881,0.832088,0.627769,0.948548,0.444339,0.873499,0.394722,0.429472,0.82482,0.0274399,0.359218,0.35753,0.128806,0.939482,0.00883061,0.11515,0.599522,0.366248,0.0399999,0.563973,0.975148,0.979726,0.671452,0.531846,0.222175,0.978047,0.435392,0.864056,0.615659,0.528642,0.779571,0.0822126,0.949294,0.628988,0.00145543,0.274525,0.771279,0.13112,0.689455,0.866861,0.507469,0.978123,0.315228,0.072701,0.723739,0.539942,0.415986,0.557765,0.713565,0.897679,0.949201,0.413513,0.874989,0.996518,0.743855,0.941479,0.752056,0.656941,0.915949,0.169344,0.57919,0.346338,0.289754,0.551491,0.106428,0.679193,0.874962,0.800291,0.741525,0.265627,0.00967872,0.627825,0.90466,0.238661,0.0940741,0.702335,0.322426,0.186904,0.55964,0.0266485,0.851336,0.199883,0.57998,0.618178,0.379806,0.00102443,0.106783,0.901515,0.302731,0.295935,0.531762,0.847926,0.127241,0.221056,0.70072,0.205001,0.598472,0.628364,0.544135,0.793126,0.525754,0.541589,0.107378,0.740695,0.0820401,0.893679,0.00314206,0.379368,0.391115,0.899742,0.36992,0.190512,0.464458,0.926007,0.0597842,0.740931,0.614059,0.584384,0.372844,0.147103,0.514771,0.0403835,0.790108,0.80085,0.226712,0.290804,0.842401,0.819354,0.489137,0.36508,0.435266,0.750452,0.499822,0.797058,0.258703,0.909002,0.0529444,0.0252053,0.878234,0.137862,0.3516,0.69392,0.607287,0.844001,0.126479,0.0684836,0.458138,0.205309,0.998306,0.653346,0.342861,0.846376,0.0176564,0.261789,0.908856,0.983082,0.522374,0.0851984,0.878983,0.625043,0.0711516,0.220701,0.372238,0.685469,0.139953,0.892947,0.151257,0.613372,0.0522357,0.960715,0.493807,0.779391,0.724253,0.0106722,0.0970433,0.481153,0.0209699,0.809569,0.651684,0.235931,0.496086,0.938404,0.780772,0.734238,0.751212,0.359902,0.880791,0.369208,0.140062,0.250014,0.295404,0.979066,0.546902,0.470158,0.662704,0.0689608,0.0290859,0.226529,0.899021,0.560601,0.457415,0.109035,0.262502,0.682468,0.903591,0.434351,0.836554,0.283101,0.0919188,0.318534,0.629345,0.129033,0.401683,0.0300503,0.6367,0.633645,0.0178899,0.884983,0.848938,0.315244,0.482588,0.0616468,0.385819,0.500923,0.0739591,0.805751,0.941197,0.278175,0.617785,0.885468,0.862784,0.390441,0.267317,0.889523,0.176562,0.182852,0.0461935,0.719166,0.272175,0.782559,0.743262,0.228557,0.790469,0.256882,0.512459,0.178665,0.0245606,0.786349,0.025359,0.279534,0.788956,0.48819,0.920057,0.0276396,0.830339,0.350306,0.36521,0.806594,0.460929,0.785188,0.409949,0.405786,0.143688,0.910706,0.967449,0.740777,0.318421,0.91563,0.200892,0.600425,0.522354,0.467575,0.877876,0.196631,0.65023,0.132867,0.629622,0.163571,0.242505,0.230385,0.571889,0.618724,0.826427,0.132372,0.736218,0.491189,0.735324,0.989686,0.792462,0.12556,0.446645,0.288422,0.0566523,0.587744,0.773206,0.0575162,0.886795,0.745279,0.00165248,0.865866,0.712887,0.606959,0.431697,0.473641,0.132042,0.482863,0.549317,0.397081,0.743882,0.280958,0.0750983,0.895009,0.607965,0.926493,0.166019,0.573073,0.923006,0.302397,0.148449,0.0682742,0.0794216,0.491537,0.910433,0.139166,0.392385,0.730072,0.956767,0.860446,0.0957676,0.482448,0.585573,0.995568,0.107772,0.118348,0.571675,0.265794,0.0933958,0.743256,0.519785,0.185412,0.953073,0.914518,0.137256,0.512678,0.348778,0.213406,0.592495,0.419744,0.252245,0.532903,0.971683,0.311965,0.517379,0.858693,0.407243,0.0357106,0.1653,0.605316,0.695794,0.690941,0.420416,0.37349,0.645586,0.641388,0.403348,0.616091,0.206915,0.0844415,0.509552,0.323841,0.704949,0.534459,0.108556,0.0654796,0.605272,0.51493,0.432805,0.81632,0.0990905,0.093605,0.390412,0.331879,0.104675,0.593342,0.637859,0.2666,0.828779,0.0454661,0.447896,0.363057,0.438595,0.567248,0.652965,0.737798,0.351979,0.483178,0.0556629,0.458678,0.515942,0.734872,0.672999,0.867867,0.570484,0.117374,0.345092,0.412394,0.0901352,0.0101778,0.377094,0.888677,0.296308,0.508684,0.33023,0.722765,0.244342,0.932351,0.653044,0.0168949,0.959966,0.803187,0.213299,0.693505,0.386694,0.812541,0.865261,0.752902,0.274556,0.437508,0.734916,0.343499,0.806877,0.507829,0.996606,0.916497,0.205808,0.0985205,0.356344,0.147429,0.633657,0.780612,0.763867,0.242879,0.651717,0.521754,0.680608,0.401572,0.670228,0.903793,0.237049,0.459098,0.394559,0.645719,0.648986,0.880701,0.411751,0.225772,0.553642,0.0403507,0.355542,0.0207171,0.635813,0.677521,0.101584,0.356099,0.596892,0.59314,0.554945,0.437546,0.242534,0.384269,0.0397215,0.765525,0.466345,0.558545,0.445014,0.67336,0.426556,0.786129,0.0548908,0.368336,0.453967,0.748882,0.90174,0.999391,0.736121,0.578675,0.28077,0.657305,0.450066,0.618018,0.851382,0.162138,0.799416,0.43102,0.270563,0.538834,0.608908,0.36481,0.900031,0.259593,0.886146,0.509848,0.319194,0.870591,0.0730705,0.877363,0.890166,0.905672,0.596027,0.462412,0.232816,0.387696,0.944634,0.603461,0.546716,0.55125,0.68676,0.996727,0.971765,0.563029,0.30191,0.500863,0.139317,0.0863881,0.458318,0.824401,0.159072,0.799783,0.394055,0.732676,0.665143,0.209843,0.325896,0.548962,0.199003,0.497567,0.833659,0.916039,0.352722,0.18966,0.524078,0.800314,0.085259,0.697006,0.949878,0.399383,0.12552,0.480364,0.399812,0.941047,0.915375,0.976117,0.0901267,0.334515,0.518792,0.554007,0.505532,0.286546,0.652248,0.222596,0.585393,0.310883,0.246113,0.907887,0.819025,0.366763,0.290143,0.383709,0.230731,0.596403,0.592032,0.17021,0.916662,0.643068,0.920601,0.154086,0.275838,0.0738811,0.665134,0.291965,0.467754,0.527546,0.326552,0.609062,0.378699,0.535913,0.735547,0.310106,0.313393,0.784385,0.658029,0.225602,0.85237,0.891848,0.588614,0.960269,0.682703,0.592911,0.995152,0.627576,0.509949,0.509182,0.35517,0.280496,0.507989,0.209572,0.338197,0.895939,0.85662,0.0343541,0.263626,0.935406,0.521961,0.639578,0.438385,0.129665,0.374311,0.677279,0.00838208,0.863487,0.883049,0.400934,0.39649,0.891842,0.311892,0.145737,0.88651,0.0649027,0.634278,0.5211,0.424002,0.669383,0.505584,0.0915897,0.946225,0.319415,0.148019,0.29039,0.798906,0.228072,0.0466911,0.841301,0.910674,0.0254999,0.0292926,0.422179,0.550592,0.732041,0.987683,0.468197,0.333291,0.370088,0.268531,0.445418,0.568208,0.871267,0.993189,0.228623,0.564142,0.230347,0.309948,0.832273,0.821351,0.306475,0.648112,0.361821,0.122723,0.973593,0.448941,0.535309,0.493354,0.647338,0.0801436,0.180018,0.776535,0.973819,0.637359,0.444533,0.142328,0.89825,0.10208,0.990966,0.104803,0.538571,0.207102,0.229108,0.108419,0.00833952,0.276295,0.247125,0.993037,0.0283967,0.404057,0.23773,0.14789,0.830583,0.602669,0.37154,0.505027,0.439069,0.0178133,0.23574,0.282704,0.115536,0.316167,0.4199,0.480756,0.981955,0.521389,0.103168,0.416365,0.13446,0.653674,0.193255,0.180424,0.929851,0.257232,0.277421,0.447433,0.150306,0.968226,0.0770398,0.0812265,0.13187,0.13849,0.197069,0.160357,0.81414,0.660582,0.0597705,0.569376,0.499606,0.802619,0.969396,0.866419,0.319282,0.940814,0.217326,0.435563,0.355528,0.795155,0.442385,0.822085,0.944318,0.273886,0.237446,0.0442414,0.37007,0.961603,0.793476,0.374886,0.221935,0.526891,0.422393,0.134742,0.0223572,0.391598,0.920274,0.0481929,0.2676,0.825423,0.737253,0.900858,0.093439,0.214563,0.398787,0.957035,0.424142,0.327208,0.761414,0.900728,0.874064,0.909061,0.922016,0.0733978,0.415587,0.0706034,0.373815,0.59976,0.710839,0.285694,0.842742,0.308304,0.205193,0.46055,0.973498,0.483929,0.790958,0.860129,0.789794,0.806971,0.10525,0.735204,0.938245,0.583596,0.79288,0.147538,0.963213,0.455948,0.530552,0.216436,0.756735,0.42165,0.801727,0.877082,0.543742,0.196847,0.232961,0.441222,0.489788,0.514041,0.121166,0.557678,0.875139,|0.617411,0.634416,0.119887,0.179057,0.385038,0.444806,0.571564,0.869693,0.854353,0.822922,0.267405,0.553081,0.476955,0.262757,0.883248,0.542295,0.25311,0.448265,0.892883,0.766659,0.310998,0.401595,0.84731,0.0451078,0.92115,0.390349,0.469605,0.901404,0.429606,0.853944,0.488751,0.685144,0.16868,0.421972,0.534083,0.487519,0.0711993,0.906786,0.955812,0.843585,0.380517,0.887984,0.203186,0.703546,0.983047,0.708701,0.609366,0.606698,0.239641,0.160348,0.73595,0.292295,0.115901,0.500343,0.343419,0.712034,0.0681983,0.998779,0.105028,0.846473,0.721591,0.185763,0.908684,0.985995,0.812176,0.000359952,0.171375,0.863389,0.237862,0.184388,0.242417,0.670696,0.909828,0.800088,0.246654,0.121983,0.441464,0.2405,0.454396,0.167897,0.485324,0.537432,0.734256,0.895317,0.485157,0.719151,0.681191,0.72893,0.0978401,0.534902,0.300829,0.699986,0.65372,0.586254,0.118252,0.395224,0.383228,0.0506423,0.228938,0.656393,0.259381,0.433031,0.3655,0.198357,0.959796,0.140698,0.110024,0.0330116,0.152082,0.00539184,0.293948,0.143895,0.654853,0.675045,0.220408,0.630256,0.810346,0.501055,0.661556,0.769251,0.671066,0.036036,0.430883,0.783769,0.363589,0.211906,0.0262183,0.270429,0.921745,0.752611,0.0214499,0.639966,0.309549,0.955601,0.267291,0.76122,0.368826,0.763598,0.061258,0.949784,0.360205,0.114628,0.782671,0.208481,0.36353,0.56218,0.0459211,0.812344,0.849999,0.818427,0.610277,0.497385,0.479616,0.887558,0.613191,0.300257,0.581403,0.595361,0.873716,0.600398,0.296266,0.387818,0.062402,0.267358,0.239274,0.273184,0.498483,0.763918,0.0773392,0.734682,0.937297,0.0924984,0.326694,0.807735,0.648444,0.330143,0.578978,0.369968,0.970018,0.977682,0.535544,0.198035,0.130571,0.894723,0.591187,0.412953,0.441841,0.733282,0.568993,0.333637,0.0517722,0.0786467,0.637958,0.95652,0.268435,0.9988,0.112691,0.505979,0.118296,0.468086,0.376577,0.566028,0.241821,0.895736,0.4059,0.501833,0.454976,0.675752,0.10835,0.998948,0.89808,0.980925,0.826757,0.581556,0.572773,0.535962,0.775352,0.300226,0.0641984,0.434752,0.401691,0.569144,0.668904,0.65612,0.0354602,0.259649,0.719387,0.814175,0.747691,0.309605,0.0206821,0.521814,0.915595,0.961687,0.667471,0.190788,0.967055,0.000109673,0.231249,0.146381,0.677971,0.00553596,0.794751,0.907672,0.0971246,0.605068,0.103457,0.190686,0.25691,0.413099,0.306305,0.0276881,0.60734,0.901133,0.416887,0.625854,0.538552,0.710274,0.913046,0.254162,0.710405,0.887472,0.600075,0.798461,0.0450791,0.514075,0.50096,0.194254,0.303505,0.0677712,0.771557,0.484901,0.758331,0.908627,0.781775,0.852265,0.330185,0.452196,0.66964,0.0865666,0.26641,0.763489,0.978025,0.588069,0.947668,0.785259,0.805018,0.781591,0.480055,0.0557928,0.187973,0.252177,0.453579,0.255828,0.328684,0.72719,0.598478,0.695636,0.318754,0.39667,0.98229,0.186761,0.914197,0.133409,0.655369,0.374224,0.0904102,0.554635,0.68181,0.340702,0.556182,0.219211,0.245214,0.294738,0.864745,0.739822,0.423679,0.545331,0.275878,0.128513,0.83181,0.881346,0.344944,0.93985,0.51824,0.849445,0.549681,0.26476,0.213447,0.428453,0.103379,0.810393,0.232262,0.509426,0.367142,0.649631,0.635543,0.500376,0.769172,0.0738679,0.480225,0.215708,0.267796,0.504086,0.0382472,0.165776,0.101748,0.67165,0.34805,0.930401,0.867601,0.743377,0.732823,0.261727,0.194658,0.00874472,0.431411,0.612088,0.544849,0.400145,0.295645,0.720461,0.863964,0.381519,0.443464,0.924436,0.965859,0.726529,0.168629,0.76739,0.561158,0.400073,0.779042,0.562554,0.621587,0.188565,0.085941,0.850485,0.696635,0.618291,0.992154,0.700968,0.917728,0.532413,0.5102,0.219062,0.0421482,0.193538,0.396537,0.159936,0.364203,0.603242,0.31842,0.476509,0.535918,0.533871,0.115992,0.961257,0.465138,0.0921698,0.469575,0.612801,0.102657,0.677032,0.106892,0.158491,0.786943,0.421718,0.806544,0.073396,0.636041,0.443182,0.233304,0.541957,0.610078,0.108818,0.222265,0.778972,0.396237,0.523854,0.426849,0.918456,0.947155,0.722613,0.607255,0.703813,0.296457,0.195243,0.843262,0.476957,0.494084,0.137306,0.851882,0.720224,0.985067,0.433842,0.993181,0.338265,0.770267,0.0601158,0.181063,0.0926655,0.778034,0.641315,0.834737,0.177675,0.96114,0.805337,0.920203,0.661789,0.609724,0.354233,0.710348,0.721075,0.0914276,0.523186,0.74966,0.703396,0.704553,0.627111,0.137682,0.775499,0.65836,0.689679,0.437372,0.242793,0.975008,0.758656,0.565263,0.673316,0.0563064,0.35727,0.0818093,0.58498,0.802094,0.4365,0.572103,0.214343,0.326798,0.0997676,0.0283914,0.647895,0.500635,0.829333,0.345689,0.620293,0.511417,0.259737,0.239685,0.521401,0.442281,0.461734,0.999925,0.94585,0.0781627,0.953219,0.00598633,0.801428,0.0783522,0.266984,0.164876,0.949556,0.947922,0.432075,0.777793,0.625021,0.329781,0.750511,0.837013,0.924283,0.530706,0.58869,0.836172,0.282859,0.166058,0.255743,0.12009,0.284408,0.712556,0.976354,0.252524,0.568292,0.122513,0.315495,0.627635,0.0624437,0.194342,0.457684,0.918079,0.804419,0.72717,0.545201,0.307306,0.95706,0.157,0.423826,0.418595,0.84314,0.915907,0.456814,0.985037,0.0784595,0.796942,0.866017,0.147964,0.56141,0.791699,0.473502,0.0474229,0.597224,0.558774,0.133756,0.593152,0.644216,0.0298709,0.678589,0.741911,0.69411,0.595241,0.542743,0.21967,0.682643,0.0207039,0.829454,0.838188,0.402352,0.686387,0.661008,0.497428,0.863569,0.949779,0.876346,0.839591,0.67835,0.0445983,0.860375,0.756221,0.400712,0.786184,0.968883,0.352055,0.542035,0.220071,0.811377,0.452126,0.321596,0.65448,0.411384,0.0291021,0.470945,0.801494,0.215805,0.629109,0.986039,0.735692,0.81967,0.655955,0.6645,0.928371,0.535567,0.548529,0.903787,0.197341,0.00437617,0.764008,0.873826,0.132505,0.223896,0.36355,0.545729,0.0398534,0.870557,0.836997,0.910105,0.131376,0.575447,0.968784,0.316042,0.766291,0.639856,0.581872,0.402181,0.195955,0.192037,0.0665275,0.455823,0.859462,0.0615224,0.262666,0.204676,0.817383,0.05906,0.91794,0.392165,0.0520761,0.547239,0.250265,0.524434,0.0858016,0.422289,0.309176,0.445295,0.665586,0.439443,0.78455,0.217023,0.729556,0.235763,0.57193,0.837516,0.848121,0.816859,0.139111,0.402183,0.167487,0.943308,0.051875,0.157442,0.835693,0.324661,0.062577,0.741438,0.866615,0.402045,0.967537,0.195626,0.338576,0.264038,0.193002,0.150788,0.48103,0.690069,0.978816,0.992672,0.882276,0.972306,0.912954,0.645954,0.343576,0.685474,0.0141088,0.0977275,0.257715,0.0988102,0.779778,0.748095,0.82135,0.701615,0.919892,0.362139,0.668621,0.875085,0.0951212,0.898085,0.32505,0.0887295,0.734373,0.779854,0.530848,0.0252276,0.650472,0.519367,0.4107,0.728923,0.35824,0.696146,0.430915,0.361066,0.403428,0.907263,0.667451,0.705878,0.392406,0.340799,0.969388,0.43153,0.585583,0.105748,0.42298,0.273936,0.589526,0.512935,0.68792,0.349014,0.936299,0.444049,0.465765,0.421578,0.985271,0.493124,0.464328,0.278154,0.794871,0.692672,0.285375,0.0871407,0.272293,0.755016,0.881378,0.742806,0.561773,0.97392,0.312626,0.315188,0.25047,0.705522,0.737889,0.902924,0.864669,0.211504,0.0708285,0.661503,0.274987,0.172836,0.497457,0.609371,0.388451,0.359756,0.810903,0.860145,0.106545,0.68725,0.0990584,0.243911,0.715745,0.383681,0.62617,0.542817,0.0694394,0.51216,0.864801,0.50742,0.846414,0.907377,0.145068,0.890738,0.240131,0.156065,0.0708701,0.227971,0.865726,0.257419,0.676304,0.202375,0.469902,0.114336,0.786854,0.395001,0.995648,0.79167,0.93208,0.917923,0.4092,0.0239857,0.766211,0.297733,0.846978,0.143821,0.162919,0.548923,0.0275514,0.931165,0.0819586,0.576236,0.143722,0.389432,0.127615,0.923139,0.447855,0.0105051,0.0542951,0.506747,0.844247,0.867496,0.505494,0.155243,0.350607,0.383182,0.151506,0.484944,0.248317,0.589194,0.936729,0.056107,0.753738,0.607457,0.0690407,0.122264,0.394797,0.0174915,0.687484,0.935276,0.0364147,0.457207,0.12022,0.00298971,0.266131,0.15329,0.256957,0.23766,0.85624,0.909482,0.186564,0.00369275,0.375899,0.193824,0.0306644,0.58941,0.362828,0.26618,0.759611,0.857388,0.753945,0.260244,0.367317,0.691018,0.691231,0.898309,0.933085,0.661256,0.376445,0.502696,0.858076,0.0191542,0.373924,0.590436,0.438503,0.435963,0.701959,0.702178,0.160198,0.0479874,0.118039,0.132788,0.673607,0.425371,0.154194,0.497859,0.562247,0.907353,0.862692,0.559531,0.917674,0.992967,0.835712,0.432636,0.686971,0.257027,0.816684,0.850048,0.26468,0.921233,0.416699,0.503393,0.622979,0.631049,0.756972,0.718727,0.515081,0.416228,0.2384,0.415937,0.822209,0.72536,0.166383,0.462534,0.642031,0.427653,0.315552,0.649252,0.35665,0.917466,0.308003,0.724276,0.0022471,0.627531,0.752347,0.0167624,0.250998,0.144405,0.739242,0.886683,0.846434,0.28168,0.181681,0.571352,0.252381,0.892311,0.214719,0.166423,0.393992,0.888753,0.239659,0.759596,0.755124,0.890859,0.990751,0.310183,0.18227,0.400555,0.0144757,0.352855,0.426993,0.742031,0.605728,0.112024,0.547406,0.106095,0.271423,0.570307,0.906073,0.018884,0.945818,0.395414,0.972586,0.569314,0.150058,0.844436,0.432596,0.459198,0.307348,0.778278,0.775021,0.514257,0.57237,0.363501,0.359523,0.533166,0.926419,0.0125393,0.557181,0.243585,0.793348,0.0060001,0.0438142,0.779421,0.50253,0.859641,0.727088,0.607181,0.815922,0.813473,0.818741,0.209448,0.0882328,0.590784,0.193461,0.339941,0.744764,0.97769,0.788956,0.91474,0.772951,0.854856,0.700973,0.988823,0.98794,0.125973,0.379338,0.404506,|0.393052,0.175857,0.486678,0.654103,0.845434,0.25502,0.0194508,0.368019,0.337207,0.632106,0.0998948,0.925812,0.662136,0.0895543,0.825335,0.103132,0.852207,0.679177,0.298182,0.413796,0.0284819,0.193683,0.745103,0.286805,0.884067,0.0510033,0.904288,0.776148,0.494017,0.287446,0.184217,0.295664,0.541454,0.61878,0.563083,0.314076,0.474234,0.494821,0.418601,0.478338,0.376606,0.449361,0.941418,0.529484,0.930537,0.525168,0.102455,0.824771,0.190024,0.129355,0.380664,0.132075,0.393353,0.450146,0.651842,0.726,0.0187896,0.0291528,0.379815,0.220845,0.360502,0.978338,0.958134,0.952079,0.95956,0.458774,0.421442,0.698221,0.63228,0.338982,0.570687,0.66796,0.0187978,0.363601,0.302067,0.482955,0.209126,0.520347,0.55109,0.463184,0.154048,0.252701,0.948543,0.00871813,0.353808,0.840084,0.103913,0.122669,0.210003,0.21458,0.300252,0.854531,0.478744,0.91353,0.0519493,0.789338,0.111262,0.341469,0.470413,0.108862,0.236527,0.830533,0.57246,0.733207,0.728295,0.239917,0.43852,0.332477,0.546873,0.982943,0.796532,0.423068,0.447376,0.121463,0.849973,0.163052,0.375459,0.761921,0.345157,0.313258,0.0390173,0.216992,0.784627,0.822639,0.588926,0.458591,0.0272968,0.7413,0.0898938,0.833578,0.426005,0.114754,0.635189,0.51044,0.525862,0.635118,0.214094,0.572635,0.654513,0.854523,0.958675,0.886906,0.307996,0.532231,0.867508,0.508271,0.71633,0.978475,0.431144,0.891945,0.507221,0.0344707,0.595906,0.5862,0.949565,0.794855,0.0838373,0.563164,0.205837,0.910402,0.0047009,0.335683,0.107326,0.973584,0.996596,0.0177025,0.00177103,0.665613,0.66294,0.51235,0.0125515,0.0137467,0.579454,0.782739,0.913963,0.279242,0.664853,0.541504,0.994725,0.939994,0.632184,0.692632,0.0403786,0.679909,0.600397,0.433354,0.397169,0.264918,0.100487,0.594641,0.607014,0.895843,0.249707,0.960246,0.574452,0.997243,0.238758,0.418421,0.122751,0.650031,0.443008,0.0210324,0.165537,0.341278,0.129819,0.649789,0.0387086,0.0030098,0.483114,0.368636,0.900891,0.66732,0.863857,0.230205,0.850105,0.694579,0.362163,0.51985,0.356439,0.458351,0.634838,0.98914,0.58433,0.341164,0.667461,0.802511,0.387986,0.760275,0.74059,0.692174,0.0194473,0.733306,0.572478,0.603409,0.648727,0.246242,0.715243,0.32914,0.213726,0.804789,0.320177,0.585026,0.885537,0.299278,0.309473,0.3283,0.8412,0.0999059,0.988346,0.818601,0.386679,0.905144,0.185024,0.997598,0.385179,0.0242715,0.56286,0.225529,0.0114805,0.965448,0.619572,0.515062,0.982878,0.792313,0.253157,0.873301,0.594584,0.307166,0.667482,0.0271645,0.421826,0.280235,0.886563,0.420197,0.450933,0.819096,0.835969,0.914451,0.652103,0.872764,0.291886,0.292263,0.936535,0.742599,0.480074,0.3333,0.250313,0.369152,0.395208,0.483571,0.247298,0.65275,0.100239,0.250264,0.545049,0.0830424,0.381512,0.22466,0.199181,0.557772,0.873453,0.210675,0.644356,0.262264,0.203206,0.379484,0.0283637,0.566953,0.282715,0.98043,0.486133,0.0775964,0.857906,0.501495,0.0349591,0.520128,0.759185,0.208769,0.884322,0.981551,0.493249,0.727779,0.960984,0.403844,0.403916,0.84454,0.60755,0.929299,0.717353,0.692914,0.448202,0.412749,0.883326,0.72001,0.710078,0.892991,0.469701,0.0973539,0.995452,0.318798,0.223224,0.571401,0.818759,0.337997,0.138969,0.525991,0.460852,0.399794,0.299075,0.434699,0.36844,0.464802,0.389678,0.748552,0.76661,0.333073,0.453604,0.914631,0.169797,0.120947,0.782986,0.55338,0.935262,0.249816,0.753555,0.781567,0.298513,0.703459,0.721336,0.772553,0.189559,0.542387,0.042478,0.674051,0.0309823,0.128376,0.447898,0.490949,0.793174,0.745517,0.699075,0.651253,0.217779,0.513042,0.567758,0.332276,0.00708359,0.912269,0.913273,0.678407,0.501341,0.3737,0.888887,0.338412,0.886872,0.718734,0.0765455,0.784484,0.759256,0.211282,0.385793,0.0489326,0.586162,0.886821,0.778149,0.254528,0.827975,0.280685,0.210868,0.517644,0.279701,0.443663,0.729236,0.352698,0.615293,0.471711,0.688249,0.168527,0.80815,0.744851,0.99389,0.477754,0.397377,0.447646,0.244667,0.315215,0.765673,0.447793,0.0403792,0.236593,0.976083,0.00391561,0.353389,0.990018,0.362268,0.718435,0.816689,0.187132,0.550732,0.543146,0.092485,0.603529,0.0133779,0.158917,0.767011,0.926542,0.259516,0.611312,0.00124407,0.829435,0.161721,0.85253,0.226936,0.149608,0.479598,0.714889,0.0490285,0.398725,0.546109,0.329752,0.672344,0.372626,0.694016,0.649714,0.00209492,0.885484,0.868325,0.215859,0.290947,0.72846,0.417528,0.749214,0.65686,0.516353,0.870658,0.907872,0.608554,0.804292,0.135013,0.329223,0.091288,0.479692,0.890138,0.47966,0.161865,0.544746,0.422133,0.0637108,0.596878,0.922829,0.783259,0.241572,0.121899,0.790961,0.954205,0.10533,0.520424,0.816087,0.653492,0.991054,0.186089,0.140685,0.254184,0.152009,0.570319,0.450494,0.350344,0.202195,0.647176,0.471676,0.392579,0.885203,0.0399284,0.191122,0.938718,0.664706,0.645592,0.250988,0.281177,0.540873,0.139186,0.412261,0.156488,0.299379,0.473534,0.689522,0.924552,0.707833,0.346804,0.586626,0.673687,0.446965,0.538988,0.726685,0.0185256,0.232649,0.224471,0.00387061,0.739008,0.819775,0.965981,0.721105,0.131384,0.775858,0.760288,0.0607525,0.51306,0.993765,0.320528,0.29555,0.739263,0.730302,0.371496,0.661227,0.651954,0.535929,0.980966,0.0359136,0.834345,0.985714,0.939087,0.993256,0.610088,0.43277,0.12203,0.460333,0.398346,0.56128,0.965338,0.344014,0.858997,0.0129147,0.709868,0.113782,0.39513,0.736508,0.522806,0.931363,0.119182,0.822812,0.717141,0.950004,0.783938,0.6019,0.45102,0.46793,0.55393,0.805885,0.608215,0.34364,0.916637,0.743363,0.267048,0.615245,0.280313,0.892066,0.0447789,0.372379,0.213751,0.476433,0.208218,0.726727,0.801732,0.00502557,0.505498,0.479151,0.979646,0.0464692,0.191228,0.082165,0.75598,0.032884,0.0350944,0.0897843,0.394862,0.854745,0.839741,0.535582,0.299426,0.531762,0.366025,0.323191,0.30476,0.638972,0.791153,0.880014,0.910663,0.913636,0.00486344,0.0381137,0.333564,0.966777,0.0448205,0.670315,0.141642,0.230024,0.700011,0.373731,0.066545,0.922124,0.0603207,0.457489,0.456292,0.242634,0.837009,0.498698,0.493166,0.0441647,0.344885,0.504257,0.949916,0.955577,0.994058,0.22494,0.170982,0.318518,0.413461,0.739004,0.915112,0.400186,0.184268,0.91187,0.216038,0.389331,0.431474,0.847642,0.209966,0.569263,0.357802,0.104368,0.0708499,0.383974,0.555834,0.511558,0.381147,0.487848,0.000721395,0.28747,0.277429,0.376193,0.837848,0.0103784,0.513868,0.390375,0.00458384,0.450118,0.756182,0.463791,0.918544,0.159633,0.966794,0.81472,0.914184,0.0848758,0.808592,0.535399,0.979748,0.505293,0.545207,0.576653,0.582045,0.226633,0.669638,0.770836,0.724905,0.222485,0.619969,0.247812,0.0169803,0.0351098,0.928417,0.241339,0.379398,0.417538,0.618258,0.569942,0.0668674,0.578276,0.95489,0.236772,0.778845,0.481179,0.555221,0.319025,0.990294,0.890925,0.64588,0.355604,0.383233,0.641655,0.121283,0.388977,0.0249446,0.116533,0.630688,0.0714462,0.0644777,0.259281,0.889923,0.265564,0.81273,0.683389,0.462286,0.563724,0.762998,0.618051,0.409246,0.627943,0.389402,0.401982,0.697908,0.505354,0.863774,0.574126,0.0862479,0.0501692,0.553326,0.566291,0.412009,0.988447,0.558574,0.806395,0.858584,0.392219,0.533606,0.418517,0.0792627,0.835675,0.381734,0.263133,0.456283,0.948806,0.979688,0.870888,0.322538,0.518027,0.601708,0.699543,0.70321,0.373118,0.247972,0.90884,0.313882,0.990351,0.141974,0.514375,0.987916,0.192205,0.11584,0.671239,0.892312,0.852037,0.297056,0.106419,0.180013,0.694577,0.681245,0.910465,0.119077,0.238474,0.516315,0.491411,0.325677,0.364022,0.75949,0.983535,0.531832,0.161891,0.142798,0.211368,0.783104,0.293134,0.154708,0.499404,0.0621477,0.524436,0.0284839,0.774011,0.839266,0.259694,0.340898,0.207563,0.274337,0.689033,0.00561106,0.44262,0.196204,0.114515,0.929552,0.529427,0.0393527,0.881794,0.33595,0.0263017,0.496268,0.556912,0.664452,0.909868,0.0185547,0.593634,0.689115,0.194399,0.64847,0.178462,0.42604,0.106945,0.472378,0.745734,0.923225,0.949857,0.949264,0.325322,0.170852,0.861598,0.0777678,0.721062,0.899263,0.715932,0.176715,0.0607933,0.254548,0.760083,0.915677,0.269432,0.766377,0.624036,0.193937,0.17349,0.0857571,0.583632,0.288041,0.40945,0.407311,0.997073,0.665543,0.405322,0.901409,0.2519,0.773299,0.198916,0.311303,0.0423922,0.584677,0.795888,0.710315,0.556679,0.59301,0.319011,0.363666,0.32019,0.763623,0.111859,0.760317,0.621414,0.649569,0.785318,0.527065,0.533,0.282748,0.360741,0.703117,0.679406,0.323315,0.729321,0.833417,0.521794,0.13357,0.0603962,0.144793,0.638163,0.490582,0.0456238,0.0431915,0.685404,0.990132,0.39216,0.675711,0.359446,0.158031,0.595537,0.191383,0.741563,0.249187,0.0283909,0.871689,0.708777,0.483587,0.181439,0.753647,0.803269,0.594867,0.222091,0.401595,0.507844,0.732032,0.467909,0.918223,0.77206,0.988545,0.777772,0.288608,0.503126,0.68625,0.241028,0.000740409,0.907627,0.0261747,0.972288,0.463603,0.440851,0.388344,0.188343,0.0524676,0.189808,0.123156,0.292566,0.506093,0.116041,0.00615114,0.834694,0.67827,0.486504,0.442724,0.657057,0.996952,0.959517,0.8755,0.51148,0.648563,0.780294,0.162534,0.467296,0.872808,0.208626,0.565841,0.0761632,0.45212,0.683062,0.23462,0.483557,0.393279,0.233874,0.97158,0.4466,0.251406,0.203643,0.946887,0.273443,0.69009,0.528751,0.750576,0.596901,0.690325,0.701902,0.00182104,0.929685,0.71525,0.553693,0.0576123,0.122696,|0.511272,0.684141,0.657508,0.890595,0.931993,0.507323,0.657549,0.8285,0.328998,0.952071,0.457597,0.558758,0.553555,0.816894,0.190686,0.190664,0.780309,0.178065,0.359439,0.212092,0.693689,0.939798,0.966423,0.0953062,0.395347,0.846401,0.507799,0.315623,0.544466,0.767222,0.584858,0.455953,0.575776,0.0834506,0.943468,0.5708,0.87857,0.0863026,0.263299,0.784022,0.473954,0.979633,0.862046,0.597571,0.171215,0.178151,0.469269,0.173367,0.911092,0.254617,0.457994,0.949313,0.413867,0.747017,0.293044,0.408039,0.200116,0.686621,0.966177,0.42601,0.0815057,0.621427,0.765939,0.290959,0.381962,0.531199,0.507938,0.870861,0.320566,0.655937,0.656055,0.547174,0.252268,0.638199,0.284808,0.395305,0.0746211,0.978974,0.00841391,0.798078,0.6944,0.565453,0.315979,0.293441,0.538084,0.793635,0.156829,0.82377,0.467535,0.774457,0.868253,0.977479,0.935351,0.704504,0.338007,0.803937,0.199997,0.197736,0.837997,0.410268,0.196004,0.211295,0.656099,0.873468,0.508852,0.536173,0.527118,0.596654,0.408686,0.474249,0.0446828,0.955321,0.300863,0.266712,0.29755,0.0498111,0.640684,0.895652,0.93137,0.518453,0.471002,0.596317,0.727245,0.516447,0.827102,0.849788,0.07987,0.653823,0.588212,0.593142,0.981372,0.327973,0.245741,0.247582,0.914982,0.51979,0.237807,0.512427,0.966135,0.698284,0.29994,0.234746,0.684447,0.260006,0.395933,0.985313,0.399808,0.700298,0.231545,0.215605,0.948626,0.659572,0.0245476,0.116246,0.995726,0.062843,0.156637,0.373151,0.226924,0.054633,0.273738,0.180518,0.7958,0.565412,0.660359,0.110631,0.840169,0.00850827,0.846522,0.0229893,0.0357518,0.473454,0.994089,0.309288,0.853765,0.954936,0.319284,0.919907,0.613957,0.0324746,0.0307997,0.976637,0.142129,0.530634,0.0666168,0.570167,0.540595,0.784769,0.325497,0.577869,0.0917886,0.516922,0.493325,0.0599147,0.808417,0.309172,0.312957,0.888136,0.114893,0.363279,0.898222,0.881788,0.199821,0.0380136,0.758994,0.590874,0.698619,0.230763,0.747774,0.061596,0.957362,0.166067,0.970562,0.040854,0.693249,0.824157,0.0852463,0.44271,0.106264,0.25214,0.886294,0.0928408,0.672476,0.482657,0.718075,0.844676,0.958355,0.395988,0.971187,0.255344,0.0059669,0.313194,0.301639,0.0335944,0.497811,0.634543,0.353815,0.0546184,0.508111,0.98043,0.263061,0.655822,0.4949,0.0330791,0.308943,0.573993,0.883271,0.580913,0.992559,0.152073,0.875709,0.367769,0.752384,0.256904,0.949078,0.729442,0.481375,0.749073,0.953134,0.0969266,0.803897,0.109453,0.206326,0.589853,0.538944,0.699014,0.379589,0.108799,0.438694,0.79043,0.431873,0.341606,0.699733,0.225098,0.797888,0.199291,0.0862673,0.230136,0.486558,0.295716,0.0999579,0.257597,0.650448,0.990692,0.471328,0.116203,0.0460381,0.230534,0.718357,0.737381,0.0852276,0.876092,0.260264,0.711365,0.153343,0.369491,0.393813,0.0539591,0.920137,0.897187,0.535844,0.879713,0.722528,0.463862,0.529767,0.730389,0.708642,0.795947,0.380785,0.281962,0.0828394,0.367703,0.249348,0.627595,0.213594,0.987463,0.459494,0.300993,0.351077,0.821936,0.95958,0.504722,0.0221046,0.174296,0.545556,0.074936,0.861913,0.684538,0.138246,0.420732,0.0864151,0.468904,0.738523,0.664147,0.715465,0.822749,0.599654,0.295869,0.992612,0.735314,0.751072,0.894749,0.995015,0.884504,0.148232,0.445379,0.316849,0.405699,0.583047,0.393267,0.512688,0.101411,0.782983,0.172656,0.0417587,0.366753,0.420087,0.0871527,0.0271102,0.430622,0.206087,0.56906,0.266602,0.218204,0.447663,0.460484,0.816019,0.115732,0.641859,0.575664,0.0205677,0.865588,0.877094,0.523305,0.610877,0.591499,0.471911,0.00227273,0.242696,0.527814,0.482453,0.451007,0.596292,0.123808,0.168233,0.972094,0.0740488,0.509658,0.588294,0.383951,0.900945,0.13051,0.778394,0.574662,0.913893,0.520384,0.679316,0.0556366,0.155474,0.516782,0.132404,0.152313,0.4321,0.355612,0.976365,0.26865,0.195861,0.153629,0.786593,0.770024,0.373227,0.841924,0.471066,0.417229,0.750052,0.0286522,0.629195,0.455039,0.855886,0.0839882,0.283451,0.995152,0.721848,0.820903,0.511802,0.563056,0.782389,0.397444,0.505508,0.729129,0.876764,0.0736378,0.25726,0.942757,0.906454,0.340638,0.652977,0.242272,0.173209,0.00665206,0.0349669,0.436545,0.704255,0.83046,0.743143,0.0304122,0.936821,0.755974,0.127077,0.430991,0.995764,0.795327,0.786699,0.199112,0.364742,0.445709,0.844147,0.502951,0.275264,0.553733,0.591169,0.726523,0.608637,0.149809,0.107642,0.900208,0.354899,0.294155,0.796705,0.221159,0.44931,0.859828,0.331088,0.41639,0.644015,0.601451,0.910033,0.788858,0.124407,0.124925,0.641257,0.26981,0.329752,0.198914,0.431449,0.495403,0.273101,0.545201,0.310483,0.589822,0.980459,0.102978,0.131638,0.478687,0.54966,0.42277,0.430195,0.918208,0.171278,0.230975,0.533939,0.811671,0.532077,0.660581,0.597182,0.434768,0.461199,0.916655,0.486924,0.119737,0.214524,0.043344,0.657834,0.659096,0.8186,0.427249,0.203287,0.558414,0.829782,0.430883,0.467635,0.785279,0.470831,0.261962,0.321356,0.478539,0.950923,0.709783,0.968706,0.317533,0.571346,0.490046,0.830729,0.572113,0.00911427,0.888107,0.992058,0.101115,0.245314,0.627407,0.32127,0.93329,0.514389,0.770252,0.0342914,0.125797,0.70392,0.257577,0.958818,0.922045,0.226627,0.533751,0.19351,0.411076,0.358737,0.980328,0.439038,0.796819,0.737967,0.418644,0.00203919,0.609817,0.00187427,0.188773,0.467784,0.248711,0.608112,0.356089,0.145046,0.89573,0.223692,0.578213,0.616224,0.00730389,0.898056,0.103035,0.422823,0.294234,0.289811,0.936847,0.42289,0.822972,0.150576,0.290182,0.341664,0.944345,0.596015,0.739039,0.910231,0.368413,0.0029918,0.0588489,0.103568,0.564568,0.000303686,0.579438,0.123113,0.291854,0.394382,0.387679,0.8538,0.789723,0.0895973,0.853768,0.132509,0.878807,0.0540071,0.637672,0.0381733,0.826057,0.234518,0.0660871,0.588251,0.0519172,0.871517,0.258393,0.542414,0.332342,0.0451906,0.969549,0.751953,0.24518,0.35992,0.954948,0.708719,0.544693,0.736325,0.519718,0.683744,0.28328,0.088554,0.620387,0.460623,0.608777,0.527551,0.234553,0.207834,0.960896,0.0238039,0.976964,0.843011,0.22214,0.411061,0.286592,0.256554,0.360715,0.459714,0.513786,0.685994,0.351019,0.8201,0.770272,0.467234,0.736047,0.748909,0.658593,0.156209,0.198113,0.583318,0.531594,0.481082,0.280924,0.0523475,0.470308,0.00434577,0.0906962,0.256983,0.857791,0.583535,0.946894,0.380843,0.926615,0.649542,0.500352,0.284232,0.563697,0.0602038,0.652453,0.440173,0.231396,0.271568,0.905034,0.0230961,0.971555,0.711807,0.885423,0.454151,0.158986,0.536026,0.204984,0.497984,0.0873722,0.935574,0.53383,0.58077,0.648547,0.957902,0.530841,0.14787,0.014248,0.376299,0.395639,0.385844,0.963345,0.23924,0.535049,0.795051,0.974827,0.726977,0.988163,0.675361,0.141745,0.523256,0.647659,0.762767,0.284163,0.739166,0.327766,0.346546,0.328795,0.74268,0.410439,0.590461,0.910177,0.00698543,0.215746,0.437892,0.208918,0.632944,0.219583,0.664405,0.0448399,0.406469,0.798827,0.0324443,0.0151198,0.379549,0.944348,0.930062,0.8305,0.856018,0.0666521,0.302237,0.896086,0.0336716,0.803898,0.0939888,0.431627,0.862061,0.377336,0.276901,0.348834,0.667097,0.845341,0.851281,0.918745,0.861437,0.871658,0.954018,0.899433,0.52116,0.312388,0.176313,0.957358,0.208547,0.887379,0.739212,0.798989,0.64399,0.940995,0.148534,0.815716,0.813815,0.0733418,0.680612,0.673088,0.0264116,0.113696,0.731184,0.701346,0.43483,0.511302,0.0140322,0.620947,0.557646,0.790783,0.499288,0.313063,0.3779,0.339483,0.48286,0.487944,0.959556,0.967416,0.785432,0.254637,0.307501,0.459241,0.0725855,0.37561,0.293464,0.270408,0.599957,0.200511,0.835802,0.534201,0.285202,0.422096,0.424173,0.132051,0.380829,0.176184,0.65457,0.246973,0.852561,0.283414,0.0898253,0.484441,0.837628,0.595756,0.896371,0.83368,0.473957,0.947186,0.529157,0.560236,0.184816,0.190277,0.768845,0.716714,0.928163,0.164028,0.0928355,0.347153,0.506827,0.146154,0.365855,0.163372,0.591984,0.650631,0.0171932,0.0511512,0.846258,0.492058,0.733589,0.418488,0.755897,0.0629749,0.492314,0.932754,0.658862,0.585278,0.962339,0.0822999,0.105969,0.689955,0.135382,0.333383,0.77763,0.323392,0.591964,0.436803,0.711767,0.920045,0.740912,0.278968,0.422819,0.530779,0.781458,0.197764,0.334936,0.378785,0.655101,0.471113,0.549191,0.267427,0.559453,0.316861,0.753838,0.828315,0.91549,0.265614,0.913232,0.349065,0.286836,0.274909,0.236523,0.611106,0.989536,0.720619,0.0745093,0.200606,0.449209,0.677809,0.321932,0.246907,0.52268,0.311714,0.869671,0.16587,0.977954,0.148938,0.39834,0.203493,0.523188,0.782341,0.412487,0.99427,0.837349,0.465506,0.384337,0.433696,0.0218754,0.0295891,0.126443,0.434387,0.00104642,0.438091,0.291582,0.271147,0.476802,0.665068,0.879762,0.676773,0.195035,0.286857,0.186657,0.291599,0.882696,0.089179,0.620023,0.950883,0.932968,0.651807,0.788515,0.922985,0.791624,0.414657,0.607157,0.644199,0.619945,0.65218,0.391306,0.962566,0.739793,0.49948,0.702487,0.176736,0.172726,0.17507,0.726759,0.827873,0.84272,0.432785,0.811582,0.363031,0.836589,0.527403,0.0856602,0.70604,0.710136,0.654375,0.766195,0.708033,0.275622,0.803481,0.80982,0.540667,0.149567,0.00690144,0.0509092,0.0878981,0.161011,0.848213,0.0147591,0.716972,0.88358,0.755983,0.0551947,0.626091,0.655768,0.542946,0.918215,0.897649,0.298695,0.564763,0.714602,0.833927,0.749402,0.379394,0.0114579,0.723694,0.475345,0.266709,0.374785,0.698186,0.936838,0.0761087,0.184579,0.461349,|0.517101,0.262296,0.66845,0.780819,0.375479,0.295457,0.639351,0.48632,0.0444404,0.757157,0.394012,0.0826626,0.165265,0.0148077,0.0695204,0.133611,0.067771,0.374712,0.239398,0.0575578,0.210145,0.906289,0.563401,0.235012,0.552041,0.125415,0.460182,0.287717,0.91762,0.240173,0.152615,0.394131,0.881729,0.281791,0.782516,0.627272,0.106919,0.694063,0.157567,0.119902,0.259488,0.238226,0.206912,0.0707099,0.643232,0.151494,0.189657,0.140887,0.582898,0.286458,0.753082,0.850149,0.528922,0.122869,0.0211409,0.049159,0.529846,0.0713391,0.315617,0.289106,0.643483,0.970186,0.293575,0.864673,0.589021,0.800211,0.373618,0.564275,0.809561,0.639741,0.347109,0.376189,0.550001,0.322532,0.201999,0.562726,0.672577,0.875391,0.943984,0.994857,0.807838,0.996409,0.0715672,0.310672,0.230744,0.958406,0.325027,0.24262,0.789983,0.248949,0.472107,0.761767,0.696804,0.192132,0.904135,0.60013,0.920568,0.554331,0.0601911,0.432999,0.252662,0.252603,0.290161,0.282224,0.141513,0.803286,0.602359,0.455253,0.238766,0.8836,0.317313,0.269275,0.687858,0.831645,0.238855,0.641739,0.137296,0.364081,0.630886,0.170098,0.593043,0.569218,0.7418,0.450372,0.871126,0.463356,0.694118,0.390556,0.875494,0.200871,0.139306,0.719792,0.247462,0.468038,0.837858,0.267228,0.24835,0.0938957,0.840584,0.614958,0.519761,0.319492,0.536458,0.0841726,0.555211,0.953263,0.877494,0.547898,0.911827,0.876627,0.906305,0.314667,0.828191,0.666161,0.554775,0.301409,0.586971,0.152951,0.100262,0.502812,0.0250189,0.236611,0.278363,0.692576,0.218651,0.238211,0.654665,0.556743,0.87078,0.355934,0.230055,0.0636131,0.85971,0.60846,0.00119716,0.0130391,0.777754,0.285046,0.15843,0.846066,0.162872,0.552508,0.355668,0.840714,0.351593,0.140658,0.86273,0.744516,0.705167,0.23241,0.36387,0.0354149,0.989002,0.303183,0.0962276,0.297296,0.399058,0.969296,0.832795,0.905052,0.105891,0.0776407,0.0224414,0.660354,0.472893,0.603272,0.847379,0.47114,0.770427,0.271795,0.4158,0.0581948,0.513033,0.691168,0.394917,0.300317,0.847514,0.421005,0.770232,0.637765,0.805655,0.235064,0.978673,0.648919,0.0181172,0.598789,0.659111,0.825628,0.631002,0.125441,0.759887,0.956234,0.141381,0.733983,0.59898,0.306156,0.677123,0.248161,0.40905,0.761109,0.0146858,0.340388,0.589893,0.890441,0.591717,0.0741468,0.967187,0.579724,0.397119,0.277292,0.822238,0.822061,0.0234171,0.169917,0.356577,0.0787438,0.426494,0.823024,0.328408,0.984802,0.00919145,0.822808,0.0120355,0.332197,0.459769,0.134443,0.0944449,0.514246,0.459835,0.987278,0.369883,0.857194,0.95599,0.574816,0.613456,0.516394,0.989844,0.169196,0.394625,0.281466,0.763763,0.726659,0.276289,0.360387,0.946662,0.855927,0.764591,0.408591,0.909491,0.705641,0.802309,0.112498,0.89384,0.250799,0.967411,0.019022,0.288743,0.552784,0.0931596,0.476194,0.636188,0.604998,0.921292,0.930732,0.404484,0.841089,0.00353974,0.436403,0.505416,0.675555,0.773054,0.597857,0.5448,0.0478859,0.792911,0.578099,0.140206,0.223838,0.830733,0.400888,0.829432,0.932237,0.0673095,0.930424,0.380669,0.893792,0.50011,0.348812,0.521739,0.391561,0.759034,0.0116546,0.485447,0.455765,0.661412,0.568724,0.672894,0.672169,0.194819,0.0171831,0.0268304,0.509122,0.742374,0.433989,0.846484,0.141142,0.786611,0.821237,0.86994,0.256714,0.0695959,0.964468,0.940863,0.659674,0.389003,0.458802,0.742422,0.574549,0.159722,0.00459659,0.555045,0.544924,0.933777,0.19731,0.969434,0.897981,0.139768,0.129027,0.255097,0.447355,0.70315,0.905396,0.82871,0.494301,0.930832,0.121243,0.290398,0.390326,0.472888,0.523039,0.726454,0.91203,0.28044,0.255244,0.633542,0.592756,0.618949,0.791548,0.781112,0.636026,0.667789,0.291381,0.284479,0.819356,0.00775987,0.591924,0.696314,0.246417,0.0688734,0.0947674,0.10514,0.842699,0.548851,0.917761,0.0536751,0.815881,0.758223,0.215233,0.523865,0.473915,0.766475,0.388623,0.616884,0.959536,0.0783739,0.578996,0.038397,0.821945,0.0703251,0.0150026,0.724899,0.760777,0.690982,0.35976,0.0357422,0.842634,0.0800309,0.294058,0.705387,0.431984,0.940738,0.745726,0.581203,0.194271,0.905939,0.522878,0.780613,0.411297,0.312651,0.0685546,0.712628,0.0784706,0.152988,0.107329,0.363326,0.985271,0.860167,0.551644,0.63143,0.363618,0.405641,0.430587,0.52031,0.83153,0.0156164,0.419685,0.149588,0.367372,0.977336,0.456825,0.816104,0.202259,0.577115,0.514772,0.406776,0.588528,0.679686,0.772198,0.00359571,0.514652,0.319106,0.421454,0.22194,0.74748,0.457742,0.937258,0.945321,0.455528,0.211984,0.713329,0.709389,0.118156,0.0261955,0.872611,0.477107,0.725925,0.699289,0.860285,0.733546,0.614349,0.2644,0.861532,0.891871,0.386783,0.22224,0.0683637,0.395558,0.679434,0.715286,0.15307,0.889335,0.88155,0.32027,0.595739,0.641282,0.0692628,0.23231,0.74502,0.141111,0.996476,0.650762,0.381056,0.775402,0.150742,0.234225,0.863532,0.394354,0.245697,0.59408,0.978028,0.980525,0.731726,0.297421,0.749782,0.854668,0.792583,0.59733,0.329415,0.762233,0.808828,0.124197,0.99832,0.565213,0.42422,0.539907,0.298493,0.324865,0.981862,0.48263,0.449093,0.809318,0.660795,0.983572,0.443235,0.951325,0.590553,0.778501,0.286842,0.402452,0.852369,0.963602,0.727387,0.912673,0.219124,0.412559,0.607654,0.558811,0.979398,0.103173,0.687134,0.204616,0.145548,0.637742,0.390459,0.872046,0.338778,0.468611,0.561518,0.382113,0.629074,0.0713034,0.554278,0.448653,0.521356,0.739845,0.959769,0.0830079,0.205113,0.0940948,0.905828,0.671442,0.28289,0.107296,0.465856,0.530206,0.895426,0.232147,0.779095,0.992289,0.412848,0.46074,0.718961,0.448943,0.898471,0.324019,0.0674199,0.0678527,0.69231,0.094051,0.530394,0.928272,0.61334,0.652479,0.692324,0.394726,0.462218,0.879425,0.0362532,0.495731,0.329699,0.49007,0.0929682,0.0284316,0.458363,0.524573,0.341964,0.501499,0.381323,0.428198,0.337473,0.59137,0.306295,0.760312,0.484016,0.803081,0.689451,0.303359,0.171604,0.698622,0.399555,0.774377,0.755254,0.614026,0.501305,0.532384,0.936341,0.269401,0.149665,0.673203,0.625365,0.341646,0.325301,0.475633,0.645553,0.76621,0.177796,0.260614,0.40458,0.740217,0.640401,0.90975,0.969089,0.305319,0.792586,0.326233,0.473582,0.32858,0.644688,0.527869,0.840622,0.437546,0.713877,0.0217147,0.118907,0.232674,0.565109,0.317626,0.0400338,0.866547,0.795569,0.359292,0.333199,0.900856,0.714006,0.49593,0.835959,0.448996,0.112073,0.391952,0.201054,0.118996,0.548854,0.0370781,0.0556738,0.836788,0.663898,0.841943,0.0420065,0.293679,0.375582,0.0717577,0.358216,0.00461924,0.404876,0.506487,0.235342,0.0415123,0.199027,0.206377,0.583566,0.526559,0.0963799,0.803295,0.889428,0.0566292,0.529755,0.339421,0.193967,0.157453,0.915698,0.0595767,0.443677,0.140431,0.821606,0.898312,0.0190507,0.190299,0.93712,0.0148315,0.358728,0.266964,0.863627,0.798831,0.457207,0.918794,0.370188,0.460414,0.360506,0.992357,0.771879,0.0819817,0.203728,0.595308,0.0810452,0.433421,0.259837,0.981416,0.63634,0.344588,0.860207,0.92596,0.462274,0.363132,0.212798,0.727252,0.150943,0.341049,0.809432,0.873669,0.459912,0.530148,0.450222,0.397166,0.909595,0.441526,0.204778,0.134078,0.46974,0.56402,0.415251,0.00905073,0.30365,0.950361,0.516144,0.249069,0.663537,0.0858248,0.118592,0.534075,0.922943,0.865842,0.681293,0.883128,0.532235,0.356167,0.814868,0.404573,0.211476,0.627617,0.34576,0.128188,0.695883,0.357692,0.732321,0.572096,0.00834936,0.106512,0.57797,0.266567,0.886662,0.846746,0.53653,0.599139,0.905078,0.155582,0.0684347,0.0150759,0.115129,0.85632,0.942925,0.220677,0.81113,0.424692,0.0494166,0.733524,0.553848,0.881279,0.499986,0.908411,0.198031,0.3734,0.843545,0.949176,0.956471,0.35366,0.826097,0.705788,0.255706,0.883855,0.13852,0.579821,0.333645,0.140689,0.860311,0.665134,0.215086,0.596591,0.672895,0.495984,0.606327,0.342229,0.492653,0.600494,0.430214,0.0900888,0.901287,0.190705,0.477356,0.784204,0.468957,0.0899202,0.388756,0.256123,0.549079,0.0123579,0.32816,0.32075,0.549725,0.864511,0.162544,0.287149,0.914743,0.81899,0.0993743,0.585418,0.0708214,0.828817,0.957672,0.171338,0.931295,0.563957,0.746592,0.282958,0.183848,0.741809,0.835817,0.427096,0.492617,0.749285,0.159612,0.199562,0.480159,0.310542,0.21546,0.708913,0.00697416,0.893594,0.83011,0.152501,0.432194,0.661886,0.935797,0.820884,0.644593,0.199703,0.782779,0.249651,0.680425,0.566721,0.0419731,0.85053,0.528577,0.480252,0.236612,0.154768,0.971956,0.204236,0.904544,0.391684,0.206496,0.883316,0.906101,0.593179,0.322962,0.844272,0.659555,0.245786,0.765732,0.795953,0.57878,0.308068,0.265055,0.148604,0.376661,0.985954,0.313295,0.108045,0.527884,0.929037,0.0856261,0.561137,0.901987,0.797102,0.916329,0.112378,0.533244,0.442907,0.159174,0.321627,0.486639,0.839669,0.603919,0.220545,0.269741,0.911806,0.807481,0.225867,0.850786,0.198291,0.258551,0.736269,0.586534,0.702659,0.399087,0.072459,0.66198,0.200355,0.0992329,0.725775,0.424606,0.355916,0.336069,0.827383,0.225566,0.315723,0.116034,0.320504,0.246896,0.0103328,0.294044,0.350803,0.568058,0.460681,0.0488191,0.767036,0.509694,0.35387,0.887874,0.898517,0.85207,0.613063,0.918986,0.977566,0.134273,0.171306,0.965807,0.776762,0.961884,0.835283,0.84923,0.0126436,0.582837,0.157167,0.720579,0.912543,0.909967,0.520434,0.437862,0.108099,0.891888,0.836684,0.0833699,0.548207,0.950505,0.083118,0.325964,0.296871,0.93502,0.89565,0.455315,|0.675759,0.215814,0.856018,0.416358,0.121134,0.398026,0.419852,0.124241,0.0586423,0.987331,0.21271,0.214745,0.751878,0.273272,0.499577,0.731675,0.687374,0.758807,0.437972,0.688351,0.00594133,0.524519,0.792717,0.0220232,0.185439,0.560686,0.651506,0.678142,0.798609,0.0943838,0.840695,0.767214,0.914371,0.515629,0.617424,0.968423,0.254913,0.0802947,0.313762,0.578472,0.35207,0.931685,0.606956,0.581942,0.345366,0.0409571,0.954645,0.408478,0.145223,0.263399,0.750389,0.38248,0.149219,0.560527,0.635137,0.770221,0.712189,0.836346,0.425562,0.283334,0.261137,0.902133,0.999493,0.40138,0.669769,0.10417,0.492515,0.305681,0.409279,0.17916,0.854963,0.191848,0.0286844,0.93117,0.836659,0.971754,0.548108,0.933753,0.997439,0.8219,0.251992,0.0429336,0.335684,0.841194,0.989936,0.752423,0.651827,0.863199,0.306661,0.910784,0.38089,0.984042,0.714216,0.944134,0.54052,0.884298,0.172841,0.0551912,0.742845,0.122321,0.290025,0.0812207,0.656425,0.179465,0.789731,0.482311,0.780854,0.629164,0.202716,0.331556,0.786034,0.175571,0.636712,0.0823623,0.679976,0.224262,0.224867,0.747393,0.205528,0.206027,0.66849,0.416855,0.12869,0.0467368,0.45767,0.776902,0.43733,0.0429488,0.84844,0.504531,0.306302,0.837509,0.670409,0.361206,0.980113,0.734789,0.275277,0.0344514,0.976435,0.28637,0.321779,0.255798,0.343553,0.213913,0.0543147,0.544613,0.32971,0.958896,0.123115,0.732059,0.282979,0.397488,0.316339,0.530523,0.504931,0.88877,0.915665,0.241016,0.0540615,0.975623,0.170586,0.201305,0.860607,0.907473,0.58137,0.775414,0.0250036,0.737066,0.0951334,0.128373,0.72698,0.108325,0.302798,0.578779,0.0658552,0.593548,0.260905,0.969213,0.264232,0.341532,0.807625,0.697279,0.736762,0.955374,0.541805,0.0057109,0.041343,0.407352,0.42507,0.69771,0.701448,0.470882,0.840901,0.981536,0.562085,0.700513,0.279401,0.208453,0.526887,0.68773,0.0385065,0.879864,0.191003,0.31381,0.113443,0.931296,0.438256,0.0999695,0.67462,0.675032,0.237742,0.235303,0.618695,0.770094,0.0242029,0.60616,0.703235,0.710295,0.19256,0.633304,0.598608,0.487626,0.860346,0.225723,0.516022,0.941087,0.77521,0.453393,0.891686,0.85643,0.498067,0.254472,0.583767,0.909815,0.809831,0.534036,0.91417,0.177577,0.546017,0.883905,0.061437,0.383965,0.632646,0.734209,0.978705,0.143355,0.850382,0.456038,0.860942,0.152407,0.630319,0.884058,0.114263,0.0261661,0.96377,0.382205,0.735957,0.648194,0.869436,0.118981,0.896752,0.759324,0.226264,0.303259,0.490102,0.338322,0.833771,0.362664,0.967339,0.282254,0.133156,0.656146,0.0213875,0.952172,0.724209,0.295275,0.365761,0.629958,0.732365,0.178103,0.368627,0.121727,0.229639,0.0757436,0.919992,0.249606,0.510455,0.605408,0.415301,0.0753784,0.043566,0.316302,0.839136,0.381426,0.598411,0.207125,0.302831,0.815234,0.0999094,0.171089,0.41492,0.383481,0.833061,0.675798,0.298602,0.645949,0.560735,0.24856,0.472762,0.408534,0.394471,0.97283,0.9453,0.585593,0.523618,0.752804,0.795469,0.846894,0.490504,0.847987,0.615961,0.645012,0.808908,0.328721,0.644623,0.353521,0.764805,0.579308,0.522818,0.128874,0.434036,0.632659,0.635842,0.956717,0.123727,0.0275821,0.598588,0.427063,0.838562,0.652466,0.337323,0.818648,0.0822152,0.730209,0.819249,0.319417,0.966139,0.0865003,0.20578,0.134162,0.524809,0.793635,0.629201,0.888359,0.13453,0.508732,0.0378976,0.621042,0.431219,0.839789,0.881947,0.67299,0.575347,0.164502,0.0458515,0.546105,0.624909,0.306187,0.420598,0.826462,0.887383,0.893257,0.0970849,0.299182,0.992015,0.684516,0.400567,0.719357,0.625962,0.295026,0.880927,0.536767,0.763876,0.97755,0.725601,0.237977,0.299358,0.370791,0.370529,0.856216,0.250491,0.796742,0.994098,0.791621,0.773422,0.425059,0.764032,0.88341,0.398639,0.0687941,0.851212,0.854558,0.445365,0.356685,0.973405,0.578041,0.300467,0.32248,0.893073,0.801004,0.186233,0.520824,0.31662,0.841677,0.483565,0.814103,0.330566,0.804921,0.0529163,0.1136,0.672697,0.0889955,0.534753,0.37103,0.579051,0.244758,0.430644,0.880336,0.818782,0.21136,0.593109,0.13857,0.249514,0.123213,0.344429,0.205991,0.251293,0.112904,0.28606,0.115602,0.320153,0.751777,0.0774306,0.957332,0.514266,0.223539,0.236535,0.609388,0.414754,0.24921,0.872736,0.47179,0.301875,0.126317,0.756198,0.721439,0.294951,0.615772,0.596862,0.259022,0.989583,0.470054,0.970565,0.330773,0.964057,0.948987,0.398819,0.73061,0.634318,0.496958,0.610346,0.561356,0.85256,0.595869,0.566181,0.479817,0.451386,0.150877,0.938867,0.254228,0.489708,0.0767661,0.897719,0.869951,0.869154,0.998331,0.65891,0.414702,0.286355,0.110451,0.220182,0.139003,0.321705,0.957916,0.788224,0.884094,0.908532,0.322038,0.234227,0.278719,0.25999,0.977221,0.333382,0.0381848,0.0351966,0.233841,0.630195,0.491359,0.897768,0.391109,0.281994,0.980184,0.179838,0.225997,0.531799,0.0414099,0.945241,0.475946,0.840462,0.432901,0.726274,0.326394,0.628552,0.776803,0.417988,0.398533,0.384286,0.018512,0.0694293,0.23448,0.335789,0.725461,0.435437,0.0214054,0.961103,0.938908,0.25878,0.0309647,0.918548,0.286924,0.484269,0.249238,0.894767,0.0052411,0.820547,0.779008,0.00662565,0.736686,0.316819,0.927853,0.828103,0.324466,0.976611,0.493697,0.214305,0.0725816,0.473717,0.321218,0.686039,0.525205,0.389693,0.686639,0.153983,0.268308,0.174271,0.227499,0.329261,0.129798,0.0572065,0.467707,0.483858,0.545283,0.793697,0.927485,0.17233,0.709955,0.855178,0.720696,0.148607,0.989649,0.476264,0.774777,0.215441,0.7709,0.926973,0.311773,0.707492,0.449667,0.635145,0.162245,0.440824,0.188726,0.31714,0.473039,0.318018,0.747998,0.0502794,0.285237,0.784303,0.317139,0.626657,0.779782,0.320318,0.0816818,0.950158,0.661234,0.098027,0.228257,0.958759,0.103457,0.389525,0.432027,0.656049,0.225705,0.580472,0.804438,0.514214,0.517891,0.931179,0.163336,0.392131,0.414713,0.450503,0.63504,0.521892,0.465732,0.392029,0.946249,0.46447,0.306846,0.546972,0.665258,0.838268,0.241169,0.021569,0.417375,0.931097,0.871765,0.468488,0.501667,0.908094,0.906608,0.912266,0.39839,0.126009,0.426292,0.295382,0.338093,0.474574,0.680361,0.100167,0.346205,0.278532,0.222154,0.985423,0.482781,0.928305,0.833424,0.68305,0.784917,0.659393,0.626304,0.519406,0.482466,0.71313,0.59249,0.738361,0.950447,0.327081,0.555926,0.840982,0.156259,0.0335171,0.332361,0.427359,0.493085,0.543918,0.701629,0.668727,0.912978,0.903825,0.779845,0.788266,0.442957,0.31553,0.157606,0.350669,0.176538,0.751,0.380489,0.280156,0.43025,0.336154,0.240378,0.486761,0.656647,0.0962563,0.130894,0.467111,0.87936,0.617399,0.652641,0.597958,0.287422,0.711392,0.0463919,0.758585,0.917414,0.86924,0.0251018,0.0231082,0.777353,0.741335,0.797391,0.148842,0.118402,0.117342,0.67268,0.768802,0.943564,0.992045,0.90445,0.580571,0.175954,0.753812,0.565124,0.958935,0.724848,0.813496,0.192985,0.77074,0.267373,0.367805,0.271544,0.981501,0.501254,0.329924,0.266547,0.356403,0.27342,0.0693449,0.0192701,0.529573,0.999081,0.304061,0.352344,0.090778,0.251752,0.204057,0.999671,0.0302932,0.053739,0.322453,0.989485,0.0723807,0.00200635,0.748312,0.583023,0.998326,0.759623,0.490749,0.0230742,0.672985,0.597037,0.864374,0.936119,0.490489,0.435113,0.91859,0.343565,0.777806,0.0249832,0.602331,0.889934,0.054328,0.466692,0.666214,0.790486,0.449836,0.201895,0.961998,0.488208,0.432546,0.993878,0.172632,0.674199,0.151578,0.244112,0.0115169,0.0700355,0.282988,0.21853,0.525998,0.496276,0.610616,0.95226,0.0169557,0.712155,0.553363,0.73238,0.460448,0.855532,0.0680266,0.139564,0.467445,0.320413,0.199584,0.869131,0.545993,0.351076,0.12578,0.796918,0.415142,0.0686395,0.165865,0.476048,0.335227,0.142352,0.562156,0.292795,0.730027,0.0419188,0.903358,0.674071,0.480569,0.798057,0.567964,0.482994,0.980028,0.768966,0.440309,0.230396,0.0661959,0.455891,0.444425,0.62773,0.0920708,0.387008,0.597634,0.365193,0.990743,0.789631,0.986592,0.284933,0.78673,0.724994,0.565005,0.218912,0.240309,0.435703,0.182365,0.160437,0.251074,0.978698,0.865633,0.301153,0.736049,0.902478,0.0364906,0.580391,0.930846,0.089559,0.563371,0.0359312,0.889466,0.12924,0.987189,0.926029,0.58127,0.745177,0.555255,0.936964,0.00864989,0.962057,0.890076,0.057797,0.0283546,0.0542208,0.252309,0.967543,0.160751,0.715206,0.949965,0.420015,0.792971,0.381033,0.289629,0.553101,0.899583,0.778061,0.570668,0.679068,0.477434,0.590756,0.357188,0.428024,0.0963405,0.438422,0.830892,0.728529,0.728828,0.079358,0.435019,0.378865,0.888242,0.975749,0.887319,0.756445,0.805064,0.578581,0.0245441,0.212892,0.358157,0.481183,0.787914,0.92041,0.17708,0.223399,0.457805,0.435534,0.465915,0.171181,0.898397,0.135459,0.230652,0.351978,0.154307,0.492127,0.282765,0.436937,0.665967,0.522854,0.09603,0.485914,0.11049,0.707896,0.154824,0.575819,0.505273,0.760257,0.229128,0.118336,0.377725,0.475437,0.897013,0.458874,0.862395,0.0915554,0.815349,0.0999458,0.210707,0.186724,0.408563,0.39797,0.636207,0.0830905,0.848884,0.498062,0.545453,0.245165,0.906823,0.113999,0.437418,0.645907,0.615101,0.228012,0.572875,0.158648,0.0246924,0.455606,0.996458,0.538262,0.500585,0.43596,0.218964,0.998255,0.682867,0.512886,0.0698668,0.497495,0.963934,0.551693,0.529276,0.0221143,0.316283,0.656689,0.181239,0.425841,0.324721,0.427021,0.891715,0.894591,0.82675,0.335372,0.96374,0.260243,0.0115992,0.810078,0.0785334,0.041392,|0.626823,0.61911,0.518965,0.536543,0.395549,0.789767,0.970669,0.745695,0.224672,0.963081,0.660976,0.166786,0.604539,0.159594,0.0999538,0.750106,0.256675,0.505407,0.00355965,0.274189,0.573284,0.586093,0.973107,0.785855,0.229783,0.630913,0.783363,0.0314671,0.468378,0.991003,0.835314,0.499995,0.903369,0.935344,0.22226,0.0193635,0.651839,0.796391,0.874318,0.677268,0.00140935,0.352932,0.750116,0.75396,0.844188,0.0650511,0.86694,0.63995,0.880002,0.849987,0.651821,0.418777,0.477711,0.77351,0.509817,0.248514,0.0946561,0.45086,0.869424,0.514929,0.321589,0.56609,0.420531,0.643028,0.159272,0.171879,0.899246,0.474148,0.200247,0.229308,0.965479,0.759981,0.364619,0.409267,0.584895,0.763425,0.00409377,0.00436288,0.707105,0.449049,0.0556068,0.838233,0.761029,0.346235,0.0805616,0.151281,0.515311,0.821511,0.0265492,0.424973,0.929531,0.407153,0.709148,0.932789,0.501143,0.270809,0.457237,0.722551,0.511791,0.267794,0.0857639,0.730576,0.931733,0.182864,0.890312,0.977097,0.333198,0.190436,0.532347,0.235256,0.90642,0.500272,0.412504,0.867888,0.199874,0.0816228,0.772225,0.0549936,0.571707,0.99141,0.583221,0.2728,0.207371,0.571298,0.320804,0.0189947,0.226067,0.571872,0.988778,0.864147,0.622953,0.27028,0.494968,0.443789,0.148063,0.0604065,0.630489,0.908164,0.82492,0.217347,0.395223,0.860224,0.314676,0.95298,0.61911,0.660786,0.0725538,0.767645,0.936241,0.202693,0.926484,0.250129,0.686108,0.868568,0.187484,0.281009,0.375483,0.77361,0.090784,0.609065,0.952595,0.0423967,0.725955,0.0776843,0.31637,0.101257,0.624077,0.221224,0.932841,0.266084,0.0311337,0.320044,0.613019,0.294435,0.951891,0.242754,0.696173,0.0222409,0.662868,0.868741,0.611585,0.488941,0.389901,0.224047,0.498645,0.271122,0.576124,0.192148,0.70951,0.752352,0.511846,0.361862,0.926629,0.121657,0.93017,0.630289,0.43202,0.512,0.556487,0.166715,0.879512,0.605276,0.618892,0.393034,0.960848,0.643546,0.194778,0.648467,0.703689,0.422782,0.757337,0.252089,0.533887,0.273673,0.854196,0.703278,0.886073,0.0462834,0.457867,0.0524319,0.376587,0.385701,0.00999141,0.848363,0.141879,0.744276,0.647479,0.361338,0.818953,0.945009,0.207846,0.847046,0.0752009,0.564362,0.755878,0.0992649,0.531514,0.577413,0.19837,0.711639,0.693637,0.707002,0.706797,0.86653,0.891053,0.025718,0.295354,0.831065,0.415431,0.136256,0.980489,0.913848,0.306401,0.229992,0.0194393,0.176971,0.420174,0.376146,0.23686,0.825461,0.917781,0.132135,0.682611,0.568145,0.772307,0.651439,0.406623,0.13828,0.294083,0.620403,0.662945,0.249581,0.724095,0.156157,0.789069,0.870719,0.743205,0.679472,0.726557,0.682631,0.450476,0.993092,0.457246,0.888066,0.710981,0.496859,0.62998,0.560824,0.0583373,0.37804,0.485128,0.169111,0.468764,0.390035,0.565464,0.48022,0.886448,0.527776,0.487381,0.64229,0.3468,0.157782,0.600813,0.767078,0.938567,0.0280418,0.695221,0.815951,0.772345,0.0871467,0.271121,0.0101007,0.260313,0.160825,0.438952,0.87478,0.0230539,0.900856,0.388193,0.411105,0.54646,0.3703,0.597887,0.49483,0.220667,0.670042,0.329057,0.901504,0.631268,0.363173,0.876497,0.836623,0.322029,0.113977,0.911578,0.432287,0.865061,0.34756,0.229155,0.0275416,0.266286,0.864508,0.213948,0.993027,0.229844,0.098775,0.61751,0.756957,0.756024,0.836087,0.431604,0.828629,0.159156,0.47112,0.900684,0.974179,0.25194,0.115282,0.121604,0.87318,0.924492,0.692173,0.392807,0.722261,0.828209,0.777222,0.471544,0.308098,0.069068,0.174307,0.068536,0.169636,0.817648,0.250693,0.496345,0.725951,0.0374016,0.0513627,0.510422,0.179421,0.396418,0.972118,0.603762,0.794392,0.936483,0.801569,0.471072,0.198328,0.0735448,0.414216,0.696886,0.165311,0.872586,0.969089,0.984616,0.597447,0.932,0.505182,0.987563,0.473753,0.474275,0.135628,0.701685,0.5376,0.36591,0.209808,0.801172,0.99849,0.0502576,0.371681,0.302044,0.353262,0.0264486,0.532645,0.340815,0.328526,0.969436,0.0395581,0.0200077,0.319142,0.701432,0.885758,0.268677,0.276802,0.563689,0.792006,0.237059,0.480008,0.337124,0.450778,0.0268015,0.324647,0.0142716,0.678741,0.473323,0.336186,0.551934,0.104534,0.494687,0.943409,0.814927,0.0861553,0.916732,0.43941,0.844523,0.0865171,0.968727,0.987421,0.730155,0.0290502,0.386979,0.63515,0.762362,0.602213,0.797344,0.255297,0.478004,0.690369,0.183904,0.304865,0.68305,0.418039,0.847383,0.391696,0.99799,0.641559,0.978008,0.303324,0.902633,0.86319,0.920909,0.824686,0.948179,0.169768,0.476515,0.253929,0.655761,0.77117,0.402861,0.836587,0.206596,0.671106,0.618475,0.0584471,0.769053,0.372962,0.457846,0.802891,0.541211,0.43871,0.0269662,0.655257,0.463148,0.123463,0.753386,0.943588,0.357654,0.669876,0.54039,0.140081,0.479123,0.978368,0.0529155,0.650901,0.598488,0.220505,0.655899,0.536007,0.0930118,0.256665,0.941351,0.366906,0.946098,0.163177,0.965929,0.875198,0.506296,0.886221,0.485666,0.781092,0.0497515,0.73608,0.0151489,0.727894,0.167584,0.0157319,0.390628,0.557633,0.435833,0.710376,0.740783,0.675692,0.149127,0.722052,0.0367978,0.353932,0.716308,0.817986,0.699865,0.219847,0.274267,0.0987577,0.480851,0.846197,0.362291,0.923031,0.75004,0.254002,0.319769,0.332905,0.9181,0.491534,0.244021,0.772103,0.833192,0.0113082,0.948395,0.903928,0.900444,0.586416,0.218186,0.156732,0.368845,0.586062,0.942418,0.46974,0.156959,0.983544,0.140249,0.282255,0.584245,0.510062,0.1874,0.275057,0.717566,0.900429,0.0680209,0.965812,0.0850191,0.460115,0.596424,0.640051,0.633141,0.134592,0.250493,0.157122,0.0515596,0.582386,0.0993676,0.0513955,0.405852,0.915177,0.934867,0.20266,0.0886049,0.840575,0.094512,0.376404,0.363025,0.608202,0.738616,0.0256128,0.618528,0.0365484,0.951761,0.136417,0.380641,0.300282,0.48931,0.562481,0.172085,0.13357,0.2125,0.736484,0.906447,0.185013,0.620007,0.4794,0.913832,0.443977,0.987041,0.151557,0.784416,0.747916,0.232749,0.128961,0.392253,0.889736,0.544524,0.239609,0.0774395,0.296882,0.549353,0.0127207,0.573134,0.430537,0.994463,0.011083,0.111257,0.170635,0.370094,0.811215,0.37963,0.977076,0.750854,0.212522,0.537114,0.666766,0.233545,0.938841,0.342064,0.800265,0.557299,0.465722,0.696968,0.197079,0.520213,0.727256,0.166753,0.233283,0.209093,0.586628,0.367235,0.334409,0.970128,0.97945,0.777426,0.336997,0.668603,0.411356,0.908015,0.0837675,0.103434,0.747874,0.825184,0.646328,0.547709,0.427867,0.0395746,0.63406,0.0629786,0.216139,0.880097,0.601591,0.0542504,0.354774,0.555071,0.0901664,0.381011,0.565663,0.102314,0.120784,0.000693619,0.616578,0.750858,0.0716352,0.597259,0.826307,0.0736207,0.440335,0.752872,0.919618,0.663389,0.122129,0.0285934,0.986508,0.0882242,0.490673,0.36167,0.967299,0.180062,0.422645,0.821182,0.87031,0.436583,0.98065,0.188826,0.0958035,0.168347,0.566479,0.42028,0.979975,0.256037,0.345591,0.120622,0.491269,0.722076,0.291426,0.961991,0.054836,0.0324618,0.496055,0.357447,0.138181,0.432835,0.126371,0.399196,0.458946,0.571087,0.354403,0.63755,0.0975319,0.180298,0.00576651,0.566876,0.790979,0.337829,0.190542,0.441801,0.318012,0.47613,0.110379,0.723204,0.108911,0.338785,0.963717,0.789408,0.760471,0.310196,0.290374,0.315238,0.624919,0.715617,0.184,0.91777,0.453295,0.976842,0.828651,0.0454589,0.798237,0.320777,0.737176,0.533631,0.412962,0.151461,0.231525,0.63882,0.143154,0.51279,0.0735793,0.758904,0.648868,0.500234,0.760939,0.496612,0.993669,0.740588,0.886381,0.943762,0.127781,0.556129,0.221213,0.301065,0.981578,0.362307,0.120971,0.423318,0.846943,0.406477,0.362144,0.231858,0.928262,0.525256,0.604018,0.127227,0.138224,0.999962,0.47845,0.206675,0.15777,0.869,0.790177,0.768491,0.302804,0.851533,0.964325,0.623061,0.909999,0.786245,0.647973,0.420523,0.795342,0.947778,0.685296,0.768335,0.0422252,0.682069,0.931313,0.330308,0.852267,0.622382,0.757385,0.872471,0.951682,0.256242,0.154669,0.847487,0.498495,0.585899,0.487745,0.526777,0.854141,0.947298,0.876353,0.861357,0.736717,0.132683,0.0263794,0.549706,0.183929,0.344149,0.327095,0.629241,0.293359,0.802816,0.881055,0.86398,0.281512,0.158868,0.692179,0.467304,0.819285,0.551762,0.435998,0.853847,0.146265,0.452051,0.363811,0.268585,0.281464,0.267678,0.714997,0.040193,0.456558,0.285468,0.493651,0.312665,0.906354,0.407871,0.118265,0.970293,0.812747,0.831934,0.322816,0.297082,0.950917,0.658428,0.499717,0.684681,0.435463,0.949453,0.0690751,0.109927,0.205945,0.991189,0.885532,0.682085,0.483583,0.97676,0.566198,0.804729,0.65087,0.865515,0.411775,0.189577,0.136717,0.179313,0.703258,0.792964,0.399617,0.327542,0.26723,0.720824,0.514755,0.874435,0.91667,0.951434,0.855445,0.400095,0.0323452,0.526988,0.370013,0.94997,0.548411,0.932462,0.717426,0.96175,0.476353,0.926974,0.542071,0.298256,0.21358,0.745676,0.431352,0.510457,0.12574,0.558591,0.495613,0.292631,0.223428,0.169315,0.112335,0.744015,0.373415,0.978919,0.713689,0.50355,0.147766,0.490691,0.319372,0.87166,0.536477,0.771966,0.0210758,0.96914,0.511988,0.866106,0.233491,0.17662,0.682773,0.125036,0.437635,0.713926,0.384553,0.521845,0.502115,0.943388,0.526486,0.094614,0.570445,0.838506,0.15495,0.42895,0.983667,0.171849,0.98062,0.463503,0.171832,0.688029,0.471326,0.564935,0.82289,0.390556,0.490193,0.154465,0.404452,0.738046,0.263854,0.815803,0.576461,0.449077,0.666573,0.0790948,0.769427,0.619979,0.522853,0.523269,0.704813,0.26372,0.757325,|0.385607,0.549246,0.570709,0.204195,0.0713279,0.696101,0.738167,0.344586,0.717776,0.811889,0.573735,0.432301,0.00983071,0.00685757,0.0359114,0.051366,0.962692,0.856803,0.391658,0.0317936,0.0154518,0.58417,0.071689,0.963875,0.751962,0.439984,0.19475,0.968779,0.23034,0.0992115,0.0672964,0.894739,0.152056,0.327961,0.294281,0.303357,0.956082,0.386886,0.859822,0.121713,0.49243,0.582653,0.772677,0.470619,0.897088,0.0382258,0.435141,0.991283,0.0213482,0.749677,0.309337,0.763156,0.642082,0.209121,0.156813,0.841634,0.0901368,0.427035,0.428768,0.903798,0.425557,0.228725,0.485403,0.759246,0.0876313,0.543808,0.923942,0.6463,0.764588,0.536097,0.894673,0.372513,0.162016,0.539108,0.745123,0.998103,0.940138,0.188021,0.5431,0.922401,0.255895,0.907921,0.919479,0.798035,0.621211,0.795987,0.500174,0.448019,0.875116,0.856442,0.440884,0.325361,0.459933,0.436887,0.628982,0.197267,0.0369372,0.230259,0.121875,0.670787,0.816083,0.181973,0.430845,0.714663,0.97978,0.592669,0.758853,0.673141,0.948783,0.60855,0.11863,0.260857,0.0610572,0.212557,0.894327,0.252998,0.515095,0.72361,0.564745,0.287064,0.932516,0.410711,0.133348,0.0710113,0.957359,0.864551,0.483149,0.701722,0.330173,0.429775,0.448657,0.890827,0.561499,0.998739,0.883845,0.47333,0.186867,0.0910122,0.107237,0.633989,0.762188,0.627573,0.183779,0.493998,0.935487,0.0759643,0.547096,0.212558,0.709125,0.335157,0.638904,0.328792,0.662628,0.639405,0.779739,0.557606,0.808851,0.0751938,0.195993,0.216873,0.62026,0.108273,0.226082,0.2695,0.303321,0.770871,0.555025,0.336878,0.356611,0.224417,0.651473,0.296419,0.464495,0.634982,0.764981,0.613238,0.837375,0.135385,0.916192,0.527436,0.0249181,0.873964,0.979199,0.431964,0.654108,0.308533,0.641807,0.452837,0.944626,0.0545639,0.354382,0.577017,0.256916,0.197011,0.294638,0.552344,0.00895709,0.652931,0.42344,0.0453588,0.262006,0.294306,0.0342003,0.466907,0.812394,0.244279,0.280722,0.11745,0.218713,0.464562,0.907738,0.973662,0.910934,0.243742,0.131805,0.702466,0.576059,0.495124,0.270423,0.350831,0.267812,0.427289,0.983096,0.838787,0.256335,0.430066,0.05996,0.407944,0.880572,0.483583,0.457233,0.496191,0.474637,0.206277,0.156393,0.469262,0.173714,0.776538,0.414667,0.693831,0.065351,0.0812343,0.359622,0.832282,0.415117,0.98757,0.311837,0.422468,0.921606,0.189929,0.812874,0.0871272,0.490458,0.602611,0.736908,0.661822,0.981569,0.4497,0.252413,0.344482,0.354922,0.00595897,0.062429,0.954091,0.574356,0.688284,0.673302,0.856863,0.753067,0.733876,0.991518,0.336509,0.603598,0.734737,0.187133,0.73139,0.841947,0.61378,0.491162,0.958108,0.931214,0.0243593,0.791787,0.940473,0.725724,0.217229,0.442835,0.758192,0.293784,0.736613,0.4759,0.564919,0.455339,0.217127,0.212322,0.85206,0.355627,0.945457,0.638074,0.969046,0.772383,0.989905,0.000393569,0.547088,0.251759,0.44768,0.882914,0.695027,0.638545,0.468218,0.479013,0.2136,0.509045,0.739138,0.158451,0.167029,0.295624,0.924142,0.803376,0.856247,0.16816,0.612836,0.473227,0.444292,0.748265,0.407176,0.412299,0.620115,0.0778341,0.170083,0.394471,0.0750692,0.850785,0.0852402,0.533439,0.574003,0.0829731,0.118174,0.240617,0.296863,0.360066,0.184449,0.453476,0.614647,0.153619,0.535128,0.149623,0.419567,0.239155,0.108673,0.68999,0.536973,0.130143,0.862695,0.776814,0.908517,0.688847,0.273051,0.873866,0.916877,0.56881,0.529446,0.977944,0.619485,0.365537,0.265406,0.157888,0.761878,0.778786,0.532899,0.618439,0.904089,0.925184,0.0863,0.404683,0.251921,0.735167,0.0749855,0.0217327,0.339216,0.29967,0.905103,0.0659614,0.830803,0.433829,0.996154,0.51544,0.269036,0.16775,0.911067,0.821898,0.727587,0.697164,0.639185,0.164206,0.791876,0.858898,0.479947,0.879918,0.419766,0.418342,0.232716,0.223442,0.941851,0.0388584,0.134579,0.85985,0.45821,0.50588,0.359234,0.305673,0.697376,0.859013,0.449151,0.105529,0.684499,0.277018,0.127819,0.467967,0.313323,0.773796,0.337388,0.428505,0.193212,0.283163,0.0452627,0.224527,0.730471,0.466807,0.916537,0.807018,0.379272,0.6155,0.235732,0.200015,0.340909,0.277677,0.749413,0.158276,0.80772,0.371948,0.228282,0.586099,0.114062,0.727555,0.377938,0.467433,0.929219,0.15614,0.438408,0.574046,0.812145,0.770132,0.909949,0.768207,0.66051,0.525656,0.772617,0.479089,0.24336,0.692254,0.6151,0.83865,0.892763,0.0747061,0.832389,0.0368955,0.661088,0.279513,0.677182,0.835825,0.369147,0.810755,0.109517,0.470016,0.0151595,0.0577359,0.628751,0.0139138,0.797548,0.0299965,0.21446,0.0205629,0.452886,0.579968,0.596379,0.308413,0.152973,0.977758,0.0928427,0.824221,0.0106094,0.660252,0.251227,0.473281,0.0302772,0.447231,0.853573,0.483546,0.477292,0.410297,0.860892,0.445142,0.847086,0.134411,0.795897,0.137479,0.786061,0.959228,0.0619689,0.13811,0.0350686,0.772699,0.370363,0.963956,0.908012,0.482623,0.144685,0.871573,0.913033,0.320592,0.535321,0.0581409,0.607998,0.0952128,0.116575,0.0899224,0.673244,0.817203,0.482782,0.120677,0.329098,0.570446,0.0808732,0.62367,0.919188,0.800188,0.0105251,0.622419,0.60645,0.415766,0.216872,0.204865,0.968908,0.751593,0.515444,0.195026,0.974622,0.455177,0.973106,0.155492,0.47161,0.507985,0.0452254,0.284398,0.0354789,0.598288,0.899338,0.596896,0.45838,0.4399,0.618347,0.148464,0.748346,0.220757,0.366132,0.37164,0.468167,0.360854,0.961087,0.670118,0.574208,0.49103,0.110757,0.122104,0.889045,0.371476,0.00932628,0.329555,0.635088,0.26295,0.170591,0.908128,0.799571,0.599876,0.25675,0.691639,0.894008,0.305985,0.549573,0.0831307,0.157957,0.667624,0.456404,0.796249,0.499036,0.800377,0.168487,0.318728,0.511064,0.114578,0.799991,0.893574,0.831963,0.354736,0.161746,0.788454,0.254827,0.964577,0.53781,0.517423,0.675066,0.986198,0.904081,0.923094,0.306954,0.330433,0.241867,0.543757,0.215402,0.364184,0.95782,0.614853,0.639731,0.444302,0.640183,0.968484,0.617491,0.703062,0.233947,0.844117,0.448488,0.990363,0.755146,0.896022,0.557691,0.810005,0.931901,0.762256,0.73327,0.968967,0.191601,0.892329,0.140822,0.536307,0.221689,0.40091,0.502574,0.924488,0.909595,0.880928,0.654602,0.991597,0.525543,0.867344,0.749733,0.568199,0.393001,0.474375,0.357942,0.840914,0.803448,0.354668,0.649856,0.746067,0.85821,0.180221,0.785219,0.615425,0.279824,0.657158,0.801037,0.598949,0.471891,0.511561,0.869905,0.791557,0.762621,0.0132151,0.675695,0.682286,0.541001,0.0602392,0.851442,0.298741,0.460499,0.722608,0.895952,0.431239,0.523448,0.651335,0.73843,0.300637,0.287763,0.580039,0.405944,0.080411,0.89973,0.097219,0.661122,0.739311,0.45482,0.142898,0.17289,0.45963,0.834626,0.684427,0.46688,0.391266,0.927298,0.419271,0.401662,0.38674,0.272944,0.157757,0.0704371,0.277415,0.251057,0.984183,0.342847,0.344988,0.975135,0.171389,0.966799,0.877541,0.637234,0.429585,0.765711,0.498718,0.627065,0.209501,0.802914,0.972287,0.318452,0.250877,0.976518,0.390662,0.420853,0.345317,0.21649,0.938825,0.475529,0.288217,0.276212,0.90329,0.111615,0.169767,0.0461797,0.195456,0.533143,0.597079,0.253298,0.366282,0.259898,0.891507,0.323623,0.327389,0.458006,0.658144,0.681766,0.782583,0.561989,0.949424,0.496501,0.777222,0.966493,0.923955,0.981507,0.173786,0.532499,0.415296,0.365061,0.701342,0.955706,0.143465,0.976582,0.410695,0.0469205,0.342947,0.157498,0.49522,0.328853,0.287224,0.79779,0.961835,0.775015,0.548659,0.649058,0.409976,0.317444,0.557957,0.754195,0.735183,0.0268907,0.530644,0.51685,0.694545,0.285157,0.865914,0.34126,0.984976,0.157756,0.508541,0.972834,0.748137,0.94123,0.457797,0.605543,0.628426,0.574663,0.947993,0.451793,0.0263415,0.662658,0.132825,0.928017,0.810317,0.522656,0.636217,0.785258,0.0195552,0.103419,0.195542,0.852175,0.576454,0.178128,0.360714,0.422977,0.415624,0.586903,0.192952,0.410787,0.401776,0.0946078,0.95502,0.964758,0.490836,0.130572,0.276878,0.313926,0.444256,0.399384,0.404859,0.0583656,0.0247178,0.310223,0.671909,0.990459,0.442713,0.17146,0.165636,0.900475,0.479558,0.309551,0.660842,0.17247,0.851918,0.713269,0.936102,0.881957,0.854337,0.363803,0.802897,0.984544,0.744828,0.775943,0.467277,0.761547,0.263559,0.447875,0.912272,0.455232,0.94593,0.936557,0.178927,0.485668,0.58744,0.230786,0.69983,0.294877,0.643753,0.311954,0.249234,0.130439,0.248532,0.856151,0.362743,0.19053,0.945809,0.878032,0.0852398,0.370493,0.358896,0.0577074,0.811552,0.770155,0.947443,0.769222,0.955008,0.221452,0.880847,0.423688,0.787478,0.301799,0.748358,0.647604,0.324646,0.579413,0.424004,0.717338,0.970197,0.0703367,0.876502,0.080177,0.830887,0.452261,0.857064,0.544657,0.511136,0.531855,0.727367,0.15888,0.0196858,0.888546,0.126231,0.619381,0.704464,0.492362,0.258664,0.688381,0.980053,0.709437,0.917812,0.220739,0.466696,0.65876,0.704907,0.923016,0.807511,0.793035,0.46708,0.764204,0.309143,0.0695856,0.436171,0.949821,0.148352,0.708282,0.893812,0.161993,0.664928,0.448007,0.712062,0.186004,0.305143,0.40553,0.209608,0.121414,0.366229,0.730346,0.617847,0.75043,0.839215,0.122215,0.998594,0.559663,0.561581,0.73016,0.963104,0.921,0.0592358,0.527566,0.275717,0.897298,0.286401,0.0171173,0.474489,0.314483,0.818018,0.800391,0.129686,0.919919,0.859675,0.123411,0.886226,0.989069,0.312606,0.71474,0.606252,0.817017,0.333625,0.15962,0.45514,0.283581,0.521118,0.0295916,0.0759428,0.910319,0.0564885,0.351199,|0.0123722,0.886835,0.160963,0.589335,0.0343075,0.974623,0.822895,0.830251,0.932443,0.286565,0.421419,0.74523,0.798739,0.410039,0.337399,0.193435,0.457775,0.358428,0.437077,0.708172,0.640929,0.819094,0.100072,0.469896,0.360694,0.647517,0.24032,0.133363,0.479424,0.231057,0.982105,0.0934529,0.54718,0.981215,0.198327,0.684183,0.996131,0.346135,0.349537,0.82907,0.834048,0.699111,0.893747,0.00667185,0.921435,0.228635,0.195027,0.176329,0.203277,0.182477,0.466422,0.411513,0.0658689,0.842257,0.886746,0.371009,0.869473,0.0362234,0.487249,0.862608,0.628911,0.543064,0.705239,0.973664,0.734998,0.311363,0.772577,0.672611,0.884447,0.853436,0.231476,0.704522,0.237961,0.0662634,0.524889,0.519848,0.6673,0.199688,0.0561532,0.303882,0.931958,0.886842,0.050903,0.406912,0.727763,0.224084,0.215964,0.872848,0.210882,0.204249,0.856397,0.0341172,0.154043,0.214989,0.784963,0.519652,0.433576,0.135278,0.937055,0.249865,0.393377,0.0853801,0.832102,0.117991,0.821288,0.575051,0.602641,0.320768,0.153517,0.357669,0.627958,0.313594,0.0990488,0.0187757,0.160094,0.944539,0.493565,0.20647,0.10841,0.812433,0.333948,0.897557,0.633036,0.905359,0.506583,0.962777,0.898751,0.469617,0.709202,0.594774,0.961471,0.520371,0.299795,0.655176,0.375071,0.684795,0.766686,0.533788,0.188153,0.0849301,0.910399,0.43597,0.55325,0.558694,0.787566,0.692366,0.557898,0.127125,0.579847,0.893464,0.20652,0.728762,0.561091,0.242392,0.282177,0.835557,0.884401,0.376666,0.979803,0.201296,0.173569,0.359784,0.0903469,0.927111,0.32151,0.645363,0.95084,0.0372402,0.603881,0.0861244,0.725914,0.804382,0.453219,0.77687,0.641279,0.660361,0.567087,0.485949,0.861758,0.809288,0.86305,0.865562,0.0526556,0.788932,0.23664,0.820418,0.873214,0.412568,0.453555,0.730831,0.156842,0.287802,0.919002,0.260787,0.389298,0.534331,0.413229,0.0852855,0.312424,0.0262949,0.952171,0.636793,0.986549,0.727784,0.383047,0.986589,0.527566,0.463461,0.89797,0.362213,0.591922,0.954579,0.693968,0.60396,0.476276,0.242331,0.440228,0.61441,0.129898,0.372252,0.498181,0.803839,0.0658907,0.306064,0.364086,0.567837,0.832159,0.940057,0.281567,0.856019,0.262072,0.215288,0.999817,0.785529,0.740938,0.977188,0.739389,0.826213,0.717087,0.0530728,0.417276,0.348908,0.670347,0.244822,0.190999,0.190184,0.64916,0.426387,0.396285,0.836375,0.596504,0.537473,0.656986,0.837909,0.794691,0.92319,0.783324,0.397355,0.770941,0.388898,0.372167,0.0556757,0.125062,0.144815,0.149999,0.171643,0.320404,0.246036,0.832528,0.858061,0.32345,0.97762,0.975826,0.889334,0.885548,0.123202,0.643154,0.318842,0.455096,0.517614,0.694273,0.220813,0.986704,0.275895,0.637399,0.169936,0.39647,0.455996,0.717116,0.959944,0.49878,0.80708,0.57773,0.176414,0.324995,0.215664,0.246924,0.771206,0.147193,0.392233,0.229879,0.927037,0.413988,0.983815,0.00242931,0.241964,0.0650223,0.111477,0.278795,0.977913,0.796107,0.587311,0.975226,0.478197,0.707612,0.711892,0.159817,0.156398,0.0873368,0.361495,0.673262,0.356495,0.025944,0.266413,0.855879,0.670633,0.349673,0.778582,0.810892,0.622986,0.885067,0.850836,0.306499,0.76556,0.703006,0.891535,0.212926,0.786033,0.148628,0.828529,0.964239,0.134189,0.269779,0.539376,0.330445,0.524095,0.476285,0.881947,0.836815,0.228235,0.799661,0.0250233,0.771386,0.677289,0.969604,0.997759,0.127067,0.272239,0.00175095,0.711718,0.987013,0.755611,0.901094,0.0980175,0.342486,0.591471,0.20768,0.361699,0.735966,0.713757,0.291889,0.96478,0.104668,0.191218,0.38617,0.522686,0.418222,0.113575,0.0691015,0.977778,0.386514,0.78577,0.954245,0.0867819,0.0617625,0.899942,0.692499,0.58707,0.131187,0.149202,0.165286,0.281025,0.371482,0.908588,0.565967,0.93234,0.66608,0.9621,0.629301,0.268342,0.302238,0.449499,0.555017,0.697841,0.189427,0.611909,0.925837,0.22068,0.306965,0.364878,0.157264,0.690665,0.447267,0.137032,0.472427,0.7174,0.350217,0.93872,0.838873,0.00218999,0.751897,0.53462,0.926215,0.410212,0.0157824,0.232979,0.28282,0.622928,0.0653664,0.66936,0.69968,0.0833225,0.239713,0.632138,0.583457,0.203092,0.51516,0.190147,0.796974,0.704653,0.775468,0.927113,0.712355,0.233184,0.210337,0.0897722,0.577157,0.664852,0.941521,0.848524,0.615011,0.14021,0.904786,0.877242,0.841383,0.729692,0.859588,0.840311,0.276275,0.636138,0.39384,0.470389,0.9123,0.966827,0.561094,0.518301,0.432845,0.377446,0.216209,0.273753,0.802746,0.704277,0.00607061,0.600891,0.256171,0.803506,0.279069,0.648456,0.753525,0.174492,0.114045,0.411779,0.720661,0.852645,0.60175,0.633281,0.897291,0.528809,0.333224,0.70283,0.633311,0.757754,0.811347,0.961426,0.95832,0.504211,0.871326,0.127444,0.371676,0.0814643,0.595278,0.665964,0.393948,0.866592,0.570703,0.199881,0.253506,0.592169,0.661174,0.366851,0.386219,0.700151,0.0231306,0.997908,0.184981,0.940563,0.239863,0.852923,0.109688,0.454076,0.553488,0.755664,0.00895953,0.0774193,0.447023,0.590021,0.960815,0.742622,0.280059,0.85523,0.418742,0.323408,0.285161,0.894101,0.852867,0.948723,0.17175,0.418207,0.202982,0.566278,0.67671,0.974738,0.486487,0.656107,0.392792,0.0145559,0.407003,0.770297,0.874038,0.215321,0.962866,0.61538,0.485519,0.13364,0.357843,0.175908,0.751084,0.643515,0.631457,0.91277,0.934747,0.755859,0.443675,0.508512,0.749762,0.684063,0.132812,0.699734,0.414038,0.107814,0.860188,0.77719,0.849242,0.541059,0.290555,0.455451,0.638203,0.342517,0.716302,0.532599,0.790595,0.20622,0.782945,0.932353,0.304033,0.675497,0.381386,0.681235,0.909294,0.57535,0.240399,0.410014,0.544903,0.537029,0.653001,0.0523046,0.351808,0.632122,0.911937,0.308736,0.993707,0.107755,0.517828,0.870533,0.433927,0.839726,0.078208,0.962404,0.631973,0.0325356,0.83546,0.453553,0.471416,0.073747,0.915494,0.707024,0.0159296,0.290866,0.71571,0.807636,0.890893,0.881228,0.389201,0.0293915,0.715486,0.868664,0.33191,0.724092,0.926623,0.405167,0.0246904,0.322413,0.176775,0.0909469,0.859561,0.532575,0.966239,0.735005,0.611454,0.13098,0.444737,0.693505,0.719942,0.906563,0.595802,0.502522,0.17693,0.328844,0.461102,0.471682,0.817183,0.680729,0.766506,0.131461,0.70878,0.778137,0.681895,0.872654,0.0567703,0.0949056,0.392277,0.610216,0.512444,0.613551,0.559749,0.551071,0.385111,0.429528,0.197467,0.660627,0.148281,0.0488824,0.754827,0.385021,0.955307,0.794472,0.557094,0.748226,0.74368,0.861874,0.287439,0.842586,0.651554,0.281671,0.746994,0.228507,0.568063,0.758692,0.79473,0.116795,0.353719,0.561676,0.0537323,0.722447,0.80347,0.691064,0.150502,0.172663,0.146736,0.0894274,0.789006,0.438102,0.642157,0.169186,0.774523,0.830981,0.770003,0.624897,0.958678,0.678126,0.452211,0.366856,0.879693,0.275181,0.505686,0.663765,0.68696,0.418459,0.83651,0.203376,0.0599782,0.20284,0.888531,0.737716,0.952009,0.544824,0.59819,0.482021,0.096311,0.836544,0.174967,0.266277,0.122758,0.682261,0.885601,0.453313,0.592258,0.500316,0.508557,0.0411119,0.639175,0.287847,0.366819,0.627528,0.386558,0.785615,0.59922,0.958244,0.544503,0.399194,0.119815,0.508585,0.122979,0.057851,0.162791,0.201022,0.375935,0.454588,0.35589,0.427316,0.690006,0.846989,0.591274,0.508279,0.0209358,0.579202,0.0689834,0.469959,0.645263,0.661165,0.787735,0.579648,0.753227,0.916527,0.398851,0.219637,0.304844,0.880663,0.409472,0.00338072,0.266137,0.36425,0.98499,0.6432,0.170544,0.493639,0.98761,0.597403,0.183431,0.281034,0.919608,0.227326,0.228013,0.283691,0.133422,0.385903,0.137538,0.0665004,0.952295,0.994282,0.881998,0.144383,0.28663,0.250848,0.535887,0.89592,0.588953,0.223206,0.153276,0.0576813,0.346076,0.784976,0.807036,0.0265756,0.0698251,0.086899,0.361059,0.637837,0.0540364,0.467861,0.680923,0.814505,0.832706,0.340071,0.616194,0.153263,0.860883,0.466967,0.789059,0.793793,0.300104,0.674385,0.597514,0.0212848,0.858968,0.788057,0.428388,0.530869,0.266924,0.821941,0.335198,0.0417905,0.979053,0.527581,0.186029,0.283911,0.251241,0.747178,0.617294,0.314325,0.716579,0.606479,0.136853,0.360588,0.707025,0.872006,0.86697,0.0569571,0.0648911,0.156736,0.962622,0.314393,0.0275652,0.116228,0.625825,0.495055,0.798393,0.314933,0.0508472,0.464371,0.931227,0.460096,0.67658,0.713674,0.871777,0.0880212,0.280051,0.955726,0.929443,0.949833,0.148778,0.928352,0.562301,0.683513,0.989983,0.750301,0.59394,0.515609,0.579015,0.923114,0.165131,0.928247,0.623255,0.0589409,0.204435,0.278477,0.141605,0.842174,0.227461,0.788163,0.0790412,0.956119,0.435288,0.0391204,0.968173,0.770095,0.832227,0.404063,0.955955,0.829022,0.615233,0.910839,0.744115,0.405857,0.929603,0.995324,0.39309,0.640643,0.339123,0.731656,0.869292,0.141273,0.836638,0.311365,0.339403,0.67808,0.345201,0.843889,0.652414,0.954103,0.840776,0.225055,0.234487,0.0416105,0.596584,0.409925,0.815964,0.263764,0.292461,0.26048,0.469821,0.173805,0.936777,0.994683,0.032034,0.793601,0.39142,0.414886,0.112013,0.757043,0.117253,0.286437,0.27296,0.451876,0.817875,0.535373,0.692696,0.26341,0.0336084,0.28202,0.106753,0.916141,0.594123,0.436186,0.865316,0.998274,0.919093,0.654494,0.0488009,0.848037,0.486024,0.520382,0.686536,0.407036,0.504303,0.782301,0.626689,0.313046,0.0605676,0.874876,0.330707,0.973979,0.739344,0.172462,0.377506,0.799955,0.529573,0.697454,0.739273,0.245247,0.0093348,0.635015,0.736382,0.0127955,0.250958,0.332476,0.515091,0.273657,0.760503,0.402057,|0.38891,0.472654,0.998854,0.0466498,0.608084,0.000516236,0.381944,0.504553,0.505334,0.653757,0.119393,0.194575,0.228872,0.609771,0.576677,0.272228,0.865578,0.144635,0.418408,0.481867,0.376525,0.127103,0.982514,0.0262021,0.699077,0.765408,0.994705,0.719132,0.831654,0.923171,0.824573,0.00606686,0.919847,0.786817,0.97423,0.902427,0.0641245,0.945414,0.253896,0.3047,0.809999,0.939527,0.239437,0.253519,0.131799,0.401666,0.884276,0.511282,0.464663,0.449034,0.0190121,0.0827433,0.943457,0.0422079,0.0719641,0.757842,0.427559,0.259994,0.518733,0.674297,0.0244306,0.951701,0.225337,0.759122,0.700532,0.0993397,0.923024,0.765993,0.0652992,0.674973,0.221347,0.730173,0.106973,0.0646125,0.511216,0.335452,0.835824,0.679532,0.707417,0.86995,0.855124,0.0626405,0.0677585,0.25045,0.274824,0.835425,0.518372,0.599801,0.85031,0.743789,0.845419,0.4601,0.583502,0.670063,0.184948,0.710943,0.883651,0.665311,0.0113557,0.527207,0.198165,0.549422,0.335508,0.555078,0.195142,0.163804,0.684462,0.563257,0.806064,0.00164998,0.960508,0.0584904,0.21491,0.397772,0.11923,0.55878,0.447471,0.304734,0.689248,0.45327,0.44152,0.594793,0.0649939,0.00606745,0.619242,0.655323,0.655078,0.835114,0.517763,0.717364,0.313197,0.306849,0.0812132,0.458233,0.2672,0.437412,0.345047,0.410876,0.138215,0.515838,0.843461,0.659462,0.148338,0.889934,0.285756,0.790474,0.445756,0.917103,0.16404,0.228927,0.0436008,0.135823,0.616398,0.909702,0.613263,0.741462,0.354975,0.211311,0.102283,0.0161589,0.0209767,0.370105,0.206804,0.0556855,0.92772,0.62697,0.641635,0.559639,0.718396,0.195411,0.72742,0.604811,0.0858743,0.176546,0.581064,0.674327,0.248817,0.886366,0.608639,0.0899977,0.769488,0.244832,0.477788,0.186634,0.510262,0.132052,0.0752481,0.667962,0.332526,0.991911,0.565188,0.851548,0.274775,0.604171,0.857868,0.167736,0.477442,0.792335,0.879604,0.0501377,0.882939,0.618954,0.254828,0.222396,0.080541,0.0407501,0.80169,0.66135,0.799073,0.0641034,0.340206,0.94,0.630511,0.806846,0.303405,0.936779,0.499085,0.663594,0.995724,0.406301,0.0257047,0.273401,0.209853,0.792164,0.794791,0.927744,0.973717,0.13486,0.468686,0.084154,0.823591,0.335173,0.868892,0.0880252,0.859029,0.166295,0.0578176,0.0958484,0.324442,0.753275,0.209237,0.877601,0.189629,0.488618,0.294624,0.700323,0.0698942,0.744113,0.0568376,0.308127,0.812274,0.392259,0.7213,0.490313,0.379329,0.0722312,0.910179,0.204504,0.239662,0.0649294,0.579781,0.0414861,0.813919,0.899196,0.280528,0.734473,0.889216,0.257304,0.718016,0.149134,0.734289,0.102153,0.360815,0.258863,0.891037,0.682088,0.118566,0.993609,0.78819,0.628589,0.840317,0.764491,0.0838797,0.499913,0.21871,0.808992,0.603864,0.709776,0.169742,0.569822,0.661885,0.530215,0.641934,0.131033,0.295412,0.20179,0.43144,0.439349,0.626046,0.82505,0.0280777,0.995434,0.194908,0.367738,0.740966,0.671537,0.869573,0.343771,0.604596,0.159481,0.324286,0.758918,0.514325,0.0899168,0.609575,0.936646,0.375593,0.249817,0.399575,0.378593,0.534942,0.675192,0.179213,0.922834,0.3326,0.699163,0.319388,0.705499,0.449494,0.124856,0.738769,0.17154,0.522518,0.514248,0.430059,0.302401,0.622054,0.576079,0.591327,0.0929322,0.336396,0.411761,0.406646,0.509428,0.33587,0.357225,0.342546,0.955022,0.695361,0.717309,0.762552,0.404532,0.56654,0.129473,0.412397,0.423925,0.228786,0.519313,0.690199,0.430961,0.464687,0.926461,0.648997,0.178544,0.27755,0.87149,0.756926,0.934656,0.314566,0.981469,0.900377,0.125854,0.0110538,0.546868,0.278713,0.81666,0.986186,0.5336,0.377867,0.938757,0.73503,0.266299,0.0744373,0.16571,0.53208,0.0798416,0.337917,0.884322,0.943166,0.929727,0.68502,0.864962,0.814226,0.587965,0.818258,0.98845,0.719994,0.536235,0.567612,0.413678,0.572094,0.340973,0.100548,0.513518,0.48502,0.475937,0.312596,0.745826,0.0805766,0.180972,0.207766,0.204142,0.986578,0.319291,0.693977,0.0173472,0.0596585,0.395024,0.214264,0.35174,0.192949,0.112358,0.00326383,0.445459,0.648458,0.689207,0.786395,0.629239,0.24614,0.524344,0.654826,0.143694,0.980634,0.0840474,0.548082,0.700433,0.679997,0.11931,0.352671,0.97369,0.0515938,0.960568,0.0550394,0.240919,0.234357,0.952386,0.338657,0.354919,0.409475,0.571461,0.408287,0.788911,0.385152,0.863861,0.00693387,0.44804,0.456514,0.843805,0.189479,0.041005,0.653208,0.712896,0.12581,0.882065,0.533461,0.366865,0.948502,0.95819,0.652599,0.000826061,0.853125,0.535997,0.452366,0.385896,0.823367,0.54783,0.85539,0.308325,0.857369,0.173034,0.371341,0.788033,0.461724,0.601869,0.250265,0.796797,0.551136,0.420753,0.917673,0.280217,0.974913,0.660722,0.153014,0.725531,0.240808,0.503533,0.275539,0.869314,0.478891,0.550125,0.529323,0.0141144,0.332855,0.416113,0.508976,0.743729,0.736597,0.834795,0.290867,0.614145,0.784273,0.761461,0.860483,0.173625,0.30838,0.906814,0.857981,0.909422,0.0499786,0.761472,0.548649,0.175851,0.448683,0.306779,0.384178,0.267665,0.0948602,0.261931,0.882866,0.961008,0.716877,0.966942,0.0141377,0.401879,0.667151,0.458503,0.888293,0.0787316,0.855587,0.316327,0.353216,0.731148,0.530989,0.845991,0.81065,0.320191,0.196975,0.916694,0.304893,0.419605,0.373336,0.488565,0.807241,0.134765,0.884932,0.202433,0.0770373,0.919295,0.268406,0.131704,0.441735,0.528345,0.257189,0.477307,0.252528,0.0896956,0.178329,0.882909,0.412608,0.399188,0.717096,0.849703,0.062167,0.620095,0.915907,0.677725,0.264054,0.680379,0.292602,0.56406,0.174854,0.993519,0.218852,0.881017,0.317055,0.262954,0.601571,0.768905,0.636347,0.0734943,0.672805,0.883772,0.141217,0.27453,0.619713,0.557193,0.499866,0.848166,0.222541,0.678816,0.405477,0.172096,0.175461,0.517929,0.611027,0.514884,0.0721893,0.9767,0.261422,0.400393,0.318139,0.551809,0.350145,0.0710747,0.46085,0.955043,0.153459,0.284921,0.210382,0.766888,0.653753,0.350658,0.113321,0.198578,0.0161105,0.481258,0.766801,0.217805,0.562432,0.888852,0.827744,0.510678,0.931374,0.375988,0.0075646,0.411379,0.480851,0.472426,0.327062,0.384907,0.937461,0.397695,0.0193646,0.422374,0.923779,0.560706,0.337593,0.653104,0.128209,0.294658,0.941496,0.00776303,0.165513,0.268441,0.000290811,0.154096,0.00010705,0.700589,0.766312,0.698618,0.0763372,0.412596,0.966427,0.316531,0.0459809,0.16891,0.493335,0.374846,0.469141,0.227776,0.618942,0.375606,0.259142,0.149138,0.880063,0.431631,0.769863,0.584131,0.135418,0.941578,0.242942,0.0486645,0.815711,0.190628,0.640372,0.811487,0.589189,0.0487887,0.488888,0.500166,0.119836,0.547103,0.371828,0.6846,0.97618,0.673774,0.707241,0.250286,0.89735,0.425213,0.512042,0.130138,0.252703,0.101326,0.123661,0.992706,0.17568,0.601156,0.415049,0.693418,0.345066,0.963755,0.342242,0.518444,0.989293,0.676257,0.59418,0.528788,0.781023,0.83643,0.0141832,0.0111414,0.452813,0.971249,0.786846,0.84373,0.895117,0.515138,0.439465,0.900341,0.803807,0.113571,0.496681,0.254556,0.870921,0.966382,0.839218,0.350569,0.165181,0.266677,0.854233,0.527058,0.772177,0.414625,0.0644835,0.233762,0.190232,0.466935,0.712636,0.322646,0.635953,0.914647,0.480749,0.828347,0.938077,0.395372,0.463927,0.377834,0.619248,0.731246,0.121782,0.997726,0.670132,0.976767,0.527715,0.180764,0.0696872,0.119047,0.325973,0.526631,0.148227,0.229947,0.437844,0.948559,0.140606,0.135023,0.138222,0.359334,0.102486,0.766849,0.989801,0.839776,0.417882,0.779132,0.234057,0.619547,0.434247,0.755983,0.942986,0.101128,0.959998,0.200368,0.626652,0.196033,0.0308809,0.561843,0.114728,0.016658,0.00356317,0.280836,0.55301,0.340312,0.287799,0.304159,0.0601804,0.314705,0.340404,0.211005,0.263303,0.122142,0.0800446,0.409225,0.170275,0.631763,0.441557,0.52767,0.379413,0.00263864,0.308561,0.806705,0.253524,0.506557,0.524648,0.172117,0.513067,0.627874,0.834695,0.127162,0.383626,0.201537,0.914004,0.866322,0.553285,0.784635,0.46257,0.328913,0.0400841,0.408568,0.91029,0.998081,0.0822496,0.111458,0.58153,0.474646,0.0587227,0.95002,0.00505167,0.549256,0.821165,0.934446,0.379522,0.745171,0.171666,0.366014,0.0887969,0.601602,0.788725,0.106524,0.777282,0.876112,0.268331,0.423671,0.207922,0.762203,0.203397,0.765701,0.660301,0.852989,0.948222,0.488191,0.298111,0.694373,0.245531,0.324754,0.944376,0.970698,0.974088,0.818208,0.121459,0.233839,0.986197,0.871781,0.937801,0.0169441,0.375319,0.738862,0.0895824,0.821687,0.202319,0.275102,0.520929,0.149635,0.313507,0.311093,0.373483,0.756989,0.84872,0.279621,0.798887,0.211716,0.508246,0.531256,0.909115,0.29841,0.286036,0.116693,0.578512,0.684342,0.0457197,0.128108,0.982944,0.776726,0.44891,0.0465301,0.496042,0.984799,0.0620438,0.0604567,0.497517,0.832537,0.683603,0.322459,0.1192,0.14397,0.232918,0.983968,0.643322,0.547564,0.239511,0.395719,0.0624709,0.345924,0.216312,0.908766,0.783936,0.988821,0.762828,0.275502,0.819106,0.414489,0.138783,0.51591,0.557025,0.412926,0.6177,0.0984222,0.759374,0.509021,0.767544,0.739549,0.634122,0.416862,0.632367,0.909937,0.623739,0.649994,0.470055,0.320045,0.734948,0.979619,0.231879,0.0516449,0.55952,0.55191,0.255848,0.941973,0.971262,0.621213,0.460919,0.468512,0.262395,0.833121,0.418883,0.79571,0.448416,0.49212,0.542303,0.244377,0.0860568,0.646375,0.441678,0.75463,0.64286,0.494829,0.291408,0.557621,0.696956,0.189117,0.851047,0.190837,0.337229,0.0699952,0.851972,0.92015,0.195559,0.260732,0.407278,0.932487,0.210426,0.901773,|0.619738,0.881159,0.0485694,0.249867,0.691372,0.589811,0.368255,0.165482,0.861344,0.902423,0.216039,0.367953,0.572068,0.789047,0.55024,0.738786,0.768997,0.667554,0.200485,0.880765,0.896823,0.849715,0.185578,0.482533,0.787712,0.0831642,0.452521,0.9011,0.661198,0.133708,0.665745,0.99264,0.44721,0.892652,0.751162,0.902962,0.839909,0.441629,0.371956,0.594178,0.644806,0.929348,0.586269,0.866461,0.567239,0.222725,0.362138,0.941784,0.112999,0.707963,0.903604,0.529104,0.0983776,0.661277,0.571037,0.0269041,0.697711,0.997255,0.603341,0.439278,0.476048,0.0526825,0.0113401,0.885405,0.949329,0.145342,0.0966861,0.672529,0.521977,0.587294,0.367501,0.0247764,0.184539,0.855647,0.864321,0.426096,0.995352,0.932399,0.246585,0.677213,0.450348,0.107246,0.311269,0.319608,0.14743,0.643439,0.994357,0.751161,0.260361,0.766027,0.450173,0.146796,0.0745359,0.406399,0.84902,0.953044,0.281897,0.253365,0.994047,0.549074,0.754513,0.418646,0.395734,0.0558746,0.766354,0.80957,0.00827968,0.660651,0.765817,0.717929,0.896235,0.500518,0.630465,0.193084,0.130223,0.502469,0.642501,0.172214,0.475196,0.889949,0.948491,0.0243977,0.835189,0.894226,0.195739,0.954028,0.42741,0.336868,0.619018,0.879598,0.6487,0.560603,0.0610305,0.877924,0.565043,0.785819,0.344617,0.597117,0.720972,0.136208,0.417003,0.956989,0.233038,0.561033,0.414507,0.825971,0.498725,0.0394803,0.842259,0.830744,0.720002,0.791886,0.324284,0.958548,0.202093,0.190536,0.00462317,0.0217369,0.969338,0.411938,0.122573,0.990844,0.83836,0.71438,0.115327,0.45038,0.521346,0.480747,0.973372,0.399647,0.579187,0.0475931,0.804739,0.500954,0.964958,0.993617,0.108652,0.977213,0.804291,0.288964,0.488286,0.407076,0.14921,0.344668,0.684744,0.876516,0.915412,0.162497,0.20127,0.311061,0.356678,0.681489,0.468715,0.551251,0.469453,0.574748,0.856797,0.403587,0.363278,0.165107,0.797072,0.79627,0.480635,0.626734,0.415145,0.82357,0.174417,0.67387,0.918606,0.51915,0.872098,0.421944,0.583178,0.683028,0.0571279,0.119979,0.248575,0.0229101,0.922725,0.353194,0.867131,0.223016,0.94013,0.208735,0.644523,0.322706,0.78572,0.356541,0.494149,0.624339,0.941828,0.0233488,0.174903,0.776159,0.0940264,0.22325,0.120319,0.38337,0.724562,0.688482,0.0896732,0.672515,0.812896,0.480319,0.631084,0.872022,0.404422,0.858417,0.172784,0.279937,0.0245767,0.860333,0.163407,0.222441,0.16529,0.788114,0.428823,0.969104,0.190348,0.249189,0.0602055,0.555201,0.34661,0.152818,0.995147,0.542556,0.357672,0.0314931,0.674825,0.254812,0.85285,0.607757,0.727766,0.8611,0.408082,0.55283,0.548592,0.620712,0.894793,0.394872,0.857561,0.494453,0.455974,0.349372,0.979076,0.579176,0.794116,0.635135,0.39268,0.297356,0.0852852,0.948412,0.79013,0.674864,0.131406,0.725883,0.896255,0.739078,0.275556,0.229681,0.585232,0.670188,0.284734,0.155889,0.0558402,0.631982,0.47959,0.657034,0.631997,0.532139,0.154745,0.312686,0.675627,0.819816,0.0271145,0.391715,0.0219366,0.0886204,0.300998,0.875889,0.992833,0.957162,0.624729,0.0831012,0.737101,0.5941,0.0579633,0.443285,0.464521,0.485256,0.0500283,0.251483,0.593299,0.955773,0.767853,0.366171,0.805767,0.623674,0.0983045,0.501112,0.879003,0.275236,0.967156,0.886615,0.894916,0.662463,0.667373,0.654459,0.753679,0.169963,0.191251,0.91146,0.537798,0.909737,0.183231,0.190702,0.127998,0.257477,0.0504626,0.823722,0.188415,0.624788,0.636883,0.972242,0.00946981,0.63137,0.149023,0.922665,0.14786,0.903866,0.575898,0.797708,0.550923,0.947735,0.0502597,0.971807,0.236966,0.953991,0.413596,0.435693,0.472361,0.498582,0.887503,0.404461,0.901435,0.13969,0.954437,0.603197,0.307695,0.317168,0.369253,0.693684,0.418929,0.360894,0.0221255,0.959182,0.937838,0.680926,0.86766,0.261013,0.727235,0.226699,0.664378,0.899461,0.668111,0.357198,0.67291,0.121224,0.00503767,0.909741,0.0783144,0.509958,0.563769,0.406373,0.287851,0.83837,0.341653,0.592009,0.883597,0.74921,0.882659,0.7924,0.417881,0.816214,0.548591,0.496565,0.908591,0.414298,0.325784,0.902891,0.874606,0.960775,0.437384,0.48533,0.149713,0.413088,0.547737,0.648176,0.166367,0.110722,0.979629,0.703862,0.30909,0.760222,0.880034,0.222602,0.586642,0.115651,0.586111,0.887622,0.416512,0.283647,0.25516,0.402363,0.422985,0.293847,0.897786,0.310886,0.837694,0.842323,0.572962,0.0634624,0.757041,0.912877,0.316716,0.298386,0.390687,0.760584,0.825762,0.244555,0.943338,0.34257,0.757445,0.687811,0.47416,0.21277,0.120858,0.523513,0.496737,0.553632,0.54563,0.187427,0.391265,0.592395,0.88734,0.78849,0.352611,0.688231,0.432332,0.857684,0.33301,0.292691,0.718619,0.147382,0.60334,0.416846,0.589302,0.690564,0.216152,0.44194,0.391973,0.114918,0.310621,0.0123187,0.638186,0.0312878,0.0642123,0.905797,0.00781447,0.224873,0.738289,0.550766,0.3704,0.496321,0.464701,0.328262,0.563064,0.932567,0.321856,0.0919966,0.104806,0.750295,0.543573,0.329422,0.0534823,0.0603269,0.0135302,0.234407,0.457203,0.142885,0.0345402,0.165422,0.623467,0.930142,0.523393,0.562859,0.305691,0.809276,0.531052,0.014653,0.916337,0.995677,0.498202,0.52371,0.246391,0.210427,0.647484,0.685236,0.149895,0.478,0.493707,0.0630462,0.59152,0.654706,0.0368586,0.801982,0.548734,0.200775,0.0350482,0.063232,0.682219,0.482684,0.137878,0.937582,0.211656,0.869829,0.22161,0.233072,0.594548,0.563524,0.472866,0.609196,0.0647494,0.583798,0.383574,0.443063,0.555859,0.487376,0.486781,0.956271,0.973624,0.354512,0.626583,0.00564009,0.960728,0.439475,0.945776,0.301652,0.412963,0.724323,0.07127,0.317213,0.350421,0.474033,0.711309,0.151004,0.417326,0.195402,0.856377,0.14651,0.860187,0.532494,0.492603,0.0519851,0.244685,0.227307,0.621278,0.745165,0.264228,0.201812,0.264845,0.530068,0.471841,0.942267,0.211626,0.677459,0.805836,0.139387,0.862058,0.63496,0.0119516,0.837735,0.570561,0.653548,0.332933,0.775538,0.45893,0.0676831,0.399212,0.0681392,0.131044,0.39651,0.436185,0.120596,0.205896,0.428321,0.112723,0.28102,0.812826,0.408519,0.899811,0.639971,0.759548,0.956713,0.793971,0.549328,0.773261,0.746128,0.548421,0.91248,0.597129,0.685385,0.901618,0.345886,0.465275,0.998079,0.411178,0.414768,0.728695,0.123948,0.318151,0.79268,0.948741,0.587315,0.221584,0.560527,0.853025,0.404514,0.529938,0.352467,0.589207,0.916017,0.260804,0.265421,0.788083,0.54416,0.733273,0.329959,0.501701,0.289616,0.823074,0.831253,0.159947,0.548105,0.374389,0.582738,0.265087,0.0702399,0.624768,0.295348,0.789524,0.279805,0.56817,0.989191,0.348056,0.489625,0.0611107,0.782453,0.613345,0.647325,0.873824,0.922707,0.682207,0.225373,0.124,0.34174,0.535612,0.987588,0.102981,0.939072,0.448137,0.245672,0.507855,0.498132,0.402562,0.742281,0.568034,0.196403,0.571109,0.915294,0.568601,0.136883,0.858634,0.324284,0.297527,0.128008,0.0200366,0.413551,0.676782,0.155056,0.819508,0.00901222,0.708031,0.347094,0.391965,0.278026,0.994525,0.349857,0.0894548,0.958392,0.909742,0.298955,0.030265,0.61328,0.70984,0.857934,0.278964,0.186421,0.125755,0.0332139,0.746895,0.920684,0.0689353,0.514713,0.76687,0.124242,0.45964,0.556327,0.858809,0.510367,0.82787,0.401295,0.206955,0.00518405,0.240598,0.58573,0.441121,0.240304,0.189921,0.168241,0.707953,0.514242,0.434099,0.920247,0.613893,0.12718,0.664368,0.63693,0.319402,0.529579,0.461272,0.980868,0.606024,0.0394852,0.668804,0.0606952,0.825329,0.859448,0.897078,0.120094,0.9697,0.0325098,0.21857,0.865914,0.59846,0.880134,0.568523,0.40737,0.93313,0.566428,0.0553871,0.643828,0.0114347,0.616684,0.565606,0.374556,0.37254,0.306777,0.896673,0.265422,0.60931,0.995651,0.22873,0.467907,0.303006,0.145738,0.513595,0.251512,0.476344,0.394501,0.85975,0.052808,0.560943,0.133323,0.520331,0.0768745,0.715899,0.91223,0.15706,0.516041,0.823228,0.0397434,0.35582,0.629785,0.11892,0.0341587,0.203341,0.229596,0.257901,0.692315,0.423244,0.261705,0.491733,0.57242,0.828827,0.991967,0.563617,0.0660843,0.875464,0.319101,0.110824,0.48282,0.937295,0.674199,0.688428,0.333156,0.0376322,0.946849,0.01522,0.6053,0.609252,0.0800823,0.785584,0.546549,0.812928,0.398377,0.356114,0.479022,0.631491,0.168277,0.181337,0.920853,0.171029,0.803606,0.862527,0.0366566,0.799332,0.895956,0.597194,0.0610572,0.193609,0.758051,0.454876,0.565736,0.876143,0.980873,0.34076,0.823961,0.390207,0.227769,0.150651,0.229492,0.410502,0.118239,0.649805,0.0904314,0.776643,0.525282,0.862308,0.387392,0.866452,0.379842,0.981668,0.385828,0.29656,0.925997,0.326324,0.799381,0.348889,0.857075,0.675683,0.579675,0.355418,0.682015,0.968818,0.120547,0.0724587,0.693087,0.817302,0.967315,0.421116,0.224826,0.069473,0.722916,0.659853,0.596718,0.802158,0.562926,0.544666,0.208593,0.92446,0.408648,0.110659,0.377603,0.389944,0.764872,0.434554,0.540637,0.0674061,0.762804,0.348903,0.776837,0.890005,0.399308,0.40098,0.719668,0.369943,0.497067,0.0481663,0.641098,0.226045,0.18202,0.53054,0.671478,0.796301,0.215064,0.594534,0.77373,0.120563,0.802867,0.469758,0.954579,0.616688,0.653836,0.0374289,0.666913,0.971179,0.776462,0.469949,0.598082,0.127157,0.875121,0.378556,0.422477,0.34065,0.298724,0.602653,0.567903,0.159519,0.314389,0.18997,0.387643,0.913706,0.765817,0.825798,0.822486,0.977506,0.316136,0.285719,0.268525,0.988524,0.197682,0.284096,0.401886,0.363977,0.295025,0.658398,0.534395,0.165621,0.940502,|0.363384,0.944624,0.563137,0.935938,0.328746,0.635168,0.853857,0.319879,0.432008,0.77947,0.732958,0.69848,0.409199,0.963194,0.786575,0.931211,0.0767225,0.181883,0.769915,0.374782,0.734666,0.258603,0.935101,0.316588,0.790277,0.992961,0.896987,0.0569091,0.0613348,0.658864,0.985256,0.148881,0.366025,0.770562,0.508821,0.947679,0.208073,0.342878,0.891052,0.250083,0.460115,0.868553,0.84941,0.205728,0.900674,0.126461,0.0101333,0.075613,0.138304,0.575646,0.292399,0.744452,0.510425,0.92609,0.914907,0.322966,0.447436,0.0675164,0.272042,0.547015,0.682886,0.49856,0.658134,0.540102,0.345045,0.464752,0.133908,0.777316,0.845906,0.0578125,0.615312,0.754424,0.341035,0.189334,0.431182,0.625524,0.921457,0.196929,0.413625,0.435991,0.500978,0.0331364,0.719233,0.443826,0.69298,0.958694,0.103877,0.124952,0.141529,0.63106,0.435367,0.0274016,0.13252,0.565781,0.403172,0.819343,0.912229,0.70872,0.287549,0.874602,0.44033,0.0222754,0.634339,0.499242,0.0174412,0.839295,0.319938,0.604669,0.619861,0.585427,0.329027,0.371684,0.936608,0.706722,0.0556,0.134966,0.610036,0.857881,0.815376,0.262535,0.301682,0.815708,0.305276,0.248534,0.3987,0.857668,0.980444,0.186426,0.632727,0.589151,0.31489,0.781357,0.569708,0.933386,0.324492,0.907817,0.462533,0.325353,0.794886,0.124947,0.799274,0.318751,0.194434,0.735194,0.306169,0.421389,0.912545,0.0745208,0.308397,0.67524,0.956723,0.936786,0.236336,0.783212,0.22824,0.923356,0.255305,0.864061,0.324101,0.781307,0.827257,0.3523,0.805031,0.770551,0.129739,0.433878,0.0594738,0.715301,0.49142,0.655186,0.141821,0.394212,0.245235,0.783974,0.773044,0.0200949,0.247528,0.865241,0.104096,0.713057,0.962788,0.434927,0.956187,0.679451,0.100336,0.311636,0.903486,0.506748,0.610613,0.612404,0.888528,0.188966,0.935899,0.844573,0.564634,0.138369,0.782519,0.0357835,0.671806,0.0117068,0.689728,0.498983,0.33035,0.733354,0.657261,0.552163,0.0213929,0.235085,0.576847,0.730864,0.161171,0.709405,0.113041,0.256487,0.750077,0.0755841,0.623928,0.587339,0.464969,0.28668,0.423426,0.0677298,0.21916,0.727231,0.0251321,0.934229,0.315198,0.163605,0.943256,0.474158,0.138323,0.976572,0.812318,0.753368,0.283715,0.463628,0.27869,0.36256,0.3607,0.0574776,0.424359,0.280686,0.0954771,0.296047,0.876817,0.00891745,0.186011,0.304031,0.483201,0.311298,0.351771,0.0183493,0.374281,0.797593,0.988553,0.906321,0.938858,0.458999,0.440142,0.472262,0.936027,0.144714,0.919526,0.868113,0.725144,0.830472,0.780812,0.919502,0.270695,0.909695,0.705245,0.0384465,0.835639,0.464577,0.408734,0.0256674,0.561474,0.0645022,0.494927,0.000163913,0.310775,0.368381,0.105475,0.453329,0.69163,0.673984,0.982002,0.142357,0.392284,0.387128,0.842928,0.953964,0.885742,0.910456,0.514436,0.885532,0.714435,0.727509,0.956123,0.347701,0.213135,0.754943,0.0316702,0.0746903,0.972348,0.934299,0.305018,0.448417,0.756355,0.904685,0.475888,0.0118053,0.786513,0.120093,0.953596,0.908126,0.759632,0.725218,0.6889,0.941819,0.568156,0.40303,0.583452,0.0690934,0.954692,0.447665,0.772098,0.473974,0.722244,0.0707995,0.833207,0.111069,0.948398,0.917107,0.318705,0.055166,0.910745,0.3619,0.729366,0.216821,0.970112,0.639577,0.606511,0.463801,0.963322,0.410694,0.306278,0.369898,0.126178,0.0143614,0.255578,0.95275,0.171561,0.382308,0.265177,0.696573,0.720339,0.873047,0.746088,0.249364,0.168087,0.190124,0.696482,0.841853,0.500606,0.498226,0.467883,0.117738,0.938077,0.91348,0.620576,0.488637,0.576349,0.0844595,0.862837,0.720449,0.993266,0.962761,0.062393,0.0836005,0.818109,0.155937,0.651127,0.85483,0.932559,0.847574,0.568595,0.419737,0.927077,0.0664363,0.537502,0.368666,0.759266,0.0164154,0.0106054,0.956742,0.341577,0.0948003,0.83675,0.732715,0.811708,0.252315,0.91372,0.359133,0.654252,0.400176,0.240658,0.283565,0.730027,0.0170264,0.378401,0.019986,0.499679,0.860773,0.470034,0.566361,0.460883,0.73241,0.747511,0.126105,0.3899,0.0331168,0.067146,0.899234,0.207192,0.579995,0.317917,0.964805,0.388861,0.968782,0.790632,0.774486,0.639941,0.442815,0.413715,0.931288,0.269025,0.917373,0.905557,0.391406,0.295586,0.447081,0.799691,0.0722479,0.200423,0.125762,0.763007,0.305659,0.0757635,0.694884,0.0985228,0.197094,0.133918,0.300195,0.759065,0.582729,0.675267,0.0489748,0.571108,0.772818,0.0549016,0.212356,0.619877,0.866534,0.769038,0.311835,0.531451,0.354651,0.273103,0.965954,0.0269669,0.849964,0.832315,0.896809,0.335386,0.463503,0.781018,0.742088,0.155526,0.315073,0.394102,0.762654,0.378564,0.957423,0.496472,0.0308908,0.942386,0.662907,0.884354,0.519543,0.73797,0.995727,0.0490003,0.792678,0.393345,0.668475,0.483266,0.825031,0.490547,0.635989,0.110587,0.868206,0.228539,0.543806,0.479358,0.74591,0.56284,0.131103,0.957575,0.586996,0.177886,0.111005,0.824091,0.223904,0.882239,0.403438,0.386225,0.259352,0.177502,0.175289,0.124382,0.160191,0.810184,0.813776,0.347528,0.697596,0.997777,0.62927,0.369481,0.819348,0.864201,0.226411,0.447511,0.0315467,0.776782,0.857322,0.319099,0.975837,0.292955,0.134133,0.403788,0.383099,0.0335501,0.475929,0.900561,0.240624,0.922771,0.329615,0.73677,0.885418,0.974298,0.187519,0.105979,0.103719,0.0724465,0.72325,0.382218,0.774383,0.561808,0.892589,0.950549,0.158473,0.340883,0.192446,0.151733,0.0907454,0.0379287,0.528557,0.178263,0.17932,0.844108,0.10163,0.810675,0.353514,0.422206,0.570698,0.823802,0.0232068,0.0892146,0.38742,0.651336,0.86434,0.849831,0.151499,0.610897,0.117386,0.657939,0.475316,0.150485,0.389945,0.493982,0.459112,0.654925,0.359215,0.788889,0.474309,0.613631,0.819001,0.226601,0.984534,0.441918,0.174251,0.0341584,0.944314,0.276304,0.707404,0.849601,0.514524,0.310384,0.599197,0.070663,0.17349,0.246077,0.510139,0.834178,0.817771,0.585367,0.82537,0.606823,0.79535,0.994039,0.458219,0.371688,0.841798,0.98284,0.707002,0.758435,0.443285,0.996679,0.473049,0.856422,0.623458,0.504141,0.719225,0.275886,0.557847,0.089317,0.638803,0.377768,0.253804,0.888425,0.163662,0.0214226,0.878111,0.000832975,0.791947,0.0853649,0.637144,0.405821,0.388798,0.183119,0.847201,0.314286,0.725001,0.215755,0.916398,0.989604,0.96134,0.73392,0.902478,0.164701,0.414575,0.00368041,0.887963,0.891614,0.270236,0.133405,0.739831,0.53847,0.688525,0.134189,0.0436049,0.384701,0.238347,0.758927,0.0742785,0.424841,0.0125557,0.00552434,0.814315,0.338421,0.482928,0.157749,0.396107,0.478482,0.688517,0.477568,0.152693,0.901374,0.659384,0.804254,0.233001,0.275935,0.311,0.16763,0.272961,0.0487644,0.451623,0.21157,0.891963,0.194945,0.628624,0.0608247,0.946376,0.92304,0.625937,0.724538,0.796358,0.683321,0.358211,0.38381,0.807625,0.443601,0.923297,0.413411,0.367617,0.994968,0.021521,0.00606602,0.238901,0.885505,0.234425,0.997491,0.301631,0.100471,0.743789,0.682173,0.895362,0.239976,0.833046,0.623711,0.965465,0.858519,0.637904,0.469032,0.246716,0.737577,0.0720039,0.384752,0.984089,0.798743,0.85376,0.658767,0.706352,0.174048,0.98044,0.57785,0.691133,0.480061,0.847784,0.0756294,0.362253,0.309857,0.280434,0.706494,0.640307,0.458624,0.836169,0.771572,0.570462,0.710964,0.789463,0.533224,0.763104,0.24345,0.65354,0.316883,0.465632,0.226457,0.931494,0.545689,0.217623,0.652671,0.0581276,0.861876,0.905104,0.0949851,0.892232,0.941016,0.47518,0.296235,0.609664,0.845174,0.128766,0.0167841,0.570314,0.709833,0.362447,0.0618997,0.0369945,0.69314,0.578427,0.177527,0.735977,0.280612,0.967024,0.894628,0.337458,0.956116,0.9752,0.847944,0.109252,0.631238,0.771271,0.950446,0.0207475,0.698621,0.957082,0.599251,0.783311,0.328971,0.765704,0.397589,0.184334,0.355528,0.720164,0.271505,0.342006,0.437977,0.605124,0.864966,0.540488,0.638684,0.32346,0.924854,0.678666,0.907858,0.025246,0.0230469,0.960162,0.00243682,0.793668,0.94319,0.540482,0.0354992,0.319288,0.727273,0.959054,0.0196711,0.0713189,0.969889,0.374662,0.00641382,0.446298,0.369772,0.938241,0.576299,0.588238,0.592665,0.00375384,0.399298,0.514827,0.596643,0.503358,0.697824,0.877456,0.674095,0.915381,0.753178,0.622257,0.254218,0.469015,0.0791367,0.649803,0.821054,0.236284,0.345311,0.944381,0.244328,0.680949,0.0653832,0.537113,0.775396,0.57795,0.625965,0.343743,0.410726,0.76105,0.380674,0.394847,0.480935,0.733106,0.713843,0.928743,0.439153,0.822742,0.198464,0.187911,0.225977,0.796228,0.287963,0.657681,0.632305,0.505039,0.193216,0.127289,0.172268,0.10589,0.876297,0.0514891,0.722299,0.395385,0.684471,0.388083,0.0979312,0.878974,0.414187,0.614506,0.308325,0.258131,0.458207,0.867536,0.924118,0.610437,0.945548,0.946817,0.722385,0.485365,0.590759,0.774942,0.830147,0.499279,0.0501555,0.290757,0.652825,0.915794,0.550966,0.89476,0.653355,0.908606,0.908534,0.958968,0.642509,0.402617,0.65258,0.420879,0.432115,0.552647,0.711262,0.132933,0.329175,0.598898,0.482638,0.644497,0.328297,0.800187,0.0537376,0.616703,0.562034,0.580158,0.490525,0.499431,0.0088985,0.244195,0.507434,0.388937,0.380048,0.550163,0.0991687,0.24172,0.356031,0.711955,0.137374,0.345071,0.488466,0.334891,0.867031,0.530317,0.559698,0.983538,0.269848,0.296735,0.352384,0.0449266,0.943802,0.584741,0.807236,0.353436,0.761056,0.523122,0.5924,0.254805,0.207985,0.498891,0.786629,0.452312,0.682635,0.239474,0.170746,0.330185,0.776909,0.555376,0.154751,0.286615,0.213798,0.521921,0.860441,0.839635,0.492863,0.484793,|0.263478,0.656658,0.848356,0.525832,0.441141,0.709611,0.456557,0.424811,0.283429,0.0909898,0.550638,0.421761,0.79615,0.501218,0.0816037,0.157716,0.921918,0.530334,0.559326,0.204656,0.704684,0.370467,0.16597,0.908291,0.164146,0.980776,0.449606,0.564718,0.857567,0.313552,0.144271,0.951678,0.742932,0.00422555,0.0431873,0.216219,0.617995,0.452126,0.813695,0.604502,0.744824,0.199003,0.985509,0.765519,0.418017,0.951011,0.316393,0.612978,0.317301,0.571206,0.656368,0.378009,0.322201,0.93783,0.892048,0.258375,0.564696,0.606741,0.761113,0.329457,0.367195,0.561049,0.644987,0.446989,0.237057,0.474474,0.471615,0.749762,0.120814,0.19085,0.162623,0.391994,0.43106,0.760105,0.591809,0.527878,0.764883,0.71627,0.221293,0.292679,0.378102,0.0657951,0.516406,0.613893,0.371428,0.824189,0.877539,0.388571,0.734372,0.573397,0.271517,0.965506,0.606722,0.430477,0.524907,0.905025,0.108213,0.91817,0.885527,0.153989,0.106662,0.209945,0.238485,0.450028,0.608255,0.0881261,0.263941,0.665709,0.124714,0.783026,0.552743,0.511949,0.355817,0.472979,0.514434,0.741237,0.96579,0.56753,0.583301,0.627521,0.164458,0.994658,0.70305,0.336313,0.513118,0.396157,0.455826,0.79399,0.547615,0.791437,0.635242,0.643317,0.736739,0.419107,0.842105,0.72943,0.958788,0.232425,0.329409,0.175888,0.927753,0.726891,0.123301,0.958255,0.371143,0.0624507,0.861598,0.633641,0.426491,0.385509,0.116569,0.0995906,0.989733,0.446161,0.938941,0.670667,0.113717,0.54217,0.125367,0.864438,0.911249,0.711381,0.890488,0.828628,0.91981,0.12649,0.955099,0.663518,0.205901,0.413877,0.427048,0.856491,0.317982,0.105505,0.542196,0.92157,0.956941,0.787313,0.137625,0.864383,0.723294,0.577773,0.728878,0.757024,0.713306,0.614539,0.274328,0.171753,0.072212,0.946719,0.259475,0.483501,0.597555,0.855074,0.258343,0.445507,0.701439,0.784827,0.765594,0.0161492,0.745114,0.862425,0.0741088,0.372569,0.350424,0.512544,0.665481,0.590407,0.161179,0.667577,0.37555,0.202056,0.304023,0.28352,0.0969655,0.393869,0.898077,0.334485,0.415976,0.800779,0.302809,0.102779,0.023038,0.323699,0.136785,0.653956,0.699432,0.39334,0.928031,0.811588,0.458395,0.38951,0.326746,0.215636,0.809885,0.984793,0.149883,0.995786,0.719263,0.838826,0.426056,0.171186,0.514369,0.62916,0.682291,0.1504,0.520803,0.265365,0.727691,0.896529,0.980382,0.448392,0.819088,0.768582,0.763673,0.0809579,0.42325,0.48388,0.409271,0.736238,0.458616,0.22376,0.706196,0.564673,0.75336,0.71319,0.614601,0.717449,0.039395,0.894126,0.75106,0.090799,0.054113,0.992158,0.602964,0.276535,0.797702,0.341144,0.473263,0.968013,0.419713,0.699757,0.766376,0.0465261,0.0416852,0.701469,0.288567,0.171782,0.215497,0.145576,0.462972,0.996032,0.792246,0.904766,0.567902,0.423702,0.45391,0.20526,0.627526,0.840981,0.932662,0.524066,0.139949,0.803729,0.702455,0.499389,0.705979,0.094526,0.722538,0.247768,0.540589,0.310769,0.418642,0.556893,0.330774,0.837428,0.651897,0.0246187,0.0813709,0.430625,0.275747,0.866746,0.106195,0.686211,0.910452,0.513288,0.464882,0.861691,0.858703,0.497991,0.209572,0.366107,0.762051,0.936665,0.127919,0.393819,0.375334,0.948365,0.296037,0.19906,0.619105,0.536129,0.368778,0.762159,0.218938,0.961773,0.863154,0.416347,0.188953,0.167069,0.29687,0.627522,0.495015,0.30942,0.460603,0.883953,0.857139,0.694443,0.526821,0.44936,0.269229,0.143707,0.333633,0.563149,0.474015,0.799965,0.905805,0.533391,0.892493,0.373024,0.867556,0.780381,0.756739,0.892911,0.229908,0.479808,0.982886,0.470749,0.976646,0.810921,0.959786,0.819261,0.404947,0.471548,0.0609807,0.0895666,0.509255,0.699824,0.490393,0.621364,0.255907,0.412523,0.912017,0.95505,0.430185,0.432524,0.346809,0.296847,0.865188,0.807342,0.748668,0.521062,0.558173,0.887233,0.569031,0.214088,0.471636,0.788606,0.918333,0.309756,0.95119,0.774092,0.862741,0.956995,0.212734,0.772401,0.624235,0.73611,0.443569,0.0147094,0.824568,0.0570925,0.512852,0.65515,0.214853,0.839583,0.41041,0.525586,0.947245,0.415472,0.0179164,0.0372621,0.779107,0.900548,0.318849,0.0349208,0.347029,0.633654,0.460258,0.360022,0.426147,0.204968,0.835494,0.152245,0.00971848,0.193674,0.0392334,0.332636,0.716838,0.361428,0.141348,0.0070219,0.200436,0.293753,0.440142,0.279497,0.242884,0.364798,0.734073,0.212601,0.274219,0.733533,0.36833,0.638339,0.626691,0.769764,0.212335,0.0472676,0.535907,0.0241049,0.0219727,0.725524,0.392896,0.398682,0.61181,0.321503,0.718491,0.997685,0.496563,0.538331,0.166668,0.10824,0.693403,0.518522,0.00899464,0.888054,0.385818,0.67419,0.412907,0.559805,0.986436,0.256335,0.452278,0.973338,0.726932,0.232454,0.912866,0.163155,0.500396,0.550984,0.145684,0.76119,0.655023,0.328326,0.168326,0.515304,0.488701,0.906298,0.615832,0.684031,0.532784,0.877604,0.589008,0.295201,0.157198,0.0424703,0.778444,0.0748408,0.951091,0.131214,0.463689,0.730314,0.685855,0.661814,0.332518,0.745558,0.879231,0.888703,0.549492,0.316398,0.790039,0.62608,0.779158,0.702501,0.730344,0.0152842,0.539782,0.014232,0.830195,0.797843,0.170427,0.949775,0.640991,0.818228,0.570686,0.315593,0.666079,0.411142,0.759433,0.141139,0.0300894,0.563375,0.126856,0.785162,0.0513093,0.32321,0.127029,0.899733,0.634584,0.988146,0.802426,0.532375,0.219597,0.888574,0.0692169,0.18764,0.35498,0.89907,0.202658,0.0335067,0.106572,0.258965,0.883287,0.621395,0.596523,0.631192,0.268306,0.330073,0.924984,0.188958,0.69751,0.272113,0.13701,0.00835782,0.670759,0.689709,0.249281,0.956383,0.671749,0.0436258,0.157692,0.505418,0.8384,0.795448,0.679355,0.730642,0.58405,0.812177,0.28923,0.691471,0.10515,0.512056,0.515151,0.217055,0.748338,0.428708,0.691408,0.260249,0.321396,0.441826,0.369796,0.114766,0.40073,0.850215,0.603087,0.295367,0.614673,0.944281,0.472689,0.679386,0.373869,0.73405,0.55165,0.761165,0.361082,0.437518,0.134679,0.981721,0.917843,0.193723,0.898344,0.586128,0.216693,0.315584,0.0946828,0.127204,0.808541,0.431014,0.154939,0.738762,0.841822,0.178652,0.943251,0.274841,0.569651,0.305371,0.820782,0.675629,0.871159,0.415707,0.134641,0.474728,0.696571,0.737704,0.0353374,0.670757,0.493683,0.677995,0.832967,0.932487,0.430067,0.209795,0.471846,0.553161,0.313966,0.232968,0.903434,0.742868,0.441343,0.248588,0.348682,0.918515,0.45972,0.185266,0.0630351,0.191637,0.470088,0.0131367,0.65872,0.293073,0.910648,0.550616,0.978537,0.370547,0.416596,0.836268,0.380208,0.933369,0.165488,0.702089,0.951722,0.611971,0.201197,0.882416,0.0151646,0.896676,0.528024,0.245839,0.702058,0.950957,0.579796,0.0247852,0.488272,0.305911,0.854131,0.435852,0.358895,0.563759,0.213152,0.0543961,0.145215,0.303985,0.194906,0.353562,0.9211,0.627101,0.00346559,0.748783,0.61966,0.55137,0.288328,0.859621,0.746282,0.0599641,0.0323074,0.453425,0.5657,0.127785,0.27364,0.0446224,0.127731,0.810212,0.912168,0.958724,0.945395,0.186422,0.181344,0.163068,0.475582,0.107124,0.31328,0.923626,0.132979,0.795674,0.344829,0.627706,0.160202,0.375837,0.402734,0.310266,0.448094,0.755288,0.499022,0.187678,0.804769,0.741267,0.225471,0.747775,0.213558,0.527577,0.818256,0.55002,0.577995,0.0432788,0.657471,0.0485226,0.134432,0.866779,0.922523,0.863809,0.826232,0.719196,0.291672,0.707789,0.314168,0.416311,0.00526279,0.820874,0.123655,0.905008,0.0548041,0.629785,0.246053,0.696996,0.922978,0.327298,0.284597,0.215738,0.649787,0.289418,0.120258,0.639305,0.908894,0.0326979,0.581901,0.6903,0.600637,0.182108,0.497355,0.843567,0.567321,0.726811,0.296254,0.658728,0.936831,0.356993,0.548777,0.988703,0.810221,0.527708,0.303935,0.0686494,0.0240571,0.0125728,0.836601,0.653742,0.685555,0.939362,0.770793,0.637131,0.0814593,0.297094,0.451424,0.730358,0.129368,0.168261,0.666629,0.528666,0.019399,0.590127,0.114538,0.213185,0.159384,0.93768,0.418855,0.599217,0.654339,0.356668,0.935866,0.90887,0.35711,0.285997,0.694098,0.485286,0.811377,0.677751,0.200551,0.0526741,0.0405971,0.876558,0.758255,0.449615,0.878654,0.929906,0.97788,0.873876,0.667614,0.599487,0.272229,0.211226,0.227663,0.787297,0.42224,0.735044,0.0387576,0.141413,0.945517,0.258299,0.307809,0.282282,0.3934,0.610603,0.42563,0.747363,0.287564,0.121127,0.257331,0.897488,0.467868,0.990458,0.861343,0.623226,0.740274,0.509826,0.587952,0.569049,0.871156,0.185327,0.171683,0.0665188,0.817931,0.931327,0.539622,0.627952,0.702372,0.102824,0.534997,0.402402,0.957056,0.361476,0.173232,0.969925,0.950829,0.411779,0.905,0.18244,0.0681689,0.608652,0.467637,0.030966,0.944318,0.366601,0.728658,0.66849,0.172242,0.806454,0.711545,0.617656,0.784799,0.264658,0.45308,0.00690573,0.448737,0.793689,0.815582,0.071985,0.226518,0.14581,0.104205,0.124738,0.615158,0.947822,0.839364,0.639996,0.311929,0.0357436,0.0780789,0.631609,0.172096,0.410899,0.312282,0.956738,0.779462,0.426576,0.534699,0.560229,0.726532,0.016373,0.0187988,0.543599,0.159862,0.522606,0.161891,0.966213,0.937683,0.1644,0.197278,0.637198,0.56448,0.564485,0.95522,0.659844,0.266932,0.0353233,0.755363,0.575964,0.857298,0.789687,0.596375,0.628811,0.718036,0.798177,0.501552,0.997087,0.726243,0.277168,0.788709,0.134474,0.943962,0.686483,0.0479832,0.195068,0.379326,0.971415,0.49296,0.397123,0.84971,0.497492,0.120876,0.801413,0.970329,0.87756,0.18707,0.772803,0.174568,0.527103,0.445254,0.281073,0.350887,0.453007,|0.704298,0.620878,0.952062,0.342161,0.767147,0.405057,0.634854,0.803611,0.0384045,0.941666,0.480262,0.718583,0.407181,0.855413,0.247494,0.432532,0.700982,0.699327,0.775617,0.126231,0.785337,0.325752,0.456234,0.974917,0.546521,0.0952569,0.242828,0.496251,0.204805,0.682394,0.327483,0.712261,0.46438,0.59893,0.903446,0.542569,0.508402,0.371026,0.307818,0.125977,0.928326,0.439141,0.577399,0.626002,0.38434,0.266224,0.666319,0.465752,0.793994,0.241049,0.9451,0.384897,0.581033,0.952832,0.187591,0.12411,0.978586,0.753169,0.905325,0.912756,0.138041,0.0523951,0.456039,0.812877,0.611787,0.293874,0.664996,0.132026,0.156434,0.509421,0.436093,0.0298766,0.0861219,0.213224,0.786094,0.934283,0.795649,0.605888,0.25655,0.315815,0.526607,0.594122,0.346888,0.692332,0.86613,0.647854,0.0745993,0.508639,0.306885,0.0780831,0.0683408,0.0939773,0.932791,0.847105,0.246534,0.629409,0.984134,0.482799,0.735756,0.575847,0.196381,0.641298,0.750707,0.353135,0.314117,0.230777,0.0668631,0.551054,0.233467,0.0788869,0.755832,0.777912,0.555224,0.814196,0.174172,0.692523,0.585201,0.592416,0.765557,0.460541,0.953437,0.477985,0.572359,0.982296,0.272279,0.225863,0.620574,0.528083,0.0953323,0.23546,0.309029,0.556572,0.526177,0.801777,0.988713,0.257829,0.274875,0.061994,0.43658,0.746585,0.12676,0.828341,0.870649,0.983394,0.103734,0.383951,0.160853,0.762588,0.152141,0.297319,0.137172,0.459772,0.469761,0.92005,0.558426,0.310671,0.148562,0.93774,0.0259418,0.266998,0.513859,0.462121,0.863231,0.593634,0.031092,0.318187,0.697317,0.138352,0.76809,0.944887,0.29756,0.659646,0.382076,0.838144,0.327513,0.345775,0.391447,0.528545,0.162395,0.444174,0.752554,0.342675,0.707387,0.0736322,0.562718,0.799423,0.805986,0.956806,0.178517,0.735737,0.569028,0.849561,0.467104,0.742628,0.661647,0.390137,0.0681365,0.15547,0.654349,0.453061,0.866457,0.450064,0.982129,0.99964,0.475225,0.91685,0.251356,0.0124637,0.487352,0.734706,0.671445,0.60501,0.931481,0.68141,0.880391,0.962702,0.320027,0.348193,0.895563,0.776733,0.182304,0.799577,0.650427,0.208038,0.832828,0.949348,0.00660962,0.767159,0.745251,0.00756758,0.937882,0.712103,0.959571,0.808249,0.583723,0.316552,0.546471,0.488193,0.405743,0.0935917,0.954094,0.353926,0.127479,0.866207,0.897733,0.0518,0.865618,0.492196,0.669702,0.20464,0.0830649,0.886146,0.35401,0.108903,0.0834053,0.898436,0.999616,0.0364515,0.323058,0.524338,0.878384,0.669477,0.508732,0.683059,0.245643,0.735717,0.463184,0.0285523,0.280713,0.994502,0.943683,0.0881301,0.122474,0.458147,0.103644,0.695968,0.973161,0.889749,0.0397919,0.533885,0.649387,0.902926,0.394552,0.132341,0.494603,0.430511,0.317476,0.155069,0.616349,0.94686,0.332805,0.305217,0.382025,0.846689,0.739976,0.114551,0.388316,0.504879,0.796407,0.686556,0.472594,0.71287,0.276484,0.537865,0.0354165,0.805332,0.691008,0.158661,0.434725,0.446471,0.472864,0.454762,0.995139,0.0438923,0.598536,0.431568,0.119171,0.354644,0.798523,0.583655,0.712914,0.771222,0.59637,0.108108,0.84348,0.0897083,0.880028,0.324939,0.535175,0.475615,0.656379,0.243786,0.0877365,0.0911195,0.657232,0.311306,0.465405,0.390754,0.71558,0.726216,0.43703,0.77917,0.836357,0.451423,0.130928,0.825365,0.826511,0.768002,0.298773,0.990601,0.532116,0.605529,0.0756304,0.36753,0.684271,0.7245,0.671432,0.973419,0.828357,0.0936564,0.0735376,0.602252,0.828381,0.0485452,0.0938969,0.13496,0.149163,0.734797,0.700364,0.486452,0.545935,0.360261,0.219796,0.2197,0.875679,0.222183,0.825829,0.81568,0.551168,0.730981,0.932677,0.952514,0.119507,0.661129,0.264877,0.93773,0.612277,0.710021,0.934318,0.599225,0.670165,0.235442,0.291627,0.465496,0.766872,0.752862,0.0845482,0.937554,0.836846,0.879746,0.291497,0.444714,0.403297,0.808462,0.416511,0.915816,0.168405,0.843851,0.396155,0.419515,0.888086,0.0236557,0.838045,0.676849,0.140798,0.80204,0.939842,0.820648,0.338593,0.304272,0.960771,0.142019,0.353856,0.0481991,0.951265,0.82374,0.0939823,0.0835407,0.765479,0.778765,0.488355,0.00825536,0.490742,0.736213,0.921482,0.22957,0.241867,0.856348,0.335432,0.0912267,0.150465,0.590807,0.48506,0.830372,0.76645,0.303958,0.0877811,0.496745,0.0355698,0.511381,0.944529,0.50315,0.722855,0.951651,0.752636,0.0349199,0.814809,0.551248,0.115723,0.510952,0.494923,0.318337,0.837322,0.98252,0.406141,0.217495,0.972191,0.37431,0.191794,0.0230118,0.148485,0.669657,0.638434,0.495208,0.427242,0.790628,0.861709,0.756935,0.115833,0.00566649,0.696175,0.996161,0.683997,0.576897,0.845456,0.0592462,0.0953422,0.0570509,0.994148,0.36825,0.357724,0.661431,0.10543,0.700671,0.837854,0.962796,0.838162,0.399619,0.895833,0.541937,0.0800062,0.931422,0.514173,0.834675,0.868716,0.223278,0.0790712,0.793023,0.106771,0.894178,0.107068,0.522381,0.298251,0.762068,0.344452,0.176522,0.576534,0.738308,0.284946,0.212349,0.160997,0.486553,0.687884,0.96356,0.109585,0.268098,0.538931,0.222498,0.81571,0.698655,0.300802,0.714069,0.367989,0.0730047,0.732309,0.421555,0.361572,0.173466,0.179098,0.418064,0.0615387,0.246269,0.703176,0.638193,0.229382,0.951647,0.200481,0.89507,0.467283,0.760321,0.24786,0.448861,0.88988,0.960488,0.507822,0.458,0.678266,0.0475154,0.981863,0.773973,0.901725,0.4425,0.496775,0.586187,0.689808,0.625241,0.732928,0.79186,0.466667,0.74025,0.155775,0.758968,0.690057,0.458512,0.256756,0.0456822,0.027455,0.0836009,0.850421,0.346696,0.0797447,0.975507,0.0823933,0.240039,0.34428,0.604185,0.643161,0.0843504,0.999194,0.0428135,0.734959,0.330554,0.366776,0.295447,0.20536,0.299575,0.932597,0.150721,0.546331,0.403454,0.504765,0.177086,0.715566,0.790949,0.958358,0.924569,0.414601,0.0739889,0.653143,0.374686,0.850952,0.148516,0.266956,0.430494,0.465315,0.691584,0.101277,0.0581555,0.788614,0.857659,0.824566,0.0281302,0.163873,0.953895,0.038525,0.113862,0.55945,0.0705559,0.720787,0.889456,0.532555,0.153943,0.277093,0.394855,0.0835845,0.740272,0.76987,0.435069,0.628511,0.545171,0.12331,0.211348,0.648814,0.443787,0.319058,0.142932,0.618812,0.388627,0.27352,0.3931,0.970373,0.398961,0.365778,0.479696,0.231844,0.22442,0.991386,0.260901,0.290145,0.247515,0.314394,0.766437,0.29045,0.913508,0.452094,0.532471,0.188875,0.220433,0.484604,0.150212,0.831661,0.0862354,0.380399,0.553931,0.279529,0.181681,0.140145,0.282375,0.113675,0.189481,0.915103,0.57055,0.150956,0.293566,0.257521,0.742756,0.94254,0.38226,0.496237,0.107674,0.0433127,0.523252,0.769711,0.960058,0.793411,0.430968,0.195562,0.663725,0.444748,0.986453,0.275686,0.742453,0.797047,0.111526,0.58564,0.779261,0.844997,0.718395,0.972012,0.775981,0.918287,0.0924878,0.265776,0.0315924,0.813465,0.202529,0.368481,0.820786,0.588191,0.926312,0.340476,0.348037,0.110314,0.583684,0.825951,0.697285,0.653655,0.0468503,0.111045,0.981046,0.667071,0.590696,0.908429,0.790168,0.476555,0.377567,0.207173,0.0691499,0.222751,0.15115,0.0511282,0.32862,0.260747,0.405757,0.401472,0.102915,0.575139,0.379995,0.975314,0.475299,0.022965,0.592339,0.600872,0.763301,0.0262778,0.771709,0.123617,0.521676,0.0393162,0.43537,0.84768,0.309781,0.0565038,0.154352,0.614669,0.426821,0.450876,0.125521,0.108314,0.00581318,0.0754513,0.119917,0.98383,0.839166,0.760019,0.12658,0.14487,0.338154,0.264111,0.0436637,0.0511515,0.768829,0.964924,0.123011,0.331746,0.392078,0.0262274,0.507587,0.667937,0.198375,0.602307,0.719927,0.992412,0.383053,0.588709,0.531694,0.163507,0.0432014,0.0730679,0.634755,0.841592,0.268589,0.697924,0.183613,0.651281,0.510187,0.0413467,0.442519,0.856133,0.618752,0.605642,0.165235,0.604405,0.417313,0.750121,0.472026,0.100976,0.231955,0.943276,0.793996,0.382408,0.124058,0.348402,0.0416007,0.124497,0.109626,0.118536,0.639409,0.510357,0.990775,0.696662,0.513967,0.0342505,0.409431,0.336962,0.914334,0.158533,0.403976,0.764429,0.374223,0.654725,0.433583,0.0783783,0.55742,0.25322,0.704553,0.211062,0.586184,0.411189,0.851312,0.264761,0.956043,0.385034,0.793293,0.653901,0.884593,0.0227937,0.161524,0.312733,0.228301,0.992598,0.338856,0.591508,0.152393,0.493532,0.301793,0.312469,0.347039,0.803911,0.95113,0.246097,0.889781,0.42874,0.230357,0.780775,0.372441,0.0745235,0.669031,0.610146,0.871295,0.375466,0.690921,0.699786,0.702332,0.72364,0.725179,0.143649,0.0228907,0.179733,0.563263,0.120838,0.773462,0.351847,0.426104,0.976845,0.13855,0.206852,0.282747,0.697544,0.305883,0.658609,0.441103,0.549124,0.826509,0.0536408,0.0865688,0.179343,0.743725,0.567036,0.0638342,0.862005,0.496976,0.0725534,0.331995,0.874396,0.050929,0.0938274,0.0347473,0.448596,0.176817,0.576501,0.409267,0.94011,0.307808,0.501866,0.822181,0.37583,0.675725,0.669264,0.0598971,0.439867,0.271343,0.191442,0.22818,0.779086,0.188969,0.3795,0.398229,0.864444,0.852382,0.223315,0.412705,0.313323,0.857507,0.51511,0.800323,0.772856,0.204805,0.141099,0.94641,0.408712,0.813495,0.357413,0.279753,0.290803,0.229195,0.246639,0.222195,0.718775,0.797016,0.254471,0.413432,0.646635,0.642276,0.758041,0.00738668,0.695969,0.429776,0.747739,0.504537,0.343632,0.261278,0.979832,0.526449,0.256261,0.161538,0.71639,0.273405,0.53647,0.0985481,0.398194,0.879421,0.335001,0.994518,0.270576,0.482962,0.713176,0.244618,0.863118,0.940949,0.996815,0.615511,0.227955,0.662648,0.756428,0.884862,0.516715,0.103466,0.17951,0.617021,|0.714349,0.492079,0.535778,0.510529,0.266669,0.946344,0.921059,0.813685,0.75193,0.878871,0.64719,0.41505,0.267614,0.718816,0.297989,0.742219,0.537577,0.934745,0.215169,0.612573,0.110483,0.594715,0.351257,0.0980731,0.908581,0.0895962,0.9705,0.558404,0.316928,0.380809,0.547618,0.641747,0.814371,0.897921,0.960383,0.389438,0.912503,0.655741,0.385275,0.805912,0.75788,0.233214,0.969238,0.57363,0.758728,0.0765047,0.100252,0.142365,0.117517,0.645897,0.274453,0.358745,0.60077,0.250692,0.597608,0.825556,0.0924909,0.664336,0.166341,0.858371,0.841965,0.573691,0.823405,0.443594,0.280498,0.567965,0.886357,0.956369,0.0907699,0.0513306,0.726454,0.95267,0.954552,0.695704,0.021699,0.0754153,0.603016,0.413716,0.753757,0.974469,0.681074,0.636344,0.418886,0.833424,0.106554,0.48155,0.175357,0.494173,0.167924,0.298452,0.239169,0.801835,0.0176761,0.279564,0.937637,0.214212,0.18042,0.0995184,0.940848,0.739238,0.00952965,0.861231,0.89838,0.339368,0.664835,0.891086,0.210845,0.250321,0.568546,0.748436,0.377437,0.838962,0.139794,0.66621,0.716141,0.067153,0.577841,0.763554,0.710431,0.652331,0.427187,0.295752,0.273378,0.664151,0.510331,0.393876,0.956015,0.086193,0.704857,0.489966,0.540192,0.525575,0.352641,0.937545,0.620503,0.772796,0.140235,0.678139,0.429042,0.152452,0.080008,0.713049,0.122393,0.748901,0.239429,0.362025,0.468564,0.351805,0.814906,0.123344,0.0803554,0.785222,0.136491,0.716065,0.870371,0.721701,0.825315,0.252905,0.711896,0.414225,0.857455,0.267187,0.236166,0.910657,0.20135,0.733633,0.238359,0.682486,0.573869,0.151007,0.192101,0.855745,0.768997,0.485234,0.636704,0.495948,0.19641,0.598089,0.0164766,0.734776,0.986086,0.920067,0.596594,0.165996,0.925066,0.143616,0.0344184,0.244415,0.733864,0.245276,0.772125,0.685503,0.290426,0.719034,0.413589,0.811969,0.824978,0.512904,0.360121,0.343805,0.078206,0.983565,0.795744,0.679177,0.989917,0.0721701,0.499039,0.436594,0.703784,0.45326,0.857781,0.522085,0.61699,0.475204,0.201006,0.831828,0.641687,0.818638,0.466696,0.0518118,0.989193,0.265985,0.00384992,0.460165,0.15927,0.300608,0.846033,0.668238,0.0792027,0.789767,0.828916,0.723863,0.138019,0.69528,0.759381,0.935274,0.33811,0.649631,0.010519,0.519627,0.483475,0.911808,0.319949,0.208046,0.575029,0.457032,0.673448,0.635563,0.0324063,0.67349,0.740665,0.280249,0.359563,0.143599,0.287978,0.355719,0.740149,0.279428,0.229985,0.29668,0.588997,0.256844,0.159983,0.336367,0.788266,0.0830164,0.247122,0.967481,0.869598,0.715191,0.135671,0.551351,0.855651,0.760585,0.87568,0.745384,0.862117,0.712289,0.0352687,0.228035,0.202934,0.533107,0.0693999,0.679429,0.809707,0.586223,0.391017,0.839648,0.24154,0.808568,0.18271,0.275016,0.797589,0.0658894,0.0238225,0.177875,0.395914,0.336835,0.924392,0.726025,0.371312,0.281417,0.34578,0.949431,0.966582,0.287457,0.688499,0.651072,0.385954,0.542935,0.458251,0.907099,0.127093,0.478311,0.901374,0.794876,0.778891,0.935602,0.0168597,0.80299,0.538518,0.576932,0.38192,0.977626,0.211946,0.52885,0.715805,0.808299,0.225086,0.852213,0.469569,0.633499,0.414201,0.769726,0.826519,0.961979,0.0185704,0.24548,0.399154,0.480125,0.0950672,0.709876,0.462991,0.0740582,0.112687,0.969244,0.0997815,0.558618,0.648436,0.936815,0.261171,0.112032,0.296955,0.996946,0.802702,0.213285,0.897931,0.656449,0.57553,0.425393,0.251435,0.574155,0.796289,0.52109,0.266583,0.613358,0.273383,0.59322,0.998075,0.227179,0.535302,0.544678,0.304308,0.682275,0.83339,0.491111,0.964795,0.280694,0.161517,0.329939,0.885099,0.494332,0.765265,0.0583282,0.556164,0.463983,0.0413605,0.189671,0.982128,0.766851,0.198911,0.336899,0.949897,0.993114,0.444272,0.995691,0.225279,0.561339,0.524506,0.191984,0.378924,0.316939,0.524394,0.535467,0.791657,0.0324994,0.472319,0.677928,0.760558,0.0747344,0.272887,0.76214,0.142526,0.367566,0.498445,0.80124,0.202726,0.310708,0.127655,0.214452,0.140324,0.930099,0.851947,0.242527,0.583417,0.79788,0.743896,0.00921428,0.548276,0.122704,0.242178,0.895945,0.291362,0.904831,0.0896367,0.098707,0.306692,0.115489,0.803341,0.196614,0.115986,0.564013,0.480542,0.965431,0.280702,0.695479,0.800759,0.469809,0.265915,0.86044,0.219665,0.358768,0.357751,0.533765,0.167293,0.487154,0.977244,0.885409,0.14257,0.37896,0.963632,0.230399,0.0714,0.679655,0.6595,0.150761,0.922546,0.923436,0.493851,0.592135,0.691022,0.841534,0.880912,0.984125,0.501877,0.138349,0.477064,0.719089,0.536715,0.196108,0.0446539,0.240036,0.267578,0.0670772,0.707932,0.566351,0.0379444,0.645579,0.125822,0.00502962,0.157035,0.123922,0.644578,0.771812,0.0746779,0.837939,0.200226,0.190682,0.993623,0.150706,0.672991,0.961899,0.314471,0.569493,0.201809,0.498568,0.759362,0.355802,0.914259,0.057874,0.1694,0.750991,0.247318,0.0559943,0.488102,0.672597,0.807814,0.522697,0.397446,0.807713,0.210272,0.642294,0.210698,0.782613,0.62398,0.432119,0.628106,0.628768,0.0423912,0.118717,0.377227,0.757577,0.880627,0.912844,0.526721,0.756517,0.159852,0.992421,0.170363,0.392799,0.425928,0.239937,0.362437,0.359848,0.562189,0.85471,0.0811423,0.899795,0.0572845,0.500634,0.747561,0.224435,0.643575,0.00419116,0.909517,0.36684,0.880851,0.151069,0.111431,0.516272,0.411508,0.621541,0.368971,0.38644,0.550508,0.636416,0.430341,0.884563,0.991621,0.567209,0.120566,0.000326037,0.0503729,0.334863,0.572164,0.303451,0.965188,0.307484,0.000815213,0.626049,0.197833,0.122615,0.468653,0.835413,0.243279,0.1509,0.977556,0.384627,0.429469,0.509025,0.99761,0.757564,0.200837,0.237032,0.971321,0.793885,0.605885,0.109177,0.0527733,0.625061,0.225108,0.107143,0.862373,0.618466,0.625459,0.253889,0.64246,0.99521,0.661404,0.242033,0.25661,0.353441,0.294626,0.271348,0.842257,0.488981,0.97647,0.448763,0.115209,0.0240641,0.845613,0.519105,0.99624,0.869913,0.589639,0.993792,0.565309,0.555245,0.758838,0.137021,0.114049,0.266026,0.748579,0.74273,0.997351,0.0438446,0.199557,0.12543,0.178718,0.222289,0.46309,0.573345,0.655351,0.334694,0.221347,0.958734,0.998534,0.600632,0.914774,0.281021,0.671193,0.0959522,0.604048,0.620109,0.334889,0.101996,0.0678541,0.0409742,0.581408,0.574147,0.794723,0.0562043,0.164592,0.194529,0.949149,0.0881909,0.20699,0.0219545,0.483916,0.557072,0.966661,0.227623,0.249439,0.599155,0.151568,0.590878,0.499525,0.84067,0.497026,0.0333343,0.587955,0.203043,0.817927,0.290289,0.802507,0.840063,0.869077,0.924617,0.238693,0.572752,0.844772,0.160547,0.289135,0.178991,0.500841,0.389958,0.839016,0.35064,0.583034,0.710226,0.798252,0.928335,0.0281745,0.839238,0.300212,0.76614,0.201996,0.910449,0.386575,0.214637,0.413424,0.488215,0.0155764,0.467344,0.51993,0.778419,0.693423,0.276354,0.439786,0.48858,0.0556286,0.260424,0.29354,0.187165,0.391479,0.126654,0.31523,0.373916,0.0645723,0.582286,0.615587,0.987153,0.927951,0.196622,0.129579,0.745844,0.0615823,0.822171,0.0775654,0.0610834,0.103089,0.310228,0.859611,0.961491,0.598579,0.583542,0.168631,0.987529,0.941934,0.429241,0.20357,0.05972,0.0125276,0.0750479,0.961936,0.118021,0.133737,0.879685,0.409599,0.953535,0.322373,0.3262,0.369467,0.117042,0.219835,0.253033,0.0321321,0.870249,0.633873,0.334717,0.61274,0.43172,0.05072,0.979094,0.197746,0.229966,0.731849,0.134971,0.506492,0.368242,0.885288,0.771306,0.237732,0.88304,0.368706,0.709246,0.384968,0.209611,0.747853,0.537868,0.652834,0.39298,0.900192,0.839113,0.225657,0.0282214,0.0865233,0.548823,0.0380508,0.186859,0.536188,0.911726,0.99483,0.58529,0.718218,0.347693,0.209125,0.616891,0.494517,0.964432,0.782782,0.63585,0.315165,0.516073,0.391634,0.496382,0.974043,0.258362,0.670623,0.789171,0.318344,0.557411,0.710808,0.513968,0.900323,0.994889,0.114491,0.944168,0.264204,0.764275,0.609981,0.153063,0.19427,0.149303,0.70451,0.52101,0.669471,0.974445,0.358256,0.241441,0.145354,0.230831,0.895923,0.525042,0.707241,0.463111,0.453169,0.307946,0.576096,0.711195,0.198548,0.718106,0.297319,0.130111,0.52804,0.137459,0.929222,0.654695,0.576386,0.399431,0.108755,0.497311,0.283165,0.718321,0.408934,0.158392,0.721172,0.131283,0.896724,0.71535,0.991414,0.522696,0.625797,0.803521,0.117154,0.473191,0.183743,0.409578,0.0779346,0.366286,0.00950509,0.743669,0.62104,0.362268,0.794237,0.874176,0.652758,0.35075,0.00460494,0.938384,0.800666,0.864571,0.0399951,0.444334,0.136281,0.0406985,0.716717,0.404317,0.618051,0.494644,0.155688,0.400594,0.659802,0.0867567,0.116119,0.597008,0.351502,0.491554,0.464112,0.458444,0.38174,0.176976,0.61692,0.845606,0.846789,0.457579,0.164178,0.874281,0.853233,0.0808802,0.259372,0.0478386,0.66443,0.361319,0.807185,0.419233,0.888174,0.0954825,0.151554,0.67591,0.656799,0.768049,0.25473,0.811348,0.0789872,0.5561,0.442936,0.108722,0.598115,0.353832,0.511265,0.0245814,0.351162,0.263756,0.22314,0.422973,0.108288,0.101497,0.0733222,0.000521064,0.567708,0.949926,0.436198,0.187659,0.461578,0.269591,0.927645,0.185853,0.0636993,0.949084,0.933622,0.0594981,0.313089,0.640146,0.279147,0.529896,0.749256,0.633149,0.701317,0.94268,0.352437,0.703868,0.410663,0.235761,0.662558,0.897797,0.0998901,0.682895,0.0608357,0.206544,0.523634,0.305643,0.237448,0.981508,0.313544,0.533587,0.385251,0.482985,0.203209,0.273202,0.450362,0.652043,0.314158,0.300141,0.957556,0.647148,0.813534,0.893436,0.0331972,0.502412,|0.27064,0.475772,0.672482,0.327408,0.266117,0.622758,0.0794792,0.845972,0.641341,0.833877,0.2025,0.310775,0.859716,0.69709,0.48145,0.745132,0.649653,0.444846,0.185404,0.466896,0.997946,0.209178,0.99577,0.64225,0.137854,0.998984,0.705607,0.514088,0.97828,0.586015,0.0405784,0.60226,0.0810801,0.579128,0.456358,0.196045,0.465973,0.299072,0.854121,0.964424,0.718652,0.8591,0.433729,0.266944,0.976553,0.333563,0.792309,0.850382,0.610404,0.080577,0.76975,0.15558,0.32659,0.533896,0.310653,0.639783,0.396568,0.66924,0.0691332,0.794843,0.984597,0.503182,0.805605,0.104425,0.68402,0.34211,0.760551,0.0949911,0.942619,0.234649,0.209004,0.518125,0.641797,0.012591,0.243926,0.4023,0.85995,0.435298,0.635934,0.721176,0.691576,0.326069,0.301327,0.795019,0.0164343,0.271287,0.804737,0.444102,0.152797,0.420873,0.816116,0.158467,0.366821,0.782978,0.788251,0.833759,0.216478,0.225235,0.577489,0.732691,0.156609,0.734289,0.0696617,0.980193,0.499613,0.183838,0.657616,0.172024,0.893275,0.356985,0.0772814,0.977748,0.159688,0.647595,0.40179,0.317712,0.263082,0.0754274,0.172158,0.148225,0.503139,0.645242,0.433413,0.0107443,0.451026,0.436361,0.889308,0.106947,0.913743,0.70816,0.150896,0.239903,0.209961,0.249881,0.519303,0.437006,0.53214,0.376754,0.61959,0.0143008,0.168765,0.942646,0.162796,0.792103,0.567229,0.559286,0.558122,0.74211,0.644565,0.0158781,0.216227,0.816612,0.642183,0.323589,0.667453,0.653853,0.960869,0.227667,0.68656,0.799639,0.255176,0.0909447,0.580537,0.370269,0.148875,0.640036,0.919419,0.915087,0.893155,0.823955,0.551522,0.870328,0.0916778,0.708889,0.0232894,0.21389,0.360242,0.913824,0.167816,0.378304,0.505816,0.241659,0.365434,0.793583,0.464179,0.524431,0.757661,0.00283492,0.120976,0.401419,0.419316,0.402395,0.14608,0.54431,0.180034,0.220885,0.631192,0.76715,0.63466,0.0929539,0.603225,0.10399,0.280373,0.450128,0.565122,0.830041,0.780778,0.729607,0.463174,0.979488,0.92403,0.973183,0.206305,0.534526,0.0273685,0.263821,0.384866,0.00710136,0.705557,0.74854,0.639965,0.482733,0.80226,0.74652,0.965511,0.899748,0.0377584,0.77591,0.983723,0.0927677,0.104981,0.715765,0.682543,0.327468,0.515148,0.878131,0.982113,0.258859,0.862169,0.874055,0.969222,0.598303,0.854611,0.202807,0.810999,0.846023,0.565299,0.527845,0.220397,0.496135,0.369707,0.816981,0.285537,0.750769,0.192827,0.487001,0.126902,0.235864,0.0473749,0.476233,0.498469,0.395985,0.686613,0.440012,0.383586,0.820653,0.844644,0.274432,0.196393,0.996119,0.495245,0.901208,0.733946,0.0492999,0.282704,0.712959,0.234228,0.171836,0.768944,0.144817,0.432073,0.479447,0.610986,0.303552,0.267906,0.282284,0.635062,0.985483,0.985872,0.43447,0.22996,0.341961,0.981155,0.149082,0.817527,0.492766,0.220493,0.285585,0.1198,0.65467,0.339059,0.873542,0.863348,0.496795,0.179292,0.735794,0.213243,0.735729,0.858512,0.993136,0.627701,0.51748,0.740058,0.348696,0.805988,0.0871655,0.0531273,0.0292189,0.926517,0.907201,0.483432,0.566816,0.782512,0.0422089,0.66242,0.0843984,0.627059,0.394479,0.054679,0.908228,0.759834,0.836394,0.933306,0.627592,0.774678,0.0923045,0.97021,0.795866,0.762659,0.295787,0.0629067,0.779946,0.0528624,0.237608,0.383195,0.878468,0.060717,0.477992,0.449676,0.57955,0.949202,0.705285,0.145839,0.330831,0.21159,0.757517,0.272707,0.609543,0.336868,0.770578,0.886204,0.666826,0.697769,0.914033,0.729708,0.255219,0.904231,0.601705,0.261275,0.459452,0.642262,0.250102,0.777646,0.747069,0.801633,0.279154,0.0279608,0.653252,0.22392,0.431265,0.81735,0.544247,0.0654361,0.4091,0.251692,0.716297,0.851477,0.411677,0.431468,0.924219,0.650568,0.562525,0.0298653,0.940107,0.804012,0.214845,0.53177,0.310515,0.157457,0.881958,0.581093,0.667726,0.328689,0.280184,0.734454,0.889097,0.762066,0.360163,0.2284,0.882172,0.564575,0.638746,0.166286,0.225274,0.773662,0.903906,0.718609,0.629546,0.293337,0.416522,0.689398,0.416911,0.430634,0.629582,0.295504,0.879757,0.58732,0.0498191,0.680755,0.211771,0.52443,0.96905,0.319004,0.560714,0.572717,0.1181,0.608018,0.476588,0.151786,0.120869,0.530046,0.487522,0.133211,0.591027,0.568076,0.419438,0.14719,0.386127,0.186168,0.00330389,0.876907,0.830118,0.060659,0.786081,0.612952,0.063227,0.707608,0.812872,0.858075,0.755944,0.385802,0.0413557,0.852033,0.663128,0.672532,0.115359,0.277119,0.0910456,0.251081,0.201672,0.287762,0.675762,0.996493,0.17599,0.578866,0.0124354,0.603509,0.956291,0.00486434,0.376551,0.863572,0.608524,0.931662,0.709956,0.515613,0.734983,0.943608,0.284873,0.175492,0.953409,0.468999,0.397465,0.158283,0.660805,0.129238,0.29345,0.252782,0.932657,0.202479,0.705085,0.293362,0.190612,0.843141,0.397748,0.0752412,0.00394946,0.00138009,0.706815,0.257853,0.592204,0.92104,0.0706798,0.260163,0.152401,0.682525,0.390476,0.496794,0.129104,0.577613,0.305606,0.760728,0.713905,0.341406,0.560712,0.633336,0.661764,0.115985,0.586417,0.861629,0.272701,0.624519,0.675051,0.0928814,0.509757,0.480147,0.645887,0.424835,0.524753,0.69211,0.933275,0.503573,0.192991,0.480633,0.665743,0.768113,0.0545743,0.310721,0.840744,0.456159,0.436842,0.748652,0.501951,0.494798,0.255866,0.770012,0.441515,0.271559,0.214724,0.336357,0.191903,0.962859,0.499422,0.663867,0.076043,0.9981,0.51225,0.932245,0.720504,0.0471488,0.993299,0.552323,0.499931,0.173199,0.0862219,0.27561,0.387739,0.980629,0.309582,0.322282,0.471287,0.985674,0.246417,0.279002,0.611048,0.165347,0.729789,0.214035,0.289629,0.264748,0.872717,0.434553,0.209426,0.418833,0.851375,0.256295,0.825433,0.636533,0.702354,0.808285,0.838801,0.119546,0.376762,0.218911,0.388009,0.192299,0.860431,0.514677,0.487222,0.797076,0.335621,0.115943,0.849818,0.747771,0.244731,0.11017,0.956789,0.918705,0.692914,0.875755,0.177229,0.492988,0.87189,0.381432,0.446114,0.930779,0.887699,0.369118,0.667768,0.366171,0.256137,0.49121,0.56145,0.798447,0.767633,0.242303,0.430906,0.0571603,0.0548215,0.646204,0.4082,0.625338,0.207361,0.808655,0.906536,0.763464,0.884001,0.336715,0.79543,0.113329,0.163108,0.0600172,0.730611,0.948147,0.157944,0.892339,0.259959,0.780496,0.764937,0.23093,0.0825812,0.370705,0.241551,0.497351,0.651602,0.254728,0.449003,0.80723,0.621502,0.190555,0.744712,0.108384,0.561884,0.136591,0.557537,0.917656,0.225838,0.737385,0.511824,0.678037,0.34945,0.0159379,0.674029,0.624841,0.116804,0.489257,0.763266,0.995927,0.105667,0.0537958,0.0496806,0.828197,0.462113,0.410098,0.974376,0.818558,0.211523,0.571383,0.332127,0.59337,0.673365,0.748917,0.765213,0.495428,0.0718425,0.986965,0.602739,0.42562,0.0771145,0.963594,0.563631,0.840057,0.242055,0.41134,0.762996,0.233062,0.738874,0.561993,0.249445,0.393352,0.745654,0.310006,0.725423,0.151407,0.447158,0.302107,0.299094,0.955759,0.707566,0.288644,0.8483,0.827124,0.742398,0.0859752,0.177001,0.289425,0.660436,0.709839,0.485139,0.266254,0.986761,0.550857,0.126691,0.320006,0.418336,0.884427,0.142642,0.612135,0.121866,0.925724,0.0768284,0.11676,0.598804,0.108953,0.766662,0.441176,0.240692,0.134359,0.0155928,0.0598841,0.532592,0.829995,0.00740486,0.483791,0.556453,0.11026,0.971671,0.319911,0.120432,0.289292,0.0850722,0.577081,0.688734,0.641039,0.938951,0.528275,0.544135,0.987307,0.759263,0.026575,0.00340247,0.00107443,0.685023,0.0906889,0.0238717,0.30031,0.774023,0.424115,0.863903,0.624581,0.293208,0.715354,0.353609,0.15692,0.367277,0.394952,0.471755,0.883792,0.19055,0.887905,0.616396,0.80318,0.772747,0.209064,0.194964,0.532839,0.213028,0.245641,0.852744,0.133375,0.229027,0.334823,0.514679,0.520777,0.0326909,0.147249,0.187005,0.254489,0.114199,0.211844,0.348891,0.442353,0.278211,0.949895,0.513494,0.754957,0.911303,0.912838,0.307994,0.666188,0.787722,0.71389,0.0575967,0.802574,0.536713,0.0953455,0.226436,0.631995,0.799572,0.939518,0.833019,0.672742,0.79117,0.649605,0.987501,0.139037,0.102878,0.154931,0.197712,0.163929,0.0707896,0.581138,0.886267,0.0597902,0.452393,0.734092,0.562824,0.628916,0.238994,0.761094,0.833653,0.566616,0.132374,0.0820807,0.584252,0.531613,0.50733,0.987174,0.27497,0.220604,0.958665,0.0431727,0.00599754,0.27113,0.0745389,0.214007,0.440567,0.694933,0.518122,0.311334,0.886671,0.87954,0.106593,0.891798,0.211358,0.598615,0.559267,0.606647,0.370228,0.598638,0.243062,0.866409,0.752073,0.953103,0.333701,0.676156,0.0942876,0.179051,0.757299,0.267995,0.436421,0.807326,0.871405,0.577873,0.867222,0.951082,0.888973,0.768526,0.852728,0.30146,0.644849,0.653976,0.716216,0.335283,0.841327,0.46828,0.173448,0.759459,0.721824,0.670625,0.247982,0.0084486,0.363485,0.083291,0.587792,0.403983,0.618134,0.466824,0.162078,0.113082,0.496461,0.945896,0.436388,0.246914,0.770753,0.0652483,0.703009,0.400661,0.987944,0.570661,0.680263,0.686382,0.587465,0.197161,0.64077,0.477592,0.29737,0.886058,0.528106,0.420349,0.984835,0.133681,0.0279425,0.797536,0.0301151,0.663718,0.584954,0.294365,0.954442,0.216318,0.910566,0.989779,0.558973,0.851344,0.114256,0.685125,0.134727,0.588896,0.169209,0.769009,0.724957,0.287742,0.489024,0.795105,0.970846,0.943808,0.88601,0.52068,0.00869501,0.790952,0.552059,0.579553,0.996662,0.581286,0.306557,0.728484,0.63059,0.233656,0.181344,0.0160469,0.568033,0.375067,0.532517,0.0432845,0.426912,0.567693,0.805639,0.239895,0.294892,0.80658,0.096226,|0.9735,0.717417,0.735165,0.0561426,0.780784,0.679974,0.108465,0.969631,0.341297,0.822861,0.805579,0.292467,0.745447,0.837497,0.986885,0.992935,0.517144,0.198425,0.0209689,0.823983,0.915193,0.892712,0.0151733,0.314691,0.548594,0.697103,0.982274,0.181925,0.775725,0.853266,0.0794882,0.664467,0.0625932,0.994694,0.739404,0.830289,0.456618,0.688699,0.770045,0.080521,0.776713,0.453811,0.987599,0.363536,0.998012,0.967107,0.41959,0.0342205,0.318047,0.425664,0.685245,0.0577431,0.607928,0.937746,0.992917,0.0943649,0.222541,0.0978161,0.444435,0.152485,0.907999,0.552106,0.254219,0.978338,0.18731,0.422182,0.369601,0.835256,0.826402,0.807997,0.476966,0.974132,0.34748,0.699029,0.0863593,0.909242,0.777962,0.128295,0.620917,0.466178,0.369772,0.763782,0.987251,0.468417,0.664707,0.109824,0.491822,0.177359,0.980016,0.612928,0.124769,0.773002,0.229967,0.897316,0.68147,0.566714,0.50486,0.359451,0.943241,0.782018,0.509275,0.620361,0.905352,0.858874,0.82385,0.838437,0.53094,0.512983,0.614888,0.435916,0.0542462,0.837088,0.608077,0.669251,0.117907,0.115337,0.367071,0.383973,0.329312,0.168464,0.519004,0.798931,0.847596,0.895863,0.351981,0.24919,0.682081,0.631557,0.53055,0.328873,0.509004,0.79813,0.571959,0.912903,0.0383729,0.815493,0.864437,0.72877,0.0503811,0.0593068,0.728048,0.141055,0.383021,0.86779,0.998167,0.759731,0.511018,0.473628,0.560403,0.5611,0.502595,0.578983,0.198542,0.351556,0.812087,0.0172368,0.784439,0.535918,0.0586972,0.539116,0.0626261,0.719465,0.720789,0.714866,0.595846,0.483227,0.470206,0.693915,0.578523,0.305369,0.766114,0.762034,0.00478977,0.437136,0.246708,0.46189,0.864764,0.778579,0.668111,0.559708,0.661413,0.0919179,0.10446,0.672612,0.979099,0.574008,0.255656,0.582846,0.0752108,0.810246,0.223236,0.645009,0.0378929,0.75655,0.0389908,0.115819,0.745021,0.897282,0.569629,0.685123,0.624982,0.102673,0.112009,0.815237,0.108426,0.693064,0.804218,0.540689,0.573265,0.43901,0.587878,0.186792,0.0633706,0.897215,0.683498,0.708465,0.626084,0.652828,0.84426,0.841483,0.866153,0.230036,0.773201,0.47254,0.226092,0.487352,0.985919,0.291887,0.0268971,0.512737,0.164836,0.0388332,0.042275,0.819815,0.951554,0.256596,0.894262,0.807986,0.919137,0.0818532,0.578027,0.828482,0.662754,0.547179,0.324796,0.780716,0.788374,0.0811957,0.128362,0.222018,0.966044,0.112277,0.585477,0.248443,0.787989,0.736968,0.388781,0.0167893,0.73116,0.790889,0.170954,0.311578,0.484767,0.364733,0.630691,0.300575,0.390508,0.328096,0.109569,0.00539404,0.250414,0.521902,0.87871,0.748199,0.909405,0.857588,0.779847,0.324941,0.985915,0.406953,0.9249,0.817848,0.870755,0.82742,0.429697,0.249511,0.924325,0.92179,0.494351,0.81499,0.772695,0.993133,0.67786,0.635428,0.410264,0.675176,0.975467,0.945026,0.0528229,0.655943,0.17826,0.0641994,0.910802,0.22719,0.048506,0.80908,0.209554,0.266616,0.0398667,0.429126,0.0449979,0.808208,0.0573457,0.5053,0.218864,0.413352,0.801973,0.992856,0.112367,0.0511774,0.396939,0.726513,0.213443,0.723843,0.535616,0.817564,0.407713,0.697715,0.0724475,0.383088,0.204368,0.85819,0.362741,0.114797,0.35138,0.761324,0.947988,0.60264,0.468299,0.873275,0.727694,0.311318,0.411619,0.721231,0.378323,0.632695,0.996404,0.160532,0.142178,0.398889,0.35869,0.429109,0.0642454,0.43932,0.378884,0.81698,0.0564185,0.877162,0.623228,0.902956,0.373665,0.444418,0.493831,0.992451,0.540214,0.421625,0.042863,0.281408,0.558824,0.362841,0.724735,0.609179,0.224837,0.167425,0.174514,0.352763,0.630084,0.361062,0.503879,0.174469,0.677521,0.284767,0.836595,0.436883,0.306885,0.684859,0.795939,0.654458,0.420315,0.65479,0.654765,0.0728872,0.60885,0.555083,0.18667,0.381537,0.510334,0.0488978,0.305233,0.725529,0.278879,0.368735,0.647702,0.369921,0.772109,0.436274,0.890632,0.964723,0.681777,0.822861,0.506217,0.5287,0.270606,0.0338957,0.327534,0.730552,0.254893,0.793692,0.932596,0.120429,0.81059,0.548533,0.645384,0.687279,0.847115,0.729853,0.357348,0.0835438,0.656914,0.00771165,0.00821537,0.714899,0.912881,0.0703192,0.485429,0.574552,0.752391,0.952041,0.213725,0.0966763,0.383012,0.457577,0.747211,0.997127,0.823523,0.431683,0.203976,0.00935942,0.205864,0.112902,0.694212,0.00942993,0.746047,0.344824,0.178221,0.2167,0.573292,0.0897017,0.866682,0.506055,0.638669,0.328813,0.633143,0.715823,0.711089,0.365764,0.98747,0.960721,0.927687,0.368006,0.256912,0.658009,0.562233,0.750008,0.683646,0.0558203,0.676932,0.0527642,0.429955,0.589122,0.661478,0.0549853,0.249605,0.957994,0.740155,0.455576,0.524616,0.661561,0.944726,0.157451,0.680057,0.336378,0.494105,0.757176,0.168318,0.446921,0.577277,0.835682,0.65633,0.789429,0.471568,0.526868,0.222524,0.807216,0.643479,0.371674,0.843156,0.886575,0.0279453,0.48507,0.487027,0.274764,0.251968,0.295113,0.860169,0.919656,0.930411,0.614763,0.316493,0.637532,0.863376,0.987677,0.220445,0.756664,0.0559744,0.509602,0.755594,0.350954,0.916536,0.296427,0.268801,0.0699825,0.306703,0.607129,0.693842,0.859929,0.417148,0.0259725,0.413691,0.633415,0.159128,0.165365,0.395074,0.535064,0.693844,0.881932,0.177106,0.581773,0.688478,0.257946,0.962467,0.885018,0.635239,0.18956,0.601521,0.994605,0.0946388,0.0819125,0.65416,0.615509,0.212324,0.503569,0.451633,0.605517,0.193021,0.858725,0.429272,0.61866,0.48996,0.581217,0.562199,0.42019,0.711837,0.118746,0.832807,0.250186,0.193828,0.703991,0.133402,0.912454,0.996272,0.0561331,0.781319,0.687186,0.40231,0.311998,0.0660478,0.132127,0.574844,0.448383,0.210881,0.693278,0.511927,0.6091,0.866525,0.902677,0.675777,0.871876,0.222577,0.374281,0.507464,0.0271692,0.539308,0.652971,0.109444,0.480252,0.378692,0.253089,0.341952,0.281587,0.487422,0.664126,0.10456,0.131476,0.285157,0.632006,0.0511576,0.223568,0.94529,0.730617,0.669464,0.453764,0.519497,0.0260504,0.286856,0.297111,0.563778,0.679398,0.814346,0.84764,0.387237,0.53446,0.13123,0.786112,0.527574,0.605451,0.732306,0.588987,0.723355,0.904704,0.986038,0.891926,0.85879,0.746356,0.0168403,0.0957767,0.171819,0.178594,0.353268,0.411052,0.182672,0.514272,0.355841,0.242782,0.0921646,0.921882,0.228825,0.573748,0.108277,0.269219,0.127094,0.529069,0.927181,0.255375,0.94274,0.331327,0.173413,0.039158,0.0847654,0.567279,0.928162,0.789811,0.42991,0.679375,0.713641,0.712302,0.00849646,0.994904,0.559363,0.895259,0.130854,0.322651,0.191659,0.413222,0.181684,0.051847,0.724105,0.0744469,0.544647,0.83367,0.129498,0.413069,0.883281,0.597512,0.0831034,0.740431,0.325422,0.568602,0.0107446,0.771681,0.689072,0.440263,0.435265,0.947131,0.498039,0.779917,0.482936,0.991594,0.248128,0.897358,0.0880923,0.421575,0.0915393,0.257403,0.750197,0.0773073,0.767682,0.604607,0.35335,0.697052,0.403577,0.935897,0.299928,0.0827575,0.237815,0.199212,0.604658,0.0155182,0.145141,0.700571,0.775108,0.982241,0.992101,0.15051,0.743905,0.380904,0.316045,0.480939,0.620305,0.347823,0.136204,0.0175505,0.220068,0.0199357,0.993129,0.550941,0.0877196,0.479161,0.180018,0.490293,0.6614,0.904783,0.532377,0.301318,0.767223,0.988199,0.336362,0.157367,0.459101,0.895509,0.508905,0.0359185,0.0429103,0.316087,0.622822,0.573691,0.561928,0.37081,0.303695,0.733624,0.170383,0.436524,0.492027,0.94847,0.0220687,0.582731,0.969475,0.892539,0.788984,0.600716,0.384217,0.106304,0.443625,0.250695,0.252266,0.376863,0.0941167,0.853635,0.0795273,0.301638,0.670816,0.751398,0.516068,0.385811,0.0534617,0.231103,0.732594,0.525123,0.0713121,0.180158,0.528412,0.839099,0.501708,0.986653,0.731786,0.0715138,0.511872,0.84664,0.984489,0.501744,0.910962,0.217783,0.872737,0.857382,0.154521,0.333167,0.92019,0.0532343,0.231,0.334006,0.685977,0.702136,0.79016,0.0662334,0.893367,0.524945,0.255725,0.577117,0.63865,0.665239,0.683764,0.0880666,0.348683,0.215198,0.16833,0.684621,0.509019,0.826019,0.49093,0.239048,0.467043,0.203763,0.898771,0.70987,0.0112696,0.742379,0.134108,0.0513414,0.794719,0.418077,0.688193,0.247871,0.258052,0.25688,0.958091,0.0920411,0.133796,0.866539,0.154392,0.369289,0.935568,0.367028,0.631568,0.575796,0.969109,0.118664,0.764729,0.380336,0.882781,0.230893,0.52365,0.00327462,0.974566,0.46326,0.911874,0.0310996,0.583968,0.961479,0.87551,0.230293,0.629203,0.705327,0.423561,0.120318,0.236544,0.522352,0.989755,0.0522696,0.268725,0.873186,0.36573,0.298424,0.318618,0.0876762,0.559844,0.946873,0.737855,0.198313,0.264702,0.202234,0.086042,0.339756,0.860474,0.273031,0.39266,0.811716,0.370529,0.899343,0.561823,0.0296921,0.336503,0.726808,0.113388,0.107158,0.785639,0.176149,0.670258,0.180319,0.486783,0.78263,0.921174,0.803941,0.558889,0.793103,0.726769,0.954512,0.6333,0.124831,0.811157,0.112764,0.371763,0.943483,0.537974,0.795176,0.482802,0.361266,0.0603368,0.262512,0.535081,0.0999206,0.529761,0.247471,0.316703,0.149078,0.405795,0.276807,0.564747,0.741713,0.0628564,0.246159,0.964518,0.167539,0.78895,0.0413385,0.887541,0.917231,0.774814,0.983114,0.307411,0.60104,0.786038,0.834623,0.926551,0.316384,0.981998,0.165248,0.782755,0.267614,0.783442,0.154117,0.921882,0.87777,0.307867,0.360193,0.474018,0.473604,0.757312,0.743335,0.909513,0.0272949,0.86982,0.19758,0.953373,0.620504,0.0840856,0.930676,0.667678,0.939144,0.0812698,0.227141,0.956814,0.219169,0.647101,0.78892,0.729695,0.188015,0.68212,0.655244,0.797279,0.819547,|0.161336,0.706628,0.00707054,0.34169,0.228466,0.0856404,0.634227,0.782858,0.547978,0.86611,0.995983,0.375505,0.800978,0.666398,0.614448,0.273484,0.213017,0.217766,0.593813,0.0846034,0.779121,0.768654,0.74005,0.229734,0.445474,0.625696,0.981187,0.159954,0.136172,0.644439,0.661032,0.625289,0.00854635,0.993382,0.961405,0.335708,0.811195,0.979393,0.0285453,0.324976,0.235171,0.102402,0.896908,0.272547,0.108694,0.476494,0.0377048,0.889693,0.191935,0.175038,0.674127,0.0333735,0.975175,0.482448,0.537688,0.947452,0.611534,0.461513,0.582945,0.90457,0.142998,0.384161,0.956698,0.335837,0.0916281,0.646243,0.296586,0.141822,0.521078,0.631428,0.581192,0.32384,0.861775,0.432312,0.361709,0.705082,0.223468,0.337755,0.440369,0.806726,0.738883,0.929781,0.984819,0.564134,0.151901,0.812822,0.10257,0.4364,0.879706,0.759005,0.860335,0.262032,0.0612805,0.085061,0.422852,0.951539,0.0101123,0.18988,0.437943,0.110643,0.877143,0.708533,0.230326,0.585118,0.777246,0.239116,0.797194,0.0654025,0.0639032,0.579601,0.767769,0.28298,0.0573702,0.045454,0.178232,0.796851,0.745253,0.462149,0.501679,0.937167,0.588315,0.0519822,0.322061,0.368459,0.588488,0.676598,0.252106,0.718925,0.21519,0.0217605,0.331186,0.718242,0.497413,0.273476,0.275497,0.883372,0.0875718,0.9971,0.686038,0.356805,0.549743,0.696229,0.0907046,0.414134,0.324001,0.192736,0.166276,0.0831719,0.0884671,0.477064,0.613256,0.311935,0.806772,0.296057,0.19841,0.125765,0.640973,0.317304,0.925857,0.052892,0.0704771,0.185172,0.938354,0.74722,0.893403,0.381374,0.955079,0.932591,0.813799,0.917937,0.0292531,0.830581,0.473307,0.653421,0.666346,0.908835,0.279276,0.0822895,0.0525196,0.802414,0.598992,0.245403,0.163093,0.804194,0.0741595,0.0659497,0.201263,0.492909,0.970039,0.372628,0.436221,0.671747,0.163985,0.579037,0.963962,0.710247,0.109507,0.76956,0.471181,0.206336,0.461405,0.302428,0.342039,0.125756,0.716014,0.388098,0.881095,0.948584,0.951158,0.0815702,0.377819,0.172227,0.0637453,0.411327,0.638203,0.267432,0.00239515,0.403659,0.0465707,0.172502,0.955605,0.625746,0.505158,0.675051,0.576877,0.31317,0.272756,0.96091,0.286802,0.424425,0.990497,0.0986651,0.475999,0.768067,0.172158,0.610044,0.958412,0.533895,0.694263,0.353176,0.95153,0.764144,0.765639,0.275071,0.901276,0.557525,0.182732,0.818162,0.481769,0.62772,0.695656,0.426279,0.170276,0.397081,0.561073,0.70498,0.373796,0.538949,0.0150472,0.488803,0.668178,0.18526,0.15596,0.645691,0.336473,0.453295,0.965647,0.305947,0.253118,0.521388,0.988069,0.191852,0.951948,0.988474,0.604958,0.980414,0.221761,0.5246,0.339927,0.624017,0.344263,0.207294,0.0562919,0.711928,0.00395888,0.375923,0.439853,0.804377,0.148219,0.616707,0.23508,0.478162,0.615292,0.532382,0.881478,0.760592,0.499888,0.796428,0.982189,0.882228,0.955993,0.495856,0.267441,0.449495,0.539823,0.982707,0.723383,0.371306,0.293826,0.540247,0.272957,0.736995,0.465286,0.314064,0.764585,0.0220458,0.826992,0.304797,0.760519,0.497485,0.747177,0.519028,0.163915,0.97957,0.637349,0.660814,0.0577211,0.465686,0.90167,0.321467,0.630853,0.15564,0.535409,0.731334,0.910934,0.263023,0.601272,0.703709,0.391818,0.79495,0.88994,0.873918,0.798621,0.502617,0.501058,0.304762,0.379164,0.424495,0.321382,0.534001,0.737265,0.845181,0.49355,0.761314,0.2933,0.0998212,0.0264252,0.99275,0.377157,0.953552,0.121208,0.25146,0.146676,0.215162,0.920383,0.663411,0.717199,0.178739,0.363557,0.951572,0.212929,0.105718,0.171083,0.923874,0.693232,0.341079,0.710069,0.242968,0.269138,0.607821,0.447588,0.0582576,0.892022,0.0923327,0.228492,0.0702931,0.314924,0.0595182,0.521703,0.235169,0.29277,0.609816,0.525872,0.191575,0.959559,0.843806,0.256019,0.985311,0.930067,0.207749,0.956059,0.120168,0.964315,0.727221,0.16106,0.569184,0.742295,0.344294,0.867298,0.89478,0.282705,0.517238,0.809636,0.452475,0.352906,0.851544,0.64143,0.0212873,0.892966,0.684171,0.320344,0.389471,0.322287,0.559161,0.550926,0.664154,0.752302,0.934791,0.820145,0.408836,0.437111,0.474229,0.329629,0.261685,0.730165,0.256768,0.812397,0.705735,0.894308,0.316117,0.942124,0.767815,0.96244,0.0735045,0.368269,0.289311,0.624223,0.525105,0.551475,0.394687,0.70319,0.85346,0.369921,0.577452,0.977727,0.828482,0.631984,0.214807,0.911061,0.328925,0.702585,0.644112,0.824305,0.767043,0.531646,0.217086,0.325632,0.109497,0.81962,0.966186,0.774583,0.827033,0.609119,0.647864,0.286955,0.308661,0.76876,0.712947,0.155569,0.708251,0.879429,0.50401,0.883503,0.256932,0.0188717,0.921566,0.657795,0.95345,0.488823,0.904626,0.604632,0.235423,0.682627,0.910453,0.00241309,0.416613,0.760875,0.75646,0.0777549,0.757618,0.0590302,0.261354,0.0255501,0.86707,0.860504,0.669333,0.0607109,0.36627,0.0255519,0.102941,0.741906,0.425915,0.359019,0.531436,0.886753,0.781037,0.912513,0.447711,0.294074,0.612021,0.499784,0.882474,0.248333,0.442697,0.766794,0.178838,0.136422,0.360193,0.317677,0.284244,0.834634,0.397988,0.670581,0.482672,0.0961868,0.0531632,0.273798,0.57141,0.74174,0.161299,0.615455,0.684269,0.167484,0.198552,0.849055,0.709846,0.663333,0.679066,0.405668,0.245372,0.106638,0.234667,0.99568,0.84638,0.316086,0.897398,0.953239,0.35273,0.154291,0.677607,0.324415,0.314402,0.11913,0.687125,0.275085,0.290078,0.780956,0.851729,0.39509,0.682838,0.540874,0.339791,0.266731,0.436746,0.683433,0.405713,0.96195,0.592038,0.03877,0.440246,0.637342,0.205306,0.779424,0.124002,0.537576,0.584165,0.99708,0.467559,0.671207,0.769854,0.233405,0.475168,0.585592,0.689477,0.505961,0.555257,0.294078,0.295858,0.744994,0.448859,0.99156,0.931251,0.621804,0.460062,0.340087,0.825017,0.179621,0.479749,0.995255,0.0588493,0.996526,0.798664,0.0271857,0.972786,0.0951273,0.357798,0.409578,0.19698,0.268591,0.647358,0.926302,0.746713,0.92436,0.940762,0.810044,0.093656,0.945557,0.898155,0.107457,0.910561,0.134089,0.651176,0.411383,0.1981,0.208031,0.677137,0.2432,0.842395,0.714728,0.981084,0.440232,0.182874,0.442112,0.963435,0.723221,0.0379195,0.122533,0.259943,0.816251,0.563364,0.491486,0.430514,0.0151243,0.203162,0.936025,0.744774,0.77933,0.363204,0.521495,0.308244,0.814854,0.0328941,0.716092,0.45731,0.604664,0.816799,0.336885,0.492712,0.944676,0.262743,0.337782,0.796897,0.499971,0.687951,0.348808,0.150392,0.447572,0.0123802,0.418974,0.750696,0.770172,0.790497,0.29228,0.037951,0.804535,0.744085,0.988009,0.211273,0.787912,0.0667115,0.26965,0.977211,0.356743,0.735893,0.456902,0.78618,0.855456,0.75938,0.740174,0.85025,0.772567,0.721186,0.506535,0.315249,0.586673,0.833274,0.398542,0.694349,0.286133,0.432587,0.605448,0.966232,0.437222,0.387483,0.702949,0.0681429,0.983714,0.151221,0.375661,0.566414,0.157287,0.453442,0.526763,0.61879,0.727589,0.266839,0.820579,0.267745,0.610547,0.605932,0.515829,0.739849,0.199194,0.866819,0.181373,0.151243,0.590227,0.818385,0.843926,0.0485975,0.0857742,0.041319,0.92725,0.909628,0.602196,0.179579,0.56254,0.22992,0.438275,0.485202,0.146007,0.801878,0.632996,0.0478417,0.759779,0.5879,0.892337,0.461798,0.657533,0.611784,0.342982,0.53926,0.755798,0.311303,0.0596819,0.922057,0.570666,0.937119,0.32838,0.205451,0.980447,0.775979,0.426538,0.200059,0.464249,0.496938,0.121195,0.108377,0.214087,0.826498,0.574732,0.245391,0.996602,0.0150148,0.302986,0.971603,0.656125,0.950959,0.708936,0.369714,0.548063,0.379842,0.270411,0.345287,0.774552,0.971519,0.985171,0.403237,0.604033,0.617192,0.0933324,0.12962,0.178783,0.224275,0.223701,0.933942,0.339563,0.987599,0.245816,0.965244,0.452958,0.295853,0.334371,0.52946,0.771129,0.0295728,0.64014,0.408435,0.570327,0.0508764,0.475347,0.861548,0.652448,0.492976,0.519942,0.206574,0.807188,0.543677,0.575489,0.373396,0.91825,0.0814866,0.311062,0.0558064,0.557895,0.625297,0.647798,0.509155,0.6473,0.571791,0.510579,0.367255,0.96592,0.690699,0.102623,0.10793,0.810925,0.611847,0.155613,0.049464,0.271937,0.9457,0.455772,0.403537,0.493606,0.0329808,0.841069,0.0575335,0.474596,0.947146,0.842464,0.199406,0.411052,0.653298,0.652064,0.995794,0.577535,0.438163,0.81411,0.673539,0.576389,0.601162,0.624297,0.0434069,0.879996,0.442727,0.84424,0.875431,0.634285,0.316318,0.888269,0.990864,0.822974,0.504466,0.286271,0.225123,0.434229,0.462072,0.852564,0.854022,0.705857,0.471063,0.49991,0.929323,0.416845,0.0420583,0.522531,0.658446,0.282408,0.521594,0.121932,0.680228,0.197678,0.725682,0.524473,0.405303,0.0504786,0.326092,0.958568,0.934842,0.654328,0.228563,0.924994,0.058138,0.0994331,0.745409,0.159172,0.121687,0.046441,0.678649,0.395726,0.6082,0.335188,0.84096,0.119412,0.47196,0.404444,0.622265,0.211931,0.892968,0.81352,0.0842048,0.167195,0.734548,0.189741,0.687424,0.184221,0.18299,0.518164,0.654899,0.940584,0.808029,0.950164,0.0572808,0.882686,0.587375,0.667973,0.449751,0.388175,0.309667,0.843323,0.125253,0.0812114,0.918591,0.566439,0.698682,0.510233,0.913832,0.640506,0.771028,0.938996,0.248744,0.104336,0.470487,0.231543,0.674586,0.0813849,0.888069,0.1286,0.817761,0.967831,0.966906,0.0343445,0.87282,0.795276,0.839246,0.465298,0.0167285,0.412435,0.374001,0.434915,0.388955,0.887861,0.416634,0.780268,0.0414203,0.74481,0.667162,0.0283132,0.525786,0.571619,0.999644,0.0245336,0.152573,0.986846,0.937604,0.935508,0.457012,0.200324,0.352878,|0.18582,0.463181,0.555813,0.457123,0.459379,0.693928,0.579844,0.0105058,0.2716,0.270231,0.867424,0.597294,0.926629,0.426721,0.921983,0.23039,0.108847,0.450724,0.357759,0.345727,0.117164,0.323161,0.218583,0.721533,0.548124,0.0451463,0.108461,0.0219207,0.444241,0.112476,0.556418,0.0519176,0.352272,0.303459,0.556972,0.0105172,0.197429,0.0120928,0.269973,0.771421,0.352623,0.869116,0.43096,0.831539,0.768209,0.050523,0.113742,0.472236,0.887232,0.845216,0.158695,0.0577216,0.83409,0.224071,0.472701,0.613728,0.0534074,0.715546,0.313324,0.0403832,0.639778,0.961964,0.6269,0.986803,0.315037,0.209632,0.95342,0.301634,0.481239,0.909205,0.0555222,0.161507,0.270557,0.00926214,0.0138455,0.846604,0.924609,0.0996011,0.841076,0.436925,0.724791,0.953978,0.674695,0.43274,0.1118,0.543725,0.580146,0.376209,0.106805,0.600517,0.104698,0.74273,0.725627,0.487531,0.242816,0.0869687,0.0594524,0.848808,0.968018,0.577484,0.39334,0.89682,0.0129444,0.141379,0.132932,0.789687,0.904809,0.0642483,0.421975,0.719256,0.631071,0.185261,0.783831,0.387651,0.458418,0.148076,0.669469,0.257123,0.816779,0.556798,0.430279,0.0303576,0.497247,0.197574,0.137626,0.362058,0.97872,0.640109,0.362443,0.617269,0.0887579,0.504972,0.870149,0.649609,0.626677,0.526067,0.794191,0.782547,0.560309,0.39251,0.267781,0.976452,0.439723,0.271581,0.373741,0.642542,0.649639,0.21121,0.879039,0.680782,0.430754,0.351667,0.846894,0.857492,0.393731,0.801313,0.711398,0.957241,0.145535,0.669565,0.384647,0.352978,0.74577,0.698883,0.816401,0.224807,0.827085,0.204183,0.343191,0.184836,0.933435,0.514337,0.328139,0.860812,0.192296,0.567143,0.191017,0.609502,0.43561,0.991387,0.122686,0.00486028,0.89441,0.401796,0.838359,0.701405,0.474408,0.169018,0.994503,0.000287175,0.249621,0.263217,0.880958,0.530345,0.45989,0.718454,0.646322,0.138576,0.44041,0.709292,0.790797,0.96987,0.981094,0.166568,0.718261,0.997016,0.79641,0.282717,0.28395,0.181155,0.684186,0.143547,0.234901,0.183882,0.590092,0.747928,0.547387,0.162524,0.682777,0.581364,0.913398,0.744645,0.548393,0.305367,0.846014,0.369736,0.0278971,0.504396,0.152075,0.0130152,0.253583,0.892495,0.886942,0.643805,0.185271,0.576514,0.601661,0.481924,0.0826572,0.80416,0.301224,0.0959194,0.0022583,0.868223,0.210011,0.1641,0.488613,0.224017,0.345285,0.51131,0.546171,0.833367,0.495333,0.928053,0.838765,0.150931,0.8866,0.663128,0.0574082,0.305601,0.960767,0.303711,0.667098,0.28715,0.639022,0.34926,0.837878,0.492122,0.770459,0.607788,0.491783,0.78456,0.550945,0.312395,0.67602,0.870289,0.724845,0.134061,0.734512,0.858614,0.679536,0.320553,0.589217,0.269409,0.976385,0.679596,0.254115,0.805226,0.0288385,0.416357,0.800432,0.7536,0.869063,0.937868,0.731703,0.803857,0.656516,0.763958,0.553502,0.639563,0.135919,0.210409,0.542697,0.615023,0.302334,0.915013,0.18774,0.890754,0.183505,0.959131,0.628454,0.831605,0.432463,0.1475,0.733368,0.687486,0.423134,0.737134,0.322931,0.292598,0.427512,0.609957,0.928299,0.38136,0.463428,0.590182,0.277378,0.355159,0.590531,0.724061,0.490119,0.888658,0.12924,0.705697,0.267452,0.908035,0.805128,0.153021,0.511401,0.882648,0.236208,0.137439,0.26985,0.663191,0.95155,0.138675,0.795551,0.690207,0.368703,0.24801,0.285945,0.491792,0.975508,0.370392,0.892719,0.71193,0.23699,0.347921,0.121236,0.821142,0.470231,0.743585,0.737958,0.966135,0.849972,0.0861444,0.0800744,0.603289,0.255333,0.402793,0.703969,0.177554,0.332462,0.578576,0.1507,0.763223,0.736128,0.0638907,0.189028,0.272301,0.0364812,0.806957,0.374414,0.612161,0.922689,0.651146,0.616286,0.972368,0.150533,0.141878,0.410496,0.357035,0.893515,0.257543,0.87691,0.277566,0.71229,0.691024,0.463825,0.733607,0.208301,0.140172,0.489757,0.394564,0.852104,0.881215,0.34101,0.68801,0.776906,0.050044,0.162254,0.937169,0.207005,0.876438,0.804147,0.19879,0.585726,0.458913,0.0414495,0.928546,0.796186,0.745326,0.677865,0.144771,0.831571,0.112873,0.185848,0.276098,0.742528,0.866784,0.580659,0.891997,0.68242,0.260796,0.705529,0.595905,0.683869,0.431147,0.793555,0.122402,0.706087,0.578087,0.35452,0.714082,0.536101,0.851851,0.559854,0.983203,0.872332,0.148073,0.874782,0.561342,0.258539,0.945455,0.448861,0.540602,0.574584,0.385032,0.429219,0.963001,0.289819,0.745066,0.51049,0.880665,0.510868,0.955897,0.240158,0.111256,0.473142,0.578767,0.363328,0.619276,0.400207,0.358002,0.919826,0.607622,0.0958829,0.0558685,0.729176,0.21971,0.0640387,0.374048,0.659987,0.867387,0.377404,0.0839642,0.313382,0.741729,0.267727,0.0909688,0.243544,0.884564,0.747931,0.764838,0.703676,0.313142,0.0762814,0.100156,0.460208,0.451186,0.975384,0.276989,0.377494,0.653542,0.563563,0.245962,0.390746,0.677128,0.917165,0.892186,0.994933,0.180343,0.174175,0.351057,0.838014,0.0449501,0.631948,0.887429,0.987473,0.517634,0.046689,0.728726,0.430056,0.454707,0.0435559,0.796972,0.732186,0.929366,0.295605,0.118926,0.427832,0.875161,0.690711,0.339632,0.278486,0.323559,0.523317,0.977815,0.0131748,0.963018,0.362961,0.402964,0.238336,0.6313,0.424454,0.608155,0.899319,0.858414,0.352612,0.909882,0.426797,0.336188,0.92055,0.297283,0.853544,0.927997,0.151555,0.385275,0.898755,0.217735,0.074145,0.653239,0.164467,0.763545,0.973801,0.54058,0.0975146,0.663859,0.9393,0.226376,0.622919,0.092575,0.559016,0.0157126,0.682473,0.0227988,0.136118,0.675135,0.34933,0.437997,0.683497,0.131741,0.151584,0.109933,0.530772,0.91747,0.124567,0.954203,0.762199,0.499405,0.818376,0.794164,0.840476,0.112578,0.2085,0.0292637,0.244897,0.239848,0.340824,0.311269,0.559996,0.425118,0.602061,0.872082,0.0626658,0.453851,0.279183,0.133279,0.757506,0.302485,0.589273,0.638205,0.259602,0.601216,0.125842,0.723743,0.853554,0.456905,0.0301491,0.847655,0.500028,0.0514815,0.732492,0.611695,0.58465,0.979882,0.508865,0.547832,0.541646,0.560112,0.570922,0.535171,0.715971,0.911144,0.555446,0.96118,0.415706,0.555547,0.182363,0.0172813,0.0606164,0.204235,0.342707,0.206804,0.85571,0.97931,0.13614,0.804325,0.127536,0.968087,0.190385,0.907997,0.0565829,0.0433274,0.945031,0.189376,0.159909,0.0801889,0.207863,0.603507,0.921537,0.035983,0.30994,0.433685,0.655332,0.079872,0.858104,0.61948,0.0350013,0.790989,0.64207,0.0290011,0.0938471,0.897884,0.115989,0.526643,0.881595,0.545894,0.751581,0.561098,0.643382,0.666486,0.225856,0.231123,0.0252784,0.103461,0.0222692,0.982474,0.620022,0.00814849,0.339489,0.651546,0.987323,0.30454,0.925082,0.221238,0.554846,0.0902596,0.25996,0.655269,0.801408,0.934041,0.249244,0.0683933,0.0889292,0.627009,0.237425,0.818578,0.317144,0.850638,0.345697,0.740195,0.267778,0.0829314,0.895591,0.277854,0.61578,0.225864,0.985294,0.966581,0.823596,0.191703,0.920707,0.315233,0.744883,0.00886756,0.213677,0.848789,0.569215,0.769899,0.606792,0.720568,0.987027,0.206336,0.196066,0.700774,0.360182,0.265243,0.173933,0.272501,0.828313,0.463334,0.199984,0.980969,0.611298,0.11617,0.00832933,0.918504,0.727009,0.24544,0.0993164,0.829377,0.0714929,0.637292,0.638139,0.561388,0.252874,0.221507,0.833743,0.519963,0.20427,0.0781509,0.854161,0.865561,0.840673,0.180099,0.115978,0.697637,0.464787,0.534444,0.0659073,0.871106,0.899991,0.143663,0.279526,0.334513,0.348575,0.516235,0.87735,0.0710589,0.995875,0.482513,0.0410711,0.317627,0.311133,0.607473,0.989889,0.310699,0.99724,0.03232,0.925351,0.749265,0.555184,0.887886,0.656122,0.427514,0.499285,0.00722617,0.660411,0.975746,0.17417,0.327174,0.712659,0.356467,0.0441397,0.765905,0.924296,0.23934,0.485155,0.578215,0.658448,0.837221,0.193901,0.548814,0.937244,0.793486,0.892949,0.259726,0.541969,0.19686,0.530008,0.59719,0.888386,0.591505,0.647703,0.23394,0.051038,0.187374,0.70063,0.00803334,0.475527,0.446711,0.0800181,0.762513,0.810602,0.239549,0.0504757,0.576674,0.912063,0.41091,0.277008,0.771308,0.934908,0.293024,0.436919,0.493908,0.600973,0.75354,0.581908,0.313961,0.548334,0.882075,0.551431,0.813596,0.692171,0.328085,0.407916,0.159238,0.743545,0.134666,0.884241,0.874234,0.368772,0.313408,0.712243,0.462191,0.873113,0.480937,0.278954,0.941221,0.648269,0.328578,0.829335,0.0763896,0.976529,0.319234,0.193447,0.790588,0.646839,0.335718,0.758366,0.332825,0.0248851,0.401555,0.465096,0.0489324,0.284424,0.992117,0.59323,0.122282,0.124682,0.269569,0.216652,0.809072,0.602834,0.857243,0.666961,0.107023,0.871401,0.956415,0.231465,0.398562,0.545477,0.553441,0.283713,0.458018,0.800076,0.430805,0.352547,0.161295,0.511954,0.401592,0.294062,0.756388,0.1251,0.101894,0.67584,0.995018,0.871198,0.000830114,0.0288474,0.40987,0.617468,0.435442,0.820836,0.927323,0.317985,0.82925,0.795049,0.549325,0.570509,0.296441,0.738341,0.35541,0.883842,0.856382,0.401304,0.459879,0.921395,0.683616,0.236102,0.896329,0.74043,0.937299,0.4276,0.736776,0.850958,0.603144,0.162693,0.759529,0.935093,0.482484,0.0720986,0.466679,0.709033,0.576488,0.241576,0.915087,0.938256,0.834557,0.197897,0.543858,0.236748,0.35209,0.750204,0.356024,0.257374,0.986486,0.179378,0.608893,0.292819,0.1452,0.0947506,0.602949,0.437567,0.197685,0.896429,0.611451,0.402641,0.0354527,0.924974,0.536806,0.947891,0.385962,0.168936,0.7925,0.63378,0.309723,0.324825,0.311248,0.306609,0.402359,0.774727,0.482165,0.495229,0.274532,0.121622,0.940235,0.695469,0.717716,|0.223807,0.456924,0.671981,0.726258,0.0976897,0.459187,0.536099,0.511584,0.120157,0.503516,0.104144,0.390197,0.0417832,0.767668,0.718566,0.473072,0.151346,0.445491,0.691924,0.217725,0.513601,0.462822,0.300052,0.498915,0.447869,0.597733,0.109835,0.309469,0.776396,0.717308,0.266442,0.356338,0.610582,0.250751,0.437757,0.641018,0.648001,0.491464,0.601941,0.585479,0.348488,0.41862,0.256172,0.389741,0.997478,0.182914,0.855856,0.806636,0.310948,0.231832,0.501097,0.578247,0.105184,0.536653,0.0448406,0.427253,0.0512045,0.75007,0.92644,0.543555,0.070554,0.708748,0.656278,0.544149,0.915374,0.855927,0.710559,0.603259,0.847947,0.44861,0.6619,0.0255941,0.729023,0.360647,0.159535,0.911395,0.539744,0.37849,0.0580871,0.819793,0.52754,0.614116,0.722033,0.599382,0.952746,0.273887,0.862726,0.856025,0.48681,0.0558312,0.749817,0.772315,0.399259,0.955888,0.290856,0.468764,0.288097,0.999427,0.371427,0.80454,0.727345,0.0412244,0.257066,0.479929,0.929842,0.169107,0.972909,0.884145,0.416148,0.642718,0.977593,0.776079,0.53352,0.32474,0.452865,0.633559,0.534406,0.219955,0.0363001,0.643339,0.712851,0.551791,0.667898,0.537469,0.539283,0.277786,0.310851,0.31,0.440065,0.638981,0.748604,0.977815,0.493708,0.540886,0.755773,0.224925,0.663743,0.546829,0.024586,0.119432,0.503033,0.745079,0.391072,0.500416,0.686027,0.439304,0.22076,0.913462,0.573295,0.271158,0.365269,0.853594,0.835973,0.812016,0.369231,0.798868,0.643066,0.333964,0.765506,0.960134,0.54419,0.660162,0.635775,0.467551,0.777075,0.613356,0.805214,0.376131,0.854206,0.601132,0.192098,0.670998,0.924153,0.0421821,0.0733224,0.381338,0.240747,0.611949,0.351066,0.495539,0.93889,0.179556,0.648813,0.120924,0.298382,0.360125,0.41847,0.485943,0.174032,0.130438,0.728696,0.963987,0.730212,0.0633923,0.978009,0.594359,0.48801,0.936863,0.366832,0.0606533,0.753084,0.713764,0.166678,0.761152,0.0268955,0.848534,0.733186,0.700404,0.461529,0.0475501,0.25768,0.966759,0.144364,0.838325,0.57979,0.733845,0.82058,0.123766,0.000918925,0.532425,0.0996315,0.445462,0.962387,0.345723,0.578624,0.634648,0.427414,0.267535,0.416577,0.487803,0.491189,0.558073,0.0550812,0.97,0.705353,0.767164,0.252309,0.31931,0.723752,0.9903,0.571916,0.0459899,0.16291,0.303127,0.59086,0.308561,0.589379,0.539553,0.143576,0.585057,0.0604854,0.906541,0.732294,0.607885,0.209543,0.855074,0.190327,0.752912,0.378277,0.838563,0.923029,0.116106,0.804554,0.488868,0.254315,0.00174206,0.218457,0.559325,0.47562,0.817733,0.119824,0.424653,0.798266,0.135963,0.151167,0.908647,0.493725,0.354314,0.184099,0.173259,0.632568,0.983652,0.0080685,0.224448,0.676047,0.843919,0.80221,0.26829,0.503877,0.93082,0.585287,0.28974,0.638971,0.906497,0.531178,0.56348,0.362838,0.340731,0.78095,0.514769,0.872091,0.420309,0.623818,0.774363,0.753692,0.773932,0.496548,0.667432,0.841218,0.196596,0.581081,0.808338,0.821671,0.349361,0.426011,0.130541,0.946183,0.805634,0.0715153,0.112747,0.370869,0.253673,0.0578078,0.639341,0.129413,0.589817,0.266475,0.752609,0.354577,0.679416,0.327103,0.29587,0.935862,0.224093,0.0845021,0.672772,0.480363,0.478619,0.379468,0.702823,0.664225,0.612237,0.944516,0.406862,0.839831,0.749944,0.041167,0.978612,0.827082,0.335106,0.355833,0.0274947,0.930157,0.414868,0.298862,0.529659,0.184047,0.58513,0.709288,0.844795,0.343679,0.301289,0.800008,0.579271,0.652039,0.636161,0.637699,0.987789,0.1468,0.235299,0.733948,0.249923,0.958261,0.176172,0.940083,0.0769345,0.421905,0.770876,0.868115,0.552337,0.376091,0.122773,0.952571,0.790285,0.408891,0.124821,0.390453,0.0708793,0.474918,0.128342,0.110037,0.912715,0.414472,0.591217,0.685301,0.156958,0.0265523,0.732668,0.218467,0.549333,0.913372,0.0745453,0.113399,0.987045,0.75112,0.500513,0.921888,0.818055,0.939392,0.393991,0.730622,0.829577,0.751535,0.548321,0.754997,0.485352,0.99154,0.92957,0.503887,0.100793,0.599734,0.185607,0.843435,0.521637,0.587003,0.456927,0.447428,0.826434,0.28982,0.0153766,0.261909,0.784669,0.313012,0.263246,0.0238665,0.578504,0.42793,0.576664,0.298634,0.27475,0.658182,0.24955,0.356348,0.918784,0.451363,0.111656,0.495161,0.672195,0.300828,0.483949,0.221028,0.52424,0.536493,0.142631,0.502468,0.565172,0.36498,0.332272,0.420561,0.938605,0.820151,0.303241,0.436197,0.856626,0.688964,0.977218,0.898839,0.0830374,0.0884742,0.822656,0.966654,0.205541,0.902234,0.659135,0.330451,0.19828,0.887117,0.87009,0.979269,0.41751,0.608191,0.559381,0.253308,0.600581,0.779332,0.661481,0.125847,0.136035,0.282722,0.0864393,0.846483,0.31239,0.151347,0.486119,0.846348,0.551918,0.864173,0.935589,0.448797,0.253311,0.485627,0.892474,0.639132,0.361482,0.803362,0.11021,0.137277,0.116191,0.71468,0.935676,0.736892,0.874273,0.445452,0.385117,0.680192,0.431529,0.728949,0.0441609,0.217873,0.961794,0.0186049,0.181249,0.460366,0.946805,0.812875,0.757808,0.150321,0.738958,0.583131,0.150715,0.0817169,0.845505,0.816418,0.296061,0.166531,0.363985,0.342562,0.446273,0.896247,0.680401,0.291626,0.189053,0.802383,0.38111,0.751523,0.11956,0.999379,0.267956,0.435688,0.360593,0.446415,0.225157,0.677289,0.106346,0.0276079,0.225677,0.770374,0.611818,0.409104,0.794175,0.497039,0.990443,0.0851609,0.806398,0.396688,0.766059,0.693782,0.557338,0.82162,0.0563063,0.0528471,0.308997,0.910735,0.775186,0.935011,0.933806,0.958777,0.627366,0.0864604,0.503957,0.367988,0.905454,0.429342,0.953634,0.988859,0.656599,0.810816,0.399413,0.207969,0.937146,0.627847,0.160326,0.559716,0.832442,0.554314,0.152142,0.688905,0.173727,0.979916,0.200926,0.0362123,0.420394,0.0801979,0.944486,0.628808,0.380842,0.520699,0.293343,0.866845,0.612352,0.0975348,0.83655,0.690532,0.763984,0.500363,0.492024,0.779338,0.851236,0.274465,0.311685,0.767975,0.42849,0.0729913,0.627649,0.494132,0.656969,0.530763,0.39927,0.406908,0.868075,0.080194,0.50672,0.41747,0.183165,0.978831,0.889241,0.727128,0.910831,0.824137,0.6099,0.170711,0.767495,0.098865,0.597445,0.984255,0.723771,0.693328,0.988406,0.0752625,0.147549,0.41791,0.938305,0.901651,0.513185,0.520613,0.549404,0.534417,0.979073,0.982739,0.486615,0.818605,0.246824,0.924144,0.00176978,0.0460275,0.0978253,0.195476,0.873242,0.394136,0.402073,0.915248,0.122737,0.424365,0.75046,0.0171561,0.605739,0.290885,0.999483,0.134372,0.677354,0.998887,0.901604,0.199028,0.687598,0.694898,0.591287,0.545412,0.301992,0.285954,0.148681,0.15068,0.200213,0.845591,0.724567,0.603569,0.751336,0.906362,0.584258,0.933342,0.294565,0.426326,0.993616,0.502822,0.712439,0.289851,0.246026,0.248999,0.0659342,0.461803,0.555521,0.895217,0.327026,0.656514,0.365534,0.800597,0.746743,0.959703,0.508056,0.827062,0.066088,0.235098,0.859728,0.962416,0.206993,0.238277,0.420634,0.590826,0.584858,0.412608,0.252388,0.59312,0.466634,0.590039,0.611869,0.289757,0.12254,0.23808,0.588243,0.300911,0.10264,0.623376,0.408521,0.0433766,0.640815,0.763834,0.770833,0.683754,0.958275,0.653911,0.401565,0.790179,0.258172,0.351114,0.363864,0.958166,0.838652,0.0662405,0.322792,0.140079,0.892434,0.63182,0.808574,0.729182,0.496656,0.99434,0.215588,0.0652452,0.14559,0.730509,0.0718825,0.567023,0.28597,0.89253,0.678259,0.131583,0.260799,0.478805,0.49018,0.376009,0.864643,0.22492,0.331019,0.782295,0.847067,0.463153,0.788701,0.335536,0.685319,0.774138,0.714795,0.420772,0.273997,0.930207,0.116941,0.174756,0.707399,0.14619,0.761772,0.139365,0.985387,0.476401,0.0846091,0.0678335,0.261219,0.464546,0.700151,0.153229,0.3544,0.248003,0.296911,0.00287199,0.0730119,0.369169,0.155511,0.444017,0.898758,0.0736515,0.968866,0.60784,0.500045,0.720595,0.329371,0.0523107,0.433691,0.9848,0.910356,0.930836,0.20639,0.920982,0.404524,0.500579,0.799225,0.357751,0.951385,0.65487,0.0906557,0.630386,0.665418,0.863049,0.105531,0.511894,0.991756,0.198719,0.282746,0.381669,0.68301,0.0601198,0.021323,0.108765,0.122424,0.270459,0.828092,0.762408,0.629079,0.0718899,0.30725,0.235877,0.556793,0.411355,0.505995,0.569243,0.0790231,0.139096,0.193508,0.689601,0.334982,0.120407,0.176405,0.732831,0.89439,0.0153253,0.0700068,0.771517,0.632184,0.924487,0.835215,0.972838,0.372448,0.368862,0.609867,0.0595569,0.241054,0.500941,0.822031,0.226837,0.315283,0.927,0.496803,0.45561,0.537654,0.438336,0.786737,0.858834,0.886168,0.831704,0.796325,0.0434231,0.847609,0.764349,0.703851,0.957036,0.97811,0.282507,0.655211,0.432611,0.277604,0.305221,0.0275007,0.58276,0.811023,0.938894,0.86265,0.844442,0.909147,0.621264,0.557108,0.931321,0.861651,0.044726,0.882238,0.645776,0.445681,0.472446,0.25459,0.734796,0.0124086,0.287501,0.0510908,0.0424982,0.778147,0.1141,0.349423,0.942891,0.479458,0.500581,0.49297,0.872887,0.357647,0.866545,0.725723,0.867437,0.440437,0.209199,0.568033,0.747754,0.755092,0.785411,0.716793,0.171789,0.42308,0.296504,0.953789,0.629019,0.181517,0.0190513,0.396053,0.866971,0.43831,0.0356396,0.472032,0.546809,0.469191,0.931727,0.163231,0.1199,0.820548,0.385757,0.451845,0.257381,0.410922,0.66381,0.821057,0.836768,0.218319,0.233117,0.478512,0.694151,0.562327,0.552309,0.409566,0.263619,0.883346,0.585445,0.379086,0.163676,0.57922,0.538052,0.157735,0.957987,0.119897,0.838678,0.7173,0.701225,0.438814,0.855882,0.42735,0.0800424,0.0569561,0.372286,0.561033,|0.413658,0.743566,0.207662,0.517651,0.423013,0.23344,0.641769,0.328381,0.908248,0.418843,0.137169,0.760916,0.233606,0.119411,0.171142,0.868996,0.0453416,0.750083,0.830927,0.698669,0.584912,0.665278,0.574238,0.147131,0.317465,0.595944,0.399818,0.349323,0.483864,0.654732,0.629282,0.526094,0.635786,0.828664,0.633202,0.643859,0.469808,0.477766,0.961299,0.323976,0.139088,0.0960509,0.437228,0.623026,0.353538,0.900381,0.161066,0.0276422,0.506408,0.09174,0.905575,0.454539,0.574674,0.0957038,0.827371,0.706977,0.82401,0.202236,0.754844,0.751652,0.856855,0.473624,0.227461,0.0699062,0.896451,0.922478,0.580905,0.393195,0.792607,0.667362,0.882868,0.685974,0.238806,0.364198,0.83713,0.225003,0.0153378,0.757877,0.137176,0.456229,0.653381,0.601719,0.289156,0.904083,0.36855,0.752277,0.271879,0.969355,0.545402,0.801054,0.441057,0.0182669,0.78817,0.934798,0.915313,0.0232059,0.797954,0.742803,0.290333,0.694769,0.423746,0.520738,0.59888,0.18794,0.396006,0.109153,0.208328,0.597353,0.0651147,0.63729,0.363734,0.821206,0.0809377,0.274498,0.479513,0.737194,0.857381,0.634771,0.592311,0.239421,0.625195,0.895926,0.0407356,0.470764,0.191938,0.45837,0.965078,0.0270762,0.348132,0.601222,0.962712,0.642973,0.205648,0.536559,0.546428,0.00420749,0.0619619,0.72502,0.369826,0.842086,0.993588,0.199049,0.717489,0.854057,0.597921,0.170877,0.365933,0.477328,0.034406,0.848789,0.610242,0.27325,0.774718,0.13109,0.824469,0.345609,0.937079,0.296266,0.735769,0.733404,0.440311,0.882747,0.206101,0.3983,0.683604,0.109288,0.426061,0.834038,0.534348,0.350536,0.14556,0.179138,0.363603,0.370797,0.263846,0.513424,0.703829,0.933847,0.127916,0.0874366,0.94115,0.293801,0.670516,0.3901,0.107964,0.869552,0.240128,0.568813,0.869933,0.74719,0.446773,0.906152,0.637883,0.275436,0.610414,0.774272,0.0169057,0.486679,0.59358,0.969904,0.628748,0.866139,0.462119,0.396008,0.85354,0.795428,0.791189,0.395375,0.63936,0.385283,0.925379,0.917532,0.289684,0.687922,0.726249,0.53781,0.0925341,0.564744,0.672743,0.00387812,0.897783,0.711553,0.329206,0.574986,0.150548,0.114958,0.407651,0.901896,0.880978,0.998585,0.2701,0.284313,0.20699,0.0895892,0.0130442,0.52898,0.591202,0.310728,0.725163,0.845732,0.328161,0.528849,0.891946,0.0973984,0.678269,0.027572,0.644623,0.873408,0.89048,0.0270446,0.816885,0.365362,0.159044,0.580189,0.475016,0.444051,0.873813,0.200038,0.508907,0.186911,0.293553,0.530758,0.859433,0.820169,0.488709,0.962131,0.66012,0.654165,0.354961,0.439584,0.771646,0.0708583,0.717553,0.22088,0.364289,0.631989,0.731614,0.58377,0.590466,0.562864,0.59856,0.134317,0.0653647,0.17345,0.473066,0.973289,0.241102,0.824462,0.133723,0.0693941,0.0555351,0.497742,0.662097,0.967753,0.042143,0.230076,0.240803,0.404419,0.967874,0.825345,0.986071,0.324565,0.227217,0.247601,0.0293309,0.0120359,0.0838377,0.379613,0.307114,0.611449,0.411061,0.892399,0.712632,0.680492,0.329236,0.751833,0.392756,0.360817,0.428078,0.479364,0.591515,0.811031,0.898858,0.36838,0.0164472,0.0861446,0.999283,0.553532,0.362861,0.173945,0.617216,0.856687,0.76695,0.53367,0.912439,0.666691,0.691352,0.220332,0.701384,0.552194,0.16072,0.627236,0.674164,0.115263,0.210478,0.408218,0.544739,0.30428,0.204287,0.936425,0.573021,0.619399,0.436574,0.968767,0.370225,0.480311,0.099504,0.565521,0.862803,0.932098,0.249522,0.969694,0.459653,0.130209,0.977973,0.163233,0.25545,0.950856,0.747468,0.901758,0.985043,0.396541,0.875203,0.888425,0.443668,0.653246,0.868944,0.326856,0.623544,0.0692679,0.724212,0.364575,0.877495,0.322323,0.0679141,0.830278,0.354042,0.730857,0.686701,0.693097,0.00670046,0.0939655,0.164623,0.872182,0.0700358,0.280966,0.93405,0.193859,0.677259,0.334977,0.573938,0.303986,0.944146,0.524527,0.375617,0.358007,0.112882,0.01241,0.235765,0.940134,0.528392,0.0810804,0.657579,0.20096,0.79409,0.726937,0.362178,0.718308,0.867929,0.41479,0.541789,0.338659,0.841806,0.446827,0.99778,0.0687442,0.854069,0.879821,0.187608,0.714104,0.475152,0.965771,0.251646,0.3945,0.653647,0.084366,0.398987,0.201435,0.367767,0.792101,0.133948,0.149412,0.439399,0.265044,0.942092,0.754317,0.348502,0.211705,0.999673,0.605552,0.83027,0.618797,0.99114,0.170633,0.962088,0.767004,0.719471,0.434901,0.825535,0.468568,0.576481,0.548121,0.606434,0.439256,0.258705,0.613514,0.0343794,0.0793889,0.511051,0.86516,0.42067,0.316226,0.177042,0.0715878,0.326829,0.0431511,0.6331,0.129731,0.489259,0.176789,0.319409,0.552083,0.891056,0.83646,0.775147,0.462136,0.745949,0.739075,0.224525,0.319036,0.518348,0.51908,0.439559,0.494858,0.529391,0.323029,0.967771,0.62298,0.643246,0.922209,0.886037,0.0597783,0.773287,0.858666,0.136543,0.88212,0.193213,0.324476,0.0478097,0.762079,0.272005,0.0613764,0.642189,0.0293902,0.773911,0.60106,0.737925,0.343992,0.0682799,0.347335,0.440784,0.391018,0.487435,0.530981,0.652506,0.374636,0.479797,0.352024,0.742601,0.174794,0.460203,0.167773,0.861294,0.22491,0.461086,0.38322,0.0597907,0.573724,0.310353,0.36071,0.12121,0.209173,0.206893,0.410959,0.276709,0.697862,0.920124,0.879309,0.0759035,0.845239,0.157836,0.197574,0.960027,0.852628,0.0569434,0.146405,0.738587,0.109476,0.632527,0.76369,0.0819081,0.807035,0.87017,0.600961,0.987482,0.194234,0.213809,0.573967,0.0198914,0.244947,0.537409,0.763428,0.0585335,0.918526,0.493481,0.973864,0.146906,0.263788,0.0777027,0.901582,0.101407,0.554625,0.47996,0.0359346,0.0706285,0.0413815,0.532073,0.192271,0.0902145,0.206416,0.730775,0.531606,0.0989918,0.533067,0.156184,0.015177,0.763159,0.611252,0.521975,0.799732,0.966969,0.71579,0.796186,0.43395,0.517653,0.851194,0.91096,0.657975,0.915194,0.168766,0.0132448,0.313018,0.289509,0.802908,0.784769,0.554981,0.891662,0.509051,0.750279,0.0621515,0.396686,0.7826,0.438514,0.800066,0.551965,0.385344,0.10092,0.26369,0.595232,0.354791,0.285114,0.48107,0.62725,0.953721,0.766025,0.719342,0.233845,0.84702,0.443355,0.333524,0.144714,0.410333,0.452229,0.708141,0.285635,0.407667,0.276149,0.207248,0.961968,0.109218,0.816943,0.716464,0.408288,0.283634,0.0327311,0.537922,0.36559,0.36593,0.50631,0.939292,0.483868,0.296381,0.0789582,0.360306,0.781968,0.555517,0.318847,0.64902,0.413464,0.97718,0.276696,0.96977,0.422391,0.691263,0.237431,0.978182,0.68476,0.932047,0.580479,0.955925,0.372725,0.364735,0.340928,0.335764,0.470478,0.716961,0.75361,0.503774,0.129032,0.706779,0.0233847,0.324263,0.767142,0.505127,0.522791,0.630852,0.883797,0.21755,0.83556,0.567124,0.190316,0.999207,0.126033,0.174953,0.328631,0.691868,0.903433,0.0760896,0.845269,0.782457,0.590781,0.0459238,0.955497,0.0535001,0.950335,0.103769,0.238336,0.625801,0.970588,0.858056,0.68352,0.319016,0.982626,0.137528,0.13675,0.536466,0.369774,0.0660719,0.534046,0.335271,0.156379,0.601914,0.577217,0.800735,0.525334,0.554081,0.161613,0.696289,0.706163,0.741686,0.123089,0.843274,0.371344,0.459372,0.910226,0.864811,0.0216396,0.398846,0.116836,0.708177,0.096283,0.24879,0.976942,0.553215,0.401558,0.819495,0.962818,0.577006,0.696023,0.134486,0.141707,0.536061,0.920268,0.235479,0.210487,0.953256,0.789855,0.672637,0.29125,0.87874,0.660977,0.142059,0.0732743,0.561703,0.307546,0.165711,0.109757,0.402021,0.605337,0.492545,0.125352,0.343681,0.982651,0.135243,0.084305,0.548985,0.164545,0.263386,0.230335,0.605567,0.655188,0.995964,0.644375,0.436939,0.740376,0.717572,0.748608,0.441445,0.693571,0.830587,0.061312,0.754005,0.635792,0.171487,0.384749,0.671324,0.612871,0.668885,0.377025,0.0641443,0.124495,0.815853,0.963308,0.682394,0.818319,0.335247,0.544204,0.89825,0.0127247,0.191516,0.158506,0.965106,0.0619969,0.368177,0.169885,0.146821,0.842352,0.825445,0.711505,0.773555,0.619091,0.793721,0.522855,0.394783,0.509171,0.784792,0.887546,0.214595,0.130939,0.381037,0.628737,0.682227,0.455249,0.462804,0.0675949,0.340878,0.509639,0.695709,0.454619,0.546062,0.161137,0.565896,0.207869,0.173921,0.179496,0.702692,0.834602,0.834955,0.665193,0.367316,0.659726,0.750261,0.64829,0.201243,0.850752,0.441152,0.437907,0.563296,0.54296,0.412247,0.305976,0.184588,0.231281,0.999936,0.317057,0.525024,0.269682,0.939397,0.171888,0.419358,0.264123,0.199717,0.46709,0.320797,0.973412,0.180681,0.329709,0.993857,0.86538,0.632182,0.00034678,0.514139,0.920407,0.0222057,0.962254,0.0677082,0.44513,0.905679,0.209247,0.424373,0.309576,0.532655,0.0143133,0.306686,0.755862,0.437723,0.229523,0.277872,0.263935,0.94151,0.18853,0.177906,0.407914,0.188115,0.587183,0.820673,0.636482,0.468623,0.405766,0.252657,0.728809,0.811526,0.943262,0.650045,0.404522,0.559572,0.495986,0.124169,0.826303,0.877759,0.912721,0.4988,0.358509,0.661744,0.591736,0.616352,0.216641,0.302417,0.412779,0.28174,0.0699549,0.772551,0.0569864,0.480014,0.219864,0.666704,0.245403,0.254662,0.494797,0.304007,0.728055,0.940807,0.0582913,0.185248,0.283702,0.0462132,0.333409,0.264787,0.0745386,0.970874,0.157683,0.781496,0.965808,0.123279,0.691928,0.882127,0.392615,0.296637,0.644058,0.309374,0.461582,0.535689,0.561854,0.286993,0.76162,0.387451,0.754575,0.848548,0.0248278,0.495787,0.53838,0.892995,0.975354,0.217738,0.688548,0.632562,0.106067,0.556884,0.159645,0.836423,0.542628,0.0637402,0.451726,0.202241,0.633837,0.460768,0.653185,0.514255,0.530353,0.792687,|0.746558,0.925439,0.389984,0.34827,0.803634,0.237422,0.396778,0.531607,0.0693014,0.976392,0.45754,0.222452,0.795985,0.597218,0.281882,0.0257539,0.358035,0.0612049,0.198479,0.560065,0.359789,0.179071,0.0117808,0.458477,0.149864,0.476476,0.9257,0.520157,0.293799,0.663429,0.107009,0.565887,0.162429,0.205777,0.655879,0.6784,0.195895,0.0810916,0.197271,0.119566,0.262189,0.893695,0.948169,0.799356,0.0641841,0.336122,0.16614,0.965888,0.334472,0.47597,0.67443,0.376439,0.0796633,0.0359564,0.962556,0.9223,0.444776,0.586235,0.365706,0.205071,0.788659,0.71978,0.631875,0.363154,0.122929,0.191428,0.145162,0.399613,0.243171,0.161443,0.558533,0.32779,0.943412,0.981759,0.616786,0.00688386,0.63098,0.215721,0.0743461,0.425656,0.602495,0.409907,0.369694,0.119195,0.989448,0.0224033,0.597551,0.719984,0.562311,0.627683,0.210122,0.260837,0.103558,0.707125,0.524557,0.645841,0.308089,0.480914,0.923831,0.144598,0.820627,0.370442,0.399106,0.782754,0.0177482,0.889796,0.953226,0.293021,0.071268,0.0608091,0.726695,0.896518,0.356564,0.144375,0.711833,0.512065,0.351811,0.439844,0.293998,0.772684,0.658868,0.0180866,0.608046,0.321538,0.339213,0.0873445,0.227003,0.321109,0.187153,0.146514,0.729058,0.462998,0.583752,0.587671,0.976797,0.303145,0.921833,0.906663,0.622122,0.569869,0.257777,0.429151,0.73779,0.794664,0.830176,0.0862557,0.453405,0.138105,0.0639215,0.147269,0.750317,0.653534,0.863948,0.991466,0.53079,0.960281,0.826782,0.740796,0.425819,0.268065,0.283974,0.150731,0.516532,0.76632,0.899895,0.926225,0.258631,0.445531,0.231718,0.786274,0.53486,0.757713,0.00270128,0.821527,0.72694,0.381727,0.042729,0.641112,0.0819179,0.287444,0.862803,0.925923,0.549006,0.0448728,0.479328,0.602339,0.0154867,0.0299128,0.54774,0.65176,0.726222,0.00293064,0.00278097,0.93576,0.695336,0.725709,0.0639665,0.705904,0.658624,0.107682,0.692037,0.607432,0.162634,0.0443888,0.418188,0.758213,0.102135,0.30451,0.0490932,0.985863,0.669135,0.349994,0.482671,0.602719,0.401232,0.355853,0.419211,0.32348,0.450094,0.660269,0.584215,0.219167,0.742174,0.0720373,0.792748,0.785976,0.859572,0.169941,0.37756,0.366121,0.947826,0.188855,0.78271,0.365244,0.516727,0.647485,0.935094,0.725993,0.0884209,0.859624,0.910506,0.452979,0.4829,0.415656,0.907558,0.378007,0.354387,0.931033,0.102767,0.976027,0.655222,0.338039,0.864868,0.201705,0.680773,0.277467,0.157897,0.342245,0.923362,0.483319,0.774933,0.455842,0.866481,0.855128,0.829727,0.318408,0.155987,0.983745,0.0425112,0.419594,0.786559,0.795451,0.154408,0.163341,0.48092,0.801136,0.419992,0.13971,0.345591,0.160254,0.350374,0.549271,0.592797,0.93841,0.506513,0.161582,0.636178,0.232217,0.982281,0.785609,0.35024,0.170394,0.32655,0.0507303,0.160096,0.543605,0.100637,0.950791,0.107836,0.577359,0.399723,0.674186,0.947234,0.483947,0.394532,0.571514,0.0473331,0.758606,0.142867,0.945688,0.00759524,0.654471,0.191978,0.818677,0.129252,0.835431,0.40696,0.51879,0.369324,0.0791324,0.500556,0.209924,0.502098,0.909514,0.757481,0.70053,0.775269,0.310469,0.880194,0.213077,0.135569,0.22412,0.268505,0.943418,0.873675,0.0385729,0.151776,0.869322,0.988322,0.836957,0.797695,0.122287,0.139215,0.528182,0.30795,0.837937,0.389724,0.562217,0.853042,0.217368,0.0273774,0.289158,0.195758,0.000174344,0.578775,0.00830966,0.387335,0.878261,0.0243252,0.394041,0.081369,0.157755,0.0253367,0.292989,0.00988877,0.185174,0.0848352,0.273102,0.175984,0.345157,0.595977,0.510979,0.917743,0.0323798,0.219928,0.0718442,0.420731,0.47931,0.163115,0.454542,0.741699,0.642347,0.917138,0.67208,0.147555,0.197496,0.452685,0.864513,0.628169,0.824226,0.544483,0.903723,0.603255,0.833035,0.155661,0.427136,0.0333714,0.648845,0.316127,0.189802,0.752108,0.994637,0.933688,0.36585,0.965071,0.477302,0.778007,0.440271,0.428949,0.242384,0.546792,0.798538,0.602657,0.675923,0.19509,0.339641,0.149498,0.559585,0.327518,0.29055,0.226583,0.214954,0.56115,0.00041157,0.803236,0.748287,0.185632,0.480824,0.485494,0.378826,0.867894,0.294831,0.266933,0.183524,0.612766,0.0787675,0.307745,0.53686,0.716325,0.669787,0.400116,0.741417,0.121025,0.837207,0.0855671,0.980918,0.703998,0.570728,0.212303,0.265596,0.440664,0.893033,0.0920705,0.58261,0.565343,0.719021,0.530758,0.764481,0.136401,0.609525,0.466865,0.134737,0.191427,0.116114,0.138052,0.6668,0.773771,0.474668,0.830626,0.382923,0.537555,0.615999,0.460767,0.619316,0.221337,0.762484,0.232769,0.328112,0.391836,0.74203,0.328686,0.773087,0.775189,0.285795,0.239765,0.621657,0.705768,0.946997,0.579403,0.497481,0.892454,0.716548,0.271994,0.81578,0.202719,0.325106,0.944663,0.563131,0.515341,0.877142,0.531316,0.282808,0.263115,0.541143,0.304147,0.348093,0.861764,0.164756,0.490671,0.785027,0.379291,0.6947,0.441452,0.146837,0.492812,0.991039,0.946558,0.477848,0.701118,0.241131,0.311709,0.85619,0.236393,0.786916,0.589731,0.128499,0.734983,0.230039,0.911307,0.266153,0.421804,0.456647,0.961807,0.688256,0.731196,0.258846,0.252277,0.81351,0.823832,0.743138,0.905623,0.379256,0.550167,0.0477896,0.559612,0.460844,0.609675,0.291992,0.938829,0.621508,0.684703,0.185088,0.62865,0.672128,0.697176,0.515314,0.36371,0.241099,0.256954,0.516125,0.132408,0.345557,0.591382,0.324675,0.042915,0.830223,0.0877071,0.867316,0.616993,0.809973,0.268731,0.976878,0.753003,0.326772,0.490926,0.528471,0.0174422,0.707012,0.950875,0.665046,0.836621,0.76136,0.303799,0.0444779,0.842153,0.501823,0.867196,0.0334047,0.430804,0.682751,0.521057,0.893979,0.679868,0.952404,0.34735,0.428908,0.0362273,0.624472,0.170403,0.626298,0.998159,0.836756,0.744152,0.862039,0.122308,0.7831,0.173458,0.799041,0.849723,0.955766,0.684856,0.440983,0.930592,0.238281,0.828981,0.983843,0.0665604,0.312909,0.619076,0.761172,0.628187,0.0748481,0.542046,0.566258,0.0711889,0.439801,0.487369,0.9702,0.525428,0.789841,0.734361,0.513225,0.339661,0.897447,0.131351,0.787374,0.644597,0.510384,0.695125,0.00519967,0.171938,0.0215019,0.991028,0.217388,0.382553,0.778808,0.904294,0.159837,0.634221,0.00565743,0.68287,0.441085,0.345341,0.370788,0.000773072,0.0576485,0.544073,0.513022,0.579296,0.620656,0.639985,0.994773,0.227031,0.0533439,0.140351,0.310291,0.843287,0.174678,0.868026,0.645128,0.125579,0.38804,0.850153,0.182394,0.170057,0.583035,0.392165,0.0208958,0.754126,0.769141,0.155106,0.173037,0.190146,0.498357,0.996601,0.3257,0.0613531,0.066332,0.151622,0.978368,0.146503,0.754908,0.419862,0.259479,0.21786,0.251451,0.69566,0.117856,0.447802,0.133692,0.20208,0.540515,0.0853755,0.24215,0.348916,0.797177,0.925804,0.698922,0.571948,0.849219,0.541009,0.328187,0.552847,0.480072,0.262936,0.660426,0.410792,0.934609,0.553714,0.533719,0.969082,0.187591,0.688011,0.223697,0.0326782,0.0436425,0.627878,0.134637,0.414594,0.0287259,0.095014,0.244812,0.530712,0.811987,0.0370117,0.567755,0.945546,0.28645,0.00391525,0.232526,0.74436,0.706192,0.112128,0.868829,0.339424,0.297621,0.520748,0.613626,0.525131,0.127123,0.112392,0.697784,0.512316,0.191496,0.346938,0.372142,0.29666,0.209166,0.650271,0.366861,0.568627,0.543189,0.330194,0.00442797,0.843801,0.255859,0.562293,0.437634,0.990827,0.675557,0.52611,0.195522,0.754715,0.427683,0.854893,0.267351,0.815592,0.121487,0.395812,0.596471,0.00488758,0.110197,0.32504,0.184756,0.672841,0.682886,0.569222,0.895327,0.718883,0.924077,0.358834,0.193802,0.0944388,0.69182,0.663447,0.520969,0.642891,0.0373365,0.0787663,0.940975,0.630423,0.49438,0.147124,0.65161,0.386187,0.673843,0.238314,0.4634,0.912691,0.0316457,0.0944445,0.921897,0.73829,0.694163,0.515037,0.435057,0.354771,0.982793,0.457,0.26147,0.902295,0.738876,0.680719,0.901944,0.941748,0.195261,0.89822,0.8975,0.884021,0.582261,0.310739,0.319141,0.772639,0.798956,0.934907,0.486117,0.730515,0.997974,0.270901,0.167886,0.635427,0.704269,0.382992,0.321688,0.590025,0.253933,0.443837,0.0810071,0.421739,0.723552,0.365341,0.42047,0.199439,0.383391,0.201963,0.381655,0.501228,0.628362,0.304246,0.916446,0.677466,0.672279,0.577621,0.435243,0.89338,0.760054,0.557971,0.726661,0.543502,0.585261,0.938776,0.585362,0.90633,0.492368,0.211915,0.411945,0.870613,0.799871,0.286727,0.164276,0.693464,0.921961,0.216101,0.975026,0.926451,0.479166,0.137704,0.642723,0.969851,0.866399,0.789018,0.361903,0.361462,0.282816,0.832751,0.404728,0.0449412,0.694876,0.663711,0.137684,0.180824,0.837232,0.42512,0.957971,0.725063,0.753321,0.151504,0.768865,0.547792,0.38609,0.998409,0.361681,0.563129,0.00557709,0.82019,0.0250347,0.136071,0.854652,0.094166,0.83582,0.403135,0.407315,0.10486,0.414581,0.92857,0.169006,0.411529,0.839518,0.436181,0.33449,0.162144,0.57793,0.626453,0.976382,0.457648,0.10616,0.527247,0.736115,0.585179,0.191823,0.814277,0.821253,0.176952,0.0959436,0.657392,0.846893,0.985525,0.631797,0.620296,0.384539,0.489921,0.737169,0.299645,0.186615,0.722781,0.934457,0.179201,0.423117,0.0141573,0.312517,0.0567567,0.459059,0.479283,0.348429,0.0933156,0.62852,0.91258,0.399161,0.192935,0.831364,0.597826,0.472129,0.0448306,0.114109,0.096747,0.395143,0.906216,0.0195056,0.642844,0.178194,0.916176,0.581723,0.654144,0.996692,0.451753,0.0070926,0.18023,0.977001,0.971227,0.439342,0.969019,0.72139,0.895785,0.302395,0.636389,0.668846,0.698749,0.264442,0.554036,0.499204,|0.422752,0.165829,0.170079,0.581853,0.933339,0.521266,0.0737591,0.663462,0.554187,0.0112585,0.90204,0.442008,0.826329,0.534433,0.535036,0.354876,0.618021,0.0852615,0.432722,0.949683,0.362397,0.640889,0.105377,0.437532,0.699095,0.764496,0.758173,0.899295,0.238032,0.949686,0.254522,0.0581164,0.110099,0.397192,0.359633,0.442944,0.980007,0.63934,0.946059,0.720658,0.118528,0.038519,0.253929,0.448805,0.485525,0.968996,0.0453951,0.625423,0.403316,0.820912,0.0533655,0.265183,0.904849,0.674452,0.700653,0.42001,0.826398,0.143451,0.406964,0.0158218,0.666643,0.807878,0.944332,0.380536,0.326684,0.802289,0.224653,0.181471,0.173099,0.0159864,0.627869,0.464772,0.919666,0.840029,0.830161,0.500507,0.909634,0.949399,0.77026,0.0296215,0.0576216,0.600399,0.974855,0.275432,0.876858,0.853961,0.360947,0.915577,0.931035,0.417387,0.489118,0.662727,0.604871,0.697177,0.738593,0.958414,0.491731,0.593709,0.310661,0.436539,0.988463,0.722886,0.664037,0.662441,0.366261,0.853318,0.411673,0.659074,0.229293,0.655279,0.7917,0.524553,0.71256,0.648901,0.0269974,0.565148,0.697939,0.491849,0.207508,0.770692,0.520778,0.446353,0.828695,0.454425,0.0697324,0.550372,0.234579,0.986507,0.15732,0.707295,0.796894,0.838244,0.596334,0.289922,0.609313,0.500509,0.917054,0.488576,0.704937,0.251252,0.546661,0.077207,0.295294,0.101725,0.702291,0.123132,0.0726048,0.503403,0.551449,0.311405,0.0224346,0.0913326,0.814024,0.169498,0.954879,0.475478,0.18303,0.970668,0.00750268,0.658072,0.984471,0.110479,0.497748,0.622638,0.320573,0.231965,0.505545,0.346552,0.894259,0.490168,0.0198779,0.320907,0.355735,0.716527,0.532879,0.373616,0.637732,0.587671,0.575217,0.354575,0.0391952,0.123706,0.399407,0.64883,0.310811,0.743833,0.269931,0.0803332,0.722703,0.750089,0.920247,0.798607,0.703323,0.867386,0.449826,0.405543,0.271595,0.577035,0.32089,0.41784,0.145042,0.032929,0.487179,0.739324,0.704339,0.488463,0.908694,0.851529,0.865553,0.825019,0.20581,0.598531,0.398771,0.317748,0.69363,0.426644,0.84277,0.019976,0.579971,0.405833,0.605691,0.797647,0.734334,0.113769,0.0773662,0.736107,0.363935,0.509515,0.918896,0.942614,0.990158,0.191111,0.743059,0.316947,0.640275,0.876072,0.733874,0.488149,0.0730896,0.356201,0.357526,0.0208728,0.883181,0.0154293,0.684234,0.944883,0.827154,0.499106,0.588947,0.565196,0.814598,0.0544355,0.817947,0.855413,0.967172,0.776839,0.345973,0.508398,0.220626,0.54772,0.0829735,0.429055,0.557101,0.799941,0.544454,0.152765,0.76122,0.984713,0.72534,0.440724,0.156637,0.485784,0.597546,0.627317,0.0617717,0.209438,0.880442,0.178884,0.0406626,0.115927,0.586911,0.164659,0.026139,0.192896,0.713409,0.981907,0.274338,0.38117,0.510046,0.53447,0.967311,0.965551,0.779441,0.694578,0.708959,0.382497,0.901582,0.216726,0.78414,0.197492,0.793462,0.194967,0.481034,0.948385,0.633331,0.902873,0.703214,0.343376,0.164728,0.00870746,0.808676,0.0277328,0.61663,0.626752,0.243413,0.439526,0.538492,0.903615,0.647938,0.989797,0.250434,0.731515,0.756915,0.266469,0.656595,0.645148,0.133598,0.165381,0.319834,0.706007,0.466323,0.890396,0.762146,0.417131,0.398056,0.606707,0.173609,0.382821,0.369867,0.812148,0.693305,0.180094,0.161061,0.475161,0.660732,0.102323,0.852727,0.82652,0.377692,0.751453,0.281535,0.0484843,0.455256,0.456077,0.256605,0.867528,0.525492,0.947873,0.56098,0.133674,0.952413,0.632485,0.575324,0.447123,0.752148,0.225222,0.363022,0.313243,0.623467,0.193675,0.100732,0.794101,0.563488,0.46164,0.89003,0.543258,0.950119,0.520928,0.548706,0.637955,0.614424,0.324193,0.136998,0.654237,0.355031,0.369083,0.523216,0.612255,0.993179,0.0359892,0.214035,0.994123,0.912947,0.988522,0.326747,0.791001,0.0932376,0.0447922,0.358716,0.866953,0.181094,0.460483,0.661083,0.365962,0.710535,0.551291,0.568689,0.354801,0.789349,0.490009,0.992106,0.575218,0.750458,0.233817,0.462486,0.16861,0.199836,0.349622,0.831838,0.448705,0.474546,0.561471,0.974035,0.697678,0.994264,0.37763,0.497739,0.839848,0.421354,0.885035,0.261539,0.92115,0.0649219,0.623349,0.246888,0.600853,0.417314,0.833298,0.48284,0.174157,0.30847,0.362872,0.802419,0.693106,0.94145,0.950644,0.124332,0.857356,0.643298,0.455833,0.812187,0.250741,0.281688,0.4504,0.681672,0.584086,0.783162,0.248377,0.803742,0.939794,0.678504,0.995863,0.795156,0.458911,0.172955,0.309886,0.766833,0.576078,0.556895,0.48339,0.852586,0.34184,0.446929,0.837138,0.563848,0.201881,0.790607,0.320257,0.941678,0.769267,0.162921,0.412285,0.133667,0.0550027,0.550417,0.362061,0.777005,0.376782,0.732584,0.927585,0.110785,0.77228,0.361865,0.159675,0.696868,0.205447,0.908987,0.625937,0.101253,0.552601,0.101496,0.667539,0.439809,0.0748155,0.793772,0.903671,0.204041,0.731556,0.594606,0.125142,0.805265,0.0603785,0.267842,0.969466,0.742522,0.20543,0.487292,0.183403,0.998577,0.93554,0.120852,0.660944,0.461307,0.809052,0.953182,0.184224,0.201547,0.841134,0.64861,0.494531,0.776976,0.783843,0.436852,0.405508,0.0665271,0.627271,0.337238,0.994119,0.644677,0.524983,0.587325,0.935797,0.00456291,0.899275,0.670078,0.971134,0.473612,0.661738,0.958661,0.200597,0.080899,0.211919,0.963062,0.985344,0.988197,0.74477,0.393751,0.587174,0.00300092,0.302794,0.658471,0.630201,0.337533,0.767328,0.687139,0.87636,0.265154,0.208192,0.225217,0.019496,0.867526,0.497045,0.442554,0.612653,0.323889,0.0467722,0.480313,0.134787,0.0375187,0.155986,0.404858,0.881245,0.952969,0.708802,0.288403,0.143399,0.613795,0.438428,0.46339,0.127646,0.860721,0.287859,0.601963,0.165606,0.0491839,0.371181,0.275799,0.285509,0.490055,0.648215,0.546301,0.750543,0.0277402,0.193101,0.463345,0.417545,0.535834,0.465149,0.556349,0.0213748,0.919113,0.824763,0.126709,0.452449,0.492245,0.756457,0.844172,0.0307156,0.795754,0.0364206,0.842099,0.836797,0.253901,0.637071,0.534874,0.452412,0.789095,0.0965923,0.954319,0.583654,0.82522,0.0499749,0.887075,0.857044,0.0128476,0.531994,0.636658,0.822311,0.275156,0.153945,0.515127,0.55964,0.764013,0.0104417,0.200402,0.186028,0.116169,0.976413,0.405829,0.249197,0.84623,0.395113,0.738786,0.855558,0.342738,0.2888,0.930957,0.66217,0.205348,0.879737,0.419139,0.622101,0.306477,0.467046,0.318102,0.665484,0.732285,0.886646,0.980376,0.190976,0.481567,0.311101,0.892137,0.323107,0.0757915,0.398509,0.199077,0.249562,0.951607,0.11165,0.667237,0.508597,0.229795,0.401884,0.850491,0.691956,0.358337,0.457648,0.420307,0.783273,0.537686,0.325437,0.626533,0.34154,0.409618,0.257182,0.567597,0.0489151,0.661493,0.258751,0.190968,0.130463,0.711215,0.854152,0.343769,0.927364,0.0812744,0.908246,0.953489,0.0224239,0.925579,0.25432,0.74443,0.407234,0.487161,0.872823,0.851006,0.276422,0.879664,0.342624,0.419275,0.402587,0.270842,0.304824,0.144946,0.845131,0.897187,0.103172,0.50556,0.0496322,0.290609,0.505555,0.263706,0.335676,0.636992,0.35595,0.929402,0.109909,0.468662,0.921706,0.811955,0.775644,0.882216,0.324489,0.133736,0.710606,0.954021,0.841793,0.624869,0.256342,0.751131,0.601547,0.164902,0.608668,0.0580276,0.128357,0.864648,0.148199,0.784064,0.0288175,0.735176,0.469886,0.808443,0.469356,0.470852,0.852621,0.0260792,0.975507,0.752004,0.348904,0.420482,0.625328,0.296697,0.639312,0.00565714,0.595615,0.43839,0.338141,0.755413,0.31275,0.138374,0.419816,0.326477,0.312485,0.646912,0.110961,0.134146,0.215891,0.818292,0.739451,0.160223,0.82352,0.0941874,0.658086,0.874569,0.0927297,0.52925,0.467953,0.37902,0.476583,0.136135,0.0416846,0.484104,0.0457434,0.600927,0.719849,0.404863,0.439174,0.903174,0.577424,0.187301,0.399492,0.743688,0.747468,0.255885,0.465009,0.901658,0.0321857,0.691712,0.677916,0.48947,0.387556,0.649555,0.239482,0.86314,0.674301,0.860783,0.190109,0.394926,0.318675,0.0174584,0.727461,0.325476,0.466805,0.148481,0.568478,0.789825,0.145789,0.876485,0.833185,0.112555,0.854995,0.461062,0.353734,0.598209,0.707845,0.0377879,0.410003,0.612098,0.765281,0.171611,0.781122,0.808521,0.230523,0.0303889,0.984027,0.18456,0.470996,0.744642,0.312208,0.700286,0.0924283,0.244818,0.368613,0.706082,0.185354,0.788939,0.743372,0.0585734,0.218755,0.866026,0.669682,0.835409,0.701622,0.500562,0.800147,0.458152,0.736536,0.392451,0.813678,0.396452,0.941218,0.413485,0.117582,0.348924,0.126043,0.0594428,0.767792,0.863635,0.685048,0.567166,0.699248,0.350366,0.450922,0.935891,0.990445,0.585304,0.406219,0.632929,0.812632,0.30322,0.741593,0.742249,0.376386,0.996859,0.232644,0.811245,0.499447,0.657157,0.151979,0.513949,0.81,0.842505,0.951811,0.679139,0.465614,0.692418,0.823666,0.517378,0.340043,0.0954218,0.611026,0.70874,0.602294,0.295892,0.334786,0.982902,0.819652,0.232289,0.869151,0.0664105,0.205571,0.981444,0.089118,0.369037,0.775674,0.201596,0.667172,0.693482,0.578203,0.392856,0.876633,0.807444,0.75451,0.507687,0.264121,0.691773,0.461042,0.0425465,0.506388,0.662125,0.211231,0.0751219,0.537152,0.281605,0.752913,0.621918,0.580126,0.427296,0.573517,0.142296,0.108438,0.801123,0.0400932,0.594299,0.385173,0.459299,0.325342,0.794057,0.50279,0.520301,0.859346,0.199423,0.971833,0.230502,0.370511,0.448529,0.32555,0.633548,0.392658,0.491483,0.538715,0.563486,0.48412,0.621453,0.672106,0.0369306,0.650307,0.11949,0.697261,0.782775,0.670357,0.911649,0.0132925,0.247332,0.227375,0.124631,0.410941,0.508699,0.485332,|0.823257,0.623472,0.441905,0.491865,0.610791,0.0918047,0.424924,0.220824,0.287325,0.725694,0.315364,0.42244,0.225938,0.830262,0.287896,0.0484664,0.921509,0.715568,0.756785,0.773833,0.442334,0.744834,0.787513,0.868749,0.61186,0.882263,0.612221,0.0122972,0.435116,0.491604,0.262582,0.830047,0.804356,0.141385,0.314728,0.154831,0.365688,0.687586,0.963167,0.723888,0.766515,0.830137,0.261733,0.879991,0.373156,0.904125,0.482526,0.135458,0.857562,0.8879,0.97706,0.363632,0.121947,0.570544,0.0813187,0.430622,0.467288,0.692535,0.799356,0.968334,0.559754,0.795518,0.425977,0.449893,0.701161,0.210633,0.741816,0.281058,0.688759,0.520425,0.520275,0.30557,0.391644,0.504265,0.843557,0.0911938,0.950921,0.651957,0.245315,0.530886,0.435775,0.697025,0.952965,0.015043,0.239955,0.594472,0.882805,0.00477052,0.513149,0.476577,0.722467,0.505206,0.776696,0.667596,0.401734,0.966475,0.0644173,0.345352,0.20156,0.612001,0.409823,0.127267,0.0415466,0.763346,0.734637,0.258201,0.990865,0.593995,0.0776722,0.203234,0.101241,0.642119,0.765761,0.151732,0.631181,0.224719,0.561572,0.763486,0.397846,0.290881,0.449347,0.344318,0.923551,0.960767,0.522555,0.83609,0.896611,0.128976,0.749691,0.668713,0.397919,0.826635,0.000872791,0.227644,0.766067,0.941294,0.995208,0.517965,0.256385,0.0990453,0.661552,0.650736,0.595346,0.81205,0.363068,0.413206,0.346435,0.362117,0.445881,0.959514,0.286904,0.104167,0.721762,0.844373,0.806903,0.634383,0.100619,0.664896,0.184796,0.421688,0.98062,0.953063,0.0433869,0.475082,0.698028,0.421957,0.35527,0.446785,0.549356,0.763174,0.0150602,0.417634,0.985267,0.0918776,0.62282,0.41775,0.962919,0.969152,0.950131,0.362598,0.0611059,0.554221,0.614879,0.0480947,0.51236,0.650185,0.720675,0.309838,0.90547,0.0471957,0.248873,0.945866,0.0979981,0.825,0.932849,0.685984,0.173683,0.683534,0.257493,0.931552,0.702768,0.446071,0.807368,0.342693,0.00938553,0.912346,0.937375,0.350334,0.468642,0.0372491,0.458242,0.742973,0.421904,0.849918,0.000434339,0.694248,0.666694,0.366567,0.41857,0.942134,0.417705,0.376881,0.677626,0.370513,0.117815,0.86474,0.332137,0.265265,0.923347,0.882761,0.971961,0.63518,0.307187,0.561868,0.458896,0.0587654,0.132744,0.309465,0.962737,0.547492,0.957571,0.583778,0.238709,0.332226,0.400277,0.554309,0.29088,0.118109,0.463233,0.130311,0.507137,0.857863,0.925976,0.398586,0.814131,0.0450376,0.306915,0.749086,0.201535,0.209218,0.922293,0.00487107,0.294626,0.93821,0.429335,0.440584,0.662922,0.0636401,0.770486,0.906352,0.127402,0.646995,0.550591,0.382345,0.794689,0.468644,0.35348,0.289484,0.75996,0.0731015,0.809908,0.991237,0.817736,0.99602,0.947637,0.434297,0.393068,0.0936842,0.0505443,0.656854,0.0774174,0.0748576,0.904408,0.160294,0.442664,0.0515381,0.551803,0.868264,0.580025,0.592607,0.242493,0.12232,0.081296,0.818073,0.938945,0.155992,0.83076,0.40284,0.107998,0.670303,0.508917,0.344358,0.309156,0.175096,0.0879493,0.56194,0.271157,0.456226,0.998264,0.80122,0.814189,0.56113,0.370655,0.160885,0.48608,0.778078,0.90175,0.773492,0.0953676,0.0351089,0.726344,0.175725,0.763403,0.438725,0.108115,0.140756,0.344458,0.89943,0.995503,0.874835,0.862141,0.00464767,0.78278,0.142553,0.440377,0.650044,0.374433,0.652057,0.940869,0.430327,0.971284,0.114565,0.086078,0.267858,0.947606,0.613996,0.988978,0.140576,0.168063,0.502117,0.0394307,0.783538,0.496082,0.727395,0.330715,0.0860605,0.91725,0.362347,0.403889,0.323044,0.381715,0.990472,0.971422,0.525285,0.884715,0.546856,0.638225,0.326484,0.972221,0.168181,0.941783,0.415998,0.649125,0.475507,0.881479,0.884758,0.468904,0.354339,0.289899,0.635778,0.103557,0.329926,0.925469,0.14511,0.534931,0.0191222,0.386387,0.755724,0.72496,0.0447111,0.392332,0.532815,0.0852567,0.76007,0.296879,0.0303922,0.500998,0.877371,0.243918,0.516577,0.463983,0.262813,0.707187,0.506755,0.551269,0.812131,0.810605,0.0617825,0.121802,0.774063,0.299829,0.144912,0.134205,0.675837,0.0185404,0.168095,0.841828,0.532958,0.385078,0.398728,0.447894,0.0480515,0.413731,0.493198,0.212359,0.622889,0.241155,0.699824,0.327194,0.249415,0.812396,0.866133,0.631174,0.829377,0.920435,0.244331,0.131821,0.369998,0.194675,0.401174,0.046456,0.128294,0.690207,0.866942,0.13312,0.458668,0.170128,0.329226,0.694165,0.459707,0.243709,0.325455,0.299217,0.186994,0.0691648,0.261352,0.819803,0.746344,0.162038,0.631372,0.716362,0.771175,0.445248,0.242913,0.393289,0.161538,0.428427,0.967283,0.43559,0.70616,0.123738,0.770533,0.582509,0.402676,0.495592,0.264999,0.53188,0.3651,0.21874,0.745773,0.0200422,0.390036,0.73614,0.550607,0.661964,0.368535,0.975943,0.455442,0.386126,0.657129,0.292002,0.547135,0.399437,0.541437,0.978802,0.843101,0.119077,0.0653348,0.965829,0.153916,0.480976,0.446748,0.705195,0.294446,0.598058,0.663869,0.820241,0.747233,0.763589,0.474576,0.621173,0.365033,0.734483,0.172652,0.749671,0.222827,0.878098,0.210525,0.332667,0.724955,0.187668,0.471742,0.0113473,0.0329462,0.924955,0.522251,0.422701,0.742541,0.703987,0.0579388,0.680128,0.102946,0.720225,0.548641,0.378766,0.647938,0.848386,0.908571,0.713961,0.787042,0.541373,0.171838,0.114952,0.87895,0.276481,0.934064,0.526852,0.0932716,0.411872,0.397254,0.397425,0.842617,0.328416,0.216408,0.937102,0.114719,0.3049,0.422038,0.47601,0.299152,0.64138,0.765956,0.309843,0.00452805,0.986514,0.12509,0.553403,0.632287,0.163562,0.921469,0.401494,0.393062,0.134819,0.694928,0.626667,0.043083,0.678442,0.834112,0.398449,0.119305,0.919269,0.103038,0.278782,0.972591,0.968464,0.868064,0.385722,0.207331,0.925066,0.670123,0.111346,0.851995,0.823243,0.633729,0.557036,0.982746,0.537751,0.653655,0.731514,0.03395,0.53845,0.965708,0.0320359,0.331369,0.256042,0.805868,0.709446,0.33508,0.898497,0.822798,0.928398,0.439949,0.276249,0.173162,0.560343,0.469318,0.187638,0.63576,0.215882,0.868846,0.578626,0.860859,0.578132,0.677718,0.558568,0.809689,0.876804,0.586154,0.683842,0.54905,0.604869,0.818462,0.585004,0.156978,0.156081,0.246358,0.550024,0.473845,0.544063,0.405973,0.98231,0.898486,0.343099,0.463098,0.475293,0.196943,0.197453,0.850186,0.634602,0.863158,0.224485,0.240759,0.800343,0.839845,0.205344,0.899006,0.975694,0.34911,0.329288,0.39739,0.18726,0.819472,0.0688255,0.497572,0.321204,0.518992,0.00593591,0.428518,0.157981,0.141133,0.513732,0.286318,0.631596,0.0817552,0.446346,0.0412874,0.623988,0.683245,0.874921,0.550859,0.828839,0.538562,0.749055,0.791122,0.204622,0.68367,0.0743846,0.571172,0.169165,0.832561,0.519145,0.463409,0.504299,0.786103,0.839476,0.344763,0.632158,0.34026,0.723721,0.609509,0.520282,0.867716,0.215234,0.612495,0.5916,0.637638,0.0763855,0.664323,0.290884,0.69008,0.152369,0.567355,0.363745,0.241542,0.714762,0.710072,0.671013,0.120722,0.0522977,0.742459,0.742566,0.135449,0.657624,0.466032,0.0537544,0.284461,0.737088,0.439706,0.582939,0.993264,0.729694,0.405791,0.0355145,0.963118,0.369696,0.0526513,0.0313535,0.422494,0.433061,0.781124,0.772606,0.646405,0.744418,0.858315,0.95336,0.305869,0.981252,0.801677,0.405974,0.0373105,0.806427,0.923262,0.389035,0.163572,0.317753,0.980885,0.847533,0.598834,0.783438,0.983524,0.555264,0.118316,0.92829,0.825746,0.176686,0.377735,0.101101,0.479653,0.390782,0.683828,0.375835,0.55489,0.271205,0.455744,0.259585,0.859978,0.609685,0.0820918,0.625328,0.397099,0.57404,0.469129,0.614687,0.954995,0.856182,0.377688,0.742919,0.43731,0.65834,0.234103,0.587369,0.0945257,0.176938,0.0795664,0.961673,0.461951,0.42204,0.133406,0.826342,0.352925,0.92781,0.309823,0.175986,0.936098,0.963634,0.627192,0.688194,0.501768,0.530092,0.723384,0.162387,0.662142,0.602376,0.0879891,0.5019,0.0662801,0.0636413,0.5372,0.92173,0.598051,0.148108,0.766169,0.290487,0.493233,0.207548,0.294454,0.82698,0.815935,0.583727,0.734791,0.429045,0.324685,0.514857,0.249637,0.203081,0.794305,0.251701,0.620959,0.655605,0.70602,0.0484254,0.643785,0.155644,0.822132,0.158811,0.970641,0.993122,0.202011,0.60488,0.212233,0.383518,0.26603,0.669086,0.817327,0.813779,0.832735,0.70847,0.996231,0.963002,0.643112,0.75906,0.828595,0.277054,0.153804,0.645373,0.507767,0.00316316,0.850428,0.34872,0.501977,0.104486,0.607478,0.912398,0.421401,0.201407,0.96874,0.723579,0.904387,0.595304,0.191504,0.0849664,0.884302,0.214923,0.0179825,0.0396613,0.624459,0.338807,0.437356,0.0984916,0.517517,0.38747,0.90463,0.480593,0.90642,0.116783,0.501948,0.567317,0.368064,0.527255,0.0458458,0.231484,0.50194,0.293939,0.504185,0.736758,0.195684,0.226001,0.851647,0.507574,0.697944,0.598085,0.362125,0.144128,0.250117,0.793299,0.985012,0.499393,0.458644,0.807299,0.0337318,0.910042,0.80512,0.660584,0.856177,0.0561663,0.130398,0.437922,0.527455,0.257828,0.486645,0.471744,0.614539,0.772181,0.0305523,0.596017,0.917597,0.0988494,0.435115,0.691449,0.0057987,0.24646,0.477672,0.087873,0.0147332,0.263225,0.09197,0.188288,0.434597,0.777143,0.0988625,0.564239,0.961013,0.925077,0.367399,0.668462,0.36399,0.955242,0.0441748,0.816044,0.23591,0.0156683,0.898846,0.164429,0.656557,0.983193,0.807884,0.864048,0.603912,0.807637,0.318999,0.827326,0.89283,0.828023,0.668534,0.0718153,0.838551,0.684364,0.925783,0.201782,0.00712568,0.227547,0.556884,0.982046,0.047999,0.16368,0.316047,0.194827,0.522309,0.0715717,0.587048,|0.149714,0.50226,0.765112,0.127767,0.802945,0.453981,0.816089,0.91248,0.214981,0.199191,0.0116256,0.992514,0.980892,0.536781,0.257079,0.563953,0.511717,0.247003,0.379723,0.812346,0.493612,0.711671,0.722186,0.741514,0.293091,0.412702,0.729904,0.823972,0.338691,0.564795,0.933814,0.0355673,0.532467,0.609473,0.213858,0.319873,0.707955,0.79425,0.0874145,0.667836,0.111954,0.0732391,0.526001,0.0876364,0.892969,0.395811,0.584874,0.740152,0.127599,0.133145,0.723966,0.663101,0.494801,0.418442,0.857508,0.448804,0.560215,0.562752,0.411082,0.445076,0.160088,0.607346,0.449204,0.138645,0.788369,0.897108,0.200783,0.932066,0.0886672,0.159329,0.043905,0.649339,0.766827,0.770896,0.65439,0.335467,0.853761,0.337945,0.804693,0.570264,0.939121,0.288958,0.584508,0.0272547,0.189502,0.0921636,0.153867,0.866303,0.274143,0.75186,0.963391,0.621601,0.961439,0.479263,0.700931,0.122717,0.88177,0.51716,0.290156,0.813388,0.552982,0.0801897,0.112969,0.241773,0.654441,0.363571,0.915477,0.0458493,0.335247,0.413959,0.0600621,0.90569,0.31351,0.715729,0.385553,0.446227,0.845121,0.0508814,0.880779,0.350818,0.0164315,0.487623,0.181466,0.937465,0.590825,0.192463,0.242177,0.139226,0.444761,0.606268,0.893592,0.77435,0.919344,0.492124,0.791451,0.238815,0.0628071,0.223609,0.339156,0.868786,0.509344,0.320591,0.312755,0.439213,0.512734,0.700844,0.669101,0.760774,0.731841,0.765836,0.721767,0.659362,0.0670843,0.93919,0.87665,0.125301,0.282442,0.338593,0.959681,0.445642,0.0932878,0.471124,0.121628,0.458059,0.262818,0.326545,0.927325,0.178997,0.0916668,0.924033,0.373691,0.905537,0.722398,0.692189,0.254945,0.720619,0.198932,0.283996,0.0463722,0.473246,0.762694,0.588673,0.454128,0.606133,0.150206,0.495267,0.592441,0.574954,0.0355467,0.481861,0.00352019,0.0558415,0.397636,0.462486,0.463216,0.563275,0.144272,0.34675,0.807321,0.403923,0.27496,0.693982,0.688777,0.426808,0.426758,0.881766,0.353619,0.163073,0.693173,0.370685,0.15692,0.692973,0.771281,0.827623,0.432896,0.344081,0.19489,0.303525,0.892389,0.796444,0.57528,0.887559,0.426435,0.322297,0.50183,0.552734,0.222189,0.772687,0.579469,0.556985,0.380562,0.77485,0.0228193,0.710033,0.236529,0.537475,0.812791,0.886833,0.405631,0.0598511,0.785275,0.792289,0.180267,0.671639,0.302715,0.532993,0.927955,0.677568,0.344768,0.0816875,0.054228,0.359248,0.954809,0.793552,0.555789,0.249804,0.658302,0.450384,0.494221,0.0555596,0.327037,0.978002,0.0358683,0.332165,0.997705,0.455219,0.258511,0.829195,0.0378776,0.070034,0.881666,0.0804511,0.414206,0.0704951,0.285867,0.0519955,0.198617,0.320335,0.621454,0.0183515,0.00397152,0.226423,0.968562,0.0250154,0.578125,0.476953,0.491829,0.872283,0.127183,0.222679,0.746562,0.54255,0.610027,0.36965,0.440692,0.428644,0.766196,0.531309,0.441442,0.818395,0.252825,0.110568,0.965034,0.424653,0.763874,0.539418,0.449711,0.443048,0.239894,0.56282,0.793672,0.41253,0.88982,0.109744,0.244891,0.241206,0.340422,0.458177,0.154634,0.383725,0.307482,0.380225,0.691833,0.990119,0.318624,0.35742,0.0797037,0.411394,0.377449,0.511546,0.360204,0.0760391,0.569527,0.306927,0.969074,0.439273,0.199517,0.625654,0.745198,0.821923,0.209764,0.809103,0.853469,0.691988,0.437185,0.544374,0.979477,0.432369,0.366858,0.44715,0.583175,0.875311,0.302628,0.147618,0.96236,0.440462,0.901806,0.0201988,0.938447,0.487613,0.258293,0.857641,0.308741,0.593881,0.0775675,0.33989,0.114596,0.171116,0.0725546,0.651195,0.9298,0.365173,0.774732,0.24905,0.8947,0.945209,0.850441,0.25962,0.46917,0.723281,0.661622,0.56527,0.766702,0.127232,0.0843655,0.955423,0.0196314,0.758694,0.376906,0.970101,0.575888,0.882365,0.855292,0.751232,0.891773,0.013548,0.990978,0.630958,0.669161,0.291407,0.372012,0.421466,0.132109,0.544226,0.388923,0.0565698,0.938229,0.303288,0.836424,0.269936,0.404252,0.547311,0.575589,0.552663,0.0419866,0.530041,0.682449,0.533932,0.0330946,0.27962,0.892508,0.193649,0.785039,0.691671,0.413818,0.0896417,0.402478,0.636842,0.495394,0.307792,0.893124,0.736603,0.951835,0.236334,0.836221,0.704919,0.827247,0.385316,0.302304,0.555951,0.801275,0.863418,0.657819,0.0712469,0.703273,0.537314,0.0483163,0.553293,0.824528,0.230144,0.496133,0.621764,0.358,0.230151,0.166075,0.469292,0.0380048,0.60398,0.996632,0.982832,0.693866,0.0970978,0.103082,0.241584,0.639515,0.492378,0.738303,0.185257,0.583434,0.210334,0.306964,0.584872,0.445959,0.226787,0.761473,0.0352187,0.999844,0.793142,0.448276,0.461224,0.436456,0.715937,0.542982,0.130445,0.672599,0.968194,0.907712,0.771006,0.785483,0.936921,0.365024,0.208536,0.231308,0.616699,0.021226,0.00978011,0.535363,0.581694,0.129867,0.0513372,0.188898,0.406526,0.953568,0.554938,0.206969,0.554827,0.242975,0.142329,0.120165,0.401928,0.623934,0.454152,0.882118,0.589705,0.660662,0.560647,0.244781,0.232621,0.569747,0.520468,0.752769,0.751843,0.914645,0.377804,0.12126,0.36708,0.915546,0.0756193,0.00756884,0.0824018,0.33501,0.384767,0.962059,0.521452,0.707785,0.68238,0.852365,0.747109,0.724423,0.523569,0.170268,0.45175,0.636678,0.230811,0.882135,0.640248,0.646738,0.908249,0.480798,0.364,0.6401,0.125715,0.145241,0.613067,0.75888,0.977604,0.758262,0.0320607,0.410151,0.220367,0.969536,0.499507,0.901367,0.991942,0.566503,0.439151,0.0928247,0.484273,0.299663,0.54178,0.331898,0.97168,0.448184,0.0864995,0.437624,0.345794,0.928777,0.216948,0.0848129,0.231534,0.6267,0.22619,0.701208,0.198741,0.547619,0.725572,0.80731,0.651058,0.779121,0.10239,0.612649,0.828513,0.596,0.756872,0.877779,0.225481,0.770128,0.816247,0.304908,0.915399,0.625429,0.944541,0.680164,0.841266,0.0322414,0.0100843,0.112646,0.78851,0.334008,0.624975,0.364999,0.75593,0.101759,0.224314,0.860348,0.752066,0.132707,0.0447855,0.106759,0.0885172,0.735648,0.632026,0.542563,0.671104,0.434289,0.271908,0.341474,0.999146,0.367781,0.252733,0.17762,0.286359,0.778605,0.469066,0.975586,0.505328,0.112189,0.861815,0.120495,0.680005,0.309492,0.364295,0.234645,0.428076,0.276034,0.266456,0.319066,0.752066,0.328631,0.843516,0.418204,0.419739,0.247237,0.0317472,0.0710385,0.855201,0.881746,0.834444,0.811755,0.205404,0.823595,0.371522,0.925221,0.403364,0.458265,0.641607,0.664896,0.691383,0.964396,0.938718,0.815696,0.405211,0.55948,0.862759,0.144591,0.434524,0.430168,0.238322,0.538046,0.163482,0.0833188,0.0940127,0.371893,0.878197,0.969946,0.546656,0.00958711,0.881302,0.163665,0.970147,0.439241,0.265328,0.0688061,0.907709,0.322656,0.55777,0.549303,0.899497,0.62245,0.691967,0.630965,0.815706,0.131804,0.804141,0.582343,0.915652,0.767126,0.78547,0.308047,0.388939,0.524823,0.753015,0.449335,0.53853,0.173853,0.141745,0.214968,0.833591,0.364669,0.567028,0.317565,0.883173,0.32242,0.748806,0.834786,0.214801,0.184827,0.0690058,0.467807,0.0919471,0.478286,0.460859,0.599414,0.701389,0.25157,0.930767,0.272246,0.354314,0.476177,0.311627,0.839587,0.531919,0.876145,0.110232,0.950785,0.213374,0.912971,0.158578,0.815374,0.368921,0.913095,0.0883067,0.598798,0.717855,0.536155,0.771347,0.84447,0.016537,0.270787,0.711467,0.972447,0.95057,0.259789,0.756051,0.152465,0.732328,0.75622,0.4838,0.927052,0.73155,0.294646,0.0322597,0.82722,0.797505,0.113376,0.462281,0.873843,0.12854,0.322967,0.561473,0.354301,0.674709,0.686531,0.951492,0.746417,0.0736436,0.345085,0.817918,0.581152,0.0622954,0.357615,0.31905,0.0676842,0.813731,0.290407,0.385804,0.414217,0.646403,0.765742,0.85554,0.237765,0.420399,0.507411,0.536293,0.735145,0.467308,0.293856,0.52252,0.71201,0.46789,0.921715,0.937533,0.00432336,0.755064,0.146207,0.121416,0.597352,0.492142,0.794669,0.643535,0.703833,0.553654,0.491077,0.727387,0.626156,0.358253,0.631787,0.196345,0.0511314,0.126419,0.941366,0.707535,0.692804,0.67481,0.820812,0.430185,0.884047,0.584003,0.273898,0.0687581,0.693637,0.717826,0.102806,0.386179,0.323701,0.148448,0.340699,0.681229,0.675046,0.74094,0.473372,0.419551,0.250887,0.797202,0.463202,0.161985,0.0161767,0.910399,0.791554,0.829143,0.528328,0.0904312,0.210862,0.126407,0.375129,0.869566,0.998063,0.660644,0.22309,0.804719,0.501101,0.659621,0.0443951,0.492966,0.646865,0.993496,0.17308,0.231158,0.631028,0.944662,0.436811,0.888713,0.0141435,0.86196,0.487794,0.82659,0.120758,0.575802,0.0540145,0.888377,0.849848,0.800137,0.49983,0.833579,0.207388,0.431501,0.80975,0.50985,0.974173,0.834371,0.30792,0.394469,0.109076,0.365354,0.1899,0.74292,0.661434,0.956817,0.955149,0.882311,0.154087,0.943418,0.152019,0.414434,0.229159,0.731743,0.848305,0.881624,0.246549,0.0668191,0.879359,0.591852,0.953819,0.620724,0.816281,0.353198,0.0071193,0.511915,0.538468,0.707635,0.288127,0.336622,0.614728,0.662372,0.85373,0.281815,0.137781,0.422348,0.155399,0.192628,0.0445974,0.562916,0.768601,0.694147,0.916458,0.948612,0.67605,0.927567,0.196807,0.0860245,0.920843,0.262925,0.283971,0.889685,0.517542,0.9643,0.741358,0.518259,0.129775,0.730821,0.640698,0.0645504,0.850079,0.671588,0.223873,0.674569,0.00685436,0.600576,0.292844,0.56059,0.923368,0.0826969,0.142221,0.0948286,0.892045,0.433129,0.83587,0.518935,0.18298,0.800632,0.165606,0.164476,0.0509831,0.394307,0.903259,0.00984561,0.807008,0.680141,0.829005,0.244744,0.890601,0.468373,0.168504,0.538941,0.188634,0.235324,0.50601,0.87159,0.977865,0.0891627,|0.459302,0.387123,0.796558,0.346247,0.301089,0.861953,0.239962,0.047326,0.0525923,0.689369,0.177109,0.854977,0.615831,0.912141,0.743444,0.24049,0.0143383,0.152308,0.930645,0.0517312,0.812804,0.01999,0.0623809,0.375414,0.116043,0.349492,0.00412482,0.635334,0.595373,0.76912,0.335781,0.250742,0.846877,0.397566,0.401303,0.72955,0.822015,0.257057,0.989092,0.265343,0.274342,0.423925,0.655169,0.360173,0.545557,0.802268,0.867778,0.524588,0.198725,0.256222,0.221814,0.814795,0.544363,0.574585,0.52845,0.252582,0.00267732,0.572421,0.487601,0.0382988,0.925407,0.841251,0.205332,0.5642,0.254279,0.244786,0.697203,0.458731,0.408663,0.759934,0.772423,0.584357,0.372111,0.511762,0.557487,0.925983,0.672867,0.773682,0.0450516,0.210139,0.509494,0.0686768,0.977463,0.918181,0.0853351,0.266379,0.285638,0.311349,0.680611,0.965918,0.0520512,0.216561,0.378024,0.210036,0.714962,0.116589,0.184872,0.0748331,0.865783,0.904622,0.643593,0.793753,0.508398,0.827264,0.150727,0.721359,0.264863,0.420239,0.368165,0.668469,0.787087,0.777201,0.539893,0.610801,0.795609,0.977665,0.506463,0.898454,0.364604,0.289463,0.645579,0.887557,0.644833,0.526602,0.520777,0.524507,0.415873,0.384698,0.565333,0.135105,0.565482,0.531418,0.359949,0.203744,0.116497,0.792949,0.0181517,0.00594622,0.487349,0.0657514,0.21328,0.86466,0.876437,0.281705,0.548612,0.975227,0.989384,0.952003,0.366725,0.903575,0.935824,0.196696,0.00493664,0.154591,0.426925,0.305256,0.333944,0.607765,0.565687,0.266915,0.158135,0.424078,0.507252,0.638857,0.629071,0.128296,0.386325,0.0921986,0.563847,0.90234,0.674987,0.553409,0.492821,0.0606474,0.0984839,0.228003,0.708621,0.0977441,0.785778,0.412349,0.00134671,0.627104,0.246278,0.576415,0.033755,0.311862,0.703375,0.0744816,0.976184,0.683746,0.290695,0.0488339,0.478992,0.699859,0.310691,0.684597,0.826789,0.17912,0.971994,0.877786,0.0659651,0.904323,0.613083,0.553259,0.258916,0.30675,0.110594,0.539246,0.520683,0.664761,0.325108,0.309237,0.434596,0.940495,0.834405,0.891902,0.141982,0.257879,0.900555,0.521363,0.45571,0.394094,0.127476,0.605252,0.434554,0.853754,0.2224,0.765815,0.46354,0.996867,0.15432,0.467165,0.696515,0.923407,0.359773,0.795408,0.0246663,0.512146,0.795682,0.679356,0.724531,0.484117,0.163247,0.815092,0.15726,0.716672,0.0224497,0.85799,0.122099,0.0918658,0.251158,0.317792,0.765608,0.411343,0.282188,0.249769,0.0623589,0.496088,0.94737,0.517898,0.823505,0.453538,0.952722,0.880576,0.485151,0.0574356,0.777349,0.421837,0.263176,0.795357,0.059735,0.308841,0.951536,0.922318,0.0338966,0.703856,0.888503,0.3043,0.572751,0.985629,0.522829,0.496481,0.292251,0.021945,0.712702,0.823897,0.59795,0.355611,0.307628,0.937753,0.216469,0.0636072,0.241664,0.839171,0.0527193,0.226217,0.574114,0.540471,0.764842,0.976815,0.78772,0.0676707,0.709024,0.717704,0.761718,0.503182,0.523959,0.314458,0.990229,0.346871,0.245078,0.499286,0.118999,0.0867658,0.467837,0.842048,0.533111,0.610109,0.1205,0.241518,0.302987,0.0309248,0.140009,0.713745,0.838979,0.0534192,0.00952095,0.764958,0.437974,0.0685424,0.708598,0.163418,0.158827,0.0521811,0.576856,0.169885,0.0889957,0.0117382,0.0406334,0.748475,0.899263,0.0527755,0.499501,0.479317,0.732775,0.872745,0.205108,0.0538005,0.569051,0.74247,0.818488,0.555744,0.657973,0.310626,0.167628,0.469966,0.60437,0.942147,0.245353,0.677125,0.363583,0.34535,0.360172,0.201726,0.903092,0.780636,0.659816,0.366813,0.79535,0.879541,0.782489,0.929646,0.813856,0.280887,0.30707,0.363131,0.597238,0.312177,0.70694,0.71861,0.791774,0.206421,0.747664,0.487638,0.761609,0.339389,0.0785783,0.919918,0.639672,0.722288,0.665169,0.347644,0.127291,0.830436,0.421214,0.446765,0.914277,0.945437,0.355309,0.376886,0.338057,0.337689,0.725308,0.248214,0.982842,0.690047,0.281016,0.955334,0.225382,0.76823,0.712012,0.597774,0.744139,0.858089,0.870454,0.42345,0.762899,0.20771,0.452946,0.881117,0.326261,0.00456417,0.478717,0.286069,0.600031,0.822461,0.594317,0.000532687,0.186948,0.0949155,0.839352,0.242289,0.357053,0.964291,0.115173,0.513788,0.554506,0.603698,0.702413,0.392836,0.505969,0.531494,0.459909,0.990616,0.754337,0.080774,0.911449,0.711529,0.353385,0.011775,0.282482,0.633355,0.506865,0.920596,0.980405,0.328076,0.63083,0.262879,0.783598,0.533627,0.796144,0.35019,0.010628,0.775512,0.280566,0.317017,0.681814,0.336909,0.803754,0.351101,0.334705,0.868142,0.875293,0.846929,0.582762,0.356186,0.478251,0.739068,0.717493,0.658597,0.969801,0.347096,0.809515,0.950066,0.869734,0.0561487,0.0949922,0.344537,0.654815,0.233079,0.859883,0.287254,0.39944,0.666307,0.645418,0.069492,0.57,0.908793,0.460713,0.889478,0.0833765,0.218427,0.769075,0.859888,0.984976,0.844311,0.849544,0.985655,0.542096,0.292389,0.357764,0.944315,0.0381052,0.121159,0.836957,0.821938,0.569051,0.579515,0.23873,0.565401,0.271438,0.499994,0.271599,0.0218846,0.79472,0.881329,0.715167,0.565773,0.662047,0.23524,0.0855615,0.262582,0.988191,0.89741,0.627176,0.355782,0.205543,0.325763,0.267249,0.665057,0.382105,0.64235,0.651833,0.685109,0.86209,0.376405,0.647099,0.469151,0.775657,0.186452,0.924537,0.111618,0.0903671,0.444763,0.403449,0.780474,0.782248,0.0192822,0.534739,0.0138586,0.554481,0.273363,0.415479,0.947041,0.930456,0.936599,0.553576,0.239425,0.419879,0.925978,0.842446,0.595862,0.57004,0.447072,0.841172,0.106997,0.582371,0.646435,0.0793415,0.847342,0.390281,0.169676,0.616813,0.336168,0.927937,0.393834,0.135954,0.610523,0.964423,0.988653,0.135109,0.100814,0.594237,0.866764,0.0237806,0.390266,0.349018,0.588695,0.214692,0.88276,0.16729,0.686829,0.183998,0.223641,0.148216,0.438229,0.442319,0.502349,0.3815,0.205398,0.500368,0.592687,0.708005,0.60661,0.170242,0.70802,0.296949,0.0672534,0.174676,0.526084,0.0158135,0.179386,0.894076,0.921132,0.0176805,0.626286,0.0364511,0.810003,0.650503,0.601382,0.057901,0.246895,0.631549,0.180584,0.755396,0.289984,0.839378,0.268149,0.521506,0.758619,0.762611,0.727866,0.121462,0.774188,0.876162,0.375515,0.166119,0.701022,0.290045,0.402541,0.806914,0.744961,0.616737,0.954982,0.181221,0.0317652,0.862141,0.258071,0.0194569,0.506281,0.552717,0.844317,0.23527,0.632189,0.976708,0.127667,0.304985,0.619428,0.925271,0.225465,0.494816,0.551704,0.767693,0.65925,0.676297,0.996024,0.880911,0.270321,0.986838,0.451689,0.59303,0.656218,0.033381,0.384294,0.156783,0.0206813,0.397538,0.755942,0.859507,0.529218,0.320548,0.935158,0.0952477,0.281824,0.339724,0.881613,0.819533,0.0274305,0.0788133,0.00921029,0.632401,0.447757,0.0497196,0.567816,0.718981,0.27204,0.888213,0.515427,0.560083,0.694616,0.362012,0.643727,0.670346,0.504223,0.387318,0.992067,0.680175,0.500831,0.294887,0.137059,0.52633,0.625685,0.45703,0.236929,0.848542,0.0244836,0.313646,0.266654,0.152449,0.974888,0.429837,0.0481349,0.254477,0.669153,0.480062,0.432751,0.504611,0.598431,0.928989,0.447499,0.660063,0.888106,0.776335,0.901772,0.265844,0.870575,0.513579,0.507049,0.116574,0.993179,0.549086,0.0291231,0.319574,0.289598,0.557055,0.126227,0.563507,0.195365,0.402987,0.824421,0.961449,0.792403,0.318514,0.291057,0.619612,0.440452,0.340305,0.482903,0.605514,0.389932,0.659453,0.655703,0.796523,0.197758,0.0810346,0.465256,0.309223,0.615637,0.216685,0.0812005,0.511364,0.284616,0.823785,0.0453464,0.250228,0.879658,0.157068,0.0464215,0.572041,0.246776,0.761815,0.751836,0.676884,0.23709,0.803199,0.00696164,0.591567,0.664166,0.338152,0.495459,0.156864,0.669485,0.659164,0.0993814,0.459738,0.807529,0.334097,0.220542,0.02366,0.354118,0.227129,0.609362,0.256704,0.755296,0.881782,0.294716,0.242077,0.184188,0.323914,0.443513,0.476854,0.619274,0.575113,0.284596,0.908687,0.815265,0.354473,0.558653,0.243463,0.366248,0.0292861,0.586679,0.736199,0.447695,0.388079,0.278115,0.302635,0.200751,0.277252,0.589594,0.291761,0.19725,0.436099,0.111482,0.432122,0.466476,0.744323,0.0394055,0.352098,0.566108,0.596965,0.50521,0.884118,0.475764,0.466738,0.888822,0.0107038,0.810597,0.805953,0.341951,0.0197629,0.739707,0.747984,0.006136,0.482135,0.460864,0.199816,0.503177,0.0883961,0.212309,0.125696,0.394357,0.299956,0.313867,0.0741569,0.427809,0.989969,0.189973,0.080745,0.917666,0.790825,0.804539,0.585783,0.576217,0.927712,0.655719,0.975593,0.637693,0.917038,0.345499,0.0849446,0.256051,0.559007,0.223724,0.0924383,0.489591,0.0297284,0.115156,0.0489196,0.288112,0.0334519,0.0893416,0.173078,0.480461,0.264319,0.713917,0.889213,0.703616,0.408141,0.0360885,0.743856,0.811677,0.457289,0.402774,0.965541,0.39963,0.204244,0.802647,0.41889,0.779167,0.0987721,0.201419,0.719482,0.555882,0.37419,0.908898,0.151018,0.780654,0.317424,0.985341,0.134483,0.0471216,0.275459,0.817245,0.262,0.658864,0.897613,0.450587,0.696603,0.682778,0.557536,0.367678,0.586921,0.947477,0.392565,0.575661,0.411408,0.0324404,0.395968,0.375087,0.243706,0.0947375,0.627107,0.417492,0.806443,0.239876,0.352191,0.159881,0.993979,0.320559,0.010931,0.590069,0.442686,0.608409,0.673301,0.23303,0.0841041,0.709933,0.51303,0.22456,0.563571,0.735818,0.220286,0.331258,0.889166,0.474673,0.814209,0.647474,0.150447,0.326861,0.492029,0.137032,0.793896,0.998021,0.798389,0.744639,0.814686,0.407498,0.723526,0.629373,0.451553,0.515331,0.699207,0.810648,0.753781,0.515118,0.70291,0.539701,0.00590795,0.300969,|0.484958,0.887624,0.570518,0.20275,0.932961,0.952084,0.608107,0.0840861,0.373574,0.223904,0.206762,0.575301,0.361387,0.271417,0.0214891,0.836455,0.305806,0.0348876,0.720085,0.468307,0.0122127,0.675013,0.332744,0.194456,0.16226,0.674751,0.565959,0.88724,0.431926,0.109749,0.645331,0.811247,0.558262,0.269766,0.985816,0.736902,0.0956759,0.658043,0.910767,0.975401,0.927657,0.207908,0.341894,0.0461089,0.477414,0.7432,0.155917,0.842533,0.152078,0.178349,0.485169,0.811215,0.221733,0.00416178,0.106006,0.550767,0.756236,0.18383,0.114563,0.282807,0.83229,0.909419,0.271855,0.632728,0.0378404,0.396178,0.274791,0.796624,0.473124,0.299355,0.402077,0.597528,0.675032,0.936644,0.768564,0.289327,0.629633,0.314129,0.864723,0.556932,0.291286,0.808826,0.134264,0.42217,0.0704043,0.223416,0.317405,0.23587,0.209484,0.577684,0.0289671,0.149199,0.622774,0.60968,0.453891,0.565226,0.860848,0.320557,0.162394,0.0782665,0.0233254,0.616401,0.829169,0.9501,0.133419,0.468945,0.766427,0.101229,0.515123,0.686108,0.597216,0.309698,0.635989,0.549365,0.895809,0.555704,0.828465,0.300865,0.908483,0.432235,0.681675,0.766388,0.780011,0.251222,0.487116,0.313986,0.81537,0.428253,0.595693,0.654789,0.737657,0.218255,0.779741,0.483197,0.835014,0.237854,0.343556,0.246033,0.43102,0.46031,0.236877,0.506567,0.438842,0.225547,0.549004,0.655001,0.799624,0.157996,0.520797,0.92811,0.823357,0.159462,0.651391,0.41153,0.855287,0.844971,0.207982,0.772175,0.409239,0.407082,0.205462,0.597173,0.104368,0.486244,0.088909,0.892873,0.117869,0.564178,0.777482,0.274669,0.0626937,0.843657,0.0942137,0.158793,0.996065,0.199747,0.0600494,0.991282,0.0669456,0.139055,0.268472,0.664717,0.925731,0.31069,0.645316,0.825742,0.385765,0.433461,0.719425,0.938545,0.358808,0.363114,0.819225,0.831964,0.244238,0.239287,0.290353,0.50859,0.00374562,0.291389,0.965768,0.413854,0.292882,0.65929,0.868878,0.480496,0.638117,0.652148,0.217025,0.0598357,0.433854,0.370081,0.189996,0.441413,0.329075,0.5476,0.0895861,0.955868,0.421972,0.975145,0.146596,0.168462,0.0657291,0.519941,0.242731,0.466721,0.108154,0.682957,0.657593,0.226865,0.149044,0.142262,0.0289932,0.843831,0.988641,0.0402759,0.859521,0.0323948,0.706929,0.61143,0.321083,0.890802,0.76955,0.406622,0.589662,0.805149,0.481378,0.622733,0.465348,0.619852,0.0507204,0.701129,0.845818,0.52481,0.259992,0.256801,0.986834,0.339296,0.91252,0.383326,0.586585,0.357765,0.0587695,0.332113,0.628862,0.85598,0.703373,0.0270607,0.541099,0.624541,0.675773,0.215697,0.86618,0.603107,0.499968,0.147864,0.0793454,0.142769,0.132403,0.895233,0.651813,0.108867,0.81065,0.52328,0.624087,0.973335,0.769228,0.0154791,0.648684,0.759611,0.984279,0.0766626,0.992899,0.00281948,0.257112,0.894061,0.613613,0.780877,0.439909,0.987206,0.781842,0.216302,0.354355,0.168808,0.472147,0.0187232,0.638017,0.413931,0.704673,0.078398,0.875908,0.392217,0.793474,0.463843,0.152436,0.226513,0.474403,0.266527,0.0320544,0.265657,0.722703,0.672065,0.185734,0.228728,0.881197,0.877308,0.779032,0.615589,0.135158,0.458,0.522786,0.40663,0.607483,0.641013,0.70934,0.409073,0.763979,0.185516,0.0796432,0.622903,0.429231,0.684323,0.536488,0.822008,0.810484,0.377214,0.668457,0.822266,0.75251,0.908788,0.92711,0.185018,0.722218,0.997432,0.979561,0.809752,0.818351,0.928,0.108091,0.464498,0.374472,0.66265,0.555583,0.155492,0.174296,0.843861,0.460778,0.619309,0.779432,0.582805,0.0738186,0.399721,0.503363,0.59756,0.0139568,0.350758,0.950906,0.159792,0.156178,0.663028,0.25242,0.672198,0.731194,0.562038,0.843468,0.384018,0.121509,0.382814,0.551636,0.699533,0.679499,0.449019,0.424727,0.0958308,0.0100744,0.0920799,0.0328092,0.0932379,0.159001,0.129348,0.957478,0.270233,0.48804,0.426627,0.961149,0.602144,0.815581,0.952356,0.952901,0.49132,0.553593,0.00516397,0.893184,0.0124431,0.464455,0.441069,0.981383,0.458094,0.511263,0.815321,0.010115,0.571976,0.605606,0.578846,0.61287,0.0145476,0.785011,0.6905,0.790628,0.652496,0.881963,0.151936,0.183229,0.181351,0.403189,0.630772,0.319162,0.796231,0.457634,0.965442,0.143728,0.745412,0.530321,0.498879,0.434042,0.941313,0.15044,0.981179,0.176164,0.715009,0.623677,0.499068,0.649576,0.856215,0.979394,0.25761,0.437851,0.66484,0.397181,0.832249,0.964551,0.595384,0.684187,0.683969,0.236538,0.0363541,0.634398,0.458901,0.775607,0.196033,0.988859,0.773707,0.620559,0.770629,0.7784,0.705953,0.570247,0.656907,0.301719,0.722636,0.915743,0.0855834,0.247393,0.723966,0.994166,0.720633,0.355594,0.922418,0.905116,0.449346,0.898637,0.734738,0.719016,0.30695,0.650361,0.86969,0.161051,0.564462,0.25589,0.82602,0.314137,0.785145,0.958101,0.803025,0.900335,0.860291,0.0939858,0.405857,0.456507,0.766634,0.729693,0.4395,0.0820578,0.113802,0.610156,0.608045,0.725002,0.163686,0.232063,0.914601,0.293397,0.379442,0.793365,0.0930133,0.618189,0.487184,0.361949,0.556206,0.778318,0.686562,0.600815,0.671684,0.559965,0.123062,0.970498,0.17623,0.271304,0.555669,0.10775,0.808514,0.799916,0.000602126,0.24523,0.334011,0.546406,0.526458,0.492228,0.574115,0.692336,0.993769,0.399022,0.883527,0.70876,0.938549,0.0310529,0.261516,0.205791,0.305563,0.373389,0.697225,0.757494,0.733805,0.0939512,0.932082,0.56768,0.591674,0.511189,0.798309,0.659361,0.338278,0.684086,0.659943,0.617818,0.32533,0.45383,0.0544642,0.0328262,0.565695,0.908006,0.99735,0.846488,0.421373,0.838369,0.024192,0.564817,0.788002,0.540664,0.85145,0.619753,0.855839,0.966145,0.846315,0.115006,0.892182,0.428796,0.600013,0.423311,0.906844,0.710296,0.767869,0.0280908,0.427258,0.513557,0.172411,0.744701,0.813442,0.191251,0.340953,0.600478,0.408922,0.993285,0.725244,0.514261,0.624089,0.834314,0.431337,0.838626,0.529037,0.404733,0.285566,0.209778,0.963335,0.639513,0.340753,0.297205,0.0813314,0.547882,0.270003,0.547999,0.0410534,0.524009,0.465757,0.713733,0.207848,0.728396,0.299963,0.702005,0.304238,0.0231681,0.827415,0.030875,0.353751,0.866612,0.276389,0.378796,0.273944,0.188955,0.34111,0.375275,0.328092,0.581451,0.686247,0.344898,0.519337,0.00540906,0.253079,0.445591,0.739976,0.54501,0.592052,0.907128,0.0399144,0.10222,0.157966,0.625343,0.575978,0.489755,0.604901,0.344439,0.428751,0.98274,0.418016,0.169982,0.611965,0.537293,0.840981,0.890706,0.874422,0.340789,0.655505,0.00513077,0.0731143,0.756355,0.907464,0.216884,0.610676,0.850679,0.311779,0.16736,0.455728,0.131862,0.0217519,0.786816,0.867887,0.335462,0.812815,0.976717,0.62128,0.316377,0.355476,0.86712,0.287893,0.321755,0.705885,0.395522,0.610911,0.732677,0.869763,0.316301,0.32455,0.716791,0.25952,0.463668,0.754662,0.874378,0.933002,0.742714,0.42239,0.144642,0.738321,0.790479,0.495574,0.238574,0.517369,0.37099,0.656844,0.916171,0.975135,0.797761,0.331891,0.086233,0.622304,0.0816315,0.0194455,0.900566,0.959737,0.748101,0.907591,0.356628,0.386513,0.177534,0.92554,0.281371,0.241732,0.378993,0.471435,0.776873,0.801729,0.908374,0.121314,0.28442,0.974354,0.598717,0.0676742,0.748544,0.0488459,0.464227,0.122091,0.621295,0.655683,0.528746,0.203681,0.253993,0.324328,0.931331,0.328816,0.393447,0.0303413,0.730139,0.751507,0.245831,0.617347,0.631271,0.61006,0.643878,0.0688959,0.659573,0.0900435,0.440887,0.440849,0.713501,0.547616,0.526951,0.511818,0.73861,0.333072,0.0412428,0.515888,0.583804,0.396005,0.294762,0.757918,0.937937,0.292565,0.00707799,0.960876,0.846232,0.401038,0.663104,0.863182,0.0203752,0.345424,0.129767,0.238371,0.851488,0.375804,0.0457474,0.72968,0.856757,0.689383,0.102339,0.730207,0.612929,0.651232,0.694824,0.284437,0.789215,0.575573,0.201634,0.497471,0.236563,0.0651578,0.0978569,0.639767,0.931454,0.0791083,0.384701,0.672672,0.835667,0.654093,0.981523,0.936473,0.234809,0.834139,0.756117,0.578319,0.360613,0.566152,0.910664,0.480284,0.901291,0.593765,0.324071,0.262927,0.339955,0.799514,0.942755,0.208149,0.116908,0.941507,0.765408,0.527861,0.482319,0.227829,0.884439,0.508251,0.426644,0.406036,0.00756997,0.217957,0.497978,0.168828,0.00543606,0.841782,0.849274,0.710468,0.627064,0.426365,0.883742,0.388484,0.790129,0.727526,0.161056,0.795882,0.945726,0.227524,0.9774,0.397694,0.0994539,0.859346,0.707755,0.992456,0.0631565,0.800405,0.789144,0.0740115,0.346758,0.595935,0.93572,0.892505,0.0177423,0.857114,0.116902,0.293936,0.847539,0.408114,0.420947,0.107076,0.148117,0.318402,0.651319,0.0824789,0.128201,0.699004,0.346149,0.660369,0.215411,0.293563,0.952311,0.340151,0.528143,0.646211,0.49385,0.705135,0.808378,0.0492552,0.197779,0.0428393,0.627845,0.410441,0.98062,0.489299,0.967831,0.260922,0.364096,0.878464,0.0969564,0.468352,0.788168,0.561739,0.775272,0.292022,0.583424,0.141373,0.505289,0.604276,0.870717,0.908148,0.261746,0.54045,0.158759,0.346619,0.471463,0.838621,0.959994,0.614592,0.543735,0.183144,0.172261,0.725573,0.61673,0.030775,0.330678,0.200745,0.849744,0.211337,0.233194,0.0438935,0.303582,0.628987,0.0514475,0.0121818,0.886263,0.568271,0.813776,0.096737,0.12799,0.0840883,0.467827,0.931426,0.668704,0.738561,0.0358817,0.0806441,0.708916,0.938348,0.414961,0.350323,0.152641,0.694121,0.815193,0.503556,0.560675,0.714495,0.607316,0.644536,0.95343,0.073465,0.232303,0.567473,0.694667,0.933147,0.235084,0.853759,0.0962742,0.580089,0.420161,0.994731,0.684538,0.987559,|0.138576,0.68962,0.320332,0.421755,0.801268,0.218211,0.511041,0.412427,0.968982,0.204839,0.646541,0.897745,0.674112,0.446852,0.268998,0.330042,0.236043,0.408871,0.951801,0.265645,0.992018,0.949895,0.733289,0.372646,0.591305,0.776473,0.32392,0.0603774,0.424342,0.627838,0.823298,0.708183,0.495967,0.598156,0.978689,0.201982,0.911469,0.35246,0.551109,0.625005,0.201257,0.156593,0.106875,0.523305,0.147305,0.102927,0.588212,0.677817,0.960289,0.117149,0.376824,0.211938,0.6269,0.59291,0.552636,0.0997219,0.877904,0.207576,0.728624,0.0669559,0.613614,0.480801,0.537929,0.604982,0.653234,0.546298,0.522511,0.0596715,0.338621,0.745743,0.184891,0.0539082,0.330359,0.417057,0.554111,0.335313,0.616682,0.946449,0.915978,0.302441,0.85989,0.609187,0.156101,0.275815,0.187884,0.897511,0.886651,0.941246,0.691947,0.0406953,0.248659,0.0774689,0.105851,0.103864,0.339818,0.839434,0.579108,0.711662,0.145625,0.240596,0.190324,0.940476,0.3443,0.604483,0.260232,0.907059,0.130916,0.283596,0.853401,0.401192,0.232681,0.767118,0.254651,0.423037,0.279806,0.914301,0.280183,0.963992,0.824423,0.201063,0.695501,0.867738,0.126015,0.105861,0.528152,0.938761,0.823275,0.00749582,0.09889,0.716882,0.219023,0.560596,0.00891322,0.638419,0.519277,0.348378,0.672671,0.345025,0.0801961,0.0702073,0.239072,0.230244,0.479473,0.580571,0.975197,0.435204,0.869471,0.994719,0.873173,0.921844,0.647486,0.239781,0.785723,0.893603,0.760464,0.705174,0.120417,0.327569,0.935732,0.93507,0.0111939,0.53273,0.845952,0.322291,0.63881,0.651427,0.627179,0.340444,0.44476,0.205957,0.69726,0.480439,0.694776,0.893956,0.336688,0.644208,0.477722,0.675189,0.564296,0.484107,0.45283,0.11463,0.76028,0.460873,0.861861,0.696466,0.366307,0.626224,0.39603,0.343978,0.590176,0.504449,0.406325,0.131398,0.676682,0.654013,0.730779,0.488371,0.117367,0.989489,0.467178,0.438696,0.565478,0.650787,0.362109,0.847504,0.952355,0.254638,0.249621,0.621952,0.982467,0.712447,0.33944,0.282134,0.0939196,0.135593,0.172564,0.719849,0.00543642,0.59061,0.956418,0.618337,0.848223,0.395239,0.159302,0.68176,0.734792,0.652654,0.991379,0.853483,0.99233,0.736244,0.324819,0.599391,0.303379,0.560163,0.308227,0.806722,0.273963,0.137921,0.646608,0.96097,0.263741,0.578534,0.540244,0.802943,0.437618,0.0797139,0.358983,0.408928,0.738153,0.57552,0.0693678,0.787302,0.225997,0.0473526,0.650514,0.532264,0.474699,0.0688881,0.307522,0.50525,0.846811,0.832455,0.779061,0.186168,0.922346,0.822402,0.567574,0.815742,0.554783,0.246737,0.588526,0.700898,0.0622851,0.849395,0.537926,0.172648,0.516298,0.646814,0.350774,0.968867,0.858551,0.666133,0.0431765,0.0342059,0.433502,0.258828,0.770152,0.640547,0.474624,0.563442,0.433835,0.7591,0.595802,0.177402,0.0992402,0.416309,0.00227892,0.862552,0.757614,0.701649,0.108377,0.0871394,0.217491,0.197061,0.0880548,0.653833,0.356507,0.652985,0.844418,0.876981,0.540072,0.612746,0.565586,0.523383,0.445334,0.459989,0.208466,0.403709,0.897558,0.159001,0.36259,0.242705,0.559401,0.574604,0.839438,0.261689,0.193029,0.499146,0.31556,0.912215,0.682997,0.917829,0.000883579,0.71204,0.495814,0.213263,0.615408,0.640899,0.997332,0.411663,0.510546,0.186392,0.07688,0.147156,0.481187,0.527222,0.694029,0.957654,0.396654,0.177424,0.74926,0.66741,0.848385,0.380723,0.439515,0.31652,0.478938,0.121843,0.507173,0.091188,0.061332,0.996091,0.246766,0.258486,0.730485,0.151041,0.417187,0.968446,0.381775,0.653338,0.451262,0.480377,0.493052,0.0283759,0.109197,0.447632,0.877844,0.306997,0.0483891,0.910483,0.488494,0.97057,0.809098,0.109898,0.681269,0.176651,0.550199,0.940253,0.0196838,0.920427,0.888758,0.720365,0.0674807,0.703162,0.216093,0.933573,0.573449,0.472044,0.632527,0.702762,0.436907,0.137454,0.0244049,0.0680192,0.289133,0.319684,0.745761,0.783076,0.402062,0.569914,0.0805789,0.733739,0.590677,0.443878,0.377935,0.916177,0.960255,0.420044,0.133206,0.689478,0.79496,0.645854,0.822225,0.727155,0.161545,0.195389,0.457804,0.945539,0.350539,0.83932,0.0273907,0.680384,0.307787,0.725711,0.716278,0.402702,0.108795,0.0257004,0.72562,0.646436,0.274895,0.76226,0.861545,0.886219,0.321683,0.628018,0.845037,0.325444,0.178149,0.468437,0.272042,0.367744,0.313234,0.652637,0.949941,0.978618,0.99288,0.843991,0.487876,0.620921,0.449683,0.789688,0.5112,0.616323,0.449941,0.414071,0.0697392,0.0869319,0.101342,0.44688,0.531659,0.236401,0.803065,0.745323,0.093881,0.4864,0.294778,0.573732,0.215977,0.966469,0.137637,0.320639,0.666886,0.243271,0.607465,0.328942,0.559521,0.885402,0.203089,0.662422,0.02797,0.755665,0.177731,0.965219,0.528493,0.539877,0.0901898,0.578085,0.0466538,0.899218,0.819992,0.955507,0.294285,0.208745,0.1485,0.889623,0.685328,0.287784,0.350026,0.45664,0.596579,0.427635,0.468651,0.0951198,0.877219,0.614743,0.32662,0.583715,0.137424,0.866538,0.975698,0.890516,0.997459,0.137525,0.327409,0.115519,0.373264,0.0146797,0.813595,0.273869,0.445981,0.328668,0.94807,0.348163,0.753555,0.432147,0.0760555,0.562801,0.508443,0.360753,0.879095,0.0439574,0.757008,0.0985972,0.350463,0.120113,0.0198631,0.310025,0.358449,0.571059,0.935483,0.0188288,0.492621,0.801377,0.327528,0.849649,0.0575181,0.747087,0.169589,0.720433,0.639031,0.569399,0.194965,0.515474,0.871903,0.250878,0.401857,0.197316,0.10145,0.414288,0.924914,0.00538981,0.387362,0.559572,0.481536,0.501852,0.254053,0.155926,0.842378,0.936167,0.83273,0.334095,0.951112,0.615563,0.934194,0.483561,0.121951,0.0803574,0.57796,0.427382,0.177357,0.18945,0.428182,0.366523,0.63927,0.0232231,0.265361,0.511879,0.997559,0.398361,0.760914,0.207222,0.43384,0.191973,0.864425,0.846131,0.705172,0.350293,0.620316,0.598304,0.976728,0.844385,0.776147,0.641208,0.295871,0.18126,0.232408,0.611905,0.216279,0.295689,0.201249,0.0524781,0.343071,0.124867,0.212642,0.17644,0.78049,0.56422,0.808695,0.633446,0.72748,0.549105,0.976593,0.84553,0.572093,0.0479861,0.905765,0.837493,0.0331887,0.453936,0.382532,0.771724,0.0451572,0.560935,0.055112,0.619803,0.700414,0.507767,0.416148,0.446925,0.984374,0.966254,0.499569,0.853571,0.603022,0.514763,0.0816383,0.99714,0.336181,0.260685,0.301413,0.865805,0.00310636,0.851974,0.545083,0.262849,0.945538,0.687441,0.624683,0.425178,0.983777,0.819243,0.549667,0.206413,0.624042,0.130297,0.824824,0.467742,0.42414,0.659061,0.336745,0.929743,0.868568,0.228527,0.473919,0.104519,0.0804726,0.827187,0.679519,0.755292,0.341277,0.378582,0.677185,0.331903,0.325049,0.373691,0.596283,0.613278,0.221881,0.574244,0.222143,0.980872,0.32243,0.570457,0.00421768,0.495576,0.527391,0.297757,0.653134,0.264353,0.488441,0.213635,0.441541,0.785306,0.75475,0.989592,0.867281,0.0656044,0.36202,0.821839,0.348438,0.893982,0.968891,0.0994912,0.350524,0.887008,0.115571,0.0986047,0.454961,0.118639,0.0120231,0.0317811,0.21106,0.291133,0.334241,0.053426,0.75465,0.616622,0.325229,0.688422,0.536629,0.556095,0.71704,0.983193,0.589875,0.424906,0.811611,0.317576,0.723296,0.397061,0.701433,0.484864,0.503854,0.102727,0.891076,0.814954,0.461763,0.690115,0.792254,0.526287,0.615902,0.951758,0.705831,0.904667,0.903348,0.203501,0.18007,0.45843,0.504286,0.362048,0.00980031,0.0202502,0.438452,0.0640783,0.158491,0.887249,0.792043,0.940809,0.61979,0.921993,0.902023,0.240762,0.436185,0.603783,0.524226,0.748611,0.664747,0.758628,0.596706,0.233473,0.118438,0.0654297,0.052521,0.984299,0.494461,0.220699,0.884223,0.0977415,0.183883,0.924157,0.912994,0.515857,0.558331,0.0423446,0.13054,0.969293,0.625528,0.26524,0.758313,0.189114,0.373742,0.841969,0.728385,0.627094,0.675251,0.794558,0.532795,0.685077,0.840517,0.661873,0.0336967,0.120275,0.596326,0.368767,0.046206,0.495515,0.866215,0.42371,0.19757,0.965517,0.931323,0.515239,0.956603,0.768293,0.72844,0.578764,0.338507,0.689574,0.865228,0.574254,0.908189,0.396316,0.550365,0.650304,0.805963,0.0486088,0.669818,0.131599,0.731111,0.338004,0.381934,0.310959,0.69251,0.609139,0.742861,0.152132,0.736039,0.596929,0.576773,0.0816952,0.6367,0.879931,0.206566,0.697655,0.422655,0.945869,0.526322,0.274354,0.0358982,0.753053,0.120339,0.843041,0.606854,0.43267,0.376001,0.0914223,0.490222,0.534607,0.490466,0.0271241,0.25125,0.812333,0.080036,0.559044,0.962417,0.375975,0.0424081,0.708228,0.323345,0.916672,0.00162643,0.645728,0.289618,0.711537,0.731499,0.639995,0.641369,0.355973,0.50549,0.614916,0.456985,0.638366,0.0731487,0.0132954,0.616851,0.563077,0.970982,0.0754872,0.453946,0.266424,0.327989,0.877347,0.893664,0.216109,0.688095,0.920665,0.311209,0.29374,0.338,0.163895,0.129732,0.789886,0.0811559,0.712402,0.39013,0.56517,0.374185,0.416097,0.364826,0.680717,0.218151,0.931034,0.255731,0.182943,0.239833,0.388107,0.181896,0.149039,0.553715,0.716409,0.372816,0.78065,0.600332,0.610222,0.415345,0.463823,0.941974,0.790126,0.403364,0.357663,0.555655,0.885362,0.0104893,0.621359,0.85865,0.10997,0.240705,0.318711,0.955817,0.694761,0.451563,0.611596,0.63155,0.230657,0.878047,0.0261561,0.588228,0.0417477,0.156044,0.575923,0.380002,0.0110013,0.0328726,0.364296,0.0895358,0.38304,0.593501,0.204503,0.643442,0.104587,0.119656,0.775718,0.707078,0.824599,0.228851,0.842904,0.961543,0.680996,0.792953,0.0202036,0.649238,0.898001,0.450678,0.450788,0.206557,0.977214,0.264141,0.955272,|0.840611,0.133127,0.863696,0.419864,0.531234,0.0286798,0.447295,0.00374478,0.664683,0.145784,0.793825,0.198245,0.610024,0.0582549,0.496506,0.630554,0.731489,0.967526,0.485081,0.284527,0.244564,0.346462,0.256828,0.451209,0.744371,0.504328,0.268982,0.811746,0.0242801,0.554012,0.635254,0.00358474,0.754877,0.833849,0.590574,0.229146,0.924313,0.889849,0.740819,0.0513828,0.967629,0.514002,0.582783,0.539975,0.910429,0.848605,0.316635,0.882572,0.698022,0.374501,0.449108,0.897314,0.227145,0.91128,0.191822,0.593897,0.430696,0.623489,0.488636,0.222962,0.788452,0.66952,0.141773,0.994395,0.560149,0.699031,0.491572,0.28274,0.328663,0.840072,0.493537,0.180261,0.471232,0.889532,0.226754,0.257495,0.167875,0.724738,0.275266,0.35686,0.922331,0.0966792,0.670175,0.962266,0.717853,0.551851,0.756628,0.332937,0.725224,0.146689,0.728752,0.619444,0.460285,0.340538,0.00268656,0.729458,0.0899214,0.596442,0.137595,0.260178,0.309953,0.455307,0.223044,0.954199,0.1039,0.218956,0.300993,0.440165,0.630659,0.414557,0.639668,0.339184,0.648911,0.530602,0.205989,0.368988,0.3787,0.221944,0.499961,0.827723,0.835709,0.994174,0.406407,0.720497,0.105876,0.547632,0.768805,0.740936,0.306929,0.224976,0.387446,0.14147,0.39116,0.751343,0.382886,0.556019,0.570881,0.656925,0.232669,0.200794,0.908043,0.0636015,0.0954478,0.230377,0.258811,0.84154,0.674511,0.520541,0.887854,0.438458,0.969421,0.302265,0.50056,0.843361,0.543343,0.433544,0.891882,0.250664,0.153383,0.019028,0.0281143,0.668547,0.794765,0.012985,0.740999,0.793544,0.66585,0.273759,0.39185,0.221028,0.615353,0.583161,0.81911,0.645467,0.933655,0.80508,0.604908,0.381493,0.725799,0.574851,0.0264344,0.438973,0.836573,0.99271,0.442146,0.190291,0.968858,0.183094,0.862825,0.864962,0.791339,0.258433,0.340288,0.90898,0.832815,0.379441,0.59573,0.544719,0.944672,0.17444,0.707021,0.664371,0.046978,0.802139,0.418643,0.85612,0.659445,0.975542,0.191978,0.961596,0.14752,0.120355,0.742871,0.0571874,0.774176,0.57397,0.954214,0.0910487,0.35867,0.73448,0.602831,0.109796,0.0243524,0.0760269,0.503697,0.830914,0.420511,0.458614,0.613814,0.185906,0.173142,0.131731,0.711077,0.556991,0.248421,0.678622,0.700859,0.340349,0.499883,0.0846677,0.950895,0.343732,0.597043,0.234189,0.327405,0.249592,0.236194,0.984461,0.262964,0.221021,0.682768,0.957042,0.565259,0.826454,0.117134,0.332382,0.602831,0.702161,0.622924,0.455076,0.290697,0.924776,0.608658,0.751943,0.879696,0.0779406,0.612577,0.0270007,0.824513,0.453844,0.783288,0.486989,0.172916,0.149818,0.280422,0.0688166,0.249505,0.0532988,0.644972,0.532894,0.519573,0.991579,0.0669565,0.575827,0.883776,0.794411,0.316836,0.11503,0.516415,0.56742,0.630485,0.392504,0.586477,0.891558,0.140863,0.0784124,0.737643,0.776307,0.329277,0.00186312,0.110653,0.413987,0.817987,0.701655,0.530994,0.897415,0.22373,0.0789144,0.774664,0.815911,0.512256,0.0928856,0.258338,0.929399,0.02246,0.131309,0.995303,0.30602,0.271827,0.195887,0.143931,0.338795,0.0348371,0.759566,0.895014,0.0762441,0.154355,0.0439631,0.0298312,0.339692,0.198295,0.267921,0.526197,0.517495,0.888178,0.847648,0.432498,0.657631,0.606762,0.187532,0.689392,0.752144,0.614887,0.332663,0.750711,0.595499,0.98083,0.327476,0.543536,0.72627,0.091938,0.270941,0.325907,0.985783,0.0793243,0.159359,0.802446,0.984445,0.866445,0.125022,0.926806,0.323468,0.232003,0.618502,0.921281,0.488286,0.0628754,0.0280275,0.176427,0.435704,0.745539,0.785986,0.0688641,0.776706,0.539431,0.683817,0.765765,0.506669,0.895744,0.329639,0.101643,0.647539,0.484647,0.54279,0.64244,0.802279,0.888139,0.561172,0.804873,0.402802,0.308002,0.387089,0.586897,0.587079,0.744495,0.938252,0.465897,0.24834,0.23172,0.661711,0.46658,0.760325,0.696586,0.0471153,0.64937,0.370395,0.240835,0.454441,0.482566,0.505649,0.410615,0.0192934,0.499021,0.0452138,0.365223,0.933827,0.297663,0.19992,0.558602,0.433943,0.814588,0.691619,0.500391,0.19021,0.66424,0.879536,0.11942,0.644793,0.721834,0.665764,0.578107,0.0789001,0.342975,0.789026,0.336786,0.284858,0.736278,0.056685,0.354857,0.716294,0.505628,0.197472,0.39275,0.688898,0.59663,0.162301,0.688626,0.77351,0.140079,0.792652,0.84017,0.30045,0.0508229,0.176063,0.990968,0.205611,0.0984119,0.778263,0.427997,0.491002,0.290412,0.637322,0.800704,0.89563,0.378605,0.159314,0.42463,0.85998,0.88645,0.219288,0.413186,0.31294,0.476794,0.405251,0.381519,0.541595,0.457919,0.280362,0.082338,0.529492,0.511268,0.368196,0.234186,0.639312,0.715264,0.451902,0.361427,0.373088,0.430427,0.95632,0.15735,0.989011,0.10229,0.0552518,0.0135592,0.665608,0.720382,0.198892,0.735979,0.355848,0.539175,0.389949,0.898443,0.787217,0.358536,0.364896,0.0365936,0.11186,0.386994,0.592452,0.0475583,0.317622,0.487805,0.837561,0.13065,0.243502,0.289124,0.936841,0.906943,0.198244,0.52217,0.521018,0.33057,0.00681251,0.1633,0.00697863,0.796248,0.844107,0.898329,0.980023,0.878722,0.673067,0.963851,0.39438,0.707204,0.183149,0.0566458,0.570724,0.0421409,0.176151,0.992018,0.161067,0.818334,0.123097,0.732758,0.00989968,0.259109,0.887433,0.592187,0.776245,0.796681,0.394129,0.132297,0.0886835,0.442336,0.883441,0.720271,0.341479,0.496818,0.374366,0.761799,0.873853,0.664822,0.535484,0.852086,0.90783,0.920336,0.999777,0.676096,0.766568,0.00233763,0.689774,0.497248,0.216709,0.839168,0.891523,0.901037,0.847224,0.994718,0.474838,0.86274,0.814212,0.844464,0.882695,0.923898,0.162755,0.7059,0.504297,0.62396,0.404945,0.784467,0.0582594,0.844362,0.753485,0.484343,0.07804,0.758544,0.60084,0.557024,0.817646,0.180475,0.820847,0.396239,0.0679799,0.290186,0.284491,0.884779,0.459707,0.659715,0.630166,0.737346,0.761377,0.524241,0.0667449,0.598422,0.145769,0.573327,0.135467,0.809511,0.874157,0.664051,0.378163,0.500542,0.551709,0.989105,0.395812,0.778461,0.161107,0.371483,0.811155,0.763873,0.0402169,0.755015,0.817788,0.872336,0.325132,0.367944,0.676131,0.810596,0.0622473,0.292815,0.260381,0.57124,0.352481,0.797442,0.374095,0.0590121,0.735728,0.217012,0.255629,0.666821,0.729402,0.679869,0.907048,0.0680415,0.189595,0.452666,0.19155,0.804417,0.573762,0.131688,0.959471,0.283064,0.628596,0.234441,0.945278,0.65196,0.528975,0.410935,0.99959,0.738264,0.395324,0.913974,0.186669,0.172999,0.0524502,0.41347,0.0875877,0.148583,0.914197,0.473002,0.317492,0.00704396,0.93255,0.214165,0.847444,0.85644,0.909379,0.508061,0.786387,0.994381,0.322749,0.673354,0.370731,0.246131,0.0301573,0.901497,0.285327,0.270912,0.477895,0.439164,0.287805,0.65079,0.882454,0.700333,0.992642,0.892047,0.50463,0.452204,0.386665,0.349997,0.38477,0.225987,0.125209,0.601823,0.502023,0.694587,0.204745,0.950431,0.622613,0.266628,0.903235,0.115192,0.201648,0.648226,0.595485,0.509739,0.261623,0.295466,0.812812,0.980732,0.479349,0.398961,0.0879831,0.0722615,0.151971,0.436562,0.948699,0.585776,0.114777,0.733078,0.592808,0.475182,0.615449,0.000308037,0.735198,0.602473,0.884818,0.0785192,0.0103015,0.0949798,0.49809,0.120248,0.355711,0.108218,0.270778,0.810897,0.0694548,0.0741003,0.792358,0.506085,0.374112,0.64149,0.965467,0.464378,0.63271,0.0725169,0.0600714,0.167574,0.304761,0.367063,0.464894,0.812851,0.12395,0.359786,0.821125,0.782369,0.808761,0.599234,0.628643,0.525563,0.433955,0.656673,0.0965127,0.130872,0.351116,0.398648,0.434817,0.284368,0.357314,0.32498,0.957958,0.335524,0.836961,0.623003,0.15478,0.632329,0.362205,0.764972,0.81751,0.133211,0.023492,0.299584,0.687434,0.969718,0.794651,0.334974,0.302344,0.496455,0.905056,0.844951,0.094291,0.618964,0.692723,0.965234,0.548585,0.185236,0.909748,0.785314,0.819262,0.262435,0.39895,0.581362,0.700255,0.229557,0.531383,0.998545,0.478628,0.926192,0.373462,0.235406,0.906129,0.666912,0.852573,0.468047,0.653046,0.00391102,0.0409361,0.688469,0.916775,0.305666,0.0457812,0.487277,0.222195,0.314771,0.271544,0.849421,0.978547,0.155087,0.713554,0.787439,0.572024,0.30173,0.0428707,0.548938,0.0281872,0.957549,0.243955,0.216448,0.062831,0.0443577,0.292354,0.178064,0.206302,0.824105,0.507325,0.161339,0.141921,0.159828,0.6475,0.268867,0.622185,0.820549,0.43602,0.448934,0.517519,0.776605,0.128316,0.0621634,0.598617,0.991527,0.716598,0.226582,0.0719929,0.834771,0.364618,0.507528,0.338932,0.97006,0.994582,0.773948,0.713043,0.869636,0.211265,0.697579,0.252739,0.860774,0.0967442,0.49299,0.734551,0.491613,0.134031,0.782082,0.829864,0.843862,0.670145,0.495293,0.690133,0.222106,0.526481,0.398497,0.408456,0.21252,0.0624022,0.775237,0.00439346,0.484673,0.288207,0.13526,0.571368,0.0759737,0.596519,0.142528,0.526983,0.926414,0.744761,0.858537,0.673038,0.308354,0.286429,0.509603,0.08644,0.428979,0.906339,0.0902969,0.92591,0.910701,0.916602,0.234671,0.6324,0.331373,0.553819,0.623912,0.27353,0.231969,0.750851,0.596482,0.716294,0.238924,0.817028,0.31545,0.833102,0.257384,0.119254,0.681045,0.429952,0.554812,0.860488,0.0755022,0.477773,0.851873,0.729018,0.592586,0.0526176,0.927407,0.891607,0.719467,0.820363,0.194663,0.04337,0.233267,0.751621,0.639177,0.524473,0.977529,0.632544,0.611239,0.0808388,0.367444,0.808689,0.685472,0.990008,0.726181,0.028231,0.469797,0.137081,0.469012,0.422831,0.184883,0.86039,0.987516,0.851453,0.575593,0.955201,0.801181,0.00985432,0.986009,0.95523,0.647013,0.135885,|0.992041,0.942585,0.365164,0.00657392,0.205234,0.503883,0.698423,0.00526565,0.706776,0.385214,0.614062,0.438305,0.0907789,0.704061,0.17217,0.501498,0.421184,0.195719,0.720008,0.666297,0.0815877,0.0772066,0.0932806,0.481508,0.467756,0.41621,0.194677,0.505438,0.938163,0.842438,0.469481,0.406759,0.474994,0.585616,0.5312,0.0386609,0.981033,0.0270543,0.73281,0.797885,0.79107,0.660325,0.721723,0.93571,0.118654,0.91988,0.538077,0.162364,0.644857,0.846055,0.925377,0.134572,0.201902,0.988651,0.890431,0.316118,0.967762,0.490627,0.0345444,0.660943,0.74803,0.808309,0.165494,0.245365,0.884492,0.761415,0.643885,0.663919,0.961504,0.986936,0.469414,0.0715573,0.29259,0.38246,0.0103856,0.716542,0.334788,0.243795,0.227332,0.595374,0.324523,0.71226,0.19918,0.371368,0.0132222,0.505141,0.244888,0.927001,0.301731,0.596885,0.00145602,0.745753,0.628286,0.785185,0.715295,0.588456,0.662299,0.956532,0.156122,0.19166,0.064733,0.380163,0.695628,0.0500599,0.844283,0.257732,0.228019,0.715102,0.779651,0.25745,0.230939,0.563126,0.795455,0.816142,0.74146,0.190134,0.301069,0.899416,0.651433,0.0553719,0.150715,0.849242,0.842725,0.888201,0.466438,0.465222,0.310919,0.65262,0.793874,0.303865,0.482843,0.176063,0.0831711,0.418723,0.970931,0.53404,0.371203,0.988416,0.626552,0.862014,0.83617,0.519275,0.0563597,0.930751,0.187366,0.62203,0.34135,0.793238,0.510841,0.436898,0.854597,0.863958,0.311973,0.247176,0.753922,0.173939,0.151787,0.749695,0.536191,0.442143,0.432184,0.464349,0.569472,0.962947,0.393598,0.556954,0.574079,0.411121,0.635496,0.548706,0.242569,0.835327,0.358278,0.459226,0.106268,0.697663,0.261258,0.0253577,0.900724,0.845645,0.999141,0.513642,0.0182129,0.189747,0.784384,0.736994,0.282069,0.902153,0.265513,0.335332,0.938355,0.230413,0.718697,0.0198411,0.809407,0.163984,0.662633,0.0398447,0.26127,0.588088,0.960786,0.590922,0.655049,0.539641,0.584856,0.647382,0.595295,0.379681,0.0196424,0.0826418,0.851981,0.258994,0.402765,0.0588315,0.813987,0.932495,0.946636,0.922551,0.748626,0.927268,0.556495,0.488365,0.841428,0.448679,0.149533,0.873671,0.500773,0.551138,0.749814,0.733479,0.97489,0.178844,0.462644,0.839293,0.720371,0.955044,0.885509,0.704336,0.445259,0.20762,0.686951,0.0314605,0.85886,0.0064826,0.667119,0.117193,0.802813,0.718919,0.745585,0.487659,0.793192,0.846307,0.177818,0.626501,0.482504,0.0315659,0.474274,0.104976,0.737817,0.300476,0.773835,0.707812,0.189334,0.0674389,0.473599,0.889456,0.101626,0.279208,0.549348,0.553423,0.416468,0.0710287,0.165658,0.444685,0.945077,0.711175,0.69667,0.898601,0.891103,0.0712053,0.885768,0.570413,0.30569,0.512408,0.470286,0.922287,0.934539,0.401983,0.738103,0.333358,0.552122,0.0261201,0.678364,0.385989,0.869989,0.983353,0.448982,0.899566,0.27022,0.241075,0.833437,0.321402,0.319095,0.652099,0.74222,0.797701,0.261458,0.683697,0.465696,0.854765,0.658233,0.791339,0.691387,0.321297,0.923317,0.342682,0.954894,0.989496,0.17626,0.60814,0.680267,0.584221,0.34693,0.885204,0.688617,0.78299,0.301675,0.494352,0.130682,0.868793,0.876776,0.568951,0.744804,0.267757,0.630291,0.0445108,0.605777,0.875816,0.729157,0.784526,0.791672,0.602463,0.986858,0.841319,0.405733,0.00663459,0.701575,0.754752,0.495418,0.867953,0.413657,0.0711824,0.177156,0.114665,0.830298,0.362195,0.760057,0.0720069,0.725565,0.210731,0.892753,0.121086,0.531097,0.00953174,0.597078,0.818143,0.17209,0.606554,0.585823,0.211041,0.222214,0.363126,0.706249,0.904263,0.0886441,0.715191,0.609961,0.201477,0.214802,0.266721,0.57092,0.879305,0.872777,0.219469,0.992842,0.263269,0.448849,0.755937,0.599895,0.614382,0.453397,0.436854,0.761071,0.0445381,0.982807,0.251924,0.454419,0.489755,0.434586,0.54233,0.790467,0.602495,0.411462,0.419738,0.756286,0.203923,0.165297,0.848458,0.751801,0.366248,0.0828101,0.581585,0.592095,0.677268,0.743792,0.559741,0.583513,0.170452,0.737909,0.779906,0.472766,0.175161,0.999807,0.52939,0.214763,0.972295,0.841139,0.626069,0.135431,0.483445,0.643468,0.293427,0.652194,0.500511,0.902686,0.0748114,0.74754,0.450201,0.127126,0.95608,0.719587,0.788885,0.425355,0.779596,0.183458,0.798748,0.170679,0.118936,0.359976,0.827145,0.0784457,0.0315683,0.168709,0.452269,0.205266,0.176661,0.322687,0.869555,0.948453,0.358676,0.599122,0.662699,0.782689,0.0841201,0.95675,0.712509,0.606621,0.463135,0.528128,0.38596,0.0198293,0.284383,0.325287,0.355969,0.948221,0.9014,0.322957,0.732823,0.52036,0.270101,0.158717,0.860998,0.413011,0.209887,0.465958,0.477006,0.764128,0.0486182,0.469532,0.0477734,0.570571,0.973661,0.0604521,0.777221,0.877956,0.793561,0.445184,0.651899,0.298534,0.31217,0.47115,0.0930972,0.646754,0.165509,0.0106621,0.717689,0.51665,0.253817,0.41529,0.927298,0.773994,0.254274,0.605566,0.332619,0.783227,0.735099,0.816136,0.382629,0.813816,0.908248,0.772492,0.896662,0.271284,0.55333,0.586063,0.210775,0.0534733,0.415367,0.64544,0.359251,0.334755,0.812075,0.162183,0.0839573,0.229049,0.496843,0.970197,0.87693,0.8611,0.286065,0.584804,0.682276,0.642033,0.776343,0.0203626,0.0835165,0.66798,0.875411,0.468115,0.38684,0.513044,0.412885,0.648414,0.103245,0.0679258,0.691975,0.0930466,0.450385,0.822537,0.919955,0.611759,0.873939,0.874823,0.288625,0.596254,0.974459,0.582576,0.542632,0.495567,0.474501,0.108669,0.789917,0.767306,0.311483,0.702607,0.719872,0.0510368,0.171592,0.883311,0.319528,0.505302,0.730494,0.769248,0.795639,0.356503,0.83561,0.447897,0.872243,0.710099,0.974215,0.300233,0.737894,0.27282,0.0632665,0.820929,0.228998,0.207369,0.488787,0.579028,0.701664,0.815439,0.358036,0.178901,0.710572,0.0582456,0.508032,0.00519288,0.511885,0.424625,0.848194,0.0531686,0.448767,0.799944,0.301418,0.936151,0.107866,0.537315,0.304523,0.039237,0.740295,0.318044,0.796621,0.524847,0.274118,0.962313,0.143168,0.0224844,0.967446,0.0200047,0.753638,0.862895,0.0404215,0.257615,0.860094,0.148945,0.658592,0.0320965,0.153201,0.55551,0.37754,0.587983,0.640367,0.277114,0.753594,0.3871,0.559761,0.118228,0.590393,0.662044,0.287437,0.888684,0.945045,0.234155,0.58611,0.652687,0.567547,0.751557,0.162736,0.693718,0.590586,0.197769,0.927898,0.611441,0.409886,0.372138,0.558378,0.920743,0.738612,0.768647,0.256579,0.601773,0.958809,0.59985,0.506148,0.2748,0.941161,0.537983,0.736577,0.138687,0.133922,0.287537,0.6683,0.804766,0.906255,0.0834728,0.470972,0.497502,0.989006,0.0552367,0.139046,0.762147,0.399374,0.401751,0.58209,0.660132,0.600152,0.507985,0.157694,0.72334,0.110153,0.122637,0.756486,0.866351,0.850997,0.155434,0.874141,0.939956,0.804924,0.262772,0.886699,0.00187922,0.450664,0.949271,0.32698,0.0971329,0.75776,0.360366,0.425058,0.254481,0.78471,0.916817,0.588475,0.52512,0.489414,0.256709,0.907201,0.0235891,0.761725,0.701102,0.439961,0.948271,0.355184,0.373271,0.375372,0.578433,0.312852,0.769936,0.500423,0.400258,0.850175,0.402602,0.556243,0.82931,0.168014,0.719626,0.327209,0.609773,0.847804,0.278236,0.60172,0.544894,0.352723,0.740152,0.424024,0.844201,0.232102,0.48605,0.324202,0.589651,0.75685,0.386489,0.315054,0.93063,0.142817,0.0290757,0.811211,0.161943,0.957502,0.418907,0.138699,0.794002,0.21314,0.135904,0.303631,0.260625,0.193071,0.055271,0.616146,0.712231,0.455309,0.638913,0.0341339,0.968855,0.499512,0.648041,0.503688,0.907851,0.752952,0.602843,0.507227,0.879045,0.433845,0.382969,0.663465,0.844655,0.734903,0.763845,0.655941,0.139167,0.739401,0.187759,0.0984721,0.496846,0.780708,0.183085,0.195783,0.655534,0.147111,0.523851,0.992278,0.399043,0.524897,0.030148,0.351325,0.648252,0.172649,0.880576,0.28956,0.590414,0.77758,0.581183,0.347685,0.684028,0.63906,0.772747,0.563908,0.674347,0.724257,0.624186,0.806635,0.966903,0.861509,0.440168,0.746971,0.90951,0.967436,0.927159,0.211481,0.955666,0.111162,0.945202,0.951001,0.00865006,0.475661,0.636748,0.517849,0.186044,0.609827,0.787285,0.118017,0.64348,0.112302,0.051879,0.28178,0.292971,0.131219,0.0312608,0.418156,0.630602,0.182107,0.172531,0.74989,0.203618,0.552293,0.40515,0.726671,0.238606,0.876382,0.323781,0.0676708,0.392777,0.141237,0.865021,0.572153,0.771064,0.680307,0.652282,0.674296,0.666025,0.061789,0.381965,0.979694,0.965149,0.760592,0.546851,0.634518,0.686403,0.0482946,0.0218333,0.319556,0.894656,0.821057,0.109637,0.0559035,0.866898,0.499982,0.877347,0.521581,0.918082,0.854202,0.00349039,0.549337,0.395002,0.629659,0.465203,0.367229,0.588045,0.966483,0.920254,0.368786,0.461781,0.376979,0.0607526,0.846405,0.299208,0.404997,0.859734,0.518134,0.122523,0.609065,0.652628,0.842434,0.703701,0.987108,0.00235045,0.949904,0.678402,0.99456,0.280588,0.241644,0.857145,0.43053,0.389205,0.880727,0.813966,0.921993,0.100215,0.616798,0.996599,0.977876,0.143857,0.975677,0.813626,0.390719,0.827784,0.998643,0.0593113,0.415107,0.928677,0.0654171,0.154468,0.499328,0.661989,0.544426,0.591951,0.203606,0.71633,0.504828,0.502938,0.0746203,0.215383,0.0387118,0.817018,0.673212,0.142372,0.280571,0.839252,0.822342,0.839071,0.0969494,0.270063,0.515274,0.319666,0.806664,0.946107,0.726936,0.441915,0.0691101,0.637726,0.421557,0.928413,0.0546404,0.318808,0.589681,0.687391,0.245911,0.177547,0.955579,0.0567814,0.147632,0.890873,0.473998,0.322912,0.376676,0.767404,0.207569,0.174239,0.129086,0.541505,0.750866,|0.415478,0.0975847,0.484658,0.64456,0.858443,0.0659956,0.753837,0.0937968,0.405542,0.38651,0.325889,0.0593112,0.775274,0.445079,0.397831,0.307069,0.221826,0.0716701,0.984944,0.141146,0.0807481,0.0778238,0.128741,0.20373,0.149601,0.872637,0.652034,0.756849,0.21917,0.180736,0.695117,0.83388,0.0474913,0.752482,0.855093,0.924062,0.675386,0.511435,0.56758,0.262106,0.130671,0.84117,0.205037,0.0281916,0.308265,0.0310459,0.791234,0.0196724,0.00855839,0.684784,0.321944,0.728484,0.572645,0.98038,0.272519,0.872781,0.233177,0.463364,0.682835,0.75528,0.684728,0.755402,0.545639,0.680643,0.232883,0.63613,0.108724,0.345458,0.480996,0.810925,0.744939,0.414646,0.744863,0.972902,0.235102,0.901721,0.468705,0.555693,0.16725,0.591935,0.917779,0.883777,0.42054,0.662317,0.575594,0.347443,0.24493,0.561792,0.69777,0.447271,0.602147,0.45202,0.607495,0.40227,0.389685,0.571352,0.0707262,0.499736,0.16391,0.592662,0.529135,0.140219,0.821364,0.6416,0.569033,0.148528,0.0124967,0.396759,0.627752,0.805434,0.84888,0.51146,0.499779,0.340058,0.542157,0.08949,0.137359,0.250957,0.918875,0.917686,0.455461,0.603551,0.839223,0.0400525,0.933417,0.860972,0.130516,0.132113,0.937367,0.979029,0.971209,0.598626,0.787396,0.0974665,0.59708,0.244996,0.792809,0.443636,0.222204,0.0768969,0.357551,0.437482,0.911538,0.0118875,0.308405,0.0676994,0.0974422,0.522606,0.801941,0.836513,0.260618,0.608974,0.033004,0.584444,0.526505,0.0800716,0.168324,0.78354,0.25112,0.326569,0.699909,0.0476416,0.217243,0.874963,0.510265,0.204202,0.523608,0.413325,0.890465,0.672881,0.367978,0.904309,0.772587,0.407856,0.0684878,0.407426,0.386878,0.192599,0.959499,0.827318,0.148968,0.0111098,0.560019,0.756185,0.291928,0.567396,0.384272,0.871642,0.791817,0.0964975,0.0012514,0.254639,0.313762,0.200016,0.988279,0.653346,0.225298,0.784928,0.450702,0.526355,0.592824,0.243087,0.881225,0.680926,0.634186,0.0212683,0.0821623,0.882363,0.502723,0.681147,0.899313,0.257297,0.63321,0.699592,0.303313,0.261064,0.451302,0.650119,0.453632,0.485733,0.224875,0.302325,0.406426,0.797341,0.697611,0.950942,0.814091,0.137078,0.16803,0.705899,0.515775,0.584996,0.109926,0.032183,0.153632,0.826761,0.0324709,0.710961,0.478753,0.412915,0.570609,0.0775594,0.821226,0.980704,0.44584,0.381527,0.970261,0.347047,0.197226,0.47797,0.86367,0.0288076,0.899846,0.0981583,0.214544,0.595689,0.0649892,0.491723,0.476977,0.384191,0.286478,0.413594,0.775712,0.550543,0.932421,0.884988,0.486097,0.897624,0.640386,0.500741,0.954597,0.868998,0.731105,0.951613,0.74984,0.325062,0.677016,0.184131,0.0104041,0.903128,0.149731,0.0727811,0.352962,0.25796,0.0243685,0.619517,0.569018,0.820001,0.300255,0.997416,0.712846,0.611042,0.0614542,0.668717,0.885565,0.0226968,0.415758,0.989611,0.380964,0.304383,0.881004,0.350425,0.660298,0.684431,0.272035,0.464558,0.90731,0.116639,0.254337,0.635585,0.00555414,0.973848,0.619821,0.0557953,0.916012,0.0268173,0.203124,0.203281,0.536172,0.127055,0.913344,0.704205,0.602641,0.719244,0.507826,0.14001,0.499649,0.392841,0.875539,0.248865,0.790873,0.760012,0.641901,0.476621,0.203306,0.966353,0.808449,0.129116,0.435713,0.74268,0.814545,0.83366,0.826044,0.953783,0.951391,0.908841,0.253214,0.17507,0.455408,0.66394,0.504729,0.462723,0.10611,0.651071,0.24133,0.768148,0.271369,0.391747,0.71359,0.425929,0.489354,0.265478,0.315338,0.0167161,0.331871,0.96531,0.111631,0.139761,0.921927,0.305511,0.619128,0.0583751,0.479361,0.454684,0.378889,0.063499,0.493168,0.489746,0.178249,0.143958,0.146519,0.742342,0.612353,0.959033,0.806004,0.719603,0.72102,0.319664,0.167505,0.308385,0.266023,0.734496,0.488618,0.999816,0.246408,0.103611,0.856207,0.681779,0.832911,0.696668,0.292939,0.409329,0.954817,0.192055,0.939534,0.335642,0.930795,0.698254,0.0752683,0.667079,0.42685,0.163107,0.838355,0.688975,0.213403,0.796681,0.0760464,0.168529,0.696022,0.708816,0.940394,0.657799,0.915784,0.18125,0.194753,0.441323,0.772882,0.711995,0.792429,0.936137,0.0544378,0.583614,0.994667,0.0225627,0.766613,0.721345,0.99524,0.979043,0.665656,0.589723,0.949698,0.846505,0.687502,0.462604,0.226444,0.331491,0.178425,0.0711564,0.662642,0.477151,0.0583012,0.12946,0.147135,0.740458,0.359887,0.374943,0.178498,0.175863,0.226486,0.595221,0.486313,0.309965,0.139953,0.116749,0.230993,0.383234,0.925907,0.454619,0.466873,0.914313,0.567726,0.576311,0.124508,0.580048,0.225016,0.226118,0.215739,0.369972,0.836551,0.23394,0.552022,0.572582,0.694485,0.510996,0.986107,0.976251,0.974108,0.701272,0.637152,0.0351739,0.595967,0.0140101,0.955568,0.448802,0.119382,0.206326,0.549482,0.905304,0.587139,0.49684,0.31555,0.157538,0.703951,0.3189,0.500434,0.815929,0.469798,0.917334,0.550959,0.436515,0.472702,0.0447035,0.202152,0.978415,0.594292,0.634244,0.0605588,0.931021,0.489989,0.804279,0.613769,0.114194,0.0604412,0.362256,0.293463,0.00304216,0.268584,0.0438251,0.290956,0.64657,0.0239201,0.316954,0.772456,0.805951,0.487995,0.91008,0.753638,0.869449,0.258763,0.800153,0.633518,0.404585,0.603496,0.852385,0.28255,0.815626,0.589297,0.433227,0.858841,0.843739,0.44581,0.170621,0.905154,0.549336,0.843838,0.334488,0.63875,0.724598,0.0100647,0.595682,0.70245,0.802621,0.885123,0.0204561,0.601797,0.747467,0.0857714,0.517424,0.234126,0.208668,0.790615,0.223496,0.958175,0.812655,0.733187,0.408037,0.347051,0.864764,0.471646,0.909354,0.896687,0.714305,0.690517,0.458276,0.10271,0.860598,0.902458,0.490991,0.114273,0.519596,0.460325,0.340772,0.456443,0.938161,0.143164,0.0467213,0.404379,0.0252883,0.649508,0.368942,0.554051,0.924815,0.687814,0.39106,0.675864,0.677226,0.856639,0.167627,0.540944,0.646015,0.0446677,0.836683,0.665189,0.82188,0.00918525,0.720754,0.55292,0.738405,0.936566,0.890252,0.395477,0.937081,0.13928,0.623878,0.428347,0.944634,0.880315,0.279658,0.763373,0.412037,0.0321088,0.26646,0.625974,0.989863,0.822656,0.528153,0.867361,0.169901,0.150935,0.633333,0.242616,0.681692,0.58164,0.362977,0.67714,0.300097,0.47829,0.402015,0.180518,0.771863,0.664385,0.0965207,0.0422362,0.405762,0.200134,0.307021,0.843695,0.0934126,0.561397,0.58058,0.990031,0.770292,0.123573,0.806826,0.53489,0.0400152,0.451908,0.269013,0.840314,0.199627,0.708536,0.0754593,0.408232,0.192944,0.111003,0.291883,0.634819,0.98552,0.315224,0.302205,0.845346,0.76836,0.891486,0.517765,0.812898,0.960952,0.0748516,0.653706,0.0113688,0.00801092,0.792437,0.971063,0.351994,0.365077,0.165864,0.374476,0.0634677,0.960732,0.603498,0.523195,0.361513,0.267739,0.556311,0.575757,0.363837,0.262479,0.496273,0.091644,0.801783,0.00515234,0.819702,0.0326924,0.99214,0.461597,0.0552974,0.685299,0.656787,0.960262,0.896396,0.73686,0.916069,0.76256,0.0943042,0.639451,0.622206,0.28793,0.489336,0.0376962,0.545569,0.81553,0.13311,0.787896,0.472938,0.313351,0.993749,0.582342,0.339163,0.725538,0.221094,0.397598,0.164544,0.0481455,0.939505,0.63804,0.927909,0.0136699,0.932574,0.988717,0.362643,0.574203,0.976386,0.313354,0.656447,0.992538,0.458836,0.73533,0.159744,0.0259797,0.148417,0.21534,0.770308,0.0279104,0.830531,0.307826,0.267209,0.479398,0.659651,0.332659,0.469924,0.144329,0.639159,0.247827,0.445976,0.760376,0.837926,0.756297,0.880431,0.197019,0.988756,0.274632,0.616103,0.503436,0.538379,0.943184,0.781466,0.0838272,0.00263387,0.00604796,0.868651,0.571821,0.860765,0.709941,0.834885,0.0341212,0.853549,0.553698,0.239814,0.199026,0.0844316,0.409058,0.0491543,0.812587,0.692985,0.110434,0.549414,0.5441,0.27639,0.823518,0.643303,0.955621,0.130095,0.228141,0.185471,0.253163,0.0859438,0.466,0.050245,0.466128,0.571076,0.0707134,0.138424,0.580275,0.364537,0.509661,0.496589,0.854944,0.400833,0.201313,0.255775,0.249749,0.0321979,0.251292,0.93346,0.956961,0.0216759,0.175991,0.55476,0.653931,0.215663,0.821339,0.766123,0.70185,0.925484,0.0480286,0.549855,0.706212,0.512206,0.217143,0.0914651,0.325213,0.370168,0.625914,0.651221,0.616433,0.675901,0.306672,0.658273,0.408036,0.0947923,0.456454,0.912716,0.165144,0.510551,0.975897,0.782833,0.641697,0.279305,0.418255,0.411131,0.848153,0.834299,0.791149,0.134905,0.2304,0.15623,0.919116,0.739458,0.912877,0.886559,0.136401,0.735934,0.922291,0.899286,0.333056,0.636147,0.686235,0.77729,0.0592105,0.274141,0.063264,0.211129,0.320643,0.791246,0.192639,0.460589,0.816661,0.426476,0.375552,0.461778,0.116359,0.708285,0.922704,0.0818815,0.0647282,0.950689,0.721862,0.00607723,0.433257,0.252925,0.0710666,0.24747,0.68418,0.322499,0.299118,0.720778,0.332364,0.507432,0.756568,0.81055,0.135476,0.916252,0.0109515,0.00207376,0.355989,0.814154,0.250736,0.651303,0.0867985,0.327987,0.645747,0.326219,0.460138,0.939918,0.22843,0.687717,0.455956,0.749184,0.105026,0.0356446,0.366017,0.00930583,0.908533,0.504791,0.684241,0.323815,0.178042,0.507269,0.732407,0.777492,0.634277,0.0309524,0.0380877,0.649251,0.333943,0.633762,0.642799,0.506784,0.903753,0.427961,0.684946,0.142767,0.225261,0.25324,0.410415,0.899632,0.59904,0.00284803,0.513002,0.207291,0.13357,0.136982,0.336933,0.692493,0.414609,0.574746,0.71821,0.231584,0.385482,0.476094,0.30496,0.99934,0.22678,0.737697,0.401678,0.00796944,0.310757,0.460489,0.186994,0.674511,0.275987,0.415332,0.442906,0.672874,0.464277,0.644056,0.647902,0.628783,0.674007,0.89619,0.954699,|0.629575,0.918231,0.330429,0.751313,0.79562,0.340017,0.753561,0.651551,0.329855,0.747764,0.326978,0.48624,0.269194,0.775059,0.664785,0.817637,0.338518,0.847974,0.961826,0.580749,0.527041,0.194949,0.0521665,0.743647,0.683303,0.687389,0.0262803,0.887355,0.0789735,0.542226,0.705663,0.75872,0.0499187,0.141875,0.248828,0.143122,0.250794,0.659324,0.669813,0.0109571,0.0795534,0.713638,0.293695,0.591272,0.199832,0.830228,0.281436,0.667825,0.27866,0.424219,0.504875,0.698344,0.912607,0.403103,0.00199199,0.600643,0.852456,0.00115454,0.193209,0.808209,0.923147,0.0707179,0.468588,0.426864,0.828535,0.46448,0.0753067,0.301211,0.319134,0.808574,0.418171,0.274913,0.215346,0.324945,0.695646,0.399628,0.984405,0.0111455,0.671659,0.625513,0.807731,0.0403445,0.997196,0.408052,0.655712,0.385018,0.166283,0.367423,0.292903,0.620933,0.0890649,0.855939,0.456478,0.750466,0.393957,0.609789,0.524223,0.471783,0.244282,0.318214,0.723452,0.479508,0.181734,0.391753,0.756585,0.823498,0.135077,0.178649,0.157122,0.591586,0.231605,0.611977,0.258261,0.34079,0.16435,0.383261,0.595876,0.146931,0.523269,0.668845,0.256841,0.52912,0.224289,0.719264,0.863157,0.412518,0.272595,0.235926,0.881217,0.240362,0.401263,0.744659,0.600437,0.0891165,0.388508,0.405852,0.0511876,0.868071,0.974865,0.0702306,0.864752,0.198312,0.736782,0.58647,0.118823,0.639379,0.51033,0.397965,0.44084,0.291021,0.00971794,0.281176,0.535696,0.969834,0.261129,0.173381,0.630263,0.166721,0.100993,0.381993,0.758511,0.786465,0.472477,0.434768,0.0770576,0.103691,0.501603,0.331415,0.00508225,0.131433,0.0259868,0.364331,0.327488,0.0636005,0.651227,0.771453,0.98002,0.810224,0.000530481,0.278731,0.325693,0.518564,0.94434,0.200447,0.440682,0.313678,0.739542,0.429136,0.906181,0.338994,0.923651,0.512502,0.697113,0.0757724,0.870488,0.277346,0.0747267,0.130072,0.0139934,0.198132,0.482802,0.760625,0.543692,0.733231,0.870949,0.931015,0.125879,0.858038,0.377999,0.533761,0.757093,0.593164,0.515776,0.933832,0.97051,0.147611,0.974607,0.942659,0.358439,0.41975,0.254998,0.0297847,0.596707,0.328676,0.509051,0.635947,0.592145,0.249968,0.481354,0.588584,0.871349,0.41403,0.0913412,0.638963,0.66414,0.342201,0.353747,0.226815,0.115849,0.537418,0.896152,0.0864918,0.659065,0.547959,0.717611,0.936346,0.20756,0.771866,0.285853,0.831727,0.181226,0.862842,0.188027,0.178126,0.604248,0.450199,0.561886,0.0335876,0.902042,0.3487,0.698015,0.0510616,0.282933,0.343257,0.737651,0.343346,0.404866,0.700589,0.505172,0.00917917,0.516679,0.0687043,0.576251,0.980981,0.894388,0.557983,0.243409,0.115569,0.196133,0.0923158,0.118848,0.0666168,0.822995,0.248227,0.287645,0.354101,0.277331,0.508145,0.691558,0.741308,0.848468,0.0775474,0.536764,0.412729,0.480618,0.590727,0.346803,0.330622,0.0381671,0.134994,0.645293,0.374881,0.38044,0.0862902,0.0990563,0.129966,0.594147,0.591923,0.717474,0.569964,0.0263809,0.417579,0.0793532,0.898212,0.483229,0.326735,0.368802,0.234104,0.972735,0.31788,0.576303,0.63414,0.106438,0.749835,0.903881,0.530631,0.394931,0.659227,0.50241,0.601533,0.459762,0.419748,0.974623,0.416754,0.598704,0.617201,0.232762,0.588602,0.793576,0.481977,0.964539,0.70461,0.303689,0.208029,0.964182,0.53338,0.924251,0.355709,0.22585,0.901944,0.40858,0.915993,0.874956,0.0573518,0.922913,0.00904888,0.927495,0.371609,0.276374,0.625172,0.621901,0.149237,0.592154,0.82101,0.120614,0.101595,0.287915,0.232513,0.083883,0.655534,0.0862622,0.557392,0.873517,0.849757,0.585127,0.387749,0.212047,0.621874,0.149562,0.157929,0.3082,0.669321,0.225635,0.165517,0.489889,0.917288,0.0389026,0.289983,0.875554,0.247106,0.850101,0.0788147,0.0424691,0.830233,0.976607,0.526093,0.884776,0.431234,0.916708,0.772119,0.675384,0.140281,0.460164,0.13477,0.100296,0.604851,0.184322,0.588669,0.0246786,0.825167,0.133054,0.597931,0.875499,0.866135,0.508407,0.423335,0.275668,0.683791,0.350625,0.105899,0.267757,0.312414,0.191249,0.586232,0.0199711,0.65172,0.551238,0.692553,0.545855,0.642004,0.339916,0.743451,0.544426,0.661868,0.29137,0.713126,0.0656135,0.441018,0.0130832,0.943218,0.12078,0.184723,0.0591475,0.43849,0.889651,0.592081,0.401053,0.536217,0.00610751,0.75267,0.129191,0.453087,0.850442,0.630903,0.734939,0.583026,0.804137,0.397767,0.00924188,0.388756,0.158442,0.688656,0.524203,0.486937,0.470315,0.349814,0.737732,0.20331,0.49864,0.485307,0.405801,0.10751,0.891989,0.179757,0.983972,0.0961432,0.265454,0.442002,0.856386,0.431507,0.188245,0.597034,0.012119,0.374186,0.568115,0.560434,0.139685,0.0439084,0.0353539,0.109018,0.47892,0.185223,0.428991,0.188703,0.680568,0.220906,0.438273,0.514242,0.315121,0.00279468,0.690042,0.203809,0.775183,0.331905,0.275988,0.375975,0.0517414,0.410277,0.279921,0.379037,0.32713,0.838776,0.0480336,0.594563,0.0441739,0.717412,0.124948,0.276534,0.213422,0.344154,0.00056529,0.767052,0.270098,0.258048,0.0103735,0.959963,0.662465,0.620951,0.0857127,0.898825,0.427258,0.855677,0.75051,0.635766,0.609922,0.802347,0.559214,0.371146,0.701623,0.441031,0.648295,0.747692,0.324348,0.639939,0.767027,0.25758,0.967938,0.306432,0.500509,0.273144,0.110542,0.355548,0.336143,0.487226,0.125443,0.81068,0.725668,0.699879,0.885127,0.210463,0.660996,0.581381,0.454254,0.109798,0.57966,0.53615,0.196481,0.159868,0.791829,0.568986,0.725361,0.391562,0.787806,0.671385,0.350115,0.881347,0.989163,0.532761,0.761529,0.867639,0.0736493,0.191069,0.283457,0.1835,0.37493,0.23971,0.622622,0.386554,0.512874,0.848113,0.414984,0.483478,0.714528,0.406966,0.0115964,0.0221526,0.133551,0.810104,0.226114,0.00806141,0.493922,0.987596,0.524745,0.00396955,0.837884,0.716269,0.029741,0.40374,0.643353,0.854298,0.926308,0.0128483,0.270064,0.280974,0.113686,0.337062,0.256608,0.0709521,0.14299,0.0684779,0.0874833,0.835495,0.63677,0.197013,0.71231,0.878708,0.427328,0.670811,0.822954,0.456816,0.415409,0.500983,0.35739,0.361152,0.544627,0.997263,0.882615,0.12509,0.154002,0.244774,0.437151,0.106619,0.075027,0.78684,0.5338,0.494868,0.71891,0.571177,0.91446,0.86893,0.719039,0.648875,0.838437,0.916754,0.152823,0.208776,0.000813007,0.929836,0.647412,0.99406,0.120615,0.170874,0.244834,0.644518,0.245275,0.034672,0.96548,0.847819,0.6761,0.924533,0.609352,0.870706,0.515333,0.515715,0.557694,0.746553,0.0745962,0.605631,0.659779,0.633335,0.989781,0.300053,0.87088,0.632538,0.606903,0.808122,0.739306,0.418911,0.510825,0.906176,0.792758,0.639425,0.204564,0.35829,0.900034,0.252498,0.493896,0.869008,0.332044,0.745184,0.0255296,0.543131,0.475066,0.286811,0.0710714,0.49683,0.729369,0.210469,0.277891,0.951221,0.342802,0.494594,0.566589,0.155792,0.822654,0.314307,0.313765,0.883887,0.521061,0.557712,0.962979,0.399089,0.703244,0.777153,0.693175,0.610393,0.254854,0.225448,0.484493,0.41646,0.215364,0.970997,0.60814,0.836825,0.0849437,0.505887,0.716724,0.53199,0.441445,0.603794,0.809205,0.334467,0.677664,0.220229,0.915132,0.489946,0.7034,0.219943,0.223122,0.0844076,0.282771,0.180911,0.656873,0.829116,0.542259,0.575741,0.920191,0.872483,0.842014,0.896177,0.699202,0.374525,0.734567,0.633931,0.0485379,0.100581,0.877184,0.657608,0.137114,0.780399,0.815995,0.751306,0.774269,0.067764,0.14149,0.221618,0.899363,0.956366,0.323371,0.152807,0.373343,0.964173,0.941075,0.462768,0.326306,0.313086,0.934381,0.132031,0.27933,0.618299,0.620102,0.261086,0.486741,0.634866,0.913911,0.0737321,0.643379,0.501701,0.266983,0.827809,0.137722,0.924861,0.945633,0.936373,0.62793,0.777684,0.423577,0.418087,0.972774,0.686416,0.39587,0.657286,0.938713,0.348507,0.95663,0.936704,0.540167,0.161574,0.300012,0.120984,0.0792262,0.983625,0.260861,0.764846,0.595716,0.381082,0.725395,0.290424,0.609412,0.0183348,0.799411,0.14839,0.253661,0.98091,0.0795464,0.571117,0.890096,0.711169,0.67416,0.352183,0.337497,0.418053,0.839046,0.221214,0.142753,0.734762,0.778588,0.645823,0.971669,0.445773,0.562167,0.873941,0.667682,0.928038,0.907006,0.897801,0.180682,0.193197,0.0255655,0.153713,0.145919,0.0279152,0.364327,0.446117,0.0133873,0.154531,0.840328,0.0866179,0.269481,0.192806,0.683626,0.887792,0.632704,0.679612,0.354106,0.899225,0.133974,0.261205,0.607289,0.346006,0.828261,0.305949,0.13212,0.449591,0.106212,0.653791,0.150983,0.772353,0.480168,0.0962474,0.700734,0.540037,0.352532,0.00990897,0.736124,0.653773,0.350823,0.557726,0.69955,0.51271,0.230622,0.822524,0.339945,0.110862,0.639387,0.106277,0.0161319,0.466655,0.615465,0.319498,0.0125511,0.888865,0.894394,0.169407,0.474308,0.466987,0.191741,0.378325,0.999814,0.726612,0.45098,0.00217146,0.654741,0.849212,0.626905,0.593289,0.764216,0.0511112,0.570402,0.987738,0.192176,0.129306,0.927499,0.0608096,0.491543,0.791788,0.507708,0.938031,0.612485,0.582689,0.583927,0.674966,0.143971,0.753157,0.811842,0.906174,0.0868573,0.586297,0.570689,0.122188,0.722567,0.933066,0.729395,0.0843534,0.976317,0.145617,0.543248,0.046084,0.995077,0.336515,0.38688,0.817049,0.550892,0.431779,0.0511752,0.0813233,0.923523,0.975926,0.71469,0.0830329,0.265309,0.295399,0.945267,0.639183,0.384136,0.0624672,0.815497,0.950007,0.362914,0.944189,0.0526831,0.206457,0.0900796,0.448757,0.972501,0.301663,0.283891,0.977801,0.0865371,0.278262,0.35932,0.351492,0.0413348,0.817902,0.436902,0.448803,0.723001,0.628632,0.271721,0.182186,|0.105987,0.306221,0.641974,0.225963,0.068542,0.467569,0.633041,0.0690864,0.938511,0.757188,0.558899,0.564558,0.872731,0.00722063,0.681281,0.746692,0.654815,0.176921,0.563638,0.295557,0.522787,0.128276,0.651783,0.492551,0.64604,0.314534,0.211155,0.966472,0.0661011,0.800596,0.337781,0.18982,0.598329,0.84913,0.258961,0.396624,0.567458,0.731266,0.641584,0.884852,0.740434,0.0771844,0.176117,0.989701,0.594675,0.856073,0.666904,0.179674,0.0177187,0.0107685,0.191658,0.987038,0.848586,0.828694,0.722276,0.0309673,0.183994,0.727911,0.577849,0.734269,0.312429,0.938655,0.640891,0.88331,0.465392,0.621418,0.325725,0.845175,0.0382001,0.192099,0.174709,0.93203,0.637126,0.363795,0.401371,0.349574,0.0192128,0.913141,0.817515,0.659739,0.564862,0.0339173,0.711761,0.407364,0.361406,0.259777,0.0647242,0.740766,0.488594,0.730103,0.436496,0.847256,0.523045,0.127138,0.667764,0.403189,0.574989,0.797906,0.822463,0.715388,0.986853,0.500299,0.248522,0.141674,0.739728,0.848885,0.5681,0.782314,0.91995,0.128464,0.14057,0.254,0.692785,0.857027,0.555459,0.913555,0.286752,0.678309,0.350163,0.826257,0.697881,0.206954,0.389524,0.99905,0.968545,0.342396,0.599726,0.34243,0.677511,0.381261,0.396591,0.188513,0.785231,0.314186,0.994234,0.602143,0.552302,0.637722,0.804199,0.907631,0.095787,0.284144,0.176482,0.518533,0.379318,0.896373,0.721529,0.871187,0.0439843,0.449398,0.933138,0.324702,0.204036,0.483599,0.542108,0.775472,0.737761,0.926595,0.382969,0.29894,0.22889,0.500741,0.119321,0.0297424,0.389458,0.336066,0.789877,0.247465,0.0685163,0.930835,0.896269,0.151621,0.693954,0.362084,0.644776,0.0599325,0.597655,0.405728,0.588096,0.101907,0.952643,0.360839,0.200433,0.89688,0.829225,0.240151,0.0941245,0.0334579,0.467392,0.256097,0.477151,0.747983,0.129673,0.834497,0.76931,0.273845,0.104551,0.110425,0.336526,0.0976171,0.446948,0.31076,0.897732,0.279092,0.698025,0.0854278,0.466799,0.714954,0.796404,0.524692,0.691473,0.00734758,0.419444,0.326106,0.0272459,0.928361,0.0305947,0.991159,0.791716,0.734053,0.742795,0.614307,0.943462,0.166815,0.774505,0.479288,0.379416,0.440807,0.72311,0.113544,0.677608,0.669427,0.283656,0.438841,0.473784,0.463926,0.593103,0.8102,0.971241,0.358931,0.397888,0.876695,0.599341,0.408942,0.861088,0.686481,0.424857,0.142361,0.578114,0.139654,0.524824,0.560692,0.860194,0.783041,0.511257,0.111712,0.433551,0.475639,0.788811,0.652954,0.134136,0.581748,0.461134,0.372232,0.532993,0.476837,0.176932,0.256009,0.428525,0.844719,0.118324,0.868245,0.536671,0.854579,0.754134,0.00344288,0.622048,0.170926,0.0322423,0.791693,0.0175846,0.881041,0.277457,0.0449389,0.423632,0.108484,0.159016,0.445434,0.303231,0.0285457,0.767118,0.709106,0.961587,0.569754,0.839347,0.916918,0.756679,0.0286382,0.542372,0.259371,0.321653,0.410499,0.676217,0.097982,0.386108,0.821304,0.8761,0.690774,0.341898,0.248824,0.128479,0.175926,0.395685,0.157923,0.0146559,0.979168,0.224211,0.681629,0.824097,0.13405,0.598865,0.55063,0.297526,0.421068,0.817802,0.688008,0.945856,0.765739,0.761737,0.286374,0.433833,0.687651,0.511168,0.282484,0.426705,0.0868784,0.57871,0.145594,0.944246,0.845423,0.539119,0.12727,0.950903,0.0868952,0.688626,0.260559,0.203889,0.915964,0.601496,0.251959,0.206589,0.370352,0.867981,0.821731,0.991337,0.366192,0.225508,0.14373,0.908525,0.547349,0.575078,0.24131,0.801699,0.605818,0.71145,0.99237,0.388543,0.999307,0.698456,0.438077,0.240913,0.925721,0.777756,0.897254,0.614927,0.589614,0.22797,0.551432,0.419023,0.753172,0.690583,0.927846,0.277314,0.0456143,0.609162,0.662519,0.177483,0.399653,0.1732,0.547551,0.642703,0.943803,0.539362,0.338425,0.131567,0.253474,0.786442,0.735392,0.919752,0.0256211,0.963,0.928948,0.072574,0.660736,0.720998,0.408544,0.31055,0.127689,0.358669,0.942162,0.831581,0.277692,0.578613,0.852401,0.830758,0.940528,0.612389,0.0539582,0.479871,0.587153,0.38795,0.112377,0.357914,0.0983967,0.543675,0.0646964,0.776511,0.74716,0.914739,0.582386,0.00144386,0.959166,0.665193,0.367474,0.220626,0.351022,0.0225824,0.65015,0.157915,0.453184,0.293319,0.404258,0.96718,0.403569,0.980182,0.744694,0.255908,0.955322,0.17987,0.09991,0.806201,0.438301,0.0691707,0.32134,0.813459,0.690482,0.104332,0.650936,0.438654,0.482813,0.0236594,0.270563,0.344023,0.40752,0.745601,0.285246,0.282977,0.387692,0.0871744,0.821801,0.0493535,0.0234105,0.304133,0.0294106,0.813771,0.140579,0.232191,0.688798,0.294831,0.102941,0.545726,0.783127,0.128088,0.430577,0.518363,0.625705,0.0264293,0.718741,0.564558,0.658975,0.549799,0.167088,0.42071,0.898716,0.543873,0.587695,0.0101042,0.448893,0.294652,0.171047,0.436525,0.126526,0.50377,0.659027,0.1537,0.460543,0.564199,0.942734,0.337747,0.183657,0.754562,0.521912,0.682115,0.069299,0.834698,0.676162,0.711653,0.585917,0.680194,0.870154,0.730418,0.164186,0.284317,0.018348,0.437629,0.891024,0.386405,0.462707,0.592249,0.57517,0.857197,0.583011,0.622777,0.500713,0.694963,0.00329912,0.212124,0.24141,0.444102,0.893,0.793272,0.294116,0.100179,0.0225295,0.887289,0.746185,0.145353,0.806137,0.438086,0.734994,0.951015,0.799048,0.27039,0.66207,0.140169,0.726423,0.836191,0.0352309,0.183529,0.138973,0.262742,0.551615,0.748484,0.55642,0.608053,0.459245,0.426383,0.284852,0.401221,0.00485301,0.721822,0.912564,0.138439,0.980003,0.189769,0.611971,0.269532,0.238965,0.465364,0.165916,0.844413,0.747221,0.0611538,0.397405,0.0620843,0.544046,0.710869,0.227248,0.699641,0.410496,0.947135,0.185979,0.338383,0.802065,0.36331,0.544191,0.723895,0.777465,0.52586,0.441527,0.0195852,0.362689,0.755101,0.307303,0.61048,0.617349,0.0560421,0.647948,0.300194,0.724003,0.00422746,0.8166,0.0574011,0.145798,0.857917,0.825062,0.0712116,0.165225,0.368624,0.17464,0.460983,0.0894974,0.343007,0.139985,0.454897,0.513496,0.277232,0.201466,0.240346,0.907397,0.160038,0.0010612,0.0587124,0.923608,0.123025,0.949237,0.0240299,0.314812,0.0811357,0.0718507,0.63437,0.878757,0.402101,0.59784,0.672644,0.125862,0.802169,0.362568,0.445108,0.0522195,0.821199,0.981174,0.126837,0.936862,0.950644,0.822477,0.823312,0.876476,0.181545,0.380293,0.0209309,0.214768,0.976448,0.0820791,0.201555,0.35245,0.367536,0.982922,0.375008,0.886763,0.00496835,0.707328,0.183582,0.735617,0.836492,0.852804,0.0800897,0.387884,0.57442,0.535689,0.878798,0.104321,0.902138,0.936454,0.424626,0.501102,0.715717,0.380525,0.388146,0.699253,0.238983,0.464793,0.632272,0.456472,0.270649,0.409246,0.0650973,0.463299,0.744322,0.734294,0.719156,0.834139,0.37543,0.981059,0.831056,0.662845,0.834431,0.644376,0.832379,0.0529609,0.984066,0.457696,0.616525,0.679831,0.897661,0.886984,0.859909,0.652318,0.3449,0.889892,0.682671,0.448874,0.413488,0.678054,0.825277,0.283733,0.32429,0.518103,0.427213,0.501837,0.598378,0.0329606,0.963561,0.0320803,0.828804,0.367909,0.188252,0.992988,0.290926,0.909314,0.467741,0.280806,0.716186,0.000509739,0.780185,0.718836,0.534613,0.558717,0.532187,0.187395,0.372736,0.309533,0.0673971,0.571357,0.248771,0.902405,0.115488,0.697664,0.0985636,0.334237,0.115443,0.640308,0.241398,0.225259,0.34498,0.525528,0.19912,0.038476,0.31832,0.413962,0.496251,0.55933,0.405705,0.230048,0.49503,0.672288,0.841428,0.441116,0.860911,0.0647193,0.989253,0.926769,0.814074,0.0721602,0.353281,0.217817,0.449006,0.0847638,0.143865,0.240692,0.470591,0.189935,0.0335891,0.142603,0.350779,0.430633,0.397827,0.211325,0.236041,0.46658,0.968638,0.323295,0.130179,0.252504,0.468185,0.517985,0.202731,0.704939,0.0315502,0.597883,0.422377,0.598975,0.0863465,0.00978458,0.403625,0.0446467,0.561891,0.705382,0.375563,0.0252686,0.165077,0.130002,0.62494,0.837738,0.933245,0.527941,0.835053,0.33078,0.685942,0.668599,0.0722216,0.698346,0.618122,0.813764,0.302855,0.77721,0.806858,0.269148,0.533712,0.958933,0.501527,0.0923803,0.479261,0.13943,0.545916,0.926982,0.188029,0.683889,0.563001,0.16726,0.423315,0.654054,0.451333,0.668395,0.289247,0.814867,0.700792,0.767189,0.601388,0.0623024,0.109687,0.848637,0.932331,0.487464,0.305265,0.0166008,0.406233,0.765291,0.501428,0.511981,0.955897,0.383009,0.891379,0.573378,0.16848,0.642415,0.179515,0.69985,0.588184,0.965618,0.837851,0.996518,0.652147,0.0244829,0.500723,0.743348,0.093253,0.91872,0.558695,0.407517,0.327103,0.702641,0.347187,0.471184,0.204724,0.525731,0.992993,0.417565,0.330118,0.314461,0.668112,0.791625,0.493079,0.925728,0.121183,0.78841,0.479674,0.343781,0.589367,0.501048,0.0483536,0.369289,0.542374,0.967101,0.787845,0.747193,0.829175,0.705341,0.0963486,0.904537,0.988225,0.831474,0.54557,0.550007,0.446077,0.0900483,0.430186,0.907,0.0199985,0.671463,0.00912917,0.249313,0.885756,0.912639,0.944328,0.327539,0.775388,0.034061,0.0673167,0.468095,0.0377781,0.589087,0.708633,0.240022,0.180881,0.940883,0.564258,0.133403,0.818133,0.478903,0.516387,0.0261919,0.952839,0.639054,0.661651,0.788414,0.549857,0.419431,0.909497,0.762074,0.567567,0.0333521,0.995956,0.822713,0.458525,0.642386,0.80404,0.189348,0.00540316,0.0308488,0.10506,0.11182,0.21867,0.562949,0.340184,0.149449,0.248354,0.471833,0.487629,0.666907,0.474547,0.175942,0.29106,0.51641,0.892959,0.987434,0.014221,0.636325,0.937862,0.0240433,0.759202,0.676767,0.662424,0.252854,0.987741,0.299098,0.358379,0.442746,0.163918,0.933988,|0.132434,0.146604,0.643885,0.330203,0.987548,0.157718,0.468826,0.202277,0.640803,0.179422,0.28836,0.743702,0.659327,0.581884,0.100139,0.4439,0.768533,0.9164,0.49408,0.869148,0.456665,0.477833,0.623079,0.197591,0.760527,0.229561,0.543987,0.707133,0.955825,0.543723,0.269738,0.519221,0.40953,0.505152,0.566167,0.847802,0.728326,0.0288452,0.780562,0.805909,0.644172,0.232717,0.946977,0.0984018,0.425147,0.93282,0.143248,0.174978,0.98903,0.0611474,0.275276,0.816342,0.642042,0.82545,0.112186,0.108747,0.0992841,0.0746463,0.384309,0.881604,0.685507,0.42774,0.261253,0.366366,0.64122,0.392392,0.591876,0.801845,0.209617,0.461607,0.546605,0.774298,0.967672,0.710717,0.0783413,0.561075,0.663622,0.620993,0.552883,0.853383,0.456913,0.14305,0.94039,0.413053,0.804505,0.256137,0.739232,0.250133,0.759677,0.0130727,0.0840313,0.146807,0.767396,0.726586,0.89266,0.337321,0.0252118,0.247893,0.917148,0.293583,0.630457,0.658769,0.969391,0.629888,0.22705,0.0617222,0.731277,0.174819,0.326471,0.620497,0.0882142,0.0202351,0.673948,0.15448,0.519452,0.574155,0.789545,0.822153,0.566725,0.828918,0.920708,0.483742,0.0737517,0.210752,0.852006,0.0123485,0.804341,0.202755,0.0466336,0.04119,0.237515,0.474955,0.988889,0.984792,0.953152,0.700463,0.286616,0.180324,0.288057,0.233249,0.936118,0.963495,0.0842242,0.382028,0.787081,0.893995,0.340719,0.265583,0.00159359,0.357255,0.204544,0.26454,0.926842,0.346806,0.725261,0.778025,0.868509,0.462629,0.178317,0.988444,0.849234,0.414497,0.843448,0.264711,0.841848,0.361223,0.07717,0.83962,0.656121,0.960126,0.803028,0.558738,0.736593,0.508223,0.769801,0.238083,0.0592177,0.33942,0.0941222,0.417933,0.403421,0.499327,0.802065,0.932529,0.86285,0.459548,0.349005,0.822191,0.198704,0.881403,0.854642,0.272851,0.969829,0.976787,0.857698,0.918383,0.448218,0.416574,0.660725,0.577741,0.0597848,0.2276,0.350719,0.582527,0.600099,0.941763,0.345008,0.869117,0.344802,0.800183,0.604316,0.73087,0.458671,0.139617,0.0484176,0.543913,0.764191,0.885152,0.622692,0.265095,0.950404,0.811439,0.649525,0.827196,0.42478,0.849561,0.919534,0.457373,0.221957,0.89831,0.806566,0.643221,0.906864,0.175134,0.542718,0.941856,0.21976,0.439218,0.678443,0.484347,0.848024,0.272755,0.764557,0.479403,0.0325236,0.126427,0.35113,0.763292,0.669541,0.142917,0.375266,0.627084,0.212927,0.344217,0.311907,0.991145,0.71934,0.523819,0.447212,0.414066,0.948983,0.0285173,0.367475,0.454276,0.185383,0.974763,0.394071,0.73803,0.0675734,0.241387,0.135298,0.806459,0.601104,0.949211,0.386892,0.703626,0.335872,0.351864,0.269048,0.155091,0.574457,0.787615,0.270792,0.444842,0.76289,0.803932,0.360596,0.341488,0.733811,0.750614,0.282012,0.504001,0.500269,0.877472,0.998041,0.575132,0.20944,0.297225,0.576416,0.157475,0.616307,0.0227059,0.0891865,0.2533,0.209912,0.371026,0.594144,0.478253,0.996186,0.30995,0.908905,0.233732,0.474103,0.70108,0.560997,0.943108,0.847013,0.300084,0.363766,0.571716,0.239295,0.240233,0.614826,0.396038,0.617752,0.811207,0.0132329,0.624957,0.887411,0.944911,0.653335,0.899231,0.327376,0.752595,0.575724,0.566606,0.55225,0.774481,0.362536,0.434165,0.267015,0.776506,0.0654479,0.630853,0.284571,0.526545,0.296573,0.341952,0.877264,0.313607,0.569744,0.423321,0.467935,0.733107,0.215677,0.626302,0.353188,0.35818,0.172497,0.837882,0.891944,0.923517,0.928356,0.0253195,0.280964,0.0944878,0.00992602,0.656655,0.52441,0.168374,0.217506,0.61397,0.778565,0.676235,0.0600975,0.276865,0.0830641,0.450925,0.137508,0.65432,0.762029,0.893381,0.899176,0.891052,0.642879,0.858401,0.0498807,0.0776397,0.195059,0.325521,0.918222,0.199706,0.168327,0.653285,0.19246,0.0931178,0.182147,0.38797,0.971809,0.223575,0.734616,0.936572,0.226173,0.694707,0.445859,0.00478524,0.69523,0.710072,0.901739,0.643993,0.135806,0.702693,0.379202,0.97361,0.15623,0.651039,0.538511,0.672661,0.035808,0.308682,0.694388,0.219604,0.160415,0.657177,0.230539,0.256517,0.109318,0.422532,0.97348,0.780806,0.218889,0.322121,0.814487,0.45851,0.998794,0.291768,0.543927,0.368952,0.711443,0.715316,0.666552,0.330368,0.152224,0.146224,0.839036,0.268876,0.273062,0.243911,0.278537,0.207894,0.84647,0.730961,0.88326,0.624793,0.876022,0.881909,0.154706,0.476147,0.547383,0.440875,0.149959,0.602926,0.655663,0.910745,0.417059,0.468818,0.767676,0.918809,0.188302,0.338588,0.301802,0.631677,0.998069,0.538171,0.950555,0.347654,0.684861,0.429021,0.60064,0.522749,0.472582,0.403955,0.144534,0.898439,0.622733,0.633611,0.796132,0.711443,0.806929,0.117519,0.736808,0.297181,0.68492,0.247566,0.357233,0.648248,0.710458,0.184324,0.458297,0.226243,0.45056,0.403305,0.680019,0.336695,0.22787,0.113672,0.951495,0.0504095,0.972969,0.93083,0.549708,0.580645,0.395359,0.533025,0.0316182,0.523632,0.604236,0.510123,0.0581555,0.261833,0.641577,0.524493,0.771253,0.814409,0.476145,0.893451,0.886481,0.230161,0.494246,0.215671,0.0294106,0.642643,0.675219,0.900929,0.256643,0.992295,0.716867,0.12091,0.14836,0.569057,0.160628,0.792494,0.331514,0.195952,0.227824,0.27011,0.489996,0.265825,0.981918,0.735888,0.0896806,0.133741,0.915487,0.541025,0.250605,0.118235,0.647368,0.0207947,0.0359653,0.0122617,0.182409,0.345327,0.0553784,0.76388,0.672979,0.406182,0.70329,0.00635052,0.710933,0.187643,0.767061,0.32028,0.394211,0.945809,0.506868,0.489443,0.407887,0.999274,0.72891,0.603491,0.924407,0.307618,0.546288,0.851213,0.751761,0.679144,0.475424,0.209233,0.6757,0.345371,0.771411,0.883088,0.266919,0.615758,0.757077,0.327131,0.125108,0.867261,0.073092,0.844103,0.905724,0.0837539,0.115042,0.884315,0.922405,0.355626,0.0999637,0.053612,0.125122,0.655875,0.665793,0.631926,0.536465,0.0552034,0.781752,0.625799,0.315881,0.229524,0.705254,0.537277,0.712499,0.866968,0.346332,0.659224,0.0199461,0.35958,0.991381,0.0767574,0.992755,0.580886,0.716833,0.600863,0.999614,0.865844,0.224502,0.317028,0.338885,0.965433,0.629716,0.539903,0.178135,0.133963,0.870708,0.268132,0.808321,0.20041,0.589294,0.0415111,0.63523,0.572382,0.963057,0.37905,0.395899,0.351093,0.921418,0.378072,0.43154,0.881852,0.411491,0.583341,0.823101,0.446856,0.827353,0.386128,0.821145,0.775943,0.589699,0.622762,0.670582,0.590237,0.0921488,0.47233,0.558338,0.175435,0.460203,0.434228,0.837487,0.198093,0.69447,0.227842,0.950231,0.834153,0.753199,0.109113,0.658876,0.0919837,0.797531,0.455089,0.123686,0.0394289,0.682344,0.501727,0.722689,0.151839,0.393505,0.00126386,0.608958,0.660208,0.731264,0.205419,0.306981,0.833619,0.924459,0.419161,0.434572,0.891181,0.892757,0.27804,0.820652,0.737117,0.471888,0.4356,0.395584,0.678845,0.611223,0.962276,0.413795,0.0966326,0.389545,0.809553,0.345472,0.84128,0.599219,0.530985,0.782569,0.0864251,0.820153,0.560345,0.968809,0.259493,0.942234,0.631344,0.966314,0.394274,0.962147,0.213657,0.998247,0.354385,0.430146,0.305717,0.866826,0.371142,0.82711,0.206625,0.465228,0.333181,0.984738,0.126844,0.620036,0.304236,0.943561,0.357167,0.0277224,0.253869,0.529841,0.37529,0.119084,0.205143,0.711107,0.718772,0.00894547,0.658387,0.776002,0.290661,0.749443,0.313491,0.953418,0.07759,0.303708,0.372384,0.972375,0.338494,0.177419,0.0568407,0.379872,0.995561,0.0335312,0.163404,0.60706,0.322456,0.127747,0.564231,0.0475045,0.700379,0.0534882,0.8051,0.515729,0.600927,0.418935,0.784984,0.748546,0.247601,0.270928,0.956129,0.614122,0.92212,0.699769,0.481224,0.884449,0.443125,0.735031,0.335227,0.591138,0.0225641,0.652136,0.324325,0.408442,0.833216,0.338211,0.819911,0.669396,0.829311,0.544846,0.347556,0.316899,0.99376,0.531696,0.537903,0.319522,0.612455,0.0817224,0.468874,0.974899,0.999252,0.333428,0.307157,0.394146,0.905453,0.736311,0.214019,0.0271616,0.207829,0.570244,0.323085,0.425466,0.904606,0.904132,0.539182,0.154007,0.703282,0.729518,0.988768,0.642418,0.872789,0.137057,0.866552,0.999574,0.303589,0.392018,0.346663,0.89125,0.0529081,0.915275,0.0820935,0.746667,0.368479,0.469886,0.864308,0.245805,0.35203,0.782043,0.571136,0.326576,0.101198,0.887885,0.0279025,0.338048,0.183418,0.965154,0.782982,0.572108,0.15226,0.814807,0.441034,0.643359,0.633985,0.904608,0.642129,0.771841,0.297696,0.20014,0.710998,0.445878,0.108001,0.569923,0.172506,0.809283,0.902547,0.361373,0.531868,0.929008,0.581443,0.387797,0.994128,0.556367,0.814086,0.0268129,0.258969,0.0731401,0.0354635,0.662824,0.774225,0.179125,0.30039,0.086548,0.740546,0.80393,0.966929,0.228665,0.686163,0.049161,0.963007,0.212481,0.457828,0.47397,0.82522,0.901247,0.650601,0.923507,0.672202,0.701256,0.533857,0.889739,0.951535,0.282581,0.565837,0.451374,0.396199,0.575568,0.178847,0.0555092,0.651336,0.39657,0.693921,0.0326199,0.157438,0.515891,0.905538,0.716283,0.980593,0.410675,0.530846,0.610236,0.174321,0.674199,0.513399,0.224004,0.660411,0.722437,0.348639,0.487584,0.939799,0.76996,0.290575,0.00752771,0.231451,0.0631198,0.32486,0.459939,0.568155,0.861374,0.495932,0.319045,0.353673,0.437077,0.869725,0.986802,0.520981,0.0791463,0.888875,0.55249,0.200471,0.881235,0.974251,0.943121,0.105143,0.325,0.565727,0.821855,0.704781,0.918337,0.993592,0.0993711,0.28929,0.426856,0.527837,0.275053,0.321457,0.329946,0.64725,0.286432,0.666253,0.0954155,0.41943,0.381384,0.0677209,0.563051,0.16675,0.732917,0.512711,|0.442677,0.143723,0.486535,0.207477,0.41024,0.276028,0.160945,0.61429,0.288061,0.665714,0.531896,0.684229,0.00221908,0.317099,0.111638,0.978859,0.259715,0.395382,0.187119,0.653304,0.0954742,0.311795,0.812157,0.465379,0.626163,0.867105,0.657913,0.209158,0.239962,0.393659,0.534912,0.978766,0.493493,0.0370579,0.705795,0.99044,0.958066,0.104526,0.651416,0.00740731,0.329367,0.953213,0.521344,0.678319,0.00575238,0.421676,0.948764,0.827589,0.199317,0.999438,0.320165,0.634702,0.0338397,0.973906,0.659791,0.4052,0.615671,0.189348,0.308481,0.242841,0.306758,0.565151,0.942849,0.0561715,0.62246,0.123877,0.816523,0.632278,0.95598,0.343787,0.352619,0.764747,0.502359,0.900923,0.471066,0.0608324,0.110877,0.648395,0.860554,0.259019,0.310411,0.521443,0.499923,0.21553,0.434813,0.462649,0.899361,0.720583,0.633947,0.543693,0.659599,0.280018,0.30164,0.890328,0.561764,0.438915,0.63293,0.571601,0.709367,0.541542,0.838405,0.272093,0.760643,0.212448,0.585484,0.190047,0.364549,0.611774,0.610178,0.765147,0.649735,0.765405,0.0498904,0.796267,0.528741,0.226847,0.143464,0.468573,0.150854,0.424593,0.123325,0.0457082,0.110702,0.213955,0.204934,0.675622,0.308553,0.303438,0.530565,0.568266,0.0337546,0.652915,0.518568,0.0872744,0.549254,0.0657419,0.306441,0.846108,0.865228,0.0987256,0.823292,0.197327,0.844633,0.983522,0.0610224,0.770893,0.553686,0.579941,0.760767,0.96531,0.220222,0.595052,0.0792231,0.192107,0.882234,0.825571,0.725919,0.95401,0.638655,0.623312,0.194259,0.380204,0.95865,0.3384,0.524064,0.066206,0.942199,0.214181,0.0604193,0.55712,0.590378,0.227333,0.920685,0.16724,0.623285,0.589326,0.880415,0.979153,0.120222,0.753073,0.00908178,0.106436,0.0698892,0.281228,0.0619381,0.67625,0.103164,0.530839,0.987178,0.416455,0.263984,0.956656,0.843192,0.820089,0.339032,0.105929,0.592071,0.155948,0.342525,0.594078,0.948238,0.211477,0.0479171,0.372398,0.81903,0.775338,0.23825,0.629291,0.726892,0.00651211,0.325555,0.609371,0.3044,0.652594,0.887397,0.0804803,0.703771,0.719048,0.937283,0.00106549,0.880283,0.0143539,0.0454386,0.198131,0.0890685,0.800516,0.801351,0.42463,0.450153,0.457036,0.985554,0.434851,0.0415329,0.674998,0.39303,0.285694,0.714336,0.713711,0.572498,0.951031,0.1944,0.456412,0.718632,0.867167,0.145397,0.75962,0.0710028,0.225363,0.546403,0.793063,0.51723,0.275029,0.505081,0.201763,0.446825,0.37037,0.497397,0.600304,0.825443,0.21064,0.788049,0.278801,0.956432,0.85978,0.19991,0.800654,0.270674,0.136269,0.29099,0.523505,0.706851,0.868188,0.993776,0.771363,0.584928,0.929301,0.0216823,0.883346,0.311486,0.898547,0.118197,0.0201769,0.268139,0.521638,0.034198,0.82923,0.0968755,0.685403,0.342715,0.0524584,0.446773,0.535893,0.597446,0.303538,0.151995,0.354763,0.463434,0.992608,0.682748,0.48064,0.83027,0.0570138,0.258354,0.0787127,0.209019,0.170651,0.507856,0.140778,0.82149,0.771655,0.139203,0.418893,0.546359,0.675237,0.776998,0.141354,0.422037,0.69331,0.455262,0.524225,0.456576,0.248113,0.823506,0.369537,0.48823,0.0659407,0.229758,0.272066,0.704739,0.68344,0.527858,0.399338,0.558821,0.665018,0.54878,0.765668,0.59722,0.0394504,0.741611,0.841694,0.126709,0.862584,0.48059,0.318642,0.733092,0.385974,0.305539,0.770942,0.787914,0.981505,0.932347,0.117921,0.350043,0.697494,0.586587,0.477142,0.258402,0.194726,0.103424,0.753873,0.886757,0.510209,0.197402,0.397305,0.602495,0.100559,0.907623,0.631083,0.904401,0.53454,0.984842,0.320965,0.81927,0.983314,0.773199,0.276423,0.567994,0.152669,0.996301,0.639901,0.459696,0.422354,0.138786,0.251024,0.0109563,0.349586,0.371895,0.0136126,0.258511,0.32632,0.351321,0.326705,0.626128,0.332999,0.624498,0.435425,0.813224,0.283024,0.642423,0.515886,0.798481,0.350019,0.52818,0.473392,0.237594,0.788064,0.142152,0.84605,0.866459,0.49439,0.265269,0.24297,0.471018,0.457293,0.437548,0.608732,0.936723,0.711081,0.0497055,0.453159,0.684634,0.837661,0.953592,0.297726,0.00533378,0.685358,0.147097,0.656859,0.349196,0.856977,0.953843,0.91124,0.540334,0.506403,0.366121,0.181811,0.686363,0.937307,0.166927,0.705577,0.721289,0.879216,0.885694,0.633623,0.752869,0.390025,0.407144,0.112167,0.222587,0.829898,0.305551,0.979831,0.894287,0.122266,0.305512,0.13771,0.0698516,0.476957,0.454815,0.0661865,0.023879,0.949549,0.661813,0.277476,0.843097,0.936169,0.899688,0.20682,0.626093,0.319053,0.928021,0.903284,0.561164,0.965331,0.628951,0.220822,0.595422,0.0854673,0.609097,0.534105,0.507195,0.430318,0.508614,0.46336,0.480824,0.917601,0.450254,0.0686324,0.669286,0.31345,0.121129,0.140589,0.928822,0.647729,0.673403,0.749166,0.266226,0.26671,0.405839,0.381058,0.218961,0.655073,0.601965,0.594838,0.374438,0.198893,0.965721,0.285469,0.0884895,0.214921,0.0877517,0.737427,0.326937,0.314558,0.616018,0.243942,0.07081,0.910884,0.976185,0.325852,0.594884,0.616417,0.264054,0.708138,0.233755,0.0544505,0.911686,0.768432,0.25346,0.736266,0.912261,0.288409,0.595154,0.504768,0.276864,0.060477,0.403585,0.532558,0.946213,0.87166,0.34802,0.727526,0.991761,0.646698,0.678665,0.411352,0.39531,0.846078,0.708218,0.318564,0.648328,0.56069,0.187987,0.315398,0.400715,0.870127,0.432358,0.691811,0.519545,0.932213,0.592496,0.422827,0.0695263,0.452924,0.653974,0.365115,0.551134,0.0718055,0.833263,0.948665,0.745892,0.447146,0.726626,0.0379946,0.793369,0.844676,0.737115,0.413191,0.898945,0.894758,0.963194,0.313103,0.667123,0.77295,0.0856575,0.592106,0.742509,0.459671,0.812554,0.0573316,0.0545555,0.356072,0.732258,0.28068,0.776923,0.0220859,0.290123,0.628427,0.11269,0.029502,0.346962,0.928466,0.404951,0.0863011,0.735541,0.302059,0.228176,0.777361,0.0200965,0.212199,0.765206,0.11972,0.432773,0.115639,0.459966,0.560431,0.706207,0.995751,0.547256,0.872081,0.265344,0.0831047,0.185247,0.71894,0.0811269,0.37903,0.357103,0.152919,0.967528,0.780668,0.573627,0.56506,0.9803,0.598165,0.451899,0.413005,0.523482,0.6808,0.915557,0.03385,0.0598491,0.290195,0.730146,0.531115,0.233837,0.569699,0.470767,0.868813,0.343655,0.495829,0.0214911,0.871787,0.40288,0.977582,0.347817,0.286744,0.707354,0.00676292,0.340393,0.2708,0.590023,0.195279,0.760176,0.879481,0.191675,0.990313,0.549622,0.277694,0.180176,0.269118,0.769553,0.148708,0.880469,0.1615,0.828739,0.443229,0.646084,0.885,0.28449,0.0613465,0.307616,0.114933,0.103813,0.725786,0.181121,0.856792,0.206541,0.24216,0.83173,0.632313,0.498939,0.834688,0.492991,0.445083,0.763006,0.37965,0.897968,0.871641,0.502687,0.804772,0.616978,0.297913,0.610494,0.843205,0.985665,0.985087,0.357029,0.0720245,0.864539,0.0695465,0.384916,0.629982,0.180084,0.35187,0.987279,0.170799,0.0581303,0.569679,0.521303,0.692254,0.669657,0.110393,0.661516,0.570294,0.501061,0.0413148,0.575617,0.314563,0.534873,0.794818,0.661954,0.432961,0.0041244,0.328657,0.782177,0.489318,0.54185,0.636016,0.868575,0.162504,0.974178,0.0651625,0.104666,0.372478,0.662391,0.771373,0.823627,0.520967,0.895878,0.455046,0.218512,0.784967,0.737577,0.331771,0.127088,0.490963,0.316656,0.918267,0.883437,0.707902,0.293249,0.629131,0.31983,0.361323,0.998938,0.032537,0.20266,0.825433,0.101242,0.268557,0.109534,0.987979,0.519097,0.945032,0.252037,0.0589529,0.0391424,0.443902,0.312144,0.738326,0.413609,0.0343998,0.0397025,0.389027,0.0162455,0.84057,0.458603,0.433111,0.29357,0.658125,0.775608,0.44233,0.658155,0.0140097,0.757594,0.782075,0.417407,0.0990412,0.553841,0.877367,0.940794,0.716436,0.250683,0.0930415,0.427603,0.365992,0.391438,0.420838,0.323445,0.253065,0.124352,0.914903,0.367424,0.433463,0.0345941,0.142953,0.814001,0.489938,0.832928,0.219835,0.677715,0.69834,0.957373,0.799131,0.127947,0.509312,0.857388,0.812606,0.96391,0.369986,0.398253,0.912627,0.158807,0.966963,0.341904,0.215589,0.613049,0.234007,0.879527,0.487867,0.0806199,0.386737,0.733118,0.515921,0.535793,0.632264,0.905713,0.978821,0.719577,0.197778,0.441746,0.484733,0.932134,0.86247,0.988804,0.968852,0.383974,0.970003,0.168857,0.465265,0.0589123,0.387383,0.567923,0.886321,0.22998,0.923766,0.263089,0.212591,0.606624,0.967364,0.0314393,0.684893,0.645087,0.720081,0.758326,0.0591139,0.189158,0.640433,0.933362,0.330773,0.20924,0.0673189,0.578373,0.752119,0.146555,0.114485,0.696441,0.164044,0.0826221,0.7271,0.571088,0.715301,0.992914,0.575114,0.216821,0.0452049,0.961576,0.502967,0.454614,0.290407,0.678928,0.746439,0.32165,0.29627,0.883937,0.629176,0.566996,0.5824,0.886146,0.882724,0.994899,0.0523462,0.545247,0.0320203,0.988145,0.733925,0.589736,0.225163,0.237422,0.11919,0.708182,0.502456,0.421711,0.0692794,0.474308,0.657191,0.997049,0.0861449,0.507235,0.438382,0.337923,0.169098,0.591059,0.561564,0.0291126,0.232434,0.42099,0.681805,0.028236,0.20286,0.512283,0.0759367,0.00852638,0.540183,0.576551,0.184306,0.0451729,0.787444,0.518381,0.0741348,0.896192,0.139294,0.418723,0.0520071,0.0974169,0.660324,0.524282,0.795654,0.0419602,0.270347,0.685567,0.486818,0.728766,0.340535,0.479521,0.326905,0.821354,0.398303,0.375072,0.48584,0.234468,0.533256,0.094837,0.830291,0.884437,0.984326,0.209176,0.819019,0.361462,0.178649,0.442827,0.481977,0.828934,0.79478,0.618212,0.316997,0.677879,0.520952,0.125462,0.000898838,0.585553,0.0152057,0.720465,0.901358,0.954027,0.567702,0.637292,0.456348,0.135631,0.36325,|0.882557,0.590378,0.150763,0.72758,0.998416,0.132683,0.213037,0.768135,0.487758,0.651619,0.508578,0.940306,0.105613,0.780699,0.426109,0.585236,0.653329,0.222895,0.879497,0.646787,0.219628,0.599785,0.592631,0.690628,0.88913,0.070621,0.474951,0.95942,0.549993,0.786098,0.865787,0.960527,0.255641,0.713902,0.166956,0.47843,0.702332,0.669439,0.73218,0.244685,0.922964,0.0404582,0.0968213,0.550968,0.270238,0.396776,0.194234,0.397392,0.383157,0.205747,0.418703,0.175045,0.75157,0.61211,0.191408,0.518105,0.697737,0.488123,0.422493,0.702854,0.269509,0.654451,0.520168,0.462055,0.124305,0.943408,0.254956,0.286277,0.971583,0.86584,0.920686,0.449643,0.989262,0.651654,0.78192,0.315403,0.664892,0.607882,0.38996,0.490373,0.633724,0.832096,0.845255,0.306659,0.0391934,0.323088,0.264143,0.912063,0.742158,0.0331698,0.552416,0.344597,0.421087,0.460257,0.195201,0.255434,0.280949,0.772755,0.821375,0.999289,0.292182,0.0878071,0.764564,0.306585,0.722059,0.999041,0.477941,0.472917,0.467859,0.012588,0.537007,0.941381,0.265046,0.26163,0.818059,0.960398,0.69883,0.315621,0.543769,0.280036,0.154125,0.790129,0.424766,0.317958,0.746638,0.654658,0.933057,0.598222,0.415025,0.42214,0.148602,0.651113,0.609838,0.833272,0.976059,0.055518,0.678939,0.00809711,0.478527,0.768603,0.196307,0.798964,0.275083,0.698884,0.542588,0.76736,0.38998,0.32749,0.177681,0.43489,0.843829,0.771003,0.637188,0.658973,0.61189,0.816954,0.17638,0.689121,0.981713,0.289814,0.90048,0.740507,0.323771,0.924038,0.247727,0.901867,0.792401,0.297099,0.748893,0.297261,0.186244,0.701492,0.380878,0.539491,0.0689583,0.162168,0.548908,0.320209,0.0289735,0.721215,0.447903,0.567821,0.412266,0.256559,0.615099,0.239027,0.150915,0.356063,0.132499,0.807644,0.598578,0.849791,0.092415,0.1862,0.593403,0.899805,0.678523,0.332654,0.0123256,0.0489915,0.702159,0.924804,0.258168,0.139141,0.981405,0.0799206,0.364631,0.293405,0.742406,0.937266,0.17853,0.0224059,0.725383,0.163925,0.28691,0.337332,0.144764,0.323054,0.301101,0.705672,0.797485,0.277916,0.455394,0.0267068,0.787038,0.729628,0.521759,0.726775,0.708152,0.331398,0.1903,0.929331,0.800755,0.980237,0.249374,0.406274,0.940003,0.807927,0.848663,0.426255,0.692767,0.509046,0.0473825,0.297629,0.00947857,0.451398,0.588709,0.269639,0.191389,0.942571,0.941885,0.0295884,0.0893278,0.881545,0.273834,0.888964,0.811914,0.259732,0.399288,0.972492,0.938465,0.571491,0.0863546,0.917238,0.816765,0.206083,0.230013,0.117591,0.516562,0.55754,0.911152,0.121046,0.282342,0.366733,0.992103,0.233531,0.00709307,0.817677,0.541413,0.163298,0.968362,0.789834,0.970549,0.498841,0.0967348,0.0765369,0.259293,0.999571,0.996517,0.432988,0.123265,0.826688,0.888686,0.0688083,0.359352,0.205742,0.403152,0.764855,0.798899,0.375201,0.493746,0.797144,0.20188,0.744031,0.144281,0.642295,0.714183,0.716008,0.0812925,0.5264,0.981367,0.464285,0.32234,0.86731,0.729274,0.377371,0.858945,0.349016,0.802601,0.870776,0.640587,0.194491,0.929082,0.545045,0.878227,0.053319,0.288,0.0688742,0.342762,0.614234,0.700701,0.752504,0.812218,0.785594,0.783477,0.833749,0.999634,0.858158,0.369749,0.129017,0.0154748,0.465649,0.962128,0.929494,0.856021,0.168663,0.171087,0.222284,0.480162,0.78587,0.658122,0.686616,0.00379813,0.66998,0.996748,0.485131,0.242663,0.00394869,0.948786,0.713036,0.671187,0.366621,0.729596,0.523233,0.555523,0.468606,0.312629,0.631302,0.051278,0.0308963,0.843519,0.339034,0.700043,0.851015,0.286652,0.21061,0.0449769,0.888111,0.953907,0.719542,0.0765842,0.965868,0.733159,0.740282,0.447125,0.88814,0.954216,0.477916,0.917995,0.299891,0.773278,0.537583,0.00200772,0.31452,0.473615,0.234842,0.974879,0.890964,0.430035,0.420461,0.34033,0.373873,0.112094,0.445968,0.630625,0.797938,0.519825,0.96322,0.640405,0.0160225,0.209292,0.0816696,0.183267,0.594499,0.0732015,0.157296,0.850138,0.107928,0.0323076,0.464289,0.784282,0.89536,0.308178,0.751694,0.901513,0.769052,0.165411,0.972693,0.537183,0.597574,0.946267,0.912598,0.725995,0.844442,0.844174,0.365497,0.985042,0.960188,0.283861,0.725119,0.50511,0.179286,0.787147,0.722527,0.994735,0.93342,0.0896381,0.438292,0.534283,0.0551197,0.895196,0.858496,0.996747,0.973043,0.346506,0.0919802,0.719003,0.0351655,0.938416,0.585006,0.126694,0.986419,0.0126245,0.678635,0.693019,0.970349,0.297629,0.780191,0.658354,0.890491,0.0794376,0.212031,0.791259,0.693704,0.599482,0.552687,0.803826,0.212801,0.744353,0.626729,0.0576709,0.27373,0.0976189,0.167408,0.775588,0.407375,0.710979,0.139824,0.254525,0.207013,0.526737,0.162891,0.00277293,0.205659,0.780295,0.0849777,0.105643,0.345303,0.0607014,0.0426486,0.434017,0.101772,0.450036,0.587037,0.763824,0.0774508,0.817605,0.131892,0.976371,0.889449,0.121826,0.594696,0.776582,0.665998,0.107309,0.636703,0.496546,0.183967,0.167566,0.781062,0.301268,0.342245,0.944808,0.0909706,0.92015,0.0905856,0.49294,0.485616,0.0858514,0.592231,0.887075,0.0407184,0.518293,0.217159,0.26994,0.0511944,0.200043,0.77211,0.733514,0.155487,0.80467,0.16374,0.474722,0.223179,0.353955,0.429451,0.745899,0.763238,0.84361,0.12529,0.9723,0.14466,0.695152,0.11691,0.376914,0.128201,0.943196,0.491482,0.793263,0.277254,0.749419,0.515825,0.155211,0.183452,0.293041,0.634965,0.790496,0.300484,0.974144,0.654251,0.133669,0.145103,0.352342,0.143542,0.75396,0.881211,0.40469,0.282927,0.0972471,0.980846,0.796045,0.413834,0.729511,0.817876,0.780823,0.693687,0.094061,0.152198,0.138002,0.545231,0.406125,0.866649,0.381949,0.85125,0.539363,0.891498,0.545749,0.500505,0.622828,0.380357,0.918101,0.845899,0.536779,0.165138,0.0542073,0.766066,0.859846,0.654902,0.504472,0.386904,0.734526,0.567457,0.353238,0.843643,0.850934,0.726411,0.485834,0.398762,0.3757,0.496484,0.239234,0.276889,0.310418,0.54296,0.248698,0.766849,0.691302,0.142071,0.101957,0.781506,0.615518,0.0870316,0.840935,0.631859,0.612363,0.818541,0.921681,0.455789,0.538675,0.203761,0.6346,0.898532,0.0946859,0.872657,0.469447,0.0676475,0.409472,0.537148,0.942036,0.159717,0.296942,0.868216,0.82321,0.130926,0.973328,0.667904,0.428232,0.299643,0.56595,0.472277,0.846561,0.932814,0.0216956,0.695721,0.805539,0.644329,0.0568439,0.956191,0.915295,0.980026,0.27577,0.884541,0.568599,0.317341,0.109244,0.819042,0.362436,0.228717,0.0513203,0.932589,0.21949,0.503473,0.884115,0.124024,0.203815,0.367245,0.711244,0.0964314,0.536572,0.373461,0.63781,0.0620235,0.498012,0.269018,0.470797,0.178481,0.0113822,0.931687,0.771378,0.947173,0.71728,0.893864,0.523419,0.124798,0.278507,0.856688,0.669267,0.104888,0.761433,0.868731,0.0339703,0.0214018,0.744058,0.897909,0.765215,0.591178,0.230688,0.786866,0.815092,0.81739,0.901932,0.89906,0.221219,0.381942,0.927967,0.85683,0.99965,0.817728,0.980277,0.0674652,0.7566,0.46588,0.650689,0.162109,0.343093,0.193973,0.542985,0.743387,0.185856,0.65616,0.666578,0.173374,0.702815,0.0214912,0.263917,0.698456,0.924158,0.466585,0.921242,0.17395,0.40657,0.0461709,0.0506139,0.226939,0.705876,0.468565,0.384458,0.909008,0.697242,0.399975,0.342954,0.905562,0.643555,0.732077,0.629245,0.52091,0.977425,0.796704,0.20077,0.552731,0.886112,0.607279,0.176202,0.409885,0.795731,0.923639,0.566714,0.519986,0.42851,0.431489,0.770707,0.614929,0.978345,0.32462,0.602623,0.764845,0.8062,0.164413,0.888133,0.217421,0.0209219,0.674281,0.126421,0.725876,0.43839,0.274334,0.688853,0.327068,0.743182,0.881187,0.342784,0.150005,0.0509784,0.236537,0.690268,0.391859,0.710043,0.126794,0.837047,0.10496,0.269063,0.673436,0.467753,0.0232688,0.825666,0.887771,0.322243,0.216006,0.326157,0.861395,0.985731,0.718787,0.451022,0.883615,0.175865,0.254467,0.743855,0.755572,0.757335,0.29468,0.41656,0.010461,0.965102,0.945234,0.783706,0.114916,0.621868,0.546434,0.490544,0.667577,0.456833,0.970407,0.624928,0.554712,0.787229,0.451389,0.867094,0.611054,0.852675,0.864367,0.616758,0.872776,0.163297,0.991764,0.255301,0.57603,0.0875998,0.0635406,0.737052,0.443115,0.799709,0.108153,0.87631,0.759138,0.503061,0.740444,0.121296,0.424561,0.675737,0.409807,0.715058,0.478811,0.755865,0.0113685,0.207382,0.922912,0.643166,0.504638,0.952048,0.698389,0.763449,0.7606,0.4968,0.854247,0.753959,0.8764,0.0475791,0.0289691,0.604583,0.285087,0.304488,0.563611,0.81125,0.371367,0.170587,0.513899,0.477115,0.999994,0.74293,0.294913,0.183956,0.290983,0.489149,0.760545,0.464998,0.831506,0.957027,0.502859,0.739264,0.226118,0.853568,0.301504,0.473453,0.190601,0.75917,0.918675,0.189946,0.363703,0.445557,0.145711,0.803396,0.391493,0.115776,0.0601185,0.780909,0.596439,0.0979098,0.328639,0.104005,0.257868,0.159868,0.0611385,0.497185,0.660369,0.935951,0.896341,0.601857,0.365501,0.800125,0.480896,0.53716,0.338654,0.296733,0.444525,0.73615,0.279738,0.752083,0.702108,0.560918,0.11434,0.287518,0.776271,0.79871,0.900135,0.138996,0.0736014,0.689804,0.706412,0.415907,0.751838,0.477911,0.260662,0.431963,0.529751,0.870785,0.785294,0.100116,0.193784,0.550264,0.923207,0.302193,0.263427,0.225224,0.292084,0.53419,0.0295516,0.424081,0.276422,0.771049,0.425167,0.383304,0.534499,0.0272816,0.0801321,0.234602,0.71161,0.378992,0.287792,0.836026,0.530155,0.624053,0.260834,0.487494,0.676844,0.971281,0.738307,0.00831378,0.819959,0.68846,0.889059,|0.765778,0.941626,0.073633,0.105699,0.536938,0.84623,0.761985,0.932011,0.278009,0.826366,0.49022,0.735031,0.988046,0.114468,0.147887,0.80433,0.514223,0.196507,0.600814,0.372019,0.693943,0.630223,0.33977,0.726188,0.210898,0.729983,0.333062,0.757327,0.246534,0.402551,0.22516,0.794251,0.296111,0.12356,0.25544,0.890471,0.190241,0.584257,0.884206,0.164098,0.908005,0.892885,0.508144,0.573295,0.0320123,0.927434,0.667984,0.925918,0.082404,0.459437,0.131226,0.179552,0.882438,0.399708,0.993013,0.814972,0.514053,0.791064,0.507518,0.0491829,0.120334,0.748732,0.151785,0.0262425,0.647245,0.537337,0.195967,0.439512,0.910535,0.280377,0.605448,0.038895,0.685284,0.247872,0.891333,0.324729,0.106737,0.2795,0.47038,0.205869,0.57997,0.810329,0.068622,0.47439,0.374831,0.286133,0.378251,0.820771,0.011186,0.249549,0.967987,0.623781,0.401904,0.819009,0.814557,0.980191,0.651294,0.40779,0.0645089,0.335825,0.145211,0.876921,0.595755,0.896462,0.411823,0.515854,0.921674,0.926601,0.623885,0.449588,0.782564,0.204385,0.537808,0.770762,0.13092,0.16589,0.105787,0.903034,0.392548,0.950373,0.938618,0.258949,0.331809,0.490265,0.777339,0.178317,0.710243,0.0691679,0.325823,0.556526,0.524083,0.0459623,0.205732,0.577611,0.0575063,0.914672,0.39735,0.411993,0.0888321,0.795439,0.34565,0.874908,0.14625,0.755286,0.25982,0.816024,0.975037,0.796608,0.619811,0.170977,0.65651,0.599292,0.0017603,0.104329,0.396395,0.852363,0.939248,0.458383,0.322139,0.574362,0.710727,0.0396691,0.751343,0.247834,0.266504,0.5907,0.1886,0.949087,0.793673,0.992986,0.587372,0.196524,0.278756,0.171183,0.984515,0.471479,0.560838,0.507127,0.850043,0.838987,0.107876,0.487757,0.426566,0.758633,0.0997092,0.224561,0.276037,0.00177717,0.233681,0.443985,0.842993,0.844817,0.0541899,0.937438,0.539574,0.484676,0.479304,0.154996,0.233955,0.43473,0.0402849,0.704013,0.0129616,0.43961,0.567371,0.120933,0.674626,0.567396,0.173694,0.0783641,0.723175,0.762816,0.844195,0.930692,0.079627,0.780569,0.112795,0.100618,0.42722,0.580339,0.686731,0.278867,0.115504,0.516545,0.848204,0.828508,0.230118,0.146367,0.888539,0.360267,0.728028,0.464498,0.366544,0.673712,0.0719491,0.598269,0.263683,0.218204,0.162531,0.721588,0.876279,0.266237,0.961861,0.447497,0.87506,0.148341,0.832071,0.233705,0.00494248,0.717418,0.849242,0.895872,0.344051,0.531434,0.404979,0.11054,0.211403,0.701259,0.426869,0.215589,0.170203,0.438437,0.254638,0.645159,0.684431,0.462297,0.258127,0.26847,0.703742,0.0912807,0.839828,0.379248,0.104447,0.698415,0.0421298,0.115413,0.577661,0.434148,0.150292,0.643512,0.310571,0.853046,0.605685,0.29123,0.322192,0.0794129,0.039254,0.145623,0.965539,0.92416,0.437698,0.751731,0.0716605,0.51477,0.788283,0.946242,0.601461,0.587805,0.155337,0.810723,0.0205115,0.793251,0.687377,0.0518538,0.821972,0.0968423,0.112465,0.369352,0.8759,0.013959,0.580975,0.861799,0.480536,0.898537,0.551971,0.835998,0.912124,0.00118643,0.512107,0.640778,0.949598,0.64669,0.218851,0.764061,0.879646,0.202666,0.259042,0.359199,0.00445133,0.0652848,0.336341,0.125381,0.461644,0.978858,0.456468,0.926631,0.700227,0.980581,0.802782,0.887872,0.593932,0.592281,0.0820817,0.383947,0.597567,0.722016,0.0986941,0.655308,0.780459,0.472901,0.434305,0.722594,0.12356,0.65329,0.273037,0.220396,0.0427778,0.302474,0.479138,0.776027,0.543395,0.711398,0.693285,0.262015,0.20268,0.715086,0.169586,0.298349,0.0533659,0.875648,0.657877,0.445519,0.833273,0.286868,0.633504,0.589148,0.992348,0.239261,0.25166,0.598491,0.562503,0.85632,0.762044,0.690874,0.0948408,0.959947,0.921062,0.770949,0.761053,0.562517,0.923991,0.346552,0.365849,0.725616,0.996316,0.517617,0.186224,0.0471109,0.313364,0.452393,0.676956,0.434927,0.70656,0.443053,0.724647,0.431755,0.199213,0.362526,0.714032,0.143604,0.672255,0.588978,0.0122917,0.200158,0.157469,0.63258,0.152379,0.460437,0.408155,0.694002,0.515586,0.210208,0.0391959,0.312199,0.0894223,0.351764,0.0433832,0.412891,0.596535,0.625494,0.325463,0.787371,0.488763,0.235743,0.62487,0.0699525,0.147912,0.821728,0.57741,0.817998,0.573245,0.51573,0.41773,0.455705,0.819197,0.449686,0.754091,0.191288,0.688678,0.592415,0.410364,0.489212,0.795723,0.185857,0.59907,0.757271,0.461914,0.017132,0.652602,0.866256,0.899975,0.0297064,0.0822855,0.808889,0.397107,0.959599,0.191665,0.798327,0.0857454,0.922158,0.110013,0.137491,0.971865,0.511768,0.924196,0.860384,0.483593,0.93811,0.584356,0.271081,0.225087,0.768416,0.00819111,0.981748,0.373882,0.07141,0.0614485,0.623363,0.594807,0.0428136,0.795994,0.391174,0.917948,0.746008,0.629181,0.532663,0.194246,0.967147,0.40032,0.975827,0.957632,0.183457,0.829232,0.945085,0.608647,0.185439,0.934985,0.427101,0.2983,0.299818,0.430318,0.590101,0.336239,0.448076,0.625551,0.0672119,0.817889,0.117954,0.148304,0.158202,0.630034,0.863964,0.0461041,0.571112,0.966364,0.319879,0.328062,0.00616032,0.22029,0.384212,0.980286,0.047191,0.0152342,0.810183,0.961823,0.0404282,0.462849,0.708144,0.55996,0.527748,0.0432367,0.0749528,0.0165434,0.608456,0.608248,0.371492,0.571302,0.485597,0.432085,0.738951,0.687848,0.943263,0.860879,0.950949,0.30574,0.203895,0.272949,0.948662,0.0976134,0.782303,0.965341,0.0961755,0.554773,0.134789,0.66895,0.507163,0.911098,0.22699,0.304912,0.433744,0.135639,0.49233,0.575686,0.654513,0.706025,0.107836,0.895601,0.159588,0.334795,0.507931,0.624645,0.437975,0.173275,0.872515,0.64486,0.583795,0.845982,0.524289,0.332754,0.490477,0.737888,0.398569,0.804426,0.555301,0.745512,0.860495,0.640819,0.156154,0.0325457,0.0838923,0.541373,0.566579,0.975202,0.606738,0.41885,0.809839,0.905848,0.566091,0.989293,0.263316,0.545464,0.374537,0.296275,0.880389,0.395288,0.548189,0.541545,0.349338,0.66868,0.882556,0.71094,0.202324,0.931598,0.0638737,0.6591,0.266598,0.449483,0.612435,0.092528,0.507849,0.49365,0.858216,0.85656,0.834031,0.685085,0.699534,0.888634,0.99763,0.373629,0.134425,0.987703,0.643452,0.423281,0.91418,0.146336,0.457211,0.892186,0.232769,0.438104,0.248421,0.716278,0.363058,0.34727,0.20208,0.215656,0.735341,0.670412,0.680581,0.412713,0.90196,0.950945,0.672593,0.409054,0.727595,0.77161,0.996067,0.788159,0.656315,0.161799,0.368823,0.838976,0.315281,0.851107,0.277139,0.640804,0.575085,0.685768,0.91542,0.852159,0.806121,0.289918,0.6753,0.918393,0.484254,0.516091,0.469015,0.244272,0.0866541,0.920831,0.358188,0.466889,0.855287,0.499111,0.189052,0.559822,0.179497,0.185506,0.0633811,0.0210828,0.496077,0.740296,0.0253395,0.402251,0.754917,0.695362,0.0161361,0.482189,0.292373,0.918267,0.297715,0.307755,0.861833,0.740871,0.644631,0.755768,0.182786,0.432532,0.88686,0.0766363,0.588154,0.324811,0.388133,0.687387,0.909699,0.900358,0.545888,0.343025,0.85135,0.922692,0.445023,0.92374,0.323564,0.702778,0.217806,0.837644,0.812536,0.751186,0.550666,0.746664,0.63538,0.4773,0.113985,0.16687,0.157426,0.367526,0.912757,0.889117,0.48091,0.732349,0.0465939,0.0641539,0.971808,0.274991,0.137372,0.603236,0.83478,0.371081,0.0396311,0.857195,0.585701,0.504315,0.725724,0.840222,0.71954,0.2065,0.137815,0.966025,0.606284,0.522891,0.165007,0.598261,0.583418,0.616593,0.127523,0.626426,0.0487058,0.28323,0.713727,0.313648,0.592201,0.304649,0.743693,0.787557,0.1014,0.975107,0.829079,0.0443775,0.344773,0.16229,0.0852787,0.152447,0.976224,0.215213,0.90633,0.287318,0.586608,0.444825,0.389686,0.331894,0.61258,0.553539,0.848171,0.0398255,0.125001,0.866859,0.615489,0.302535,0.905627,0.671644,0.999991,0.136594,0.824337,0.730337,0.995799,0.598597,0.550633,0.379487,0.993551,0.651887,0.30304,0.176907,0.384441,0.0453894,0.0777636,0.209149,0.272753,0.490846,0.328895,0.030899,0.695794,0.627071,0.301371,0.661116,0.755332,0.42095,0.429713,0.37339,0.259373,0.371254,0.428682,0.00306785,0.688301,0.250024,0.964599,0.706657,0.640531,0.801232,0.67496,0.951208,0.0777144,0.907552,0.731888,0.542002,0.76992,0.23753,0.907788,0.569145,0.924204,0.434263,0.987484,0.956177,0.231128,0.0985005,0.897898,0.820119,0.730289,0.786981,0.366496,0.364142,0.256149,0.641157,0.501374,0.513257,0.597896,0.193707,0.35083,0.241766,0.880834,0.00823051,0.700083,0.608704,0.895672,0.8366,0.735106,0.158165,0.482727,0.471854,0.432417,0.181718,0.276332,0.203382,0.954385,0.00518769,0.0636914,0.278948,0.67527,0.0773103,0.904533,0.985071,0.737322,0.458625,0.486503,0.187716,0.155402,0.782451,0.0927843,0.00606841,0.665259,0.394909,0.870856,0.446964,0.412897,0.201797,0.7645,0.326404,0.533801,0.292885,0.594475,0.82717,0.189127,0.466132,0.521915,0.745815,0.271583,0.273716,0.399257,0.846236,0.197407,0.541232,0.797795,0.827755,0.42022,0.0771922,0.408773,0.930851,0.653818,0.360132,0.21291,0.942334,0.00391358,0.551392,0.132967,0.623769,0.559535,0.15252,0.186632,0.452269,0.801063,0.335464,0.973935,0.509008,0.973171,0.842313,0.0579498,0.599579,0.729386,0.353047,0.151438,0.465614,0.558354,0.404485,0.76574,0.784628,0.592545,0.403849,0.469929,0.630296,0.51383,0.609701,0.506782,0.239574,0.0903553,0.120087,0.349175,0.334025,0.661248,0.599469,0.409292,0.820604,0.496851,0.919378,0.550357,0.153617,0.923461,0.278829,0.603799,0.628316,0.794706,0.330081,0.0115241,0.393644,0.815641,0.0502746,0.620737,0.485112,0.300785,0.912231,0.912302,0.749924,0.895227,|0.115901,0.111998,0.954467,0.0563467,0.82237,0.931265,0.041629,0.838817,0.323679,0.418524,0.441472,0.0656301,0.306319,0.185512,0.175927,0.539317,0.613627,0.414883,0.938364,0.11913,0.57373,0.333576,0.77023,0.728863,0.875947,0.904093,0.517453,0.673445,0.879885,0.682036,0.0893122,0.943478,0.367833,0.202801,0.624599,0.464124,0.130805,0.01517,0.893494,0.328542,0.562141,0.651646,0.897143,0.0454149,0.33886,0.719625,0.580549,0.279201,0.187787,0.69242,0.401542,0.403372,0.11859,0.37247,0.843818,0.339474,0.242955,0.977759,0.752033,0.553048,0.766136,0.875415,0.317036,0.73673,0.237241,0.0162304,0.575649,0.474805,0.654996,0.455363,0.69573,0.308272,0.39607,0.41548,0.0107307,0.178324,0.109563,0.62565,0.436663,0.896905,0.831543,0.924587,0.09474,0.677764,0.223992,0.38697,0.0236389,0.776883,0.194653,0.341427,0.739899,0.886607,0.171546,0.766154,0.94694,0.316292,0.132386,0.118418,0.481697,0.183027,0.638806,0.27352,0.676436,0.813292,0.824219,0.887446,0.123663,0.895995,0.809443,0.516334,0.364031,0.926182,0.899362,0.834414,0.279499,0.836875,0.492927,0.382858,0.535749,0.94571,0.587252,0.0857481,0.449873,0.607977,0.911025,0.422635,0.0465014,0.759267,0.727747,0.622933,0.759995,0.988104,0.585133,0.298154,0.613117,0.0648616,0.319798,0.541871,0.151779,0.365973,0.389505,0.395088,0.15809,0.271208,0.278275,0.237879,0.642833,0.588957,0.812835,0.379968,0.890836,0.268657,0.492732,0.453473,0.0755156,0.731206,0.978894,0.853135,0.459449,0.553742,0.228794,0.69506,0.413758,0.780529,0.0475689,0.0954295,0.812269,0.157901,0.568021,0.700849,0.828849,0.7294,0.6351,0.172965,0.00674492,0.0708603,0.476735,0.119655,0.233016,0.923142,0.0939152,0.450805,0.554412,0.0249974,0.950962,0.775222,0.321526,0.667886,0.507875,0.270926,0.884941,0.94265,0.11148,0.402348,0.607234,0.975182,0.706684,0.300076,0.195682,0.695769,0.738926,0.522562,0.918982,0.56073,0.65575,0.562839,0.551147,0.66345,0.510304,0.409043,0.40306,0.201443,0.484068,0.185156,0.501532,0.183531,0.530295,0.376794,0.621369,0.0303164,0.370601,0.80698,0.486722,0.990834,0.688026,0.481094,0.648793,0.98847,0.562747,0.905906,0.226739,0.448731,0.0809513,0.0937154,0.476627,0.550486,0.169706,0.0874077,0.637292,0.559767,0.757819,0.503786,0.74946,0.260951,0.550778,0.479247,0.994015,0.0996022,0.766592,0.113676,0.0841855,0.948114,0.919867,0.166595,0.168904,0.115407,0.567995,0.993113,0.551112,0.619096,0.335373,0.764951,0.765527,0.9491,0.151884,0.928835,0.398202,0.288684,0.619276,0.344113,0.0197673,0.343875,0.771867,0.763693,0.469974,0.509585,0.501984,0.457181,0.620869,0.69964,0.719268,0.791261,0.699438,0.63169,0.503895,0.0197943,0.447944,0.022164,0.168649,0.512732,0.546106,0.00581044,0.673202,0.807629,0.192711,0.52757,0.863589,0.26554,0.598525,0.00324696,0.656722,0.453754,0.407301,0.368307,0.921538,0.0296083,0.692886,0.773827,0.664054,0.540966,0.368468,0.562132,0.175784,0.417261,0.723944,0.672631,0.163083,0.092088,0.65176,0.334365,0.510235,0.372652,0.583227,0.959719,0.111649,0.0774764,0.375307,0.749536,0.154299,0.965783,0.609687,0.556332,0.490063,0.510423,0.482304,0.926898,0.194581,0.550735,0.862263,0.0200368,0.0395725,0.424166,0.0960493,0.711387,0.399183,0.101401,0.852014,0.11349,0.354454,0.388298,0.894159,0.341107,0.327557,0.127635,0.514445,0.105096,0.612997,0.217573,0.906596,0.924593,0.236646,0.0842414,0.0441263,0.601523,0.344663,0.44141,0.165394,0.0587658,0.749838,0.364267,0.767711,0.83467,0.696841,0.0939338,0.0299922,0.88813,0.824336,0.132682,0.662227,0.231545,0.775187,0.341081,0.028873,0.779853,0.802317,0.738961,0.580851,0.22927,0.00721312,0.133018,0.280301,0.299053,0.272554,0.239655,0.648004,0.720459,0.00717038,0.47728,0.148422,0.625427,0.208649,0.581836,0.957386,0.549666,0.912479,0.548287,0.00793195,0.44338,0.125255,0.756002,0.2765,0.388106,0.444571,0.653059,0.847536,0.42933,0.959338,0.130182,0.784956,0.388066,0.600416,0.387312,0.63595,0.460513,0.67954,0.164848,0.790849,0.746144,0.749785,0.835492,0.680014,0.704225,0.723711,0.758671,0.0896089,0.572792,0.219847,0.555983,0.0354195,0.963604,0.289351,0.574107,0.210041,0.583011,0.366559,0.0395243,0.460134,0.560472,0.516803,0.552209,0.751276,0.304775,0.936759,0.770472,0.632708,0.431918,0.15741,0.433191,0.849081,0.581272,0.952266,0.636063,0.501435,0.560301,0.361945,0.670202,0.444383,0.395764,0.63532,0.922895,0.686592,0.007972,0.550802,0.371525,0.100668,0.150683,0.415392,0.875269,0.267406,0.0506822,0.154666,0.383959,0.269951,0.690834,0.20908,0.13354,0.188616,0.292839,0.238319,0.661857,0.909034,0.543869,0.86882,0.177468,0.270577,0.834574,0.0482443,0.877754,0.0319652,0.297401,0.955964,0.735013,0.808212,0.572024,0.254056,0.741131,0.883032,0.881617,0.250281,0.70361,0.525552,0.399922,0.583557,0.498722,0.527502,0.873747,0.0598947,0.851283,0.926006,0.254861,0.839617,0.227659,0.659567,0.231183,0.968953,0.61315,0.42355,0.249467,0.889436,0.842904,0.25832,0.466646,0.118053,0.722445,0.154426,0.376193,0.27233,0.235276,0.172268,0.138266,0.283716,0.95531,0.415068,0.376566,0.0546349,0.204735,0.58535,0.0967426,0.766181,0.704555,0.744768,0.515263,0.0830735,0.00482714,0.917024,0.681333,0.471793,0.775481,0.105214,0.697503,0.244863,0.900801,0.764179,0.568996,0.221874,0.68281,0.447297,0.338677,0.709221,0.495614,0.47747,0.0446531,0.621961,0.893365,0.934361,0.658483,0.432791,0.848145,0.845573,0.419626,0.593191,0.746733,0.515426,0.146775,0.15564,0.0281652,0.189048,0.24798,0.562381,0.226011,0.653695,0.297737,0.293517,0.171297,0.383883,0.00724405,0.818276,0.579624,0.0204229,0.738119,0.575398,0.857442,0.595925,0.590353,0.255394,0.517866,0.0442387,0.242629,0.0772449,0.452223,0.49441,0.739276,0.620165,0.733609,0.851003,0.474229,0.8507,0.144422,0.905141,0.746653,0.37293,0.598472,0.309884,0.558839,0.542913,0.199166,0.679256,0.876853,0.511847,0.770306,0.549325,0.88438,0.331424,0.396543,0.660468,0.293163,0.24834,0.880997,0.704165,0.880836,0.190511,0.333912,0.797353,0.0911726,0.248658,0.447517,0.442872,0.593783,0.846854,0.661325,0.195035,0.468595,0.588624,0.77357,0.270941,0.0792905,0.194869,0.459001,0.0487671,0.157102,0.847296,0.239284,0.32317,0.106585,0.0872498,0.496873,0.999359,0.578852,0.629595,0.151447,0.622004,0.739865,0.68421,0.204582,0.00405294,0.415759,0.514062,0.161682,0.916748,0.31164,0.869221,0.0994753,0.455323,0.529317,0.578188,0.249393,0.468497,0.552543,0.558833,0.761257,0.512308,0.966953,0.919919,0.324874,0.831421,0.0690402,0.331557,0.116116,0.287425,0.36199,0.0247913,0.824694,0.304614,0.903029,0.441338,0.728968,0.0491185,0.120311,0.420401,0.135417,0.205197,0.324093,0.803988,0.330216,0.0697173,0.518394,0.115792,0.569256,0.30873,0.484245,0.589942,0.151935,0.654333,0.858136,0.0263872,0.625655,0.478699,0.275687,0.941142,0.0322997,0.61855,0.973441,0.613434,0.261321,0.0437764,0.791696,0.854354,0.262235,0.476707,0.848382,0.548014,0.057077,0.31452,0.153378,0.22727,0.635919,0.261759,0.855162,0.644323,0.228176,0.097159,0.742824,0.679316,0.889148,0.443589,0.445038,0.479444,0.145414,0.397185,0.00725281,0.970304,0.376371,0.0138025,0.646733,0.432077,0.526235,0.799752,0.597773,0.378828,0.245261,0.653074,0.182981,0.845112,0.336037,0.478074,0.588091,0.980201,0.997999,0.101549,0.617935,0.248461,0.574515,0.405392,0.97701,0.937115,0.520489,0.82621,0.608351,0.332362,0.665466,0.862118,0.661353,0.0625798,0.774524,0.45903,0.908446,0.971563,0.902893,0.956469,0.355124,0.335393,0.306564,0.261892,0.995917,0.610364,0.257797,0.323767,0.51406,0.0203513,0.499237,0.979554,0.847524,0.801337,0.942208,0.565516,0.45654,0.167903,0.661229,0.379887,0.124341,0.88427,0.961724,0.474072,0.782395,0.728289,0.894338,0.00164992,0.74398,0.711416,0.556423,0.360196,0.777303,0.390603,0.320537,0.555836,0.485635,0.548938,0.882921,0.283058,0.85111,0.603393,0.832668,0.867789,0.324733,0.993235,0.0150025,0.841179,0.15964,0.437221,0.561862,0.167783,0.502688,0.390336,0.103714,0.488691,0.25504,0.674396,0.433443,0.133725,0.326877,0.701902,0.174991,0.713807,0.579269,0.0980569,0.458035,0.532785,0.462162,0.141305,0.200684,0.447456,0.941122,0.196631,0.0899441,0.0794577,0.867278,0.811552,0.341528,0.99828,0.992788,0.61288,0.774214,0.57212,0.502452,0.358187,0.766144,0.0753609,0.230023,0.892663,0.360995,0.822956,0.92702,0.0370758,0.794284,0.265004,0.0141398,0.307127,0.545451,0.152156,0.556214,0.65227,0.308439,0.639744,0.45372,0.194538,0.36371,0.157855,0.667787,0.0486336,0.385024,0.0612128,0.0842151,0.826825,0.340653,0.481528,0.315618,0.581882,0.6609,0.330478,0.875806,0.834236,0.637387,0.70585,0.926359,0.299685,0.134665,0.506961,0.856446,0.169304,0.592781,0.945046,0.633466,0.588523,0.454857,0.691921,0.411685,0.322859,0.789751,0.826656,0.225625,0.103565,0.510938,0.740029,0.370549,0.643715,0.0453291,0.525312,0.0814524,0.0556238,0.791456,0.420729,0.46471,0.974437,0.969416,0.335375,0.472533,0.625926,0.000556111,0.764794,0.441141,0.789777,0.303398,0.875809,0.639405,0.766707,0.235396,0.313337,0.712169,0.144085,0.0105808,0.653283,0.757405,0.489807,0.163834,0.163756,0.466441,0.699664,0.776329,0.0332429,0.894618,0.859487,0.299502,0.0049575,0.602395,0.661346,0.119084,0.540836,0.278571,0.877068,0.24426,0.377105,0.265986,0.760664,0.484804,0.882811,0.195992,0.523892,0.35688,0.270183,0.321293,|0.792446,0.101969,0.741403,0.320933,0.108941,0.0791827,0.847691,0.631705,0.637959,0.121458,0.353927,0.274989,0.58973,0.371566,0.76156,0.0266336,0.291944,0.865984,0.85945,0.281591,0.955882,0.291893,0.531463,0.218446,0.734617,0.0470308,0.975152,0.976808,0.0781724,0.680661,0.724768,0.637686,0.491745,0.150813,0.57714,0.326984,0.982494,0.505241,0.503366,0.300756,0.189086,0.658569,0.152113,0.307495,0.983331,0.657768,0.360148,0.165278,0.282203,0.319666,0.309926,0.786332,0.395562,0.625244,0.642963,0.880789,0.595615,0.216864,0.781623,0.99376,0.286952,0.0713862,0.0606662,0.752963,0.721547,0.650538,0.43819,0.525066,0.839674,0.674314,0.957237,0.456138,0.00511736,0.0628296,0.171404,0.785988,0.570393,0.185657,0.723177,0.163592,0.383772,0.764954,0.0192834,0.12756,0.555494,0.911004,0.733864,0.637143,0.898148,0.021318,0.374133,0.0219647,0.0098834,0.462942,0.522449,0.257585,0.907026,0.987884,0.905025,0.641229,0.927299,0.12618,0.367472,0.031828,0.248983,0.351377,0.34809,0.512278,0.908107,0.23793,0.102976,0.383911,0.54153,0.708541,0.217397,0.0541939,0.0310578,0.534296,0.160614,0.542286,0.223,0.114463,0.17166,0.0166885,0.0708432,0.417712,0.248279,0.945396,0.853067,0.163801,0.534986,0.604791,0.275117,0.00634891,0.849436,0.207937,0.143807,0.243108,0.256956,0.394336,0.811313,0.486069,0.759086,0.222291,0.464866,0.19136,0.0818374,0.894955,0.26842,0.314997,0.561733,0.492182,0.0416339,0.850357,0.219953,0.755892,0.104893,0.0215225,0.377126,0.0382382,0.514735,0.100478,0.388044,0.554875,0.886543,0.627864,0.711853,0.667011,0.26823,0.579891,0.67475,0.671834,0.968252,0.633116,0.250557,0.156868,0.953308,0.533248,0.102366,0.973887,0.385935,0.20933,0.748937,0.37716,0.0747171,0.201112,0.813251,0.525202,0.184834,0.312274,0.247439,0.724231,0.946418,0.706856,0.851804,0.305449,0.364768,0.811781,0.634376,0.842948,0.448084,0.197316,0.268027,0.967335,0.576773,0.275296,0.548829,0.776123,0.20643,0.249392,0.0739457,0.220834,0.621258,0.906437,0.123278,0.116077,0.321619,0.949716,0.81012,0.201139,0.289404,0.901723,0.668308,0.89963,0.480678,0.658556,0.476011,0.828076,0.0541925,0.951306,0.133819,0.555028,0.947656,0.850482,0.104318,0.0701609,0.981319,0.286157,0.533182,0.167377,0.50483,0.542933,0.537101,0.828553,0.315909,0.378955,0.914453,0.180479,0.0582026,0.664798,0.705327,0.760972,0.835545,0.0659329,0.115773,0.294975,0.989273,0.802017,0.353855,0.0509239,0.740065,0.897187,0.87515,0.246864,0.606839,0.410763,0.163064,0.517535,0.510729,0.292399,0.160215,0.399111,0.956075,0.925244,0.636258,0.728475,0.798629,0.365002,0.816571,0.651939,0.43637,0.703275,0.0248551,0.405685,0.527618,0.151257,0.83852,0.615334,0.475787,0.739308,0.456719,0.176277,0.0383418,0.099529,0.483749,0.843606,0.197679,0.421068,0.528292,0.0618072,0.999224,0.163936,0.733253,0.461526,0.733175,0.63306,0.774755,0.761594,0.189551,0.376101,0.735963,0.688669,0.0243374,0.913757,0.496921,0.630142,0.300239,0.108577,0.0912017,0.942331,0.146165,0.836667,0.303319,0.403801,0.360556,0.389522,0.334024,0.25231,0.673786,0.72406,0.733638,0.292089,0.43051,0.792104,0.504833,0.800796,0.743532,0.462866,0.296744,0.0103095,0.606811,0.570114,0.23559,0.82976,0.802376,0.73318,0.286107,0.853303,0.473968,0.302267,0.170178,0.664492,0.684451,0.403664,0.387238,0.0190679,0.881061,0.623969,0.55931,0.299102,0.486477,0.815484,0.29416,0.656032,0.00554562,0.483457,0.624504,0.502897,0.22144,0.538828,0.260066,0.645002,0.276859,0.285654,0.688393,0.0586655,0.539985,0.403747,0.805651,0.72244,0.667199,0.246997,0.801362,0.222139,0.178403,0.679043,0.35046,0.817548,0.920029,0.210837,0.341299,0.127028,0.0681092,0.703908,0.260932,0.301715,0.160937,0.722151,0.308151,0.715628,0.289753,0.263217,0.768384,0.262348,0.25067,0.827206,0.726587,0.140033,0.11907,0.843009,0.798131,0.689889,0.602409,0.362857,0.595619,0.464137,0.531638,0.980279,0.527225,0.919138,0.799933,0.81154,0.630369,0.997221,0.375873,0.362471,0.0247001,0.768485,0.995789,0.0733014,0.492183,0.397819,0.663934,0.963646,0.570012,0.391184,0.600803,0.414197,0.76652,0.273999,0.520724,0.915869,0.0856206,0.460271,0.436433,0.44445,0.636117,0.00987726,0.188823,0.467423,0.557976,0.753569,0.0272204,0.531834,0.286125,0.0650839,0.122323,0.37856,0.778489,0.05801,0.881611,0.697733,0.359672,0.81907,0.426913,0.495272,0.0829774,0.746338,0.286282,0.653643,0.371884,0.589812,0.202126,0.460922,0.0621501,0.365418,0.565449,0.250016,0.985934,0.715085,0.449898,0.479665,0.868214,0.214509,0.643796,0.609161,0.420816,0.559644,0.967368,0.790534,0.856965,0.383062,0.744366,0.166341,0.235911,0.634688,0.940692,0.722954,0.783238,0.636671,0.696607,0.0514444,0.111718,0.444409,0.0854049,0.417705,0.487383,0.511081,0.464248,0.685784,0.328282,0.0603583,0.909756,0.31512,0.20801,0.512997,0.36463,0.686591,0.650059,0.718263,0.0634217,0.506347,0.491427,0.275651,0.050176,0.134556,0.262964,0.966531,0.898814,0.144943,0.815293,0.125521,0.175982,0.328271,0.997322,0.972296,0.0318955,0.273802,0.991812,0.919656,0.392263,0.442633,0.425604,0.15145,0.36501,0.647877,0.437852,0.553542,0.530441,0.552128,0.986818,0.694896,0.347387,0.714961,0.852724,0.310686,0.324053,0.394401,0.0914734,0.540203,0.223114,0.242778,0.0116083,0.440464,0.764542,0.124274,0.287055,0.996694,0.0862654,0.977295,0.679864,0.512721,0.306504,0.0778315,0.803267,0.279255,0.309015,0.739969,0.823858,0.424361,0.771529,0.52119,0.164659,0.248207,0.194438,0.692561,0.332858,0.441651,0.962579,0.101033,0.814733,0.0123823,0.327304,0.976614,0.725863,0.675937,0.291688,0.911298,0.0819615,0.466453,0.420244,0.35162,0.983389,0.779275,0.768524,0.323623,0.664263,0.712452,0.870977,0.78591,0.976161,0.879252,0.673469,0.700321,0.0416676,0.510948,0.74212,0.625425,0.624289,0.886972,0.587402,0.411899,0.543209,0.649878,0.845906,0.445571,0.943697,0.961885,0.908986,0.131345,0.483718,0.639782,0.656197,0.401219,0.0438436,0.508306,0.125671,0.61322,0.622464,0.170509,0.771535,0.826264,0.0414297,0.558758,0.0672449,0.0186943,0.6545,0.918937,0.197982,0.432145,0.420007,0.109064,0.521399,0.330318,0.0494438,0.355308,0.485559,0.534585,0.139375,0.952884,0.669682,0.548383,0.947608,0.0709363,0.104708,0.169373,0.347349,0.28369,0.0635716,0.582849,0.280218,0.0438654,0.530587,0.416389,0.629631,0.889865,0.489857,0.95354,0.993082,0.266629,0.296632,0.63974,0.136093,0.550228,0.0963129,0.397681,0.579051,0.29938,0.149431,0.476064,0.584487,0.492322,0.431642,0.151627,0.834404,0.697213,0.417452,0.790205,0.207108,0.0563245,0.763893,0.619447,0.994502,0.668938,0.380599,0.704829,0.544747,0.636822,0.63337,0.25968,0.834069,0.985577,0.791011,0.920562,0.734016,0.636902,0.563604,0.200025,0.118672,0.774344,0.463287,0.469943,0.366593,0.42644,0.378343,0.642995,0.331349,0.768283,0.041817,0.726241,0.78245,0.794192,0.428547,0.698491,0.0603109,0.802736,0.651581,0.0588012,0.6971,0.415065,0.36407,0.282119,0.862221,0.601381,0.0581776,0.11243,0.569821,0.349406,0.304157,0.859451,0.810774,0.978924,0.159213,0.207049,0.167644,0.315553,0.352453,0.384129,0.759468,0.671567,0.966422,0.972309,0.563607,0.553294,0.67812,0.925352,0.905099,0.455924,0.496104,0.29416,0.410178,0.352109,0.186786,0.303303,0.618503,0.150458,0.641119,0.524258,0.875265,0.280046,0.833037,0.900192,0.672499,0.0791178,0.614803,0.242817,0.372154,0.443585,0.129052,0.831181,0.870786,0.495891,0.817922,0.84083,0.572893,0.68331,0.942226,0.554601,0.158875,0.350446,0.944424,0.881457,0.451915,0.307224,0.837618,0.704405,0.0996009,0.646931,0.916446,0.521802,0.871244,0.203499,0.680169,0.105825,0.707013,0.699835,0.535284,0.154653,0.228644,0.43104,0.122715,0.570286,0.361033,0.00803924,0.967453,0.467692,0.935903,0.441079,0.827268,0.777535,0.965059,0.678371,0.554862,0.578676,0.635894,0.104651,0.452702,0.243278,0.145886,0.040868,0.177043,0.656516,0.797979,0.308239,0.415837,0.104719,0.246265,0.306015,0.132097,0.344114,0.273115,0.11479,0.343983,0.679175,0.293424,0.464326,0.945421,0.561623,0.869204,0.107097,0.336773,0.434654,0.653184,0.31673,0.747702,0.655495,0.740987,0.675064,0.300681,0.59459,0.706253,0.288041,0.319116,0.328085,0.664984,0.86856,0.393379,0.207827,0.101693,0.919085,0.231723,0.615028,0.954519,0.258851,0.907968,0.048914,0.334774,0.849678,0.118773,0.48519,0.791306,0.567811,0.762657,0.142361,0.659366,0.639535,0.423816,0.11196,0.185692,0.304794,0.329521,0.256652,0.173887,0.174146,0.986461,0.244009,0.880296,0.199305,0.716248,0.0942242,0.177731,0.422238,0.792064,0.831072,0.984979,0.100653,0.084039,0.558991,0.04013,0.830776,0.444137,0.492328,0.427057,0.513062,0.752171,0.98102,0.79451,0.801113,0.345826,0.297767,0.152501,0.0929019,0.175705,0.209783,0.861811,0.439654,0.809937,0.241062,0.946258,0.410177,0.169682,0.407238,0.765212,0.5819,0.108953,0.511739,0.657283,0.545666,0.261353,0.193113,0.450812,0.141194,0.0636379,0.567467,0.223637,0.366053,0.878725,0.676285,0.637756,0.0654583,0.519769,0.9836,0.291023,0.90455,0.882783,0.00530708,0.575138,0.187349,0.165324,0.214612,0.106001,0.57756,0.174156,0.151996,0.0959249,0.804162,0.645267,0.175841,0.264054,0.958773,0.366393,0.916386,0.298273,0.430197,0.0705723,0.595779,0.0610538,0.934345,0.791152,0.982338,0.332933,0.194311,0.657906,0.525658,0.437038,0.415168,0.10429,0.709837,0.502151,0.502721,|0.608294,0.28719,0.686113,0.573566,0.255914,0.1279,0.229831,0.0932189,0.686391,0.824783,0.456497,0.889406,0.273563,0.751869,0.384679,0.981086,0.606325,0.0187058,0.288643,0.298224,0.834368,0.901516,0.819398,0.155158,0.0367489,0.97187,0.388955,0.723946,0.163181,0.897786,0.571254,0.427912,0.489515,0.1809,0.0635071,0.611489,0.933323,0.627643,0.20162,0.980092,0.721107,0.408886,0.469331,0.0849484,0.10859,0.888467,0.752371,0.905428,0.962813,0.585696,0.427922,0.834956,0.451905,0.513848,0.0699956,0.0113328,0.360729,0.665678,0.114976,0.0728174,0.595747,0.670186,0.316216,0.715397,0.5359,0.355314,0.770754,0.341817,0.288952,0.0734476,0.50737,0.0184261,0.702543,0.420668,0.443594,0.378287,0.635123,0.44121,0.0170069,0.94871,0.0136659,0.408483,0.323297,0.923075,0.323671,0.0804778,0.770019,0.0684353,0.0144407,0.173335,0.0970781,0.399846,0.892715,0.278326,0.423349,0.233488,0.503435,0.806762,0.00819546,0.614284,0.478445,0.934927,0.915098,0.964818,0.203705,0.0139545,0.0804473,0.46219,0.204064,0.457621,0.261786,0.195704,0.863119,0.19335,0.247531,0.419105,0.193646,0.938993,0.288662,0.841634,0.277094,0.860443,0.302833,0.187475,0.775913,0.0438644,0.322645,0.519785,0.626395,0.760639,0.215749,0.122097,0.359059,0.917801,0.936587,0.950958,0.45462,0.526258,0.439443,0.626748,0.788056,0.06343,0.402685,0.046701,0.647107,0.0814174,0.791438,0.221714,0.664694,0.650687,0.155772,0.187315,0.489782,0.103879,0.511002,0.715921,0.939246,0.200019,0.795429,0.162999,0.679302,0.666218,0.129833,0.275465,0.999804,0.513681,0.915551,0.0466909,0.830265,0.139527,0.0605251,0.720629,0.663387,0.572856,0.212764,0.845526,0.815364,0.444531,0.75539,0.6858,0.406667,0.745809,0.136561,0.967511,0.212136,0.380696,0.858951,0.744466,0.200658,0.167946,0.410976,0.389984,0.115101,0.128071,0.260574,0.141359,0.964193,0.346683,0.250554,0.722885,0.670251,0.180427,0.327285,0.967417,0.0233173,0.848908,0.386806,0.583848,0.734124,0.0640769,0.616538,0.346638,0.998383,0.66903,0.5884,0.503548,0.567046,0.230528,0.823521,0.0401472,0.337044,0.388426,0.160109,0.516829,0.680773,0.487536,0.304334,0.789144,0.251413,0.944315,0.45904,0.051865,0.856555,0.699038,0.359912,0.942347,0.551691,0.923145,0.316856,0.265942,0.400411,0.47654,0.673143,0.767995,0.0363199,0.287382,0.685096,0.587836,0.913418,0.181602,0.286308,0.825981,0.970407,0.937816,0.692348,0.431455,0.715067,0.233418,0.79795,0.0483533,0.524596,0.142938,0.435578,0.129696,0.480535,0.845808,0.766259,0.548233,0.586515,0.24513,0.206455,0.489752,0.11875,0.951805,0.185358,0.179752,0.466059,0.375678,0.071623,0.629603,0.369047,0.311756,0.479319,0.499758,0.102979,0.652412,0.916487,0.355434,0.0165881,0.798311,0.711929,0.927118,0.69533,0.0103016,0.951385,0.634224,0.462367,0.474423,0.498006,0.975969,0.0692785,0.214064,0.285359,0.676355,0.628775,0.863327,0.558752,0.65209,0.305555,0.29721,0.489888,0.391306,0.191231,0.475823,0.220622,0.406076,0.0348026,0.849782,0.960366,0.733649,0.389483,0.217818,0.616749,0.525088,0.0496916,0.860541,0.870825,0.0752909,0.315695,0.651661,0.381002,0.283164,0.524591,0.581311,0.464091,0.779518,0.583626,0.384517,0.600891,0.823847,0.0433406,0.873842,0.0614902,0.647941,0.433449,0.351043,0.401461,0.338711,0.842036,0.897366,0.954856,0.316179,0.566681,0.464363,0.368207,0.730201,4.82798e-05,0.148861,0.226564,0.418896,0.166264,0.536975,0.696337,0.957953,0.897473,0.181391,0.564537,0.415223,0.312566,0.374622,0.661529,0.61022,0.466613,0.885472,0.237789,0.452936,0.962102,0.694412,0.531175,0.279062,0.849906,0.85365,0.0279896,0.232141,0.166118,0.0782309,0.638794,0.352801,0.212621,0.260149,0.11557,0.470098,0.424032,0.687459,0.618665,0.88764,0.471467,0.828558,0.83861,0.618299,0.765644,0.115229,0.14775,0.565525,0.0456973,0.839727,0.667222,0.0501938,0.505956,0.38625,0.916768,0.211634,0.298431,0.0508688,0.363584,0.619347,0.189232,0.388518,0.470134,0.363063,0.362258,0.337374,0.267777,0.583021,0.503184,0.144099,0.880956,0.343063,0.240544,0.179998,0.671761,0.804268,0.467103,0.0441946,0.157802,0.689694,0.792637,0.892175,0.288996,0.286175,0.368715,0.69284,0.24794,0.705742,0.918908,0.659074,0.525476,0.90913,0.31563,0.813012,0.50575,0.123004,0.763696,0.336503,0.876921,0.0855634,0.55368,0.770485,0.347275,0.827811,0.78479,0.270481,0.826424,0.697753,0.365778,0.0507587,0.326654,0.455055,0.426137,0.559597,0.56571,0.755077,0.185627,0.638846,0.0841614,0.430982,0.346239,0.802574,0.411353,0.161553,0.348957,0.920059,0.0730746,0.992595,0.0712566,0.606578,0.311325,0.32673,0.633429,0.786463,0.921496,0.591542,0.594783,0.405994,0.380801,0.401848,0.62726,0.479426,0.886623,0.559179,0.856312,0.563771,0.172607,0.221251,0.439565,0.581503,0.0198357,0.0736821,0.845516,0.276892,0.590741,0.143029,0.114043,0.898159,0.958029,0.107504,0.727399,0.000987649,0.158698,0.327468,0.577384,0.806708,0.493849,0.920414,0.462696,0.720565,0.72972,0.0296469,0.954782,0.028003,0.725108,0.1252,0.225479,0.267583,0.0170422,0.40339,0.228783,0.790112,0.0958267,0.607502,0.0673242,0.0594302,0.135881,0.872692,0.398421,0.177387,0.379533,0.152938,0.0350393,0.310132,0.218059,0.969976,0.922754,0.315312,0.411273,0.549809,0.387618,0.881326,0.129969,0.794977,0.657027,0.0196568,0.584952,0.565267,0.607275,0.112139,0.184192,0.289383,0.182506,0.548742,0.145883,0.617424,0.714853,0.183626,0.0695891,0.660554,0.416933,0.339397,0.685549,0.454363,0.440457,0.170203,0.187584,0.236631,0.629607,0.592035,0.740945,0.33856,0.744099,0.800805,0.647781,0.233594,0.16144,0.340913,0.308911,0.0666465,0.718761,0.456683,0.602755,0.113777,0.890275,0.580982,0.560948,0.993629,0.0186939,0.0158175,0.858213,0.245053,0.13481,0.813415,0.587322,0.034296,0.07594,0.056881,0.234541,0.636495,0.670014,0.7606,0.527236,0.527774,0.862073,0.565753,0.829005,0.729472,0.799548,0.874972,0.940831,0.967649,0.94248,0.173937,0.385267,0.377209,0.542034,0.456004,0.431563,0.0460678,0.16955,0.610548,0.779966,0.293325,0.617487,0.291812,0.244865,0.0405633,0.193649,0.404715,0.457803,0.636325,0.73804,0.570121,0.177134,0.0189133,0.145371,0.0800722,0.625799,0.673252,0.625223,0.514553,0.160926,0.71518,0.318654,0.628933,0.816965,0.881172,0.433829,0.992343,0.832584,0.211488,0.29359,0.474667,0.527939,0.144804,0.285986,0.711098,0.53015,0.761157,0.790962,0.774802,0.599485,0.61153,0.313715,0.377751,0.625374,0.133697,0.801541,0.910966,0.0538064,0.0112794,0.504038,0.363042,0.303573,0.256968,0.186165,0.541461,0.264668,0.673184,0.238902,0.553928,0.406583,0.488788,0.581816,0.823218,0.744745,0.647526,0.0854701,0.918754,0.92506,0.287961,0.446913,0.500362,0.0273817,0.0625562,0.185054,0.230346,0.500785,0.883773,0.665771,0.00641227,0.333493,0.250236,0.971231,0.887555,0.257381,0.815939,0.740388,0.24445,0.418754,0.656011,0.849322,0.394589,0.455344,0.579743,0.117038,0.594904,0.643904,0.0636671,0.103102,0.509988,0.917413,0.598785,0.562257,0.0296739,0.378655,0.0113599,0.171139,0.0916401,0.047147,0.522648,0.956117,0.435655,0.0715995,0.599652,0.121913,0.891797,0.693816,0.428391,0.188293,0.469698,0.598005,0.482389,0.409235,0.592695,0.880529,0.240929,0.369439,0.181858,0.993496,0.442179,0.396186,0.775324,0.0680726,0.199787,0.422687,0.00251675,0.379574,0.16324,0.206781,0.194932,0.218417,0.0322614,0.216966,0.541165,0.878217,0.660849,0.455161,0.772996,0.776082,0.562366,0.195218,0.18755,0.148194,0.244443,0.605005,0.0193552,0.755587,0.252295,0.0919289,0.907405,0.114845,0.791938,0.555244,0.205224,0.996012,0.217887,0.109887,0.0124153,0.418929,0.0539284,0.393352,0.15958,0.850235,0.3078,0.0136066,0.362545,0.755728,0.188445,0.242738,0.76611,0.124898,0.952296,0.234294,0.044929,0.680069,0.389206,0.374848,0.603153,0.907846,0.925074,0.863697,0.350771,0.810472,0.875136,0.8617,0.420353,0.00727385,0.818167,0.489018,0.992626,0.888096,0.257537,0.791001,0.477966,0.0210795,0.957204,0.0564551,0.874653,0.678365,0.0788901,0.0247726,0.47767,0.108545,0.00671238,0.20911,0.89356,0.940876,0.996545,0.520452,0.39201,0.876412,0.265558,0.0852519,0.316343,0.442091,0.578923,0.395565,0.0249754,0.674309,0.993054,0.0560317,0.169296,0.183708,0.69244,0.801493,0.167968,0.177507,0.091594,0.186078,0.89793,0.668669,0.165931,0.912063,0.405728,0.787931,0.533592,0.746467,0.505915,0.299558,0.232768,0.0750891,0.233828,0.751777,0.921836,0.506509,0.658513,0.941823,0.92464,0.321678,0.329992,0.323887,0.0819776,0.540178,0.253103,0.810436,0.377908,0.517726,0.319252,0.214254,0.268409,0.913337,0.921048,0.291112,0.158327,0.293309,0.542538,0.341271,0.247299,0.372441,0.714335,0.896044,0.976517,0.758493,0.62426,0.222177,0.4727,0.810159,0.778472,0.525837,0.930233,0.727494,0.0907514,0.935804,0.556261,0.375569,0.914237,0.33084,0.474373,0.354849,0.935495,0.37646,0.853723,0.830071,0.102028,0.96464,0.204925,0.948814,0.953142,0.950658,0.755083,0.521218,0.872945,0.169919,0.727185,0.268211,0.311852,0.835098,0.183455,0.84745,0.497666,0.476234,0.748234,0.0902831,0.83361,0.185314,0.436662,0.192104,0.376895,0.487194,0.565497,0.974778,0.393083,0.464673,0.629491,0.803568,0.407565,0.290183,0.178306,0.836879,0.731942,0.806332,0.908997,0.854627,0.579335,0.248985,0.0929427,0.613363,0.990535,0.19921,0.532371,0.0232652,0.321962,0.817084,0.536058,0.0691719,0.0526575,0.631048,0.0115881,0.567145,0.244472,0.0401298,0.720304,|0.554764,0.141835,0.978542,0.899988,0.219733,0.949336,0.0638304,0.461145,0.642322,0.865478,0.869782,0.965994,0.933865,0.260306,0.207781,0.289763,0.866624,0.637934,0.494225,0.909131,0.982674,0.810003,0.942984,0.504913,0.776124,0.41356,0.796848,0.466179,0.552436,0.758157,0.815055,0.406405,0.0169558,0.837536,0.900706,0.680991,0.16297,0.859606,0.842403,0.354609,0.74791,0.735209,0.604919,0.202135,0.0368635,0.974801,0.341196,0.32874,0.996566,0.796245,0.604706,0.543693,0.461275,0.938169,0.678045,0.627891,0.253402,0.662345,0.0454968,0.952531,0.54372,0.633122,0.130098,0.606271,0.309812,0.0500003,0.763829,0.563943,0.898906,0.679163,0.659899,0.0820955,0.186534,0.855619,0.0443006,0.410479,0.488107,0.865621,0.005216,0.543147,0.361388,0.452488,0.77432,0.702239,0.554677,0.058717,0.845232,0.0374734,0.657146,0.96813,0.209729,0.877333,0.342247,0.451679,0.124125,0.687888,0.200532,0.588655,0.28325,0.21513,0.528607,0.900061,0.679236,0.881288,0.678155,0.0163398,0.737028,0.438406,0.293762,0.577603,0.80144,0.92106,0.259438,0.7149,0.0833448,0.145772,0.106913,0.288451,0.187833,0.0387685,0.00228518,0.221282,0.203336,0.327179,0.724372,0.895143,0.82408,0.79423,0.296152,0.0580951,0.0879623,0.958697,0.458529,0.789503,0.165084,0.430229,0.882121,0.436227,0.112923,0.0838573,0.753516,0.0329468,0.965497,0.778923,0.491444,0.0594228,0.0647703,0.177454,0.168233,0.0349795,0.841065,0.827606,0.673858,0.479313,0.700612,0.765497,0.683025,0.0672621,0.970208,0.751222,0.980329,0.12548,0.940322,0.285687,0.0014084,0.993648,0.259836,0.272575,0.371537,0.109512,0.16518,0.702854,0.114709,0.452951,0.734916,0.608771,0.100209,0.138549,0.546101,0.91931,0.24019,0.510486,0.972681,0.450019,0.558141,0.900002,0.952448,0.153748,0.798636,0.0958817,0.642019,0.698485,0.594229,0.458198,0.988143,0.658297,0.176284,0.0103408,0.262438,0.21091,0.986272,0.145607,0.908492,0.593273,0.160336,0.0547313,0.63926,0.70667,0.611583,0.740656,0.662862,0.0748742,0.50477,0.4165,0.0123729,0.616181,0.400508,0.988485,0.172713,0.735163,0.606525,0.490764,0.0950152,0.171562,0.128121,0.971747,0.935462,0.892284,0.409699,0.419342,0.470301,0.742735,0.242471,0.024646,0.946444,0.586474,0.979915,0.0262515,0.847866,0.960339,0.886819,0.540033,0.479226,0.793097,0.34025,0.805973,0.024823,0.551817,0.67787,0.959337,0.860532,0.393208,0.394839,0.883051,0.436467,0.869243,0.0265061,0.897335,0.0405456,0.977442,0.740148,0.91563,0.594736,0.85029,0.0722194,0.137471,0.526406,0.622284,0.201262,0.439993,0.746844,0.106008,0.188913,0.192482,0.758592,0.590985,0.383362,0.327597,0.00202239,0.804622,0.345244,0.139219,0.137918,0.682418,0.612222,0.303095,0.652477,0.170281,0.926975,0.160683,0.338475,0.43754,0.814695,0.692626,0.663771,0.586139,0.140077,0.775881,0.85527,0.377566,0.572929,0.453082,0.0910631,0.187455,0.222436,0.978465,0.635284,0.776778,0.744946,0.699413,0.725945,0.852641,0.321541,0.874758,0.805521,0.444397,0.276724,0.15463,0.631343,0.507056,0.826548,0.803869,0.462102,0.930742,0.194768,0.889216,0.988749,0.249212,0.233467,0.0237067,0.524892,0.60954,0.479217,0.0885838,0.805572,0.00679141,0.618934,0.287724,0.159295,0.68821,0.334121,0.954564,0.0570884,0.199879,0.885366,0.0136368,0.26898,0.434931,0.877654,0.01941,0.602246,0.0290299,0.228183,0.239465,0.293957,0.0847227,0.237896,0.439031,0.235955,0.516093,0.756968,0.370876,0.415109,0.168879,0.202424,0.962585,0.787601,0.455495,0.942473,0.932,0.848859,0.0629813,0.184098,0.209452,0.637168,0.558017,0.286839,0.73449,0.22709,0.521787,0.498817,0.739755,0.104745,0.242373,0.483433,0.082461,0.158713,0.913519,0.524163,0.211123,0.325864,0.239939,0.904105,0.497748,0.705222,0.0237395,0.150021,0.712899,0.936307,0.705018,0.456264,0.0611073,0.324308,0.0701791,0.842385,0.689365,0.0951256,0.637396,0.469516,0.306965,0.891368,0.0358728,0.127329,0.432152,0.294518,0.697118,0.0451452,0.297604,0.818619,0.645974,0.157913,0.0881985,0.139341,0.763643,0.345554,0.418551,0.42629,0.546657,0.758838,0.932986,0.564778,0.725165,0.959251,0.908515,0.615771,0.127983,0.894485,0.107462,0.382556,0.707162,0.801648,0.0298005,0.661913,0.0474137,0.615036,0.831303,0.555622,0.931607,0.504059,0.544661,0.114645,0.91699,0.568435,0.953011,0.445057,0.665871,0.354803,0.851643,0.953745,0.985155,0.554769,0.0029791,0.119609,0.0407581,0.601987,0.356782,0.982728,0.273447,0.494378,0.404556,0.731862,0.174835,0.794821,0.767873,0.275403,0.899932,0.637669,0.530556,0.302859,0.0813581,0.459597,0.325951,0.869678,0.164751,0.74219,0.0853969,0.642429,0.689266,0.76339,0.203537,0.526444,0.894377,0.827465,0.0752251,0.894405,0.247394,0.485996,0.545447,0.0289138,0.468401,0.440826,0.793681,0.872735,0.565753,0.187048,0.413758,0.0586098,0.568791,0.220117,0.0972919,0.743014,0.582802,0.867107,0.719048,0.894687,0.169032,0.465733,0.369681,0.961442,0.20672,0.552305,0.033308,0.420746,0.0254169,0.632925,0.751794,0.767163,0.0826897,0.883817,0.925762,0.1372,0.930988,0.615055,0.896367,0.28517,0.519735,0.449773,0.489293,0.411212,0.703982,0.50323,0.862735,0.745657,0.622405,0.183047,0.50767,0.426116,0.569836,0.292131,0.731362,0.427043,0.0773863,0.19171,0.441939,0.822225,0.662859,0.4295,0.718515,0.595751,0.712939,0.786608,0.306427,0.324393,0.343594,0.564812,0.146925,0.727285,0.172512,0.464904,0.0510131,0.909805,0.752941,0.956257,0.384335,0.728999,0.749787,0.289696,0.635769,0.776071,0.902363,0.726244,0.855142,0.819807,0.796245,0.482708,0.692795,0.703881,0.59472,0.328298,0.0852634,0.295512,0.356202,0.615994,0.190359,0.804138,0.435879,0.450957,0.573613,0.387832,0.101856,0.465465,0.300607,0.958454,0.616879,0.839248,0.191288,0.824732,0.717446,0.515357,0.366654,0.863034,0.592756,0.993157,0.419206,0.102056,0.748461,0.40746,0.88105,0.195838,0.260252,0.59698,0.754554,0.997349,0.344917,0.391436,0.329193,0.817854,0.567327,0.823294,0.0340948,0.287185,0.712064,0.678085,0.912957,0.896202,0.677716,0.562584,0.0869993,0.933857,0.0643799,0.636884,0.578002,0.688231,0.925161,0.795382,0.938303,0.355263,0.374241,0.333184,0.718635,0.197562,0.231921,0.697037,0.785761,0.0338564,0.332302,0.174845,0.872603,0.168058,0.191497,0.908107,0.710222,0.471543,0.0046429,0.179864,0.778689,0.698636,0.753322,0.699894,0.320085,0.410642,0.441884,0.163655,0.44597,0.431787,0.331216,0.956792,0.0379155,0.661675,0.230544,0.878984,0.256915,0.756042,0.796463,0.777631,0.212599,0.0217866,0.9116,0.976444,0.427482,0.833899,0.95286,0.337673,0.86609,0.805449,0.623282,0.380476,0.640962,0.468344,0.764978,0.0788208,0.592713,0.863372,0.516005,0.234836,0.695359,0.395528,0.833701,0.957404,0.248956,0.60962,0.791243,0.309677,0.00702512,0.193152,0.442113,0.289414,0.00871485,0.553547,0.0544955,0.787118,0.703766,0.268312,0.148286,0.799031,0.853078,0.617227,0.221694,0.648818,0.349876,0.576419,0.100614,0.889151,0.0767612,0.105207,0.770434,0.238356,0.442953,0.90473,0.446492,0.42239,0.0627334,0.919264,0.710349,0.0800684,0.525304,0.315304,0.830671,0.66517,0.33948,0.672066,0.469238,0.764342,0.918762,0.19121,0.65413,0.244019,0.34444,0.592695,0.221235,0.394867,0.357422,0.85623,0.377065,0.626194,0.729037,0.0528371,0.266935,0.834923,0.315292,0.243198,0.343893,0.94609,0.293033,0.821862,0.162685,0.811665,0.779127,0.544598,0.175867,0.571994,0.231639,0.744014,0.345653,0.844148,0.0587413,0.409477,0.422604,0.6055,0.656734,0.246854,0.776075,0.475812,0.991398,0.143132,0.667044,0.817716,0.168513,0.399425,0.393809,0.00319564,0.696019,0.561008,0.0447499,0.280916,0.540616,0.461951,0.383243,0.326171,0.219437,0.026093,0.942531,0.804112,0.870874,0.631018,0.0268898,0.578923,0.142966,0.934463,0.174437,0.586874,0.989245,0.148425,0.214599,0.140015,0.902725,0.156956,0.950628,0.158505,0.447391,0.033657,0.745912,0.10852,0.834718,0.40742,0.139592,0.689773,0.485498,0.156042,0.940817,0.276936,0.840492,0.252511,0.456233,0.0326449,0.422151,0.488607,0.261593,0.0702674,0.340586,0.760169,0.71497,0.118227,0.885537,0.153455,0.892368,0.171849,0.0600677,0.781252,0.114864,0.301942,0.358193,0.462468,0.646586,0.746067,0.307777,0.253033,0.425268,0.488872,0.875389,0.383281,0.00413728,0.280023,0.427946,0.0926273,0.185103,0.309646,0.0578635,0.528575,0.967245,0.610289,0.495165,0.434256,0.396271,0.0221391,0.74413,0.241312,0.573913,0.0824068,0.510579,0.761238,0.828273,0.394143,0.0578545,0.0269252,0.888619,0.049888,0.782314,0.563664,0.745677,0.972615,0.746081,0.148292,0.509535,0.318851,0.648268,0.552674,0.118225,0.236121,0.578217,0.104518,0.0250108,0.914249,0.890391,0.00664979,0.321234,0.962323,0.286795,0.247644,0.218201,0.882468,0.406397,0.457917,0.110063,0.841431,0.548044,0.736741,0.762763,0.153325,0.134743,0.22502,0.215265,0.250408,0.426752,0.367051,0.0981298,0.917605,0.843773,0.818186,0.543243,0.936844,0.38022,0.589539,0.814427,0.263096,0.420769,0.522112,0.0988612,0.674562,0.953984,0.239992,0.483584,0.152801,0.0469353,0.864245,0.511804,0.474729,0.654571,0.207499,0.3298,0.276398,0.491777,0.150508,0.594443,0.187587,0.750254,0.649622,0.605969,0.716559,0.0351611,0.0941361,0.314033,0.0505252,0.061487,0.992402,0.173375,0.36413,0.00642818,0.711969,0.966072,0.540543,0.743065,0.374089,0.137211,0.153225,0.789124,0.893039,0.808387,0.754611,0.149429,0.514815,0.579519,0.0315736,0.427297,0.06995,0.316269,0.999727,0.0323544,0.706055,0.601334,|0.349897,0.496236,0.100088,0.361235,0.293439,0.798431,0.513168,0.816269,0.938567,0.24639,0.900284,0.937592,0.763408,0.17267,0.83248,0.141833,0.956583,0.391363,0.612956,0.000356019,0.135307,0.891556,0.488728,0.150461,0.230836,0.244576,0.428335,0.40495,0.822804,0.294128,0.439764,0.675949,0.836668,0.149308,0.836073,0.102346,0.627888,0.23033,0.759051,0.786454,0.292826,0.0296019,0.516845,0.426609,0.53241,0.575285,0.896848,0.343481,0.543991,0.10734,0.625014,0.564795,0.936859,0.350415,0.474546,0.538404,0.806824,0.594956,0.84176,0.412547,0.743782,0.0736431,0.906364,0.425574,0.0489696,0.216061,0.979324,0.064334,0.231097,0.656884,0.673628,0.592404,0.972427,0.413706,0.105331,0.136228,0.108603,0.463806,0.515835,0.945683,0.79875,0.81008,0.970144,0.722363,0.0306288,0.618738,0.959638,0.434791,0.754331,0.710568,0.545049,0.387058,0.818851,0.101342,0.487857,0.39052,0.213272,0.782943,0.730494,0.925348,0.534841,0.439503,0.472109,0.16963,0.96253,0.455225,0.106414,0.413601,0.401822,0.526983,0.348303,0.87432,0.947375,0.266114,0.211544,0.0231214,0.56607,0.418273,0.686156,0.566975,0.78604,0.560421,0.0210955,0.661689,0.0785406,0.884317,0.129676,0.88463,0.888308,0.0935095,0.0850739,0.650737,0.0443009,0.517561,0.823193,0.282832,0.306379,0.931537,0.676586,0.0544312,0.443539,0.261455,0.411864,0.128743,0.781029,0.700147,0.288419,0.599589,0.857518,0.490714,0.950279,0.203957,0.157797,0.000888705,0.624348,0.331448,0.341366,0.97715,0.652234,0.378196,0.310077,0.863003,0.0459189,0.0637053,0.0617638,0.422691,0.854873,0.876259,0.195787,0.410434,0.151864,0.644372,0.139486,0.36698,0.805326,0.658085,0.247406,0.0205333,0.728895,0.956395,0.473319,0.56457,0.456064,0.455078,0.960052,0.461811,0.0657706,0.895683,0.767886,0.363232,0.330356,0.102949,0.740665,0.61543,0.470012,0.603953,0.535174,0.633059,0.441604,0.368846,0.052583,0.840267,0.777476,0.880024,0.0716845,0.134248,0.0261442,0.826262,0.529646,0.312495,0.038989,0.00565457,0.448182,0.505123,0.438638,0.784192,0.102252,0.0319282,0.503018,0.77428,0.333425,0.90809,0.867567,0.910767,0.260052,0.138813,0.319154,0.605909,0.47091,0.927156,0.331204,0.482235,0.130339,0.750922,0.856628,0.69231,0.550103,0.174869,0.358073,0.373422,0.694917,0.547525,0.506278,0.90822,0.00783348,0.668809,0.575188,0.392716,0.475559,0.926998,0.808444,0.466542,0.0765568,0.984339,0.20976,0.847355,0.620603,0.621016,0.647589,0.934384,0.638249,0.0884042,0.112428,0.555875,0.705959,0.376684,0.0625573,0.953267,0.58062,0.501746,0.44814,0.47112,0.107188,0.77395,0.692193,0.0672358,0.526319,0.302219,0.496015,0.482233,0.936803,0.566532,0.54983,0.671402,0.601618,0.220529,0.631603,0.0351725,0.316071,0.702673,0.85284,0.595481,0.115065,0.665899,0.290875,0.602722,0.0301449,0.782763,0.220924,0.925771,0.879031,0.537155,0.142271,0.740084,0.265568,0.740413,0.867866,0.514306,0.444256,0.608049,0.86759,0.62199,0.475114,0.215925,0.793345,0.0609918,0.0984452,0.655273,0.924196,0.583638,0.61801,0.616472,0.703421,0.308631,0.375575,0.132202,0.0282413,0.845506,0.706585,0.153294,0.852137,0.197507,0.604796,0.880303,0.498402,0.631184,0.991299,0.450744,0.573924,0.873289,0.0950889,0.665258,0.694793,0.355947,0.908166,0.130017,0.492991,0.409211,0.572202,0.262195,0.825406,0.669546,0.0791243,0.298127,0.57376,0.238043,0.594314,0.835631,0.235388,0.578941,0.721638,0.602638,0.697731,0.93017,0.693931,0.805578,0.455076,0.600227,0.681474,0.257268,0.341585,0.572544,0.562231,0.673834,0.154617,0.342191,0.162819,0.297565,0.199899,0.714616,0.280754,0.138075,0.41097,0.0149603,0.841875,0.0631693,0.864148,0.420287,0.13058,0.650159,0.355182,0.345499,0.890074,0.660277,0.649648,0.488317,0.849741,0.385526,0.86945,0.124887,0.799566,0.526365,0.0807413,0.655076,0.194964,0.928374,0.64695,0.526896,0.744266,0.160703,0.430165,0.0724775,0.698803,0.829879,0.175993,0.931217,0.907658,0.763611,0.134648,0.103618,0.20604,0.963165,0.785047,0.311995,0.383998,0.0964921,0.126402,0.0297548,0.961745,0.326711,0.286075,0.510735,0.954896,0.411733,0.21825,0.985445,0.348446,0.607285,0.865847,0.577266,0.639777,0.823792,0.909427,0.225618,0.490649,0.67194,0.467813,0.0613267,0.934429,0.577941,0.968387,0.582924,0.779451,0.120012,0.337161,0.852737,0.704868,0.070595,0.777745,0.284845,0.449846,0.697799,0.447405,0.114492,0.222283,0.99327,0.0519884,0.00835627,0.934857,0.0710568,0.491973,0.454801,0.110256,0.522548,0.783344,0.753783,0.2691,0.211485,0.315501,0.020037,0.881089,0.0704841,0.36306,0.346446,0.434388,0.764762,0.944752,0.0587073,0.971589,0.771023,0.741287,0.318665,0.905359,0.674053,0.689347,0.860392,0.24078,0.383372,0.622921,0.0223159,0.0424039,0.79301,0.643009,0.375378,0.0494294,0.0590283,0.945626,0.701232,0.546576,0.0238416,0.0706463,0.737987,0.913523,0.262793,0.434103,0.121846,0.855193,0.084331,0.352354,0.0937111,0.609154,0.257944,0.814556,0.47686,0.923451,0.779904,0.0971778,0.298481,0.157013,0.337205,0.208294,0.47119,0.124582,0.295465,0.0475863,0.569629,0.46959,0.978247,0.613661,0.544851,0.744202,0.786996,0.588434,0.814226,0.900107,0.434316,0.815979,0.571289,0.964968,0.996416,0.107277,0.885071,0.950708,0.314803,0.176677,0.912568,0.142154,0.454355,0.478536,0.472766,0.731797,0.0136698,0.413998,0.670152,0.439443,0.946354,0.899627,0.00549245,0.86099,0.602988,0.444885,0.319526,0.660031,0.205638,0.511083,0.619342,0.0938307,0.666278,0.135979,0.905257,0.804625,0.841941,0.0481362,0.235018,0.900004,0.558043,0.10206,0.258886,0.497391,0.414111,0.390509,0.58597,0.275306,0.33501,0.906016,0.0402598,0.63939,0.693196,0.861356,0.734357,0.697667,0.766771,0.0259474,0.654895,0.215759,0.925876,0.581131,0.0197635,0.845458,0.264618,0.205861,0.238149,0.96662,0.963107,0.1885,0.853986,0.914184,0.555798,0.93821,0.151035,0.260402,0.307055,0.588778,0.128514,0.295745,0.753409,0.0261064,0.0804452,0.920684,0.142546,0.80828,0.169369,0.231434,0.901586,0.330531,0.929372,0.178172,0.263482,0.850719,0.054686,0.760422,0.561978,0.40079,0.280706,0.747229,0.403861,0.945715,0.519771,0.991203,0.857202,0.0686126,0.615027,0.649846,0.407109,0.671434,0.680158,0.729917,0.0989637,0.434278,0.350281,0.365444,0.21381,0.153544,0.368609,0.33119,0.526499,0.174975,0.496645,0.595315,0.903504,0.177391,0.623964,0.393725,0.933251,0.405598,0.856023,0.539156,0.84542,0.102269,0.507816,0.301734,0.877957,0.531965,0.277066,0.519296,0.471193,0.330856,0.572608,0.51243,0.993554,0.603396,0.147201,0.506536,0.130392,0.41237,0.97612,0.710138,0.22543,0.357463,0.796201,0.836594,0.176081,0.369911,0.175957,0.439671,0.0969412,0.596009,0.217494,0.0806635,0.681401,0.263162,0.149694,0.75313,0.269211,0.947874,0.748379,0.777449,0.758583,0.566625,0.11586,0.550977,0.881877,0.458482,0.623834,0.888777,0.183472,0.878546,0.395042,0.56735,0.578538,0.082617,0.0515819,0.373687,0.502947,0.977564,0.79567,0.688719,0.665146,0.792664,0.641718,0.945507,0.986156,0.972331,0.220638,0.931874,0.166104,0.701647,0.86245,0.153554,0.65205,0.906312,0.35874,0.933744,0.378846,0.885535,0.000789762,0.311982,0.0957535,0.536737,0.595325,0.443411,0.950805,0.025479,0.224083,0.998601,0.515918,0.597885,0.680616,0.922293,0.354354,0.862069,0.127398,0.437551,0.234625,0.210122,0.413694,0.575195,0.0545837,0.854575,0.116567,0.273046,0.274839,0.445362,0.661608,0.426483,0.565401,0.590666,0.0469647,0.266963,0.991163,0.0385049,0.923026,0.303235,0.745158,0.0597342,0.50739,0.634633,0.0678353,0.326398,0.949516,0.355718,0.357657,0.417535,0.96178,0.405561,0.901033,0.135901,0.955863,0.627125,0.100288,0.397465,0.213063,0.931149,0.990629,0.664915,0.425959,0.546241,0.318098,0.0103431,0.505336,0.619481,0.473684,0.208596,0.278772,0.466984,0.201618,0.341324,0.72555,0.761179,0.601399,0.607515,0.167294,0.0225982,0.657615,0.769987,0.650295,0.796054,0.0477239,0.583716,0.53367,0.464342,0.73856,0.791889,0.45883,0.268259,0.742774,0.801795,0.76334,0.0339745,0.312835,0.285627,0.268735,0.740865,0.852683,0.0756665,0.863309,0.791624,0.0028019,0.80493,0.464261,0.00328553,0.860921,0.23947,0.815766,0.486844,0.929846,0.711284,0.166934,0.552727,0.782632,0.47571,0.262398,0.973444,0.812769,0.681123,0.102373,0.228106,0.113776,0.0532086,0.744372,0.918897,0.307973,0.041031,0.660567,0.0198042,0.589398,0.732637,0.53656,0.960569,0.475281,0.103874,0.416869,0.713784,0.0880114,0.437912,0.806173,0.948603,0.217696,0.667688,0.815792,0.378306,0.16571,0.934274,0.409566,0.774811,0.832952,0.414931,0.28038,0.257541,0.285406,0.995602,0.917961,0.809417,0.215951,0.949148,0.908752,0.743096,0.344973,0.533645,0.310692,0.235869,0.462563,0.662112,0.218646,0.976368,0.404287,0.719746,0.746382,0.745632,0.797114,0.574834,0.390856,0.573168,0.364166,0.329609,0.14286,0.654495,0.281027,0.489646,0.493869,0.399273,0.374031,0.338583,0.627302,0.559843,0.35099,0.260285,0.55196,0.982817,0.440474,0.218072,0.0545926,0.318827,0.840751,0.408139,0.31789,0.299471,0.356024,0.0890394,0.61509,0.704459,0.0173233,0.0114631,0.958535,0.312793,0.646217,0.263176,0.132215,0.546919,0.0908435,0.45473,0.840521,0.278919,0.561626,0.988311,0.531614,0.785614,0.365519,0.17607,0.313348,0.481918,0.451792,0.80818,0.189301,0.867668,0.797502,0.184131,0.568137,0.371484,0.755008,0.921644,0.211345,0.893089,0.963695,0.912497,0.38703,0.389427,0.773714,0.782535,0.262916,|0.891272,0.201116,0.320345,0.934973,0.230271,0.563028,0.324522,0.890421,0.203387,0.126181,0.206387,0.639893,0.560288,0.631562,0.823071,0.344513,0.988849,0.926609,0.196921,0.531384,0.492824,0.954285,0.750889,0.922877,0.935591,0.267897,0.539435,0.314211,0.576587,0.681089,0.726245,0.0752663,0.188131,0.38112,0.44913,0.0628148,0.780271,0.901089,0.332429,0.8044,0.397845,0.983021,0.285262,0.533723,0.880934,0.810308,0.189846,0.109989,0.705464,0.844352,0.544107,0.34211,0.351234,0.978142,0.584261,0.437374,0.143779,0.984232,0.777111,0.868655,0.275729,0.162767,0.299438,0.299511,0.806057,0.460191,0.581531,0.779923,0.949974,0.636447,0.518004,0.165298,0.338913,0.563403,0.992323,0.362556,0.415511,0.945195,0.357431,0.145774,0.330671,0.0870007,0.0543767,0.880558,0.28576,0.984604,0.677895,0.436554,0.713605,0.536726,0.184017,0.52253,0.77571,0.148766,0.425918,0.00139546,0.510775,0.259781,0.529019,0.275628,0.167361,0.509,0.385889,0.848649,0.798364,0.875307,0.440107,0.365663,0.285023,0.299278,0.0991021,0.263565,0.544664,0.961779,0.436752,0.369486,0.0649121,0.0279673,0.302938,0.381915,0.438197,0.56667,0.400775,0.620517,0.972715,0.613842,0.37383,0.603997,0.374549,0.70666,0.905201,0.583946,0.971844,0.0142269,0.558376,0.973967,0.0711646,0.400226,0.761759,0.563746,0.0431326,0.024089,0.874586,0.698186,0.41342,0.262371,0.772101,0.856498,0.17376,0.301567,0.148302,0.113494,0.982784,0.275648,0.0740321,0.377461,0.571555,0.970138,0.815123,0.949999,0.812159,0.765757,0.874142,0.868748,0.487921,0.372222,0.29909,0.0688905,0.269493,0.501892,0.534725,0.763239,0.0230084,0.721361,0.796691,0.637837,0.482103,0.705718,0.284493,0.299739,0.023637,0.115255,0.243344,0.305067,0.936552,0.787813,0.0104844,0.132247,0.204546,0.534098,0.769561,0.941194,0.184453,0.865541,0.897265,0.729527,0.4041,0.943725,0.471213,0.358039,0.375805,0.974113,0.691712,0.579433,0.928827,0.447843,0.473013,0.381554,0.185573,0.824509,0.609054,0.14309,0.749404,0.925187,0.419911,0.440874,0.632855,0.983995,0.496989,0.577989,0.638788,0.0174508,0.18429,0.526718,0.826629,0.527978,0.860143,0.49372,0.336548,0.350452,0.293833,0.205881,0.11503,0.227205,0.955547,0.898088,0.716633,0.250679,0.0466117,0.669769,0.645884,0.104475,0.0313526,0.187093,0.390552,0.15707,0.831733,0.296951,0.0991154,0.352025,0.354226,0.99942,0.340292,0.994628,0.705369,0.695916,0.108241,0.434697,0.115287,0.231402,0.547994,0.0805516,0.174258,0.531307,0.00371742,0.458204,0.363335,0.205202,0.682944,0.903031,0.293531,0.0835686,0.526349,0.885226,0.76416,0.179903,0.111757,0.0504572,0.878302,0.401626,0.125944,0.231,0.665207,0.997006,0.619747,0.0273237,0.913672,0.89226,0.0583387,0.844854,0.143399,0.266506,0.115483,0.839423,0.745114,0.622085,0.943764,0.21518,0.0434747,0.141551,0.989023,0.259237,0.994523,0.883718,0.39343,0.882666,0.424637,0.245407,0.544239,0.479068,0.059625,0.609469,0.727877,0.663089,0.292205,0.0374709,0.627467,0.933939,0.67948,0.313559,0.629265,0.438348,0.859136,0.1844,0.944692,0.0614458,0.0261211,0.127369,0.248121,0.515055,0.825552,0.0876827,0.96847,0.325809,0.952336,0.545172,0.259307,0.482193,0.32961,0.958664,0.430465,0.721916,0.601171,0.16568,0.761094,0.102018,0.990192,0.339582,0.087369,0.238651,0.971123,0.156831,0.29105,0.938151,0.461469,0.90111,0.249696,0.382742,0.194779,0.298328,0.567145,0.779625,0.326893,0.561682,0.644432,0.278935,0.285114,0.709586,0.197239,0.352865,0.687579,0.0837043,0.000669062,0.144076,0.112366,0.746393,0.209302,0.377945,0.483631,0.828097,0.67768,0.340236,0.935823,0.492393,0.953354,0.0461218,0.917193,0.749361,0.722498,0.882983,0.034021,0.50414,0.132516,0.416442,0.110901,0.870826,0.555343,0.650266,0.1364,0.963392,0.0466689,0.600651,0.196947,0.949871,0.859973,0.135545,0.0724065,0.663512,0.0683952,0.253493,0.122942,0.427646,0.695575,0.141682,0.268442,0.687202,0.489557,0.986004,0.37217,0.270688,0.232636,0.193975,0.19318,0.631465,0.0498268,0.917882,0.53469,0.228442,0.467884,0.657652,0.137318,0.201328,0.617909,0.815853,0.154774,0.696065,0.0661547,0.178278,0.651627,0.829141,0.398586,0.380315,0.280466,0.26856,0.109388,0.239809,0.164126,0.987086,0.398649,0.859709,0.404175,0.084711,0.580662,0.540441,0.330543,0.587395,0.712051,0.293395,0.153604,0.235115,0.0526135,0.544038,0.329725,0.415203,0.0392793,0.20842,0.22959,0.0162025,0.0470818,0.225975,0.560575,0.388657,0.150955,0.89742,0.308224,0.670501,0.627841,0.767183,0.162655,0.968683,0.187912,0.0442147,0.304159,0.43953,0.142368,0.674252,0.0883546,0.193061,0.820528,0.965888,0.85022,0.393214,0.836112,0.586804,0.908564,0.443195,0.997329,0.642815,0.989912,0.299405,0.8792,0.391003,0.980674,0.368943,0.995191,0.45427,0.934266,0.182148,0.501275,0.667111,0.653341,0.887968,0.484375,0.709133,0.294451,0.739369,0.531194,0.565051,0.389811,0.201,0.91227,0.712586,0.34067,0.245348,0.155677,0.318345,0.734328,0.399681,0.510809,0.132535,0.255741,0.480743,0.0548045,0.87282,0.561538,0.1453,0.0649745,0.710686,0.302814,0.305217,0.647095,0.59776,0.342609,0.737256,0.722674,0.464698,0.394865,0.38424,0.779513,0.926808,0.67792,0.389634,0.681059,0.172188,0.828788,0.946852,0.684198,0.926492,0.658727,0.389709,0.903949,0.811806,0.165588,0.266231,0.564559,0.154657,0.717801,0.0292653,0.496648,0.672284,0.308366,0.309407,0.756901,0.700056,0.325842,0.0477983,0.226301,0.711651,0.4418,0.82758,0.572319,0.335612,0.541889,0.715204,0.622952,0.379112,0.965363,0.404615,0.895485,0.555553,0.780779,0.561286,0.382533,0.683185,0.628031,0.96551,0.415725,0.0543938,0.904441,0.514458,0.298909,0.730688,0.620175,0.0625308,0.526229,0.67634,0.308333,0.299089,0.383072,0.764098,0.0184189,0.812235,0.436638,0.0368793,0.938309,0.290325,0.995233,0.244059,0.965877,0.511333,0.90626,0.693599,0.403028,0.75274,0.189923,0.343719,0.628007,0.891917,0.505205,0.400481,0.162686,0.694726,0.183455,0.624231,0.955801,0.432636,0.136532,0.250089,0.335208,0.141898,0.872978,0.999359,0.617948,0.302877,0.365864,0.711936,0.580746,0.669683,0.77062,0.991438,0.253324,0.824974,0.783809,0.660277,0.47438,0.669991,0.44838,0.773506,0.686233,0.241255,0.685189,0.646523,0.30418,0.619149,0.70625,0.80424,0.145428,0.0166814,0.706727,0.324451,0.216664,0.878046,0.263376,0.346969,0.517537,0.511056,0.85098,0.299955,0.758358,0.755976,0.148761,0.131346,0.760536,0.742388,0.143294,0.289359,0.673507,0.222359,0.582391,0.340162,0.107439,0.586671,0.930832,0.756204,0.307621,0.513646,0.836029,0.277465,0.298885,0.724854,0.652443,0.778352,0.22807,0.676556,0.561173,0.200468,0.104528,0.47393,0.605611,0.959607,0.959791,0.373407,0.587331,0.627553,0.70967,0.0439461,0.550041,0.287575,0.839361,0.0164819,0.281937,0.0222367,0.0417329,0.711038,0.316973,0.566021,0.306355,0.0998852,0.736894,0.919619,0.0861967,0.0164959,0.900022,0.524515,0.596415,0.952778,0.275142,0.137302,0.517536,0.251122,0.611817,0.67146,0.189279,0.623642,0.762081,0.286906,0.0700479,0.563846,0.760462,0.874763,0.14585,0.067524,0.682635,0.989829,0.122012,0.379118,0.873816,0.70938,0.181227,0.907695,0.107785,0.860545,0.706349,0.534259,0.710253,0.166101,0.184559,0.768627,0.370196,0.472313,0.702372,0.885044,0.464441,0.81425,0.328891,0.888976,0.221934,0.344167,0.259408,0.93964,0.708832,0.588183,0.186993,0.234951,0.160796,0.480759,0.998524,0.572399,0.806326,0.504507,0.483974,0.309178,0.791887,0.19942,0.367894,0.433547,0.675739,0.987824,0.575813,0.99628,0.404477,0.713574,0.718798,0.698286,0.307655,0.153604,0.0655258,0.0300459,0.309337,0.0167624,0.623904,0.817808,0.205811,0.0685898,0.409278,0.535884,0.640334,0.212359,0.588886,0.894247,0.0555364,0.871546,0.383275,0.46138,0.6319,0.815109,0.342908,0.252082,0.648069,0.522855,0.378033,0.507736,0.67813,0.235258,0.978166,0.645479,0.779811,0.1761,0.598903,0.853439,0.760873,0.0319185,0.937079,0.69258,0.959224,0.456228,0.660626,0.124158,0.545004,0.454251,0.524623,0.547755,0.301806,0.19141,0.831539,0.78605,0.254378,0.823624,0.457762,0.82179,0.712561,0.234569,0.822026,0.786417,0.166264,0.024902,0.986016,0.0150827,0.0560284,0.43118,0.248567,0.490866,0.599374,0.589302,0.934318,0.554804,0.0701439,0.73417,0.0353692,0.671944,0.56092,0.61661,0.194292,0.112307,0.505982,0.284542,0.902829,0.496415,0.333488,0.640182,0.875221,0.0935981,0.830881,0.0501519,0.888412,0.56396,0.878817,0.23277,0.984243,0.0823766,0.121022,0.607322,0.56634,0.514875,0.926722,0.305132,0.575383,0.253382,0.76849,0.586651,0.40471,0.396064,0.0231474,0.567626,0.820202,0.669492,0.620644,0.660006,0.275391,0.882193,0.523416,0.223727,0.244841,0.716158,0.535934,0.235279,0.189126,0.23935,0.215851,0.962443,0.73322,0.418047,0.564242,0.468145,0.484364,0.82581,0.144108,0.626121,0.199917,0.82242,0.888194,0.615161,0.642048,0.685135,0.381918,0.881063,0.371229,0.0189492,0.352258,0.890784,0.059715,0.896889,0.888446,0.73389,0.0975124,0.992959,0.286931,0.601187,0.248809,0.218968,0.68541,0.761997,0.183289,0.305396,0.127411,0.864585,0.0198786,0.747157,0.18697,0.920338,0.147506,0.662933,0.647958,0.526103,0.947153,0.998796,0.349827,0.432951,0.0648609,0.473816,0.376793,0.201312,0.00743872,0.679024,0.512243,0.384455,0.0301886,0.488691,0.0619212,0.721877,0.733281,0.502792,0.252089,0.0996611,0.428476,0.519447,0.517129,0.196672,0.505611,0.588485,|0.445689,0.655217,0.796219,0.505474,0.766148,0.836237,0.944558,0.0166247,0.605814,0.472394,0.412467,0.530869,0.036941,0.337935,0.191823,0.607159,0.345052,0.568311,0.26347,0.397256,0.786277,0.438999,0.909521,0.597053,0.307644,0.839626,0.308139,0.601488,0.619142,0.663744,0.926442,0.330317,0.904066,0.205243,0.27321,0.883672,0.122167,0.585616,0.775917,0.395874,0.0596529,0.688124,0.16192,0.115932,0.877232,0.373535,0.121669,0.783539,0.00720459,0.948726,0.564294,0.0331739,0.00452173,0.382079,0.358092,0.596136,0.832088,0.539602,0.313811,0.403329,0.711923,0.352366,0.959569,0.425853,0.0460899,0.789222,0.457416,0.178287,0.35821,0.157188,0.562217,0.756505,0.735756,0.330225,0.0638297,0.06062,0.338107,0.946988,0.228348,0.520566,0.425622,0.516467,0.398873,0.903757,0.769952,0.94474,0.244873,0.487381,0.545245,0.990556,0.959601,0.14827,0.0473548,0.312001,0.430468,0.798602,0.789694,0.0491168,0.747853,0.12554,0.429242,0.154402,0.820142,0.667592,0.713663,0.244902,0.848182,0.648862,0.963811,0.705471,0.00562251,0.385173,0.848586,0.533187,0.80599,0.0681064,0.423349,0.0530385,0.711372,0.241583,0.15332,0.39107,0.517683,0.459168,0.202988,0.393227,0.875902,0.706376,0.587002,0.69226,0.638502,0.606561,0.307327,0.563419,0.970453,0.205965,0.807165,0.663209,0.154439,0.0766323,0.270493,0.0324814,0.160426,0.328069,0.940703,0.174464,0.971259,0.506953,0.924161,0.194339,0.668542,0.947916,0.724578,0.0531309,0.909237,0.574477,0.242189,0.0288428,0.60994,0.737186,0.450272,0.390005,0.0270316,0.35113,0.727672,0.414013,0.994132,0.374518,0.425758,0.701418,0.859808,0.878405,0.908563,0.377016,0.971502,0.0667484,0.151732,0.00302237,0.148145,0.825881,0.535002,0.95756,0.90253,0.689342,0.900139,0.603299,0.732358,0.694364,0.689144,0.46595,0.800664,0.918257,0.264754,0.296333,0.382742,0.380254,0.23887,0.440302,0.119473,0.371791,0.540672,0.398605,0.667167,0.479313,0.689779,0.0517443,0.360972,0.918433,0.126557,0.763119,0.367316,0.948342,0.545487,0.344568,0.561138,0.770493,0.856347,0.5874,0.589034,0.960352,0.00890517,0.518513,0.841917,0.276305,0.712177,0.0697215,0.0254353,0.0708094,0.411196,0.596077,0.78379,0.582116,0.959975,0.835117,0.604424,0.709804,0.620248,0.318534,0.93535,0.446387,0.933158,0.922302,0.707483,0.211172,0.464796,0.32587,0.0246869,0.255771,0.272397,0.472827,0.419945,0.784244,0.575978,0.45815,0.492715,0.220008,0.215301,0.0852581,0.387653,0.870485,0.495282,0.860215,0.16682,0.45839,0.337938,0.486547,0.120717,0.855199,0.0833653,0.682667,0.866949,0.0782519,0.375833,0.828053,0.726163,0.153331,0.975377,0.0282642,0.507444,0.542258,0.939511,0.672942,0.782312,0.537697,0.696129,0.906348,0.662961,0.772508,0.680731,0.133671,0.787302,0.543314,0.901568,0.599978,0.211089,0.641382,0.494706,0.543688,0.851416,0.258572,0.989218,0.557086,0.267859,0.699129,0.271036,0.0468209,0.558605,0.819431,0.676954,0.725503,0.127832,0.00146496,0.595356,0.168157,0.948725,0.460647,0.160827,0.366233,0.269754,0.915626,0.900483,0.521451,0.399873,0.140941,0.0657461,0.378281,0.868301,0.790889,0.339647,0.248306,0.959491,0.561454,0.719123,0.671882,0.545734,0.127979,0.513224,0.615506,0.542396,0.204585,0.615815,0.745055,0.11507,0.482901,0.974108,0.174794,0.748964,0.997547,0.700706,0.650118,0.777906,0.690239,0.347265,0.949412,0.191557,0.677763,0.975922,0.431446,0.666681,0.93026,0.156591,0.75935,0.0671766,0.0647857,0.291618,0.069734,0.260593,0.472337,0.583286,0.961705,0.452385,0.959822,0.923518,0.411754,0.738999,0.587987,0.147776,0.964345,0.12778,0.140705,0.135995,0.251958,0.482389,0.869921,0.147812,0.881335,0.934641,0.60823,0.479364,0.401747,0.581113,0.609611,0.426704,0.965144,0.489348,0.419325,0.101402,0.80727,0.681243,0.431119,0.155183,0.880499,0.0267402,0.391152,0.553054,0.986384,0.249562,0.575437,0.685406,0.609646,0.679973,0.270976,0.911565,0.184437,0.911977,0.233129,0.570033,0.301413,0.686541,0.111956,0.711713,0.89675,0.78655,0.995777,0.453562,0.856599,0.189674,0.0846156,0.857488,0.248646,0.0427104,0.758243,0.79417,0.263154,0.394965,0.997319,0.952173,0.131085,0.0998467,0.803483,0.686244,0.693215,0.833717,0.074232,0.383936,0.63433,0.653381,0.145639,0.821999,0.375355,0.571306,0.0981132,0.127011,0.171521,0.312212,0.0766411,0.692308,0.290292,0.11552,0.000844538,0.258234,0.869521,0.45548,0.378138,0.333102,0.297215,0.783337,0.739539,0.0680065,0.451171,0.559371,0.966251,0.655108,0.0522916,0.599205,0.595807,0.770196,0.702758,0.674866,0.736471,0.979401,0.669607,0.366451,0.604934,0.522879,0.160256,0.419718,0.88274,0.979724,0.210352,0.922579,0.665545,0.54421,0.142198,0.0728954,0.340321,0.728704,0.835394,0.912278,0.843321,0.373501,0.158575,0.677038,0.592163,0.994102,0.599195,0.25111,0.449083,0.269589,0.701345,0.646217,0.166842,0.997226,0.882738,0.151471,0.747884,0.180979,0.487327,0.147712,0.783742,0.515176,0.860094,0.744651,0.391463,0.315502,0.699138,0.76982,0.205766,0.690874,0.143556,0.529982,0.575022,0.826356,0.67536,0.941798,0.700794,0.873951,0.588687,0.731903,0.339298,0.216883,0.797878,0.543279,0.397738,0.430208,0.283344,0.0116723,0.544478,0.859716,0.460018,0.408234,0.149551,0.667484,0.376112,0.538285,0.517623,0.508358,0.80004,0.431527,0.992038,0.209576,0.383168,0.252675,0.361191,0.0545774,0.612194,0.653324,0.845706,0.315856,0.246072,0.349169,0.196272,0.124211,0.854149,0.54523,0.139798,0.653934,0.157618,0.824322,0.201127,0.481678,0.996927,0.517439,0.960527,0.776092,0.762618,0.782151,0.727322,0.392172,0.45545,0.366714,0.161368,0.187578,0.213562,0.0990147,0.269018,0.0477746,0.974794,0.81723,0.651536,0.882454,0.340617,0.499218,0.240081,0.162608,0.351603,0.989732,0.621107,0.613137,0.521661,0.36548,0.243127,0.127284,0.352861,0.722759,0.923232,0.113938,0.782589,0.769439,0.121881,0.898752,0.479622,0.305385,0.515711,0.86509,0.955754,0.443672,0.212461,0.700814,0.289568,0.44771,0.976269,0.658817,0.191711,0.660785,0.0813049,0.620751,0.355917,0.393517,0.964756,0.358949,0.475053,0.955674,0.307822,0.700777,0.909048,0.561672,0.716525,0.871425,0.154035,0.805783,0.0406473,0.92132,0.587499,0.0518752,0.88392,0.340069,0.670325,0.625375,0.970993,0.533187,0.213822,0.632525,0.0149113,0.775997,0.667278,0.731706,0.398283,0.841019,0.967951,0.724037,0.893824,0.20332,0.829582,0.334029,0.743523,0.108277,0.124431,0.333073,0.779493,0.941301,0.0199661,0.177795,0.0928466,0.0196897,0.991059,0.554946,0.259257,0.956361,0.602283,0.71015,0.170832,0.520365,0.277206,0.934437,0.464957,0.504051,0.860501,0.768777,0.176799,0.367967,0.955074,0.470767,0.859939,0.17723,0.587372,0.224754,0.464142,0.700674,0.60093,0.879668,0.262201,0.423941,0.744409,0.277362,0.640692,0.550993,0.379356,0.640875,0.0994585,0.791939,0.694344,0.115321,0.638309,0.957355,0.22227,0.317308,0.275001,0.855411,0.712702,0.811629,0.966601,0.330937,0.76369,0.920503,0.969111,0.715626,0.325935,0.703781,0.0587503,0.363101,0.152013,0.554743,0.651228,0.132304,0.0374478,0.606529,0.662144,0.595157,0.264251,0.377681,0.223025,0.69017,0.345932,0.291642,0.190001,0.516153,0.406197,0.93611,0.682206,0.555446,0.0243399,0.824392,0.959825,0.350607,0.809181,0.621714,0.339593,0.879491,0.802721,0.885378,0.724765,0.83868,0.815865,0.0422782,0.344189,0.438512,0.50322,0.698931,0.732012,0.966784,0.557051,0.366259,0.256179,0.256259,0.105275,0.681393,0.65306,0.245315,0.53964,0.549338,0.347391,0.418726,0.198271,0.616064,0.830158,0.797932,0.935316,0.59162,0.0324923,0.256929,0.813001,0.170649,0.686678,0.880832,0.468812,0.585939,0.710264,0.950423,0.994197,0.897906,0.0602105,0.159812,0.308584,0.627708,0.580852,0.944501,0.185916,0.782151,0.34527,0.387224,0.5587,0.684401,0.189625,0.214408,0.303605,0.995082,0.0943795,0.248129,0.823742,0.431933,0.933772,0.305807,0.323623,0.146553,0.851192,0.615765,0.700973,0.910223,0.958824,0.147496,0.857078,0.197896,0.80006,0.349571,0.233176,0.56883,0.673933,0.277838,0.528038,0.164758,0.170708,0.979631,0.339501,0.0877775,0.984606,0.0938548,0.902061,0.757645,0.382005,0.161345,0.15747,0.119145,0.490349,0.982925,0.086247,0.262113,0.165399,0.997923,0.190576,0.109639,0.714541,0.149419,0.749141,0.0560342,0.422703,0.835238,0.862949,0.744121,0.684784,0.816663,0.186523,0.712191,0.497619,0.303505,0.907267,0.966108,0.0937253,0.287293,0.613811,0.120464,0.0941325,0.0859611,0.120504,0.694364,0.715531,0.172013,0.155861,0.970768,0.29913,0.877186,0.0594433,0.650923,0.657438,0.340471,0.175693,0.935525,0.0210254,0.153157,0.891577,0.765391,0.215483,0.927768,0.215285,0.35624,0.03951,0.129348,0.336479,0.965061,0.768057,0.50518,0.713411,0.0412397,0.638806,0.323378,0.270963,0.0956904,0.841667,0.329309,0.305554,0.227075,0.923946,0.383581,0.241453,0.851105,0.722994,0.962081,0.0810753,0.119498,0.660407,0.449186,0.26665,0.46135,0.581919,0.138543,0.999841,0.437332,0.912279,0.851935,0.252935,0.34581,0.473864,0.438757,0.650356,0.983266,0.618864,0.270017,0.940744,0.72797,0.571975,0.167336,0.215586,0.0816214,0.270526,0.395196,0.546787,0.771357,0.0303775,0.159579,0.866686,0.0519136,0.322675,0.649839,0.266846,0.882092,0.382168,0.34758,0.717388,0.115126,0.909506,0.963772,0.573573,0.223603,0.260054,0.983238,0.841199,0.329559,0.935337,0.983389,0.916742,0.140377,0.609094,0.197582,0.546054,0.721703,0.450276,0.73935,0.765853,0.848938,0.0288338,|0.835359,0.0168554,0.177003,0.592949,0.478834,0.882221,0.667752,0.044448,0.842352,0.93185,0.766357,0.106115,0.0370556,0.89706,0.176275,0.967572,0.360172,0.101319,0.225954,0.0367793,0.182981,0.857392,0.135688,0.158224,0.706089,0.567107,0.218744,0.642403,0.196285,0.966413,0.0985648,0.627034,0.903253,0.0592755,0.70909,0.331865,0.97264,0.648305,0.0855144,0.545964,0.875795,0.179133,0.543749,0.204025,0.67751,0.0199186,0.365672,0.66678,0.694205,0.909752,0.590125,0.437673,0.700712,0.172194,0.407488,0.018841,0.586873,0.125823,0.943661,0.35464,0.481333,0.750018,0.281274,0.0963491,0.595335,0.421563,0.439498,0.431355,0.132977,0.834975,0.731334,0.095972,0.63702,0.224664,0.79333,0.913504,0.624155,0.591006,0.290499,0.8171,0.898539,0.792741,0.821183,0.121242,0.363571,0.606356,0.946272,0.131525,0.00651181,0.0509518,0.539897,0.340731,0.777638,0.655435,0.37413,0.149667,0.721398,0.845836,0.101145,0.977117,0.434679,0.765936,0.515047,0.53652,0.210916,0.496896,0.705885,0.173255,0.926671,0.93246,0.444575,0.162986,0.444611,0.263918,0.260157,0.255038,0.0144798,0.527021,0.88207,0.800372,0.924235,0.523047,0.127096,0.138091,0.367929,0.865385,0.52163,0.443021,0.202055,0.118745,0.738684,0.696638,0.290648,0.817376,0.24493,0.28231,0.405077,0.716494,0.98683,0.886751,0.363495,0.412354,0.733396,0.752557,0.688995,0.723831,0.210252,0.813739,0.614398,0.827852,0.836345,0.327973,0.388761,0.680074,0.212801,0.753162,0.595994,0.112174,0.894007,0.793396,0.90992,0.129968,0.370078,0.176584,0.150495,0.630103,0.477081,0.614172,0.693329,0.328573,0.0549206,0.448454,0.85905,0.144655,0.674381,0.187944,0.305431,0.847689,0.0994214,0.998533,0.0800303,0.553225,0.351235,0.657611,0.297939,0.0327452,0.144984,0.183526,0.823011,0.759483,0.506949,0.171065,0.490365,0.0353435,0.337003,0.73702,0.94085,0.374835,0.393741,0.114399,0.396459,0.957957,0.659108,0.355201,0.857115,0.525755,0.481538,0.0392192,0.518814,0.438849,0.0322527,0.117888,0.715827,0.0385919,0.262912,0.210519,0.498917,0.799144,0.712093,0.429635,0.58171,0.678373,0.408557,0.990876,0.627536,0.394449,0.598354,0.444708,0.330848,0.765698,0.933502,0.692789,0.423009,0.927159,0.279007,0.921983,0.920797,0.665915,0.239042,0.0665347,0.717736,0.200539,0.688763,0.362468,0.167897,0.929535,0.548469,0.832629,0.394255,0.876475,0.251831,0.036157,0.574025,0.810265,0.135393,0.267382,0.391297,0.695646,0.236129,0.17776,0.391111,0.406472,0.941226,0.470894,0.703809,0.397102,0.238313,0.771284,0.0300091,0.611895,0.354195,0.765637,0.994154,0.706666,0.161433,0.946879,0.969479,0.305844,0.593628,0.0834776,0.823453,0.629197,0.457685,0.592015,0.170659,0.429297,0.734173,0.775231,0.0325376,0.0800877,0.445263,0.39402,0.605517,0.697548,0.166067,0.218438,0.114176,0.412996,0.668628,0.920415,0.443497,0.480891,0.282374,0.903077,0.408869,0.584048,0.729444,0.629827,0.473065,0.60114,0.942138,0.615937,0.938281,0.384856,0.413892,0.648387,0.854376,0.370994,0.813364,0.375815,0.929879,0.258082,0.794843,0.690239,0.129713,0.174572,0.819486,0.490378,0.263761,0.998925,0.368472,0.372112,0.321655,0.375275,0.34912,0.621996,0.797065,0.354485,0.385297,0.93626,0.946376,0.336602,0.12768,0.0819359,0.788771,0.128788,0.498543,0.442741,0.476429,0.473008,0.459617,0.005952,0.399618,0.387362,0.853722,0.743963,0.844339,0.517051,0.81991,0.223578,0.827751,0.918254,0.946787,0.147641,0.563978,0.35241,0.509202,0.268692,0.0952916,0.109589,0.64239,0.790739,0.684932,0.416629,0.718358,0.0514723,0.162332,0.0903178,0.371844,0.948,0.585981,0.830515,0.68742,0.666781,0.429819,0.953543,0.543031,0.550693,0.684782,0.688041,0.981438,0.796633,0.310098,0.452928,0.795506,0.231936,0.0511206,0.609267,0.88552,0.835092,0.568482,0.622047,0.732101,0.880382,0.584259,0.015728,0.440846,0.0664709,0.276636,0.444468,0.898051,0.257721,0.132462,0.947755,0.0536917,0.96896,0.839694,0.603539,0.167143,0.172441,0.916986,0.762023,0.613671,0.934758,0.984052,0.673765,0.0282887,0.923819,0.411048,0.210111,0.88628,0.686632,0.869342,0.15516,0.7604,0.531319,0.949653,0.974092,0.628558,0.863919,0.430709,0.0509977,0.313489,0.624762,0.521351,0.84706,0.629718,0.591785,0.957887,0.433168,0.807733,0.847389,0.33109,0.333664,0.579442,0.407225,0.558639,0.147047,0.913487,0.363633,0.0258418,0.39235,0.64305,0.132614,0.958086,0.180079,0.988257,0.147831,0.103671,0.728824,0.212086,0.955526,0.737899,0.221615,0.180881,0.392373,0.0427535,0.221613,0.147363,0.196724,0.974667,0.0773982,0.0144693,0.205772,0.567262,0.639381,0.930027,0.925621,0.635243,0.309783,0.935637,0.158015,0.708579,0.847597,0.35228,0.0357248,0.108003,0.00821435,0.0638174,0.81723,0.0514458,0.149847,0.249064,0.795313,0.87946,0.284668,0.733209,0.2165,0.900233,0.228556,0.547853,0.414437,0.433877,0.764437,0.527709,0.298513,0.26063,0.208754,0.929031,0.214299,0.222136,0.792601,0.11788,0.302538,0.692174,0.297016,0.863806,0.2135,0.187791,0.532098,0.613677,0.860648,0.415714,0.153816,0.328928,0.987928,0.571584,0.789644,0.199038,0.642063,0.808092,0.374623,0.657321,0.567735,0.926232,0.319521,0.221268,0.471391,0.474531,0.195593,0.103903,0.882268,0.216955,0.756379,0.359065,0.467323,0.614239,0.29172,0.365498,0.573575,0.519888,0.888612,0.60722,0.0742453,0.589281,0.0206899,0.544919,0.301474,0.592682,0.29525,0.843441,0.337973,0.233649,0.571918,0.872853,0.765948,0.419503,0.0134768,0.645383,0.0230647,0.840146,0.911902,0.0795609,0.933951,0.349755,0.233372,0.506657,0.457865,0.922935,0.657958,0.317405,0.439679,0.499631,0.629001,0.835238,0.986266,0.569355,0.197766,0.0974349,0.110129,0.301763,0.415388,0.740754,0.454453,0.798477,0.225541,0.867569,0.347676,0.652882,0.17898,0.219547,0.347121,0.783342,0.76772,0.101297,0.815753,0.334217,0.772247,0.329828,0.390733,0.609263,0.0122461,0.650026,0.46711,0.772032,0.0064612,0.842101,0.29266,0.507378,0.777063,0.415594,0.525411,0.926523,0.90401,0.754199,0.861503,0.100644,0.803462,0.135296,0.629964,0.786627,0.15445,0.144922,0.874097,0.293743,0.24931,0.800384,0.521254,0.922688,0.139631,0.729014,0.249562,0.569463,0.985652,0.46221,0.457502,0.697632,0.123715,0.0679179,0.912876,0.0896561,0.390777,0.43652,0.285201,0.953068,0.600784,0.690456,0.288262,0.752433,0.951371,0.285224,0.999452,0.820458,0.328142,0.0524487,0.596288,0.965856,0.412266,0.57298,0.805942,0.391335,0.638712,0.123481,0.251736,0.0258203,0.120859,0.470016,0.603157,0.582738,0.326899,0.821662,0.487912,0.224914,0.824155,0.165969,0.680037,0.136719,0.322369,0.551156,0.170858,0.517205,0.348192,0.472466,0.521907,0.455567,0.0476548,0.221522,0.653091,0.547119,0.128845,0.890627,0.106326,0.152261,0.0539013,0.423514,0.81844,0.137534,0.541113,0.40679,0.28604,0.54439,0.980476,0.933445,0.1176,0.266049,0.149186,0.104928,0.40797,0.296441,0.195084,0.615792,0.778238,0.748664,0.0947061,0.841335,0.816275,0.197388,0.484999,0.239679,0.631073,0.846141,0.295056,0.964497,0.984921,0.901909,0.521292,0.851849,0.679462,0.619703,0.250853,0.498582,0.209447,0.502854,0.856453,0.0788587,0.336124,0.294227,0.159834,0.512037,0.731791,0.190904,0.596944,0.439328,0.988035,0.909555,0.784016,0.11956,0.366508,0.999612,0.123561,0.197217,0.892655,0.625938,0.999152,0.219908,0.420839,0.903416,0.471301,0.250124,0.309477,0.935579,0.0280292,0.38696,0.613475,0.972766,0.118866,0.702728,0.755742,0.0983804,0.663967,0.878869,0.149032,0.0918716,0.277987,0.132185,0.710211,0.867697,0.244421,0.240726,0.456654,0.0433732,0.0792794,0.88664,0.445207,0.458368,0.622144,0.69611,0.261012,0.956204,0.157506,0.656163,0.809436,0.606422,0.675515,0.786628,0.542525,0.26827,0.59574,0.655186,0.887876,0.0104821,0.51654,0.838726,0.227182,0.942737,0.313462,0.285412,0.0203716,0.721866,0.508228,0.165141,0.819848,0.163972,0.781048,0.86236,0.385731,0.462563,0.660252,0.554391,0.233601,0.151155,0.465736,0.0241333,0.245321,0.755606,0.0454825,0.918473,0.646006,0.655806,0.971087,0.187019,0.510408,0.0406441,0.440656,0.707257,0.0408488,0.77876,0.314934,0.0139537,0.583515,0.854215,0.779957,0.585702,0.760481,0.517377,0.327268,0.00326234,0.575214,0.746521,0.463198,0.818318,0.491262,0.99902,0.152694,0.792494,0.386418,0.217461,0.275621,0.674694,0.303475,0.916473,0.0158204,0.941282,0.430221,0.852964,0.796911,0.0992451,0.341894,0.476525,0.214734,0.432346,0.810367,0.385229,0.452237,0.925972,0.350989,0.116924,0.419619,0.496616,0.307886,0.0135312,0.191202,0.253664,0.471937,0.709852,0.991291,0.0390612,0.355867,0.655624,0.497839,0.142666,0.12302,0.844301,0.124044,0.932783,0.503483,0.754525,0.700558,0.249627,0.71805,0.10206,0.712118,0.0109267,0.0321187,0.100149,0.751007,0.596637,0.0676883,0.338655,0.139405,0.409327,0.924746,0.719238,0.908116,0.817046,0.322399,0.955494,0.258047,0.677635,0.944472,0.120711,0.42458,0.233105,0.720539,0.440711,0.16705,0.538922,0.109023,0.110539,0.581162,0.802508,0.788946,0.322605,0.0632078,0.368765,0.924455,0.370192,0.292182,0.620429,0.199364,0.0817516,0.10315,0.195952,0.929117,0.320784,0.159705,0.839009,0.741614,0.0978485,0.967203,0.818626,0.629948,0.38391,0.433783,0.381864,0.983844,0.845922,0.360549,0.43282,0.935838,0.396551,0.940977,0.463792,0.0286756,0.685302,0.731609,0.243435,0.690664,0.701084,0.721726,0.378152,0.727614,0.263788,0.0615131,0.716317,0.865528,0.425413,0.599533,0.692459,0.0505891,|0.306407,0.496385,0.752761,0.111047,0.962307,0.607786,0.433771,0.218044,0.113879,0.279838,0.469745,0.672083,0.973918,0.804313,0.351528,0.528786,0.17914,0.154148,0.842551,0.547681,0.78282,0.91033,0.460786,0.524977,0.785481,0.707477,0.277081,0.920004,0.512676,0.715379,0.0902439,0.188641,0.386675,0.834418,0.847452,0.118206,0.608963,0.435404,0.714224,0.379462,0.848889,0.728974,0.0589409,0.137461,0.545371,0.932495,0.696723,0.747352,0.684078,0.996886,0.669562,0.125267,0.781644,0.630548,0.504148,0.0119885,0.79658,0.0971677,0.990246,0.168083,0.939623,0.0310718,0.496512,0.439135,0.344593,0.962145,0.767953,0.395835,0.84575,0.281464,0.436021,0.335495,0.569727,0.3784,0.821348,0.818799,0.0848706,0.672673,0.917959,0.336177,0.646652,0.0445583,0.49831,0.684385,0.556456,0.124528,0.0799112,0.208928,0.610248,0.578515,0.991345,0.62726,0.110678,0.0629141,0.531734,0.805115,0.18349,0.37721,0.914501,0.157723,0.340713,0.538692,0.210394,0.121189,0.213261,0.100785,0.441019,0.885831,0.474591,0.100445,0.976094,0.420984,0.856985,0.110214,0.372508,0.806603,0.319834,0.930118,0.801154,0.395827,0.492096,0.354265,0.282983,0.996453,0.677442,0.419837,0.159155,0.137918,0.451154,0.630941,0.0896344,0.441209,0.977119,0.0470477,0.418954,0.697835,0.493972,0.789551,0.0765582,0.583825,0.478677,0.527143,0.884995,0.490137,0.800803,0.309029,0.827341,0.301801,0.598904,0.343617,0.74803,0.0570143,0.935668,0.0374025,0.727911,0.955785,0.776122,0.487885,0.112241,0.374213,0.590388,0.822907,0.0467142,0.274214,0.151511,0.687922,0.730255,0.877881,0.819477,0.400029,0.677823,0.641062,0.155836,0.690255,0.664249,0.720673,0.278309,0.481008,0.431337,0.0590406,0.489339,0.634471,0.711498,0.699779,0.0396672,0.566835,0.188774,0.850228,0.116675,0.682739,0.851652,0.0260409,0.0443997,0.0971068,0.673914,0.866178,0.987005,0.50752,0.328014,0.640744,0.900965,0.222185,0.131111,0.655528,0.444999,0.692002,0.451583,0.798481,0.400406,0.835757,0.269667,0.0143129,0.650442,0.351475,0.0252005,0.944901,0.438443,0.281924,0.563885,0.399449,0.875328,0.151895,0.41332,0.663516,0.396108,0.48102,0.64533,0.968089,0.337354,0.1829,0.987878,0.138633,0.652332,0.0568078,0.706033,0.880322,0.769715,0.572165,0.33918,0.360163,0.453012,0.810083,0.900827,0.929833,0.0488757,0.240288,0.0160089,0.374104,0.248756,0.0585332,0.481824,0.305483,0.551864,0.22109,0.973209,0.760515,0.142725,0.0970936,0.308927,0.788616,0.955533,0.830122,0.990618,0.400178,0.9065,0.989409,0.759201,0.743224,0.681033,0.467819,0.53583,0.296122,0.310128,0.545196,0.210583,0.706734,0.238735,0.330462,0.214837,0.319971,0.892194,0.394864,0.439819,0.163669,0.571812,0.313629,0.538328,0.962907,0.0824983,0.397729,0.245146,0.342002,0.0777786,0.608203,0.195508,0.667797,0.961645,0.800845,0.247662,0.325293,0.0160633,0.739507,0.994049,0.781583,0.457445,0.954442,0.324182,0.372544,0.745985,0.0519875,0.26091,0.215228,0.263645,0.388012,0.974271,0.468737,0.280743,0.845765,0.23754,0.855064,0.300076,0.129991,0.129523,0.0731913,0.421115,0.366499,0.33107,0.380871,0.222352,0.318601,0.216076,0.0301539,0.0612616,0.855958,0.252508,0.19313,0.712573,0.958249,0.674682,0.193541,0.570068,0.472293,0.200159,0.0572724,0.458191,0.846376,0.465488,0.0589707,0.923424,0.69829,0.945488,0.0362707,0.92738,0.36858,0.0382158,0.508814,0.170095,0.896208,0.574242,0.88265,0.114688,0.41096,0.726595,0.212679,0.952967,0.920429,0.165489,0.820638,0.331546,0.150063,0.916555,0.695165,0.998771,0.348309,0.100741,0.916031,0.718041,0.959137,0.525332,0.0307986,0.81152,0.707018,0.653761,0.736164,0.638636,0.819636,0.160466,0.210276,0.490587,0.93431,0.969299,0.777268,0.144594,0.0916405,0.284257,0.00465584,0.230343,0.0793526,0.821272,0.789752,0.749289,0.224522,0.448041,0.804424,0.349844,0.94324,0.885601,0.463033,0.406157,0.363243,0.0150215,0.70629,0.55023,0.181448,0.685681,0.576166,0.155039,0.63506,0.365213,0.345983,0.0190335,0.564743,0.91557,0.0689217,0.181045,0.559525,0.308285,0.272722,0.944753,0.514546,0.72463,0.0444824,0.0969887,0.29978,0.358409,0.866512,0.77318,0.878991,0.648041,0.525972,0.987856,0.384359,0.17892,0.968642,0.632199,0.226239,0.310384,0.655888,0.609249,0.324621,0.941163,0.49771,0.0690415,0.273283,0.424069,0.907859,0.232702,0.042626,0.403185,0.125538,0.131877,0.798844,0.399832,0.211506,0.417901,0.325947,0.349686,0.422196,0.605892,0.234178,0.68686,0.306359,0.197436,0.47699,0.706425,0.0118876,0.634443,0.167569,0.915473,0.885729,0.753064,0.197245,0.918264,0.421944,0.445741,0.659087,0.821294,0.271573,0.474641,0.404031,0.785377,0.346171,0.408638,0.652853,0.710807,0.610175,0.887386,0.141101,0.321776,0.106324,0.128282,0.00263578,0.875571,0.22965,0.72225,0.920616,0.54601,0.602141,0.759905,0.0544987,0.168195,0.725193,0.550961,0.554101,0.245148,0.488794,0.812444,0.521201,0.618015,0.603371,0.0860006,0.361744,0.139828,0.537609,0.288245,0.223748,0.0160857,0.462692,0.821594,0.937296,0.317307,0.850191,0.423397,0.245821,0.324622,0.493677,0.694642,0.403718,0.0317684,0.661601,0.618211,0.895598,0.462117,0.0816136,0.0263196,0.918705,0.143371,0.622282,0.380526,0.419224,0.136701,0.63389,0.120216,0.987982,0.481367,0.940706,0.289748,0.580682,0.51645,0.50628,0.643614,0.509948,0.163649,0.870415,0.0760198,0.0768714,0.997645,0.259806,0.717809,0.273011,0.964334,0.969229,0.486973,0.766049,0.0119463,0.639043,0.792919,0.427208,0.799139,0.299064,0.339829,0.935578,0.0158777,0.917552,0.633453,0.047513,0.0417126,0.781111,0.12394,0.437533,0.243006,0.450399,0.0359045,0.163113,0.31129,0.719279,0.983666,0.1959,0.123604,0.182199,0.720032,0.87015,0.596476,0.789941,0.324875,0.190193,0.839984,0.82527,0.0827255,0.627504,0.978496,0.799231,0.0493519,0.189909,0.76919,0.586206,0.842037,0.633818,0.279432,0.217643,0.929048,0.742257,0.155996,0.264135,0.896487,0.704925,0.350636,0.30833,0.556045,0.239894,0.362488,0.657153,0.763498,0.0565341,0.198931,0.0632536,0.177492,0.90322,0.753883,0.540995,0.220718,0.677239,0.429779,0.934098,0.0190034,0.458325,0.35813,0.947075,0.823825,0.837741,0.265499,0.412371,0.718801,0.0949441,0.951592,0.758564,0.745514,0.792672,0.108149,0.37755,0.854089,0.0891271,0.528604,0.590842,0.948263,0.748773,0.532692,0.816717,0.79049,0.146032,0.6732,0.215082,0.667339,0.447925,0.376633,0.515321,0.445487,0.0705287,0.612798,0.42504,0.50555,0.476342,0.794315,0.748189,0.579268,0.484597,0.802458,0.914819,0.115339,0.484329,0.631777,0.555154,0.247071,0.0409213,0.409326,0.390681,0.877117,0.110325,0.539912,0.905716,0.352591,0.884969,0.439086,0.151074,0.544374,0.380943,0.025279,0.77877,0.916648,0.411845,0.645137,0.806856,0.55023,0.243263,0.765143,0.569392,0.850582,0.672707,0.870113,0.561876,0.137196,0.86452,0.0322826,0.705937,0.730241,0.08281,0.390215,0.964309,0.983559,0.109537,0.126361,0.959047,0.332108,0.511448,0.147389,0.0860233,0.399344,0.441607,0.0984116,0.761358,0.874814,0.288503,0.143984,0.0592659,0.477882,0.644678,0.326059,0.217976,0.0300724,0.0676706,0.14072,0.836233,0.968629,0.203153,0.570237,0.139691,0.844153,0.00156432,0.739769,0.710525,0.445653,0.813878,0.295506,0.399342,0.617591,0.609031,0.263012,0.827349,0.0479211,0.953495,0.170356,0.731185,0.295446,0.76058,0.794869,0.736315,0.491703,0.736773,0.842471,0.909906,0.57414,0.586727,0.930222,0.107178,0.949987,0.13125,0.849102,0.483416,0.564324,0.863394,0.287407,0.509824,0.248214,0.975305,0.316188,0.542769,0.210644,0.529996,0.99746,0.854363,0.115315,0.676834,0.996112,0.650955,0.568408,0.338945,0.633064,0.966095,0.995728,0.525237,0.319031,0.979643,0.571735,0.521092,0.128959,0.10246,0.458853,0.585026,0.311922,0.765013,0.714539,0.360465,0.397839,0.729112,0.428287,0.876749,0.40997,0.776089,0.355234,0.957813,0.393873,0.4144,0.265965,0.362694,0.434094,0.253135,0.552003,0.508518,0.831245,0.0429774,0.30985,0.174321,0.00537157,0.0990285,0.915818,0.0559517,0.91801,0.529294,0.277836,0.308458,0.529955,0.409665,0.260866,0.670595,0.172273,0.110366,0.505639,0.0990044,0.62239,0.391652,0.635318,0.483396,0.384423,0.7716,0.423986,0.580581,0.210051,0.240042,0.138619,0.956877,0.962552,0.535789,0.50028,0.826535,0.160424,0.626538,0.715384,0.628763,0.824523,0.0696574,0.13714,0.589572,0.420865,0.0257396,0.582812,0.291126,0.343056,0.770339,0.672654,0.293393,0.573341,0.108953,0.993011,0.683096,0.295878,0.748329,0.274723,0.873908,0.629514,0.884232,0.882944,0.386607,0.702232,0.575416,0.859672,0.55949,0.747012,0.415698,0.1126,0.45548,0.452037,0.388999,0.111453,0.971361,0.944058,0.922142,0.532475,0.72783,0.959037,0.481911,0.75062,0.937936,0.763466,0.603086,0.951616,0.342136,0.637427,0.708271,0.226359,0.307879,0.934381,0.0456722,0.650255,0.702022,0.511483,0.524009,0.707137,0.0046612,0.645196,0.382819,0.29699,0.0677291,0.351798,0.798523,0.340362,0.288994,0.333209,0.859457,0.370593,0.141357,0.203344,0.397715,0.436014,0.14946,0.586358,0.572112,0.240405,0.0977167,0.0123846,0.0528243,0.122136,0.210263,0.606949,0.117782,0.793263,0.790303,0.518592,0.48144,0.406655,0.580055,0.527571,0.710467,0.0369757,0.314778,0.910623,0.41893,0.527988,0.84357,0.371574,0.435359,0.82348,0.245521,0.0277936,0.209428,0.56469,0.415895,0.74814,0.149734,0.201861,0.59908,0.86592,0.0258667,0.615621,0.369152,0.138846,0.82509,0.104161,0.701681,0.98334,0.409057,|0.434238,0.0824302,0.556426,0.28106,0.29405,0.762453,0.879415,0.394388,0.541832,0.356796,0.847484,0.22869,0.278413,0.707393,0.344803,0.167933,0.42812,0.361266,0.949689,0.143907,0.376212,0.776989,0.95126,0.978705,0.966481,0.502708,0.686272,0.0887401,0.789867,0.825874,0.578182,0.305999,0.727336,0.609738,0.627776,0.152175,0.877415,0.865007,0.865868,0.667321,0.309663,0.357817,0.429066,0.933673,0.663818,0.20712,0.735903,0.890382,0.958147,0.063793,0.869099,0.883476,0.596049,0.365109,0.568479,0.697111,0.37532,0.628514,0.752372,0.477578,0.135931,0.411176,0.543783,0.0547464,0.775159,0.618224,0.81062,0.793983,0.202707,0.998281,0.705352,0.694652,0.291279,0.250489,0.84486,0.563187,0.375155,0.111119,0.173473,0.540461,0.801899,0.246223,0.521251,0.273656,0.299992,0.23748,0.209948,0.938043,0.628114,0.0736309,0.64328,0.367152,0.393909,0.890686,0.624873,0.525019,0.884502,0.43709,0.412132,0.940202,0.0852281,0.782942,0.468008,0.84529,0.506229,0.653658,0.389239,0.119817,0.51367,0.126974,0.483554,0.0351174,0.859637,0.917549,0.147835,0.929016,0.215903,0.12162,0.88018,0.137975,0.756415,0.21252,0.189953,0.347158,0.615884,0.0809482,0.977513,0.119674,0.354965,0.434166,0.419467,0.0400428,0.136146,0.346385,0.661345,0.232908,0.740154,0.93722,0.348538,0.0151352,0.367007,0.519424,0.511939,0.386115,0.199474,0.875672,0.336805,0.0921007,0.661482,0.329403,0.833641,0.418913,0.908558,0.275523,0.984216,0.131885,0.376309,0.0253208,0.345722,0.619115,0.196748,0.0787362,0.921183,0.135063,0.810153,0.613698,0.70615,0.42168,0.0506843,0.218638,0.561842,0.802298,0.222374,0.334437,0.645984,0.219997,0.401779,0.444751,0.100197,0.415739,0.406165,0.582198,0.610704,0.421575,0.197248,0.481278,0.958654,0.598549,0.868146,0.133878,0.533753,0.109304,0.127758,0.36769,0.65473,0.746635,0.623954,0.726925,0.867852,0.239141,0.138074,0.128141,0.218866,0.783701,0.538727,0.19727,0.985989,0.808252,0.131247,0.838911,0.872262,0.544488,0.893818,0.59142,0.862573,0.371808,0.193271,0.00712091,0.132655,0.909327,0.149927,0.077611,0.519572,0.510277,0.730861,0.594591,0.138225,0.821094,0.111508,0.00603586,0.29612,0.0442249,0.604183,0.960787,0.198294,0.400641,0.284222,0.503173,0.180344,0.669453,0.911534,0.442522,0.95152,0.140871,0.0667322,0.0739011,0.472458,0.106937,0.849144,0.597076,0.752072,0.450248,0.722749,0.944634,0.526415,0.572263,0.806167,0.654999,0.222624,0.580722,0.752702,0.608,0.426747,0.947735,0.0879414,0.814801,0.800252,0.0968779,0.88306,0.53369,0.613527,0.920732,0.0878519,0.807822,0.651756,0.918653,0.953381,0.186462,0.817234,0.439685,0.126944,0.187634,0.854215,0.905928,0.262602,0.229117,0.87719,0.173287,0.816977,0.274563,0.323467,0.84012,0.778674,0.00855643,0.777957,0.360172,0.461957,0.761045,0.121928,0.243279,0.872108,0.169533,0.874943,0.612488,0.765369,0.885528,0.877079,0.000984251,0.487577,0.803659,0.630332,0.958458,0.356408,0.101805,0.192303,0.931159,0.91807,0.0518547,0.80532,0.734778,0.665037,0.415349,0.476237,0.469991,0.858885,0.17738,0.45146,0.0763271,0.0831384,0.977411,0.28596,0.975614,0.305345,0.738088,0.0834967,0.559389,0.84654,0.502402,0.353798,0.646479,0.463946,0.285765,0.734242,0.502203,0.645939,0.405597,0.861277,0.249518,0.446609,0.240322,0.0927789,0.0955034,0.833714,0.808192,0.888663,0.636925,0.126368,0.48093,0.0993921,0.510126,0.0986919,0.00704962,0.497639,0.227703,0.871538,0.138571,0.11987,0.234932,0.0856705,0.17199,0.462241,0.646421,0.960238,0.684306,0.369839,0.861876,0.203664,0.408111,0.0489699,0.191196,0.625707,0.6108,0.1839,0.114056,0.786114,0.607821,0.916245,0.352797,0.386237,0.0999748,0.575806,0.993046,0.553474,0.228916,0.0840427,0.355138,0.881498,0.0262724,0.554279,0.0296606,0.490647,0.0754983,0.0729104,0.252335,0.615278,0.698567,0.509713,0.652475,0.490968,0.00484282,0.951715,0.895613,0.287111,0.41348,0.227725,0.933312,0.99972,0.602166,0.168234,0.291608,0.299544,0.452102,0.86604,0.925247,0.0668885,0.379694,0.365897,0.892671,0.0248462,0.814558,0.847733,0.514703,0.0939793,0.789171,0.438993,0.333856,0.728134,0.690766,0.313644,0.0605189,0.939946,0.144119,0.607369,0.905081,0.415811,0.324902,0.702755,0.485947,0.405423,0.245,0.747812,0.663888,0.900232,0.0904986,0.813331,0.0330245,0.482775,0.197088,0.476287,0.614549,0.198625,0.383747,0.186469,0.535574,0.642151,0.123512,0.661154,0.674262,0.363984,0.39826,0.984536,0.570703,0.415987,0.796013,0.805171,0.694291,0.61206,0.359589,0.570608,0.403159,0.621523,0.193847,0.90656,0.807004,0.454826,0.70559,0.128242,0.450585,0.07091,0.489985,0.0823665,0.641913,0.893136,0.488466,0.0700261,0.732295,0.94971,0.0276365,0.715273,0.940259,0.978875,0.242732,0.693368,0.191109,0.879659,0.969161,0.154788,0.560114,0.180316,0.725951,0.447942,0.352743,0.675824,0.00841528,0.674472,0.632805,0.19082,0.0575956,0.258348,0.991825,0.041481,0.874435,0.893317,0.534267,0.547004,0.299693,0.333719,0.136186,0.362251,0.638395,0.861342,0.45568,0.168447,0.775505,0.845076,0.638517,0.556069,0.204247,0.885485,0.879624,0.506083,0.802025,0.917309,0.906643,0.654443,0.374207,0.196746,0.383957,0.38211,0.452575,0.682494,0.397267,0.430358,0.0366805,0.999926,0.28639,0.106877,0.716189,0.727179,0.417686,0.570082,0.815825,0.0445744,0.243459,0.964998,0.742171,0.857351,0.700248,0.248224,0.384406,0.933536,0.0349288,0.441206,0.366053,0.15789,0.584711,0.412444,0.885715,0.448192,0.995641,0.332892,0.497184,0.0205709,0.43043,0.099427,0.838479,0.802618,0.0939854,0.32186,0.0440375,0.175168,0.0433332,0.108832,0.281751,0.725411,0.993552,0.360998,0.89494,0.737212,0.7105,0.416432,0.389542,0.571373,0.092801,0.380936,0.288056,0.323594,0.29454,0.458263,0.466485,0.925399,0.835242,0.880302,0.287636,0.617256,0.449749,0.586528,0.619312,0.927958,0.897238,0.914173,0.257542,0.83399,0.713172,0.193825,0.89279,0.791959,0.213104,0.649045,0.060936,0.513447,0.9753,0.774978,0.91476,0.844821,0.306935,0.00861633,0.145816,0.940403,0.337953,0.321706,0.343742,0.835765,0.700354,0.367358,0.513233,0.152074,0.195032,0.851501,0.555391,0.604891,0.0526534,0.519873,0.414249,0.258639,0.109526,0.639694,0.0735857,0.538852,0.891887,0.708255,0.309503,0.336474,0.896251,0.0297492,0.852159,0.293575,0.0716405,0.634733,0.676886,0.592741,0.494218,0.383221,0.619335,0.0603203,0.854503,0.176518,0.426892,0.472882,0.598053,0.395077,0.981403,0.0818061,0.520238,0.182739,0.823612,0.313258,0.70475,0.379814,0.589119,0.755834,0.625449,0.772541,0.642124,0.0643392,0.243563,0.657749,0.106791,0.819792,0.782767,0.0659752,0.251107,0.781391,0.114099,0.625942,0.297528,0.539204,0.996814,0.749085,0.306035,0.77111,0.82644,0.832294,0.359327,0.661204,0.452579,0.698683,0.0383816,0.46222,0.360171,0.425818,0.839931,0.125208,0.507227,0.802939,0.77329,0.974752,0.141921,0.0956169,0.0570009,0.75918,0.22851,0.972605,0.382658,0.0802516,0.660464,0.0277001,0.877831,0.924562,0.274328,0.39509,0.948409,0.230066,0.948856,0.285588,0.910414,0.110295,0.790555,0.0619889,0.743244,0.743632,0.291682,0.270711,0.651632,0.475329,0.815705,0.733677,0.888023,0.907437,0.165631,0.52282,0.427177,0.818326,0.941999,0.229483,0.488719,0.130753,0.5102,0.901634,0.363812,0.919147,0.316786,0.906646,0.807221,0.0687494,0.695557,0.667244,0.216421,0.223789,0.292476,0.951911,0.501647,0.884814,0.442449,0.100449,0.187825,0.740967,0.0205201,0.0855484,0.998661,0.550281,0.835959,0.945056,0.845657,0.372381,0.447424,0.455045,0.157981,0.470754,0.976802,0.492846,0.842912,0.83347,0.908339,0.0159677,0.307367,0.149242,0.109726,0.189945,0.302663,0.894036,0.574532,0.575165,0.973134,0.834296,0.774683,0.544088,0.524089,0.43782,0.690038,0.475279,0.212871,0.799966,0.844806,0.820781,0.491754,0.0661162,0.491741,0.582565,0.409609,0.644418,0.672327,0.952679,0.818796,0.240825,0.554082,0.295465,0.651223,0.179473,0.455486,0.460299,0.212484,0.088611,0.393971,0.594138,0.51812,0.0554774,0.543136,0.550466,0.582393,0.838848,0.406189,0.28643,0.0748401,0.229575,0.297326,0.377492,0.380366,0.524749,0.218996,0.101735,0.950767,0.742787,0.80814,0.131653,0.586619,0.358108,0.48045,0.295653,0.263394,0.744298,0.710852,0.457772,0.477969,0.816701,0.159586,0.0177072,0.956171,0.267762,0.507892,0.859129,0.345763,0.986547,0.496732,0.11036,0.102879,0.585383,0.308666,0.178446,0.126823,0.222704,0.935926,0.739779,0.916965,0.335972,0.941079,0.479943,0.367734,0.529773,0.963753,0.489775,0.729459,0.912353,0.183247,0.622753,0.932527,0.394269,0.643777,0.797734,0.887788,0.792054,0.190148,0.476615,0.186976,0.621016,0.179569,0.908101,0.387437,0.276017,0.713271,0.731237,0.67426,0.631661,0.543863,0.660144,0.954349,0.316834,0.923269,0.0590484,0.941311,0.589643,0.703556,0.759654,0.11189,0.0956889,0.389655,0.651012,0.704542,0.921657,0.330968,0.134448,0.77699,0.650551,0.760464,0.0405975,0.144901,0.73059,0.651957,0.0137374,0.710807,0.639029,0.359623,0.144513,0.275571,0.842055,0.74861,0.661301,0.369395,0.620563,0.0985449,0.925158,0.673971,0.229343,0.638343,0.407373,0.00607675,0.619803,0.429302,0.511963,0.531093,0.139501,0.0682948,0.702401,0.58524,0.583434,0.819478,0.871319,0.209207,0.396043,0.340143,0.0109511,0.384275,0.401375,0.362512,0.76271,0.689625,0.251494,0.645368,0.639644,0.831785,0.294169,0.154491,0.1512,0.943212,0.696502,0.253132,0.965105,0.656169,0.499509,0.535145,|0.258805,0.853585,0.703037,0.526511,0.851467,0.0945414,0.496107,0.177637,0.80953,0.647113,0.554195,0.309841,0.63792,0.574402,0.815088,0.084331,0.157104,0.180366,0.00714779,0.959882,0.440344,0.110799,0.644743,0.818972,0.136083,0.527091,0.403253,0.330565,0.961072,0.871399,0.650782,0.985966,0.466287,0.156921,0.962766,0.564743,0.838656,0.150766,0.584653,0.263183,0.688779,0.814012,0.900254,0.80145,0.431712,0.701128,0.292239,0.227487,0.176365,0.704993,0.565082,0.854637,0.0947698,0.206285,0.405605,0.246383,0.507476,0.432401,0.680757,0.452865,0.94916,0.916547,0.34677,0.812581,0.744438,0.488266,0.34808,0.378335,0.463498,0.717295,0.743944,0.194767,0.321373,0.937699,0.944631,0.226347,0.637712,0.247007,0.150119,0.117993,0.498629,0.239079,0.812865,0.130075,0.0216875,0.134573,0.838066,0.0886796,0.0316667,0.382133,0.389691,0.890734,0.564726,0.37999,0.531032,0.688225,0.704591,0.134453,0.306952,0.26995,0.218644,0.139864,0.517459,0.473788,0.652513,0.31758,0.0927047,0.773571,0.917804,0.766582,0.797421,0.0328726,0.0107876,0.994368,0.0697894,0.557052,0.059508,0.762827,0.417458,0.713438,0.845467,0.275305,0.606693,0.617193,0.626636,0.420093,0.0797704,0.637721,0.544262,0.378683,0.658225,0.0391234,0.0431323,0.0936903,0.377519,0.036831,0.00220609,0.962299,0.0334608,0.242963,0.580918,0.830648,0.0720583,0.891439,0.895377,0.0675606,0.0619385,0.54808,0.586204,0.839837,0.106286,0.353302,0.186627,0.530049,0.567857,0.0970157,0.235645,0.213008,0.390638,0.695086,0.772779,0.0252505,0.630487,0.712717,0.209893,0.207197,0.924163,0.019491,0.42605,0.0226955,0.433111,0.715277,0.854532,0.926624,0.673402,0.313536,0.955883,0.0763837,0.175694,0.879954,0.595047,0.743618,0.818429,0.427648,0.897751,0.329896,0.00508618,0.756679,0.415709,0.622354,0.121368,0.8359,0.316387,0.00892687,0.989907,0.165237,0.575223,0.929674,0.968586,0.295496,0.542741,0.0623666,0.549283,0.29579,0.576091,0.400179,0.438747,0.344115,0.025857,0.845838,0.632042,0.862303,0.594764,0.591438,0.21596,0.0112652,0.38217,0.517203,0.983064,0.918176,0.827347,0.263162,0.486685,0.362141,0.602113,0.0883418,0.345217,0.0888684,0.489283,0.653305,0.260824,0.014294,0.0629503,0.4438,0.585928,0.655693,0.14018,0.223544,0.606532,0.0893819,0.684864,0.827105,0.13434,0.362126,0.0301549,0.856783,0.883504,0.495192,0.322034,0.281389,0.848818,0.996652,0.281277,0.552969,0.976895,0.578976,0.507036,0.299631,0.266877,0.379066,0.698359,0.497286,0.385892,0.477226,0.305714,0.471596,0.953217,0.400507,0.540114,0.826199,0.998093,0.459358,0.106086,0.417602,0.283154,0.813446,0.993533,0.974315,0.345181,0.651401,0.237181,0.931752,0.356384,0.872099,0.384379,0.447591,0.318229,0.325098,0.793626,0.758668,0.643785,0.00645971,0.496627,0.804729,0.45674,0.825389,0.678061,0.834317,0.0817412,0.893151,0.0230244,0.590453,0.300173,0.626028,0.201195,0.482084,0.430577,0.621892,0.942521,0.834233,0.472251,0.108855,0.934157,0.359383,0.814229,0.929865,0.297614,0.259035,0.468007,0.460065,0.831135,0.902418,0.827183,0.351148,0.532589,0.130669,0.146451,0.831511,0.730189,0.93553,0.212533,0.58671,0.842878,0.298687,0.25843,0.583372,0.943913,0.85718,0.816956,0.00475609,0.370028,0.348735,0.342676,0.384251,0.473467,0.798011,0.0550979,0.36027,0.0883927,0.0827569,0.902048,0.968215,0.450771,0.959309,0.838489,0.417859,0.200229,0.741507,0.764852,0.805613,0.303474,0.977635,0.493602,0.149775,0.606058,0.57455,0.536602,0.574732,0.367787,0.213226,0.562713,0.109135,0.980528,0.665783,0.736217,0.135254,0.894967,0.940763,0.79607,0.321638,0.973395,0.400155,0.812973,0.79779,0.851665,0.624793,0.0919752,0.81239,0.653751,0.470533,0.266488,0.8456,0.0347046,0.294729,0.000927925,0.952499,0.0346164,0.617989,0.0169055,0.184501,0.438741,0.920449,0.366997,0.814531,0.303642,0.686098,0.441118,0.629984,0.973687,0.623431,0.532864,0.744781,0.999757,0.0320041,0.652326,0.229521,0.712792,0.624751,0.566604,0.216549,0.699167,0.383969,0.721998,0.549059,0.94179,0.843864,0.00214076,0.863181,0.843331,0.789864,0.276717,0.853954,0.624433,0.975806,0.184053,0.664902,0.0397685,0.773623,0.170453,0.417134,0.966071,0.627222,0.204554,0.022042,0.117095,0.414019,0.809596,0.585492,0.377663,0.917777,0.385483,0.547553,0.632563,0.585137,0.174262,0.118353,0.883708,0.868851,0.458079,0.535906,0.992738,0.826572,0.0781875,0.727986,0.456093,0.0473132,0.742875,0.273666,0.492269,0.957599,0.558733,0.948085,0.302577,0.126045,0.485044,0.456538,0.628238,0.152666,0.561678,0.387237,0.0490537,0.297594,0.514843,0.212824,0.171433,0.418263,0.507455,0.833486,0.868744,0.592927,0.660395,0.521769,0.626404,0.0478211,0.205611,0.243435,0.0338444,0.647328,0.218037,0.410573,0.814083,0.345513,0.157264,0.0493249,0.121803,0.315055,0.574147,0.140786,0.349783,0.164912,0.230715,0.0753486,0.82278,0.809419,0.583797,0.894655,0.770377,0.836877,0.480898,0.684343,0.898743,0.176211,0.428476,0.981334,0.915224,0.0593168,0.0224297,0.123421,0.320654,0.869817,0.164131,0.310167,0.0528032,0.584224,0.360935,0.0885518,0.758614,0.776891,0.770794,0.930317,0.191564,0.567726,0.737976,0.555723,0.258295,0.509607,0.310068,0.368053,0.533494,0.20258,0.601243,0.301872,0.433029,0.591381,0.728559,0.554839,0.940516,0.526473,0.0487507,0.933345,0.801986,0.61595,0.616639,0.593023,0.210254,0.309888,0.416635,0.425028,0.599734,0.747932,0.23157,0.941958,0.68386,0.517575,0.669307,0.151978,0.77243,0.95978,0.180251,0.556566,0.637929,0.356516,0.0050568,0.210968,0.808001,0.969234,0.682873,0.341479,0.631263,0.73125,0.022624,0.318522,0.240481,0.169111,0.573351,0.642872,0.249672,0.147154,0.108862,0.331888,0.403225,0.439375,0.708698,0.855474,0.616638,0.980368,0.0198854,0.274232,0.432426,0.100736,0.103847,0.872387,0.0633016,0.11575,0.716964,0.795847,0.50992,0.743036,0.258662,0.726488,0.990637,0.710345,0.785782,0.841193,0.830782,0.0664433,0.241551,0.127348,0.97638,0.994274,0.572301,0.262269,0.59082,0.142552,0.829029,0.120721,0.130962,0.340108,0.0656559,0.0713365,0.290202,0.989745,0.180646,0.28796,0.158653,0.421306,0.127448,0.80978,0.504601,0.303853,0.835063,0.283483,0.349509,0.91829,0.790679,0.763734,0.12372,0.637917,0.331581,0.758978,0.569204,0.857249,0.302227,0.325185,0.425627,0.122886,0.691339,0.229026,0.994196,0.0391693,0.0703977,0.865423,0.627452,0.241264,0.983996,0.252827,0.973525,0.667087,0.916439,0.505464,0.629072,0.766758,0.523104,0.415622,0.106213,0.450343,0.00230217,0.153105,0.139024,0.281949,0.641723,0.485858,0.694776,0.2217,0.721372,0.705912,0.775595,0.106984,0.954775,0.0907381,0.341765,0.118642,0.00686854,0.874901,0.132658,0.746339,0.145216,0.456061,0.644988,0.915562,0.0827609,0.20203,0.978889,0.115089,0.488316,0.53266,0.363844,0.333402,0.0466862,0.666125,0.325531,0.774601,0.163592,0.195794,0.64557,0.23374,0.36866,0.318988,0.266948,0.732316,0.311515,0.845819,0.551953,0.671529,0.522145,0.21268,0.134693,0.225774,0.635529,0.65114,0.847774,0.478231,0.453738,0.990164,0.0385059,0.44946,0.114389,0.272486,0.949581,0.0843716,0.192426,0.180427,0.368268,0.406495,0.964147,0.251294,0.949613,0.0541106,0.341376,0.680372,0.459569,0.396065,0.697637,0.396402,0.257073,0.476912,0.853199,0.339094,0.754441,0.411321,0.323593,0.199079,0.744766,0.0164103,0.329947,0.254409,0.0714368,0.150727,0.445573,0.216909,0.168664,0.950049,0.748494,0.300755,0.084989,0.881313,0.985811,0.905206,0.599031,0.665842,0.571978,0.488626,0.427199,0.702037,0.556246,0.446102,0.732703,0.756091,0.697546,0.417842,0.178399,0.0832496,0.176015,0.091008,0.122147,0.848637,0.222822,0.215359,0.692159,0.252001,0.73187,0.415004,0.776539,0.578545,0.759244,0.706253,0.472639,0.0863174,0.477273,0.492659,0.789296,0.937948,0.263237,0.686594,0.244364,0.2336,0.279043,0.132276,0.201452,0.269551,0.413448,0.924961,0.0544595,0.0285977,0.658782,0.260152,0.882911,0.986559,0.115525,0.959076,0.906872,0.916635,0.371774,0.741773,0.593349,0.636291,0.991159,0.703417,0.892979,0.0239359,0.242666,0.0680425,0.67419,0.827195,0.936102,0.530267,0.800917,0.317646,0.167624,0.167901,0.836224,0.452886,0.411156,0.000853062,0.732935,0.462925,0.837452,0.657617,0.971848,0.788654,0.910661,0.429777,0.73128,0.0978805,0.54441,0.701051,0.824123,0.608044,0.526763,0.33187,0.38443,0.759227,0.819623,0.509171,0.962391,0.0816253,0.197616,0.184259,0.635279,0.446612,0.210595,0.185742,0.265664,0.204003,0.734127,0.398257,0.502495,0.192039,0.309445,0.385037,0.103688,0.622164,0.0344598,0.883021,0.731823,0.870429,0.05216,0.0167118,0.736709,0.430094,0.611585,0.203893,0.929704,0.169927,0.622944,0.781778,0.210135,0.76123,0.540386,0.733378,0.870421,0.480923,0.684533,0.174192,0.137455,0.789636,0.13632,0.819377,0.0733622,0.296451,0.441011,0.877047,0.626917,0.797536,0.805845,0.501953,0.110673,0.453028,0.371517,0.500705,0.764057,0.855327,0.996606,0.968659,0.559917,0.971815,0.777644,0.889778,0.00498635,0.0149889,0.385041,0.393868,0.288153,0.825321,0.582953,0.799266,0.0598369,0.558802,0.915806,0.546845,0.560522,0.137554,0.877312,0.480685,0.930803,0.0548688,0.164233,0.0173216,0.433286,0.03614,0.728079,0.26337,0.535699,0.0347976,0.462856,0.129848,0.511935,0.475171,0.793267,0.646901,0.22422,0.812959,0.330844,0.529743,0.279563,0.523669,0.638652,0.264941,0.236302,0.749231,0.792801,0.170363,0.920008,0.904482,0.334382,0.606374,0.223314,0.256661,0.349597,0.036415,|0.747995,0.84874,0.460983,0.0889661,0.773504,0.385072,0.575986,0.111704,0.211459,0.945979,0.923354,0.0157264,0.949568,0.0650835,0.58645,0.139833,0.569541,0.0715488,0.752472,0.675958,0.447822,0.307205,0.266195,0.451575,0.873105,0.963806,0.695438,0.323937,0.709883,0.453154,0.182195,0.49432,0.104804,0.541316,0.603728,0.2829,0.966402,0.37378,0.36856,0.820305,0.63932,0.828476,0.342533,0.572086,0.0504993,0.792238,0.753825,0.625427,0.562522,0.0839536,0.0942216,0.803957,0.564584,0.961648,0.93149,0.916626,0.739221,0.505865,0.954128,0.745101,0.176654,0.638429,0.83383,0.0260656,0.746958,0.139471,0.351594,0.662606,0.892169,0.819443,0.340109,0.922109,0.208995,0.825033,0.391344,0.575094,0.850969,0.432197,0.00555301,0.951251,0.847295,0.187006,0.284059,0.808549,0.619406,0.429335,0.651425,0.124749,0.54018,0.371304,0.542363,0.753311,0.00440836,0.754538,0.982943,0.554311,0.799594,0.700733,0.713864,0.171605,0.0499769,0.700872,0.649438,0.822824,0.218696,0.154593,0.00841153,0.238039,0.266319,0.164098,0.655207,0.761472,0.6076,0.649077,0.0536217,0.0154179,0.237255,0.8496,0.660588,0.751092,0.656294,0.624364,0.940072,0.0252339,0.381705,0.555636,0.178343,0.0563785,0.0200516,0.0576589,0.406466,0.724388,0.0822802,0.216406,0.162029,0.995219,0.870449,0.456,0.771338,0.0392125,0.481,0.261877,0.73494,0.745129,0.428389,0.456806,0.449102,0.914633,0.996047,0.905427,0.334687,0.429588,0.985232,0.157876,0.754854,0.394761,0.321121,0.0894947,0.192989,0.677527,0.0867823,0.272358,0.686543,0.340703,0.282721,0.130031,0.971056,0.173464,0.776935,0.0298069,0.898441,0.657469,0.030629,0.639231,0.884925,0.400701,0.38058,0.718669,0.63522,0.0909334,0.546279,0.405041,0.971235,0.0981647,0.801772,0.644972,0.123447,0.371568,0.10528,0.708243,0.114265,0.0394878,0.995148,0.944316,0.64684,0.904909,0.485864,0.0336094,0.287271,0.494529,0.178611,0.937521,0.886743,0.399021,0.813538,0.310843,0.898476,0.781695,0.393807,0.365247,0.412375,0.750148,0.416221,0.618283,0.989286,0.233098,0.278958,0.780211,0.211277,0.372072,0.974696,0.205335,0.0905883,0.0186938,0.00542992,0.782331,0.520764,0.136473,0.171249,0.985329,0.0851262,0.642262,0.602149,0.144364,0.778901,0.820498,0.696681,0.133194,0.827628,0.640735,0.594944,0.370647,0.642889,0.00685936,0.598176,0.82682,0.914529,0.815079,0.110979,0.439179,0.774356,0.800346,0.281064,0.16801,0.5562,0.496739,0.196426,0.432802,0.729624,0.498492,0.639407,0.38705,0.0550916,0.684435,0.990028,0.375674,0.0347221,0.441321,0.245651,0.765578,0.00378543,0.34074,0.175519,0.402709,0.811739,0.459039,0.969255,0.086832,0.946711,0.868038,0.232388,0.595801,0.12584,0.151232,0.181163,0.172818,0.043855,0.727219,0.544387,0.750522,0.64997,0.176838,0.844475,0.292815,0.489586,0.480961,0.53883,0.882244,0.741275,0.154817,0.0325183,0.0689574,0.435757,0.0156199,0.531398,0.743621,0.86703,0.657142,0.307824,0.0725266,0.0486408,0.779179,0.0859164,0.465284,0.0845804,0.407691,0.181027,0.245152,0.369329,0.708604,0.765554,0.417031,0.0510847,0.720084,0.0654609,0.933983,0.21153,0.319474,0.824837,0.91343,0.689845,0.312621,0.627557,0.630963,0.700968,0.726457,0.164244,0.172478,0.734027,0.48889,0.486767,0.973049,0.878744,0.344392,0.567742,0.488348,0.834284,0.435963,0.552593,0.223084,0.273419,0.675087,0.391441,0.0562015,0.253949,0.0901597,0.294878,0.72904,0.799546,0.922539,0.543415,0.528097,0.513562,0.634782,0.461917,0.35742,0.905561,0.816231,0.336342,0.578971,0.962304,0.35186,0.454236,0.322075,0.743669,0.263778,0.836352,0.780418,0.90281,0.141494,0.505765,0.99296,0.883541,0.652251,0.000292122,0.745347,0.0659608,0.911266,0.772819,0.0644259,0.672776,0.0773906,0.756764,0.976533,0.915764,0.837338,0.982599,0.873105,0.581757,0.0687603,0.708262,0.838928,0.987196,0.926012,0.723182,0.766182,0.907547,0.059096,0.276052,0.365116,0.524556,0.470087,0.147088,0.982599,0.259958,0.841442,0.641526,0.608215,0.756224,0.215822,0.401615,0.244912,0.947908,0.395788,0.157958,0.703634,0.655044,0.33515,0.671297,0.599737,0.523061,0.261259,0.115547,0.837057,0.265078,0.0182669,0.233497,0.423224,0.872978,0.877614,0.180112,0.0423954,0.896568,0.152928,0.243032,0.966206,0.20244,0.644844,0.781837,0.184389,0.705763,0.16478,0.0245561,0.156987,0.544765,0.503664,0.520405,0.180057,0.0806653,0.662865,0.825446,0.620309,0.553357,0.799372,0.565267,0.775358,0.413568,0.69573,0.937244,0.932738,0.198868,0.286688,0.990515,0.239259,0.289327,0.356749,0.61773,0.752294,0.163065,0.607401,0.469248,0.887654,0.660807,0.77479,0.921889,0.987387,0.169634,0.244044,0.742734,0.756695,0.827011,0.341441,0.550903,0.999764,0.954457,0.943335,0.135093,0.126096,0.644923,0.258497,0.0950859,0.712519,0.268433,0.0664759,0.109638,0.862403,0.534204,0.399002,0.724141,0.117192,0.308899,0.411663,0.208036,0.307206,0.381105,0.647066,0.000601828,0.455778,0.958395,0.98536,0.77239,0.276967,0.789954,0.623443,0.528623,0.677061,0.46913,0.778194,0.21097,0.68038,0.941541,0.612572,0.295269,0.406262,0.950656,0.106101,0.891845,0.0723344,0.414013,0.330234,0.231893,0.860453,0.751069,0.0302495,0.430203,0.0324975,0.49256,0.904429,0.268177,0.116407,0.452571,0.844667,0.0281128,0.813019,0.250475,0.931394,0.898864,0.758919,0.263527,0.591238,0.787081,0.173037,0.761955,0.616609,0.436157,0.50667,0.30203,0.326088,0.913185,0.288341,0.583072,0.593426,0.843863,0.606129,0.34237,0.0941674,0.901575,0.267991,0.0747926,0.180148,0.481562,0.156629,0.481625,0.767707,0.0618308,0.795806,0.847018,0.368419,0.843399,0.901991,0.0989627,0.270909,0.455934,0.29561,0.0328432,0.867071,0.907214,0.751215,0.100275,0.141094,0.910166,0.711486,0.229797,0.698066,0.0303641,0.984571,0.412696,0.254953,0.217403,0.748853,0.310361,0.965672,0.804235,0.521748,0.551935,0.200658,0.540448,0.0424573,0.0368478,0.939989,0.759758,0.790785,0.0972526,0.148439,0.328927,0.109468,0.412714,0.611122,0.705444,0.498155,0.71372,0.406355,0.477065,0.0195427,0.216253,0.701011,0.281705,0.355692,0.248893,0.948189,0.455135,0.355916,0.697676,0.963826,0.3648,0.941638,0.191993,0.970055,0.733914,0.0250758,0.952736,0.374185,0.312379,0.490771,0.984534,0.892023,0.630773,0.33195,0.836933,0.141794,0.251818,0.665584,0.116143,0.626944,0.819733,0.065161,0.096783,0.963096,0.869738,0.291017,0.641723,0.885924,0.0789473,0.503179,0.00799477,0.999771,0.807786,0.0760214,0.165702,0.90891,0.504125,0.151035,0.0878314,0.446344,0.866425,0.0706403,0.735277,0.457306,0.132971,0.0220002,0.454729,0.432125,0.730855,0.127405,0.169038,0.908286,0.527701,0.19495,0.868973,0.0182401,0.176531,0.202674,0.0176059,0.0889255,0.039439,0.145548,0.968806,0.180048,0.128197,0.665325,0.343158,0.581324,0.356189,0.302735,0.739839,0.854386,0.382365,0.761833,0.476329,0.742537,0.00391567,0.96838,0.989477,0.886831,0.198533,0.193457,0.536132,0.536315,0.386946,0.736751,0.724083,0.718675,0.0487853,0.140998,0.844522,0.878506,0.978121,0.06967,0.215592,0.878733,0.142746,0.152808,0.402944,0.825977,0.0115802,0.251451,0.201807,0.90034,0.656644,0.433851,0.843298,0.510948,0.774593,0.43058,0.945833,0.431501,0.248086,0.082127,0.365586,0.787724,0.98542,0.343699,0.252027,0.930317,0.650684,0.772409,0.155819,0.417602,0.394029,0.326718,0.257347,0.598004,0.998677,0.734443,0.131461,0.851288,0.247346,0.658348,0.444481,0.769619,0.627829,0.332039,0.0815776,0.398604,0.904704,0.952693,0.191952,0.227796,0.429812,0.0169772,0.873287,0.852329,0.427449,0.758758,0.475121,0.416263,0.747826,0.976334,0.564211,0.652,0.411988,0.152304,0.616841,0.592652,0.673023,0.3762,0.877843,0.000474453,0.871276,0.773626,0.753279,0.749986,0.0018453,0.706673,0.370184,0.854824,0.220963,0.259967,0.778483,0.982483,0.644356,0.835228,0.158126,0.536527,0.953054,0.564776,0.504285,0.346305,0.906333,0.75057,0.0552288,0.108798,0.767485,0.919709,0.388613,0.898509,0.978431,0.0723816,0.512799,0.0686296,0.225342,0.633516,0.980683,0.879592,0.450278,0.286972,0.0802667,0.4831,0.457529,0.152995,0.728968,0.625358,0.122482,0.221429,0.390178,0.812083,0.792715,0.637077,0.290696,0.0888613,0.350256,0.469567,0.156118,0.248698,0.224181,0.404803,0.791031,0.971961,0.46822,0.373711,0.758854,0.872513,0.485144,0.805505,0.32217,0.283758,0.55428,0.687132,0.906166,0.428803,0.449535,0.977225,0.692629,0.241738,0.65555,0.860743,0.419201,0.156995,0.434655,0.722691,0.224542,0.998371,0.0243703,0.415169,0.980012,0.849267,0.559688,0.469592,0.0829158,0.299044,0.936267,0.201092,0.461396,0.557312,0.851807,0.248537,0.368714,0.452989,0.00976455,0.0921941,0.722031,0.442669,0.960312,0.0397627,0.559247,0.0445595,0.0233825,0.539529,0.92371,0.821533,0.061056,0.208551,0.796176,0.313785,0.0053314,0.967463,0.47266,0.173665,0.645659,0.0619565,0.242665,0.817641,0.200909,0.940779,0.681148,0.753753,0.911854,0.560603,0.147626,0.313886,0.40211,0.64691,0.173268,0.81246,0.885669,0.254768,0.879048,0.461809,0.196614,0.369488,0.776636,0.0786063,0.946886,0.476195,0.445033,0.63062,0.493998,0.0854529,0.583195,0.090054,0.155461,0.997907,0.722197,0.703987,0.912453,0.335189,0.649793,0.99053,0.211406,0.813036,0.880744,0.109112,0.83479,0.184339,0.431441,0.584147,0.45529,0.595526,0.516411,0.329798,0.447598,0.627735,0.522416,0.282634,0.99325,0.996392,0.206702,0.0384874,0.18154,0.772405,0.999181,0.409873,0.668242,0.86469,0.919452,0.0331929,0.909576,0.499965,0.00389743,0.663008,|0.89788,0.833122,0.110423,0.131736,0.843503,0.605187,0.473586,0.618713,0.118405,0.543347,0.39688,0.530746,0.812518,0.735968,0.328495,0.860341,0.895108,0.172259,0.5251,0.0857791,0.989503,0.866574,0.702651,0.0264007,0.663876,0.200664,0.294145,0.486527,0.202197,0.153112,0.684943,0.919277,0.393102,0.781101,0.631943,0.715787,0.00770515,0.921684,0.0551323,0.691612,0.371228,0.775157,0.639836,0.585826,0.793085,0.890352,0.826535,0.650251,0.702477,0.805188,0.488954,0.975959,0.741678,0.353654,0.0568721,0.118969,0.909799,0.998984,0.258655,0.936469,0.966423,0.843345,0.945703,0.968389,0.544793,0.791017,0.108802,0.695213,0.000521421,0.87366,0.615077,0.965989,0.831321,0.935957,0.937929,0.0618317,0.671784,0.9577,0.644119,0.802829,0.454522,0.116741,0.752919,0.703589,0.00432509,0.226331,0.731626,0.742661,0.299424,0.746052,0.519255,0.0786436,0.470452,0.111263,0.224557,0.641364,0.745685,0.542278,0.17362,0.0981186,0.0406551,0.276886,0.446002,0.694877,0.895493,0.812092,0.216667,0.988136,0.0832791,0.314299,0.0333927,0.197882,0.886908,0.988982,0.932799,0.105758,0.523601,0.567046,0.415187,0.644273,0.431338,0.214175,0.76507,0.168603,0.785446,0.804339,0.852898,0.83344,0.282958,0.380791,0.660672,0.365474,0.55696,0.382574,0.367559,0.247508,0.827683,0.699224,0.416702,0.808856,0.745962,0.700255,0.608084,0.244053,0.298638,0.318256,0.00464165,0.463434,0.269456,0.570214,0.56157,0.294042,0.424678,0.968439,0.57892,0.506325,0.97671,0.0174033,0.668486,0.306496,0.383219,0.336783,0.652756,0.402849,0.494618,0.112485,0.413282,0.114683,0.202881,0.848343,0.506953,0.783763,0.00415283,0.601255,0.978827,0.390549,0.790729,0.278094,0.834835,0.715513,0.807619,0.0695083,0.208814,0.473679,0.108614,0.460748,0.732549,0.269476,0.956033,0.332278,0.782797,0.45832,0.98102,0.359721,0.684712,0.107111,0.342046,0.713769,0.450243,0.719422,0.682986,0.824474,0.511704,0.94838,0.375114,0.926568,0.171529,0.237284,0.594511,0.373566,0.467354,0.238048,0.715728,0.843248,0.493864,0.678943,0.162764,0.558975,0.301406,0.829596,0.759548,0.94801,0.136819,0.922346,0.254716,0.838016,0.752241,0.0538331,0.416948,0.662087,0.758292,0.0266212,0.396992,0.44394,0.710521,0.374265,0.164034,0.223333,0.143577,0.778835,0.527867,0.159968,0.352838,0.645188,0.17828,0.581627,0.637344,0.475255,0.20019,0.0614132,0.877538,0.701645,0.954119,0.635568,0.659757,0.925397,0.258597,0.212707,0.891554,0.983191,0.201463,0.9927,0.551523,0.895191,0.265425,0.401257,0.1856,0.402851,0.141688,0.53102,0.579787,0.531198,0.937809,0.873132,0.449668,0.588587,0.608761,0.768566,0.88114,0.578792,0.429652,0.748566,0.217954,0.219766,0.728257,0.861358,0.8436,0.923433,0.658654,0.668499,0.362167,0.281449,0.600396,0.665576,0.0184744,0.0824326,0.261863,0.974369,0.902639,0.454646,0.360964,0.583605,0.632482,0.462827,0.411053,0.0487505,0.0149335,0.310704,0.689937,0.522976,0.531043,0.759942,0.540807,0.0790295,0.643819,0.436615,0.91837,0.208528,0.726837,0.68052,0.273183,0.876692,0.362542,0.306286,0.927539,0.144878,0.293528,0.719334,0.962507,0.180128,0.181097,0.219414,0.121299,0.265951,0.958476,0.131865,0.0696768,0.736596,0.174169,0.291286,0.481669,0.228818,0.54705,0.552054,0.764884,0.888606,0.921649,0.172785,0.222038,0.299435,0.887956,0.224325,0.550127,0.735932,0.456066,0.0299866,0.569108,0.209671,0.235709,0.508207,0.585102,0.591665,0.531768,0.151648,0.166631,0.332704,0.839149,0.436848,0.955475,0.535485,0.596057,0.657095,0.406344,0.955339,0.0785974,0.705774,0.196956,0.113424,0.462337,0.935254,0.370537,0.523295,0.283829,0.710183,0.450092,0.881824,0.474649,0.990793,0.782547,0.389051,0.988313,0.219018,0.614317,0.939691,0.640328,0.0425885,0.686483,0.643917,0.884268,0.908845,0.756535,0.826194,0.554176,0.212842,0.127832,0.714066,0.470991,0.542996,0.0611155,0.244488,0.954569,0.332097,0.784422,0.75327,0.18686,0.715069,0.155024,0.144861,0.60398,0.0656445,0.56288,0.555913,0.698464,0.241278,0.733905,0.408475,0.342389,0.130577,0.523403,0.150434,0.21524,0.229213,0.534174,0.396066,0.49815,0.791636,0.738866,0.020164,0.588741,0.321163,0.791737,0.26223,0.833552,0.794892,0.245701,0.401473,0.422248,0.618729,0.272323,0.55002,0.219908,0.583189,0.380701,0.218718,0.620453,0.075532,0.579989,0.495711,0.982934,0.778234,0.791585,0.404595,0.13089,0.70549,0.957468,0.83785,0.32105,0.581776,0.780349,0.394348,0.491107,0.0230799,0.455549,0.450708,0.864626,0.851373,0.0714352,0.129841,0.679375,0.940039,0.954063,0.227949,0.424965,0.741026,0.87331,0.301642,0.360893,0.136652,0.305055,0.185499,0.258541,0.422467,0.677443,0.666438,0.478748,0.0801347,0.449428,0.517476,0.659708,0.694223,0.155555,0.515619,0.631115,0.691365,0.151967,0.301797,0.380358,0.288558,0.729702,0.832793,0.00966322,0.390539,0.457147,0.504209,0.442528,0.948247,0.388559,0.841802,0.691909,0.920166,0.209319,0.532226,0.706908,0.406974,0.245757,0.752583,0.509245,0.397646,0.0804457,0.0476096,0.254073,0.598499,0.637944,0.635062,0.852706,0.305942,0.299791,0.117657,0.0378368,0.239482,0.165048,0.366179,0.24393,0.121103,0.807183,0.695539,0.236449,0.525104,0.263716,0.833215,0.0879847,0.142862,0.263393,0.872869,0.447655,0.817317,0.666338,0.36215,0.0777521,0.594249,0.415514,0.415035,0.879153,0.90858,0.664761,0.118161,0.816547,0.595528,0.217681,0.92318,0.501748,0.701472,0.163056,0.310983,0.892504,0.79231,0.0545518,0.794844,0.727272,0.251432,0.389152,0.573534,0.632177,0.533721,0.9075,0.282304,0.153889,0.370997,0.257893,0.536358,0.551299,0.908523,0.56223,0.35595,0.886812,0.0231329,0.760117,0.277034,0.755034,0.479251,0.220665,0.423931,0.776812,0.15105,0.888432,0.35778,0.0981644,0.432094,0.774983,0.690221,0.0580447,0.375074,0.0476936,0.40286,0.256215,0.719318,0.555212,0.664436,0.10926,0.883711,0.886839,0.00937635,0.433583,0.368839,0.721566,0.919558,0.473665,0.706199,0.440021,0.98769,0.64127,0.404235,0.310379,0.0505098,0.560964,0.399738,0.197263,0.226983,0.281638,0.212853,0.722582,0.499538,0.713993,0.241159,0.346843,0.354127,0.38621,0.764914,0.0318154,0.492408,0.954537,0.295999,0.425198,0.906011,0.969703,0.87026,0.478746,0.104544,0.400313,0.564352,0.670631,0.374319,0.0494878,0.46399,0.900711,0.605362,0.398921,0.346558,0.733893,0.23565,0.396861,0.267534,0.165181,0.831623,0.324717,0.0926225,0.526248,0.211955,0.315496,0.932808,0.535793,0.48819,0.959684,0.180717,0.416345,0.940252,0.772093,0.488884,0.0113633,0.791593,0.365065,0.191336,0.355777,0.577303,0.853665,0.614058,0.113471,0.750227,0.0672345,0.172544,0.229071,0.895688,0.57061,0.690069,0.912376,0.35781,0.265424,0.188823,0.198503,0.294031,0.969589,0.597757,0.732635,0.361828,0.752714,0.200623,0.995387,0.567414,0.47335,0.866764,0.271809,0.320468,0.794085,0.0302917,0.526523,0.896525,0.977241,0.276169,0.301537,0.983972,0.219057,0.565334,0.690208,0.822941,0.740653,0.300726,0.561287,0.472651,0.705499,0.526606,0.446883,0.120805,0.00438911,0.55196,0.0233132,0.601011,0.751764,0.838036,0.378089,0.622931,0.896853,0.928835,0.486794,0.134097,0.282457,0.229533,0.78767,0.17413,0.984039,0.0689034,0.258478,0.267668,0.210484,0.66554,0.525911,0.842509,0.0880567,0.907351,0.144989,0.765193,0.0967078,0.982207,0.67917,0.502142,0.4933,0.707591,0.389953,0.510369,0.818574,0.956906,0.0794334,0.517081,0.462526,0.774945,0.184094,0.445559,0.880536,0.0140535,0.542345,0.587621,0.0999168,0.896012,0.297318,0.367742,0.439939,0.124052,0.16057,0.643849,0.768233,0.795762,0.323092,0.384427,0.642963,0.278331,0.125564,0.875317,0.0384371,0.522432,0.441327,0.0378876,0.535302,0.00374925,0.851334,0.0411234,0.235868,0.00997227,0.0243809,0.0169834,0.879729,0.536633,0.427388,0.301127,0.105972,0.936463,0.480591,0.473365,0.460843,0.469136,0.207116,0.865556,0.0341206,0.346977,0.304133,0.142037,0.05549,0.431993,0.108394,0.798319,0.648245,0.292889,0.161256,0.480023,0.621497,0.73709,0.0982776,0.787282,0.26805,0.316789,0.181141,0.692633,0.430011,0.218129,0.471823,0.0961268,0.460816,0.448748,0.321162,0.736364,0.750909,0.0304244,0.316263,0.702177,0.635654,0.201448,0.846842,0.394102,0.864203,0.197409,0.828732,0.257876,0.636096,0.228958,0.695341,0.945235,0.363634,0.206553,0.22975,0.191999,0.34712,0.0548192,0.133709,0.986383,0.788864,0.271124,0.025218,0.290439,0.314655,0.948725,0.966515,0.485914,0.475313,0.345001,0.338268,0.281011,0.821755,0.267485,0.952396,0.424631,0.125758,0.869785,0.285662,0.788796,0.641891,0.534557,0.613693,0.277636,0.291553,0.0507572,0.561343,0.572663,0.834484,0.741306,0.0677532,0.524373,0.947426,0.137432,0.9519,0.879253,0.831089,0.0972251,0.682299,0.804282,0.175619,0.796163,0.658729,0.936941,0.574327,0.444557,0.1266,0.806191,0.268788,0.703967,0.833932,0.911606,0.162491,0.590774,0.591853,0.456143,0.00442612,0.987714,0.708218,0.150583,0.372937,0.149162,0.232633,0.959602,0.447218,0.0324227,0.607855,0.267449,0.463181,0.923637,0.239397,0.77378,0.198461,0.637203,0.747551,0.986125,0.523332,0.814046,0.299975,0.665039,0.365346,0.36642,0.89695,0.200381,0.000615954,0.455805,0.888958,0.178989,0.691759,0.869617,0.54759,0.665359,0.957755,0.488236,0.927959,0.569383,0.911962,0.168479,0.88509,0.798883,0.780633,0.27781,0.56084,0.804468,0.162247,0.0892394,0.339503,0.556583,0.893202,0.647172,0.237927,0.897401,0.026219,0.850871,0.0720097,0.199635,0.150665,0.715004,|0.67684,0.522842,0.0529333,0.179325,0.180138,0.435493,0.363437,0.231527,0.23075,0.629994,0.0830084,0.955292,0.12815,0.928828,0.250745,0.0732499,0.739111,0.697132,0.17408,0.146554,0.675631,0.706933,0.491408,0.536793,0.718448,0.876937,0.47345,0.281361,0.13908,0.443365,0.158586,0.683163,0.520166,0.928334,0.772573,0.306308,0.672083,0.469541,0.485461,0.324496,0.232574,0.206325,0.708187,0.00899494,0.922799,0.684076,0.951634,0.299651,0.811507,0.300459,0.566467,0.947541,0.663687,0.836238,0.159102,0.865604,0.38345,0.368362,0.448774,0.909539,0.912838,0.0315914,0.202178,0.536197,0.428736,0.910865,0.666228,0.224089,0.417655,0.716345,0.16787,0.495884,0.287436,0.141392,0.952705,0.634374,0.752073,0.376454,0.830645,0.470738,0.99836,0.458731,0.264426,0.850629,0.174572,0.88295,0.34135,0.106136,0.293061,0.835431,0.310359,0.364807,0.87864,0.211243,0.539239,0.793981,0.498733,0.534326,0.00168937,0.655274,0.778515,0.747245,0.258418,0.384365,0.928527,0.641373,0.623245,0.219963,0.669594,0.353731,0.393931,0.344007,0.598474,0.620479,0.16097,0.286435,0.203561,0.858064,0.89832,0.511232,0.0833889,0.469351,0.0741141,0.313738,0.0462379,0.365359,0.176733,0.380006,0.840964,0.697382,0.0909556,0.134117,0.438904,0.982804,0.670495,0.156189,0.493823,0.571403,0.575972,0.759147,0.0619899,0.587537,0.19805,0.327411,0.476596,0.330222,0.237856,0.519312,0.0408329,0.0916363,0.486433,0.015679,0.751077,0.0321241,0.10977,0.78041,0.360326,0.416951,0.181989,0.8141,0.510613,0.621562,0.347502,0.21138,0.430442,0.951068,0.344054,0.263509,0.916368,0.982126,0.690627,0.257018,0.242108,0.421244,0.589525,0.51113,0.60565,0.420494,0.431248,0.90502,0.642842,0.407257,0.42358,0.336723,0.241378,0.348464,0.886386,0.72393,0.444678,0.708503,0.465811,0.501064,0.862503,0.342747,0.18382,0.990948,0.915311,0.286374,0.762888,0.00231844,0.546128,0.462235,0.604889,0.805406,0.631206,0.315834,0.252819,0.968193,0.149751,0.278374,0.159959,0.501257,0.860801,0.844699,0.819801,0.942114,0.955642,0.540681,0.0688103,0.783254,0.857406,0.472113,0.212674,0.979965,0.883148,0.369336,0.449553,0.827169,0.93392,0.2576,0.693388,0.0345296,0.806699,0.694852,0.615836,0.149038,0.465973,0.604572,0.887604,0.301068,0.188744,0.0197741,0.0817368,0.770535,0.101875,0.944904,0.807226,0.426479,0.84728,0.598774,0.576972,0.698456,0.943072,0.782534,0.860715,0.0430328,0.367567,0.126803,0.503721,0.510562,0.684964,0.681172,0.00865692,0.22708,0.381537,0.657998,0.651072,0.739482,0.3077,0.729902,0.669582,0.666233,0.426369,0.155792,0.846145,0.156453,0.223446,0.560268,0.00195825,0.58597,0.00647968,0.0544555,0.950371,0.133593,0.507052,0.984637,0.645318,0.0759797,0.057982,0.0409483,0.598103,0.475063,0.809922,0.274907,0.842229,0.561565,0.325695,0.753611,0.621448,0.314599,0.24774,0.290873,0.135745,0.711086,0.315216,0.334771,0.742477,0.978397,0.264093,0.893894,0.602126,0.485363,0.67027,0.759338,0.630736,0.812087,0.541414,0.326532,0.428186,0.977665,0.0748807,0.572987,0.383166,0.402461,0.597787,0.880094,0.282204,0.559092,0.379463,0.904237,0.621386,0.33643,0.923868,0.646018,0.275918,0.332819,0.519467,0.0808083,0.56343,0.524043,0.00927788,0.165313,0.977349,0.111355,0.269076,0.23974,0.692943,0.527153,0.560703,0.509344,0.0308803,0.362568,0.356924,0.149359,0.245926,0.771353,0.848185,0.256239,0.673512,0.806853,0.216561,0.522723,0.65437,0.248234,0.774448,0.817966,0.898241,0.191717,0.394102,0.691925,0.00722426,0.203261,0.51917,0.603651,0.85634,0.562567,0.473328,0.494293,0.77941,0.153624,0.390714,0.361277,0.726147,0.220363,0.771709,0.5016,0.276817,0.655252,0.961909,0.700851,0.287393,0.105051,0.291112,0.0537993,0.918324,0.440734,0.385544,0.535892,0.684982,0.0444466,0.920236,0.0464855,0.0140218,0.62126,0.723404,0.327378,0.610415,0.298395,0.714979,0.658602,0.283934,0.43093,0.525891,0.315243,0.446574,0.658022,0.46922,0.606504,0.990918,0.407482,0.722725,0.778138,0.674467,0.673653,0.445189,0.62673,0.227325,0.00115067,0.236292,0.201196,0.496953,0.548363,0.713327,0.117601,0.490408,0.919923,0.0222088,0.313689,0.722159,0.677976,0.955876,0.00278342,0.342988,0.0705842,0.698796,0.726355,0.239828,0.389566,0.652328,0.859699,0.933393,0.155458,0.441175,0.879103,0.29177,0.110538,0.875413,0.141104,0.123727,0.902379,0.11399,0.797437,0.716365,0.783476,0.104434,0.247617,0.124695,0.550983,0.617528,0.0972521,0.584993,0.148812,0.891466,0.950651,0.815161,0.272223,0.785847,0.349139,0.78175,0.729976,0.0846087,0.424277,0.924773,0.341485,0.229276,0.941136,0.101772,0.868841,0.314914,0.23317,0.701205,0.16378,0.743735,0.612443,0.0113859,0.542602,0.52092,0.873285,0.15841,0.903092,0.218791,0.0314727,0.278503,0.416861,0.36481,0.724873,0.106309,0.929309,0.539922,0.290066,0.268641,0.871539,0.566356,0.318903,0.550399,0.215474,0.504989,0.206242,0.0833435,0.410782,0.254319,0.631602,0.279656,0.31457,0.951225,0.96285,0.990903,0.113948,0.696029,0.988065,0.537129,0.397178,0.592713,0.363576,0.866809,0.703024,0.90935,0.905116,0.0403788,0.119328,0.597486,0.576694,0.334158,0.37779,0.337041,0.623415,0.662576,0.586137,0.984643,0.0650176,0.810163,0.047091,0.575287,0.285865,0.247432,0.110773,0.569543,0.734842,0.3608,0.0225438,0.0353032,0.826684,0.347791,0.258966,0.175878,0.302433,0.0432074,0.00876933,0.58202,0.223885,0.588772,0.305642,0.572954,0.206246,0.28732,0.794607,0.178656,0.961258,0.447843,0.229544,0.568586,0.905229,0.0825143,0.598495,0.439541,0.464021,0.744796,0.256887,0.80669,0.93334,0.607342,0.39886,0.426857,0.567117,0.28917,0.720041,0.814531,0.0877841,0.476522,0.259194,0.263245,0.104776,0.162167,0.942776,0.308418,0.900158,0.59213,0.236428,0.707301,0.300731,0.183926,0.446213,0.672638,0.568014,0.875799,0.857167,0.0657856,0.26851,0.484468,0.682098,0.126554,0.305681,0.577554,0.643062,0.314011,0.431206,0.727222,0.292314,0.220664,0.450767,0.755642,0.242099,0.512046,0.260673,0.500118,0.463511,0.632316,0.276768,0.11401,0.367893,0.195741,0.301759,0.722842,0.669278,0.961816,0.875014,0.0298951,0.657297,0.52541,0.497574,0.899614,0.240477,0.199929,0.782254,0.540772,0.908538,0.831429,0.273771,0.201018,0.476841,0.197858,0.322085,0.502487,0.263448,0.219518,0.765447,0.318677,0.277254,0.772317,0.484783,0.622158,0.158613,0.149713,0.381131,0.899954,0.698366,0.168842,0.276607,0.479815,0.00610596,0.0100187,0.717727,0.937638,0.428929,0.427439,0.523692,0.165115,0.00530303,0.821914,0.164823,0.600531,0.19297,0.053735,0.320104,0.758019,0.326081,0.598934,0.301115,0.797416,0.453044,0.00465739,0.980303,0.319177,0.770734,0.494407,0.605955,0.305106,0.216794,0.580617,0.424715,0.106717,0.73924,0.241843,0.0433953,0.254714,0.860723,0.196236,0.338132,0.0244219,0.5758,0.726358,0.519836,0.976749,0.433017,0.675279,0.392516,0.210468,0.595737,0.470793,0.164337,0.544571,0.666867,0.0242047,0.587456,0.355835,0.127983,0.132762,0.910748,0.187204,0.0449323,0.781399,0.412046,0.404833,0.212499,0.584204,0.669104,0.635486,0.930306,0.335036,0.705962,0.220734,0.0916332,0.554752,0.428207,0.828598,0.740435,0.155774,0.334709,0.351397,0.668981,0.53413,0.827739,0.611184,0.973422,0.290958,0.790924,0.582973,0.146287,0.823865,0.478274,0.457067,0.25719,0.350531,0.483571,0.2074,0.356205,0.0268463,0.832852,0.639501,0.301025,0.196342,0.668396,0.230041,0.283679,0.407003,0.957969,0.388084,0.429942,0.21562,0.926602,0.487701,0.87728,0.299008,0.0631002,0.272743,0.123014,0.863095,0.652009,0.396396,0.0370886,0.149812,0.106854,0.0148293,0.482661,0.688212,0.45331,0.875279,0.620774,0.513377,0.263623,0.183641,0.721792,0.367324,0.0444815,0.0658805,0.234023,0.192723,0.57534,0.913981,0.15642,0.641649,0.805814,0.385072,0.680885,0.373544,0.470329,0.161827,0.107864,0.981025,0.444929,0.409792,0.746057,0.450474,0.331858,0.0558504,0.493752,0.158322,0.625286,0.0744216,0.755604,0.998082,0.830292,0.706741,0.142689,0.997272,0.903906,0.40306,0.245044,0.605404,0.967054,0.398665,0.688743,0.413326,0.391665,0.323354,0.108881,0.123951,0.497917,0.476475,0.342416,0.578694,0.808751,0.0762247,0.476944,0.287551,0.193829,0.740392,0.952691,0.836018,0.912658,0.424072,0.211048,0.46884,0.795263,0.774085,0.394711,0.838446,0.627306,0.649298,0.851933,0.042154,0.979405,0.737333,0.611254,0.536896,0.172229,0.721299,0.894224,0.907968,0.966767,0.161878,0.202678,0.69826,0.633563,0.41616,0.837711,0.221506,0.53848,0.898611,0.0105259,0.482631,0.385676,0.729884,0.833338,0.647811,0.90756,0.635957,0.0819917,0.386282,0.00501508,0.364107,0.939385,0.667177,0.239101,0.67215,0.636924,0.0315812,0.933119,0.217454,0.13235,0.137222,0.70711,0.827201,0.229418,0.641089,0.624104,0.411124,0.208684,0.366414,0.602403,0.613138,0.595215,0.92753,0.781564,0.517669,0.605525,0.201707,0.203233,0.0622583,0.0756561,0.348116,0.175201,0.414362,0.0525293,0.111238,0.160728,0.662041,0.134123,0.723969,0.038808,0.145297,0.310366,0.535394,0.17864,0.748287,0.0584763,0.743505,0.209437,0.480473,0.210125,0.0888044,0.787315,0.154383,0.27378,0.0535096,0.185097,0.692073,0.447973,0.957333,0.940469,0.239553,0.829484,0.607171,0.24869,0.23675,0.726185,0.849899,0.644686,0.426908,0.318777,0.109002,0.0404766,0.0750917,0.993621,0.22814,0.0217263,0.18408,0.958255,0.4277,0.335801,0.627215,0.498642,0.682453,0.724611,0.0180188,0.0491519,0.382087,0.611972,0.893541,0.597729,|0.657483,0.996427,0.287538,0.682084,0.160611,0.252147,0.211844,0.206579,0.872523,0.794249,0.926766,0.0151805,0.295555,0.303332,0.310232,0.409872,0.98137,0.472295,0.427255,0.298926,0.463968,0.151551,0.863816,0.842776,0.744335,0.97973,0.470862,0.293444,0.795373,0.0842216,0.532711,0.758565,0.839715,0.604665,0.744316,0.162554,0.0114992,0.143975,0.185963,0.525117,0.755447,0.707615,0.920318,0.516263,0.0370257,0.423974,0.207003,0.510308,0.0238379,0.0596303,0.687769,0.800121,0.155538,0.929959,0.372465,0.667197,0.283832,0.363006,0.418112,0.957891,0.864483,0.569051,0.944786,0.443621,0.246819,0.780527,0.785689,0.848223,0.485436,0.132602,0.0126017,0.644243,0.225669,0.598956,0.770533,0.375967,0.753813,0.256492,0.408695,0.065349,0.774584,0.958173,0.156569,0.773137,0.492133,0.586341,0.544508,0.894238,0.193099,0.289264,0.583629,0.0590786,0.754479,0.101162,0.0619293,0.387877,0.542145,0.322716,0.497664,0.543968,0.0330079,0.834196,0.148296,0.42379,0.086073,0.0539563,0.178755,0.963962,0.0309475,0.775888,0.388915,0.569455,0.577059,0.465226,0.394452,0.41971,0.0667124,0.300451,0.184533,0.831411,0.590356,0.341747,0.145514,0.717818,0.96173,0.00386518,0.373685,0.325739,0.530762,0.893213,0.735132,0.710064,0.243344,0.100022,0.14541,0.848267,0.943703,0.364188,0.56764,0.775263,0.502303,0.104278,0.985669,0.197092,0.900186,0.754583,0.603788,0.41746,0.322953,0.0514542,0.688252,0.828598,0.104526,0.417363,0.48026,0.580942,0.730224,0.162728,0.887081,0.784765,0.558339,0.763766,0.696276,0.415235,0.993258,0.382661,0.214027,0.921284,0.11745,0.219291,0.434102,0.853778,0.159497,0.272115,0.776619,0.0299626,0.0034824,0.705681,0.650212,0.707821,0.171378,0.728172,0.887719,0.103017,0.309878,0.614914,0.696467,0.800613,0.788218,0.273542,0.279086,0.47176,0.856625,0.908004,0.278744,0.220719,0.899046,0.626489,0.0121375,0.945341,0.37115,0.360335,0.974376,0.0818936,0.862681,0.624336,0.683413,0.523233,0.150339,0.286464,0.315262,0.558911,0.965326,0.826143,0.489257,0.692846,0.160041,0.601362,0.139944,0.94045,0.4304,0.499719,0.0423184,0.791243,0.624825,0.865523,0.102633,0.839951,0.0823849,0.52113,0.581605,0.385565,0.181391,0.677576,0.836035,0.824043,0.0936101,0.555559,0.629976,0.0862344,0.394662,0.754501,0.157313,0.964273,0.614,0.743316,0.709819,0.752256,0.714194,0.897837,0.952554,0.563738,0.197558,0.331452,0.029456,0.504342,0.984053,0.127324,0.3387,0.235909,0.45378,0.222413,0.771967,0.600231,0.236827,0.268291,0.530932,0.91352,0.0893124,0.999138,0.41209,0.660637,0.599594,0.726022,0.0511967,0.298733,0.443774,0.875145,0.407731,0.775952,0.542082,0.400608,0.69371,0.65038,0.292305,0.837634,0.751773,0.262154,0.234344,0.211022,0.431499,0.458047,0.812816,0.933498,0.6936,0.823575,0.597344,0.107235,0.258775,0.134194,0.972921,0.812163,0.33627,0.0465165,0.084556,0.69733,0.36031,0.0524834,0.748322,0.232817,0.338429,0.0864217,0.275752,0.303052,0.491087,0.0407963,0.13737,0.41688,0.358241,0.236371,0.236606,0.664585,0.892416,0.225777,0.843217,0.607608,0.0328696,0.320764,0.695409,0.803256,0.690874,0.835384,0.590474,0.456955,0.563641,0.558871,0.00140673,0.292275,0.362896,0.277399,0.848788,0.410957,0.510737,0.998298,0.267908,0.163368,0.329779,0.116116,0.00113112,0.824906,0.870635,0.662812,0.472586,0.178737,0.638904,0.127153,0.952409,0.840218,0.308564,0.513209,0.0566493,0.992749,0.889722,0.0807464,0.978132,0.0307912,0.548929,0.807139,0.498387,0.412305,0.372347,0.200192,0.111358,0.315815,0.111009,0.989709,0.0273504,0.776589,0.144076,0.028192,0.739116,0.84403,0.107397,0.775244,0.225054,0.425975,0.758987,0.879705,0.371736,0.245015,0.0477118,0.543036,0.777762,0.791095,0.0434381,0.315036,0.661069,0.729536,0.667436,0.765473,0.181864,0.716029,0.385858,0.506473,0.638496,0.678833,0.475669,0.566959,0.587131,0.45482,0.595238,0.712997,0.771873,0.894135,0.212995,0.928186,0.322183,0.901638,0.0968908,0.0942218,0.708187,0.421464,0.321759,0.919942,0.745397,0.178556,0.921,0.86593,0.708473,0.705247,0.568394,0.59042,0.87162,0.493837,0.474251,0.0870441,0.412099,0.192692,0.791987,0.823969,0.148695,0.196674,0.643533,0.495977,0.278853,0.718846,0.0769224,0.869269,0.614275,0.280555,0.898377,0.388538,0.0580794,0.692895,0.507167,0.644608,0.412968,0.329272,0.0810573,0.57121,0.0169926,0.17839,0.587453,0.081254,0.634999,0.378807,0.176824,0.178063,0.299816,0.161244,0.82044,0.240433,0.925971,0.809366,0.736358,0.999115,0.00430489,0.0197555,0.384329,0.696346,0.96503,0.143501,0.727225,0.7759,0.593588,0.0831383,0.556955,0.534278,0.320784,0.699941,0.408435,0.28071,0.328668,0.359797,0.661701,0.496355,0.784649,0.803525,0.395486,0.600232,0.262984,0.209306,0.483829,0.563816,0.656496,0.202219,0.498049,0.309622,0.564393,0.187129,0.232828,0.552893,0.259242,0.64035,0.917058,0.101805,0.280716,0.50965,0.729303,0.566941,0.818532,0.0237217,0.526252,0.825745,0.720185,0.232528,0.194795,0.0531844,0.715709,0.978146,0.845551,0.481521,0.490443,0.716981,0.251617,0.731529,0.250519,0.542831,0.0111673,0.0935746,0.498797,0.361774,0.674184,0.20431,0.637864,0.0264633,0.694079,0.876235,0.000705361,0.118261,0.173844,0.489211,0.101627,0.171372,0.766816,0.479227,0.0330301,0.823587,0.371144,0.826122,0.224147,0.748721,0.636734,0.760716,0.263478,0.49542,0.0364164,0.048914,0.48191,0.144083,0.464675,0.220662,0.572289,0.848148,0.392604,0.77133,0.7537,0.515902,0.483998,0.256094,0.807085,0.615225,0.293682,0.609035,0.392521,0.968189,0.899118,0.587336,0.602929,0.566415,0.0110449,0.110342,0.790723,0.164919,0.410478,0.736735,0.712951,0.514406,0.925873,0.334262,0.506325,0.526282,0.54818,0.727361,0.453247,0.882227,0.0827029,0.671363,0.334633,0.506555,0.369584,0.605887,0.708367,0.484794,0.178291,0.264554,0.177877,0.921543,0.973094,0.539569,0.527032,0.174354,0.11879,0.811822,0.817848,0.701765,0.765508,0.832611,0.289743,0.0114851,0.526335,0.768647,0.203525,0.336065,0.769376,0.529284,0.876686,0.237797,0.998709,0.297791,0.366294,0.720089,0.00944275,0.858591,0.775643,0.156992,0.211875,0.791554,0.904442,0.784977,0.658858,0.696505,0.473163,0.561168,0.0300637,0.535832,0.0491638,0.0346241,0.812874,0.205474,0.134908,0.139492,0.424039,0.199004,0.872891,0.689964,0.0287341,0.878639,0.476498,0.580051,0.00591081,0.0599775,0.73255,0.435607,0.974998,0.49464,0.112781,0.692013,0.262725,0.0435732,0.176673,0.0602323,0.685856,0.0382764,0.831746,0.782783,0.1116,0.121531,0.349283,0.269276,0.314551,0.622428,0.754452,0.765773,0.433022,0.365945,0.448808,0.998904,0.157193,0.884311,0.277867,0.748219,0.220694,0.356793,0.225165,0.536712,0.387416,0.890343,0.547524,0.542,0.917923,0.701072,0.827469,0.365084,0.0197714,0.941144,0.963045,0.2414,0.113438,0.470953,0.0446327,0.18996,0.753605,0.539813,0.479839,0.998864,0.891374,0.319213,0.262786,0.449366,0.862782,0.817616,0.658372,0.181121,0.717408,0.29823,0.621061,0.943007,0.732542,0.181032,0.225633,0.901759,0.400802,0.557856,0.146391,0.760211,0.870583,0.826191,0.773622,0.734325,0.377134,0.780284,0.197594,0.412958,0.220014,0.84103,0.933843,0.122621,0.109269,0.388177,0.789204,0.524695,0.586455,0.621666,0.510257,0.205159,0.174152,0.640218,2.93255e-05,0.145576,0.758553,0.850521,0.208914,0.36111,0.254657,0.467739,0.17664,0.416595,0.223362,0.996664,0.259466,0.685524,0.599773,0.632073,0.659045,0.222818,0.164515,0.295437,0.359398,0.243292,0.91009,0.566295,0.769395,0.91276,0.203524,0.956574,0.289367,0.0392568,0.506313,0.19535,0.721492,0.39305,0.180475,0.633017,0.876362,0.544087,0.0453739,0.542031,0.616938,0.550375,0.52368,0.366896,0.0329545,0.296394,0.276762,0.336742,0.593239,0.403221,0.0228392,0.562911,0.280519,0.842364,0.773898,0.600875,0.344047,0.408769,0.251486,0.353972,0.625723,0.202347,0.956983,0.675674,0.62234,0.237588,0.732555,0.591133,0.837907,0.194942,0.312854,0.140235,0.904518,0.842038,0.981599,0.939014,0.243507,0.893121,0.155288,0.500093,0.503716,0.319618,0.261168,0.395805,0.830161,0.0301555,0.584357,0.239305,0.207915,0.987507,0.421887,0.155875,0.199016,0.499393,0.0211548,0.941036,0.554407,0.510827,0.0129158,0.975801,0.0760545,0.408855,0.537691,0.496324,0.234081,0.550251,0.33446,0.0175202,0.353157,0.0993853,0.0809395,0.57516,0.150706,0.834834,0.0229383,0.192845,0.41439,0.148317,0.169034,0.573099,0.0187424,0.502844,0.997761,0.164133,0.389109,0.553849,0.633641,0.10026,0.324722,0.345934,0.408876,0.582627,0.859788,0.982311,0.676097,0.150333,0.0292861,0.266911,0.100867,0.383762,0.655677,0.85696,0.762659,0.434492,0.982351,0.642196,0.26944,0.863612,0.403864,0.597792,0.366465,0.188262,0.288926,0.859028,0.517029,0.497392,0.823219,0.801255,0.558677,0.569548,0.111846,0.28547,0.419801,0.532163,0.0651274,0.939586,0.755869,0.0630946,0.596592,0.555168,0.332209,0.0777274,0.221262,0.892128,0.207636,0.0780853,0.766836,0.588557,0.681069,0.0267438,0.237517,0.596303,0.368501,0.276066,0.977863,0.628291,0.447798,0.217781,0.874162,0.390702,0.151753,0.97656,0.781106,0.0785991,0.827749,0.356185,0.393546,0.815974,0.906429,0.641916,0.910339,0.502446,0.665327,0.912181,0.317045,0.969343,0.772005,0.759673,0.12778,0.236976,0.405457,0.111746,0.903121,0.323376,0.878807,0.266142,0.885052,0.649026,0.416322,0.0388969,0.447201,0.054673,0.61319,0.999119,0.528436,0.735563,0.144766,0.400822,0.132915,0.457935,0.018721,0.658815,|0.797935,0.055079,0.0944115,0.623699,0.756235,0.859945,0.753144,0.922081,0.875061,0.103831,0.993383,0.152209,0.946632,0.253362,0.530311,0.406809,0.246475,0.0643918,0.216797,0.676076,0.751465,0.040853,0.898676,0.311356,0.0504717,0.306402,0.764788,0.883282,0.517075,0.600716,0.23993,0.398474,0.499829,0.240438,0.769915,0.0713277,0.341006,0.917893,0.765035,0.5019,0.21484,0.82892,0.114592,0.0699754,0.650321,0.453237,0.663239,0.681757,0.113799,0.332671,0.373856,0.685388,0.361981,0.529047,0.596609,0.441186,0.618412,0.961717,0.939961,0.45316,0.617411,0.159102,0.388551,0.808343,0.996522,0.166701,0.556568,0.162054,0.35683,0.768839,0.901647,0.132328,0.262964,0.140632,0.388242,0.769486,0.909234,0.957841,0.441634,0.272998,0.625585,0.0563984,0.503103,0.00785315,0.875593,0.219282,0.605887,0.451158,0.830787,0.863314,0.33112,0.718542,0.447557,0.558991,0.6575,0.684742,0.618866,0.511374,0.236522,0.398625,0.988227,0.932167,0.553561,0.696268,0.933094,0.220963,0.76284,0.622448,0.72251,0.403054,0.220551,0.366021,0.637706,0.506002,0.548672,0.500602,0.184101,0.520364,0.249321,0.582952,0.0423352,0.886424,0.812352,0.94842,0.0999981,0.947979,0.303861,0.787344,0.813791,0.741234,0.546234,0.811014,0.271059,0.948644,0.915327,0.642029,0.328486,0.873655,0.878232,0.282578,0.534512,0.702765,0.440163,0.442161,0.046829,0.79153,0.544114,0.427729,0.185588,0.101528,0.826943,0.274534,0.485403,0.556162,0.323066,0.620101,0.824408,0.866321,0.883669,0.111011,0.593427,0.14844,0.882705,0.879611,0.140886,0.322189,0.219421,0.550174,0.0488127,0.0286011,0.681518,0.196333,0.642405,0.133201,0.0983811,0.447468,0.757282,0.52232,0.565261,0.963131,0.201322,0.768388,0.56615,0.256751,0.998532,0.356603,0.671506,0.676154,0.142566,0.502495,0.958218,0.365962,0.301352,0.936743,0.146527,0.722421,0.138502,0.666402,0.157607,0.861856,0.732446,0.343772,0.785193,0.27894,0.481748,0.568371,0.427728,0.498471,0.418205,0.122279,0.355065,0.0204782,0.723111,0.686141,0.638532,0.775707,0.654707,0.203323,0.172895,0.562451,0.39186,0.376521,0.217179,0.110207,0.702292,0.670023,0.575275,0.66305,0.155269,0.864712,0.228955,0.510059,0.938908,0.486956,0.488951,0.0494719,0.468567,0.974953,0.600201,0.0452767,0.672513,0.257084,0.241885,0.138857,0.766926,0.85105,0.366781,0.230826,0.595727,0.584904,0.357771,0.150921,0.676625,0.298476,0.877407,0.0451832,0.342661,0.0580222,0.196366,0.244156,0.382577,0.721413,0.893507,0.89467,0.0696326,0.83422,0.871464,0.0680143,0.657205,0.503408,0.156335,0.805861,0.738902,0.23122,0.390089,0.247821,0.480664,0.763879,0.633517,0.948798,0.267807,0.635357,0.498872,0.96844,0.951501,0.351998,0.356179,0.180743,0.00373411,0.733813,0.903229,0.342266,0.100621,0.432137,0.595061,0.0638971,0.106217,0.491092,0.585072,0.396482,0.126265,0.341086,0.343691,0.21182,0.585085,0.240944,0.205798,0.151109,0.740999,0.28625,0.724583,0.620988,0.587228,0.932872,0.899294,0.663159,0.765077,0.829155,0.00548649,0.613154,0.915129,0.263471,0.18002,0.579709,0.405239,0.020225,0.0465724,0.448714,0.363618,0.743322,0.762508,0.247803,0.931822,0.089446,0.211324,0.719656,0.0614139,0.173228,0.0384266,0.20355,0.687226,0.512946,0.678497,0.78733,0.0206798,0.546924,0.315208,0.00990719,0.505447,0.661013,0.229493,0.327081,0.707687,0.209172,0.50761,0.318805,0.368688,0.397621,0.988544,0.265508,0.649459,0.367471,0.927883,0.755848,0.0529883,0.977785,0.554563,0.233845,0.200278,0.441402,0.804353,0.614625,0.187333,0.371144,0.578745,0.132577,0.00627148,0.244047,0.971927,0.634583,0.462002,0.284973,0.0695731,0.283751,0.607921,0.485066,0.0898729,0.972226,0.188857,0.15443,0.193362,0.108303,0.297617,0.299882,0.108849,0.233982,0.729139,0.0604687,0.689389,0.810225,0.0497401,0.104103,0.569735,0.739788,0.1372,0.543904,0.248972,0.763818,0.918077,0.79146,0.963663,0.160234,0.809349,0.926632,0.064875,0.820495,0.218718,0.432843,0.00540715,0.983331,0.674069,0.146511,0.318806,0.484583,0.620825,0.141835,0.499964,0.453811,0.628349,0.166196,0.722167,0.177231,0.543573,0.847068,0.470241,0.934443,0.720995,0.528155,0.46405,0.617361,0.321369,0.735233,0.546811,0.0872369,0.271152,0.425306,0.942055,0.436251,0.552932,0.500785,0.0987113,0.905067,0.740588,0.664231,0.551295,0.487292,0.949698,0.121272,0.906132,0.585812,0.334163,0.991212,0.825702,0.180955,0.836346,0.044109,0.342662,0.264689,0.900711,0.811238,0.203687,0.721,0.731836,0.448949,0.487054,0.593453,0.0736095,0.148541,0.223856,0.33669,0.736771,0.971154,0.345894,0.718123,0.816199,0.636178,0.992615,0.981064,0.517321,0.327307,0.65616,0.815707,0.510722,0.276744,0.0302187,0.52268,0.290527,0.927866,0.592056,0.544232,0.0132394,0.746086,0.0561099,0.978908,0.241618,0.157734,0.483757,0.752238,0.0238678,0.603961,0.570868,0.961745,0.689622,0.927447,0.997722,0.952771,0.909812,0.415873,0.754361,0.934677,0.866488,0.458715,0.378432,0.704282,0.238707,0.0682616,0.87078,0.587718,0.00574249,0.507507,0.931921,0.567931,0.850644,0.139329,0.496068,0.0260518,0.682007,0.996917,0.0235254,0.0339632,0.76046,0.597844,0.04052,0.171223,0.468521,0.384641,0.690674,0.998414,0.785325,0.263128,0.425367,0.506706,0.916767,0.696773,0.328385,0.817615,0.163444,0.830079,0.00173086,0.34318,0.815968,0.524501,0.618281,0.297655,0.196554,0.0970027,0.0851086,0.503597,0.979953,0.496372,0.332393,0.327079,0.174369,0.404606,0.747082,0.121636,0.335981,0.0981103,0.479004,0.492473,0.581048,0.865492,0.026179,0.348002,0.850995,0.231801,0.303889,0.338636,0.640798,0.697986,0.532791,0.180131,0.337646,0.360221,0.674205,0.176623,0.925184,0.903166,0.870045,0.573431,0.745753,0.0436302,0.427077,0.822278,0.762591,0.241846,0.976328,0.42631,0.489038,0.995746,0.914566,0.942716,0.673689,0.233198,0.114402,0.421275,0.125512,0.897525,0.896419,0.451297,0.282469,0.976888,0.370155,0.669443,0.749708,0.658503,0.191542,0.553558,0.25378,0.727124,0.599796,0.400443,0.44812,0.607235,0.977355,0.858638,0.0134438,0.0569357,0.595234,0.0160462,0.815682,0.103488,0.620863,0.520968,0.686965,0.518202,0.120614,0.513878,0.376728,0.593948,0.0212924,0.895287,0.655752,0.59853,0.785977,0.458093,0.569538,0.662193,0.555228,0.564505,0.247709,0.16982,0.685632,0.0420704,0.128502,0.959477,0.134664,0.258951,0.169391,0.200821,0.367806,0.633232,0.044274,0.298689,0.450282,0.0513232,0.820011,0.104514,0.444718,0.952825,0.226644,0.382545,0.421957,0.555322,0.653483,0.471042,0.117902,0.0519702,0.696344,0.127101,0.100487,0.0706532,0.108173,0.123415,0.670559,0.285998,0.724742,0.338926,0.699757,0.848664,0.0495763,0.595098,0.00159156,0.444676,0.935481,0.0277012,0.210835,0.187822,0.405957,0.622988,0.706188,0.767177,0.142685,0.489827,0.252768,0.549397,0.0795855,0.82599,0.542692,0.649443,0.0683432,0.409065,0.0938456,0.338937,0.166986,0.832413,0.512082,0.527183,0.584795,0.368307,0.388858,0.0587521,0.246988,0.215572,0.256649,0.887904,0.173937,0.95245,0.58749,0.0711616,0.202649,0.193289,0.678245,0.0316714,0.108685,0.913827,0.921799,0.505303,0.554591,0.927462,0.830531,0.96615,0.588259,0.514762,0.288368,0.327536,0.405736,0.209075,0.504647,0.053134,0.122631,0.116235,0.546082,0.278216,0.0658317,0.285523,0.0320993,0.157104,0.629225,0.20832,0.410213,0.155287,0.694758,0.307437,0.717558,0.33588,0.412311,0.499406,0.398352,0.310383,0.881875,0.612536,0.373605,0.437064,0.042752,0.171999,0.611689,0.625571,0.966257,0.0761265,0.47467,0.782315,0.0945088,0.057808,0.248383,0.60867,0.935021,0.704085,0.3372,0.544367,0.384209,0.483858,0.632808,0.577906,0.708406,0.337599,0.766538,0.535941,0.311622,0.69949,0.642156,0.828209,0.291466,0.875869,0.950089,0.771215,0.357039,0.814909,0.210721,0.672501,0.970131,0.426268,0.223583,0.84622,0.68394,0.167826,0.219679,0.958425,0.151529,0.896706,0.916065,0.45093,0.0516225,0.904142,0.078652,0.0417722,0.0731136,0.244419,0.5024,0.727174,0.142277,0.734696,0.764371,0.361025,0.659958,0.930218,0.0683796,0.176901,0.968981,0.74508,0.999122,0.184799,0.368423,0.465214,0.967684,0.637289,0.287553,0.39582,0.22835,0.110854,0.0258118,0.642579,0.996013,0.89934,0.891052,0.77431,0.309614,0.648502,0.74928,0.847834,0.228698,0.220977,0.57936,0.551099,0.584447,0.664529,0.0552708,0.431795,0.625649,0.518724,0.444449,0.09422,0.157868,0.17731,0.313122,0.384085,0.272288,0.562325,0.97405,0.917435,0.357917,0.100664,0.200817,0.323828,0.0925679,0.965217,0.824004,0.254328,0.22909,0.27581,0.106543,0.557277,0.69552,0.891282,0.129206,0.433647,0.487271,0.17815,0.918368,0.26232,0.936108,0.119611,0.345249,0.617216,0.297707,0.834777,0.542408,0.949261,0.195888,0.584564,0.0926995,0.107293,0.559292,0.491927,0.328486,0.122314,0.985945,0.12189,0.17391,0.672325,0.858074,0.864693,0.083985,0.898742,0.553428,0.283966,0.0285823,0.593909,0.635271,0.113647,0.76524,0.279615,0.857747,0.243623,0.558389,0.669793,0.421822,0.3789,0.783339,0.86394,0.283548,0.796139,0.312989,0.192501,0.193541,0.873977,0.0615782,0.408524,0.37058,0.812656,0.262197,0.87992,0.460472,0.962668,0.528748,0.671603,0.278577,0.424805,0.599115,0.998614,0.437251,0.804234,0.642194,0.631658,0.513668,0.589501,0.232119,0.222934,0.142369,0.897096,0.024073,0.337607,0.991192,0.3793,0.193324,0.367709,0.687045,0.973113,0.722449,0.0942442,0.761254,0.00134057,0.712871,0.750562,0.852908,0.568091,0.211964,0.393998,0.326005,0.958447,|0.0976235,0.210534,0.655977,0.680113,0.620965,0.74578,0.514721,0.755949,0.924525,0.337089,0.500876,0.245039,0.833898,0.895828,0.894223,0.130877,0.319359,0.589661,0.866213,0.627738,0.0320404,0.750057,0.324913,0.749654,0.648817,0.0993398,0.882327,0.146374,0.364326,0.277049,0.592186,0.182373,0.901283,0.00707197,0.149972,0.0102701,0.277903,0.308891,0.338724,0.797819,0.92271,0.950237,0.882142,0.496785,0.933528,0.311185,0.532925,0.526177,0.766723,0.948941,0.348309,0.181387,0.730215,0.58584,0.018409,0.994611,0.582775,0.2144,0.955587,0.192041,0.607225,0.382919,0.608273,0.265287,0.228404,0.442278,0.197381,0.823416,0.28745,0.14519,0.239986,0.0081653,0.270186,0.71998,0.717711,0.610287,0.669579,0.394583,0.925062,0.0930757,0.604649,0.0261039,0.515647,0.693202,0.952098,0.244166,0.996097,0.549139,0.413613,0.820924,0.969876,0.8866,0.369828,0.870622,0.878647,0.807072,0.988736,0.141023,0.0762241,0.150602,0.106209,0.820829,0.9211,0.445762,0.721943,0.954729,0.653369,0.35554,0.740645,0.472026,0.786933,0.205578,0.258208,0.461903,0.465833,0.315344,0.673301,0.996624,0.574385,0.739118,0.643194,0.851858,0.765343,0.610036,0.549859,0.764934,0.840823,0.869117,0.223816,0.760254,0.377314,0.416217,0.708956,0.141714,0.9291,0.790424,0.702757,0.262594,0.167273,0.231536,0.899408,0.115904,0.513009,0.777206,0.0191332,0.770603,0.0791603,0.745227,0.518121,0.496311,0.566531,0.771276,0.458692,0.0250465,0.730717,0.270682,0.345412,0.0787714,0.846711,0.299675,0.0960613,0.318761,0.326976,0.834228,0.731002,0.487756,0.201493,0.637691,0.466988,0.146978,0.730714,0.452232,0.955466,0.342548,0.86906,0.341839,0.58425,0.488225,0.956254,0.939008,0.790616,0.378694,0.956459,0.299059,0.826188,0.831497,0.335841,0.370416,0.808229,0.744399,0.516122,0.865681,0.463338,0.0568105,0.365749,0.304945,0.618748,0.923438,0.777636,0.751352,0.641367,0.29727,0.703058,0.698887,0.638861,0.145229,0.674499,0.187995,0.674542,0.340809,0.0273541,0.668598,0.568594,0.985846,0.0256112,0.146062,0.01498,0.963162,0.880441,0.645849,0.36367,0.0540536,0.0153348,0.473536,0.780694,0.83826,0.798377,0.281044,0.640342,0.173753,0.583783,0.891869,0.414735,0.42478,0.339994,0.405385,0.569979,0.977874,0.767406,0.411021,0.250244,0.490091,0.881925,0.552147,0.910954,0.885286,0.559203,0.561228,0.829163,0.374263,0.038964,0.292226,0.333122,0.67604,0.929332,0.0296613,0.779921,0.774981,0.9279,0.646346,0.46073,0.8884,0.806344,0.601003,0.620789,0.802108,0.257978,0.917411,0.294472,0.354362,0.377389,0.302498,0.0299796,0.890881,0.581355,0.317764,0.34315,0.73774,0.17752,0.947205,0.405011,0.076299,0.169495,0.805844,0.294602,0.276517,0.257257,0.937752,0.560735,0.168768,0.614602,0.535507,0.79011,0.351662,0.955559,0.765282,0.779291,0.68764,0.593277,0.799441,0.0763633,0.630267,0.251807,0.452991,0.543101,0.585027,0.527919,0.153632,0.600748,0.214836,0.206023,0.158934,0.000907958,0.722328,0.374674,0.397283,0.27669,0.767693,0.679116,0.679647,0.42408,0.59051,0.608338,0.626709,0.691745,0.0941809,0.238445,0.551526,0.422328,0.771843,0.0346845,0.860333,0.936584,0.113554,0.267525,0.66751,0.763725,0.811781,0.976373,0.614862,0.828238,0.344894,0.519361,0.543947,0.817394,0.358779,0.701088,0.0776919,0.762362,0.893279,0.52789,0.470679,0.195728,0.220982,0.197724,0.46613,0.833724,0.580816,0.0518692,0.783087,0.525095,0.90634,0.59841,0.929411,0.217314,0.27971,0.372732,0.297808,0.838603,0.720413,0.456859,0.0958991,0.926773,0.617126,0.199239,0.789857,0.163831,0.438993,0.305512,0.866392,0.469625,0.098582,0.781965,0.0623226,0.985665,0.875214,0.557146,0.335564,0.251924,0.183621,0.115363,0.250482,0.846889,0.569709,0.648464,0.606441,0.437738,0.182037,0.428553,0.0960426,0.85097,0.715516,0.169187,0.206132,0.652672,0.0615541,0.759743,0.703676,0.722701,0.272059,0.689161,0.647241,0.831588,0.701912,0.800525,0.570579,0.4861,0.933651,0.715128,0.192172,0.17412,0.907504,0.63451,0.174504,0.194429,0.337441,0.858524,0.281023,0.269668,0.597706,0.904486,0.570324,0.104484,0.948186,0.280631,0.0561764,0.632018,0.124656,0.225539,0.485913,0.301144,0.433314,0.724589,0.324523,0.579668,0.0327121,0.111859,0.393871,0.236852,0.831871,0.932946,0.464652,0.678486,0.175239,0.312575,0.755449,0.483062,0.0790352,0.297572,0.139326,0.389935,0.567958,0.547161,0.645062,0.508877,0.472371,0.785472,0.145365,0.419545,0.635451,0.475438,0.371497,0.827011,0.31527,0.311158,0.582684,0.411412,0.208819,0.952242,0.425815,0.201055,0.698751,0.84445,0.878906,0.793866,0.538214,0.660201,0.487111,0.500068,0.147313,0.0975881,0.550199,0.727922,0.0667379,0.319957,0.179804,0.54771,0.295573,0.968399,0.990179,0.911993,0.815551,0.310853,0.407814,0.0322419,0.806563,0.132077,0.139019,0.0184104,0.48748,0.21031,0.457528,0.911656,0.704665,0.82826,0.113663,0.165464,0.281085,0.216941,0.326441,0.661543,0.0104213,0.96793,0.408086,0.859559,0.823412,0.642054,0.401075,0.294992,0.0224161,0.056563,0.49565,0.470269,0.975793,0.225586,0.682238,0.510876,0.98762,0.169254,0.364724,0.479024,0.183666,0.518254,0.156324,0.085514,0.763077,0.856153,0.204162,0.553137,0.516261,0.169715,0.887412,0.616299,0.748229,0.189277,0.826081,0.515326,0.882012,0.565629,0.762612,0.429779,0.467534,0.125461,0.266243,0.334732,0.379052,0.579283,0.542095,0.420864,0.957042,0.976998,0.614714,0.953462,0.856034,0.925876,0.0469414,0.620543,0.526026,0.432133,0.97293,0.0958027,0.755449,0.13946,0.242381,0.146437,0.0800382,0.545806,0.152991,0.903172,0.5292,0.633105,0.635787,0.213208,0.243685,0.890062,0.611572,0.428803,0.328627,0.0195922,0.102662,0.953528,0.58015,0.217547,0.808698,0.998006,0.171861,0.27258,0.0729702,0.127376,0.80933,0.217338,0.0250835,0.824417,0.0688861,0.165083,0.112096,0.352506,0.875978,0.522597,0.408649,0.521035,0.402278,0.966213,0.372441,0.824627,0.480907,0.0493263,0.797654,0.896515,0.850265,0.539785,0.0711017,0.0120289,0.738386,0.844183,0.813654,0.967746,0.69779,0.559766,0.0704232,0.897096,0.894136,0.669686,0.346691,0.613428,0.0802626,0.350816,0.915822,0.308883,0.72232,0.645138,0.949243,0.977207,0.274312,0.352285,0.186533,0.865133,0.366165,0.456327,0.944056,0.821447,0.842992,0.0350441,0.686565,0.339366,0.635095,0.289793,0.746026,0.890181,0.735937,0.492607,0.826212,0.256171,0.0463539,0.699971,0.663798,0.623777,0.685677,0.411436,0.484045,0.503641,0.485144,0.80175,0.64124,0.765019,0.682786,0.231513,0.785719,0.54518,0.814189,0.599771,0.960329,0.933331,0.939039,0.801021,0.578231,0.678326,0.695458,0.0148308,0.758713,0.142627,0.196009,0.69097,0.12167,0.485108,0.686279,0.86064,0.859869,0.721859,0.399927,0.452552,0.601801,0.00726873,0.975441,0.410977,0.235993,0.381666,0.116805,0.0624823,0.825791,0.555099,0.959734,0.800056,0.95229,0.204323,0.152793,0.746349,0.296562,0.191763,0.150137,0.898957,0.420533,0.313793,0.313049,0.274866,0.0590715,0.184272,0.9169,0.0782034,0.925944,0.867294,0.772682,0.228071,0.230436,0.0983481,0.500945,0.858848,0.452307,0.0805385,0.692738,0.906585,0.151546,0.455436,0.391047,0.695093,0.99617,0.00842291,0.830643,0.407593,0.701619,0.688179,0.583037,0.437649,0.179912,0.198613,0.214212,0.189456,0.29388,0.285949,0.489035,0.402284,0.148064,0.920808,0.807242,0.371475,0.350844,0.635702,0.484058,0.0116344,0.480397,0.724799,0.936348,0.918661,0.881012,0.037611,0.359824,0.570328,0.0439921,0.0232403,0.749278,0.159103,0.394324,0.0862894,0.242194,0.456697,0.866663,0.46544,0.912885,0.248245,0.696119,0.588492,0.981583,0.496884,0.498234,0.387558,0.691329,0.885479,0.00496894,0.541877,0.849929,0.501011,0.499189,0.69252,0.986864,0.274785,0.47461,0.424889,0.453039,0.468871,0.568291,0.572731,0.560422,0.799768,0.422951,0.952234,0.584145,0.415365,0.391752,0.493884,0.986915,0.274356,0.208502,0.537605,0.44747,0.132161,0.964257,0.0606024,0.672505,0.135564,0.619939,0.212543,0.651857,0.832051,0.380961,0.185771,0.467453,0.0215834,0.589211,0.861594,0.522313,0.723902,0.153604,0.262006,0.921308,0.369756,0.234858,0.711462,0.500257,0.214564,0.446827,0.221326,0.621297,0.0810301,0.127798,0.333467,0.763963,0.235354,0.669392,0.120652,0.442329,0.107964,0.825821,0.934817,0.697605,0.801154,0.316798,0.843485,0.808615,0.517329,0.490374,0.790351,0.827703,0.891425,0.284837,0.690135,0.273917,0.741031,0.435875,0.122034,0.732466,0.331236,0.551732,0.569179,0.815938,0.360154,0.376775,0.091163,0.645226,0.83602,0.15794,0.878038,0.69641,0.895781,0.677286,0.496022,0.472465,0.918911,0.339423,0.344705,0.557425,0.0854903,0.247775,0.364243,0.698389,0.954772,0.979954,0.0877367,0.0589239,0.725172,0.766308,0.851682,0.321149,0.932588,0.163206,0.418247,0.0346064,0.510472,0.507287,0.545553,0.153813,0.65296,0.875734,0.705624,0.461993,0.973454,0.0668768,0.419508,0.797241,0.266688,0.668865,0.363491,0.62174,0.98417,0.65051,0.607579,0.796707,0.26379,0.74106,0.714962,0.100611,0.334803,0.441989,0.554434,0.183609,0.737846,0.0732475,0.900583,0.740018,0.690634,0.0174958,0.770943,0.0305532,0.849539,0.663091,0.742935,0.588251,0.559829,0.515585,0.537489,0.188787,0.907615,0.273078,0.118423,0.00317091,0.627626,0.481615,0.0989249,0.230449,0.435997,0.669959,0.684893,0.504682,0.966376,0.478086,0.969217,0.291258,0.374681,0.887547,0.203582,0.53954,0.508582,0.595257,0.363969,0.456789,0.258007,0.120488,0.217475,0.0493376,0.187172,0.464596,|0.0800846,0.537579,0.168418,0.382656,0.181562,0.394506,0.969716,0.69624,0.983531,0.900237,0.906528,0.297131,0.288361,0.104888,0.86583,0.114339,0.150622,0.486739,0.392177,0.469735,0.0387672,0.614073,0.227228,0.250533,0.247958,0.62207,0.310564,0.718364,0.354252,0.247963,0.559278,0.294858,0.376893,0.0487524,0.322216,0.746638,0.722316,0.738277,0.776196,0.981206,0.559896,0.565575,0.371231,0.711667,0.337555,0.582872,0.691434,0.0139095,0.0722985,0.589536,0.31396,0.30089,0.294156,0.954679,0.85678,0.137787,0.350191,0.869945,0.294905,0.828791,0.622367,0.289258,0.741225,0.158773,0.838025,0.89272,0.421468,0.885422,0.560128,0.782,0.0304436,0.588727,0.847157,0.512005,0.837901,0.461669,0.754206,0.30831,0.258268,0.736934,0.191872,0.860906,0.765379,0.345293,0.0477439,0.264916,0.577592,0.176254,0.165493,0.630469,0.976854,0.495563,0.112733,0.215595,0.721582,0.738921,0.572801,0.557619,0.943475,0.99812,0.659766,0.42832,0.464178,0.485049,0.548519,0.586192,0.165476,0.129655,0.534338,0.863177,0.233233,0.162374,0.575682,0.99319,0.0578862,0.433842,0.927123,0.953967,0.0511122,0.875829,0.688793,0.383796,0.259279,0.557831,0.870781,0.0117568,0.862638,0.406872,0.0771033,0.230746,0.214293,0.0868267,0.242182,0.869208,0.837275,0.383374,0.262722,0.117372,0.73434,0.532879,0.600449,0.34315,0.185158,0.315517,0.773784,0.0360228,0.355953,0.0287383,0.765691,0.433863,0.144105,0.204513,0.73317,0.329454,0.756001,0.596605,0.651502,0.698246,0.798611,0.554967,0.905577,0.7986,0.305047,0.679082,0.634789,0.221161,0.89128,0.522309,0.0123619,0.434179,0.308595,0.90836,0.368558,0.908854,0.779678,0.537943,0.427359,0.475848,0.879659,0.501344,0.485209,0.786089,0.22895,0.521651,0.525867,0.210934,0.0703084,0.496675,0.0652385,0.318001,0.839126,0.310242,0.492162,0.472301,0.0216676,0.728877,0.377715,0.632319,0.985122,0.844163,0.874085,0.536848,0.0369474,0.951081,0.886679,0.965699,0.273046,0.135584,0.79819,0.511636,0.176176,0.184816,0.00542891,0.349445,0.532002,0.447763,0.0852807,0.885301,0.98079,0.136906,0.237041,0.449141,0.794735,0.667038,0.854904,0.802602,0.0623052,0.904664,0.52674,0.00173843,0.353629,0.553405,0.0316596,0.961543,0.526759,0.942797,0.826124,0.198421,0.670105,0.0508384,0.360569,0.137941,0.955817,0.245233,0.737003,0.609107,0.143022,0.757027,0.418217,0.365777,0.984207,0.693667,0.44493,0.981271,0.94764,0.353611,0.94179,0.165157,0.14374,0.850983,0.690777,0.2246,0.188193,0.922485,0.675326,0.79575,0.97078,0.173331,0.077406,0.677487,0.0972567,0.570907,0.135265,0.550898,0.758588,0.739694,0.262008,0.812813,0.0415218,0.025545,0.229931,0.1496,0.479141,0.954326,0.265325,0.831899,0.85719,0.759912,0.145156,0.681933,0.0722135,0.727703,0.747096,0.328411,0.767072,0.0792389,0.657825,0.882173,0.622361,0.0364588,0.468818,0.0506674,0.177372,0.0227373,0.0321618,0.548789,0.820027,0.595401,0.464907,0.608388,0.705274,0.275663,0.848166,0.563944,0.286367,0.219233,0.924766,0.24891,0.668164,0.624924,0.798571,0.848694,0.576572,0.131704,0.484376,0.875283,0.526968,0.979014,0.244529,0.749181,0.416878,0.334465,0.481817,0.841254,0.413268,0.0460294,0.0209303,0.144135,0.415501,0.48796,0.903611,0.481653,0.570705,0.119607,0.306011,0.764779,0.643846,0.399892,0.00179762,0.301561,0.237758,0.0102458,0.240499,0.503037,0.0759333,0.678873,0.0986694,0.56232,0.606256,0.32481,0.927726,0.683037,0.882337,0.300979,0.639076,0.833993,0.260972,0.520369,0.938308,0.585592,0.258019,0.260691,0.340992,0.613813,0.464961,0.573956,0.742415,0.696856,0.923055,0.515695,0.323167,0.938755,0.737569,0.163073,0.546591,0.0260092,0.378955,0.189995,0.413999,0.152795,0.788148,0.638261,0.129079,0.488025,0.772501,0.916491,0.965526,0.576247,0.963143,0.219502,0.356059,0.744704,0.461354,0.907537,0.14824,0.637513,0.797158,0.743179,0.335699,0.732735,0.492138,0.105522,0.0382103,0.897933,0.404251,0.376929,0.907133,0.952882,0.766628,0.688647,0.338519,0.800641,0.00666076,0.272124,0.133036,0.14551,0.312785,0.317911,0.868335,0.620044,0.827282,0.693878,0.850673,0.401997,0.0840765,0.429007,0.602596,0.392787,0.702349,0.140357,0.90828,0.83243,0.271937,0.659906,0.728361,0.404483,0.179127,0.000328779,0.862018,0.33811,0.216857,0.614494,0.564247,0.456041,0.111734,0.821059,0.192272,0.130981,0.897576,0.80989,0.17249,0.570932,0.473869,0.614019,0.984976,0.246718,0.31056,0.696792,0.809295,0.944742,0.183075,0.85334,0.413892,0.457924,0.463438,0.289214,0.77159,0.517767,0.764236,0.872885,0.655893,0.341923,0.473665,0.0666059,0.218334,0.820124,0.78892,0.484018,0.599508,0.276619,0.806076,0.302176,0.96041,0.3098,0.824518,0.664681,0.27225,0.81647,0.466574,0.644725,0.563653,0.698419,0.554096,0.921275,0.834637,0.63379,0.210429,0.717884,0.194234,0.59278,0.223345,0.814669,0.583412,0.438818,0.00485694,0.307215,0.321183,0.901726,0.868714,0.0543529,0.489375,0.26028,0.699499,0.530409,0.307598,0.510752,0.813816,0.58453,0.177285,0.561497,0.12508,0.349028,0.0531026,0.706505,0.222178,0.368486,0.322826,0.873321,0.128965,0.973549,0.769587,0.893757,0.0588354,0.762613,0.592286,0.375101,0.81418,0.552629,0.986691,0.708175,0.931882,0.369303,0.673424,0.888295,0.726104,0.856128,0.814057,0.320648,0.53162,0.486516,0.363277,0.0455073,0.0163164,0.796238,0.796471,0.852354,0.986561,0.112029,0.376359,0.0131526,0.636967,0.387548,0.256604,0.713245,0.309388,0.885099,0.559763,0.294829,0.679234,0.426452,0.958791,0.189497,0.0089938,0.241186,0.169761,0.353732,0.810731,0.54566,0.987096,0.575515,0.508574,0.386624,0.676827,0.930226,0.704259,0.0530977,0.604931,0.794605,0.0566753,0.573866,0.0156629,0.380961,0.0144323,0.836083,0.760951,0.267511,0.0512242,0.718372,0.313096,0.540616,0.304569,0.556587,0.967877,0.900981,0.908558,0.601563,0.0221479,0.364796,0.46522,0.697473,0.376907,0.123756,0.989655,0.813618,0.0512662,0.0800135,0.445086,0.0640441,0.0527316,0.334965,0.689868,0.916972,0.479678,0.664977,0.898863,0.653694,0.954355,0.729085,0.0116757,0.258736,0.809419,0.124275,0.0945162,0.689222,0.0146573,0.433887,0.163912,0.635368,0.315953,0.096672,0.99115,0.691014,0.218244,0.691709,0.769658,0.595722,0.642555,0.927372,0.630361,0.232395,0.0835342,0.778056,0.995033,0.0774819,0.903637,0.558766,0.930537,0.057807,0.00839239,0.0227475,0.0714192,0.951057,0.537515,0.0677341,0.978016,0.125473,0.342716,0.0620871,0.610444,0.412751,0.518916,0.0323008,0.0888898,0.493288,0.282189,0.559906,0.253335,0.967755,0.6827,0.129884,0.051813,0.63668,0.721131,0.550998,0.0969231,0.454159,0.798892,0.925356,0.25585,0.617054,0.0661909,0.852717,0.250805,0.877776,0.653591,0.910313,0.784094,0.963903,0.867778,0.3138,0.833157,0.870564,0.554478,0.293141,0.995942,0.322432,0.660653,0.93654,0.884161,0.621656,0.938263,0.840974,0.811466,0.88277,0.999469,0.641779,0.447772,0.391264,0.46747,0.495109,0.756916,0.905722,0.391514,0.269345,0.116449,0.201389,0.862806,0.96211,0.786513,0.628042,0.095137,0.246552,0.616746,0.759976,0.26969,0.772411,0.645512,0.0798522,0.167256,0.595218,0.205001,0.626127,0.516082,0.709271,0.777027,0.968304,0.709552,0.391225,0.31278,0.146116,0.216113,0.544955,0.583179,0.05595,0.787491,0.676244,0.0268169,0.546779,0.932167,0.30946,0.924372,0.737508,0.123582,0.331504,0.283206,0.758552,0.270837,0.732999,0.551327,0.610035,0.514799,0.00751436,0.465723,0.0699276,0.258855,0.396639,0.901906,0.335499,0.500916,0.137581,0.957848,0.830464,0.794601,0.364541,0.590298,0.428195,0.245333,0.168499,0.504539,0.661249,0.871712,0.0824934,0.387261,0.551159,0.641783,0.343245,0.860544,0.114258,0.751716,0.142722,0.28951,0.336464,0.697266,0.147677,0.0296953,0.561668,0.786178,0.440365,0.124828,0.68756,0.749245,0.521682,0.997135,0.0176712,0.195471,0.686313,0.183738,0.238966,0.822693,0.75865,0.279763,0.786032,0.830446,0.655042,0.0243025,0.0221125,0.701974,0.908136,0.226078,0.997562,0.814399,0.658879,0.28974,0.960476,0.734487,0.644111,0.078548,0.510563,0.0484106,0.260765,0.898766,0.881679,0.258761,0.317568,0.604304,0.555632,0.70166,0.489109,0.0732962,0.895279,0.107185,0.329493,0.480702,0.6733,0.995075,0.0825241,0.488373,0.338185,0.374991,0.856493,0.582482,0.923701,0.562118,0.592359,0.31867,0.453796,0.691743,0.380973,0.78305,0.0814374,0.921969,0.428763,0.246943,0.955413,0.509939,0.0539536,0.581673,0.0583836,0.214702,0.597816,0.437943,0.990865,0.692961,0.935385,0.617047,0.174969,0.554296,0.64817,0.0709221,0.843876,0.109181,0.628606,0.58823,0.697395,0.117038,0.784735,0.159675,0.380013,0.776331,0.483603,0.34029,0.0692324,0.641888,0.268426,0.477836,0.881455,0.09016,0.578297,0.32262,0.410686,0.921473,0.70412,0.921379,0.651121,0.559291,0.22482,0.37678,0.810784,0.465235,0.223906,0.893016,0.425056,0.611365,0.700469,0.402196,0.737438,0.329881,0.0643021,0.0669734,0.32563,0.09927,0.794819,0.894914,0.265712,0.836913,0.81541,0.842897,0.143224,0.722539,0.803402,0.471593,0.531615,0.765793,0.0856652,0.651212,0.394085,0.155731,0.774679,0.850282,0.534147,0.911385,0.661013,0.696292,0.0619389,0.560713,0.689389,0.362661,0.00687039,0.530901,0.240695,0.360777,0.236292,0.957101,0.766593,0.0345849,0.850471,0.544058,0.982564,0.556649,0.965074,0.189417,0.156898,0.439593,0.401126,0.369504,0.134554,0.992514,0.672731,0.660976,0.143763,0.332843,0.736231,0.109679,0.100648,0.36051,0.694872,0.511323,0.134404,0.401594,0.479011,|0.779507,0.803786,0.00291526,0.666792,0.112482,0.158879,0.151043,0.798804,0.180133,0.462646,0.405267,0.331744,0.571072,0.00980985,0.401664,0.471611,0.141583,0.296718,0.620605,0.953872,0.478919,0.350504,0.701699,0.317012,0.199389,0.20595,0.453051,0.813907,0.10863,0.846698,0.0715604,0.271487,0.355249,0.484017,0.579032,0.240821,0.861693,0.837871,0.0931411,0.170804,0.749232,0.775131,0.204218,0.823184,0.396582,0.416842,0.733346,0.155939,0.765717,0.783037,0.662755,0.249483,0.695465,0.299725,0.462562,0.234823,0.767332,0.928925,0.42377,0.133801,0.379781,0.368474,0.443144,0.417864,0.295165,0.250774,0.175137,0.49473,0.100802,0.658834,0.876683,0.902346,0.392348,0.729541,0.827885,0.905242,0.611892,0.625765,0.285256,0.878389,0.970481,0.432548,0.266429,0.0853611,0.125412,0.159232,0.886578,0.217196,0.979513,0.63916,0.397715,0.205278,0.247425,0.789351,0.53289,0.0586874,0.617626,0.994378,0.276691,0.358654,0.596137,0.352065,0.531975,0.221465,0.0861101,0.641391,0.301424,0.0717539,0.0900847,0.799002,0.895975,0.225586,0.900143,0.841152,0.283077,0.245112,0.283508,0.121217,0.967327,0.791009,0.0219753,0.344587,0.103187,0.446731,0.981056,0.9669,0.165474,0.543873,0.988306,0.447318,0.184451,0.94579,0.757951,0.0137399,0.663051,0.815814,0.282832,0.848408,0.739769,0.826904,0.545898,0.469489,0.353068,0.343252,0.599483,0.041685,0.216668,0.516631,0.725115,0.0759853,0.917076,0.24606,0.28602,0.603363,0.020439,0.278595,0.241752,0.397573,0.173795,0.724404,0.485796,0.430152,0.340077,0.237129,0.0432459,0.658174,0.987027,0.313148,0.27705,0.298333,0.957449,0.764243,0.455064,0.479615,0.15791,0.458753,0.403902,0.63047,0.264202,0.647549,0.300511,0.663441,0.4725,0.37031,0.791646,0.224456,0.906303,0.560262,0.715746,0.367822,0.368894,0.744309,0.853863,0.79484,0.0383551,0.104325,0.601501,0.594607,0.851703,0.802835,0.0855498,0.278788,0.744603,0.413045,0.679309,0.236848,0.122242,0.97428,0.181392,0.626454,0.561183,0.482602,0.270956,0.333966,0.261993,0.499689,0.447624,0.228394,0.00343692,0.92808,0.574011,0.609604,0.603437,0.963068,0.685918,0.652612,0.407833,0.886811,0.842826,0.584921,0.991578,0.358121,0.253266,0.42149,0.941927,0.672765,0.403776,0.890483,0.979007,0.267629,0.062359,0.611047,0.193891,0.190942,0.0635794,0.182242,0.101852,0.815778,0.118548,0.352568,0.648877,0.50983,0.162679,0.0625583,0.529551,0.197402,0.204433,0.180031,0.253418,0.597388,0.0935121,0.953678,0.0913059,0.596758,0.25491,0.380811,0.402445,0.601678,0.673672,0.37998,0.664892,0.397322,0.161723,0.515752,0.177807,0.949936,0.237401,0.155155,0.400062,0.844029,0.873004,0.208726,0.255902,0.811234,0.0467601,0.709381,0.0792235,0.657028,0.717126,0.377373,0.890326,0.465451,0.473695,0.206209,0.281247,0.305734,0.271664,0.783259,0.056101,0.80531,0.636313,0.441544,0.642122,0.385547,0.763736,0.562078,0.990228,0.123405,0.77308,0.0667133,0.199758,0.876971,0.709736,0.680631,0.413347,0.939324,0.995721,0.910298,0.66159,0.425875,0.482106,0.0648497,0.120213,0.212986,0.811888,0.922507,0.233934,0.322577,0.612553,0.231027,0.513267,0.564968,0.735417,0.667073,0.60528,0.096506,0.291701,0.347518,0.08021,0.386784,0.917943,0.205591,0.483794,0.38715,0.189403,0.333283,0.402049,0.591757,0.820564,0.217219,0.555129,0.836976,0.290754,0.289669,0.0692536,0.0939502,0.879867,0.332412,0.870567,0.15897,0.105716,0.729098,0.337445,0.44305,0.0473834,0.608195,0.617324,0.599033,0.186522,0.970257,0.733915,0.0692436,0.283029,0.942774,0.10762,0.0578712,0.381107,0.245573,0.816448,0.632287,0.00126666,0.988506,0.710722,0.0434887,0.65661,0.847703,0.38638,0.872357,0.528756,0.990606,0.0381004,0.0863658,0.800258,0.632184,0.722216,0.264572,0.512959,0.370194,0.0845928,0.16555,0.622653,0.517594,0.720014,0.314541,0.188246,0.637476,0.789998,0.579201,0.888659,0.781491,0.885275,0.504658,0.747145,0.207108,0.138277,0.947439,0.871643,0.342917,0.713825,0.498075,0.889205,0.148023,0.0869028,0.632442,0.0281381,0.277069,0.968786,0.20418,0.0362751,0.066187,0.799256,0.402034,0.229817,0.193806,0.993039,0.219923,0.969272,0.0263637,0.170412,0.336298,0.176888,0.332337,0.590166,0.237626,0.823972,0.665553,0.804799,0.885415,0.770936,0.489726,0.727796,0.419566,0.708525,0.0026322,0.481408,0.248254,0.884547,0.335488,0.129154,0.530946,0.958899,0.919075,0.997516,0.306799,0.114856,0.486679,0.559688,0.483862,0.357991,0.328997,0.481493,0.962332,0.601465,0.373383,0.0954615,0.461373,0.393691,0.636466,0.620001,0.139334,0.775173,0.571297,0.428694,0.911602,0.81653,0.294511,0.546233,0.978238,0.139725,0.275874,0.740344,0.466927,0.335615,0.388102,0.109763,0.292329,0.610062,0.648536,0.375087,0.689097,0.359705,0.599511,0.953547,0.638619,0.0111463,0.124955,0.759284,0.765401,0.341434,0.208556,0.153936,0.81537,0.418074,0.803495,0.0425135,0.598686,0.444415,0.318017,0.897777,0.12594,0.413077,0.727562,0.967435,0.983834,0.580605,0.324104,0.414712,0.967181,0.157134,0.884258,0.623039,0.899418,0.970962,0.7422,0.485009,0.870316,0.502713,0.579302,0.85565,0.138068,0.944013,0.164555,0.855435,0.33766,0.514368,0.850691,0.0517521,0.952703,0.865873,0.0552958,0.952741,0.616936,0.304516,0.104883,0.792807,0.0287948,0.19321,0.574737,0.019713,0.507297,0.0676187,0.352998,0.732419,0.662245,0.583834,0.463517,0.37987,0.420794,0.39805,0.59994,0.18968,0.746306,0.895559,0.0271167,0.181495,0.315629,0.922414,0.192976,0.775359,0.280129,0.924182,0.771736,0.562057,0.720856,0.460836,0.799412,0.421483,0.939515,0.433691,0.973838,0.69842,0.0384204,0.317708,0.730334,0.154818,0.674698,0.782877,0.53929,0.758671,0.233309,0.0438268,0.090952,0.0945934,0.888759,0.694376,0.927208,0.0551906,0.0362812,0.64955,0.0757789,0.51533,0.737459,0.872279,0.841274,0.0425826,0.840552,0.201625,0.935649,0.605934,0.687187,0.996859,0.642871,0.203225,0.483643,0.444198,0.280748,0.847176,0.676,0.691611,0.708704,0.785535,0.0340161,0.963408,0.720864,0.3099,0.748128,0.120894,0.631374,0.296029,0.0366955,0.0116889,0.679524,0.459856,0.973497,0.87473,0.699574,0.209872,0.14359,0.836642,0.411263,0.922742,0.975035,0.954197,0.932499,0.415573,0.863204,0.863343,0.397314,0.602737,0.0427116,0.419326,0.489267,0.672765,0.101387,0.913774,0.69441,0.945834,0.61872,0.261436,0.558789,0.693115,0.660861,0.819917,0.1235,0.768117,0.929216,0.867706,0.470416,0.710551,0.380219,0.120252,0.954127,0.932555,0.631844,0.683912,0.0331997,0.0186863,0.352818,0.550721,0.727055,0.689841,0.503385,0.348615,0.244677,0.415253,0.138305,0.350284,0.61279,0.263822,0.00659764,0.0566055,0.877219,0.0333441,0.8604,0.162562,0.284361,0.711159,0.817423,0.390996,0.177196,0.466509,0.395088,0.122558,0.967702,0.56315,0.582285,0.413364,0.782142,0.0275997,0.672236,0.599882,0.416813,0.813448,0.525182,0.271063,0.551268,0.625742,0.587386,0.8263,0.489227,0.166174,0.472213,0.044949,0.385525,0.189246,0.31233,0.573727,0.990662,0.963591,0.723438,0.847317,0.67376,0.748132,0.224859,0.785474,0.675397,0.25524,0.669026,0.197558,0.0294606,0.151634,0.470011,0.199779,0.928078,0.33887,0.305847,0.968415,0.374196,0.282966,0.588071,0.827843,0.70275,0.125796,0.367221,0.968409,0.863624,0.903637,0.572713,0.467914,0.312141,0.722582,0.979128,0.186918,0.93082,0.231958,0.209829,0.509351,0.291009,0.416553,0.0630926,0.638191,0.417768,0.939735,0.894084,0.299859,0.577424,0.552065,0.0988396,0.580024,0.065917,0.0492725,0.823834,0.376745,0.235037,0.404079,0.786183,0.360224,0.916313,0.671743,0.644903,0.563688,0.362231,0.577053,0.739855,0.39682,0.913456,0.669134,0.10423,0.650889,0.822914,0.901995,0.895355,0.89876,0.200826,0.399946,0.626469,0.606203,0.0354655,0.846717,0.103152,0.577739,0.121566,0.866647,0.371829,0.498307,0.704119,0.953305,0.569667,0.867185,0.93588,0.484246,0.0883467,0.0108169,0.612855,0.655417,0.142064,0.200059,0.993637,0.594492,0.323435,0.399095,0.68806,0.050973,0.57586,0.980256,0.194718,0.198604,0.719567,0.99975,0.74954,0.0198197,0.58739,0.588554,0.66655,0.0716533,0.892299,0.406344,0.514027,0.35756,0.720004,0.493771,0.940378,0.941728,0.628243,0.776484,0.4042,0.514384,0.287132,0.315024,0.994061,0.198556,0.640474,0.990402,0.457136,0.512384,0.550707,0.222808,0.241849,0.656721,0.0828443,0.751188,0.447035,0.376193,0.986808,0.283868,0.841639,0.968926,0.864866,0.155494,0.432584,0.194494,0.819721,0.124896,0.149521,0.593209,0.0316969,0.306167,0.161009,0.472655,0.0124497,0.43861,0.092515,0.665251,0.365301,0.528533,0.441651,0.937409,0.977344,0.84471,0.565951,0.355885,0.797731,0.443114,0.307435,0.550682,0.540233,0.840809,0.719135,0.202856,0.616428,0.0513453,0.954314,0.257477,0.746479,0.055065,0.499591,0.0971456,0.80938,0.145669,0.499911,0.782184,0.956297,0.232812,0.462267,0.355208,0.931598,0.625936,0.664695,0.609386,0.214246,0.2464,0.958524,0.497099,0.904202,0.875268,0.410166,0.533032,0.673052,0.0833388,0.400681,0.0358584,0.00930548,0.510489,0.442407,0.817253,0.848647,0.652749,0.985949,0.00154841,0.0928329,0.952943,0.223446,0.345962,0.207976,0.878598,0.331502,0.285031,0.525163,0.348742,0.00186718,0.334058,0.434327,0.481236,0.955897,0.06516,0.763676,0.722363,0.293781,0.681944,0.50192,0.455814,0.53292,0.721363,0.139706,0.425943,0.484446,0.860477,0.936886,0.650948,0.550916,0.717326,0.872189,0.0662848,0.788123,0.178439,0.424208,0.740913,0.429817,0.152361,0.0622406,|0.0218949,0.082446,0.257455,0.164513,0.393209,0.706234,0.670489,0.908217,0.81908,0.0544761,0.174076,0.557628,0.973477,0.264948,0.970133,0.509898,0.370913,0.992933,0.844818,0.299988,0.501867,0.336617,0.771681,0.537342,0.366034,0.273178,0.593405,0.66611,0.00906587,0.636901,0.398581,0.156777,0.821017,0.100097,0.188672,0.404562,0.898099,0.825612,0.618691,0.810929,0.933634,0.675241,0.172774,0.825215,0.977445,0.0379817,0.472022,0.490732,0.632454,0.099322,0.185333,0.924453,0.475711,0.423635,0.931487,0.991596,0.56051,0.196724,0.321644,0.780298,0.224596,0.406842,0.17072,0.59856,0.329976,0.766322,0.53429,0.558658,0.484742,0.340314,0.179844,0.540103,0.559146,0.45667,0.662038,0.00489146,0.790622,0.212926,0.1962,0.302919,0.565312,0.541738,0.270999,0.0157179,0.525206,0.0951058,0.543045,0.538472,0.432566,0.0671729,0.293602,0.846319,0.0934895,0.351588,0.0763847,0.0821158,0.161762,0.1748,0.683218,0.677421,0.966766,0.445757,0.703399,0.46115,0.619089,0.596719,0.198655,0.102621,0.470404,0.253803,0.13062,0.877239,0.222139,0.101825,0.483958,0.396378,0.833272,0.11831,0.784633,0.710231,0.573128,0.179498,0.358304,0.349893,0.232091,0.204972,0.988886,0.380529,0.124837,0.0238669,0.569108,0.994731,0.309023,0.338935,0.353729,0.763445,0.221814,0.271999,0.5456,0.368666,0.902065,0.901729,0.589083,0.450417,0.481975,0.54915,0.721167,0.794966,0.631844,0.392906,0.595244,0.53285,0.676924,0.50554,0.271806,0.813845,0.967263,0.0661446,0.614785,0.394308,0.54903,0.922775,0.9973,0.0460896,0.314461,0.932899,0.566897,0.224154,0.745448,0.3529,0.328904,0.613916,0.844559,0.00997466,0.12929,0.80073,0.538688,0.44774,0.936317,0.69144,0.256056,0.917037,0.0615116,0.488815,0.474741,0.750927,0.538026,0.916871,0.284242,0.100121,0.80796,0.528773,0.421791,0.480128,0.270617,0.383173,0.868678,0.486839,0.229453,0.909323,0.166025,0.925469,0.352793,0.202834,0.690815,0.796363,0.343094,0.519648,0.966372,0.181436,0.35529,0.659408,0.517526,0.178198,0.291185,0.713438,0.930515,0.0900216,0.231556,0.764732,0.715734,0.405775,0.55671,0.565486,0.941129,0.351567,0.306161,0.173247,0.611676,0.835175,0.0244628,0.702951,0.656955,0.222721,0.00383031,0.165812,0.138615,0.489265,0.945471,0.818859,0.9697,0.689427,0.756172,0.397976,0.235158,0.411958,0.633651,0.349563,0.614298,0.205637,0.165123,0.217875,0.335354,0.277872,0.100301,0.308745,0.997689,0.13612,0.554156,0.329257,0.238993,0.126122,0.369994,0.538684,0.56568,0.352267,0.577418,0.990347,0.524079,0.616784,0.367198,0.147793,0.0469058,0.375523,0.219915,0.892568,0.48803,0.363651,0.828702,0.213997,0.84257,0.16083,0.164839,0.567083,0.213445,0.54916,0.988953,0.391162,0.631233,0.32757,0.456357,0.477029,0.309614,0.635823,0.699262,0.472642,0.125359,0.245954,0.927604,0.852219,0.781744,0.820989,0.67826,0.645544,0.0213004,0.22607,0.479223,0.561784,0.25748,0.286336,0.856264,0.0650886,0.022687,0.713162,0.197277,0.474498,0.794079,0.134092,0.483725,0.474755,0.671227,0.471268,0.102695,0.857485,0.454123,0.58703,0.706281,0.932884,0.657725,0.606323,0.217825,0.154267,0.108829,0.152723,0.56419,0.97061,0.539938,0.215173,0.991524,0.691671,0.91349,0.799318,0.57715,0.847869,0.931506,0.721061,0.146306,0.768707,0.959211,0.211788,0.325473,0.00806546,0.827459,0.391934,0.822676,0.584799,0.273902,0.257255,0.656956,0.390383,0.0826209,0.78429,0.713072,0.821622,0.51515,0.837208,0.574039,0.985658,0.706917,0.223304,0.274218,0.53238,0.978271,0.711277,0.578388,0.838336,0.854914,0.189063,0.0968584,0.318997,0.991781,0.217006,0.904855,0.787008,0.13364,0.967411,0.42008,0.861769,0.527595,0.788764,0.0656575,0.035626,0.178914,0.318361,0.38276,0.758257,0.757568,0.420963,0.781588,0.0539824,0.411446,0.0198845,0.490632,0.20119,0.152097,0.814418,0.395777,0.846468,0.17947,0.236961,0.42274,0.793995,0.483705,0.55715,0.00177419,0.892177,0.644487,0.679031,0.773976,0.969217,0.892744,0.0974458,0.720699,0.53097,0.423089,0.71925,0.434585,0.368639,0.945065,0.606478,0.664555,0.755961,0.747148,0.552893,0.634871,0.646527,0.184338,0.961886,0.923145,0.570005,0.0884317,0.46766,0.627224,0.86187,0.0222561,0.954466,0.801784,0.866273,0.644845,0.983014,0.785238,0.0197894,0.600031,0.576634,0.254078,0.993945,0.0232433,0.677637,0.15195,0.828891,0.957772,0.126284,0.813915,0.813346,0.990324,0.442972,0.512275,0.540051,0.381502,0.38803,0.919536,0.965576,0.161385,0.355593,0.956999,0.0276366,0.437321,0.445368,0.208757,0.0445136,0.327841,0.602077,0.0173062,0.0278013,0.56504,0.824123,0.183414,0.613535,0.214446,0.658943,0.0260438,0.840958,0.944468,0.481997,0.406099,0.683684,0.0931758,0.654873,0.873657,0.312872,0.225241,0.387307,0.632939,0.49961,0.831396,0.477916,0.159502,0.100952,0.496974,0.811387,0.634259,0.867447,0.665412,0.43324,0.739322,0.806413,0.639544,0.404572,0.915314,0.088379,0.53414,0.0347946,0.929114,0.326928,0.624959,0.428386,0.0937407,0.593606,0.871289,0.606658,0.0546064,0.623726,0.542634,0.698869,0.639553,0.750032,0.235297,0.0686968,0.334523,0.469994,0.512062,0.379834,0.605961,0.199733,0.541823,0.680666,0.654932,0.428489,0.173709,0.129191,0.324357,0.18129,0.0912374,0.967207,0.571665,0.465461,0.132995,0.51691,0.983319,0.0144755,0.925204,0.208254,0.949191,0.641561,0.889227,0.68997,0.817881,0.651142,0.604378,0.217651,0.34021,0.523541,0.348708,0.76687,0.514188,0.490392,0.427903,0.767244,0.910803,0.283432,0.792725,0.606453,0.151626,0.465625,0.60046,0.215324,0.693338,0.293118,0.167117,0.315402,0.678905,0.324276,0.324297,0.52375,0.818368,0.340863,0.247703,0.34382,0.700339,0.481095,0.0231183,0.867997,0.671957,0.145609,0.41059,0.298747,0.511542,0.203249,0.22928,0.708191,0.748068,0.172526,0.293026,0.43539,0.279101,0.485468,0.367881,0.0576089,0.234528,0.0834265,0.444238,0.348499,0.0249718,0.32056,0.0853552,0.25523,0.456371,0.456616,0.536782,0.440931,0.967179,0.791195,0.10219,0.32979,0.982952,0.655502,0.448255,0.98114,0.678777,0.400779,0.383248,0.568587,0.341871,0.851235,0.56718,0.927963,0.677983,0.124734,0.0911469,0.821084,0.236641,0.729126,0.419669,0.429797,0.218394,0.649647,0.730218,0.666596,0.0024417,0.263693,0.247169,0.0663922,0.653132,0.175186,0.0942994,0.549102,0.547767,0.44817,0.590933,0.718251,0.45316,0.719688,0.0999514,0.335096,0.934911,0.305547,0.799136,0.979726,0.737175,0.457282,0.724867,0.993538,0.822998,0.857637,0.558643,0.918048,0.723389,0.284039,0.0236633,0.367023,0.401283,0.786442,0.386148,0.2875,0.0581378,0.216924,0.0102072,0.431648,0.632639,0.657799,0.0845808,0.420383,0.154198,0.194947,0.701346,0.728141,0.260296,0.898765,0.848632,0.482125,0.0123377,0.0281085,0.466744,0.937556,0.410971,0.995054,0.803075,0.802483,0.955445,0.217588,0.313135,0.626433,0.997163,0.740796,0.414839,0.913809,0.964551,0.695743,0.0702987,0.386892,0.835166,0.242001,0.73802,0.250533,0.201033,0.715516,0.0865452,0.902185,0.605894,0.92062,0.455144,0.407327,0.0732096,0.361568,0.632457,0.884476,0.458876,0.978114,0.133265,0.826244,0.0145669,0.552337,0.350414,0.283242,0.482597,0.924998,0.972697,0.722977,0.332135,0.456373,0.369121,0.525985,0.096566,0.271831,0.525386,0.0519171,0.0942799,0.461207,0.85066,0.493233,0.062296,0.274514,0.679912,0.126544,0.647116,0.294623,0.321583,0.144612,0.96548,0.00690383,0.304524,0.351249,0.981936,0.474544,0.126873,0.397353,0.561817,0.476858,0.771543,0.743749,0.977493,0.21893,0.614674,0.830029,0.441474,0.919602,0.313094,0.718231,0.0238711,0.84252,0.120493,0.348153,0.235554,0.240605,0.271023,0.529752,0.751216,0.523252,0.899693,0.625992,0.26392,0.460029,0.942181,0.118045,0.710105,0.571219,0.459645,0.896522,0.585484,0.0167375,0.625403,0.89661,0.990716,0.697421,0.550651,0.00563747,0.893015,0.54572,0.563969,0.0555238,0.91488,0.888944,0.577341,0.737173,0.479279,0.454679,0.891365,0.909245,0.521936,0.504995,0.956319,0.765256,0.732691,0.216008,0.574709,0.429873,0.25275,0.190582,0.837118,0.135211,0.667772,0.549056,0.71737,0.101587,0.758315,0.719424,0.384901,0.633325,0.703652,0.970642,0.945005,0.036348,0.82473,0.573784,0.0207753,0.046831,0.292069,0.974174,0.587742,0.390084,0.733769,0.15071,0.470078,0.435485,0.928907,0.807504,0.94488,0.434997,0.454289,0.525367,0.44492,0.114008,0.716638,0.397325,0.631623,0.0221781,0.329345,0.924513,0.725784,0.547715,0.823294,0.0681791,0.683189,0.922276,0.837615,0.0299209,0.756883,0.57328,0.886246,0.512513,0.451515,0.359872,0.985262,0.684606,0.550806,0.782748,0.583117,0.358796,0.0319412,0.848165,0.918575,0.644319,0.469939,0.99756,0.586773,0.846898,0.711684,0.760561,0.528287,0.786365,0.347857,0.539964,0.01784,0.487158,0.0456742,0.0924219,0.494306,0.885095,0.941976,0.92674,0.456274,0.552299,0.40827,0.221165,0.797211,0.856716,0.756741,0.527739,0.961273,0.174489,0.0490078,0.879903,0.817959,0.26665,0.589994,0.613202,0.381799,0.224357,0.292236,0.771095,0.421323,0.128154,0.417529,0.045662,0.663543,0.294811,0.880562,0.237118,0.967556,0.740057,0.19775,0.00539345,0.505905,0.475043,0.0887741,0.238716,0.503648,0.859862,0.366487,0.855809,0.163072,0.446692,0.289599,0.45997,0.0399485,0.0182078,0.320293,0.405556,0.641769,0.643432,0.537572,0.357088,0.154473,0.295745,0.918887,0.331475,0.62445,0.567556,0.197881,0.845766,0.199963,0.681236,0.436783,0.484439,0.611219,0.348816,0.563832,0.604189,0.356994,0.915025,|0.125151,0.041647,0.704025,0.319311,0.437432,0.465808,0.652387,0.00850368,0.195704,0.292282,0.932822,0.611087,0.9074,0.437813,0.803675,0.548872,0.916428,0.376808,0.536286,0.650946,0.0268424,0.0325781,0.379703,0.215566,0.461639,0.555556,0.927213,0.753744,0.645529,0.647224,0.947476,0.823865,0.00403827,0.250704,0.186648,0.453453,0.801317,0.188166,0.120381,0.507049,0.378346,0.279226,0.922546,0.457821,0.47672,0.0949573,0.167056,0.761925,0.581743,0.237,0.822808,0.161586,0.235482,0.815735,0.212964,0.150041,0.212882,0.886866,0.503255,0.33547,0.216925,0.513971,0.820023,0.62632,0.371382,0.98239,0.514437,0.709397,0.0200889,0.96386,0.767244,0.491428,0.236083,0.0585014,0.593842,0.402962,0.38476,0.565512,0.0982714,0.464941,0.478052,0.606275,0.190509,0.88398,0.189002,0.960976,0.795612,0.941717,0.394271,0.462307,0.79902,0.667001,0.934472,0.78975,0.535104,0.79002,0.500725,0.953587,0.0890953,0.587923,0.481466,0.831809,0.527644,0.781851,0.926754,0.171634,0.685674,0.543704,0.871406,0.770575,0.331522,0.494139,0.423454,0.718788,0.392284,0.606525,0.699099,0.106988,0.792641,0.893924,0.123793,0.734782,0.983609,0.908956,0.772188,0.881482,0.505263,0.275704,0.496458,0.650557,0.418351,0.148142,0.645909,0.432805,0.833385,0.516665,0.934353,0.932938,0.143117,0.439188,0.552793,0.123311,0.564073,0.572154,0.864424,0.21753,0.532697,0.0245265,0.101943,0.964043,0.0767304,0.740022,0.951966,0.0848395,0.463014,0.50788,0.153315,0.233381,0.280565,0.680123,0.783469,0.682511,0.437049,0.55819,0.525418,0.566346,0.484249,0.207615,0.344576,0.823544,0.280856,0.970736,0.435679,0.0639306,0.920952,0.267994,0.701107,0.263584,0.838691,0.359033,0.0825819,0.219337,0.204978,0.15592,0.473597,0.507425,0.437235,0.514323,0.979836,0.894838,0.518016,0.612123,0.835174,0.430287,0.180538,0.980251,0.133521,0.195576,0.538093,0.821804,0.491657,0.578818,0.499948,0.785072,0.389334,0.19689,0.315062,0.545991,0.179832,0.258529,0.581505,0.244803,0.965279,0.112405,0.654271,0.508166,0.161254,0.385925,0.534057,0.653694,0.824275,0.471701,0.70197,0.431094,0.784406,0.0243568,0.236029,0.830541,0.493906,0.996494,0.517182,0.127994,0.404535,0.654665,0.181185,0.180885,0.386773,0.953422,0.999756,0.791705,0.712457,0.803694,0.660736,0.795902,0.146535,0.437081,0.478463,0.791509,0.305126,0.675901,0.360512,0.491541,0.702163,0.771438,0.989276,0.92263,0.168072,0.377913,0.889863,0.0455338,0.553257,0.782547,0.339635,0.447912,0.121706,0.721885,0.0108331,0.083192,0.578413,0.371101,0.076978,0.0855346,0.316248,0.553876,0.293114,0.144038,0.762885,0.808907,0.952699,0.768412,0.607958,0.780793,0.996927,0.396651,0.559135,0.704348,0.486424,0.0494267,0.240684,0.0782055,0.126431,0.679182,0.093659,0.449853,0.934953,0.773575,0.758299,0.820342,0.283766,0.0657257,0.988645,0.896015,0.569077,0.24457,0.655833,0.0998408,0.305218,0.0558159,0.395614,0.110052,0.377281,0.784733,0.213108,0.408662,0.105572,0.190649,0.961645,0.108195,0.519568,0.659459,0.502237,0.234469,0.325443,0.0264578,0.446711,0.19861,0.775215,0.39429,0.381989,0.861122,0.347547,0.00328493,0.489039,0.444132,0.0941277,0.127884,0.598604,0.274596,0.933486,0.103786,0.205618,0.625061,0.182678,0.919982,0.65076,0.998952,0.593362,0.640738,0.638604,0.449629,0.166785,0.932729,0.314809,0.763224,0.455426,0.926578,0.847931,0.60176,0.37147,0.755838,0.913975,0.81394,0.100061,0.615599,0.484465,0.714853,0.602404,0.373922,0.436458,0.371907,0.222879,0.854118,0.277842,0.674812,0.878316,0.0260145,0.349825,0.36944,0.480365,0.604015,0.517493,0.522294,0.473404,0.859608,0.359554,0.780802,0.440077,0.720686,0.0145468,0.750024,0.369726,0.631667,0.021405,0.807319,0.826685,0.313193,0.987635,0.933986,0.198308,0.281487,0.411036,0.0697817,0.863961,0.273907,0.354882,0.838303,0.165978,0.0422977,0.101825,0.107763,0.427064,0.823919,0.66325,0.860267,0.613147,0.899105,0.598716,0.985201,0.227768,0.808797,0.525834,0.213388,0.0922047,0.240178,0.743599,0.412207,0.933337,0.805597,0.283994,0.78161,0.928806,0.298142,0.102247,0.152113,0.0930172,0.776186,0.0559314,0.571919,0.809185,0.0218335,0.868253,0.709701,0.684537,0.651964,0.26074,0.530724,0.535815,0.834247,0.713062,0.437585,0.778898,0.898528,0.899836,0.468617,0.744884,0.438259,0.327252,0.610796,0.480435,0.289984,0.907946,0.145966,0.112627,0.372926,0.930311,0.571572,0.582291,0.454771,0.677544,0.692057,0.979516,0.91258,0.873397,0.0402515,0.506676,0.671361,0.747718,0.381128,0.345196,0.696342,0.30913,0.0817598,0.619488,0.469906,0.467847,0.0782323,0.914378,0.702394,0.292524,0.519345,0.310897,0.783464,0.056677,0.24349,0.507003,0.473858,0.343377,0.85307,0.579281,0.965802,0.228693,0.21775,0.668113,0.739879,0.183001,0.931213,0.106605,0.933836,0.574128,0.631682,0.248417,0.948958,0.872271,0.327051,0.999874,0.882596,0.388051,0.562677,0.294184,0.666225,0.154555,0.878251,0.802837,0.799459,0.124818,0.346229,0.188072,0.060972,0.143418,0.310805,0.816353,0.238222,0.639963,0.695239,0.868658,0.883503,0.373272,0.482054,0.113177,0.794246,0.566196,0.758264,0.706044,0.443571,0.294197,0.393467,0.778163,0.447525,0.213154,0.681211,0.0464578,0.847167,0.862052,0.7118,0.69464,0.758033,0.911836,0.443014,0.688863,0.782277,0.404976,0.531471,0.700366,0.697073,0.0414552,0.739511,0.673925,0.657204,0.343193,0.453244,0.92009,0.168477,0.489764,0.270914,0.37387,0.508182,0.430683,0.514709,0.709401,0.688633,0.378449,0.49934,0.0328852,0.387932,0.516741,0.0479337,0.127417,0.329666,0.657914,0.422575,0.798795,0.510424,0.516364,0.940671,0.318623,0.744913,0.226399,0.830355,0.411352,0.707558,0.00539988,0.781113,0.411393,0.266999,0.0575264,0.543213,0.285674,0.258648,0.227145,0.276505,0.599918,0.269434,0.538166,0.122775,0.592582,0.32129,0.685866,0.133044,0.840263,0.435397,0.993023,0.443138,0.398231,0.457483,0.489752,0.225631,0.19345,0.0333983,0.765999,0.469606,0.12309,0.266546,0.28483,0.383034,0.30355,0.568567,0.503435,0.640127,0.864241,0.893737,0.788679,0.0716523,0.329505,0.49534,0.335217,0.63842,0.671618,0.17279,0.101372,0.138155,0.136535,0.933209,0.751708,0.154842,0.271167,0.173577,0.239381,0.971295,0.641192,0.780048,0.626906,0.776763,0.302024,0.0842405,0.251385,0.961595,0.614457,0.00488591,0.485281,0.296675,0.569736,0.81121,0.60434,0.485799,0.756334,0.454432,0.0944328,0.148093,0.751498,0.147739,0.799161,0.815798,0.121121,0.739074,0.956851,0.585496,0.782276,0.312965,0.101376,0.598885,0.729347,0.939074,0.248233,0.626839,0.0608292,0.126991,0.394206,0.115674,0.249854,0.45544,0.793313,0.226885,0.471062,0.426893,0.547822,0.80323,0.573314,0.079581,0.0698584,0.791231,0.272779,0.120419,0.654635,0.0042159,0.291671,0.81653,0.807392,0.711605,0.786959,0.50511,0.256422,0.921707,0.27792,0.133818,0.10438,0.0978783,0.628015,0.783337,0.818916,0.785811,0.63083,0.43797,0.699671,0.535631,0.0421788,0.365272,0.410306,0.155536,0.0414266,0.218716,0.633503,0.96693,0.878526,0.0138367,0.624583,0.375794,0.0559455,0.82645,0.861877,0.021981,0.0682184,0.744301,0.303861,0.565988,0.533046,0.267056,0.42037,0.416238,0.228156,0.0722414,0.820068,0.207659,0.284897,0.19455,0.765223,0.208626,0.892999,0.321564,0.609125,0.703596,0.5968,0.478119,0.999738,0.955881,0.205503,0.598136,0.734277,0.904705,0.3295,0.64335,0.113803,0.062528,0.882851,0.98294,0.0631008,0.638722,0.880961,0.357508,0.0108439,0.693138,0.992942,0.940959,0.656297,0.901402,0.625111,0.44209,0.670044,0.680056,0.566459,0.591241,0.0396188,0.105617,0.403161,0.307144,0.0935977,0.334847,0.812892,0.0684782,0.0359963,0.250785,0.530512,0.172451,0.582229,0.863628,0.725034,0.448341,0.304131,0.0584552,0.486037,0.214729,0.550215,0.486796,0.685488,0.199479,0.137453,0.801826,0.918072,0.16087,0.083995,0.524088,0.992425,0.833561,0.817139,0.878681,0.173881,0.492158,0.654891,0.927349,0.367702,0.783493,0.311965,0.641861,0.700647,0.0503731,0.984539,0.136292,0.659095,0.916411,0.973454,0.551116,0.372626,0.406349,0.201217,0.289358,0.533237,0.826388,0.989807,0.00815779,0.248737,0.86421,0.62388,0.800499,0.763665,0.656645,0.149654,0.711352,0.046302,0.329048,0.157245,0.0789971,0.62223,0.545712,0.971815,0.83801,0.357023,0.763963,0.509055,0.32837,0.0798116,0.576634,0.30891,0.376583,0.0584409,0.548787,0.662261,0.448797,0.399285,0.557585,0.717061,0.759455,0.616068,0.885232,0.304452,0.905362,0.876478,0.930842,0.385426,0.799145,0.774725,0.643427,0.9836,0.402131,0.207569,0.964107,0.252344,0.0767361,0.102086,0.778557,0.919094,0.879015,0.734767,0.0514251,0.44916,0.797252,0.133105,0.418911,0.771075,0.311171,0.0257799,0.826554,0.531518,0.947118,0.553262,0.891078,0.811351,0.478504,0.0677465,0.94333,0.724135,0.957905,0.810907,0.795836,0.49977,0.322145,0.335469,0.621226,0.463979,0.83694,0.296876,0.0160567,0.537218,0.155782,0.140543,0.782438,0.592027,0.0120478,0.936725,0.499624,0.927661,0.467267,0.601897,0.144195,0.211986,0.512334,0.216246,0.419049,0.875394,0.837321,0.329529,0.716062,0.6248,0.243105,0.479179,0.882161,0.269335,0.143653,0.320659,0.916613,0.865275,0.558345,0.0222251,0.62091,0.997849,0.289014,0.999969,0.0658594,0.607409,0.686695,0.449803,0.852875,0.182951,0.618406,0.418404,0.287086,0.0574777,0.286881,0.539768,0.49737,0.88639,0.989654,0.75503,0.623318,0.731092,0.282953,0.523559,0.402052,0.425986,0.899385,0.400013,0.968586,|0.669067,0.0982523,0.140185,0.17407,0.101858,0.0155946,0.778523,0.833857,0.427429,0.561668,0.417077,0.313683,0.67567,0.907873,0.0543222,0.0589216,0.565022,0.436995,0.285158,0.258575,0.176678,0.884168,0.340354,0.170768,0.413799,0.15405,0.0476201,0.259728,0.802108,0.523022,0.467256,0.0799799,0.0703342,0.453521,0.144938,0.83272,0.118506,0.697613,0.566012,0.0689113,0.634741,0.599552,0.324862,0.572156,0.427419,0.304035,0.357233,0.891312,0.319322,0.463511,0.771494,0.152757,0.627447,0.8404,0.874926,0.017998,0.813557,0.820504,0.410758,0.379516,0.268488,0.331512,0.85599,0.693574,0.487442,0.692857,0.239527,0.783596,0.195477,0.551929,0.259665,0.308751,0.982742,0.547698,0.642385,0.35801,0.501131,0.502675,0.0380511,0.128556,0.407823,0.867033,0.0604903,0.989608,0.872629,0.754756,0.831332,0.820157,0.227933,0.516753,0.183958,0.572842,0.898117,0.963837,0.100767,0.412044,0.616467,0.0592182,0.0554995,0.0120261,0.0037992,0.337464,0.447506,0.242397,0.153449,0.803034,0.158231,0.392746,0.496978,0.954369,0.371441,0.0694454,0.265555,0.922092,0.612515,0.978135,0.453707,0.584806,0.42794,0.460045,0.386632,0.454367,0.446271,0.286843,0.229122,0.0912269,0.623259,0.218635,0.446146,0.481031,0.139328,0.909995,0.314357,0.350898,0.0334118,0.833778,0.642698,0.611515,0.26261,0.232426,0.729313,0.339286,0.382969,0.296226,0.406915,0.808731,0.0260842,0.387349,0.300065,0.568515,0.571594,0.291428,0.923831,0.0140314,0.994204,0.419743,0.965851,0.81684,0.20213,0.400212,0.352234,0.937998,0.00244945,0.596549,0.18321,0.0834219,0.384926,0.541377,0.34294,0.113453,0.58962,0.636082,0.238453,0.841264,0.226042,0.762573,0.94566,0.424269,0.979038,0.950828,0.944196,0.484719,0.601207,0.0194561,0.502208,0.696324,0.716493,0.67074,0.516578,0.711402,0.306529,0.794846,0.174317,0.17376,0.701721,0.270741,0.462552,0.00407761,0.592128,0.234903,0.31413,0.176866,0.284788,0.203629,0.250071,0.426039,0.198188,0.272198,0.576873,0.190811,0.422807,0.844441,0.777945,0.846811,0.576283,0.703111,0.723864,0.839218,0.629829,0.486766,0.367289,0.876953,0.579609,0.969838,0.39552,0.0897692,0.401634,0.890344,0.471943,0.584267,0.939843,0.023939,0.0040158,0.00550938,0.893616,0.259557,0.494966,0.495812,0.424061,0.437199,0.731656,0.309659,0.0205072,0.739318,0.251337,0.480985,0.219497,0.995906,0.275268,0.29549,0.79414,0.514509,0.80668,0.124301,0.247292,0.91721,0.519349,0.283655,0.919341,0.418293,0.736168,0.549085,0.350702,0.184884,0.444808,0.155205,0.662148,0.760914,0.208939,0.178186,0.51129,0.404153,0.79987,0.54166,0.269459,0.368372,0.664205,0.652979,0.715577,0.210402,0.218242,0.892097,0.540428,0.514566,0.0290728,0.036074,0.632185,0.296389,0.469305,0.37737,0.549026,0.924974,0.111367,0.380402,0.555556,0.494857,0.561141,0.780919,0.390762,0.0239329,0.164375,0.810252,0.304761,0.70401,0.127076,0.048251,0.064747,0.589491,0.58205,0.782303,0.848965,0.415703,0.419096,0.051559,0.9964,0.253671,0.704364,0.533152,0.518956,0.0818493,0.0480279,0.349803,0.404916,0.866296,0.57118,0.0203606,0.665053,0.533175,0.471053,0.233345,0.958161,0.167952,0.424571,0.994874,0.408874,0.805812,0.439367,0.483588,0.824706,0.0762538,0.482074,0.0766833,0.809211,0.709547,0.785648,0.439956,0.590883,0.914927,0.479101,0.220597,0.0852259,0.98849,0.0359048,0.991864,0.32455,0.273153,0.248888,0.0761649,0.944302,0.669478,0.424632,0.97898,0.0274587,0.563902,0.596066,0.617272,0.197413,0.798847,0.140282,0.033906,0.646387,0.122046,0.893989,0.657901,0.296291,0.696987,0.903932,0.584999,0.979203,0.219692,0.45576,0.963194,0.671824,0.0585431,0.0541442,0.675239,0.299698,0.337609,0.579653,0.174107,0.993931,0.915055,0.233619,0.644627,0.599239,0.945337,0.721752,0.432298,0.84834,0.587063,0.772971,0.432189,0.085039,0.532977,0.451124,0.891022,0.752968,0.514894,0.0184062,0.986461,0.53881,0.62481,0.0554767,0.477805,0.667557,0.0419134,0.434582,0.223824,0.125594,0.43591,0.409153,0.212146,0.0593283,0.079731,0.154149,0.468988,0.103301,0.713478,0.380961,0.465534,0.41736,0.380399,0.351897,0.258197,0.488684,0.870655,0.472791,0.637573,0.00080806,0.279567,0.0305135,0.751427,0.075773,0.260117,0.66349,0.390888,0.0982106,0.680802,0.848175,0.447739,0.40039,0.632845,0.0147008,0.904021,0.854231,0.334057,0.892708,0.488465,0.81676,0.650782,0.792101,0.819903,0.896105,0.244507,0.00401276,0.954754,0.582524,0.429697,0.652489,0.834925,0.83325,0.622657,0.902471,0.556336,0.607417,0.542487,0.117268,0.990517,0.0378179,0.568142,0.134575,0.675597,0.952886,0.991467,0.48436,0.472396,0.646975,0.154337,0.856821,0.82597,0.200374,0.709571,0.862373,0.496523,0.744808,0.697194,0.194819,0.846024,0.133064,0.14276,0.99031,0.622879,0.47301,0.947565,0.923337,0.161402,0.306818,0.832075,0.396841,0.540022,0.280048,0.952243,0.125123,0.142761,0.347151,0.454221,0.370131,0.497032,0.922801,0.114053,0.952933,0.345416,0.578182,0.3132,0.623299,0.585008,0.307871,0.842072,0.711573,0.125089,0.782205,0.934648,0.287858,0.55391,0.991195,0.824504,0.711313,0.57016,0.602978,0.922231,0.475025,0.338988,0.395781,0.256093,0.609455,0.556207,0.725031,0.227882,0.16082,0.494079,0.683343,0.167437,0.627409,0.667328,0.473731,0.777221,0.512111,0.535956,0.958033,0.44318,0.440189,0.181688,0.560511,0.3258,0.345819,0.62925,0.832565,0.672403,0.917605,0.210615,0.374983,0.925576,0.877966,0.6136,0.830163,0.783037,0.415845,0.369989,0.498834,0.432491,0.154705,0.857747,0.697915,0.951316,0.803078,0.372792,0.913773,0.582305,0.429283,0.264126,0.221685,0.469098,0.00453097,0.847894,0.992822,0.0735751,0.848422,0.0568849,0.187482,0.850825,0.00206304,0.773983,0.652563,0.910184,0.0281561,0.492287,0.980679,0.319376,0.809847,0.112234,0.222144,0.380159,0.330124,0.515225,0.35472,0.350961,0.164503,0.619885,0.700807,0.64058,0.399455,0.108303,0.014121,0.771578,0.84128,0.833013,0.449315,0.19589,0.519533,0.641584,0.00714868,0.921551,0.0248342,0.751179,0.724801,0.814795,0.0764515,0.283941,0.211117,0.357839,0.845024,0.970425,0.789653,0.115725,0.0205283,0.753136,0.119003,0.594194,0.42414,0.264443,0.997233,0.0798024,0.303654,0.544472,0.0818141,0.660295,0.323961,0.597789,0.655956,0.447664,0.243506,0.195266,0.967695,0.675429,0.434281,0.4921,0.905978,0.152918,0.234497,0.713603,0.18254,0.948571,0.326644,0.168814,0.584029,0.188961,0.247237,0.925652,0.645769,0.0479179,0.401632,0.261532,0.114369,0.821486,0.0699879,0.996459,0.712033,0.214174,0.653818,0.385123,0.178345,0.705077,0.255241,0.80862,0.750707,0.91804,0.482867,0.195413,0.509477,0.328061,0.716801,0.236056,0.233083,0.405221,0.704559,0.736815,0.128713,0.394161,0.912186,0.841435,0.351989,0.860434,0.564765,0.993514,0.823824,0.660729,0.252809,0.653086,0.143296,0.963997,0.87917,0.491649,0.312835,0.56683,0.0582599,0.333184,0.0192719,0.336887,0.145327,0.105952,0.655246,0.95258,0.770977,0.710704,0.869161,0.555558,0.344159,0.103719,0.45601,0.806084,0.0358999,0.0372551,0.312777,0.675364,0.789246,0.633773,0.231908,0.751959,0.0428852,0.129434,0.0728864,0.00620127,0.238575,0.361064,0.312709,0.319074,0.128449,0.908823,0.298168,0.218433,0.753743,0.21726,0.550001,0.0736813,0.912078,0.792301,0.655761,0.835513,0.838254,0.920633,0.553784,0.0650467,0.881399,0.473228,0.231842,0.124599,0.0505454,0.360914,0.101577,0.307834,0.800506,0.281513,0.676948,0.276166,0.0849612,0.41026,0.628174,0.900984,0.922477,0.341593,0.907458,0.949851,0.740587,0.79972,0.699759,0.330925,0.863938,0.136591,0.186329,0.397097,0.968396,0.0993174,0.0981236,0.292031,0.688014,0.790028,0.0402721,0.352051,0.766175,0.111597,0.56551,0.844925,0.94661,0.0514044,0.383825,0.129006,0.92626,0.0106128,0.0531248,0.87248,0.145247,0.963259,0.724377,0.205774,0.576411,0.0912274,0.0853651,0.157864,0.349745,0.953595,0.991851,0.849078,0.913475,0.402251,0.37208,0.922199,0.718575,0.363561,0.966074,0.148368,0.439454,0.922453,0.651755,0.0676927,0.176487,0.593448,0.352022,0.576582,0.900443,0.428108,0.904712,0.0486516,0.333686,0.697234,0.420333,0.868745,0.21935,0.867367,0.330122,0.64666,0.196693,0.1472,0.00839752,0.588645,0.286463,0.742377,0.0781268,0.751423,0.0615711,0.556744,0.489066,0.552393,0.567612,0.947505,0.0108021,0.889273,0.551291,0.540817,0.973981,0.969649,0.490074,0.96849,0.289993,0.287579,0.630544,0.383645,0.403355,0.288518,0.391694,0.147425,0.647581,0.593378,0.193247,0.106274,0.418142,0.24038,0.601088,0.195686,0.116469,0.907883,0.922671,0.42338,0.411167,0.878617,0.443302,0.128043,0.138042,0.0845795,0.889511,0.334472,0.0593415,0.601268,0.855866,0.992302,0.481523,0.573579,0.884098,0.433375,0.467781,0.216337,0.930709,0.0596724,0.744085,0.213004,0.506798,0.618237,0.874175,0.541042,0.199079,0.897391,0.323538,0.116315,0.542646,0.305367,0.447476,0.631662,0.481511,0.0650119,0.356838,0.519639,0.0457532,0.818941,0.146223,0.346645,0.345506,0.848163,0.623324,0.0328269,0.663547,0.934148,0.342956,0.865541,0.593425,0.955745,0.280781,0.683274,0.572751,0.468196,0.680669,0.0483184,0.859015,0.800865,0.236989,0.672394,0.243645,0.393996,0.943209,0.0916099,0.918694,0.875669,0.880151,0.178152,0.39216,0.128557,0.0108,0.349567,0.694807,0.465742,0.392533,0.150552,0.855734,0.74371,0.00762898,0.364024,0.729876,0.219828,0.658069,0.835464,0.881432,0.572972,0.787511,0.364113,0.278904,0.792421,0.717342,0.254052,0.405119,0.272125,0.881782,0.234349,|0.904794,0.00475597,0.39118,0.0858411,0.918034,0.674451,0.100112,0.0121652,0.95145,0.283523,0.355631,0.0802001,0.49891,0.819765,0.316389,0.113814,0.527778,0.505264,0.951595,0.939897,0.745684,0.664885,0.300237,0.950813,0.256554,0.45514,0.222415,0.0931306,0.0922564,0.491677,0.663663,0.427537,0.679644,0.108083,0.622317,0.960818,0.330256,0.307296,0.928745,0.0790389,0.0439473,0.636419,0.00312108,0.702012,0.740571,0.481205,0.781847,0.821512,0.0212767,0.135283,0.639901,0.00903076,0.353787,0.61737,0.0431221,0.738113,0.534502,0.874067,0.98042,0.328506,0.812791,0.34631,0.486644,0.0135002,0.563601,0.602663,0.347946,0.982781,0.942413,0.785941,0.606789,0.428139,0.342697,0.452137,0.537685,0.950004,0.205011,0.674924,0.957326,0.54183,0.477735,0.196147,0.820358,0.802336,0.643648,0.877525,0.0805805,0.807377,0.319491,0.44574,0.0425549,0.697789,0.92482,0.875056,0.632508,0.800686,0.0383077,0.46809,0.823494,0.556921,0.261476,0.314805,0.73602,0.012904,0.213438,0.197506,0.552719,0.183427,0.265793,0.968553,0.269449,0.315547,0.214261,0.187476,0.654571,0.626095,0.646321,0.983111,0.209392,0.140724,0.764812,0.502778,0.999218,0.577996,0.644427,0.977062,0.861909,0.655999,0.128425,0.518677,0.609443,0.983041,0.17733,0.953311,0.797304,0.266741,0.586553,0.0348405,0.647799,0.353178,0.105573,0.26622,0.138868,0.119449,0.959898,0.971043,0.138852,0.616245,0.911706,0.97636,0.747247,0.702501,0.443896,0.772042,0.742744,0.335195,0.0159884,0.885536,0.366399,0.912154,0.212485,0.179067,0.301753,0.488362,0.91813,0.859589,0.0850843,0.346551,0.54984,0.0832199,0.222231,0.987049,0.226258,0.770303,0.693843,0.662959,0.610555,0.370917,0.658328,0.302551,0.820728,0.362232,0.7959,0.406884,0.0701999,0.777645,0.548225,0.567398,0.412585,0.476247,0.377991,0.235479,0.61633,0.0777096,0.977565,0.0969254,0.349479,0.991547,0.514167,0.248261,0.627916,0.384535,0.163909,0.297072,0.632013,0.0450316,0.783326,0.662835,0.118945,0.122188,0.724692,0.789317,0.0393715,0.61286,0.119314,0.890052,0.110728,0.0580834,0.365208,0.182325,0.395325,0.0593465,0.720272,0.787466,0.271873,0.661046,0.817194,0.295871,0.528161,0.206222,0.522374,0.327595,0.428494,0.841197,0.494782,0.217988,0.170509,0.0311403,0.518268,0.346427,0.550112,0.992858,0.900848,0.94275,0.963354,0.86901,0.313033,0.331138,0.425001,0.646546,0.707451,0.608664,0.136689,0.22862,0.386497,0.68268,0.190955,0.0497746,0.0355572,0.321222,0.536062,0.811225,0.658115,0.584025,0.206719,0.795316,0.120767,0.300748,0.67691,0.99592,0.616375,0.632395,0.472201,0.0804445,0.943225,0.631918,0.453084,0.120044,0.0915933,0.159862,0.401165,0.590635,0.320069,0.325833,0.147694,0.920678,0.311041,0.548042,0.803324,0.975563,0.135723,0.257023,0.943483,0.857651,0.949813,0.0678802,0.265648,0.471188,0.0613522,0.515216,0.325603,0.254348,0.810141,0.930754,0.610803,0.000503123,0.393514,0.246209,0.720312,0.754845,0.740453,0.595735,0.57432,0.719117,0.0723333,0.448084,0.531629,0.746613,0.106911,0.400109,0.577595,0.43742,0.105088,0.920305,0.055882,0.137046,0.967287,0.321929,0.506834,0.0323198,0.754861,0.314556,0.368418,0.75628,0.708681,0.856282,0.889162,0.757939,0.339564,0.385721,0.655389,0.00992912,0.174566,0.446803,0.650462,0.237201,0.56694,0.487186,0.99911,0.813248,0.19936,0.622471,0.912458,0.71238,0.0692117,0.0767832,0.244004,0.988805,0.874388,0.515823,0.707916,0.139731,0.42183,0.855242,0.436605,0.922415,0.463254,0.21556,0.273467,0.143911,0.742876,0.595135,0.498222,0.0461762,0.300344,0.174203,0.34566,0.741797,0.538454,0.082305,0.976779,0.653436,0.401437,0.189879,0.379581,0.0676641,0.572744,0.710469,0.256346,0.853894,0.888155,0.327195,0.0793205,0.0850356,0.111322,0.493431,0.251392,0.360085,0.7899,0.422948,0.792934,0.645357,0.548441,0.623197,0.298828,0.941217,0.508849,0.145135,0.890383,0.051724,0.206416,0.22897,0.540768,0.0757132,0.164614,0.770486,0.56143,0.372491,0.638657,0.42079,0.833945,0.985684,0.818811,0.378884,0.998242,0.857433,0.171507,0.85695,0.241074,0.675851,0.872059,0.00240189,0.221561,0.622173,0.45992,0.710419,0.490981,0.0410452,0.697006,0.61279,0.0196984,0.487518,0.621926,0.115565,0.0833635,0.930061,0.493454,0.346883,0.761706,0.443179,0.277357,0.686972,0.381114,0.629681,0.162299,0.660721,0.927772,0.819962,0.97681,0.0318363,0.231825,0.653212,0.527623,0.491211,0.42274,0.72261,0.365531,0.539369,0.110391,0.0508288,0.507834,0.0471585,0.975873,0.47585,0.676164,0.0275952,0.790208,0.584814,0.625153,0.272425,0.639229,0.462176,0.41344,0.654232,0.823412,0.245527,0.10107,0.782257,0.625768,0.706032,0.85811,0.142633,0.641311,0.760499,0.849959,0.374942,0.0179899,0.927385,0.799553,0.926876,0.757863,0.99896,0.118271,0.961655,0.734467,0.349576,0.176266,0.418202,0.676254,0.561544,0.0357329,0.47468,0.471208,0.747681,0.440066,0.562995,0.129902,0.544326,0.511381,0.0465388,0.424098,0.343011,0.642767,0.539491,0.71979,0.703412,0.851497,0.895733,0.276106,0.0054388,0.575737,0.959483,0.953869,0.709856,0.0566608,0.730082,0.0250027,0.543693,0.63287,0.642551,0.196932,0.232559,0.466516,0.503139,0.0933686,0.0462636,0.735743,0.687026,0.905228,0.0317767,0.192759,0.236276,0.297107,0.303381,0.376879,0.411719,0.913443,0.0972628,0.054051,0.1274,0.338025,0.325519,0.038641,0.589455,0.156699,0.187331,0.352212,0.546386,0.502721,0.513678,0.66792,0.38465,0.264261,0.800496,0.462938,0.392464,0.880823,0.122776,0.536211,0.687177,0.470063,0.798565,0.826502,0.911954,0.637747,0.594723,0.951191,0.690504,0.419617,0.50533,0.433526,0.611889,0.0328307,0.826693,0.0499249,0.73205,0.743396,0.400581,0.431582,0.18474,0.567107,0.661833,0.433297,0.723087,0.288512,0.300157,0.355664,0.0529203,0.967851,0.810227,0.104125,0.0967029,0.239651,0.37446,0.672983,0.144053,0.0979459,0.774584,0.528129,0.343888,0.0173539,0.102482,0.231159,0.231423,0.590464,0.211922,0.743801,0.0572973,0.499169,0.35201,0.196053,0.841547,0.994261,0.0825673,0.089784,0.417716,0.532035,0.12352,0.245314,0.616981,0.501147,0.0974462,0.714209,0.745575,0.108909,0.673493,0.332679,0.478965,0.712029,0.105815,0.617061,0.036299,0.379637,0.10958,0.899073,0.496035,0.623061,0.780311,0.324036,0.350582,0.0432715,0.140486,0.669225,0.426991,0.316611,0.950269,0.00559425,0.0316471,0.278765,0.104508,0.298284,0.0726091,0.336405,0.742135,0.95558,0.421794,0.868629,0.820118,0.502228,0.297636,0.594719,0.33004,0.64804,0.725894,0.0318171,0.0679079,0.525226,0.00123191,0.779144,0.887284,0.798113,0.08338,0.910813,0.479196,0.228577,0.380605,0.402613,0.579841,0.579515,0.104316,0.205654,0.103879,0.149833,0.182134,0.698698,0.646816,0.842072,0.141185,0.574965,0.239004,0.592945,0.617028,0.148123,0.739708,0.457653,0.691043,0.796466,0.349092,0.446257,0.833659,0.30454,0.406973,0.861324,0.427773,0.128444,0.6501,0.846861,0.0163022,0.628538,0.857291,0.0787058,0.691675,0.851045,0.11998,0.204535,0.0264124,0.154429,0.88447,0.865471,0.69023,0.320084,0.304274,0.562369,0.78642,0.472637,0.0667459,0.0377897,0.273015,0.407282,0.163965,0.965618,0.46609,0.986308,0.823675,0.743877,0.115496,0.719862,0.543779,0.930061,0.966818,0.0674236,0.383734,0.696225,0.413806,0.879309,0.626274,0.490293,0.563051,0.174932,0.791771,0.39186,0.793411,0.826458,0.189425,0.0539727,0.690096,0.105783,0.651888,0.00878924,0.75682,0.231701,0.415646,0.930525,0.793421,0.0811956,0.683254,0.680835,0.719136,0.776858,0.67993,0.255554,0.711591,0.816502,0.662709,0.724962,0.920152,0.178842,0.672477,0.276503,0.707036,0.926936,0.118634,0.25554,0.604811,0.986438,0.990016,0.321766,0.780684,0.810462,0.607942,0.163579,0.693146,0.840706,0.580535,0.213068,0.763315,0.70035,0.784549,0.00353861,0.995995,0.579216,0.914928,0.889633,0.0506242,0.936618,0.767323,0.819074,0.167211,0.867341,0.853941,0.972553,0.411207,0.060663,0.159318,0.595067,0.639956,0.952005,0.399853,0.995666,0.761398,0.572647,0.854708,0.191964,0.754581,0.144113,0.934152,0.389712,0.733348,0.613274,0.334266,0.972522,0.686565,0.905042,0.244778,0.61921,0.609621,0.783633,0.595766,0.640547,0.983276,0.882034,0.758338,0.394985,0.560795,0.128318,0.277608,0.0155542,0.510783,0.542955,0.392982,0.159923,0.685979,0.669828,0.661529,0.149017,0.197231,0.181017,0.844919,0.917031,0.527249,0.470184,0.52353,0.6376,0.925708,0.0515714,0.662369,0.0484703,0.0628231,0.448539,0.0877187,0.501071,0.097652,0.873184,0.683445,0.204394,0.404296,0.610104,0.0201748,0.381464,0.397048,0.114267,0.162861,0.665695,0.112729,0.269986,0.0957612,0.183064,0.284614,0.777113,0.777885,0.182708,0.61323,0.83305,0.628266,0.0737348,0.254005,0.0834875,0.811915,0.701609,0.20957,0.076629,0.0877199,0.264011,0.00067234,0.846607,0.0911545,0.815645,0.317124,0.83836,0.818085,0.400268,0.438976,0.160813,0.510518,0.446311,0.0775332,0.165432,0.945563,0.586487,0.00143915,0.820827,0.507036,0.456266,0.0156468,0.518451,0.753883,0.992976,0.689601,0.541653,0.523795,0.353053,0.548211,0.681355,0.672822,0.520663,0.00756937,0.0398174,0.362289,0.160605,0.854497,0.898466,0.734931,0.146424,0.00035882,0.222043,0.556858,0.0188972,0.223678,0.660493,0.62732,0.344875,0.275987,0.0993499,0.276022,0.825302,0.158526,0.943891,0.642927,0.6406,0.523035,0.292351,0.953328,0.412194,0.765894,0.877081,0.905017,0.934982,0.0953242,0.172828,0.508892,0.553817,0.0800817,0.155855,0.574188,0.800501,0.108235,0.176651,0.338299,0.470491,0.588719,|0.343966,0.871731,0.684835,0.878404,0.74694,0.593305,0.0330669,0.254019,0.550512,0.509427,0.918353,0.644766,0.720631,0.0439946,0.501498,0.891716,0.274327,0.559427,0.717428,0.73994,0.290795,0.1555,0.762614,0.805221,0.473746,0.272625,0.240591,0.937195,0.478745,0.764614,0.551238,0.1444,0.194681,0.469512,0.42425,0.226935,0.562498,0.990301,0.826377,0.422279,0.961207,0.235819,0.80058,0.0282273,0.275081,0.30043,0.0946568,0.20734,0.49304,0.878757,0.353514,0.478675,0.405478,0.455856,0.976317,0.789948,0.97383,0.418549,0.477468,0.346585,0.993862,0.452129,0.181586,0.0331971,0.775322,0.322588,0.964969,0.0309393,0.0206878,0.636047,0.154555,0.121225,0.978232,0.789598,0.912625,0.925191,0.191112,0.142804,0.653473,0.0803432,0.285214,0.36361,0.199039,0.909914,0.555709,0.267981,0.860833,0.181368,0.719751,0.118278,0.639508,0.445477,0.65232,0.366247,0.818256,0.270541,0.217573,0.0701052,0.321201,0.348764,0.532307,0.27807,0.689197,0.41041,0.552254,0.686033,0.971171,0.162228,0.159164,0.867493,0.574445,0.217327,0.464297,0.679175,0.754442,0.549107,0.84165,0.0923854,0.962015,0.449918,0.117134,0.455717,0.617728,0.8829,0.364043,0.33103,0.953795,0.318222,0.476449,0.199661,0.383516,0.295911,0.820999,0.817459,0.812277,0.606136,0.0606511,0.0200439,0.859637,0.677405,0.70149,0.199419,0.207613,0.475682,0.77867,0.764863,0.524424,0.246145,0.0333523,0.989319,0.713901,0.435864,0.61392,0.489316,0.580527,0.123086,0.692995,0.298285,0.711068,0.0758443,0.399644,0.804356,0.953284,0.80371,0.300538,0.467316,0.971896,0.112074,0.85905,0.30035,0.865139,0.925564,0.977232,0.677528,0.787212,0.0769176,0.66941,0.576157,0.0422416,0.753448,0.841215,0.405871,0.247572,0.0184234,0.545618,0.462374,0.931954,0.789837,0.955962,0.0285453,0.123031,0.929613,0.0301263,0.1865,0.885846,0.790792,0.24309,0.242258,0.431039,0.877846,0.58852,0.843477,0.241285,0.271618,0.3132,0.16066,0.294148,0.00667304,0.861723,0.387558,0.425476,0.562967,0.0237688,0.187534,0.0354733,0.259475,0.329246,0.501654,0.818948,0.950531,0.192003,0.713771,0.860307,0.437479,0.849564,0.269207,0.312387,0.496105,0.545095,0.719773,0.157615,0.852833,0.102559,0.2835,0.678721,0.758593,0.900349,0.98608,0.0300236,0.542982,0.597935,0.0838161,0.55673,0.832799,0.389258,0.919006,0.215891,0.861534,0.862418,0.983775,0.0939935,0.00213397,0.201655,0.977992,0.891698,0.968385,0.965206,0.585206,0.826272,0.999743,0.751672,0.903568,0.880647,0.643879,0.381261,0.626967,0.952042,0.928019,0.619015,0.132156,0.54171,0.0852956,0.411151,0.270967,0.247658,0.314345,0.0241839,0.910719,0.757198,0.588751,0.780849,0.146675,0.489054,0.572736,0.180259,0.678141,0.88064,0.780307,0.953172,0.709619,0.0708821,0.670213,0.754295,0.990946,0.652538,0.81317,0.29321,0.365746,0.366408,0.749126,0.346368,0.519663,0.193759,0.47031,0.463951,0.964981,0.0842827,0.360927,0.331717,0.575559,0.141145,0.0135769,0.49074,0.211726,0.791233,0.364238,0.206807,0.155216,0.435966,0.541231,0.962874,0.632588,0.769035,0.548642,0.399311,0.273862,0.999742,0.664245,0.222018,0.412008,0.483983,0.41576,0.224368,0.729809,0.725745,0.262826,0.524358,0.0206742,0.965308,0.727833,0.267654,0.715652,0.406261,0.0276777,0.0660175,0.275488,0.498888,0.446374,0.435748,0.0985596,0.258357,0.17368,0.0677326,0.360165,0.657192,0.234164,0.77558,0.289036,0.398799,0.201928,0.283458,0.526021,0.0591215,0.792672,0.741395,0.61039,0.948861,0.686637,0.973007,0.239666,0.570548,0.194422,0.168949,0.768114,0.695942,0.191131,0.605821,0.218389,0.931943,0.804504,0.0210961,0.488989,0.224471,0.924881,0.682995,0.762617,0.892134,0.13012,0.98938,0.421254,0.1788,0.0353116,0.0524331,0.535621,0.493799,0.830722,0.880464,0.00758529,0.150016,0.704857,0.63008,0.0880257,0.214216,0.110424,0.258102,0.037202,0.612956,0.651982,0.422242,0.402009,0.0203316,0.56204,0.906242,0.574552,0.898907,0.295903,0.0543634,0.361258,0.848889,0.224142,0.293296,0.193155,0.233024,0.339491,0.730312,0.944712,0.315041,0.101672,0.0731761,0.852318,0.890365,0.292508,0.0368218,0.514042,0.0710375,0.935491,0.0769676,0.673874,0.465855,0.456677,0.98927,0.803532,0.0517751,0.948486,0.434834,0.481168,0.868227,0.767257,0.718776,0.283528,0.537438,0.389274,0.399904,0.463668,0.230616,0.687439,0.0712259,0.467695,0.638917,0.769491,0.116171,0.773838,0.691197,0.56388,0.704642,0.00131577,0.206634,0.975934,0.164506,0.98779,0.460182,0.358026,0.366587,0.447071,0.530194,0.571191,0.999385,0.63368,0.864531,0.697924,0.153709,0.339423,0.755503,0.715269,0.766877,0.993424,0.251417,0.673659,0.949392,0.655995,0.385829,0.66583,0.458041,0.821488,0.372611,0.406556,0.755661,0.466156,0.465169,0.319388,0.651025,0.515254,0.503196,0.224719,0.680554,0.269103,0.301235,0.752838,0.887551,0.565485,0.413172,0.600269,0.218238,0.969744,0.391704,0.136165,0.15114,0.503235,0.755092,0.186309,0.538987,0.0790954,0.764697,0.361024,0.644952,0.785586,0.971956,0.993863,0.713107,0.786177,0.256834,0.0738856,0.111298,0.83624,0.183262,0.0489153,0.0921856,0.18071,0.450812,0.740525,0.364483,0.879645,0.286619,0.435124,0.944717,0.405555,0.700044,0.900076,0.5499,0.743771,0.142923,0.325927,0.762133,0.747545,0.841735,0.0616847,0.639997,0.111463,0.505042,0.0120758,0.0648127,0.898752,0.899407,0.718904,0.988242,0.94773,0.534708,0.420198,0.797928,0.0295761,0.40145,0.566458,0.0364862,0.482702,0.623263,0.436462,0.631521,0.604228,0.540436,0.336804,0.966566,0.920541,0.843076,0.575761,0.790264,0.222324,0.958425,0.750292,0.757727,0.341925,0.136159,0.234703,0.161908,0.632956,0.990736,0.310767,0.152977,0.928175,0.829037,0.938312,0.215419,0.784425,0.929533,0.948913,0.241922,0.408918,0.0803182,0.159205,0.766266,0.522906,0.836897,0.523565,0.910631,0.909916,0.809003,0.953193,0.443992,0.847184,0.466235,0.417129,0.23441,0.144536,0.79917,0.952355,0.901998,0.871585,0.112571,0.597331,0.288598,0.917735,0.715109,0.796177,0.744093,0.0480643,0.250628,0.201361,0.640121,0.237957,0.809164,0.980362,0.331856,0.33909,0.312258,0.0777389,0.923568,0.0105894,0.901789,0.165815,0.99691,0.267667,0.591579,0.324889,0.126951,0.17131,0.315751,0.928158,0.398642,0.0474002,0.145739,0.748755,0.732549,0.193937,0.143895,0.448202,0.328869,0.622504,0.305739,0.31483,0.658697,0.814933,0.250475,0.626458,0.2834,0.823139,0.448342,0.571973,0.707202,0.985881,0.538464,0.968947,0.62842,0.45926,0.123146,0.671612,0.584353,0.0291187,0.924704,0.891179,0.314116,0.057743,0.440987,0.540244,0.718855,0.476165,0.688157,0.274989,0.223677,0.685355,0.881722,0.763194,0.246655,0.703447,0.410681,0.360181,0.312637,0.400781,0.820246,0.884544,0.252698,0.443212,0.418703,0.73604,0.769506,0.586028,0.429563,0.362712,0.0138031,0.936905,0.371345,0.684472,0.505828,0.274206,0.483017,0.340134,0.710186,0.171365,0.258459,0.0623245,0.533928,0.54141,0.301454,0.166852,0.101894,0.870932,0.892094,0.447182,0.674581,0.806647,0.569827,0.498172,0.154662,0.754317,0.237184,0.233641,0.659468,0.358466,0.142587,0.712826,0.337731,0.803339,0.972091,0.863583,0.925233,0.884563,0.211377,0.75442,0.682572,0.644191,0.0496369,0.611191,0.660909,0.0782307,0.800514,0.58257,0.10756,0.923724,0.554513,0.871115,0.674634,0.895079,0.572858,0.663694,0.493266,0.364415,0.229883,0.810914,0.351486,0.830382,0.105058,0.254984,0.876455,0.537069,0.184546,0.977951,0.482748,0.61805,0.885251,0.923934,0.439245,0.325678,0.116828,0.194807,0.415243,0.4287,0.390521,0.0397453,0.061592,0.745927,0.243075,0.361245,0.694788,0.162977,0.829678,0.334849,0.904943,0.18249,0.288227,0.0381414,0.962127,0.810727,0.794898,0.67789,0.0908046,0.850976,0.582697,0.830246,0.494015,0.0185773,0.323435,0.198729,0.181957,0.657416,0.954867,0.0592355,0.667612,0.898797,0.532448,0.00590569,0.261864,0.604592,0.188497,0.535235,0.00565368,0.0824803,0.0380047,0.977456,0.641747,0.194363,0.410604,0.529478,0.123735,0.981527,0.531822,0.985359,0.0542356,0.82086,0.632932,0.241958,0.35175,0.700567,0.122467,0.387617,0.120454,0.647035,0.48339,0.982442,0.0762153,0.00902081,0.564138,0.504258,0.474937,0.340989,0.408383,0.680755,0.0878278,0.0828493,0.802154,0.638305,0.681317,0.86628,0.63947,0.9269,0.289491,0.633923,0.302612,0.838081,0.460028,0.43294,0.400629,0.177552,0.959341,0.819564,0.0305933,0.514573,0.182435,0.376128,0.351053,0.24738,0.566842,0.0905134,0.554172,0.215655,0.378431,0.0975209,0.229465,0.0667186,0.543069,0.553726,0.509258,0.112698,0.0911443,0.938927,0.547275,0.679602,0.322452,0.894158,0.00992256,0.399748,0.103421,0.0037446,0.501072,0.319442,0.531632,0.182037,0.024191,0.685294,0.0345291,0.7289,0.543814,0.44557,0.131819,0.94341,0.669638,0.845737,0.984486,0.564485,0.00921726,0.407191,0.826455,0.0550022,0.245865,0.585381,0.39563,0.129483,0.194027,0.357225,0.778772,0.352362,0.00576359,0.235311,0.243901,0.436637,0.792987,0.906625,0.0801685,0.163752,0.115859,0.473939,0.970478,0.336986,0.171688,0.695967,0.867239,0.408439,0.535771,0.667452,0.0430177,0.982114,0.123507,0.929796,0.935317,0.628534,0.408241,0.340287,0.231063,0.799319,0.465059,0.554211,0.748507,0.174215,0.399105,0.217104,0.52301,0.000496626,0.378373,0.213932,0.71504,0.678221,0.601187,0.757129,0.623484,0.875817,0.11616,0.104979,0.123904,0.539979,0.866247,0.682789,0.782082,0.0225945,0.746029,0.794848,0.441464,0.293306,0.99856,0.650538,0.123812,0.268908,0.307936,0.918447,|0.366904,0.740897,0.542805,0.8168,0.993607,0.95026,0.319845,0.280472,0.506686,0.485027,0.874254,0.465081,0.764085,0.932428,0.26572,0.828386,0.964155,0.836087,0.216842,0.279762,0.334471,0.740187,0.284378,0.0670305,0.112818,0.0963231,0.855352,0.168758,0.40441,0.123302,0.573554,0.783557,0.843419,0.893089,0.503894,0.50971,0.0273228,0.0569654,0.93802,0.121149,0.358732,0.355327,0.536902,0.240713,0.270375,0.528988,0.826824,0.660404,0.887396,0.716613,0.8972,0.530266,0.211516,0.457942,0.0794819,0.717225,0.456551,0.225711,0.635455,0.791908,0.301768,0.609613,0.456679,0.271915,0.514236,0.181003,0.417955,0.52421,0.881416,0.871272,0.224878,0.451522,0.0337263,0.420475,0.586422,0.663272,0.747244,0.730697,0.992149,0.75162,0.0589522,0.322759,0.519996,0.21852,0.0110842,0.393505,0.141432,0.924946,0.575706,0.573733,0.0505006,0.233093,0.0894045,0.330673,0.2865,0.586541,0.815952,0.725763,0.0655939,0.446676,0.769761,0.984183,0.65005,0.0160327,0.823698,0.38898,0.982102,0.0765174,0.0800865,0.338593,0.553195,0.133979,0.546199,0.681228,0.834313,0.562685,0.166039,0.0881765,0.907054,0.47308,0.10398,0.273861,0.42294,0.533636,0.588823,0.0242442,0.907001,0.405481,0.393952,0.303297,0.417263,0.384694,0.887321,0.493022,0.14282,0.799766,0.272972,0.493233,0.969414,0.558445,0.188276,0.658051,0.446928,0.894302,0.927317,0.63557,0.586856,0.697302,0.502551,0.400407,0.602777,0.626088,0.526039,0.609137,0.298042,0.467776,0.404279,0.745076,0.346115,0.471546,0.325584,0.525745,0.0214533,0.956166,0.528173,0.0237326,0.854685,0.888697,0.251752,0.328094,0.8508,0.571507,0.4347,0.75174,0.697025,0.774301,0.141651,0.433435,0.179218,0.0613499,0.8128,0.365506,0.59203,0.79196,0.657154,0.222563,0.742798,0.327028,0.573528,0.213401,0.279216,0.691727,0.535038,0.887794,0.312904,0.768728,0.437351,0.87786,0.761312,0.062993,0.0686446,0.0830084,0.834776,0.0975977,0.846611,0.0957665,0.968301,0.885768,0.41434,0.66654,0.477008,0.607373,0.218305,0.309017,0.358458,0.790376,0.330236,0.867688,0.753432,0.414239,0.406006,0.0409601,0.322402,0.852097,0.726771,0.9619,0.00356865,0.176021,0.977992,0.0971875,0.31076,0.816292,0.550601,0.317866,0.740297,0.188625,0.101399,0.631148,0.745034,0.420131,0.701877,0.851991,0.314101,0.452564,0.768643,0.470517,0.4256,0.820484,0.120727,0.811236,0.699452,0.764106,0.842215,0.530801,0.889436,0.318636,0.85528,0.19948,0.169626,0.576655,0.920873,0.442807,0.468711,0.783317,0.300949,0.636504,0.1729,0.605115,0.794142,0.554188,0.347857,0.657516,0.334044,0.0910474,0.994137,0.414636,0.29057,0.786973,0.474547,0.372812,0.826013,0.987576,0.05849,0.868061,0.288441,0.617126,0.784416,0.947909,0.580865,0.274554,0.700334,0.643186,0.279647,0.068265,0.957732,0.590287,0.100336,0.74801,0.646662,0.47975,0.0285377,0.427601,0.0629145,0.36023,0.551744,0.596704,0.238923,0.124062,0.804132,0.246871,0.145311,0.664271,0.694637,0.885145,0.47637,0.131034,0.813487,0.306468,0.950408,0.412244,0.403331,0.112087,0.0818279,0.773876,0.525082,0.552157,0.877583,0.803523,0.211476,0.925397,0.0867144,0.921156,0.0216879,0.239893,0.481814,0.0786151,0.637263,0.349911,0.947392,0.274919,0.939395,0.118874,0.339418,0.569837,0.401097,0.234489,0.818976,0.404706,0.117434,0.885934,0.256354,0.703462,0.711103,0.0914841,0.370855,0.429387,0.980583,0.404538,0.40267,0.629688,0.43522,0.0749032,0.837741,0.567689,0.930657,0.982218,0.794751,0.965142,0.681449,0.0482452,0.886061,0.836774,0.543043,0.897137,0.651126,0.777318,0.753628,0.968623,0.907327,0.823805,0.436225,0.735728,0.391232,0.93371,0.87556,0.933179,0.0631581,0.733267,0.959619,0.393306,0.21816,0.358216,0.791671,0.199241,0.660282,0.806332,0.19969,0.738872,0.470951,0.861664,0.750857,0.226807,0.909574,0.516707,0.137344,0.149931,0.313928,0.92114,0.298042,0.332602,0.235914,0.479481,0.991962,0.664418,0.687267,0.798034,0.345809,0.157793,0.737354,0.0238181,0.33483,0.961046,0.431431,0.364329,0.107294,0.595786,0.777235,0.830531,0.42153,0.0755576,0.552203,0.94517,0.405086,0.455656,0.0464904,0.595792,0.46308,0.603182,0.536708,0.0127978,0.527017,0.374736,0.881897,0.65871,0.0830758,0.578511,0.776025,0.0687363,0.950883,0.20277,0.951544,0.567887,0.5728,0.714083,0.622346,0.155457,0.0985509,0.29777,0.921872,0.960915,0.445998,0.475502,0.602717,0.0150708,0.380607,0.0754175,0.045543,0.820837,0.523719,0.933054,0.850404,0.637022,0.558514,0.794941,0.678463,0.814836,0.0303982,0.838558,0.744824,0.15979,0.358633,0.0579112,0.546571,0.172962,0.109235,0.198054,0.863862,0.891184,0.893103,0.668737,0.772542,0.205034,0.865703,0.526838,0.782569,0.680509,0.10294,0.0749053,0.167256,0.13206,0.550875,0.969752,0.472912,0.942009,0.702402,0.522761,0.635754,0.28155,0.282122,0.0611222,0.999684,0.823291,0.183721,0.337319,0.976395,0.442939,0.961789,0.132974,0.247076,0.636059,0.329239,0.468498,0.538578,0.20887,0.603633,0.0573276,0.0678054,0.695118,0.584993,0.29887,0.0677684,0.896464,0.657983,0.908765,0.710544,0.205301,0.733983,0.335921,0.857753,0.981199,0.344534,0.319832,0.955553,0.722675,0.289095,0.439103,0.879891,0.0487434,0.0549197,0.503458,0.689178,0.0103952,0.925757,0.917025,0.317293,0.188134,0.732693,0.578835,0.319456,0.406797,0.739352,0.497201,0.930761,0.00750697,0.274879,0.121378,0.22347,0.957916,0.354101,0.630282,0.272133,0.468749,0.605848,0.424656,0.705298,0.351994,0.844126,0.030746,0.0164119,0.101266,0.420363,0.556073,0.718711,0.904046,0.716587,0.0132613,0.586703,0.460373,0.118976,0.627416,0.603797,0.301935,0.181958,0.256466,0.236343,0.817162,0.632984,0.215582,0.844026,0.924869,0.484549,0.639848,0.798879,0.209337,0.700149,0.226052,0.260342,0.232096,0.26599,0.892354,0.978247,0.79302,0.664488,0.938243,0.193976,0.993213,0.192381,0.919447,0.549385,0.214236,0.881109,0.698202,0.428714,0.856032,0.888002,0.496862,0.375432,0.0465784,0.450331,0.877029,0.616375,0.602062,0.678013,0.475378,0.0593985,0.465908,0.223395,0.493983,0.832909,0.00309128,0.5915,0.789965,0.130885,0.909794,0.928517,0.432176,0.936963,0.453072,0.470519,0.105694,0.166185,0.685733,0.925704,0.708286,0.455749,0.4266,0.888602,0.234295,0.274518,0.916087,0.948324,0.949256,0.266794,0.0948642,0.565472,0.0871071,0.831139,0.408184,0.123708,0.10301,0.201301,0.379668,0.193857,0.847126,0.669663,0.0366811,0.752065,0.984414,0.750659,0.910059,0.425141,0.905648,0.400571,0.272798,0.371991,0.126598,0.62662,0.869718,0.916407,0.218052,0.261664,0.590065,0.139896,0.846112,0.831897,0.115941,0.223939,0.151518,0.404228,0.976098,0.820565,0.844642,0.43231,0.89928,0.185223,0.970849,0.100308,0.45479,0.624604,0.56308,0.597049,0.287288,0.762073,0.827828,0.0278113,0.628317,0.758462,0.366818,0.0875865,0.0186994,0.388254,0.0583402,0.38597,0.456517,0.528082,0.666065,0.260749,0.857077,0.766108,0.845932,0.947604,0.461216,0.853427,0.496063,0.802679,0.458437,0.621731,0.579681,0.971695,0.280854,0.542999,0.182871,0.579005,0.698939,0.499236,0.434706,0.620397,0.796556,0.203384,0.914672,0.540109,0.92387,0.730232,0.783222,0.422829,0.856719,0.909857,0.42982,0.467708,0.604506,0.683411,0.976947,0.774123,0.461964,0.662217,0.163526,0.0267347,0.202087,0.462483,0.77933,0.358073,0.67152,0.404631,0.573335,0.831424,0.610814,0.287401,0.281603,0.467402,0.665573,0.962254,0.0241576,0.421982,0.156576,0.601208,0.269968,0.877181,0.466937,0.234282,0.225518,0.89274,0.0102772,0.03536,0.0989273,0.590467,0.158567,0.0812974,0.293471,0.272134,0.014076,0.129692,0.805673,0.713983,0.83374,0.508258,0.0426632,0.271163,0.957858,0.93163,0.849365,0.596833,0.18163,0.44593,0.624235,0.891094,0.166855,0.00709224,0.371431,0.435537,0.973031,0.516085,0.937782,0.610418,0.231735,0.213357,0.13842,0.0528582,0.0156285,0.356333,0.35713,0.410719,0.607974,0.107948,0.663119,0.617485,0.631113,0.77904,0.810039,0.568283,0.271215,0.113398,0.280032,0.0290449,0.876142,0.329461,0.0314736,0.724005,0.0314041,0.531926,0.260504,0.426327,0.769487,0.433889,0.144256,0.162082,0.708334,0.467109,0.839575,0.0713171,0.23711,0.727655,0.279961,0.472873,0.626043,0.0929132,0.985717,0.670668,0.465741,0.61229,0.0454374,0.891419,0.817875,0.163192,0.8181,0.370475,0.987715,0.523673,0.156225,0.545569,0.965692,0.305988,0.525052,0.477347,0.652548,0.692684,0.129286,0.8405,0.258697,0.957089,0.166687,0.446313,0.991717,0.161105,0.446722,0.0178356,0.832928,0.0502449,0.702787,0.660662,0.734481,0.799715,0.82748,0.185448,0.723989,0.331456,0.702619,0.560886,0.366539,0.660898,0.962329,0.420263,0.343928,0.00257301,0.482341,0.441313,0.528851,0.714641,0.752877,0.500608,0.167757,0.0491424,0.225832,0.498845,0.558313,0.551932,0.907047,0.624079,0.80183,0.537486,0.0253681,0.600481,0.320048,0.140466,0.876566,0.792784,0.539969,0.848647,0.0615087,0.118577,0.69399,0.79781,0.733593,0.485821,0.7905,0.0153096,0.424469,0.391549,0.956271,0.11239,0.242426,0.815808,0.605083,0.621899,0.803944,0.840337,0.933249,0.488067,0.966999,0.576391,0.812099,0.0818396,0.702036,0.385998,0.325369,0.869472,0.815743,0.397949,0.289254,0.747325,0.699021,0.863977,0.750435,0.295869,0.687082,0.700604,0.635927,0.099928,0.783318,0.0704896,0.489726,0.880406,0.613983,0.799132,0.791272,0.996481,0.0323997,0.909485,0.537231,0.920424,0.900558,0.236938,0.952202,0.464585,0.876955,0.0299102,0.420241,0.514846,0.204015,0.00673431,0.417915,|0.965988,0.165633,0.442065,0.541395,0.376237,0.922415,0.586254,0.597084,0.840373,0.70999,0.0518849,0.316468,0.978229,0.983396,0.190856,0.0221295,0.263072,0.962099,0.486805,0.279175,0.141606,0.456921,0.535739,0.596816,0.722958,0.2945,0.201214,0.13276,0.865495,0.686668,0.896424,0.39535,0.418154,0.583007,0.197381,0.239767,0.544172,0.558119,0.150454,0.410083,0.291229,0.992015,0.700215,0.000468612,0.129596,0.399102,0.904325,0.0465296,0.502679,0.385022,0.452873,0.84994,0.728629,0.3988,0.377035,0.0300605,0.355289,0.811284,0.467081,0.845377,0.495422,0.458683,0.450441,0.263795,0.374977,0.0552279,0.210386,0.181135,0.462246,0.208498,0.542239,0.362505,0.889935,0.255733,0.803359,0.809776,0.423803,0.0836248,0.0471514,0.00938541,0.588536,0.13449,0.758406,0.953001,0.0960009,0.260083,0.0882136,0.164755,0.780883,0.511746,0.675753,0.803189,0.736938,0.829043,0.986783,0.416055,0.552404,0.136509,0.687881,0.253783,0.325905,0.912383,0.685537,0.261125,0.581977,0.316914,0.437621,0.190186,0.717603,0.317386,0.906223,0.195587,0.122386,0.144194,0.628161,0.219723,0.432051,0.00239068,0.76576,0.449601,0.205723,0.796771,0.1401,0.580873,0.096347,0.0706696,0.819058,0.131061,0.281025,0.978582,0.750766,0.584523,0.924374,0.572457,0.256875,0.709093,0.48327,0.852374,0.617381,0.768311,0.334671,0.222239,0.491621,0.695019,0.850336,0.884559,0.357679,0.013731,0.123462,0.987998,0.829175,0.095145,0.180234,0.659396,0.0509387,0.16218,0.394495,0.130009,0.538025,0.0679523,0.526532,0.859495,0.308365,0.577434,0.804139,0.830932,0.724282,0.119748,0.253368,0.736851,0.777861,0.108016,0.00972944,0.412957,0.540197,0.409904,0.745906,0.738983,0.22799,0.738725,0.225284,0.306831,0.854181,0.529909,0.0911328,0.925036,0.959268,0.482744,0.0219842,0.204403,0.25259,0.787721,0.708063,0.714326,0.461899,0.153701,0.410775,0.271243,0.817802,0.770745,0.869042,0.731654,0.841989,0.586332,0.437044,0.175292,0.846489,0.444864,0.589256,0.840356,0.716163,0.968621,0.780414,0.672275,0.407658,0.408344,0.733455,0.42987,0.980849,0.10849,0.827552,0.715344,0.284611,0.894269,0.868602,0.77257,0.148293,0.438268,0.845984,0.215541,0.987633,0.120904,0.369088,0.352184,0.238425,0.230783,0.854378,0.0908945,0.0664592,0.901444,0.519187,0.798734,0.886632,0.983869,0.0622305,0.184225,0.976466,0.685357,0.820243,0.311965,0.412392,0.200958,0.366249,0.728827,0.968919,0.675437,0.0908396,0.291854,0.326238,0.506481,0.964304,0.905809,0.398374,0.225375,0.396267,0.409431,0.386255,0.240031,0.899002,0.410333,0.645987,0.704087,0.643906,0.830405,0.988171,0.786956,0.974901,0.153975,0.655166,0.915724,0.576145,0.318378,0.162998,0.191456,0.268535,0.949543,0.322923,0.999901,0.605849,0.319986,0.474477,0.433476,0.58735,0.570552,0.385911,0.0554265,0.879563,0.284088,0.427415,0.980833,0.954512,0.359861,0.777182,0.98285,0.617425,0.902348,0.989263,0.190236,0.489308,0.613358,0.398394,0.93083,0.70046,0.396798,0.889307,0.268196,0.693295,0.0442035,0.446979,0.143436,0.428559,0.013381,0.673395,0.593043,0.357835,0.0333306,0.215249,0.86738,0.555005,0.269248,0.565994,0.378951,0.573061,0.0076496,0.93123,0.373449,0.566337,0.80576,0.275404,0.948522,0.0661204,0.553366,0.373921,0.444982,0.476898,0.351517,0.846022,0.198088,0.641934,0.67462,0.186629,0.402382,0.769339,0.535161,0.565421,0.280213,0.429831,0.16965,0.0141914,0.902582,0.268087,0.0752434,0.225686,0.995719,0.67709,0.552752,0.828301,0.0083434,0.093967,0.508417,0.582468,0.330473,0.0919221,0.801135,0.398171,0.705546,0.137091,0.939968,0.405726,0.171219,0.318841,0.534133,0.859476,0.0686123,0.794485,0.473654,0.307364,0.896548,0.0170083,0.577808,0.59277,0.873972,0.728074,0.334773,0.6912,0.0464106,0.598651,0.490321,0.57309,0.545895,0.0394499,0.15008,0.412603,0.562248,0.766853,0.920066,0.595415,0.752429,0.918624,0.0939698,0.945417,0.0912138,0.785661,0.113644,0.904697,0.150585,0.679116,0.00834143,0.396509,0.618077,0.39738,0.529325,0.930024,0.206111,0.498964,0.782534,0.0752198,0.900577,0.875013,0.547434,0.38756,0.0176239,0.125008,0.268858,0.712075,0.237528,0.390449,0.568733,0.897344,0.110836,0.425987,0.594835,0.720937,0.454917,0.0435801,0.726554,0.966482,0.33341,0.329608,0.256889,0.742987,0.824375,0.529024,0.951689,0.697488,0.344828,0.319834,0.837469,0.710906,0.912911,0.880038,0.338123,0.334852,0.593275,0.675228,0.599479,0.63984,0.407516,0.098761,0.773168,0.419752,0.600139,0.495503,0.828349,0.216496,0.843177,0.668927,0.751281,0.674568,0.444452,0.540093,0.731986,0.279156,0.840641,0.595427,0.900773,0.756925,0.56931,0.197833,0.0843654,0.82901,0.887821,0.435372,0.110414,0.100984,0.808677,0.936289,0.0109363,0.0967876,0.154128,0.643443,0.83683,0.261306,0.988161,0.973912,0.15838,0.911699,0.192838,0.288538,0.679539,0.0463346,0.133962,0.832216,0.578375,0.617561,0.91073,0.936506,0.352134,0.647333,0.446095,0.29036,0.356984,0.0290656,0.236264,0.244099,0.738574,0.740265,0.5904,0.749904,0.729556,0.427165,0.109587,0.216945,0.448653,0.742018,0.359284,0.271386,0.922626,0.768565,0.309867,0.922678,0.0784963,0.61454,0.0249521,0.0549349,0.436152,0.873516,0.581316,0.737479,0.00148565,0.23149,0.866055,0.506818,0.575044,0.973887,0.256188,0.291986,0.7339,0.631151,0.364145,0.9074,0.858883,0.158761,0.927887,0.255126,0.996448,0.916222,0.013083,0.520218,0.26336,0.735318,0.0746192,0.886183,0.759589,0.341316,0.47319,0.464926,0.95936,0.911093,0.191949,0.652459,0.525237,0.734023,0.691158,0.799446,0.636523,0.0635541,0.748744,0.426166,0.53884,0.856057,0.459458,0.907843,0.22377,0.956542,0.514308,0.353734,0.843122,0.399151,0.47507,0.0189911,0.861592,0.838393,0.335586,0.0118278,0.959792,0.260234,0.466272,0.275065,0.0858524,0.581276,0.537471,0.0663815,0.669164,0.217148,0.762999,0.898753,0.728641,0.327219,0.359997,0.366133,0.713293,0.419603,0.00127774,0.114071,0.969656,0.314115,0.383781,0.772203,0.764159,0.55293,0.182661,0.0772695,0.490336,0.971675,0.452374,0.501424,0.0818782,0.0986177,0.123114,0.273089,0.333275,0.184776,0.919768,0.571862,0.0157109,0.379579,0.832161,0.100803,0.852207,0.000477612,0.0528157,0.49227,0.920097,0.111603,0.484531,0.414117,0.0441025,0.422738,0.755075,0.901862,0.554846,0.92164,0.936212,0.911105,0.491814,0.577907,0.313565,0.931602,0.561722,0.792747,0.998121,0.105403,0.290375,0.608669,0.616504,0.389649,0.895778,0.565574,0.352059,0.648871,0.922579,0.64963,0.843573,0.0936522,0.500436,0.449032,0.560707,0.517632,0.052696,0.173846,0.944182,0.77609,0.492275,0.365034,0.54666,0.478083,0.106662,0.123259,0.587717,0.906744,0.87141,0.64592,0.465766,0.371247,0.218325,0.774926,0.258625,0.527399,0.46439,0.898187,2.98023e-06,0.577314,0.159378,0.464536,0.843401,0.219644,0.621413,0.514088,0.605863,0.253954,0.798016,0.00786555,0.0395288,0.117922,0.718592,0.958401,0.607339,0.705819,0.649548,0.253365,0.613616,0.662707,0.770626,0.945663,0.692426,0.727692,0.569204,0.192631,0.711611,0.13124,0.347868,0.344159,0.469216,0.565014,0.0793943,0.460419,0.907019,0.584554,0.663831,0.660282,0.104433,0.949999,0.0424749,0.905515,0.378676,0.48011,0.707298,0.796838,0.335241,0.318904,0.880905,0.219132,0.18966,0.764862,0.874331,0.585851,0.885177,0.140548,0.211929,0.184988,0.429836,0.656346,0.772515,0.38756,0.707594,0.0550164,0.0898726,0.426847,0.494822,0.980498,0.866892,0.170468,0.513705,0.812855,0.869827,0.655182,0.943356,0.0331277,0.630508,0.749664,0.00925392,0.978232,0.935535,0.105391,0.434226,0.0441839,0.254261,0.840665,0.138554,0.260052,0.232923,0.286644,0.397148,0.384076,0.527794,0.395892,0.246835,0.698133,0.819328,0.1053,0.0347708,0.24619,0.0918844,0.985495,0.646111,0.535731,0.740049,0.0814056,0.0430554,0.075622,0.966477,0.0601628,0.786036,0.135153,0.638238,0.422532,0.845025,0.292194,0.335853,0.131167,0.992305,0.580307,0.289408,0.790204,0.747958,0.597615,0.0251577,0.324288,0.440879,0.368594,0.528268,0.920901,0.790733,0.822923,0.302751,0.531658,0.31172,0.656843,0.279376,0.840248,0.108557,0.102177,0.0863208,0.56357,0.450437,0.782862,0.00175285,0.426431,0.912562,0.734044,0.983712,0.368273,0.79174,0.599595,0.303196,0.297887,0.155367,0.608291,0.650093,0.39116,0.370616,0.274188,0.787465,0.384747,0.9638,0.544754,0.218158,0.407228,0.485582,0.737203,0.627014,0.062181,0.733393,0.625638,0.338745,0.419967,0.422031,0.594885,0.353269,0.847783,0.219857,0.876468,0.614476,0.125929,0.803858,0.931128,0.715099,0.913951,0.147918,0.967791,0.95267,0.583289,0.89851,0.434992,0.272047,0.188406,0.293601,0.939108,0.018173,0.816725,0.775475,0.359977,0.3998,0.106556,0.361633,0.614006,0.47719,0.868145,0.546323,0.249178,0.893242,0.785786,0.923808,0.320577,0.485535,0.129958,0.245274,0.1239,0.744256,0.106889,0.256086,0.812984,0.701983,0.306894,0.0285876,0.413381,0.559713,0.766142,0.167175,0.425721,0.534543,0.633237,0.0713649,0.265744,0.937901,0.960482,0.982677,0.910393,0.855286,0.303829,0.0180246,0.915492,0.582447,0.478992,0.663731,0.0480608,0.649128,0.195113,0.704912,0.15239,0.809077,0.115875,0.446905,0.172891,0.293524,0.617401,0.376787,0.696749,0.636128,0.0609624,0.831497,0.1144,0.095732,0.526088,0.313638,0.460319,0.46828,0.242365,0.611302,0.637935,0.43982,0.790031,0.19132,0.498109,0.542596,0.781401,0.337362,0.912979,0.707027,0.934849,0.56752,0.976761,0.28624,0.253035,0.940774,0.33069,0.0431035,0.516347,0.72475,|0.62593,0.179511,0.460442,0.779263,0.0332847,0.604918,0.68998,0.0146113,0.47938,0.467777,0.75659,0.201378,0.40258,0.262877,0.96366,0.825149,0.841249,0.940984,0.891466,0.0533354,0.900869,0.765935,0.23601,0.452526,0.903575,0.559474,0.877431,0.43402,0.822772,0.708405,0.931849,0.718889,0.111893,0.778137,0.626851,0.271216,0.874689,0.532033,0.325373,0.816497,0.972823,0.91208,0.34926,0.881106,0.892478,0.204506,0.629336,0.340701,0.831934,0.510271,0.979168,0.275113,0.508891,0.273903,0.311252,0.304655,0.300861,0.225703,0.636736,0.543364,0.627811,0.681405,0.709855,0.533441,0.409521,0.0488313,0.732958,0.322248,0.823818,0.217738,0.21561,0.369977,0.726166,0.987528,0.355677,0.962649,0.524696,0.607281,0.622554,0.779799,0.328321,0.019851,0.621571,0.835082,0.17928,0.648291,0.643512,0.33247,0.448679,0.486809,0.504101,0.936321,0.175064,0.284382,0.58321,0.876043,0.528709,0.0684226,0.648699,0.198784,0.95119,0.384461,0.207076,0.668782,0.0405799,0.975849,0.00120944,0.157383,0.314974,0.364756,0.155981,0.0790273,0.151605,0.267726,0.354274,0.690354,0.372341,0.724397,0.351695,0.572069,0.932532,0.445426,0.372899,0.833618,0.982702,0.0911477,0.187027,0.854031,0.514483,0.837224,0.685991,0.884721,0.264807,0.255329,0.938118,0.432119,0.335504,0.54821,0.919925,0.439539,0.220195,0.831862,0.831729,0.296271,0.287669,0.237759,0.685166,0.251761,0.308558,0.982715,0.410707,0.943083,0.409014,0.439729,0.798177,0.820062,0.128264,0.209236,0.571242,0.629171,0.511806,0.341598,0.954917,0.734923,0.0743722,0.617095,0.857635,0.0752358,0.228232,0.33651,0.426134,0.478617,0.0110661,0.434117,0.490254,0.762833,0.068735,0.163988,0.423976,0.593967,0.953208,0.335271,0.777971,0.842849,0.474257,0.562539,0.102076,0.0870017,0.312324,0.762914,0.606097,0.936184,0.677132,0.93809,0.774347,0.21475,0.776073,0.158478,0.337193,0.72062,0.363241,0.723382,0.840831,0.146173,0.502466,0.698529,0.410802,0.148265,0.0035376,0.0232331,0.2076,0.561908,0.249939,0.277236,0.011553,0.981353,0.995245,0.994768,0.187045,0.457879,0.234917,0.447647,0.304251,0.514873,0.553377,0.752571,0.327279,0.347068,0.898989,0.124307,0.464509,0.846228,0.266329,0.675575,0.473389,0.983893,0.2001,0.362429,0.11334,0.0855039,0.266661,0.454573,0.0415685,0.0448047,0.0380575,0.118718,0.319995,0.656604,0.746382,0.768632,0.0659847,0.87511,0.644077,0.91602,0.0246645,0.595065,0.87381,0.406369,0.601671,0.00685138,0.555881,0.7798,0.548396,0.360447,0.811208,0.715823,0.615037,0.640039,0.258927,0.270954,0.0658795,0.270442,0.429416,0.337667,0.794599,0.501561,0.08363,0.941555,0.999043,0.637004,0.813615,0.833751,0.266944,0.820469,0.619232,0.753576,0.331603,0.542085,0.908971,0.0748266,0.987755,0.0707559,0.896975,0.664342,0.904022,0.0522537,0.00363529,0.386638,0.945564,0.996348,0.0160574,0.719797,0.828206,0.16001,0.495914,0.488208,0.709592,0.0733595,0.506351,0.182145,0.0508671,0.0934108,0.401785,0.745284,0.114878,0.0187832,0.517686,0.0643202,0.812136,0.530343,0.184065,0.53538,0.573225,0.220679,0.974961,0.133831,0.0729828,0.129637,0.670032,0.190141,0.0132959,0.249766,0.909178,0.427612,0.848962,0.679007,0.983156,0.896914,0.889974,0.525772,0.520764,0.893523,0.159425,0.539459,0.486041,0.97326,0.628756,0.849701,0.186996,0.949275,0.52646,0.32292,0.623101,0.0839095,0.512525,0.828685,0.345216,0.838999,0.814062,0.178616,0.212826,0.864948,0.830278,0.691968,0.780969,0.323706,0.599376,0.145678,0.537142,0.0957234,0.422908,0.082342,0.670055,0.0368192,0.680231,0.770665,0.727902,0.198662,0.482613,0.415441,0.590512,0.514075,0.0412147,0.676296,0.788907,0.21153,0.692881,0.552823,0.558042,0.739789,0.691851,0.248759,0.301466,0.0782771,0.693914,0.851212,0.515129,0.712439,0.0977091,0.272137,0.528169,0.493409,0.741169,0.0271956,0.388418,0.210231,0.714633,0.557995,0.163276,0.0864385,0.264018,0.939931,0.906333,0.110301,0.520294,0.180389,0.970556,0.461874,0.0785117,0.276186,0.5426,0.604463,0.630101,0.254517,0.474227,0.660472,0.832529,0.0189659,0.227687,0.604652,0.523112,0.655068,0.900978,0.364381,0.306632,0.549358,0.109429,0.0545411,0.253112,0.126201,0.244093,0.379945,0.534213,0.392792,0.724504,0.96414,0.235326,0.698374,0.146834,0.204723,0.0666491,0.682514,0.383087,0.665106,0.252308,0.0289122,0.851039,0.652854,0.97768,0.28678,0.229827,0.0518641,0.915238,0.444664,0.399498,0.727664,0.395342,0.276965,0.253365,0.45634,0.200519,0.288532,0.924545,0.205737,0.554367,0.72802,0.837369,0.780294,0.718423,0.392912,0.387745,0.501001,0.205907,0.987915,0.15801,0.212,0.924043,0.530634,0.0842682,0.832056,0.16115,0.403814,0.593027,0.224294,0.421446,0.444963,0.357702,0.68559,0.679711,0.167409,0.557355,0.204093,0.340977,0.403709,0.743044,0.197279,0.377896,0.33027,0.701221,0.281931,0.071708,0.778598,0.245021,0.227367,0.45615,0.0649744,0.78871,0.924322,0.621677,0.87229,0.151606,0.94401,0.168622,0.253776,0.497144,0.250726,0.562539,0.236259,0.939333,0.226952,0.82627,0.900867,0.246919,0.659691,0.810041,0.00230163,0.374785,0.764802,0.953023,0.562276,0.199634,0.266801,0.977362,0.737859,0.376375,0.795155,0.557203,0.374316,0.120625,0.173084,0.68121,0.00126529,0.064316,0.863085,0.468008,0.80094,0.330086,0.981507,0.898204,0.0954093,0.952087,0.560296,0.527195,0.967999,0.729105,0.203984,0.950228,0.420247,0.538206,0.595282,0.527447,0.998488,0.0867606,0.728423,0.165888,0.284016,0.00945115,0.857841,0.534479,0.190463,0.879167,0.64571,0.833019,0.452635,0.913479,0.684282,0.54328,0.723257,0.95572,0.125286,0.165321,0.688297,0.698223,0.428858,0.353066,0.055372,0.134982,0.380737,0.326844,0.781708,0.790247,0.125139,0.245467,0.985415,0.882509,0.724598,0.149539,0.975594,0.723148,0.653027,0.397204,0.246251,0.363766,0.89154,0.929964,0.0434616,0.356367,0.0663639,0.203131,0.545272,0.605104,0.749838,0.712842,0.840709,0.06197,0.186693,0.432776,0.633216,0.271753,0.361303,0.103729,0.0553538,0.728609,0.8054,0.817717,0.867157,0.77609,0.0233388,0.63005,0.173086,0.891008,0.607646,0.0949622,0.283822,0.240909,0.71981,0.713177,0.369778,0.552742,0.18568,0.525944,0.234434,0.285708,0.698317,0.134527,0.38435,0.571156,0.766023,0.352384,0.387621,0.859927,0.848358,0.711788,0.840282,0.122801,0.995555,0.352129,0.239115,0.844771,0.0784039,0.998633,0.765182,0.298639,0.027985,0.711019,0.747779,0.797241,0.062719,0.835524,0.731741,0.223678,0.182577,0.0189516,0.2379,0.644831,0.531719,0.0627136,0.0967867,0.463359,0.100007,0.667062,0.70415,0.86625,0.976627,0.107671,0.702258,0.575103,0.983436,0.372796,0.393031,0.599974,0.0630363,0.270103,0.480814,0.551485,0.910272,0.977987,0.419862,0.915264,0.836138,0.595764,0.695615,0.949181,0.420504,0.844581,0.497097,0.33105,0.28449,0.386486,0.801698,0.481948,0.173401,0.273703,0.359465,0.148296,0.509142,0.262228,0.803657,0.770476,0.411036,0.579686,0.130123,0.414874,0.549002,0.765152,0.85253,0.649742,0.525365,0.625881,0.957171,0.432593,0.165987,0.878971,0.294142,0.419228,0.460021,0.328896,0.471706,0.443213,0.867418,0.0843044,0.890519,0.648156,0.158138,0.554541,0.997441,0.398264,0.513615,0.907643,0.136565,0.315295,0.769003,0.0150179,0.547406,0.192766,0.00175238,0.962309,0.404293,0.361359,0.345304,0.446379,0.952151,0.233942,0.556849,0.0524377,0.377475,0.987086,0.0286716,0.879708,0.89901,0.191322,0.517545,0.304189,0.102522,0.64434,0.414313,0.190707,0.652446,0.816162,0.262887,0.503552,0.291247,0.753227,0.260864,0.744257,0.692458,0.426504,0.234823,0.0773811,0.0723013,0.871754,0.202949,0.349171,0.75731,0.626812,0.795252,0.665009,0.216495,0.271999,0.432133,0.288137,0.809515,0.274092,0.932765,0.301658,0.159987,0.323748,0.169986,0.388493,0.454831,0.160342,0.842425,0.644603,0.387724,0.742657,0.598962,0.3405,0.933267,0.608859,0.577769,0.684093,0.145804,0.948648,0.836211,0.395966,0.565225,0.988646,0.474862,0.37492,0.060065,0.456082,0.146148,0.528921,0.664159,0.58161,0.396276,0.878759,0.043937,0.397415,0.976733,0.136905,0.90536,0.991356,0.332139,0.0785939,0.0569628,0.428642,0.128726,0.00881964,0.606068,0.283701,0.475151,0.529682,0.401221,0.973131,0.00990003,0.806066,0.736625,0.347051,0.85191,0.490313,0.10449,0.537046,0.130384,0.037389,0.150908,0.721164,0.416252,0.111779,0.725112,0.144638,0.13699,0.308514,0.465544,0.189138,0.758319,0.930165,0.402783,0.678639,0.460522,0.32397,0.606262,0.584912,0.495068,0.751281,0.469392,0.981114,0.20512,0.15765,0.75902,0.553053,0.580857,0.81811,0.13562,0.335872,0.535706,0.397979,0.105526,0.369933,0.281286,0.180152,0.934234,0.118793,0.537541,0.6727,0.475783,0.215237,0.42884,0.268682,0.724053,0.941782,0.585829,0.41725,0.503005,0.823947,0.509156,0.868458,0.645531,0.0667179,0.621015,0.507155,0.576665,0.0935349,0.075667,0.959601,0.176498,0.845237,0.550891,0.700486,0.0518478,0.693937,0.64194,0.862054,0.727359,0.927332,0.111232,0.551396,0.600347,0.207047,0.237937,0.126764,0.983739,0.19111,0.874575,0.889049,0.338871,0.414511,0.919775,0.114815,0.0681769,0.0164758,0.0581822,0.153107,0.603987,0.627739,0.319776,0.181913,0.314998,0.798113,0.47488,0.656747,0.124543,0.465706,0.76354,0.122217,0.683114,0.16323,0.988057,0.946243,0.483149,0.632134,0.0248289,0.161686,0.293512,0.724258,0.815619,0.89737,0.178531,0.0783831,0.562016,0.303046,0.228834,0.2583,0.447213,0.798034,0.78696,0.625065,0.262286,0.615266,0.481801,|0.893485,0.490234,0.795149,0.660594,0.477863,0.929717,0.14233,0.591407,0.848149,0.823829,0.778331,0.150294,0.461766,0.776979,0.354598,0.350256,0.219168,0.24436,0.757609,0.115886,0.156832,0.749143,0.954013,0.983817,0.146879,0.597125,0.768062,0.104352,0.566617,0.0937361,0.0279472,0.452456,0.778244,0.972719,0.841737,0.116197,0.279422,0.699757,0.000958264,0.0967844,0.822459,0.433153,0.531605,0.830458,0.0377852,0.307266,0.411467,0.0100188,0.300304,0.457209,0.382375,0.75099,0.984964,0.423484,0.98199,0.822259,0.179107,0.19532,0.392115,0.131672,0.774304,0.32483,0.586264,0.0186545,0.472424,0.123429,0.144131,0.313258,0.339383,0.184749,0.52294,0.770123,0.960915,0.0175007,0.366852,0.863198,0.999041,0.447698,0.141443,0.999028,0.779398,0.295244,0.0750166,0.632466,0.443787,0.417969,0.171653,0.596696,0.736279,0.968897,0.856181,0.655774,0.211477,0.77942,0.745747,0.158727,0.304336,0.992174,0.637022,0.0647801,0.994215,0.138541,0.779113,0.00996649,0.811618,0.208136,0.893951,0.0361421,0.433038,0.888754,0.546637,0.483361,0.896,0.367975,0.860533,0.316751,0.303891,0.465985,0.720114,0.0295243,0.101609,0.227215,0.733543,0.418009,0.825407,0.955289,0.0674639,0.984989,0.832634,0.514172,0.513978,0.449817,0.316082,0.487092,0.422307,0.14347,0.812264,0.741944,0.62342,0.149465,0.502311,0.347641,0.00578785,0.309815,0.963831,0.156438,0.251127,0.389825,0.19083,0.414816,0.368575,0.825107,0.627169,0.0430806,0.3915,0.421556,0.360748,0.41866,0.0461295,0.533413,0.0170982,0.635037,0.421667,0.985961,0.535778,0.520522,0.436786,0.312465,0.570723,0.768267,0.777846,0.416234,0.882389,0.558207,0.32479,0.937972,0.932685,0.947358,0.367832,0.177943,0.930816,0.344079,0.262736,0.110684,0.690428,0.63768,0.439753,0.879297,0.751469,0.944136,0.931126,0.666031,0.616042,0.439307,0.379103,0.635758,0.44731,0.90887,0.251407,0.667661,0.376645,0.515509,0.0665532,0.758076,0.282466,0.298283,0.416559,0.268618,0.94815,0.859478,0.36516,0.618537,0.560138,0.774768,0.899797,0.328953,0.854794,0.225832,0.00119257,0.0663678,0.290291,0.31681,0.61023,0.654069,0.766325,0.915056,0.747605,0.539074,0.15401,0.921884,0.0381371,0.761302,0.516689,0.803195,0.604987,0.804708,0.371914,0.500372,0.160833,0.668292,0.00275785,0.816195,0.0448948,0.172413,0.639354,0.661762,0.552758,0.958045,0.100957,0.867728,0.667732,0.419823,0.940296,0.240102,0.3619,0.394377,0.484331,0.305745,0.309126,0.838297,0.125329,0.52228,0.832103,0.736658,0.840103,0.318939,0.793914,0.523598,0.693549,0.239139,0.243659,0.837151,0.979923,0.237785,0.64797,0.399679,0.265117,0.207053,0.271587,0.422713,0.284121,0.307801,0.00997972,0.511779,0.950326,0.268909,0.159575,0.468767,0.0215539,0.044956,0.289515,0.33347,0.0288092,0.19695,0.919053,0.649241,0.240434,0.672161,0.472095,0.106398,0.988678,0.536896,0.917912,0.874403,0.781989,0.844878,0.949105,0.622103,0.254597,0.308888,0.181443,0.428079,0.416398,0.695509,0.389705,0.975994,0.884171,0.747631,0.497563,0.528563,0.522182,0.658294,0.534893,0.825276,0.0437831,0.804516,0.764984,0.0392333,0.265892,0.0784993,0.219313,0.906769,0.722837,0.709503,0.619453,0.0754235,0.25312,0.886183,0.631234,0.815561,0.656305,0.529546,0.700765,0.582003,0.944398,0.986312,0.145787,0.240355,0.392073,0.207899,0.448916,0.42967,0.274125,0.277964,0.371412,0.838815,0.328515,0.209981,0.463669,0.970626,0.717189,0.208741,0.688733,0.150739,0.339042,0.939232,0.616559,0.541632,0.766561,0.861672,0.34342,0.608562,0.0457934,0.618724,0.0216496,0.302987,0.980548,0.356871,0.428277,0.418713,0.451488,0.758561,0.722824,0.22736,0.0303026,0.028493,0.891527,0.810019,0.602152,0.512459,0.596468,0.576258,0.744166,0.689088,0.346588,0.349699,0.768201,0.466171,0.413646,0.656994,0.444555,0.0578121,0.306333,0.439623,0.570939,0.702899,0.553444,0.241893,0.688068,0.863505,0.425696,0.266627,0.945265,0.474457,0.614262,0.260459,0.084253,0.881864,0.159183,0.0412126,0.11704,0.509824,0.356862,0.752123,0.452412,0.566658,0.863026,0.726848,0.81546,0.346358,0.324108,0.241526,0.525432,0.613631,0.0678833,0.440178,0.93702,0.818436,0.612459,0.365836,0.0285245,0.00658894,0.0617639,0.882685,0.419855,0.0612552,0.173421,0.679528,0.890085,0.633562,0.0426182,0.1351,0.712803,0.821399,0.836705,0.78733,0.117718,0.588452,0.152727,0.682837,0.713054,0.909196,0.235621,0.471042,0.198769,0.902747,0.155873,0.986274,0.556101,0.105891,0.38509,0.453983,0.93895,0.539179,0.0950281,0.775632,0.385324,0.0338231,0.87686,0.784698,0.506836,0.860027,0.0105777,0.393753,0.69606,0.904732,0.587159,0.758484,0.925012,0.775948,0.0665441,0.167034,0.583082,0.53859,0.382789,0.669454,0.223985,0.303524,0.744819,0.974624,0.51962,0.205527,0.0925672,0.864222,0.822059,0.0339622,0.180004,0.143361,0.0317535,0.486174,0.176913,0.792405,0.806697,0.791732,0.944248,0.815982,0.674865,0.360787,0.377892,0.205082,0.414664,0.777235,0.620275,0.505283,0.871804,0.18437,0.99128,0.372822,0.138529,0.265435,0.0312622,0.218876,0.474173,0.843771,0.63457,0.547285,0.891309,0.952114,0.631155,0.032662,0.552284,0.67081,0.345473,0.0652842,0.757168,0.475338,0.945923,0.0784409,0.927762,0.310436,0.947697,0.632786,0.797006,0.378802,0.687421,0.293868,0.461163,0.793789,0.447374,0.468718,0.158553,0.858423,0.673999,0.0906182,0.37063,0.793489,0.32199,0.669664,0.390897,0.811213,0.57273,0.777676,0.67454,0.00599813,0.800602,0.32172,0.778982,0.858433,0.875112,0.0874276,0.41355,0.630001,0.763738,0.341778,0.366528,0.444609,0.29769,0.0690135,0.0193087,0.171816,0.234044,0.602011,0.266665,0.0839802,0.184574,0.928759,0.191357,0.719573,0.592063,0.0728479,0.765975,0.0992671,0.664812,0.114776,0.933145,0.157215,0.552287,0.873507,0.438981,0.324527,0.916016,0.905681,0.924096,0.530531,0.303737,0.370561,0.989656,0.769508,0.935542,0.806739,0.19962,0.109365,0.604403,0.72372,0.564576,0.35639,0.956432,0.485479,0.0682769,0.914662,0.505,0.7844,0.302087,0.486239,0.0618851,0.193204,0.0521781,0.422698,0.0967234,0.323958,0.915222,0.209191,0.861099,0.203377,0.14994,0.616264,0.697048,0.45445,0.736435,0.140139,0.708392,0.432814,0.496749,0.111743,0.486373,0.188676,0.793764,0.452349,0.345322,0.0260248,0.966725,0.0594853,0.906265,0.0828898,0.803897,0.823984,0.215706,0.276914,0.185182,0.255161,0.341422,0.42401,0.405377,0.40673,0.571312,0.589125,0.0917263,0.599011,0.901307,0.446528,0.784231,0.844418,0.567929,0.259287,0.276511,0.382873,0.510533,0.325183,0.485398,0.232502,0.976832,0.726804,0.42607,0.071869,0.73757,0.457346,0.44033,0.683476,0.585066,0.918622,0.45652,0.803054,0.669261,0.155008,0.140382,0.970755,0.870193,0.35597,0.760233,0.480676,0.164768,0.476644,0.194347,0.959831,0.64515,0.96005,0.453021,0.107215,0.450358,0.946372,0.0457326,0.765548,0.52236,0.119614,0.766091,0.730922,0.220345,0.246629,0.256881,0.119425,0.132651,0.561141,0.217407,0.301994,0.1484,0.895124,0.292636,0.107057,0.374671,0.469578,0.389839,0.76318,0.648594,0.761075,0.428002,0.138651,0.368202,0.130475,0.422758,0.103256,0.0802424,0.976083,0.472231,0.313165,0.660777,0.198483,0.559128,0.35358,0.532848,0.594616,0.975333,0.500503,0.839017,0.256995,0.707241,0.485829,0.0631312,0.613789,0.627359,0.451398,0.331403,0.902148,0.431031,0.148037,0.264255,0.188175,0.248802,0.361354,0.560885,0.676457,0.727259,0.898942,0.78694,0.298052,0.651263,0.939474,0.401647,0.114773,0.963892,0.0332177,0.45813,0.560455,0.473118,0.275639,0.253702,0.946581,0.667067,0.970262,0.19685,0.657188,0.676938,0.808828,0.849845,0.242796,0.149806,0.964203,0.435211,0.258908,0.857858,0.90383,0.471937,0.725251,0.182985,0.656986,0.952454,0.136381,0.0108334,0.873753,0.420136,0.1804,0.368623,0.78202,0.566933,0.254381,0.0636037,0.698676,0.624634,0.233783,0.974948,0.853464,0.258801,0.67452,0.530217,0.451507,0.185355,0.533829,0.351238,0.321349,0.45261,0.638478,0.8179,0.934256,0.191101,0.523696,0.293555,0.609002,0.43212,0.589609,0.425104,0.167519,0.79994,0.77127,0.376182,0.849547,0.00759137,0.211455,0.405237,0.940022,0.444633,0.586132,0.705455,0.634499,0.783285,0.376397,0.837585,0.658746,0.152353,0.795169,0.36447,0.513679,0.188306,0.269978,0.708049,0.0857933,0.0873103,0.0611607,0.782116,0.569429,0.416709,0.345163,0.722759,0.43784,0.576858,0.346279,0.197124,0.640719,0.818661,0.0386308,0.223208,0.543827,0.930349,0.778765,0.658573,0.509219,0.202263,0.708088,0.707065,0.694711,0.178034,0.810235,0.220013,0.132209,0.161872,0.64783,0.127833,0.462866,0.966929,0.481552,0.364362,0.583401,0.0253095,0.352948,0.964816,0.391436,0.511115,0.762091,0.83857,0.432716,0.156384,0.969375,0.5601,0.750867,0.418342,0.282154,0.296663,0.22849,0.378717,0.922745,0.843001,0.222655,0.332012,0.318152,0.340016,0.116393,0.756111,0.139259,0.30894,0.461687,0.637609,0.638829,0.570437,0.678735,0.0198708,0.289687,0.117561,0.508965,0.691031,0.246821,0.915675,0.371464,0.918764,0.709991,0.833569,0.629549,0.326877,0.875193,0.443291,0.932292,0.822049,0.96436,0.871689,0.453498,0.860044,0.769261,0.225427,0.0661353,0.321655,0.357445,0.144088,0.828445,0.0138935,0.169809,0.9094,0.886878,0.747786,0.445928,0.466619,0.777284,0.0761502,0.452848,0.158066,0.0550745,0.684417,0.891421,0.354744,0.408556,0.431467,0.949322,0.446493,0.0738335,0.960854,0.821153,0.944189,0.435569,0.508141,0.876808,0.561752,0.832992,0.898416,0.510083,|0.774916,0.759305,0.461586,0.794841,0.305509,0.766451,0.188598,0.515142,0.804014,0.803759,0.275742,0.384498,0.128431,0.578268,0.893639,0.809836,0.279145,0.878708,0.233937,0.252799,0.909085,0.850535,0.055214,0.915295,0.33515,0.506458,0.672527,0.456384,0.753143,0.735657,0.695917,0.944059,0.911324,0.138267,0.763043,0.100236,0.258193,0.488497,0.359793,0.675867,0.11718,0.425732,0.838816,0.339693,0.911459,0.766682,0.628498,0.0510978,0.893236,0.599649,0.0267123,0.923113,0.535231,0.532683,0.732649,0.706933,0.828085,0.960474,0.743358,0.895285,0.662305,0.147017,0.708203,0.519218,0.960444,0.598285,0.883442,0.942439,0.907734,0.395179,0.919331,0.200298,0.879716,0.554639,0.798337,0.391396,0.893231,0.549921,0.976339,0.184937,0.0204248,0.0843785,0.839107,0.406938,0.423355,0.516614,0.0045768,0.166397,0.496369,0.537932,0.858878,0.132775,0.858615,0.103424,0.699658,0.522767,0.363229,0.289899,0.480961,0.980691,0.89055,0.791841,0.473613,0.168782,0.384536,0.207905,0.876523,0.687632,0.771423,0.0341197,0.510483,0.527631,0.876043,0.564507,0.0752901,0.282673,0.28853,0.836955,0.54549,0.0922917,0.805221,0.891995,0.114495,0.446605,0.691108,0.271446,0.217588,0.731749,0.722376,0.696387,0.632865,0.36007,0.406558,0.627439,0.260655,0.930571,0.642703,0.333428,0.440594,0.591087,0.732813,0.85849,0.363921,0.990699,0.323673,0.00843883,0.973443,0.462973,0.749595,0.354892,0.985911,0.429191,0.817928,0.286979,0.342796,0.609891,0.111166,0.612517,0.832881,0.361055,0.865478,0.080421,0.479501,0.513784,0.4455,0.779021,0.18053,0.805077,0.877871,0.483782,0.651191,0.773214,0.802948,0.0878501,0.899782,0.788376,0.758415,0.0614047,0.561564,0.08247,0.427096,0.166174,0.100669,0.0409663,0.67571,0.670996,0.166253,0.634115,0.517821,0.968775,0.0573198,0.459563,0.235204,0.347716,0.361501,0.0417243,0.609956,0.687256,0.387468,0.406883,0.785856,0.314718,0.688084,0.0264374,0.824796,0.643249,0.0284035,0.817224,0.398888,0.131073,0.177366,0.938562,0.508378,0.170119,0.606034,0.0163938,0.753646,0.794926,0.692562,0.883806,0.657798,0.710626,0.0399005,0.0478726,0.394185,0.918731,0.127926,0.754863,0.984156,0.184287,0.560934,0.605018,0.542997,0.31511,0.879934,0.395415,0.410952,0.127295,0.170552,0.313246,0.0747172,0.165616,0.99551,0.930218,0.262094,0.197249,0.193997,0.788877,0.0986329,0.377338,0.610077,0.130216,0.251196,0.752685,0.118442,0.817525,0.474936,0.533732,0.947807,0.91618,0.567794,0.514713,0.924564,0.626398,0.920742,0.0392429,0.654464,0.806417,0.736092,0.115542,0.337548,0.0146345,0.0689589,0.568454,0.352232,0.512417,0.40929,0.011326,0.85881,0.518309,0.1206,0.468819,0.513535,0.256773,0.699231,0.100169,0.397928,0.133358,0.23062,0.0298381,0.73087,0.523743,0.748179,0.329931,0.869206,0.0547628,0.822358,0.831059,0.0249664,0.986217,0.56681,0.743547,0.365983,0.479169,0.921944,0.900988,0.0319631,0.857904,0.596991,0.126483,0.348006,0.50062,0.519033,0.151793,0.906921,0.652918,0.130214,0.25888,0.951119,0.105286,0.463717,0.260119,0.0194132,0.815005,0.269746,0.824106,0.317519,0.784684,0.997543,0.945011,0.245392,0.863346,0.973775,0.863995,0.0370793,0.269096,0.874667,0.447713,0.0900844,0.30931,0.16638,0.358175,0.450699,0.989281,0.908126,0.305336,0.819903,0.0105636,0.846061,0.213493,0.95818,0.141492,0.533208,0.495004,0.707326,0.355592,0.464909,0.0432116,0.423961,0.426991,0.309529,0.455839,0.962699,0.822793,0.265408,0.894042,0.213405,0.20849,0.442354,0.749481,0.0583963,0.544298,0.565925,0.223046,0.284889,0.194533,0.0283613,0.413682,0.312711,0.826604,0.578835,0.191927,0.980667,0.438544,0.776386,0.648175,0.293349,0.743008,0.828177,0.946069,0.0358423,0.387696,0.120203,0.6592,0.0994716,0.97623,0.409863,0.69706,0.678123,0.714927,0.395925,0.972494,0.959418,0.206225,0.994148,0.934354,0.348187,0.211994,0.822486,0.348056,0.0317429,0.957859,0.121778,0.252859,0.857512,0.901448,0.427523,0.655428,0.0916971,0.767058,0.607799,0.053196,0.916219,0.994147,0.160447,0.72384,0.0963635,0.929842,0.633267,0.981039,0.118211,0.513501,0.999549,0.559424,0.195445,0.152297,0.403253,0.791399,0.297281,0.0460522,0.348315,0.951271,0.331779,0.875774,0.574865,0.783642,0.163644,0.717207,0.523695,0.7502,0.169826,0.27509,0.528439,0.454498,0.823733,0.738831,0.581966,0.524686,0.0737595,0.882287,0.989459,0.767866,0.0292851,0.143943,0.664892,0.240815,0.299472,0.540064,0.337232,0.628896,0.463884,0.0233438,0.138407,0.928845,0.327205,0.444757,0.822914,0.706694,0.396957,0.345902,0.0208773,0.00889069,0.762651,0.512563,0.638199,0.142589,0.846083,0.831238,0.933907,0.795497,0.35772,0.499769,0.881456,0.265355,0.982864,0.753428,0.950368,0.50637,0.942081,0.31636,0.482503,0.226663,0.482834,0.85693,0.604675,0.502265,0.711428,0.104075,0.120797,0.667497,0.473552,0.744471,0.437902,0.58817,0.565051,0.0432947,0.538032,0.546352,0.429745,0.149523,0.048561,0.726142,0.472842,0.0529418,0.0211583,0.541309,0.505045,0.258762,0.0427729,0.957832,0.917279,0.855546,0.812099,0.809477,0.909361,0.0851807,0.0669007,0.108694,0.0726791,0.91265,0.509061,0.693335,0.975553,0.873593,0.376101,0.657778,0.255966,0.375918,0.950371,0.133869,0.978996,0.489999,0.349075,0.326732,0.972591,0.639455,0.177213,0.65463,0.989783,0.521136,0.69143,0.0203271,0.881089,0.684748,0.499156,0.437901,0.0417961,0.570295,0.379532,0.353523,0.563724,0.0209909,0.866984,0.656067,0.975941,0.847422,0.448825,0.444993,0.955927,0.653134,0.613114,0.664088,0.397724,0.29389,0.744214,0.904361,0.278603,0.598058,0.311027,0.597285,0.634537,0.0809656,0.0999309,0.973584,0.18905,0.985847,0.880756,0.118345,0.90407,0.697902,0.459423,0.331474,0.502972,0.0586477,0.449854,0.170107,0.22583,0.118409,0.693589,0.799576,0.593213,0.839907,0.46849,0.835155,0.710173,0.340854,0.387402,0.655168,0.943561,0.634608,0.169976,0.718879,0.424723,0.237854,0.544438,0.254366,0.049349,0.678813,0.673115,0.840999,0.00628924,0.927307,0.870757,0.91893,0.28837,0.318357,0.658153,0.295415,0.172276,0.0121889,0.239954,0.720382,0.16436,0.292985,0.592272,0.00894511,0.736848,0.778694,0.521532,0.438304,0.594779,0.320111,0.253679,0.799797,0.600613,0.0737711,0.576277,0.683637,0.404732,0.33767,0.430158,0.969706,0.135648,0.887957,0.373434,0.00232625,0.697059,0.798518,0.65935,0.679342,0.153818,0.667872,0.141381,0.335589,0.279585,0.252476,0.762643,0.58802,0.581051,0.79771,0.727666,0.61607,0.932594,0.475646,0.200696,0.803483,0.269006,0.870323,0.861565,0.638222,0.0187523,0.48439,0.462456,0.212377,0.410431,0.283825,0.545915,0.349171,0.914861,0.40153,0.0713748,0.491335,0.229536,0.790367,0.600751,0.388632,0.778777,0.703775,0.48286,0.448973,0.64724,0.804293,0.381959,0.143413,0.973968,0.631741,0.627451,0.575595,0.303246,0.0719134,0.00107962,0.613645,0.637539,0.263783,0.989673,0.59842,0.924897,0.282809,0.678508,0.383787,0.449231,0.463589,0.465341,0.924072,0.141209,0.256391,0.134898,0.543323,0.0507594,0.458723,0.391216,0.35863,0.258483,0.19971,0.823334,0.498515,0.533807,0.95498,0.281393,0.75367,0.24518,0.861068,0.416709,0.876021,0.0911362,0.772465,0.812937,0.382578,0.849483,0.195337,0.250974,0.0177897,0.572072,0.415358,0.857395,0.419493,0.407396,0.227279,0.540634,0.0313519,0.820645,0.00803173,0.776752,0.452946,0.229967,0.401859,0.0927635,0.234758,0.594356,0.522928,0.93081,0.381718,0.21309,0.0960191,0.709941,0.92244,0.471264,0.994782,0.810245,0.300884,0.530617,0.396833,0.698169,0.823975,0.664822,0.823886,0.685385,0.292506,0.153035,0.317256,0.0185577,0.997376,0.985867,0.172619,0.634011,0.136769,0.357579,0.651165,0.449429,0.170133,0.595405,0.862424,0.302502,0.54843,0.543151,0.275254,0.170871,0.715643,0.577522,0.769845,0.569716,0.150143,0.0965625,0.948306,0.0654214,0.509869,0.826416,0.951272,0.881155,0.886873,0.0575151,0.959184,0.355829,0.043597,0.874868,0.827636,0.642767,0.223327,0.689145,0.800682,0.602538,0.295225,0.0978688,0.24419,0.155212,0.432657,0.376637,0.52248,0.258677,0.208347,0.0841612,0.0995682,0.0609426,0.146372,0.438172,0.417883,0.851699,0.240764,0.688926,0.559338,0.742546,0.864607,0.969963,0.787675,0.559803,0.436239,0.680635,0.45857,0.674094,0.0868286,0.396787,0.351115,0.865927,0.771282,0.119875,0.438754,0.723159,0.352346,0.625206,0.426236,0.8984,0.235626,0.567215,0.429195,0.506897,0.126033,0.923112,0.922752,0.212248,0.187708,0.483283,0.839698,0.673918,0.893119,0.971754,0.942173,0.162975,0.360393,0.660754,0.545489,0.909002,0.120217,0.898967,0.489607,0.085278,0.813432,0.0987877,0.786951,0.715091,0.528587,0.737198,0.686451,0.953203,0.396559,0.352556,0.836257,0.0936832,0.601534,0.531809,0.827421,0.950933,0.25557,0.678779,0.363099,0.849535,0.644167,0.146273,0.760126,0.602069,0.893658,0.676789,0.143987,0.673526,0.697272,0.902471,0.478875,0.369627,0.814384,0.506707,0.342898,0.903275,0.582252,0.374778,0.0390096,0.0920514,0.2,0.624569,0.876553,0.597171,0.363262,0.410178,0.336845,0.939085,0.0177227,0.734208,0.510115,0.00544566,0.174997,0.486152,0.0361634,0.518785,0.985092,0.431773,0.958854,0.390484,0.501899,0.196256,0.278305,0.263616,0.74087,0.480845,0.263739,0.198173,0.772111,0.195193,0.576247,0.559944,0.912414,0.0578246,0.292323,0.337897,0.726403,0.77889,0.205649,0.49041,0.964632,0.782355,0.0775713,0.844781,0.517048,0.804686,0.636993,0.822631,0.479965,0.397386,0.145854,0.543203,0.900357,0.697423,0.913382,|0.932979,0.0427282,0.427132,0.905531,0.702966,0.0692341,0.558399,0.400529,0.519518,0.226862,0.854289,0.726432,0.659775,0.0782073,0.735576,0.979527,0.152891,0.815333,0.504752,0.492762,0.931976,0.560496,0.348935,0.877729,0.554923,0.349873,0.974478,0.470839,0.748705,0.92107,0.440109,0.876701,0.539397,0.216247,0.98381,0.138646,0.433873,0.778433,0.387851,0.126894,0.907788,0.281292,0.932926,0.0218732,0.146565,0.648627,0.30691,0.412525,0.474918,0.408773,0.787372,0.525988,0.197578,0.823463,0.0311366,0.915053,0.448101,0.76077,0.00132358,0.741048,0.205204,0.634854,0.700555,0.702501,0.589369,0.506096,0.103042,0.999629,0.296706,0.9432,0.0578388,0.640014,0.120366,0.159726,0.22594,0.454092,0.252748,0.227659,0.0652871,0.00274706,0.0272672,0.0198278,0.0144728,0.434775,0.82374,0.634581,0.539468,0.125907,0.47398,0.462907,0.94457,0.332286,0.962661,0.389839,0.495432,0.436624,0.244182,0.693438,0.922125,0.754367,0.0871293,0.176357,0.103738,0.492522,0.00265759,0.840027,0.646189,0.335575,0.647057,0.653705,0.690312,0.840273,0.856875,0.183396,0.152058,0.625982,0.591873,0.352954,0.545123,0.40308,0.3136,0.728338,0.972952,0.626799,0.445305,0.984926,0.538865,0.575221,0.500408,0.640221,0.773785,0.0611864,0.971478,0.0737184,0.271931,0.588815,0.832502,0.238939,0.483653,0.242748,0.994225,0.543842,0.885822,0.955017,0.0580438,0.67697,0.104812,0.799737,0.542428,0.714771,0.145946,0.09895,0.191976,0.153222,0.0717257,0.688895,0.359599,0.609382,0.922161,0.443246,0.0555745,0.202316,0.443421,0.336925,0.414786,0.9932,0.85266,0.116842,0.751657,0.447836,0.809752,0.207608,0.512018,0.435311,0.586313,0.581007,0.447645,0.735363,0.196537,0.0733007,0.860277,0.357535,0.527649,0.294835,0.301286,0.701369,0.817586,0.385026,0.750021,0.163175,0.877292,0.682742,0.00805831,0.778622,0.111261,0.0551695,0.571843,0.452296,0.697203,0.851345,0.490882,0.431481,0.0854672,0.226343,0.313307,0.972075,0.993968,0.267696,0.951511,0.143413,0.841289,0.517557,0.513363,0.200908,0.88438,0.108962,0.498583,0.20603,0.142523,0.779577,0.019428,0.28867,0.838976,0.360235,0.0766118,0.831988,0.932819,0.226476,0.282921,0.366745,0.68347,0.868132,0.289295,0.867355,0.471105,0.875697,0.09696,0.705004,0.749283,0.413952,0.928085,0.460324,0.490308,0.594132,0.645658,0.681995,0.0928723,0.686754,0.706247,0.492661,0.750435,0.233084,0.276546,0.570688,0.247464,0.141452,0.535047,0.796498,0.315936,0.136026,0.0733331,0.917553,0.357142,0.806587,0.329577,0.023312,0.166515,0.665584,0.264085,0.7246,0.238773,0.941005,0.716442,0.653168,0.841642,0.0607312,0.807761,0.382836,0.575536,0.135315,0.953326,0.33244,0.408974,0.155187,0.212641,0.788086,0.546975,0.144772,0.523897,0.605507,0.693043,0.907824,0.567338,0.083658,0.893138,0.267756,0.927093,0.21911,0.779036,0.213285,0.336069,0.995827,0.520841,0.616281,0.032259,0.538595,0.316911,0.0588618,0.831391,0.429223,0.427134,0.424738,0.506886,0.6703,0.324445,0.0635629,0.873549,0.566753,0.534088,0.398958,0.081572,0.834462,0.832563,0.219266,0.465719,0.855105,0.394238,0.433273,0.568478,0.837179,0.401064,0.493416,0.0933346,0.448361,0.6581,0.945503,0.238375,0.395202,0.0256953,0.219822,0.452145,0.876106,0.738992,0.472981,0.192275,0.847181,0.586464,0.0547055,0.150583,0.785381,0.236984,0.0676995,0.794567,0.849409,0.918407,0.946897,0.23796,0.938085,0.989601,0.130653,0.721079,0.16123,0.559471,0.777995,0.429271,0.793055,0.51845,0.71709,0.447396,0.817327,0.781002,0.400208,0.12003,0.150495,0.640422,0.103269,0.282943,0.487661,0.847465,0.427275,0.425954,0.224657,0.684677,0.35097,0.952259,0.672145,0.869508,0.936176,0.982746,0.64654,0.70207,0.572772,0.593013,0.644262,0.0949238,0.459522,0.781448,0.0484535,0.983597,0.481855,0.598603,0.657388,0.732467,0.504364,0.562505,0.394203,0.0429404,0.888069,0.353759,0.0607581,0.561392,0.445873,0.226201,0.819332,0.124502,0.581814,0.916083,0.567532,0.960658,0.394018,0.730221,0.222012,0.679796,0.22282,0.986948,0.180891,0.115022,0.263814,0.372447,0.338266,0.967643,0.0153111,0.844174,0.217953,0.12088,0.00660181,0.296645,0.77837,0.0973836,0.798628,0.621181,0.27756,0.827338,0.668738,0.0197906,0.0198854,0.430835,0.392545,0.682829,0.788016,0.403551,0.731008,0.227691,0.464098,0.0639023,0.133929,0.955826,0.638473,0.132026,0.52647,0.133913,0.712586,0.807988,0.194984,0.588958,0.105567,0.772045,0.40462,0.595689,0.355934,0.486796,0.209762,0.331702,0.345505,0.852383,0.65558,0.363723,0.904071,0.999588,0.446455,0.529352,0.785017,0.459884,0.730432,0.223594,0.633605,0.527408,0.899854,0.819843,0.327284,0.612398,0.396167,0.33212,0.576329,0.284015,0.194503,0.774495,0.614559,0.186244,0.352193,0.264068,0.276799,0.0384474,0.0949386,0.818806,0.538101,0.990664,0.999394,0.795352,0.240708,0.162226,0.365967,0.697822,0.0965371,0.672825,0.440741,0.689651,0.865773,0.827206,0.749121,0.639518,0.430116,0.702716,0.0796718,0.345851,0.344984,0.363319,0.0549557,0.320573,0.0724396,0.207241,0.706754,0.394955,0.435983,0.681642,0.181009,0.568619,0.20386,0.672082,0.412105,0.468284,0.193714,0.340939,0.999834,0.333348,0.587072,0.632512,0.525045,0.409092,0.0825445,0.283664,0.0980774,0.752985,0.673801,0.393812,0.0329933,0.349523,0.637289,0.17631,0.164601,0.310998,0.17521,0.248569,0.954633,0.413313,0.714333,0.137939,0.508032,0.920439,0.579157,0.362506,0.98827,0.470822,0.442337,0.30208,0.383777,0.53176,0.387376,0.455043,0.369158,0.584931,0.367359,0.385815,0.467685,0.999671,0.861467,0.414204,0.772993,0.935741,0.752042,0.781999,0.830125,0.697504,0.721314,0.403926,0.478565,0.198944,0.50183,0.0329416,0.870282,0.993216,0.59351,0.346595,0.709225,0.31748,0.364865,0.0693044,0.496021,0.0203924,0.0687767,0.221372,0.251012,0.869999,0.678126,0.4464,0.668278,0.931124,0.121436,0.411096,0.133812,0.107184,0.74481,0.42858,0.000193536,0.635694,0.45061,0.544195,0.389636,0.867804,0.542162,0.552107,0.273258,0.0978196,0.42609,0.544543,0.643903,0.192067,0.696289,0.579235,0.702422,0.309226,0.407466,0.384434,0.108222,0.0673517,0.35668,0.989171,0.790674,0.813597,0.242575,0.218017,0.797851,0.157534,0.558821,0.877804,0.610476,0.919287,0.337198,0.253528,0.228192,0.812397,0.242167,0.132664,0.243727,0.558344,0.636114,0.31134,0.908007,0.517405,0.860244,0.676127,0.484733,0.946988,0.600373,0.879456,0.580384,0.91983,0.748278,0.327679,0.724271,0.612171,0.800718,0.607255,0.268888,0.198486,0.230099,0.458436,0.370731,0.953875,0.451859,0.335643,0.254859,0.203173,0.651663,0.945061,0.724559,0.248081,0.316741,0.306148,0.728028,0.349533,0.464626,0.7639,0.813065,0.198916,0.012473,0.343776,0.0258445,0.162296,0.735653,0.675538,0.68011,0.576304,0.348233,0.0759133,0.235498,0.956122,0.545344,0.258771,0.385422,0.370645,0.172245,0.574871,0.0440749,0.109648,0.802419,0.422505,0.3805,0.00266451,0.803296,0.61704,0.00068146,0.190416,0.123777,0.619849,0.567764,0.624148,0.208285,0.295829,0.0612574,0.233715,0.172564,0.52841,0.144129,0.209586,0.429251,0.431751,0.611391,0.17236,0.724933,0.0326927,0.478155,0.796346,0.957717,0.716588,0.0794914,0.238546,0.877426,0.0129837,0.788597,0.064304,0.680417,0.0160605,0.744581,0.736318,0.806394,0.752189,0.236016,0.00323671,0.927884,0.938127,0.44892,0.809886,0.74967,0.682282,0.954996,0.699785,0.596182,0.159259,0.75406,0.79166,0.692218,0.165866,0.65016,0.692511,0.976809,0.902762,0.575723,0.749655,0.508961,0.602236,0.634158,0.482062,0.413763,0.809284,0.94071,0.526305,0.749117,0.525522,0.226415,0.677361,0.193982,0.597741,0.916448,0.321495,0.9616,0.544089,0.775562,0.970422,0.27481,0.818013,0.552739,0.0740117,0.243458,0.799564,0.958898,0.820274,0.116168,0.344283,0.634344,0.0708268,0.272058,0.99568,0.652177,0.259233,0.993393,0.358062,0.578623,0.24241,0.624481,0.228904,0.152132,0.275133,0.720713,0.878312,0.350589,0.527433,0.955512,0.00699222,0.563941,0.960698,0.563459,0.830995,0.264149,0.714974,0.276403,0.59336,0.404888,0.519443,0.429489,0.203164,0.855037,0.58897,0.0982975,0.945621,0.280597,0.31264,0.949978,0.224066,0.793827,0.89459,0.902603,0.394194,0.163998,0.78222,0.203772,0.776076,0.22945,0.323321,0.0888174,0.578678,0.240723,0.849932,0.397076,0.111225,0.839254,0.310796,0.281962,0.591864,0.175727,0.969327,0.15193,0.868347,0.335951,0.988768,0.365897,0.538885,0.594174,0.862396,0.565351,0.359868,0.856125,0.293325,0.288413,0.0884793,0.864235,0.241315,0.316392,0.79054,0.00633281,0.83185,0.663689,0.921548,0.0361881,0.339537,0.246145,0.173351,0.672825,0.715536,0.908706,0.453426,0.159029,0.560868,0.657036,0.446319,0.961942,0.209905,0.567395,0.165705,0.656955,0.635357,0.869156,0.145277,0.975305,0.516947,0.477488,0.216802,0.492837,0.748554,0.930085,0.23829,0.829437,0.372131,0.924606,0.879076,0.129274,0.0110837,0.631615,0.651519,0.871051,0.584738,0.915893,0.728695,0.524508,0.360412,0.119846,0.354201,0.672536,0.238881,0.823741,0.811076,0.515375,0.450285,0.0255243,0.0112575,0.338289,0.850843,0.852014,0.877762,0.133393,0.883872,0.133146,0.100284,0.403402,0.188393,0.337794,0.154664,0.300189,0.720167,0.551786,0.931918,0.401439,0.715759,0.985833,0.754312,0.377476,0.700911,0.202964,0.483406,0.592777,0.875789,0.777842,0.841949,0.06696,0.277148,0.761677,0.8227,0.120206,0.0695256,0.430974,0.89597,0.440641,0.131333,0.0145757,0.797532,0.62641,0.184153,0.363859,0.886449,0.0392276,|0.112762,0.160431,0.954499,0.00857407,0.898294,0.50157,0.784782,0.0940188,0.249876,0.344167,0.3489,0.00736022,0.514304,0.0993585,0.776649,0.646178,0.653531,0.397251,0.311324,0.871158,0.285862,0.0938146,0.0967824,0.670414,0.349782,0.0979512,0.6773,0.110857,0.71055,0.869652,0.453657,0.241938,0.137185,0.225674,0.621405,0.585466,0.921529,0.807832,0.654041,0.152767,0.507602,0.643236,0.506515,0.761589,0.182003,0.0740975,0.57205,0.247742,0.857201,0.00224656,0.653205,0.340129,0.546887,0.414126,0.522668,0.0671438,0.214709,0.314021,0.93996,0.204253,0.980134,0.631431,0.222937,0.171745,0.616174,0.327374,0.635218,0.0608826,0.18459,0.0599915,0.552574,0.217577,0.86577,0.231686,0.218911,0.578033,0.797068,0.104726,0.421381,0.10622,0.0335679,0.212271,0.279272,0.844539,0.797071,0.815043,0.613917,0.908204,0.85495,0.535631,0.700185,0.96777,0.694296,0.481547,0.186563,0.417466,0.289882,0.992821,0.921726,0.551151,0.215271,0.566634,0.844422,0.202897,0.436032,0.829072,0.636448,0.46214,0.26198,0.821586,0.0444411,0.360101,0.0122482,0.767906,0.670828,0.094022,0.82791,0.459228,0.19249,0.754884,0.466444,0.0641779,0.715427,0.145883,0.16822,0.0231177,0.0236875,0.444932,0.446632,0.602439,0.954062,0.831575,0.00341821,0.047957,0.535245,0.407956,0.311471,0.168943,0.842004,0.916376,0.403371,0.869668,0.228928,0.0544798,0.848453,0.805122,0.429146,0.457237,0.286458,0.0146587,0.331254,0.4051,0.102549,0.767664,0.979918,0.113894,0.178138,0.0570261,0.838191,0.595244,0.980894,0.902062,0.800734,0.829239,0.957948,0.361075,0.912122,0.179464,0.503601,0.204776,0.513513,0.475911,0.622559,0.391586,0.963318,0.799203,0.309486,0.63658,0.332912,0.48008,0.721523,0.299684,0.80118,0.95264,0.341082,0.246701,0.0740295,0.331703,0.747624,0.245624,0.922782,0.39392,0.227749,0.718281,0.502554,0.839771,0.054774,0.0561861,0.799055,0.424596,0.593588,0.485321,0.382453,0.00452447,0.50466,0.575719,0.0327513,0.0594147,0.688739,0.528939,0.371544,0.977812,0.304726,0.190335,0.180775,0.902575,0.629254,0.0428036,0.011865,0.621527,0.288514,0.529385,0.640463,0.661248,0.418013,0.0928746,0.278872,0.790476,0.967893,0.620214,0.455632,0.715324,0.417342,0.708115,0.826375,0.0554981,0.210147,0.534204,0.0415368,0.300457,0.709061,0.688075,0.465168,0.491851,0.793737,0.240678,0.215584,0.261311,0.341936,0.193779,0.301795,0.347695,0.286385,0.523693,0.288144,0.508746,0.168816,0.423514,0.303692,0.163449,0.628175,0.00748038,0.643849,0.989891,0.400176,0.256588,0.936467,0.723885,0.378141,0.631465,0.596076,0.506254,0.728516,0.315691,0.620395,0.0845181,0.674034,0.733232,0.951569,0.735282,0.59046,0.122343,0.107352,0.0435563,0.775508,0.268849,0.60355,0.605147,0.931729,0.594975,0.11231,0.153663,0.372099,0.141501,0.683938,0.53402,0.575133,0.949379,0.404909,0.724467,0.983802,0.962552,0.0750232,0.200957,0.403665,0.242168,0.731713,0.776182,0.299731,0.462961,0.563533,0.455194,0.632466,0.295488,0.653473,0.331558,0.464159,0.66735,0.358165,0.428239,0.899245,0.218801,0.659512,0.607091,0.405176,0.934828,0.713443,0.826313,0.487815,0.301128,0.468153,0.793189,0.356681,0.348639,0.464362,0.00649911,0.611034,0.968535,0.225677,0.495515,0.695688,0.548678,0.612236,0.817016,0.913151,0.0553346,0.206843,0.325356,0.605263,0.569261,0.242523,0.0853497,0.959135,0.452446,0.363752,0.44648,0.910011,0.0525241,0.253406,0.629705,0.610647,0.200742,0.639402,0.800694,0.476904,0.590606,0.50637,0.541504,0.289285,0.335876,0.92114,0.195575,0.067997,0.862267,0.0741925,0.986771,0.0665918,0.836528,0.880768,0.470616,0.0295937,0.512408,0.797672,0.260322,0.657983,0.778163,0.133731,0.599317,0.155952,0.276313,0.0868719,0.729556,0.0655112,0.0924594,0.678451,0.52904,0.745907,0.182356,0.426339,0.0472125,0.35607,0.036104,0.821348,0.177272,0.228604,0.285007,0.346007,0.522562,0.690442,0.87359,0.858223,0.259625,0.164719,0.201026,0.746644,0.538493,0.294986,0.197539,0.350574,0.0866779,0.203676,0.055681,0.488703,0.644088,0.659085,0.685747,0.320404,0.886116,0.527688,0.605229,0.0936454,0.0815381,0.053196,0.059902,0.629552,0.969472,0.971921,0.387134,0.385452,0.879542,0.198011,0.395948,0.76746,0.621312,0.730555,0.707645,0.0261925,0.29777,0.12034,0.0754487,0.948311,0.887695,0.307424,0.776377,0.313885,0.207992,0.503382,0.812657,0.958722,0.123134,0.54163,0.16135,0.623097,0.778772,0.899594,0.31475,0.455297,0.654876,0.833572,0.0887125,0.41795,0.0658271,0.654084,0.292667,0.456331,0.800158,0.530513,0.676683,0.467247,0.147013,0.617657,0.963912,0.625298,0.473064,0.275461,0.485669,0.224923,0.837078,0.660911,0.572571,0.385632,0.615323,0.946738,0.450978,0.767682,0.0903541,0.944852,0.471356,0.710901,0.69228,0.647345,0.383567,0.902115,0.798329,0.894388,0.90864,0.133437,0.373176,0.29295,0.906064,0.394535,0.391619,0.339894,0.0734785,0.0366491,0.791,0.850511,0.594875,0.366934,0.368748,0.170302,0.716551,0.567178,0.606869,0.911422,0.162089,0.381754,0.463475,0.698225,0.933298,0.257391,0.596391,0.811025,0.38835,0.388818,0.883905,0.594821,0.995736,0.492668,0.109451,0.485794,0.00510412,0.0128309,0.15216,0.456059,0.725369,0.262417,0.968733,0.368657,0.738454,0.705996,0.490826,0.229706,0.304039,0.570748,0.513389,0.113266,0.776178,0.909443,0.913342,0.0547194,0.591577,0.230805,0.69742,0.14267,0.535961,0.137292,0.434066,0.422322,0.207411,0.576208,0.959494,0.499475,0.494434,0.40319,0.863429,0.297976,0.372813,0.861945,0.830616,0.232869,0.284669,0.579039,0.746048,0.0145486,0.289728,0.233854,0.932927,0.400589,0.789999,0.924356,0.418617,0.217758,0.773417,0.201323,0.523307,0.808639,0.469891,0.43068,0.00921357,0.337226,0.332468,0.513222,0.452085,0.360376,0.578881,0.647855,0.767931,0.231837,0.0560037,0.76372,0.513296,0.6752,0.491722,0.974132,0.350115,0.13284,0.981577,0.615522,0.413494,0.15856,0.956658,0.0636307,0.598686,0.0728661,0.993011,0.658095,0.770087,0.583657,0.553986,0.466897,0.0957795,0.496184,0.54903,0.538528,0.0301835,0.0285441,0.689461,0.056236,0.327112,0.9028,0.480925,0.081251,0.395846,0.674475,0.295385,0.794346,0.0681401,0.843771,0.902378,0.804607,0.0351802,0.781315,0.204957,0.362848,0.546053,0.116683,0.0623388,0.232879,0.444669,0.122495,0.964164,0.385182,0.0502237,0.193534,0.551127,0.250489,0.0328634,0.570056,0.71282,0.381093,0.240576,0.328521,0.0557854,0.132018,0.611911,0.762375,0.241794,0.785104,0.957923,0.0842474,0.984706,0.768041,0.195177,0.179241,0.0234118,0.736053,0.777491,0.861107,0.550092,0.140321,0.4702,0.0460346,0.768684,0.174411,0.0166978,0.657139,0.460884,0.165823,0.0949025,0.861447,0.169911,0.0117755,0.409463,0.582674,0.262166,0.312801,0.970228,0.79867,0.211444,0.990447,0.391319,0.804423,0.267014,0.348713,0.595602,0.888331,0.0266948,0.448371,0.398666,0.628988,0.390678,0.95393,0.477296,0.377476,0.434273,0.509122,0.790446,0.429794,0.93747,0.512014,0.828338,0.300714,0.169631,0.374892,0.679074,0.263195,0.0732791,0.530194,0.741825,0.261596,0.306037,0.057175,0.846566,0.465725,0.00390005,0.0766549,0.953543,0.439684,0.0842838,0.998338,0.129306,0.309735,0.523587,0.575396,0.810556,0.707769,0.197796,0.926978,0.230289,0.604119,0.469056,0.617684,0.760879,0.0471451,0.828576,0.224452,0.27892,0.218834,0.606584,0.136775,0.8773,0.49861,0.33998,0.490314,0.431908,0.296831,0.0994912,0.964538,0.555635,0.0058468,0.558081,0.100811,0.923217,0.987838,0.555353,0.566646,0.736326,0.551633,0.78936,0.138595,0.293538,0.0364957,0.523953,0.858396,0.699623,0.983288,0.541975,0.781766,0.31366,0.947048,0.835142,0.698018,0.957377,0.687628,0.713893,0.635943,0.86446,0.875587,0.93676,0.747415,0.814416,0.135104,0.712949,0.162528,0.218186,0.0805656,0.777336,0.973326,0.134512,0.19246,0.856237,0.0961723,0.42075,0.953732,0.0596474,0.853171,0.794222,0.783881,0.846646,0.864134,0.272626,0.136675,0.397037,0.15174,0.727825,0.346932,0.640943,0.415207,0.545318,0.111704,0.726462,0.113058,0.484169,0.646687,0.257966,0.100736,0.805891,0.840858,0.958198,0.700367,0.659323,0.75843,0.670594,0.98541,0.274505,0.499048,0.337088,0.218225,0.146438,0.974257,0.124022,0.992619,0.0407563,0.940813,0.808175,0.528941,0.615389,0.393864,0.180583,0.454769,0.76936,0.518527,0.325105,0.172564,0.676577,0.0796455,0.610561,0.771904,0.0743433,0.372252,0.511998,0.429701,0.642475,0.764204,0.567649,0.288804,0.0560552,0.207596,0.47032,0.0678845,0.00415969,0.316465,0.337444,0.122143,0.122847,0.721591,0.953321,0.982044,0.910131,0.2964,0.282365,0.449291,0.943487,0.405838,0.805211,0.315813,0.624993,0.616509,0.664973,0.983764,0.812875,0.216442,0.330746,0.0949459,0.36533,0.929669,0.302419,0.39987,0.949093,0.805969,0.0479123,0.833746,0.0456413,0.878687,0.280627,0.961748,0.700065,0.126959,0.817024,0.467946,0.674896,0.0464884,0.924201,0.356784,0.630711,0.805101,0.625839,0.47965,0.847919,0.652303,0.765566,0.724866,0.0524729,0.720919,0.174311,0.760324,0.6548,0.91695,0.636207,0.561603,0.812249,0.625002,0.39467,0.754594,0.380723,0.131602,0.882854,0.986599,0.540862,0.500785,0.448485,0.0920127,0.154518,0.0417974,0.0631732,0.184074,0.0739394,0.696509,0.380741,0.417877,0.946549,0.0930796,0.873761,0.129265,0.922976,0.650342,0.75516,0.0322297,0.59392,0.580839,0.547342,0.288931,0.92692,0.458099,0.449542,0.318522,0.23419,0.112919,0.969734,0.842156,0.348863,0.0658608,0.356973,0.565479,0.290194,0.692796,0.837418,0.940769,0.172846,|0.778975,0.327429,0.303988,0.957958,0.193808,0.434727,0.46189,0.622148,0.156479,0.172159,0.492358,0.0639031,0.830589,0.957794,0.741124,0.0186564,0.727528,0.808186,0.236915,0.679104,0.0361329,0.368978,0.251075,0.986956,0.690155,0.213639,0.433615,0.0796376,0.993668,0.837531,0.200903,0.373729,0.17765,0.200572,0.338429,0.159314,0.337349,0.82564,0.507423,0.119256,0.959519,0.527826,0.728731,0.623614,0.864086,0.371556,0.228769,0.781175,0.291306,0.37691,0.262206,0.141079,0.0185806,0.930315,0.822362,0.944478,0.485641,0.935795,0.516944,0.950339,0.748834,0.279225,0.438228,0.361911,0.229948,0.50585,0.279564,0.20672,0.256593,0.707698,0.215894,0.432224,0.0162105,0.613256,0.534531,0.323085,0.325182,0.0405073,0.516511,0.0232348,0.273495,0.768376,0.150278,0.815275,0.961237,0.349204,0.676291,0.59538,0.861887,0.83043,0.205283,0.733518,0.151945,0.450682,0.752228,0.864172,0.259539,0.0592786,0.666845,0.982934,0.373567,0.293261,0.205869,0.838683,0.243093,0.585002,0.423947,0.194604,0.722369,0.959836,0.244652,0.857287,0.025794,0.0937037,0.456526,0.0265986,0.805932,0.309256,0.00936055,0.326537,0.193028,0.0340377,0.593124,0.244848,0.776114,0.0536091,0.348215,0.98669,0.881825,0.783749,0.945968,0.548573,0.0613259,0.0234786,0.270828,0.0465987,0.396608,0.936341,0.441136,0.667957,0.429193,0.669813,0.619828,0.159685,0.661893,0.706826,0.835412,0.418721,0.665857,0.0338696,0.270141,0.0584882,0.255334,0.410478,0.225314,0.783582,0.284005,0.374765,0.302074,0.607934,0.120735,0.870002,0.605706,0.273655,0.39257,0.425119,0.186749,0.0583957,0.56723,0.745763,0.769502,0.125613,0.784579,0.192443,0.0970246,0.637215,0.685142,0.568891,0.515671,0.123862,0.450604,0.873958,0.201218,0.201739,0.067949,0.895921,0.128546,0.769785,0.858249,0.648968,0.446753,0.660514,0.502676,0.0142947,0.170478,0.725023,0.829411,0.224973,0.891711,0.827204,0.783421,0.0970932,0.802275,0.814631,0.206948,0.514387,0.00220817,0.643426,0.720159,0.402522,0.0971036,0.49623,0.684145,0.298036,0.871886,0.0998545,0.0858456,0.679037,0.434204,0.498478,0.0664148,0.828333,0.465917,0.61867,0.735652,0.586069,0.52018,0.779461,0.581447,0.372187,0.107876,0.819944,0.303797,0.395239,0.740509,0.804204,0.736082,0.783918,0.237564,0.158921,0.563661,0.727326,0.339196,0.80992,0.0336202,0.743548,0.496948,0.265324,0.413203,0.711825,0.68046,0.837333,0.654957,0.876612,0.853829,0.793069,0.0379226,0.0245522,0.952374,0.594563,0.0483618,0.997067,0.196257,0.143878,0.265461,0.0535471,0.500677,0.836813,0.0755058,0.658511,0.433364,0.533264,0.938253,0.729196,0.612705,0.426241,0.107007,0.382648,0.384685,0.935088,0.829166,0.508142,0.69964,0.253724,0.739803,0.153021,0.902557,0.495109,0.0911298,0.943228,0.76381,0.969636,0.10194,0.4686,0.18812,0.79455,0.0241117,0.330643,0.578934,0.206867,0.60124,0.89243,0.67777,0.186719,0.865673,0.785507,0.296826,0.0411558,0.790108,0.0017187,0.6396,0.66707,0.78363,0.680797,0.638985,0.103731,0.545526,0.357482,0.674632,0.0883625,0.572341,0.993561,0.197058,0.91162,0.289659,0.838191,0.916244,0.293501,0.495563,0.216254,0.27233,0.169258,0.251485,0.750573,0.381039,0.620676,0.925295,0.762799,0.564266,0.995077,0.416955,0.46284,0.173164,0.451858,0.747364,0.449615,0.522359,0.966941,0.0896366,0.5555,0.145898,0.884385,0.202074,0.109034,0.351134,0.682883,0.710745,0.540494,0.533724,0.0562997,0.448321,0.410234,0.762037,0.912516,0.0576524,0.843972,0.816485,0.765975,0.16114,0.298519,0.77825,0.516715,0.168058,0.68335,0.639248,0.278501,0.228986,0.935646,0.408283,0.901314,0.299319,0.756296,0.374778,0.242264,0.17194,0.645955,0.265772,0.573423,0.677219,0.776534,0.718401,0.293899,0.559547,0.961186,0.534435,0.923819,0.45147,0.362789,0.268474,0.809388,0.0213846,0.0426353,0.610139,0.925033,0.208002,0.332161,0.88005,0.533133,0.36516,0.125398,0.499698,0.0369297,0.210494,0.32395,0.477297,0.993317,0.735533,0.979301,0.0710292,0.381112,0.244674,0.882703,0.200621,0.549208,0.950528,0.56672,0.580658,0.419332,0.121434,0.0382337,0.854096,0.334574,0.781284,0.169137,0.578543,0.244345,0.464165,0.709277,0.0710544,0.621135,0.174863,0.848956,0.255641,0.997834,0.755414,0.953322,0.428864,0.0715134,0.114327,0.920366,0.301206,0.637222,0.140364,0.601391,0.625633,0.255343,0.337024,0.444157,0.0939326,0.411185,0.649875,0.696305,0.0706322,0.684671,0.115733,0.576653,0.302613,0.897419,0.867051,0.448648,0.985924,0.154747,0.737337,0.0583162,0.672696,0.763347,0.961097,0.12092,0.657797,0.75658,0.725405,0.183664,0.603345,0.227127,0.0195416,0.358861,0.145802,0.555277,0.0824383,0.131071,0.978745,0.493133,0.0335257,0.178975,0.670711,0.442729,0.90529,0.230553,0.555397,0.62678,0.542047,0.950031,0.613512,0.80559,0.607961,0.844893,0.0490947,0.414266,0.431673,0.268633,0.908315,0.652161,0.672105,0.0212671,0.585025,0.755317,0.0523066,0.794032,0.306996,0.502748,0.964172,0.0855825,0.408465,0.0525675,0.409047,0.767891,0.535951,0.010218,0.750064,0.954665,0.590966,0.984099,0.361661,0.976449,0.734082,0.0841897,0.234747,0.230428,0.234764,0.735706,0.662608,0.810003,0.615766,0.532673,0.11331,0.580642,0.12346,0.298751,0.536126,0.168695,0.24589,0.436211,0.815903,0.0959193,0.185569,0.669517,0.995332,0.316523,0.449424,0.373512,0.787001,0.0673615,0.72798,0.684692,0.59183,0.613691,0.598472,0.466956,0.360972,0.972772,0.844161,0.63486,0.307391,0.25905,0.807118,0.208782,0.765905,0.459467,0.878173,0.583146,0.531007,0.349052,0.21417,0.380935,0.0085665,0.375822,0.545995,0.90043,0.0201665,0.0357881,0.16846,0.881806,0.745644,0.166672,0.0743707,0.0929113,0.70019,0.0642348,0.681194,0.929379,0.914542,0.759463,0.842551,0.526533,0.178683,0.58416,0.564761,0.680067,0.540546,0.427286,0.907699,0.665464,0.961593,0.749187,0.251127,0.443426,0.173116,0.227828,0.423189,0.849244,0.3907,0.0312049,0.803749,0.788596,0.87004,0.381049,0.311539,0.379831,0.194075,0.166403,0.791781,0.0326103,0.705775,0.63962,0.0244402,0.857038,0.186885,0.319123,0.208693,0.835398,0.674136,0.912356,0.678137,0.435564,0.291456,0.228231,0.0165226,0.138806,0.760223,0.151892,0.317652,0.834919,0.536479,0.246141,0.215073,0.414777,0.781309,0.941655,0.944168,0.945256,0.723805,0.47125,0.458604,0.956128,0.376821,0.645834,0.154295,0.0261303,0.411365,0.328609,0.442528,0.132852,0.818077,0.701587,0.628598,0.392289,0.21885,0.729846,0.844785,0.281627,0.020911,0.482628,0.897225,0.4764,0.415089,0.473824,0.285946,0.7566,0.306593,0.285373,0.972108,0.767525,0.217419,0.138664,0.428218,0.698555,0.593567,0.210106,0.470452,0.346313,0.741498,0.0484251,0.664331,0.270034,0.291984,0.785061,0.706874,0.145743,0.0569961,0.491387,0.10799,0.673211,0.647984,0.040046,0.85537,0.246233,0.32041,0.389627,0.596933,0.252972,0.85451,0.304055,0.714428,0.0902735,0.0578898,0.223062,0.588285,0.616953,0.586953,0.905617,0.977834,0.0511501,0.45451,0.971636,0.109523,0.54436,0.738232,0.676974,0.497366,0.787117,0.83054,0.68853,0.514249,0.275235,0.510266,0.00282413,0.996533,0.0131757,0.459912,0.878332,0.119964,0.532922,0.961298,0.544041,0.508689,0.790372,0.918105,0.224162,0.221793,0.726896,0.789686,0.304201,0.719527,0.827576,0.307081,0.294794,0.430027,0.0543842,0.834416,0.884743,0.946744,0.482704,0.0926559,0.660482,0.764186,0.54904,0.847284,0.932178,0.907833,0.142228,0.217771,0.316485,0.661439,0.866464,0.177003,0.554989,0.508449,0.935902,0.404522,0.0679889,0.373619,0.592272,0.806768,0.566854,0.868355,0.906236,0.276161,0.381245,0.0509784,0.475257,0.897447,0.0611177,0.693412,0.183217,0.831551,0.978248,0.748697,0.685122,0.639943,0.430456,0.256259,0.244471,0.393074,0.565531,0.712457,0.590584,0.710534,0.883123,0.538657,0.819358,0.574967,0.8751,0.79758,0.411966,0.342178,0.499799,0.549883,0.100318,0.443108,0.715716,0.298043,0.671849,0.91488,0.900769,0.250503,0.595908,0.289914,0.411293,0.413341,0.77851,0.268415,0.584167,0.32553,0.431693,0.987816,0.949502,0.305443,0.283383,0.0369494,0.145964,0.155497,0.410831,0.308618,0.926886,0.285466,0.211953,0.549017,0.123229,0.015726,0.969993,0.559315,0.324782,0.0147921,0.44961,0.922079,0.755824,0.592429,0.284203,0.063905,0.774627,0.958377,0.230188,0.12004,0.684789,0.231185,0.905364,0.774842,0.972725,0.31241,0.713114,0.616017,0.601832,0.960165,0.22993,0.885315,0.879099,0.528089,0.0374404,0.640036,0.553312,0.91142,0.530041,0.0458073,0.24623,0.10987,0.636546,0.170039,0.665923,0.85503,0.0935125,0.282549,0.993352,0.884919,0.758788,0.380132,0.842655,0.636228,0.136768,0.885651,0.259905,0.337809,0.000791788,0.997253,0.78886,0.848845,0.883801,0.497041,0.551157,0.681179,0.402677,0.331945,0.35355,0.980667,0.00550264,0.873703,0.764243,0.114902,0.00795627,0.481151,0.113925,0.0504996,0.318194,0.0824367,0.985712,0.392259,0.700316,0.994233,0.00851649,0.637979,0.188386,0.440272,0.173114,0.844503,0.74305,0.78923,0.422659,0.330773,0.998412,0.343348,0.423782,0.32685,0.37755,0.196506,0.996016,0.0589132,0.0123057,0.163091,0.0420855,0.261185,0.56647,0.34284,0.761463,0.423652,0.998886,0.0705357,0.535912,0.534396,0.84585,0.165686,0.47753,0.413245,0.442931,0.613239,0.961675,0.929346,0.680869,0.044986,0.8155,0.586621,0.879071,0.554414,0.759102,0.372355,0.302409,0.905899,0.0265098,0.338161,0.408482,0.760706,0.311668,0.96259,0.48196,0.193349,0.758458,0.624359,0.468625,0.972794,0.222956,0.874666,0.841094,|0.902275,0.0143216,0.552725,0.939977,0.571353,0.991969,0.176651,0.929398,0.264397,0.408975,0.175171,0.798919,0.926293,0.409387,0.598654,0.324836,0.74078,0.704667,0.382365,0.310302,0.430226,0.0939844,0.995039,0.91164,0.757181,0.0226881,0.16092,0.584866,0.411284,0.23057,0.857689,0.926957,0.175426,0.322571,0.857258,0.0740052,0.901758,0.277973,0.819176,0.18562,0.737524,0.240763,0.219206,0.352533,0.707969,0.989721,0.810438,0.186531,0.415325,0.721673,0.15801,0.133405,0.382177,0.774141,0.556084,0.486963,0.0521238,0.90158,0.0357541,0.0709847,0.178773,0.908953,0.924209,0.812442,0.776565,0.574439,0.0188214,0.501105,0.497473,0.582643,0.755781,0.265999,0.803695,0.159907,0.0639521,0.0682395,0.215657,0.98538,0.77325,0.504053,0.466861,0.589424,0.871029,0.0836354,0.996991,0.0211241,0.511546,0.896729,0.347855,0.997351,0.0446314,0.807864,0.00124496,0.491532,0.206715,0.614957,0.41319,0.848917,0.64991,0.266714,0.449052,0.646282,0.0331102,0.869775,0.587211,0.283173,0.781366,0.0522105,0.902666,0.395017,0.25017,0.778008,0.161756,0.399784,0.605959,0.728968,0.447506,0.316945,0.806809,0.732552,0.851497,0.182316,0.279129,0.418582,0.658181,0.0883177,0.461631,0.535144,0.192562,0.634708,0.655158,0.19495,0.208452,0.873611,0.746223,0.704457,0.307913,0.790891,0.617191,0.84126,0.493797,0.342405,0.169117,0.536551,0.813204,0.959181,0.352387,0.386555,0.6503,0.00164032,0.43627,0.220676,0.513234,0.921945,0.110206,0.717868,0.367779,0.454685,0.75952,0.348842,0.210157,0.836752,0.279103,0.307354,0.837316,0.664611,0.974301,0.711858,0.935773,0.711254,0.365308,0.886641,0.898576,0.135406,0.797847,0.32667,0.628758,0.971111,0.556705,0.991696,0.512929,0.506499,0.223457,0.335181,0.196685,0.183963,0.987611,0.164609,0.0520326,0.105181,0.555091,0.10807,0.663085,0.82148,0.916408,0.137492,0.966677,0.360724,0.655169,0.00351685,0.70013,0.704292,0.238179,0.0248969,0.359913,0.400505,0.187093,0.641866,0.956486,0.800093,0.86038,0.844366,0.480676,0.605051,0.507362,0.370687,0.196961,0.414299,0.363106,0.0182767,0.960603,0.00699216,0.276321,0.928002,0.621827,0.567341,0.995369,0.90847,0.0739146,0.850508,0.445784,0.197983,0.807784,0.366187,0.935045,0.469634,0.516867,0.760176,0.253014,0.575931,0.169826,0.839113,0.0859396,0.0568732,0.969002,0.61163,0.773908,0.121203,0.44914,0.0331023,0.0593769,0.0568983,0.832699,0.996977,0.255695,0.776691,0.0704332,0.994373,0.866309,0.107088,0.380024,0.451012,0.729068,0.45136,0.695708,0.359059,0.438798,0.617263,0.74998,0.221176,0.78809,0.47352,0.190505,0.16526,0.609617,0.175208,0.63097,0.897403,0.0792199,0.0393521,0.333307,0.022372,0.625491,0.0581532,0.362072,0.680205,0.408307,0.267315,0.980123,0.201176,0.703258,0.905217,0.992566,0.942592,0.395536,0.732791,0.809678,0.0497062,0.168317,0.535819,0.385235,0.286867,0.903367,0.865749,0.679155,0.00681448,0.565807,0.928273,0.416849,0.53359,0.782246,0.494266,0.780064,0.759555,0.65768,0.429879,0.381149,0.106376,0.500462,0.394747,0.802822,0.0134448,0.073517,0.945677,0.598338,0.886803,0.242731,0.461406,0.138588,0.173746,0.462961,0.38015,0.707472,0.541538,0.0366434,0.276534,0.972118,0.943465,0.287993,0.315398,0.627811,0.17643,0.733764,0.956326,0.749747,0.804503,0.98818,0.341767,0.469245,0.144702,0.152484,0.498693,0.0317153,0.527374,0.992364,0.367654,0.302431,0.729692,0.30564,0.673732,0.650895,0.60029,0.501414,0.41834,0.987465,0.982875,0.0479512,0.996358,0.951681,0.820946,0.927807,0.677292,0.801297,0.576773,0.171976,0.260895,0.941127,0.879132,0.572305,0.489947,0.809441,0.2433,0.330089,0.644505,0.792267,0.629397,0.242053,0.0474808,0.922518,0.847679,0.717762,0.507743,0.576992,0.191008,0.613535,0.198496,0.970556,0.978949,0.333081,0.83329,0.951474,0.136263,0.35636,0.495799,0.632773,0.961746,0.916842,0.622579,0.217636,0.631164,0.180081,0.158605,0.744416,0.68652,0.624171,0.993897,0.314463,0.0268172,0.510116,0.52255,0.0291345,0.428934,0.203566,0.447528,0.376413,0.231702,0.241299,0.494937,0.604585,0.366236,0.338101,0.0256312,0.334806,0.396142,0.907166,0.658535,0.265572,0.0497507,0.243571,0.461615,0.348174,0.56315,0.478219,0.0869702,0.95976,0.240233,0.550182,0.812752,0.114229,0.714752,0.621244,0.539676,0.190144,0.387981,0.910098,0.0887163,0.947989,0.085256,0.451929,0.428018,0.285771,0.383785,0.0762267,0.0172675,0.308864,0.472593,0.310322,0.678151,0.467753,0.314138,0.952643,0.530475,0.864128,0.962248,0.714914,0.0770261,0.988459,0.62009,0.852565,0.363141,0.101753,0.150326,0.805662,0.62625,0.310787,0.00835049,0.299915,0.554976,0.158119,0.255857,0.809104,0.319948,0.16493,0.387088,0.95683,0.686826,0.136409,0.809991,0.491882,0.228494,0.169891,0.337541,0.261881,0.949788,0.263473,0.289809,0.0699188,0.0793412,0.238296,0.701578,0.0699743,0.612074,0.415815,0.0854988,0.780881,0.583192,0.44827,0.133374,0.710608,0.242766,0.715669,0.509468,0.116211,0.126724,0.880259,0.497015,0.173171,0.765244,0.412257,0.744647,0.753043,0.266411,0.424741,0.577463,0.354088,0.232818,0.618355,0.767144,0.126168,0.457093,0.122114,0.570437,0.876514,0.288088,0.0157475,0.467063,0.352279,0.115817,0.517899,0.60521,0.532905,0.425921,0.913659,0.120204,0.975127,0.727543,0.427724,0.661778,0.246151,0.852781,0.819157,0.991697,0.278636,0.36513,0.587761,0.756573,0.392451,0.48099,0.335976,0.94889,0.664227,0.740738,0.545447,0.0528699,0.954513,0.098754,0.250071,0.0053885,0.0790412,0.0807699,0.0825065,0.390385,0.343126,0.740891,0.309165,0.207718,0.543593,0.62921,0.204252,0.609603,0.724508,0.416224,0.31877,0.568381,0.0914398,0.297171,0.44349,0.637138,0.836397,0.725674,0.180299,0.586352,0.166869,0.888987,0.0944784,0.947091,0.595217,0.864961,0.225451,0.134614,0.502088,0.640579,0.73267,0.618261,0.369616,0.0663235,0.956554,0.0331545,0.961558,0.174672,0.955942,0.0878223,0.798296,0.377471,0.0395465,0.463205,0.787887,0.121162,0.995668,0.94463,0.8735,0.328478,0.966162,0.546267,0.409226,0.588589,0.471712,0.620265,0.387644,0.600797,0.692314,0.192057,0.278264,0.284217,0.667328,0.561886,0.129561,0.441127,0.215509,0.885243,0.41468,0.431127,0.762491,0.112666,0.623473,0.201247,0.657575,0.284924,0.169975,0.100909,0.453064,0.646484,0.519618,0.677695,0.830359,0.445899,0.132005,0.320351,0.176534,0.60471,0.374943,0.596299,0.402032,0.400695,0.964739,0.131476,0.356206,0.266166,0.697686,0.954827,0.286051,0.23372,0.133558,0.578172,0.383269,0.497542,0.869593,0.195636,0.92644,0.396564,0.683974,0.330019,0.262722,0.299011,0.419606,0.56325,0.385678,0.428326,0.631647,0.623349,0.0695391,0.276856,0.865576,0.828638,0.0764745,0.797147,0.695024,0.268208,0.164131,0.0401608,0.777277,0.234783,0.429696,0.92831,0.57826,0.992108,0.716925,0.587421,0.408874,0.833943,0.572863,0.248531,0.203778,0.20121,0.352653,0.3926,0.621186,0.968055,0.333562,0.701287,0.641554,0.119378,0.407121,0.486769,0.163343,0.627959,0.408528,0.565051,0.0429901,0.146026,0.706441,0.494844,0.210535,0.109913,0.184371,0.304721,0.968524,0.568676,0.598265,0.725838,0.577674,0.109159,0.448734,0.940729,0.821166,0.0685166,0.486968,0.370342,0.416944,0.477908,0.812422,0.168099,0.452911,0.0589153,0.743579,0.473411,0.550998,0.618194,0.3743,0.348462,0.956572,0.605419,0.00731009,0.182579,0.197662,0.920504,0.10464,0.799323,0.927555,0.458613,0.388205,0.181104,0.866379,0.538069,0.379666,0.212769,0.428259,0.610697,0.131845,0.815887,0.328626,0.4841,0.638077,0.114445,0.504064,0.0996397,0.0546988,0.24928,0.952986,0.706628,0.848203,0.846836,0.86582,0.819837,0.466429,0.924287,0.247862,0.905709,0.168461,0.920265,0.527123,0.0455949,0.982752,0.945127,0.396261,0.217832,0.29184,0.483586,0.661744,0.118456,0.906643,0.951705,0.634866,0.584275,0.918955,0.566872,0.792054,0.383633,0.779966,0.271465,0.352325,0.100059,0.0858825,0.379099,0.60294,0.179543,0.381503,0.941514,0.66493,0.518248,0.167482,0.1044,0.669817,0.715914,0.00442475,0.601906,0.470171,0.396596,0.39942,0.472396,0.999293,0.386081,0.123846,0.0404875,0.614998,0.132088,0.462655,0.38875,0.482351,0.873843,0.164561,0.0100181,0.115156,0.500647,0.266522,0.893647,0.453866,0.926373,0.465306,0.411829,0.562193,0.544492,0.419417,0.624775,0.394154,0.996885,0.093994,0.951919,0.236751,0.502059,0.740078,0.689632,0.966549,0.268925,0.613491,0.500634,0.691694,0.543695,0.964884,0.810699,0.114628,0.420758,0.549286,0.727276,0.56733,0.756337,0.559651,0.775469,0.848631,0.49636,0.682186,0.0973675,0.149933,0.111774,0.530039,0.795826,0.869964,0.361689,0.886712,0.999719,0.37252,0.045464,0.0136405,0.748435,0.857747,0.277929,0.538133,0.0442129,0.491226,0.695971,0.615938,0.122727,0.223861,0.307666,0.134498,0.0563443,0.11492,0.512222,0.948985,0.290901,0.856549,0.364261,0.20617,0.534142,0.870658,0.84161,0.923678,0.90201,0.261418,0.491881,0.128023,0.990429,0.188759,0.640402,0.502461,0.236408,0.635589,0.826676,0.379484,0.428126,0.651452,0.431418,0.753499,0.372004,0.423382,0.496097,0.728577,0.626759,0.541546,0.776637,0.326488,0.855698,0.513834,0.0248785,0.81149,0.200699,0.903947,0.404016,0.0712702,0.460164,0.904693,0.0958341,0.530911,0.732729,0.683595,0.064595,0.397592,0.488782,0.56014,0.0353997,0.23874,0.948585,0.971334,0.795062,0.692927,0.976587,0.224775,0.207529,0.335239,0.930812,0.254852,0.55776,0.253165,0.359754,0.0789869,0.369681,0.216088,0.36428,0.130952,0.726441,|0.7698,0.888769,0.676445,0.134496,0.233699,0.0220393,0.975146,0.738722,0.695521,0.870388,0.350074,0.471951,0.563766,0.930566,0.689299,0.741913,0.198342,0.505684,0.985757,0.513263,0.401423,0.735542,0.182424,0.510484,0.329708,0.455904,0.931953,0.461016,0.59755,0.538196,0.705375,0.25196,0.0538794,0.45303,0.192558,0.531341,0.682641,0.924041,0.809339,0.489379,0.727882,0.4279,0.288149,0.464668,0.443339,0.981586,0.7495,0.609407,0.0680656,0.139915,0.854237,0.695904,0.652899,0.501665,0.716862,0.968436,0.273113,0.701105,0.0816976,0.392784,0.0457728,0.983969,0.145359,0.183263,0.668807,0.1404,0.247674,0.412654,0.965342,0.778591,0.988033,0.482864,0.38361,0.433076,0.461391,0.22901,0.0848176,0.806785,0.207471,0.0461903,0.0918049,0.627917,0.444228,0.542067,0.359319,0.0715178,0.829198,0.503844,0.496571,0.982016,0.579912,0.550955,0.872784,0.304394,0.740407,0.505239,0.523655,0.891319,0.777916,0.286416,0.965017,0.633139,0.228141,0.620148,0.490381,0.0838195,0.605988,0.420444,0.690459,0.126962,0.65445,0.745106,0.629608,0.998822,0.685087,0.887565,0.444567,0.497682,0.496862,0.538404,0.92111,0.66926,0.841472,0.320571,0.410513,0.546862,0.0729421,0.454925,0.958333,0.980412,0.542329,0.35511,0.619893,0.125649,0.638104,0.478104,0.124144,0.705373,0.872953,0.809942,0.105392,0.327104,0.303797,0.680787,0.543157,0.799567,0.710502,0.969778,0.160165,0.530971,0.0397539,0.889878,0.817373,0.0561174,0.176274,0.28106,0.630231,0.994325,0.921746,0.624399,0.369657,0.517641,0.397316,0.151242,0.991635,0.279588,0.668804,0.330263,0.409507,0.107389,0.125311,0.548475,0.0235961,0.458149,0.74001,0.863314,0.438404,0.987862,0.534778,0.100609,0.395311,0.788757,0.544606,0.402921,0.953263,0.799901,0.425205,0.111017,0.709731,0.196836,0.481761,0.435668,0.213721,0.320999,0.270844,0.154129,0.0567698,0.62299,0.634737,0.0723836,0.869313,0.0667741,0.0132313,0.468461,0.59307,0.782874,0.207459,0.223032,0.398218,0.0432999,0.344321,0.974981,0.186875,0.16084,0.552495,0.346352,0.544779,0.435358,0.53484,0.87088,0.411756,0.273965,0.918099,0.861091,0.77716,0.461903,0.886604,0.635215,0.380838,0.118581,0.129141,0.809901,0.0344606,0.0307708,0.416195,0.196412,0.456986,0.300845,0.555851,0.210067,0.525987,0.185509,0.668303,0.572802,0.283395,0.0413117,0.65094,0.283542,0.346492,0.588837,0.0254681,0.55155,0.510269,0.841221,0.829286,0.771357,0.594345,0.328623,0.358076,0.366719,0.89007,0.00169569,0.173399,0.617952,0.587334,0.160889,0.47823,0.425901,0.0642817,0.0438876,0.208205,0.0889472,0.557905,0.895461,0.669457,0.0454684,0.657831,0.955189,0.499268,0.202622,0.051481,0.735179,0.321123,0.00481355,0.43473,0.370761,0.239634,0.566086,0.201094,0.366296,0.757302,0.560992,0.114679,0.754712,0.374034,0.361472,0.905559,0.258732,0.427958,0.635384,0.0462943,0.131665,0.606838,0.986834,0.490857,0.34837,0.954519,0.309433,0.333528,0.413334,0.775002,0.782916,0.472863,0.486697,0.825269,0.955254,0.72487,0.881478,0.828482,0.334006,0.729571,0.395092,0.577215,0.102143,0.743761,0.906723,0.552919,0.0639378,0.998807,0.865957,0.58618,0.219613,0.476302,0.602914,0.275164,0.888181,0.0516349,0.242127,0.267491,0.293337,0.934572,0.73817,0.770329,0.635021,0.373669,0.394953,0.863504,0.431031,0.2874,0.971068,0.764324,0.0611597,0.605916,0.0763411,0.554675,0.628251,0.0334857,0.0660722,0.280709,0.95869,0.609552,0.812286,0.124614,0.846117,0.771989,0.429256,0.396419,0.24601,0.357726,0.384274,0.746404,0.0800061,0.589868,0.486792,0.0973219,0.334636,0.74778,0.110328,0.591264,0.303231,0.968959,0.626662,0.0363654,0.442251,0.298713,0.969,0.448345,0.172307,0.420217,0.688981,0.387281,0.898618,0.615405,0.806841,0.476839,0.797857,0.314812,0.259217,0.74721,0.171935,0.151788,0.907,0.0208728,0.979163,0.892286,0.0256788,0.881806,0.842027,0.0930076,0.776671,0.398512,0.107274,0.723842,0.113075,0.787738,0.688719,0.273168,0.332852,0.775327,0.979884,0.441489,0.0970616,0.181347,0.221683,0.354814,0.187618,0.949514,0.512456,0.394204,0.602038,0.136139,0.0741587,0.707007,0.186018,0.701581,0.131559,0.978269,0.592481,0.689328,0.205792,0.821796,0.855482,0.702628,0.472634,0.819708,0.536614,0.22345,0.843546,0.386765,0.960862,0.0873736,0.707513,0.368719,0.106601,0.624082,0.36045,0.703893,0.384501,0.536281,0.073876,0.158685,0.2211,0.78649,0.441438,0.356747,0.510135,0.146877,0.706164,0.185541,0.123333,0.547462,0.338655,0.718297,0.193063,0.699956,0.524159,0.127989,0.712016,0.390642,0.723815,0.720817,0.315013,0.00456494,0.852646,0.692982,0.327792,0.383638,0.644408,0.509942,0.775323,0.598522,0.270349,0.782594,0.442428,0.798187,0.562066,0.97315,0.585701,0.711316,0.762037,0.311397,0.377668,0.473618,0.142704,0.0190367,0.985937,0.721331,0.487655,0.481773,0.287154,0.987131,0.859086,0.699121,0.0110649,0.251967,0.984688,0.557199,0.157747,0.105298,0.312564,0.84786,0.132422,0.385539,0.107063,0.605863,0.8473,0.101273,0.0738776,0.058491,0.0826859,0.607215,0.677527,0.136471,0.908113,0.957034,0.326128,0.261047,0.573837,0.343856,0.717052,0.554129,0.677222,0.948696,0.985727,0.785357,0.318407,0.660486,0.901559,0.995426,0.709747,0.296909,0.866322,0.484442,0.10194,0.604049,0.584586,0.852104,0.886415,0.517368,0.239477,0.584055,0.327034,0.341835,0.781433,0.984013,0.749507,0.0445956,0.676432,0.320073,0.667915,0.829011,0.719312,0.834791,0.762087,0.297291,0.522255,0.0219389,0.666493,0.779989,0.753977,0.83844,0.32627,0.863785,0.908614,0.376636,0.352019,0.415191,0.0128382,0.143145,0.357169,0.621085,0.358469,0.53927,0.322703,0.142143,0.622626,0.866362,0.560375,0.648588,0.27008,0.91921,0.702952,0.604952,0.447484,0.0561438,0.640642,0.259488,0.529148,0.52567,0.544756,0.33765,0.492994,0.0789151,0.157546,0.323972,0.328052,0.139751,0.91778,0.0874237,0.978009,0.146906,0.580305,0.289357,0.547599,0.79648,0.144284,0.225306,0.258444,0.364542,0.161145,0.387725,0.460556,0.346846,0.0427961,0.863807,0.818283,0.8235,0.953469,0.136825,0.119739,0.909284,0.774554,0.857426,0.255108,0.668637,0.288375,0.303578,0.491857,0.645942,0.373536,0.489065,0.593063,0.774356,0.728867,0.120683,0.659326,0.644592,0.60418,0.807114,0.0743766,0.638065,0.445018,0.871576,0.33737,0.234106,0.975048,0.235114,0.336142,0.433814,0.261514,0.661014,0.0436665,0.515512,0.760059,0.327865,0.719327,0.977892,0.45472,0.813947,0.318553,0.246265,0.472514,0.180593,0.658734,0.735125,0.347101,0.372953,0.720925,0.530849,0.479989,0.83116,0.872344,0.492827,0.133493,0.207975,0.185406,0.478537,0.603356,0.0845166,0.398825,0.679914,0.108155,0.824657,0.611151,0.639273,0.592565,0.839471,0.662302,0.00747257,0.88025,0.423599,0.220573,0.701195,0.316038,0.930593,0.8705,0.774463,0.357604,0.97857,0.618057,0.713448,0.922169,0.603492,0.926031,0.19708,0.614073,0.276043,0.638553,0.915219,0.0455438,0.856624,0.472239,0.0402108,0.796531,0.0656764,0.74043,0.892411,0.0128036,0.0858288,0.424834,0.691744,0.445895,0.937273,0.282,0.581422,0.561044,0.0195649,0.433889,0.852882,0.711797,0.916112,0.638646,0.00264889,0.234563,0.867334,0.603769,0.422451,0.51206,0.614445,0.139283,0.202949,0.645485,0.894564,0.663681,0.161469,0.413257,0.267455,0.564615,0.00991184,0.528672,0.465312,0.408816,0.551473,0.773273,0.75858,0.593838,0.847789,0.797958,0.48506,0.733601,0.645387,0.11034,0.635981,0.0897556,0.0848894,0.32302,0.0833074,0.479609,0.0388563,0.983855,0.982482,0.459593,0.286857,0.581475,0.280885,0.359577,0.277191,0.17564,0.501444,0.134854,0.390488,0.0369119,0.289909,0.662954,0.831198,0.407495,0.394038,0.750617,0.342012,0.535102,0.808219,0.948051,0.715249,0.999916,0.362607,0.449103,0.326559,0.581274,0.474547,0.625794,0.000977695,0.765186,0.0556321,0.833651,0.621921,0.358388,0.613933,0.570007,0.492751,0.562581,0.412136,0.833624,0.660164,0.691908,0.857686,0.409925,0.389142,0.192422,0.240559,0.661864,0.0951555,0.83452,0.210338,0.76019,0.688866,0.36987,0.926905,0.637095,0.391911,0.455873,0.00850499,0.187912,0.661885,0.410572,0.432039,0.198882,0.664926,0.919602,0.462523,0.0883816,0.0141397,0.138261,0.0302154,0.470713,0.417176,0.291711,0.916591,0.826847,0.0804354,0.477703,0.486312,0.929765,0.227427,0.274715,0.278904,0.585055,0.842561,0.75867,0.858528,0.511284,0.0033623,0.663716,0.541861,0.568628,0.227009,0.0340017,0.119751,0.136593,0.645374,0.280394,0.226427,0.196875,0.0822912,0.82608,0.702996,0.455102,0.482022,0.375638,0.0728234,0.233676,0.426835,0.234223,0.888614,0.743942,0.524745,0.883397,0.709934,0.165747,0.17479,0.656561,0.889534,0.349783,0.198619,0.907615,0.215732,0.779474,0.242725,0.88863,0.653422,0.990571,0.548247,0.101732,0.886906,0.344505,0.375155,0.842633,0.951925,0.35757,0.995217,0.895786,0.581134,0.278899,0.401262,0.64084,0.528503,0.940901,0.586823,0.799596,0.229713,0.443078,0.860262,0.800476,0.953122,0.793002,0.110417,0.579136,0.432628,0.824447,0.316612,0.832445,0.9018,0.294632,0.771664,0.105889,0.461637,0.942176,0.160861,0.322673,0.471667,0.32665,0.229275,0.903431,0.927606,0.570727,0.750677,0.0617621,0.879857,0.36859,0.500223,0.483693,0.894096,0.732337,0.47069,0.243559,0.481862,0.88237,0.0674297,0.953746,0.697533,0.274411,0.29716,0.811293,0.469572,0.676526,0.526341,0.573345,0.300237,0.906853,0.354309,0.280846,0.399867,0.285954,0.99498,0.935849,0.300494,0.464084,0.334906,0.310461,0.523565,0.841091,|0.102043,0.782448,0.0777677,0.960472,0.0295455,0.808537,0.217085,0.366994,0.393712,0.979503,0.543911,0.119745,0.854323,0.696025,0.481895,0.547778,0.566895,0.540302,0.83138,0.964059,0.0554046,0.415258,0.957581,0.0473986,0.854527,0.893206,0.856415,0.727701,0.32759,0.277713,0.954515,0.798755,0.406055,0.603572,0.916992,0.0812075,0.765815,0.838074,0.124393,0.662746,0.0339028,0.249953,0.119957,0.794904,0.917055,0.659127,0.882948,0.434647,0.937121,0.201116,0.497307,0.729159,0.507221,0.0302027,0.57711,0.149571,0.205708,0.0329281,0.664547,0.335822,0.298736,0.827112,0.575742,0.440624,0.3546,0.412401,0.531222,0.919591,0.516025,0.00223178,0.785409,0.0989433,0.707877,0.0115153,0.298539,0.251766,0.0825012,0.375674,0.810421,0.59496,0.719744,0.0841753,0.912679,0.801453,0.854632,0.575567,0.0558032,0.558467,0.187063,0.537702,0.933594,0.147194,0.626746,0.263843,0.0101164,0.0753874,0.474877,0.241009,0.277205,0.251405,0.145396,0.832884,0.207873,0.620938,0.252986,0.961525,0.596049,0.658047,0.792658,0.670755,0.124331,0.298615,0.850751,0.620056,0.0331274,0.724491,0.642182,0.890458,0.412178,0.939842,0.981248,0.509317,0.900337,0.0605296,0.602879,0.395294,0.193806,0.259082,0.904694,0.873896,0.410538,0.33732,0.150705,0.245974,0.193815,0.635783,0.0637725,0.216824,0.989153,0.643418,0.512179,0.162478,0.873092,0.655154,0.149711,0.367066,0.72859,0.998155,0.372821,0.64851,0.0739068,0.694262,0.382966,0.720839,0.420692,0.526586,0.386968,0.095414,0.296241,0.632442,0.522836,0.91774,0.934238,0.548085,0.867871,0.264088,0.721356,0.532359,0.800541,0.810436,0.397441,0.275187,0.6409,0.0961969,0.908144,0.531755,0.117008,0.310607,0.163591,0.665915,0.736857,0.576603,0.529243,0.968194,0.588094,0.63334,0.679092,0.700697,0.515634,0.566997,0.935413,0.492104,0.769059,0.871822,0.773732,0.478498,0.275282,0.695742,0.490874,0.382831,0.108901,0.17236,0.158825,0.890635,0.38625,0.735887,0.388349,0.995481,0.743738,0.900423,0.996768,0.758657,0.815753,0.285847,0.788037,0.343424,0.950438,0.724957,0.584741,0.173603,0.505647,0.434753,0.742677,0.613563,0.424736,0.712682,0.914571,0.114184,0.548609,0.978438,0.180327,0.61524,0.307812,0.411147,0.985242,0.901478,0.698167,0.726563,0.0385951,0.613403,0.854145,0.220574,0.722961,0.416503,0.463621,0.690579,0.310392,0.937496,0.00580847,0.182418,0.341907,0.0640533,0.671449,0.644278,0.297706,0.612023,0.42932,0.869933,0.139491,0.970663,0.00157541,0.302866,0.498903,0.80528,0.760407,0.102299,0.130943,0.824953,0.629518,0.506427,0.240379,0.509889,0.211114,0.862873,0.131867,0.659218,0.390233,0.762477,0.164402,0.46991,0.388074,0.762384,0.78468,0.850854,0.197354,0.0875455,0.557357,0.662569,0.10086,0.839571,0.820589,0.555549,0.0499004,0.886479,0.254856,0.101351,0.728988,0.851829,0.277015,0.397297,0.654481,0.156639,0.485594,0.36629,0.470176,0.220228,0.336996,0.806222,0.412568,0.688364,0.706552,0.663928,0.242519,0.638096,0.780542,0.304402,0.489954,0.941705,0.0118158,0.889673,0.701256,0.735124,0.598397,0.262381,0.656733,0.542024,0.445758,0.279483,0.234443,0.660355,0.503304,0.834009,0.232191,0.59047,0.787162,0.111226,0.717419,0.42871,0.944528,0.42157,0.0235493,0.180587,0.373509,0.212021,0.423154,0.333196,0.313863,0.495856,0.571325,0.833231,0.349139,0.760944,0.599811,0.548696,0.671102,0.807159,0.899463,0.571486,0.959086,0.681518,0.478705,0.393762,0.905767,0.702616,0.698573,0.83399,0.782847,0.677994,0.740398,0.202134,0.443693,0.514743,0.313603,0.876426,0.600452,0.198041,0.449288,0.261046,0.0553135,0.23177,0.451765,0.952856,0.675478,0.235727,0.313276,0.742061,0.838329,0.0189964,0.88687,0.350197,0.212039,0.672413,0.242466,0.105074,0.466956,0.699754,0.624132,0.111771,0.218087,0.265655,0.135055,0.72661,0.869781,0.539496,0.414364,0.248483,0.617198,0.991804,0.557947,0.570202,0.440518,0.134779,0.248872,0.7006,0.0154991,0.583379,0.249905,0.911011,0.883381,0.954705,0.296397,0.460402,0.591415,0.0645539,0.040171,0.131425,0.843227,0.24091,0.964281,0.316211,0.261295,0.294577,0.766195,0.595313,0.758949,0.941771,0.583938,0.71739,0.0959494,0.736874,0.990356,0.239222,0.239835,0.805708,0.452242,0.210718,0.388717,0.307251,0.610162,0.220936,0.696835,0.248368,0.919369,0.818317,0.963092,0.992044,0.818753,0.0751421,0.462576,0.955199,0.900478,0.864249,0.225412,0.192253,0.799275,0.367378,0.332721,0.932596,0.132172,0.494202,0.768908,0.508524,0.720923,0.0944284,0.00941336,0.957274,0.823901,0.151951,0.691851,0.260017,0.322618,0.308053,0.940925,0.877616,0.942214,0.658837,0.677958,0.314534,0.891409,0.652839,0.0403678,0.568977,0.584213,0.540142,0.920146,0.210619,0.129034,0.520507,0.655859,0.732526,0.536005,0.627015,0.985237,0.779121,0.80965,0.025412,0.0190508,0.621844,0.429687,0.0427387,0.274939,0.324437,0.251194,0.886685,0.787368,0.61036,0.25645,0.687417,0.412787,0.449199,0.903586,0.381804,0.0776182,0.844462,0.627024,0.83308,0.903998,0.639352,0.917283,0.320951,0.747546,0.32148,0.415263,0.348272,0.21335,0.792931,0.12496,0.570451,0.414205,0.315383,0.570014,0.870052,0.909449,0.331712,0.517727,0.391293,0.323439,0.517062,0.138464,0.823129,0.586399,0.649723,0.975707,0.99492,0.0271257,0.139249,0.668877,0.561649,0.353875,0.637492,0.804288,0.393948,0.398771,0.140398,0.624917,0.766992,0.517194,0.140907,0.595416,0.179905,0.864439,0.535576,0.331363,0.841378,0.842018,0.462885,0.33442,0.655203,0.387118,0.536128,0.196572,0.0362991,0.711555,0.424306,0.160797,0.375304,0.766249,0.939489,0.823016,0.499566,0.996173,0.836598,0.219806,0.124767,0.613737,0.375482,0.321226,0.578353,0.723847,0.681381,0.564281,0.770712,0.691577,0.574134,0.269725,0.332481,0.995261,0.114477,0.292722,0.960969,0.110547,0.549136,0.136079,0.847747,0.632379,0.59706,0.438282,0.381271,0.882392,0.0108252,0.793009,0.0625826,0.103652,0.525245,0.234348,0.940722,0.77704,0.0245456,0.368228,0.167408,0.784271,0.357934,0.785873,0.62721,0.205593,0.593739,0.926151,0.930962,0.211109,0.496381,0.983916,0.566912,0.781525,0.58116,0.89914,0.839593,0.516363,0.219147,0.974383,0.0446141,0.505172,0.902023,0.710695,0.829027,0.238769,0.175621,0.279538,0.316193,0.311881,0.321041,0.232171,0.821035,0.118068,0.884586,0.7101,0.242213,0.577906,0.458321,0.20283,0.25004,0.649007,0.947299,0.996886,0.951901,0.0961614,0.994401,0.254156,0.262394,0.310395,0.44259,0.57252,0.122309,0.288668,0.64052,0.982488,0.295304,0.903438,0.677981,0.0311872,0.491754,0.352908,0.776755,0.31815,0.700433,0.954216,0.619417,0.86783,0.562305,0.458624,0.0589744,0.410791,0.248044,0.407415,0.382149,0.0294474,0.26062,0.870463,0.289008,0.263942,0.410435,0.339224,0.0250774,0.281673,0.0195273,0.158814,0.817007,0.979973,0.364828,0.657186,0.602371,0.649728,0.45127,0.927046,0.0100528,0.371182,0.684986,0.673335,0.946253,0.531318,0.698276,0.992931,0.75197,0.242217,0.964083,0.72977,0.899975,0.776482,0.820884,0.629402,0.804405,0.245398,0.491986,0.442382,0.0430358,0.519516,0.658066,0.804461,0.294312,0.406268,0.876688,0.0542468,0.207657,0.200721,0.760483,0.191053,0.935791,0.709216,0.699671,0.0126744,0.611611,0.705748,0.789994,0.862393,0.00324827,0.339285,0.821963,0.734404,0.677498,0.662799,0.76175,0.961821,0.0822382,0.477327,0.27765,0.470818,0.383745,0.269318,0.332031,0.99871,0.509192,0.114912,0.771899,0.60893,0.445562,0.675107,0.751894,0.241228,0.696961,0.356986,0.558665,0.630061,0.815148,0.953321,0.57301,0.455999,0.445082,0.885059,0.660736,0.242971,0.336567,0.141223,0.15711,0.0890123,0.142083,0.271188,0.764846,0.0466887,0.962871,0.913862,0.665102,0.361412,0.320548,0.773913,0.468914,0.155221,0.759871,0.342882,0.775275,0.579427,0.123971,0.741848,0.707051,0.457626,0.796303,0.400594,0.537473,0.413178,0.146025,0.689189,0.42209,0.542982,0.128897,0.557404,0.934011,0.821996,0.176732,0.301215,0.0935035,0.504652,0.92452,0.474948,0.0252785,0.333824,0.98355,0.718158,0.550878,0.588249,0.84825,0.155219,0.871229,0.637468,0.42337,0.43937,0.0509474,0.884971,0.259139,0.742658,0.77108,0.74199,0.819408,0.85881,0.0927563,0.839146,0.129206,0.98463,0.7371,0.459674,0.680468,0.518686,0.374878,0.337557,0.437595,0.0691082,0.63352,0.784856,0.580601,0.993132,0.523633,0.235763,0.184476,0.143953,0.161985,0.439933,0.866685,0.870201,0.423867,0.204563,0.646352,0.115455,0.846931,0.74557,0.134453,0.322821,0.465272,0.485415,0.290958,0.837992,0.409497,0.948792,0.170922,0.415518,0.201508,0.849037,0.95869,0.488432,0.48064,0.179071,0.0157613,0.925229,0.658158,0.962404,0.186089,0.74178,0.459342,0.445206,0.277214,0.538985,0.893762,0.0273827,0.43647,0.593112,0.566206,0.92467,0.853728,0.826714,0.713041,0.108193,0.423133,0.00785339,0.921787,0.0472102,0.0290218,0.75751,0.932237,0.477567,0.312241,0.522833,0.900809,0.24829,0.0423599,0.286477,0.156452,0.0843784,0.698918,0.456111,0.640252,0.863798,0.887319,0.365118,0.915487,0.904682,0.87508,0.73386,0.748935,0.194095,0.828865,0.280008,0.159908,0.359647,0.272231,0.750094,0.497306,0.917543,0.43666,0.467892,0.157978,0.668709,0.141392,0.699069,0.306933,0.0824193,0.547188,0.161132,0.98306,0.666606,0.883524,0.518404,0.827086,0.229459,0.0390231,0.349807,0.504579,0.642923,0.0366485,0.615582,0.671259,0.36274,0.425022,0.674787,0.479357,0.516463,0.95915,0.975031,0.423225,0.878434,0.811668,0.62199,0.17363,0.886137,0.772425,|0.935028,0.992295,0.599133,0.937806,0.645622,0.530193,0.910744,0.879915,0.543644,0.421129,0.838595,0.400952,0.418137,0.49726,0.505422,0.333933,0.645346,0.559766,0.448595,0.601368,0.0626341,0.368064,0.684586,0.246012,0.848167,0.237352,0.467666,0.71279,0.226907,0.661776,0.9108,0.00805527,0.552767,0.196284,0.348837,0.457956,0.129407,0.367231,0.797016,0.206174,0.345762,0.997694,0.797208,0.604536,0.743748,0.201717,0.458907,0.295914,0.630996,0.0549737,0.637414,0.623758,0.195303,0.00815737,0.864021,0.202751,0.267934,0.928045,0.537379,0.235003,0.203831,0.911954,0.856875,0.236806,0.286377,0.0638397,0.209121,0.455092,0.309312,0.826133,0.251627,0.29519,0.231966,0.495319,0.603181,0.77523,0.451193,0.335777,0.338858,0.642796,0.362221,0.150034,0.41609,0.0423273,0.685964,0.951311,0.698214,0.491646,0.00202101,0.46465,0.526924,0.280425,0.181942,0.288758,0.445344,0.455577,0.716539,0.253188,0.170909,0.611363,0.051813,0.0621959,0.0939622,0.530128,0.323401,0.736392,0.947615,0.260443,0.644848,0.528878,0.321975,0.0725179,0.209536,0.557699,0.412563,0.0588185,0.327455,0.363991,0.426813,0.651082,0.416303,0.527286,0.121919,0.927166,0.0384313,0.0988705,0.23069,0.0219949,0.870467,0.0616813,0.511871,0.771904,0.142862,0.991461,0.114155,0.117937,0.799851,0.966977,0.955078,0.307842,0.811836,0.15284,0.313238,0.971588,0.403471,0.130403,0.0522105,0.828154,0.766816,0.00562459,0.436878,0.308686,0.234356,0.983633,0.524908,0.807119,0.167491,0.99199,0.759204,0.833275,0.103859,0.055926,0.651155,0.710881,0.182563,0.0332624,0.765055,0.255373,0.545217,0.391838,0.380438,0.401172,0.531594,0.182166,0.0383083,0.691553,0.67319,0.360991,0.258864,0.414264,0.916303,0.718808,0.842277,0.784384,0.0813306,0.934935,0.090725,0.608134,0.14825,0.552118,0.345917,0.871439,0.0810599,0.746384,0.599936,0.538973,0.65422,0.464744,0.158844,0.0626059,0.93429,0.477433,0.579624,0.399781,0.0424607,0.0530107,0.803071,0.969018,0.997283,0.820704,0.474507,0.968344,0.801854,0.720047,0.463103,0.863384,0.297108,0.532003,0.646304,0.587618,0.669788,0.734951,0.811939,0.517265,0.312891,0.609432,0.248206,0.420586,0.926571,0.758011,0.160216,0.363209,0.506994,0.803878,0.830672,0.295391,0.697341,0.334499,0.00578225,0.712995,0.644003,0.344424,0.0497152,0.101339,0.0236885,0.191081,0.858031,0.842559,0.50229,0.734931,0.558319,0.73124,0.984262,0.311165,0.962677,0.401631,0.154536,0.854866,0.0129179,0.774809,0.807499,0.0355185,0.967283,0.516033,0.310479,0.0693914,0.266074,0.325452,0.792312,0.482801,0.671045,0.148149,0.813942,0.446128,0.223611,0.107194,0.594676,0.187749,0.481244,0.764035,0.432804,0.700737,0.768553,0.658643,0.889449,0.75438,0.964855,0.5737,0.0201175,0.19859,0.834992,0.195493,0.918676,0.878187,0.0920433,0.303166,0.14162,0.596236,0.791509,0.860041,0.557701,0.777327,0.308164,0.0398111,0.245135,0.889735,0.908446,0.252133,0.283397,0.693123,0.726874,0.787352,0.679234,0.0438238,0.418428,0.889609,0.213184,0.0381798,0.429646,0.100421,0.202099,0.0300114,0.875326,0.83831,0.889488,0.106848,0.208063,0.595605,0.449384,0.868864,0.592682,0.0621817,0.235156,0.532832,0.754655,0.950294,0.0688373,0.812085,0.927017,0.430642,0.883825,0.145546,0.632049,0.215311,0.247455,0.150044,0.854783,0.732936,0.461537,0.171915,0.699652,0.817282,0.161029,0.752569,0.684874,0.254375,0.0509585,0.482385,0.123482,0.750928,0.258133,0.964613,0.154932,0.688515,0.643371,0.927089,0.839608,0.76539,0.535312,0.66086,0.954759,0.339936,0.918945,0.0317834,0.286731,0.98335,0.144649,0.66835,0.343863,0.645647,0.440297,0.424152,0.935744,0.339349,0.334894,0.548473,0.771412,0.613446,0.591344,0.29403,0.480092,0.541197,0.416673,0.514841,0.962329,0.135387,0.853734,0.968899,0.973758,0.188143,0.41612,0.61072,0.645608,0.743281,0.987399,0.0552351,0.142832,0.425491,0.576128,0.0855973,0.521187,0.355287,0.742437,0.625826,0.785477,0.81452,0.39017,0.737498,0.728153,0.0244029,0.651341,0.138225,0.259952,0.886793,0.328184,0.0395698,0.784733,0.0880845,0.842227,0.867534,0.390114,0.0886248,0.70846,0.34297,0.699192,0.962067,0.927204,0.380897,0.946131,0.409422,0.330233,0.109166,0.381816,0.658592,0.737143,0.147795,0.472698,0.633558,0.928262,0.324028,0.608651,0.680068,0.650968,0.546029,0.323423,0.40989,0.964031,0.910337,0.966702,0.709027,0.949565,0.608932,0.0637608,0.989215,0.207184,0.323569,0.323271,0.388621,0.662863,0.955857,0.328869,0.981274,0.258855,0.486846,0.0612161,0.49753,0.310214,0.598132,0.574509,0.340166,0.375344,0.801425,0.6966,0.464265,0.424359,0.669853,0.415086,0.440462,0.895468,0.657749,0.179794,0.535326,0.96482,0.254868,0.0741943,0.164975,0.252221,0.991167,0.206041,0.452034,0.778604,0.360598,0.528358,0.307071,0.743312,0.52501,0.509459,0.827861,0.37312,0.833245,0.237122,0.17539,0.378862,0.345915,0.662539,0.520296,0.010852,0.694519,0.744222,0.190676,0.177183,0.669842,0.556906,0.364668,0.594706,0.241669,0.761993,0.412708,0.812944,0.400474,0.664788,0.248121,0.774325,0.0386535,0.73681,0.882253,0.8266,0.159163,0.311886,0.121268,0.687501,0.595578,0.0722678,0.554117,0.464464,0.20167,0.760847,0.201769,0.920646,0.611518,0.414548,0.671742,0.0524216,0.42739,0.00138128,0.82352,0.896418,0.56981,0.0947846,0.518521,0.039301,0.236421,0.244179,0.498077,0.512289,0.527072,0.228323,0.467243,0.990541,0.982943,0.657531,0.490256,0.610177,0.267326,0.382496,0.236767,0.166432,0.211202,0.589961,0.736574,0.875976,0.768705,0.484344,0.0892971,0.240867,0.0923469,0.571384,0.950629,0.294816,0.254741,0.853264,0.0807637,0.510909,0.246722,0.811627,0.420658,0.776262,0.885709,0.595887,0.453191,0.16124,0.582856,0.779051,0.867534,0.538505,0.374144,0.805126,0.227325,0.968756,0.636527,0.0923773,0.436844,0.481616,0.328146,0.30118,0.692923,0.803687,0.070911,0.58073,0.56565,0.103168,0.745973,0.14111,0.333747,0.81292,0.0208223,0.674473,0.241528,0.419219,0.134779,0.963896,0.979007,0.0364724,0.998749,0.715119,0.27768,0.267538,0.652187,0.365044,0.898966,0.984129,0.55281,0.719388,0.723305,0.877048,0.374032,0.141856,0.244715,0.051581,0.373383,0.559588,0.0997116,0.346497,0.830094,0.701564,0.961716,0.192614,0.861312,0.148531,0.813617,0.587692,0.382717,0.983918,0.675616,0.990474,0.959642,0.831594,0.340282,0.479357,0.383936,0.307016,0.406106,0.783469,0.320176,0.0591047,0.280622,0.0370313,0.772025,0.000585318,0.00135565,0.496856,0.361084,0.257698,0.447549,0.911806,0.0445659,0.702107,0.762936,0.944523,0.0272117,0.0710492,0.602343,0.295961,0.888196,0.0385271,0.924689,0.0840799,0.762269,0.821889,0.190607,0.544186,0.402574,0.897179,0.215625,0.337777,0.975129,0.666908,0.101427,0.254943,0.169738,0.240472,0.231473,0.408656,0.550882,0.795521,0.82426,0.103867,0.0726385,0.03231,0.32132,0.703185,0.884051,0.785838,0.444504,0.540111,0.0320243,0.958162,0.295897,0.375499,0.32662,0.133923,0.833525,0.60562,0.543752,0.627491,0.871092,0.705472,0.866636,0.907876,0.514651,0.519868,0.889821,0.490969,0.839635,0.0337691,0.0758815,0.752275,0.594144,0.590529,0.417369,0.921525,0.493968,0.141842,0.303262,0.129493,0.989386,0.654573,0.874935,0.427315,0.420006,0.204237,0.556183,0.427952,0.0199383,0.476329,0.357606,0.577586,0.0863789,0.640805,0.742236,0.230124,0.794704,0.747969,0.740015,0.789291,0.511845,0.037461,0.812425,0.57311,0.771813,0.298351,0.474254,0.748483,0.523079,0.219356,0.780615,0.144184,0.475044,0.690698,0.746511,0.886706,0.860696,0.0042271,0.404129,0.767954,0.604459,0.501401,0.555817,0.946767,0.709401,0.238702,0.832506,0.489271,0.965256,0.56301,0.331386,0.652587,0.111355,0.0276533,0.623158,0.509455,0.270524,0.69939,0.332348,0.488311,0.535887,0.897657,0.0949101,0.0157893,0.802944,0.0725852,0.265911,0.980488,0.789297,0.398081,0.78299,0.86142,0.616473,0.106619,0.392339,0.886717,0.597973,0.971902,0.528875,0.0887981,0.964489,0.570513,0.206389,0.628577,0.972531,0.125511,0.549562,0.958936,0.192712,0.713383,0.640124,0.503391,0.771621,0.460432,0.682353,0.733873,0.258009,0.424893,0.557302,0.774594,0.610521,0.468468,0.497492,0.176898,0.0560241,0.927655,0.330523,0.00452375,0.539613,0.0982888,0.885862,0.105105,0.279251,0.358531,0.176366,0.230111,0.469819,0.676149,0.342258,0.197115,0.130557,0.332028,0.531126,0.205633,0.515142,0.687611,0.0635417,0.738379,0.511152,0.904692,0.176175,0.79906,0.753904,0.917537,0.974622,0.376943,0.562102,0.24815,0.945015,0.994516,0.732125,0.890752,0.611226,0.99574,0.101155,0.0600558,0.216002,0.0530167,0.614116,0.590788,0.938347,0.820029,0.686705,0.724557,0.955311,0.38033,0.729708,0.592551,0.45348,0.263663,0.554377,0.183237,0.824311,0.0518281,0.703206,0.781558,0.396667,0.888925,0.795764,0.0519985,0.850093,0.967793,0.884165,0.0508205,0.744929,0.290629,0.647513,0.669605,0.636266,0.53012,0.310068,0.838199,0.135528,0.750077,0.787723,0.140011,0.688715,0.435447,0.656192,0.00853789,0.772683,0.542994,0.11331,0.828378,0.610296,0.473774,0.716831,0.870687,0.640113,0.853499,0.398738,0.36584,0.148782,0.0796966,0.388144,0.261907,0.747682,0.42874,0.526747,0.624882,0.159851,0.208146,0.319673,0.673758,0.737699,0.909983,0.939586,0.880166,0.141874,0.359112,0.638062,0.387332,0.699571,0.947668,0.923624,0.12627,0.253862,0.492952,0.957998,0.495093,0.654356,0.344545,0.871607,0.817709,0.366303,0.528086,0.868114,0.549297,0.768231,0.954582,0.146195,0.806976,0.276308,0.991744,0.799321,|0.218714,0.104618,0.08245,0.0572503,0.158763,0.790841,0.354765,0.440548,0.136084,0.965436,0.102427,0.564521,0.142548,0.371902,0.0187443,0.192082,0.815232,0.824204,0.534589,0.50725,0.828714,0.611569,0.223678,0.707871,0.158788,0.710557,0.393547,0.232058,0.696935,0.481002,0.209449,0.712813,0.58795,0.131604,0.985717,0.850167,0.341071,0.0955505,0.694425,0.753543,0.324667,0.323419,0.671254,0.0866075,0.133499,0.915009,0.147757,0.901814,0.359431,0.282281,0.45535,0.376263,0.796049,0.807317,0.432612,0.565464,0.934263,0.390645,0.802099,0.759621,0.844277,0.732457,0.664963,0.576992,0.356641,0.925644,0.523605,0.899342,0.391441,0.126663,0.0786493,0.862911,0.981096,0.995092,0.736445,0.128378,0.716149,0.347843,0.581925,0.883701,0.427893,0.147165,0.079592,0.0134467,0.166875,0.597844,0.691781,0.22036,0.734153,0.404565,0.254771,0.0632507,0.222166,0.966816,0.815347,0.712839,0.849549,0.510491,0.617406,0.403886,0.135234,0.476284,0.65224,0.146842,0.878105,0.867961,0.162482,0.401812,0.52454,0.435543,0.433741,0.741871,0.781668,0.0264812,0.664496,0.0639703,0.962216,0.564038,0.576998,0.978971,0.199082,0.0642961,0.00445759,0.804394,0.560494,0.606734,0.0200073,0.144506,0.751498,0.0679759,0.489555,0.13249,0.156103,0.384556,0.329942,0.217858,0.552117,0.663748,0.54382,0.982911,0.137509,0.781307,0.494998,0.0726106,0.322885,0.23567,0.290368,0.200158,0.996482,0.925393,0.969485,0.7838,0.561099,0.895892,0.683503,0.558732,0.517752,0.595498,0.425713,0.710051,0.431282,0.34088,0.949744,0.765456,0.0989299,0.246734,0.493544,0.561065,0.542359,0.195804,0.372419,0.633593,0.219956,0.0625142,0.971521,0.242001,0.0198283,0.890356,0.254752,0.273265,0.853968,0.9321,0.915627,0.846294,0.571157,0.366417,0.905544,0.508675,0.266765,0.00456941,0.329353,0.388915,0.016526,0.733205,0.766035,0.0391157,0.267352,0.827784,0.938235,0.666093,0.546007,0.385031,0.935199,0.0149311,0.279321,0.202433,0.577679,0.422643,0.101266,0.993532,0.00327063,0.71357,0.00461429,0.627311,0.698168,0.395118,0.212307,0.585362,0.266223,0.740129,0.778209,0.479973,0.485773,0.766524,0.734506,0.56374,0.389808,0.102817,0.88968,0.580002,0.576522,0.618198,0.196708,0.850048,0.827069,0.476761,0.274755,0.587214,0.868496,0.305727,0.139342,0.30249,0.493806,0.674751,0.545276,0.64312,0.482669,0.271478,0.766732,0.154446,0.753293,0.380322,0.791125,0.251446,0.934295,0.000466287,0.0555652,0.388133,0.0772135,0.577204,0.173603,0.296925,0.802153,0.807849,0.409256,0.642101,0.0686213,0.0346279,0.482409,0.788003,0.510883,0.886658,0.860683,0.717802,0.199879,0.0923714,0.563327,0.337282,0.747211,0.174582,0.788942,0.354419,0.225391,0.730379,0.404347,0.223673,0.200848,0.334108,0.0946656,0.122523,0.0132691,0.825626,0.37633,0.213333,0.819593,0.85802,0.141452,0.0594677,0.479686,0.98199,0.504314,0.867806,0.573498,0.468963,0.445513,0.336454,0.776432,0.874476,0.895756,0.9622,0.220833,0.00788331,0.734785,0.946696,0.373132,0.555931,0.416335,0.470561,0.601995,0.0829095,0.118507,0.0563805,0.475382,0.0931855,0.604426,0.22381,0.631597,0.221679,0.342188,0.103917,0.232639,0.625481,0.330339,0.52747,0.111449,0.0822746,0.34124,0.870402,0.0222397,0.763205,0.974334,0.266216,0.759683,0.421955,0.391548,0.972951,0.789697,0.579137,0.224713,0.050424,0.927806,0.910267,0.543104,0.719217,0.827259,0.796742,0.264847,0.334908,0.679399,0.401708,0.182475,0.391204,0.22501,0.96761,0.615392,0.692883,0.585243,0.511298,0.849706,0.268096,0.229924,0.43823,0.233994,0.81561,0.251639,0.433388,0.59018,0.405346,0.948569,0.0931161,0.454841,0.0515313,0.301723,0.627165,0.0326811,0.238464,0.238716,0.198237,0.329998,0.147349,0.2056,0.233932,0.883302,0.91086,0.315963,0.0223107,0.558496,0.0689132,0.697962,0.351603,0.548181,0.00332206,0.374731,0.496675,0.704539,0.818181,0.659415,0.674336,0.737986,0.621953,0.0499738,0.0764219,0.318381,0.993505,0.507396,0.166823,0.611786,0.956284,0.353414,0.226636,0.370857,0.0469691,0.439723,0.859631,0.42726,0.697416,0.352429,0.192801,0.108677,0.0144982,0.572552,0.688355,0.836287,0.823274,0.332778,0.825032,0.232698,0.184359,0.523949,0.340907,0.707363,0.37005,0.351303,0.952511,0.132761,0.372679,0.529549,0.891753,0.119182,0.457882,0.0486332,0.475465,0.233782,0.587226,0.45764,0.555104,0.458224,0.76473,0.62148,0.453837,0.101116,0.808123,0.572104,0.0692258,0.0461433,0.155781,0.700511,0.99702,0.781302,0.986356,0.838009,0.4164,0.098404,0.776699,0.0539209,0.844661,0.310938,0.692879,0.0665718,0.174224,0.523107,0.652569,0.197629,0.868607,0.152869,0.572915,0.730922,0.904815,0.982733,0.0292144,0.094713,0.736853,0.741797,0.516247,0.0731876,0.242466,0.919012,0.728112,0.205576,0.926811,0.668648,0.757517,0.625193,0.814749,0.522865,0.871209,0.863517,0.110388,0.287289,0.0503253,0.359987,0.0893998,0.659965,0.0582093,0.407337,0.739108,0.0115692,0.48821,0.00784808,0.908435,0.877976,0.843965,0.146655,0.232669,0.0264292,0.826397,0.938674,0.54624,0.396584,0.541001,0.639005,0.214346,0.0558175,0.854686,0.619461,0.657326,0.687966,0.50983,0.606731,0.801084,0.350011,0.506475,0.696067,0.399198,0.323197,0.313681,0.634473,0.83511,0.45831,0.40062,0.962583,0.895261,0.571998,0.982013,0.667155,0.424501,0.75871,0.293466,0.282742,0.0802463,0.0207824,0.695601,0.16791,0.749022,0.0844572,0.517723,0.683061,0.193414,0.558917,0.474448,0.610016,0.344238,0.738268,0.430955,0.220107,0.29138,0.70334,0.590634,0.532582,0.43365,0.838406,0.936793,0.671065,0.552206,0.979553,0.440923,0.602928,0.654444,0.237078,0.617887,0.0499637,0.735018,0.368283,0.800639,0.195009,0.329591,0.739073,0.510304,0.571369,0.875215,0.859353,0.170486,0.446243,0.827419,0.809269,0.0914791,0.0898781,0.82243,0.798922,0.195333,0.981794,0.335554,0.952502,0.554555,0.501506,0.0392802,0.980561,0.0279477,0.665717,0.412322,0.938531,0.167913,0.952571,0.112856,0.0305887,0.627764,0.992401,0.704278,0.73596,0.104734,0.643082,0.457131,0.562366,0.158386,0.900668,0.0852541,0.880234,0.612086,0.150739,0.487514,0.250703,0.579241,0.405262,0.704752,0.942385,0.387125,0.830089,0.62659,0.0947369,0.0376479,0.849401,0.56487,0.510017,0.522292,0.392886,0.0981176,0.00796258,0.972093,0.66299,0.588096,0.0705606,0.736588,0.209143,0.391568,0.0557986,0.419623,0.318112,0.929301,0.819097,0.860405,0.755116,0.94602,0.69533,0.165575,0.308681,0.0897052,0.907795,0.378868,0.134492,0.716832,0.0800282,0.893431,0.928165,0.688225,0.237564,0.459633,0.21874,0.255461,0.576107,0.633024,0.108965,0.563851,0.153932,0.987291,0.959958,0.223825,0.997862,0.0717845,0.168287,0.902305,0.862547,0.331402,0.369124,0.719133,0.487149,0.455028,0.744345,0.318067,0.985803,0.442785,0.308411,0.257035,0.158163,0.222047,0.295943,0.791403,0.756484,0.533423,0.727427,0.462978,0.564582,0.163552,0.0070588,0.63115,0.660268,0.145678,0.276591,0.463229,0.147616,0.231732,0.0328487,0.345108,0.976923,0.114141,0.0944576,0.324999,0.243374,0.382844,0.355312,0.989598,0.413142,0.139862,0.561153,0.597129,0.329486,0.0546114,0.606827,0.715432,0.838223,0.5163,0.305733,0.801937,0.793301,0.423273,0.9617,0.744761,0.430727,0.139677,0.993268,0.851776,0.837096,0.0346326,0.778079,0.0879155,0.89957,0.882571,0.736491,0.068108,0.992298,0.719496,0.125499,0.761181,0.883601,0.0148873,0.125242,0.492038,0.0719191,0.663783,0.715322,0.955491,0.273441,0.906668,0.0685025,0.517729,0.40144,0.877781,0.662308,0.439447,0.77458,0.611729,0.0249774,0.69477,0.166259,0.878564,0.62824,0.685524,0.950373,0.00842053,0.4092,0.971486,0.909997,0.740722,0.475991,0.424349,0.3995,0.675698,0.200142,0.924286,0.0616065,0.718801,0.926955,0.412064,0.545759,0.659141,0.64491,0.645655,0.239618,0.406968,0.822687,0.879657,0.140341,0.249096,0.787475,0.49964,0.134876,0.966194,0.428378,0.0628365,0.163546,0.915796,0.312193,0.786732,0.960432,0.336762,0.728442,0.595874,0.900668,0.603221,0.0475926,0.883106,0.353543,0.288229,0.393194,0.964439,0.0903226,0.544191,0.24061,0.0411435,0.00300765,0.189805,0.41162,0.75568,0.148338,0.619412,0.773381,0.298976,0.965371,0.660912,0.0277655,0.980652,0.623717,0.303315,0.390041,0.762455,0.509937,0.369992,0.449129,0.546717,0.481773,0.738381,0.940207,0.927258,0.188575,0.203727,0.423605,0.349522,0.871754,0.581099,0.180583,0.426158,0.182734,0.741037,0.134783,0.251899,0.555459,0.636811,0.412637,0.789264,0.24425,0.630325,0.281888,0.43695,0.98515,0.49771,0.582363,0.391202,0.965255,0.433634,0.332274,0.731423,0.977017,0.614892,0.795744,0.340873,0.0431631,0.344195,0.661794,0.972793,0.814714,0.40636,0.236285,0.00624192,0.771053,0.976933,0.531029,0.198159,0.821475,0.758542,0.265283,0.448907,0.89262,0.194964,0.869765,0.0647668,0.431297,0.664278,0.189395,0.102264,0.365195,0.143465,0.519358,0.340236,0.156284,0.254765,0.937746,0.231673,0.642446,0.704177,0.160648,0.433576,0.0999032,0.315834,0.382908,0.436628,0.960039,0.505189,0.269493,0.771897,0.345425,0.534769,0.225789,0.114912,0.797213,0.634268,0.762893,0.217963,0.92035,0.305487,0.0822814,0.881445,0.760994,0.75444,0.413068,0.78783,0.201617,0.498873,0.616377,0.216713,0.887809,0.655423,0.691168,0.946024,0.601807,0.107433,0.146151,0.166893,0.00062871,0.676988,0.149169,0.144673,0.837732,0.161766,0.775466,0.424736,0.612423,0.272147,0.00731546,0.64636,0.626598,0.423211,0.516639,0.811719,0.540933,0.369104,0.129671,0.891732,0.422738,0.376678,0.94483,0.0977417,|0.0736316,0.253363,0.125084,0.877875,0.440008,0.056936,0.151082,0.740651,0.0544456,0.149113,0.191727,0.896947,0.135908,0.942775,0.97931,0.807489,0.225426,0.67406,0.320538,0.0155568,0.306286,0.868342,0.139743,0.679847,0.0175692,0.936739,0.979281,0.0851209,0.0877381,0.9457,0.359588,0.662317,0.268131,0.171089,0.38429,0.602543,0.245989,0.1501,0.954984,0.934183,0.617159,0.9165,0.145036,0.1032,0.511049,0.735866,0.60412,0.566101,0.420464,0.930443,0.27327,0.498328,0.216333,0.339468,0.804059,0.98032,0.341774,0.717896,0.222803,0.359895,0.354928,0.06313,0.476605,0.35912,0.23024,0.620131,0.973057,0.551595,0.964245,0.297161,0.36483,0.126416,0.231707,0.179779,0.673822,0.83532,0.47122,0.759978,0.102865,0.374347,0.564984,0.476956,0.776071,0.939952,0.523295,0.4435,0.403899,0.460938,0.509326,0.0318719,0.918011,0.679379,0.877421,0.606739,0.179051,0.215074,0.648674,0.458139,0.782331,0.579042,0.592187,0.587763,0.32274,0.709917,0.22607,0.763372,0.270634,0.609762,0.172009,0.483393,0.131333,0.708263,0.770954,0.631305,0.361103,0.673859,0.924175,0.198122,0.630068,0.875469,0.425918,0.900124,0.660187,0.788365,0.601529,0.570094,0.64543,0.478557,0.557011,0.760774,0.0822003,0.155541,0.080716,0.212121,0.959047,0.942733,0.797056,0.447419,0.229071,0.689864,0.221052,0.785949,0.425205,0.634397,0.231076,0.116576,0.0261506,0.196445,0.784969,0.955604,0.662206,0.174728,0.273437,0.0160352,0.0405095,0.6568,0.939086,0.757643,0.575525,0.756103,0.347302,0.388597,0.200937,0.936725,0.865737,0.0894282,0.0878863,0.547818,0.0187482,0.399189,0.143361,0.328661,0.130304,0.95397,0.67019,0.201276,0.49545,0.449065,0.56498,0.0257782,0.368728,0.524487,0.129344,0.2335,0.545126,0.321101,0.835621,0.777043,0.17004,0.730638,0.354625,0.790756,0.244342,0.417628,0.375462,0.881531,0.184294,0.380818,0.475178,0.827899,0.851492,0.209968,0.358218,0.952221,0.44431,0.430377,0.989381,0.0426537,0.405007,0.164056,0.455183,0.871628,0.754958,0.758465,0.122268,0.783825,0.0619859,0.0577094,0.965967,0.546612,0.436858,0.290908,0.626949,0.908312,0.457224,0.145365,0.766852,0.782321,0.716813,0.390342,0.566745,0.362211,0.862298,0.958808,0.99414,0.0800765,0.766796,0.284242,0.623573,0.640971,0.165678,0.433702,0.368746,0.876423,0.794151,0.39581,0.947592,0.745979,0.261828,0.970495,0.780872,0.765149,0.418144,0.948623,0.161293,0.261585,0.834906,0.145951,0.547302,0.495407,0.335289,0.476514,0.591496,0.773992,0.926553,0.539731,0.644633,0.909914,0.264892,0.864756,0.777488,0.376469,0.184454,0.289652,0.515692,0.216307,0.584414,0.21483,0.392324,0.454886,0.0959655,0.619502,0.234916,0.522249,0.110475,0.335602,0.601565,0.982813,0.676978,0.338268,0.48604,0.626549,0.00544095,0.755348,0.777496,0.987213,0.239289,0.332598,0.430298,0.675769,0.421171,0.639913,0.553951,0.128264,0.277642,0.805627,0.762312,0.700478,0.121322,0.810679,0.42655,0.575751,0.273027,0.976415,0.305661,0.485192,0.287186,0.0364156,0.764279,0.511572,0.345507,0.708552,0.765969,0.492847,0.197986,0.0356765,0.86428,0.832805,0.0257535,0.201248,0.31415,0.326785,0.225049,0.522131,0.303373,0.390213,0.180565,0.629022,0.921863,0.130949,0.133844,0.40817,0.553035,0.428053,0.253255,0.441534,0.760886,0.590759,0.358313,0.495636,0.561847,0.261616,0.459158,0.14827,0.829716,0.0664406,0.494278,0.0606793,0.9033,0.612788,0.634627,0.563356,0.856528,0.857332,0.412439,0.638945,0.237244,0.019785,0.0183549,0.336585,0.44027,0.665014,0.642497,0.139133,0.131832,0.71675,0.519757,0.185057,0.79607,0.930321,0.785456,0.487523,0.366611,0.724696,0.43134,0.745286,0.258773,0.34797,0.55628,0.292424,0.422225,0.244025,0.135669,0.762317,0.0600855,0.691033,0.0935982,0.537132,0.329103,0.504287,0.519863,0.084735,0.331963,0.926688,0.147534,0.525303,0.889506,0.49444,0.114619,0.976744,0.173866,0.269606,0.318048,0.165374,0.939318,0.0194363,0.933716,0.492951,0.26731,0.728651,0.510924,0.259343,0.876169,0.579112,0.956601,0.542694,0.890955,0.300507,0.901873,0.941403,0.0453272,0.772681,0.74021,0.956784,0.177736,0.773506,0.510472,0.74429,0.239408,0.961652,0.56698,0.900213,0.979742,0.839348,0.655135,0.723957,0.431285,0.951814,0.541762,0.44865,0.646628,0.315202,0.584146,0.0971251,0.186833,0.0736248,0.375382,0.00495255,0.597814,0.509216,0.225967,0.592944,0.556836,0.00269926,0.242104,0.730696,0.595155,0.878901,0.130759,0.6347,0.764168,0.509938,0.627486,0.140407,0.335579,0.949894,0.931453,0.321145,0.611762,0.391796,0.31771,0.0169033,0.767004,0.689507,0.787666,0.248931,0.737929,0.252321,0.757883,0.736092,0.744568,0.10884,0.977178,0.129375,0.46019,0.439501,0.617559,0.194106,0.479813,0.663386,0.827537,0.519325,0.958657,0.899543,0.288584,0.560465,0.744067,0.268772,0.614187,0.0178159,0.375541,0.147121,0.416445,0.786959,0.956902,0.571166,0.0383613,0.287461,0.204378,0.200393,0.55496,0.910693,0.142559,0.310713,0.107185,0.364664,0.590998,0.887937,0.174074,0.624768,0.556639,0.769895,0.793304,0.515603,0.271379,0.288492,0.839891,0.0634168,0.517409,0.0589394,0.134816,0.675383,0.344709,0.330812,0.173431,0.425069,0.81342,0.935305,0.963225,0.995759,0.0608132,0.556413,0.853134,0.112984,0.056657,0.826543,0.970543,0.884221,0.768857,0.784169,0.747206,0.184993,0.744906,0.78396,0.661076,0.165142,0.108888,0.840084,0.795568,0.215097,0.0406303,0.107376,0.0191255,0.523045,0.0129634,0.259721,0.647515,0.951382,0.306269,0.266607,0.0913658,0.348504,0.879947,0.437163,0.882803,0.932952,0.645271,0.709953,0.791075,0.728142,0.750388,0.570989,0.390073,0.268512,0.0130718,0.00764227,0.386565,0.349604,0.0719128,0.858319,0.9696,0.593524,0.682607,0.673013,0.470908,0.560766,0.0935501,0.748804,0.419711,0.58225,0.134234,0.949441,0.833145,0.498262,0.404149,0.345564,0.449755,0.827429,0.979023,0.255988,0.3824,0.297247,0.694878,0.889057,0.171097,0.667705,0.773344,0.955171,0.193807,0.717158,0.511377,0.78098,0.0115307,0.0605149,0.319786,0.943408,0.103078,0.477174,0.256494,0.289758,0.7793,0.703914,0.496249,0.129905,0.771944,0.116515,0.463587,0.381523,0.697846,0.844817,0.675932,0.516536,0.914855,0.766768,0.48176,0.712525,0.0345439,0.45872,0.758388,0.879029,0.480002,0.178342,0.301694,0.379041,0.46617,0.279173,0.610846,0.161876,0.607139,0.722301,0.873771,0.10329,0.268587,0.558214,0.189214,0.793005,0.333301,0.999084,0.0303698,0.308826,0.973012,0.263617,0.470673,0.0663543,0.119695,0.853522,0.487236,0.0119471,0.300422,0.406944,0.528865,0.956222,0.0294805,0.154718,0.942214,0.803358,0.237355,0.0980555,0.417151,0.501883,0.738424,0.534296,0.611349,0.760973,0.649823,0.192376,0.421082,0.582936,0.865604,0.522132,0.629194,0.0323809,0.306551,0.733084,0.0309942,0.712442,0.0381812,0.896036,0.36313,0.893027,0.438496,0.0248404,0.379305,0.430701,0.663967,0.244948,0.169548,0.446463,0.688371,0.102331,0.46424,0.213431,0.887429,0.497619,0.158251,0.310787,0.371967,0.139525,0.324879,0.418461,0.797858,0.121947,0.0849743,0.292932,0.90695,0.590641,0.979451,0.932144,0.252924,0.427648,0.968581,0.841601,0.321989,0.762915,0.941902,0.367351,0.28004,0.65155,0.336593,0.404616,0.185141,0.212021,0.302634,0.479862,0.256205,0.085552,0.432314,0.569178,0.466921,0.426245,0.567749,0.298325,0.208149,0.320578,0.778513,0.682627,0.846101,0.560785,0.228364,0.412589,0.790355,0.862447,0.76461,0.575022,0.0212665,0.922571,0.773187,0.884813,0.493161,0.0630437,0.963873,0.489905,0.969406,0.00366181,0.506463,0.764415,0.422885,0.766954,0.0856354,0.317481,0.580191,0.756848,0.934688,0.857679,0.645992,0.381728,0.829936,0.696223,0.716535,0.240915,0.420048,0.694118,0.198818,0.935633,0.780231,0.276709,0.606236,0.995184,0.538798,0.829452,0.503774,0.505783,0.751044,0.725123,0.50375,0.454767,0.472769,0.905386,0.246977,0.729529,0.900205,0.0439361,0.723338,0.172537,0.368829,0.834525,0.154503,0.301868,0.680079,0.184511,0.875256,0.605327,0.137571,0.638466,0.393683,0.820029,0.36447,0.791215,0.819908,0.00342566,0.410775,0.173092,0.104145,0.497587,0.87227,0.735043,0.56073,0.649848,0.470261,0.791629,0.940202,0.0818207,0.60173,0.532746,0.597126,0.942158,0.945562,0.284984,0.0742,0.758352,0.686907,0.15443,0.785818,0.273659,0.245342,0.237777,0.869098,0.26484,0.794501,0.502638,0.759419,0.79135,0.998505,0.538256,0.596382,0.927141,0.73313,0.973684,0.315686,0.848791,0.92947,0.762898,0.0588753,0.109035,0.892149,0.843945,0.0985832,0.229703,0.385106,0.866091,0.856758,0.187698,0.803225,0.27038,0.039368,0.94452,0.495845,0.742947,0.665012,0.882136,0.411091,0.998754,0.213931,0.239683,0.770906,0.858282,0.457169,0.710968,0.39706,0.292024,0.874516,0.559917,0.559394,0.247394,0.186589,0.247861,0.188008,0.080385,0.944093,0.352885,0.391657,0.410441,0.305565,0.711588,0.942861,0.659851,0.282304,0.72635,0.294555,0.780122,0.993245,0.203088,0.835766,0.100789,0.437181,0.952948,0.422729,0.433798,0.443841,0.0666575,0.262346,0.422343,0.820908,0.820797,0.336645,0.468305,0.0283773,0.113322,0.998397,0.352276,0.807565,0.844492,0.779864,0.439435,0.610629,0.120514,0.331882,0.870372,0.325387,0.828831,0.245478,0.118823,0.978196,0.0568816,0.158794,0.0840676,0.468722,0.565324,0.212789,0.451705,0.227662,0.226941,0.703778,0.70009,0.905195,0.171147,0.90059,0.73256,0.0543543,0.632792,0.0348966,0.150294,0.436793,0.339725,0.228386,0.53392,0.956067,0.193471,0.833588,0.623535,|0.142181,0.857633,0.227169,0.545145,0.117101,0.712023,0.538811,0.780588,0.810501,0.10344,0.700867,0.429937,0.200775,0.199091,0.708891,0.792892,0.150006,0.982618,0.612595,0.0708719,0.492079,0.96533,0.474846,0.759154,0.632598,0.206293,0.0788516,0.828259,0.789345,0.351874,0.241353,0.617612,0.885772,0.355977,0.99226,0.627932,0.000518322,0.958767,0.900457,0.891847,0.929343,0.501252,0.291405,0.486607,0.193312,0.0833628,0.504772,0.863144,0.691007,0.35483,0.847195,0.47394,0.463725,0.786505,0.0930253,0.517878,0.701822,0.323744,0.622149,0.498942,0.958973,0.696305,0.205981,0.377173,0.049364,0.321662,0.0181825,0.682789,0.815888,0.419182,0.610451,0.311427,0.183134,0.532813,0.950417,0.676332,0.114913,0.1917,0.662397,0.784128,0.381883,0.197901,0.325493,0.270773,0.262233,0.974891,0.925569,0.559343,0.043172,0.510306,0.335122,0.474798,0.226973,0.995359,0.954317,0.54508,0.362042,0.972441,0.542019,0.609904,0.910577,0.568753,0.495518,0.710635,0.63963,0.207282,0.475424,0.657253,0.957381,0.120553,0.975693,0.516544,0.26958,0.740925,0.744447,0.693886,0.654092,0.744087,0.74024,0.373323,0.495799,0.485747,0.336658,0.269969,0.914036,0.820037,0.585132,0.103691,0.775857,0.277489,0.457025,0.836582,0.0989412,0.321261,0.481572,0.933366,0.259022,0.349299,0.508166,0.93499,0.467627,0.246552,0.752054,0.45492,0.1438,0.934597,0.658286,0.0142387,0.337907,0.475661,0.622954,0.123424,0.684579,0.565174,0.77187,0.146821,0.218312,0.893403,0.732459,0.71835,0.242562,0.447496,0.0198481,0.274675,0.323911,0.727182,0.226833,0.162633,0.48134,0.442807,0.764375,0.315673,0.146671,0.54782,0.84156,0.642282,0.721277,0.971876,0.0648232,0.479041,0.963744,0.146183,0.61219,0.654496,0.359331,0.175243,0.630827,0.333473,0.420117,0.371551,0.627115,0.695657,0.107218,0.527575,0.642911,0.0127648,0.70747,0.11811,0.153447,0.407134,0.815374,0.00970501,0.871111,0.126583,0.579637,0.171919,0.151344,0.634473,0.816916,0.584462,0.967233,0.744837,0.374956,0.395038,0.0746593,0.821147,0.814103,0.39937,0.909685,0.909754,0.617065,0.809712,0.0462074,0.621146,0.528816,0.899469,0.00777024,0.983537,0.72885,0.306337,0.244526,0.657429,0.808791,0.860294,0.387172,0.650848,0.222058,0.29511,0.105551,0.177779,0.826453,0.298225,0.752763,0.732765,0.20853,0.349453,0.934165,0.934468,0.983932,0.0356387,0.0318839,0.208009,0.101466,0.281651,0.419457,0.0839816,0.257477,0.908475,0.392479,0.587685,0.185256,0.305754,0.896398,0.184408,0.650781,0.684747,0.57135,0.69061,0.707154,0.195723,0.97443,0.82022,0.554717,0.512501,0.398801,0.104328,0.452023,0.61568,0.541803,0.0831329,0.265721,0.874802,0.741716,0.398241,0.674972,0.652972,0.959033,0.576044,0.383734,0.225756,0.498914,0.841712,0.868073,0.0762526,0.0335744,0.14583,0.452682,0.00610763,0.475303,0.821812,0.92925,0.136722,0.985809,0.824869,0.170802,0.912099,0.150817,0.910903,0.760087,0.32785,0.0355251,0.762234,0.192777,0.966929,0.187132,0.978322,0.683443,0.323347,0.871478,0.582929,0.622724,0.725077,0.934669,0.265095,0.376306,0.0874135,0.605386,0.524053,0.921327,0.999549,0.870123,0.976217,0.704542,0.178861,0.330538,0.886002,0.235862,0.560577,0.783887,0.572889,0.0164591,0.57043,0.0603601,0.79196,0.841903,0.711939,0.98865,0.670612,0.949424,0.38859,0.0558335,0.876094,0.956065,0.885332,0.592505,0.840802,0.262043,0.704914,0.658321,0.282476,0.563039,0.0671732,0.419536,0.702562,0.366136,0.588979,0.402464,0.798039,0.136465,0.854708,0.542089,0.599925,0.455506,0.909773,0.834279,0.0924346,0.062205,0.236742,0.261735,0.555674,0.569398,0.0589601,0.994136,0.831341,0.986763,0.708589,0.454509,0.322373,0.0148754,0.508743,0.204598,0.633575,0.18792,0.559579,0.93458,0.608354,0.148696,0.447392,0.515043,0.126123,0.802356,0.515017,0.568419,0.4726,0.837413,0.901523,0.0136046,0.13133,0.100679,0.506725,0.886465,0.0813759,0.127275,0.505325,0.954434,0.84038,0.097056,0.969225,0.171326,0.970822,0.561652,0.130436,0.106079,0.656527,0.957604,0.599924,0.401149,0.031984,0.349766,0.864683,0.0719512,0.853741,0.906297,0.508206,0.997783,0.465663,0.0970885,0.707019,0.65763,0.71287,0.582993,0.470477,0.772602,0.314253,0.151646,0.0514135,0.0928979,0.932303,0.621498,0.904888,0.693759,0.523059,0.313415,0.380263,0.354906,0.336129,0.365705,0.658883,0.367491,0.0425605,0.398966,0.889744,0.727075,0.883479,0.419342,0.620056,0.488116,0.560365,0.0238613,0.675611,0.346414,0.473284,0.485904,0.534077,0.805512,0.0191042,0.203978,0.408175,0.490567,0.190431,0.107532,0.155,0.157033,0.0485353,0.536361,0.781444,0.434862,0.763445,0.577028,0.77645,0.982606,0.320588,0.975822,0.742134,0.0964654,0.720791,0.697461,0.0907556,0.993952,0.216978,0.953849,0.967432,0.356815,0.631106,0.808275,0.351609,0.777439,0.286886,0.0849457,0.199873,0.883122,0.149531,0.600029,0.83989,0.81594,0.0236902,0.804906,0.968559,0.0334451,0.891843,0.740617,0.747277,0.448131,0.411339,0.21897,0.934027,0.527785,0.624524,0.601122,0.40269,0.80436,0.0387456,0.946595,0.262069,0.268989,0.795623,0.0550812,0.440269,0.177031,0.661224,0.208908,0.774539,0.842348,0.738016,0.819955,0.177491,0.693344,0.298448,0.807225,0.860095,0.461866,0.710105,0.115493,0.859757,0.490902,0.794272,0.513138,0.0697125,0.0883226,0.0531494,0.595303,0.973086,0.595675,0.502349,0.337988,0.86302,0.854469,0.566498,0.915947,0.249182,0.7156,0.0791554,0.10418,0.174433,0.174829,0.264246,0.423696,0.394599,0.976518,0.230241,0.260949,0.166395,0.919275,0.846083,0.695196,0.898209,0.120042,0.0183339,0.582531,0.965183,0.698031,0.991205,0.663695,0.469326,0.708462,0.19906,0.852078,0.373041,0.458239,0.932702,0.720976,0.932098,0.676486,0.998881,0.0110545,0.386814,0.780367,0.655965,0.53091,0.708068,0.793793,0.914887,0.710738,0.992797,0.149523,0.0624399,0.0528843,0.534152,0.941017,0.981611,0.658999,0.8165,0.387966,0.320738,0.00767303,0.617654,0.610787,0.825061,0.345086,0.0449601,0.505884,0.155741,0.949091,0.47512,0.0838304,0.998665,0.905857,0.293975,0.365006,0.858709,0.150869,0.257723,0.672078,0.452501,0.927732,0.730649,0.305467,0.124166,0.198322,0.452556,0.872713,0.336718,0.986466,0.211576,0.993502,0.784824,0.0234563,0.923613,0.303491,0.502595,0.644988,0.90593,0.0525569,0.16658,0.403587,0.635945,0.262752,0.595171,0.120299,0.371148,0.233749,0.31037,0.742287,0.0107999,0.622898,0.722441,0.809328,0.496532,0.189646,0.510899,0.843925,0.745282,0.940602,0.277522,0.372145,0.550268,0.566892,0.218016,0.923537,0.485051,0.199114,0.489085,0.350306,0.497966,0.00174195,0.286537,0.47188,0.619145,0.535207,0.451875,0.604832,0.487903,0.385986,0.439764,0.645556,0.81414,0.824375,0.224402,0.343867,0.264804,0.165636,0.109668,0.273071,0.701003,0.269714,0.376097,0.443711,0.863481,0.449838,0.746465,0.565421,0.587829,0.81445,0.877834,0.641465,0.758627,0.846753,0.647577,0.337077,0.184386,0.0292541,0.869773,0.689473,0.432087,0.483509,0.308424,0.659995,0.0403464,0.222238,0.544736,0.362939,0.115618,0.0480307,0.0398449,0.0818335,0.313949,0.26728,0.846809,0.18751,0.0582558,0.0659565,0.781882,0.141366,0.238704,0.906768,0.0278054,0.96634,0.0906365,0.445218,0.293251,0.476998,0.892276,0.0608403,0.0186547,0.458415,0.717624,0.342257,0.340563,0.951032,0.30465,0.849809,0.749851,0.654914,0.690316,0.366266,0.16246,0.0986614,0.296246,0.282247,0.378774,0.861306,0.642591,0.0728515,0.108137,0.582324,0.616518,0.401582,0.587566,0.0330682,0.129142,0.543445,0.498232,0.407482,0.53305,0.236436,0.411386,0.704707,0.0944458,0.82218,0.508374,0.413424,0.895989,0.865749,0.0396633,0.951834,0.238443,0.176393,0.935547,0.828624,0.0957452,0.919408,0.465838,0.886822,0.445438,0.753532,0.427791,0.337586,0.0128415,0.525001,0.799965,0.968928,0.940681,0.0972781,0.946798,0.780476,0.665486,0.219735,0.390086,0.743385,0.685052,0.282312,0.331439,0.975717,0.454078,0.916155,0.635134,0.816624,0.00968719,0.676861,0.734793,0.540636,0.127653,0.846458,0.49973,0.181621,0.351334,0.79641,0.660825,0.400919,0.0930085,0.0462448,0.61766,0.642574,0.582697,0.720138,0.502505,0.231225,0.224407,0.68263,0.609656,0.854906,0.86105,0.26821,0.39487,0.645696,0.608489,0.58872,0.280106,0.0694364,0.571714,0.476407,0.490011,0.461255,0.833438,0.56082,0.800254,0.665745,0.474887,0.564037,0.448613,0.571631,0.548214,0.744318,0.259371,0.720676,0.722782,0.0573528,0.510066,0.200975,0.170717,0.528737,0.190242,0.784999,0.271062,0.0571703,0.270501,0.679775,0.281171,0.786689,0.225619,0.172164,0.922363,0.413237,0.831735,0.668057,0.175272,0.169201,0.0113009,0.843436,0.261504,0.663289,0.441261,0.967628,0.485073,0.13337,0.114008,0.93926,0.45084,0.114402,0.113625,0.23899,0.54356,0.595771,0.866527,0.596251,0.0801483,0.125517,0.00952256,0.0367179,0.108959,0.367839,0.591789,0.719128,0.576053,0.640666,0.480607,0.808034,0.218721,0.234618,0.667165,0.925774,0.0185192,0.841738,0.41649,0.823881,0.555846,0.165075,0.348803,0.179929,0.657686,0.852858,0.930193,0.78721,0.666972,0.709666,0.143184,0.737742,0.776288,0.078522,0.810595,0.583416,0.708961,0.00983596,0.277737,0.0457686,0.865943,0.51521,0.864368,0.717691,0.778577,0.569492,0.592429,0.14354,0.867611,0.905622,0.683011,0.770059,0.393001,0.487152,0.456048,0.0351245,0.420032,0.322694,0.754387,0.710415,0.687625,0.759243,0.552602,0.163599,0.565681,0.996049,0.556371,0.59611,0.300054,0.160833,0.925959,0.128242,0.228757,0.612861,0.215941,|0.918963,0.676839,0.731395,0.70268,0.835858,0.53783,0.709258,0.0988247,0.708939,0.859697,0.319585,0.145723,0.987677,0.217319,0.0150137,0.670119,0.13667,0.126969,0.611863,0.591799,0.60652,0.232069,0.191247,0.432832,0.617344,0.395469,0.988524,0.0511675,0.729767,0.703041,0.526996,0.479899,0.732937,0.965535,0.922003,0.158642,0.56596,0.358582,0.975922,0.385399,0.400617,0.670785,0.216947,0.609665,0.738145,0.733229,0.657788,0.941617,0.48105,0.174606,0.462678,0.833955,0.946759,0.726677,0.23374,0.276004,0.804457,0.400978,0.219912,0.769908,0.206014,0.21469,0.320755,0.602604,0.247368,0.958117,0.594637,0.828003,0.679339,0.742955,0.677911,0.330384,0.200696,0.133502,0.434395,0.371424,0.0100188,0.586989,0.321049,0.489926,0.569805,0.193714,0.111696,0.899639,0.304684,0.757253,0.142245,0.11243,0.979562,0.672173,0.56553,0.354096,0.909782,0.840217,0.528051,0.320243,0.589158,0.345147,0.728512,0.24056,0.908118,0.887962,0.263609,0.332334,0.526385,0.280287,0.704558,0.42188,0.625849,0.851588,0.394398,0.917563,0.933055,0.663009,0.407575,0.504823,0.45225,0.622513,0.627828,0.192993,0.409108,0.859745,0.0351076,0.298663,0.942456,0.304767,0.175185,0.665871,0.446512,0.494704,0.64562,0.378979,0.204407,0.0253354,0.528598,0.434534,0.0346168,0.552142,0.218135,0.35641,0.305092,0.323562,0.466153,0.635371,0.603419,0.909243,0.974893,0.960795,0.829551,0.000964284,0.828157,0.408309,0.478868,0.92365,0.12899,0.0869944,0.00147742,0.212628,0.894786,0.36373,0.253141,0.258143,0.400188,0.601069,0.326302,0.155835,0.101707,0.417758,0.918776,0.90329,0.72699,0.898086,0.815697,0.160722,0.101999,0.611557,0.175768,0.996769,0.394546,0.913864,0.0760247,0.486068,0.588257,0.247084,0.823556,0.514226,0.150092,0.791704,0.849482,0.530191,0.709746,0.742266,0.456967,0.164918,0.116628,0.904185,0.225096,0.71303,0.752264,0.249068,0.524098,0.12475,0.464765,0.287926,0.295517,0.0507097,0.656767,0.954846,0.89108,0.924972,0.339924,0.48386,0.0308581,0.973405,0.732912,0.5203,0.515506,0.710836,0.560214,0.0276527,0.00369793,0.443572,0.76035,0.701838,0.223214,0.362352,0.570296,0.195832,0.70964,0.464612,0.917754,0.422766,0.613732,0.649768,0.471936,0.626559,0.413747,0.629587,0.437032,0.283242,0.831747,0.600026,0.373914,0.683109,0.0545993,0.106096,0.812175,0.594523,0.64492,0.76411,0.853957,0.973868,0.469953,0.700397,0.219632,0.0236307,0.651754,0.662879,0.593349,0.341004,0.0385492,0.920347,0.588641,0.623624,0.459181,0.418058,0.587793,0.0645136,0.506577,0.801232,0.528879,0.809802,0.212789,0.541285,0.815108,0.0656255,0.168406,0.279903,0.256632,0.599015,0.19916,0.166833,0.779528,0.694293,0.573661,0.959068,0.591732,0.0754172,0.845952,0.325421,0.361456,0.148622,0.360184,0.645522,0.544642,0.672442,0.897012,0.19215,0.808617,0.248001,0.118675,0.872995,0.278043,0.0685963,0.410805,0.170585,0.856649,0.596272,0.0659104,0.282266,0.677158,0.662429,0.857818,0.0807652,0.482475,0.912699,0.228569,0.444981,0.757964,0.408679,0.175768,0.843422,0.315369,0.225926,0.304082,0.764112,0.700346,0.0458429,0.209235,0.885886,0.625939,0.115623,0.920011,0.414953,0.425441,0.666403,0.825214,0.141201,0.574914,0.165724,0.96303,0.516605,0.0213166,0.649246,0.441557,0.998629,0.357936,0.357097,0.981007,0.863038,0.177702,0.840592,0.879308,0.84564,0.997337,0.833473,0.452018,0.9242,0.126453,0.377609,0.973251,0.9755,0.833097,0.986147,0.160444,0.206363,0.609119,0.762137,0.778875,0.577858,0.144394,0.798628,0.678904,0.157719,0.510089,0.788005,0.181554,0.698725,0.518151,0.86003,0.404181,0.889902,0.0407726,0.729972,0.235877,0.230621,0.0746558,0.220858,0.401934,0.242641,0.34545,0.440931,0.224744,0.868308,0.516851,0.954186,0.580758,0.874496,0.34139,0.571608,0.902355,0.104258,0.0671399,0.0292155,0.490405,0.728671,0.226605,0.983474,0.09643,0.859473,0.629693,0.650875,0.282105,0.222889,0.0302037,0.165583,0.556565,0.587987,0.326759,0.164081,0.156071,0.0450796,0.0710266,0.145813,0.0729343,0.540652,0.529009,0.92245,0.774728,0.84781,0.152163,0.946141,0.492094,0.282363,0.473565,0.54317,0.0898324,0.214622,0.0853487,0.799958,0.744309,0.859687,0.113208,0.620154,0.0236293,0.296162,0.505472,0.164602,0.66322,0.780162,0.760662,0.890566,0.166788,0.38851,0.721524,0.543906,0.955876,0.644997,0.354924,0.273162,0.766686,0.0966558,0.864681,0.162845,0.229409,0.74221,0.174431,0.166773,0.0919815,0.0610664,0.828226,0.584295,0.50242,0.897122,0.157688,0.142005,0.992562,0.984619,0.514449,0.499625,0.428065,0.532836,0.428123,0.67135,0.647367,0.296089,0.342857,0.596625,0.830108,0.708957,0.117373,0.571744,0.944909,0.475225,0.532925,0.0979162,0.721249,0.575164,0.509127,0.209609,0.371545,0.947901,0.308275,0.187344,0.684025,0.245815,0.56966,0.189772,0.167213,0.182281,0.669052,0.918074,0.888422,0.160764,0.919579,0.0670502,0.372839,0.265705,0.00648332,0.558555,0.0849947,0.63402,0.0650634,0.870718,0.34714,0.275472,0.620126,0.02029,0.850356,0.237218,0.569279,0.586622,0.450945,0.58823,0.330222,0.744266,0.337467,0.262056,0.696804,0.649635,0.640858,0.549306,0.431069,0.949941,0.518499,0.618539,0.675419,0.560387,0.644857,0.0103121,0.840027,0.85186,0.0707285,0.273009,0.214563,0.756425,0.469437,0.0378156,0.380411,0.0495662,0.311898,0.98226,0.706107,0.614184,0.653565,0.106726,0.706688,0.833005,0.983029,0.409832,0.788899,0.398578,0.477891,0.183064,0.533868,0.872027,0.385374,0.836562,0.595768,0.334615,0.0839574,0.745493,0.878436,0.371968,0.0397475,0.832675,0.157947,0.608537,0.133686,0.910048,0.0124908,0.243397,0.0368586,0.4053,0.478337,0.790477,0.0864104,0.511391,0.97499,0.945579,0.000133336,0.920465,0.967484,0.699354,0.2557,0.527226,0.862037,0.592696,0.319856,0.737645,0.883403,0.574105,0.158614,0.585922,0.050754,0.320512,0.106647,0.134641,0.287847,0.0807584,0.172981,0.0303669,0.87794,0.125614,0.509555,0.416745,0.977207,0.971766,0.359203,0.607574,0.425877,0.253088,0.109308,0.0051648,0.0218581,0.85557,0.230985,0.339723,0.0457698,0.966617,0.462402,0.51053,0.0940676,0.687119,0.700016,0.824569,0.401044,0.595804,0.675129,0.623281,0.558236,0.877635,0.883252,0.747285,0.0586724,0.934557,0.440803,0.03049,0.613606,0.921656,0.267518,0.911568,0.377473,0.0285892,0.181516,0.80945,0.410025,0.392879,0.471611,0.0438494,0.506412,0.79,0.68008,0.324832,0.00190079,0.922457,0.145059,0.3907,0.030103,0.468859,0.209026,0.798482,0.973902,0.724599,0.625772,0.332602,0.150467,0.161542,0.554153,0.31288,0.153767,0.904875,0.792008,0.356901,0.801581,0.781889,0.812483,0.881847,0.393924,0.323097,0.420683,0.155854,0.951218,0.303041,0.854879,0.0995379,0.403014,0.40205,0.51111,0.798166,0.659252,0.17867,0.532267,0.630893,0.697302,0.730997,0.025963,0.146716,0.578855,0.0566467,0.586517,0.475479,0.0109566,0.54481,0.154646,0.21696,0.699548,0.13855,0.385858,0.719285,0.905506,0.648961,0.805233,0.11118,0.400193,0.859311,0.804141,0.0386911,0.891428,0.280712,0.768915,0.58525,0.558282,0.350301,0.198441,0.430074,0.199663,0.456545,0.392072,0.935849,0.170163,0.15543,0.430099,0.820847,0.538085,0.235269,0.283199,0.714252,0.642198,0.436221,0.474442,0.823028,0.785245,0.0976298,0.769109,0.313476,0.777655,0.230626,0.12203,0.940247,0.408733,0.0624496,0.494243,0.793133,0.189125,0.753395,0.345684,0.0482934,0.282397,0.637244,0.602936,0.0179705,0.492088,0.268777,0.922148,0.0367042,0.125498,0.102253,0.104999,0.90613,0.793968,0.268269,0.372536,0.346907,0.675443,0.231736,0.472343,0.0325277,0.747757,0.673614,0.876695,0.919376,0.717084,0.281321,0.983779,0.560774,0.246043,0.151572,0.0079096,0.0280007,0.204973,0.867761,0.0686646,0.727991,0.0410981,0.582795,0.228934,0.427436,0.614392,0.868561,0.151199,0.109564,0.217368,0.022145,0.350417,0.55908,0.169585,0.618266,0.283333,0.335971,0.322184,0.333651,0.0788346,0.406242,0.144598,0.62548,0.690954,0.469297,0.173101,0.919862,0.87354,0.00368273,0.124049,0.787865,0.924967,0.566503,0.566964,0.625688,0.701071,0.457161,0.67813,0.910745,0.167415,0.664278,0.752062,0.790703,0.853166,0.240483,0.784272,0.284842,0.0340211,0.852653,0.403238,0.446623,0.316273,0.610657,0.885012,0.33779,0.941381,0.578956,0.291449,0.9146,0.755973,0.752549,0.992118,0.926077,0.644727,0.0710909,0.183833,0.720499,0.21229,0.558451,0.0797337,0.398261,0.236854,0.0329116,0.195181,0.651418,0.626204,0.325393,0.689875,0.277469,0.943802,0.261681,0.102597,0.339665,0.417402,0.0761538,0.379837,0.85741,0.680979,0.0809423,0.592999,0.655911,0.30427,0.076092,0.42955,0.732595,0.0768373,0.144447,0.34973,0.255091,0.247073,0.190354,0.469099,0.395695,0.0160107,0.513154,0.741432,0.864601,0.206828,0.914647,0.815657,0.73015,0.704361,0.436383,0.396694,0.688456,0.431805,0.0971107,0.320536,0.0458881,0.660281,0.638055,0.854381,0.505795,0.920884,0.729913,0.156806,0.85454,0.477458,0.167053,0.477008,0.784395,0.883517,0.695494,0.456194,0.0573221,0.775729,0.155804,0.874552,0.430136,0.672915,0.576436,0.191224,0.115404,0.502686,0.0637655,0.998692,0.481533,0.82118,0.54256,0.587129,0.217348,0.683197,0.654149,0.190814,0.489199,0.923636,0.723786,0.296226,0.861081,0.214194,0.995066,0.390459,0.658198,0.977648,0.964774,0.234392,0.491634,0.969626,0.851426,0.945976,0.2874,0.442435,0.40706,0.774347,0.0362856,0.252662,0.468456,0.299414,0.970637,0.287258,0.687074,0.979177,0.00816512,0.708634,0.84471,0.75924,0.515784,|0.553392,0.337709,0.447838,0.583077,0.242375,0.41999,0.693095,0.767681,0.528385,0.221346,0.864191,0.162855,0.735472,0.871942,0.15066,0.222425,0.305345,0.387428,0.861149,0.54568,0.307523,0.996795,0.333191,0.350401,0.477468,0.0590317,0.201578,0.580834,0.854894,0.00107741,0.397345,0.258268,0.12025,0.585567,0.309317,0.451724,0.637811,0.170731,0.957685,0.608153,0.392699,0.590036,0.506233,0.697821,0.319288,0.93428,0.137125,0.822777,0.899654,0.939395,0.757583,0.887155,0.623065,0.858402,0.376738,0.583767,0.648316,0.103348,0.821062,0.692795,0.993704,0.356473,0.692693,0.70638,0.400455,0.0152586,0.392855,0.247694,0.479177,0.0326434,0.192914,0.314808,0.922615,0.308802,0.53704,0.243483,0.664932,0.457326,0.251485,0.536949,0.96333,0.805144,0.329869,0.0811933,0.199537,0.85872,0.636482,0.504311,0.0472075,0.44002,0.328941,0.864449,0.282625,0.947853,0.297395,0.521388,0.917055,0.856744,0.417328,0.47068,0.218142,0.524837,0.195762,0.714378,0.109481,0.354508,0.982824,0.00143325,0.424895,0.631508,0.470593,0.438618,0.996228,0.35894,0.807765,0.519278,0.0156386,0.727977,0.97824,0.828529,0.616413,0.350534,0.341616,0.486052,0.875335,0.123267,0.358668,0.480382,0.26284,0.807679,0.779679,0.367168,0.964826,0.250686,0.598533,0.547999,0.536964,0.0989253,0.858714,0.748898,0.029201,0.27773,0.0427423,0.105272,0.169481,0.924409,0.503732,0.0564631,0.178531,0.451479,0.973008,0.3938,0.348374,0.281645,0.507738,0.238643,0.143836,0.768047,0.342032,0.98013,0.0973349,0.156313,0.551688,0.766192,0.173241,0.639407,0.252161,0.940601,0.625899,0.474578,0.587162,0.782241,0.135308,0.68689,0.496376,0.359329,0.602192,0.131819,0.081834,0.985995,0.440443,0.909815,0.495757,0.598664,0.501192,0.613583,0.0395357,0.460605,0.316558,0.920965,0.904578,0.400921,0.109484,0.39351,0.109468,0.752256,0.456885,0.0118254,0.88961,0.276237,0.648527,0.516381,0.115769,0.343506,0.788496,0.963262,0.219508,0.412866,0.715625,0.589619,0.386705,0.531127,0.156522,0.514894,0.923917,0.63853,0.916562,0.698075,0.258873,0.687504,0.797134,0.0479621,0.537949,0.719102,0.677062,0.644615,0.924455,0.623839,0.634316,0.369617,0.36988,0.739471,0.898835,0.84163,0.288968,0.895845,0.89599,0.845841,0.520185,0.107681,0.272155,0.912857,0.979228,0.228018,0.385517,0.782511,0.323153,0.851837,0.467551,0.500148,0.951903,0.578993,0.988798,0.913102,0.371855,0.383395,0.212866,0.32368,0.212643,0.109755,0.200877,0.566135,0.566793,0.184839,0.824059,0.994822,0.0886557,0.765333,0.747026,0.759858,0.583953,0.763601,0.563565,0.94749,0.0760478,0.670789,0.283526,0.061537,0.48551,0.636537,0.52267,0.209203,0.0204337,0.776934,0.760384,0.289016,0.90399,0.963949,0.433951,0.719633,0.797542,0.241883,0.677706,0.364335,0.450445,0.933229,0.661575,0.800286,0.519275,0.354512,0.408191,0.98425,0.464746,0.370586,0.712844,0.0555697,0.329123,0.176519,0.445234,0.80402,0.554682,0.484566,0.171207,0.389266,0.858521,0.566517,0.500301,0.00342983,0.666768,0.783998,0.366614,0.668077,0.365683,0.565244,0.438727,0.572253,0.646795,0.335358,0.145932,0.920951,0.0245655,0.372494,0.979344,0.937475,0.261154,0.867167,0.253467,0.347866,0.939056,0.794178,0.511939,0.151367,0.658476,0.884696,0.657921,0.54017,0.245215,0.70453,0.0133991,0.835956,0.175606,0.449805,0.866265,0.73702,0.848312,0.8001,0.454728,0.021398,0.35418,0.631261,0.687477,0.763773,0.83368,0.335273,0.48731,0.70977,0.529776,0.468886,0.333077,0.662534,0.554113,0.723372,0.902147,0.739434,0.744217,0.616031,0.501145,0.724718,0.835894,0.495832,0.600434,0.825058,0.974763,0.522229,0.827179,0.257309,0.97344,0.489231,0.536439,0.313336,0.623923,0.757415,0.991046,0.717196,0.819785,0.909909,0.838332,0.561479,0.580709,0.496039,0.00547791,0.353936,0.778933,0.223948,0.843118,0.846699,0.37663,0.719645,0.308129,0.20948,0.859139,0.47743,0.617926,0.279919,0.385436,0.811441,0.58328,0.77089,0.466571,0.718025,0.732909,0.970652,0.3251,0.0535569,0.686599,0.32022,0.384114,0.231401,0.631877,0.629538,0.449613,0.610025,0.52536,0.630373,0.650964,0.300225,0.666918,0.634926,0.832468,0.332388,0.0846657,0.832786,0.30539,0.349876,0.203118,0.265598,0.975681,0.24815,0.582065,0.036074,0.362756,0.657782,0.945146,0.199809,0.837246,0.588373,0.684735,0.695643,0.456027,0.442818,0.716233,0.0111925,0.838619,0.11343,0.8719,0.267113,0.140935,0.785184,0.19632,0.922392,0.265967,0.735359,0.649447,0.299295,0.859883,0.722399,0.650121,0.0553823,0.331316,0.725975,0.165181,0.741511,0.104341,0.161779,0.252812,0.0367744,0.94463,0.0918618,0.582188,0.733886,0.400004,0.721353,0.113394,0.77443,0.457745,0.105004,0.267562,0.88282,0.558851,0.346228,0.780506,0.160578,0.642875,0.709271,0.0706043,0.538333,0.188008,0.823932,0.687638,0.0162895,0.971864,0.591692,0.717502,0.610427,0.682317,0.698232,0.335351,0.247696,0.1214,0.803673,0.0636707,0.204643,0.402983,0.522348,0.528867,0.951683,0.382475,0.837402,0.0405278,0.16484,0.232794,0.992217,0.890184,0.786985,0.833832,0.439975,0.86492,0.899873,0.128534,0.803012,0.0166876,0.954914,0.790116,0.617689,0.228413,0.204018,0.70475,0.591428,0.405476,0.153023,0.643221,0.568593,0.703827,0.111026,0.143103,0.929736,0.888113,0.711759,0.292401,0.228279,0.264511,0.307265,0.326446,0.277607,0.327083,0.152072,0.0448341,0.884775,0.636525,0.123288,0.0945399,0.536443,0.631786,0.605055,0.439391,0.729018,0.0952027,0.378355,0.897943,0.814979,0.692108,0.00197649,0.936863,0.587396,0.403033,0.252764,0.0207219,0.164154,0.60387,0.852078,0.684538,0.692906,0.163415,0.315311,0.492398,0.066772,0.370453,0.431812,0.963499,0.534824,0.77011,0.954714,0.819595,0.917303,0.629892,0.505109,0.0066061,0.337139,0.174009,0.271229,0.699387,0.176636,0.926532,0.944415,0.435146,0.720884,0.303855,0.709659,0.144494,0.956652,0.171266,0.973996,0.0958974,0.104752,0.702286,0.900977,0.695642,0.384263,0.0583478,0.185711,0.789162,0.844852,0.62343,0.23634,0.033676,0.597652,0.50009,0.677949,0.498159,0.545558,0.0488946,0.992524,0.444911,0.380752,0.777538,0.238637,0.401095,0.19917,0.224827,0.00243074,0.22501,0.500169,0.179433,0.81508,0.0489752,0.707857,0.982433,0.45459,0.983995,0.802848,0.871185,0.0358906,0.0978687,0.1945,0.886268,0.451423,0.840856,0.0400055,0.570588,0.718834,0.390913,0.340876,0.586492,0.0199556,0.26427,0.924507,0.393501,0.413543,0.881883,0.0984879,0.126586,0.373876,0.837612,0.78125,0.528548,0.617904,0.950372,0.790171,0.915335,0.12646,0.124999,0.844984,0.532153,0.664946,0.425941,0.82227,0.742892,0.138547,0.245552,0.129571,0.275865,0.243066,0.178578,0.818527,0.33248,0.367253,0.387507,0.897467,0.485248,0.995052,0.479154,0.192107,0.513016,0.678541,0.116882,0.549087,0.534973,0.552864,0.982275,0.466882,0.197359,0.700029,0.467479,0.965138,0.736766,0.730284,0.974966,0.351104,0.334493,0.292321,0.374667,0.59253,0.598512,0.0781818,0.790248,0.878996,0.391374,0.217072,0.393981,0.848826,0.0828488,0.00965446,0.649587,0.554691,0.0225244,0.454858,0.273178,0.57732,0.487125,0.317309,0.00183028,0.869595,0.983718,0.326669,0.87251,0.173858,0.854185,0.294176,0.00696033,0.73343,0.761738,0.0389959,0.850626,0.949463,0.793237,0.704695,0.719879,0.994503,0.623019,0.523906,0.534466,0.641108,0.68831,0.824924,0.0691605,0.730149,0.322583,0.229754,0.68911,0.321771,0.250063,0.27224,0.154916,0.943145,0.332904,0.482003,0.826373,0.810274,0.548363,0.0243104,0.812902,0.164277,0.230834,0.906344,0.909187,0.687729,0.7353,0.36811,0.608264,0.534856,0.748092,0.794414,0.431402,0.0016045,0.717002,0.657209,0.360133,0.165796,0.569898,0.57398,0.402907,0.309628,0.605835,0.701509,0.535656,0.0146745,0.864533,0.213267,0.701464,0.120849,0.566728,0.36556,0.242962,0.315025,0.868373,0.0894173,0.856968,0.57815,0.900722,0.788596,0.873223,0.302211,0.125948,0.688345,0.632352,0.836079,0.433386,0.555978,0.88473,0.181524,0.144671,0.133774,0.336444,0.0033527,0.244638,0.0122705,0.879671,0.844625,0.33183,0.721249,0.103563,0.423051,0.184011,0.152607,0.708895,0.751329,0.459641,0.255475,0.427255,0.861372,0.331456,0.846781,0.149793,0.155017,0.380484,0.305903,0.563551,0.0598158,0.14603,0.152496,0.483205,0.931466,0.618721,0.580577,0.968983,0.90444,0.813765,0.187253,0.684159,0.275184,0.773105,0.675801,0.394928,0.555412,0.864294,0.642953,0.406091,0.429111,0.750059,0.1872,0.593402,0.352822,0.0869547,0.0502803,0.439512,0.994951,0.239812,0.666748,0.558469,0.105042,0.964934,0.513568,0.726289,0.754347,0.602644,0.674975,0.621191,0.112791,0.288693,0.159823,0.514573,0.917124,0.817676,0.8773,0.477224,0.796511,0.700141,0.309855,0.622141,0.0123392,0.825772,0.511916,0.595714,0.895768,0.642472,0.368635,0.530297,0.878005,0.494258,0.732433,0.286768,0.0512672,0.353838,0.965366,0.0022434,0.641039,0.559875,0.323211,0.0487776,0.746822,0.00407922,0.174733,0.157885,0.492015,0.247076,0.933373,0.190968,0.182234,0.233882,0.295758,0.544391,0.945989,0.110052,0.0280076,0.769456,0.777933,0.205819,0.837023,0.205583,0.339559,0.692661,0.766784,0.758968,0.54367,0.0447583,0.334486,0.259468,0.012417,0.965151,0.336589,0.224056,0.985343,0.782584,0.365802,0.700101,0.889111,0.552388,0.244593,0.00465304,0.897254,0.462052,0.576025,0.495929,0.583251,0.381893,0.0844937,0.0469099,0.85286,0.124366,0.389171,0.150592,0.860632,0.343807,0.0248174,0.344346,0.307456,0.59511,0.397598,0.0130371,0.0346312,|0.768796,0.257318,0.387899,0.725203,0.52249,0.485291,0.121622,0.822247,0.307037,0.655678,0.2594,0.928078,0.700786,0.432492,0.246083,0.330364,0.654383,0.954062,0.720347,0.594832,0.799619,0.624845,0.951797,0.109462,0.45751,0.539152,0.739358,0.701661,0.20223,0.0131534,0.851967,0.441731,0.464306,0.960608,0.315363,0.43501,0.753394,0.0156689,0.646892,0.337798,0.20598,0.390406,0.853022,0.273163,0.172671,0.0382637,0.75856,0.426182,0.801812,0.461869,0.719238,0.600031,0.709803,0.713677,0.130822,0.982673,0.884428,0.975973,0.104212,0.747698,0.179676,0.320452,0.9711,0.304681,0.535056,0.580351,0.953089,0.129337,0.980624,0.645625,0.50634,0.150678,0.624005,0.493291,0.420463,0.0432135,0.470775,0.00715303,0.596959,0.481034,0.219151,0.647368,0.247524,0.805909,0.260575,0.650617,0.986192,0.361029,0.748221,0.0418094,0.833746,0.263303,0.164555,0.290852,0.943071,0.39756,0.0720826,0.955467,0.455324,0.426976,0.606221,0.684099,0.688838,0.227409,0.336926,0.112153,0.45922,0.256685,0.807776,0.919922,0.280523,0.0957534,0.863216,0.757244,0.452739,0.717606,0.251342,0.917884,0.984645,0.708897,0.218552,0.671513,0.156873,0.747762,0.240179,0.554089,0.958217,0.0130734,0.206795,0.720819,0.176954,0.685311,0.800879,0.0737677,0.316155,0.524745,0.120587,0.37503,0.715989,0.916499,0.0598968,0.99579,0.550713,0.0329163,0.734019,0.937577,0.554013,0.143649,0.409606,0.0232591,0.729389,0.229877,0.0317227,0.239345,0.372615,0.447776,0.424271,0.842449,0.493366,0.567528,0.632998,0.756517,0.924189,0.764253,0.652853,0.388871,0.744839,0.0144736,0.287882,0.0615169,0.065643,0.572505,0.275417,0.414761,0.670456,0.325792,0.949136,0.200585,0.553923,0.920895,0.0826049,0.17884,0.669746,0.612236,0.701041,0.247674,0.781159,0.892053,0.12322,0.818506,0.720315,0.4672,0.271873,0.724303,0.586904,0.53795,0.281481,0.563505,0.785199,0.645836,0.572853,0.264608,0.834186,0.393875,0.889187,0.0257038,0.460084,0.420128,0.99624,0.991532,0.740232,0.844558,0.0468367,0.794659,0.494566,0.56143,0.246313,0.473546,0.212674,0.568207,0.184563,0.959555,0.992334,0.269653,0.4311,0.353939,0.821242,0.00494301,0.423317,0.182341,0.17163,0.827645,0.771186,0.102385,0.0274277,0.251374,0.173651,0.924957,0.303164,0.191016,0.0412036,0.454633,0.570659,0.20359,0.839316,0.952242,0.0412433,0.965829,0.207488,0.0541598,0.514285,0.542688,0.543726,0.995829,0.715378,0.336819,0.242809,0.554496,0.522433,0.264154,0.507133,0.524695,0.194796,0.282169,0.564477,0.570142,0.576375,0.422582,0.604483,0.754426,0.653272,0.858459,0.452064,0.1594,0.983856,0.705485,0.272873,0.504896,0.585951,0.701828,0.0112766,0.553375,0.548225,0.021381,0.681525,0.915665,0.453714,0.613328,0.823118,0.379843,0.494126,0.868684,0.22322,0.951579,0.64571,0.564628,0.992382,0.996823,0.075481,0.228633,0.13409,0.947116,0.692638,0.573164,0.719804,0.973603,0.614092,0.703831,0.550335,0.564641,0.903162,0.809294,0.602468,0.910906,0.82992,0.0390245,0.914917,0.834153,0.662304,0.925086,0.177532,0.692582,0.10694,0.530197,0.985887,0.435264,0.808627,0.129109,0.249063,0.331697,0.703866,0.474311,0.552715,0.523918,0.0805786,0.671127,0.996723,0.552482,0.205056,0.765244,0.477974,0.283993,0.462623,0.438021,0.898183,0.639017,0.296441,0.497871,0.91225,0.798704,0.4465,0.431023,0.595111,0.804663,0.220044,0.787752,0.523345,0.836808,0.527478,0.841094,0.505154,0.186688,0.448953,0.0787751,0.520156,0.841926,0.573487,0.256582,0.585558,0.655891,0.0415577,0.967545,0.261751,0.159413,0.938053,0.346099,0.878533,0.859526,0.718958,0.435138,0.764805,0.256411,0.272267,0.480686,0.504181,0.265432,0.244798,0.925836,0.562679,0.142239,0.513976,0.940044,0.731086,0.596413,0.571197,0.783054,0.930093,0.628136,0.202824,0.502566,0.36304,0.416076,0.964117,0.989075,0.419651,0.614979,0.70852,0.845991,0.00362903,0.427768,0.871263,0.687315,0.179223,0.254421,0.910197,0.409623,0.829877,0.135825,0.279533,0.000239491,0.761565,0.756147,0.680647,0.0661267,0.445504,0.622913,0.813833,0.93621,0.362788,0.155718,0.37957,0.451038,0.713236,0.98264,0.681163,0.916193,0.450935,0.845162,0.444168,0.601008,0.766025,0.979253,0.710691,0.170064,0.892968,0.369596,0.0412094,0.897317,0.483233,0.718228,0.19238,0.585791,0.988812,0.469065,0.115529,0.477223,0.263505,0.955192,0.203422,0.691373,0.631451,0.157328,0.811792,0.290263,0.711242,0.211946,0.021627,0.177959,0.551876,0.0598109,0.944278,0.594862,0.0605159,0.0831494,0.601855,0.945841,0.272333,0.783845,0.0686416,0.724405,0.409907,0.780086,0.749591,0.729701,0.0761672,0.234771,0.94855,0.667822,0.209127,0.495979,0.803609,0.118739,0.689125,0.459252,0.591124,0.096048,0.897527,0.123529,0.853216,0.623444,0.585748,0.242131,0.0534672,0.341129,0.144764,0.408646,0.142101,0.709167,0.190159,0.726152,0.936635,0.524619,0.360956,0.126639,0.184777,0.484245,0.833677,0.613741,0.193595,0.467782,0.546596,0.52392,0.121634,0.805338,0.657684,0.22342,0.996877,0.554,0.639168,0.94866,0.293926,0.0522745,0.311729,0.690898,0.926361,0.90755,0.119591,0.169403,0.933656,0.591195,0.740211,0.826467,0.956829,0.479088,0.133017,0.435632,0.0941334,0.267998,0.352087,0.157164,0.639861,0.493151,0.560574,0.342725,0.339906,0.375838,0.547572,0.0348463,0.000722587,0.441816,0.48284,0.338352,0.994278,0.926278,0.846663,0.382021,0.984586,0.533217,0.573289,0.297431,0.986214,0.730931,0.677485,0.519934,0.0301824,0.983062,0.728517,0.800049,0.93061,0.941011,0.207558,0.716897,0.768827,0.346787,0.275857,0.803246,0.460565,0.579928,0.0116759,0.756506,0.55955,0.440575,0.646419,0.728372,0.488501,0.780334,0.259293,0.28868,0.0960436,0.544967,0.65631,0.418657,0.334437,0.229739,0.998316,0.658949,0.602233,0.700233,0.177688,0.694277,0.232734,0.777972,0.560058,0.0285581,0.63089,0.473926,0.0165257,0.94562,0.672915,0.0123624,0.825399,0.636188,0.0821236,0.562428,0.0502809,0.85647,0.983195,0.0388644,0.190167,0.0274333,0.612714,0.375835,0.00795692,0.915749,0.0350359,0.504076,0.596224,0.894055,0.697509,0.958336,0.93949,0.342607,0.28565,0.999876,0.719221,0.822947,0.614161,0.258883,0.898181,0.797721,0.969552,0.239495,0.482645,0.604574,0.655891,0.0798094,0.334356,0.480713,0.391255,0.618285,0.792132,0.256867,0.690299,0.733737,0.756907,0.0251549,0.645246,0.812394,0.149479,0.0881743,0.402233,0.411032,0.750517,0.820902,0.803206,0.146944,0.176296,0.058426,0.540392,0.53048,0.74399,0.912722,0.213415,0.548398,0.146812,0.668101,0.663214,0.996348,0.220391,0.394996,0.259251,0.967973,0.733331,0.166803,0.361703,0.0852774,0.170983,0.899483,0.734492,0.434615,0.178812,0.566948,0.645677,0.789607,0.289951,0.789899,0.869785,0.30845,0.481912,0.618957,0.572018,0.968287,0.0414805,0.379238,0.268186,0.379559,0.612942,0.0886512,0.594461,0.205713,0.337704,0.434389,0.551398,0.129052,0.701435,0.273368,0.034229,0.467226,0.912643,0.678127,0.470336,0.308061,0.347275,0.110324,0.686551,0.979054,0.165573,0.240682,0.815515,0.0818607,0.831983,0.397324,0.582954,0.175837,0.673878,0.852686,0.505535,0.978421,0.305658,0.125982,0.865393,0.235262,0.415211,0.602439,0.827004,0.69438,0.197369,0.291511,0.280867,0.438074,0.110581,0.554005,0.991528,0.417332,0.27099,0.779241,0.240206,0.891197,0.324372,0.77813,0.63355,0.828026,0.0728697,0.221269,0.976216,0.121792,0.0227397,0.272959,0.947539,0.322011,0.419192,0.59212,0.853499,0.76417,0.459983,0.876433,0.964601,0.69969,0.993787,0.163958,0.0378875,0.175994,0.253678,0.201995,0.709647,0.939617,0.131843,0.576852,0.721435,0.373385,0.666843,0.838108,0.283522,0.88577,0.36923,0.177548,0.0576152,0.772294,0.891006,0.693639,0.350807,0.131476,0.545682,0.783864,0.837181,0.835573,0.162295,0.185948,0.817652,0.137701,0.299706,0.637686,0.155346,0.808549,0.391381,0.511953,0.190876,0.323215,0.398375,0.339862,0.157191,0.161305,0.287051,0.69265,0.269927,0.639424,0.438544,0.462885,0.650087,0.636408,0.765447,0.0830777,0.841159,0.603947,0.549075,0.688745,0.761567,0.978511,0.391494,0.386365,0.296389,0.410741,0.845779,0.479729,0.494676,0.225884,0.273278,0.0651113,0.780123,0.170652,0.322895,0.682898,0.0404896,0.400733,0.815813,0.958101,0.870677,0.101993,0.289328,0.964264,0.409301,0.710315,0.953132,0.353369,0.110408,0.150303,0.0381044,0.33152,0.243049,0.088802,0.282783,0.851725,0.695678,0.824316,0.852192,0.992327,0.532588,0.292566,0.0934289,0.147861,0.121765,0.45254,0.0149155,0.19061,0.301513,0.117402,0.694247,0.952967,0.884831,0.373904,0.421317,0.680814,0.888556,0.398047,0.71705,0.447228,0.259457,0.826354,0.674919,0.412544,0.878469,0.0696638,0.20483,0.876198,0.512492,0.705653,0.682178,0.802305,0.840955,0.228929,0.450281,0.345255,0.40699,0.0843046,0.706983,0.257702,0.857629,0.104021,0.799234,0.793077,0.826994,0.0837433,0.963937,0.532113,0.471491,0.038129,0.288019,0.124809,0.979429,0.155154,0.203293,0.415313,0.811272,0.133376,0.0884129,0.998322,0.758562,0.185818,0.885396,0.345179,0.447992,0.730399,0.30786,0.729551,0.0796177,0.252138,0.389476,0.00253528,0.219911,0.315874,0.491885,0.827993,0.498018,0.0559744,0.592738,0.71354,0.0343354,0.472475,0.865822,0.707845,0.0163667,0.749265,0.603209,0.125144,0.420736,0.213354,0.0907826,0.224582,0.364694,0.133512,0.0378426,0.288287,0.948669,0.102602,0.148227,0.837214,0.905744,0.579415,0.362286,0.480942,0.0755641,0.854035,0.291781,0.657873,0.699836,0.0332124,0.762249,0.787428,0.0378919,0.357253,|0.0721794,0.564361,0.257593,0.427997,0.717958,0.805524,0.323347,0.957545,0.420573,0.778784,0.323373,0.555081,0.932339,0.110198,0.0676621,0.0239081,0.996852,0.227558,0.131634,0.294333,0.595592,0.506941,0.991298,0.839784,0.69008,0.834604,0.919527,0.867661,0.906196,0.785098,0.908437,0.505024,0.606318,0.157339,0.392127,0.859192,0.778236,0.0491394,0.123857,0.775129,0.366891,0.956767,0.337974,0.910529,0.980095,0.846402,0.0549173,0.371819,0.10056,0.635226,0.780905,0.557446,0.976827,0.567645,0.17732,0.73462,0.365603,0.989997,0.56335,0.330971,0.247764,0.0877488,0.0277413,0.337386,0.685697,0.409224,0.550112,0.242296,0.233982,0.881807,0.303866,0.297066,0.130324,0.527066,0.232171,0.00189185,0.324445,0.80818,0.163531,0.594124,0.230177,0.641013,0.408287,0.244958,0.662114,0.866346,0.826224,0.730837,0.77811,0.57317,0.152946,0.616537,0.597334,0.535644,0.709026,0.122591,0.0529089,0.380827,0.929307,0.68499,0.579632,0.669,0.34918,0.219666,0.949803,0.0180829,0.237098,0.495553,0.996847,0.538781,0.908947,0.626205,0.801452,0.119364,0.814686,0.811488,0.805203,0.415054,0.359092,0.789351,0.884856,0.654437,0.87382,0.668471,0.194601,0.763948,0.028048,0.152219,0.751458,0.431049,0.742398,0.284271,0.258999,0.826944,0.817524,0.0842543,0.312291,0.946669,0.687879,0.459977,0.360316,0.763446,0.950847,0.873809,0.0716398,0.0403296,0.496777,0.89457,0.174797,0.384963,0.265669,0.0999029,0.164792,0.826491,0.258195,0.0103343,0.357725,0.120515,0.219433,0.822683,0.948632,0.689993,0.900045,0.627263,0.102853,0.713788,0.0748324,0.277609,0.936568,0.366674,0.12304,0.620786,0.103665,0.6946,0.301625,0.59731,0.853981,0.377036,0.250322,0.443609,0.0158113,0.51865,0.135068,0.663341,0.688184,0.498694,0.828658,0.0686272,0.423772,0.836082,0.437602,0.212617,0.907909,0.892038,0.215288,0.00710762,0.193986,0.375521,0.147446,0.448457,0.75031,0.620236,0.89768,0.65743,0.8414,0.476895,0.78414,0.11759,0.773088,0.592848,0.0896528,0.433624,0.534232,0.611543,0.290831,0.948801,0.620386,0.353153,0.0333492,0.578259,0.246412,0.846818,0.248593,0.724762,0.0308951,0.408266,0.413805,0.00516903,0.949606,0.62656,0.69552,0.272411,0.565245,0.85954,0.756791,0.794696,0.257193,0.0618443,0.589522,0.412799,0.0784587,0.259841,0.504961,0.0421153,0.585938,0.633203,0.585648,0.410279,0.0991123,0.669938,0.318702,0.582983,0.671477,0.172523,0.222607,0.260792,0.0130837,0.990027,0.0487322,0.00309861,0.111768,0.145891,0.96857,0.0500172,0.580631,0.784989,0.966284,0.661947,0.206557,0.903247,0.522994,0.87649,0.783737,0.416615,0.410222,0.969297,0.200259,0.263414,0.30166,0.703762,0.413387,0.0583845,0.309759,0.405931,0.783978,0.138978,0.706567,0.158097,0.536107,0.776599,0.49251,0.550679,0.727277,0.0537765,0.534028,0.732642,0.303545,0.499774,0.101996,0.59234,0.157248,0.559552,0.46803,0.0652351,0.911203,0.0620266,0.201939,0.78789,0.524473,0.607886,0.219965,0.185586,0.103704,0.294653,0.896468,0.877536,0.571286,0.315354,0.404294,0.122522,0.0693225,0.554096,0.15309,0.96406,0.628543,0.318404,0.28559,0.609599,0.287434,0.120781,0.79098,0.447987,0.945875,0.0916461,0.41221,0.102079,0.0358589,0.30193,0.0110285,0.875446,0.134213,0.615978,0.50824,0.179378,0.902325,0.462384,0.933184,0.728555,0.309118,0.669892,0.505399,0.548898,0.510805,0.360929,0.908966,0.143238,0.00799906,0.00334275,0.611225,0.593509,0.0134702,0.334984,0.430786,0.530648,0.664499,0.698207,0.389705,0.458325,0.82483,0.113711,0.634303,0.268981,0.817167,0.900653,0.780993,0.567961,0.172378,0.246189,0.994454,0.811304,0.0526994,0.698364,0.614838,0.525836,0.621842,0.618395,0.291005,0.072718,0.426439,0.857891,0.554739,0.0105315,0.568245,0.457096,0.446811,0.425603,0.031304,0.389163,0.678661,0.7081,0.128961,0.748651,0.875894,0.354478,0.00401843,0.247978,0.957012,0.772635,0.175899,0.556022,0.658869,0.161441,0.758422,0.159614,0.140575,0.336258,0.733219,0.397008,0.983859,0.598513,0.929488,0.790579,0.863904,0.250465,0.104115,0.927695,0.259945,0.599644,0.294071,0.910226,0.0440441,0.616613,0.416736,0.127917,0.0912043,0.680977,0.814519,0.910868,0.300966,0.303719,0.506315,0.642533,0.871416,0.268306,0.354306,0.668587,0.793202,0.991987,0.803909,0.92624,0.849045,0.465233,0.271207,0.78598,0.707237,0.86395,0.802997,0.879916,0.129805,0.825949,0.72914,0.827916,0.852404,0.989926,0.0459867,0.520372,0.0303741,0.227945,0.0203667,0.817259,0.211076,0.100839,0.874751,0.0398644,0.572065,0.859767,0.314385,0.652048,0.58153,0.55509,0.97382,0.419858,0.449288,0.313305,0.103098,0.66346,0.385133,0.562216,0.166413,0.197039,0.818191,0.267378,0.369277,0.688854,0.473373,0.428098,0.0490836,0.807635,0.484941,0.169152,0.0783893,0.402702,0.457798,0.0101334,0.102362,0.0600572,0.518891,0.939273,0.936374,0.487575,0.653175,0.679733,0.884798,0.0699959,0.427796,0.486249,0.373684,0.211648,0.575116,0.719947,0.942576,0.207728,0.451662,0.99274,0.984945,0.0973316,0.943829,0.581373,0.522213,0.553406,0.909274,0.593781,0.0496201,0.945395,0.233316,0.93909,0.276446,0.910644,0.836956,0.876855,0.861709,0.347824,0.334117,0.429514,0.305451,0.827039,0.360829,0.459823,0.910941,0.61003,0.457994,0.924733,0.971301,0.60013,0.490711,0.698258,0.539365,0.529962,0.584174,0.129174,0.724298,0.798836,0.282769,0.726612,0.698392,0.395986,0.305978,0.517034,0.922962,0.821875,0.142723,0.990096,0.769543,0.478748,0.101176,0.483099,0.304169,0.260772,0.971529,0.38666,0.218958,0.628294,0.369897,0.28459,0.175072,0.237252,0.377472,0.510544,0.00318027,0.285191,0.430761,0.306138,0.277019,0.872506,0.881445,0.774082,0.364699,0.620439,0.366436,0.61087,0.478469,0.552292,0.548588,0.121207,0.283945,0.022507,0.177797,0.774284,0.343846,0.728628,0.92443,0.00969344,0.913705,0.675812,0.692622,0.76471,0.793613,0.654154,0.239031,0.0497218,0.0954541,0.721397,0.604913,0.55357,0.419421,0.407842,0.542951,0.947098,0.987924,0.27712,0.765539,0.588824,0.70221,0.87841,0.0876823,0.0991342,0.794413,0.497871,0.0514503,0.976087,0.865407,0.981781,0.396002,0.85422,0.0161583,0.344513,0.146502,0.237196,0.347246,0.25201,0.916877,0.781696,0.312667,0.443348,0.583966,0.213629,0.740321,0.705184,0.279511,0.696172,0.909803,0.0701017,0.311452,0.454786,0.670175,0.277843,0.121904,0.517991,0.715937,0.92568,0.961088,0.975831,0.962292,0.20081,0.922217,0.291881,0.598172,0.249873,0.141072,0.978505,0.401519,0.296463,0.464254,0.492071,0.759421,0.676926,0.792064,0.0909174,0.764298,0.580174,0.618207,0.691938,0.881886,0.225071,0.420252,0.860992,0.505711,0.462911,0.806855,0.123869,0.732849,0.873867,0.173641,0.581407,0.778167,0.0792002,0.310036,0.520793,0.923825,0.175878,0.0181645,0.241892,0.175964,0.317919,0.638181,0.82558,0.292055,0.378252,0.536193,0.657443,0.411495,0.274326,0.221883,0.522213,0.907595,0.602832,0.908806,0.485039,0.108322,0.206185,0.452383,0.205158,0.0991629,0.71071,0.205614,0.731393,0.776368,0.600641,0.752101,0.907132,0.712421,0.202402,0.342851,0.462189,0.366606,0.606301,0.786259,0.650103,0.454493,0.586708,0.137364,0.487806,0.68889,0.366634,0.224779,0.962035,0.804118,0.996885,0.0352943,0.308733,0.44632,0.777379,0.141769,0.383163,0.0737589,0.166981,0.0751869,0.993625,0.151365,0.698976,0.846832,0.759168,0.94119,0.503063,0.606122,0.997541,0.841975,0.165012,0.115894,0.1438,0.893043,0.730065,0.590999,0.558951,0.405408,0.940346,0.746912,0.964608,0.293965,0.316459,0.489456,0.77216,0.134548,0.524311,0.533773,0.402534,0.409042,0.794847,0.18517,0.913426,0.563788,0.128745,0.332907,0.558044,0.920576,0.801022,0.850439,0.673306,0.323541,0.591416,0.648387,0.242102,0.885432,0.182625,0.490761,0.462608,0.722229,0.392596,0.80605,0.890887,0.782071,0.905917,0.59156,0.651781,0.377485,0.956754,0.436195,0.989441,0.632686,0.978932,0.397065,0.521098,0.250579,0.214577,0.289765,0.566982,0.890371,0.961875,0.363338,0.898291,0.362762,0.761433,0.618933,0.348688,0.897572,0.0705967,0.832868,0.991034,0.281956,0.68249,0.0305281,0.51504,0.59181,0.565728,0.336378,0.898687,0.411722,0.73492,0.309671,0.853917,0.533878,0.242619,0.952137,0.64152,0.386518,0.419026,0.380424,0.167249,0.56764,0.174793,0.46654,0.149265,0.828756,0.809501,0.41271,0.706027,0.677865,0.56814,0.480459,0.155991,0.974115,0.845907,0.388806,0.241631,0.901929,0.237886,0.0793214,0.729546,0.217829,0.4984,0.640084,0.364491,0.968996,0.873015,0.294171,0.958895,0.242502,0.932002,0.803161,0.900914,0.993477,0.464091,0.0760876,0.870515,0.910526,0.458642,0.30901,0.237214,0.2418,0.286642,0.726306,0.0968735,0.879181,0.348875,0.654462,0.878134,0.199374,0.573743,0.72567,0.216545,0.970144,0.894356,0.843967,0.151118,0.487468,0.591511,0.614098,0.320724,0.496769,0.116864,0.826779,0.863105,0.90093,0.188409,0.0845852,0.123993,0.20398,0.353902,0.7538,0.70226,0.0670985,0.932979,0.858675,0.654967,0.6197,0.450056,0.843068,0.165404,0.950979,0.744738,0.119764,0.405773,0.17094,0.815724,0.299017,0.319392,0.579339,0.534354,0.990482,0.767729,0.636887,0.57061,0.348894,0.963479,0.393457,0.130518,0.350488,0.107726,0.131803,0.147599,0.540847,0.178656,0.619171,0.272272,0.219478,0.541564,0.336652,0.699166,0.34348,0.960922,0.219137,0.860067,0.293746,0.171188,0.604697,0.415041,0.646344,0.0566923,0.373004,0.830926,0.837927,0.695314,0.440158,0.538544,0.402394,0.419529,0.476829,0.896264,0.394378,0.350374,|0.639515,0.358694,0.785892,0.476824,0.918242,0.741678,0.755766,0.764618,0.192033,0.918045,0.734199,0.520679,0.0669595,0.179419,0.893237,0.281489,0.0807677,0.434887,0.514975,0.880629,0.167114,0.548854,0.499662,0.578922,0.369478,0.235291,0.223586,0.395559,0.172445,0.0890106,0.857923,0.211299,0.816532,0.864985,0.945729,0.863391,0.0702717,0.616166,0.201078,0.930707,0.812287,0.204034,0.701977,0.476874,0.128161,0.279076,0.281321,0.834272,0.681237,0.827909,0.226983,0.948363,0.809385,0.718864,0.550995,0.111796,0.913068,0.983663,0.333892,0.637008,0.864203,0.344817,0.914616,0.956753,0.00105619,0.960908,0.479959,0.632334,0.206892,0.676539,0.0257186,0.584066,0.866869,0.578386,0.159371,0.881911,0.89121,0.105987,0.605949,0.743704,0.196594,0.771638,0.962743,0.871357,0.18223,0.634652,0.667113,0.525203,0.118425,0.590337,0.887925,0.119931,0.889323,0.771527,0.74229,0.336641,0.208796,0.683627,0.609481,0.197628,0.049327,0.917435,0.507143,0.544855,0.410209,0.503281,0.873089,0.114296,0.27597,0.541934,0.224891,0.863869,0.315731,0.282638,0.588565,0.211887,0.103563,0.995992,0.920162,0.182018,0.578751,0.464098,0.885589,0.615813,0.610739,0.542235,0.844745,0.684859,0.514232,0.291576,0.777393,0.129962,0.339881,0.677875,0.55051,0.923637,0.23928,0.361096,0.868161,0.345866,0.210868,0.707111,0.028531,0.552287,0.120558,0.73969,0.529591,0.155269,0.589628,0.414309,0.693699,0.572954,0.665309,0.346239,0.542037,0.171576,0.448202,0.48212,0.320217,0.467337,0.438679,0.577021,0.0317387,0.0647103,0.411715,0.728089,0.349388,0.859715,0.957301,0.971065,0.450467,0.690625,0.874603,0.0841055,0.647396,0.196015,0.457836,0.100764,0.0507591,0.939934,0.847532,0.324298,0.27678,0.0752857,0.432413,0.134791,0.779566,0.173946,0.417458,0.751345,0.251586,0.914724,0.252504,0.954737,0.00521415,0.326625,0.219058,0.690016,0.186703,0.461804,0.775681,0.24381,0.0737557,0.604087,0.745188,0.794596,0.763672,0.00758255,0.286089,0.708379,0.758495,0.804027,0.53198,0.17061,0.636669,0.326107,0.255478,0.105173,0.94455,0.00472665,0.212523,0.163889,0.458498,0.605402,0.0444752,0.336487,0.646529,0.277136,0.920956,0.377145,0.547091,0.33198,0.262313,0.746981,0.283083,0.726031,0.679679,0.172239,0.245275,0.456057,0.105748,0.70293,0.482593,0.615156,0.0375437,0.383726,0.704498,0.525069,0.533922,0.217021,0.0350468,0.805439,0.742704,0.00650764,0.638236,0.119051,0.76916,0.419436,0.268223,0.469032,0.913157,0.551907,0.647355,0.665354,0.913818,0.775734,0.724564,0.0568034,0.802394,0.00519884,0.272051,0.0952415,0.429305,0.393004,0.201315,0.112273,0.241157,0.441899,0.336132,0.115764,0.557162,0.905156,0.84972,0.503515,0.708469,0.337061,0.932605,0.331218,0.572979,0.676262,0.00325769,0.0777757,0.0679247,0.30409,0.454643,0.577944,0.0260137,0.40247,0.941328,0.405768,0.811184,0.108017,0.950149,0.720906,0.0772371,0.0141216,0.842168,0.202,0.891412,0.382999,0.503933,0.907781,0.372384,0.901392,0.109557,0.973715,0.945787,0.0342212,0.505027,0.484556,0.312063,0.916608,0.702517,0.0801672,0.627351,0.841188,0.426549,0.130295,0.170317,0.483206,0.304949,0.695479,0.847047,0.938002,0.324888,0.971023,0.760663,0.324055,0.269423,0.64862,0.957514,0.0073604,0.21255,0.127546,0.0663295,0.129224,0.842568,0.932623,0.544145,0.711359,0.865022,0.27672,0.162361,0.292388,0.46091,0.931115,0.230799,0.587082,0.00815821,0.29228,0.135183,0.81398,0.00694185,0.326067,0.50333,0.286128,0.0497352,0.262802,0.733397,0.340823,0.948734,0.179227,0.733796,0.756713,0.286099,0.879015,0.358067,0.173484,0.700248,0.95029,0.654419,0.306451,0.552917,0.828256,0.280046,0.477852,0.480216,0.823895,0.520794,0.538939,0.532786,0.592455,0.281321,0.518392,0.431753,0.0645685,0.911417,0.277441,0.570084,0.385832,0.859697,0.543576,0.335903,0.788699,0.595521,0.182674,0.756813,0.291887,0.0688072,0.284688,0.915667,0.921703,0.907063,0.825469,0.884511,0.564183,0.147724,0.73299,0.581429,0.62662,0.325377,0.959269,0.236768,0.0365617,0.512581,0.491452,0.774737,0.615526,0.932399,0.535657,0.141627,0.886894,0.697103,0.0422643,0.747928,0.580858,0.272336,0.864746,0.884216,0.179428,0.362418,0.527952,0.928586,0.651649,0.879839,0.0900788,0.823261,0.908375,0.192779,0.581412,0.591257,0.647078,0.428972,0.0785252,0.372117,0.494593,0.957034,0.154683,0.707623,0.399805,0.146671,0.0515736,0.771583,0.912591,0.862652,0.802508,0.708819,0.55522,0.363247,0.11911,0.28384,0.841098,0.800116,0.085706,0.926209,0.925234,0.743836,0.598912,0.799323,0.971487,0.262934,0.133766,0.694589,0.734499,0.0468578,0.163253,0.219933,0.341186,0.419255,0.701887,0.767513,0.235551,0.78193,0.840277,0.051598,0.265374,0.622676,0.0870389,0.196791,0.822849,0.692083,0.534811,0.397284,0.809037,0.244955,0.44387,0.496247,0.699245,0.715265,0.886666,0.0252376,0.571541,0.112004,0.227408,0.719154,0.697028,0.743171,0.0448871,0.74021,0.160875,0.722248,0.435604,0.25053,0.445991,0.499358,0.114026,0.0827304,0.320148,0.551138,0.110572,0.983652,0.373489,0.937808,0.909096,0.632921,0.299695,0.00410444,0.616014,0.350951,0.220229,0.145006,0.676658,0.234752,0.842158,0.942516,0.887673,0.0776283,0.273367,0.0410577,0.614966,0.753073,0.841464,0.648106,0.994357,0.843734,0.964933,0.959144,0.231377,0.378594,0.479934,0.967047,0.405828,0.401217,0.760277,0.589083,0.676959,0.63577,0.271958,0.819102,0.902378,0.0409691,0.940179,0.119256,0.437318,0.930351,0.359019,0.149088,0.113511,0.682208,0.903306,0.962003,0.208924,0.565439,0.635194,0.571811,0.965924,0.956032,0.2302,0.566523,0.153651,0.713234,0.395334,0.517047,0.0841329,0.472362,0.441004,0.463676,0.940534,0.342513,0.248931,0.345035,0.188064,0.418244,0.527005,0.357824,0.845243,0.0139345,0.383968,0.0662879,0.807385,0.411129,0.545822,0.850214,0.224675,0.279105,0.576271,0.723645,0.130758,0.164145,0.224757,0.490501,0.0757508,0.950137,0.21694,0.338275,0.820031,0.535084,0.777538,0.184867,0.580486,0.863138,0.129759,0.808006,0.381201,0.418634,0.269084,0.761228,0.991488,0.941072,0.252321,0.505077,0.418985,0.99219,0.0801145,0.373468,0.909784,0.0734658,0.472317,0.471029,0.980332,0.536283,0.770746,0.673776,0.370843,0.305464,0.558803,0.903706,0.525966,0.780937,0.608414,0.576504,0.789782,0.241967,0.300757,0.437127,0.918675,0.976617,0.277556,0.792489,0.775537,0.477465,0.524284,0.367667,0.643346,0.14662,0.824698,0.0929585,0.51056,0.351706,0.781319,0.111119,0.0109463,0.0711895,0.386485,0.546798,0.190744,0.122825,0.148521,0.043619,0.299391,0.381778,0.332684,0.991386,0.9099,0.102305,0.250749,0.930975,0.316743,0.51599,0.5477,0.75392,0.262141,0.902851,0.536683,0.950417,0.263753,0.57112,0.64005,0.669013,0.655284,0.11368,0.371077,0.400294,0.733514,0.540392,0.277215,0.850225,0.813907,0.0679997,0.223292,0.400281,0.64132,0.21433,0.114999,0.193876,0.825772,0.0447906,0.757613,0.415528,0.881461,0.851768,0.791441,0.314506,0.641689,0.363084,0.810861,0.996359,0.201029,0.69713,0.276834,0.16319,0.290212,0.521233,0.846474,0.592675,0.892006,0.535047,0.421136,0.270496,0.571496,0.503439,0.395585,0.174319,0.880957,0.899295,0.589738,0.0773284,0.63767,0.0374006,0.0747256,0.0704005,0.0528656,0.0531259,0.0550967,0.0307079,0.806615,0.110546,0.44648,0.85567,0.024582,0.814901,0.507591,0.914532,0.0266079,0.664915,0.851809,0.150797,0.807844,0.295816,0.854748,0.812029,0.714627,0.118976,0.241267,0.035314,0.427275,0.14522,0.682854,0.863082,0.566876,0.455766,0.315696,0.245242,0.836328,0.306768,0.598785,0.433517,0.814219,0.759072,0.482495,0.923724,0.0986351,0.806825,0.571618,0.316641,0.952117,0.009148,0.708323,0.0613511,0.120673,0.67105,0.0526567,0.0501882,0.868998,0.94754,0.0916541,0.056809,0.64071,0.317164,0.593589,0.454845,0.688443,0.696517,0.0524077,0.585616,0.135696,0.349479,0.0491735,0.816348,0.171758,0.848172,0.131759,0.618205,0.54429,0.731391,0.590863,0.333853,0.749059,0.580192,0.125647,0.908794,0.949819,0.0329761,0.882633,0.261699,0.346444,0.544049,0.0758609,0.711583,0.775101,0.0881295,0.101446,0.0311162,0.505982,0.914003,0.259014,0.35824,0.755025,0.650584,0.364893,0.194965,0.417807,0.0529529,0.643567,0.763136,0.199697,0.633026,0.339616,0.419739,0.0821555,0.432739,0.472698,0.537153,0.780098,0.827128,0.430939,0.553566,0.704505,0.807218,0.707858,0.48772,0.25163,0.193325,0.499927,0.330193,0.5711,0.240921,0.4618,0.833288,0.352004,0.740157,0.268767,0.567223,0.276576,0.645972,0.64412,0.17348,0.94175,0.145604,0.894981,0.825284,0.501408,0.86991,0.519,0.729426,0.765708,0.274007,0.513175,0.602329,0.656911,0.464189,0.308246,0.946958,0.632815,0.457273,0.385077,0.671706,0.626289,0.314234,0.597316,0.0889778,0.0895391,0.0568336,0.362804,0.4727,0.830129,0.110215,0.527233,0.448812,0.576279,0.102565,0.096999,0.945258,0.368271,0.354406,0.930064,0.219485,0.460835,0.562187,0.728006,0.209714,0.541142,0.388262,0.599644,0.640174,0.610692,0.750152,0.49518,0.497553,0.988099,0.218578,0.274785,0.932919,0.634619,0.496835,0.984403,0.0638524,0.278906,0.111072,0.512843,0.60163,0.760919,0.930533,0.94169,0.0691736,0.732704,0.818887,0.712857,0.691811,0.359389,0.42917,0.839296,0.999758,0.456469,0.419241,0.132592,0.316992,0.781123,0.0893582,0.981381,0.551795,0.0996907,0.977518,0.341189,0.72452,0.561308,0.395865,0.777606,0.845023,0.989046,0.0619488,0.0120271,0.516921,0.760616,0.825313,0.909576,0.821167,0.331207,0.828897,0.00572139,|0.878565,0.734118,0.593566,0.25404,0.253894,0.215635,0.845141,0.834898,0.626024,0.251825,0.230984,0.355365,0.959033,0.00931859,0.217618,0.133977,0.145152,0.331121,0.634954,0.729361,0.273401,0.739312,0.209615,0.43557,0.505193,0.431347,0.670942,0.611321,0.844225,0.370895,0.375363,0.978741,0.642297,0.741182,0.141813,0.199367,0.456916,0.348691,0.201748,0.739369,0.899627,0.17082,0.426002,0.517738,0.479671,0.590104,0.677258,0.547463,0.185524,0.195963,0.186353,0.325888,0.664497,0.221345,0.0943173,0.254675,0.115167,0.320977,0.595026,0.136509,0.638984,0.0139029,0.774866,0.0840781,0.6493,0.41017,0.0876135,0.0142519,0.441696,0.711344,0.19565,0.924231,0.189771,0.0936428,0.951743,0.901647,0.618204,0.860265,0.550389,0.751066,0.666571,0.0606391,0.16803,0.811152,0.415212,0.811337,0.393526,0.206504,0.956558,0.0901513,0.826851,0.702481,0.531699,0.911242,0.753343,0.686226,0.735444,0.588808,0.105656,0.955771,0.239151,0.569645,0.577564,0.416601,0.0768371,0.643975,0.827413,0.76702,0.103992,0.970085,0.756957,0.169512,0.910188,0.0119815,0.236233,0.736378,0.988871,0.398583,0.43332,0.153938,0.525173,0.755883,0.862995,0.00746602,0.582781,0.453336,0.972515,0.218542,0.366926,0.173299,0.0947912,0.916371,0.82932,0.589767,0.788995,0.234654,0.433497,0.90658,0.222834,0.452207,0.344596,0.25189,0.23306,0.763955,0.49721,0.164283,0.687109,0.194075,0.696215,0.884095,0.516296,0.153371,0.667587,0.808017,0.0250185,0.463808,0.0650398,0.66648,0.720335,0.154461,0.617568,0.161177,0.927699,0.641043,0.992204,0.136538,0.116478,0.786916,0.0912071,0.813229,0.353338,0.991857,0.417805,0.360683,0.387325,0.0759108,0.113596,0.0377025,0.354036,0.934812,0.200769,0.434717,0.83122,0.145477,0.982168,0.715025,0.687062,0.0816978,0.615054,0.362912,0.105074,0.0821728,0.690283,0.572771,0.916613,0.165565,0.351819,0.291978,0.400089,0.408264,0.955502,0.0175912,0.610939,0.352971,0.83646,0.893468,0.0515124,0.483864,0.30237,0.0039317,0.345776,0.524119,0.0419613,0.198073,0.656125,0.615538,0.145142,0.467978,0.335763,0.566814,0.0484561,0.0856085,0.572965,0.101787,0.85838,0.902252,0.9413,0.692114,0.985739,0.8466,0.859611,0.25371,0.492972,0.58163,0.06637,0.772247,0.758303,0.167379,0.56494,0.0810756,0.069259,0.48228,0.495301,0.63189,0.537528,0.701642,0.519698,0.622935,0.602344,0.681365,0.104645,0.788233,0.0830415,0.862336,0.14097,0.446635,0.714504,0.35357,0.268652,0.522843,0.569739,0.187269,0.749136,0.00355113,0.599447,0.50752,0.0874759,0.685323,0.424936,0.707729,0.641907,0.864833,0.646324,0.0579797,0.625575,0.0182925,0.271908,0.663796,0.232718,0.726306,0.7233,0.610507,0.629306,0.2277,0.293536,0.535675,0.549739,0.713122,0.479119,0.808416,0.988332,0.963041,0.426628,0.236359,0.737625,0.0675713,0.666811,0.446412,0.931313,0.584133,0.962371,0.640463,0.559701,0.80225,0.411312,0.381986,0.171896,0.826637,0.988896,0.106058,0.956405,0.647419,0.118858,0.522141,0.978264,0.184613,0.648097,0.11039,0.87948,0.00625837,0.469402,0.29414,0.474889,0.425435,0.462109,0.651841,0.992313,0.9247,0.0198126,0.889354,0.434769,0.218353,0.549601,0.218047,0.203642,0.6566,0.590715,0.460248,0.694906,0.0961093,0.700384,0.313899,0.352954,0.53088,0.403885,0.841109,0.0358916,0.469895,0.700033,0.0207567,0.500619,0.704461,0.0581925,0.493778,0.474377,0.529348,0.00331891,0.474314,0.727651,0.544078,0.75262,0.51561,0.986979,0.150177,0.56814,0.631388,0.242515,0.722593,0.336377,0.0975684,0.446809,0.934076,0.130279,0.978963,0.246502,0.489644,0.0675455,0.940889,0.839868,0.158245,0.709938,0.148505,0.281885,0.832703,0.695176,0.517551,0.183926,0.158392,0.448394,0.600572,0.191132,0.464106,0.0924109,0.6452,0.118135,0.530415,0.548639,0.505992,0.722742,0.709663,0.507234,0.698106,0.436214,0.696978,0.863715,0.866042,0.696525,0.231654,0.33611,0.677928,0.636904,0.566917,0.286461,0.797768,0.646003,0.279237,0.910309,0.523546,0.46791,0.756456,0.151006,0.0397331,0.135913,0.991809,0.481075,0.456053,0.316375,0.525846,0.587635,0.159945,0.893434,0.498909,0.0124007,0.911517,0.433261,0.958971,0.278843,0.160798,0.0286156,0.492693,0.55166,0.00170547,0.727235,0.0838079,0.577363,0.924628,0.408088,0.0451712,0.218455,0.432837,0.84761,0.424046,0.0548924,0.0382501,0.560067,0.246442,0.64197,0.170876,0.790772,0.47326,0.0910606,0.596022,0.0705631,0.742982,0.559157,0.83741,0.954633,0.775397,0.607329,0.994981,0.325586,0.762571,0.756445,0.630192,0.69305,0.433145,0.702221,0.262671,0.176918,0.680459,0.937858,0.780199,0.601896,0.15588,0.407097,0.654879,0.657491,0.534811,0.169394,0.779434,0.386784,0.253348,0.0149496,0.0366633,0.347689,0.534096,0.249332,0.657606,0.552688,0.014643,0.344147,0.424265,0.997091,0.108218,0.610933,0.939704,0.675109,0.209464,0.440994,0.83288,0.630863,0.979263,0.37505,0.311147,0.354775,0.939108,0.953135,0.681949,0.818022,0.42126,0.540342,0.126601,0.968155,0.705136,0.23051,0.447147,0.906488,0.700576,0.254763,0.932313,0.779526,0.388392,0.594781,0.522164,0.701627,0.418207,0.619837,0.876071,0.622562,0.0311443,0.338169,0.615967,0.314545,0.40983,0.577291,0.498614,0.298868,0.951025,0.541404,0.882647,0.964972,0.726162,0.0432785,0.512896,0.277471,0.259545,0.877197,0.475361,0.0133955,0.306092,0.889387,0.530759,0.173629,0.91977,0.344544,0.686186,0.316088,0.85011,0.416058,0.683972,0.0996529,0.118018,0.78757,0.17136,0.75667,0.701371,0.674177,0.0240136,0.747197,0.403153,0.471215,0.555385,0.921396,0.375072,0.151574,0.860577,0.967473,0.723621,0.976792,0.802182,0.14331,0.559083,0.952216,0.583526,0.38224,0.757706,0.239557,0.841686,0.0536535,0.63668,0.231352,0.405646,0.497957,0.580284,0.317005,0.231525,0.402856,0.744591,0.372533,0.794259,0.325414,0.257544,0.599707,0.198503,0.226301,0.426955,0.877276,0.0429791,0.371432,0.321463,0.672445,0.948718,0.711051,0.232433,0.668277,0.0864137,0.910966,0.787973,0.181757,0.614828,0.878313,0.114448,0.52358,0.391012,0.394468,0.693739,0.257914,0.974143,0.528459,0.861256,0.0750163,0.223262,0.0648758,0.431909,0.965302,0.762382,0.04518,0.545123,0.95006,0.535451,0.446752,0.305445,0.73079,0.495652,0.543573,0.645825,0.797423,0.831372,0.147139,0.850095,0.0903326,0.629673,0.0346594,0.94873,0.353316,0.799822,0.849533,0.655757,0.561898,0.969181,0.704317,0.288688,0.998019,0.328761,0.600862,0.212473,0.657587,0.537439,0.941042,0.542111,0.813137,0.300241,0.364124,0.134251,0.60805,0.340059,0.984135,0.948204,0.443188,0.686357,0.343168,0.487413,0.00381601,0.0646318,0.161746,0.628125,0.776825,0.515822,0.0966483,0.962768,0.397617,0.863356,0.69865,0.853693,0.300248,0.343608,0.701179,0.328434,0.986454,0.0695986,0.147661,0.517085,0.770385,0.857247,0.219824,0.482717,0.717695,0.63188,0.180998,0.788094,0.992105,0.927543,0.848635,0.500955,0.598753,0.14448,0.184669,0.0438865,0.985088,0.207386,0.554325,0.705391,0.195815,0.302748,0.632289,0.612294,0.97166,0.813655,0.740856,0.920358,0.413447,0.518105,0.168288,0.302143,0.817091,0.317809,0.769443,0.988044,0.986706,0.722762,0.0133301,0.154632,0.943156,0.779951,0.0236814,0.0625465,0.924447,0.478031,0.0520754,0.00434238,0.198168,0.590296,0.87559,0.0388454,0.324482,0.268504,0.961496,0.0828121,0.19509,0.808676,0.131522,0.509157,0.097027,0.137953,0.756576,0.925885,0.761439,0.321053,0.483553,0.835103,0.34869,0.543988,0.795672,0.683283,0.400087,0.182934,0.782014,0.779183,0.183274,0.898106,0.322247,0.568612,0.0529838,0.631107,0.563802,0.497439,0.411628,0.817774,0.042639,0.437712,0.850062,0.692805,0.790556,0.355378,0.747408,0.628847,0.743927,0.536827,0.65433,0.815782,0.915465,0.481639,0.0590093,0.334978,0.575325,0.979558,0.190039,0.627825,0.323149,0.662026,0.828366,0.266794,0.739009,0.384946,0.756004,0.573006,0.737298,0.458292,0.0410421,0.111158,0.53258,0.246562,0.424127,0.96131,0.447094,0.480448,0.141081,0.575855,0.326136,0.722285,0.959915,0.609492,0.709776,0.495728,0.397331,0.0794499,0.896487,0.502874,0.290483,0.374454,0.518028,0.20869,0.455817,0.123112,0.0119899,0.296573,0.554409,0.453248,0.520353,0.939991,0.818158,0.579428,0.427568,0.297117,0.728145,0.16038,0.43283,0.884597,0.554415,0.631365,0.76319,0.260933,0.484908,0.155664,0.977304,0.0320641,0.935888,0.980207,0.454984,0.220318,0.387743,0.293411,0.771114,0.446876,0.98868,0.408651,0.485822,0.724312,0.324069,0.421532,0.474136,0.705826,0.661527,0.547596,0.555321,0.615419,0.63165,0.509001,0.466206,0.373116,0.290782,0.949294,0.142486,0.143254,0.0709298,0.884906,0.535726,0.84889,0.283085,0.506562,0.0291658,0.951789,0.726213,0.706667,0.219154,0.426876,0.886518,0.210296,0.993686,0.676968,0.0373006,0.889847,0.263147,0.123632,0.076657,0.567274,0.446183,0.511641,0.312184,0.35227,0.759511,0.536138,0.551004,0.320952,0.865895,0.583094,0.297424,0.923215,0.55886,0.772905,0.875397,0.894168,0.0570392,0.915185,0.675672,0.0710002,0.447834,0.532061,0.0833018,0.259482,0.788509,0.544913,0.724068,0.91994,0.805443,0.230682,0.781026,0.205466,0.162539,0.55596,0.108484,0.519081,0.810288,0.289281,0.946806,0.452324,0.247964,0.0817815,0.993192,0.901364,0.45283,0.855887,0.0110427,0.350684,0.396619,0.230233,0.795836,0.555634,0.448458,0.967315,0.0347949,0.584193,0.368855,0.823737,0.200806,0.393877,0.992221,0.90802,0.639254,0.878083,0.646705,0.586234,0.610317,0.139025,0.585183,0.627069,0.783613,0.980192,0.303298,0.121094,|0.319662,0.779334,0.974686,0.928315,0.350295,0.56952,0.547662,0.897184,0.708268,0.122396,0.0634798,0.753254,0.0343882,0.423035,0.985254,0.305456,0.605972,0.667125,0.47388,0.287112,0.59652,0.889223,0.807236,0.587678,0.891738,0.774715,0.784817,0.144655,0.897118,0.000911891,0.357299,0.284793,0.86162,0.396401,0.835792,0.788852,0.964747,0.930466,0.985792,0.63418,0.689975,0.0874289,0.00663382,0.728246,0.795092,0.375988,0.574537,0.525721,0.0413853,0.190827,0.625516,0.693535,0.491549,0.578832,0.783175,0.439789,0.371248,0.798049,0.674165,0.571458,0.788404,0.529727,0.11957,0.404708,0.735144,0.500385,0.270296,0.0217375,0.693648,0.780892,0.491213,0.996313,0.181977,0.441055,0.307011,0.442905,0.429812,0.35018,0.226712,0.102038,0.0371578,0.307589,0.210551,0.130884,0.592942,0.538102,0.527365,0.671601,0.121493,0.194439,0.0377212,0.84188,0.413941,0.407397,0.324566,0.564946,0.0999283,0.537326,0.488325,0.813635,0.816082,0.0574938,0.170469,0.812783,0.529371,0.267551,0.0122336,0.424293,0.62254,0.725386,0.00982207,0.0117363,0.464742,0.838756,0.553218,0.0698215,0.575825,0.814094,0.227565,0.184871,0.184531,0.751037,0.554369,0.242051,0.550438,0.391875,0.142799,0.778439,0.786081,0.105605,0.931585,0.532412,0.93336,0.117239,0.061113,0.526446,0.27846,0.99315,0.253075,0.330401,0.398496,0.571674,0.657436,0.799378,0.956461,0.100327,0.0518293,0.691898,0.385241,0.724266,0.77655,0.00560141,0.078419,0.224957,0.460513,0.97018,0.877158,0.055724,0.134369,0.78986,0.365473,0.590639,0.429803,0.766319,0.699721,0.536646,0.55255,0.916048,0.798189,0.010735,0.0281379,0.421019,0.59054,0.0542382,0.792959,0.01193,0.291612,0.890063,0.971059,0.327821,0.104365,0.0809092,0.712785,0.94132,0.854157,0.688752,0.981278,0.42097,0.112971,0.912469,0.0126485,0.347761,0.506755,0.101342,0.567571,0.388155,0.982643,0.0324811,0.588569,0.13728,0.154079,0.643129,0.240028,0.924843,0.90037,0.583469,0.125357,0.496104,0.166948,0.99061,0.383317,0.812538,0.32222,0.969741,0.59216,0.482304,0.339719,0.00468796,0.241373,0.00215876,0.76043,0.392588,0.293594,0.63142,0.284913,0.75708,0.0292845,0.119852,0.71326,0.140742,0.892386,0.271034,0.882622,0.346525,0.801382,0.0919552,0.837181,0.86635,0.840841,0.768672,0.0813397,0.580561,0.411141,0.324568,0.936849,0.951399,0.47333,0.418191,0.182028,0.734369,0.52723,0.635116,0.128753,0.0370463,0.186157,0.0389584,0.931239,0.128718,0.676258,0.49797,0.833515,0.250914,0.122378,0.978593,0.166733,0.444957,0.0572121,0.833556,0.154969,0.697236,0.538929,0.874969,0.413834,0.0933238,0.900842,0.191873,0.0294148,0.466053,0.958579,0.289878,0.502472,0.862983,0.832804,0.288716,0.935309,0.670518,0.951191,0.195768,0.904904,0.534468,0.843799,0.627871,0.671001,0.153826,0.617934,0.879286,0.691665,0.00745887,0.149406,0.176906,0.935465,0.339353,0.375349,0.246467,0.481289,0.294531,0.678569,0.890993,0.213509,0.959396,0.109621,0.575146,0.9895,0.697102,0.62472,0.57778,0.417683,0.11212,0.88226,0.423555,0.200465,0.909764,0.11041,0.104784,0.252911,0.51968,0.0593169,0.102253,0.507517,0.974823,0.519085,0.198317,0.170903,0.00328952,0.7714,0.0100845,0.119248,0.949452,0.462066,0.840949,0.883635,0.0693052,0.29681,0.704263,0.428797,0.884181,0.748554,0.709242,0.351651,0.314134,0.0309381,0.425425,0.0799575,0.726283,0.0839697,0.272862,0.077705,0.570795,0.713852,0.210297,0.231342,0.801972,0.630171,0.920745,0.667824,0.385041,0.239911,0.53649,0.538279,0.710794,0.766064,0.193308,0.0263732,0.23443,0.982782,0.143085,0.789705,0.0486109,0.293133,0.0633153,0.693576,0.186677,0.35205,0.825445,0.396021,0.121515,0.616136,0.433804,0.481533,0.443746,0.818025,0.106245,0.0102417,0.321976,0.96849,0.925125,0.943609,0.370204,0.915496,0.0510117,0.169322,0.194571,0.860138,0.602584,0.514119,0.491152,0.282678,0.869451,0.144871,0.932529,0.530054,0.614159,0.782476,0.519581,0.0325115,0.540311,0.737424,0.217857,0.727463,0.57663,0.509141,0.734666,0.603793,0.514231,0.504588,0.653973,0.396664,0.191052,0.587717,0.71407,0.557086,0.829609,0.0957839,0.380705,0.169513,0.533988,0.83405,0.379136,0.979588,0.903254,0.845607,0.363806,0.809665,0.104715,0.550172,0.94905,0.976486,0.732506,0.702749,0.731964,0.656876,0.22696,0.570192,0.752917,0.0192211,0.234285,0.822719,0.789024,0.098612,0.859124,0.878339,0.983609,0.640499,0.286873,0.100947,0.256666,0.433254,0.715006,0.871051,0.567179,0.69337,0.638825,0.644158,0.771055,0.18379,0.942537,0.797749,0.348245,0.437042,0.625296,0.374892,0.153325,0.407569,0.821733,0.343665,0.462071,0.753451,0.674208,0.986629,0.843509,0.944643,0.59289,0.421933,0.750456,0.541087,0.00220829,0.133631,0.7685,0.786767,0.813331,0.350912,0.630821,0.585673,0.161023,0.517062,0.0393248,0.36539,0.401436,0.932698,0.434016,0.254725,0.0239363,0.315515,0.229407,0.120899,0.614824,0.0958081,0.412978,0.852576,0.51175,0.928795,0.0892748,0.887192,0.403422,0.0819404,0.946052,0.894927,0.413596,0.610906,0.521941,0.867717,0.804709,0.81041,0.16257,0.923153,0.365171,0.524886,0.467156,0.821717,0.662823,0.67413,0.0731802,0.0641592,0.486009,0.0176896,0.534797,0.76904,0.55421,0.448886,0.782711,0.611945,0.0365231,0.142561,0.589523,0.446225,0.72436,0.623071,0.701703,0.244081,0.494069,0.860164,0.819623,0.660098,0.464192,0.919105,0.206711,0.247386,0.0711591,0.875988,0.0472754,0.560139,0.98139,0.226444,0.740906,0.714634,0.997651,0.812382,0.899918,0.434121,0.0644352,0.47429,0.298972,0.227918,0.519785,0.226879,0.214944,0.832963,0.29982,0.499237,0.102128,0.23378,0.216502,0.919162,0.00176811,0.0216845,0.188585,0.259562,0.198781,0.773995,0.0481976,0.210727,0.579319,0.752508,0.59777,0.440278,0.864571,0.112975,0.512233,0.934508,0.702189,0.413362,0.382637,0.559472,0.144662,0.070088,0.450992,0.965703,0.116799,0.399078,0.559944,0.993618,0.220309,0.83835,0.508026,0.788489,0.783166,0.596053,0.950981,0.0254539,0.393739,0.935371,0.00864756,0.171103,0.668209,0.36544,0.693644,0.442191,0.253869,0.123798,0.680385,0.617266,0.802898,0.392761,0.921981,0.526881,0.00222284,0.785599,0.431444,0.401309,0.849233,0.720723,0.847953,0.04991,0.365217,0.799889,0.0742279,0.05898,0.772417,0.883749,0.881912,0.925074,0.892341,0.180881,0.213697,0.170988,0.299768,0.923826,0.264907,0.819815,0.186279,0.864492,0.100185,0.388981,0.670255,0.624017,0.715004,0.603493,0.586661,0.972803,0.167529,0.249347,0.075399,0.394238,0.997757,0.919299,0.401023,0.873006,0.71084,0.179083,0.0415143,0.751391,0.323468,0.868174,0.472914,0.757858,0.347369,0.209953,0.755798,0.00312066,0.766567,0.856326,0.59716,0.218297,0.282406,0.93137,0.499481,0.960955,0.924776,0.0588592,0.982477,0.0480917,0.76567,0.475196,0.996966,0.17307,0.263587,0.927175,0.0091809,0.692093,0.463668,0.768394,0.877152,0.375575,0.286856,0.93914,0.668884,0.819534,0.974383,0.319352,0.626372,0.920724,0.412453,0.335613,0.775668,0.761992,0.0411372,0.936051,0.650303,0.327809,0.139768,0.604838,0.369509,0.51545,0.781309,0.0315644,0.656841,0.802782,0.976894,0.117209,0.482996,0.944074,0.355219,0.106491,0.356509,0.868447,0.33614,0.620777,0.707534,0.239829,0.496555,0.626353,0.49318,0.736288,0.970153,0.686707,0.439953,0.189502,0.479183,0.551901,0.282717,0.481692,0.11652,0.48164,0.334441,0.387392,0.959751,0.984191,0.504603,0.185428,0.642553,0.535132,0.950427,0.298881,0.625902,0.405529,0.333022,0.129274,0.550961,0.0669318,0.423688,0.461452,0.325588,0.670999,0.818729,0.715993,0.553523,0.261162,0.918364,0.657327,0.330287,0.234708,0.690042,0.0685453,0.323754,0.802239,0.425903,0.00531018,0.0173749,0.290139,0.0927182,0.0158551,0.70221,0.753603,0.626616,0.867468,0.299606,0.436027,0.714368,0.0128617,0.481876,0.0432691,0.594,0.75257,0.216938,0.664952,0.326352,0.558143,0.890828,0.513937,0.993254,0.669662,0.14078,0.286099,0.266829,0.432423,0.0508798,0.321877,0.671941,0.368659,0.0215186,0.67352,0.598493,0.15579,0.204203,0.138123,0.834553,0.561294,0.179963,0.608806,0.535318,0.124756,0.561387,0.0938422,0.821288,0.759699,0.133265,0.68801,0.780057,0.425205,0.602528,0.866192,0.350027,0.135498,0.074624,0.653032,0.196434,0.208432,0.447765,0.786412,0.765375,0.999874,0.136823,0.410532,0.250414,0.930422,0.202188,0.373273,0.264754,0.313328,0.0966074,0.0224857,0.520967,0.541648,0.82167,0.361825,0.301766,0.480866,0.677105,0.876341,0.0226924,0.837533,0.17322,0.357566,0.4889,0.0151748,0.970046,0.093981,0.180812,0.192134,0.814053,0.781256,0.75008,0.112163,0.185675,0.119781,0.923373,0.509434,0.395148,0.953059,0.258123,0.222064,0.0229064,0.383825,0.116283,0.772772,0.729276,0.65179,0.431792,0.569614,0.570369,0.108738,0.210579,0.0470957,0.321236,0.0695434,0.620398,0.970579,0.466475,0.535891,0.360092,0.539174,0.622128,0.294692,0.31616,0.526132,0.445002,0.097128,0.731372,0.902962,0.537272,0.609761,0.656639,0.110569,0.299856,0.922346,0.608879,0.5097,0.705861,0.124421,0.30395,0.132985,0.345626,0.640513,0.522977,0.269258,0.447764,0.291676,0.379368,0.805044,0.794496,0.468407,0.0352457,0.976273,0.276287,0.397514,0.219388,0.280464,0.998446,0.170671,0.0657929,0.122679,0.884822,0.551892,0.0362531,0.115417,0.802384,0.344135,0.924583,0.42506,0.678729,0.708911,0.41455,0.385899,0.175292,0.0496692,0.351724,0.142989,0.82412,0.942675,0.960961,0.790022,0.890845,0.900632,0.246198,0.824099,0.0443095,0.971396,0.937984,0.396544,0.762761,|0.141747,0.547006,0.994837,0.279317,0.849668,0.605974,0.945867,0.641175,0.379617,0.822114,0.384521,0.570702,0.296482,0.268817,0.755941,0.804224,0.702399,0.11286,0.406856,0.204279,0.584279,0.421428,0.0614768,0.617531,0.352799,0.179198,0.166069,0.77113,0.32359,0.0389767,0.777835,0.877153,0.817509,0.519809,0.869575,0.0266917,0.714873,0.227933,0.738709,0.475303,0.655019,0.632053,0.197026,0.574054,0.261178,0.589829,0.0554796,0.64164,0.0422691,0.183607,0.0377018,0.383143,0.64567,0.429506,0.592641,0.907212,0.425228,0.380074,0.553345,0.970521,0.210773,0.0603117,0.399792,0.961692,0.0415382,0.0416623,0.599275,0.256799,0.482624,0.922071,0.570024,0.0178365,0.839067,0.80799,0.800918,0.542549,0.511942,0.896055,0.955477,0.68543,0.595435,0.388393,0.342474,0.0410902,0.270366,0.932769,0.863641,0.786689,0.374907,0.810555,0.858215,0.890942,0.250288,0.955345,0.61898,0.14181,0.323952,0.129353,0.128458,0.314245,0.691072,0.872792,0.958525,0.369082,0.449429,0.82315,0.648337,0.102736,0.538977,0.439397,0.0596667,0.940199,0.219705,0.443364,0.36283,0.765429,0.0437571,0.941948,0.656042,0.217901,0.960845,0.79634,0.175052,0.0153056,0.0873833,0.14663,0.719881,0.614616,0.875971,0.278044,0.0792699,0.91656,0.591073,0.223777,0.202676,0.603621,0.693391,0.959585,0.960844,0.785171,0.679208,0.518031,0.623199,0.552172,0.947979,0.556571,0.539138,0.797847,0.307469,0.395051,0.61972,0.231577,0.253477,0.958521,0.542298,0.0928178,0.759601,0.875384,0.154582,0.202441,0.0112554,0.178757,0.205328,0.914137,0.0740088,0.102309,0.257592,0.965064,0.880064,0.515627,0.375161,0.201584,0.820063,0.399428,0.442281,0.895802,0.90906,0.117878,0.877443,0.362813,0.478784,0.795373,0.543916,0.348421,0.928511,0.995881,0.847387,0.417362,0.74349,0.461387,0.816661,0.437021,0.763337,0.232275,0.907089,0.0495769,0.719262,0.416259,0.881264,0.251814,0.750493,0.827761,0.344444,0.658024,0.174237,0.496603,0.53219,0.14662,0.495392,0.443062,0.546144,0.389849,0.845357,0.538884,0.450808,0.539589,0.155073,0.155625,0.478477,0.739452,0.557262,0.859883,0.41813,0.190528,0.142998,0.087022,0.284942,0.790998,0.698441,0.469739,0.370158,0.130449,0.658308,0.0214979,0.0684469,0.599674,0.554075,0.712173,0.6873,0.618613,0.224075,0.0748835,0.9848,0.731695,0.373569,0.907356,0.967438,0.630941,0.69285,0.744734,0.0356814,0.772441,0.526454,0.331988,0.871436,0.729271,0.162122,0.155931,0.630495,0.078781,0.40651,0.718218,0.168097,0.234626,0.356801,0.768251,0.755177,0.768512,0.443473,0.858033,0.112481,0.130547,0.340009,0.343121,0.554294,0.888076,0.12642,0.846619,0.118444,0.556355,0.442125,0.20272,0.682035,0.985746,0.98377,0.902333,0.87028,0.455284,0.686497,0.601203,0.772406,0.367893,0.850295,0.784385,0.820004,0.683702,0.83518,0.0581773,0.733083,0.119482,0.171255,0.173954,0.131067,0.367132,0.529703,0.0563699,0.570041,0.0613642,0.285831,0.842626,0.0329337,0.455069,0.922181,0.0747945,0.725908,0.097083,0.97996,0.19121,0.79244,0.894104,0.997421,0.911855,0.903766,0.881354,0.473651,0.0954073,0.474339,0.666395,0.650558,0.32581,0.999406,0.28865,0.88672,0.84968,0.592173,0.421779,0.653508,0.532942,0.284175,0.900838,0.278843,0.556158,0.324697,0.748309,0.142965,0.447797,0.860557,0.365708,0.525371,0.825801,0.387275,0.999781,0.163196,0.647227,0.237023,0.968279,0.898294,0.0710403,0.224711,0.363286,0.335751,0.32265,0.101019,0.60389,0.340615,0.463452,0.360661,0.0811303,0.548464,0.563885,0.19647,0.613165,0.640897,0.591823,0.323288,0.188265,0.671944,0.193454,0.82117,0.946221,0.256889,0.0732286,0.722865,0.0861577,0.401544,0.30064,0.09637,0.570663,0.854106,0.21551,0.0232331,0.684027,0.640962,0.956352,0.272446,0.774784,0.284674,0.329961,0.852867,0.0499944,0.0370926,0.932219,0.383677,0.943456,0.718694,0.869617,0.922412,0.180385,0.632081,0.813391,0.7731,0.347487,0.331146,0.0521901,0.577586,0.310507,0.469858,0.671435,0.59071,0.545563,0.914754,0.664008,0.378667,0.830257,0.10384,0.54856,0.318798,0.883358,0.826861,0.844401,0.764604,0.126534,0.574008,0.892033,0.461991,0.305612,0.862959,0.964882,0.245125,0.155881,0.343769,0.980175,0.793208,0.520503,0.562094,0.445298,0.213329,0.419906,0.828524,0.110463,0.0143704,0.774638,0.872033,0.280204,0.247886,0.398828,0.581741,0.893144,0.337672,0.397694,0.682917,0.328708,0.531719,0.701386,0.678721,0.642083,0.949979,0.278975,0.66711,0.698135,0.522073,0.685478,0.344565,0.78229,0.508597,0.245137,0.28626,0.532359,0.463498,0.685241,0.905989,0.510164,0.564078,0.786596,0.926901,0.713008,0.435898,0.836564,0.647289,0.425605,0.411414,0.252836,0.365099,0.812633,0.958912,0.139402,0.637465,0.0807149,0.174873,0.312468,0.102213,0.732024,0.574512,0.133122,0.524267,0.53231,0.536933,0.454244,0.440785,0.119063,0.533376,0.967229,0.126133,0.979249,0.519676,0.90642,0.688166,0.0848365,0.706003,0.0594687,0.486533,0.182978,0.554665,0.708299,0.152699,0.55236,0.953439,0.433377,0.672063,0.834829,0.435209,0.0600379,0.112863,0.669651,0.697985,0.301917,0.303169,0.279939,0.82075,0.413321,0.84471,0.671404,0.243821,0.00424665,0.0774555,0.475823,0.985224,0.0430084,0.643181,0.439496,0.461104,0.684348,0.417476,0.29095,0.504411,0.771054,0.278602,0.20074,0.799491,0.448311,0.487652,0.673953,0.496472,0.948495,0.965565,0.760034,0.369135,0.163167,0.833521,0.454846,0.520126,0.731822,0.440739,0.273845,0.472345,0.310279,0.305435,0.770433,0.517518,0.620634,0.0523989,0.47805,0.194378,0.391154,0.677238,0.482036,0.707151,0.724322,0.675859,0.569845,0.199574,0.25853,0.0417557,0.249626,0.659336,0.204696,0.350724,0.427815,0.343695,0.150753,0.58851,0.0207906,0.159991,0.269747,0.105093,0.0297737,0.887742,0.461858,0.302735,0.260231,0.169364,0.368336,0.420416,0.486223,0.818105,0.851995,0.0915083,0.835692,0.140223,0.117467,0.465076,0.691585,0.168732,0.84073,0.315474,0.998152,0.127019,0.0184526,0.500295,0.852114,0.600285,0.389839,0.752891,0.788254,0.33885,0.40939,0.625074,0.480121,0.792628,0.0379386,0.459343,0.851824,0.427841,0.00912875,0.580274,0.738932,0.429754,0.710623,0.890682,0.750678,0.214942,0.572316,0.839655,0.68256,0.954531,0.403534,0.631934,0.652255,0.6043,0.145428,0.0698673,0.197427,0.694315,0.501475,0.969329,0.41272,0.504829,0.0959586,0.738629,0.233297,0.877035,0.654413,0.97471,0.997717,0.95491,0.628972,0.358681,0.791426,0.39269,0.122827,0.454858,0.481561,0.181949,0.510718,0.822207,0.12165,0.424644,0.0305902,0.153495,0.125014,0.418234,0.695584,0.165029,0.674683,0.369903,0.0303899,0.251543,0.0132738,0.579297,0.0920713,0.108395,0.597868,0.414426,0.931768,0.292793,0.248457,0.379534,0.673654,0.791668,0.535952,0.313597,0.719968,0.595131,0.13157,0.185528,0.454365,0.828491,0.649985,0.329274,0.664255,0.332688,0.614853,0.553266,0.919402,0.130305,0.196947,0.744835,0.625195,0.223351,0.238413,0.294801,0.594069,0.876826,0.662413,0.0491651,0.462398,0.982831,0.934382,0.204784,0.467451,0.376691,0.891661,0.863158,0.734547,0.881325,0.268052,0.642502,0.0671922,0.505898,0.378806,0.218609,0.458574,0.887993,0.684815,0.346936,0.812803,0.313544,0.172785,0.844859,0.396185,0.859865,0.675574,0.593486,0.992875,0.370625,0.096765,0.123978,0.821877,0.0986108,0.516829,0.0193133,0.841559,0.132386,0.403032,0.142148,0.265621,0.458707,0.592597,0.894731,0.685765,0.381347,0.376959,0.818275,0.163895,0.935662,0.348522,0.0729029,0.382251,0.376976,0.453758,0.0837137,0.344203,0.779788,0.983233,0.161843,0.0747202,0.250897,0.944483,0.0936055,0.44424,0.730586,0.959014,0.19517,0.776157,0.4294,0.323599,0.687998,0.414985,0.34105,0.0713296,0.182497,0.936911,0.0241226,0.642008,0.49152,0.75267,0.00652963,0.647531,0.121166,0.746514,0.47975,0.434496,0.771399,0.869088,0.240052,0.428999,0.0917374,0.495706,0.953631,0.445139,0.723507,0.51035,0.728185,0.524304,0.812769,0.00830609,0.843103,0.186768,0.569235,0.587278,0.0935947,0.949507,0.998813,0.850901,0.0773178,0.865547,0.917966,0.175435,0.908785,0.0460193,0.604066,0.942703,0.961265,0.114471,0.772126,0.944001,0.669803,0.8777,0.31956,0.896403,0.349419,0.373024,0.0477133,0.769846,0.621842,0.614457,0.415575,0.9581,0.665051,0.803907,0.740622,0.31664,0.187777,0.80647,0.250076,0.364882,0.392489,0.116816,0.0117128,0.650095,0.643424,0.68216,0.860978,0.595319,0.494092,0.618299,0.174031,0.78296,0.454833,0.983403,0.302557,0.776861,0.575694,0.0859808,0.611554,0.742471,0.723687,0.653903,0.757968,0.96622,0.617279,0.552666,0.297071,0.58785,0.917236,0.406276,0.016425,0.322007,0.274259,0.136055,0.329313,0.486575,0.0371162,0.076714,0.126991,0.422699,0.452683,0.0024991,0.154386,0.513448,0.166137,0.0903627,0.766514,0.104211,0.474496,0.961675,0.383046,0.54549,0.940708,0.0118606,0.42261,0.0176387,0.761665,0.727956,0.391103,0.9127,0.977892,0.90605,0.581342,0.489557,0.282034,0.508412,0.100546,0.2802,0.244193,0.624337,0.0450013,0.246559,0.954669,0.066848,0.758398,0.954209,0.372153,0.383831,0.506788,0.250872,0.757267,0.836836,0.86014,0.828979,0.0860193,0.756513,0.529906,0.707675,0.0586526,0.0229531,0.604758,0.943031,0.629655,0.800755,0.17938,0.931061,0.555543,0.692457,0.758802,0.395653,0.609822,0.943264,0.0821892,0.970256,0.00264013,0.313908,0.485036,0.167672,0.54193,0.798807,0.521898,0.0206566,0.269942,0.735293,0.678028,0.887071,0.46661,0.167825,0.0631174,0.0064292,0.0433797,0.370288,0.444806,0.392024,|0.883874,0.910033,0.650493,0.500812,0.767305,0.179833,0.37393,0.115139,0.883293,0.938805,0.721205,0.675001,0.86767,0.749789,0.0245566,0.206796,0.128874,0.228267,0.532769,0.331217,0.422612,0.443452,0.537438,0.884572,0.255252,0.708608,0.638834,0.0148998,0.391811,0.139454,0.522498,0.248728,0.497287,0.0947736,0.00960064,0.804733,0.64118,0.199483,0.88493,0.990762,0.732801,0.38873,0.127645,0.727998,0.273271,0.322319,0.185891,0.897559,0.320543,0.86742,0.589867,0.757637,0.962049,0.475809,0.580745,0.504908,0.630181,0.460571,0.629415,0.145152,0.408973,0.126124,0.368718,0.90334,0.795271,0.817945,0.950466,0.601166,0.8729,0.81599,0.665807,0.874621,0.184144,0.852013,0.32652,0.107044,0.754526,0.385518,0.297519,0.881484,0.881625,0.510954,0.847655,0.614605,0.0174559,0.289193,0.135533,0.921495,0.194351,0.357791,0.311262,0.0248948,0.446671,0.564824,0.896189,0.188866,0.954364,0.400647,0.512604,0.844287,0.908133,0.116296,0.0873329,0.365212,0.905687,0.751767,0.544706,0.66938,0.4549,0.546458,0.307672,0.56939,0.447803,0.171505,0.216812,0.395303,0.126355,0.0148927,0.226561,0.105565,0.793065,0.924229,0.285658,0.0722128,0.817075,0.293749,0.0280594,0.488031,0.668271,0.514377,0.00619435,0.673157,0.418212,0.421709,0.521979,0.35895,0.326667,0.95115,0.365345,0.962035,0.705414,0.259663,0.493796,0.826231,0.600173,0.906387,0.0211943,0.538998,0.413004,0.0835546,0.539977,0.345847,0.136713,0.651722,0.535861,0.319836,0.871924,0.426536,0.409699,0.795028,0.834208,0.257917,0.813513,0.932277,0.361834,0.394809,0.110034,0.87893,0.334329,0.588985,0.125897,0.874876,0.204212,0.937376,0.465193,0.539923,0.656274,0.48786,0.529196,0.295987,0.538214,0.716982,0.136588,0.700954,0.148263,0.78161,0.92503,0.614611,0.471913,0.844182,0.203938,0.364363,0.413247,0.645333,0.994391,0.0323596,0.388819,0.650262,0.18315,0.737572,0.183472,0.496392,0.233548,0.609824,0.814787,0.632633,0.721674,0.348561,0.990597,0.22375,0.581679,0.944226,0.178412,0.835726,0.0356752,0.611853,0.902779,0.0761816,0.866852,0.972876,0.241832,0.657676,0.380439,0.697012,0.119618,0.27273,0.689211,0.96071,0.561558,0.501467,0.0625359,0.148401,0.107296,0.055444,0.842932,0.66245,0.17247,0.157561,0.316119,0.707867,0.652916,0.560106,0.611542,0.858559,0.68382,0.974806,0.926862,0.757481,0.314232,0.312932,0.877504,0.0683122,0.192389,0.134649,0.468186,0.60075,0.871264,0.0960277,0.0871153,0.170471,0.996747,0.569395,0.613321,0.742692,0.483476,0.900594,0.0744578,0.6772,0.154032,0.960328,0.337673,0.27745,0.222431,0.644124,0.673766,0.101091,0.80735,0.505214,0.91526,0.0151312,0.458267,0.10445,0.896005,0.762921,0.87699,0.438979,0.094757,0.42679,0.590278,0.790731,0.603856,0.628124,0.628728,0.352367,0.806485,0.63177,0.393374,0.875673,0.22544,0.617538,0.501879,0.204056,0.575754,0.631073,0.130679,0.399974,0.896795,0.767955,0.75573,0.734058,0.892372,0.18123,0.781455,0.34774,0.706346,0.0262839,0.661531,0.0564421,0.617849,0.0395491,0.162943,0.398757,0.0733376,0.45382,0.193518,0.528508,0.530095,0.92729,0.829696,0.375909,0.736331,0.269022,0.015668,0.997129,0.299471,0.986451,0.777327,0.0165606,0.248905,0.265683,0.573902,0.493147,0.991385,0.371938,0.405804,0.521807,0.729072,0.609034,0.613,0.210544,0.344112,0.912448,0.330337,0.899843,0.285479,0.0287316,0.0446591,0.793846,0.431691,0.0194317,0.29513,0.483205,0.0276204,0.385043,0.717261,0.518283,0.633781,0.947098,0.494709,0.33357,0.63323,0.246978,0.271359,0.0564104,0.853363,0.0730736,0.71854,0.846057,0.734363,0.7534,0.511325,0.21693,0.705066,0.381235,0.261773,0.949688,0.156675,0.442974,0.374126,0.181623,0.230276,0.507043,0.0109829,0.423227,0.0372171,0.0151041,0.647971,0.896079,0.583535,0.462235,0.605641,0.536627,0.196192,0.709526,0.898352,0.0290589,0.853024,0.121007,0.553593,0.764489,0.263758,0.589894,0.235523,0.625183,0.414809,0.269201,0.661236,0.835542,0.22728,0.109663,0.12401,0.41609,0.286288,0.956539,0.651475,0.324551,0.0555202,0.873903,0.945896,0.708657,0.966472,0.279949,0.135987,0.411258,0.295729,0.785903,0.154104,0.0260822,0.924758,0.862935,0.395162,0.667337,0.569793,0.154997,0.842972,0.306019,0.246442,0.406135,0.480831,0.847379,0.518249,0.429481,0.672385,0.993601,0.708014,0.759491,0.348315,0.227861,0.472053,0.699294,0.193899,0.763556,0.350904,0.10889,0.98086,0.456078,0.130517,0.0118335,0.140437,0.190599,0.916649,0.694367,0.00535476,0.107999,0.475189,0.519859,0.140399,0.819287,0.13168,0.630949,0.261713,0.886827,0.913626,0.785831,0.96158,0.879503,0.317849,0.738494,0.895707,0.872746,0.922126,0.911369,0.246628,0.738562,0.568628,0.378975,0.966246,0.165318,0.572713,0.0248826,0.21269,0.928505,0.340066,0.396088,0.874688,0.25065,0.965276,0.55242,0.314579,0.0595961,0.171916,0.551608,0.511404,0.0171014,0.927916,0.827633,0.726464,0.602789,0.157488,0.225547,0.555924,0.148752,0.383087,0.699134,0.0980954,0.169383,0.327935,0.442196,0.415823,0.41523,0.394434,0.587668,0.522622,0.881282,0.819577,0.200099,0.998182,0.418272,0.416074,0.94904,0.294522,0.463358,0.667495,0.293253,0.126708,0.870171,0.204634,0.192661,0.0632975,0.273207,0.0142162,0.172084,0.848759,0.600408,0.817582,0.224323,0.148584,0.524271,0.966227,0.30108,0.349447,0.176411,0.0319779,0.427368,0.873906,0.625324,0.892487,0.1841,0.890396,0.261165,0.0258127,0.597337,0.238557,0.82638,0.795998,0.520811,0.0367693,0.639273,0.101261,0.463337,0.672708,0.154534,0.135709,0.888024,0.806734,0.796075,0.303237,0.990131,0.584416,0.654958,0.958467,0.875733,0.0116615,0.183999,0.599479,0.168259,0.648315,0.499953,0.093768,0.605392,0.72844,0.652758,0.914535,0.408323,0.929704,0.65991,0.273372,0.311809,0.625307,0.253492,0.96014,0.635359,0.118799,0.738804,0.646109,0.256131,0.738385,0.967915,0.839358,0.978991,0.534149,0.81954,0.634369,0.682158,0.250505,0.634957,0.770383,0.174073,0.528837,0.369271,0.733471,0.68449,0.575596,0.482349,0.139326,0.115869,0.497273,0.859174,0.463496,0.801353,0.559726,0.429563,0.63946,0.931226,0.480376,0.643025,0.422422,0.364827,0.659659,0.973978,0.252186,0.854218,0.0714961,0.291868,0.928651,0.129294,0.601846,0.674838,0.479094,0.851009,0.616021,0.615477,0.542231,0.0139025,0.274904,0.256078,0.866375,0.145963,0.700239,0.722924,0.362831,0.671463,0.981748,0.65098,0.637833,0.869063,0.594275,0.184159,0.639985,0.327954,0.27931,0.512851,0.254008,0.677143,0.151021,0.952848,0.553232,0.341679,0.716729,0.941024,0.0862588,0.922549,0.584844,0.172951,0.511851,0.363032,0.879169,0.552089,0.495591,0.534629,0.972814,0.076149,0.47078,0.333457,0.365051,0.826941,0.742008,0.969561,0.186626,0.887127,0.340721,0.572025,0.853816,0.989235,0.943044,0.526486,0.541762,0.658759,0.711106,0.0269417,0.564097,0.779364,0.462906,0.396656,0.139699,0.497837,0.991625,0.146602,0.23793,0.172401,0.0158755,0.562324,0.310973,0.455783,0.461253,0.316823,0.624328,0.891507,0.538326,0.0718011,0.827391,0.134103,0.94323,0.156257,0.0779464,0.88785,0.626482,0.548085,0.59661,0.217871,0.417183,0.0408965,0.343469,0.83838,0.500007,0.366267,0.850195,0.853396,0.336332,0.339543,0.997813,0.564068,0.759062,0.864161,0.81887,0.3768,0.996045,0.969107,0.760514,0.79958,0.925516,0.144972,0.743432,0.630404,0.566692,0.995047,0.0867857,0.878507,0.273045,0.745405,0.307065,0.613954,0.91378,0.142817,0.750969,0.483195,0.0702441,0.0054431,0.409426,0.915748,0.794291,0.766006,0.732926,0.465539,0.418196,0.0809762,0.779904,0.197059,0.398806,0.400611,0.286649,0.674193,0.780819,0.801983,0.610502,0.632386,0.997125,0.611413,0.0924608,0.952118,0.458185,0.102764,0.145624,0.0456348,0.126181,0.0057404,0.0774947,0.0464208,0.0351685,0.982515,0.0681803,0.178443,0.261037,0.127,0.687409,0.485597,0.209556,0.616041,0.394561,0.822025,0.400412,0.885307,0.325729,0.76679,0.899201,0.328556,0.508108,0.214323,0.129687,0.156967,0.0066601,0.405833,0.980017,0.352404,0.935223,0.706061,0.169645,0.804003,0.770547,0.513022,0.681515,0.880274,0.678671,0.103767,0.875133,0.339253,0.444493,0.543527,0.613661,0.75727,0.678632,0.0677389,0.690476,0.511239,0.149135,0.701954,0.305308,0.158156,0.0376304,0.0494373,0.463289,0.863125,0.184708,0.678813,0.292578,0.236248,0.204932,0.861418,0.295904,0.940812,0.0114293,0.820831,0.530821,0.87394,0.477093,0.716118,0.724401,0.0463695,0.789073,0.328586,0.446589,0.595892,0.949908,0.11982,0.95919,0.931292,0.54606,0.0274416,0.00193256,0.454333,0.0441968,0.258632,0.560415,0.131638,0.945733,0.483314,0.23085,0.40923,0.723374,0.689129,0.506025,0.0539142,0.858912,0.835934,0.680863,0.856834,0.433372,0.906389,0.269112,0.0854484,0.799292,0.57952,0.801293,0.425756,0.859318,0.504272,0.547292,0.867018,0.215687,0.199267,0.153294,0.607231,0.506658,0.277095,0.280742,0.156679,0.0491638,0.795679,0.998325,0.286543,0.605468,0.85033,0.266407,0.550149,0.830167,0.0449741,0.663118,0.720538,0.164766,0.843787,0.259872,0.0732244,0.932258,0.00247669,0.715699,0.140455,0.659464,0.785616,0.820433,0.269597,0.248421,0.637689,0.102798,0.181984,0.0826345,0.612384,0.711155,0.527065,0.94005,0.0369988,0.186868,0.877094,0.105135,0.365435,0.369503,0.978491,0.419025,0.516524,0.830136,0.845392,0.78356,0.510107,0.0797555,0.791315,0.537549,0.815845,0.0973239,0.384206,0.287675,0.930887,0.62489,0.853351,0.831243,0.0447926,0.301525,0.910552,0.235066,0.622798,0.859411,0.139388,|0.441567,0.557329,0.212606,0.995105,0.312306,0.836105,0.631085,0.968077,0.549714,0.310508,0.687754,0.514714,0.983763,0.389979,0.150922,0.603981,0.841027,0.0920177,0.821444,0.829958,0.946342,0.054427,0.0257025,0.45149,0.853528,0.806346,0.935974,0.721298,0.162921,0.749166,0.962607,0.954955,0.875826,0.989477,0.455843,0.533202,0.358084,0.584066,0.834551,0.7151,0.782938,0.969512,0.788592,0.545838,0.395856,0.72862,0.183619,0.023978,0.666552,0.39292,0.33691,0.267244,0.880903,0.519654,0.378942,0.384637,0.326267,0.704648,0.310148,0.728512,0.936566,0.597806,0.681525,0.712122,0.456505,0.271466,0.484743,0.413275,0.148915,0.0279967,0.348336,0.750022,0.985718,0.243662,0.772218,0.950324,0.796923,0.810598,0.805027,0.0219039,0.831631,0.247735,0.988054,0.915813,0.939643,0.522611,0.62693,0.844385,0.924303,0.118324,0.881054,0.405355,0.285401,0.700859,0.0948324,0.366651,0.754407,0.913891,0.688964,0.496793,0.799897,0.856442,0.761624,0.0109485,0.997891,0.332927,0.0250298,0.0709995,0.550318,0.17883,0.693956,0.183846,0.756618,0.940206,0.132177,0.513057,0.500785,0.553262,0.205105,0.962756,0.847446,0.833686,0.81922,0.180936,0.191475,0.261995,0.559213,0.650624,0.063338,0.954971,0.781468,0.0741656,0.491336,0.770323,0.453439,0.73555,0.411331,0.903791,0.126778,0.956897,0.259096,0.78449,0.537291,0.727193,0.194196,0.77779,0.103368,0.331368,0.870516,0.161601,0.735781,0.974844,0.784096,0.285046,0.0793523,0.0302114,0.423026,0.572794,0.593736,0.20025,0.331995,0.853915,0.836101,0.715583,0.170869,0.311396,0.274579,0.633878,0.0810162,0.929516,0.935697,0.910154,0.9327,0.455991,0.242597,0.951951,0.540716,0.250513,0.293974,0.698824,0.514754,0.740525,0.37275,0.327505,0.662173,0.17403,0.00235134,0.372734,0.752439,0.800081,0.162737,0.442019,0.544644,0.0434029,0.147034,0.0116247,0.816987,0.368981,0.4082,0.933536,0.985753,0.370431,0.46283,0.621973,0.304772,0.596551,0.946609,0.830264,0.522456,0.135368,0.998481,0.962362,0.348096,0.658376,0.0165649,0.98163,0.250817,0.0156478,0.268969,0.279816,0.87748,0.0225459,0.989778,0.249941,0.330624,0.233022,0.121021,0.0685275,0.943495,0.193569,0.178009,0.258418,0.256437,0.993766,0.921644,0.933566,0.811593,0.304367,0.0969094,0.503065,0.779188,0.45004,0.574699,0.409977,0.205367,0.0257438,0.653175,0.442101,0.760025,0.530186,0.530929,0.444372,0.262081,0.502637,0.928728,0.706725,0.206549,0.448927,0.850167,0.845941,0.848311,0.11855,0.971678,0.086845,0.246737,0.203491,0.562487,0.0754606,0.626464,0.0424876,0.350444,0.438642,0.812817,0.294207,0.372608,0.431576,0.0708607,0.551185,0.526586,0.466622,0.828406,0.746795,0.0682696,0.0738052,0.620736,0.0879151,0.922242,0.960681,0.498742,0.268542,0.747488,0.944268,0.261791,0.346144,0.98684,0.702788,0.246724,0.693335,0.360087,0.871353,0.940385,0.964043,0.360465,0.211342,0.895727,0.430298,0.331066,0.336502,0.162813,0.949148,0.487553,0.470033,0.373665,0.389326,0.706929,0.847554,0.76342,0.808071,0.962744,0.288811,0.574377,0.666255,0.572666,0.782921,0.887532,0.449827,0.261804,0.836832,0.344233,0.827884,0.816374,0.284571,0.408032,0.642484,0.0319975,0.471957,0.566836,0.217861,0.170104,0.818115,0.309163,0.886806,0.826849,0.796974,0.0601251,0.718704,0.98533,0.367806,0.306853,0.206461,0.8934,0.277302,0.0411452,0.773973,0.347301,0.198469,0.642364,0.354264,0.929842,0.616825,0.640567,0.257736,0.312733,0.717216,0.38479,0.150782,0.877459,0.110475,0.0290262,0.826075,0.572869,0.939646,0.952897,0.496669,0.272589,0.320211,0.707505,0.808512,0.612577,0.0905621,0.75494,0.735974,0.0761347,0.87955,0.600391,0.294819,0.152382,0.200525,0.576723,0.636324,0.380151,0.382585,0.0891732,0.385105,0.804347,0.646553,0.678832,0.516907,0.285712,0.832539,0.599843,0.177048,0.542436,0.443207,0.964667,0.993086,0.554114,0.634466,0.95026,0.334107,0.685492,0.369553,0.377442,0.922825,0.310143,0.554905,0.505788,0.191898,0.160134,0.268694,0.733786,0.0896233,0.971435,0.35275,0.368627,0.544337,0.941707,0.347526,0.832486,0.544466,0.794751,0.28274,0.197585,0.116379,0.574813,0.940812,0.355638,0.620538,0.623185,0.898859,0.825961,0.66787,0.736309,0.214515,0.676356,0.927254,0.492077,0.162956,0.735808,0.463554,0.797456,0.125252,0.718481,0.187766,0.398608,0.677479,0.559306,0.543704,0.28565,0.633549,0.466123,0.0923269,0.211506,0.209373,0.196008,0.469983,0.711817,0.598557,0.959274,0.358715,0.0254602,0.888909,0.0850389,0.980635,0.213773,0.885208,0.184759,0.0335701,0.665206,0.911398,0.362171,0.470367,0.66834,0.484146,0.811564,0.474135,0.688161,0.936261,0.949216,0.806192,0.45118,0.9315,0.725852,0.142163,0.464605,0.312731,0.756751,0.312572,0.444206,0.520587,0.597989,0.847722,0.19454,0.515351,0.826326,0.494379,0.559193,0.185195,0.0777154,0.73677,0.669358,0.376839,0.71333,0.137074,0.561501,0.169784,0.491627,0.044961,0.550259,0.507365,0.89789,0.185286,0.254103,0.552314,0.0321901,0.323624,0.719566,0.581016,0.925733,0.0902666,0.168199,0.934683,0.344466,0.0900827,0.363456,0.850702,0.330362,0.665723,0.194082,0.61456,0.707531,0.901782,0.126005,0.561348,0.537358,0.335402,0.583244,0.768473,0.303544,0.48288,0.376202,0.567162,0.492549,0.373962,0.550928,0.193591,0.647568,0.0557169,0.402761,0.748131,0.0451382,0.674711,0.282803,0.0955762,0.290737,0.188808,0.588097,0.408218,0.942982,0.948334,0.542897,0.95575,0.71172,0.684133,0.780153,0.532859,0.240487,0.921176,0.973026,0.906123,0.775529,0.172848,0.32459,0.775608,0.601465,0.568234,0.0158393,0.340778,0.861838,0.0335761,0.611931,0.0563613,0.223337,0.776853,0.07581,0.405556,0.293561,0.709392,0.108209,0.661377,0.0578318,0.752217,0.692331,0.951635,0.931327,0.0785151,0.463711,0.289985,0.948604,0.339999,0.381666,0.953548,0.434535,0.880928,0.58838,0.500924,0.903398,0.488966,0.0407699,0.940115,0.127653,0.10202,0.0688339,0.388185,0.237792,0.95246,0.875503,0.498593,0.180668,0.323036,0.448001,0.574519,0.00391066,0.214394,0.92315,0.491763,0.0974228,0.283984,0.624956,0.847683,0.904007,0.67042,0.125886,0.103679,0.859843,0.855433,0.274386,0.491095,0.852517,0.642745,0.721319,0.39726,0.565339,0.519801,0.653824,0.893836,0.485368,0.846887,0.263116,0.982592,0.535695,0.984348,0.442136,0.155159,0.0114508,0.679574,0.0798954,0.664907,0.315046,0.738734,0.206139,0.687736,0.132927,0.0918478,0.0288914,0.0695444,0.953735,0.160006,0.535895,0.00556391,0.116806,0.69684,0.403572,0.571466,0.0890559,0.111399,0.529448,0.557686,0.800931,0.101521,0.849845,0.371645,0.760625,0.451546,0.569437,0.156172,0.711616,0.725063,0.275182,0.123989,0.757579,0.181541,0.617203,0.784411,0.922786,0.703479,0.696475,0.490312,0.577582,0.376458,0.145555,0.066707,0.184289,0.678656,0.516815,0.87146,0.984723,0.787363,0.292633,0.0995764,0.0839754,0.307864,0.935196,0.598762,0.265448,0.132868,0.492317,0.650494,0.191781,0.0915543,0.303204,0.735228,0.835956,0.415053,0.0400472,0.316471,0.207624,0.872682,0.100407,0.224725,0.854858,0.985392,0.488741,0.519198,0.9618,0.662114,0.833899,0.452863,0.346005,0.874155,0.0830758,0.301353,0.863419,0.756363,0.665872,0.817142,0.195323,0.530332,0.237158,0.138852,0.615573,0.624733,0.945308,0.711482,0.272411,0.122361,0.327135,0.887596,0.498946,0.592587,0.884455,0.373721,0.878075,0.7128,0.670513,0.0374076,0.312487,0.0332149,0.619856,0.142306,0.644509,0.0338047,0.291998,0.831142,0.879233,0.136321,0.243391,0.579758,0.123809,0.728996,0.941417,0.817759,0.233758,0.318271,0.0630481,0.851631,0.644259,0.90388,0.73201,0.0761642,0.103889,0.199645,0.183689,0.145748,0.317947,0.620455,0.490659,0.0525774,0.872423,0.645665,0.714246,0.440531,0.227114,0.18482,0.911373,0.558787,0.676157,0.234227,0.810292,0.103038,0.602852,0.284798,0.252293,0.369857,0.564554,0.299556,0.724153,0.954268,0.102995,0.409223,0.0374328,0.880261,0.909896,0.041862,0.351894,0.18714,0.121658,0.043466,0.337416,0.961673,0.365378,0.370365,0.567296,0.345818,0.69991,0.861938,0.73119,0.18081,0.430367,0.540921,0.44036,0.986471,0.519972,0.14441,0.799193,0.657112,0.624968,0.376692,0.705161,0.337455,0.775751,0.548194,0.193986,0.394639,0.560545,0.0106372,0.816935,0.633928,0.080656,0.663038,0.527488,0.989157,0.242265,0.181229,0.457679,0.226889,0.997739,0.622224,0.578861,0.785633,0.814497,0.630411,0.116923,0.190339,0.163802,0.953091,0.930958,0.895959,0.136281,0.116038,0.1324,0.255336,0.870153,0.307571,0.351651,0.953014,0.77172,0.866174,0.705405,0.242331,0.683454,0.343772,0.909044,0.0425474,0.846123,0.105965,0.225381,0.786371,0.399495,0.347907,0.673,0.436246,0.480213,0.960922,0.447484,0.927227,0.280055,0.00943601,0.0365822,0.626123,0.737346,0.161552,0.0589771,0.374278,0.430258,0.00273657,0.444672,0.283518,0.177933,0.563128,0.0120644,0.677085,0.738298,0.682948,0.334369,0.618088,0.528764,0.370049,0.039472,0.618253,0.77294,0.165202,0.527774,0.495167,0.128779,0.177328,0.18726,0.260599,0.998166,0.429669,0.448117,0.0522732,0.839306,0.803335,0.892397,0.925207,0.246591,0.404854,0.950806,0.390868,0.370062,0.237309,0.877577,0.784448,0.0067718,0.0450086,0.878514,0.721002,0.270943,0.78965,0.89908,0.912072,0.0383289,0.830377,0.0682994,0.819383,0.879638,0.882146,0.571753,0.164835,0.383839,0.056576,0.0341425,0.642826,0.0917431,0.554975,0.622804,0.752299,0.611623,0.888984,0.348152,0.867081,0.0994548,0.800619,0.883409,0.0630692,0.500181,0.189451,0.802791,0.193225,|0.497021,0.466367,0.95594,0.323817,0.550811,0.929601,0.580693,0.174054,0.426683,0.265151,0.224167,0.326753,0.0802918,0.697981,0.976001,0.625476,0.392941,0.887006,0.10875,0.923557,0.976906,0.731026,0.594033,0.596245,0.968625,0.374713,0.535972,0.391842,0.877969,0.998604,0.231639,0.274943,0.0952873,0.404114,0.36243,0.315476,0.672544,0.954428,0.181118,0.558028,0.507664,0.774433,0.256422,0.749287,0.715297,0.833714,0.711558,0.589048,0.286434,0.36486,0.433687,0.483549,0.78143,0.671452,0.74822,0.800546,0.755028,0.147607,0.676644,0.380671,0.982157,0.913995,0.125375,0.379756,0.87844,0.761971,0.779526,0.42729,0.114508,0.807244,0.939973,0.205049,0.667468,0.997672,0.746924,0.227877,0.704559,0.281882,0.292094,0.724188,0.420978,0.251932,0.290651,0.0653343,0.835057,0.741991,0.364023,0.296924,0.185128,0.4565,0.307942,0.635657,0.331769,0.375438,0.754617,0.13762,0.687921,0.183796,0.315793,0.202822,0.782704,0.360918,0.252671,0.101429,0.924805,0.693243,0.0480624,0.906093,0.669365,0.756687,0.173509,0.354675,0.275911,0.401104,0.505085,0.87717,0.0378959,0.286421,0.32751,0.768492,0.725679,0.189424,0.623617,0.463662,0.0979213,0.815792,0.906544,0.00521046,0.221627,0.65148,0.769964,0.965732,0.902756,0.371054,0.486631,0.61876,0.0618411,0.704139,0.629023,0.639651,0.366878,0.172239,0.99429,0.878568,0.232983,0.910977,0.0985373,0.0993011,0.170956,0.0777075,0.233267,0.258953,0.264947,0.560682,0.592598,0.412658,0.610892,0.238417,0.605614,0.0838388,0.648214,0.0761688,0.861355,0.891614,0.382351,0.834551,0.151868,0.839014,0.34811,0.589264,0.177727,0.0815963,0.935717,0.446539,0.678563,0.642056,0.240551,0.837679,0.557302,0.311226,0.990439,0.642343,0.871587,0.203995,0.0525412,0.0291358,0.51449,0.313401,0.344444,0.36824,0.683868,0.0802675,0.887351,0.108967,0.0503542,0.494262,0.854237,0.246579,0.691644,0.599306,0.602304,0.567377,0.602196,0.180528,0.358099,0.969532,0.860217,0.917872,0.33322,0.633703,0.883293,0.691693,0.331749,0.966265,0.0530687,0.140909,0.673197,0.112069,0.995254,0.14425,0.682801,0.0244874,0.490431,0.66586,0.937731,0.359664,0.253842,0.0775128,0.457792,0.852257,0.234173,0.567106,0.528962,0.801626,0.888305,0.270343,0.418624,0.623606,0.310662,0.890349,0.729494,0.471405,0.0110017,0.224741,0.630476,0.513017,0.518925,0.553839,0.463401,0.211483,0.701943,0.588261,0.104262,0.871508,0.255843,0.57443,0.830896,0.311607,0.496968,0.469635,0.547971,0.756982,0.580735,0.844932,0.161162,0.0515001,0.778453,0.894177,0.779871,0.617209,0.283099,0.162311,0.0102018,0.531549,0.350073,0.482586,0.293911,0.224569,0.988382,0.203283,0.391835,0.788346,0.169306,0.199257,0.256522,0.0222656,0.281851,0.231044,0.193865,0.526045,0.372156,0.390945,0.978052,0.11975,0.0118125,0.893123,0.42625,0.914595,0.154134,0.38976,0.537835,0.88183,0.483829,0.742028,0.8028,0.914663,0.0615714,0.236076,0.24072,0.781774,0.88669,0.975914,0.193536,0.0638974,0.11083,0.97739,0.228787,0.265712,0.104165,0.795483,0.38949,0.807335,0.784341,0.290208,0.295893,0.86077,0.762073,0.16466,0.0136136,0.0887801,0.964755,0.0468399,0.804031,0.256769,0.997504,0.942367,0.342818,0.497332,0.095199,0.914468,0.052457,0.790687,0.57097,0.994724,0.903654,0.483284,0.333275,0.257505,0.975815,0.21117,0.444125,0.723715,0.128102,0.0662227,0.525533,0.997316,0.728917,0.44878,0.370365,0.575161,0.518873,0.131759,0.125868,0.81588,0.153368,0.86441,0.668214,0.629802,0.90946,0.627931,0.220318,0.580343,0.467295,0.340785,0.0967574,0.401797,0.859587,0.539194,0.735944,0.589282,0.689489,0.0893332,0.988315,0.598977,0.153534,0.828754,0.00211519,0.803285,0.354809,0.00921446,0.565505,0.831523,0.746875,0.951018,0.718421,0.223484,0.872261,0.113209,0.0369973,0.0528648,0.320651,0.202601,0.556872,0.72147,0.266453,0.812071,0.417397,0.489432,0.30203,0.227133,0.0872759,0.823061,0.986803,0.442971,0.300439,0.993534,0.606888,0.296575,0.524396,0.259609,0.0592538,0.309887,0.762357,0.413387,0.149801,0.913872,0.686233,0.783861,0.133483,0.662959,0.137375,0.853216,0.825215,0.373301,0.494257,0.876987,0.0184464,0.0207375,0.0783897,0.243674,0.534331,0.76419,0.49895,0.105739,0.975283,0.170349,0.953509,0.00772065,0.0506405,0.196651,0.982775,0.301838,0.965212,0.117283,0.449146,0.601309,0.283455,0.948129,0.586613,0.11551,0.151138,0.860172,0.916783,0.67673,0.0936704,0.896371,0.181309,0.610043,0.45109,0.182566,0.258727,0.466262,0.075025,0.475439,0.10636,0.837482,0.36524,0.00984168,0.75234,0.741131,0.329185,0.421645,0.740322,0.0240374,0.57639,0.117387,0.221937,0.105504,0.156015,0.87218,0.323001,0.761635,0.465868,0.334547,0.800239,0.19776,0.013834,0.536585,0.428619,0.642529,0.272496,0.198699,0.294936,0.394673,0.195674,0.716482,0.531492,0.615318,0.904963,0.499419,0.767154,0.257734,0.997112,0.183263,0.160711,0.853386,0.788589,0.365227,0.449904,0.2212,0.908759,0.374349,0.855397,0.00233376,0.739152,0.618706,0.675302,0.812543,0.0108441,0.466385,0.385453,0.124471,0.26175,0.206125,0.401296,0.432557,0.601855,0.736416,0.921955,0.710164,0.801594,0.407366,0.580464,0.235323,0.0309143,0.102086,0.575083,0.851619,0.357885,0.954588,0.380816,0.467297,0.171915,0.147362,0.225611,0.541681,0.218123,0.130346,0.211054,0.925062,0.277666,0.149262,0.874715,0.0589789,0.197321,0.969534,0.439085,0.6211,0.774531,0.52164,0.0411112,0.634185,0.980323,0.459797,0.136846,0.0339686,0.447233,0.151863,0.111644,0.456552,0.637879,0.888168,0.916686,0.632151,0.470144,0.321653,0.841525,0.307494,0.838409,0.52762,0.296049,0.242527,0.181546,0.238935,0.51254,0.863434,0.308861,0.243033,0.915786,0.275599,0.585652,0.917395,0.092298,0.181765,0.195833,0.853476,0.839324,0.875943,0.375759,0.132854,0.267044,0.102896,0.806389,0.881913,0.719635,0.644742,0.691369,0.223165,0.266163,0.394041,0.279261,0.982691,0.291848,0.0900906,0.36334,0.0292285,0.439655,0.780985,0.7017,0.734424,0.855765,0.437933,0.342979,0.866679,0.885757,0.268416,0.421821,0.774886,0.337434,0.335495,0.063466,0.522688,0.793535,0.173456,0.547116,0.585067,0.673015,0.939707,0.475126,0.94649,0.775362,0.171074,0.474339,0.0595276,0.931877,0.755717,0.570252,0.690471,0.43052,0.293949,0.0491596,0.423178,0.263981,0.53196,0.525111,0.973839,0.934089,0.506363,0.585946,0.943036,0.609117,0.434924,0.295595,0.0596801,0.631474,0.206738,0.459018,0.955492,0.292316,0.399226,0.546541,0.334442,0.812063,0.39504,0.604041,0.447693,0.792909,0.606796,0.187702,0.613978,0.375009,0.62399,0.152034,0.0563174,0.716351,0.803964,0.768568,0.473224,0.951594,0.888734,0.369326,0.998711,0.591074,0.0850663,0.0050078,0.870606,0.232551,0.169537,0.911113,0.646794,0.859018,0.698876,0.642497,0.0207632,0.657771,0.0251669,0.314367,0.288848,0.651939,0.973142,0.948434,0.826128,0.20372,0.585799,0.0395129,0.266163,0.0986882,0.37213,0.685222,0.500634,0.14814,0.598198,0.609176,0.522995,0.806921,0.220275,0.920423,0.431203,0.0446597,0.904266,0.878786,0.357714,0.950938,0.190446,0.668525,0.201671,0.116455,0.287397,0.456126,0.101292,0.873966,0.609466,0.669259,0.821863,0.143724,0.909096,0.794335,0.781756,0.672173,0.816406,0.556352,0.973987,0.466203,0.494539,0.383532,0.500085,0.63713,0.581763,0.376662,0.531971,0.380511,0.735082,0.621093,0.416152,0.342182,0.859855,0.0691902,0.614357,0.630131,0.526332,0.10787,0.584431,0.580891,0.605312,0.289278,0.103495,0.673235,0.152785,0.70473,0.903259,0.982212,0.819378,0.525107,0.618796,0.385419,0.612399,0.363233,0.129469,0.116181,0.423792,0.160829,0.869274,0.293357,0.33685,0.505851,0.959854,0.923092,0.156577,0.058034,0.113351,0.638432,0.528159,0.196588,0.845818,0.579202,0.898848,0.202866,0.718356,0.430155,0.00758404,0.910696,0.447278,0.964313,0.0976637,0.134471,0.843419,0.671831,0.995157,0.942265,0.563035,0.364167,0.27547,0.145711,0.219487,0.892192,0.764319,0.782154,0.774917,0.546147,0.906117,0.536408,0.787257,0.646122,0.0570261,0.29768,0.931844,0.86429,0.556907,0.715936,0.351344,0.746253,0.440151,0.485249,0.747758,0.170382,0.217911,0.285504,0.94257,0.997764,0.951257,0.903652,0.544458,0.945465,0.00802588,0.377608,0.799083,0.335814,0.773451,0.413954,0.231375,0.82744,0.868458,0.784347,0.132376,0.59334,0.0818953,0.0748376,0.155035,0.245963,0.705101,0.311797,0.893098,0.666614,0.359823,0.979926,0.500488,0.583275,0.836042,0.247495,0.726807,0.878026,0.296768,0.914278,0.309961,0.583627,0.482297,0.439903,0.881092,0.50205,0.765763,0.0157005,0.0603865,0.408547,0.100737,0.606902,0.786082,0.152769,0.0928851,0.650065,0.490476,0.0396013,0.0889483,0.822753,0.857711,0.0336522,0.00369722,0.600736,0.543165,0.494549,0.105945,0.0809206,0.713126,0.993997,0.712647,0.592629,0.455751,0.437241,0.393891,0.48533,0.994456,0.0359115,0.378166,0.0491403,0.656537,0.751773,0.285515,0.540081,0.226917,0.491334,0.2835,0.432864,0.76286,0.451685,0.0471538,0.517706,0.263885,0.00136685,0.463902,0.306565,0.645073,0.748655,0.0851113,0.216129,0.243722,0.675528,0.832959,0.787896,0.489262,0.836427,0.451128,0.560767,0.0616334,0.55026,0.0514333,0.723672,0.0508232,0.321364,0.0800099,0.906803,0.838457,0.500939,0.338613,0.170684,0.433442,0.328789,0.733442,0.426325,0.49075,0.846466,0.211569,0.177945,0.553438,0.980348,0.292425,0.262261,0.879428,0.602588,0.335741,0.135627,0.236551,0.866473,0.0311891,0.309701,0.0818183,0.843458,0.163786,0.865093,0.817186,0.946763,0.562086,|0.488076,0.156251,0.0883834,0.41474,0.823223,0.284228,0.980891,0.49413,0.995507,0.800609,0.552541,0.65601,0.877626,0.713856,0.411271,0.55687,0.640536,0.0643427,0.00625384,0.634896,0.318147,0.17507,0.461613,0.354114,0.917981,0.731138,0.217579,0.126766,0.743066,0.0834597,0.894278,0.523761,0.358719,0.72497,0.363111,0.796819,0.688062,0.669285,0.464641,0.249328,0.250163,0.646138,0.871755,0.411901,0.690764,0.901684,0.375234,0.613515,0.719206,0.794012,0.790119,0.398054,0.648982,0.590911,0.769323,0.86792,0.868874,0.845338,0.0910123,0.735773,0.857181,0.0297292,0.794756,0.760714,0.735668,0.54071,0.908063,0.875018,0.110768,0.407701,0.741593,0.879483,0.908114,0.344149,0.74611,0.235447,0.562733,0.993449,0.786418,0.267986,0.684828,0.324249,0.12144,0.935728,0.266013,0.579088,0.0891305,0.434251,0.309621,0.134768,0.893896,0.805129,0.701676,0.935129,0.0665097,0.462331,0.152125,0.478416,0.585722,0.821704,0.77498,0.653668,0.562913,0.754421,0.288591,0.51507,0.17623,0.850674,0.537833,0.624667,0.775819,0.569323,0.976717,0.140985,0.114893,0.430851,0.0258553,0.550726,0.100652,0.450955,0.987524,0.418433,0.317135,0.0992537,0.403257,0.655988,0.113662,0.458128,0.954119,0.638193,0.516448,0.550847,0.918009,0.652008,0.832455,0.491569,0.496718,0.0550972,0.76223,0.708193,0.457305,0.816429,0.308483,0.798142,0.820363,0.878555,0.114875,0.721713,0.361619,0.0237319,0.896924,0.936468,0.261169,0.957738,0.562916,0.724914,0.0489198,0.439172,0.776814,0.655453,0.62042,0.00870812,0.114279,0.28331,0.384751,0.131582,0.952451,0.1981,0.274279,0.35131,0.493431,0.352217,0.552687,0.883192,0.654823,0.00600308,0.842225,0.686641,0.959371,0.434151,0.890043,0.0932471,0.341702,0.586162,0.437159,0.615516,0.672008,0.472299,0.48601,0.928488,0.811358,0.116109,0.0485139,0.00317782,0.590117,0.233316,0.885687,0.906691,0.447151,0.922124,0.456571,0.594418,0.944966,0.152009,0.993144,0.305525,0.555009,0.467484,0.706737,0.861338,0.1348,0.738179,0.135707,0.406556,0.144542,0.557992,0.528387,0.967046,0.79688,0.233926,0.966013,0.312497,0.210755,0.614713,0.221483,0.702261,0.637024,0.151275,0.18575,0.970924,0.542109,0.0327787,0.909079,0.853246,0.247655,0.634874,0.370574,0.0936596,0.150801,0.0712625,0.180755,0.187718,0.523238,0.898493,0.238602,0.284625,0.465676,0.990484,0.368109,0.70656,0.695417,0.720056,0.766276,0.028668,0.578404,0.83987,0.795008,0.465603,0.729773,0.122557,0.737736,0.561816,0.462333,0.509795,0.735564,0.366198,0.620327,0.945521,0.750012,0.93869,0.994515,0.519945,0.830273,0.857405,0.436142,0.835629,0.902278,0.370115,0.65416,0.149773,0.850175,0.599641,0.249388,0.0613358,0.834279,0.488665,0.209439,0.312066,0.888572,0.646235,0.108712,0.798497,0.953202,0.224526,0.0244621,0.606971,0.451425,0.226414,0.838663,0.579079,0.195579,0.430854,0.299936,0.414884,0.0944456,0.794276,0.51246,0.338082,0.89382,0.0283827,0.38743,0.47876,0.176868,0.384078,0.515871,0.394174,0.587661,0.185924,0.0538962,0.976354,0.156735,0.98586,0.789321,0.918991,0.00538242,0.870556,0.0485289,0.972997,0.308381,0.701206,0.684203,0.611332,0.0287255,0.792401,0.947778,0.70434,0.195536,0.536757,0.429798,0.841241,0.79003,0.913363,0.915118,0.842744,0.64591,0.635177,0.520063,0.288005,0.846955,0.869238,0.493133,0.559479,0.834739,0.660175,0.329869,0.985064,0.926675,0.380041,0.37714,0.54971,0.8199,0.504053,0.206183,0.042658,0.748924,0.422196,0.482371,0.884919,0.463617,0.482991,0.10282,0.243716,0.42874,0.250202,0.96397,0.999328,0.801732,0.9018,0.52133,0.87144,0.866173,0.975547,0.877066,0.00612146,0.796601,0.474927,0.169833,0.292837,0.730655,0.501,0.696849,0.619199,0.41411,0.640552,0.444062,0.170911,0.590673,0.470411,0.697385,0.732504,0.372267,0.635883,0.622463,0.17101,0.760867,0.940669,0.62235,0.350814,0.945518,0.332912,0.563217,0.164121,0.763088,0.135087,0.628346,0.194237,0.64371,0.694688,0.281622,0.919562,0.476611,0.466052,0.882014,0.711284,0.766951,0.926531,0.158252,0.824898,0.993497,0.99141,0.44454,0.192031,0.323962,0.627135,0.822226,0.996612,0.268869,0.953008,0.364342,0.733909,0.382727,0.734628,0.784131,0.559488,0.475228,0.583777,0.728584,0.994409,0.920114,0.512937,0.136695,0.154542,0.729913,0.933523,0.0219825,0.620114,0.598256,0.273144,0.0246633,0.0664764,0.605921,0.55748,0.782214,0.451356,0.976719,0.909931,0.150638,0.491447,0.155444,0.136887,0.264587,0.0708878,0.392227,0.104695,0.575999,0.180598,0.78967,0.960077,0.668361,0.101174,0.457014,0.857898,0.477596,0.840576,0.748739,0.0470177,0.908263,0.811935,0.121874,0.366537,0.615894,0.873153,0.0925049,0.0919069,0.257321,0.0484086,0.407838,0.720202,0.201694,0.723083,0.65335,0.368662,0.192855,0.138247,0.868003,0.120384,0.249313,0.567384,0.629211,0.598694,0.563113,0.168138,0.0317495,0.0123968,0.823421,0.748623,0.13662,0.0627165,0.667826,0.525053,0.915707,0.665719,0.952748,0.397884,0.348735,0.807368,0.416386,0.311895,0.825838,0.970495,0.84118,0.365032,0.783122,0.981312,0.561878,0.299614,0.985656,0.943638,0.68351,0.978464,0.761639,0.89401,0.67875,0.42048,0.508769,0.459734,0.959937,0.642036,0.631397,0.561684,0.0600993,0.105145,0.739556,0.856066,0.307679,0.422833,0.19941,0.409533,0.907575,0.316397,0.303794,0.934674,0.696332,0.545376,0.887227,0.363246,0.146216,0.810273,0.412876,0.00755322,0.811441,0.113821,0.770911,0.793545,0.68613,0.381327,0.658576,0.400185,0.152853,0.518721,0.454894,0.360697,0.709838,0.358979,0.373194,0.842513,0.692996,0.627298,0.907611,0.975439,0.993033,0.870389,0.658852,0.662286,0.887903,0.526012,0.665207,0.0891875,0.153707,0.782836,0.839024,0.380927,0.107133,0.371346,0.501018,0.86196,0.319845,0.52928,0.403891,0.811527,0.0485271,0.382551,0.425054,0.29433,0.938091,0.0658072,0.960217,0.854709,0.170091,0.482915,0.0665113,0.487716,0.809083,0.45611,0.0770809,0.930481,0.858711,0.583428,0.654917,0.875519,0.884204,0.831916,0.610852,0.322552,0.423834,0.937496,0.0203275,0.0878431,0.259196,0.152859,0.6123,0.583793,0.754281,0.354964,0.198887,0.697817,0.239961,0.179785,0.150651,0.827506,0.840432,0.509683,0.497468,0.614115,0.306866,0.467305,0.65023,0.016556,0.930118,0.260168,0.000667632,0.5966,0.0193633,0.803554,0.225089,0.777048,0.880572,0.247684,0.510504,0.751215,0.913801,0.339524,0.0074988,0.706349,0.0274537,0.819731,0.151278,0.985389,0.541683,0.748603,0.120208,0.595393,0.940992,0.92463,0.125917,0.883993,0.771932,0.787678,0.210431,0.140081,0.838715,0.157113,0.353285,0.697578,0.438366,0.251195,0.477053,0.22457,0.477338,0.140787,0.334719,0.342496,0.228105,0.98264,0.681303,0.973412,0.632938,0.0839957,0.715042,0.144883,0.475422,0.58334,0.461119,0.535808,0.993357,0.579056,0.526607,0.36247,0.368756,0.329175,0.0528695,0.397266,0.169656,0.388195,0.978851,0.815116,0.500161,0.427931,0.242823,0.945536,0.985863,0.0947438,0.692858,0.830447,0.890936,0.272929,0.158512,0.898918,0.901911,0.029982,0.167363,0.477124,0.987601,0.37693,0.0826722,0.264971,0.819152,0.273334,0.517633,0.5402,0.293238,0.723193,0.442982,0.285653,0.602697,0.745625,0.692873,0.419489,0.317637,0.556918,0.0253395,0.297033,0.0238065,0.780645,0.730718,0.659839,0.108156,0.558745,0.901361,0.893722,0.691454,0.639018,0.160119,0.121083,0.251892,0.79334,0.863596,0.46331,0.112936,0.603558,0.0873542,0.0844451,0.771154,0.67537,0.396959,0.624226,0.383303,0.465407,0.674598,0.0708445,0.340081,0.886209,0.549945,0.477336,0.210041,0.129552,0.688854,0.291074,0.963651,0.545951,0.319708,0.486218,0.294055,0.0689746,0.45004,0.680344,0.896115,0.515768,0.132957,0.521996,0.127513,0.0309108,0.583388,0.0042696,0.0791566,0.109094,0.779804,0.530512,0.326391,0.536564,0.495525,0.613164,0.132246,0.333715,0.132669,0.662947,0.719725,0.540112,0.335367,0.33923,0.397742,0.24075,0.441038,0.957328,0.260517,0.197387,0.469695,0.248145,0.434966,0.996873,0.29884,0.163037,0.265226,0.582031,0.893652,0.662184,0.297877,0.942378,0.579576,0.648615,0.0858964,0.657209,0.0614581,0.0212114,0.143275,0.448741,0.717687,0.031738,0.565567,0.950835,0.32104,0.552496,0.799151,0.178579,0.867788,0.105123,0.0772883,0.6443,0.0937208,0.225866,0.412866,0.0603256,0.495219,0.870104,0.350328,0.645061,0.809483,0.908975,0.380693,0.163515,0.838978,0.592867,0.851913,0.249069,0.46319,0.331319,0.127182,0.49666,0.283906,0.772401,0.557306,0.444227,0.777045,0.964347,0.372997,0.62869,0.331613,0.252541,0.204846,0.602517,0.196919,0.358885,0.00643939,0.159279,0.195967,0.336483,0.284725,0.789724,0.662114,0.927197,0.314425,0.212842,0.21929,0.627166,0.814944,0.226533,0.936774,0.313346,0.110715,0.765389,0.748859,0.0398077,0.455034,0.735492,0.588573,0.812525,0.667756,0.941526,0.331748,0.252035,0.459651,0.346338,0.940134,0.171292,0.43887,0.568429,0.00548851,0.0561156,0.944989,0.344421,0.859322,0.304754,0.752034,0.685003,0.915129,0.134064,0.87638,0.249292,0.764804,0.649206,0.11225,0.48233,0.757412,0.520342,0.0767041,0.725133,0.370987,0.454759,0.722588,0.143705,0.727495,0.699382,0.708086,0.245202,0.980465,0.599094,0.90427,0.737751,0.933291,0.689154,0.690046,0.912266,0.441871,0.528561,0.468041,0.0210472,0.693658,0.999909,0.352325,0.940337,0.796013,0.721622,0.513262,0.132806,0.120249,0.442674,0.46535,0.0193315,0.317296,0.442543,0.904695,0.392139,0.192513,0.434799,0.643293,0.411898,0.629815,0.156692,0.388365,0.181797,|0.624513,0.18769,0.925781,0.948154,0.930675,0.544402,0.350834,0.0183752,0.97794,0.922594,0.0727108,0.353039,0.174583,0.657891,0.0722452,0.232383,0.11075,0.566025,0.644365,0.97944,0.958737,0.120521,0.658927,0.85952,0.844188,0.937606,0.210945,0.997053,0.196425,0.481595,0.821004,0.0188843,0.95921,0.560644,0.982138,0.708823,0.729581,0.523021,0.725597,0.82426,0.860855,0.252347,0.15347,0.714478,0.0359552,0.873545,0.339902,0.712651,0.697253,0.927604,0.774063,0.924252,0.193631,0.500434,0.0482049,0.506266,0.870904,0.0657811,0.472635,0.398036,0.673704,0.387097,0.405687,0.199609,0.940609,0.168335,0.704257,0.234946,0.50153,0.927555,0.40305,0.719399,0.338792,0.0616229,0.60676,0.036594,0.0456253,0.706539,0.44079,0.627365,0.0913705,0.551554,0.152165,0.192836,0.309937,0.420277,0.426466,0.434022,0.258242,0.968147,0.977992,0.73907,0.507452,0.661559,0.458045,0.389847,0.827663,0.795058,0.317028,0.511768,0.944006,0.269934,0.486601,0.563529,0.700964,0.782339,0.0913736,0.837124,0.581725,0.327841,0.682201,0.36932,0.765911,0.519615,0.957596,0.903952,0.310045,0.485699,0.745642,0.827821,0.457735,0.93008,0.51106,0.486367,0.897864,0.668566,0.740254,0.0578195,0.0358315,0.503908,0.208586,0.0683922,0.365833,0.896304,0.709938,0.857106,0.926112,0.801907,0.943753,0.819053,0.33875,0.412207,0.555175,0.052765,0.316355,0.756543,0.952804,0.424903,0.224023,0.824805,0.293772,0.416951,0.757614,0.581115,0.94595,0.0910596,0.889193,0.341123,0.496032,0.0534554,0.918165,0.0921169,0.303298,0.0913271,0.171333,0.892931,0.00437462,0.677538,0.456957,0.988846,0.369759,0.906076,0.569746,0.00521773,0.881523,0.977754,0.64041,0.227512,0.524676,0.0718179,0.943045,0.685476,0.127454,0.0971476,0.0243618,0.218349,0.549005,0.965925,0.397972,0.892138,0.818366,0.176812,0.265274,0.291019,0.121369,0.892173,0.557766,0.296808,0.758979,0.307759,0.139935,0.910343,0.478431,0.779589,0.322509,0.812386,0.936175,0.0784807,0.0999774,0.695959,0.266733,0.383497,0.502276,0.80195,0.962631,0.342486,0.673202,0.437894,0.871407,0.997621,0.666999,0.631395,0.47799,0.361808,0.267157,0.464389,0.228969,0.983131,0.517066,0.142476,0.372814,0.444888,0.649336,0.970983,0.714209,0.241081,0.26709,0.48944,0.46121,0.703529,0.641999,0.417342,0.955259,0.858852,0.548861,0.0174834,0.920958,0.255434,0.650487,0.405556,0.987752,0.68918,0.453608,0.404223,0.230614,0.0126027,0.957538,0.739233,0.999486,0.188982,0.564249,0.2847,0.94777,0.708062,0.019125,0.444666,0.891816,0.49898,0.273986,0.076684,0.324978,0.366715,0.468959,0.432969,0.485731,0.587684,0.562166,0.313854,0.365115,0.0847291,0.123204,0.2131,0.934959,0.277812,0.869356,0.0294596,0.119504,0.218675,0.34534,0.945455,0.918428,0.839334,0.637445,0.488871,0.802578,0.810277,0.811674,0.202067,0.471723,0.0936987,0.482976,0.817894,0.956922,0.758512,0.179805,0.463413,0.452167,0.165949,0.0663994,0.542855,0.773067,0.509452,0.0941315,0.160226,0.262441,0.344996,0.675312,0.248818,0.0570047,0.615147,0.569404,0.555832,0.510643,0.999545,0.363925,0.081598,0.647971,0.0230765,0.726129,0.0157164,0.157941,0.395706,0.456204,0.59481,0.205963,0.232973,0.498882,0.791931,0.662134,0.110201,0.396401,0.705338,0.981581,0.708397,0.209163,0.612381,0.563072,0.1476,0.576243,0.385119,0.141123,0.181179,0.332184,0.653376,0.0145499,0.484309,0.906656,0.411764,0.88558,0.431206,0.528824,0.994493,0.626531,0.850907,0.119129,0.128378,0.71707,0.392084,0.306917,0.253961,0.739412,0.961457,0.0524877,0.480165,0.0989777,0.995677,0.839183,0.910057,0.761475,0.405701,0.0461184,0.0832658,0.997268,0.142285,0.761222,0.872398,0.574543,0.172983,0.335217,0.253057,0.45792,0.329444,0.208538,0.377042,0.266847,0.497116,0.13215,0.518615,0.0811573,0.588327,0.979262,0.359336,0.321655,0.375664,0.163269,0.539388,0.112959,0.375554,0.544198,0.885036,0.312405,0.184898,0.744465,0.298959,0.106343,0.395606,0.998329,0.400818,0.136441,0.543701,0.421045,0.662743,0.412804,0.4709,0.826179,0.229208,0.969994,0.108076,0.0529876,0.0304686,0.42516,0.837099,0.359289,0.813652,0.452784,0.00769758,0.661011,0.461512,0.795215,0.782925,0.8486,0.090821,0.202836,0.782489,0.496726,0.484357,0.208622,0.90532,0.452524,0.756234,0.522501,0.0189195,0.630432,0.542422,0.0958711,0.767536,0.1311,0.318362,0.26303,0.349025,0.929128,0.40897,0.897395,0.284949,0.131733,0.427577,0.662262,0.258873,0.836532,0.0820811,0.728948,0.0518969,0.712032,0.195671,0.461111,0.898333,0.0191037,0.651315,0.858386,0.508297,0.978332,0.103604,0.340122,0.960308,0.162472,0.527555,0.213443,0.605785,0.464171,0.996172,0.474426,0.44642,0.0569125,0.0269001,0.293532,0.977388,0.966354,0.672088,0.492598,0.750413,0.523278,0.843887,0.0839862,0.870619,0.318448,0.133194,0.423218,0.61659,0.960048,0.354784,0.946999,0.223318,0.230207,0.372043,0.576719,0.979625,0.48209,0.962641,0.762709,0.0788886,0.728586,0.721972,0.435222,0.953763,0.485354,0.327745,0.927862,0.571569,0.347095,0.591993,0.567155,0.946298,0.184383,0.0328934,0.937004,0.168918,0.335976,0.0639298,0.695358,0.785976,0.913249,0.32708,0.0880685,0.610185,0.194512,0.690634,0.366854,0.875606,0.681497,0.0521551,0.691823,0.813627,0.700478,0.803971,0.565713,0.782205,0.249352,0.321237,0.0857788,0.197103,0.834519,0.826999,0.568238,0.887833,0.410895,0.379396,0.967395,0.180217,0.979425,0.900988,0.55972,0.613407,0.61008,0.119912,0.499956,0.16315,0.422169,0.468503,0.246367,0.714074,0.494822,0.473992,0.522984,0.879141,0.566444,0.0779359,0.333905,0.00949699,0.772988,0.826834,0.273234,0.85552,0.10127,0.502532,0.535167,0.0938308,0.61584,0.411805,0.142315,0.320412,0.50146,0.342369,0.795039,0.0978515,0.0675536,0.986692,0.0145724,0.402721,0.0521768,0.479928,0.79647,0.680862,0.501491,0.939784,0.504207,0.65926,0.11807,0.6292,0.749771,0.800554,0.99374,0.859294,0.759936,0.939674,0.914707,0.294915,0.18665,0.959113,0.608995,0.72327,0.279201,0.391213,0.865326,0.747963,0.00518769,0.828533,0.713432,0.617213,0.278791,0.252736,0.476266,0.584,0.871917,0.123865,0.373492,0.0450338,0.730411,0.245586,0.690553,0.832002,0.737134,0.363582,0.19251,0.521262,0.0550731,0.189967,0.250133,0.0380754,0.402523,0.312548,0.41801,0.391646,0.388761,0.557152,0.592579,0.72761,0.339052,0.357316,0.90074,0.778098,0.457311,0.65823,0.421639,0.35098,0.316055,0.768098,0.480795,0.00227243,0.696695,0.0656604,0.414838,0.0881438,0.403963,0.150804,0.94066,0.146149,0.405464,0.76599,0.196612,0.433833,0.790085,0.403309,0.0374031,0.0492312,0.440592,0.948325,0.786932,0.726833,0.916936,0.809885,0.951889,0.00892574,0.0337605,0.365471,0.0581551,0.670677,0.313311,0.0526471,0.610607,0.0272781,0.255342,0.615009,0.957963,0.795884,0.796011,0.525586,0.354803,0.158076,0.535301,0.156273,0.961671,0.767023,0.319022,0.102293,0.424038,0.353207,0.00618398,0.063954,0.526975,0.389715,0.1123,0.632271,0.777719,0.409132,0.295418,0.585973,0.967793,0.487478,0.622069,0.517582,0.428209,0.28086,0.524986,0.329637,0.178335,0.981335,0.789917,0.801017,0.908004,0.527813,0.301887,0.694049,0.517713,0.784206,0.120817,0.0844523,0.704983,0.541829,0.82592,0.131694,0.65412,0.794343,0.38999,0.963082,0.875233,0.997535,0.906468,0.116359,0.366397,0.74688,0.0822012,0.989794,0.361276,0.280833,0.0843031,0.167752,0.877199,0.995062,0.70182,0.81254,0.489348,0.536301,0.89077,0.866503,0.189904,0.430101,0.165249,0.300285,0.0827867,0.433433,0.724342,0.671909,0.203294,0.723422,0.0912334,0.118148,0.510305,0.224324,0.272326,0.187524,0.918762,0.892033,0.342673,0.61197,0.616103,0.96308,0.495243,0.910377,0.48144,0.946822,0.310221,0.867327,0.983396,0.797256,0.0479075,0.889703,0.854435,0.416387,0.500721,0.787379,0.288066,0.827114,0.0774495,0.674378,0.234569,0.422561,0.987614,0.0133086,0.356824,0.883956,0.0878621,0.493544,0.105792,0.859799,0.659052,0.115443,0.620619,0.915556,0.237042,0.823998,0.897424,0.358834,0.604897,0.30695,0.0904632,0.850791,0.730612,0.192305,0.271298,0.199061,0.907994,0.690953,0.771062,0.39818,0.312359,0.302861,0.731212,0.195255,0.192328,0.153941,0.920195,0.433196,0.0297107,0.718022,0.238286,0.654276,0.458158,0.994845,0.617334,0.483084,0.0638634,0.791869,0.302592,0.624957,0.0936723,0.10224,0.766002,0.103123,0.874137,0.684703,0.929257,0.546844,0.356129,0.997104,0.243691,0.165468,0.427289,0.373399,0.530249,0.614549,0.636533,0.0189386,0.042748,0.550752,0.345687,0.958058,0.408265,0.0880323,0.17127,0.538202,0.191463,0.828722,0.477545,0.438009,0.827685,0.73452,0.190314,0.419885,0.31106,0.0406957,0.718051,0.79031,0.613356,0.54609,0.587086,0.112094,0.778335,0.519078,0.499495,0.190257,0.309403,0.772505,0.838045,0.935005,0.536858,0.911,0.801465,0.511173,0.168229,0.535535,0.927655,0.0734978,0.584739,0.632775,0.0075292,0.360916,0.328765,0.0994977,0.648823,0.577973,0.771568,0.523805,0.833728,0.899931,0.488289,0.630486,0.378543,0.339725,0.939507,0.115995,0.692989,0.18782,0.831163,0.925978,0.0235836,0.561045,0.747008,0.503052,0.0969379,0.853915,0.56707,0.333537,0.519045,0.0185264,0.285863,0.320693,0.463685,0.177793,0.623785,0.231143,0.917336,0.590377,0.918322,0.219944,0.530441,0.0314145,0.692776,0.516744,0.268521,0.545045,0.204604,0.911298,0.446813,0.942925,0.407013,0.946712,0.9325,0.0442862,0.752292,0.82741,0.0738264,0.044573,0.606641,0.306243,0.627843,0.0510221,0.310081,0.457603,0.206569,0.63151,|0.350847,0.475327,0.612995,0.951553,0.734812,0.637574,0.49623,0.985143,0.202681,0.0269335,0.421396,0.717221,0.96607,0.970924,0.689011,0.254023,0.729377,0.68936,0.228658,0.886161,0.0166283,0.231617,0.70832,0.148887,0.0131776,0.227022,0.32102,0.766426,0.922627,0.837206,0.425536,0.372062,0.466106,0.843182,0.47747,0.0140193,0.841146,0.290901,0.452781,0.789388,0.949188,0.918587,0.369052,0.656661,0.822245,0.710653,0.0604109,0.0925922,0.836699,0.975477,0.0436426,0.388747,0.65542,0.658927,0.394974,0.292681,0.0618733,0.707842,0.428552,0.869948,0.708434,0.556392,0.0608259,0.701331,0.0943117,0.474941,0.648015,0.0994831,0.202687,0.970832,0.84421,0.925843,0.251451,0.864157,0.278311,0.327016,0.792784,0.616033,0.676676,0.864905,0.373074,0.416566,0.0253813,0.555879,0.984872,0.936914,0.0428658,0.205326,0.721437,0.796152,0.966197,0.232784,0.290302,0.520887,0.579809,0.922489,0.356136,0.126631,0.689262,0.479298,0.229198,0.221092,0.467412,0.613772,0.470711,0.574001,0.651501,0.963253,0.133901,0.207081,0.873078,0.674682,0.803234,0.766658,0.115917,0.413109,0.348142,0.215823,0.69636,0.781317,0.447823,0.862515,0.606725,0.819676,0.0180752,0.450457,0.849117,0.987513,0.00542068,0.72765,0.512967,0.337249,0.00595587,0.856955,0.343419,0.151608,0.00682396,0.516597,0.485229,0.832999,0.939289,0.0641193,0.250323,0.912868,0.785256,0.869574,0.723819,0.264568,0.448176,0.571161,0.0413636,0.815794,0.404968,0.708229,0.78245,0.366733,0.534055,0.520892,0.99662,0.259996,0.882378,0.804572,0.00445777,0.0917376,0.122857,0.697062,0.83,0.970247,0.458876,0.165131,0.552119,0.121488,0.390883,0.630052,0.194894,0.855383,0.0540461,0.569382,0.956522,0.322609,0.888625,0.985333,0.969039,0.952306,0.856505,0.842545,0.830104,0.139456,0.466887,0.754353,0.36384,0.594243,0.736023,0.592579,0.69607,0.157626,0.733015,0.744994,0.366748,0.823936,0.156764,0.137315,0.593475,0.832528,0.554558,0.704563,0.923945,0.358414,0.698035,0.681,0.0864882,0.269172,0.425305,0.980243,0.272085,0.940251,0.5731,0.502513,0.222288,0.869642,0.61729,0.578258,0.334045,0.309261,0.885746,0.486285,0.868519,0.143313,0.981627,0.800708,0.582028,0.0814937,0.204175,0.362471,0.811333,0.342943,0.30149,0.117475,0.796277,0.996366,0.581765,0.626622,0.293832,0.451536,0.324543,0.232773,0.0719174,0.520384,0.703449,0.00749272,0.650392,0.0108973,0.41396,0.327649,0.0809551,0.713929,0.307978,0.952288,0.802216,0.836419,0.617717,0.195833,0.675987,0.702972,0.83209,0.330082,0.465897,0.71123,0.670194,0.644529,0.92591,0.240914,0.51066,0.13982,0.918706,0.0990632,0.34209,0.181236,0.827549,0.496412,0.340194,0.892696,0.134005,0.287142,0.414893,0.7303,0.819182,0.406016,0.218843,0.772841,0.129674,0.317886,0.16375,0.261174,0.918229,0.883736,0.595905,0.49865,0.10174,0.57824,0.358416,0.120525,0.264242,0.688579,0.595823,0.0874671,0.0677831,0.702984,0.545295,0.354288,0.41344,0.527772,0.000744879,0.439762,0.745611,0.242727,0.120945,0.182612,0.943447,0.751997,0.173579,0.258112,0.583559,0.300627,0.872674,0.987906,0.34124,0.379566,0.0444847,0.215694,0.340439,0.677335,0.447911,0.643157,0.305451,0.0154282,0.854549,0.259212,0.979556,0.748051,0.704025,0.285135,0.907265,0.680344,0.0446883,0.758803,0.904475,0.15423,0.837702,0.738185,0.304361,0.186903,0.146012,0.779312,0.834359,0.212392,0.0201881,0.336856,0.852788,0.134559,0.807768,0.613769,0.886421,0.837771,0.991612,0.355419,0.660948,0.43247,0.260637,0.250863,0.441523,0.312677,0.268657,0.150316,0.788845,0.336158,0.759903,0.0931792,0.294984,0.0184407,0.899993,0.645122,0.339766,0.0466759,0.982708,0.490614,0.660639,0.810924,0.10005,0.387715,0.165103,0.322891,0.121275,0.985311,0.566345,0.630663,0.423141,0.761428,0.711372,0.495885,0.518851,0.173983,0.843811,0.424087,0.685371,0.726864,0.579195,0.397909,0.173813,0.0358286,0.852458,0.92549,0.687064,0.676881,0.241964,0.927216,0.79118,0.0607669,0.280846,0.808738,0.8073,0.963498,0.468481,0.594549,0.817137,0.443556,0.250312,0.760201,0.355384,0.471657,0.128046,0.541758,0.443075,0.666597,0.599456,0.792107,0.46713,0.738675,0.983677,0.395668,0.402433,0.235146,0.676379,0.534362,0.727036,0.296135,0.936298,0.951368,0.251607,0.884288,0.939209,0.234449,0.471915,0.580482,0.354773,0.327475,0.776044,0.91096,0.987126,0.204341,0.802428,0.482566,0.702558,0.297781,0.54306,0.71544,0.63811,0.355855,0.0138974,0.434827,0.256019,0.528761,0.613557,0.968937,0.979389,0.123143,0.852354,0.458347,0.841043,0.88251,0.0486817,0.568787,0.00692898,0.546012,0.525482,0.0175015,0.559784,0.609005,0.446577,0.924865,0.114472,0.110598,0.164049,0.802773,0.266729,0.560156,0.188632,0.983247,0.485491,0.432173,0.348677,0.957642,0.495882,0.617362,0.385001,0.33635,0.919974,0.409284,0.991949,0.312649,0.947018,0.603484,0.168746,0.590992,0.890763,0.21126,0.752536,0.54389,0.434831,0.853951,0.906728,0.158562,0.37204,0.605081,0.00163925,0.461853,0.896075,0.467804,0.42956,0.447523,0.570268,0.0774219,0.704771,0.500793,0.964067,0.0157539,0.707013,0.238753,0.0438659,0.734007,0.40943,0.824577,0.183362,0.552079,0.578681,0.126185,0.16067,0.908614,0.679129,0.954739,0.550366,0.278234,0.264495,0.922405,0.671522,0.628739,0.326334,0.499092,0.172599,0.675365,0.216166,0.979934,0.606687,0.250753,0.597959,0.167934,0.379979,0.257268,0.800736,0.0706961,0.703272,0.549053,0.893491,0.807396,0.993275,0.841069,0.806245,0.570107,0.362551,0.2855,0.446067,0.683482,0.407725,0.887446,0.355548,0.190368,0.537395,0.0265349,0.16849,0.933328,0.587968,0.603464,0.162949,0.339798,0.201606,0.750142,0.170075,0.378658,0.145311,0.0101103,0.829801,0.655818,0.830603,0.205264,0.878197,0.904239,0.67054,0.573636,0.635224,0.346096,0.656833,0.850096,0.686031,0.0454062,0.553535,0.980247,0.0464152,0.90737,0.650123,0.894414,0.976075,0.0850613,0.51378,0.482711,0.387052,0.0443108,0.104421,0.0103845,0.730569,0.678877,0.265982,0.159136,0.590838,0.0392814,0.560956,0.825044,0.102998,0.385326,0.566689,0.826994,0.266487,0.132021,0.890813,0.793625,0.375814,0.840269,0.502715,0.753376,0.67111,0.703117,0.680193,0.443599,0.393324,0.412479,0.496214,0.950008,0.0025019,0.516496,0.494424,0.98269,0.344749,0.312678,0.292657,0.893479,0.703153,0.96843,0.569963,0.137749,0.261159,0.757628,0.480835,0.277543,0.114803,0.437864,0.465118,0.396558,0.181545,0.0489083,0.472243,0.189276,0.724462,0.549818,0.556229,0.544151,0.106781,0.0920682,0.830971,0.761907,0.648763,0.175519,0.59008,0.0560412,0.444496,0.154561,0.4715,0.821165,0.809996,0.99468,0.32553,0.317599,0.577813,0.12838,0.896039,0.875743,0.0837812,0.19632,0.79878,0.315592,0.826252,0.886326,0.654962,0.483964,0.553316,0.701454,0.921998,0.606313,0.497736,0.574523,0.857399,0.0591382,0.1688,0.292888,0.616653,0.123135,0.940425,0.0833954,0.83718,0.817785,0.274764,0.530843,0.551074,0.478238,0.422884,0.32665,0.277596,0.529587,0.523524,0.132219,0.976377,0.593992,0.157526,0.554854,0.285574,0.591845,0.764123,0.939595,0.739416,0.619955,0.596004,0.127658,0.989855,0.196777,0.78636,0.234778,0.522998,0.812827,0.646927,0.354926,0.83584,0.999437,0.348452,0.763539,0.978302,0.0817943,0.18422,0.166306,0.233861,0.582591,0.650489,0.767744,0.984718,0.181216,0.105818,0.28546,0.506109,0.466079,0.959606,0.0567175,0.135556,0.889474,0.343596,0.926627,0.299353,0.46265,0.0883664,0.0961486,0.24265,0.912509,0.196479,0.781083,0.860901,0.0328503,0.996774,0.953112,0.385207,0.647895,0.1172,0.981853,0.864768,0.122651,0.385971,0.265231,0.641999,0.179735,0.616918,0.423284,0.693523,0.402799,0.773227,0.165695,0.514698,0.767576,0.790995,0.773248,0.203323,0.322511,0.186072,0.654514,0.354913,0.988509,0.438982,0.452028,0.00575495,0.262626,0.520526,0.50487,0.42828,0.194521,0.423969,0.739128,0.980676,0.0734855,0.567835,0.698671,0.807539,0.182735,0.442107,0.655678,0.455927,0.470943,0.93268,0.365767,0.483824,0.682266,0.195602,0.430572,0.125838,0.697479,0.875314,0.45716,0.320407,0.499635,0.605952,0.900813,0.415478,0.71774,0.918448,0.187879,0.511961,0.86866,0.437669,0.712184,0.832208,0.867381,0.12282,0.00328958,0.49062,0.283268,0.275965,0.471266,0.389285,0.910812,0.69043,0.565031,0.0120693,0.929492,0.304415,0.622222,0.232733,0.946493,0.949283,0.576542,0.329162,0.804132,0.594497,0.495445,0.433329,0.0624527,0.847849,0.730602,0.474718,0.855036,0.775807,0.900535,0.981915,0.0443404,0.379618,0.613008,0.769961,0.469312,0.914342,0.802748,0.717085,0.695277,0.812196,0.947048,0.52744,0.811731,0.135906,0.787821,0.653154,0.362292,0.299277,0.0417922,0.924515,0.202658,0.903668,0.51447,0.907628,0.644906,0.428413,0.437557,0.535619,0.160204,0.663687,0.380174,0.297545,0.280085,0.474756,0.424378,0.606591,0.0133799,0.785994,0.251786,0.290247,0.0303892,0.58932,0.232042,0.391659,0.81844,0.375641,0.928936,0.390232,0.223984,0.785572,0.266959,0.779843,0.991351,0.412509,0.119671,0.361429,0.650722,0.435247,0.650444,0.178284,0.099387,0.737782,0.64498,0.0585545,0.861687,0.968079,0.685073,0.94179,0.422012,0.668263,0.588203,0.734269,0.689242,0.453702,0.700816,0.0825568,0.458422,0.770174,0.960338,0.173321,0.624821,0.0275674,0.196154,0.446306,0.972035,0.805785,0.500319,0.834986,0.914432,0.685245,0.18334,0.440596,0.29302,0.0387614,0.366545,0.256197,0.156869,0.908463,0.562942,0.0886926,0.758856,0.923527,0.101135,0.175174,0.130379,|0.154969,0.118423,0.0984415,0.232196,0.589949,0.13798,0.141658,0.286182,0.617392,0.671619,0.752385,0.416032,0.144451,0.792752,0.378095,0.531147,0.00114167,0.414006,0.219918,0.204524,0.227779,0.091876,0.494613,0.312534,0.549074,0.799493,0.942542,0.746762,0.96656,0.669293,0.478883,0.0742387,0.0272974,0.0925996,0.108288,0.671948,0.132626,0.628661,0.880782,0.32078,0.463181,0.546683,0.00928158,0.713618,0.990155,0.607768,0.0686369,0.599212,0.0400923,0.235611,0.993309,0.0690129,0.670882,0.886777,0.580497,0.607703,0.747706,0.959274,0.540439,0.706812,0.540023,0.230544,0.327381,0.378071,0.97948,0.479629,0.805351,0.917568,0.0087682,0.345186,0.951888,0.0829273,0.889796,0.985485,0.282312,0.87267,0.132712,0.272709,0.857988,0.436165,0.711671,0.261888,0.83524,0.747505,0.925211,0.410544,0.628666,0.9399,0.716414,0.821663,0.458714,0.543867,0.149686,0.821485,0.0678105,0.594469,0.489375,0.953421,0.983831,0.973705,0.752985,0.170776,0.07191,0.621766,0.72059,0.294095,0.622662,0.698106,0.162347,0.456683,0.315826,0.663354,0.915882,0.640316,0.342676,0.707222,0.869899,0.834271,0.345286,0.736202,0.535593,0.27109,0.814911,0.267273,0.11876,0.636001,0.83895,0.864875,0.718889,0.907384,0.554082,0.174044,0.519351,0.070891,0.243358,0.109158,0.610338,0.75353,0.255179,0.66889,0.950668,0.146027,0.59369,0.220268,0.882553,0.912601,0.150298,0.991151,0.081726,0.0868812,0.744718,0.0965749,0.656664,0.879045,0.818192,0.635432,0.233883,0.752295,0.423971,0.838083,0.3731,0.772834,0.335406,0.781064,0.232203,0.751039,0.87101,0.239625,0.189613,0.554994,0.879178,0.684037,0.33422,0.0822234,0.512787,0.279119,0.608364,0.182876,0.811505,0.272969,0.526435,0.450045,0.98529,0.646735,0.00739735,0.402362,0.738105,0.841721,0.670221,0.764581,0.492235,0.81108,0.28095,0.451152,0.900834,0.253132,0.510285,0.674799,0.374665,0.800034,0.0580528,0.937472,0.0775244,0.0549126,0.138501,0.552399,0.259804,0.62388,0.997325,0.627908,0.814569,0.617043,0.680784,0.154379,0.651329,0.54271,0.0764467,0.935854,0.557698,0.240708,0.851103,0.985046,0.467686,0.403499,0.474785,0.291135,0.283641,0.414537,0.480767,0.557167,0.10755,0.240542,0.0544564,0.50991,0.555352,0.148809,0.435851,0.239062,0.594929,0.031084,0.302737,0.754531,0.371437,0.980062,0.0170814,0.916979,0.436323,0.710709,0.60884,0.812751,0.0103978,0.435173,0.476975,0.963627,0.258781,0.0320521,0.606046,0.502591,0.57929,0.00423938,0.38421,0.651523,0.112961,0.0373492,0.503043,0.0891126,0.0837176,0.738379,0.919053,0.91779,0.00663501,0.577436,0.167767,0.813491,0.862914,0.388988,0.394378,0.835216,0.463553,0.59322,0.162265,0.00706303,0.98982,0.968898,0.362741,0.628428,0.448634,0.357152,0.49181,0.855232,0.946203,0.505062,0.326851,0.499512,0.463578,0.867377,0.266905,0.354655,0.294012,0.0551534,0.634771,0.757148,0.476205,0.152223,0.0671293,0.197382,0.791042,0.85935,0.885765,0.175943,0.575374,0.232484,0.375338,0.820042,0.872066,0.0735533,0.236368,0.34831,0.580777,0.546678,0.646657,0.994054,0.883416,0.99359,0.456042,0.139654,0.861528,0.9992,0.715371,0.607807,0.686156,0.117338,0.774095,0.164347,0.660428,0.490196,0.0349147,0.716649,0.805301,0.63359,0.0125096,0.173824,0.270396,0.548655,0.172245,0.380083,0.804465,0.509076,0.205515,0.82649,0.990064,0.386739,0.108152,0.454742,0.827676,0.198448,0.0134893,0.657787,0.815366,0.153664,0.839863,0.247347,0.68574,0.456127,0.156766,0.977277,0.399476,0.700943,0.437527,0.869877,0.654732,0.580374,0.987738,0.383927,0.00766635,0.240976,0.0908934,0.700691,0.729663,0.200624,0.898719,0.124923,0.552812,0.714619,0.849284,0.886371,0.461114,0.867746,0.12179,0.267562,0.939054,0.999841,0.0381663,0.732509,0.273311,0.559984,0.464035,0.940365,0.545765,0.861565,0.479715,0.617333,0.910896,0.699091,0.932649,0.301136,0.279857,0.626128,0.554897,0.325464,0.300484,0.439375,0.586012,0.298174,0.445967,0.778686,0.0984111,0.780023,0.743895,0.0575768,0.668466,0.459304,0.161187,0.260705,0.560674,0.119433,0.388783,0.610844,0.130183,0.0878857,0.993441,0.824441,0.628769,0.666534,0.931813,0.4011,0.966942,0.841463,0.0197747,0.0992697,0.619945,0.226671,0.825656,0.360032,0.520872,0.427925,0.250928,0.234024,0.747796,0.334065,0.164786,0.352161,0.370971,0.827447,0.266565,0.732596,0.60547,0.185733,0.726296,0.734849,0.788368,0.411542,0.769586,0.864907,0.355825,0.403017,0.0691674,0.513012,0.465693,0.486549,0.563332,0.51097,0.884724,0.818194,0.268153,0.994812,0.0061354,0.528374,0.551989,0.00119358,0.467901,0.362418,0.646257,0.445976,0.538184,0.768432,0.176444,0.347562,0.273129,0.618836,0.42589,0.766068,0.57152,0.318227,0.998809,0.461185,0.00935441,0.0130708,0.20004,0.49952,0.260083,0.0674927,0.59019,0.0312176,0.729844,0.465459,0.938134,0.316756,0.0877456,0.915905,0.701659,0.749395,0.509442,0.152924,0.587554,0.271619,0.500382,0.594895,0.592459,0.836698,0.0567313,0.580663,0.346727,0.873992,0.419068,0.300132,0.508019,0.425508,0.618481,0.553758,0.920155,0.503954,0.887355,0.320639,0.509265,0.718564,0.848692,0.0743036,0.865522,0.983137,0.337716,0.753865,0.0769366,0.276014,0.424296,0.425789,0.0223088,0.76513,0.627398,0.324717,0.201225,0.836917,0.85239,0.929829,0.882926,0.129145,0.451831,0.678379,0.932876,0.363164,0.760113,0.0823653,0.118905,0.0300286,0.522882,0.0023309,0.453645,0.0334848,0.0725367,0.331162,0.190962,0.213118,0.695317,0.315371,0.750048,0.916538,0.58294,0.32168,0.827075,0.674042,0.0156904,0.579621,0.30975,0.0655141,0.19593,0.393525,0.0734718,0.684675,0.405747,0.254006,0.04953,0.131083,0.858347,0.942358,0.681961,0.898819,0.953455,0.77588,0.0184254,0.586365,0.93882,0.128293,0.838093,0.941592,0.506101,0.108757,0.706384,0.243772,0.715617,0.159124,0.340333,0.0753732,0.874468,0.987497,0.372587,0.978,0.579233,0.616799,0.747553,0.788459,0.0405793,0.128998,0.730436,0.734693,0.857869,0.663082,0.256885,0.63063,0.380949,0.419768,0.0458807,0.334048,0.513306,0.127603,0.0401057,0.992252,0.0120299,0.220305,0.631254,0.451111,0.812714,0.133487,0.183905,0.62618,0.984955,0.413319,0.79912,0.906854,0.0361557,0.883647,0.926243,0.41363,0.950019,0.730725,0.473372,0.927891,0.287918,0.674632,0.639197,0.563144,0.429488,0.216429,0.812555,0.735246,0.291468,0.255786,0.398304,0.801294,0.00509614,0.296583,0.230521,0.203386,0.997613,0.197655,0.200869,0.045466,0.664801,0.82703,0.506628,0.11934,0.0433719,0.366719,0.907955,0.107788,0.901043,0.361784,0.293147,0.744615,0.431451,0.764888,0.185933,0.332229,0.818564,0.846964,0.165241,0.438421,0.785695,0.973722,0.054248,0.209906,0.215384,0.37969,0.680384,0.0305053,0.259829,0.609564,0.474211,0.858806,0.516069,0.232069,0.526966,0.244524,0.95606,0.705328,0.23143,0.768183,0.479428,0.45216,0.275179,0.324674,0.645759,0.69049,0.690055,0.402459,0.0664871,0.842554,0.539928,0.636223,0.351968,0.688218,0.322747,0.00799054,0.83534,0.557378,0.0588507,0.493079,0.493198,0.622734,0.730271,0.473317,0.0423477,0.568686,0.275182,0.668674,0.83613,0.773184,0.393615,0.506512,0.268231,0.867506,0.408557,0.877312,0.0121718,0.221535,0.60251,0.0646694,0.749612,0.387897,0.332615,0.330866,0.525625,0.852515,0.536439,0.0239709,0.825382,0.973023,0.393117,0.747109,0.116481,0.689086,0.970609,0.870499,0.0135227,0.906841,0.830356,0.387431,0.55282,0.803475,0.624227,0.750862,0.625108,0.277278,0.92513,0.404536,0.78244,0.159209,0.764085,0.638775,0.2232,0.660355,0.867097,0.604121,0.292297,0.0470338,0.778404,0.752562,0.989885,0.661382,0.171011,0.101935,0.195544,0.145665,0.570643,0.907746,0.314967,0.302029,0.550913,0.801902,0.169585,0.4294,0.257168,0.844585,0.918772,0.836996,0.639567,0.23193,0.735938,0.234669,0.171965,0.148683,0.326621,0.313418,0.0324625,0.661604,0.541189,0.47126,0.119145,0.0788748,0.00749677,0.953406,0.214171,0.623388,0.421523,0.700604,0.597759,0.382812,0.0717228,0.28634,0.947526,0.46895,0.764181,0.356069,0.481754,0.556941,0.164039,0.0641459,0.272527,0.036877,0.746849,0.693798,0.0550601,0.473913,0.198259,0.565449,0.0324073,0.996013,0.619798,0.875217,0.824642,0.0154262,0.334918,0.79253,0.325733,0.84223,0.243863,0.750767,0.155904,0.873024,0.593874,0.0572909,0.702613,0.327212,0.181243,0.59651,0.740927,0.108296,0.687232,0.241939,0.109381,0.283594,0.80445,0.937857,0.262738,0.803895,0.270266,0.391161,0.649006,0.789174,0.477616,0.240291,0.463555,0.997295,0.358558,0.587853,0.152804,0.95241,0.499158,0.0583465,0.452762,0.795692,0.711725,0.19248,0.226712,0.164036,0.852525,0.48492,0.979881,0.187348,0.860341,0.288315,0.93522,0.892907,0.34697,0.66232,0.0191682,0.710763,0.0487061,0.95878,0.545187,0.545491,0.899151,0.320123,0.273135,0.552304,0.0236369,0.0953934,0.974772,0.977755,0.789259,0.482642,0.450831,0.449907,0.759775,0.949523,0.430407,0.369051,0.85253,0.781523,0.400658,0.606318,0.27671,0.412454,0.0238797,0.490471,0.736672,0.0778983,0.90822,0.682677,0.885925,0.282911,0.801978,0.916657,0.476865,0.888563,0.531905,0.859765,0.37878,0.555661,0.00499624,0.975929,0.206023,0.383575,0.715007,0.0497041,0.790877,0.267492,0.314288,0.506696,0.491307,0.490204,0.45886,0.895958,0.657794,0.302585,0.172452,0.400986,0.682767,0.192447,0.351127,0.448071,0.832545,0.684735,0.38453,0.535363,0.810546,0.880888,0.661417,0.646442,0.939281,0.0143372,0.64732,0.527996,0.416168,0.342809,0.021177,0.453469,0.600522,0.290144,0.280237,0.927094,|0.332934,0.574759,0.821123,0.946116,0.16728,0.59341,0.0537661,0.269268,0.734615,0.202304,0.683171,0.0901024,0.148521,0.491577,0.934423,0.97325,0.383504,0.196884,0.466711,0.203961,0.575919,0.968725,0.594999,0.261286,0.0321041,0.690616,0.829087,0.758222,0.660616,0.521777,0.363467,0.652449,0.268766,0.269603,0.962874,0.444931,0.630177,0.628104,0.482199,0.912601,0.593881,0.670222,0.414844,0.425323,0.475313,0.248899,0.0840338,0.741646,0.151801,0.531983,0.93041,0.385882,0.799683,0.529446,0.448017,0.433601,0.696081,0.935969,0.721164,0.898227,0.319906,0.510747,0.874675,0.563687,0.938853,0.844698,0.00262731,0.0520709,0.798858,0.0603595,0.535847,0.0455586,0.669433,0.107584,0.74456,0.894166,0.864729,0.19011,0.0773625,0.492477,0.898817,0.274795,0.8678,0.164545,0.0710816,0.493016,0.617117,0.867912,0.627546,0.458163,0.219667,0.172739,0.760165,0.0208776,0.208872,0.325395,0.336377,0.524926,0.226414,0.389456,0.078073,0.892632,0.923824,0.405846,0.889411,0.42854,0.499667,0.519624,0.885724,0.00310868,0.091441,0.723917,0.948006,0.358585,0.0661861,0.0282958,0.94921,0.19401,0.624056,0.661708,0.71251,0.974217,0.455313,0.159745,0.607328,0.593265,0.941533,0.0926684,0.208277,0.308749,0.807403,0.672798,0.850531,0.170387,0.434199,0.254648,0.990492,0.316795,0.898419,0.701388,0.256007,0.358183,0.221239,0.987517,0.802523,0.135093,0.059379,0.329746,0.394077,0.98767,0.0494229,0.308856,0.528938,0.0122589,0.129002,0.242036,0.7963,0.753452,0.868812,0.105376,0.594251,0.537076,0.0714331,0.92361,0.744975,0.370614,0.618069,0.851346,0.187285,0.871847,0.807802,0.174736,0.995918,0.770437,0.294046,0.589943,0.548653,0.751451,0.363022,0.937105,0.500788,0.812935,0.995104,0.0111212,0.315904,0.830336,0.0775811,0.517774,0.630641,0.0736813,0.0884523,0.76735,0.41321,0.284327,0.0945669,0.429201,0.517605,0.616922,0.171014,0.921882,0.678265,0.377018,0.0911215,0.208025,0.30679,0.277677,0.981478,0.252435,0.732691,0.682554,0.838528,0.33908,0.856167,0.677284,0.293191,0.441584,0.527863,0.052404,0.18456,0.907298,0.397375,0.298041,0.956592,0.801852,0.505335,0.66417,0.743353,0.0577701,0.676354,0.818456,0.146791,0.989601,0.635352,0.0658762,0.515539,0.108143,0.387857,0.0576137,0.767563,0.344253,0.751918,0.0389628,0.0425432,0.838297,0.864297,0.0333809,0.984697,0.319709,0.891126,0.169857,0.642475,0.709412,0.628541,0.2513,0.753127,0.325958,0.197307,0.0337695,0.0579314,0.852918,0.911004,0.386876,0.757579,0.625006,0.983695,0.862576,0.146518,0.572301,0.414945,0.971429,0.442118,0.588029,0.714834,0.881777,0.390627,0.9857,0.883853,0.616099,0.185097,0.754519,0.209585,0.431343,0.759287,0.176868,0.523297,0.997757,0.643119,0.345767,0.0415589,0.266879,0.432629,0.379055,0.106158,0.631808,0.973105,0.547819,0.893556,0.33966,0.359704,0.047619,0.0399783,0.129925,0.475647,0.663306,0.725848,0.794666,0.811861,0.839725,0.547021,0.362231,0.0305462,0.230276,0.352578,0.37066,0.798847,0.887554,0.647613,0.771706,0.888469,0.95285,0.750252,0.446602,0.901318,0.872571,0.303216,0.534959,0.709332,0.351369,0.258184,0.635219,0.790565,0.976373,0.589615,0.796144,0.383789,0.449464,0.044014,0.936704,0.356505,0.773046,0.258515,0.49769,0.0360646,0.628368,0.360015,0.174575,0.172769,0.931571,0.956817,0.398224,0.260199,0.96278,0.0878432,0.408114,0.680746,0.752419,0.658978,0.300652,0.332849,0.7136,0.809544,0.832327,0.481346,0.825327,0.492441,0.757594,0.111235,0.857344,0.898719,0.534986,0.979868,0.462112,0.0130822,0.104107,0.447567,0.644659,0.686256,0.827884,0.223611,0.110494,0.950025,0.235872,0.45459,0.498188,0.30428,0.844009,0.21422,0.447565,0.388072,0.383834,0.414696,0.734286,0.189212,0.502199,0.879583,0.0874285,0.231205,0.931455,0.809525,0.620049,0.308858,0.198697,0.326526,0.436898,0.127749,0.413369,0.668653,0.339886,0.0714671,0.422638,0.918582,0.180889,0.880203,0.574573,0.893878,0.892977,0.506447,0.732446,0.101081,0.626008,0.458977,0.94792,0.0613604,0.63496,0.332633,0.483526,0.35608,0.183504,0.183553,0.454076,0.850844,0.513732,0.512734,0.0903363,0.497958,0.091776,0.0312899,0.0717643,0.118359,0.682605,0.493095,0.818836,0.437213,0.756304,0.0193224,0.159229,0.986938,0.541278,0.995522,0.113572,0.163206,0.156485,0.283243,0.238282,0.109073,0.22056,0.220311,0.531043,0.724891,0.130088,0.178436,0.234147,0.0316747,0.610465,0.137215,0.0442298,0.27694,0.434167,0.549656,0.196751,0.531803,0.395181,0.166824,0.320315,0.638482,0.877038,0.111311,0.306574,0.16325,0.206008,0.495531,0.954814,0.213053,0.309309,0.29915,0.239339,0.997684,0.616564,0.0458734,0.0472831,0.735996,0.0207887,0.76733,0.725145,0.728572,0.272866,0.706225,0.653668,0.0477816,0.856572,0.599905,0.832009,0.965491,0.144771,0.0610994,0.693017,0.633939,0.497055,0.30288,0.0542324,0.253357,0.181605,0.984079,0.0422724,0.111647,0.410486,0.388059,0.710762,0.731491,0.534571,0.615868,0.74439,0.999939,0.215807,0.843634,0.873468,0.820052,0.964233,0.109326,0.368017,0.738795,0.556865,0.274546,0.117025,0.632354,0.0499681,0.53907,0.941253,0.388552,0.626832,0.196768,0.140532,0.865558,0.205241,0.668394,0.509482,0.11979,0.740023,0.979976,0.12539,0.997379,0.99532,0.591757,0.9957,0.949551,0.576429,0.237516,0.488517,0.296413,0.11463,0.235334,0.44114,0.0612912,0.00519538,0.460269,0.386031,0.302431,0.228677,0.882448,0.769252,0.0501699,0.50193,0.2343,0.746211,0.239818,0.164545,0.144242,0.200428,0.764565,0.805003,0.950455,0.0572228,0.320874,0.409075,0.00925589,0.316472,0.384507,0.0451766,0.897218,0.95049,0.733646,0.567506,0.0619544,0.935409,0.424598,0.802583,0.742262,0.379288,0.690959,0.190727,0.148554,0.511717,0.532714,0.263655,0.612283,0.40883,0.815247,0.713958,0.724535,0.973122,0.685807,0.727999,0.801452,0.121111,0.710543,0.117291,0.374553,0.567611,0.937537,0.45347,0.643534,0.829713,0.865301,0.774523,0.559724,0.469803,0.968087,0.328037,0.903607,0.442813,0.441132,0.126508,0.334427,0.917923,0.2595,0.833471,0.225477,0.123344,0.546641,0.135507,0.221451,0.854726,0.790047,0.783976,0.143064,0.92215,0.569668,0.72889,0.743639,0.733045,0.778994,0.33417,0.0872882,0.600392,0.297118,0.725007,0.356881,0.060513,0.638213,0.873741,0.874052,0.540638,0.702895,0.801915,0.33993,0.927633,0.129112,0.313102,0.178439,0.122869,0.0617569,0.676726,0.13887,0.101368,0.481193,0.526469,0.813226,0.412566,0.589451,0.105002,0.99808,0.427875,0.555603,0.00460422,0.367135,0.674915,0.290348,0.637561,0.587267,0.607646,0.764318,0.638667,0.500669,0.160897,0.0807967,0.30538,0.0165137,0.155272,0.049518,0.604163,0.867106,0.954395,0.780371,0.212284,0.79341,0.774691,0.343982,0.38308,0.460172,0.698127,0.326645,0.627284,0.577903,0.993455,0.237941,0.115785,0.131122,0.21689,0.371486,0.666403,0.200123,0.688868,0.590773,0.286447,0.428253,0.154247,0.584842,0.273167,0.60972,0.29838,0.815416,0.381095,0.335897,0.880227,0.317723,0.25374,0.48236,0.813666,0.0775027,0.269238,0.163093,0.897671,0.7209,0.790394,0.746348,0.411483,0.309253,0.0582451,0.608161,0.7044,0.214844,0.375005,0.431612,0.263222,0.646965,0.0662277,0.917761,0.765381,0.450019,0.686445,0.00830644,0.747521,0.937945,0.811046,0.906785,0.668542,0.184276,0.443266,0.0352734,0.493053,0.101457,0.167028,0.247016,0.33409,0.580513,0.81485,0.508831,0.232425,0.657824,0.672081,0.615036,0.250392,0.364461,0.417693,0.34229,0.929188,0.0189521,0.819993,0.819077,0.711044,0.618747,0.204697,0.293687,0.847809,0.382463,0.185869,0.0765592,0.511126,0.123647,0.127938,0.691139,0.606961,0.0338961,0.0662072,0.798847,0.195805,0.0407976,0.63642,0.876059,0.38746,0.695154,0.0947046,0.87506,0.487336,0.0065099,0.16755,0.829897,0.114614,0.592405,0.982355,0.303391,0.167574,0.607842,0.0681249,0.0776911,0.150306,0.00135404,0.0836131,0.274792,0.756388,0.791701,0.89186,0.266403,0.872968,0.944162,0.402293,0.560111,0.528376,0.361554,0.000469923,0.730684,0.257288,0.727614,0.0822111,0.0706543,0.58905,0.686755,0.284057,0.344213,0.162533,0.512725,0.878536,0.644821,0.458619,0.475631,0.480125,0.657448,0.433745,0.234254,0.539453,0.972038,0.985468,0.399851,0.849423,0.163794,0.0966921,0.450555,0.0264887,0.748385,0.0280063,0.138628,0.21626,0.629413,0.507464,0.242639,0.168891,0.028815,0.673715,0.598291,0.889995,0.677779,0.898609,0.286087,0.836015,0.82097,0.824679,0.440716,0.89488,0.316617,0.97435,0.0770412,0.44898,0.129682,0.0937043,0.652626,0.749437,0.766355,0.814156,0.732941,0.569221,0.00444794,0.741117,0.17871,0.949906,0.932544,0.333913,0.887524,0.957564,0.905353,0.792178,0.973247,0.263628,0.399521,0.247518,0.0978625,0.737369,0.0274729,0.39286,0.291317,0.11589,0.556509,0.616087,0.0791901,0.0596392,0.178167,0.0650514,0.127149,0.261881,0.0957294,0.490207,0.632745,0.269512,0.943533,0.173725,0.935832,0.0400597,0.056833,0.8646,0.567058,0.389311,0.362485,0.655055,0.147883,0.938294,0.551785,0.798732,0.903062,0.81861,0.100695,0.953802,0.771707,0.685157,0.384263,0.957336,0.686093,0.460258,0.58568,0.836536,0.17128,0.871665,0.704526,0.895974,0.58509,0.985215,0.617963,0.172917,0.326487,0.745647,0.975683,0.231564,0.759725,0.878527,0.599717,0.877732,0.847693,0.125808,0.314368,0.934803,0.0501115,0.926804,0.774245,0.202335,0.518627,0.565954,0.81227,0.133052,0.209578,0.00539994,0.998087,0.973253,0.390888,0.676649,0.790543,0.443721,0.337969,0.319542,0.307013,0.815759,0.971292,0.271796,|0.629216,0.688469,0.0807799,0.387957,0.123182,0.55126,0.895855,0.889499,0.547728,0.437268,0.967972,0.275999,0.852657,0.971501,0.453001,0.194248,0.706217,0.567751,0.429734,0.100438,0.581934,0.615556,0.645956,0.679705,0.637712,0.203958,0.793778,0.5069,0.661862,0.203471,0.910496,0.703731,0.669095,0.831823,0.879109,0.791678,0.125004,0.397117,0.398732,0.769428,0.137386,0.172556,0.84535,0.805912,0.427464,0.622829,0.060519,0.182327,0.174211,0.114481,0.686858,0.298385,0.649322,0.836485,0.596398,0.217042,0.927503,0.558671,0.465103,0.515282,0.616283,0.672509,0.251333,0.328303,0.699844,0.412136,0.736378,0.573902,0.100026,0.697685,0.580679,0.339291,0.392943,0.831114,0.947589,0.279516,0.101711,0.111435,0.00657052,0.556224,0.7319,0.359924,0.165388,0.699525,0.663992,0.636189,0.209296,0.330515,0.415319,0.758926,0.240866,0.383243,0.479176,0.201276,0.0265771,0.936484,0.538069,0.704455,0.864728,0.842844,0.858068,0.730751,0.445443,0.565863,0.45796,0.613026,0.304306,0.317628,0.755522,0.257632,0.720153,0.937948,0.421527,0.739354,0.141947,0.243127,0.560313,0.566376,0.708343,0.218033,0.944693,0.629416,0.263163,0.420696,0.464868,0.623598,0.250488,0.72366,0.590876,0.933767,0.0521004,0.706947,0.146466,0.455524,0.38475,0.87221,0.620051,0.452282,0.913261,0.86524,0.026742,0.393871,0.531623,0.9207,0.282021,0.230599,0.422778,0.438979,0.795479,0.46833,0.687631,0.488624,0.383235,0.598167,0.672327,0.819194,0.138941,0.134555,0.785255,0.740618,0.32003,0.251962,0.226073,0.0283281,0.929933,0.400951,0.554833,0.0649015,0.565857,0.117805,0.83698,0.109407,0.145029,0.41542,0.0250619,0.914087,0.955652,0.282182,0.152437,0.151993,0.289338,0.531166,0.209266,0.654754,0.438488,0.878938,0.0609523,0.822661,0.886862,0.428402,0.683109,0.30671,0.114303,0.469632,0.160726,0.137062,0.724444,0.121863,0.289267,0.813299,0.595913,0.14366,0.602599,0.0217628,0.245762,0.79737,0.266847,0.203064,0.294964,0.98054,0.337976,0.145225,0.260493,0.456267,0.912379,0.300992,0.467796,0.943956,0.665999,0.217345,0.73479,0.613273,0.980723,0.194584,0.611497,0.821019,0.870122,0.517636,0.674407,0.274678,0.88529,0.139781,0.185873,0.103723,0.0229186,0.63613,0.675026,0.43281,0.150421,0.535097,0.97858,0.305311,0.679047,0.379662,0.0410761,0.668011,0.846759,0.629316,0.306013,0.421021,0.341508,0.660393,0.835019,0.315882,0.976553,0.0268387,0.680917,0.407796,0.648129,0.65645,0.135347,0.931642,0.916928,0.0632519,0.710793,0.806263,0.640674,0.7515,0.325774,0.607051,0.201629,0.100243,0.778027,0.80643,0.61461,0.835734,0.504634,0.0748025,0.0675833,0.534194,0.844361,0.357945,0.683717,0.272922,0.182956,0.420871,0.445093,0.878509,0.329414,0.442025,0.614809,0.791584,0.637209,0.537649,0.573618,0.821613,0.902835,0.939038,0.42774,0.860965,0.919165,0.42919,0.918086,0.46643,0.154508,0.295873,0.723845,0.708154,0.960261,0.856963,0.572508,0.263466,0.661348,0.360883,0.797415,0.00126916,0.620315,0.504613,0.0798525,0.468798,0.0174118,0.999096,0.0260041,0.184072,0.610889,0.339211,0.988711,0.862447,0.831402,0.833361,0.416135,0.689176,0.662469,0.0954871,0.496048,0.477437,0.966997,0.139281,0.867849,0.0588461,0.298643,0.635297,0.549409,0.887951,0.580659,0.088816,0.931976,0.133019,0.448945,0.396161,0.727705,0.965522,0.938236,0.157827,0.427918,0.34425,0.207898,0.0382444,0.703847,0.00792438,0.104876,0.646335,0.23989,0.844001,0.979567,0.154265,0.606955,0.6019,0.408855,0.931975,0.937382,0.733444,0.502292,0.583071,0.544213,0.927358,0.859289,0.0970956,0.410292,0.532882,0.0996187,0.114191,0.298811,0.0435212,0.122321,0.064351,0.806552,0.0477169,0.770993,0.718013,0.676158,0.657224,0.829111,0.219486,0.514268,0.4829,0.511342,0.638663,0.315521,0.871742,0.0022223,0.319349,0.631343,0.865417,0.992907,0.759939,0.0891988,0.76587,0.730906,0.230726,0.600698,0.734199,0.979044,0.761637,0.884437,0.348431,0.841186,0.702364,0.537438,0.275407,0.514178,0.757465,0.134703,0.2823,0.748889,0.552108,0.989299,0.737604,0.82411,0.465665,0.624188,0.714637,0.679792,0.194544,0.854024,0.111193,0.630665,0.188168,0.127103,0.139107,0.513778,0.178671,0.495218,0.252227,0.0885307,0.7857,0.936014,0.742205,0.0379485,0.119055,0.170602,0.648162,0.653049,0.285181,0.662937,0.0324546,0.244163,0.907249,0.411421,0.256822,0.368323,0.178221,0.255323,0.761127,0.452123,0.0865353,0.522608,0.49326,0.50155,0.0280454,0.991703,0.288259,0.61837,0.443429,0.78128,0.676167,0.251139,0.903683,0.994103,0.948934,0.853268,0.431087,0.406807,0.66123,0.35952,0.230761,0.47757,0.460467,0.819525,0.651693,0.801692,0.903691,0.636862,0.575274,0.966815,0.617973,0.214695,0.213153,0.302673,0.161488,0.264884,0.707699,0.292683,0.762954,0.826249,0.224614,0.130593,0.390106,0.572107,0.890687,0.480905,0.705162,0.680088,0.788437,0.0447636,0.175798,0.260227,0.724078,0.947461,0.835995,0.866642,0.922282,0.245581,0.757326,0.689498,0.925798,0.952882,0.099045,0.251071,0.343389,0.359027,0.919585,0.760907,0.153377,0.921979,0.0563231,0.0912967,0.451811,0.422161,0.090767,0.41135,0.53007,0.765105,0.493816,0.111845,0.0127261,0.250056,0.43857,0.68598,0.126857,0.598776,0.300931,0.800114,0.766706,0.26538,0.27285,0.877662,0.832676,0.379062,0.208774,0.00801122,0.887821,0.293433,0.550273,0.354973,0.345752,0.363033,0.179758,0.378723,0.836979,0.053095,0.309507,0.738173,0.228379,0.764737,0.388363,0.26089,0.0131157,0.362722,0.406203,0.538484,0.75436,0.63374,0.783083,0.72534,0.818835,0.884918,0.626256,0.580072,0.601995,0.237847,0.14705,0.670884,0.781133,0.529804,0.932371,0.958703,0.776664,0.448366,0.680379,0.608332,0.527937,0.480709,0.0324184,0.632915,0.545608,0.301799,0.843421,0.360644,0.706694,0.0497743,0.807114,0.830228,0.274099,0.271814,0.0349226,0.0661716,0.154154,0.369334,0.107699,0.483273,0.394038,0.0667063,0.399538,0.357225,0.11723,0.994229,0.33852,0.239155,0.52068,0.341253,0.344689,0.487151,0.887153,0.409097,0.376517,0.939603,0.922766,0.956079,0.400047,0.217081,0.724262,0.722447,0.915671,0.272157,0.620883,0.10231,0.814989,0.228414,0.779781,0.776254,0.888955,0.667753,0.494525,0.950076,0.80096,0.866448,0.737946,0.485027,0.170361,0.262765,0.578378,0.642856,0.664122,0.834552,0.356014,0.203774,0.932526,0.066753,0.669926,0.364221,0.325845,0.354911,0.137582,0.573503,0.390975,0.820838,0.758993,0.445016,0.316257,0.233472,0.762667,0.458583,0.493075,0.194726,0.584611,0.915422,0.255367,0.589224,0.113334,0.384059,0.782221,0.134218,0.136201,0.548843,0.879726,0.990306,0.653295,0.950347,0.2386,0.763143,0.333099,0.154224,0.172424,0.507752,0.856818,0.886023,0.0160276,0.5606,0.67396,0.198008,0.921109,0.690298,0.83221,0.85966,0.528643,0.400593,0.692363,0.289247,0.812429,0.247061,0.995754,0.06315,0.696338,0.561819,0.703042,0.979374,0.466617,0.66573,0.357318,0.796128,0.580843,0.369375,0.984138,0.936524,0.767645,0.36127,0.0432126,0.59175,0.234953,0.471366,0.697146,0.883193,0.849892,0.0219817,0.25767,0.492915,0.0353299,0.138717,0.292644,0.34319,0.21892,0.245003,0.88162,0.287704,0.521835,0.385047,0.946583,0.830401,0.727534,0.466025,0.724925,0.511886,0.888708,0.856366,0.575681,0.460213,0.371728,0.654851,0.351935,0.782991,0.0698395,0.914563,0.473338,0.0907755,0.244057,0.345924,0.131218,0.939265,0.997651,0.301613,0.948647,0.156807,0.603419,0.816873,0.572894,0.658357,0.461634,0.192874,0.403154,0.766266,0.805481,0.626588,0.0086211,0.0518532,0.433887,0.728566,0.79817,0.755337,0.261418,0.423457,0.746596,0.393916,0.937576,0.399502,0.211102,0.563967,0.999403,0.39522,0.189907,0.64088,0.46105,0.374816,0.795579,0.608564,0.900644,0.950444,0.15331,0.281092,0.687582,0.648681,0.780058,0.0414735,0.951408,0.555194,0.600835,0.433144,0.815623,0.719398,0.527508,0.673723,0.757339,0.821046,0.978506,0.561589,0.891523,0.402113,0.893481,0.18186,0.94219,0.576081,0.533443,0.580781,0.44624,0.579063,0.960287,0.176799,0.878279,0.310198,0.285474,0.27134,0.212902,0.75217,0.252046,0.341833,0.313759,0.410905,0.945393,0.896312,0.0695449,0.599158,0.155671,0.586006,0.0974571,0.969669,0.61511,0.281646,0.22573,0.39743,0.216094,0.104111,0.210729,0.60061,0.723757,0.221633,0.0646647,0.706663,0.107272,0.0642516,0.893058,0.868873,0.452314,0.232563,0.434354,0.471377,0.0772837,0.803586,0.58573,0.550237,0.0678121,0.526799,0.640485,0.980379,0.755967,0.0916173,0.400098,0.885032,0.00365937,0.931162,0.581274,0.514176,0.005557,0.351663,0.590063,0.759374,0.113483,0.245649,0.581931,0.55922,0.858072,0.0218542,0.294041,0.430465,0.325646,0.0357615,0.88933,0.663842,0.247917,0.579754,0.70415,0.0781395,0.563709,0.166629,0.405976,0.567224,0.40761,0.626511,0.854804,0.283515,0.419107,0.391393,0.353841,0.0572952,0.601516,0.667389,0.193537,0.591287,0.989927,0.184412,0.503769,0.807131,0.658948,0.757368,0.812153,0.825492,0.54599,0.0310022,0.386778,0.712313,0.242187,0.999265,0.324515,0.620074,0.408624,0.66948,0.703698,0.22194,0.444898,0.769732,0.382526,0.12823,0.744772,0.167219,0.0820467,0.408031,0.959556,0.651113,0.225982,0.0609653,0.89854,0.722078,0.484374,0.94211,0.63351,0.538668,0.598122,0.378867,0.0155544,0.853576,0.672173,0.777352,0.282944,0.176529,0.522485,0.111468,0.71566,0.214709,0.399802,0.568752,0.301677,0.564638,0.133894,0.686054,0.305216,0.121492,0.133778,0.534703,0.769175,0.779979,0.231369,|0.346217,0.249872,0.301102,0.494281,0.312662,0.799302,0.895064,0.652987,0.0245401,0.63928,0.350959,0.0882183,0.888148,0.701144,0.236468,0.320392,0.740419,0.180871,0.19324,0.669642,0.636762,0.975986,0.0165524,0.571221,0.172943,0.735011,0.372954,0.657979,0.312582,0.751144,0.99037,0.207355,0.467044,0.473143,0.768352,0.584794,0.449804,0.920103,0.212679,0.417942,0.515007,0.803817,0.115048,0.194427,0.993088,0.698497,0.709163,0.807158,0.570551,0.539227,0.904724,0.162657,0.800779,0.0863007,0.561322,0.855439,0.755439,0.267306,0.288104,0.0878948,0.976741,0.20125,0.055725,0.149052,0.780623,0.437605,0.334861,0.91758,0.635491,0.521207,0.534107,0.0830439,0.429424,0.424498,0.221447,0.272079,0.279292,0.047244,0.93164,0.20375,0.831637,0.523179,0.35854,0.98009,0.791503,0.0244802,0.186345,0.432632,0.758138,0.11856,0.587986,0.233115,0.86954,0.771147,0.495146,0.698258,0.194429,0.598795,0.223358,0.613186,0.279282,0.983465,0.221826,0.0956841,0.301358,0.582112,0.3356,0.614276,0.8873,0.643965,0.657076,0.752904,0.6431,0.592683,0.752799,0.216846,0.840079,0.426974,0.235974,0.0696365,0.172046,0.285002,0.689004,0.0547206,0.07338,0.914883,0.105024,0.265579,0.430317,0.326653,0.492484,0.579761,0.515103,0.64497,0.676972,0.263609,0.952675,0.677965,0.0084976,0.266083,0.288945,0.37515,0.600103,0.88348,0.725653,0.693665,0.39979,0.288918,0.15213,0.829489,0.369134,0.530095,0.370236,0.802067,0.996832,0.54935,0.855151,0.0932617,0.0237753,0.634629,0.422477,0.40067,0.358798,0.364846,0.279285,0.199648,0.910536,0.0477742,0.286727,0.498523,0.184525,0.537414,0.841012,0.529359,0.28646,0.997063,0.772707,0.0406075,0.516462,0.146153,0.326343,0.138222,0.523342,0.121122,0.472181,0.150081,0.721822,0.452323,0.904741,0.380322,0.766096,0.999688,0.842905,0.534041,0.859542,0.939577,0.498194,0.169332,0.237172,0.688895,0.74443,0.361318,0.268055,0.289989,0.143459,0.313946,0.783703,0.468838,0.145561,0.0699198,0.661527,0.114973,0.53732,0.178735,0.855352,0.730857,0.799996,0.157373,0.0640972,0.157304,0.242372,0.801881,0.861096,0.196474,0.417756,0.536592,0.640354,0.0773373,0.892114,0.632845,0.118612,0.40236,0.4335,0.0622217,0.325271,0.864424,0.740672,0.298279,0.882061,0.410169,0.210109,0.546181,0.737207,0.97665,0.892275,0.139147,0.603682,0.939184,0.337591,0.622016,0.876093,0.77583,0.0016734,0.23604,0.550827,0.539298,0.3645,0.834044,0.75576,0.0547035,0.661101,0.617585,0.757027,0.677133,0.257894,0.957366,0.5627,0.921566,0.519279,0.313328,0.314812,0.034265,0.0745718,0.245115,0.689417,0.711841,0.725224,0.241924,0.00288224,0.140611,0.797129,0.850061,0.773631,0.328937,0.367435,0.919808,0.111951,0.191139,0.202156,0.887168,0.0506603,0.897503,0.635108,0.0959851,0.637937,0.830269,0.236942,0.706513,0.917872,0.624997,0.276038,0.807081,0.225043,0.15356,0.622667,0.1016,0.336032,0.481424,0.654145,0.213827,0.414122,0.774529,0.57793,0.400347,0.835714,0.689464,0.487118,0.737637,0.965682,0.648027,0.981728,0.499917,0.338076,0.322808,0.718219,0.977597,0.904307,0.18549,0.834824,0.902745,0.0852352,0.40276,0.359406,0.040363,0.397468,0.822526,0.245408,0.0634511,0.680225,0.336979,0.426448,0.198898,0.221533,0.892182,0.837121,0.643605,0.974092,0.71973,0.0697812,0.122311,0.365808,0.135766,0.649227,0.569319,0.949538,0.917364,0.359057,0.42699,0.752715,0.75028,0.454094,0.961386,0.922644,0.534691,0.220663,0.150133,0.196458,0.794026,0.244736,0.843097,0.907345,0.285097,0.150378,0.608001,0.991019,0.39014,0.14329,0.474354,0.266686,0.612505,0.505279,0.88852,0.284219,0.340487,0.867482,0.322738,0.891488,0.337329,0.476375,0.547913,0.860926,0.12363,0.193875,0.816649,0.980441,0.0546738,0.735639,0.676344,0.786571,0.164558,0.99494,0.773292,0.242536,0.738858,0.00638193,0.467049,0.90528,0.854079,0.872519,0.505663,0.338289,0.901077,0.97897,0.313582,0.187308,0.371731,0.327408,0.89794,0.238908,0.094494,0.71387,0.316039,0.280121,0.143434,0.704975,0.867378,0.0413452,0.351893,0.975877,0.123556,0.665849,0.422221,0.108864,0.115892,0.181707,0.450571,0.873044,0.91769,0.251937,0.778919,0.416838,0.798909,0.0751228,0.50513,0.00275785,0.125906,0.871912,0.782809,0.833757,0.220965,0.615804,0.274538,0.189275,0.279914,0.864352,0.25725,0.593198,0.737351,0.975649,0.354561,0.803107,0.337763,0.969583,0.221424,0.422859,0.19282,0.764442,0.211908,0.305548,0.737461,0.86396,0.331915,0.255494,0.790149,0.30894,0.41872,0.357087,0.420924,0.746617,0.139895,0.285728,0.986193,0.312606,0.5239,0.898395,0.648865,0.0229573,0.62428,0.663597,0.718143,0.658211,0.00761646,0.484462,0.505315,0.599548,0.694382,0.128654,0.751483,0.73286,0.420308,0.0982333,0.693162,0.747703,0.04474,0.058179,0.114571,0.293867,0.658941,0.288102,0.374908,0.72784,0.636372,0.819905,0.425028,0.774413,0.367951,0.776936,0.560552,0.897136,0.669278,0.378745,0.63086,0.374615,0.509318,0.608277,0.268021,0.795398,0.223275,0.592305,0.855139,0.636497,0.479734,0.152947,0.396903,0.742145,0.450282,0.438164,0.0599448,0.454198,0.784159,0.500452,0.477409,0.410906,0.269288,0.0123393,0.0211449,0.788611,0.881727,0.909268,0.933575,0.0587807,0.35079,0.241409,0.38975,0.418217,0.46342,0.710072,0.69819,0.928151,0.464219,0.464487,0.191168,0.867264,0.108701,0.538192,0.128181,0.261752,0.87807,0.489477,0.727287,0.192331,0.948162,0.274281,0.3799,0.450191,0.0754662,0.657213,0.00516629,0.767568,0.34244,0.903304,0.843212,0.402449,0.518482,0.123399,0.0859019,0.27098,0.46507,0.549724,0.189894,0.347594,0.45073,0.27846,0.827995,0.385489,0.0646369,0.532861,0.818827,0.190999,0.0665464,0.709858,0.861021,0.089457,0.723383,0.432581,0.446528,0.0450665,0.0407293,0.736331,0.487673,0.512418,0.658783,0.88701,0.602078,0.768129,0.639228,0.845256,0.642755,0.703905,0.709829,0.589878,0.173935,0.493572,0.122743,0.466397,0.632565,0.70077,0.935538,0.186419,0.0805212,0.778534,0.25618,0.924006,0.403761,0.911515,0.755277,0.978009,0.300417,0.510575,0.324166,0.663175,0.864588,0.074825,0.108502,0.97543,0.223586,0.955105,0.0438759,0.367369,0.555426,0.948673,0.132669,0.43193,0.863238,0.906378,0.309693,0.813465,0.424531,0.908674,0.49998,0.206873,0.247807,0.455043,0.532021,0.140892,0.231117,0.751662,0.981274,0.064886,0.0974022,0.494379,0.0327697,0.846001,0.605268,0.478716,0.75201,0.518877,0.346244,0.792509,0.207621,0.784311,0.564389,0.630648,0.563437,0.750715,0.450545,0.775299,0.563013,0.578861,0.780519,0.956028,0.593167,0.918947,0.853323,0.675959,0.270729,0.96912,0.952824,0.256418,0.209344,0.417289,0.825091,0.0337067,0.585241,0.119773,0.529137,0.0901408,0.0591873,0.903,0.312005,0.911103,0.576617,0.780758,0.892228,0.940975,0.70643,0.0349171,0.0269634,0.487597,0.744399,0.761241,0.666903,0.888949,0.277243,0.0385084,0.532223,0.711682,0.0679865,0.185297,0.136641,0.627156,0.79025,0.0769219,0.0926045,0.533449,0.0660204,0.979896,0.719476,0.624529,0.0082162,0.68914,0.654276,0.184693,0.7603,0.675776,0.576167,0.662387,0.861929,0.322989,0.532689,0.315283,0.07361,0.677763,0.404814,0.445387,0.616137,0.569558,0.839035,0.601677,0.373008,0.022181,0.460131,0.981002,0.904994,0.0427629,0.887767,0.896485,0.493738,0.892395,0.22758,0.837575,0.059157,0.570203,0.655301,0.192787,0.811342,0.0334508,0.626367,0.99804,0.252047,0.756206,0.268033,0.146729,0.424801,0.921197,0.30963,0.20522,0.647114,0.334362,0.383539,0.737947,0.756023,0.378573,0.549738,0.242057,0.0527578,0.735635,0.656544,0.974958,0.0363188,0.695952,0.449847,0.71644,0.611993,0.127262,0.659245,0.281284,0.852417,0.0807559,0.461945,0.0938461,0.200938,0.222186,0.617018,0.228725,0.0965873,0.912674,0.98392,0.599883,0.805616,0.922928,0.59715,0.136886,0.425731,0.400974,0.594017,0.190036,0.746363,0.871493,0.223041,0.429971,0.384835,0.493653,0.0859579,0.839331,0.958515,0.68445,0.807553,0.815934,0.151273,0.309851,0.603918,0.884467,0.413217,0.345882,0.521384,0.261318,0.276665,0.468601,0.232766,0.0380363,0.529777,0.77373,0.156004,0.442779,0.353763,0.179847,0.84129,0.983646,0.206499,0.509008,0.611897,0.353276,0.18336,0.80123,0.517036,0.0272595,0.0299382,0.241906,0.957671,0.408846,0.194737,0.483448,0.625993,0.675599,0.726068,0.595371,0.912181,0.00953001,0.244752,0.122467,0.0464078,0.379616,0.89876,0.955353,0.991984,0.134636,0.830999,0.778264,0.139035,0.640349,0.207366,0.723354,0.321045,0.908609,0.587643,0.0634688,0.950417,0.211078,0.178036,0.32095,0.4578,0.0919417,0.45665,0.846548,0.31106,0.0337018,0.133401,0.124738,0.850589,0.907111,0.943025,0.218475,0.987437,0.927374,0.0942894,0.29921,0.602732,0.492929,0.753843,0.0369549,0.249202,0.921987,0.64924,0.975138,0.111084,0.579398,0.784059,0.46917,0.57073,0.843846,0.922687,0.68386,0.854871,0.669881,0.191782,0.77514,0.559076,0.22607,0.678942,0.416834,0.703703,0.487519,0.156147,0.90742,0.667842,0.935896,0.518553,0.864516,0.407796,0.399419,0.870151,0.472398,0.250221,0.206897,0.556014,0.0769899,0.569201,0.10883,0.0543221,0.66167,0.960766,0.695732,0.134839,0.615835,0.30874,0.213983,0.690637,0.0693901,0.159887,0.723437,0.573096,0.678601,0.707991,0.313574,0.349564,0.669242,0.575563,0.627449,0.650205,0.984512,0.319158,0.188621,0.626865,0.859212,0.370612,0.356154,0.37975,0.281188,0.58573,0.766845,0.499519,0.443142,0.0581425,0.675516,0.408168,0.16616,0.346087,0.533024,0.401213,|0.177586,0.904271,0.616072,0.429829,0.441974,0.536991,0.872918,0.891573,0.232717,0.624063,0.573375,0.39655,0.768877,0.962667,0.072833,0.57823,0.388193,0.666843,0.333113,0.0741384,0.0816261,0.593864,0.820245,0.417719,0.974236,0.860983,0.286835,0.651946,0.793168,0.818861,0.977154,0.972697,0.216749,0.533072,0.420319,0.43177,0.443156,0.320446,0.962427,0.292734,0.726297,0.468072,0.57233,0.772008,0.103616,0.553326,0.677728,0.969914,0.497619,0.751683,0.402533,0.40048,0.688414,0.283197,0.735281,0.659129,0.373777,0.424522,0.42026,0.300232,0.0324029,0.732609,0.0706418,0.246723,0.22697,0.217185,0.532408,0.0481544,0.729477,0.107651,0.745933,0.747226,0.224976,0.0772842,0.290992,0.942056,0.649348,0.393632,0.0803856,0.856713,0.738117,0.118331,0.374645,0.254317,0.189433,0.646583,0.780643,0.986573,0.627446,0.858695,0.519125,0.917182,0.429983,0.202193,0.781538,0.16675,0.0221934,0.586162,0.507854,0.171267,0.0221577,0.16032,0.28634,0.264521,0.281949,0.981507,0.695683,0.253964,0.602653,0.624165,0.19761,0.385765,0.662934,0.472862,0.790363,0.271142,0.229047,0.563741,0.728074,0.126798,0.869812,0.849674,0.50307,0.339019,0.769323,0.105858,0.149551,0.00207567,0.944439,0.26989,0.664055,0.988395,0.157126,0.0882214,0.678676,0.39232,0.63352,0.933621,0.644298,0.578159,0.0836184,0.103645,0.250184,0.663542,0.543543,0.677697,0.700736,0.605736,0.835436,0.191079,0.471533,0.0529127,0.324537,0.170977,0.265074,0.0544208,0.118167,0.806594,0.708586,0.607656,0.686339,0.299078,0.514872,0.491814,0.332661,0.302926,0.499514,0.383683,0.605449,0.471562,0.27001,0.13268,0.493191,0.140334,0.311964,0.63602,0.149473,0.214224,0.47197,0.371969,0.380359,0.76997,0.376141,0.00607812,0.0939102,0.264151,0.000449121,0.631807,0.584214,0.670374,0.805508,0.548243,0.467754,0.753768,0.137445,0.977225,0.642023,0.108615,0.998207,0.741543,0.589926,0.155606,0.7496,0.167599,0.264934,0.621627,0.643409,0.779898,0.329081,0.443169,0.354227,0.369317,0.70554,0.450892,0.702873,0.619059,0.234068,0.260304,0.787104,0.938383,0.434958,0.606936,0.133545,0.283199,0.209407,0.467473,0.731066,0.575867,0.783483,0.423183,0.732216,0.0521318,0.35935,0.393147,0.739721,0.0250497,0.0446401,0.195919,0.809606,0.150137,0.940344,0.754088,0.946172,0.843953,0.606767,0.0718737,0.158757,0.686353,0.247546,0.724969,0.479356,0.510501,0.595813,0.767131,0.647871,0.248191,0.265228,0.45193,0.196341,0.904953,0.544589,0.00292724,0.504406,0.186274,0.130719,0.470734,0.135515,0.415077,0.840461,0.540747,0.568298,0.00660634,0.455801,0.368597,0.786652,0.57658,0.370095,0.761146,0.888352,0.74576,0.275468,0.457517,0.735861,0.998807,0.588169,0.308048,0.180289,0.748513,0.967098,0.131554,0.0459458,0.684471,0.591,0.704127,0.081554,0.288339,0.360583,0.653173,0.0324451,0.39438,0.110241,0.960501,0.576434,0.300474,0.210792,0.0657374,0.693047,0.302274,0.666494,0.468683,0.883753,0.447875,0.734508,0.211442,0.794058,0.253142,0.180152,0.566629,0.901455,0.391223,0.0455564,0.344981,0.497834,0.567146,0.462951,0.701219,0.476353,0.951329,0.618631,0.452856,0.672163,0.576254,0.521982,0.522347,0.571398,0.756049,0.140137,0.266153,0.798595,0.316459,0.13923,0.401724,0.511534,0.174482,0.403642,0.114584,0.0269743,0.887034,0.341642,0.771898,0.574224,0.798985,0.094611,0.834743,0.20804,0.617986,0.353553,0.739526,0.965405,0.71619,0.625748,0.761575,0.490446,0.609731,0.99954,0.31923,0.786476,0.277545,0.884637,0.364693,0.523081,0.542008,0.830024,0.159795,0.0529171,0.723109,0.559072,0.0705138,0.547979,0.989408,0.177717,0.577459,0.256853,0.253141,0.352642,0.126164,0.387511,0.712195,0.243231,0.633864,0.356439,0.0210844,0.407446,0.953951,0.81898,0.129838,0.379782,0.164846,0.547278,0.222086,0.742235,0.111374,0.936505,0.200255,0.652313,0.932185,0.392106,0.668277,0.710085,0.582498,0.517713,0.737985,0.464536,0.206981,0.26128,0.991526,0.245003,0.363167,0.378877,0.345852,0.453493,0.0430869,0.823164,0.293554,0.579426,0.392812,0.570726,0.655833,0.956188,0.934465,0.203912,0.983891,0.296867,0.649284,0.499071,0.185662,0.165733,0.0113973,0.595021,0.288564,0.829099,0.585834,0.328709,0.96942,0.296555,0.730483,0.570409,0.433201,0.561481,0.205951,0.0416229,0.0147554,0.783649,0.0990568,0.83683,0.386513,0.600406,0.190383,0.0558019,0.288588,0.670806,0.37784,0.0572338,0.40758,0.556448,0.799041,0.0325125,0.452978,0.12283,0.645773,0.186651,0.218661,0.228026,0.104203,0.902052,0.486057,0.354377,0.142822,0.955619,0.0638972,0.929479,0.715803,0.453295,0.319556,0.379382,0.661093,0.333711,0.260277,0.276565,0.602757,0.416175,0.60426,0.805205,0.213774,0.944902,0.951014,0.161992,0.00723177,0.573787,0.139038,0.124127,0.917051,0.875954,0.0946452,0.779724,0.410662,0.189879,0.0805292,0.778719,0.183176,0.606434,0.930543,0.223042,0.0620592,0.603523,0.983591,0.57772,0.00448078,0.580367,0.30204,0.680981,0.984601,0.624977,0.367603,0.417361,0.157207,0.0700544,0.20155,0.288132,0.424369,0.902356,0.0722563,0.197581,0.641993,0.53343,0.736311,0.38715,0.578436,0.139727,0.69688,0.392894,0.92887,0.00432813,0.751115,0.837915,0.384465,0.42713,0.324715,0.592212,0.545969,0.672234,0.581613,0.722459,0.8578,0.552815,0.438389,0.588598,0.353353,0.527095,0.767532,0.812853,0.256149,0.282632,0.775425,0.20484,0.592079,0.864744,0.110415,0.956356,0.751053,0.761101,0.298667,0.519854,0.970721,0.622971,0.976972,0.373047,0.181222,0.359248,0.497174,0.639026,0.364094,0.260493,0.957505,0.82951,0.773468,0.2031,0.209711,0.923315,0.508029,0.378,0.227556,0.247868,0.174213,0.0515919,0.687802,0.600071,0.178697,0.0191616,0.398709,0.851132,0.63803,0.780381,0.687572,0.0158374,0.856037,0.435048,0.145001,0.792148,0.896239,0.817741,0.908605,0.867416,0.37721,0.937508,0.164854,0.555967,0.61039,0.91121,0.418838,0.873664,0.942116,0.581825,0.539291,0.944306,0.861089,0.00915402,0.895939,0.517911,0.294606,0.471135,0.512562,0.617317,0.246595,0.207959,0.053129,0.833035,0.792056,0.235294,0.108102,0.86792,0.684557,0.451329,0.813885,0.623547,0.373285,0.506927,0.57261,0.976986,0.303184,0.445656,0.671878,0.448596,0.649017,0.836957,0.341732,0.84862,0.446619,0.458196,0.713768,0.957246,0.674104,0.981408,0.461608,0.790217,0.206506,0.58174,0.340391,0.0339515,0.0935256,0.850773,0.431087,0.765948,0.973523,0.728983,0.761875,0.761842,0.818653,0.591717,0.28091,0.683332,0.638628,0.908475,0.148671,0.77256,0.0268098,0.169676,0.456638,0.792693,0.656364,0.103516,0.337265,0.292418,0.0268404,0.524563,0.462067,0.197329,0.939183,0.327381,0.418251,0.731211,0.781305,0.738135,0.111077,0.883602,0.211223,0.390452,0.388848,0.812293,0.524305,0.526699,0.58851,0.144474,0.486479,0.337529,0.950472,0.86764,0.561427,0.0468611,0.227025,0.38262,0.256541,0.385844,0.958952,0.654707,0.32923,0.302327,0.998046,0.997715,0.864284,0.22583,0.217394,0.760791,0.555792,0.51802,0.583233,0.989873,0.572769,0.489663,0.154905,0.35854,0.191013,0.505655,0.426165,0.666856,0.15641,0.865523,0.553306,0.0513191,0.573953,0.605897,0.274813,0.153574,0.437727,0.41204,0.343294,0.726439,0.187081,0.254353,0.178971,0.117422,0.153859,0.487455,0.350971,0.928335,0.619249,0.683149,0.801298,0.200802,0.207133,0.395949,0.108841,0.0327442,0.630924,0.834947,0.752088,0.336468,0.730958,0.885315,0.493497,0.252207,0.893771,0.317569,0.569467,0.650174,0.0556527,0.385249,0.260934,0.0616927,0.210007,0.0313346,0.205407,0.611429,0.699906,0.495686,0.390339,0.585896,0.0280749,0.213347,0.738419,0.43492,0.153353,0.954514,0.75453,0.735694,0.928584,0.438581,0.614061,0.202762,0.279783,0.962166,0.719081,0.613847,0.73316,0.981891,0.803205,0.533464,0.0944422,0.538926,0.931951,0.130697,0.369825,0.669489,0.793987,0.883928,0.740772,0.254999,0.681406,0.655337,0.964266,0.234069,0.96416,0.245286,0.0100511,0.154118,0.204713,0.026315,0.517989,0.970803,0.469478,0.21687,0.334514,0.441757,0.0670516,0.961096,0.876705,0.538588,0.180458,0.795478,0.968888,0.416057,0.122953,0.125228,0.00464338,0.306979,0.480702,0.0946612,0.522733,0.864903,0.217172,0.723168,0.677443,0.493082,0.575745,0.493342,0.967159,0.795012,0.48895,0.266932,0.852791,0.648175,0.154608,0.94716,0.805843,0.266382,0.876315,0.247866,0.830216,0.713,0.94623,0.050869,0.562411,0.695676,0.470182,0.45067,0.763112,0.53662,0.787219,0.662874,0.434266,0.894979,0.70239,0.746873,0.252543,0.691462,0.420818,0.832407,0.326937,0.826427,0.490478,0.485462,0.0486211,0.728897,0.293054,0.773136,0.896833,0.509502,0.25113,0.929115,0.178858,0.570581,0.74632,0.693899,0.853307,0.738149,0.0422963,0.166263,0.680742,0.516722,0.907623,0.370616,0.788749,0.2181,0.587573,0.157027,0.538,0.752977,0.165364,0.282062,0.635847,0.680888,0.82461,0.0990332,0.409081,0.591192,0.204494,0.61901,0.737057,0.690448,0.273712,0.506088,0.218359,0.230265,0.4203,0.281463,0.094057,0.877288,0.523561,0.939791,0.457124,0.359578,0.358578,0.514713,0.363114,0.10067,0.736051,0.386478,0.495472,0.98885,0.877224,0.477396,0.922103,0.165572,0.994363,0.38401,0.331525,0.949767,0.221425,0.813479,0.15914,0.638279,0.380007,0.394777,0.255085,0.183818,0.463482,0.053438,0.687086,0.47783,0.233336,0.754407,0.753019,0.196299,0.302438,0.732882,0.540879,0.583757,0.328061,0.628763,0.337292,0.426211,0.698332,0.380444,0.129148,0.069241,0.402762,0.870702,0.655625,0.531581,0.0626893,|0.779019,0.34156,0.762852,0.620914,0.316903,0.952048,0.0162302,0.360552,0.00992256,0.348104,0.8485,0.168778,0.667998,0.177216,0.455148,0.24041,0.349419,0.131119,0.966367,0.794375,0.781493,0.315215,0.211941,0.242915,0.139926,0.463689,0.173908,0.413302,0.516508,0.40575,0.186602,0.723539,0.68396,0.452982,0.795645,0.688562,0.294577,0.629482,0.517112,0.26323,0.28019,0.748636,0.441669,0.797886,0.94839,0.00130653,0.0972292,0.217011,0.396305,0.591656,0.852877,0.0743052,0.375543,0.128781,0.764533,0.62457,0.35958,0.708698,0.803687,0.247975,0.94324,0.407669,0.588244,0.0700665,0.0583612,0.96321,0.736507,0.162576,0.52937,0.755732,0.29535,0.690195,0.179909,0.568732,0.275564,0.595835,0.510356,0.416988,0.0448151,0.159993,0.916882,0.921455,0.495644,0.301896,0.829353,0.518761,0.775168,0.222156,0.211506,0.545183,0.731254,0.622563,0.53656,0.579699,0.600019,0.050215,0.387522,0.208125,0.060917,0.131695,0.55813,0.598862,0.527429,0.572446,0.725963,0.105181,0.669346,0.150554,0.709187,0.282239,0.845492,0.18623,0.411297,0.70225,0.606249,0.328,0.899401,0.897943,0.15714,0.931684,0.72492,0.859974,0.847591,0.48644,0.0759958,0.474597,0.634406,0.377143,0.254229,0.906777,0.496702,0.159452,0.830171,0.191952,0.125529,0.277243,0.406945,0.0946171,0.63191,0.575609,0.0594216,0.793487,0.495293,0.718563,0.383471,0.308542,0.0767331,0.542944,0.273347,0.198996,0.9001,0.0373858,0.922359,0.202528,0.945811,0.256583,0.442364,0.861424,0.112067,0.948799,0.776738,0.318479,0.090264,0.941719,0.171471,0.638857,0.743249,0.205814,0.016396,0.79649,0.795827,0.166669,0.101927,0.783493,0.40058,0.938844,0.259265,0.753311,0.237788,0.323593,0.521635,0.736856,0.440465,0.00528222,0.136614,0.92293,0.932999,0.784184,0.110492,0.362451,0.921143,0.147571,0.455618,0.981113,0.151832,0.263551,0.696831,0.653906,0.0289423,0.307323,0.149762,0.338293,0.0407034,0.971736,0.161531,0.366894,0.783833,0.0582379,0.950579,0.45404,0.408442,0.678387,0.874158,0.962582,0.765972,0.413083,0.714831,0.611047,0.113451,0.225891,0.604553,0.670033,0.221333,0.616818,0.19675,0.0940855,0.0552389,0.111784,0.114046,0.9417,0.978723,0.0469278,0.452293,0.244988,0.778842,0.0141998,0.121977,0.35892,0.912685,0.25795,0.80229,0.148368,0.063958,0.564278,0.0632262,0.719076,0.819083,0.724898,0.185601,0.106506,0.806971,0.424009,0.581543,0.784669,0.465332,0.043551,0.893798,0.796539,0.603555,0.021194,0.194687,0.203647,0.759311,0.0184531,0.714523,0.300637,0.143542,0.504756,0.0826974,0.345287,0.45594,0.464134,0.199457,0.842134,0.45131,0.608855,0.496571,0.319956,0.170204,0.0786583,0.335793,0.229748,0.699608,0.730204,0.516498,0.138559,0.751206,0.34866,0.229635,0.579818,0.0431672,0.421284,0.439763,0.726398,0.0204576,0.660344,0.708632,0.603208,0.520938,0.926555,0.0124195,0.115336,0.691977,0.832226,0.0494295,0.711543,0.0964612,0.699195,0.291346,0.261716,0.966002,0.592834,0.374953,0.391384,0.642671,0.259497,0.792248,0.234774,0.127867,0.143652,0.305643,0.146362,0.829705,0.896086,0.0130265,0.192762,0.109211,0.390415,0.865826,0.845434,0.611197,0.565234,0.881511,0.108164,0.111594,0.136931,0.335472,0.827468,0.909666,0.212655,0.753151,0.807799,0.445224,0.277976,0.158063,0.600809,0.0175463,0.248345,0.611268,0.347769,0.680117,6.77705e-05,0.973122,0.086392,0.606459,0.487386,0.844389,0.172428,0.999792,0.226445,0.698342,0.833264,0.0398687,0.629345,0.226989,0.987475,0.986449,0.485765,0.339082,0.0760597,0.178556,0.0150604,0.417672,0.85198,0.343026,0.0317255,0.833223,0.440073,0.786412,0.0324205,0.765693,0.835953,0.964183,0.793956,0.840941,0.338648,0.365276,0.536578,0.879654,0.195952,0.351215,0.0521055,0.838712,0.726939,0.404103,0.586437,0.264804,0.0149572,0.280337,0.0595371,0.369629,0.675358,0.373029,0.701478,0.937687,0.268402,0.432722,0.50686,0.04252,0.147062,0.463317,0.369575,0.720036,0.00866115,0.15701,0.908984,0.288537,0.270008,0.217233,0.779398,0.573114,0.936797,0.330339,0.471191,0.041023,0.415719,0.181323,0.278007,0.493083,0.417376,0.486331,0.05575,0.605046,0.125541,0.605114,0.483981,0.304226,0.824871,0.738737,0.851958,0.5383,0.159113,0.274183,0.52628,0.466679,0.340501,0.288076,0.705752,0.752114,0.022333,0.108065,0.859864,0.856618,0.945725,0.98749,0.916726,0.662064,0.129798,0.134923,0.684762,0.156054,0.993204,0.922744,0.0771796,0.108264,0.591774,0.56192,0.222535,0.493828,0.154703,0.563845,0.0331962,0.331054,0.490892,0.0476577,0.0346577,0.946748,0.137176,0.514754,0.631771,0.711756,0.148457,0.56189,0.393373,0.386704,0.376574,0.564165,0.605477,0.409308,0.283285,0.676079,0.0261958,0.0548346,0.423934,0.799166,0.110286,0.947608,0.0705142,0.259925,0.406969,0.385259,0.46911,0.211891,0.930438,0.998936,0.131988,0.144779,0.0307678,0.843548,0.36475,0.430955,0.0390424,0.839988,0.872121,0.913818,0.228511,0.319983,0.252255,0.246439,0.604183,0.200077,0.0821925,0.0724202,0.408129,0.183074,0.810135,0.15678,0.333173,0.536151,0.782752,0.687001,0.735263,0.549466,0.348457,0.0462458,0.992088,0.114936,0.280133,0.405344,0.499642,0.257251,0.0652275,0.816178,0.0967573,0.989275,0.231495,0.27886,0.582784,0.234572,0.254991,0.608786,0.701765,0.340156,0.545356,0.914329,0.30125,0.877439,0.0526653,0.874047,0.704022,0.510296,0.449201,0.977596,0.54625,0.779239,0.640417,0.96037,0.55764,0.168535,0.43562,0.360049,0.0103764,0.27812,0.254753,0.525968,0.226152,0.582355,0.867684,0.968429,0.167592,0.877747,0.126145,0.766338,0.599629,0.28664,0.886687,0.0238452,0.290658,0.738253,0.435905,0.928557,0.572246,0.568103,0.118548,0.851828,0.662005,0.0213756,0.311869,0.209053,0.636008,0.955053,0.772576,0.942523,0.920216,0.859879,0.138346,0.647749,0.384343,0.184564,0.738431,0.0640462,0.938303,0.412915,0.594368,0.0445595,0.12922,0.780855,0.0910258,0.18685,0.55181,0.130018,0.418544,0.349666,0.377252,0.409207,0.731394,0.826193,0.604898,0.958118,0.842301,0.871937,0.563271,0.141363,0.564878,0.879796,0.609621,0.928014,0.300773,0.751411,0.443345,0.145024,0.55478,0.0987653,0.437249,0.394326,0.231853,0.357018,0.41607,0.243723,0.725034,0.527966,0.671981,0.62655,0.410125,0.622937,0.639582,0.671123,0.705267,0.413523,0.279815,0.896284,0.752604,0.564996,0.715941,0.264059,0.580247,0.733488,0.20266,0.306468,0.875697,0.412867,0.927918,0.781727,0.534587,0.676711,0.442511,0.319118,0.45006,0.770116,0.857797,0.106858,0.0850493,0.597369,0.550586,0.896751,0.856885,0.536433,0.636258,0.737578,0.571164,0.770914,0.693096,0.0346076,0.525837,0.484058,0.944354,0.223624,0.361491,0.849636,0.411984,0.9952,0.855802,0.592021,0.70265,0.463801,0.624658,0.59756,0.553253,0.492855,0.754195,0.197626,0.543191,0.465991,0.817358,0.462905,0.754813,0.219532,0.210261,0.558209,0.528809,0.884713,0.00473928,0.475717,0.0551565,0.540286,0.412978,0.362564,0.462925,0.706591,0.416222,0.742662,0.3852,0.0325187,0.406405,0.213963,0.692098,0.200572,0.915268,0.807382,0.491561,0.591961,0.81004,0.412194,0.0512092,0.511295,0.498526,0.372976,0.462778,0.179282,0.609015,0.222832,0.538016,0.51943,0.570339,0.201081,0.65568,0.118098,0.747919,0.166416,0.448125,0.712204,0.743947,0.678253,0.91869,0.411625,0.566898,0.135502,0.558042,0.0420841,0.198508,0.856956,0.489382,0.727896,0.5673,0.0999647,0.597563,0.978086,0.273007,0.291197,0.477798,0.28694,0.621807,0.573214,0.699439,0.307955,0.559166,0.943846,0.310135,0.683434,0.629234,0.0393981,0.816647,0.235412,0.0754427,0.370067,0.7977,0.434963,0.670888,0.988901,0.582924,0.784028,0.650801,0.035454,0.914033,0.286423,0.226712,0.600291,0.254172,0.26778,0.0799099,0.676759,0.341886,0.834801,0.797673,0.178705,0.0811816,0.436761,0.0665349,0.318978,0.501622,0.716777,0.107259,0.930807,0.829261,0.382499,0.891965,0.865007,0.138027,0.593996,0.970552,0.0187909,0.547739,0.959888,0.610784,0.895901,0.0517181,0.0750754,0.160448,0.397249,0.0464974,0.634436,0.170204,0.331197,0.700583,0.576964,0.0295954,0.979124,0.560801,0.557376,0.302096,0.199399,0.209614,0.0672123,0.544205,0.125166,0.76852,0.976625,0.0189959,0.0720331,0.0956852,0.132104,0.769443,0.214609,0.721889,0.0569237,0.508057,0.921916,0.668459,0.171071,0.683153,0.527634,0.342864,0.711821,0.00648993,0.399489,0.695745,0.970265,0.389516,0.400257,0.493065,0.492627,0.342985,0.749108,0.398533,0.261148,0.632872,0.580104,0.569009,0.679726,0.160858,0.977665,0.438495,0.349014,0.462994,0.948252,0.117058,0.474074,0.862899,0.121463,0.662788,0.312402,0.847773,0.266965,0.724511,0.689845,0.893054,0.969828,0.224285,0.255215,0.512672,0.238674,0.712509,0.522632,0.512061,0.206755,0.474666,0.816073,0.203886,0.621761,0.0681289,0.393111,0.026623,0.427734,0.607443,0.916331,0.418622,0.31148,0.259622,0.331191,0.047338,0.873025,0.51273,0.276583,0.412359,0.265802,0.98864,0.761312,0.0632845,0.716749,0.630268,0.183312,0.812851,0.835097,0.720721,0.40844,0.52967,0.549447,0.921953,0.770958,0.347928,0.938045,0.355444,0.85344,0.866158,0.846786,0.451518,0.0932787,0.559062,0.0102404,0.0409595,0.0171995,0.331138,0.796724,0.743999,0.945363,0.867541,0.192274,0.942792,0.69869,0.274062,0.0510162,0.382004,0.147208,0.430927,0.863597,0.64191,0.97007,0.130215,0.357361,0.259364,0.544297,0.910667,0.979649,0.545918,0.356762,0.291708,0.409027,0.320373,0.149835,0.608822,0.609188,0.840723,0.00472176,0.53133,0.896589,0.0720626,0.684542,0.862346,0.0391058,0.944662,|0.371226,0.318448,0.386394,0.804815,0.0484784,0.0607046,0.390003,0.632647,0.650488,0.585686,0.896959,0.885344,0.242794,0.202435,0.825789,0.258076,0.764372,0.355817,0.662548,0.75619,0.0843458,0.972787,0.0387417,0.852529,0.630677,0.51573,0.596855,0.0793125,0.00478762,0.283389,0.991966,0.0437065,0.584321,0.290639,0.986346,0.746038,0.721991,0.0190061,0.903138,0.134147,0.654915,0.499658,0.0675374,0.150356,0.980542,0.957216,0.752473,0.38583,0.437405,0.534837,0.690241,0.857022,0.434363,0.60997,0.792832,0.0487174,0.228157,0.349212,0.678816,0.301773,0.423606,0.240648,0.075414,0.522071,0.114375,0.354551,0.206106,0.725574,0.473665,0.627567,0.43252,0.942442,0.470682,0.411008,0.659734,0.739323,0.869502,0.666338,0.830645,0.637155,0.0962244,0.907778,0.996121,0.681078,0.113015,0.864491,0.417893,0.405021,0.620535,0.271144,0.224654,0.781792,0.292108,0.031265,0.341661,0.524165,0.295014,0.193132,0.0390937,0.847891,0.328638,0.488072,0.256989,0.605255,0.0524668,0.902802,0.504512,0.795199,0.595122,0.831665,0.229471,0.709574,0.504279,0.478653,0.917631,0.174108,0.966538,0.377709,0.597199,0.0917668,0.258868,0.640666,0.330608,0.449751,0.527986,0.863384,0.550817,0.696203,0.501883,0.537694,0.323885,0.171307,0.382395,0.916036,0.270542,0.417578,0.0751446,0.0783644,0.329192,0.822959,0.989825,0.732464,0.41934,0.557142,0.975432,0.744641,0.746489,0.335054,0.579448,0.587589,0.551485,0.858541,0.730925,0.698317,0.826797,0.28489,0.355678,0.500696,0.00189149,0.194555,0.621439,0.998508,0.627537,0.969276,0.679495,0.171798,0.703524,0.700331,0.488575,0.808026,0.922072,0.746786,0.919617,0.854174,0.213595,0.218214,0.100101,0.158611,0.310794,0.879246,0.0449129,0.0341573,0.570237,0.426179,0.61731,0.450369,0.260466,0.0496454,0.199951,0.519334,0.493155,0.138771,0.521831,0.219597,0.67951,0.427938,0.667448,0.576868,0.407957,0.246422,0.860821,0.262974,0.647712,0.994219,0.829435,0.131933,0.120941,0.371218,0.670155,0.072721,0.131449,0.134707,0.233186,0.322776,0.660906,0.888915,0.479316,0.921046,0.695487,0.99309,0.934748,0.727162,0.0914983,0.816215,0.560027,0.615547,0.416037,0.876106,0.732262,0.569296,0.805906,0.154627,0.0510407,0.224381,0.0322285,0.071308,0.522816,0.507479,0.745147,0.890011,0.0306913,0.079729,0.544376,0.888402,0.474134,0.443628,0.794459,0.415703,0.526222,0.600837,0.453554,0.321586,0.447873,0.0606961,0.755181,0.711389,0.120715,0.787737,0.0466214,0.584356,0.59303,0.0996593,0.170459,0.364073,0.288833,0.656601,0.545974,0.116607,0.808153,0.048456,0.113677,0.598245,0.70277,0.875854,0.544611,0.721939,0.473617,0.668334,0.0833376,0.617425,0.976618,0.764569,0.95561,0.665911,0.810006,0.051755,0.368225,0.576759,0.651228,0.255404,0.670122,0.182173,0.445136,0.795001,0.0824535,0.560759,0.197931,0.410672,0.787139,0.885602,0.647828,0.756374,0.0612098,0.936705,0.366114,0.0973176,0.597899,0.458066,0.282808,0.187659,0.308194,0.827638,0.0386485,0.794337,0.440143,0.790703,0.513675,0.00321186,0.0847343,0.173812,0.3083,0.337098,0.989927,0.0795899,0.639028,0.819265,0.697029,0.727051,0.601285,0.959826,0.695065,0.294573,0.635667,0.354773,0.553301,0.793315,0.381198,0.374894,0.0543481,0.0695979,0.305172,0.698663,0.913745,0.503623,0.928715,0.806854,0.14536,0.33272,0.82034,0.429633,0.844279,0.600386,0.954223,0.536708,0.910164,0.290479,0.238255,0.633448,0.606256,0.997547,0.340649,0.741693,0.441173,0.524401,0.532372,0.286637,0.439657,0.17241,0.209697,0.80023,0.998563,0.4956,0.485973,0.641021,0.316969,0.734731,0.681395,0.0188277,0.0198914,0.07928,0.125739,0.0629075,0.35753,0.175984,0.91686,0.92045,0.086129,0.934324,0.921904,0.587092,0.593772,0.511005,0.445209,0.495482,0.0525149,0.054131,0.140402,0.0305813,0.770921,0.423154,0.902901,0.0397924,0.812903,0.529905,0.925628,0.209459,0.382416,0.243639,0.615079,0.0225924,0.245518,0.290935,0.0589158,0.13919,0.124419,0.142835,0.769787,0.350926,0.722749,0.34038,0.444097,0.188811,0.894437,0.920525,0.357874,0.39073,0.998173,0.0214794,0.717455,0.778498,0.117833,0.0163184,0.916232,0.0098244,0.710712,0.387824,0.503818,0.604705,0.520358,0.366424,0.270038,0.671047,0.0355472,0.331817,0.475332,0.599517,0.22345,0.138537,0.80265,0.779681,0.91433,0.555853,0.856061,0.295224,0.910191,0.428293,0.927238,0.159039,0.92882,0.804415,0.730436,0.21459,0.0522186,0.144484,0.166019,0.027395,0.689009,0.725396,0.366786,0.278761,0.197991,0.623505,0.144734,0.726649,0.1803,0.194681,0.166994,0.747124,0.31453,0.119062,0.887843,0.995061,0.262681,0.817748,0.080828,0.128618,0.801529,0.99985,0.182014,0.94278,0.548543,0.803044,0.268644,0.0134117,0.204916,0.458798,0.18034,0.723964,0.674805,0.256572,0.816823,0.803179,0.257661,0.143692,0.492422,0.182973,0.81816,0.85381,0.223294,0.594842,0.317829,0.17659,0.391673,0.982502,0.0892102,0.00268203,0.470216,0.498637,0.575489,0.273196,0.897005,0.849973,0.238285,0.108272,0.682272,0.201172,0.158546,0.562061,0.506515,0.309177,0.514167,0.0135451,0.540141,0.695456,0.974509,0.162424,0.256237,0.946656,0.022765,0.756507,0.452793,0.744664,0.919619,0.0900263,0.339574,0.325177,0.401182,0.529125,0.415979,0.152337,0.376837,0.334731,0.72932,0.529228,0.629808,0.422574,0.140385,0.828171,0.324713,0.695306,0.41146,0.450853,0.241469,0.470078,0.393796,0.626174,0.0172977,0.594234,0.564881,0.407315,0.24006,0.929297,0.412581,0.238488,0.0488717,0.371114,0.835644,0.0369776,0.94032,0.0569394,0.823189,0.393739,0.209137,0.358443,0.979107,0.559092,0.461565,0.108087,0.582398,0.416828,0.0977018,0.183666,0.973555,0.549266,0.804126,0.667042,0.330868,0.754208,0.696279,0.877651,0.208793,0.0383778,0.855674,0.464654,0.584995,0.803688,0.36939,0.311326,0.0662033,0.679422,0.879003,0.586148,0.444467,0.554345,0.404613,0.0797775,0.536466,0.510286,0.148467,0.849394,0.854359,0.825281,0.334936,0.0145759,0.757528,0.671184,0.343264,0.0646588,0.607545,0.526378,0.443747,0.986873,0.271799,0.850169,0.365287,0.835371,0.7676,0.681834,0.172493,0.911532,0.829665,0.247762,0.706827,0.756892,0.683943,0.467367,0.0388981,0.655604,0.059073,0.295183,0.689802,0.753563,0.221256,0.76333,0.115947,0.297439,0.841363,0.722162,0.270708,0.379692,0.687359,0.930502,0.375027,0.0864692,0.186259,0.457625,0.379712,0.14917,0.282547,0.0351198,0.960742,0.839299,0.117609,0.441787,0.4049,0.935787,0.514959,0.871567,0.322537,0.684144,0.220743,0.636341,0.876618,0.471391,0.813577,0.00134367,0.603804,0.498676,0.225497,0.210991,0.363415,0.370019,0.755008,0.309389,0.489262,0.0980151,0.325677,0.0200796,0.807066,0.692813,0.98512,0.622017,0.955807,0.659682,0.646637,0.719602,0.595877,0.096411,0.812301,0.492602,0.77233,0.863379,0.522746,0.621084,0.354486,0.0447022,0.696842,0.0368373,0.580175,0.862477,0.839586,0.455407,0.931991,0.321695,0.439107,0.542199,0.569504,0.796736,0.234321,0.88209,0.585332,0.725665,0.906244,0.887091,0.736747,0.765621,0.137134,0.729298,0.708669,0.0661176,0.503571,0.390979,0.871289,0.682845,0.747302,0.957161,0.143955,0.998853,0.378674,0.0478393,0.042089,0.771697,0.363869,0.794917,0.163701,0.819976,0.513488,0.363864,0.556637,0.561571,0.499403,0.00852162,0.503715,0.574498,0.695909,0.0968698,0.28577,0.913068,0.213913,0.507191,0.551629,0.937527,0.0395189,0.0651745,0.411773,0.420448,0.166422,0.937843,0.685888,0.00253481,0.634613,0.788368,0.242388,0.160916,0.731433,0.0449114,0.335672,0.806295,0.297724,0.548327,0.636113,0.533286,0.584542,0.838176,0.780337,0.108772,0.12984,0.149586,0.730126,0.192219,0.572642,0.309146,0.254679,0.0733864,0.771381,0.61929,0.380321,0.317613,0.211712,0.565105,0.535563,0.30805,0.191361,0.68213,0.815239,0.254824,0.127418,0.859957,0.253027,0.157557,0.873625,0.397859,0.715054,0.67467,0.166471,0.990277,0.67665,0.0269157,0.473278,0.751455,0.985921,0.240472,0.90816,0.588967,0.770079,0.0386966,0.911674,0.263355,0.651103,0.513562,0.298126,0.104876,0.721857,0.739667,0.0293092,0.126641,0.720901,0.283157,0.277718,0.70448,0.786406,0.418972,0.698545,0.221425,0.674816,0.0862951,0.0428008,0.0625432,0.490709,0.81999,0.29173,0.425922,0.668692,0.70482,0.254826,0.00915384,0.249869,0.428267,0.463683,0.736626,0.99773,0.506724,0.493141,0.847601,0.87451,0.643329,0.387327,0.158997,0.977531,0.99658,0.0930595,0.576265,0.845043,0.416706,0.767764,0.440414,0.762628,0.0378298,0.820028,0.209858,0.258834,0.0883677,0.236555,0.868066,0.279777,0.215084,0.875933,0.849537,0.150257,0.186517,0.371945,0.181569,0.564497,0.308926,0.913992,0.0440865,0.368771,0.184649,0.347507,0.435696,0.0190423,0.737561,0.3433,0.360495,0.860528,0.468077,0.394562,0.350849,0.0623718,0.184473,0.75645,0.417636,0.119505,0.308846,0.734095,0.707115,0.777587,0.585401,0.716234,0.694358,0.102095,0.0243836,0.00313848,0.933156,0.660522,0.0429322,0.662201,0.693243,0.083508,0.3707,0.199466,0.927909,0.412654,0.0477731,0.987269,0.356504,0.579572,0.737373,0.917947,0.798232,0.533437,0.76188,0.078488,0.972515,0.784172,0.397778,0.702969,0.872413,0.447598,0.246459,0.125632,0.0300086,0.208256,0.28665,0.286066,0.268133,0.480205,0.66359,0.278694,0.383453,0.37188,0.611358,0.206178,0.685864,0.175842,0.965126,0.567751,0.670421,0.599987,0.292886,0.0961258,0.499273,0.867115,0.173766,0.574257,0.0468267,0.710974,0.231413,0.883161,0.998712,0.0401073,0.0628672,0.287533,0.746355,0.412184,0.453992,0.620671,0.537021,0.441402,0.154494,|0.277291,0.437779,0.903599,0.82972,0.00767851,0.308782,0.378186,0.741215,0.145693,0.150774,0.300678,0.401048,0.885698,0.223884,0.760345,0.281079,0.51187,0.0121362,0.665267,0.374548,0.647459,0.494532,0.253893,0.319311,0.0412377,0.698997,0.262956,0.785319,0.130145,0.827014,0.395638,0.649221,0.096914,0.772941,0.188817,0.619356,0.94366,0.214365,0.685485,0.728364,0.739087,0.956681,0.630859,0.922633,0.464921,0.581784,0.0636141,0.93059,0.582246,0.0523884,0.363284,0.589671,0.189269,0.321308,0.48559,0.467216,0.419348,0.852111,0.646401,0.465493,0.0106422,0.0840467,0.934253,0.715862,0.694193,0.32027,0.957743,0.155635,0.276804,0.0251355,0.681402,0.433322,0.880619,0.174025,0.262534,0.0964457,0.434023,0.995156,0.897449,0.659972,0.904945,0.584395,0.502514,0.3481,0.553831,0.591381,0.113301,0.281972,0.492078,0.650394,0.0782592,0.592831,0.649402,0.342298,0.133365,0.0188978,0.837685,0.294745,0.105268,0.276072,0.20315,0.740767,0.536824,0.314886,0.311943,0.590406,0.422635,0.785326,0.567528,0.773969,0.897109,0.312831,0.0440841,0.711345,0.495592,0.467737,0.594782,0.774894,0.190147,0.397694,0.701554,0.918726,0.755288,0.00166976,0.678631,0.825751,0.017571,0.808202,0.889249,0.407933,0.348345,0.424404,0.909102,0.665813,0.201088,0.584539,0.786124,0.946985,0.570835,0.922378,0.184902,0.0467821,0.266181,0.461658,0.268033,0.28559,0.536165,0.481685,0.79291,0.815111,0.945505,0.40372,0.586349,0.0325817,0.266223,0.789132,0.230221,0.604674,0.787276,0.0778975,0.229145,0.279519,0.798017,0.599509,0.163064,0.289479,0.652053,0.324662,0.239138,0.0598422,0.289729,0.0885256,0.769734,0.81509,0.0212641,0.626973,0.533564,0.497238,0.2525,0.624066,0.28027,0.253626,0.147033,0.236597,0.849902,0.551076,0.822115,0.934463,0.308165,0.544706,0.54006,0.0383977,0.85151,0.0650465,0.911634,0.936095,0.155349,0.541735,0.134628,0.547385,0.259679,0.151911,0.688657,0.317006,0.2248,0.653007,0.817011,0.654974,0.290542,0.711787,0.720251,0.580835,0.93094,0.580702,0.285727,0.948638,0.32929,0.0466587,0.303128,0.946569,0.640223,0.590884,0.185823,0.00657523,0.952632,0.263277,0.717036,0.396193,0.34598,0.8691,0.229313,0.330514,0.125252,0.924742,0.819121,0.910257,0.577113,0.805816,0.709997,0.605939,0.683996,0.081397,0.13594,0.110595,0.581015,0.920358,0.208361,0.887357,0.213903,0.0597311,0.489657,0.446666,0.427868,0.891102,0.397544,0.239046,0.80808,0.484329,0.831548,0.752383,0.952518,0.624419,0.504478,0.633175,0.0773112,0.89463,0.811356,0.780007,0.798342,0.110447,0.797148,0.488648,0.546063,0.374604,0.775559,0.62431,0.0800421,0.945056,0.50708,0.939503,0.000788152,0.662944,0.163846,0.672137,0.412061,0.842223,0.787444,0.107497,0.208926,0.371919,0.849686,0.336135,0.445508,0.165974,0.487949,0.166022,0.230537,0.537893,0.176567,0.312856,0.303535,0.653166,0.297482,0.604108,0.408469,0.309119,0.429347,0.408199,0.819344,0.715967,0.930641,0.353611,0.748021,0.620115,0.146062,0.783098,0.674443,0.813933,0.0357706,0.101168,0.849643,0.0923781,0.0866042,0.484213,0.43184,0.375895,0.690677,0.082368,0.549912,0.472009,0.129354,0.434354,0.921718,0.00876135,0.695315,0.190924,0.745555,0.236033,0.908651,0.633065,0.505625,0.819405,0.629273,0.903588,0.0595918,0.684593,0.315168,0.49188,0.144846,0.583487,0.457891,0.947784,0.667968,0.904507,0.93559,0.44474,0.593776,0.612363,0.908945,0.409749,0.848084,0.489964,0.265569,0.360385,0.906575,0.690548,0.398622,0.524005,0.33924,0.0507579,0.505269,0.245036,0.072987,0.0100999,0.762797,0.354763,0.763563,0.998188,0.163757,0.350061,0.133396,0.932467,0.586986,0.0578737,0.845017,0.711258,0.0387263,0.141073,0.470095,0.035107,0.193974,0.707793,0.0177507,0.261563,0.488973,0.206497,0.811152,0.692867,0.453172,0.610577,0.415691,0.0783305,0.370163,0.685653,0.0425134,0.270631,0.133692,0.0311774,0.255142,0.948455,0.30866,0.223205,0.65805,0.0490927,0.230382,0.910335,0.836415,0.891723,0.514534,0.878362,0.549462,0.512317,0.48997,0.798836,0.388908,0.283136,0.262367,0.262261,0.574518,0.087198,0.148812,0.0627548,0.0459993,0.278188,0.881611,0.323114,0.855608,0.198104,0.559851,0.036325,0.761131,0.642891,0.852345,0.385939,0.78712,0.418533,0.23506,0.76856,0.345221,0.766032,0.927429,0.322899,0.619056,0.00818872,0.0903136,0.507423,0.580913,0.58179,0.578968,0.152717,0.610199,0.713483,0.0562642,0.736153,0.448382,0.363561,0.28341,0.815907,0.4302,0.861687,0.259899,0.373281,0.420828,0.964947,0.441997,0.836089,0.366198,0.1633,0.94576,0.673411,0.833427,0.953502,0.15237,0.955591,0.85395,0.255757,0.0843993,0.303712,0.533596,0.975662,0.571133,0.884806,0.655881,0.782579,0.863156,0.222466,0.263976,0.885616,0.828855,0.072069,0.303674,0.843315,0.388115,0.536331,0.205047,0.0387589,0.593128,0.549273,0.330082,0.895516,0.139535,0.904034,0.539628,0.312777,0.465411,0.0188479,0.42321,0.0451775,0.809145,0.737489,0.520343,0.924088,0.172815,0.213994,0.742562,0.598486,0.328841,0.750494,0.414536,0.498757,0.877129,0.635455,0.440546,0.51675,0.477925,0.855395,0.222507,0.13662,0.931382,0.932047,0.754231,0.632378,0.275065,0.494081,0.139928,0.993569,0.155859,0.488742,0.747748,0.294644,0.886533,0.735846,0.3012,0.631547,0.534367,0.297291,0.820765,0.269308,0.0224702,0.0231069,0.885378,0.796753,0.630319,0.479973,0.276581,0.891662,0.595977,0.504307,0.00417209,0.35257,0.827192,0.902621,0.1127,0.856773,0.410634,0.856825,0.332461,0.540298,0.511894,0.434939,0.820637,0.809112,0.377697,0.741909,0.111624,0.0368947,0.500195,0.751142,0.114193,0.381524,0.696152,0.935988,0.719955,0.191492,0.130127,0.627827,0.971164,0.854087,0.340766,0.973342,0.464855,0.545427,0.138494,0.182053,0.539624,0.803684,0.700826,0.568689,0.2325,0.35775,0.568958,0.419289,0.365424,0.0679657,0.580289,0.993765,0.0958542,0.888864,0.0586117,0.549482,0.635239,0.467782,0.925524,0.883998,0.586094,0.914838,0.738721,0.322582,0.636913,0.324585,0.78554,0.648823,0.726639,0.179102,0.87596,0.754894,0.806747,0.397957,0.664396,0.447695,0.187532,0.870899,0.576964,0.0562473,0.264943,0.147679,0.242654,0.883171,0.44356,0.0698888,0.0164731,0.681399,0.539299,0.138631,0.381437,0.341081,0.426635,0.600595,0.211845,0.959107,0.86755,0.288213,0.829768,0.665489,0.308171,0.0913967,0.279106,0.12238,0.217425,0.809567,0.173711,0.0634566,0.00586873,0.391322,0.0816588,0.88691,0.304416,0.91979,0.874637,0.867497,0.0480225,0.179275,0.717042,0.417236,0.201624,0.584875,0.947173,0.886399,0.21711,0.354346,0.912335,0.072811,0.38521,0.348893,0.458947,0.341676,0.774026,0.4786,0.221732,0.560679,0.521822,0.568963,0.334648,0.615745,0.900686,0.40935,0.0270087,0.639311,0.9484,0.0466558,0.07988,0.519129,0.32845,0.707761,0.530984,0.63964,0.391469,0.240884,0.781719,0.765737,0.822047,0.671942,0.295049,0.388808,0.398491,0.536429,0.392451,0.625698,0.981756,0.219238,0.779717,0.80133,0.808421,0.318152,0.723303,0.908703,0.894277,0.766625,0.987425,0.864494,0.88351,0.819209,0.678722,0.486651,0.0521349,0.541929,0.207336,0.179542,0.624771,0.131436,0.943238,0.849574,0.974624,0.353992,0.952685,0.114047,0.158573,0.196936,0.0824018,0.313119,0.5342,0.281111,0.607916,0.866291,0.944444,0.214092,0.0983692,0.527035,0.277515,0.0991154,0.609354,0.975591,0.280691,0.285567,0.897948,0.213405,0.804841,0.803538,0.497051,0.787644,0.461579,0.929576,0.457215,0.245905,0.0119901,0.079805,0.0432997,0.0514463,0.200379,0.655534,0.727573,0.925034,0.593183,0.654691,0.909373,0.610586,0.568088,0.295986,0.730927,0.278672,0.835833,0.60849,0.112622,0.0573168,0.900938,0.777431,0.586249,0.987826,0.157644,0.947364,0.786613,0.204128,0.114133,0.708275,0.347747,0.379697,0.947981,0.262811,0.448622,0.389359,0.815483,0.539075,0.652856,0.55644,0.297127,0.531654,0.136725,0.0956233,0.507013,0.214644,0.813572,0.691482,0.205489,0.8241,0.961618,0.890382,0.598103,0.397862,0.254777,0.467227,0.148375,0.176262,0.702857,0.274525,0.0368078,0.123533,0.670406,0.401948,0.691207,0.292511,0.0672975,0.237186,0.894678,0.370292,0.414577,0.740586,0.611007,0.443185,0.422763,0.490684,0.251344,0.737974,0.19865,0.192941,0.83397,0.840342,0.0570582,0.731716,0.0880666,0.368658,0.375083,0.734312,0.66372,0.939069,0.103552,0.121306,0.892816,0.101161,0.795838,0.810101,0.70261,0.73421,0.561863,0.838945,0.865892,0.477961,0.487748,0.830039,0.489406,0.921131,0.290956,0.651929,0.0343266,0.929145,0.334846,0.0848821,0.989688,0.685661,0.446332,0.143945,0.937337,0.116143,0.462631,0.24644,0.955696,0.863817,0.794622,0.967068,0.999797,0.605207,0.379395,0.154161,0.778076,0.211702,0.993922,0.0996709,0.884376,0.243658,0.715178,0.59471,0.378694,0.424972,0.179125,0.935783,0.675274,0.424893,0.90899,0.921014,0.357679,0.404348,0.166881,0.962273,0.251737,0.73154,0.444317,0.648328,0.540126,0.42963,0.87202,0.0812819,0.307577,0.38294,0.963651,0.536642,0.555403,0.536869,0.756203,0.197927,0.896252,0.966443,0.538277,0.247846,0.252127,0.306961,0.648962,0.296377,0.589145,0.787189,0.913715,0.363255,0.253608,0.016164,0.385391,0.457067,0.33972,0.725154,0.501886,0.781878,0.190069,0.268182,0.0722727,0.274882,0.521812,0.595402,0.545006,0.534227,0.067887,0.110287,0.740953,0.93265,0.22179,0.215318,0.743479,0.7266,0.509753,0.0974716,0.157883,0.171777,0.732744,0.853585,0.597396,0.747001,0.774494,0.220922,0.863546,0.668951,0.532688,0.573095,0.476014,0.809131,|0.397897,0.437486,0.119762,0.213631,0.382449,0.958592,0.785192,0.490151,0.559248,0.997903,0.655025,0.209352,0.310311,0.445246,0.278763,0.242757,0.000222921,0.0305234,0.357989,0.961975,0.386817,0.418845,0.851148,0.462315,0.0655127,0.114035,0.466343,0.165307,0.241644,0.626543,0.56785,0.352146,0.142518,0.443931,0.35285,0.382562,0.499346,0.143779,0.957737,0.350055,0.432021,0.903445,0.560829,0.0231783,0.717038,0.908853,0.84655,0.167079,0.303066,0.727073,0.559872,0.843937,0.403629,0.938047,0.537069,0.340339,0.326612,0.412399,0.847926,0.246918,0.223134,0.760165,0.645495,0.752212,0.0622955,0.48795,0.232844,0.607793,0.105992,0.709163,0.339745,0.113721,0.666018,0.850698,0.915269,0.00709909,0.0347814,0.594472,0.654996,0.598067,0.397126,0.589396,0.119841,0.354293,0.701314,0.296626,0.952712,0.660255,0.120981,0.723077,0.974792,0.302977,0.856804,0.363122,0.0887098,0.0863612,0.0351844,0.784704,0.864058,0.815507,0.26082,0.279412,0.394268,0.686103,0.165765,0.521764,0.197473,0.345706,0.417942,0.320476,0.746331,0.578783,0.35179,0.297688,0.976218,0.163325,0.158509,0.785464,0.179134,0.701765,0.749975,0.0653279,0.685659,0.822062,0.0990535,0.993738,0.757358,0.268802,0.433528,0.209297,0.692613,0.451635,0.425802,0.53455,0.267995,0.888792,0.863956,0.276722,0.110366,0.565895,0.487518,0.487453,0.0842678,0.384786,0.488028,0.622432,0.327499,0.861503,0.587224,0.136685,0.285801,0.606386,0.973613,0.0569699,0.587615,0.85798,0.256203,0.244206,0.732208,0.636336,0.56483,0.165562,0.727171,0.0782369,0.562761,0.314628,0.453346,0.989595,0.892953,0.884152,0.390693,0.209336,0.729151,0.161757,0.295251,0.225243,0.998264,0.632869,0.667761,0.0970375,0.0984151,0.128313,0.936996,0.0961061,0.986541,0.224991,0.327653,0.844648,0.585298,0.0649605,0.618407,0.257921,0.810706,0.526221,0.411881,0.374021,0.917119,0.554484,0.00756109,0.718384,0.87396,0.928343,0.735788,0.556204,0.296702,0.628801,0.603185,0.0668066,0.746567,0.124341,0.521889,0.982609,0.155984,0.479565,0.818044,0.320585,0.154972,0.132887,0.437796,0.313214,0.174133,0.204577,0.00973886,0.414273,0.127691,0.255833,0.337012,0.15101,0.837558,0.458697,0.451582,0.597397,0.0241385,0.433524,0.73853,0.338601,0.388387,0.409965,0.130007,0.0686206,0.0430492,0.035074,0.435402,0.885121,0.978763,0.64473,0.176879,0.121808,0.461848,0.0624896,0.551771,0.000610054,0.174211,0.92419,0.633539,0.0947645,0.192608,0.522249,0.626423,0.862317,0.765803,0.44581,0.551616,0.688501,0.956115,0.899751,0.644434,0.977995,0.93078,0.904961,0.371406,0.66226,0.449437,0.894903,0.946835,0.877123,0.3971,0.261013,0.183898,0.639843,0.44449,0.765997,0.339161,0.926345,0.261242,0.831351,0.988936,0.110507,0.42378,0.559237,0.735035,0.281266,0.953029,0.150751,0.333722,0.779474,0.987538,0.523361,0.195628,0.313307,0.56206,0.187765,0.540056,0.194649,0.544665,0.687229,0.958651,0.0573625,0.374406,0.953819,0.896179,0.457181,0.0122684,0.959288,0.604314,0.312433,0.613119,0.700664,0.655733,0.745455,0.716285,0.23891,0.666362,0.513398,0.537796,0.719677,0.934671,0.0824443,0.516147,0.883744,0.388688,0.558578,0.776682,0.465034,0.278887,0.0325249,0.178408,0.435069,0.0833645,0.0670049,0.395171,0.127142,0.880459,0.12728,0.932751,0.979336,0.35735,0.150273,0.720265,0.245321,0.243027,0.601219,0.515357,0.198572,0.754113,0.10487,0.360061,0.285987,0.483586,0.753094,0.817903,0.563796,0.920092,0.100583,0.542302,0.447308,0.222149,0.342138,0.424442,0.823884,0.118353,0.878994,0.599049,0.0998998,0.674595,0.111397,0.309994,0.337114,0.495983,0.645982,0.0461132,0.013286,0.118723,0.54424,0.635702,0.105374,0.438031,0.0058381,0.604531,0.265215,0.431383,0.925457,0.788958,0.670986,0.0901099,0.687319,0.762746,0.766267,0.747322,0.184678,0.0409402,0.127177,0.0144019,0.976082,0.300836,0.719965,0.275231,0.418991,0.69109,0.0915617,0.567976,0.661745,0.218274,0.43928,0.163686,0.033898,0.887695,0.141895,0.091821,0.0412241,0.0370808,0.751125,0.735086,0.502014,0.357304,0.37978,0.848319,0.603927,0.303317,0.882579,0.641806,0.377023,0.199716,0.395672,0.268555,0.276974,0.699657,0.650915,0.332054,0.0182111,0.100219,0.726686,0.448832,0.647089,0.117892,0.545933,0.733878,0.443859,0.122461,0.909705,0.143781,0.662048,0.897462,0.639831,0.864834,0.397517,0.579825,0.020391,0.977631,0.655907,0.686877,0.902738,0.278525,0.191716,0.900546,0.586338,0.373393,0.0602381,0.816319,0.0152646,0.214167,0.157044,0.790642,0.432199,0.254105,0.976223,0.614253,0.102614,0.443025,0.181697,0.155663,0.106113,0.209969,0.707566,0.72817,0.565934,0.160146,0.00474483,0.623256,0.755549,0.714704,0.466409,0.16901,0.245857,0.883198,0.580501,0.473755,0.473174,0.317599,0.325523,0.368372,0.581598,0.0220937,0.348289,0.180435,0.773271,0.267848,0.469305,0.909125,0.159154,0.367289,0.173559,0.0828733,0.385272,0.709703,0.981968,0.438204,0.957169,0.300569,0.755124,0.561106,0.678169,0.367535,0.770404,0.476578,0.808851,0.673606,0.990977,0.82868,0.910323,0.300976,0.217382,0.470141,0.329881,0.407289,0.190371,0.809277,0.700864,0.0495899,0.862998,0.538571,0.704619,0.463976,0.55704,0.801553,0.675417,0.709173,0.853115,0.371659,0.87296,0.60527,0.563401,0.89708,0.656427,0.819081,0.681703,0.701566,0.157039,0.307751,0.917372,0.549591,0.288173,0.024412,0.85351,0.54836,0.665197,0.223892,0.597795,0.665685,0.755584,0.989049,0.548442,0.700535,0.551629,0.815751,0.47958,0.145907,0.458928,0.00734127,0.496676,0.295174,0.818752,0.638218,0.154806,0.794234,0.0574687,0.550306,0.411954,0.254983,0.98788,0.482217,0.644441,0.298307,0.647132,0.749377,0.251251,0.938786,0.649883,0.686609,0.780051,0.403661,0.409914,0.662621,0.822883,0.272017,0.582149,0.853298,0.450846,0.733506,0.0936988,0.943195,0.160262,0.125701,0.64097,0.950017,0.750615,0.690402,0.971218,0.940807,0.475614,0.963241,0.854859,0.61568,0.690064,0.484232,0.213988,0.926277,0.581425,0.886253,0.20686,0.509913,0.187059,0.977139,0.106631,0.0613064,0.80688,0.174351,0.172233,0.507151,0.756643,0.819875,0.181722,0.796379,0.0681063,0.688089,0.926686,0.840355,0.558426,0.451485,0.555319,0.183779,0.818278,0.0206951,0.131781,0.162415,0.71095,0.168965,0.641304,0.100751,0.0795848,0.872592,0.445838,0.0823689,0.215816,0.413874,0.636548,0.0679556,0.0367348,0.923106,0.867585,0.49611,0.301353,0.716019,0.146882,0.021482,0.80547,0.7906,0.153305,0.613344,0.226753,0.435758,0.470954,0.641469,0.766087,0.884304,0.0950303,0.00493473,0.603137,0.473499,0.694386,0.690681,0.378423,0.965874,0.580096,0.844265,0.827087,0.274142,0.00196165,0.711565,0.238303,0.853292,0.378264,0.583078,0.111592,0.892234,0.951551,0.686802,0.348701,0.72103,0.766437,0.098641,0.455937,0.111874,0.480824,0.920886,0.446471,0.849501,0.732195,0.315541,0.818492,0.0608,0.817539,0.649099,0.727478,0.504834,0.316805,0.60197,0.807511,0.969749,0.834061,0.41866,0.317603,0.631353,0.359241,0.917561,0.428577,0.784895,0.189635,0.233297,0.819032,0.162652,0.156012,0.454515,0.509458,0.211964,0.805346,0.810371,0.0248988,0.535358,0.979859,0.100475,0.501708,0.910293,0.981075,0.35569,0.306181,0.0956293,0.00275242,0.0460849,0.227454,0.240732,0.200974,0.340972,0.218142,0.271031,0.448249,0.766525,0.99508,0.326809,0.759574,0.874529,0.452894,0.12925,0.222341,0.198168,0.734193,0.680548,0.786401,0.679159,0.850584,0.369693,0.0339469,0.395367,0.478289,0.199296,0.52238,0.766353,0.412652,0.478306,0.122967,0.565211,0.966016,0.177269,0.275116,0.703519,0.765606,0.646933,0.476617,0.805967,0.60805,0.959379,0.675402,0.57049,0.0326253,0.432699,0.461653,0.464938,0.748172,0.589845,0.0985175,0.664852,0.0814592,0.834581,0.836587,0.629849,0.244822,0.441608,0.600554,0.782054,0.576551,0.911404,0.304556,0.128241,0.0513031,0.461743,0.0245258,0.940654,0.332073,0.36581,0.0235115,0.481856,0.348192,0.072767,0.399695,0.242048,0.811682,0.0957361,0.947714,0.796596,0.121333,0.499782,0.824759,0.570329,0.952086,0.640496,0.35968,0.66201,0.288823,0.0674779,0.177869,0.618997,0.205825,0.271876,0.929235,0.421468,0.0408679,0.441723,0.130616,0.602167,0.645549,0.517348,0.475994,0.095959,0.147496,0.499481,0.116646,0.900978,0.363543,0.717179,0.831179,0.653464,0.305506,0.783423,0.993834,0.0681595,0.95109,0.962354,0.777396,0.22009,0.213146,0.436678,0.562539,0.728561,0.930111,0.612271,0.70785,0.675826,0.657895,0.0292885,0.995,0.560989,0.0299433,0.366015,0.814419,0.171369,0.271648,0.685829,0.923271,0.7363,0.218343,0.161377,0.848626,0.928234,0.399353,0.775892,0.81574,0.020736,0.208424,0.218123,0.331103,0.810787,0.151987,0.963918,0.400367,0.947732,0.502843,0.751681,0.505653,0.990059,0.514083,0.889331,0.521889,0.373496,0.897455,0.0826452,0.222099,0.229156,0.0335552,0.597726,0.993236,0.723649,0.683064,0.983039,0.600079,0.313464,0.122865,0.548023,0.732566,0.264935,0.464718,0.809253,0.00300819,0.734092,0.491292,0.952445,0.612999,0.431885,0.578543,0.62857,0.405388,0.764774,0.584172,0.522693,0.658701,0.95576,0.0523103,0.631232,0.483673,0.816662,0.654135,0.530959,0.367188,0.122787,0.506305,0.683975,0.636245,0.346623,0.834195,0.816131,0.325313,0.365402,0.726457,0.474884,0.335976,0.523305,0.622919,0.476044,0.994009,0.436514,0.608399,0.838253,0.752458,0.40675,0.951077,0.64759,0.717235,0.548419,0.744639,0.879589,0.328061,0.986878,0.230978,0.554243,0.0814394,0.91589,0.914096,0.442203,0.868849,0.511278,0.314694,|0.238236,0.816958,0.173172,0.321117,0.634611,0.265464,0.803932,0.408565,0.624057,0.615846,0.27294,0.602269,0.432048,0.430449,0.805062,0.497589,0.860227,0.531231,0.920653,0.110154,0.653012,0.139443,0.428968,0.111903,0.0621863,0.285373,0.811518,0.693676,0.0259133,0.664747,0.261691,0.677595,0.62456,0.399668,0.729434,0.130772,0.684603,0.474449,0.547256,0.143399,0.853991,0.475629,0.371356,0.935422,0.549251,0.964436,0.702469,0.208849,0.689958,0.391516,0.552628,0.189796,0.390969,0.273345,0.242623,0.521468,0.816711,0.0832906,0.698417,0.665235,0.419791,0.690997,0.150024,0.747784,0.893302,0.465133,0.104438,0.637548,0.562014,0.0246889,0.059854,0.621106,0.354941,0.97442,0.409016,0.683918,0.768767,0.884396,0.342592,0.398652,0.618478,0.186052,0.863161,0.809837,0.256764,0.185348,0.399402,0.859098,0.2473,0.769958,0.349606,0.83493,0.654294,0.207934,0.208804,0.820446,0.153902,0.389265,0.532094,0.892866,0.556606,0.566695,0.800318,0.715817,0.815924,0.718098,0.67698,0.701242,0.991226,0.0568143,0.955934,0.814697,0.0996575,0.186965,0.956281,0.695712,0.618275,0.751376,0.727138,0.455061,0.155058,0.757037,0.547469,0.33224,0.911873,0.5815,0.45076,0.708017,0.844568,0.746043,0.920331,0.0431128,0.225793,0.500189,0.480509,0.876236,0.862692,0.794406,0.544896,0.899257,0.768354,0.211682,0.625757,0.984904,0.303266,0.00183141,0.702097,0.371586,0.545742,0.487831,0.812041,0.637223,0.478469,0.26267,0.528281,0.0125716,0.369587,0.618572,0.0865336,0.740341,0.656556,0.205998,0.936837,0.192199,0.729379,0.651929,0.614746,0.554399,0.259588,0.933433,0.648436,0.822857,0.127169,0.00167269,0.896459,0.783299,0.935306,0.851985,0.689193,0.900813,0.0667272,0.099836,0.0629289,0.305193,0.227926,0.823622,0.69553,0.13136,0.471059,0.559398,0.676585,0.163945,0.535991,0.835529,0.431133,0.226546,0.609811,0.0963554,0.0883558,0.991884,0.0569668,0.908102,0.481966,0.485899,0.433409,0.700386,0.849309,0.74249,0.166697,0.744957,0.811996,0.786301,0.947969,0.857758,0.918906,0.451138,0.211362,0.0674419,0.105128,0.95199,0.566266,0.896679,0.302712,0.165518,0.316394,0.442992,0.200325,0.9967,0.536372,0.98555,0.291234,0.682913,0.0590394,0.708927,0.208436,0.476581,0.612655,0.490679,0.678321,0.718065,0.963564,0.0104095,0.0467092,0.0856553,0.574276,0.55937,0.456456,0.499578,0.190121,0.862148,0.239081,0.524236,0.0818506,0.207394,0.112307,0.43503,0.548982,0.0261294,0.437512,0.690868,0.0902016,0.372961,0.978115,0.579855,0.366302,0.790514,0.128157,0.722818,0.784154,0.700599,0.919798,0.766905,0.137127,0.983698,0.696192,0.369118,0.532141,0.412698,0.0582808,0.545436,0.927036,0.0342842,0.884051,0.411982,0.0684471,0.00505513,0.343817,0.773435,0.308154,0.0411308,0.0784466,0.00358915,0.244602,0.509277,0.919355,0.446481,0.895655,0.875709,0.179263,0.941502,0.919284,0.384697,0.461572,0.581337,0.988202,0.970341,0.193908,0.702032,0.668643,0.900168,0.18323,0.18898,0.911084,0.523721,0.380842,0.992935,0.365065,0.442248,0.400119,0.888833,0.461499,0.42423,0.866744,0.38915,0.808906,0.547376,0.270501,0.175045,0.558332,0.483786,0.110679,0.832189,0.926805,0.544677,0.597396,0.0473015,0.197364,0.27232,0.25081,0.652856,0.142606,0.115872,0.258723,0.505176,0.663611,0.0493978,0.836336,0.649286,0.831493,0.527938,0.983011,0.958778,0.586078,0.0850877,0.984548,0.93903,0.336363,0.742471,0.385497,0.269473,0.613887,0.704196,0.197805,0.725273,0.155727,0.0586842,0.284747,0.493349,0.465871,0.0661787,0.706783,0.668565,0.476605,0.480143,0.0434515,0.274343,0.501769,0.301077,0.712824,0.0176621,0.0185636,0.237174,0.301468,0.806673,0.288055,0.733934,0.663442,0.337019,0.889018,0.825564,0.105349,0.764845,0.171372,0.992592,0.927238,0.727326,0.636901,0.145847,0.649804,0.0649567,0.260814,0.217706,0.806104,0.714807,0.435689,0.527588,0.241989,0.252866,0.905479,0.140854,0.915528,0.0425178,0.367657,0.990006,0.169907,0.035764,0.329912,0.990084,0.421333,0.989353,0.626321,0.128924,0.778702,0.54432,0.145584,0.566001,0.693315,0.881648,0.291113,0.94296,0.882493,0.493616,0.0317892,0.727077,0.418353,0.453812,0.489982,0.633931,0.597589,0.755566,0.427477,0.440205,0.405724,0.586223,0.414583,0.127204,0.323408,0.271182,0.834199,0.931029,0.401862,0.588747,0.181977,0.30669,0.684725,0.347606,0.832376,0.489759,0.86165,0.18819,0.704741,0.0351012,0.595102,0.608487,0.2645,0.912313,0.91037,0.229378,0.0225958,0.607663,0.274394,0.255502,0.313003,0.89697,0.437746,0.908046,0.126095,0.487001,0.792748,0.707501,0.0402679,0.622173,0.587562,0.30327,0.573688,0.872534,0.149232,0.0435744,0.412224,0.694652,0.220551,0.837273,0.160671,0.447963,0.470983,0.521435,0.813199,0.472116,0.470386,0.777048,0.0794797,0.919655,0.629911,0.184966,0.178948,0.0396852,0.670219,0.158961,0.53479,0.775081,0.171646,0.0589905,0.19318,0.166881,0.843993,0.367969,0.513995,0.632297,0.405007,0.324309,0.515698,0.787775,0.724275,0.173156,0.476443,0.782095,0.437568,0.554881,0.0066011,0.936327,0.934732,0.00428885,0.555938,0.0417475,0.593367,0.275475,0.00938904,0.990004,0.148355,0.214667,0.622957,0.459543,0.507574,0.35631,0.125941,0.247951,0.150962,0.31339,0.624185,0.733898,0.674678,0.971566,0.746479,0.0250042,0.24388,0.500571,0.969561,0.0777841,0.0191383,0.24876,0.434332,0.468622,0.939176,0.434712,0.342771,0.501647,0.535615,0.142347,0.487371,0.773132,0.143061,0.494353,0.936035,0.431244,0.672299,0.381775,0.787756,0.781993,0.0621125,0.319534,0.782485,0.44853,0.188684,0.606856,0.595645,0.69429,0.716043,0.26014,0.224983,0.140966,0.279172,0.979565,0.374144,0.700807,0.429075,0.538963,0.284981,0.1991,0.0641853,0.727652,0.630944,0.0839722,0.22039,0.119303,0.826454,0.330997,0.458871,0.86048,0.411265,0.172435,0.682739,0.299246,0.159551,0.000455081,0.558211,0.261338,0.834167,0.657469,0.0679427,0.23688,0.345489,0.607619,0.667622,0.46617,0.194012,0.290108,0.782916,0.474874,0.91997,0.222807,0.0728472,0.111251,0.573099,0.828827,0.701251,0.853465,0.409135,0.627715,0.159772,0.014726,0.731767,0.995432,0.657638,0.468664,0.130559,0.179009,0.924189,0.242655,0.37762,0.628125,0.146816,0.635567,0.129,0.489622,0.126785,0.630561,0.1504,0.130526,0.444845,0.869416,0.603169,0.28624,0.433092,0.452303,0.679167,0.430718,0.386231,0.187097,0.477076,0.739387,0.480001,0.765792,0.258351,0.697191,0.54521,0.323349,0.900883,0.3292,0.389071,0.246599,0.05672,0.843919,0.45956,0.518315,0.136056,0.30389,0.922358,0.43853,0.610645,0.717127,0.599526,0.683632,0.334304,0.0928474,0.588516,0.611025,0.293882,0.203155,0.409135,0.683246,0.612312,0.463472,0.958,0.256566,0.933618,0.993146,0.212562,0.123283,0.316108,0.232818,0.434571,0.295839,0.295398,0.710803,0.778581,0.385693,0.430941,0.352147,0.657755,0.620906,0.0324828,0.974499,0.451373,0.183468,0.889911,0.612871,0.325366,0.329519,0.451337,0.411107,0.121446,0.568961,0.165129,0.230222,0.472465,0.533047,0.400492,0.235753,0.0815676,0.79651,0.321271,0.496208,0.164027,0.530017,0.649105,0.556703,0.606906,0.974429,0.720277,0.0909615,0.740101,0.229859,0.327267,0.529096,0.748899,0.526033,0.285315,0.61244,0.821491,0.649146,0.217111,0.467717,0.7289,0.720336,0.902843,0.705027,0.485418,0.372614,0.170926,0.34037,0.673676,0.532587,0.887647,0.0131726,0.467118,0.577675,0.337045,0.544578,0.343984,0.384364,0.98214,0.445779,0.751572,0.800452,0.95725,0.538376,0.599354,0.838906,0.0322949,0.154672,0.274053,0.538241,0.205387,0.784833,0.710999,0.536567,0.585515,0.232442,0.683425,0.243685,0.0975674,0.173691,0.236868,0.26334,0.151614,0.869565,0.881891,0.447957,0.704551,0.998012,0.0765565,0.584158,0.724422,0.773778,0.0793177,0.626896,0.0539108,0.156208,0.763512,0.688728,0.619035,0.310142,0.532984,0.539403,0.67298,0.858079,0.479191,0.636192,0.582895,0.940294,0.986071,0.490067,0.397636,0.576997,0.0723488,0.154438,0.786669,0.726436,0.422598,0.903472,0.885918,0.871143,0.687874,0.968386,0.543894,0.606012,0.819141,0.665501,0.620145,0.626155,0.685795,0.265594,0.819199,0.668674,0.299306,0.0229973,0.708884,0.0067451,0.234686,0.760352,0.526708,0.99648,0.094537,0.405262,0.878276,0.629852,0.238363,0.0340076,0.410428,0.330196,0.696603,0.663719,0.399366,0.941353,0.498439,0.250957,0.278651,0.915076,0.582611,0.379104,0.316348,0.635163,0.519193,0.830658,0.417756,0.514258,0.278813,0.187704,0.363639,0.45896,0.423265,0.29808,0.973559,0.872613,0.883732,0.650132,0.440568,0.60199,0.46418,0.445983,0.692255,0.704445,0.274212,0.185429,0.226016,0.669061,0.215998,0.589923,0.568971,0.660068,0.186814,0.630116,0.852082,0.330075,0.587099,0.291621,0.672615,0.616882,0.741643,0.850504,0.579863,0.891275,0.729208,0.82623,0.998631,0.889524,0.183281,0.950621,0.216913,0.256857,0.973122,0.512923,0.0427032,0.371034,0.457173,0.777325,0.777347,0.810027,0.304315,0.298987,0.0436831,0.587663,0.240788,0.437879,0.0125591,0.428045,0.136153,0.961253,0.306657,0.952657,0.755386,0.822874,0.241085,0.409535,0.410521,0.404381,0.701316,0.80554,0.609673,0.838338,0.0251619,0.471372,0.458385,0.197305,0.451991,0.465167,0.131406,0.882254,0.829782,0.346983,0.79167,0.452742,0.74202,0.148142,0.336962,0.75251,0.304194,0.733186,0.0295188,0.834607,0.323769,0.871059,0.979924,0.885821,0.675155,0.942801,0.614244,0.270034,0.663643,0.465263,0.519285,0.0565273,0.109082,0.577199,0.233572,0.891646,0.689514,0.662466,0.748763,0.271222,|0.0835703,0.756463,0.99585,0.333928,0.715568,0.580119,0.942356,0.892616,0.246676,0.345928,0.5527,0.194948,0.89136,0.745864,0.381837,0.773808,0.574125,0.710642,0.303938,0.926134,0.868367,0.986708,0.826057,0.197652,0.0128866,0.800931,0.861564,0.651432,0.770555,0.542852,0.0608319,0.330313,0.322768,0.948673,0.19127,0.777835,0.380474,0.243832,0.406013,0.993552,0.513092,0.312818,0.747309,0.220957,0.99003,0.208407,0.919918,0.777117,0.333208,0.98452,0.431771,0.499363,0.707206,0.260678,0.196094,0.214375,0.92103,0.50099,0.583398,0.495159,0.222989,0.987608,0.775699,0.431812,0.243993,0.959265,0.415736,0.255285,0.757386,0.985928,0.528002,0.326005,0.896349,0.970269,0.380337,0.966438,0.932349,0.850208,0.18788,0.309017,0.920491,0.320289,0.122644,0.442383,0.704148,0.326864,0.395938,0.509791,0.496459,0.830913,0.321194,0.206763,0.421266,0.115742,0.462662,0.643432,0.0577552,0.434431,0.728225,0.00184757,0.490545,0.456633,0.679837,0.539988,0.540972,0.192212,0.458656,0.794176,0.246231,0.59611,0.307681,0.369248,0.828344,0.167073,0.453909,0.590137,0.919228,0.112535,0.304058,0.316752,0.0045324,0.330474,0.841224,0.826138,0.374431,0.399624,0.711615,0.0615687,0.540508,0.669785,0.836086,0.408352,0.216006,0.190584,0.738736,0.492589,0.698565,0.268301,0.489672,0.0784596,0.0329428,0.157744,0.1867,0.965949,0.983678,0.0624079,0.645537,0.456345,0.526781,0.999263,0.0571037,0.591541,0.210149,0.98202,0.868494,0.0929497,0.892255,0.261472,0.55318,0.292296,0.287437,0.285484,0.564461,0.660938,0.261425,0.447532,0.603368,0.46337,0.455241,0.8619,0.0530403,0.833917,0.0969209,0.568657,0.386837,0.92264,0.0511908,0.579758,0.566146,0.507367,0.618406,0.508181,0.763459,0.759932,0.01717,0.0655435,0.221534,0.152875,0.4158,0.423852,0.752369,0.824237,0.0985241,0.873755,0.447297,0.906591,0.381102,0.167801,0.529331,0.772516,0.853546,0.966502,0.0573621,0.308835,0.665621,0.0972045,0.445631,0.787488,0.0119308,0.39893,0.708085,0.523547,0.111999,0.318807,0.512397,0.216343,0.000147402,0.875651,0.437429,0.512928,0.829517,0.804429,0.146314,0.378371,0.778822,0.1745,0.69848,0.0366045,0.0787584,0.625062,0.025465,0.495041,0.497591,0.899301,0.820996,0.747444,0.269973,0.442466,0.737936,0.0578269,0.993504,0.496783,0.930505,0.865708,0.589978,0.448481,0.924516,0.755976,0.648743,0.930873,0.990115,0.929869,0.756905,0.59329,0.482919,0.185548,0.0379658,0.317028,0.771028,0.546322,0.97907,0.348157,0.774695,0.103334,0.877486,0.0404745,0.0288886,0.680022,0.483414,0.848305,0.066384,0.795249,0.220728,0.454911,0.086324,0.424296,0.268321,0.567839,0.654056,0.209735,0.319125,0.882835,0.195628,0.825562,0.908728,0.420491,0.112043,0.00794339,0.752985,0.16843,0.85301,0.871112,0.338345,0.153628,0.796273,0.30052,0.544817,0.819074,0.0155957,0.257656,0.25546,0.47771,0.0782374,0.407748,0.345561,0.935933,0.812447,0.345884,0.604099,0.689957,0.719737,0.263345,0.959577,0.658993,0.374229,0.157501,0.332997,0.406803,0.012957,0.0863616,0.622557,0.25402,0.0606591,0.560752,0.743679,0.0293915,0.360863,0.802885,0.596666,0.75501,0.639029,0.468641,0.233298,0.28956,0.751165,0.330211,0.300418,0.0841344,0.611305,0.640975,0.822531,0.351496,0.588809,0.532011,0.687173,0.931993,0.876058,0.155811,0.723611,0.275839,0.426026,0.167771,0.0757085,0.703781,0.822551,0.716949,0.906255,0.336244,0.572681,0.438278,0.279753,0.920805,0.717313,0.891441,0.511261,0.484694,0.111383,0.37179,0.0794576,0.953716,0.272532,0.70431,0.0198274,0.414332,0.149063,0.723638,0.12403,0.690912,0.335105,0.156477,0.408533,0.826452,0.955937,0.669394,0.674269,0.902141,0.776852,0.447914,0.932017,0.75878,0.051841,0.640092,0.895059,0.591054,0.514439,0.108127,0.576188,0.411576,0.649738,0.220776,0.0541819,0.123278,0.425082,0.962183,0.361075,0.743744,0.958446,0.057911,0.000587642,0.00285727,0.469578,0.407762,0.76602,0.0170852,0.0529315,0.0819563,0.592692,0.909663,0.936421,0.523543,0.800437,0.625439,0.423967,0.36797,0.564106,0.661217,0.131171,0.501938,0.0476962,0.716269,0.931448,0.501766,0.489647,0.272943,0.557449,0.423498,0.954246,0.210025,0.646672,0.251213,0.577991,0.605976,0.153179,0.32113,0.922063,0.772357,0.945817,0.872851,0.51387,0.231819,0.974929,0.960763,0.264974,0.623877,0.595833,0.133119,0.593244,0.396756,0.439936,0.979358,0.874721,0.00464648,0.699938,0.802594,0.39823,0.917655,0.298307,0.0447254,0.108603,0.959628,0.726334,0.17249,0.436574,0.64061,0.836532,0.610626,0.614267,0.0341465,0.746792,0.554125,0.892627,0.0969648,0.023289,0.849167,0.620743,0.583892,0.762962,0.366118,0.814155,0.525818,0.835297,0.621696,0.581904,0.255695,0.600738,0.395877,0.886669,0.019572,0.967812,0.410912,0.941927,0.745984,0.808031,0.638944,0.343477,0.324559,0.212334,0.952441,0.454678,0.888858,0.583633,0.938991,0.771796,0.96158,0.640618,0.613483,0.489038,0.716314,0.0258953,0.0469965,0.901631,0.560733,0.850175,0.679635,0.47613,0.409169,0.273783,0.159744,0.430111,0.166392,0.366305,0.634012,0.663403,0.074982,0.826541,0.0873969,0.831513,0.535334,0.0542034,0.0397504,0.82114,0.379473,0.489901,0.586949,0.740112,0.247344,0.027723,0.993389,0.537893,0.243377,0.509086,0.923013,0.369519,0.657478,0.508592,0.00261754,0.601038,0.452175,0.703665,0.273572,0.810246,0.77728,0.642421,0.0273226,0.976273,0.961515,0.553976,0.147117,0.143244,0.294955,0.160796,0.786222,0.085712,0.785033,0.943478,0.945754,0.596541,0.117163,0.861775,0.147067,0.509801,0.715664,0.0466217,0.432072,0.882083,0.632193,0.304278,0.838534,0.586367,0.625442,0.357045,0.474764,0.394458,0.567746,0.223748,0.000195503,0.791822,0.805422,0.933612,0.0945623,0.79115,0.612615,0.246562,0.857939,0.465948,0.874098,0.143244,0.579724,0.0313179,0.774293,0.0331152,0.533503,0.136025,0.519012,0.374708,0.0177459,0.923123,0.148772,0.00988156,0.483918,0.247324,0.476816,0.616285,0.124232,0.17836,0.754158,0.404639,0.500613,0.721915,0.0816345,0.890448,0.370337,0.139878,0.33058,0.388882,0.432363,0.575764,0.719453,0.77241,0.996179,0.402252,0.396342,0.657727,0.253117,0.699624,0.41507,0.656675,0.989939,0.908892,0.712468,0.394287,0.172431,0.978006,0.199477,0.990105,0.971166,0.405716,0.6867,0.300609,0.64223,0.0274318,0.568414,0.46597,0.0463049,0.0872042,0.0470694,0.359295,0.105515,0.576793,0.625496,0.0610465,0.372034,0.339148,0.191313,0.653184,0.780759,0.0272231,0.0769071,0.336978,0.19098,0.188506,0.888219,0.441096,0.805683,0.577561,0.67794,0.641773,0.639635,0.869433,0.917517,0.629554,0.789573,0.0636032,0.974531,0.66854,0.906726,0.812956,0.595377,0.0848401,0.88658,0.238872,0.112451,0.891392,0.851929,0.816083,0.216386,0.921543,0.254157,0.903468,0.662691,0.722061,0.282721,0.700394,0.370055,0.0195388,0.44798,0.347499,0.162204,0.942491,0.343352,0.694669,0.299506,0.438895,0.499724,0.647235,0.835292,0.318681,0.221674,0.5831,0.616051,0.573557,0.386687,0.620314,0.924307,0.812895,0.0170537,0.616008,0.417872,0.0447597,0.563755,0.893386,0.339014,0.217139,0.929605,0.117347,0.210461,0.159861,0.658742,0.856188,0.255982,0.850112,0.462936,0.0198516,0.268643,0.356656,0.205042,0.246484,0.592797,0.783282,0.489362,0.41867,0.0344617,0.162251,0.625903,0.577355,0.693235,0.928037,0.604758,0.295637,0.178944,0.187133,0.0105402,0.632721,0.707605,0.502425,0.542589,0.782155,0.488051,0.764007,0.590029,0.717551,0.535443,0.057085,0.212659,0.976617,0.849869,0.701091,0.522738,0.625349,0.583787,0.493972,0.743385,0.990677,0.521675,0.25057,0.248537,0.808845,0.739546,0.648231,0.0219413,0.980933,0.417658,0.415242,0.967597,0.139214,0.179629,0.97625,0.0348626,0.725896,0.192018,0.96064,0.10728,0.554793,0.199427,0.587465,0.575345,0.0590937,0.851105,0.694037,0.331639,0.368007,0.0240092,0.912162,0.997939,0.0645451,0.0898061,0.912485,0.100216,0.954467,0.16316,0.352021,0.932609,0.593033,0.40961,0.131038,0.674196,0.0322657,0.870822,0.376891,0.13383,0.603209,0.589549,0.63759,0.640156,0.947514,0.140521,0.205018,0.441919,0.91273,0.495126,0.363651,0.151428,0.755766,0.426208,0.0985873,0.69566,0.293056,0.0972469,0.992549,0.283864,0.178899,0.906035,0.403016,0.658104,0.578764,0.272291,0.565754,0.141848,0.610607,0.163159,0.025436,0.869324,0.48039,0.849461,0.647652,0.0391626,0.896801,0.476473,0.992582,0.417745,0.674689,0.884329,0.486557,0.257983,0.819776,0.396702,0.414575,0.104049,0.282801,0.656264,0.49449,0.304688,0.4022,0.80899,0.557388,0.155454,0.987811,0.955206,0.83822,0.799741,0.637728,0.592607,0.213009,0.256857,0.879044,0.682563,0.217277,0.854964,0.782511,0.303694,0.959769,0.320405,0.647176,0.374343,0.705548,0.482176,0.964575,0.433323,0.196578,0.794301,0.793282,0.387989,0.780385,0.901831,0.538422,0.96861,0.593427,0.635521,0.816708,0.405423,0.0659857,0.730476,0.312748,0.0947371,0.825779,0.826189,0.471185,0.87599,0.291919,0.187323,0.475449,0.409953,0.95105,0.433814,0.606449,0.763344,0.760291,0.931175,0.932535,0.268504,0.825512,0.179039,0.648165,0.167082,0.0253506,0.424755,0.515251,0.908071,0.512233,0.589174,0.53276,0.980415,0.654932,0.0559143,0.0639067,0.500342,0.0844196,0.764978,0.231384,0.79195,0.681439,0.592688,0.932696,0.417971,0.29274,0.275823,0.272229,0.551817,0.681186,0.249443,0.255431,0.102382,0.314307,0.368018,0.640295,0.196559,0.989441,0.431842,0.998993,0.414323,0.237372,0.541228,0.1994,0.774549,0.985561,0.589916,0.33649,0.184835,0.155842,0.840161,|0.289197,0.395574,0.0952075,0.672098,0.0803981,0.208144,0.457539,0.546922,0.64879,0.629063,0.525957,0.0872391,0.781652,0.575929,0.423167,0.68975,0.761497,0.758083,0.436017,0.974885,0.227587,0.235508,0.641135,0.424368,0.349275,0.221534,0.362473,0.56934,0.362828,0.922422,0.588668,0.785558,0.407411,0.733313,0.101597,0.0802369,0.103866,0.26514,0.599183,0.888724,0.193374,0.98746,0.650497,0.740593,0.0913401,0.728047,0.744142,0.883814,0.437638,0.510965,0.660945,0.979886,0.520623,0.417065,0.947652,0.678318,0.994002,0.593547,0.880624,0.137062,0.647017,0.681742,0.383174,0.698567,0.0399089,0.168186,0.817978,0.0928644,0.189445,0.113802,0.771896,0.477035,0.814485,0.907182,0.309704,0.32546,0.358015,0.0473124,0.217591,0.474995,0.0294793,0.4787,0.579487,0.682664,0.979022,0.340688,0.750465,0.976094,0.385982,0.19178,0.10525,0.985727,0.0745727,0.195931,0.312451,0.267333,0.649445,0.29114,0.770934,0.634051,0.826561,0.0219294,0.799675,0.43662,0.516037,0.849636,0.506548,0.378907,0.545645,0.515714,0.659198,0.269848,0.719969,0.73782,0.365296,0.660944,0.370113,0.656353,0.917237,0.815403,0.827029,0.666737,0.0847179,0.660621,0.574171,0.273572,0.821466,0.210993,0.135114,0.207518,0.132853,0.872412,0.0976581,0.52206,0.612908,0.698973,0.549766,0.127763,0.236641,0.926745,0.587148,0.849102,0.410778,0.669266,0.584519,0.219865,0.948558,0.289929,0.780596,0.839621,0.606701,0.586996,0.950667,0.0568702,0.52763,0.853374,0.222097,0.335927,0.466175,0.440316,0.190205,0.844678,0.0347329,0.228488,0.344119,0.602712,0.736731,0.0872932,0.576083,0.740614,0.364599,0.823412,0.615456,0.379885,0.739813,0.180074,0.264474,0.43516,0.66907,0.540873,0.568465,0.973974,0.519295,0.490198,0.138228,0.569988,0.02526,0.814865,0.613282,0.911473,0.586647,0.727077,0.887449,0.723703,0.391249,0.652942,0.750022,0.656062,0.349868,0.820031,0.0265867,0.873501,0.511428,0.166301,0.428036,0.848102,0.357526,0.948138,0.363457,0.128556,0.607138,0.131091,0.192602,0.665355,0.01115,0.226108,0.614609,0.63968,0.0739319,0.633646,0.945298,0.55853,0.586213,0.572409,0.766755,0.415933,0.511675,0.80281,0.108035,0.513166,0.228555,0.0837286,0.663743,0.299503,0.337769,0.173895,0.390223,0.897951,0.476274,0.793331,0.0747873,0.0223272,0.672283,0.168965,0.284298,0.115237,0.603088,0.24745,0.994478,0.0575676,0.295628,0.818129,0.14414,0.958186,0.818878,0.624477,0.487936,0.851421,0.298296,0.391817,0.98117,0.429309,0.442257,0.544329,0.254539,0.0921337,0.457981,0.0764014,0.652327,0.883192,0.193127,0.770967,0.332819,0.438007,0.870905,0.85492,0.0101256,0.439757,0.299758,0.997088,0.630975,0.828724,0.992978,0.953519,0.694654,0.04025,0.607376,0.0311459,0.206676,0.67784,0.88254,0.775437,0.447217,0.961825,0.563559,0.575273,0.39054,0.885475,0.702636,0.952969,0.40359,0.82846,0.806206,0.640911,0.0423589,0.805553,0.124061,0.97877,0.664238,0.10329,0.499435,0.990436,0.5421,0.61509,0.5018,0.213776,0.862328,0.205843,0.204796,0.904498,0.142417,0.0469477,0.835337,0.333601,0.528033,0.382123,0.97336,0.222776,0.00746542,0.309565,0.190464,0.746664,0.115412,0.448591,0.267839,0.844312,0.373101,0.565828,0.519568,0.321882,0.258987,0.80813,0.492974,0.72287,0.230226,0.691207,0.325866,0.443934,0.602841,0.265552,0.85519,0.778115,0.183478,0.828226,0.860485,0.405245,0.219715,0.846892,0.396022,0.766599,0.383666,0.834959,0.523431,0.491006,0.666529,0.306797,0.298217,0.601261,0.644071,0.437445,0.476935,0.803735,0.500084,0.377685,0.182954,0.330785,0.914182,0.395734,0.0241818,0.262537,0.906398,0.866476,0.0326999,0.395096,0.387627,0.30024,0.455708,0.0856909,0.843385,0.0259503,0.355686,0.485211,0.0259562,0.639045,0.160969,0.556483,0.180797,0.311106,0.92337,0.147699,0.438394,0.958227,0.569328,0.344669,0.537717,0.8523,0.441229,0.601912,0.6382,0.600708,0.716112,0.666608,0.239558,0.39609,0.863004,0.0076552,0.801849,0.863627,0.434973,0.327453,0.121701,0.203554,0.00296515,0.106732,0.249679,0.0320913,0.433913,0.481774,0.613313,0.0796251,0.738092,0.455915,0.474047,0.0622563,0.423688,0.457186,0.950276,0.989838,0.808671,0.962507,0.623287,0.387541,0.866841,0.514268,0.764653,0.895746,0.687422,0.885234,0.664087,0.673912,0.596299,0.982499,0.759726,0.0954966,0.465507,0.745838,0.306576,0.10025,0.98613,0.618581,0.850424,0.764127,0.27484,0.125716,0.452899,0.268809,0.696635,0.672681,0.684564,0.397412,0.477464,0.340596,0.356438,0.308092,0.252246,0.104198,0.430198,0.662089,0.14558,0.695253,0.808864,0.841637,0.854269,0.0546899,0.714808,0.220213,0.624515,0.504299,0.592094,0.872555,0.959395,0.099967,0.682805,0.0220592,0.109138,0.0714052,0.0537627,0.176654,0.678536,0.6889,0.866681,0.451839,0.902167,0.603345,0.517138,0.620385,0.687997,0.439796,0.4699,0.149202,0.963706,0.0255841,0.193062,0.921618,0.567512,0.401419,0.606242,0.652048,0.689132,0.795206,0.984381,0.675465,0.384858,0.797087,0.755278,0.410509,0.251387,0.434268,0.0156081,0.259405,0.681877,0.905468,0.845425,0.851432,0.350827,0.226966,0.69691,0.337343,0.089713,0.544963,0.343327,0.53529,0.0186927,0.458396,0.10621,0.31059,0.94804,0.590101,0.521358,0.415801,0.369209,0.0438232,0.684524,0.206519,0.289993,0.696697,0.0695607,0.906647,0.937591,0.169526,0.824349,0.692289,0.419156,0.313424,0.352787,0.570179,0.714687,0.988559,0.773899,0.380587,0.590959,0.690578,0.869094,0.20657,0.570599,0.530459,0.350493,0.659471,0.83482,0.163705,0.604136,0.580792,0.823991,0.0476912,0.256968,0.400118,0.756115,0.147197,0.55429,0.35237,0.681999,0.786062,0.970674,0.610548,0.55488,0.329075,0.478711,0.730434,0.114695,0.755774,0.886621,0.143632,0.04792,0.905978,0.164157,0.364212,0.809872,0.323213,0.544467,0.352419,0.541343,0.0525522,0.270508,0.414473,0.902562,0.490999,0.214027,0.30886,0.763751,0.494471,0.517932,0.739655,0.140094,0.983967,0.214634,0.651489,0.3251,0.0128873,0.204314,0.540699,0.763594,0.351043,0.985678,0.533766,0.310782,0.128264,0.949604,0.42156,0.22712,0.585878,0.718322,0.822498,0.524339,0.799451,0.110256,0.0829635,0.147284,0.708283,0.138769,0.225133,0.0370773,0.0631574,0.632127,0.363241,0.684109,0.10382,0.0301807,0.144103,0.336187,0.938127,0.79646,0.558612,0.998988,0.981435,0.536401,0.0672413,0.455653,0.550181,0.765099,0.198523,0.926907,0.214848,0.117512,0.774643,0.799336,0.00684369,0.392427,0.648374,0.15819,0.913105,0.549092,0.416646,0.240674,0.686971,0.382449,0.511302,0.623387,0.787546,0.437546,0.59945,0.724052,0.0686719,0.983257,0.505117,0.442611,0.436096,0.585715,0.309682,0.976337,0.49749,0.497676,0.426364,0.561468,0.921203,0.228742,0.888492,0.874374,0.15755,0.858769,0.744976,0.178474,0.246321,0.488174,0.281297,0.715389,0.633668,0.399631,0.796172,0.133185,0.0278704,0.272642,0.994298,0.252286,0.617279,0.716203,0.513289,0.380063,0.717124,0.449651,0.684934,0.0321496,0.677586,0.0707639,0.511494,0.359852,0.0449857,0.693243,0.47712,0.543586,0.0653163,0.78977,0.186804,0.0431356,0.240738,0.0726714,0.663023,0.95753,0.562239,0.580378,0.36825,0.89459,0.374674,0.159732,0.47956,0.870306,0.892033,0.988356,0.0219248,0.944162,0.274352,0.765637,0.360398,0.276326,0.116736,0.179644,0.0183212,0.109777,0.667887,0.597272,0.4549,0.933425,0.954763,0.280615,0.935871,0.184102,0.132268,0.283961,0.511098,0.708653,0.811384,0.168147,0.163994,0.209184,0.553382,0.103697,0.44235,0.805479,0.366102,0.702007,0.385113,0.598619,0.286886,0.720816,0.264488,0.810722,0.0574219,0.601192,0.265655,0.95502,0.265413,0.987705,0.152982,0.80299,0.331623,0.114591,0.921679,0.717114,0.384712,0.927325,0.110637,0.320111,0.94711,0.0021717,0.402964,0.557468,0.161611,0.91025,0.638811,0.0094772,0.197329,0.10511,0.0673363,0.678412,0.420955,0.576292,0.555934,0.903772,0.724962,0.478518,0.390099,0.489052,0.324772,0.0456553,0.609336,0.867016,0.58138,0.0627052,0.0919904,0.0354,0.0716634,0.238377,0.982868,0.419735,0.485361,0.118085,0.653896,0.104177,0.620478,0.870768,0.986079,0.271813,0.905204,0.360025,0.629088,0.917379,0.242291,0.430117,0.174817,0.623761,0.163261,0.320974,0.164561,0.491516,0.676534,0.0668406,0.257351,0.0778301,0.787584,0.910242,0.16265,0.907514,0.799962,0.475866,0.68105,0.92217,0.966774,0.87107,0.433869,0.461796,0.544818,0.128161,0.37239,0.596817,0.105229,0.583302,0.290319,0.987394,0.839469,0.62321,0.812386,0.375617,0.0133866,0.972699,0.576861,0.513499,0.271903,0.0571988,0.263109,0.467452,0.0725302,0.399891,0.614391,0.43351,0.224634,0.249339,0.529353,0.660734,0.576513,0.457927,0.227275,0.297257,0.991233,0.901861,0.636406,0.175085,0.95094,0.974634,0.444473,0.698486,0.133901,0.223382,0.175699,0.215348,0.655385,0.998428,0.346571,0.149849,0.88401,0.0349242,0.982353,0.830526,0.356619,0.0150506,0.12584,0.616792,0.899402,0.382509,0.562122,0.378732,0.588401,0.982691,0.285678,0.0334515,0.482107,0.382854,0.598189,0.585117,0.801891,0.288959,0.255942,0.406653,0.31084,0.844914,0.350372,0.394745,0.782923,0.48058,0.322801,0.358949,0.610578,0.132755,0.324697,0.399324,0.474633,0.157787,0.113595,0.581671,0.371839,0.258123,0.580566,0.239324,0.442136,0.148401,0.304987,0.688159,0.839542,0.468151,0.942293,0.639346,0.786817,0.213465,0.387054,0.417051,0.0392344,0.43985,0.581243,0.545987,0.949692,0.846294,0.842397,0.401836,0.742891,0.134943,0.282432,0.870799,0.437836,0.532749,0.877815,0.66966,0.799583,|0.435943,0.361662,0.636714,0.605795,0.659335,0.830008,0.303679,0.168656,0.971792,0.88691,0.0932378,0.547557,0.512981,0.722617,0.161654,0.324657,0.2303,0.765088,0.880938,0.99985,0.302892,0.77351,0.491974,0.634733,0.759163,0.0917696,0.113502,0.986262,0.498827,0.317846,0.358162,0.279484,0.496774,0.0364851,0.735901,0.0586126,0.0397195,0.241961,0.855544,0.535755,0.173877,0.712321,0.357252,0.492817,0.383966,0.12552,0.114384,0.55243,0.504638,0.779646,0.150454,0.47658,0.84598,0.604662,0.268877,0.311363,0.840047,0.223564,0.508375,0.595574,0.204469,0.224154,0.784952,0.307777,0.572504,0.600237,0.978674,0.692496,0.192132,0.942855,0.169612,0.846395,0.0259668,0.261336,0.273951,0.998327,0.277817,0.942603,0.406452,0.41836,0.236105,0.373512,0.29463,0.635202,0.323359,0.653889,0.531031,0.422621,0.850356,0.0708992,0.132375,0.459342,0.370691,0.171096,0.417783,0.234544,0.512362,0.767612,0.669448,0.992569,0.133718,0.534557,0.644816,0.47394,0.735377,0.679776,0.265892,0.683913,0.895584,0.0708452,0.0268636,0.784075,0.725186,0.932021,0.82527,0.778656,0.298819,0.636351,0.579842,0.645629,0.649064,0.685695,0.180329,0.104108,0.712019,0.242159,0.0410092,0.444614,0.114368,0.0815077,0.404156,0.430871,0.851438,0.188509,0.258008,0.190135,0.337003,0.230684,0.23367,0.848875,0.259708,0.372541,0.369345,0.139959,0.155687,0.77582,0.880164,0.769818,0.251294,0.0172173,0.661548,0.776105,0.1223,0.0529925,0.534426,0.161062,0.829174,0.820047,0.0251222,0.416207,0.984199,0.231504,0.136578,0.655676,0.235454,0.106428,0.572933,0.479903,0.378461,0.944404,0.975497,0.388918,0.92573,0.394315,0.60552,0.886675,0.787637,0.170549,0.269463,0.508896,0.700973,0.921538,0.567521,0.15043,0.00918859,0.649915,0.355439,0.487506,0.546659,0.437984,0.870204,0.644776,0.854764,0.654558,0.659889,0.675479,0.997028,0.613641,0.732517,0.209787,0.749738,0.848969,0.370548,0.953826,0.364701,0.657044,0.840216,0.106149,0.653618,0.460746,0.631666,0.676203,0.998019,0.607164,0.428739,0.95414,0.346836,0.676897,0.303289,0.841271,0.0942038,0.0893903,0.987985,0.500752,0.487458,0.584757,0.709541,0.817188,0.530135,0.201585,0.901014,0.334274,0.0357644,0.785269,0.525817,0.119301,0.858762,0.520576,0.25011,0.299693,0.394466,0.756974,0.0929717,0.0253217,0.0726157,0.606505,0.517208,0.750928,0.266492,0.720245,0.926617,0.209829,0.0491299,0.958843,0.595117,0.653516,0.0902207,0.172291,0.50983,0.493211,0.194411,0.0658755,0.930709,0.234427,0.0242705,0.616661,0.141467,0.453857,0.614775,0.665225,0.0585615,0.432722,0.667168,0.182173,0.353903,0.520463,0.195833,0.382649,0.501167,0.166289,0.705396,0.453268,0.803658,0.769232,0.577027,0.266227,0.774587,0.718464,0.0243354,0.808429,0.363441,0.230449,0.646877,0.376828,0.613947,0.967374,0.903869,0.0147289,0.388803,0.745931,0.905566,0.55242,0.70758,0.124801,0.865,0.517384,0.850907,0.687509,0.271199,0.579474,0.998995,0.487424,0.791675,0.313371,0.082739,0.822017,0.881331,0.427673,0.761674,0.21356,0.804109,0.751572,0.877598,0.625408,0.60503,0.0783222,0.126766,0.0781635,0.454597,0.540195,0.704232,0.166675,0.330432,0.578581,0.981004,0.144095,0.682619,0.332061,0.721343,0.176905,0.0348915,0.819622,0.406141,0.552305,0.457651,0.532587,0.0455779,0.89663,0.0675653,0.982004,0.976918,0.924469,0.610927,0.981286,0.272218,0.517326,0.447376,0.389618,0.356738,0.39187,0.409218,0.58065,0.671985,0.281081,0.176231,0.267507,0.28995,0.12085,0.918925,0.636893,0.868822,0.955144,0.911786,0.439211,0.365195,0.689942,0.37653,0.621853,0.90685,0.980534,0.462473,0.590927,0.367296,0.157409,0.714306,0.59245,0.99766,0.807668,0.103462,0.972183,0.930235,0.359277,0.588512,0.441072,0.342867,0.649751,0.752518,0.735039,0.613437,0.568186,0.91798,0.525545,0.631081,0.183672,0.907653,0.933071,0.889103,0.406932,0.253605,0.295054,0.351898,0.697538,0.056285,0.76937,0.996434,0.532048,0.733932,0.787959,0.551549,0.62102,0.257652,0.129944,0.673663,0.542997,0.780704,0.261785,0.517631,0.697131,0.597088,0.847634,0.808984,0.62142,0.99578,0.498279,0.95277,0.969136,0.962632,0.98326,0.332276,0.0272261,0.973816,0.106336,0.176413,0.273784,0.74353,0.114168,0.28252,0.419064,0.820829,0.6679,0.14183,0.315737,0.233022,0.22755,0.638395,0.128371,0.295043,0.155566,0.86799,0.974401,0.21766,0.986169,0.0371412,0.534356,0.914108,0.286442,0.78866,0.29598,0.202037,0.158435,0.828268,0.739784,0.781962,0.0302961,0.142303,0.449258,0.0562486,0.526047,0.0673816,0.0549986,0.229684,0.504482,0.505041,0.121738,0.974058,0.378358,0.94667,0.858613,0.411161,0.0323462,0.135256,0.817874,0.205111,0.997182,0.959182,0.586195,0.35754,0.862592,0.766891,0.543369,0.0188911,0.647478,0.432341,0.502819,0.649171,0.245775,0.612658,0.424492,0.287063,0.965202,0.103216,0.500249,0.680677,0.984467,0.640076,0.619481,0.206643,0.843997,0.14948,0.659026,0.958974,0.837965,0.39406,0.597988,0.143167,0.558506,0.626001,0.700429,0.464613,0.730748,0.171556,0.353336,0.266322,0.457239,0.274643,0.440322,0.797525,0.758393,0.0871743,0.774854,0.0757198,0.810994,0.818039,0.755928,0.410402,0.11101,0.468573,0.325925,0.442144,0.20201,0.905579,0.360954,0.187768,0.724672,0.0981569,0.207453,0.268959,0.189978,0.300923,0.0384394,0.172232,0.854623,0.945435,0.697906,0.984706,0.257295,0.53121,0.961696,0.319929,0.0303396,0.249967,0.379192,0.669096,0.655455,0.0909675,0.950217,0.470737,0.597442,0.89205,0.72327,0.133803,0.00791693,0.368032,0.72681,0.989397,0.458701,0.226123,0.0932003,0.36718,0.541465,0.626235,0.983212,0.945059,0.360087,0.369101,0.413911,0.898185,0.263658,0.154546,0.0871455,0.0148311,0.126197,0.314927,0.185369,0.34257,0.703965,0.988289,0.296143,0.169471,0.579942,0.609668,0.25845,0.900599,0.658445,0.163243,0.429426,0.797315,0.786599,0.981231,0.866493,0.997023,0.62005,0.658302,0.137199,0.322464,0.569052,0.590917,0.0449769,0.763759,0.24529,0.353414,0.0539219,0.955879,0.413839,0.264099,0.0546814,0.218532,0.603945,0.494481,0.883286,0.225695,0.583984,0.791847,0.916962,0.368199,0.660462,0.774398,0.9127,0.81173,0.727486,0.0637115,0.401488,0.845575,0.226945,0.749307,0.12192,0.71134,0.0433756,0.156032,0.979584,0.257767,0.924504,0.755866,0.116531,0.942456,0.413223,0.170368,0.860529,0.33964,0.472734,0.813424,0.193849,0.577039,0.385809,0.134772,0.905727,0.751622,0.744922,0.95616,0.165765,0.763525,0.815326,0.279039,0.130751,0.962816,0.96862,0.908082,0.0549568,0.703019,0.0233509,0.369569,0.957067,0.401601,0.560894,0.579877,0.366753,0.533001,0.63196,0.472744,0.854419,0.701214,0.599313,0.827045,0.610261,0.574631,0.378158,0.239793,0.680398,0.187105,0.357116,0.21703,0.653522,0.276043,0.203399,0.795735,0.169624,0.0430108,0.639169,0.728923,0.374375,0.180916,0.278529,0.389996,0.135584,0.00829643,0.471905,0.770579,0.261521,0.15248,0.0560771,0.80558,0.691135,0.22306,0.284149,0.666179,0.662204,0.691925,0.781071,0.126101,0.223348,0.0469202,0.660628,0.116064,0.678441,0.238483,0.139546,0.323653,0.29287,0.794741,0.539779,0.712912,0.852071,0.906569,0.673107,0.152883,0.891493,0.720377,0.860004,0.925817,0.328632,0.798867,0.0774209,0.550926,0.664416,0.824396,0.0981459,0.477402,0.636218,0.536225,0.39,0.909167,0.695161,0.582932,0.775957,0.0506842,0.735761,0.0914817,0.269704,0.338079,0.346076,0.0259144,0.823922,0.294128,0.373628,0.107329,0.0576044,0.533482,0.392371,0.860253,0.888644,0.895757,0.289279,0.423398,0.394538,0.718056,0.567603,0.269222,0.46682,0.913122,0.558179,0.606781,0.531772,0.160573,0.282428,0.657336,0.0619922,0.616159,0.604504,0.664102,0.827937,0.00354993,0.182003,0.929539,0.758322,0.371017,0.00318736,0.559312,0.163719,0.894173,0.924904,0.321682,0.854801,0.729775,0.0832555,0.777812,0.921205,0.986842,0.627738,0.990558,0.842317,0.931353,0.0498492,0.873777,0.21957,0.130769,0.782577,0.0571817,0.426851,0.908885,0.300756,0.103603,0.044323,0.0971401,0.64753,0.0515861,0.355792,0.272096,0.0498536,0.54277,0.810415,0.704798,0.814989,0.66596,0.699835,0.0799114,0.971065,0.542255,0.48897,0.214421,0.484772,0.0141882,0.616589,0.428703,0.637647,0.230027,0.563321,0.337411,0.958085,0.794108,0.545516,0.225192,0.702709,0.0736156,0.24781,0.23859,0.0275176,0.700055,0.0392546,0.413984,0.475174,0.363112,0.02872,0.381661,0.158679,0.628071,0.431891,0.723726,0.803103,0.18285,0.92474,0.837144,0.906482,0.0263622,0.370278,0.130352,0.374929,0.357386,0.995871,0.0462344,0.786169,0.358213,0.964616,0.585509,0.876202,0.613422,0.0736824,0.744314,0.120943,0.2451,0.496922,0.0360759,0.107279,0.34184,0.342293,0.600266,0.34355,0.479241,0.291073,0.460227,0.300285,0.416231,0.289748,0.874942,0.655897,0.194994,0.200547,0.774795,0.0372521,0.61976,0.971919,0.366652,0.648932,0.674769,0.0128631,0.692632,0.0284072,0.882637,0.393185,0.487769,0.62971,0.1299,0.0568902,0.85156,0.147908,0.348235,0.0178329,0.671364,0.349656,0.149421,0.155025,0.759461,0.162122,0.507252,0.866724,0.633443,0.108785,0.329505,0.00270563,0.172393,0.109111,0.661982,0.971262,0.679873,0.0651994,0.807401,0.640531,0.6,0.275342,0.439117,0.722082,0.939297,0.291086,0.960324,0.687744,0.224889,0.807084,0.646203,0.640394,0.740176,0.446596,0.0671614,0.113278,0.113559,0.811795,0.488053,0.908651,0.42383,0.305966,0.928645,0.298575,0.26705,0.244525,0.431772,0.874845,0.905019,0.0307077,0.832848,0.438961,0.870367,0.708474,|0.268354,0.965468,0.381549,0.0747468,0.514294,0.536388,0.890144,0.634449,0.619216,0.240922,0.752504,0.121603,0.447302,0.661991,0.754746,0.967066,0.469339,0.427892,0.370635,0.0614417,0.756959,0.399134,0.105791,0.749217,0.563717,0.55867,0.23376,0.234548,0.0413509,0.0853269,0.831556,0.322682,0.703993,0.400746,0.387605,0.0246253,0.194098,0.277448,0.502845,0.0169127,0.121674,0.0747332,0.244899,0.364208,0.471318,0.0707625,0.109724,0.974185,0.0667616,0.758195,0.767839,0.265679,0.659624,0.829191,0.715865,0.718663,0.817955,0.803859,0.319058,0.124143,0.739152,0.614968,0.640296,0.348616,0.98576,0.959244,0.322603,0.304593,0.792642,0.506549,0.466954,0.230668,0.282451,0.379716,0.449779,0.271593,0.733142,0.623225,0.201902,0.0501354,0.617769,0.844949,0.678281,0.727581,0.879287,0.693797,0.819609,0.924898,0.371816,0.0206467,0.700521,0.00336266,0.179356,0.324404,0.735791,0.0993835,0.641651,0.457523,0.99103,0.0840352,0.969226,0.0133697,0.694274,0.610247,0.462159,0.767661,0.579096,0.598827,0.290154,0.63442,0.53472,0.339982,0.790287,0.135288,0.38194,0.516256,0.993517,0.0932545,0.353535,0.641161,0.864883,0.257562,0.755174,0.642528,0.315628,0.426037,0.0930212,0.457087,0.474088,0.658546,0.534913,0.714539,0.29519,0.653444,0.359382,0.572436,0.311804,0.143879,0.472146,0.503616,0.607374,0.809667,0.680502,0.0396571,0.898219,0.786616,0.287502,0.0398205,0.0916904,0.849332,0.244497,0.341877,0.370414,0.939521,0.714236,0.46655,0.300169,0.425371,0.506873,0.274326,0.73523,0.444542,0.716318,0.533317,0.805544,0.406107,0.468352,0.258139,0.263665,0.798063,0.391048,0.728122,0.0894156,0.896497,0.25402,0.745498,0.451475,0.113973,0.124923,0.508749,0.751929,0.821634,0.174846,0.519354,0.1934,0.212016,0.267547,0.308006,0.980144,0.884069,0.958449,0.527091,0.693854,0.513018,0.421854,0.300075,0.382004,0.146577,0.788231,0.0695809,0.209607,0.830617,0.882045,0.0187277,0.635434,0.508176,0.389835,0.543278,0.715534,0.284476,0.974404,0.653634,0.878198,0.636114,0.576698,0.661166,0.549027,0.157591,0.768497,0.372373,0.888758,0.648406,0.242611,0.696782,0.618359,0.85357,0.120427,0.692151,0.36392,0.243026,0.996025,0.90344,0.846125,0.588091,0.586363,0.0363459,0.470629,0.362233,0.612009,0.736206,0.754673,0.461931,0.243122,0.43443,0.792624,0.972911,0.0240013,0.920717,0.58482,0.0539147,0.654041,0.0589672,0.744013,0.697315,0.557354,0.630615,0.847188,0.34257,0.128502,0.567087,0.891738,0.988081,0.133738,0.860665,0.215031,0.544504,0.724158,0.486953,0.997959,0.179502,0.0636792,0.21055,0.692134,0.952062,0.851029,0.916899,0.0857946,0.342211,0.345778,0.530208,0.44269,0.878344,0.0556255,0.494166,0.419602,0.00548869,0.308075,0.902357,0.822512,0.319242,0.889866,0.468366,0.933747,0.783094,0.193544,0.56486,0.847757,0.515752,0.656747,0.00290376,0.389425,0.30112,0.301477,0.0687026,0.811888,0.689371,0.512947,0.867982,0.141259,0.536487,0.416386,0.217551,0.53562,0.819784,0.993457,0.533878,0.290314,0.413885,0.102171,0.882648,0.469983,0.182638,0.152244,0.744538,0.380072,0.417187,0.333613,0.646296,0.7616,0.75468,0.00508803,0.672748,0.10843,0.504335,0.196577,0.147089,0.651556,0.505869,0.275505,0.18849,0.214754,0.442645,0.739082,0.712746,0.219195,0.318033,0.0523575,0.295269,0.0142035,0.249656,0.828066,0.721663,0.431486,0.831589,0.364309,0.608644,0.789591,0.974291,0.929387,0.630757,0.19814,0.0632007,0.686754,0.136622,0.359693,0.783673,0.393885,0.221309,0.479038,0.590097,0.802436,0.490774,0.608173,0.241389,0.819368,0.070574,0.971894,0.374162,0.412783,0.665615,0.44095,0.145457,0.891938,0.473508,0.803476,0.402204,0.924047,0.629058,0.492205,0.583615,0.297977,0.325874,0.528382,0.612797,0.679793,0.163468,0.907445,0.0930718,0.222322,0.621257,0.409054,0.787234,0.22953,0.108722,0.922786,0.556137,0.979077,0.53175,0.222433,0.770746,0.437654,0.107254,0.0608411,0.769164,0.0856711,0.729271,0.704346,0.0310279,0.601196,0.356462,0.527045,0.906026,0.470283,0.860046,0.272147,0.734382,0.911211,0.875823,0.333641,0.907884,0.227588,0.443575,0.198877,0.970996,0.536998,0.425796,0.954927,0.639369,0.955615,0.808855,0.467422,0.246517,0.270746,0.765626,0.0217992,0.700332,0.977209,0.190091,0.0482718,0.713549,0.185994,0.39229,0.505785,0.961197,0.262573,0.683231,0.432099,0.999691,0.555721,0.725851,0.10746,0.265112,0.419072,0.18552,0.400045,0.988023,0.551694,0.994009,0.871528,0.642281,0.853488,0.0988971,0.11254,0.375936,0.44198,0.871381,0.590709,0.599664,0.00351167,0.800887,0.208471,0.133111,0.707179,0.828671,0.208209,0.690165,0.207701,0.54038,0.127427,0.725645,0.424917,0.306607,0.931625,0.864481,0.898731,0.137458,0.0266989,0.217286,0.644335,0.29323,0.289286,0.776062,0.0131794,0.218367,0.994073,0.614759,0.778094,0.917196,0.971389,0.401743,0.806626,0.418594,0.199668,0.228141,0.334638,0.566398,0.489072,0.220162,0.857215,0.730908,0.937238,0.760879,0.658354,0.956151,0.379805,0.732468,0.31702,0.820289,0.208683,0.176862,0.0893816,0.124637,0.186616,0.731798,0.570289,0.0412177,0.542722,0.810641,0.193913,0.553502,0.356716,0.703665,0.407045,0.243938,0.810674,0.743626,0.802401,0.979996,0.749943,0.864461,0.951393,0.8207,0.575166,0.618143,0.465886,0.274099,0.524298,0.268613,0.00440025,0.565869,0.89351,0.950673,0.906871,0.858306,0.585341,0.413816,0.108588,0.560273,0.167341,0.317437,0.103558,0.152007,0.626702,0.543554,0.583383,0.202441,0.663218,0.638884,0.475221,0.69481,0.211999,0.531858,0.0764453,0.57008,0.731444,0.670887,0.0143542,0.00236326,0.116144,0.814359,0.72347,0.457881,0.221326,0.553115,0.523042,0.096682,0.766705,0.713335,0.245329,0.01767,0.218417,0.782371,0.981793,0.0796212,0.609714,0.920437,0.7529,0.963228,0.0585892,0.100847,0.281118,0.611186,0.598503,0.99442,0.969341,0.623455,0.668819,0.371596,0.177083,0.473721,0.436465,0.770276,0.645506,0.702777,0.30504,0.419793,0.103173,0.234123,0.900294,0.61587,0.541567,0.682751,0.128056,0.0502027,0.552967,0.557198,0.639884,0.447942,0.364272,0.0826066,0.691175,0.0573106,0.343711,0.412228,0.811251,0.593853,0.726667,0.795971,0.118344,0.907624,0.0599972,0.581223,0.911871,0.718511,0.717176,0.328639,0.175747,0.939077,0.0973142,0.688472,0.221038,0.0200747,0.067704,0.288957,0.899706,0.0286148,0.936693,0.158979,0.417251,0.587636,0.978316,0.47904,0.925066,0.404611,0.227186,0.358958,0.409428,0.753561,0.517992,0.425174,0.27897,0.498073,0.703528,0.0204499,0.159546,0.327519,0.0245964,0.385342,0.0959786,0.366521,0.585293,0.980917,0.0796107,0.227759,0.129288,0.5075,0.276765,0.334896,0.338773,0.817229,0.759794,0.848458,0.644762,0.450089,0.235799,0.73539,0.341027,0.400902,0.49091,0.559959,0.824196,0.855162,0.876635,0.574374,0.570448,0.170811,0.514714,0.616358,0.974476,0.747405,0.752721,0.133415,0.982596,0.58689,0.412901,0.980015,0.133806,0.487841,0.814669,0.0543772,0.142362,0.924912,0.953896,0.0701504,0.388568,0.507122,0.842155,0.462576,0.587669,0.0719102,0.603875,0.115889,0.989569,0.446932,0.425821,0.981972,0.0736739,0.23043,0.280651,0.618804,0.196058,0.11147,0.990834,0.454848,0.453443,0.298653,0.419791,0.893544,0.327567,0.829406,0.630245,0.726954,0.522899,0.496779,0.215802,0.975509,0.273759,0.941608,0.9939,0.190429,0.899443,0.270156,0.0118601,0.051123,0.717706,0.596851,0.0440823,0.325806,0.790686,0.87127,0.593792,0.825898,0.942224,0.350712,0.338975,0.104815,0.876585,0.357483,0.643178,0.716493,0.179068,0.36128,0.729447,0.857889,0.693613,0.373211,0.381865,0.877756,0.997404,0.874167,0.77762,0.068943,0.386207,0.69953,0.551151,0.489319,0.107937,0.144609,0.33661,0.736964,0.87786,0.260485,0.189309,0.829977,0.705299,0.339723,0.195056,0.136487,0.440705,0.299691,0.864869,0.403954,0.299485,0.975574,0.791799,0.0304527,0.197374,0.046208,0.540473,0.832185,0.748724,0.388197,0.939021,0.780288,0.452725,0.669898,0.473983,0.342642,0.355532,0.158768,0.187399,0.339379,0.997244,0.716408,0.230574,0.126446,0.0240155,0.625886,0.769513,0.174496,0.587311,0.799507,0.168433,0.271095,0.779099,0.625043,0.563925,0.979734,0.426674,0.631221,0.28489,0.0182157,0.546518,0.608722,0.0401719,0.300471,0.311263,0.525082,0.779926,0.933363,0.949299,0.108219,0.838994,0.844803,0.587409,0.461794,0.520472,0.533823,0.471593,0.509541,0.203862,0.921503,0.268862,0.625963,0.225249,0.057371,0.542286,0.935596,0.272918,0.0308411,0.431995,0.0149239,0.766675,0.985728,0.637559,0.83524,0.577559,0.0484113,0.459229,0.056609,0.247334,0.879619,0.0563006,0.651037,0.859996,0.0883967,0.763423,0.61308,0.824766,0.663836,0.624916,0.470336,0.51613,0.3522,0.741724,0.578329,0.74937,0.708553,0.747154,0.0976115,0.578572,0.649277,0.664459,0.718711,0.664204,0.817384,0.243263,0.533171,0.399032,0.774115,0.188927,0.554949,0.312817,0.589924,0.74069,0.311225,0.822579,0.522691,0.786883,0.620441,0.469047,0.433036,0.0295824,0.356143,0.983264,0.271887,0.0190972,0.447349,0.12077,0.691509,0.782099,0.333584,0.0571461,0.0573425,0.20797,0.781189,0.0817001,0.531463,0.61047,0.259822,0.453085,0.640021,0.311302,0.372539,0.07318,0.192537,0.825498,0.00971484,0.956655,0.674427,0.244494,0.386838,0.380638,0.392346,0.118884,0.962545,0.953376,0.0459961,0.927582,0.939104,0.613281,0.718295,0.597856,0.800476,0.286754,0.998227,0.00165921,0.668838,0.61652,0.935153,0.783637,0.240333,0.445087,0.939477,0.893368,0.858988,0.182564,0.112593,0.00849056,0.680777,|0.498028,0.766207,0.648445,0.0591876,0.490535,0.0246364,0.977149,0.818985,0.166458,0.642624,0.322369,0.0984609,0.632529,0.165415,0.676487,0.639179,0.860034,0.225252,0.0131393,0.897955,0.150434,0.640868,0.269754,0.401608,0.0103071,0.0782472,0.902949,0.17276,0.721772,0.198076,0.234571,0.432643,0.575217,0.63619,0.209794,0.884702,0.300901,0.244116,0.71303,0.322181,0.38955,0.230726,0.898808,0.106445,0.710029,0.612064,0.93922,0.109008,0.28275,0.245341,0.628975,0.217217,0.792602,0.996533,0.115829,0.895438,0.25935,0.701652,0.302131,0.969828,0.531488,0.233421,0.582512,0.856074,0.613019,0.21515,0.894597,0.370578,0.97993,0.28424,0.152979,0.56752,0.683476,0.814832,0.962434,0.874973,0.580418,0.475166,0.958751,0.465823,0.939493,0.245149,0.174383,0.270674,0.470335,0.865541,0.634319,0.163838,0.421711,0.809705,0.468977,0.869513,0.12553,0.14001,0.511994,0.669841,0.109169,0.204212,0.966189,0.628334,0.160646,0.030497,0.153546,0.342162,0.141395,0.276643,0.52301,0.910743,0.948221,0.0985307,0.715537,0.913281,0.0530416,0.226468,0.76642,0.262838,0.41261,0.19683,0.362444,0.192534,0.283076,0.726841,0.712302,0.334098,0.0286292,0.886403,0.709827,0.426555,0.197922,0.424502,0.306253,0.613588,0.430776,0.036951,0.203525,0.141238,0.05718,0.881558,0.109162,0.712897,0.191687,0.932962,0.483244,0.472478,0.256402,0.616953,0.0913868,0.451758,0.88109,0.15521,0.885501,0.91718,0.645998,0.163454,6.00815e-05,0.455804,0.00421399,0.82218,0.429826,0.252008,0.225691,0.652921,0.0841232,0.359361,0.77005,0.457318,0.595542,0.721106,0.97883,0.90819,0.293511,0.239536,0.913633,0.976034,0.777759,0.334846,0.549356,0.780525,0.23709,0.882997,0.0904654,0.0987399,0.850638,0.219725,0.745637,0.0116794,0.941478,0.315646,0.029071,0.435959,0.0575423,0.659438,0.171301,0.675105,0.394501,0.728892,0.0681781,0.744487,0.901074,0.337277,0.201329,0.536643,0.0269669,0.302595,0.151998,0.255016,0.613783,0.756984,0.205056,0.0193315,0.755549,0.322328,0.587688,0.966436,0.370695,0.852291,0.132447,0.906326,0.887065,0.415695,0.358548,0.748065,0.331304,0.74127,0.337731,0.966904,0.565471,0.599369,0.859344,0.933261,0.821227,0.43431,0.464326,0.57401,0.794733,0.283013,0.0527831,0.958801,0.335387,0.436494,0.939008,0.530078,0.674101,0.313755,0.1699,0.0104308,0.302714,0.773713,0.0662668,0.00825173,0.0643858,0.54858,0.679842,0.628203,0.68365,0.259837,0.765271,0.43373,0.542562,0.849492,0.0778694,0.162852,0.833904,0.101342,0.713207,0.367142,0.861428,0.343226,0.992584,0.705836,0.320215,0.645226,0.677724,0.969495,0.281604,0.973711,0.736302,0.343687,0.00802678,0.31243,0.202117,0.513309,0.149766,0.0507408,0.149552,0.912744,0.5306,0.52154,0.751042,0.791412,0.574833,0.235692,0.27795,0.883962,0.0285689,0.0340156,0.579591,0.161693,0.727695,0.176106,0.718924,0.0635329,0.606923,0.410077,0.0339931,0.151059,0.681044,0.453048,0.0321209,0.585484,0.958515,0.416136,0.677253,0.779042,0.535349,0.892777,0.817652,0.5947,0.587446,0.760292,0.905696,0.637915,0.811071,0.639292,0.0416051,0.760563,0.539519,0.598202,0.364379,0.621287,0.964109,0.705728,0.100155,0.38591,0.606614,0.466288,0.630682,0.582232,0.125936,0.505108,0.146571,0.759194,0.404549,0.154075,0.948451,0.318923,0.154898,0.253662,0.566149,0.680478,0.457381,0.246688,0.912185,0.83932,0.690139,0.512198,0.965529,0.834418,0.645814,0.66455,0.256037,0.175333,0.82551,0.97864,0.994331,0.111126,0.999979,0.896481,0.943332,0.658933,0.124748,0.446642,0.801236,0.686264,0.586398,0.273248,0.180948,0.00343341,0.530524,0.795648,0.0561959,0.794438,0.135302,0.739429,0.201148,0.544609,0.810824,0.59334,0.0938199,0.0170252,0.526086,0.927254,0.349462,0.139189,0.896509,0.349896,0.453044,0.91486,0.426366,0.89851,0.935912,0.979242,0.300652,0.626099,0.491177,0.124851,0.770986,0.385379,0.281178,0.558066,0.0525974,0.0727068,0.883531,0.999304,0.068129,0.682337,0.528616,0.85561,0.123756,0.450039,0.317517,0.0250939,0.826325,0.676633,0.421876,0.100437,0.153905,0.293853,0.84958,0.441941,0.407548,0.0540006,0.733751,0.18221,0.682918,0.833311,0.756212,0.563803,0.940851,0.909104,0.688667,0.461636,0.812538,0.456,0.616723,0.263025,0.134849,0.662006,0.460458,0.251297,0.390952,0.662276,0.988992,0.088178,0.453407,0.990137,0.616136,0.484402,0.234994,0.0140209,0.224655,0.456392,0.262309,0.00491208,0.280431,0.32694,0.914593,0.390312,0.503564,0.518392,0.196295,0.233248,0.640744,0.214859,0.0512703,0.148769,0.922755,0.202476,0.446314,0.0992656,0.589575,0.983603,0.587866,0.255133,0.86968,0.570798,0.548784,0.613464,0.821183,0.710475,0.272411,0.710075,0.145538,0.927005,0.924681,0.894319,0.552959,0.797943,0.995692,0.30801,0.348587,0.696049,0.175364,0.940274,0.417452,0.833688,0.334783,0.527981,0.158722,0.309284,0.543708,0.0415543,0.858708,0.126741,0.543053,0.641462,0.841271,0.50064,0.443536,0.481202,0.402679,0.801783,0.0657633,0.847475,0.001634,0.926228,0.148415,0.948898,0.537612,0.54052,0.426575,0.635216,0.439663,0.179581,0.235546,0.834113,0.202259,0.843396,0.126989,0.216757,0.345631,0.619679,0.175145,0.695023,0.525352,0.675142,0.691692,0.476486,0.0137588,0.737727,0.665156,0.256232,0.502553,0.464274,0.720234,0.776311,0.063861,0.570638,0.110814,0.803913,0.0987365,0.528518,0.407128,0.540357,0.37738,0.569448,0.657771,0.716542,0.355673,0.216091,0.233261,0.72583,0.00254363,0.634294,0.271924,0.0221741,0.0852891,0.782616,0.484058,0.126715,0.878664,0.782888,0.742755,0.638166,0.981751,0.87813,0.0576432,0.475911,0.585834,0.169995,0.0924354,0.935258,0.591064,0.515447,0.515211,0.87706,0.281329,0.649776,0.718243,0.115161,0.961183,0.0113884,0.579768,0.103973,0.714789,0.711709,0.0029965,0.473894,0.610458,0.170698,0.697621,0.461074,0.154647,0.0773014,0.139609,0.225223,0.577356,0.683797,0.967696,0.706434,0.451797,0.104021,0.0885732,0.506151,0.648959,0.435611,0.0602344,0.606178,0.200366,0.265926,0.608619,0.298437,0.413978,0.555327,0.413932,0.740683,0.928117,0.219583,0.468159,0.573299,0.0955615,0.657696,0.745376,0.437468,0.123542,0.6819,0.569491,0.982892,0.560574,0.73022,0.165784,0.100954,0.992271,0.854048,0.96473,0.339411,0.114304,0.235387,0.119463,0.533362,0.769427,0.417419,0.5599,0.216352,0.874362,0.458509,0.63324,0.261019,0.657835,0.897601,0.223903,0.261087,0.52189,0.944885,0.618501,0.578017,0.139359,0.203365,0.00874734,0.434297,0.55304,0.178463,0.4382,0.0838526,0.596597,0.654601,0.0289537,0.876603,0.0353216,0.74918,0.722023,0.35613,0.785299,0.787995,0.103228,0.418412,0.0324596,0.725814,0.839087,0.782668,0.700296,0.272188,0.281222,0.552982,0.0568922,0.444609,0.582832,0.519874,0.204497,0.460323,0.963405,0.764904,0.41333,0.316246,0.686517,0.488854,0.433867,0.997094,0.727909,0.177762,0.38053,0.431371,0.941941,0.0102057,0.0459477,0.605651,0.77239,0.406773,0.583367,0.527478,0.993863,0.310562,0.872811,0.104634,0.607298,0.609078,0.610291,0.540755,0.566431,0.294113,0.613383,0.996917,0.502992,0.0188828,0.457186,0.0914691,0.746593,0.626938,0.455537,0.0217187,0.854513,0.962762,0.852007,0.613061,0.434692,0.327156,0.476089,0.89359,0.239939,0.00759268,0.736386,0.716578,0.212868,0.0545242,0.682033,0.400106,0.98574,0.551645,0.116095,0.809346,0.938312,0.735347,0.77874,0.318299,0.957241,0.403943,0.705021,0.671896,0.290526,0.101398,0.522095,0.522442,0.0331362,0.343807,0.0936646,0.856186,0.119532,0.277407,0.435392,0.417015,0.355133,0.334722,0.806883,0.550591,0.399432,0.786066,0.132065,0.600216,0.232276,0.91542,0.189924,0.667936,0.569389,0.762622,0.730417,0.0776985,0.887051,0.719178,0.430086,0.667809,0.817369,0.0533262,0.735687,0.129154,0.0607995,0.304008,0.661046,0.974342,0.134943,0.251655,0.548166,0.801915,0.481984,0.453394,0.569064,0.6409,0.949321,0.555872,0.644813,0.308574,0.453281,0.758026,0.742911,0.388134,0.572548,0.641113,0.652397,0.470589,0.914305,0.97918,0.369318,0.768334,0.815522,0.861666,0.227834,0.756655,0.398774,0.452311,0.552938,0.0402232,0.383579,0.0780433,0.727547,0.180564,0.230592,0.325133,0.878928,0.0442579,0.52761,0.043007,0.281306,0.968459,0.536995,0.774243,0.796601,0.802417,0.393353,0.514759,0.0894852,0.473345,0.237965,0.688676,0.738638,0.714971,0.350512,0.325596,0.062008,0.233836,0.0344552,0.554253,0.889179,0.920899,0.0835246,0.759142,0.585527,0.188091,0.480043,0.733384,0.252907,0.644795,0.361184,0.0285091,0.376318,0.755939,0.731707,0.109923,0.926026,0.229551,0.40897,0.420791,0.857357,0.100543,0.895186,0.23512,0.592746,0.808752,0.580866,0.230258,0.970884,0.328863,0.432152,0.489231,0.671932,0.200789,0.967068,0.90498,0.824821,0.816129,0.672114,0.514185,0.80239,0.52458,0.223175,0.925019,0.512053,0.930719,0.537987,0.242926,0.236498,0.31108,0.297433,0.376652,0.892343,0.497274,0.55106,0.471527,0.340534,0.92418,0.772958,0.837219,0.651995,0.889077,0.577779,0.14919,0.362472,0.894729,0.171176,0.611271,0.537911,0.75059,0.13694,0.672113,0.557898,0.947557,0.170662,0.805422,0.770546,0.723863,0.153897,0.419,0.900852,0.480999,0.48894,0.408729,0.516667,0.415376,0.628052,0.310552,0.760177,0.0983693,0.0562572,0.62835,0.97236,0.138233,0.998476,0.198591,0.822524,0.700306,0.745052,0.908524,0.816462,0.424685,0.0222648,0.361443,0.542107,0.734216,0.911373,0.134362,0.269409,0.506548,0.788094,0.807053,0.817895,0.422447,0.925644,0.453774,0.998662,0.976659,0.625563,0.774303,|0.177434,0.412517,0.561517,0.625083,0.232886,0.786296,0.262946,0.66415,0.23509,0.218514,0.995463,0.641547,0.587485,0.293916,0.474588,0.577131,0.309359,0.566235,0.471288,0.00304627,0.767168,0.0394428,0.0912703,0.0565665,0.828598,0.720841,0.842498,0.772452,0.0589576,0.940614,0.588534,0.782114,0.600051,0.0474977,0.808261,0.55727,0.778958,0.857727,0.453738,0.0663919,0.108516,0.18569,0.985735,0.323848,0.704793,0.522982,0.231276,0.198867,0.309069,0.735864,0.0390025,0.410207,0.684224,0.561018,0.87444,0.634652,0.128099,0.0159278,0.812623,0.723991,0.421157,0.787658,0.638282,0.104761,0.581153,0.431132,0.529748,0.806372,0.478244,0.857078,0.424123,0.595591,0.221446,0.0672149,0.560023,0.956117,0.087791,0.776182,0.48053,0.232228,0.892118,0.355665,0.819919,0.634748,0.908481,0.279252,0.682925,0.0280679,0.314662,0.8814,0.470813,0.453104,0.404146,0.308487,0.607038,0.200261,0.974691,0.333759,0.726831,0.558386,0.351344,0.831923,0.823766,0.758296,0.962452,0.00410914,0.831289,0.589721,0.295577,0.964583,0.691114,0.753345,0.672053,0.923664,0.35025,0.676008,0.25464,0.0228801,0.0546931,0.925502,0.67014,0.34508,0.867271,0.179796,0.632505,0.194789,0.2591,0.23633,0.571819,0.918379,0.475878,0.816368,0.957319,0.705899,0.182781,0.470391,0.372856,0.594869,0.826323,0.158986,0.0146403,0.594189,0.556989,0.337567,0.663878,0.0479934,0.149607,0.994656,0.167572,0.466078,0.924395,0.652068,0.53519,0.00242436,0.412359,0.516944,0.559613,0.30502,0.969652,0.426451,0.202105,0.945077,0.0314273,0.185843,0.884191,0.964188,0.621014,0.206262,0.196839,0.0933095,0.885371,0.80137,0.546154,0.264584,0.308943,0.836192,0.083664,0.80531,0.424197,0.599628,0.246931,0.835519,0.323787,0.557949,0.940478,0.201914,0.198732,0.346769,0.804927,0.686748,0.275973,0.298166,0.469326,0.684667,0.255739,0.249199,0.693458,0.221383,0.884328,0.2404,0.879196,0.678229,0.000957131,0.257649,0.906076,0.736483,0.362911,0.757422,0.435526,0.939744,0.72306,0.0017845,0.946831,0.525588,0.761658,0.384209,0.0577755,0.494874,0.891909,0.0824999,0.732296,0.751653,0.383518,0.21742,0.136514,0.356305,0.547128,0.633903,0.846067,0.38715,0.79682,0.648424,0.11104,0.810539,0.19465,0.358366,0.0866711,0.77371,0.535103,0.421698,0.733756,0.52231,0.137096,0.772365,0.468104,0.343376,0.951785,0.357818,0.534677,0.147827,0.224306,0.94834,0.382108,0.00558561,0.353224,0.696676,0.891501,0.879736,0.514637,0.631804,0.361883,0.297555,0.532801,0.59253,0.167769,0.695499,0.715445,0.408167,0.0426562,0.61922,0.48646,0.381584,0.351712,0.96974,0.24516,0.8416,0.800203,0.243202,0.830568,0.409898,0.0908405,0.272226,0.550554,0.963543,0.888039,0.0804428,0.64769,0.621297,0.00861442,0.124733,0.663301,0.646693,0.346347,0.370989,0.423075,0.65582,0.871755,0.461099,0.747111,0.699159,0.937384,0.0968746,0.0556414,0.914348,0.908168,0.966014,0.751356,0.998732,0.175495,0.392702,0.061344,0.636661,0.376622,0.0876891,0.166699,0.412355,0.887061,0.471805,0.511413,0.0851172,0.0162412,0.734729,0.670212,0.616637,0.38076,0.798201,0.651483,0.714945,0.350926,0.589488,0.999652,0.336311,0.865844,0.680127,0.483525,0.905474,0.562575,0.416001,0.498204,0.915135,0.322292,0.260205,0.433094,0.601279,0.83579,0.747706,0.0226787,0.752944,0.26808,0.664575,0.691027,0.62277,0.371057,0.178005,0.0236951,0.876105,0.99736,0.957836,0.672649,0.0779554,0.841341,0.826488,0.784102,0.0725035,0.211174,0.221833,0.20606,0.835733,0.213325,0.279013,0.387253,0.186774,0.757223,0.0822272,0.420096,0.0235344,0.9714,0.293335,0.1902,0.0811448,0.861835,0.524831,0.497543,0.697185,0.0164968,0.294987,0.530417,0.704942,0.889698,0.236478,0.159675,0.69473,0.0811755,0.978704,0.446356,0.567874,0.196102,0.86211,0.658452,0.338638,0.318344,0.863934,0.590392,0.250338,0.165343,0.489455,0.676887,0.582557,0.921137,0.252998,0.316334,0.681234,0.234738,0.990329,0.00730461,0.670712,0.704325,0.53173,0.396759,0.952578,0.569162,0.857139,0.435618,0.0302606,0.956838,0.873653,0.901392,0.514672,0.772156,0.812461,0.753761,0.219297,0.530582,0.382096,0.470335,0.458664,0.267967,0.548994,0.885044,0.971326,0.601318,0.582933,0.120527,0.139015,0.00120395,0.768304,0.704862,0.416266,0.0171075,0.198314,0.101731,0.217859,0.368762,0.450397,0.19201,0.298739,0.75358,0.739828,0.726393,0.0124263,0.966565,0.205688,0.896201,0.974468,0.0836961,0.392226,0.582936,0.505671,0.700207,0.332448,0.732153,0.137636,0.118161,0.244468,0.934999,0.954909,0.836677,0.750315,0.0116149,0.0412536,0.255507,0.847322,0.963904,0.74173,0.731031,0.0295233,0.487104,0.312922,0.70009,0.097294,0.594044,0.341198,0.88817,0.26682,0.411072,0.240696,0.577103,0.510565,0.0952326,0.342607,0.164127,0.381777,0.439405,0.525537,0.0695223,0.116863,0.220075,0.148836,0.45529,0.843819,0.104074,0.885114,0.546676,0.761869,0.834522,0.264557,0.79913,0.819364,0.96446,0.419361,0.205074,0.949525,0.671225,0.58711,0.536775,0.575895,0.545678,0.465317,0.345255,0.684658,0.956734,0.847196,0.082158,0.320911,0.228534,0.0269753,0.593798,0.552266,0.142787,0.0320891,0.226388,0.759324,0.46321,0.56644,0.486594,0.430807,0.193486,0.194275,0.508644,0.0824733,0.547135,0.565413,0.237951,0.505636,0.596928,0.409581,0.983359,0.255329,0.876006,0.959791,0.582585,0.445554,0.888423,0.911476,0.303528,0.923073,0.970845,0.0641373,0.797221,0.366892,0.140896,0.834548,0.615801,0.31768,0.0862862,0.26184,0.557593,0.856187,0.0904911,0.676943,0.438901,0.905241,0.202782,0.339927,0.29025,0.851101,0.817134,0.848733,0.674268,0.721711,0.967574,0.0439285,0.0752124,0.338584,0.203441,0.41277,0.505126,0.669957,0.279509,0.116276,0.222743,0.491607,0.75379,0.37036,0.703545,0.425012,0.584122,0.53147,0.148938,0.276663,0.190145,0.770309,0.0913718,0.191587,0.471657,0.17945,0.518245,0.282454,0.873018,0.310655,0.977081,0.0242087,0.0664096,0.990865,0.769104,0.892253,0.608713,0.0623158,0.626222,0.364375,0.697504,0.346055,0.245236,0.932485,0.0604294,0.173294,0.917795,0.575407,0.111834,0.667877,0.901506,0.406085,0.243445,0.4635,0.11775,0.549832,0.750294,0.819978,0.55468,0.785672,0.350302,0.462859,0.832994,0.119198,0.147007,0.0809135,0.848904,0.28548,0.356877,0.72907,0.209268,0.502886,0.400417,0.743103,0.844709,0.796498,0.311895,0.701539,0.058171,0.85297,0.752575,0.0285218,0.598512,0.711723,0.964258,0.7659,0.813375,0.125864,0.445717,0.3808,0.66179,0.494965,0.780034,0.131885,0.86422,0.245086,0.480424,0.382314,0.84939,0.312218,0.166616,0.675458,0.0445576,0.753523,0.213283,0.1126,0.297855,0.709159,0.237717,0.425156,0.822407,0.102478,0.0348396,0.573118,0.0282515,0.113849,0.466767,0.809918,0.453241,0.634142,0.460867,0.956814,0.436663,0.577736,0.516238,0.915578,0.720405,0.144842,0.734788,0.796038,0.479571,0.897797,0.247665,0.754888,0.945926,0.0136793,0.12257,0.2404,0.0221082,0.991479,0.239999,0.840628,0.779738,0.373051,0.762407,0.408417,0.17075,0.0164688,0.102155,0.190458,0.314478,0.257201,0.456635,0.613422,0.462485,0.80859,0.157419,0.9029,0.886675,0.625736,0.308052,0.155029,0.92604,0.180086,0.475769,0.0591654,0.659242,0.788368,0.439999,0.999935,0.691768,0.525959,0.575236,0.470888,0.051212,0.40762,0.368576,0.637141,0.0254066,0.298654,0.0959382,0.62954,0.45588,0.702342,0.445978,0.649006,0.368432,0.165727,0.62372,0.262677,0.888653,0.92368,0.425482,0.60623,0.660963,0.490732,0.749286,0.26933,0.879478,0.066141,0.325742,0.549173,0.295838,0.398391,0.145933,0.859246,0.148867,0.774195,0.411259,0.0303987,0.124919,0.123958,0.734446,0.0582132,0.431684,0.882647,0.867826,0.0212041,0.534139,0.640685,0.951369,0.0581573,0.185781,0.700571,0.901574,0.450253,0.618896,0.141409,0.236345,0.408368,0.957423,0.98906,0.791103,0.28441,0.838276,0.419341,0.0883515,0.87272,0.092914,0.609407,0.73427,0.739343,0.631321,0.678445,0.94498,0.846304,0.762878,0.221978,0.408382,0.919529,0.373917,0.461091,0.0167081,0.125615,0.0367599,0.764749,0.344051,0.278219,0.592798,0.79813,0.00221229,0.719267,0.861238,0.850336,0.753626,0.735861,0.597358,0.957615,0.944069,0.226712,0.733137,0.302196,0.587113,0.221319,0.23031,0.309805,0.167808,0.110957,0.835719,0.14638,0.728945,0.0401127,0.173982,0.641854,0.0125465,0.307971,0.736578,0.709182,0.912844,0.723767,0.602626,0.20591,0.111425,0.868373,0.637282,0.184264,0.680017,0.279604,0.37679,0.152343,0.551292,0.763721,0.669522,0.191182,0.303468,0.131806,0.0678893,0.468608,0.982458,0.0284736,0.367894,0.48758,0.746812,0.458306,0.550603,0.0888985,0.664535,0.0683535,0.394042,0.969398,0.295713,0.150088,0.86949,0.925748,0.0618224,0.130609,0.694093,0.668937,0.53011,0.521371,0.841346,0.881787,0.751623,0.612756,0.8038,0.118361,0.168269,0.191665,0.340525,0.858856,0.782904,0.979799,0.294887,0.412196,0.50942,0.236377,0.60217,0.802493,0.21054,0.891578,0.637957,0.495984,0.832896,0.846615,0.490208,0.578676,0.742307,0.0925584,0.379645,0.939744,0.977189,0.593115,0.086996,0.115745,0.754249,0.652399,0.189425,0.921876,0.83219,0.036227,0.277895,0.70411,0.75285,0.879787,0.185756,0.116773,0.260999,0.194677,0.371802,0.322468,0.809024,0.58576,0.862648,0.932577,0.241703,0.836874,0.294339,0.473604,0.123631,0.122074,0.929459,0.949307,0.598026,0.384097,0.219354,0.309725,0.602539,0.390917,0.0588134,0.612312,0.88242,0.810695,0.782422,0.317502,0.765321,0.30179,0.193817,0.1931,0.122497,0.503913,|0.0756326,0.95095,0.501785,0.807949,0.605002,0.274852,0.789418,0.180529,0.555292,0.823958,0.274478,0.363595,0.344206,0.420654,0.58757,0.952678,0.781826,0.178214,0.15245,0.997653,0.811772,0.923479,0.337519,0.549319,0.737435,0.275003,0.42312,0.533494,0.173362,0.99575,0.724619,0.653319,0.0109405,0.0629124,0.789432,0.213664,0.214855,0.620244,0.250774,0.589242,0.863085,0.785132,0.800841,0.841099,0.905543,0.294509,0.380129,0.96038,0.449713,0.99983,0.606755,0.738544,0.0930371,0.936979,0.516663,0.450691,0.824293,0.773,0.0894786,0.900526,0.751221,0.455909,0.259816,0.450751,0.296034,0.884869,0.93206,0.21865,0.259427,0.270793,0.668483,0.116409,0.380055,0.736892,0.349081,0.70398,0.312799,0.375124,0.843999,0.735365,0.587735,0.956504,0.760804,0.852044,0.594286,0.652217,0.940545,0.360552,0.93558,0.0337371,0.943588,0.63295,0.784264,0.864474,0.922791,0.705784,0.752334,0.915357,0.670015,0.326589,0.815706,0.0936369,0.400417,0.770582,0.348427,0.648407,0.708324,0.318176,0.576438,0.866628,0.890482,0.236493,0.664455,0.273488,0.657327,0.56699,0.613321,0.00968999,0.0298062,0.237392,0.242389,0.323913,0.726025,0.320156,0.568604,0.90337,0.579831,0.134499,0.35132,0.344661,0.623412,0.990497,0.412358,0.499325,0.717306,0.379675,0.632402,0.28626,0.803927,0.198059,0.489436,0.4272,0.579775,0.48233,0.244768,0.089203,0.795487,0.426013,0.890493,0.603967,0.236078,0.444897,0.926243,0.352176,0.941339,0.38,0.839092,0.602884,0.384081,0.45208,0.500274,0.0635224,0.838852,0.0276931,0.250636,0.661258,0.768064,0.0396575,0.134919,0.733642,0.676127,0.486148,0.543003,0.342076,0.365126,0.128868,0.0940878,0.63174,0.0957291,0.305675,0.967818,0.239588,0.278607,0.0259194,0.765294,0.169773,0.716895,0.337211,0.682274,0.940065,0.234584,0.922818,0.340252,0.178163,0.815918,0.0454894,0.409092,0.00608259,0.618937,0.42156,0.831286,0.721055,0.277613,0.266957,0.954396,0.274749,0.163115,0.168006,0.375388,0.835774,0.160011,0.970395,0.257743,0.770802,0.605004,0.410445,0.68255,0.961613,0.627425,0.573257,0.27762,0.424384,0.79749,0.243987,0.508583,0.36597,0.779251,0.722542,0.173484,0.960106,0.996791,0.419864,0.898618,0.321316,0.54052,0.779667,0.653776,0.00382853,0.40943,0.880102,0.882747,0.63971,0.954741,0.380006,0.484488,0.956428,0.751535,0.181532,0.216572,0.0159217,0.463475,0.289992,0.033326,0.869527,0.993467,0.626306,0.479985,0.723146,0.660796,0.139739,0.193941,0.927978,0.445742,0.0856235,0.309457,0.327389,0.180521,0.0476568,0.451138,0.437301,0.359073,0.659263,0.54016,0.47849,0.526348,0.660182,0.670043,0.911679,0.0192297,0.230749,0.985755,0.344837,0.61349,0.295774,0.0834004,0.39864,0.378058,0.382116,0.310461,0.376099,0.241311,0.0274589,0.699458,0.152463,0.30857,0.591776,0.229551,0.0165691,0.744904,0.253958,0.531142,0.0962006,0.048791,0.883716,0.825656,0.406524,0.869319,0.821417,0.670766,0.529579,0.177641,0.394949,0.670344,0.397275,0.392403,0.075234,0.878401,0.536802,0.290832,0.15557,0.101528,0.886508,0.76972,0.968017,0.665197,0.0829599,0.549269,0.739913,0.0526363,0.362262,0.137923,0.171661,0.667554,0.241638,0.441476,0.045638,0.0205454,0.231551,0.37097,0.250508,0.48021,0.833485,0.240514,0.71164,0.537591,0.994533,0.134334,0.981477,0.24884,0.623517,0.0381474,0.283127,0.417969,0.592592,0.114914,0.355668,0.0178092,0.582242,0.110408,0.903187,0.641208,0.960208,0.2221,0.51985,0.720352,0.0739799,0.251056,0.912846,0.0461354,0.653969,0.681124,0.639218,0.4026,0.818561,0.158595,0.122964,0.11244,0.292744,0.261116,0.522735,0.955671,0.242077,0.635517,0.905918,0.92062,0.293972,0.716458,0.855831,0.972864,0.402263,0.635756,0.839883,0.291604,0.831129,0.973975,0.945431,0.748067,0.352594,0.0940335,0.881982,0.545618,0.874711,0.502578,0.117889,0.825306,0.00256652,0.640312,0.937998,0.912522,0.601918,0.314081,0.523567,0.195129,0.162893,0.341893,0.412221,0.918437,0.32455,0.200029,0.871594,0.692849,0.320254,0.904469,0.906919,0.477964,0.0830792,0.405209,0.683008,0.780921,0.264396,0.984567,0.377522,0.285242,0.0179452,0.425841,0.287188,0.0167246,0.909503,0.744947,0.755746,0.89286,0.0606574,0.709716,0.400155,0.969303,0.0521988,0.695661,0.361687,0.368316,0.430117,0.208677,0.0857948,0.542309,0.916519,0.227895,0.936803,0.25666,0.328122,0.0481376,0.0619993,0.601497,0.973484,0.530803,0.531755,0.551791,0.810669,0.796341,0.184708,0.992401,0.487838,0.306798,0.310852,0.437428,0.928799,0.139902,0.296536,0.11298,0.704448,0.508889,0.548851,0.84481,0.86475,0.776951,0.824229,0.0660986,0.783258,0.488311,0.140997,0.949346,0.378198,0.117332,0.12627,0.390236,0.347617,0.752236,0.869631,0.815089,0.655539,0.838073,0.521636,0.33615,0.123946,0.698935,0.334876,0.969303,0.227586,0.727218,0.921086,0.903576,0.0495196,0.916933,0.864822,0.139834,0.394159,0.953835,0.527902,0.442663,0.0996909,0.720497,0.0470869,0.0752536,0.429534,0.813235,0.117704,0.430705,0.935911,0.0679293,0.373857,0.544274,0.629244,0.76761,0.119922,0.582442,0.149434,0.445163,0.867119,0.547602,0.0341256,0.303666,0.729081,0.143047,0.853041,0.186208,0.945453,0.820239,0.834958,0.768544,0.523078,0.884277,0.540464,0.972519,0.199119,0.682473,0.863149,0.521731,0.5536,0.540838,0.0191389,0.05475,0.345788,0.605558,0.962672,0.241472,0.658998,0.592066,0.102775,0.542017,0.8132,0.841596,0.0352306,0.576532,0.894426,0.365894,0.155956,0.25513,0.0324715,0.104107,0.347481,0.709287,0.810142,0.461229,0.333837,0.389318,0.373894,0.125004,0.811279,0.930551,0.377738,0.34072,0.900851,0.888535,0.25253,0.984138,0.0247875,0.671598,0.507842,0.174953,0.564115,0.283893,0.458084,0.749504,0.421235,0.00911969,0.92393,0.48697,0.661648,0.751493,0.538204,0.0737627,0.754234,0.0243632,0.682289,0.236199,0.925017,0.0256836,0.183568,0.110075,0.757545,0.49561,0.372989,0.187922,0.159351,0.739279,0.759118,0.455905,0.633666,0.962965,0.585396,0.401377,0.193261,0.810935,0.484232,0.801295,0.989188,0.100316,0.66169,0.80265,0.184683,0.81023,0.253224,0.206572,0.925194,0.478565,0.381623,0.301235,0.783888,0.585351,0.121256,0.124722,0.571898,0.446878,0.251148,0.200461,0.672417,0.589902,0.373047,0.778877,0.804593,0.317954,0.209474,0.466043,0.520655,0.480608,0.597582,0.419263,0.634981,0.466132,0.194667,0.821194,0.336235,0.897546,0.939404,0.981161,0.589496,0.725221,0.959177,0.980362,0.673658,0.179918,0.594108,0.168069,0.933495,0.10493,0.390083,0.167293,0.365873,0.203309,0.659997,0.300537,0.674892,0.778152,0.618949,0.435867,0.0690067,0.980363,0.043157,0.937711,0.421735,0.858275,0.714719,0.907239,0.0149049,0.636432,0.654769,0.291719,0.938846,0.545635,0.848913,0.155607,0.60037,0.127862,0.317573,0.32453,0.803689,0.570921,0.349084,0.527667,0.407535,0.209319,0.771894,0.125613,0.769504,0.641407,0.873147,0.0497653,0.289384,0.136463,0.478284,0.475613,0.344453,0.732153,0.315133,0.904703,0.915025,0.392686,0.600898,0.837153,0.35265,0.863632,0.524339,0.289181,0.463858,0.834489,0.253525,0.579644,0.590579,0.74415,0.0669775,0.14054,0.218363,0.450131,0.986034,0.506245,0.591746,0.0757338,0.747866,0.165858,0.205525,0.243531,0.532669,0.00150537,0.97067,0.306894,0.813237,0.293843,0.618476,0.333596,0.33634,0.198781,0.691605,0.500798,0.766169,0.985408,0.269035,0.670148,0.579059,0.68444,0.241468,0.870736,0.512328,0.500899,0.201265,0.27645,0.192251,0.69997,0.0451869,0.585587,0.35929,0.273588,0.382751,0.801366,0.577006,0.812022,0.923455,0.553178,0.0375239,0.510875,0.00378954,0.7426,0.394231,0.265326,0.241281,0.139628,0.639222,0.421097,0.586037,0.873662,0.37132,0.39597,0.726012,0.883843,0.186294,0.588427,0.832227,0.0319209,0.124636,0.635912,0.467117,0.265004,0.554412,0.504581,0.00620157,0.92802,0.560722,0.840254,0.173431,0.187015,0.171626,0.555342,0.817518,0.520128,0.642356,0.590981,0.242132,0.556532,0.0870064,0.427032,0.753156,0.56034,0.221749,0.538152,0.616819,0.960928,0.180679,0.407221,0.287225,0.239065,0.655021,0.747934,0.196849,0.117296,0.165508,0.458649,0.743232,0.475229,0.927255,0.905136,0.529973,0.587402,0.95498,0.572054,0.881553,0.858744,0.783292,0.101672,0.32785,0.209658,0.285033,0.613001,0.428296,0.0668947,0.694349,0.72771,0.288609,0.0318785,0.136857,0.102937,0.838275,0.356993,0.00560778,0.914492,0.0381325,0.582458,0.494537,0.808767,0.925108,0.486695,0.159867,0.221745,0.827721,0.341406,0.272749,0.119532,0.227493,0.374642,0.412648,0.612301,0.884173,0.579103,0.0343392,0.0426657,0.588679,0.245082,0.696781,0.119581,0.81191,0.550655,0.777153,0.0139517,0.297542,0.503464,0.508381,0.0301349,0.937075,0.948555,0.481771,0.640639,0.698456,0.554076,0.789991,0.43947,0.189773,0.1818,0.0849679,0.00234532,0.208034,0.94431,0.322908,0.212231,0.95798,0.730308,0.543099,0.478111,0.928212,0.285364,0.981767,0.861474,0.101536,0.20642,0.683882,0.33706,0.0664411,0.622537,0.0328609,0.411213,0.899911,0.728904,0.195825,0.0545571,0.91904,0.379292,0.0385994,0.311787,0.662516,0.802037,0.297901,0.258832,0.18889,0.141557,0.343533,0.0711035,0.0612856,0.752079,0.227795,0.370272,0.213256,0.0963998,0.792216,0.361961,0.086315,0.680856,0.613272,0.21165,0.106414,0.457094,0.455085,0.196145,0.0382355,0.18638,0.672293,0.382412,0.513441,0.271883,0.383395,0.251229,0.97747,0.253005,0.241064,0.552076,0.816284,0.905686,0.13268,0.130072,0.829193,0.786558,0.482523,0.155098,0.47525,0.535294,0.316733,|0.444593,0.301254,0.372038,0.0699954,0.896856,0.667246,0.0640862,0.899331,0.923404,0.832373,0.166177,0.371619,0.799043,0.0668668,0.362432,0.053207,0.766527,0.235926,0.352069,0.537897,0.547168,0.895481,0.763389,0.410621,0.84692,0.372868,0.545073,0.45276,0.498508,0.400212,0.122585,0.682614,0.176624,0.616953,0.61392,0.418625,0.0658886,0.986749,0.492748,0.813226,0.393758,0.515159,0.652197,0.540934,0.192345,0.160998,0.514911,0.0909939,0.0953128,0.442251,0.160794,0.45156,0.706833,0.217549,0.354386,0.740661,0.196189,0.917457,0.0200029,0.102006,0.892028,0.24013,0.646981,0.918161,0.673676,0.242139,0.26588,0.508344,0.438387,0.898437,0.389466,0.556284,0.489911,0.0143942,0.879247,0.871781,0.0960163,0.137374,0.841032,0.226834,0.458961,0.885145,0.795546,0.142885,0.743978,0.843334,0.237791,0.0784072,0.933502,0.410517,0.843491,0.832347,0.287352,0.342732,0.262071,0.532566,0.467909,0.0110888,0.469734,0.159375,0.868276,0.431375,0.432169,0.951102,0.501362,0.287128,0.986601,0.287205,0.151865,0.707298,0.217753,0.434344,0.690351,0.208897,0.201687,0.573977,0.554767,0.710588,0.449021,0.83909,0.923239,0.698292,0.306918,0.974431,0.755631,0.518188,0.755101,0.327227,0.744322,0.0500961,0.684878,0.754094,0.602251,0.261784,0.585674,0.223821,0.10971,0.382798,0.320934,0.91069,0.102381,0.0405247,0.100382,0.491836,0.641399,0.776917,0.105402,0.634176,0.612346,0.208691,0.175496,0.941413,0.868701,0.634967,0.0652255,0.371412,0.0292236,0.0816318,0.0219663,0.463036,0.104623,0.893598,0.854858,0.953918,0.466564,0.0913699,0.308852,0.047884,0.673774,0.732934,0.909741,0.190775,0.756751,0.0384745,0.702938,0.799157,0.990004,0.498592,0.271318,0.616854,0.276667,0.506826,0.33682,0.768185,0.661734,0.744548,0.791314,0.831866,0.171187,0.332442,0.0235021,0.474622,0.478189,0.0471565,0.603877,0.745482,0.782809,0.305174,0.162769,0.509123,0.770188,0.755498,0.675267,0.104561,0.45269,0.0561681,0.291139,0.067885,0.971765,0.937321,0.814852,0.401472,0.864511,0.250419,0.839582,0.0946091,0.997166,0.912706,0.51897,0.509959,0.166088,0.88992,0.702205,0.854852,0.0674379,0.841368,0.539306,0.624261,0.142619,0.465637,0.683366,0.124499,0.924735,0.511499,0.324418,0.918798,0.149333,0.899222,0.648602,0.0688276,0.996706,0.152402,0.68812,0.24789,0.407423,0.0508361,0.338717,0.039001,0.351475,0.347855,0.521382,0.0728435,0.690417,0.290946,0.735573,0.369866,0.873047,0.80868,0.687265,0.616437,0.184662,0.714195,0.467035,0.636825,0.0336335,0.855366,0.517879,0.469923,0.436392,0.0687181,0.0407098,0.400945,0.298677,0.961659,0.119207,0.111769,0.283548,0.561516,0.61437,0.563048,0.288774,0.788529,0.437717,0.186958,0.721501,0.186352,0.108571,0.846654,0.100835,0.710316,0.555941,0.259174,0.382663,0.327555,0.623292,0.792156,0.473994,0.480671,0.632192,0.980866,0.733194,0.344867,0.143383,0.693723,0.35619,0.361588,0.140874,0.270094,0.300044,0.800171,0.158308,0.909058,0.0999455,0.913334,0.914931,0.0198711,0.433984,0.172762,0.719117,0.509478,0.119741,0.940189,0.491252,0.412177,0.31774,0.447822,0.568466,0.508137,0.370906,0.113424,0.781375,0.902887,0.372318,0.284331,0.13701,0.111362,0.916319,0.103803,0.512375,0.780596,0.322649,0.549165,0.297527,0.00819492,0.196462,0.283603,0.389915,0.860343,0.287521,0.907246,0.933357,0.505309,0.0799481,0.958428,0.695835,0.735462,0.430086,0.901643,0.99079,0.398546,0.103143,0.850724,0.637775,0.138066,0.858485,0.827341,0.207165,0.668758,0.914537,0.822683,0.958695,0.400441,0.608054,0.934847,0.0522472,0.668403,0.853778,0.183692,0.134008,0.0471259,0.330699,0.332753,0.654216,0.208103,0.457297,0.336096,0.858164,0.874988,0.996573,0.422052,0.948871,0.426745,0.403933,0.795453,0.700639,0.7421,0.773947,0.621144,0.316056,0.35681,0.874818,0.434357,0.518138,0.266001,0.465852,0.28043,0.357005,0.0712295,0.881684,0.187591,0.58663,0.568357,0.687024,0.173714,0.911904,0.983016,0.244451,0.634439,0.883597,0.173015,0.218398,0.202953,0.72134,0.723864,0.470853,0.348541,0.128247,0.555973,0.926277,0.892997,0.799189,0.407747,0.871506,0.195618,0.521758,0.796093,0.703783,0.798712,0.7211,0.975463,0.831859,0.270723,0.143178,0.190904,0.912825,0.634641,0.827055,0.611873,0.480274,0.854431,0.187479,0.173932,0.17255,0.699192,0.0904392,0.377041,0.630306,0.539495,0.736775,0.0516532,0.365694,0.246173,0.298275,0.571157,0.616376,0.174873,0.19338,0.174883,0.649025,0.763988,0.340486,0.140737,0.705518,0.660403,0.284803,0.722056,0.538575,0.348447,0.388295,0.370292,0.960118,0.619555,0.964034,0.0189113,0.766069,0.407805,0.0380046,0.38659,0.534917,0.326198,0.0692139,0.812859,0.020718,0.661498,0.971207,0.697453,0.93926,0.894611,0.624563,0.206276,0.897487,0.782914,0.825655,0.102821,0.30274,0.121965,0.136786,0.897102,0.240238,0.752569,0.844653,0.832267,0.544532,0.746764,0.88366,0.427228,0.926205,0.618968,0.518899,0.111388,0.408218,0.87077,0.748313,0.919098,0.082635,0.104824,0.970705,0.637857,0.124879,0.143818,0.0230832,0.00748342,0.511616,0.574061,0.733989,0.608575,0.674153,0.817241,0.577454,0.182426,0.136862,0.815206,0.955375,0.449631,0.798717,0.263098,0.917085,0.124033,0.279499,0.585981,0.450483,0.284675,0.995713,0.340757,0.915879,0.400213,0.160085,0.933375,0.0331613,0.609429,0.847048,0.431059,0.096137,0.833369,0.987864,0.905126,0.49274,0.670467,0.0423658,0.228719,0.656191,0.674239,0.13184,0.37357,0.194618,0.338161,0.326819,0.977837,0.882639,0.100364,0.800056,0.869775,0.36901,0.315028,0.419612,0.94367,0.206638,0.421851,0.992429,0.286322,0.26498,0.166658,0.117919,0.109322,0.972554,0.501162,0.814686,0.855649,0.863897,0.816066,0.454807,0.26158,0.0695717,0.174203,0.436679,0.830717,0.232426,0.396191,0.768571,0.791338,0.530779,0.896637,0.6142,0.870377,0.469512,0.000155389,0.727405,0.903972,0.510293,0.864868,0.73829,0.72025,0.432159,0.778841,0.19923,0.712596,0.040049,0.213718,0.352397,0.177269,0.267682,0.384543,0.640834,0.794544,0.668067,0.211835,0.866502,0.156006,0.64752,0.974777,0.343249,0.617745,0.230512,0.327397,0.415418,0.450018,0.251703,0.180734,0.21864,0.0605919,0.779575,0.231828,0.887506,0.241968,0.608591,0.135787,0.180822,0.652681,0.668017,0.199161,0.358654,0.295957,0.793555,0.341776,0.176011,0.0739197,0.440659,0.611618,0.710592,0.351182,0.137204,0.454497,0.311815,0.04983,0.535602,0.29066,0.177685,0.255849,0.858476,0.450838,0.411524,0.669141,0.744925,0.289972,0.966928,0.965963,0.395976,0.933815,0.361152,0.214879,0.843935,0.815654,0.734312,0.375099,0.173952,0.719992,0.0477545,0.346154,0.653669,0.993722,0.940188,0.874427,0.782096,0.731683,0.577704,0.243957,0.886031,0.0218948,0.23408,0.069043,0.351035,0.950019,0.0672476,0.541434,0.648555,0.341636,0.24693,0.00829947,0.591367,0.0404499,0.775992,0.647624,0.991842,0.916566,0.62397,0.370865,0.0648366,0.697176,0.994143,0.739129,0.902266,0.835992,0.91451,0.52548,0.412087,0.559205,0.167343,0.758338,0.879062,0.908854,0.163352,0.540019,0.350865,0.812737,0.130987,0.586101,0.575316,0.600624,0.696539,0.818677,0.758416,0.00216115,0.142326,0.277668,0.86072,0.513345,0.666063,0.0820275,0.204621,0.903486,0.0373685,0.748807,0.417513,0.886741,0.355311,0.4378,0.103345,0.432201,0.184486,0.58724,0.140424,0.13773,0.835554,0.586473,0.920788,0.101427,0.405289,0.544542,0.65223,0.710621,0.540262,0.0340629,0.539049,0.436326,0.537064,0.292264,0.414944,0.42873,0.20628,0.719769,0.109172,0.390014,0.395318,0.266251,0.194661,0.157992,0.99883,0.112924,0.678172,0.21269,0.324308,0.0208195,0.471729,0.323672,0.511607,0.72362,0.777635,0.97746,0.543782,0.919116,0.950803,0.526833,0.697278,0.266102,0.580596,0.309248,0.287581,0.225691,0.776199,0.977195,0.599029,0.952796,0.344853,0.70148,0.00150108,0.045006,0.112787,0.834158,0.822731,0.940011,0.305555,0.137055,0.636612,0.0376315,0.26912,0.576957,0.00940114,0.143419,0.93882,0.399681,0.0977935,0.24457,0.344987,0.786394,0.292642,0.4282,0.483871,0.435528,0.646798,0.308166,0.19265,0.524095,0.84429,0.341121,0.889851,0.0904804,0.679853,0.469437,0.538315,0.975953,0.176825,0.833456,0.836988,0.752449,0.107253,0.407912,0.881988,0.026619,0.0439585,0.269498,0.708446,0.650681,0.77278,0.0805359,0.164051,0.264045,0.760992,0.123492,0.979477,0.692995,0.0744029,0.650006,0.925862,0.844542,0.86456,0.821292,0.707164,0.403818,0.735227,0.801542,0.590105,0.259512,0.815161,0.322531,0.825337,0.856921,0.668369,0.26543,0.221091,0.0826262,0.696773,0.338114,0.945236,0.632703,0.414199,0.00348002,0.883652,0.332998,0.456789,0.294153,0.820354,0.648847,0.749901,0.725525,0.939455,0.287739,0.00814897,0.944955,0.391024,0.190485,0.964013,0.463056,0.789393,0.699822,0.534433,0.373962,0.591342,0.679678,0.566486,0.765875,0.506066,0.440041,0.944244,0.211563,0.962583,0.599254,0.285834,0.299089,0.712718,0.574437,0.233676,0.969511,0.328299,0.190552,0.113451,0.795869,0.798959,0.0247253,0.465578,0.683533,0.574395,0.415815,0.85363,0.371082,0.974144,0.648678,0.516458,0.536891,0.73473,0.985176,0.108793,0.773312,0.598372,0.427764,0.655573,0.428991,0.899621,0.592417,0.508047,0.204649,0.964014,0.265257,0.0281435,0.506795,0.593014,0.185956,0.687191,0.72406,0.7285,0.119282,0.48225,0.977846,0.695925,0.444739,0.55514,0.584095,0.506525,0.424441,0.703053,0.68075,0.435477,0.385422,0.616396,0.0480453,0.91179,0.831427,0.297757,0.857333,0.935756,0.997134,|0.370614,0.468485,0.396529,0.26658,0.673422,0.801831,0.776963,0.0265747,0.311247,0.161132,0.313006,0.610067,0.982691,0.418106,0.567303,0.753011,0.196083,0.960468,0.184756,0.732479,0.0121768,0.0126963,0.028684,0.577514,0.618147,0.405703,0.982421,0.88474,0.846217,0.088057,0.442459,0.221645,0.410681,0.466464,0.973813,0.994991,0.464827,0.495928,0.832845,0.932996,0.266769,0.286182,0.0718278,0.801461,0.42564,0.0266578,0.205066,0.90304,0.19941,0.0179296,0.0690172,0.215856,0.87803,0.206575,0.648266,0.892175,0.376406,0.421358,0.136377,0.362999,0.657255,0.472227,0.685393,0.430652,0.63947,0.70227,0.558852,0.610159,0.413726,0.104072,0.0144517,0.532894,0.249963,0.778737,0.523624,0.088737,0.896373,0.0175487,0.539358,0.627893,0.542728,0.493995,0.345535,0.604134,0.669442,0.756899,0.646815,0.813661,0.859647,0.552141,0.782266,0.350096,0.132018,0.0423909,0.0404066,0.586865,0.85577,0.165727,0.320758,0.2496,0.66511,0.440787,0.119504,0.681005,0.0148964,0.431564,0.70512,0.920277,0.504663,0.481091,0.707948,0.0488709,0.455084,0.941817,0.558977,0.437521,0.72021,0.199032,0.803856,0.866539,0.58885,0.677194,0.483327,0.819813,0.199408,0.555499,0.625875,0.0680403,0.0164942,0.518528,0.121096,0.476486,0.962319,0.314781,0.565854,0.451318,0.667714,0.571956,0.379713,0.482206,0.0398815,0.291886,0.505477,0.281383,0.631443,0.686565,0.710646,0.0961973,0.855978,0.502598,0.09337,0.36612,0.604395,0.244961,0.109387,0.310417,0.40602,0.653234,0.976014,0.218266,0.78436,0.895417,0.0862006,0.902286,0.819082,0.821493,0.375692,0.923569,0.189746,0.872097,0.730031,0.821951,0.00656134,0.513996,0.814477,0.737694,0.640908,0.294469,0.474597,0.771281,0.739933,0.910389,0.809156,0.458186,0.606173,0.374557,0.0463365,0.204275,0.474584,0.788779,0.640205,0.407083,0.578707,0.465009,0.740366,0.949943,0.569244,0.234685,0.883024,0.990097,0.889726,0.820689,0.412996,0.36735,0.998918,0.40519,0.0476556,0.0476059,0.779859,0.562464,0.975956,0.249886,0.324562,0.72385,0.161591,0.412037,0.190625,0.37704,0.682005,0.198336,0.141836,0.946186,0.345917,0.215151,0.220134,0.543301,0.221752,0.774027,0.935605,0.704836,0.179582,0.977857,0.413857,0.340261,0.437236,0.476449,0.584688,0.0182773,0.381789,0.615694,0.802665,0.635051,0.771982,0.710507,0.914759,0.0483021,0.00156909,0.606467,0.625592,0.515994,0.319677,0.847505,0.327928,0.0323106,0.833081,0.166342,0.840281,0.705983,0.514233,0.546043,0.0390738,0.846467,0.344617,0.838632,0.714623,0.380146,0.3591,0.85258,0.926988,0.76337,0.96415,0.478355,0.472921,0.900934,0.624119,0.675622,0.175056,0.967659,0.597803,0.460389,0.473805,0.757025,0.691837,0.0740287,0.520562,0.38467,0.984379,0.892694,0.242431,0.729296,0.0793242,0.36552,0.978772,0.0584756,0.417907,0.230342,0.693779,0.016082,0.234631,0.970253,0.409516,0.512751,0.0232115,0.873128,0.819759,0.0991593,0.574246,0.306252,0.148101,0.653046,0.999982,0.441025,0.236503,0.622038,0.90724,0.85833,0.782944,0.966882,0.889756,0.412357,0.480069,0.797811,0.697589,0.461171,0.324947,0.0397304,0.600612,0.521289,0.129822,0.535235,0.598066,0.645119,0.981087,0.407687,0.068644,0.62864,0.0655438,0.952186,0.625404,0.303336,0.824228,0.15325,0.549867,0.421032,0.180286,0.189923,0.108852,0.940347,0.935433,0.782308,0.464237,0.412473,0.796252,0.264243,0.649536,0.912179,0.0406827,0.0971028,0.366454,0.945346,0.226779,0.490618,0.344902,0.937747,0.415546,0.302983,0.811326,0.498974,0.626159,0.162689,0.98485,0.868884,0.683575,0.201286,0.757783,0.604754,0.401823,0.467809,0.718273,0.171296,0.646026,0.24835,0.127959,0.928593,0.900199,0.645545,0.212019,0.563549,0.893122,0.0658676,0.558689,0.574165,0.817462,0.521678,0.533916,0.852057,0.600022,0.75414,0.449301,0.314178,0.555992,0.225726,0.935873,0.733468,0.227609,0.538934,0.694013,0.753158,0.544722,0.694262,0.203026,0.189468,0.325604,0.36413,0.164807,0.568929,0.750772,0.501556,0.469942,0.496216,0.95057,0.843775,0.0668068,0.615096,0.612907,0.157309,0.401792,0.722802,0.883859,0.905203,0.0953997,0.772147,0.0861627,0.126548,0.0101432,0.146442,0.156545,0.338837,0.762881,0.447251,0.307826,0.951532,0.698429,0.34069,0.785346,0.71393,0.999419,0.606148,0.56798,0.617265,0.222588,0.0494692,0.689784,0.90011,0.503188,0.378224,0.781167,0.573095,0.500758,0.801469,0.101891,0.456364,0.275016,0.80231,0.844168,0.218725,0.867593,0.803674,0.394939,0.291454,0.127733,0.559016,0.243824,0.151687,0.193004,0.436981,0.027488,0.452299,0.203708,0.426917,0.170237,0.676787,0.586678,0.781,0.0023939,0.909062,0.239037,0.475971,0.145016,0.513876,0.750502,0.237252,0.110885,0.248578,0.153343,0.0857591,0.608551,0.976495,0.565694,0.0861687,0.272186,0.414065,0.737987,0.0102211,0.76713,0.264021,0.612318,0.588989,0.419041,0.542806,0.0182889,0.816254,0.770367,0.258389,0.640905,0.884632,0.456482,0.376953,0.806139,0.794879,0.497703,0.966759,0.485255,0.0534908,0.516436,0.514671,0.508253,0.729856,0.752434,0.054967,0.0330788,0.298563,0.45196,0.136639,0.281753,0.551233,0.387522,0.52767,0.2476,0.845758,0.442344,0.203717,0.262268,0.524257,0.126939,0.149787,0.660192,0.653543,0.373033,0.721808,0.855711,0.330546,0.191317,0.706482,0.472721,0.442207,0.545907,0.0610926,0.489041,0.762255,0.137721,0.922346,0.236964,0.296531,0.448883,0.415805,0.914214,0.464173,0.304772,0.351848,0.986743,0.91706,0.711014,0.410345,0.588418,0.437227,0.905981,0.34475,0.152441,0.777399,0.189049,0.117955,0.216355,0.950516,0.927178,0.575869,0.902803,0.0478049,0.0846711,0.677493,0.41486,0.594095,0.0212954,0.958944,0.45738,0.939706,0.400758,0.904444,0.106785,0.0205985,0.298838,0.0633091,0.53005,0.486144,0.620934,0.774544,0.240971,0.828611,0.134407,0.902808,0.547651,0.0612893,0.603417,0.0068531,0.0943162,0.973139,0.491159,0.507135,0.29897,0.704623,0.0798091,0.927161,0.456462,0.663369,0.438093,0.0608393,0.0165175,0.966358,0.706191,0.0508181,0.925878,0.536468,0.436595,0.305674,0.688257,0.334575,0.56481,0.619476,0.169438,0.179615,0.51424,0.781996,0.72894,0.849183,0.894791,0.567447,0.340504,0.0314956,0.141319,0.27347,0.174641,0.708059,0.235536,0.286743,0.421926,0.127104,0.898736,0.687942,0.500358,0.632578,0.768061,0.450305,0.571718,0.364282,0.224312,0.464131,0.820402,0.649907,0.268735,0.473717,0.300157,0.959724,0.913221,0.154977,0.915602,0.619192,0.340092,0.376495,0.0218695,0.408543,0.234472,0.684816,0.46353,0.725545,0.401498,0.072755,0.724254,0.0594078,0.689864,0.928694,0.597444,0.525656,0.573483,0.709146,0.141882,0.164824,0.55069,0.519326,0.776203,0.360138,0.0965279,0.269371,0.721524,0.878703,0.388689,0.575784,0.620351,0.0291532,0.597776,0.42606,0.00987625,0.341831,0.673438,0.563589,0.517478,0.28704,0.556077,0.606101,0.407392,0.0163088,0.924771,0.441132,0.130979,0.507423,0.196629,0.966529,0.738497,0.735821,0.41962,0.3727,0.465356,0.167746,0.254668,0.436121,0.591447,0.694886,0.932902,0.411135,0.211499,0.107332,0.92325,0.45556,0.273965,0.880216,0.201173,0.604871,0.307794,0.7749,0.816127,0.100038,0.910933,0.661767,0.59183,0.386817,0.198409,0.193053,0.71317,0.773992,0.598906,0.125813,0.557336,0.766406,0.118504,0.472673,0.703977,0.350821,0.12394,0.386927,0.651523,0.540894,0.738085,0.138893,0.611233,0.125361,0.247935,0.383356,0.0807006,0.80291,0.435228,0.562977,0.444127,0.718229,0.83221,0.934849,0.386159,0.397205,0.17857,0.0980881,0.649159,0.155678,0.547272,0.569369,0.440304,0.945934,0.569163,0.931282,0.892616,0.283379,0.852344,0.356296,0.291812,0.514773,0.524985,0.889143,0.359335,0.490252,0.473698,0.69114,0.822113,0.862151,0.546728,0.675393,0.229649,0.645014,0.485641,0.228593,0.212344,0.904657,0.725448,0.898288,0.579775,0.835923,0.959615,0.365238,0.282289,0.209479,0.29928,0.0527245,0.497972,0.932459,0.374222,0.519186,0.562311,0.850698,0.942826,0.580337,0.848819,0.130655,0.643146,0.870609,0.479799,0.302458,0.550062,0.536264,0.62361,0.736947,0.479993,0.375469,0.627558,0.0640276,0.0694761,0.605737,0.682337,0.215833,0.167213,0.118922,0.580099,0.115028,0.146725,0.898106,0.398572,0.742891,0.128553,0.182412,0.854751,0.795799,0.165807,0.490302,0.143539,0.989553,0.262695,0.465694,0.686514,0.231671,0.906683,0.0384845,0.0255196,0.821412,0.371964,0.918659,0.335516,0.218844,0.132831,0.437737,0.473773,0.858607,0.316489,0.61933,0.371043,0.949618,0.843771,0.19769,0.58067,0.556664,0.080273,0.234454,0.315181,0.87096,0.758666,0.0816521,0.212975,0.466336,0.40818,0.146055,0.0223149,0.764509,0.478798,0.460519,0.959333,0.27584,0.940625,0.75954,0.0624826,0.72365,0.167057,0.920452,0.573246,0.663913,0.517749,0.716042,0.816187,0.506754,0.259514,0.985324,0.209989,0.561436,0.715574,0.828605,0.249925,0.701264,0.203037,0.228208,0.887648,0.984325,0.28887,0.649693,0.921834,0.906101,0.337452,0.781022,0.66061,0.96958,0.997126,0.759814,0.5284,0.640672,0.324588,0.853698,0.00795031,0.575847,0.638531,0.664897,0.373844,0.769314,0.0216891,0.763476,0.985796,0.520257,0.78096,0.680678,0.743277,0.403194,0.921573,0.724195,0.00190103,0.401915,0.96088,0.299598,0.82361,0.472586,0.0197698,0.32641,0.855788,0.242009,0.0916758,0.783462,0.150081,0.0942535,0.105149,0.000573337,0.129341,0.53704,0.357603,0.389802,0.0521948,0.85991,0.215256,0.828679,0.605788,0.997115,0.776464,0.110086,0.603462,0.127072,0.593976,0.369859,0.951995,0.948615,0.618163,0.488706,|0.398182,0.0766146,0.012723,0.626046,0.341215,0.183268,0.125612,0.285319,0.380611,0.952749,0.837286,0.471585,0.245671,0.269497,0.85817,0.0835018,0.997066,0.945513,0.433847,0.145386,0.10657,0.311276,0.757463,0.19713,0.00530553,0.354084,0.857268,0.749325,0.278624,0.710941,0.285784,0.708473,0.293999,0.92223,0.504111,0.0236526,0.444116,0.515763,0.494978,0.529341,0.574078,0.672415,0.455166,0.259523,0.42658,0.579987,0.216898,0.0579171,0.511054,0.660418,0.799489,0.566311,0.864071,0.224815,0.643025,0.307555,0.107031,0.0539588,0.289836,0.732197,0.0870153,0.634482,0.781021,0.150797,0.239056,0.562401,0.783265,0.969745,0.182001,0.400724,0.145449,0.799029,0.0275546,0.276345,0.817349,0.00094825,0.431754,0.832947,0.997083,0.789784,0.0930158,0.668875,0.712949,0.355328,0.195683,0.353335,0.731304,0.896852,0.214265,0.596888,0.00166589,0.599072,0.748623,0.1849,0.685933,0.0407292,0.500856,0.127699,0.393066,0.280575,0.132122,0.252777,0.987955,0.0571593,0.203848,0.502615,0.367709,0.747238,0.524704,0.46056,0.52785,0.953968,0.193675,0.909829,0.397783,0.827313,0.842803,0.263028,0.927547,0.977405,0.895303,0.355255,0.250563,0.115244,0.686551,0.382255,0.586738,0.978592,0.680255,0.240664,0.928361,0.696374,0.342025,0.661501,0.053732,0.5524,0.0737795,0.506525,0.37612,0.977782,0.901027,0.41877,0.66739,0.131372,0.528539,0.183382,0.0983617,0.970034,0.228533,0.572547,0.256462,0.993275,0.402985,0.0923452,0.349122,0.651533,0.664592,0.372541,0.229929,0.960253,0.936644,0.678092,0.368862,0.511895,0.964303,0.890565,0.42691,0.526094,0.507753,0.647615,0.541635,0.846637,0.0315294,0.0359653,0.438003,0.258646,0.846957,0.288126,0.539871,0.699944,0.0239201,0.423505,0.685199,0.796374,0.875492,0.547803,0.911204,0.501712,0.412143,0.644923,0.355995,0.130058,0.179251,0.990086,0.663997,0.970428,0.521766,0.163749,0.320867,0.770925,0.483199,0.360175,0.622388,0.222139,0.608718,0.688898,0.21839,0.85788,0.514827,0.712044,0.0618363,0.346056,0.428865,0.712718,0.58119,0.0622572,0.55884,0.534035,0.597862,0.501903,0.568105,0.652907,0.0644249,0.920221,0.551085,0.280382,0.138779,0.613882,0.0442761,0.131328,0.366626,0.822322,0.0838333,0.809836,0.960124,0.138849,0.902556,0.977613,0.0344636,0.690934,0.280429,0.172249,0.0383081,0.176401,0.932558,0.710942,0.436898,0.940529,0.139573,0.73318,0.211658,0.847384,0.839357,0.056456,0.240819,0.199007,0.492064,0.807362,0.341978,0.612528,0.525226,0.0248136,0.320414,0.0722362,0.136053,0.0180537,0.357409,0.123497,0.90786,0.446517,0.530027,0.665535,0.882843,0.761464,0.92651,0.580084,0.789866,0.925118,0.0504323,0.239043,0.351596,0.361131,0.193995,0.768867,0.454135,0.770391,0.84422,0.754252,0.211312,0.120468,0.404257,0.830503,0.861116,0.77263,0.192156,0.680573,0.708269,0.175636,0.364848,0.863512,0.170357,0.582197,0.875287,0.548811,0.853241,0.821727,0.351258,0.865813,0.934757,0.0907292,0.302994,0.927701,0.999251,0.262838,0.0450808,0.349471,0.143611,0.955877,0.630891,0.120864,0.911467,0.389806,0.950246,0.870684,0.824367,0.660347,0.358492,0.0227903,0.829619,0.317148,0.210594,0.633174,0.81414,0.532508,0.0100837,0.935835,0.00628352,0.930274,0.0547292,0.155282,0.00878692,0.329573,0.803415,0.0425617,0.402446,0.228842,0.419261,0.888837,0.78284,0.529784,0.992665,0.135421,0.250729,0.124685,0.767248,0.429287,0.877825,0.0646703,0.541457,0.656743,0.270964,0.93623,0.888608,0.768073,0.518025,0.671488,0.658616,0.320004,0.213607,0.00515616,0.709421,0.169115,0.236181,0.757408,0.324121,0.608896,0.127677,0.977652,0.452219,0.42306,0.713825,0.0962606,0.846472,0.236385,0.219395,0.370388,0.0437716,0.318899,0.474113,0.956033,0.741683,0.893391,0.264721,0.884668,0.147104,0.812359,0.508661,0.219694,0.714107,0.526807,0.821836,0.0836965,0.422243,0.550781,0.182794,0.482395,0.562041,0.747139,0.822478,0.394736,0.354848,0.329835,0.772247,0.19453,0.449725,0.191455,0.935896,0.174306,0.177997,0.389657,0.100853,0.0652405,0.728961,0.989942,0.892168,0.272309,0.14763,0.120221,0.148581,0.378052,0.147994,0.876661,0.208102,0.650402,0.813959,0.768537,0.0607079,0.273981,0.776736,0.347251,0.459836,0.426658,0.531267,0.553194,0.178194,0.129702,0.177228,0.833551,0.775717,0.25739,0.141222,0.995673,0.209825,0.805582,0.64375,0.775729,0.100605,0.0401424,0.224848,0.265516,0.0758557,0.132361,0.456973,0.206825,0.637539,0.006558,0.954705,0.684937,0.566486,0.118821,0.151179,0.599838,0.582217,0.982068,0.975084,0.897863,0.850518,0.333653,0.68997,0.688138,0.871965,0.0438604,0.753247,0.705644,0.797561,0.96848,0.566686,0.762784,0.371665,0.375656,0.69153,0.806985,0.167365,0.378443,0.59332,0.481854,0.484212,0.41301,0.588139,0.959826,0.00862938,0.467702,0.505195,0.491658,0.280228,0.73309,0.705018,0.336433,0.879506,0.525613,0.222824,0.0248996,0.136861,0.680246,0.744709,0.670811,0.142444,0.439195,0.554998,0.572565,0.552148,0.551014,0.0339087,0.297681,0.190203,0.548894,0.470151,0.571649,0.856452,0.902131,0.154025,0.751311,0.913377,0.147742,0.408519,0.578357,0.132722,0.647201,0.297605,0.916066,0.566482,0.155333,0.518124,0.0698106,0.460803,0.69769,0.256614,0.0189198,0.922384,0.39909,0.845964,0.66118,0.463654,0.494766,0.118732,0.456269,0.960865,0.944237,0.289505,0.957043,0.921178,0.678815,0.699369,0.928407,0.70798,0.378601,0.89119,0.640427,0.088753,0.577466,0.0233291,0.346615,0.520094,0.7116,0.628686,0.314681,0.88693,0.456236,0.939553,0.0346208,0.38461,0.327452,0.836751,0.662888,0.789241,0.486105,0.201876,0.864602,0.361956,0.418392,0.352034,0.729441,0.110688,0.39189,0.164511,0.65901,0.283276,0.335632,0.207776,0.956843,0.515046,0.854671,0.905991,0.508531,0.195785,0.919875,0.644341,0.0188826,0.0604792,0.923741,0.400594,0.327906,0.0284047,0.975872,0.0653608,0.81538,0.726021,0.801639,0.685332,0.257255,0.350092,0.0964949,0.365124,0.689815,0.227415,0.378801,0.36461,0.0478358,0.858059,0.149402,0.979671,0.95612,0.0580715,0.22173,0.697225,0.0387152,0.547897,0.209162,0.435543,0.000543594,0.285273,0.680048,0.658237,0.356163,0.526829,0.255641,0.336966,0.342659,0.578561,0.725201,0.188612,0.760519,0.962097,0.692116,0.299805,0.436746,0.771757,0.698185,0.928613,0.350645,0.847051,0.883622,0.615717,0.46356,0.403959,0.498204,0.0220405,0.566264,0.186655,0.84089,0.992465,0.831401,0.832996,0.277745,0.330736,0.543505,0.0224454,0.934655,0.0383747,0.690679,0.772602,0.724369,0.488665,0.561927,0.494317,0.934547,0.362529,0.876866,0.0662738,0.359851,0.646351,0.738781,0.374683,0.0762926,0.785909,0.165824,0.45926,0.472013,0.821758,0.524145,0.657378,0.370616,0.0756647,0.262301,0.521512,0.26776,0.288168,0.0791195,0.236029,0.329214,0.986254,0.816738,0.778621,0.951984,0.566568,0.105637,0.756687,0.492889,0.515393,0.854283,0.16674,0.766159,0.655962,0.494661,0.0183524,0.0192584,0.62629,0.814984,0.092023,0.276372,0.162922,0.232677,0.565773,0.986471,0.699123,0.0994323,0.21203,0.784642,0.730353,0.360277,0.726204,0.229917,0.88311,0.339636,0.42529,0.165805,0.689785,0.537474,0.401317,0.334682,0.197214,0.644474,0.938403,0.112305,0.900494,0.130574,0.762063,0.674535,0.947161,0.43117,0.411977,0.324902,0.635355,0.986266,0.325397,0.891296,0.744622,0.728445,0.573865,0.884053,0.786633,0.222431,0.31053,0.590459,0.671043,0.948505,0.947215,0.308234,0.161373,0.914386,0.0657049,0.789061,0.133801,0.0563411,0.821043,0.53864,0.169795,0.125148,0.00910318,0.0940799,0.934726,0.62962,0.202445,0.373299,0.236491,0.606572,0.831846,0.449223,0.980345,0.0162657,0.510985,0.331833,0.598487,0.760787,0.554495,0.333424,0.994666,0.830992,0.684056,0.618117,0.7475,0.692293,0.85724,0.492094,0.0683905,0.521977,0.076,0.810667,0.555453,0.0220287,0.0860901,0.0891932,0.443624,0.941891,0.047825,0.38671,0.307756,0.209284,0.904395,0.85402,0.662496,0.264394,0.723594,0.359904,0.207874,0.984064,0.604212,0.381148,0.582062,0.836285,0.816557,0.504391,0.798715,0.514147,0.426412,0.585056,0.898826,0.116653,0.863326,0.0258254,0.428159,0.131784,0.841171,0.874374,0.941537,0.753728,0.600547,0.692543,0.96883,0.813413,0.203659,0.709847,0.867799,0.66871,0.193807,0.0539287,0.302042,0.072723,0.396613,0.967489,0.177876,0.907098,0.434421,0.422424,0.0821835,0.828149,0.0595438,0.314968,0.0138,0.493854,0.389307,0.476675,0.806935,0.0976666,0.287819,0.274621,0.851119,0.83864,0.539398,0.798668,0.264616,0.935449,0.802114,0.486134,0.344223,0.0289236,0.430694,0.684689,0.636795,0.483762,0.529823,0.266057,0.861257,0.191753,0.140735,0.310306,0.627854,0.282686,0.116381,0.463897,0.753208,0.0815162,0.737782,0.296462,0.475854,0.111247,0.705886,0.418184,0.593754,0.302353,0.374796,0.239169,0.584595,0.755394,0.705423,0.196562,0.575341,0.480771,0.924474,0.54968,0.506767,0.273522,0.90717,0.257066,0.738452,0.0881518,0.51571,0.330949,0.604753,0.0544043,0.75703,0.580999,0.42123,0.463126,0.0927218,0.579871,0.561549,0.902528,0.0509696,0.477455,0.0990849,0.59906,0.901299,0.636652,0.818709,0.20327,0.319743,0.975556,0.544433,0.823737,0.135759,0.441867,0.874801,0.937862,0.0830323,0.27268,0.594339,0.384607,0.545954,0.790517,0.855743,0.348383,0.0960442,0.753363,0.766391,0.473319,0.795552,0.254818,0.715916,0.249773,0.741337,0.333849,0.279221,0.382129,0.507387,0.608832,0.0160943,0.0750296,0.0255505,0.401814,0.790889,0.217118,0.310967,0.898561,0.662055,0.487687,0.601805,0.179769,0.526324,0.676771,|0.632754,0.56998,0.156403,0.137662,0.381097,0.903023,0.963043,0.372685,0.146055,0.624568,0.177577,0.478684,0.786575,0.453497,0.336529,0.407831,0.749236,0.102254,0.564775,0.384844,0.274905,0.450692,0.500483,0.269239,0.493444,0.0372569,0.997594,0.928706,0.723784,0.904428,0.0660363,0.977789,0.380438,0.434786,0.328652,0.0295315,0.239339,0.0680525,0.488956,0.145438,0.0734917,0.959613,0.704191,0.174489,0.467033,0.966034,0.365885,0.292772,0.263784,0.362894,0.74391,0.158022,0.300886,0.346861,0.13395,0.644151,0.960728,0.978235,0.870419,0.083586,0.700133,0.433202,0.261689,0.884685,0.329751,0.678623,0.507539,0.147406,0.633894,0.650876,0.507343,0.820347,0.912307,0.571169,0.707553,0.354423,0.0913864,0.300428,0.866432,0.93382,0.788778,0.239407,0.738113,0.611025,0.694573,0.462255,0.806935,0.758041,0.264353,0.829227,0.233332,0.947161,0.513303,0.0624051,0.257866,0.157204,0.956233,0.768153,0.216809,0.464511,0.0202203,0.224008,0.347357,0.593704,0.931402,0.0359784,0.769141,0.699642,0.805099,0.560724,0.448059,0.617844,0.431284,0.17721,0.247708,0.0276307,0.513066,0.395426,0.478564,0.731394,0.289214,0.0717145,0.437098,0.166031,0.815316,0.0168096,0.277529,0.70491,0.812157,0.402518,0.987575,0.40889,0.657287,0.277721,0.834953,0.427537,0.936191,0.276496,0.292173,0.421804,0.851879,0.482728,0.589243,0.00594771,0.927404,0.229125,0.44669,0.360235,0.0469617,0.617957,0.0306624,0.477577,0.734173,0.445572,0.593774,0.045768,0.163086,0.00526679,0.951315,0.561315,0.233213,0.730645,0.918013,0.206872,0.458313,0.0311799,0.143611,0.533365,0.870381,0.218094,0.221285,0.579755,0.641566,0.412955,0.798669,0.0104188,0.448569,0.892778,0.990622,0.588511,0.685865,0.175484,0.341385,0.557192,0.993415,0.338217,0.628574,0.517545,0.931289,0.271447,0.691111,0.962758,0.462957,0.42082,0.619834,0.896041,0.622743,0.84713,0.933119,0.896331,0.410018,0.794112,0.796232,0.123227,0.0573188,0.0447564,0.865018,0.751975,0.115965,0.489888,0.896678,0.47704,0.555034,0.989957,0.631089,0.242478,0.132618,0.40297,0.0633485,0.601925,0.843928,0.722184,0.0727997,0.9211,0.774279,0.823959,0.175212,0.958314,0.595737,0.688702,0.132822,0.922035,0.46542,0.346742,0.262331,0.856504,0.840707,0.619749,0.0969017,0.957195,0.917253,0.823448,0.440023,0.794694,0.232266,0.939083,0.246115,0.349664,0.0736839,0.415299,0.107461,0.365032,0.756075,0.89691,0.309887,0.195304,0.699575,0.749552,0.981308,0.146632,0.963817,0.849375,0.629765,0.163038,0.403982,0.561282,0.768461,0.630872,0.156599,0.203052,0.666883,0.346757,0.554019,0.568859,0.240458,0.0777096,0.676461,0.756467,0.751468,0.286344,0.968728,0.808556,0.192423,0.0868226,0.853389,0.205609,0.977504,0.0840868,0.677559,0.910956,0.250073,0.492996,0.602534,0.627967,0.71313,0.621909,0.874128,0.624976,0.82808,0.552974,0.231562,0.0319144,0.812495,0.236511,0.554386,0.0691479,0.367448,0.161698,0.0325312,0.297613,0.757278,0.678895,0.0859752,0.923356,0.215946,0.0943492,0.945916,0.481265,0.099987,0.768972,0.984861,0.094573,0.915835,0.523564,0.176236,0.551863,0.725899,0.977603,0.674425,0.552102,0.453104,0.942386,0.435866,0.0680233,0.30588,0.0478355,0.182473,0.904502,0.721833,0.198418,0.0838663,0.541277,0.254592,0.720856,0.492735,0.166984,0.0257882,0.539524,0.995859,0.229606,0.544495,0.596039,0.141862,0.453926,0.516444,0.62079,0.998378,0.190699,0.0565885,0.970716,0.267165,0.857291,0.518545,0.332065,0.0613193,0.465752,0.179459,0.786798,0.630082,0.849565,0.965001,0.388673,0.754176,0.58399,0.0325798,0.955497,0.930713,0.0477405,0.263133,0.631774,0.192108,0.888511,0.0187683,0.287455,0.452726,0.540301,0.682008,0.933523,0.564666,0.05391,0.048529,0.861516,0.897927,0.00245559,0.855764,0.602972,0.696187,0.756004,0.231031,0.131551,0.226014,0.611627,0.486581,0.184208,0.996622,0.0648175,0.453175,0.179587,0.286627,0.566637,0.699226,0.727541,0.885284,0.343644,0.477664,0.303537,0.436024,0.509215,0.157937,0.331136,0.308363,0.670992,0.976683,0.730234,0.936317,0.0304001,0.468702,0.604087,0.460771,0.685363,0.364662,0.0490301,0.860632,0.752186,0.608454,0.373347,0.930928,0.728723,0.313178,0.62882,0.16869,0.854042,0.242699,0.741426,0.903037,0.625414,0.681539,0.307525,0.443655,0.73856,0.287899,0.613761,0.20506,0.718296,0.252145,0.00849742,0.951566,0.623029,0.415739,0.655262,0.657619,0.100747,0.499967,0.386055,0.320776,0.59056,0.9444,0.923127,0.39371,0.373814,0.751871,0.384985,0.589751,0.251873,0.492081,0.956995,0.0445936,0.0754461,0.619145,0.833901,0.605637,0.945452,0.651914,0.422225,0.244974,0.107806,0.991219,0.0548075,0.304138,0.618011,0.800327,0.734117,0.0215473,0.403138,0.363131,0.765988,0.067565,0.156095,0.924305,0.144041,0.226667,0.90588,0.942375,0.571234,0.400743,0.749621,0.66183,0.329709,0.0294793,0.216927,0.388805,0.819697,0.160507,0.402037,0.00769544,0.68318,0.85527,0.896604,0.81648,0.456433,0.859986,0.901514,0.351369,0.656617,0.357972,0.487574,0.897117,0.496293,0.365284,0.866192,0.437687,0.236734,0.955368,0.315802,0.00635976,0.513938,0.73431,0.634102,0.154703,0.21179,0.715337,0.616257,0.831866,0.254102,0.00106192,0.317243,0.856305,0.941958,0.746755,0.488939,0.474858,0.167164,0.724594,0.962679,0.818422,0.0958155,0.348464,0.0741032,0.632155,0.41905,0.879504,0.755508,0.0371853,0.609484,0.107621,0.0173343,0.176955,0.546148,0.514723,0.00325507,0.0894812,0.996007,0.869267,0.994438,0.639943,0.505494,0.891961,0.509414,0.171872,0.604934,0.137415,0.715786,0.0520946,0.263013,0.69917,0.336136,0.88076,0.00754803,0.52099,0.745727,0.167388,0.688645,0.850597,0.245983,0.64788,0.542502,0.182114,0.0175707,0.971736,0.0365225,0.393421,0.92136,0.523774,0.404344,0.0792545,0.523326,0.180368,0.950176,0.4928,0.950808,0.0690288,0.785196,0.46926,0.349711,0.591605,0.3976,0.577809,0.984834,0.956013,0.152312,0.0839148,0.1042,0.00258565,0.545123,0.042133,0.346778,0.784564,0.514314,0.596988,0.284657,0.899737,0.488645,0.202735,0.765733,0.83459,0.265298,0.133079,0.80311,0.323997,0.659696,0.254791,0.524142,0.0636404,0.569437,0.616589,0.403005,0.882432,0.842889,0.698344,0.385782,0.784905,0.391864,0.416817,0.603487,0.547347,0.0550073,0.611589,0.887315,0.572064,0.450697,0.0971847,0.816264,0.972462,0.502142,0.869376,0.491911,0.0146052,0.808533,0.545311,0.769395,0.159371,0.645216,0.48305,0.416973,0.0380964,0.697668,0.722394,0.255637,0.719929,0.0163069,0.0465623,0.873706,0.326572,0.104361,0.58002,0.484449,0.714027,0.753331,0.107488,0.275384,0.863251,0.939638,0.0317144,0.0409258,0.670527,0.470909,0.0872865,0.760264,0.871168,0.257667,0.210741,0.904459,0.129039,0.125089,0.319956,0.200535,0.0200913,0.690435,0.756874,0.537799,0.956372,0.0611643,0.946333,0.364613,0.388733,0.964157,0.388241,0.948084,0.786634,0.0492825,0.821592,0.675631,0.215082,0.0855967,0.548667,0.87607,0.564004,0.273917,0.231448,0.339906,0.996452,0.78181,0.248242,0.780539,0.429125,0.468829,0.0421478,0.0902205,0.14145,0.438298,0.377182,0.307281,0.590093,0.139014,0.835637,0.83967,0.187932,0.426767,0.706785,0.000520468,0.112121,0.989001,0.103173,0.328435,0.787012,0.253023,0.567736,0.317825,0.229498,0.254691,0.361827,0.686464,0.745171,0.396912,0.66068,0.983962,0.0854461,0.00835216,0.964023,0.370373,0.0627891,0.759769,0.150989,0.972385,0.781786,0.949239,0.402104,0.631262,0.0100306,0.763734,0.142359,0.698138,0.941634,0.591864,0.36639,0.0880631,0.39167,0.048093,0.442381,0.226172,0.333407,0.847625,0.242822,0.0184152,0.436366,0.723617,0.295957,0.917858,0.0432209,0.647345,0.379298,0.556426,0.666603,0.750912,0.0989959,0.252088,0.675036,0.145327,0.769395,0.504059,0.943185,0.206668,0.495486,0.647775,0.555288,0.646709,0.520648,0.140821,0.0262818,0.995476,0.897125,0.0886631,0.889421,0.65456,0.413425,0.968178,0.832948,0.932534,0.213279,0.176538,0.411261,0.902899,0.127429,0.202676,0.979629,0.714097,0.474379,0.16889,0.0733098,0.423158,0.884756,0.639987,0.483686,0.377901,0.754355,0.00523925,0.0224395,0.641426,0.89298,0.947134,0.811318,0.598808,0.640178,0.367958,0.668789,0.624876,0.871695,0.290351,0.732991,0.236792,0.555769,0.423541,0.838417,0.15384,0.344819,0.0695505,0.803689,0.214538,0.76961,0.643328,0.672482,0.770389,0.0620415,0.119059,0.0847088,0.0126415,0.107644,0.206066,0.302561,0.887857,0.891548,0.647341,0.647752,0.185527,0.718087,0.47542,0.111311,0.516342,0.300732,0.439649,0.421994,0.279725,0.229311,0.77047,0.140902,0.593089,0.837689,0.476997,0.223551,0.506424,0.472132,0.667863,0.212637,0.938091,0.6512,0.593606,0.631657,0.649018,0.491213,0.070388,0.39599,0.642205,0.728036,0.7034,0.601409,0.646283,0.136383,0.767299,0.816523,0.66802,0.279428,0.460971,0.224189,0.841097,0.297043,0.248288,0.0690411,0.0592495,0.835292,0.256835,0.446593,0.913926,0.937271,0.0134334,0.395937,0.824106,0.476882,0.706001,0.878745,0.887016,0.245952,0.251432,0.0244291,0.811008,0.404746,0.964984,0.114458,0.345647,0.463658,0.367778,0.899286,0.7748,0.785256,0.417096,0.00778174,0.212742,0.626812,0.490369,0.832899,0.24626,0.015697,0.618384,0.657648,0.118735,0.937503,0.235619,0.92105,0.978822,0.032521,0.704247,0.490631,0.155365,0.173173,0.270782,0.34612,0.543759,0.961133,0.956679,0.82221,0.367864,0.750761,0.731965,0.0998653,0.87061,0.160004,0.961514,0.387051,0.547275,0.196801,0.478321,0.0135154,0.210246,0.473369,0.976571,0.27271,0.7885,0.960779,0.505989,0.909801,0.58347,|0.110864,0.243391,0.935706,0.261734,0.737774,0.46366,0.633461,0.393167,0.958403,0.951011,0.0655977,0.198683,0.48919,0.356055,0.729285,0.717471,0.837611,0.364256,0.248321,0.499485,0.420352,0.255608,0.133169,0.250819,0.887043,0.341332,0.672114,0.326367,0.864478,0.221378,0.527035,0.376891,0.996254,0.578617,0.726469,0.877082,0.631609,0.618454,0.198582,0.365649,0.972109,0.0975533,0.171651,0.626146,0.956449,0.725157,0.335028,0.109556,0.124622,0.515891,0.631615,0.234969,0.496886,0.705947,0.588038,0.828964,0.746171,0.163898,0.268171,0.722519,0.73453,0.477738,0.715335,0.940589,0.969934,0.93519,0.294738,0.820488,0.219914,0.568905,0.377294,0.598221,0.92081,0.585409,0.563295,0.582935,0.999877,0.784117,0.309295,0.602197,0.912575,0.0997838,0.13645,0.216284,0.614546,0.548035,0.766364,0.0126085,0.473314,0.460555,0.440938,0.52719,0.253811,0.0188622,0.142301,0.117595,0.222396,0.895311,0.232231,0.565154,0.232799,0.902288,0.172991,0.492901,0.126282,0.589999,0.461229,0.267906,0.826907,0.6176,0.83268,0.376383,0.639985,0.790501,0.200617,0.937013,0.523143,0.475869,0.147286,0.855448,0.902605,0.396329,0.145306,0.730628,0.826035,0.497832,0.630636,0.55485,0.672282,0.498027,0.879028,0.811428,0.544108,0.84071,0.924959,0.776344,0.434635,0.37934,0.821322,0.533647,0.404215,0.953637,0.540458,0.562576,0.375389,0.203184,0.840892,0.763131,0.903044,0.808188,0.76796,0.534602,0.3295,0.311803,0.0183648,0.850642,0.823082,0.860989,0.189836,0.0907742,0.442639,0.560218,0.431875,0.405202,0.877114,0.931086,0.218613,0.799514,0.616836,0.765028,0.690817,0.0326325,0.838409,0.624753,0.416283,0.903822,0.513604,0.104329,0.109167,0.565376,0.583843,0.509107,0.62963,0.823909,0.590225,0.849467,0.0874872,0.607592,0.427477,0.975712,0.21683,0.545246,0.32501,0.600656,0.311743,0.645691,0.153836,0.302333,0.278803,0.50364,0.55927,0.48608,0.63853,0.598769,0.44098,0.209087,0.916017,0.596124,0.957482,0.8138,0.854704,0.523452,0.922172,0.502087,0.785199,0.79117,0.689712,0.745573,0.0319105,0.322554,0.0951763,0.0623914,0.735711,0.552995,0.505046,0.238065,0.472748,0.624278,0.0530491,0.653844,0.879722,0.749402,0.700778,0.425555,0.455998,0.552953,0.121292,0.0608712,0.305635,0.257818,0.843109,0.676834,0.467992,0.536411,0.0704323,0.689565,0.034229,0.855347,0.779879,0.41594,0.341261,0.419105,0.885418,0.986781,0.314252,0.758089,0.0161452,0.657563,0.511243,0.511725,0.0219404,0.655228,0.0853077,0.406466,0.219731,0.0489299,0.672088,0.313903,0.275694,0.82196,0.273999,0.517951,0.127426,0.0444705,0.59893,0.830692,0.689654,0.383662,0.704433,0.603887,0.0415576,0.983433,0.744019,0.0532615,0.616742,0.0695868,0.509847,0.361313,0.212159,0.755217,0.920829,0.917889,0.341398,0.800221,0.0461212,0.285106,0.298064,0.564007,0.490922,0.186992,0.40557,0.0181925,0.701913,0.25115,0.189717,0.333892,0.257591,0.376798,0.612211,0.521838,0.0337548,0.0683326,0.931968,0.649582,0.630124,0.262536,0.874056,0.0103442,0.43964,0.925655,0.0382919,0.145991,0.95698,0.26026,0.657117,0.893693,0.972432,0.164874,0.268432,0.520186,0.546946,0.780936,0.202239,0.390336,0.878451,0.471621,0.979201,0.228725,0.00965536,0.8599,0.146371,0.2473,0.54403,0.234916,0.374265,0.688487,0.891784,0.530282,0.981592,0.830216,0.314852,0.48908,0.451122,0.34511,0.734162,0.81369,0.337157,0.321707,0.0244241,0.865546,0.79969,0.715869,0.480588,0.815642,0.636639,0.715614,0.484066,0.852491,0.374988,0.854067,0.917718,0.51966,0.754317,0.729634,0.0800141,0.650247,0.103539,0.803537,0.255002,0.391413,0.357014,0.367392,0.208462,0.715271,0.53568,0.767894,0.726935,0.455188,0.603199,0.695264,0.736103,0.396525,0.419789,0.245405,0.189013,0.703184,0.0257823,0.930856,0.308258,0.306833,0.340598,0.266384,0.922014,0.951087,0.611477,0.2158,0.334612,0.685222,0.213733,0.293478,0.692496,0.0732374,0.565792,0.382734,0.965315,0.833267,0.234996,0.411204,0.290034,0.379281,0.691899,0.793281,0.687497,0.944265,0.762085,0.0831773,0.593441,0.365207,0.974693,0.0595614,0.330302,0.702464,0.920816,0.0552311,0.442115,0.592753,0.383124,0.592103,0.643382,0.812966,0.436047,0.681212,0.947984,0.991991,0.167901,0.77765,0.990595,0.0507119,0.45956,0.508153,0.0837594,0.746988,0.329002,0.719338,0.354539,0.119883,0.50972,0.624404,0.430306,0.370133,0.173312,0.00440723,0.54535,0.935693,0.68121,0.126747,0.267189,0.653968,0.199395,0.691599,0.389705,0.0777838,0.910363,0.848364,0.0410777,0.830601,0.397624,0.90417,0.590907,0.0617686,0.283689,0.693071,0.283993,0.71846,0.76395,0.0638306,0.0901933,0.320221,0.361217,0.81094,0.664282,0.504296,0.394213,0.493929,0.809008,0.827179,0.577689,0.249822,0.429807,0.0188428,0.287296,0.918945,0.213888,0.878143,0.172375,0.981903,0.336902,0.635847,0.869878,0.117736,0.656751,0.710381,0.814185,0.904273,0.85672,0.323934,0.00190365,0.0767183,0.648374,0.470583,0.932322,0.585621,0.615324,0.691378,0.136669,0.569342,0.773406,0.197479,0.162808,0.747427,0.701955,0.494719,0.564312,0.534002,0.906235,0.509353,0.458054,0.704757,0.48486,0.490669,0.546441,0.487908,0.533609,0.995582,0.6665,0.140644,0.766176,0.753948,0.0130346,0.743058,0.990574,0.239824,0.383193,0.959293,0.407463,0.826679,0.352082,0.420556,0.842883,0.660403,0.236923,0.893892,0.419609,0.445696,0.666366,0.44725,0.487134,0.0512704,0.349301,0.871938,0.28588,0.217933,0.907663,0.270561,0.554506,0.322607,0.0133307,0.800323,0.992386,0.0453044,0.339297,0.483687,0.305732,0.890931,0.331301,0.45954,0.686625,0.722329,0.6587,0.0722119,0.121953,0.141718,0.364382,0.295176,0.813945,0.151937,0.555075,0.0305122,0.258089,0.519587,0.126445,0.885596,0.362589,0.219859,0.952695,0.64405,0.338189,0.322396,0.888728,0.228247,0.858508,0.562288,0.239175,0.314728,0.891031,0.58237,0.0268982,0.718334,0.538364,0.407477,0.158853,0.872344,0.706993,0.36791,0.172369,0.0802709,0.389086,0.982637,0.896167,0.0157875,0.0929614,0.805189,0.0888977,0.706097,0.568187,0.994249,0.271889,0.492023,0.962505,0.0103733,0.920964,0.98954,0.314706,0.167318,0.996042,0.932227,0.0452269,0.728297,0.893431,0.257768,0.973092,0.95735,0.0906396,0.49419,0.712002,0.45161,0.378748,0.116442,0.335589,0.137825,0.343897,0.767946,0.160362,0.0673383,0.505645,0.746202,0.156343,0.381343,0.923142,0.0633593,0.581933,0.360116,0.44602,0.531647,0.796219,0.471125,0.964483,0.424851,0.494151,0.551979,0.842288,0.638397,0.791988,0.77179,0.633003,0.198596,0.104856,0.524582,0.176939,0.848534,0.115556,0.493277,0.867874,0.641684,0.633479,0.250873,0.34518,0.566221,0.756472,0.414625,0.299802,0.266711,0.327104,0.419472,0.591424,0.645229,0.855138,0.616962,0.308699,0.390155,0.524744,0.567304,0.68561,0.154809,0.0616508,0.453817,0.79971,0.185247,0.532264,0.83375,0.378466,0.44313,0.891492,0.38295,0.167049,0.126091,0.734229,0.998067,0.454796,0.861831,0.785489,0.122393,0.4371,0.121389,0.793393,0.880779,0.199489,0.132483,0.977864,0.0379489,0.141786,0.559707,0.378512,0.324102,0.469503,0.243653,0.979235,0.745931,0.523704,0.271756,0.224229,0.941486,0.0375593,0.639085,0.178777,0.618411,0.268431,0.539728,0.474073,0.397123,0.0972757,0.320114,0.156279,0.32715,0.935081,0.109861,0.770994,0.394394,0.222761,0.736304,0.725592,0.659798,0.00958198,0.654756,0.317183,0.739905,0.212161,0.0444678,0.790448,0.174476,0.619195,0.616932,0.775405,0.324054,0.716835,0.850916,0.196914,0.700505,0.896098,0.146349,0.0833248,0.501789,0.109736,0.0830291,0.784655,0.776246,0.677408,0.554676,0.258971,0.81706,0.335017,0.693799,0.984313,0.0954569,0.0848724,0.0588297,0.13091,0.47455,0.652048,0.0689059,0.304876,0.175945,0.213276,0.303939,0.0406142,0.538445,0.298099,0.381165,0.946232,0.46048,0.363592,0.827899,0.171383,0.200975,0.63968,0.280212,0.734812,0.353349,0.465762,0.575168,0.709947,0.122813,0.0218967,0.148696,0.616512,0.197872,0.820419,0.174355,0.187256,0.386461,0.128023,0.621287,0.0317487,1.63913e-05,0.0435232,0.291832,0.21008,0.678824,0.757131,0.435465,0.834629,0.707463,0.365468,0.535551,0.508008,0.98616,0.681355,0.723953,0.0796698,0.910053,0.742128,0.342144,0.251007,0.0256972,0.0331988,0.932576,0.502581,0.571078,0.551664,0.924181,0.373855,0.887867,0.469566,0.351383,0.494682,0.00485975,0.572264,0.682787,0.810403,0.491887,0.987693,0.287175,0.426548,0.756507,0.326891,0.493689,0.767114,0.376661,0.270814,0.737804,0.946416,0.878357,0.516518,0.745346,0.958141,0.143793,0.446601,0.95498,0.659287,0.246673,0.667141,0.414775,0.174792,0.670824,0.959081,0.957268,0.971275,0.940357,0.277137,0.976798,0.791921,0.948336,0.145804,0.307272,0.0184742,0.769257,0.848261,0.813429,0.662683,0.96605,0.440536,0.625066,0.164779,0.0266199,0.560157,0.554221,0.799434,0.71236,0.0246055,0.284844,0.679559,0.0476133,0.871212,0.345528,0.0656437,0.321519,0.136706,0.573167,0.666029,0.469541,0.305402,0.12045,0.0831497,0.763064,0.237311,0.128928,0.905357,0.201265,0.350016,0.774083,0.949389,0.278989,0.89769,0.8708,0.787493,0.0580162,0.00755364,0.795046,0.777238,0.91052,0.278448,0.482962,0.587891,0.220579,0.656002,0.210501,0.285189,0.952959,0.769717,0.77672,0.296931,0.223603,0.765431,0.736346,0.204398,0.895976,0.495259,0.582723,0.104333,0.6088,0.505034,0.886687,0.887588,0.427134,0.562097,0.28563,0.582801,0.195843,0.218838,0.731117,0.594053,0.148586,0.388572,0.0480958,0.519794,0.92711,0.713976,0.302635,0.970143,0.918321,|0.82988,0.842356,0.333921,0.632011,0.0875487,0.997243,0.2606,0.137093,0.961814,0.352011,0.0814744,0.112778,0.85103,0.347899,0.053268,0.850674,0.76374,0.436133,0.490829,0.258392,0.890185,0.0155535,0.175577,0.0114095,0.94408,0.671071,0.386176,0.810643,0.168888,0.226752,0.294399,0.61215,0.500775,0.74688,0.506921,0.0225048,0.0836934,0.765025,0.496729,0.142466,0.84534,0.6572,0.340734,0.59626,0.347368,0.34825,0.385245,0.480764,0.472501,0.827963,0.630606,0.26062,0.875352,0.577367,0.0753137,0.98826,0.895335,0.92704,0.282472,0.791716,0.824779,0.0335535,0.490301,0.0776365,0.993875,0.862113,0.118632,0.0686669,0.556014,0.484554,0.0288154,0.137362,0.67406,0.172627,0.151897,0.21861,0.645781,0.345525,0.259019,0.323084,0.669264,0.793075,0.204536,0.724397,0.69281,0.975261,0.385396,0.040176,0.457423,0.164874,0.806339,0.100185,0.820294,0.490586,0.524062,0.637223,0.977402,0.120051,0.221541,0.369119,0.799379,0.426066,0.53424,0.0212447,0.214878,0.46799,0.727909,0.960075,0.339681,0.212756,0.777757,0.469113,0.293654,0.18987,0.107624,0.411344,0.103933,0.725453,0.0831641,0.958173,0.659859,0.186114,0.834822,0.261059,0.729698,0.0499814,0.26806,0.216761,0.165553,0.515316,0.502891,0.818774,0.0255085,0.435264,0.394681,0.725492,0.152117,0.0104934,0.0918176,0.422742,0.518598,0.548994,0.211603,0.826143,0.727561,0.98375,0.0733438,0.235815,0.601147,0.241219,0.195074,0.524647,0.825361,0.153529,0.713313,0.861078,0.53263,0.96118,0.0719253,0.45766,0.339476,0.441701,0.76655,0.733349,0.264229,0.261395,0.98594,0.93001,0.926523,0.29379,0.588978,0.1525,0.795979,0.0756733,0.416467,0.16466,0.305093,0.680857,0.472107,0.865701,0.262146,0.420522,0.737949,0.697758,0.0130799,0.260555,0.505612,0.610454,0.579925,0.0688185,0.28886,0.00926131,0.000161588,0.715056,0.398107,0.545692,0.00512832,0.376602,0.741467,0.768062,0.00831759,0.143125,0.361495,0.309147,0.550296,0.362023,0.647373,0.753564,0.613415,0.343366,0.238935,0.0641067,0.295522,0.99054,0.921154,0.692166,0.181412,0.73439,0.534376,0.0645227,0.948869,0.933517,0.380613,0.26655,0.607694,0.984367,0.491819,0.067798,0.161166,0.374178,0.468999,0.4377,0.470687,0.522869,0.731106,0.322224,0.0246423,0.948275,0.74789,0.47546,0.0138895,0.631725,0.769033,0.805372,0.642996,0.270351,0.304885,0.0231898,0.595051,0.90794,0.307428,0.472521,0.424766,0.742269,0.0368818,0.054498,0.520321,0.0165842,0.788687,0.0479758,0.286342,0.348229,0.840087,0.32833,0.360472,0.56819,0.164261,0.518002,0.482923,0.48497,0.30747,0.639409,0.650782,0.616633,0.555842,0.714008,0.28962,0.458015,0.931317,0.213362,0.675122,0.00128418,0.316284,0.231916,0.920725,0.206733,0.0420119,0.623077,0.564779,0.10621,0.0479843,0.00458461,0.126762,0.795637,0.0330391,0.589605,0.446418,0.110756,0.708727,0.804315,0.667882,0.689211,0.172327,0.685051,0.109083,0.0322182,0.137563,0.417889,0.501349,0.758251,0.00672853,0.0488413,0.919406,0.475532,0.72166,0.867433,0.300115,0.570729,0.789954,0.0399973,0.160052,0.610137,0.427904,0.202196,0.627812,0.740178,0.287058,0.931979,0.34254,0.772048,0.069369,0.780551,0.82712,0.713865,0.780633,0.906224,0.923821,0.595624,0.633414,0.354184,0.721551,0.507956,0.758788,0.464185,0.646089,0.246274,0.365001,0.579681,0.128692,0.0953789,0.829662,0.730032,0.00592583,0.988525,0.00748909,0.0259818,0.772917,0.389231,0.347031,0.0886647,0.549276,0.148356,0.51997,0.308983,0.221937,0.942314,0.916917,0.79884,0.377148,0.254108,0.9336,0.0596098,0.885811,0.346481,0.0226895,0.447572,0.29722,0.930122,0.362461,0.01781,0.603386,0.214613,0.107936,0.922707,0.0756314,0.249663,0.011732,0.734994,0.0437579,0.991802,0.312421,0.833415,0.274774,0.0158818,0.454947,0.598122,0.697068,0.00421059,0.937385,0.603218,0.824659,0.331018,0.817043,0.674588,0.615151,0.77836,0.565383,0.807881,0.36498,0.329705,0.390796,0.660283,0.200865,0.870143,0.0343437,0.392434,0.400295,0.104255,0.242654,0.469095,0.878641,0.754645,0.282013,0.123224,0.905765,0.544548,0.472219,0.40274,0.859506,0.267155,0.573556,0.35508,0.667756,0.854139,0.117974,0.0783346,0.200231,0.852481,0.758977,0.954508,0.942634,0.356076,0.643894,0.132947,0.995246,0.411244,0.662312,0.995031,0.958431,0.97625,0.910527,0.621361,0.863454,0.830536,0.703901,0.214519,0.0681342,0.628348,0.242825,0.360574,0.811473,0.970351,0.293351,0.922555,0.121767,0.621611,0.802962,0.564583,0.307516,0.954111,0.386736,0.624058,0.26804,0.334952,0.709417,0.444845,0.261437,0.611137,0.0040645,0.10371,0.995987,0.0997352,0.0253044,0.604074,0.834718,0.0457833,0.655318,0.977807,0.521249,0.209813,0.68372,0.271746,0.484591,0.686391,0.755713,0.0578237,0.125674,0.861226,0.742493,0.0833023,0.210131,0.0840683,0.613194,0.791966,0.898842,0.15195,0.693549,0.0400189,0.786425,0.422559,0.872792,0.439399,0.794601,0.282631,0.858666,0.989376,0.913891,0.685819,0.0290794,0.906754,0.132246,0.878929,0.437705,0.964076,0.426628,0.332456,0.927434,0.277089,0.563597,0.0136288,0.814147,0.991695,0.805635,0.877506,0.826135,0.665493,0.768612,0.541228,0.796324,0.645872,0.633951,0.542593,0.863145,0.0943145,0.248336,0.927154,0.0602164,0.115373,0.00985205,0.784864,0.154949,0.0599135,0.420414,0.466347,0.525022,0.0910473,0.389827,0.0423762,0.464848,0.28986,0.242929,0.959381,0.767239,0.456473,0.0947044,0.168159,0.359952,0.627922,0.00970948,0.182606,0.584807,0.815632,0.80015,0.958075,0.884531,0.11144,0.81575,0.939889,0.790301,0.958434,0.192225,0.440543,0.950787,0.150467,0.555577,0.925839,0.362452,0.633156,0.831125,0.261821,0.43068,0.465204,0.695105,0.236109,0.139146,0.758037,0.30387,0.710669,0.552874,0.968165,0.43167,0.446123,0.216595,0.232255,0.565961,0.277297,0.350891,0.518703,0.639976,0.438607,0.75487,0.309239,0.0750882,0.567128,0.665359,0.866253,0.62579,0.157634,0.15595,0.593422,0.59908,0.123093,0.940354,0.278244,0.74597,0.883328,0.218535,0.664909,0.743447,0.851323,0.71279,0.01699,0.0601402,0.375102,0.519482,0.281612,0.599216,0.547712,0.842491,0.32014,0.86663,0.612337,0.189985,0.581045,0.0169669,0.501373,0.230945,0.922439,0.0574527,0.949918,0.71633,0.0770164,0.0355085,0.326843,0.677335,0.732483,0.0965611,0.29454,0.650028,0.54675,0.476123,0.604623,0.502664,0.00291145,0.106654,0.665685,0.332651,0.7216,0.938521,0.451946,0.544988,0.401818,0.263497,0.87995,0.393857,0.231228,0.991256,0.827285,0.827621,0.0673028,0.862076,0.177809,0.226062,0.43891,0.213523,0.00758725,0.700679,0.550835,0.784749,0.738185,0.293688,0.00104749,0.618364,0.674663,0.59921,0.214225,0.293913,0.153723,0.0875522,0.198833,0.464495,0.492866,0.521801,0.673651,0.0365798,0.863609,0.943782,0.280462,0.869604,0.434886,0.626876,0.888214,0.0493211,0.312745,0.843408,0.409062,0.83523,0.693437,0.892917,0.801461,0.872744,0.589502,0.651444,0.257655,0.954227,0.82139,0.153434,0.864352,0.769743,0.264428,0.797545,0.926223,0.756726,0.98181,0.4095,0.795446,0.0240985,0.914549,0.363309,0.704064,0.365492,0.535093,0.483066,0.667677,0.361984,0.686026,0.413131,0.695742,0.498019,0.921646,0.0621235,0.0364823,0.661426,0.355136,0.634765,0.708425,0.910148,0.502665,0.881729,0.965122,0.698642,0.828081,0.507501,0.409339,0.407624,0.206595,0.236582,0.190343,0.691512,0.146559,0.363129,0.248042,0.73978,0.00819558,0.0697228,0.206107,0.853637,0.151797,0.38955,0.3548,0.368754,0.103343,0.982695,0.0340772,0.768155,0.122977,0.121482,0.671872,0.584387,0.100515,0.74985,0.05033,0.592768,0.277586,0.324905,0.461389,0.129805,0.469514,0.652923,0.409308,0.133153,0.504083,0.0736308,0.334348,0.0773499,0.811031,0.449767,0.612696,0.184874,0.532118,0.708629,0.305361,0.0432265,0.582692,0.414514,0.103986,0.063902,0.964646,0.774524,0.672177,0.772797,0.190496,0.350015,0.795867,0.896194,0.476142,0.206641,0.556251,0.0522642,0.908691,0.0658584,0.632088,0.276171,0.470076,0.475302,0.936326,0.269284,0.0685228,0.869875,0.574103,0.189685,0.704559,0.777368,0.250145,0.61086,0.569596,0.500901,0.66378,0.880103,0.502819,0.0488523,0.898695,0.712873,0.193546,0.687367,0.431682,0.556578,0.434173,0.300412,0.22568,0.769348,0.163989,0.624796,0.860311,0.376803,0.476808,0.652927,0.929439,0.802323,0.176646,0.709081,0.818307,0.0292784,0.786805,0.727721,0.0839601,0.759988,0.462088,0.152208,0.20109,0.382316,0.835159,0.829694,0.899821,0.920003,0.890868,0.372359,0.0703063,0.498393,0.0917659,0.232082,0.836303,0.845427,0.631379,0.0993002,0.438613,0.341804,0.296482,0.166501,0.612517,0.46457,0.896598,0.628873,0.23358,0.0727104,0.865588,0.0964241,0.728613,0.0761116,0.53021,0.921033,0.758694,0.226546,0.316899,0.707651,0.40307,0.464628,0.594313,0.616518,0.333216,0.0868189,0.153072,0.253551,0.0357171,0.0215301,0.437272,0.208397,0.692151,0.461717,0.63985,0.422098,0.654832,0.238665,0.86612,0.28288,0.0810896,0.434635,0.110754,0.0785214,0.431442,0.598794,0.818538,0.116287,0.709433,0.206389,0.48306,0.270898,0.50588,0.0925069,0.148885,0.393209,0.970297,0.870895,0.48228,0.855546,0.44589,0.115805,0.402952,0.555167,0.548772,0.728893,0.614623,0.486909,0.376779,0.1655,0.843115,0.881756,0.217034,0.0497816,0.171021,0.213718,0.495744,0.144235,0.730984,0.510418,0.426908,0.306228,0.437029,0.499359,0.18829,0.16398,0.799259,0.444562,0.973244,0.187189,0.58143,0.030828,0.345741,0.298516,0.617497,0.986868,0.621835,0.633017,0.184846,0.582044,0.917552,0.682555,0.884686,0.989384,0.442116,|0.537147,0.832458,0.502409,0.597537,0.786967,0.807661,0.345335,0.562722,0.919736,0.758828,0.2129,0.853712,0.410873,0.27291,0.960217,0.272535,0.822883,0.892392,0.824586,0.379935,0.536541,0.0764099,0.47547,0.358017,0.844702,0.969733,0.918406,0.546212,0.445694,0.569844,0.286901,0.754638,0.770691,0.331337,0.34591,0.213438,0.839362,0.104152,0.0772181,0.920319,0.917583,0.150862,0.262417,0.595948,0.95616,0.0137629,0.873331,0.814861,0.833136,0.0384057,0.337649,0.182711,0.585969,0.965451,0.199786,0.704936,0.444687,0.636316,0.413158,0.488179,0.101922,0.978573,0.039225,0.665246,0.567634,0.887501,0.385735,0.554922,0.220466,0.332198,0.571903,0.5887,0.817088,0.133674,0.116346,0.354518,0.739234,0.127131,0.228372,0.849755,0.0319123,0.666209,0.927256,0.58037,0.926105,0.605074,0.426254,0.76961,0.494673,0.0909564,0.409648,0.272175,0.3356,0.123048,0.641664,0.527382,0.174673,0.195095,0.43942,0.468588,0.113797,0.306563,0.450339,0.406941,0.835568,0.485305,0.0842905,0.862076,0.185991,0.806826,0.554245,0.743001,0.874277,0.0350336,0.799806,0.0399536,0.272454,0.248015,0.714175,0.443627,0.387603,0.133201,0.318443,0.384405,0.294967,0.0279018,0.477311,0.336618,0.165938,0.275008,0.272548,0.36658,0.960304,0.243856,0.483907,0.53124,0.314168,0.117401,0.676485,0.356324,0.266268,0.771273,0.00770259,0.472831,0.832406,0.609682,0.0428358,0.323123,0.273733,0.0396665,0.462823,0.123689,0.118211,0.594962,0.449803,0.710603,0.761721,0.687204,0.467188,0.446419,0.805126,0.327401,0.20848,0.840154,0.226627,0.146469,0.336073,0.254354,0.261217,0.0480424,0.605835,0.254443,0.894653,0.362541,0.716716,0.349064,0.978346,0.191331,0.732033,0.0362116,0.819189,0.856622,0.293889,0.731056,0.611073,0.605009,0.598638,0.871838,0.413056,0.724295,0.157356,0.542662,0.608647,0.250047,0.180744,0.54066,0.811066,0.187587,0.93193,0.275034,0.851514,0.482936,0.963211,0.663477,0.883383,0.663966,0.381361,0.870413,0.560116,0.212252,0.19685,0.409446,0.275721,0.775794,0.650608,0.374483,0.792942,0.694591,0.0437118,0.335282,0.00908947,0.363594,0.515717,0.882241,0.505973,0.737762,0.252802,0.754457,0.483025,0.674307,0.82478,0.799251,0.547474,0.258216,0.628037,0.758006,0.845734,0.0295124,0.836801,0.903192,0.13512,0.111768,0.541245,0.530959,0.715745,0.141909,0.745335,0.590883,0.706474,0.57731,0.0664267,0.989651,0.320387,0.400956,0.602086,0.0915741,0.649758,0.0128389,0.493607,0.28348,0.910215,0.317117,0.0999297,0.882079,0.946911,0.557188,0.170222,0.842675,0.558384,0.880176,0.4173,0.736177,0.0899078,0.627904,0.750656,0.717659,0.127333,0.843844,0.646774,0.152866,0.175232,0.949959,0.0353279,0.212885,0.913005,0.247745,0.857772,0.469269,0.766085,0.0719022,0.531754,0.52231,0.694383,0.138793,0.334941,0.502004,0.691045,0.94679,0.743982,0.222128,0.474765,0.0803269,0.192521,0.332144,0.0923985,0.116533,0.124433,0.424236,0.771818,0.866211,0.0314434,0.304055,0.299237,0.693322,0.0509433,0.330837,0.258843,0.798167,0.773772,0.115199,0.62559,0.754422,0.90571,0.132457,0.899478,0.0930266,0.375338,0.793707,0.315622,0.357413,0.677551,0.0305054,0.387068,0.725475,0.866508,0.53236,0.217496,0.251981,0.899609,0.613345,0.250396,0.156827,0.548786,0.474751,0.0450616,0.696188,0.79519,0.84796,0.634318,0.780571,0.550413,0.909995,0.918824,0.869585,0.970919,0.317344,0.324372,0.96961,0.952893,0.823038,0.0687699,0.683134,0.597726,0.621706,0.346712,0.102051,0.511685,0.630358,0.343423,0.928125,0.786664,0.568943,0.995728,0.718849,0.0145454,0.688554,0.308688,0.0192505,0.791315,0.311867,0.454456,0.41812,0.557141,0.695245,0.284322,0.931817,0.602256,0.201679,0.17979,0.232547,0.909826,0.259997,0.0187571,0.814656,0.0976908,0.31065,0.376793,0.00902462,0.0886862,0.180961,0.100372,0.171737,0.925872,0.620009,0.286049,0.87409,0.796021,0.769104,0.477432,0.327407,0.549602,0.481141,0.391111,0.711333,0.295713,0.453279,0.814637,0.794656,0.474151,0.739409,0.418083,0.141569,0.70944,0.549823,0.109928,0.683947,0.39353,0.294822,0.814043,0.446607,0.316676,0.624099,0.660861,0.586962,0.533117,0.898089,0.529488,0.0805262,0.382816,0.00572306,0.0411731,0.674937,0.391585,0.108068,0.577333,0.851298,0.247259,0.494648,0.24381,0.742455,0.705383,0.209827,0.463082,0.862616,0.575068,0.455682,0.777713,0.24719,0.911001,0.856099,0.611289,0.92935,0.503671,0.29536,0.782476,0.0995282,0.895602,0.80656,0.510522,0.883406,0.102819,0.0239233,0.148285,0.695617,0.975816,0.0874817,0.197751,0.587876,0.289293,0.0389091,0.587545,0.839252,0.217182,0.511348,0.641349,0.0637519,0.390112,0.962956,0.0375205,0.109736,0.469484,0.0882158,0.576915,0.920095,0.366413,0.759172,0.187947,0.461866,0.103662,0.291546,0.462428,0.540197,0.0867206,0.982499,0.919472,0.604227,0.965377,0.722853,0.75945,0.420465,0.557552,0.619001,0.59324,0.881935,0.0950561,0.134836,0.0439485,0.191613,0.344148,0.760926,0.903704,0.538874,0.536684,0.429727,0.542792,0.799424,0.978817,0.458335,0.929576,0.883205,0.0185258,0.934687,0.68575,0.626156,0.328135,0.00466609,0.0768535,0.0829107,0.253325,0.414399,0.937183,0.190362,0.562746,0.408196,0.319181,0.0867912,0.295007,0.199381,0.0361182,0.65438,0.552546,0.0119645,0.514157,0.209482,0.64785,0.656279,0.0964189,0.648594,0.0485927,0.331709,0.411253,0.384358,0.508641,0.778332,0.9285,0.418278,0.0950787,0.0208037,0.542667,0.0147201,0.464833,0.600166,0.282057,0.3135,0.429911,0.435655,0.384121,0.152024,0.908411,0.734304,0.195107,0.864794,0.103992,0.321918,0.37175,0.616577,0.103459,0.191355,0.982593,0.973188,0.996222,0.12201,0.213961,0.296204,0.321976,0.26313,0.915411,0.0398845,0.808149,0.693488,0.724501,0.857974,0.534728,0.989225,0.26771,0.873508,0.808021,0.382872,0.00588048,0.677176,0.950231,0.628018,0.39907,0.591059,0.206113,0.38502,0.579134,0.809777,0.506642,0.937033,0.502629,0.44578,0.237513,0.201416,0.197733,0.812794,0.237485,0.921573,0.96243,0.846137,0.762105,0.771267,0.444241,0.378079,0.796138,0.888667,0.268756,0.353413,0.936488,0.0539608,0.370854,0.0244722,0.965273,0.603076,0.940157,0.447779,0.446492,0.268868,0.324884,0.689464,0.599657,0.0399085,0.308327,0.7902,0.396055,0.170827,0.262707,0.456836,0.0078277,0.526892,0.848777,0.846309,0.439013,0.930024,0.948689,0.749051,0.153808,0.481533,0.0293981,0.118222,0.40123,0.238175,0.802045,0.176624,0.213501,0.341337,0.470868,0.54542,0.343079,0.920819,0.804985,0.939368,0.787227,0.397676,0.795827,0.104149,0.960326,0.808555,0.144569,0.587352,0.4825,0.862019,0.62963,0.508262,0.335307,0.457858,0.141128,0.716949,0.666071,0.594292,0.339296,0.629211,0.419037,0.397539,0.887797,0.526956,0.734428,0.927782,0.302971,0.624047,0.489336,0.0114451,0.773316,0.463678,0.0142143,0.790649,0.513765,0.94631,0.336012,0.663037,0.930248,0.727227,0.550231,0.521819,0.298551,0.0769913,0.0232263,0.314452,0.296249,0.539927,0.858333,0.507851,0.320851,0.732415,0.921185,0.369206,0.329317,0.571226,0.947561,0.164051,0.961822,0.196967,0.524254,0.663386,0.736325,0.843791,0.232845,0.971842,0.035572,0.324865,0.718202,0.882042,0.218679,0.472072,0.485093,0.311603,0.288099,0.559775,0.46298,0.256206,0.627403,0.822594,0.799948,0.044818,0.569303,0.401916,0.969198,0.0387216,0.830598,0.241724,0.523407,0.584667,0.291157,0.683374,0.0583172,0.435506,0.165097,0.781361,0.941736,0.435155,0.0107421,0.973798,0.333397,0.439896,0.0490891,0.567262,0.601862,0.634518,0.41751,0.798246,0.210138,0.516271,0.373171,0.496775,0.122024,0.953693,0.887988,0.404787,0.99189,0.0961752,0.224112,0.986301,0.80891,0.46275,0.615025,0.576237,0.874913,0.505959,0.134515,0.117436,0.127174,0.783495,0.141198,0.92316,0.304222,0.10144,0.0519928,0.159226,0.702276,0.892003,0.868906,0.000599742,0.851052,0.702429,0.742364,0.53622,0.389291,0.455652,0.541378,0.937547,0.276186,0.973618,0.0791612,0.346139,0.00387025,0.563583,0.791698,0.644812,0.590186,0.616738,0.857116,0.284618,0.125046,0.646047,0.942234,0.654175,0.59714,0.568653,0.219369,0.611379,0.433691,0.156146,0.876752,0.6169,0.548607,0.49342,0.570604,0.792332,0.735532,0.577296,0.352428,0.103231,0.429846,0.0737697,0.646146,0.478247,0.581307,0.458862,0.450369,0.353727,0.478326,0.800456,0.770798,0.77428,0.638289,0.15578,0.318309,0.346927,0.433154,0.0807894,0.222294,0.73263,0.346334,0.163792,0.938687,0.248641,0.876894,0.355673,0.244596,0.538517,0.834849,0.355553,0.469909,0.509722,0.187948,0.0850158,0.763825,0.0822589,0.584988,0.711987,0.480236,0.756983,0.580142,0.973496,0.920469,0.831794,0.610994,0.296012,0.0178012,0.543864,0.494012,0.329223,0.0246389,0.406138,0.938867,0.35358,0.252017,0.702509,0.902903,0.19948,0.108569,0.0996938,0.430972,0.00599551,0.779167,0.715799,0.442825,0.011201,0.171472,0.907149,0.0143265,0.426379,0.0117901,0.982146,0.668709,0.163598,0.226626,0.772089,0.312753,0.331287,0.567017,0.281873,0.87194,0.959764,0.610052,0.32168,0.944763,0.627408,0.284633,0.688694,0.0375444,0.450767,0.144988,0.652359,0.698304,0.138264,0.539868,0.0253015,0.865383,0.519483,0.591478,0.711505,0.488916,0.0402499,0.452433,0.0300826,0.873659,0.831068,0.875394,0.957002,0.972121,0.972555,0.0765244,0.75152,0.183591,0.174229,0.140716,0.313947,0.371985,0.221011,0.811979,0.961187,0.578098,0.363352,0.990536,0.908882,0.491986,0.609886,0.573976,0.160675,0.816218,0.260475,0.880937,0.360798,0.0656319,0.328874,0.828065,0.359215,0.681233,0.852626,|0.101596,0.399656,0.627288,0.911063,0.491217,0.388934,0.852441,0.844931,0.449133,0.587487,0.865132,0.486557,0.567358,0.0857736,0.0523052,0.704089,0.568224,0.343718,0.855174,0.895285,0.221374,0.532643,0.0898243,0.144852,0.555592,0.451964,0.228999,0.695801,0.116028,0.704447,0.0337729,0.123598,0.459719,0.0865144,0.559609,0.0704696,0.605445,0.612289,0.79512,0.206056,0.367809,0.980218,0.10674,0.401063,0.864532,0.944983,0.625711,0.9111,0.194582,0.0621886,0.981627,0.944967,0.0214505,0.7309,0.136905,0.62776,0.211805,0.214906,0.528304,0.69425,0.649612,0.840582,0.646161,0.446996,0.3027,0.861118,0.014778,0.620515,0.799949,0.870838,0.0504696,0.291975,0.521274,0.858046,0.463553,0.923756,0.929353,0.537145,0.382396,0.873282,0.706236,0.697414,0.843553,0.55719,0.418761,0.17245,0.633955,0.491285,0.0612037,0.255094,0.264595,0.425221,0.0473329,0.214402,0.308878,0.270807,0.316427,0.618572,0.735496,0.139151,0.98596,0.63408,0.684498,0.915846,0.110735,0.503052,0.914091,0.356313,0.851727,0.854263,0.903349,0.0599999,0.99352,0.210856,0.7713,0.348117,0.848566,0.863508,0.381901,0.579549,0.938856,0.563628,0.410626,0.317965,0.797542,0.779317,0.980205,0.757501,0.0155465,0.838161,0.854887,0.106375,0.709109,0.757417,0.744759,0.919331,0.289173,0.378914,0.375442,0.0670289,0.5087,0.988317,0.0131547,0.158001,0.165274,0.754121,0.939514,0.121376,0.960409,0.044894,0.932991,0.222224,0.345962,0.832514,0.621276,0.381846,0.823072,0.972672,0.586444,0.359499,0.467395,0.15109,0.206991,0.204413,0.295412,0.342692,0.756842,0.173344,0.0992437,0.0512493,0.837168,0.161885,0.094989,0.664703,0.118971,0.485094,0.0726118,0.403792,0.18043,0.293302,0.103507,0.0938459,0.178707,0.852238,0.24061,0.596559,0.753747,0.116903,0.574849,0.354875,0.23192,0.833329,0.361377,0.648835,0.811078,0.332414,0.381867,0.521851,0.944715,0.656363,0.238573,0.0952253,0.987881,0.415422,0.549474,0.186054,0.717979,0.40749,0.873238,0.20033,0.918593,0.932802,0.708511,0.879535,0.171948,0.339278,0.685314,0.284066,0.270383,0.610775,0.225815,0.367055,0.668008,0.3296,0.496739,0.147142,0.54046,0.962503,0.996696,0.0340424,0.908502,0.860978,0.917736,0.763102,0.690413,0.253877,0.282878,0.909369,0.72674,0.00307024,0.0826216,0.0528503,0.063715,0.651103,0.765227,0.603222,0.500114,0.692348,0.681472,0.0791935,0.663376,0.480466,0.813904,0.678521,0.787128,0.266719,0.338308,0.356636,0.882741,0.556026,0.683422,0.886375,0.345644,0.109118,0.10122,0.655147,0.930524,0.243136,0.142928,0.275935,0.367459,0.38658,0.200075,0.275708,0.766496,0.421995,0.675328,0.00448364,0.0511769,0.183546,0.718828,0.15759,0.721739,0.56462,0.962339,0.00555354,0.46527,0.470582,0.511399,0.859983,0.735513,0.293557,0.616123,0.194595,0.503681,0.593541,0.571935,0.411091,0.833274,0.788541,0.429332,0.320729,0.738879,0.19127,0.471778,0.643591,0.888719,0.552317,0.882034,0.750191,0.165418,0.859528,0.900253,0.819479,0.851579,0.636986,0.422027,0.840545,0.378424,0.276853,0.900539,0.489329,0.529313,0.324726,0.325827,0.58048,0.18545,0.589704,0.827797,0.976224,0.138196,0.336735,0.650467,0.637765,0.215955,0.13282,0.957573,0.601771,0.224453,0.599899,0.552534,0.148994,0.781857,0.362018,0.454943,0.721029,0.311212,0.804202,0.487899,0.34866,0.0533082,0.754303,0.501961,0.742239,0.515161,0.816407,0.896931,0.231563,0.429798,0.811447,0.902754,0.314242,0.445935,0.898402,0.0478669,0.280612,0.107597,0.930851,0.0801468,0.688982,0.0888559,0.641858,0.694071,0.876213,0.33163,0.823516,0.746053,0.90835,0.210791,0.047879,0.695595,0.949109,0.635377,0.429792,0.56092,0.382425,0.144724,0.308814,0.295636,0.528552,0.431224,0.662353,0.328462,0.786204,0.9157,0.960826,0.516163,0.680327,0.446035,0.690418,0.00894076,0.305415,0.933405,0.414623,0.104414,0.844672,0.422923,0.813087,0.32772,0.295912,0.208364,0.661317,0.72241,0.15595,0.37734,0.27439,0.0882033,0.834211,0.884884,0.527773,0.918605,0.0634561,0.107712,0.276634,0.388103,0.713487,0.275474,0.772123,0.840921,0.70133,0.805324,0.647008,0.404467,0.469122,0.38873,0.339059,0.913245,0.808853,0.506708,0.974056,0.935304,0.123736,0.780708,0.976948,0.647629,0.0260341,0.594661,0.951499,0.632026,0.859166,0.0101296,0.330478,0.696706,0.362726,0.679615,0.660306,0.290059,0.0324771,0.796657,0.130255,0.542773,0.728265,0.923643,0.0499611,0.576589,0.647802,0.385453,0.616236,0.318225,0.932686,0.140568,0.439772,0.429544,0.0216552,0.68954,0.64862,0.311915,0.541177,0.385466,0.348054,0.496987,0.226309,0.477637,0.228547,0.466477,0.86569,0.43094,0.807589,0.943164,0.901954,0.409634,0.378375,0.36467,0.762347,0.435441,0.370867,0.835179,0.207909,0.981745,0.468696,0.226011,0.137578,0.277601,0.634648,0.68334,0.491033,0.514714,0.103484,0.911451,0.452651,0.278393,0.44527,0.210785,0.7825,0.716514,0.644588,0.280391,0.674877,0.324379,0.518095,0.844649,0.516903,0.207084,0.887286,0.276345,0.889884,0.473435,0.513509,0.120161,0.597985,0.81891,0.823965,0.392107,0.402378,0.150683,0.595815,0.732839,0.260145,0.542911,0.14069,0.545583,0.710914,0.127203,0.418151,0.685219,0.893891,0.0154111,0.621329,0.384348,0.648402,0.720612,0.120546,0.00912744,0.985781,0.147996,0.830765,0.783026,0.835536,0.847281,0.748701,0.0258458,0.252244,0.881725,0.28045,0.82221,0.241489,0.885374,0.119009,0.552648,0.737452,0.341108,0.616026,0.715175,0.420946,0.426479,0.229678,0.892024,0.052,0.370083,0.517033,0.441778,0.105276,0.3758,0.876394,0.157589,0.386531,0.951489,0.695211,0.709375,0.630016,0.469886,0.713369,0.317296,0.260109,0.941772,0.60096,0.554298,0.948621,0.997944,0.956443,0.284136,0.0421162,0.406067,0.0888393,0.536207,0.45004,0.649285,0.014771,0.600385,0.280681,0.706143,0.421573,0.906281,0.913206,0.412153,0.786226,0.893337,0.101365,0.295071,0.598216,0.441004,0.281601,0.891774,0.281308,0.388695,0.818459,0.0284162,0.783506,0.956182,0.0192973,0.420928,0.690836,0.579585,0.443573,0.185405,0.751088,0.259199,0.0800611,0.869078,0.595815,0.983282,0.646251,0.633422,0.921071,0.79993,0.0173835,0.582685,0.468116,0.0425382,0.058126,0.871116,0.410675,0.974217,0.369296,0.963308,0.0500764,0.234773,0.883286,0.396956,0.232884,0.321279,0.654196,0.445299,0.517769,0.0805443,0.746872,0.388345,0.373034,0.394529,0.500881,0.233801,0.987267,0.310188,0.708666,0.418973,0.651011,0.0284687,0.276109,0.503453,0.27306,0.50831,0.813507,0.0399068,0.480342,0.00598103,0.207585,0.239537,0.657493,0.661272,0.746026,0.228793,0.0313748,0.563781,0.648795,0.973508,0.228486,0.0648434,0.644314,0.536801,0.476246,0.178522,0.543387,0.956368,0.0273125,0.240277,0.109472,0.125714,0.111328,0.356783,0.678605,0.455881,0.899593,0.4885,0.782307,0.915387,0.59259,0.546426,0.315796,0.257702,0.461764,0.599041,0.28241,0.391924,0.806789,0.0363012,0.0570133,0.696229,0.723373,0.115288,0.506029,0.938581,0.813505,0.253492,0.379867,0.0628468,0.734888,0.967175,0.62858,0.0455138,0.117185,0.27267,0.660133,0.239084,0.393483,0.332238,0.752772,0.87325,0.682535,0.118659,0.76685,0.178702,0.957039,0.589853,0.643618,0.695208,0.447187,0.88848,0.931042,0.54391,0.0107133,0.590997,0.0103835,0.48906,0.25294,0.582711,0.309757,0.604568,0.978642,0.125099,0.1775,0.0135425,0.245781,0.0800068,0.699411,0.333802,0.919589,0.867142,0.895554,0.43404,0.523117,0.613501,0.237991,0.381677,0.141813,0.690162,0.250701,0.486227,0.67348,0.0021286,0.107025,0.851241,0.63255,0.280387,0.980405,0.331867,0.201255,0.38841,0.842928,0.108865,0.443428,0.487677,0.13434,0.378171,0.836813,0.167619,0.165207,0.770935,0.192801,0.10101,0.758695,0.19696,0.471461,0.686339,0.676534,0.238281,0.873112,0.113133,0.0163897,0.765778,0.441428,0.687837,0.443365,0.00398588,0.422949,0.243323,0.0477431,0.144529,0.0415936,0.187074,0.521289,0.574874,0.016566,0.0313529,0.677929,0.24548,0.662418,0.494974,0.913566,0.572267,0.996005,0.597005,0.525734,0.0908458,0.419317,0.516077,0.57964,0.00730556,0.263499,0.893478,0.794155,0.471169,0.925073,0.935058,0.654826,0.129269,0.77215,0.836581,0.508283,0.165812,0.521124,0.0788953,0.356769,0.603548,0.222929,0.694995,0.992592,0.582374,0.18023,0.0621532,0.95674,0.54439,0.333262,0.251797,0.157361,0.350128,0.839851,0.544732,0.7717,0.679576,0.590098,0.66813,0.783808,0.302483,0.523819,0.32747,0.371264,0.545742,0.0603356,0.660001,0.352446,0.625807,0.900131,0.315376,0.769364,0.175101,0.570633,0.821377,0.65033,0.533433,0.908177,0.395385,0.190366,0.180219,0.561266,0.856562,0.318448,0.864059,0.226464,0.425245,0.932482,0.683897,0.461845,0.226234,0.697775,0.488788,0.219541,0.886556,0.69564,0.396055,0.742431,0.665091,0.563513,0.453987,0.643397,0.630991,0.0682433,0.519386,0.724281,0.616391,0.475154,0.50049,0.421801,0.790826,0.677114,0.809721,0.856468,0.807789,0.95561,0.785296,0.751966,0.959344,0.670809,0.911289,0.682092,0.0710809,0.122343,0.142947,0.407318,0.810865,0.0946701,0.0866616,0.463718,0.403526,0.526224,0.962752,0.389103,0.928292,0.733569,0.518413,0.934286,0.098968,0.178237,0.125939,0.0495705,0.939273,0.547033,0.594346,0.683395,0.81153,0.757507,0.810752,0.752577,0.726526,0.774178,0.577313,0.428094,0.893125,0.951449,0.711842,0.259934,0.370938,0.320029,0.264054,0.728653,0.957459,0.770601,0.951948,0.791339,0.227986,0.705199,0.505383,0.878671,0.431638,0.937459,0.0355701,0.814696,0.456727,0.0681822,0.0956745,0.52961,|0.670715,0.0401252,0.302561,0.561131,0.792486,0.785787,0.618809,0.569542,0.11956,0.421327,0.554435,0.0628471,0.97882,0.999513,0.432615,0.723771,0.131256,0.983156,0.0183821,0.119733,0.641466,0.869485,0.574943,0.494891,0.435056,0.541803,0.352732,0.248402,0.587051,0.496472,0.491336,0.151344,0.550593,0.366809,0.338917,0.193021,0.0880741,0.770119,0.18436,0.282283,0.419558,0.763026,0.920477,0.0274116,0.129506,0.818812,0.545926,0.431856,0.722384,0.228731,0.100757,0.255942,0.814661,0.459481,0.392457,0.302651,0.978298,0.521854,0.827833,0.0775769,0.620757,0.714088,0.676306,0.0104077,0.690286,0.883155,0.000683427,0.964876,0.669282,0.314416,0.788604,0.00725949,0.952242,0.915383,0.499672,0.409862,0.913468,0.0892422,0.162053,0.926336,0.213918,0.125685,0.752592,0.618149,0.127098,0.395119,0.201725,0.424571,0.649248,0.356617,0.0655178,0.564981,0.206155,0.962507,0.0942029,0.434429,0.164828,0.533105,0.134257,0.693368,0.19687,0.443018,0.990102,0.798569,0.440789,0.91165,0.61526,0.566087,0.817244,0.610164,0.746006,0.172919,0.857466,0.135837,0.809591,0.901868,0.242995,0.159498,0.384093,0.382699,0.867863,0.310802,0.917966,0.235777,0.906576,0.197298,0.774186,0.049753,0.515015,0.615171,0.519211,0.944341,0.313859,0.0806869,0.508201,0.162677,0.72435,0.967675,0.280554,0.315572,0.925861,0.169263,0.718618,0.631608,0.906589,0.408531,0.374622,0.254386,0.0912327,0.279306,0.687606,0.732014,0.645295,0.118497,0.660027,0.89332,0.716206,0.101425,0.419977,0.332652,0.910607,0.549351,0.456008,0.938963,0.432022,0.947356,0.906618,0.661229,0.071564,0.998285,0.443874,0.577908,0.661287,0.184658,0.823916,0.757329,0.812638,0.834823,0.117273,0.645481,0.729934,0.1708,0.634444,0.957829,0.498728,0.704437,0.815903,0.570755,0.598709,0.327518,0.180344,0.276008,0.731378,0.898068,0.220224,0.292392,0.801999,0.571113,0.23641,0.65241,0.688851,0.207982,0.762021,0.575813,0.545858,0.129059,0.563844,0.264227,0.527297,0.0348995,0.372648,0.0701111,0.111096,0.376321,0.104481,0.0660859,0.0859942,0.219015,0.468413,0.669956,0.942027,0.326882,0.626343,0.0886651,0.97673,0.311228,0.80469,0.225523,0.778815,0.325772,0.937038,0.945154,0.961923,0.0630689,0.604706,0.673876,0.849141,0.0675046,0.966632,0.796218,0.736529,0.646985,0.42891,0.650797,0.10828,0.215083,0.182264,0.211257,0.261956,0.0115117,0.803246,0.245031,0.5393,0.735568,0.379626,0.664837,0.256815,0.0577638,0.808055,0.150015,0.177323,0.654048,0.201816,0.834346,0.243724,0.354079,0.574969,0.0335509,0.373546,0.351258,0.957141,0.0133214,0.0404806,0.765192,0.634481,0.0588723,0.358636,0.0368025,0.539342,0.172025,0.0245929,0.270755,0.407482,0.381085,0.763627,0.73096,0.18586,0.865698,0.689373,0.895004,0.344672,0.443346,0.423886,0.919281,0.191077,0.29827,0.49709,0.792769,0.754892,0.264201,0.0170009,0.499809,0.310333,0.0170953,0.595218,0.508336,0.663693,0.62431,0.554819,0.571695,0.577098,0.751356,0.993089,0.253596,0.977138,0.311022,0.26929,0.804285,0.0951314,0.326751,0.954466,0.756638,0.503873,0.513258,0.981859,0.520434,0.984683,0.84823,0.735294,0.636742,0.777445,0.358299,0.513691,0.764779,0.976116,0.41857,0.53733,0.499286,0.81372,0.639047,0.378297,0.0730034,0.456664,0.133321,0.0364,0.357546,0.597893,0.220173,0.534298,0.822865,0.237388,0.760806,0.87371,0.955305,0.445381,0.294035,0.432817,0.237161,0.619936,0.863967,0.779047,0.880375,0.76118,0.152866,0.99909,0.829956,0.824386,0.602226,0.507975,0.29677,0.392934,0.578609,0.611577,0.17422,0.723911,0.336244,0.748186,0.0275296,0.666937,0.217481,0.325766,0.918719,0.608716,0.636349,0.241775,0.399284,0.208093,0.622415,0.134102,0.858182,0.568962,0.378528,0.155565,0.44134,0.184831,0.466803,0.259049,0.916742,0.108674,0.709449,0.263236,0.0282265,0.470217,0.868027,0.400129,0.629546,0.329303,0.547567,0.79108,0.738904,0.1215,0.0891247,0.420099,0.613962,0.338255,0.732908,0.86513,0.971065,0.0973783,0.147877,0.912752,0.681553,0.172141,0.90366,0.509736,0.217027,0.0889215,0.681161,0.74149,0.768893,0.045902,0.372047,0.705634,0.722978,0.403082,0.848591,0.291698,0.777838,0.32424,0.645012,0.0787237,0.459632,0.451653,0.377338,0.778196,0.688091,0.118946,0.114376,0.674823,0.881898,0.411493,0.171472,0.303425,0.717468,0.628163,0.510837,0.273404,0.140812,0.0777165,0.694543,0.735566,0.312466,0.744409,0.381698,0.310135,0.596787,0.916206,0.456297,0.745995,0.645536,0.170399,0.00805789,0.431493,0.724256,0.963262,0.730235,0.635803,0.123763,0.190769,0.539357,0.690105,0.267959,0.0892552,0.109235,0.153006,0.639973,0.348672,0.563898,0.427177,0.782877,0.195245,0.156256,0.31732,0.859854,0.207335,0.739403,0.107676,0.206187,0.16828,0.153989,0.15502,0.560113,0.486943,0.36789,0.215317,0.697339,0.641393,0.0873471,0.647518,0.676148,0.947496,0.0239748,0.191918,0.897146,0.274406,0.560931,0.796661,0.117612,0.367667,0.365273,0.627179,0.377562,0.0465028,0.727046,0.441329,0.846465,0.432719,0.378249,0.29511,0.0428657,0.0751569,0.0548154,0.857751,0.260866,0.920327,0.280703,0.374476,0.610086,0.757448,0.785053,0.347002,0.118163,0.840749,0.686124,0.581158,0.182692,0.51131,0.639536,0.137997,0.657843,0.975689,0.652754,0.861931,0.46556,0.982161,0.640667,0.126369,0.464689,0.00516176,0.150518,0.699041,0.805076,0.709881,0.665759,0.744173,0.271122,0.769213,0.0593269,0.659538,0.825843,0.47738,0.596142,0.239909,0.965583,0.955504,0.0067718,0.713154,0.540689,0.579509,0.703689,0.467368,0.859209,0.375691,0.942727,0.911997,0.747144,0.355936,0.698727,0.165308,0.0679266,0.339704,0.613879,0.336844,0.381109,0.340223,0.983988,0.37752,0.754522,0.213516,0.142442,0.661936,0.696195,0.709443,0.00526452,0.313034,0.681442,0.018616,0.388674,0.655243,0.0505507,0.188853,0.83993,0.61408,0.563326,0.917665,0.773831,0.291169,0.916074,0.99436,0.910973,0.186971,0.56174,0.793545,0.981009,0.44338,0.170169,0.846233,0.781249,0.847496,0.949021,0.496359,0.289746,0.934617,0.815557,0.0946472,0.0610543,0.535567,0.248703,0.718759,0.308743,0.308452,0.393646,0.366676,0.878333,0.7279,0.984663,0.374038,0.431611,0.512268,0.782641,0.645445,0.422732,0.0437858,0.274831,0.763238,0.729849,0.0966976,0.385493,0.177252,0.869405,0.301619,0.417145,0.148473,0.672244,0.352785,0.313634,0.253947,0.725389,0.708304,0.325437,0.437461,0.175021,0.188186,0.908219,0.944215,0.508228,0.686379,0.929209,0.136182,0.916163,0.25698,0.490865,0.498015,0.207023,0.635601,0.51404,0.884359,0.469233,0.801242,0.986993,0.851254,0.502678,0.434588,0.344989,0.209397,0.168049,0.128236,0.631951,0.380687,0.987139,0.756904,0.984642,0.399706,0.886992,0.701335,0.143092,0.915944,0.862134,0.0888901,0.172978,0.75185,0.916211,0.512571,0.162485,0.193574,0.772995,0.157199,0.895626,0.964137,0.373083,0.203883,0.887813,0.866893,0.0316032,0.031814,0.1685,0.44069,0.595155,0.375823,0.759408,0.675809,0.465952,0.603153,0.555831,0.693469,0.901829,0.375469,0.728632,0.000141263,0.904522,0.472086,0.414654,0.0602401,0.161263,0.918796,0.793668,0.477514,0.0264966,0.775075,0.940172,0.71523,0.256462,0.949874,0.32269,0.820195,0.23513,0.942676,0.836723,0.555132,0.711593,0.50521,0.263946,0.584547,0.19223,0.367021,0.608744,0.03095,0.201155,0.766151,0.262018,0.400098,0.658895,0.258851,0.490949,0.552249,0.670409,0.763811,0.319882,0.771663,0.802212,0.224922,0.182203,0.0179793,0.1203,0.148373,0.960656,0.637169,0.594964,0.565318,0.141091,0.626578,0.954362,0.913036,0.414153,0.106158,0.952919,0.450863,0.253421,0.244308,0.00767857,0.264731,0.330343,0.239855,0.706152,0.0243954,0.794027,0.88117,0.191374,0.157796,0.796232,0.503199,0.389135,0.258624,0.986142,0.981321,0.00344872,0.444849,0.64435,0.814771,0.910709,0.783297,0.919138,0.0386208,0.492274,0.680376,0.347904,0.367968,0.99561,0.567163,0.600554,0.669895,0.185645,0.338307,0.943011,0.676241,0.134879,0.649712,0.0292221,0.495555,0.268536,0.968979,0.884617,0.253595,0.302959,0.771199,0.919649,0.57102,0.339164,0.484443,0.785548,0.0257927,0.415876,0.711139,0.364617,0.768551,0.477513,0.122931,0.480374,0.847535,0.867425,0.56255,0.694854,0.666028,0.808202,0.210343,0.894536,0.808206,0.705463,0.285815,0.340949,0.0722137,0.427024,0.644642,0.0957323,0.748645,0.462173,0.00506932,0.0849177,0.604141,0.0140948,0.00213271,0.183194,0.637197,0.732753,0.719695,0.880705,0.00778586,0.94954,0.250805,0.204533,0.892802,0.0259287,0.907029,0.899189,0.986272,0.930467,0.989696,0.117886,0.991277,0.449232,0.667126,0.317562,0.210706,0.411764,0.611954,0.010978,0.936863,0.276757,0.461887,0.515141,0.629118,0.775145,0.557936,0.799643,0.807776,0.840949,0.0222735,0.83494,0.580391,0.780422,0.400211,0.295174,0.963405,0.799989,0.372946,0.362182,0.708991,0.300892,0.426625,0.29432,0.589369,0.636379,0.814223,0.133461,0.251864,0.305112,0.178306,0.625248,0.837432,0.150291,0.47883,0.500831,0.684668,0.0795805,0.200042,0.807999,0.997192,0.521089,0.481783,0.890221,0.209059,0.907945,0.592391,0.317493,0.115458,0.502672,0.665151,0.827502,0.0854428,0.164479,0.411639,0.0259843,0.203256,0.0191654,0.896521,0.27652,0.0330299,0.189728,0.952033,0.335904,0.500537,0.545856,0.693987,0.247958,0.50017,0.798375,0.676369,0.696045,0.663024,0.0506327,0.806452,0.115031,0.558582,0.612762,0.184011,0.238944,0.523201,0.690156,0.0690724,0.105719,0.303881,0.343571,0.135339,0.689079,0.229409,0.959096,0.428796,0.761411,0.579895,0.99644,|0.269885,0.336821,0.543786,0.568835,0.0692978,0.348027,0.803283,0.370845,0.070052,0.597859,0.698695,0.308226,0.588401,0.447033,0.0067929,0.471049,0.694482,0.437407,0.078095,0.156461,0.813275,0.178521,0.0941607,0.794489,0.658997,0.931393,0.85296,0.595622,0.61432,0.0418036,0.716063,0.939073,0.123257,0.364814,0.879366,0.319816,0.600264,0.21085,0.236044,0.484481,0.637332,0.916231,0.145081,0.363458,0.0313913,0.870854,0.454181,0.639473,0.626005,0.284818,0.0794721,0.406195,0.447433,0.657396,0.649352,0.383773,0.663576,0.844443,0.484036,0.848894,0.973367,0.622163,0.490044,0.846641,0.848306,0.00112092,0.385315,0.953189,0.61906,0.838077,0.713265,0.651996,0.243551,0.229528,0.0039072,0.399785,0.426855,0.449452,0.331472,0.783186,0.174515,0.770622,0.314416,0.620556,0.183022,0.929634,0.447468,0.458682,0.300464,0.934604,0.804687,0.546878,0.980454,0.833284,0.840321,0.165813,0.21699,0.197155,0.0967577,0.854494,0.209676,0.453794,0.214845,0.301642,0.293154,0.893368,0.913418,0.190235,0.485106,0.0251877,0.0248385,0.319736,0.637118,0.381164,0.198762,0.980523,0.710039,0.956552,0.538357,0.781878,0.935867,0.0813272,0.590727,0.671116,0.155284,0.810095,0.841285,0.267884,0.408604,0.741468,0.123556,0.978079,0.102475,0.144419,0.873437,0.541954,0.522044,0.959196,0.265198,0.486138,0.941753,0.693792,0.47917,0.0808359,0.0734798,0.781273,0.141908,0.360106,0.726867,0.273179,0.180252,0.0169867,0.931008,0.762803,0.233582,0.447245,0.751795,0.711583,0.951323,0.0774534,0.517181,0.188263,0.226968,0.999882,0.247175,0.119976,0.844103,0.703052,0.414512,0.206573,0.0152017,0.159121,0.559658,0.142915,0.205924,0.848661,0.253698,0.302834,0.680126,0.00252396,0.111295,0.477986,0.722547,0.948417,0.519005,0.079832,0.629648,0.276125,0.87167,0.981194,0.166106,0.607861,0.815017,0.446033,0.667156,0.314741,0.284649,0.587395,0.135305,0.811423,0.567126,0.926284,0.650427,0.319158,0.0574623,0.10254,0.849053,0.289256,0.743331,0.399598,0.246296,0.0593259,0.410783,0.891886,0.75392,0.116425,0.855084,0.515615,0.229508,0.338981,0.350321,0.304208,0.761527,0.0461408,0.189807,0.487102,0.573514,0.319153,0.444849,0.462432,0.503723,0.5483,0.688058,0.269044,0.994722,0.0875977,0.645424,0.0112747,0.249201,0.594563,0.876673,0.82505,0.0406132,0.539555,0.870328,0.615822,0.896128,0.822486,0.558341,0.941168,0.946351,0.502465,0.704863,0.0337113,0.600075,0.141353,0.98225,0.562641,0.899094,0.427927,0.860652,0.807328,0.988241,0.226222,0.972925,0.0538663,0.0317207,0.717175,0.715789,0.0329468,0.121985,0.973845,0.579617,0.109223,0.0788603,0.24707,0.805871,0.293596,0.835695,0.345987,0.0881125,0.375887,0.660492,0.661769,0.455167,0.505924,0.623813,0.186933,0.697034,0.480564,0.0930191,0.373173,0.202593,0.241665,0.0464363,0.492837,0.712725,0.335675,0.0921287,0.829475,0.16337,0.519579,0.78118,0.190276,0.361504,0.217348,0.24233,0.380179,0.019854,0.155883,0.527757,0.542361,0.320478,0.877865,0.6215,0.258103,0.914913,0.183333,0.791298,0.787509,0.744042,0.14986,0.660518,0.435435,0.124661,0.710076,0.686376,0.072544,0.652653,0.644784,0.309065,0.637131,0.331175,0.138734,0.453543,0.719481,0.832921,0.0191192,0.925089,0.305452,0.316457,0.119004,0.98653,0.376973,0.0193822,0.494281,0.183207,0.495584,0.94711,0.279143,0.34331,0.477483,0.657298,0.716456,0.162589,0.313802,0.451445,0.302671,0.880068,0.315475,0.427444,0.260172,0.806238,0.758572,0.843941,0.535885,0.614711,0.16705,0.512887,0.970636,0.586651,0.79982,0.68246,0.423899,0.0269796,0.695314,0.686571,0.112326,0.43908,0.894983,0.98879,0.366459,0.789633,0.877101,0.573793,0.208913,0.813729,0.843509,0.167767,0.415526,0.655319,0.594242,0.375708,0.859871,0.0252357,0.0801618,0.887646,0.231062,0.167968,0.300725,0.594556,0.356549,0.956183,0.764506,0.547452,0.503275,0.668597,0.37905,0.862413,0.931633,0.154129,0.849892,0.24057,0.571456,0.0917273,0.14793,0.916547,0.381976,0.834086,0.385918,0.927196,0.992293,0.876907,0.659394,0.613949,0.505371,0.187543,0.634088,0.270818,0.758586,0.208277,0.364957,0.271452,0.866091,0.00112581,0.436915,0.803371,0.37214,0.00708544,0.382254,0.846891,0.278279,0.177665,0.457227,0.419086,0.529535,0.360147,0.220306,0.687199,0.446141,0.795186,0.461992,0.583629,0.497238,0.124302,0.82628,0.526471,0.101759,0.689435,0.991936,0.918999,0.36196,0.934371,0.767516,0.960921,0.828633,0.327629,0.239683,0.76283,0.151539,0.26886,0.723702,0.444493,0.49033,0.674406,0.0323603,0.196378,0.212053,0.531524,0.794456,0.392238,0.968808,0.136032,0.996642,0.187141,0.950231,0.426372,0.842703,0.818976,0.229577,0.555197,0.0345959,0.458706,0.281456,0.751487,0.470723,0.0373023,0.423115,0.619203,0.274692,0.481457,0.786092,0.427594,0.360422,0.75563,0.716037,0.607497,0.165618,0.491543,0.919125,0.249827,0.727118,0.647178,0.611718,0.191967,0.474413,0.708846,0.588183,0.336599,0.885042,0.5884,0.478578,0.270448,0.925898,0.979363,0.276354,0.182174,0.685564,0.312734,0.772167,0.703983,0.28942,0.349932,0.842843,0.168448,0.231643,0.976942,0.473256,0.506239,0.727665,0.428552,0.693357,0.409794,0.433019,0.0229037,0.303388,0.775404,0.500946,0.593097,0.723826,0.736219,0.461101,0.837303,0.499614,0.744329,0.432608,0.387181,0.0797347,0.0134411,0.327624,0.439485,0.243345,0.552823,0.598492,0.0531715,0.0113115,0.0658097,0.867246,0.902132,0.313424,0.0696135,0.679475,0.455795,0.810965,0.882242,0.637764,0.663515,0.205483,0.37656,0.449809,0.946456,0.329491,0.0999297,0.725083,0.588202,0.565936,0.573972,0.54709,0.069667,0.828351,0.805789,0.414363,0.134114,0.137321,0.111645,0.405821,0.36261,0.103098,0.122072,0.935094,0.39961,0.920421,0.0860826,0.793157,0.316269,0.82706,0.00129575,0.956256,0.711966,0.537138,0.534478,0.896759,0.325568,0.410943,0.723983,0.65015,0.731001,0.833343,0.827418,0.10834,0.350484,0.924574,0.370402,0.484346,0.59534,0.725003,0.388463,0.884809,0.810694,0.366836,0.248468,0.534297,0.0043627,0.518871,0.234005,0.853431,0.879545,0.598868,0.80689,0.214997,0.58325,0.696831,0.127876,0.351904,0.0545717,0.683116,0.944934,0.742378,0.450543,0.557311,0.36186,0.23107,0.137057,0.965016,0.406901,0.563899,0.0463449,0.728109,0.127388,0.308253,0.653012,0.508826,0.193195,0.834815,0.962245,0.205895,0.504423,0.152899,0.304935,0.638983,0.0236409,0.438793,0.387798,0.0226029,0.0176315,0.510089,0.886316,0.0154176,0.012933,0.939409,0.246901,0.474596,0.199632,0.0490244,0.215725,0.320214,0.0606803,0.295071,0.660265,0.652409,0.7193,0.765797,0.486564,0.59443,0.672244,0.21247,0.354556,0.0258734,0.392408,0.320658,0.0590861,0.931149,0.542243,0.627755,0.35866,0.683046,0.276699,0.296348,0.254044,0.135285,0.466004,0.647541,0.885873,0.747652,0.419273,0.182859,0.363153,0.82397,0.664883,0.153053,0.78584,0.852729,0.559837,0.601783,0.502869,0.476057,0.272404,0.353403,0.874737,0.121457,0.411671,0.670444,0.866925,0.655158,0.600091,0.623208,0.354254,0.952441,0.336763,0.920704,0.680626,0.92241,0.170123,0.49101,0.116518,0.394356,0.477888,0.251487,0.858404,0.562693,0.563541,0.128316,0.0194136,0.771895,0.614978,0.689761,0.872188,0.604053,0.586257,0.557015,0.113297,0.469612,0.25833,0.698418,0.583831,0.690843,0.409833,0.150395,0.861769,0.256807,0.0797283,0.469915,0.620083,0.975366,0.918929,0.694914,0.120351,0.0483925,0.968691,0.222167,0.454477,0.636016,0.52673,0.515039,0.0132789,0.614464,0.612278,0.840739,0.314688,0.34121,0.432574,0.0900657,0.424683,0.110567,0.337537,0.257058,0.56853,0.322975,0.954914,0.38826,0.242052,0.200869,0.905066,0.128058,0.613932,0.0749624,0.214806,0.263938,0.530233,0.855261,0.0609928,0.425729,0.455103,0.113315,0.422138,0.0277811,0.79435,0.319516,0.827475,0.45373,0.26244,0.957543,0.841497,0.13735,0.994255,0.942238,0.439457,0.988013,0.751401,0.682958,0.765515,0.37694,0.253882,0.59396,0.748565,0.449081,0.564548,0.273153,0.11698,0.0618105,0.881343,0.720186,0.637494,0.712509,0.774483,0.548028,0.044085,0.852015,0.112626,0.236746,0.896514,0.0221061,0.994629,0.223341,0.843232,0.153042,0.56064,0.367865,0.330524,0.548951,0.383547,0.714837,0.724721,0.539104,0.00540936,0.795566,0.566172,0.581646,0.157598,0.217137,0.0508182,0.577344,0.0490482,0.842925,0.0690964,0.274576,0.697858,0.282782,0.586909,0.280824,0.0851727,0.562795,0.113792,0.729396,0.160294,0.174946,0.210496,0.288351,0.917432,0.26592,0.692786,0.403347,0.547975,0.0214883,0.979135,0.910693,0.352278,0.420354,0.342131,0.812079,0.341356,0.727027,0.656538,0.997522,0.295341,0.117809,0.0101187,0.538189,0.650604,0.71352,0.50411,0.878781,0.936694,0.113075,0.191566,0.469996,0.570294,0.800957,0.830383,0.653116,0.280182,0.785344,0.0919887,0.37373,0.26642,0.074782,0.758336,0.967923,0.782282,0.668612,0.751413,0.696514,0.779393,0.153476,0.517384,0.029807,0.209616,0.192887,0.470555,0.287337,0.667752,0.791067,0.152535,0.301022,0.796237,0.293903,0.124577,0.935999,0.618067,0.613198,0.462827,0.141248,0.899476,0.100165,0.549389,0.535705,0.903911,0.656673,0.0260944,0.101988,0.301541,0.0096038,0.358459,0.304953,0.226281,0.107034,0.381455,0.944234,0.014937,0.543556,0.905706,0.325406,0.00815517,0.000428021,0.0184648,0.742494,0.468087,0.856603,0.57678,0.243165,0.456162,0.373577,0.0285652,0.0732828,0.327979,0.242453,0.310547,0.533584,0.543034,0.777135,0.062565,0.68208,0.870571,0.218828,0.313663,0.658558,0.443451,0.389917,0.92842,0.590466,|0.974665,0.455761,0.64114,0.745717,0.0788859,0.418524,0.788672,0.418518,0.117672,0.585051,0.365736,0.645765,0.613682,0.279679,0.725865,0.0802649,0.430786,0.744271,0.0420099,0.248879,0.962073,0.302966,0.00318044,0.423975,0.976398,0.318246,0.58737,0.867891,0.0842211,0.14513,0.318642,0.523228,0.0567833,0.781718,0.0292978,0.642584,0.971694,0.0596983,0.714008,0.303377,0.0698659,0.497313,0.0678594,0.563424,0.771163,0.807528,0.139628,0.555465,0.722953,0.522827,0.55846,0.855471,0.836169,0.0422956,0.941453,0.571511,0.0733134,0.769342,0.158587,0.329085,0.779608,0.0413725,0.564051,0.702344,0.863322,0.186961,0.0754652,0.511646,0.577429,0.99293,0.315325,0.883866,0.946475,0.750361,0.664578,0.0523086,0.0193807,0.0580685,0.570334,0.482193,0.345265,0.776605,0.94545,0.241183,0.894789,0.738131,0.344187,0.927701,0.825223,0.280132,0.170588,0.622402,0.710158,0.379708,0.158772,0.583457,0.606266,0.792835,0.437386,0.0213699,0.167007,0.755249,0.999727,0.0189657,0.394018,0.104483,0.386258,0.701205,0.151343,0.657159,0.00296932,0.807396,0.360327,0.322095,0.244915,0.603809,0.56414,0.0225855,0.751699,0.659571,0.450713,0.780723,0.291102,0.627313,0.0227244,0.699835,0.921369,0.18509,0.414346,0.233624,0.0325133,0.511328,0.0460991,0.458367,0.0433362,0.833815,0.873106,0.944497,0.715918,0.750101,0.036792,0.867635,0.466942,0.439044,0.559095,0.812948,0.039198,0.359511,0.858831,0.41723,0.697494,0.771364,0.0496194,0.183618,0.39309,0.76471,0.235963,0.0416301,0.786707,0.58375,0.307352,0.383044,0.197858,0.588044,0.498343,0.482591,0.972144,0.000124454,0.884414,0.655456,0.426412,0.223793,0.165527,0.699496,0.206435,0.221315,0.328233,0.597024,0.437825,0.878994,0.848938,0.0467651,0.25314,0.333512,0.180679,0.730563,0.0163198,0.747669,0.346157,0.129832,0.205392,0.972927,0.193686,0.788795,0.646076,0.616839,0.663982,0.631663,0.154992,0.883588,0.893653,0.873768,0.868019,0.548628,0.263132,0.179906,0.818227,0.58321,0.045621,0.881766,0.400808,0.618159,0.186009,0.138196,0.313501,0.162262,0.858461,0.400429,0.441407,0.684886,0.628324,0.333783,0.903243,0.581754,0.572694,0.160866,0.776995,0.252784,0.874411,0.337242,0.904191,0.733584,0.271902,0.10205,0.613075,0.133517,0.805377,0.403245,0.585019,0.0673894,0.720842,0.965805,0.775323,0.429299,0.777203,0.186444,0.856305,0.862051,0.883186,0.723389,0.177412,0.0734177,0.241017,0.724449,0.507742,0.221923,0.675858,0.459407,0.487187,0.916314,0.108249,0.461106,0.842542,0.060799,0.828223,0.189911,0.937233,0.339631,0.0247332,0.102869,0.496803,0.611383,0.602177,0.0167922,0.710192,0.225498,0.76087,0.533333,0.117221,0.396975,0.486615,0.474106,0.370426,0.178783,0.515589,0.611629,0.00886118,0.800433,0.774289,0.951095,0.10183,0.798693,0.499687,0.271585,0.114168,0.614037,0.987867,0.0423239,0.202452,0.371769,0.0779809,0.885328,0.925519,0.752832,0.97285,0.859361,0.578746,0.325065,0.362169,0.165323,0.702916,0.501904,0.687697,0.775919,0.00206202,0.579081,0.234925,0.0949761,0.654474,0.187312,0.982377,0.304273,0.560409,0.150584,0.0426686,0.149992,0.501797,0.919598,0.207011,0.757929,0.471372,0.272729,0.506518,0.479644,0.0755544,0.918182,0.0377982,0.199309,0.563202,0.454113,0.320064,0.748816,0.849518,0.906322,0.804969,0.799119,0.275102,0.942929,0.425837,0.0242617,0.824963,0.799742,0.034099,0.824144,0.128832,0.834406,0.642891,0.573516,0.508356,0.93061,0.859973,0.231931,0.0573279,0.711852,0.876652,0.809269,0.958247,0.950762,0.707325,0.767885,0.808324,0.463814,0.691655,0.755298,0.50055,0.490549,0.647454,0.613909,0.804509,0.56814,0.53026,0.977433,0.078084,0.412027,0.992146,0.493075,0.316705,0.211587,0.317627,0.4481,0.353378,0.670839,0.156959,0.597487,0.932524,0.434615,0.667578,0.182817,0.874549,0.238075,0.243834,0.443457,0.297388,0.9748,0.235801,0.354733,0.852266,0.528237,0.333067,0.288045,0.328046,0.757951,0.0887651,0.176274,0.242195,0.0711887,0.932531,0.92357,0.775998,0.406264,0.130827,0.0327989,0.133832,0.985232,0.147844,0.804241,0.060167,0.950709,0.489155,0.285805,0.203503,0.803259,0.807592,0.129199,0.166194,0.300782,0.67001,0.321362,0.474203,0.451939,0.404799,0.016082,0.691004,0.344962,0.405916,0.0173786,0.911173,0.292093,0.145026,0.022186,0.367556,0.662477,0.152612,0.622023,0.742247,0.896276,0.90374,0.0934276,0.688806,0.157946,0.201653,0.863322,0.160654,0.801996,0.742684,0.835867,0.0794736,0.129283,0.630037,0.708871,0.361955,0.806637,0.275919,0.15241,0.524212,0.218517,0.301812,0.379722,0.0849188,0.364273,0.660145,0.0161664,0.554977,0.683644,0.117842,0.0310989,0.972833,0.661515,0.0632228,0.120093,0.119888,0.805215,0.885157,0.313022,0.388933,0.429725,0.95708,0.445305,0.0911555,0.362142,0.304291,0.956887,0.552382,0.929755,0.76008,0.472451,0.379638,0.14557,0.841429,0.0988075,0.525645,0.893209,0.00202525,0.854904,0.130395,0.763949,0.388418,0.876384,0.887981,0.772674,0.87287,0.730137,0.399387,0.361477,0.0197105,0.723429,0.712776,0.541554,0.924227,0.447542,0.00205237,0.511164,0.582472,0.955563,0.438224,0.207633,0.730059,0.797704,0.565734,0.549996,0.0609183,0.284968,0.954216,0.610839,0.0174807,0.0961801,0.549252,0.563902,0.483214,0.306098,0.0707305,0.408505,0.588804,0.314863,0.0854005,0.712334,0.259799,0.971584,0.74942,0.218347,0.10814,0.747867,0.0421541,0.843807,0.843261,0.548907,0.759132,0.493077,0.749741,0.375201,0.625619,0.348655,0.00101262,0.374933,0.543048,0.332578,0.363996,0.977145,0.942295,0.295895,0.00949103,0.758599,0.136629,0.247162,0.131723,0.0223176,0.695762,0.780422,0.433584,0.296453,0.267676,0.187592,0.462105,0.408522,0.185327,0.39435,0.212389,0.348045,0.936718,0.840035,0.578659,0.65952,0.0937437,0.101995,0.815043,0.227048,0.693588,0.402102,0.173715,0.940883,0.289375,0.395351,0.665223,0.401357,0.611585,0.251526,0.769337,0.346819,0.63263,0.137392,0.434777,0.472054,0.895282,0.797469,0.360256,0.577492,0.309344,0.369928,0.334836,0.341284,0.726005,0.818585,0.935864,0.689424,0.992586,0.362669,0.907877,0.53697,0.541419,0.960208,0.00239432,0.320527,0.0498096,0.16026,0.136719,0.265403,0.333111,0.479892,0.547981,0.44697,0.918423,0.113887,0.546225,0.870489,0.680587,0.736846,0.608811,0.16514,0.139371,0.111609,0.254837,0.45472,0.417589,0.00245476,0.809049,0.10814,0.341154,0.615228,0.725157,0.272078,0.850833,0.957713,0.286413,0.180018,0.249346,0.0322046,0.874109,0.992208,0.937177,0.95163,0.962726,0.647571,0.237056,0.469028,0.940055,0.522881,0.453692,0.13499,0.605963,0.795781,0.584657,0.0218659,0.59729,0.781554,0.88125,0.599849,0.559575,0.0866401,0.98314,0.224398,0.751766,0.732749,0.490063,0.72772,0.766721,0.122232,0.314402,0.295028,0.923401,0.835309,0.808892,0.0805271,0.0348873,0.828902,0.837911,0.635491,0.808668,0.204317,0.0188038,0.78799,0.992861,0.692406,0.484336,0.60334,0.936898,0.0715459,0.235859,0.883622,0.147084,0.603833,0.0896493,0.352517,0.814522,0.518089,0.740241,0.544818,0.610981,0.409779,0.0223526,0.622042,0.243059,0.941222,0.441739,0.402906,0.607486,0.733256,0.452456,0.074131,0.854981,0.681409,0.997321,0.605582,0.538031,0.948022,0.852277,0.794655,0.554654,0.189886,0.295141,0.298648,0.4342,0.431354,0.768486,0.922515,0.321142,0.752371,0.675289,0.067605,0.0994228,0.543519,0.991174,0.239756,0.890335,0.186747,0.368632,0.99701,0.873164,0.858564,0.333018,0.860364,0.508043,0.586972,0.409141,0.252979,0.585724,0.846701,0.884015,0.845098,0.10512,0.352261,0.696847,0.725462,0.96994,0.0426722,0.836173,0.372464,0.864558,0.479803,0.793294,0.769414,0.642083,0.867397,0.724804,0.143692,0.64693,0.0328703,0.706365,0.238777,0.736892,0.861981,0.0447727,0.303739,0.525247,0.739867,0.820866,0.105399,0.886864,0.816224,0.609975,0.549422,0.181249,0.535907,0.137245,0.185344,0.908316,0.778711,0.70945,0.163359,0.514182,0.815699,0.115137,0.594959,0.845033,0.95139,0.293183,0.46725,0.936274,0.165786,0.121759,0.125691,0.177209,0.388682,0.835582,0.798114,0.800122,0.651815,0.729523,0.848222,0.960381,0.295968,0.992343,0.387682,0.563166,0.326895,0.29792,0.614021,0.127991,0.946314,0.810321,0.2025,0.518725,0.797459,0.157311,0.113692,0.448645,0.883503,0.550584,0.379093,0.854262,0.0630464,0.636875,0.805413,0.352856,0.144442,0.728696,0.728329,0.642064,0.072263,0.620611,0.591283,0.176769,0.193373,0.886009,0.727378,0.368836,0.943065,0.890187,0.655423,0.481874,0.955311,0.945612,0.643176,0.0512936,0.239976,0.492923,0.762516,0.258411,0.788998,0.0944809,0.224967,0.393826,0.469387,0.860929,0.817606,0.0754727,0.650546,0.771899,0.771534,0.455248,0.883208,0.402657,0.293621,0.579514,0.780821,0.818352,0.18162,0.607588,0.377387,0.956302,0.127434,0.642649,0.345587,0.0852227,0.562716,0.53252,0.551175,0.251952,0.777964,0.823127,0.650145,0.666611,0.0924273,0.119197,0.58438,0.931037,0.735889,0.924394,0.934912,0.420956,0.994616,0.06458,0.730653,0.333945,0.617419,0.30875,0.878387,0.0251824,0.798915,0.646327,0.45841,0.187856,0.927109,0.135938,0.189872,0.35476,0.197363,0.484082,0.543574,0.0254298,0.809911,0.846588,0.952978,0.13017,0.0239261,0.665872,0.394568,0.665818,0.877654,0.555744,0.996871,0.228103,0.0844442,0.412061,0.247028,0.668583,0.742804,0.991575,0.665557,0.69431,0.979829,0.170161,0.0125322,0.885154,0.476396,0.684407,0.857392,0.231281,0.869044,0.960699,0.45699,0.0498868,0.338446,0.541528,0.443321,0.217284,0.143642,0.41691,0.555096,0.468909,0.068527,|0.495026,0.0228152,0.445545,0.163933,0.901965,0.758908,0.474306,0.839351,0.873132,0.353922,0.954238,0.637504,0.236315,0.194125,0.178592,0.0591038,0.93948,0.352677,0.044495,0.115935,0.0835086,0.892606,0.0102804,0.77192,0.21057,0.190161,0.4174,0.133467,0.472179,0.473698,0.55337,0.695628,0.994248,0.999358,0.5598,0.927616,0.544305,0.739793,0.393945,0.728005,0.992432,0.572042,0.359802,0.935121,0.736277,0.958398,0.166064,0.662926,0.755881,0.888026,0.854664,0.511723,0.531775,0.0820357,0.0694418,0.662844,0.363533,0.147406,0.870733,0.800419,0.0164044,0.443769,0.907932,0.387573,0.317321,0.859192,0.842703,0.507931,0.463611,0.708358,0.705076,0.110204,0.681231,0.857982,0.178954,0.152889,0.363907,0.769063,0.432221,0.333116,0.341206,0.035418,0.825518,0.890021,0.400618,0.775051,0.827403,0.600039,0.199473,0.961252,0.782579,0.43071,0.677676,0.587293,0.908797,0.93156,0.812274,0.387816,0.612683,0.953576,0.322876,0.964769,0.0259043,0.140343,0.490176,0.763141,0.591328,0.64537,0.45874,0.162862,0.836002,0.821485,0.777145,0.939273,0.0764112,0.98983,0.504636,0.0905835,0.866074,0.3748,0.134861,0.284535,0.487989,0.891554,0.28907,0.471542,0.41376,0.692686,0.605549,0.150355,0.763264,0.4951,0.381071,0.310399,0.942169,0.888958,0.259532,0.925331,0.928624,0.7587,0.910898,0.950224,0.9003,0.00876868,0.921452,0.754717,0.0128616,0.274984,0.330871,0.232978,0.0200957,0.405434,0.412471,0.800443,0.301499,0.735871,0.573536,0.64546,0.382489,0.422126,0.766621,0.378369,0.221489,0.425663,0.424375,0.592064,0.475002,0.914859,0.521713,0.911073,0.741116,0.477831,0.460216,0.00473726,0.69982,0.650999,0.218029,0.747695,0.262389,0.588021,0.429664,0.247048,0.102708,0.403468,0.0624127,0.196096,0.913596,0.914756,0.637409,0.726907,0.802416,0.47458,0.928875,0.575499,0.541012,0.446343,0.285797,0.824067,0.876144,0.763614,0.173998,0.990406,0.695841,0.0822095,0.108481,0.272263,0.250632,0.062748,0.880355,0.211537,0.675884,0.519228,0.376026,0.509704,0.230957,0.274803,0.536311,0.276965,0.0650228,0.0798028,0.0987756,0.949765,0.978744,0.453514,0.994239,0.499651,0.220505,0.526922,0.527078,0.21671,0.672306,0.553436,0.439605,0.445089,0.488071,0.974179,0.176391,0.42965,0.974463,0.661164,0.570735,0.137053,0.308711,0.19115,0.311589,0.236735,0.88483,0.326029,0.255151,0.672665,0.413616,0.577012,0.437258,0.849955,0.86966,0.723345,0.104323,0.386501,0.977055,0.181914,0.136301,0.558999,0.0576321,0.747393,0.840518,0.745763,0.231356,0.155087,0.612624,0.852387,0.960122,0.0954489,0.586196,0.108583,0.667702,0.769539,0.820112,0.569778,0.169374,0.980858,0.975943,0.449107,0.807661,0.496572,0.807848,0.0545544,0.728379,0.70136,0.8309,0.706069,0.702185,0.309678,0.420521,0.109857,0.956317,0.471313,0.0179241,0.864142,0.101891,0.505618,0.941156,0.257872,0.403854,0.098446,0.567518,0.946227,0.513085,0.261324,0.599656,0.534274,0.677367,0.290523,0.394324,0.511219,0.171762,0.758086,0.585234,0.328859,0.00924516,0.871795,0.0573049,0.56184,0.932418,0.925743,0.584352,0.717642,0.438145,0.730912,0.448036,0.660842,0.00620359,0.428457,0.753224,0.64668,0.782286,0.432168,0.435709,0.276846,0.0229653,0.174976,0.498658,0.676174,0.148316,0.0352482,0.327566,0.091179,0.422731,0.190281,0.335442,0.547756,0.147162,0.0634723,0.32203,0.173424,0.967493,0.00378704,0.577165,0.986128,0.756565,0.371213,0.327215,0.0981754,0.997023,0.734961,0.908038,0.676958,0.497658,0.778619,0.63396,0.0378496,0.122509,0.114555,0.703729,0.307761,0.289656,0.0449103,0.692693,0.804598,0.315395,0.77667,0.399469,0.925362,0.0136628,0.379554,0.936633,0.300258,0.177648,0.223518,0.845035,0.258492,0.466743,0.705834,0.315061,0.151325,0.281852,0.257581,0.103862,0.516239,0.482642,0.491059,0.46955,0.412749,0.800704,0.492474,0.821663,0.545739,0.270504,0.637698,0.413243,0.201901,0.0888397,0.723309,0.934311,0.101555,0.716474,0.995163,0.993856,0.0627149,0.52018,0.329853,0.943853,0.182718,0.870994,0.975307,0.171435,0.914276,0.896535,0.842057,0.497778,0.951022,0.881434,0.794294,0.426009,0.241654,0.90453,0.760029,0.34052,0.436766,0.75626,0.370525,0.887621,0.348711,0.348086,0.857524,0.943441,0.660337,0.655635,0.105696,0.7367,0.806268,0.413842,0.257514,0.504701,0.0773776,0.431426,0.574983,0.31104,0.473156,0.179248,0.820968,0.981779,0.70044,0.342547,0.233341,0.0641909,0.617731,0.845923,0.955001,0.524741,0.0798729,0.937875,0.482242,0.818813,0.47635,0.132198,0.544824,0.384832,0.0863101,0.796445,0.186812,0.790061,0.964639,0.450829,0.3048,0.924613,0.586193,0.752771,0.86667,0.0798644,0.782738,0.390919,0.26185,0.713535,0.234012,0.607619,0.258717,0.600609,0.316395,0.34411,0.869839,0.633199,0.0572047,0.0522932,0.926851,0.889537,0.984367,0.0661159,0.302926,0.30022,0.0942136,0.488215,0.0142912,0.98155,0.432078,0.416094,0.797333,0.378332,0.944653,0.817885,0.824953,0.42779,0.761593,0.882139,0.0801303,0.655686,0.41378,0.655493,0.712164,0.428502,0.695655,0.168556,0.593095,0.12991,0.0139226,0.688481,0.965303,0.963404,0.0202166,0.482955,0.751537,0.187001,0.772517,0.906553,0.992807,0.576323,0.783847,0.648328,0.759345,0.486265,0.326246,0.484233,0.332792,0.0195165,0.286827,0.832721,0.348973,0.344821,0.658424,0.768573,0.250169,0.948427,0.923748,0.49455,0.428385,0.21239,0.425941,0.846799,0.459946,0.993484,0.965722,0.693762,0.445313,0.78437,0.416344,0.553297,0.521607,0.788592,0.172392,0.83324,0.778562,0.288915,0.73306,0.155748,0.781517,0.784738,0.328498,0.708737,0.349801,0.618657,0.101286,0.650201,0.00828719,0.641977,0.62045,0.0384672,0.238033,0.356263,0.318474,0.974541,0.886451,0.914462,0.781645,0.713443,0.323938,0.340106,0.944855,0.593541,0.142517,0.780814,0.295265,0.34246,0.270705,0.706782,0.35088,0.990934,0.0619783,0.330885,0.469889,0.853834,0.590122,0.318047,0.715438,0.335209,0.758667,0.437422,0.716751,0.566698,0.26764,0.308325,0.280531,0.170142,0.121553,0.356785,0.72706,0.2945,0.905636,0.694954,0.080327,0.719478,0.710043,0.806828,0.736795,0.369626,0.604453,0.0786141,0.992179,0.565515,0.436627,0.797078,0.688773,0.693643,0.122864,0.74846,0.908773,0.164588,0.173734,0.874841,0.0685313,0.328259,0.494896,0.618502,0.461883,0.548695,0.652066,0.852582,0.216106,0.54343,0.753922,0.601309,0.387563,0.702784,0.772399,0.148327,0.832822,0.374327,0.958355,0.566027,0.694509,0.70008,0.465643,0.850365,0.801358,0.487078,0.881625,0.0239049,0.120287,0.624631,0.32937,0.865807,0.224604,0.511733,0.425592,0.914956,0.237002,0.879784,0.566933,0.118663,0.875772,0.373729,0.38123,0.287497,0.197181,0.722726,0.0497655,0.0775514,0.915922,0.302611,0.154822,0.67817,0.464605,0.810001,0.878018,0.670646,0.541219,0.449271,0.882446,0.393424,0.155904,0.0317089,0.542499,0.000209391,0.639117,0.950822,0.352977,0.340693,0.226873,0.265888,0.119434,0.335684,0.303738,0.366152,0.73135,0.255608,0.995952,0.929042,0.687387,0.447158,0.118576,0.301588,0.850241,0.035525,0.229329,0.0903372,0.20359,0.751633,0.497425,0.226101,0.397484,0.128404,0.35921,0.894796,0.374654,0.432735,0.443216,0.186799,0.858146,0.929272,0.422541,0.851326,0.00511932,0.0693569,0.212354,0.39294,0.313678,0.280914,0.32953,0.442036,0.980337,0.0988849,0.136556,0.13824,0.635565,0.995067,0.593226,0.956889,0.647831,0.549423,0.484742,0.119028,0.0670178,0.856933,0.444422,0.534561,0.717731,0.498638,0.00670481,0.0102822,0.47803,0.0921495,0.328589,0.215928,0.436549,0.879218,0.904732,0.0982239,0.0633564,0.11377,0.477847,0.37891,0.979982,0.298099,0.0141281,0.170914,0.857195,0.494885,0.973399,0.100277,0.0531576,0.65972,0.703315,0.971089,0.415589,0.911287,0.347481,0.242057,0.449112,0.764993,0.34044,0.708504,0.0380464,0.703607,0.492335,0.156493,0.901661,0.94039,0.0162271,0.899942,0.831825,0.089893,0.798076,0.584601,0.258296,0.595159,0.112388,0.418307,0.809173,0.570062,0.840962,0.305372,0.406556,0.0675966,0.701815,0.405371,0.182398,0.671742,0.502499,0.20721,0.857104,0.00362885,0.754977,0.621688,0.528936,0.369898,0.21442,0.228661,0.339008,0.676599,0.0221652,0.3643,0.498938,0.018959,0.808883,0.848686,0.578326,0.00868922,0.580487,0.729664,0.0810443,0.778432,0.78144,0.0999979,0.317468,0.896915,0.423181,0.603446,0.128795,0.426673,0.454873,0.583834,0.579144,0.658077,0.695379,0.0528252,0.24652,0.468927,0.023864,0.183708,0.445536,0.704535,0.51175,0.823682,0.0926228,0.484881,0.0403335,0.690298,0.704124,0.783068,0.854899,0.957812,0.55289,0.127691,0.303515,0.768862,0.949773,0.85493,0.775897,0.590558,0.341345,0.389415,0.209349,0.207544,0.182551,0.00459915,0.98455,0.336897,0.32232,0.47984,0.236636,0.00122911,0.215889,0.205519,0.0231557,0.532357,0.595742,0.439045,0.973627,0.117683,0.162468,0.552323,0.0332528,0.693828,0.0561095,0.186148,0.539888,0.211323,0.994207,0.723563,0.427002,0.58913,0.392181,0.177444,0.84828,0.872806,0.109646,0.665949,0.520679,0.911693,0.952641,0.738421,0.864045,0.66615,0.714531,0.734108,0.487035,0.132899,0.544979,0.808558,0.66369,0.479076,0.620706,0.196827,0.717835,0.501748,0.10632,0.533483,0.906282,0.142531,0.817162,0.209132,0.184276,0.15374,0.180816,0.867087,0.880976,0.86066,0.162563,0.89744,0.901125,0.129883,0.88276,0.350334,0.113977,0.69285,0.496395,0.027908,0.53763,0.61745,0.508143,0.512795,0.2663,0.707728,0.083008,0.797195,0.195821,0.0214139,0.114798,0.241508,0.974009,0.650673,0.973793,|0.436765,0.408073,0.122897,0.407457,0.0850155,0.0140371,0.477152,0.186524,0.865444,0.800675,0.037907,0.989667,0.128188,0.548936,0.504515,0.162448,0.705054,0.169306,0.0515729,0.414164,0.050994,0.0315236,0.502299,0.765732,0.189112,0.206869,0.967774,0.00799787,0.761589,0.687128,0.109324,0.0427848,0.0436772,0.915794,0.930166,0.0916124,0.464803,0.519106,0.380727,0.0761217,0.067764,0.0648361,0.459064,0.242469,0.164496,0.334681,0.120443,0.598083,0.912636,0.912853,0.69879,0.724307,0.90653,0.621836,0.941682,0.809883,0.696171,0.129622,0.416167,0.0242667,0.118577,0.673708,0.256072,0.557761,0.564819,0.565177,0.262265,0.477078,0.942005,0.0690126,0.508067,0.608198,0.110813,0.217994,0.633244,0.216654,0.857288,0.0377495,0.905465,0.479675,0.336998,0.0961768,0.562012,0.971152,0.610408,0.886529,0.729065,0.664401,0.836039,0.963788,0.876008,0.685223,0.733179,0.765336,0.806678,0.022702,0.348359,0.165585,0.625286,0.26258,0.785522,0.710898,0.902146,0.534741,0.471952,0.0491719,0.293983,0.539934,0.289265,0.47807,0.77197,0.636787,0.758752,0.806608,0.752275,0.105254,0.474184,0.199158,0.710379,0.213141,0.902367,0.0317506,0.198057,0.771333,0.443835,0.899768,0.0492262,0.0572606,0.375746,0.109415,0.607017,0.676608,0.712711,0.0536191,0.33435,0.0515742,0.182662,0.0441844,0.354747,0.619446,0.447037,0.801438,0.708302,0.784722,0.51209,0.756817,0.480026,0.552982,0.129759,0.536834,0.222359,0.780805,0.244768,0.983669,0.259462,0.961119,0.922987,0.804832,0.607625,0.486977,0.215781,0.759523,0.154926,0.342933,0.147929,0.11968,0.470886,0.239942,0.988695,0.367006,0.51955,0.356788,0.534508,0.335792,0.160264,0.7576,0.365937,0.331099,0.396691,0.0800762,0.317533,0.222345,0.728357,0.213288,0.781687,0.907676,0.0348459,0.292656,0.715708,0.622295,0.51181,0.495093,0.657793,0.406823,0.761134,0.939514,0.910479,0.0810302,0.320588,0.906945,0.253491,0.413732,0.125465,0.660524,0.146097,0.503339,0.272152,0.979502,0.324843,0.978083,0.852598,0.830914,0.794507,0.785022,0.485736,0.7944,0.381641,0.540033,0.171723,0.51276,0.63745,0.867453,0.0986899,0.898051,0.398435,0.380866,0.62848,0.789258,0.931044,0.100654,0.208551,0.889394,0.852649,0.754534,0.787251,0.101671,0.931715,0.871786,0.1312,0.146264,0.922587,0.959107,0.623561,0.59501,0.348296,0.467375,0.71304,0.755012,0.341065,0.34033,0.460691,0.0239118,0.908708,0.559502,0.230732,0.913872,0.82097,0.591456,0.125117,0.939823,0.85325,0.744471,0.041074,0.247854,0.278657,0.272383,0.493394,0.354699,0.327784,0.851499,0.752897,0.470962,0.48868,0.37284,0.290306,0.85364,0.775817,0.562559,0.602672,0.345201,0.352291,0.190093,0.884046,0.1743,0.0569602,0.854233,0.98972,0.586424,0.293557,0.693784,0.830715,0.995009,0.197335,0.231353,0.310632,0.117956,0.21488,0.305162,0.749989,0.204513,0.924032,0.126917,0.297151,0.678458,0.72797,0.403933,0.974441,0.195545,0.341204,0.606581,0.00283128,0.314384,0.390441,0.42585,0.667513,0.131664,0.190985,0.436253,0.993197,0.420947,0.336224,0.339732,0.17645,0.6623,0.801453,0.00561863,0.0306929,0.776174,0.489934,0.358946,0.886294,0.304503,0.575593,0.642601,0.716746,0.216396,0.52895,0.666317,0.978374,0.183499,0.0664608,0.506455,0.214176,0.160536,0.611891,0.0891561,0.728392,0.200254,0.212532,0.346899,0.645216,0.984076,0.835668,0.795287,0.608924,0.255174,0.351776,0.754191,0.184937,0.710521,0.661521,0.0433105,0.707984,0.0630773,0.572063,0.0755941,0.240171,0.652767,0.462419,0.357108,0.777034,0.836429,0.898469,0.53311,0.981964,0.635476,0.841605,0.235298,0.636675,0.336829,0.382466,0.669605,0.732449,0.532602,0.125856,0.638902,0.890743,0.604756,0.755202,0.0310491,0.759471,0.185156,0.640509,0.652475,0.0766218,0.647333,0.204334,0.968472,0.59535,0.547093,0.582587,0.28474,0.0200261,0.715747,0.156916,0.0195794,0.137028,0.350914,0.363369,0.205553,0.392629,0.49804,0.379292,0.207526,0.47202,0.378851,0.323505,0.219966,0.185871,0.915735,0.96882,0.379117,0.143073,0.113899,0.956572,0.541249,0.346409,0.436456,0.820496,0.885966,0.916327,0.554862,0.168777,0.39653,0.0928861,0.403089,0.667418,0.288129,0.613264,0.379351,0.391399,0.960699,0.604673,0.0850197,0.512494,0.217255,0.96496,0.479969,0.374377,0.188167,0.380071,0.792682,0.846014,0.202705,0.949483,0.487442,0.248287,0.36385,0.105544,0.827832,0.647233,0.734178,0.073775,0.641976,0.496539,0.0893846,0.213839,0.186174,0.112369,0.0393484,0.256454,0.0920888,0.435554,0.136738,0.148899,0.133607,0.732533,0.495184,0.00466424,0.375038,0.656175,0.423018,0.871507,0.179302,0.170715,0.265395,0.428378,0.114431,0.922023,0.24033,0.90663,0.471486,0.310432,0.0236172,0.581504,0.467082,0.979656,0.551544,0.512186,0.286432,0.638995,0.281508,0.447379,0.603197,0.420197,0.797827,0.0511526,0.469789,0.712194,0.731035,0.94718,0.807631,0.0296312,0.59807,0.357261,0.99623,0.763485,0.0623698,0.0590621,0.222885,0.661038,0.356853,0.404504,0.285506,0.591798,0.386617,0.10915,0.118145,0.287381,0.918466,0.859324,0.208871,0.987555,0.139159,0.782183,0.97691,0.472003,0.901563,0.969637,0.648338,0.82967,0.894363,0.68855,0.498128,0.510013,0.173115,0.426321,0.385063,0.82006,0.904455,0.379175,0.820563,0.312004,0.870349,0.732036,0.9901,0.101734,0.918207,0.718965,0.948568,0.942118,0.317857,0.116859,0.058333,0.24695,0.513454,0.415578,0.0838103,0.737051,0.298363,0.431067,0.134689,0.643212,0.307699,0.593184,0.0684558,0.606776,0.00772041,0.601962,0.17139,0.0196922,0.322739,0.143343,0.946761,0.347996,0.710375,0.0124706,0.389366,0.708091,0.99383,0.342373,0.0307441,0.851312,0.577524,0.968452,0.958851,0.883419,0.63279,0.908584,0.593049,0.275795,0.380647,0.219741,0.610355,0.621209,0.730154,0.564011,0.888698,0.9613,0.419912,0.0614048,0.897092,0.593709,0.228513,0.509869,0.260527,0.0523457,0.741784,0.966939,0.597973,0.181118,0.778093,0.394331,0.315755,0.390093,0.280975,0.331924,0.615161,0.25198,0.053565,0.452437,0.499237,0.965105,0.2332,0.543605,0.706337,0.319599,0.734071,0.0494704,0.579074,0.681476,0.155572,0.951211,0.934712,0.0682275,0.130181,0.962964,0.296571,0.456174,0.906817,0.379472,0.719704,0.66974,0.388235,0.224225,0.221882,0.83564,0.423903,0.539094,0.359387,0.0184191,0.928672,0.11438,0.395114,0.185733,0.517649,0.22307,0.419008,0.471215,0.39562,0.46107,0.154681,0.0971166,0.794375,0.326388,0.633625,0.458338,0.859201,0.635355,0.164104,0.665486,0.0246666,0.514739,0.631017,0.779948,0.933414,0.10944,0.470373,0.369496,0.870184,0.890935,0.47719,0.541871,0.604625,0.782111,0.236857,0.262188,0.650022,0.301143,0.778282,0.920197,0.163662,0.194898,0.660492,0.243956,0.647929,0.873004,0.539166,0.967157,0.866705,0.90111,0.32324,0.993655,0.956028,0.0272597,0.0733259,0.171428,0.695741,0.202033,0.284998,0.180045,0.125818,0.360653,0.588316,0.240092,0.700869,0.114885,0.150628,0.532312,0.87574,0.988019,0.710823,0.85994,0.537425,0.86512,0.63783,0.809971,0.74356,0.0669675,0.590286,0.00993568,0.504223,0.880985,0.320852,0.707867,0.144312,0.498018,0.784241,0.380161,0.25039,0.713559,0.25961,0.359604,0.22399,0.517303,0.00232536,0.488904,0.303672,0.152291,0.838834,0.593073,0.0298273,0.227312,0.548595,0.992814,0.326218,0.948689,0.63172,0.737661,0.387237,0.0520393,0.10607,0.510292,0.663445,0.501086,0.16904,0.15028,0.13289,0.0494419,0.761288,0.928286,0.643351,0.392984,0.836087,0.248621,0.586205,0.807633,0.815189,0.295036,0.820547,0.830592,0.842573,0.29873,0.165261,0.642178,0.0955567,0.155899,0.206093,0.202297,0.645664,0.765082,0.663957,0.455301,0.142627,0.0853001,0.349362,0.853948,0.826584,0.368647,0.479239,0.896477,0.519903,0.112393,0.336861,0.250346,0.442865,0.237876,0.410376,0.930928,0.314467,0.962199,0.65611,0.776497,0.648159,0.108625,0.206906,0.616917,0.0753378,0.516768,0.11077,0.150389,0.797082,0.564204,0.753102,0.0168316,0.612696,0.939478,0.25016,0.62709,0.857116,0.989016,0.562181,0.723754,0.583511,0.937846,0.686922,0.717911,0.280537,0.901135,0.828806,0.403938,0.00836021,0.123877,0.431913,0.686898,0.358811,0.284519,0.835023,0.915784,0.554618,0.0631284,0.399758,0.380854,0.149122,0.744864,0.801736,0.973767,0.755024,0.533397,0.441588,0.546438,0.391395,0.362193,0.960406,0.598151,0.330512,0.494362,0.39388,0.9449,0.975892,0.527101,0.127233,0.685891,0.821252,0.752108,0.978463,0.240401,0.33344,0.390367,0.145777,0.201301,0.485322,0.723395,0.444308,0.484624,0.298803,0.746603,0.617117,0.92588,0.405943,0.894664,0.19831,0.230725,0.395984,0.700101,0.638032,0.126534,0.33505,0.00793809,0.635446,0.723662,0.747615,0.371585,0.583608,0.289342,0.922999,0.743642,0.296784,0.643621,0.550584,0.0132959,0.785658,0.850987,0.904325,0.385733,0.566081,0.273954,0.544601,0.455357,0.741066,0.0503383,0.595689,0.554515,0.417444,0.781669,0.300451,0.213579,0.184136,0.833814,0.260501,0.563622,0.595811,0.407161,0.0147496,0.501809,0.0721757,0.0392786,0.485675,0.465639,0.7027,0.753066,0.573046,0.313703,0.53751,0.213423,0.484604,0.410452,0.161691,0.775341,0.573196,0.378947,0.405239,0.627198,0.826329,0.707304,0.588577,0.266145,0.573263,0.414247,0.77368,0.160314,0.327968,0.872454,0.961923,0.833704,0.585767,0.231583,0.124367,0.798281,0.721439,0.569556,0.558412,0.267378,0.46392,0.314694,0.208549,0.247426,0.878707,0.0410374,0.92972,0.431212,0.754538,0.278682,0.802516,0.525173,0.0962781,0.199024,0.470714,0.417909,0.430936,|0.620286,0.205047,0.275699,0.773229,0.13584,0.659254,0.485474,0.238841,0.291153,0.608657,0.729027,0.984911,0.920312,0.500891,0.449899,0.217238,0.0439762,0.116882,0.113582,0.812179,0.475644,0.557896,0.138199,0.834185,0.144234,0.638326,0.172393,0.79895,0.965082,0.68105,0.789771,0.0292694,0.356692,0.591148,0.771707,0.519719,0.0749018,0.541794,0.889215,0.646471,0.185359,0.443925,0.653157,0.190791,0.992207,0.0578921,0.321311,0.0276292,0.0897461,0.0247635,0.768411,0.592155,0.0673951,0.711347,0.939183,0.955977,0.191952,0.185332,0.889428,0.723728,0.303963,0.956738,0.719197,0.363446,0.546922,0.366992,0.968184,0.505799,0.827387,0.197863,0.0553012,0.344219,0.255526,0.706056,0.775355,0.0707141,0.373958,0.0495113,0.715125,0.249399,0.0783162,0.634916,0.377835,0.804617,0.304462,0.480986,0.611999,0.350661,0.866047,0.711978,0.463163,0.0247351,0.600846,0.140664,0.167286,0.329318,0.317542,0.890412,0.391047,0.257476,0.865109,0.465478,0.254905,0.102297,0.477145,0.591066,0.374692,0.49985,0.990975,0.713195,0.664053,0.512402,0.212034,0.0675294,0.505926,0.745896,0.694064,0.749311,0.961225,0.992634,0.883467,0.389479,0.885821,0.550794,0.818088,0.589926,0.367311,0.224384,0.450226,0.289687,0.858602,0.992439,0.168311,0.25143,0.194719,0.274813,0.775697,0.0997238,0.589201,0.360309,0.457074,0.107504,0.227703,0.440504,0.454233,0.0655992,0.29916,0.23721,0.0747777,0.926211,0.471391,0.398486,0.546757,0.818583,0.503679,0.299718,0.985179,0.484089,0.145298,0.65042,0.167526,0.251563,0.228734,0.721197,0.533651,0.806832,0.605385,0.999191,0.25756,0.647705,0.218669,0.878443,0.459554,0.94051,0.633964,0.609736,0.890686,0.599498,0.0298302,0.382753,0.0257969,0.383861,0.201749,0.881036,0.103438,0.194658,0.844303,0.812237,0.729624,0.662467,0.193272,0.524681,0.26362,0.875811,0.0819969,0.813157,0.90868,0.442746,0.313814,0.0827617,0.444352,0.562598,0.0943017,0.975686,0.914165,0.486879,0.54513,0.455348,0.189979,0.993778,0.402147,0.269634,0.449528,0.0748313,0.509194,0.426435,0.647477,0.851922,0.455314,0.0889655,0.828258,0.504255,0.496273,0.890364,0.135428,0.0104162,0.298887,0.560548,0.472269,0.625695,0.62255,0.217043,0.0856773,0.179918,0.682617,0.853631,0.512743,0.360067,0.203673,0.124608,0.410861,0.297674,0.462989,0.968626,0.78384,0.245931,0.961619,0.0247896,0.282376,0.556957,0.35901,0.600195,0.883307,0.618007,0.192293,0.387688,0.440372,0.120134,0.0597991,0.239133,0.798683,0.137964,0.994741,0.940452,0.544103,0.883672,0.0742982,0.761508,0.318139,0.953753,0.816685,0.541982,0.182672,0.147641,0.238537,0.759298,0.387832,0.570382,0.693101,0.105671,0.345857,0.861611,0.810201,0.692072,0.497057,0.493237,0.478342,0.872892,0.360635,0.649456,0.465366,0.0984893,0.750372,0.540389,0.869016,0.222079,0.609199,0.455051,0.750504,0.279656,0.771336,0.156585,0.815947,0.764065,0.776474,0.615949,0.652167,0.557851,0.0772575,0.807046,0.0657449,0.123716,0.380515,0.541832,0.537508,0.0180225,0.0766968,0.718649,0.797946,0.117297,0.730996,0.143622,0.588481,0.492527,0.111388,0.09314,0.681277,0.964827,0.758262,0.7638,0.220691,0.784781,0.752207,0.241282,0.549921,0.00450218,0.513275,0.721329,0.19954,0.511729,0.361435,0.479682,0.172949,0.696694,0.411528,0.00340456,0.566505,0.795742,0.932374,0.77002,0.483842,0.766201,0.313685,0.162251,0.94706,0.552723,0.560739,0.961965,0.850562,0.0610832,0.0293772,0.4923,0.397897,0.329653,0.841834,0.23409,0.820537,0.565241,0.626844,0.294714,0.231292,0.513425,0.801246,0.32071,0.475845,0.353145,0.218151,0.769935,0.258576,0.0259869,0.107647,0.127546,0.988914,0.129209,0.576535,0.785112,0.376644,0.252683,0.757317,0.0460931,0.677459,0.0608042,0.129564,0.24763,0.442153,0.659015,0.441478,0.550664,0.189352,0.368688,0.0603016,0.760932,0.0109257,0.977747,0.281119,0.141508,0.0104346,0.620642,0.355447,0.190768,0.784392,0.335783,0.322204,0.934545,0.37562,0.605075,0.463467,0.589369,0.696103,0.707993,0.891513,0.809041,0.495521,0.348141,0.473272,0.9108,0.719746,0.000701547,0.741789,0.133514,0.485822,0.605922,0.898559,0.91072,0.18703,0.456272,0.99203,0.167928,0.0314757,0.278127,0.702951,0.623907,0.392892,0.129789,0.307278,0.29511,0.406494,0.0649311,0.168662,0.900854,0.550973,0.739201,0.116154,0.714269,0.80814,0.813352,0.936646,0.168777,0.189074,0.352982,0.351909,0.5837,0.44639,0.338877,0.548524,0.664603,0.35902,0.313955,0.991997,0.850783,0.115353,0.195523,0.587795,0.196392,0.39797,0.94866,0.668856,0.553786,0.222585,0.635382,0.282271,0.491291,0.963955,0.534414,0.740945,0.502235,0.442952,0.488176,0.590066,0.917052,0.723998,0.252391,0.276827,0.0329913,0.597286,0.774303,0.659299,0.212318,0.657459,0.702798,0.134082,0.935804,0.067477,0.512428,0.750729,0.130707,0.741679,0.210526,0.913122,0.387856,0.795252,0.869609,0.732417,0.018926,0.220567,0.873218,0.307821,0.699934,0.519127,0.57024,0.187636,0.0188273,0.909012,0.340521,0.96629,0.537579,0.0467123,0.0957216,0.435217,0.226974,0.0900057,0.557507,0.191811,0.484176,0.199952,0.925693,0.787731,0.993304,0.47543,0.393533,0.386225,0.000446796,0.422868,0.728983,0.812291,0.170912,0.239041,0.34318,0.231134,0.811811,0.0492063,0.189806,0.565442,0.398257,0.444774,0.667633,0.152494,0.0321442,0.00150913,0.91667,0.967711,0.160458,0.70659,0.298092,0.387197,0.507008,0.0646433,0.396731,0.360002,0.146815,0.0622281,0.528736,0.432459,0.255302,0.449193,0.41723,0.679794,0.521,0.0946618,0.14764,0.639545,0.27336,0.667474,0.720078,0.385198,0.719484,0.69415,0.508225,0.476892,0.0749296,0.299342,0.153772,0.899042,0.0891061,0.533332,0.880286,0.2181,0.0426698,0.0184945,0.0133784,0.437994,0.0624245,0.620041,0.614219,0.779343,0.0319249,0.192221,0.844191,0.327116,0.740314,0.713122,0.341738,0.399967,0.793536,0.344685,0.0508775,0.648432,0.607149,0.771583,0.162452,0.252965,0.295344,0.415981,0.239538,0.504571,0.442217,0.224369,0.762955,0.408811,0.140954,0.00428915,0.730715,0.255876,0.694636,0.458648,0.85071,0.0620404,0.834326,0.855119,0.90253,0.534885,0.637088,0.128859,0.643987,0.495042,0.905627,0.936064,0.343625,0.463284,0.760986,0.506733,0.228235,0.363996,0.923767,0.697182,0.520647,0.788559,0.987439,0.0286818,0.277512,0.508848,0.906347,0.755477,0.7997,0.468672,0.873255,0.504272,0.942633,0.885557,0.797554,0.41027,0.366618,0.835661,0.190577,0.454925,0.367537,0.554099,0.52307,0.750094,0.780791,0.386068,0.667924,0.827219,0.0170444,0.939528,0.894573,0.797566,0.610394,0.242966,0.600909,0.398391,0.761482,0.328796,0.0965247,0.0515278,0.703794,0.804754,0.432615,0.690884,0.657669,0.854327,0.0560331,0.732855,0.47792,0.551539,0.133576,0.771332,0.936451,0.831717,0.108949,0.0467574,0.653083,0.434318,0.972595,0.511298,0.277244,0.702927,0.397431,0.298212,0.877562,0.151402,0.0909579,0.955856,0.261252,0.727198,0.880816,0.92037,0.878892,0.481967,0.366479,0.0747761,0.234548,0.890647,0.316999,0.853135,0.995469,0.637282,0.247786,0.269191,0.424412,0.680063,0.525866,0.0460466,0.758154,0.3247,0.755102,0.879864,0.676192,0.38608,0.757293,0.365883,0.361917,0.689064,0.880607,0.769671,0.751675,0.131291,0.177629,0.89228,0.382627,0.695499,0.287483,0.669742,0.258162,0.37011,0.845725,0.704638,0.531181,0.741343,0.887254,0.725959,0.263267,0.598853,0.834222,0.651285,0.348046,0.602883,0.798508,0.914824,0.694894,0.677739,0.435565,0.315474,0.799729,0.330584,0.348519,0.796686,0.604099,0.788633,0.107987,0.378269,0.553293,0.0308098,0.0825082,0.70297,0.624042,0.628254,0.721768,0.568618,0.266079,0.763806,0.383031,0.620063,0.315934,0.121768,0.980828,0.94391,0.591207,0.817532,0.498229,0.432094,0.473979,0.865886,0.0798725,0.721907,0.0935569,0.725074,0.450629,0.96124,0.636839,0.347182,0.736138,0.217195,0.704899,0.604919,0.906198,0.364856,0.0475563,0.299979,0.148628,0.0166987,0.537832,0.845366,0.0221997,0.990585,0.490265,0.593311,0.241732,0.82915,0.464336,0.946871,0.702849,0.426934,0.460812,0.5028,0.926604,0.6481,0.745617,0.488326,0.00526971,0.533297,0.297988,0.763154,0.740937,0.611837,0.888062,0.78801,0.755975,0.888156,0.263942,0.525317,0.116911,0.683692,0.884016,0.779481,0.18905,0.566513,0.497886,0.449436,0.309457,0.388517,0.693111,0.799022,0.660774,0.428548,0.0251969,0.985995,0.268275,0.967294,0.696767,0.253393,0.317401,0.106094,0.613349,0.405183,0.622023,0.0180799,0.207983,0.086506,0.652134,0.0267967,0.950885,0.426177,0.15381,0.342102,0.0496022,0.292422,0.071461,0.710172,0.305213,0.108096,0.445358,0.835883,0.274954,0.352476,0.871166,0.926417,0.499675,0.860206,0.620047,0.382307,0.605206,0.560321,0.806186,0.406194,0.526749,0.516896,0.230951,0.112624,0.638039,0.87753,0.841683,0.83414,0.960683,0.888429,0.981736,0.104149,0.586665,0.716763,0.214322,0.0434722,0.763085,0.216742,0.96899,0.751671,0.751962,0.681438,0.96575,0.108095,0.421234,0.587501,0.33849,0.87087,0.99588,0.877088,0.186382,0.529081,0.403915,0.0634219,0.317884,0.26376,0.332662,0.552855,0.553104,0.126952,0.0212577,0.822148,0.518118,0.602098,0.690826,0.810389,0.824466,0.346471,0.847601,0.459694,0.591853,0.710102,0.640652,0.980916,0.49826,0.263465,0.28454,0.945353,0.870497,0.661584,0.789548,0.285484,0.722866,0.298234,0.304342,0.437979,0.644786,0.247651,0.70792,0.162939,0.134104,0.639668,0.87453,0.658874,0.47928,0.203725,0.856771,0.56625,0.771856,0.531683,0.957848,0.143957,0.778517,0.748609,0.9858,|0.965015,0.515876,0.875475,0.261968,0.040289,0.71152,0.0440801,0.361883,0.334566,0.0369402,0.0471457,0.896375,0.800918,0.175021,0.566124,0.876227,0.894501,0.492988,0.662122,0.473327,0.780913,0.414974,0.62988,0.599905,0.27953,0.0185826,0.206422,0.382274,0.384284,0.55754,0.59889,0.977639,0.712039,0.55834,0.217134,0.105405,0.484952,0.0815756,0.492673,0.452572,0.384006,0.798102,0.498739,0.271408,0.851914,0.499968,0.270956,0.433779,0.873174,0.262178,0.632901,0.622764,0.143305,0.993069,0.274923,0.276229,0.59152,0.386439,0.112642,0.844142,0.923464,0.20637,0.60762,0.106742,0.311243,0.857963,0.71538,0.491173,0.0073415,0.81727,0.795161,0.952781,0.0475654,0.939729,0.105937,0.958488,0.82354,0.59506,0.215997,0.334176,0.0758732,0.362258,0.934252,0.725485,0.788296,0.905808,0.372898,0.983637,0.760899,0.874048,0.497038,0.485306,0.729946,0.611358,0.763954,0.870883,0.976443,0.0915085,0.815313,0.10779,0.0326945,0.136846,0.414178,0.233792,0.288737,0.3703,0.597056,0.330141,0.461028,0.377564,0.087593,0.147924,0.148314,0.0670688,0.564517,0.134225,0.493906,0.406343,0.427653,0.494395,0.0653359,0.709452,0.553775,0.0934989,0.142724,0.54524,0.711926,0.740553,0.808282,0.0512124,0.307504,0.197252,0.0753418,0.00758797,0.00230992,0.160067,0.944178,0.0185994,0.875148,0.757062,0.613242,0.191841,0.703821,0.0961038,0.389643,0.0133833,0.0359842,0.513406,0.579734,0.677151,0.189285,0.147007,0.634628,0.128212,0.739307,0.290515,0.032541,0.86343,0.962364,0.290821,0.782253,0.166776,0.0524487,0.495898,0.769278,0.413442,0.0435829,0.264469,0.136683,0.512504,0.169034,0.174545,0.88627,0.777279,0.0113979,0.52448,0.356857,0.670571,0.217786,0.0827829,0.739749,0.184031,0.519038,0.410742,0.00514418,0.672762,0.96902,0.818452,0.124956,0.200688,0.47027,0.975223,0.600278,0.287957,0.348552,0.169855,0.913202,0.987848,0.604365,0.0549656,0.315793,0.796477,0.643425,0.861799,0.742187,0.266516,0.964527,0.671844,0.155961,0.240529,0.0116536,0.996042,0.580522,0.393321,0.345633,0.154157,0.598314,0.555879,0.19343,0.331164,0.619626,0.357915,0.514707,0.792675,0.588671,0.591609,0.320776,0.901775,0.848054,0.962328,0.510298,0.051256,0.320655,0.0743534,0.589848,0.615953,0.939773,0.952685,0.342363,0.584719,0.966743,0.129374,0.721543,0.264887,0.166699,0.760786,0.252128,0.386699,0.267384,0.160469,0.748837,0.681679,0.133806,0.742126,0.193472,0.548329,0.0102496,0.484932,0.269289,0.884182,0.692359,0.530728,0.270156,0.145368,0.0651663,0.0300437,0.751827,0.375408,0.66817,0.310346,0.379335,0.338536,0.166429,0.0190795,0.751589,0.952998,0.155998,0.231893,0.345965,0.893417,0.571468,0.692186,0.747147,0.60819,0.697952,0.609448,0.329448,0.610343,0.0278038,0.23279,0.938505,0.70683,0.551869,0.964992,0.458808,0.583667,0.761232,0.0636641,0.767576,0.0885786,0.0447953,0.708616,0.0221859,0.990305,0.679889,0.55789,0.506371,0.585907,0.576496,0.0351252,0.846137,0.677906,0.980988,0.489549,0.254142,0.45376,0.741106,0.416302,0.875407,0.838531,0.970967,0.162528,0.192313,0.0279876,0.242086,0.773222,0.0807207,0.580775,0.833235,0.266016,0.514328,0.052083,0.942208,0.294354,0.323498,0.145246,0.401299,0.874594,0.394609,0.23741,0.795371,0.0572582,0.375236,0.543968,0.198926,0.804838,0.264768,0.0981067,0.106663,0.305956,0.250768,0.629031,0.19394,0.83734,0.929257,0.0939512,0.057328,0.287873,0.610876,0.290773,0.535272,0.429064,0.416929,0.0778063,0.121722,0.325951,0.934121,0.140946,0.615631,0.362357,0.978295,0.285003,0.350748,0.575543,0.371238,0.503054,0.739151,0.0997223,0.543734,0.566899,0.419792,0.0386426,0.990411,0.309651,0.87822,0.616196,0.15495,0.134168,0.217331,0.533962,0.677785,0.258635,0.250582,0.814659,0.597324,0.680991,0.873761,0.986015,0.988756,0.929035,0.500436,0.983833,0.854229,0.10672,0.333021,0.0807849,0.48497,0.699417,0.273279,0.324616,0.544685,0.255775,0.200419,0.494469,0.871689,0.00801188,0.337701,0.0680116,0.672094,0.945652,0.799999,0.958826,0.407592,0.901541,0.0314022,0.381377,0.41694,0.371972,0.0279917,0.873588,0.367107,0.180847,0.594875,0.402897,0.245445,0.604455,0.658525,0.609465,0.272713,0.762764,0.164887,0.95355,0.572394,0.474668,0.84578,0.336989,0.878751,0.312845,0.294436,0.376974,0.0145682,0.794701,0.783572,0.200572,0.262104,0.475746,0.920822,0.0762599,0.356049,0.657967,0.732053,0.664088,0.0521696,0.231196,0.533989,0.378462,0.935756,0.37042,0.238991,0.246204,0.393346,0.262124,0.334195,0.665865,0.95869,0.512847,0.181462,0.761132,0.601673,0.137605,0.969605,0.928044,0.36752,0.120645,0.343543,0.632709,0.402286,0.50412,0.52526,0.190313,0.607183,0.518252,0.567171,0.581152,0.195065,0.838183,0.439603,0.754327,0.712362,0.473172,0.163936,0.400597,0.0977795,0.636183,0.865445,0.0311124,0.972896,0.153861,0.312339,0.153259,0.132355,0.781825,0.3348,0.347253,0.0707025,0.818848,0.930564,0.287295,0.546939,0.202791,0.7877,0.270061,0.681695,0.859835,0.489256,0.259466,0.346313,0.325844,0.791952,0.74009,0.92118,0.505842,0.784836,0.225064,0.895575,0.0653568,0.926942,0.747141,0.154843,0.493803,0.0463225,0.825179,0.455452,0.153282,0.357409,0.35879,0.928042,0.196034,0.0553629,0.58695,0.0673876,0.670448,0.79941,0.527659,0.584976,0.579297,0.736829,0.892643,0.800526,0.589026,0.18556,0.400887,0.3094,0.111522,0.761074,0.88507,0.894133,0.456864,0.450927,0.883766,0.786667,0.973989,0.579265,0.714109,0.837615,0.533629,0.212211,0.671655,0.806209,0.702762,0.218142,0.207525,0.0864778,0.133016,0.125199,0.875116,0.262372,0.00937074,0.611481,0.499999,0.300836,0.217086,0.704061,0.47989,0.585889,0.959732,0.356092,0.636985,0.813728,0.53786,0.532755,0.700336,0.0672489,0.908369,0.943945,0.192857,0.867114,0.441321,0.841835,0.00237542,0.560307,0.432395,0.472657,0.982567,0.13251,0.446077,0.109308,0.655544,0.385186,0.812112,0.463051,0.500792,0.441249,0.309505,0.758546,0.672071,0.967468,0.0260385,0.928635,0.631673,0.826364,0.65644,0.754438,0.327036,0.0338671,0.697404,0.809992,0.882455,0.0096699,0.508059,0.672373,0.870368,0.574716,0.0513825,0.436775,0.631575,0.647614,0.173792,0.839586,0.248274,0.151399,0.763772,0.848255,0.273797,0.0507373,0.702654,0.773668,0.186572,0.297657,0.732581,0.551459,0.604158,0.458115,0.985965,0.0244055,0.953858,0.433622,0.399735,0.699775,0.984805,0.12646,0.0945179,0.477727,0.656653,0.918476,0.451454,0.670857,0.113819,0.371449,0.624424,0.909218,0.865436,0.486181,0.253242,0.93422,0.396364,0.878625,0.316625,0.824673,0.844357,0.737725,0.962342,0.253605,0.724355,0.625968,0.255897,0.517811,0.222532,0.465434,0.00524014,0.575393,0.174699,0.706631,0.21354,0.694496,0.264809,0.993803,0.779264,0.253804,0.715795,0.510382,0.855254,0.161921,0.749257,0.960651,0.264077,0.108612,0.251492,0.39012,0.138669,0.0064612,0.386585,0.889675,0.725197,0.448118,0.342023,0.433069,0.548459,0.725098,0.0327099,0.871034,0.29171,0.457346,0.877175,0.995352,0.325787,0.622862,0.750116,0.373646,0.451967,0.197179,0.96146,0.693328,0.857956,0.948189,0.697056,0.229824,0.856919,0.607358,0.828494,0.0984377,0.171424,0.964277,0.984929,0.40383,0.193768,0.246661,0.815816,0.715319,0.406722,0.668287,0.0246571,0.529543,0.461373,0.898316,0.790292,0.985538,0.746835,0.637924,0.731224,0.29649,0.945737,0.607718,0.894554,0.383963,0.409275,0.205662,0.158761,0.542506,0.153035,0.00606775,0.550893,0.423225,0.153145,0.402054,0.940831,0.191499,0.364633,0.295957,0.722443,0.287158,0.348754,0.200583,0.132086,0.00358486,0.324961,0.873015,0.451752,0.650079,0.788329,0.491833,0.24433,0.90067,0.0941513,0.330682,0.353748,0.737783,0.757945,0.341776,0.134256,0.569791,0.740576,0.241454,0.920382,0.305583,0.921019,0.919333,0.295303,0.0252326,0.499197,0.00692385,0.286605,0.491381,0.719448,0.142782,0.839244,0.358569,0.997005,0.520212,0.385833,0.341643,0.523628,0.926771,0.939933,0.480284,0.332392,0.111355,0.284849,0.898068,0.338233,0.384288,0.586286,0.106236,0.0312713,0.691945,0.0838482,0.856059,0.804399,0.819082,0.215047,0.814799,0.835717,0.131773,0.012867,0.710354,0.700867,0.107971,0.00679749,0.36748,0.808089,0.72469,0.596769,0.139457,0.0109098,0.254528,0.37802,0.202914,0.922155,0.0890121,0.906683,0.71929,0.516731,0.0550084,0.201717,0.0192419,0.110802,0.693626,0.821637,0.0935897,0.0679748,0.552366,0.915389,0.666903,0.707896,0.721701,0.628337,0.151073,0.491358,0.230761,0.310575,0.264529,0.564365,0.235741,0.513777,0.318851,0.111343,0.991213,0.408461,0.775284,0.997394,0.0602804,0.882944,0.181821,0.995672,0.870608,0.646822,0.849017,0.808791,0.942353,0.839247,0.000169396,0.0886918,0.579928,0.74263,0.25988,0.29092,0.955525,0.119088,0.0894151,0.929113,0.167356,0.715028,0.452892,0.476174,0.272513,0.382551,0.739269,0.922557,0.843396,0.410977,0.0547479,0.153156,0.766081,0.0923432,0.0480608,0.326415,0.758441,0.44963,0.881549,0.250796,0.897813,0.125007,0.798446,0.638752,0.228997,0.571064,0.88988,0.0695783,0.854861,0.178768,0.808876,0.704748,0.0546591,0.579285,0.927722,0.216129,0.104764,0.836225,0.829666,0.287078,0.549361,0.722194,0.199188,0.418377,0.452602,0.500782,0.907189,0.403556,0.0798572,0.123312,0.714154,0.255414,0.35996,0.308145,0.779377,0.322736,0.282035,0.726023,0.481412,0.161423,0.185226,0.431067,0.637127,0.941501,0.955763,0.224154,0.0673453,0.735528,0.341279,0.818306,0.201535,0.236622,0.186952,0.201726,0.477978,0.799363,0.222174,0.667789,0.296505,0.0227742,|0.187201,0.104555,0.672755,0.549176,0.247906,0.021843,0.694089,0.402925,0.360954,0.807042,0.23784,0.515853,0.222796,0.788369,0.489236,0.301113,0.291561,0.174461,0.0769213,0.139641,0.351536,0.320702,0.934472,0.489895,0.0792126,0.0439207,0.764559,0.0820835,0.756855,0.936486,0.235741,0.545591,0.872697,0.300712,0.420788,0.271348,0.884748,0.353068,0.920315,0.68419,0.438908,0.637684,0.148244,0.506291,0.620366,0.427009,0.0675927,0.795228,0.259572,0.68953,0.428305,0.74516,0.998222,0.51046,0.867179,0.16708,0.0227388,0.0596443,0.34345,0.701594,0.561028,0.275123,0.280456,0.766493,0.538894,0.516469,0.823147,0.609434,0.473623,0.575876,0.332458,0.89941,0.473441,0.471638,0.136488,0.751105,0.441849,0.346657,0.821068,0.835985,0.888086,0.255002,0.699846,0.484704,0.412088,0.67715,0.224792,0.828716,0.991018,0.165638,0.0631616,0.740505,0.383583,0.808064,0.702823,0.979747,0.0964293,0.734978,0.136284,0.105774,0.461068,0.308158,0.326097,0.950366,0.0940952,0.484871,0.513669,0.629341,0.827285,0.799748,0.648082,0.5299,0.234451,0.588025,0.617323,0.940741,0.00412077,0.793436,0.415339,0.278237,0.805004,0.0605022,0.638251,0.496379,0.848041,0.460849,0.906634,0.137976,0.570387,0.660473,0.589166,0.295528,0.484206,0.174742,0.156938,0.204744,0.271755,0.353404,0.273811,0.384933,0.0243883,0.163123,0.799464,0.545058,0.427246,0.768231,0.199697,0.457454,0.452376,0.69632,0.590692,0.165148,0.42989,0.312269,0.884318,0.743929,0.975329,0.739532,0.287398,0.757498,0.801327,0.3209,0.260249,0.222768,0.38513,0.685369,0.467019,0.637652,0.519262,0.982475,0.970431,0.755039,0.493235,0.310029,0.881106,0.0549501,0.187617,0.344275,0.0552742,0.0299307,0.901228,0.251545,0.752435,0.902498,0.654466,0.282781,0.913315,0.250074,0.0706658,0.211691,0.291766,0.166906,0.0872397,0.786301,0.536364,0.0494562,0.885476,0.849511,0.634902,0.511957,0.0199102,0.859775,0.663762,0.699884,0.602579,0.287719,0.879416,0.00100899,0.179558,0.0802056,0.79488,0.961386,0.293098,0.162634,0.22187,0.00168103,0.379048,0.274528,0.198717,0.00515306,0.819104,0.191938,0.717708,0.348676,0.293068,0.961514,0.565721,0.0320458,0.724181,0.941436,0.553923,0.8427,0.371648,0.338046,0.890296,0.905243,0.0139599,0.207107,0.0458195,0.232742,0.00600761,0.349939,0.719496,0.137191,0.677584,0.619408,0.819812,0.0550691,0.047464,0.51579,0.0554683,0.746151,0.383574,0.0865621,0.318684,0.842634,0.779735,0.0325437,0.955985,0.419774,0.632781,0.860703,0.381643,0.173744,0.42237,0.803884,0.526065,0.0978196,0.696413,0.979479,0.0228174,0.309132,0.26099,0.789527,0.0590736,0.706171,0.588059,0.154297,0.386655,0.92297,0.352948,0.00315791,0.675828,0.941828,0.389719,0.873935,0.151769,0.626095,0.289493,0.0943543,0.313337,0.459507,0.380484,0.539771,0.666175,0.727219,0.916487,0.687097,0.367044,0.315709,0.799877,0.842047,0.304498,0.221589,0.672267,0.330313,0.176699,0.125641,0.405321,0.564093,0.363398,0.741831,0.025894,0.16524,0.827041,0.634885,0.56467,0.135721,0.232733,0.585053,0.0655496,0.550709,0.681504,0.743913,0.428201,0.963024,0.773027,0.94908,0.594549,0.725073,0.256138,0.890486,0.526806,0.964793,0.417745,0.715672,0.722259,0.739871,0.888033,0.684253,0.57086,0.798494,0.990371,0.205023,0.85667,0.233835,0.397911,0.790479,0.513282,0.379503,0.56982,0.534543,0.135772,0.515199,0.557525,0.935899,0.484933,0.325723,0.101872,0.941381,0.00866938,0.0833027,0.118949,0.470188,0.583314,0.88092,0.24948,0.589398,0.0685328,0.292706,0.380972,0.945256,0.480783,0.751049,0.152831,0.28235,0.857813,0.871287,0.56695,0.256481,0.850967,0.415659,0.153511,0.158319,0.401202,0.913599,0.446408,0.76454,0.399186,0.257424,0.907645,0.997103,0.106673,0.099251,0.310068,0.890668,0.629926,0.767613,0.751879,0.0151953,0.32836,0.824292,0.0679126,0.986353,0.175185,0.461009,0.966391,0.311028,0.727659,0.596966,0.319336,0.242693,0.816376,0.273396,0.30297,0.416518,0.523262,0.620674,0.489439,0.175253,0.86127,0.373207,0.976201,0.711993,0.104508,0.687749,0.227235,0.198899,0.0915948,0.622371,0.595515,0.591588,0.229616,0.673024,0.500781,0.541036,0.587129,0.608954,0.0206391,0.726924,0.456991,0.614392,0.261458,0.00330687,0.903621,0.355139,0.661339,0.390462,0.188074,0.855993,0.163831,0.506198,0.665483,0.857949,0.846677,0.396073,0.0785943,0.588222,0.874593,0.766776,0.216567,0.516287,0.0924268,0.225984,0.948858,0.79436,0.683839,0.964709,0.37112,0.687204,0.138313,0.311294,0.256774,0.181061,0.570629,0.197865,0.229495,0.661007,0.86619,0.820607,0.376555,0.33126,0.998115,0.689278,0.692025,0.884526,0.469012,0.20927,0.355346,0.813505,0.0111209,0.379717,0.938771,0.640074,0.218287,0.874491,0.392254,0.505191,0.549176,0.00685757,0.801196,0.361805,0.134838,0.854802,0.909539,0.597757,0.974357,0.925195,0.198051,0.148948,0.994224,0.989639,0.124765,0.0779345,0.811018,0.53187,0.291137,0.784342,0.391004,0.539868,0.169023,0.137753,0.316051,0.668653,0.508752,0.275875,0.00432372,0.193755,0.166182,0.652459,0.601563,0.180476,0.372528,0.841841,0.388326,0.4292,0.418533,0.0107574,0.535264,0.835937,0.475221,0.889843,0.343788,0.988869,0.666899,0.17113,0.603451,0.433657,0.598132,0.937764,0.897466,0.789307,0.0804145,0.371848,0.341437,0.319616,0.888931,0.852606,0.819391,0.812301,0.977687,0.0216931,0.394884,0.0820787,0.604741,0.180264,0.265976,0.999421,0.476376,0.36517,0.311717,0.543216,0.161833,0.154523,0.845245,0.765001,0.10906,0.400494,0.853009,0.650526,0.00192571,0.686586,0.422806,0.772184,0.934744,0.050621,0.833324,0.459501,0.216057,0.772224,0.159844,0.910586,0.410487,0.39183,0.520761,0.830426,0.490667,0.22607,0.968395,0.727623,0.803037,0.378763,0.804192,0.114185,0.122486,0.533388,0.241123,0.031645,0.69326,0.0273495,0.641061,0.345269,0.951918,0.915554,0.721443,0.932185,0.158702,0.182465,0.525686,0.601707,0.655977,0.42702,0.674907,0.809309,0.724808,0.968137,0.00156981,0.220636,0.399151,0.432183,0.83246,0.017849,0.954145,0.169572,0.209213,0.843362,0.167841,0.207447,0.877187,0.191687,0.00922126,0.950955,0.791248,0.0681559,0.499431,0.364626,0.139331,0.737069,0.849408,0.125654,0.0686129,0.0419912,0.225104,0.639931,0.134509,0.235295,0.576938,0.425006,0.977293,0.227533,0.69272,0.388715,0.271444,0.5247,0.804202,0.109361,0.895774,0.690222,0.822227,0.619795,0.281835,0.363675,0.418666,0.611482,0.725785,0.0883796,0.580654,0.0385624,0.828111,0.479085,0.320776,0.70654,0.967452,0.275024,0.133229,0.757982,0.972953,0.116689,0.526098,0.0494673,0.821707,0.543425,0.289738,0.836942,0.896925,0.0163516,0.155442,0.982274,0.632697,0.552728,0.336558,0.642303,0.589589,0.229335,0.863849,0.624612,0.950144,0.515146,0.28451,0.196182,0.936577,0.509146,0.0914067,0.205292,0.429536,0.702159,0.23098,0.787785,0.951278,0.323002,0.0219123,0.170756,0.72866,0.505944,0.774519,0.16366,0.337087,0.527244,0.072742,0.695602,0.155368,0.27976,0.298016,0.104826,0.569265,0.789686,0.822371,0.443706,0.560478,0.262451,0.423987,0.510348,0.435623,0.558431,0.163037,0.697164,0.143267,0.950363,0.339023,0.336204,0.0719801,0.924515,0.342289,0.563439,0.673388,0.543285,0.260183,0.684484,0.11965,0.808048,0.375216,0.840369,0.918716,0.825268,0.618985,0.361187,0.864453,0.254136,0.83868,0.630834,0.462151,0.130987,0.124709,0.336856,0.796501,0.670524,0.400874,0.754239,0.729069,0.771807,0.247474,0.672126,0.85593,0.453941,0.429045,0.833769,0.52831,0.231853,0.796987,0.807167,0.659188,0.0554568,0.713703,0.0408053,0.291249,0.631815,0.405149,0.17625,0.1724,0.00835979,0.987322,0.406345,0.514222,0.00226486,0.910021,0.334954,0.957203,0.0088281,0.360431,0.426801,0.171464,0.863756,0.184798,0.375095,0.0625696,0.73964,0.502657,0.993869,0.110815,0.549258,0.872973,0.921377,0.219503,0.447636,0.727304,0.795578,0.13387,0.788667,0.758628,0.85946,0.75736,0.940351,0.292222,0.908493,0.952808,0.489514,0.504648,0.973001,0.991985,0.0374213,0.67158,0.933418,0.46997,0.673505,0.342309,0.983674,0.0562365,0.0488466,0.739861,0.10982,0.992432,0.251836,0.0163217,0.749255,0.554607,0.644243,0.99084,0.0481679,0.833266,0.398466,0.19695,0.23363,0.383968,0.451368,0.59296,0.983339,0.0699323,0.521348,0.445957,0.695282,0.371575,0.461798,0.851313,0.799372,0.598471,0.622509,0.800669,0.952284,0.230284,0.299531,0.457742,0.406016,0.913742,0.0172678,0.305887,0.130256,0.450644,0.276344,0.714232,0.15758,0.955445,0.526713,0.814013,0.574412,0.860978,0.656418,0.0272917,0.948126,0.509198,0.64665,0.484581,0.819321,0.480247,0.982881,0.463898,0.926782,0.271701,0.0180699,0.944628,0.298803,0.757188,0.16803,0.296117,0.0422721,0.502047,0.35909,0.820975,0.503158,0.289234,0.0133665,0.556649,0.898552,0.226802,0.996573,0.641314,0.630842,0.153012,0.349698,0.171755,0.955724,0.130385,0.988146,0.713357,0.435278,0.677667,0.967751,0.493815,0.990211,0.146799,0.56912,0.0124419,0.00762689,0.929943,0.993049,0.764424,0.982367,0.646206,0.692988,0.8124,0.47214,0.725167,0.91418,0.270655,0.0823536,0.0862554,0.702603,0.601541,0.636895,0.0113518,0.102854,0.75714,0.0537504,0.0106726,0.15925,0.282227,0.79455,0.766375,0.105138,0.577149,0.682663,0.607218,0.468322,0.838339,0.768618,0.956128,0.151542,0.329013,0.147804,0.260797,0.291535,0.8247,0.486573,0.931026,0.230099,0.805961,0.664667,0.341042,0.35979,0.35365,0.780443,0.448485,0.416194,0.0613867,0.49667,0.6704,0.797596,0.83924,0.0740337,0.558172,0.289376,|0.570965,0.437063,0.0506316,0.330545,0.763021,0.599822,0.768976,0.689206,0.729946,0.943972,0.391213,0.400459,0.416472,0.299805,0.543166,0.631077,0.349929,0.527422,0.368106,0.113302,0.243899,0.134968,0.824606,0.338413,0.82844,0.461038,0.904756,0.0260946,0.5753,0.600899,0.947534,0.663699,0.839782,0.662878,0.313403,0.55888,0.562363,0.552459,0.385432,0.300837,0.36011,0.0855146,0.675878,0.0386679,0.230093,0.374906,0.407988,0.534854,0.154128,0.647416,0.786448,0.041105,0.0377985,0.753825,0.516153,0.95492,0.210333,0.670749,0.875912,0.75694,0.165484,0.928333,0.0621843,0.846543,0.900655,0.126076,0.818979,0.441945,0.157411,0.133245,0.910848,0.578273,0.169734,0.723648,0.997689,0.542819,0.766632,0.560549,0.357855,0.286868,0.431149,0.929972,0.0210622,0.0907857,0.285507,0.956878,0.329973,0.842156,0.78752,0.0698302,0.0965506,0.178261,0.981242,0.580416,0.698656,0.013129,0.752756,0.267338,0.950429,0.75769,0.175033,0.932167,0.383294,0.605392,0.716268,0.644112,0.684241,0.894936,0.355656,0.153808,0.414397,0.479782,0.733777,0.807284,0.0757384,0.67007,0.391357,0.227077,0.0110765,0.142475,0.232316,0.133099,0.969883,0.249606,0.958967,0.464312,0.689706,0.657322,0.731048,0.597643,0.441983,0.762444,0.476721,0.0488744,0.878974,0.837294,0.750729,0.0713928,0.822252,0.160283,0.576866,0.362931,0.255351,0.993645,0.68214,0.523935,0.392347,0.842849,0.666419,0.799979,0.410753,0.489799,0.174976,0.737246,0.265247,0.844209,0.521794,0.570826,0.32118,0.93004,0.806632,0.941637,0.871273,0.932141,0.313198,0.744123,0.534914,0.0686627,0.966375,0.873043,0.591075,0.109864,0.516488,0.729244,0.563784,0.610795,0.288621,0.269643,0.280645,0.0701491,0.695018,0.384422,0.700987,0.22706,0.236799,0.553335,0.254108,0.429428,0.133605,0.525506,0.460671,0.0869425,0.03207,0.783681,0.668951,0.0196881,0.876136,0.00411624,0.181711,0.964432,0.0590425,0.584729,0.210421,0.872231,0.528124,0.429336,0.301723,0.163914,0.508046,0.0522825,0.218274,0.889046,0.643565,0.283873,0.524636,0.80593,0.023252,0.566093,0.138234,0.00312155,0.435968,0.812034,0.625232,0.456713,0.313543,0.0450066,0.952329,0.462287,0.83823,0.652072,0.478358,0.938174,0.91396,0.354999,0.0865295,0.918376,0.835749,0.568335,0.586737,0.206591,0.885078,0.803102,0.429667,0.719427,0.39947,0.126277,0.626464,0.334936,0.215933,0.768629,0.269497,0.9234,0.528477,0.456186,0.766713,0.478973,0.0321849,0.267993,0.0356622,0.633763,0.752417,0.511459,0.276424,0.458576,0.636523,0.175959,0.0894741,0.231534,0.659929,0.167827,0.733194,0.227655,0.0101806,0.384242,0.535108,0.426486,0.642639,0.962848,0.199387,0.910851,0.0748684,0.025546,0.736104,0.514821,0.738047,0.911361,0.0284516,0.0495427,0.182942,0.116644,0.807318,0.4264,0.972697,0.713654,0.550599,0.0239109,0.248949,0.28168,0.975658,0.130841,0.177713,0.713386,0.684241,0.348554,0.140457,0.311131,0.43065,0.956253,0.808946,0.449919,0.426968,0.252527,0.618282,0.947345,0.755914,0.131142,0.0907031,0.910712,0.99484,0.156785,0.445964,0.344587,0.579432,0.553154,0.247578,0.351825,0.917376,0.39834,0.700276,0.0571019,0.187567,0.486953,0.927198,0.302725,0.906365,0.990812,0.866861,0.794703,0.182791,0.190388,0.90882,0.652955,0.381283,0.764402,0.227398,0.531435,0.0105599,0.389213,0.200535,0.845064,0.0477527,0.224811,0.303502,0.498723,0.971227,0.869554,0.770927,0.94162,0.827568,0.0962032,0.870295,0.0914172,0.921108,0.701964,0.710203,0.929993,0.336263,0.0813508,0.35868,0.444895,0.471481,0.396667,0.714058,0.697996,0.803246,0.840255,0.189834,0.263362,0.510734,0.844938,0.344342,0.858439,0.922212,0.521455,0.0660406,0.147027,0.111838,0.548651,0.85387,0.444064,0.353567,0.0245807,0.725587,0.392343,0.407966,0.358585,0.497185,0.796731,0.568559,0.676994,0.50458,0.681546,0.0460901,0.504398,0.0796691,0.835349,0.338535,0.221637,0.663932,0.978281,0.823913,0.42707,0.695477,0.958122,0.930815,0.554026,0.717288,0.80155,0.0270044,0.850964,0.680794,0.411867,0.766465,0.973496,0.61654,0.637283,0.938736,0.820623,0.252202,0.597355,0.343917,0.777824,0.139802,0.249591,0.237241,0.295002,0.0145891,0.75295,0.667337,0.118859,0.311628,0.304968,0.112521,0.426855,0.638863,0.407317,0.981277,0.30414,0.10487,0.0233258,0.555144,0.101605,0.0321188,0.0655648,0.298333,0.438457,0.597501,0.14587,0.804009,0.358949,0.587408,0.212198,0.816869,0.378134,0.899509,0.326624,0.333132,0.794723,0.16773,0.108287,0.863414,0.634512,0.999311,0.75368,0.382378,0.261229,0.0352614,0.85856,0.287775,0.848983,0.199393,0.338759,0.422536,0.649585,0.273651,0.979888,0.51491,0.0413449,0.781662,0.0124525,0.211718,0.408045,0.19987,0.124314,0.0100507,0.226764,0.175375,0.453126,0.347081,0.309505,0.790643,0.730508,0.501056,0.413354,0.141079,0.285237,0.792636,0.771805,0.383388,0.658446,0.158798,0.624272,0.413098,0.298173,0.682449,0.77055,0.307716,0.0465729,0.818296,0.511307,0.212035,0.795667,0.861287,0.00700998,0.27968,0.218303,0.732938,0.535595,0.0790548,0.550037,0.125751,0.0836521,0.708505,0.0733323,0.761218,0.869078,0.537514,0.852297,0.881668,0.102768,0.985922,0.676434,0.879557,0.00761962,0.76005,0.803119,0.235333,0.396556,0.143836,0.208104,0.539984,0.229433,0.241376,0.859243,0.700672,0.414727,0.479722,0.45039,0.181394,0.233265,0.684317,0.110023,0.20529,0.142885,0.20562,0.351818,0.852611,0.684736,0.91105,0.0725831,0.139754,0.798595,0.0976663,0.300379,0.196269,0.926281,0.412286,0.755135,0.948353,0.158683,0.267349,0.866288,0.328087,0.110369,0.0614201,0.428377,0.991297,0.874138,0.358059,0.699361,0.242983,0.46886,0.138235,0.813576,0.796373,0.332194,0.458192,0.286541,0.498861,0.183897,0.977134,0.952707,0.917535,0.308047,0.120567,0.782141,0.469439,0.758834,0.857467,0.268856,0.842105,0.326846,0.609135,0.728265,0.344201,0.155825,0.520605,0.580492,0.118883,0.700717,0.732706,0.716293,0.646027,0.244977,0.519837,0.922163,0.924456,0.170866,0.200873,0.478834,0.0621175,0.57953,0.51469,0.861263,0.66556,0.817466,0.233737,0.726547,0.716883,0.415503,0.862413,0.423783,0.599449,0.0411654,0.665763,0.553805,0.0266937,0.782456,0.674382,0.0574781,0.995222,0.140353,0.705264,0.171134,0.513298,0.569797,0.724352,0.545651,0.662071,0.515004,0.00105101,0.286345,0.120357,0.887564,0.721441,0.104659,0.60453,0.602205,0.291103,0.199048,0.906638,0.0258523,0.145893,0.761863,0.750854,0.980832,0.232145,0.188699,0.455301,0.340864,0.317632,0.117764,0.0577949,0.449299,0.203501,0.797155,0.0889892,0.104989,0.732982,0.044983,0.374673,0.0154531,0.0391464,0.435898,0.559026,0.738463,0.812221,0.0408481,0.370356,0.498223,0.566381,0.290553,0.0122836,0.363455,0.626318,0.947926,0.805922,0.0218465,0.996889,0.562666,0.80044,0.96601,0.535905,0.104699,0.977234,0.0644041,0.0987055,0.755676,0.865349,0.235961,0.126397,0.678108,0.94975,0.0520897,0.208978,0.21046,0.476995,0.780147,0.631748,0.44069,0.720047,0.971543,0.908979,0.729329,0.0514479,0.304276,0.956409,0.638759,0.880676,0.933179,0.859751,0.0956729,0.465645,0.744375,0.640876,0.948007,0.291639,0.833288,0.167581,0.877653,0.632607,0.553996,0.272409,0.300519,0.521583,0.0787424,0.125262,0.755206,0.0272449,0.0183687,0.117339,0.0306631,0.422164,0.772037,0.825002,0.762331,0.206586,0.686027,0.475829,0.298382,0.709403,0.23754,0.36564,0.992656,0.253584,0.457669,0.667508,0.728955,0.391956,0.439273,0.152542,0.822899,0.502135,0.398661,0.465059,0.383123,0.171246,0.0485916,0.158939,0.530154,0.716412,0.998244,0.295428,0.620868,0.476024,0.228875,0.0981365,0.886266,0.384243,0.933555,0.269121,0.679994,0.155172,0.0918111,0.52686,0.396459,0.325735,0.0168866,0.0195798,0.523584,0.310424,0.140119,0.235442,0.527362,0.773899,0.398474,0.387653,0.686311,0.654892,0.514898,0.359954,0.639847,0.208736,0.279293,0.00560129,0.454096,0.975672,0.390495,0.211705,0.770212,0.534106,0.406491,0.0606049,0.75752,0.170539,0.904429,0.279772,0.95015,0.858102,0.000314116,0.017284,0.900536,0.180591,0.394681,0.853712,0.23393,0.492449,0.0033927,0.786176,0.822501,0.360367,0.533276,0.760742,0.111028,0.951972,0.532889,0.720829,0.967561,0.770186,0.491764,0.771518,0.803086,0.69621,0.199503,0.712818,0.181628,0.833106,0.60833,0.903182,0.593392,0.909588,0.848213,0.519029,0.0909902,0.212167,0.440787,0.90145,0.650225,0.850468,0.82795,0.227993,0.343162,0.112428,0.0231773,0.997747,0.173464,0.0726394,0.978529,0.0700043,0.516813,0.320376,0.417868,0.263676,0.687846,0.174491,0.680978,0.905061,0.612743,0.136401,0.370917,0.305394,0.325261,0.522792,0.568783,0.494705,0.460111,0.92545,0.520288,0.425501,0.503664,0.955121,0.484378,0.0346319,0.367669,0.406539,0.804627,0.351026,0.351977,0.721073,0.43849,0.535239,0.816735,0.459909,0.544951,0.0766234,0.112703,0.0480165,0.652114,0.144698,0.884068,0.751304,0.412052,0.893988,0.350072,0.231885,0.572306,0.664485,0.142627,0.62055,0.464182,0.930759,0.129716,0.921561,0.39437,0.328239,0.967917,0.760808,0.689557,0.680984,0.528169,0.128393,0.0111443,0.694073,0.562614,0.764747,0.419387,0.142254,0.873291,0.585693,0.761753,0.175512,0.45914,0.497912,0.369637,0.188538,0.982481,0.854958,0.319227,0.0476328,0.967488,0.731497,0.761568,0.0337877,0.285116,0.996985,0.0765205,0.469789,0.973777,0.985293,0.132065,0.612645,0.497521,0.692594,0.338886,0.449215,0.35876,0.28382,0.691087,0.105756,0.135643,0.322646,0.134893,0.396232,0.273474,0.202713,0.894584,0.258767,0.0531405,0.906714,0.0247623,|0.740251,0.534498,0.600772,0.221362,0.318796,0.345295,0.704188,0.629233,0.458361,0.837811,0.255159,0.187031,0.723394,0.272417,0.733227,0.0355986,0.75419,0.442728,0.310777,0.968395,0.277711,0.103703,0.334457,0.122623,0.476571,0.947195,0.0780401,0.526706,0.593096,0.884342,0.742273,0.255644,0.51484,0.978122,0.193377,0.181907,0.391258,0.0938893,0.659873,0.60067,0.576107,0.445846,0.0232351,0.537565,0.723702,0.435636,0.209602,0.638613,0.77763,0.60131,0.127456,0.00641519,0.503485,0.353527,0.214872,0.487636,0.80404,0.287859,0.435781,0.820292,0.900283,0.918518,0.612052,0.958216,0.323948,0.971565,0.094426,0.634674,0.860144,0.599894,0.972741,0.156853,0.445189,0.552169,0.0753829,0.828408,0.479163,0.763544,0.0631982,0.656228,0.259718,0.445456,0.0930042,0.735286,0.959544,0.677689,0.504265,0.390415,0.531035,0.301303,0.994755,0.784183,0.84471,0.32467,0.352625,0.755688,0.558603,0.159489,0.282286,0.224564,0.907531,0.788736,0.905617,0.568234,0.307675,0.510391,0.703226,0.600334,0.823668,0.94655,0.0187732,0.589676,0.0912888,0.891778,0.539576,0.480774,0.159786,0.250081,0.597801,0.809895,0.0408261,0.500206,0.232028,0.290692,0.293449,0.506373,0.172217,0.521455,0.30818,0.0446544,0.429298,0.717929,0.930269,0.454199,0.402012,0.178216,0.154545,0.35369,0.896514,0.357514,0.968154,0.0900133,0.589554,0.869713,0.0411889,0.373061,0.490878,0.433122,0.289461,0.721587,0.86452,0.792895,0.754522,0.968263,0.521164,0.905825,0.691617,0.34252,0.246124,0.942796,0.886038,0.397928,0.857957,0.0514416,0.546031,0.95008,0.871884,0.961451,0.285506,0.565224,0.761513,0.76137,0.971242,0.764056,0.588703,0.491946,0.538332,0.980239,0.135733,0.434692,0.28758,0.477502,0.385017,0.907721,0.563781,0.875332,0.189902,0.72355,0.495003,0.63384,0.801266,0.664615,0.971349,0.0446835,0.947126,0.961461,0.106266,0.223706,0.311864,0.0129361,0.946321,0.0514153,0.844734,0.0706028,0.0666569,0.958628,0.982785,0.171687,0.977036,0.404485,0.597382,0.52284,0.185153,0.9288,0.54751,0.498098,0.98645,0.299531,0.795442,0.208521,0.296967,0.822101,0.505849,0.764856,0.849486,0.726421,0.83487,0.363809,0.191877,0.403136,0.413858,0.531448,0.496201,0.306681,0.724657,0.896835,0.354875,0.800194,0.460851,0.725987,0.0260378,0.561797,0.874078,0.199303,0.389821,0.14865,0.357277,0.443327,0.7348,0.955061,0.193621,0.0821567,0.458005,0.639858,0.0031606,0.0913044,0.176793,0.296677,0.9415,0.62845,0.00903934,0.0829608,0.182441,0.760994,0.29111,0.483957,0.753825,0.654781,0.8192,0.0882777,0.0415651,0.589375,0.849127,0.727457,0.910313,0.169291,0.886658,0.93855,0.359686,0.564573,0.225686,0.903745,0.127835,0.658081,0.377053,0.876932,0.57979,0.96038,0.615406,0.142427,0.8804,0.543123,0.104282,0.649158,0.388003,0.489,0.609826,0.166816,0.0825192,0.754774,0.906807,0.0112619,0.39938,0.769681,0.0733705,0.874758,0.125415,0.271811,0.342399,0.866722,0.122289,0.282764,0.0609791,0.872525,0.110783,0.0173771,0.584297,0.132613,0.333044,0.820088,0.319012,0.63813,0.135559,0.129923,0.206139,0.299175,0.858771,0.955683,0.201386,0.940882,0.599385,0.32061,0.0762277,0.352652,0.676761,0.147728,0.978664,0.249035,0.754682,0.527673,0.284855,0.0641658,0.0708405,0.573234,0.959988,0.074044,0.0506317,0.227105,0.515872,0.531387,0.19189,0.50865,0.429468,0.238484,0.747957,0.957792,0.989133,0.0147809,0.0582768,0.761922,0.286771,0.954864,0.310495,0.385031,0.341263,0.34329,0.265549,0.438219,0.929683,0.388411,0.865129,0.840357,0.159102,0.401216,0.763445,0.263631,0.0612779,0.0690649,0.278404,0.488804,0.481777,0.414768,0.900286,0.283617,0.796078,0.148021,0.578245,0.177633,0.706261,0.886161,0.577069,0.937757,0.751711,0.566002,0.498001,0.509557,0.985298,0.55647,0.844189,0.0599113,0.870478,0.402419,0.0242451,0.980207,0.434285,0.616967,0.556614,0.373462,0.157338,0.846293,0.487919,0.20232,0.366254,0.210735,0.48867,0.470187,0.34849,0.864602,0.22188,0.201354,0.974167,0.574631,0.174823,0.371038,0.510085,0.900249,0.415148,0.943949,0.113965,0.222737,0.546555,0.0877844,0.267392,0.730749,0.958157,0.573244,0.559719,0.0694306,0.214373,0.319481,0.389729,0.716606,0.143133,0.64828,0.81411,0.970709,0.46721,0.287185,0.274096,0.378222,0.420886,0.557918,0.726428,0.207098,0.985322,0.706397,0.344502,0.839302,0.00601256,0.887205,0.0685075,0.226204,0.00926489,0.53477,0.108484,0.257211,0.406861,0.016418,0.434776,0.0902998,0.942619,0.141341,0.425412,0.159253,0.363549,0.937375,0.923841,0.785591,0.92542,0.0856436,0.724714,0.0780842,0.232493,0.828552,0.286068,0.666646,0.456884,0.432453,0.569148,0.566265,0.700541,0.736265,0.404946,0.946029,0.991737,0.680453,0.240072,0.43992,0.304135,0.105623,0.884388,0.710975,0.480126,0.979921,0.749673,0.722402,0.968379,0.462859,0.0587251,0.567307,0.15599,0.255855,0.7716,0.204718,0.07963,0.230725,0.287228,0.339286,0.933432,0.904509,0.352263,0.167323,0.371936,0.729554,0.67712,0.883494,0.378387,0.289534,0.462229,0.066725,0.47293,0.620288,0.669441,0.736884,0.448646,0.526372,0.310341,0.968966,0.803014,0.167498,0.261793,0.894453,0.118465,0.432171,0.834953,0.617969,0.832878,0.714179,0.103533,0.120399,0.239037,0.962978,0.691611,0.69454,0.628026,0.839276,0.0694183,0.270979,0.851283,0.369771,0.466057,0.511375,0.615181,0.236818,0.611081,0.629596,0.769241,0.778867,0.015662,0.192797,0.868027,0.0343771,0.318756,0.010697,0.869314,0.551769,0.942196,0.250581,0.0454538,0.602384,0.937002,0.0725455,0.222219,0.633788,0.164599,0.74084,0.548934,0.373964,0.499141,0.273406,0.421366,0.337614,0.744197,0.490829,0.160366,0.0860752,0.578585,0.779669,0.225133,0.102958,0.20246,0.953971,0.971392,0.527118,0.551117,0.0877941,0.361485,0.786677,0.525946,0.63855,0.309617,0.087607,0.0977632,0.401733,0.857747,0.520131,0.0350519,0.230035,0.0767074,0.337388,0.823256,0.934271,0.0498644,0.215923,0.352589,0.296824,0.844067,0.988526,0.532034,0.810717,0.106512,0.692108,0.591817,0.209511,0.634641,0.943753,0.762137,0.153987,0.590489,0.664129,0.307034,0.757973,0.871777,0.230171,0.56091,0.190237,0.699885,0.348419,0.556598,0.446958,0.506018,0.347779,0.599955,0.591822,0.848635,0.210922,0.406137,0.224075,0.434148,0.971697,0.150221,0.219446,0.668698,0.831915,0.383125,0.83639,0.22951,0.0450252,0.779021,0.0261578,0.844768,0.48561,0.875955,0.970542,0.423742,0.300085,0.942405,0.321377,0.957679,0.645228,0.715352,0.0603276,0.510416,0.659585,0.13987,0.237584,0.818872,0.817133,0.813969,0.0702072,0.848872,0.505459,0.569055,0.347695,0.463204,0.382793,0.872051,0.729791,0.834181,0.108277,0.535737,0.259941,0.178705,0.188322,0.528575,0.864662,0.451527,0.483415,0.902958,0.328971,0.646226,0.947278,0.462501,0.609421,0.866832,0.637685,0.279287,0.170433,0.189776,0.520065,0.864257,0.805871,0.472745,0.921156,0.0219497,0.64101,0.0259354,0.237953,0.938226,0.441349,0.38714,0.989317,0.376134,0.0444458,0.53544,0.253456,0.147909,0.389718,0.499195,0.139521,0.846073,0.501113,0.0760438,0.175068,0.881154,0.792059,0.142603,0.837967,0.249328,0.0980486,0.680244,0.736636,0.583597,0.740392,0.580864,0.901828,0.980691,0.141391,0.418057,0.914855,0.343684,0.606453,0.965556,0.573205,0.66519,0.240882,0.674418,0.166273,0.857993,0.0684049,0.973785,0.39046,0.967259,0.8976,0.010593,0.557104,0.446177,0.782608,0.455613,0.567171,0.619468,0.561393,0.809667,0.995545,0.716619,0.898134,0.798829,0.645289,0.114001,0.264938,0.511146,0.781161,0.0110167,0.00398654,0.0304268,0.145087,0.920511,0.922755,0.643731,0.382356,0.14884,0.797286,0.836868,0.745595,0.664954,0.743334,0.78677,0.12543,0.732795,0.159087,0.978286,0.754423,0.890449,0.44222,0.757703,0.379904,0.386952,0.34698,0.0802262,0.412532,0.320929,0.135061,0.456103,0.0687671,0.148537,0.294705,0.216187,0.714668,0.113598,0.62071,0.166555,0.555645,0.869397,0.636006,0.732916,0.783352,0.870054,0.343025,0.460411,0.134295,0.310521,0.212555,0.708198,0.388841,0.97106,0.637179,0.107485,0.573511,0.969609,0.815462,0.21335,0.809504,0.887467,0.0176386,0.620576,0.924592,0.0267273,0.472948,0.136465,0.920434,0.00424123,0.853098,0.441339,0.699892,0.559624,0.182982,0.00574589,0.893229,0.422162,0.745825,0.13936,0.912462,0.158839,0.413432,0.965982,0.891414,0.368763,0.38559,0.627618,0.925649,0.546991,0.393925,0.918758,0.111235,0.616118,0.129138,0.505448,0.981619,0.61925,0.200355,0.149705,0.508273,0.12764,0.331272,0.277536,0.262243,0.645981,0.58266,0.285203,0.102769,0.339834,0.382146,0.785108,0.147811,0.479388,0.0633,0.835746,0.468496,0.717089,0.455002,0.0014227,0.692608,0.972924,0.0715442,0.850729,0.294934,0.929603,0.615299,0.0519737,0.116688,0.500445,0.751637,0.677381,0.402259,0.915995,0.157462,0.041698,0.221364,0.666605,0.152534,0.407225,0.0451426,0.204759,0.666464,0.0698292,0.253943,0.258658,0.561872,0.939741,0.546399,0.84365,0.760053,0.409487,0.782804,0.608316,0.536248,0.851531,0.0587091,0.671608,0.576281,0.744928,0.34017,0.490125,0.508376,0.911652,0.924055,0.862075,0.973105,0.439758,0.54207,0.67737,0.962181,0.445608,0.519553,0.861826,0.84,0.925263,0.656725,0.173927,0.458189,0.880873,0.584936,0.317254,0.536751,0.506491,0.796734,0.98896,0.804013,0.719429,0.0390106,0.180905,0.8743,0.438507,0.285736,0.203413,0.711426,0.68169,0.0354944,0.846044,0.324863,0.132008,0.422366,0.461979,0.805616,0.0902684,0.945092,0.606818,0.197009,0.00800389,0.639934,|0.792655,0.807291,0.11961,0.00392866,0.882569,0.383726,0.445886,0.800296,0.549498,0.979104,0.874073,0.160698,0.312298,0.629182,0.643461,0.281723,0.783658,0.47084,0.660827,0.0573358,0.174739,0.228827,0.918987,0.690252,0.0693384,0.278605,0.792005,0.085358,0.181295,0.637248,0.041863,0.841728,0.684779,0.21942,0.495991,0.980824,0.0661806,0.400449,0.992983,0.867419,0.420145,0.532046,0.927024,0.681806,0.202313,0.809977,0.319809,0.796141,0.775462,0.566777,0.267156,0.0789155,0.0849792,0.976925,0.424738,0.43035,0.370128,0.00903302,0.779806,0.630222,0.372195,0.0185331,0.810359,0.944866,0.417509,0.132701,0.708327,0.619987,0.340539,0.973932,0.273094,0.414433,0.957625,0.505177,0.772216,0.464768,0.778674,0.31747,0.675652,0.258099,0.386777,0.274853,0.561737,0.548345,0.952747,0.952184,0.265616,0.96528,0.743211,0.669389,0.0761138,0.348252,0.0947163,0.513779,0.267266,0.400526,0.062618,0.559102,0.235307,0.588926,0.613803,0.0639656,0.940993,0.822309,0.457902,0.146488,0.0715815,0.0778723,0.572158,0.642978,0.228178,0.695404,0.0871085,0.627352,0.139474,0.696453,0.207911,0.906162,0.529171,0.255463,0.867176,0.729275,0.261996,0.107224,0.00762421,0.188777,0.149881,0.75886,0.796237,0.316614,0.228006,0.766682,0.397454,0.62179,0.88623,0.326629,0.737851,0.978098,0.0881149,0.543213,0.0980024,0.504553,0.200236,0.773652,0.113865,0.878554,0.718618,0.152373,0.0679669,0.497869,0.902694,0.953324,0.0866867,0.725916,0.241208,0.980242,0.301897,0.469984,0.990488,0.257037,0.209682,0.154924,0.425766,0.272416,0.0920635,0.00985545,0.268862,0.188578,0.431491,0.344133,0.48142,0.627692,0.0629684,0.511528,0.216214,0.255566,0.310021,0.837104,0.786728,0.167385,0.133425,0.520133,0.936355,0.960162,0.223479,0.13285,0.114409,0.521766,0.297932,0.00269359,0.268331,0.292012,0.329236,0.310725,0.00674695,0.0327163,0.0312318,0.39874,0.0505414,0.634642,0.8359,0.585968,0.863703,0.279853,0.888638,0.391065,0.334139,0.49758,0.491631,0.335158,0.356217,0.5441,0.872356,0.256621,0.52816,0.52947,0.253636,0.449125,0.624677,0.79854,0.414191,0.844892,0.877087,0.269595,0.636397,0.679584,0.821102,0.50385,0.545425,0.623067,0.535182,0.599237,0.49424,0.261848,0.35239,0.212973,0.610359,0.0929766,0.665924,0.359375,0.13288,0.522634,0.821078,0.539607,0.688089,0.228226,0.287515,0.696656,0.803146,0.723934,0.844606,0.934563,0.115212,0.815713,0.695251,0.281179,0.758753,0.503013,0.0986366,0.611978,0.0889482,0.564297,0.420196,0.623192,0.0543451,0.0747204,0.725005,0.949453,0.261045,0.105765,0.0728067,0.486935,0.118744,0.130249,0.849845,0.909949,0.460988,0.521426,0.0191512,0.0262859,0.634039,0.65368,0.518436,0.863876,0.199676,0.157171,0.655012,0.0435146,0.0427093,0.252367,0.502827,0.802301,0.916569,0.533621,0.593462,0.841802,0.35808,0.91669,0.509294,0.437541,0.52493,0.501643,0.921873,0.698372,0.672523,0.877656,0.360913,0.683759,0.31822,0.228408,0.119685,0.619328,0.687067,0.701293,0.219607,0.615646,0.426818,0.230966,0.866587,0.861041,0.914289,0.586417,0.854011,0.79703,0.327644,0.718718,0.236576,0.0251774,0.286536,0.831258,0.325196,0.961512,0.384774,0.703927,0.0628644,0.657664,0.303827,0.302378,0.93752,0.685371,0.187181,0.314898,0.658263,0.00421274,0.713127,0.640547,0.779136,0.137472,0.789411,0.682405,0.320352,0.621613,0.656247,0.580355,0.847882,0.737455,0.782412,0.028905,0.0269263,0.561663,0.80506,0.721607,0.848913,0.346842,0.891566,0.537087,0.92613,0.182376,0.948966,0.727623,0.254431,0.729388,0.259441,0.330539,0.616613,0.202999,0.842346,0.483667,0.00837946,0.0817749,0.811063,0.242527,0.0755902,0.579431,0.890527,0.57226,0.391412,0.176769,0.820496,0.272823,0.798054,0.138182,0.569531,0.0255578,0.109721,0.938171,0.724478,0.0130374,0.769087,0.841004,0.00712436,0.883474,0.0574328,0.808315,0.87429,0.87065,0.764757,0.502334,0.224947,0.426412,0.86293,0.0151604,0.755162,0.236158,0.503769,0.71087,0.281471,0.259428,0.852674,0.499161,0.651787,0.668429,0.41364,0.290395,0.975255,0.228857,0.922429,0.984754,0.792862,0.235601,0.872504,0.105337,0.683234,0.59978,0.655289,0.0490097,0.991492,0.492276,0.258093,0.0393389,0.851606,0.379989,0.572526,0.0892987,0.0439532,0.444473,0.707182,0.479183,0.637512,0.184194,0.984522,0.0270891,0.919475,0.551065,0.926277,0.732934,0.888865,0.0151503,0.0116344,0.824806,0.103178,0.245943,0.791609,0.0735083,0.950449,0.736882,0.682539,0.444732,0.700325,0.736951,0.913711,0.108789,0.77337,0.338828,0.904985,0.424489,0.0634448,0.106977,0.972964,0.801211,0.180264,0.414528,0.203372,0.950734,0.6823,0.808357,0.150632,0.227697,0.733397,0.889906,0.0532625,0.356104,0.736014,0.675162,0.241198,0.699116,0.650862,0.345026,0.234899,0.38631,0.969762,0.795023,0.271853,0.261039,0.589451,0.674072,0.604958,0.352566,0.0236421,0.569093,0.447668,0.539665,0.171844,0.186511,0.0153973,0.251467,0.0209056,0.984519,0.991772,0.219809,0.40549,0.652538,0.0638805,0.932778,0.107047,0.74694,0.341305,0.139712,0.792852,0.97524,0.097733,0.488563,0.360717,0.511351,0.667764,0.374664,0.507479,0.725847,0.715275,0.858242,0.686381,0.799733,0.849694,0.0188066,0.817241,0.754321,0.830842,0.821327,0.137343,0.93342,0.891562,0.874787,0.428553,0.91899,0.661873,0.0342032,0.884568,0.21074,0.105145,0.867404,0.188669,0.344672,0.327739,0.0279161,0.355562,0.88907,0.656114,0.830724,0.203484,0.297885,0.356392,0.904195,0.580667,0.921091,0.742188,0.732389,0.0473969,0.286192,0.0995837,0.38454,0.545874,0.525313,0.266434,0.240905,0.201405,0.914867,0.11097,0.492872,0.81799,0.752086,0.383385,0.127357,0.54026,0.817534,0.00835562,0.0275944,0.327042,0.335419,0.308401,0.0735449,0.57024,0.711404,0.617188,0.330249,0.942589,0.165182,0.599852,0.4099,0.865258,0.156614,0.53017,0.805681,0.804126,0.783976,0.770433,0.240622,0.243551,0.886761,0.823758,0.347165,0.386209,0.388591,0.115625,0.931784,0.069052,0.129799,0.646201,0.417282,0.781668,0.979733,0.285788,0.373113,0.832781,0.494501,0.606525,0.968076,0.546007,0.057056,0.646739,0.71481,0.0501638,0.386668,0.321167,0.939781,0.171426,0.876119,0.386557,0.610122,0.60813,0.618127,0.209308,0.232737,0.330597,0.769201,0.057025,0.764157,0.468925,0.137565,0.841502,0.862949,0.246394,0.51568,0.738857,0.363839,0.582591,0.779648,0.659006,0.0619518,0.448238,0.945835,0.579473,0.417929,0.977868,0.220102,0.589639,0.041173,0.634683,0.0872523,0.0491347,0.843126,0.115522,0.660773,0.394372,0.373993,0.743314,0.825424,0.0534154,0.0659559,0.875115,0.238851,0.722344,0.284455,0.349342,0.316458,0.634209,0.412252,0.576937,0.997736,0.14782,0.0336939,0.401463,0.614762,0.407807,0.0402425,0.98698,0.789581,0.497783,0.11077,0.239109,0.339443,0.895448,0.971611,0.977848,0.336899,0.796392,0.823022,0.0142653,0.563555,0.366555,0.872785,0.487692,0.950596,0.186004,0.51324,0.581887,0.870028,0.100609,0.160172,0.644867,0.466706,0.877023,0.734272,0.648218,0.535418,0.148894,0.374091,0.555911,0.405885,0.197211,0.120704,0.880713,0.363011,0.257211,0.00666928,0.947528,0.867482,0.261206,0.497209,0.449782,0.0624433,0.252222,0.227567,0.489934,0.173477,0.525434,0.771087,0.681533,0.787272,0.084388,0.29153,0.88383,0.839523,0.735666,0.271571,0.743212,0.512629,0.488456,0.902246,0.0529506,0.943759,0.459612,0.379538,0.0917235,0.276839,0.574984,0.133238,0.14156,0.460022,0.986943,0.392991,0.239471,0.935843,0.634087,0.19623,0.534163,0.567791,0.0981816,0.0678363,0.546447,0.172119,0.798071,0.133853,0.126769,0.755261,0.303405,0.799418,0.456103,0.101972,0.0587217,0.370511,0.465725,0.533625,0.0793268,0.579242,0.94389,0.73576,0.46747,0.399443,0.00373316,0.341759,0.400341,0.705457,0.114597,0.404903,0.96642,0.176084,0.604394,0.63683,0.95692,0.520658,0.159214,0.302099,0.621282,0.924526,0.671601,0.824484,0.18543,0.885746,0.912191,0.760969,0.715105,0.709061,0.459197,0.615908,0.380406,0.250985,0.962128,0.839498,0.637013,0.898383,0.808873,0.876354,0.12003,0.184199,0.201992,0.560898,0.107992,0.411686,0.635707,0.633299,0.399085,0.432671,0.796064,0.948207,0.316008,0.934114,0.427468,0.245279,0.795901,0.171719,0.0378422,0.335125,0.606348,0.632194,0.426138,0.68757,0.522087,0.389214,0.583423,0.707887,0.479066,0.328191,0.886382,0.103477,0.568877,0.850107,0.151127,0.700117,0.521211,0.34803,0.599222,0.623439,0.57884,0.924159,0.976108,0.565746,0.436388,0.944247,0.749311,0.184377,0.313033,0.028167,0.991356,0.121908,0.0944327,0.694725,0.966941,0.662421,0.287797,0.861929,0.310254,0.527542,0.0570552,0.626217,0.858772,0.238598,0.446015,0.916348,0.203193,0.551558,0.682426,0.702882,0.120912,0.538695,0.307505,0.807017,0.349403,0.570278,0.232344,0.333104,0.71716,0.996732,0.73019,0.836701,0.637232,0.704985,0.872505,0.95845,0.549607,0.0793009,0.555442,0.248545,0.607222,0.400482,0.631619,0.737002,0.834138,0.601597,0.0798971,0.0751476,0.0947766,0.902401,0.602819,0.205889,0.499601,0.509177,0.370735,0.243734,0.96372,0.296129,0.0351247,0.698629,0.364057,0.349291,0.451917,0.403127,0.449837,0.605427,0.168953,0.445699,0.723205,0.444319,0.0874179,0.689559,0.578877,0.221467,0.293707,0.423465,0.815334,0.919082,0.202482,0.033535,0.823279,0.246565,0.52759,0.00775462,0.461115,0.95182,0.253873,0.233007,0.639354,0.437308,0.0280448,0.279508,0.517546,0.342746,0.436971,0.158119,0.683544,0.763159,0.175679,0.22157,0.783987,0.299841,0.766862,0.551248,0.898235,0.667643,0.0474777,0.111489,|0.34088,0.144984,0.624018,0.933077,0.84236,0.685149,0.839904,0.530249,0.360871,0.487814,0.159335,0.727014,0.524455,0.967385,0.4502,0.074055,0.973861,0.169404,0.957527,0.568301,0.0581425,0.0637283,0.845547,0.411564,0.843357,0.949942,0.783974,0.27405,0.169106,0.0937165,0.854495,0.780624,0.280061,0.917834,0.912294,0.538632,0.413794,0.752057,0.396975,0.97422,0.700133,0.918784,0.558777,0.830357,0.359656,0.0868116,0.5211,0.801699,0.43031,0.266081,0.878311,0.0935525,0.30069,0.199137,0.0530756,0.331338,0.385401,0.181086,0.25283,0.737371,0.749631,0.110572,0.62578,0.946187,0.219924,0.519889,0.695873,0.0184348,0.64699,0.965086,0.242921,0.712071,0.661778,0.988669,0.993433,0.814468,0.558889,0.775761,0.688104,0.330324,0.0559103,0.79125,0.219226,0.648341,0.804779,0.911705,0.933842,0.933405,0.701169,0.720451,0.867841,0.83683,0.0988491,0.0388955,0.0529614,0.522514,0.691189,0.266993,0.357457,0.254128,0.885168,0.995126,0.41067,0.0872012,0.441633,0.167695,0.175111,0.466759,0.563624,0.592466,0.963846,0.986493,0.607965,0.757601,0.156631,0.674677,0.260967,0.0836014,0.204783,0.888001,0.684249,0.0689511,0.877904,0.00533485,0.955776,0.0499794,0.262725,0.00391316,0.584084,0.244754,0.903865,0.800015,0.0718442,0.683326,0.509801,0.61357,0.71423,0.115447,0.213876,0.473987,0.0284235,0.205954,0.249822,0.0222327,0.325812,0.913812,0.0339286,0.887664,0.641994,0.27079,0.784632,0.220302,0.580476,0.799891,0.108851,0.702133,0.428582,0.690792,0.139945,0.415916,0.980504,0.270303,0.835724,0.397497,0.186281,0.872868,0.239789,0.49724,0.0138957,0.425269,0.538682,0.513265,0.119191,0.0415308,0.108041,0.181788,0.735348,0.527317,0.458794,0.0295121,0.888422,0.664709,0.408388,0.931219,0.971986,0.951807,0.611327,0.0337901,0.14736,0.118331,0.00155723,0.457922,0.510052,0.647778,0.734436,0.952624,0.0684951,0.836868,0.345018,0.586633,0.560387,0.0369637,0.700157,0.870786,0.672672,0.200032,0.141045,0.760798,0.641728,0.768261,0.487643,0.284802,0.340387,0.340476,0.833816,0.533639,0.27792,0.0894632,0.258105,0.231394,0.972803,0.612459,0.842738,0.50959,0.938724,0.516146,0.553788,0.6899,0.375015,0.29171,0.86042,0.823401,0.85731,0.717336,0.140697,0.818592,0.951556,0.095685,0.416542,0.268638,0.990912,0.53587,0.603072,0.347607,0.624886,0.458497,0.833162,0.80979,0.195605,0.960918,0.391663,0.581258,0.793957,0.564308,0.616406,0.634289,0.680511,0.728809,0.62239,0.501377,0.53515,0.0397284,0.916793,0.10524,0.901147,0.596097,0.93315,0.398991,0.917613,0.0435418,0.994671,0.0895765,0.558292,0.640147,0.981065,0.482889,0.639271,0.798577,0.217963,0.372171,0.874669,0.154047,0.131997,0.366694,0.886747,0.477699,0.593348,0.614403,0.907299,0.525891,0.170057,0.880632,0.718452,0.746421,0.257043,0.152633,0.502548,0.29744,0.880488,0.926759,0.180431,0.5673,0.864902,0.303925,0.786267,0.93277,0.30969,0.526998,0.179226,0.715874,0.482068,0.753453,0.973559,0.338366,0.883416,0.999043,0.329047,0.443687,0.46942,0.110923,0.471042,0.493536,0.00507915,0.987403,0.67332,0.0645878,0.143377,0.322031,0.563488,0.529262,0.03576,0.256425,0.595283,0.0260066,0.662282,0.0618283,0.928065,0.359408,0.859591,0.16535,0.13852,0.0438543,0.678402,0.454885,0.992258,0.805508,0.298384,0.656337,0.689545,0.634099,0.0888124,0.443555,0.124675,0.192786,0.632871,0.917746,0.410621,0.0506065,0.163805,0.42414,0.329458,0.0212066,0.758479,0.59696,0.391067,0.97497,0.491112,0.541265,0.583585,0.438369,0.366917,0.64171,0.228417,0.658561,0.917643,0.854125,0.29002,0.727743,0.705711,0.261076,0.455283,0.0277228,0.0459865,0.982966,0.304801,0.0234695,0.723673,0.382208,0.519862,0.675013,0.768851,0.408503,0.803281,0.533885,0.0752633,0.936566,0.809621,0.572896,0.262574,0.850201,0.810203,0.355626,0.784904,0.588554,0.658109,0.866039,0.956591,0.958799,0.446958,0.369143,0.156691,0.933572,0.796263,0.148651,0.351916,0.345215,0.544794,0.332828,0.59092,0.0368007,0.952861,0.12037,0.981966,0.997832,0.470046,0.0387445,0.00712824,0.22308,0.417346,0.0646088,0.696045,0.189876,0.30802,0.494867,0.959948,0.550957,0.449886,0.222288,0.947722,0.41305,0.948066,0.422713,0.230157,0.181958,0.313383,0.727174,0.329331,0.680933,0.203731,0.0945736,0.885496,0.156656,0.907365,0.403878,0.32638,0.489427,0.6809,0.465615,0.878169,0.401674,0.488614,0.0776517,0.00197601,0.423778,0.667447,0.938801,0.29034,0.8395,0.0549196,0.459979,0.989987,0.322663,0.0293943,0.164636,0.489221,0.738827,0.788623,0.882127,0.379485,0.420974,0.47333,0.661249,0.376556,0.185411,0.56864,0.253089,0.737813,0.492877,0.972026,0.166898,0.255158,0.764362,0.961717,0.0979134,0.00165004,0.680831,0.0197498,0.517685,0.630767,0.134574,0.891215,0.401076,0.545734,0.931881,0.475415,0.72409,0.218997,0.330456,0.00306386,0.3965,0.756334,0.89893,0.593101,0.29733,0.158155,0.523099,0.396722,0.103226,0.476488,0.25774,0.882098,0.732083,0.483137,0.651698,0.711643,0.346231,0.882716,0.521703,0.551895,0.0856901,0.0174412,0.57405,0.660988,0.481628,0.118859,0.497664,0.629504,0.641492,0.0287077,0.832248,0.734389,0.815169,0.51426,0.220807,0.259341,0.709768,0.444241,0.206365,0.00199801,0.293794,0.445773,0.541551,0.742151,0.485294,0.0719795,0.416061,0.544692,0.16746,0.745952,0.806045,0.191392,0.663217,0.885498,0.327966,0.0221413,0.632961,0.7206,0.568126,0.879878,0.530717,0.417366,0.161898,0.348443,0.927413,0.297738,0.590104,0.379488,0.453203,0.780102,0.0671531,0.20846,0.711925,0.736794,0.0173947,0.0692577,0.434954,0.600834,0.485311,0.31646,0.133748,0.0983743,0.814956,0.499987,0.565138,0.444589,0.521412,0.239792,0.61511,0.60904,0.660819,0.105409,0.276199,0.312371,0.269254,0.135642,0.241359,0.149003,0.594878,0.455412,0.00322241,0.533351,0.613896,0.809579,0.00206155,0.13687,0.50313,0.131536,0.538947,0.695862,0.602423,0.55447,0.891244,0.890136,0.885736,0.356288,0.40662,0.422562,0.689194,0.420056,0.224011,0.0380533,0.391532,0.198329,0.489072,0.467254,0.447813,0.361666,0.776924,0.792922,0.595745,0.987699,0.803455,0.499219,0.271309,0.816257,0.840643,0.585662,0.187573,0.0599065,0.0775757,0.531863,0.566125,0.493108,0.374918,0.455203,0.254798,0.291677,0.898493,0.458614,0.473124,0.382917,0.793504,0.750968,0.567743,0.522717,0.552502,0.112508,0.865818,0.733752,0.208349,0.535716,0.690957,0.605009,0.54874,0.869729,0.619867,0.629883,0.873986,0.361227,0.81974,0.531921,0.56929,0.375208,0.106561,0.629968,0.85907,0.116434,0.952873,0.155216,0.976751,0.155435,0.589553,0.954889,0.721046,0.520133,0.213178,0.197308,0.86868,0.736986,0.188051,0.812752,0.377315,0.686468,0.120285,0.738872,0.491354,0.745799,0.45882,0.684573,0.87984,0.40171,0.25685,0.439439,0.889398,0.429137,0.803775,0.158278,0.67469,0.943627,0.093797,0.744977,0.117842,0.355765,0.620477,0.141781,0.317508,0.839728,0.520939,0.434548,0.714979,0.896851,0.463824,0.790733,0.747229,0.936278,0.771709,0.485645,0.133401,0.924427,0.059919,0.993163,0.0194128,0.0355709,0.25163,0.508579,0.106001,0.702339,0.893591,0.936548,0.958613,0.803794,0.303296,0.777232,0.632304,0.754689,0.0271291,0.795828,0.495586,0.455722,0.81141,0.26292,0.647631,0.0115174,0.381491,0.50266,0.89668,0.61669,0.354828,0.555994,0.331594,0.490223,0.00971615,0.917333,0.725983,0.184552,0.30904,0.50349,0.97858,0.418861,0.935892,0.761575,0.823561,0.993643,0.816893,0.786582,0.82683,0.290771,0.835291,0.443866,0.496264,0.269859,0.360406,0.482368,0.10978,0.447693,0.204925,0.306468,0.796478,0.629153,0.0953344,0.408698,0.909282,0.535364,0.941935,0.560229,0.323877,0.71646,0.361475,0.311001,0.803507,0.752237,0.618092,0.119875,0.87857,0.0718715,0.355605,0.498118,0.473133,0.000883043,0.193905,0.60846,0.153734,0.903342,0.63477,0.271143,0.0829813,0.551136,0.728328,0.557911,0.295938,0.574646,0.828721,0.545639,0.924311,0.413078,0.393697,0.946898,0.51021,0.850967,0.554181,0.223637,0.512998,0.212859,0.233677,0.174702,0.590702,0.00294465,0.593833,0.0041461,0.434775,0.63966,0.363573,0.189342,0.460276,0.813104,0.584568,0.772934,0.4535,0.96004,0.939093,0.730098,0.232176,0.0813571,0.743959,0.16742,0.66423,0.0898129,0.301839,0.528517,0.449916,0.425249,0.408805,0.310914,0.78594,0.902747,0.383675,0.421093,0.436727,0.455582,0.0519386,0.64618,0.672491,0.848743,0.674581,0.122281,0.0175583,0.798198,0.380816,0.481501,0.465571,0.50923,0.315184,0.410187,0.0846288,0.613083,0.52654,0.858208,0.0924913,0.13429,0.112056,0.501708,0.917997,0.306832,0.2514,0.423205,0.369843,0.755261,0.304499,0.435048,0.422861,0.304757,0.233663,0.85281,0.841043,0.677195,0.84093,0.00102431,0.45144,0.0696827,0.376224,0.642823,0.810652,0.341285,0.106503,0.223597,0.417839,0.249627,0.36788,0.53863,0.291355,0.453277,0.837388,0.662774,0.841388,0.321036,0.0891781,0.231311,0.317474,0.880043,0.95996,0.997279,0.994599,0.0926841,0.136538,0.618995,0.734956,0.586651,0.731857,0.240599,0.468042,0.15381,0.153001,0.852093,0.130832,0.0990502,0.816149,0.135661,0.92969,0.498682,0.497486,0.159057,0.913037,0.352707,0.825538,0.392848,0.42459,0.215588,0.734576,0.15422,0.160396,0.745392,0.528943,0.403255,0.341864,0.275863,0.650331,0.171761,0.816675,0.871199,0.666461,0.695609,0.573594,0.102895,0.533137,0.0107102,0.713844,0.276882,0.957022,0.342537,0.327869,0.960474,0.80413,0.692046,0.407114,0.80612,0.401527,0.458589,0.0371274,0.512112,0.611238,|0.920978,0.395246,0.306124,0.598265,0.772358,0.143245,0.975076,0.523425,0.92838,0.105185,0.95777,0.219379,0.0161723,0.458128,0.493162,0.244275,0.936546,0.248233,0.150819,0.362241,0.588819,0.262331,0.0369623,0.360347,0.677284,0.571113,0.222566,0.447875,0.111962,0.772586,0.652844,0.571372,0.914132,0.625077,0.715474,0.266807,0.107478,0.616279,0.143929,0.978113,0.242521,0.915768,0.279859,0.56764,0.990586,0.147639,0.201412,0.111263,0.385828,0.662449,0.209312,0.328552,0.505517,0.698269,0.892719,0.46057,0.575938,0.0705008,0.469161,0.315652,0.96163,0.557903,0.432758,0.103902,0.498404,0.801067,0.780736,0.534917,0.968923,0.970037,0.405422,0.760092,0.656742,0.639362,0.0669779,0.81981,0.15183,0.840708,0.415466,0.303782,0.337168,0.385325,0.966487,0.291698,0.413661,0.504102,0.151762,0.623695,0.48178,0.518498,0.313518,0.269746,0.638946,0.0994727,0.904501,0.263014,0.845957,0.73849,0.952432,0.407248,0.0310969,0.182054,0.491898,0.0688819,0.505185,0.8077,0.275664,0.0211996,0.630246,0.538967,0.364679,0.761842,0.865425,0.0640417,0.279004,0.466672,0.0592473,0.749935,0.552175,0.333596,0.894763,0.186548,0.836032,0.493572,0.60295,0.447814,0.934275,0.00142616,0.393484,0.259083,0.0336276,0.720807,0.749903,0.978437,0.980281,0.448133,0.739652,0.26486,0.347385,0.954515,0.183341,0.390623,0.479787,0.954307,0.62959,0.376614,0.633507,0.133342,0.210282,0.658435,0.171678,0.438314,0.584973,0.525178,0.0800014,0.243493,0.918453,0.370347,0.000500143,0.88916,0.68656,0.21174,0.726309,0.0225853,0.242217,0.0802756,0.293171,0.0862157,0.0112275,0.660229,0.62734,0.317274,0.658178,0.459004,0.942203,0.0191503,0.43887,0.345208,0.449777,0.641733,0.722812,0.625662,0.783939,0.965946,0.2204,0.170978,0.116555,0.841599,0.0235161,0.942866,0.207441,0.0736955,0.420874,0.17962,0.0493363,0.827737,0.943553,0.546152,0.978964,0.983029,0.0284458,0.235046,0.000959039,0.0231148,0.792795,0.0498679,0.914725,0.912103,0.0852904,0.474165,0.685432,0.175557,0.615147,0.396748,0.741988,0.792361,0.682808,0.538404,0.0284241,0.0860853,0.889753,0.833592,0.111214,0.162743,0.168608,0.277626,0.769739,0.106329,0.409882,0.860127,0.541851,0.499312,0.550792,0.977694,0.503524,0.272862,0.937866,0.507553,0.419707,0.807634,0.923938,0.832144,0.639274,0.114315,0.14996,0.988187,0.763254,0.704452,0.105701,0.0242779,0.841297,0.27987,0.377469,0.625113,0.92422,0.40422,0.709311,0.470219,0.312046,0.0646318,0.11923,0.0148739,0.685164,0.797662,0.992472,0.996616,0.319495,0.399009,0.570294,0.515119,0.324522,0.0569348,0.786536,0.934817,0.762795,0.729456,0.0866566,0.899456,0.173211,0.889774,0.200501,0.801306,0.946635,0.602519,0.163442,0.42648,0.915128,0.237227,0.51153,0.59359,0.191033,0.190433,0.279399,0.940548,0.361918,0.191548,0.119088,0.825734,0.964788,0.139605,0.948916,0.310829,0.228314,0.945979,0.673958,0.190492,0.593944,0.339655,0.0642347,0.454692,0.741637,0.200457,0.769867,0.0905083,0.928433,0.924201,0.038288,0.487189,0.265497,0.556032,0.128567,0.606566,0.358332,0.0635151,0.248894,0.442622,0.280029,0.429692,0.0689894,0.70108,0.305181,0.869951,0.337875,0.777519,0.661259,0.347556,0.644267,0.106675,0.681535,0.284408,0.338825,0.51472,0.710137,0.654777,0.758231,0.347955,0.626042,0.996981,0.877545,0.221213,0.522485,0.910972,0.0174304,0.158056,0.517465,0.0193586,0.553347,0.394528,0.10825,0.456655,0.167337,0.859868,0.279934,0.0019601,0.890194,0.990788,0.137112,0.950978,0.355864,0.162297,0.692279,0.804542,0.0212998,0.912752,0.830964,0.0619583,0.603184,0.632401,0.478077,0.795935,0.553836,0.219566,0.0858135,0.830755,0.994418,0.971671,0.622015,0.021128,0.373503,0.794319,0.609723,0.115577,0.571804,0.939327,0.609231,0.186128,0.311844,0.99538,0.172286,0.877329,0.821347,0.4596,0.165384,0.417449,0.252487,0.828904,0.562283,0.689152,0.306409,0.366051,0.198911,0.6642,0.536957,0.447714,0.816926,0.212331,0.84485,0.936062,0.239356,0.921128,0.564051,0.687536,0.0735778,0.843423,0.193577,0.360669,0.352759,0.802679,0.409242,0.581668,0.247002,0.304867,0.807662,0.712012,0.761917,0.834386,0.672128,0.0627776,0.738443,0.582914,0.739257,0.21753,0.345297,0.322187,0.139062,0.822023,0.992268,0.219589,0.842875,0.229518,0.0902794,0.205028,0.148179,0.507986,0.130772,0.55289,0.336281,0.808358,0.648101,0.523156,0.158276,0.781376,0.646997,0.0377243,0.996322,0.20792,0.0771235,0.470737,0.235588,0.417039,0.23836,0.983378,0.471812,0.477866,0.489173,0.672891,0.588439,0.772329,0.333458,0.585539,0.396953,0.656056,0.78752,0.703454,0.859165,0.0104603,0.490169,0.418997,0.901638,0.269111,0.412789,0.109932,0.195065,0.082651,0.75102,0.575582,0.689519,0.012915,0.0865463,0.65582,0.226484,0.637828,0.633877,0.924112,0.615046,0.860655,0.971142,0.997016,0.883386,0.894635,0.868442,0.942608,0.139806,0.851406,0.92558,0.0359895,0.254646,0.611306,0.663272,0.46842,0.324342,0.653901,0.00683784,0.704979,0.848693,0.256544,0.539028,0.334021,0.544606,0.381319,0.606581,0.51432,0.815374,0.932021,0.232648,0.542953,0.396404,0.836526,0.46708,0.392579,0.168494,0.674088,0.0892061,0.307797,0.882058,0.797705,0.744285,0.296633,0.759263,0.702534,0.738755,0.300154,0.165471,0.602436,0.0394793,0.562759,0.317205,0.327854,0.81613,0.865449,0.811171,0.211592,0.709139,0.151767,0.583888,0.599346,0.974505,0.591914,0.52936,0.78487,0.508726,0.929455,0.467468,0.268182,0.773819,0.0257533,0.0402992,0.733501,0.148023,0.462743,0.272974,0.878318,0.681835,0.0713392,0.729785,0.587601,0.0937703,0.809772,0.542401,0.490667,0.0213899,0.694869,0.683494,0.941592,0.610816,0.11829,0.431439,0.327886,0.178394,0.073664,0.123254,0.874367,0.92626,0.495444,0.631282,0.273598,0.887521,0.942432,0.492438,0.297104,0.152592,0.260233,0.797614,0.12083,0.495718,0.756598,0.277906,0.160854,0.0354152,0.044608,0.935797,0.235755,0.209686,0.00771815,0.344902,0.109548,0.702416,0.592778,0.552153,0.747065,0.0991749,0.288025,0.654931,0.546272,0.600163,0.399756,0.163793,0.905015,0.840073,0.0514414,0.392403,0.726232,0.169246,0.811582,0.434815,0.753733,0.624438,0.731759,0.773759,0.767309,0.692543,0.995544,0.547332,0.928606,0.657565,0.953818,0.0492337,0.554327,0.0915348,0.900245,0.234066,0.22566,0.475549,0.43974,0.288349,0.613608,0.26932,0.094607,0.792546,0.347399,0.949166,0.248825,0.492445,0.463456,0.160953,0.0596378,0.215582,0.420888,0.528213,0.517066,0.66048,0.476577,0.494034,0.133427,0.117924,0.855518,0.275075,0.341764,0.724661,0.426239,0.182747,0.669265,0.522772,0.252828,0.501817,0.293649,0.963734,0.976291,0.251665,0.904844,0.9943,0.298999,0.996145,0.809168,0.0545326,0.807921,0.178508,0.578596,0.32473,0.700003,0.0258006,0.144795,0.0801151,0.289773,0.832715,0.417,0.781507,0.583036,0.929653,0.226182,0.263265,0.219343,0.247058,0.840104,0.190503,0.368161,0.443523,0.336129,0.789566,0.215018,0.959885,0.416779,0.244655,0.550485,0.832101,0.884764,0.699699,0.0560649,0.780418,0.720682,0.103527,0.287667,0.428693,0.295813,0.402943,0.121296,0.946802,0.137613,0.776043,0.610725,0.631343,0.591251,0.347835,0.226012,0.554388,0.318561,0.569326,0.738193,0.35924,0.722065,0.980326,0.555472,0.87337,0.785474,0.699431,0.489914,0.840538,0.23123,0.686584,0.527955,0.363995,0.268087,0.784824,0.986766,0.847677,0.864948,0.803833,0.963664,0.0978671,0.897456,0.661,0.66467,0.933656,0.677261,0.310289,0.642443,0.940049,0.0289487,0.637644,0.216992,0.761549,0.369885,0.881579,0.478925,0.317695,0.545592,0.356755,0.311131,0.541776,0.585325,0.131761,0.0694646,0.102576,0.746499,0.687359,0.545872,0.0269826,0.7633,0.0825281,0.974088,0.847282,0.234197,0.520775,0.696379,0.103407,0.0812524,0.205544,0.0701252,0.935869,0.880596,0.165709,0.466416,0.413308,0.317975,0.641736,0.0169209,0.936709,0.387505,0.475808,0.79913,0.460228,0.95129,0.0564989,0.547468,0.78131,0.314416,0.337612,0.55894,0.0869294,0.796902,0.0311686,0.81373,0.550762,0.0731942,0.783218,0.899773,0.832642,0.966296,0.960092,0.20067,0.634994,0.946868,0.25396,0.358066,0.472897,0.742276,0.196663,0.269341,0.789257,0.490866,0.0403062,0.873409,0.348896,0.431815,0.238256,0.596144,0.0309091,0.0622738,0.499689,0.908013,0.815451,0.684502,0.837613,0.887285,0.676909,0.60925,0.769332,0.917607,0.0622669,0.553168,0.288394,0.853054,0.0448257,0.791707,0.929641,0.400125,0.327154,0.0254489,0.820865,0.570533,0.37282,0.835666,0.894464,0.520737,0.0181473,0.307822,0.0514868,0.748686,0.257693,0.916083,0.317082,0.705057,0.229114,0.225019,0.450563,0.811106,0.854091,0.426882,0.999544,0.580912,0.722351,0.82975,0.910369,0.128189,0.240892,0.313457,0.648947,0.122211,0.0640736,0.501434,0.923553,0.734867,0.802687,0.970779,0.835855,0.826888,0.55769,0.514079,0.270855,0.070277,0.153908,0.744453,0.281775,0.682877,0.0382908,0.660472,0.81192,0.348189,0.611802,0.263265,0.539875,0.799339,0.654277,0.0121723,0.747028,0.592066,0.679371,0.382372,0.740529,0.29838,0.773756,0.391582,0.346426,0.0638345,0.572163,0.762317,0.904721,0.892713,0.776226,0.153951,0.00867981,0.448274,0.0111256,0.723031,0.231798,0.520108,0.023185,0.410884,0.775329,0.922373,0.669411,0.346374,0.631556,0.00649297,0.775235,0.423668,0.112064,0.978615,0.884016,0.36966,0.891048,0.0078761,0.107529,0.999105,0.62982,0.0357302,0.814379,0.154181,0.644045,0.649864,0.186782,0.313126,0.556485,0.0123953,0.372228,0.680392,0.0118845,0.475573,0.223105,0.16257,|0.822103,0.59816,0.951352,0.059643,0.565206,0.893334,0.235993,0.781157,0.793096,0.485626,0.0439557,0.603837,0.706989,0.174021,0.540315,0.261637,0.71971,0.524423,0.509755,0.427556,0.519116,0.512791,0.478327,0.245952,0.743561,0.730025,0.368085,0.0351772,0.719978,0.678981,0.620811,0.804291,0.465697,0.565322,0.483731,0.592529,0.176179,0.372694,0.258861,0.0600608,0.710564,0.773529,0.410478,0.531596,0.650791,0.489789,0.930066,0.299696,0.97431,0.0196785,0.0442846,0.160513,0.463218,0.238185,0.0623812,0.676216,0.524252,0.0362682,0.222288,0.825255,0.0505091,0.783862,0.713942,0.38353,0.657304,0.17345,0.644874,0.533334,0.712838,0.284088,0.832653,0.572462,0.212607,0.650031,0.936899,0.111378,0.35844,0.716142,0.0323731,0.85728,0.680352,0.32092,0.317489,0.416353,0.642284,0.606296,0.407338,0.536504,0.872662,0.0973493,0.805998,0.842618,0.203774,0.25382,0.885771,0.743821,0.166464,0.707901,0.721821,0.401237,0.620616,0.685032,0.496446,0.756997,0.213811,0.730524,0.282707,0.99006,0.375469,0.73483,0.965956,0.744072,0.480995,0.472971,0.762599,0.696043,0.0522604,0.074416,0.161967,0.446664,0.277415,0.788776,0.215987,0.956404,0.554663,0.688542,0.783762,0.999443,0.494753,0.717556,0.344925,0.350489,0.891297,0.301096,0.591849,0.577543,0.739471,0.824849,0.0112255,0.44001,0.497522,0.187128,0.0881987,0.555823,0.653929,0.0419993,0.892411,0.50825,0.685529,0.847585,0.243688,0.957583,0.55761,0.418113,0.270664,0.45333,0.788334,0.533152,0.91265,0.519208,0.101992,0.380402,0.894217,0.965999,0.917045,0.500006,0.170144,0.0625628,0.0805634,0.113961,0.669297,0.653584,0.779235,0.709887,0.238115,0.744119,0.245055,0.176331,0.539173,0.00526732,0.597424,0.182698,0.360061,0.0501145,0.0199898,0.839482,0.122267,0.5255,0.803931,0.904301,0.329329,0.0418,0.639071,0.765342,0.493822,0.561417,0.361642,0.813695,0.884947,0.581864,0.257969,0.586514,0.768779,0.0209027,0.629448,0.764765,0.862211,0.460937,0.851757,0.730181,0.997316,0.915379,0.928237,0.409909,0.188897,0.0834813,0.853991,0.629461,0.460799,0.800715,0.227532,0.447956,0.0127389,0.0945676,0.223822,0.10555,0.36357,0.760195,0.138746,0.393093,0.672509,0.513083,0.440146,0.212545,0.447718,0.0174209,0.17184,0.482374,0.757306,0.450746,0.723056,0.91372,0.908269,0.00993848,0.0200618,0.559017,0.612569,0.404004,0.250412,0.949398,0.0181838,0.502486,0.619574,0.486736,0.718926,0.778746,0.326037,0.391439,0.977003,0.361867,0.013001,0.026987,0.30391,0.54584,0.335358,0.384644,0.6371,0.174526,0.950446,0.750981,0.064617,0.450872,0.167949,0.967826,0.125871,0.658473,0.625927,0.128622,0.674853,0.765832,0.935832,0.754468,0.496499,0.346389,0.154318,0.90776,0.194348,0.383906,0.388273,0.942894,0.489543,0.729517,0.0241159,0.661139,0.315809,0.235691,0.165712,0.899211,0.882158,0.444505,0.499635,0.859545,0.0373594,0.414693,0.106813,0.348495,0.330476,0.96798,0.989109,0.395549,0.000696242,0.753484,0.252587,0.110187,0.435336,0.704063,0.243405,0.916276,0.493936,0.327589,0.00530791,0.772795,0.469762,0.957491,0.137056,0.666331,0.157874,0.403642,0.662571,0.1903,0.845192,0.844717,0.877724,0.572177,0.344105,0.146104,0.973325,0.683659,0.0216631,0.807239,0.503765,0.410664,0.489015,0.0872951,0.0873716,0.412865,0.440696,0.315236,0.480983,0.750573,0.407938,0.268692,0.483876,0.546598,0.136878,0.709497,0.486079,0.583849,0.314904,0.877357,0.734963,0.361704,0.748522,0.861701,0.419666,0.0139757,0.791238,0.601693,0.798529,0.248617,0.44124,0.319524,0.505008,0.0909306,0.34337,0.832816,0.894448,0.307792,0.945601,0.0721159,0.354078,0.149561,0.216489,0.00908148,0.34646,0.397922,0.00254595,0.504906,0.336569,0.692332,0.142955,0.627707,0.0416344,0.863096,0.231253,0.211658,0.459462,0.4178,0.600151,0.810538,0.0874846,0.945826,0.0187536,0.106806,0.874029,0.713511,0.258854,0.667765,0.506964,0.820517,0.914358,0.928234,0.876613,0.712471,0.358266,0.344045,0.480625,0.243407,0.511005,0.62885,0.934427,0.639754,0.325722,0.468596,0.189364,0.0192932,0.867962,0.265817,0.155638,0.814887,0.823649,0.141449,0.422995,0.261011,0.485706,0.254997,0.30043,0.114646,0.031644,0.0558817,0.433137,0.959093,0.136055,0.754897,0.13598,0.215715,0.319485,0.99632,0.511813,0.20667,0.824018,0.801229,0.572462,0.95101,0.442458,0.909766,0.554927,0.328787,0.748233,0.528529,0.436106,0.697961,0.729245,0.819672,0.0601571,0.432869,0.0380981,0.107768,0.0473997,0.230275,0.296604,0.198194,0.938337,0.444104,0.700901,0.953129,0.869943,0.843321,0.0840561,0.47559,0.643219,0.757048,0.298954,0.101682,0.905354,0.0762209,0.429594,0.00377733,0.108208,0.784292,0.246271,0.2122,0.9795,0.792604,0.263761,0.517507,0.235258,0.944326,0.840991,0.147649,0.86895,0.60411,0.553959,0.749645,0.115725,0.574478,0.28868,0.858735,0.195126,0.26911,0.315902,0.312207,0.559202,0.843251,0.981936,0.564484,0.117813,0.478561,0.181852,0.116249,0.831284,0.251179,0.417003,0.566499,0.500283,0.714513,0.43868,0.155292,0.112104,0.181997,0.706848,0.17773,0.28897,0.290259,0.835351,0.434696,0.652195,0.47741,0.864631,0.88258,0.367322,0.645942,0.0525479,0.956595,0.101736,0.697719,0.788766,0.610022,0.919832,0.893938,0.68819,0.489792,0.990238,0.299701,0.0152604,0.0994658,0.065406,0.817779,0.538867,0.0694356,0.909058,0.731243,0.176008,0.778177,0.660638,0.371677,0.83177,0.185755,0.440902,0.281082,0.696758,0.621637,0.593406,0.666383,0.222068,0.0998605,0.920612,0.813939,0.266973,0.634658,0.423262,0.0484164,0.434527,0.283309,0.151178,0.134042,0.226536,0.808524,0.0483505,0.742814,0.557103,0.426513,0.910745,0.156172,0.135005,0.649125,0.166583,0.519227,0.638821,0.0909965,0.866421,0.539042,0.630761,0.428754,0.0545639,0.771301,0.308233,0.129784,0.784827,0.438143,0.921624,0.698852,0.0598508,0.633309,0.966726,0.771614,0.388958,0.69465,0.364116,0.656505,0.204403,0.358256,0.486886,0.799181,0.555485,0.881667,0.0549059,0.897357,0.199139,0.929113,0.618773,0.253137,0.17541,0.864644,0.786367,0.277085,0.27751,0.72889,0.193875,0.639361,0.153019,0.720954,0.526458,0.673885,0.98342,0.0406197,0.410931,0.621024,0.686612,0.841052,0.762151,0.536492,0.364558,0.477201,0.0305257,0.237677,0.562915,0.000530005,0.156196,0.86586,0.442693,0.910132,0.689305,0.293301,0.432575,0.678078,0.174654,0.351564,0.386524,0.227951,0.594371,0.489879,0.44174,0.174679,0.153915,0.944855,0.879125,0.557078,0.325591,0.242085,0.871853,0.503085,0.153578,0.0857053,0.39646,0.901242,0.606128,0.856082,0.512276,0.818366,0.827769,0.109584,0.510625,0.554484,0.563834,0.81273,0.189437,0.0386881,0.474585,0.454058,0.469999,0.53064,0.0658891,0.366553,0.824838,0.715629,0.144352,0.230181,0.671596,0.500587,0.616746,0.696974,0.768822,0.328599,0.684703,0.0616419,0.592884,0.0539828,0.0564944,0.0795202,0.792352,0.00538212,0.0311281,0.188498,0.579007,0.288544,0.145546,0.174385,0.359412,0.484631,0.535781,0.493595,0.0697126,0.238864,0.349096,0.682658,0.345999,0.0464752,0.986082,0.0117155,0.370709,0.732327,0.146492,0.067436,0.0247419,0.0575005,0.72302,0.376737,0.13853,0.563923,0.584236,0.99993,0.932391,0.700476,0.915465,0.460842,0.531525,0.437366,0.382548,0.846065,0.755212,0.867723,0.658279,0.954963,0.224721,0.451675,0.680408,0.936553,0.778517,0.318874,0.683902,0.367245,0.0623611,0.734271,0.856633,0.0864708,0.122635,0.537172,0.0392215,0.93961,0.0672065,0.221103,0.930752,0.273518,0.0838335,0.161867,0.446315,0.253386,0.728213,0.295765,0.231847,0.974522,0.364787,0.577153,0.623378,0.848773,0.651038,0.944228,0.56299,0.195656,0.226397,0.930412,0.377174,0.384153,0.722041,0.705013,0.614229,0.665683,0.708248,0.288759,0.175244,0.915755,0.525838,0.538145,0.234573,0.311033,0.633806,0.42149,0.515652,0.137096,0.554256,0.316453,0.950389,0.625341,0.648676,0.608319,0.0330691,0.791102,0.731321,0.225423,0.685469,0.710316,0.880056,0.672896,0.142553,0.745882,0.369666,0.52819,0.629888,0.433506,0.794271,0.444455,0.822963,0.400501,0.132189,0.261534,0.756385,0.441711,0.00592703,0.655459,0.698434,0.239583,0.565981,0.849175,0.611293,0.362859,0.539286,0.425613,0.324169,0.136585,0.648208,0.661031,0.146315,0.729349,0.061093,0.350355,0.612111,0.130294,0.921389,0.173661,0.760945,0.157748,0.812535,0.976471,0.85458,0.854608,0.679949,0.126992,0.367031,0.649618,0.335085,0.565903,0.623775,0.634481,0.33628,0.505213,0.901979,0.275473,0.428073,0.915056,0.12843,0.0512301,0.448306,0.674577,0.187028,0.215298,0.919732,0.277497,0.886812,0.378374,0.657757,0.840471,0.490836,0.768644,0.147965,0.143443,0.873381,0.656162,0.13756,0.0101517,0.0216717,0.445098,0.326611,0.89486,0.673349,0.846528,0.441222,0.811091,0.0692599,0.910429,0.22665,0.39325,0.956194,0.444955,0.445154,0.856288,0.253433,0.16485,0.392738,0.955033,0.520118,0.397378,0.158884,0.0662139,0.218665,0.703408,0.713737,0.138835,0.606299,0.942553,0.796873,0.748719,0.229689,0.771671,0.890388,0.924412,0.389065,0.330996,0.920019,0.719601,0.821405,0.757871,0.180443,0.489254,0.827487,0.0820398,0.798765,0.503828,0.522782,0.487182,0.0482728,0.135594,0.578661,0.201906,0.963549,0.2175,0.908185,0.991946,0.0845594,0.150738,0.767764,0.466135,0.230958,0.000270128,0.23417,0.157723,0.245865,0.426933,0.315004,0.524233,0.557813,0.762302,0.59969,0.0724476,0.795215,0.715888,0.445451,0.888223,0.978921,0.460245,0.224304,0.111814,0.469685,0.222239,0.948416,0.108433,0.830441,0.376216,0.934649,0.125269,|0.474628,0.549348,0.786888,0.594946,0.674742,0.220175,0.836245,0.363093,0.509355,0.792574,0.909906,0.128671,0.403921,0.892187,0.462557,0.612033,0.782859,0.593137,0.0679591,0.479447,0.768973,0.171266,0.162983,0.63978,0.977297,0.0722417,0.63111,0.258515,0.685057,0.660538,0.363515,0.486465,0.713913,0.382595,0.113193,0.809873,0.434314,0.386163,0.352018,0.983229,0.362319,0.610138,0.0880758,0.60096,0.872083,0.723854,0.831452,0.740259,0.00872546,0.704484,0.675238,0.883877,0.5729,0.401061,0.592037,0.0932222,0.117435,0.1963,0.7053,0.306469,0.382588,0.538477,0.365987,0.469773,0.486585,0.593958,0.567578,0.421573,0.354206,0.578541,0.863361,0.442001,0.708703,0.18597,0.467431,0.703425,0.359906,0.964373,0.181201,0.937559,0.137596,0.228302,0.302661,0.279644,0.309291,0.514419,0.95416,0.51659,0.955684,0.506169,0.605737,0.572777,0.981488,0.545168,0.118762,0.567196,0.208243,0.648045,0.777874,0.425089,0.271505,0.597088,0.0435154,0.55158,0.409914,0.372016,0.126882,0.266205,0.568677,0.0181062,0.688731,0.334024,0.822125,0.561807,0.933694,0.0152201,0.746513,0.927388,0.275331,0.908771,0.582724,0.314447,0.961051,0.525333,0.451449,0.648591,0.482603,0.463933,0.899292,0.284495,0.612136,0.759263,0.800984,0.866085,0.939827,0.57047,0.866664,0.190407,0.220817,0.492192,0.829188,0.212862,0.520787,0.241355,0.0635214,0.837963,0.103777,0.70437,0.822234,0.215458,0.588263,0.86286,0.265845,0.578759,0.385142,0.0900304,0.105644,0.186388,0.430876,0.268122,0.143749,0.692966,0.959661,0.833045,0.700026,0.496862,0.325699,0.858899,0.801442,0.575256,0.0354257,0.860975,0.0996473,0.858141,0.154391,0.181632,0.962105,0.213217,0.429231,0.288525,0.277129,0.947158,0.663584,0.0338601,0.815743,0.822896,0.872978,0.860509,0.938547,0.059206,0.356914,0.894766,0.930115,0.117622,0.302194,0.811264,0.670631,0.360869,0.927162,0.474474,0.0287996,0.225012,0.518485,0.794839,0.130446,0.646069,0.379182,0.130928,0.143828,0.233201,0.735206,0.0857015,0.831629,0.748773,0.0679523,0.116085,0.0368388,0.0146352,0.477178,0.00472987,0.454916,0.555233,0.552365,0.805658,0.782615,0.0596105,0.63727,0.982429,0.426976,0.180495,0.408001,0.633308,0.461493,0.641795,0.435912,0.0973162,0.74914,0.316592,0.800315,0.624894,0.340484,0.280333,0.343118,0.703459,0.836407,0.529361,0.898886,0.387652,0.966106,0.11288,0.722867,0.404621,0.466006,0.687998,0.712061,0.999704,0.032659,0.170484,0.675916,0.564072,0.226721,0.0115806,0.652438,0.803247,0.980225,0.621111,0.104929,0.143966,0.416855,0.401415,0.614707,0.812185,0.866716,0.289634,0.702291,0.658746,0.181381,0.0846069,0.97148,0.37217,0.374669,0.196705,0.225398,0.88779,0.0793325,0.0894241,0.701946,0.76753,0.849719,0.901495,0.632906,0.485822,0.633878,0.350247,0.777719,0.554611,0.811344,0.329821,0.650133,0.0778964,0.677587,0.429442,0.31197,0.501545,0.953978,0.917898,0.961307,0.243117,0.263969,0.882188,0.841148,0.050814,0.155446,0.255412,0.584063,0.513159,0.110473,0.582118,0.310703,0.00532967,0.611603,0.929874,0.140282,0.457533,0.542142,0.28003,0.204101,0.493066,0.942291,0.818299,0.763915,0.609551,0.547485,0.342652,0.918541,0.792317,0.0636365,0.492728,0.433458,0.833544,0.415613,0.186052,0.654769,0.103513,0.176937,0.0506916,0.635806,0.905551,0.367753,0.639778,0.999676,0.309432,0.875604,0.659203,0.138756,0.764078,0.469528,0.808431,0.592138,0.360221,0.936418,0.138891,0.223845,0.923253,0.624823,0.815461,0.978624,0.983116,0.935456,0.0929754,0.728665,0.568622,0.813704,0.969856,0.171536,0.870601,0.830686,0.501818,0.04805,0.857149,0.151472,0.236072,0.891635,0.70401,0.48743,0.212243,0.380321,0.506466,0.253874,0.0759475,0.560183,0.26099,0.324067,0.292903,0.941672,0.658346,0.080677,0.64113,0.237328,0.0321269,0.0493307,0.309573,0.632174,0.743376,0.595508,0.948754,0.295257,0.668525,0.419182,0.307417,0.704702,0.835743,0.158272,0.194516,0.768248,0.537719,0.408323,0.588224,0.755455,0.921907,0.0538255,0.272057,0.120044,0.226381,0.304431,0.603727,0.352434,0.935031,0.166178,0.28497,0.763679,0.494331,0.282838,0.277562,0.865322,0.447361,0.844803,0.863955,0.165156,0.977922,0.725876,0.928606,0.407605,0.0496324,0.122686,0.280463,0.2639,0.756467,0.90435,0.135453,0.183899,0.106696,0.50417,0.541762,0.383599,0.0408863,0.313622,0.310065,0.65365,0.699951,0.826772,0.446954,0.455277,0.169609,0.224043,0.768002,0.0702729,0.774282,0.438682,0.685977,0.612906,0.157479,0.708085,0.000580907,0.485956,0.727387,0.0163281,0.385377,0.904477,0.0701061,0.430965,0.034807,0.134254,0.397507,0.47694,0.438792,0.896065,0.748899,0.179571,0.54624,0.0188122,0.994569,0.937236,0.419034,0.635456,0.534123,0.466559,0.162382,0.110562,0.58024,0.238294,0.864443,0.819426,0.327648,0.33753,0.32869,0.801835,0.960847,0.0877475,0.49071,0.564892,0.539808,0.283777,0.796491,0.295069,0.410537,0.148725,0.186435,0.717132,0.180134,0.903864,0.741781,0.604543,0.393747,0.378534,0.323318,0.986731,0.887046,0.738188,0.894649,0.404535,0.464592,0.49004,0.946323,0.57656,0.269012,0.105847,0.608244,0.952665,0.714538,0.94523,0.608707,0.100769,0.869311,0.59411,0.691434,0.0958031,0.0389587,0.0216981,0.462425,0.0729971,0.00493616,0.157933,0.668093,0.939245,0.405854,0.737171,0.676719,0.545811,0.597909,0.895645,0.338413,0.0773707,0.866934,0.0989268,0.376874,0.341574,0.796213,0.108583,0.853894,0.00811201,0.651402,0.306987,0.93645,0.684627,0.429492,0.834797,0.796549,0.70041,0.0920929,0.408421,0.523607,0.0374242,0.883105,0.116728,0.222786,0.230801,0.777037,0.309393,0.401953,0.474518,0.942045,0.13773,0.356811,0.368592,0.541853,0.619442,0.503525,0.851141,0.646205,0.475393,0.606611,0.607489,0.613195,0.160012,0.0523874,0.573005,0.211173,0.0261358,0.387621,0.696031,0.456212,0.886037,0.795982,0.607476,0.077457,0.817886,0.459607,0.264808,0.928394,0.0119312,0.780322,0.594481,0.872776,0.845234,0.871924,0.379796,0.807056,0.183786,0.149739,0.79132,0.51734,0.870976,0.394163,0.220449,0.538137,0.297448,0.0835247,0.148329,0.340658,0.730249,0.399383,0.471947,0.429036,0.463762,0.14881,0.30165,0.225468,0.744019,0.108853,0.90796,0.79416,0.825406,0.13548,0.498782,0.68962,0.802423,0.761688,0.0535917,0.72366,0.751292,0.876992,0.425603,0.817036,0.138061,0.123904,0.461579,0.969209,0.284409,0.112925,0.828019,0.143145,0.48241,0.158826,0.832325,0.767751,0.77295,0.431688,0.647666,0.429269,0.266044,0.679286,0.646994,0.108113,0.787031,0.452741,0.240676,0.0852289,0.805052,0.676853,0.616117,0.447721,0.886334,0.0420004,0.992117,0.226195,0.488045,0.533931,0.748724,0.229653,0.199819,0.111859,0.781499,0.27727,0.579967,0.193688,0.366204,0.216514,0.505223,0.882374,0.00833666,0.395098,0.0879714,0.479122,0.853895,0.297694,0.865478,0.971116,0.0323985,0.397159,0.85243,0.352885,0.628666,0.496366,0.519621,0.0562711,0.75039,0.2319,0.0872504,0.788752,0.289232,0.433401,0.726375,0.657048,0.229478,0.388081,0.208088,0.808689,0.650705,0.0377463,0.887537,0.154642,0.652847,0.597384,0.348453,0.73584,0.0488958,0.071655,0.516022,0.178838,0.401163,0.963315,0.18386,0.909942,0.420403,0.36377,0.235069,0.312125,0.265468,0.875237,0.350702,0.131058,0.401897,0.686586,0.372249,0.820063,0.168081,0.639047,0.308135,0.119009,0.0568839,0.40598,0.880519,0.459908,0.604811,0.178298,0.969051,0.266219,0.777784,0.80125,0.485725,0.0320528,0.185829,0.154465,0.364502,0.83263,0.327234,0.134158,0.284603,0.672157,0.698861,0.060628,0.428402,0.75879,0.47236,0.600982,0.312546,0.773403,0.324721,0.812871,0.248795,0.619811,0.834125,0.675595,0.132423,0.264571,0.803926,0.290639,0.462725,0.717672,0.317415,0.967508,0.616691,0.0598663,0.20125,0.252702,0.481172,0.815258,0.708258,0.975246,0.0132453,0.841527,0.47424,0.865764,0.959656,0.538033,0.563627,0.522857,0.476121,0.721007,0.640214,0.679073,0.845911,0.962406,0.804402,0.971484,0.711637,0.890949,0.765426,0.771799,0.140875,0.306534,0.771728,0.00439054,0.429674,0.077554,0.94051,0.971979,0.421003,0.349958,0.495168,0.544614,0.61806,0.543232,0.801947,0.909908,0.842871,0.500594,0.428281,0.44649,0.602382,0.267199,0.684024,0.292529,0.62721,0.555737,0.64249,0.245717,0.811574,0.517103,0.655987,0.181787,0.816027,0.0960774,0.867315,0.963156,0.271523,0.875302,0.299838,0.785461,0.520908,0.885621,0.461057,0.403519,0.997382,0.0881763,0.908774,0.866032,0.433721,0.451537,0.506598,0.387138,0.0970608,0.93269,0.886228,0.0714994,0.870361,0.789996,0.953123,0.843544,0.0442625,0.688944,0.055945,0.931551,0.0347818,0.502021,0.0172333,0.983773,0.180849,0.545405,0.678929,0.150257,0.537919,0.40263,0.765666,0.463969,0.577912,0.340313,0.810569,0.299748,0.6483,0.886361,0.171388,0.760112,0.0515249,0.224215,0.247118,0.63772,0.545203,0.808052,0.87176,0.286423,0.0598217,0.589368,0.541386,0.942192,0.687767,0.0359731,0.107479,0.390986,0.683745,0.446063,0.0591077,0.202825,0.434399,0.185582,0.109449,0.0310816,0.352574,0.683054,0.109674,0.0363501,0.182925,0.783352,0.294105,0.314553,0.605935,0.829413,0.0317743,0.202639,0.500454,0.660658,0.704849,0.258286,0.0653077,0.453197,0.783772,0.574597,0.4625,0.17499,0.466506,0.178536,0.832567,0.166986,0.456207,0.678944,0.932683,0.477811,0.386281,0.125197,0.372318,0.261846,0.891375,0.794234,0.501041,0.411664,0.795358,0.104873,0.597502,0.437367,0.943523,0.0117795,0.686646,0.67584,0.376987,0.0208724,0.903125,0.827629,0.0208739,0.766509,|0.646397,0.758181,0.627513,0.10904,0.251883,0.502421,0.71117,0.511869,0.0417208,0.0793329,0.477242,0.537024,0.500108,0.338499,0.723742,0.0157812,0.720837,0.694652,0.701995,0.393152,0.271266,0.585627,0.874182,0.968447,0.489714,0.481275,0.584077,0.889907,0.178983,0.0450163,0.399842,0.927253,0.672966,0.549782,0.369705,0.920793,0.76004,0.916651,0.449305,0.984878,0.275132,0.358816,0.980339,0.892986,0.577426,0.703463,0.411646,0.873164,0.888388,0.0258918,0.828241,0.629096,0.995352,0.564432,0.920744,0.852131,0.598504,0.190126,0.476016,0.662363,0.441088,0.836205,0.224156,0.111967,0.4255,0.637058,0.883347,0.97564,0.786367,0.382578,0.381795,0.740883,0.331374,0.0980395,0.766366,0.124729,0.741436,0.218129,0.276842,0.843263,0.668459,0.0483227,0.466942,0.62319,0.608876,0.280765,0.626426,0.668624,0.9981,0.596964,0.937111,0.92114,0.973264,0.776226,0.435406,0.724241,0.350198,0.108607,0.944057,0.707409,0.446814,0.888713,0.636022,0.930866,0.202949,0.0647542,0.266468,0.648333,0.149214,0.345497,0.92001,0.154402,0.776841,0.397215,0.0693097,0.780936,0.417026,0.0066976,0.815711,0.0209318,0.80151,0.221401,0.387846,0.0727392,0.0642607,0.596641,0.339171,0.836871,0.081296,0.367594,0.235803,0.195904,0.13981,0.923776,0.939078,0.773165,0.0625783,0.521371,0.90804,0.969037,0.880316,0.425147,0.804892,0.0580422,0.486639,0.471593,0.710375,0.338736,0.89178,0.163624,0.659928,0.824732,0.0748399,0.139616,0.333205,0.00546825,0.41783,0.165673,0.637925,0.826298,0.0363512,0.660652,0.605945,0.592919,0.843676,0.191633,0.0649342,0.805591,0.277044,0.316766,0.677736,0.462527,0.413706,0.685659,0.42033,0.0583851,0.933676,0.836825,0.344554,0.0659089,0.310169,0.134193,0.334087,0.0940368,0.956189,0.0629801,0.505331,0.600318,0.896699,0.998911,0.12447,0.881017,0.322944,0.486396,0.318327,0.80135,0.0344743,0.276188,0.839641,0.429186,0.911691,0.108679,0.000841081,0.0566261,0.235098,0.643376,0.927435,0.656105,0.161281,0.743125,0.467106,0.826272,0.0296758,0.397287,0.684716,0.360021,0.288882,0.361847,0.178372,0.434434,0.0949087,0.998708,0.299596,0.228587,0.184078,0.881863,0.432801,0.957595,0.994788,0.0705627,0.661295,0.468715,0.297461,0.26296,0.936608,0.48464,0.172496,0.295977,0.607043,0.0544048,0.509682,0.874592,0.837738,0.81993,0.938039,0.138681,0.2852,0.555738,0.773802,0.645907,0.335408,0.215631,0.264273,0.737566,0.544099,0.207245,0.236505,0.743239,0.501656,0.457153,0.0727355,0.829666,0.198383,0.389606,0.248041,0.675629,0.433015,0.25404,0.0701057,0.266964,0.0483775,0.719658,0.113041,0.52268,0.633368,0.735472,0.779765,0.713251,0.800712,0.846007,0.21896,0.462118,0.551649,0.345495,0.598765,0.0415027,0.214825,0.866036,0.296088,0.951594,0.582838,0.0437721,0.129249,0.273955,0.952968,0.27433,0.501861,0.906914,0.879745,0.974443,0.437295,0.55698,0.58935,0.130686,0.528998,0.287584,0.515356,0.940549,0.1285,0.152514,0.0936424,0.36375,0.808401,0.0829934,0.52762,0.458675,0.909475,0.205645,0.619729,0.996035,0.736826,0.667666,0.657802,0.216769,0.744725,0.346896,0.37411,0.767869,0.0773854,0.873991,0.134644,0.963974,0.75776,0.0221751,0.551858,0.919331,0.588736,0.200535,0.222398,0.0740039,0.781874,0.578856,0.0394917,0.405921,0.369596,0.350644,0.932881,0.929527,0.00817281,0.596477,0.709184,0.0907005,0.0921953,0.0452189,0.185367,0.497663,0.292221,0.233737,0.662763,0.101327,0.598428,0.335296,0.852215,0.547916,0.625733,0.462162,0.420638,0.803938,0.384807,0.743072,0.139836,0.47031,0.220624,0.45585,0.517735,0.759295,0.561132,0.828291,0.775917,0.184447,0.000118554,0.405449,0.438055,0.837174,0.144132,0.918146,0.923526,0.299265,0.826201,0.141319,0.439812,0.723413,0.308343,0.827137,0.634315,0.526816,0.674485,0.714024,0.614621,0.0455613,0.452896,0.572873,0.38319,0.931409,0.230108,0.956331,0.070574,0.974274,0.482226,0.136002,0.54202,0.164076,0.0933951,0.577535,0.277103,0.889827,0.38098,0.117566,0.568368,0.0413696,0.696096,0.470502,0.850177,0.920036,0.205676,0.975484,0.544496,0.93713,0.291148,0.16303,0.194214,0.953703,0.917565,0.801529,0.565684,0.362686,0.926145,0.129467,0.596995,0.663735,0.626949,0.811419,0.668345,0.147076,0.28596,0.367292,0.979808,0.883301,0.372716,0.907649,0.751214,0.339903,0.441488,0.580588,0.322389,0.363556,0.704386,0.578433,0.796593,0.895236,0.299022,0.0944374,0.394224,0.988781,0.815568,0.837683,0.255236,0.866578,0.129155,0.0801443,0.808065,0.493987,0.43313,0.334083,0.298569,0.0177982,0.00210309,0.586904,0.0257267,0.938735,0.23203,0.0206623,0.247898,0.75365,0.735846,0.806183,0.115268,0.828449,0.831245,0.935947,0.185185,0.63474,0.43305,0.188426,0.652716,0.851494,0.548213,0.971829,0.172789,0.529707,0.904414,0.994285,0.753355,0.231977,0.455826,0.774814,0.397749,0.829091,0.288553,0.936347,0.672034,0.178597,0.202401,0.865785,0.440804,0.924133,0.366348,0.606027,0.340721,0.34274,0.577846,0.750823,0.570325,0.993913,0.94471,0.604053,0.150869,0.645683,0.0693309,0.907591,0.634336,0.656074,0.801686,0.480765,0.788722,0.52543,0.998731,0.634602,0.571087,0.429833,0.709527,0.448156,0.360475,0.502145,0.00354964,0.841875,0.0546288,0.778906,0.944803,0.406339,0.0413607,0.536021,0.15282,0.0753567,0.478977,0.394955,0.697173,0.122549,0.396188,0.356224,0.855963,0.941226,0.798281,0.244452,0.922585,0.289564,0.913184,0.233429,0.898639,0.20949,0.147336,0.317505,0.668407,0.578113,0.578824,0.278031,0.346951,0.557764,0.120611,0.157917,0.0935354,0.81796,0.900205,0.366135,0.073954,0.223007,0.523776,0.671493,0.9376,0.869152,0.528252,0.799333,0.487436,0.711782,0.855901,0.270866,0.617401,0.38354,0.588985,0.333568,0.504679,0.516563,0.540176,0.0348658,0.859898,0.939501,0.311454,0.880335,0.546683,0.269304,0.30852,0.467993,0.685479,0.276279,0.63347,0.497403,0.278437,0.825443,0.497579,0.544192,0.458779,0.133546,0.28367,0.611606,0.785447,0.259364,0.352399,0.732488,0.086135,0.381642,0.599034,0.033406,0.281021,0.370453,0.77425,0.0581338,0.332213,0.74615,0.5362,0.17587,0.3583,0.850189,0.217483,0.625956,0.565108,0.810255,0.160818,0.195654,0.0227219,0.954937,0.00934047,0.541949,0.934636,0.921444,0.737511,0.455626,0.828437,0.947034,0.41651,0.440401,0.3451,0.454858,0.335114,0.947357,0.475937,0.13385,0.419059,0.752099,0.714978,0.389987,0.285128,0.819049,0.829253,0.880982,0.787365,0.997284,0.816072,0.906416,0.156604,0.817601,0.0500812,0.450745,0.869115,0.295308,0.597977,0.576896,0.765375,0.212823,0.74988,0.94964,0.540764,0.731237,0.160356,0.978566,0.862651,0.792585,0.360273,0.938921,0.732218,0.865917,0.559395,0.106475,0.331689,0.474059,0.563448,0.0105972,0.295567,0.342194,0.356851,0.973722,0.622823,0.945543,0.818778,0.704407,0.501837,0.376432,0.875926,0.177046,0.92063,0.413698,0.557063,0.563671,0.131856,0.137686,0.166228,0.699216,0.697852,0.512515,0.955007,0.424074,0.33953,0.326391,0.411717,0.97538,0.510559,0.475974,0.269187,0.0756282,0.136268,0.588374,0.536957,0.941833,0.720378,0.940746,0.277289,0.374808,0.948603,0.534909,0.242429,0.694838,0.78088,0.0211008,0.614816,0.699469,0.610611,0.251613,0.790301,0.320561,0.939759,0.942812,0.510825,0.388953,0.455989,0.731289,0.674684,0.538217,0.933243,0.282469,0.0746669,0.896119,0.603501,0.00396204,0.0879669,0.372486,0.757063,0.451183,0.159069,0.122153,0.101793,0.626399,0.408026,0.238356,0.0601729,0.32531,0.503,0.28657,0.732426,0.140625,0.719568,0.38249,0.637543,0.876679,0.166619,0.724649,0.835751,0.773904,0.460725,0.722247,0.776358,0.904869,0.0336146,0.934864,0.701344,0.506393,0.487488,0.936656,0.618549,0.963464,0.735123,0.628511,0.146185,0.0443279,0.984732,0.321548,0.146464,0.504749,0.321593,0.363958,0.26249,0.591172,0.925866,0.271331,0.852632,0.611091,0.134789,0.37943,0.32074,0.136357,0.764698,0.91888,0.355064,0.466414,0.673881,0.316438,0.211902,0.894319,0.380353,0.854995,0.208696,0.29377,0.958802,0.264749,0.646754,0.383236,0.637501,0.658109,0.744125,0.190311,0.981817,0.0439128,0.183612,0.955391,0.732473,0.174611,0.710333,0.896436,0.989666,0.229124,0.476209,0.225888,0.963324,0.62399,0.50668,0.897779,0.170128,0.0828688,0.284174,0.911085,0.280643,0.431707,0.586604,0.295947,0.769245,0.22941,0.514119,0.0158604,0.533321,0.196846,0.757829,0.515292,0.404295,0.382326,0.647075,0.907784,0.0530437,0.748554,0.936105,0.180153,0.578918,0.106155,0.581986,0.121002,0.427922,0.0311879,0.526916,0.0261574,0.473822,0.800165,0.400935,0.0634959,0.851584,0.929823,0.718629,0.942142,0.0866121,0.896043,0.552127,0.423358,0.788647,0.739799,0.691466,0.1565,0.82407,0.399006,0.557174,0.413348,0.285352,0.545323,0.808021,0.559106,0.332866,0.227292,0.557786,0.817203,0.499286,0.854726,0.776193,0.905603,0.463902,0.318028,0.0754588,0.290118,0.596488,0.350302,0.109036,0.670624,0.733385,0.500246,0.462373,0.724812,0.875994,0.111255,0.688723,0.0316157,0.381299,0.560326,0.0744957,0.703323,0.0124267,0.408621,0.833164,0.00185061,0.0712658,0.669558,0.960181,0.510445,0.225916,0.43967,0.754415,0.491449,0.418761,0.0861003,0.103299,0.368474,0.760992,0.48628,0.286076,0.262342,0.96358,0.0666576,0.76654,0.10352,0.196469,0.594313,0.553237,0.0451655,0.814724,0.730087,0.924881,0.531491,0.363159,0.79869,0.225743,0.688865,0.479689,0.894141,0.323189,0.167074,0.620648,0.565072,0.770449,0.867082,0.825742,0.400404,0.440788,0.402479,0.758476,0.406118,0.493744,0.108486,|0.603719,0.597419,0.65808,0.809205,0.932069,0.992113,0.389283,0.641078,0.247608,0.425462,0.661159,0.26491,0.883776,0.215028,0.283075,0.394164,0.486945,0.0948833,0.725448,0.629855,0.0823045,0.864154,0.0517806,0.769604,0.638126,0.491375,0.444972,0.101735,0.807226,0.0307264,0.543476,0.929553,0.303361,0.341306,0.444628,0.218105,0.527578,0.991622,0.614228,0.021748,0.808276,0.667865,0.443152,0.0700198,0.582559,0.858769,0.848547,0.0761001,0.405541,0.777101,0.286126,0.687991,0.205591,0.827133,0.926554,0.831217,0.576641,0.00833571,0.814375,0.0862697,0.677425,0.618847,0.470312,0.791817,0.320556,0.956731,0.803728,0.76535,0.0979884,0.0853724,0.243431,0.0225625,0.166516,0.177003,0.912777,0.148578,0.772019,0.153055,0.928873,0.590455,0.0772541,0.787347,0.828213,0.423195,0.662261,0.766325,0.732403,0.65515,0.35514,0.405035,0.00450224,0.106258,0.551007,0.385344,0.00754839,0.931733,0.229572,0.077808,0.829014,0.588674,0.929523,0.897727,0.108944,0.610063,0.518178,0.416371,0.194937,0.717291,0.293642,0.528582,0.261201,0.379162,0.45032,0.65893,0.122505,0.455194,0.321638,0.164204,0.948687,0.0366171,0.548566,0.591516,0.96101,0.948061,0.515262,0.086345,0.772168,0.761166,0.0791155,0.693218,0.90631,0.656495,0.541807,0.232739,0.748599,0.154803,0.493463,0.519293,0.16774,0.998976,0.462656,0.688381,0.858555,0.245071,0.35196,0.150871,0.28711,0.413227,0.808469,0.572922,0.920171,0.118035,0.376971,0.897986,0.403095,0.840131,0.816799,0.921728,0.172812,0.350362,0.590528,0.524308,0.977461,0.00129551,0.169611,0.38004,0.276522,0.401381,0.583524,0.0126716,0.150341,0.274267,0.580803,0.65271,0.747021,0.0230336,0.790835,0.1656,0.0793803,0.00313812,0.0877548,0.629646,0.200364,0.146289,0.805522,0.32001,0.064694,0.233898,0.893822,0.552303,0.243336,0.383034,0.615458,0.638814,0.153187,0.156614,0.637957,0.0518131,0.514124,0.994954,0.404511,0.860167,0.0656227,0.775444,0.890333,0.771638,0.339393,0.44337,0.539411,0.971017,0.947806,0.193853,0.645167,0.746961,0.165163,0.175122,0.196102,0.0732462,0.753584,0.375022,0.807635,0.59384,0.686852,0.618194,0.686086,0.329581,0.423663,0.0332506,0.0899809,0.355879,0.527367,0.632884,0.215785,0.362459,0.955544,0.671126,0.411088,0.504513,0.950808,0.0817986,0.553845,0.994955,0.607272,0.450312,0.920948,0.471829,0.423404,0.650928,0.948726,0.539724,0.420769,0.993288,0.391301,0.286314,0.178868,0.321177,0.855464,0.907078,0.906319,0.354306,0.487205,0.898896,0.897105,0.339032,0.384754,0.938827,0.144316,0.482181,0.756924,0.17447,0.81893,0.189432,0.888951,0.282827,0.199281,0.643878,0.764102,0.61083,0.0428648,0.0916834,0.794143,0.508266,0.5473,0.446107,0.194795,0.631823,0.70053,0.453652,0.10692,0.28679,0.763721,0.877069,0.380045,0.207212,0.230122,0.700099,0.560042,0.444459,0.331639,0.418988,0.888318,0.239835,0.85781,0.829949,0.0986331,0.226588,0.911519,0.786143,0.750639,0.0705836,0.46793,0.386168,0.83227,0.649451,0.600073,0.653041,0.130942,0.546927,0.311038,0.529136,0.706242,0.48405,0.0164304,0.76235,0.0655851,0.419843,0.578359,0.732636,0.512,0.768797,0.453873,0.48429,0.0206645,0.836081,0.995488,0.242453,0.00753284,0.557691,0.638232,0.157631,0.000899553,0.567627,0.232298,0.758109,0.815623,0.884434,0.645098,0.344714,0.211883,0.702423,0.774277,0.58648,0.572468,0.368084,0.0187737,0.619295,0.897683,0.866575,0.498793,0.88454,0.613334,0.997383,0.152294,0.565218,0.287363,0.609719,0.308613,0.696896,0.0710778,0.114194,0.859627,0.934497,0.749981,0.746839,0.6387,0.207945,0.165964,0.764195,0.524312,0.514056,0.652029,0.52516,0.674002,0.248924,0.215548,0.526234,0.354315,0.127181,0.494498,0.00989449,0.00420803,0.511582,0.458703,0.866201,0.668098,0.662126,0.960113,0.586807,0.947541,0.299536,0.696095,0.0592018,0.819723,0.752998,0.584561,0.670092,0.801291,0.508757,0.266695,0.301443,0.871597,0.97397,0.509426,0.202096,0.69471,0.393315,0.684311,0.745924,0.0955985,0.352018,0.433293,0.224359,0.328217,0.899355,0.267116,0.763179,0.317017,0.204108,0.667377,0.722874,0.957175,0.0667323,0.300303,0.442201,0.635495,0.50927,0.468489,0.0413427,0.981836,0.224237,0.803703,0.993464,0.930007,0.357826,0.129742,0.97674,0.734404,0.286989,0.179959,0.534737,0.29619,0.104186,0.228035,0.201432,0.745866,0.154215,0.561299,0.162812,0.347494,0.638369,0.881093,0.349349,0.605048,0.424011,0.585958,0.35194,0.621495,0.774142,0.211227,0.523656,0.923339,0.722291,0.0266936,0.765211,0.324153,0.126437,0.474897,0.500396,0.311184,0.58205,0.740404,0.8658,0.178922,0.960881,0.698998,0.714047,0.650279,0.578084,0.893813,0.427046,0.360519,0.133873,0.839471,0.790152,0.530613,0.446461,0.395478,0.976641,0.350133,0.961487,0.215685,0.804866,0.50286,0.472885,0.888131,0.134819,0.754766,0.700788,0.191827,0.850008,0.381587,0.430776,0.958795,0.374902,0.0328127,0.00107211,0.367489,0.734284,0.0912194,0.949204,0.458148,0.0738919,0.794304,0.416056,0.849878,0.222249,0.984055,0.256193,0.713895,0.0301391,0.382251,0.339797,0.527503,0.0341093,0.0707418,0.638238,0.132735,0.968516,0.949474,0.233294,0.167151,0.745493,0.320296,0.789632,0.348426,0.361114,0.613454,0.787721,0.917106,0.725435,0.393209,0.873377,0.569413,0.825151,0.765036,0.393793,0.324617,0.78831,0.363413,0.221111,0.659836,0.417639,0.603315,0.271761,0.93047,0.743899,0.937082,0.508856,0.579059,0.653605,0.358104,0.841903,0.559961,0.787966,0.61259,0.982936,0.597952,0.187089,0.612513,0.0596898,0.567552,0.612269,0.677184,0.0799488,0.669778,0.817193,0.851544,0.214522,0.0130131,0.0153744,0.895192,0.9655,0.463916,0.475564,0.615448,0.0541186,0.892282,0.338507,0.382669,0.467982,0.665697,0.853441,0.140433,0.570698,0.630235,0.111236,0.862895,0.896111,0.822774,0.997712,0.282813,0.365855,0.883551,0.202079,0.0146849,0.219147,0.880677,0.696676,0.353769,0.690316,0.0607882,0.998856,0.396598,0.291032,0.720367,0.634419,0.957993,0.687939,0.257419,0.555814,0.523043,0.366991,0.310035,0.299116,0.609246,0.0712883,0.789364,0.105647,0.53297,0.443393,0.892986,0.193792,0.525302,0.487416,0.231837,0.337644,0.0432567,0.372465,0.924918,0.968416,0.216235,0.210073,0.177785,0.206574,0.588044,0.550745,0.992701,0.507655,0.621195,0.533553,0.889427,0.525831,0.0934075,0.720278,0.272454,0.69485,0.965735,0.961059,0.102735,0.331204,0.0112317,0.34167,0.0715946,0.304865,0.487467,0.162119,0.130291,0.65219,0.894029,0.0658056,0.47754,0.172362,0.11578,0.255142,0.170002,0.282494,0.00188363,0.41473,0.154916,0.086617,0.867117,0.765502,0.908209,0.313303,0.200947,0.410623,0.385443,0.609268,0.318878,0.909283,0.17806,0.823873,0.0580899,0.269587,0.654458,0.638535,0.746703,0.539634,0.504607,0.618997,0.859874,0.319055,0.832689,0.152828,0.433129,0.28325,0.0180506,0.98358,0.159178,0.764301,0.925688,0.211028,0.114515,0.539781,0.651945,0.0234734,0.813019,0.960083,0.0628514,0.684671,0.384538,0.457781,0.168342,0.430399,0.138426,0.151237,0.163557,0.479779,0.132918,0.146721,0.376614,0.0500141,0.632354,0.701495,0.721187,0.837542,0.706178,0.316534,0.447699,0.838322,0.431542,0.471103,0.233665,0.998303,0.749766,0.283234,0.31803,0.185431,0.519097,0.302559,0.517187,0.306715,0.493334,0.403227,0.592275,0.331676,0.481366,0.937346,0.760056,0.711221,0.343278,0.364494,0.542006,0.475816,0.413772,0.246928,0.921213,0.453062,0.79525,0.385261,0.219886,0.519328,0.959108,0.823342,0.763523,0.195253,0.335778,0.861938,0.586442,0.71848,0.294872,0.0104147,0.943079,0.276296,0.803881,0.570177,0.68114,0.795007,0.682651,0.743665,0.957208,0.275122,0.727507,0.178165,0.360626,0.171126,0.663876,0.809964,0.284503,0.0556954,0.992358,0.871081,0.956604,0.00201106,0.83549,0.795956,0.218847,0.867694,0.805561,0.5161,0.730474,0.169553,0.67517,0.564428,0.428932,0.808655,0.0945345,0.07813,0.240607,0.259991,0.285818,0.629972,0.917837,0.513137,0.830649,0.211154,0.461943,0.807918,0.997626,0.405281,0.156078,0.849889,0.410409,0.108913,0.703611,0.0145856,0.882642,0.0389238,0.178313,0.568328,0.966569,0.957455,0.368873,0.801284,0.101691,0.701771,0.899128,0.538762,0.463075,0.99666,0.0862828,0.362773,0.713854,0.841269,0.42084,0.409549,0.586711,0.676909,0.430424,0.223808,0.586939,0.179804,0.831048,0.692723,0.0599644,0.0511521,0.256637,0.671736,0.537625,0.421806,0.067584,0.00778854,0.968898,0.116576,0.542694,0.218163,0.0295873,0.876894,0.156614,0.143117,0.110285,0.820417,0.222395,0.0433766,0.88644,0.594637,0.993349,0.280687,0.3981,0.613659,0.557337,0.344918,0.649933,0.988083,0.811349,0.246815,0.137308,0.953534,0.202657,0.153791,0.195136,0.61947,0.907535,0.657691,0.95855,0.558299,0.267823,0.563284,0.669381,0.776193,0.041346,0.858455,0.307002,0.354804,0.0491162,0.778346,0.970303,0.834813,0.386795,0.774788,0.939607,0.408119,0.624559,0.576276,0.596529,0.909922,0.7374,0.45732,0.795978,0.0380948,0.0983253,0.0476049,0.326067,0.878685,0.0825239,0.587159,0.18064,0.192187,0.259138,0.329228,0.691979,0.484734,0.315985,0.0518641,0.462911,0.595359,0.359949,0.514183,0.996178,0.241603,0.191872,0.179654,0.62473,0.192065,0.900548,0.466273,0.76046,0.600874,0.615811,0.491522,0.668057,0.547952,0.502517,0.946629,0.868436,0.611155,0.89336,0.497071,0.718985,0.905268,0.477816,0.783682,0.13051,0.297437,0.583687,0.856101,0.790538,0.58304,0.699656,0.81103,0.113182,0.276299,0.959979,0.108843,0.0123895,0.10917,0.834666,0.376486,0.138888,0.565564,|0.961047,0.932199,0.830972,0.237829,0.193996,0.431873,0.658278,0.971878,0.0310083,0.792517,0.945733,0.152656,0.48459,0.966467,0.69187,0.601739,0.816172,0.620669,0.556461,0.608419,0.984086,0.29567,0.09637,0.995204,0.883907,0.893559,0.484102,0.0330008,0.951713,0.413888,0.864589,0.0666725,0.85611,0.98137,0.813158,0.33628,0.770926,0.689544,0.868302,0.787022,0.785292,0.736544,0.594311,0.581578,0.267122,0.013912,0.457729,0.321132,0.382839,0.360156,0.485363,0.899539,0.973699,0.56291,0.973555,0.460149,0.218365,0.918323,0.876543,0.602102,0.16868,0.625416,0.846181,0.279896,0.790255,0.371013,0.542562,0.765617,0.987659,0.934747,0.729686,0.395774,0.915626,0.875067,0.765655,0.265226,0.417605,0.628032,0.836921,0.469272,0.430385,0.644382,0.66235,0.291695,0.836077,0.278003,0.587062,0.697109,0.0173764,0.236539,0.048188,0.757894,0.979172,0.0213909,0.4246,0.244559,0.32543,0.772549,0.811426,0.58285,0.571844,0.778631,0.901666,0.535066,0.517253,0.183675,0.334985,0.174088,0.334185,0.550657,0.0496899,0.359513,0.183566,0.906587,0.313947,0.99411,0.78652,0.152078,0.343752,0.866243,0.804199,0.926099,0.820655,0.483735,0.703433,0.778967,0.145467,0.835207,0.924866,0.788987,0.0937039,0.991749,0.335083,0.920117,0.825566,0.0949488,0.241794,0.389402,0.646562,0.15109,0.742463,0.893597,0.686386,0.695134,0.859364,0.0788549,0.86359,0.00182438,0.697847,0.261552,0.47933,0.865421,0.54025,0.67454,0.655689,0.764146,0.56298,0.137902,0.136262,0.793614,0.157592,0.771535,0.119617,0.192537,0.231237,0.535822,0.992633,0.0958366,0.148708,0.145101,0.0776545,0.745904,0.0801976,0.100626,0.0527394,0.155813,0.204107,0.849536,0.807554,0.396623,0.311453,0.534591,0.694715,0.79878,0.333466,0.258367,0.034246,0.0911326,0.662756,0.477805,0.789964,0.518755,0.945537,0.48754,0.942008,0.847743,0.210355,0.382944,0.918233,0.139833,0.862908,0.580927,0.519979,0.610853,0.359415,0.719494,0.803974,0.311225,0.443227,0.102809,0.31451,0.322081,0.670579,0.751911,0.0955164,0.780068,0.395547,0.529785,0.870085,0.258286,0.70342,0.112665,0.940658,0.792114,0.497106,0.0766646,0.746389,0.0514488,0.860203,0.892995,0.893557,0.558667,0.0298946,0.189705,0.366093,0.791335,0.250546,0.91447,0.459324,0.502058,0.569294,0.970519,0.691236,0.60424,0.624741,0.176224,0.339177,0.137618,0.568662,0.466325,0.281137,0.198844,0.722583,0.22553,0.711702,0.0133225,0.160056,0.555789,0.144098,0.271565,0.82472,0.861516,0.340842,0.0376558,0.075469,0.180095,0.0746621,0.424774,0.755638,0.212717,0.710785,0.479316,0.906447,0.131571,0.369741,0.239372,0.768636,0.96737,0.680708,0.85097,0.804706,0.767532,0.667131,0.684361,0.310918,0.0230987,0.879358,0.306002,0.220491,0.47828,0.339073,0.415463,0.819295,0.959846,0.268616,0.46385,0.38728,0.619916,0.859503,0.992233,0.804983,0.381817,0.0582825,0.662065,0.672532,0.117183,0.258437,0.116732,0.423438,0.265539,0.923417,0.185535,0.729705,0.57138,0.524112,0.748897,0.785374,0.563077,0.491217,0.442514,0.273473,0.0815992,0.913192,0.100509,0.390859,0.0882049,0.789855,0.966322,0.520004,0.845047,0.600668,0.16625,0.898828,0.0231795,0.138375,0.57096,0.46685,0.333839,0.946699,0.68911,0.258964,0.392647,0.657976,0.877909,0.709551,0.765384,0.729429,0.534784,0.555691,0.261781,0.785209,0.989287,0.664614,0.595365,0.334769,0.571512,0.609611,0.0808493,0.600426,0.949215,0.511877,0.136512,0.691024,0.118973,0.235714,0.815869,0.830984,0.758792,0.277957,0.937339,0.708469,0.587466,0.0516911,0.292371,0.20698,0.633013,0.00452155,0.62718,0.70811,0.784738,0.439732,0.545642,0.955777,0.928377,0.627652,0.597473,0.62658,0.249219,0.228601,0.292308,0.991518,0.465663,0.98174,0.895209,0.935982,0.660032,0.662549,0.00360572,0.360795,0.190386,0.0846878,0.234027,0.558714,0.150663,0.0688062,0.519719,0.991483,0.884708,0.414008,0.0626082,0.30562,0.97144,0.752008,0.897751,0.652767,0.196813,0.952065,0.734708,0.46571,0.665726,0.462961,0.932966,0.0399716,0.683013,0.17747,0.596969,0.990062,0.714374,0.0766872,0.0400115,0.210235,0.392561,0.376145,0.833482,0.22455,0.118297,0.96667,0.893407,0.55402,0.166186,0.778802,0.27122,0.468832,0.948479,0.523969,0.0421902,0.804414,0.822091,0.69676,0.295407,0.247007,0.576765,0.977076,0.488727,0.429567,0.0472496,0.647379,0.48368,0.673295,0.075305,0.293796,0.785955,0.148891,0.257271,0.691189,0.887528,0.483499,0.114714,0.68958,0.0162749,0.970124,0.782848,0.456077,0.383481,0.772927,0.950687,0.15008,0.0824544,0.919637,0.607468,0.901884,0.263712,0.654052,0.665242,0.797041,0.863383,0.608341,0.45798,0.0469968,0.541812,0.539462,0.199165,0.484918,0.0513678,0.569491,0.214968,0.399995,0.690118,0.308396,0.381235,0.177548,0.188968,0.225242,0.786401,0.0408872,0.677244,0.253837,0.0995198,0.136666,0.0651395,0.676447,0.401143,0.538687,0.57693,0.706827,0.784111,0.39091,0.873044,0.794121,0.810779,0.443945,0.766315,0.475688,0.339724,0.17905,0.470059,0.718883,0.426641,0.988372,0.821586,0.505327,0.951041,0.378185,0.156769,0.541814,0.754615,0.131652,0.140624,0.325832,0.292179,0.580237,0.565025,0.612954,0.684442,0.450036,0.883749,0.733001,0.353583,0.544382,0.205071,0.133776,0.541207,0.969085,0.494991,0.873752,0.810879,0.789546,0.868803,0.866286,0.758543,0.299234,0.736833,0.125723,0.0263271,0.843923,0.374968,0.0620205,0.208667,0.888535,0.173798,0.278673,0.320361,0.420358,0.401066,0.221341,0.373673,0.648047,0.706539,0.268588,0.0131583,0.188436,0.269933,0.703467,0.191227,0.738982,0.469746,0.547707,0.329909,0.502922,0.0255432,0.677238,0.709022,0.588492,0.450552,0.622553,0.299922,0.362823,0.227222,0.277973,0.641834,0.49433,0.636115,0.899254,0.214914,0.803686,0.213925,0.311466,0.449355,0.984056,0.749269,0.313679,0.637226,0.00947905,0.0979774,0.511473,0.593319,0.630004,0.622331,0.848441,0.683607,0.0612327,0.81074,0.888366,0.000665128,0.214293,0.210029,0.765716,0.0616109,0.964264,0.650884,0.799127,0.359321,0.0270795,0.28219,0.0878375,0.618406,0.579731,0.555461,0.0882902,0.741929,0.197796,0.69551,0.106798,0.707966,0.854595,0.104026,0.511474,0.208979,0.0765215,0.486224,0.924385,0.349664,0.453785,0.903237,0.990514,0.58675,0.154491,0.35073,0.270253,0.645184,0.322263,0.386414,0.152986,0.369279,0.19125,0.912285,0.310235,0.915562,0.393885,0.971118,0.0424049,0.547391,0.49068,0.230559,0.827313,0.0820793,0.21946,0.613285,0.705013,0.820725,0.34499,0.550184,0.383386,0.907562,0.48509,0.627458,0.398138,0.429545,0.228967,0.329075,0.286902,0.959525,0.886414,0.476301,0.997692,0.829818,0.024654,0.150579,0.892018,0.27844,0.102057,0.770509,0.945623,0.905542,0.532504,0.782208,0.111049,0.530663,0.11662,0.7752,0.484723,0.18488,0.837412,0.506538,0.460377,0.133132,0.0455857,0.871899,0.757688,0.315795,0.229289,0.907359,0.0767073,0.583646,0.81404,0.188236,0.260999,0.677254,0.606594,0.0988712,0.867595,0.357161,0.780681,0.920325,0.76823,0.116109,0.802525,0.966697,0.611337,0.810096,0.976064,0.708734,0.888336,0.132397,0.73479,0.183538,0.535448,0.97727,0.405031,0.00714284,0.828502,0.579427,0.977418,0.763036,0.568164,0.739391,0.761071,0.316369,0.0685434,0.296461,0.110323,0.778295,0.39667,0.954497,0.641775,0.645217,0.948555,0.880764,0.99378,0.889566,0.440649,0.904484,0.046528,0.528473,0.148404,0.0415843,0.514875,0.588156,0.853831,0.903335,0.911672,0.0675421,0.240597,0.126676,0.00898641,0.138249,0.773881,0.441952,0.232151,0.278557,0.723901,0.916681,0.622955,0.531214,0.365364,0.533303,0.451526,0.94348,0.851794,0.364045,0.342734,0.20545,0.051515,0.17981,0.0389959,0.372864,0.929384,0.0788334,0.0301991,0.875809,0.582695,0.434023,0.367554,0.352331,0.45649,0.53689,0.309668,0.827266,0.0387018,0.62754,0.0122844,0.611901,0.0304077,0.103466,0.149111,0.477547,0.177754,0.154727,0.249521,0.226541,0.171862,0.762539,0.858089,0.924734,0.22846,0.433116,0.803572,0.17345,0.183658,0.479513,0.997123,0.205073,0.00567245,0.270867,0.0364849,0.765328,0.86705,0.953598,0.232651,0.268221,0.642965,0.325325,0.918391,0.326318,0.421531,0.546462,0.292368,0.0337961,0.384339,0.970316,0.719707,0.715373,0.882483,0.466643,0.318894,0.501455,0.636962,0.608837,0.952768,0.282527,0.854643,0.961135,0.900314,0.694189,0.96562,0.126653,0.447422,0.0967859,0.493242,0.261067,0.00695246,0.830874,0.47982,0.725039,0.260309,0.28774,0.0992346,0.320051,0.858076,0.00818408,0.599993,0.617313,0.561211,0.0494656,0.850183,0.556747,0.51785,0.0618698,0.923342,0.282026,0.525391,0.220346,0.857615,0.745154,0.0153541,0.327156,0.0414846,0.515009,0.19903,0.88572,0.228625,0.712438,0.457017,0.932443,0.121301,0.192914,0.00669509,0.233636,0.620447,0.995258,0.0286455,0.451783,0.311413,0.93165,0.459851,0.80058,0.95836,0.945349,0.208789,0.478896,0.422238,0.465416,0.646915,0.106311,0.227512,0.497201,0.601279,0.752138,0.516312,0.670864,0.69347,0.762415,0.368069,0.912741,0.935443,0.282832,0.0233738,0.648326,0.091031,0.319451,0.947882,0.522721,0.802424,0.421045,0.246615,0.516646,0.874768,0.0147429,0.654187,0.464638,0.717452,0.479402,0.980663,0.83568,0.73367,0.753797,0.987251,0.997636,0.42115,0.0891423,0.839289,0.670925,0.972961,0.418641,0.92905,0.173163,0.318574,0.0904058,0.227237,0.542316,0.785581,0.847342,0.431434,0.761124,0.43326,0.602462,0.606002,0.807033,0.590669,0.248954,0.214735,0.574068,0.182731,0.808802,0.203443,0.915515,0.956421,0.144659,0.866666,0.725838,|0.942888,0.438255,0.910587,0.901838,0.993916,0.42435,0.141492,0.0916377,0.621046,0.0332118,0.931335,0.716475,0.899819,0.458113,0.962383,0.887078,0.951802,0.601231,0.0640349,0.995266,0.982101,0.815588,0.515942,0.108423,0.493879,0.347631,0.890756,0.0521425,0.607927,0.696183,0.632108,0.765134,0.496828,0.799519,0.596981,0.164056,0.917252,0.344388,0.503552,0.659629,0.260731,0.467597,0.738084,0.230435,0.390673,0.052037,0.60906,0.661092,0.888173,0.875964,0.375784,0.463857,0.74955,0.974644,0.569322,0.995727,0.581809,0.996358,0.984299,0.819293,0.617304,0.408065,0.50105,0.246509,0.54403,0.982289,0.602254,0.794118,0.672931,0.608593,0.401101,0.478815,0.592592,0.438712,0.296205,0.500734,0.0683163,0.600142,0.646718,0.794034,0.532685,0.0273436,0.506371,0.0633413,0.909976,0.507564,0.457281,0.515308,0.190461,0.561091,0.85164,0.583337,0.160313,0.29513,0.194251,0.976149,0.795324,0.522088,0.558748,0.269549,0.225899,0.777364,0.273947,0.21902,0.0701956,0.603308,0.598847,0.356611,0.529628,0.227275,0.952032,0.683142,0.377762,0.350164,0.124046,0.508037,0.582935,0.223902,0.0840055,0.0856237,0.582157,0.0661633,0.700133,0.0624312,0.935647,0.460672,0.78507,0.531873,0.787125,0.463087,0.532764,0.85588,0.215819,0.808275,0.881312,0.426342,0.0424836,0.940925,0.298078,0.573177,0.614383,0.887229,0.335137,0.661279,0.727643,0.271953,0.886466,0.967459,0.314915,0.110577,0.692199,0.116235,0.843857,0.304092,0.320611,0.403983,0.446142,0.799062,0.00977498,0.729053,0.173405,0.257152,0.179756,0.30759,0.286207,0.997313,0.572046,0.328944,0.169802,0.61901,0.608471,0.58958,0.777289,0.851552,0.910765,0.762996,0.327124,0.00114125,0.203074,0.20837,0.789311,0.317532,0.968714,0.798388,0.089565,0.72866,0.311891,0.881448,0.961101,0.993784,0.511427,0.844743,0.563935,0.837698,0.524739,0.948726,0.492816,0.115001,0.0697057,0.817427,0.976763,0.735651,0.136502,0.490948,0.369976,0.361687,0.864197,0.218995,0.693677,0.875882,0.609245,0.856104,0.526348,0.122782,0.187713,0.692192,0.420974,0.514802,0.547637,0.238716,0.861741,0.464239,0.740433,0.42424,0.391279,0.366942,0.360895,0.842825,0.827753,0.13461,0.0259297,0.00746417,0.844239,0.830442,0.0870685,0.268571,0.204319,0.0177283,0.51205,0.646592,0.238085,0.921138,0.79573,0.885559,0.327706,0.205584,0.542623,0.56265,0.80608,0.588721,0.447082,0.0971374,0.797272,0.967046,0.349846,0.340806,0.796891,0.564705,0.315604,0.812618,0.134192,0.0581652,0.129678,0.62954,0.741771,0.00779289,0.534618,0.353925,0.14236,0.29534,0.388156,0.355485,0.0119079,0.453477,0.960201,0.981178,0.37139,0.388264,0.321262,0.668244,0.697406,0.0647578,0.499298,0.590708,0.351301,0.756672,0.359187,0.817726,0.629431,0.110301,0.0766298,0.0517043,0.618448,0.0135558,0.211598,0.431631,0.294031,0.735559,0.452753,0.595957,0.359742,0.118622,0.859666,0.83663,0.508978,0.473845,0.31411,0.941909,0.236616,0.303477,0.977586,0.764377,0.296926,0.189835,0.964411,0.385185,0.0349145,0.257402,0.978576,0.161235,0.801772,0.247721,0.720032,0.370355,0.0963441,0.854819,0.876312,0.494946,0.567031,0.179837,0.231953,0.014826,0.997323,0.747473,0.114127,0.85727,0.547784,0.175617,0.697941,0.539172,0.657756,0.228465,0.123533,0.871655,0.131613,0.0932169,0.733168,0.373168,0.973334,0.098578,0.106758,0.421928,0.438509,0.977007,0.781439,0.912616,0.643951,0.148098,0.719619,0.935938,0.518569,0.0246711,0.471469,0.874864,0.996215,0.465092,0.475564,0.252167,0.542139,0.528719,0.0487494,0.818208,0.581529,0.126928,0.843653,0.34201,0.111678,0.380791,0.368669,0.995083,0.791009,0.237655,0.0456027,0.354262,0.237172,0.717112,0.671818,0.778569,0.399072,0.493497,0.776088,0.153266,0.240574,0.866015,0.533477,0.683399,0.742152,0.719436,0.279213,0.749306,0.133446,0.300336,0.985599,0.219741,0.594163,0.646111,0.111332,0.0749009,0.4469,0.822167,0.752815,0.187311,0.644171,0.558827,0.892163,0.784774,0.232692,0.679006,0.367026,0.91859,0.57337,0.0400435,0.497063,0.000310361,0.310587,0.880603,0.356705,0.646628,0.0661696,0.306633,0.0735125,0.0263343,0.671017,0.570623,0.03692,0.773412,0.156243,0.0475799,0.000744581,0.862397,0.755955,0.58968,0.148678,0.235209,0.993526,0.810184,0.829605,0.219626,0.878302,0.693168,0.12819,0.221052,0.486997,0.156588,0.229959,0.262467,0.779751,0.538475,0.0428259,0.427226,0.328886,0.727974,0.923948,0.573378,0.68305,0.756079,0.902734,0.388022,0.111592,0.389499,0.649345,0.711463,0.251918,0.386984,0.344758,0.087024,0.160484,0.258944,0.193136,0.205085,0.837064,0.787931,0.895762,0.0875365,0.99196,0.593403,0.0161552,0.223529,0.374194,0.800098,0.617906,0.233493,0.189007,0.687066,0.627032,0.330358,0.306079,0.188363,0.779146,0.200456,0.060666,0.00341946,0.553282,0.568452,0.276187,0.527324,0.0349141,0.855383,0.808214,0.144424,0.205405,0.162596,0.402729,0.501976,0.998549,0.385238,0.601433,0.256166,0.158819,0.555919,0.745392,0.418423,0.145711,0.43099,0.459251,0.12718,0.907009,0.0245489,0.197431,0.524908,0.925035,0.368983,0.325431,0.37911,0.823779,0.86164,0.0333607,0.596088,0.0572941,0.652896,0.469623,0.486725,0.40572,0.497763,0.698276,0.477122,0.392455,0.0471403,0.149972,0.0648476,0.990526,0.996884,0.55181,0.0451551,0.5266,0.684196,0.942832,0.818742,0.620997,0.947695,0.494603,0.365759,0.720832,0.634499,0.679491,0.392504,0.285097,0.179218,0.945222,0.802355,0.399064,0.587719,0.418644,0.714677,0.081508,0.93114,0.388073,0.564653,0.842645,0.0929181,0.642959,0.731393,0.0805993,0.627864,0.402681,0.381745,0.4699,0.726367,0.456249,0.264042,0.702137,0.652552,0.13134,0.172261,0.185352,0.18603,0.478602,0.270961,0.155354,0.97021,0.972331,0.424028,0.274285,0.806281,0.725575,0.57921,0.252414,0.714804,0.0374507,0.0456427,0.419852,0.948509,0.300923,0.849408,0.386009,0.823905,0.603853,0.296575,0.325641,0.984775,0.0751945,0.106548,0.24468,0.0412609,0.23,0.51567,0.706506,0.0457345,0.567863,0.899897,0.863616,0.420015,0.859098,0.577538,0.775638,0.150562,0.250631,0.667125,0.728744,0.840388,0.375871,0.421877,0.331736,0.215711,0.666073,0.727492,0.297567,0.679763,0.419003,0.201257,0.850988,0.306311,0.938648,0.340173,0.0424782,0.461372,0.418935,0.72694,0.788647,0.568986,0.961474,0.935282,0.748923,0.175531,0.0735002,0.336751,0.965205,0.674449,0.925054,0.0413008,0.581704,0.706929,0.925056,0.8721,0.13617,0.00804377,0.459451,0.716269,0.0737826,0.835445,0.358284,0.994075,0.190803,0.30345,0.851052,0.930938,0.879036,0.244033,0.957193,0.377625,0.937895,0.326086,0.851478,0.588097,0.383853,0.25128,0.293807,0.650945,0.910227,0.0354271,0.241565,0.677867,0.710633,0.481859,0.345137,0.190148,0.743622,0.978416,0.449448,0.883404,0.841971,0.627051,0.717672,0.620229,0.826218,0.298898,0.565118,0.673887,0.311683,0.0105207,0.245806,0.0245792,0.775414,0.684891,0.569758,0.817081,0.0899349,0.883337,0.514644,0.452793,0.195632,0.633254,0.777568,0.987054,0.404227,0.522591,0.480148,0.424648,0.295573,0.943377,0.119194,0.616021,0.302965,0.588761,0.22028,0.769514,0.562516,0.639343,0.783014,0.395198,0.0629389,0.963582,0.447571,0.858713,0.18238,0.546102,0.246608,0.779314,0.986927,0.564807,0.278305,0.837918,0.832046,0.224961,0.637058,0.548115,0.719775,0.889455,0.321651,0.34992,0.0956153,0.234271,0.498503,0.394024,0.771876,0.660806,0.390322,0.852567,0.0704204,0.916854,0.365512,0.345172,0.767912,0.34606,0.222903,0.950326,0.378603,0.100465,0.0449935,0.284037,0.475983,0.969797,0.46695,0.161334,0.18561,0.024131,0.307499,0.483948,0.58059,0.678403,0.462829,0.36307,0.564625,0.059419,0.603998,0.0407031,0.810841,0.406144,0.593888,0.824176,0.757085,0.317224,0.519009,0.607583,0.867676,0.0363443,0.318207,0.511533,0.616888,0.180909,0.445474,0.188796,0.56704,0.572752,0.171522,0.716236,0.235786,0.508179,0.0842169,0.545169,0.704119,0.461865,0.200305,0.344241,0.159238,0.668121,0.713196,0.749582,0.578582,0.712855,0.635062,0.872836,0.572341,0.257103,0.609809,0.905356,0.760558,0.538124,0.957646,0.954792,0.963716,0.0911781,0.138038,0.129101,0.579881,0.00429404,0.140072,0.191919,0.855921,0.519943,0.515686,0.948413,0.119894,0.753811,0.928136,0.84969,0.630674,0.215498,0.0512205,0.499612,0.29965,0.643932,0.760801,0.540247,0.751266,0.435152,0.879438,0.13767,0.0131815,0.45858,0.887883,0.0996482,0.2675,0.256641,0.525631,0.643048,0.165698,0.0906571,0.588502,0.133443,0.397463,0.463012,0.574268,0.273286,0.682223,0.437337,0.767534,0.740733,0.987066,0.256019,0.183123,0.749535,0.456957,0.322495,0.698447,0.504618,0.0479645,0.24489,0.681565,0.428523,0.123873,0.746989,0.643808,0.735477,0.147256,0.270895,0.278279,0.954384,0.509335,0.220136,0.347116,0.858338,0.759485,0.157475,0.315164,0.545027,0.590447,0.0439937,0.522107,0.184575,0.295513,0.0067659,0.389787,0.482832,0.137361,0.477963,0.612857,0.250148,0.938977,0.149498,0.642181,0.192921,0.604212,0.72392,0.437353,0.140954,0.825582,0.841606,0.904276,0.877665,0.928462,0.212133,0.0524161,0.137724,0.605342,0.895519,0.099331,0.547561,0.32596,0.0684696,0.502154,0.0854574,0.391569,0.254378,0.261185,0.555169,0.619691,0.971466,0.678696,0.614423,0.776878,0.533471,0.314797,0.610392,0.0758017,0.463294,0.229674,0.947225,0.892435,0.606367,0.892971,0.271933,0.881867,0.281505,0.488768,0.861908,0.120586,0.496005,0.0590745,0.104967,0.0512,0.00454032,0.6806,0.238097,0.23795,0.544215,0.737382,0.76099,0.134412,0.216247,|0.743051,0.969375,0.907197,0.75317,0.344869,0.895495,0.239246,0.461829,0.870732,0.57548,0.88196,0.229753,0.177626,0.540637,0.299225,0.001966,0.550364,0.332093,0.429651,0.960825,0.726443,0.284247,0.515242,0.829484,0.5621,0.482439,0.123018,0.288179,0.263524,0.882072,0.31342,0.24111,0.524816,0.734097,0.710201,0.907902,0.871237,0.356131,0.859724,0.206331,0.719778,0.500176,0.756747,0.638556,0.563105,0.924415,0.113711,0.978163,0.604735,0.271821,0.542298,0.710507,0.174191,0.76022,0.688713,0.0654266,0.857252,0.398036,0.848958,0.734876,0.144234,0.188858,0.579682,0.712974,0.526112,0.63396,0.658293,0.540033,0.260167,0.116943,0.873962,0.996249,0.767303,0.79144,0.128722,0.110757,0.503223,0.613278,0.000811458,0.65809,0.277414,0.515152,0.91807,0.0378568,0.201477,0.859652,0.812362,0.556282,0.881296,0.447708,0.21198,0.380692,0.00275362,0.306965,0.682413,0.167259,0.216934,0.327647,0.70711,0.80305,0.419645,0.858278,0.598615,0.637408,0.598275,0.275167,0.850966,0.988113,0.650711,0.36502,0.904384,0.98385,0.0675325,0.307721,0.0047695,0.439234,0.712675,0.125474,0.97752,0.236761,0.88613,0.599718,0.727,0.389077,0.0124481,0.884492,0.782629,0.971374,0.646188,0.870936,0.171407,0.617209,0.858512,0.947959,0.0378667,0.364083,0.414143,0.583591,0.746153,0.475108,0.108836,0.238073,0.116154,0.0522351,0.597176,0.352492,0.646128,0.0953316,0.112198,0.137505,0.439217,0.500955,0.860025,0.233114,0.150745,0.759198,0.771708,0.0937009,0.815473,0.226775,0.409244,0.28165,0.405192,0.931803,0.927968,0.326951,0.0213671,0.534778,0.226015,0.18111,0.405402,0.777328,0.468949,0.0735661,0.030867,0.111583,0.960909,0.772411,0.319809,0.701266,0.708685,0.43652,0.656008,0.976691,0.400015,0.225179,0.756629,0.906611,0.611037,0.967424,0.426783,0.630353,0.21361,0.370403,0.310214,0.706667,0.089064,0.269858,0.805728,0.013019,0.979888,0.818431,0.836165,0.455053,0.45729,0.0992188,0.531746,0.71699,0.641653,0.0847006,0.034081,0.156181,0.629848,0.835111,0.997769,0.759824,0.422814,0.54264,0.93012,0.148965,0.410022,0.0760426,0.461897,0.805303,0.54404,0.690527,0.235969,0.982192,0.537632,0.843567,0.899107,0.454275,0.858258,0.949587,0.852483,0.661375,0.627705,0.784209,0.111461,0.830296,0.614715,0.227993,0.316331,0.068244,0.466483,0.463406,0.72485,0.777405,0.492275,0.0594635,0.751023,0.733309,0.0886377,0.433184,0.368193,0.798696,0.16404,0.625637,0.522235,0.668871,0.0700106,0.893324,0.581063,0.384195,0.600292,0.216045,0.420497,0.754662,0.996438,0.744402,0.195658,0.750324,0.922363,0.47156,0.15282,0.0679047,0.906118,0.594354,0.521973,0.275045,0.818324,0.829987,0.515901,0.775822,0.300908,0.89016,0.952087,0.364911,0.66384,0.00399989,0.610536,0.437715,0.194383,0.825346,0.526781,0.293248,0.635791,0.673761,0.502349,0.454075,0.602494,0.272646,0.224406,0.959125,0.632639,0.929123,0.184512,0.322351,0.597163,0.96668,0.524445,0.809117,0.759625,0.426072,0.560384,0.116211,0.666738,0.360502,0.796762,0.353776,0.286884,0.464653,0.180987,0.236245,0.742655,0.480445,0.0474642,0.980978,0.667157,0.763225,0.172178,0.949421,0.0708994,0.839142,0.207834,0.33699,0.717218,0.535168,0.253174,0.699221,0.837199,0.90832,0.326364,0.822354,0.737649,0.36395,0.031925,0.193126,0.273185,0.717426,0.095241,0.322519,0.620462,0.808596,0.656566,0.107206,0.400924,0.0124645,0.336972,0.530879,0.00024128,0.853173,0.214846,0.0292934,0.961415,0.254973,0.234469,0.687557,0.431098,0.936899,0.679537,0.516051,0.319816,0.143379,0.811238,0.30784,0.492522,0.21347,0.969335,0.225381,0.403723,0.753417,0.109267,0.210316,0.0465617,0.0427171,0.856821,0.673847,0.947879,0.656886,0.919491,0.89322,0.888702,0.264641,0.350437,0.785313,0.97646,0.202306,0.751447,0.831904,0.252604,0.790431,0.443114,0.379426,0.910586,0.0490588,0.748312,0.95176,0.546146,0.188515,0.465342,0.479884,0.660775,0.766879,0.729447,0.0671494,0.181062,0.938806,0.31118,0.564976,0.781077,0.150884,0.340694,0.853975,0.0822609,0.720728,0.544721,0.798767,0.318105,0.273385,0.126428,0.0436042,0.912097,0.185518,0.661994,0.239774,0.946764,0.337162,0.919087,0.643217,0.671192,0.83026,0.916684,0.730157,0.416678,0.119274,0.475108,0.822578,0.282526,0.502723,0.736061,0.336524,0.0810831,0.842143,0.389279,0.54436,0.0583029,0.260665,0.38029,0.545612,0.264628,0.36325,0.558655,0.164097,0.239628,0.775839,0.311007,0.0361282,0.0321459,0.955429,0.963434,0.0161722,0.221348,0.56424,0.774611,0.0722427,0.875513,0.298477,0.421507,0.260818,0.896136,0.440658,0.82938,0.678973,0.847783,0.293878,0.647981,0.73843,0.895819,0.0829267,0.932669,0.569768,0.392087,0.807707,0.456455,0.852245,0.0984031,0.842413,0.895339,0.289554,0.260124,0.474714,0.0655413,0.254248,0.368265,0.687082,0.821607,0.564107,0.901318,0.49157,0.740063,0.451861,0.781488,0.309567,0.389979,0.404141,0.495295,0.787653,0.808326,0.729547,0.252204,0.976445,0.0910591,0.784034,0.215052,0.419786,0.960721,0.706203,0.301304,0.334811,0.459222,0.912484,0.701949,0.63798,0.870823,0.72101,0.00713325,0.72336,0.70355,0.47537,0.409445,0.540433,0.171853,0.112205,0.217795,0.778276,0.681038,0.223423,0.118768,0.687036,0.84656,0.0341563,0.892247,0.113442,0.707067,0.267711,0.800777,0.731771,0.722882,0.598199,0.340881,0.0200455,0.594931,0.108185,0.105248,0.681422,0.522172,0.732445,0.434951,0.614676,0.480224,0.29375,0.275666,0.599976,0.0448295,0.269628,0.325792,0.379133,0.0401781,0.835149,0.780148,0.683648,0.567623,0.6747,0.961833,0.271416,0.658092,0.160244,0.488796,0.826983,0.892193,0.889877,0.842081,0.179823,0.537745,0.930482,0.899269,0.25533,0.355771,0.371791,0.491847,0.190855,0.273023,0.82905,0.119916,0.40567,0.960029,0.0391549,0.571456,0.743568,0.669895,0.746098,0.247125,0.32684,0.510034,0.244885,0.924768,0.586388,0.70859,0.181411,0.0968565,0.827881,0.608445,0.561559,0.66169,0.907154,0.108195,0.365436,0.490993,0.974108,0.962995,0.754324,0.0792724,0.986587,0.484959,0.817948,0.4632,0.0107622,0.708259,0.207148,0.926999,0.767872,0.768688,0.709454,0.870754,0.679259,0.782134,0.198768,0.365817,0.882775,0.489567,0.195463,0.935363,0.134051,0.708533,0.29136,0.755087,0.794468,0.509873,0.807666,0.293865,0.29476,0.119255,0.386898,0.628253,0.715485,0.840886,0.0124798,0.58222,0.720705,0.491644,0.363296,0.539754,0.137688,0.53797,0.0566471,0.315852,0.97562,0.18549,0.297697,0.905585,0.0906383,0.890042,0.404708,0.753025,0.940452,0.738593,0.755999,0.31711,0.949561,0.892086,0.237967,0.0568794,0.0275614,0.279967,0.807072,0.179457,0.60413,0.135003,0.211092,0.988269,0.717829,0.483565,0.405962,0.431692,0.64172,0.22949,0.795,0.219557,0.582388,0.974657,0.589467,0.236486,0.499316,0.515745,0.668037,0.672056,0.712362,0.95978,0.53595,0.0757759,0.0490334,0.868254,0.661527,0.459384,0.381591,0.551453,0.913004,0.58317,0.940643,0.43593,0.644613,0.935946,0.597325,0.454172,0.737737,0.822875,0.197798,0.131074,0.393755,0.787988,0.0102544,0.586909,0.703189,0.998789,0.269009,0.418867,0.840089,0.141728,0.538815,0.16458,0.257607,0.885916,0.93591,0.448092,0.341592,0.271371,0.4174,0.169,0.136457,0.976285,0.844491,0.793628,0.650788,0.237828,0.408062,0.564948,0.0645026,0.929771,0.417657,0.606471,0.636329,0.695584,0.0725691,0.239605,0.519665,0.529896,0.643945,0.0765945,0.277654,0.61577,0.711318,0.329744,0.380992,0.0315225,0.0998146,0.199293,0.509045,0.477175,0.89911,0.738925,0.856583,0.839825,0.749955,0.966769,0.161074,0.528784,0.350543,0.538028,0.671142,0.715719,0.199645,0.614555,0.85099,0.478892,0.110593,0.701889,0.0784482,0.451497,0.698335,0.993893,0.0569727,0.659383,0.499084,0.763125,0.157334,0.85807,0.900575,0.461385,0.692711,0.640184,0.504753,0.907318,0.722567,0.980344,0.0820891,0.0796918,0.442124,0.542685,0.492037,0.79175,0.792528,0.833441,0.701155,0.811625,0.654854,0.0042572,0.830073,0.575331,0.349522,0.397193,0.706153,0.416426,0.045135,0.599422,0.861912,0.6277,0.753252,0.0132401,0.454961,0.262993,0.815247,0.200897,0.949694,0.668322,0.415717,0.471392,0.858973,0.507775,0.353024,0.463925,0.701791,0.361365,0.687399,0.233347,0.488943,0.789003,0.800656,0.94442,0.404699,0.396387,0.650161,0.819744,0.280881,0.887867,0.0965099,0.395661,0.397347,0.244198,0.697611,0.0298408,0.932478,0.556209,0.2304,0.528099,0.407117,0.297348,0.032822,0.211331,0.37725,0.0622098,0.387694,0.258363,0.0852157,0.0438045,0.5404,0.521892,0.605592,0.60264,0.916636,0.408573,0.991253,0.578994,0.868136,0.758867,0.909895,0.420635,0.695972,0.152764,0.367235,0.717392,0.294655,0.272058,0.738638,0.345664,0.933114,0.029428,0.615043,0.267764,0.615166,0.0317894,0.511412,0.373,0.593267,0.219675,0.75548,0.0345539,0.861881,0.0240376,0.738584,0.391278,0.00874841,0.309133,0.782646,0.830993,0.259947,0.168945,0.135367,0.638397,0.0654206,0.557248,0.87752,0.954744,0.0873986,0.795806,0.0760311,0.256877,0.8215,0.794883,0.289903,0.205759,0.49961,0.697692,0.501086,0.703382,0.623281,0.0978782,0.367468,0.0703838,0.398601,0.45432,0.00413227,0.581435,0.10507,0.972894,0.0785308,0.754632,0.634285,0.488987,0.0628783,0.83377,0.124105,0.0656247,0.154757,0.605164,0.303954,0.543858,0.083554,0.999843,0.538739,0.214086,0.659051,0.404571,0.925413,0.0463927,0.0232914,0.397575,0.0618318,0.0787839,0.0480958,0.797041,0.78844,0.0428139,0.500437,0.539888,0.0683046,0.626384,0.323418,0.507533,0.795003,|0.796472,0.620094,0.811288,0.702718,0.707399,0.538719,0.817367,0.978001,0.567444,0.247671,0.143111,0.487645,0.456831,0.0940457,0.601531,0.207431,0.514091,0.0250669,0.346276,0.375656,0.17499,0.33257,0.166379,0.855981,0.685096,0.11087,0.332779,0.620221,0.31072,0.628483,0.572682,0.067805,0.597599,0.0856587,0.883552,0.609581,0.173099,0.40845,0.216472,0.411272,0.481581,0.927265,0.885019,0.92424,0.176601,0.250508,0.431092,0.56444,0.9156,0.118831,0.382339,0.636459,0.864884,0.30193,0.150636,0.546908,0.304374,0.796006,0.833468,0.207185,0.418554,0.834284,0.580627,0.232227,0.445044,0.93706,0.00566173,0.0354431,0.241391,0.64916,0.672947,0.245278,0.674937,0.935919,0.742951,0.00820059,0.404965,0.190182,0.238756,0.740349,0.541014,0.174854,0.582578,0.220208,0.90294,0.967956,0.373544,0.3403,0.747676,0.0623509,0.524241,0.0691326,0.356972,0.746004,0.134682,0.400343,0.016473,0.68536,0.710289,0.63201,0.883667,0.21047,0.370083,0.687378,0.410904,0.873427,0.641722,0.948608,0.702577,0.738256,0.567001,0.276946,0.616,0.413947,0.0987213,0.341345,0.332635,0.313247,0.299797,0.929811,0.65763,0.980274,0.300493,0.0760571,0.473542,0.00289899,0.620499,0.803842,0.561811,0.54906,0.428164,0.0628356,0.56134,0.447476,0.506777,0.300748,0.60487,0.0395466,0.937845,0.726958,0.52104,0.543193,0.75437,0.937796,0.430821,0.809829,0.908226,0.171754,0.368717,0.383059,0.939326,0.598476,0.42611,0.300368,0.700985,0.835314,0.512829,0.57285,0.0766196,0.914373,0.0183069,0.935184,0.396402,0.707021,0.849919,0.644593,0.477653,0.643638,0.508575,0.382535,0.695527,0.979292,0.411164,0.103096,0.127171,0.359443,0.337424,0.720831,0.869436,0.751646,0.943967,0.76057,0.610722,0.578659,0.489266,0.401815,0.0638068,0.456212,0.602726,0.172886,0.967423,0.701048,0.827502,0.161733,0.484001,0.997567,0.872877,0.767888,0.388448,0.598283,0.773161,0.149633,0.973868,0.946522,0.651476,0.251458,0.411172,0.840127,0.768233,0.457003,0.738305,0.206628,0.605693,0.435244,0.00360316,0.950038,0.732324,0.256208,0.9963,0.412046,0.335105,0.646329,0.523922,0.29704,0.0708389,0.00592762,0.767473,0.719631,0.840509,0.656661,0.266715,0.0366447,0.130777,0.633102,0.445517,0.825541,0.277183,0.288651,0.00234801,0.140645,0.124909,0.307723,0.452533,0.306542,0.155956,0.658721,0.0254006,0.0508823,0.299627,0.179954,0.517108,0.587606,0.496331,0.302403,0.669019,0.266923,0.287956,0.357053,0.446279,0.91664,0.826125,0.37622,0.908358,0.84415,0.203037,0.619855,0.403582,0.846994,0.177126,0.185784,0.899005,0.890939,0.234304,0.0596356,0.771164,0.212251,0.251516,0.903108,0.424541,0.770639,0.401323,0.0708843,0.742999,0.825516,0.98992,0.461024,0.737746,0.653141,0.330957,0.358292,0.526575,0.19877,0.841294,0.435366,0.506649,0.885705,0.893856,0.155494,0.165903,0.0819005,0.395534,0.537857,0.636167,0.914381,0.931303,0.462397,0.449131,0.504966,0.197544,0.351345,0.0564141,0.529152,0.209722,0.0447275,0.917821,0.36082,0.391411,0.15786,0.351211,0.326823,0.851514,0.209589,0.18517,0.33119,0.0562822,0.479001,0.736285,0.382649,0.814055,0.663973,0.323418,0.758412,0.299071,0.500212,0.782625,0.973464,0.947995,0.262061,0.764351,0.971844,0.227379,0.877436,0.117128,0.0709659,0.859031,0.966553,0.997008,0.236219,0.113345,0.00278676,0.469812,0.344749,0.352591,0.957373,0.412546,0.0768396,0.897128,0.148293,0.16377,0.164268,0.970798,0.707136,0.394013,0.607391,0.108767,0.458476,0.027706,0.781279,0.933517,0.809641,0.784414,0.0118582,0.30213,0.560466,0.189774,0.743125,0.0543694,0.983302,0.164573,0.888974,0.731664,0.171587,0.649831,0.540248,0.619065,0.939495,0.69621,0.717118,0.972576,0.119035,0.432161,0.244435,0.879222,0.609291,0.858127,0.589354,0.110867,0.642713,0.196315,0.388966,0.39342,0.320802,0.967412,0.945697,0.578251,0.83299,0.78975,0.630356,0.652498,0.875374,0.0739456,0.104381,0.213824,0.272158,0.418882,0.652455,0.255771,0.446072,0.579735,0.794592,0.13162,0.758509,0.312057,0.165173,0.32197,0.38247,0.222904,0.620825,0.78695,0.829232,0.856022,0.596345,0.531939,0.535947,0.481853,0.473704,0.445009,0.274729,0.422647,0.000732005,0.330762,0.854916,0.696749,0.360944,0.747271,0.204793,0.699989,0.452926,0.643423,0.0368971,0.341457,0.093103,0.240797,0.602604,0.232358,0.283442,0.173027,0.112509,0.276173,0.236576,0.580646,0.796188,0.96796,0.266156,0.266097,0.982163,0.54361,0.0260724,0.818975,0.965113,0.884743,0.499402,0.826558,0.862854,0.480515,0.242326,0.598979,0.687176,0.696124,0.0823377,0.0523816,0.878124,0.251858,0.578635,0.55777,0.844045,0.611535,0.70774,0.259997,0.913673,0.0757843,0.634677,0.43813,0.171165,0.698485,0.156533,0.769428,0.955466,0.299924,0.702439,0.559729,0.603185,0.372998,0.391513,0.899949,0.255577,0.78742,0.460017,0.648979,0.901002,0.0174665,0.294108,0.417032,0.0270653,0.489537,0.993766,0.946514,0.978347,0.873662,0.635991,0.143708,0.352151,0.0374804,0.606143,0.125015,0.0759323,0.404505,0.987993,0.498273,0.802684,0.162006,0.10625,0.855205,0.791811,0.226083,0.960032,0.161602,0.589888,0.935698,0.698477,0.471246,0.392692,0.461356,0.16073,0.00743538,0.204793,0.223165,0.489546,0.846357,0.992518,0.904889,0.727137,0.509419,0.62488,0.468536,0.201417,0.463859,0.846309,0.664614,0.798599,0.735524,0.0494263,0.394758,0.274414,0.544871,0.201212,0.568513,0.247581,0.106408,0.290746,0.0159869,0.712537,0.598789,0.376744,0.977197,0.955544,0.376816,0.476037,0.594603,0.823925,0.725349,0.507037,0.967472,0.0540951,0.937144,0.475372,0.612181,0.121791,0.185566,0.320011,0.447983,0.000480413,0.209432,0.610249,0.216923,0.00319356,0.578063,0.0242806,0.40716,0.841655,0.0980526,0.957941,0.166159,0.922116,0.527939,0.26638,0.719379,0.605088,0.350733,0.462077,0.754909,0.133449,0.262915,0.629704,0.0219176,0.618392,0.206472,0.548015,0.167827,0.704076,0.241371,0.560336,0.593288,0.308475,0.427315,0.969574,0.249761,0.0393156,0.877853,0.381856,0.551636,0.426039,0.971125,0.945638,0.0905586,0.206177,0.228546,0.456469,0.114403,0.83867,0.288547,0.601515,0.762809,0.75822,0.665271,0.231072,0.11015,0.0544858,0.338553,0.531104,0.433368,0.385349,0.276663,0.166176,0.0117609,0.712947,0.104138,0.576134,0.67204,0.50076,0.3771,0.340973,0.138165,0.590279,0.832374,0.845982,0.112258,0.181559,0.0580605,0.89072,0.156485,0.88959,0.118583,0.49249,0.382356,0.208997,0.367695,0.486132,0.917236,0.711883,0.121851,0.441852,0.919948,0.582766,0.190749,0.129337,0.0476125,0.582737,0.912846,0.385694,0.520472,0.648644,0.901284,0.27763,0.776923,0.0229325,0.625679,0.88852,0.887221,0.415298,0.981324,0.041297,0.563106,0.959142,0.932359,0.151617,0.107652,0.0322446,0.990303,0.752356,0.292495,0.938431,0.839831,0.462057,0.351162,0.686817,0.941378,0.852359,0.395228,0.24828,0.466956,0.762385,0.883915,0.950077,0.734835,0.713389,0.75109,0.99657,0.234152,0.283086,0.492032,0.40254,0.81378,0.757096,0.243484,0.89755,0.697079,0.00227702,0.649608,0.339812,0.925218,0.233885,0.411709,0.242224,0.225772,0.130434,0.0783264,0.333838,0.939541,0.724583,0.742508,0.421372,0.856423,0.677909,0.575133,0.361471,0.626027,0.752351,0.102232,0.158399,0.348803,0.342169,0.767865,0.151709,0.17074,0.162818,0.0771414,0.725839,0.740773,0.344314,0.249811,0.733673,0.909957,0.508136,0.834161,0.404028,0.266244,0.702379,0.364331,0.813597,0.576054,0.197847,0.0769191,0.379418,0.998455,0.309535,0.506113,0.664541,0.983713,0.116866,0.174249,0.707839,0.407941,0.873612,0.346329,0.259542,0.976418,0.61912,0.0759976,0.519714,0.0900288,0.381822,0.543749,0.176241,0.878878,0.299482,0.0727818,0.9305,0.901179,0.288259,0.350751,0.818778,0.665672,0.771972,0.327151,0.791181,0.994883,0.991297,0.169152,0.373513,0.832053,0.905545,0.848164,0.924819,0.293981,0.370252,0.610012,0.137145,0.492668,0.51339,0.794792,0.921986,0.506846,0.129012,0.716997,0.593168,0.507328,0.0226783,0.152623,0.70316,0.780713,0.846606,0.497248,0.388548,0.631923,0.710631,0.271716,0.926998,0.748419,0.948559,0.432416,0.127777,0.814899,0.777437,0.334307,0.384652,0.0528315,0.0678082,0.819177,0.0878197,0.442859,0.0505504,0.153459,0.203576,0.216044,0.502436,0.72275,0.370118,0.527598,0.338249,0.540928,0.674432,0.408689,0.588464,0.052025,0.49776,0.0229689,0.170263,0.0442436,0.0575485,0.136102,0.0546953,0.394352,0.124879,0.0449915,0.494884,0.651814,0.307667,0.870459,0.786508,0.455606,0.104467,0.100436,0.519954,0.724688,0.244227,0.0868344,0.981129,0.32805,0.215531,0.752225,0.823132,0.537292,0.796588,0.142049,0.426425,0.590113,0.135191,0.797895,0.880491,0.365119,0.556458,0.497621,0.669779,0.440457,0.618441,0.702531,0.915437,0.705098,0.139578,0.600959,0.87146,0.637901,0.694542,0.383314,0.483857,0.373843,0.171544,0.181939,0.466344,0.798276,0.866733,0.819043,0.305317,0.530337,0.814606,0.107903,0.349122,0.959397,0.920017,0.274976,0.942874,0.785088,0.202143,0.693611,0.120061,0.109789,0.932939,0.581274,0.88692,0.498467,0.408552,0.224322,0.527364,0.237566,0.672953,0.618467,0.145488,0.0240793,0.79232,0.682993,0.428597,0.983606,0.055573,0.174387,0.509879,0.988077,0.531987,0.141938,0.358666,0.79364,0.712626,0.0492181,0.742407,0.25772,0.85085,0.490459,0.329159,0.3064,0.631666,0.919348,0.749553,0.606705,0.866225,0.522483,0.681989,0.299071,0.172154,0.202627,0.906615,0.504395,0.165789,0.12997,0.878836,0.287719,0.28445,0.402808,0.783605,0.661102,0.159851,|0.770105,0.0886584,0.470048,0.121244,0.235759,0.441171,0.658885,0.0420266,0.537318,0.762525,0.817249,0.347844,0.535008,0.453454,0.250109,0.956813,0.767822,0.0618307,0.978963,0.405535,0.934751,0.30053,0.369883,0.806016,0.0136791,0.469979,0.402348,0.0511497,0.874196,0.105811,0.597609,0.578626,0.0758656,0.115444,0.288757,0.217394,0.459285,0.71263,0.942344,0.832864,0.294792,0.644788,0.119822,0.249089,0.104536,0.819637,0.410901,0.235188,0.0833762,0.598099,0.607183,0.41363,2.41399e-05,0.308766,0.0981622,0.453849,0.220749,0.636961,0.551631,0.0119386,0.455656,0.229037,0.252707,0.814437,0.851448,0.410052,0.502876,0.760691,0.751712,0.0835453,0.364703,0.0637314,0.570205,0.254641,0.908463,0.297477,0.232194,0.558168,0.192526,0.554876,0.455016,0.152556,0.0101322,0.644144,0.409063,0.739378,0.416308,0.0604436,0.822325,0.930521,0.255377,0.155126,0.245345,0.701275,0.932638,0.836876,0.0837153,0.142026,0.895184,0.68858,0.740822,0.134389,0.0342668,0.326779,0.482809,0.636359,0.858925,0.20335,0.384905,0.998806,0.312606,0.0748675,0.0316649,0.0962735,0.733293,0.918028,0.459823,0.201643,0.281247,0.368426,0.48699,0.75388,0.285806,0.58534,0.580581,0.164276,0.594135,0.757204,0.298532,0.527851,0.978303,0.719491,0.779946,0.920246,0.126776,0.407958,0.979302,0.741596,0.560295,0.254001,0.877441,0.823164,0.561901,0.861625,0.449037,0.860085,0.0297731,0.21838,0.95737,0.582527,0.482884,0.671571,0.127021,0.876591,0.768867,0.0152402,0.946037,0.676419,0.0960701,0.679985,0.0649707,0.839521,0.766624,0.314869,0.585988,0.362396,0.906238,0.0778965,0.0415059,0.594779,0.623418,0.201602,0.0539495,0.407702,0.889346,0.0980078,0.428185,0.372942,0.441986,0.480678,0.674248,0.385439,0.652555,0.507685,0.594244,0.78332,0.328152,0.343136,0.285892,0.951623,0.205078,0.579827,0.947007,0.29629,0.0899746,0.371354,0.923852,0.902594,0.592224,0.359215,0.400649,0.877177,0.495773,0.196378,0.133926,0.874418,0.0949916,0.0707472,0.456734,0.622431,0.492715,0.798991,0.758693,0.871566,0.283252,0.253801,0.701534,0.293644,0.492166,0.183644,0.662668,0.82154,0.465264,0.7648,0.997783,0.552796,0.156996,0.446315,0.108595,0.386726,0.183624,0.697893,0.632051,0.770427,0.00585997,0.786483,0.545257,0.563566,0.340227,0.279047,0.732144,0.453967,0.637911,0.785143,0.648027,0.0769039,0.696118,0.27221,0.428017,0.115978,0.919147,0.808093,0.725855,0.761909,0.00565803,0.462205,0.0990468,0.28797,0.723998,0.469887,0.327935,0.0411183,0.207455,0.73215,0.365888,0.464619,0.382033,0.273444,0.963719,0.421292,0.0046801,0.246079,0.443233,0.441203,0.987953,0.0537621,0.620078,0.593694,0.99974,0.0216703,0.522275,0.442834,0.909018,0.937809,0.18108,0.198042,0.699506,0.443922,0.402442,0.400841,0.586505,0.524046,0.714723,0.300566,0.13827,0.165092,0.0267216,0.693816,0.285908,0.0511007,0.367724,0.708468,0.83393,0.597529,0.677987,0.14963,0.441566,0.538681,0.464732,0.934812,0.506823,0.48576,0.207954,0.568063,0.790211,0.111957,0.221725,0.413555,0.122343,0.981489,0.0640709,0.44876,0.401114,0.595719,0.838203,0.730929,0.183465,0.861326,0.124106,0.389033,0.220289,0.177484,0.369517,0.389677,0.801532,0.597116,0.322858,0.811232,0.664013,0.376989,0.425338,0.229353,0.745949,0.351655,0.705042,0.820066,0.0462136,0.751408,0.204476,0.521528,0.61861,0.0490556,0.982542,0.288367,0.149264,0.302803,0.478535,0.639754,0.0647985,0.190014,0.9323,0.351518,0.0331576,0.657413,0.542499,0.562893,0.68585,0.225473,0.680341,0.0352563,0.582126,0.390035,0.272197,0.0544492,0.160879,0.393361,0.250446,0.279918,0.632965,0.77777,0.674312,0.66543,0.950176,0.790315,0.103926,0.751465,0.436278,0.55265,0.894128,0.413368,0.759175,0.986901,0.751648,0.154803,0.482571,0.380823,0.961858,0.360258,0.300864,0.0492104,0.911237,0.317087,0.0310592,0.517412,0.353996,0.459475,0.0344673,0.206462,0.574254,0.157064,0.0659525,0.590937,0.744796,0.726559,0.0238863,0.685388,0.357067,0.853798,0.81449,0.674899,0.721659,0.470016,0.772236,0.684624,0.896712,0.498095,0.894996,0.9392,0.281313,0.922388,0.484171,0.513049,0.999811,0.674063,0.530506,0.882557,0.398468,0.112391,0.194882,0.123059,0.687077,0.722956,0.025269,0.624615,0.230225,0.0627913,0.953087,0.78663,0.44308,0.441861,0.64854,0.615798,0.8016,0.393124,0.79709,0.993531,0.428348,0.917814,0.802004,0.518379,0.409269,0.737806,0.15718,0.167097,0.65573,0.88548,0.677091,0.601492,0.487204,0.151214,0.945871,0.263786,0.466795,0.268438,0.407471,0.937398,0.820634,0.323691,0.0871331,0.540858,0.262217,0.964836,0.537425,0.23903,0.592192,0.593533,0.8117,0.117,0.0140532,0.302904,0.0287624,0.0966882,0.233115,0.199665,0.141777,0.257794,0.538319,0.835724,0.425664,0.361682,0.450713,0.605094,0.0667098,0.444997,0.786166,0.695668,0.182505,0.614176,0.490813,0.678477,0.78151,0.10719,0.490041,0.193895,0.0121511,0.193178,0.918395,0.0477776,0.594815,0.041513,0.468409,0.219392,0.30342,0.711734,0.310783,0.748221,0.731989,0.0830629,0.20329,0.124985,0.0548031,0.989555,0.170996,0.674497,0.520602,0.323165,0.0494904,0.66701,0.258751,0.791778,0.794935,0.121298,0.877724,0.539502,0.202284,0.485571,0.517532,0.365637,0.793535,0.564818,0.322589,0.107566,0.00307924,0.223653,0.122617,0.215835,0.378388,0.0005126,0.548642,0.767318,0.191725,0.627049,0.0335671,0.596547,0.412529,0.283424,0.141691,0.618605,0.967954,0.356906,0.800446,0.283953,0.359741,0.806338,0.700768,0.479417,0.843521,0.428284,0.923422,0.648559,0.45763,0.638174,0.154374,0.555062,0.693112,0.78322,0.660896,0.778323,0.701791,0.944746,0.312489,0.264384,0.012692,0.525456,0.103534,0.992953,0.0308702,0.362173,0.681549,0.819647,0.68521,0.375036,0.940471,0.372264,0.147478,0.846501,0.324962,0.175448,0.629688,0.326793,0.15724,0.355869,0.912896,0.268736,0.409645,0.669222,0.489103,0.6017,0.545864,0.694648,0.78506,0.729817,0.506209,0.497478,0.940278,0.555068,0.622411,0.628724,0.992914,0.779392,0.321933,0.679233,0.370372,0.833911,0.231488,0.146978,0.607445,0.719767,0.941971,0.84821,0.53954,0.307811,0.800316,0.0986839,0.614674,0.252989,0.664181,0.546448,0.95316,0.198676,0.191382,0.550807,0.787769,0.825792,0.277074,0.320726,0.0274357,0.75257,0.0323871,0.322934,0.675002,0.740989,0.414216,0.859217,0.8649,0.365039,0.106795,0.268937,0.923576,0.404835,0.263466,0.932921,0.596521,0.580303,0.271431,0.213107,0.0135698,0.62734,0.508461,0.313886,0.945475,0.922661,0.177045,0.317122,0.364142,0.263,0.123122,0.620047,0.742401,0.708954,0.124604,0.641852,0.689822,0.690117,0.169951,0.875971,0.892102,0.675789,0.6136,0.794948,0.798056,0.952371,0.067799,0.642408,0.526142,0.569516,0.372605,0.508323,0.236131,0.208453,0.565315,0.626821,0.420092,0.173058,0.269479,0.848376,0.600086,0.236403,0.804793,0.791991,0.409515,0.63638,0.847237,0.106941,0.982886,0.495675,0.522463,0.211397,0.00935352,0.961623,0.856019,0.516912,0.0975656,0.0464363,0.971854,0.989882,0.690075,0.2327,0.108886,0.999673,0.557337,0.287292,0.141026,0.632945,0.148733,0.00489801,0.976126,0.97373,0.56627,0.998012,0.771852,0.618426,0.096611,0.719794,0.746786,0.913957,0.53522,0.495839,0.102734,0.973699,0.95233,0.961195,0.790762,0.373258,0.730553,0.980668,0.488942,0.433156,0.493293,0.61766,0.428541,0.972252,0.468343,0.611664,0.344351,0.525708,0.104693,0.570652,0.956282,0.908564,0.546564,0.0339748,0.0467405,0.225611,0.600673,0.472354,0.876116,0.407468,0.825807,0.241912,0.510393,0.452539,0.658815,0.0645866,0.203846,0.576733,0.182953,0.152107,0.447317,0.380817,0.116943,0.134763,0.572648,0.866482,0.519609,0.832966,0.401815,0.238334,0.562348,0.777675,0.688771,0.678888,0.872971,0.804263,0.274398,0.156506,0.470477,0.719981,0.288593,0.520735,0.739756,0.244908,0.587881,0.0885175,0.0857522,0.740893,0.390306,0.9962,0.984408,0.273495,0.803861,0.676806,0.428038,0.917499,0.61508,0.598293,0.486362,0.895649,0.823694,0.635498,0.299464,0.525094,0.969515,0.770815,0.905223,0.183189,0.965302,0.0113402,0.540527,0.157986,0.209307,0.87528,0.18939,0.0272838,0.0578769,0.856962,0.963436,0.825157,0.924831,0.51604,0.987694,0.0136585,0.304525,0.75174,0.180374,0.152468,0.218922,0.711784,0.812907,0.401475,0.92042,0.526986,0.582324,0.0281735,0.189747,0.517319,0.867001,0.343183,0.250101,0.25219,0.569441,0.780709,0.499944,0.286039,0.0492205,0.0577747,0.788409,0.622014,0.957829,0.545527,0.848256,0.613196,0.683217,0.807852,0.600985,0.302106,0.0298501,0.0980784,0.978477,0.4725,0.139423,0.620219,0.89918,0.960189,0.112005,0.438067,0.824355,0.430422,0.679957,0.108327,0.63389,0.850322,0.366457,0.218206,0.075267,0.306482,0.625934,0.770729,0.471312,0.930034,0.366135,0.831322,0.652305,0.794976,0.928902,0.0864805,0.0260682,0.906047,0.536803,0.797352,0.320963,0.398758,0.681718,0.45172,0.14608,0.00136209,0.37053,0.427225,0.228826,0.0978457,0.720679,0.136191,0.349864,0.162613,0.574135,0.931713,0.577979,0.465055,0.367741,0.255169,0.3424,0.908983,0.491613,0.747345,0.211339,0.423311,0.689341,0.718195,0.285941,0.945712,0.63683,0.397699,0.0979388,0.224862,0.863552,0.970258,0.142509,0.819152,0.226047,0.419289,0.48743,0.701832,0.514113,0.325025,0.946934,0.52497,0.589169,0.0998624,0.729184,0.089816,0.756023,0.801791,0.964335,0.967135,0.808912,0.221128,0.0242754,0.680521,0.349572,0.767993,0.242979,0.793716,0.917492,0.794479,0.220556,0.958651,0.453331,0.781912,0.328761,0.751972,|0.452885,0.545197,0.835542,0.221332,0.723635,0.264,0.0408351,0.53802,0.831465,0.216162,0.322253,0.25909,0.935873,0.961104,0.0492061,0.607269,0.579726,0.45848,0.652317,0.892358,0.240729,0.404503,0.285725,0.972319,0.743977,0.314132,0.781602,0.702086,0.578146,0.862364,0.813209,0.0564486,0.533377,0.764486,0.346377,0.301274,0.6264,0.683711,0.440713,0.381445,0.882127,0.553843,0.234079,0.190274,0.0508954,0.335712,0.575427,0.606584,0.778653,0.337177,0.581272,0.912637,0.768876,0.759603,0.373405,0.809508,0.50362,0.583779,0.790987,0.470914,0.995958,0.853167,0.76219,0.869852,0.388519,0.172177,0.866144,0.231696,0.513367,0.958515,0.206008,0.354762,0.255764,0.800272,0.0536082,0.0524879,0.970537,0.20257,0.536928,0.529278,0.867681,0.859622,0.820619,0.600354,0.943658,0.532536,0.397246,0.0417675,0.00134283,0.0959366,0.345668,0.333067,0.491086,0.407761,0.955827,0.85036,0.186561,0.0829768,0.691257,0.547063,0.234692,0.530192,0.78824,0.788054,0.548674,0.582279,0.149046,0.316975,0.502832,0.454378,0.0519492,0.336508,0.826753,0.97949,0.766039,0.288308,0.119261,0.170501,0.655684,0.251031,0.406442,0.420238,0.668,0.0971622,0.421082,0.603685,0.00725579,0.673608,0.905269,0.546126,0.597926,0.0172473,0.546994,0.0557972,0.307546,0.906935,0.236213,0.0745897,0.141513,0.53581,0.734778,0.68575,0.951969,0.797773,0.0182517,0.540685,0.988904,0.746279,0.297586,0.959302,0.692975,0.505168,0.263973,0.805933,0.996559,0.152084,0.760534,0.620917,0.498478,0.920976,0.0593628,0.429727,0.962793,0.88381,0.845944,0.806649,0.710488,0.356475,0.814071,0.860237,0.210274,0.899204,0.247408,0.568136,0.475554,0.681891,0.414412,0.225268,0.850308,0.996253,0.893056,0.639587,0.467757,0.5747,0.480279,0.0476179,0.397043,0.862041,0.120019,0.838346,0.678567,0.659078,0.0689793,0.556711,0.0501052,0.944301,0.622043,0.393073,0.231058,0.947153,0.145954,0.438144,0.871848,0.0750293,0.215433,0.509486,0.882771,0.331858,0.354644,0.461361,0.561019,0.954529,0.673631,0.0578669,0.546064,0.344603,0.31738,0.287461,0.965446,0.892098,0.422113,0.276926,0.150774,0.537439,0.0586934,0.336347,0.59757,0.315442,0.606025,0.323984,0.368458,0.84384,0.674348,0.937655,0.977527,0.198973,0.206994,0.765007,0.305061,0.614068,0.598912,0.861582,0.39934,0.345282,0.590575,0.721092,0.648236,0.700641,0.714106,0.415144,0.443159,0.39891,0.702879,0.660099,0.806871,0.366304,0.724045,0.992279,0.527036,0.825876,0.349765,0.267595,0.448616,0.78298,0.248924,0.560041,0.382467,0.878108,0.313074,0.419664,0.657503,0.168027,0.0584617,0.643203,0.0851765,0.127737,0.402583,0.593619,0.504359,0.221378,0.501671,0.365937,0.715533,0.760256,0.0665028,0.870567,0.284196,0.125979,0.748688,0.107009,0.503399,0.602754,0.917879,0.691804,0.125932,0.093326,0.0850859,0.547913,0.363277,0.732158,0.220661,0.816587,0.644455,0.858861,0.187304,0.305614,0.00781316,0.0216244,0.364699,0.542422,0.620015,0.491617,0.194705,0.26173,0.974307,0.945103,0.762823,0.606205,0.752023,0.541206,0.963415,0.689402,0.526389,0.676765,0.942029,0.682184,0.238704,0.832017,0.365642,0.487308,0.774202,0.183792,0.94084,0.578271,0.59475,0.130435,0.0612814,0.235603,0.363088,0.0838179,0.916739,0.55719,0.593701,0.485043,0.316715,0.679351,0.871331,0.0588028,0.966763,0.0760225,0.666207,0.00514245,0.876911,0.383543,0.972729,0.281686,0.632518,0.801196,0.661879,0.85886,0.201173,0.839832,0.710113,0.26391,0.883347,0.576514,0.344995,0.992523,0.252623,0.236127,0.531552,0.906153,0.101222,0.928944,0.758619,0.820813,0.912678,0.39103,0.583654,0.00228357,0.674277,0.444349,0.519292,0.628093,0.627239,0.976833,0.138839,0.432653,0.102641,0.747327,0.0026263,0.922204,0.101389,0.214953,0.493467,0.260556,0.225553,0.388648,0.534215,0.149596,0.0444516,0.858171,0.35065,0.97119,0.715399,0.171103,0.750188,0.374523,0.0558734,0.0446587,0.323735,0.0599852,0.503752,0.092084,0.580377,0.960875,0.840163,0.0734132,0.703703,0.14138,0.960221,0.0997954,0.0326394,0.869062,0.467783,0.677968,0.392954,0.850696,0.127571,0.503527,0.25069,0.512026,0.981085,0.119594,0.560544,0.216493,0.864953,0.0985371,0.762208,0.705971,0.622354,0.898127,0.982125,0.228485,0.436195,0.899026,0.443221,0.246015,0.112,0.444016,0.628279,0.529844,0.364318,0.80913,0.946044,0.00450063,0.585504,0.97207,0.844628,0.263828,0.335912,0.0915227,0.362213,0.0906085,0.67655,0.344493,0.0302625,0.936284,0.758369,0.282678,0.250502,0.903074,0.779865,0.876746,0.312078,0.278704,0.639523,0.232821,0.888664,0.47404,0.0449433,0.95774,0.222915,0.474353,0.695756,0.62981,0.963223,0.208358,0.189341,0.642581,0.746363,0.259755,0.383284,0.176429,0.249334,0.868458,0.278273,0.468929,0.798405,0.853522,0.698772,0.537643,0.510849,0.587521,0.726647,0.515092,0.742433,0.139504,0.0120639,0.687764,0.596275,0.402236,0.89655,0.262528,0.569502,0.0995156,0.825633,0.505399,0.0592095,0.0496005,0.489307,0.841915,0.163154,0.697258,0.350122,0.981594,0.840263,0.207588,0.543312,0.962502,0.995358,0.990392,0.205619,0.793116,0.313689,0.187521,0.583816,0.862931,0.291417,0.489233,0.882475,0.53204,0.487267,0.0302907,0.488571,0.00564617,0.495611,0.116301,0.509876,0.216517,0.982949,0.234674,0.720914,0.755956,0.239426,0.233453,0.338522,0.527865,0.844863,0.685717,0.387976,0.626883,0.684195,0.658079,0.0753785,0.11752,0.42289,0.366585,0.140398,0.254537,0.128034,0.0764912,0.664896,0.774709,0.88868,0.647435,0.817534,0.0963913,0.146768,0.178889,0.930409,0.143042,0.839593,0.347882,0.549822,0.377136,0.989757,0.285428,0.555923,0.402194,0.0454366,0.686137,0.692018,0.867078,0.42677,0.0467817,0.93432,0.739106,0.395051,0.439014,0.112215,0.430177,0.0540354,0.986604,0.0141746,0.0652878,0.217842,0.721029,0.903987,0.0499718,0.603595,0.977695,0.00407422,0.0901608,0.521848,0.540278,0.0990277,0.129031,0.596967,0.113899,0.887339,0.40056,0.203118,0.948738,0.259613,0.608684,0.917245,0.410174,0.739623,0.511562,0.988176,0.594538,0.158613,0.934588,0.521056,0.572426,0.550811,0.0289733,0.393297,0.364847,0.94186,0.829315,0.310503,0.311273,0.768721,0.0443319,0.606178,0.609876,0.165117,0.507796,0.201197,0.805321,0.328192,0.74527,0.660742,0.10276,0.384285,0.0973332,0.920985,0.158384,0.626837,0.724917,0.460244,0.748227,0.537737,0.593043,0.024083,0.881995,0.947059,0.00617337,0.522365,0.0549612,0.39231,0.561907,0.891437,0.581721,0.329844,0.664789,0.0291029,0.854897,0.427981,0.42091,0.373129,0.880287,0.749263,0.827991,0.29786,0.818823,0.794605,0.00487345,0.119226,0.528695,0.871223,0.975409,0.350759,0.412939,0.153667,0.324174,0.404654,0.993794,0.568276,0.946906,0.236955,0.393549,0.113803,0.489479,0.379379,0.0721564,0.165889,0.171393,0.891342,0.491234,0.852558,0.106848,0.677378,0.00335693,0.500208,0.297347,0.570759,0.0873873,0.343588,0.573715,0.0438886,0.667854,0.746478,0.509916,0.899772,0.576914,0.520324,0.808683,0.411507,0.00837958,0.209831,0.79698,0.527205,0.518892,0.728962,0.077872,0.650964,0.014163,0.863475,0.0657911,0.694473,0.151621,0.439002,0.810661,0.26492,0.0135543,0.990117,0.0152221,0.862156,0.494501,0.248644,0.803395,0.299196,0.293732,0.228252,0.0397785,0.502715,0.99942,0.293876,0.0576813,0.121647,0.850128,0.937774,0.460146,0.718622,0.401895,0.83613,0.520459,0.101818,0.277054,0.297389,0.930248,0.8167,0.132391,0.343179,0.696692,0.0864317,0.622846,0.413339,0.730928,0.535666,0.74011,0.592069,0.345141,0.524571,0.164521,0.111855,0.662901,0.131741,0.47378,0.35757,0.441115,0.932334,0.561923,0.903495,0.200494,0.880286,0.523402,0.0760269,0.204711,0.169728,0.502489,0.951709,0.368201,0.935084,0.432952,0.315225,0.758816,0.302123,0.304744,0.437205,0.31542,0.0154076,0.734846,0.0952196,0.539645,0.488001,0.398751,0.187742,0.970392,0.846101,0.405631,0.433008,0.120987,0.132853,0.00629687,0.84822,0.707255,0.113264,0.0878065,0.485781,0.546505,0.621939,0.489047,0.153327,0.35173,0.231213,0.840526,0.95114,0.612382,0.108219,0.632779,0.606179,0.613544,0.724491,0.964113,0.955953,0.398879,0.458491,0.130962,0.248468,0.930571,0.74682,0.94619,0.534881,0.094793,0.775785,0.289726,0.208771,0.786492,0.791595,0.099523,0.309895,0.235459,0.893328,0.201392,0.506954,0.43921,0.523228,0.206399,0.182078,0.0523797,0.151404,0.695155,0.157409,0.655906,0.182913,0.660038,0.564955,0.746011,0.315948,0.66683,0.918844,0.329534,0.681649,0.432611,0.0901989,0.0233545,0.327645,0.197787,0.528718,0.918999,0.913369,0.44795,0.165049,0.657076,0.562758,0.922295,0.0797789,0.915509,0.573062,0.163547,0.315055,0.844159,0.134602,0.407616,0.18801,0.539888,0.713804,0.21453,0.609993,0.306367,0.880491,0.477828,0.457415,0.512996,0.83291,0.0463287,0.876878,0.17474,0.023026,0.47684,0.424954,0.263412,0.353753,0.385892,0.965302,0.0635117,0.896348,0.565139,0.776179,0.100527,0.407153,0.255107,0.499767,0.348497,0.637123,0.205922,0.188818,0.708229,0.557875,0.71149,0.137553,0.147499,0.64671,0.224924,0.326419,0.615994,0.399767,0.567622,0.0122971,0.115355,0.929799,0.962471,0.103895,0.418624,0.670619,0.66806,0.786132,0.893564,0.249301,0.942331,0.661651,0.408811,0.849529,0.659084,0.836865,0.768926,0.992561,0.262327,0.820618,0.175147,0.367803,0.343767,0.0471616,0.19834,0.124455,0.824895,0.878401,0.40772,0.703315,0.695547,0.150128,0.529691,0.266586,0.836703,0.906027,0.552724,0.0481563,0.700128,0.730258,0.330731,0.443243,0.861471,0.846364,0.199909,0.118457,0.392587,|0.0825221,0.978572,0.543685,0.95954,0.00430769,0.807501,0.923039,0.781223,0.858898,0.776734,0.686363,0.276884,0.991019,0.84726,0.577582,0.179969,0.0862024,0.770878,0.684302,0.0876251,0.438056,0.852295,0.839906,0.420124,0.214361,0.132506,0.739868,0.192254,0.553198,0.479224,0.603321,0.608303,0.540274,0.260993,0.571362,0.673185,0.921723,0.117364,0.10929,0.648369,0.541424,0.510498,0.170798,0.422813,0.0768205,0.805409,0.767135,0.8384,0.22639,0.0297819,0.373257,0.381588,0.856315,0.286045,0.14922,0.5767,0.988531,0.0949733,0.207182,0.710163,0.38653,0.714925,0.920516,0.0230559,0.0633494,0.796946,0.308339,0.964101,0.604436,0.995808,0.769602,0.519982,0.941717,0.774391,0.0256457,0.804649,0.912309,0.368532,0.900699,0.472783,0.656079,0.506779,0.8947,0.184603,0.554221,0.633134,0.823708,0.811621,0.842156,0.696755,0.392009,0.0756122,0.28736,0.580219,0.889529,0.437783,0.672059,0.465065,0.730237,0.890144,0.961062,0.429717,0.943465,0.547081,0.0938022,0.0776235,0.64005,0.783603,0.188186,0.926383,0.750055,0.482589,0.301648,0.358988,0.85154,0.268923,0.729982,0.506158,0.375095,0.0302167,0.443119,0.674839,0.949475,0.421921,0.47921,0.00361842,0.375895,0.172174,0.545829,0.0526482,0.838111,0.801747,0.657387,0.358705,0.391712,0.804628,0.0628631,0.418516,0.0181323,0.210384,0.579743,0.618194,0.371738,0.581374,0.718365,0.639802,0.0672325,0.523449,0.242836,0.385402,0.955701,0.940103,0.0992069,0.257714,0.439699,0.887954,0.576688,0.203624,0.385583,0.523484,0.731106,0.641838,0.853607,0.539053,0.293049,0.727369,0.232274,0.952756,0.459002,0.915831,0.528802,0.69482,0.857121,0.246386,0.442386,0.652689,0.367822,0.91712,0.289497,0.241397,0.474827,0.0381123,0.0107616,0.662526,0.877348,0.0172915,0.230405,0.778856,0.538387,0.186186,0.276621,0.623702,0.479726,0.0394313,0.694825,0.587867,0.111694,0.599963,0.258663,0.457238,0.897741,0.304198,0.265764,0.257335,0.777731,0.75915,0.77405,0.960462,0.373584,0.590606,0.678038,0.328351,0.963112,0.825651,0.423824,0.250459,0.71344,0.817149,0.654823,0.567138,0.430217,0.362881,0.466416,0.697598,0.213348,0.207034,0.222466,0.828714,0.537392,0.276042,0.356427,0.0020172,0.142695,0.624776,0.635301,0.731317,0.525689,0.0151007,0.821218,0.980769,0.683164,0.134433,0.174862,0.449959,0.523754,0.577127,0.54309,0.851756,0.0933018,0.768994,0.0888169,0.557985,0.446503,0.232505,0.119078,0.504091,0.550933,0.685545,0.917845,0.419551,0.593556,0.223701,0.547439,0.232124,0.0480626,0.567672,0.0375449,0.383875,0.895671,0.162951,0.382943,0.208083,0.00592005,0.624222,0.567772,0.221051,0.00476944,0.999217,0.228427,0.631913,0.377445,0.215367,0.769346,0.198991,0.0948924,0.93878,0.721003,0.801861,0.6648,0.859164,0.330788,0.801746,0.484667,0.588074,0.920873,0.354684,0.870918,0.661527,0.868188,0.135711,0.631151,0.863213,0.53303,0.502321,0.595922,0.481397,0.761686,0.867904,0.439568,0.350753,0.0561993,0.161301,0.363844,0.252389,0.544947,0.0347615,0.796962,0.38148,0.652333,0.27068,0.716012,0.748097,0.0647326,0.502949,0.0185295,0.737098,0.287779,0.544051,0.130133,0.547496,0.391482,0.283436,0.746835,0.0621108,0.16448,0.624178,0.247405,0.39749,0.947773,0.4695,0.102809,0.406271,0.909681,0.506914,0.103489,0.369911,0.392558,0.0977221,0.815978,0.624229,0.880316,0.249798,0.42801,0.29738,0.091,0.481503,0.237307,0.140279,0.542978,0.535576,0.744528,0.865416,0.325106,0.421345,0.773545,0.813017,0.270361,0.123624,0.290571,0.573457,0.0231407,0.37496,0.195657,0.204353,0.0584819,0.56928,0.177964,0.316618,0.102407,0.583721,0.373745,0.363987,0.248321,0.0551074,0.758127,0.243517,0.246648,0.932261,0.0166715,0.944965,0.404755,0.412988,0.092617,0.679579,0.386601,0.509808,0.337993,0.117065,0.402515,0.0970286,0.413344,0.469619,0.69779,0.166178,0.0557261,0.60745,0.481245,0.428441,0.0483764,0.485598,0.807856,0.951172,0.12839,0.198096,0.495288,0.457616,0.494844,0.415637,0.451301,0.586721,0.317792,0.799237,0.163046,0.984953,0.218787,0.103361,0.232037,0.426845,0.264319,0.223539,0.784423,0.741315,0.639229,0.477212,0.576095,0.388194,0.775526,0.72208,0.305486,0.589604,0.604084,0.527344,0.179919,0.619075,0.592155,0.896823,0.751319,0.720419,0.00547522,0.730214,0.130509,0.29294,0.372014,0.37121,0.490026,0.756847,0.672561,0.471575,0.811162,0.246603,0.980416,0.863258,0.80683,0.781628,0.404567,0.0992444,0.922172,0.00279385,0.53192,0.185473,0.234417,0.72489,0.377468,0.456665,0.674374,0.0543821,0.615486,0.448317,0.878662,0.236072,0.577365,0.37641,0.628083,0.61016,0.548307,0.219377,0.768288,0.607556,0.636529,0.0863608,0.729516,0.620366,0.40557,0.438102,0.979064,0.105693,0.203647,0.297965,0.368373,0.253525,0.827176,0.121228,0.323548,0.505147,0.219136,0.201035,0.7365,0.69624,0.464064,0.693452,0.117744,0.520487,0.35715,0.902463,0.996901,0.554811,0.489973,0.153605,0.284403,0.637735,0.470022,0.366546,0.507433,0.793708,0.458958,0.750363,0.343527,0.912426,0.403726,0.819687,0.913102,0.506786,0.714504,0.897871,0.709952,0.199978,0.183115,0.657354,0.584437,0.95062,0.174341,0.758848,0.135986,0.0199977,0.710604,0.889263,0.475157,0.607808,0.89844,0.658574,0.672171,0.417148,0.290516,0.729563,0.771793,0.996232,0.597502,0.221222,0.451286,0.676116,0.959696,0.86925,0.235097,0.055393,0.0776794,0.363583,0.912145,0.0274996,0.164927,0.780077,0.79662,0.689426,0.508839,0.224768,0.16872,0.0554264,0.511058,0.293805,0.359046,0.851906,0.674903,0.18684,0.190215,0.674153,0.40408,0.439948,0.0972139,0.737639,0.654506,0.540997,0.665297,0.0427197,0.662598,0.479534,0.708022,0.798775,0.725278,0.949164,0.306705,0.37692,0.191469,0.701683,0.474888,0.758942,0.863888,0.589353,0.599497,0.25911,0.542087,0.950737,0.65472,0.743209,0.324156,0.0248203,0.0966766,0.307792,0.192146,0.795583,0.422831,0.767724,0.67996,0.243649,0.665993,0.0292361,0.22705,0.901443,0.799583,0.698639,0.403454,0.690749,0.144172,0.424359,0.761,0.481836,0.725486,0.399683,0.933601,0.106751,0.229945,0.697096,0.685336,0.895911,0.950754,0.603859,0.995905,0.774544,0.526466,0.492772,0.181922,0.172299,0.0794963,0.4385,0.0139891,0.279067,0.26774,0.599808,0.608819,0.788988,0.915999,0.618826,0.969093,0.164159,0.634367,0.623692,0.740581,0.712113,0.785798,0.90338,0.877547,0.849925,0.34312,0.665768,0.120192,0.725041,0.601954,0.852513,0.0915409,0.146388,0.913549,0.207824,0.80393,0.420475,0.0168042,0.470597,0.854227,0.943237,0.457947,0.297046,0.507951,0.322421,0.621773,0.197801,0.181008,0.166416,0.753651,0.592422,0.476259,0.688122,0.551022,0.3509,0.101381,0.322531,0.14251,0.274995,0.0849131,0.873301,0.0975754,0.207968,0.0918533,0.291279,0.055575,0.712139,0.806474,0.546065,0.976341,0.883979,0.477834,0.304653,0.955014,0.461726,0.973125,0.786917,0.00588483,0.340294,0.155049,0.426631,0.465115,0.850526,0.562644,0.860863,0.522907,0.0158371,0.633514,0.585788,0.819413,0.280445,0.837408,0.241722,0.3036,0.731769,0.210101,0.326634,0.505337,0.28524,0.815012,0.835714,0.851295,0.282201,0.0737013,0.684333,0.601235,0.173256,0.59718,0.295983,0.394464,0.895391,0.166593,0.685713,0.911127,0.0703298,0.00421274,0.638796,0.386958,0.416612,0.669353,0.0187516,0.67706,0.847212,0.0373541,0.494129,0.493295,0.465167,0.158451,0.0792191,0.595934,0.754329,0.220037,0.526273,0.676792,0.907945,0.110204,0.872469,0.580868,0.806326,0.33004,0.394362,0.323375,0.361322,0.36844,0.169983,0.380903,0.0201827,0.26901,0.609924,0.430685,0.200482,0.185608,0.037291,0.0650779,0.826203,0.760941,0.31329,0.799875,0.342324,0.377726,0.0812246,0.0497509,0.846138,0.110105,0.650582,0.794376,0.789067,0.177051,0.789167,0.425187,0.666995,0.582682,0.94338,0.119973,0.415101,0.372323,0.365686,0.879232,0.815956,0.375995,0.685754,0.547766,0.992417,0.272406,0.555637,0.202634,0.00242269,0.0837866,0.126747,0.336463,0.796745,0.34997,0.387563,0.493232,0.829161,0.302584,0.200611,0.792818,0.283419,0.678342,0.381384,0.331748,0.291253,0.205365,0.504475,0.386348,0.561234,0.393265,0.828429,0.404008,0.846546,0.700435,0.38706,0.254151,0.261501,0.132999,0.783133,0.437192,0.663648,0.813896,0.839563,0.622532,0.470644,0.202832,0.343135,0.748385,0.501883,0.336037,0.642184,0.338251,0.516288,0.0392848,0.886864,0.476434,0.894148,0.0072611,0.45823,0.547848,0.273944,0.0376717,0.0415941,0.0986513,0.0847389,0.462224,0.00910765,0.223091,0.137766,0.124371,0.883841,0.792487,0.701877,0.502445,0.274956,0.806788,0.0832024,0.845308,0.939309,0.971445,0.154635,0.673406,0.673039,0.840082,0.944065,0.335227,0.172141,0.981157,0.851684,0.23989,0.698858,0.817581,0.604494,0.713587,0.647475,0.589173,0.572989,0.112796,0.343439,0.91362,0.922074,0.382447,0.321861,0.289279,0.65215,0.837922,0.795414,0.569137,0.378636,0.545451,0.384227,0.128617,0.835359,0.705114,0.756675,0.677429,0.876666,0.404656,0.94151,0.0191411,0.157868,0.930406,0.581707,0.69836,0.380218,0.514321,0.0272278,0.193471,0.969973,0.903122,0.793693,0.18935,0.677981,0.987792,0.239254,0.924119,0.218001,0.0304711,0.384785,0.423012,0.865188,0.0259882,0.885442,0.0283634,0.822036,0.345554,0.643231,0.333956,0.422516,0.108895,0.0739666,0.710068,0.486816,0.630447,0.234308,0.816049,0.0191746,0.0621803,0.187197,0.592409,0.0147703,0.172176,0.146936,0.860054,0.792306,0.108951,0.721265,0.746032,0.18496,0.95087,0.482229,0.0551729,0.219304,0.477816,0.926367,0.79464,0.57765,|0.513688,0.661203,0.703445,0.480422,0.870292,0.960414,0.292799,0.323008,0.248262,0.220755,0.0118452,0.530519,0.673711,0.913756,0.828425,0.96175,0.635533,0.245245,0.890459,0.598702,0.145573,0.509702,0.439539,0.241223,0.261086,0.698008,0.795741,0.292622,0.937106,0.910662,0.833527,0.807254,0.838583,0.239034,0.97731,0.680031,0.707809,0.94676,0.663488,0.870783,0.0294327,0.365216,0.515906,0.416772,0.20806,0.5428,0.697964,0.322745,0.205746,0.0411445,0.221576,0.853855,0.997022,0.766143,0.0226922,0.161164,0.831042,0.027905,0.189185,0.621523,0.0257343,0.688077,0.48542,0.801049,0.740707,0.313507,0.173186,0.85787,0.365392,0.0640428,0.411964,0.944724,0.87742,0.423169,0.138697,0.158423,0.896041,0.893141,0.100782,0.14241,0.648565,0.506747,0.220617,0.641385,0.558524,0.161105,0.299677,0.26497,0.0579194,0.429872,0.644216,0.779846,0.568545,0.394987,0.789901,0.877169,0.394164,0.0402296,0.513625,0.316322,0.399685,0.260021,0.231748,0.394319,0.425499,0.983728,0.961074,0.56594,0.360182,0.794389,0.153591,0.730187,0.278858,0.0790958,0.142963,0.893882,0.765462,0.964745,0.106006,0.196557,0.87844,0.205697,0.00331032,0.308168,0.741,0.924175,0.609719,0.24676,0.19285,0.237137,0.0658246,0.886893,0.924876,0.348963,0.496795,0.174095,0.681227,0.0611675,0.224695,0.204539,0.605764,0.458768,0.683857,0.241038,0.239178,0.316947,0.696602,0.687924,0.701214,0.447845,0.707943,0.402872,0.920519,0.115374,0.814278,0.0510757,0.884401,0.979049,0.480482,0.0190587,0.826776,0.248941,0.347027,0.547221,0.596497,0.0188441,0.136383,0.290464,0.928514,0.0790961,0.424755,0.948755,0.918165,0.949255,0.964152,0.440298,0.987883,0.0295716,0.339479,0.159478,0.441529,0.659964,0.754594,0.125089,0.16953,0.154813,0.577895,0.728888,0.510456,0.180656,0.597598,0.781236,0.174765,0.714387,0.0270694,0.44235,0.592027,0.771759,0.746385,0.198684,0.0241038,0.108838,0.00103903,0.718409,0.182426,0.341315,0.833619,0.202955,0.0429317,0.542276,0.110113,0.708214,0.236519,0.431363,0.206493,0.954348,0.712954,0.771092,0.844328,0.241457,0.260967,0.170003,0.696495,0.379147,0.966533,0.541256,0.788803,0.129336,0.850562,0.55838,0.106285,0.538934,0.250503,0.243584,0.162448,0.741738,0.335545,0.591998,0.727438,0.253913,0.800114,0.709624,0.010472,0.530555,0.240735,0.821786,0.595447,0.209625,0.377205,0.777831,0.14362,0.710838,0.80581,0.22786,0.811989,0.724751,0.361834,0.288512,0.460343,0.959235,0.49154,0.817754,0.536234,0.344211,0.0858254,0.704021,0.0261134,0.74854,0.286415,0.435692,0.802442,0.476318,0.812849,0.778343,0.536291,0.246583,0.63522,0.0313221,0.351404,0.195177,0.190214,0.786164,0.0687003,0.30484,0.175491,0.164024,0.985485,0.499927,0.417903,0.00749207,0.168929,0.895293,0.153699,0.0673746,0.142743,0.713891,0.0596576,0.0324565,0.107057,0.352143,0.868963,0.577059,0.818264,0.57445,0.971143,0.840436,0.0132416,0.135723,0.0842379,0.101005,0.485298,0.59075,0.784493,0.124039,0.295437,0.572123,0.400821,0.317836,0.0218028,0.682255,0.84702,0.544931,0.717943,0.871024,0.133642,0.474797,0.457368,0.596594,0.655567,0.195027,0.364292,0.551898,0.770726,0.825713,0.74213,0.231063,0.124496,0.354739,0.318793,0.989089,0.761934,0.0238069,0.955346,0.467368,0.229089,0.677094,0.571368,0.991492,0.674326,0.237332,0.299886,0.566424,0.43558,0.556355,0.281939,0.68408,0.276951,0.937004,0.813002,0.661048,0.750658,0.855755,0.0987993,0.503115,0.316416,0.878829,0.152599,0.111589,0.398255,0.48955,0.00155562,0.798327,0.881417,0.346436,0.465165,0.428203,0.88181,0.598924,0.336939,0.640815,0.510249,0.546967,0.975797,0.749637,0.504257,0.189672,0.842736,0.803963,0.555722,0.632326,0.109402,0.281757,0.347432,0.581064,0.69902,0.740675,0.663024,0.421031,0.419897,0.977781,0.019341,0.562048,0.708624,0.939773,0.905656,0.598568,0.0786891,0.123386,0.944038,0.600153,0.76866,0.955909,0.254336,0.805257,0.891178,0.200439,0.98101,0.239425,0.679149,0.249964,0.598539,0.832881,0.222374,0.757586,0.729174,0.700001,0.880454,0.417253,0.484457,0.647061,0.894723,0.921466,0.0254232,0.672508,0.582466,0.137099,0.077271,0.131753,0.287065,0.122454,0.0443501,0.318318,0.246194,0.19996,0.199439,0.481205,0.346754,0.100771,0.734125,0.587197,0.00764662,0.399591,0.258586,0.27077,0.337556,0.310062,0.574959,0.249821,0.0514007,0.948176,0.405033,0.473846,0.173692,0.369143,0.266131,0.106209,0.706488,0.879599,0.325825,0.435333,0.855908,0.156537,0.938392,0.575118,0.708958,0.233726,0.419976,0.997425,0.0129074,0.360159,0.667918,0.80194,0.427472,0.68325,0.989566,0.410795,0.658339,0.125663,0.586378,0.711334,0.675202,0.159321,0.342049,0.571225,0.0683867,0.27894,0.919661,0.0514801,0.0740666,0.361004,0.677032,0.52288,0.0470133,0.132782,0.300009,0.429616,0.836794,0.585857,0.279629,0.806062,0.996302,0.206494,0.222446,0.715056,0.262879,0.583881,0.591587,0.812766,0.965392,0.328684,0.070105,0.688731,0.579153,0.372493,0.983482,0.533829,0.585845,0.785837,0.705871,0.135099,0.757883,0.411548,0.45547,0.527611,0.157763,0.0667571,0.967418,0.16347,0.812768,0.85754,0.492065,0.221893,0.959478,0.168671,0.593529,0.606907,0.908544,0.516921,0.227344,0.615916,0.671109,0.179491,0.0363293,0.771005,0.775921,0.903781,0.0790379,0.808089,0.0271623,0.0151092,0.15811,0.759544,0.928945,0.819338,0.345309,0.891433,0.0258434,0.966302,0.356739,0.947144,0.250582,0.498856,0.398654,0.961711,0.502431,0.455675,0.353289,0.0302765,0.791153,0.957226,0.570306,0.441939,0.23947,0.504517,0.555213,0.55457,0.471444,0.165665,0.969418,0.751865,0.746837,0.0330743,0.578443,0.226663,0.0379927,0.952475,0.624918,0.720976,0.618134,0.920431,0.170023,0.962412,0.322384,0.99552,0.93612,0.759113,0.167377,0.0127614,0.845234,0.631513,0.287804,0.94358,0.436256,0.536378,0.557259,0.00885218,0.183461,0.669816,0.767498,0.593469,0.0832763,0.331025,0.234755,0.446228,0.0211071,0.0892894,0.800008,0.155281,0.386098,0.218041,0.862583,0.774601,0.625797,0.0471035,0.822311,0.839401,0.928511,0.459616,0.259825,0.723466,0.0797991,0.544327,0.674429,0.835049,0.802161,0.844317,0.976433,0.219641,0.759166,0.0911857,0.13321,0.0791436,0.0347655,0.29577,0.0160847,0.307897,0.0798342,0.81289,0.670763,0.0311694,0.813472,0.847883,0.388056,0.608654,0.370532,0.121286,0.829493,0.366694,0.485959,0.668336,0.499868,0.87712,0.509118,0.430252,0.0820767,0.568882,0.831199,0.0664437,0.219202,0.425077,0.842299,0.533524,0.460012,0.649987,0.847069,0.348482,0.845998,0.869937,0.223107,0.828684,0.046876,0.418413,0.922332,0.252156,0.0103559,0.785854,0.83136,0.0338331,0.046922,0.462926,0.858948,0.690732,0.962563,0.228317,0.77814,0.507599,0.811183,0.933518,0.965943,0.650954,0.641365,0.602303,0.559303,0.811972,0.425949,0.864213,0.111865,0.0806236,0.458057,0.0136068,0.424702,0.662098,0.666677,0.836511,0.998822,0.252011,0.0984777,0.118518,0.628531,0.459456,0.959573,0.286245,0.542382,0.832789,0.982673,0.641276,0.615854,0.870379,0.219483,0.190975,0.25436,0.899786,0.81705,0.361595,0.323269,0.354639,0.191707,0.10952,0.849791,0.515569,0.21176,0.577054,0.862958,0.0527048,0.678629,0.528675,0.419922,0.0511358,0.548882,0.0494921,0.768436,0.875787,0.531563,0.48239,0.836386,0.0201511,0.800125,0.624452,0.549949,0.617944,0.0292583,0.197244,0.628483,0.496464,0.709394,0.648669,0.588324,0.00125933,0.914725,0.0222887,0.913707,0.464681,0.584549,0.216287,0.277844,0.982007,0.641164,0.707534,0.280528,0.318791,0.968065,0.119694,0.75754,0.487,0.434091,0.622726,0.526009,0.896632,0.0993124,0.599891,0.667981,0.819955,0.259736,0.607651,0.272284,0.545395,0.985106,0.212524,0.343061,0.743011,0.317983,0.728471,0.180676,0.114676,0.872543,0.857644,0.0592241,0.803385,0.796444,0.508572,0.173106,0.526914,0.516042,0.0703828,0.779242,0.923745,0.39682,0.9522,0.153891,0.35724,0.828943,0.528443,0.514724,0.93489,0.818915,0.954013,0.0360413,0.55637,0.765154,0.5281,0.0382889,0.881692,0.291648,0.777421,0.596812,0.887619,0.675658,0.772183,0.99257,0.286536,0.422603,0.953323,0.3931,0.325977,0.152681,0.650324,0.624222,0.200537,0.537404,0.691527,0.558411,0.715522,0.223318,0.784219,0.371007,0.649673,0.194592,0.500883,0.448942,0.253705,0.526826,0.910246,0.322209,0.43413,0.0147449,0.0722879,0.0680034,0.499776,0.144723,0.840881,0.222558,0.859905,0.949862,0.992009,0.937205,0.29487,0.106609,0.181943,0.960607,0.237931,0.964172,0.294235,0.809825,0.0660757,0.585479,0.720022,0.294132,0.266442,0.149727,0.428817,0.168748,0.839184,0.174238,0.826418,0.574688,0.257822,0.70561,0.734064,0.649821,0.917493,0.76482,0.39208,0.0389764,0.105356,0.667069,0.357902,0.836465,0.0627963,0.446304,0.868895,0.990498,0.453435,0.367764,0.749946,0.204583,0.0835574,0.552116,0.239533,0.312794,0.654691,0.65665,0.279358,0.55624,0.896783,0.572449,0.749009,0.308626,0.957763,0.220696,0.324059,0.196968,0.975061,0.0816236,0.529639,0.709999,0.39762,0.0629056,0.797675,0.000496328,0.327518,0.0117197,0.656273,0.793662,0.577892,0.335066,0.415302,0.549389,0.910938,0.308212,0.729125,0.158413,0.377699,0.923382,0.897794,0.390394,0.693661,0.125511,0.233296,0.130316,0.951171,0.459705,0.173752,0.329185,0.279861,0.396347,0.498151,0.0873256,0.539991,0.26562,0.743051,0.785018,0.190526,0.372192,0.795683,0.0447803,0.143256,0.322893,0.820472,0.0538012,0.332749,0.402999,0.467502,0.252161,0.925687,0.116766,0.0543604,0.911418,0.602735,0.897021,0.642372,|0.605764,0.296836,0.918269,0.786915,0.0298336,0.143496,0.890549,0.441217,0.931334,0.994726,0.512439,0.213376,0.957673,0.0100996,0.0406818,0.921259,0.744033,0.961852,0.62451,0.811919,0.771098,0.4038,0.503003,0.578904,0.729846,0.481549,0.541059,0.497561,0.962904,0.757052,0.438923,0.275313,0.535053,0.371665,0.0351545,0.578364,0.610206,0.424468,0.971505,0.235276,0.72937,0.575173,0.491106,0.0358731,0.186491,0.717371,0.202019,0.515576,0.50552,0.694013,0.957475,0.907954,0.785087,0.323242,0.663669,0.849192,0.0747432,0.839086,0.261656,0.175168,0.910338,0.569322,0.983196,0.171431,0.698475,0.594706,0.856733,0.618604,0.661134,0.325197,0.428608,0.678151,0.353352,0.786181,0.149982,0.685881,0.476056,0.60667,0.782317,0.510835,0.47489,0.514944,0.821843,0.731633,0.815653,0.31716,0.412268,0.818182,0.67701,0.199931,0.177698,0.820503,0.324255,0.679588,0.923964,0.959862,0.184264,0.0726908,0.778295,0.163619,0.768515,0.943894,0.42588,0.146521,0.670666,0.792491,0.197363,0.723572,0.289166,0.417765,0.604753,0.80351,0.678832,0.0432984,0.931505,0.98963,0.723983,0.400374,0.323802,0.149695,0.365063,0.369463,0.827689,0.98639,0.273513,0.464578,0.487383,0.411398,0.697035,0.466846,0.24081,0.372466,0.643003,0.291259,0.871639,0.579129,0.766566,0.0180443,0.848676,0.841925,0.591438,0.672376,0.669608,0.364955,0.170584,0.452242,0.228545,0.595672,0.0888417,0.866874,0.887813,0.243217,0.917053,0.667965,0.68743,0.709482,0.236827,0.496211,0.845216,0.936598,0.0301564,0.0996342,0.486833,0.308269,0.333863,0.148713,0.600778,0.0908064,0.246769,0.731568,0.803737,0.0443937,0.261257,0.439481,0.109941,0.447334,0.171187,0.208686,0.366268,0.993335,0.952119,0.425022,0.900504,0.00113863,0.0569711,0.430937,0.188746,0.616806,0.493321,0.231104,0.473319,0.474469,0.84353,0.742224,0.04099,0.0786481,0.953861,0.986148,0.177083,0.297916,0.159197,0.60732,0.494874,0.496139,0.460363,0.345534,0.789352,0.792316,0.521707,0.739443,0.351643,0.301356,0.597586,0.271546,0.945573,0.20823,0.394936,0.463979,0.270627,0.526801,0.00260502,0.0372193,0.343592,0.793123,0.734948,0.488253,0.939743,0.336515,0.27357,0.629693,0.341226,0.905817,0.193814,0.270853,0.974511,0.103917,0.164946,0.509243,0.190591,0.316706,0.420616,0.0783443,0.553644,0.00757295,0.0646944,0.0748948,0.53959,0.284734,0.205193,0.0104787,0.909051,0.446688,0.429919,0.391763,0.317187,0.325199,0.345348,0.506759,0.916065,0.176419,0.667775,0.783188,0.0854458,0.805431,0.315102,0.708379,0.684478,0.721213,0.69008,0.383487,0.218582,0.0595841,0.0260318,0.192719,0.435969,0.980358,0.107552,0.557337,0.779889,0.654466,0.403821,0.5931,0.149338,0.313344,0.19235,0.553101,0.875697,0.507111,0.638985,0.276672,0.324415,0.272785,0.284388,0.87972,0.233259,0.613622,0.0239791,0.798877,0.251825,0.243274,0.375952,0.195978,0.636419,0.74962,0.100459,0.924648,0.276306,0.579235,0.577014,0.698615,0.818708,0.719124,0.55657,0.196817,0.477809,0.992122,0.719289,0.911761,0.526117,0.633903,0.73865,0.677813,0.514087,0.826094,0.0436811,0.407889,0.561835,0.361355,0.683633,0.396736,0.866085,0.205611,0.847164,0.910116,0.838547,0.0232534,0.243888,0.814284,0.476721,0.307792,0.778682,0.758422,0.946923,0.599507,0.36325,0.0104933,0.657047,0.0299063,0.0365188,0.326454,0.962094,0.258294,0.190371,0.385924,0.601791,0.81385,0.0093618,0.186013,0.432608,0.271276,0.165685,0.943329,0.481192,0.23311,0.123471,0.0541568,0.134271,0.175401,0.92961,0.33792,0.904836,0.769338,0.542484,0.191299,0.21837,0.228306,0.467359,0.495466,0.0217007,0.404877,0.518663,0.203281,0.246721,0.593359,0.221146,0.390038,0.942674,0.706175,0.313392,0.58671,0.713883,0.485781,0.960399,0.875865,0.997489,0.326549,0.890192,0.482004,0.601261,0.491022,0.952703,0.0666822,0.26876,0.935165,0.628316,0.0374483,0.560626,0.480251,0.245073,0.479619,0.548098,0.916287,0.355649,0.388108,0.234385,0.30005,0.201527,0.33112,0.810632,0.695632,0.965402,0.511125,0.0243028,0.0602393,0.0386546,0.902563,0.493031,0.66814,0.643868,0.505219,0.129238,0.91565,0.0843524,0.943156,0.0401092,0.179107,0.477155,0.119552,0.148256,0.573757,0.377475,0.111611,0.41945,0.153318,0.991535,0.622585,0.0599018,0.750615,0.667008,0.625076,0.557409,0.748914,0.24828,0.74124,0.212336,0.457738,0.975083,0.249388,0.901315,0.0180088,0.110779,0.569935,0.514334,0.171418,0.484975,0.589728,0.656783,0.510473,0.0164653,0.0571492,0.151258,0.0191408,0.217503,0.79753,0.660074,0.171165,0.553843,0.539077,0.240981,0.103927,0.355275,0.0539132,0.476564,0.821216,0.655319,0.8369,0.0852146,0.542822,0.2554,0.771542,0.0614219,0.711354,0.205501,0.416137,0.515012,0.813491,0.794694,0.00575346,0.20973,0.15428,0.652882,0.417431,0.499181,0.41413,0.473294,0.814593,0.264071,0.315083,0.397277,0.978337,0.891202,0.68805,0.498805,0.520754,0.964339,0.306231,0.145521,0.838268,0.677064,0.640546,0.93664,0.990257,0.91711,0.381419,0.788825,0.781029,0.571503,0.794263,0.625774,0.133022,0.137745,0.916675,0.149969,0.978032,0.923232,0.956648,0.111164,0.678814,0.641213,0.935871,0.784197,0.0668829,0.795618,0.726121,0.358986,0.106805,0.14458,0.538893,0.845623,0.815716,0.347072,0.751211,0.0648389,0.35692,0.468392,0.17883,0.886227,0.246785,0.746431,0.601298,0.307849,0.477237,0.606001,0.679654,0.0248651,0.545813,0.47991,0.304497,0.867673,0.177928,0.599799,0.312831,0.153025,0.611258,0.328525,0.612926,0.356793,0.719272,0.00697207,0.171102,0.656063,0.848098,0.802326,0.82825,0.778159,0.269955,0.317621,0.827526,0.384872,0.227301,0.36294,0.717712,0.136782,0.25313,0.682435,0.75692,0.686983,0.0828757,0.523693,0.345439,0.714514,0.442663,0.726458,0.121429,0.636194,0.903845,0.215218,0.0126175,0.0529687,0.42344,0.825083,0.104857,0.134407,0.874365,0.867904,0.77729,0.782581,0.623223,0.818671,0.120319,0.582979,0.964364,0.421147,0.0826917,0.605539,0.590813,0.522511,0.474324,0.588255,0.393768,0.308249,0.0389113,0.940285,0.889111,0.337169,0.970376,0.967791,0.704217,0.633816,0.294167,0.925216,0.37117,0.946299,0.739155,0.46144,0.394786,0.419775,0.36383,0.464721,0.310561,0.652315,0.533967,0.362587,0.109655,0.496631,0.936072,0.0693455,0.607965,0.520942,0.468691,0.967787,0.72506,0.129724,0.560572,0.349485,0.154869,0.0917013,0.780142,0.484109,0.390997,0.271518,0.0365378,0.0553777,0.911658,0.49511,0.555102,0.0282952,0.41996,0.258161,0.209543,0.563198,0.475181,0.767259,0.507762,0.175311,0.278502,0.993219,0.317851,0.976175,0.540002,0.761448,0.480466,0.79821,0.203718,0.170085,0.859526,0.977702,0.641384,0.15949,0.413149,0.310758,0.27471,0.30435,0.912167,0.233633,0.917947,0.11462,0.868416,0.865539,0.205381,0.122999,0.246676,0.239674,0.594955,0.344017,0.849709,0.691649,0.467922,0.904837,0.21164,0.449794,0.960087,0.411336,0.425013,0.534801,0.520926,0.550306,0.762633,0.924111,0.728842,0.793604,0.835386,0.756678,0.865406,0.844678,0.528127,0.461467,0.143081,0.893749,0.450671,0.495481,0.385399,0.611133,0.805465,0.849882,0.144254,0.314961,0.945768,0.519046,0.158061,0.494825,0.406983,0.423463,0.705205,0.543342,0.377012,0.851114,0.922248,0.680627,0.773014,0.856527,0.954088,0.268571,0.552521,0.756874,0.283012,0.855353,0.313688,0.392419,0.740089,0.636206,0.149771,0.537795,0.657495,0.220494,0.0926282,0.336583,0.736531,0.555191,0.363668,0.238928,0.88503,0.428306,0.241029,0.429006,0.317427,0.979313,0.714229,0.160466,0.54166,0.0927952,0.575463,0.276059,0.951647,0.600039,0.456759,0.588232,0.932808,0.877074,0.434276,0.669088,0.688836,0.344062,0.266222,0.90421,0.423254,0.677274,0.0756637,0.801457,0.122986,0.424338,0.157663,0.874368,0.77162,0.636491,0.569119,0.41312,0.061108,0.0464578,0.357291,0.328205,0.0187288,0.899822,0.109619,0.323641,0.946136,0.94837,0.779657,0.658984,0.85177,0.670173,0.212629,0.914421,0.36416,0.996634,0.153914,0.771342,0.735346,0.848345,0.592068,0.984267,0.554236,0.298104,0.954852,0.217035,0.454595,0.0685781,0.310958,0.985899,0.97667,0.291205,0.0376516,0.201086,0.649728,0.902945,0.902739,0.765023,0.30089,0.712014,0.980191,0.336578,0.393303,0.243739,0.742877,0.498346,0.446877,0.64814,0.676161,0.756615,0.968586,0.819959,0.42517,0.255561,0.311526,0.376631,0.0609081,0.227788,0.765913,0.884081,0.650461,0.67548,0.449821,0.146272,0.786804,0.155014,0.517958,0.927783,0.646468,0.573886,0.670071,0.37468,0.32511,0.082185,0.160666,0.144841,0.108504,0.740859,0.0738429,0.359614,0.421436,0.136604,0.68125,0.353636,0.376054,0.771494,0.234477,0.539756,0.270008,0.59309,0.000540912,0.456596,0.29893,0.821266,0.738924,0.908222,0.944076,0.285881,0.13694,0.0769159,0.146691,0.297937,0.0141085,0.0977716,0.400503,0.0304274,0.470504,0.635639,0.526765,0.55514,0.377119,0.958961,0.354411,0.473174,0.131998,0.0497416,0.722889,0.997901,0.914825,0.927257,0.220139,0.657148,0.0308286,0.173412,0.855511,0.203338,0.362483,0.0640138,0.501274,0.37781,0.797779,0.337901,0.384205,0.655237,0.57937,0.0288167,0.426112,0.550608,0.64051,0.0272654,0.53049,0.226786,0.146471,0.00898445,0.476066,0.838639,0.863439,0.729392,0.769303,0.934595,0.335509,0.664603,0.0517917,0.461908,0.0358335,0.0435309,0.521335,0.478769,0.754572,0.446266,0.332853,0.408447,0.952273,0.553444,0.346617,0.433185,0.683477,0.647557,0.245616,0.705667,0.724431,0.00944287,0.266806,0.0224512,0.688528,0.653921,0.914878,0.574959,0.85014,0.676027,0.417604,|0.545262,0.297019,0.469396,0.794528,0.213482,0.337526,0.63911,0.437935,0.66799,0.171899,0.524516,0.0884714,0.474533,0.37129,0.376581,0.445861,0.820554,0.966852,0.580402,0.253767,0.974698,0.472166,0.0558713,0.527283,0.268895,0.735537,0.626463,0.096476,0.92912,0.185269,0.457581,0.629366,0.863608,0.0698707,0.359478,0.456795,0.774156,0.832045,0.841834,0.424193,0.0165016,0.324883,0.53244,0.754638,0.182456,0.348154,0.0874783,0.474064,0.92506,0.594616,0.943194,0.0899855,0.370867,0.0830374,0.806729,0.398324,0.039968,0.951597,0.187412,0.753348,0.475954,0.545123,0.246475,0.654286,0.0908695,0.30074,0.915039,0.0587623,0.589228,0.948973,0.238334,0.744303,0.818964,0.336975,0.738417,0.529105,0.728538,0.597094,0.610328,0.307548,0.739517,0.824954,0.452638,0.398856,0.213126,0.65773,0.367727,0.439825,0.440426,0.571636,0.116221,0.206637,0.465936,0.483306,0.838643,0.525467,0.00835723,0.431466,0.990703,0.29423,0.2044,0.175872,0.970253,0.492877,0.703828,0.715432,0.555488,0.370273,0.551738,0.321238,0.530405,0.107276,0.429951,0.123055,0.126804,0.0922915,0.717758,0.889925,0.28888,0.223948,0.386654,0.806024,0.234402,0.441885,0.910627,0.958656,0.0553152,0.540102,0.927446,0.845459,0.411013,0.850366,0.105375,0.265474,0.413009,0.529505,0.813537,0.388277,0.680571,0.324575,0.445839,0.83812,0.533484,0.657548,0.8004,0.73325,0.250182,0.312134,0.48071,0.230838,0.200429,0.269564,0.98112,0.606873,0.459158,0.932513,0.472997,0.84522,0.398621,0.599449,0.630547,0.801851,0.20499,0.240316,0.106544,0.96823,0.277627,0.965153,0.455319,0.404208,0.232851,0.0124624,0.221711,0.686159,0.97799,0.31452,0.76566,0.0790626,0.393911,0.349531,0.132283,0.691163,0.3124,0.581354,0.298047,0.857316,0.56038,0.00242102,0.00134534,0.508208,0.520529,0.283693,0.97917,0.981413,0.756133,0.505133,0.405105,0.418747,0.63049,0.307273,0.244785,0.800021,0.567677,0.156412,0.943411,0.939166,0.960697,0.24846,0.456651,0.551418,0.0223732,0.141622,0.499016,0.949957,0.210024,0.597233,0.657609,0.563857,0.819221,0.837487,0.767967,0.310159,0.124445,0.906377,0.610896,0.548202,0.957984,0.0377973,0.170122,0.814628,0.228785,0.221017,0.222964,0.699668,0.445985,0.882584,0.321824,0.575627,0.0390774,0.178834,0.0382584,0.74119,0.839535,0.309628,0.313557,0.337584,0.773435,0.447313,0.0251575,0.200931,0.915544,0.730238,0.80594,0.918344,0.337746,0.909187,0.597202,0.136463,0.201605,0.901569,0.473441,0.338595,0.406431,0.324696,0.943155,0.217908,0.677959,0.437875,0.696548,0.229554,0.974135,0.67052,0.535762,0.910314,0.720339,0.851408,0.303867,0.821724,0.0593494,0.359611,0.363574,0.90011,0.850408,0.541028,0.555445,0.734132,0.0589004,0.95586,0.697927,0.532301,0.272744,0.803086,0.182792,0.312024,0.426051,0.32047,0.519954,0.763729,0.783132,0.819883,0.344808,0.476888,0.318261,0.997873,0.703177,0.0423445,0.62926,0.739497,0.0521734,0.179848,0.44503,0.991654,0.0776808,0.567246,0.925401,0.695261,0.544471,0.121398,0.581626,0.793649,0.702666,0.750199,0.698823,0.968981,0.405634,0.259142,0.35096,0.651056,0.749821,0.176744,0.527244,0.788824,0.514091,0.238548,0.630535,0.138838,0.604857,0.894247,0.759618,0.695264,0.32915,0.689958,0.938338,0.359159,0.777275,0.0242465,0.984188,0.158323,0.0659491,0.243467,0.732796,0.0880018,0.376948,0.155239,0.732785,0.0441285,0.458753,0.615435,0.755861,0.392091,0.804856,0.694242,0.700218,0.34655,0.626645,0.0696411,0.234514,0.0471928,0.214327,0.924634,0.631526,0.196739,0.312344,0.966027,0.445606,0.610463,0.434891,0.940023,0.509761,0.728781,0.554471,0.406918,0.388436,0.57927,0.945653,0.179667,0.463038,0.705304,0.747673,0.393019,0.859005,0.479746,0.415808,0.79143,0.045756,0.386722,0.3534,0.88836,0.15849,0.415097,0.981078,0.117457,0.788585,0.107326,0.781419,0.867906,0.362091,0.0925229,0.457345,0.68369,0.539015,0.74883,0.155239,0.559104,0.287989,0.275345,0.534381,0.388116,0.639851,0.40706,0.396515,0.659158,0.932228,0.79593,0.0562164,0.656874,0.148752,0.26686,0.449082,0.326569,0.77259,0.264855,0.412709,0.837561,0.704776,0.25063,0.826465,0.0819144,0.304959,0.636409,0.620881,0.300861,0.468721,0.256252,0.87609,0.398316,0.310904,0.142503,0.0896033,0.634884,0.501037,0.747733,0.688153,0.776962,0.940004,0.956698,0.401432,0.658717,0.3784,0.933547,0.0309439,0.290135,0.461257,0.409553,0.440937,0.886613,0.53277,0.57842,0.137272,0.530346,0.646719,0.0564318,0.07041,0.643123,0.13252,0.906245,0.213191,0.708455,0.417084,0.492792,0.356236,0.135906,0.611096,0.0343184,0.331949,0.918878,0.655257,0.878737,0.492422,0.0120604,0.393626,0.591097,0.343358,0.177465,0.439692,0.65776,0.465572,0.0399482,0.863415,0.520186,0.786217,0.207831,0.653464,0.657676,0.39451,0.844293,0.546174,0.982765,0.858348,0.834467,0.752169,0.437311,0.889312,0.630826,0.23857,0.8315,0.112041,0.934138,0.47977,0.29982,0.616281,0.689643,0.3285,0.914134,0.892946,0.959812,0.440306,0.414509,0.625467,0.336919,0.292926,0.688913,0.986167,0.360372,0.941692,0.936444,0.142996,0.109143,0.944542,0.616801,0.619475,0.115854,0.369099,0.307411,0.399492,0.831361,0.756783,0.920171,0.0239563,0.468164,0.259757,0.343294,0.0446537,0.126031,0.44017,0.249842,0.229891,0.904056,0.978363,0.245687,0.665244,0.878919,0.842544,0.559819,0.0980747,0.256097,0.999029,0.750353,0.971748,0.476773,0.855861,0.0179044,0.248852,0.93654,0.375197,0.958185,0.262086,0.0678962,0.90627,0.268688,0.586682,0.894046,0.230137,0.376061,0.307217,0.0576181,0.11077,0.46384,0.746344,0.887255,0.862428,0.712139,0.717743,0.355722,0.177024,0.52678,0.597233,0.108189,0.150459,0.339901,0.692543,0.329646,0.107507,0.900417,0.698746,0.968522,0.545111,0.206306,0.407963,0.610796,0.389757,0.458779,0.377571,0.705103,0.793173,0.514273,0.765005,0.198223,0.772507,0.141681,0.2414,0.201007,0.875416,0.513167,0.808764,0.406902,0.0399007,0.466831,0.879523,0.288517,0.519824,0.204615,0.653251,0.89381,0.5228,0.483352,0.928082,0.131128,0.769982,0.731397,0.362582,0.289904,0.215531,0.661543,0.620387,0.653498,0.401392,0.201093,0.788971,0.0187969,0.526253,0.0388583,0.664986,0.0861483,0.991659,0.0202482,0.0750673,0.925563,0.0657176,0.303488,0.876358,0.0139616,0.567021,0.946891,0.934007,0.45046,0.36435,0.333285,0.777263,0.0334313,0.301097,0.912383,0.190875,0.575371,0.644688,0.960194,0.850268,0.368267,0.851619,0.762241,0.472949,0.598222,0.069469,0.685545,0.0699382,0.272446,0.186168,0.797576,0.376811,0.238614,0.362986,0.68796,0.766221,0.770239,0.251268,0.0333589,0.612258,0.513815,0.103135,0.611088,0.136927,0.455287,0.0386969,0.318619,0.365797,0.218237,0.298978,0.364697,0.977477,0.232287,0.850234,0.272076,0.905464,0.038681,0.533345,0.922455,0.993161,0.406554,0.0229982,0.00500757,0.210233,0.930384,0.655751,0.303447,0.628494,0.761326,0.636694,0.445652,0.767348,0.220607,0.238197,0.513242,0.936549,0.914524,0.9032,0.496986,0.994541,0.0455518,0.97759,0.50632,0.20066,0.161629,0.163406,0.24351,0.562377,0.387163,0.127877,0.159369,0.0567518,0.00825238,0.224503,0.630372,0.25883,0.727045,0.353264,0.200535,0.301844,0.282415,0.837418,0.675291,0.576264,0.646882,0.198789,0.94169,0.248115,0.0144856,0.653195,0.550626,0.0438828,0.345512,0.8864,0.217993,0.11841,0.94522,0.302429,0.773293,0.551876,0.800584,0.396465,0.747814,0.478699,0.869535,0.063086,0.985706,0.425949,0.415886,0.369574,0.715916,0.0830913,0.736122,0.9898,0.0849787,0.63596,0.187587,0.803303,0.544392,0.142744,0.630192,0.851755,0.109104,0.310869,0.905757,0.180372,0.183511,0.753226,0.23499,0.873075,0.924933,0.968286,0.350175,0.150635,0.860651,0.548838,0.411707,0.729627,0.698043,0.923172,0.0447211,0.0965047,0.373183,0.987871,0.440526,0.264055,0.977521,0.413251,0.690685,0.466139,0.472244,0.0130238,0.0991735,0.847183,0.871858,0.925321,0.579659,0.757209,0.671334,0.172008,0.417994,0.585664,0.393466,0.0834552,0.932931,0.195121,0.507714,0.790851,0.332119,0.263714,0.511937,0.994635,0.511756,0.0246155,0.693179,0.664921,0.668545,0.188657,0.827087,0.868478,0.0855659,0.738767,0.404566,0.441757,0.290305,0.855247,0.76145,0.847219,0.678858,0.262519,0.783868,0.38388,0.935874,0.153359,0.0150655,0.811982,0.185623,0.66416,0.0105885,0.213747,0.112209,0.376138,0.509257,0.733644,0.845189,0.264763,0.628434,0.828616,0.5249,0.148315,0.195328,0.57069,0.739354,0.0301021,0.832955,0.123915,0.363886,0.0581223,0.568818,0.627032,0.576882,0.288254,0.553039,0.00130188,0.360118,0.72833,0.328486,0.795622,0.724973,0.992905,0.58331,0.356277,0.976142,0.866091,0.496734,0.176556,0.344101,0.366151,0.254045,0.516926,0.596757,0.0924968,0.433296,0.901667,0.348007,0.0833067,0.283211,0.656618,0.981747,0.0832585,0.799876,0.634252,0.205432,0.153645,0.560281,0.261722,0.342899,0.331828,0.314355,0.428524,0.901198,0.347388,0.46134,0.982896,0.294255,0.969887,0.798394,0.460015,0.380454,0.212797,0.383299,0.299002,0.130958,0.298472,0.844684,0.808009,0.811858,0.479152,0.301404,0.0435874,0.329608,0.383488,0.199536,0.0594494,0.223811,0.91925,0.23317,0.878938,0.900548,0.424164,0.825555,0.0882362,0.192845,0.0321662,0.689947,0.208664,0.788583,0.0679353,0.054582,0.807454,0.639929,0.233883,0.494849,0.651785,0.367772,0.777775,0.766874,0.616942,0.308719,0.50444,0.865945,0.12493,0.478218,0.453021,0.744056,0.796619,0.655588,0.150655,0.313028,0.556659,0.736789,0.74805,0.767377,|0.287256,0.901563,0.834222,0.823295,0.537034,0.880854,0.733034,0.611432,0.651612,0.0977376,0.0738207,0.566441,0.524171,0.276767,0.0489922,0.0154957,0.0221857,0.333692,0.110112,0.0838862,0.665261,0.252948,0.0317654,0.874587,0.481116,0.729774,0.187419,0.531974,0.0956911,0.774706,0.663599,0.629089,0.553537,0.884227,0.727753,0.58948,0.9286,0.168038,0.694923,0.267819,0.953469,0.608919,0.936263,0.354239,0.818576,0.555404,0.0693558,0.280404,0.721953,0.267812,0.682864,0.217199,0.543964,0.879978,0.258829,0.695692,0.747288,0.0482196,0.710672,0.129975,0.897853,0.355645,0.67193,0.402029,0.548574,0.888798,0.334097,0.0209898,0.496627,0.845668,0.67619,0.494423,0.350471,0.334795,0.0265372,0.0546124,0.0573251,0.24731,0.55538,0.46689,0.857248,0.0313125,0.198492,0.686133,0.66371,0.605416,0.788265,0.939447,0.593632,0.130402,0.444037,0.392594,0.00711602,0.566771,0.171104,0.247508,0.0392302,0.353405,0.0931944,0.930324,0.0992056,0.490668,0.45264,0.699574,0.0849935,0.755224,0.644926,0.572052,0.896525,0.644777,0.202851,0.0608554,0.659917,0.600217,0.329959,0.422647,0.405624,0.665745,0.656717,0.0562999,0.200186,0.577626,0.00350946,0.333088,0.378068,0.791244,0.176533,0.434163,0.783308,0.105678,0.558545,0.00710499,0.165494,0.792578,0.486393,0.504275,0.821519,0.400806,0.394116,0.556462,0.332879,0.857858,0.845096,0.722795,0.141258,0.420991,0.654267,0.122213,0.559097,0.719863,0.040679,0.273525,0.398854,0.497273,0.973992,0.911125,0.255423,0.278417,0.0638845,0.428114,0.0239522,0.831942,0.96715,0.721725,0.108549,0.724604,0.48495,0.914227,0.701214,0.224184,0.819667,0.602549,0.12416,0.528275,0.762603,0.3639,0.820951,0.627968,0.83931,0.00170851,0.258777,0.575302,0.574553,0.213877,0.422504,0.625123,0.811283,0.206948,0.520598,0.419589,0.842695,0.66033,0.601026,0.428814,0.360519,0.607915,0.325574,0.615564,0.332956,0.197389,0.606737,0.691548,0.731882,0.549209,0.575103,0.302183,0.980304,0.530162,0.495147,0.783561,0.155925,0.145634,0.365828,0.0312204,0.91423,0.745336,0.685043,0.530253,0.892511,0.503436,0.65971,0.577157,0.258495,0.911825,0.244514,0.111776,0.185691,0.703074,0.895494,0.462725,0.804467,0.762738,0.603974,0.538942,0.620493,0.375355,0.418617,0.533613,0.323261,0.638978,0.151889,0.0490284,0.0900378,0.907691,0.589015,0.883095,0.533525,0.457997,0.890702,0.731717,0.946468,0.420294,0.14891,0.922137,0.260256,0.501345,0.731112,0.952614,0.770221,0.320432,0.306717,0.499726,0.106176,0.882087,0.248663,0.212541,0.631106,0.504838,0.128655,0.959696,0.689662,0.872349,0.852658,0.495001,0.784539,0.241395,0.091625,0.877323,0.658865,0.636856,0.871749,0.344763,0.422022,0.435645,0.75828,0.58295,0.890823,0.448639,0.613165,0.885097,0.642904,0.734906,0.406028,0.424546,0.04879,0.66059,0.216126,0.234122,0.328808,0.817789,0.227116,0.549512,0.169329,0.360918,0.927986,0.627896,0.114996,0.902947,0.891889,0.768607,0.0354668,0.409801,0.352635,0.815163,0.860193,0.417987,0.165767,0.726943,0.969739,0.0134745,0.66332,0.0393506,0.189044,0.372081,0.651284,0.528406,0.577719,0.915177,0.465259,0.441744,0.673691,0.758136,0.0421926,0.333037,0.635793,0.689841,0.756553,0.823933,0.869328,0.947471,0.581784,0.60551,0.29583,0.399392,0.268895,0.0409874,0.855029,0.780195,0.159576,0.900924,0.329024,0.453114,0.820871,0.599693,0.00540739,0.8748,0.0454981,0.106448,0.142486,0.0226833,0.254659,0.960989,0.344344,0.700417,0.383992,0.804712,0.750848,0.24339,0.438169,0.596407,0.0103251,0.320813,0.937985,0.754002,0.498836,0.00295085,0.418624,0.845153,0.735705,0.501784,0.0063231,0.589898,0.628236,0.949266,0.532849,0.149746,0.950675,0.654778,0.0781509,0.914697,0.897074,0.368004,0.0166368,0.791205,0.615867,0.516851,0.964983,0.865536,0.655639,0.872817,0.557356,0.30012,0.367581,0.365489,0.503971,0.610886,0.166716,0.00153285,0.268683,0.95238,0.386899,0.422901,0.650225,0.0803762,0.672307,0.0867468,0.18608,0.186081,0.104659,0.0519194,0.468823,0.561559,0.978899,0.667737,0.303074,0.28271,0.949555,0.0365883,0.82741,0.74237,0.00918472,0.554452,0.104287,0.958116,0.671049,0.361758,0.328119,0.711935,0.971754,0.455146,0.923694,0.816205,0.303351,0.522594,0.540851,0.280786,0.397627,0.23594,0.326199,0.413677,0.558349,0.427963,0.623555,0.20179,0.520405,0.39036,0.280657,0.78445,0.987856,0.531043,0.660401,0.956577,0.559016,0.822029,0.258581,0.387373,0.820521,0.821347,0.249935,0.560832,0.448392,0.534324,0.633921,0.791725,0.445283,0.298833,0.18752,0.939351,0.791969,0.778198,0.869548,0.725248,0.824596,0.317264,0.824865,0.679526,0.30785,0.386921,0.261922,0.422886,0.477042,0.0158625,0.317932,0.826905,0.367011,0.688167,0.168467,0.209817,0.77455,0.884605,0.273078,0.369123,0.951832,0.780235,0.820694,0.359212,0.392447,0.189462,0.67156,0.724131,0.250226,0.471622,0.00883329,0.0698789,0.0727856,0.751499,0.112408,0.173058,0.679942,0.677746,0.289734,0.240617,0.482176,0.726457,0.0166002,0.801945,0.135609,0.795237,0.360485,0.323377,0.376741,0.0719484,0.627795,0.511777,0.743047,0.694602,0.128983,0.853963,0.811817,0.30695,0.264446,0.0956268,0.543243,0.311692,0.847436,0.953607,0.695549,0.607073,0.977693,0.640565,0.735247,0.15831,0.994392,0.103018,0.993517,0.323011,0.305728,0.849865,0.447551,0.72085,0.497704,0.856943,0.371848,0.318408,0.842679,0.351942,0.860766,0.999255,0.943146,0.745798,0.138392,0.771851,0.993237,0.0411146,0.872604,0.0485908,0.415769,0.591165,0.439889,0.472494,0.348884,0.0561392,0.618893,0.819682,0.803656,0.0350258,0.477803,0.742247,0.650049,0.433306,0.684594,0.543485,0.692857,0.685657,0.00101781,0.65638,0.492715,0.471483,0.780599,0.137914,0.312376,0.754153,0.334107,0.770416,0.278974,0.403719,0.0144593,0.95437,0.785881,0.889752,0.705516,0.140167,0.758452,0.643247,0.736437,0.650838,0.973573,0.123111,0.107519,0.249441,0.865988,0.330871,0.946397,0.54302,0.915926,0.25711,0.519723,0.64196,0.739205,0.884718,0.826057,0.306027,0.0567406,0.191206,0.0786265,0.521191,0.648318,0.803069,0.508045,0.37249,0.89987,0.0722916,0.166704,0.967333,0.646765,0.739446,0.68759,0.417463,0.0901334,0.238571,0.480067,0.681226,0.706881,0.867598,0.0057528,0.829564,0.0378323,0.188034,0.597562,0.00598431,0.0662652,0.946012,0.291831,0.828849,0.853329,0.0647458,0.975014,0.97932,0.698546,0.961626,0.481471,0.940293,0.397675,0.259281,0.601036,0.00218141,0.528748,0.719055,0.695087,0.724334,0.400739,0.653999,0.736943,0.295256,0.504001,0.935139,0.388362,0.360393,0.393739,0.919436,0.198904,0.983865,0.606593,0.146896,0.39476,0.352518,0.67913,0.15943,0.697445,0.544037,0.759924,0.845565,0.69422,0.0493916,0.776854,0.0443219,0.858142,0.812341,0.694084,0.132416,0.253952,0.272925,0.556077,0.0757756,0.425446,0.566201,0.192575,0.954086,0.151007,0.557009,0.514096,0.0991425,0.859823,0.409903,0.593023,0.716519,0.642598,0.408758,0.142724,0.509514,0.0452667,0.984552,0.59546,0.857824,0.305398,0.305756,0.579323,0.511144,0.164168,0.555192,0.0986775,0.360751,0.830163,0.0441973,0.689141,0.320602,0.485803,0.86398,0.0202489,0.523081,0.139881,0.851182,0.639661,0.809145,0.282583,0.791912,0.652322,0.279139,0.892952,0.0224586,0.728097,0.985095,0.0878259,0.642029,0.556421,0.786484,0.424885,0.172722,0.599658,0.194195,0.60705,0.250964,0.533041,0.572774,0.0275168,0.0250732,0.543385,0.912705,0.205942,0.588744,0.790517,0.850537,0.194032,0.160952,0.497523,0.0468387,0.809765,0.160076,0.685218,0.585472,0.630232,0.785585,0.955667,0.922849,0.208656,0.228016,0.935384,0.344588,0.723748,0.914429,0.574282,0.956824,0.434346,0.0343651,0.415957,0.621823,0.477614,0.637893,0.757131,0.45889,0.303758,0.493291,0.89451,0.00124007,0.971788,0.657679,0.726706,0.172303,0.291443,0.498572,0.173538,0.945702,0.747319,0.72121,0.590964,0.336148,0.0800259,0.819371,0.738833,0.921678,0.746531,0.0211675,0.123523,0.715293,0.455953,0.696897,0.858229,0.218606,0.654778,0.984316,0.792213,0.0672782,0.42201,0.0643618,0.159652,0.76724,0.291753,0.621495,0.776362,0.111665,0.502574,0.480843,0.478995,0.946671,0.273991,0.411466,0.442247,0.309464,0.648174,0.794677,0.321577,0.0799577,0.32037,0.329723,0.703362,0.203705,0.0594636,0.532264,0.371914,0.827536,0.696012,0.70408,0.266854,0.400809,0.062574,0.664107,0.666153,0.842027,0.439519,0.373967,0.630105,0.262204,0.322861,0.0565684,0.450323,0.508986,0.945166,0.617822,0.392012,0.24665,0.191282,0.303617,0.00901037,0.522698,0.571897,0.406343,0.55578,0.423243,0.606478,0.308924,0.850831,0.740146,0.513929,0.362258,0.98816,0.036478,0.390888,0.469747,0.936352,0.994854,0.666751,0.342464,0.658248,0.53316,0.654001,0.123593,0.870143,0.164149,0.876019,0.115321,0.425451,0.853681,0.10113,0.641727,0.182614,0.336566,0.0758879,0.752585,0.935832,0.0638714,0.251413,0.744295,0.891925,0.871495,0.862349,0.595392,0.0376891,0.729752,0.35126,0.883592,0.128177,0.842325,0.250467,0.769189,0.153584,0.597845,0.281792,0.37073,0.339812,0.957384,0.242373,0.737231,0.613425,0.840182,0.300789,0.732415,0.636678,0.488457,0.133032,0.469418,0.519992,0.967335,0.853475,0.110859,0.55222,0.0973701,0.218876,0.830467,0.360502,0.0929699,0.744941,0.780767,0.0138925,0.190116,0.148749,0.522926,0.404239,0.85729,0.383907,0.886994,0.754552,0.303424,0.0303143,0.86721,0.370621,0.758614,0.239797,0.850011,0.0526809,0.457989,0.499799,0.803063,0.0103952,0.444033,0.337358,0.129661,0.77896,0.765454,0.8891,0.708286,|0.631134,0.952921,0.609691,0.409411,0.173872,0.145487,0.996109,0.801459,0.594375,0.800049,0.0625573,0.265124,0.53954,0.543498,0.239445,0.614663,0.964009,0.863168,0.480854,0.836219,0.706858,0.420731,0.309378,0.0250331,0.267692,0.0449929,0.830831,0.0256037,0.409649,0.77543,0.563959,0.197138,0.748843,0.0273809,0.0115715,0.790591,0.814846,0.45877,0.194789,0.97964,0.899973,0.115663,0.0896789,0.298571,0.361867,0.140155,0.479203,0.0851393,0.662585,0.593851,0.513731,0.669379,0.0427883,0.440776,0.991257,0.00350958,0.540353,0.0471399,0.811962,0.554945,0.940036,0.865725,0.271314,0.453544,0.762692,0.316232,0.533523,0.94911,0.679271,0.122034,0.320006,0.3274,0.386828,0.928859,0.257159,0.0891986,0.649124,0.589303,0.729735,0.968694,0.0753423,0.0869393,0.73841,0.351199,0.50955,0.490898,0.731695,0.535281,0.240729,0.11862,0.691068,0.676165,0.737622,0.183784,0.0966878,0.535656,0.0143984,0.652387,0.55396,0.967264,0.424639,0.0725673,0.0568855,0.141909,0.125285,0.0908154,0.0504318,0.349608,0.0832288,0.62886,0.983929,0.232491,0.726474,0.0967311,0.39389,0.429047,0.940613,0.782881,0.165389,0.163904,0.573667,0.164721,0.446804,0.502885,0.0418639,0.722894,0.49969,0.633909,0.883161,0.365784,0.294814,0.514268,0.388279,0.971787,0.465618,0.63807,0.175967,0.69855,0.68338,0.455189,0.315136,0.315656,0.401256,0.729538,0.689392,0.0189673,0.914672,0.430314,0.176647,0.152717,0.740722,0.510024,0.0312589,0.247424,0.633448,0.0474384,0.41408,0.333467,0.376581,0.17815,0.515054,0.691476,0.49231,0.433579,0.675637,0.158459,0.0844743,0.946517,0.638334,0.761012,0.626849,0.728684,0.95326,0.545048,0.0846367,0.835034,0.619366,0.727206,0.680677,0.152192,0.289089,0.275491,0.435405,0.235456,0.540309,0.084825,0.620189,0.377882,0.147139,0.796548,0.642755,0.646042,0.219275,0.424505,0.815847,0.331225,0.2923,0.0165352,0.504468,0.240232,0.824587,0.312556,0.225118,0.264467,0.868778,0.156401,0.0791116,0.555436,0.737719,0.101943,0.0587732,0.870241,0.748231,0.96715,0.651041,0.186597,0.150269,0.516986,0.731188,0.920628,0.509903,0.69396,0.756773,0.25748,0.526643,0.965776,0.857492,0.124114,0.878812,0.276302,0.552149,0.737253,0.704341,0.426183,0.360671,0.393687,0.610682,0.205953,0.980725,0.693851,0.324212,0.928616,0.553856,0.0117393,0.938103,0.563395,0.663056,0.0336032,0.293028,0.877345,0.0428871,0.305596,0.483713,0.78287,0.0910719,0.677869,0.392418,0.971437,0.686374,0.0898447,0.515204,0.514591,0.463676,0.702399,0.415716,0.0571938,0.0830483,0.916217,0.835895,0.049314,0.0697102,0.146445,0.621001,0.377624,0.0423787,0.400174,0.733366,0.139054,0.471974,0.370016,0.0108986,0.844941,0.686857,0.988321,0.786182,0.925,0.366944,0.676999,0.27105,0.876436,0.711865,0.273731,0.282796,0.165562,0.146793,0.963311,0.650586,0.671518,0.196155,0.989583,0.742378,0.0159388,0.180976,0.564201,0.432958,0.677891,0.684044,0.635399,0.384944,0.810057,0.879864,0.790775,0.818301,0.331543,0.866307,0.446207,0.859286,0.739383,0.842855,0.982643,0.225702,0.907495,0.75541,0.335843,0.896664,0.0971804,0.245265,0.854907,0.38217,0.773355,0.997351,0.358126,0.580318,0.80621,0.543072,0.758577,0.225895,0.64803,0.818659,0.864336,0.805117,0.121043,0.423811,0.765548,0.00470787,0.163351,0.408045,0.19765,0.504146,0.130231,0.325501,0.205709,0.385627,0.116617,0.369526,0.981932,0.938344,0.343148,0.280847,0.432192,0.433068,0.354476,0.455536,0.112005,0.0317681,0.838508,0.683208,0.933975,0.892032,0.634517,0.537669,0.799333,0.883791,0.136063,0.996892,0.0950252,0.372651,0.621269,0.286117,0.0635986,0.548319,0.0727079,0.956928,0.701688,0.345383,0.811552,0.101622,0.714677,0.271999,0.0882966,0.661514,0.902094,0.915057,0.487478,0.843431,0.729447,0.174497,0.157698,0.488027,0.501689,0.587884,0.799095,0.546065,0.202924,0.219843,0.546175,0.398317,0.932503,0.903929,0.364803,0.917013,0.356206,0.334663,0.631567,0.0151383,0.636946,0.875964,0.7466,0.495411,0.917514,0.962995,0.580086,0.440235,0.274017,0.131689,0.855422,0.758889,0.447114,0.212053,0.370014,0.770215,0.460885,0.0470116,0.76515,0.899707,0.817666,0.0701467,0.297355,0.0441466,0.704077,0.937733,0.886428,0.0689682,0.877814,0.814715,0.0953221,0.882065,0.558012,0.0603536,0.196582,0.320578,0.0451046,0.775629,0.661332,0.439328,0.132465,0.567685,0.285191,0.0313548,0.553801,0.280656,0.560815,0.190141,0.975471,0.718154,0.181878,0.303123,0.505267,0.983007,0.771223,0.504184,0.38624,0.943911,0.815626,0.424641,0.592087,0.597514,0.180073,0.583099,0.788727,0.928736,0.636087,0.495175,0.23923,0.457943,0.494409,0.305296,0.927025,0.204349,0.678292,0.888837,0.289803,0.550856,0.252988,0.113754,0.611861,0.982508,0.234996,0.216711,0.760326,0.360949,0.624757,0.0189226,0.0608593,0.475169,0.791011,0.825066,0.19048,0.503535,0.0174114,0.518028,0.986854,0.459897,0.908951,0.61357,0.409415,0.957034,0.101052,0.157838,0.836962,0.335977,0.586816,0.218972,0.0505635,0.743924,0.21816,0.320998,0.910628,0.308251,0.606092,0.824335,0.750868,0.400781,0.584983,0.651386,0.453187,0.150903,0.146598,0.12628,0.190244,0.521819,0.0430026,0.747489,0.629353,0.864338,0.656605,0.4479,0.500274,0.754201,0.508182,0.596483,0.0192947,0.933445,0.931785,0.972044,0.383025,0.842099,0.143778,0.760359,0.200666,0.307397,0.215976,0.940871,0.506691,0.196918,0.564151,0.820761,0.784574,0.368682,0.258809,0.604629,0.955794,0.287003,0.709316,0.236963,0.0842494,0.656664,0.388511,0.882125,0.832367,0.377943,0.059347,0.702724,0.277991,0.516537,0.449777,0.420872,0.0465997,0.348724,0.142006,0.133511,0.621984,0.0844436,0.0207656,0.51721,0.697852,0.362714,0.489339,0.242539,0.09426,0.941254,0.64483,0.0883985,0.0473269,0.574637,0.251949,0.884956,0.95483,0.964691,0.540018,0.841332,0.134557,0.529826,0.0496239,0.226481,0.715528,0.265388,0.609743,0.970066,0.542806,0.981637,0.568741,0.796876,0.59715,0.14502,0.477012,0.627021,0.904195,0.441963,0.854622,0.52529,0.581942,0.864044,0.932155,0.734907,0.832496,0.354112,0.584078,0.365124,0.315633,0.115227,0.0505146,0.00793308,0.38485,0.632295,0.862794,0.653433,0.569848,0.351801,0.08832,0.277943,0.218212,0.293705,0.203325,0.635618,0.259759,0.255835,0.0949665,0.887326,0.236137,0.469675,0.0193842,0.271293,0.0885566,0.583736,0.721398,0.547517,0.890106,0.849557,0.331941,0.74813,0.63157,0.244055,0.684146,0.729068,0.0337474,0.63767,0.262431,0.688543,0.42114,0.802602,0.175798,0.640356,0.029097,0.702061,0.963635,0.681351,0.495867,0.132645,0.0648851,0.403357,0.616886,0.991593,0.178887,0.51667,0.46747,0.243933,0.877951,0.333009,0.876469,0.014534,0.81993,0.974557,0.906638,0.0236933,0.565216,0.619118,0.750954,0.405706,0.242387,0.283887,0.744994,0.702417,0.58099,0.0304883,0.779853,0.829786,0.0169308,0.910781,0.304674,0.271397,0.119761,0.246072,0.700558,0.635444,0.966149,0.0509752,0.907804,0.621176,0.488866,0.0792731,0.995325,0.522511,0.519479,0.819425,0.324709,0.134602,0.470538,0.475181,0.0873404,0.750118,0.968256,0.113679,0.129531,0.298155,0.813601,0.500735,0.206674,0.414602,0.723408,0.298956,0.0937131,0.602807,0.0979055,0.655711,0.385388,0.564813,0.519005,0.322377,0.567014,0.94207,0.181526,0.803994,0.423466,0.187364,0.887517,0.534797,0.466215,0.63264,0.953297,0.896077,0.393097,0.540041,0.656122,0.880204,0.17034,0.728385,0.221627,0.96203,0.931363,0.50948,0.376376,0.886799,0.46353,0.0946178,0.157409,0.921362,0.945541,0.170135,0.336688,0.405781,0.675942,0.101654,0.670297,0.541172,0.316447,0.209454,0.260418,0.0341151,0.213979,0.2897,0.970753,0.0256482,0.103523,0.910655,0.799456,0.982767,0.99013,0.805928,0.837242,0.612227,0.674277,0.58978,0.69923,0.192136,0.985079,0.121053,0.203249,0.0176346,0.577496,0.415798,0.588853,0.797243,0.850272,0.476482,0.517255,0.172199,0.759767,0.169823,0.777513,0.433068,0.946561,0.139646,0.484178,0.754124,0.116506,0.903595,0.345791,0.973473,0.446289,0.502382,0.878018,0.605962,0.57372,0.0341086,0.175037,0.542341,0.3478,0.0211441,0.823811,0.810892,0.976297,0.530725,0.770614,0.607533,0.654722,0.890899,0.364777,0.133548,0.386457,0.488916,0.209711,0.867764,0.740494,0.754615,0.311252,0.0390284,0.874005,0.587724,0.814729,0.285856,0.296155,0.294451,0.371945,0.992787,0.76877,0.427038,0.857794,0.448979,0.277205,0.157252,0.438327,0.703026,0.746206,0.573779,0.419736,0.20949,0.632734,0.34696,0.761832,0.629429,0.880323,0.452495,0.817495,0.410866,0.788619,0.429302,0.210599,0.586169,0.19865,0.902651,0.604752,0.426316,0.466459,0.923637,0.150275,0.117866,0.555793,0.989014,0.228,0.849118,0.928703,0.584125,0.866388,0.417975,0.985569,0.545852,0.593955,0.998106,0.438802,0.370688,0.811608,0.0496593,0.0508644,0.0644404,0.725052,0.957154,0.602123,0.46357,0.479317,0.443231,0.43804,0.0198392,0.862176,0.548553,0.800061,0.822474,0.279801,0.00172347,0.159825,0.313648,0.181189,0.301156,0.216144,0.280504,0.382746,0.923017,0.982412,0.606671,0.295614,0.429674,0.646512,0.100469,0.914664,0.921797,0.227106,0.701077,0.831705,0.163256,0.755405,0.861201,0.606702,0.146501,0.89694,0.970815,0.35381,0.123021,0.528653,0.508122,0.359777,0.967088,0.174874,0.488582,0.212638,0.837814,0.675816,0.726894,0.802354,0.188359,0.86147,0.785908,0.828834,0.326255,0.617105,0.433356,0.351504,0.144735,0.0461318,0.887779,0.188603,0.901509,0.483812,0.828887,0.271975,0.590259,0.811352,0.546646,0.986351,0.711331,0.950687,|0.516136,0.074303,0.926326,0.759601,0.630653,0.634888,0.600706,0.295088,0.625627,0.876982,0.119512,0.596249,0.992023,0.265065,0.344862,0.0668091,0.538022,0.0253433,0.590444,0.956523,0.290519,0.237007,0.624581,0.959513,0.642541,0.0864605,0.453071,0.298412,0.150577,0.29377,0.614193,0.860259,0.820755,0.916264,0.0472217,0.93434,0.486363,0.117683,0.531714,0.328994,0.0384506,0.871395,0.381497,0.808512,0.186096,0.552446,0.17688,0.49189,0.278788,0.795464,0.920052,0.167724,0.367342,0.413515,0.225618,0.837374,0.370306,0.116845,0.383199,0.888554,0.8968,0.800545,0.953779,0.878044,0.641333,0.747624,0.327822,0.816049,0.541216,0.971637,0.796207,0.992638,0.947732,0.654189,0.582659,0.455951,0.881177,0.433196,0.204781,0.254028,0.0649844,0.43004,0.586414,0.930465,0.665864,0.0797736,0.0660787,0.829195,0.260526,0.998639,0.0546632,0.43383,0.231296,0.834512,0.69459,0.41842,0.972385,0.872919,0.253186,0.34378,0.541283,0.463358,0.459433,0.643316,0.76992,0.208485,0.796055,0.322136,0.433936,0.923886,0.921753,0.701757,0.543802,0.357871,0.0305735,0.466475,0.0455803,0.957096,0.810596,0.737921,0.796681,0.942511,0.45124,0.0865429,0.219646,0.285717,0.864955,0.726036,0.133781,0.552579,0.63539,0.771538,0.0299697,0.0701255,0.463737,0.854751,0.818643,0.0968162,0.896685,0.295085,0.299191,0.752865,0.68498,0.425689,0.742146,0.628826,0.763963,0.733947,0.92642,0.383043,0.943371,0.108169,0.616458,0.368741,0.219964,0.0528204,0.171812,0.146231,0.530682,0.885927,0.740691,0.780122,0.117857,0.0367793,0.986803,0.275819,0.148971,0.496417,0.141322,0.156417,0.764353,0.422732,0.486466,0.820004,0.321314,0.735258,0.847301,0.453613,0.359814,0.617513,0.451225,0.55849,0.013808,0.132163,0.573605,0.947773,0.648201,0.292384,0.193983,0.586097,0.275127,0.0703207,0.944681,0.531716,0.812533,0.274479,0.853955,0.43306,0.757254,0.247328,0.107016,0.932472,0.58067,0.125754,0.208535,0.707303,0.584697,0.915916,0.0891885,0.733048,0.996685,0.506556,0.262394,0.178939,0.447751,0.0176992,0.85983,0.931101,0.783931,0.173988,0.420291,0.349026,0.122698,0.275653,0.214146,0.409501,0.891895,0.447036,0.134461,0.68129,0.618132,0.521276,0.260174,0.618009,0.932633,0.109309,0.621019,0.998595,0.973204,0.306348,0.467818,0.369435,0.0770342,0.623692,0.556407,0.382361,0.427924,0.186135,0.649262,0.873294,0.988349,0.308032,0.264182,0.0163336,0.0638245,0.0242791,0.255088,0.0829536,0.237921,0.158011,0.508233,0.820258,0.0335377,0.743063,0.394855,0.836685,0.98389,0.424541,0.210931,0.400746,0.138842,0.545497,0.683801,0.914691,0.590196,0.575017,0.745737,0.990325,0.129408,0.596318,0.504097,0.0877566,0.875239,0.0662539,0.317922,0.0204134,0.124683,0.556522,0.723032,0.278385,0.31568,0.406489,0.165286,0.838065,0.731004,0.548986,0.470818,0.604518,0.705216,0.36551,0.824855,0.793187,0.897334,0.195259,0.241817,0.948207,0.444838,0.655955,0.69916,0.790975,0.278391,0.837727,0.266596,0.0369927,0.551084,0.357691,0.831175,0.67181,0.633313,0.564354,0.721574,0.981889,0.510979,0.713591,0.398099,0.870723,0.925951,0.400196,0.38523,0.407484,0.299993,0.583955,0.921742,0.816103,0.809555,0.912674,0.152695,0.720885,0.642848,0.38598,0.734819,0.733024,0.98989,0.021449,0.280267,0.9179,0.448159,0.849185,0.712705,0.155684,0.318266,0.987124,0.428664,0.509033,0.633049,0.137957,0.0725788,0.352568,0.662172,0.00334394,0.799298,0.846044,0.196361,0.804472,0.128935,0.453042,0.302094,0.209674,0.944868,0.991048,0.788401,0.308466,0.259915,0.457056,0.666749,0.552684,0.411041,0.742305,0.936533,0.894905,0.0248528,0.656136,0.808288,0.905948,0.603877,0.212512,0.358742,0.24881,0.115001,0.969961,0.0147367,0.444996,0.91934,0.35429,0.987224,0.854471,0.331105,0.24466,0.30958,0.909261,0.269124,0.00684178,0.314535,0.576543,0.412918,0.394446,0.696155,0.0372921,0.983412,0.593722,0.130696,0.871877,0.756416,0.924041,0.838663,0.602763,0.0406621,0.313727,0.948923,0.010807,0.280942,0.433872,0.162258,0.198257,0.0688573,0.570305,0.413005,0.562966,0.739251,0.0785964,0.95176,0.0691954,0.568347,0.0566018,0.903348,0.733169,0.119342,0.154073,0.763407,0.166203,0.702226,0.560606,0.281191,0.550075,0.206729,0.205601,0.355425,0.329836,0.622558,0.637625,0.22194,0.422812,0.927925,0.0168923,0.87852,0.856145,0.108035,0.746861,0.651209,0.700646,0.186967,0.759664,0.388353,0.863737,0.939935,0.244781,0.231782,0.480046,0.907005,0.052361,0.842182,0.812003,0.440408,0.0354737,0.439503,0.731675,0.163442,0.183391,0.80465,0.964254,0.246109,0.665735,0.511593,0.617232,0.147675,0.838259,0.148591,0.380422,0.858978,0.206831,0.0546426,0.370072,0.158107,0.64155,0.723326,0.320622,0.721668,0.844951,0.701476,0.427477,0.758134,0.292624,0.777923,0.24263,0.406034,0.113786,0.0364155,0.645196,0.838686,0.639162,0.0249113,0.233889,0.575263,0.464919,0.373672,0.602119,0.392399,0.0147256,0.639037,0.674674,0.00407416,0.438591,0.239418,0.729894,0.993342,0.47257,0.0813586,0.558472,0.669009,0.57958,0.540701,0.645276,0.0855584,0.874706,0.304609,0.22359,0.125296,0.356199,0.744984,0.0341216,0.00153339,0.230393,0.997714,0.489227,0.153343,0.190295,0.503659,0.049628,0.0237059,0.650213,0.473163,0.192958,0.475228,0.329919,0.686983,0.641586,0.6105,0.580812,0.645815,0.226038,0.998868,0.576254,0.272672,0.140956,0.0580818,0.787125,0.86891,0.670062,0.541161,0.626852,0.38754,0.0662047,0.545523,0.449124,0.308036,0.0929202,0.302157,0.00137007,0.332333,0.0155681,0.677377,0.0235432,0.774914,0.191249,0.3219,0.804726,0.689107,0.207418,0.410937,0.176094,0.285289,0.228789,0.833735,0.1607,0.960243,0.981153,0.96051,0.56723,0.223998,0.117356,0.486469,0.372379,0.972227,0.0487517,0.583754,0.749398,0.744563,0.265933,0.641203,0.919317,0.775514,0.902014,0.950755,0.530376,0.768778,0.392049,0.319113,0.0389487,0.753069,0.829781,0.819402,0.272355,0.641562,0.510584,0.613757,0.418581,0.527115,0.561748,0.576358,0.0841993,0.15664,0.161438,0.293375,0.780229,0.96788,0.854371,0.796978,0.448774,0.688513,0.460912,0.0552509,0.895108,0.172004,0.891959,0.558401,0.495382,0.985965,0.804822,0.371306,0.118867,0.260621,0.0451155,0.955886,0.622537,0.00858861,0.950617,0.376534,0.420822,0.440443,0.600916,0.526569,0.525418,0.706396,0.281313,0.122943,0.197364,0.297601,0.400482,0.993598,0.400348,0.0151396,0.390791,0.91134,0.270196,0.433757,0.9301,0.196026,0.0725856,0.112999,0.462868,0.639071,0.365057,0.0838885,0.340853,0.770494,0.727143,0.752403,0.633192,0.0173594,0.986603,0.869478,0.266148,0.712401,0.445066,0.21572,0.139998,0.8153,0.52456,0.915431,0.7998,0.907553,0.859506,0.110169,0.78327,0.501356,0.971943,0.765098,0.735314,0.237139,0.371768,0.874697,0.454635,0.977524,0.137319,0.0640895,0.365957,0.842708,0.150218,0.90131,0.692411,0.553263,0.595903,0.230779,0.840223,0.74032,0.0444634,0.463322,0.0841745,0.995299,0.134095,0.0430181,0.970988,0.555719,0.34485,0.260963,0.823336,0.948994,0.979322,0.315351,0.614967,0.677891,0.170407,0.0332565,0.783813,0.148959,0.414835,0.81118,0.621909,0.790145,0.34839,0.747171,0.852119,0.681538,0.72135,0.623994,0.612288,0.567898,0.993061,0.301296,0.758605,0.173851,0.760866,0.239977,0.592759,0.558683,0.612751,0.386676,0.94316,0.784044,0.940563,0.34586,0.683112,0.363885,0.224328,0.72091,0.190246,0.424369,0.396281,0.11887,0.901245,0.435047,0.044814,0.196823,0.146952,0.551757,0.621381,0.363778,0.882571,0.781184,0.707181,0.502022,0.748582,0.469298,0.668092,0.919986,0.00446779,0.747833,0.198517,0.644531,0.585694,0.432828,0.216557,0.15087,0.835853,0.375941,0.137594,0.92189,0.741525,0.566667,0.295535,0.563484,0.270836,0.843698,0.115838,0.843911,0.0537735,0.846599,0.497065,0.034681,0.0719761,0.39383,0.868263,0.797637,0.86192,0.72441,0.179407,0.139424,0.071502,0.766246,0.688929,0.711892,0.856077,0.44079,0.343429,0.781885,0.508492,0.281596,0.315652,0.441436,0.306711,0.979941,0.518706,0.280201,0.909603,0.106897,0.117705,0.999587,0.620933,0.529206,0.682761,0.393169,0.737173,0.0227343,0.630601,0.477172,0.947269,0.773319,0.306444,0.396086,0.209419,0.751281,0.61119,0.309388,0.725086,0.279433,0.434736,0.684967,0.142175,0.932333,0.454399,0.691555,0.882992,0.244375,0.657388,0.381467,0.381902,0.967556,0.75051,0.617626,0.543978,0.614126,0.519853,0.847522,0.993111,0.940262,0.88764,0.832238,0.496041,0.439229,0.437693,0.900622,0.984699,0.988417,0.564399,0.58875,0.216561,0.146473,0.234747,0.566745,0.00549054,0.634719,0.273533,0.471357,0.830476,0.887743,0.378709,0.959358,0.527305,0.250711,0.945527,0.151125,0.544917,0.226771,0.431591,0.26197,0.0855951,0.720141,0.0417581,0.146145,0.505267,0.408916,0.4454,0.0900838,0.756874,0.603582,0.407458,0.788905,0.747522,0.322424,0.44386,0.200837,0.849164,0.217785,0.232091,0.953463,0.268921,0.218601,0.646926,0.359858,0.561354,0.373989,0.475229,0.490611,0.658583,0.535995,0.832709,0.931771,0.838496,0.687849,0.786758,0.00837493,0.26878,0.710214,0.397917,0.642118,0.556645,0.669296,0.601367,0.695316,0.666028,0.83182,0.0838147,0.289184,0.747037,0.85665,0.454599,0.339944,0.495324,0.573721,0.912178,0.990394,0.886104,0.932067,0.620502,0.961055,0.29631,0.535563,0.811907,0.603876,0.211956,0.588817,0.899008,0.56008,0.106798,0.191808,0.679777,0.813239,0.928528,0.617685,0.650254,0.257606,0.228153,0.410289,0.0187939,0.952656,0.454532,0.450994,0.342141,0.165473,0.432069,|0.197441,0.510727,0.370242,0.422852,0.174209,0.526115,0.495727,0.970979,0.958337,0.512363,0.332615,0.385957,0.507867,0.00603372,0.167985,0.111276,0.527477,0.0363212,0.264496,0.540563,0.792492,0.771146,0.950464,0.647696,0.147782,0.0904969,0.837362,0.817867,0.569104,0.2223,0.0231177,0.434648,0.491168,0.544349,0.899061,0.443432,0.959029,0.250339,0.0130721,0.517138,0.0674174,0.733976,0.152511,0.845321,0.468538,0.743243,0.989384,0.0282803,0.877773,0.215567,0.392742,0.000137031,0.113842,0.965599,0.798943,0.32,0.32076,0.458953,0.701066,0.214717,0.899202,0.671997,0.414245,0.190108,0.0970126,0.790843,0.578965,0.29996,0.0558317,0.815997,0.711389,0.229059,0.871985,0.968803,0.955939,0.859514,0.0222592,0.573928,0.247618,0.781668,0.303409,0.849635,0.79088,0.181661,0.416338,0.255037,0.498871,0.161003,0.861309,0.294068,0.914985,0.154809,0.984605,0.508979,0.515676,0.0211941,0.89031,0.720122,0.989896,0.717377,0.869427,0.404595,0.193458,0.170839,0.445219,0.556805,0.508473,0.790433,0.899641,0.20511,0.469508,0.888826,0.103887,0.0388902,0.530694,0.672893,0.879863,0.851001,0.67865,0.400059,0.397075,0.984419,0.0823178,0.91415,0.578713,0.539354,0.741871,0.910148,0.858786,0.653766,0.208131,0.754513,0.174217,0.670308,0.092482,0.961251,0.646124,0.567075,0.334704,0.282593,0.925748,0.82232,0.0275419,0.224426,0.568138,0.312627,0.592932,0.150271,0.726507,0.7869,0.499412,0.290301,0.556041,0.176375,0.0552786,0.657682,0.501893,0.88032,0.0528358,0.572573,0.549407,0.32496,0.0975152,0.0213802,0.830473,0.0812459,0.387082,0.570498,0.27668,0.768034,0.693001,0.349725,0.321437,0.0651429,0.195513,0.0523584,0.533763,0.342536,0.514352,0.358091,0.489634,0.10921,0.890923,0.0526446,0.593163,0.60067,0.591365,0.544776,0.532328,0.209001,0.00838792,0.403902,0.847595,0.970471,0.817538,0.738728,0.983592,0.302792,0.753888,0.639192,0.348117,0.868313,0.894869,0.329757,0.438254,0.360779,0.658527,0.807499,0.965684,0.138547,0.73338,0.683348,0.454445,0.366928,0.126694,0.845142,0.873924,0.0154957,0.886456,0.122162,0.0652336,0.962048,0.450508,0.314296,0.113169,0.0145225,0.428347,0.31428,0.26742,0.519512,0.410443,0.504497,0.265586,0.526038,0.155246,0.196536,0.833527,0.083461,0.151528,0.77537,0.0558498,0.211429,0.375568,0.554095,0.267574,0.209523,0.39273,0.608092,0.31432,0.489348,0.0871543,0.85498,0.616984,0.275841,0.177129,0.429629,0.147413,0.706974,0.999964,0.184963,0.770956,0.590029,0.747066,0.931838,0.385418,0.100353,0.673718,0.750396,0.255431,0.906719,0.0187601,0.315612,0.623736,0.917403,0.582394,0.158083,0.339574,0.738555,0.744764,0.576719,0.290417,0.0295137,0.71037,0.506346,0.205472,0.020685,0.0879422,0.138604,0.175823,0.477796,0.801733,0.833518,0.388405,0.952836,0.132698,0.366322,0.939149,0.90153,0.466042,0.156649,0.811694,0.869297,0.651506,0.101127,0.115221,0.205221,0.451857,0.882595,0.276883,0.102314,0.973023,0.74993,0.404495,0.434933,0.428978,0.98989,0.0593143,0.692356,0.688608,0.575575,0.670639,0.144906,0.0896016,0.536768,0.903826,0.22878,0.278434,0.615153,0.302917,0.294402,0.202426,0.679655,0.113697,0.557328,0.320719,0.893661,0.913555,0.0417387,0.188568,0.691093,0.773792,0.736418,0.371803,0.353948,0.111238,0.591614,0.683113,0.395853,0.617383,0.0486914,0.460696,0.581221,0.529757,0.897251,0.59235,0.395298,0.795039,0.747985,0.939093,0.412473,0.895846,0.0750693,0.252371,0.495882,0.625283,0.292443,0.710318,0.206141,0.348041,0.383187,0.84177,0.835219,0.163363,0.619338,0.0393837,0.465145,0.717021,0.706788,0.907469,0.404331,0.862001,0.909903,0.680313,0.158515,0.983095,0.340159,0.398323,0.675846,0.681737,0.797592,0.165747,0.429906,0.0773213,0.382176,0.103951,0.00298852,0.975445,0.506314,0.152876,0.324433,0.894816,0.284611,0.463014,0.530362,0.790936,0.867729,0.487218,0.132373,0.714539,0.801241,0.682538,0.841652,0.608562,0.907483,0.962474,0.668062,0.027805,0.665729,0.902316,0.142599,0.901263,0.0141513,0.525532,0.764937,0.365751,0.170319,0.636405,0.43026,0.829442,0.922181,0.605622,0.163716,0.230684,0.307627,0.409134,0.0679988,0.596882,0.724392,0.3933,0.380113,0.768561,0.858851,0.0845506,0.452494,0.583583,0.899983,0.648441,0.581131,0.643871,0.366378,0.536377,0.875267,0.457655,0.293707,0.106959,0.466505,0.547688,0.905092,0.975833,0.100976,0.0300714,0.359235,0.0367604,0.918953,0.346672,0.965742,0.0810131,0.607003,0.917739,0.73611,0.626122,0.41227,0.737885,0.476395,0.262253,0.858095,0.786092,0.685316,0.922519,0.596595,0.86348,0.503949,0.541528,0.490693,0.149205,0.606491,0.661452,0.798421,0.227696,0.602975,0.646086,0.367558,0.768188,0.794939,0.561125,0.614103,0.352956,0.60539,0.114355,0.303083,0.528847,0.228371,0.92807,0.671119,0.308472,0.543947,0.327093,0.493323,0.977723,0.761051,0.29074,0.674684,0.944158,0.587316,0.437442,0.934685,0.64741,0.453527,0.923477,0.202441,0.322532,0.657369,0.167478,0.592225,0.495498,0.949506,0.824832,0.849458,0.121554,0.623191,0.26128,0.0730244,0.524624,0.309055,0.00969654,0.61464,0.948217,0.762281,0.758035,0.478879,0.670781,0.39983,0.523052,0.765734,0.986461,0.726006,0.10067,0.363487,0.818159,0.180686,0.126589,0.145277,0.56311,0.435358,0.061344,0.0047093,0.905349,0.312823,0.614472,0.231181,0.187724,0.134492,0.635203,0.748885,0.748627,0.991896,0.379298,0.719689,0.832662,0.683315,0.219901,0.507064,0.826467,0.248095,0.690822,0.605102,0.218529,0.108352,0.548891,0.117965,0.0963235,0.500461,0.803611,0.792903,0.364083,0.51102,0.910284,0.915212,0.997661,0.0348405,0.134286,0.745475,0.721138,0.305822,0.0036552,0.793738,0.190449,0.7155,0.22269,0.0734364,0.473113,0.0949911,0.126143,0.136975,0.115006,0.695946,0.77318,0.729201,0.679229,0.204447,0.525896,0.583771,0.0329161,0.0378693,0.890683,0.737146,0.239681,0.680127,0.306621,0.512423,0.555297,0.305528,0.769847,0.881542,0.624755,0.0227442,0.900122,0.497658,0.187867,0.635029,0.408239,0.220155,0.418183,0.451929,0.146821,0.413715,0.9308,0.55361,0.457337,0.681219,0.791803,0.0425716,0.686521,0.794731,0.0661626,0.367167,0.00600696,0.00085628,0.173577,0.825195,0.389176,0.57677,0.516283,0.595646,0.315953,0.939937,0.406443,0.102382,0.200621,0.933773,0.801454,0.850042,0.835377,0.37035,0.0877226,0.220928,0.506287,0.0823982,0.277693,0.14884,0.120662,0.621737,0.513798,0.278881,0.0275759,0.440512,0.742726,0.168652,0.237889,0.259038,0.240625,0.52933,0.417921,0.0860333,0.169701,0.369753,0.289682,0.907556,0.450901,0.98779,0.822367,0.722179,0.393574,0.378883,0.452928,0.427506,0.137508,0.00189286,0.862015,0.820608,0.167407,0.231064,0.12121,0.203152,0.806022,0.55202,0.564086,0.0583974,0.0975301,0.607976,0.979262,0.568135,0.310368,0.808888,0.151175,0.371519,0.233381,0.338356,0.5054,0.697696,0.256776,0.0215806,0.753319,0.804331,0.625078,0.823268,0.652812,0.611785,0.630604,0.0839013,0.899422,0.710303,0.614238,0.0407559,0.745945,0.430378,0.158444,0.874749,0.7679,0.303365,0.634647,0.729072,0.077342,0.608899,0.662449,0.736957,0.605215,0.28047,0.2273,0.524292,0.295775,0.0955906,0.799697,0.358231,0.996813,0.807327,0.518751,0.78108,0.442777,0.118473,0.245532,0.197985,0.733821,0.750837,0.24004,0.101454,0.691538,0.163187,0.808043,0.976334,0.844554,0.807798,0.407646,0.358969,0.377401,0.476223,0.281482,0.810141,0.960304,0.262962,0.669632,0.296378,0.385796,0.360304,0.570183,0.465357,0.979607,0.0342301,0.739886,0.955792,0.496481,0.302007,0.0105524,0.267535,0.716977,0.795137,0.937464,0.965388,0.132868,0.912418,0.935923,0.959169,0.412618,0.41587,0.171701,0.551529,0.756355,0.620201,0.513947,0.511075,0.73725,0.179186,0.18674,0.715958,0.372563,0.0460083,0.73247,0.0115362,0.977985,0.28135,0.19857,0.387614,0.477285,0.640362,0.767555,0.934973,0.381027,0.794639,0.311701,0.622342,0.40091,0.817707,0.619495,0.292787,0.782535,0.0190035,0.217959,0.180705,0.402439,0.13844,0.386765,0.205167,0.331298,0.690099,0.00152647,0.452257,0.261078,0.380672,0.343823,0.977201,0.14636,0.766701,0.264392,0.469537,0.197632,0.463597,0.144978,0.768741,0.679171,0.157766,0.0570085,0.278885,0.25607,0.135604,0.295394,0.491048,0.204924,0.742446,0.547987,0.882055,0.653457,0.640894,0.918652,0.108822,0.901467,0.607087,0.860403,0.092708,0.841208,0.896715,0.582102,0.636428,0.896805,0.767472,0.833963,0.0578756,0.160134,0.607483,0.767676,0.228662,0.304342,0.218423,0.390658,0.147972,0.310738,0.765027,0.46954,0.756113,0.911022,0.822504,0.858496,0.0833665,0.704529,0.755375,0.780696,0.353803,0.0743044,0.513145,0.910649,0.911039,0.399609,0.718502,0.687012,0.924988,0.477017,0.921237,0.210581,0.237373,0.955686,0.239057,0.55167,0.0239694,0.787283,0.756427,0.782854,0.189086,0.43601,0.0563965,0.242583,0.817494,0.391425,0.699991,0.338734,0.320883,0.483186,0.683803,0.770137,0.623692,0.518018,0.40226,0.616763,0.502925,0.764844,0.675182,0.543491,0.56898,0.378608,0.179774,0.214535,0.713278,0.0409182,0.712236,0.291722,0.975684,0.125994,0.5212,0.233661,0.162628,0.474904,0.604071,0.474304,0.854191,0.271479,0.138322,0.735333,0.662433,0.484325,0.273814,0.188757,0.569218,0.307061,0.184995,0.906786,0.557094,0.103675,0.240393,0.529293,0.979771,0.912737,0.857214,0.122347,0.555692,0.894887,0.515031,0.398264,0.193274,0.725217,0.954064,0.271995,0.612564,0.760605,0.24107,0.147877,0.670363,0.997454,0.778054,0.734102,0.762687,0.933845,0.186985,|0.103516,0.818318,0.0877239,0.330444,0.317779,0.931757,0.476077,0.965627,0.648601,0.0580844,0.836516,0.844907,0.0422215,0.607724,0.791221,0.0234508,0.591347,0.289519,0.341315,0.347273,0.938289,0.729265,0.0803022,0.541935,0.808164,0.516823,0.915843,0.911619,0.528746,0.854737,0.857968,0.104182,0.77887,0.52293,0.893378,0.571161,0.251234,0.664251,0.0383751,0.333927,0.117596,0.603711,0.242627,0.554648,0.984354,0.285461,0.611827,0.428342,0.283963,0.636288,0.515862,0.528549,0.609674,0.792017,0.182907,0.106441,0.240993,0.811066,0.872773,0.659829,0.896657,0.700918,0.890281,0.423151,0.420991,0.573834,0.00879657,0.0764629,0.39114,0.180732,0.14683,0.896139,0.0795072,0.602686,0.148835,0.287105,0.0907849,0.418137,0.053392,0.0275706,0.337491,0.793572,0.578495,0.823645,0.431742,0.229162,0.961131,0.81297,0.583074,0.3909,0.0242576,0.74421,0.801632,0.00644082,0.578738,0.806685,0.496664,0.545838,0.675812,0.579935,0.699139,0.342079,0.178898,0.141023,0.134557,0.210297,0.907844,0.0295448,0.212228,0.0674916,0.0575338,0.527373,0.525089,0.258573,0.337039,0.404338,0.193599,0.614297,0.53292,0.271214,0.36884,0.919479,0.725769,0.195148,0.570454,0.64753,0.271537,0.0278733,0.992734,0.230466,0.595181,0.346396,0.887577,0.687495,0.141519,0.273252,0.829223,0.626803,0.143288,0.168819,0.586138,0.187802,0.284358,0.190796,0.542804,0.409275,0.590298,0.488832,0.393592,0.44492,0.301499,0.220009,0.0834277,0.572144,0.545547,0.586956,0.0669239,0.706381,0.500087,0.628662,0.808123,0.44302,0.809595,0.566225,0.2953,0.518583,0.308328,0.538515,0.367568,0.311263,0.87243,0.104417,0.147165,0.800753,0.893181,0.537189,0.165772,0.405133,0.971284,0.865471,0.120369,0.150884,0.776313,0.94398,0.982323,0.672723,0.770643,0.163516,0.0558502,0.197051,0.661232,0.664971,0.683739,0.851115,0.488567,0.701011,0.152688,0.371084,0.992198,0.659731,0.0362644,0.477916,0.102273,0.172403,0.55726,0.430447,0.879356,0.767489,0.603072,0.249598,0.999933,0.809747,0.175411,0.88958,0.845155,0.959358,0.189951,0.82065,0.231825,0.356641,0.42163,0.817722,0.369247,0.077098,0.957415,0.519667,0.292771,0.921917,0.363498,0.0423617,0.242754,0.513744,0.887278,0.642492,0.412287,0.709057,0.379363,0.881189,0.0184836,0.494908,0.463338,0.46331,0.346914,0.440168,0.16994,0.668353,0.426618,0.876333,0.599858,0.556268,0.631679,0.228587,0.34265,0.504988,0.793046,0.676275,0.11073,0.69183,0.727984,0.840629,0.156463,0.45627,0.897354,0.210828,0.561436,0.276151,0.244718,0.808203,0.572414,0.478657,0.906867,0.338679,0.496188,0.433718,0.33622,0.793225,0.218349,0.324608,0.781096,0.986826,0.345079,0.91089,0.288085,0.106415,0.176857,0.933247,0.635359,0.908892,0.431422,0.678192,0.0938692,0.0722383,0.770194,0.530645,0.14333,0.688916,0.707802,0.724581,0.639465,0.615113,0.650315,0.966372,0.803899,0.723324,0.189643,0.380472,0.518453,0.257883,0.951429,0.0151627,0.468513,0.883654,0.559844,0.905349,0.836275,0.0233874,0.329946,0.841767,0.209937,0.071522,0.602385,0.374673,0.835182,0.258266,0.307503,0.363709,0.999349,0.102481,0.0921878,0.724844,0.759153,0.85729,0.595829,0.268872,0.0284473,0.0441514,0.371023,0.0730603,0.207035,0.305864,0.786109,0.683697,0.228101,0.761334,0.790912,0.7636,0.723577,0.446382,0.321625,0.985052,0.674611,0.279746,0.0993748,0.227694,0.471229,0.167591,0.934105,0.911289,0.604702,0.73707,0.53182,0.930222,0.61638,0.727351,0.378409,0.192532,0.854404,0.318389,0.510741,0.565382,0.37148,0.0487264,0.474039,0.993533,0.157232,0.731538,0.371198,0.819934,0.149414,0.749661,0.535476,0.72811,0.0306939,0.11498,0.833213,0.0549061,0.505619,0.830516,0.908437,0.305887,0.898569,0.256066,0.236266,0.924142,0.333697,0.0738803,0.837473,0.901783,0.612875,0.904902,0.607026,0.738242,0.419599,0.766713,0.734253,0.994755,0.244167,0.69831,0.589788,0.767188,0.228484,0.895182,0.612896,0.313528,0.514983,0.641779,0.869848,0.932508,0.488566,0.0766478,0.612563,0.133842,0.203311,0.54678,0.773354,0.108233,0.396308,0.0796853,0.319132,0.559486,0.597889,0.256719,0.60621,0.86568,0.606053,0.464847,0.121209,0.873958,0.668312,0.302955,0.804833,0.555069,0.682564,0.218345,0.145172,0.427545,0.370925,0.25259,0.757811,0.808668,0.604838,0.0693066,0.877914,0.137775,0.0964125,0.0119942,0.32648,0.557538,0.986746,0.354727,0.110976,0.461731,0.45933,0.721845,0.139908,0.127304,0.700876,0.373457,0.601792,0.635945,0.805443,0.5207,0.841386,0.55096,0.142853,0.526713,0.108285,0.4104,0.579041,0.120348,0.379189,0.163861,0.499409,0.868205,0.348958,0.107991,0.342376,0.642239,0.690607,0.0329834,0.306648,0.395071,0.690468,0.854344,0.872886,0.986956,0.617412,0.386584,0.408352,0.643106,0.243223,0.968266,0.0454952,0.947108,0.173972,0.705414,0.356766,0.325551,0.560393,0.45533,0.0345056,0.103849,0.167459,0.657199,0.404223,0.588303,0.913606,0.216229,0.156316,0.0911127,0.632702,0.221125,0.961821,0.0350853,0.190609,0.254699,0.250378,0.500886,0.0216779,0.951903,0.738255,0.752304,0.692043,0.351817,0.763383,0.00510526,0.143772,0.272339,0.181477,0.487831,0.3565,0.615766,0.122059,0.899782,0.891587,0.671098,0.564377,0.812628,0.273649,0.449654,0.146133,0.586563,0.168685,0.0516068,0.741517,0.691662,0.062216,0.151432,0.719767,0.247985,0.178664,0.0802011,0.391517,0.26844,0.0754495,0.374764,0.336301,0.589554,0.738564,0.995254,0.127296,0.479015,0.786847,0.231154,0.23583,0.666483,0.157683,0.255551,0.478413,0.833173,0.0773126,0.610181,0.181464,0.930408,0.475845,0.206111,0.744286,0.461387,0.653024,0.00313264,0.61736,0.252088,0.328045,0.778128,0.658174,0.851383,0.724327,0.16926,0.769437,0.429423,0.462923,0.531036,0.62047,0.621535,0.0822239,0.892358,0.133406,0.593296,0.371496,0.720957,0.795726,0.832446,0.99112,0.527703,0.853197,0.503342,0.637867,0.907971,0.157185,0.968949,0.997358,0.357649,0.774225,0.306895,0.845943,0.825073,0.55985,0.412113,0.224104,0.327927,0.366444,0.748111,0.0409069,0.344851,0.010501,0.753271,0.422319,0.226342,0.25902,0.673143,0.572755,0.932894,0.688874,0.793345,0.40423,0.300419,0.354369,0.688388,0.193044,0.971578,0.744453,0.686241,0.209887,0.37058,0.989763,0.0622827,0.538154,0.813755,0.0998869,0.59203,0.0324233,0.472668,0.467569,0.979502,0.704157,0.091997,0.617948,0.938899,0.636082,0.08349,0.358334,0.796552,0.591932,0.653126,0.183083,0.574054,0.235059,0.690653,0.967878,0.364904,0.123043,0.497652,0.977794,0.333195,0.909656,0.729799,0.81814,0.670707,0.298213,0.739614,0.641844,0.797197,0.614631,0.0785115,0.373686,0.678889,0.0560697,0.582988,0.827427,0.375144,0.497833,0.224804,0.393743,0.643088,0.936047,0.750878,0.43039,0.325465,0.5227,0.37388,0.184511,0.00437832,0.0460374,0.4589,0.61764,0.457161,0.896967,0.057385,0.934065,0.571902,0.195953,0.53958,0.962713,0.600675,0.0178066,0.49487,0.767498,0.610238,0.459679,0.264873,0.375581,0.0107923,0.925533,0.144279,0.0224564,0.84629,0.539897,0.74129,0.675434,0.846997,0.795622,0.420716,0.327022,0.969101,0.76127,0.511888,0.933262,0.148084,0.215736,0.258156,0.799683,0.990818,0.824857,0.831164,0.459102,0.0220872,0.465643,0.0441225,0.388823,0.0425863,0.0293598,0.404024,0.444351,0.140848,0.527429,0.528857,0.595544,0.580339,0.491442,0.794467,0.590299,0.459855,0.947637,0.0961527,0.732202,0.85396,0.107055,0.660407,0.309398,0.832343,0.110664,0.560452,0.61502,0.643801,0.992672,0.888235,0.550074,0.677392,0.615715,0.616508,0.297513,0.999958,0.41924,0.216119,0.0114126,0.134079,0.677302,0.920164,0.0193969,0.176023,0.950369,0.754263,0.184311,0.79597,0.105055,0.472295,0.0852394,0.125708,0.563731,0.742019,0.485356,0.279607,0.702986,0.972478,0.402396,0.904713,0.601812,0.299,0.149246,0.453048,0.651814,0.565855,0.562048,0.0407922,0.127173,0.948452,0.910537,0.761627,0.862926,0.620219,0.850039,0.250319,0.288412,0.358086,0.294482,0.381571,0.233163,0.813535,0.157386,0.186027,0.547068,0.616947,0.0850157,0.0289938,0.507341,0.866824,0.76121,0.496086,0.836094,0.937104,0.498667,0.642929,0.334366,0.576941,0.967672,0.58253,0.224432,0.817876,0.499401,0.0464522,0.958809,0.161972,0.180159,0.527704,0.59558,0.999341,0.513287,0.400005,0.123193,0.0509394,0.134807,0.715041,0.292379,0.0549899,0.944309,0.369424,0.421468,0.485507,0.937421,0.498554,0.264053,0.385255,0.73186,0.435481,0.301983,0.984471,0.82085,0.168346,0.982185,0.750176,0.585428,0.980562,0.855348,0.620814,0.479526,0.96018,0.196606,0.856365,0.311706,0.65995,0.316204,0.0890086,0.61919,0.419102,0.801915,0.398361,0.433483,0.227655,0.422213,0.43228,0.994246,0.168858,0.79692,0.196832,0.663824,0.0565851,0.46345,0.727919,0.929352,0.843911,0.0451607,0.264355,0.0828469,0.410591,0.691237,0.587151,0.986214,0.678266,0.892775,0.705842,0.187029,0.386345,0.204174,0.455721,0.121657,0.0722135,0.197424,0.579202,0.0878928,0.168206,0.799747,0.393119,0.566769,0.880524,0.254041,0.584818,0.430838,0.863265,0.246497,0.444279,0.790783,0.366432,0.545233,0.0645861,0.361183,0.769252,0.92606,0.114361,0.963747,0.957384,0.289194,0.921662,0.886551,0.919007,0.681836,0.388243,0.468125,0.712113,0.530279,0.909954,0.00998414,0.545391,0.667219,0.519006,0.644725,0.882786,0.885006,0.30945,0.0398969,0.794101,0.651992,0.402266,0.0877594,0.779235,0.312653,0.895706,0.329805,0.886645,0.589645,0.221079,0.0308805,0.786102,0.229432,0.372781,0.716549,0.0505999,0.0962011,0.097236,0.0533658,0.7159,|0.958072,0.99825,0.15721,0.59668,0.771107,0.088559,0.119502,0.905668,0.109352,0.637661,0.769731,0.532578,0.206815,0.950003,0.0421956,0.528073,0.254389,0.151,0.155764,0.0459844,0.969781,0.804847,0.0410429,0.739195,0.843029,0.994177,0.403687,0.877402,0.313231,0.29066,0.285714,0.0955942,0.361116,0.923847,0.540843,0.248939,0.672783,0.842921,0.505821,0.418286,0.972302,0.967668,0.258785,0.429625,0.594651,0.648684,0.744807,0.729121,0.578402,0.346302,0.324503,0.295499,0.952353,0.0797122,0.456511,0.766828,0.434568,0.18295,0.818262,0.160522,0.605553,0.154483,0.467879,0.0787342,0.548945,0.0532466,0.0285485,0.785105,0.530617,0.269707,0.84217,0.297234,0.573865,0.702113,0.418997,0.87604,0.803038,0.484232,0.368671,0.679787,0.187216,0.475822,0.348703,0.845982,0.0502339,0.170107,0.496584,0.459604,0.637672,0.0403868,0.214184,0.964517,0.569271,0.6928,0.694808,0.876001,0.0207757,0.427945,0.813821,0.281769,0.323879,0.169154,0.49772,0.225314,0.365049,0.635329,0.162316,0.449193,0.0501788,0.60169,0.0141068,0.545727,0.880469,0.480771,0.645941,0.976142,0.0188534,0.331113,0.838317,0.657308,0.249773,0.9387,0.887638,0.846954,0.757446,0.358415,0.217945,0.0303658,0.914485,0.410129,0.415489,0.519089,0.445393,0.902172,0.582674,0.450247,0.930376,0.296674,0.653834,0.536864,0.839373,0.988423,0.635646,0.51123,0.94331,0.253955,0.641617,0.230593,0.938189,0.837659,0.223043,0.175042,0.644524,0.811728,0.299729,0.42659,0.353986,0.74116,0.634968,0.893622,0.980758,0.499819,0.907503,0.0902115,0.425904,0.946706,0.773249,0.0669717,0.0661274,0.545938,0.590181,0.136634,0.830924,0.850756,0.558985,0.363701,0.648658,0.927667,0.373467,0.600381,0.253744,0.950293,0.97,0.0791187,0.24455,0.540079,0.443654,0.688675,0.112897,0.165946,0.485835,0.823663,0.281335,0.402548,0.567829,0.340282,0.895577,0.254047,0.793238,0.192306,0.824024,0.498022,0.28349,0.47015,0.284358,0.107452,0.105429,0.453788,0.127744,0.774335,0.859633,0.384501,0.928587,0.606034,0.619546,0.517471,0.287411,0.632343,0.676014,0.677322,0.437723,0.257065,0.573929,0.791222,0.313841,0.293238,0.74463,0.470207,0.964756,0.268408,0.730229,0.995802,0.333553,0.864597,0.005229,0.507227,0.0543616,0.35115,0.0955644,0.691727,0.203475,0.216713,0.0148881,0.138057,0.686563,0.430799,0.807146,0.778962,0.568963,0.962819,0.680622,0.860036,0.394771,0.493451,0.451362,0.483789,0.392743,0.0144283,0.757614,0.0338453,0.325622,0.373798,0.500401,0.699298,0.0834428,0.910781,0.0897583,0.978955,0.476287,0.554738,0.904626,0.0669079,0.114306,0.447866,0.687183,0.833408,0.937314,0.647166,0.194376,0.382712,0.323156,0.434293,0.288142,0.65168,0.402168,0.379396,0.847724,0.380694,0.249633,0.931597,0.371862,0.482733,0.196521,0.487058,0.31856,0.0643324,0.0509454,0.465645,0.79334,0.917171,0.197489,0.760067,0.185659,0.502395,0.123274,0.433076,0.443926,0.745787,0.624867,0.810771,0.906407,0.247282,0.477531,0.457538,0.861046,0.72066,0.771787,0.275584,0.0144951,0.952354,0.634252,0.564949,0.948428,0.977763,0.642669,0.368749,0.393561,0.956757,0.806936,0.72237,0.337627,0.947322,0.603802,0.0211044,0.497437,0.144349,0.614125,0.264664,0.421433,0.928558,0.950131,0.832489,0.652504,0.37983,0.150162,0.567187,0.507485,0.451713,0.451021,0.289631,0.802969,0.976771,0.419575,0.0396351,0.524459,0.529644,0.329759,0.66643,0.232875,0.0232743,0.23291,0.0315498,0.0266544,0.360327,0.847257,0.387262,0.866471,0.614511,0.670362,0.825759,0.286586,0.00340468,0.348381,0.824342,0.0163482,0.500847,0.343287,0.380266,0.798543,0.216727,0.384253,0.517902,0.232038,0.725319,0.732045,0.0873013,0.969414,0.0340989,0.848378,0.465391,0.134994,0.900978,0.294976,0.87012,0.988188,0.871266,0.0263676,0.189254,0.208025,0.041007,0.360521,0.419118,0.799105,0.111219,0.647317,0.555798,0.447755,0.582145,0.282656,0.578011,0.289626,0.91231,0.332571,0.205629,0.0138399,0.767837,0.958264,0.490445,0.827594,0.890087,0.107397,0.702578,0.67253,0.871788,0.461164,0.746681,0.628061,0.0363955,0.257711,0.0832041,0.536674,0.846336,0.720365,0.489251,0.0808019,0.325201,0.0339213,0.944894,0.995193,0.587334,0.920018,0.949592,0.390983,0.695319,0.400632,0.119592,0.883754,0.433856,0.289094,0.365996,0.73773,0.0140342,0.773316,0.371108,0.518689,0.68186,0.305262,0.571936,0.728355,0.514554,0.260731,0.333843,0.420783,0.179658,0.636936,0.906014,0.820714,0.859904,0.932097,0.407852,0.636717,0.78663,0.42608,0.848423,0.969959,0.0841999,0.724578,0.252925,0.63829,0.268926,0.00332361,0.0199957,0.35064,0.615022,0.491252,0.816714,0.866816,0.930353,0.297666,0.779766,0.285305,0.739381,0.612418,0.0788799,0.139208,0.477144,0.835898,0.755075,0.717283,0.857109,0.542303,0.141006,0.251633,0.77021,0.873509,0.428429,0.926483,0.780844,0.190253,0.561145,0.231421,0.684839,0.436559,0.762171,0.799728,0.0977709,0.866693,0.487673,0.905128,0.716373,0.980873,0.346474,0.522789,0.0572866,0.799845,0.71031,0.517465,0.309737,0.0693202,0.424658,0.894331,0.519797,0.899094,0.406304,0.381024,0.865529,0.354792,0.41499,0.639752,0.836368,0.380088,0.550122,0.143373,0.57789,0.387706,0.541402,0.0230314,0.73725,0.625268,0.258571,0.482016,0.150881,0.191694,0.323426,0.467731,0.153815,0.214441,0.090556,0.239229,0.286716,0.769579,0.985442,0.361038,0.759061,0.672285,0.11373,0.836031,0.720439,0.600498,0.312935,0.457604,0.771466,0.224665,0.604295,0.963932,0.290599,0.997114,0.488494,0.344938,0.988795,0.55114,0.571318,0.556405,0.079671,0.0575636,0.934195,0.994983,0.927618,0.835129,0.823552,0.954429,0.469024,0.972613,0.681469,0.283122,0.585026,0.0647503,0.82131,0.177774,0.479783,0.994795,0.506908,0.549005,0.0487958,0.699566,0.024464,0.513757,0.355628,0.456859,0.726213,0.735485,0.502074,0.0316178,0.706545,0.0126308,0.819605,0.138029,0.726296,0.210338,0.78069,0.65433,0.519838,0.0477905,0.694495,0.826593,0.330192,0.035584,0.944822,0.556001,0.0911305,0.124698,0.62344,0.808479,0.627268,0.911708,0.802863,0.772836,0.522601,0.276803,0.376182,0.435263,0.223726,0.622736,0.312538,0.0149059,0.993472,0.562531,0.376919,0.953983,0.534813,0.718452,0.135083,0.688117,0.88353,0.436764,0.442453,0.368751,0.597314,0.515864,0.982483,0.110324,0.253844,0.393079,0.395615,0.839078,0.826474,0.325681,0.92626,0.880913,0.473103,0.0789156,0.185069,0.226871,0.701954,0.535578,0.124625,0.48515,0.499628,0.920453,0.296929,0.304361,0.347952,0.482884,0.174688,0.448953,0.723726,0.0690773,0.0301332,0.677323,0.340949,0.399353,0.412466,0.0487397,0.0766503,0.38977,0.525141,0.516525,0.443403,0.429509,0.1615,0.547788,0.821322,0.748551,0.742907,0.568704,0.744899,0.9825,0.889029,0.798206,0.551674,0.561961,0.0528506,0.328665,0.304847,0.0429249,0.191885,0.320159,0.604411,0.444621,0.360474,0.0951485,0.763831,0.407987,0.824487,0.187248,0.655365,0.621054,0.904105,0.400215,0.442453,0.799816,0.249551,0.387735,0.900182,0.557724,0.038906,0.34237,0.657486,0.278234,0.387026,0.76384,0.670614,0.314301,0.536129,0.274045,0.540267,0.261682,0.985619,0.575664,0.332329,0.634987,0.115949,0.448724,0.262029,0.848469,0.496312,0.908815,0.356413,0.0855325,0.842575,0.530444,0.507285,0.439347,0.46878,0.53811,0.676349,0.330352,0.201202,0.149102,0.850675,0.77069,0.674576,0.201766,0.181877,0.129224,0.443812,0.769879,0.961542,0.363371,0.596678,0.0361903,0.0646059,0.154819,0.26164,0.997575,0.159958,0.640628,0.699787,0.789174,0.504273,0.722878,0.932914,0.326906,0.984559,0.341213,0.136964,0.484749,0.440773,0.182831,0.886033,0.577123,0.632338,0.807551,0.176716,0.544466,0.876758,0.379174,0.252306,0.839417,0.356396,0.636843,0.9614,0.833224,0.0727471,0.111329,0.109036,0.243325,0.228206,0.218835,0.862138,0.122637,0.541744,0.692403,0.423879,0.172912,0.322018,0.30678,0.816979,0.388572,0.821151,0.292833,0.166789,0.720354,0.301354,0.453523,0.43773,0.397708,0.735231,0.244461,0.531259,0.35789,0.32966,0.806673,0.332069,0.929728,0.107773,0.520003,0.813361,0.22924,0.489021,0.915467,0.622599,0.277634,0.94928,0.916115,0.598745,0.031209,0.836185,0.44425,0.0325519,0.130812,0.477291,0.654113,0.194557,0.23972,0.0723323,0.134111,0.655458,0.358379,0.632777,0.325989,0.735314,0.244099,0.175582,0.682824,0.206691,0.847318,0.0840461,0.462174,0.65611,0.400097,0.856037,0.232318,0.257623,0.0714332,0.612482,0.802757,0.951627,0.934991,0.99471,0.232876,0.498285,0.407108,0.732541,0.829557,0.0622195,0.558257,0.797928,0.0523566,0.846076,0.101286,0.356455,0.499569,0.666371,0.91802,0.161953,0.140027,0.28706,0.865119,0.397977,0.948328,0.0825267,0.48333,0.160103,0.314489,0.659648,0.726748,0.246029,0.0111626,0.216483,0.126338,0.228681,0.483774,0.424985,0.695388,0.0782168,0.482129,0.846934,0.0920244,0.00168622,0.494779,0.188202,0.00793928,0.390357,0.625811,0.751316,0.453652,0.270381,0.178888,0.799346,0.00263113,0.631661,0.384887,0.153718,0.551709,0.334751,0.530189,0.362204,0.632689,0.76764,0.973053,0.386167,0.47178,0.558669,0.0115961,0.992392,0.891139,0.464334,0.514057,0.304606,0.888105,0.17972,0.0849194,0.464483,0.315326,0.0766677,0.121879,0.140494,0.847036,0.0746492,0.793698,0.435233,0.0344892,0.634033,0.13912,0.0084613,0.0344145,0.461793,0.041933,0.436721,0.0406051,0.708972,0.798409,0.277877,0.55735,0.0970408,0.609688,0.768555,0.999181,0.288984,0.549524,0.941395,0.900827,0.276049,0.301637,0.408513,0.0098902,0.690758,0.717739,0.718617,|0.128838,0.467591,0.517032,0.104703,0.891964,0.314666,0.156882,0.0487688,0.0879059,0.876788,0.586163,0.0367795,0.90803,0.40524,0.503557,0.102598,0.983413,0.961966,0.943339,0.764524,0.448104,0.329058,0.232047,0.142798,0.0897972,0.0834806,0.483413,0.864936,0.00219929,0.780334,0.745169,0.17429,0.501577,0.640358,0.702502,0.459988,0.111995,0.585506,0.191349,0.589308,0.835379,0.829518,0.820481,0.201708,0.802157,0.0209237,0.780267,0.623259,0.487658,0.0522972,0.847289,0.8484,0.8691,0.46395,0.269732,0.380277,0.199905,0.111669,0.882746,0.270056,0.27602,0.10425,0.12252,0.366212,0.384718,0.267303,0.0641329,0.643162,0.475756,0.547477,0.828683,0.388271,0.99298,0.29163,0.0546939,0.992911,0.715991,0.562806,0.0548987,0.30886,0.702212,0.544609,0.19294,0.589791,0.354437,0.152646,0.37145,0.613631,0.339445,0.218056,0.741996,0.530874,0.982011,0.0448195,0.769458,0.829415,0.243695,0.981478,0.720516,0.526353,0.250744,0.435843,0.936727,0.729352,0.376882,0.859383,0.512693,0.615227,0.27318,0.725721,0.836733,0.895337,0.379671,0.134561,0.40997,0.0773675,0.922791,0.796138,0.717568,0.172768,0.312171,0.307713,0.42408,0.226127,0.0829449,0.299624,0.519754,0.0801252,0.0366617,0.912346,0.900871,0.742991,0.250882,0.319749,0.0103996,0.779603,0.566709,0.164273,0.799994,0.396105,0.792421,0.850403,0.906486,0.740676,0.820934,0.168729,0.0366822,0.651511,0.194447,0.237771,0.461986,0.135745,0.433678,0.0551543,0.892414,0.371675,0.4033,0.601043,0.224213,0.845549,0.0951929,0.172445,0.223271,0.175465,0.701903,0.794047,0.790587,0.770286,0.329053,0.772789,0.113711,0.310448,0.111666,0.456139,0.019751,0.447761,0.429053,0.390801,0.490716,0.864915,0.46935,0.639878,0.638061,0.138333,0.617661,0.625874,0.703125,0.015911,0.571845,0.568605,0.00325918,0.777499,0.457432,0.662338,0.463346,0.409279,0.452767,0.329888,0.58167,0.150455,0.409886,0.418245,0.19718,0.22406,0.907277,0.918194,0.743674,0.89928,0.0907844,0.0930307,0.952887,0.904534,0.0350254,0.69216,0.482931,0.97001,0.713233,0.693098,0.129651,0.742761,0.878947,0.466919,0.783879,0.0367332,0.642688,0.00410575,0.736088,0.0772172,0.197232,0.795919,0.812357,0.444749,0.530981,0.343149,0.826555,0.0742132,0.877036,0.474526,0.618409,0.273219,0.230303,0.154327,0.429071,0.333481,0.0824862,0.341538,0.558647,0.224341,0.357726,0.959708,0.241088,0.974548,0.547277,0.850933,0.51112,0.252663,0.212642,0.215259,0.625354,0.890502,0.154966,0.381502,0.824062,0.908982,0.445456,0.718313,0.581918,0.768912,0.0928871,0.117774,0.421529,0.675509,0.43769,0.68238,0.0101051,0.92501,0.428965,0.076416,0.817983,0.0753692,0.411595,0.343778,0.161227,0.150642,0.72816,0.291015,0.685318,0.405384,0.044723,0.332361,0.737965,0.398682,0.769739,0.125381,0.366106,0.727063,0.36069,0.971679,0.923027,0.388754,0.445536,0.329696,0.392655,0.201471,0.463537,0.613055,0.908845,0.380125,0.37712,0.311288,0.592969,0.273126,0.342868,0.365831,0.665246,0.0692163,0.397858,0.482038,0.933317,0.535508,0.801982,0.758536,0.734137,0.58761,0.433636,0.855397,0.00707924,0.629802,0.840448,0.191606,0.0826598,0.403206,0.765422,0.896852,0.00576299,0.0711858,0.550967,0.287073,0.38006,0.173225,0.487833,0.246774,0.269234,0.00874108,0.280847,0.0322303,0.826296,0.722966,0.962538,0.660717,0.716413,0.58341,0.361884,0.37319,0.437083,0.0153891,0.885572,0.545592,0.567082,0.46938,0.616314,0.327455,0.935479,0.15218,0.808813,0.0275491,0.85178,0.623164,0.807929,0.0171278,0.983552,0.0937796,0.974403,0.284164,0.328544,0.692856,0.398975,0.563992,0.00756377,0.979283,0.962045,0.340887,0.427522,0.232381,0.0502965,0.379329,0.0681748,0.877483,0.779666,0.637423,0.239166,0.289647,0.970796,0.0659574,0.408484,0.367939,0.227096,0.376449,0.128312,0.473788,0.470315,0.723393,0.709707,0.641183,0.729666,0.928824,0.501886,0.442251,0.631066,0.37435,0.606175,0.841873,0.506365,0.405091,0.257134,0.579946,0.284887,0.317343,0.0564272,0.541507,0.483865,0.345497,0.449194,0.910307,0.962019,0.12988,0.072447,0.638722,0.74211,0.442177,0.37003,0.623262,0.309236,0.617531,0.129227,0.808304,0.793035,0.0273329,0.708466,0.118575,0.724714,0.424434,0.171534,0.402103,0.56255,0.202783,0.0228066,0.263022,0.0132295,0.942458,0.21282,0.703556,0.926144,0.52574,0.689468,0.894458,0.473221,0.280716,0.649297,0.465354,0.410983,0.535676,0.751968,0.961071,0.489597,0.917583,0.43584,0.865395,0.120793,0.0406567,0.546035,0.260761,0.358125,0.0307056,0.776529,0.275659,0.127498,0.846934,0.679278,0.851817,0.611282,0.81538,0.350056,0.638453,0.405754,0.925226,0.0906137,0.397912,0.775265,0.989887,0.134446,0.961168,0.203597,0.298593,0.834437,0.390673,0.024978,0.799072,0.320555,0.945446,0.817806,0.881121,0.657208,0.847561,0.371669,0.939274,0.451449,0.867058,0.209113,0.526131,0.151126,0.577646,0.469117,0.999694,0.343339,0.0598177,0.487732,0.849718,0.556784,0.492106,0.607767,0.207662,0.862442,0.737318,0.452088,0.311489,0.198217,0.827446,0.336035,0.303645,0.540121,0.420745,0.155181,0.373741,0.957103,0.794232,0.681278,0.10546,0.300394,0.302747,0.231113,0.593746,0.549096,0.489286,0.883105,0.353941,0.24602,0.48184,0.500676,0.980653,0.38527,0.538126,0.0703666,0.909648,0.569513,0.569582,0.682338,0.935083,0.681015,0.44458,0.696807,0.223643,0.138673,0.824578,0.414011,0.66282,0.612932,0.792895,0.328526,0.423291,0.937236,0.770844,0.337033,0.394179,0.615544,0.908245,0.376135,0.131604,0.436461,0.62093,0.397058,0.865834,0.526785,0.324991,0.865689,0.504206,0.989239,0.373896,0.770059,0.17755,0.00941145,0.89443,0.0196817,0.865881,0.532607,0.89908,0.25983,0.330119,0.0335811,0.484895,0.898711,0.339076,0.759566,0.889712,0.669292,0.260856,0.669486,0.682904,0.797788,0.887447,0.547887,0.733785,0.938141,0.537105,0.848224,0.682851,0.916583,0.158742,0.668915,0.0486953,0.779966,0.906671,0.587385,0.293255,0.904869,0.295623,0.336242,0.0116798,0.426899,0.858018,0.476596,0.942696,0.769351,0.289859,0.657484,0.953542,0.168507,0.56174,0.805988,0.393151,0.907897,0.703802,0.835986,0.35118,0.000599146,0.498,0.270293,0.916912,0.228293,0.412638,0.386733,0.227251,0.685539,0.365988,0.36953,0.74615,0.860367,0.17087,0.945379,0.554207,0.280831,0.991407,0.469263,0.861873,0.143601,0.838982,0.836474,0.706553,0.476369,0.847991,0.924317,0.0475121,0.242189,0.168079,0.986106,0.601038,0.942689,0.113669,0.839686,0.310396,0.739714,0.898173,0.207746,0.101517,0.797334,0.120467,0.921368,0.334055,0.880826,0.407352,0.0341046,0.982192,0.292387,0.0181289,0.517409,0.237679,0.144345,0.397846,0.425129,0.299229,0.690419,0.780183,0.122226,0.597208,0.955539,0.56063,0.680075,0.649649,0.0769856,0.399008,0.333753,0.38471,0.444005,0.979146,0.541366,0.608672,0.735369,0.191801,0.224198,0.373853,0.737333,0.479825,0.877978,0.354223,0.80753,0.684169,0.153918,0.556796,0.545253,0.815684,0.621044,0.0496839,0.69919,0.714491,0.41522,0.983903,0.00984037,0.812689,0.834053,0.835038,0.672158,0.182866,0.303087,0.860225,0.440115,0.848094,0.68845,0.138826,0.925205,0.938084,0.959845,0.548374,0.0134692,0.870036,0.633503,0.570229,0.665215,0.5297,0.886552,0.951544,0.968992,0.546353,0.527971,0.52233,0.616761,0.798421,0.0580012,0.161755,0.72015,0.542417,0.732231,0.427014,0.745357,0.0591574,0.149494,0.105849,0.425593,0.715185,0.620158,0.407552,0.5795,0.539752,0.120669,0.851739,0.312391,0.418165,0.0668219,0.639886,0.325256,0.0640866,0.140927,0.536763,0.656778,0.997362,0.00159019,0.508682,0.84312,0.18931,0.377849,0.281083,0.469994,0.534794,0.258216,0.45541,0.177289,0.104251,0.144735,0.925572,0.579996,0.338223,0.815735,0.934301,0.423053,0.698404,0.421923,0.678294,0.421212,0.103457,0.176692,0.699395,0.00327104,0.123699,0.607715,0.954675,0.0850613,0.0709491,0.986675,0.657355,0.332208,0.0994177,0.65366,0.0373808,0.273242,0.332893,0.718539,0.44099,0.642748,0.865515,0.335886,0.346886,0.546072,0.308538,0.733713,0.999104,0.154646,0.649612,0.901964,0.223711,0.500431,0.582453,0.609541,0.647679,0.799254,0.238186,0.643615,0.826308,0.479261,0.599947,0.74107,0.223324,0.166107,0.222391,0.4365,0.814436,0.363572,0.712249,0.136831,0.705867,0.0476143,0.960016,0.566141,0.13868,0.142311,0.81213,0.205355,0.784905,0.26093,0.0549979,0.0176145,0.015195,0.763881,0.473753,0.088201,0.0101309,0.0101719,0.322393,0.436202,0.106882,0.155412,0.963767,0.785703,0.356478,0.961175,0.0148289,0.00286043,0.756943,0.934327,0.810838,0.459574,0.680656,0.126949,0.116604,0.928062,0.715665,0.0627238,0.801884,0.599232,0.0695181,0.547511,0.613324,0.863773,0.746813,0.471755,0.483481,0.913678,0.523633,0.47531,0.609408,0.895697,0.815836,0.595409,0.523944,0.325577,0.412679,0.277327,0.893621,0.645585,0.808677,0.168558,0.864308,0.944544,0.696971,0.428914,0.891142,0.307273,0.204265,0.648798,0.553077,0.861634,0.178662,0.427585,0.672931,0.124892,0.491594,0.113939,0.614047,0.0426325,0.793569,0.923203,0.848083,0.144116,0.00419396,0.0575131,0.895802,0.0487016,0.264876,0.209773,0.284015,0.397624,0.237589,0.68256,0.644499,0.753635,0.645558,0.277893,0.116213,0.601466,0.062471,0.589774,0.420194,0.792718,0.858969,0.871088,0.161669,0.982555,0.197005,0.710085,0.739474,0.890672,0.0693233,0.0143518,0.328348,0.383077,0.331637,0.883586,0.428554,0.495084,0.564677,0.910738,0.494709,0.550617,0.251994,0.570988,0.299271,0.867679,0.995711,0.344694,0.514179,0.0621181,0.138221,|0.681404,0.0762925,0.170237,0.100549,0.726874,0.00918192,0.168082,0.0628403,0.618367,0.825937,0.318499,0.730718,0.0499458,0.488206,0.937866,0.494696,0.490102,0.40951,0.415087,0.0966274,0.782048,0.960399,0.86315,0.435294,0.0338053,0.360768,0.542538,0.911991,0.700098,0.884199,0.766015,0.41595,0.936502,0.265842,0.105768,0.399551,0.738197,0.229147,0.310198,0.959213,0.29351,0.45255,0.642012,0.678753,0.404682,0.988742,0.482246,0.030363,0.224791,0.0741042,0.291497,0.699383,0.564757,0.790647,0.0351632,0.0427531,0.131925,0.102665,0.699809,0.892857,0.759351,0.013368,0.917512,0.0878996,0.539515,0.226922,0.733986,0.134781,0.635136,0.0393197,0.814612,0.620843,0.687949,0.643357,0.694448,0.594136,0.796351,0.534931,0.917823,0.822428,0.34023,0.81534,0.940605,0.444166,0.944449,0.674105,0.93423,0.167342,0.277071,0.72461,0.238256,0.439465,0.621151,0.537422,0.126793,0.876777,0.669751,0.36534,0.599749,0.0411261,0.909472,0.336219,0.914119,0.237048,0.184817,0.974806,0.13519,0.985874,0.946771,0.829763,0.983404,0.42417,0.142366,0.321586,0.787635,0.337759,0.848065,0.321497,0.077366,0.809366,0.677075,0.931221,0.270307,0.243989,0.413734,0.408587,0.411173,0.965361,0.95956,0.807538,0.611482,0.920939,0.537694,0.744009,0.0745813,0.568386,0.983113,0.265177,0.55735,0.535053,0.701743,0.87874,0.202232,0.499657,0.936821,0.755061,0.716103,0.342081,0.24348,0.97482,0.34452,0.409194,0.686635,0.367409,0.814543,0.200038,0.739292,0.032697,0.158456,0.65315,0.164935,0.99837,0.222105,0.655284,0.215278,0.448162,0.434357,0.414299,0.160731,0.45295,0.223385,0.667996,0.930255,0.620465,0.739639,0.870241,0.101719,0.553981,0.0659648,0.264363,0.978629,0.622767,0.634468,0.65873,0.548019,0.0414562,0.543887,0.289532,0.712464,0.226489,0.232809,0.961668,0.219564,0.125859,0.731012,0.944859,0.661451,0.0921654,0.253848,0.099864,0.0142829,0.115943,0.460619,0.772924,0.234379,0.146605,0.292381,0.273856,0.769151,0.0726658,0.423972,0.253015,0.230866,0.623986,0.707312,0.588197,0.240066,0.176153,0.340064,0.118892,0.76056,0.423061,0.387832,0.35189,0.483461,0.892395,0.971179,0.32159,0.162468,0.704831,0.376212,0.60074,0.287033,0.947728,0.0691557,0.282467,0.0678058,0.528001,0.964168,0.965708,0.182837,0.307372,0.394757,0.970872,0.358235,0.995268,0.483601,0.849052,0.0988076,0.753993,0.371459,0.0108258,0.82132,0.0967499,0.970317,0.550996,0.989239,0.0010528,0.265523,0.785852,0.0980689,0.175517,0.588226,0.82047,0.83868,0.739804,0.111973,0.292873,0.314297,0.983343,0.394101,0.299217,0.647754,0.40252,0.264804,0.161999,0.187175,0.965742,0.0814021,0.62833,0.889087,0.457545,0.820215,0.722109,0.219417,0.594401,0.0369766,0.858362,0.974552,0.97669,0.0513582,0.308724,0.254185,0.650003,0.970904,0.362624,0.899069,0.726946,0.0268295,0.811526,0.284505,0.312139,0.253156,0.329497,0.10319,0.924092,0.601393,0.100873,0.348107,0.963185,0.324691,0.736366,0.96956,0.206909,0.447728,0.767755,0.0103359,0.203701,0.354499,0.16307,0.410729,0.86526,0.530195,0.242492,0.122531,0.527157,0.261918,0.768248,0.236365,0.0949358,0.0577478,0.127277,0.886199,0.255703,0.169021,0.585042,0.182452,0.657001,0.635752,0.69512,0.0550942,0.198979,0.596069,0.418144,0.03403,0.0233837,0.678744,0.977794,0.21659,0.756212,0.24284,0.626866,0.0194005,0.979073,0.0999861,0.449707,0.827066,0.400854,0.841734,0.331646,0.215497,0.766995,0.26272,0.19162,0.439346,0.940695,0.432813,0.835497,0.00772524,0.187707,0.324367,0.549515,0.125092,0.37924,0.876681,0.411697,0.354349,0.952007,0.317132,0.739499,0.141532,0.891069,0.591334,0.935782,0.286429,0.940616,0.74454,0.0580702,0.0403548,0.413143,0.548863,0.0767061,0.902898,0.0698807,0.576196,0.270111,0.0777857,0.854697,0.248149,0.311936,0.629459,0.977906,0.624281,0.823863,0.764427,0.837604,0.0471589,0.518354,0.784214,0.900253,0.271131,0.547785,0.35083,0.263234,0.251581,0.249923,0.686148,0.580003,0.34064,0.0286097,0.337403,0.459605,0.0545202,0.910848,0.0464738,0.873471,0.688447,0.300436,0.753226,0.533193,0.810637,0.670911,0.49455,0.611685,0.471929,0.205167,0.913062,0.955172,0.899887,0.980214,0.690561,0.0158073,0.798315,0.592225,0.988852,0.585327,0.423275,0.45276,0.126525,0.0681594,0.664385,0.530854,0.0213469,0.59842,0.53474,0.497889,0.736108,0.190525,0.302446,0.0433848,0.185179,0.239745,0.435636,0.453105,0.720905,0.0519521,0.571283,0.490886,0.969511,0.990806,0.0663462,0.295482,0.659643,0.739267,0.0796015,0.692419,0.601735,0.584904,0.0843448,0.736435,0.753196,0.828613,0.206742,0.700388,0.135132,0.796815,0.143175,0.779658,0.637916,0.0638214,0.328619,0.0311382,0.859744,0.605493,0.814142,0.325638,0.786258,0.887346,0.64573,0.949739,0.09049,0.50685,0.0713908,0.683531,0.783493,0.273782,0.37568,0.415495,0.874706,0.268545,0.860984,0.856115,0.502746,0.0778257,0.337302,0.358479,0.537752,0.136824,0.792681,0.53804,0.0753923,0.718515,0.7096,0.851075,0.801813,0.123811,0.442968,0.707005,0.609746,0.113908,0.786148,0.591378,0.23174,0.508881,0.976083,0.412294,0.430394,0.834878,0.713683,0.074374,0.790398,0.827016,0.790392,0.894984,0.421967,0.070299,0.276204,0.760163,0.109839,0.00910133,0.0888789,0.650626,0.0847014,0.265404,0.385617,0.528518,0.206339,0.288219,0.851437,0.614472,0.781096,0.597681,0.383233,0.753373,0.892831,0.719757,0.210773,0.311016,0.564213,0.158166,0.94008,0.318792,0.226302,0.270166,0.876479,0.349272,0.650213,0.565199,0.606243,0.95456,0.57291,0.411176,0.0967663,0.115866,0.20713,0.347266,0.788625,0.469129,0.728811,0.042683,0.343367,0.457687,0.339648,0.327245,0.974495,0.440971,0.714185,0.0658638,0.668012,0.5962,0.322636,0.241013,0.21321,0.201166,0.759078,0.0552505,0.410614,0.13903,0.452032,0.414714,0.100163,0.178307,0.82268,0.672454,0.767079,0.129218,0.642734,0.276364,0.836432,0.685703,0.0985034,0.0583831,0.873666,0.536288,0.575388,0.213125,0.654595,0.594164,0.890327,0.924524,0.791884,0.156584,0.094437,0.281033,0.624489,0.279079,0.900033,0.549275,0.411247,0.385358,0.629157,0.405872,0.232421,0.722521,0.241264,0.478118,0.162985,0.699898,0.0110908,0.896467,0.0195223,0.0404183,0.303625,0.563748,0.306086,0.349373,0.342493,0.613356,0.127269,0.476561,0.526928,0.591939,0.933493,0.52553,0.00302094,0.0175208,0.634032,0.707761,0.912335,0.708112,0.805303,0.572179,0.659312,0.0868241,0.923397,0.10713,0.870706,0.833563,0.937161,0.303675,0.998737,0.218609,0.663883,0.0865384,0.870987,0.903447,0.534203,0.639606,0.459968,0.324288,0.741222,0.180317,0.268664,0.820761,0.755392,0.724061,0.730378,0.391639,0.685045,0.307117,0.331769,0.225863,0.573042,0.395624,0.932282,0.389137,0.915244,0.749965,0.66339,0.996548,0.679949,0.700231,0.692685,0.750354,0.885952,0.368465,0.726649,0.492761,0.863524,0.985256,0.601055,0.122035,0.951748,0.402845,0.216491,0.625648,0.237393,0.312044,0.5981,0.247131,0.199221,0.98108,0.644786,0.629315,0.685744,0.900494,0.784913,0.677481,0.981865,0.937484,0.87827,0.830381,0.438119,0.50152,0.796436,0.809212,0.364156,0.511042,0.65696,0.150977,0.520056,0.818319,0.152364,0.676488,0.0850272,0.267426,0.363797,0.645751,0.776611,0.238228,0.922365,0.555814,0.339839,0.0159346,0.117811,0.429175,0.983343,0.441544,0.0463869,0.931702,0.569861,0.178704,0.765586,0.10601,0.69273,0.341734,0.252658,0.0717519,0.0233586,0.920473,0.970474,0.733005,0.406889,0.640219,0.61488,0.952641,0.711361,0.98514,0.732945,0.970423,0.393706,0.619907,0.813283,0.732568,0.450763,0.138415,0.670539,0.319415,0.385677,0.702549,0.243173,0.27728,0.337294,0.546007,0.360079,0.174621,0.444634,0.133736,0.830466,0.387856,0.0327069,0.667942,0.331957,0.100033,0.781178,0.905663,0.13083,0.660549,0.115247,0.356884,0.104513,0.54889,0.33592,0.0788025,0.306801,0.0171536,0.312578,0.20927,0.829825,0.185285,0.923189,0.00487244,0.73304,0.82918,0.351345,0.945376,0.44166,0.534245,0.795276,0.88381,0.821921,0.606454,0.700483,0.580121,0.748327,0.267229,0.468807,0.385691,0.185885,0.800102,0.997134,0.531655,0.546155,0.900497,0.53739,0.490566,0.501933,0.77241,0.582803,0.227085,0.445667,0.276369,0.431551,0.930359,0.740148,0.709572,0.315019,0.570923,0.0286599,0.952539,0.646363,0.641252,0.769405,0.635498,0.652223,0.986712,0.0283468,0.793447,0.37481,0.457748,0.441516,0.0833862,0.386197,0.0331764,0.0104587,0.814561,0.348987,0.586486,0.82708,0.57273,0.0127466,0.945688,0.850239,0.020568,0.265424,0.241175,0.752841,0.615784,0.575877,0.152046,0.391015,0.412126,0.603582,0.620425,0.386386,0.777979,0.0609133,0.697712,0.741553,0.948747,0.18897,0.557866,0.763648,0.904169,0.959414,0.350617,0.74916,0.754432,0.451838,0.553442,0.315751,0.889108,0.986305,0.865985,0.281231,0.240799,0.111171,0.462181,0.128772,0.15277,0.178627,0.266124,0.340864,0.280785,0.93801,0.33535,0.527559,0.338011,0.666336,0.427452,0.520548,0.193177,0.799524,0.584534,0.607458,0.70614,0.154696,0.738272,0.628035,0.11825,0.615399,0.94186,0.161595,0.556048,0.188393,0.840551,0.422246,0.764544,0.608246,0.770353,0.877429,0.8626,0.526985,0.606924,0.138587,0.697109,0.930146,0.286858,0.547912,0.714429,0.769608,0.939404,0.526507,0.922257,0.215055,0.946767,0.287755,0.238988,0.575798,0.754189,0.235925,0.887442,0.199821,0.0470368,0.128042,0.868934,0.91377,0.661227,0.452787,0.773036,0.0776625,0.449495,0.0194474,0.412409,0.229915,0.542572,0.884957,0.356686,0.743742,0.838488,|0.221857,0.0677488,0.380699,0.169966,0.441416,0.32149,0.543315,0.409297,0.701993,0.997987,0.207721,0.059705,0.71578,0.573783,0.139159,0.190747,0.160628,0.707779,0.86165,0.351384,0.559435,0.67671,0.621316,0.800009,0.192319,0.271891,0.0907359,0.619892,0.0589181,0.356893,0.196415,0.401869,0.794304,0.900749,0.610682,0.22026,0.719776,0.61394,0.586393,0.140283,0.478898,0.752722,0.116629,0.386516,0.353204,0.983528,0.670732,0.154478,0.373206,0.42498,0.745402,0.0776795,0.116516,0.952713,0.439176,0.00407004,0.876152,0.802659,0.851013,0.900053,0.00837505,0.416611,0.901084,0.426489,0.959679,0.242149,0.691389,0.985983,0.216719,0.268938,0.883157,0.736777,0.164525,0.412496,0.817338,0.83531,0.067792,0.807246,0.302692,0.712836,0.650984,0.30039,0.28551,0.049054,0.943038,0.831302,0.903435,0.979053,0.79293,0.953682,0.276571,0.934941,0.489493,0.775475,0.47158,0.495274,0.0864326,0.170059,0.209882,0.390573,0.521074,0.594041,0.062578,0.294142,0.56532,0.391956,0.595343,0.414947,0.667837,0.492522,0.842175,0.206627,0.262243,0.825827,0.0231809,0.675253,0.967479,0.281277,0.462201,0.181199,0.702467,0.238764,0.68587,0.198624,0.444063,0.474136,0.495972,0.531778,0.336486,0.658868,0.929307,0.638673,0.0988562,0.299971,0.450268,0.493289,0.246706,0.940209,0.758861,0.335105,0.52776,0.837468,0.0743452,0.13299,0.376637,0.737253,0.207824,0.251928,0.46507,0.696321,0.232379,0.303896,0.77433,0.517727,0.659329,0.582281,0.905201,0.943581,0.198627,0.361889,0.0705287,0.718734,0.183089,0.541792,0.60621,0.55852,0.955455,0.881756,0.217344,0.639763,0.574947,0.384377,0.474857,0.22878,0.879928,0.835435,0.550018,0.816778,0.883727,0.0201178,0.0994545,0.0694596,0.532092,0.242305,0.283827,0.808265,0.0317901,0.257183,0.754315,0.177126,0.129111,0.348332,0.647485,0.14324,0.0199854,0.869271,0.953916,0.995832,0.801517,0.120207,0.303069,0.120726,0.332736,0.273016,0.572766,0.869547,0.4058,0.471916,0.587572,0.543073,0.12852,0.877326,0.554379,0.534861,0.767163,0.510164,0.449401,0.366816,0.0319208,0.727623,0.374821,0.386,0.787061,0.345881,0.225185,0.143732,0.484183,0.109763,0.54109,0.649652,0.46363,0.930345,0.824613,0.0486047,0.622261,0.898849,0.943999,0.50389,0.123769,0.712659,0.0197329,0.634522,0.991343,0.40873,0.527059,0.106382,0.267981,0.477722,0.162899,0.327618,0.899309,0.872168,0.798499,0.819333,0.880857,0.178046,0.382907,0.544522,0.611572,0.773968,0.693429,0.237234,0.135905,0.230237,0.230798,0.206564,0.904125,0.0372438,0.94897,0.509682,0.21242,0.0888625,0.487953,0.47635,0.177366,0.810345,0.424446,0.645286,0.0148183,0.294231,0.0596007,0.113757,0.65982,0.794906,0.194182,0.605715,0.568633,0.816358,0.619463,0.397693,0.0280223,0.161171,0.744527,0.205954,0.288993,0.546579,0.528273,0.692506,0.398955,0.491789,0.383309,0.879382,0.488989,0.0934705,0.864488,0.159354,0.232034,0.195686,0.857893,0.24128,0.44687,0.184744,0.337977,0.350962,0.576355,0.409651,0.417463,0.060163,0.180001,0.450614,0.241075,0.501619,0.120918,0.703192,0.293475,0.393952,0.105569,0.297026,0.600583,0.219231,0.370548,0.476081,0.126,0.667364,0.121729,0.863368,0.897321,0.932086,0.644108,0.749877,0.286187,0.421568,0.147891,0.306712,0.461614,0.219614,0.755802,0.282414,0.80215,0.164554,0.682909,0.0508171,0.304645,0.871628,0.0351881,0.951551,0.26559,0.449578,0.434401,0.0311826,0.209735,0.049248,0.717302,0.130796,0.360732,0.834804,0.470166,0.765901,0.215895,0.255047,0.182488,0.110791,0.234404,0.724612,0.26679,0.909151,0.603357,0.34483,0.710781,0.435933,0.318726,0.917085,0.832372,0.774499,0.412555,0.425766,0.84339,0.432756,0.792276,0.821256,0.651845,0.752886,0.592158,0.794437,0.490879,0.407479,0.473603,0.244949,0.295457,0.648981,0.550907,0.416387,0.927099,0.535811,0.351006,0.587012,0.0649111,0.400471,0.785623,0.783297,0.912353,0.877645,0.157102,0.374725,0.034461,0.668972,0.58077,0.572975,0.0850996,0.484728,0.780822,0.212656,0.553227,0.791941,0.630619,0.437526,0.81504,0.740275,0.819467,0.66966,0.0362381,0.97106,0.548872,0.449815,0.794968,0.169938,0.650303,0.873061,0.179842,0.532726,0.597925,0.272147,0.752698,0.641346,0.0803056,0.930037,0.672218,0.794515,0.386418,0.92006,0.718879,0.518301,0.499329,0.525632,0.875797,0.954668,0.379958,0.140306,0.0678946,0.396456,0.545207,0.603684,0.729964,0.848034,0.917153,0.392902,0.0601832,0.868316,0.221712,0.401888,0.484177,0.0411093,0.488583,0.650343,0.904945,0.177085,0.711229,0.630792,0.898722,0.270406,0.56026,0.888013,0.333456,0.445098,0.330928,0.0376123,0.0904661,0.111493,0.409272,0.868233,0.198329,0.985586,0.329424,0.734667,0.963944,0.34366,0.355564,0.00930482,0.613746,0.924399,0.679214,0.614732,0.148524,0.439765,0.661409,0.188454,0.472726,0.858953,0.611278,0.347773,0.38109,0.643501,0.851222,0.814509,0.887551,0.89578,0.90237,0.371114,0.0491246,0.570853,0.752843,0.363933,0.400102,0.770851,0.273388,0.272635,0.27754,0.600647,0.572691,0.279875,0.534979,0.324986,0.706074,0.796697,0.607666,0.807911,0.528643,0.936052,0.401338,0.0202917,0.0783252,0.252174,0.562234,0.441443,0.582414,0.71505,0.463946,0.78936,0.708783,0.275063,0.860175,0.49332,0.789501,0.176313,0.981961,0.286178,0.593815,0.0608794,0.431202,0.526946,0.674097,0.110758,0.125846,0.809879,0.814622,0.158016,0.0840789,0.0627154,0.258161,0.574587,0.482681,0.946061,0.0992294,0.676916,0.656098,0.428968,0.88666,0.191352,0.425201,0.0776054,0.520921,0.355004,0.586829,0.837286,0.70576,0.705084,0.223081,0.607953,0.575639,0.917829,0.112379,0.920279,0.982844,0.898676,0.824027,0.316652,0.41604,0.197303,0.106235,0.744535,0.857763,0.316231,0.549786,0.847079,0.713893,0.346149,0.821797,0.822274,0.7755,0.877383,0.861097,0.438199,0.129369,0.66383,0.270163,0.996047,0.772447,0.129569,0.9395,0.995208,0.559964,0.509357,0.232163,0.293189,0.380975,0.846733,0.420578,0.820187,0.252218,0.268473,0.0744185,0.721959,0.217802,0.334641,0.119877,0.0293228,0.200805,0.446345,0.599652,0.973871,0.859579,0.00838411,0.672355,0.680652,0.511156,0.70287,0.85163,0.519551,0.901691,0.630215,0.984347,0.287704,0.951859,0.524986,0.108578,0.774449,0.590421,0.863653,0.601069,0.961143,0.539459,0.434239,0.0780122,0.277191,0.216063,0.554031,0.930578,0.457872,0.624576,0.571607,0.379695,0.953161,0.450842,0.32954,0.11064,0.892481,0.432919,0.5107,0.842217,0.663842,0.745545,0.0927895,0.452921,0.5676,0.886869,0.654535,0.617876,0.210576,0.840434,0.128157,0.103607,0.52811,0.195694,0.980218,0.338416,0.459832,0.126058,0.0439037,0.519636,0.0059042,0.916408,0.431705,0.661704,0.905539,0.951182,0.464785,0.0530766,0.645185,0.302822,0.693739,0.351907,0.404224,0.646923,0.887359,0.642107,0.23009,0.525768,0.201489,0.36841,0.0962708,0.804281,0.197162,0.317946,0.480951,0.745969,0.526797,0.156079,0.808208,0.627571,0.858809,0.918773,0.44089,0.0342118,0.351301,0.351856,0.635172,0.620206,0.124149,0.43434,0.0598953,0.213865,0.311371,0.219527,0.159649,0.529345,0.532397,0.412345,0.734997,0.455157,0.521429,0.924257,0.512479,0.196514,0.934069,0.335547,0.146416,0.650993,0.261992,0.929952,0.582085,0.0397099,0.691738,0.355529,0.569308,0.0199774,0.469097,0.391235,0.449487,0.472462,0.972308,0.339927,0.463559,0.676204,0.187387,0.925518,0.54994,0.776076,0.342043,0.915605,0.194372,0.829206,0.531943,0.200887,0.970619,0.133275,0.120422,0.832256,0.64076,0.591298,0.737042,0.079549,0.267538,0.155879,0.108307,0.614466,0.4178,0.361552,0.159118,0.0308542,0.290766,0.532217,0.363742,0.473383,0.359394,0.344535,0.873475,0.654756,0.534186,0.737071,0.898157,0.68918,0.472136,0.662343,0.158841,0.874169,0.800681,0.228025,0.524756,0.661717,0.563492,0.615183,0.157519,0.0575248,0.728973,0.603118,0.0418845,0.705764,0.0118958,0.84467,0.59276,0.358195,0.769324,0.287818,0.88112,0.5753,0.379439,0.496469,0.310006,0.264663,0.589011,0.219701,0.374112,0.00262296,0.0270079,0.399613,0.78771,0.194314,0.159588,0.664243,0.647391,0.329039,0.765026,0.369672,0.562071,0.273382,0.708854,0.437514,0.449941,0.353463,0.539923,0.547006,0.0173481,0.794032,0.870098,0.335976,0.748687,0.711346,0.497796,0.871713,0.165037,0.0920861,0.0712805,0.61016,0.718282,0.622974,0.588688,0.162241,0.761425,0.846896,0.411138,0.58785,0.407724,0.520025,0.289284,0.4772,0.293806,0.993268,0.0357158,0.572383,0.190572,0.751386,0.932022,0.778018,0.671457,0.329825,0.441523,0.415873,0.722292,0.498364,0.538774,0.96212,0.524766,0.839446,0.652059,0.364315,0.132831,0.375431,0.266598,0.286861,0.805772,0.767378,0.995657,0.893815,0.981896,0.398237,0.623617,0.0519642,0.128687,0.733291,0.157549,0.314169,0.46617,0.703238,0.854362,0.507057,0.723481,0.998763,0.709175,0.405599,0.0181557,0.0840665,0.983792,0.246735,0.229518,0.59747,0.43168,0.344416,0.0655302,0.49436,0.396844,0.204208,0.0215167,0.698128,0.256862,0.648004,0.874443,0.743855,0.659158,0.315279,0.633513,0.710265,0.88124,0.226033,0.680739,0.806221,0.374626,0.126594,0.342063,0.284229,0.188379,0.643249,0.287393,0.233812,0.333808,0.0805892,0.285505,0.643981,0.0283387,0.630812,0.400434,0.658849,0.924891,0.025947,0.579679,0.919071,0.257755,0.455983,0.876704,0.527189,0.0922834,0.654276,0.319669,0.564408,0.675432,0.905431,0.0810273,0.318617,0.545162,0.0564089,0.978626,0.0387118,0.824307,0.305153,0.573124,0.266206,0.615684,0.264262,0.769199,0.733892,0.541344,|0.249361,0.337321,0.317605,0.0531948,0.461039,0.899474,0.836576,0.268495,0.256409,0.400764,0.878866,0.38825,0.710258,0.942206,0.114816,0.7502,0.105776,0.738301,0.90082,0.859401,0.56721,0.886611,0.568446,0.774084,0.76835,0.926355,0.74064,0.383642,0.947334,0.517564,0.424611,0.09484,0.445805,0.130028,0.664494,0.00865364,0.0563773,0.962627,0.864927,0.231389,0.404849,0.0358158,0.230062,0.898884,0.565048,0.0933585,0.290665,0.987156,0.765979,0.899695,0.424526,0.66481,0.10046,0.526607,0.446692,0.822313,0.89788,0.523927,0.226902,0.113337,0.571199,0.305701,0.738637,0.60491,0.232638,0.193535,0.454201,0.895778,0.114918,0.847727,0.323889,0.900725,0.395569,0.425012,0.983049,0.419998,0.601341,0.536246,0.481404,0.995639,0.840092,0.962134,0.443217,0.472331,0.155748,0.262767,0.251308,0.19024,0.362781,0.862398,0.568625,0.12041,0.972899,0.814211,0.90993,0.686579,0.646638,0.81566,0.672654,0.702436,0.241715,0.65707,0.481933,0.431716,0.693484,0.00313461,0.902688,0.298953,0.172514,0.755758,0.664695,0.0720949,0.124053,0.871974,0.483545,0.0508826,0.245332,0.0498446,0.627534,0.931627,0.68949,0.862031,0.45531,0.000500083,0.0798365,0.494478,0.0614336,0.465865,0.446028,0.695773,0.483827,0.825893,0.860434,0.203964,0.409268,0.622676,0.130727,0.199468,0.510564,0.515581,0.714887,0.774423,0.636681,0.51923,0.145884,0.509795,0.22321,0.0715503,0.967548,0.754612,0.705834,0.680695,0.635847,0.80606,0.0323396,0.354097,0.897585,0.980353,0.296221,0.179179,0.282218,0.519999,0.105617,0.887895,0.994393,0.783011,0.965406,0.501224,0.755439,0.555781,0.31909,0.451744,0.879853,0.19852,0.7567,0.396082,0.198485,0.401087,0.462022,0.654622,0.519278,0.277103,0.00791728,0.396706,0.791063,0.238405,0.407989,0.529316,0.695146,0.089726,0.742173,0.113757,0.678609,0.99625,0.261966,0.960912,0.574866,0.284759,0.0917758,0.300878,0.981693,0.765578,0.183231,0.103122,0.607789,0.388453,0.712859,0.725568,0.443867,0.419741,0.605799,0.797552,0.460259,0.342886,0.44057,0.298563,0.606152,0.332529,0.55674,0.311513,0.115713,0.588332,0.627238,0.0985678,0.0156602,0.425418,0.790305,0.264379,0.145783,0.370422,0.710236,0.355591,0.749283,0.696708,0.20384,0.349117,0.251635,0.649707,0.77471,0.513614,0.155051,0.0622184,0.327478,0.326247,0.300251,0.216598,0.878319,0.338603,0.565993,0.654944,0.421737,0.803002,0.699101,0.285883,0.930806,0.538851,0.123264,0.89561,0.447153,0.0120038,0.695729,0.214193,0.522926,0.564651,0.846133,0.714811,0.291632,0.216925,0.622415,0.0243445,0.441388,0.453592,0.0981264,0.327449,0.854281,0.0723445,0.834784,0.329031,0.686844,0.0193483,0.369761,0.7364,0.715535,0.118422,0.332878,0.177874,0.944981,0.793734,0.202404,0.683872,0.889912,0.320746,0.0275863,0.491516,0.534768,0.75074,0.788381,0.252213,0.511754,0.46265,0.413313,0.394117,0.280904,0.59216,0.783845,0.723833,0.448553,0.119164,0.830224,0.27348,0.366046,0.492432,0.779535,0.552533,0.189581,0.923939,0.0236159,0.898654,0.739403,0.116809,0.76256,0.239776,0.416733,0.950462,0.0157178,0.0597606,0.891274,0.239344,0.204111,0.908318,0.495372,0.603312,0.393939,0.681794,0.526709,0.0899385,0.147714,0.220374,0.378213,0.178077,0.827179,0.640834,0.83548,0.283014,0.435406,0.236933,0.527671,0.430781,0.700176,0.689354,0.804527,0.168451,0.831141,0.228467,0.222324,0.815835,0.757528,0.494425,0.158296,0.591623,0.926077,0.596432,0.800689,0.887794,0.632466,0.124297,0.639961,0.996644,0.647877,0.0877959,0.347774,0.368683,0.770475,0.190624,0.813908,0.851197,0.989727,0.849304,0.982076,0.390998,0.986336,0.169255,0.584943,0.851219,0.900524,0.131673,0.383787,0.811635,0.961691,0.982749,0.290714,0.226197,0.7608,0.952353,0.704777,0.67402,0.6983,0.596925,0.633838,0.491662,0.784923,0.864533,0.294317,0.476889,0.534643,0.88207,0.255484,0.500096,0.619556,0.222067,0.575438,0.808079,0.0944965,0.510139,0.0266245,0.743972,0.906324,0.595011,0.812091,0.111895,0.946159,0.0021947,0.0174941,0.94267,0.316556,0.270457,0.79708,0.159303,0.565407,0.0371132,0.0170151,0.523239,0.934884,0.811339,0.151935,0.709425,0.971779,0.489641,0.452266,0.338816,0.828886,0.624899,0.99243,0.352399,0.0288892,0.300623,0.743885,0.928948,0.0228763,0.471694,0.352208,0.338894,0.495372,0.853279,0.541648,0.249041,0.921602,0.847932,0.918143,0.874268,0.282853,0.115186,0.279477,0.898834,0.396369,0.156208,0.344922,0.809767,0.60215,0.0769511,0.573516,0.924458,0.0926251,0.572845,0.398288,0.275104,0.89719,0.957028,0.684748,0.435142,0.960095,0.753937,0.803224,0.784144,0.661776,0.208004,0.797297,0.174908,0.473528,0.149111,0.846883,0.650218,0.153599,0.608846,0.794864,0.523111,0.88208,0.20452,0.0100059,0.557376,0.0690057,0.779512,0.667107,0.169557,0.0453532,0.947557,0.0945786,0.84578,0.727872,0.650347,0.904936,0.0874129,0.43499,0.288742,0.548825,0.1725,0.789357,0.185676,0.680817,0.029875,0.380222,0.532616,0.253199,0.507802,0.33874,0.684347,0.655128,0.803597,0.72967,0.69748,0.117068,0.415721,0.297698,0.561812,0.201725,0.657528,0.595633,0.371136,0.451281,0.198712,0.1741,0.277748,0.329704,0.593392,0.160441,0.907493,0.426593,0.719676,0.970398,0.0903561,0.176289,0.903249,0.418785,0.552737,0.0309602,0.506584,0.499712,0.248858,0.659448,0.0833541,0.735101,0.253581,0.174106,0.430734,0.0453594,0.222822,0.532964,0.252503,0.766093,0.284121,0.406056,0.474741,0.270285,0.630871,0.892952,0.935286,0.583476,0.205815,0.0853797,0.0717496,0.777836,0.838683,0.245832,0.187761,0.0659115,0.294415,0.520133,0.372917,0.0260991,0.716798,0.967101,0.806719,0.372615,0.987245,0.808296,0.975765,0.975044,0.553186,0.517291,0.909075,0.945154,0.735573,0.596555,0.959048,0.0112054,0.104297,0.938981,0.961721,0.970136,0.423705,0.377643,0.470561,0.130261,0.279775,0.544144,0.058083,0.215255,0.0645114,0.945292,0.571582,0.84907,0.659743,0.510341,0.468919,0.556384,0.30769,0.314261,0.332868,0.961913,0.567847,0.949899,0.900628,0.582672,0.315755,0.521875,0.520164,0.361866,0.0418808,0.704534,0.364441,0.373512,0.475929,0.67636,0.863416,0.615017,0.770647,0.355369,0.830828,0.741915,0.521482,0.673961,0.709807,0.943255,0.218074,0.471134,0.216343,0.534294,0.920581,0.208543,0.896572,0.579435,0.129576,0.52529,0.712746,0.71699,0.68992,0.145482,0.30418,0.387538,0.943287,0.184576,0.392329,0.687346,0.0993248,0.550262,0.0430833,0.883151,0.0133365,0.556859,0.657064,0.799678,0.29411,0.329306,0.432119,0.775432,0.13281,0.430326,0.972816,0.431271,0.79578,0.137,0.941189,0.903421,0.232073,0.705774,0.966692,0.00294876,0.418738,0.614056,0.755795,0.180808,0.150324,0.284401,0.826899,0.952475,0.126047,0.68098,0.741321,0.496042,0.234036,0.090872,0.610715,0.166718,0.551803,0.0846887,0.923065,0.967387,0.566855,0.893611,0.947313,0.345671,0.574219,0.812793,0.368418,0.36721,0.214961,0.569661,0.773949,0.834139,0.259018,0.719382,0.493009,0.346417,0.991866,0.63755,0.797498,0.200998,0.39152,0.0599878,0.91981,0.407886,0.869808,0.428836,0.193202,0.51354,0.0732489,0.0477121,0.0815606,0.827917,0.214466,0.0876416,0.530192,0.349132,0.79306,0.104853,0.48096,0.00249439,0.127275,0.722632,0.212337,0.385397,0.0994309,0.45896,0.284228,0.952111,0.36914,0.895841,0.38517,0.289476,0.445039,0.570742,0.130827,0.168982,0.608677,0.509827,0.665044,0.847724,0.0402952,0.512968,0.300053,0.1191,0.309943,0.422395,0.572083,0.144042,0.541474,0.582176,0.782924,0.969978,0.746718,0.256086,0.994469,0.173706,0.709502,0.204615,0.274149,0.53548,0.934518,0.368534,0.761629,0.62174,0.322711,0.940782,0.577103,0.865351,0.670679,0.451158,0.192814,0.435125,0.422487,0.0409952,0.746917,0.186579,0.480513,0.347806,0.204973,0.873797,0.1886,0.00969529,0.0504689,0.0618946,0.0729296,0.673104,0.36591,0.103879,0.828793,0.323064,0.437279,0.156628,0.399915,0.815689,0.426352,0.959773,0.166319,0.0992965,0.311692,0.0452349,0.452928,0.249524,0.354279,0.257921,0.249287,0.19083,0.80069,0.0755587,0.371731,0.115117,0.758994,0.357229,0.541051,0.22938,0.322565,0.0138714,0.833678,0.685376,0.200704,0.72147,0.369093,0.480206,0.743546,0.934202,0.934891,0.635934,0.956587,0.904051,0.0183396,0.666488,0.223924,0.928184,0.954002,0.982258,0.951607,0.758209,0.819793,0.778548,0.807411,0.839506,0.353335,0.64294,0.0590467,0.962866,0.502201,0.323623,0.829511,0.919474,0.400822,0.328165,0.987551,0.00219595,0.258517,0.644713,0.610049,0.210347,0.39143,0.123797,0.395666,0.81614,0.832203,0.395093,0.578343,0.747549,0.909759,0.823581,0.502671,0.0905172,0.037977,0.498577,0.206635,0.578439,0.21614,0.103925,0.733154,0.0901074,0.107034,0.101843,0.460438,0.928644,0.150162,0.529976,0.568306,0.962967,0.913093,0.474345,0.685172,0.283842,0.185336,0.79192,0.76502,0.195678,0.447606,0.780499,0.2663,0.113972,0.385245,0.611188,0.551152,0.688407,0.0721561,0.800521,0.00743854,0.298412,0.171923,0.401473,0.455546,0.861256,0.51469,0.274246,0.816316,0.304239,0.817326,0.118802,0.416651,0.900088,0.814308,0.609131,0.855765,0.463351,0.103502,0.491102,0.252511,0.238995,0.0883033,0.952156,0.487644,0.920964,0.451895,0.764652,0.361317,0.156376,0.675338,0.673912,0.163518,0.270313,0.0751995,0.401694,0.936294,0.133509,0.542266,0.0091145,0.0263005,0.629188,0.0816894,0.933594,0.693954,0.884316,0.942136,0.852723,0.460248,0.743174,0.0990475,0.869397,0.330297,0.937032,0.928973,0.501144,0.390049,0.949736,0.560353,0.345601,0.913901,|0.535711,0.908451,0.478096,0.842982,0.396593,0.354369,0.603176,0.652731,0.904919,0.484224,0.0711915,0.853147,0.232025,0.165934,0.629409,0.597334,0.685635,0.347988,0.952705,0.666848,0.872367,0.299585,0.520077,0.0702593,0.604884,0.325818,0.144366,0.409537,0.883083,0.726678,0.581111,0.790555,0.957893,0.442611,0.785623,0.296308,0.830551,0.444192,0.0329686,0.841373,0.0778971,0.712773,0.94317,0.804078,0.212232,0.782237,0.416873,0.774694,0.759205,0.862441,0.859193,0.60871,0.172128,0.0171457,0.571906,0.740929,0.224503,0.459789,0.942788,0.657495,0.645843,0.747069,0.714677,0.940728,0.333269,0.571146,0.443812,0.058366,0.705961,0.488361,0.517429,0.994907,0.0929883,0.401368,0.0620329,0.98828,0.915515,0.820968,0.399264,0.578475,0.515123,0.245569,0.20783,0.122986,0.397752,0.0119582,0.714172,0.17102,0.445364,0.785357,0.735182,0.876623,0.0312702,0.00550926,0.674582,0.24526,0.575837,0.0625454,0.972773,0.105335,0.334993,0.675779,0.120949,0.767102,0.994383,0.0545914,0.110778,0.723785,0.867578,0.335852,0.302016,0.11215,0.863938,0.764391,0.331537,0.0124726,0.000398159,0.0431593,0.961224,0.454644,0.891585,0.545812,0.425306,0.393192,0.828428,0.668204,0.0337837,0.744735,0.555437,0.252824,0.15172,0.125015,0.323612,0.945894,0.649962,0.20267,0.87596,0.0966911,0.856525,0.464551,0.980996,0.885493,0.339961,0.561012,0.00383329,0.949375,0.829718,0.129593,0.561689,0.847706,0.706713,0.869674,0.216222,0.427063,0.0296466,0.0914472,0.484158,0.349725,0.375845,0.0459448,0.120342,0.552419,0.30988,0.705217,0.876932,0.0314396,0.452426,0.0848427,0.0607569,0.0376979,0.777736,0.876568,0.118629,0.123752,0.87307,0.630582,0.00713795,0.52527,0.623125,0.362083,0.880614,0.976696,0.628515,0.751305,0.767448,0.289878,0.0452278,0.726096,0.13249,0.97999,0.970878,0.0722753,0.636684,0.340301,0.772385,0.0251585,0.383154,0.0766641,0.623094,0.693678,0.80441,0.444592,0.0310878,0.530357,0.814364,0.220806,0.0859231,0.873745,0.46883,0.680825,0.692721,0.146628,0.378066,0.443599,0.24312,0.696281,0.636467,0.720592,0.323565,0.403978,0.235988,0.756999,0.370835,0.990217,0.253195,0.682558,0.811174,0.477332,0.0326062,0.757105,0.786344,0.395734,0.626388,0.387823,0.609874,0.592071,0.178154,0.899423,0.485336,0.788246,0.779027,0.724091,0.501912,0.984761,0.767674,0.771256,0.825462,0.297262,0.181458,0.409583,0.482132,0.784254,0.890338,0.79567,0.430831,0.164335,0.253525,0.581144,0.845133,0.357202,0.984086,0.835562,0.678524,0.808889,0.735022,0.00514323,0.0403737,0.740334,0.231804,0.257009,0.281295,0.775104,0.186402,0.603791,0.708834,0.856186,0.689585,0.417128,0.490201,0.147828,0.970975,0.568752,0.401167,0.615508,0.50223,0.940184,0.556047,0.617802,0.950252,0.512325,0.0638479,0.4701,0.281581,0.819998,0.826277,0.924651,0.922595,0.700031,0.150323,0.0143668,0.909987,0.839875,0.0603193,0.237747,0.937532,0.675678,0.568448,0.154675,0.579349,0.838661,0.970176,0.401831,0.207888,0.869905,0.525098,0.0369142,0.872956,0.912004,0.330395,0.478667,0.139303,0.670837,0.462135,0.627078,0.748311,0.307861,0.656917,0.659529,0.557024,0.264838,0.930377,0.101507,0.0983005,0.198653,0.123783,0.515657,0.586354,0.397264,0.210363,0.925735,0.0894962,0.866584,0.619253,0.613566,0.487723,0.786883,0.149272,0.676465,0.308226,0.73405,0.872483,0.869876,0.569946,0.620918,0.0243255,0.244663,0.576819,0.346474,0.446644,0.33591,0.599047,0.571375,0.0604789,0.00448841,0.971249,0.0668861,0.602229,0.983344,0.626179,0.318864,0.602681,0.095828,0.297576,0.64559,0.832467,0.708223,0.526678,0.821067,0.12077,0.464408,0.576301,0.279136,0.0915074,0.630274,0.850723,0.597223,0.121851,0.315671,0.0908539,0.376701,0.125705,0.494436,0.818379,0.815178,0.62182,0.303782,0.101968,0.557326,0.524314,0.141562,0.791017,0.508946,0.780492,0.299967,0.418879,0.424098,0.446524,0.192662,0.238858,0.0753288,0.469381,0.471719,0.812561,0.779687,0.271362,0.947421,0.784288,0.274072,0.378189,0.896186,0.553768,0.895508,0.750018,0.258657,0.209686,0.285706,0.690537,0.599778,0.543946,0.583817,0.911835,0.102646,0.893355,0.971227,0.747904,0.157332,0.473933,0.778186,0.672615,0.998721,0.088296,0.180632,0.35298,0.722324,0.554269,0.63742,0.974845,0.143398,0.26766,0.973112,0.756151,0.934134,0.630897,0.361633,0.855404,0.250568,0.949047,0.0276917,0.344369,0.76473,0.478449,0.702236,0.498985,0.00310761,0.156698,0.697881,0.550635,0.908492,0.638072,0.218513,0.529927,0.786806,0.913282,0.996948,0.727345,0.971406,0.318941,0.8193,0.328736,0.0803319,0.807115,0.042836,0.668351,0.58413,0.715734,0.864118,0.598276,0.0830942,0.563629,0.729351,0.105938,0.657372,0.990797,0.691706,0.24095,0.296404,0.908667,0.939302,0.606013,0.535089,0.0381635,0.432794,0.0342659,0.403567,0.0976782,0.691642,0.567362,0.232029,0.307939,0.276606,0.701974,0.973383,0.463009,0.28072,0.0504803,0.788764,0.326337,0.219521,0.977172,0.77105,0.363329,0.607018,0.000953615,0.709051,0.304692,0.783631,0.882762,0.922581,0.834147,0.162755,0.413877,0.291807,0.82914,0.0152858,0.0278116,0.0469794,0.828811,0.0268475,0.811377,0.192656,0.829456,0.80174,0.0101141,0.322949,0.313895,0.97232,0.614495,0.659524,0.965703,0.688988,0.693146,0.767943,0.706054,0.425717,0.808061,0.578176,0.925148,0.51784,0.100341,0.122707,0.638682,0.350315,0.147903,0.33545,0.473944,0.877748,0.465199,0.384941,0.24091,0.0987965,0.386892,0.908025,0.794714,0.887704,0.576797,0.961787,0.676575,0.329814,0.485977,0.70091,0.532648,0.733293,0.933327,0.1981,0.677125,0.985906,0.592287,0.512909,0.766579,0.197869,0.310304,0.46124,0.469739,0.974276,0.90367,0.306783,0.453957,0.236119,0.0722686,0.990802,0.990759,0.288522,0.0214571,0.228836,0.459282,0.265627,0.924327,0.115374,0.746544,0.912538,0.741958,0.432127,0.667063,0.192583,0.145499,0.460716,0.774682,0.621757,0.731073,0.611082,0.973842,0.945384,0.358728,0.351753,0.444827,0.503844,0.851192,0.620997,0.184706,0.869274,0.808213,0.110511,0.0235698,0.363298,0.455355,0.576303,0.234889,0.66898,0.921718,0.655616,0.0497962,0.594714,0.724991,0.0954936,0.759195,0.781091,0.233392,0.649244,0.921243,0.964263,0.200715,0.0233334,0.0740764,0.271029,0.792923,0.802848,0.390188,0.550049,0.881008,0.747164,0.0116829,0.689856,0.430075,0.0721132,0.746666,0.344946,0.487355,0.128066,0.921124,0.588358,0.465572,0.85386,0.466671,0.858321,0.00449002,0.868587,0.899826,0.412472,0.138002,0.271697,0.644913,0.223163,0.821475,0.775953,0.0417696,0.341641,0.586834,0.00963396,0.0814286,0.436013,0.971047,0.15164,0.0551437,0.88265,0.858359,0.58712,0.774023,0.993247,0.476586,0.433719,0.797854,0.37515,0.899861,0.840154,0.143043,0.118616,0.247231,0.708856,0.00101286,0.645532,0.640294,0.645121,0.333955,0.042632,0.997382,0.989498,0.557027,0.215719,0.182955,0.0678602,0.113885,0.875171,0.548505,0.428929,0.169846,0.624762,0.903177,0.0619836,0.378277,0.543054,0.22688,0.6561,0.98157,0.229899,0.737109,0.0389779,0.244738,0.53573,0.366546,0.0203629,0.609122,0.232161,0.0536062,0.802877,0.749062,0.891648,0.994128,0.75373,0.657577,0.104884,0.20209,0.312403,0.241488,0.64297,0.637599,0.290696,0.583176,0.516667,0.236337,0.957644,0.144836,0.786536,0.561121,0.199768,0.767843,0.398896,0.661559,0.145766,0.613041,0.121875,0.646883,0.987603,0.698764,0.354144,0.187569,0.882967,0.0252209,0.0246765,0.348378,0.854833,0.825127,0.155336,0.0673877,0.120457,0.525541,0.88319,0.180701,0.942563,0.632904,0.0525119,0.376082,0.246634,0.764647,0.348352,0.160352,0.818233,0.383059,0.807718,0.889279,0.24483,0.702605,0.680816,0.521372,0.562261,0.197078,0.753911,0.0759547,0.0726789,0.97973,0.988175,0.079029,0.670532,0.408562,0.66704,0.312105,0.17493,0.634838,0.478778,0.263497,0.123697,0.998663,0.134892,0.245341,0.970113,0.83243,0.502733,0.964874,0.203995,0.735129,0.602575,0.118577,0.058796,0.604981,0.169697,0.997145,0.298945,0.320385,0.396009,0.207256,0.489198,0.834569,0.049639,0.0242267,0.604998,0.443117,0.00946677,0.621197,0.073859,0.0932724,0.749021,0.489073,0.84187,0.634644,0.0933871,0.984788,0.608254,0.323107,0.43477,0.141177,0.939856,0.186845,0.379092,0.480367,0.55995,0.0937881,0.192653,0.897088,0.587865,0.740085,0.514519,0.0218149,0.218455,0.602224,0.724501,0.143593,0.777448,0.0904785,0.326533,0.996042,0.468133,0.697709,0.248482,0.274137,0.207383,0.60816,0.346195,0.600652,0.120314,0.23949,0.524822,0.294155,0.82892,0.237404,0.716831,0.480689,0.80374,0.582078,0.0945922,0.866837,0.775311,0.442589,0.155512,0.0990654,0.647726,0.580428,0.214197,0.32407,0.680377,0.462813,0.107251,0.310212,0.470121,0.21472,0.212268,0.780338,0.235809,0.987825,0.129733,0.849845,0.921193,0.730109,0.862772,0.270451,0.66398,0.00347781,0.134564,0.416607,0.960773,0.664365,0.241957,0.154762,0.509588,0.647725,0.315001,0.13958,0.883846,0.494743,0.739681,0.86829,0.402374,0.822137,0.286691,0.94439,0.795324,0.285182,0.780793,0.190916,0.030857,0.544253,0.360045,0.832997,0.490894,0.241365,0.945086,0.6132,0.0193658,0.591697,0.472753,0.825115,0.780957,0.277419,0.276173,0.053025,0.933657,0.847068,0.784936,0.353687,0.769858,0.518532,0.486643,0.730938,0.882329,0.0784562,0.9027,0.762148,0.271924,0.0774109,0.337868,0.0673816,0.341842,0.470829,0.731058,0.804203,0.266852,0.660512,0.704575,0.735755,0.7999,0.103557,0.316039,0.00940746,0.61432,0.660449,0.2216,0.848959,0.646594,0.831454,0.291448,0.650815,0.6773,|0.814903,0.815098,0.542539,0.369143,0.57661,0.390017,0.436732,0.552754,0.597871,0.961671,0.709289,0.613461,0.0114242,0.407858,0.968141,0.384715,0.621956,0.273032,0.13268,0.794064,0.70394,0.35275,0.487927,0.835913,0.607906,0.213713,0.579325,0.807642,0.564028,0.238901,0.378569,0.642839,0.785562,0.440886,0.544457,0.691376,0.334583,0.411111,0.161155,0.302335,0.346901,0.642476,0.231123,0.375308,0.819421,0.500289,0.478302,0.318348,0.754759,0.754201,0.712043,0.534845,0.787678,0.332227,0.858679,0.0732391,0.588051,0.165097,0.734847,0.952365,0.190136,0.232764,0.526186,0.0603719,0.742904,0.227894,0.450906,0.437502,0.0120479,0.163788,0.580343,0.737992,0.748955,0.906796,0.91263,0.281107,0.502385,0.689155,0.845703,0.751836,0.145702,0.316896,0.691017,0.397455,0.710045,0.00223517,0.824736,0.857975,0.470237,0.747486,0.0369434,0.473732,0.828548,0.381904,0.191386,0.0154327,0.777599,0.717354,0.374833,0.309828,0.102991,0.774303,0.427495,0.722724,0.422185,0.731699,0.51719,0.330161,0.98445,0.528821,0.170589,0.316488,0.692601,0.930202,0.0936149,0.0254992,0.970818,0.952958,0.706888,0.300038,0.753058,0.999793,0.781865,0.974721,0.890235,0.195541,0.459234,0.480295,0.434788,0.670981,0.083273,0.323837,0.976679,0.789039,0.934126,0.316642,0.157117,0.37194,0.953838,0.766007,0.587448,0.55835,0.267805,0.0977727,0.309433,0.155618,0.759591,0.958712,0.599917,0.427055,0.475037,0.0258768,0.566524,0.734285,0.567429,0.996998,0.0946796,0.181228,0.0924714,0.103146,0.546284,0.417066,0.216546,0.492528,0.51069,0.986429,0.14823,0.599286,0.880403,0.00419551,0.908362,0.685145,0.510331,0.798933,0.68872,0.0598644,0.166793,0.72856,0.0736634,0.46675,0.882055,0.066178,0.119621,0.233647,0.02751,0.94094,0.17582,0.801417,0.610401,0.321409,0.586649,0.672783,0.199016,0.0355388,0.657464,0.725664,0.616326,0.809587,0.40991,0.362461,0.739108,0.0554443,0.717981,0.79523,0.101638,0.578347,0.447255,0.565955,0.193686,0.990814,0.890549,0.614407,0.110229,0.941116,0.852442,0.671043,0.525559,0.412079,0.711286,0.270782,0.230791,0.651615,0.30218,0.214054,0.688852,0.315077,0.385047,0.922073,0.320043,0.591988,0.703352,0.515553,0.670337,0.55203,0.460085,0.673459,0.684076,0.548165,0.0276138,0.686467,0.22189,0.513898,0.460857,0.402151,0.513914,0.587558,0.206977,0.00318545,0.765827,0.0868577,0.619331,0.764091,0.133258,0.788187,0.16005,0.245532,0.521457,0.165631,0.906567,0.413343,0.648716,0.654181,0.835541,0.495745,0.947984,0.861938,0.441847,0.191152,0.958302,0.231551,0.428884,0.719675,0.273563,0.349669,0.64661,0.75528,0.252447,0.454248,0.937961,0.420548,0.828889,0.110994,0.0871705,0.0152503,0.0190742,0.0651186,0.433883,0.92598,0.224753,0.435235,0.94008,0.964847,0.0713153,0.986004,0.386917,0.262964,0.701529,0.551133,0.154542,0.317228,0.974081,0.00264925,0.961589,0.495889,0.4336,0.798764,0.6276,0.543874,0.87559,0.729243,0.220684,0.288006,0.217252,0.0317512,0.41584,0.171344,0.053524,0.629677,0.636729,0.689574,0.288442,0.939509,0.897911,0.833162,0.970136,0.760897,0.180055,0.856925,0.67859,0.121797,0.318923,0.743889,0.134968,0.785618,0.0331886,0.209165,0.428667,0.271553,0.713354,0.212172,0.336753,0.591624,0.119994,0.70139,0.823868,0.791857,0.64976,0.87398,0.960889,0.00378388,0.687136,0.56975,0.792465,0.000338197,0.353805,0.775689,0.616745,0.847622,0.34661,0.988188,0.57754,0.809618,0.596518,0.65737,0.624891,0.607476,0.0378339,0.301789,0.89628,0.294002,0.732144,0.648806,0.200334,0.545159,0.982309,0.162129,0.241961,0.631369,0.860899,0.0433924,0.383656,0.416891,0.671844,0.137215,0.460706,0.641833,0.18414,0.698251,0.941776,0.678872,0.330447,0.18822,0.916714,0.765003,0.738065,0.871676,0.481219,0.85201,0.871239,0.149929,0.466422,0.510147,0.343655,0.969464,0.499517,0.731372,0.147302,0.197049,0.114811,0.910819,0.24374,0.0853182,0.792613,0.656755,0.366359,0.896091,0.0511649,0.172958,0.0992472,0.825537,0.344072,0.229837,0.384389,0.295958,0.0246351,0.236005,0.413942,0.93742,0.947778,0.263359,0.56663,0.185839,0.42218,0.262045,0.992222,0.377614,0.335848,0.989549,0.607028,0.792644,0.466636,0.0939405,0.537626,0.30336,0.405795,0.418884,0.367697,0.72218,0.853463,0.18982,0.0948028,0.291678,0.775797,0.609818,0.709532,0.578976,0.72063,0.883434,0.349103,0.649641,0.575206,0.910886,0.21507,0.0270895,0.927849,0.474124,0.0268757,0.280129,0.339122,0.749072,0.792161,0.944897,0.886325,0.519676,0.140547,0.727301,0.930018,0.278614,0.686862,0.610404,0.0151534,0.377697,0.0886713,0.30168,0.556214,0.748112,0.631354,0.789495,0.509017,0.772432,0.636839,0.00294828,0.060744,0.290733,0.651602,0.242017,0.0714091,0.987617,0.945503,0.141132,0.41562,0.0550562,0.159633,0.651961,0.381297,0.986131,0.496836,0.145988,0.651414,0.0859237,0.712081,0.521382,0.52623,0.452141,0.118813,0.895548,0.408261,0.428429,0.172478,0.684868,0.345814,0.120285,0.0599529,0.24105,0.587332,0.0526203,0.577711,0.0428523,0.598741,0.721036,0.416539,0.408157,0.185304,0.536126,0.525263,0.946413,0.863943,0.265464,0.745321,0.619213,0.687474,0.177774,0.785124,0.98076,0.868271,0.488677,0.109014,0.828867,0.923207,0.104786,0.00768328,0.64126,0.168975,0.95284,0.656415,0.46546,0.435962,0.437419,0.802601,0.494204,0.562442,0.571869,0.253347,0.628353,0.69424,0.577432,0.28878,0.132732,0.140336,0.837435,0.430944,0.428155,0.00305396,0.984415,0.500903,0.0181401,0.288401,0.965781,0.190068,0.196173,0.944472,0.645804,0.73599,0.978583,0.513604,0.06752,0.440735,0.191871,0.410751,0.308305,0.0256364,0.567692,0.604907,0.430026,0.0439473,0.779967,0.526066,0.788088,0.30226,0.569391,0.466926,0.611676,0.959229,0.939866,0.38573,0.688111,0.36687,0.192713,0.501456,0.343918,0.244046,0.111493,0.290711,0.193214,0.438349,0.379777,0.14928,0.700747,0.156727,0.237955,0.032325,0.219492,0.576775,0.271676,0.381737,0.970102,0.373844,0.278183,0.935317,0.666893,0.22475,0.451877,0.785892,0.798134,0.165585,0.435505,0.159996,0.88304,0.825717,0.78105,0.215878,0.645997,0.034377,0.860167,0.154718,0.601088,0.158795,0.68852,0.701978,0.87196,0.786014,0.845363,0.579899,0.85058,0.109871,0.849252,0.387425,0.497095,0.776493,0.0536378,0.000304163,0.54411,0.950293,0.173122,0.657428,0.961603,0.897606,0.518205,0.861667,0.192157,0.786522,0.434855,0.578068,0.871698,0.439326,0.516218,0.0360469,0.66344,0.46246,0.396688,0.712515,0.366661,0.302319,0.187775,0.00692999,0.181098,0.644665,0.928383,0.335187,0.518121,0.723362,0.608651,0.917584,0.153374,0.560213,0.327708,0.400395,0.427913,0.606753,0.676643,0.377235,0.407104,0.876526,0.303105,0.238908,0.331039,0.365394,0.512258,0.215243,0.617815,0.811982,0.825627,0.032411,0.97793,0.0674954,0.480768,0.988111,0.598748,0.84479,0.0866697,0.331591,0.672716,0.261861,0.164242,0.182483,0.812785,0.834434,0.573391,0.0336884,0.906351,0.69983,0.444842,0.943749,0.0563037,0.605842,0.107022,0.777906,0.452597,0.85872,0.228688,0.291709,0.869728,0.715735,0.915895,0.200829,0.672043,0.273472,0.460088,0.192292,0.0544248,0.406349,0.00445789,0.880056,0.793722,0.255365,0.611441,0.64516,0.900838,0.416287,0.581037,0.380987,0.398584,0.719851,0.947871,0.449102,0.962336,0.840707,0.0912328,0.280865,0.0730728,0.851091,0.222651,0.878013,0.835028,0.399127,0.993079,0.584999,0.838834,0.944489,0.186836,0.647877,0.952466,0.0198435,0.733727,0.983485,0.48151,0.922578,0.470855,0.781202,0.129304,0.191524,0.737391,0.873672,0.756404,0.451428,0.258178,0.135284,0.823898,0.327342,0.789221,0.939985,0.739232,0.804482,0.795919,0.707572,0.494964,0.0575418,0.932459,0.50808,0.943599,0.64696,0.322156,0.613247,0.875346,0.0188758,0.43898,0.810332,0.940729,0.421389,0.853325,0.641864,0.754062,0.756989,0.126162,0.122895,0.546507,0.163014,0.803551,0.591141,0.34425,0.00888884,0.637792,0.329824,0.683256,0.112818,0.510351,0.482625,0.299284,0.710672,0.413521,0.53116,0.581145,0.182885,0.215833,0.12553,0.490388,0.900723,0.477455,0.464886,0.279361,0.299794,0.140099,0.549273,0.219228,0.932273,0.0560364,0.258955,0.72154,0.755716,0.660224,0.34846,0.801438,0.696463,0.462201,0.825156,0.971406,0.023239,0.670045,0.240667,0.658999,0.626833,0.831215,0.914533,0.898662,0.46491,0.20953,0.00143832,0.667711,0.93023,0.24572,0.407077,0.408153,0.427987,0.920117,0.98524,0.679696,0.790214,0.909137,0.190533,0.561573,0.382742,0.394872,0.15167,0.707394,0.684217,0.863175,0.125879,0.631925,0.425385,0.37946,0.00106359,0.0191145,0.137494,0.867638,0.619463,0.241388,0.667281,0.541546,0.692323,0.403212,0.318237,0.910682,0.682633,0.705387,0.530471,0.160784,0.425937,0.880336,0.514551,0.389562,0.0553592,0.946504,0.209091,0.959995,0.321694,0.942553,0.556638,0.842458,0.141228,0.764503,0.789995,0.480592,0.595493,0.592428,0.886702,0.0853815,0.05819,0.862093,0.985664,0.143699,0.59853,0.596241,0.142288,0.358768,0.480705,0.00504541,0.225908,0.206605,0.583667,0.229142,0.353022,0.993389,0.270963,0.783345,0.782993,0.64238,0.925247,0.612185,0.795372,0.18174,0.753833,0.135539,0.44346,0.271552,0.732819,0.786701,0.0747012,0.957364,0.344013,0.788155,0.517694,0.23866,0.258111,0.128886,0.912124,0.180202,0.981387,0.521389,0.946646,0.763022,0.709969,0.168432,0.802229,0.208959,0.354072,0.778614,0.230088,0.784351,0.315706,0.493014,0.833182,0.569229,0.863755,0.127013,0.440706,0.42547,0.252209,0.327637,0.577314,0.301685,|0.481485,0.931936,0.27681,0.51631,0.108779,0.948331,0.744907,0.598433,0.0325902,0.429289,0.622558,0.953483,0.122283,0.0482529,0.274576,0.10942,0.542399,0.278333,0.653307,0.689826,0.155524,0.796672,0.879885,0.49374,0.744895,0.940462,0.877888,0.184666,0.230785,0.479473,0.878816,0.749525,0.679176,0.497454,0.643882,0.466437,0.874183,0.0208335,0.199332,0.254634,0.968618,0.043873,0.154095,0.0359488,0.970382,0.856026,0.716153,0.460392,0.561841,0.523543,0.312111,0.232842,0.584825,0.107971,0.958506,0.531981,0.722798,0.673921,0.734867,0.71769,0.0688071,0.773638,0.35359,0.28752,0.246331,0.812939,0.541862,0.217667,0.241444,0.00587022,0.163557,0.652802,0.835297,0.0142727,0.636235,0.0147642,0.734204,0.290589,0.0311094,0.481996,0.119111,0.956363,0.180605,0.434201,0.173495,0.813316,0.916014,0.177822,0.376624,0.53395,0.571872,0.227789,0.766482,0.943872,0.581967,0.887023,0.735398,0.554262,0.949876,0.256643,0.891811,0.521037,0.269207,0.424917,0.633665,0.176718,0.396563,0.261045,0.773726,0.570997,0.817058,0.812194,0.437554,0.7714,0.514402,0.635909,0.141784,0.652484,0.0245191,0.413088,0.354181,0.226835,0.25691,0.179984,0.624794,0.830792,0.0690916,0.391531,0.891281,0.0176232,0.152684,0.164553,0.386857,0.702396,0.840467,0.0645747,0.993862,0.399351,0.0975806,0.0731742,0.647847,0.355499,0.0227132,0.927188,0.437392,0.793576,0.630031,0.751055,0.329279,0.957019,0.490912,0.161235,0.167931,0.531684,0.72614,0.79597,0.937811,0.717919,0.0259276,0.61347,0.342859,0.0931843,0.864467,0.023406,0.394455,0.950379,0.393389,0.780353,0.428419,0.607575,0.95488,0.192485,0.982807,0.929975,0.526886,0.665669,0.157211,0.634738,0.233482,0.0854256,0.770418,0.142681,0.485797,0.117195,0.0860386,0.790641,0.0544198,0.281374,0.138415,0.296716,0.597245,0.657765,0.766731,0.506111,0.150487,0.452142,0.152541,0.120634,0.686666,0.133915,0.0994407,0.256836,0.796066,0.445613,0.0202338,0.579047,0.663684,0.344893,0.0327771,0.689117,0.487779,0.90246,0.349333,0.613217,0.963711,0.866359,0.124281,0.917695,0.283419,0.412119,0.181029,0.303334,0.635446,0.608714,0.834628,0.647925,0.0288967,0.103934,0.873319,0.0362566,0.00627512,0.913567,0.592926,0.587436,0.0741823,0.448564,0.35879,0.946858,0.41517,0.629628,0.799085,0.711906,0.618618,0.657599,0.192636,0.435157,0.735451,0.143345,0.154968,0.0886491,0.109233,0.532277,0.72087,0.35216,0.666584,0.663153,0.329002,0.55414,0.989749,0.384956,0.949431,0.625795,0.946484,0.469341,0.394117,0.863844,0.839805,0.462839,0.366778,0.178677,0.689858,0.340734,0.0678988,0.608479,0.125875,0.481349,0.683688,0.512362,0.679787,0.0766761,0.387972,0.0236397,0.833608,0.676984,0.58595,0.241743,0.358426,0.975087,0.895849,0.0946043,0.856846,0.915885,0.78231,0.0939146,0.0584508,0.404448,0.00042969,0.321177,0.454626,0.487705,0.75207,0.237334,0.108107,0.739599,0.299156,0.361187,0.772306,0.271424,0.962129,0.60404,0.785369,0.856621,0.845706,0.29908,0.470803,0.276702,0.382344,0.33936,0.684807,0.369905,0.344389,0.951167,0.534105,0.456541,0.640264,0.413255,0.751498,0.768218,0.737756,0.454453,0.945402,0.596811,0.851691,0.490045,0.963962,0.668511,0.818981,0.273455,0.132446,0.580993,0.566893,0.720566,0.420463,0.327626,0.35547,0.710827,0.829536,0.808783,0.295137,0.495189,0.702471,0.244266,0.918808,0.158281,0.775926,0.69103,0.449137,0.250469,0.770938,0.617821,0.827664,0.194763,0.115151,0.968114,0.279654,0.271868,0.177499,0.291726,0.0136408,0.484069,0.542759,0.580081,0.864217,0.343257,0.21266,0.112028,0.0786795,0.895131,0.691994,0.535001,0.14971,0.889822,0.0356681,0.738763,0.243674,0.185685,0.317876,0.389245,0.68173,0.161804,0.29037,0.682206,0.428476,0.321339,0.655593,0.996235,0.659115,0.416341,0.805319,0.836019,0.694628,0.507261,0.0504849,0.537169,0.975978,0.471685,0.498327,0.819908,0.279131,0.780979,0.275391,0.643969,0.201146,0.224738,0.535519,0.469715,0.117254,0.915983,0.887195,0.0445424,0.345138,0.957796,0.603153,0.417798,0.226195,0.458454,0.488624,0.67358,0.479381,0.684375,0.832981,0.261413,0.322259,0.085834,0.442686,0.069546,0.0149907,0.47857,0.664577,0.649645,0.766788,0.611647,0.966062,0.92224,0.453812,0.481269,0.257226,0.718328,0.185144,0.0216261,0.704717,0.19343,0.0891834,0.77399,0.272402,0.337926,0.887355,0.381806,0.411196,0.0700204,0.369592,0.407372,0.108764,0.892165,0.288404,0.353243,0.911788,0.0947413,0.847266,0.944837,0.393246,0.28246,0.950304,0.983354,0.253819,0.785613,0.685233,0.64214,0.115153,0.838424,0.771474,0.185977,0.0715068,0.607704,0.315897,0.995065,0.656028,0.332144,0.670809,0.998819,0.55013,0.990178,0.126928,0.536363,0.19339,0.926408,0.839008,0.861826,0.0631453,0.343191,0.0642757,0.227579,0.914609,0.983933,0.607853,0.642087,0.86696,0.9622,0.257914,0.857909,0.279278,0.415811,0.706073,0.614673,0.476604,0.078311,0.381128,0.916166,0.740322,0.837382,0.693241,0.166729,0.702764,0.635909,0.882777,0.857755,0.686928,0.751419,0.76512,0.468015,0.791557,0.650674,0.845755,0.384497,0.830891,0.344784,0.861581,0.252809,0.419252,0.700674,0.205867,0.239652,0.545001,0.328048,0.201502,0.951617,0.960127,0.521117,0.368911,0.0704818,0.770596,0.580543,0.905153,0.110935,0.0267646,0.253063,0.606208,0.555039,0.733039,0.439598,0.49372,0.89651,0.0171365,0.925171,0.697986,0.981684,0.108303,0.901186,0.386825,0.244476,0.813029,0.396279,0.433964,0.113858,0.2815,0.61063,0.540675,0.13176,0.214501,0.761848,0.140819,0.863792,0.916713,0.590373,0.460096,0.999439,0.757262,0.362479,0.0458848,0.637665,0.424488,0.623979,0.842349,0.21176,0.510295,0.770658,0.365559,0.290066,0.392362,0.646845,0.583407,0.165073,0.850088,0.581941,0.00333226,0.000594735,0.38816,0.268858,0.806601,0.084442,0.394655,0.785795,0.0914918,0.251378,0.797445,0.130641,0.126517,0.0121182,0.149917,0.29542,0.63943,0.957587,0.602697,0.846951,0.860407,0.269133,0.170373,0.397922,0.399711,0.405721,0.804515,0.221988,0.982791,0.151968,0.309754,0.327413,0.205942,0.383219,0.517497,0.0696785,0.983098,0.691708,0.924819,0.38665,0.796798,0.470627,0.046703,0.401972,0.108781,0.813444,0.871965,0.201699,0.31133,0.149246,0.324599,0.0985979,0.341723,0.703001,0.109479,0.0407789,0.237366,0.484752,0.863789,0.731648,0.228687,0.336442,0.000279844,0.165458,0.179942,0.619728,0.270761,0.398165,0.779425,0.00538045,0.930526,0.196808,0.238903,0.856124,0.0213975,0.700338,0.48509,0.10362,0.92072,0.0247445,0.344935,0.270947,0.796935,0.476181,0.245045,0.931679,0.700852,0.0481636,0.191859,0.0680988,0.935203,0.751301,0.705673,0.16663,0.473259,0.882088,0.200759,0.238864,0.223406,0.828914,0.634216,0.809142,0.602284,0.471816,0.240589,0.181789,0.00978446,0.732265,0.658191,0.764267,0.330227,0.462519,0.882414,0.467487,0.628363,0.352867,0.00433362,0.147907,0.0705247,0.324458,0.653808,0.151296,0.0380334,0.436768,0.60721,0.655486,0.106769,0.210848,0.310525,0.853898,0.461977,0.578883,0.813444,0.921954,0.90512,0.135686,0.533084,0.262661,0.888055,0.084599,0.672984,0.87965,0.721715,0.284245,0.640184,0.211186,0.252705,0.363165,0.618178,0.415857,0.709825,0.960615,0.238112,0.789256,0.844162,0.851191,0.42435,0.413022,0.163213,0.940625,0.822579,0.331589,0.0721306,0.768653,0.95425,0.705708,0.570039,0.415639,0.110548,0.956797,0.800763,0.641274,0.47449,0.497814,0.432695,0.901102,0.133818,0.927277,0.41214,0.438034,0.272077,0.170731,0.847992,0.779393,0.863807,0.831489,0.670571,0.535657,0.942937,0.847022,0.962461,0.0236629,0.052605,0.844193,0.972742,0.981157,0.558927,0.575133,0.312764,0.126918,0.480219,0.959366,0.649424,0.0394165,0.186498,0.991016,0.558807,0.273017,0.0967164,0.826163,0.123055,0.613773,0.26439,0.0384048,0.739793,0.818382,0.290528,0.515522,0.954232,0.481776,0.804719,0.2546,0.491695,0.625624,0.919133,0.603737,0.851724,0.498141,0.0662274,0.880751,0.592936,0.842212,0.928276,0.841947,0.894204,0.777034,0.925723,0.35296,0.273293,0.633639,0.0653769,0.551698,0.145041,0.82629,0.849966,0.113334,0.548503,0.10288,0.249138,0.669894,0.419449,0.360231,0.388981,0.894511,0.190176,0.795187,0.754472,0.795777,0.24601,0.0693718,0.052977,0.167518,0.611137,0.661506,0.629344,0.252751,0.998943,0.492795,0.56749,0.875189,0.236691,0.630147,0.0373181,0.58188,0.612709,0.799107,0.212362,0.228775,0.872942,0.364222,0.673259,0.00726014,0.767958,0.655574,0.0539485,0.965707,0.52217,0.534069,0.378723,0.863497,0.807707,0.150104,0.860664,0.804905,0.7358,0.912363,0.785435,0.469605,0.275354,0.488411,0.401101,0.542337,0.769708,0.35611,0.833382,0.137402,0.303907,0.286701,0.845997,0.555141,0.449834,0.91562,0.0161425,0.284218,0.590473,0.236329,0.755849,0.849064,0.423054,0.752462,0.989487,0.197599,0.105818,0.0411514,0.559168,0.363472,0.646463,0.585231,0.989915,0.805482,0.517995,0.289058,0.240861,0.243672,0.849594,0.323147,0.833251,0.316636,0.383388,0.0874094,0.890656,0.207962,0.447716,0.262906,0.291366,0.658868,0.739398,0.404283,0.608888,0.766787,0.103832,0.301884,0.893325,0.384353,0.706468,0.996089,0.465786,0.694377,0.315817,0.222864,0.967524,0.987038,0.745122,0.550862,0.163013,0.792201,0.209408,0.284446,0.0421739,0.95347,0.624107,0.628182,0.796878,0.186502,0.955043,0.36159,0.467574,0.104837,0.318524,0.638359,0.120394,0.717916,0.828586,0.0913546,0.290215,0.543459,0.552109,0.386087,0.234422,0.412867,0.593147,0.694154,0.805498,0.465897,0.0892292,0.50605,|0.932994,0.123658,0.682456,0.363446,0.109079,0.462557,0.322448,0.654079,0.595405,0.545417,0.524024,0.0201463,0.828344,0.926677,0.138659,0.74268,0.583106,0.11126,0.0385078,0.486432,0.332794,0.0470834,0.814525,0.30155,0.715075,0.322349,0.828653,0.905533,0.66612,0.510006,0.426008,0.880253,0.048112,0.358806,0.0490967,0.303738,0.92579,0.659536,0.864306,0.349392,0.886523,0.818708,0.732667,0.197557,0.824368,0.395004,0.263122,0.347254,0.418026,0.576721,0.388253,0.0837306,0.146358,0.182676,0.344288,0.871256,0.377984,0.982769,0.904286,0.493155,0.900268,0.200019,0.106907,0.125344,0.317543,0.796956,0.0025875,0.0290953,0.686353,0.518926,0.905364,0.329029,0.0412732,0.242902,0.956311,0.310156,0.905237,0.659506,0.78314,0.239079,0.17322,0.89135,0.448354,0.716848,0.723372,0.744002,0.195874,0.969613,0.404551,0.989759,0.949585,0.202244,0.176437,0.246583,0.0682136,0.36651,0.560148,0.928715,0.64204,0.41942,0.199011,0.76885,0.68117,0.444496,0.474912,0.991074,0.00896287,0.162859,0.497556,0.216307,0.649365,0.126446,0.466418,0.450636,0.721581,0.215687,0.990318,0.117945,0.812095,0.0835826,0.838911,0.714434,0.769651,0.565711,0.42249,0.671287,0.935776,0.704104,0.442533,0.611741,0.896461,0.952101,0.200586,0.0226631,0.657425,0.836755,0.859798,0.358758,0.610609,0.557181,0.78928,0.669724,0.100255,0.0897583,0.633572,0.0305678,0.708932,0.859932,0.105574,0.419298,0.48632,0.702905,0.760051,0.169861,0.327184,0.0309682,0.94142,0.283861,0.0413821,0.425873,0.341337,0.550267,0.164012,0.72777,0.578667,0.0829825,0.0894493,0.407485,0.939051,0.216206,0.14823,0.104502,0.340453,0.122648,0.604937,0.114829,0.420512,0.636297,0.724263,0.998215,0.144997,0.575232,0.355868,0.952259,0.426455,0.75338,0.791596,0.404041,0.360121,0.229061,0.889325,0.923741,0.637361,0.535581,0.953157,0.642865,0.502155,0.757978,0.310446,0.0873302,0.00887179,0.133403,0.997474,0.655166,0.359973,0.435918,0.825773,0.308701,0.543756,0.648169,0.0500792,0.220886,0.769329,0.177479,0.790178,0.739929,0.645104,0.375427,0.312851,0.311112,0.559849,0.347298,0.854128,0.871568,0.955889,0.368927,0.426363,0.0349213,0.505933,0.596999,0.0137362,0.877479,0.342039,0.97532,0.51586,0.326685,0.658098,0.0737104,0.468176,0.818267,0.669518,0.108376,0.317281,0.116008,0.015091,0.583417,0.667786,0.246671,0.502314,0.886349,0.569692,0.560542,0.29906,0.338675,0.529834,0.0846212,0.834341,0.763625,0.159469,0.357991,0.821893,0.46391,0.539135,0.412675,0.652192,0.341615,0.0968572,0.994824,0.606736,0.860545,0.364056,0.227303,0.186873,0.274182,0.365429,0.0217251,0.952544,0.171109,0.0848422,0.0240635,0.893913,0.265216,0.630424,0.331687,0.701165,0.493147,0.294353,0.211987,0.401661,0.867927,0.294108,0.620101,0.285462,0.999678,0.958702,0.675933,0.0206298,0.379865,0.660858,0.110376,0.168815,0.666702,0.844868,0.210132,0.218124,0.61183,0.03113,0.856437,0.198915,0.313164,0.634714,0.836927,0.529082,0.31419,0.367298,0.144383,0.572661,0.572228,0.283998,0.44385,0.376858,0.251135,0.66884,0.0102007,0.133953,0.436953,0.849664,0.261118,0.761489,0.718894,0.744386,0.0602697,0.000507414,0.707979,0.963878,0.288539,0.32995,0.883589,0.430286,0.553241,0.630525,0.304591,0.851525,0.684349,0.470205,0.725269,0.778031,0.726863,0.73081,0.935577,0.435945,0.255464,0.929639,0.117858,0.808069,0.163931,0.911622,0.0644026,0.139608,0.805276,0.0077613,0.386894,0.868524,0.035809,0.532978,0.731658,0.138599,0.18895,0.218913,0.46007,0.990881,0.898005,0.731626,0.145253,0.218057,0.381449,0.126112,0.0829714,0.402759,0.825056,0.123272,0.250549,0.845714,0.984646,0.276153,0.231608,0.404114,0.430348,0.936054,0.134331,0.966887,0.071395,0.484597,0.424243,0.778474,0.83573,0.602535,0.879513,0.335722,0.642534,0.438074,0.180611,0.167206,0.433293,0.171779,0.0256623,0.316464,0.772483,0.726512,0.942977,0.357232,0.964827,0.179743,0.766767,0.247605,0.127881,0.510281,0.779868,0.898279,0.178218,0.575376,0.679789,0.593428,0.954153,0.074759,0.707874,0.705957,0.370268,0.799842,0.921237,0.349019,0.948227,0.631581,0.433623,0.810253,0.91226,0.304554,0.880954,0.876935,0.992035,0.0111695,0.493937,0.334555,0.906147,0.748325,0.0548623,0.544469,0.706286,0.543699,0.19518,0.750667,0.677913,0.0440921,0.979555,0.516421,0.864951,0.769594,0.408897,0.883751,0.665246,0.268012,0.337054,0.141019,0.589806,0.421954,0.545681,0.406954,0.090452,0.682074,0.0283387,0.477444,0.65555,0.635738,0.0758212,0.447337,0.964562,0.5798,0.857483,0.65425,0.330942,0.656995,0.598989,0.404137,0.552733,0.309735,0.525113,0.749394,0.625227,0.870475,0.974351,0.365967,0.569562,0.397121,0.711754,0.980045,0.659032,0.969743,0.720209,0.299196,0.378409,0.802691,0.0430093,0.532787,0.220926,0.304216,0.485689,0.778765,0.00855666,0.756322,0.850653,0.676593,0.367403,0.388298,0.0807871,0.586643,0.448539,0.54778,0.0573488,0.912011,0.741795,0.560178,0.92268,0.490837,0.60178,0.377868,0.0273815,0.230778,0.694065,0.34519,0.946642,0.946856,0.208475,0.992657,0.00687319,0.977044,0.769431,0.693919,0.858178,0.0525563,0.632065,0.225265,0.687009,0.653528,0.905917,0.537936,0.194876,0.541793,0.583865,0.959898,0.956188,0.302836,0.210055,0.0608367,0.598983,0.869006,0.246352,0.738546,0.762346,0.660926,0.545159,0.6156,0.580075,0.19996,0.877723,0.434609,0.848289,0.278285,0.187312,0.00784689,0.0102599,0.863875,0.466428,0.9702,0.131529,0.0438905,0.0876209,0.789568,0.599382,0.310497,0.48688,0.491561,0.2776,0.182927,0.103174,0.744242,0.795995,0.983162,0.120227,0.246278,0.520996,0.969305,0.539634,0.942575,0.596558,0.345185,0.369095,0.843501,0.0808893,0.677081,0.925021,0.448513,0.480684,0.769075,0.385136,0.765532,0.371598,0.341444,0.682127,0.236681,0.406961,0.551458,0.689699,0.255671,0.130848,0.767254,0.150436,0.466013,0.653347,0.603554,0.048192,0.222186,0.795686,0.246882,0.289312,0.0017193,0.958329,0.847776,0.677406,0.312459,0.411776,0.927795,0.919435,0.84537,0.622423,0.549379,0.0753678,0.107451,0.11229,0.787286,0.577567,0.815847,0.283161,0.140911,0.764107,0.838398,0.700296,0.485097,0.0203558,0.711861,0.97681,0.74794,0.229566,0.00792098,0.527206,0.775884,0.32657,0.261006,0.910408,0.195957,0.693368,0.866264,0.481842,0.734316,0.681972,0.626846,0.775526,0.918754,0.88558,0.930459,0.147209,0.535874,0.120353,0.16431,0.29588,0.940033,0.968722,0.195986,0.125448,0.214784,0.230151,0.807099,0.623931,0.22414,0.312761,0.983542,0.118801,0.4302,0.200871,0.884026,0.0101479,0.93457,0.491748,0.614011,0.227022,0.0330061,0.4611,0.422963,0.486831,0.13583,0.829094,0.349677,0.0579157,0.527892,0.552995,0.608806,0.310184,0.458219,0.869781,0.651273,0.950103,0.514987,0.162108,0.358061,0.0494459,0.640004,0.28423,0.498012,0.796133,0.230669,0.867559,0.908392,0.438539,0.745005,0.192414,0.74254,0.0943625,0.000459969,0.187384,0.742939,0.865209,0.839109,0.271524,0.673813,0.500723,0.265893,0.115852,0.501722,0.644927,0.268972,0.532228,0.16111,0.508988,0.570159,0.072014,0.158467,0.370197,0.629964,0.487181,0.377778,0.142984,0.477812,0.462885,0.584621,0.15454,0.672447,0.0885752,0.791324,0.922306,0.513472,0.45502,0.870345,0.733341,0.535691,0.581637,0.569387,0.591552,0.509198,0.391387,0.135912,0.81493,0.324093,0.180509,0.270943,0.590186,0.121283,0.801801,0.59245,0.797176,0.046255,0.909136,0.494322,0.808876,0.232881,0.146625,0.667263,0.0786695,0.318927,0.457577,0.874537,0.719342,0.595313,0.323622,0.31554,0.98883,0.0555259,0.677739,0.295278,0.891985,0.343724,0.503466,0.339994,0.1185,0.970063,0.242635,0.054433,0.460645,0.0906975,0.699297,0.596296,0.980196,0.261711,0.00185722,0.951262,0.122929,0.0225376,0.864564,0.053974,0.894698,0.891222,0.531532,0.261279,0.537308,0.625944,0.527639,0.553898,0.745874,0.261583,0.612444,0.0936972,0.574334,0.293443,0.200714,0.154063,0.762748,0.0158721,0.293791,0.846659,0.545106,0.850247,0.844003,0.821292,0.341916,0.991304,0.234511,0.705884,0.122183,0.103814,0.876485,0.862122,0.405347,0.477561,0.861133,0.181199,0.285577,0.197091,0.586607,0.361738,0.534618,0.126838,0.468376,0.52109,0.216118,0.366467,0.882991,0.0718317,0.136701,0.869629,0.0907926,0.838258,0.405505,0.20182,0.172287,0.828912,0.439767,0.502708,0.101642,0.153178,0.831475,0.984851,0.299991,0.844877,0.105275,0.71102,0.542355,0.0484662,0.124898,0.35949,0.363547,0.447454,0.434313,0.258324,0.270089,0.554398,0.516233,0.730242,0.440671,0.0216841,0.843792,0.349378,0.79324,0.98367,0.372088,0.879851,0.152748,0.531402,0.798213,0.251386,0.536941,0.938287,0.411267,0.620501,0.0476335,0.151433,0.572214,0.0601873,0.189689,0.557202,0.975723,0.820151,0.322805,0.294833,0.46714,0.965464,0.4428,0.819349,0.133486,0.647327,0.0884584,0.453643,0.863597,0.764293,0.742069,0.559037,0.201478,0.697014,0.318066,0.760467,0.163583,0.688486,0.709303,0.0329443,0.225311,0.380683,0.563776,0.689235,0.961109,0.208822,0.861059,0.0304757,0.34217,0.00382775,0.672495,0.0436316,0.900352,0.061059,0.339881,0.66504,0.0691602,0.0680307,0.0592554,0.908766,0.928974,0.681592,0.318969,0.943141,0.00512207,0.179779,0.0600095,0.459751,0.92277,0.840082,0.651506,0.541725,0.0882844,0.0700915,0.758262,0.0989693,0.206429,0.127049,0.614825,0.0405943,0.241579,0.279824,0.0203818,0.168245,0.0500543,0.203461,0.490973,0.992765,0.387096,0.0433933,0.146598,0.922664,0.00148231,0.596923,0.670915,0.635806,0.326937,0.293095,0.287644,|0.0427936,0.519792,0.0824769,0.299366,0.393442,0.404311,0.144134,0.304795,0.469736,0.151428,0.140285,0.746337,0.112704,0.329203,0.722358,0.0345069,0.155741,0.918337,0.821916,0.0901152,0.828876,0.999692,0.889923,0.559174,0.0915368,0.837342,0.495891,0.5734,0.532952,0.759726,0.251175,0.767707,0.679345,0.248424,0.112375,0.59713,0.307131,0.298339,0.153908,0.0970787,0.254019,0.951393,0.0135079,0.0775281,0.252555,0.862478,0.635018,0.140851,0.891989,0.773395,0.611405,0.186556,0.579024,0.13737,0.178808,0.609828,0.424752,0.628151,0.011529,0.874876,0.31212,0.0379863,0.250714,0.281218,0.572524,0.674467,0.25068,0.247349,0.892393,0.753932,0.478915,0.972833,0.23951,0.741941,0.284522,0.795481,0.0977284,0.803873,0.344204,0.652501,0.744992,0.923322,0.260649,0.58988,0.806819,0.0763347,0.988206,0.837267,0.384883,0.0222686,0.683933,0.0367144,0.333736,0.196588,0.847624,0.694633,0.0605921,0.877019,0.184367,0.516407,0.478657,0.665578,0.182842,0.500782,0.677874,0.774692,0.959071,0.326959,0.951652,0.760393,0.190674,0.263937,0.459484,0.440954,0.821057,0.87286,0.69127,0.796843,0.182061,0.817737,0.570543,0.103936,0.19061,0.87474,0.89813,0.212178,0.281113,0.0897878,0.831194,0.0607173,0.0744721,0.124301,0.523316,0.477639,0.369954,0.478642,0.859082,0.42506,0.360833,0.538302,0.75241,0.00632852,0.833301,0.492431,0.0520852,0.093221,0.93395,0.694602,0.612481,0.57067,0.745914,0.987465,0.324155,0.56715,0.249019,0.256741,0.242977,0.909904,0.098973,0.634954,0.340845,0.377593,0.0761356,0.880841,0.929804,0.475922,0.56923,0.238157,0.56849,0.184884,0.2904,0.289954,0.165104,0.917972,0.289498,0.749509,0.0738693,0.901963,0.415261,0.93531,0.0689248,0.54819,0.782512,0.91619,0.477365,0.791176,0.0424605,0.333683,0.462514,0.196043,0.0608444,0.582468,0.473421,0.561112,0.734337,0.980693,0.596939,0.333487,0.390763,0.672101,0.397504,0.343283,0.57627,0.652852,0.41433,0.976754,0.594413,0.201753,0.0299143,0.781926,0.123449,0.414138,0.220526,0.915945,0.772236,0.825118,0.0979071,0.589145,0.958406,0.665494,0.424591,0.462319,0.945144,0.681041,0.653698,0.931366,0.0499513,0.510966,0.839961,0.889095,0.335802,0.874278,0.22327,0.409966,0.601271,0.316266,0.447925,0.803919,0.749914,0.622177,0.440972,0.170384,0.4282,0.849919,0.118896,0.934694,0.290806,0.716961,0.192588,0.439384,0.594115,0.123729,0.192816,0.318208,0.821101,0.875269,0.948327,0.429818,0.194873,0.807884,0.3188,0.131925,0.174823,0.167648,0.769953,0.748807,0.493845,0.647072,0.308944,0.905117,0.703777,0.0388864,0.693341,0.379102,0.835751,0.178795,0.0610346,0.180297,0.400809,0.612669,0.187647,0.0489534,0.492714,0.622315,0.0540653,0.901667,0.0560221,0.705085,0.544527,0.773225,0.406194,0.206501,0.973286,0.757278,0.369744,0.638188,0.944031,0.36041,0.830023,0.731477,0.946287,0.715878,0.741594,0.83317,0.423655,0.402824,0.267255,0.439834,0.207866,0.0814286,0.696226,0.163833,0.999391,0.939929,0.334865,0.0170937,0.821045,0.291933,0.892979,0.997652,0.335457,0.283674,0.219719,0.900562,0.157077,0.221492,0.461526,0.252964,0.13557,0.971964,0.78423,0.729187,0.537269,0.247191,0.911427,0.747905,0.456374,0.583535,0.0880791,0.404236,0.687306,0.912822,0.879943,0.277575,0.194206,0.775263,0.328712,0.90342,0.419152,0.354573,0.238436,0.490571,0.0190211,0.6423,0.332209,0.460108,0.610712,0.516661,0.000317395,0.262357,0.263999,0.479129,0.636176,0.237944,0.236819,0.32554,0.200901,0.396911,0.294856,0.203763,0.585261,0.278462,0.19683,0.641653,0.766327,0.105555,0.861643,0.0510526,0.907667,0.224586,0.875148,0.530306,0.800139,0.950612,0.634083,0.568641,0.302012,0.850398,0.947317,0.756321,0.178004,0.944679,0.107272,0.123447,0.39561,0.105624,0.540104,0.39177,0.450092,0.899469,0.0423779,0.91618,0.505899,0.77012,0.835368,0.479008,0.0594475,0.942346,0.38671,0.890623,0.0402421,0.566654,0.974401,0.730232,0.558776,0.0198113,0.823013,0.275067,0.681402,0.180541,0.232322,0.755567,0.143766,0.092026,0.20226,0.178505,0.527491,0.268,0.237412,0.581031,0.131699,0.434833,0.334472,0.262447,0.520334,0.83144,0.225607,0.127771,0.982371,0.764292,0.900382,0.0907838,0.760343,0.917809,0.800597,0.886079,0.573801,0.932304,0.473923,0.519089,0.789412,0.128535,0.0738951,0.587592,0.297191,0.878772,0.765908,0.75813,0.494465,0.347238,0.451609,0.104435,0.232732,0.198331,0.845972,0.890511,0.295657,0.585308,0.519514,0.879078,0.196535,0.540138,0.377453,0.642658,0.817774,0.185532,0.402546,0.843047,0.782807,0.835883,0.302968,0.265143,0.209757,0.754981,0.162489,0.137077,0.10022,0.957387,0.0771616,0.529757,0.92898,0.595386,0.767967,0.0950984,0.849067,0.25512,0.0433389,0.465999,0.852143,0.801075,0.998992,0.400606,0.628573,0.480061,0.00436866,0.98342,0.947642,0.737679,0.552044,0.639851,0.473309,0.681708,0.435655,0.380427,0.557243,0.920493,0.988083,0.849386,0.411328,0.716287,0.439852,0.932487,0.166554,0.111265,0.319494,0.30058,0.211992,0.187063,0.977252,0.235523,0.536495,0.506532,0.324044,0.381465,0.448827,0.421849,0.837563,0.485125,0.747296,0.527327,0.643608,0.0538695,0.814607,0.586956,0.169559,0.187277,0.462038,0.989103,0.362396,0.461584,0.273807,0.67611,0.832817,0.486317,0.538977,0.291027,0.369247,0.850837,0.971053,0.997893,0.994508,0.823347,0.373523,0.765904,0.504591,0.622871,0.127156,0.873911,0.16305,0.127597,0.155592,0.475766,0.403074,0.643254,0.705015,0.185421,0.416223,0.160154,0.0497692,0.541298,0.478996,0.723106,0.781489,0.0745341,0.997089,0.755957,0.96675,0.330398,0.237467,0.880482,0.258397,0.107077,0.57461,0.872869,0.533486,0.112287,0.135502,0.655441,0.469184,0.65815,0.437979,0.233809,0.91027,0.180896,0.419533,0.625736,0.304785,0.898616,0.772353,0.531143,0.603267,0.855773,0.00724268,0.743607,0.0841047,0.658871,0.748525,0.135254,0.549239,0.620907,0.304803,0.528502,0.725468,0.563016,0.973577,0.50569,0.57347,0.628998,0.290556,0.566229,0.6773,0.983758,0.264919,0.0319126,0.44757,0.911316,0.748951,0.00237894,0.283411,0.26338,0.467324,0.348946,0.352989,0.0851674,0.857988,0.968831,0.0803154,0.527632,0.719066,0.20785,0.652934,0.471213,0.234731,0.702534,0.162321,0.815081,0.0793678,0.956715,0.511741,0.289299,0.0308682,0.448144,0.39331,0.549574,0.234865,0.1289,0.587181,0.403538,0.471609,0.309275,0.413413,0.845585,0.383066,0.863679,0.328012,0.754604,0.0440731,0.901587,0.792839,0.0342291,0.867063,0.741063,0.919394,0.169365,0.531128,0.346374,0.500253,0.745997,0.477855,0.271791,0.406339,0.495249,0.680283,0.675889,0.290081,0.924342,0.568825,0.206331,0.138301,0.580569,0.480561,0.791565,0.286159,0.684884,0.814839,0.642031,0.0903589,0.439552,0.185797,0.0751263,0.241113,0.0279054,0.0325593,0.955957,0.375471,0.940505,0.423786,0.332278,0.248832,0.653536,0.64105,0.625698,0.928804,0.910783,0.128089,0.96926,0.960468,0.922795,0.30617,0.347379,0.686956,0.143584,0.608217,0.291587,0.217195,0.307364,0.353262,0.495466,0.0333298,0.504311,0.616484,0.489101,0.60779,0.145253,0.684887,0.616755,0.240128,0.116027,0.171289,0.235659,0.0962282,0.131374,0.852128,0.616033,0.749466,0.124749,0.457355,0.498409,0.378826,0.332347,0.503481,0.649596,0.488732,0.274228,0.489409,0.695109,0.923094,0.130677,0.565031,0.00108606,0.794168,0.513557,0.544549,0.745319,0.344514,0.985741,0.27376,0.557606,0.152165,0.260144,0.968238,0.868667,0.628078,0.773866,0.00491607,0.354236,0.418173,0.918942,0.888346,0.406984,0.381624,0.619192,0.149284,0.409433,0.913466,0.857067,0.647187,0.102736,0.115787,0.514122,0.804369,0.695647,0.0539361,0.473884,0.827431,0.0887075,0.842576,0.797576,0.959884,0.397457,0.964861,0.816976,0.158265,0.972942,0.40896,0.860516,0.564804,0.736177,0.699286,0.949752,0.6159,0.231,0.603343,0.747366,0.112364,0.251363,0.558609,0.299739,0.943617,0.535105,0.593867,0.136623,0.0362684,0.525757,0.602476,0.452656,0.21531,0.975866,0.891683,0.448723,0.582012,0.376098,0.676796,0.597109,0.313217,0.922611,0.377456,0.58033,0.361429,0.593996,0.914384,0.5389,0.60565,0.165477,0.572833,0.548921,0.321997,0.86521,0.497834,0.530292,0.99094,0.515652,0.761948,0.884955,0.372466,0.894343,0.393061,0.880954,0.332969,0.142845,0.818997,0.914349,0.944442,0.193421,0.941812,0.787619,0.362898,0.878578,0.410388,0.258001,0.902349,0.589331,0.129727,0.582983,0.912669,0.0688925,0.788488,0.72185,0.844982,0.00890648,0.781662,0.766864,0.0946425,0.0344574,0.544574,0.13342,0.827608,0.992166,0.550357,0.319956,0.834287,0.992245,0.965287,0.890453,0.237466,0.143512,0.30757,0.913775,0.758193,0.0844467,0.0320343,0.947282,0.523348,0.230663,0.152647,0.822509,0.865981,0.872979,0.737867,0.354907,0.0129831,0.572396,0.314979,0.190634,0.653126,0.5694,0.241052,0.884848,0.621996,0.754733,0.807528,0.440679,0.302264,0.242771,0.470914,0.421883,0.00987589,0.385549,0.112276,0.759867,0.759539,0.73422,0.360598,0.854666,0.643939,0.304656,0.731426,0.670528,0.501653,0.981513,0.537868,0.985026,0.00142002,0.0812827,0.75017,0.293521,0.182122,0.0798855,0.700401,0.282192,0.0850036,0.202805,0.0767365,0.946976,0.00574857,0.419185,0.54289,0.899174,0.80148,0.575199,0.14646,0.368568,0.781414,0.974951,0.751987,0.313575,0.984087,0.356191,0.0594094,0.804556,0.505239,0.329137,0.346188,0.657922,0.282068,0.60239,0.0138711,0.043064,0.709533,0.0655031,0.753141,0.0941229,0.217527,0.443315,0.941333,0.62714,0.446556,0.463038,0.581197,0.785398,|0.724995,0.391022,0.924484,0.0960676,0.21304,0.0111393,0.497205,0.504479,0.223651,0.571987,0.76301,0.673552,0.853946,0.356532,0.965789,0.94694,0.893829,0.172221,0.626704,0.0219733,0.745539,0.508658,0.0840228,0.865837,0.39906,0.479775,0.587049,0.469949,0.75113,0.0578263,0.470461,0.766695,0.719998,0.318659,0.340613,0.0514659,0.601838,0.358853,0.226474,0.715539,0.705662,0.383907,0.918783,0.12697,0.791989,0.0857167,0.625526,0.137679,0.746807,0.0940661,0.71071,0.689458,0.447189,0.475005,0.712078,0.0818543,0.876183,0.154813,0.208309,0.866029,0.796601,0.256247,0.69907,0.99057,0.230217,0.483154,0.218215,0.129757,0.36201,0.285872,0.405325,0.368604,0.482376,0.654514,0.277703,0.0445852,0.753389,0.296299,0.0403592,0.465301,0.37839,0.550873,0.35633,0.138075,0.167141,0.636121,0.743595,0.8258,0.243231,0.67841,0.111359,0.496712,0.604338,0.818993,0.628041,0.372733,0.347437,0.687596,0.858647,0.302777,0.953692,0.200631,0.679193,0.758792,0.654108,0.35175,0.133886,0.132619,0.578179,0.628274,0.490608,0.823868,0.24441,0.212295,0.13145,0.718884,0.016674,0.165328,0.169388,0.845002,0.616039,0.206149,0.187022,0.0694084,0.263173,0.83107,0.348935,0.268549,0.735902,0.250534,0.671208,0.334234,0.612768,0.323919,0.468798,0.301488,0.647486,0.174254,0.906882,0.356744,0.816841,0.483188,0.872642,0.550091,0.809555,0.906557,0.723792,0.0316522,0.545396,0.148142,0.949043,0.158638,0.401011,0.653005,0.43559,0.687499,0.92808,0.194418,0.0396403,0.106359,0.990892,0.911799,0.651952,0.721244,0.825634,0.434393,0.985164,0.170607,0.429828,0.555921,0.912252,0.459962,0.701062,0.717074,0.942586,0.853907,0.0364666,0.720357,0.286756,0.918519,0.16185,0.738158,0.374461,0.988375,0.466605,0.63113,0.632326,0.015154,0.615526,0.549503,0.740617,0.52004,0.430011,0.322859,0.75795,0.813825,0.528454,0.171489,0.824711,0.304075,0.0345908,0.801165,0.760525,0.417855,0.317706,0.109937,0.289959,0.423847,0.499764,0.990958,0.623431,0.633832,0.890553,0.710326,0.578991,0.228368,0.0256471,0.971528,0.968493,0.396805,0.470232,0.210707,0.262391,0.556652,0.0763702,0.847938,0.766221,0.114089,0.478134,0.607816,0.0101932,0.416448,0.447816,0.906749,0.655247,0.239717,0.658334,0.836344,0.967662,0.0540962,0.609961,0.169465,0.197565,0.892665,0.286827,0.505659,0.850235,0.928001,0.316336,0.00169438,0.245153,0.393778,0.562314,0.369593,0.936077,0.341051,0.418191,0.294804,0.357793,0.219301,0.605753,0.644458,0.343111,0.735684,0.391695,0.154328,0.164057,0.815905,0.273939,0.402298,0.841697,0.581506,0.465958,0.928681,0.369217,0.36149,0.945562,0.359457,0.362951,0.679261,0.677548,0.691752,0.159133,0.0829318,0.919572,0.979913,0.532007,0.320126,0.769217,0.110467,0.868624,0.4308,0.718708,0.377285,0.95622,0.535491,0.877479,0.327102,0.226839,0.611625,0.407242,0.0552163,0.807245,0.799099,0.778469,0.233189,0.989435,0.117416,0.749026,0.967219,0.845295,0.49002,0.219526,0.14705,0.211193,0.533364,0.830876,0.0807287,0.481467,0.784612,0.653742,0.654826,0.587915,0.504644,0.293286,0.752646,0.130981,0.973284,0.00565106,0.790317,0.733544,0.145146,0.187232,0.823993,0.46812,0.333113,0.867007,0.363702,0.922483,0.153265,0.392623,0.428912,0.90951,0.336049,0.637381,0.669223,0.281701,0.790384,0.907492,0.233746,0.987632,0.118352,0.0339726,0.356443,0.388108,0.245174,0.896754,0.178824,0.249931,0.562212,0.379969,0.848606,0.784059,0.3703,0.401204,0.377202,0.757133,0.372068,0.165868,0.238742,0.172896,0.526679,0.85742,0.345191,0.157676,0.878302,0.645282,0.606896,0.626243,0.331192,0.256187,0.0531601,0.286588,0.485717,0.372549,0.505565,0.396603,0.529731,0.11597,0.372303,0.81715,0.810167,0.868338,0.447157,0.566484,0.545344,0.501646,0.058043,0.162011,0.359325,0.637895,0.726983,0.00139511,0.509514,0.579883,0.649077,0.41717,0.663125,0.0625869,0.810829,0.567456,0.17641,0.256868,0.372188,0.0466267,0.672162,0.935142,0.639579,0.0864266,0.229958,0.312356,0.916831,0.74873,0.558535,0.224733,0.715755,0.888623,0.0406703,0.465709,0.519153,0.646132,0.776258,0.246543,0.83706,0.196272,0.42245,0.94462,0.488968,0.157624,0.935928,0.312854,0.644556,0.175544,0.173203,0.665785,0.756874,0.505853,0.843932,0.221572,0.929325,0.509555,0.240442,0.0855311,0.892759,0.794767,0.911546,0.742963,0.0887898,0.981397,0.368206,0.233533,0.770516,0.207456,0.849533,0.420685,0.788396,0.274408,0.514872,0.977396,0.559547,0.901884,0.518137,0.0514824,0.242795,0.0747913,0.397598,0.982252,0.186875,0.887834,0.477875,0.143463,0.0474387,0.589416,0.829866,0.300773,0.409498,0.338266,0.812135,0.108236,0.636647,0.251333,0.29848,0.205366,0.652845,0.206859,0.791006,0.249759,0.321681,0.0369625,0.924411,0.371313,0.0838424,0.572164,0.583736,0.279536,0.633836,0.514127,0.911041,0.182221,0.9257,0.535837,0.508011,0.98745,0.57113,0.312421,0.337098,0.975014,0.877173,0.883374,0.135077,0.766825,0.264699,0.143703,0.743599,0.409269,0.548926,0.324147,0.302701,0.542609,0.986703,0.642382,0.24425,0.93092,0.334709,0.856957,0.18739,0.899775,0.0995797,0.425142,0.417013,0.00355488,0.28783,0.318447,0.722777,0.643206,0.170055,0.837241,0.264934,0.449255,0.637788,0.473383,0.713185,0.159152,0.331397,0.677939,0.622152,0.390408,0.252011,0.124303,0.97627,0.72349,0.872953,0.290593,0.0813712,0.205687,0.927657,0.455724,0.273185,0.766092,0.427496,0.855882,0.641236,0.713513,0.924898,0.427805,0.771608,0.360183,0.360037,0.275535,0.602431,0.229221,0.322942,0.828965,0.75993,0.311287,0.0674095,0.113068,0.62076,0.507927,0.710779,0.866549,0.916372,0.219004,0.184703,0.642105,0.0931785,0.872154,0.477187,0.367198,0.627018,0.181842,0.234217,0.797794,0.11987,0.566822,0.44534,0.688759,0.29149,0.473091,0.517126,0.849654,0.550967,0.112371,0.564169,0.157879,0.204318,0.529537,0.6295,0.97396,0.460564,0.797667,0.981595,0.598215,0.910608,0.765495,0.197129,0.234607,0.653534,0.370084,0.730133,0.306415,0.500665,0.327933,0.471243,0.438706,0.71798,0.475866,0.251704,0.504822,0.0569157,0.282692,0.317402,0.864879,0.668837,0.450234,0.948658,0.0749153,0.771122,0.701401,0.472936,0.616935,0.157588,0.448704,0.52722,0.73175,0.155476,0.591017,0.821483,0.417616,0.633759,0.742856,0.0726517,0.272608,0.876591,0.703107,0.913442,0.955843,0.933818,0.943696,0.620043,0.0878282,0.43474,0.0904227,0.448783,0.883761,0.198244,0.725422,0.189751,0.566338,0.651985,0.629583,0.160628,0.115005,0.547732,0.237454,0.305746,0.56155,0.696025,0.422298,0.486278,0.857276,0.524559,0.573912,0.0196296,0.947133,0.433787,0.226079,0.0292111,0.700184,0.864554,0.0108385,0.433395,0.722018,0.293537,0.371984,0.0829213,0.380649,0.154722,0.625757,0.880147,0.0504067,0.348128,0.619045,0.794069,0.727391,0.308981,0.305821,0.490768,0.49295,0.830932,0.0765441,0.0143374,0.331497,0.364593,0.445489,0.671318,0.0702248,0.30384,0.274808,0.490534,0.146397,0.406659,0.332331,0.216093,0.217572,0.75387,0.958091,0.123627,0.0125303,0.73408,0.766514,0.833568,0.717997,0.453358,0.855266,0.392668,0.909287,0.0737168,0.340752,0.824925,0.571965,0.0392025,0.554376,0.292694,0.110423,0.796917,0.393629,0.0296258,0.0987908,0.963993,0.959489,0.836574,0.082795,0.320156,0.166054,0.124981,0.997051,0.488797,0.138922,0.105623,0.992553,0.15668,0.878679,0.518138,0.0853012,0.592714,0.0844764,0.774955,0.322081,0.166006,0.404179,0.874157,0.0882825,0.829952,0.423472,0.0106017,0.782725,0.569303,0.673711,0.248262,0.854744,0.77548,0.901545,0.0110538,0.234792,0.0610973,0.0234729,0.554183,0.266388,0.917489,0.476619,0.210194,0.971141,0.489384,0.524055,0.814559,0.657632,0.0175539,0.25535,0.0590985,0.666149,0.0691876,0.483204,0.00593513,0.618954,0.421208,0.771827,0.132734,0.494865,0.192535,0.76374,0.349983,0.205493,0.834533,0.694614,0.888042,0.26353,0.635308,0.304837,0.153939,0.375158,0.635308,0.927359,0.0954455,0.599313,0.907638,0.134782,0.460796,0.807304,0.126721,0.563549,0.423959,0.0831258,0.32823,0.942577,0.336054,0.791648,0.956328,0.190128,0.0940128,0.670255,0.999299,0.82799,0.504309,0.798137,0.530846,0.717956,0.534996,0.678879,0.978491,0.789021,0.542632,0.308729,0.329022,0.945279,0.722864,0.452009,0.924104,0.124016,0.646697,0.503696,0.20066,0.240606,0.330261,0.0998758,0.575655,0.741587,0.366318,0.407411,0.991138,0.678495,0.394592,0.401284,0.156413,0.901199,0.40097,0.729544,0.375247,0.342448,0.542075,0.0302911,0.0822259,0.538016,0.943091,0.113476,0.142694,0.531627,0.0862487,0.937792,0.466812,0.98692,0.758682,0.0191813,0.981447,0.51923,0.963276,0.575154,0.44805,0.346613,0.6319,0.476111,0.785142,0.837142,0.626033,0.133351,0.860538,0.667237,0.00422096,0.503659,0.261191,0.98755,0.329415,0.286911,0.798239,0.182402,0.510101,0.132702,0.269236,0.139716,0.00242555,0.410476,0.693556,0.928245,0.283035,0.566987,0.466066,0.474315,0.645684,0.812136,0.992621,0.961203,0.743712,0.594645,0.351223,0.66989,0.826393,0.331093,0.479576,0.624652,0.167272,0.497503,0.0465601,0.5308,0.816056,0.956918,0.499613,0.17519,0.442618,0.777545,0.698797,0.576713,0.499812,0.386356,0.0409876,0.511963,0.360456,0.282057,0.221301,0.493799,0.812707,0.401774,0.725222,0.237787,0.659936,0.0877557,0.819602,0.783495,0.167156,0.707387,0.0394143,0.608367,0.243481,0.90927,0.314185,0.509973,0.0129225,0.490366,0.177554,0.604468,0.170843,0.718222,0.863306,0.935125,0.473123,0.0925884,0.352148,0.0831969,0.35979,0.358057,0.566691,|0.0918893,0.543439,0.172248,0.701418,0.657732,0.388993,0.788705,0.711444,0.886606,0.507147,0.440546,0.812121,0.409792,0.943745,0.638995,0.482938,0.53968,0.209944,0.322458,0.60027,0.868431,0.0910738,0.954111,0.178485,0.632467,0.387373,0.293361,0.506879,0.889983,0.564718,0.736403,0.265593,0.414694,0.0250204,0.180254,0.476207,0.494189,0.720666,0.123828,0.978212,0.311514,0.442758,0.549673,0.15694,0.106324,0.86199,0.0273052,0.468907,0.0256183,0.352879,0.419914,0.193131,0.271506,0.0603973,0.193528,0.708475,0.0339364,0.756315,0.223556,0.554926,0.928692,0.576763,0.103788,0.540953,0.771894,0.0986539,0.571688,0.0700684,0.126192,0.438511,0.696048,0.763886,0.708996,0.95344,0.333476,0.555474,0.627509,0.551521,0.689881,0.443166,0.2213,0.541147,0.0423185,0.00413984,0.148038,0.611167,0.226859,0.440593,0.536243,0.70502,0.27609,0.649802,0.64316,0.775248,0.000841498,0.577811,0.74594,0.0400698,0.947455,0.356112,0.462662,0.56722,0.395542,0.632063,0.269184,0.374079,0.0182804,0.830254,0.488953,0.256427,0.734823,0.381156,0.808238,0.741064,0.510498,0.887,0.276162,0.324367,0.211,0.749743,0.162136,0.797302,0.55276,0.921617,0.727399,0.0622991,0.211956,0.0376879,0.350163,0.825584,0.727074,0.257655,0.883557,0.68281,0.849293,0.527248,0.564582,0.94284,0.346043,0.87247,0.621904,0.0754549,0.263633,0.152599,0.465814,0.412138,0.223103,0.33991,0.334087,0.0747377,0.348751,0.621752,0.031436,0.973348,0.133531,0.265537,0.801323,0.658155,0.707055,0.939693,0.91831,0.426508,0.522576,0.456769,0.810148,0.787584,0.696321,0.437363,0.718296,0.853835,0.816009,0.64925,0.0838113,0.817043,0.0291563,0.955162,0.385373,0.904493,0.00621319,0.0404292,0.856272,0.0108181,0.695539,0.154008,0.707052,0.429788,0.104218,0.259637,0.335554,0.452111,0.580729,0.898834,0.377873,0.387039,0.706949,0.812571,0.230409,0.175643,0.91685,0.053614,0.690248,0.527069,0.54183,0.655137,0.630309,0.135041,0.613986,0.704293,0.509702,0.792927,0.669378,0.655904,0.896287,0.194283,0.761482,0.0319623,0.0212268,0.783503,0.0441587,0.47199,0.155859,0.120342,0.356294,0.106356,0.805874,0.431503,0.570316,0.374521,0.540359,0.659851,0.639955,0.355396,0.0414907,0.672664,0.862415,0.723403,0.778948,0.0775369,0.800468,0.73392,0.285378,0.0533535,0.673411,0.41264,0.641187,0.0345109,0.262354,0.241038,0.223917,0.675263,0.482338,0.44927,0.694615,0.726772,0.880364,0.073667,0.14492,0.561986,0.102217,0.473,0.697545,0.867949,0.109394,0.480981,0.99704,0.297629,0.626488,0.832506,0.46802,0.839996,0.407677,0.781963,0.890227,0.0589252,0.0953694,0.712097,0.513093,0.0767149,0.287467,0.4259,0.538819,0.326747,0.402537,0.690782,0.136245,0.673627,0.820652,0.27666,0.216504,0.463255,0.576589,0.0572257,0.493859,0.955019,0.322026,0.372626,0.0618501,0.607365,0.421334,0.387041,0.921929,0.305322,0.979985,0.396077,0.568139,0.897754,0.163594,0.285523,0.759178,0.207649,0.373173,0.91986,0.651098,0.928785,0.877501,0.467534,0.00967211,0.707927,0.223625,0.893984,0.680047,0.818539,0.351879,0.897353,0.635608,0.864376,0.86004,0.484586,0.10566,0.252358,0.233808,0.538427,0.369534,0.363185,0.155272,0.0159452,0.403468,0.129525,0.638702,0.691556,0.962791,0.802472,0.475285,0.666065,0.709315,0.316628,0.612607,0.836957,0.288603,0.335749,0.143772,0.106375,0.790275,0.947442,0.55022,0.794208,0.764093,0.00418377,0.815232,0.338382,0.630931,0.832447,0.209295,0.865503,0.299249,0.34324,0.882643,0.22908,0.77712,0.741719,0.770113,0.190093,0.599416,0.991527,0.542067,0.795259,0.193559,0.447305,0.606069,0.578503,0.0869827,0.334139,0.44924,0.925352,0.777037,0.379247,0.367359,0.508573,0.878905,0.686391,0.211248,0.65726,0.483286,0.184697,0.717014,0.550369,0.335053,0.0622987,0.659484,0.192998,0.52491,0.0313014,0.430413,0.960274,0.578099,0.848581,0.00766689,0.163016,0.558332,0.8428,0.43399,0.120023,0.608495,0.517726,0.507291,0.892929,0.229831,0.379659,0.684115,0.417108,0.0790996,0.599452,0.498695,0.604163,0.471137,0.161487,0.410531,0.696333,0.833344,0.452745,0.495097,0.344584,0.505618,0.573052,0.86065,0.228675,0.875847,0.638288,0.415435,0.556799,0.0860379,0.797818,0.732259,0.926295,0.127174,0.8476,0.636285,0.54191,0.687372,0.402334,0.251677,0.10607,0.234955,0.975544,0.748953,0.967073,0.960361,0.497637,0.931865,0.72248,0.947295,0.661561,0.964039,0.979667,0.203648,0.554102,0.358213,0.22583,0.126504,0.389739,0.748565,0.375705,0.634678,0.0853498,0.308471,0.294498,0.666988,0.0982754,0.237249,0.854616,0.998586,0.49237,0.242662,0.457266,0.418045,0.659088,0.98863,0.310355,0.452799,0.747598,0.593947,0.791964,0.898839,0.488664,0.977271,0.0261503,0.410284,0.314765,0.954282,0.505127,0.436162,0.0178268,0.609774,0.289718,0.440185,0.179923,0.96145,0.605054,0.878093,0.784903,0.22559,0.429054,0.861487,0.254629,0.789052,0.83992,0.535964,0.733201,0.347453,0.607162,0.149327,0.774604,0.765508,0.787554,0.770015,0.123182,0.88466,0.184311,0.806622,0.566157,0.132936,0.710678,0.879251,0.192678,0.446775,0.486019,0.00557536,0.201808,0.819702,0.568241,0.656225,0.594284,0.649575,0.976306,0.451632,0.0341469,0.446044,0.986395,0.874856,0.486025,0.842075,0.562836,0.423996,0.956426,0.44418,0.704713,0.36111,0.516337,0.337264,0.987856,0.603148,0.656711,0.32065,0.394109,0.91741,0.874084,0.478524,0.855438,0.642601,0.790032,0.66685,0.164257,0.635067,0.953703,0.88414,0.117698,0.904835,0.183158,0.299146,0.120947,0.695739,0.697311,0.877206,0.0643799,0.493322,0.370142,0.0535798,0.289791,0.867485,0.333661,0.978279,0.677874,0.915513,0.984217,0.209327,0.877676,0.39891,0.155451,0.632318,0.443101,0.226597,0.441589,0.813657,0.490934,0.226658,0.130945,0.752539,0.359167,0.732107,0.874164,0.164438,0.934384,0.948702,0.782086,0.123618,0.11296,0.51186,0.664928,0.077588,0.860821,0.223048,0.245411,0.919101,0.520447,0.54364,0.634436,0.418035,0.71672,0.920714,0.541025,0.263465,0.945963,0.140871,0.599898,0.111529,0.608721,0.56315,0.618867,0.706133,0.998224,0.752533,0.608505,0.623254,0.123973,0.989851,0.434772,0.221147,0.846414,0.964662,0.998026,0.563429,0.887,0.381532,0.999886,0.342734,0.629001,0.706198,0.501297,0.399433,0.291921,0.384859,0.695354,0.562003,0.416556,0.703341,0.414889,0.549787,0.711644,0.819863,0.022187,0.433477,0.116493,0.665763,0.534862,0.348021,0.777979,0.915277,0.425027,0.858391,0.848688,0.264664,0.759472,0.472826,0.144945,0.254186,0.0676489,0.158581,0.985491,0.759524,0.55609,0.666096,0.681133,0.633233,0.613782,0.106643,0.310163,0.762711,0.677979,0.63549,0.853585,0.489884,0.96268,0.994024,0.830354,0.934926,0.599655,0.725186,0.934702,0.285665,0.858123,0.262883,0.362757,0.920561,0.51776,0.437204,0.541596,0.0704585,0.4155,0.162473,0.176831,0.319146,0.905285,0.971873,0.341364,0.366602,0.825037,0.953654,0.10122,0.890087,0.0429783,0.539713,0.811713,0.901439,0.902587,0.192184,0.741212,0.0965042,0.024099,0.116349,0.134455,0.968489,0.627602,0.977877,0.863608,0.481839,0.904576,0.51757,0.146187,0.825601,0.83784,0.517804,0.955284,0.595279,0.935869,0.853962,0.198436,0.716287,0.530216,0.81997,0.872282,0.153272,0.503537,0.0515944,0.652988,0.0847471,0.0682673,0.150925,0.87255,0.166035,0.0645503,0.105497,0.103361,0.407454,0.534769,0.0554505,0.096209,0.0547516,0.848691,0.783936,0.499704,0.146858,0.208755,0.717653,0.81346,0.214488,0.663356,0.335609,0.501633,0.274403,0.124922,0.279614,0.924128,0.352411,0.884334,0.469949,0.389665,0.336484,0.112945,0.174934,0.756641,0.686721,0.67676,0.954457,0.98618,0.762195,0.731799,0.0344121,0.836501,0.316024,0.14583,0.684767,0.442215,0.925701,0.0951735,0.107708,0.602911,0.970515,0.397882,0.0292178,0.964806,0.919878,0.463995,0.19681,0.834288,0.171587,0.149963,0.442722,0.421154,0.213164,0.0737489,0.471675,0.884769,0.578746,0.284808,0.445554,0.0446768,0.0710174,0.265135,0.36576,0.336098,0.774593,0.312541,0.103433,0.629016,0.131376,0.643379,0.52701,0.781585,0.403342,0.222639,0.685286,0.177072,0.972349,0.0199831,0.671551,0.335112,0.192888,0.756085,0.413219,0.406528,0.655348,0.0957245,0.218946,0.706842,0.884619,0.495855,0.016495,0.233612,0.125575,0.483351,0.143945,0.272641,0.67707,0.53306,0.301095,0.86989,0.145446,0.282801,0.692928,0.632003,0.40215,0.763084,0.716806,0.517714,0.206107,0.590528,0.601414,0.75561,0.966807,0.730458,0.569897,0.739436,0.887327,0.804027,0.804795,0.324138,0.253633,0.366076,0.620711,0.44437,0.345697,0.241741,0.410688,0.733745,0.613824,0.581812,0.200043,0.210476,0.0727612,0.48032,0.15698,0.278158,0.31093,0.927319,0.250752,0.645819,0.545822,0.555892,0.695515,0.711506,0.462713,0.614991,0.833821,0.0751235,0.33671,0.139681,0.921845,0.162916,0.304987,0.763769,0.622904,0.684964,0.79516,0.748415,0.356209,0.93672,0.709376,0.357601,0.0592041,0.985994,0.393018,0.434935,0.966928,0.458152,0.0607858,0.377963,0.777055,0.58089,0.9714,0.958492,0.110917,0.424951,0.764283,0.401967,0.305517,0.861661,0.642329,0.641331,0.879237,0.586837,0.819541,0.811727,0.299184,0.80919,0.366355,0.936095,0.694203,0.409146,0.392956,0.465444,0.11616,0.814866,0.819114,0.339028,0.0448622,0.0369954,0.567035,0.609784,0.997935,0.651661,0.365869,0.193587,0.215557,0.843448,0.127389,0.172198,0.25104,0.699953,0.699846,0.198996,0.361243,0.675024,0.205584,0.563346,0.673547,0.16507,0.819977,0.837208,0.973036,0.435263,|0.52824,0.31484,0.564956,0.793637,0.110184,0.784639,0.834043,0.994388,0.622184,0.532843,0.179818,0.259563,0.568774,0.431967,0.196885,0.619691,0.213326,0.35477,0.109996,0.947645,0.459002,0.265174,0.0478179,0.116753,0.232621,0.686545,0.0288355,0.358369,0.597389,0.884136,0.665569,0.277847,0.86152,0.577856,0.220239,0.658484,0.19536,0.40855,0.618622,0.315108,0.754179,0.610512,0.477306,0.496882,0.318437,0.304942,0.860667,0.532189,0.543974,0.392018,0.776203,0.731889,0.193833,0.959083,0.317411,0.250606,0.901563,0.966723,0.471007,0.564968,0.625594,0.445974,0.0468465,0.606749,0.0121865,0.100739,0.0605325,0.444385,0.222494,0.260435,0.486187,0.496365,0.356048,0.0758703,0.167915,0.998285,0.238164,0.3077,0.870979,0.942142,0.300669,0.940136,0.55765,0.232707,0.925706,0.22518,0.21481,0.366901,0.420029,0.27085,0.291626,0.197058,0.0971942,0.68334,0.522401,0.649158,0.710585,0.813811,0.681305,0.546231,0.622568,0.211059,0.81489,0.332552,0.0862859,0.793752,0.00602454,0.765545,0.815851,0.284662,0.871649,0.752692,0.400983,0.740958,0.245385,0.898135,0.332662,0.679175,0.756501,0.0033623,0.742652,0.123326,0.00302511,0.322636,0.124569,0.125433,0.0201933,0.0368531,0.728338,0.0717609,0.668293,0.111494,0.267482,0.486583,0.245598,0.358116,0.718381,0.321814,0.355163,0.155712,0.252367,0.481084,0.189089,0.0809475,0.986429,0.616967,0.862701,0.803703,0.288777,0.0933467,0.646533,0.825855,0.395274,0.509086,0.195796,0.327976,0.761196,0.427331,0.0968771,0.445261,0.515917,0.113923,0.390792,0.694502,0.836843,0.668972,0.522862,0.612652,0.0526454,0.0331523,0.222234,0.886099,0.0753366,0.506605,0.436416,0.39034,0.640711,0.218584,0.983228,0.872824,0.237659,0.86658,0.994475,0.249644,0.104515,0.455367,0.693789,0.00940949,0.594232,0.588906,0.0797638,0.0587395,0.754526,0.428989,0.423299,0.964769,0.387147,0.402721,0.314176,0.891212,0.0503251,0.379906,0.589692,0.638647,0.42751,0.25812,0.399752,0.789533,0.234271,0.23031,0.6477,0.0977736,0.507084,0.84091,0.781404,0.420735,0.49202,0.997285,0.343221,0.881049,0.33076,0.0372503,0.200569,0.976908,0.660429,0.487764,0.528275,0.337753,0.637781,0.403739,0.0129001,0.718655,0.074221,0.313134,0.0712547,0.776371,0.628864,0.293734,0.65258,0.626954,0.443321,0.810408,0.12074,0.466179,0.465346,0.546905,0.824896,0.901957,0.101734,0.900065,0.958809,0.923471,0.238702,0.777682,0.470275,0.0946443,0.100151,0.897863,0.99985,0.72023,0.555385,0.44459,0.295678,0.213252,0.584236,0.130773,0.361986,0.327738,0.122677,0.629325,0.916223,0.946711,0.11549,0.651304,0.0774111,0.0471216,0.00431198,0.216049,0.278123,0.17395,0.0744962,0.0818091,0.0656512,0.713033,0.945672,0.0664687,0.73071,0.671992,0.908489,0.898795,0.402465,0.6685,0.999858,0.131076,0.037272,0.0240669,0.598241,0.480935,0.31547,0.0252182,0.135309,0.431814,0.137356,0.134858,0.256942,0.787284,0.93886,0.817469,0.161769,0.648851,0.673387,0.912863,0.291739,0.39416,0.826581,0.141832,0.322563,0.0240162,0.833831,0.111783,0.298204,0.895771,0.0728253,0.477338,0.580382,0.192826,0.348262,0.892395,0.898658,0.0679876,0.20806,0.14377,0.974481,0.820765,0.416945,0.797456,0.69341,0.751666,0.994651,0.342806,0.0286583,0.121312,0.570411,0.572671,0.405549,0.359412,0.194806,0.318892,0.748182,0.238841,0.150752,0.0648077,0.317002,0.556239,0.896127,0.898352,0.861039,0.196701,0.0153655,0.30656,0.659271,0.120876,0.69207,0.996589,0.0337898,0.567763,0.237531,0.403346,0.56914,0.803903,0.489861,0.912704,0.0274211,0.424924,0.721475,0.887278,0.908847,0.457911,0.715231,0.832559,0.0424393,0.677279,0.0199383,0.141,0.867216,0.875303,0.0346644,0.605303,0.746569,0.183448,0.471949,0.060169,0.747662,0.296521,0.430174,0.685339,0.104497,0.292507,0.0992209,0.455268,0.897871,0.98709,0.732098,0.430774,0.550179,0.15391,0.776894,0.818561,0.125729,0.1796,0.242714,0.732009,0.266338,0.0206581,0.396275,0.40499,0.834928,0.746272,0.161538,0.0494652,0.867583,0.350431,0.170148,0.870119,0.057838,0.222885,0.0554078,0.669521,0.39258,0.836591,0.111565,0.244688,0.415737,0.891164,0.908797,0.0255823,0.435656,0.822679,0.559747,0.548025,0.938038,0.850169,0.577905,0.206276,0.767195,0.121254,0.680797,0.597028,0.728893,0.880849,0.258767,0.520489,0.091841,0.168188,0.636987,0.210227,0.728484,0.288135,0.360212,0.0913057,0.212677,0.492449,0.522558,0.250104,0.692435,0.38399,0.925979,0.216806,0.816392,0.485088,0.639498,0.854975,0.194214,0.710618,0.104531,0.447037,0.24555,0.91241,0.678028,0.157298,0.559606,0.626852,0.834006,0.219724,0.120724,0.0725657,0.420467,0.241881,0.383718,0.769701,0.427832,0.229119,0.443671,0.0752782,0.45871,0.826669,0.0316689,0.27366,0.105898,0.235977,0.874823,0.133777,0.647084,0.543185,0.667259,0.713106,0.492968,0.177358,0.0750208,0.316301,0.807456,0.508543,0.704644,0.169619,0.214821,0.958366,0.86382,0.389728,0.276001,0.6282,0.171624,0.069828,0.317027,0.671143,0.0474042,0.240753,0.187755,0.795372,0.482746,0.761678,0.480028,0.0206935,0.572973,0.713926,0.695668,0.759723,0.0106347,0.17403,0.234462,0.338677,0.166036,0.935659,0.533328,0.421739,0.131153,0.278813,0.159433,0.839544,0.714723,0.986339,0.681538,0.654406,0.317576,0.356508,0.658363,0.71778,0.0803112,0.12704,0.805345,0.348717,0.519606,0.835558,0.331696,0.767948,0.97319,0.0300777,0.122326,0.610891,0.0215832,0.781389,0.0195565,0.403755,0.695284,0.51099,0.83774,0.452552,0.360082,0.921151,0.889199,0.307915,0.982458,0.113022,0.0208412,0.0045929,0.80862,0.0167105,0.0222468,0.0591218,0.541837,0.508655,0.0410593,0.376433,0.704485,0.773957,0.757196,0.215951,0.635119,0.687313,0.273333,0.585062,0.627783,0.608528,0.87295,0.731935,0.989835,0.0841101,0.81474,0.565519,0.340115,0.41115,0.955948,0.904536,0.638368,0.717989,0.207938,0.115169,0.269623,0.651359,0.599063,0.477387,0.850129,0.765666,0.368027,0.934045,0.0101817,0.871747,0.118741,0.555735,0.835107,0.886651,0.969462,0.659295,0.437679,0.293775,0.772953,0.493723,0.975929,0.194037,0.805713,0.0958377,0.190957,0.767912,0.274275,0.685532,0.249731,0.132385,0.420424,0.798315,0.698336,0.716835,0.392143,0.75067,0.584994,0.055791,0.366118,0.056132,0.683671,0.768385,0.318426,0.852308,0.187156,0.22232,0.326299,0.590809,0.158084,0.815427,0.03162,0.012127,0.751103,0.445875,0.627348,0.719738,0.539825,0.945583,0.40013,0.665765,0.79748,0.581905,0.686175,0.617015,0.404282,0.0637325,0.577137,0.0674198,0.197197,0.444415,0.030884,0.437628,0.412294,0.85573,0.825846,0.425622,0.601369,0.281395,0.397628,0.491686,0.342275,0.0839226,0.610511,0.937214,0.998649,0.803817,0.639766,0.380295,0.959911,0.164701,0.258518,0.590934,0.74294,0.205029,0.455208,0.293134,0.19224,0.344693,0.742417,0.10028,0.31873,0.874265,0.539959,0.321041,0.653234,0.704035,0.295439,0.189772,0.936325,0.780834,0.164038,0.852441,0.940817,0.53139,0.261032,0.0366969,0.84317,0.547974,0.121906,0.688426,0.208648,0.536171,0.297911,0.82243,0.312366,0.741396,0.906732,0.415629,0.830143,0.410934,0.442549,0.0228743,0.437798,0.908445,0.377795,0.717284,0.954592,0.836998,0.90278,0.363632,0.864499,0.480248,0.252039,0.419322,0.545727,0.466251,0.0877306,0.83986,0.15138,0.102152,0.811349,0.848925,0.624718,0.24488,0.799968,0.795244,0.724864,0.802034,0.339352,0.0273374,0.0415909,0.357771,0.902664,0.982933,0.965286,0.893806,0.486995,0.506305,0.514522,0.172199,0.0468206,0.215567,0.505001,0.150693,0.326988,0.632063,0.375393,0.0333557,0.280766,0.260292,0.598735,0.984644,0.691594,0.192416,0.884528,0.739463,0.297123,0.195305,0.73171,0.812282,0.583569,0.730384,0.327013,0.432597,0.814935,0.515773,0.543071,0.879141,0.377876,0.188515,0.649187,0.986895,0.410352,0.949418,0.52513,0.56062,0.894033,0.894188,0.339654,0.625781,0.980749,0.154298,0.0845068,0.245407,0.482333,0.704828,0.0616097,0.760994,0.427075,0.74197,0.45252,0.329619,0.441792,0.829893,0.829864,0.449536,0.356952,0.269297,0.0987053,0.200161,0.109136,0.96309,0.0307913,0.617017,0.468308,0.0976385,0.258216,0.567636,0.264857,0.471904,0.124918,0.778873,0.418453,0.393549,0.524488,0.659488,0.792913,0.91393,0.949824,0.86288,0.69178,0.188305,0.973073,0.499662,0.230228,0.896385,0.984581,0.897074,0.472648,0.968078,0.947751,0.100973,0.431937,0.694619,0.20538,0.181028,0.524281,0.978497,0.315767,0.892516,0.0432892,0.192625,0.61234,0.163678,0.21148,0.554219,0.422455,0.930937,0.260262,0.533875,0.875072,0.497849,0.628709,0.330726,0.212326,0.396153,0.824884,0.0922722,0.183242,0.254548,0.475146,0.153619,0.521707,0.838007,0.834321,0.568183,0.202248,0.238837,0.797599,0.46778,0.63688,0.518963,0.808172,0.850663,0.973795,0.219221,0.632053,0.6535,0.40638,0.131795,0.891793,0.952485,0.425663,0.472021,0.731133,0.559322,0.110817,0.690354,0.353973,0.0834297,0.768622,0.171297,0.225819,0.359039,0.696171,0.288298,0.954252,0.751623,0.664547,0.895329,0.688779,0.210656,0.743832,0.166647,0.928093,0.935054,0.203219,0.837952,0.570213,0.491868,0.613245,0.855254,0.136838,0.623746,0.230383,0.28155,0.350247,0.461594,0.920878,0.420666,0.450148,0.373464,0.000208795,0.0718275,0.192915,0.642141,0.440057,0.990246,0.108536,0.374576,0.650219,0.0834539,0.914012,0.242526,0.208241,0.584774,0.0160028,0.19103,0.864377,0.78272,0.206011,0.701695,0.709997,0.0689161,0.860991,0.209378,0.584792,0.223712,0.0797389,0.191434,0.382486,0.406927,0.871568,0.28904,|0.862731,0.605303,0.67137,0.106587,0.399769,0.326778,0.164577,0.360587,0.538383,0.934243,0.849989,0.599769,0.394453,0.95431,0.554274,0.73058,0.266884,0.377848,0.935743,0.540082,0.664815,0.0450858,0.0929067,0.0755798,0.243966,0.0291304,0.905595,0.619573,0.469516,0.685577,0.498922,0.186568,0.422283,0.979018,0.43108,0.656043,0.54447,0.426851,0.570154,0.98868,0.0171009,0.643572,0.347392,0.766604,0.028788,0.778258,0.596802,0.132327,0.822812,0.314378,0.800465,0.803287,0.627152,0.588734,0.804775,0.333116,0.12771,0.542345,0.998381,0.124004,0.980615,0.728522,0.592479,0.837898,0.931359,0.787794,0.864822,0.789922,0.740547,0.760198,0.914621,0.6794,0.570177,0.424076,0.0297156,0.0945997,0.712544,0.50665,0.106188,0.783572,0.803839,0.456282,0.712164,0.0608612,0.211281,0.0980935,0.974162,0.109976,0.00403482,0.105296,0.942136,0.398188,0.931471,0.161882,0.668073,0.493695,0.2101,0.22876,0.231992,0.126337,0.398004,0.366284,0.865854,0.874088,0.59837,0.630084,0.601641,0.196308,0.98376,0.687225,0.325072,0.919822,0.0109559,0.412617,0.45734,0.184113,0.758884,0.580808,0.689942,0.545282,0.0356195,0.708356,0.341108,0.79699,0.466576,0.537224,0.978042,0.573072,0.46422,0.677616,0.746505,0.0790861,0.671575,0.656324,0.956773,0.137007,0.825666,0.043915,0.145798,0.183219,0.717308,0.907895,0.35176,0.433183,0.15088,0.686295,0.0533347,0.708294,0.537634,0.758278,0.629547,0.541068,0.241613,0.351335,0.152037,0.0364594,0.798337,0.464529,0.670457,0.473366,0.229351,0.878806,0.194986,0.79679,0.673479,0.935189,0.43589,0.4446,0.425559,0.986347,0.607611,0.749469,0.593339,0.865687,0.933017,0.656404,0.663641,0.607001,0.33254,0.685309,0.462002,0.538424,0.819469,0.610199,0.0421625,0.741778,0.325866,0.875677,0.318001,0.523335,0.649247,0.933558,0.240788,0.573802,0.160759,0.37693,0.21183,0.14583,0.871809,0.857027,0.170631,0.407789,0.617723,0.384266,0.546877,0.945385,0.332793,0.349289,0.668436,0.238596,0.700156,0.380095,0.222143,0.913603,0.779777,0.473583,0.348458,0.554864,0.283073,0.404698,0.574345,0.478342,0.338757,0.346925,0.862094,0.79313,0.814301,0.369425,0.821635,0.182554,0.22571,0.765755,0.562263,0.440573,0.58531,0.715905,0.211626,0.824658,0.964241,0.00617439,0.558006,0.674509,0.364528,0.978193,0.867959,0.676673,0.948299,0.353126,0.411476,0.874071,0.0973746,0.0173951,0.597382,0.574493,0.754982,0.146325,0.421131,0.234087,0.992962,0.862424,0.663975,0.392333,0.476958,0.0637609,0.388817,0.544899,0.466886,0.77185,0.461585,0.795154,0.327287,0.593596,0.472034,0.132905,0.133169,0.785764,0.637442,0.143558,0.462051,0.680325,0.992133,0.800843,0.110976,0.218046,0.474501,0.432057,0.773921,0.84591,0.16512,0.526676,0.0494135,0.0781724,0.077634,0.673623,0.458798,0.174229,0.767419,0.517346,0.429662,0.856708,0.1424,0.640627,0.291444,0.201553,0.808951,0.0306539,0.326267,0.584667,0.918701,0.455753,0.384389,0.527872,0.398127,0.00853133,0.814141,0.181099,0.845738,0.386594,0.689057,0.792861,0.946926,0.914509,0.72772,0.678263,0.944909,0.130905,0.413617,0.895106,0.428693,0.562509,0.936742,0.777743,0.166788,0.285045,0.163507,0.0900047,0.129348,0.782343,0.901492,0.140321,0.60206,0.18104,0.559991,0.351353,0.753491,0.520063,0.0768619,0.976131,0.347086,0.0118883,0.765711,0.429586,0.470224,0.0538113,0.36689,0.894217,0.650966,0.0900096,0.542052,0.121817,0.0703793,0.739136,0.390035,0.709852,0.2243,0.453663,0.752258,0.0532788,0.650415,0.363852,0.0164898,0.522467,0.0749813,0.647536,0.143435,0.837982,0.940547,0.318318,0.506617,0.478351,0.0922603,0.613898,0.693638,0.953742,0.0519022,0.59821,0.467385,0.748555,0.632928,0.972968,0.580987,0.696616,0.0473525,0.223494,0.0965297,0.361871,0.273666,0.207027,0.304988,0.864429,0.197555,0.0360245,0.593137,0.913239,0.0843646,0.398275,0.965577,0.763901,0.706618,0.215316,0.614272,0.332863,0.557357,0.204293,0.748723,0.760365,0.882815,0.270095,0.122319,0.348839,0.164493,0.0893235,0.392579,0.73571,0.480597,0.281461,0.250717,0.156384,0.911481,0.0687041,0.34276,0.57573,0.806253,0.409738,0.344247,0.331503,0.457306,0.696052,0.117204,0.0106368,0.0118393,0.139286,0.873769,0.69777,0.362692,0.207208,0.0870714,0.54292,0.240012,0.577546,0.217361,0.49102,0.0614778,0.31416,0.392874,0.14106,0.581751,0.503904,0.529666,0.947913,0.402068,0.534183,0.43543,0.115226,0.508807,0.697809,0.756377,0.815162,0.61471,0.264673,0.567835,0.322876,0.0205861,0.940851,0.127546,0.16915,0.0708953,0.425071,0.0599726,0.609591,0.105075,0.0726069,0.748799,0.629099,0.578105,0.793023,0.0152285,0.0564367,0.600587,0.299715,0.335805,0.438304,0.762703,0.8138,0.365956,0.277688,0.287233,0.207868,0.91312,0.655143,0.856977,0.592743,0.087069,0.828263,0.58559,0.325565,0.291815,0.568063,0.157497,0.337377,0.665772,0.601179,0.0783022,0.817082,0.674667,0.785612,0.0544405,0.677429,0.675188,0.743274,0.503063,0.481515,0.0917545,0.0848982,0.935106,0.773731,0.92496,0.436672,0.461223,0.314347,0.119281,0.751399,0.647949,0.829234,0.456081,0.248743,0.337453,0.63465,0.0234992,0.387026,0.856166,0.647508,0.49556,0.937608,0.655501,0.847192,0.159934,0.45684,0.951788,0.945899,0.555334,0.219191,0.5458,0.35404,0.0603608,0.488943,0.515125,0.468968,0.663947,0.332774,0.407902,0.268765,0.303379,0.056205,0.0725226,0.169155,0.924803,0.0616217,0.601255,0.392824,0.682455,0.84817,0.040558,0.739584,0.151466,0.225164,0.145955,0.460562,0.70324,0.505341,0.144235,0.886973,0.980427,0.731209,0.580804,0.132247,0.740904,0.651063,0.991558,0.125286,0.10687,0.948821,0.327491,0.558325,0.301517,0.60404,0.14528,0.929433,0.855262,0.0666876,0.512768,0.336309,0.23961,0.805297,0.118819,0.616495,0.518274,0.0818703,0.975016,0.425496,0.31599,0.100817,0.220843,0.626268,0.65641,0.128354,0.654698,0.464857,0.88838,0.183978,0.526332,0.910507,0.158104,0.366854,0.981105,0.479562,0.338561,0.591097,0.710321,0.940673,0.213902,0.508343,0.531472,0.280901,0.283134,0.813966,0.0965649,0.114444,0.169996,0.111815,0.585949,0.281636,0.0157464,0.199344,0.322685,0.29362,0.709925,0.98393,0.0522433,0.113042,0.292245,0.767064,0.509538,0.421138,0.996586,0.21303,0.433781,0.217477,0.952759,0.748206,0.258301,0.911986,0.686313,0.614361,0.388939,0.142333,0.964804,0.654071,0.60217,0.620091,0.57047,0.337074,0.780079,0.583631,0.230036,0.954681,0.55165,0.465787,0.668108,0.325138,0.972784,0.798491,0.971925,0.307573,0.404678,0.262959,0.449168,0.681645,0.0654348,0.986596,0.932378,0.421368,0.0924616,0.691063,0.957047,0.130613,0.134152,0.226245,0.887516,0.0685947,0.852049,0.932303,0.340788,0.292829,0.783054,0.696314,0.0644658,0.750327,0.376296,0.0286008,0.176148,0.703597,0.532035,0.841727,0.951249,0.690658,0.265063,0.829559,0.102285,0.312248,0.58295,0.413659,0.929807,0.928065,0.37563,0.0157194,0.289939,0.678063,0.825758,0.58528,0.388432,0.458266,0.917375,0.399924,0.286298,0.118382,0.263778,0.775037,0.370215,0.973192,0.375165,0.665121,0.524494,0.881946,0.739911,0.0187266,0.282595,0.980973,0.990472,0.0841017,0.370072,0.531009,0.303555,0.89573,0.937673,0.845213,0.729427,0.461954,0.421197,0.333809,0.0567385,0.0120921,0.341669,0.00352871,0.720339,0.208113,0.619243,0.203791,0.475301,0.772583,0.151018,0.677336,0.502661,0.647827,0.483862,0.274226,0.708888,0.0130473,0.868334,0.316713,0.43404,0.958837,0.390916,0.215173,0.764424,0.0317484,0.754825,0.412863,0.164256,0.0278976,0.111847,0.7335,0.736595,0.995509,0.846079,0.20753,0.57271,0.0190504,0.733576,0.821426,0.120362,0.306675,0.514207,0.314593,0.666785,0.406963,0.0172412,0.635618,0.313605,0.222674,0.689438,0.904061,0.32439,0.8017,0.540597,0.645788,0.797048,0.860452,0.668151,0.402932,0.597328,0.0357239,0.248824,0.798619,0.0109939,0.795536,0.207695,0.948251,0.885212,0.427771,0.884978,0.939765,0.669149,0.684772,0.345695,0.445278,0.0190861,0.113486,0.672047,0.419527,0.788623,0.765935,0.0988232,0.970674,0.695664,0.667452,0.171942,0.85179,0.159027,0.805423,0.655863,0.63073,0.152788,0.0528929,0.0382078,0.305612,0.581739,0.101675,0.829339,0.251393,0.942933,0.111828,0.856187,0.312768,0.980983,0.430353,0.133232,0.100271,0.754754,0.65923,0.0901095,0.44208,0.659936,0.579519,0.0977708,0.761172,0.930781,0.254105,0.329221,0.516804,0.394899,0.243462,0.323948,0.683428,0.844519,0.601591,0.601589,0.243466,0.390235,0.300507,0.484713,0.142927,0.515639,0.228067,0.935512,0.304803,0.253166,0.390569,0.759906,0.475484,0.49132,0.138135,0.957426,0.30058,0.838407,0.25298,0.349522,0.0616148,0.155135,0.98129,0.380441,0.144814,0.62162,0.653174,0.240142,0.658987,0.450726,0.987554,0.402325,0.886828,0.396191,0.865766,0.839288,0.871731,0.136936,0.529544,0.170571,0.708416,0.411481,0.294404,0.0687246,0.289408,0.0757726,0.0447946,0.788598,0.392774,0.536192,0.886204,0.935266,0.490097,0.253675,0.552904,0.703766,0.930175,0.746341,0.929548,0.0594957,0.656582,0.650949,0.422729,0.431805,0.497162,0.829453,0.667461,0.968069,0.389136,0.137871,0.30134,0.729606,0.947932,0.311356,0.133345,0.797427,0.750732,0.210016,0.491818,0.691518,0.253544,0.54356,0.819141,0.0884489,0.745704,0.161503,0.809138,0.315852,0.698966,0.415807,0.302958,0.977112,0.732858,0.0370233,0.111218,0.0807969,0.838296,0.485636,0.607007,0.363677,0.901115,0.138156,0.854561,0.19554,0.545025,0.096338,0.490042,0.167815,0.556722,0.229073,0.342577,0.34459,0.106872,|0.894465,0.550704,0.272322,0.531227,0.210258,0.901343,0.390458,0.425355,0.827236,0.105607,0.461432,0.822748,0.0460292,0.0490637,0.0970326,0.280046,0.469777,0.296363,0.821774,0.484204,0.0503672,0.528146,0.430612,0.775123,0.872642,0.84771,0.936576,0.211755,0.257463,0.939827,0.354294,0.548367,0.69283,0.251789,0.820949,0.08917,0.650624,0.724447,0.199719,0.898263,0.404005,0.898264,0.727761,0.0549805,0.682391,0.111739,0.672294,0.844576,0.531395,0.0589825,0.488322,0.178803,0.304461,0.290262,0.586091,0.488157,0.192296,0.115568,0.998063,0.00061512,0.606697,0.976552,0.464446,0.292794,0.721888,0.348607,0.678165,0.344469,0.652263,0.304435,0.428352,0.354816,0.699282,0.652954,0.928593,0.382115,0.315664,0.41229,0.818138,0.0895404,0.411688,0.347861,0.407016,0.909944,0.35578,0.816318,0.673684,0.66273,0.661698,0.511044,0.78812,0.652011,0.566499,0.725058,0.176093,0.397603,0.064605,0.297288,0.841092,0.678161,0.286625,0.585171,0.933604,0.407261,0.255768,0.65901,0.396259,0.292752,0.836853,0.567743,0.217532,0.421211,0.0866271,0.943926,0.812648,0.972075,0.274291,0.39438,0.603691,0.692193,0.159567,0.98675,0.784461,0.229679,0.0945555,0.279849,0.71527,0.58587,0.183062,0.266438,0.0340494,0.296229,0.104967,0.535364,0.606253,0.169437,0.231247,0.096275,0.32001,0.959775,0.157732,0.311567,0.451184,0.732692,0.580953,0.0721496,0.713392,0.906019,0.854617,0.278986,0.0361257,0.0498928,0.0703573,0.992085,0.682446,0.945234,0.0829486,0.829035,0.205217,0.834911,0.261864,0.31595,0.0448502,0.0316834,0.215191,0.9067,0.254577,0.0158042,0.3544,0.87217,0.685032,0.51514,0.953176,0.447754,0.649534,0.881884,0.55274,0.902355,0.176782,0.552594,0.467163,0.336639,0.749918,0.947484,0.196738,0.953669,0.74285,0.17039,0.0651736,0.301309,0.984167,0.454221,0.395925,0.403441,0.0883734,0.399403,0.211768,0.0829861,0.890631,0.521579,0.613488,0.549366,0.714579,0.0184653,0.671107,0.972578,0.966043,0.270055,0.342598,0.141976,0.75727,0.233767,0.234997,0.163037,0.731868,0.182205,0.360997,0.148524,0.683832,0.586749,0.948569,0.236065,0.799894,0.72909,0.972203,0.528212,0.67947,0.167588,0.604496,0.276316,0.562855,0.150485,0.0662849,0.869207,0.54037,0.87966,0.709945,0.24441,0.0402719,0.0316276,0.387838,0.225741,0.934906,0.419887,0.0589449,0.0744818,0.627723,0.166343,0.384701,0.937271,0.899981,0.840818,0.0385244,0.96099,0.630935,0.0394626,0.37457,0.00227612,0.304585,0.636692,0.870257,0.669683,0.826872,0.540664,0.914918,0.423998,0.296726,0.233367,0.410887,0.469277,0.931871,0.0117314,0.079935,0.118657,0.722315,0.262915,0.0874919,0.901085,0.743804,0.601106,0.335114,0.212698,0.186084,0.502358,0.282213,0.955183,0.22595,0.908732,0.764824,0.715826,0.0874218,0.609327,0.768706,0.175602,0.991238,0.390419,0.172233,0.572409,0.500348,0.178617,0.506422,0.678501,0.565147,0.998532,0.293285,0.0721621,0.653546,0.689676,0.918212,0.620744,0.526407,0.496794,0.765613,0.748267,0.00505102,0.984032,0.31744,0.863592,0.217908,0.330999,0.69814,0.223871,0.191352,0.193281,0.511529,0.851099,0.670803,0.763599,0.743598,0.141962,0.0727279,0.946948,0.192093,0.208444,0.306297,0.477908,0.835822,0.574795,0.165331,0.108875,0.189367,0.40733,0.567356,0.782976,0.515384,0.17214,0.384181,0.214182,0.619621,0.958681,0.802694,0.104926,0.548949,0.0257839,0.256613,0.41749,0.789022,0.40874,0.588072,0.883358,0.882739,0.839855,0.889131,0.0450476,0.169582,0.751995,0.787575,0.593801,0.515301,0.203602,0.946151,0.444885,0.350596,0.883792,0.814186,0.538579,0.0897473,0.518824,0.362885,0.0543476,0.0334144,0.157749,0.573479,0.389338,0.0381924,0.875485,0.342095,0.0561459,0.214677,0.493788,0.788045,0.758016,0.747971,0.126268,0.523589,0.506761,0.820996,0.497559,0.261535,0.655032,0.552141,0.562791,0.802483,0.0457693,0.194498,0.536539,0.86927,0.469843,0.972629,0.245425,0.0597012,0.0711973,0.497693,0.280901,0.412516,0.897771,0.471131,0.696362,0.266156,0.739792,0.5463,0.509404,0.925413,0.130721,0.278397,0.760754,0.049733,0.173005,0.929112,0.704141,0.427115,0.721469,0.283891,0.830959,0.303725,0.604948,0.814366,0.278137,0.310413,0.58355,0.249177,0.162607,0.787565,0.0359117,0.451533,0.112197,0.703331,0.325036,0.866638,0.381827,0.428126,0.00202715,0.0717561,0.105899,0.209027,0.89256,0.287553,0.55723,0.17657,0.627879,0.435543,0.136224,0.463091,0.126037,0.268236,0.876926,0.613012,0.367111,0.893687,0.0820051,0.336903,0.194823,0.407184,0.381642,0.152973,0.259564,0.847512,0.957395,0.253396,0.692259,0.945167,0.21726,0.0364612,0.726644,0.398806,0.74087,0.837575,0.361381,0.966988,0.188894,0.817585,0.115764,0.575331,0.401358,0.606557,0.440615,0.583085,0.348432,0.441964,0.184151,0.396113,0.611479,0.92366,0.747814,0.885946,0.20209,0.00174701,0.476831,0.938006,0.601471,0.0929354,0.304604,0.816562,0.742972,0.559062,0.424945,0.72399,0.336153,0.409811,0.386884,0.768415,0.0109853,0.232971,0.447446,0.490628,0.145002,0.209064,0.579417,0.269834,0.977742,0.259401,0.234535,0.445251,0.605217,0.0168358,0.130464,0.722843,0.997405,0.869168,0.00286227,0.671824,0.012414,0.352815,0.241107,0.283756,0.55282,0.903446,0.995482,0.0923086,0.906695,0.214589,0.0634367,0.155782,0.770265,0.548554,0.409697,0.829323,0.170298,0.990547,0.696612,0.471883,0.0280422,0.381556,0.791224,0.717778,0.868712,0.328013,0.00261247,0.300419,0.00200534,0.164997,0.1171,0.642861,0.504361,0.159275,0.929917,0.865136,0.965309,0.393598,0.0656241,0.384982,0.615485,0.194987,0.775926,0.681725,0.0389711,0.120948,0.178934,0.344224,0.224638,0.0807561,0.417444,0.637963,0.600101,0.0423137,0.497099,0.858659,0.25281,0.0979123,0.512177,0.0238386,0.418737,0.865775,0.469134,0.0352951,0.116195,0.668905,0.12113,0.746973,0.536857,0.305551,0.6541,0.890885,0.202912,0.820323,0.620949,0.169205,0.815288,0.456004,0.367487,0.84261,0.0896658,0.701989,0.970445,0.140734,0.276652,0.236839,0.491025,0.0553317,0.535673,0.861599,0.449161,0.978533,0.250734,0.0170103,0.156367,0.934632,0.6109,0.938967,0.0429892,0.395372,0.437706,0.513843,0.0107638,0.457809,0.987974,0.594346,0.317559,0.210439,0.102479,0.614083,0.421806,0.770441,0.567718,0.938063,0.837032,0.600835,0.497248,0.325292,0.40773,0.24147,0.14716,0.713764,0.0782158,0.627147,0.799286,0.0236638,0.406631,0.0425137,0.185606,0.843404,0.608448,0.737192,0.427165,0.707334,0.00811815,0.707146,0.83876,0.833899,0.876442,0.746019,0.980502,0.0384325,0.790811,0.431361,0.153585,0.256207,0.843961,0.112601,0.590258,0.449273,0.641564,0.228206,0.964688,0.559364,0.0689416,0.738816,0.781817,0.540249,0.52664,0.235711,0.169076,0.995787,0.464149,0.161622,0.378234,0.00473666,0.311726,0.698208,0.913909,0.835544,0.698344,0.751062,0.899025,0.739714,0.533689,0.998929,0.57962,0.151119,0.258708,0.969302,0.549093,0.519433,0.773742,0.329785,0.865877,0.0359337,0.958967,0.745514,0.900579,0.102338,0.131328,0.0574562,0.982397,0.129511,0.94714,0.0348842,0.273511,0.0422332,0.678084,0.698329,0.758457,0.838461,0.224524,0.707481,0.464677,0.928147,0.299704,0.73711,0.729198,0.983835,0.363256,0.697154,0.860554,0.599938,0.163777,0.347477,0.329103,0.0872304,0.616462,0.0387701,0.441102,0.0799049,0.1385,0.328729,0.837463,0.401121,0.578685,0.944608,0.307489,0.948473,0.406859,0.853585,0.456743,0.0800886,0.93573,0.892382,0.255664,0.148838,0.922069,0.841261,0.979625,0.774522,0.944509,0.564818,0.784998,0.985811,0.974894,0.576169,0.867404,0.373874,0.25224,0.40055,0.226784,0.9809,0.0846069,0.169979,0.713757,0.173793,0.0891542,0.480504,0.628226,0.0376486,0.556655,0.100459,0.0465327,0.378904,0.340674,0.676581,0.468288,0.0893101,0.2934,0.345735,0.0413865,0.931751,0.168262,0.797234,0.848032,0.34651,0.196698,0.219554,0.887541,0.854504,0.238888,0.597862,0.96143,0.0450026,0.18089,0.415271,0.442302,0.621812,0.0272357,0.317312,0.735497,0.941326,0.737209,0.632873,0.183434,0.327456,0.7861,0.985188,0.47498,0.74796,0.896706,0.914512,0.172047,0.212106,0.0482439,0.320334,0.178474,0.648906,0.0245488,0.403604,0.27577,0.600782,0.98396,0.849195,0.936527,0.481985,0.77231,0.309577,0.276442,0.650252,0.370002,0.375993,0.781389,0.848505,0.400244,0.330488,0.525027,0.101497,0.207319,0.395673,0.650913,0.773982,0.190599,0.823803,0.36847,0.513464,0.419916,0.0705091,0.537715,0.999123,0.297761,0.101565,0.973806,0.0105012,0.0131239,0.387886,0.127119,0.0239375,0.699456,0.645613,0.119931,0.692856,0.284091,0.546919,0.929031,0.423402,0.459422,0.911588,0.724325,0.760232,0.391989,0.0946099,0.449265,0.137105,0.473284,0.315927,0.302821,0.170465,0.770308,0.824034,0.817593,0.13459,0.959571,0.641427,0.58353,0.173089,0.677803,0.403773,0.261144,0.862251,0.488551,0.361094,0.762263,0.788726,0.984436,0.591807,0.634695,0.497116,0.679,0.516796,0.844287,0.570652,0.722418,0.124144,0.433669,0.809537,0.445078,0.284877,0.330952,0.730522,0.513445,0.261067,0.415181,0.624401,0.676333,0.05526,0.24528,0.152819,0.815693,0.307369,0.696407,0.0657419,0.270288,0.40467,0.571382,0.924942,0.82695,0.592291,0.751756,0.0956358,0.677624,0.705862,0.0378257,0.268827,0.0341229,0.690815,0.67,0.228678,0.220025,0.837723,0.643603,0.257299,0.0844156,0.795886,0.76868,0.600155,0.0550646,0.485999,0.210684,0.931107,0.653077,0.525936,0.734304,0.81086,0.0111814,0.110082,0.0938329,0.586894,0.716595,0.683035,0.0369624,0.95125,0.0162176,0.807362,0.655345,0.986081,0.421472,|0.615748,0.790152,0.0886608,0.600614,0.0923125,0.760673,0.710681,0.673891,0.541322,0.697044,0.979007,0.894079,0.958353,0.654722,0.35121,0.422897,0.461536,0.944545,0.551868,0.00731725,0.500815,0.872179,0.11265,0.377929,0.615371,0.29291,0.205039,0.845859,0.341412,0.206619,0.0727473,0.501941,0.823094,0.492656,0.0561274,0.631518,0.464277,0.386011,0.647662,0.890086,0.0050633,0.0772092,0.233417,0.360348,0.142107,0.805127,0.0101081,0.705729,0.279792,0.990493,0.515421,0.0624749,0.917491,0.030656,0.931886,0.469422,0.241943,0.670917,0.129835,0.791754,0.0612602,0.924016,0.377168,0.551267,0.863637,0.376017,0.0666539,0.233433,0.145961,0.0111701,0.350706,0.218196,0.0104665,0.0581272,0.793454,0.0864037,0.542354,0.899817,0.155386,0.540946,0.486136,0.265906,0.379979,0.117221,0.870649,0.0408508,0.932742,0.963274,0.862159,0.00553536,0.102135,0.629341,0.73056,0.368349,0.898909,0.93357,0.642605,0.14995,0.245983,0.365358,0.986864,0.894851,0.897301,0.543924,0.0742548,0.0908971,0.00775337,0.782696,0.0482007,0.0604737,0.970251,0.490998,0.008564,0.700995,0.81178,0.508491,0.653157,0.347067,0.507756,0.093313,0.356217,0.675124,0.158458,0.820055,0.331738,0.854659,0.589095,0.697408,0.50775,0.567645,0.439911,0.843965,0.44044,0.728099,0.319117,0.462721,0.489477,0.0385033,0.243801,0.98189,0.11589,0.735052,0.567634,0.571896,0.99378,0.639754,0.859498,0.849471,0.530713,0.828854,0.2012,0.48035,0.813053,0.788209,0.558506,0.00284111,0.953017,0.6988,0.786902,0.878491,0.0787142,0.239877,0.575681,0.0151959,0.900675,0.922,0.395141,0.290126,0.376403,0.810897,0.41054,0.487978,0.0687886,0.880687,0.653057,0.152885,0.823445,0.316505,0.954298,0.381693,0.683792,0.0978885,0.0682504,0.474157,0.968993,0.523688,0.631008,0.453645,0.313712,0.609659,0.669311,0.0996936,0.908849,0.307829,0.456408,0.807873,0.75136,0.104222,0.733001,0.893018,0.962844,0.590095,0.900944,0.220521,0.308468,0.375402,0.896254,0.766253,0.941833,0.606789,0.91789,0.756389,0.541549,0.63917,0.585663,0.876674,0.743057,0.449999,0.666896,0.471661,0.902409,0.481723,0.42481,0.716269,0.530007,0.726281,0.691179,0.370214,0.190038,0.709217,0.148553,0.670728,0.409988,0.23255,0.803699,0.790229,0.376584,0.179484,0.373626,0.430243,0.612453,0.346898,0.487932,0.270679,0.051927,0.83175,0.0752261,0.379818,0.286449,0.431446,0.543631,0.16975,0.0950472,0.234978,0.00690889,0.906446,0.683145,0.755447,0.699167,0.240603,0.579105,0.602275,0.600517,0.363447,0.842996,0.47438,0.504313,0.700508,0.467367,0.506548,0.182467,0.452519,0.00824386,0.500037,0.623973,0.693668,0.551515,0.890314,0.239397,0.28228,0.834904,0.523849,0.761006,0.235147,0.824394,0.0328611,0.0415146,0.0340658,0.504366,0.126962,0.33553,0.623257,0.0770695,0.978309,0.554738,0.669053,0.0901173,0.670225,0.161189,0.263,0.243349,0.256753,0.413181,0.55357,0.160278,0.450982,0.650732,0.348018,0.521218,0.683831,0.462558,0.71264,0.288818,0.346217,0.0462363,0.480579,0.933327,0.0431473,0.170283,0.182303,0.98584,0.44867,0.78335,0.0762061,0.930151,0.495568,0.112868,0.59227,0.710314,0.329888,0.484215,0.342411,0.988619,0.707154,0.232627,0.229289,0.117679,0.372473,0.714894,0.285856,0.542075,0.217406,0.275438,0.310439,0.317469,0.101917,0.401776,0.369171,0.068805,0.435472,0.576107,0.801227,0.457212,0.995021,0.0957137,0.412911,0.119325,0.516159,0.25865,0.640512,0.389866,0.812767,0.759,0.696166,0.206032,0.0353904,0.544697,0.570112,0.744018,0.476189,0.0848489,0.281649,0.349587,0.98983,0.108408,0.726263,0.189102,0.499976,0.762541,0.569769,0.0350539,0.953574,0.840977,0.407151,0.224515,0.766179,0.425866,0.664232,0.122778,0.469864,0.465914,0.60821,0.212372,0.435744,0.699372,0.242687,0.823866,0.124063,0.318175,0.625947,0.716831,0.361212,0.275628,0.663336,0.930299,0.459658,0.25588,0.448214,0.411906,0.776283,0.0939402,0.137601,0.955523,0.346924,0.285588,0.678992,0.310945,0.699837,0.880965,0.00308526,0.344474,0.322798,0.94834,0.308616,0.0670817,0.0396284,0.973637,0.112718,0.892033,0.295247,0.191081,0.605129,0.554292,0.298008,0.805631,0.184691,0.810768,0.0103622,0.758586,0.746944,0.631636,0.380091,0.936807,0.219187,0.25718,0.24807,0.691342,0.014668,0.0497645,0.888925,0.807027,0.451129,0.982412,0.978666,0.258817,0.921059,0.343457,0.0518044,0.618813,0.0467759,0.460283,0.432412,0.0455685,0.99507,0.850864,0.503231,0.9123,0.226582,0.490658,0.970904,0.619984,0.254624,0.900693,0.195972,0.278439,0.522142,0.995234,0.576802,0.490112,0.818625,0.0413123,0.603243,0.0792434,0.500964,0.0677007,0.813384,0.0897433,0.519451,0.937845,0.0157348,0.308639,0.0831024,0.409382,0.340657,0.209113,0.750463,0.895031,0.765605,0.308538,0.378948,0.535881,0.596869,0.077662,0.866255,0.995984,0.237873,0.480608,0.926373,0.0715708,0.463305,0.884582,0.121942,0.030252,0.778036,0.427492,0.629414,0.642586,0.143953,0.314643,0.0376801,0.505472,0.623368,0.578025,0.474923,0.216424,0.256293,0.0338401,0.901143,0.433235,0.558253,0.771204,0.360036,0.589256,0.8368,0.733387,0.889149,0.769286,0.734943,0.663974,0.632835,0.932743,0.463455,0.989372,0.117712,0.61594,0.491678,0.0900648,0.85497,0.491562,0.0167038,0.0880074,0.832134,0.0812377,0.702815,0.668877,0.60075,0.0764527,0.38015,0.815545,0.998612,0.141498,0.0816962,0.026913,0.794959,0.505263,0.0381569,0.00501806,0.818724,0.73581,0.854626,0.464583,0.223486,0.614074,0.592583,0.578059,0.672322,0.369207,0.261212,0.815581,0.736483,0.115292,0.495007,0.960417,0.869715,0.106848,0.0638207,0.055348,0.983236,0.971056,0.27677,0.924219,0.444951,0.0376121,0.139302,0.481968,0.154665,0.274728,0.0633194,0.900803,0.0362116,0.221321,0.279951,0.00199997,0.0586803,0.464217,0.415848,0.43541,0.312781,0.638506,0.37785,0.276276,0.286334,0.961615,0.295724,0.726687,0.930373,0.571863,0.107543,0.105524,0.815917,0.214499,0.230051,0.319753,0.255247,0.847447,0.45439,0.426366,0.590007,0.469112,0.92621,0.767828,0.352495,0.722886,0.0995701,0.897224,0.566105,0.95376,0.763951,0.0105333,0.188105,0.161542,0.677423,0.572198,0.0948543,0.830349,0.199975,0.587372,0.601326,0.217233,0.66096,0.994803,0.0485337,0.191503,0.749756,0.614866,0.0452678,0.99082,0.847141,0.815692,0.300917,0.97913,0.524382,0.0499068,0.172409,0.779487,0.647404,0.974447,0.897501,0.19171,0.51589,0.700961,0.550605,0.339294,0.503809,0.402476,0.539525,0.296567,0.166388,0.957644,0.443755,0.360019,0.584451,0.379671,0.395396,0.648321,0.952286,0.979078,0.952664,0.0859429,0.71444,0.151628,0.820088,0.536471,0.320879,0.211621,0.96586,0.351558,0.283741,0.214211,0.0642117,0.656013,0.116189,0.644715,0.380946,0.713835,0.20331,0.480029,0.339522,0.889155,0.0821533,0.537672,0.260182,0.13251,0.374214,0.914052,0.532161,0.728534,0.0439681,0.897501,0.918654,0.160779,0.591698,0.0963081,0.244191,0.474202,0.194385,0.0688497,0.143276,0.375646,0.836403,0.150775,0.220617,0.301707,0.415771,0.931967,0.141617,0.270927,0.661277,0.00556511,0.374283,0.173073,0.640905,0.215723,0.24252,0.292001,0.688866,0.862067,0.898917,0.654709,0.128711,0.165285,0.000820279,0.553879,0.322993,0.139632,0.979959,0.121596,0.489655,0.279211,0.291067,0.405393,0.857917,0.788087,0.232912,0.484125,0.860417,0.72922,0.336724,0.31933,0.536588,0.544516,0.716296,0.76005,0.641804,0.897923,0.418413,0.1421,0.553699,0.211658,0.347587,0.908028,0.495797,0.455271,0.105323,0.821945,0.624032,0.983282,0.529663,0.594449,0.257558,0.859706,0.973924,0.491231,0.3098,0.507915,0.644501,0.477336,0.590689,0.415262,0.14206,0.98855,0.508073,0.462351,0.460549,0.985498,0.922874,0.753785,0.156201,0.392902,0.384089,0.290329,0.174507,0.852888,0.202788,0.839403,0.715273,0.78196,0.811396,0.577018,0.0462542,0.793426,0.553518,0.971524,0.0756837,0.45789,0.291899,0.40135,0.484243,0.8056,0.286507,0.360514,0.369679,0.506379,0.607571,0.289032,0.263413,0.544361,0.53145,0.0304281,0.272472,0.708651,0.482305,0.64854,0.663337,0.481958,0.861564,0.437864,0.628248,0.908689,0.0843562,0.637052,0.0603393,0.832631,0.811503,0.395332,0.818065,0.668718,0.100291,0.00306457,0.622303,0.0309595,0.160399,0.292842,0.0801801,0.243864,0.0821746,0.908107,0.331274,0.550319,0.786766,0.558859,0.59954,0.0246726,0.876682,0.861862,0.695807,0.561364,0.895356,0.618793,0.351487,0.266368,0.758543,0.914424,0.29446,0.0960729,0.735921,0.729593,0.777505,0.0659929,0.0455244,0.461939,0.418125,0.470116,0.19001,0.38502,0.472405,0.966819,0.853075,0.195147,0.922113,0.420281,0.27782,0.422319,0.901234,0.748151,0.882412,0.844961,0.187254,0.608803,0.492287,0.437211,0.281314,0.380221,0.984186,0.814578,0.614574,0.0989363,0.549905,0.00282216,0.544196,0.664733,0.625163,0.901674,0.0118825,0.943411,0.978549,0.317967,0.587716,0.135128,0.827067,0.1861,0.598928,0.771498,0.532512,0.59734,0.786215,0.0529375,0.214985,0.34691,0.517767,0.138258,0.147742,0.411394,0.387405,0.692453,0.0832078,0.50684,0.0404859,0.598917,0.557453,0.578572,0.378664,0.904616,0.239686,0.741352,0.501114,0.563184,0.580982,0.875073,0.329546,0.0950134,0.0491003,0.78606,0.724129,0.0944678,0.503892,0.284592,0.133447,0.637245,0.401436,0.794248,0.929864,0.34121,0.446403,0.069037,0.607033,0.293751,0.423825,0.379698,0.985005,0.931414,0.132761,0.466542,0.286463,0.251255,0.678388,0.214852,0.366423,0.141991,0.634577,0.744814,0.177097,0.0813633,0.299216,0.951108,0.156379,0.607204,0.808259,0.126075,0.885012,|0.982121,0.0502779,0.0262155,0.106212,0.565718,0.579494,0.154165,0.747085,0.687134,0.600043,0.813028,0.635553,0.0548765,0.473473,0.330897,0.997763,0.0375386,0.929928,0.602288,0.837132,0.0895527,0.0107331,0.0972168,0.64762,0.278033,0.392886,0.321011,0.557127,0.356879,0.310634,0.435965,0.270992,0.817526,0.911699,0.0730819,0.839317,0.049996,0.781625,0.717164,0.904473,0.571947,0.999378,0.462565,0.0836115,0.382076,0.223631,0.533946,0.362538,0.53403,0.0601935,0.374424,0.965834,0.984372,0.993002,0.931373,0.999,0.734086,0.0852937,0.898865,0.359537,0.418151,0.35961,0.466426,0.59523,0.413283,0.840307,0.880683,0.986721,0.677977,0.443681,0.293072,0.652751,0.116188,0.927507,0.0128834,0.391374,0.735347,0.522184,0.468033,0.597904,0.517721,0.038907,0.480067,0.946763,0.29163,0.355085,0.915917,0.0530131,0.738501,0.162776,0.538869,0.387822,0.416154,0.898247,0.858415,0.783106,0.238043,0.89524,0.523872,0.564189,0.328311,0.691923,0.290577,0.303562,0.721618,0.411187,0.97343,0.651762,0.465726,0.32917,0.451095,0.521455,0.231893,0.0276667,0.560819,0.851927,0.0643617,0.321189,0.595919,0.118598,0.93588,0.045723,0.0552894,0.630788,0.743027,0.113727,0.668119,0.616941,0.604402,0.474195,0.978741,0.453886,0.372245,0.871353,0.702279,0.0246372,0.535071,0.830648,0.497265,0.870764,0.347074,0.405537,0.443432,0.526866,0.465176,0.639753,0.22434,0.822548,0.590202,0.986011,0.592266,0.296613,0.432052,0.0348216,0.716833,0.0757452,0.0977008,0.947934,0.0322412,0.876181,0.978588,0.429797,0.363919,0.740915,0.753725,0.646614,0.947446,0.421598,0.704839,0.399553,0.104313,0.963322,0.380415,0.565631,0.186336,0.985949,0.510316,0.399605,0.771603,0.398666,0.880195,0.561369,0.0129519,0.883649,0.0823229,0.653211,0.348865,0.56028,0.730129,0.70331,0.184261,0.777391,0.941837,0.194487,0.572234,0.669481,0.716597,0.803979,0.36336,0.679631,0.241549,0.18262,0.368633,0.475121,0.105722,0.0750674,0.678718,0.139658,0.339393,0.16923,0.386407,0.51559,0.029946,0.637152,0.358896,0.837393,0.67161,0.720549,0.388725,0.758368,0.60906,0.778,0.713425,0.63533,0.799684,0.862732,0.207389,0.953255,0.14642,0.662278,0.0451282,0.365411,0.668618,0.257711,0.499908,0.00183606,0.148961,0.221689,0.573582,0.812496,0.180072,0.148231,0.755413,0.726664,0.798537,0.687767,0.783631,0.854772,0.158781,0.335384,0.277886,0.380223,0.285205,0.892556,0.346167,0.863936,0.5203,0.536477,0.806538,0.606142,0.520289,0.74524,0.523432,0.6026,0.465337,0.313251,0.831235,0.348873,0.91194,0.328367,0.0799339,0.715714,0.794608,0.59313,0.612292,0.194532,0.743709,0.284827,0.975505,0.400929,0.461668,0.789685,0.25416,0.129866,0.871461,0.635985,0.93456,0.0630709,0.231725,0.316427,0.0535667,0.724282,0.0726689,0.882035,0.547345,0.0866648,0.241519,0.62772,0.05192,0.959013,0.70368,0.596299,0.541095,0.418456,0.32633,0.273758,0.0116956,0.872343,0.42573,0.295217,0.844097,0.44571,0.882527,0.761331,0.39578,0.956907,0.0279841,0.632028,0.343314,0.826688,0.23301,0.671669,0.681506,0.315573,0.544949,0.315468,0.962113,0.709004,0.375928,0.087187,0.675696,0.0698537,0.355061,0.76737,0.517915,0.12493,0.666458,0.282397,0.190333,0.488759,0.911959,0.423437,0.297835,0.674728,0.413497,0.78944,0.655276,0.362982,0.352055,0.46843,0.964082,0.917863,0.778089,0.67379,0.478533,0.546757,0.925906,0.341711,0.913506,0.0160846,0.0164127,0.611212,0.805674,0.879898,0.157922,0.71897,0.135732,0.0590059,0.634812,0.790675,0.821197,0.242432,0.986494,0.321588,0.0152867,0.204686,0.657598,0.0127718,0.771119,0.416324,0.740713,0.855466,0.740354,0.437574,0.331145,0.774443,0.270621,0.710376,0.928407,0.273692,0.96136,0.43971,0.210912,0.299666,0.932156,0.482891,0.000890672,0.394333,0.870678,0.471815,0.777135,0.889309,0.354081,0.236008,0.0272588,0.114531,0.780945,0.193333,0.387587,0.904625,0.00828981,0.728487,0.00732112,0.471738,0.191903,0.523568,0.695848,0.796968,0.482223,0.104889,0.572714,0.103353,0.258321,0.29165,0.534348,0.293523,0.320686,0.324705,0.563201,0.750472,0.804948,0.66507,0.948504,0.544992,0.629666,0.138188,0.41949,0.621895,0.125587,0.396162,0.863043,0.217556,0.039134,0.918534,0.118091,0.561991,0.105023,0.261849,0.90379,0.218586,0.2375,0.541644,0.456757,0.915003,0.355869,0.835048,0.670177,0.580452,0.481292,0.993919,0.570042,0.991722,0.591281,0.585769,0.834533,0.595118,0.702947,0.700749,0.0952013,0.39709,0.0640828,0.242649,0.0728439,0.913644,0.138515,0.0972528,0.79763,0.450979,0.495228,0.0135383,0.246902,0.58161,0.0969307,0.121732,0.539909,0.609119,0.780054,0.278241,0.769945,0.822567,0.658338,0.933423,0.596575,0.0442583,0.830322,0.456696,0.73815,0.49062,0.150821,0.289128,0.095753,0.221231,0.627084,0.0629303,0.301297,0.914477,0.397829,0.379111,0.540315,0.21778,0.603333,0.0240038,0.673286,0.261091,0.940243,0.3314,0.712681,0.0702187,0.37574,0.859384,0.866182,0.966429,0.951996,0.0753311,0.164936,0.714474,0.713664,0.851755,0.984665,0.330572,0.848974,0.934708,0.0343717,0.78764,0.797707,0.744079,0.309447,0.923352,0.380305,0.429046,0.488552,0.889549,0.883799,0.886433,0.50103,0.618516,0.408983,0.421651,0.542409,0.756517,0.615634,0.424053,0.672321,0.359345,0.878407,0.886426,0.314649,0.956259,0.872776,0.962721,0.862819,0.529854,0.493272,0.58077,0.624438,0.16439,0.937141,0.777746,0.895227,0.913286,0.36995,0.302488,0.761527,0.901873,0.8023,0.402191,0.0957662,0.985883,0.509514,0.577885,0.51382,0.610117,0.243091,0.401044,0.223702,0.0862046,0.551516,0.375153,0.216245,0.0139916,0.527268,0.140945,0.97195,0.23965,0.860537,0.035403,0.801252,0.158452,0.825873,0.357498,0.853383,0.92038,0.262844,0.746287,0.0344831,0.0137619,0.971226,0.600987,0.315015,0.639736,0.543599,0.0121552,0.62303,0.700284,0.809977,0.131911,0.522115,0.559378,0.643976,0.0940935,0.617854,0.147896,0.380507,0.767673,0.920614,0.40858,0.589991,0.924555,0.423968,0.963511,0.282384,0.204562,0.530833,0.927109,0.643183,0.715576,0.0551186,0.514564,0.407738,0.591309,0.208714,0.435777,0.459218,0.256433,0.694525,0.758027,0.932202,0.799074,0.438454,0.633587,0.549522,0.254792,0.351622,0.655634,0.00710958,0.323589,0.749144,0.379883,0.632568,0.723368,0.567782,0.268282,0.617344,0.607316,0.574348,0.600981,0.573097,0.923964,0.517053,0.462696,0.286521,0.676611,0.948125,0.73872,0.255716,0.981762,0.182541,0.576972,0.421227,0.488449,0.586936,0.524019,0.703777,0.144032,0.00857389,0.876396,0.694166,0.993081,0.672598,0.531729,0.285283,0.586062,0.970118,0.556823,0.155571,0.266059,0.276048,0.515013,0.85847,0.0316306,0.696962,0.431705,0.298286,0.07576,0.2687,0.502829,0.807273,0.515134,0.814977,0.8004,0.0176892,0.560336,0.910432,0.820351,0.944089,0.493751,0.938005,0.865712,0.342163,0.498885,0.372429,0.573217,0.558519,0.0481303,0.218763,0.897804,0.511983,0.479323,0.422972,0.656952,0.837193,0.969033,0.163866,0.508503,0.870055,0.621951,0.704283,0.690738,0.909161,0.95007,0.146013,0.849443,0.202386,0.743516,0.336571,0.942703,0.032776,0.808374,0.0314389,0.277085,0.664637,0.198814,0.0578421,0.998941,0.3341,0.465187,0.308763,0.514854,0.874165,0.19445,0.300074,0.220218,0.375224,0.156989,0.759144,0.375836,0.741644,0.709654,0.0966751,0.188219,0.548615,0.716637,0.591003,0.353645,0.24511,0.249536,0.337737,0.240224,0.620106,0.495483,0.467692,0.931152,0.678762,0.778161,0.847525,0.696303,0.43116,0.676871,0.585838,0.772061,0.160102,0.42681,0.808604,0.606544,0.664965,0.179357,0.722531,0.992871,0.612989,0.0498825,0.142978,0.317891,0.0909778,0.39206,0.0699643,0.34073,0.0761184,0.327603,0.0855375,0.112041,0.183755,0.440466,0.643518,0.65383,0.728198,0.429845,0.812736,0.677892,0.629633,0.59939,0.258229,0.956759,0.988189,0.705239,0.978949,0.943892,0.95669,0.367299,0.361112,0.64302,0.958369,0.25432,0.047316,0.270606,0.799593,0.447926,0.391887,0.413806,0.766484,0.0684186,0.798043,0.830092,0.497759,0.734446,0.976282,0.911438,0.814636,0.93978,0.875585,0.01406,0.900141,0.186213,0.764895,0.274076,0.0971283,0.858292,0.614366,0.610959,0.866469,0.447919,0.192062,0.835483,0.72224,0.849585,0.75771,0.669949,0.0942385,0.683428,0.938505,0.968261,0.440774,0.451763,0.00579512,0.330517,0.807693,0.157076,0.568313,0.770745,0.0425177,0.582497,0.317849,0.00491673,0.60602,0.800451,0.627469,0.207827,0.0589981,0.460725,0.457515,0.868331,0.339707,0.558313,0.642511,0.864534,0.419955,0.128824,0.87539,0.172789,0.391535,0.617625,0.233124,0.634865,0.260869,0.767467,0.389048,0.644632,0.539845,0.0370262,0.601445,0.415172,0.746939,0.831812,0.514813,0.343143,0.388857,0.943581,0.750912,0.290766,0.0589999,0.620131,0.213483,0.78725,0.201672,0.721727,0.896653,0.419867,0.275862,0.486865,0.686063,0.308435,0.0841731,0.382923,0.94964,0.256278,0.541328,0.602681,0.19283,0.689135,0.662886,0.0918872,0.596386,0.49643,0.376586,0.0215797,0.899413,0.395991,0.0852956,0.151299,0.279134,0.983725,0.429888,0.168804,0.714634,0.937799,0.120301,0.735722,0.638265,0.690812,0.114938,0.446649,0.581772,0.20852,0.692908,0.500936,0.442142,0.186546,0.714683,0.568639,0.697493,0.865427,0.213402,0.21683,0.510683,0.617764,0.052733,0.553823,0.242987,0.349683,0.129412,0.86207,0.63625,0.171523,0.409259,0.385976,0.485351,0.556895,0.831664,0.185809,0.496977,0.814405,0.94671,0.925558,0.299748,0.380846,0.398906,0.417064,0.440845,0.109336,0.638293,0.0721664,|0.295472,0.650125,0.11356,0.36792,0.12458,0.135544,0.547049,0.0133672,0.7016,0.881901,0.54418,0.325702,0.643367,0.518891,0.242198,0.883476,0.928131,0.996298,0.556241,0.226993,0.0239968,0.0863316,0.674294,0.151778,0.89845,0.502621,0.00770968,0.768513,0.637645,0.344581,0.318484,0.812113,0.519765,0.852545,0.00191015,0.149044,0.3406,0.207013,0.427591,0.650014,0.349975,0.638595,0.8514,0.622054,0.293823,0.805089,0.120193,0.341681,0.742127,0.835577,0.0998839,0.114878,0.955321,0.32375,0.532432,0.285129,0.810201,0.702257,0.925092,0.162217,0.937244,0.542084,0.891204,0.272626,0.516103,0.630112,0.685403,0.282573,0.249742,0.655031,0.00438386,0.590773,0.809591,0.349246,0.876992,0.275807,0.75587,0.176099,0.631656,0.949428,0.0142341,0.632334,0.0849605,0.108958,0.737383,0.892205,0.315074,0.740548,0.184472,0.693909,0.831347,0.901095,0.586321,0.461819,0.125138,0.0703882,0.12473,0.06331,0.702663,0.22067,0.846657,0.0341702,0.911784,0.722407,0.79681,0.0498579,0.801878,0.921924,0.88236,0.782126,0.750289,0.583926,0.677739,0.784802,0.380471,0.0531368,0.401868,0.848258,0.202062,0.901321,0.986805,0.651852,0.766618,0.788166,0.954472,0.309741,0.688516,0.762924,0.365458,0.795886,0.564023,0.68018,0.69434,0.393136,0.473315,0.576948,0.10736,0.400671,0.951659,0.943705,0.348947,0.700012,0.601821,0.517887,0.891367,0.42615,0.890157,0.501479,0.0881241,0.213392,0.0922818,0.165276,0.110229,0.743832,0.544625,0.813824,0.280089,0.27654,0.418765,0.756045,0.393814,0.808171,0.222839,0.791185,0.715617,0.58626,0.540245,0.103512,0.00725907,0.492426,0.475426,0.982137,0.70722,0.732564,0.982198,0.483591,0.828236,0.3157,0.490177,0.680308,0.694094,0.811695,0.911913,0.436487,0.380086,0.978589,0.927704,0.0960566,0.480544,0.588976,0.624431,0.964851,0.919759,0.659576,0.52308,0.0637228,0.392701,0.696849,0.34476,0.0495448,0.238076,0.164878,0.0450908,0.82601,0.340811,0.99492,0.194546,0.667472,0.965826,0.267085,0.233065,0.340291,0.621898,0.43469,0.239887,0.787594,0.649472,0.174495,0.35159,0.549695,0.384568,0.623628,0.348245,0.561286,0.26793,0.0658256,0.122822,0.721438,0.060885,0.323364,0.0530385,0.882414,0.130351,0.840988,0.999922,0.723366,0.131951,0.03071,0.432196,0.396981,0.164392,0.663675,0.833698,0.29054,0.570397,0.420225,0.272064,0.555652,0.61305,0.706212,0.592257,0.493143,0.490876,0.966762,0.800249,0.807782,0.58153,0.875958,0.266378,0.735148,0.221949,0.24601,0.419115,0.321951,0.551686,0.130418,0.388252,0.402541,0.420528,0.993586,0.274583,0.235137,0.419594,0.683152,0.967772,0.0169515,0.84271,0.73163,0.78921,0.0954726,0.433222,0.929344,0.278142,0.991052,0.305242,0.250701,0.023986,0.481481,0.147587,0.764131,0.38684,0.0887725,0.701318,0.784795,0.301801,0.847254,0.503348,0.0453227,0.863028,0.0256635,0.0540488,0.806809,0.0813482,0.552945,0.238551,0.104638,0.516726,0.105634,0.0767018,0.0246317,0.295464,0.794374,0.295333,0.394046,0.44305,0.921807,0.277269,0.367223,0.869451,0.878224,0.0885214,0.066748,0.988949,0.679218,0.487356,0.844927,0.591855,0.991177,0.884318,0.778094,0.264187,0.312212,0.494877,0.400491,0.618069,0.0667458,0.199639,0.149018,0.135744,0.61189,0.433731,0.0466918,0.871615,0.80634,0.749603,0.395498,0.803675,0.34908,0.705603,0.870308,0.434881,0.430293,0.588769,0.387907,0.519719,0.513584,0.707646,0.414252,0.584073,0.59978,0.425901,0.0374938,0.321948,0.1755,0.983747,0.386418,0.00225592,0.645943,0.0642825,0.833992,0.144827,0.959443,0.801383,0.209197,0.870328,0.600258,0.733254,0.928815,0.622043,0.0390435,0.813486,0.539304,0.433722,0.64878,0.919185,0.175434,0.77822,0.136447,0.114679,0.530595,0.753379,0.93806,0.928512,0.462676,0.606067,0.948734,0.0854303,0.685555,0.938962,0.0168338,0.630139,0.866248,0.411075,0.740362,0.116262,0.0277417,0.709247,0.681806,0.793376,0.842203,0.282327,0.617581,0.982804,0.0436248,0.053732,0.468695,0.0568948,0.376597,0.59414,0.111899,0.779355,0.536589,0.762034,0.820527,0.6704,0.824729,0.189448,0.360064,0.329485,0.805654,0.00880134,0.0001055,0.0486662,0.682018,0.199252,0.616385,0.48502,0.622542,0.831724,0.712442,0.980979,0.139664,0.964721,0.962923,0.487153,0.163089,0.969547,0.927058,0.562266,0.026301,0.742115,0.217039,0.249773,0.922274,0.72177,0.699426,0.928788,0.481667,0.189886,0.28681,0.811846,0.575559,0.377168,0.416774,0.367195,0.689368,0.852948,0.494312,0.632003,0.896985,0.952772,0.533519,0.849421,0.700494,0.162627,0.630654,0.922445,0.187569,0.698013,0.234912,0.345795,0.558096,0.466279,0.615627,0.180602,0.827226,0.232185,0.0259858,0.518805,0.706264,0.381707,0.252474,0.465455,0.635072,0.000683844,0.880067,0.535146,0.38111,0.640249,0.865118,0.630522,0.168157,0.0188293,0.527826,0.970225,0.349193,0.0679728,0.543316,0.180681,0.0384026,0.305155,0.056493,0.785443,0.0442086,0.365139,0.0909336,0.508567,0.783829,0.146982,0.00192225,0.49634,0.430034,0.767559,0.910279,0.14915,0.347285,0.800376,0.635879,0.827052,0.765988,0.0902482,0.775677,0.40452,0.211291,0.228383,0.2236,0.287932,0.984583,0.041352,0.247019,0.574959,0.118192,0.918027,0.757268,0.581439,0.209758,0.942686,0.87491,0.0712622,0.900622,0.399105,0.478208,0.193386,0.3615,0.463618,0.114392,0.113747,0.503882,0.335284,0.104029,0.614397,0.278396,0.360929,0.658204,0.0497304,0.445683,0.884634,0.0325762,0.791378,0.215507,0.153745,0.442351,0.339162,0.484423,0.111456,0.370095,0.888632,0.732781,0.161657,0.0469406,0.716687,0.135102,0.639999,0.854045,0.490675,0.584749,0.624758,0.605798,0.0523461,0.130365,0.977021,0.566094,0.176503,0.191824,0.247141,0.52717,0.511138,0.115144,0.913973,0.728057,0.0576812,0.276075,0.613525,0.0485057,0.729274,0.729859,0.753374,0.816796,0.154074,0.582573,0.877105,0.27994,0.590439,0.386121,0.628858,0.190794,0.79017,0.150653,0.348674,0.338365,0.310277,0.398028,0.959588,0.171402,0.456521,0.315907,0.368015,0.85689,0.866286,0.344461,0.758526,0.172308,0.554435,0.916825,0.308473,0.968691,0.840704,0.401554,0.290814,0.253425,0.73118,0.638854,0.113403,0.758678,0.933649,0.433357,0.619962,0.586106,0.468772,0.799211,0.993662,0.446476,0.607534,0.760042,0.673482,0.0355049,0.587032,0.713165,0.659884,0.83828,0.705874,0.110609,0.774832,0.678909,0.827665,0.573864,0.611003,0.0955372,0.179373,0.101008,0.120131,0.301081,0.239664,0.851272,0.7571,0.439091,0.694726,0.688306,0.673115,0.757024,0.364501,0.225611,0.115932,0.111237,0.622466,0.816967,0.198351,0.358682,0.248905,0.651965,0.83155,0.659301,0.235743,0.538579,0.340514,0.147142,0.861932,0.804593,0.213054,0.10658,0.505933,0.66779,0.0614193,0.0232924,0.187508,0.899978,0.508806,0.328934,0.971012,0.350886,0.0394436,0.158302,0.155698,0.464193,0.350577,0.437829,0.463068,0.246629,0.440947,0.70017,0.644662,0.540075,0.809838,0.292606,0.36736,0.764022,0.848205,0.0684458,0.647882,0.720121,0.570242,0.929281,0.921066,0.547549,0.357741,0.262418,0.785035,0.702025,0.455878,0.485608,0.879435,0.789912,0.227127,0.804597,0.00240958,0.0375785,0.95889,0.416689,0.0366277,0.269478,0.810169,0.0792311,0.996734,0.223542,0.78895,0.611697,0.28813,0.693281,0.075386,0.517139,0.531842,0.886661,0.0952926,0.810905,0.892111,0.596814,0.931356,0.326057,0.589951,0.231945,0.35716,0.919717,0.879156,0.938517,0.283112,0.721657,0.176594,0.00225043,0.67178,0.511095,0.500516,0.454852,0.590541,0.228674,0.185615,0.0926911,0.357557,0.000546575,0.854618,0.960428,0.463466,0.223276,0.658634,0.649076,0.548933,0.183028,0.0798836,0.159198,0.99002,0.159168,0.867797,0.342112,0.605069,0.169439,0.0260066,0.245136,0.26311,0.535193,0.414273,0.875983,0.420694,0.70527,0.349333,0.931684,0.0717582,0.329424,0.586072,0.81279,0.899612,0.202258,0.329375,0.80055,0.826504,0.779838,0.575714,0.487111,0.120194,0.942935,0.048278,0.611652,0.720701,0.49665,0.726625,0.109922,0.494072,0.168451,0.529867,0.747826,0.169255,0.00812852,0.714046,0.232702,0.697094,0.831601,0.384916,0.311041,0.697363,0.589489,0.107977,0.569728,0.664391,0.920526,0.713526,0.363385,0.567789,0.579666,0.379245,0.0468099,0.687928,0.605212,0.893478,0.240576,0.148484,0.387902,0.0567487,0.723183,0.649529,0.846204,0.939702,0.359134,0.340073,0.389865,0.812277,0.35212,0.55927,0.182853,0.666387,0.0689087,0.715879,0.276502,0.810904,0.494595,0.861205,0.0145653,0.0143617,0.413374,0.145239,0.736405,0.00149864,0.289637,0.34943,0.616519,0.331396,0.342851,0.305171,0.978445,0.0423512,0.618687,0.775368,0.392976,0.329956,0.727673,0.851276,0.689623,0.637317,0.801435,0.0274848,0.0614493,0.210376,0.666658,0.594945,0.209178,0.124531,0.405639,0.831558,0.438891,0.945779,0.966269,0.0905142,0.942687,0.819345,0.324613,0.681673,0.745441,0.51019,0.667812,0.672141,0.51958,0.469117,0.880665,0.684815,0.332735,0.143791,0.613446,0.361684,0.0222753,0.904272,0.777448,0.639221,0.682742,0.76223,0.778994,0.977871,0.676962,0.578088,0.0019024,0.858744,0.223233,0.213218,0.455299,0.31436,0.747007,0.00792545,0.109243,0.0610752,0.69326,0.885868,0.644542,0.51562,0.0825397,0.731953,0.0631033,0.456668,0.778023,0.813871,0.212284,0.615111,0.757831,0.673529,0.869006,0.517234,0.496369,0.425465,0.0183073,0.19683,0.206922,0.0156802,0.529707,0.283957,0.630543,0.335416,0.0582581,0.79674,0.703571,0.816215,0.621787,0.0284987,0.985767,0.407685,0.944148,0.0029664,0.300156,0.552935,0.0566566,0.936401,0.302047,0.0294112,0.790395,0.0745147,0.411224,|0.971085,0.816604,0.947948,0.550457,0.544729,0.53458,0.573112,0.0316637,0.423923,0.395195,0.139176,0.814042,0.683877,0.13471,0.85987,0.720148,0.985502,0.318808,0.266133,0.341196,0.780515,0.705406,0.793715,0.974599,0.347121,0.812856,0.185716,0.470475,0.284675,0.751282,0.438387,0.654466,0.229725,0.238139,0.080825,0.0866723,0.94319,0.280307,0.830591,0.865804,0.229617,0.759955,0.797073,0.17834,0.502895,0.896605,0.606094,0.659183,0.596021,0.257425,0.641489,0.820534,0.291061,0.99834,0.225216,0.0123165,0.879634,0.168224,0.827244,0.343312,0.130294,0.502691,0.576527,0.420991,0.46736,0.566413,0.991897,0.609576,0.00365055,0.384588,0.626411,0.526796,0.287337,0.330982,0.462687,0.700578,0.138533,0.368664,0.647555,0.43444,0.786522,0.664655,0.0963975,0.34895,0.754062,0.972602,0.0466067,0.497134,0.0738197,0.629496,0.670307,0.208521,0.939996,0.426277,0.323053,0.503453,0.514924,0.242332,0.21225,0.925676,0.993535,0.269351,0.457558,0.739667,0.489825,0.257103,0.590924,0.663577,0.24829,0.643357,0.724663,0.21198,0.333776,0.0687633,0.777743,0.312401,0.395815,0.481522,0.311392,0.952458,0.515225,0.455242,0.200451,0.0487458,0.0953988,0.591523,0.49912,0.49135,0.609409,0.608577,0.135334,0.890803,0.650044,0.753555,0.831445,0.376151,0.0768455,0.309691,0.683467,0.833127,0.747288,0.284571,0.903589,0.765499,0.57372,0.381214,0.384219,0.131025,0.676869,0.185959,0.98065,0.928539,0.753686,0.425636,0.109653,0.824158,0.0630226,0.32895,0.929638,0.848307,0.789751,0.253702,0.803874,0.0982451,0.118802,0.497437,0.866572,0.436157,0.882444,0.735699,0.818047,0.648029,0.031006,0.767546,0.0178358,0.877812,0.369996,0.680145,0.245631,0.843657,0.384234,0.31629,0.223286,0.770774,0.572171,0.753715,0.286736,0.0115761,0.282736,0.0874692,0.199296,0.233301,0.0465996,0.586509,0.758532,0.404185,0.288558,0.637014,0.488233,0.229394,0.660499,0.992108,0.790672,0.795816,0.965059,0.62553,0.906063,0.881807,0.0515288,0.116523,0.23904,0.59177,0.836342,0.0806832,0.0712588,0.456228,0.499913,0.804103,0.989738,0.071419,0.138843,0.0261923,0.944846,0.00864106,0.934264,0.898089,0.562594,0.457695,0.130268,0.288188,0.513588,0.563731,0.396622,0.774119,0.663014,0.979561,0.772954,0.347829,0.935996,0.622993,0.95405,0.585293,0.392852,0.28621,0.33023,0.497754,0.0832385,0.27235,0.196212,0.181274,0.00842291,0.824303,0.761738,0.409537,0.0914116,0.918017,0.293779,0.568086,0.245728,0.405092,0.583323,0.40289,0.696986,0.594553,0.222805,0.592223,0.267853,0.196766,0.245794,0.724203,0.384371,0.567839,0.446137,0.229237,0.0993622,0.525263,0.323465,0.618712,0.1063,0.139015,0.135914,0.564904,0.506457,0.472527,0.527815,0.184784,0.410394,0.75878,0.0305012,0.805416,0.292161,0.597242,0.0598301,0.801678,0.438313,0.244216,0.273481,0.982598,0.387285,0.302595,0.660104,0.161822,0.142462,0.918036,0.517242,0.674087,0.672169,0.958156,0.412673,0.825717,0.46542,0.929282,0.841138,0.278316,0.243983,0.211836,0.29374,0.85931,0.397985,0.110824,0.747578,0.254066,0.263068,0.762013,0.325768,0.342544,0.681304,0.373388,0.856963,0.842428,0.484805,0.53163,0.469785,0.8459,0.928513,0.513345,0.21874,0.172977,0.383568,0.113506,0.013873,0.610036,0.521033,0.0279391,0.627224,0.268481,0.184457,0.693519,0.757661,0.217163,0.695082,0.428301,0.816512,0.382952,0.54503,0.43024,0.957517,0.400978,0.471612,0.0956129,0.313584,0.00841606,0.39036,0.811769,0.559105,0.760883,0.910711,0.0574372,0.586022,0.905226,0.0235924,0.470918,0.0522687,0.00773489,0.735555,0.418043,0.827187,0.3107,0.939885,0.278405,0.560042,0.619809,0.842671,0.188865,0.260623,0.658119,0.0863853,0.583088,0.834647,0.503602,0.983412,0.233554,0.116182,0.292485,0.263753,0.589937,0.710181,0.785931,0.0635679,0.249381,0.128176,0.81798,0.908671,0.273117,0.96147,0.81329,0.17598,0.26665,0.218632,0.0936992,0.663548,0.727618,0.701952,0.0705819,0.255953,0.976252,0.395621,0.104117,0.212047,0.446779,0.435304,0.836043,0.213046,0.684602,0.611102,0.0209563,0.537664,0.0273265,0.259896,0.219627,0.171634,0.013324,0.690418,0.287945,0.903843,0.214335,0.772767,0.0765484,0.129282,0.109408,0.38008,0.312552,0.987761,0.841196,0.147563,0.175493,0.775541,0.467987,0.284435,0.665095,0.0323724,0.351389,0.280838,0.871827,0.707319,0.286874,0.697225,0.39284,0.455078,0.898351,0.556807,0.669748,0.633037,0.62529,0.203053,0.887843,0.386286,0.261181,0.815891,0.173285,0.405543,0.654689,0.0258072,0.756056,0.461388,0.0220314,0.179017,0.36514,0.481095,0.039506,0.719905,0.853994,0.0469679,0.450976,0.455214,0.00445724,0.505578,0.390542,0.332913,0.53583,0.311,0.317583,0.263099,0.636078,0.059579,0.656078,0.499659,0.392782,0.857313,0.404344,0.046095,0.342232,0.583402,0.331096,0.145603,0.0887536,0.354252,0.500988,0.83885,0.147903,0.452948,0.0585133,0.7426,0.0317069,0.139067,0.157695,0.594812,0.250372,0.341308,0.364471,0.808742,0.597205,0.704709,0.830429,0.730512,0.384296,0.289566,0.372366,0.335039,0.215824,0.691658,0.0358756,0.836385,0.0251167,0.617818,0.0390804,0.890997,0.640447,0.625929,0.828126,0.488902,0.732469,0.699992,0.194092,0.573105,0.989136,0.868191,0.612387,0.481054,0.991815,0.848844,0.114193,0.668403,0.363636,0.761848,0.20652,0.0828996,0.372956,0.219496,0.601143,0.913614,0.904169,0.0398632,0.875732,0.481186,0.0495711,0.911193,0.681598,0.97841,0.00922418,0.305633,0.338191,0.564005,0.479592,0.238232,0.403225,0.0281126,0.260644,0.346175,0.515408,0.526438,0.266164,0.215209,0.937384,0.332326,0.622442,0.811621,0.0396128,0.0932835,0.490513,0.745049,0.935572,0.583109,0.249016,0.735119,0.912418,0.891423,0.285477,0.361932,0.608187,0.60038,0.26609,0.290829,0.85101,0.30792,0.663915,0.390948,0.751107,0.336715,0.329254,0.854197,0.398491,0.087877,0.385916,0.628317,0.098944,0.550178,0.235027,0.685397,0.960581,0.56233,0.381658,0.147311,0.786064,0.417238,0.32908,0.876791,0.0486892,0.408373,0.00341368,0.734728,0.800363,0.730796,0.679201,0.133831,0.527652,0.0183976,0.604839,0.831463,0.773849,0.306756,0.429224,0.292948,0.724245,0.798577,0.264915,0.994737,0.0595427,0.41622,0.947746,0.565259,0.369645,0.770264,0.549247,0.439515,0.326619,0.955271,0.749444,0.446606,0.502151,0.0865355,0.0997769,0.825616,0.494401,0.475949,0.122246,0.402278,0.890157,0.064176,0.996525,0.744178,0.989541,0.580056,0.167909,0.0674993,0.829145,0.143659,0.432754,0.582678,0.714465,0.187275,0.0754752,0.0378913,0.979737,0.0149437,0.163105,0.0311069,0.204971,0.733308,0.455723,0.307344,0.8449,0.0946017,0.350661,0.391534,0.786511,0.168753,0.275986,0.540454,0.9398,0.263387,0.858264,0.935214,0.769473,0.961928,0.523182,0.377362,0.856608,0.615127,0.169862,0.684873,0.782137,0.214139,0.721236,0.604579,0.626338,0.0667501,0.881052,0.416489,0.780058,0.216503,0.0508623,0.946085,0.876068,0.0458748,0.0858442,0.74454,0.0880018,0.872769,0.606798,0.720788,0.395211,0.0692979,0.908324,0.36819,0.582919,0.289343,0.812319,0.364719,0.37467,0.2385,0.356799,0.67648,0.556143,0.373421,0.877889,0.305188,0.922901,0.0724249,0.921428,0.344891,0.310141,0.794029,0.0916007,0.112425,0.790289,0.648083,0.110549,0.297282,0.177265,0.115558,0.456053,0.850643,0.929051,0.168894,0.156361,0.737718,0.965582,0.792294,0.852539,0.851832,0.59743,0.631651,0.36139,0.166361,0.715544,0.576007,0.737662,0.617247,0.82801,0.614573,0.245199,0.634831,0.738085,0.411147,0.439302,0.580159,0.497219,0.488771,0.294773,0.854295,0.0150731,0.0520979,0.476943,0.44361,0.173158,0.871081,0.821049,0.027059,0.508257,0.657963,0.276468,0.221326,0.634365,0.281054,0.376869,0.704574,0.0997781,0.823458,0.208142,0.919275,0.230457,0.459756,0.87857,0.771105,0.840929,0.591106,0.639218,0.942943,0.410942,0.245153,0.260394,0.0718839,0.482985,0.414941,0.326077,0.282461,0.806883,0.314029,0.17283,0.166937,0.406165,0.361611,0.0189235,0.512045,0.665352,0.541142,0.147141,0.483637,0.988024,0.542112,0.0253157,0.410795,0.293449,0.388971,0.312242,0.702578,0.970641,0.668355,0.81631,0.419213,0.752159,0.75709,0.768393,0.507823,0.416996,0.751819,0.810345,0.267833,0.131901,0.255157,0.137831,0.204507,0.472565,0.554084,0.855471,0.823152,0.178037,0.466185,0.471848,0.796423,0.360121,0.419828,0.6979,0.724349,0.387943,0.27167,0.429082,0.68517,0.501113,0.200175,0.796709,0.23257,0.55913,0.74022,0.255082,0.147645,0.87304,0.122455,0.567013,0.0545072,0.577616,0.363541,0.00506014,0.458085,0.469049,0.820125,0.480607,0.0636247,0.851697,0.901026,0.994188,0.853113,0.270594,0.661659,0.501158,0.641936,0.82742,0.813749,0.625986,0.0151038,0.752195,0.52789,0.416847,0.141166,0.474968,0.902526,0.953769,0.562343,0.0936532,0.282745,0.075051,0.417997,0.199029,0.743813,0.297007,0.650377,0.119786,0.792674,0.738007,0.13923,0.272385,0.383747,0.105614,0.802603,0.307574,0.523757,0.0699943,0.322552,0.606687,0.447293,0.629471,0.270676,0.24926,0.450506,0.466632,0.510606,0.342984,0.0075509,0.0322372,0.0425575,0.318343,0.679205,0.844266,0.0365011,0.989531,0.0331002,0.769365,0.0459433,0.558933,0.280671,0.240889,0.470507,0.243603,0.747042,0.657276,0.240561,0.714292,0.939476,0.97841,0.585183,0.613012,0.206388,0.525982,0.0255876,0.549688,0.179165,0.0567877,0.782147,0.735802,0.385851,0.135366,0.854955,0.32902,0.907815,0.39337,0.511804,0.869609,0.627346,0.274258,0.79957,0.0599563,0.299308,0.14844,0.197117,0.306902,0.659603,0.412621,0.853029,0.40364,|0.649181,0.425456,0.181458,0.619105,0.698347,0.14684,0.816031,0.399474,0.733237,0.233413,0.882207,0.730623,0.708931,0.1893,0.545305,0.933462,0.678393,0.360003,0.229932,0.828656,0.580309,0.229561,0.0660929,0.124967,0.844638,0.41863,0.872748,0.86696,0.00837249,0.381829,0.965042,0.620796,0.51099,0.453811,0.203081,0.224712,0.0301049,0.437541,0.995473,0.932101,0.0117748,0.343225,0.431321,0.54423,0.384218,0.251599,0.938679,0.0187961,0.59827,0.661207,0.706632,0.17227,0.861017,0.152337,0.970317,0.649503,0.38893,0.198786,0.486443,0.760986,0.587572,0.547062,0.95235,0.143727,0.693768,0.986741,0.061431,0.748605,0.535327,0.673434,0.670413,0.429389,0.451383,0.708018,0.647421,0.720189,0.555325,0.295507,0.864234,0.291449,0.308905,0.229812,0.195325,0.0380441,0.716732,0.851708,0.868947,0.292424,0.27064,0.776709,0.699773,0.884947,0.266268,0.115611,0.484987,0.676516,0.619443,0.807132,0.725181,0.47725,0.984465,0.12942,0.752774,0.839686,0.755691,0.243465,0.0879278,0.383859,0.723883,0.126822,0.397374,0.236773,0.807847,0.325018,0.548001,0.516517,0.595052,0.209668,0.283585,0.889161,0.997946,0.995269,0.347827,0.544975,0.767257,0.192724,0.0547617,0.987976,0.394681,0.0429217,0.270146,0.216531,0.864725,0.369378,0.129425,0.816323,0.26046,0.554808,0.462232,0.203057,0.653598,0.414013,0.342733,0.428007,0.892599,0.306049,0.252612,0.823218,0.999303,0.513773,0.20162,0.307191,0.224263,0.190549,0.371335,0.340754,0.603367,0.590719,0.0023796,0.892428,0.813844,0.83968,0.62576,0.575339,0.102115,0.499497,0.609766,0.76614,0.0586478,0.817051,0.942903,0.767445,0.739876,0.0377292,0.642006,0.865439,0.501048,0.679937,0.429831,0.54321,0.420092,0.907501,0.723989,0.901122,0.0852324,0.998134,0.0120624,0.0949004,0.219038,0.108226,0.839767,0.716397,0.0336772,0.25042,0.346854,0.196594,0.926414,0.893819,0.0185844,0.859785,0.894399,0.633933,0.986926,0.653724,0.551234,0.16228,0.165359,0.290603,0.200414,0.331689,0.62493,0.753048,0.263441,0.091266,0.789534,0.56789,0.657965,0.265269,0.713993,0.0672404,0.42527,0.827363,0.120904,0.250646,0.381092,0.360734,0.390151,0.674209,0.169182,0.735786,0.771981,0.527133,0.0188318,0.0138887,0.210754,0.682955,0.0731343,0.732266,0.0816047,0.479437,0.110969,0.311945,0.288732,0.89668,0.570254,0.0708242,0.24606,0.297979,0.789628,0.339326,0.412666,0.207981,0.968594,0.0666443,0.386945,0.748765,0.952857,0.344434,0.83206,0.401489,0.169262,0.810725,0.440569,0.27712,0.287075,0.861205,0.416169,0.389342,0.627028,0.725953,0.101848,0.63001,0.0028587,0.765363,0.032037,0.00899136,0.927307,0.253699,0.792799,0.351521,0.643831,0.227157,0.113563,0.28756,0.497301,0.585222,0.693476,0.654958,0.370594,0.51102,0.13032,0.159122,0.195342,0.0652893,0.864635,0.336484,0.777817,0.883433,0.684935,0.0722201,0.288535,0.0636425,0.0285704,0.603913,0.857234,0.103759,0.174679,0.534499,0.403553,0.622108,0.696549,0.917368,0.383811,0.476905,0.767877,0.18288,0.351999,0.239681,0.991806,0.263946,0.130697,0.420543,0.567085,0.967166,0.719891,0.889268,0.164346,0.792282,0.274477,0.236312,0.792351,0.768368,0.647032,0.171614,0.142154,0.0944861,0.870185,0.85463,0.110953,0.500721,0.381797,0.94424,0.05923,0.764034,0.333989,0.686552,0.405703,0.150903,0.837636,0.670459,0.00232637,0.219602,0.784864,0.674913,0.497591,0.963516,0.352593,0.343108,0.435298,0.83862,0.877383,0.45274,0.525211,0.58185,0.490013,0.856165,0.771493,0.186165,0.555815,0.0506234,0.0846363,0.987174,0.890843,0.821936,0.610844,0.746325,0.767388,0.0528408,0.0266952,0.167393,0.453585,0.899802,0.328999,0.807754,0.580477,0.624431,0.197717,0.376454,0.449748,0.680865,0.398214,0.444128,0.438206,0.112823,0.64729,0.894819,0.700225,0.880426,0.162201,0.369736,0.913938,0.140695,0.0213861,0.0640928,0.92577,0.748165,0.275496,0.895734,0.226557,0.719021,0.755613,0.524233,0.5715,0.676548,0.212092,0.824162,0.640636,0.994411,0.930313,0.0796422,0.328507,0.757401,0.962712,0.299673,0.511864,0.270171,0.897278,0.713081,0.410806,0.260983,0.125603,0.156849,0.316874,0.752546,0.944974,0.698632,0.762241,0.418411,0.950683,0.810698,0.0333562,0.836033,0.23936,0.923169,0.527707,0.892294,0.629214,0.098095,0.0314214,0.705171,0.0957469,0.483889,0.925979,0.0838529,0.811644,0.211509,0.690343,0.552776,0.353226,0.875154,0.128163,0.227799,0.740171,0.66863,0.784607,0.0111924,0.620906,0.41938,0.468585,0.022258,0.408882,0.91641,0.985921,0.295101,0.0667387,0.258052,0.816876,0.629469,0.0921404,0.264088,0.360407,0.00933558,0.181336,0.595627,0.368261,0.0988492,0.49255,0.0223333,0.973558,0.449121,0.0999119,0.97558,0.101846,0.76341,0.743494,0.739396,0.618535,0.427364,0.948734,0.91526,0.902622,0.710096,0.413656,0.912459,0.903323,0.0615061,0.00022167,0.49655,0.813084,0.36929,0.0547783,0.907559,0.480796,0.286721,0.956169,0.266211,0.626636,0.534487,0.50292,0.693462,0.30713,0.0161999,0.728015,0.488955,0.196202,0.315201,0.628923,0.0740656,0.385909,0.52949,0.480052,0.731157,0.916279,0.514642,0.876841,0.446375,0.656126,0.600201,0.100187,0.302386,0.19847,0.105006,0.514127,0.496767,0.321854,0.452778,0.467753,0.817265,0.599032,0.985184,0.66238,0.655328,0.787075,0.745558,0.53727,0.079794,0.550789,0.598767,0.326641,0.249446,0.436144,0.32319,0.407947,0.701085,0.548774,0.0577109,0.736946,0.927971,0.313175,0.428158,0.668111,0.572319,0.365847,0.644815,0.24661,0.0640334,0.736243,0.3712,0.0645158,0.933755,0.864603,0.427302,0.329307,0.714736,0.120403,0.445098,0.841342,0.40276,0.241901,0.785601,0.315511,0.950104,0.757214,0.853351,0.0536929,0.0603521,0.369713,0.260939,0.433494,0.259518,0.0435134,0.226052,0.953026,0.680353,0.724248,0.702062,0.176278,0.449776,0.55693,0.870493,0.212839,0.118109,0.246704,0.428847,0.497644,0.765357,0.475926,0.857407,0.358363,0.979725,0.561769,0.794606,0.969731,0.0430369,0.107362,0.70236,0.863835,0.185235,0.169853,0.777708,0.787976,0.23692,0.0969141,0.712385,0.348934,0.623928,0.727745,0.958004,0.170552,0.260564,0.225511,0.964302,0.884763,0.141477,0.0274559,0.610404,0.751212,0.966747,0.612764,0.0144466,0.987882,0.90029,0.287497,0.99078,0.986249,0.218401,0.440078,0.923553,0.0975119,0.477311,0.735554,0.791012,0.09447,0.710023,0.315386,0.415733,0.0731369,0.0716245,0.189024,0.61993,0.0528638,0.175122,0.657817,0.0156264,0.756811,0.438016,0.667717,0.692342,0.111367,0.644802,0.628159,0.0728897,0.946414,0.377802,0.57738,0.922557,0.441343,0.357735,0.427989,0.0887864,0.873214,0.224336,0.00329411,0.408768,0.616078,0.426268,0.616677,0.389731,0.655642,0.71255,0.205393,0.709714,0.723068,0.950099,0.462207,0.507099,0.712138,0.273088,0.567383,0.640996,0.720048,0.234616,0.0702292,0.95163,0.510906,0.643317,0.719396,0.531768,0.585132,0.466146,0.537001,0.873554,0.911838,0.772556,0.316877,0.602103,0.890633,0.479027,0.281449,0.123045,0.562644,0.363359,0.685809,0.0456055,0.749835,0.787127,0.740861,0.302954,0.947327,0.0890099,0.472341,0.874819,0.0867031,0.567287,0.976391,0.00341523,0.116674,0.375052,0.874671,0.232235,0.132863,0.905352,0.772121,0.0687212,0.226122,0.538699,0.0225793,0.489674,0.0309169,0.469903,0.612016,0.433725,0.0764912,0.740811,0.860322,0.324613,0.352809,0.238169,0.430578,0.193907,0.524707,0.795667,0.289162,0.668137,0.086982,0.487825,0.39859,0.532526,0.757234,0.443384,0.428854,0.819632,0.425581,0.720304,0.606271,0.664964,0.281305,0.243456,0.606309,0.946243,0.152907,0.459392,0.956709,0.548428,0.756139,0.561855,0.800217,0.397108,0.0582755,0.690519,0.538831,0.264158,0.151543,0.203191,0.294206,0.566861,0.508273,0.842618,0.259513,0.797739,0.847125,0.289368,0.743863,0.568515,0.956708,0.273454,0.0188536,0.721295,0.911322,0.987954,0.639673,0.381467,0.836204,0.158983,0.753973,0.36029,0.436028,0.963935,0.525292,0.215237,0.0882171,0.805542,0.678747,0.198565,0.678202,0.747001,0.455462,0.612822,0.378272,0.780706,0.531524,0.385039,0.443496,0.245886,0.453721,0.551062,0.807053,0.600568,0.889999,0.509629,0.367257,0.760165,0.704771,0.190489,0.184294,0.130633,0.221236,0.883709,0.627367,0.335553,0.0901574,0.579555,0.0981435,0.769904,0.393722,0.655487,0.829788,0.0426008,0.337539,0.555944,0.220465,0.491058,0.533248,0.230613,0.464785,0.453994,0.529302,0.073825,0.17574,0.231562,0.803648,0.0929071,0.178388,0.282529,0.965808,0.299014,0.361203,0.628415,0.987272,0.759385,0.735367,0.0294661,0.410762,0.944205,0.519446,0.3286,0.72665,0.634519,0.279489,0.123129,0.0284012,0.213309,0.541318,0.214906,0.115929,0.592788,0.31683,0.296242,0.928251,0.45489,0.806352,0.547109,0.849486,0.0593117,0.495821,0.836955,0.265287,0.0846272,0.180766,0.730471,0.58867,0.51174,0.30615,0.320286,0.938349,0.997983,0.986017,0.111599,0.183002,0.36759,0.989672,0.249847,0.797429,0.495436,0.711602,0.507969,0.146843,0.761041,0.299315,0.0941759,0.115083,0.0623952,0.608807,0.930501,0.372756,0.905827,0.878585,0.0503358,0.770186,0.31083,0.56177,0.661715,0.865093,0.456317,0.621314,0.706865,0.667631,0.592941,0.1164,0.975139,0.735339,0.659148,0.300618,0.271161,0.871768,0.462973,0.769859,0.737393,0.596538,0.910201,0.362755,0.350141,0.258734,0.843325,0.349258,0.37696,0.3489,0.602528,0.253099,0.588122,0.151763,0.28052,0.13356,0.324936,0.591981,0.636088,0.117973,0.156375,0.127874,0.48108,0.193103,0.846595,0.270179,0.240123,0.840025,0.80074,0.354382,0.230164,0.686543,0.876258,|0.0216997,0.531259,0.679195,0.698973,0.515556,0.323188,0.341989,0.373574,0.0677025,0.341683,0.714249,0.0632404,0.876886,0.607611,0.54314,0.12402,0.971095,0.576933,0.255122,0.874448,0.986095,0.981707,0.975942,0.201579,0.116032,0.694871,0.932985,0.753829,0.261204,0.85996,0.102347,0.110561,0.622345,0.0901318,0.146274,0.872197,0.225004,0.290826,0.44021,0.528042,0.240369,0.529007,0.669135,0.0863768,0.118272,0.842855,0.252539,0.0976637,0.567298,0.454475,0.294724,0.338747,0.454172,0.670223,0.137858,0.783913,0.508271,0.484787,0.270364,0.856191,0.874142,0.848965,0.33379,0.924654,0.48057,0.165125,0.421578,0.592848,0.22947,0.319606,0.96711,0.740599,0.514734,0.93921,0.480252,0.323843,0.0744292,0.921634,0.524095,0.928607,0.721143,0.195397,0.967938,0.604196,0.203874,0.329574,0.298918,0.391283,0.0875619,0.112845,0.784668,0.220193,0.510009,0.175195,0.866372,0.391733,0.990757,0.442556,0.533196,0.304154,0.0264755,0.571501,0.556618,0.127134,0.807576,0.942874,0.917511,0.800094,0.609063,0.172334,0.0953808,0.255708,0.766171,0.153809,0.048319,0.659838,0.838262,0.0249599,0.591437,0.177839,0.741174,0.678451,0.667677,0.267204,0.273815,0.0677365,0.618259,0.761677,0.0596434,0.468749,0.301124,0.361219,0.7961,0.953137,0.968677,0.751663,0.36797,0.15463,0.36149,0.698611,0.922724,0.227335,0.864443,0.786932,0.863295,0.714925,0.454833,0.633878,0.103993,0.606733,0.392755,0.35113,0.968698,0.703709,0.783342,0.602137,0.905143,0.782043,0.204889,0.670869,0.13897,0.414573,0.139562,0.424275,0.63814,0.901974,0.344523,0.977082,0.774359,0.131886,0.0429745,0.495754,0.696645,0.985561,0.987893,0.244297,0.362945,0.558082,0.700997,0.371671,0.0458985,0.18036,0.133053,0.549461,0.873632,0.385707,0.871616,0.0448769,0.137029,0.189038,0.796514,0.581993,0.22667,0.589606,0.355597,0.634994,0.648683,0.259842,0.999582,0.791766,0.877458,0.0191572,0.719146,0.595962,0.474187,0.0583388,0.391591,0.29663,0.376589,0.813999,0.13647,0.751589,0.744721,0.328218,0.108597,0.774634,0.374515,0.877089,0.969771,0.230543,0.603581,0.492401,0.67744,0.82055,0.091369,0.51341,0.999102,0.503881,0.202307,0.729681,0.468897,0.428134,0.887718,0.874096,0.130149,0.623592,0.570117,0.133888,0.588622,0.514051,0.178221,0.232557,0.638996,0.921143,0.701326,0.441874,0.291277,0.444889,0.692796,0.803239,0.00778061,0.81317,0.498954,0.858268,0.931636,0.0346762,0.512189,0.0491918,0.315028,0.982624,0.548528,0.251981,0.854616,0.679489,0.799651,0.55583,0.793857,0.426253,0.60052,0.882127,0.831123,0.167329,0.924597,0.307769,0.245798,0.512695,0.450412,0.136272,0.452113,0.117334,0.632831,0.0537871,0.278135,0.210396,0.913155,0.0897269,0.828222,0.392713,0.163914,0.00744665,0.33795,0.939805,0.668291,0.704987,0.47443,0.800934,0.630315,0.928036,0.588044,0.536571,0.718141,0.322534,0.229097,0.193711,0.935427,0.425454,0.438294,0.561058,0.335881,0.622363,0.262053,0.217266,0.519609,0.138764,0.373577,0.295414,0.368129,0.138304,0.00968397,0.689006,0.857264,0.119759,0.139196,0.190604,0.2098,0.265768,0.339384,0.464411,0.320207,0.278668,0.0895281,0.0389254,0.319403,0.497788,0.396271,0.938758,0.486803,0.0802823,0.123401,0.896157,0.327042,0.940634,0.405391,0.485776,0.170507,0.948939,0.184478,0.644649,0.434934,0.859308,0.162455,0.143829,0.005014,0.31131,0.947761,0.867002,0.289613,0.566066,0.344022,0.213042,0.987193,0.653291,0.772327,0.204962,0.469342,0.645788,0.631403,0.68968,0.84094,0.0416034,0.931885,0.15492,0.648356,0.761531,0.835053,0.068298,0.111745,0.373676,0.185505,0.432612,0.49352,0.610998,0.941514,0.0980427,0.458277,0.496154,0.0364172,0.385856,0.698533,0.480585,0.0164146,0.339133,0.863758,0.876039,0.727531,0.223509,0.536025,0.529415,0.651728,0.887359,0.17268,0.0195646,0.0513722,0.0156445,0.914062,0.39832,0.258788,0.721493,0.49071,0.7507,0.950485,0.499053,0.683976,0.816137,0.298025,0.73008,0.849039,0.32939,0.503964,0.78467,0.821543,0.294,0.720617,0.307867,0.0270684,0.266794,0.70041,0.07103,0.176401,0.369378,0.0538533,0.732939,0.421507,0.839843,0.68394,0.432047,0.922777,0.213957,0.247175,0.218456,0.781105,0.538045,0.622901,0.942424,0.292745,0.690662,0.14914,0.943515,0.933282,0.818408,0.520425,0.502153,0.645847,0.305661,0.735685,0.956319,0.683913,0.175058,0.214618,0.00589162,0.395919,0.0998338,0.226518,0.890231,0.384272,0.461566,0.288392,0.490718,0.109168,0.126712,0.0394336,0.0915529,0.411657,0.889068,0.881932,0.599676,0.341924,0.25075,0.0903752,0.452611,0.984562,0.52491,0.110907,0.175975,0.417164,0.21094,0.227047,0.138339,0.202572,0.124609,0.0169703,0.114402,0.862168,0.316784,0.28859,0.776895,0.776028,0.107458,0.361407,0.207238,0.0880051,0.808326,0.617624,0.729351,0.592279,0.334613,0.64846,0.0159303,0.883609,0.17632,0.665854,0.235819,0.986436,0.588428,0.130612,0.922581,0.0695036,0.91245,0.297613,0.20261,0.947661,0.678408,0.0737019,0.500185,0.526272,0.43204,0.822146,0.670664,0.233787,0.302165,0.680403,0.669355,0.811584,0.40739,0.637781,0.447306,0.0434709,0.00021106,0.85591,0.376231,0.539084,0.586396,0.158074,0.546557,0.824328,0.809521,0.7224,0.288397,0.0439506,0.50448,0.556825,0.931285,0.783655,0.606495,0.945584,0.1874,0.941549,0.818341,0.396979,0.49057,0.00572085,0.740438,0.723223,0.670872,0.797215,0.184521,0.807613,0.383537,0.584479,0.0847274,0.102143,0.632839,0.842384,0.276127,0.738578,0.279388,0.701177,0.926946,0.219548,0.153453,0.490294,0.192256,0.349289,0.62952,0.370264,0.201066,0.277444,0.00576103,0.612991,0.165127,0.862782,0.323403,0.911022,0.330074,0.655839,0.226367,0.00508523,0.635922,0.122055,0.245047,0.0885518,0.263421,0.420806,0.529673,0.494961,0.90032,0.590449,0.442222,0.387206,0.481938,0.948276,0.476438,0.820691,0.109255,0.892071,0.210993,0.558168,0.496911,0.423611,0.873594,0.852884,0.655483,0.162103,0.473892,0.988995,0.149735,0.960284,0.753568,0.533745,0.902602,0.771732,0.61143,0.568199,0.922899,0.185708,0.700922,0.779027,0.295344,0.112336,0.0961556,0.794946,0.0145979,0.319977,0.503183,0.223327,0.573474,0.632767,0.382987,0.975481,0.801828,0.261277,0.350228,0.542699,0.597825,0.987794,0.221447,0.887822,0.405152,0.175948,0.923204,0.359602,0.363756,0.0262851,0.386442,0.447208,0.0958031,0.0873008,0.710098,0.355224,0.460039,0.28987,0.324992,0.0464898,0.572459,0.508496,0.0652368,0.333332,0.67458,0.769696,0.499909,0.589068,0.805248,0.933774,0.840289,0.810475,0.191604,0.295493,0.531838,0.774557,0.770814,0.120303,0.0497435,0.0219727,0.78056,0.217994,0.776853,0.640945,0.10395,0.921905,0.518908,0.308129,0.649786,0.905073,0.138129,0.965505,0.171887,0.430674,0.459416,0.0201595,0.404167,0.259932,0.500011,0.049618,0.450801,0.0898482,0.230344,0.375063,0.574532,0.313092,0.255834,0.546898,0.657589,0.916161,0.591263,0.733022,0.267169,0.0977204,0.818638,0.831483,0.982236,0.112312,0.390115,0.733819,0.70857,0.621894,0.608399,0.0631664,0.820025,0.473992,0.29437,0.113786,0.793238,0.585906,0.498843,0.164043,0.399501,0.67514,0.356772,0.272552,0.354593,0.799164,0.188171,0.503087,0.544252,0.824657,0.185409,0.00637817,0.654823,0.31414,0.55384,0.490786,0.896923,0.779626,0.0164639,0.710796,0.585984,0.586685,0.0107242,0.482386,0.888643,0.417629,0.708205,0.835741,0.579215,0.814106,0.536166,0.818953,0.753753,0.180074,0.820106,0.886551,0.76601,0.662904,0.502183,0.164604,0.652758,0.0540777,0.169648,0.395459,0.202839,0.704199,0.992211,0.0451579,0.294771,0.872214,0.943342,0.597997,0.586401,0.309592,0.927737,0.585845,0.13115,0.45848,0.017727,0.777904,0.476793,0.143886,0.547551,0.31777,0.493027,0.0964224,0.969169,0.231978,0.0351222,0.196046,0.583108,0.790462,0.205798,0.633789,0.111171,0.402099,0.365929,0.0416449,0.79754,0.906084,0.0224071,0.0916927,0.319141,0.521378,0.226725,0.0628247,0.93183,0.027057,0.629741,0.291593,0.0529686,0.549178,0.499616,0.274359,0.833523,0.395863,0.114921,0.825886,0.464869,0.274158,0.17459,0.167337,0.211762,0.998822,0.872613,0.618403,0.597239,0.366944,0.990666,0.198609,0.578155,0.369541,0.357573,0.920489,0.859215,0.169226,0.163327,0.352204,0.674884,0.255236,0.583372,0.56556,0.0240723,0.420537,0.366481,0.382232,0.838591,0.213285,0.230113,0.22446,0.10653,0.202463,0.172903,0.521533,0.840039,0.95396,0.339717,0.0912702,0.227048,0.231971,0.264869,0.846732,0.727767,0.936349,0.512129,0.195803,0.640083,0.371477,0.754651,0.383056,0.726719,0.49264,0.980133,0.356991,0.806184,0.988962,0.281675,0.500089,0.134628,0.933068,0.540981,0.880146,0.373424,0.778097,0.598039,0.753787,0.577037,0.403663,0.576518,0.448737,0.0407721,0.357497,0.264019,0.0499485,0.547397,0.487432,0.328785,0.521365,0.710617,0.59425,0.521611,0.982348,0.499222,0.906454,0.396809,0.407637,0.947539,0.0954044,0.417376,0.908506,0.7688,0.715246,0.796263,0.533097,0.528868,0.92089,0.862181,0.78718,0.716323,0.0462713,0.99058,0.234932,0.464645,0.269941,0.282538,0.856085,0.793382,0.720442,0.634605,0.459936,0.393961,0.534128,0.654835,0.804344,0.276102,0.638756,0.25234,0.311031,0.829983,0.631539,0.142886,0.577175,0.802888,0.173369,0.115651,0.77554,0.193116,0.585696,0.513559,0.495422,0.287161,0.672784,0.503786,0.294713,0.494764,0.128116,0.167464,0.766208,0.867414,0.31655,0.193652,0.657922,0.106556,0.651718,0.422735,0.384401,0.298828,0.563253,0.995551,0.549901,0.296695,0.997138,0.19744,0.830076,0.865468,|0.750144,0.0417187,0.365353,0.0356287,0.153341,0.794642,0.500327,0.419863,0.684822,0.169562,0.151441,0.672835,0.996987,0.384441,0.997203,0.129512,0.548557,0.925671,0.402292,0.77057,0.0184238,0.818031,0.971872,0.722133,0.33637,0.589297,0.186097,0.300629,0.112394,0.717714,0.225293,0.551584,0.131413,0.797426,0.466858,0.875659,0.495777,0.0935349,0.868559,0.640169,0.700127,0.420088,0.301146,0.210668,0.560423,0.347959,0.230654,0.529124,0.508151,0.355762,0.829944,0.43708,0.771973,0.0282446,0.744737,0.155793,0.1999,0.167733,0.112696,0.273026,0.269068,0.806221,0.568885,0.275262,0.215463,0.143358,0.370694,0.0736029,0.355835,0.982934,0.92136,0.187155,0.632937,0.687248,0.819828,0.414267,0.0913855,0.84084,0.0870393,0.213764,0.750501,0.903948,0.380178,0.271807,0.307531,0.00977921,0.589204,0.829454,0.914818,0.0873967,0.872298,0.687452,0.955666,0.709096,0.919811,0.982669,0.653191,0.0246877,0.392573,0.978689,0.341065,0.234831,0.805995,0.273559,0.753398,0.0911134,0.36539,0.43088,0.114151,0.243795,0.756509,0.853862,0.433729,0.338337,0.667188,0.498113,0.543059,0.490795,0.094984,0.581268,0.507764,0.895693,0.145538,0.419142,0.22999,0.477851,0.367465,0.326433,0.22333,0.161387,0.86744,0.341833,0.926311,0.674558,0.655991,0.984097,0.927369,0.882972,0.730138,0.527428,0.446951,0.344553,0.740993,0.0503879,0.704827,0.620975,0.688535,0.966453,0.362629,0.805385,0.733086,0.688585,0.901535,0.467545,0.145549,0.802079,0.721787,0.415357,0.666606,0.127746,0.261903,0.455891,0.550815,0.716702,0.5686,0.969421,0.222641,0.896762,0.133451,0.41501,0.881075,0.539916,0.65476,0.828722,0.618563,0.0641409,0.466031,0.549896,0.522827,0.0962207,0.293626,0.837132,0.157336,0.350378,0.78752,0.889625,0.857757,0.433128,0.865784,0.2826,0.976961,0.765348,0.881327,0.732415,0.194613,0.355885,0.161045,0.141799,0.49863,0.364969,0.949123,0.98583,0.0937174,0.759062,0.146872,0.331881,0.886726,0.470668,0.357127,0.676037,0.267839,0.421687,0.452745,0.180166,0.654712,0.844939,0.351806,0.724364,0.526378,0.583881,0.983715,0.807811,0.873573,0.230414,0.295611,0.465599,0.0980119,0.187493,0.458174,0.768065,0.617689,0.46017,0.0590744,0.315848,0.0273369,0.848419,0.743897,0.812806,0.705486,0.746519,0.432324,0.864849,0.622278,0.899564,0.250234,0.183085,0.340003,0.134609,0.692451,0.37992,0.295505,0.533257,0.595577,0.425761,0.0789372,0.191737,0.760299,0.0724004,0.774467,0.499961,0.422784,0.0377805,0.143431,0.939116,0.744496,0.562797,0.162204,0.24443,0.0928459,0.0347082,0.934113,0.700168,0.254544,0.368263,0.659332,0.314041,0.922711,0.497235,0.156026,0.784629,0.576106,0.821855,0.246135,0.616683,0.904658,0.517015,0.180107,0.176155,0.103751,0.408161,0.107387,0.657849,0.436141,0.0625941,0.106127,0.135657,0.0177254,0.0792575,0.867911,0.932487,0.890119,0.583659,0.635513,0.151407,0.157647,0.456916,0.0343605,0.0455809,0.138168,0.0403682,0.183246,0.947128,0.568268,0.234399,0.996423,0.403914,0.250765,0.715417,0.399904,0.0380138,0.921771,0.998578,0.140545,0.217306,0.569272,0.121704,0.282854,0.867983,0.569784,0.510708,0.690354,0.595565,0.396915,0.137917,0.499315,0.932327,0.112209,0.803982,0.0897753,0.0680164,0.0815165,0.0822966,0.945142,0.615348,0.767464,0.604929,0.467047,0.563157,0.602515,0.74321,0.957138,0.0277274,0.38143,0.843852,0.625269,0.930989,0.866293,0.903397,0.229368,0.977655,0.811746,0.324248,0.904966,0.852813,0.960795,0.37344,0.0483441,0.560671,0.681716,0.601633,0.0087238,0.108025,0.955402,0.0134155,0.371279,0.165889,0.612771,0.292484,0.85619,0.57166,0.10727,0.863546,0.00173551,0.546353,0.190291,0.712224,0.335258,0.250755,0.829761,0.399195,0.0312142,0.455555,0.0463454,0.577794,0.553413,0.120751,0.895774,0.831655,0.658837,0.946327,0.975695,0.376251,0.747487,0.378382,0.322856,0.684849,0.281673,0.00183636,0.0443473,0.918376,0.232634,0.0449319,0.224033,0.196043,0.88097,0.269842,0.891746,0.459684,0.538224,0.559322,0.31455,0.246353,0.173881,0.771199,0.70512,0.15487,0.841753,0.557796,0.299847,0.506904,0.758355,0.238229,0.745507,0.296731,0.893488,0.486462,0.472422,0.475918,0.510505,0.433223,0.933911,0.890172,0.589021,0.336346,0.408215,0.105321,0.499922,0.353259,0.53966,0.0931446,0.575707,0.594683,0.879373,0.532616,0.510278,0.853766,0.47904,0.704917,0.741566,0.426353,0.64205,0.849122,0.368437,0.204401,0.690037,0.0367814,0.762537,0.872131,0.888813,0.438276,0.239079,0.773341,0.734116,0.808539,0.876124,0.0104377,0.0780452,0.0636552,0.591107,0.872778,0.997698,0.640194,0.732816,0.583229,0.85373,0.646548,0.822631,0.777319,0.079964,0.843208,0.544697,0.561185,0.666331,0.599188,0.966095,0.814761,0.202201,0.450439,0.964086,0.172581,0.783085,0.469793,0.0512397,0.269584,0.037787,0.527511,0.67333,0.472658,0.435167,0.904881,0.205987,0.556824,0.675162,0.353081,0.978311,0.382164,0.874794,0.668408,0.432188,0.250966,0.749242,0.713708,0.443052,0.206663,0.110071,0.571995,0.550228,0.79479,0.783849,0.524068,0.715935,0.637245,0.384009,0.508698,0.631415,0.826632,0.173401,0.775682,0.0768853,0.0644634,0.275631,0.127384,0.395574,0.829396,0.242522,0.00399965,0.335793,0.49107,0.330173,0.443349,0.155626,0.101977,0.931497,0.913685,0.412681,0.951497,0.0536178,0.285646,0.136697,0.546926,0.851045,0.444445,0.999299,0.427318,0.388556,0.968021,0.336835,0.468334,0.489548,0.0380079,0.703351,0.774076,0.270379,0.907557,0.128072,0.629986,0.208056,0.710154,0.399762,0.748164,0.322038,0.0114777,0.712965,0.360764,0.158446,0.703819,0.14922,0.534253,0.894476,0.428933,0.560531,0.136677,0.298643,0.393868,0.628226,0.0473256,0.101624,0.851831,0.148182,0.887207,0.658789,0.550008,0.768058,0.403617,0.0124891,0.343015,0.307186,0.648725,0.781656,0.0559344,0.768554,0.0690061,0.803656,0.334389,0.0920225,0.69976,0.569854,0.385358,0.419148,0.7336,0.289319,0.52651,0.524036,0.00112379,0.957232,0.727762,0.0539103,0.704423,0.309676,0.216081,0.0323554,0.0738401,0.955767,0.347473,0.728286,0.292121,0.855423,0.529986,0.192513,0.24957,0.986705,0.00277954,0.0881842,0.0254236,0.326445,0.00297952,0.468373,0.753291,0.00956398,0.875305,0.53196,0.672801,0.844084,0.976025,0.636237,0.0141189,0.979208,0.886572,0.146178,0.227109,0.135215,0.765979,0.601996,0.412464,0.822103,0.0234591,0.622761,0.775763,0.250893,0.866921,0.961965,0.814117,0.422231,0.0384824,0.737812,0.749748,0.113034,0.239839,0.451023,0.559046,0.870813,0.770406,0.456876,0.0123674,0.985022,0.800407,0.208171,0.639492,0.62536,0.687624,0.320092,0.847815,0.758739,0.556471,0.406879,0.567263,0.43001,0.0135921,0.696342,0.682596,0.493213,0.533429,0.333795,0.699421,0.543266,0.653878,0.185284,0.0808287,0.0531116,0.864074,0.716815,0.924452,0.21588,0.726595,0.407938,0.437941,0.543596,0.809327,0.406455,0.498386,0.191752,0.96984,0.754954,0.354612,0.424168,0.23332,0.164889,0.479176,0.509211,0.578637,0.849493,0.239122,0.881807,0.935405,0.709545,0.188442,0.11661,0.721733,0.776873,0.904485,0.100761,0.0579111,0.820755,0.107127,0.912371,0.804511,0.993505,0.951028,0.707012,0.698765,0.946313,0.808025,0.100436,0.397113,0.941604,0.109509,0.911345,0.90315,0.0859026,0.225551,0.988312,0.164811,0.0644619,0.0396824,0.747623,0.651062,0.490942,0.126272,0.994304,0.758915,0.723489,0.622584,0.081091,0.946898,0.056972,0.426729,0.476814,0.787508,0.103875,0.122581,0.151919,0.725882,0.379399,0.353799,0.442255,0.537746,0.614074,0.0316561,0.129019,0.112695,0.557314,0.587082,0.178093,0.372483,0.111854,0.41262,0.0146382,0.342295,0.976511,0.514026,0.926239,0.0353113,0.631848,0.93527,0.993453,0.543709,0.994714,0.695448,0.826447,0.930752,0.102926,0.648312,0.528402,0.411341,0.450078,0.980279,0.154851,0.955266,0.627489,0.000602782,0.15871,0.149121,0.905697,0.247356,0.631163,0.501151,0.28903,0.815643,0.0894811,0.769201,0.34614,0.425336,0.682463,0.319152,0.763547,0.824155,0.783378,0.0391829,0.579726,0.245502,0.911521,0.982419,0.668034,0.556185,0.028801,0.73195,0.273943,0.487431,0.182016,0.479943,0.798798,0.722971,0.845239,0.346047,0.99317,0.869048,0.0646241,0.346245,0.768115,0.276068,0.933438,0.814962,0.669987,0.484888,0.512048,0.320159,0.425795,0.000995815,0.81426,0.391708,0.518956,0.424478,0.341605,0.388769,0.992183,0.211291,0.240874,0.856117,0.858575,0.735545,0.879411,0.174343,0.350409,0.201657,0.573043,0.806764,0.0253834,0.546127,0.6883,0.430666,0.5011,0.557324,0.241884,0.87511,0.96588,0.580636,0.654022,0.989461,0.209904,0.666868,0.265779,0.39335,0.447237,0.300594,0.963097,0.454119,0.457995,0.833496,0.293649,0.198499,0.0891707,0.305567,0.580489,0.0832207,0.0722879,0.320657,0.375822,0.214267,0.353859,0.802712,0.317158,0.294415,0.0126988,0.639061,0.639537,0.331338,0.372597,0.8512,0.624405,0.794868,0.833903,0.6885,0.859094,0.597844,0.100348,0.249374,0.374401,0.124705,0.40676,0.56306,0.848039,0.678549,0.0945712,0.351118,0.0172926,0.156001,0.424215,0.295838,0.208864,0.0563339,0.654952,0.831086,0.880154,0.991706,0.177592,0.237423,0.106656,0.390893,0.702113,0.533081,0.601659,0.147811,0.458363,0.743994,0.283347,0.655993,0.650157,0.641113,0.591379,0.792007,0.945091,0.205315,0.76374,0.879323,0.338802,0.625159,0.146588,0.292251,0.554265,0.87043,0.927088,0.160153,0.60441,0.858463,0.156379,0.787758,0.307266,0.432908,0.535333,0.0135781,0.795455,0.343087,0.227792,0.125808,0.589051,0.375082,0.374956,0.41163,0.582932,0.635658,|0.744328,0.216608,0.241227,0.449007,0.0171289,0.597329,0.821793,0.685141,0.194391,0.513432,0.934084,0.768921,0.953371,0.678967,0.50416,0.471569,0.72214,0.224153,0.864836,0.157634,0.701821,0.897511,0.92352,0.456853,0.885385,0.739955,0.356532,0.478114,0.18162,0.64289,0.195385,0.535191,0.0322961,0.513213,0.0852695,0.673029,0.203138,0.340005,0.449085,0.861651,0.801436,0.411616,0.600318,0.200229,0.943007,0.838507,0.635201,0.294267,0.519642,0.738372,0.176968,0.071995,0.760093,0.183168,0.892704,0.436301,0.0248361,0.293263,0.0220567,0.314475,0.982397,0.318533,0.951189,0.431229,0.62096,0.707243,0.209689,0.699248,0.783775,0.28693,0.853444,0.261689,0.80262,0.17522,0.713171,0.737415,0.65825,0.391785,0.0467619,0.282596,0.998282,0.492406,0.302543,0.945264,0.201673,0.960027,0.180225,0.652749,0.826162,0.525422,0.210816,0.751122,0.302641,0.351414,0.944086,0.049451,0.436263,0.168321,0.272309,0.626079,0.043556,0.891302,0.692206,0.477992,0.784016,0.326691,0.370679,0.0205876,0.191886,0.898683,0.592545,0.559806,0.674396,0.886846,0.711764,0.653883,0.503685,0.152074,0.439699,0.452523,0.538353,0.167625,0.175789,0.90707,0.785047,0.881446,0.362099,0.311499,0.215451,0.342724,0.934677,0.64511,0.763374,0.0502485,0.413039,0.435276,0.83016,0.188487,0.463463,0.996481,0.716756,0.581987,0.751134,0.940395,0.332942,0.979098,0.220952,0.825887,0.690087,0.204413,0.289496,0.937825,0.940104,0.258174,0.498249,0.120939,0.692519,0.455172,0.47977,0.280237,0.865798,0.998801,0.449193,0.382549,0.31105,0.593069,0.531308,0.00788683,0.900343,0.710966,0.690109,0.61272,0.0457862,0.642177,0.128804,0.843562,0.185497,0.588632,0.591393,0.795483,0.41875,0.84968,0.323251,0.959597,0.922385,0.405691,0.887556,0.151539,0.00753337,0.994978,0.147539,0.32594,0.110868,0.561219,0.183684,0.781273,0.58502,0.147989,0.591689,0.207923,0.492731,0.543883,0.0955771,0.451271,0.701864,0.460468,0.0255004,0.496465,0.707412,0.706289,0.808004,0.633799,0.504554,0.755221,0.0676611,0.395214,0.785609,0.663606,0.25134,0.295252,0.29265,0.928667,0.456524,0.196071,0.0790831,0.414937,0.931531,0.649633,0.862966,0.0563577,0.886741,0.861796,0.39002,0.110069,0.417939,0.337786,0.971099,0.87918,0.657877,0.0626733,0.361822,0.829366,0.839097,0.319911,0.41639,0.24949,0.413263,0.262043,0.288855,0.216015,0.598365,0.872903,0.0512075,0.224173,0.0750588,0.538827,0.85214,0.316932,0.0723829,0.253239,0.146112,0.993476,0.838203,0.559585,0.686371,0.239828,0.122982,0.25916,0.118706,0.262212,0.782021,0.579215,0.361384,0.156711,0.83789,0.95264,0.710997,0.584261,0.747404,0.533954,0.652668,0.0533349,0.911269,0.363685,0.930184,0.839054,0.582494,0.586091,0.553786,0.332673,0.0999082,0.738117,0.528474,0.872157,0.787905,0.907983,0.915412,0.29594,0.542023,0.0342224,0.779839,0.684033,0.772111,0.0147626,0.861728,0.658062,0.326143,0.819144,0.515756,0.0288782,0.906227,0.278512,0.639365,0.231779,0.603766,0.819072,0.0238358,0.67788,0.0547739,0.780383,0.808374,0.339909,0.375053,0.184827,0.26329,0.536344,0.722244,0.0333444,0.789882,0.0546183,0.92192,0.730357,0.849627,0.797591,0.688355,0.876293,0.681277,0.961905,0.643595,0.525655,0.174581,0.666726,0.548959,0.132317,0.573636,0.139335,0.286948,0.666105,0.595972,0.482641,0.30713,0.681781,0.5164,0.359387,0.656908,0.293132,0.569836,0.911462,0.535093,0.278544,0.684487,0.388197,0.861578,0.999522,0.223067,0.25151,0.17362,0.424519,0.335297,0.03944,0.815723,0.383551,0.663643,0.768663,0.382071,0.368372,0.678762,0.813634,0.0198548,0.673895,0.882463,0.238214,0.950296,0.814403,0.610952,0.547101,0.289959,0.160359,0.577056,0.864014,0.412302,0.0980959,0.872646,0.981128,0.790835,0.82494,0.374216,0.564556,0.060688,0.380513,0.00861031,0.0569551,0.175264,0.480289,0.111726,0.244224,0.340127,0.720918,0.456502,0.589171,0.895836,0.882619,0.0546547,0.717607,0.185459,0.497288,0.690878,0.741277,0.588051,0.604259,0.805892,0.656532,0.394297,0.356403,0.420498,0.669289,0.0959457,0.376292,0.083146,0.362767,0.463099,0.0647155,0.0166652,0.73255,0.830286,0.101136,0.830038,0.0420427,0.954014,0.0461977,0.974885,0.473446,0.212584,0.412155,0.909782,0.28703,0.724416,0.0838575,0.79324,0.0467152,0.354479,0.00146031,0.641435,0.674729,0.154144,0.936633,0.206978,0.100289,0.960884,0.474837,0.473397,0.482661,0.914108,0.641758,0.51015,0.91902,0.175101,0.996725,0.167869,0.900668,0.873202,0.590825,0.0598063,0.00100011,0.661291,0.259663,0.503462,0.283872,0.75565,0.829175,0.90355,0.852685,0.0758214,0.288067,0.551875,0.578689,0.0903861,0.507509,0.52646,0.187843,0.212492,0.0952615,0.678906,0.793268,0.73145,0.164524,0.856012,0.64554,0.13615,0.966288,0.402139,0.870486,0.503736,0.96487,0.0169414,0.196053,0.97227,0.657902,0.89314,0.413808,0.108937,0.00528449,0.418121,0.690329,0.0601493,0.342088,0.698458,0.471415,0.780761,0.196721,0.0513999,0.852466,0.914882,0.808488,0.256154,0.108083,0.899825,0.511997,0.277272,0.659898,0.039605,0.42933,0.0168012,0.276979,0.157624,0.641374,0.943518,0.0913868,0.104899,0.705821,0.0942157,0.166468,0.567658,0.916766,0.18641,0.162868,0.0195572,0.329502,0.209982,0.178168,0.574116,0.36199,0.683031,0.57866,0.263476,0.16586,0.456676,0.354858,0.092495,0.856382,0.479549,0.702879,0.966308,0.635823,0.815984,0.87344,0.954544,0.573788,0.853746,0.416311,0.419604,0.662969,0.823225,0.917667,0.963615,0.112873,0.98837,0.536399,0.668829,0.862542,0.483741,0.541581,0.426763,0.190514,0.00983149,0.528248,0.620363,0.609003,0.209408,0.514303,0.631583,0.317886,0.0797834,0.715319,0.850593,0.477342,0.670688,0.576591,0.196736,0.060975,0.0859194,0.118081,0.573268,0.45469,0.0394655,0.823426,0.434302,0.957945,0.612393,0.30233,0.388074,0.51196,0.526758,0.0144684,0.976624,0.455724,0.613448,0.448416,0.940495,0.746509,0.459523,0.441136,0.540991,0.809595,0.954619,0.0754467,0.527755,0.968949,0.270651,0.0372186,0.328975,0.646579,0.939466,0.00614411,0.27336,0.648321,0.417634,0.197175,0.10358,0.900705,0.474364,0.475894,0.114385,0.767905,0.895329,0.998803,0.199023,0.618642,0.564832,0.512894,0.471986,0.850617,0.911634,0.87664,0.366872,0.667896,0.643499,0.522454,0.483739,0.363041,0.382369,0.10477,0.425423,0.0651776,0.300804,0.207447,0.176741,0.561955,0.17312,0.0352166,0.528432,0.788286,0.103157,0.22677,0.588932,0.518785,0.971054,0.919806,0.650398,0.561356,0.465036,0.286502,0.868688,0.212309,0.542193,0.243644,0.252126,0.642938,0.17377,0.638564,0.762719,0.377079,0.846149,0.851223,0.755159,0.697913,0.283993,0.764069,0.174668,0.485614,0.328623,0.698662,0.672442,0.117019,0.691256,0.327309,0.904319,0.304921,0.155888,0.526177,0.766878,0.40224,0.135345,0.776798,0.505181,0.112087,0.148306,0.260935,0.255832,0.860745,0.275808,0.0650123,0.607059,0.733811,0.625551,0.42459,0.323976,0.518305,0.328807,0.169862,0.725802,0.735054,0.676386,0.386265,0.452832,0.483363,0.736965,0.177398,0.460942,0.614638,0.547064,0.899289,0.324059,0.385883,0.810734,0.654318,0.384614,0.434191,0.605794,0.922269,0.447568,0.527379,0.642612,0.973048,0.79214,0.672658,0.0423784,0.0717102,0.7143,0.249439,0.656598,0.350331,0.984621,0.202817,0.556046,0.904505,0.774199,0.666847,0.700057,0.141809,0.685899,0.924622,0.85929,0.461306,0.696774,0.322621,0.176615,0.441486,0.175769,0.909777,0.531226,0.42425,0.579289,0.00612664,0.940601,0.772832,0.0394936,0.0353953,0.680599,0.823696,0.11382,0.108932,0.691882,0.088289,0.482019,0.894561,0.514922,0.664336,0.601397,0.822035,0.144657,0.155024,0.851863,0.381519,0.723797,0.443853,0.785188,0.419669,0.559639,0.161868,0.352831,0.919895,0.315494,0.526514,0.742568,0.940847,0.384169,0.679373,0.247245,0.073122,0.204954,0.39674,0.0739011,0.444941,0.124316,0.908292,0.298108,0.360836,0.60796,0.84218,0.717379,0.379902,0.228173,0.567977,0.258094,0.0218337,0.156785,0.704917,0.668462,0.138524,0.255995,0.489987,0.134905,0.691598,0.291625,0.836975,0.311778,0.626683,0.00011301,0.614759,0.895345,0.175272,0.966148,0.479171,0.878154,0.566577,0.213745,0.210306,0.12102,0.484707,0.467639,0.967283,0.639725,0.773827,0.00607526,0.250464,0.452639,0.697569,0.624792,0.193486,0.677078,0.495,0.117138,0.373923,0.773163,0.552832,0.64109,0.911182,0.308947,0.030156,0.431696,0.635157,0.00375056,0.475287,0.153458,0.260124,0.506407,0.860887,0.693865,0.806312,0.431371,0.306207,0.381213,0.770434,0.883738,0.946516,0.422271,0.942305,0.833978,0.277776,0.239062,0.862492,0.965112,0.971122,0.935648,0.394451,0.633595,0.507854,0.627136,0.903101,0.159405,0.406516,0.872854,0.270288,0.410446,0.515459,0.132694,0.105522,0.894191,0.842445,0.950495,0.549949,0.936419,0.478339,0.0907531,0.283471,0.016082,0.885297,0.8575,0.29986,0.334972,0.918076,0.325519,0.540865,0.0127293,0.870503,0.216729,0.592907,0.777153,0.327095,0.0175863,0.581666,0.82626,0.650368,0.73946,0.770486,0.125111,0.864111,0.809267,0.222061,0.217175,0.933751,0.728984,0.764922,0.893457,0.781657,0.169809,0.924633,0.95293,0.382863,0.566799,0.613431,0.950111,0.754854,0.947822,0.8576,0.880303,0.520642,0.928991,0.244483,0.386215,0.0164403,0.592268,0.759955,0.208349,0.706255,0.188464,0.895815,0.955943,0.56609,0.143295,0.824391,0.455868,0.236639,0.461864,0.294049,0.440609,0.533152,0.885365,0.8589,0.770282,0.208883,0.63298,0.227202,0.0297869,0.156885,0.340864,0.948632,0.994433,0.309738,|0.524534,0.71699,0.654974,0.53578,0.353077,0.202467,0.15516,0.0322824,0.187229,0.841356,0.248416,0.696351,0.784973,0.220363,0.66196,0.898268,0.854594,0.863087,0.554663,0.501391,0.402785,0.306391,0.397791,0.430484,0.825606,0.886787,0.956553,0.115194,0.0230213,0.188536,0.728094,0.846777,0.558532,0.59604,0.656999,0.993685,0.120297,0.894996,0.51596,0.855297,0.681376,0.373789,0.0429034,0.283335,0.528169,0.931075,0.222834,0.494334,0.507166,0.574562,0.0889314,0.572866,0.818395,0.729384,0.3911,0.625925,0.0760686,0.49633,0.893251,0.781571,0.059463,0.327391,0.326783,0.422716,0.216238,0.737497,0.716397,0.454015,0.0126403,0.713665,0.851144,0.945563,0.984586,0.634575,0.962312,0.781814,0.943599,0.722329,0.0911851,0.175388,0.307478,0.769023,0.341222,0.932678,0.245471,0.125105,0.0532827,0.797496,0.491259,0.906064,0.932272,0.391223,0.74101,0.536142,0.0694868,0.737087,0.0396638,0.628814,0.741281,0.0177531,0.250801,0.241622,0.550715,0.0927318,0.0140851,0.484765,0.0679072,0.00886607,0.877517,0.822044,0.537335,0.996431,0.852069,0.166409,0.484177,0.0643018,0.11421,0.0608284,0.582732,0.831403,0.0925997,0.643194,0.97843,0.495215,0.322883,0.879819,0.954284,0.677139,0.662243,0.51123,0.437533,0.100342,0.425017,0.911997,0.699319,0.00759745,0.759188,0.0484246,0.65145,0.0916008,0.600533,0.6386,0.188975,0.84924,0.985937,0.307051,0.899515,0.323497,0.440703,0.213663,0.241284,0.773338,0.398583,0.235998,0.88217,0.748488,0.138309,0.00908577,0.235192,0.764186,0.481865,0.00966036,0.530536,0.907406,0.21673,0.227339,0.999359,0.945251,0.254592,0.502711,0.448167,0.553369,0.488498,0.644193,0.7653,0.966261,0.663265,0.227935,0.403372,0.264124,0.469358,0.644397,0.680825,0.581199,0.315011,0.152161,0.729347,0.0897136,0.0213423,0.410152,0.124453,0.0916492,0.938245,0.416597,0.764575,0.531061,0.647784,0.452112,0.856123,0.0154951,0.438569,0.806567,0.592719,0.808058,0.99781,0.678239,0.449877,0.446003,0.972369,0.815217,0.617753,0.453422,0.732464,0.983448,0.309264,0.488249,0.75063,0.360722,0.241881,0.456641,0.448227,0.48892,0.410438,0.390362,0.166865,0.846581,0.565915,0.630074,0.11801,0.665783,0.869719,0.92288,0.390461,0.541851,0.337412,0.837026,0.138203,0.685693,0.0332491,0.666262,0.927687,0.360114,0.113115,0.0251644,0.453674,0.62048,0.0421194,0.550881,0.261265,0.489308,0.360044,0.467253,0.644233,0.473646,0.869764,0.413247,0.83014,0.423291,0.282638,0.251501,0.10169,0.484168,0.797031,0.549746,0.199538,0.0155514,0.198809,0.471168,0.221774,0.260039,0.844064,0.293344,0.0373989,0.147881,0.0175858,0.769498,0.358747,0.0573997,0.0666606,0.899972,0.265474,0.544492,0.878149,0.110433,0.238033,0.36331,0.927889,0.819315,0.158159,0.22923,0.743396,0.570098,0.257184,0.17707,0.959594,0.217859,0.956456,0.318419,0.375705,0.446677,0.607843,0.0288533,0.235029,0.690305,0.508981,0.868738,0.398883,0.764632,0.169989,0.0379249,0.857838,0.485449,0.0604655,0.417716,0.358594,0.0982484,0.218662,0.700937,0.598099,0.379929,0.385074,0.216704,0.188154,0.13677,0.517809,0.177268,0.48837,0.873824,0.40838,0.728761,0.174437,0.851033,0.828116,0.255405,0.425854,0.559623,0.781212,0.546179,0.0460002,0.289874,0.17401,0.000297964,0.570193,0.706942,0.254602,0.770775,0.873913,0.15117,0.166573,0.005822,0.42393,0.263823,0.919675,0.753489,0.257216,0.299343,0.274105,0.27787,0.724569,0.379503,0.897318,0.260445,0.74474,0.938887,0.671749,0.880289,0.63705,0.683504,0.0278264,0.782054,0.985196,0.101724,0.0531093,0.462924,0.0093503,0.456078,0.927332,0.615153,0.306775,0.744365,0.451518,0.138789,0.0541787,0.290223,0.668054,0.579568,0.669129,0.267041,0.711448,0.813147,0.155906,0.277229,0.106107,0.664915,0.0265704,0.254483,0.358015,0.8413,0.631378,0.768259,0.696163,0.946563,0.414626,0.706974,0.258962,0.952133,0.0514535,0.0732651,0.908186,0.979319,0.677969,0.604273,0.783628,0.714133,0.593114,0.728179,0.948203,0.534369,0.5765,0.477902,0.03172,0.289538,0.118335,0.315295,0.260062,0.751368,0.344077,0.392967,0.971467,0.794908,0.923856,0.943043,0.376839,0.87858,0.792879,0.487012,0.832511,0.867477,0.302373,0.0948456,0.10402,0.0721647,0.812828,0.318931,0.693646,0.576355,0.136438,0.063334,0.544321,0.961326,0.174332,0.174279,0.567076,0.876501,0.107392,0.855505,0.882607,0.337559,0.922774,0.747532,0.243396,0.374254,0.655722,0.520274,0.605651,0.571566,0.937857,0.420851,0.414748,0.629352,0.686379,0.262789,0.38608,0.476971,0.820334,0.196477,0.268207,0.462104,0.00384623,0.878772,0.644977,0.981805,0.188043,0.269286,0.639809,0.388678,0.87891,0.965024,0.307818,0.876356,0.743166,0.57468,0.659835,0.239127,0.647844,0.536296,0.315786,0.983274,0.0111237,0.891124,0.841577,0.158828,0.692977,0.127227,0.636996,0.399023,0.45483,0.95167,0.206854,0.0862,0.599939,0.428019,0.903243,0.131083,0.596474,0.0696333,0.967927,0.626132,0.989787,0.870338,0.737798,0.294688,0.185386,0.704054,0.978759,0.617765,0.24101,0.414509,0.524424,0.357138,0.90454,0.770424,0.403916,0.630227,0.206559,0.915568,0.239035,0.768431,0.712747,0.546548,0.181293,0.31118,0.124234,0.923235,0.855716,0.402182,0.773547,0.351907,0.0467113,0.0397444,0.666496,0.576678,0.216752,0.20247,0.731502,0.292428,0.0716059,0.230125,0.694637,0.957789,0.928829,0.843532,0.517654,0.378763,0.256062,0.575536,0.565062,0.115307,0.472612,0.468709,0.32548,0.769379,0.13277,0.890012,0.606468,0.0684576,0.195224,0.518406,0.989033,0.436128,0.755023,0.245545,0.268135,0.949455,0.54341,0.218457,0.123345,0.448784,0.534884,0.91965,0.923317,0.910764,0.968956,0.889644,0.474791,0.678488,0.861133,0.345402,0.345215,0.299577,0.621197,0.695647,0.766713,0.375425,0.0343617,0.316439,0.83014,0.777413,0.971133,0.431594,0.748334,0.788718,0.397297,0.151041,0.978461,0.24358,0.261614,0.33765,0.33146,0.0213892,0.24194,0.213561,0.551716,0.821821,0.555614,0.791458,0.985077,0.500103,0.0527745,0.734592,0.581146,0.982196,0.709765,0.611372,0.315302,0.0653449,0.300892,0.289341,0.401864,0.231475,0.93962,0.876224,0.618249,0.776824,0.795433,0.529219,0.131778,0.455326,0.70975,0.442476,0.335496,0.46701,0.334081,0.895734,0.168732,0.0601298,0.146604,0.455483,0.595595,0.0246891,0.100897,0.563721,0.759521,0.902591,0.716564,0.965549,0.331798,0.39522,0.781531,0.845232,0.720964,0.994774,0.0174733,0.99048,0.714908,0.204408,0.549284,0.317396,0.389445,0.6589,0.0578018,0.249377,0.109438,0.303267,0.909371,0.355661,0.961652,0.664867,0.0545793,0.0923634,0.624656,0.981268,0.319198,0.976824,0.023746,0.559223,0.99696,0.715016,0.358492,0.420777,0.358848,0.635153,0.107726,0.709949,0.271006,0.25075,0.0265102,0.665922,0.660913,0.332619,0.294817,0.318396,0.387446,0.314947,0.712403,0.569782,0.299225,0.33707,0.0474112,0.311541,0.394827,0.306654,0.0568713,0.365557,0.611594,0.627014,0.0963348,0.92868,0.536852,0.551793,0.650641,0.943258,0.863809,0.464283,0.986112,0.24648,0.323095,0.706416,0.504684,0.863,0.608018,0.456437,0.610653,0.986139,0.926506,0.368915,0.0270618,0.799145,0.972042,0.593234,0.632733,0.236758,0.469184,0.490169,0.320507,0.963045,0.903031,0.624547,0.866639,0.38546,0.426124,0.0906039,0.776381,0.904058,0.650269,0.254867,0.748942,0.946798,0.291444,0.129178,0.0786062,0.401872,0.395569,0.468214,0.553283,0.0740076,0.643622,0.200634,0.113808,0.149448,0.184956,0.133257,0.470149,0.522611,0.60922,0.663154,0.371939,0.912732,0.0417297,0.17895,0.706347,0.0230539,0.325963,0.74986,0.660612,0.46741,0.970115,0.737785,0.447181,0.937267,0.0996702,0.162452,0.95887,0.668269,0.565171,0.292689,0.164144,0.730963,0.0996675,0.499501,0.6633,0.998544,0.20723,0.568057,0.428163,0.197323,0.285403,0.0742533,0.77996,0.951389,0.640608,0.294517,0.17042,0.9498,0.240004,0.92346,0.544787,0.432095,0.736677,0.476742,0.813146,0.578255,0.587193,0.631963,0.0228536,0.781679,0.295657,0.783558,0.793716,0.157785,0.954305,0.58461,0.457884,0.538873,0.639182,0.878031,0.584871,0.377421,0.643806,0.749589,0.588748,0.671341,0.204024,0.185666,0.975032,0.751018,0.227662,0.44119,0.290747,0.257519,0.872997,0.0161801,0.0174546,0.876042,0.182708,0.209076,0.629717,0.874576,0.857097,0.666459,0.41845,0.50446,0.0443087,0.668861,0.258215,0.0699787,0.218846,0.488858,0.61681,0.781675,0.218921,0.889962,0.0986078,0.796441,0.31653,0.574027,0.142994,0.319582,0.0401447,0.910943,0.868286,0.228683,0.201134,0.986248,0.472436,0.409536,0.906112,0.868956,0.459881,0.687131,0.629935,0.119636,0.759603,0.162007,0.555019,0.491808,0.762757,0.302619,0.279158,0.201596,0.0391115,0.813603,0.078384,0.646552,0.0730948,0.620245,0.275575,0.658318,0.559002,0.655551,0.536796,0.456039,0.392697,0.845957,0.298903,0.272283,0.170005,0.736936,0.545521,0.764239,0.49212,0.143349,0.400189,0.0305712,0.452924,0.615314,0.743879,0.364627,0.615609,0.787172,0.914451,0.8627,0.0764829,0.257024,0.267192,0.736687,0.112248,0.426533,0.519648,0.0120996,0.57721,0.317864,0.457883,0.00375897,0.603192,0.498904,0.30461,0.755622,0.488383,0.340389,0.942256,0.300051,0.584438,0.748147,0.662268,0.732046,0.590729,0.244607,0.597776,0.874672,0.226365,0.122533,0.372263,0.399048,0.400142,0.469292,0.504208,0.0679402,0.633071,0.944522,0.855681,0.304814,0.866497,0.292537,0.637187,0.614691,0.325256,0.860818,0.705861,0.264712,0.188225,0.242801,0.475599,0.137999,0.737481,0.666322,0.0166121,0.280255,0.723023,0.095296,|0.646065,0.414446,0.819166,0.0844937,0.0616259,0.575675,0.107571,0.743044,0.532641,0.692623,0.327168,0.751894,0.366631,0.269171,0.734816,0.167476,0.598634,0.0475136,0.030423,0.686577,0.352013,0.254835,0.628665,0.70959,0.853592,0.242135,0.70879,0.661048,0.615704,0.804237,0.547291,0.069712,0.167695,0.878998,0.299804,0.869664,0.0184878,0.823043,0.452867,0.934531,0.800251,0.285956,0.494148,0.143598,0.449833,0.496946,0.934436,0.949463,0.263158,0.73034,0.862985,0.477227,0.334995,0.694659,0.13838,0.279893,0.286109,0.4383,0.229211,0.633322,0.890792,0.291352,0.0943234,0.0992519,0.16126,0.477222,0.400749,0.709739,0.865065,0.749077,0.603,0.964671,0.563853,0.409427,0.589048,0.510242,0.830394,0.0278241,0.418169,0.119481,0.313982,0.0397304,0.809138,0.497552,0.0178298,0.982114,0.213314,0.509569,0.426466,0.885873,0.55315,0.122662,0.108602,0.9467,0.455758,0.949471,0.340084,0.19643,0.202666,0.985799,0.00258726,0.145808,0.693026,0.0795739,0.124624,0.231675,0.89894,0.434055,0.475725,0.426384,0.173389,0.427998,0.489512,0.244573,0.19369,0.481715,0.547031,0.964684,0.616052,0.952468,0.489026,0.0425611,0.905559,0.835789,0.128956,0.994605,0.479056,0.967923,0.409902,0.142061,0.930743,0.704401,0.878848,0.436679,0.603592,0.0418644,0.109636,0.37751,0.241833,0.62511,0.71159,0.189281,0.336614,0.115715,0.0736905,0.289298,0.645251,0.388988,0.892481,0.240363,0.186702,0.526513,0.75233,0.981778,0.89328,0.317574,0.430109,0.725279,0.169698,0.957009,0.163348,0.230415,0.0323952,0.46177,0.42976,0.148331,0.313914,0.228418,0.104175,0.0376427,0.588922,0.61511,0.987199,0.41209,0.0871996,0.367031,0.94271,0.124567,0.529519,0.0358301,0.32425,0.49915,0.155038,0.848485,0.873587,0.761559,0.433949,0.348752,0.533116,0.906493,0.670116,0.256258,0.0949054,0.762632,0.168164,0.309711,0.162715,0.971403,0.890619,0.0835689,0.437384,0.720807,0.282185,0.653908,0.399995,0.410832,0.288577,0.62632,0.903284,0.901365,0.211769,0.28355,0.421387,0.651117,0.863325,0.787119,0.411146,0.279364,0.390538,0.667952,0.838226,0.26183,0.675379,0.793419,0.709654,0.40184,0.735696,0.0909476,0.269432,0.270038,0.379772,0.355315,0.0515386,0.672863,0.076751,0.297428,0.501355,0.931372,0.904623,0.738431,0.265001,0.0872512,0.183412,0.0664936,0.674974,0.482551,0.678831,0.653188,0.00555122,0.368462,0.207899,0.0703502,0.753239,0.976531,0.458819,0.993902,0.864544,0.988469,0.429875,0.713418,0.660842,0.8092,0.362485,0.355744,0.932105,0.227969,0.164956,0.559591,0.503696,0.283081,0.418481,0.0024808,0.294833,0.805777,0.16721,0.891201,0.556159,0.40535,0.532451,0.0420591,0.966144,0.425153,0.493683,0.364363,0.772295,0.551335,0.98587,0.707362,0.976231,0.986419,0.699761,0.950138,0.176058,0.586136,0.585242,0.499871,0.54225,0.333488,0.173191,0.445974,0.384549,0.205199,0.154047,0.443406,0.730651,0.823216,0.273027,0.668729,0.629556,0.306733,0.0291103,0.692678,0.0644385,0.030962,0.0272542,0.560847,0.529983,0.817904,0.661229,0.466541,0.78635,0.378786,0.851028,0.0303978,0.313635,0.24019,0.679909,0.564049,0.811922,0.958931,0.846352,0.0308693,0.810469,0.295928,0.962597,0.598199,0.866995,0.295251,0.939795,0.109017,0.821819,0.348011,0.886613,0.784582,0.927113,0.651509,0.883093,0.648714,0.448585,0.527488,0.32494,0.176099,0.271054,0.907074,0.124795,0.19349,0.906614,0.648775,0.869923,0.126925,0.0127413,0.30504,0.156955,0.908454,0.649707,0.499835,0.299476,0.305871,0.14568,0.216077,0.988634,0.356174,0.302881,0.471505,0.982752,0.963992,0.803473,0.174745,0.472614,0.82373,0.831304,0.134189,0.807436,0.584805,0.350382,0.967229,0.872709,0.777768,0.294339,0.292753,0.288852,0.834947,0.951603,0.532148,0.522472,0.316539,0.374414,0.720762,0.606579,0.71289,0.347168,0.444067,0.650401,0.807166,0.70528,0.8403,0.934471,0.0120307,0.0157072,0.902375,0.605921,0.158448,0.641664,0.221705,0.989357,0.361102,0.813525,0.877128,0.747308,0.959891,0.357675,0.922472,0.691816,0.758442,0.0146439,0.385175,0.859838,0.247357,0.0827323,0.575159,0.29695,0.747884,0.0254469,0.297948,0.467778,0.974464,0.624951,0.0936574,0.521551,0.365547,0.575009,0.560969,0.17658,0.63337,0.38592,0.0485714,0.853829,0.131123,0.14625,0.129003,0.0130562,0.457859,0.995227,0.281878,0.754193,0.813567,0.875352,0.968494,0.476361,0.514035,0.571648,0.0701779,0.0433201,0.403543,0.285642,0.441769,0.426448,0.502775,0.517072,0.298958,0.132495,0.493019,0.773,0.902846,0.604996,0.420941,0.950998,0.710728,0.950318,0.00789911,0.378888,0.43211,0.904628,0.889083,0.534411,0.239006,0.424943,0.939138,0.694135,0.179526,0.179954,0.376402,0.526641,0.0474555,0.0834245,0.589355,0.473314,0.270053,0.883211,0.243135,0.98925,0.917209,0.957364,0.804269,0.589482,0.823445,0.873382,0.0297073,0.343433,0.831531,0.659242,0.542685,0.278278,0.495135,0.547956,0.13444,0.438948,0.643731,0.0551043,0.589644,0.540935,0.359051,0.94814,0.309779,0.991642,0.477145,0.6099,0.926768,0.140467,0.771191,0.66541,0.332933,0.34099,0.573327,0.02713,0.181246,0.773826,0.0148241,0.0342279,0.0925638,0.657249,0.90703,0.73169,0.180522,0.942666,0.79322,0.0108621,0.0574058,0.631169,0.455866,0.767953,0.382645,0.429124,0.268775,0.196492,0.273497,0.32693,0.44128,0.232193,0.978502,0.111697,0.171909,0.661182,0.377623,0.548538,0.402125,0.64015,0.709064,0.278357,0.737101,0.0295773,0.412142,0.0178363,0.00597787,0.138273,0.691143,0.517339,0.618574,0.674197,0.779207,0.518496,0.173644,0.632492,0.985546,0.364165,0.73293,0.688184,0.991345,0.349698,0.497032,0.213584,0.304842,0.0189278,0.786791,0.549188,0.0221055,0.934449,0.119857,0.647295,0.0131249,0.226033,0.622494,0.850967,0.406945,0.72976,0.940763,0.488344,0.120086,0.185075,0.488024,0.200686,0.284313,0.175342,0.129975,0.485206,0.86242,0.0107884,0.858884,0.877591,0.675765,0.465799,0.188858,0.537626,0.0764889,0.513045,0.743719,0.00127286,0.327043,0.460353,0.185924,0.0891016,0.829203,0.489905,0.328537,0.84831,0.261717,0.880671,0.763202,0.243767,0.342413,0.149067,0.20152,0.759791,0.279643,0.845355,0.1126,0.981504,0.846481,0.581012,0.203507,0.899605,0.714278,0.143385,0.849065,0.598768,0.159179,0.163421,0.0302772,0.778276,0.998763,0.726161,0.806453,0.762429,0.308729,0.474618,0.744106,0.978369,0.891632,0.817748,0.975848,0.223053,0.342139,0.799622,0.196622,0.780432,0.0743896,0.183802,0.775796,0.562102,0.798392,0.42235,0.328242,0.549103,0.906492,0.296211,0.417139,0.86074,0.654923,0.135351,0.14692,0.612773,0.949598,0.207492,0.893887,0.0773432,0.063764,0.466835,0.379073,0.160813,0.94395,0.612799,0.0310783,0.9279,0.0996616,0.615474,0.49658,0.069,0.305081,0.788013,0.994376,0.680298,0.99351,0.354722,0.00433689,0.966884,0.896052,0.0621368,0.069016,0.85324,0.661214,0.765978,0.574733,0.739936,0.0256845,0.707016,0.398101,0.305363,0.0944244,0.447464,0.681072,0.99452,0.720291,0.789368,0.692586,0.358019,0.861382,0.372556,0.31728,0.820875,0.217635,0.328747,0.700158,0.737049,0.207304,0.0477942,0.122646,0.932964,0.709178,0.192897,0.547728,0.163385,0.75225,0.733296,0.104886,0.706094,0.129831,0.910215,0.165192,0.383152,0.910006,0.209493,0.0641337,0.632257,0.803145,0.159097,0.785471,0.619411,0.405976,0.00657779,0.308582,0.361638,0.0869235,0.477676,0.822572,0.404906,0.905349,0.685208,0.0550323,0.67638,0.861941,0.71963,0.611366,0.309507,0.245967,0.684678,0.603252,0.877897,0.584168,0.726041,0.817345,0.276582,0.158266,0.194995,0.334507,0.938628,0.957487,0.744674,0.3628,0.600067,0.394534,0.796479,0.0725522,0.11851,0.315932,0.286551,0.918931,0.21595,0.628474,0.175089,0.305489,0.548652,0.496172,0.191776,0.470433,0.260745,0.978468,0.000175416,0.91986,0.633978,0.614914,0.0865741,0.146673,0.915804,0.65497,0.00619668,0.766338,0.711757,0.407719,0.8308,0.744607,0.730874,0.294617,0.688292,0.106363,0.466184,0.967901,0.571307,0.115079,0.791789,0.681822,0.342822,0.831023,0.85317,0.967311,0.378789,0.972222,0.205347,0.811642,0.587207,0.284189,0.632501,0.522473,0.220413,0.421375,0.106258,0.252422,0.178999,0.507069,0.170571,0.0216291,0.787574,0.646251,0.141486,0.059647,0.431544,0.934412,0.322728,0.8159,0.0660505,0.976821,0.430717,0.308731,0.505854,0.872647,0.911711,0.498662,0.0573868,0.926573,0.693138,0.16432,0.629303,0.810164,0.506265,0.325861,0.402277,0.617752,0.912892,0.761202,0.785591,0.77856,0.73849,0.516203,0.121419,0.200714,0.44726,0.816036,0.403353,0.244837,0.885958,0.178801,0.890167,0.038038,0.1397,0.81734,0.111304,0.382794,0.83026,0.993791,0.371761,0.231175,0.830727,0.929279,0.963216,0.157188,0.810702,0.0347877,0.286809,0.866773,0.482498,0.676554,0.580634,0.757088,0.920892,0.135528,0.206901,0.716553,0.636625,0.461767,0.356096,0.604511,0.521536,0.128331,0.729785,0.509458,0.0259852,0.117076,0.950902,0.626646,0.950963,0.725837,0.208013,0.848673,0.788989,0.279234,0.833687,0.906447,0.35186,0.0314103,0.713712,0.980251,0.977626,0.706172,0.0330322,0.310542,0.172904,0.0278537,0.943643,0.675988,0.872539,0.787103,0.0362275,0.214125,0.840536,0.433803,0.0694753,0.92378,0.68748,0.385427,0.986022,0.868545,0.22441,0.854512,0.982217,0.197833,0.59454,0.47622,0.996188,0.260687,0.956743,0.702087,0.395715,0.586479,0.310428,0.396495,0.0533035,0.956725,0.415968,0.548149,0.291569,0.535291,0.844803,0.508315,0.35142,0.207156,0.134977,0.364162,0.988845,0.49496,0.589764,0.355569,|0.973644,0.79553,0.599046,0.280691,0.0531839,0.797178,0.613372,0.189454,0.0843798,0.833495,0.164319,0.440311,0.922253,0.358811,0.488634,0.0678036,0.0332707,0.872949,0.0390058,0.811818,0.279202,0.640582,0.968057,0.802203,0.665442,0.649972,0.0523757,0.673026,0.138921,0.100188,0.880066,0.217172,0.707229,0.515523,0.114767,0.63368,0.231479,0.691567,0.772447,0.890918,0.164929,0.627732,0.351459,0.802631,0.883623,0.768379,0.465,0.13974,0.790048,0.872723,0.870631,0.696975,0.101184,0.770313,0.755103,0.488692,0.0183342,0.0464143,0.246003,0.867414,0.424799,0.286209,0.179669,0.843383,0.556829,0.299633,0.0204483,0.466062,0.032511,0.970776,0.170004,0.638567,0.696348,0.190355,0.370921,0.26029,0.635137,0.998098,0.160301,0.529507,0.305302,0.917073,0.729928,0.554979,0.775529,0.847991,0.741473,0.880754,0.596756,0.892444,0.72141,0.0585915,0.153669,0.647527,0.532541,0.939268,0.288412,0.612119,0.404128,0.620063,0.855255,0.54109,0.666424,0.73197,0.899328,0.760395,0.143278,0.652162,0.850015,0.697952,0.633037,0.37111,0.893093,0.317817,0.40523,0.784932,0.953866,0.491355,0.981175,0.597292,0.323489,0.327645,0.144864,0.438261,0.810944,0.129909,0.496863,0.54255,0.464852,0.491396,0.236129,0.0207266,0.622341,0.538037,0.511016,0.775296,0.0217226,0.344631,0.376275,0.641338,0.0783893,0.671829,0.366001,0.967092,0.277091,0.995983,0.454742,0.908853,0.0263975,0.968661,0.547672,0.163152,0.814412,0.407604,0.669292,0.551739,0.52623,0.102287,0.0205286,0.399313,0.618799,0.83235,0.273685,0.21422,0.417065,0.551926,0.541138,0.491419,0.403017,0.882377,0.152973,0.6885,0.647514,0.965572,0.675574,0.358259,0.165997,0.447409,0.134762,0.178746,0.792995,0.875718,0.638794,0.446935,0.0999552,0.682362,0.200493,0.899148,0.972348,0.521507,0.929293,0.229861,0.935393,0.573701,0.851122,0.456565,0.932304,0.878119,0.889394,0.478539,0.209447,0.651862,0.171532,0.305619,0.501956,0.183147,0.0801674,0.723364,0.890791,0.784717,0.125847,0.899544,0.376052,0.213342,0.498284,0.842724,0.828656,0.638599,0.119782,0.8575,0.292979,0.0439323,0.406776,0.796618,0.00990897,0.107503,0.221126,0.53928,0.170139,0.870566,0.758062,0.293061,0.734239,0.61049,0.441364,0.077766,0.108336,0.565156,0.408841,0.0989628,0.0341068,0.0129735,0.808864,0.681272,0.0329591,0.609544,0.825081,0.382613,0.500188,0.918925,0.730252,0.642218,0.0804017,0.280993,0.859861,0.757611,0.443562,0.0307752,0.456339,0.319989,0.51927,0.802974,0.538593,0.723446,0.841855,0.788818,0.896076,0.965906,0.382694,0.141787,0.390488,0.293864,0.735906,0.739522,0.709914,0.793611,0.345279,0.890456,0.703502,0.890871,0.99649,0.420763,0.204622,0.124238,0.976457,0.262599,0.0468359,0.793735,0.0685499,0.382455,0.0919781,0.451914,0.185091,0.0246317,0.0956461,0.295089,0.0908868,0.548937,0.462868,0.322495,0.399373,0.815267,0.0242956,0.259425,0.989238,0.703554,0.606082,0.38016,0.0815904,0.321895,0.361198,0.754866,0.367321,0.0949135,0.0769386,0.44443,0.128892,0.936179,0.483837,0.97092,0.577248,0.226577,0.744812,0.570713,0.670255,0.290181,0.832325,0.0191222,0.363557,0.717012,0.983475,0.648148,0.48254,0.636645,0.759467,0.0517427,0.976896,0.310625,0.573969,0.83777,0.00735599,0.0157566,0.165858,0.939828,0.153975,0.815714,0.474399,0.182109,0.164798,0.69578,0.702674,0.553698,0.0700406,0.78166,0.969819,0.547054,0.213779,0.466339,0.903038,0.253767,0.722863,0.155139,0.377934,0.320759,0.0414652,0.424685,0.764078,0.776768,0.948712,0.171861,0.593101,0.663223,0.956425,0.189943,0.428594,0.7709,0.262764,0.395507,0.138346,0.0281452,0.454999,0.486382,0.393893,0.0987513,0.123639,0.161235,0.796637,0.573131,0.329296,0.680905,0.00532514,0.370775,0.557404,0.155776,0.74556,0.75158,0.642008,0.361662,0.709466,0.170656,0.221228,0.603005,0.36046,0.659941,0.144867,0.00711149,0.166213,0.324595,0.372333,0.0874475,0.155773,0.182927,0.35244,0.0584461,0.695,0.10231,0.31887,0.878995,0.836519,0.883335,0.128797,0.693434,0.480261,0.241899,0.913616,0.361862,0.742605,0.310604,0.363443,0.535257,0.893626,0.254951,0.205698,0.63192,0.0370753,0.289783,0.940032,0.0699064,0.236212,0.343123,0.270138,0.482795,0.602093,0.91032,0.751989,0.383884,0.521932,0.12168,0.75109,0.596287,0.667737,0.121535,0.0496885,0.305062,0.65662,0.135394,0.456004,0.688284,0.980616,0.399617,0.478195,0.894389,0.220904,0.226359,0.858409,0.14782,0.906692,0.553269,0.0803387,0.228279,0.779041,0.240445,0.423485,0.628023,0.793358,0.0825751,0.143886,0.220057,0.736263,0.988351,0.055652,0.854037,0.820161,0.266182,0.851581,0.858922,0.100389,0.147197,0.501094,0.181894,0.458452,0.241959,0.534717,0.0554186,0.526298,0.63002,0.926716,0.157075,0.814809,0.653405,0.77316,0.648819,0.96705,0.486289,0.83262,0.734223,0.590475,0.651681,0.708239,0.393481,0.933692,0.503849,0.769298,0.375653,0.987793,0.735766,0.162498,0.46921,0.599754,0.511431,0.635884,0.969188,0.865754,0.00570393,0.134104,0.283798,0.414599,0.796541,0.236255,0.0480254,0.640768,0.367652,0.393792,0.690573,0.936625,0.0148973,0.611577,0.661244,0.810298,0.164662,0.144518,0.11536,0.487716,0.0622634,0.428267,0.947279,0.822989,0.952587,0.635397,0.288308,0.944623,0.315557,0.353203,0.558735,0.607139,0.58955,0.479656,0.711438,0.884737,0.985854,0.50625,0.145577,0.925821,0.72859,0.587906,0.475856,0.0455346,0.393475,0.901819,0.967111,0.760647,0.905007,0.736117,0.606954,0.790954,0.506865,0.774989,0.405812,0.718666,0.476753,0.379983,0.015251,0.379614,0.788212,0.107583,0.168064,0.364443,0.667785,0.355441,0.139692,0.926393,0.275137,0.0308251,0.466287,0.28841,0.773088,0.531302,0.86776,0.0788614,0.309734,0.00805068,0.673181,0.30824,0.410911,0.790818,0.394099,0.789948,0.621995,0.856249,0.816019,0.593721,0.178592,0.367561,0.597657,0.974993,0.504158,0.907681,0.0690309,0.0146581,0.845836,0.931785,0.305925,0.229034,0.544735,0.766791,0.677395,0.0997836,0.20084,0.38583,0.212476,0.720673,0.420374,0.380164,0.52063,0.309429,0.909726,0.562428,0.131611,0.85959,0.873046,0.69897,0.754542,0.847106,0.219953,0.852364,0.472788,0.173209,0.895812,0.878175,0.0685602,0.671316,0.347984,0.98076,0.107872,0.966693,0.505523,0.664245,0.716228,0.673734,0.637431,0.0238112,0.406434,0.644381,0.89696,0.244385,0.765674,0.844191,0.863347,0.944064,0.0954184,0.901246,0.00715655,0.69716,0.717215,0.716695,0.537676,0.506904,0.188846,0.0360347,0.785277,0.610062,0.11097,0.543684,0.666331,0.45483,0.328295,0.184311,0.856861,0.159554,0.503601,0.457608,0.00974739,0.566089,0.0829933,0.0920394,0.484534,0.671954,0.61543,0.276494,0.745634,0.7613,0.601159,0.294881,0.338298,0.0537087,0.519685,0.590317,0.173385,0.628279,0.228263,0.576818,0.334224,0.391347,0.58389,0.26229,0.152586,0.583557,0.502764,0.0529761,0.332303,0.166495,0.0128947,0.49658,0.976244,0.60012,0.921355,0.988689,0.6495,0.976854,0.000317514,0.598036,0.99213,0.91801,0.86605,0.40799,0.694161,0.0388869,0.647695,0.0980762,0.806374,0.485332,0.8503,0.739594,0.85701,0.171402,0.111022,0.545866,0.552457,0.728413,0.134777,0.879086,0.35065,0.721915,0.51209,0.647179,0.503048,0.299681,0.709757,0.207874,0.790022,0.231327,0.0883759,0.315112,0.0326167,0.405954,0.107713,0.883764,0.743961,0.188067,0.551907,0.827463,0.687858,0.340545,0.531888,0.286398,0.130009,0.134977,0.326782,0.699293,0.121429,0.649233,0.921238,0.592615,0.845437,0.900982,0.534595,0.386941,0.239549,0.237359,0.796024,0.0494513,0.615199,0.816445,0.660576,0.755919,0.598104,0.884152,0.865321,0.103619,0.359832,0.166078,0.435701,0.247897,0.777234,0.318799,0.120688,0.140093,0.843888,0.84394,0.0565825,0.385896,0.34406,0.374199,0.415664,0.0428966,0.107794,0.655103,0.679389,0.728295,0.875649,0.763804,0.0834716,0.730433,0.180985,0.00708878,0.0763711,0.430141,0.173273,0.917649,0.170492,0.867254,0.285591,0.563196,0.638226,0.277016,0.21114,0.0146729,0.804237,0.611726,0.472315,0.164553,0.256473,0.519851,0.922381,0.0773129,0.955139,0.979166,0.256554,0.412888,0.696035,0.369351,0.206982,0.625117,0.899629,0.577235,0.0377494,0.272189,0.176307,0.126825,0.0115353,0.211537,0.78016,0.642547,0.634612,0.69909,0.229619,0.807741,0.558918,0.991065,0.362357,0.455256,0.466731,0.430872,0.517856,0.387521,0.0523669,0.765072,0.599957,0.900183,0.403237,0.423146,0.962301,0.889059,0.435935,0.258484,0.685465,0.832946,0.824131,0.526237,0.266416,0.83117,0.79178,0.23247,0.806781,0.103968,0.169382,0.520558,0.0692333,0.370351,0.63795,0.356069,0.0591089,0.916709,0.194173,0.430195,0.478435,0.897346,0.0910783,0.953682,0.0742388,0.404112,0.195293,0.430901,0.726867,0.20676,0.365156,0.538861,0.824185,0.411439,0.667487,0.657288,0.33586,0.957991,0.680574,0.548356,0.863319,0.351033,0.802668,0.164481,0.945735,0.242954,0.100217,0.767665,0.608684,0.19276,0.78244,0.90533,0.0466489,0.114861,0.712804,0.965526,0.766686,0.0563914,0.990568,0.384521,0.142854,0.21497,0.625821,0.575439,0.10636,0.585201,0.440902,0.36609,0.0515682,0.161022,0.567973,0.497971,0.501504,0.214002,0.826635,0.350421,0.00986767,0.0727478,0.692891,0.9457,0.667218,0.301106,0.849139,0.022373,0.833314,0.716078,0.511568,0.686583,0.345568,0.313342,0.45437,0.875706,0.108416,0.873114,0.746746,0.247798,0.107147,0.045655,0.712767,0.303903,0.214474,0.855576,0.223913,0.0325145,0.916806,0.419103,0.51776,0.34049,0.206358,0.72666,0.186028,0.337026,0.812218,0.641661,0.390876,|0.234525,0.239783,0.296195,0.751724,0.640051,0.598651,0.49808,0.402067,0.674482,0.917264,0.28634,0.351104,0.311961,0.89684,0.20238,0.238506,0.973259,0.646389,0.581,0.821028,0.593784,0.604337,0.41442,0.955337,0.638457,0.238467,0.936481,0.741927,0.51432,0.935242,0.719339,0.176445,0.891191,0.703521,0.708985,0.0759913,0.362626,0.749811,0.118528,0.130619,0.636073,0.697594,0.840591,0.0425338,0.788691,0.496924,0.833951,0.107864,0.925989,0.159253,0.435651,0.32681,0.285939,0.0119821,0.9214,0.927244,0.317466,0.769939,0.32403,0.638745,0.671649,0.176326,0.672161,0.746989,0.326452,0.468412,0.385884,0.652659,0.890654,0.866605,0.674881,0.51796,0.878564,0.224793,0.647716,0.786099,0.481245,0.0111799,0.420389,0.172,0.379898,0.670967,0.00486034,0.22312,0.876331,0.264399,0.0146304,0.925046,0.613507,0.226015,0.0610454,0.0270931,0.494151,0.84505,0.214256,0.232649,0.361684,0.150637,0.222025,0.860611,0.172087,0.899509,0.793557,0.376655,0.650966,0.796752,0.0548031,0.602702,0.910291,0.629409,0.300878,0.796863,0.531324,0.917313,0.858134,0.41538,0.143372,0.440623,0.00125426,0.993496,0.994173,0.315124,0.859905,0.735634,0.259737,0.853148,0.994662,0.355306,0.892263,0.0967453,0.098352,0.491451,0.569091,0.675439,0.0155809,0.696004,0.937471,0.458922,0.523772,0.300633,0.973083,0.150646,0.482117,0.978438,0.447002,0.101157,0.465856,0.385075,0.591352,0.283348,0.915855,0.072212,0.187285,0.506109,0.506799,0.209099,0.723585,0.718432,0.17609,0.314485,0.617718,0.53682,0.653085,0.18916,0.59815,0.870954,0.7425,0.694256,0.611835,0.105034,0.900559,0.547134,0.309253,0.388216,0.936887,0.169066,0.847131,0.735371,0.990937,0.35984,0.195278,0.797264,0.730303,0.205204,0.616157,0.142752,0.973868,0.141505,0.0895311,0.833672,0.529469,0.544462,0.870553,0.257748,0.118728,0.266523,0.391632,0.239909,0.808535,0.600412,0.0633529,0.865352,0.496625,0.201101,0.303039,0.239496,0.734134,0.299586,0.758857,0.191212,0.143117,0.0106615,0.992526,0.101942,0.311066,0.880098,0.0409506,0.21586,0.0180841,0.766209,0.938228,0.0679224,0.121692,0.460709,0.176637,0.399005,0.993538,0.347975,0.801268,0.895373,0.209615,0.832309,0.0494843,0.581762,0.507549,0.543854,0.958611,0.651032,0.87987,0.575887,0.117066,0.243417,0.620314,0.460367,0.837871,0.673417,0.379228,0.283281,0.260203,0.64805,0.409855,0.709096,0.153555,0.610818,0.610965,0.350196,0.232096,0.904744,0.982044,0.122152,0.417536,0.311746,0.977336,0.772569,0.879007,0.398769,0.274718,0.0515128,0.771665,0.380062,0.830611,0.769571,0.830691,0.334429,0.0185201,0.331875,0.679534,0.661715,0.539911,0.322238,0.381391,0.654696,0.0112486,0.68016,0.545762,0.218054,0.456697,0.491436,0.987074,0.56829,0.0368628,0.255309,0.633819,0.581381,0.303791,0.930797,0.580383,0.704051,0.497708,0.6306,0.265611,0.093805,0.725753,0.716688,0.520001,0.5046,0.460223,0.521983,0.693325,0.276144,0.871458,0.0299761,0.635705,0.966806,0.824445,0.0419143,0.283211,0.133612,0.425513,0.409377,0.370387,0.0614225,0.497784,0.682832,0.245489,0.753833,0.20361,0.000914693,0.5109,0.0155017,0.973579,0.367144,0.835613,0.586145,0.35261,0.796515,0.16659,0.129843,0.528874,0.0517962,0.378038,0.794123,0.899185,0.528532,0.488359,0.31991,0.549784,0.938815,0.315479,0.455593,0.117569,0.0206221,0.264205,0.675696,0.896357,0.666853,0.859418,0.139205,0.597727,0.879733,0.554917,0.755492,0.473584,0.723407,0.499075,0.965144,0.256725,0.790707,0.388194,0.394121,0.097088,0.848888,0.548896,0.769857,0.190929,0.0901349,0.289325,0.383967,0.830444,0.530139,0.434836,0.444043,0.0794692,0.291831,0.613391,0.51181,0.801488,0.194059,0.621338,0.292892,0.214996,0.863509,0.242954,0.300758,0.362623,0.352389,0.280866,0.602038,0.921966,0.803424,0.18729,0.622659,0.101379,0.437634,0.267179,0.263639,0.125952,0.0397705,0.101926,0.356486,0.444116,0.772151,0.881593,0.293419,0.8919,0.0968777,0.995651,0.545663,0.319608,0.387712,0.677952,0.398907,0.690627,0.146875,0.723966,0.580237,0.238613,0.943653,0.660086,0.869735,0.734204,0.686855,0.21389,0.390747,0.914478,0.96757,0.698391,0.914769,0.0463606,0.0146758,0.0197632,0.617943,0.685655,0.443167,0.464033,0.938558,0.544934,0.650152,0.187702,0.730365,0.180857,0.07941,0.940021,0.667974,0.0124173,0.0999624,0.199672,0.00723648,0.231234,0.15987,0.511564,0.674329,0.315249,0.167068,0.880288,0.952281,0.953908,0.464398,0.603528,0.206148,0.360632,0.941576,0.843142,0.732448,0.196485,0.388358,0.897363,0.184604,0.4162,0.649276,0.620656,0.312854,0.464529,0.726942,0.770141,0.475775,0.235881,0.200774,0.192988,0.75924,0.436562,0.756404,0.439389,0.923845,0.238964,0.549612,0.822176,0.844312,0.774256,0.880121,0.267294,0.493536,0.773677,0.448635,0.991832,0.529514,0.921365,0.776388,0.849215,0.693514,0.837684,0.0989251,0.162287,0.368618,0.990718,0.488792,0.0142574,0.26363,0.523747,0.85765,0.827345,0.203369,0.0184374,0.127489,0.630982,0.909002,0.400582,0.652431,0.745338,0.382408,0.236678,0.232407,0.406746,0.110779,0.558027,0.562929,0.987262,0.515739,0.985829,0.567245,0.695364,0.233393,0.197969,0.254492,0.07895,0.687195,0.247028,0.314982,0.180592,0.464974,0.880592,0.161053,0.09119,0.719755,0.878184,0.934248,0.0675259,0.946155,0.999292,0.623474,0.0571652,0.933334,0.563577,0.93754,0.0282173,0.401997,0.142891,0.310707,0.984677,0.520139,0.757336,0.557577,0.334513,0.335502,0.0824714,0.843713,0.374436,0.410812,0.840801,0.530107,0.354334,0.105377,0.246917,0.170426,0.895102,0.976943,0.424968,0.579538,0.533656,0.977734,0.279802,0.219272,0.499156,0.638908,0.936263,0.368799,0.883045,0.40648,0.136374,0.336874,0.583076,0.172671,0.662673,0.557371,0.702978,0.121749,0.823318,0.770117,0.0490626,0.254316,0.615913,0.871909,0.864343,0.81175,0.4441,0.0147808,0.962368,0.764562,0.530364,0.494792,0.0653446,0.359124,0.478471,0.954794,0.431071,0.623731,0.267937,0.55603,0.505994,0.846472,0.576247,0.655298,0.704194,0.640174,0.584191,0.730524,0.711648,0.625615,0.956752,0.155665,0.0374535,0.639887,0.680861,0.768665,0.0635133,0.883946,0.972625,0.0207982,0.0710295,0.822839,0.0923919,0.0194269,0.409835,0.325515,0.725014,0.495848,0.693459,0.900684,0.564953,0.311262,0.0339646,0.485128,0.768691,0.486102,0.58092,0.973717,0.535147,0.93169,0.391883,0.292908,0.283551,0.120086,0.469456,0.454893,0.0697539,0.991026,0.382523,0.549155,0.689445,0.213876,0.4148,0.730005,0.455906,0.722916,0.0217986,0.314107,0.254068,0.729814,0.848903,0.830422,0.420228,0.746179,0.148626,0.483796,0.876907,0.375226,0.189916,0.758789,0.415391,0.00107753,0.292065,0.471322,0.352787,0.976542,0.858308,0.927036,0.248622,0.538427,0.0999449,0.319702,0.597528,0.717276,0.202268,0.514012,0.299965,0.452976,0.555139,0.726272,0.53815,0.598064,0.232641,0.229937,0.405663,0.465824,0.496442,0.467785,0.157738,0.955867,0.0946959,0.315408,0.691842,0.691754,0.808016,0.465552,0.592897,0.152484,0.333811,0.807536,0.858121,0.938441,0.111667,0.51,0.100837,0.383013,0.654847,0.55759,0.0823359,0.152553,0.433141,0.767159,0.528208,0.397076,0.289011,0.687331,0.225473,0.341021,0.0191232,0.0379053,0.989388,0.428216,0.0937726,0.0222842,0.713104,0.682855,0.439057,0.618251,0.912123,0.0544882,0.454236,0.105332,0.464166,0.860297,0.489073,0.607457,0.0633239,0.783432,0.40952,0.549127,0.868217,0.278122,0.325126,0.412481,0.514562,0.731509,0.776803,0.951605,0.472387,0.0742545,0.44351,0.936845,0.748562,0.794152,0.789745,0.671222,0.19596,0.476415,0.616406,0.689523,0.388515,0.0582051,0.961197,0.150455,0.390824,0.93516,0.502417,0.32809,0.626677,0.455245,0.898075,0.818224,0.441497,0.532368,0.697566,0.0114673,0.270187,0.649469,0.514884,0.774428,0.558398,0.55332,0.509416,0.74763,0.975915,0.892817,0.0330285,0.182511,0.685363,0.345955,0.720119,0.978807,0.649751,0.803152,0.709444,0.835974,0.700253,0.311451,0.779376,0.82373,0.344719,0.567467,0.15036,0.823477,0.98387,0.44423,0.350444,0.558274,0.257442,0.510195,0.455004,0.793912,0.0313412,0.106123,0.640747,0.425527,0.556846,0.831321,0.930974,0.932649,0.812071,0.322455,0.355229,0.628565,0.835679,0.109346,0.582093,0.311236,0.98569,0.915144,0.537345,0.443132,0.586077,0.304976,0.858503,0.210031,0.497179,0.511071,0.455672,0.890926,0.0142574,0.891193,0.146755,0.689632,0.717747,0.806658,0.239872,0.472483,0.411726,0.0691547,0.0418721,0.476648,0.0822578,0.480224,0.288365,0.87062,0.847464,0.936456,0.234882,0.668138,0.650665,0.876731,0.589643,0.724712,0.307919,0.827638,0.690062,0.635393,0.248758,0.815402,0.758748,0.107992,0.684816,0.869294,0.765425,0.645271,0.0563316,0.469893,0.62577,0.509077,0.848971,0.953616,0.602217,0.421294,0.0683649,0.870269,0.80988,0.829221,0.0678829,0.128032,0.818494,0.825488,0.248501,0.396991,0.148832,0.181714,0.879411,0.368494,0.749073,0.366607,0.0537631,0.223711,0.977379,0.214693,0.422073,0.168838,0.556383,0.343584,0.352609,0.935117,0.379619,0.304089,0.35956,0.114756,0.96362,0.511608,0.396624,0.301534,0.562499,0.0338767,0.594017,0.0271968,0.709317,0.574035,0.942643,0.142954,0.441546,0.82935,0.724847,0.909933,0.624849,0.862151,0.519333,0.845195,0.769199,0.318589,0.309354,0.571164,0.399056,0.750633,0.587491,0.441154,0.732248,0.669984,0.113357,0.94339,0.552278,0.584912,0.171499,0.32704,0.419751,0.475611,0.684438,0.739061,0.0598269,0.434183,0.474623,0.229229,0.161719,0.648737,0.628199,0.572737,|0.767425,0.236418,0.508679,0.769787,0.0683424,0.149883,0.855737,0.890365,0.452267,0.169116,0.00979108,0.223232,0.749122,0.882512,0.245367,0.813691,0.0281489,0.80507,0.0504901,0.454348,0.693311,0.684999,0.480768,0.737051,0.399687,0.939021,0.717752,0.387965,0.159598,0.699725,0.84235,0.334136,0.481408,0.501111,0.39265,0.959293,0.32143,0.812567,0.875801,0.698687,0.446354,0.551385,0.101374,0.466068,0.98357,0.163704,0.203965,0.918321,0.806729,0.75836,0.0798199,0.679543,0.539874,0.188902,0.0827658,0.587254,0.548705,0.619867,0.801582,0.544299,0.872269,0.90511,0.943583,0.268651,0.850643,0.0214725,0.330925,0.400025,0.446623,0.545927,0.267866,0.501041,0.897189,0.843202,0.782971,0.297109,0.826778,0.103549,0.329301,0.54669,0.739305,0.358033,0.648187,0.563939,0.903277,0.0298848,0.114506,0.11167,0.573893,0.6228,0.857636,0.588951,0.266457,0.495369,0.91968,0.68804,0.915409,0.843699,0.410424,0.328045,0.237465,0.0398241,0.615318,0.153204,0.886297,0.257196,0.303715,0.584958,0.753423,0.468423,0.0279314,0.413508,0.279044,0.968857,0.106257,0.885902,0.37102,0.566838,0.975182,0.681363,0.137186,0.71721,0.0878908,0.13138,0.373242,0.214815,0.0233662,0.780957,0.135157,0.567548,0.759693,0.184894,0.483588,0.914051,0.708898,0.84283,0.0714526,0.33253,0.827602,0.451982,0.949546,0.187303,0.435575,0.620236,0.105978,0.816817,0.92882,0.649218,0.77106,0.257923,0.504835,0.530407,0.957792,0.0621787,0.141838,0.840939,0.375712,0.806621,0.967868,0.793024,0.361589,0.208668,0.196705,0.93849,0.929961,0.952041,0.674328,0.676663,0.0862583,0.769212,0.467932,0.201994,0.658883,0.0961831,0.0916372,0.436888,0.166344,0.488643,0.248912,0.442715,0.767677,0.0710532,0.384856,0.973941,0.410998,0.0470684,0.90486,0.795575,0.194821,0.739995,0.179053,0.888292,0.470446,0.837598,0.487105,0.071785,0.867234,0.77818,0.455988,0.913705,0.445747,0.634809,0.557684,0.0832112,0.584441,0.550511,0.745836,0.652558,0.637018,0.927022,0.149893,0.334225,0.644056,0.943866,0.229851,0.463548,0.165218,0.226062,0.525951,0.21119,0.0454845,0.0334919,0.2764,0.391694,0.387956,0.146163,0.705278,0.883749,0.021246,0.146041,0.145039,0.453843,0.584626,0.437036,0.414285,0.776289,0.452441,0.762244,0.0598977,0.44581,0.100896,0.610832,0.935849,0.18869,0.461773,0.0917851,0.944524,0.55422,0.966202,0.424698,0.887135,0.405052,0.982905,0.937665,0.0132951,0.643739,0.430199,0.778167,0.0647085,0.929738,0.654346,0.789771,0.431995,0.166404,0.637708,0.0184755,0.280823,0.31366,0.0421165,0.0940238,0.749431,0.242645,0.828465,0.807595,0.648929,0.660085,0.797692,0.581025,0.447721,0.906713,0.730723,0.429555,0.317437,0.686824,0.370442,0.229167,0.671886,0.111503,0.067234,0.844981,0.599499,0.306281,0.407339,0.290425,0.867529,0.481475,0.748817,0.771078,0.252307,0.873301,0.641928,0.361816,0.180322,0.823773,0.769423,0.420371,0.0325065,0.955104,0.146548,0.0750834,0.718386,0.180854,0.594417,0.393483,0.118028,0.158067,0.662475,0.81777,0.252605,0.685045,0.594103,0.0281961,0.3234,0.54296,0.178033,0.654802,0.311511,0.47735,0.0667304,0.398129,0.219307,0.428443,0.199714,0.122488,0.328556,0.558288,0.353987,0.00806135,0.356203,0.869276,0.37675,0.872475,0.524513,0.200407,0.793811,0.644064,0.957769,0.257408,0.243719,0.773076,0.69061,0.931439,0.696385,0.642366,0.834061,0.731082,0.994407,0.123686,0.705171,0.235236,0.706042,0.278629,0.741498,0.548008,0.681818,0.814851,0.199808,0.515341,0.660601,0.899602,0.863847,0.29039,0.738696,0.534163,0.710477,0.0298473,0.84715,0.108816,0.205335,0.97336,0.582067,0.173362,0.645255,0.092173,0.127122,0.933534,0.588975,0.841242,0.034831,0.220417,0.569534,0.140552,0.915322,0.448082,0.167554,0.462222,0.117131,0.0895501,0.887794,0.19804,0.584884,0.202805,0.681652,0.991594,0.54355,0.987484,0.0363049,0.558342,0.46202,0.972163,0.601605,0.522358,0.844228,0.0946575,0.690138,0.926881,0.286822,0.855045,0.707408,0.29164,0.63382,0.0270513,0.68789,0.489656,0.537896,0.248938,0.861808,0.248375,0.724511,0.005988,0.33927,0.930318,0.254205,0.840986,0.622459,0.867059,0.565449,0.41419,0.621636,0.152958,0.0148472,0.295724,0.152447,0.577602,0.755317,0.152373,0.408437,0.660793,0.234032,0.780681,0.663005,0.63424,0.4674,0.956667,0.526111,0.586202,0.76021,0.661369,0.775569,0.124332,0.516652,0.150858,0.698025,0.676934,0.885987,0.255332,0.485038,0.348994,0.815879,0.999699,0.631583,0.494688,0.225863,0.5651,0.911686,0.176882,0.584176,0.95827,0.800526,0.861479,0.855628,0.826562,0.172025,0.258789,0.0484176,0.973825,0.229423,0.146078,0.406862,0.45567,0.187999,0.897427,0.283868,0.0188724,0.799726,0.14438,0.822504,0.691313,0.934941,0.294102,0.696793,0.516962,0.179608,0.880686,0.271233,0.385952,0.649045,0.817761,0.473551,0.328157,0.851536,0.50553,0.181153,0.909614,0.513248,0.998944,0.505119,0.548288,0.785081,0.203717,0.173066,0.830108,0.627045,0.0398644,0.182909,0.055935,0.391225,0.471987,0.965141,0.198822,0.109952,0.950451,0.730141,0.314903,0.0237496,0.840797,0.664221,0.885193,0.218934,0.107514,0.0261227,0.962432,0.0415698,0.22681,0.2682,0.960809,0.637468,0.148257,0.467822,0.652455,0.155481,0.34316,0.580314,0.592932,0.516868,0.671266,0.407481,0.594094,0.535392,0.273459,0.141818,0.458934,0.846904,0.139862,0.75455,0.724793,0.567779,0.693334,0.520219,0.76617,0.296283,0.40397,0.148982,0.381097,0.262633,0.0977709,0.175525,0.42178,0.267586,0.303214,0.221867,0.407605,0.11894,0.875859,0.587918,0.696852,0.884111,0.58718,0.249803,0.380737,0.20459,0.682747,0.217512,0.493229,0.765844,0.219315,0.137138,0.0996828,0.155403,0.407519,0.281654,0.850712,0.0257309,0.736883,0.823225,0.491211,0.638367,0.934075,0.993058,0.314627,0.455617,0.673127,0.486581,0.578013,0.447547,0.659188,0.679224,0.854665,0.561888,0.588646,0.167632,0.403554,0.13028,0.409067,0.932502,0.71622,0.570043,0.820005,0.648842,0.0667965,0.897659,0.359665,0.384132,0.69368,0.802802,0.390439,0.495565,0.9202,0.163886,0.775624,0.329255,0.15856,0.111215,0.981535,0.140622,0.0247766,0.587147,0.987737,0.659877,0.283678,0.247313,0.997674,0.328399,0.08097,0.0839563,0.723742,0.262858,0.810907,0.850872,0.919802,0.19365,0.346476,0.152134,0.150036,0.907238,0.993078,0.717687,0.80232,0.478372,0.723598,0.737547,0.774778,0.0952677,0.329211,0.211616,0.48381,0.110135,0.514525,0.639579,0.780158,0.565502,0.414351,0.831788,0.187358,0.641421,0.742684,0.336733,0.909119,0.653515,0.0836082,0.10597,0.923383,0.760852,0.261374,0.266602,0.811746,0.795834,0.131277,0.506564,0.930175,0.186649,0.295633,0.185955,0.252447,0.935738,0.0980395,0.89955,0.295394,0.864592,0.36316,0.597396,0.0138032,0.826212,0.7227,0.588234,0.141897,0.25186,0.07999,0.804266,0.700167,0.498836,0.439306,0.503581,0.840818,0.556363,0.328641,0.418027,0.600362,0.141717,0.463069,0.836,0.60906,0.97849,0.495495,0.500074,0.97227,0.0916618,0.899666,0.438589,0.952349,0.285837,0.636143,0.572772,0.989675,0.0867022,0.34067,0.0986949,0.331515,0.558609,0.530764,0.430691,0.793336,0.69184,0.0246913,0.949245,0.029543,0.496361,0.849751,0.99578,0.462533,0.75435,0.549974,0.220705,0.59055,0.549245,0.528751,0.624967,0.741546,0.473286,0.188784,0.593106,0.26409,0.292013,0.887689,0.255167,0.121928,0.237396,0.625519,0.329199,0.675757,0.240264,0.19239,0.548252,0.453893,0.528341,0.898675,0.363521,0.0984407,0.0209901,0.547133,0.763631,0.238573,0.835133,0.638173,0.489294,0.0306664,0.288078,0.873659,0.543845,0.707743,0.953981,0.044574,0.831635,0.87015,0.419843,0.977376,0.887414,0.797982,0.912355,0.346951,0.412072,0.574754,0.222016,0.184273,0.426346,0.862774,0.744402,0.218547,0.505209,0.184229,0.329597,0.678991,0.77998,0.042496,0.653071,0.964489,0.0447199,0.597852,0.725469,0.426612,0.445191,0.0702587,0.00442439,0.694091,0.771493,0.938414,0.524463,0.711058,0.365058,0.162545,0.71278,0.542652,0.756449,0.935288,0.592981,0.164865,0.771494,0.59176,0.490521,0.95932,0.523628,0.251299,0.667697,0.0617195,0.105351,0.691455,0.291599,0.115916,0.218175,0.667398,0.0362867,0.293782,0.0910235,0.73901,0.477685,0.274223,0.822853,0.415245,0.728307,0.214411,0.556697,0.802036,0.883916,0.733707,0.812568,0.322079,0.0532653,0.399546,0.060267,0.301033,0.938816,0.874922,0.820417,0.693586,0.84447,0.400182,0.276016,0.221294,0.670201,0.391897,0.225764,0.426461,0.349126,0.741892,0.363999,0.630652,0.304503,0.0166573,0.299971,0.653465,0.917637,0.494118,0.221174,0.27975,0.711787,0.40477,0.599194,0.186275,0.777311,0.980375,0.997198,0.469148,0.835632,0.104193,0.783813,0.480685,0.0901387,0.645851,0.383552,0.776871,0.463743,0.00586838,0.362903,0.479099,0.809594,0.685992,0.865538,0.830737,0.324494,0.839655,0.753985,0.837049,0.849191,0.229567,0.45461,0.176799,0.137609,0.811066,0.00765014,0.531834,0.779022,0.830567,0.615298,0.053774,0.768144,0.886958,0.620434,0.226362,0.934765,0.629778,0.976858,0.22367,0.959557,0.0397091,0.920539,0.421175,0.195673,0.317326,0.260369,0.396137,0.00476676,0.673537,0.584433,0.14652,0.845939,0.00477946,0.984729,0.646938,0.160158,0.487089,0.890419,0.447872,0.23271,0.62408,0.9675,0.736547,0.418506,0.905393,0.209616,0.200034,0.0556696,0.400879,0.967042,0.376651,0.351906,0.891366,0.81462,0.661316,0.554285,0.178824,0.281898,0.43279,0.497146,0.120624,0.0181109,0.252237,0.529211,0.492598,0.528837,0.0918286,|0.877553,0.0762874,0.576652,0.417936,0.710538,0.0376083,0.72807,0.980231,0.9113,0.845111,0.464408,0.986498,0.596974,0.000835955,0.256854,0.288313,0.60426,0.91871,0.407363,0.387684,0.194725,0.565804,0.941316,0.926395,0.786368,0.941515,0.2256,0.0380557,0.447317,0.370396,0.903587,0.262144,0.270959,0.430791,0.424231,0.821618,0.96879,0.785024,0.984156,0.542046,0.556194,0.902301,0.916981,0.118291,0.267564,0.612426,0.113582,0.560584,0.383897,0.828879,0.249878,0.388458,0.0234516,0.490836,0.592088,0.873749,0.648655,0.966412,0.807282,0.0365549,0.163474,0.613964,0.833347,0.532187,0.840897,0.110588,0.609157,0.278248,0.1853,0.984893,0.572522,0.5555,0.244956,0.723407,0.0519531,0.849192,0.346519,0.509412,0.00759906,0.780203,0.392839,0.846895,0.501326,0.429851,0.921297,0.865493,0.205702,0.00714344,0.566114,0.246972,0.598754,0.906429,0.684566,0.274581,0.530818,0.941396,0.834911,0.254707,0.337405,0.1654,0.154011,0.112349,0.198303,0.244368,0.220104,0.40004,0.222709,0.274662,0.169168,0.558055,0.447156,0.437095,0.950316,0.688255,0.861014,0.65221,0.556611,0.118421,0.105433,0.133039,0.33965,0.726012,0.547709,0.0551542,0.886595,0.716553,0.921158,0.116944,0.539229,0.715606,0.279891,0.821158,0.454563,0.501821,0.694589,0.881328,0.411953,0.112729,0.366259,0.474444,0.39571,0.278736,0.622537,0.655053,0.540177,0.834054,0.966716,0.4737,0.616408,0.346624,0.460534,0.865485,0.447811,0.935005,0.71287,0.550478,0.439665,0.432787,0.217552,0.807058,0.284126,0.613719,0.458704,0.114977,0.111217,0.512617,0.320318,0.922748,0.21816,0.0711633,0.980005,0.380726,0.415264,0.552206,0.0418353,0.353558,0.262465,0.494148,0.164229,0.167648,0.958273,0.237262,0.30265,0.355741,0.394493,0.770884,0.124714,0.319411,0.901488,0.496738,0.594623,0.0682374,0.388675,0.121607,0.495241,0.557166,0.0883905,0.342207,0.113462,0.647783,0.557148,0.955321,0.791442,0.232697,0.466771,0.913325,0.939506,0.812802,0.705732,0.674282,0.0251812,0.177975,0.445088,0.81524,0.595239,0.144393,0.495333,0.300281,0.970163,0.144309,0.332969,0.585045,0.0807828,0.203703,0.234433,0.597565,0.899874,0.545576,0.882667,0.227478,0.598895,0.517433,0.221515,0.793892,0.716044,0.135358,0.825747,0.0829881,0.812338,0.690851,0.957793,0.929984,0.354569,0.712635,0.176604,0.565906,0.777807,0.392062,0.955972,0.127246,0.993352,0.688368,0.529899,0.442576,0.974152,0.98692,0.628677,0.0640717,0.0912436,0.576633,0.828045,0.546334,0.0353349,0.180001,0.924873,0.704928,0.797319,0.137824,0.84004,0.828765,0.562815,0.6933,0.549312,0.424093,0.739609,0.925244,0.787292,0.566517,0.474012,0.929624,0.565159,0.939419,0.129632,0.203125,0.119399,0.770515,0.405044,0.0759992,0.715011,0.755256,0.068129,0.0859889,0.742014,0.173462,0.633775,0.901145,0.135763,0.948728,0.818583,0.310377,0.765395,0.669713,0.273934,0.678599,0.548911,0.71203,0.488008,0.416259,0.124666,0.582886,0.80651,0.927233,0.0286765,0.319689,0.752988,0.980839,0.211821,0.256966,0.378245,0.249785,0.767647,0.561592,0.918394,0.314512,0.748072,0.894573,0.829889,0.0990005,0.836966,0.713299,0.049249,0.534432,0.53266,0.91131,0.257493,0.810793,0.918845,0.787634,0.74929,0.785658,0.728857,0.716901,0.694068,0.910472,0.300378,0.315445,0.223443,0.664166,0.113944,0.442378,0.989059,0.492923,0.756715,0.303621,0.451474,0.564174,0.840065,0.685389,0.676499,0.0486958,0.233175,0.64929,0.596245,0.711119,0.377833,0.618411,0.566041,0.841426,0.406838,0.496929,0.978259,0.183613,0.0904388,0.617607,0.292406,0.68511,0.627111,0.159408,0.911814,0.906178,0.96377,0.210131,0.352552,0.95287,0.0781332,0.0271509,0.706583,0.654454,0.499216,0.572098,0.755652,0.828656,0.740798,0.00339192,0.6012,0.387246,0.48972,0.595606,0.881936,0.584179,0.0647588,0.0536774,0.435734,0.279388,0.242986,0.314222,0.728007,0.829741,0.190196,0.489145,0.117129,0.95328,0.904237,0.206697,0.544001,0.270091,0.999774,0.971685,0.0142604,0.270606,0.269948,0.264795,0.249277,0.706761,0.00206852,0.515987,0.872625,0.0562423,0.414783,0.168839,0.0116494,0.200685,0.714169,0.895767,0.262227,0.420672,0.272806,0.580314,0.746909,0.811607,0.343566,0.244073,0.873807,0.28901,0.1466,0.493284,0.56433,0.289867,0.0300987,0.22428,0.986874,0.883167,0.206404,0.748148,0.795352,0.332849,0.849283,0.391377,0.488623,0.224247,0.833592,0.243321,0.85429,0.867605,0.0754984,0.755173,0.779206,0.320879,0.835195,0.480507,0.47997,0.836023,0.229476,0.242913,0.230669,0.809641,0.444066,0.266792,0.775524,0.140988,0.170931,0.477647,0.856383,0.731699,0.183621,0.673458,0.179495,0.298519,0.969954,0.644997,0.0705704,0.233707,0.740582,0.31325,0.0319164,0.363291,0.139424,0.206678,0.707823,0.235793,0.236066,0.0437022,0.0969917,0.928825,0.784908,0.85199,0.0570174,0.994574,0.869531,0.176755,0.465358,0.0194297,0.652644,0.184459,0.322242,0.410825,0.299898,0.328207,0.168748,0.527857,0.0946901,0.249892,0.380492,0.28779,0.775257,0.654762,0.274591,0.0310432,0.738392,0.627367,0.252521,0.81302,0.0697699,0.569617,0.26085,0.243534,0.24832,0.829249,0.683109,0.263684,0.023503,0.136331,0.439831,0.138229,0.178464,0.839579,0.469736,0.253465,0.953951,0.849359,0.0828068,0.0265775,0.8705,0.255923,0.92989,0.986861,0.257507,0.58991,0.121423,0.901015,0.524592,0.28394,0.778191,0.00336891,0.8015,0.385257,0.312787,0.83399,0.0706823,0.803524,0.690365,0.0111531,0.465249,0.388938,0.0702224,0.304809,0.923647,0.0927448,0.234078,0.873595,0.522896,0.515798,0.458821,0.137944,0.396822,0.404688,0.186303,0.644727,0.920115,0.938873,0.407881,0.888483,0.63558,0.827666,0.343345,0.706195,0.576599,0.327524,0.860504,0.840944,0.968705,0.154152,0.276441,0.0482187,0.625789,0.42251,0.773056,0.420263,0.548533,0.224434,0.97535,0.923197,0.992907,0.108196,0.754262,0.838408,0.392291,0.399037,0.60183,0.763625,0.266132,0.706585,0.924253,0.326134,0.941305,0.72083,0.217656,0.346755,0.328648,0.763778,0.482262,0.753477,0.876792,0.0577379,0.200371,0.428483,0.969368,0.990592,0.306738,0.959831,0.393632,0.888748,0.0485654,0.954703,0.699399,0.632703,0.54107,0.781974,0.785759,0.290891,0.902447,0.481238,0.876929,0.127278,0.0462198,0.914058,0.897336,0.549652,0.334026,0.912579,0.359552,0.939556,0.0131525,0.931058,0.608409,0.971879,0.462478,0.622229,0.714485,0.771773,0.365186,0.0706279,0.358235,0.136199,0.870898,0.487493,0.455889,0.308355,0.378351,0.51531,0.847019,0.180051,0.98507,0.660865,0.216764,0.624862,0.796517,0.0228468,0.254147,0.630303,0.524005,0.26275,0.586369,0.861114,0.795716,0.366646,0.746324,0.00261587,0.928798,0.824347,0.171958,0.336162,0.473727,0.635024,0.179694,0.338409,0.0576303,0.696649,0.840965,0.304727,0.911237,0.468171,0.167483,0.620646,0.414842,0.927661,0.503483,0.929075,0.475781,0.751284,0.206788,0.103163,0.448428,0.637165,0.958433,0.304128,0.312464,0.910847,0.0170229,0.841271,0.325801,0.478604,0.200188,0.685269,0.587315,0.617298,0.865862,0.125759,0.114411,0.0670965,0.186808,0.651357,0.0853513,0.23941,0.606115,0.533099,0.649042,0.0917331,0.403181,0.603424,0.602561,0.394541,0.125849,0.0720058,0.0943956,0.0804811,0.830085,0.478297,0.472191,0.579249,0.493827,0.828202,0.752394,0.524962,0.24937,0.582406,0.449528,0.224241,0.0612696,0.979235,0.484428,0.594829,0.393044,0.452148,0.746623,0.773106,0.810831,0.148444,0.120572,0.0203076,0.724426,0.596149,0.174609,0.0281306,0.779694,0.12577,0.51357,0.525835,0.685117,0.506893,0.0904442,0.575804,0.881936,0.364579,0.411482,0.837128,0.385401,0.903164,0.0709495,0.726992,0.384879,0.788238,0.282253,0.601579,0.589164,0.578047,0.445598,0.0353062,0.0991713,0.971031,0.400413,0.449052,0.185181,0.437276,0.656014,0.698204,0.818518,0.35757,0.934522,0.334364,0.753561,0.233272,0.0500613,0.623952,0.0548034,0.591378,0.245928,0.638534,0.321374,0.629042,0.266295,0.281026,0.74152,0.241867,0.954083,0.546514,0.916249,0.663121,0.692387,0.930754,0.17377,0.522173,0.10419,0.906827,0.220683,0.382929,0.0321013,0.695606,0.644243,0.343105,0.644769,0.712444,0.834372,0.529552,0.456438,0.0374255,0.756969,0.955758,0.4168,0.293272,0.900241,0.287143,0.741196,0.887419,0.0966299,0.457133,0.671908,0.523936,0.526731,0.0804957,0.891214,0.913292,0.315291,0.00336307,0.624106,0.42625,0.130346,0.449091,0.074817,0.559811,0.0693253,0.252903,0.859899,0.890762,0.525592,0.967529,0.236032,0.32815,0.667223,0.616843,0.902987,0.186909,0.50355,0.683704,0.722786,0.19612,0.60397,0.215501,0.783086,0.268519,0.1671,0.448895,0.803156,0.292165,0.610927,0.27351,0.676742,0.508045,0.816936,0.45278,0.641193,0.528033,0.058727,0.238064,0.101536,0.295485,0.791862,0.985203,0.456446,0.113364,0.429237,0.582978,0.320519,0.812025,0.773297,0.843818,0.941898,0.110828,0.957595,0.0853012,0.423472,0.58516,0.50035,0.536321,0.412715,0.938833,0.143577,0.853728,0.668642,0.424002,0.611889,0.3981,0.00753391,0.23065,0.689415,0.0904088,0.518278,0.837034,0.612497,0.727509,0.596943,0.755202,0.346415,0.445104,0.36251,0.485987,0.296419,0.141491,0.014273,0.987422,0.588283,0.404407,0.343633,0.503874,0.116793,0.249338,0.770495,0.362196,0.0298808,0.187538,0.492565,0.45789,0.218077,0.163075,0.999128,0.452226,0.788014,0.233184,0.049235,0.612279,0.812925,0.483496,0.711981,0.0582772,0.264752,0.17309,0.0853195,0.131755,0.830893,0.722923,0.238333,0.713961,0.586778,0.991818,0.59569,0.459872,0.0833762,0.0791609,0.459264,0.474998,|0.488188,0.239212,0.565979,0.433232,0.744928,0.452655,0.103536,0.0877748,0.0986869,0.425687,0.370247,0.450396,0.379916,0.628145,0.0835589,0.639718,0.495785,0.0879552,0.626986,0.323225,0.246356,0.549444,0.210045,0.911014,0.600364,0.477742,0.0146686,0.175239,0.154529,0.167293,0.836133,0.0386864,0.2785,0.726839,0.286691,0.374705,0.0441359,0.0209659,0.444873,0.0192308,0.665595,0.574554,0.70294,0.0242106,0.324355,0.978222,0.371048,0.530372,0.341295,0.45775,0.829574,0.247669,0.880573,0.829471,0.449803,0.332666,0.954477,0.768202,0.308354,0.94987,0.75842,0.741437,0.524818,0.345184,0.252709,0.322297,0.296362,0.717302,0.384536,0.618202,0.807697,0.289544,0.680552,0.649729,0.249203,0.1996,0.867605,0.459281,0.414224,0.533973,0.936453,0.881885,0.640533,0.694236,0.938357,0.783505,0.61781,0.664154,0.467627,0.183059,0.863379,0.775818,0.958429,0.756484,0.166724,0.841122,0.161391,0.336413,0.259796,0.650159,0.0928523,0.494582,0.100525,0.077893,0.0448453,0.526139,0.23,0.406052,0.497299,0.772461,0.587435,0.163856,0.8359,0.964213,0.254612,0.439818,0.775423,0.475121,0.275082,0.00933468,0.838184,0.297791,0.19317,0.336126,0.666811,0.329483,0.509302,0.572051,0.705772,0.684548,0.989151,0.635,0.570897,0.032244,0.46099,0.0656812,0.690545,0.106975,0.377835,0.327493,0.432643,0.693742,0.669501,0.0412779,0.290464,0.641059,0.987566,0.194392,0.546489,0.272129,0.62901,0.229848,0.53437,0.926953,0.164042,0.971996,0.869836,0.9912,0.981852,0.598257,0.721961,0.364912,0.709661,0.337934,0.0363209,0.804095,0.300833,0.55012,0.733297,0.895151,0.230694,0.618712,0.446632,0.694529,0.692938,0.455287,0.598414,0.102764,0.967913,0.204683,0.126371,0.556559,0.16929,0.0241995,0.142792,0.871352,0.327065,0.492207,0.756588,0.66373,0.721805,0.69805,0.741883,0.29154,0.628695,0.608963,0.947506,0.871827,0.817424,0.74715,0.0169366,0.185239,0.8108,0.124814,0.28767,0.47468,0.272532,0.227506,0.577719,0.950359,0.859587,0.0488464,0.563935,0.0150228,0.467407,0.967912,0.410978,0.771419,0.958635,0.149004,0.473449,0.907914,0.544193,0.635372,0.542033,0.389567,0.778298,0.901658,0.170469,0.875217,0.654427,0.816785,0.468097,0.362738,0.664629,0.0330569,0.478966,0.827068,0.104211,0.421442,0.733229,0.150412,0.330007,0.819681,0.864923,0.177826,0.281727,0.630468,0.31452,0.684727,0.0406321,0.00902861,0.817804,0.514424,0.238949,0.220668,0.714781,0.978228,0.769849,0.510931,0.679066,0.555096,0.142534,0.51997,0.564699,0.105106,0.875426,0.182454,0.512251,0.865037,0.20415,0.617673,0.821527,0.826634,0.887677,0.688465,0.262031,0.606078,0.479775,0.436056,0.724634,0.312386,0.634832,0.866746,0.587843,0.860097,0.0980788,0.241823,0.314844,0.612454,0.712108,0.591965,0.636122,0.952165,0.130235,0.795441,0.475694,0.56354,0.623406,0.750506,0.422655,0.668061,0.573065,0.047498,0.488215,0.543686,0.175604,0.897021,0.376534,0.936139,0.190425,0.529811,0.674626,0.993636,0.722171,0.724364,0.943261,0.737875,0.977017,0.881958,0.253344,0.571211,0.113192,0.425894,0.0259279,0.595337,0.0592638,0.905348,0.502678,0.747335,0.57617,0.959761,0.396114,0.810567,0.982421,0.166256,0.559865,0.0486247,0.331208,0.496715,0.479633,0.708956,0.390388,0.437833,0.758522,0.961475,0.168258,0.335622,0.976908,0.836603,0.661247,0.712065,0.755991,0.487042,0.911339,0.900274,0.740013,0.777318,0.858697,0.660516,0.157026,0.202593,0.931053,0.115631,0.216905,0.482742,0.601647,0.387372,0.665504,0.0428125,0.0680596,0.848455,0.997434,0.0934614,0.061473,0.563435,0.788217,0.401605,0.160002,0.371511,0.409034,0.626581,0.254542,0.943219,0.356319,0.187771,0.633125,0.419217,0.907873,0.403134,0.201455,0.698005,0.993894,0.782198,0.220713,0.678676,0.519697,0.277177,0.144641,0.706748,0.372573,0.979955,0.255682,0.864787,0.957706,0.671031,0.129285,0.349528,0.0210783,0.549655,0.54266,0.8967,0.153765,0.950735,0.843537,0.611488,0.893291,0.081858,0.992151,0.302554,0.789715,0.964022,0.754221,0.574489,0.412009,0.482288,0.524744,0.509706,0.331841,0.616737,0.0771082,0.638875,0.71341,0.0637039,0.90171,0.0471417,0.926926,0.446593,0.0222844,0.0974599,0.167544,0.923218,0.249871,0.534377,0.203284,0.130451,0.711084,0.156569,0.507607,0.13557,0.864424,0.125538,0.878291,0.945246,0.614966,0.268472,0.30288,0.168223,0.413362,0.960473,0.299872,0.429606,0.274616,0.782886,0.477498,0.45414,0.878862,0.595131,0.628274,0.140352,0.502158,0.143073,0.207929,0.865934,0.841369,0.714213,0.391383,0.0590096,0.240387,0.016168,0.257217,0.912442,0.505189,0.692414,0.595795,0.192478,0.664925,0.450116,0.481057,0.544773,0.215255,0.383932,0.399463,0.868527,0.320691,0.442416,0.0740804,0.331289,0.428189,0.20586,0.757892,0.236081,0.150512,0.975729,0.918221,0.133375,0.787678,0.512273,0.443498,0.65838,0.252152,0.687991,0.0874359,0.942699,0.265933,0.902024,0.766471,0.597026,0.6725,0.738669,0.121321,0.928523,0.691695,0.682142,0.715188,0.8332,0.835993,0.899799,0.719411,0.764979,0.0928326,0.129409,0.898734,0.202392,0.200377,0.732313,0.368506,0.412732,0.0807198,0.524491,0.000838697,0.583765,0.723216,0.401867,0.451392,0.0335745,0.81449,0.605456,0.523709,0.78343,0.763275,0.259892,0.536094,0.290927,0.778644,0.086386,0.233178,0.774664,0.160131,0.882948,0.698937,0.3265,0.300889,0.730746,0.872173,0.432622,0.230987,0.726192,0.209893,0.980915,0.369723,0.480661,0.482102,0.33066,0.933836,0.36126,0.159428,0.440313,0.93436,0.297662,0.536443,0.365106,0.479504,0.471768,0.216123,0.529097,0.395243,0.648052,0.547996,0.913085,0.168988,0.152253,0.295299,0.658397,0.190076,0.0361522,0.390759,0.259327,0.701884,0.108136,0.530044,0.731147,0.272023,0.421905,0.795975,0.62797,0.495247,0.160631,0.221146,0.117864,0.109283,0.979651,0.107335,0.972277,0.0355901,0.298684,0.54277,0.189253,0.833233,0.73984,0.842364,0.509148,0.589971,0.013256,0.217916,0.607817,0.98236,0.899176,0.788987,0.70516,0.151257,0.783466,0.567661,0.857284,0.124624,0.310087,0.099784,0.377943,0.442453,0.300615,0.861448,0.629573,0.487997,0.526325,0.597754,0.381637,0.230047,0.657202,0.371323,0.827874,0.365959,0.632322,0.554843,0.415461,0.494959,0.178405,0.200302,0.173444,0.393518,0.196629,0.106808,0.808096,0.221946,0.47629,0.994867,0.452263,0.339645,0.99562,0.896319,0.193417,0.978029,0.825868,0.613526,0.722987,0.142111,0.381452,0.228252,0.309887,0.22082,0.202856,0.0135682,0.925213,0.568639,0.0893631,0.611441,0.899328,0.692838,0.149236,0.510242,0.49082,0.942466,0.791688,0.41509,0.951829,0.904983,0.20608,0.491737,0.304111,0.0513514,0.739117,0.67249,0.182082,0.13574,0.587492,0.660308,0.212,0.625543,0.826575,0.236313,0.213515,0.481061,0.999441,0.19883,0.934683,0.279787,0.475736,0.0484763,0.0127499,0.0964754,0.752533,0.0758469,0.20106,0.234837,0.899784,0.956255,0.646241,0.990396,0.102524,0.517016,0.254595,0.576174,0.44464,0.602063,0.0494838,0.617866,0.847994,0.599912,0.503683,0.389147,0.658339,0.823778,0.371519,0.918559,0.807963,0.583059,0.212889,0.742647,0.919,0.608159,0.77206,0.808302,0.396365,0.0745566,0.07201,0.10262,0.520365,0.785827,0.27384,0.850627,0.667319,0.224653,0.49227,0.804723,0.876432,0.426657,0.940602,0.428139,0.578605,0.709968,0.644985,0.381528,0.361153,0.325747,0.431538,0.0751245,0.818061,0.659282,0.411314,0.0552626,0.238011,0.492831,0.0316698,0.0137051,0.778716,0.0632897,0.419742,0.660368,0.343654,0.48933,0.100484,0.794768,0.493234,0.605239,0.490438,0.733803,0.264019,0.721001,0.865473,0.869462,0.325865,0.160199,0.0137312,0.667579,0.298495,0.630815,0.587406,0.873367,0.620734,0.80866,0.871154,0.462754,0.337465,0.730289,0.688119,0.632378,0.419945,0.271378,0.830489,0.843186,0.528797,0.181223,0.619805,0.345314,0.164254,0.531236,0.507712,0.772151,0.86582,0.946787,0.943304,0.840536,0.101413,0.501489,0.861287,0.917303,0.108452,0.152141,0.401279,0.310497,0.992842,0.339253,0.644563,0.434026,0.540099,0.825543,0.26957,0.503499,0.544351,0.901369,0.112923,0.661493,0.111831,0.0837476,0.750078,0.307568,0.833371,0.936117,0.91573,0.438677,0.258124,0.847373,0.906925,0.576877,0.826155,0.797913,0.767054,0.245586,0.873847,0.205804,0.684392,0.992917,0.827376,0.219534,0.75126,0.24959,0.190752,0.757293,0.00831085,0.728849,0.0468512,0.402261,0.801913,0.388505,0.970309,0.025889,0.00746495,0.922247,0.209789,0.638804,0.222467,0.592451,0.354894,0.310506,0.276811,0.633472,0.353364,0.260149,0.397704,0.135137,0.785327,0.0888515,0.241147,0.133906,0.680247,0.482608,0.853843,0.294344,0.406921,0.373442,0.692855,0.435555,0.649178,0.40238,0.566589,0.55788,0.884809,0.866688,0.624205,0.938717,0.670486,0.183385,0.809232,0.006477,0.225704,0.387707,0.824892,0.0490652,0.591871,0.197079,0.811422,0.22503,0.386793,0.941063,0.157644,0.903875,0.0312114,0.586384,0.350634,0.878411,0.12545,0.366952,0.0886714,0.663526,0.494053,0.0440612,0.2413,0.744528,0.435388,0.948186,0.174708,0.303099,0.116639,0.464076,0.821115,0.625315,0.0912977,0.323614,0.183406,0.716274,0.263094,0.325219,0.746929,0.76412,0.883147,0.896661,0.715171,0.318003,0.178928,0.317468,0.534969,0.930545,0.765818,0.038825,0.683886,0.972664,0.801551,0.920238,0.649889,0.955806,0.946982,0.707274,0.577689,0.125616,0.146333,0.794683,0.0283665,0.818366,0.874192,0.740189,0.642375,0.212504,0.852853,0.711613,0.574291,0.0728451,0.755414,0.79707,0.162406,0.037446,0.106232,|0.456534,0.398849,0.268735,0.466744,0.925354,0.291982,0.916832,0.981612,0.716372,0.252968,0.257224,0.876272,0.849577,0.380089,0.975523,0.878828,0.780182,0.998691,0.410651,0.633989,0.668802,0.64031,0.918596,0.0926688,0.616087,0.862851,0.194949,0.491201,0.481163,0.0728015,0.184541,0.277237,0.383624,0.853107,0.252406,0.233975,0.330454,0.279462,0.316613,0.0179079,0.998154,0.0301336,0.0292198,0.765517,0.44861,0.192944,0.895645,0.12827,0.598956,0.918699,0.596675,0.318573,0.412077,0.991046,0.95979,0.602611,0.934352,0.330587,0.9973,0.887406,0.844307,0.592169,0.642146,0.482689,0.285827,0.866731,0.185349,0.37985,0.219937,0.306517,0.39464,0.294636,0.370064,0.50088,0.635243,0.391527,0.441627,0.874461,0.40273,0.230812,0.875636,0.527099,0.569555,0.516545,0.710607,0.735324,0.391261,0.0696697,0.909752,0.802149,0.48738,0.714553,0.736007,0.234691,0.184266,0.828097,0.293578,0.803357,0.0284996,0.999016,0.194682,0.959895,0.48667,0.908305,0.756843,0.62069,0.780741,0.487667,0.213917,0.911126,0.260978,0.13855,0.749164,0.642341,0.712436,0.375807,0.864046,0.89901,0.384481,0.778644,0.0371469,0.575916,0.0404264,0.36873,0.113795,0.422128,0.00468349,0.756218,0.68962,0.204729,0.882477,0.540732,0.342462,0.110263,0.427431,0.235657,0.20308,0.980662,0.591145,0.388035,0.502614,0.450411,0.0163493,0.288343,0.22396,0.14728,0.407778,0.952034,0.182792,0.422918,0.229499,0.586374,0.219634,0.102286,0.245283,0.101476,0.0575163,0.153943,0.88307,0.497481,0.71544,0.390157,0.425085,0.855286,0.0287359,0.213478,0.600719,0.131996,0.573133,0.15505,0.561539,0.757077,0.281001,0.890517,0.566521,0.654945,0.307239,0.370499,0.361685,0.75869,0.985187,0.188225,0.512388,0.531995,0.489567,0.263237,0.553775,0.25149,0.179471,0.733056,0.112554,0.00276309,0.942205,0.99937,0.688602,0.508789,0.342269,0.491639,0.892931,0.35477,0.192534,0.475386,0.699484,0.635865,0.963326,0.335284,0.0596906,0.0135857,0.932642,0.780948,0.344711,0.200363,0.24806,0.444495,0.98698,0.857948,0.448049,0.594617,0.148667,0.528485,0.771178,0.73903,0.922922,0.756235,0.797496,0.18628,0.0942876,0.576021,0.151111,0.76515,0.633767,0.274592,0.645028,0.439584,0.533904,0.506524,0.736372,0.421103,0.842186,0.793619,0.581825,0.764362,0.86671,0.615506,0.0883414,0.000926971,0.50115,0.0722238,0.0776197,0.131561,0.433448,0.325418,0.741626,0.579131,0.755952,0.477906,0.874555,0.233166,0.789596,0.196808,0.530976,0.938218,0.940909,0.475991,0.308441,0.0684639,0.541569,0.860304,0.176668,0.529528,0.468852,0.357765,0.159024,0.461153,0.87021,0.385168,0.960794,0.306856,0.773213,0.861664,0.760928,0.226486,0.0185118,0.117834,0.988831,0.82081,0.905436,0.675103,0.222235,0.591745,0.246781,0.96426,0.69172,0.664322,0.609231,0.844167,0.0329726,0.762728,0.249647,0.099814,0.0824571,0.168925,0.00907779,0.880161,0.521179,0.369841,0.335716,0.00902188,0.936891,0.472463,0.954071,0.00592864,0.479953,0.191172,0.44021,0.274956,0.487298,0.44562,0.202265,0.0216718,0.332827,0.0750483,0.671236,0.578576,0.28661,0.0548397,0.812868,0.807452,0.640608,0.00330281,0.112396,0.599801,0.603198,0.535089,0.692236,0.918872,0.81448,0.761394,0.546041,0.305259,0.157973,0.33641,0.902531,0.29859,0.862049,0.736344,0.886388,0.634912,0.935129,0.540802,0.568597,0.927742,0.269039,0.729783,0.392317,0.85541,0.418573,0.0526854,0.232816,0.194684,0.751424,0.045843,0.104599,0.265858,0.0462908,0.490422,0.231773,0.564507,0.294701,0.929011,0.815679,0.38021,0.25509,0.370247,0.964901,0.593979,0.356877,0.339187,0.928185,0.188213,0.356844,0.0496225,0.354875,0.774833,0.556817,0.537848,0.750151,0.267363,0.69557,0.850594,0.962803,0.679418,0.595502,0.947632,0.0142561,0.753741,0.766899,0.834825,0.844219,0.715159,0.716285,0.0207987,0.122608,0.363404,0.963208,0.803479,0.369713,0.626955,0.166137,0.34275,0.21579,0.546026,0.489879,0.935472,0.238983,0.277308,0.942948,0.12642,0.440526,0.0381153,0.874923,0.132568,0.807114,0.261815,0.325464,0.0472422,0.92908,0.211202,0.415401,0.0247815,0.93948,0.438884,0.463782,0.466935,0.248594,0.579839,0.0198306,0.00622326,0.591103,0.539312,0.410005,0.162943,0.701656,0.942122,0.823967,0.950124,0.0201699,0.483821,0.172388,0.70234,0.713743,0.946921,0.602899,0.391665,0.977339,0.0569935,0.375236,0.214694,0.849339,0.514997,0.0948511,0.48903,0.911414,0.33836,0.489169,0.792219,0.53865,0.00932723,0.405884,0.284542,0.164805,0.433431,0.678808,0.435439,0.916886,0.661894,0.157658,0.857194,0.848258,0.334747,0.124017,0.650897,0.302645,0.726801,0.673058,0.170097,0.519515,0.0786377,0.0836789,0.562562,0.642333,0.187698,0.549479,0.894738,0.429653,0.545256,0.470922,0.708064,0.580526,0.377352,0.384979,0.709475,0.593744,0.851589,0.0568064,0.248624,0.446112,0.617509,0.121187,0.326719,0.672979,0.01384,0.197988,0.532363,0.132381,0.381668,0.926835,0.327514,0.99419,0.176137,0.396893,0.87328,0.870807,0.00543141,0.528628,0.103319,0.921436,0.701999,0.694849,0.967332,0.742165,0.337872,0.333502,0.132965,0.44715,0.87115,0.387338,0.294357,0.719739,0.318303,0.253564,0.747727,0.116691,0.500493,0.322808,0.274904,0.375712,0.110212,0.342,0.536549,0.147636,0.65947,0.999997,0.450932,0.719133,0.496907,0.0945868,0.519364,0.573114,0.738189,0.172706,0.0343837,0.413302,0.0703155,0.750009,0.95984,0.435315,0.704781,0.20658,0.889448,0.821079,0.251967,0.097657,0.471317,0.672464,0.0291805,0.44303,0.908322,0.429073,0.107075,0.164943,0.0228568,0.266387,0.282172,0.454654,0.506648,0.699917,0.0802605,0.504044,0.653591,0.753472,0.549419,0.927121,0.109124,0.426344,0.0169004,0.412106,0.889173,0.523102,0.125231,0.818034,0.764536,0.426112,0.884145,0.0295678,0.814035,0.849115,0.928167,0.202465,0.632648,0.0484505,0.415379,0.6966,0.565687,0.939913,0.434232,0.670514,0.292586,0.636972,0.0222256,0.727793,0.368075,0.449276,0.639319,0.435749,0.98397,0.933222,0.720904,0.836082,0.795138,0.492259,0.710546,0.771237,0.0608035,0.893508,0.495601,0.19387,0.920358,0.550468,0.511297,0.532026,0.782831,0.621315,0.681545,0.0407104,0.479395,0.370555,0.0659804,0.484567,0.413428,0.40763,0.615857,0.569869,0.910815,0.155738,0.361032,0.560972,0.0178365,0.154836,0.208877,0.919024,0.522569,0.29885,0.431995,0.267855,0.208062,0.861851,0.554594,0.383186,0.682852,0.690558,0.977559,0.478085,0.494986,0.438013,0.959709,0.559774,0.787815,0.366694,0.995808,0.537689,0.727419,0.081194,0.762162,0.222774,0.932187,0.168561,0.479395,0.0365013,0.386362,0.93923,0.442926,0.645628,0.988007,0.630467,0.128918,0.236067,0.206089,0.197684,0.459022,0.0280464,0.32951,0.267844,0.310329,0.226142,0.145764,0.327685,0.44073,0.547146,0.883334,0.202548,0.179852,0.333369,0.646068,0.808746,0.755821,0.364719,0.185589,0.547685,0.843644,0.0617678,0.791147,0.922313,0.809975,0.323793,0.869478,0.658365,0.628841,0.142198,0.734801,0.806561,0.520124,0.288707,0.0169899,0.0272912,0.136581,0.597732,0.873896,0.176963,0.511404,0.219397,0.671105,0.822014,0.739078,0.622799,0.255832,0.738787,0.365185,0.194934,0.823596,0.723476,0.671823,0.19889,0.305688,0.712584,0.296905,0.389319,0.41018,0.261972,0.0317938,0.199659,0.425309,0.823473,0.0985883,0.264241,0.156102,0.514394,0.592092,0.779555,0.0205574,0.783278,0.0948094,0.0118849,0.86448,0.59519,0.0977395,0.82805,0.552069,0.989492,0.88884,0.183982,0.944669,0.404974,0.526285,0.461184,0.832515,0.828213,0.0205172,0.613397,0.00733835,0.210103,0.19477,0.388473,0.314698,0.779304,0.411898,0.679643,0.703072,0.00985372,0.589144,0.00852287,0.546716,0.252462,0.658324,0.306992,0.434847,0.691379,0.326769,0.98806,0.336281,0.178375,0.483566,0.543938,0.14737,0.794662,0.849051,0.160634,0.314545,0.768507,0.628532,0.388865,0.449271,0.366862,0.249124,0.232916,0.791878,0.393814,0.705019,0.283029,0.237579,0.426295,0.799523,0.504866,0.899775,0.679184,0.601497,0.0266885,0.846218,0.308686,0.564157,0.360338,0.526786,0.685936,0.383221,0.571098,0.57294,0.825938,0.431371,0.489428,0.800171,0.946094,0.162227,0.0710759,0.783167,0.872135,0.835629,0.0694566,0.573284,0.262125,0.813191,0.60587,0.787787,0.856729,0.293474,0.160997,0.131867,0.522686,0.617459,0.866651,0.444636,0.702598,0.574138,0.259205,0.596556,0.691407,0.0882893,0.472963,0.148034,0.762395,0.868815,0.33953,0.552272,0.756273,0.418187,0.10533,0.0689706,0.256066,0.19925,0.188788,0.33163,0.428499,0.563264,0.77287,0.915526,0.523093,0.21802,0.935054,0.200993,0.280288,0.535864,0.516608,0.301657,0.90396,0.20425,0.835028,0.65509,0.479792,0.447959,0.716491,0.614511,0.287278,0.905675,0.202165,0.0325592,0.979415,0.103637,0.282131,0.302529,0.298113,0.39254,0.339717,0.319238,0.484638,0.962329,0.0210632,0.482018,0.560936,0.0980428,0.874454,0.0450344,0.194166,0.946931,0.00942981,0.631057,0.146161,0.908299,0.76663,0.584198,0.176966,0.252888,0.424675,0.889002,0.807011,0.269136,0.376338,0.628428,0.73087,0.425746,0.0959761,0.176796,0.877737,0.219384,0.378114,0.116519,0.151007,0.371348,0.869574,0.0773641,0.610553,0.771088,0.842423,0.628706,0.87394,0.855117,0.302807,0.438095,0.0273001,0.500721,0.826574,0.468146,0.371617,0.464286,0.267436,0.287268,0.83771,0.974245,0.700359,0.0901424,0.237492,0.0122816,0.950458,0.505659,0.857447,0.743518,0.12206,0.117497,0.305038,0.657655,0.763134,0.0789294,0.0614082,0.655653,0.238843,0.670785,0.427195,0.557251,0.781062,0.322798,0.0911259,0.763013,|0.731147,0.235869,0.137034,0.237034,0.170204,0.443647,0.0362387,0.452561,0.366336,0.46529,0.0854207,0.766918,0.926061,0.33029,0.920157,0.547325,0.971884,0.509887,0.101714,0.72976,0.647015,0.619879,0.525275,0.738705,0.428458,0.79312,0.382576,0.758531,0.281254,0.0874688,0.594693,0.384701,0.0643714,0.625926,0.261525,0.6901,0.698744,0.262109,0.318423,0.776859,0.384185,0.743049,0.474783,0.0590799,0.521894,0.97712,0.707713,0.0770052,0.439611,0.68497,0.0274677,0.230329,0.959762,0.98701,0.241969,0.912888,0.992095,0.145198,0.189442,0.936393,0.0200112,0.600737,0.601944,0.996772,0.0392638,0.403133,0.154417,0.221015,0.275731,0.70101,0.0465974,0.819725,0.700227,0.103062,0.274321,0.331632,0.900668,0.622853,0.372673,0.19963,0.2797,0.373411,0.871361,0.90015,0.140144,0.871095,0.288145,0.954129,0.108065,0.515691,0.789868,0.0491251,0.0637776,0.0112396,0.413143,0.975177,0.369078,0.0633089,0.213843,0.327179,0.0928898,0.161298,0.921221,0.816375,0.65193,0.379216,0.343479,0.542713,0.0490547,0.635097,0.435026,0.959706,0.546056,0.527224,0.0436606,0.324051,0.138038,0.730057,0.833549,0.704348,0.715965,0.599004,0.499312,0.5582,0.995758,0.893377,0.531713,0.188873,0.772916,0.323353,0.372151,0.338876,0.81721,0.802898,0.530981,0.732574,0.691823,0.0297177,0.720144,0.19201,0.471436,0.441025,0.0421011,0.0389044,0.563395,0.925899,0.542086,0.520317,0.0525773,0.292629,0.198735,0.856215,0.803394,0.43672,0.366995,0.883128,0.0716979,0.200074,0.00122386,0.294039,0.295582,0.157262,0.545607,0.447863,0.84536,0.0976765,0.489173,0.253266,0.301136,0.0567628,0.615431,0.460122,0.00117916,0.49596,0.364564,0.299179,0.747153,0.267523,0.351773,0.516571,0.275856,0.946616,0.333405,0.229085,0.407255,0.423838,0.119217,0.930337,0.636249,0.986463,0.650182,0.590495,0.96038,0.0684215,0.370722,0.523559,0.274429,0.456922,0.941857,0.575572,0.260554,0.24228,0.242219,0.0721136,0.705847,0.00147229,0.00211924,0.881284,0.785837,0.49094,0.533622,0.891606,0.110521,0.268039,0.842969,0.482869,0.0297104,0.573719,0.750529,0.719383,0.436235,0.0936915,0.681521,0.169066,0.331636,0.126729,0.229073,0.938105,0.974913,0.688305,0.805575,0.255443,0.835652,0.449457,0.0533162,0.207506,0.29641,0.914305,0.273881,0.661176,0.475523,0.187564,0.465561,0.208434,0.127901,0.773091,0.340344,0.476725,0.234881,0.645379,0.266775,0.834496,0.271201,0.14171,0.766556,0.919789,0.538088,0.995087,0.642307,0.755613,0.105659,0.463305,0.406728,0.101691,0.190422,0.176222,0.136867,0.350967,0.149765,0.482179,0.648096,0.964689,0.574089,0.116365,0.549035,0.797893,0.263082,0.19364,0.800246,0.473345,0.451483,0.448421,0.263578,0.794968,0.407569,0.170888,0.183378,0.256329,0.429363,0.0763274,0.605619,0.893338,0.497656,0.465565,0.0526366,0.713476,0.243037,0.953166,0.124905,0.915862,0.0849823,0.254827,0.808411,0.493724,0.733488,0.737706,0.640423,0.893882,0.951131,0.795421,0.15952,0.759299,0.244942,0.815658,0.294532,0.0445548,0.150654,0.544945,0.571689,0.129722,0.948257,0.404387,0.829851,0.361773,0.77969,0.34273,0.977241,0.12587,0.998927,0.546615,0.292615,0.071051,0.709402,0.219275,0.514469,0.666786,0.736085,0.952389,0.683919,0.730403,0.416846,0.176529,0.774712,0.98252,0.126886,0.21798,0.793436,0.773448,0.870917,0.129709,0.543823,0.306306,0.508562,0.55211,0.508488,0.750879,0.380397,0.678454,0.473693,0.41464,0.251846,0.382244,0.62509,0.432031,0.280773,0.629917,0.268812,0.270756,0.878915,0.821284,0.228627,0.239595,0.316192,0.319833,0.721009,0.540651,0.944364,0.584965,0.197818,0.4849,0.884241,0.604159,0.423111,0.498332,0.723152,0.403696,0.623699,0.564158,0.586503,0.793345,0.520717,0.473579,0.216392,0.594687,0.492368,0.0774367,0.0114784,0.524339,0.917357,0.292837,0.806,0.635617,0.16076,0.0378608,0.223936,0.348277,0.624344,0.0297943,0.324849,0.498452,0.803964,0.273172,0.0383992,0.390724,0.953631,0.172682,0.0569754,0.379245,0.348515,0.44727,0.903282,0.0161148,0.000490129,0.894318,0.641801,0.235951,0.491048,0.754261,0.590287,0.605733,0.755552,0.624834,0.654243,0.424508,0.109135,0.702194,0.837897,0.559127,0.29022,0.881606,0.248933,0.901164,0.700794,0.192837,0.0158862,0.5118,0.321823,0.318164,0.248187,0.397288,0.778493,0.148129,0.354789,0.942173,0.364395,0.703361,0.0577188,0.162673,0.463492,0.122095,0.882533,0.914499,0.734081,0.530816,0.622016,0.962295,0.594294,0.495482,0.619385,0.00917864,0.205352,0.0279375,0.866021,0.501653,0.567566,0.848847,0.205479,0.188302,0.598849,0.746515,0.602522,0.121945,0.136746,0.10682,0.725455,0.87235,0.956306,0.790815,0.909907,0.200437,0.106799,0.301009,0.813923,0.00615853,0.359424,0.454523,0.393499,0.657306,0.950988,0.735985,0.0435726,0.995063,0.209591,0.134101,0.00644284,0.57097,0.740511,0.261926,0.362611,0.112092,0.538211,0.80608,0.733114,0.874901,0.544065,0.98584,0.20539,0.359533,0.872315,0.568961,0.0763524,0.181323,0.409451,0.847208,0.440513,0.197514,0.162794,0.102021,0.939149,0.788909,0.124026,0.644369,0.762719,0.518863,0.769426,0.799312,0.138306,0.245299,0.793156,0.982987,0.804335,0.847783,0.995153,0.711551,0.86091,0.409492,0.159284,0.399806,0.708076,0.686803,0.948618,0.333113,0.405372,0.892209,0.404736,0.275314,0.51872,0.823583,0.0852977,0.900064,0.506356,0.569963,0.441582,0.222902,0.139473,0.242288,0.861362,0.481722,0.905379,0.355932,0.687889,0.538694,0.0592103,0.489451,0.273187,0.116361,0.896617,0.0619988,0.985189,0.217087,0.885699,0.303632,0.162443,0.119246,0.406864,0.303266,0.84275,0.487198,0.677151,0.82976,0.790165,0.74973,0.42288,0.258141,0.2656,0.761283,0.370688,0.949996,0.0507687,0.0268371,0.323524,0.246441,0.133754,0.0587353,0.258308,0.232943,0.889049,0.39256,0.841581,0.258986,0.708955,0.353159,0.861411,0.517806,0.696602,0.788745,0.858282,0.36296,0.495145,0.312329,0.548313,0.484014,0.726439,0.012971,0.786355,0.0786906,0.27031,0.0984297,0.00487202,0.695857,0.294502,0.459274,0.0835053,0.654848,0.0118171,0.623827,0.871936,0.48373,0.449576,0.148075,0.402457,0.304733,0.843303,0.202988,0.849963,0.914927,0.986756,0.112801,0.936047,0.93169,0.700297,0.100147,0.4071,0.911772,0.0795107,0.0152661,0.378698,0.407997,0.311375,0.339498,0.237818,0.540974,0.127947,0.67319,0.718442,0.993732,0.752768,0.498847,0.933479,0.470161,0.846525,0.838207,0.884258,0.737062,0.176474,0.236314,0.858542,0.0803859,0.660564,0.0742903,0.666291,0.422819,0.924514,0.687686,0.877491,0.852354,0.444031,0.281758,0.0413452,0.472979,0.475756,0.372893,0.530783,0.621967,0.937536,0.221441,0.354366,0.821055,0.278879,0.282459,0.499701,0.0186669,0.21034,0.965276,0.596105,0.858666,0.76937,0.75326,0.547292,0.6917,0.91921,0.326934,0.362696,0.748089,0.526002,0.501208,0.555122,0.576657,0.116298,0.837049,0.90377,0.624812,0.947068,0.362182,0.554875,0.630441,0.196233,0.772436,0.652977,0.252531,0.0957726,0.0931416,0.984085,0.46844,0.549571,0.62426,0.809563,0.666555,0.230097,0.380913,0.489829,0.434671,0.983123,0.696046,0.806125,0.720214,0.208098,0.623364,0.180727,0.53627,0.63169,0.173995,0.139388,0.882649,0.628849,0.503898,0.318599,0.899903,0.954812,0.871289,0.995773,0.583498,0.481206,0.0418475,0.840019,0.389069,0.559119,0.056532,0.010334,0.669808,0.00327033,0.075094,0.990616,0.366931,0.997103,0.533888,0.565544,0.284927,0.873428,0.251917,0.537838,0.745898,0.44107,0.259915,0.333767,0.275221,0.917026,0.793908,0.633478,0.0894629,0.237578,0.467971,0.867303,0.491046,0.764198,0.794675,0.583157,0.809218,0.854469,0.562216,0.898697,0.270417,0.716839,0.744831,0.830151,0.0823131,0.441327,0.939709,0.193402,0.639007,0.182994,0.104892,0.103026,0.672014,0.0511241,0.00066179,0.104044,0.677005,0.257581,0.140053,0.651464,0.314822,0.624399,0.75276,0.150901,0.732151,0.996834,0.356224,0.259365,0.826535,0.508096,0.673224,0.647205,0.656995,0.0639509,0.0218177,0.175414,0.708879,0.679336,0.281455,0.262197,0.442445,0.459228,0.752217,0.887314,0.992933,0.303997,0.624638,0.578819,0.0849794,0.446458,0.150323,0.193056,0.417385,0.226646,0.970687,0.318801,0.62182,0.154907,0.674908,0.161843,0.554408,0.263665,0.873984,0.50873,0.977488,0.368515,0.717669,0.0403982,0.549749,0.557136,0.393026,0.651107,0.121304,0.624863,0.137201,0.125126,0.179679,0.306345,0.429541,0.171824,0.087471,0.0197065,0.357868,0.873265,0.753757,0.384135,0.490629,0.9865,0.879965,0.0832618,0.554191,0.28985,0.6055,0.147197,0.823553,0.0447075,0.819232,0.780384,0.540006,0.0761877,0.980682,0.123537,0.662812,0.73657,0.857182,0.152302,0.0790453,0.461387,0.875915,0.905347,0.142305,0.0195042,0.599936,0.829628,0.908446,0.17639,0.654395,0.505608,0.638397,0.611701,0.00238359,0.105002,0.324409,0.173538,0.481994,0.890853,0.862267,0.901734,0.830738,0.415147,0.0171285,0.787358,0.1464,0.607008,0.586462,0.249681,0.409755,0.133655,0.810382,0.267516,0.354058,0.22321,0.0711701,0.853092,0.163939,0.509561,0.0979657,0.934016,0.415693,0.602609,0.406132,0.210685,0.792214,0.915487,0.111784,0.098733,0.119739,0.893724,0.344493,0.327987,0.657216,0.0848485,0.768484,0.337635,0.314915,0.588044,0.128238,0.360333,0.237559,0.899645,0.297461,0.195488,0.382052,0.521531,0.346315,0.80719,0.16875,0.971896,0.251328,0.814246,0.0539623,0.819864,0.0614539,0.464732,0.395727,0.662349,0.575132,0.386925,0.489256,0.736263,0.629462,0.299733,0.968416,0.71544,0.230576,0.623425,0.912255,0.704877,0.0771414,|0.132334,0.203708,0.907583,0.653663,0.303349,0.899059,0.558663,0.549042,0.410575,0.795316,0.827194,0.908651,0.76681,0.614893,0.088559,0.875545,0.250205,0.948295,0.853446,0.215301,0.702989,0.947473,0.125382,0.568945,0.930473,0.499784,0.036609,0.147731,0.180595,0.71825,0.668683,0.318338,0.934768,0.516477,0.40721,0.63442,0.163885,0.615809,0.406045,0.705408,0.183471,0.129162,0.152472,0.862449,0.879746,0.517129,0.424993,0.02857,0.520306,0.378966,0.774764,0.403479,0.673616,0.57042,0.0953241,0.570171,0.248339,0.891766,0.245005,0.599041,0.87766,0.288791,0.943465,0.591932,0.527237,0.492029,0.211375,0.535178,0.317026,0.489528,0.632347,0.354172,0.326,0.466761,0.771874,0.786481,0.277458,0.208445,0.00751287,0.641056,0.389076,0.533282,0.476747,0.872664,0.764128,0.0911717,0.324861,0.275199,0.688239,0.526081,0.442263,0.957123,0.0489403,0.354583,0.811884,0.689391,0.440769,0.425956,0.944816,0.620142,0.500411,0.230875,0.662751,0.910149,0.412314,0.204888,0.0831007,0.926543,0.92948,0.0233163,0.00304323,0.577292,0.625277,0.00345838,0.550635,0.128379,0.773121,0.646475,0.147,0.87072,0.801424,0.373897,0.377494,0.827278,0.908687,0.330369,0.229755,0.755418,0.407518,0.777592,0.458745,0.975135,0.0661591,0.808923,0.361154,0.873768,0.0223132,0.737524,0.90336,0.575231,0.483576,0.682763,0.234071,0.379386,0.884442,0.875162,0.993354,0.96182,0.660216,0.405477,0.630405,0.176918,0.71278,0.358703,0.900872,0.64816,0.709115,0.72347,0.342866,0.108389,0.889494,0.0574729,0.780176,0.56428,0.321081,0.955504,0.804163,0.33504,0.700404,0.701392,0.526448,0.203559,0.637509,0.685645,0.179475,0.187106,0.134185,0.983188,0.61802,0.695237,0.138446,0.717495,0.0393704,0.582578,0.293698,0.713806,0.489633,0.708408,0.822922,0.749862,0.71685,0.0631053,0.234661,0.623335,0.648991,0.913803,0.692457,0.907216,0.857103,0.210831,0.827265,0.49384,0.752094,0.77961,0.390726,0.51753,0.884298,0.160696,0.431956,0.924408,0.430456,0.178414,0.363348,0.938506,0.556369,0.698344,0.442472,0.913478,0.347861,0.190583,0.243793,0.216406,0.373205,0.298626,0.848161,0.763405,0.401708,0.100149,0.468553,0.21269,0.327815,0.918811,0.189197,0.458301,0.215981,0.949797,0.489594,0.0488879,0.390139,0.455628,0.069557,0.0477057,0.887886,0.251427,0.831959,0.837308,0.90678,0.0488303,0.693273,0.0858061,0.956634,0.0722181,0.503371,0.71125,0.169617,0.178911,0.398303,0.00851941,0.203351,0.295694,0.765271,0.742176,0.13388,0.0933092,0.161904,0.883267,0.533146,0.804229,0.471065,0.89651,0.166024,0.729853,0.546537,0.739173,0.986355,0.526923,0.688983,0.878307,0.475563,0.45811,0.750798,0.173194,0.87558,0.145713,0.582366,0.576881,0.0138129,0.0813763,0.693665,0.705376,0.758259,0.100166,0.323099,0.622355,0.578043,0.995889,0.986989,0.181251,0.642002,0.252006,0.423943,0.590002,0.639741,0.238936,0.232839,0.882103,0.876792,0.253907,0.217013,0.312327,0.608918,0.716015,0.626028,0.314741,0.459188,0.508714,0.991339,0.816312,0.0877979,0.944922,0.126005,0.619181,0.528817,0.0453002,0.988375,0.859784,0.0267873,0.840759,0.413057,0.0755201,0.270725,0.988853,0.385629,0.589141,0.0856662,0.0353869,0.634784,0.667478,0.146438,0.338423,0.00875366,0.378804,0.95744,0.584546,0.461481,0.662127,0.802701,0.907991,0.0622467,0.391578,0.0685166,0.95243,0.628583,0.785447,0.862024,0.264349,0.141387,0.520923,0.0243491,0.10359,0.940356,0.21192,0.339609,0.264692,0.187983,0.882202,0.129312,0.754945,0.627146,0.847479,0.293375,0.658494,0.997595,0.439216,0.549275,0.734789,0.119937,0.292909,0.368927,0.891821,0.846025,0.916309,0.152093,0.180464,0.574013,0.342175,0.177072,0.073947,0.525294,0.335769,0.00969642,0.931089,0.180371,0.434719,0.447475,0.477241,0.156753,0.515275,0.192537,0.81613,0.625755,0.0199898,0.0392546,0.570652,0.188947,0.904144,0.482059,0.959787,0.282131,0.289244,0.740767,0.548924,0.518887,0.302699,0.70125,0.659566,0.204762,0.938941,0.616686,0.53077,0.861071,0.61964,0.712427,0.614163,0.904323,0.174887,0.813254,0.677528,0.151482,0.0410891,0.719497,0.866682,0.714578,0.48616,0.899125,0.901837,0.908095,0.360319,0.165211,0.701401,0.870001,0.276664,0.844281,0.216541,0.57215,0.15039,0.802226,0.538772,0.607591,0.752176,0.181703,0.942275,0.336281,0.773806,0.85176,0.178428,0.790218,0.821977,0.82072,0.936307,0.685653,0.73287,0.33408,0.772999,0.616132,0.938267,0.371518,0.96126,0.785239,0.35349,0.947919,0.000800252,0.971093,0.74942,0.17167,0.900115,0.0877184,0.842874,0.920433,0.269308,0.73692,0.363071,0.31734,0.141096,0.963957,0.761976,0.0456208,0.311908,0.845132,0.85771,0.466219,0.132094,0.355903,0.432245,0.62179,0.619228,0.0262938,0.869039,0.0347094,0.0898365,0.645064,0.55735,0.46204,0.821257,0.940832,0.179905,0.0702477,0.749973,0.600813,0.18144,0.353309,0.546946,0.374453,0.224003,0.82085,0.0563885,0.908436,0.794032,0.341392,0.807649,0.062338,0.527041,0.362141,0.117025,0.486787,0.85351,0.300967,0.701518,0.15606,0.583858,0.66655,0.830957,0.62263,0.86995,0.0324284,0.275435,0.897846,0.118973,0.876019,0.442952,0.184015,0.502111,0.856092,0.262817,0.22678,0.523967,0.798052,0.048192,0.0305744,0.137493,0.807457,0.539468,0.573908,0.936624,0.0231614,0.000963867,0.852842,0.881755,0.325194,0.142954,0.664175,0.335185,0.161886,0.576908,0.764707,0.904401,0.345729,0.89989,0.36974,0.485303,0.546201,0.323673,0.488251,0.123903,0.68009,0.614817,0.429857,0.650503,0.521597,0.722456,0.28349,0.235755,0.585195,0.476376,0.453709,0.295817,0.249691,0.464556,0.232784,0.967333,0.464961,0.309592,0.984864,0.53671,0.731806,0.0915789,0.251036,0.683834,0.552059,0.433348,0.794946,0.258075,0.345626,0.117256,0.995498,0.481704,0.610742,0.388023,0.736048,0.753209,0.896186,0.479266,0.013763,0.513949,0.292758,0.10002,0.740098,0.0181009,0.585575,0.682908,0.523364,0.937718,0.674798,0.00258231,0.951372,0.389417,0.527342,0.73879,0.364682,0.721132,0.222822,0.434084,0.223506,0.137079,0.244841,0.54896,0.961347,0.202446,0.051106,0.922243,0.144994,0.0507452,0.0630171,0.0528615,0.480005,0.597756,0.257641,0.382297,0.783612,0.721291,0.431718,0.42171,0.0356941,0.304963,0.398735,0.457612,0.970543,0.37183,0.859547,0.095939,0.479708,0.373783,0.561969,0.593405,0.828376,0.123425,0.490271,0.420049,0.704006,0.0909791,0.590665,0.806428,0.611426,0.446258,0.768774,0.954228,0.205738,0.5766,0.118259,0.0294576,0.628843,0.21574,0.928631,0.281008,0.470162,0.903179,0.848207,0.00566101,0.48194,0.245062,0.811869,0.518211,0.130345,0.441658,0.776055,0.65667,3.93391e-06,0.697603,0.787781,0.445344,0.319457,0.0373649,0.425611,0.741208,0.489084,0.612382,0.586101,0.147178,0.44214,0.200716,0.846172,0.731333,0.0204123,0.788913,0.18513,0.550756,0.724998,0.307326,0.125712,0.285041,0.819415,0.429785,0.334178,0.0556613,0.751262,0.807236,0.363043,0.427747,0.571325,0.882557,0.620539,0.931124,0.675103,0.977531,0.120327,0.144744,0.36107,0.890722,0.689218,0.327648,0.265094,0.734299,0.739428,0.263859,0.819131,0.245061,0.456111,0.412077,0.114887,0.89515,0.931378,0.800755,0.459745,0.520483,0.732495,0.490907,0.424463,0.347777,0.709295,0.733852,0.00304335,0.501991,0.0573228,0.770354,0.457928,0.641046,0.136496,0.505993,0.188717,0.273894,0.936411,0.0255394,0.148425,0.830444,0.0043782,0.0033527,0.876763,0.639039,0.354743,0.185235,0.979137,0.597456,0.493426,0.954055,0.155316,0.708027,0.449356,0.00403863,0.937905,0.677091,0.456084,0.0469139,0.497972,0.344206,0.974491,0.369803,0.315528,0.577561,0.990885,0.522132,0.459272,0.543973,0.025973,0.175947,0.219572,0.859518,0.408996,0.457279,0.887764,0.637672,0.0719341,0.100691,0.866178,0.726617,0.463634,0.624736,0.559141,0.376788,0.850617,0.302472,0.786803,0.0653697,0.165949,0.739512,0.124171,0.790225,0.563157,0.133482,0.68488,0.370593,0.639572,0.149103,0.733313,0.783386,0.822368,0.204163,0.634585,0.848591,0.0028761,0.469965,0.848503,0.31779,0.721206,0.395878,0.128909,0.643291,0.317525,0.939411,0.833178,0.777439,0.633643,0.838575,0.616816,0.567225,0.96944,0.364051,0.524078,0.696015,0.901194,0.406974,0.220934,0.762946,0.140072,0.973991,0.959174,0.596773,0.389487,0.847041,0.987741,0.192553,0.495082,0.371457,0.218549,0.474444,0.696894,0.0460192,0.279147,0.616751,0.0604222,0.542592,0.324807,0.719743,0.859946,0.40089,0.843861,0.642986,0.197199,0.0216336,0.904504,0.348188,0.400838,0.189002,0.684596,0.787947,0.248624,0.270325,0.583201,0.711061,0.313108,0.794786,0.610893,0.431864,0.3594,0.225485,0.140022,0.996517,0.782488,0.00667101,0.581937,0.173343,0.733934,0.411569,0.194237,0.190752,0.0604931,0.415519,0.671522,0.470169,0.796517,0.900215,0.936633,0.298114,0.481803,0.652619,0.798144,0.549997,0.169437,0.661043,0.484813,0.446425,0.47836,0.379113,0.717097,0.614922,0.2894,0.482064,0.697849,0.377089,0.959416,0.895374,0.305411,0.0489337,0.681711,0.748783,0.744646,0.426675,0.150038,0.80789,0.371885,0.511609,0.733646,0.293731,0.984291,0.46255,0.935127,0.643847,0.204936,0.771155,0.715355,0.353827,0.956986,0.339367,0.91745,0.740519,0.350403,0.580229,0.614838,0.273401,0.786381,0.960737,0.439234,0.26245,0.6501,0.118017,0.234146,0.0175167,0.970406,0.366355,0.556832,0.413902,0.0531791,0.2665,0.946004,0.0342763,0.928865,0.655921,0.972734,0.685435,0.088523,0.637803,0.61661,0.516767,0.23477,0.346093,0.371239,0.0567274,0.783524,0.731332,0.812576,0.92691,|0.612771,0.235732,0.216802,0.732559,0.211404,0.9949,0.0158827,0.0299051,0.455636,0.781107,0.318741,0.327932,0.456772,0.613019,0.71562,0.540384,0.828103,0.617843,0.261719,0.0814568,0.180338,0.178849,0.0686728,0.383529,0.0290371,0.0595073,0.137917,0.400093,0.535716,0.863668,0.84226,0.0824635,0.0698789,0.879566,0.81273,0.633613,0.977641,0.55234,0.590871,0.613561,0.840483,0.251502,0.936635,0.993133,0.118903,0.564308,0.0587059,0.81882,0.319916,0.728017,0.303123,0.0898588,0.466391,0.12065,0.88063,0.103,0.381097,0.109697,0.696212,0.88115,0.287806,0.0134713,0.846872,0.914518,0.887494,0.555938,0.788032,0.157843,0.856135,0.82592,0.740315,0.476615,0.273549,0.685956,0.134348,0.892309,0.375763,0.77785,0.137168,0.86453,0.221359,0.562868,0.999638,0.58149,0.684696,0.778255,0.432249,0.0901327,0.158391,0.857507,0.582122,0.6937,0.317281,0.434875,0.6271,0.583726,0.566862,0.492462,0.939517,0.421465,0.0145321,0.233114,0.613876,0.33371,0.460484,0.266611,0.00185072,0.761054,0.987081,0.585796,0.24615,0.34204,0.986073,0.284464,0.806303,0.313337,0.475866,0.447186,0.311291,0.361139,0.668389,0.1948,0.382861,0.600924,0.0283681,0.909198,0.850292,0.22092,0.933511,0.189783,0.763892,0.803273,0.0822744,0.811036,0.498776,0.44641,0.845305,0.797425,0.589098,0.670854,0.512484,0.642268,0.712737,0.0237182,0.504376,0.723323,0.455834,0.589677,0.165182,0.342245,0.362064,0.274187,0.600588,0.128819,0.334019,0.584741,0.182874,0.907329,0.135204,0.489706,0.314664,0.074945,0.814752,0.49342,0.223541,0.823571,0.557551,0.559019,0.607901,0.75369,0.346494,0.246839,0.579057,0.148829,0.791832,0.0450924,0.0225686,0.330581,0.356064,0.197716,0.717891,0.598172,0.387567,0.621756,0.227158,0.793966,0.899341,0.650691,0.617276,0.470898,0.409655,0.851282,0.00394726,0.654558,0.653815,0.731945,0.717941,0.60883,0.150216,0.690551,0.591749,0.88715,0.68929,0.0876288,0.649963,0.352217,0.374643,0.555881,0.744877,0.646329,0.804904,0.80929,0.798994,0.908004,0.0285064,0.907165,0.246949,0.777788,0.81368,0.692425,0.406728,0.701441,0.192969,0.254334,0.813582,0.941676,0.264992,0.219835,0.613921,0.409754,0.326063,0.939313,0.0239272,0.602148,0.891834,0.937978,0.0213534,0.427556,0.240075,0.680443,0.874372,0.971737,0.148852,0.91625,0.803474,0.577484,0.0337126,0.500696,0.845743,0.870213,0.104746,0.260374,0.92248,0.171066,0.906369,0.025367,0.129187,0.88382,0.543052,0.220583,0.904617,0.0610525,0.967081,0.575408,0.0020417,0.0253294,0.714288,0.95522,0.365241,0.334234,0.323691,0.789801,0.698606,0.923614,0.27776,0.24259,0.380127,0.29231,0.141723,0.664856,0.96305,0.723568,0.204891,0.813692,0.26512,0.609374,0.270698,0.487912,0.434439,0.353002,0.940915,0.531882,0.578179,0.823311,0.384736,0.792532,0.0360185,0.0478101,0.867346,0.925925,0.476347,0.454695,0.235489,0.816949,0.829444,0.771102,0.713339,0.776253,0.561064,0.274422,0.769664,0.841329,0.331995,0.396149,0.0488582,0.756825,0.195551,0.96828,0.295126,0.32935,0.668018,0.0108762,0.700102,0.688708,0.608083,0.295798,0.478074,0.995383,0.731921,0.541608,0.290223,0.125902,0.921806,0.370524,0.871301,0.171563,0.596056,0.814224,0.465999,0.172281,0.405596,0.841945,0.748593,0.5689,0.504577,0.0342495,0.656216,0.55766,0.831211,0.634278,0.174537,0.311848,0.259926,0.605771,0.633817,0.87488,0.733241,0.971399,0.0928302,0.388004,0.279716,0.400624,0.410735,0.739456,0.534307,0.410678,0.787289,0.312518,0.727443,0.686044,0.957918,0.646873,0.229707,0.194921,0.892494,0.134515,0.817006,0.424734,0.680647,0.457972,0.904353,0.518108,0.270292,0.646126,0.656369,0.808751,0.15453,0.245072,0.504579,0.677286,0.254947,0.936443,0.50143,0.29151,0.998871,0.815275,0.209582,0.426972,0.0573586,0.0418605,0.602231,0.976246,0.994499,0.244939,0.956397,0.221603,0.585949,0.689115,0.358191,0.914917,0.664066,0.239398,0.425659,0.379846,0.477565,0.150713,0.336119,0.590243,0.786977,0.377056,0.565533,0.559558,0.148679,0.32373,0.181535,0.298681,0.678612,0.85859,0.581875,0.674405,0.231571,0.853438,0.0879573,0.0779248,0.205733,0.488616,0.172366,0.817511,0.884763,0.883724,0.936538,0.95008,0.847945,0.0567586,0.47531,0.7481,0.490078,0.763617,0.932282,0.191784,0.968996,0.0874054,0.741318,0.592866,0.134547,0.8688,0.0207504,0.28432,0.532705,0.455464,0.898948,0.861292,0.370642,0.0564727,0.798925,0.101333,0.925125,0.73059,0.947131,0.457694,0.243814,0.0739428,0.96517,0.229944,0.470199,0.878059,0.0362611,0.0626095,0.261552,0.329783,0.572787,0.941662,0.720511,0.621509,0.951352,0.330387,0.32567,0.954638,0.487483,0.5016,0.584436,0.527744,0.155096,0.91983,0.205576,0.329641,0.624436,0.863226,0.610738,0.659247,0.104046,0.65484,0.314828,0.0589726,0.371667,0.756829,0.789901,0.552661,0.592046,0.14636,0.366723,0.966957,0.0666681,0.140566,0.741,0.780957,0.282202,0.149911,0.644874,0.49598,0.767235,0.463344,0.915338,0.585027,0.508388,0.497704,0.19993,0.981422,0.336598,0.474754,0.645975,0.391676,0.532039,0.411418,0.643358,0.227363,0.749711,0.221305,0.31222,0.904585,0.454782,0.313239,0.861052,0.00577295,0.161913,0.887664,0.248853,0.35675,0.559752,0.0504405,0.537818,0.707062,0.307559,0.819189,0.384243,0.448202,0.229191,0.638208,0.288893,0.320944,0.050609,0.572274,0.73892,0.774976,0.158372,0.723934,0.170324,0.49287,0.865346,0.927406,0.340588,0.546783,0.944739,0.437675,0.0690273,0.1027,0.0300296,0.394964,0.252769,0.975764,0.325779,0.678097,0.904902,0.525423,0.681253,0.966851,0.703826,0.576263,0.247482,0.901342,0.439341,0.623545,0.525657,0.0442168,0.287424,0.307876,0.0575136,0.790758,0.216238,0.994731,0.673852,0.77453,0.942899,0.728763,0.66676,0.0764486,0.948866,0.712401,0.292038,0.89531,0.474489,0.859106,0.422639,0.624679,0.232452,0.242464,0.232304,0.482657,0.508155,0.284066,0.148287,0.049501,0.625526,0.699734,0.7585,0.474234,0.626717,0.841873,0.336158,0.0266436,0.541934,0.339706,0.451914,0.0526075,0.0869833,0.99791,0.694124,0.838012,0.439764,0.271733,0.434088,0.268059,0.506162,0.0261982,0.069464,0.0633429,0.299047,0.957963,0.184576,0.918618,0.266855,0.930965,0.0736665,0.385387,0.84516,0.338035,0.214907,0.639471,0.981228,0.367401,0.345748,0.238255,0.43749,0.315441,0.963355,0.172763,0.214521,0.161283,0.285697,0.57409,0.0504681,0.407891,0.481432,0.448578,0.961979,0.840493,0.958172,0.890485,0.255724,0.681055,0.827929,0.89894,0.462125,0.612669,0.0374411,0.622123,0.401405,0.927005,0.410269,0.875973,0.472409,0.667644,0.980163,0.747497,0.959592,0.703475,0.483549,0.89015,0.553295,0.206428,0.949153,0.706347,0.649556,0.346113,0.242758,0.177761,0.38315,0.960337,0.65426,0.647961,0.0465117,0.542472,0.424052,0.964061,0.944939,0.635108,0.200879,0.738213,0.382376,0.210273,0.731977,0.725614,0.0379012,0.805642,0.344168,0.53875,0.804176,0.765088,0.552822,0.659382,0.981954,0.745105,0.56894,0.519789,0.283854,0.121427,0.474796,0.197173,0.945991,0.0500833,0.674803,0.0789427,0.948496,0.680044,0.409913,0.947078,0.150672,0.380628,0.208954,0.260362,0.524398,0.140347,0.218523,0.70595,0.684592,0.12528,0.970029,0.99749,0.465772,0.55056,0.0513445,0.961498,0.106367,0.472736,0.0581787,0.163969,0.780967,0.241837,0.44561,0.627068,0.0796503,0.0212211,0.367362,0.127642,0.609939,0.0813602,0.0931423,0.241585,0.414882,0.132993,0.248817,0.200179,0.351939,0.446838,0.677214,0.0306249,0.328624,0.20313,0.707543,0.552431,0.367476,0.935452,0.886157,0.103045,0.297246,0.523825,0.739734,0.106651,0.242642,0.200467,0.922392,0.550277,0.865426,0.94093,0.27914,0.139961,0.00284147,0.857926,0.720493,0.68454,0.443557,0.0668744,0.527884,0.178987,0.668427,0.826091,0.623908,0.184118,0.289114,0.972928,0.037198,0.00392538,0.0969232,0.866643,0.58225,0.191848,0.178875,0.779069,0.572215,0.852095,0.796786,0.40122,0.383026,0.128219,0.951868,0.789862,0.0240149,0.494541,0.61282,0.63301,0.821441,0.362186,0.197403,0.626441,0.438984,0.314908,0.0266429,0.1623,0.782479,0.581941,0.267685,0.921011,0.602236,0.0146862,0.692162,0.638182,0.580402,0.190972,0.680692,0.595659,0.610674,0.258331,0.160322,0.864254,0.532417,0.844816,0.0182567,0.689522,0.854768,0.316972,0.488172,0.306675,0.0473266,0.463919,0.652424,0.788398,0.855412,0.597879,0.439991,0.168874,0.882033,0.101632,0.420578,0.713053,0.0644181,0.816066,0.501537,0.385154,0.487014,0.909287,0.246014,0.672146,0.496117,0.0985436,0.0127017,0.488679,0.313343,0.168326,0.905139,0.657892,0.963741,0.630789,0.690326,0.0201513,0.420505,0.094258,0.474035,0.945213,0.856735,0.600946,0.337935,0.580108,0.62727,0.815466,0.497072,0.652488,0.596067,0.392672,0.314834,0.730153,0.572686,0.294375,0.677742,0.369259,0.300167,0.398684,0.525841,0.683455,0.334622,0.321328,0.804834,0.230296,0.584559,0.485754,0.465857,0.319493,0.726697,0.493889,0.444847,0.615258,0.879226,0.274244,0.249304,0.700395,0.825511,0.621293,0.247517,0.174821,0.0773066,0.689914,0.74224,0.092376,0.461312,0.199086,0.359056,0.698992,0.831292,0.37067,0.112538,0.278877,0.486335,0.732274,0.747756,0.447696,0.68268,0.395166,0.465535,0.0931121,0.722064,0.422543,0.920426,1.38283e-05,0.526453,0.111826,0.505853,0.982148,0.99158,0.894286,0.394053,0.49613,0.155775,0.389396,0.577353,0.77522,0.880735,0.949885,0.537895,0.0913765,0.279395,0.171569,0.640429,0.094923,0.834305,0.0878463,0.0418137,0.937027,0.298579,0.625435,0.429293,0.0780876,|0.534567,0.0678048,0.695801,0.528607,0.416609,0.817989,0.447667,0.146446,0.982587,0.419909,0.349378,0.358132,0.199153,0.382121,0.30089,0.615247,0.558991,0.130064,0.766826,0.52543,0.841932,0.358458,0.318379,0.381372,0.470976,0.910534,0.547368,0.96596,0.943893,0.177096,0.511306,0.978633,0.118916,0.252624,0.317704,0.559464,0.366598,0.436292,0.945617,0.292217,0.683307,0.429712,0.121307,0.751662,0.232153,0.587979,0.118812,0.70777,0.868134,0.763378,0.271088,0.455883,0.248208,0.767212,0.442418,0.763822,0.520829,0.618389,0.290183,0.0778134,0.125566,0.0326713,0.643376,0.492644,0.313863,0.788962,0.505696,0.819266,0.959366,0.840219,0.0109418,0.403882,0.763674,0.209999,0.33115,0.11346,0.00237954,0.678884,0.239861,0.44096,0.632761,0.946151,0.63309,0.28548,0.864782,0.713277,0.69833,0.315976,0.382704,0.616543,0.75695,0.389897,0.440881,0.996217,0.113119,0.00711113,0.459606,0.304899,0.401802,0.89617,0.720535,0.513902,0.0480143,0.593917,0.6899,0.113038,0.649219,0.915799,0.130729,0.444408,0.607577,0.0159878,0.930693,0.803235,0.967692,0.957249,0.528653,0.110898,0.605977,0.470237,0.282787,0.667828,0.803325,0.499463,0.165657,0.523018,0.633856,0.716299,0.649704,0.0511209,0.199315,0.481171,0.10781,0.0248132,0.323326,0.81748,0.0559078,0.710699,0.804436,0.989515,0.176471,0.232834,0.292779,0.100274,0.986079,0.590869,0.245178,0.624401,0.231786,0.224698,0.820711,0.605273,0.786974,0.950976,0.853755,0.0290566,0.92936,0.0589768,0.143136,0.922855,0.531602,0.852021,0.406516,0.0541471,0.040471,0.654301,0.711349,0.334565,0.844821,0.15012,0.296201,0.590458,0.00525677,0.948114,0.704899,0.74632,0.04687,0.925844,0.867966,0.968468,0.493176,0.861164,0.853754,0.148779,0.474106,0.926752,0.316091,0.0799771,0.126302,0.215871,0.840363,0.162061,0.697462,0.329935,0.907959,0.164699,0.307771,0.0637887,0.287608,0.168258,0.57814,0.172095,0.00842732,0.554417,0.7695,0.526297,0.59963,0.284365,0.764879,0.503635,0.488461,0.898074,0.443568,0.529225,0.595373,0.123131,0.0399006,0.337319,0.40388,0.879588,0.23397,0.846457,0.0499274,0.605935,0.421932,0.518446,0.486107,0.910666,0.372096,0.860879,0.807785,0.933507,0.802569,0.595894,0.0496464,0.130061,0.61619,0.217514,0.743255,0.284049,0.774433,0.871769,0.500625,0.963514,0.861642,0.453366,0.955323,0.204361,0.467987,0.508457,0.0356939,0.86701,0.270678,0.564112,0.0644736,0.85675,0.223951,0.0885593,0.341176,0.947598,0.353883,0.428023,0.288421,0.62894,0.640214,0.199435,0.864706,0.932273,0.00460923,0.487659,0.263003,0.706144,0.0784952,0.0924444,0.107107,0.491106,0.170035,0.906923,0.318699,0.581321,0.359511,0.356759,0.735635,0.880672,0.222315,0.340657,0.712883,0.562174,0.418391,0.970369,0.730514,0.225333,0.957975,0.906501,0.814105,0.911142,0.431508,0.194523,0.924384,0.305522,0.587996,0.0453848,0.542316,0.97218,0.929008,0.0356315,0.243714,0.968712,0.17449,0.219398,0.872755,0.66182,0.292261,0.818115,0.472805,0.106666,0.509741,0.759393,0.829868,0.886166,0.920415,0.446187,0.383654,0.686957,0.443468,0.67783,0.719555,0.438012,0.711017,0.930057,0.750167,0.562258,0.0734921,0.491235,0.0545779,0.748851,0.510593,0.355544,0.02722,0.488386,0.146676,0.976779,0.135443,0.928929,0.390778,0.209945,0.531855,0.0534005,0.913515,0.882859,0.295185,0.0432927,0.706554,0.819282,0.133712,0.880997,0.137947,0.433175,0.695889,0.5695,0.142811,0.11098,0.837553,0.888024,0.406385,0.572742,0.0496088,0.632209,0.73396,0.187411,0.190415,0.931738,0.53605,0.456963,0.547242,0.919906,0.871782,0.0989235,0.628734,0.518204,0.471267,0.851372,0.0951165,0.571227,0.46717,0.692494,0.662169,0.279888,0.943936,0.69073,0.616615,0.939198,0.0145605,0.107005,0.0693934,0.257345,0.787412,0.61735,0.5571,0.0752281,0.607663,0.0922822,0.0283281,0.642994,0.991216,0.398388,0.716365,0.587639,0.869474,0.972583,0.107791,0.0487038,0.939078,0.237642,0.231355,0.667665,0.027837,0.306164,0.47845,0.640346,0.291908,0.978315,0.410081,0.580622,0.280882,0.0465876,0.314884,0.22772,0.931953,0.84803,0.953471,0.165196,0.8524,0.124315,0.798228,0.859291,0.690887,0.154414,0.181992,0.969236,0.971243,0.351772,0.404607,0.834679,0.887713,0.234855,0.294206,0.328985,0.972016,0.846629,0.658282,0.146958,0.478415,0.0391684,0.285898,0.470168,0.0575839,0.758959,0.42489,0.374918,0.445445,0.191709,0.999017,0.839,0.581738,0.588657,0.360376,0.29322,0.744627,0.540712,0.103162,0.52456,0.869505,0.542563,0.0386271,0.327468,0.888277,0.49919,0.450948,0.919876,0.678152,0.965183,0.592654,0.955152,0.803078,0.551308,0.221012,0.395424,0.0177667,0.409792,0.386919,0.755422,0.556273,0.899571,0.0316505,0.563084,0.470091,0.734284,0.400227,0.718277,0.983771,0.389584,0.541928,0.62252,0.290862,0.583394,0.790959,0.558938,0.898715,0.472944,0.736126,0.118176,0.473747,0.0569663,0.139377,0.246306,0.790369,0.239484,0.809321,0.337127,0.208015,0.649111,0.416363,0.514185,0.55161,0.541454,0.0440721,0.697031,0.221988,0.0290558,0.0125548,0.817995,0.329078,0.0512353,0.286404,0.259738,0.93753,0.629046,0.214938,0.603158,0.275686,0.8833,0.0742367,0.449083,0.452571,0.630461,0.149082,0.560606,0.433667,0.345667,0.930524,0.890765,0.787347,0.950375,0.0999268,0.422551,0.0520064,0.191163,0.31729,0.599735,0.38309,0.214713,0.999495,0.149918,0.296697,0.902621,0.771741,0.210256,0.00520498,0.0707311,0.119212,0.666585,0.153561,0.425058,0.353945,0.683867,0.116971,0.292938,0.194607,0.989081,0.454509,0.527553,0.287217,0.24524,0.759723,0.877484,0.613286,0.822354,0.530635,0.995977,0.665263,0.566437,0.947376,0.650483,0.393378,0.619935,0.698988,0.278545,0.0978288,0.103674,0.244883,0.613968,0.29021,0.867848,0.0251171,0.11417,0.246375,0.504185,0.802867,0.270206,0.846549,0.55574,0.0731648,0.547911,0.545322,0.570182,0.126286,0.956514,0.226475,0.684251,0.633763,0.794297,0.243235,0.488909,0.341724,0.219647,0.372178,0.721207,0.487034,0.589091,0.589587,0.133942,0.574523,0.116007,0.950147,0.312558,0.193723,0.696311,0.425127,0.942957,0.269335,0.406262,0.126218,0.482093,0.557446,0.583543,0.714302,0.558246,0.661175,0.151803,0.195936,0.275325,0.739386,0.196806,0.643637,0.119167,0.200685,0.101147,0.893482,0.614575,0.98029,0.711805,0.615806,0.383838,0.932911,0.354457,0.149567,0.904897,0.396107,0.489185,0.222989,0.75322,0.573994,0.60725,0.235435,0.963409,0.128302,0.36008,0.388956,0.77618,0.524831,0.330068,0.488852,0.219206,0.748249,0.163004,0.0215748,0.913368,0.234706,0.626461,0.253207,0.0499638,0.385157,0.585699,0.699684,0.776169,0.70703,0.620255,0.76849,0.866053,0.273705,0.776297,0.593896,0.987349,0.253853,0.615984,0.685359,0.732459,0.107806,0.729878,0.426281,0.549393,0.631294,0.263045,0.707007,0.43014,0.986814,0.245817,0.0821237,0.666224,0.257075,0.297219,0.886366,0.232,0.8668,0.539327,0.365012,0.185882,0.491648,0.452738,0.708492,0.6838,0.352223,0.623156,0.199099,0.263775,0.634104,0.575817,0.785689,0.229775,0.71691,0.147101,0.858782,0.328494,0.685297,0.446661,0.332089,0.777622,0.965358,0.996716,0.212726,0.102892,0.315848,0.0744766,0.68549,0.761349,0.683338,0.074279,0.280703,0.632638,0.398087,0.942399,0.948319,0.653447,0.0182719,0.942339,0.700412,0.385358,0.19319,0.0912625,0.440262,0.446903,0.177662,0.750554,0.929484,0.609425,0.357356,0.825928,0.222857,0.440584,0.141521,0.782747,0.824036,0.359427,0.80635,0.755348,0.404985,0.552056,0.0374993,0.604942,0.619719,0.564918,0.221143,0.308018,0.354614,0.812767,0.671757,0.643545,0.493266,0.683914,0.334144,0.884657,0.0526132,0.996147,0.966591,0.529857,0.0280588,0.24556,0.840249,0.458884,0.196053,0.553122,0.0535079,0.786855,0.793896,0.702892,0.654935,0.360102,0.699931,0.422053,0.244234,0.861674,0.271497,0.572804,0.437459,0.181916,0.790807,0.296252,0.210748,0.185194,0.925572,0.212781,0.557938,0.547248,0.547339,0.720423,0.454068,0.82701,0.430159,0.234733,0.335442,0.403552,0.471948,0.943931,0.906258,0.899941,0.989239,0.523344,0.361803,0.0347355,0.201805,0.104651,0.168101,0.0152176,0.533786,0.892253,0.957771,0.667145,0.200043,0.175829,0.463735,0.156331,0.789896,0.0734615,0.20035,0.465358,0.235513,0.107072,0.382593,0.276241,0.373041,0.552409,0.156357,0.662562,0.96818,0.146703,0.557036,0.475478,0.300043,0.221314,0.0274541,0.535473,0.47327,0.314302,0.0393744,0.131374,0.423071,0.924775,0.891638,0.509465,0.437725,0.961999,0.302477,0.110685,0.0986274,0.270315,0.722822,0.707061,0.196814,0.329268,0.327286,0.258729,0.0206859,0.122895,0.67573,0.248119,0.518012,0.0396098,0.596121,0.165231,0.634824,0.111596,0.966601,0.793876,0.226373,0.625143,0.945852,0.428547,0.804774,0.132321,0.294104,0.51495,0.722569,0.232249,0.481129,0.102167,0.24741,0.874048,0.192328,0.0945586,0.989575,0.0705801,0.420638,0.66793,0.73204,0.863698,0.956629,0.0835057,0.185592,0.754798,0.844492,0.436156,0.876562,0.529648,0.234604,0.0539578,0.664542,0.621551,0.881822,0.0732002,0.735571,0.277732,0.430096,0.613824,0.506791,0.103568,0.331652,0.494386,0.0258986,0.353193,0.186621,0.824906,0.962883,0.758203,0.470512,0.342442,0.899241,0.644047,0.263507,0.604948,0.814849,0.959889,0.614871,0.991875,0.0770754,0.945409,0.431,0.0638995,0.810929,0.992165,0.836388,0.408828,0.119654,0.00684237,0.962165,0.966114,0.774324,0.0589364,0.840063,0.566727,0.490038,0.441134,0.450934,0.944156,0.558017,0.750565,0.576722,0.0212947,0.636981,0.873747,|0.153655,0.980681,0.283899,0.18707,0.502821,0.66274,0.901975,0.428343,0.847951,0.177939,0.648621,0.558733,0.847404,0.159486,0.539845,0.999252,0.872096,0.328674,0.728094,0.964499,0.313387,0.58811,0.831134,0.4063,0.99387,0.662437,0.830863,0.776874,0.780066,0.91502,0.520032,0.0901956,0.115209,0.455658,0.333734,0.459112,0.539633,0.191366,0.135908,0.598249,0.497964,0.633519,0.260815,0.277524,0.0544441,0.820453,0.688918,0.750298,0.658525,0.629672,0.136719,0.918034,0.945643,0.908513,0.425441,0.0703362,0.641696,0.399453,0.539014,0.069495,0.717417,0.675791,0.836972,0.585288,0.711151,0.909687,0.736901,0.975413,0.515131,0.520288,0.804211,0.709701,0.344463,0.463632,0.0937448,0.604779,0.0375933,0.709305,0.64777,0.229694,0.397015,0.869714,0.129286,0.0245601,0.695206,0.569319,0.828252,0.82674,0.101855,0.723353,0.234166,0.756252,0.527387,0.580923,0.407176,0.962676,0.490168,0.108394,0.107806,0.180994,0.607161,0.905784,0.238692,0.809274,0.15715,0.460908,0.354236,0.849238,0.583629,0.944263,0.755814,0.11564,0.942124,0.651378,0.307312,0.238948,0.856765,0.506218,0.497971,0.602605,0.786714,0.950756,0.647911,0.25832,0.885195,0.976111,0.963594,0.650662,0.378968,0.518138,0.0190758,0.421414,0.368574,0.982937,0.712727,0.235701,0.0154101,0.18914,0.876885,0.319156,0.132515,0.779845,0.27295,0.885583,0.693672,0.221066,0.00155818,0.0991833,0.538564,0.0510749,0.825523,0.429155,0.615807,0.753343,0.410668,0.0174775,0.904283,0.540846,0.30134,0.126906,0.921897,0.325439,0.691064,0.21889,0.981569,0.505812,0.355012,0.361228,0.508603,0.212095,0.0159984,0.236418,0.709167,0.927587,0.611443,0.0635817,0.0445966,0.385862,0.598,0.492026,0.482056,0.899455,0.226697,0.621009,0.229034,0.427067,0.0687771,0.950713,0.668498,0.0289064,0.823658,0.0319178,0.130961,0.267033,0.658842,0.69418,0.809251,0.678281,0.322963,0.428926,0.2152,0.419535,0.333607,0.746976,0.588969,0.881154,0.607094,0.256876,0.250614,0.0518137,0.624971,0.655895,0.793047,0.382459,0.343661,0.35642,0.570444,0.145234,0.743606,0.991476,0.2802,0.774799,0.403119,0.298923,0.520196,0.321139,0.409973,0.505229,0.218781,0.594919,0.640091,0.666544,0.874221,0.993541,0.250995,0.0827796,0.568617,0.417541,0.902599,0.497402,0.124484,0.438803,0.206142,0.320733,0.632104,0.949011,0.635023,0.0799851,0.655821,0.502651,0.462201,0.748211,0.481134,0.18021,0.66782,0.963955,0.272246,0.38559,0.76007,0.519563,0.0764893,0.943656,0.7282,0.319151,0.575105,0.448281,0.529377,0.911705,0.464868,0.282685,0.997138,0.923145,0.152504,0.909439,0.477351,0.16065,0.608047,0.464832,0.484245,0.627201,0.139978,0.281513,0.308965,0.0817934,0.312129,0.544047,0.235186,0.0549948,0.869686,0.592779,0.675106,0.851018,0.196564,0.448002,0.379656,0.132168,0.334928,0.664501,0.228859,0.386585,0.798097,0.0188077,0.971009,0.899074,0.823061,0.0607848,0.400406,0.960279,0.501259,0.497837,0.45729,0.387437,0.206556,0.0302211,0.571689,0.076457,0.558693,0.384427,0.479751,0.315742,0.415914,0.611671,0.759002,0.350997,0.228646,0.496381,0.261195,0.704038,0.992251,0.181426,0.643448,0.61625,0.273379,0.791174,0.448017,0.479885,0.196522,0.198156,0.390074,0.7675,0.222508,0.973248,0.586896,0.965005,0.166256,0.116784,0.93778,0.752857,0.103749,0.310803,0.342966,0.735657,0.975463,0.964144,0.0726674,0.654706,0.453184,0.213008,0.44553,0.38074,0.276623,0.706748,0.914137,0.448226,0.622905,0.414261,0.390793,0.432949,0.938616,0.892748,0.687293,0.647045,0.429018,0.785114,0.485665,0.535776,0.617116,0.193851,0.0829961,0.121135,0.873384,0.606528,0.846246,0.385188,0.832507,0.85505,0.740471,0.992473,0.751225,0.472445,0.198289,0.2693,0.343259,0.406005,0.244734,0.972617,0.0454022,0.668331,0.190919,0.406213,0.939381,0.669011,0.0147364,0.994493,0.707904,0.367535,0.187203,0.596981,0.299766,0.0161495,0.807906,0.0484867,0.512252,0.22841,0.340817,0.883861,0.114406,0.0281926,0.317587,0.35491,0.927276,0.207417,0.348491,0.560904,0.93874,0.345038,0.219089,0.113305,0.69781,0.395089,0.832677,0.443872,0.550567,0.533818,0.473581,0.226794,0.604823,0.197208,0.0640739,0.219787,0.96585,0.751685,0.546766,0.760414,0.30453,0.160724,0.532694,0.00342083,0.49491,0.741594,0.24781,0.333844,0.272536,0.996363,0.131534,0.154676,0.0382572,0.300848,0.53863,0.247005,0.359253,0.628865,0.394557,0.462691,0.512928,0.844518,0.352957,0.70867,0.653782,0.103378,0.394869,0.163996,0.767624,0.750938,0.841181,0.554021,0.434402,0.813763,0.981191,0.73638,0.691307,0.304361,0.0664994,0.67163,0.431059,0.817431,0.543917,0.731186,0.722217,0.112261,0.568159,0.677496,0.9549,0.65278,0.705468,0.717377,0.766713,0.424323,0.902855,0.160191,0.135632,0.463491,0.960183,0.27244,0.446798,0.883976,0.331301,0.562168,0.15303,0.756226,0.176814,0.283834,0.553634,0.657469,0.235978,0.180692,0.114983,0.453793,0.0308381,0.834926,0.734467,0.210439,0.269789,0.994517,0.768645,0.757552,0.744879,0.229874,0.43699,0.0201678,0.568959,0.745087,0.0358092,0.0875553,0.773371,0.781608,0.655799,0.228914,0.941525,0.250478,0.0472116,0.0526092,0.843051,0.867779,0.578262,0.474406,0.940428,0.644189,0.195205,0.0960011,0.381814,0.192229,0.285512,0.548285,0.291906,0.405482,0.606937,0.0374256,0.228009,0.945225,0.263008,0.652935,0.583417,0.133539,0.0894389,0.404238,0.266611,0.976804,0.848893,0.853842,0.551076,0.447491,0.222823,0.725637,0.389409,0.710947,0.920045,0.994071,0.929543,0.0896046,0.647239,0.248425,0.782129,0.158412,0.654924,0.487829,0.551532,0.714661,0.223561,0.0163144,0.595981,0.964659,0.941703,0.875392,0.274508,0.477323,0.609555,0.373359,0.778333,0.329147,0.849765,0.137116,0.0736581,0.20484,0.498603,0.75835,0.586072,0.173362,0.763505,0.448417,0.181255,0.837263,0.867769,0.0386627,0.0994377,0.979992,0.304123,0.564686,0.364494,0.602693,0.342394,0.110736,0.524055,0.069861,0.113081,0.57759,0.767131,0.068881,0.541148,0.199935,0.14882,0.746394,0.123768,0.821546,0.821202,0.552437,0.995927,0.320552,0.198263,0.989238,0.857134,0.949379,0.70989,0.748783,0.720732,0.802413,0.572012,0.799228,0.863961,0.821785,0.480647,0.877085,0.466793,0.234357,0.652042,0.847981,0.162332,0.328295,0.462801,0.210826,0.0566156,0.144798,0.344608,0.184324,0.584519,0.107449,0.776664,0.19865,0.191569,0.649034,0.207771,0.46925,0.686631,0.402626,0.823662,0.494462,0.971116,0.235354,0.276923,0.0619552,0.271548,0.487724,0.153063,0.203218,0.801554,0.827438,0.673016,0.31637,0.19657,0.642542,0.404826,0.507508,0.331096,0.893167,0.562035,0.0245078,0.876435,0.830525,0.95279,0.690423,0.549476,0.458689,0.400657,0.567719,0.977219,0.182158,0.809535,0.778666,0.868057,0.773278,0.602186,0.424849,0.274707,0.644139,0.499415,0.327291,0.852774,0.599548,0.411659,0.834451,0.794209,0.255758,0.678339,0.672099,0.663402,0.163125,0.143616,0.662081,0.0600799,0.000819981,0.121634,0.59013,0.863781,0.237162,0.554058,0.412447,0.966413,0.892144,0.27689,0.998441,0.641653,0.158261,0.435812,0.840627,0.260537,0.6738,0.519473,0.00813925,0.283431,0.0345989,0.117185,0.659289,0.906387,0.11185,0.234541,0.821944,0.119432,0.597376,0.415829,0.843808,0.869145,0.692975,0.495839,0.588218,0.549959,0.530607,0.527136,0.507779,0.150643,0.810166,0.366876,0.432823,0.308569,0.0998369,0.428476,0.864508,0.66973,0.415312,0.220249,0.829503,0.517816,0.192618,0.154317,0.348726,0.724291,0.410301,0.0434744,0.80422,0.613407,0.601709,0.248465,0.353026,0.0392992,0.359435,0.90423,0.916167,0.377116,0.949906,0.171548,0.79011,0.628982,0.297174,0.0115057,0.0861788,0.0325169,0.404282,0.99438,0.169895,0.179717,0.124622,0.204416,0.915285,0.251015,0.629822,0.152977,0.599646,0.340947,0.28459,0.335511,0.819641,0.0412897,0.259263,0.32044,0.803795,0.463205,0.261098,0.617871,0.440561,0.985429,0.683587,0.152104,0.195058,0.974595,0.998678,0.515069,0.0589527,0.37068,0.912934,0.414305,0.0835615,0.311779,0.0193897,0.0271945,0.214301,0.587878,0.116256,0.637419,0.76592,0.65411,0.116145,0.638091,0.592203,0.585244,0.201283,0.597665,0.748933,0.311267,0.963883,0.0721365,0.546748,0.499443,0.394676,0.933203,0.448543,0.215844,0.388698,0.759704,0.892803,0.853515,0.032486,0.908966,0.0976549,0.5424,0.249637,0.658245,0.748528,0.997212,0.0637811,0.703073,0.353302,0.696503,0.884013,0.0993278,0.043846,0.520787,0.58459,0.978524,0.711501,0.257357,0.670148,0.325193,0.28701,0.723734,0.408489,0.712889,0.529413,0.444865,0.281403,0.676297,0.934343,0.530648,0.349344,0.438016,0.592986,0.989102,0.729737,0.405291,0.824859,0.853995,0.047543,0.508231,0.803764,0.490839,0.624202,0.250875,0.639516,0.92781,0.56796,0.863504,0.582977,0.104324,0.596762,0.810202,0.831599,0.77335,0.108798,0.503707,0.206822,0.348297,0.238289,0.377924,0.50712,0.780377,0.248157,0.311922,0.0214739,0.0949071,0.616799,0.787048,0.511107,0.993968,0.875522,0.784241,0.0793673,0.823577,0.670379,0.974094,0.252521,0.388845,0.759199,0.246394,0.91606,0.0643649,0.836916,0.255611,0.418987,0.502002,0.781392,0.130363,0.513719,0.157898,0.791263,0.677952,0.281896,0.817202,0.745976,0.530707,0.354713,0.888644,0.644297,0.755943,0.458244,0.515126,0.109236,0.56862,0.0103688,0.153194,0.109102,0.310139,0.490091,0.342006,0.412589,0.460482,0.181655,0.821996,0.647913,0.0552239,0.625324,0.83723,0.647469,0.0583298,0.367137,0.296961,0.473094,0.653704,0.933051,0.965509,0.341332,0.915183,0.578773,|0.426466,0.0467093,0.40561,0.575808,0.489247,0.062247,0.31196,0.318483,0.401459,0.392502,0.326733,0.905942,0.468953,0.553026,0.342977,0.762724,0.106976,0.0789979,0.143931,0.895857,0.958167,0.467829,0.162591,0.297711,0.730058,0.0437151,0.297041,0.860227,0.825833,0.6826,0.351864,0.84471,0.0378088,0.176698,0.182363,0.977304,0.645949,0.303286,0.439448,0.860813,0.497449,0.554193,0.717316,0.126603,0.456686,0.5919,0.921708,0.508896,0.47811,0.0484685,0.282211,0.137468,0.169371,0.737798,0.980226,0.22513,0.00593567,0.176713,0.662522,0.44648,0.335812,0.861549,0.578819,0.0436642,0.643184,0.437211,0.579639,0.221689,0.27291,0.0704052,0.659294,0.441962,0.0954865,0.0812427,0.221792,0.0252367,0.857916,0.18657,0.0546389,0.403379,0.398238,0.336795,0.622786,0.291941,0.144685,0.575825,0.650846,0.00363934,0.692706,0.192253,0.649117,0.607321,0.373402,0.993688,0.263078,0.792868,0.343655,0.595084,0.915034,0.494737,0.638016,0.807234,0.455947,0.486469,0.406299,0.0429608,0.0597247,0.223534,0.836472,0.842966,0.308538,0.521699,0.903597,0.0579689,0.647967,0.853217,0.0678502,0.214598,0.019152,0.645749,0.513509,0.984503,0.874665,0.237814,0.601106,0.439061,0.868246,0.320212,0.650057,0.0907256,0.649112,0.33312,0.082942,0.365633,0.149777,0.564468,0.841154,0.614586,0.123874,0.892775,0.338395,0.126545,0.826127,0.983836,0.323559,0.842066,0.376008,0.547254,0.994217,0.194959,0.941543,0.716,0.369992,0.632772,0.962312,0.597756,0.445208,0.991416,0.0783524,0.242773,0.478329,0.318561,0.43789,0.930425,0.148699,0.0260276,0.38475,0.317461,0.130811,0.342863,0.593022,0.350001,0.344995,0.567331,0.524055,0.386443,0.642188,0.951563,0.883451,0.165472,0.114918,0.0289319,0.685236,0.205024,0.857579,0.830522,0.412432,0.836986,0.516248,0.866406,0.85287,0.863329,0.617243,0.894814,0.747008,0.215779,0.734697,0.848206,0.636219,0.970812,0.398365,0.00370306,0.547769,0.11174,0.152738,0.0191787,0.555964,0.432082,0.665926,0.802059,0.554418,0.85843,0.803879,0.294509,0.515844,0.299171,0.716352,0.072233,0.0393685,0.205456,0.600615,0.917913,0.546656,0.871453,0.577578,0.882472,0.245422,0.548752,0.302672,0.157059,0.337036,0.863086,0.98933,0.833262,0.930211,0.108455,0.00919431,0.357937,0.685307,0.993901,0.0242314,0.0964727,0.1764,0.329618,0.5763,0.0822898,0.806115,0.996579,0.47103,0.951543,0.0669581,0.926897,0.401443,0.538415,0.621424,0.681501,0.246606,0.226994,0.511965,0.352907,0.369537,0.111015,0.919505,0.419045,0.839623,0.546627,0.292785,0.0125474,0.514311,0.667302,0.906514,0.22863,0.51253,0.776726,0.201928,0.335511,0.966919,0.730235,0.635424,0.425965,0.666214,0.876062,0.589073,0.761346,0.875589,0.687175,0.197081,0.986762,0.0264282,0.201289,0.7806,0.856739,0.272455,0.26635,0.900977,0.576974,0.606475,0.834871,0.270088,0.503758,0.815726,0.451114,0.167234,0.87285,0.590956,0.21448,0.587741,0.533019,0.565597,0.338745,0.414411,0.330004,0.970848,0.0300673,0.604755,0.593368,0.13976,0.390749,0.802466,0.464176,0.05946,0.2533,0.777945,0.0256323,0.914711,0.759923,0.55869,0.576326,0.949439,0.410189,0.100705,0.555736,0.0895183,0.0306386,0.814079,0.434384,0.143367,0.201519,0.0222232,0.208286,0.578069,0.751342,0.59107,0.48721,0.859873,0.555619,0.89814,0.85513,0.0445763,0.870244,0.29662,0.581508,0.995999,0.0082255,0.900932,0.364224,0.0736308,0.0562745,0.452792,0.959824,0.07597,0.878662,0.1564,0.980872,0.551347,0.596399,0.0284218,0.359847,0.106102,0.624763,0.328423,0.406404,0.472056,0.890899,0.891967,0.295626,0.777437,0.461547,0.631191,0.0538872,0.465446,0.666755,0.582252,0.268658,0.221817,0.253081,0.427058,0.544321,0.883777,0.163886,0.984082,0.381913,0.414679,0.590044,0.43737,0.569766,0.0750247,0.433742,0.594474,0.0916335,0.763333,0.945944,0.761667,0.121213,0.483371,0.665404,0.425186,0.706152,0.425907,0.236276,0.212608,0.857141,0.22566,0.922391,0.504517,0.676581,0.993449,0.692241,0.579271,0.296061,0.777021,0.804871,0.382314,0.885163,0.782203,0.626883,0.632451,0.742943,0.977001,0.989243,0.303482,0.947503,0.352565,0.0117182,0.752325,0.727206,0.223564,0.440218,0.160154,0.568335,0.856927,0.372225,0.131441,0.826245,0.616791,0.576087,0.704455,0.976715,0.615341,0.311786,0.78266,0.16385,0.467163,0.81289,0.573864,0.516467,0.215738,0.666641,0.979933,0.171656,0.853714,0.104746,0.586691,0.943537,0.219262,0.706931,0.942529,0.231806,0.00328815,0.18957,0.705179,0.50701,0.898328,0.0878751,0.90193,0.680857,0.165618,0.108761,0.261096,0.590928,0.472622,0.544203,0.515836,0.146261,0.659541,0.247254,0.653788,0.711825,0.5395,0.177311,0.750759,0.301349,0.078133,0.809255,0.743573,0.821494,0.782088,0.0120723,0.52033,0.991707,0.20195,0.186537,0.489986,0.63241,0.434093,0.122095,0.10147,0.385605,0.327951,0.530299,0.774481,0.152005,0.247748,0.658728,0.462537,0.0645563,0.312044,0.0227969,0.475865,0.729797,0.342072,0.394722,0.236261,0.416187,0.557013,0.885873,0.910094,0.220389,0.849414,0.93087,0.178886,0.695568,0.687011,0.885318,0.334981,0.504837,0.329663,0.745742,0.684031,0.42194,0.135785,0.148398,0.922362,0.989916,0.681355,0.0362846,0.195271,0.0334861,0.449287,0.688924,0.268577,0.228953,0.137959,0.431668,0.923892,0.368378,0.19894,0.578009,0.233705,0.738205,0.670517,0.628105,0.830051,0.439977,0.883869,0.74276,0.1311,0.216597,0.56336,0.8661,0.685202,0.513024,0.861575,0.36513,0.585468,0.356995,0.300648,0.540322,0.0471155,0.196313,0.611953,0.00608975,0.0999687,0.160695,0.564617,0.277727,0.290254,0.0100603,0.997381,0.484743,0.763316,0.782454,0.171947,0.295732,0.521929,0.631146,0.46274,0.0609973,0.708621,0.726587,0.785172,0.604358,0.506595,0.104409,0.821874,0.0431812,0.921259,0.282823,0.484191,0.615629,0.357891,0.34805,0.332215,0.00934708,0.0267665,0.918058,0.45002,0.78328,0.22931,0.713374,0.452196,0.30391,0.662107,0.0912514,0.0160192,0.642992,0.736869,0.909337,0.911261,0.209219,0.191557,0.432488,0.0138758,0.265837,0.552082,0.124632,0.837672,0.0746098,0.550662,0.88249,0.553076,0.27492,0.123683,0.826998,0.529461,0.599759,0.279811,0.03455,0.244574,0.168895,0.0578471,0.431871,0.705182,0.528098,0.795349,0.536758,0.856461,0.621844,0.241542,0.322672,0.373357,0.108957,0.971965,0.480116,0.968971,0.370636,0.0231177,0.405592,0.171348,0.768129,0.1885,0.0350986,0.912417,0.489684,0.455408,0.56197,0.7317,0.389191,0.889378,0.16354,0.0857841,0.281884,0.665182,0.245996,0.472825,0.64625,0.128893,0.695574,0.105463,0.58834,0.643504,0.372172,0.640819,0.228387,0.822583,0.433548,0.0160927,0.433135,0.210326,0.665308,0.404813,0.552935,0.514501,0.656477,0.0873178,0.728976,0.662174,0.841627,0.21477,0.765293,0.667097,0.472298,0.327219,0.61056,0.134373,0.226704,0.802668,0.40186,0.887875,0.904502,0.226305,0.0133876,0.897033,0.974462,0.243159,0.547504,0.283755,0.198595,0.943965,0.944358,0.518943,0.0963734,0.182699,0.0938523,0.187566,0.0151642,0.900025,0.554625,0.936219,0.061213,0.458134,0.0105895,0.432673,0.309536,0.491775,0.0369591,0.253535,0.44316,0.0364443,0.6575,0.602011,0.978364,0.412095,0.266651,0.319894,0.235078,0.342625,0.0304468,0.0356108,0.543763,0.690818,0.387434,0.118277,0.652852,0.491675,0.735918,0.433664,0.570595,0.737515,0.698103,0.764458,0.855784,0.424407,0.158072,0.368823,0.89017,0.615227,0.346092,0.613295,0.623741,0.00835657,0.107482,0.647801,0.752804,0.98816,0.970517,0.976786,0.768562,0.746696,0.867323,0.116864,0.223887,0.453219,0.797066,0.749426,0.056551,0.901444,0.964327,0.116555,0.747154,0.785068,0.790272,0.654169,0.528343,0.699701,0.407087,0.737535,0.59914,0.491399,0.475545,0.421333,0.362158,0.782707,0.0433735,0.679946,0.54298,0.636022,0.60167,0.34205,0.479562,0.573977,0.0270133,0.109737,0.926926,0.318515,0.160913,0.0754676,0.139419,0.332648,0.16212,0.476417,0.695017,0.918966,0.528996,0.572561,0.927588,0.430071,0.344429,0.961438,0.326043,0.811263,0.436587,0.937305,0.051888,0.272238,0.482815,0.940582,0.821018,0.334423,0.777747,0.272649,0.0317914,0.814537,0.0356357,0.579557,0.64682,0.180947,0.66169,0.976801,0.556526,0.208304,0.737762,0.326761,0.819605,0.625571,0.579616,0.703991,0.946175,0.568057,0.0877467,0.280718,0.607654,0.250795,0.574715,0.636367,0.686448,0.106357,0.915607,0.458432,0.0181917,0.114811,0.638773,0.973457,0.515135,0.567143,0.126358,0.0393732,0.534763,0.251522,0.212272,0.0216188,0.0943869,0.444922,0.51035,0.760413,0.921489,0.084873,0.582138,0.235368,0.00672656,0.0183066,0.87442,0.591364,0.672155,0.993478,0.110334,0.272247,0.59056,0.828346,0.567219,0.174694,0.433755,0.677686,0.990336,0.0355151,0.1268,0.361642,0.858605,0.0296434,0.39389,0.78523,0.259197,0.995337,0.839655,0.455752,0.874515,0.336104,0.691476,0.459475,0.36694,0.38605,0.347847,0.198235,0.44171,0.350258,0.821592,0.608892,0.907272,0.704109,0.835725,0.112229,0.991383,0.825131,0.265315,0.412559,0.254665,0.57681,0.897206,0.335789,0.561855,0.251107,0.709064,0.419303,0.00322896,0.25951,0.439124,0.626977,0.855899,0.730682,0.0921742,0.458902,0.26676,0.299683,0.431289,0.518598,0.416118,0.541864,0.41818,0.253279,0.333283,0.684382,0.374231,0.423701,0.367018,0.0637927,0.635892,0.124708,0.313139,0.450102,0.837213,0.610932,0.00409162,0.221178,0.184912,0.729486,0.621683,0.674514,0.692363,0.640099,0.273694,0.123864,0.903031,0.388907,0.815221,0.542359,0.737309,0.419633,0.336983,0.587155,0.51153,|0.797203,0.0882234,0.140903,0.787336,0.61907,0.477327,0.548647,0.905109,0.193121,0.684387,0.491711,0.385933,0.475768,0.660295,0.0713648,0.155786,0.201831,0.524626,0.454567,0.266186,0.536989,0.808192,0.331243,0.873121,0.764236,0.72195,0.89878,0.0356246,0.0683722,0.435845,0.136371,0.541251,0.156996,0.324355,0.796637,0.125395,0.0331336,0.631937,0.293921,0.499577,0.0153992,0.937474,0.264014,0.923506,0.873402,0.720873,0.122335,0.872538,0.432472,0.429849,0.065829,0.365569,0.907046,0.776736,0.675447,0.175304,0.734031,0.705105,0.636194,0.373281,0.0221347,0.626311,0.502768,0.644763,0.246167,0.0518363,0.0200517,0.211911,0.971366,0.85823,0.20542,0.157838,0.668205,0.129359,0.54659,0.356791,0.920397,0.369955,0.770213,0.239779,0.848446,0.190414,0.476129,0.0595678,0.111255,0.338459,0.725603,0.668184,0.371771,0.292739,0.0562713,0.781244,0.161125,0.0842839,0.815555,0.212094,0.55535,0.715753,0.701634,0.500409,0.217436,0.574846,0.988807,0.135662,0.209667,0.888337,0.654968,0.95511,0.726582,0.58871,0.758914,0.463179,0.484562,0.758861,0.67325,0.459915,0.289603,0.879634,0.970629,0.842144,0.693896,0.753787,0.362548,0.330297,0.0355297,0.0035637,0.865743,0.0929053,0.470316,0.186763,0.826812,0.195741,0.988072,0.841326,0.496829,0.765547,0.0209435,0.338668,0.8167,0.132416,0.753186,0.801315,0.282056,0.32638,0.811202,0.352727,0.0900909,0.976223,0.0873184,0.434862,0.151873,0.105141,0.316829,0.212934,0.422474,0.767235,0.235456,0.909455,0.665897,0.0964053,0.212041,0.484682,0.239797,0.504525,0.140901,0.339511,0.656223,0.169342,0.808895,0.89074,0.0154733,0.780489,0.603384,0.533486,0.454793,0.463022,0.119694,0.657845,0.259749,0.236785,0.0376139,0.900443,0.555363,0.257826,0.441706,0.894812,0.790384,0.0688506,0.0303654,0.629094,0.0185977,0.48634,0.287307,0.543035,0.102078,0.634182,0.971848,0.250948,0.362807,0.997002,0.401582,0.301231,0.513996,0.109112,0.0414292,0.371469,0.615064,0.0451694,0.358356,0.00700712,0.683255,0.353892,0.402976,0.483487,0.121066,0.713285,0.912925,0.859555,0.726989,0.818982,0.410756,0.520173,0.947749,0.883024,0.54516,0.718893,0.562168,0.438132,0.514312,0.427124,0.165181,0.501061,0.0700214,0.313637,0.554573,0.355698,0.0527042,0.391037,0.577952,0.655659,0.531022,0.149396,0.392266,0.650097,0.817255,0.715983,0.568216,0.870968,0.975451,0.717552,0.577733,0.0512013,0.342383,0.55044,0.587962,0.841339,0.646889,0.95103,0.852921,0.296178,0.211303,0.551403,0.584362,0.343822,0.36057,0.814466,0.668114,0.793041,0.510021,0.756786,0.00897819,0.25746,0.0618588,0.771943,0.479121,0.989697,0.0674709,0.629217,0.491086,0.229072,0.65099,0.821528,0.413162,0.272136,0.369189,0.961834,0.952617,0.658258,0.74217,0.282124,0.308607,0.852401,0.225024,0.300338,0.750328,0.0542693,0.265037,0.345186,0.77934,0.497967,0.708518,0.112679,0.384802,0.543812,0.40598,0.709085,0.27539,0.666108,0.835229,0.187786,0.0500584,0.636082,0.21612,0.244035,0.143065,0.735007,0.261368,0.500549,0.229614,0.304026,0.337955,0.22279,0.231917,0.852195,0.224544,0.702136,0.119314,0.228545,0.0594461,0.811808,0.779872,0.856941,0.488406,0.831522,0.323374,0.49231,0.996495,0.449173,0.854908,0.124922,0.0625337,0.412182,0.557373,0.548202,0.00510484,0.777663,0.0186714,0.59995,0.0055483,0.342521,0.194339,0.949241,0.594272,0.504965,0.929899,0.000986814,0.279901,0.0373937,0.75693,0.351895,0.511423,0.789492,0.245111,0.554946,0.709325,0.861919,0.546872,0.911623,0.818687,0.195724,0.528332,0.52294,0.276351,0.422796,0.165443,0.707082,0.996758,0.917937,0.478541,0.359672,0.0330135,0.889595,0.958121,0.285538,0.0094496,0.310976,0.229489,0.223161,0.933044,0.218265,0.205486,0.0110619,0.0231224,0.476354,0.522432,0.945621,0.573138,0.0704597,0.464728,0.933305,0.870814,0.820936,0.877592,0.870795,0.160882,0.18851,0.656943,0.884164,0.509099,0.0810381,0.575211,0.809495,0.497648,0.605864,0.232308,0.313466,0.835263,0.699666,0.0426469,0.518457,0.358582,0.41125,0.291543,0.31995,0.83081,0.295856,0.476846,0.526533,0.0668935,0.139447,0.482657,0.0610948,0.474807,0.797482,0.275949,0.151184,0.859391,0.0459355,0.176516,0.641333,0.39845,0.771471,0.633851,0.653554,0.0702066,0.675263,0.796701,0.92909,0.179647,0.0164977,0.908041,0.147921,0.0177404,0.623039,0.596975,0.207026,0.843388,0.50939,0.714881,0.413004,0.632777,0.806153,0.855252,0.0772967,0.270551,0.349631,0.0565275,0.585468,0.0835437,0.175902,0.517357,0.681868,0.0300635,0.604953,0.0105819,0.532156,0.0117813,0.498639,0.700333,0.846608,0.532988,0.672763,0.565284,0.44487,0.923541,0.50342,0.299253,0.235168,0.905931,0.0159907,0.341858,0.0305281,0.996952,0.881096,0.300583,0.371889,0.692609,0.683721,0.0050326,0.282536,0.465243,0.156596,0.95843,0.879337,0.211309,0.386363,0.849863,0.702679,0.67589,0.267844,0.860474,0.755897,0.213239,0.865946,0.906208,0.0310081,0.201489,0.576714,0.172727,0.237423,0.453098,0.0941263,0.591639,0.153673,0.140077,0.230553,0.157685,0.429906,0.255494,0.412095,0.674714,0.142134,0.27125,0.158358,0.768718,0.720296,0.247804,0.156293,0.776369,0.54183,0.90688,0.183173,0.162118,0.478812,0.128181,0.761096,0.500462,0.756461,0.405276,0.012424,0.859141,0.390993,0.246903,0.809293,0.098096,0.960594,0.128442,0.743935,0.419755,0.930019,0.162482,0.331858,0.332747,0.747576,0.915418,0.241927,0.476714,0.153024,0.895972,0.944273,0.28135,0.57102,0.672338,0.45251,0.46879,0.33757,0.506524,0.514811,0.639626,0.508859,0.896575,0.702806,0.169382,0.450255,0.385291,0.453574,0.276629,0.299744,0.942936,0.51396,0.920962,0.646727,0.337571,0.122694,0.962788,0.493689,0.0621823,0.59647,0.471528,0.0525467,0.716017,0.0167167,0.821855,0.37857,0.531459,0.661126,0.837802,0.736169,0.411278,0.184766,0.302178,0.650306,0.532694,0.107831,0.13369,0.915556,0.874426,0.610282,0.913975,0.423482,0.364449,0.260265,0.296788,0.716136,0.372197,0.0909531,0.04455,0.0281063,0.0880823,0.619716,0.0924588,0.582432,0.29006,0.154336,0.944939,0.829778,0.387065,0.225856,0.231384,0.708477,0.109872,0.890009,0.334424,0.700595,0.00930351,0.833281,0.491214,0.813204,0.558078,0.271748,0.739463,0.786526,0.842277,0.40449,0.686055,0.995507,0.366711,0.170051,0.324078,0.166131,0.0920661,0.392253,0.294891,0.48004,0.852065,0.57813,0.516348,0.445406,0.162492,0.82272,0.67384,0.0836496,0.977742,0.267765,0.215371,0.492212,0.880866,0.0624123,0.750979,0.186945,0.329839,0.451288,0.287276,0.676882,0.671515,0.35519,0.46976,0.180598,0.591747,0.68435,0.458912,0.884084,0.776482,0.150027,0.147923,0.584057,0.855162,0.441049,0.103488,0.980399,0.500041,0.587688,0.681747,0.852039,0.745062,0.780324,0.103656,0.712835,0.19163,0.312903,0.605258,0.234966,0.734942,0.97976,0.179467,0.289873,0.397029,0.266038,0.093013,0.286839,0.0675331,0.803259,0.114906,0.229305,0.277974,0.575828,0.280173,0.652136,0.427355,0.178601,0.837497,0.81104,0.337963,0.178423,0.052166,0.458641,0.369778,0.099065,0.0765558,0.636441,0.766522,0.143925,0.279233,0.233869,0.717302,0.046828,0.742408,0.825946,0.972235,0.38254,0.948245,0.379289,0.662202,0.219375,0.0852402,0.0854324,0.222281,0.00687778,0.483375,0.163631,0.62878,0.894222,0.592142,0.73262,0.183974,0.630462,0.997341,0.559819,0.698437,0.275683,0.307655,0.157565,0.917781,0.509779,0.168525,0.922242,0.519958,0.186439,0.90888,0.2844,0.537114,0.355265,0.245621,0.760927,0.212328,0.0741854,0.876105,0.474069,0.0985209,0.664042,0.618868,0.380598,0.753829,0.152371,0.569848,0.953227,0.341933,0.263098,0.655088,0.141555,0.00696772,0.484256,0.2109,0.723984,0.707091,0.670483,0.491107,0.291699,0.0200366,0.487981,0.753294,0.866141,0.367562,0.0323017,0.151149,0.673826,0.903955,0.734053,0.635328,0.7116,0.724509,0.956944,0.505909,0.253646,0.472985,0.232114,0.720396,0.58655,0.116218,0.823091,0.853012,0.0467871,0.653791,0.0347704,0.908936,0.0760886,0.366654,0.0458549,0.492769,0.576477,0.0489488,0.295692,0.0476182,0.215407,0.272578,0.037217,0.325965,0.940418,0.454018,0.425381,0.0100355,0.366157,0.670286,0.547652,0.94889,0.69459,0.553655,0.426854,0.66067,0.343674,0.827544,0.204646,0.496164,0.564114,0.030274,0.123859,0.992559,0.589999,0.344327,0.633334,0.554379,0.962427,0.71169,0.874498,0.452932,0.42634,0.48001,0.837147,0.592765,0.774268,0.378042,0.774481,0.597246,0.194387,0.00440776,0.0880749,0.120419,0.953364,0.109907,0.883407,0.00689822,0.584742,0.233445,0.074747,0.148493,0.902176,0.595976,0.454544,0.89334,0.25974,0.143164,0.0575029,0.589871,0.366192,0.695644,0.793875,0.742885,0.785492,0.843458,0.458961,0.199502,0.0743083,0.783647,0.210209,0.855797,0.714835,0.705378,0.114999,0.914262,0.659796,0.956111,0.240839,0.262508,0.551758,0.4459,0.43798,0.808618,0.772094,0.559071,0.208992,0.72471,0.265936,0.947787,0.604563,0.1979,0.104155,0.963036,0.5639,0.232743,0.51006,0.912998,0.356919,0.789292,0.922525,0.952592,0.739166,0.62824,0.187612,0.713397,0.722462,0.0915121,0.0540216,0.400364,0.998556,0.76509,0.178107,0.0681925,0.946675,0.241008,0.348256,0.639242,0.94414,0.731066,0.779103,0.409363,0.56383,0.755382,0.300053,0.584168,0.0432643,0.929266,0.60985,0.760033,0.612852,0.992617,0.352899,0.782041,0.571971,0.397073,0.194882,0.849543,0.681768,0.218913,0.0250686,0.871517,0.908194,0.474922,0.578084,0.223021,0.50209,0.863323,0.483131,0.70329,0.808778,0.958465,0.583747,0.24488,0.786903,0.497173,0.562508,|0.932435,0.281032,0.485171,0.468357,0.969281,0.484359,0.924142,0.754845,0.551843,0.462875,0.457595,0.0869182,0.0262037,0.131374,0.128624,0.462489,0.274934,0.0171325,0.802718,0.29837,0.0769904,0.730413,0.936994,0.160751,0.872091,0.0101458,0.843111,0.526991,0.394754,0.458687,0.826263,0.169333,0.613162,0.882936,0.505746,0.0785224,0.725246,0.340909,0.247468,0.075567,0.790343,0.629856,0.629664,0.439038,0.832743,0.55483,0.186859,0.558305,0.956741,0.104536,0.020506,0.84598,0.193389,0.409983,0.690441,0.209362,0.593293,0.0383811,0.782546,0.372736,0.627086,0.82185,0.186127,0.821371,0.838928,0.101247,0.129139,0.0359107,0.0259719,0.483801,0.794178,0.691401,0.752192,0.116963,0.847255,0.140051,0.656254,0.248562,0.255317,0.23639,0.548031,0.64198,0.352259,0.272289,0.58697,0.780947,0.463251,0.523,0.124783,0.458038,0.783712,0.5865,0.857887,0.136588,0.402853,0.320162,0.395157,0.60185,0.0337802,0.791669,0.995219,0.812506,0.521969,0.515365,0.10274,0.772738,0.289919,0.632773,0.00195849,0.991191,0.18587,0.813916,0.886186,0.206578,0.679519,0.795745,0.827501,0.569898,0.0571517,0.20395,0.260734,0.43652,0.00397199,0.145763,0.236727,0.736747,0.727941,0.497777,0.630728,0.101206,0.750492,0.22879,0.253264,0.629996,0.148902,0.931786,0.0520594,0.383384,0.652289,0.406385,0.558884,0.944866,0.886696,0.423387,0.947986,0.346097,0.701207,0.405264,0.850468,0.971563,0.00375736,0.747209,0.947515,0.367613,0.105239,0.2945,0.271894,0.100299,0.681995,0.740192,0.552628,0.689105,0.059245,0.945503,0.74999,0.702622,0.664348,0.604256,0.708539,0.972514,0.269616,0.353937,0.996469,0.988954,0.701593,0.0762252,0.183869,0.362749,0.46102,0.905332,0.187981,0.59954,0.5698,0.109711,0.883299,0.0461688,0.776704,0.0213368,0.157184,0.738588,0.669445,0.479716,0.862426,0.783381,0.969975,0.893158,0.9141,0.769756,0.0424921,0.805785,0.850708,0.984984,0.207868,0.233135,0.39164,0.322068,0.449179,0.841073,0.886534,0.964309,0.992543,0.696207,0.292525,0.795264,0.86178,0.174827,0.98611,0.0806664,0.925302,0.808931,0.562753,0.368251,0.7899,0.581467,0.0288432,0.922282,0.417542,0.0610596,0.94556,0.123733,0.952708,0.720214,0.807109,0.394987,0.742015,0.877311,0.717566,0.321527,0.676837,0.0421801,0.515407,0.475997,0.250762,0.516453,0.494394,0.801184,0.432043,0.956556,0.0479046,0.0588297,0.617398,0.810673,0.926739,0.0279371,0.974999,0.521201,0.000201046,0.403753,0.751629,0.426863,0.295623,0.0107362,0.0566797,0.630643,0.665722,0.809907,0.0206964,0.607917,0.369465,0.185914,0.600947,0.894439,0.482929,0.0962499,0.968716,0.90501,0.47491,0.967609,0.777969,0.160385,0.607823,0.605761,0.142334,0.0116979,0.273366,0.774981,0.173752,0.599598,0.595636,0.160849,0.195318,0.955458,0.486194,0.0790771,0.973249,0.698893,0.0180277,0.94974,0.831295,0.299518,0.830699,0.564547,0.202637,0.0550904,0.0651557,0.309985,0.948326,0.975167,0.408538,0.636965,0.830684,0.600573,0.738253,0.828253,0.158925,0.126432,0.823826,0.42151,0.119378,0.37925,0.0559204,0.0652009,0.88794,0.310264,0.747866,0.763268,0.0258539,0.797975,0.404688,0.347811,0.259435,0.469007,0.456824,0.123778,0.639059,0.564993,0.624842,0.0675756,0.406304,0.550216,0.840621,0.761006,0.161354,0.243302,0.654812,0.497696,0.574931,0.962481,0.190037,0.0226064,0.78934,0.593079,0.36238,0.967494,0.39237,0.0332183,0.648756,0.886179,0.178295,0.875184,0.126448,0.889283,0.377492,0.142715,0.0303321,0.569803,0.863455,0.953105,0.99187,0.453027,0.384747,0.777964,0.762173,0.94667,0.823146,0.262074,0.697052,0.308843,0.147549,0.878758,0.532988,0.875298,0.297787,0.804008,0.712878,0.281544,0.133376,0.14991,0.346973,0.933679,0.142319,0.377475,0.147031,0.646542,0.27239,0.547242,0.831059,0.163001,0.307475,0.171915,0.754608,0.0342682,0.484518,0.407024,0.121412,0.430078,0.31092,0.428407,0.285887,0.36846,0.374262,0.494876,0.899517,0.482831,0.111802,0.869102,0.588555,0.136399,0.838718,0.104864,0.285555,0.834093,0.0394102,0.153316,0.0290704,0.602997,0.917231,0.332622,0.933982,0.884617,0.174191,0.0682608,0.57214,0.160324,0.614237,0.827841,0.919693,0.23902,0.71359,0.792743,0.490688,0.353001,0.194504,0.904941,0.654831,0.511237,0.803132,0.732515,0.221366,0.238001,0.121322,0.968773,0.767358,0.57066,0.270326,0.0192045,0.822135,0.0647137,0.654025,0.876731,0.0192848,0.800366,0.891132,0.978635,0.464144,0.539793,0.484038,0.30268,0.146004,0.433713,0.701038,0.255011,0.967761,0.884223,0.356072,0.860439,0.167457,0.86763,0.0160155,0.86979,0.585226,0.0266418,0.429761,0.0294484,0.832461,0.890535,0.736266,0.87636,0.0301806,0.172632,0.88807,0.766059,0.837193,0.0138149,0.937623,0.576769,0.325915,0.10668,0.933479,0.307175,0.274426,0.123106,0.983859,0.801938,0.554745,0.743738,0.645692,0.443532,0.0477297,0.92644,0.778754,0.372696,0.376344,0.00104195,0.222864,0.895903,0.114243,0.00420052,0.39813,0.672118,0.795683,0.416902,0.923953,0.458824,0.862226,0.384556,0.609531,0.481575,0.807479,0.319197,0.130431,0.0103139,0.0491652,0.641972,0.607447,0.655529,0.130758,0.00495207,0.177848,0.725441,0.24545,0.901491,0.846056,0.851227,0.824136,0.0911482,0.816574,0.320736,0.86415,0.599203,0.225725,0.323816,0.347826,0.992879,0.0110309,0.569504,0.45691,0.599544,0.659774,0.0882892,0.429622,0.0611479,0.663496,0.292101,0.306424,0.401144,0.0362669,0.0236045,0.929321,0.740227,0.35352,0.421798,0.835328,0.471722,0.23132,0.651154,0.889788,0.221417,0.219169,0.892424,0.202133,0.179897,0.449335,0.355613,0.360182,0.345361,0.285338,0.623913,0.964682,0.137989,0.384062,0.193965,0.13599,0.598021,0.595688,0.805769,0.724988,0.393671,0.0347078,0.21918,0.535377,0.825024,0.275718,0.451281,0.0942576,0.429935,0.522784,0.683878,0.924195,0.367013,0.0944026,0.68074,0.671115,0.853327,0.966461,0.987351,0.476373,0.597372,0.629154,0.107946,0.106727,0.815424,0.379666,0.624453,0.22086,0.193882,0.0791699,0.550021,0.643471,0.239184,0.218109,0.26828,0.617381,0.46343,0.661977,0.862766,0.0513963,0.161006,0.494749,0.547956,0.646245,0.441726,0.776842,0.927853,0.739876,0.870799,0.00177032,0.429751,0.680027,0.902855,0.773567,0.995481,0.186573,0.0552858,0.997328,0.414265,0.87524,0.206282,0.338801,0.760668,0.72796,0.469122,0.931939,0.630821,0.496726,0.457454,0.129512,0.698642,0.15468,0.349318,0.0340081,0.877838,0.83333,0.335381,0.0515998,0.355368,0.388312,0.0101637,0.702137,0.112343,0.415455,0.716409,0.364229,0.112613,0.671015,0.778055,0.396519,0.857112,0.644814,0.220313,0.06574,0.262657,0.655169,0.739695,0.607966,0.835794,0.796639,0.235085,0.0363302,0.385108,0.619785,0.785236,0.0988012,0.789967,0.836907,0.353847,0.121472,0.626912,0.531645,0.687697,0.0237756,0.177795,0.386432,0.448383,0.91328,0.294303,0.750297,0.472307,0.0400717,0.518625,0.118683,0.994699,0.0293275,0.80793,0.869877,0.244042,0.749869,0.666448,0.567566,0.4782,0.110022,0.127799,0.0478336,0.540178,0.745743,0.802142,0.841726,0.159539,0.815546,0.0227497,0.701604,0.819525,0.793711,0.375927,0.439398,0.0663483,0.807096,0.730158,0.871308,0.82237,0.298679,0.75213,0.315583,0.476274,0.793385,0.378517,0.725359,0.209332,0.756137,0.742562,0.311334,0.697505,0.968655,0.695807,0.649928,0.933185,0.444001,0.433575,0.325257,0.475812,0.698993,0.335986,0.356241,0.712163,0.702729,0.130886,0.233552,0.0868977,0.917661,0.811808,0.753171,0.101472,0.65869,0.412181,0.434533,0.808389,0.50943,0.396665,0.207818,0.319446,0.598871,0.683663,0.447343,0.609097,0.741506,0.317617,0.345619,0.0462153,0.342304,0.161854,0.684873,0.342886,0.978832,0.178426,0.63285,0.177984,0.515381,0.691156,0.366645,0.45079,0.254327,0.793594,0.137684,0.951917,0.536336,0.313702,0.442955,0.642902,0.970121,0.921322,0.275045,0.63419,0.47996,0.101364,0.815376,0.88542,0.269772,0.503715,0.0399455,0.875766,0.77832,0.111505,0.555348,0.610439,0.175083,0.562516,0.910461,0.123483,0.60263,0.596921,0.462629,0.969784,0.858642,0.289626,0.438515,0.479301,0.207411,0.775014,0.952644,0.615091,0.0394577,0.113475,0.973023,0.0284104,0.637302,0.924664,0.904881,0.827892,0.384877,0.693793,0.0236549,0.0587683,0.201237,0.370182,0.230547,0.413177,0.607565,0.525617,0.225835,0.673657,0.309286,0.103434,0.466179,0.478315,0.590201,0.714448,0.749019,0.508925,0.129211,0.60462,0.284218,0.704733,0.13806,0.841552,0.709394,0.358413,0.852371,0.342755,0.935696,0.623154,0.500527,0.899754,0.409403,0.885128,0.0137139,0.754976,0.0967016,0.928556,0.0717779,0.824286,0.828833,0.473355,0.861548,0.220297,0.43454,0.965509,0.371254,0.28113,0.128805,0.844098,0.20148,0.603311,0.0295171,0.638731,0.486455,0.82847,0.917348,0.721691,0.90884,0.199262,0.30927,0.902281,0.0771766,0.532978,0.173999,0.86225,0.752129,0.514272,0.917205,0.205727,0.941771,0.422359,0.0141671,0.617902,0.91611,0.711156,0.484389,0.478215,0.038072,0.610044,0.748907,0.347554,0.0859867,0.518399,0.668352,0.112149,0.558211,0.789618,0.873034,0.533558,0.990214,0.491587,0.530628,0.207436,0.337711,0.775062,0.0738655,0.691482,0.233505,0.327101,0.98027,0.321482,0.661918,0.0515383,0.497888,0.968544,0.371078,0.613306,0.286402,0.259975,0.155849,0.0683543,0.41676,0.0706371,0.408159,0.0181556,0.839821,0.526273,0.57041,0.979582,0.634668,0.285217,0.719847,0.318959,0.0531803,0.461176,0.831845,0.396549,0.0881169,0.293717,0.172162,0.149634,0.38807,0.923577,0.234312,0.869369,0.997167,0.00514048,0.261394,0.151906,|0.3579,0.12111,0.535305,0.752034,0.658867,0.126323,0.799032,0.935873,0.498,0.537875,0.186947,0.675808,0.51047,0.580566,0.550185,0.979096,0.995903,0.833623,0.826181,0.679429,0.197779,0.813018,0.561048,0.176596,0.177983,0.344054,0.764851,0.652343,0.208382,0.221199,0.760982,0.0670363,0.975869,0.947054,0.296695,0.864058,0.7022,0.830428,0.691346,0.123556,0.66475,0.324863,0.060288,0.615928,0.949857,0.199986,0.422121,0.51936,0.924144,0.100914,0.246049,0.165743,0.0207612,0.415478,0.0953833,0.749297,0.648118,0.790141,0.443257,0.663807,0.901659,0.174506,0.0240182,0.89664,0.0995216,0.964764,0.0508093,0.37256,0.0788212,0.830311,0.514431,0.639747,0.473292,0.0471894,0.581194,0.19868,0.405366,0.748,0.514473,0.842166,0.413431,0.162058,0.0293335,0.663592,0.27909,0.536075,0.774302,0.654782,0.207983,0.751513,0.702424,0.938523,0.508261,0.952907,0.2191,0.99386,0.952802,0.390631,0.982758,0.509876,0.36699,0.726166,0.97157,0.913712,0.450662,0.962031,0.896771,0.484185,0.674131,0.0879909,0.840591,0.839018,0.261645,0.229243,0.590353,0.0831417,0.554307,0.774056,0.110861,0.751953,0.325766,0.803229,0.0726975,0.98295,0.949185,0.985201,0.609944,0.249039,0.174894,0.0537226,0.517418,0.116002,0.641611,0.901822,0.458654,0.00127524,0.657965,0.0989916,0.716303,0.89559,0.640403,0.929369,0.643951,0.096868,0.819986,0.0841534,0.319779,0.0898066,0.579917,0.0812152,0.454813,0.598383,0.578949,0.432029,0.46861,0.70022,0.977312,0.989836,0.913609,0.310289,0.186009,0.421715,0.400781,0.965205,0.406724,0.424463,0.627029,0.5979,0.17576,0.579796,0.742284,0.671824,0.690907,0.531127,0.951684,0.774433,0.385318,0.224137,0.198359,0.717289,0.450383,0.566045,0.175493,0.908141,0.631084,0.169243,0.0260168,0.513254,0.87738,0.149642,0.925379,0.257998,0.825673,0.0498549,0.0518166,0.377104,0.546977,0.112654,0.0903345,0.710199,0.784911,0.761675,0.817604,0.832901,0.737896,0.7704,0.486316,0.955326,0.0631743,0.4008,0.363971,0.111635,0.709011,0.953597,0.438343,0.927283,0.194493,0.596368,0.0809972,0.281229,0.407085,0.876306,0.173026,0.913834,0.0862135,0.929847,0.743881,0.276765,0.462952,0.976146,0.180429,0.653456,0.267759,0.437244,0.532292,0.313034,0.427632,0.947993,0.0194408,0.484949,0.270199,0.950232,0.453507,0.819406,0.0496898,0.861208,0.381423,0.218872,0.487404,0.171266,0.525368,0.304613,0.361502,0.644201,0.420361,0.524488,0.036938,0.254713,0.34534,0.245182,0.88344,0.742626,0.686303,0.487524,0.816885,0.731075,0.567518,0.673093,0.214162,0.134047,0.963706,0.926503,0.961575,0.927513,0.449392,0.457722,0.866056,0.307791,0.145221,0.0134828,0.466585,0.374435,0.7288,0.506705,0.967814,0.134811,0.0306033,0.146932,0.48442,0.969474,0.504968,0.647344,0.128885,0.211863,0.618051,0.0525255,0.418305,0.746236,0.480945,0.435113,0.107065,0.542878,0.506403,0.684421,0.775746,0.631494,0.214267,0.199965,0.950756,0.288223,0.968852,0.937999,0.124852,0.279641,0.912664,0.692882,0.92217,0.171454,0.459236,0.602511,0.432969,0.188153,0.422693,0.0209903,0.36688,0.545995,0.15999,0.0763867,0.853095,0.480289,0.769118,0.247318,0.852449,0.394463,0.801293,0.429892,0.167886,0.772172,0.791392,0.297436,0.151562,0.754165,0.192376,0.669118,0.116286,0.64445,0.72374,0.61493,0.981435,0.239241,0.436864,0.416317,0.252054,0.718205,0.585367,0.159707,0.647166,0.763115,0.869535,0.963114,0.0623991,0.646089,0.902327,0.181891,0.906617,0.835604,0.335074,0.198015,0.920827,0.346966,0.818959,0.290327,0.38013,0.155007,0.774376,0.624868,0.92633,0.816892,0.577135,0.753668,0.565934,0.785834,0.691284,0.702988,0.658505,0.45655,0.664199,0.0418035,0.669671,0.690748,0.454196,0.10111,0.819823,0.966655,0.06859,0.344089,0.189071,0.316964,0.708455,0.454384,0.899647,0.41565,0.0888752,0.237917,0.837484,0.290616,0.0342126,0.339254,0.987136,0.333981,0.356653,0.369598,0.535946,0.40345,0.977714,0.819611,0.377134,0.965457,0.57796,0.0167397,0.664275,0.510055,0.389261,0.274295,0.816197,0.231195,0.845319,0.927744,0.5537,0.942534,0.0586981,0.601613,0.178792,0.799275,0.901231,0.0388145,0.712824,0.0552097,0.451316,0.57358,0.225144,0.0271922,0.355602,0.804616,0.262606,0.25001,0.106028,0.122949,0.399117,0.849162,0.223542,0.258402,0.0196857,0.121446,0.834467,0.595694,0.407526,0.092539,0.00468069,0.45629,0.111334,0.766315,0.272111,0.13252,0.613547,0.609839,0.0609123,0.325761,0.583152,0.416423,0.872731,0.493239,0.105478,0.418499,0.417558,0.667182,0.64881,0.434926,0.174064,0.426151,0.179337,0.876897,0.00419199,0.800576,0.961203,0.233932,0.414493,0.193903,0.271869,0.713574,0.386694,0.52615,0.837262,0.0851187,0.889557,0.932037,0.302347,0.219663,0.589985,0.0621158,0.797231,0.434945,0.373608,0.271985,0.171663,0.273409,0.865101,0.0866911,0.483715,0.72795,0.269281,0.212328,0.27622,0.80378,0.438973,0.493266,0.911363,0.130486,0.943672,0.795986,0.381278,0.865932,0.834347,0.501746,0.766984,0.646168,0.370329,0.628216,0.16721,0.98181,0.822206,0.973355,0.971286,0.995957,0.966152,0.536672,0.866821,0.29311,0.852948,0.873444,0.831999,0.730182,0.429688,0.937971,0.308449,0.0536479,0.122503,0.162064,0.36687,0.713461,0.942947,0.272465,0.224395,0.918756,0.457366,0.00157446,0.107455,0.49125,0.717716,0.332588,0.837693,0.916853,0.980557,0.910653,0.474502,0.26551,0.959444,0.244829,0.113071,0.122993,0.347747,0.245566,0.0593423,0.584896,0.591854,0.529027,0.55683,0.374717,0.861463,0.414797,0.839025,0.487079,0.966046,0.27642,0.077781,0.555936,0.138599,0.231325,0.465631,0.937602,0.622911,0.711726,0.0267889,0.822654,0.0410405,0.617397,0.000759184,0.286303,0.307054,0.934266,0.443599,0.735583,0.538714,0.0414026,0.365206,0.667362,0.523071,0.0903016,0.421982,0.883778,0.0516405,0.148191,0.0688539,0.724085,0.642852,0.954271,0.911273,0.791668,0.843844,0.598159,0.797335,0.812529,0.267468,0.412666,0.00903314,0.663922,0.0983884,0.182116,0.575047,0.208224,0.713776,0.680109,0.983827,0.548949,0.141456,0.222057,0.060077,0.248989,0.260755,0.22128,0.464407,0.261804,0.17056,0.235799,0.511158,0.978644,0.625877,0.482856,0.577676,0.647623,0.338746,0.551881,0.438334,0.997019,0.846085,0.533727,0.512872,0.447097,0.212873,0.666495,0.665398,0.202652,0.934185,0.172517,0.55936,0.879952,0.0232326,0.572867,0.0649633,0.604036,0.0573602,0.324237,0.084895,0.441773,0.349365,0.97799,0.805757,0.996359,0.896256,0.974177,0.199264,0.778184,0.273569,0.801753,0.514205,0.140176,0.477295,0.0281167,0.431489,0.998575,0.777775,0.553155,0.633163,0.943755,0.298153,0.0184391,0.214916,0.834582,0.993635,0.754892,0.359401,0.0135818,0.54195,0.917762,0.61514,0.98192,0.961967,0.808387,0.424319,0.954176,0.665918,0.738886,0.578596,0.369956,0.340313,0.238535,0.560958,0.0844943,0.0740106,0.988261,0.821862,0.913515,0.484352,0.800997,0.0795351,0.291998,0.775459,0.197905,0.193166,0.559512,0.0463791,0.835564,0.7959,0.527153,0.530216,0.956021,0.230159,0.19488,0.80594,0.173993,0.98074,0.951474,0.086244,0.964882,0.560178,0.706307,0.0814987,0.472718,0.438412,0.305421,0.952569,0.384762,0.321718,0.484315,0.747343,0.945601,0.328669,0.7492,0.374735,0.349711,0.828072,0.51848,0.195663,0.754084,0.996822,0.465227,0.610412,0.385171,0.322579,0.336719,0.862613,0.555351,0.292014,0.0742152,0.225331,0.188481,0.887424,0.216844,0.589787,0.261037,0.108214,0.117953,0.89011,0.348117,0.372259,0.795806,0.302902,0.440192,0.43219,0.332431,0.950696,0.671048,0.333141,0.687555,0.136377,0.977003,0.836836,0.493656,0.752683,0.197781,0.929925,0.196827,0.279524,0.595006,0.215299,0.755586,0.0485464,0.252354,0.688166,0.721326,0.772168,0.792035,0.858024,0.437528,0.43865,0.761425,0.984065,0.930953,0.941014,0.565416,0.217178,0.728636,0.856183,0.701006,0.906018,0.599145,0.556113,0.662647,0.48289,0.845334,0.191853,0.148984,0.217462,0.827288,0.279098,0.0382763,0.537221,0.464139,0.521102,0.387085,0.884486,0.88807,0.400918,0.420736,0.690298,0.268521,0.241553,0.026924,0.886349,0.820701,0.460723,0.8703,0.399838,0.359172,0.383801,0.529255,0.860736,0.238687,0.278124,0.241708,0.175931,0.31038,0.153675,0.842509,0.0635166,0.357342,0.052343,0.42429,0.851208,0.912594,0.042235,0.657687,0.785946,0.835174,0.110284,0.48382,0.0633821,0.314828,0.00345671,0.0119289,0.743306,0.899509,0.874155,0.770288,0.96199,0.651204,0.247665,0.0964571,0.204944,0.832029,0.75949,0.677303,0.980173,0.704473,0.416604,0.0390496,0.372048,0.756547,0.504543,0.81809,0.376446,0.0647966,0.595864,0.427161,0.544301,0.576219,0.465382,0.295969,0.797666,0.14105,0.321512,0.568986,0.86442,0.974053,0.465194,0.080345,0.424039,0.863844,0.772039,0.249924,0.305615,0.134151,0.560773,0.923294,0.929077,0.113174,0.625121,0.764705,0.456611,0.151351,0.061935,0.507029,0.626144,0.480358,0.150105,0.256327,0.830584,0.709035,0.482748,0.486139,0.845419,0.403347,0.405905,0.992441,0.813435,0.849711,0.831405,0.408728,0.697563,0.258678,0.496126,0.820005,0.666155,0.903754,0.124892,0.0377516,0.557699,0.42037,0.650455,0.768135,0.274557,0.937148,0.956453,0.00250077,0.632886,0.179782,0.944192,0.506517,0.830953,0.521836,0.540782,0.353296,0.103966,0.439481,0.264687,0.323062,0.0169109,0.069634,0.941173,0.342313,0.996228,0.802815,0.991833,0.668401,0.0916268,0.165649,0.538788,0.403383,0.588438,0.165831,0.720056,0.0403653,0.235988,0.440157,0.87179,0.550448,0.962886,0.253513,0.68919,0.465504,|0.924289,0.216481,0.515577,0.795193,0.537213,0.802306,0.657249,0.0334626,0.423648,0.432889,0.658704,0.925681,0.623614,0.526357,0.766634,0.812239,0.548023,0.0880471,0.384369,0.426312,0.647868,0.407173,0.514858,0.393784,0.53829,0.813838,0.23523,0.749855,0.266458,0.313998,0.709955,0.264852,0.12539,0.882597,0.251984,0.860435,0.960157,0.931138,0.508288,0.460778,0.558063,0.148537,0.626332,0.845477,0.305441,0.527231,0.320812,0.206023,0.026013,0.404673,0.7667,0.141892,0.95226,0.489655,0.712892,0.143415,0.46146,0.114239,0.80464,0.583042,0.608856,0.412788,0.947761,0.949488,0.833847,0.627546,0.686009,0.687371,0.00296319,0.156634,0.352264,0.0436267,0.205368,0.63973,0.739882,0.89588,0.307802,0.887026,0.293066,0.0409793,0.171627,0.442746,0.3341,0.0417401,0.941503,0.221353,0.866203,0.205528,0.528862,0.480014,0.85056,0.236375,0.491385,0.69812,0.883716,0.980719,0.529494,0.836712,0.850625,0.115123,0.398367,0.0330291,0.246096,0.681472,0.560066,0.810315,0.992484,0.200521,0.848933,0.454098,0.780235,0.802596,0.337939,0.0273973,0.015219,0.353652,0.322819,0.310345,0.458527,0.0967749,0.501564,0.257326,0.105771,0.00405693,0.354022,0.721745,0.966533,0.982286,0.161303,0.212167,0.183107,0.724423,0.519424,0.545217,0.525527,0.916029,0.453396,0.372674,0.39843,0.648039,0.178581,0.506423,0.626426,0.91744,0.280302,0.704809,0.681169,0.473329,0.94407,0.365396,0.264602,0.949656,0.385655,0.540262,0.470882,0.817321,0.88565,0.583906,0.662723,0.0924197,0.506934,0.631178,0.798319,0.213928,0.429927,0.588927,0.0265242,0.274437,0.329226,0.37196,0.527009,0.939862,0.592066,0.760653,0.335344,0.645282,0.975956,0.735271,0.263493,0.574627,0.224115,0.203508,0.0530719,0.813597,0.996944,0.916916,0.718702,0.634407,0.163466,0.556719,0.177082,0.325213,0.820415,0.780622,0.0450553,0.681599,0.537732,0.0966505,0.686307,0.709326,0.751999,0.87931,0.334503,0.710896,0.301487,0.548888,0.968038,0.709173,0.645617,0.655466,0.195731,0.431013,0.635921,0.391649,0.0450212,0.12129,0.261097,0.650181,0.324356,0.611714,0.650581,0.231388,0.331651,0.835821,0.238773,0.25366,0.762316,0.046461,0.425824,0.733201,0.794085,0.442126,0.630945,0.156717,0.129825,0.506623,0.454372,0.869569,0.330272,0.20819,0.272401,0.171689,0.0683391,0.745108,0.3382,0.244747,0.101322,0.409459,0.1412,0.451669,0.458455,0.0487459,0.690436,0.192426,0.494785,0.715776,0.894719,0.916599,0.16277,0.0119984,0.617449,0.395747,0.904202,0.60416,0.276186,0.0882235,0.451955,0.82278,0.568349,0.772977,0.315107,0.640494,0.874028,0.0499511,0.843708,0.756702,0.479384,0.316806,0.0819419,0.678998,0.676566,0.561077,0.906406,0.259803,0.304104,0.561608,0.309792,0.233908,0.489698,0.156503,0.830611,0.862255,0.0313987,0.581163,0.680837,0.0285574,0.738767,0.905662,0.0133587,0.7004,0.348123,0.742384,0.136813,0.126901,0.155556,0.91778,0.85272,0.998296,0.579302,0.555416,0.177236,0.0776913,0.180777,0.591026,0.501178,0.181695,0.234208,0.506285,0.180095,0.434387,0.121718,0.41364,0.797106,0.977169,0.148066,0.453067,0.661618,0.0749705,0.756066,0.824796,0.184206,0.414027,0.298725,0.0375625,0.0458272,0.20357,0.00206542,0.12579,0.914055,0.123345,0.26758,0.924565,0.422239,0.184148,0.765791,0.638089,0.751658,0.840325,0.784889,0.546363,0.369643,0.523191,0.364781,0.611051,0.437785,0.405306,0.899495,0.930831,0.54929,0.558458,0.539461,0.611626,0.435423,0.616981,0.240713,0.345424,0.548939,0.494276,0.164218,0.494989,0.687797,0.693966,0.657975,0.522024,0.687156,0.786078,0.340097,0.00520748,0.604423,0.680404,0.191934,0.830161,0.87328,0.590532,0.680324,0.663731,0.033769,0.57015,0.882701,0.232543,0.477328,0.905597,0.456359,0.914686,0.427343,0.659388,0.245608,0.915471,0.219491,0.974473,0.476217,0.762148,0.547995,0.391546,0.640788,0.938859,0.0675928,0.877251,0.964376,0.776378,0.21525,0.68275,0.56969,0.108364,0.998935,0.818587,0.157577,0.901253,0.439292,0.916882,0.363978,0.311499,0.176996,0.193117,0.676247,0.444983,0.0633723,0.137116,0.476923,0.731176,0.722371,0.0689942,0.693872,0.78095,0.29627,0.90101,0.751331,0.387775,0.801134,0.294702,0.399288,0.833517,0.517855,0.828244,0.240266,0.605532,0.406707,0.963383,0.450808,0.847987,0.120301,0.303646,0.147142,0.584144,0.0293509,0.890324,0.985123,0.216833,0.669229,0.0178992,0.870448,0.682578,0.46422,0.34031,0.505896,0.614186,0.0422252,0.767892,0.323614,0.464475,0.544336,0.016194,0.715702,0.182468,0.343982,0.73658,0.490925,0.106272,0.862409,0.928952,0.900143,0.369701,0.856724,0.757012,0.65498,0.672311,0.4641,0.755283,0.886473,0.552504,0.864534,0.962591,0.869336,0.397683,0.91125,0.380744,0.595363,0.728794,0.00762886,0.860127,0.607194,0.128102,0.590905,0.206172,0.436231,0.511776,0.405887,0.875303,0.916797,0.186737,0.669703,0.331087,0.767429,0.0881981,0.8732,0.942996,0.8736,0.22873,0.2683,0.136193,0.107266,0.147263,0.113844,0.405024,0.0587453,0.316243,0.451697,0.219123,0.925599,0.648884,0.539403,0.610197,0.766519,0.214701,0.623798,0.733034,0.0662956,0.0768443,0.288476,0.103704,0.772962,0.512551,0.209611,0.00142407,0.298439,0.262442,0.350725,0.288096,0.0552768,0.959427,0.719261,0.629188,0.325486,0.0164157,0.191597,0.904809,0.661303,0.463886,0.760608,0.0235413,0.290352,0.468605,0.0989305,0.0443599,0.410522,0.874443,0.936233,0.179179,0.212831,0.458549,0.466349,0.856034,0.220818,0.167396,0.879605,0.168725,0.249895,0.690271,0.301765,0.615688,0.349016,0.73837,0.830473,0.829046,0.670888,0.994022,0.682468,0.20631,0.549972,0.0151112,0.870028,0.35901,0.897248,0.622447,0.845341,0.0600523,0.579718,0.133722,0.202915,0.172816,0.876856,0.602856,0.625397,0.498755,0.417115,0.377491,0.898888,0.407523,0.728494,0.900385,0.887337,0.276415,0.648457,0.519249,0.542441,0.43527,0.723827,0.843138,0.479028,0.717246,0.343794,0.352393,0.968409,0.853187,0.359055,0.24048,0.222944,0.718414,0.644512,0.966873,0.428914,0.763532,0.233051,0.739881,0.613426,0.484071,0.337784,0.0535803,0.0539379,0.0939286,0.195171,0.953508,0.515229,0.220162,0.94871,0.744381,0.658194,0.949741,0.364893,0.485387,0.614891,0.277859,0.896741,0.495231,0.4264,0.201116,0.954911,0.943317,0.909166,0.564468,0.810672,0.721055,0.391666,0.717046,0.844105,0.643021,0.510285,0.831303,0.602534,0.650671,0.738685,0.391718,0.802127,0.889831,0.941513,0.937904,0.497188,0.907646,0.34004,0.989126,0.503233,0.757405,0.299211,0.545984,0.189944,0.343545,0.122873,0.841976,0.975849,0.473413,0.727431,0.556633,0.287564,0.857638,0.962481,0.860056,0.575451,0.672756,0.469648,0.811764,0.395705,0.579781,0.667737,0.678884,0.867683,0.331291,0.576798,0.0516684,0.0600305,0.631679,0.0628573,0.778382,0.0877494,0.405584,0.227124,0.691776,0.403501,0.787414,0.536232,0.83448,0.00379044,0.278507,0.378974,0.322177,0.0004614,0.970685,0.713048,0.478581,0.391103,0.163584,0.885937,0.674319,0.594557,0.424355,0.53426,0.0547172,0.528336,0.177567,0.62132,0.54619,0.00802529,0.3439,0.81648,0.120966,0.869761,0.186066,0.844862,0.87174,0.845878,0.518839,0.000193894,0.45737,0.131427,0.749489,0.737049,0.341876,0.711473,0.447167,0.262609,0.914623,0.406666,0.000510693,0.142047,0.257486,0.52413,0.919512,0.992498,0.765691,0.583513,0.380366,0.946047,0.404171,0.0606755,0.116198,0.558954,0.695733,0.178329,0.183966,0.0248134,0.226264,0.5017,0.579728,0.201792,0.857181,0.757308,0.853699,0.784659,0.220674,0.571061,0.112638,0.656493,0.0843325,0.0398854,0.000587285,0.80467,0.446224,0.253096,0.307651,0.923691,0.633518,0.802907,0.157674,0.556133,0.577359,0.589627,0.658036,0.291164,0.482289,0.419698,0.237557,0.277067,0.376484,0.63173,0.989194,0.0126616,0.743914,0.130713,0.476584,0.452618,0.598171,0.759456,0.812178,0.765427,0.360364,0.525304,0.533704,0.525381,0.0658181,0.450372,0.159167,0.316322,0.675898,0.180833,0.619848,0.998722,0.454967,0.24288,0.682222,0.594358,0.548729,0.661986,0.772808,0.495141,0.277564,0.799534,0.75114,0.184392,0.824548,0.79864,0.615996,0.419029,0.801459,0.00733113,0.420698,0.34732,0.162089,0.819266,0.381929,0.562315,0.968513,0.181152,0.183939,0.664059,0.666244,0.099528,0.867968,0.219024,0.278079,0.8983,0.276236,0.509824,0.0560281,0.588252,0.773892,0.476457,0.865174,0.217838,0.699902,0.096053,0.581793,0.653009,0.926808,0.396834,0.201542,0.944093,0.764522,0.801165,0.608616,0.81198,0.979078,0.17971,0.577401,0.800018,0.21451,0.895558,0.824229,0.32307,0.0898899,0.389107,0.668408,0.139253,0.186326,0.441057,0.887384,0.304375,0.582826,0.0912094,0.423487,0.482527,0.900908,0.698588,0.638029,0.137439,0.0226215,0.620192,0.519396,0.433013,0.221444,0.865779,0.567244,0.516023,0.35983,0.451028,0.565327,0.218476,0.939237,0.13193,0.377306,0.274798,0.242172,0.65069,0.408453,0.284553,0.863648,0.456599,0.103492,0.0713238,0.668151,0.0360485,0.408402,0.181803,0.481509,0.230783,0.197583,0.404418,0.423707,0.232798,0.818796,0.762006,0.961499,0.796114,0.533187,0.566487,0.50357,0.961154,0.0931709,0.625347,0.868659,0.955782,0.860808,0.24221,0.475859,0.879188,0.10922,0.312132,0.673451,0.959835,0.0844438,0.187267,0.916056,0.712445,0.00294691,0.586918,0.61726,0.986746,0.380393,0.13938,0.0257334,0.92372,0.938984,0.472788,0.114743,0.574059,0.274352,0.460951,0.0710352,0.00168812,0.143718,0.329081,0.620458,0.150559,0.578886,0.336087,0.199552,0.98182,0.990576,0.525245,0.0633636,0.138808,0.535811,|0.452254,0.3534,0.839664,0.680293,0.372027,0.437794,0.701315,0.467552,0.432086,0.614288,0.115676,0.540327,0.313289,0.0198621,0.711576,0.71317,0.211395,0.23087,0.865037,0.611643,0.839731,0.204313,0.617659,0.885674,0.0413052,0.656574,0.394468,0.000273585,0.51366,0.651517,0.23763,0.0888614,0.150707,0.0489519,0.595541,0.147637,0.00992876,0.231472,0.0545449,0.235333,0.473994,0.373291,0.674187,0.793202,0.1283,0.239705,0.473698,0.777719,0.0332439,0.0284679,0.0783224,0.741817,0.6579,0.0767468,0.731735,0.847272,0.475595,0.436592,0.611976,0.792791,0.605386,0.858094,0.0812091,0.733403,0.875508,0.278359,0.00932819,0.427752,0.454515,0.119897,0.935413,0.0534942,0.637467,0.440074,0.586532,0.137565,0.0615671,0.972195,0.484557,0.451521,0.593196,0.0708709,0.0826259,0.932469,0.586745,0.646861,0.743428,0.931878,0.903933,0.339076,0.35681,0.0577904,0.907444,0.978211,0.559517,0.162547,0.425135,0.325477,0.479207,0.73577,0.118312,0.604385,0.967295,0.00585061,0.348992,0.685869,0.578686,0.748019,0.693796,0.150605,0.362866,0.314651,0.344535,0.143273,0.324239,0.880644,0.356164,0.426176,0.141456,0.905842,0.958383,0.94021,0.117246,0.305883,0.628602,0.909892,0.505794,0.19443,0.839025,0.73788,0.858368,0.0314628,0.284714,0.268702,0.371093,0.831572,0.45277,0.569181,0.0728389,0.844838,0.704788,0.117675,0.835142,0.236979,0.745806,0.982873,0.662635,0.71765,0.324902,0.19021,0.00308824,0.538485,0.442485,0.3696,0.75624,0.64942,0.934797,0.170379,0.971233,0.102211,0.424519,0.496596,0.845692,0.903425,0.0473921,0.339212,0.00296533,0.802234,0.451714,0.63754,0.979216,0.595673,0.528402,0.875188,0.319555,0.960353,0.861967,0.43759,0.911486,0.217012,0.390689,0.16896,0.640649,0.991884,0.427976,0.082248,0.0357139,0.302113,0.818574,0.242211,0.892924,0.321025,0.935082,0.90034,0.88015,0.859797,0.645352,0.968158,0.482347,0.62743,0.080041,0.746009,0.981274,0.998953,0.940914,0.228503,0.780017,0.343934,0.585274,0.545528,0.259427,0.371862,0.33912,0.679435,0.667845,0.710691,0.102417,0.785485,0.437851,0.710505,0.526028,0.807213,0.294313,0.923703,0.0236678,0.238279,0.110956,0.265359,0.508047,0.920921,0.664828,0.390499,0.136847,0.783608,0.0694171,0.538087,0.099049,0.399521,0.896166,0.860536,0.249854,0.358603,0.45526,0.504945,0.620686,0.177914,0.646764,0.60486,0.515465,0.433152,0.79832,0.54367,0.568753,0.4924,0.430548,0.938193,0.339927,0.216264,0.053746,0.424056,0.615391,0.372542,0.47765,0.987216,0.371564,0.679026,0.868859,0.935204,0.544098,0.267176,0.192623,0.677284,0.312489,0.839042,0.903176,0.791909,0.911029,0.918661,0.25849,0.00832868,0.248132,0.293957,0.694311,0.748371,0.191707,0.0529408,0.861838,0.0510192,0.37589,0.939683,0.237593,0.220708,0.649309,0.928168,0.518354,0.803101,0.930915,0.735515,0.838901,0.250542,0.992583,0.92519,0.997766,0.825211,0.450276,0.896822,0.0330366,0.313684,0.229354,0.161884,0.468349,0.370423,0.155784,0.987923,0.231101,0.0221962,0.372811,0.0471984,0.920832,0.0836729,0.291284,0.427567,0.905955,0.644179,0.163939,0.865763,0.682571,0.388179,0.235907,0.509085,0.494331,0.369261,0.950322,0.204143,0.516296,0.406976,0.654314,0.592899,0.753667,0.854728,0.570257,0.0426711,0.910717,0.327528,0.4272,0.695387,0.11776,0.138679,0.126302,0.956654,0.66053,0.409007,0.263046,0.438683,0.353338,0.746504,0.2406,0.481622,0.937794,0.456354,0.840656,0.637844,0.699489,0.429398,0.489664,0.0290418,0.356439,0.755221,0.756152,0.463873,0.786433,0.698228,0.16287,0.772788,0.301242,0.93807,0.924415,0.393995,0.159091,0.86149,0.284857,0.404764,0.725074,0.789851,0.864602,0.262888,0.648275,0.680068,0.856859,0.258005,0.0373786,0.31127,0.241127,0.52479,0.223086,0.929053,0.44832,0.960541,0.731641,0.855645,0.845913,0.159436,0.144614,0.333656,0.264911,0.0327547,0.963509,0.804365,0.0347852,0.226083,0.486612,0.727686,0.0523396,0.246205,0.909527,0.744298,0.267269,0.496278,0.768561,0.0756783,0.499612,0.784388,0.452156,0.0631102,0.910002,0.184453,0.220306,0.440634,0.861608,0.419295,0.931918,0.0435044,0.332025,0.924674,0.947623,0.832819,0.953162,0.28981,0.859093,0.301774,0.689068,0.717734,0.149592,0.751432,0.456107,0.222333,0.879371,0.84075,0.254129,0.886955,0.24126,0.0298101,0.176198,0.280149,0.551065,0.40586,0.724016,0.0135695,0.971838,0.0485416,0.108976,0.300871,0.907522,0.806141,0.548216,0.00829303,0.545959,0.898844,0.689776,0.278123,0.487754,0.215552,0.403292,0.706165,0.273846,0.138906,0.627338,0.00852275,0.454574,0.104894,0.944341,0.960178,0.80693,0.34436,0.575134,0.640726,0.128349,0.49988,0.122196,0.614765,0.0966326,0.507639,0.338406,0.482817,0.293672,0.289416,0.746675,0.708031,0.817145,0.146083,0.327046,0.946205,0.825714,0.929722,0.939692,0.372138,0.19637,0.811111,0.524915,0.652471,0.872552,0.675401,0.0288072,0.873794,0.30561,0.181529,0.845243,0.135181,0.127506,0.300689,0.431061,0.590759,0.572517,0.111774,0.407329,0.103711,0.0539995,0.23116,0.268103,0.683813,0.441917,0.651052,0.84101,0.334701,0.495996,0.41236,0.891038,0.481319,0.298012,0.111417,0.0435004,0.091967,0.793031,0.659113,0.836213,0.820827,0.532658,0.597072,0.192765,0.717418,0.155559,0.360916,0.998952,0.745852,0.696565,0.603585,0.275835,0.593308,0.395075,0.833722,0.308422,0.000167251,0.902932,0.0432492,0.903488,0.17479,0.395126,0.250978,0.00422555,0.69882,0.51202,0.564876,0.829856,0.714808,0.353798,0.216731,0.0773581,0.0224493,0.555162,0.802325,0.674071,0.22929,0.0276865,0.00792915,0.861114,0.818557,0.986676,0.513599,0.525463,0.373647,0.406479,0.419777,0.549234,0.441725,0.352522,0.602274,0.982845,0.235178,0.392321,0.347914,0.462805,0.63805,0.479037,0.2052,0.426749,0.956233,0.34231,0.369113,0.871648,0.246796,0.834704,0.165185,0.12751,0.582915,0.881853,0.475687,0.451426,0.556302,0.962579,0.971126,0.0148625,0.75261,0.063707,0.827412,0.905628,0.626416,0.692464,0.251171,0.653509,0.652693,0.407696,0.0689538,0.146722,0.143631,0.772086,0.898782,0.42905,0.259775,0.381325,0.993158,0.869239,0.112631,0.828515,0.611459,0.376149,0.995564,0.68716,0.289982,0.579219,0.312376,0.824377,0.389866,0.38058,0.897814,0.741146,0.930935,0.760348,0.957624,0.199324,0.874746,0.799555,0.0524262,0.904526,0.666469,0.826863,0.0341575,0.0557888,0.704538,0.436063,0.491016,0.008928,0.479639,0.380768,0.236783,0.592953,0.93783,0.0567517,0.608298,0.81487,0.0808922,0.885342,0.142593,0.315308,0.187192,0.985785,0.0936975,0.0787662,0.919336,0.903762,0.155701,0.564356,0.0807325,0.610375,0.382577,0.513863,0.308362,0.989031,0.993299,0.663511,0.966715,0.420036,0.686665,0.57557,0.932152,0.0922128,0.789274,0.198873,0.641382,0.508754,0.0548001,0.86778,0.132584,0.540996,0.0937623,0.208456,0.18613,0.826322,0.41931,0.0592241,0.243759,0.336306,0.0301433,0.623468,0.167263,0.514326,0.320279,0.046988,0.527285,0.106279,0.604186,0.720637,0.196096,0.975829,0.634039,0.1441,0.493339,0.410718,0.515132,0.784963,0.992557,0.892883,0.408589,0.318355,0.771205,0.820394,0.590512,0.945251,0.224641,0.94368,0.323595,0.687951,0.465744,0.386719,0.302897,0.763193,0.812961,0.0446294,0.0986151,0.848332,0.467995,0.361464,0.384468,0.259169,0.119963,0.768315,0.214181,0.780817,0.702529,0.177321,0.234101,0.986654,0.560949,0.714132,0.145652,0.573469,0.868021,0.80208,0.272524,0.674167,0.885115,0.960477,0.460533,0.373028,0.375766,0.512563,0.558762,0.922083,0.300237,0.532654,0.0529851,0.427663,0.0786632,0.165628,0.0241843,0.969984,0.993382,0.27431,0.594408,0.430775,0.390084,0.225791,0.13708,0.81357,0.713939,0.529413,0.735534,0.851484,0.781624,0.319841,0.844168,0.0106558,0.923442,0.0715774,0.797939,0.104731,0.0672517,0.873671,0.451795,0.729141,0.860325,0.486204,0.791544,0.137603,0.00427181,0.0852579,0.514216,0.81682,0.517293,0.516997,0.866007,0.977293,0.683024,0.314545,0.68786,0.0723848,0.0275238,0.53312,0.0769327,0.737778,0.579379,0.261723,0.384889,0.493582,0.0520985,0.210284,0.670838,0.177852,0.761726,0.763097,0.230393,0.773186,0.0808211,0.669737,0.187186,0.0840887,0.639884,0.275921,0.154391,0.726389,0.0115067,0.175461,0.115886,0.80345,0.395915,0.864815,0.848709,0.222227,0.638016,0.562425,0.117504,0.419509,0.304013,0.0493966,0.522926,0.0883767,0.293641,0.883431,0.0719154,0.692835,0.728601,0.199353,0.834569,0.97756,0.612914,0.239806,0.312679,0.0157583,0.38801,0.834045,0.071358,0.533079,0.7851,0.842161,0.956874,0.132966,0.92632,0.546743,0.738324,0.852498,0.36463,0.258054,0.177362,0.713087,0.558989,0.704438,0.261497,0.26538,0.00926185,0.870866,0.359874,0.212247,0.189934,0.0445102,0.554611,0.409608,0.407741,0.791191,0.695175,0.695199,0.738545,0.884491,0.568642,0.0408174,0.336391,0.366483,0.377348,0.450851,0.651812,0.438268,0.314677,0.435638,0.475226,0.820759,0.695268,0.398672,0.643921,0.680906,0.822691,0.384115,0.119125,0.401049,0.309893,0.980714,0.997142,0.0839901,0.959363,0.893303,0.775803,0.428093,0.422343,0.64541,0.206322,0.228203,0.69089,0.584912,0.68457,0.222825,0.465357,0.835366,0.750162,0.823354,0.181455,0.831633,0.550773,0.334159,0.408749,0.223088,0.912456,0.571331,0.834898,0.733702,0.987329,0.238438,0.621276,0.289058,0.913052,0.772608,0.988233,0.572749,0.302176,0.618928,0.539351,0.280963,0.306089,0.598266,0.648088,0.253441,0.247347,0.572523,0.418651,0.24246,0.98127,0.340761,0.759389,0.541148,0.302928,0.899639,0.106393,0.0686074,0.565806,|0.213483,0.824012,0.850086,0.0859426,0.911282,0.222343,0.311208,0.867046,0.61647,0.798272,0.568456,0.287814,0.757515,0.728747,0.483883,0.014568,0.515266,0.802703,0.26061,0.524361,0.980408,0.784972,0.815098,0.27771,0.873103,0.476145,0.441996,0.837711,0.166194,0.4134,0.80148,0.709081,0.853604,0.270203,0.249394,0.137397,0.368591,0.892559,0.281998,0.362219,0.133144,0.807356,0.902843,0.332283,0.653455,0.0628433,0.323768,0.0953037,0.535965,0.299663,0.923975,0.655976,0.450201,0.0194389,0.381045,0.141006,0.576298,0.6855,0.436841,0.16004,0.248252,0.467571,0.0373374,0.414013,0.307625,0.176288,0.689969,0.244934,0.745516,0.527556,0.670437,0.934711,0.535647,0.554357,0.45596,0.12226,0.740957,0.672469,0.646725,0.544456,0.669491,0.360678,0.678764,0.950162,0.281178,0.325428,0.88368,0.920597,0.18808,0.977471,0.37764,0.575867,0.544427,0.362381,0.535092,0.179396,0.961993,0.118321,0.851844,0.1446,0.490487,0.264235,0.591532,0.13313,0.113458,0.368486,0.70534,0.420215,0.224971,0.830386,0.839116,0.701777,0.0847556,0.810664,0.757292,0.833048,0.913212,0.329698,0.21611,0.0906873,0.50216,0.136275,0.311434,0.730581,0.667469,0.610219,0.419828,0.439362,0.522943,0.842821,0.895339,0.323745,0.427124,0.234101,0.652235,0.768928,0.494058,0.0874414,0.00567615,0.373169,0.636879,0.372316,0.696326,0.554992,0.851399,0.915819,0.089535,0.174106,0.0129803,0.107145,0.742612,0.921473,0.880933,0.216385,0.602206,0.15915,0.0649063,0.471665,0.0806421,0.194996,0.313949,0.401567,0.710944,0.193301,0.142267,0.903331,0.513482,0.297658,0.723903,0.956708,0.503622,0.784842,0.171187,0.879786,0.288241,0.907742,0.695115,0.811339,0.911105,0.731029,0.0750503,0.602434,0.0468738,0.414455,0.844294,0.755945,0.152478,0.984568,0.138156,0.263819,0.72496,0.394385,0.185978,0.934871,0.823449,0.160386,0.16992,0.55658,0.186307,0.427993,0.557898,0.846359,0.913666,0.440616,0.118689,0.761976,0.0214186,0.462212,0.90447,0.803418,0.4004,0.192834,0.120103,0.430385,0.489233,0.655261,0.9695,0.524191,0.504343,0.143837,0.423578,0.254609,0.776517,0.241539,0.144874,0.911047,0.829665,0.0454134,0.463654,0.130448,0.47838,0.329974,0.276205,0.322743,0.0417638,0.866013,0.907121,0.697605,0.703699,0.602092,0.945177,0.0824445,0.866228,0.64305,0.028987,0.292451,0.365163,0.702611,0.97936,0.613756,0.129504,0.586461,0.535871,0.680068,0.768122,0.806086,0.466669,0.846818,0.0240282,0.423861,0.783575,0.351126,0.866351,0.476447,0.891773,0.611054,0.138419,0.545743,0.360761,0.479626,0.551751,0.104638,0.337044,0.464378,0.780477,0.0625131,0.526542,0.0150387,0.654455,0.814884,0.133841,0.949616,0.363399,0.611739,0.500554,0.513702,0.423452,0.0605749,0.916179,0.360999,0.183634,0.394552,0.0890879,0.245619,0.175223,0.580436,0.378377,0.445089,0.0791373,0.540257,0.138428,0.444353,0.978139,0.909966,0.220584,0.468516,0.125763,0.0881672,0.726379,0.405723,0.523973,0.524455,0.41494,0.209134,0.161632,0.693411,0.0259037,0.0726059,0.098411,0.928054,0.00715059,0.584435,0.129105,0.0183597,0.184778,0.861503,0.468169,0.975205,0.31008,0.0793426,0.414598,0.587981,0.744482,0.908922,0.301128,0.0647892,0.275562,0.416177,0.0848003,0.998081,0.361329,0.381184,0.769989,0.300287,0.693701,0.517453,0.415955,0.549637,0.39755,0.27188,0.49018,0.230781,0.728708,0.114868,0.425198,0.953925,0.291978,0.10637,0.851056,0.730764,0.571745,0.177345,0.158409,0.897473,0.328399,0.0233676,0.251144,0.985873,0.319306,0.473141,0.217638,0.397817,0.697068,0.959557,0.326256,0.604432,0.0886608,0.654812,0.900593,0.0974714,0.0385562,0.762152,0.781325,0.556111,0.351664,0.848203,0.535424,0.885398,0.136011,0.972876,0.589151,0.806046,0.729087,0.599807,0.347177,0.120541,0.857797,0.711999,0.966202,0.168777,0.881897,0.21088,0.0709822,0.337343,0.706296,0.840094,0.117118,0.833001,0.762831,0.638473,0.729098,0.749906,0.0930543,0.374746,0.759733,0.214564,0.937269,0.0238349,0.128961,0.544404,0.807183,0.14104,0.557132,0.0176154,0.398631,0.897671,0.332085,0.641414,0.798546,0.458041,0.351254,0.736108,0.217218,0.284547,0.342177,0.228613,0.60316,0.46316,0.349684,0.448868,0.537817,0.942959,0.192522,0.731801,0.99007,0.0676029,0.518483,0.381553,0.343751,0.41519,0.88278,0.382014,0.449816,0.842721,0.164743,0.0397133,0.393452,0.00501221,0.484636,0.257779,0.0499474,0.983436,0.398418,0.756937,0.877938,0.595552,0.88359,0.332287,0.263577,0.182427,0.219795,0.129493,0.0330747,0.866007,0.827438,0.236751,0.244148,0.440025,0.815693,0.35746,0.70465,0.30927,0.218727,0.662746,0.0577395,0.23781,0.319876,0.921971,0.796515,0.965895,0.220516,0.64373,0.112827,0.201667,0.722689,0.777094,0.0160906,0.395258,0.926203,0.0801526,0.714774,0.336235,0.83376,0.69922,0.488688,0.340897,0.554957,0.593935,0.462645,0.583539,0.34035,0.20947,0.381302,0.713099,0.50769,0.0624326,0.663984,0.67483,0.303442,0.106459,0.122531,0.781795,0.472673,0.987544,0.177863,0.309904,0.252012,0.7755,0.416149,0.887667,0.954618,0.14413,0.50948,0.225856,0.950877,0.0180565,0.777238,0.313354,0.78271,0.967306,0.905222,0.133384,0.975385,0.641444,0.628279,0.0142345,0.10479,0.386274,0.0514901,0.166035,0.0980177,0.176279,0.271371,0.313908,0.733007,0.76143,0.835935,0.932937,0.932465,0.802852,0.604268,0.781871,0.209185,0.281483,0.156208,0.183423,0.27108,0.466357,0.769592,0.325898,0.655538,0.490696,0.728383,0.62055,0.734354,0.751167,0.864798,0.836225,0.709104,0.84004,0.617325,0.759882,0.954566,0.892417,0.282358,0.923984,0.193387,0.67653,0.93189,0.962077,0.728985,0.574757,0.15637,0.216075,0.615539,0.888249,0.375504,0.171391,0.993679,0.784429,0.888143,0.0717387,0.967633,0.962166,0.132695,0.858205,0.50109,0.897169,0.496131,0.918733,0.788763,0.659132,0.935999,0.988063,0.296101,0.325656,0.458392,0.370383,0.989349,0.830349,0.00592226,0.696532,0.434566,0.987661,0.485765,0.191889,0.225145,0.0304351,0.994429,0.75053,0.482569,0.2313,0.638886,0.324192,0.970532,0.729819,0.025608,0.696391,0.857285,0.856112,0.290163,0.0784959,0.563129,0.919263,0.875685,0.710804,0.130896,0.572512,0.289888,0.834266,0.0335418,0.266954,0.279641,0.994599,0.61381,0.264499,0.232766,0.427418,0.0875142,0.183488,0.668572,0.174654,0.531852,0.0641247,0.470788,0.508163,0.381536,0.369583,0.909187,0.870581,0.270205,0.923291,0.976847,0.52594,0.707746,0.0727636,0.731921,0.418692,0.463539,0.696234,0.67597,0.381318,0.66504,0.98663,0.0666152,0.108751,0.434975,0.992908,0.676308,0.423069,0.217378,0.104828,0.409225,0.794453,0.361986,0.628754,0.621569,0.712153,0.83541,0.208048,0.029471,0.943388,0.658398,0.720665,0.316581,0.201902,0.00830919,0.248828,0.965644,0.0895252,0.230285,0.266864,0.919749,0.71227,0.591749,0.784705,0.898822,0.552369,0.0363843,0.240345,0.698094,0.581173,0.940124,0.194995,0.664405,0.558949,0.659841,0.00440896,0.336366,0.829084,0.4695,0.0783607,0.439174,0.279148,0.0305816,0.175978,0.0150623,0.645455,0.127545,0.916286,0.776328,0.565152,0.269603,0.147136,0.878806,0.328366,0.301447,0.252262,0.305512,0.611092,0.189644,0.0741348,0.0716981,0.497649,0.370758,0.497929,0.248667,0.852659,0.881601,0.0715567,0.110084,0.176533,0.752142,0.80005,0.270559,0.377155,0.862584,0.273135,0.866731,0.912611,0.0775833,0.931365,0.850226,0.25404,0.675833,0.485842,0.74525,0.0839435,0.41793,0.729149,0.392157,0.940901,0.993517,0.760118,0.98474,0.999676,0.0257421,0.232739,0.547616,0.0528727,0.355819,0.703453,0.854309,0.970724,0.70385,0.259448,0.541121,0.0208341,0.754604,0.939545,0.800117,0.0724006,0.475421,0.220037,0.564441,0.352355,0.400182,0.543737,0.0346764,0.730255,0.780138,0.784799,0.802667,0.745273,0.0307903,0.721943,0.26821,0.127755,0.397246,0.871048,0.431932,0.266682,0.954168,0.634897,0.0371888,0.364038,0.677277,0.810706,0.595496,0.921585,0.341935,0.967468,0.151637,0.755459,0.728443,0.152786,0.398294,0.249353,0.6493,0.805975,0.581684,0.0865245,0.430921,0.818283,0.791919,0.854378,0.0508778,0.742683,0.503424,0.856391,0.508587,0.958088,0.577404,0.662302,0.612104,0.459084,0.589461,0.838232,0.955813,0.0570542,0.839969,0.203459,0.815643,0.977678,0.521651,0.810205,0.906945,0.627843,0.648113,0.437228,0.830737,0.32572,0.908311,0.34893,0.472307,0.185013,0.28554,0.789387,0.993033,0.838352,0.884897,0.622046,0.423733,0.549389,0.12415,0.258479,0.804033,0.530491,0.521384,0.0146553,0.501698,0.722322,0.876872,0.152591,0.823538,0.885737,0.485966,0.527779,0.317435,0.4374,0.364648,0.0451994,0.985676,0.270104,0.323416,0.0388891,0.0986851,0.95571,0.628083,0.288675,0.82037,0.753611,0.205411,0.358274,0.0347911,0.708853,0.170612,0.388714,0.723451,0.731265,0.300139,0.346914,0.370419,0.674786,0.407161,0.574683,0.536982,0.266727,0.397481,0.466818,0.558734,0.80232,0.0979508,0.586583,0.339472,0.943409,0.175943,0.688738,0.422897,0.0734664,0.155177,0.824909,0.447476,0.971774,0.647508,0.250364,0.0749536,0.0311021,0.484019,0.783889,0.605125,0.542018,0.112819,0.183001,0.984365,0.454413,0.809836,0.841036,0.205979,0.435322,0.607911,0.27232,0.770539,0.259309,0.721752,0.772577,0.999257,0.691574,0.0676205,0.991567,0.950814,0.99667,0.513762,0.15934,0.385241,0.0274265,0.746405,0.87257,0.219619,0.951159,0.854928,0.228369,0.528674,0.71241,0.354356,0.819182,0.548127,0.792198,0.843643,0.0988135,0.204447,0.361489,0.391602,0.258062,0.360363,0.231774,0.925988,0.249321,0.429219,0.108407,|0.945018,0.887103,0.194623,0.653597,0.496766,0.292051,0.61998,0.740437,0.226889,0.620099,0.972602,0.826091,0.93241,0.445046,0.547387,0.363518,0.320916,0.980208,0.983006,0.663336,0.732462,0.344883,0.828168,0.230475,0.861905,0.187116,0.431575,0.223808,0.870779,0.935854,0.0164518,0.324644,0.235493,0.777199,0.259946,0.38331,0.184532,0.923048,0.469938,0.338148,0.413739,0.923474,0.287778,0.534713,0.905136,0.270453,0.9343,0.160565,0.528563,0.0955579,0.444935,0.0449916,0.303854,0.833948,0.716812,0.55656,0.809271,0.350467,0.0444112,0.22056,0.493341,0.352507,0.679068,0.228142,0.316686,0.00703233,0.558845,0.763474,0.172644,0.368362,0.520768,0.80551,0.378341,0.250298,0.817177,0.559739,0.0527961,0.937096,0.204438,0.167492,0.168828,0.350311,0.0426209,0.795371,0.44994,0.951231,0.64843,0.133848,0.0247982,0.278444,0.584128,0.158178,0.0039472,0.35255,0.894972,0.0938539,0.552308,0.0495445,0.997049,0.317856,0.570735,0.117766,0.32304,0.881072,0.880341,0.59618,0.32474,0.447109,0.498677,0.229685,0.969561,0.665966,0.0279099,0.696126,0.856824,0.579888,0.725338,0.501733,0.274798,0.325081,0.747395,0.516082,0.102216,0.0593358,0.229868,0.486885,0.763424,0.657654,0.961103,0.546537,0.189648,0.2283,0.449841,0.372067,0.827002,0.799185,0.0296108,0.0561751,0.618754,0.623368,0.490181,0.546717,0.622906,0.240607,0.803883,0.562366,0.183377,0.562196,0.405173,0.681672,0.0971709,0.912194,0.0586188,0.112297,0.930722,0.236823,0.914147,0.462986,0.816027,0.592967,0.812895,0.901464,0.553378,0.227648,0.299289,0.436918,0.037674,0.619617,0.127788,0.753204,0.956257,0.708699,0.719113,0.974195,0.250518,0.163706,0.775135,0.721999,0.888672,0.438264,0.717084,0.909789,0.791298,0.0216467,0.410961,0.699331,0.627245,0.516732,0.0189633,0.713877,0.970648,0.461233,0.88334,0.530854,0.338065,0.0041557,0.153016,0.960466,0.228475,0.591502,0.185655,0.781756,0.0489479,0.777721,0.556319,0.894107,0.80928,0.00323343,0.472186,0.621698,0.640576,0.0615751,0.809918,0.26412,0.173391,0.341523,0.102899,0.116042,0.848991,0.614041,0.173916,0.443539,0.0370688,0.853965,0.180231,0.985287,0.382277,0.902899,0.685725,0.419159,0.917244,0.105092,0.461045,0.0660511,0.414968,0.67619,0.304545,0.573214,0.651736,0.620307,0.00306565,0.674939,0.241463,0.379764,0.268168,0.64714,0.658178,0.649791,0.525963,0.85574,0.687747,0.805966,0.750103,0.0867407,0.838445,0.166519,0.632085,0.237242,0.134007,0.535971,0.527204,0.760353,0.555613,0.416732,0.631491,0.559248,0.306754,0.471206,0.907042,0.281391,0.74162,0.511249,0.39076,0.0259464,0.138102,0.860267,0.512146,0.336361,0.239569,0.580829,0.776418,0.65473,0.20504,0.826054,0.356915,0.10771,0.552617,0.870626,0.0847731,0.680421,0.260181,0.599765,0.237707,0.128923,0.556593,0.645264,0.766829,0.772183,0.356126,0.671769,0.882715,0.737787,0.724125,0.485174,0.78106,0.694367,0.362844,0.170466,0.85897,0.938322,0.0347452,0.922237,0.163122,0.578075,0.605039,0.30698,0.440494,0.0208666,0.992093,0.932441,0.350352,0.216975,0.0235316,0.996436,0.950431,0.332937,0.443158,0.729067,0.0139906,0.221677,0.610561,0.896466,0.355335,0.406397,0.233246,0.306675,0.593928,0.332121,0.515688,0.079641,0.688825,0.658405,0.0610168,0.297542,0.94484,0.278826,0.815164,0.323012,0.9529,0.133392,0.335678,0.229962,0.281447,0.933356,0.42504,0.693225,0.302901,0.967878,0.0743461,0.306415,0.972826,0.155415,0.123666,0.710217,0.0821855,0.238428,0.833727,0.646343,0.331398,0.633579,0.475676,0.589404,0.124382,0.825519,0.744703,0.804711,0.699926,0.144012,0.339407,0.789317,0.655612,0.603856,0.525293,0.968436,0.273238,0.70438,0.119722,0.421294,0.207356,0.972226,0.728909,0.270922,0.596969,0.830598,0.943285,0.203151,0.0034942,0.551633,0.922302,0.180061,0.334069,0.12269,0.915004,0.0588341,0.4696,0.385544,0.455141,0.628345,0.493666,0.653479,0.171504,0.639905,0.593181,0.0164844,0.800847,0.972986,0.884928,0.0200557,0.974363,0.515055,0.648576,0.188195,0.582466,0.414197,0.82765,0.0489221,0.715672,0.56205,0.607104,0.512245,0.632481,0.697451,0.164314,0.369246,0.560835,0.0416756,0.375165,0.23591,0.250893,0.143607,0.423354,0.588924,0.883846,0.349521,0.631203,0.918472,0.579506,0.889537,0.681685,0.943229,0.935878,0.230475,0.0721874,0.207095,0.955004,0.900997,0.304122,0.590851,0.471714,0.0203749,0.128124,0.343476,0.726374,0.724867,0.0132718,0.867473,0.854152,2.65837e-05,0.713965,0.139361,0.577226,0.844913,0.129627,0.740097,0.203406,0.704478,0.240178,0.591627,0.937776,0.854349,0.461873,0.637037,0.144035,0.0795896,0.202781,0.461144,0.728481,0.228286,0.166081,0.118207,0.603875,0.71994,0.431609,0.478208,0.159504,0.570956,0.251821,0.268765,0.99981,0.0725831,0.0547264,0.119709,0.344784,0.32141,0.324841,0.651459,0.429502,0.960355,0.159481,0.513681,0.302423,0.492526,0.351848,0.485064,0.552665,0.787106,0.0303914,0.447689,0.920373,0.398914,0.469038,0.597524,0.54574,0.209422,0.713567,0.0823146,0.294233,0.243015,0.140186,0.378293,0.316238,0.574781,0.16446,0.277402,0.793246,0.666232,0.589346,0.0266773,0.504902,0.343846,0.182708,0.124543,0.286423,0.17079,0.0813552,0.0529627,0.924792,0.353315,0.315773,0.40627,0.781744,0.0508859,0.767692,0.366497,0.990278,0.334046,0.152505,0.949956,0.0915278,0.954387,0.973417,0.739707,0.861911,0.816385,0.82334,0.725867,0.886767,0.844351,0.297151,0.943077,0.409793,0.0943851,0.858524,0.434946,0.556631,0.98359,0.306543,0.335667,0.862518,0.261605,0.272582,0.250845,0.886109,0.335229,0.696886,0.58336,0.52093,0.715535,0.214836,0.57574,0.0530055,0.940271,0.662646,0.200572,0.864964,0.848134,0.143558,0.816353,0.309028,0.00410229,0.540568,0.586809,0.0493984,0.397653,0.774345,0.556484,0.341065,0.48932,0.310915,0.660984,0.832884,0.751873,0.0118134,0.19647,0.840943,0.224334,0.5515,0.641352,0.653292,0.345171,0.324028,0.575358,0.0650588,0.0583611,0.655186,0.349873,0.69286,0.243331,0.726535,0.435479,0.907658,0.431754,0.597122,0.916606,0.838061,0.493754,0.890175,0.778129,0.202429,0.52141,0.771881,0.553326,0.667535,0.465071,0.68857,0.618929,0.416334,0.781139,0.489647,0.549749,0.449062,0.251212,0.542575,0.480319,0.56658,0.854832,0.82395,0.880367,0.322134,0.37516,0.673087,0.699068,0.507674,0.319757,0.88009,0.152431,0.735062,0.0860589,0.666115,0.217444,0.791152,0.960625,0.0671836,0.293036,0.948392,0.279767,0.801255,0.785759,0.652626,0.809973,0.394121,0.27839,0.780308,0.259944,0.767177,0.102417,0.024038,0.664725,0.877154,0.562229,0.408091,0.291366,0.111404,0.539176,0.251511,0.93926,0.220621,0.0125355,0.619993,0.982811,0.952999,0.485152,0.614636,0.27104,0.971591,0.574757,0.705732,0.249374,0.0379283,0.0183582,0.958785,0.137084,0.712258,0.24563,0.477517,0.339906,0.880622,0.0449431,0.463637,0.456472,0.926031,0.43743,0.348799,0.63753,0.907204,0.913546,0.387692,0.380873,0.507825,0.18361,0.902265,0.967502,0.200616,0.874753,0.0465954,0.906461,0.245509,0.0391671,0.176753,0.64465,0.409368,0.518201,0.0398512,0.35243,0.0822214,0.917256,0.821052,0.7015,0.0867318,0.313642,0.274091,0.758963,0.607851,0.40244,0.743717,0.885052,0.688001,0.355609,0.2953,0.463279,0.414649,0.667929,0.773907,0.694131,0.506234,0.0289257,0.829336,0.873418,0.416111,0.212103,0.52462,0.426311,0.186675,0.748665,0.548306,0.039628,0.664087,0.604758,0.89382,0.114505,0.524241,0.364061,0.825387,0.348124,0.387259,0.707851,0.98254,0.321567,0.694617,0.114599,0.651604,0.669466,0.72963,0.79795,0.18728,0.44941,0.523576,0.537459,0.117467,0.851767,0.298841,0.588864,0.396554,0.474233,0.419186,0.763626,0.70407,0.271947,0.302987,0.804715,0.533873,0.512548,0.375395,0.741798,0.323359,0.997518,0.565539,0.563514,0.246161,0.813975,0.292132,0.450265,0.0406458,0.1379,0.883181,0.48843,0.37321,0.124398,0.849096,0.950065,0.301695,0.0221551,0.704722,0.829074,0.434228,0.0246977,0.212165,0.434722,0.382512,0.627333,0.802372,0.428287,0.292829,0.26738,0.646474,0.0768015,0.212296,0.979477,0.505591,0.4979,0.557529,0.345434,0.153284,0.469037,0.884853,0.93715,0.352045,0.662886,0.333884,0.140994,0.505384,0.926609,0.810403,0.554954,0.766202,0.287229,0.927408,0.64861,0.260791,0.884155,0.476331,0.266436,0.399573,0.843831,0.442189,0.448253,0.939039,0.742926,0.0216594,0.279257,0.29203,0.687836,0.109357,0.994723,0.43892,0.91377,0.0515739,0.108298,0.874962,0.544878,0.421617,0.172269,0.414607,0.815498,0.175819,0.696715,0.100329,0.127878,0.24496,0.183124,0.477243,0.414274,0.543248,0.611646,0.0451568,0.344377,0.912368,0.83718,0.775384,0.760955,0.073648,0.736367,0.827828,0.207643,0.868305,0.93486,0.540503,0.439573,0.442876,0.668624,0.268927,0.444703,0.0235508,0.339531,0.641826,0.878139,0.881794,0.22991,0.108653,0.49295,0.850973,0.170737,0.176958,0.0752357,0.424059,0.028258,0.199112,0.117755,0.61423,0.756379,0.48444,0.790176,0.798498,0.283963,0.254464,0.246575,0.236812,0.127333,0.904263,0.679703,0.820259,0.781807,0.743867,0.263649,0.852704,0.484884,0.397695,0.866537,0.580726,0.210106,0.0132084,0.145172,0.556124,0.2009,0.445032,0.983479,0.274656,0.917169,0.596317,0.0121685,0.906317,0.568945,0.968389,0.78381,0.20523,0.281434,0.000904918,0.00757241,0.360683,0.939807,0.630629,0.375446,0.500349,0.0492503,0.172285,0.665369,0.353913,0.0335616,0.531786,0.107677,0.953189,0.514458,0.898023,0.666613,0.298094,0.758409,0.391359,0.259481,0.865406,0.027115,|0.42132,0.973126,0.800701,0.915224,0.352491,0.881798,0.577702,0.907109,0.127604,0.991377,0.236717,0.7119,0.387217,0.389397,0.201654,0.853124,0.895764,0.264498,0.354807,0.109414,0.939476,0.181494,0.19877,0.866133,0.890198,0.957092,0.381536,0.664799,0.137106,0.640732,0.319018,0.990156,0.872511,0.305784,0.768594,0.708469,0.466416,0.444907,0.291618,0.859638,0.440544,0.449568,0.769038,0.995471,0.140916,0.376147,0.640523,0.868031,0.357789,0.933918,0.660671,0.988113,0.720926,0.660977,0.762355,0.766578,0.848,0.285558,0.714015,0.30226,0.833137,0.824835,0.996774,0.493302,0.370397,0.60657,0.949652,0.59245,0.0824347,0.465306,0.988746,0.390325,0.123649,0.649571,0.543591,0.63908,0.890576,0.239671,0.612652,0.461444,0.522323,0.494969,0.97873,0.963215,0.244056,0.773886,0.788386,0.0757874,0.713109,0.354876,0.226889,0.396733,0.886545,0.536495,0.94613,0.431732,0.905183,0.827759,0.32554,0.679333,0.0378688,0.962608,0.352617,0.627739,0.609613,0.18097,0.869734,0.0572117,0.53175,0.759152,0.708696,0.851219,0.308644,0.62342,0.870459,0.748806,0.488938,0.40342,0.792434,0.795022,0.667703,0.640144,0.812869,0.791063,0.163329,0.890169,0.0959814,0.0385005,0.253685,0.420011,0.127931,0.337051,0.0709651,0.969073,0.896567,0.0887983,0.390792,0.319906,0.506594,0.786412,0.698745,0.0340258,0.313668,0.526021,0.51512,0.870091,0.484084,0.0300389,0.0523837,0.368202,0.838792,0.65941,0.0674096,0.584489,0.161736,0.644508,0.995309,0.102038,0.797639,0.142226,0.379935,0.371549,0.672715,0.664935,0.348535,0.0846259,0.120724,0.166825,0.937322,0.461485,0.460682,0.0387969,0.749528,0.998448,0.0122982,0.676233,0.871762,0.752524,0.319177,0.366407,0.638591,0.235474,0.464296,0.558836,0.166596,0.389728,0.809963,0.893121,0.406102,0.495089,0.13074,0.376064,0.239117,0.0334823,0.0771556,0.417931,0.629031,0.813014,0.665694,0.565925,0.056687,0.0852236,0.649014,0.381558,0.34947,0.945575,0.980607,0.258907,0.144812,0.437856,0.79672,0.758546,0.857261,0.312205,0.72917,0.444296,0.931418,0.807316,0.280289,0.251406,0.750546,0.677916,0.958642,0.157804,0.0169287,0.945943,0.0913214,0.805377,0.977466,0.163451,0.725296,0.178989,0.0605239,0.468834,0.909735,0.720691,0.413324,0.651535,0.230572,0.461342,0.474879,0.977071,0.84809,0.844914,0.574798,0.762899,0.215862,0.612231,0.0212074,0.0112033,0.64272,0.671145,0.232552,0.754217,0.113329,0.353682,0.590709,0.0952592,0.010116,0.857349,0.142073,0.979895,0.445816,0.10804,0.489401,0.662558,0.345108,0.0195361,0.58603,0.90877,0.289365,0.474012,0.122988,0.351162,0.110719,0.673667,0.245328,0.435421,0.816989,0.218022,0.115932,0.539022,0.990176,0.349555,0.194714,0.529005,0.692964,0.949556,0.612443,0.966216,0.770205,0.098381,0.503066,0.561281,0.286973,0.787625,0.619728,0.845076,0.510074,0.124161,0.877782,0.0798798,0.183938,0.516479,0.264049,0.895415,0.463465,0.438596,0.573228,0.137879,0.122868,0.812454,0.629844,0.716543,0.958444,0.453122,0.801493,0.848634,0.15986,0.96323,0.975812,0.811003,0.281412,0.66788,0.713882,0.195865,0.755616,0.916308,0.109101,0.0423242,0.177221,0.400297,0.120988,0.514958,0.659669,0.511211,0.831847,0.608643,0.783106,0.196613,0.00837648,0.994474,0.801668,0.870706,0.219954,0.506404,0.772563,0.757215,0.107998,0.550854,0.327158,0.44405,0.00373322,0.806726,0.488148,0.111781,0.643756,0.0788146,0.819293,0.0703764,0.258239,0.832754,0.518648,0.19019,0.0910712,0.429742,0.581372,0.736089,0.785138,0.112679,0.818758,0.710923,0.443053,0.594892,0.979529,0.462873,0.65886,0.965748,0.478503,0.266414,0.823594,0.873449,0.961156,0.343193,0.686711,0.315103,0.17116,0.55863,0.251726,0.828457,0.182581,0.273632,0.478853,0.708943,0.133226,0.05818,0.711728,0.588898,0.156426,0.433743,0.882371,0.726479,0.853506,0.581991,0.962847,0.827679,0.975065,0.955615,0.0503461,0.272048,0.196764,0.214064,0.47744,0.823308,0.540491,0.113317,0.972269,0.17333,0.00855637,0.985717,0.226351,0.339738,0.327692,0.353672,0.265929,0.987519,0.0960582,0.148551,0.842258,0.569265,0.78568,0.31948,0.612062,0.29623,0.371278,0.335433,0.573896,0.917835,0.31104,0.797698,0.0132323,0.649178,0.0830826,0.356589,0.174002,0.868162,0.476658,0.704534,0.00169206,0.0288261,0.844183,0.862788,0.0154578,0.760184,0.30028,0.882903,0.935996,0.98777,0.838923,0.22978,0.5715,0.914592,0.1043,0.461146,0.724277,0.124486,0.139241,0.571392,0.122283,0.484068,0.142315,0.116781,0.118044,0.791467,0.214243,0.669891,0.574839,0.973853,0.0205155,0.376676,0.987457,0.603807,0.803374,0.320759,0.179365,0.494972,0.542101,0.375362,0.107781,0.482706,0.883725,0.199974,0.866428,0.563082,0.730781,0.192038,0.481376,0.3859,0.837188,0.721606,0.4866,0.921372,0.63607,0.570493,0.41007,0.375278,0.269669,0.92107,0.202785,0.708947,0.553805,0.198416,0.228553,0.386511,0.135236,0.27578,0.118016,0.00488573,0.209205,0.161526,0.279738,0.788441,0.23296,0.277429,0.582944,0.282194,0.062808,0.840407,0.179374,0.757055,0.540922,0.741577,0.330145,0.257068,0.0222653,0.640298,0.0528352,0.767638,0.861155,0.0984464,0.303505,0.248572,0.628785,0.408779,0.238943,0.754937,0.65155,0.704468,0.612211,0.181265,0.913637,0.967594,0.943133,0.845998,0.962257,0.290357,0.726818,0.119763,0.423704,0.0765364,0.441108,0.117027,0.880826,0.930784,0.280207,0.680265,0.510919,0.418795,0.842205,0.0652305,0.298717,0.512767,0.916036,0.424566,0.365439,0.324633,0.166642,0.697601,0.470859,0.828657,0.806663,0.548992,0.441104,0.747519,0.988755,0.536007,0.408117,0.641743,0.862171,0.724969,0.840181,0.549606,0.205085,0.974913,0.169917,0.646639,0.285175,0.794532,0.937547,0.842655,0.842262,0.035777,0.358626,0.901451,0.543541,0.257431,0.344264,0.995543,0.671943,0.58659,0.428167,0.865196,0.181488,0.940742,0.671333,0.993396,0.378971,0.194689,0.717087,0.89849,0.195889,0.127211,0.794585,0.469756,0.836988,0.695734,0.0413277,0.975334,0.183264,0.966611,0.319343,0.0991696,0.726867,0.576953,0.390221,0.559312,0.42816,0.702742,0.887876,0.898284,0.255739,0.929163,0.217532,0.49423,0.673529,0.871934,0.0768485,0.302892,0.10645,0.723817,0.184607,0.576342,0.839907,0.0255129,0.224355,0.347158,0.881386,0.676763,0.21431,0.626666,0.748902,0.98034,0.43449,0.221374,0.688673,0.611665,0.16705,0.237795,0.010354,0.232393,0.143738,0.936332,0.158576,0.174635,0.428357,0.298877,0.959676,0.76037,0.318235,0.992905,0.885229,0.159065,0.497363,0.10375,0.930201,0.916492,0.911427,0.224056,0.990916,0.382667,0.825134,0.747469,0.92508,0.643039,0.667493,0.336841,0.906265,0.987679,0.0348442,0.47398,0.591425,0.46335,0.493956,0.816239,0.25668,0.404207,0.288682,0.418103,0.227176,0.010489,0.512471,0.936764,0.00121766,0.576362,0.179024,0.961857,0.983436,0.686267,0.546596,0.799206,0.901771,0.767125,0.592446,0.864717,0.858432,0.0400259,0.827589,0.776894,0.422441,0.241222,0.935934,0.501022,0.473206,0.75172,0.596753,0.676587,0.845348,0.174944,0.733031,0.202875,0.95973,0.421406,0.277254,0.422956,0.788697,0.992518,0.989088,0.847346,0.862755,0.52883,0.636074,0.310948,0.95044,0.836101,0.851683,0.0512554,0.174043,0.741865,0.815631,0.497165,0.732625,0.908983,0.527996,0.0215843,0.362181,0.396684,0.810283,0.348852,0.135499,0.246852,0.627202,0.705632,0.962737,0.992047,0.798893,0.432804,0.812082,0.269608,0.876157,0.0948402,0.941743,0.701054,0.257207,0.692829,0.559461,0.805266,0.432613,0.210639,0.15667,0.585146,0.438054,0.516762,0.940371,0.543396,0.536467,0.469573,0.957598,0.0821463,0.684876,0.57596,0.958686,0.382592,0.968089,0.807291,0.438344,0.784845,0.656211,0.805732,0.259143,0.858041,0.629209,0.496456,0.56998,0.0289712,0.192955,0.650899,0.908934,0.924572,0.813446,0.760518,0.0365365,0.163358,0.348932,0.16616,0.302754,0.0384668,0.820295,0.824699,0.745936,0.893709,0.970479,0.545574,0.866258,0.360449,0.571617,0.930994,0.376453,0.6877,0.821411,0.637177,0.675713,0.76326,0.0275149,0.560428,0.35797,0.00918365,0.238515,0.638536,0.146189,0.0796512,0.51354,0.264871,0.127241,0.653805,0.199575,0.396473,0.745174,0.523144,0.358385,0.723414,0.237358,0.609172,0.538879,0.151472,0.717786,0.551469,0.432361,0.812219,0.700462,0.772398,0.918356,0.396477,0.0676931,0.668693,0.27277,0.976553,0.169968,0.909381,0.849379,0.719425,0.98203,0.123111,0.319032,0.470442,0.632617,0.926362,0.482158,0.537233,0.800683,0.349082,0.891789,0.288369,0.857446,0.005059,0.507627,0.645157,0.389304,0.0956314,0.186016,0.409265,0.0264903,0.743967,0.986729,0.0779612,0.574211,0.802247,0.779106,0.136683,0.630489,0.557515,0.593884,0.19604,0.879376,0.10718,0.645251,0.0608659,0.703095,0.896266,0.276593,0.56443,0.994879,0.990342,0.448858,0.64134,0.925741,0.0369231,0.92978,0.287133,0.468535,0.955002,0.197549,0.130415,0.83353,0.0565107,0.0520141,0.101957,0.667653,0.486493,0.981171,0.611944,0.819271,0.881801,0.979056,0.0718794,0.482438,0.850473,0.268903,0.799972,0.0942622,0.394115,0.462494,0.637346,0.0557323,0.942712,0.56709,0.727928,0.717104,0.947537,0.15435,0.931232,0.427752,0.147124,0.643472,0.466244,0.286175,0.77717,0.692496,0.521959,0.769058,0.711083,0.149823,0.128007,0.272445,0.541503,0.117168,0.68416,0.772547,0.548239,0.596541,0.0946909,0.613334,0.00164169,0.203533,0.248669,0.872201,0.952703,0.459386,0.464213,0.892413,0.0202644,0.538305,0.0895179,0.458015,0.393158,0.329627,0.63629,0.618921,0.988544,0.178124,0.31946,|0.400171,0.510622,0.320988,0.673403,0.768321,0.394958,0.316336,0.13444,0.452723,0.299993,0.620005,0.342168,0.841874,0.425784,0.466766,0.825083,0.939765,0.267359,0.927262,0.345078,0.940609,0.153147,0.597201,0.825891,0.473825,0.93504,0.429402,0.0293591,0.650841,0.560997,0.803046,0.383113,0.919108,0.628165,0.248201,0.881703,0.139348,0.253618,0.0424484,0.175451,0.71395,0.300571,0.971632,0.74309,0.138529,0.12282,0.945186,0.96094,0.269558,0.956353,0.239197,0.744767,0.255242,0.96749,0.897156,0.538721,0.517536,0.776583,0.146785,0.0464562,0.0167098,0.463777,0.302297,0.678388,0.478338,0.82662,0.42623,0.555881,0.744876,0.448996,0.376972,0.442124,0.0894706,0.697102,0.436068,0.488585,0.910523,0.684526,0.712296,0.707698,0.272551,0.930286,0.882374,0.94548,0.0926117,0.00162774,0.584926,0.292429,0.480979,0.72174,0.0443957,0.297038,0.00735539,0.778248,0.610375,0.794126,0.561916,0.131158,0.944194,0.074935,0.740652,0.1227,0.750519,0.898589,0.966375,0.929996,0.999374,0.588892,0.359998,0.282303,0.162946,0.0108466,0.908758,0.383225,0.847376,0.553396,0.46786,0.7732,0.519244,0.45652,0.0400097,0.502744,0.859571,0.94258,0.561536,0.462508,0.700377,0.197913,0.580093,0.914367,0.925933,0.947325,0.275718,0.71942,0.382365,0.821951,0.477283,0.989201,0.660356,0.0882689,0.330835,0.68071,0.478584,0.482784,0.0359558,0.217955,0.893044,0.843194,0.773496,0.881147,0.634179,0.764711,0.434946,0.350378,0.448599,0.903675,0.356956,0.532211,0.0896871,0.152314,0.464477,0.34556,0.822136,0.244739,0.408903,0.890481,0.865691,0.917739,0.313212,0.754364,0.826293,0.851974,0.628642,0.105072,0.782576,0.578992,0.536473,0.133427,0.285495,0.288187,0.790013,0.341845,0.915737,0.464737,0.729554,0.131508,0.0986766,0.678309,0.0134367,0.877151,0.861512,0.132024,0.291639,0.100809,0.00874001,0.0737566,0.878704,0.326972,0.213616,0.468468,0.496516,0.414551,0.396568,0.168774,0.163199,0.920096,0.621959,0.815639,0.283698,0.268722,0.788974,0.564652,0.835412,0.291919,0.281514,0.0147861,0.500862,0.780221,0.253831,0.648022,0.903543,0.711713,0.283099,0.844742,0.294786,0.781318,0.518519,0.799171,0.381844,0.298373,0.90109,0.620544,0.0484016,0.146613,0.028653,0.431484,0.957552,0.559955,0.398461,0.979506,0.363497,0.359808,0.636067,0.91243,0.342364,0.39847,0.599028,0.739408,0.639443,0.798536,0.127863,0.724296,0.315131,0.187109,0.36986,0.605463,0.42964,0.559149,0.636757,0.211422,0.656672,0.00937068,0.991216,0.990608,0.414783,0.286313,0.763638,0.531216,0.675627,0.942055,0.384265,0.260645,0.644508,0.66611,0.506439,0.552122,0.333222,0.931026,0.854443,0.134145,0.203794,0.610013,0.507286,0.9361,0.356816,0.892126,0.167409,0.958757,0.946625,0.719954,0.540248,0.140397,0.939107,0.341338,0.887559,0.626965,0.660697,0.310807,0.0555279,0.51299,0.641338,0.704108,0.000495493,0.995134,0.626652,0.647363,0.659045,0.65453,0.796982,0.902904,0.582041,0.625581,0.66778,0.250479,0.275122,0.492455,0.44598,0.298747,0.978175,0.167086,0.145573,0.00831699,0.370327,0.443125,0.718688,0.653781,0.373785,0.102622,0.517364,0.0869635,0.981648,0.529937,0.970921,0.531918,0.68436,0.895049,0.575367,0.707745,0.410565,0.738915,0.427669,0.670993,0.367393,0.533519,0.794387,0.671199,0.556849,0.735287,0.96966,0.904766,0.27939,0.505629,0.192729,0.36091,0.511593,0.0196943,0.784746,0.698703,0.508136,0.908696,0.706006,0.749697,0.979432,0.0951238,0.590017,0.443489,0.913168,0.246266,0.829171,0.0354033,0.0758268,0.972458,0.65938,0.390763,0.879722,0.755521,0.220745,0.132933,0.326333,0.711686,0.340643,0.395218,0.410914,0.530029,0.201001,0.451221,0.20354,0.352555,0.680776,0.448155,0.625587,0.766205,0.771971,0.272669,0.411105,0.571071,0.430085,0.0143462,0.972254,0.58493,0.161311,0.0451714,0.678943,0.080249,0.400594,0.103582,0.59521,0.158334,0.39876,0.857325,0.213115,0.38579,0.0385251,0.516345,0.194198,0.291098,0.0659062,0.577713,0.987302,0.848072,0.250136,0.948358,0.26148,0.0300798,0.946426,0.0986028,0.458195,0.579503,0.476556,0.150841,0.340593,0.997247,0.823988,0.563251,0.94504,0.737406,0.120798,0.728465,0.745958,0.725102,0.491237,0.469124,0.773647,0.490769,0.84808,0.140188,0.948169,0.918742,0.944569,0.502009,0.916284,0.428527,0.697777,0.422783,0.0513277,0.91505,0.4065,0.0658174,0.651418,0.98335,0.408338,0.909074,0.359985,0.317591,0.0688265,0.944017,0.919718,0.273964,0.752099,0.474742,0.559397,0.221821,0.112647,0.303763,0.322575,0.059516,0.311365,0.444984,0.39385,0.963927,0.415717,0.27774,0.803883,0.554703,0.288527,0.584421,0.810059,0.6696,0.159413,0.708165,0.0652252,0.216657,0.00704861,0.848305,0.774204,0.376057,0.387149,0.942073,0.901599,0.00590682,0.8636,0.191174,0.116432,0.00272906,0.123074,0.478112,0.277129,0.363502,0.139976,0.305029,0.994296,0.232599,0.217589,0.931294,0.237025,0.168864,0.520836,0.212623,0.137949,0.825325,0.58365,0.496178,0.183745,0.571504,0.358647,0.231597,0.870456,0.842222,0.0537481,0.50011,0.886078,0.0878607,0.419536,0.831792,0.767492,0.0753986,0.895123,0.707579,0.189651,0.878958,0.231248,0.524259,0.631799,0.41409,0.649859,0.496591,0.251482,0.741508,0.400074,0.164405,0.808133,0.319124,0.268798,0.184921,0.250235,0.725562,0.475615,0.535035,0.0453964,0.812305,0.361471,0.317253,0.560141,0.106796,0.638773,0.991083,0.227128,0.549672,0.650054,0.0772694,0.192324,0.0603847,0.464561,0.30553,0.538224,0.915409,0.893703,0.815904,0.247931,0.325159,0.598044,0.386468,0.515067,0.224476,0.471521,0.612423,0.880085,0.774616,0.724828,0.518701,0.538766,0.565008,0.963631,0.911047,0.501914,0.67544,0.771055,0.268812,0.306556,0.597436,0.218435,0.0859171,0.484764,0.452546,0.512743,0.111301,0.1306,0.104679,0.477744,0.722336,0.017239,0.14322,0.469381,0.820512,0.684164,0.777799,0.831352,0.391025,0.980779,0.645129,0.219866,0.54081,0.444629,0.719137,0.468881,0.143787,0.0649133,0.00239873,0.42324,0.413266,0.595025,0.81822,0.0472285,0.7549,0.652261,0.0572621,0.909477,0.217357,0.933677,0.218535,0.827465,0.821503,0.344731,0.684167,0.33675,0.275325,0.0504192,0.18386,0.201402,0.557241,0.451432,0.963962,0.575119,0.798191,0.668687,0.520833,0.27913,0.531169,0.410752,0.207687,0.209272,0.469245,0.764292,0.165548,0.270766,0.206255,0.142534,0.0725042,0.185667,0.356428,0.76954,0.960305,0.17593,0.596504,0.318084,0.112366,0.377697,0.339187,0.0236025,0.14261,0.989913,0.498215,0.384998,0.980927,0.181015,0.767242,0.349741,0.374647,0.521202,0.489493,0.101253,0.299696,0.280277,0.013541,0.864315,0.412737,0.408736,0.376458,0.282673,0.29699,0.125895,0.692557,0.0192961,0.633806,0.127073,0.939278,0.252448,0.850908,0.555025,0.74675,0.613258,0.631087,0.804928,0.763577,0.921455,0.166015,0.090121,0.784575,0.185888,0.448666,0.693667,0.2562,0.546089,0.683258,0.886554,0.314651,0.146825,0.78728,0.55669,0.503159,0.754725,0.255003,0.532392,0.112637,0.0979144,0.435476,0.571223,0.650521,0.620516,0.168439,0.909552,0.511744,0.0469013,0.437958,0.502599,0.75162,0.445955,0.902936,0.577191,0.801237,0.53052,0.946666,0.854718,0.804232,0.932003,0.711499,0.110935,0.0363852,0.0581555,0.10777,0.834773,0.25018,0.238234,0.55433,0.306379,0.0438491,0.275509,0.693018,0.0848223,0.0689791,0.772714,0.599952,0.550532,0.395154,0.898742,0.800769,0.359833,0.175187,0.78734,0.679936,0.548792,0.723488,0.992746,0.475752,0.649961,0.440286,0.459698,0.492137,0.384853,0.743839,0.881963,0.278823,0.10653,0.737122,0.467625,0.497019,0.655625,0.58133,0.880787,0.279933,0.447837,0.810914,0.984241,0.532276,0.818071,0.943843,0.383928,0.852997,0.168922,0.915792,0.241582,0.0394352,0.759273,0.9442,0.761132,0.0793766,0.66304,0.1813,0.161116,0.907393,0.0535126,0.18124,0.377445,0.581932,0.378613,0.617457,0.83991,0.690428,0.373944,0.691179,0.352582,0.505249,0.764287,0.787308,0.881251,0.824718,0.122773,0.52951,0.244319,0.133137,0.338802,0.397079,0.411967,0.862246,0.733734,0.729527,0.895859,0.0134656,0.00355285,0.980855,0.363602,0.343803,0.406802,0.115504,0.149913,0.686588,0.286084,0.0499884,0.5487,0.860577,0.92314,0.158266,0.78872,0.942274,0.133693,0.666597,0.86819,0.675426,0.44088,0.363931,0.609093,0.685555,0.726947,0.451563,0.790339,0.26295,0.605367,0.189055,0.140193,0.950729,0.649057,0.932879,0.0193163,0.00592184,0.770489,0.370273,0.239146,0.189627,0.849114,0.982807,0.42445,0.599197,0.344887,0.687406,0.897267,0.558103,0.779406,0.683835,0.218862,0.940237,0.162905,0.104649,0.653715,0.495942,0.794023,0.373945,0.570568,0.159438,0.742512,0.624308,0.203629,0.127043,0.567074,0.925471,0.0226557,0.747433,0.0840933,0.0374339,0.878731,0.0682847,0.520069,0.801581,0.668319,0.458612,0.349002,0.893278,0.783756,0.398395,0.808456,0.399795,0.371856,0.0845833,0.641349,0.628494,0.569912,0.422082,0.39172,0.0112426,0.974851,0.750538,0.719633,0.324866,0.249293,0.966335,0.888953,0.693839,0.277126,0.283375,0.922113,0.348966,0.460383,0.0814872,0.940923,0.285994,0.355229,0.383626,0.815612,0.0958521,0.950669,0.698751,0.780742,0.603715,0.306687,0.452133,0.973285,0.875578,0.431405,0.229256,0.71438,0.881522,0.869214,0.835892,0.149113,0.92869,0.014182,0.438182,0.205297,0.59986,0.420015,0.0213842,0.00548357,0.337553,0.924574,0.782851,0.601247,0.531784,0.895588,0.511055,0.830577,0.0759739,0.484178,0.285157,0.647497,0.301839,0.20515,0.272982,0.163869,0.637658,0.764708,0.0296397,|0.262635,0.0705904,0.802862,0.721736,0.617922,0.610907,0.228873,0.84322,0.931285,0.395489,0.895035,0.554631,0.411718,0.75475,0.653478,0.260898,0.751438,0.239105,0.894726,0.419509,0.132049,0.74656,0.697478,0.951641,0.114467,0.85071,0.206482,0.313352,0.0554071,0.314707,0.484428,0.93562,0.421972,0.385238,0.513503,0.369779,0.187077,0.706149,0.768769,0.458289,0.883023,0.96473,0.0275208,0.464862,0.00645471,0.2663,0.192755,0.71304,0.772103,0.139341,0.663778,0.109903,0.798103,0.728872,0.510362,0.305613,0.0959585,0.82498,0.993931,0.732413,0.939101,0.966926,0.11755,0.593904,0.240126,0.580723,0.504676,0.0662965,0.504337,0.0940299,0.907844,0.00619835,0.541543,0.143275,0.262028,0.569206,0.262686,0.933293,0.0773662,0.285149,0.864577,0.850793,0.690842,0.564157,0.025556,0.478727,0.432353,0.0878983,0.645332,0.818372,0.977682,0.317962,0.732525,0.119963,0.969757,0.605791,0.487164,0.815797,0.560658,0.984586,0.88155,0.781039,0.682857,0.0681137,0.214828,0.801661,0.994436,0.162929,0.994374,0.920092,0.693498,0.0494568,0.0210055,0.563647,0.932101,0.819281,0.00181293,0.764667,0.783137,0.0739829,0.312078,0.953269,0.186324,0.404071,0.729542,0.379272,0.52938,0.701582,0.125912,0.0668821,0.437512,0.589698,0.739131,0.975359,0.234677,0.783597,0.575583,0.77631,0.648503,0.0142987,0.650171,0.983479,0.041535,0.851302,0.10527,0.00990075,0.0900964,0.809237,0.63169,0.269492,0.962732,0.707817,0.612527,0.0118376,0.180783,0.885438,0.692556,0.307577,0.545298,0.0449957,0.673237,0.129848,0.7432,0.340211,0.121979,0.728346,0.314307,0.557875,0.650583,0.321762,0.226158,0.0167178,0.464434,0.608263,0.759554,0.168776,0.0843974,0.2991,0.622127,0.133731,0.726296,0.232092,0.426142,0.622204,0.268882,0.606448,0.280544,0.066784,0.837381,0.950018,0.503365,0.878101,0.251788,0.974767,0.38377,0.725199,0.919326,0.75351,0.781272,0.270222,0.418458,0.178705,0.856205,0.833584,0.637107,0.768551,0.218546,0.724634,0.404347,0.214181,0.505494,0.986339,0.525734,0.0972216,0.051524,0.120508,0.627591,0.208021,0.722148,0.12419,0.00240242,0.365311,0.826758,0.199846,0.64866,0.0996445,0.0436503,0.363508,0.646677,0.148327,0.351279,0.429304,0.52176,0.0280122,0.00782466,0.159244,0.590379,0.557902,0.958589,0.893165,0.100034,0.378432,0.534041,0.443157,0.413192,0.386971,0.0820999,0.653514,0.112349,0.369401,0.747146,0.814605,0.716822,0.925801,0.300155,0.349878,0.723125,0.222269,0.658404,0.781701,0.506053,0.97621,0.321338,0.650707,0.0116463,0.272401,0.172342,0.982392,0.413167,0.0334367,0.228742,0.801671,0.822958,0.0822417,0.346408,0.747108,0.0305157,0.501292,0.675882,0.393722,0.589274,0.491528,0.832889,0.960641,0.0173122,0.8673,0.827474,0.752836,0.946391,0.445457,0.648907,0.609735,0.359069,0.08905,0.507491,0.419645,0.241333,0.24072,0.451959,0.055864,0.321552,0.36312,0.672246,0.980218,0.851877,0.539559,0.992933,0.684823,0.581721,0.279324,0.290134,0.503433,0.592408,0.915284,0.218864,0.481626,0.470295,0.350754,0.330404,0.147031,0.503417,0.611604,0.0049324,0.361901,0.0491068,0.769054,0.197206,0.0665893,0.0370945,0.712449,0.444879,0.837115,0.24399,0.568111,0.858903,0.0892859,0.515457,0.214578,0.530682,0.888309,0.100686,0.165431,0.571919,0.846014,0.49019,0.30832,0.274789,0.0848548,0.645773,0.205128,0.49211,0.348855,0.855179,0.870532,0.703913,0.772456,0.163026,0.583216,0.869336,0.151173,0.762328,0.890645,0.591914,0.369095,0.0178565,0.16407,0.563436,0.784863,0.449542,0.883847,0.30131,0.816225,0.673755,0.158761,0.0457758,0.503886,0.106947,0.146668,0.446618,0.25853,0.708589,0.130607,0.227127,0.664203,0.427135,0.467045,0.382084,0.963932,0.957651,0.742475,0.680984,0.642962,0.521632,0.143726,0.919451,0.0279146,0.0789682,0.200114,0.978253,0.341142,0.168813,0.501568,0.280793,0.0671523,0.782386,0.577777,0.885893,0.634028,0.393356,0.744634,0.804198,0.318949,0.673058,0.728217,0.611915,0.211086,0.655259,0.352023,0.3051,0.734799,0.604767,0.520828,0.58466,0.00343782,0.93074,0.636703,0.057361,0.0779732,0.345867,0.0635985,0.650751,0.747225,0.453658,0.793364,0.795509,0.427005,0.309153,0.501461,0.241598,0.319195,0.0844541,0.8656,0.454209,0.1449,0.00515687,0.766595,0.505437,0.760633,0.343696,0.0806982,0.878737,0.703999,0.408741,0.741168,0.669187,0.646455,0.214767,0.684816,0.0658464,0.397179,0.0811877,0.167749,0.860863,0.639451,0.196382,0.691215,0.49612,0.144786,0.611206,0.116364,0.141372,0.273382,0.895739,0.383608,0.0810708,0.437973,0.666114,0.369043,0.746934,0.488922,0.780511,0.19052,0.625458,0.383248,0.0551785,0.089996,0.843904,0.300636,0.362076,0.708636,0.70314,0.654915,0.104517,0.721371,0.687156,0.770959,0.420981,0.95452,0.0361333,0.820032,0.326062,0.0219278,0.724945,0.681895,0.333837,0.220226,0.508484,0.0685794,0.542284,0.331207,0.659946,0.764514,0.616018,0.0149717,0.849872,0.501926,0.478907,0.239771,0.21068,0.166546,0.510114,0.5879,0.266165,0.769861,0.530027,0.0543934,0.649605,0.264169,0.263164,0.832067,0.786274,0.833668,0.206743,0.872213,0.212942,0.238782,0.575345,0.899229,0.514859,0.498356,0.45894,0.70356,0.675734,0.286261,0.71098,0.898794,0.114212,0.387748,0.439295,0.312382,0.593569,0.402444,0.400815,0.150959,0.687591,0.257258,0.433763,0.621412,0.467579,0.625194,0.813917,0.113217,0.841986,0.969247,0.252184,0.878071,0.0868633,0.552952,0.163454,0.650273,0.635045,0.845455,0.796975,0.810868,0.9637,0.0430452,0.756309,0.479568,0.153409,0.597505,0.309128,0.901838,0.20291,0.981642,0.51116,0.63845,0.0754924,0.55185,0.361185,0.646535,0.870115,0.0749928,0.185807,0.687581,0.99751,0.430222,0.990348,0.488873,0.0914114,0.10007,0.209704,0.521318,0.929598,0.675937,0.716355,0.698549,0.654119,0.124227,0.528113,0.742246,0.500171,0.636581,0.589689,0.659352,0.352314,0.190955,0.308495,0.251031,0.952953,0.104818,0.490988,0.43801,0.486563,0.161072,0.693041,0.443982,0.186267,0.735827,0.532003,0.763714,0.980172,0.847813,0.862359,0.211071,0.88111,0.965182,0.696388,0.30481,0.524152,0.523299,0.945311,0.182989,0.127655,0.421267,0.378676,0.442517,0.856994,0.859546,0.573733,0.630991,0.914032,0.571842,0.192096,0.502032,0.0754864,0.817746,0.764859,0.259778,0.790603,0.915517,0.126055,0.953899,0.665212,0.121437,0.834911,0.49884,0.4388,0.913947,0.0379692,0.698333,0.289632,0.157292,0.669225,0.254502,0.853002,0.151618,0.368079,0.203755,0.514488,0.131,0.993616,0.463085,0.0179167,0.996961,0.0854416,0.537338,0.906278,0.610659,0.769781,0.450263,0.591563,0.855762,0.970677,0.390014,0.205629,0.882746,0.640872,0.935043,0.660076,0.330232,0.262611,0.817709,0.179518,0.286811,0.843238,0.777386,0.0532206,0.755587,0.735812,0.171616,0.375799,0.411114,0.819655,0.780311,0.436803,0.445091,0.827985,0.680915,0.994668,0.609088,0.625365,0.787681,0.578518,0.629038,0.24068,0.835115,0.510298,0.567356,0.234407,0.0231903,0.963742,0.166976,0.420923,0.357143,0.0575926,0.0573483,0.633421,0.513647,0.674118,0.0993456,0.554597,0.220936,0.830886,0.636251,0.375682,0.5846,0.393395,0.249271,0.642638,0.703541,0.435014,0.906812,0.682157,0.673817,0.684653,0.768956,0.467001,0.926949,0.562415,0.953872,0.950705,0.757085,0.137758,0.386469,0.744585,0.204972,0.657373,0.466124,0.147526,0.56193,0.538336,0.275382,0.497685,0.608628,0.92884,0.313923,0.992651,0.846108,0.749038,0.225208,0.741395,0.398068,0.260244,0.277846,0.161397,0.220512,0.390377,0.150294,0.364447,0.934789,0.680666,0.805683,0.169516,0.163672,0.923646,0.69313,0.827318,0.786823,0.638351,0.48033,0.639464,0.391098,0.488068,0.423491,0.717438,0.0539459,0.830721,0.552081,0.363574,0.743893,0.97802,0.290509,0.326508,0.51692,0.215726,0.398054,0.854266,0.490316,0.757919,0.00811994,0.985832,0.142942,0.868593,0.1522,0.990554,0.568799,0.728871,0.138785,0.608921,0.928478,0.441737,0.0409227,0.514329,0.483943,0.501182,0.695896,0.127533,0.676437,0.852021,0.52813,0.276134,0.364165,0.134976,0.650768,0.975198,0.149868,0.539528,0.145673,0.577044,0.245175,0.155692,0.819408,0.0251305,0.70944,0.397205,0.155061,0.818738,0.552463,0.374202,0.432196,0.0769225,0.478292,0.886748,0.35653,0.411312,0.412325,0.00334805,0.992381,0.303257,0.671181,0.772565,0.954245,0.475551,0.171378,0.937971,0.91491,0.356955,0.00608528,0.865371,0.639245,0.662081,0.00308442,0.14714,0.432207,0.619096,0.440604,0.684709,0.538792,0.606568,0.559759,0.296378,0.258181,0.418496,0.175887,0.078068,0.888891,0.565445,0.420021,0.386383,0.987536,0.828533,0.773771,0.273997,0.97844,0.0217118,0.682213,0.86461,0.879869,0.50564,0.766274,0.984987,0.374796,0.279196,0.138337,0.106676,0.568603,0.529023,0.688444,0.498077,0.520715,0.0663816,0.217791,0.481172,0.748643,0.308606,0.927862,0.710872,0.778481,0.19335,0.57737,0.959321,0.703744,0.313399,0.540668,0.96623,0.294976,0.811965,0.376606,0.99689,0.260473,0.668985,0.500574,0.292904,0.972384,0.632003,0.564658,0.915711,0.63131,0.981414,0.499058,0.280859,0.829399,0.00384456,0.427482,0.473541,0.432394,0.684637,0.143752,0.332911,0.205468,0.0912874,0.458921,0.253486,0.406491,0.00343847,0.774969,0.0556286,0.225343,0.653832,0.432983,0.851605,0.923325,0.196815,0.383947,0.45156,0.420899,0.212584,0.558274,0.0957947,0.174461,0.414516,0.80971,0.243745,0.722066,0.167,0.585182,0.728196,0.0978872,0.30827,0.335556,0.733265,0.399602,0.587299,0.152925,0.844565,0.33143,0.497865,0.800513,0.252738,0.255365,|0.345474,0.433051,0.591321,0.231046,0.368732,0.0982141,0.697102,0.375708,0.875952,0.796426,0.0639855,0.889525,0.132465,0.310899,0.901625,0.26226,0.504396,0.259055,0.54304,0.861839,0.546131,0.537337,0.54728,0.70124,0.021594,0.131132,0.302978,0.18632,0.00618976,0.382247,0.779221,0.153448,0.488248,0.113819,0.523428,0.0837425,0.886182,0.724153,0.612191,0.894606,0.646418,0.877648,0.963717,0.638897,0.988011,0.389681,0.974165,0.143043,0.315454,0.0836614,0.303437,0.828595,0.790977,0.342077,0.156884,0.912455,0.841105,0.229786,0.666787,0.695413,0.598509,0.986056,0.0752458,0.177439,0.970227,0.936349,0.558175,0.525966,0.939413,0.190301,0.115946,0.508507,0.372048,0.299491,0.604438,0.109183,0.118719,0.882899,0.800473,0.85763,0.592375,0.84136,0.241542,0.333408,0.0795231,0.765472,0.951118,0.997276,0.649997,0.989932,0.749409,0.201757,0.342457,0.401992,0.969527,0.158952,0.702518,0.497925,0.680306,0.38218,0.139853,0.368662,0.811014,0.839933,0.0212382,0.600031,0.202733,0.58466,0.471636,0.189623,0.731039,0.861113,0.867554,0.587253,0.298292,0.627323,0.218735,0.590303,0.921866,0.678082,0.833882,0.780987,0.481545,0.400848,0.394498,0.277206,0.818116,0.710923,0.24019,0.18436,0.401998,0.996824,0.356328,0.858025,0.47203,0.293626,0.245221,0.191202,0.905414,0.415887,0.160666,0.431437,0.618881,0.394588,0.737987,0.708119,0.135815,0.613101,0.93727,0.0498541,0.646525,0.580898,0.55851,0.583348,0.631236,0.386921,0.0515134,0.790501,0.601739,0.0677068,0.642042,0.381467,0.139729,0.186352,0.154843,0.612789,0.217042,0.223751,0.675391,0.532329,0.296205,0.362793,0.764344,0.820148,0.240494,0.372704,0.0466248,0.237209,0.642527,0.381882,0.205753,0.885168,0.562631,0.365803,0.0990479,0.492813,0.67515,0.730512,0.811447,0.643182,0.108842,0.0379509,0.367455,0.636415,0.589975,0.46833,0.676513,0.287828,0.110663,0.0759738,0.768186,0.238922,0.0119851,0.056275,0.112478,0.102912,0.0822712,0.699562,0.448727,0.228898,0.871952,0.843177,0.794332,0.0712559,0.627544,0.637419,0.299392,0.914087,0.926209,0.284155,0.513213,0.695165,0.235965,0.942181,0.802044,0.465452,0.775604,0.899859,0.901885,0.665843,0.498779,0.24154,0.0221909,0.818362,0.418726,0.0333263,0.679617,0.336458,0.855369,0.755688,0.0954053,0.0475993,0.88662,0.164492,0.699632,0.204625,0.584503,0.209291,0.0629549,0.23153,0.61363,0.340603,0.767975,0.129141,0.819331,0.0493498,0.306256,0.718229,0.0551655,0.342313,0.425895,0.620119,0.290603,0.079576,0.985638,0.703845,0.0599778,0.845669,0.348014,0.476175,0.157785,0.552225,0.350354,0.380853,0.37104,0.268735,0.179464,0.336734,0.694442,0.730063,0.203841,0.467455,0.816475,0.45213,0.719579,0.235917,0.41862,0.237922,0.58757,0.777724,0.961621,0.277326,0.343811,0.771612,0.790839,0.210195,0.524544,0.386291,0.493019,0.921892,0.994807,0.0867988,0.524481,0.792913,0.193878,0.376637,0.414113,0.725564,0.300882,0.951065,0.409625,0.743537,0.813941,0.551771,0.00651932,0.774296,0.71763,0.794881,0.182496,0.367404,0.975158,0.939546,0.0870324,0.856603,0.521894,0.549149,0.490042,0.0295271,0.541719,0.918268,0.906079,0.187879,0.633792,0.0923988,0.267618,0.0153484,0.1352,0.144674,0.524791,0.877499,0.611715,0.247573,0.580685,0.814446,0.600216,0.177098,0.871282,0.0896736,0.670554,0.279759,0.64165,0.932028,0.413764,0.745825,0.886835,0.079285,0.623211,0.0136406,0.249394,0.425747,0.546225,0.493189,0.490341,0.976245,0.947323,0.238659,0.760592,0.504013,0.780751,0.216919,0.314776,0.330048,0.14922,0.314504,0.819448,0.876401,0.514463,0.628212,0.213302,0.409735,0.135111,0.432709,0.394898,0.172369,0.637328,0.43598,0.249518,0.656938,0.488903,0.77609,0.257202,0.679561,0.981165,0.316197,0.937444,0.525781,0.0511857,0.965511,0.777906,0.322206,0.0918664,0.993326,0.212646,0.166133,0.0773193,0.947678,0.470766,0.627505,0.508834,0.0203167,0.808015,0.0586583,0.211833,0.486524,0.994076,0.526083,0.869419,0.855836,0.11781,0.304613,0.666188,0.221653,0.389875,0.860758,0.981104,0.50418,0.139364,0.578734,0.266617,0.281594,0.318011,0.0825597,0.0183863,0.189951,0.426509,0.0773359,0.870769,0.167562,0.279473,0.702236,0.251803,0.259541,0.823694,0.747495,0.439158,0.500171,0.417016,0.105652,0.547245,0.501805,0.681311,0.231499,0.418352,0.227186,0.0933558,0.833379,0.810199,0.574541,0.843028,0.457067,0.721473,0.174039,0.16209,0.438705,0.795808,0.662883,0.833027,0.827424,0.829064,0.624599,0.936123,0.284333,0.105707,0.0702528,0.558976,0.263898,0.112091,0.432732,0.130747,0.669247,0.601103,0.298927,0.366607,0.604855,0.928653,0.985189,0.228156,0.218793,0.296923,0.980016,0.623533,0.0657123,0.882898,0.902994,0.252061,0.425329,0.880049,0.912822,0.38283,0.477374,0.166475,0.628373,0.0914323,0.991291,0.746484,0.144483,0.678532,0.714405,0.953718,0.43577,0.173048,0.727615,0.498885,0.456487,0.0692291,0.41981,0.201361,0.590399,0.0104853,0.404594,0.0885192,0.648618,0.542858,0.915822,0.505778,0.597378,0.34224,0.641598,0.844522,0.282762,0.379031,0.475108,0.744254,0.778038,0.885857,0.021033,0.226986,0.587733,0.455197,0.060028,0.884785,0.640339,0.322671,0.946948,0.171824,0.804213,0.805575,0.76609,0.415637,0.569324,0.889233,0.726148,0.751793,0.778053,0.37218,0.342266,0.304376,0.400477,0.469352,0.298642,0.666701,0.313314,0.744463,0.0699971,0.137501,0.553702,0.381362,0.135538,0.0536931,0.56353,0.290035,0.841549,0.259885,0.0064621,0.328767,0.15211,0.920869,0.56304,0.0127139,0.374364,0.991309,0.168214,0.18864,0.52621,0.945532,0.292321,0.977135,0.573046,0.828026,0.97464,0.180176,0.525291,0.950817,0.00566477,0.810448,0.507194,0.171572,0.40258,0.616624,0.453622,0.820535,0.154623,0.665438,0.312083,0.681331,0.81343,0.948097,0.0535241,0.620831,0.205685,0.870671,0.753369,0.690348,0.272623,0.629809,0.78137,0.753532,0.0389923,0.45393,0.0579064,0.706035,0.720139,0.870817,0.210155,0.501707,0.351025,0.210693,0.490193,0.772849,0.445315,0.0495027,0.317899,0.622832,0.18727,0.853224,0.770827,0.60147,0.411794,0.0416524,0.400503,0.234384,0.407969,0.629038,0.0372843,0.305019,0.0876047,0.507844,0.625637,0.212182,0.558964,0.779038,0.706663,0.241034,0.457859,0.863042,0.507531,0.415965,0.615813,0.847761,0.068886,0.309032,0.196753,0.854656,0.290359,0.808361,0.334409,0.697189,0.942318,0.805424,0.743075,0.807854,0.203846,0.356653,0.463752,0.89088,0.91766,0.528782,0.142651,0.0354717,0.321337,0.224784,0.744079,0.476605,0.477892,0.366292,0.787803,0.408717,0.590745,0.549185,0.614075,0.479594,0.146955,0.659718,0.334673,0.986732,0.136054,0.0543721,0.451526,0.926134,0.735086,0.438864,0.460435,0.388616,0.614175,0.32106,0.451894,0.845317,0.883317,0.837867,0.893152,0.0712618,0.524516,0.343809,0.729992,0.914384,0.632116,0.836933,0.0945657,0.48916,0.25083,0.927429,0.166844,0.580895,0.209082,0.903934,0.568937,0.522014,0.99525,0.820202,0.324827,0.514077,0.843059,0.556241,0.781209,0.118058,0.971747,0.958693,0.632231,0.81237,0.283216,0.496401,0.376662,0.725269,0.786603,0.554265,0.0908005,0.65759,0.215692,0.402625,0.181535,0.497302,0.46623,0.961224,0.335308,0.434627,0.460725,0.268303,0.149521,0.795434,0.276084,0.046387,0.424956,0.116689,0.439558,0.641031,0.285041,0.0559633,0.380896,0.997601,0.25952,0.592243,0.297982,0.689686,0.0781672,0.283118,0.878033,0.438047,0.138902,0.868065,0.513198,0.700248,0.471176,0.544872,0.954577,0.144113,0.363665,0.962394,0.767088,0.0279633,0.80655,0.341356,0.870222,0.0151588,0.412103,0.415133,0.461874,0.586534,0.228095,0.61566,0.740635,0.880132,0.215139,0.862208,0.708357,0.598642,0.768426,0.505885,0.839669,0.528759,0.453283,0.0217864,0.71775,0.0305175,0.413057,0.506027,0.88045,0.341961,0.544101,0.879534,0.399488,0.946133,0.218886,0.963797,0.677245,0.144962,0.303891,0.40059,0.515184,0.697326,0.959308,0.81981,0.481784,0.500591,0.83867,0.440728,0.179974,0.206054,0.70594,0.457439,0.220167,0.176709,0.247897,0.229442,0.841403,0.305395,0.923508,0.524777,0.808977,0.919866,0.227291,0.692383,0.0159983,0.402315,0.927031,0.283644,0.442128,0.784302,0.0947383,0.404668,0.978427,0.565133,0.267896,0.994741,0.833051,0.402646,0.900251,0.0226818,0.882153,0.228408,0.246196,0.879162,0.142726,0.734776,0.286574,0.562151,0.00480664,0.562508,0.139123,0.280693,0.0302085,0.163941,0.716632,0.468799,0.0288212,0.302583,0.778148,0.449288,0.420033,0.280876,0.468028,0.599343,0.633717,0.719216,0.879448,0.323726,0.436224,0.430162,0.329472,0.90904,0.122634,0.952337,0.756333,0.26504,0.855494,0.494317,0.539698,0.561795,0.341342,0.246695,0.279226,0.87961,0.54852,0.150795,0.187311,0.578163,0.541835,0.846535,0.98547,0.00922579,0.688363,0.834688,0.321693,0.609269,0.199321,0.449933,0.859232,0.726672,0.505341,0.56007,0.309654,0.68767,0.602394,0.530112,0.854553,0.269515,0.358082,0.60893,0.94109,0.743385,0.897186,0.595141,0.197402,0.916165,0.649925,0.401491,0.068997,0.478796,0.992229,0.349972,0.345393,0.037123,0.890491,0.41475,0.745718,0.726038,0.774976,0.069699,0.154709,0.446094,0.605307,0.523015,0.0296068,0.173303,0.640589,0.789387,0.0155324,0.172466,0.744761,0.0908248,0.0600764,0.756829,0.774673,0.448708,0.265097,0.917543,0.836906,0.763187,0.243242,0.191502,0.953803,0.379406,0.794365,0.122974,0.709267,0.575299,0.72072,0.249908,0.972467,0.0492275,0.97207,0.980331,0.30912,0.466519,0.0367311,0.933009,0.463677,0.258281,0.723478,0.737437,0.565109,|0.19819,0.489351,0.547976,0.460295,0.0214061,0.911504,0.96938,0.775302,0.773844,0.871523,0.284145,0.941519,0.947546,0.156801,0.157972,0.270583,0.376022,0.0848812,0.11953,0.981879,0.32192,0.378068,0.828055,0.834621,0.283151,0.166712,0.91013,0.0710653,0.83654,0.169834,0.896774,0.0859891,0.857731,0.0557841,0.54632,0.783493,0.0502273,0.756854,0.500361,0.991472,0.130549,0.279569,0.883641,0.272572,0.565441,0.179225,0.78893,0.920906,0.282408,0.59615,0.301418,0.899709,0.288728,0.724996,0.150909,0.0561943,0.441842,0.991862,0.404328,0.142162,0.0972074,0.62821,0.426017,0.150627,0.684834,0.69332,0.942699,0.644826,0.276184,0.815533,0.361045,0.0238543,0.938765,0.372753,0.848797,0.108361,0.0893761,0.277993,0.807728,0.498973,0.0266539,0.258551,0.509701,0.43829,0.96552,0.398845,0.286093,0.191846,0.59491,0.475493,0.909795,0.08356,0.550805,0.525728,0.250176,0.232838,0.214571,0.867798,0.141602,0.63825,0.766025,0.487333,0.724922,0.999278,0.89955,0.012601,0.583223,0.147587,0.815692,0.569471,0.804493,0.0582216,0.47621,0.55937,0.340514,0.109533,0.232027,0.666255,0.288072,0.310391,0.504783,0.0677326,0.369376,0.24764,0.560439,0.244456,0.501591,0.123855,0.711706,0.664788,0.239478,0.163991,0.508799,0.897433,0.36942,0.330644,0.451552,0.073204,0.298935,0.750393,0.797875,0.921984,0.947471,0.234796,0.39261,0.92477,0.865333,0.426236,0.99136,0.646468,0.497321,0.13626,0.686106,0.836306,0.794872,0.098055,0.589157,0.0398448,0.251344,0.0772064,0.657678,0.943384,0.287065,0.590607,0.228203,0.192129,0.0444447,0.187724,0.921099,0.123735,0.184649,0.605078,0.96496,0.455176,0.416141,0.655076,0.667056,0.966175,0.0868688,0.269045,0.288629,0.540664,0.763844,0.656019,0.787542,0.911839,0.148721,0.963711,0.0531473,0.00592256,0.434413,0.245127,0.830197,0.0798329,0.127337,0.150307,0.355565,0.126497,0.398221,0.386448,0.729753,0.772346,0.0745671,0.348448,0.104731,0.143756,0.0209314,0.240278,0.654168,0.250496,0.282174,0.121427,0.444959,0.161793,0.0463213,0.513067,0.0933573,0.373329,0.131117,0.188292,0.74896,0.501775,0.461666,0.328655,0.332,0.162439,0.358248,0.59937,0.480406,0.659124,0.494209,0.799456,0.514154,0.0444637,0.487291,0.345097,0.567716,0.372607,0.69251,0.823565,0.946393,0.0371807,0.540625,0.415436,0.30759,0.245913,0.806255,0.39896,0.891862,0.737799,0.713773,0.12229,0.0594016,0.533539,0.236193,0.722106,0.540826,0.394044,0.631472,0.364256,0.858898,0.66823,0.0480506,0.624426,0.234306,0.758576,0.308707,0.346665,0.582998,0.415169,0.966756,0.992976,0.913901,0.671336,0.265529,0.836741,0.45166,0.68213,0.0800917,0.059303,0.660975,0.41969,0.435808,0.355036,0.480684,0.693668,0.207553,0.62624,0.752065,0.324362,0.971266,0.445858,0.768356,0.954064,0.278065,0.519857,0.276474,0.650415,0.0944223,0.150998,0.916179,0.702729,0.0462337,0.813864,0.952267,0.305929,0.529882,0.545697,0.784969,0.56533,0.75483,0.289244,0.694853,0.516385,0.648717,0.990239,0.295884,0.667346,0.185549,0.315019,0.998731,0.644889,0.0339606,0.223104,0.226885,0.303592,0.417452,0.367245,0.53597,0.802402,0.506937,0.981943,0.736443,0.164913,0.439321,0.50327,0.111189,0.656258,0.201128,0.0316994,0.632106,0.427109,0.48639,0.161645,0.420617,0.527241,0.69917,0.910689,0.326867,0.200221,0.603531,0.188313,0.388791,0.785021,0.330131,0.306818,0.0900912,0.0219056,0.639006,0.802949,0.444297,0.577528,0.990198,0.398917,0.72067,0.372588,0.182513,0.000381887,0.490209,0.663268,0.417462,0.959182,0.646739,0.82903,0.905047,0.109275,0.303052,0.140112,0.443159,0.109243,0.616949,0.185905,0.915307,0.645326,0.310758,0.611544,0.0209021,0.300495,0.704179,0.819494,0.420794,0.00472265,0.17379,0.566731,0.0673209,0.215956,0.862426,0.230716,0.564325,0.531056,0.00856239,0.720196,0.472511,0.375382,0.235004,0.089018,0.980869,0.483527,0.216079,0.837467,0.577629,0.811719,0.550781,0.0377221,0.26276,0.315574,0.446557,0.120602,0.515691,0.144309,0.113895,0.132562,0.0606307,0.282917,0.868022,0.994728,0.240541,0.0286704,0.880912,0.419278,0.483556,0.433027,0.865605,0.0278184,0.133993,0.178291,0.51165,0.376209,0.641302,0.471728,0.977139,0.642846,0.62347,0.0112678,0.83109,0.943972,0.396487,0.257115,0.984475,0.333371,0.253919,0.986367,0.380006,0.887194,0.211623,0.231124,0.29771,0.669182,0.373763,0.0562413,0.770109,0.474368,0.403344,0.594685,0.599538,0.716824,0.101177,0.625972,0.853103,0.999476,0.0709123,0.715704,0.963839,0.0211837,0.109442,0.239094,0.0188745,0.332901,0.873579,0.687326,0.719347,0.660533,0.312326,0.962542,0.309967,0.94244,0.232031,0.688325,0.451699,0.00399506,0.991233,0.286011,0.043058,0.16854,0.248012,0.0872034,0.72261,0.242456,0.686797,0.912474,0.846061,0.583631,0.230998,0.355844,0.0672694,0.219968,0.758944,0.264032,0.104793,0.569984,0.308761,0.944708,0.314921,0.397533,0.436405,0.982534,0.946106,0.0484638,0.338606,0.302563,0.313428,0.136988,0.202055,0.216266,0.309826,0.290703,0.796713,0.318107,0.466983,0.943158,0.296045,0.914983,0.481433,0.563923,0.783037,0.0693692,0.525389,0.284357,0.209905,0.375084,0.0562359,0.478359,0.22679,0.855273,0.510954,0.0359598,0.17614,0.806541,0.198299,0.668902,0.965604,0.326218,0.693791,0.854304,0.0262816,0.405024,0.201587,0.0226869,0.438043,0.855812,0.525673,0.363413,0.0571637,0.697419,0.476341,0.248169,0.28144,0.593232,0.859517,0.255238,0.169895,0.769034,0.961948,0.45895,0.0146343,0.765189,0.279507,0.144242,0.460624,0.306841,0.458145,0.246139,0.0139079,0.284203,0.592941,0.235628,0.544373,0.551099,0.886086,0.267902,0.891098,0.889464,0.702304,0.612888,0.0764388,0.900004,0.479433,0.00170201,0.557984,0.209479,0.221694,0.611125,0.742202,0.355694,0.287211,0.102598,0.960697,0.781516,0.224017,0.913831,0.327754,0.656208,0.550412,0.373947,0.663394,0.0087316,0.961121,0.840023,0.587684,0.750996,0.524894,0.943173,0.0299596,0.213615,0.83118,0.972595,0.975705,0.00311571,0.283941,0.587351,0.939344,0.636825,0.883561,0.372853,0.807094,0.812245,0.576605,0.302741,0.47735,0.522635,0.191631,0.954168,0.773695,0.576648,0.876562,0.307457,0.0841841,0.673516,0.933067,0.413811,0.673649,0.338998,0.0491096,0.064658,0.628867,0.72064,0.0436437,0.902363,0.0425645,0.801711,0.0550677,0.48769,0.125057,0.988987,0.533631,0.883971,0.865383,0.688231,0.675766,0.633329,0.845367,0.168957,0.854413,0.0684499,0.119355,0.243446,0.343582,0.319196,0.437629,0.230375,0.857976,0.126779,0.330959,0.391002,0.938065,0.662568,0.932722,0.211793,0.897037,0.240854,0.659912,0.117471,0.608046,0.91191,0.918909,0.546269,0.943919,0.221217,0.0372527,0.587441,0.105075,0.897869,0.735139,0.186124,0.0463787,0.307196,0.433793,0.110669,0.240798,0.649791,0.356144,0.351873,0.6355,0.960369,0.444295,0.595261,0.436159,0.89795,0.958311,0.314898,0.576787,0.20711,0.688315,0.733743,0.174362,0.163797,0.685544,0.203875,0.15497,0.47235,0.840646,0.318284,0.100187,0.267638,0.647326,0.45512,0.835541,0.254974,0.227433,0.363598,0.882011,0.809495,0.564377,0.220932,0.871199,0.859247,0.560807,0.386629,0.225552,0.259686,0.233689,0.692531,0.982601,0.182619,0.269121,0.776105,0.875865,0.811396,0.246123,0.11025,0.159738,0.300973,0.608438,0.787802,0.422479,0.62065,0.474253,0.89348,0.470906,0.210924,0.0206026,0.626141,0.502354,0.420902,0.849905,0.394699,0.872055,0.683219,0.177954,0.988484,0.183087,0.569927,0.863978,0.139969,0.272717,0.852421,0.207693,0.371162,0.504969,0.852962,0.24786,0.389563,0.694868,0.493496,0.0210094,0.748917,0.952821,0.877691,0.0725237,0.718921,0.293629,0.177703,0.0892887,0.432551,0.793128,0.473426,0.391384,0.42589,0.521792,0.384792,0.473831,0.839543,0.136679,0.149815,0.805478,0.41581,0.274494,0.875137,0.81837,0.465417,0.214647,0.0439429,0.057265,0.789899,0.775547,0.191159,0.872972,0.942807,0.137957,0.159471,0.438343,0.849112,0.909485,0.745363,0.799014,0.0244228,0.244433,0.588175,0.918294,0.862323,0.806605,0.952884,0.150064,0.213927,0.318791,0.535863,0.574322,0.396475,0.632411,0.509619,0.157099,0.832879,0.425593,0.891336,0.805012,0.245412,0.884443,0.180022,0.659982,0.322032,0.923765,0.788937,0.025992,0.368355,0.136659,0.66436,0.852611,0.138196,0.18599,0.913508,0.000991881,0.522004,0.339197,0.913778,0.635382,0.747789,0.0880055,0.315549,0.322175,0.826627,0.253456,0.0443799,0.209029,0.176452,0.682357,0.377244,0.0971535,0.823134,0.435945,0.810402,0.637472,0.937424,0.656681,0.935047,0.303723,0.313824,0.800145,0.0603703,0.00503337,0.275499,0.905714,0.148152,0.165533,0.934678,0.139181,0.13206,0.764807,0.511951,0.498921,0.0272921,0.248933,0.547281,0.887854,0.70272,0.66483,0.636254,0.0698911,0.166453,0.948147,0.241364,0.463957,0.473093,0.0667026,0.468272,0.268837,0.776136,0.394472,0.503085,0.427703,0.151492,0.900595,0.68307,0.572078,0.993778,0.2125,0.20602,0.31214,0.152019,0.78608,0.842795,0.0448871,0.198165,0.404071,0.315919,0.484551,0.0425937,0.515369,0.198171,0.751939,0.0522183,0.951849,0.192357,0.762652,0.774094,0.539722,0.927212,0.438079,0.380508,0.134302,0.530578,0.875826,0.781789,0.622448,0.0991974,0.797507,0.0851694,0.671346,0.794156,0.528139,0.790947,0.413408,0.377063,0.233218,0.34032,0.56623,0.925606,0.652622,0.596709,0.428478,0.96357,0.936593,0.248232,0.646467,0.167484,0.322332,0.810182,0.0495294,0.746786,0.335995,0.969449,0.220572,0.270109,0.476051,0.165531,0.0068661,0.0466649,0.405146,0.47519,0.698914,0.812214,|0.0844802,0.469464,0.380671,0.882397,0.0179789,0.419723,0.00388241,0.0992931,0.328561,0.600913,0.796538,0.86157,0.845023,0.31605,0.518935,0.544497,0.725638,0.641795,0.404568,0.810046,0.0752314,0.163857,0.0994262,0.414009,0.568867,0.889962,0.748357,0.146687,0.785729,0.445045,0.636838,0.63733,0.510264,0.376581,0.130039,0.668701,0.0166393,0.150761,0.852917,0.877189,0.819453,0.0568118,0.943803,0.522687,0.699736,0.739044,0.534576,0.137804,0.515719,0.673132,0.15165,0.305055,0.837562,0.0637444,0.969521,0.100437,0.845672,0.414073,0.92682,0.649288,0.462189,0.885089,0.25863,0.279885,0.888071,0.934902,0.34445,0.0697835,0.796705,0.466973,0.0637311,0.462041,0.782721,0.323347,0.482097,0.825901,0.473585,0.621975,0.378216,0.903461,0.714941,0.00962299,0.8766,0.621762,0.904246,0.469483,0.567631,0.105206,0.453359,0.134458,0.503074,0.472272,0.150914,0.501252,0.488895,0.798553,0.968549,0.651918,0.649063,0.0391051,0.00276309,0.170374,0.0481195,0.281429,0.176695,0.671031,0.774842,0.991636,0.781988,0.234773,0.424757,0.798302,0.293597,0.312979,0.904469,0.980409,0.29083,0.524042,0.779458,0.848677,0.0637282,0.409751,0.80071,0.394655,0.661102,0.731605,0.494185,0.506609,0.229198,0.998127,0.538305,0.368857,0.645569,0.752735,0.538838,0.0203963,0.56335,0.535416,0.62502,0.0402524,0.0823975,0.627045,0.182908,0.156608,0.456197,0.32142,0.835226,0.441046,0.917093,0.562438,0.243291,0.521281,0.643205,0.876527,0.77866,0.189544,0.603144,0.818909,0.300828,0.331296,0.271509,0.534353,0.971547,0.525562,0.81459,0.920831,0.325723,0.415658,0.792727,0.352551,0.20435,0.885584,0.419697,0.238165,0.125107,0.689415,0.809911,0.993713,0.0525638,0.596469,0.445408,0.206288,0.954123,0.727713,0.113658,0.60633,0.883839,0.498413,0.731347,0.964028,0.736254,0.189411,0.0946002,0.63762,0.755404,0.40507,0.759509,0.298471,0.145486,0.505618,0.487734,0.623133,0.536007,0.265337,0.301126,0.353422,0.938761,0.716295,0.472152,0.0800812,0.801133,0.640828,0.0730968,0.960638,0.681518,0.981747,0.794591,0.133343,0.7797,0.510316,0.165072,0.20272,0.59695,0.0816723,0.287665,0.561809,0.366743,0.734073,0.499691,0.688828,0.654071,0.20226,0.7909,0.208554,0.40102,0.900972,0.361128,0.988345,0.392092,0.665552,0.672852,0.899466,0.558998,0.75386,0.359077,0.611712,0.503268,0.261785,0.302698,0.950445,0.104188,0.499555,0.369194,0.885978,0.0973828,0.143692,0.554327,0.839172,0.0784602,0.541333,0.670298,0.372028,0.948295,0.166037,0.986498,0.218468,0.0388768,0.536797,0.914673,0.0784658,0.904499,0.807866,0.0973969,0.924431,0.910333,0.15438,0.355575,0.12664,0.0181307,0.0272516,0.875295,0.680762,0.48161,0.435861,0.356483,0.32098,0.560014,0.897467,0.413607,0.315915,0.220996,0.173408,0.58814,0.783402,0.381972,0.115497,0.900043,0.762724,0.540011,0.35415,0.0623277,0.127436,0.311007,0.789171,0.389723,0.366971,0.989419,0.553084,0.38362,0.317897,0.793798,0.487876,0.0159565,0.330835,0.899793,0.12591,0.879904,0.672901,0.374845,0.247784,0.413511,0.00953835,0.763512,0.723446,0.4082,0.624772,0.714904,0.299023,0.470665,0.150365,0.117119,0.657127,0.663951,0.0501373,0.0644292,0.326581,0.5075,0.144305,0.80613,0.487275,0.9855,0.18969,0.701798,0.955863,0.991938,0.28653,0.458057,0.910794,0.654234,0.756412,0.986591,0.814722,0.932512,0.319139,0.239296,0.0317706,0.0460276,0.588742,0.954803,0.876328,0.224968,0.458476,0.801621,0.363311,0.547572,0.783698,0.956729,0.469804,0.495411,0.810535,0.140748,0.23833,0.0300537,0.330878,0.847615,0.393839,0.043424,0.557683,0.587391,0.125632,0.17598,0.715266,0.280357,0.371419,0.767129,0.979275,0.456086,0.197673,0.444573,0.526502,0.324701,0.373937,0.463686,0.379393,0.491711,0.0686738,0.324963,0.447629,0.286302,0.485318,0.636567,0.497576,0.583836,0.46223,0.469735,0.970875,0.392373,0.171951,0.099983,0.343813,0.712122,0.227867,0.272991,0.776438,0.809118,0.104085,0.120835,0.122461,0.905248,0.713182,0.669787,0.646519,0.623127,0.923625,0.362119,0.128446,0.288262,0.934626,0.0822671,0.0630289,0.964673,0.6639,0.733916,0.604701,0.515024,0.841298,0.0801607,0.920993,0.910742,0.328324,0.224151,0.787119,0.384336,0.478002,0.607687,0.349861,0.488439,0.018512,0.335989,0.19751,0.632935,0.35146,0.944791,0.005463,0.763953,0.652423,0.134285,0.152083,0.0362109,0.704726,0.0776438,0.146972,0.567755,0.010945,0.720696,0.0856822,0.17201,0.381069,0.403957,0.552341,0.56382,0.605791,0.552598,0.174066,0.88256,0.329884,0.750035,0.0990127,0.846114,0.992898,0.639033,0.486031,0.262402,0.986173,0.159428,0.731884,0.62837,0.635528,0.41469,0.204257,0.37375,0.92132,0.380022,0.0881293,0.623471,0.935201,0.273561,0.727882,0.831148,0.642529,0.417776,0.207914,0.803779,0.645779,0.0953379,0.869895,0.338563,0.164651,0.570524,0.208786,0.493967,0.457952,0.641782,0.408047,0.251689,0.653803,0.191786,0.914352,0.162019,0.370724,0.446366,0.118476,0.330382,0.0883349,0.354517,0.576077,0.406397,0.444921,0.895657,0.708722,0.586838,0.651828,0.753672,0.694238,0.297234,0.615995,0.248116,0.64007,0.0296493,0.303125,0.911513,0.206307,0.49736,0.710797,0.662164,0.68012,0.702457,0.57122,0.981623,0.332678,0.611175,0.00661337,0.129263,0.943397,0.347025,0.770586,0.690994,0.650383,0.365037,0.397179,0.30527,0.687246,0.0780267,0.315652,0.841818,0.764634,0.638202,0.999096,0.561768,0.10477,0.828691,0.0778763,0.409582,0.882153,0.781588,0.843081,0.915443,0.53598,0.358702,0.638889,0.970256,0.960995,0.882405,0.262207,0.471815,0.301055,0.470935,0.222391,0.877724,0.178413,0.143111,0.692187,0.124698,0.864814,0.323914,0.455215,0.409028,0.723866,0.421217,0.114201,0.829338,0.473657,0.0321699,0.954685,0.660423,0.872783,0.163709,0.860214,0.368011,0.32407,0.758702,0.816738,0.0382653,0.980778,0.919683,0.392827,0.618657,0.940542,0.747666,0.0972995,0.455516,0.384364,0.501175,0.429037,0.248829,0.121794,0.083187,0.866758,0.755493,0.559383,0.051916,0.204522,0.363141,0.732655,0.480002,0.185076,0.846643,0.834509,0.793595,0.475501,0.128802,0.831476,0.151321,0.737809,0.0814993,0.28856,0.500538,0.717975,0.922126,0.504771,0.742695,0.617789,0.302682,0.225065,0.462863,0.900768,0.296799,0.228766,0.943108,0.593141,0.526493,0.256275,0.10304,0.671159,0.9292,0.749971,0.343644,0.946919,0.71759,0.582896,0.105991,0.845735,0.781939,0.0359255,0.516489,0.344923,0.0926295,0.723744,0.39417,0.492955,0.313758,0.701017,0.402538,0.628384,0.020905,0.0450274,0.473614,0.75558,0.134915,0.926229,0.980478,0.970608,0.608266,0.923099,0.441856,0.284324,0.0974084,0.563722,0.515183,0.266316,0.935378,0.713083,0.707462,0.156598,0.28822,0.150996,0.661555,0.212363,0.673146,0.465988,0.468592,0.663935,0.166445,0.323035,0.250779,0.390761,0.139616,0.256402,0.66972,0.0501736,0.538911,0.853895,0.164682,0.696035,0.895293,0.993632,0.768505,0.919174,0.378287,0.296732,0.39946,0.185964,0.483431,0.727342,0.518774,0.920973,0.00828433,0.444494,0.973333,0.677389,0.305156,0.802182,0.0460026,0.801629,0.220143,0.819291,0.557893,0.178052,0.462238,0.600561,0.206269,0.681628,0.273199,0.673315,0.463339,0.831208,0.721498,0.80406,0.467313,0.527534,0.236698,0.96733,0.403886,0.300036,0.0657875,0.680274,0.834674,0.871556,0.601506,0.00098604,0.386853,0.974079,0.346486,0.24865,0.256681,0.929512,0.493546,0.255619,0.764171,0.635825,0.469259,0.337269,0.967351,0.356606,0.593141,0.320173,0.939821,0.0165637,0.990766,0.35918,0.0999644,0.725437,0.756489,0.237615,0.660967,0.559674,0.415101,0.256428,0.828668,0.935028,0.727021,0.462419,0.000897706,0.0413237,0.858972,0.0673169,0.886799,0.531985,0.99759,0.26708,0.479337,0.677695,0.0319151,0.111546,0.278955,0.879377,0.0861264,0.294915,0.545061,0.188771,0.00549221,0.0188805,0.296608,0.0969536,0.650959,0.247676,0.562759,0.231689,0.798563,0.100197,0.321049,0.0587865,0.0864239,0.761453,0.511312,0.231698,0.551845,0.223876,0.343597,0.665711,0.802523,0.8826,0.738043,0.671054,0.307519,0.379065,0.118851,0.279142,0.177804,0.288326,0.126509,0.865312,0.0760975,0.570788,0.664323,0.389147,0.162447,0.0495659,0.793837,0.279833,0.290302,0.144434,0.73156,0.299711,0.433406,0.668812,0.747181,0.0963776,0.467729,0.654968,0.717075,0.029316,0.0891522,0.719364,0.241435,0.746471,0.105324,0.927882,0.972426,0.679569,0.404026,0.0162447,0.404202,0.244049,0.698733,0.603446,0.409381,0.858715,0.0256373,0.967236,0.302984,0.106405,0.354641,0.155877,0.120171,0.174362,0.695986,0.246287,0.171561,0.0553393,0.443422,0.207247,0.333526,0.500719,0.197701,0.34489,0.500471,0.065261,0.31256,0.77861,0.434476,0.860677,0.00640243,0.146686,0.431892,0.716214,0.00278425,0.506575,0.97749,0.638025,0.0919691,0.770999,0.67663,0.320954,0.283315,0.214076,0.745465,0.898663,0.825751,0.148592,0.691216,0.772984,0.948892,0.100048,0.152398,0.793386,0.746744,0.134459,0.649895,0.902779,0.581936,0.887781,0.919438,0.420393,0.775891,0.211816,0.235419,0.604988,0.0083794,0.187058,0.963453,0.912247,0.554946,0.142668,0.461829,0.812648,0.221851,0.881569,0.372642,0.437343,0.534274,0.317886,0.125288,0.306539,0.530502,0.257259,0.215646,0.13838,0.643716,0.260934,0.747743,0.517316,0.198832,0.879551,0.282931,0.822693,0.213798,0.724028,0.937251,0.745247,0.363454,0.252106,0.641834,0.964407,0.281986,0.293575,0.366753,0.374512,0.681514,0.342521,0.728705,0.803935,0.67027,0.769256,0.106889,0.803114,0.921037,0.917721,0.281922,0.00315499,|0.756033,0.23286,0.139472,0.825608,0.141466,0.927257,0.495601,0.312679,0.91214,0.159731,0.0157604,0.624222,0.288174,0.256992,0.724405,0.767898,0.531418,0.0575877,0.701226,0.103596,0.585971,0.488828,0.685695,0.647705,0.132277,0.333132,0.648596,0.893705,0.0444756,0.853001,0.765176,0.41409,0.267367,0.243691,0.978122,0.234456,0.0881533,0.682343,0.273364,0.19489,0.580702,0.600658,0.620585,0.834952,0.810359,0.13658,0.504529,0.0360692,0.886505,0.84621,0.0627016,0.281263,0.541731,0.302906,0.333443,0.540742,0.0998302,0.340808,0.12379,0.961791,0.0151309,0.257377,0.212862,0.303894,0.494437,0.164738,0.031279,0.417398,0.0154719,0.189123,0.766985,0.103864,0.131333,0.281125,0.43795,0.941261,0.143592,0.096096,0.771544,0.186935,0.495278,0.062813,0.181476,0.379447,0.348699,0.276443,0.250176,0.784642,0.549053,0.609089,0.749029,0.186849,0.0781262,0.178506,0.193276,0.995467,0.699397,0.364712,0.182948,0.975187,0.373388,0.457454,0.667575,0.0217587,0.126726,0.127584,0.366762,0.634545,0.20477,0.296901,0.493034,0.99534,0.393202,0.609032,0.457241,0.549264,0.127443,0.711475,0.466238,0.812495,0.257141,0.751672,0.0172775,0.506459,0.945734,0.293176,0.373044,0.514287,0.966723,0.453139,0.484093,0.117323,0.665497,0.369351,0.424117,0.68417,0.676083,0.66744,0.303511,0.516339,0.761101,0.713617,0.442481,0.923796,0.914931,0.195888,0.363016,0.966258,0.185522,0.0826383,0.737486,0.603105,0.0877696,0.401731,0.177385,0.52966,0.0475022,0.548014,0.195189,0.177019,0.570717,0.759356,0.955694,0.206622,0.72621,0.525805,0.147915,0.232533,0.427868,0.943029,0.177654,0.736507,0.866636,0.413232,0.542077,0.758822,0.948829,0.601207,0.244763,0.759385,0.621527,0.216029,0.76027,0.483058,0.705614,0.525331,0.451625,0.795231,0.841081,0.744415,0.578078,0.595916,0.437944,0.987532,0.463758,0.679599,0.16554,0.581852,0.283009,0.860013,0.0577313,0.914171,0.395958,0.284585,0.427501,0.853044,0.3178,0.26093,0.0494384,0.948992,0.211819,0.108531,0.696155,0.159917,0.437782,0.891439,0.913942,0.29594,0.668629,0.679363,0.723222,0.692283,0.0537357,0.522379,0.782139,0.241573,0.774034,0.46928,0.468501,0.28337,0.624229,0.705561,0.391901,0.388553,0.801594,0.954067,0.38288,0.707589,0.322525,0.703593,0.0645547,0.683761,0.744728,0.807822,0.65534,0.11648,0.686649,0.967317,0.3975,0.867434,0.428107,0.0715123,0.490429,0.765425,0.462802,0.628681,0.736366,0.920478,0.601089,0.745068,0.178969,0.57345,0.263211,0.122459,0.0347321,0.896372,0.925796,0.0901508,0.0479639,0.392341,0.988633,0.746586,0.749294,0.56125,0.778342,0.00553447,0.5777,0.313244,0.244388,0.26947,0.121791,0.62962,0.465208,0.535133,0.414783,0.808079,0.727053,0.17835,0.453731,0.529921,0.184647,0.303427,0.566604,0.212233,0.070849,0.166726,0.792012,0.072852,0.298796,0.414171,0.653721,0.65035,0.779552,0.483236,0.0182758,0.741172,0.546432,0.810753,0.92101,0.214809,0.269619,0.209205,0.217891,0.743837,0.176087,0.908943,0.563568,0.770042,0.58649,0.785587,0.682,0.846453,0.635087,0.15777,0.740203,0.736279,0.214971,0.351665,0.971187,0.339044,0.563724,0.0957105,0.776052,0.788138,0.0790798,0.576521,0.669029,0.971297,0.430075,0.530981,0.250993,0.669231,0.223554,0.303588,0.4559,0.234611,0.592358,0.368858,0.294263,0.879127,0.0979584,0.622139,0.043118,0.386051,0.887223,0.83929,0.301127,0.679784,0.397351,0.980655,0.236515,0.0175244,0.524314,0.319005,0.750352,0.844293,0.51992,0.649412,0.162796,0.505668,0.258116,0.253703,0.978163,0.386693,0.0695035,0.232621,0.291993,0.0444944,0.716871,0.740303,0.309736,0.890594,0.134729,0.785,0.0922711,0.175002,0.896525,0.176702,0.286293,0.874677,0.508772,0.986986,0.474487,0.741522,0.764508,0.267393,0.932169,0.166367,0.58495,0.372907,0.0490946,0.910457,0.309375,0.234118,0.454255,0.242856,0.746692,0.567336,0.493865,0.710482,0.466997,0.992438,0.58271,0.882804,0.249631,0.904616,0.906121,0.846768,0.603592,0.7026,0.0473667,0.991752,0.58232,0.264541,0.115948,0.341118,0.592636,0.459952,0.780364,0.364073,0.105503,0.877745,0.282091,0.885952,0.25017,0.722806,0.00131381,0.732302,0.488616,0.471886,0.304585,0.444733,0.36851,0.810247,0.701137,0.308457,0.977383,0.87055,0.352531,0.444755,0.154456,0.878955,0.338672,0.945793,0.673768,0.666743,0.542747,0.575409,0.0899988,0.59032,0.25738,0.786804,0.706283,0.256639,0.32649,0.302084,0.676108,0.0355719,0.65969,0.723661,0.780952,0.503195,0.302413,0.727562,0.782062,0.441978,0.0642884,0.805716,0.544211,0.0429734,0.699287,0.111787,0.401404,0.238914,0.145386,0.0340438,0.655909,0.302521,0.374216,0.908254,0.101683,0.968709,0.799307,0.613689,0.53762,0.396831,0.140409,0.450731,0.033398,0.191905,0.534784,0.241582,0.904094,0.508472,0.336075,0.179583,0.0865941,0.880493,0.127864,0.083834,0.102692,0.456963,0.736988,0.568358,0.458747,0.97494,0.77982,0.202265,0.917295,0.852835,0.71095,0.628144,0.799764,0.460349,0.534372,0.157482,0.829568,0.387616,0.858628,0.343297,0.320509,0.849112,0.173673,0.419047,0.19481,0.888489,0.544927,0.837138,0.810585,0.251484,0.676753,0.827366,0.292203,0.356212,0.644304,0.0956132,0.799821,0.0715901,0.654621,0.278175,0.425184,0.0289795,0.0488398,0.972155,0.883534,0.214142,0.473159,0.0423438,0.48002,0.376211,0.0775281,0.469568,0.988592,0.669469,0.602512,0.942814,0.831948,0.252979,0.652222,0.260966,0.759368,0.829804,0.804897,0.743084,0.150604,0.193677,0.930192,0.818106,0.42599,0.639554,0.179267,0.825555,0.175872,0.087189,0.934197,0.222314,0.717399,0.369901,0.127101,0.47947,0.987361,0.674874,0.0292321,0.225247,0.0634846,0.856284,0.656856,0.363173,0.340042,0.095944,0.979067,0.258834,0.547309,0.205146,0.647191,0.830092,0.856133,0.174919,0.293161,0.714824,0.639453,0.154469,0.85693,0.938955,0.176737,0.428233,0.415835,0.391283,0.738825,0.496488,0.815817,0.648363,0.159919,0.25982,0.146153,0.927,0.957715,0.697508,0.121455,0.178693,0.599046,0.286474,0.679861,0.472397,0.10231,0.611987,0.423912,0.864185,0.247206,0.43152,0.0775561,0.204258,0.592894,0.295202,0.0565996,0.898115,0.0127574,0.387649,0.256174,0.373487,0.139999,0.602747,0.427812,0.237125,0.85612,0.844992,0.547988,0.054708,0.730598,0.0724857,0.279015,0.103785,0.707666,0.125135,0.592402,0.809037,0.425609,0.421677,0.684007,0.30402,0.705757,0.0716133,0.688149,0.715242,0.14095,0.730665,0.138784,0.923609,0.855008,0.620573,0.188054,0.867939,0.401701,0.929945,0.714093,0.856798,0.128219,0.394961,0.214627,0.862753,0.21589,0.0633571,0.138234,0.00403392,0.285412,0.449357,0.707481,0.871079,0.207187,0.199887,0.167176,0.254406,0.743475,0.229957,0.934832,0.802835,0.275276,0.580043,0.825495,0.684294,0.530024,0.266191,0.215638,0.918125,0.496256,0.61401,0.0211838,0.184365,0.47261,0.972075,0.329378,0.128811,0.556302,0.427917,0.349089,0.421721,0.435469,0.122527,0.499839,0.138222,0.761434,0.555887,0.635088,0.835578,0.986077,0.458029,0.377503,0.149019,0.894146,0.430834,0.83694,0.960249,0.00781864,0.394506,0.98899,0.0479356,0.902923,0.320495,0.22195,0.610259,0.87519,0.526993,0.525209,0.3577,0.0291828,0.188513,0.443087,0.959789,0.28879,0.603971,0.859584,0.587803,0.953372,0.221916,0.533389,0.418062,0.405498,0.429477,0.910418,0.954047,0.000584424,0.234485,0.0590937,0.2613,0.895716,0.129355,0.447219,0.615836,0.133288,0.39978,0.203771,0.948139,0.523294,0.164821,0.619307,0.158939,0.788038,0.80542,0.980394,0.581071,0.87671,0.040152,0.377036,0.779906,0.340578,0.422303,0.182671,0.872225,0.522604,0.68547,0.721177,0.991881,0.501094,0.30752,0.470902,0.415313,0.98283,0.256568,0.0924199,0.283604,0.524808,0.12985,0.646681,0.820858,0.974206,0.639213,0.948787,0.206127,0.860913,0.875436,0.978382,0.573982,0.918898,0.486099,0.409032,0.759496,0.193425,0.411456,0.887759,0.281872,0.824342,0.779508,0.352099,0.33163,0.45176,0.773483,0.819325,0.369544,0.888802,0.30571,0.19451,0.440731,0.226595,0.440183,0.835042,0.788291,0.677538,0.506504,0.19605,0.765401,0.122832,0.0172894,0.989908,0.933059,0.519638,0.657135,0.263092,0.117753,0.908235,0.276073,0.0362456,0.584283,0.121969,0.77585,0.0969298,0.340593,0.820813,0.0894691,0.644899,0.218079,0.779363,0.0825341,0.807775,0.642211,0.966616,0.814711,0.075792,0.906986,0.734524,0.188631,0.272845,0.0134124,0.540177,0.097219,0.579749,0.553271,0.453106,0.628051,0.921699,0.0833835,0.510512,0.333709,0.815084,0.56344,0.232246,0.787008,0.809558,0.629248,0.808301,0.843617,0.885359,0.625143,0.00265783,0.69533,0.492954,0.375557,0.397538,0.595492,0.13338,0.933382,0.374489,0.836288,0.722898,0.774678,0.793402,0.861872,0.54657,0.060909,0.228996,0.863835,0.523326,0.790262,0.809338,0.453837,0.868686,0.991279,0.105259,0.58839,0.880673,0.352073,0.556923,0.312506,0.0524164,0.836713,0.526539,0.33982,0.379675,0.568375,0.525314,0.667258,0.580131,0.896527,0.573191,0.393463,0.257214,0.127199,0.173566,0.514547,0.272901,0.651088,0.776756,0.132955,0.0761048,0.590574,0.0895505,0.210033,0.754772,0.207128,0.170293,0.422175,0.634222,0.809575,0.453379,0.211982,0.362536,0.733556,0.20392,0.881813,0.975497,0.549559,0.121243,0.84824,0.31347,0.895825,0.637951,0.380888,0.107566,0.563955,0.0987076,0.923816,0.891726,0.522858,0.482633,0.586065,0.803855,0.870178,0.00684333,0.298529,0.668714,0.310457,0.464564,0.409273,0.263024,0.331782,0.722451,0.183296,0.334399,0.577752,0.532232,0.707543,|0.395203,0.692134,0.37972,0.693072,0.656227,0.141035,0.877983,0.48577,0.567313,0.167583,0.639216,0.235389,0.432803,0.8347,0.408121,0.23996,0.607934,0.386911,0.710586,0.0813734,0.423005,0.951509,0.90379,0.627894,0.714053,0.799598,0.130336,0.44509,0.492743,0.619544,0.79816,0.45243,0.739754,0.495454,0.311086,0.793994,0.0325133,0.0444262,0.891579,0.972994,0.790178,0.171924,0.287826,0.48273,0.421531,0.844382,0.989218,0.508386,0.0778905,0.766692,0.0810902,0.202501,0.644999,0.617275,0.107076,0.587376,0.3666,0.16645,0.410433,0.836446,0.0881491,0.107722,0.422931,0.452957,0.761816,0.442033,0.614659,0.763233,0.974701,0.369956,0.612992,0.691411,0.470198,0.79592,0.224705,0.727952,0.741946,0.155774,0.258967,0.60147,0.434681,0.531449,0.276361,0.343625,0.654513,0.167981,0.740017,0.473905,0.447283,0.951762,0.726551,0.789567,0.0995874,0.338648,0.201047,0.661418,0.986156,0.993012,0.371466,0.130214,0.95849,0.765438,0.244907,0.976169,0.246308,0.270594,0.665108,0.583275,0.585136,0.554191,0.063257,0.653989,0.588044,0.915465,0.808833,0.287311,0.846962,0.803244,0.801838,0.985277,0.685539,0.12593,0.546399,0.19934,0.566513,0.260139,0.0481709,0.29853,0.138304,0.154251,0.935065,0.31755,0.700867,0.10422,0.496104,0.449826,0.922298,0.886756,0.106357,0.890796,0.169764,0.282011,0.956729,0.426909,0.690248,0.181573,0.930218,0.738007,0.145644,0.151759,0.59555,0.749567,0.0237566,0.982044,0.198106,0.959531,0.758617,0.217231,0.495398,0.74495,0.649522,0.563121,0.133088,0.721412,0.810789,0.969991,0.348288,0.516345,0.96998,0.103864,0.728804,0.757164,0.642892,0.111986,0.783795,0.089359,0.38994,0.0202082,0.879537,0.884101,0.224798,0.485558,0.597069,0.812912,0.723174,0.0147418,0.511215,0.403369,0.616323,0.483829,0.32472,0.139872,0.512985,0.684979,0.975568,0.91252,0.356053,0.421439,0.555004,0.49276,0.398149,0.343994,0.922305,0.607228,0.135833,0.351659,0.623745,0.0984722,0.90817,0.167388,0.171138,0.426554,0.372803,0.137167,0.339678,0.088917,0.166909,0.856939,0.298272,0.928677,0.566773,0.85411,0.764854,0.355637,0.195724,0.452097,0.984468,0.217327,0.234692,0.792093,0.971778,0.265617,0.645448,0.467022,0.680249,0.419971,0.497723,0.136194,0.877432,0.541783,0.735696,0.0298812,0.84783,0.942954,0.855045,0.613342,0.678374,0.196056,0.0127868,0.644305,0.25309,0.974543,0.388983,0.405239,0.817663,0.199945,0.659427,0.696129,0.679406,0.329345,0.806859,0.955564,0.97508,0.656345,0.00267053,0.660442,0.454639,0.679925,0.958745,0.922928,0.0762743,0.502587,0.758107,0.501997,0.5915,0.215445,0.133099,0.95616,0.544677,0.845084,0.598266,0.789029,0.159831,0.348024,0.635238,0.136856,0.29322,0.769493,0.71031,0.269565,0.737453,0.668583,0.303566,0.126512,0.868675,0.593869,0.140975,0.788604,0.709686,0.63978,0.710375,0.191085,0.420887,0.655143,0.542044,0.97593,0.0445699,0.533971,0.319145,0.500014,0.177063,0.945132,0.885071,0.458463,0.378794,0.203698,0.658053,0.480734,0.0840302,0.220757,0.969213,0.609515,0.453871,0.644505,0.651048,0.00927883,0.28519,0.719755,0.0802426,0.303606,0.894393,0.758743,0.0887254,0.0738694,0.454931,0.452589,0.223666,0.963475,0.0734599,0.80877,0.279644,0.0777047,0.571739,0.12332,0.662636,0.492578,0.841241,0.743339,0.213021,0.843887,0.814967,0.75568,0.484958,0.442327,0.224418,0.11514,0.364688,0.356693,0.975636,0.805641,0.691458,0.990797,0.523439,0.831473,0.449845,0.672966,0.680824,0.431123,0.759603,0.677628,0.434263,0.571398,0.581651,0.225956,0.185344,0.84265,0.763497,0.499749,0.735133,0.962716,0.482143,0.551675,0.0678539,0.721241,0.836831,0.700215,0.662099,0.591338,0.312967,0.727278,0.835115,0.284355,0.034585,0.16909,0.0816498,0.0211066,0.996961,0.659662,0.470733,0.546446,0.525479,0.305093,0.263349,0.470402,0.72782,0.619267,0.619731,0.539756,0.936806,0.94967,0.517082,0.88915,0.764947,0.739748,0.845672,0.210151,0.148347,0.757698,0.727905,0.491061,0.268076,0.0159734,0.16753,0.63115,0.341212,0.633369,0.303165,0.667697,0.708297,0.748967,0.329394,0.695172,0.84186,0.476154,0.859737,0.0183294,0.662938,0.867672,0.202025,0.679971,0.209825,0.758597,0.432635,0.917876,0.244439,0.773775,0.866923,0.632952,0.183354,0.917235,0.175468,0.872296,0.211372,0.30108,0.867847,0.105067,0.0552071,0.292139,0.62748,0.258718,0.909018,0.72049,0.38601,0.240075,0.248339,0.476113,0.932903,0.563227,0.563223,0.989558,0.413861,0.478592,0.199283,0.854854,0.116516,0.310182,0.254965,0.379807,0.155532,0.772873,0.442162,0.447182,0.639465,0.82035,0.646864,0.22165,0.490346,0.427327,0.246939,0.851544,0.442524,0.202631,0.37068,0.391819,0.930197,0.826344,0.831678,0.716521,0.664015,0.715438,0.981041,0.0394101,0.07491,0.292255,0.423551,0.634008,0.0928699,0.636455,0.199639,0.709731,0.268823,0.80635,0.124463,0.796444,0.634983,0.447075,0.149216,0.232872,0.0378101,0.307868,0.723139,0.954229,0.734086,0.998626,0.612114,0.587037,0.600599,0.997603,0.892445,0.515083,0.220722,0.137833,0.46729,0.359246,0.755836,0.682715,0.658362,0.243875,0.747051,0.357637,0.0202952,0.495611,0.235828,0.411263,0.683745,0.575722,0.278524,0.802398,0.443314,0.0796642,0.153636,0.83793,0.748349,0.975303,0.943049,0.90393,0.832697,0.174263,0.620302,0.559364,0.562131,0.52686,0.316631,0.596506,0.588719,0.849168,0.284022,0.292878,0.143267,0.0539526,0.779322,0.865093,0.639581,0.870621,0.29629,0.716473,0.801821,0.585296,0.853547,0.118849,0.0713868,0.376022,0.193814,0.284292,0.827183,0.656669,0.685596,0.376378,0.268495,0.786442,0.796095,0.0918884,0.0515135,0.0102214,0.0817515,0.966079,0.064278,0.296748,0.10736,0.253323,0.674815,0.730747,0.414526,0.1445,0.591029,0.918855,0.472352,0.883757,0.979035,0.666089,0.904314,0.635711,0.51926,0.294608,0.583721,0.431241,0.844291,0.928317,0.900045,0.654228,0.868802,0.605016,0.486093,0.472308,0.0383751,0.698279,0.173952,0.912546,0.196826,0.00285399,0.314984,0.219608,0.914584,0.643495,0.381278,0.880343,0.479403,0.494727,0.361612,0.174733,0.108609,0.174432,0.421633,0.767363,0.923726,0.957611,0.990818,0.146731,0.093172,0.137764,0.926778,0.815756,0.586316,0.376746,0.845229,0.565529,0.674825,0.329032,0.123157,0.934143,0.8007,0.217325,0.416702,0.542715,0.501466,0.679895,0.121303,0.0264706,0.68069,0.411075,0.756931,0.455417,0.204783,0.117328,0.965027,0.960372,0.924952,0.0839537,0.455559,0.480562,0.162076,0.772893,0.399754,0.798236,0.902552,0.418566,0.256432,0.60195,0.534073,0.320973,0.474257,0.60891,0.924267,0.0131219,0.711632,0.435274,0.955938,0.982852,0.396493,0.148974,0.991206,0.333733,0.831244,0.74892,0.267232,0.493043,0.189799,0.83844,0.438494,0.0184166,0.321468,0.900783,0.384336,0.957487,0.676403,0.755339,0.889578,0.0546495,0.0963207,0.902626,0.207684,0.562461,0.199164,0.349858,0.336357,0.682214,0.691556,0.216101,0.733387,0.993262,0.346019,0.0547591,0.526619,0.676254,0.568839,0.940355,0.892254,0.166004,0.245405,0.165869,0.561798,0.750519,0.274694,0.846857,0.226344,0.325637,0.203083,0.941572,0.815293,0.0863483,0.243033,0.647792,0.136745,0.520873,0.420758,0.82295,0.156306,0.0852314,0.257085,0.764795,0.814532,0.692191,0.271402,0.0645731,0.57602,0.920608,0.453176,0.498793,0.893496,0.569401,0.185425,0.362411,0.0476899,0.843691,0.485372,0.347099,0.0473209,0.661247,0.122443,0.676173,0.788135,0.359292,0.936229,0.0391025,0.163129,0.187311,0.199191,0.436286,0.470739,0.778751,0.116436,0.907818,0.821288,0.397013,0.10431,0.343457,0.617782,0.594209,0.789735,0.499297,0.307371,0.140248,0.235578,0.210948,0.0878887,0.212119,0.892125,0.661349,0.641945,0.691218,0.988459,0.0123543,0.0336102,0.0975831,0.628796,0.894694,0.837805,0.807389,0.0765569,0.787143,0.00413525,0.446057,0.575681,0.850781,0.685743,0.844469,0.827547,0.595656,0.394625,0.773696,0.825711,0.651496,0.269196,0.642124,0.946796,0.475185,0.350721,0.972361,0.0267479,0.632423,0.454591,0.423948,0.0740329,0.677264,0.983476,0.708597,0.421307,0.206722,0.00273836,0.328942,0.91012,0.935237,0.865247,0.0823371,0.0128046,0.413076,0.0850545,0.871331,0.704676,0.293889,0.442174,0.00630271,0.0870535,0.53648,0.255546,0.827995,0.834453,0.52386,0.427293,0.842817,0.467426,0.335719,0.51244,0.671204,0.252701,0.123777,0.968754,0.868853,0.920048,0.935682,0.533762,0.0734104,0.569502,0.0688704,0.61549,0.922512,0.295726,0.561741,0.360937,0.401385,0.165857,0.356181,0.113286,0.740266,0.226385,0.334825,0.533979,0.675343,0.0415545,0.523199,0.540109,0.419217,0.23783,0.471525,0.115331,0.363272,0.0677513,0.140133,0.904274,0.627364,0.896792,0.644616,0.622687,0.185538,0.360927,0.777504,0.0425449,0.455017,0.835976,0.363436,0.981524,0.841607,0.407849,0.982927,0.0761728,0.630818,0.161432,0.918659,0.331634,0.211705,0.620167,0.269668,0.567143,0.398223,0.542059,0.846747,0.290108,0.198322,0.573955,0.964478,0.0390124,0.38124,0.968616,0.136763,0.834229,0.212569,0.960486,0.811272,0.168923,0.860645,0.312753,0.658581,0.140762,0.543747,0.77579,0.676913,0.676016,0.456987,0.868991,0.749963,0.728312,0.750251,0.477147,0.774137,0.943082,0.22577,0.167907,0.885643,0.839296,0.522109,0.485249,0.903232,0.808558,0.424381,0.865113,0.884634,0.27636,0.108401,0.101417,0.925739,0.0758029,0.742503,0.231028,0.466148,0.0109044,0.97258,0.450266,0.285405,0.235644,0.276286,0.137805,0.778181,0.291364,0.752597,0.698422,0.728872,0.681749,0.684895,0.115699,0.477085,|0.177319,0.115973,0.157335,0.54331,0.776544,0.371773,0.973468,0.222704,0.015483,0.117082,0.394872,0.406723,0.0464448,0.700163,0.140782,0.844103,0.402428,0.0174266,0.834524,0.234761,0.949503,0.443104,0.0697497,0.645218,0.524288,0.560061,0.138537,0.217199,0.614528,0.908748,0.719418,0.926208,0.512284,0.434784,0.655434,0.810954,0.41183,0.972484,0.767342,0.280747,0.1641,0.817965,0.863868,0.299004,0.530818,0.630242,0.328496,0.878104,0.828934,0.102562,0.669501,0.652228,0.915187,0.562577,0.212604,0.554226,0.052773,0.710134,0.227938,0.788214,0.233375,0.719493,0.834668,0.238283,0.45721,0.867238,0.695439,0.919221,0.851886,0.851788,0.595264,0.736037,0.344183,0.552884,0.209426,0.753662,0.558313,0.233603,0.225815,0.242219,0.949335,0.452658,0.628787,0.29589,0.0547696,0.111967,0.515969,0.769276,0.435427,0.453834,0.145939,0.499487,0.537568,0.993223,0.966163,0.965903,0.707168,0.551952,0.453761,0.0369852,0.15149,0.13567,0.0901201,0.195981,0.904774,0.871401,0.914714,0.111838,0.0264955,0.449691,0.935538,0.477073,0.345966,0.724809,0.506485,0.802724,0.315822,0.449687,0.046607,0.779145,0.657904,0.46941,0.293767,0.438428,0.85713,0.11287,0.178796,0.124448,0.251507,0.674904,0.157561,0.508627,0.428894,0.520326,0.094707,0.646963,0.392261,0.333665,0.584945,0.459699,0.262667,0.723292,0.617184,0.558959,0.973823,0.705379,0.520248,0.681401,0.167828,0.283878,0.389615,0.576232,0.136265,0.671938,0.113641,0.734475,0.886447,0.975795,0.681995,0.265667,0.0401255,0.0838165,0.0903922,0.250395,0.868765,0.509932,0.0196672,0.894382,0.936942,0.163316,0.387084,0.702557,0.221808,0.495775,0.341805,0.579553,0.272352,0.491092,0.148303,0.582647,0.0475453,0.366664,0.837867,0.599009,0.85038,0.625222,0.274965,0.819982,0.501776,0.0786705,0.260677,0.446855,0.51788,0.242918,0.790339,0.617252,0.920265,0.834216,0.517521,0.75739,0.0640444,0.312134,0.0961717,0.534863,0.630635,0.722462,0.964714,0.152497,0.708087,0.209625,0.129269,0.433394,0.437951,0.989367,0.649324,0.212944,0.163509,0.518576,0.128411,0.82142,0.303017,0.228168,0.493229,0.733058,0.342435,0.237133,0.493104,0.846176,0.0172666,0.703995,0.213163,0.0835882,0.839304,0.891471,0.865318,0.758108,0.594091,0.257236,0.345169,0.360642,0.524801,0.357191,0.650878,0.658224,0.227118,0.16441,0.242951,0.886937,0.926488,0.867205,0.728756,0.342413,0.407082,0.687827,0.0631211,0.0930271,0.341451,0.934642,0.0943657,0.36115,0.195368,0.381353,0.668558,0.959113,0.902076,0.695898,0.844551,0.710661,0.679477,0.202893,0.94809,0.177563,0.0499297,0.457803,0.556346,0.629342,0.890588,0.950767,0.151025,0.854315,0.769006,0.344321,0.841067,0.673914,0.932764,0.825273,0.0148019,0.276643,0.91912,0.0169032,0.520952,0.235037,0.2748,0.889086,0.925892,0.471574,0.740024,0.620335,0.906546,0.653404,0.210809,0.962186,0.781107,0.720926,0.925338,0.177674,0.0171461,0.189161,0.247592,0.549198,0.381104,0.288725,0.284977,0.805357,0.999955,0.748336,0.729019,0.394001,0.566103,0.132166,0.814402,0.170242,0.480777,0.185542,0.411557,0.915838,0.176462,0.599514,0.0424768,0.051168,0.640325,0.124799,0.128602,0.465639,0.912842,0.261082,0.746312,0.0279577,0.590553,0.26774,0.0629599,0.334044,0.5095,0.50301,0.240137,0.234153,0.707392,0.0807016,0.802901,0.0639728,0.653663,0.700793,0.644863,0.0145265,0.035314,0.844069,0.0908383,0.357191,0.119965,0.396327,0.970569,0.986573,0.486201,0.306137,0.749011,0.975168,0.902543,0.52415,0.0342931,0.599181,0.686817,0.775952,0.675386,0.198696,0.43843,0.344309,0.594854,0.510627,0.466282,0.658113,0.275385,0.866942,0.517536,0.28179,0.847328,0.27368,0.35942,0.32136,0.254849,0.381677,0.836954,0.875165,0.614701,0.804477,0.26985,0.197013,0.243063,0.323618,0.503267,0.579189,0.652671,0.279467,0.131125,0.630862,0.975663,0.322747,0.453386,0.0236564,0.1721,0.622281,0.455985,0.96458,0.226371,0.953474,0.827291,0.861014,0.343106,0.197494,0.411518,0.553593,0.0579544,0.921171,0.285401,0.782948,0.769385,0.97543,0.146614,0.989213,0.896371,0.44214,0.968413,0.804463,0.121501,0.881643,0.0212364,0.170707,0.554927,0.274898,0.672372,0.652544,0.439615,0.0977886,0.187987,0.161822,0.30045,0.152978,0.0125,0.0395489,0.114585,0.0432328,0.420442,0.38993,0.977976,0.354991,0.748733,0.541922,0.0251232,0.971525,0.176572,0.19817,0.694504,0.98386,0.595481,0.0180522,0.434684,0.285115,0.849452,0.313637,0.449177,0.379131,0.622702,0.702195,0.810105,0.542502,0.845897,0.313029,0.63597,0.845159,0.219218,0.311174,0.261108,0.757416,0.478302,0.210065,0.541409,0.358896,0.607621,0.259666,0.153715,0.732204,0.897546,0.565631,0.381617,0.858747,0.911311,0.588129,0.907694,0.262468,0.157198,0.816614,0.134102,0.0395399,0.707665,0.931749,0.68774,0.510166,0.152575,0.28336,0.816368,0.680655,0.0414832,0.0572742,0.858371,0.992377,0.062084,0.524544,0.678994,0.553939,0.458966,0.334101,0.436902,0.303209,0.164505,0.846766,0.345683,0.447865,0.511323,0.440125,0.77275,0.535907,0.662605,0.0855369,0.637894,0.795315,0.162169,0.0435395,0.84046,0.314176,0.222727,0.0994909,0.797627,0.998074,0.736152,0.162381,0.505731,0.167681,0.22799,0.468941,0.750243,0.25674,0.260941,0.127205,0.19086,0.513558,0.873261,0.0590365,0.948396,0.566347,0.0244688,0.519459,0.0386039,0.31938,0.0125099,0.900879,0.100159,0.85214,0.229681,0.603923,0.834151,0.0141515,0.422136,0.746322,0.135652,0.881811,0.689756,0.069747,0.417738,0.823955,0.287699,0.636387,0.973808,0.0869172,0.403727,0.0694914,0.405123,0.207264,0.746368,0.582521,0.61527,0.245347,0.315524,0.650698,0.585212,0.406734,0.490397,0.322384,0.880726,0.00341511,0.536532,0.573531,0.969793,0.131045,0.894468,0.558699,0.877604,0.788079,0.538713,0.697318,0.410826,0.150115,0.140694,0.067248,0.64774,0.259661,0.405368,0.374946,0.786209,0.525354,0.314867,0.212106,0.118802,0.3412,0.396205,0.513288,0.775097,0.181738,0.10758,0.851711,0.0353632,0.892781,0.525326,0.469219,0.814824,0.84313,0.508588,0.834873,0.566967,0.279826,0.972595,0.954625,0.509444,0.963987,0.755652,0.418764,0.170368,0.951957,0.0119469,0.0693551,0.890759,0.277675,0.402857,0.857138,0.774071,0.659888,0.908901,0.380553,0.750201,0.131173,0.966374,0.883837,0.509679,0.110533,0.918074,0.103126,0.277899,0.012845,0.233411,0.721168,0.959958,0.168644,0.506355,0.798411,0.682952,0.578412,0.444657,0.538041,0.121896,0.466927,0.0626473,0.375312,0.0193502,0.700411,0.0166477,0.552202,0.651049,0.138852,0.166596,0.700192,0.713905,0.482682,0.73732,0.939026,0.597229,0.428801,0.161076,0.757643,0.0360729,0.0856513,0.624852,0.377844,0.780757,0.344833,0.870783,0.413582,0.685422,0.566447,0.58811,0.66084,0.859368,0.0363681,0.426986,0.186591,0.945218,0.209681,0.466898,0.366908,0.594361,0.0565672,0.678693,0.92035,0.00181788,0.540317,0.0949675,0.0186658,0.440431,0.129806,0.564245,0.238927,0.435012,0.311448,0.672222,0.483959,0.542609,0.349718,0.541751,0.528204,0.744699,0.00605565,0.0188525,0.944029,0.589048,0.86886,0.260642,0.925588,0.767442,0.553454,0.391657,0.384505,0.772588,0.325813,0.703404,0.223812,0.456027,0.170531,0.626456,0.104314,0.145777,0.401317,0.629583,0.707733,0.735235,0.652004,0.460079,0.623633,0.431538,0.698548,0.655895,0.493439,0.183439,0.891954,0.816478,0.630966,0.868215,0.228827,0.675324,0.453834,0.902042,0.365788,0.661214,0.814787,0.238547,0.335084,0.856952,0.846476,0.724073,0.437689,0.173378,0.149075,0.61714,0.293345,0.996244,0.363272,0.766806,0.65825,0.401417,0.0343527,0.275777,0.740628,0.73552,0.21779,0.624595,0.889589,0.268666,0.635373,0.465685,0.657465,0.975621,0.237925,0.591798,0.618949,0.452648,0.97414,0.840348,0.175199,0.209648,0.188687,0.206422,0.173729,0.614242,0.247133,0.439594,0.03065,0.657217,0.694117,0.708262,0.416629,0.165429,0.202859,0.969159,0.328207,0.338453,0.604283,0.442414,0.803117,0.592321,0.638608,0.926358,0.685084,0.825835,0.636655,0.676854,0.0315903,0.8311,0.688141,0.141558,0.842955,0.390218,0.672399,0.205323,0.558016,0.619347,0.490939,0.0206643,0.0683285,0.563217,0.189243,0.253613,0.925419,0.718205,0.266735,0.800743,0.610203,0.394811,0.690357,0.554305,0.391518,0.630671,0.371104,0.935915,0.891899,0.171657,0.77925,0.113876,0.00466126,0.602207,0.34702,0.288295,0.411724,0.337391,0.375004,0.221545,0.521198,0.865991,0.0627577,0.89164,0.0467925,0.516187,0.570504,0.838435,0.810053,0.496333,0.558823,0.862919,0.380321,0.0747188,0.487265,0.520646,0.0985307,0.355211,0.689411,0.726321,0.338478,0.559105,0.0927518,0.372517,0.760753,0.345949,0.119231,0.347206,0.118657,0.138634,0.21202,0.00768471,0.681667,0.511114,0.312824,0.403132,0.475682,0.53732,0.560697,0.598723,0.406583,0.0662456,0.341406,0.72458,0.583913,0.696557,0.340094,0.0986952,0.505453,0.545649,0.151209,0.852869,0.467111,0.540948,0.718228,0.0485377,0.118579,0.0120738,0.0069294,0.950041,0.766605,0.850795,0.10359,0.224765,0.435781,0.961103,0.663458,0.595136,0.108272,0.404853,0.56698,0.456487,0.505601,0.184706,0.841774,0.332274,0.449101,0.225883,0.610099,0.514132,0.671585,0.257315,0.796663,0.896911,0.49674,0.670002,0.257731,0.661951,0.264203,0.976817,0.130273,0.908218,0.158862,0.933538,0.0490056,0.519364,0.196919,0.943003,0.469766,0.90687,0.98608,0.265187,0.606874,0.608486,0.43792,0.964922,0.397359,0.84064,0.927273,0.982784,0.0349342,0.636877,0.922469,0.188877,0.951362,0.963883,0.518587,0.65864,0.240356,|0.0213934,0.165751,0.708006,0.778433,0.51278,0.326098,0.403495,0.511687,0.845528,0.473159,0.496908,0.165676,0.419048,0.226698,0.529696,0.100967,0.716319,0.408103,0.845865,0.0541034,0.610344,0.242307,0.965846,0.122209,0.0335006,0.545446,0.18547,0.483008,0.31138,0.324109,0.0295711,0.384336,0.422242,0.602137,0.671625,0.985187,0.663084,0.584042,0.555466,0.0283942,0.0665343,0.649666,0.607309,0.606186,0.494706,0.643074,0.840692,0.740144,0.365072,0.0552632,0.820295,0.593355,0.20966,0.789912,0.746218,0.0256307,0.147712,0.832793,0.760407,0.813487,0.930058,0.901696,0.217555,0.947986,0.460898,0.134335,0.21752,0.559696,0.611018,0.242007,0.112123,0.804803,0.423388,0.848263,0.423249,0.294892,0.605886,0.511773,0.160098,0.931953,0.188698,0.445759,0.426549,0.657885,0.0724471,0.170124,0.116517,0.263219,0.049804,0.514215,0.249676,0.649612,0.678867,0.600998,0.270073,0.0970271,0.757258,0.0258072,0.55077,0.0475677,0.873167,0.278158,0.817409,0.808135,0.0330395,0.359189,0.173603,0.127032,0.58089,0.418523,0.048223,0.257506,0.27273,0.265354,0.221805,0.737345,0.927793,0.624228,0.945096,0.768794,0.0534978,0.957757,0.750392,0.263828,0.67918,0.957735,0.613403,0.597413,0.169623,0.871998,0.458391,0.85115,0.945453,0.351942,0.334217,0.677758,0.0201189,0.383254,0.741829,0.825426,0.955494,0.939935,0.0464906,0.273136,0.207944,0.294919,0.123437,0.91081,0.970554,0.725457,0.191522,0.525029,0.987867,0.236006,0.628614,0.119949,0.599412,0.865564,0.922315,0.437067,0.198899,0.983775,0.736783,0.312393,0.243703,0.9771,0.304148,0.761341,0.972926,0.582224,0.950191,0.0739053,0.952626,0.853987,0.199828,0.6484,0.842102,0.0488065,0.96231,0.736031,0.066725,0.333721,0.561059,0.868994,0.107364,0.451763,0.976503,0.0982848,0.47253,0.345384,0.603975,0.993295,0.319585,0.262523,0.872186,0.57006,0.47975,0.0455183,0.244749,0.251249,0.292075,0.857507,0.349338,0.210217,0.539621,0.77851,0.438416,0.0999377,0.573702,0.331507,0.94359,0.781658,0.116724,0.77369,0.183253,0.666897,0.881537,0.486032,0.408733,0.870883,0.924798,0.300612,0.95903,0.342947,0.0751079,0.456378,0.301175,0.0231808,0.70714,0.480617,0.304932,0.343494,0.723805,0.741048,0.956511,0.807224,0.790852,0.691787,0.304966,0.180878,0.608828,0.74144,0.27337,0.354881,0.487241,0.0340505,0.398102,0.608899,0.904982,0.206951,0.567269,0.861349,0.388324,0.810173,0.579235,0.12994,0.471779,0.303126,0.643645,0.652717,0.559634,0.889412,0.928438,0.539018,0.888541,0.213805,0.810989,0.976157,0.0843628,0.783524,0.668731,0.161466,0.927076,0.257224,0.897758,0.691106,0.799751,0.148452,0.492502,0.0231149,0.258075,0.308329,0.0794431,0.141477,0.328636,0.672531,0.262784,0.986012,0.427218,0.657099,0.423161,0.102163,0.889504,0.449701,0.745358,0.463021,0.479796,0.938115,0.903848,0.797834,0.120875,0.347384,0.455346,0.35623,0.988684,0.413879,0.211997,0.244858,0.105598,0.596414,0.375314,0.831279,0.0522174,0.781653,0.519902,0.310738,0.552753,0.859131,0.746131,0.857276,0.972628,0.650777,0.834602,0.595535,0.83126,0.0277272,0.772239,0.265675,0.159592,0.579816,0.311617,0.19346,0.810611,0.142696,0.0956784,0.303891,0.274015,0.617465,0.0125329,0.446524,0.278505,0.478553,0.420343,0.319182,0.943664,0.810479,0.140158,0.985681,0.336442,0.131487,0.0701442,0.393042,0.593712,0.843764,0.0445869,0.840196,0.448274,0.945319,0.826613,0.580668,0.478704,0.367588,0.193451,0.559319,0.581876,0.216454,0.715369,0.729856,0.475836,0.136518,0.831035,0.23762,0.416675,0.695035,0.390836,0.335578,0.0798909,0.655495,0.943274,0.0280519,0.637995,0.458841,0.962897,0.443422,0.202561,0.429945,0.325408,0.191506,0.642216,0.942581,0.345837,0.840211,0.666924,0.851469,0.0102323,0.160465,0.218279,0.426801,0.881021,0.470317,0.727272,0.022905,0.507313,0.587649,0.214568,0.233331,0.601467,0.579916,0.106328,0.781187,0.967348,0.00544804,0.235154,0.85863,0.389488,0.530949,0.438545,0.902063,0.708712,0.328298,0.350482,0.499647,0.225746,0.776811,0.78582,0.334458,0.908857,0.656682,0.781614,0.427287,0.0736063,0.0941269,0.235047,0.0991811,0.679165,0.705354,0.332262,0.528143,0.307091,0.600844,0.816714,0.967627,0.637191,0.882595,0.438079,0.961596,0.0728611,0.885971,0.483,0.748423,0.97325,0.464357,0.812689,0.0646307,0.466494,0.735316,0.472428,0.347771,0.0621122,0.318955,0.713457,0.837061,0.249741,0.746172,0.424617,0.779708,0.525276,0.14243,0.88293,0.462096,0.202858,0.362976,0.556373,0.486076,0.908605,0.958165,0.589036,0.362501,0.194265,0.264684,0.0629488,0.506693,0.817934,0.613552,0.860459,0.836071,0.778749,0.382622,0.225985,0.745768,0.376937,0.0254272,0.343514,0.751026,0.0709214,0.52951,0.411128,0.235478,0.610623,0.974126,0.611869,0.924909,0.897822,0.861681,0.120016,0.803673,0.155975,0.550156,0.85816,0.509826,0.0160474,0.944638,0.337226,0.535004,0.159161,0.43199,0.100521,0.885482,0.83696,0.613338,0.845466,0.0485336,0.27773,0.541325,0.952023,0.897961,0.339088,0.0296873,0.835822,0.338621,0.680617,0.0484365,0.499776,0.974943,0.462688,0.821267,0.126753,0.261126,0.978067,0.274674,0.135925,0.94563,0.671066,0.0557157,0.918012,0.9744,0.579899,0.540528,0.781208,0.322648,0.331877,0.8296,0.432514,0.951486,0.991748,0.656472,0.39489,0.376066,0.579623,0.894744,0.553708,0.754514,0.237832,0.158684,0.242815,0.82434,0.0606316,0.588192,0.528283,0.2438,0.899858,0.831659,0.245328,0.228112,0.400702,0.181195,0.0804163,0.0935788,0.26617,0.998487,0.634625,0.681889,0.570828,0.314256,0.834827,0.502016,0.478899,0.705885,0.951905,0.658222,0.735467,0.783266,0.155295,0.485961,0.36752,0.956682,0.892707,0.685956,0.083793,0.409164,0.74413,0.227325,0.93499,0.659267,0.507456,0.174947,0.594886,0.684932,0.830688,0.681367,0.196782,0.318435,0.321065,0.442188,0.0441974,0.820174,0.532652,0.290575,0.911517,0.490541,0.837374,0.944686,0.760261,0.397952,0.781742,0.245299,0.242071,0.74608,0.384395,0.272561,0.0861288,0.563814,0.257686,0.0876608,0.837719,0.720191,0.622668,0.92523,0.210072,0.854231,0.818513,0.834405,0.48461,0.432786,0.825132,0.503378,0.71521,0.07205,0.631372,0.00393659,0.291109,0.641911,0.2716,0.359143,0.40991,0.860041,0.645826,0.360301,0.573197,0.866812,0.443241,0.294597,0.105456,0.880692,0.236932,0.944181,0.850151,0.696336,0.801355,0.159496,0.0910633,0.745699,0.618689,0.213914,0.798233,0.466411,0.28165,0.0329563,0.232707,0.906464,0.00820619,0.127617,0.988779,0.368003,0.281939,0.343848,0.960909,0.74308,0.737616,0.338373,0.136539,0.156032,0.0146802,0.629363,0.529661,0.121132,0.565776,0.718131,0.205753,0.0768738,0.664565,0.316707,0.693745,0.423733,0.83216,0.967544,0.501571,0.449148,0.1378,0.025156,0.0291026,0.119633,0.230346,0.338818,0.128479,0.513636,0.432754,0.768958,0.196935,0.785468,0.842367,0.583228,0.499621,0.0832095,0.298924,0.00598937,0.682829,0.15066,0.689687,0.973063,0.706131,0.568725,0.539345,0.904703,0.480382,0.846458,0.723278,0.853772,0.0325241,0.714233,0.705245,0.0277525,0.902152,0.854055,0.026366,0.0355453,0.871942,0.539247,0.468282,0.264515,0.357314,0.5382,0.854993,0.292337,0.285448,0.851346,0.224675,0.0489225,0.58747,0.0742964,0.100133,0.186579,0.487496,0.445314,0.318721,0.248831,0.506736,0.408593,0.934877,0.530688,0.99001,0.201331,0.556912,0.349418,0.661585,0.857239,0.377611,0.443864,0.574044,0.778836,0.523557,0.786284,0.362931,0.546034,0.186346,0.176684,0.317412,0.993114,0.426518,0.973007,0.263295,0.504232,0.0452944,0.702997,0.108498,0.812705,0.138286,0.585169,0.973915,0.835038,0.686633,0.511019,0.273423,0.978193,0.367599,0.352349,0.286976,0.266252,0.386368,0.428411,0.698641,0.755054,0.434866,0.0856352,0.16705,0.796604,0.437927,0.379929,0.836249,0.140093,0.398559,0.779042,0.894176,0.823421,0.631208,0.754536,0.945721,0.138096,0.982425,0.676871,0.596159,0.0226454,0.0735771,0.0730675,0.88763,0.0676383,0.408264,0.861086,0.53846,0.853096,0.0935922,0.0253581,0.889513,0.957521,0.027531,0.195088,0.553514,0.309166,0.0437192,0.309962,0.86967,0.845253,0.186576,0.624923,0.566004,0.979537,0.37382,0.708823,0.721219,0.248471,0.852552,0.143244,0.963682,0.413759,0.358265,0.701676,0.199884,0.513561,0.137319,0.296195,0.878441,0.0662844,0.207772,0.258105,0.208232,0.620814,0.589858,0.183183,0.62489,0.0440618,0.112092,0.989497,0.516469,0.250975,0.422622,0.374588,0.601731,0.764552,0.561516,0.44464,0.828094,0.713009,0.554094,0.124151,0.713562,0.460841,0.506297,0.199964,0.24109,0.297389,0.95807,0.15695,0.425367,0.770922,0.177105,0.944078,0.0547217,0.367188,0.798163,0.57584,0.370078,0.74582,0.562579,0.0418705,0.840223,0.958826,0.731176,0.184609,0.577236,0.733665,0.110139,0.411444,0.944293,0.641621,0.56703,0.443678,0.981612,0.555531,0.250488,0.308413,0.329899,0.874994,0.424281,0.538138,0.471449,0.481296,0.226111,0.813258,0.678135,0.71641,0.943007,0.351426,0.0638696,0.475622,0.107975,0.0165278,0.0763105,0.0289821,0.641635,0.177385,0.569286,0.809571,0.885862,0.333922,0.631604,0.35915,0.326485,0.645476,0.669206,0.73036,0.204866,0.329284,0.673739,0.00348401,0.730421,0.516235,0.529907,0.883367,0.0203183,0.434762,0.275984,0.57816,0.863851,0.738856,0.686153,0.811047,0.662704,0.925879,0.855943,0.868941,0.480247,0.61894,0.50496,0.607165,0.171433,0.808089,0.929953,0.560082,0.134744,0.494515,0.991671,0.422444,0.888595,0.0941867,0.831261,0.0555881,0.013744,0.237812,0.325226,0.19535,|0.0114436,0.249265,0.396988,0.503846,0.37232,0.702171,0.432557,0.666333,0.208236,0.34983,0.0612473,0.210154,0.197326,0.844721,0.266318,0.534188,0.384466,0.84072,0.640258,0.855819,0.343517,0.846487,0.484086,0.500678,0.036691,0.0660844,0.321224,0.361011,0.000547588,0.908514,0.483589,0.949237,0.98151,0.206394,0.141325,0.694965,0.248216,0.716104,0.959226,0.507632,0.921358,0.460581,0.997859,0.733979,0.113066,0.555668,0.263275,0.663378,0.19168,0.541756,0.0509071,0.93942,0.335673,0.688585,0.380463,0.630578,0.56956,0.849705,0.298875,0.986647,0.246826,0.295399,0.0637417,0.49596,0.867281,0.237236,0.501276,0.149897,0.967766,0.535801,0.154686,0.713823,0.865968,0.0149334,0.592691,0.409156,0.311199,0.260295,0.507149,0.180872,0.27872,0.47251,0.947831,0.0956727,0.551759,0.32793,0.360558,0.938286,0.27346,0.453071,0.0582846,0.720089,0.732326,0.984907,0.424074,0.0997939,0.613253,0.0885276,0.152299,0.442605,0.617077,0.0912927,0.953862,0.4491,0.29985,0.897472,0.993545,0.980624,0.99539,0.321695,0.0746242,0.841765,0.99423,0.388052,0.146783,0.747559,0.719927,0.137716,0.731933,0.0203571,0.983729,0.0810881,0.403515,0.469424,0.824935,0.420357,0.305081,0.2192,0.644198,0.292014,0.957711,0.315552,0.622366,0.104209,0.348106,0.0253391,0.0216144,0.357497,0.332004,0.748618,0.836587,0.896745,0.832167,0.326216,0.743975,0.294935,0.637814,0.662833,0.79509,0.276554,0.828786,0.677484,0.237798,0.0781866,0.99792,0.180881,0.58634,0.160282,0.293928,0.119674,0.292466,0.979486,0.429235,0.854048,0.888077,0.761955,0.134295,0.198522,0.930062,0.0397729,0.9871,0.741638,0.885427,0.0266066,0.843464,0.202308,0.938087,0.0286582,0.0105461,0.151737,0.353889,0.982579,0.0530793,0.819276,0.465938,0.244012,0.996069,0.0133933,0.62561,0.358561,0.822457,0.691393,0.718899,0.820281,0.485809,0.76688,0.482981,0.39663,0.0681405,0.00664884,0.462621,0.758592,0.121266,0.0935965,0.915479,0.696695,0.186555,0.179069,0.793237,0.871572,0.320247,0.526446,0.819384,0.499484,0.477857,0.210685,0.843509,0.989641,0.0136398,0.359056,0.402079,0.415838,0.378377,0.590644,0.66392,0.125654,0.0140474,0.427192,0.908159,0.0102584,0.784563,0.314725,0.235602,0.615658,0.249733,0.784091,0.709499,0.110363,0.164655,0.0812229,0.869909,0.999336,0.890858,0.491096,0.427477,0.213515,0.932011,0.524822,0.372557,0.191968,0.457196,0.21491,0.870924,0.365135,0.548243,0.575722,0.40084,0.399328,0.0723527,0.824931,0.976933,0.071152,0.697502,0.889213,0.0942159,0.742596,0.116919,0.952735,0.285056,0.916802,0.752869,0.958895,0.832932,0.212973,0.468044,0.666822,0.504952,0.147717,0.15082,0.863304,0.644488,0.531223,0.891818,0.192202,0.211542,0.870861,0.676363,0.701067,0.213657,0.407132,0.971879,0.883616,0.390164,0.546877,0.465221,0.314645,0.564172,0.230451,0.248378,0.79404,0.649829,0.222094,0.265673,0.839809,0.494721,0.525458,0.153802,0.738769,0.918134,0.825909,0.817465,0.553171,0.506406,0.485184,0.460728,0.695503,0.878862,0.970315,0.661825,0.378446,0.113397,0.113207,0.643032,0.334257,0.166163,0.850224,0.122451,0.481966,0.290641,0.374881,0.673484,0.870602,0.45283,0.86441,0.590716,0.547978,0.106821,0.0609005,0.0158823,0.811448,0.00647879,0.640259,0.990002,0.325109,0.0735412,0.559029,0.905686,0.389499,0.978467,0.50259,0.815359,0.601011,0.0574512,0.803621,0.416962,0.809857,0.064971,0.342574,0.427351,0.0808997,0.297853,0.901157,0.798861,0.713457,0.405388,0.518939,0.0098272,0.408332,0.764698,0.897282,0.976068,0.789084,0.841245,0.218584,0.376817,0.641679,0.0754937,0.93548,0.446167,0.860068,0.599707,0.469642,0.862434,0.394436,0.78528,0.808799,0.795635,0.625435,0.0843383,0.95987,0.277544,0.894611,0.329037,0.191074,0.402008,0.188497,0.376834,0.597738,0.365235,0.10138,0.921338,0.368694,0.0622098,0.38845,0.496497,0.231157,0.944832,0.392726,0.785188,0.816319,0.424015,0.553365,0.379134,0.0314682,0.974357,0.470406,0.78508,0.768731,0.558342,0.280738,0.330532,0.886651,0.802713,0.0414444,0.101617,0.837212,0.926607,0.507339,0.440163,0.503145,0.381972,0.0274214,0.211339,0.0900959,0.00963771,0.0474074,0.848912,0.148007,0.642433,0.580963,0.694538,0.386819,0.305767,0.442815,0.616716,0.432693,0.34895,0.94369,0.263996,0.392141,0.0361336,0.313208,0.885893,0.276459,0.405847,0.701912,0.891439,0.991814,0.938645,0.688148,0.492931,0.786391,0.278491,0.606214,0.411413,0.384313,0.844992,0.610851,0.70579,0.892758,0.117096,0.0980788,0.526819,0.377709,0.387067,0.0037142,0.591874,0.719691,0.286162,0.00210667,0.676521,0.616765,0.760245,0.270503,0.855699,0.746273,0.903541,0.916547,0.425384,0.762032,0.282882,0.770793,0.488599,0.263306,0.295507,0.128656,0.876759,0.754043,0.170984,0.00366938,0.7181,0.0534037,0.825037,0.251069,0.552384,0.110469,0.837602,0.837616,0.13805,0.790378,0.00813258,0.107157,0.0954688,0.156984,0.48962,0.229153,0.343195,0.0230454,0.0420648,0.723664,0.230015,0.741655,0.697569,0.624577,0.89615,0.228107,0.835178,0.437831,0.845418,0.712816,0.945516,0.0200977,0.294543,0.229933,0.977656,0.261007,0.644556,0.0761774,0.706731,0.0461624,0.278459,0.128715,0.34051,0.575266,0.41127,0.414947,0.273242,0.424885,0.449603,0.565668,0.857792,0.782567,0.787968,0.4847,0.736664,0.558899,0.995565,0.230792,0.455302,0.0965158,0.839355,0.0060541,0.207313,0.070456,0.263194,0.79786,0.973314,0.221803,0.243197,0.380883,0.520319,0.254545,0.394522,0.501169,0.33611,0.695356,0.880716,0.257063,0.759783,0.591681,0.919936,0.778725,0.863745,0.713409,0.630751,0.636184,0.323087,0.807885,0.630367,0.419574,0.931563,0.561616,0.926915,0.898213,0.028648,0.496717,0.740193,0.321471,0.377604,0.414559,0.957615,0.5294,0.85119,0.810193,0.0917001,0.802774,0.771974,0.680255,0.764491,0.524171,0.0480117,0.909342,0.164404,0.691848,0.107192,0.582574,0.420845,0.986828,0.84856,0.733736,0.848128,0.320723,0.59427,0.759374,0.0573021,0.203851,0.162306,0.188999,0.965535,0.656915,0.187895,0.759403,0.308572,0.583698,0.520755,0.504228,0.632697,0.624502,0.754626,0.408282,0.521011,0.250966,0.00351638,0.491889,0.974909,0.85145,0.850812,0.710694,0.77469,0.182474,0.0863856,0.879528,0.586117,0.835914,0.195934,0.303972,0.255962,0.0695049,0.901805,0.2253,0.172525,0.254463,0.188994,0.222313,0.108862,0.565056,0.148347,0.191663,0.314717,0.428249,0.142417,0.533128,0.562536,0.216024,0.117415,0.125151,0.0510764,0.465126,0.481303,0.624798,0.170994,0.110067,0.857753,0.161365,0.015935,0.377217,0.0515475,0.383828,0.883409,0.460797,0.328224,0.421223,0.491005,0.361451,0.980847,0.847643,0.695091,0.341945,0.976547,0.327068,0.994895,0.532575,0.262676,0.537923,0.848154,0.852958,0.327616,0.740247,0.766954,0.801544,0.833166,0.472145,0.2603,0.646421,0.582207,0.735651,0.553239,0.604738,0.832086,0.286245,0.213749,0.184232,0.616087,0.336159,0.341494,0.176555,0.778548,0.522169,0.0394984,0.712143,0.197786,0.543674,0.238661,0.0799375,0.730546,0.375941,0.175098,0.922974,0.0448973,0.572279,0.136789,0.668847,0.655918,0.0652341,0.911698,0.566016,0.178525,0.474309,0.26093,0.284383,0.895897,0.288827,0.639434,0.061302,0.615994,0.342169,0.902965,0.677229,0.851955,0.872799,0.833919,0.747683,0.348369,0.025528,0.13559,0.552939,0.78169,0.740735,0.679226,0.153947,0.147784,0.980267,0.141192,0.0440913,0.412058,0.146297,0.989267,0.498194,0.915766,0.49709,0.869324,0.784079,0.678973,0.355877,0.161294,0.958785,0.433784,0.418615,0.150189,0.733027,0.252339,0.0337133,0.961491,0.826056,0.366814,0.0860215,0.872469,0.283071,0.00879234,0.205376,0.0357404,0.134628,0.18524,0.437678,0.548346,0.157121,0.901541,0.999735,0.315025,0.807435,0.938135,0.167752,0.0558915,0.257578,0.353012,0.231648,0.928521,0.200806,0.545207,0.0385746,0.99149,0.923615,0.843476,0.972016,0.154966,0.836836,0.0407213,0.136545,0.063154,0.17995,0.0566178,0.180029,0.835547,0.811266,0.426763,0.840369,0.572732,0.0539128,0.927971,0.817606,0.704308,0.784113,0.321085,0.419187,0.88992,0.602535,0.175476,0.0417787,0.471258,0.212727,0.444584,0.851091,0.283931,0.764556,0.948533,0.716698,0.372282,0.921655,0.193609,0.865231,0.0157939,0.448821,0.354425,0.314653,0.306151,0.230938,0.942663,0.92114,0.747486,0.0671959,0.963179,0.0679886,0.599923,0.976488,0.814062,0.511468,0.643779,0.5515,0.12619,0.144019,0.466261,0.0436668,0.761326,0.668896,0.391281,0.502014,0.439954,0.119818,0.490793,0.764628,0.458919,0.434407,0.758765,0.404171,0.917608,0.373283,0.44377,0.754576,0.229976,0.0221952,0.0835032,0.592754,0.072567,0.422848,0.159077,0.0710887,0.782628,0.197711,0.776654,0.855922,0.149415,0.999506,0.845226,0.533832,0.281152,0.663712,0.165887,0.281989,0.483364,0.399436,0.934469,0.809552,0.606068,0.647144,0.214131,0.443063,0.275326,0.585867,0.104051,0.954857,0.914986,0.791559,0.905029,0.320184,0.137431,0.0552317,0.564057,0.647388,0.569839,0.425718,0.9061,0.557556,0.0507388,0.309629,0.988441,0.170729,0.87153,0.290395,0.179808,0.192129,0.151083,0.544276,0.378565,0.0948787,0.215174,0.0239589,0.927594,0.389605,0.563882,0.330405,0.868822,0.387552,0.269198,0.686998,0.745588,0.517195,0.484405,0.0936137,0.471343,0.34899,0.308609,0.49474,0.553992,0.694187,0.58332,0.549274,0.598021,0.381244,0.343567,0.408341,0.587165,0.315978,0.757341,0.564491,0.563668,0.38343,0.403042,0.779749,0.159595,0.538435,0.673492,0.312519,0.0820902,0.535328,0.669358,0.646146,0.054885,0.482429,0.415178,0.507568,|0.434043,0.208995,0.362817,0.944335,0.751468,0.0580998,0.753201,0.824044,0.294604,0.845666,0.989557,0.564896,0.229099,0.382733,0.831418,0.265197,0.21464,0.970907,0.967199,0.933096,0.171831,0.182576,0.561388,0.77627,0.300297,0.398987,0.915805,0.40165,0.307196,0.53992,0.809501,0.361043,0.310028,0.44434,0.226402,0.536668,0.381394,0.627779,0.486545,0.0911515,0.437729,0.857778,0.299292,0.240024,0.110436,0.593376,0.586527,0.667233,0.726979,0.229462,0.464047,0.454988,0.15481,0.70007,0.210252,0.0685408,0.966888,0.567505,0.133884,0.260847,0.480137,0.551178,0.716991,0.667692,0.0662906,0.264179,0.837173,0.0389006,0.394139,0.40567,0.495547,0.0952284,0.116315,0.653811,0.222814,0.64683,0.602564,0.206519,0.129055,0.275929,0.108122,0.753124,0.786366,0.614336,0.687955,0.42129,0.760802,0.339115,0.767793,0.870744,0.184574,0.551355,0.456188,0.985928,0.691408,0.798076,0.11895,0.511426,0.270505,0.101095,0.742389,0.208694,0.855235,0.0867205,0.122709,0.966744,0.532811,0.532685,0.213469,0.215643,0.292198,0.814757,0.0428581,0.132053,0.719591,0.882591,0.289532,0.159707,0.794566,0.591274,0.378839,0.746989,0.0824208,0.515633,0.575608,0.825393,0.284553,0.398862,0.906318,0.662619,0.521117,0.855774,0.489089,0.60231,0.539565,0.824062,0.211738,0.13222,0.249331,0.623567,0.356027,0.952874,0.372227,0.925186,0.174202,0.395113,0.71626,0.706182,0.389681,0.0264081,0.0750451,0.164553,0.293165,0.163064,0.229283,0.145566,0.287878,0.88805,0.0383131,0.276844,0.352004,0.800705,0.237032,0.0422813,0.831247,0.992616,0.641865,0.122298,0.949123,0.791337,0.0636812,0.295319,0.570777,0.099704,0.719734,0.289868,0.664107,0.632776,0.382945,0.60205,0.996715,0.661509,0.0338304,0.588946,0.962219,0.76704,0.389774,0.48433,0.479073,0.896114,0.541968,0.90858,0.563819,0.397946,0.00141472,0.633898,0.826178,0.121336,0.891977,0.823215,0.672043,0.662351,0.141248,0.269676,0.461072,0.765372,0.196396,0.914963,0.23107,0.817959,0.213454,0.574216,0.610699,0.721329,0.986913,0.42511,0.0968374,0.885964,0.582791,0.178434,0.399291,0.249998,0.904087,0.219231,0.537502,0.731492,0.907653,0.217825,0.138423,0.904667,0.707839,0.514829,0.819567,0.872527,0.982046,0.146224,0.133624,0.690403,0.336175,0.592698,0.364685,0.0239986,0.602159,0.972067,0.516429,0.156978,0.989032,0.635298,0.789917,0.701277,0.377094,0.391961,0.831753,0.856398,0.264874,0.42323,0.255832,0.584041,0.246052,0.949825,0.932338,0.914995,0.660307,0.272735,0.724564,0.648665,0.858302,0.728301,0.7456,0.341643,0.412998,0.893486,0.94943,0.448417,0.845389,0.228793,0.353426,0.897916,0.873632,0.445364,0.0429584,0.176152,0.767356,0.634602,0.0405327,0.776048,0.62019,0.89687,0.147165,0.165823,0.734729,0.575288,0.0338787,0.384533,0.964775,0.424723,0.0202557,0.717176,0.294232,0.0018369,0.0692247,0.833281,0.929166,0.316296,0.510563,0.629877,0.153769,0.576694,0.284484,0.295174,0.865542,0.769274,0.858078,0.224666,0.99014,0.388247,0.327855,0.271356,0.669546,0.120449,0.279571,0.676909,0.824447,0.864852,0.904221,0.886634,0.937486,0.543137,0.0799763,0.711926,0.730244,0.382079,0.352509,0.899429,0.243251,0.394989,0.198713,0.215417,0.265908,0.818239,0.432505,0.97082,0.353859,0.450545,0.826733,0.645906,0.448678,0.0290014,0.611744,0.149923,0.73421,0.440066,0.609179,0.585536,0.781238,0.877075,0.367696,0.384579,0.736764,0.64784,0.931925,0.388724,0.235625,0.247311,0.760243,0.119563,0.0547026,0.940383,0.420005,0.236489,0.699923,0.415333,0.38096,0.127146,0.77192,0.526531,0.473676,0.504574,0.701766,0.512848,0.719137,0.184769,0.154572,0.788452,0.802765,0.086556,0.973713,0.205438,0.00592685,0.0291699,0.713713,0.764557,0.343192,0.983357,0.902888,0.179465,0.701754,0.393369,0.697174,0.112192,0.0604216,0.408145,0.740117,0.776258,0.941085,0.724355,0.490225,0.53032,0.691887,0.634447,0.415007,0.177055,0.102542,0.442465,0.890257,0.279818,0.531693,0.51615,0.628959,0.257348,0.503906,0.626405,0.28955,0.628959,0.150895,0.818684,0.572889,0.555759,0.983597,0.0541919,0.988954,0.349833,0.21855,0.718516,0.740691,0.171631,0.335741,0.291932,0.0554709,0.702663,0.309736,0.369351,0.313367,0.590011,0.142992,0.314588,0.781654,0.368602,0.0459092,0.356026,0.875673,0.0487093,0.646513,0.934123,0.467574,0.283901,0.266388,0.388889,0.852671,0.304955,0.634486,0.921213,0.66392,0.846253,0.879928,0.316095,0.155438,0.627988,0.948691,0.16735,0.931148,0.394526,0.481369,0.00519437,0.840498,0.689661,0.713591,0.805232,0.808036,0.705818,0.889356,0.2748,0.51866,0.467211,0.171851,0.00749826,0.936448,0.700197,0.141513,0.381347,0.149558,0.424708,0.249823,0.470257,0.800728,0.0288699,0.364797,0.604858,0.929224,0.22057,0.949136,0.97229,0.57381,0.626736,0.114767,0.354326,0.925112,0.146371,0.615223,0.553667,0.31829,0.695389,0.804827,0.315835,0.982875,0.222339,0.778713,0.865757,0.799726,0.657369,0.227845,0.708786,0.825319,0.565308,0.443522,0.450539,0.0505978,0.345141,0.503803,0.588211,0.014035,0.828139,0.339265,0.922566,0.941699,0.474844,0.958494,0.0229563,0.87834,0.987804,0.833509,0.161659,0.583297,0.575684,0.936438,0.791734,0.638393,0.427348,0.317326,0.329708,0.645452,0.834073,0.861484,0.664117,0.32752,0.0749856,0.203987,0.947573,0.347295,0.374763,0.517347,0.525784,0.654418,0.506715,0.301368,0.799739,0.254932,0.979983,0.248568,0.249503,0.850519,0.375414,0.856259,0.18307,0.81854,0.794945,0.110391,0.0652161,0.375105,0.446555,0.600796,0.217556,0.920112,0.524676,0.957087,0.232356,0.895923,0.934384,0.724211,0.781848,0.348026,0.396893,0.514122,0.218247,0.0956981,0.457385,0.354385,0.0022521,0.657695,0.714342,0.546571,0.382647,0.302777,0.771344,0.642204,0.176615,0.726722,0.238593,0.0138719,0.368962,0.863098,0.130569,0.0147907,0.384203,0.546979,0.1043,0.307271,0.0260879,0.923048,0.688551,0.0284967,0.624142,0.8527,0.814596,0.660223,0.900585,0.485616,0.193904,0.635682,0.267617,0.482035,0.873557,0.565896,0.0111898,0.0137952,0.212946,0.93963,0.443456,0.441553,0.378793,0.407895,0.231872,0.901173,0.829418,0.129307,0.1581,0.590452,0.0955829,0.158272,0.500089,0.439528,0.368383,0.216701,0.870632,0.749799,0.224341,0.813878,0.338802,0.196589,0.487143,0.907747,0.180025,0.14866,0.824871,0.248131,0.722392,0.653421,0.847184,0.155056,0.706896,0.704225,0.970944,0.644392,0.309907,0.126459,0.0227094,0.597383,0.346726,0.358545,0.964502,0.523328,0.159445,0.178923,0.57109,0.343909,0.151439,0.756335,0.629774,0.32753,0.940603,0.717115,0.188744,0.896029,0.584345,0.222889,0.822739,0.577922,0.266038,0.266376,0.699695,0.382676,0.429421,0.0788044,0.578601,0.229146,0.713369,0.130516,0.861976,0.0639345,0.921635,0.69895,0.737593,0.210961,0.229749,0.441006,0.0532589,0.282656,0.112175,0.188007,0.978419,0.943598,0.85057,0.528089,0.268194,0.0611393,0.565162,0.924146,0.937769,0.952139,0.791458,0.298096,0.624236,0.672477,0.644901,0.264756,0.605502,0.969817,0.234415,0.0884455,0.68829,0.105848,0.610614,0.269345,0.509403,0.246546,0.584312,0.677645,0.0241898,0.696154,0.502584,0.834263,0.060329,0.374722,0.643016,0.39682,0.241825,0.862161,0.195757,0.921604,0.916376,0.805171,0.426574,0.449176,0.208255,0.253474,0.0596489,0.566129,0.459984,0.43005,0.751461,0.625996,0.404934,0.94203,0.286754,0.248673,0.167035,0.599035,0.997376,0.106123,0.603277,0.256606,0.509207,0.715732,0.327891,0.762478,0.824852,0.0832254,0.0594336,0.174079,0.590546,0.692901,0.742441,0.341924,0.547854,0.122409,0.681008,0.177135,0.79608,0.894569,0.530299,0.855312,0.845917,0.00605786,0.3263,0.537212,0.794915,0.907453,0.939888,0.432061,0.0681565,0.893987,0.988497,0.494996,0.863962,0.512166,0.928458,0.317837,0.979475,0.611068,0.481185,0.536667,0.951621,0.437124,0.983894,0.858766,0.808711,0.65746,0.65995,0.0132419,0.0117264,0.251856,0.153975,0.537282,0.698245,0.0778467,0.942161,0.315589,0.785495,0.760626,0.88798,0.699516,0.52477,0.719708,0.755906,0.0193515,0.93297,0.923448,0.401515,0.175934,0.557404,0.83645,0.965732,0.697364,0.210369,0.888715,0.327431,0.489574,0.0565205,0.307716,0.135197,0.837833,0.822112,0.713034,0.0209913,0.592287,0.393558,0.417012,0.294568,0.902352,0.00507665,0.150072,0.913419,0.217182,0.105238,0.285627,0.625344,0.69249,0.78974,0.32454,0.00391477,0.106447,0.71563,0.964041,0.916469,0.927428,0.710676,0.795998,0.354197,0.975316,0.702052,0.719736,0.714436,0.949195,0.43055,0.404651,0.664694,0.861443,0.288589,0.54269,0.88913,0.733352,0.303869,0.392554,0.924733,0.447637,0.494884,0.845676,0.117188,0.646718,0.501001,0.470642,0.7159,0.137107,0.28201,0.676595,0.456744,0.0168829,0.103171,0.0640764,0.860593,0.53763,0.655605,0.194633,0.322695,0.15594,0.613573,0.0424609,0.387623,0.524641,0.923631,0.105594,0.476519,0.434355,0.720434,0.123327,0.80875,0.928393,0.333295,0.728242,0.526873,0.487771,0.109377,0.375332,0.935303,0.646244,0.520065,0.459721,0.383037,0.607828,0.293769,0.0422628,0.175734,0.349853,0.0925884,0.608883,0.463904,0.37469,0.0148038,0.287114,0.718122,0.375288,0.997691,0.934917,0.406077,0.0305253,0.177275,0.0677665,0.0119517,0.454814,0.667063,0.167089,0.104137,0.961656,0.996975,0.130371,0.123231,0.134677,0.589191,0.701906,0.679002,0.558042,0.329898,0.306384,0.112268,0.542466,0.951439,0.843383,0.0122933,0.219718,0.342767,0.0125376,0.511517,0.541581,0.307442,0.0441707,0.660257,0.452687,0.318714,0.198863,0.999148,|0.11174,0.52769,0.800843,0.616116,0.457861,0.651092,0.0391859,0.269551,0.838633,0.282747,0.564017,0.995622,0.147649,0.792189,0.813391,0.479031,0.185741,0.657429,0.47611,0.811676,0.530455,0.126907,0.571068,0.943599,0.158263,0.590824,0.469137,0.0125406,0.715806,0.828263,0.626073,0.435347,0.885721,0.521942,0.7122,0.14758,0.172405,0.537239,0.852946,0.399361,0.45705,0.717173,0.969733,0.743985,0.125065,0.32513,0.330036,0.227632,0.778484,0.289319,0.0819564,0.497866,0.830969,0.940683,0.540551,0.285431,0.499436,0.439638,0.65098,0.288677,0.109529,0.246659,0.123477,0.576,0.689489,0.662051,0.639579,0.52279,0.374289,0.962883,0.191104,0.87504,0.0741132,0.65149,0.813491,0.38595,0.694385,0.495197,0.403132,0.444641,0.179931,0.67057,0.612993,0.804073,0.830713,0.32729,0.641709,0.629963,0.751354,0.739387,0.170189,0.0224205,0.48302,0.0217028,0.368569,0.452318,0.767494,0.574614,0.262329,0.460027,0.0411398,0.899368,0.456288,0.852435,0.424924,0.561417,0.150238,0.322756,0.460437,0.620155,0.792996,0.121491,0.0343331,0.0871099,0.399707,0.593619,0.750493,0.770259,0.844916,0.999351,0.145702,0.219405,0.0886568,0.587479,0.585208,0.134114,0.854939,0.0875113,0.88531,0.663114,0.647252,0.607318,0.275062,0.972903,0.0540303,0.0951638,0.723932,0.860209,0.374896,0.556835,0.507691,0.185674,0.740601,0.349709,0.470908,0.0283642,0.827295,0.565706,0.59806,0.550716,0.0328876,0.42057,0.257477,0.698189,0.508723,0.486713,0.998321,0.232714,0.809534,0.820823,0.339547,0.120179,0.305509,0.533125,0.183541,0.660901,0.926192,0.952509,0.227481,0.0667959,0.857382,0.279401,0.932245,0.368057,0.713574,0.72125,0.688809,0.391999,0.668911,0.0525507,0.513787,0.117095,0.308594,0.527521,0.84824,0.975141,0.516659,0.545437,0.516121,0.139288,0.216344,0.696335,0.238494,0.286141,0.813975,0.436791,0.689254,0.112296,0.866383,0.849161,0.591408,0.474673,0.650199,0.565347,0.608811,0.794355,0.861584,0.290571,0.661919,0.0310938,0.933795,0.366569,0.13561,0.563572,0.87083,0.3462,0.827314,0.0715751,0.960834,0.339531,0.756809,0.442911,0.820044,0.441032,0.761723,0.405607,0.27107,0.0226901,0.255289,0.718324,0.109534,0.0319245,0.766165,0.376156,0.805483,0.679361,0.607577,0.175095,0.0540789,0.159581,0.081354,0.647405,0.328911,0.656842,0.0402235,0.511094,0.286428,0.905585,0.00888896,0.941225,0.750277,0.959219,0.300815,0.409279,0.710623,0.72578,0.870931,0.35206,0.240851,0.276269,0.196764,0.909884,0.114145,0.947276,0.340952,0.781202,0.625951,0.821238,0.390824,0.275473,0.468702,0.15051,0.137794,0.203018,0.488355,0.62863,0.33062,0.851233,0.287951,0.0170342,0.623026,0.695948,0.926418,0.884997,0.802871,0.768366,0.696261,0.686098,0.561826,0.434359,0.060303,0.53651,0.334835,0.972139,0.637806,0.547873,0.894559,0.744707,0.875938,0.416288,0.0811095,0.631527,0.0402555,0.478945,0.599823,0.901209,0.200029,0.116954,0.74579,0.808485,0.180316,0.754372,0.535967,0.00231898,0.0819474,0.759347,0.722415,0.82727,0.440177,0.132074,0.394193,0.367974,0.697794,0.0817282,0.651922,0.420285,0.0105891,0.244506,0.87933,0.698429,0.555771,0.20636,0.656725,0.766767,0.805609,0.508366,0.284677,0.733263,0.43663,0.863375,0.277973,0.164941,0.425343,0.583703,0.221889,0.43,0.369192,0.252036,0.363379,0.557269,0.65002,0.156172,0.879619,0.624995,0.586331,0.586886,0.013555,0.384909,0.317033,0.418133,0.0196065,0.558733,0.472043,0.731773,0.0337538,0.435372,0.813962,0.879778,0.315701,0.302523,0.409845,0.419477,0.586167,0.428123,0.0661272,0.104925,0.0581074,0.850335,0.23014,0.266344,0.527994,0.24248,0.556086,0.188983,0.671859,0.815365,0.636906,0.491362,0.182087,0.254615,0.286299,0.68281,0.905576,0.247615,0.448368,0.517693,0.88979,0.832797,0.260077,0.0967649,0.000828803,0.773356,0.563999,0.931236,0.550608,0.53185,0.315532,0.822711,0.0845779,0.652547,0.309748,0.210212,0.351726,0.597779,0.750333,0.406052,0.707114,0.8623,0.297848,0.425642,0.484613,0.337533,0.777988,0.777026,0.168596,0.711323,0.587557,0.11011,0.922546,0.133712,0.445421,0.448096,0.985334,0.84358,0.016294,0.405452,0.47504,0.700442,0.0664913,0.922744,0.206628,0.319839,0.0180138,0.123408,0.207246,0.231773,0.309127,0.0251051,0.152828,0.0972645,0.878905,0.00348032,0.310485,0.179523,0.793141,0.957434,0.0240136,0.506895,0.00597632,0.350295,0.811382,0.845866,0.799701,0.73793,0.86686,0.264545,0.587652,0.976791,0.738545,0.819061,0.29231,0.891214,0.593914,0.17414,0.357981,0.914182,0.649107,0.784936,0.64528,0.150831,0.401623,0.910551,0.114433,0.743398,0.559691,0.876288,0.501125,0.222207,0.42611,0.88556,0.828503,0.39418,0.656412,0.826531,0.0418428,0.00435668,0.868344,0.404882,0.866224,0.81425,0.154086,0.803759,0.0621181,0.265614,0.29115,0.65035,0.636037,0.449592,0.77071,0.913737,0.573864,0.545555,0.158267,0.737566,0.221778,0.810646,0.433685,0.297958,0.742729,0.800066,0.48633,0.638337,0.377869,0.713936,0.575279,0.580581,0.104694,0.246325,0.852017,0.328286,0.856224,0.4223,0.971019,0.844052,0.013765,0.412275,0.108709,0.906708,0.310473,0.482147,0.439673,0.29479,0.712776,0.678655,0.0819432,0.218336,0.0295944,0.487437,0.875959,0.430526,0.878646,0.429765,0.0663584,0.988624,0.136021,0.782261,0.0422439,0.0499449,0.483921,0.159591,0.948101,0.899264,0.553634,0.127682,0.901079,0.216024,0.566863,0.000362754,0.226818,0.869534,0.486912,0.884075,0.99608,0.989904,0.667202,0.00478035,0.221544,0.36793,0.867153,0.369229,0.475161,0.958619,0.218808,0.663668,0.996681,0.870726,0.853385,0.339777,0.159021,0.092017,0.367899,0.936501,0.814197,0.719529,0.849212,0.378283,0.649478,0.204433,0.469745,0.28373,0.847979,0.559342,0.245499,0.0481268,0.525612,0.555065,0.904686,0.300332,0.690888,0.536752,0.560859,0.469464,0.575635,0.411663,0.396265,0.295062,0.201638,0.26731,0.617446,0.784129,0.393838,0.322663,0.69926,0.0150681,0.948253,0.141673,0.597068,0.345534,0.398054,0.851993,0.510596,0.0599473,0.900672,0.876748,0.40963,0.274509,0.849774,0.818093,0.971319,0.997372,0.237951,0.311299,0.209545,0.870655,0.785777,0.00847507,0.776555,0.998365,0.283787,0.0502178,0.68405,0.531504,0.0122138,0.65907,0.606146,0.794281,0.638242,0.253965,0.183335,0.549392,0.459086,0.388716,0.385663,0.812636,0.826865,0.835299,0.199344,0.429782,0.442953,0.236964,0.351853,0.78372,0.136504,0.555168,0.838658,0.0794956,0.957201,0.105266,0.116212,0.603294,0.765318,0.394726,0.754118,0.738155,0.150961,0.278002,0.257928,0.704108,0.844125,0.58812,0.0891409,0.113089,0.699698,0.734831,0.91539,0.0648598,0.949756,0.848034,0.00595111,0.853388,0.0478161,0.442145,0.169885,0.755832,0.869876,0.317975,0.905912,0.552985,0.275292,0.606013,0.844705,0.688455,0.113895,0.909035,0.53673,0.428376,0.304479,0.14228,0.50754,0.591238,0.118559,0.664092,0.987444,0.0634308,0.287128,0.0931999,0.91429,0.576553,0.0184776,0.725162,0.253773,0.615685,0.13781,0.162081,0.782176,0.120425,0.533151,0.42328,0.468303,0.164942,0.817074,0.312952,0.709208,0.303395,0.0255054,0.604235,0.105668,0.117769,0.566131,0.784559,0.34734,0.0749868,0.630781,0.912718,0.234001,0.397194,0.573932,0.419378,0.0646426,0.22328,0.334936,0.36398,0.693498,0.359567,0.889943,0.116125,0.0131776,0.477227,0.95537,0.936424,0.885404,0.918988,0.444787,0.323863,0.787138,0.29951,0.835076,0.194976,0.271018,0.370317,0.936304,0.752274,0.372943,0.877642,0.282602,0.447348,0.141253,0.624365,0.367555,0.877728,0.830334,0.692415,0.156367,0.0684541,0.423979,0.0872403,0.364041,0.935535,0.65137,0.809288,0.253589,0.351014,0.585871,0.521163,0.60069,0.43906,0.0860195,0.03749,0.854695,0.0394807,0.574444,0.0355902,0.280446,0.685045,0.690578,0.688397,0.723249,0.559976,0.767518,0.038318,0.845069,0.188296,0.0701843,0.913306,0.79821,0.099417,0.390461,0.734305,0.774083,0.519906,0.349328,0.379827,0.558778,0.479141,0.685933,0.202707,0.651575,0.674765,0.418296,0.568602,0.223211,0.338656,0.762564,0.395116,0.744358,0.952894,0.993698,0.220237,0.778204,0.997218,0.692974,0.79683,0.102725,0.799551,0.647533,0.932643,0.768047,0.610592,0.0933504,0.123882,0.830758,0.473771,0.81445,0.310779,0.182161,0.39481,0.610337,0.947152,0.627253,0.409537,0.688313,0.320387,0.948364,0.0968937,0.239587,0.439806,0.619936,0.0863911,0.17133,0.958913,0.204287,0.732529,0.902687,0.966992,0.466584,0.572859,0.523126,0.789605,0.377336,0.958119,0.595892,0.552775,0.652636,0.52033,0.558526,0.109164,0.470303,0.20978,0.681681,0.35879,0.739585,0.216579,0.0130206,0.373406,0.546983,0.841845,0.826878,0.481982,0.644655,0.0603437,0.925725,0.565376,0.421947,0.617337,0.494834,0.0588613,0.141316,0.489256,0.781677,0.195823,0.441883,0.0680708,0.339797,0.0691381,0.513775,0.0707393,0.775103,0.556815,0.320006,0.211664,0.39472,0.678247,0.652845,0.162145,0.286253,0.29304,0.73586,0.130318,0.483382,0.274647,0.859675,0.639487,0.55559,0.837836,0.486045,0.109212,0.725849,0.863134,0.901993,0.767818,0.147316,0.872574,0.688746,0.774883,0.852168,0.389847,0.394541,0.98156,0.713078,0.65917,0.266899,0.130222,0.991601,0.939993,0.756461,0.363611,0.775019,0.206363,0.765247,0.0994481,0.163637,0.70009,0.760415,0.938275,0.583893,0.0274773,0.515532,0.781232,0.379885,0.114161,0.880804,0.372759,0.538583,0.833699,0.980281,0.717095,0.814235,0.699606,0.531614,0.965033,0.893496,0.296086,0.623212,0.641401,0.893526,0.960476,0.993628,0.449858,0.867766,0.513003,|0.364175,0.107145,0.114151,0.78162,0.303764,0.569232,0.39745,0.00589675,0.366957,0.300993,0.860429,0.533116,0.831904,0.302469,0.575723,0.974912,0.458935,0.314575,0.534237,0.060974,0.32101,0.448477,0.838839,0.730848,0.245227,0.602509,0.707683,0.191111,0.370436,0.158094,0.540042,0.48879,0.0998025,0.438179,0.0598442,0.942625,0.911592,0.385196,0.959693,0.938026,0.906498,0.754068,0.351497,0.374704,0.99885,0.893964,0.00247687,0.787011,0.245945,0.850018,0.495272,0.708951,0.63756,0.0256137,0.52267,0.877527,0.428106,0.389747,0.840109,0.489645,0.59666,0.486289,0.186845,0.943021,0.172097,0.695656,0.867841,0.0697089,0.454841,0.559805,0.863643,0.660642,0.754767,0.917395,0.621904,0.0996293,0.0428094,0.278884,0.884073,0.29788,0.736145,0.599366,0.673908,0.998747,0.912695,0.0503743,0.50276,0.142251,0.240659,0.775729,0.164349,0.669689,0.422254,0.56706,0.29219,0.411183,0.0241474,0.43193,0.807559,0.475649,0.900431,0.547962,0.442944,0.443326,0.0172044,0.157581,0.579351,0.732868,0.523068,0.502109,0.0900443,0.142173,0.753187,0.282369,0.161485,0.54272,0.571165,0.909918,0.219175,0.0102797,0.135846,0.768817,0.627074,0.412273,0.938955,0.00378561,0.747471,0.0987962,0.673139,0.0111579,0.738036,0.63928,0.994671,0.903529,0.540589,0.181771,0.869743,0.157594,0.9078,0.490753,0.0450355,0.731931,0.172272,0.780947,0.903452,0.118093,0.986633,0.555624,0.968506,0.389758,0.569158,0.588399,0.242904,0.716709,0.924123,0.123792,0.961075,0.163415,0.0744235,0.922888,0.739003,0.391748,0.709535,0.821475,0.646522,0.232235,0.37317,0.444628,0.0452074,0.121459,0.634305,0.260558,0.473527,0.0367306,0.448364,0.425839,0.514447,0.611919,0.901534,0.602187,0.315657,0.269474,0.750847,0.726272,0.694824,0.939264,0.865089,0.986107,0.497834,0.902052,0.950919,0.632294,0.420229,0.160523,0.464876,0.403498,0.325219,0.638453,0.466975,0.092414,0.71363,0.827128,0.712519,0.522412,0.77838,0.673401,0.989181,0.195994,0.524811,0.316446,0.352192,0.973871,0.601267,0.962566,0.962789,0.79674,0.946835,0.455488,0.832579,0.439863,0.871553,0.177182,0.446201,0.201806,0.429025,0.33722,0.815988,0.275308,0.520275,0.378953,0.154847,0.272675,0.215696,0.990414,0.358044,0.0302525,0.533843,0.351832,0.0507715,0.0586891,0.138804,0.538738,0.26971,0.729376,0.320071,0.568809,0.0853305,0.0577259,0.485113,0.49877,0.65543,0.285333,0.795209,0.158886,0.436599,0.937441,0.844811,0.721504,0.466772,0.138071,0.437519,0.654504,0.299215,0.676781,0.919562,0.980918,0.542713,0.185079,0.731495,0.273559,0.589632,0.26913,0.678832,0.393348,0.336167,0.919736,0.236927,0.761836,0.864617,0.811066,0.943373,0.648343,0.709795,0.562566,0.475041,0.228049,0.668265,0.0623003,0.726512,0.327798,0.480356,0.429682,0.527075,0.321646,0.184503,0.665517,0.173139,0.0540957,0.0324568,0.972712,0.911585,0.114214,0.0665689,0.698802,0.787265,0.315809,0.22517,0.571099,0.675496,0.296079,0.264228,0.540792,0.458886,0.943251,0.336758,0.153004,0.537566,0.258898,0.748887,0.0307572,0.503333,0.82387,0.275373,0.344705,0.511003,0.814195,0.954772,0.312186,0.809083,0.0276024,0.674707,0.000585318,0.763516,0.810914,0.605973,0.799793,0.144387,0.167394,0.972705,0.874622,0.783563,0.691614,0.664694,0.827276,0.482444,0.542362,0.266104,0.989835,0.915455,0.767856,0.175318,0.171197,0.503266,0.956551,0.761155,0.671186,0.398482,0.502357,0.685881,0.573312,0.412716,0.523958,0.6543,0.493458,0.360854,0.0324406,0.957874,0.0609392,0.41786,0.482921,0.126614,0.641668,0.106624,0.646788,0.0320551,0.149805,0.268224,0.376754,0.723284,0.463879,0.58138,0.862259,0.925793,0.817135,0.63056,0.944288,0.904608,0.632055,0.726095,0.780567,0.755763,0.0312025,0.0136803,0.395562,0.495056,0.899692,0.112223,0.541403,0.312659,0.850627,0.384647,0.721832,0.968839,0.738281,0.409045,0.0242829,0.877374,0.150616,0.841159,0.326657,0.863777,0.500748,0.109176,0.892388,0.475613,0.302527,0.309005,0.803584,0.437913,0.362987,0.945966,0.891664,0.834605,0.516518,0.707421,0.296359,0.852521,0.610736,0.663996,0.545282,0.280193,0.831065,0.124621,0.857893,0.824868,0.398364,0.287301,0.918488,0.49349,0.00996226,0.480427,0.982456,0.917467,0.634433,0.260041,0.11352,0.883577,0.355933,0.408966,0.214134,0.720313,0.471192,0.823659,0.769353,0.229859,0.391797,0.444197,0.709305,0.373499,0.0358344,0.426263,0.516491,0.589662,0.741569,0.213891,0.228471,0.731178,0.300343,0.146,0.595172,0.253519,0.950315,0.491882,0.279278,0.631215,0.154274,0.925983,0.678324,0.581165,0.669483,0.455369,0.883951,0.889681,0.727137,0.370321,0.826175,0.175768,0.365456,0.857475,0.649618,0.658162,0.571582,0.588138,0.6183,0.540489,0.640685,0.746003,0.0148874,0.019761,0.0744385,0.394193,0.361205,0.320143,0.577617,0.580218,0.936158,0.758302,0.235746,0.636105,0.519176,0.800095,0.165199,0.784911,0.370108,0.333502,0.0535353,0.13516,0.147527,0.678339,0.446497,0.72502,0.219992,0.205105,0.851021,0.249789,0.685476,0.0573532,0.241667,0.0200644,0.626169,0.610274,0.802224,0.485205,0.688103,0.267133,0.816709,0.288055,0.315221,0.168968,0.741358,0.545924,0.334229,0.0728207,0.471395,0.845026,0.549426,0.348952,0.422336,0.889451,0.966392,0.600685,0.324446,0.977549,0.191409,0.3793,0.0846701,0.0055663,0.712501,0.735193,0.738306,0.130112,0.979699,0.993468,0.544868,0.957069,0.806596,0.375428,0.485414,0.31358,0.159564,0.394155,0.303735,0.322242,0.840774,0.903934,0.0641719,0.190695,0.722189,0.0274506,0.539837,0.2276,0.580781,0.220896,0.899953,0.970292,0.269577,0.893932,0.25181,0.582342,0.0918509,0.196032,0.157952,0.0396082,0.741149,0.359507,0.0970856,0.448879,0.154757,0.378243,0.937263,0.411999,0.665638,0.712992,0.173148,0.405132,0.32527,0.552835,0.696842,0.766995,0.590607,0.705182,0.537091,0.843145,0.334758,0.554709,0.492426,0.929459,0.374111,0.0773077,0.0775239,0.79786,0.585267,0.557956,0.671427,0.070708,0.871303,0.999041,0.855089,0.409201,0.442196,0.189389,0.658555,0.222088,0.756603,0.0271584,0.108616,0.73513,0.272732,0.315655,0.199419,0.739821,0.399588,0.811178,0.508038,0.823449,0.106727,0.746059,0.0587435,0.508645,0.924604,0.861732,0.81895,0.943143,0.302581,0.229046,0.331514,0.855226,0.516959,0.314235,0.734941,0.0485023,0.189968,0.832741,0.185218,0.929827,0.514844,0.886609,0.90827,0.541275,0.195747,0.619406,0.121825,0.807619,0.448056,0.780347,0.613049,0.543503,0.164537,0.312166,0.184378,0.565089,0.971126,0.0592468,0.358459,0.831437,0.0904587,0.569204,0.372231,0.390255,0.906184,0.277796,0.405707,0.850227,0.223956,0.677155,0.935884,0.883064,0.671298,0.421116,0.381642,0.17495,0.436109,0.0914177,0.749657,0.654232,0.743679,0.687146,0.38096,0.36207,0.81889,0.666391,0.224313,0.664182,0.873806,0.23708,0.941652,0.398853,0.74708,0.13431,0.428033,0.996917,0.444011,0.966012,0.864572,0.888092,0.649697,0.50077,0.207625,0.99888,0.500917,0.557681,0.854642,0.735787,0.502742,0.743041,0.0791687,0.337081,0.143563,0.480402,0.902999,0.502528,0.772488,0.109929,0.736458,0.857948,0.473266,0.874915,0.00736308,0.144055,0.612703,0.460667,0.896737,0.182467,0.157464,0.9811,0.00630051,0.212555,0.173179,0.196696,0.923147,0.813353,0.743116,0.584355,0.301416,0.947449,0.329554,0.546604,0.266804,0.29319,0.21795,0.380092,0.546824,0.307203,0.163599,0.716787,0.9122,0.393199,0.41697,0.190559,0.0315838,0.552225,0.501602,0.598923,0.356217,0.70876,0.417489,0.899213,0.633871,0.484901,0.896951,0.152176,0.0841106,0.401979,0.866247,0.539207,0.963403,0.383898,0.558976,0.7164,0.737037,0.656428,0.80374,0.828757,0.0676597,0.391091,0.15881,0.654241,0.738327,0.0050481,0.0388505,0.0302769,0.389253,0.83752,0.458138,0.175412,0.873316,0.007029,0.0953096,0.424007,0.716971,0.747542,0.936255,0.820903,0.221173,0.396053,0.20188,0.555588,0.264903,0.815725,0.812934,0.533044,0.544034,0.219112,0.355659,0.473195,0.352434,0.715504,0.416985,0.292666,0.237545,0.18802,0.717228,0.56366,0.872842,0.199911,0.361025,0.73483,0.7381,0.611298,0.70942,0.244676,0.74271,0.240712,0.17343,0.9431,0.249116,0.73073,0.76364,0.777772,0.22713,0.975624,0.70368,0.604293,0.151964,0.411615,0.855769,0.92762,0.616833,0.967841,0.312589,0.352899,0.794875,0.682471,0.272576,0.323303,0.0693322,0.473026,0.610748,0.310588,0.530743,0.490436,0.792819,0.854057,0.98804,0.00549668,0.16019,0.426711,0.74719,0.845377,0.37847,0.562481,0.0911601,0.840673,0.642196,0.480951,0.495078,0.760487,0.541274,0.15103,0.326345,0.385901,0.0765526,0.939017,0.760974,0.177629,0.571346,0.759095,0.0586008,0.929132,0.811794,0.502403,0.0696602,0.929571,0.196554,0.756645,0.298505,0.449997,0.5808,0.119169,0.478983,0.0619911,0.793361,0.0114619,0.117389,0.718546,0.999546,0.286712,0.209288,0.799671,0.708234,0.356576,0.00961423,0.377995,0.0549993,0.0483178,0.100342,0.603049,0.758211,0.446936,0.716524,0.375646,0.385899,0.211426,0.446127,0.633825,0.720732,0.440032,0.33642,0.640811,0.752588,0.503594,0.635839,0.956696,0.00677276,0.346459,0.359037,0.723359,0.798297,0.769458,0.907886,0.833991,0.235482,0.356349,0.505403,0.539251,0.048112,0.564307,0.37432,0.213722,0.119983,0.167176,0.344366,0.715172,0.296433,0.677686,0.405805,0.539992,0.148508,0.918785,0.17466,0.474091,0.0494777,0.225889,0.944629,0.438214,0.24276,0.97537,0.91991,0.473079,0.903295,0.781364,0.480158,0.781759,0.880776,0.353973,0.0730724,0.9705,0.282776,0.705477,0.635497,|0.394292,0.622163,0.425777,0.291054,0.0289456,0.174381,0.0182785,0.540056,0.14883,0.497616,0.306445,0.780815,0.47172,0.0622189,0.00117159,0.427259,0.757779,0.295881,0.427943,0.238315,0.116296,0.0832675,0.832282,0.228932,0.116619,0.570274,0.543848,0.465638,0.197892,0.830276,0.784684,0.616818,0.41641,0.522108,0.990068,0.801762,0.00863302,0.346279,0.160723,0.706721,0.574878,0.16598,0.180345,0.153421,0.269649,0.918161,0.669336,0.385211,0.436338,0.0106529,0.317252,0.85693,0.538924,0.786707,0.336508,0.556897,0.44285,0.590265,0.702683,0.989269,0.293289,0.616891,0.253702,0.959511,0.0672623,0.702416,0.364499,0.735349,0.339861,0.995197,0.696369,0.038419,0.957819,0.20102,0.68351,0.994242,0.444957,0.467572,0.866855,0.409788,0.740882,0.376927,0.470786,0.505118,0.625208,0.575846,0.0918036,0.892711,0.306875,0.903595,0.774489,0.99341,0.81425,0.35935,0.688781,0.342009,0.452443,0.864308,0.97421,0.518945,0.0534915,0.607011,0.263037,0.743192,0.0242692,0.992931,0.91774,0.820837,0.836513,0.493473,0.852462,0.807351,0.903587,0.0505651,0.701563,0.51913,0.3563,0.833202,0.667316,0.937805,0.608015,0.736828,0.224954,0.974586,0.516174,0.381641,0.923801,0.406706,0.583289,0.293169,0.151083,0.0959783,0.285698,0.160601,0.474026,0.694989,0.795972,0.593788,0.282914,0.919806,0.667255,0.123545,0.245247,0.0752152,0.40284,0.88513,0.673599,0.704874,0.22483,0.557478,0.0150283,0.948593,0.418577,0.251386,0.0705071,0.896936,0.141412,0.860175,0.0869403,0.861249,0.548157,0.709718,0.0450234,0.99159,0.486375,0.236231,0.662495,0.242506,0.278272,0.101053,0.110659,0.740696,0.788112,0.338691,0.478911,0.949053,0.925113,0.669599,0.689754,0.534886,0.380447,0.673038,0.142051,0.572624,0.904299,0.06607,0.843403,0.945684,0.812132,0.531151,0.969991,0.228938,0.093828,0.433859,0.18269,0.141962,0.784881,0.889311,0.217337,0.84574,0.802717,0.173301,0.507314,0.0375378,0.0139853,0.778883,0.663529,0.633518,0.722584,0.241857,0.191262,0.843289,0.170591,0.211365,0.961271,0.324721,0.0148355,0.698618,0.903196,0.502387,0.0975425,0.307006,0.777623,0.226934,0.150429,0.469846,0.820393,0.301453,0.893319,0.835405,0.905136,0.70779,0.255861,0.572075,0.074372,0.672452,0.363477,0.60979,0.328767,0.987867,0.0328589,0.749613,0.946199,0.780542,0.129767,0.0878319,0.673124,0.379025,0.833139,0.876047,0.56945,0.377714,0.615184,0.558508,0.460978,0.108908,0.56201,0.18294,0.945673,0.409585,0.417205,0.957284,0.66934,0.354841,0.294003,0.27066,0.90542,0.519193,0.118679,0.855021,0.56229,0.093799,0.487138,0.26995,0.809067,0.521505,0.198878,0.573093,0.527913,0.0278307,0.795427,0.256816,0.77579,0.830734,0.875039,0.568971,0.199699,0.576944,0.419943,0.286671,0.154116,0.294147,0.202736,0.977239,0.940724,0.62314,0.24482,0.433317,0.299593,0.816633,0.859175,0.786803,0.445199,0.465668,0.577312,0.619314,0.335006,0.824744,0.116164,0.972137,0.410274,0.38864,0.944008,0.101243,0.0258598,0.814656,0.31777,0.068681,0.290764,0.476725,0.941142,0.923107,0.579802,0.170776,0.823348,0.749506,0.233827,0.929576,0.813866,0.441712,0.551448,0.0792757,0.741958,0.846222,0.684276,0.713161,0.19257,0.0728133,0.748928,0.944817,0.44898,0.0479206,0.468178,0.722574,0.554006,0.257776,0.00336933,0.778784,0.926157,0.495723,0.150482,0.931452,0.685857,0.323658,0.484342,0.704159,0.21643,0.521793,0.930533,0.0474187,0.00219619,0.220726,0.305301,0.041455,0.659578,0.825397,0.0656343,0.434702,0.419246,0.629278,0.103176,0.41698,0.43513,0.557282,0.344094,0.993501,0.54594,0.394592,0.386502,0.557641,0.450497,0.500273,0.83915,0.35461,0.753404,0.1889,0.219659,0.0725178,0.388002,0.461539,0.474218,0.83526,0.646637,0.559551,0.926033,0.161009,0.923804,0.824878,0.858609,0.692037,0.00551802,0.934829,0.392102,0.517015,0.946401,0.160198,0.276059,0.053543,0.716939,0.224538,0.767207,0.275586,0.435501,0.845894,0.610173,0.0919045,0.0877342,0.309501,0.669924,0.00613242,0.752366,0.35544,0.0545025,0.183163,0.55697,0.887771,0.239734,0.624095,0.0915731,0.712053,0.408965,0.0287215,0.949706,0.693171,0.448291,0.799201,0.358361,0.916397,0.497884,0.813336,0.638085,0.262305,0.126897,0.761838,0.816964,0.03941,0.702407,0.176929,0.153218,0.367223,0.882125,0.271281,0.584678,0.597616,0.228636,0.168003,0.855796,0.928501,0.568016,0.45353,0.155624,0.482898,0.749209,0.425427,0.571917,0.507206,0.211629,0.430784,0.432609,0.460873,0.454162,0.732486,0.34061,0.108987,0.415915,0.479769,0.656842,0.706794,0.352599,0.024836,0.794311,0.31877,0.0224612,0.752096,0.586882,0.698241,0.899466,0.588207,0.656363,0.624578,0.609405,0.80533,0.999859,0.959558,0.708562,0.100178,0.937381,0.258365,0.780437,0.189862,0.820474,0.627635,0.246974,0.316996,0.547527,0.852547,0.591587,0.959527,0.652281,0.616404,0.812925,0.0358722,0.574278,0.505798,0.919304,0.143245,0.220342,0.848083,0.329086,0.723851,0.110309,0.113031,0.737308,0.243467,0.96387,0.313123,0.244343,0.226818,0.789094,0.792779,0.622033,0.596184,0.778625,0.112465,0.467475,0.918443,0.889438,0.087744,0.550613,0.0363442,0.875118,0.484163,0.101258,0.714498,0.0157248,0.314775,0.251283,0.0905408,0.640311,0.651736,0.745241,0.135861,0.0833588,0.716742,0.221816,0.384898,0.595399,0.338917,0.585519,0.734648,0.554005,0.931551,0.472491,0.825665,0.460945,0.663217,0.258796,0.448722,0.448915,0.36164,0.563982,0.640487,0.220899,0.523221,0.129349,0.82026,0.982611,0.088274,0.350381,0.741411,0.0323848,0.318661,0.651828,0.766817,0.568476,0.695752,0.687729,0.25403,0.698803,0.955862,0.951408,0.168707,0.85036,0.188835,0.214491,0.86234,0.231482,0.949379,0.0348071,0.439578,0.0942746,0.205664,0.971178,0.732172,0.178729,0.90562,0.414223,0.751564,0.0928043,0.448831,0.0536193,0.961648,0.925599,0.469746,0.755318,0.0123231,0.213806,0.800403,0.973536,0.809839,0.981148,0.00170487,0.912456,0.172395,0.462387,0.894161,0.890921,0.136948,0.153866,0.745637,0.24425,0.582558,0.544131,0.306165,0.711593,0.328189,0.0132785,0.903951,0.465811,0.423506,0.0564631,0.874705,0.57564,0.180202,0.489294,0.164951,0.255828,0.980619,0.792088,0.502903,0.769003,0.948732,0.0262424,0.0262986,0.346923,0.6918,0.420156,0.958131,0.770887,0.40355,0.550135,0.126834,0.311689,0.912721,0.220943,0.190656,0.252085,0.659861,0.265134,0.437256,0.436203,0.444049,0.137762,0.0649523,0.854924,0.157714,0.46319,0.573107,0.84355,0.775446,0.990926,0.946919,0.979589,0.753464,0.248847,0.650308,0.305597,0.57591,0.297619,0.291506,0.383495,0.65524,0.853541,0.591628,0.319917,0.0683227,0.241164,0.315447,0.85012,0.992579,0.290929,0.620969,0.0362555,0.769821,0.346326,0.287542,0.140769,0.215565,0.503656,0.284898,0.913584,0.744128,0.833147,0.549988,0.376176,0.717429,0.13322,0.759181,0.259248,0.770645,0.723065,0.743514,0.967284,0.845354,0.0510628,0.269817,0.679274,0.402962,0.269903,0.653946,0.00147325,0.638291,0.536773,0.0426695,0.320254,0.93031,0.524568,0.898117,0.930411,0.700071,0.476756,0.362252,0.460835,0.399217,0.038954,0.223893,0.0472977,0.997362,0.332246,0.0691774,0.523345,0.32041,0.89312,0.892992,0.678592,0.342031,0.528179,0.718983,0.991162,0.520214,0.274033,0.639354,0.862109,0.101084,0.441116,0.838642,0.0984718,0.99715,0.196746,0.323834,0.883694,0.0936115,0.97139,0.169069,0.811796,0.322432,0.784022,0.38756,0.14264,0.823597,0.395467,0.118029,0.783101,0.199647,0.606395,0.697802,0.955534,0.804796,0.49733,0.452526,0.60129,0.677888,0.332878,0.709818,0.996088,0.345167,0.0126171,0.0749104,0.0388659,0.456256,0.896127,0.56982,0.882734,0.812343,0.332464,0.352456,0.113612,0.466942,0.133592,0.185211,0.13129,0.472099,0.520706,0.391905,0.625246,0.936537,0.97724,0.386521,0.316766,0.185314,0.150543,0.131696,0.0615128,0.178861,0.385557,0.559809,0.0180798,0.0195722,0.635519,0.91089,0.00906569,0.301365,0.763612,0.218344,0.0506326,0.887458,0.547246,0.396717,0.0465417,0.592632,0.193127,0.126243,0.0592522,0.438048,0.146119,0.822748,0.662559,0.587153,0.545991,0.827783,0.677108,0.69663,0.607647,0.213956,0.132712,0.490731,0.818511,0.93476,0.485422,0.769175,0.730828,0.290428,0.369241,0.170809,0.0349908,0.851589,0.166679,0.891191,0.483486,0.398228,0.263294,0.757566,0.554509,0.630714,0.54382,0.0399302,0.114109,0.0274082,0.570027,0.837301,0.725736,0.991493,0.318815,0.402362,0.947164,0.324967,0.430212,0.429624,0.934659,0.203192,0.419472,0.326671,0.00436968,0.590818,0.822529,0.417402,0.222098,0.0811138,0.260057,0.656352,0.846076,0.366013,0.655931,0.937556,0.866479,0.108042,0.700812,0.780228,0.436102,0.31629,0.647051,0.359526,0.376174,0.20741,0.984329,0.629963,0.0385444,0.0721453,0.592818,0.447275,0.72667,0.38313,0.775776,0.482993,0.247182,0.547321,0.968887,0.5815,0.0102212,0.0488895,0.208405,0.698705,0.000551403,0.745823,0.561733,0.212963,0.815308,0.1072,0.693711,0.892744,0.581294,0.220243,0.266443,0.888285,0.739602,0.971453,0.801385,0.441693,0.144507,0.710348,0.834016,0.0385811,0.548847,0.158315,0.0486419,0.442595,0.845116,0.622794,0.833194,0.903384,0.072716,0.019174,0.258358,0.76408,0.245914,0.308423,0.7739,0.151783,0.189653,0.772702,0.0604014,0.841154,0.24273,0.000615418,0.337737,0.258757,0.457154,0.0776776,0.808228,0.46785,0.10183,0.30169,0.175359,0.105319,0.983465,0.707591,0.490537,0.819567,0.300071,0.942213,0.384023,0.865962,0.394578,0.254831,0.922319,0.121839,0.851736,0.496786,0.175587,0.38383,|0.871922,0.918891,0.362889,0.853689,0.264952,0.384229,0.675607,0.206383,0.181759,0.172857,0.945343,0.0674969,0.12648,0.621453,0.227019,0.125486,0.261826,0.67009,0.890554,0.573316,0.528643,0.781436,0.438499,0.192088,0.548738,0.450648,0.720472,0.251117,0.814608,0.582099,0.356324,0.155409,0.587034,0.112093,0.87174,0.935507,0.312086,0.591816,0.867267,0.06666,0.332652,0.0132183,0.353371,0.378281,0.419046,0.494253,0.920781,0.337924,0.817133,0.00917256,0.930275,0.38951,0.883138,0.261232,0.522942,0.0174837,0.220627,0.456707,0.128649,0.198133,0.822808,0.791598,0.805206,0.25381,0.169799,0.654231,0.163329,0.114641,0.175782,0.230278,0.631588,0.409671,0.128418,0.580049,0.627342,0.110369,0.747521,0.988484,0.747128,0.469505,0.43429,0.881591,0.0801468,0.0547659,0.406643,0.00814074,0.929466,0.103071,0.680607,0.387111,0.919924,0.854158,0.818689,0.000779927,0.595022,0.42644,0.583069,0.625648,0.919419,0.201449,0.0239661,0.435619,0.9037,0.0214037,0.255241,0.382462,0.187039,0.116724,0.80947,0.764719,0.313516,0.964846,0.272071,0.0694349,0.432718,0.188724,0.658143,0.738436,0.0933798,0.334292,0.0088625,0.031586,0.976884,0.943639,0.513458,0.276627,0.815457,0.457999,0.626169,0.0833027,0.0226311,0.310806,0.379348,0.45288,0.559914,0.740878,0.288742,0.377606,0.618209,0.325556,0.175262,0.680458,0.729204,0.475698,0.161681,0.730873,0.635436,0.217926,0.0341302,0.529816,0.0491942,0.00633794,0.394467,0.190546,0.91972,0.102342,0.215352,0.513652,0.218857,0.156051,0.00473464,0.52585,0.739957,0.137961,0.470594,0.288311,0.398068,0.796306,0.171596,0.775398,0.716762,0.645399,0.694892,0.858248,0.619739,0.281771,0.0175543,0.673336,0.108343,0.303897,0.397214,0.20922,0.00739574,0.255226,0.393793,0.515849,0.074577,0.423956,0.811559,0.350299,0.672958,0.798064,0.459945,0.453288,0.954219,0.00345647,0.226858,0.862523,0.669949,0.81262,0.649875,0.193656,0.633351,0.62548,0.776099,0.663137,0.756856,0.78212,0.806421,0.592717,0.758961,0.899366,0.851511,0.714995,0.987629,0.751249,0.268506,0.839895,0.0616956,0.104956,0.626974,0.873726,0.458898,0.778278,0.956589,0.623458,0.676842,0.92401,0.0608827,0.420318,0.538885,0.897432,0.519975,0.162293,0.509067,0.00825429,0.205004,0.101399,0.907491,0.497971,0.156926,0.805349,0.213628,0.594086,0.876159,0.994496,0.831258,0.912873,0.669363,0.0119857,0.0900565,0.843581,0.303249,0.207835,0.698614,0.921484,0.279289,0.501138,0.595065,0.0240777,0.575289,0.213461,0.49536,0.212127,0.537721,0.463011,0.348187,0.540013,0.234912,0.28042,0.943122,0.955225,0.567039,0.986883,0.0343868,0.506969,0.524475,0.685726,0.402122,0.681437,0.245726,0.115988,0.255745,0.455624,0.838311,0.714705,0.558912,0.0839298,0.163935,0.564024,0.359691,0.606674,0.426591,0.62719,0.955822,0.231016,0.882824,0.720159,0.732093,0.337246,0.0534774,0.486991,0.976624,0.0341526,0.93001,0.626133,0.472302,0.87978,0.77408,0.663943,0.834311,0.054877,0.775901,0.47213,0.0870315,0.273252,0.187703,0.0394859,0.367577,0.882223,0.996311,0.786935,0.963737,0.937864,0.914638,0.189339,0.984389,0.89721,0.3793,0.583983,0.718544,0.0467799,0.263059,0.184768,0.191156,0.954499,0.0220246,0.489672,0.764777,0.814393,0.743687,0.579329,0.962663,0.993414,0.956467,0.750859,0.200477,0.385142,0.486988,0.0579924,0.0948062,0.467002,0.617849,0.751851,0.424236,0.269138,0.0307426,0.0789741,0.358292,0.647469,0.215491,0.0962408,0.605292,0.312563,0.610947,0.614044,0.669696,0.889,0.35487,0.42905,0.525886,0.338992,0.284668,0.56833,0.833406,0.744203,0.385512,0.793735,0.503077,0.906243,0.70834,0.0528115,0.782618,0.705839,0.078303,0.942125,0.263165,0.87588,0.442651,0.811876,0.0727506,0.796169,0.0629483,0.374735,0.52553,0.110752,0.552189,0.569074,0.2126,0.64383,0.46103,0.447247,0.790333,0.205138,0.520134,0.194323,0.725689,0.394961,0.743609,0.90857,0.817001,0.669747,0.981435,0.92654,0.690702,0.482434,0.937922,0.834889,0.800604,0.215196,0.967149,0.953311,0.280107,0.398101,0.998234,0.373682,0.689868,0.0208259,0.234352,0.7298,0.531201,0.582765,0.688434,0.425527,0.214249,0.207533,0.264916,0.0733528,0.140296,0.50863,0.516157,0.963536,0.560007,0.641478,0.198095,0.340219,0.563218,0.575805,0.128083,0.276505,0.59441,0.871187,0.732428,0.701728,0.558495,0.0572078,0.109253,0.0868179,0.0633462,0.744418,0.269026,0.275219,0.26799,0.21486,0.399857,0.267531,0.791324,0.0689191,0.925313,0.0942746,0.995547,0.145779,0.121097,0.899919,0.797751,0.988584,0.451034,0.197912,0.0103764,0.104882,0.579365,0.028281,0.172242,0.235516,0.58599,0.995243,0.775867,0.761332,0.958364,0.293629,0.206275,0.593533,0.542379,0.0156007,0.723348,0.434259,0.699859,0.651985,0.427473,0.0634508,0.297387,0.187832,0.982438,0.85341,0.96452,0.511828,0.743573,0.731842,0.694001,0.859025,0.270792,0.520148,0.533998,0.0663335,0.441435,0.338016,0.649376,0.277414,0.821653,0.981009,0.445116,0.376667,0.240081,0.608961,0.678658,0.578937,0.586375,0.947519,0.956816,0.550639,0.215661,0.700388,0.0638555,0.621001,0.0778868,0.622855,0.947186,0.511866,0.360302,0.289769,0.494818,0.080699,0.11274,0.191353,0.755675,0.432645,0.974871,0.102308,0.154091,0.918734,0.953851,0.390389,0.769389,0.21424,0.440322,0.131315,0.52556,0.371184,0.13385,0.559278,0.734415,0.0569153,0.480339,0.071808,0.31858,0.923889,0.773854,0.868934,0.527771,0.68382,0.186056,0.302932,0.379758,0.904176,0.628202,0.420598,0.758439,0.249915,0.0258787,0.985565,0.324302,0.808999,0.0695736,0.0861982,0.177514,0.491507,0.573984,0.932607,0.713663,0.842,0.59107,0.540779,0.263908,0.31147,0.722659,0.948294,0.077619,0.441157,0.585188,0.39702,0.940776,0.876103,0.184592,0.208647,0.923853,0.798676,0.964935,0.0911463,0.363461,0.160366,0.0659382,0.691778,0.466512,0.910821,0.709112,0.905536,0.510437,0.611161,0.685946,0.930567,0.704247,0.231494,0.893297,0.292999,0.145368,0.942169,0.436791,0.747523,0.870765,0.572672,0.924022,0.0254048,0.466866,0.87283,0.64608,0.297525,0.694121,0.211738,0.261423,0.901129,0.534649,0.923122,0.980003,0.662827,0.531411,0.401331,0.765265,0.690356,0.000641048,0.44503,0.348105,0.62298,0.406703,0.514264,0.482045,0.97131,0.139737,0.5707,0.0412047,0.180928,0.407593,0.254284,0.974307,0.558263,0.503289,0.849482,0.743305,0.916646,0.69271,0.306778,0.830886,0.788826,0.666508,0.304296,0.648234,0.306514,0.466515,0.38021,0.307379,0.284334,0.775509,0.700882,0.770446,0.171099,0.52285,0.500463,0.59673,0.223829,0.551499,0.835773,0.563266,0.377484,0.273832,0.0759189,0.699819,0.0430702,0.443628,0.609409,0.933843,0.296575,0.761717,0.591162,0.575045,0.542983,0.601536,0.385795,0.60475,0.0145891,0.0955332,0.359975,0.529278,0.410972,0.467043,0.636792,0.235975,0.610256,0.178742,0.765603,0.166436,0.73708,0.150458,0.392563,0.962168,0.0911478,0.908774,0.665357,0.844454,0.239152,0.548912,0.981728,0.288331,0.45193,0.652674,0.0996211,0.369762,0.105508,0.710612,0.631572,0.433157,0.624002,0.949601,0.13871,0.330232,0.185808,0.940555,0.865113,0.272414,0.274985,0.10659,0.722597,0.123708,0.636533,0.589702,0.821668,0.817054,0.249544,0.550234,0.831476,0.485775,0.504443,0.0491832,0.859301,0.901846,0.833677,0.528837,0.592328,0.633029,0.131227,0.420052,0.258489,0.171626,0.207346,0.117557,0.367084,0.109962,0.423287,0.567614,0.233874,0.757738,0.997268,0.751929,0.304087,0.822043,0.849661,0.413516,0.593601,0.470614,0.450361,0.428598,0.484792,0.373994,0.906517,0.92837,0.206336,0.713573,0.756606,0.347155,0.704863,0.0941904,0.652518,0.171224,0.396994,0.921708,0.758174,0.282988,0.795577,0.292367,0.999859,0.799211,0.824814,0.0725619,0.818039,0.584153,0.426606,0.806954,0.749973,0.580559,0.806641,0.8849,0.595051,0.68381,0.529684,0.534538,0.948653,0.341275,0.589867,0.996819,0.990642,0.524315,0.754907,0.0552541,0.781029,0.739532,0.134781,0.329022,0.809615,0.404798,0.673507,0.605096,0.113912,0.0381092,0.964241,0.88431,0.375964,0.121587,0.299266,0.860685,0.934124,0.00504351,0.148892,0.867405,0.825025,0.917149,0.229114,0.530741,0.798506,0.899421,0.0229024,0.525432,0.371803,0.684504,0.0239455,0.323043,0.548018,0.123405,0.444744,0.628269,0.404079,0.421555,0.144195,0.00595623,0.0520291,0.822104,0.99187,0.451787,0.566437,0.316229,0.687058,0.77493,0.506403,0.77686,0.416471,0.116508,0.563291,0.171275,0.568454,0.627827,0.239655,0.230624,0.000295639,0.00546587,0.266226,0.459075,0.541512,0.551431,0.893663,0.253456,0.622982,0.879054,0.370754,0.160653,0.831367,0.949762,0.974597,0.705222,0.304281,0.446879,0.622503,0.510487,0.0164425,0.481034,0.666691,0.158375,0.199857,0.855231,0.419809,0.431403,0.768924,0.408601,0.263853,0.204939,0.459206,0.913431,0.259228,0.905059,0.306064,0.571977,0.520623,0.191754,0.0265982,0.1576,0.0870152,0.891518,0.803233,0.483791,0.744896,0.541522,0.557009,0.508055,0.833143,0.720299,0.237806,0.595132,0.830699,0.496994,0.960735,0.567149,0.901101,0.924215,0.461627,0.431799,0.530653,0.194801,0.375759,0.409958,0.269686,0.814339,0.0900046,0.540399,0.0464364,0.974614,0.715369,0.98783,0.976634,0.428044,0.681525,0.066799,0.134056,0.361595,0.895201,0.524678,0.258196,0.189959,0.201876,0.571614,0.450144,0.542898,0.507042,0.673015,0.0598913,0.0681905,0.547868,0.945246,0.528407,0.844389,0.020298,0.70868,0.0104184,0.258135,0.584459,0.766003,0.225386,0.00763345,0.616958,0.803141,0.763482,0.00539696,0.40288,0.568927,0.412893,|0.881543,0.173608,0.992079,0.906156,0.0250468,0.316805,0.68097,0.864614,0.293335,0.329177,0.733279,0.0633156,0.620107,0.742045,0.335793,0.870604,0.286829,0.704231,0.580053,0.44426,0.940799,0.797327,0.489979,0.0962604,0.365656,0.480339,0.767264,0.181013,0.92167,0.777297,0.0953956,0.619768,0.891341,0.0356081,0.391572,0.864134,0.526548,0.426697,0.232426,0.794384,0.626126,0.595498,0.392568,0.992525,0.767794,0.71531,0.857404,0.0625652,0.0248258,0.417589,0.218377,0.313906,0.941691,0.852949,0.795962,0.882097,0.255641,0.427991,0.328589,0.366504,0.39795,0.68013,0.624072,0.331679,0.628523,0.658984,0.00415152,0.14191,0.19583,0.0789068,0.137526,0.384915,0.662766,0.395961,0.544405,0.277941,0.238583,0.421665,0.615255,0.37437,0.669976,0.252161,0.205339,0.00700402,0.320757,0.175684,0.557426,0.0683259,0.0140534,0.16897,0.774958,0.595116,0.310122,0.871941,0.276454,0.11623,0.136209,0.781508,0.0846739,0.812726,0.364494,0.482876,0.12127,0.878505,0.830186,0.253814,0.784806,0.0521721,0.422093,0.433994,0.45494,0.621777,0.12684,0.993878,0.486895,0.401998,0.361265,0.481147,0.293661,0.973018,0.459859,0.979103,0.129834,0.795434,0.536899,0.0137767,0.808572,0.661137,0.212849,0.0608277,0.624186,0.832126,0.782286,0.044511,0.532322,0.0721771,0.780584,0.209379,0.0356501,0.839295,0.966822,0.610622,0.451947,0.653405,0.0401235,0.527086,0.452068,0.610768,0.136123,0.00959915,0.470981,0.570293,0.951676,0.944558,0.888714,0.872821,0.0744991,0.529597,0.502956,0.921553,0.767601,0.0048818,0.0249107,0.853128,0.48539,0.880185,0.85884,0.408241,0.798144,0.256793,0.577493,0.156946,0.311546,0.439165,0.641497,0.885155,0.799698,0.294452,0.724187,0.617316,0.262064,0.529036,0.873617,0.175396,0.372252,0.303183,0.337094,0.844467,0.571119,0.0774966,0.241023,0.534552,0.0962758,0.303257,0.807964,0.494462,0.958514,0.159175,0.497288,0.486205,0.0580885,0.517127,0.0147938,0.334451,0.767964,0.991951,0.367681,0.978169,0.984214,0.101348,0.577432,0.126377,0.121252,0.805308,0.953677,0.401535,0.992972,0.605524,0.688806,0.960275,0.237236,0.371689,0.977478,0.41377,0.522208,0.984384,0.704016,0.966807,0.686146,0.562022,0.843139,0.60268,0.608115,0.619747,0.347959,0.893441,0.00282979,0.0172824,0.179137,0.45182,0.476299,0.597259,0.700599,0.50296,0.15367,0.478963,0.149309,0.15622,0.101004,0.937258,0.212256,0.829816,0.118966,0.914003,0.730264,0.0469776,0.730922,0.0685947,0.175047,0.270157,0.254564,0.826169,0.00174689,0.633389,0.397308,0.894135,0.505653,0.499486,0.329041,0.614267,0.709404,0.112531,0.907097,0.109012,0.299712,0.112808,0.380961,0.516853,0.576524,0.279425,0.119569,0.0372128,0.68091,0.906714,0.484939,0.307052,0.664941,0.320596,0.857672,0.543908,0.740486,0.146823,0.0268429,0.390544,0.238231,0.0644739,0.270503,0.551266,0.394056,0.535273,0.522317,0.495397,0.000672042,0.129897,0.00055927,0.259203,0.61524,0.591802,0.0155542,0.926714,0.588449,0.142102,0.739554,0.580258,0.194806,0.937508,0.821411,0.611557,0.536786,0.491421,0.38117,0.894642,0.780754,0.63342,0.996841,0.380417,0.560578,0.765403,0.573076,0.888858,0.0061115,0.862532,0.909685,0.0768167,0.845302,0.26057,0.0475147,0.327702,0.887686,0.319372,0.194026,0.693386,0.904993,0.0652069,0.226272,0.237269,0.753558,0.0722994,0.182239,0.486016,0.550719,0.838188,0.538097,0.893647,0.916408,0.653234,0.810569,0.661594,0.904425,0.229888,0.188739,0.465085,0.831585,0.867911,0.303452,0.23582,0.613685,0.79555,0.392988,0.184753,0.399517,0.574513,0.751082,0.555719,0.738025,0.707468,0.5582,0.0672758,0.908218,0.808507,0.8255,0.0850148,0.864251,0.489474,0.632336,0.0682551,0.885476,0.351184,0.854863,0.498719,0.695565,0.068028,0.362221,0.68701,0.790532,0.526576,0.394247,0.196061,0.334257,0.944766,0.424588,0.860445,0.462354,0.709205,0.660302,0.566349,0.078723,0.23189,0.200441,0.239996,0.366001,0.549006,0.76954,0.3875,0.026627,0.176633,0.596774,0.540497,0.0789576,0.488348,0.261805,0.224333,0.772293,0.382683,0.595677,0.55654,0.964761,0.944956,0.689446,0.811676,0.0528383,0.145921,0.558539,0.945967,0.180482,0.561432,0.0173989,0.471596,0.0341601,0.0197456,0.327138,0.210187,0.834452,0.316352,0.694005,0.139368,0.510544,0.0296772,0.143556,0.853797,0.908957,0.234146,0.429066,0.964878,0.785328,0.836914,0.0534918,0.506985,0.672778,0.458064,0.0769396,0.719926,0.5339,0.77879,0.559183,0.915048,0.927615,0.58818,0.0658641,0.0439543,0.544144,0.619459,0.710504,0.163333,0.266482,0.547451,0.34268,0.164856,0.221704,0.659108,0.923448,0.832589,0.505245,0.686492,0.414792,0.210013,0.512268,0.532603,0.398615,0.743047,0.0111064,0.11685,0.185714,0.65779,0.652222,0.629987,0.912506,0.890334,0.70319,0.869775,0.436984,0.539707,0.950208,0.837743,0.211596,0.622393,0.529236,0.499109,0.0281354,0.33538,0.772264,0.87982,0.320777,0.860477,0.815734,0.621546,0.911565,0.0765873,0.722435,0.508647,0.911761,0.294063,0.494237,0.524154,0.266666,0.575151,0.15883,0.00956398,0.286867,0.0307092,0.704327,0.3632,0.0840733,0.399707,0.480173,0.19157,0.654867,0.488576,0.473642,0.549369,0.708676,0.240519,0.751795,0.175101,0.310696,0.610118,0.00903469,0.672448,0.858547,0.192619,0.245732,0.510194,0.481486,0.811902,0.0704545,0.831311,0.798183,0.61764,0.898254,0.322685,0.636218,0.791909,0.0853066,0.668814,0.969987,0.933309,0.134958,0.141028,0.767671,0.311574,0.509323,0.619224,0.894098,0.0699255,0.89434,0.131388,0.889125,0.89007,0.128909,0.124261,0.152255,0.519939,0.865997,0.0269476,0.383453,0.279359,0.795812,0.728742,0.276212,0.184279,0.23827,0.207616,0.00868183,0.930582,0.7467,0.84602,0.224541,0.936241,0.0295327,0.101521,0.875105,0.6968,0.914461,0.731134,0.274346,0.560375,0.313035,0.938587,0.936897,0.160101,0.649924,0.266685,0.262357,0.670879,0.671783,0.986052,0.561202,0.742155,0.543398,0.982747,0.245746,0.843139,0.429929,0.322009,0.0112564,0.646753,0.556009,0.777754,0.837146,0.330119,0.902629,0.0269321,0.0126603,0.311295,0.919473,0.54154,0.364977,0.0528525,0.573168,0.560562,0.603324,0.596172,0.172942,0.871795,0.540139,0.913363,0.348916,0.201953,0.201128,0.247747,0.938303,0.967168,0.429392,0.251718,0.310657,0.799558,0.355541,0.786115,0.211237,0.866407,0.578653,0.308877,0.957317,0.821182,0.687498,0.515543,0.449725,0.743026,0.899257,0.325864,0.819485,0.550761,0.889883,0.644085,0.543899,0.362549,0.630675,0.0161744,0.885514,0.864561,0.738409,0.889203,0.30117,0.927092,0.768051,0.421994,0.220613,0.862153,0.0395617,0.911186,0.875109,0.301026,0.0284867,0.166009,0.497054,0.581566,0.0184719,0.709533,0.913292,0.720313,0.567817,0.516308,0.713171,0.521398,0.739558,0.0598636,0.534731,0.358415,0.317614,0.0180373,0.312893,0.972998,0.135403,0.746661,0.576975,0.7157,0.180401,0.239548,0.436977,0.161184,0.0883829,0.696201,0.276615,0.727445,0.789789,0.476404,0.640881,0.356744,0.475595,0.399023,0.442944,0.782735,0.0693194,0.0964263,0.81434,0.407118,0.324887,0.637868,0.0439276,0.286923,0.859842,0.152476,0.627155,0.0557973,0.924332,0.113121,0.957199,0.936407,0.795113,0.566277,0.352156,0.953359,0.864144,0.651281,0.137508,0.415985,0.299962,0.481557,0.458305,0.367552,0.221856,0.322185,0.887343,0.484414,0.914657,0.196339,0.136247,0.576824,0.656908,0.228974,0.565725,0.592973,0.580957,0.980087,0.599479,0.997635,0.310159,0.472303,0.557685,0.182802,0.42699,0.0403756,0.313372,0.85726,0.855582,0.372267,0.936865,0.858327,0.691763,0.484,0.732911,0.786757,0.765899,0.959581,0.57208,0.218024,0.174541,0.712007,0.552065,0.783013,0.829755,0.948697,0.464789,0.00668871,0.880885,0.348489,0.656838,0.212743,0.908501,0.663521,0.693932,0.782317,0.266005,0.35624,0.144926,0.219744,0.189838,0.980173,0.973842,0.110439,0.605383,0.190758,0.335015,0.932224,0.548188,0.254465,0.406947,0.747938,0.342833,0.420232,0.896719,0.539182,0.306089,0.629513,0.63872,0.68685,0.291458,0.943141,0.830149,0.86847,0.643836,0.845831,0.195231,0.790362,0.209856,0.66279,0.531705,0.115678,0.0788749,0.843233,0.826764,0.328791,0.997038,0.487749,0.73892,0.100984,0.844681,0.700684,0.859495,0.833215,0.195851,0.658718,0.634395,0.0490194,0.0115235,0.476627,0.578089,0.134099,0.57475,0.918402,0.873444,0.82539,0.377405,0.66525,0.0290794,0.674411,0.272144,0.0326546,0.16757,0.82116,0.231923,0.0838408,0.927072,0.199534,0.233372,0.981361,0.443104,0.60105,0.170301,0.992559,0.479862,0.624998,0.251478,0.705896,0.0624813,0.469261,0.389086,0.306376,0.622543,0.721985,0.864102,0.546698,0.205873,0.612825,0.360726,0.719731,0.574254,0.342328,0.271159,0.74146,0.768991,0.114185,0.0580176,0.000815332,0.927726,0.246204,0.164278,0.748069,0.559945,0.89049,0.671027,0.440117,0.957491,0.262637,0.964339,0.99642,0.308119,0.89199,0.201134,0.773745,0.89464,0.0257738,0.922899,0.712211,0.340922,0.357406,0.720158,0.630832,0.467519,0.226994,0.447444,0.712122,0.331223,0.329325,0.377958,0.0719917,0.682721,0.735,0.345783,0.546081,0.789625,0.820557,0.64168,0.193174,0.272013,0.719943,0.525524,0.767717,0.445917,0.501956,0.524128,0.242836,0.402617,0.720642,0.879475,0.165147,0.706801,0.550189,0.621544,0.0582052,0.516653,0.0196147,0.888406,0.232237,0.940206,0.945619,0.0335525,0.336295,0.361384,0.952554,0.556862,0.868516,0.756711,0.353195,0.621844,0.240489,0.607423,0.312335,0.222465,0.874915,0.445947,0.288849,0.265779,0.914075,0.439996,0.895591,0.00537354,0.759176,0.131529,0.148358,|0.58284,0.879171,0.700569,0.677358,0.139126,0.587504,0.723339,0.771649,0.618312,0.0691459,0.195757,0.451951,0.392622,0.445272,0.655181,0.21006,0.478689,0.592274,0.508763,0.410779,0.61799,0.488853,0.360029,0.0212817,0.540192,0.40285,0.211758,0.616553,0.681177,0.316698,0.121929,0.595678,0.490013,0.350726,0.194721,0.135762,0.289764,0.242768,0.279321,0.31133,0.530412,0.810533,0.218042,0.404267,0.775555,0.378233,0.232542,0.864147,0.330724,0.578241,0.957709,0.391181,0.870154,0.0428272,0.970457,0.293034,0.385787,0.364308,0.340136,0.100386,0.518386,0.87103,0.712798,0.285639,0.158767,0.935366,0.488414,0.985922,0.134705,0.594946,0.088951,0.549874,0.531101,0.030852,0.309514,0.93552,0.570754,0.100092,0.24457,0.201031,0.976347,0.595078,0.791836,0.664029,0.0012269,0.12104,0.928494,0.139183,0.101441,0.0444515,0.712878,0.764962,0.57083,0.254902,0.496194,0.936719,0.889125,0.167686,0.453093,0.181117,0.109469,0.620199,0.488092,0.888565,0.241129,0.328169,0.956753,0.881948,0.867415,0.488389,0.99318,0.528181,0.895981,0.105197,0.0570243,0.686656,0.934883,0.289645,0.847373,0.840582,0.966151,0.639969,0.694258,0.112959,0.419829,0.262038,0.0650251,0.211308,0.875258,0.829736,0.066911,0.908475,0.675154,0.147266,0.248401,0.883986,0.400307,0.323402,0.982761,0.634404,0.330446,0.463193,0.671397,0.0861706,0.259671,0.42749,0.191227,0.17426,0.00841671,0.937409,0.687133,0.163766,0.363153,0.0553893,0.154824,0.918086,0.338126,0.474925,0.993435,0.74552,0.0334525,0.879148,0.6062,0.807845,0.0134923,0.424842,0.549547,0.782433,0.810393,0.512242,0.501392,0.101296,0.972456,0.320399,0.411915,0.216938,0.455373,0.338596,0.701931,0.960949,0.304771,0.264342,0.583816,0.373967,0.794792,0.0550335,0.494061,0.291557,0.212746,0.10348,0.044631,0.0917242,0.942855,0.471279,0.426215,0.553042,0.00285095,0.861929,0.484099,0.0925967,0.972915,0.754012,0.462812,0.113176,0.137659,0.254944,0.829408,0.811857,0.368544,0.889221,0.221856,0.0702854,0.989512,0.810704,0.486381,0.702429,0.615725,0.0105611,0.634509,0.673694,0.441731,0.87218,0.116721,0.153351,0.794249,0.00178862,0.619839,0.37186,0.44235,0.909673,0.657917,0.769542,0.72255,0.734198,0.504319,0.417311,0.817076,0.580452,0.121808,0.0926696,0.730348,0.423788,0.163512,0.734152,0.755686,0.59903,0.79117,0.706197,0.733234,0.821515,0.819954,0.142944,0.293883,0.651407,0.239897,0.719988,0.58425,0.755576,0.277939,0.495219,0.910896,0.878466,0.16629,0.172497,0.744725,0.643982,0.881091,0.420637,0.95947,0.947472,0.131207,0.189601,0.928338,0.730831,0.0572663,0.908034,0.701681,0.0100972,0.209263,0.743889,0.543601,0.154302,0.49183,0.621607,0.399272,0.781837,0.901568,0.225787,0.421352,0.655285,0.0343954,0.265748,0.658391,0.4077,0.434978,0.609001,0.603751,0.255523,0.0337911,0.268206,0.570435,0.995304,0.0447882,0.588725,0.319368,0.539412,0.673868,0.065344,0.685443,0.298549,0.758403,0.714721,0.440894,0.877999,0.826272,0.0039674,0.268385,0.149509,0.0981703,0.753202,0.554683,0.115817,0.834757,0.490597,0.0256884,0.832467,0.687811,0.310662,0.240473,0.14181,0.0408058,0.870496,0.137965,0.334774,0.340927,0.704032,0.897729,0.7803,0.0635322,0.0611629,0.896685,0.554046,0.11918,0.0995942,0.452646,0.983002,0.977155,0.817102,0.39306,0.220112,0.322842,0.475759,0.356462,0.379449,0.307727,0.917446,0.109407,0.360114,0.577615,0.413439,0.192818,0.167078,0.670607,0.577567,0.602678,0.555654,0.270677,0.827962,0.591843,0.867968,0.29131,0.0243782,0.488128,0.588734,0.82645,0.710267,0.0731861,0.353306,0.0206442,0.0540574,0.243343,0.529871,0.849712,0.294711,0.104847,0.504729,0.513891,0.941022,0.183915,0.0798469,0.494882,0.62089,0.770071,0.358301,0.622068,0.135148,0.19778,0.589241,0.815561,0.804336,0.790645,0.764672,0.0134906,0.924111,0.320199,0.37559,0.0525656,0.787965,0.176392,0.134699,0.185334,0.333799,0.711618,0.546564,0.315273,0.632369,0.944472,0.486147,0.451746,0.375098,0.415266,0.256613,0.638794,0.763483,0.352749,0.0506949,0.374023,0.364778,0.260374,0.319014,0.163256,0.554415,0.827638,0.458339,0.512398,0.791645,0.375951,0.848941,0.366637,0.0771506,0.797924,0.95443,0.471278,0.638998,0.0570051,0.667584,0.879583,0.477927,0.886516,0.793046,0.378491,0.0342013,0.965966,0.605841,0.955353,0.343337,0.876688,0.0351696,0.77963,0.0947307,0.318026,0.162667,0.732789,0.69609,0.401655,0.843418,0.757431,0.475315,0.124889,0.24262,0.197727,0.531058,0.390551,0.741084,0.785332,0.0747273,0.702278,0.396094,0.649082,0.873569,0.425714,0.422389,0.193722,0.085724,0.882273,0.454176,0.653551,0.239591,0.722839,0.233109,0.0553645,0.439332,0.790969,0.2807,0.0758377,0.465273,0.0222777,0.561322,0.59618,0.956638,0.709655,0.492212,0.474383,0.872574,0.966986,0.130187,0.823495,0.818502,0.558454,0.680759,0.874179,0.545005,0.212539,0.016269,0.0309495,0.707956,0.879892,0.80784,0.513026,0.418885,0.422694,0.224717,0.648737,0.605217,0.624903,0.817871,0.577922,0.190462,0.515869,0.0622763,0.755388,0.453723,0.0818011,0.0959523,0.887479,0.793231,0.276342,0.233914,0.0927842,0.0630247,0.762985,0.146047,0.389041,0.234637,0.278894,0.500571,0.968234,0.0959676,0.0985715,0.442667,0.0825186,0.365553,0.868845,0.896836,0.561788,0.290378,0.225434,0.323861,0.544438,0.804091,0.511277,0.0352061,0.282854,0.295796,0.752981,0.662459,0.65799,0.070073,0.0567161,0.48601,0.142703,0.661574,0.202106,0.403146,0.870458,0.195703,0.491713,0.737542,0.0659382,0.267932,0.353159,0.541466,0.415517,0.857325,0.455563,0.0486314,0.313046,0.131242,0.757139,0.063347,0.871985,0.48592,0.452685,0.50572,0.0330411,0.855646,0.0628448,0.762049,0.960504,0.073085,0.713028,0.453778,0.369725,0.275865,0.265141,0.699027,0.645124,0.417303,0.483325,0.297219,0.20955,0.61245,0.465396,0.381128,0.955515,0.400033,0.0766051,0.172181,0.993037,0.436215,0.924639,0.190494,0.361744,0.696135,0.131683,0.709724,0.294918,0.210107,0.622707,0.669512,0.829993,0.0439209,0.275402,0.36004,0.911197,0.537867,0.954328,0.956424,0.611389,0.252364,0.112885,0.0613452,0.321662,0.120871,0.149779,0.0554383,0.688963,0.269408,0.886785,0.277833,0.123331,0.509932,0.776619,0.259966,0.831893,0.964212,0.452938,0.479694,0.914211,0.08848,0.503235,0.893692,0.232486,0.230121,0.31537,0.894995,0.781115,0.0255819,0.359607,0.573538,0.54535,0.26555,0.0158849,0.49037,0.667239,0.480755,0.579627,0.90959,0.348271,0.11168,0.560746,0.30386,0.97196,0.84048,0.194642,0.46751,0.130677,0.231511,0.506661,0.731671,0.520126,0.159095,0.900525,0.523918,0.187633,0.662014,0.072206,0.919453,0.21748,0.746483,0.418274,0.584821,0.234144,0.30236,0.178219,0.188703,0.0671618,0.92175,0.466056,0.0956293,0.122369,0.114219,0.151645,0.40474,0.543554,0.648514,0.836263,0.248366,0.760845,0.625252,0.834968,0.2737,0.932277,0.239007,0.989596,0.727907,0.57654,0.608305,0.129325,0.527119,0.384153,0.877527,0.558756,0.467171,0.648073,0.360894,0.752449,0.0859733,0.204558,0.650124,0.422407,0.491586,0.792868,0.838278,0.645096,0.611545,0.853718,0.556541,0.500323,0.260726,0.123332,0.70673,0.0894873,0.866305,0.036629,0.686349,0.810535,0.642068,0.712608,0.976702,0.636926,0.590611,0.713734,0.350284,0.98401,0.944056,0.31556,0.019914,0.281203,0.138648,0.438452,0.404424,0.20787,0.874895,0.721864,0.275218,0.938046,0.058383,0.368737,0.163345,0.205294,0.378133,0.826824,0.816566,0.600029,0.422215,0.0257862,0.789274,0.458981,0.421555,0.397849,0.888256,0.763506,0.0992205,0.301734,0.0573536,0.736529,0.276313,0.870594,0.38906,0.26281,0.543121,0.744071,0.384586,0.144415,0.607559,0.952237,0.791364,0.391763,0.117748,0.794339,0.764777,0.451734,0.228438,0.606049,0.999784,0.0984048,0.956037,0.708817,0.252161,0.460604,0.980125,0.0698392,0.876928,0.830092,0.165398,0.0126605,0.615864,0.89576,0.0307502,0.753268,0.035403,0.911324,0.335919,0.377557,0.195903,0.277644,0.602952,0.166612,0.76254,0.274615,0.355699,0.287374,0.0175854,0.137227,0.103146,0.448029,0.806733,0.801854,0.0285545,0.328627,0.732832,0.256468,0.159556,0.714022,0.877747,0.718393,0.3126,0.312275,0.368471,0.278896,0.155213,0.3221,0.836395,0.636313,0.844103,0.287311,0.146883,0.340292,0.841623,0.569664,0.497681,0.435053,0.254489,0.304905,0.982969,0.0959588,0.70665,0.387439,0.432968,0.0818227,0.530209,0.464135,0.935674,0.608359,0.353494,0.849418,0.945817,0.923618,0.991768,0.795933,0.431425,0.275317,0.60745,0.604258,0.762804,0.503158,0.598204,0.366318,0.260679,0.21598,0.542357,0.387768,0.774683,0.07845,0.282596,0.403178,0.690602,0.739979,0.890064,0.817948,0.284427,0.145202,0.875951,0.922137,0.0432451,0.17306,0.252289,0.248745,0.708568,0.748698,0.249376,0.798404,0.918304,0.417651,0.952662,0.637172,0.272074,0.442415,0.768744,0.25973,0.378816,0.190239,0.761335,0.495891,0.614696,0.660143,0.851387,0.492262,0.463697,0.92696,0.88697,0.0819685,0.824609,0.249479,0.866594,0.134908,0.169527,0.0641978,0.992573,0.0795208,0.608986,0.560597,0.836931,0.592735,0.235723,0.732147,0.617198,0.164708,0.309181,0.726787,0.793769,0.968886,0.348677,0.114166,0.918242,0.819747,0.324279,0.711931,0.154252,0.259861,0.368713,0.551836,0.937967,0.0262634,0.360232,0.192901,0.465311,0.551566,0.892722,0.863826,0.410083,0.277673,0.613564,0.192511,0.616791,0.183981,0.554366,0.725056,0.810221,0.724518,0.269766,0.8369,0.356526,0.204635,0.469598,0.929576,0.893188,0.0707189,0.297768,|0.711852,0.600743,0.66881,0.709368,0.69308,0.0993515,0.0965424,0.917634,0.905408,0.891666,0.509745,0.905964,0.498517,0.606828,0.6883,0.597593,0.932883,0.470035,0.820483,0.498756,0.410965,0.515812,0.931422,0.837448,0.467562,0.676369,0.137015,0.219172,0.742515,0.158623,0.545216,0.122251,0.0210627,7.12872e-05,0.1349,0.696849,0.452715,0.787506,0.544199,0.554189,0.654336,0.917752,0.339939,0.319591,0.86432,0.208073,0.792131,0.257855,0.222466,0.242177,0.0275323,0.664669,0.784673,0.443956,0.758171,0.488642,0.669406,0.80593,0.659264,0.512899,0.485319,0.315548,0.702658,0.266855,0.159013,0.123143,0.565091,0.420843,0.393299,0.555231,0.12418,0.779388,0.381482,0.958407,0.667165,0.0759171,0.929338,0.0230396,0.326885,0.588589,0.378569,0.330505,0.152466,0.0528642,0.182842,0.514847,0.616352,0.629469,0.444159,0.727068,0.0721738,0.305401,0.0217304,0.86051,0.240756,0.203809,0.0537189,0.646913,0.832171,0.36007,0.267389,0.876774,0.256329,0.748217,0.913181,0.402369,0.271217,0.817117,0.831093,0.134876,0.13753,0.787156,0.706767,0.831786,0.844503,0.575032,0.370219,0.704968,0.422959,0.48323,0.145304,0.212802,0.800799,0.45158,0.614018,0.419293,0.789013,0.0286828,0.158392,0.716729,0.574165,0.23321,0.559879,0.0687162,0.9882,0.355666,0.646577,0.65467,0.0859399,0.356725,0.603281,0.518919,0.357003,0.632534,0.708228,0.304982,0.418767,0.7618,0.709543,0.254197,0.342953,0.181333,0.503637,0.298767,0.640888,0.551062,0.715605,0.193136,0.739618,0.939534,0.0830731,0.613689,0.383717,0.235258,0.174259,0.994137,0.272186,0.614185,0.862809,0.200485,0.867296,0.852969,0.28572,0.111609,0.109487,0.244619,0.804125,0.392565,0.201438,0.883013,0.183463,0.00800943,0.778342,0.274387,0.647621,0.116161,0.380472,0.956448,0.0348223,0.932018,0.902979,0.0436026,0.194254,0.797084,0.137771,0.0704847,0.236946,0.00759792,0.752329,0.827802,0.507488,0.727371,0.926442,0.0731727,0.852546,0.58473,0.95927,0.337046,0.304463,0.716788,0.251379,0.421552,0.561599,0.918752,0.589425,0.508608,0.130603,0.103473,0.19944,0.761128,0.87881,0.427246,0.269517,0.161426,0.441921,0.323296,0.39952,0.739379,0.0901551,0.170061,0.988088,0.92381,0.458372,0.301576,0.10287,0.428657,0.0648687,0.787915,0.411688,0.0825143,0.863412,0.903306,0.963323,0.0265441,0.958924,0.696783,0.443212,0.947477,0.310707,0.775451,0.932088,0.584844,0.140904,0.739371,0.323281,0.859869,0.85095,0.736601,0.736888,0.976163,0.393071,0.0405332,0.399385,0.736307,0.273066,0.475022,0.517885,0.828012,0.408525,0.185152,0.618763,0.957923,0.533935,0.912325,0.372193,0.363123,0.215468,0.724306,0.329709,0.133162,0.46256,0.677172,0.711833,0.0670128,0.493493,0.690904,0.285751,0.0701606,0.871958,0.156632,0.927415,0.265059,0.227407,0.573321,0.902529,0.329876,0.819479,0.668027,0.292544,0.0223861,0.874771,0.750568,0.309059,0.100869,0.296037,0.976676,0.847201,0.187638,0.396124,0.111041,0.246051,0.397848,0.0526563,0.158255,0.879891,0.509997,0.927125,0.046541,0.724698,0.90602,0.604727,0.260652,0.352667,0.502867,0.37977,0.126255,0.186898,0.802715,0.103489,0.582364,0.120433,0.40927,0.709805,0.852167,0.968732,0.621558,0.150501,0.906905,0.235011,0.814482,0.993149,0.274275,0.913415,0.311799,0.776468,0.106627,0.709813,0.187345,0.0974616,0.911306,0.963719,0.493297,0.497425,0.233463,0.498958,0.809486,0.540998,0.061062,0.445835,0.325839,0.886052,0.315342,0.339361,0.593436,0.131293,0.453932,0.499794,0.495631,0.149389,0.0906387,0.262297,0.883865,0.0411232,0.492613,0.182056,0.805552,0.800206,0.910755,0.0671123,0.262769,0.878472,0.202829,0.68101,0.452177,0.604589,0.888773,0.299413,0.393034,0.590201,0.906352,0.957913,0.139146,0.446091,0.253792,0.811047,0.189892,0.80864,0.47222,0.520847,0.395709,0.780328,0.326182,0.022358,0.391086,0.802628,0.730143,0.0544153,0.205931,0.0901767,0.380762,0.443211,0.565762,0.79998,0.52801,0.606601,0.739327,0.246546,0.782105,0.909916,0.895063,0.143703,0.982342,0.746423,0.663769,0.783621,0.394035,0.902911,0.278748,0.5163,0.369371,0.870893,0.86679,0.944174,0.252108,0.80654,0.737217,0.483559,0.152099,0.190473,0.547948,0.136771,0.530977,0.899711,0.696991,0.813935,0.0490997,0.775504,0.502685,0.233529,0.123197,0.414781,0.545392,0.994077,0.274483,0.8827,0.168149,0.59937,0.493678,0.836693,0.0516143,0.144376,0.653062,0.608921,0.561646,0.844957,0.212947,0.731107,0.198622,0.731336,0.544782,0.621657,0.851773,0.889595,0.889664,0.818776,0.0716019,0.217982,0.455893,0.288004,0.986137,0.712447,0.369975,0.711787,0.824523,0.109977,0.425469,0.222821,0.527177,0.19094,0.130178,0.131219,0.0181679,0.374202,0.034847,0.686693,0.563895,0.587041,0.628321,0.807396,0.0946872,0.115495,0.198115,0.279115,0.903475,0.518711,0.500812,0.106518,0.72684,0.396481,0.836206,0.739723,0.355998,0.921371,0.457834,0.379216,0.059209,0.336269,0.461103,0.412748,0.520578,0.41735,0.0714034,0.315967,0.560044,0.315847,0.394609,0.087222,0.0372691,0.676853,0.425619,0.291234,0.613145,0.633793,0.576876,0.0958623,0.109766,0.930135,0.936318,0.421304,0.735004,0.378715,0.802428,0.934774,0.990803,0.877814,0.806591,0.538906,0.795364,0.743601,0.0032919,0.860317,0.588248,0.412121,0.197103,0.156957,0.29689,0.612599,0.898083,0.236105,0.594727,0.615079,0.783074,0.160162,0.999512,0.655243,0.26898,0.905257,0.508533,0.397407,0.709909,0.161172,0.45345,0.331038,0.881812,0.292997,0.488267,0.121504,0.531369,0.1541,0.326799,0.0496827,0.872141,0.0975811,0.873212,0.205775,0.752359,0.11454,0.374854,0.187207,0.857794,0.713303,0.462546,0.785819,0.0602936,0.869906,0.376389,0.482111,0.579862,0.613069,0.0143088,0.167219,0.842262,0.8161,0.774979,0.30343,0.908525,0.101318,0.523929,0.165454,0.868985,0.487963,0.568752,0.673363,0.460068,0.685605,0.379457,0.155408,0.920263,0.351591,0.446938,0.269227,0.904072,0.0391285,0.776264,0.226311,0.631463,0.850147,0.655752,0.791664,0.264746,0.0393157,0.495062,0.441478,0.0719928,0.52206,0.794058,0.763134,0.10856,0.500366,0.591709,0.227817,0.549441,0.532982,0.930508,0.729025,0.198925,0.333009,0.0073325,0.333618,0.527196,0.493177,0.161122,0.177868,0.871105,0.275887,0.509747,0.288429,0.453905,0.966178,0.911467,0.217009,0.150719,0.107676,0.384095,0.516489,0.892078,0.00819445,0.427884,0.0863479,0.549531,0.962161,0.826503,0.465161,0.762079,0.956597,0.523692,0.556747,0.83072,0.446893,0.628752,0.554913,0.510953,0.0888405,0.640856,0.760688,0.0399177,0.862848,0.0753435,0.0589358,0.570801,0.795649,0.707233,0.64503,0.289674,0.188807,0.0242581,0.386299,0.0160814,0.860519,0.225469,0.541132,0.24489,0.0457014,0.870678,0.568154,0.423502,0.820567,0.73229,0.40348,0.299697,0.170128,0.171992,0.653553,0.680962,0.0718977,0.331162,0.660561,0.757483,0.927445,0.28454,0.443344,0.47508,0.376676,0.967273,0.179584,0.34295,0.757808,0.492061,0.326862,0.478681,0.896136,0.196429,0.434391,0.659527,0.522085,0.546876,0.80264,0.3658,0.993024,0.0646622,0.61938,0.874181,0.403698,0.599359,0.389431,0.93677,0.898859,0.778851,0.78235,0.187261,0.180163,0.559793,0.0354791,0.29351,0.856415,0.539346,0.942693,0.527567,0.658271,0.843324,0.00635988,0.391445,0.885941,0.657405,0.187848,0.58834,0.960742,0.269416,0.297689,0.412658,0.000600576,0.935295,0.188501,0.502819,0.118631,0.92929,0.176461,0.729923,0.166975,0.787725,0.5438,0.125356,0.550924,0.109023,0.627207,0.108868,0.52848,0.515294,0.328784,0.531316,0.742041,0.00928676,0.479478,0.982412,0.501168,0.878644,0.144295,0.363436,0.11862,0.308516,0.784054,0.516101,0.110757,0.0659415,0.541354,0.970446,0.162741,0.149444,0.245043,0.458395,0.765215,0.333126,0.588257,0.505337,0.444258,0.018715,0.147178,0.754517,0.925891,0.294313,0.619284,0.631678,0.408716,0.980455,0.957548,0.945212,0.870941,0.417093,0.574538,0.702327,0.891898,0.224047,0.000991225,0.708855,0.220657,0.25741,0.837304,0.631789,0.0745474,0.952842,0.139376,0.842391,0.107061,0.650577,0.260486,0.175644,0.000829279,0.788309,0.838517,0.945839,0.670004,0.154985,0.406703,0.270989,0.870989,0.922854,0.281523,0.835813,0.476571,0.777508,0.876207,0.899809,0.543758,0.090219,0.295996,0.571741,0.965982,0.656821,0.887121,0.10471,0.3098,0.797628,0.55503,0.57247,0.330238,0.410843,0.511523,0.85069,0.111739,0.343726,0.857982,0.770547,0.390642,0.567905,0.794686,0.57829,0.128315,0.090059,0.495357,0.0608079,0.592845,0.211218,0.303381,0.490526,0.957257,0.192681,0.521067,0.228014,0.667711,0.865814,0.300446,0.498627,0.955411,0.760126,0.334732,0.934935,0.743708,0.0482154,0.512131,0.15288,0.593498,0.2402,0.133401,0.85,0.60607,0.759074,0.81948,0.968634,0.908119,0.511764,0.604447,0.964844,0.654912,0.3322,0.964177,0.956504,0.774042,0.298648,0.750094,0.446711,0.697822,0.476948,0.715282,0.00104326,0.0609579,0.696604,0.837348,0.732621,0.250448,0.539575,0.895089,0.702516,0.844819,0.524574,0.458338,0.0652723,0.93631,0.889557,0.766725,0.651552,0.834171,0.160013,0.0660458,0.2997,0.783943,0.634819,0.303757,0.881297,0.0386928,0.40093,0.520554,0.17196,0.739847,0.298544,0.386676,0.374078,0.618027,0.0482745,0.0110514,0.682359,0.12728,0.516039,0.492027,0.151817,0.287594,0.773156,0.735393,0.536795,0.267043,0.604117,0.30931,0.438671,0.142499,0.441811,0.889156,0.945786,0.891362,0.520907,0.726506,0.511843,0.721081,0.571164,0.44924,0.575141,0.693245,0.624143,0.758863,0.756448,0.780307,0.742057,|0.0878447,0.706864,0.271598,0.179252,0.754351,0.748064,0.896747,0.966839,0.628727,0.43465,0.686366,0.711587,0.844132,0.152522,0.567204,0.0543228,0.967589,0.601031,0.807473,0.922773,0.983221,0.819971,0.376937,0.241364,0.553294,0.436879,0.993216,0.218801,0.381205,0.583657,0.58295,0.669531,0.289816,0.158411,0.526566,0.0589434,0.807142,0.197939,0.0477028,0.784028,0.277964,0.713143,0.399229,0.103932,0.987235,0.235823,0.307932,0.350311,0.837257,0.377102,0.489557,0.337183,0.367802,0.0132958,0.157697,0.379323,0.0862612,0.665649,0.683527,0.100636,0.580747,0.311433,0.713495,0.575082,0.610549,0.931434,0.390136,0.797335,0.133264,0.623298,0.0580887,0.443329,0.863085,0.841012,0.942258,0.262943,0.020324,0.364916,0.860375,0.531066,0.184221,0.346674,0.277642,0.816726,0.717092,0.14924,0.886031,0.859319,0.881523,0.611501,0.232682,0.108134,0.304608,0.837975,0.285127,0.325288,0.306701,0.0383357,0.708746,0.025956,0.99033,0.527789,0.0913653,0.351585,0.07825,0.53966,0.338064,0.0718179,0.747333,0.727418,0.181958,0.736791,0.934873,0.449505,0.234633,0.741072,0.871654,0.0600966,0.582651,0.373656,0.25314,0.157142,0.455844,0.562568,0.330163,0.541636,0.68539,0.589627,0.0289965,0.401507,0.52755,0.326425,0.457112,0.8669,0.36245,0.0321863,0.906238,0.907648,0.258393,0.633322,0.45954,0.66698,0.118109,0.660658,0.00179744,0.444503,0.0462738,0.406227,0.0837362,0.148826,0.634243,0.734913,0.482944,0.815733,0.0181046,0.621952,0.140608,0.326334,0.0523927,0.575299,0.572834,0.493745,0.779981,0.136235,0.849904,0.163609,0.410283,0.71974,0.527445,0.251656,0.0220156,0.710771,0.476007,0.930916,0.0057658,0.843307,0.427603,0.729949,0.728186,0.738138,0.419262,0.547566,0.469904,0.150496,0.476438,0.754334,0.925419,0.0082826,0.986746,0.382489,0.764206,0.891773,0.18178,0.437695,0.99199,0.0468348,0.25516,0.104294,0.653402,0.749712,0.715159,0.318417,0.798505,0.037338,0.26095,0.899125,0.436084,0.1823,0.987666,0.600674,0.486092,0.0180936,0.592322,0.734503,0.259457,0.36235,0.563297,0.879059,0.571598,0.498245,0.608355,0.753807,0.651906,0.827228,0.431263,0.824856,0.808863,0.324741,0.140515,0.266109,0.854056,0.569489,0.910384,0.322672,0.815609,0.660019,0.411315,0.710629,0.964265,0.790124,0.131,0.101108,0.840737,0.540678,0.438847,0.238873,0.197371,0.264115,0.0297505,0.724249,0.879708,0.305112,0.427402,0.622019,0.450786,0.99674,0.417559,0.0325553,0.489152,0.924042,0.640117,0.85095,0.495754,0.531964,0.314528,0.958013,0.583821,0.400216,0.209574,0.982349,0.455766,0.447388,0.0493991,0.112384,0.452793,0.440626,0.186776,0.24993,0.68509,0.275003,0.791302,0.516421,0.259181,0.570685,0.589094,0.981589,0.238477,0.825893,0.602107,0.140781,0.229303,0.90248,0.256981,0.978109,0.321452,0.21999,0.420337,0.557171,0.596168,0.619277,0.814475,0.312951,0.642232,0.743849,0.0205923,0.5981,0.209352,0.450339,0.10878,0.0446218,0.416078,0.908239,0.694786,0.0692003,0.733709,0.154539,0.479547,0.769755,0.926201,0.313742,0.622366,0.281101,0.0662986,0.566448,0.482917,0.949908,0.544447,0.187469,0.0401195,0.373607,0.986792,0.915479,0.496538,0.816836,0.679943,0.686512,0.631071,0.931521,0.0447665,0.774049,0.481913,0.498435,0.0950905,0.4102,0.7433,0.558569,0.773125,0.450928,0.874443,0.745528,0.801037,0.513242,0.97888,0.891117,0.0166698,0.897743,0.384365,0.750358,0.265588,0.842005,0.658526,0.0132099,0.642161,0.114465,0.652234,0.735225,0.883499,0.401245,0.905979,0.766935,0.880991,0.368923,0.16145,0.947672,0.778684,0.710044,0.435194,0.239607,0.412524,0.420956,0.126456,0.958626,0.795372,0.576794,0.507391,0.90661,0.832537,0.581435,0.790763,0.138388,0.80067,0.615225,0.449867,0.665949,0.47439,0.965011,0.708462,0.00177532,0.902459,0.591367,0.105182,0.481872,0.997791,0.699722,0.852279,0.580471,0.0377028,0.706684,0.716998,0.941415,0.919485,0.304727,0.0471603,0.62848,0.686068,0.220781,0.915128,0.692349,0.857853,0.847777,0.269223,0.290556,0.188094,0.153457,0.618669,0.436193,0.0871872,0.224489,0.563355,0.146784,0.117926,0.854612,0.914267,0.74033,0.389816,0.770025,0.35885,0.566932,0.959338,0.837635,0.0177323,0.0199834,0.21437,0.356231,0.0701861,0.747893,0.554554,0.96276,0.681977,0.925481,0.797244,0.20415,0.118396,0.269573,0.903306,0.842157,0.954625,0.698752,0.645959,0.955978,0.114942,0.646024,0.256224,0.696612,0.506936,0.733365,0.428537,0.959065,0.0354427,0.773431,0.847415,0.114284,0.290057,0.875731,0.713316,0.502789,0.146607,0.743612,0.366299,0.532184,0.254748,0.339753,0.895342,0.937935,0.865565,0.262516,0.627224,0.993078,0.370075,0.466252,0.134527,0.751939,0.503054,0.31274,0.646987,0.589624,0.5342,0.443594,0.0571199,0.520938,0.256417,0.161453,0.551594,0.785444,0.73265,0.979631,0.940889,0.643694,0.420305,0.34233,0.531456,0.0374705,0.752379,0.925189,0.000972986,0.593307,0.0625094,0.361305,0.0630721,0.379918,0.603534,0.827476,0.450844,0.644609,0.876686,0.502411,0.816147,0.460818,0.994998,0.975595,0.133342,0.0380185,0.561779,0.393824,0.337475,0.911736,0.654573,0.151807,0.775633,0.521669,0.786828,0.452729,0.419845,0.724901,0.693083,0.324105,0.837297,0.993161,0.15952,0.965693,0.12839,0.568115,0.301574,0.780751,0.124043,0.270758,0.218576,0.261989,0.0758489,0.603966,0.614155,0.68009,0.0652575,0.109913,0.664046,0.443619,0.314046,0.566884,0.243137,0.506255,0.88586,0.702214,0.925377,0.70235,0.159276,0.350456,0.0186573,0.4484,0.273686,0.200748,0.471717,0.531587,0.402785,0.742168,0.413616,0.49429,0.200158,0.129001,0.82877,0.935076,0.402826,0.756455,0.36696,0.215167,0.136641,0.582105,0.763881,0.588981,0.0890781,0.807505,0.331412,0.071806,0.253989,0.607852,0.411259,0.17429,0.463896,0.411613,0.157143,0.727692,0.36812,0.275464,0.483321,0.678441,0.506812,0.370176,0.835789,0.411054,0.602578,0.776495,0.676389,0.595209,0.192493,0.623863,0.369054,0.714528,0.12056,0.564383,0.978747,0.481277,0.760671,0.942561,0.0891544,0.559579,0.0378145,0.62758,0.704319,0.786887,0.508879,0.428977,0.439474,0.212858,0.935175,0.743062,0.14961,0.0163428,0.333191,0.366848,0.558776,0.868814,0.702873,0.765195,0.695262,0.97416,0.644401,0.726738,0.157784,0.497639,0.99547,0.116228,0.391892,0.803342,0.0134921,0.677062,0.218287,0.431624,0.0768862,0.899941,0.529899,0.62371,0.165524,0.721619,0.381698,0.970101,0.611936,0.105166,0.0813805,0.657887,0.499752,0.87543,0.5638,0.561757,0.564197,0.128656,0.283071,0.382681,0.457103,0.212728,0.969759,0.891892,0.610442,0.0653211,0.472446,0.162463,0.153333,0.913645,0.0688115,0.397058,0.283933,0.551955,0.654245,0.51726,0.636063,0.492517,0.666106,0.698013,0.166017,0.970854,0.531078,0.458655,0.274875,0.174187,0.760636,0.540567,0.945813,0.908988,0.477205,0.555938,0.650806,0.649299,0.442477,0.481602,0.509807,0.109975,0.744094,0.564947,0.26559,0.939129,0.176863,0.37079,0.283,0.378672,0.902858,0.958642,0.802909,0.890959,0.429031,0.528846,0.829442,0.505058,0.576179,0.315211,0.0543722,0.581499,0.109902,0.349709,0.224651,0.0536712,0.633347,0.741778,0.790417,0.413418,0.917549,0.423065,0.634094,0.156853,0.225922,0.709869,0.405468,0.298204,0.307454,0.368771,0.707749,0.0931169,0.903002,0.897625,0.550107,0.921484,0.618251,0.0516884,0.15404,0.314929,0.279567,0.0394472,0.362509,0.294287,0.591777,0.332268,0.343657,0.317304,0.89307,0.128849,0.487879,0.824359,0.275175,0.280497,0.839762,0.871259,0.481313,0.968683,0.0165486,0.815343,0.814516,0.170329,0.120382,0.709043,0.232178,0.139212,0.0592239,0.534346,0.699656,0.43447,0.650096,0.595071,0.893375,0.141268,0.233107,0.816969,0.0170454,0.808422,0.438858,0.231183,0.562554,0.322097,0.550075,0.203046,0.955095,0.0463086,0.95435,0.565749,0.772562,0.54873,0.423685,0.966104,0.105927,0.21113,0.567674,0.204009,0.343876,0.683279,0.287242,0.717673,0.509769,0.38161,0.696473,0.169524,0.741863,0.480295,0.393284,0.403009,0.13993,0.724456,0.604988,0.980973,0.365276,0.908233,0.423178,0.242678,0.622941,0.0870662,0.0904925,0.704538,0.49697,0.191023,0.426771,0.233767,0.150546,0.0705292,0.338049,0.164257,0.690513,0.349849,0.360689,0.185028,0.487992,0.670232,0.537318,0.77421,0.964609,0.456457,0.691783,0.848566,0.0190334,0.917209,0.604686,0.40979,0.0360372,0.0680583,0.0709175,0.0608825,0.759183,0.172199,0.0285844,0.116498,0.179296,0.328486,0.505949,0.345108,0.196594,0.382689,0.612576,0.97748,0.910377,0.354645,0.995593,0.0624352,0.402878,0.847712,0.118056,0.927713,0.425192,0.220495,0.476363,0.752351,0.911285,0.705341,0.848275,0.723077,0.970427,0.607188,0.354979,0.0945491,0.0332281,0.332455,0.617719,0.114663,0.703065,0.668043,0.294392,0.201353,0.150306,0.709338,0.621262,0.277444,0.891591,0.753137,0.816574,0.478313,0.154257,0.272882,0.795753,0.187449,0.166951,0.194552,0.734941,0.538408,0.0337614,0.750271,0.118377,0.948327,0.751713,0.179772,0.158253,0.0319638,0.794802,0.203854,0.264005,0.686976,0.0539941,0.931922,0.00592673,0.245461,0.78165,0.558719,0.953373,0.513871,0.519715,0.0938631,0.215657,0.611613,0.416059,0.105751,0.997457,0.176972,0.367231,0.383498,0.0171719,0.798401,0.120779,0.920524,0.013253,0.773966,0.511664,0.694941,0.447627,0.204753,0.192097,0.161467,0.281591,0.80335,0.620353,0.556196,0.636991,0.340375,0.627515,0.386472,0.825875,0.269217,0.198726,0.266742,0.798268,0.203046,0.864475,0.00181466,0.757837,0.837333,0.644394,0.878258,0.175163,0.378417,|0.434202,0.668969,0.292119,0.852589,0.777351,0.963595,0.517947,0.827485,0.0257409,0.917864,0.382536,0.846479,0.958135,0.0865051,0.652586,0.557679,0.383314,0.46734,0.0296339,0.149625,0.688006,0.163335,0.527239,0.265965,0.497587,0.988827,0.621477,0.492206,0.332025,0.468988,0.253544,0.427549,0.822316,0.120828,0.227117,0.685646,0.318579,0.589602,0.0930015,0.735475,0.580884,0.0248323,0.843043,0.0940671,0.571978,0.994308,0.625253,0.812628,0.799737,0.136149,0.331456,0.33034,0.910755,0.580249,0.912826,0.897684,0.912272,0.93718,0.054605,0.155286,0.557781,0.695779,0.33064,0.615862,0.408931,0.907869,0.332524,0.411695,0.298202,0.946096,0.306871,0.180111,0.896934,0.854594,0.659312,0.157396,0.970383,0.186319,0.180957,0.282868,0.0692739,0.674589,0.932428,0.422037,0.0313234,0.309102,0.345325,0.528794,0.936507,0.377078,0.711451,0.0145549,0.0958754,0.534397,0.134684,0.880038,0.753561,0.452293,0.555032,0.666707,0.872742,0.638248,0.747289,0.327604,0.303211,0.6361,0.0440245,0.230762,0.223476,0.793632,0.737646,0.960155,0.800486,0.944786,0.483452,0.139024,0.727771,0.428933,0.0986102,0.599118,0.893301,0.464762,0.503096,0.0456765,0.785962,0.400701,0.933765,0.206627,0.467411,0.340889,0.323462,0.0718024,0.964213,0.645925,0.619528,0.703157,0.615447,0.88679,0.489762,0.639613,0.0527125,0.798857,0.855252,0.547092,0.328182,0.502146,0.29645,0.130398,0.656608,0.394706,0.190879,0.401744,0.903457,0.241801,0.92096,0.0426309,0.446969,0.60486,0.722785,0.962638,0.176713,0.54676,0.770059,0.524361,0.754449,0.673245,0.588208,0.77617,0.943034,0.703996,0.732217,0.791914,0.875142,0.200066,0.652349,0.65793,0.548971,0.814885,0.306381,0.674655,0.740337,0.524225,0.486179,0.466604,0.414026,0.101292,0.251271,0.497127,0.685502,0.333811,0.790865,0.0457154,0.0966263,0.144302,0.82594,0.474701,0.925833,0.169019,0.532197,0.16751,0.764368,0.202342,0.158938,0.497671,0.51235,0.134157,0.828893,0.411118,0.0813061,0.866309,0.506893,0.280816,0.186011,0.993008,0.754808,0.99084,0.374732,0.567886,0.968473,0.018478,0.128892,0.93229,0.681013,0.502532,0.937243,0.381606,0.376001,0.730809,0.364902,0.586568,0.85458,0.10903,0.809649,0.783658,0.89046,0.0100101,0.609857,0.359028,0.506801,0.850393,0.0595405,0.750174,0.878363,0.0118722,0.473489,0.75324,0.313881,0.23644,0.761634,0.680955,0.783406,0.104884,0.0296614,0.539515,0.0752819,0.879188,0.637999,0.464517,0.170783,0.225869,0.19059,0.660651,0.162473,0.631456,0.560408,0.152104,0.316592,0.347492,0.771987,0.613611,0.0802317,0.139992,0.76797,0.324455,0.580109,0.575687,0.325072,0.0596286,0.825435,0.042246,0.109541,0.776441,0.753899,0.26955,0.437407,0.524094,0.228707,0.522171,0.536939,0.104993,0.543206,0.0349965,0.0622242,0.442299,0.639835,0.366772,0.347888,0.546957,0.739611,0.104367,0.431407,0.163676,0.302487,0.0319765,0.521699,0.73583,0.386646,0.842891,0.608051,0.97653,0.0607814,0.0509756,0.00152087,0.769024,0.055641,0.759531,0.586158,0.470836,0.153686,0.0884049,0.556225,0.447192,0.00481284,0.744817,0.122843,0.164381,0.962236,0.759964,0.218038,0.871028,0.218628,0.362293,0.179065,0.12812,0.173461,0.127954,0.341878,0.572497,0.797289,0.461224,0.523658,0.675038,0.183558,0.877687,0.714179,0.832412,0.866342,0.914852,0.13021,0.177943,0.305929,0.515525,0.884053,0.422067,0.550674,0.774697,0.489682,0.163673,0.239559,0.762958,0.0899687,0.202374,0.330245,0.131555,0.370202,0.840294,0.965155,0.896983,0.984493,0.343031,0.137397,0.980965,0.971569,0.0906014,0.471843,0.602952,0.600613,0.00379896,0.165989,0.132457,0.947784,0.376847,0.176213,0.0327969,0.768633,0.680225,0.210563,0.272906,0.0711153,0.143141,0.354083,0.340956,0.537006,0.437026,0.478948,0.689827,0.0943322,0.805079,0.724722,0.0950938,0.611116,0.971982,0.341859,0.508428,0.107085,0.935496,0.200718,0.167839,0.612415,0.943619,0.0333316,0.340187,0.301063,0.678726,0.47603,0.308668,0.562516,0.131106,0.247095,0.825052,0.476185,0.921784,0.898414,0.67141,0.67343,0.0954297,0.654516,0.439364,0.591377,0.393761,0.879389,0.20223,0.499651,0.100324,0.979325,0.305315,0.249885,0.00198662,0.984098,0.669702,0.488383,0.107402,0.884068,0.840087,0.518799,0.139839,0.148938,0.547969,0.482994,0.318118,0.900456,0.794748,0.647002,0.012264,0.678023,0.629459,0.168285,0.301932,0.960468,0.561624,0.521825,0.718786,0.0672994,0.133547,0.354671,0.591688,0.0303011,0.593732,0.892653,0.503397,0.196716,0.218619,0.958702,0.0889927,0.755639,0.0270447,0.150665,0.998463,0.695882,0.640255,0.0712643,0.633769,0.579983,0.137905,0.993751,0.046158,0.0332707,0.390781,0.886814,0.135977,0.70614,0.137311,0.783847,0.757908,0.810087,0.413807,0.490102,0.799409,0.562363,0.432165,0.24717,0.690487,0.524837,0.132633,0.747477,0.010454,0.227058,0.707127,0.577032,0.102617,0.208507,0.303095,0.0281244,0.242099,0.310849,0.847736,0.861835,0.624438,0.634748,0.605937,0.0766397,0.893986,0.567621,0.0710766,0.0169731,0.810577,0.146502,0.967183,0.551459,0.293049,0.556114,0.454499,0.5884,0.127599,0.689984,0.561871,0.359981,0.986918,0.571457,0.0383454,0.789851,0.0671532,0.952843,0.369506,0.209705,0.85224,0.886701,0.838672,0.0608078,0.0711774,0.590417,0.531346,0.598967,0.213104,0.874389,0.348228,0.24781,0.200935,0.261107,0.901955,0.568183,0.825107,0.790585,0.934056,0.156446,0.266024,0.493419,0.977328,0.657539,0.926954,0.867986,0.232924,0.22199,0.371142,0.795669,0.680371,0.435975,0.985264,0.590921,0.896947,0.315214,0.492064,0.69331,0.405097,0.154928,0.777776,0.206588,0.872606,0.0852507,0.778947,0.533006,0.611344,0.345178,0.303723,0.880231,0.415423,0.096337,0.478612,0.567793,0.684121,0.177944,0.180396,0.269966,0.240342,0.490173,0.568641,0.434577,0.163496,0.031843,0.84436,0.00902754,0.202673,0.913724,0.904326,0.393833,0.778205,0.587926,0.158498,0.128322,0.517246,0.620175,0.346262,0.947403,0.639208,0.727899,0.720219,0.147756,0.64956,0.692958,0.231017,0.0327921,0.13786,0.419228,0.400991,0.650779,0.569673,0.410673,0.527294,0.444421,0.420256,0.194436,0.642854,0.174784,0.235042,0.278807,0.640589,0.308212,0.598918,0.15518,0.778218,0.192628,0.434717,0.559271,0.778681,0.474318,0.389881,0.174513,0.384577,0.92944,0.191645,0.834362,0.254062,0.776547,0.265708,0.691757,0.0193179,0.369231,0.878549,0.837646,0.81926,0.696819,0.790033,0.0671466,0.256897,0.91892,0.00958496,0.465236,0.174387,0.722597,0.548995,0.875506,0.703584,0.326841,0.763709,0.615464,0.893533,0.75176,0.0842861,0.184976,0.780952,0.96967,0.808972,0.55722,0.349721,0.826767,0.997903,0.835816,0.539403,0.355979,0.147452,0.4248,0.0765917,0.930366,0.0511097,0.215911,0.435458,0.734526,0.737247,0.0473064,0.628202,0.509,0.696788,0.604544,0.712866,0.0699102,0.797563,0.02051,0.811934,0.531173,0.716062,0.865407,0.0687404,0.398257,0.84031,0.0936351,0.559271,0.360117,0.924216,0.38785,0.608136,0.445496,0.128481,0.220451,0.60973,0.867088,0.580333,0.148531,0.662692,0.354956,0.691391,0.812387,0.221864,0.452258,0.288561,0.380052,0.667913,0.126685,0.899975,0.730914,0.555387,0.29556,0.216585,0.971506,0.938485,0.272807,0.209316,0.497213,0.375445,0.081772,0.70728,0.828799,0.450254,0.364296,0.365379,0.718364,0.379913,0.0615972,0.782823,0.59823,0.15619,0.184679,0.42826,0.301737,0.849855,0.694034,0.182341,0.883927,0.249185,0.678422,0.717552,0.509847,0.228351,0.31763,0.236068,0.93414,0.336965,0.524132,0.59395,0.50549,0.245597,0.832446,0.687772,0.21706,0.469453,0.903354,0.323808,0.397612,0.37084,0.791416,0.118901,0.19052,0.644186,0.915007,0.166686,0.305394,0.778557,0.585263,0.161338,0.421227,0.65274,0.788479,0.67373,0.866749,0.711333,0.889478,0.0315266,0.821019,0.212686,0.532106,0.211674,0.313585,0.0672376,0.613642,0.214612,0.491133,0.355563,0.803147,0.935416,0.194408,0.310883,0.909457,0.6445,0.411257,0.912908,0.0494926,0.539908,0.840579,0.273019,0.204747,0.348316,0.682227,0.955115,0.692198,0.547882,0.0848397,0.99611,0.312884,0.0524417,0.155879,0.290184,0.0112892,0.514258,0.984006,0.071197,0.926957,0.539321,0.094869,0.759018,0.150599,0.641208,0.44212,0.105758,0.114699,0.402218,0.978204,0.598819,0.612031,0.38288,0.903363,0.196159,0.0321184,0.293181,0.340917,0.774943,0.396209,0.644491,0.624477,0.399603,0.835842,0.0795674,0.34939,0.484334,0.0754731,0.035774,0.627237,0.586283,0.745451,0.284646,0.543484,0.635779,0.135675,0.470051,0.929225,0.873164,0.581397,0.0942459,0.903009,0.401381,0.771856,0.0265828,0.682326,0.215247,0.0564894,0.345107,0.631363,0.864924,0.802201,0.366486,0.35623,0.299641,0.212793,0.869168,0.947549,0.965046,0.310959,0.570169,0.159412,0.691728,0.628078,0.109028,0.130326,0.846622,0.839644,0.508986,0.40185,0.74754,0.850634,0.383633,0.742928,0.29554,0.0906687,0.91795,0.155999,0.860371,0.771388,0.47344,0.993267,0.439238,0.525214,0.40291,0.161644,0.614691,0.858777,0.637838,0.475984,0.285886,0.796495,0.110879,0.475619,0.31703,0.258213,0.518232,0.654035,0.341724,0.778683,0.98936,0.0485653,0.43995,0.526313,0.0323257,0.98077,0.384167,0.196595,0.362115,0.161101,0.690503,0.684041,0.933434,0.399846,0.434821,0.519544,0.243267,0.642035,0.50249,0.937924,0.333042,0.312871,0.600282,0.739379,0.243984,0.370576,0.441581,0.87055,0.794628,0.182162,0.734113,0.726018,0.316461,0.491428,0.801588,0.622726,0.442934,0.775539,0.400245,0.263294,0.0889211,0.0784109,0.552942,0.994234,0.996366,|0.906591,0.544513,0.264598,0.118358,0.422479,0.0639924,0.4413,0.672834,0.876195,0.962606,0.739658,0.861883,0.601182,0.916207,0.46121,0.0463688,0.433378,0.314295,0.997026,0.627723,0.173635,0.902699,0.463494,0.424448,0.0057795,0.965415,0.296,0.755628,0.552271,0.999005,0.613213,0.168238,0.636355,0.117173,0.812644,0.885051,0.436343,0.12019,0.311071,0.0520259,0.788562,0.712821,0.688488,0.448507,0.85009,0.539812,0.568482,0.230031,0.133055,0.619504,0.169053,0.809998,0.496006,0.642103,0.0976108,0.0800252,0.415236,0.8961,0.38252,0.564695,0.558078,0.109348,0.136964,0.107334,0.10887,0.414969,0.31579,0.988561,0.411329,0.241275,0.863952,0.209009,0.67481,0.178953,0.899082,0.465303,0.827621,0.609919,0.248292,0.957917,0.660091,0.602856,0.478262,0.317883,0.587354,0.967415,0.923781,0.711175,0.442394,0.972409,0.259677,0.370444,0.0684449,0.345878,0.186834,0.419279,0.0504091,0.57125,0.116544,0.430787,0.143024,0.925174,0.658701,0.291904,0.421568,0.399855,0.814702,0.433283,0.781993,0.0617666,0.879722,0.139287,0.56228,0.850164,0.708388,0.307322,0.840702,0.981367,0.816897,0.26038,0.46124,0.749694,0.0498367,0.37574,0.801523,0.893079,0.265129,0.53404,0.526777,0.618812,0.791889,0.152773,0.118067,0.760692,0.409475,0.276026,0.663752,0.218195,0.510749,0.900871,0.709933,0.0764369,0.939874,0.591286,0.379494,0.54705,0.342924,0.252252,0.767174,0.750313,0.10624,0.201089,0.128741,0.948305,0.498311,0.988999,0.765299,0.618836,0.77857,0.0648066,0.0129054,0.201789,0.302214,0.820019,0.705288,0.968798,0.796272,0.601714,0.462605,0.95805,0.579648,0.535285,0.0126854,0.00557315,0.0355027,0.939551,0.537309,0.235448,0.997503,0.498066,0.128386,0.78536,0.336666,0.744676,0.662539,0.356024,0.290721,0.0580797,0.0214451,0.513543,0.396878,0.251492,0.466539,0.294663,0.784689,0.154129,0.210328,0.203538,0.311607,0.7318,0.109564,0.798225,0.626963,0.835198,0.184948,0.393872,0.254364,0.978402,0.815982,0.584815,0.120332,0.112564,0.568325,0.34299,0.480684,0.416581,0.938115,0.108997,0.309061,0.857834,0.184709,0.61494,0.178825,0.832438,0.522165,0.57735,0.353086,0.187613,0.283415,0.300684,0.230052,0.337729,0.0603338,0.291388,0.453396,0.377366,0.034152,0.403974,0.636816,0.692115,0.406045,0.884215,0.619188,0.0471267,0.91984,0.284521,0.708228,0.754346,0.0609613,0.853432,0.476394,0.0709107,0.494107,0.76193,0.400867,0.379054,0.053022,0.463991,0.759906,0.264728,0.224432,0.00297195,0.471623,0.54483,0.831175,0.0782126,0.621576,0.298172,0.0456205,0.406128,0.105541,0.786584,0.822248,0.354447,0.0226377,0.103676,0.92537,0.347857,0.946297,0.230141,0.429803,0.719161,0.534866,0.0519282,0.780112,0.42761,0.42035,0.415073,0.0403854,0.889673,0.568461,0.819987,0.696847,0.572578,0.943997,0.897663,0.353419,0.125946,0.326231,0.596587,0.569118,0.0957794,0.77727,0.507527,0.350263,0.802612,0.870413,0.301586,0.385369,0.491662,0.200801,0.0834416,0.625515,0.107319,0.0606696,0.420133,0.389788,0.412912,0.300738,0.495419,0.992735,0.789669,0.558297,0.383827,0.00924021,0.298363,0.0991653,0.0454234,0.618975,0.904068,0.214514,0.134306,0.306435,0.493848,0.739364,0.655759,0.675931,0.631948,0.778378,0.771437,0.148679,0.356501,0.405293,0.484429,0.673643,0.700222,0.785349,0.154434,0.901242,0.49442,0.770576,0.155265,0.164941,0.435748,0.313413,0.672316,0.127244,0.0842883,0.328148,0.117672,0.543793,0.858319,0.921198,0.0672597,0.838633,0.428681,0.599995,0.83139,0.191924,0.832819,0.602522,0.249537,0.865486,0.15845,0.855658,0.379451,0.997154,0.540018,0.0593843,0.242608,0.5709,0.315188,0.41855,0.0324109,0.673408,0.446552,0.755196,0.95916,0.522898,0.586019,0.291341,0.383217,0.890275,0.514185,0.691803,0.821945,0.244659,0.323326,0.36795,0.371224,0.840183,0.346142,0.360603,0.917122,0.787531,0.838613,0.984746,0.0108019,0.557948,0.332879,0.0290748,0.00298089,0.955217,0.93271,0.213836,0.0705496,0.121429,0.367734,0.0818314,0.706712,0.799266,0.705245,0.288558,0.290501,0.268814,0.517058,0.856025,0.717314,0.819324,0.093156,0.141161,0.651551,0.669286,0.0801215,0.373312,0.73198,0.807175,0.0861953,0.198006,0.406421,0.769949,0.407962,0.218335,0.477075,0.0225364,0.0911899,0.41623,0.349813,0.710411,0.0643611,0.0461063,0.915553,0.0207456,0.112427,0.914696,0.982071,0.804885,0.439856,0.270432,0.0309546,0.00584793,0.408706,0.227848,0.127124,0.214947,0.942735,0.321958,0.707426,0.325112,0.493435,0.681014,0.0805863,0.570264,0.234751,0.0303389,0.460875,0.999981,0.0599206,0.872595,0.560772,0.774825,0.103794,0.473627,0.202278,0.638564,0.28622,0.885116,0.705793,0.0300036,0.265913,0.971213,0.192333,0.870958,0.310151,0.297042,0.939021,0.386246,0.747514,0.845786,0.849204,0.747916,0.274512,0.0370048,0.379478,0.749835,0.174039,0.598852,0.999289,0.974867,0.578577,0.0165509,0.357471,0.814498,0.755319,0.468926,0.844148,0.441607,0.80434,0.0633341,0.167943,0.958954,0.95652,0.236348,0.383294,0.689522,0.672796,0.816203,0.817449,0.894046,0.639706,0.650707,0.610938,0.393682,0.976387,0.747766,0.068917,0.621954,0.243432,0.25815,0.179129,0.477708,0.0528024,0.470599,0.765139,0.615562,0.904292,0.402926,0.00431085,0.394585,0.980154,0.420504,0.545725,0.776358,0.814784,0.234985,0.0810881,0.3681,0.165109,0.640906,0.526367,0.740038,0.906916,0.399354,0.771083,0.833905,0.30701,0.832369,0.748871,0.713418,0.781351,0.0983164,0.33592,0.721315,0.347956,0.240703,0.041473,0.258155,0.340165,0.764768,0.169113,0.352268,0.506908,0.073272,0.152284,0.945121,0.0843392,0.308661,0.868041,0.565951,0.976654,0.737026,0.25918,0.0906391,0.719852,0.824257,0.394199,0.937977,0.821067,0.543665,0.760688,0.198613,0.0693921,0.500675,0.252493,0.336765,0.224999,0.509019,0.408939,0.419197,0.785136,0.194064,0.684629,0.439425,0.980279,0.529928,0.0134817,0.866539,0.0161719,0.107858,0.522018,0.298733,0.985409,0.936716,0.0250828,0.65486,0.165354,0.847693,0.83481,0.612621,0.599862,0.766888,0.738897,0.217552,0.155943,0.100321,0.209112,0.572766,0.0140994,0.0986094,0.946218,0.306085,0.656127,0.772521,0.238937,0.561402,0.275747,0.734109,0.167992,0.505159,0.989254,0.346863,0.0549069,0.63651,0.487937,0.106116,0.733972,0.287317,0.4625,0.0274653,0.443981,0.764334,0.497442,0.843911,0.714322,0.306526,0.00919241,0.162643,0.00234914,0.638113,0.584568,0.584167,0.009247,0.999017,0.246732,0.687651,0.399437,0.398134,0.128622,0.0722034,0.470194,0.448198,0.548134,0.650295,0.568761,0.566086,0.91815,0.247745,0.837077,0.180064,0.627017,0.85319,0.557192,0.373334,0.603691,0.214837,0.576541,0.364919,0.0220331,0.175987,0.451643,0.0207459,0.923985,0.291251,0.601331,0.225361,0.311738,0.760617,0.5288,0.00519657,0.383761,0.449453,0.709945,0.370561,0.385767,0.577321,0.238787,0.88672,0.452073,0.542219,0.0288723,0.649735,0.487957,0.159763,0.154109,0.416032,0.513497,0.760248,0.841044,0.907172,0.0942489,0.0853265,0.457579,0.378757,0.626011,0.545323,0.489606,0.10068,0.407445,0.852514,0.588068,0.0818079,0.561493,0.209914,0.395346,0.881073,0.687156,0.124655,0.51294,0.33967,0.608577,0.426201,0.790456,0.263636,0.993997,0.937405,0.971235,0.0313009,0.0599945,0.435421,0.709496,0.595075,0.0537246,0.345642,0.0679052,0.255414,0.169839,0.464696,0.685325,0.812955,0.442898,0.979158,0.454839,0.422062,0.702788,0.964707,0.161445,0.774921,0.685865,0.0341579,0.937962,0.909353,0.0423719,0.616834,0.175551,0.238587,0.434938,0.612197,0.919514,0.693862,0.366078,0.38149,0.344153,0.4877,0.786487,0.5402,0.273688,0.646975,0.778741,0.673508,0.836362,0.821649,0.34913,0.0131661,0.0415949,0.748427,0.22053,0.436401,0.365407,0.451427,0.950348,0.152914,0.0700611,0.538148,0.886384,0.319378,0.610089,0.0216279,0.111609,0.487335,0.749671,0.327231,0.950575,0.723675,0.431082,0.158748,0.307683,0.133748,0.774909,0.977412,0.596464,0.515824,0.0689499,0.502828,0.324921,0.0786707,0.335614,0.755672,0.861597,0.406717,0.651807,0.856716,0.575924,0.835008,0.548518,0.320055,0.611663,0.740252,0.590236,0.219222,0.760383,0.43423,0.40172,0.902828,0.197384,0.816676,0.593561,0.191311,0.186411,0.494926,0.343856,0.922379,0.898056,0.437345,0.963918,0.936782,0.00277054,0.0166191,0.446156,0.72722,0.576707,0.20462,0.202366,0.453324,0.993112,0.747457,0.0754059,0.467665,0.42418,0.70041,0.984421,0.446908,0.839122,0.00547624,0.359042,0.676771,0.841435,0.104242,0.365671,0.505737,0.981482,0.311556,0.0219262,0.284431,0.0208703,0.804781,0.823717,0.000146866,0.957111,0.95864,0.251067,0.996991,0.581517,0.896583,0.36331,0.0829306,0.489927,0.302689,0.866801,0.407149,0.0994329,0.0663289,0.971734,0.508782,0.383747,0.531479,0.978713,0.556887,0.294736,0.727438,0.113788,0.855592,0.0316953,0.566297,0.944825,0.600203,0.794466,0.889621,0.339709,0.228122,0.497527,0.302933,0.279122,0.604304,0.775875,0.242607,0.607701,0.072776,0.0439067,0.977299,0.537143,0.616139,0.77714,0.367484,0.632365,0.599933,0.504077,0.414472,0.0126866,0.482514,0.622514,0.0209969,0.296788,0.399393,0.921271,0.191029,0.859792,0.817445,0.297359,0.178589,0.141837,0.574799,0.848366,0.65845,0.701215,0.24194,0.24913,0.0901105,0.382362,0.038345,0.396483,0.0394886,0.997655,0.501558,0.206243,0.652641,0.32835,0.00524193,0.054463,0.0951535,0.742895,0.589276,0.103485,0.821762,0.874041,0.0294277,0.15236,0.679347,0.405516,0.673634,0.954877,0.410558,0.909723,0.00026089,0.0294537,0.135689,0.572292,0.149896,0.350779,0.960581,0.230259,|0.405928,0.822946,0.933236,0.665746,0.680796,0.973021,0.632853,0.661692,0.126988,0.97071,0.63472,0.309843,0.268025,0.855804,0.290573,0.656325,0.0586092,0.901403,0.599387,0.164619,0.114603,0.199172,0.793536,0.703932,0.890673,0.764401,0.617054,0.511199,0.997367,0.41181,0.00334966,0.6324,0.372008,0.491294,0.776381,0.590813,0.67413,0.301339,0.998051,0.0952094,0.609007,0.194344,0.534298,0.320695,0.516615,0.327977,0.048017,0.132246,0.613094,0.606185,0.286025,0.130067,0.339589,0.244519,0.266334,0.433788,0.710296,0.980768,0.676277,0.437216,0.981677,0.712004,0.111963,0.586372,0.0125574,0.333196,0.566006,0.82673,0.616392,0.380339,0.518197,0.984788,0.859924,0.912332,0.501185,0.910395,0.92322,0.0760819,0.769062,0.494168,0.702192,0.474342,0.538759,0.23541,0.455292,0.00666714,0.687791,0.778354,0.841099,0.088465,0.183727,0.448665,0.827604,0.697773,0.672643,0.748312,0.880399,0.490092,0.775964,0.670921,0.538844,0.876776,0.253811,0.373887,0.82561,0.518734,0.784076,0.2508,0.630238,0.305085,0.894037,0.308545,0.58357,0.148034,0.890817,0.757463,0.392238,0.275491,0.116794,0.397754,0.494882,0.948989,0.223632,0.0875911,0.112935,0.928888,0.991463,0.828059,0.577853,0.597675,0.241732,0.0644371,0.606973,0.501671,0.510926,0.300332,0.0840285,0.0966675,0.708111,0.934477,0.169275,0.364392,0.565547,0.969964,0.774309,0.0238396,0.82813,0.239887,0.251062,0.90598,0.835358,0.917617,0.850652,0.518104,0.911676,0.885202,0.550031,0.280538,0.52484,0.561447,0.571063,0.596153,0.324603,0.780613,0.374827,0.838384,0.0160783,0.420125,0.790519,0.883261,0.525551,0.219299,0.824305,0.0528404,0.186896,0.166858,0.519459,0.9633,0.012871,0.385591,0.918948,0.215135,0.358006,0.519639,0.198486,0.107697,0.0435316,0.844502,0.618997,0.555828,0.770964,0.805941,0.0172864,0.174389,0.715947,0.570672,0.428694,0.398467,0.637734,0.167146,0.261368,0.216984,0.536128,0.092982,0.620797,0.349412,0.119607,0.455984,0.306859,0.409185,0.0245197,0.641334,0.158375,0.255032,0.123914,0.335722,0.789062,0.867389,0.203839,0.540912,0.645296,0.952146,0.147016,0.347087,0.798743,0.360933,0.956175,0.395018,0.0760161,0.471831,0.45418,0.00604987,0.899148,0.945805,0.584612,0.426629,0.816804,0.952711,0.419784,0.673534,0.727771,0.839553,0.529272,0.123685,0.268565,0.830161,0.833101,0.384756,0.726541,0.894372,0.363631,0.806682,0.864733,0.769019,0.528796,0.105345,0.270425,0.311596,0.276144,0.0285206,0.761488,0.118809,0.326518,0.267807,0.4456,0.70068,0.906103,0.580024,0.741624,0.573336,0.517537,0.694824,0.448558,0.1399,0.593274,0.0512669,0.596745,0.512465,0.335623,0.745994,0.0363212,0.477871,0.0614337,0.619979,0.609391,0.958269,0.0805607,0.993262,0.869131,0.411862,0.113838,0.80456,0.520856,0.361956,0.311038,0.915164,0.970735,0.667116,0.830438,0.256239,0.579288,0.259709,0.107426,0.4051,0.493372,0.735359,0.977621,0.663156,0.39618,0.31132,0.236684,0.56399,0.795609,0.65682,0.93965,0.456162,0.775414,0.172532,0.383965,0.101391,0.787582,0.937507,0.49888,0.407068,0.523864,0.143286,0.839466,0.756925,0.395375,0.0551861,0.703034,0.956146,0.962099,0.788879,0.448107,0.202068,0.333166,0.105246,0.743167,0.702574,0.645179,0.552925,0.0786115,0.459177,0.591792,0.314249,0.559861,0.49944,0.0401556,0.343062,0.340267,0.140667,0.963742,0.47327,0.0110973,0.300298,0.499534,0.423341,0.359203,0.232328,0.943921,0.552797,0.424513,0.276856,0.895597,0.44257,0.814522,0.742655,0.667429,0.783679,0.727782,0.75839,0.106948,0.628353,0.717464,0.29135,0.702692,0.731703,0.124543,0.884299,0.216956,0.782371,0.9607,0.632854,0.106117,0.755604,0.175108,0.931212,0.882524,0.351533,0.00439614,0.665754,0.70297,0.5323,0.0910494,0.0965268,0.120229,0.0633089,0.589661,0.208335,0.0569407,0.817905,0.0273193,0.022506,0.828031,0.92279,0.142436,0.98542,0.888142,0.285263,0.456171,0.384234,0.364692,0.0939055,0.0489206,0.314103,0.899492,0.901274,0.37035,0.813038,0.552234,0.756366,0.656722,0.126637,0.530917,0.395265,0.8014,0.177544,0.795945,0.509856,0.322897,0.695702,0.715226,0.719125,0.553158,0.0110375,0.336556,0.340069,0.796511,0.119842,0.739591,0.864749,0.864801,0.478545,0.570495,0.696683,0.870696,0.36197,0.470645,0.377898,0.814727,0.11616,0.782779,0.633762,0.844325,0.0373961,0.561083,0.250748,0.104938,0.656233,0.795673,0.481814,0.0179765,0.551475,0.459125,0.974578,0.855942,0.0448101,0.85452,0.375677,0.17872,0.857999,0.62994,0.767185,0.389156,0.635901,0.92864,0.86539,0.354115,0.335307,0.203171,0.587859,0.774594,0.562867,0.691357,0.609921,0.309978,0.14483,0.172143,0.542524,0.222815,0.804257,0.330115,0.569789,0.40552,0.851901,0.959094,0.551629,0.588701,0.707886,0.184013,0.177663,0.435307,0.631658,0.476282,0.23712,0.221307,0.778216,0.482468,0.158908,0.112424,0.0742505,0.795271,0.360067,0.0504279,0.758959,0.849134,0.647191,0.749414,0.826465,0.0106368,0.813246,0.722192,0.299172,0.543419,0.0738156,0.14654,0.0714168,0.101635,0.846514,0.532966,0.0580952,0.54005,0.504651,0.695882,0.777696,0.596512,0.0490669,0.515171,0.741034,0.693889,0.486263,0.708142,0.612529,0.500191,0.942955,0.129733,0.448792,0.695698,0.521846,0.00830287,0.477098,0.888167,0.56065,0.445462,0.394551,0.765858,0.0742832,0.521621,0.859281,0.446656,0.743619,0.00711036,0.254777,0.510181,0.20211,0.677955,0.0351925,0.769849,0.123755,0.0405529,0.0212544,0.244254,0.0118876,0.29969,0.38287,0.12532,0.403303,0.320187,0.498078,0.605016,0.281467,0.793586,0.618846,0.347169,0.926604,0.939159,0.553217,0.210988,0.811732,0.308648,0.231426,0.855437,0.37698,0.67502,0.599116,0.500599,0.736144,0.458748,0.907495,0.735025,0.712378,0.319912,0.858532,0.296706,0.0645831,0.269332,0.875886,0.0370957,0.686253,0.519551,0.571812,0.0812634,0.55585,0.13673,0.601554,0.439347,0.32544,0.363841,0.486749,0.725385,0.370675,0.874846,0.22412,0.799194,0.467578,0.175108,0.0663497,0.428287,0.347536,0.661767,0.261157,0.60281,0.689872,0.275467,0.271054,0.346743,0.17634,0.443948,0.0665284,0.244829,0.722618,0.349912,0.706948,0.276238,0.963616,0.119688,0.974755,0.653665,0.749301,0.0533673,0.17436,0.323759,0.65328,0.626382,0.0556362,0.626396,0.334163,0.303136,0.0665983,0.0703998,0.339538,0.777355,0.922595,0.162917,0.920491,0.587053,0.989071,0.158528,0.349615,0.343388,0.886591,0.909838,0.706958,0.565699,0.0885336,0.551412,0.451035,0.262627,0.420366,0.469268,0.112086,0.161227,0.309335,0.905398,0.255526,0.565561,0.220634,0.159167,0.87573,0.200973,0.575873,0.477649,0.17411,0.861632,0.675662,0.632835,0.395183,0.274132,0.117529,0.775599,0.843337,0.88779,0.525559,0.824017,0.871628,0.955137,0.749453,0.317301,0.152429,0.262714,0.973504,0.625915,0.279929,0.128117,0.643035,0.816379,0.502608,0.321985,0.777727,0.596146,0.406875,0.826038,0.33566,0.818751,0.815617,0.597224,0.355376,0.0984049,0.864683,0.648675,0.404015,0.0661639,0.966628,0.996718,0.630682,0.310141,0.205398,0.150683,0.785838,0.0117568,0.578659,0.395212,0.318034,0.978104,0.864747,0.319577,0.0217013,0.115561,0.26861,0.934555,0.527848,0.726342,0.225187,0.350118,0.273949,0.660571,0.750977,0.665537,0.896357,0.0383487,0.0405722,0.998311,0.338732,0.460635,0.976753,0.77272,0.688404,0.386734,0.575484,0.505933,0.17996,0.890337,0.199251,0.822094,0.974024,0.59342,0.280089,0.884083,0.628688,0.941592,0.188138,0.69333,0.336056,0.317866,0.225441,0.373275,0.860511,0.892545,0.316874,0.362609,0.0277915,0.0588166,0.994206,0.212991,0.938274,0.618161,0.156532,0.0611135,0.203274,0.740147,0.717498,0.00830835,0.253524,0.692791,0.706853,0.187727,0.815404,0.780644,0.143514,0.526252,0.916312,0.189347,0.571935,0.478748,0.15882,0.711982,0.600507,0.586762,0.206632,0.723314,0.770562,0.470886,0.280233,0.587488,0.699695,0.937197,0.175554,0.673611,0.443296,0.185571,0.443913,0.509125,0.742015,0.993006,0.895002,0.518466,0.161029,0.314432,0.382055,0.776584,0.731167,0.340089,0.305693,0.555185,0.471946,0.509742,0.425183,0.583085,0.231218,0.989016,0.996203,0.351829,0.0955765,0.735188,0.101249,0.290634,0.534117,0.733826,0.764303,0.0360122,0.897718,0.386104,0.576093,0.489086,0.964885,0.853569,0.648376,0.575053,0.732897,0.395279,0.493719,0.128405,0.373986,0.793962,0.395674,0.457512,0.578022,0.00910819,0.593983,0.994565,0.437517,0.632953,0.695523,0.589579,0.224159,0.160689,0.226605,0.649738,0.224246,0.354034,0.327216,0.260162,0.117362,0.587312,0.363594,0.30848,0.786955,0.973542,0.817818,0.843749,0.449389,0.15586,0.0807612,0.259896,0.286328,0.189367,0.030475,0.0438796,0.737667,0.792986,0.492598,0.347397,0.305118,0.374965,0.498545,0.833706,0.903816,0.961185,0.530894,0.329787,0.2515,0.760675,0.539704,0.99304,0.923056,0.22098,0.514956,0.256575,0.527975,0.865741,0.767177,0.759636,0.172681,0.385933,0.658099,0.783378,0.240806,0.485033,0.873575,0.906291,0.620974,0.393891,0.637664,0.811051,0.888614,0.615904,0.487679,0.342892,0.455039,0.872031,0.529444,0.334416,0.439435,0.176904,0.00710237,0.818455,0.160554,0.258422,0.0113965,0.771872,0.15684,0.883513,0.398661,0.909203,0.614443,0.135479,0.741522,0.980664,0.292752,0.661334,0.670493,0.367161,0.724229,0.937294,0.193562,0.783882,0.297142,0.683765,0.976339,0.380329,0.67462,0.628391,0.452281,0.386744,0.775425,0.126493,0.336185,0.307191,0.412919,0.364483,0.442463,0.175435,0.361415,0.873859,0.709171,0.0634931,0.383266,0.801709,0.227517,|0.870722,0.140698,0.016836,0.801758,0.41133,0.916978,0.202881,0.659133,0.705033,0.746085,0.40649,0.904527,0.956409,0.696617,0.731649,0.806352,0.793457,0.11797,0.362824,0.00618398,0.638254,0.377525,0.569746,0.11634,0.579948,0.83585,0.431678,0.473029,0.969334,0.179024,0.622755,0.584594,0.549446,0.988619,0.255206,0.378501,0.620298,0.441257,0.990078,0.740961,0.978327,0.874668,0.508954,0.959061,0.396655,0.910798,0.365575,0.874051,0.815421,0.39872,0.000178635,0.626506,0.925341,0.919317,0.757856,0.723973,0.960528,0.132225,0.525247,0.134856,0.758508,0.0082376,0.394199,0.559384,0.206284,0.151798,0.191091,0.935,0.718575,0.528384,0.22855,0.568307,0.661708,0.68371,0.169483,0.203234,0.345387,0.125648,0.59823,0.699138,0.759412,0.246921,0.787795,0.88687,0.516938,0.0364789,0.675666,0.166547,0.295818,0.614642,0.903542,0.616341,0.286799,0.477227,0.922489,0.690434,0.191077,0.100681,0.483637,0.0347461,0.703694,0.38837,0.155592,0.262086,0.446364,0.0422923,0.93619,0.618268,0.325161,0.437617,0.69103,0.0086174,0.659189,0.717415,0.039237,0.718341,0.407331,0.863402,0.855535,0.323366,0.425463,0.092122,0.0550383,0.408185,0.859504,0.0317675,0.882018,0.141582,0.1707,0.413275,0.431545,0.415699,0.440878,0.280074,0.57811,0.435216,0.788455,0.310765,0.107377,0.675048,0.0769628,0.700622,0.0158129,0.338408,0.741202,0.398652,0.359771,0.384453,0.294195,0.422423,0.681548,0.50589,0.603885,0.186432,0.858567,0.114731,0.566032,0.50517,0.218498,0.273485,0.91639,0.729732,0.337195,0.413187,0.9697,0.385876,0.86779,0.612589,0.254906,0.325511,0.243084,0.501179,0.516565,0.372489,0.0433842,0.489047,0.562851,0.961954,0.564805,0.670782,0.289927,0.080169,0.22345,0.44321,0.947903,0.412494,0.969944,0.521269,0.940438,0.533834,0.980741,0.719303,0.072337,0.617967,0.252499,0.859597,0.416205,0.7122,0.0199281,0.436554,0.768629,0.0526793,0.690173,0.61451,0.142424,0.479412,0.0680445,0.0240449,0.256042,0.184378,0.343412,0.266204,0.604783,0.56024,0.167851,0.472728,0.00500405,0.276333,0.82429,0.144876,0.693035,0.00220692,0.921454,0.165776,0.224693,0.280747,0.596581,0.211124,0.978536,0.0267701,0.488709,0.946006,0.62407,0.861146,0.917647,0.393265,0.687339,0.820091,0.130895,0.613827,0.719672,0.884506,0.294486,0.256321,0.307029,0.570947,0.705821,0.648145,0.221457,0.887597,0.568728,0.0223734,0.837481,0.75761,0.0290035,0.123593,0.553486,0.887416,0.734121,0.0523092,0.378963,0.391784,0.862497,0.951328,0.0921804,0.399082,0.255528,0.879651,0.0616899,0.0954185,0.57814,0.409859,0.456831,0.116628,0.951158,0.207318,0.621352,0.301874,0.468897,0.277022,0.191587,0.231625,0.135248,0.51265,0.414912,0.373849,0.12506,0.240555,0.517656,0.689598,0.716017,0.309238,0.587377,0.297938,0.432829,0.364984,0.741888,0.880646,0.863689,0.235558,0.275437,0.481794,0.441288,0.106629,0.00386542,0.0306427,0.273386,0.606637,0.901676,0.265347,0.4763,0.779083,0.93131,0.698826,0.468709,0.00930792,0.211748,0.0210297,0.918813,0.230193,0.759719,0.779417,0.371676,0.650476,0.0350876,0.657089,0.932545,0.582158,0.360134,0.30798,0.232896,0.300803,0.873535,0.0199547,0.397457,0.00589043,0.602098,0.564195,0.774016,0.697238,0.657429,0.989079,0.147306,0.188299,0.437072,0.563569,0.217571,0.540572,0.0900347,0.950124,0.0390948,0.833135,0.536687,0.201734,0.43389,0.0145406,0.829181,0.0638969,0.651066,0.171522,0.52741,0.181961,0.427866,0.339738,0.0874598,0.863249,0.433101,0.501206,0.722367,0.973656,0.25473,0.333209,0.912243,0.334224,0.426767,0.267766,0.148942,0.063014,0.646467,0.87188,0.558069,0.69159,0.932916,0.49174,0.920502,0.103755,0.901419,0.857443,0.745885,0.436478,0.138255,0.904315,0.0547018,0.0115994,0.00857103,0.542639,0.973314,0.513918,0.0381408,0.762377,0.620996,0.864431,0.150256,0.871085,0.263182,0.235541,0.0584359,0.787967,0.582634,0.851077,0.864659,0.798723,0.688863,0.786939,0.335951,0.474528,0.482734,0.21369,0.38297,0.406414,0.543814,0.731215,0.741715,0.69737,0.892294,0.767151,0.373018,0.28205,0.718721,0.672082,0.58777,0.425258,0.568095,0.656595,0.0315845,0.0979127,0.95385,0.61668,0.616719,0.730315,0.401014,0.575169,0.722581,0.983364,0.0355396,0.889229,0.713351,0.919973,0.67639,0.32771,0.172164,0.842461,0.00878811,0.136701,0.321478,0.194681,0.219375,0.409439,0.118541,0.396906,0.339069,0.814373,0.258422,0.366493,0.417798,0.955238,0.854417,0.812043,0.583345,0.777292,0.297776,0.383295,0.664584,0.456935,0.349921,0.830597,0.580981,0.280269,0.281519,0.802657,0.0880823,0.424098,0.665518,0.794316,0.778713,0.882136,0.892608,0.869669,0.827132,0.0839649,0.606491,0.0126451,0.951548,0.490538,0.0479406,0.562555,0.653806,0.025404,0.627466,0.740719,0.592929,0.231317,0.665174,0.965009,0.801197,0.40683,0.370874,0.784547,0.172786,0.716434,0.863353,0.772535,0.800418,0.325628,0.315154,0.0305344,0.80446,0.458458,0.483443,0.930083,0.135471,0.151367,0.0479591,0.64935,0.835896,0.118057,0.714487,0.837258,0.0262094,0.387195,0.648234,0.362123,0.524386,0.971744,0.183231,0.444905,0.472561,0.530721,0.954552,0.821251,0.783815,0.314458,0.26666,0.466931,0.647647,0.500249,0.9669,0.340305,0.0484241,0.875327,0.969836,0.732903,0.0701895,0.716139,0.58593,0.392079,0.718139,0.398033,0.731777,0.343192,0.716755,0.623886,0.284474,0.618757,0.0522817,0.24993,0.990631,0.646278,0.0587455,0.141175,0.26075,0.641428,0.51791,0.541045,0.460589,0.424801,0.831808,0.427597,0.613288,0.703874,0.319774,0.473525,0.666037,0.187642,0.757326,0.79027,0.423215,0.850193,0.242527,0.527689,0.749327,0.80827,0.753595,0.59588,0.590342,0.337373,0.137248,0.759731,0.747076,0.733247,0.628868,0.286974,0.171765,0.524417,0.551093,0.656391,0.124643,0.117634,0.608897,0.098552,0.880214,0.862813,0.114976,0.789425,0.343213,0.317922,0.170448,0.985517,0.241455,0.164166,0.675749,0.942894,0.652231,0.464721,0.931519,0.263402,0.136112,0.578726,0.644468,0.154151,0.209004,0.97901,0.0865623,0.811164,0.932404,0.370918,0.128507,0.506669,0.460542,0.796719,0.563717,0.703191,0.908939,0.93008,0.628632,0.0752248,0.720496,0.33509,0.840882,0.97873,0.230181,0.481586,0.383324,0.186331,0.740674,0.827803,0.159434,0.322079,0.335781,0.689737,0.287605,0.518741,0.376338,0.359326,0.63045,0.376332,0.00201327,0.872578,0.697501,0.640464,0.23973,0.0916499,0.379697,0.99418,0.212415,0.710136,0.540346,0.76636,0.212259,0.434909,0.472989,0.554044,0.372932,0.547748,0.463721,0.7269,0.612881,0.0691264,0.539007,0.346723,0.208443,0.283037,0.967894,0.462755,0.693742,0.984934,0.448527,0.0193424,0.11547,0.351064,0.0240206,0.54861,0.22491,0.511632,0.760999,0.259442,0.224779,0.0344952,0.0570795,0.776799,0.691323,0.512374,0.485835,0.355238,0.195746,0.142134,0.994154,0.341788,0.735156,0.375931,0.606984,0.319463,0.817818,0.00644332,0.509845,0.743855,0.701384,0.30097,0.72346,0.705631,0.577119,0.0520228,0.982727,0.992176,0.29678,0.239212,0.393349,0.21889,0.368433,0.308845,0.783328,0.126907,0.061944,0.35201,0.890727,0.363238,0.243748,0.477407,0.0969612,0.962163,0.287126,0.751249,0.605149,0.184086,0.868011,0.043488,0.0819535,0.964859,0.659822,0.559242,0.268202,0.925688,0.411413,0.706218,0.48234,0.233892,0.84692,0.237271,0.522851,0.877158,0.0236949,0.93994,0.421539,0.861949,0.119809,0.123993,0.9846,0.468766,0.223885,0.168694,0.163808,0.47554,0.0214955,0.0326891,0.899719,0.975351,0.231097,0.0955758,0.376796,0.15162,0.512386,0.287114,0.275982,0.0843821,0.163373,0.638923,0.696229,0.961088,0.96084,0.584634,0.38002,0.931067,0.416489,0.280039,0.739576,0.779467,0.167571,0.0910259,0.811287,0.562994,0.61933,0.970225,0.643748,0.14067,0.979802,0.381461,0.179002,0.718748,0.859687,0.057502,0.915178,0.185401,0.959082,0.581285,0.0298302,0.789122,0.758285,0.0447096,0.0305645,0.59885,0.649754,0.92245,0.453105,0.958872,0.774464,0.423859,0.921127,0.0608971,0.872609,0.370839,0.771727,0.849146,0.830784,0.34449,0.601352,0.727325,0.243564,0.149863,0.174113,0.340841,0.854483,0.891576,0.973812,0.701796,0.819331,0.440326,0.958758,0.15635,0.135067,0.585798,0.927497,0.77844,0.117225,0.29637,0.158881,0.833623,0.793152,0.385977,0.557258,0.379218,0.828623,0.296354,0.774172,0.78739,0.757427,0.331305,0.124002,0.802005,0.562778,0.738117,0.443831,0.340517,0.350905,0.252907,0.613275,0.802742,0.0463732,0.921314,0.974352,0.0534995,0.0329727,0.554314,0.705594,0.228498,0.175136,0.406846,0.550455,0.157759,0.782598,0.510682,0.887947,0.435353,0.907781,0.976436,0.0564335,0.945282,0.275879,0.184051,0.741433,0.75202,0.788565,0.426613,0.742056,0.00321764,0.557521,0.820791,0.348153,0.00734061,0.777522,0.666172,0.406889,0.437556,0.376182,0.366855,0.534492,0.115143,0.481863,0.259556,0.172084,0.0715519,0.0852087,0.950325,0.0784749,0.33909,0.278223,0.342843,0.884207,0.971679,0.886453,0.927027,0.510193,0.141423,0.278891,0.327379,0.25701,0.432751,0.042918,0.617099,0.406948,0.276203,0.763182,0.117261,0.0682008,0.485859,0.516561,0.867408,0.00797343,0.21547,0.590887,0.893948,0.171433,0.699834,0.549502,0.210383,0.52505,0.268047,0.516404,0.19643,0.324957,0.956562,0.373019,0.300163,0.899771,0.987829,0.040994,0.536043,0.663218,0.327028,0.910286,0.107109,0.888405,0.958728,0.613973,0.413495,0.0600251,0.354304,0.211554,0.526158,0.0119975,0.731361,0.138345,0.830935,0.427531,0.517824,0.5971,0.0634071,0.834234,0.551828,0.730896,0.0745456,|0.907509,0.155126,0.864592,0.81355,0.536185,0.319876,0.981682,0.581901,0.706841,0.618988,0.377935,0.269224,0.684603,0.364694,0.528904,0.903738,0.729271,0.216928,0.0418919,0.786135,0.153589,0.870363,0.424392,0.616319,0.344783,0.191302,0.727319,0.0529971,0.846965,0.879597,0.101477,0.163296,0.72454,0.290369,0.783652,0.617359,0.924372,0.767281,0.335685,0.533857,0.481898,0.828927,0.517606,0.969028,0.722046,0.380417,0.734967,0.978945,0.963875,0.689261,0.436801,0.936489,0.193613,0.321848,0.707424,0.412789,0.291556,0.039919,0.527559,0.983897,0.0434037,0.168562,0.634652,0.0569812,0.0800728,0.330225,0.436008,0.0280052,0.148441,0.00644511,0.186646,0.833172,0.289712,0.465482,0.466958,0.755933,0.337208,0.641904,0.412269,0.238962,0.194224,0.0847656,0.0634984,0.956034,0.515978,0.132961,0.01222,0.573835,0.180561,0.130254,0.704319,0.0914284,0.540516,0.922792,0.764276,0.0285403,0.646821,0.00399268,0.568588,0.635996,0.672637,0.950158,0.356736,0.732387,0.432384,0.369942,0.205445,0.806916,0.295401,0.459889,0.590444,0.851199,0.48127,0.404214,0.681009,0.259762,0.689931,0.249188,0.936163,0.654406,0.051796,0.911722,0.106566,0.059123,0.0717583,0.200666,0.704463,0.405797,0.482309,0.759746,0.0960199,0.983788,0.399211,0.755397,0.689301,0.0565407,0.98175,0.83536,0.0238867,0.839959,0.705226,0.925411,0.289209,0.436013,0.922929,0.558846,0.730611,0.4861,0.245725,0.432174,0.400826,0.959979,0.402336,0.00819659,0.749947,0.839237,0.671041,0.0887388,0.606987,0.99352,0.03899,0.587752,0.900943,0.644685,0.675994,0.881659,0.512794,0.633557,0.123589,0.968583,0.215079,0.231758,0.968262,0.525037,0.317267,0.420297,0.0460635,0.0937598,0.81049,0.730821,0.895187,0.245077,0.547911,0.0144911,0.255565,0.723778,0.325094,0.350986,0.360519,0.0368525,0.200858,0.575739,0.772618,0.577179,0.0481709,0.756266,0.0588854,0.433922,0.380507,0.442637,0.797252,0.877578,0.881478,0.878022,0.32333,0.00928402,0.61079,0.496775,0.914357,0.838633,0.600186,0.763924,0.147896,0.475677,0.902533,0.867098,0.0452914,0.232438,0.894778,0.146123,0.666321,0.804045,0.812007,0.110015,0.313207,0.546772,0.951903,0.97795,0.45031,0.0195885,0.0905938,0.648749,0.833717,0.810866,0.363906,0.46855,0.606361,0.257926,0.948822,0.47145,0.827834,0.906346,0.533369,0.709776,0.255838,0.451045,0.629735,0.571876,0.546308,0.17004,0.52788,0.549608,0.877918,0.781066,0.541788,0.928994,0.147372,0.561104,0.362106,0.614048,0.0949041,0.499306,0.349437,0.226445,0.871699,0.520021,0.211721,0.40764,0.588219,0.637612,0.627218,0.854507,0.813565,0.372039,0.264306,0.127275,0.66024,0.926534,0.545793,0.112744,0.614581,0.335371,0.0698281,0.221741,0.687349,0.792928,0.0128894,0.0614608,0.486288,0.354857,0.766646,0.0911444,0.557452,0.398481,0.247382,0.997693,0.455967,0.847517,0.979504,0.450709,0.867674,0.909823,0.759362,0.269738,0.194946,0.119993,0.085242,0.870458,0.340604,0.103051,0.483722,0.35194,0.722068,0.0220369,0.91466,0.578634,0.597937,0.837447,0.0963936,0.00195307,0.899002,0.391734,0.389968,0.101536,0.720392,0.497854,0.116942,0.241693,0.759487,0.064446,0.545793,0.118467,0.319561,0.184842,0.608912,0.148726,0.902303,0.676545,0.837661,0.210498,0.130068,0.315973,0.484357,0.375781,0.70189,0.251496,0.111615,0.396332,0.155746,0.277876,0.977814,0.656019,0.617354,0.0679003,0.427665,0.178228,0.735676,0.530474,0.818002,0.457385,0.506301,0.17253,0.79594,0.390179,0.682649,0.460646,0.71355,0.411077,0.294095,0.824751,0.633914,0.263956,0.179727,0.636288,0.246764,0.44101,0.783537,0.197139,0.92103,0.526853,0.330865,0.340474,0.230242,0.498439,0.324124,0.306904,0.507874,0.361186,0.689494,0.604021,0.922664,0.237728,0.246677,0.134823,0.295989,0.41709,0.806519,0.726214,0.616309,0.237597,0.554616,0.626089,0.771189,0.32941,0.749148,0.255748,0.544778,0.414979,0.33349,0.0391121,0.758273,0.159422,0.920572,0.795253,0.831067,0.438341,0.956336,0.587795,0.112599,0.901008,0.0319353,0.366917,0.666379,0.168645,0.349844,0.0357144,0.963049,0.514724,0.734869,0.688559,0.936393,0.213853,0.634507,0.340264,0.430886,0.902806,0.242301,0.957525,0.965782,0.225943,0.0649676,0.891466,0.450276,0.191919,0.475221,0.565198,0.875792,0.502563,0.602274,0.170549,0.837332,0.103002,0.935237,0.142373,0.922452,0.569256,0.670879,0.550231,0.807423,0.783817,0.539677,0.233549,0.438852,0.162629,0.168931,0.588864,0.910246,0.869372,0.666096,0.852046,0.731011,0.407257,0.150677,0.0967868,0.627556,0.56246,0.218152,0.153741,0.241961,0.812204,0.332988,0.399362,0.771306,0.383938,0.100263,0.690174,0.0227044,0.828835,0.692064,0.0139672,0.377797,0.24738,0.398504,0.556483,0.0407646,0.220193,0.513339,0.247587,0.50324,0.0923257,0.13374,0.247457,0.256815,0.814981,0.229436,0.277261,0.0848174,0.756976,0.0979866,0.454285,0.0890282,0.556931,0.152082,0.714626,0.841588,0.143817,0.457633,0.459665,0.0262644,0.00354123,0.278136,0.913406,0.751462,0.948422,0.362677,0.566506,0.572495,0.329229,0.494241,0.558371,0.900925,0.295347,0.0187379,0.0513668,0.84927,0.356182,0.149429,0.0155318,0.79609,0.461299,0.148372,0.381214,0.32,0.231359,0.716083,0.402617,0.384927,0.276346,0.733044,0.195342,0.379385,0.600303,0.719798,0.624535,0.102444,0.98088,0.302867,0.869565,0.880201,0.0513818,0.788888,0.294722,0.921521,0.750795,0.169999,0.313641,0.181587,0.095282,0.260694,0.668274,0.123156,0.210943,0.399135,0.298946,0.0717676,0.175044,0.0235072,0.994636,0.187199,0.383952,0.280816,0.921057,0.323674,0.198807,0.342315,0.426659,0.814083,0.372293,0.878267,0.871597,0.864743,0.218502,0.653754,0.78237,0.842593,0.814662,0.378675,0.485824,0.800762,0.300823,0.334602,0.608608,0.703116,0.816119,0.290304,0.346072,0.71518,0.589708,0.0708787,0.381003,0.80609,0.575107,0.78966,0.120345,0.648582,0.532118,0.916258,0.617438,0.249257,0.444199,0.286948,0.836735,0.865663,0.0622771,0.435686,0.185041,0.139305,0.0857881,0.480414,0.108667,0.0245991,0.952753,0.975564,0.229764,0.441986,0.761475,0.661297,0.962662,0.237001,0.808804,0.966044,0.683735,0.335371,0.841945,0.875418,0.772933,0.411931,0.670436,0.595324,0.0162036,0.157711,0.630445,0.263126,0.0943118,0.517172,0.550673,0.349931,0.975852,0.269139,0.0166344,0.580375,0.813926,0.343733,0.240281,0.960535,0.886783,0.905393,0.264743,0.139437,0.254311,0.286697,0.40253,0.195399,0.886319,0.567434,0.0560208,0.867183,0.73681,0.0934585,0.285034,0.384019,0.95935,0.17566,0.573588,0.548452,0.248648,0.333242,0.528974,0.223475,0.00542206,0.0866667,0.884431,0.295602,0.656402,0.367714,0.172976,0.200306,0.200783,0.582318,0.718749,0.336192,0.89653,0.126864,0.878039,0.357983,0.0936689,0.330952,0.01142,0.950336,0.914289,0.919478,0.107001,0.0763797,0.00860131,0.638578,0.49076,0.738037,0.955139,0.100167,0.0106486,0.118147,0.456919,0.908987,0.357213,0.563399,0.0215419,0.754376,0.620809,0.559509,0.75014,0.449821,0.294163,0.70954,0.958049,0.890203,0.282853,0.726138,0.286653,0.447621,0.712369,0.18887,0.699867,0.269853,0.365716,0.0802655,0.291246,0.213245,0.117432,0.0847974,0.878942,0.293951,0.978846,0.892974,0.712126,0.549382,0.147442,0.764813,0.709497,0.827586,0.55698,0.303802,0.796468,0.0792246,0.698102,0.545366,0.314043,0.215036,0.107729,0.411067,0.703135,0.0800751,0.135562,0.796619,0.187355,0.172568,0.361322,0.621674,0.136133,0.599641,0.198751,0.879136,0.908804,0.359877,0.306663,0.502366,0.291505,0.430167,0.292924,0.662202,0.229566,0.913123,0.646085,0.514238,0.154145,0.349526,0.820916,0.601225,0.430569,0.581854,0.886614,0.915478,0.104636,0.880091,0.421688,0.620191,0.397669,0.466746,0.368895,0.0999047,0.504298,0.334878,0.365511,0.479673,0.415132,0.902528,0.945151,0.304358,0.379819,0.391636,0.290613,0.628116,0.809131,0.271586,0.834189,0.175622,0.17061,0.831165,0.672702,0.433628,0.998064,0.527776,0.749634,0.307018,0.325986,0.313648,0.572233,0.701379,0.439589,0.659279,0.789412,0.676438,0.687338,0.640416,0.552725,0.184068,0.421957,0.592854,0.195489,0.0962483,0.190533,0.861745,0.816732,0.137506,0.778425,0.361007,0.625091,0.0919629,0.0499778,0.831559,0.0229808,0.227619,0.099718,0.976202,0.408825,0.508097,0.300724,0.978398,0.573095,0.909781,0.0593684,0.942752,0.142441,0.36878,0.0709631,0.579931,0.374251,0.960859,0.156831,0.394877,0.705503,0.809452,0.64894,0.564829,0.264142,0.4173,0.0722429,0.780958,0.52896,0.505184,0.0443785,0.221002,0.548416,0.796632,0.8747,0.895322,0.499522,0.663371,0.550623,0.426266,0.418282,0.510135,0.45121,0.977534,0.616194,0.588357,0.320895,0.836175,0.545324,0.863509,0.810129,0.908837,0.352447,0.0813944,0.984763,0.735682,0.417565,0.15535,0.159451,0.272714,0.364433,0.0236263,0.428059,0.716888,0.613115,0.707891,0.358922,0.86964,0.770376,0.119828,0.260198,0.0323867,0.341092,0.80878,0.225195,0.919799,0.596189,0.802411,0.323536,0.855836,0.0239161,0.119222,0.780667,0.431432,0.261333,0.147027,0.191217,0.221056,0.00386518,0.288205,0.985231,0.683263,0.934063,0.26216,0.86027,0.257623,0.941634,0.358721,0.977088,0.880366,0.639917,0.597485,0.9286,0.488695,0.955437,0.714434,0.334013,0.362873,0.953858,0.805567,0.216422,0.309719,0.456873,0.663202,0.549508,0.638674,0.939405,0.695117,0.766028,0.59006,0.868361,0.421519,0.405588,0.0100359,0.953343,0.328666,0.392132,0.314137,0.568119,0.510785,0.873323,0.167588,0.854841,0.464765,0.993171,0.0847429,0.473084,0.315099,0.250015,0.10392,0.956721,|0.386175,0.455902,0.113847,0.727268,0.936902,0.724179,0.396735,0.019086,0.107381,0.757532,0.216444,0.0718117,0.303287,0.0754309,0.949394,0.0301129,0.392713,0.573212,0.762635,0.886734,0.712285,0.238822,0.671024,0.488894,0.823905,0.408245,0.733083,0.150175,0.667789,0.757112,0.658103,0.75697,0.592795,0.164742,0.520069,0.438151,0.362425,0.217692,0.882619,0.185017,0.637094,0.381188,0.270324,0.84487,0.85499,0.587646,0.714537,0.36507,0.934032,0.359619,0.439496,0.961609,0.923824,0.847208,0.790508,0.308016,0.830129,0.902807,0.966447,0.568063,0.210239,0.278192,0.555726,0.686486,0.200916,0.830481,0.0786626,0.557026,0.205405,0.948689,0.509533,0.453968,0.532917,0.605646,0.713553,0.845078,0.895138,0.162853,0.705923,0.111815,0.980519,0.929668,0.418155,0.618788,0.684309,0.316941,0.835803,0.176387,0.411186,0.295399,0.944998,0.327616,0.679407,0.78553,0.84168,0.119887,0.599914,0.863892,0.741747,0.338006,0.143308,0.230511,0.286597,0.787203,0.44634,0.580739,0.791995,0.17008,0.300629,0.413773,0.611355,0.853857,0.581678,0.91944,0.233521,0.71838,0.322617,0.840806,0.832758,0.96853,0.202033,0.192888,0.757458,0.76574,0.537221,0.372701,0.410191,0.0752311,0.735294,0.865528,0.303586,0.517163,0.117855,0.388763,0.362168,0.887385,0.169802,0.927884,0.0997088,0.173561,0.638422,0.650287,0.734016,0.917293,0.322812,0.460409,0.918845,0.65484,0.0582366,0.0987199,0.895485,0.368027,0.441327,0.0701296,0.506001,0.22235,0.0428269,0.215289,0.579533,0.955956,0.865436,0.811868,0.0638675,0.574372,0.841325,0.954449,0.287815,0.30522,0.682569,0.730277,0.537453,0.938757,0.214533,0.00386059,0.509519,0.305824,0.372921,0.804113,0.737364,0.991552,0.703853,0.594616,0.194517,0.521861,0.017474,0.65953,0.586682,0.695107,0.83282,0.900532,0.588125,0.987992,0.248981,0.687895,0.00433791,0.00287175,0.122065,0.837454,0.823451,0.155049,0.998743,0.780731,0.485179,0.606052,0.382009,0.789825,0.766037,0.552286,0.827457,0.332477,0.091782,0.325485,0.47034,0.515161,0.902341,0.900859,0.972191,0.309503,0.722545,0.391776,0.57814,0.757765,0.469544,0.128188,0.802743,0.483988,0.389837,0.0736866,0.530537,0.0511839,0.320056,0.897513,0.38802,0.6869,0.222909,0.967277,0.258124,0.0363309,0.681298,0.706986,0.377487,0.572068,0.353386,0.0690897,0.446817,0.99833,0.0721292,0.444054,0.374355,0.204536,0.653828,0.0874938,0.564395,0.164466,0.551457,0.556707,0.917911,0.180531,0.344948,0.0170762,0.412674,0.19147,0.860121,0.689141,0.958335,0.496497,0.675516,0.105435,0.711356,0.570526,0.293626,0.263621,0.878791,0.863598,0.983088,0.884613,0.570782,0.946807,0.123084,0.254635,0.0291319,0.79727,0.953438,0.608041,0.201316,0.127568,0.401466,0.88451,0.733837,0.0674706,0.090326,0.388182,0.678475,0.662669,0.943642,0.300769,0.775633,0.577132,0.485692,0.0330563,0.395788,0.0394843,0.00891745,0.0895655,0.289998,0.255664,0.617808,0.779562,0.503566,0.247494,0.560478,0.184726,0.309112,0.1289,0.871677,0.882569,0.353203,0.719753,0.745331,0.8072,0.888717,0.587442,0.164151,0.334527,0.557713,0.972185,0.75961,0.323338,0.379244,0.399895,0.445649,0.812224,0.876378,0.961599,0.156095,0.383676,0.84993,0.273977,0.709189,0.412805,0.420913,0.691097,0.854731,0.0697417,0.114048,0.580121,0.759315,0.853789,0.94537,0.513402,0.608383,0.669071,0.752963,0.974185,0.160476,0.91544,0.335578,0.739524,0.0712151,0.178596,0.617568,0.81285,0.831417,0.524289,0.861152,0.320271,0.913717,0.978428,0.454931,0.346754,0.785058,0.955339,0.603396,0.147974,0.397252,0.768374,0.402025,0.60251,0.465548,0.00651109,0.725035,0.972408,0.821367,0.535116,0.690235,0.6482,0.781418,0.556618,0.268031,0.343969,0.836873,0.448698,0.695243,0.666923,0.134522,0.646613,0.519219,0.660742,0.579312,0.790527,0.782509,0.371309,0.847137,0.703094,0.770531,0.844834,0.0460865,0.00472862,0.586534,0.246888,0.659761,0.841468,0.855519,0.0231206,0.800482,0.639528,0.751032,0.352854,0.896356,0.00378549,0.355552,0.969418,0.33026,0.566094,0.723414,0.384611,0.602469,0.896523,0.144361,0.728505,0.508798,0.977774,0.967638,0.871197,0.0984223,0.410625,0.264774,0.954883,0.493103,0.843798,0.981025,0.887427,0.19131,0.444077,0.496708,0.50863,0.0284081,0.36572,0.85919,0.0413727,0.971482,0.857976,0.446488,0.558843,0.417019,0.734521,0.230611,0.571374,0.478088,0.788383,0.931187,0.597042,0.905873,0.864208,0.657099,0.118067,0.680544,0.324352,0.100854,0.46889,0.217535,0.17769,0.664475,0.829359,0.78962,0.106921,0.268975,0.394208,0.960224,0.663241,0.892852,0.983575,0.237533,0.0611688,0.821601,0.442554,0.287409,0.0435068,0.302451,0.497548,0.736515,0.58948,0.295827,0.899716,0.537622,0.841352,0.862886,0.308304,0.411737,0.552362,0.875592,0.586551,0.844187,0.135551,0.502118,0.608572,0.0956591,0.927064,0.16186,0.360262,0.12188,0.33755,0.726392,0.338971,0.422446,0.440942,0.66202,0.73227,0.598532,0.248416,0.509524,0.365889,0.559347,0.345903,0.533189,0.649123,0.385987,0.406625,0.340113,0.972818,0.471633,0.623798,0.0567634,0.566691,0.359542,0.69033,0.567845,0.491229,0.79551,0.319651,0.940215,0.504083,0.523242,0.14963,0.222273,0.558797,0.164532,0.711424,0.494575,0.7272,0.251841,0.323353,0.0658417,0.44355,0.942079,0.244436,0.0946586,0.644024,0.704004,0.929519,0.241131,0.385235,0.0451381,0.477786,0.483823,0.666895,0.373083,0.238962,0.452898,0.823966,0.754222,0.762324,0.253351,0.227185,0.802945,0.0879408,0.107289,0.685998,0.605894,0.497556,0.694217,0.590384,0.91129,0.675316,0.14104,0.664971,0.362083,0.943735,0.589457,0.271757,0.19027,0.131949,0.668277,0.204604,0.849751,0.611195,0.242633,0.451351,0.0860696,0.925769,0.630308,0.706951,0.620536,0.702301,0.401359,0.791078,0.622301,0.500373,0.655982,0.656788,0.97578,0.754218,0.368411,0.22255,0.925095,0.20731,0.838531,0.84241,0.834048,0.893153,0.249192,0.418015,0.863169,0.836786,0.746334,0.995576,0.440828,0.773229,0.235736,0.642135,0.359729,0.223163,0.535882,0.51123,0.114132,0.804679,0.962414,0.794056,0.887269,0.462979,0.457758,0.215344,0.628019,0.142117,0.220265,0.804989,0.0499608,0.166379,0.255304,0.759369,0.314664,0.0535218,0.167676,0.499077,0.370444,0.0479044,0.355902,0.829762,0.266894,0.0303299,0.52243,0.928007,0.723141,0.197131,0.287371,0.408283,0.528881,0.824869,0.0579534,0.880847,0.238481,0.178856,0.914629,0.53227,0.0432945,0.810834,0.949931,0.639928,0.66303,0.0315672,0.148225,0.522824,0.295794,0.419942,0.0819243,0.82991,0.543131,0.594351,0.401098,0.614762,0.186044,0.55103,0.829898,0.959974,0.648756,0.920054,0.205063,0.770559,0.0828118,0.367699,0.482556,0.708632,0.164714,0.949228,0.832934,0.47041,0.65324,0.9342,0.344725,0.440583,0.116811,0.802844,0.131145,0.305479,0.366079,0.620312,0.726088,0.424864,0.34727,0.274974,0.359461,0.105118,0.446238,0.926143,0.448859,0.344348,0.397956,0.26801,0.673994,0.0398596,0.493304,0.45862,0.410471,0.991451,0.257664,0.593116,0.936968,0.961417,0.395882,0.321455,0.207588,0.8097,0.114533,0.167772,0.0249129,0.267412,0.677558,0.341667,0.737977,0.369888,0.495009,0.225959,0.312528,0.329879,0.205849,0.408412,0.954754,0.240592,0.990709,0.13923,0.0898442,0.761407,0.655437,0.865482,0.44473,0.28518,0.90504,0.935954,0.253042,0.810158,0.0846046,0.792569,0.334896,0.375068,0.18564,0.941046,0.377559,0.967401,0.0756976,0.584637,0.544593,0.329619,0.795093,0.914148,0.16368,0.420413,0.32105,0.409532,0.350601,0.442139,0.00465834,0.130084,0.792531,0.907145,0.212493,0.166358,0.496539,0.153721,0.968975,0.43773,0.0492757,0.405718,0.465806,0.740351,0.0272081,0.343824,0.94965,0.503166,0.227736,0.533424,0.232513,0.855388,0.128779,0.702193,0.53799,0.497619,0.830161,0.269586,0.952909,0.683049,0.879588,0.322954,0.745802,0.540568,0.226888,0.158273,0.839578,0.611958,0.591117,0.527467,0.236675,0.332751,0.619304,0.380688,0.311817,0.080236,0.465094,0.116861,0.775793,0.799145,0.249706,0.0461298,0.302573,0.362415,0.870386,0.73305,0.0293663,0.680925,0.360347,0.493688,0.353383,0.269756,0.710208,0.855398,0.0681736,0.819969,0.0950775,0.87714,0.380907,0.708141,0.873852,0.974203,0.4047,0.984208,0.609415,0.385946,0.417159,0.35902,0.465687,0.557714,0.110473,0.350676,0.01676,0.43844,0.555642,0.506389,0.670982,0.206828,0.738683,0.325959,0.597829,0.0294598,0.153745,0.657999,0.540454,0.500946,0.323275,0.866691,0.180023,0.984277,0.658434,0.959551,0.869702,0.638233,0.831966,0.327991,0.793063,0.511653,0.55175,0.62437,0.653933,0.117451,0.106412,0.387939,0.398393,0.944239,0.890534,0.0759058,0.443645,0.0158133,0.379938,0.396803,0.369054,0.268619,0.422122,0.963678,0.636055,0.755516,0.728303,0.982487,0.152915,0.839417,0.560018,0.595822,0.743779,0.645048,0.544515,0.366545,0.32335,0.440628,0.402858,0.837475,0.3918,0.239034,0.881315,0.682999,0.26538,0.184671,0.076237,0.770135,0.661124,0.463176,0.493794,0.348496,0.0208479,0.850114,0.793001,0.65399,0.181608,0.0135413,0.828287,0.125986,0.21737,0.408406,0.444337,0.789224,0.816189,0.797981,0.0157612,0.880709,0.825543,0.396542,0.917232,0.0441158,0.936404,0.520976,0.505114,0.738906,0.0787578,0.831983,0.0225534,0.218391,0.828107,0.200959,0.256385,0.178154,0.689892,0.683497,0.254224,0.829079,0.037177,0.0969132,0.876499,0.853239,0.858904,0.848549,0.564027,0.0306765,0.37796,0.682309,0.478095,0.167971,0.988264,0.154267,0.67344,0.919503,0.146256,0.588052,0.401701,0.745747,|0.422724,0.998299,0.311099,0.915672,0.269571,0.63703,0.461752,0.428323,0.864436,0.523545,0.0119709,0.362578,0.296993,0.0405148,0.363929,0.756702,0.536792,0.427655,0.208841,0.0919121,0.518884,0.632401,0.334264,0.994715,0.478852,0.593515,0.848591,0.98579,0.722894,0.0124397,0.781706,0.163248,0.377381,0.166862,0.359146,0.32148,0.38979,0.483911,0.167935,0.873379,0.403838,0.0470513,0.857019,0.216271,0.313159,0.730689,0.775568,0.186823,0.886209,0.834468,0.404539,0.954439,0.0917568,0.123575,0.786856,0.479791,0.616365,0.559925,0.169146,0.068125,0.0191503,0.893425,0.449367,0.318321,0.0725963,0.212734,0.960843,0.770242,0.294157,0.621597,0.792316,0.400154,0.0857719,0.433743,0.851412,0.940465,0.019406,0.0482584,0.613737,0.204915,0.210671,0.588708,0.883632,0.24274,0.891512,0.0179106,0.31123,0.563408,0.0223617,0.553097,0.46116,0.14995,0.274619,0.116176,0.456129,0.0992197,0.204586,0.30547,0.971466,0.570997,0.761965,0.128853,0.646936,0.791134,0.590923,0.763596,0.761868,0.883705,0.221864,0.896859,0.188716,0.482317,0.957444,0.600389,0.963081,0.169875,0.0863557,0.281859,0.762276,0.424474,0.905869,0.997406,0.596285,0.694291,0.00185978,0.824108,0.449292,0.147417,0.133029,0.510391,0.951169,0.819881,0.57028,0.953118,0.0678598,0.795617,0.39556,0.658728,0.068829,0.668045,0.351383,0.13122,0.852123,0.504289,0.846989,0.432348,0.307316,0.746601,0.849598,0.0971925,0.92144,0.712694,0.978724,0.153497,0.955541,0.0993327,0.923334,0.16023,0.409629,0.89616,0.842063,0.929735,0.316009,0.97236,0.584239,0.372019,0.241984,0.465711,0.817465,0.950289,0.0620058,0.490149,0.745639,0.373064,0.284085,0.527392,0.313716,0.678612,0.0244244,0.160652,0.774837,0.0702263,0.75673,0.0332868,0.890951,0.0601876,0.55732,0.872725,0.181295,0.0416622,0.536693,0.120352,0.0215769,0.859188,0.65927,0.743851,0.746283,0.154158,0.74061,0.510703,0.221269,0.410313,0.0942589,0.811877,0.479832,0.625524,0.479318,0.607232,0.725847,0.157835,0.930971,0.949508,0.447382,0.473657,0.400383,0.707593,0.166294,0.253223,0.359643,0.198779,0.442187,0.0276712,0.438811,0.981091,0.889726,0.516706,0.658987,0.754661,0.00028336,0.215267,0.686202,0.0703543,0.156125,0.355895,0.812847,0.158378,0.404246,0.77583,0.162781,0.0416409,0.743168,0.364323,0.473025,0.648272,0.508237,0.055729,0.0554391,0.753948,0.297948,0.78905,0.959163,0.410795,0.370004,0.237412,0.54845,0.684992,0.117314,0.229065,0.0361685,0.381396,0.785661,0.370195,0.940284,0.889742,0.662812,0.419111,0.817987,0.240097,0.842064,0.592342,0.143508,0.677451,0.886286,0.017864,0.357574,0.623703,0.365332,0.572957,0.991903,0.495852,0.661127,0.689465,0.5535,0.882509,0.554636,0.739483,0.535724,0.127707,0.72266,0.758902,0.689381,0.917535,0.0555038,0.389702,0.590056,0.732009,0.591735,0.618504,0.757704,0.267264,0.0356821,0.292503,0.135163,0.199101,0.232309,0.178602,0.845375,0.161952,0.804707,0.168666,0.56422,0.979125,0.0855557,0.788997,0.257325,0.14868,0.646834,0.705063,0.804828,0.742717,0.875932,0.522113,0.7173,0.459763,0.747564,0.495091,0.456839,0.665708,0.967785,0.189956,0.181681,0.420131,0.0913621,0.843213,0.941044,0.248702,0.671561,0.020389,0.832891,0.0515633,0.164404,0.348692,0.0456092,0.732431,0.162606,0.786044,0.662498,0.559936,0.961649,0.0794859,0.327421,0.233884,0.754889,0.288234,0.908429,0.357336,0.990406,0.837551,0.799985,0.0432291,0.911599,0.827372,0.0819532,0.748758,0.934928,0.170924,0.330673,0.831623,0.203387,0.610185,0.594396,0.730194,0.0970282,0.315215,0.527819,0.925913,0.90256,0.570282,0.565248,0.683458,0.883242,0.244226,0.304932,0.861266,0.48855,0.920629,0.193286,0.270862,0.422361,0.218425,0.232166,0.925899,0.961896,0.834624,0.291983,0.566306,0.67639,0.089842,0.477472,0.623891,0.80008,0.413318,0.197128,0.857556,0.740097,0.280388,0.458605,0.917709,0.436397,0.738834,0.717353,0.628374,0.547171,0.940648,0.620137,0.193904,0.358561,0.561943,0.801635,0.0268674,0.24096,0.111896,0.817335,0.281843,0.579437,0.244986,0.790894,0.774916,0.801837,0.72022,0.264851,0.852555,0.966064,0.530509,0.706234,0.00261563,0.55674,0.1,0.705298,0.530964,0.883113,0.86621,0.596667,0.707727,0.688268,0.0925054,0.402616,0.262232,0.208802,0.395434,0.264435,0.696188,0.957768,0.979423,0.0841449,0.82743,0.320428,0.836997,0.899105,0.301757,0.509559,0.60026,0.0316168,0.477593,0.192577,0.55504,0.521813,0.100089,0.909943,0.526976,0.0441088,0.911137,0.483071,0.416037,0.535372,0.516828,0.145925,0.586954,0.469879,0.710199,0.146647,0.511904,0.0865427,0.201648,0.853602,0.322153,0.983161,0.75405,0.573041,0.50245,0.341739,0.219301,0.284718,0.902231,0.0383496,0.345515,0.909461,0.820531,0.438033,0.321198,0.897994,0.247555,0.551763,0.701476,0.672481,0.127981,0.45994,0.0938488,0.212936,0.266945,0.935876,0.457504,0.413764,0.355246,0.351681,0.546191,0.445862,0.967503,0.214756,0.267631,0.743229,0.720221,0.211136,0.162092,0.377967,0.969565,0.84773,0.62549,0.899461,0.322723,0.385453,0.00506312,0.150481,0.954358,0.679962,0.521573,0.36726,0.55159,0.358321,0.752208,0.141332,0.37062,0.000532746,0.514227,0.442408,0.19554,0.526548,0.811759,0.0808184,0.321758,0.433625,0.101312,0.00218785,0.152274,0.132578,0.137617,0.903603,0.718598,0.543131,0.0833435,0.284203,0.8974,0.587737,0.683625,0.3142,0.257204,0.448386,0.82573,0.397169,0.605341,0.645739,0.278571,0.900926,0.846544,0.239606,0.415273,0.578727,0.568176,0.841464,0.958857,0.829074,0.199157,0.106597,0.609704,0.592781,0.933141,0.472727,0.190993,0.75236,0.88253,0.71356,0.257146,0.272436,0.34382,0.959616,0.606503,0.215956,0.434479,0.327598,0.0941753,0.146639,0.898512,0.164773,0.653111,0.0963279,0.668948,0.885137,0.598208,0.824786,0.712281,0.469063,0.910805,0.906132,0.134728,0.828364,0.716715,0.208951,0.0670723,0.587215,0.646362,0.250359,0.446171,0.130403,0.582072,0.212461,0.514357,0.405367,0.831084,0.214741,0.292531,0.73037,0.290124,0.0479977,0.490265,0.151115,0.577855,0.637461,0.837372,0.631339,0.888085,0.704736,0.159491,0.253838,0.319848,0.122449,0.798787,0.732068,0.931386,0.454977,0.877565,0.226822,0.60025,0.0282559,0.12245,0.667836,0.223232,0.561615,0.0562276,0.389526,0.728772,0.775729,0.203898,0.669838,0.0668198,0.928115,0.938678,0.617163,0.260395,0.295353,0.45702,0.995854,0.283176,0.332773,0.0862487,0.182368,0.175448,0.700954,0.162432,0.184486,0.222485,0.798285,0.47729,0.7819,0.0354989,0.430361,0.701389,0.740397,0.934228,0.477984,0.384611,0.370207,0.106864,0.185373,0.363478,0.384006,0.747803,0.0377182,0.27263,0.393971,0.32949,0.609895,0.961525,0.849771,0.13598,0.30515,0.67142,0.836032,0.266083,0.280704,0.646464,0.464175,0.307149,0.960496,0.228632,0.588144,0.266333,0.638661,0.581415,0.597195,0.173616,0.953442,0.660964,0.821656,0.0955235,0.904729,0.107391,0.210842,0.366729,0.766962,0.222289,0.3162,0.510536,0.901364,0.105611,0.470865,0.433213,0.805408,0.141401,0.74282,0.735824,6.73532e-06,0.481126,0.861572,0.487386,0.888455,0.286806,0.0249434,0.368347,0.0593891,0.769797,0.944242,0.469095,0.189844,0.954602,0.105475,0.409612,0.369552,0.220601,0.827642,0.962816,0.124927,0.869922,0.9294,0.391912,0.272934,0.70092,0.170695,0.982486,0.870074,0.00469255,0.056147,0.090936,0.969516,0.764209,0.968183,0.470909,0.909447,0.590455,0.204599,0.74797,0.745113,0.855261,0.0908853,0.0758567,0.729498,0.865107,0.694079,0.673967,0.802779,0.507679,0.348004,0.896553,0.236432,0.182756,0.465143,0.386024,0.362886,0.207858,0.498781,0.0640908,0.155312,0.00519937,0.658037,0.763067,0.787123,0.00232363,0.392042,0.957152,0.746889,0.649851,0.76353,0.883097,0.207182,0.490463,0.904548,0.0403712,0.695444,0.326095,0.803837,0.396923,0.848954,0.777032,0.025997,0.188249,0.626701,0.069317,0.623036,0.122035,0.0995072,0.491915,0.20005,0.36004,0.302138,0.427702,0.10148,0.658801,0.503296,0.385847,0.229082,0.663582,0.500031,0.883531,0.598722,0.529028,0.294676,0.035226,0.585642,0.942514,0.857948,0.767972,0.346998,0.242785,0.519653,0.317028,0.13269,0.016093,0.0617973,0.250918,0.677392,0.076717,0.400471,0.918299,0.773904,0.344435,0.801083,0.798198,0.597321,0.790584,0.278233,0.525138,0.00383425,0.657133,0.450802,0.849562,0.673045,0.977534,0.0808682,0.837699,0.0486373,0.519116,0.277708,0.788234,0.286134,0.544746,0.0482216,0.763834,0.0142069,0.538508,0.103257,0.801608,0.287891,0.861542,0.910901,0.867003,0.21577,0.34097,0.137254,0.318596,0.400581,0.246698,0.359932,0.370024,0.185988,0.617979,0.469018,0.864912,0.0543336,0.613432,0.403396,0.509564,0.605283,0.62803,0.365138,0.305896,0.497891,0.985903,0.965254,0.638709,0.0603303,0.719917,0.362804,0.0172744,0.3454,0.757678,0.622018,0.352347,0.808919,0.110299,0.521726,0.0343841,0.51903,0.641149,0.545893,0.665109,0.624756,0.471951,0.504021,0.479943,0.486226,0.1788,0.446245,0.0727623,0.487924,0.763226,0.857331,0.973998,0.214311,0.998507,0.0127623,0.0446352,0.646087,0.21167,0.954665,0.936274,0.481023,0.823549,0.811414,0.312972,0.8552,0.936381,0.178762,0.854276,0.850633,0.289313,0.645374,0.88806,0.011781,0.758098,0.684091,0.661496,0.551299,0.983099,0.802217,0.426149,0.0221471,0.561463,0.416,0.696752,0.165434,0.955165,0.236843,0.486769,0.415224,0.593188,0.507623,0.777462,0.570136,0.895506,0.123859,0.584036,0.403131,0.573643,0.850831,0.517324,0.981156,0.518188,0.24071,0.475946,0.15212,0.362101,|0.455522,0.0322797,0.364591,0.70561,0.140994,0.00932652,0.629182,0.835316,0.785336,0.139296,0.511345,0.743208,0.288023,0.759989,0.158852,0.869847,0.224845,0.584983,0.856805,0.153229,0.490304,0.487584,0.241,0.113747,0.625772,0.40499,0.836246,0.0390083,0.707353,0.410454,0.828701,0.845761,0.34067,0.725693,0.347832,0.00951558,0.107414,0.453231,0.157872,0.592025,0.334226,0.432297,0.146789,0.40067,0.258873,0.0673158,0.0824025,0.427168,0.0370611,0.247557,0.578577,0.462436,0.237506,0.300607,0.404849,0.409116,0.249657,0.307814,0.80098,0.354706,0.145047,0.678781,0.775142,0.592112,0.241203,0.237117,0.82442,0.925485,0.674007,0.856129,0.27978,0.893027,0.373425,0.401888,0.456405,0.671092,0.222106,0.123947,0.19834,0.647448,0.186947,0.568587,0.506541,0.208592,0.677195,0.571981,0.866752,0.262659,0.317407,0.135738,0.632935,0.743272,0.94576,0.106059,0.552188,0.566556,0.537943,0.925206,0.667458,0.822315,0.890103,0.732159,0.661539,0.903913,0.0454346,0.705818,0.0302512,0.463079,0.575963,0.419906,0.460493,0.503663,0.219605,0.879438,0.279433,0.809729,0.589382,0.744201,0.279466,0.132191,0.447108,0.411773,0.239716,0.0759813,0.556383,0.11053,0.930252,0.94023,0.24013,0.74638,0.201345,0.725436,0.935423,0.0987384,0.909568,0.287117,0.0614702,0.309025,0.0286627,0.345947,0.23533,0.695295,0.749321,0.778004,0.00770801,0.0288682,0.68482,0.934959,0.846118,0.83264,0.34773,0.662155,0.741927,0.177097,0.0639619,0.0466266,0.253875,0.816899,0.506119,0.616774,0.492045,0.35875,0.537831,0.646364,0.460777,0.392985,0.809746,0.822012,0.386931,0.22903,0.054671,0.607805,0.456489,0.754154,0.623115,0.271746,0.186453,0.890656,0.807419,0.727294,0.25575,0.899747,0.357124,0.904785,0.37907,0.381542,0.269855,0.17282,0.0851164,0.687083,0.420483,0.629873,0.586486,0.650397,0.225093,0.830753,0.630932,0.498874,0.170718,0.514485,0.0349901,0.390352,0.406356,0.230151,0.0471691,0.4672,0.744575,0.0501526,0.559596,0.219091,0.880862,0.885885,0.651867,0.311638,0.405442,0.304039,0.803576,0.448664,0.130525,0.573673,0.970073,0.886695,0.552379,0.58724,0.412319,0.335359,0.895427,0.408675,0.571885,0.980718,0.156098,0.86522,0.368008,0.306589,0.809198,0.144332,0.437787,0.841083,0.0764425,0.966278,0.164164,0.56415,0.489641,0.609818,0.391082,0.511903,0.820934,0.0886002,0.694202,0.974394,0.939301,0.58826,0.263312,0.932915,0.126727,0.889928,0.455499,0.134183,0.114948,0.811082,0.550352,0.164035,0.135979,0.771161,0.714453,0.284201,0.329647,0.479346,0.384328,0.654714,0.683258,0.829027,0.493259,0.712162,0.66795,0.903932,0.762811,0.568727,0.843894,0.348769,0.753708,0.581137,0.379905,0.202892,0.0549924,0.921642,0.324538,0.898823,0.471041,0.423258,0.0342835,0.541583,0.302634,0.00753278,0.160676,0.851977,0.130256,0.495968,0.739563,0.139542,0.870173,0.0568389,0.180288,0.684353,0.742334,0.327538,0.651833,0.383688,0.758045,0.213482,0.944775,0.0375354,0.709543,0.953419,0.105466,0.804158,0.492804,0.791315,0.808757,0.13749,0.451326,0.729359,0.846751,0.566148,0.851098,0.99045,0.337551,0.679661,0.0456733,0.200718,0.184425,0.269566,0.354623,0.0510576,0.322522,0.902899,0.739145,0.573602,0.260872,0.890374,0.585537,0.872009,0.0192022,0.174505,0.574078,0.982221,0.254171,0.88552,0.904708,0.22258,0.974646,0.951225,0.928256,0.496836,0.806115,0.815691,0.254488,0.813181,0.196702,0.303643,0.163139,0.890838,0.598549,0.996575,0.627304,0.389587,0.381799,0.540163,0.6371,0.806837,0.731677,0.200533,0.173728,0.0609844,0.343331,0.0480554,0.0310282,0.238127,0.714234,0.493908,0.725663,0.516743,0.553438,0.450303,0.323358,0.163172,0.745632,0.273152,0.433726,0.759303,0.373159,0.759673,0.310806,0.654058,0.631417,0.211192,0.299212,0.634661,0.303208,0.386867,0.348108,0.888348,0.491261,0.836578,0.0367886,0.164718,0.621872,0.144109,0.614294,0.273914,0.836616,0.404093,0.361521,0.660494,0.133933,0.0969154,0.720645,0.372857,0.0223632,0.0872234,0.963343,0.797018,0.988239,0.758135,0.533028,0.748402,0.424425,0.142192,0.519031,0.248874,0.457637,0.876563,0.835125,0.260561,0.249051,0.593251,0.235945,0.832596,0.606013,0.267622,0.882798,0.91571,0.731173,0.313958,0.632689,0.718633,0.975659,0.381743,0.92217,0.205787,0.710232,0.30731,0.849604,0.902012,0.812501,0.806375,0.0192996,0.584027,0.267829,0.279451,0.407651,0.854617,0.185117,0.77651,0.664715,0.524263,0.39455,0.0965358,0.605781,0.397618,0.870785,0.55917,0.644622,0.209409,0.439098,0.208038,0.793497,0.344713,0.693992,0.619218,0.170349,0.272871,0.229284,0.53149,0.715691,0.828897,0.537593,0.459307,0.0554023,0.463566,0.0663759,0.0372862,0.39077,0.157787,0.981271,0.205504,0.787638,0.603612,0.19779,0.540347,0.1275,0.789469,0.827672,0.12741,0.810558,0.862729,0.0245082,0.31857,0.460779,0.427842,0.312767,0.938435,0.0811505,0.639275,0.782708,0.811066,0.0396385,0.538485,0.836186,0.150802,0.834875,0.204162,0.0942951,0.902808,0.405474,0.313675,0.530541,0.965025,0.777726,0.976555,0.785203,0.499393,0.71029,0.291305,0.674586,0.2349,0.161862,0.980721,0.860787,0.182296,0.513401,0.32098,0.186293,0.934995,0.044986,0.5135,0.571504,0.297333,0.200805,0.97971,0.889987,0.124771,0.453746,0.799466,0.17342,0.952095,0.565945,0.846495,0.760241,0.305257,0.988486,0.409491,0.872099,0.918561,0.385863,0.564864,0.122929,0.234714,0.59976,0.307463,0.727694,0.0117624,0.492455,0.54567,0.186691,0.640582,0.779568,0.552818,0.987093,0.890908,0.0605008,0.807085,0.155277,0.772522,0.570674,0.706701,0.0659468,0.0346186,0.714223,0.603758,0.403938,0.971122,0.950301,0.6994,0.802567,0.181269,0.169894,0.849849,0.801979,0.953258,0.282729,0.263233,0.688601,0.203989,0.179699,0.568005,0.0315237,0.199009,0.642794,0.353567,0.988131,0.283914,0.491139,0.846948,0.499107,0.954444,0.942827,0.671752,0.760706,0.208673,0.254719,0.126701,0.694163,0.279112,0.272413,0.131119,0.644388,0.557205,0.222402,0.458005,0.120928,0.74014,0.105905,0.104913,0.635625,0.880975,0.775752,0.880891,0.0968788,0.0218122,0.398107,0.151761,0.475185,0.695704,0.130953,0.92514,0.64731,0.384123,0.51905,0.323955,0.401291,0.372578,0.966324,0.687213,0.716521,0.211604,0.844312,0.249204,0.0835386,0.81476,0.167225,0.000432432,0.243122,0.300105,0.779405,0.122636,0.743406,0.322676,0.798772,0.180606,0.320762,0.134265,0.506155,0.743408,0.981163,0.842931,0.546421,0.338751,0.780163,0.744515,0.984183,0.989489,0.0916615,0.989525,0.245242,0.645759,0.142191,0.822964,0.641468,0.0859125,0.326448,0.733466,0.902497,0.0711603,0.762331,0.241797,0.993781,0.457422,0.801353,0.324699,0.636989,0.0414965,0.0410151,0.283619,0.934077,0.219418,0.55187,0.651467,0.42454,0.174402,0.179132,0.819683,0.190045,0.649231,0.781017,0.650466,0.61691,0.1476,0.783488,0.24222,0.307944,0.214464,0.712928,0.604407,0.601474,0.880504,0.960154,0.165878,0.631423,0.2117,0.125698,0.351564,0.564164,0.0859817,0.300266,0.642626,0.444067,0.470746,0.18708,0.676491,0.867913,0.482324,0.617314,0.130879,0.738359,0.738166,0.18453,0.804205,0.080748,0.932703,0.362577,0.95903,0.408158,0.0233264,0.578006,0.567881,0.517882,0.69215,0.326298,0.679678,0.984831,0.612539,0.813696,0.395006,0.638101,0.186358,0.72759,0.464669,0.884306,0.785489,0.264398,0.655484,0.185334,0.424128,0.90923,0.432593,0.362411,0.560278,0.368119,0.763137,0.533236,0.345784,0.041005,0.0190755,0.544624,0.577011,0.00113857,0.498844,0.663709,0.803232,0.0296903,0.867312,0.969145,0.839944,0.683766,0.905671,0.542136,0.0334801,0.22688,0.790347,0.271353,0.826969,0.454727,0.599517,0.903943,0.59551,0.399684,0.812777,0.336457,0.465956,0.169179,0.762098,0.981995,0.939478,0.437144,0.416398,0.985509,0.29331,0.806687,0.293417,0.568774,0.706145,0.93911,0.274908,0.158942,0.209768,0.0554922,0.621943,0.0145271,0.413431,0.779182,0.446919,0.596484,0.328005,0.043749,0.665339,0.0978718,0.94386,0.462686,0.549569,0.965716,0.380781,0.447343,0.904072,0.340082,0.802866,0.616519,0.283279,0.58552,0.090109,0.259222,0.0419266,0.416526,0.978506,0.952707,0.214515,0.125174,0.501993,0.305532,0.925636,0.214416,0.329567,0.77035,0.243841,0.533872,0.887172,0.136958,0.142141,0.412161,0.52084,0.488198,0.614831,0.797734,0.233192,0.496058,0.102114,0.820876,0.902477,0.571685,0.604807,0.207737,0.262633,0.582148,0.959904,0.52536,0.325506,0.0940767,0.990363,0.241834,0.275672,0.551423,0.784695,0.543618,0.762729,0.182235,0.39829,0.0347287,0.229434,0.94315,0.0807016,0.360378,0.001046,0.706241,0.428004,0.138415,0.657729,0.946275,0.868787,0.827123,0.605075,0.0265204,0.538394,0.226852,0.9787,0.659374,0.734605,0.279859,0.891089,0.318761,0.972197,0.19623,0.866402,0.628998,0.993258,0.558537,0.955197,0.416536,0.711992,0.288794,0.850844,0.729937,0.776414,0.248604,0.521174,0.523726,0.814711,0.363373,0.694352,0.0250149,0.835884,0.05678,0.169729,0.906308,0.689034,0.846503,0.173536,0.911498,0.453993,0.0845613,0.272678,0.243658,0.770971,0.755567,0.698557,0.921601,0.577184,0.729722,0.951497,0.926543,0.8747,0.0480847,0.881166,0.295962,0.298721,0.46272,0.898784,0.495963,0.378466,0.630522,0.93383,0.538619,0.541323,0.872181,0.353965,0.78378,0.826608,0.994007,0.721823,0.355873,0.496415,0.71833,0.15586,0.0662884,0.82162,0.911944,0.59939,0.176133,0.72774,0.846109,0.197313,0.994654,0.829403,0.00821257,0.0181656,0.291728,0.552583,0.572445,0.212428,0.0290681,0.075703,|0.884604,0.560201,0.632074,0.46457,0.0309378,0.743443,0.861503,0.669332,0.841702,0.0456718,0.996096,0.939938,0.614344,0.16187,0.45717,0.439182,0.460675,0.605102,0.85338,0.496386,0.687735,0.986813,0.724401,0.89374,0.350688,0.107919,0.713626,0.161858,0.641389,0.76684,0.254483,0.760761,0.234269,0.270535,0.103058,0.751868,0.613251,0.900801,0.424565,0.229781,0.138381,0.223852,0.656032,0.0982002,0.217015,0.376198,0.865618,0.924626,0.563995,0.362403,0.206962,0.237377,0.403303,0.446923,0.326382,0.654368,0.692646,0.183746,0.261717,0.778049,0.997222,0.789269,0.0545899,0.351791,0.785796,0.48917,0.28601,0.876195,0.953066,0.046712,0.950603,0.772847,0.846388,0.705948,0.0110333,0.310722,0.560161,0.80311,0.379395,0.593564,0.865007,0.371552,0.814684,0.529644,0.203173,0.77921,0.0968092,0.349424,0.541968,0.69315,0.104142,0.0936808,0.311291,0.767783,0.344588,0.992516,0.652453,0.902187,0.0778155,0.419762,0.870914,0.0863314,0.626697,0.0435189,0.207521,0.224473,0.647098,0.0824348,0.559658,0.944843,0.446825,0.213731,0.0964544,0.541616,0.617809,0.56624,0.694386,0.33593,0.826356,0.13058,0.339696,0.320278,0.350674,0.750438,0.612753,0.262896,0.131297,0.860793,0.984935,0.788792,0.153628,0.969053,0.88979,0.274577,0.959343,0.126975,0.301652,0.3369,0.560465,0.51544,0.140395,0.310381,0.967109,0.309271,0.574008,0.886215,0.863103,0.124126,0.000703573,0.551466,0.90462,0.220648,0.244003,0.562706,0.725356,0.715074,0.879724,0.808319,0.1674,0.515383,0.45724,0.535384,0.639656,0.0876777,0.0402635,0.569848,0.244437,0.512471,0.161122,0.542992,0.925641,0.133815,0.164624,0.884307,0.16691,0.706657,0.160495,0.350655,0.414401,0.981866,0.177712,0.75988,0.0542789,0.85535,0.661738,0.937558,0.156678,0.136569,0.861451,0.0198768,0.145021,0.520285,0.0371588,0.687308,0.927324,0.103022,0.0113006,0.0935659,0.257988,0.144752,0.586718,0.876762,0.420661,0.546236,0.192689,0.344137,0.488462,0.861431,0.567776,0.617749,0.194676,0.110882,0.0128547,0.657033,0.421101,0.916659,0.0877845,0.592533,0.688974,0.315674,0.00991619,0.332783,0.719317,0.703342,0.551703,0.0536128,0.377425,0.952306,0.623707,0.00469142,0.857466,0.179543,0.88288,0.0792816,0.509077,0.165003,0.786041,0.973754,0.0364774,0.198173,0.0967268,0.841866,0.332695,0.0520661,0.486497,0.0946356,0.159863,0.170087,0.702948,0.850574,0.139017,0.142273,0.528319,0.916958,0.620193,0.509881,0.197044,0.911922,0.389184,0.857752,0.0415419,0.987342,0.48292,0.774547,0.663467,0.225932,0.923151,0.697049,0.345996,0.676749,0.597639,0.32181,0.402224,0.056582,0.454945,0.929312,0.29268,0.908143,0.378894,0.759655,0.0889121,0.351988,0.336577,0.451564,0.274739,0.929004,0.468514,0.928259,0.409045,0.813269,0.694347,0.685398,0.262533,0.908761,0.456457,0.708797,0.369749,0.970113,0.814313,0.24555,0.920069,0.6095,0.53257,0.525131,0.0295315,0.725572,0.372403,0.241979,0.592857,0.267785,0.412576,0.672832,0.094116,0.382799,0.263293,0.904843,0.637308,0.43651,0.867693,0.238627,0.00484586,0.370539,0.218951,0.790807,0.54575,0.947141,0.0604686,0.401426,0.735861,0.266901,0.124931,0.604413,0.648716,0.77762,0.284032,0.127772,0.236831,0.255313,0.75187,0.773721,0.779193,0.161251,0.596743,0.491933,0.385293,0.139967,0.195527,0.57999,0.394198,0.223966,0.872007,0.832853,0.376351,0.226836,0.29532,0.515417,0.632704,0.462558,0.227294,0.781578,0.415505,0.575252,0.698914,0.415272,0.272078,0.0763577,0.374051,0.823749,0.390047,0.544467,0.895498,0.803359,0.900782,0.975544,0.863498,0.946284,0.80202,0.8487,0.538099,0.402909,0.31741,0.193826,0.969996,0.492127,0.257793,0.875962,0.612123,0.261101,0.549079,0.466228,0.340535,0.556619,0.867083,0.328813,0.660962,0.912473,0.105616,0.0143991,0.289129,0.791104,0.138431,0.251393,0.572927,0.0312057,0.650335,0.316254,0.562584,0.747138,0.253712,0.981624,0.200003,0.964831,0.765315,0.22222,0.12378,0.960139,0.176919,0.340562,0.745264,0.254901,0.390205,0.874957,0.455744,0.556655,0.989746,0.3456,0.548542,0.0679255,0.113518,0.711979,0.374318,0.981032,0.176702,0.457165,0.754933,0.0542212,0.507742,0.906219,0.313059,0.198941,0.156276,0.949746,0.820574,0.799353,0.351181,0.377178,0.438652,0.132314,0.385266,0.443072,0.249853,0.5745,0.167895,0.700896,0.450181,0.744728,0.703805,0.434579,0.713228,0.0151891,0.838798,0.57866,0.239833,0.873297,0.569996,0.251862,0.112164,0.349812,0.313344,0.999657,0.991266,0.75755,0.691726,0.390416,0.0188671,0.152966,0.0447769,0.439801,0.405486,0.638429,0.391522,0.947531,0.871441,0.403264,0.712204,0.869762,0.367296,0.00792998,0.995871,0.415053,0.749794,0.876453,0.0930327,0.566071,0.477827,0.0356398,0.191186,0.735729,0.568883,0.79104,0.00759739,0.434862,0.43344,0.00972182,0.661592,0.857947,0.629867,0.0631521,0.531731,0.0920752,0.3126,0.369951,0.506293,0.812292,0.580296,0.665379,0.591351,0.761086,0.939715,0.146805,0.0189984,0.460186,0.027491,0.145365,0.690328,0.414843,0.38138,0.694548,0.405194,0.542192,0.997398,0.598254,0.17136,0.726551,0.778488,0.368046,0.60926,0.8133,0.525586,0.428967,0.621629,0.155533,0.636763,0.520579,0.725866,0.604649,0.158269,0.958959,0.121207,0.787166,0.852061,0.944011,0.574231,0.832521,0.151631,0.55936,0.793673,0.572027,0.673087,0.209531,0.350359,0.476606,0.904135,0.552101,0.490979,0.984369,0.362879,0.0990072,0.117519,0.883684,0.77396,0.990709,0.822296,0.924837,0.477898,0.78221,0.390578,0.0157326,0.381678,0.925129,0.583335,0.583678,0.725097,0.220849,0.312989,0.411479,0.215526,0.0321707,0.935669,0.339413,0.546826,0.0944597,0.902257,0.761451,0.493751,0.905992,0.327336,0.984536,0.859478,0.261555,0.842068,0.997691,0.135654,0.609679,0.37148,0.176155,0.316425,0.780599,0.751117,0.0676004,0.233442,0.133493,0.127534,0.25851,0.862126,0.0508134,0.314294,0.46207,0.561168,0.206296,0.96197,0.589221,0.323324,0.391257,0.879582,0.519905,0.782655,0.503401,0.596155,0.503501,0.39888,0.310428,0.545762,0.0679109,0.714562,0.148776,0.0562266,0.102223,0.869276,0.41409,0.125515,0.839534,0.584951,0.899714,0.437644,0.750909,0.331498,0.79825,0.217364,0.0553239,0.794812,0.792601,0.254341,0.332789,0.0523703,0.791558,0.0933313,0.91686,0.327909,0.750281,0.612566,0.745013,0.324974,0.758221,0.243397,0.377438,0.505416,0.329734,0.25985,0.642316,0.332136,0.143998,0.224926,0.414866,0.237793,0.0743339,0.0478165,0.266507,0.612506,0.663397,0.74105,0.209055,0.890144,0.0565088,0.0757869,0.198833,0.91008,0.718541,0.566758,0.722724,0.903058,0.344968,0.780942,0.429843,0.418884,0.952993,0.744315,0.819169,0.386383,0.104269,0.732309,0.209161,0.716492,0.711965,0.197759,0.0381992,0.775971,0.526901,0.494422,0.580472,0.975214,0.552834,0.739676,0.582745,0.799174,0.432148,0.798607,0.526157,0.68246,0.40453,0.561863,0.792376,0.715126,0.823759,0.00663441,0.169714,0.97641,0.0162341,0.69644,0.450563,0.196643,0.658671,0.767034,0.134279,0.857972,0.0541772,0.56603,0.682769,0.320134,0.638245,0.696841,0.345825,0.549083,0.657462,0.165743,0.780523,0.272137,0.322141,0.521621,0.598027,0.835134,0.185386,0.414193,0.649726,0.241694,0.750357,0.288655,0.448693,0.334265,0.371263,0.562818,0.649079,0.177468,0.410444,0.475989,0.915965,0.556035,0.524098,0.926031,0.497601,0.232222,0.761471,0.504734,0.466347,0.809064,0.154638,0.719547,0.00226766,0.434283,0.778935,0.57914,0.962903,0.117576,0.935555,0.0997455,0.821535,0.137739,0.949658,0.807206,0.443013,0.322552,0.784841,0.0690461,0.371973,0.986563,0.35407,0.952772,0.399543,0.324734,0.291502,0.686876,0.70341,0.0304304,0.69964,0.59758,0.776409,0.1629,0.914171,0.610035,0.354428,0.0311652,0.886007,0.747183,0.362572,0.282322,0.238917,0.657522,0.743872,0.557533,0.774795,0.577098,0.484499,0.258362,0.706163,0.996599,0.670913,0.268982,0.670206,0.650436,0.00218296,0.380082,0.634835,0.666973,0.974651,0.574068,0.350766,0.460733,0.71765,0.290986,0.0609589,0.555083,0.442085,0.278579,0.66293,0.373386,0.222157,0.841056,0.27615,0.898492,0.842638,0.43395,0.766673,0.944461,0.573385,0.190062,0.784356,0.661633,0.531429,0.434345,0.680747,0.0174851,0.638118,0.635976,0.21815,0.972327,0.453462,0.712364,0.362346,0.481069,0.497288,0.623649,0.176588,0.120089,0.187507,0.457733,0.902688,0.236587,0.0250685,0.963596,0.200401,0.0102987,0.569953,0.994413,0.485844,0.45966,0.903711,0.491324,0.174806,0.304799,0.680694,0.988357,0.430656,0.120245,0.720185,0.486539,0.448117,0.301038,0.1386,0.883905,0.411511,0.453646,0.884836,0.626054,0.684994,0.36253,0.360066,0.241357,0.2437,0.668485,0.205048,0.495161,0.41623,0.0668638,0.440654,0.908033,0.406125,0.133798,0.3981,0.505878,0.561377,0.0594917,0.697818,0.454875,0.133101,0.0744213,0.911343,0.46778,0.782889,0.874432,0.64075,0.384233,0.739697,0.821332,0.705327,0.785654,0.470259,0.7218,0.289587,0.0402696,0.32532,0.521068,0.751705,0.750976,0.857559,0.572006,0.829438,0.282416,0.414896,0.746297,0.594786,0.314002,0.814823,0.668938,0.266912,0.958721,0.0585811,0.635585,0.456976,0.469239,0.517417,0.348608,0.220152,0.454094,0.435129,0.833411,0.682027,0.56294,0.313463,0.180777,0.905421,0.581768,0.790247,0.794582,0.181598,0.460112,0.225578,0.220241,0.217342,0.288405,0.803332,0.857016,0.89216,0.766944,0.751714,0.905978,0.120964,0.801926,0.557156,0.425978,0.19842,0.553703,0.378999,0.221783,0.0582361,0.670943,0.433802,0.184129,0.637387,0.233279,0.785006,|0.186281,0.261011,0.349907,0.802762,0.792964,0.80636,0.245545,0.941425,0.794464,0.793776,0.632227,0.965408,0.490281,0.183697,0.632835,0.8092,0.201189,0.467406,0.185053,0.321975,0.753803,0.794222,0.367973,0.92118,0.984661,0.961024,0.22486,0.711597,0.464484,0.85678,0.29021,0.757701,0.968182,0.740302,0.0072009,0.009893,0.782514,0.0360128,0.249026,0.463273,0.51658,0.74129,0.378131,0.275771,0.0724953,0.0160549,0.607114,0.458479,0.513078,0.497393,0.0457415,0.745259,0.115025,0.00838381,0.13541,0.541309,0.947141,0.776237,0.723293,0.74417,0.106021,0.301908,0.218759,0.384703,0.420999,0.373728,0.313963,0.706936,0.0723801,0.348289,0.565081,0.797822,0.0610387,0.850169,0.918889,0.447838,0.745217,0.0425348,0.683856,0.972793,0.429474,0.337114,0.892415,0.315223,0.989506,0.91903,0.058007,0.218412,0.0267821,0.202421,0.308051,0.552518,0.328478,0.664362,0.761491,0.486708,0.65231,0.441051,0.432755,0.336468,0.800697,0.626175,0.685904,0.345882,0.582432,0.221659,0.527507,0.374969,0.464065,0.11867,0.719504,0.118107,0.594883,0.216303,0.0542149,0.851353,0.745257,0.975196,0.442414,0.631285,0.803644,0.380249,0.2426,0.0224453,0.209533,0.74766,0.656631,0.209174,0.301647,0.845028,0.628239,0.801746,0.673135,0.262124,0.533744,0.0270919,0.45418,0.204521,0.289478,0.0217472,0.557302,0.987626,0.711661,0.0283992,0.818573,0.289254,0.0694941,0.558108,0.670342,0.680797,0.467155,0.829556,0.375826,0.337119,0.624475,0.308553,0.932481,0.611921,0.908356,0.767989,0.106847,0.630961,0.476787,0.878271,0.948771,0.549482,0.0665876,0.966902,0.681345,0.164615,0.713333,0.423754,0.37067,0.681867,0.295948,0.944061,0.426412,0.543903,0.424002,0.232147,0.369525,0.256132,0.406236,0.856453,0.174719,0.628007,0.486538,0.186324,0.0460362,0.136426,0.247498,0.845411,0.296262,0.777463,0.157421,0.898552,0.0213108,0.487707,0.712044,0.487221,0.567689,0.118538,0.554143,0.206956,0.712208,0.999231,0.353653,0.0518094,0.818791,0.208267,0.112751,0.0387723,0.564996,0.839174,0.339829,0.589107,0.741757,0.745782,0.771689,0.907319,0.0675415,0.427624,0.955291,0.858043,0.094824,0.28392,0.561435,0.238665,0.635284,0.497197,0.502369,0.897155,0.193086,0.647808,0.847022,0.871004,0.15915,0.476448,0.196772,0.654603,0.166606,0.64757,0.365121,0.489026,0.00756472,0.220439,0.597839,0.0406179,0.548487,0.756122,0.0352033,0.160902,0.191248,0.430264,0.955085,0.181493,0.723433,0.656701,0.746691,0.29101,0.0749219,0.601422,0.782879,0.940859,0.134413,0.542363,0.8455,0.612285,0.327314,0.621669,0.358776,0.160571,0.772651,0.514937,0.154008,0.415198,0.58024,0.759775,0.387146,0.499129,0.0200605,0.0855399,0.494083,0.927075,0.709177,0.250502,0.599429,0.647068,0.961361,0.10308,0.0164664,0.570132,0.765861,0.906624,0.543861,0.362623,0.899283,0.713691,0.801905,0.683959,0.989823,0.650369,0.993939,0.328331,0.598044,0.543476,0.757156,0.643934,0.66495,0.529998,0.235593,0.297531,0.905875,0.64434,0.385337,0.340706,0.704187,0.365963,0.86227,0.483627,0.35744,0.341122,0.234753,0.58118,0.164989,0.147236,0.525135,0.0121462,0.0625778,0.422843,0.299683,0.744727,0.10603,0.263527,0.984643,0.970491,0.872382,0.631148,0.463149,0.431025,0.953467,0.829014,0.0813034,0.926737,0.577734,0.317399,0.345978,0.885602,0.477101,0.925252,0.891182,0.90282,0.214643,0.944621,0.947319,0.0660895,0.15191,0.776839,0.679156,0.37982,0.415762,0.4004,0.384217,0.795634,0.980877,0.967897,0.792106,0.143313,0.170692,0.973714,0.0716332,0.471324,0.836746,0.713733,0.605942,0.678946,0.31883,0.291729,0.30318,0.0144409,0.325016,0.307194,0.00101143,0.0612358,0.258773,0.924878,0.581826,0.174825,0.395567,0.808768,0.344506,0.899886,0.369915,0.82597,0.357472,0.957723,0.42875,0.679222,0.880901,0.677811,0.624541,0.609289,0.300579,0.253777,0.150283,0.243893,0.111207,0.500328,0.475781,0.244432,0.183266,0.38737,0.273839,0.702032,0.747289,0.924265,0.687864,0.387732,0.140467,0.953925,0.207097,0.496239,0.763771,0.0647937,0.295806,0.0381634,0.468223,0.95647,0.594443,0.854323,0.511488,0.264325,0.173077,0.793319,0.215615,0.88357,0.740872,0.977131,0.079822,0.411703,0.940766,0.956548,0.769271,0.177835,0.230404,0.703641,0.892659,0.737681,0.269988,0.846829,0.516137,0.801678,0.935732,0.30432,0.354857,0.193783,0.712331,0.754257,0.0836542,0.179966,0.963063,0.0137717,0.430962,0.0353534,0.3206,0.458254,0.748325,0.751373,0.253558,0.282446,0.354838,0.620029,0.0854829,0.785907,0.330389,0.598384,0.952952,0.069591,0.0237948,0.077768,0.968435,0.81525,0.969682,0.243987,0.280011,0.480494,0.343111,0.985445,0.934111,0.838207,0.191704,0.616617,0.629935,0.492633,0.733892,0.155505,0.0298324,0.961862,0.291332,0.713288,0.531575,0.0405435,0.363347,0.389926,0.946364,0.181459,0.363799,0.603679,0.511705,0.00547957,0.0609326,0.278966,0.611195,0.581813,0.400542,0.198055,0.290888,0.603676,0.857718,0.464974,0.333803,0.05857,0.565388,0.855428,0.515141,0.0279651,0.106708,0.419849,0.857222,0.983898,0.522588,0.442646,0.987453,0.20746,0.628026,0.57671,0.584695,0.511033,0.501274,0.369791,0.389897,0.272572,0.969279,0.996087,0.74045,0.951577,0.862724,0.790288,0.331767,0.232461,0.819554,0.734057,0.30587,0.956712,0.0248059,0.21744,0.123172,0.785195,0.026063,0.881816,0.265635,0.670237,0.832431,0.969277,0.0527125,0.378393,0.728673,0.79374,0.645017,0.887461,0.255674,0.648435,0.629805,0.0137511,0.391201,0.651919,0.318393,0.616932,0.971636,0.282263,0.520312,0.361479,0.380277,0.185844,0.0187561,0.752355,0.855801,0.917715,0.507144,0.0865114,0.0600545,0.340376,0.333078,0.297736,0.900053,0.469774,0.0218086,0.120133,0.0324654,0.984587,0.712524,0.086755,0.256998,0.466355,0.928666,0.114115,0.138555,0.190348,0.612109,0.512274,0.734868,0.869777,0.35956,0.234082,0.212749,0.279887,0.134072,0.498247,0.617854,0.423495,0.139681,0.759542,0.223197,0.193184,0.193581,0.675479,0.614264,0.485239,0.00467551,0.977174,0.649878,0.0869023,0.199507,0.287257,0.179936,0.0996971,0.21155,0.758599,0.607231,0.533933,0.614857,0.0997852,0.201598,0.357842,0.625199,0.252227,0.268169,0.667316,0.162771,0.0549125,0.885984,0.896693,0.54499,0.244506,0.137396,0.601916,0.287795,0.71065,0.332988,0.659152,0.231529,0.898318,0.00953376,0.340588,0.939818,0.0738635,0.649922,0.407662,0.898572,0.461273,0.983134,0.502498,0.330334,0.715204,0.453765,0.576191,0.448944,0.898234,0.685072,0.351568,0.86262,0.71816,0.0703714,0.241576,0.548076,0.511056,0.0642595,0.625869,0.0131684,0.860932,0.0862526,0.169425,0.662719,0.423001,0.141913,0.915808,0.446737,0.957746,0.0995648,0.404889,0.579498,0.567206,0.520206,0.919209,0.180747,0.149647,0.449857,0.769753,0.259683,0.0653766,0.851623,0.82715,0.689421,0.801339,0.422776,0.166657,0.767559,0.0528095,0.873209,0.727198,0.605682,0.759072,0.856288,0.168765,0.728819,0.00966728,0.210452,0.847638,0.838345,0.597612,0.554518,0.0386876,0.194277,0.0293174,0.873135,0.832927,0.561279,0.118151,0.857499,0.345393,0.923588,0.318015,0.797531,0.518608,0.315184,0.808446,0.519449,0.708519,0.660286,0.974659,0.6468,0.423401,0.969741,0.361304,0.895215,0.97583,0.289356,0.848423,0.305007,0.775471,0.766755,0.670942,0.291478,0.327584,0.224272,0.445755,0.181364,0.684406,0.0186458,0.0721528,0.106785,0.241346,0.856657,0.528745,0.879905,0.741607,0.620507,0.147799,0.590734,0.795826,0.204242,0.53678,0.874424,0.656475,0.139822,0.572305,0.318954,0.69907,0.316634,0.271245,0.0560912,0.479278,0.948025,0.576714,0.236988,0.0874672,0.578284,0.947368,0.303104,0.835708,0.861707,0.476552,0.338471,0.986307,0.60029,0.86625,0.54843,0.726523,0.0221882,0.255451,0.267377,0.434119,0.180296,0.61206,0.326676,0.618269,0.257717,0.247744,0.105595,0.252417,0.994715,0.183763,0.667482,0.663296,0.258012,0.324937,0.784093,0.178797,0.372344,0.928323,0.054562,0.566138,0.893475,0.38985,0.276547,0.439442,0.124991,0.973189,0.951208,0.109042,0.113317,0.0852044,0.287513,0.944714,0.736159,0.884366,0.752082,0.665048,0.580818,0.798364,0.304352,0.613275,0.121543,0.655283,0.287575,0.210807,0.742634,0.255963,0.25297,0.470459,0.616257,0.330465,0.531218,0.888055,0.693964,0.56562,0.124259,0.706911,0.977477,0.992648,0.786047,0.159318,0.177334,0.481386,0.566482,0.17784,0.320892,0.722583,0.811454,0.856958,0.863039,0.239096,0.445224,0.689615,0.417435,0.033048,0.83204,0.581723,0.346803,0.541083,0.0923167,0.455763,0.289767,0.524774,0.721322,0.889535,0.302773,0.189941,0.26627,0.272412,0.191369,0.717852,0.259663,0.597288,0.299484,0.0881265,0.675847,0.224259,0.688014,0.0644984,0.804033,0.745086,0.217916,0.274146,0.865037,0.176685,0.954264,0.444309,0.453508,0.317102,0.415778,0.273446,0.194058,0.000925958,0.189174,0.0696377,0.88809,0.542781,0.976117,0.055153,0.0634081,0.784184,0.364667,0.599172,0.19235,0.752547,0.296918,0.479462,0.234343,0.704338,0.831154,0.91762,0.793222,0.116063,0.755903,0.00989419,0.509,0.313253,0.11327,0.0293608,0.638117,0.193864,0.477265,0.203955,0.625323,0.174565,0.31495,0.157976,0.809761,0.338108,0.172718,0.867343,0.952277,0.742057,0.206274,0.508671,0.825531,0.904829,0.387554,0.017141,0.822427,0.133481,0.913353,0.419537,0.0100582,0.772326,0.271077,0.0872113,0.172039,0.10157,0.717212,0.462365,0.0768812,0.06287,0.330803,0.506347,0.328837,0.422007,0.493619,0.92349,0.406465,0.66225,0.554605,0.165116,0.0913244,0.741158,0.059345,0.488952,0.698054,0.703303,|0.989574,0.0753015,0.705766,0.580099,0.112096,0.674074,0.454263,0.609258,0.850828,0.916101,0.534203,0.86411,0.537989,0.503169,0.575723,0.979558,0.366306,0.749414,0.725405,0.605338,0.305684,0.237567,0.813917,0.150703,0.737881,0.497817,0.180585,0.978403,0.892102,0.293711,0.0769516,0.947102,0.736075,0.00625896,0.266445,0.8135,0.11096,0.797463,0.538656,0.614337,0.665019,0.264707,0.94157,0.56052,0.00402743,0.341674,0.37491,0.0183268,0.686611,0.388187,0.780003,0.604653,0.0778771,0.690603,0.0270083,0.890338,0.51544,0.879694,0.00806922,0.437436,0.04071,0.16185,0.395081,0.486875,0.3764,0.011956,0.370684,0.920675,0.606846,0.927209,0.102325,0.613293,0.284037,0.262202,0.835576,0.911847,0.163688,0.429502,0.344018,0.974669,0.37732,0.0103068,0.845538,0.383973,0.794087,0.983566,0.724188,0.864554,0.214789,0.608962,0.0996066,0.232094,0.660415,0.771526,0.0678464,0.845874,0.157279,0.762815,0.674934,0.142235,0.700369,0.514678,0.0310963,0.678423,0.797268,0.457551,0.213274,0.0360937,0.657703,0.778448,0.70046,0.328684,0.694917,0.469165,0.584437,0.304811,0.61751,0.649257,0.637734,0.736942,0.923667,0.134247,0.683779,0.636408,0.961848,0.843083,0.277879,0.791245,0.429918,0.600188,0.541394,0.287898,0.21059,0.63884,0.688728,0.745997,0.168701,0.358243,0.683607,0.0724218,0.514922,0.900974,0.641054,0.204676,0.692965,0.95379,0.525008,0.538646,0.120379,0.0643534,0.105273,0.992172,0.675189,0.52349,0.618809,0.225417,0.551126,0.879781,0.762955,0.31104,0.322214,0.288123,0.0459171,0.43571,0.678494,0.366607,0.0316306,0.489869,0.00611204,0.31059,0.77822,0.755622,0.469573,0.0407724,0.783596,0.870256,0.520382,0.525442,0.59731,0.605302,0.333187,0.887692,0.156646,0.896272,0.845665,0.795069,0.531379,0.894177,0.229411,0.433296,0.179708,0.782459,0.128117,0.143106,0.472641,0.338767,0.406922,0.0641195,0.0357203,0.787386,0.185957,0.0994399,0.463845,0.951978,0.645572,0.0406877,0.701584,0.399794,0.388008,0.559605,0.574251,0.625747,0.13992,0.281152,0.713909,0.821389,0.630601,0.999085,0.530586,0.899137,0.416448,0.910949,0.359843,0.656863,0.397974,0.869311,0.557817,0.39595,0.132424,0.943496,0.193304,0.623981,0.908116,0.896249,0.117959,0.511238,0.0974972,0.736069,0.382328,0.322921,0.88574,0.0745787,0.25909,0.680709,0.885833,0.854706,0.697818,0.90666,0.0562918,0.943046,0.0380778,0.695502,0.605828,0.346257,0.46092,0.487388,0.392115,0.722346,0.218009,0.658864,0.204281,0.0238565,0.0671034,0.606499,0.307775,0.762422,0.511399,0.381147,0.39837,0.686479,0.190673,0.557302,0.03057,0.665847,0.734263,0.467332,0.267803,0.412499,0.516352,0.302788,0.464872,0.514921,0.942534,0.307349,0.305601,0.528326,0.032649,0.602012,0.124373,0.202849,0.996629,0.660709,0.764989,0.429151,0.690434,0.312392,0.812774,0.0620817,0.247219,0.767204,0.714076,0.835834,0.487462,0.273979,0.202656,0.779898,0.12093,0.654404,0.906558,0.181978,0.73739,0.308601,0.0239215,0.475418,0.338335,0.815474,0.191696,0.319549,0.313493,0.2086,0.902018,0.359774,0.102499,0.213317,0.930098,0.709577,0.980278,0.615901,0.290637,0.0110838,0.84208,0.870864,0.532904,0.971877,0.0429602,0.114498,0.000884533,0.521953,0.710404,0.510764,0.324832,0.979913,0.415074,0.770862,0.195316,0.352956,0.130058,0.510927,0.00646913,0.82575,0.854576,0.782921,0.640975,0.142869,0.613121,0.091879,0.546852,0.0142678,0.925848,0.0910346,0.990219,0.999885,0.0134243,0.88302,0.873017,0.521029,0.407836,0.054277,0.13472,0.0767179,0.144259,0.69989,0.113936,0.213955,0.90963,0.588332,0.937313,0.261152,0.704872,0.519738,0.0641109,0.0111266,0.246398,0.612482,0.4555,0.295593,0.516242,0.382166,0.44615,0.22184,0.980136,0.0878637,0.351108,0.828649,0.0837625,0.309671,0.408484,0.30557,0.484462,0.703692,0.964282,0.452147,0.362522,0.301902,0.106597,0.805596,0.260507,0.0272052,0.905787,0.33687,0.686441,0.651197,0.73553,0.377136,0.886115,0.851247,0.098834,0.432024,0.136612,0.10707,0.182058,0.501304,0.156585,0.5364,0.0556061,0.699871,0.85044,0.0126255,0.282494,0.275912,0.583386,0.290989,0.898047,0.889573,0.326407,0.602475,0.960116,0.546464,0.959951,0.452811,0.954178,0.915175,0.117852,0.215987,0.467164,0.201829,0.988413,0.284646,0.277226,0.995168,0.539345,0.223891,0.316722,0.432907,0.851282,0.83304,0.88555,0.543151,0.795186,0.898725,0.979791,0.810499,0.0747737,0.31339,0.764652,0.527398,0.95584,0.315922,0.794554,0.0451218,0.3231,0.384278,0.407053,0.521886,0.772101,0.784029,0.678544,0.0887195,0.343805,0.324732,0.915514,0.652253,0.184617,0.846296,0.0959712,0.939576,0.941807,0.492352,0.094412,0.590205,0.191105,0.240533,0.144316,0.927763,0.94576,0.982987,0.308938,0.929863,0.326056,0.954416,0.096793,0.808572,0.605736,0.58565,0.134206,0.609422,0.794617,0.0578018,0.16127,0.912863,0.653662,0.000741541,0.700711,0.0339352,0.482601,0.0394383,0.581644,0.594009,0.457097,0.650354,0.212451,0.802403,0.262856,0.268662,0.26648,0.230504,0.111395,0.301549,0.237504,0.764291,0.853944,0.811642,0.106416,0.560731,0.846637,0.867372,0.232118,0.260572,0.495106,0.406879,0.0331903,0.289724,0.109381,0.191378,0.189688,0.539705,0.198792,0.238349,0.0143355,0.994587,0.571351,0.780523,0.967516,0.925822,0.97783,0.699491,0.696742,0.320572,0.663799,0.655866,0.352273,0.887398,0.443957,0.0695076,0.929732,0.991137,0.955763,0.455635,0.208283,0.111942,0.364311,0.225408,0.461295,0.213584,0.793932,0.0976478,0.919453,0.937456,0.727027,0.234304,0.400816,0.744293,0.196253,0.688557,0.00135809,0.0927793,0.202433,0.129479,0.11282,0.995492,0.115394,0.0881374,0.895936,0.391743,0.161709,0.529472,0.910014,0.841935,0.597626,0.644964,0.429164,0.371211,0.976823,0.951489,0.381338,0.836068,0.911418,0.858454,0.867769,0.190364,0.524781,0.0801371,0.176681,0.661414,0.38381,0.688547,0.21346,0.69299,0.419892,0.871952,0.134152,0.160729,0.402881,0.982587,0.537312,0.618216,0.710473,0.0167669,0.118445,0.245881,0.378877,0.76638,0.798421,0.776068,0.252177,0.656483,0.75049,0.223962,0.144798,0.586717,0.550964,0.530256,0.00465882,0.137315,0.738864,0.300823,0.542344,0.596569,0.641842,0.978328,0.534761,0.088475,0.840699,0.951981,0.48404,0.854689,0.1818,0.343176,0.387453,0.862243,0.0170929,0.562357,0.627219,0.155612,0.684138,0.706959,0.978805,0.938348,0.699074,0.0514423,0.19619,0.277076,0.620201,0.0115675,0.898609,0.443371,0.844598,0.818281,0.275532,0.647529,0.22662,0.205085,0.0705506,0.0921793,0.854946,0.320093,0.610187,0.600908,0.674139,0.249988,0.766921,0.591352,0.662256,0.538068,0.66057,0.0438443,0.662125,0.0154237,0.0874834,0.994824,0.471783,0.337655,0.723117,0.885211,0.505388,0.933589,0.0609295,0.940311,0.63436,0.306829,0.726513,0.23339,0.628362,0.0855683,0.333929,0.724901,0.297364,0.310587,0.711737,0.326465,0.34673,0.805475,0.148619,0.783254,0.335166,0.561754,0.615638,0.930465,0.906053,0.628367,0.785149,0.985781,0.584368,0.344384,0.0303652,0.244581,0.175821,0.486563,0.926903,0.741753,0.075119,0.359964,0.716838,0.698357,0.900454,0.700578,0.564925,0.143852,0.946447,0.957001,0.503136,0.725612,0.351113,0.753043,0.333318,0.484699,0.362273,0.442576,0.804507,0.347053,0.419053,0.62255,0.605658,0.856676,0.729751,0.387445,0.81302,0.905802,0.578264,0.698822,0.169765,0.332461,0.232759,0.184616,0.769173,0.0541274,0.104883,0.462893,0.432066,0.178427,0.0326765,0.748333,0.211403,0.634903,0.47626,0.608186,0.793234,0.564297,0.97586,0.0934943,0.0198373,0.651771,0.0264911,0.13906,0.88646,0.183699,0.62103,0.519876,0.885801,0.90261,0.878919,0.0351802,0.319017,0.84203,0.242057,0.695074,0.808715,0.265866,0.666146,0.580654,0.257994,0.574424,0.0361543,0.986792,0.0168369,0.749263,0.995882,0.101941,0.073555,0.38223,0.230112,0.304327,0.603991,0.0203611,0.340734,0.442174,0.534098,0.794227,0.865075,0.855379,0.251311,0.131443,0.564042,0.919398,0.186625,0.754348,0.323862,0.576677,0.705741,0.32767,0.780599,0.522467,0.101913,0.229209,0.927225,0.554596,0.136199,0.728757,0.0672753,0.914732,0.662646,0.199456,0.217562,0.697662,0.296439,0.750481,0.149736,0.0350405,0.717107,0.803334,0.26108,0.197464,0.741978,0.493151,0.394875,0.985427,0.678405,0.772554,0.0455484,0.423594,0.18108,0.386106,0.446014,0.549835,0.366066,0.0265079,0.991747,0.895174,0.952995,0.660363,0.604661,0.594064,0.770535,0.748274,0.765914,0.116895,0.769903,0.736935,0.858221,0.139992,0.468346,0.392061,0.578372,0.144346,0.896268,0.513498,0.694444,0.0693995,0.427691,0.325207,0.120979,0.168131,0.471081,0.0421163,0.504065,0.642684,0.028222,0.885304,0.166505,0.0611406,0.805196,0.701916,0.708068,0.558152,0.999893,0.0135201,0.576995,0.330872,0.801283,0.0970012,0.154035,0.429129,0.127244,0.566584,0.975751,0.197631,0.691237,0.592396,0.639304,0.831158,0.473362,0.386177,0.697669,0.328245,0.0144007,0.638031,0.624048,0.368411,0.262774,0.724841,0.421191,0.133857,0.647458,0.348926,0.313305,0.915691,0.709793,0.12525,0.283707,0.682296,0.444329,0.557966,0.627733,0.381334,0.665497,0.143672,0.424946,0.603558,0.582454,0.602426,0.42503,0.423407,0.643495,0.545226,0.850707,0.476439,0.583291,0.196877,0.606283,0.0883896,0.901855,0.218664,0.687015,0.40393,0.586721,0.58545,0.791449,0.753932,0.236335,0.877127,0.372109,0.304922,0.495815,0.651429,0.139049,0.435994,0.633493,0.473449,0.643539,0.633519,0.200896,0.541431,0.563266,0.852809,0.195127,0.772094,0.960666,0.792895,0.419892,0.337993,|0.0935331,0.596099,0.560032,0.676794,0.721827,0.687908,0.733779,0.36294,0.0943201,0.37464,0.767195,0.0982714,0.130931,0.240857,0.240439,0.87383,0.564955,0.425496,0.84539,0.474574,0.400428,0.412011,0.694332,0.633885,0.387664,0.482654,0.0664387,0.77493,0.750638,0.0105191,0.331725,0.292717,0.00538647,0.457428,0.806456,0.776633,0.256635,0.517212,0.259414,0.928978,0.523593,0.874008,0.708165,0.792372,0.979301,0.0786289,0.440678,0.190875,0.582484,0.377952,0.678164,0.387696,0.867725,0.565944,0.0603898,0.507631,0.385761,0.0465988,0.712548,0.0727051,0.960903,0.330635,0.644047,0.437303,0.639805,0.0398591,0.0622845,0.0655961,0.720794,0.0978258,0.324565,0.338659,0.843181,0.0196149,0.0152041,0.0341501,0.151347,0.433347,0.280838,0.447221,0.628866,0.079268,0.269643,0.700903,0.382533,0.371292,0.893527,0.554333,0.672967,0.997748,0.804974,0.963515,0.101341,0.464951,0.335188,0.0578141,0.416347,0.1994,0.379546,0.743361,0.255973,0.612442,0.51798,0.741361,0.940033,0.921275,0.260312,0.659711,0.54946,0.502104,0.00252736,0.241705,0.306906,0.459894,0.493416,0.632983,0.401305,0.703584,0.00133187,0.629809,0.301501,0.443996,0.623656,0.363368,0.298325,0.876853,0.891098,0.00397283,0.886719,0.248248,0.647728,0.469228,0.619323,0.0485641,0.508203,0.961316,0.677299,0.153992,0.369507,0.578599,0.826053,0.454864,0.848599,0.906517,0.793329,0.785855,0.198638,0.282657,0.6868,0.145054,0.605928,0.307569,0.645465,0.226731,0.460156,0.328311,0.18605,0.443955,0.134789,0.760364,0.757385,0.197623,0.139221,0.617262,0.265007,0.644612,0.383844,0.304229,0.748423,0.699864,0.338951,0.345763,0.184635,0.390653,0.72833,0.16033,0.673613,0.853005,0.553609,0.363288,0.711583,0.385134,0.872954,0.692716,0.594369,0.137223,0.552838,0.643795,0.312498,0.505596,0.460736,0.934858,0.799145,0.656716,0.775,0.437565,0.734827,0.1345,0.988054,0.52714,0.759481,0.636694,0.819458,0.141472,0.0725619,0.359585,0.442199,0.809153,0.454895,0.835806,0.386981,0.638297,0.551575,0.0925571,0.550471,0.524629,0.913045,0.47205,0.758705,0.592514,0.942912,0.61224,0.863581,0.949915,0.265648,0.133635,0.773487,0.399101,0.510226,0.759185,0.0975928,0.0257653,0.946358,0.428468,0.284187,0.522102,0.775191,0.598248,0.0101306,0.705764,0.417033,0.428852,0.538646,0.0814349,0.813113,0.484327,0.5376,0.12979,0.721014,0.588886,0.104133,0.208147,0.49217,0.785723,0.504186,0.669482,0.942948,0.807708,0.142721,0.882844,0.818466,0.529102,0.695128,0.472851,0.593769,0.195171,0.8296,0.976678,0.982429,0.209829,0.816999,0.0685286,0.344244,0.303348,0.621029,0.888131,0.53338,0.866629,0.92663,0.101231,0.906005,0.711654,0.0749698,0.0347723,0.757054,0.520224,0.875496,0.823899,0.498867,0.171812,0.127418,0.989832,0.758559,0.973094,0.714598,0.481688,0.962241,0.136871,0.439445,0.0722588,0.289881,0.0812961,0.465282,0.713905,0.831784,0.195613,0.48002,0.359863,0.17139,0.382019,0.507727,0.207219,0.610913,0.418696,0.0693859,0.359573,0.38804,0.300497,0.994956,0.123162,0.995237,0.374196,0.882171,0.768483,0.312411,0.912308,0.746193,0.172024,0.777475,0.746978,0.0333965,0.525381,0.527418,0.0284502,0.862974,0.556188,0.935469,0.760867,0.0516306,0.832973,0.539079,0.0545225,0.402893,0.53076,0.406196,0.313601,0.634978,0.280217,0.179722,0.217635,0.214345,0.436419,0.0202889,0.244211,0.307188,0.717643,0.0187871,0.108067,0.272476,0.655812,0.970842,0.381155,0.639961,0.652749,0.666459,0.716664,0.528831,0.194715,0.243044,0.904941,0.587097,0.593604,0.968793,0.504112,0.829444,0.164549,0.913259,0.78833,0.558843,0.0389336,0.0350364,0.61136,0.879928,0.935214,0.754123,0.60245,0.875649,0.862454,0.919265,0.510596,0.603409,0.651872,0.157171,0.548969,0.535613,0.435283,0.163125,0.266136,0.722593,0.272438,0.0563053,0.255946,0.671702,0.424483,0.000230432,0.23756,0.716661,0.157668,0.842727,0.897625,0.374815,0.247312,0.960931,0.747705,0.766559,0.115916,0.527898,0.417627,0.357695,0.875733,0.780325,0.378724,0.957012,0.976445,0.0673286,0.973784,0.852378,0.0684618,0.780987,0.928092,0.821221,0.572351,0.489802,0.497436,0.134136,0.0471144,0.377662,0.679102,0.672227,0.0417699,0.687947,0.345392,0.064351,0.447943,0.468424,0.796613,0.114254,0.704384,0.533448,0.465719,0.515787,0.328915,0.3925,0.857126,0.812184,0.344994,0.741615,0.532671,0.940794,0.0741261,0.896367,0.73011,0.489794,0.210466,0.264705,0.839963,0.0963157,0.960936,0.881475,0.879666,0.930321,0.299131,0.867417,0.353013,0.37216,0.132718,0.852988,0.862846,0.708271,0.927372,0.612482,0.622756,0.120308,0.834932,0.511355,0.681271,0.800905,0.879543,0.593335,0.688728,0.918687,0.937316,0.985134,0.434471,0.0153503,0.91354,0.729999,0.894646,0.930265,0.458439,0.572544,0.503456,0.660904,0.406641,0.786874,0.633864,0.043581,0.943351,0.847179,0.831368,0.879655,0.0511292,0.522034,0.594965,0.969663,0.652944,0.886791,0.010639,0.00812542,0.19549,0.267643,0.216661,0.53346,0.569085,0.0778522,0.425074,0.0218056,0.883576,0.214443,0.192587,0.671636,0.535962,0.782741,0.716081,0.65768,0.705032,0.53618,0.09552,0.605846,0.978561,0.23776,0.162237,0.390052,0.191829,0.691815,0.553436,0.655827,0.878266,0.698783,0.90654,0.51128,0.272575,0.456887,0.329446,0.335579,0.750931,0.935932,0.15301,0.581236,0.214276,0.44772,0.441605,0.0698146,0.185522,0.389562,0.761569,0.827038,0.35632,0.117612,0.313648,0.372576,0.912656,0.747874,0.414545,0.356376,0.960702,0.0427305,0.318283,0.363749,0.607047,0.541763,0.213246,0.219339,0.966079,0.564344,0.343458,0.435701,0.659625,0.466246,0.500823,0.0994042,0.0684599,0.531735,0.338553,0.762565,0.385102,0.669622,0.743101,0.692731,0.983446,0.576387,0.208261,0.774081,0.668801,0.131184,0.429501,0.77372,0.99316,0.576306,0.218083,0.925795,0.720083,0.761871,0.87934,0.14122,0.152073,0.346925,0.436946,0.850946,0.513507,0.502855,0.537525,0.395207,0.327764,0.596919,0.114195,0.532455,0.519286,0.665953,0.672014,0.709711,0.0919113,0.153033,0.512921,0.341868,0.864322,0.121301,0.587101,0.968645,0.318941,0.641901,0.229011,0.847686,0.303318,0.364537,0.592756,0.619442,0.442145,0.165625,0.768262,0.24328,0.0961322,0.822527,0.937115,0.306933,0.413962,0.609613,0.855615,0.861734,0.0073216,0.278677,0.198337,0.949423,0.0258313,0.284753,0.339289,0.417753,0.601112,0.0199604,0.344856,0.281389,0.8642,0.966902,0.0330223,0.0351908,0.386604,0.297253,0.11158,0.180428,0.522429,0.42521,0.643378,0.998953,0.0296088,0.142861,0.432834,0.202931,0.771956,0.833967,0.0528846,0.0636555,0.157693,0.645254,0.216369,0.960996,0.842756,0.090692,0.310543,0.724236,0.233594,0.968641,0.34142,0.579802,0.755714,0.405655,0.0369427,0.221496,0.678741,0.207789,0.341443,0.320793,0.480591,0.926566,0.543058,0.65218,0.296196,0.506122,0.0829256,0.134114,0.926475,0.148873,0.017808,0.0401411,0.930572,0.251932,0.297701,0.302799,0.193714,0.363778,0.176054,0.387205,0.32104,0.589932,0.379949,0.466936,0.522507,0.437063,0.569351,0.173646,0.423401,0.985339,0.74529,0.435929,0.380101,0.97355,0.0362355,0.892997,0.187416,0.950723,0.348515,0.9616,0.573026,0.00768077,0.214155,0.0435842,0.0618429,0.833066,0.0568255,0.272482,0.727524,0.145678,0.586754,0.914138,0.985222,0.457528,0.00607353,0.891125,0.966917,0.414849,0.76551,0.544255,0.0350101,0.868417,0.156883,0.540121,0.566816,0.32148,0.634256,0.0233616,0.444011,0.782505,0.633107,0.842956,0.661648,0.675693,0.900769,0.226776,0.593935,0.217345,0.684014,0.141415,0.796204,0.904107,0.307122,0.673346,0.122239,0.882076,0.492956,0.266912,0.549306,0.837812,0.223485,0.206133,0.0732296,0.0158008,0.154655,0.186367,0.859256,0.220499,0.400207,0.286084,0.518666,0.537663,0.933135,0.511341,0.782402,0.627122,0.670091,0.748101,0.900022,0.988474,0.304796,0.813147,0.566932,0.453255,0.750524,0.874929,0.528445,0.352411,0.418105,0.939007,0.947797,0.23903,0.458739,0.0949592,0.333762,0.549607,0.289529,0.373024,0.704979,0.745487,0.699085,0.126439,0.501418,0.389956,0.064417,0.240017,0.144895,0.996332,0.617747,0.827191,0.542293,0.0813383,0.68828,0.0928985,0.463486,0.402192,0.0689722,0.206427,0.960201,0.682788,0.507579,0.441543,0.744685,0.949043,0.345423,0.15352,0.325704,0.813517,0.921064,0.823069,0.847571,0.348323,0.36707,0.560952,0.029295,0.584138,0.819678,0.517175,0.0885099,0.12892,0.891768,0.481215,0.37374,0.221407,0.63322,0.707988,0.0678046,0.258869,0.976741,0.917158,0.958281,0.518871,0.924043,0.30163,0.0868956,0.404315,0.306427,0.562088,0.0833273,0.951015,0.400567,0.0611944,0.104957,0.598181,0.871078,0.461703,0.944813,0.799608,0.12208,0.675244,0.455002,0.692101,0.84399,0.574682,0.916532,0.127503,0.377287,0.524534,0.458378,0.605379,0.931946,0.0757691,0.518508,0.473552,0.512894,0.0809212,0.0162401,0.511578,0.608441,0.0470537,0.58621,0.362501,0.868815,0.783823,0.560766,0.247184,0.269692,0.333546,0.471509,0.581563,0.99654,0.139057,0.168876,0.47339,0.526603,0.806848,0.320987,0.427686,0.358087,0.107876,0.199751,0.0363414,0.381849,0.103884,0.41233,0.862308,0.436058,0.819627,0.0452831,0.673172,0.83318,0.164214,0.273585,0.383752,0.308841,0.412577,0.58767,0.176242,0.272803,0.891705,0.274567,0.49732,0.722453,0.0961844,0.595876,0.565638,0.677756,0.597254,0.76589,0.194977,0.533073,0.835501,0.0115446,0.421158,0.385994,0.712552,0.162733,0.450455,0.868714,0.46376,0.664827,0.793907,0.992563,0.992103,0.600976,0.115271,0.356514,0.31477,0.371741,|0.402932,0.718372,0.993526,0.864056,0.190215,0.798593,0.93578,0.255236,0.869411,0.408254,0.190996,0.534719,0.355425,0.431992,0.48043,0.360036,0.550318,0.935045,0.795964,0.972479,0.81516,0.0236108,0.450149,0.586459,0.464708,0.314586,0.548623,0.686119,0.540557,0.768266,0.732237,0.447861,0.926296,0.220322,0.751134,0.676215,0.127603,0.32324,0.661844,0.574214,0.57954,0.5641,0.982754,0.25007,0.828732,0.0178044,0.97761,0.399939,0.596066,0.929585,0.85441,0.769269,0.962106,0.108551,0.946685,0.0925844,0.459176,0.839141,0.613116,0.219998,0.575929,0.489675,0.368859,0.455075,0.620775,0.437108,0.414255,0.589663,0.266389,0.276804,0.190636,0.585925,0.799078,0.952752,0.471869,0.787786,0.769177,0.167908,0.1496,0.450684,0.4051,0.294095,0.141915,0.889411,0.46665,0.654014,0.414009,0.384703,0.168188,0.811058,0.477716,0.673525,0.339895,0.10699,0.130016,0.668737,0.729247,0.423969,0.0752156,0.511742,0.695395,0.380541,0.509361,0.431848,0.410436,0.0988339,0.557485,0.0917065,0.537713,0.444648,0.431155,0.185668,0.28788,0.598413,0.492225,0.820679,0.98846,0.883587,0.352573,0.0356224,0.405459,0.639112,0.277977,0.17729,0.110527,0.328596,0.192727,0.208615,0.286096,0.680809,0.0722097,0.594773,0.0452908,0.998307,0.644922,0.428081,0.435977,0.665286,0.588437,0.540638,0.942249,0.0305154,0.0701566,0.90946,0.638904,0.567754,0.231453,0.865095,0.735874,0.586418,0.04067,0.978857,0.781272,0.15389,0.5606,0.330162,0.132609,0.620304,0.784099,0.531944,0.224736,0.438519,0.668438,0.845622,0.992492,0.853512,0.62863,0.2576,0.441898,0.87628,0.403465,0.217988,0.335915,0.876664,0.629137,0.063567,0.95501,0.500278,0.364436,0.158715,0.718605,0.352269,0.620641,0.970009,0.0981746,0.953135,0.106154,0.586815,0.747327,0.666956,0.210993,0.600136,0.27751,0.892537,0.902192,0.885254,0.899159,0.64353,0.863222,0.0946884,0.137852,0.715441,0.0508867,0.312813,0.788375,0.633152,0.290624,0.32397,0.0209012,0.31979,0.225363,0.528251,0.728103,0.906283,0.379742,0.769015,0.338302,0.159354,0.93384,0.336179,0.714244,0.616031,0.623333,0.430174,0.779836,0.839403,0.178864,0.678842,0.12019,0.4492,0.938929,0.451374,0.780656,0.511225,0.34794,0.575396,0.639991,0.0805235,0.686978,0.998424,0.132783,0.753163,0.819821,0.125811,0.313039,0.411393,0.0911363,0.153696,0.966912,0.353121,0.54831,0.227211,0.799962,0.9129,0.411819,0.0497131,0.742291,0.254519,0.748944,0.638729,0.869551,0.698385,0.427342,0.833472,0.0340938,0.767612,0.62734,0.965877,0.0476711,0.278142,0.738381,0.220996,0.620468,0.87995,0.595706,0.0246689,0.208566,0.00431341,0.285101,0.0897206,0.131867,0.0991056,0.376729,0.761447,0.541585,0.71967,0.0352271,0.605197,0.251727,0.739566,0.713305,0.311971,0.44703,0.639362,0.99482,0.455455,0.375102,0.871649,0.373448,0.298024,0.703962,0.507809,0.596356,0.555696,0.632131,0.575829,0.537259,0.288654,0.229364,0.78116,0.650967,0.524846,0.878147,0.986092,0.680036,0.0135459,0.77751,0.20394,0.828315,0.372923,0.61211,0.103438,0.319264,0.360103,0.291908,0.294424,0.148972,0.0405366,0.169291,0.88973,0.0407814,0.0277753,0.235313,0.658594,0.0320535,0.0722554,0.842262,0.842885,0.716574,0.30855,0.509492,0.048916,0.445974,0.657832,0.0730726,0.76539,0.680362,0.931287,0.614512,0.423869,0.74209,0.866169,0.748557,0.0344409,0.567693,0.403741,0.942998,0.305376,0.887803,0.494276,0.0714238,0.975197,0.813911,0.513329,0.888105,0.373996,0.0466846,0.126264,0.823055,0.911637,0.582597,0.89006,0.187906,0.924075,0.480006,0.191696,0.271807,0.592161,0.47082,0.83676,0.361746,0.935906,0.409995,0.345453,0.833799,0.988613,0.856432,0.56249,0.162775,0.260762,0.23727,0.834448,0.0888529,0.423635,0.504193,0.887184,0.520231,0.686572,0.04689,0.721172,0.545614,0.982404,0.128241,0.479474,0.252899,0.866395,0.374221,0.342136,0.868309,0.550131,0.287253,0.770528,0.172787,0.586908,0.847493,0.984409,0.174322,0.0982581,0.16508,0.594231,0.134188,0.564397,0.810898,0.844162,0.945632,0.324011,0.667549,0.185372,0.660083,0.890977,0.8888,0.13304,0.069016,0.355077,0.287758,0.155728,0.0418691,0.701182,0.488439,0.0968553,0.908401,0.995987,0.697464,0.701428,0.309993,0.13989,0.582933,0.0684533,0.409169,0.404389,0.628989,0.312443,0.973071,0.567653,0.520043,0.704412,0.0811505,0.098581,0.0284048,0.607463,0.733369,0.269519,0.541297,0.875595,0.475346,0.686277,0.78301,0.117567,0.109882,0.615984,0.731172,0.592716,0.96427,0.00291413,0.214585,0.552115,0.0382199,0.402538,0.0321483,0.97958,0.216044,0.997881,0.214172,0.197748,0.877571,0.796427,0.622406,0.00855285,0.463586,0.212377,0.020981,0.538951,0.638043,0.735662,0.18442,0.885633,0.47356,0.726587,0.644898,0.0191478,0.0265307,0.650694,0.659523,0.449481,0.0763483,0.964932,0.0901131,0.248431,0.595794,0.587756,0.474956,0.643275,0.634255,0.988524,0.247891,0.180259,0.832111,0.477558,0.95096,0.251694,0.229406,0.479659,0.102594,0.287085,0.215962,0.358425,0.122953,0.667642,0.696117,0.0631918,0.271346,0.239519,0.305869,0.452522,0.447048,0.775538,0.16729,0.57525,0.423531,0.00988913,0.936518,0.667752,0.986688,0.0547305,0.284951,0.99648,0.128424,0.735304,0.726565,0.440375,0.943439,0.799195,0.159982,0.954253,0.386554,0.688402,0.756012,0.780618,0.332851,0.656885,0.119209,0.800456,0.849137,0.160011,0.0569562,0.610597,0.0729699,0.745253,0.116857,0.575328,0.119804,0.969858,0.47872,0.92146,0.13429,0.372261,0.00934601,0.899218,0.406238,0.063409,0.676206,0.755577,0.410176,0.187531,0.681743,0.643568,0.758293,0.989076,0.755886,0.389284,0.520169,0.65254,0.152445,0.740203,0.906745,0.238644,0.739106,0.928391,0.684577,0.411417,0.853163,0.304988,0.212804,0.274911,0.651323,0.764933,0.856904,0.570728,0.683607,0.452094,0.623894,0.245669,0.731654,0.256108,0.271994,0.31122,0.244019,0.537616,0.204856,0.960661,0.704639,0.797038,0.00385046,0.866119,0.43123,0.940988,0.206075,0.114769,0.556913,0.776837,0.108949,0.318956,0.934054,0.0800981,0.358699,0.211452,0.676814,0.886896,0.0932281,0.306152,0.0781536,0.906554,0.0411363,0.325984,0.263948,0.0327846,0.300487,0.132894,0.832965,0.340328,0.246594,0.739611,0.670673,0.129646,0.690408,0.49293,0.320743,0.406689,0.226708,0.142118,0.0776024,0.132321,0.238696,0.216546,0.127478,0.574288,0.199175,0.727628,0.957438,0.555795,0.677833,0.674803,0.522003,0.0182644,0.298737,0.406691,0.00454313,0.0201407,0.826067,0.479317,0.275469,0.322716,0.97633,0.973474,0.535025,0.344587,0.380559,0.11318,0.250002,0.509723,0.735309,0.880446,0.860923,0.998686,0.450466,0.335392,0.614752,0.876507,0.260789,0.72358,0.125119,0.506109,0.826677,0.587979,0.835972,0.993428,0.46856,0.741182,0.436614,0.662424,0.0367494,0.334393,0.915741,0.45114,0.387911,0.746344,0.847713,0.369438,0.297803,0.439061,0.999509,0.0527126,0.524691,0.45018,0.636087,0.368246,0.622131,0.989401,0.201459,0.672099,0.656916,0.160846,0.525892,0.338441,0.0500358,0.842992,0.0956241,0.361285,0.609798,0.167197,0.841624,0.622663,0.986321,0.375034,0.874068,0.823147,0.362401,0.551828,0.549323,0.665023,0.883655,0.764912,0.501054,0.150016,0.491159,0.73686,0.318959,0.197933,0.773687,0.35768,0.31584,0.981143,0.489345,0.0508316,0.988897,0.589478,0.576188,0.911587,0.576512,0.979418,0.367833,0.835839,0.298037,0.613941,0.146979,0.203261,0.64892,0.978985,0.0320356,0.0108852,0.201072,0.82359,0.634551,0.356365,0.6571,0.67875,0.134264,0.307953,0.404525,0.294879,0.4969,0.0964269,0.0730472,0.840871,0.542848,0.0873976,0.960717,0.501578,0.198988,0.296405,0.0268211,0.0844363,0.662001,0.611906,0.236463,0.660899,0.347021,0.429185,0.777722,0.0982108,0.964453,0.658906,0.506102,0.705438,0.936086,0.453328,0.579997,0.173739,0.907166,0.579713,0.774078,0.370963,0.890802,0.903205,0.465033,0.740854,0.998455,0.0142031,0.986212,0.778276,0.131623,0.464785,0.935794,0.912278,0.46799,0.213537,0.349434,0.328174,0.113771,0.931834,0.826097,0.970394,0.833223,0.44077,0.0857002,0.869538,0.640397,0.56239,0.205146,0.439937,0.480834,0.252681,0.705401,0.962702,0.798461,0.731075,0.965497,0.0964895,0.469662,0.484181,0.032537,0.783998,0.329128,0.296979,0.260323,0.682574,0.0749763,0.662288,0.0358609,0.577612,0.997953,0.145784,0.498394,0.916238,0.829658,0.982456,0.397357,0.810579,0.816563,0.87034,0.27727,0.251909,0.772656,0.693185,0.742796,0.423297,0.0592086,0.327699,0.950785,0.922684,0.650963,0.403244,0.811363,0.694974,0.148071,0.430661,0.0883912,0.578047,0.664562,0.477397,0.780012,0.0443229,0.994392,0.232498,0.732857,0.730974,0.941449,0.646848,0.302845,0.0698837,0.311253,0.206104,0.844684,0.143824,0.353925,0.254536,0.180126,0.369708,0.873638,0.172526,0.746875,0.472479,0.135789,0.08762,0.824269,0.0964216,0.525355,0.616047,0.478518,0.269247,0.263826,0.764313,0.707093,0.421633,0.92865,0.775183,0.549871,0.670295,0.749431,0.760572,0.937424,0.944283,0.470632,0.326646,0.491952,0.833771,0.46297,0.0369127,0.982388,0.687511,0.538582,0.790653,0.749476,0.279203,0.48192,0.272252,0.798909,0.0011003,0.0519489,0.48006,0.489453,0.995714,0.0714158,0.970637,0.600918,0.315569,0.680095,0.949299,0.483518,0.444526,0.58988,0.247462,0.417772,0.691901,0.648262,0.757517,0.217633,0.681018,0.529815,0.254831,0.522294,0.605369,0.368257,0.444467,0.976276,0.636488,0.212706,0.0761283,0.295718,0.862068,0.184422,0.895935,0.12769,0.540384,0.644995,0.412209,0.493401,0.600472,0.821532,0.604846,|0.0689942,0.199196,0.719408,0.693974,0.900221,0.00952119,0.189786,0.451655,0.536115,0.111794,0.0654682,0.987524,0.416459,0.0889565,0.14931,0.33247,0.509818,0.493503,0.450047,0.267535,0.780323,0.967039,0.155171,0.7466,0.36999,0.215998,0.239852,0.742321,0.0288749,0.35015,0.274247,0.956121,0.13355,0.33811,0.326761,0.574064,0.918905,0.629309,0.62778,0.688331,0.497344,0.00512928,0.0874897,0.674538,0.17771,0.802207,0.305076,0.0772587,0.482441,0.481786,0.501942,0.299911,0.559599,0.207161,0.827632,0.0879564,0.188247,0.0309848,0.330139,0.446565,0.176628,0.537526,0.35088,0.243353,0.650237,0.000521243,0.650715,0.31029,0.666372,0.999157,0.275858,0.89701,0.925613,0.355567,0.74521,0.887311,0.581854,0.237583,0.826955,0.821471,0.90601,0.533305,0.59195,0.292953,0.421844,0.380474,0.121056,0.696793,0.525686,0.238149,0.267071,0.232748,0.739954,0.788414,0.822577,0.670586,0.570635,0.6828,0.166846,0.00602424,0.00198889,0.761555,0.743943,0.227615,0.207142,0.110883,0.61952,0.00745863,0.340097,0.895979,0.20227,0.113939,0.0657767,0.572679,0.355405,0.237015,0.058453,0.828895,0.620692,0.13973,0.336019,0.263702,0.566135,0.638292,0.855092,0.650125,0.46844,0.152494,0.713927,0.923218,0.0991048,0.40414,0.818174,0.0156193,0.753119,0.314734,0.176095,0.780678,0.656243,0.127904,0.228953,0.565748,0.759603,0.740399,0.671525,0.766419,0.888621,0.991653,0.279578,0.935565,0.194945,0.928873,0.507451,0.421544,0.50479,0.819332,0.318421,0.239892,0.146625,0.851436,0.549671,0.313033,0.224975,0.167544,0.970417,0.322083,0.814762,0.407604,0.0796762,0.173904,0.245278,0.8735,0.214685,0.72946,0.270789,0.844389,0.981346,0.121515,0.57421,0.341328,0.298262,0.937897,0.123306,0.101942,0.281678,0.146628,0.0494407,0.791457,0.70463,0.489158,0.42134,0.831911,0.478227,0.672231,0.865794,0.896165,0.178603,0.39425,0.0773187,0.700356,0.220173,0.871351,0.686599,0.133242,0.83701,0.547802,0.361985,0.243255,0.48429,0.0315821,0.182012,0.462964,0.364698,0.832525,0.160134,0.869571,0.72173,0.910347,0.75575,0.753198,0.223262,0.612932,0.965739,0.0649664,0.854259,0.0876343,0.199108,0.665115,0.717904,0.812288,0.242048,0.0621479,0.971994,0.39972,0.0435596,0.770902,0.534318,0.351075,0.0921562,0.174582,0.503136,0.943285,0.0506192,0.0567846,0.0883082,0.947551,0.661699,0.943319,0.47809,0.901862,0.650695,0.0731803,0.860461,0.278325,0.0325777,0.855347,0.538015,0.802518,0.141135,0.549848,0.0474406,0.206296,0.857651,0.584833,0.00873363,0.873688,0.936843,0.722748,0.221431,0.437559,0.386151,0.848535,0.36684,0.475967,0.458831,0.0713636,0.322707,0.339179,0.358827,0.798723,0.0167019,0.0283427,0.900763,0.770464,0.934424,0.487069,0.564247,0.395716,0.869434,0.135329,0.0828515,0.122714,0.590946,0.773641,0.593743,0.898219,0.222177,0.0772415,0.201657,0.0645604,0.512804,0.604746,0.885491,0.895487,0.331021,0.858654,0.80265,0.767635,0.448993,0.0718744,0.955833,0.234403,0.57369,0.255729,0.095084,0.517348,0.251344,0.469214,0.208115,0.165505,0.850677,0.493022,0.487787,0.37738,0.506574,0.858226,0.760583,0.278847,0.333374,0.328304,0.571225,0.76736,0.327222,0.252141,0.597711,0.63339,0.115184,0.280676,0.397282,0.362069,0.439634,0.940428,0.185699,0.726865,0.898213,0.891411,0.717396,0.367577,0.363598,0.00582117,0.0135575,0.137383,0.161457,0.166552,0.74695,0.634105,0.673306,0.146907,0.622059,0.102174,0.0231913,0.161697,0.784604,0.900145,0.0593703,0.974956,0.793249,0.0933728,0.994412,0.383101,0.861979,0.676349,0.434287,0.646422,0.648352,0.942334,0.851431,0.0852447,0.237703,0.310124,0.0831196,0.142282,0.316987,0.163428,0.941168,0.072962,0.150248,0.584084,0.276304,0.0777106,0.780125,0.937151,0.74228,0.439013,0.251713,0.588891,0.428326,0.649467,0.0940554,0.0189396,0.162725,0.313999,0.559219,0.524506,0.354477,0.736399,0.716519,0.397821,0.303933,0.916161,0.273096,0.277746,0.179244,0.541807,0.000853121,0.050922,0.620329,0.602971,0.96118,0.175673,0.205639,0.945343,0.253994,0.57728,0.0580801,0.51804,0.0785363,0.361053,0.650118,0.335532,0.799412,0.220227,0.744384,0.434543,0.513886,0.558877,0.653887,0.533617,0.127537,0.513328,0.932391,0.802886,0.335882,0.0314672,0.922308,0.28606,0.578399,0.430881,0.931423,0.380023,0.16209,0.568864,0.328626,0.772996,0.552395,0.756209,0.954046,0.818389,0.141132,0.148323,0.217936,0.450437,0.373829,0.561556,0.513384,0.270996,0.627875,0.792411,0.540857,0.891919,0.621932,0.881078,0.356231,0.468917,0.583157,0.362674,0.901203,0.480949,0.937272,0.0333033,0.579104,0.0706095,0.388595,0.320977,0.514095,0.261041,0.385182,0.082503,0.0759315,0.209955,0.40563,0.61078,0.889725,0.813704,0.0546386,0.36365,0.470708,0.0710741,0.0841675,0.593301,0.239688,0.691357,0.408837,0.41799,0.768948,0.147724,0.0251237,0.109053,0.904412,0.951641,0.904972,0.109024,0.766088,0.76234,0.322074,0.704641,0.078228,0.83598,0.281866,0.494346,0.903573,0.764396,0.921278,0.93605,0.085002,0.182573,0.808105,0.351928,0.234425,0.167846,0.242572,0.0608634,0.95848,0.701649,0.812677,0.21623,0.0439432,0.170398,0.0658901,0.690703,0.29748,0.622442,0.135201,0.965964,0.581588,0.816073,0.128749,0.113246,0.436095,0.209073,0.434389,0.490007,0.45443,0.558069,0.259622,0.176993,0.307871,0.198299,0.215079,0.316642,0.192403,0.878425,0.320585,0.217537,0.557711,0.503667,0.0859597,0.729659,0.946658,0.651735,0.342878,0.38272,0.664312,0.291776,0.813027,0.0822001,0.597941,0.144244,0.463986,0.509521,0.214657,0.644928,0.833256,0.910328,0.572726,0.410554,0.990098,0.650589,0.625426,0.918811,0.135611,0.168647,0.350466,0.097084,0.173213,0.959346,0.287666,0.162826,0.792291,0.838428,0.798491,0.43631,0.0527304,0.642025,0.334779,0.197022,0.767353,0.926208,0.154257,0.734436,0.656655,0.309918,0.695688,0.842144,0.231235,0.996863,0.35997,0.537743,0.142123,0.662732,0.0844489,0.909677,0.322014,0.800074,0.718591,0.546305,0.633512,0.671718,0.17107,0.88906,0.172408,0.869774,0.470971,0.342636,0.800314,0.447519,0.902279,0.648108,0.270637,0.959819,0.851638,0.114476,0.972137,0.491258,0.488006,0.0682487,0.0389631,0.554238,0.57307,0.0634894,0.722716,0.709072,0.455052,0.139828,0.682772,0.160475,0.649853,0.393979,0.84751,0.241567,0.777827,0.386389,0.361901,0.0117977,0.506512,0.746972,0.284215,0.500614,0.840074,0.540484,0.193512,0.859353,0.990797,0.0721579,0.690589,0.169494,0.709226,0.525768,0.367346,0.133368,0.66088,0.865276,0.596743,0.169611,0.071334,0.51337,0.107749,0.446976,0.434443,0.479533,0.331626,0.580106,0.948885,0.10075,0.100346,0.962841,0.437836,0.78269,0.417871,0.512142,0.799586,0.952063,0.554506,0.178321,0.903727,0.259256,0.875427,0.208383,0.645501,0.284847,0.831536,0.739141,0.324789,0.642149,0.231675,0.304783,0.106536,0.872951,0.867882,0.78535,0.0192718,0.304171,0.828342,0.799053,0.116215,0.707109,0.767659,0.723477,0.22936,0.790972,0.772677,0.0754241,0.760972,0.935927,0.833865,0.653936,0.399646,0.726084,0.727097,0.824522,0.844107,0.337656,0.582405,0.126653,0.702141,0.911941,0.925879,0.0746078,0.11229,0.433393,0.452376,0.918782,0.762142,0.534971,0.577077,0.513674,0.279785,0.683749,0.21226,0.360801,0.094013,0.18345,0.318195,0.738683,0.0280767,0.799068,0.399859,0.268052,0.893749,0.377082,0.445822,0.137102,0.0724867,0.764887,0.0508624,0.573283,0.849053,0.24148,0.410546,0.928193,0.183091,0.360288,0.348138,0.165992,0.518924,0.364006,0.634999,0.366456,0.576598,0.123603,0.825239,0.293112,0.928431,0.40817,0.791356,0.135722,0.215079,0.652295,0.790799,0.318636,0.512372,0.120449,0.294606,0.954965,0.254642,0.287061,0.173825,0.357644,0.20637,0.212056,0.135121,0.920427,0.105381,0.417889,0.384744,0.52031,0.178099,0.776323,0.626779,0.508274,0.299491,0.216313,0.309595,0.485705,0.685221,0.646563,0.350164,0.856833,0.989055,0.801309,0.491066,0.310916,0.506305,0.318201,0.801063,0.167097,0.818037,0.848445,0.956771,0.993368,0.134741,0.14023,0.102433,0.790656,0.00328249,0.710047,0.310657,0.821831,0.501627,0.61997,0.583139,0.881929,0.443751,0.849081,0.0419974,0.0664421,0.901975,0.560872,0.358602,0.518237,0.906656,0.212243,0.0315608,0.278286,0.901507,0.838664,0.524054,0.116138,0.978949,0.454933,0.650673,0.165743,0.988182,0.22602,0.490819,0.552929,0.606583,0.370298,0.418029,0.994149,0.84071,0.598797,0.55698,0.858539,0.293288,0.248659,0.195537,0.210955,0.243237,0.993773,0.484667,0.200333,0.532735,0.828661,0.350256,0.388921,0.745477,0.605427,0.579389,0.361844,0.515715,0.585961,0.0423985,0.817786,0.0483004,0.888547,0.760568,0.262847,0.53669,0.905535,0.902946,0.0587434,0.502245,0.705442,0.784278,0.0786523,0.265206,0.677271,0.874523,0.16424,0.100446,0.480745,0.837052,0.422732,0.382651,0.713401,0.152178,0.0415996,0.491093,0.0554888,0.807965,0.641449,0.706937,0.71985,0.43956,0.941899,0.54927,0.562688,0.657684,0.0482258,0.536338,0.137265,0.76928,0.683953,0.983503,0.492168,0.775657,0.921423,0.742088,0.755838,0.228581,0.858789,0.929199,0.436697,0.457543,0.981089,0.274368,0.364849,0.532829,0.830455,0.393175,0.53698,0.889179,0.625494,0.867407,0.24006,0.885348,0.213891,0.609844,0.256438,0.83572,0.644782,0.154826,0.475145,0.711882,0.363482,0.364205,0.770273,0.402723,0.997471,0.345215,0.256137,0.547537,0.866241,0.0974681,0.201231,0.712227,0.93015,0.0401488,0.982934,0.917135,0.679524,0.0452458,0.214792,0.869148,0.486982,0.0641419,0.984136,0.283497,0.0181533,|0.120225,0.360266,0.13439,0.594773,0.439475,0.980334,0.0641077,0.784391,0.520923,0.0357882,0.330257,0.199453,0.426641,0.494943,0.660857,0.60954,0.610372,0.414447,0.426775,0.656533,0.625407,0.92842,0.482533,0.49564,0.831638,0.838305,0.966756,0.795773,0.89775,0.692667,0.32679,0.799455,0.640497,0.109281,0.00258166,0.54162,0.698423,0.377832,0.40081,0.0114791,0.480031,0.00366497,0.0566825,0.775992,0.297018,0.914408,0.275677,0.35378,0.598677,0.542092,0.536435,0.273289,0.699924,0.262306,0.306831,0.99065,0.288718,0.51196,0.978026,0.0991323,0.188943,0.0432823,0.223398,0.745372,0.276421,0.315099,0.921535,0.0215006,0.610021,0.791039,0.161952,0.238283,0.264669,0.822515,0.649797,0.987854,0.424247,0.744618,0.529759,0.495703,0.352701,0.576502,0.611896,0.886132,0.308894,0.3514,0.7448,0.582733,0.847353,0.000644445,0.0460169,0.0856893,0.977649,0.506036,0.456181,0.859058,0.759809,0.235844,0.403173,0.966676,0.714838,0.115395,0.267197,0.351729,0.0910622,0.215211,0.948716,0.228336,0.514081,0.0760643,0.300061,0.537878,0.147853,0.0592643,0.208846,0.317922,0.603934,0.287762,0.848303,0.410247,0.575735,0.715858,0.67382,0.463464,0.508471,0.469905,0.234305,0.911942,0.238357,0.547465,0.34386,0.323509,0.467145,0.0135373,0.505931,0.743623,0.918853,0.766862,0.058482,0.170145,0.453506,0.852882,0.193401,0.26829,0.258768,0.878097,0.818738,0.202878,0.304627,0.649967,0.14759,0.895991,0.263564,0.326856,0.703081,0.0734905,0.684828,0.0869747,0.04013,0.929253,0.75993,0.613059,0.335363,0.127829,0.0171854,0.944396,0.91841,0.388198,0.698823,0.869135,0.0958533,0.122237,0.57211,0.505415,0.955192,0.410023,0.370757,0.70878,0.649717,0.461587,0.221871,0.983189,0.0660323,0.486661,0.500535,0.563726,0.314691,0.52748,0.920176,0.719447,0.333569,0.954751,0.835175,0.140327,0.104693,0.846074,0.284944,0.120657,0.45439,0.122915,0.271186,0.529711,0.499151,0.145891,0.832869,0.860141,0.18554,0.332413,0.50315,0.71469,0.0188223,0.152961,0.260513,0.775582,0.710669,0.246213,0.676389,0.321693,0.356999,0.424868,0.0554679,0.995525,0.17458,0.567289,0.380943,0.262108,0.429742,0.479981,0.87539,0.580447,0.597753,0.657233,0.128732,0.895452,0.0276023,0.360008,0.791355,0.674673,0.229426,0.0820693,0.76043,0.549236,0.17868,0.943945,0.569181,0.349027,0.662094,0.62437,0.604003,0.805365,0.0427862,0.235025,0.0653892,0.433326,0.0341278,0.592625,0.264594,0.169965,0.859537,0.798949,0.246749,0.776617,0.885891,0.569524,0.484473,0.468513,0.557936,0.741169,0.215718,0.542284,0.31528,0.0721595,0.810765,0.709064,0.0724213,0.496153,0.926512,0.189125,0.560389,0.625098,0.40687,0.704796,0.668387,0.583749,0.999972,0.551874,0.0972888,0.0523615,0.273893,0.221722,0.689929,0.142752,0.913732,0.512518,0.0645279,0.490401,0.557217,0.0286498,0.271748,0.801432,0.802791,0.369693,0.595615,0.672755,0.721951,0.651224,0.039898,0.551646,0.316846,0.738669,0.814943,0.0599038,0.0855607,0.604495,0.334306,0.801329,0.286909,0.290134,0.332947,0.924796,0.150982,0.245529,0.813305,0.624437,0.308227,0.874324,0.368816,0.0582675,0.422902,0.385419,0.518264,0.597089,0.325652,0.569911,0.0932281,0.579463,0.930232,0.332479,0.542575,0.397804,0.63235,0.306942,0.917229,0.222152,0.83579,0.45145,0.725266,0.105922,0.0175489,0.946203,0.625339,0.362852,0.896945,0.0759556,0.943793,0.966964,0.11643,0.106371,0.0225457,0.883236,0.821667,0.230473,0.568622,0.0578107,0.68212,0.366078,0.269584,0.163601,0.343092,0.638764,0.581886,0.299276,0.0825939,0.119001,0.57586,0.584493,0.1785,0.955249,0.565587,0.342605,0.436911,0.323149,0.193106,0.592154,0.863842,0.450821,0.508226,0.900474,0.542199,0.17273,0.354681,0.258612,0.822524,0.412848,0.495386,0.592744,0.813398,0.58209,0.136288,0.918004,0.502233,0.254726,0.537379,0.326487,0.508078,0.101381,0.540109,0.31377,0.367591,0.161598,0.9339,0.730941,0.117781,0.862674,0.264061,0.294043,0.169875,0.967475,0.538792,0.566277,0.456891,0.899269,0.610053,0.85568,0.188795,0.292118,0.501998,0.212972,0.904211,0.388937,0.436971,0.332476,0.26841,0.138356,0.69416,0.17541,0.798738,0.820763,0.362584,0.835378,0.531079,0.0682319,0.104068,0.623679,0.851476,0.930398,0.997232,0.294997,0.117884,0.614648,0.862996,0.108803,0.40208,0.0172265,0.715401,0.628633,0.728297,0.636512,0.706531,0.141553,0.706497,0.490223,0.279408,0.293169,0.138666,0.126279,0.298383,0.212952,0.244841,0.470721,0.30395,0.624593,0.549685,0.48777,0.581541,0.966991,0.688799,0.0251395,0.638433,0.993495,0.866946,0.638541,0.899476,0.14241,0.314985,0.152858,0.3302,0.189753,0.250164,0.425319,0.156256,0.104774,0.828421,0.000312567,0.0895134,0.231755,0.405977,0.115505,0.139373,0.33485,0.865718,0.920528,0.123681,0.0493563,0.977726,0.611417,0.972311,0.042513,0.92945,0.498514,0.841661,0.483928,0.00252604,0.912204,0.130856,0.0470884,0.469684,0.746903,0.308402,0.170631,0.382257,0.604689,0.539001,0.694338,0.217518,0.447296,0.234999,0.774795,0.701705,0.842173,0.47184,0.154375,0.017122,0.153618,0.767579,0.456474,0.386218,0.274001,0.858299,0.480085,0.527504,0.467445,0.493435,0.707358,0.896682,0.784536,0.866973,0.452217,0.884432,0.693724,0.420703,0.630045,0.485476,0.465427,0.712618,0.577872,0.98536,0.345989,0.715337,0.829953,0.100971,0.673241,0.931304,0.390363,0.243017,0.99376,0.183034,0.605233,0.481002,0.960198,0.170981,0.392849,0.986224,0.339007,0.511209,0.218497,0.910876,0.248412,0.0621378,0.33751,0.705414,0.178363,0.808969,0.288482,0.0152283,0.979513,0.717017,0.368137,0.923024,0.842092,0.0153618,0.346202,0.368036,0.698974,0.838146,0.486819,0.138263,0.600838,0.989576,0.398514,0.53536,0.905313,0.764613,0.677021,0.586748,0.553676,0.816918,0.861529,0.101434,0.0649391,0.590902,0.56424,0.214372,0.604349,0.681386,0.728094,0.317295,0.268048,0.375915,0.679427,0.547346,0.514363,0.0908391,0.775564,0.489153,0.378603,0.0136833,0.611707,0.969048,0.701872,0.668401,0.897199,0.739188,0.151424,0.925988,0.368641,0.0664614,0.296989,0.468322,0.957371,0.724898,0.521773,0.484558,0.276737,0.816221,0.606446,0.521455,0.730252,0.585005,0.944816,0.83084,0.598921,0.190783,0.582887,0.362965,0.814398,0.863975,0.979482,0.239442,0.214648,0.193086,0.777319,0.761921,0.272351,0.291152,0.00946295,0.186321,0.867152,0.152504,0.699462,0.0741963,0.726725,0.92504,0.244169,0.124051,0.206505,0.919184,0.431921,0.161479,0.285915,0.265767,0.257675,0.0977873,0.18005,0.716432,0.98516,0.236415,0.876881,0.921905,0.0401525,0.577012,0.932625,0.880115,0.612868,0.565377,0.153327,0.452635,0.30231,0.141715,0.880943,0.589229,0.616819,0.984647,0.550085,0.143869,0.103738,0.517778,0.138131,0.99498,0.366421,0.00253385,0.434977,0.604296,0.633511,0.112163,0.666978,0.873655,0.490385,0.136767,0.442923,0.0535585,0.402412,0.257387,0.0506316,0.486077,0.593038,0.270385,0.0804441,0.597007,0.153755,0.517399,0.931091,0.246737,0.198074,0.977736,0.711698,0.335957,0.17341,0.058655,0.925089,0.61597,0.384113,0.0593672,0.28376,0.901153,0.361761,0.0304778,0.628426,0.803897,0.849645,0.994621,0.0826083,0.697452,0.538982,0.192106,0.11974,0.667545,0.557264,0.309093,0.735118,0.0207307,0.675726,0.697188,0.502814,0.399195,0.61934,0.200146,0.499636,0.14291,0.159332,0.732438,0.11922,0.392209,0.921099,0.271359,0.52634,0.156084,0.855406,0.517646,0.540329,0.633217,0.597282,0.0356125,0.231954,0.997405,0.147509,0.71138,0.68014,0.573941,0.581042,0.25361,0.470013,0.734771,0.337156,0.401089,0.463984,0.246651,0.0143048,0.35105,0.198626,0.598558,0.00273669,0.375314,0.272043,0.441926,0.00429273,0.318693,0.381218,0.464623,0.765272,0.473016,0.561037,0.750202,0.537277,0.524516,0.790952,0.317217,0.318356,0.560408,0.653193,0.197181,0.386947,0.303795,0.41851,0.183066,0.0497036,0.902746,0.928922,0.564032,0.129206,0.295531,0.225975,0.0150036,0.982082,0.518281,0.0792444,0.212731,0.624001,0.286262,0.132827,0.103102,0.454286,0.228507,0.759142,0.651979,0.62003,0.0247337,0.184209,0.265352,0.783077,0.773202,0.973858,0.724087,0.82563,0.733072,0.571906,0.181742,0.161528,0.191155,0.12804,0.303802,0.287559,0.665775,0.031392,0.974773,0.298289,0.771165,0.452441,0.83524,0.310248,0.0253301,0.429888,0.67506,0.924171,0.723622,0.290574,0.0819494,0.921346,0.613375,0.732358,0.663838,0.206177,0.442935,0.422754,0.479021,0.338745,0.00311089,0.139931,0.432386,0.571066,0.62974,0.193999,0.278464,0.943235,0.0642709,0.773844,0.82506,0.946768,0.835838,0.864222,0.7067,0.132927,0.977383,0.447404,0.725688,0.941335,0.686581,0.0158305,0.347438,0.416358,0.772423,0.826451,0.934662,0.345202,0.752672,0.893414,0.508394,0.528059,0.975501,0.152011,0.651382,0.447266,0.547043,0.636043,0.774296,0.839536,0.137381,0.80587,0.592142,0.605389,0.958203,0.804601,0.229473,0.29242,0.207004,0.653824,0.609872,0.3026,0.277418,0.323182,0.980028,0.230984,0.0835207,0.809826,0.105074,0.493709,0.343268,0.104069,0.177384,0.182327,0.358253,0.532895,0.108218,0.402893,0.438865,0.0399656,0.323429,0.378486,0.430958,0.507339,0.544543,0.0803608,0.922999,0.877395,0.167845,0.827896,0.0654005,0.977769,0.94337,0.962459,0.562063,0.629578,0.491371,0.123578,0.142562,0.0979777,0.276273,0.702207,0.666968,0.76411,0.682634,0.107743,0.0428462,0.363636,0.901561,0.936464,0.898173,0.812718,0.692341,0.54599,0.84909,0.291039,0.759059,0.27884,0.539992,0.117835,0.0081296,0.832853,0.722557,0.689855,|0.626417,0.496399,0.603962,0.675681,0.0677254,0.633728,0.386412,0.702973,0.480001,0.311606,0.427184,0.798746,0.452819,0.726372,0.41692,0.310715,0.800727,0.874212,0.806368,0.92548,0.927717,0.88813,0.103017,0.946348,0.716065,0.881698,0.855843,0.670486,0.646905,0.195763,0.844457,0.0328571,0.786561,0.642387,0.791796,0.317242,0.275215,0.0821152,0.976303,0.478888,0.175634,0.358511,0.679142,0.824762,0.314526,0.23389,0.854658,0.565353,0.750042,0.32037,0.353914,0.201014,0.568604,0.589069,0.663638,0.702435,0.157071,0.461327,0.909788,0.233064,0.101888,0.81093,0.357964,0.331959,0.572203,0.857314,0.977534,0.910067,0.766451,0.629157,0.494991,0.868859,0.765611,0.938646,0.916506,0.41354,0.351484,0.0822071,0.223406,0.0311964,0.283497,0.510066,0.0286542,0.503332,0.468386,0.557493,0.694392,0.809543,0.128694,0.206915,0.764329,0.595915,0.0214885,0.156264,0.516771,0.51044,0.417167,0.10498,0.754845,0.574123,0.57832,0.863899,0.610242,0.593101,0.148304,0.718516,0.08441,0.0108085,0.992979,0.205635,0.114385,0.820176,0.23489,0.0286511,0.758781,0.541458,0.940455,0.732443,0.255298,0.426944,0.616887,0.5871,0.314076,0.181663,0.862161,0.0758232,0.36083,0.756391,0.503531,0.936371,0.168931,0.47213,0.843951,0.165713,0.536743,0.81244,0.117767,0.0148723,0.0372364,0.798812,0.633476,0.145458,0.909966,0.763122,0.333294,0.34289,0.814734,0.0825403,0.0592396,0.0711423,0.581359,0.933926,0.559727,0.00414854,0.657998,0.229765,0.315582,0.269414,0.278366,0.309902,0.187934,0.679353,0.586919,0.710009,0.950492,0.471673,0.481721,0.211237,0.881459,0.306129,0.11191,0.706249,0.227018,0.989232,0.0179392,0.888327,0.253611,0.88449,0.948348,0.0981323,0.852595,0.331035,0.276398,0.346032,0.265973,0.608007,0.469346,0.25593,0.340745,0.734088,0.566891,0.924619,0.171232,0.024,0.840384,0.194385,0.59579,0.701467,0.550449,0.156461,0.985206,0.819453,0.0346803,0.294969,0.978408,0.933365,0.916435,0.758039,0.269154,0.101642,0.0749534,0.504623,0.76141,0.666142,0.432144,0.0532361,0.998043,0.999741,0.885147,0.726842,0.772695,0.339024,0.665182,0.247832,0.659772,0.37223,0.673745,0.177611,0.798562,0.486835,0.893601,0.171914,0.741231,0.564097,0.524791,0.0489743,0.425065,0.671298,0.708986,0.231816,0.560741,0.128306,0.514334,0.945361,0.227948,0.938686,0.813711,0.116562,0.445168,0.867814,0.534129,0.663511,0.953729,0.950518,0.534861,0.29265,0.116038,0.881203,0.619706,0.573494,0.976283,0.151732,0.256114,0.502464,0.0150067,0.432205,0.379628,0.597433,0.778355,0.245484,0.977021,0.782397,0.0632172,0.606055,0.471003,0.786727,0.817741,0.933702,0.22688,0.705531,0.0558786,0.876858,0.371034,0.32442,0.668701,0.65031,0.697837,0.830028,0.0864574,0.898554,0.795742,0.591776,0.30841,0.460638,0.844308,0.0245786,0.443689,0.49663,0.0483377,0.277934,0.311305,0.221488,0.0912518,0.216166,0.000184357,0.0977602,0.240925,0.476603,0.604262,0.656227,0.440098,0.818003,0.923835,0.253041,0.490635,0.651142,0.475106,0.536224,0.91281,0.792771,0.298455,0.530011,0.56028,0.91926,0.0804522,0.0573956,0.273616,0.522788,0.589118,0.154138,0.407318,0.1376,0.169848,0.983196,0.321411,0.574074,0.442927,0.267999,0.017971,0.521949,0.857553,0.428957,0.205187,0.953681,0.740429,0.129061,0.537349,0.865778,0.274597,0.642374,0.0142363,0.29589,0.511646,0.454849,0.650706,0.608687,0.673929,0.490248,0.406566,0.172378,0.661847,0.447656,0.695714,0.575474,0.320854,0.419107,0.0889612,0.835323,0.487704,0.524196,0.571035,0.987616,0.0686719,0.511183,0.177333,0.984006,0.0121112,0.692711,0.954931,0.762635,0.812219,0.439776,0.657724,0.063083,0.355801,0.630167,0.12593,0.835001,0.785625,0.974094,0.287007,0.464993,0.612822,0.235841,0.685884,0.647138,0.80665,0.809607,0.596773,0.400363,0.216307,0.513838,0.783322,0.206481,0.726806,0.585485,0.279339,0.347332,0.98625,0.840658,0.802379,0.581996,0.663775,0.145708,0.74876,0.759634,0.139112,0.867137,0.379336,0.712535,0.878264,0.836281,0.412064,0.0769797,0.832129,0.818629,0.188684,0.0980261,0.148613,0.22236,0.728415,0.0890655,0.609517,0.437721,0.881762,0.344631,0.0771931,0.0100352,0.076581,0.508047,0.637325,0.182561,0.520175,0.48653,0.501186,0.808286,0.1369,0.117733,0.170947,0.982509,0.475528,0.999117,0.646969,0.0619438,0.311063,0.949964,0.0579439,0.53477,0.0385579,0.381844,0.219627,0.561194,0.527488,0.916464,0.335685,0.406197,0.313681,0.759871,0.56183,0.61628,0.79844,0.36282,0.966746,0.393468,0.683587,0.32881,0.644359,0.839204,0.141238,0.218634,0.377893,0.501156,0.277406,0.644619,0.960147,0.820813,0.709918,0.0773973,0.827154,0.963936,0.382994,0.526598,0.340601,0.386137,0.0235059,0.0137624,0.799349,0.734571,0.913541,0.143603,0.0752818,0.00622696,0.369236,0.0586383,0.629337,0.0671822,0.0630572,0.219244,0.872254,0.190529,0.989654,0.19364,0.70017,0.885993,0.413668,0.492134,0.422692,0.964866,0.906666,0.722295,0.863346,0.88884,0.358448,0.133239,0.868806,0.934637,0.910037,0.315127,0.00649869,0.160791,0.23096,0.613621,0.239294,0.764524,0.571545,0.0853221,0.911054,0.0782974,0.125505,0.483233,0.172985,0.155967,0.706004,0.892421,0.917884,0.156165,0.332993,0.289295,0.315529,0.395314,0.294347,0.0421366,0.503782,0.631588,0.520692,0.0870947,0.918497,0.744036,0.547316,0.467599,0.499,0.135075,0.0102949,0.386562,0.509687,0.582719,0.611625,0.0122957,0.224263,0.0627913,0.436486,0.532268,0.523422,0.5279,0.465552,0.378018,0.891404,0.214005,0.554485,0.999901,0.835212,0.444976,0.607554,0.264651,0.854328,0.391935,0.399146,0.919091,0.895939,0.229958,0.846159,0.170207,0.244328,0.405634,0.17266,0.147324,0.597003,0.93846,0.922391,0.679991,0.0293754,0.916381,0.643127,0.846975,0.253821,0.879882,0.0833279,0.012094,0.0547768,0.663918,0.371083,0.924302,0.418403,0.572422,0.21843,0.37145,0.94134,0.79081,0.706739,0.919077,0.421332,0.484768,0.769877,0.628227,0.993759,0.17988,0.992982,0.349657,0.559695,0.675333,0.734322,0.395923,0.0926749,0.815047,0.816953,0.395061,0.44091,0.655207,0.0960108,0.501352,0.156541,0.596953,0.14618,0.0701367,0.477826,0.504233,0.790766,0.249732,0.758974,0.845839,0.52432,0.129365,0.739795,0.68106,0.982623,0.134081,0.150872,0.258058,0.394899,0.952749,0.763775,0.0844614,0.943251,0.442728,0.774567,0.786135,0.602409,0.164936,0.623366,0.294296,0.109255,0.485673,0.98377,0.0536677,0.390875,0.66631,0.715382,0.303976,0.825822,0.462359,0.509681,0.635263,0.997144,0.00129497,0.148386,0.343084,0.632889,0.131333,0.967776,0.853029,0.425765,0.854162,0.639019,0.12287,0.851612,0.403012,0.965001,0.471844,0.079611,0.79996,0.512113,0.125345,0.804648,0.834326,0.620649,0.190496,0.838875,0.996092,0.412875,0.307393,0.428172,0.267075,0.135203,0.586367,0.474965,0.712304,0.962092,0.243822,0.916957,0.146465,0.115838,0.250381,0.655887,0.0363532,0.45706,0.721189,0.388635,0.152782,0.327897,0.0353761,0.767203,0.443199,0.906492,0.0602912,0.338743,0.90908,0.936109,0.858714,0.467762,0.197825,0.87941,0.851181,0.81638,0.809286,0.692196,0.897533,0.170483,0.297397,0.8609,0.963473,0.428237,0.839628,0.826068,0.0343333,0.900077,0.42635,0.430573,0.410122,0.950392,0.218904,0.328641,0.962326,0.112799,0.178684,0.0838076,0.154513,0.298101,0.238723,0.409906,0.195767,0.36969,0.893036,0.408718,0.845422,0.84921,0.770581,0.294278,0.707789,0.668166,0.454059,0.924016,0.0290177,0.250216,0.424588,0.292904,0.924798,0.295014,0.778944,0.500449,0.687613,0.807706,0.309824,0.285668,0.802352,0.601252,0.858638,0.703883,0.637089,0.921299,0.837143,0.0497872,0.487977,0.286961,0.159099,0.558073,0.233551,0.946822,0.482519,0.00361878,0.740866,0.356778,0.621578,0.411734,0.593174,0.520904,0.372968,0.062923,0.175653,0.22143,0.461244,0.994557,0.00771797,0.208205,0.241756,0.401373,0.0155145,0.976549,0.356289,0.427599,0.410508,0.259042,0.0927479,0.373113,0.704928,0.307728,0.100725,0.928842,0.208346,0.227307,0.764542,0.138379,0.0283452,0.823352,0.15551,0.343472,0.952458,0.987147,0.0707399,0.58155,0.91511,0.490762,0.547686,0.707557,0.886878,0.968594,0.54931,0.919746,0.724599,0.664868,0.91806,0.208294,0.522509,0.951737,0.312945,0.467135,0.0469623,0.203745,0.25414,0.480523,0.585697,0.718074,0.387736,0.280942,0.324505,0.507635,0.772064,0.515501,0.261955,0.858598,0.94568,0.744494,0.438988,0.84933,0.0564048,0.643748,0.873308,0.192697,0.0234779,0.308157,0.961567,0.766504,0.879398,0.531995,0.814922,0.734868,0.324022,0.356519,0.794812,0.410485,0.202907,0.440678,0.599627,0.208645,0.413965,0.560885,0.515221,0.999765,0.577168,0.599671,0.0375314,0.260887,0.755218,0.372977,0.356239,0.323076,0.998185,0.340239,0.714155,0.784143,0.209735,0.967667,0.176167,0.917052,0.883997,0.659535,0.279698,0.0957022,0.254007,0.053454,0.523089,0.487265,0.48967,0.509867,0.146943,0.915499,0.162356,0.85181,0.886395,0.433347,0.378949,0.579321,0.511898,0.837471,0.390586,0.831501,0.742465,0.23213,0.277034,0.897079,0.199297,0.615478,0.995981,0.980064,0.0818282,0.405277,0.903076,0.0585979,0.183541,0.166105,0.787624,0.0161512,0.0929345,0.0436734,0.742306,0.508918,0.2609,0.339755,0.101887,0.847793,0.576,0.445403,0.92044,0.946865,0.0599366,0.711771,0.131434,0.180448,0.785592,0.268763,0.264288,0.274236,0.581577,0.197266,0.0236318,0.730062,0.725978,0.475836,0.394849,0.449701,0.0579655,0.840256,0.733064,0.123734,0.673206,0.324398,0.957783,0.15361,0.7503,0.0497967,0.696913,|0.666174,0.134696,0.56598,0.195136,0.1601,0.531289,0.772737,0.758191,0.520722,0.189564,0.581213,0.240626,0.175182,0.777483,0.460153,0.908004,0.717144,0.889614,0.743732,0.66551,0.90413,0.663314,0.554932,0.383604,0.65351,0.642529,0.856583,0.201084,0.443112,0.461433,0.620755,0.95466,0.170753,0.537289,0.436044,0.747097,0.806921,0.516783,0.709323,0.326163,0.68339,0.0769973,0.179544,0.0672498,0.0632303,0.92437,0.551715,0.357314,0.53766,0.02292,0.937081,0.296636,0.296849,0.980238,0.45288,0.395658,0.590831,0.00812334,0.602705,0.0588221,0.565193,0.376406,0.381425,0.579383,0.000649571,0.74521,0.824668,0.763805,0.736398,0.849971,0.813757,0.962503,0.203406,0.570982,0.630263,0.0982249,0.127207,0.124234,0.450878,0.58546,0.829096,0.629895,0.20575,0.0107207,0.677663,0.0357285,0.569167,0.824772,0.0663851,0.404517,0.45634,0.521052,0.896561,0.87466,0.0423225,0.69719,0.205378,0.081364,0.108,0.0016306,0.680163,0.582627,0.461541,0.51577,0.754057,0.0987471,0.177598,0.675224,0.156713,0.35847,0.850764,0.085791,0.0894431,0.636279,0.110019,0.773812,0.341748,0.736367,0.455106,0.42382,0.23519,0.418351,0.37569,0.861979,0.0244263,0.502699,0.336238,0.556157,0.524738,0.916488,0.769363,0.0415605,0.229287,0.181345,0.296677,0.0445312,0.343633,0.585544,0.565164,0.947212,0.388462,0.947068,0.0879429,0.591753,0.120283,0.694149,0.56465,0.53059,0.353179,0.0850243,0.169596,0.375498,0.989126,0.0245388,0.443482,0.523179,0.368701,0.273978,0.72682,0.69579,0.970121,0.373719,0.505374,0.7368,0.12692,0.489678,0.84491,0.833643,0.600212,0.895901,0.0641314,0.296584,0.220223,0.10679,0.313078,0.359036,0.787522,0.483185,0.0737261,0.665069,0.811941,0.562852,0.987221,0.696905,0.286677,0.0405696,0.179819,0.559619,0.304429,0.464067,0.368655,0.302374,0.642639,0.0512553,0.0659428,0.732832,0.790746,0.715162,0.539293,0.399734,0.00532931,0.820021,0.834,0.627149,0.471897,0.780842,0.291594,0.336043,0.818295,0.886227,0.122502,0.495497,0.168037,0.146707,0.475043,0.982904,0.654596,0.797695,0.147983,0.791057,0.609638,0.626418,0.837026,0.202242,0.050217,0.581028,0.0713663,0.44194,0.527355,0.740277,0.131407,0.863311,0.807706,0.709017,0.915547,0.945892,0.882772,0.888155,0.440487,0.662047,0.46712,0.00861043,0.341034,0.00305587,0.784801,0.365883,0.371307,0.628138,0.136909,0.546943,0.416398,0.268669,0.577472,0.628886,0.258405,0.208305,0.57988,0.786918,0.449894,0.63171,0.297517,0.69356,0.742391,0.436647,0.787752,0.24722,0.199389,0.0485268,0.744288,0.629946,0.872422,0.331619,0.769119,0.93704,0.254826,0.570232,0.951852,0.856984,0.468836,0.354697,0.148765,0.635635,0.643586,0.447673,0.693532,0.743447,0.501505,0.736011,0.454133,0.236028,0.316001,0.523825,0.994205,0.288929,0.29622,0.054408,0.619616,0.479465,0.640588,0.41882,0.0803587,0.540165,0.514044,0.738276,0.174065,0.469278,0.948655,0.789078,0.879845,0.0494046,0.434989,0.0800727,0.46665,0.173335,0.537579,0.566371,0.746007,0.749248,0.970122,0.835202,0.312305,0.249383,0.503447,0.971465,0.601263,0.156877,0.736764,0.0200022,0.819919,0.61802,0.841453,0.7323,0.17625,0.792957,0.500983,0.794992,0.953208,0.241403,0.547695,0.403556,0.573082,0.895131,0.41471,0.13907,0.628507,0.54664,0.108083,0.30343,0.0986988,0.216071,0.290316,0.462425,0.638451,0.0729315,0.998981,0.849631,0.15185,0.833883,0.915495,0.424145,0.164876,0.847045,0.303168,0.647432,0.659137,0.0771344,0.467118,0.258649,0.217147,0.401947,0.18535,0.356452,0.54086,0.532557,0.866078,0.848403,0.553187,0.490984,0.518607,0.968334,0.424994,0.626041,0.332081,0.861999,0.899069,0.24639,0.918618,0.296428,0.842399,0.892125,0.0760258,0.3621,0.523032,0.0111544,0.500082,0.216311,0.907776,0.888797,0.888135,0.329021,0.18751,0.589421,0.632962,0.312469,0.971574,0.712336,0.876172,0.809413,0.408312,0.624146,0.731558,0.286047,0.31466,0.186754,0.7969,0.467489,0.512638,0.624923,0.216738,0.275793,0.455833,0.630746,0.0614095,0.319119,0.467612,0.158225,0.30295,0.70935,0.343193,0.868191,0.0675481,0.246944,0.4427,0.31734,0.3919,0.89853,0.373095,0.32529,0.265675,0.538296,0.20899,0.0487514,0.406845,0.343616,0.612399,0.710107,0.332561,0.641637,0.1335,0.873812,0.566174,0.546758,0.509043,0.880595,0.668069,0.390995,0.946321,0.149794,0.0661392,0.0138267,0.0271888,0.883508,0.791124,0.103756,0.427996,0.978581,0.235922,0.0450735,0.210845,0.293862,0.387243,0.694383,0.6926,0.287774,0.982067,0.578375,0.0857419,0.0551227,0.148271,0.120526,0.00984561,0.95397,0.939425,0.872302,0.488824,0.287852,0.962273,0.841513,0.716885,0.528247,0.90969,0.640983,0.852554,0.516954,0.314642,0.0456519,0.677764,0.767716,0.534909,0.95802,0.554121,0.731204,0.289756,0.102058,0.0850768,0.923748,0.365257,0.984857,0.278202,0.0536224,0.0703638,0.787722,0.428173,0.0691134,0.0660895,0.796998,0.543704,0.511781,0.748073,0.330003,0.0614452,0.238061,0.704085,0.636448,0.377427,0.262757,0.170235,0.695143,0.703513,0.191676,0.645203,0.327043,0.748911,0.697405,0.447725,0.221471,0.8125,0.437226,0.665235,0.114862,0.244921,0.848417,0.394177,0.268844,0.762872,0.155163,0.899873,0.804704,0.0993409,0.168369,0.924262,0.788145,0.470141,0.154247,0.211591,0.33863,0.613523,0.200455,0.925212,0.108604,0.737977,0.196972,0.534769,0.215295,0.213323,0.753644,0.795178,0.994343,0.594047,0.769533,0.375974,0.473532,0.596963,0.59903,0.0449529,0.0435843,0.862059,0.121483,0.880973,0.874001,0.260475,0.125304,0.493899,0.749169,0.464315,0.641646,0.0265417,0.774311,0.252065,0.925285,0.561936,0.890924,0.0971266,0.0514517,0.597909,0.740431,0.973536,0.844697,0.715079,0.0476019,0.864824,0.00702822,0.873721,0.591381,0.890398,0.199878,0.872613,0.655413,0.598145,0.17813,0.957652,0.586911,0.851506,0.85039,0.508584,0.0931726,0.102037,0.266144,0.545096,0.95606,0.3033,0.56353,0.917912,0.161774,0.0901563,0.586309,0.430711,0.28228,0.0518103,0.346288,0.631684,0.66637,0.583493,0.14949,0.427589,0.59628,0.511673,0.822336,0.990732,0.416036,0.658078,0.194819,0.0459307,0.360616,0.518984,0.160627,0.632956,0.381869,0.226488,0.436914,0.801838,0.648604,0.827908,0.129969,0.762258,0.0712225,0.494107,0.272996,0.73864,0.89391,0.135687,0.510194,0.95408,0.213797,0.974278,0.673332,0.4068,0.130579,0.0911416,0.0666614,0.909949,0.792488,0.0745287,0.193269,0.525466,0.881489,0.19034,0.747669,0.359352,0.509526,0.268082,0.679788,0.152329,0.411339,0.706564,0.19571,0.0708085,0.405152,0.237997,0.684533,0.120358,0.420355,0.368493,0.182496,0.409397,0.145946,0.379003,0.972706,0.922077,0.207015,0.454367,0.0677804,0.836373,0.617082,0.797896,0.0509365,0.212452,0.276605,0.635594,0.584173,0.304303,0.962009,0.205871,0.86048,0.976455,0.418372,0.252461,0.607858,0.0714476,0.594987,0.127539,0.837522,0.8697,0.736826,0.038243,0.933222,0.687755,0.267834,0.00478429,0.443719,0.31908,0.346164,0.959027,0.0721677,0.155577,0.582723,0.364783,0.0155544,0.729203,0.528634,0.91929,0.827633,0.488432,0.725742,0.481454,0.142679,0.605261,0.410879,0.244448,0.69506,0.276228,0.167436,0.268651,0.11618,0.867487,0.827097,0.70609,0.128446,0.569896,0.71591,0.374628,0.879434,0.845223,0.042321,0.174563,0.618385,0.271031,0.794714,0.239971,0.808544,0.193256,0.360887,0.126707,0.677761,0.403262,0.494313,0.402968,0.00264829,0.659443,0.0464213,0.224372,0.856587,0.486297,0.0473255,0.0952901,0.795776,0.719696,0.293818,0.253193,0.438785,0.945133,0.182976,0.132049,0.0548975,0.474183,0.621401,0.199905,0.727983,0.061794,0.672052,0.819075,0.987976,0.428544,0.010381,0.76091,0.806702,0.519233,0.642987,0.0909577,0.545248,0.635936,0.651781,0.627027,0.993158,0.720149,0.367868,0.373528,0.87771,0.548757,0.48266,0.749301,0.937133,0.630547,0.0927297,0.445195,0.350105,0.131403,0.666168,0.991127,0.900038,0.903081,0.758762,0.805655,0.863271,0.422178,0.497468,0.10671,0.548458,0.787349,0.570559,0.475062,0.515921,0.0210699,0.947899,0.494665,0.143416,0.300131,0.654699,0.254708,0.987857,0.421244,0.984264,0.719436,0.684353,0.383111,0.566333,0.617549,0.789192,0.395929,0.755055,0.659131,0.479195,0.336884,0.764433,0.414623,0.981421,0.529933,0.339235,0.0794725,0.0839147,0.629622,0.179746,0.354291,0.195456,0.156576,0.272675,0.113834,0.607449,0.621213,0.0867614,0.277919,0.185464,0.958637,0.867881,0.666623,0.447176,0.296524,0.0307738,0.623632,0.669304,0.760695,0.096453,0.806325,0.241939,0.657267,0.103273,0.564988,0.860277,0.739938,0.773329,0.573186,0.144365,0.567798,0.534341,0.864458,0.150176,0.354512,0.245591,0.978394,0.53462,0.517561,0.724186,0.821866,0.677053,0.804066,0.65843,0.791219,0.450044,0.151198,0.393609,0.983339,0.729601,0.804557,0.0111238,0.548282,0.938277,0.571827,0.178732,0.562982,0.320106,0.671817,0.829033,0.526606,0.120546,0.00848657,0.818605,0.13586,0.866969,0.279109,0.43928,0.616001,0.314096,0.402325,0.969102,0.781055,0.636269,0.414666,0.232439,0.372194,0.152022,0.867662,0.770636,0.606601,0.833455,0.114406,0.792524,0.649504,0.761053,0.79882,0.0274619,0.232789,0.668369,0.317769,0.398468,0.349867,0.830599,0.649578,0.0712767,0.778918,0.266331,0.285624,0.803319,0.312842,0.885183,0.894051,0.0550489,0.487373,0.983965,0.325056,0.848133,0.130239,0.299583,0.191595,0.950991,0.479953,0.753473,0.583464,0.904181,0.452093,0.510176,0.756049,0.882003,0.381445,0.420326,0.252321,0.717139,0.64564,0.407475,0.418398,0.195584,|0.580132,0.495854,0.79728,0.720361,0.247098,0.109063,0.894612,0.814373,0.361213,0.479215,0.397397,0.448769,0.988918,0.379104,0.614496,0.799357,0.450241,0.225164,0.753926,0.550237,0.686483,0.273025,0.551505,0.417851,0.292934,0.329811,0.660471,0.305049,0.460364,0.252151,0.496856,0.874808,0.442292,0.69225,0.285392,0.0784246,0.812819,0.0982848,0.904453,0.831284,0.586479,0.24232,0.950792,0.132667,0.318854,0.867369,0.249129,0.965582,0.909269,0.557874,0.0617874,0.933627,0.525218,0.480162,0.66773,0.890334,0.565573,0.322918,0.818643,0.414806,0.198983,0.477148,0.833298,0.79832,0.479347,0.517082,0.635253,0.673992,0.86399,0.465757,0.388511,0.445044,0.963018,0.0237171,0.141104,0.52987,0.230694,0.510267,0.409738,0.460421,0.347993,0.0259452,0.764623,0.414163,0.296024,0.225537,0.964576,0.0836495,0.301495,0.302533,0.235263,0.562642,0.597503,0.509159,0.800984,0.181088,0.725018,0.402162,0.555498,0.290326,0.798717,0.910239,0.375705,0.482004,0.859457,0.766745,0.804651,0.614767,0.0911103,0.952776,0.227796,0.771977,0.00984025,0.878646,0.519954,0.905576,0.677635,0.796541,0.173005,0.147999,0.0181904,0.190591,0.833982,0.223367,0.385901,0.441618,0.320524,0.316828,0.521537,0.953792,0.758502,0.40371,0.60199,0.1084,0.880287,0.374844,0.620083,0.448082,0.0925307,0.25862,0.411538,0.850622,0.709849,0.61343,0.692292,0.594056,0.653386,0.787708,0.295863,0.545193,0.593359,0.565429,0.115245,0.190861,0.658902,0.778206,0.434246,0.141652,0.544094,0.989874,0.692327,0.784351,0.612881,0.311925,0.975303,0.15143,0.478675,0.896607,0.685171,0.30467,0.306839,0.0487934,0.532171,0.769437,0.0378859,0.682875,0.933697,0.442545,0.349332,0.0495859,0.877012,0.717066,0.945016,0.356892,0.373124,0.031984,0.228349,0.702864,0.676305,0.40209,0.794444,0.430954,0.0864163,0.320908,0.892832,0.221789,0.770412,0.676306,0.750333,0.492564,0.645599,0.617396,0.972147,0.564426,0.397609,0.571292,0.0557103,0.512798,0.89652,0.708091,0.593445,0.889349,0.0827119,0.777065,0.793769,0.0777981,0.318928,0.545872,0.970554,0.788205,0.668379,0.40402,0.304565,0.884526,0.743436,0.765744,0.320004,0.292554,0.772598,0.763249,0.598719,0.77564,0.197784,0.487659,0.891507,0.449057,0.312887,0.0867636,0.138057,0.507161,0.852051,0.798809,0.242564,0.0601678,0.917762,0.0931988,0.706344,0.711763,0.433578,0.199325,0.148934,0.907435,0.452916,0.387995,0.0435645,0.466062,0.454013,0.0553311,0.311891,0.984776,0.605824,0.509221,0.571511,0.572751,0.101383,0.694298,0.178742,0.716772,0.761238,0.537143,0.913765,0.95187,0.305211,0.0355491,0.692636,0.615269,0.180486,0.558417,0.279592,0.353574,0.989401,0.52218,0.588168,0.931943,0.327489,0.609138,0.935289,0.41808,0.469468,0.254555,0.304312,0.547733,0.843626,0.321755,0.238066,0.776905,0.895897,0.950584,0.49523,0.753297,0.478181,0.168144,0.196977,0.808659,0.692939,0.28078,0.87195,0.131913,0.686909,0.477009,0.53286,0.650349,0.435387,0.969112,0.478086,0.0569534,0.955908,0.83947,0.51298,0.716347,0.426924,0.280917,0.939428,0.97955,0.0371398,0.846511,0.785158,0.190407,0.682069,0.999991,0.9911,0.821849,0.281154,0.512542,0.122589,0.821543,0.998676,0.448457,0.2467,0.610978,0.539019,0.343353,0.552462,0.282487,0.148127,0.0805084,0.860545,0.669856,0.340555,0.164114,0.784328,0.142335,0.874959,0.1041,0.498401,0.0274881,0.469889,0.829783,0.829812,0.289176,0.203101,0.778209,0.119451,0.539756,0.427783,0.751604,0.677143,0.591183,0.710377,0.716874,0.647103,0.163222,0.873886,0.658228,0.999766,0.0129604,0.869253,0.158296,0.931344,0.261894,0.781898,0.729117,0.200024,0.0924206,0.973535,0.516216,0.541716,0.405099,0.608652,0.352002,0.346368,0.324514,0.398188,0.545294,0.455327,0.791129,0.877325,0.622117,0.805424,0.333696,0.0652398,0.999618,0.840121,0.2322,0.531898,0.588308,0.0235049,0.484188,0.0405949,0.280924,0.993163,0.669619,0.332353,0.0349967,0.810063,0.412309,0.0603863,0.784385,0.720439,0.759271,0.798967,0.34805,0.611841,0.358398,0.68348,0.152016,0.501256,0.132637,0.428806,0.406171,0.478509,0.217293,0.103358,0.598822,0.647091,0.785161,0.80781,0.327893,0.432289,0.293151,0.876188,0.86608,0.152233,0.835505,0.925213,0.871091,0.871716,0.550551,0.0897323,0.213897,0.0267267,0.846734,0.0780887,0.0464526,0.545318,0.976641,0.498332,0.883185,0.19847,0.625263,0.108241,0.637797,0.354402,0.399786,0.194474,0.964999,0.567562,0.871222,0.36512,0.418601,0.434312,0.245388,0.210366,0.192359,0.387638,0.136925,0.262976,0.0431514,0.988561,0.368608,0.522347,0.171169,0.130956,0.17623,0.35553,0.157948,0.327742,0.940951,0.166828,0.560321,0.22341,0.137734,0.39441,0.552433,0.208416,0.205433,0.189891,0.184395,0.852893,0.349549,0.225061,0.691592,0.339508,0.435834,0.768961,0.722179,0.926577,0.287972,0.252187,0.137462,0.868924,0.987037,0.550253,0.119117,0.0675896,0.170477,0.846524,0.795602,0.570314,0.544232,0.151836,0.397327,0.0667073,0.18387,0.732613,0.487329,0.959429,0.938161,0.568885,0.193898,0.833559,0.313706,0.116281,0.671487,0.915358,0.519165,0.683627,0.311563,0.621522,0.134232,0.339265,0.217593,0.589321,0.633369,0.380583,0.401855,0.976841,0.534097,0.893353,0.0253435,0.902983,0.113347,0.906538,0.719188,0.708639,0.857275,0.133909,0.931756,0.847463,0.961742,0.321187,0.670941,0.612615,0.374361,0.760892,0.729603,0.643364,0.383187,0.482967,0.212209,0.914941,0.0866558,0.600714,0.415142,0.731083,0.685219,0.590079,0.315611,0.0646185,0.271917,0.994166,0.225838,0.0108171,0.286971,0.977361,0.570409,0.73696,0.024284,0.211942,0.526886,0.722435,0.738949,0.208554,0.534518,0.480928,0.305656,0.260851,0.183879,0.0843092,0.750153,0.368526,0.512462,0.617029,0.0816086,0.250394,0.108911,0.463488,0.459732,0.0730491,0.481467,0.332326,0.92544,0.286347,0.773586,0.937235,0.507625,0.919765,0.0052793,0.799302,0.176425,0.318722,0.582117,0.55958,0.949284,0.348333,0.0870588,0.954824,0.901473,0.64687,0.452333,0.394035,0.505846,0.99447,0.137094,0.916512,0.6049,0.127946,0.349883,0.789,0.614712,0.835947,0.251034,0.0903298,0.941951,0.0488507,0.831575,0.777134,0.0421684,0.931239,0.602828,0.0710202,0.706207,0.281426,0.399732,0.780246,0.966055,0.141484,0.565796,0.336874,0.893634,0.267169,0.771384,0.771332,0.847782,0.408282,0.444494,0.063437,0.998459,0.673026,0.223397,0.517133,0.869814,0.193989,0.774705,0.526787,0.237439,0.330453,0.438511,0.662267,0.509075,0.454637,0.355883,0.817945,0.740789,0.517494,0.434328,0.340877,0.327313,0.290112,0.383528,0.841504,0.115267,0.759,0.800649,0.785966,0.368662,0.242142,0.48068,0.783105,0.075911,0.547462,0.705694,0.814848,0.593831,0.190664,0.568617,0.0362355,0.719807,0.372851,0.332564,0.271661,0.306424,0.492368,0.85649,0.466823,0.297087,0.959385,0.919425,0.553036,0.686834,0.884867,0.400485,0.159462,0.433091,0.511399,0.74512,0.0278359,0.665123,0.0608722,0.337963,0.566403,0.724497,0.447162,0.955561,0.601027,0.288041,0.852525,0.348295,0.401713,0.299485,0.64024,0.249476,0.507492,0.834432,0.702572,0.218961,0.425572,0.330423,0.0833066,0.488368,0.801183,0.398462,0.809548,0.196376,0.407426,0.619362,0.0390056,0.890512,0.203252,0.578437,0.165516,0.177266,0.622343,0.131007,0.981118,0.756715,0.579378,0.226453,0.632356,0.594682,0.625179,0.0424167,0.0398809,0.566257,0.554186,0.462236,0.140181,0.943199,0.483803,0.793806,0.944602,0.216735,0.27676,0.871945,0.504534,0.853787,0.86593,0.989017,0.957702,0.651958,0.574388,0.362439,0.409633,0.347476,0.631816,0.390387,0.409391,0.634204,0.838891,0.0525407,0.150716,0.409308,0.735284,0.0943276,0.297253,0.509185,0.537183,0.39067,0.475922,0.506447,0.828138,0.402186,0.134274,0.772972,0.0717887,0.40972,0.281937,0.758295,0.428308,0.512043,0.232023,0.718623,0.939328,0.674028,0.597246,0.306412,0.345055,0.581399,0.980219,0.367171,0.0732585,0.0349198,0.506084,0.3666,0.934949,0.23808,0.999889,0.723394,0.384527,0.0642,0.907862,0.707886,0.229247,0.580836,0.259665,0.294589,0.00870585,0.532057,0.781799,0.645558,0.450424,0.614146,0.504875,0.327278,0.233685,0.886807,0.989786,0.0149646,0.825071,0.76105,0.623422,0.803842,0.705369,0.435599,0.794864,0.988661,0.497041,0.374803,0.550802,0.402671,0.906448,0.463288,0.368166,0.465072,0.385135,0.159135,0.203917,0.17229,0.45822,0.221834,0.155194,0.00622505,0.442786,0.609941,0.836553,0.342349,0.747947,0.963344,0.635292,0.475568,0.0761095,0.907809,0.729551,0.0670915,0.884197,0.0557286,0.839656,0.969667,0.96638,0.147986,0.686892,0.852442,0.495965,0.0774742,0.623931,0.274586,0.43747,0.8932,0.0482224,0.599691,0.971248,0.329079,0.40037,0.840198,0.504908,0.0826544,0.653978,0.650068,0.534082,0.495327,0.275689,0.566653,0.835683,0.146812,0.768863,0.148531,0.802454,0.151495,0.0509972,0.0773168,0.0649495,0.208472,0.281365,0.456117,0.269477,0.143208,0.420315,0.270164,0.27585,0.805895,0.0376787,0.793845,0.161018,0.59817,0.948439,0.0112196,0.575138,0.689882,0.274233,0.560916,0.685654,0.03689,0.484247,0.0354187,0.842325,0.32627,0.55706,0.219289,0.625749,0.86627,0.103373,0.590783,0.710238,0.323742,0.447408,0.372467,0.844666,0.885974,0.665147,0.172432,0.719622,0.628029,0.679419,0.108297,0.975143,0.136702,0.440857,0.198967,0.180703,0.365041,0.279865,0.943031,0.296115,0.521971,0.536824,0.510676,0.986018,0.53078,0.878959,0.844186,0.152931,0.991055,0.815636,0.400421,0.768849,0.665573,0.354865,0.828037,0.227165,0.671271,|0.48763,0.706814,0.538344,0.509624,0.979451,0.422159,0.425045,0.429763,0.470501,0.593417,0.133849,0.506003,0.136141,0.510648,0.0540053,0.974228,0.28561,0.932171,0.153704,0.324695,0.05931,0.51722,0.36437,0.519323,0.171933,0.643407,0.243955,0.0463873,0.00983322,0.641377,0.607975,0.0413693,0.519789,0.190722,0.792369,0.816617,0.140253,0.528641,0.426597,0.0167997,0.983592,0.366263,0.171354,0.0527074,0.562438,0.461501,0.13876,0.542619,0.205642,0.966063,0.241142,0.438366,0.0757992,0.167649,0.226289,0.891137,0.540598,0.94944,0.802716,0.473164,0.00142401,0.6187,0.17269,0.936607,0.796027,0.286538,0.000580668,0.965179,0.33083,0.789841,0.393406,0.683903,0.35904,0.350359,0.78431,0.710537,0.574707,0.328114,0.995385,0.944035,0.500965,0.838692,0.940096,0.748854,0.864545,0.237671,0.438726,0.897095,0.186718,0.522892,0.880092,0.736867,0.668726,0.707845,0.58081,0.114541,0.963315,0.348337,0.877433,0.0741955,0.50003,0.151213,0.903169,0.0836331,0.833255,0.969321,0.717214,0.0891668,0.767752,0.0728288,0.980414,0.289463,0.0452033,0.814333,0.53477,0.903408,0.251705,0.612433,0.0944459,0.885005,0.611447,0.255689,0.480679,0.866529,0.906141,0.659196,0.0327681,0.912752,0.490655,0.120409,0.316422,0.692444,0.546218,0.222819,0.909321,0.580929,0.941612,0.736019,0.120562,0.231245,0.642188,0.791758,0.0906592,0.928984,0.918813,0.0312709,0.0614241,0.753181,0.267389,0.475997,0.699516,0.688808,0.941787,0.844605,0.637788,0.603662,0.246318,0.88438,0.0907698,0.25183,0.0148377,0.988219,0.525686,0.931558,0.292688,0.789648,0.721773,0.131968,0.49884,0.0342009,0.911619,0.336608,0.286525,0.689638,0.463016,0.271335,0.507109,0.309853,0.953364,0.911627,0.769868,0.617871,0.459498,0.574533,0.765399,0.511739,0.330652,0.604617,0.659919,0.917363,0.417306,0.275025,0.778087,0.91865,0.913616,0.130303,0.599733,0.545172,0.856256,0.402827,0.0417952,0.0993012,0.154222,0.0733539,0.780562,0.425428,0.760274,0.55348,0.312289,0.938366,0.914808,0.717807,0.522189,0.20201,0.555229,0.642448,0.505045,0.978794,0.604448,0.696707,0.0246171,0.257885,0.906536,0.523354,0.732553,0.386888,0.404742,0.450796,0.361131,0.611781,0.586876,0.953079,0.716813,0.959152,0.242947,0.314348,0.140043,0.28709,0.539808,0.243002,0.753089,0.494903,0.0209049,0.271343,0.390478,0.726334,0.835475,0.0697486,0.418737,0.0900771,0.992985,0.950648,0.820808,0.42792,0.559969,0.899774,0.26717,0.998727,0.306171,0.237356,0.689157,0.831801,0.422922,0.292632,0.866753,0.577739,0.298783,0.625726,0.797462,0.500194,0.49947,0.683264,0.866811,0.766864,0.998835,0.250345,0.509012,0.0408474,0.662455,0.110279,0.156851,0.808369,0.83386,0.149465,0.152563,0.0507042,0.0436798,0.780914,0.037169,0.415658,0.154616,0.342806,0.24936,0.698313,0.588333,0.337712,0.279409,0.827352,0.804775,0.750588,0.176127,0.397562,0.370781,0.524642,0.119743,0.573309,0.918726,0.0755228,0.196911,0.842657,0.420976,0.31274,0.651899,0.394518,0.49698,0.30821,0.806156,0.892856,0.891902,0.427829,0.453378,0.113425,0.303701,0.45923,0.587223,0.694412,0.987451,0.487508,0.213484,0.444657,0.91085,0.0728193,0.577163,0.239778,0.920337,0.752167,0.0886633,0.73938,0.340685,0.543559,0.417998,0.136547,0.224393,0.772662,0.855543,0.616875,0.604231,0.181931,0.382799,0.00527835,0.975978,0.39542,0.159733,0.924126,0.330405,0.492094,0.176526,0.745496,0.239045,0.767681,0.330291,0.187388,0.175016,0.230856,0.662789,0.900817,0.467136,0.470878,0.199878,0.539815,0.111596,0.450061,0.504663,0.108051,0.81799,0.141107,0.846621,0.44778,0.700847,0.779993,0.215259,0.961418,0.918384,0.676745,0.992839,0.710596,0.57153,0.301573,0.750862,0.906448,0.802377,0.694153,0.660572,0.950099,0.722089,0.261819,0.575159,0.532907,0.131612,0.0336162,0.176564,0.505028,0.278027,0.981086,0.670804,0.771538,0.971073,0.265757,0.0334277,0.819805,0.397465,0.966829,0.774061,0.5056,0.0657601,0.57105,0.593749,0.783671,0.863205,0.3871,0.495253,0.687009,0.292517,0.259757,0.16117,0.809679,0.0272654,0.635907,0.246463,0.187535,0.369825,0.410326,0.396992,0.718994,0.935497,0.373597,0.736486,0.348031,0.0285285,0.596252,0.076838,0.479895,0.771792,0.49738,0.50905,0.686632,0.488127,0.684328,0.953824,0.204477,0.701015,0.339688,0.0361319,0.950156,0.781326,0.225945,0.964616,0.516308,0.268119,0.434416,0.204786,0.491557,0.657972,0.123358,0.607632,0.420364,0.457907,0.412124,0.208173,0.202041,0.810283,0.322694,0.519851,0.97756,0.426531,0.668207,0.937949,0.441097,0.899071,0.87263,0.24602,0.00923783,0.864851,0.815309,0.800147,0.496639,0.158817,0.542386,0.0735909,0.31159,0.707465,0.964585,0.154669,0.875541,0.149313,0.405542,0.535913,0.70984,0.0169455,0.287297,0.821104,0.899601,0.806508,0.895982,0.986945,0.421009,0.0198504,0.898289,0.211727,0.419316,0.0702034,0.716796,0.0394107,0.0645158,0.886629,0.741332,0.520956,0.686093,0.72677,0.326859,0.119175,0.86902,0.811536,0.13121,0.943398,0.572737,0.997211,0.892661,0.208525,0.888745,0.893667,0.415958,0.899057,0.0715641,0.102207,0.218711,0.956768,0.959675,0.126476,0.539467,0.469174,0.611797,0.808766,0.371096,0.608146,0.303355,0.525153,0.430049,0.953384,0.268824,0.19441,0.554248,0.519048,0.549248,0.963204,0.92707,0.303988,0.593572,0.29684,0.42019,0.817896,0.885239,0.89542,0.456061,0.433059,0.671727,0.0414172,0.0272346,0.148918,0.791323,0.124876,0.529159,0.954683,0.951711,0.184621,0.204612,0.394896,0.733391,0.547885,0.365997,0.549963,0.534739,0.181258,0.547377,0.411976,0.644848,0.833975,0.284572,0.674278,0.120184,0.960312,0.428684,0.383874,0.326335,0.383779,0.310112,0.511863,0.512437,0.659031,0.0455748,0.38209,0.691257,0.5539,0.723914,0.0268764,0.987705,0.817874,0.275565,0.460955,0.763487,0.530184,0.738937,0.55764,0.326923,0.727892,0.443264,0.522753,0.568407,0.184242,0.913404,0.39201,0.0617122,0.780061,0.0383239,0.729563,0.0895814,0.0551465,0.499161,0.678626,0.0849779,0.730076,0.25542,0.963008,0.996792,0.152362,0.396319,0.737732,0.404402,0.570072,0.654768,0.868626,0.36259,0.120398,0.0438982,0.991172,0.992334,0.385065,0.58814,0.592947,0.746379,0.590794,0.561596,0.105313,0.521354,0.422648,0.906977,0.870831,0.959328,0.581142,0.546984,0.824002,0.0607978,0.461296,0.12969,0.999574,0.170174,0.608059,0.862772,0.75587,0.739684,0.870436,0.675606,0.369943,0.726288,0.411064,0.884901,0.259301,0.281295,0.539535,0.230882,0.256715,0.744223,0.122336,0.695258,0.657463,0.643425,0.559913,0.223803,0.106723,0.509033,0.655683,0.907929,0.566965,0.130826,0.454795,0.613401,0.911732,0.56299,0.61403,0.753395,0.76895,0.13877,0.081275,0.292001,0.816507,0.00913304,0.953125,0.427321,0.577342,0.715575,0.359775,0.397978,0.43302,0.304498,0.961257,0.732528,0.0722973,0.437967,0.621554,0.555948,0.196623,0.307447,0.0640126,0.67434,0.763852,0.542475,0.791258,0.250677,0.590554,0.723289,0.769933,0.540183,0.574743,0.920689,0.59509,0.803966,0.441521,0.757227,0.373414,0.0334054,0.688514,0.131089,0.672333,0.877566,0.0478173,0.505404,0.0887511,0.708467,0.098931,0.592166,0.332276,0.959544,0.454593,0.814379,0.477018,0.532153,0.569232,0.42551,0.748922,0.0931044,0.995147,0.961258,0.850686,0.459745,0.0760633,0.211859,0.750124,0.667201,0.725055,0.273631,0.0788469,0.777088,0.70736,0.857878,0.574115,0.424761,0.342017,0.151792,0.564786,0.0329007,0.824379,0.108113,0.173835,0.68138,0.980138,0.255449,0.778077,0.905355,0.873574,0.909376,0.272854,0.832065,0.365412,0.47596,0.373159,0.598696,0.846558,0.51519,0.0629822,0.297304,0.14794,0.800179,0.87838,0.582276,0.0427682,0.494936,0.947706,0.540218,0.62952,0.384464,0.826543,0.525143,0.680051,0.4524,0.617422,0.242627,0.742239,0.58112,0.511031,0.684478,0.260032,0.128442,0.722317,0.343768,0.917359,0.788161,0.497653,0.0110967,0.736356,0.789373,0.505745,0.492602,0.295181,0.462158,0.766558,0.881146,0.346182,0.645979,0.475411,0.623771,0.918589,0.346645,0.124257,0.379465,0.33187,0.779409,0.559202,0.599298,0.450343,0.031295,0.691903,0.112182,0.695459,0.704846,0.775223,0.0165502,0.375939,0.550731,0.0241367,0.0812834,0.47429,0.201531,0.741634,0.969569,0.58032,0.0734138,0.174152,0.578033,0.547214,0.53701,0.782012,0.109652,0.833967,0.238546,0.776541,0.978404,0.671993,0.796501,0.0241255,0.972463,0.176519,0.604152,0.281386,0.471724,0.0918008,0.25891,0.448899,0.601333,0.293494,0.0554548,0.991551,0.649843,0.395359,0.615367,0.0599362,0.729341,0.682231,0.406626,0.556376,0.619824,0.747661,0.63929,0.794611,0.896956,0.896887,0.660127,0.181939,0.793218,0.485933,0.861129,0.193651,0.654818,0.812652,0.545391,0.657025,0.108506,0.301403,0.568037,0.91462,0.351401,0.477164,0.817023,0.836543,0.306574,0.0716686,0.0831695,0.982061,0.319292,0.915596,0.41905,0.299077,0.633011,0.00968307,0.124904,0.765689,0.183991,0.726305,0.934032,0.887627,0.949,0.133788,0.848106,0.449424,0.682522,0.438281,0.855702,0.199948,0.649355,0.0594766,0.445344,0.906897,0.963613,0.578251,0.910431,0.515153,0.792328,0.711381,0.825027,0.43174,0.605761,0.660848,0.0430158,0.644827,0.350809,0.00073874,0.777297,0.0692329,0.741977,0.0108901,0.281852,0.695206,0.600243,0.488099,0.563524,0.0913208,0.140953,0.296451,0.158555,0.612248,0.688722,0.295547,0.26027,0.52772,0.888261,0.362086,0.853823,0.594201,0.00813562,0.043664,0.0289457,0.696186,0.653097,0.967037,0.467872,0.675968,0.691647,0.0288687,0.312648,0.412204,0.284957,|0.289362,0.795755,0.85017,0.0839367,0.177095,0.221821,0.31915,0.332017,0.550818,0.573609,0.563881,0.649602,0.543234,0.42574,0.357351,0.515531,0.271814,0.0467184,0.813677,0.806302,0.375976,0.0604308,0.489992,0.762403,0.780697,0.517509,0.122749,0.524444,0.65838,0.953633,0.47005,0.745053,0.777056,0.604577,0.697414,0.0827254,0.820037,0.764781,0.809754,0.793111,0.428659,0.37521,0.136652,0.155336,0.342383,0.92818,0.210295,0.030117,0.160399,0.432738,0.692129,0.985572,0.893574,0.235077,0.811883,0.108501,0.878317,0.522791,0.393094,0.0955317,0.525687,0.564699,0.654203,0.258033,0.0143124,0.917126,0.249077,0.814012,0.658508,0.811015,0.674724,0.394872,0.217186,0.480889,0.678184,0.531868,0.327037,0.0717382,0.166474,0.825036,0.614008,0.279778,0.158879,0.153321,0.22413,0.93108,0.6627,0.667057,0.70743,0.519069,0.508528,0.965503,0.457502,0.209257,0.0655717,0.714003,0.962169,0.280207,0.962451,0.169871,0.711785,0.171765,0.0268754,0.71732,0.88253,0.98295,0.255421,0.790189,0.930626,0.664178,0.112687,0.627622,0.424257,0.363632,0.125252,0.872381,0.0180561,0.953991,0.507338,0.694439,0.686232,0.23553,0.459289,0.370947,0.506832,0.640835,0.648267,0.389701,0.265059,0.570329,0.445387,0.323523,0.849903,0.405098,0.115338,0.442518,0.278032,0.380876,0.72329,0.675755,0.943113,0.360463,0.265044,0.744225,0.00137472,0.919377,0.206841,0.649672,0.780487,0.41992,0.635499,0.308015,0.275278,0.360772,0.79777,0.490165,0.374338,0.252816,0.390552,0.128389,0.373981,0.0427251,0.450899,0.891606,0.00935274,0.920802,0.258613,0.754164,0.945993,0.325299,0.815397,0.457948,0.628492,0.157852,0.617729,0.600649,0.866779,0.537698,0.705779,0.857077,0.739515,0.351328,0.132326,0.543961,0.0681564,0.626745,0.765967,0.411832,0.515504,0.925219,0.725862,0.691373,0.00302929,0.119411,0.661456,0.2064,0.970583,0.235759,0.487598,0.401218,0.539373,0.556188,0.380307,0.534293,0.705366,0.614485,0.215054,0.884384,0.130086,0.744239,0.712362,0.688576,0.923028,0.813769,0.876266,0.03054,0.211216,0.395858,0.337602,0.346739,0.0200561,0.246762,0.3432,0.961832,0.295007,0.666395,0.049986,0.404025,0.915338,0.801896,0.351988,0.338994,0.411679,0.086263,0.215591,0.808289,0.425525,0.227704,0.448511,0.209862,0.268193,0.763746,0.719629,0.862087,0.927301,0.983263,0.0208966,0.654216,0.249955,0.146511,0.71427,0.205805,0.201815,0.700595,0.509546,0.26649,0.25444,0.661619,0.676713,0.680397,0.733385,0.489939,0.575223,0.585819,0.94503,0.279318,0.681646,0.80701,0.773966,0.751323,0.967141,0.129201,0.597512,0.979234,0.411436,0.360158,0.0851243,0.570579,0.204797,0.343328,0.0496023,0.289129,0.0923932,0.577693,0.35537,0.560155,0.384269,0.0362903,0.641414,0.1646,0.31934,0.510817,0.702371,0.642471,0.550605,0.355049,0.204582,0.371133,0.142469,0.449739,0.953094,0.820163,0.173352,0.692505,0.315514,0.644949,0.667326,0.693899,0.940403,0.822832,0.214261,0.123208,0.140701,0.146853,0.624917,0.0859704,0.992124,0.485802,0.581265,0.450998,0.975541,0.504068,0.853831,0.723717,0.307803,0.752573,0.40189,0.123292,0.316703,0.981298,0.102251,0.627466,0.516117,0.352216,0.308422,0.648921,0.656304,0.976569,0.896014,0.741533,0.291374,0.277458,0.49065,0.313155,0.537965,0.0864497,0.516224,0.223906,0.445783,0.535676,0.942591,0.798474,0.700957,0.395601,0.969534,0.112382,0.784722,0.233286,0.868156,0.49393,0.574552,0.0872096,0.619918,0.531969,0.101087,0.433588,0.91033,0.401652,0.305527,0.2627,0.135335,0.995365,0.337334,0.233687,0.500568,0.328736,0.516129,0.308975,0.607875,0.681467,0.773076,0.1893,0.402689,0.373899,0.942643,0.771178,0.445487,0.185221,0.882547,0.811702,0.63788,0.654156,0.53923,0.175232,0.67735,0.397177,0.0174859,0.910498,0.552154,0.582719,0.589743,0.232296,0.87188,0.595131,0.358963,0.765658,0.254369,0.141802,0.873475,0.623002,0.658358,0.871613,0.863393,0.43215,0.357397,0.452285,0.70445,0.256608,0.841462,0.778608,0.0708643,0.993578,0.975955,0.423751,0.271979,0.417857,0.557856,0.527074,0.479992,0.0432932,0.781411,0.281731,0.386604,0.96395,0.180054,0.986728,0.550756,0.244135,0.127805,0.0779381,0.832003,0.128789,0.792306,0.609614,0.321447,0.342377,0.577073,0.704792,0.261681,0.0851464,0.607278,0.702756,0.907155,0.0140724,0.285433,0.285249,0.0915629,0.306135,0.95335,0.176594,0.861618,0.332357,0.388914,0.662996,0.705347,0.735293,0.0568327,0.319805,0.34729,0.206138,0.156703,0.110775,0.848965,0.157426,0.825087,0.161866,0.23887,0.0920224,0.421911,0.784494,0.687643,0.597074,0.874641,0.467706,0.437237,0.717351,0.534229,0.846506,0.557886,0.121167,0.409558,0.682351,0.619296,0.469734,0.362717,0.444125,0.206777,0.383394,0.0964326,0.68033,0.524221,0.76908,0.24295,0.411297,0.730995,0.204739,0.312243,0.468032,0.846573,0.663665,0.3471,0.847154,0.467538,0.674302,0.615518,0.232485,0.396177,0.643105,0.562371,0.704593,0.292087,0.677758,0.172387,0.25368,0.289775,0.906024,0.621184,0.68879,0.740962,0.584072,0.434476,0.834278,0.228707,0.099327,0.469255,0.102925,0.49386,0.223827,0.507112,0.932545,0.972246,0.540798,0.0773428,0.977119,0.913936,0.248949,0.230826,0.888019,0.604792,0.949404,0.865549,0.872296,0.692152,0.814253,0.536689,0.519526,0.637368,0.515887,0.998758,0.820215,0.572439,0.409948,0.740381,0.968129,0.990514,0.314089,0.0261983,0.345316,0.111921,0.165178,0.699159,0.979149,0.788247,0.42193,0.541928,0.849063,0.818264,0.71579,0.493913,0.327984,0.44008,0.745418,0.121908,0.162202,0.130103,0.882747,0.343997,0.93483,0.85526,0.481689,0.908931,0.698599,0.142916,0.785242,0.452964,0.790106,0.495795,0.833641,0.554807,0.805506,0.579964,0.237985,0.633444,0.47016,0.973014,0.16246,0.960456,0.844772,0.466532,0.544348,0.90425,0.311466,0.767036,0.717076,0.292459,0.504054,0.479235,0.929088,0.65692,0.253657,0.969776,0.027694,0.970564,0.774486,0.532453,0.292184,0.332053,0.165285,0.642564,0.479846,0.300312,0.482946,0.210912,0.807437,0.522072,0.672586,0.430507,0.238204,0.185778,0.535264,0.946388,0.77658,0.211415,0.0883662,0.161065,0.114588,0.21952,0.152785,0.69609,0.851446,0.619322,0.891093,0.576904,0.88457,0.674115,0.625496,0.108369,0.315779,0.629492,0.770376,0.279839,0.673177,0.0626736,0.33469,0.844405,0.911269,0.713117,0.423087,0.643156,0.421812,0.155533,0.122011,0.96642,0.105033,0.177918,0.992985,0.550755,0.165132,0.345738,0.15887,0.783507,0.999477,0.207458,0.766287,0.599643,0.206875,0.99504,0.456541,0.300615,0.419934,0.982284,0.825718,0.306721,0.467789,0.153007,0.281612,0.924848,0.0177193,0.56164,0.352463,0.502834,0.750412,0.845584,0.686244,0.459681,0.307567,0.88493,0.747684,0.935647,0.232148,0.196043,0.846086,0.876134,0.339955,0.0119224,0.379784,0.681962,0.0361773,0.824589,0.00144917,0.0920463,0.433589,0.929724,0.117833,0.0144749,0.366103,0.0627395,0.551569,0.0558857,0.872717,0.70871,0.6741,0.43913,0.808906,0.893194,0.65994,0.424579,0.389777,0.861161,0.602476,0.308677,0.230742,0.0659447,0.71732,0.436369,0.128066,0.0519168,0.446199,0.711564,0.219431,0.00113463,0.427216,0.978715,0.910579,0.214052,0.456779,0.0743448,0.277438,0.097334,0.873545,0.445724,0.531992,0.111129,0.0968887,0.912488,0.624204,0.99629,0.578886,0.0242808,0.152554,0.37285,0.665688,0.646482,0.748304,0.922146,0.73977,0.963825,0.177429,0.659736,0.478188,0.478455,0.913967,0.281957,0.565267,0.269885,0.866557,0.114097,0.854974,0.12262,0.464177,0.753929,0.728032,0.99277,0.819773,0.966985,0.152256,0.654987,0.105952,0.52751,0.371448,0.317535,0.696237,0.379971,0.415553,0.300675,0.293861,0.66333,0.223921,0.942919,0.978282,0.786187,0.780804,0.341177,0.19084,0.177765,0.846839,0.533812,0.620866,0.0772783,0.206836,0.737238,0.495765,0.818426,0.474968,0.242791,0.743869,0.897812,0.564526,0.136427,0.677292,0.325092,0.390739,0.0917332,0.998176,0.722402,0.102826,0.157552,0.390997,0.914963,0.87205,0.460318,0.691335,0.860845,0.708073,0.301523,0.832984,0.185842,0.262724,0.181022,0.117518,0.860176,0.101605,0.552622,0.0840866,0.455672,0.3729,0.25348,0.589101,0.527371,0.0828291,0.695811,0.367021,0.852511,0.259465,0.0816689,0.687156,0.339792,0.120028,0.712564,0.534208,0.870149,0.288144,0.166961,0.35199,0.990499,0.110735,0.495602,0.0477884,0.409765,0.286048,0.907195,0.665145,0.467956,0.64977,0.92873,0.330903,0.189259,0.113157,0.0887493,0.256893,0.439297,0.100732,0.0805707,0.256056,0.823987,0.629863,0.324869,0.99076,0.0911924,0.973534,0.801409,0.53659,0.942254,0.47278,0.477023,0.558673,0.557208,0.291773,0.331959,0.116457,0.139985,0.684534,0.109854,0.838807,0.0116542,0.661914,0.0599477,0.95958,0.318713,0.0621842,0.655161,0.796588,0.109295,0.0181159,0.350179,0.307174,0.945549,0.175572,0.579068,0.851114,0.351255,0.126905,0.888537,0.398867,0.809063,0.893311,0.173594,0.429827,0.435614,0.0984383,0.747781,0.310649,0.638407,0.653826,0.607217,0.47471,0.106898,0.568251,0.271375,0.0176093,0.0297447,0.177342,0.688559,0.531118,0.987988,0.63199,0.0540558,0.752005,0.234268,0.0567348,0.568117,0.783065,0.426958,0.213335,0.922166,0.970309,0.855884,0.369959,0.366244,0.971884,0.505567,0.519444,0.0817475,0.748544,0.312741,0.325477,0.324593,0.841112,0.742711,0.270595,0.53584,0.50579,0.266063,0.318931,0.93858,0.253843,0.970338,0.762274,0.0769086,0.469958,0.623582,0.472298,0.666724,0.794801,0.989305,0.142857,0.728709,0.250891,0.335328,0.771778,|0.618354,0.863793,0.56257,0.278572,0.255184,0.111361,0.944319,0.219902,0.870873,0.55793,0.499221,0.985062,0.444601,0.727473,0.50028,0.964213,0.411252,0.637937,0.0810233,0.803132,0.739472,0.112071,0.324537,0.287134,0.206514,0.284516,0.0639825,0.289761,0.220473,0.608669,0.57954,0.66694,0.320401,0.120947,0.0298289,0.482193,0.559745,0.770522,0.951769,0.390298,0.463083,0.409941,0.0466659,0.212111,0.68037,0.537167,0.769607,0.653543,0.665604,0.0136187,0.980088,0.838034,0.540224,0.5654,0.851563,0.569498,0.511149,0.147345,0.451973,0.212383,0.499308,0.350155,0.707036,0.404817,0.183859,0.226348,0.588972,0.411025,0.125333,0.514291,0.539282,0.898349,0.768183,0.301708,0.874985,0.12328,0.944927,0.452907,0.863859,0.932218,0.0170039,0.430571,0.517157,0.751696,0.719362,0.276582,0.698166,0.620344,0.461137,0.819162,0.397902,0.647523,0.506847,0.819324,0.72285,0.955021,0.733949,0.891502,0.0647935,0.59186,0.273027,0.340069,0.39496,0.837458,0.557015,0.958967,0.324363,0.850605,0.219817,0.13314,0.3124,0.164792,0.767343,0.539101,0.118515,0.213568,0.0731775,0.591105,0.740794,0.182241,0.922267,0.697236,0.611128,0.308151,0.381567,0.0482306,0.302272,0.900029,0.469061,0.808643,0.304409,0.603731,0.493751,0.454747,0.429338,0.388955,0.995169,0.205839,0.400186,0.819028,0.876426,0.901308,0.676849,0.274495,0.410635,0.211058,0.985712,0.973644,0.621934,0.894422,0.0117839,0.0128765,0.663064,0.885366,0.635967,0.989826,0.301527,0.209088,0.448724,0.613434,0.0761047,0.168469,0.61713,0.198131,0.309593,0.716908,0.467627,0.413443,0.286743,0.0937507,0.0953403,0.380518,0.684853,0.73019,0.306313,0.932779,0.868878,0.617534,0.558766,0.618413,0.651879,0.25583,0.371469,0.796881,0.353582,0.698361,0.861427,0.0907758,0.572907,0.197109,0.260436,0.940929,0.808597,0.109992,0.957781,0.318445,0.549707,0.165151,0.829021,0.243041,0.310744,0.586191,0.907078,0.784053,0.0243389,0.677139,0.0968266,0.898356,0.834201,0.586506,0.291039,0.649952,0.817812,0.741001,0.343397,0.105117,0.611974,0.901719,0.0283598,0.652174,0.769682,0.948442,0.675951,0.327549,0.707489,0.496745,0.482271,0.167107,0.32352,0.426205,0.529224,0.610246,0.51217,0.464267,0.533734,0.543294,0.751404,0.124783,0.00335819,0.97778,0.405629,0.195571,0.677167,0.618599,0.0786628,0.884213,0.359376,0.458233,0.587825,0.0201406,0.347198,0.344789,0.884467,0.655986,0.322373,0.458848,0.934199,0.632173,0.270948,0.412091,0.91658,0.140691,0.393191,0.838488,0.432242,0.274617,0.463799,0.937318,0.818918,0.973741,0.220392,0.225035,0.04823,0.579061,0.415197,0.0557118,0.762774,0.152044,0.339487,0.121733,0.110866,0.78896,0.575469,0.386066,0.0912201,0.606707,0.423099,0.428959,0.489696,0.18294,0.0705734,0.324951,0.901562,0.646764,0.769394,0.129841,0.361004,0.284972,0.596039,0.464225,0.758354,0.566606,0.42144,0.526992,0.789893,0.866576,0.359972,0.671974,0.647173,0.420282,0.555996,0.0555537,0.618996,0.114098,0.00706542,0.996381,0.455391,0.562757,0.920575,0.119603,0.461872,0.0153422,0.87148,0.611428,0.704403,0.295711,0.428687,0.33806,0.92557,0.760898,0.860101,0.373604,0.0564008,0.930664,0.995996,0.246295,0.418606,0.947565,0.695827,0.383754,0.133586,0.143561,0.603458,0.593564,0.397183,0.346887,0.0528709,0.908085,0.455487,0.493575,0.97014,0.911517,0.894997,0.210791,0.0992644,0.907463,0.118369,0.421348,0.314959,0.126325,0.148467,0.89414,0.387263,0.336488,0.906018,0.00204271,0.327214,0.50911,0.672734,0.326195,0.546731,0.723461,0.167154,0.369667,0.9448,0.0202951,0.108819,0.107851,0.59127,0.668456,0.143165,0.836729,0.160423,0.905988,0.0270479,0.0865795,0.449682,0.916806,0.774433,0.368832,0.0734897,0.291183,0.453109,0.76548,0.60988,0.625491,0.419143,0.128715,0.708505,0.255209,0.625616,0.92172,0.983115,0.854294,0.949227,0.609068,0.543595,0.390598,0.703494,0.730256,0.434159,0.189418,0.771234,0.288389,0.873543,0.886332,0.165167,0.204611,0.0320097,0.899169,0.111742,0.109551,0.380191,0.21793,0.0197659,0.188972,0.653258,0.961217,0.323355,0.767828,0.170195,0.643763,0.56954,0.930611,0.41453,0.94822,0.208046,0.6418,0.981731,0.327938,0.517495,0.62909,0.249317,0.822117,0.194628,0.966547,0.416526,0.971146,0.935291,0.766843,0.533418,0.943138,0.539827,0.0573326,0.79127,0.468841,0.226879,0.605619,0.235653,0.736153,0.285093,0.139843,0.02533,0.0273788,0.673163,0.788601,0.567204,0.0978964,0.0795985,0.032131,0.61622,0.162685,0.783514,0.310468,0.027599,0.735907,0.782415,0.246147,0.660893,0.639217,0.299588,0.0084188,0.836653,0.590433,0.63067,0.827557,0.522192,0.640091,0.631322,0.264596,0.542322,0.0289023,0.619561,0.256791,0.866695,0.818012,0.509026,0.189196,0.454668,0.834087,0.534013,0.00153267,0.111714,0.57089,0.452289,0.733664,0.489255,0.0881924,0.983446,0.0788771,0.619701,0.693887,0.218901,0.471326,0.31733,0.549807,0.657632,0.576649,0.761706,0.207981,0.351209,0.073884,0.145322,0.561225,0.93895,0.170889,0.541929,0.158557,0.0215345,0.11935,0.927849,0.59852,0.563977,0.443513,0.154349,0.893236,0.00667959,0.00185752,0.686681,0.126998,0.471242,0.146535,0.218281,0.447391,0.950627,0.263249,0.269661,0.00619149,0.156851,0.229013,0.517689,0.558564,0.960617,0.48179,0.133298,0.993625,0.527339,0.915722,0.0752704,0.00521612,0.588957,0.137295,0.451184,0.833015,0.764741,0.148594,0.351069,0.127791,0.664393,0.718658,0.542807,0.841482,0.267679,0.475016,0.853966,0.498411,0.00424784,0.570658,0.0054841,0.326117,0.30481,0.152707,0.0679272,0.467497,0.862371,0.327532,0.872407,0.189343,0.178118,0.402334,0.596678,0.67263,0.752411,0.8359,0.597046,0.136472,0.707872,0.437442,0.357137,0.0177208,0.585199,0.155649,0.239549,0.508683,0.167806,0.803122,0.731194,0.377011,0.939407,0.703955,0.829632,0.657481,0.408999,0.242914,0.067668,0.45907,0.705762,0.865088,0.924339,0.930965,0.518816,0.959384,0.153492,0.466046,0.353785,0.0959296,0.747911,0.789855,0.759347,0.619584,0.55735,0.628398,0.350865,0.687176,0.590969,0.0921885,0.188813,0.952635,0.0308003,0.236155,0.719938,0.0975297,0.996026,0.388727,0.621004,0.871974,0.737308,0.154851,0.774984,0.130016,0.241436,0.387952,0.501168,0.533991,0.671695,0.736246,0.400812,0.219223,0.0700671,0.688461,0.580488,0.644356,0.686525,0.612755,0.317192,0.317522,0.85035,0.241548,0.986546,0.911416,0.650846,0.00765514,0.81736,0.992388,0.408406,0.480691,0.498723,0.416102,0.916297,0.0667353,0.25566,0.944518,0.777045,0.54185,0.916241,0.256639,0.793233,0.519675,0.53997,0.187472,0.277865,0.556293,0.466857,0.0727028,0.271929,0.672118,0.197935,0.76838,0.199279,0.0382084,0.423099,0.636701,0.381767,0.188255,0.777858,0.0556085,0.838091,0.139892,0.047848,0.970215,0.203306,0.536607,0.352646,0.405929,0.968373,0.0195138,0.180799,0.934186,0.462918,0.952589,0.724836,0.113416,0.361353,0.853087,0.892887,0.769207,0.667696,0.785053,0.339696,0.897353,0.00812948,0.763968,0.269299,0.0683696,0.225342,0.74427,0.830474,0.967105,0.758351,0.859282,0.974871,0.749551,0.71241,0.381845,0.110005,0.916147,0.362405,0.851667,0.837356,0.896426,0.89495,0.890775,0.479317,0.155001,0.742965,0.920655,0.160492,0.66245,0.0618176,0.0204555,0.154339,0.040127,0.464348,0.38649,0.736315,0.0726383,0.245914,0.279873,0.312405,0.520181,0.831723,0.0885418,0.896619,0.960435,0.743938,0.0850471,0.404661,0.820427,0.173434,0.107866,0.0292343,0.0977392,0.207892,0.568178,0.703138,0.316439,0.352157,0.147878,0.53446,0.47727,0.205074,0.822396,0.713322,0.75588,0.30461,0.258696,0.167072,0.522161,0.371622,0.476349,0.0980705,0.727751,0.734517,0.441698,0.328909,0.973039,0.552412,0.196837,0.0606181,0.164345,0.857115,0.093177,0.441466,0.98021,0.527212,0.593432,0.519094,0.453306,0.766607,0.502678,0.327698,0.678851,0.731043,0.52882,0.328985,0.521079,0.897272,0.492392,0.186652,0.794957,0.826096,0.496787,0.318825,0.675935,0.308363,1.74642e-05,0.475451,0.749491,0.273608,0.405824,0.214924,0.593402,0.588231,0.276362,0.721394,0.87899,0.845484,0.762044,0.0433753,0.986634,0.782166,0.771623,0.408175,0.716966,0.384554,0.0158212,0.13473,0.538174,0.417377,0.877537,0.262877,0.778086,0.381195,0.71735,0.729056,0.236689,0.819467,0.804608,0.629032,0.976626,0.922537,0.411536,0.958208,0.403811,0.072936,0.00585461,0.66276,0.422308,0.643611,0.898878,0.252782,0.447857,0.247001,0.17962,0.151809,0.55029,0.878234,0.0612481,0.35226,0.781868,0.286884,0.946872,0.921879,0.757455,0.828299,0.616812,0.937228,0.881099,0.560759,0.451596,0.171732,0.567916,0.40659,0.00576729,0.83872,0.822802,0.950855,0.378275,0.280695,0.132467,0.826329,0.252609,0.562204,0.418262,0.407607,0.211072,0.720227,0.767431,0.724858,0.0978734,0.175367,0.802559,0.405669,0.892619,0.226806,0.827105,0.927324,0.56539,0.849978,0.044693,0.650345,0.942992,0.163764,0.249961,0.341579,0.144213,0.261375,0.836072,0.521975,0.590333,0.67483,0.652144,0.791364,0.514348,0.165656,0.728021,0.104931,0.566096,0.843057,0.613336,0.0829589,0.291829,0.880727,0.269492,0.547287,0.231937,0.646528,0.633802,0.765741,0.957564,0.901212,0.610147,0.684449,0.794242,0.715182,0.887813,0.807851,0.753096,0.372557,0.762024,0.393622,0.677093,0.727303,0.510333,0.0615011,0.900261,0.566501,0.114514,0.201191,0.290499,0.807333,0.406364,0.536486,0.090494,0.391507,0.592924,0.444564,0.57172,0.837602,0.173683,0.976361,0.11176,0.0188758,0.0151958,0.912394,0.2863,0.473384,0.116468,0.313727,0.143328,|0.739653,0.0222999,0.561406,0.518888,0.885297,0.374487,0.302541,0.390408,0.753073,0.944469,0.226999,0.396869,0.731445,0.771362,0.821869,0.467364,0.416292,0.601729,0.968665,0.616789,0.405826,0.507622,0.592863,0.457251,0.654492,0.97349,0.755425,0.330587,0.670738,0.269358,0.480369,0.278765,0.0341001,0.235494,0.84981,0.0494807,0.1237,0.169775,0.0742365,0.105931,0.585901,0.197293,0.0340951,0.859317,0.902547,0.184102,0.443272,0.74313,0.00795215,0.193405,0.988585,0.355209,0.279452,0.271702,0.878177,0.0675045,0.888331,0.153456,0.419579,0.991611,0.976716,0.795035,0.459906,0.47145,0.119308,0.932021,0.176046,0.0129706,0.49336,0.768671,0.771489,0.726217,0.199744,0.586446,0.467038,0.319796,0.477898,0.685151,0.0220949,0.760553,0.329779,0.38509,0.559636,0.653708,0.44626,0.008973,0.552938,0.126947,0.0774949,0.552603,0.282,0.587466,0.462578,0.510722,0.539374,0.483031,0.637732,0.810092,0.883645,0.155949,0.51647,0.325955,0.987226,0.649312,0.354797,0.799086,0.314982,0.779954,0.146551,0.0233994,0.162647,0.997923,0.241191,0.568176,0.637508,0.0434558,0.256929,0.57106,0.5376,0.704834,0.496188,0.667329,0.00118595,0.21847,0.926324,0.258719,0.780564,0.771442,0.991396,0.569999,0.120719,0.418312,0.085325,0.572092,0.584553,0.666603,0.697943,0.272295,0.527824,0.189852,0.77944,0.389182,0.624296,0.346865,0.213952,0.225249,0.10371,0.326482,0.680289,0.455542,0.091674,0.788416,0.914137,0.566475,0.131161,0.876186,0.548991,0.706856,0.162271,0.0774367,0.193554,0.0819306,0.947318,0.0866762,0.652802,0.124105,0.795228,0.495971,0.546687,0.185465,0.663563,0.87654,0.805755,0.777979,0.706346,0.00912935,0.901602,0.345746,0.802686,0.891891,0.216932,0.430146,0.543614,0.920406,0.74715,0.758032,0.427308,0.549492,0.986519,0.960047,0.964973,0.0108887,0.348281,0.994038,0.208925,0.921114,0.567995,0.747309,0.604251,0.515562,0.869347,0.48712,0.435489,0.297562,0.661051,0.698525,0.371122,0.0290276,0.482928,0.996441,0.36849,0.715167,0.499791,0.0853637,0.988909,0.320611,0.56124,0.468851,0.816652,0.210816,0.165847,0.611984,0.940184,0.704965,0.364774,0.602675,0.461266,0.351444,0.289828,0.761776,0.529953,0.830945,0.41527,0.410638,0.83143,0.189653,0.238601,0.570107,0.987756,0.869689,0.185778,0.334877,0.897633,0.549266,0.921048,0.51058,0.18337,0.769732,0.396012,0.687955,0.832395,0.713312,0.745285,0.877194,0.581451,0.219743,0.599174,0.625327,0.365307,0.499013,0.862958,0.267187,0.992217,0.707222,0.887922,0.806409,0.670397,0.297836,0.966831,0.199079,0.773359,0.364106,0.389073,0.189591,0.319537,0.125299,0.0706761,0.863854,0.314631,0.951718,0.58948,0.428976,0.13403,0.227935,0.392746,0.650357,0.805474,0.665007,0.286078,0.626159,0.842462,0.527095,0.894037,0.55211,0.930229,0.457737,0.733121,0.0114027,0.237292,0.644748,0.339645,0.38309,0.53137,0.481361,0.0251668,0.142907,0.266196,0.521301,0.384808,0.513626,0.697498,0.39846,0.901722,0.204005,0.811799,0.769146,0.0503944,0.10291,0.710122,0.616104,0.0935001,0.410039,0.340331,0.640211,0.395496,0.027139,0.595496,0.801816,0.209064,0.957478,0.204837,0.247271,0.477193,0.121745,0.467954,0.796407,0.800475,0.68427,0.745739,0.31944,0.0295914,0.532763,0.200584,0.268654,0.391642,0.325219,0.644781,0.176787,0.0522634,0.999407,0.486591,0.457021,0.0456219,0.962342,0.0682139,0.371961,0.722759,0.106645,0.354844,0.891841,0.470878,0.241062,0.145137,0.387267,0.926724,0.0619813,0.405258,0.917315,0.0185377,0.87795,0.129935,0.343506,0.995709,0.25167,0.548355,0.782675,0.903751,0.972316,0.320884,0.894581,0.114089,0.291442,0.0762595,0.348881,0.73994,0.217623,0.65779,0.711258,0.861981,0.340369,0.302809,0.459339,0.121745,0.588097,0.0824283,0.887353,0.213028,0.42443,0.713368,0.833706,0.959373,0.0181585,0.599072,0.516336,0.567995,0.538134,0.900692,0.65105,0.154285,0.31627,0.901311,0.245371,0.270013,0.563323,0.225082,0.876085,0.729585,0.299097,0.516537,0.220368,0.290735,0.0381599,0.313765,0.0471424,0.579671,0.0102993,0.388497,0.129447,0.0813457,0.50979,0.00401402,0.586067,0.0810339,0.168199,0.817373,0.35785,0.663307,0.335699,0.766728,0.0292347,0.962314,0.900118,0.156881,0.0796906,0.795065,0.776835,0.10168,0.42875,0.395867,0.269356,0.685438,0.595827,0.447501,0.466333,0.103126,0.301231,0.237061,0.0146547,0.405753,0.636315,0.443576,0.286031,0.0212866,0.442851,0.163962,0.545394,0.742325,0.080523,0.991612,0.427099,0.306133,0.753754,0.670121,0.0354632,0.742837,0.244727,0.437924,0.0589441,0.172449,0.23003,0.087119,0.367386,0.0208815,0.658985,0.198639,0.0786545,0.0440409,0.925847,0.71392,0.566457,0.32525,0.616181,0.290558,0.461003,0.197963,0.0841703,0.682648,0.701637,0.790685,0.0500916,0.181112,0.848111,0.305077,0.435167,0.451204,0.0314029,0.552554,0.749634,0.610506,0.574353,0.753518,0.258431,0.185687,0.789173,0.927318,0.491007,0.168318,0.703339,0.375019,0.0669545,0.00266504,0.799044,0.414803,0.529933,0.998343,0.164321,0.709733,0.335833,0.609602,0.2314,0.137735,0.567339,0.0724019,0.494396,0.0916638,0.937529,0.0197745,0.673649,0.0843545,0.0193197,0.114461,0.196813,0.347147,0.705905,0.25596,0.144283,0.503748,0.555681,0.284875,0.311411,0.139203,0.678854,0.538948,0.705,0.491575,0.961678,0.29744,0.00420189,0.216418,0.460134,0.752423,0.909512,0.827356,0.565735,0.965089,0.170143,0.302649,0.163162,0.999198,0.382778,0.504413,0.07861,0.745495,0.18651,0.173535,0.781827,0.515018,0.319337,0.309837,0.890497,0.350336,0.40424,0.11877,0.358853,0.108289,0.765827,0.194809,0.422253,0.45026,0.742647,0.420663,0.66691,0.348363,0.288616,0.824939,0.769053,0.375647,0.723839,0.839382,0.121266,0.901663,0.726543,0.115846,0.547795,0.16497,0.338455,0.167499,0.871579,0.914483,0.0844238,0.872801,0.428019,0.895193,0.296539,0.347199,0.321952,0.569987,0.590989,0.657707,0.773328,0.770757,0.414862,0.194738,0.975979,0.592035,0.767989,0.162029,0.637528,0.633975,0.127016,0.322503,0.331519,0.0898439,0.114563,0.837475,0.435861,0.0752073,0.882979,0.674039,0.553501,0.12214,0.751112,0.648829,0.505279,0.101523,0.954941,0.0420684,0.954084,0.37298,0.729667,0.500538,0.264345,0.960038,0.824481,0.485233,0.193145,0.949756,0.942871,0.923398,0.379563,0.92369,0.399441,0.616849,0.542814,0.0786928,0.368552,0.106101,0.236254,0.303387,0.61545,0.414224,0.0874828,0.375715,0.894248,0.705685,0.580945,0.759881,0.447379,0.17782,0.846542,0.240414,0.936314,0.173892,0.193906,0.0487199,0.222237,0.891539,0.9859,0.557672,0.988451,0.31568,0.119411,0.258348,0.968693,0.714791,0.626072,0.560218,0.45011,0.986774,0.278064,0.835612,0.373973,0.759923,0.842455,0.251866,0.204861,0.00644094,0.97488,0.161157,0.881947,0.49422,0.895299,0.254328,0.032598,0.851049,0.27406,0.0888423,0.558914,0.0457278,0.45467,0.973358,0.837467,0.063012,0.987099,0.386581,0.381738,0.0450831,0.282595,0.515592,0.20023,0.845223,0.765691,0.113762,0.118119,0.400841,0.834279,0.218796,0.0191517,0.106314,0.906483,0.42925,0.866286,0.581264,0.207283,0.0892337,0.697353,0.758817,0.431246,0.83644,0.582906,0.411193,0.451616,0.732648,0.161087,0.014743,0.186502,0.472271,0.538305,0.202024,0.056697,0.799028,0.88215,0.965576,0.574286,0.529943,0.106916,0.863342,0.784651,0.650713,0.563811,0.822492,0.447017,0.950378,0.748296,0.550629,0.0264138,0.610638,0.340325,0.840113,0.981839,0.347726,0.0951738,0.312211,0.0371214,0.0713255,0.0212077,0.617993,0.697186,0.841107,0.42787,0.387142,0.779518,0.337292,0.470026,0.251743,0.158894,0.825193,0.224758,0.654852,0.223875,0.605892,0.704681,0.154081,0.190633,0.373006,0.02643,0.421425,0.937759,0.684114,0.983955,0.206494,0.343072,0.835093,0.864319,0.67423,0.117649,0.188024,0.616171,0.270573,0.749718,0.696075,0.343831,0.458842,0.915345,0.584407,0.138799,0.515242,0.382184,0.94621,0.112993,0.962777,0.529755,0.190124,0.444298,0.545635,0.669722,0.519579,0.485088,0.926698,0.546904,0.410026,0.0604296,0.834191,0.514083,0.253983,0.523703,0.251398,0.198313,0.451162,0.891787,0.225593,0.456421,0.233572,0.520078,0.321967,0.908869,0.657248,0.250794,0.725379,0.0911278,0.944185,0.51681,0.802528,0.604328,0.302011,0.967543,0.366252,0.467195,0.601756,0.903373,0.312086,0.242378,0.863159,0.255556,0.771474,0.459093,0.59297,0.501707,0.0909652,0.304749,0.982508,0.966197,0.248368,0.469141,0.958941,0.621723,0.352485,0.55324,0.656454,0.0620375,0.759836,0.128646,0.964713,0.427088,0.579821,0.436637,0.434761,0.862762,0.236557,0.641388,0.165846,0.579061,0.647418,0.449076,0.00104612,0.655044,0.940607,0.905031,0.5626,0.472181,0.204051,0.17889,0.64206,0.855998,0.690388,0.0308535,0.286975,0.566703,0.312454,0.981087,0.818467,0.93031,0.479098,0.363135,0.753857,0.361243,0.330808,0.823831,0.43514,0.188725,0.965815,0.47697,0.105063,0.981621,0.230888,0.354875,0.413962,0.586338,0.359587,0.573623,0.7824,0.0198109,0.763227,0.608441,0.331742,0.104739,0.706365,0.749502,0.222587,0.32748,0.381328,0.991742,0.0831674,0.0711882,0.619292,0.922431,0.0366876,0.741306,0.391368,0.0775569,0.52278,0.88145,0.0699774,0.632565,0.238093,0.544869,0.63336,0.30994,0.078118,0.141117,0.879708,0.505278,0.465073,0.206534,0.977948,0.905387,0.0577011,0.470295,0.148836,0.222485,0.324958,0.899721,0.723701,0.746056,0.390107,0.566389,0.0847611,0.802238,0.973737,0.354466,0.0568995,0.555782,0.359994,0.262012,0.330376,0.845148,0.991762,0.701507,0.018009,0.991528,|0.742192,0.358356,0.0770156,0.929743,0.187541,0.0246788,0.327655,0.395625,0.179294,0.315903,0.53086,0.442326,0.308601,0.349247,0.672504,0.419963,0.127694,0.863028,0.374859,0.37976,0.320594,0.159663,0.900087,0.559112,0.280957,0.098581,0.49976,0.380099,0.105682,0.280729,0.175858,0.857379,0.391476,0.877808,0.382312,0.328614,0.760215,0.906609,0.319746,0.927054,0.140036,0.0575239,0.721534,0.522594,0.0329763,0.972279,0.185565,0.824697,0.00436813,0.519756,0.964213,0.141242,0.812538,0.626718,0.0677445,0.625529,0.111695,0.506127,0.556231,0.25485,0.296419,0.140577,0.591325,0.425229,0.685053,0.431528,0.520331,0.212192,0.721239,0.853469,0.255842,0.535796,0.328094,0.79461,0.627706,0.979265,0.342154,0.940271,0.122313,0.674544,0.339638,0.286186,0.135667,0.00546449,0.54867,0.178493,0.991803,0.735023,0.493032,0.192181,0.843097,0.854309,0.34813,0.892464,0.592041,0.0294893,0.098453,0.406407,0.112392,0.245565,0.702861,0.927191,0.205625,0.0496932,0.648757,0.957773,0.986535,0.248792,0.560641,0.833263,0.401937,0.935991,0.884803,0.193061,0.678575,0.452043,0.332835,0.0986847,0.448198,0.645557,0.746343,0.896902,0.0707723,0.908786,0.214247,0.850116,0.619439,0.444917,0.0667827,0.892584,0.0349144,0.629212,0.0677379,0.144848,0.98744,0.501979,0.193135,0.0800719,0.955026,0.546601,0.80227,0.0459191,0.114559,0.752814,0.855675,0.913138,0.0317024,0.742115,0.441717,0.55875,0.555215,0.62466,0.092932,0.314983,0.121651,0.898992,0.731543,0.674127,0.666214,0.357674,0.453897,0.261693,0.154091,0.328969,0.94608,0.930073,0.577177,0.226358,0.529249,0.181391,0.752992,0.902916,0.873411,0.922655,0.0727626,0.693974,0.824228,0.628821,0.696205,0.400572,0.488363,0.255398,0.978693,0.585884,0.479608,0.59064,0.931202,0.978358,0.373139,0.128539,0.47544,0.128435,0.463491,0.69899,0.542449,0.171071,0.458717,0.349694,0.523927,0.536097,0.406846,0.768314,0.578449,0.596245,0.992688,0.630263,0.697083,0.121213,0.173357,0.669073,0.824536,0.853923,0.310509,0.145548,0.651168,0.661673,0.452781,0.34496,0.135865,0.621257,0.377993,0.0814878,0.759053,0.469798,0.816567,0.218711,0.28406,0.538862,0.602007,0.483664,0.278623,0.902616,0.0159476,0.51427,0.839085,0.545275,0.362218,0.113347,0.437812,0.753067,0.0839648,0.354417,0.545904,0.082746,0.89617,0.109059,0.996226,0.252406,0.892454,0.261951,0.172956,0.14917,0.587357,0.974225,0.640916,0.771362,0.889049,0.0256377,0.0293769,0.462922,0.791947,0.63931,0.827129,0.023857,0.417252,0.870287,0.860439,0.279385,0.724186,0.0212883,0.222763,0.656556,0.963525,0.23166,0.382779,0.234176,0.578409,0.0444168,0.693258,0.618234,0.271787,0.0903834,0.634298,0.69565,0.842922,0.522545,0.08294,0.502285,0.386547,0.245502,0.911217,0.106497,0.741003,0.791286,0.787419,0.310507,0.908428,0.249116,0.901912,0.63651,0.0187377,0.0229535,0.479022,0.977845,0.595501,0.112663,0.643822,0.0958315,0.2269,0.801797,0.0769676,0.286402,0.821675,0.645146,0.204731,0.218973,0.223152,0.540442,0.352662,0.866085,0.035625,0.184389,0.357006,0.230611,0.613623,0.771625,0.704412,0.584154,0.457237,0.991209,0.910768,0.352087,0.355254,0.901212,0.704376,0.901023,0.854214,0.288476,0.682538,0.447812,0.396545,0.272552,0.858987,0.999107,0.163292,0.307324,0.448975,0.203653,0.954372,0.613437,0.568104,0.60971,0.915063,0.0756822,0.0711446,0.448412,0.80037,0.398608,0.0284178,0.52147,0.307413,0.461069,0.24405,0.771043,0.593166,0.289244,0.0270416,0.610974,0.0928105,0.282124,0.279949,0.554507,0.18165,0.333664,0.635451,0.25537,0.733122,0.701351,0.148844,0.799773,0.21651,0.0052712,0.129988,0.42986,0.637511,0.565672,0.812118,0.0817053,0.424516,0.0825971,0.0426165,0.0792007,0.39357,0.0169954,0.502446,0.0235184,0.917947,0.861056,0.385586,0.618277,0.0233352,0.293392,0.725252,0.798138,0.0878444,0.575298,0.74826,0.776112,0.524647,0.15181,0.91983,0.543281,0.305162,0.47124,0.067014,0.435591,0.315181,0.626176,0.0689072,0.810921,0.845257,0.580947,0.234494,0.861756,0.547823,0.591932,0.77334,0.381234,0.74702,0.0140321,0.54668,0.601945,0.66657,0.748121,0.548443,0.106724,0.471595,0.490326,0.0902674,0.995996,0.0644649,0.846047,0.295612,0.879302,0.467858,0.449925,0.585221,0.3209,0.5801,0.0143605,0.833623,0.625351,0.146077,0.00176507,0.046575,0.809416,0.456962,0.824725,0.563699,0.247176,0.910082,0.246981,0.760096,0.547242,0.197772,0.343175,0.246085,0.413283,0.261501,0.233959,0.140742,0.692801,0.867891,0.265076,0.602953,0.461307,0.335278,0.430401,0.16077,0.916272,0.933292,0.110607,0.975972,0.319643,0.46927,0.601921,0.0100979,0.805781,0.209916,0.621056,0.897783,0.547248,0.991161,0.756059,0.620267,0.300146,0.883735,0.481876,0.586417,0.300439,0.208539,0.873861,0.402003,0.574219,0.0019381,0.804968,0.217661,0.133588,0.222536,0.982803,0.366867,0.59469,0.93897,0.192939,0.734237,0.240711,0.918531,0.944087,0.703885,0.216164,0.562891,0.231279,0.652382,0.448821,0.0324488,0.386382,0.931814,0.0449323,0.988354,0.0185606,0.75834,0.704118,0.0291536,0.587472,0.49666,0.835582,0.00277972,0.905631,0.473938,0.184604,0.0109856,0.570306,0.554481,0.288555,0.810759,0.732361,0.762442,0.758457,0.815884,0.660243,0.404997,0.630396,0.485711,0.429074,0.31194,0.55062,0.209438,0.488823,0.312169,0.0774761,0.12007,0.457669,0.300822,0.927601,0.234374,0.0715889,0.330405,0.457993,0.774836,0.970225,0.542319,0.725986,0.0476104,0.997765,0.0964428,0.67674,0.460873,0.662258,0.983482,0.064554,0.0982575,0.0703672,0.252558,0.752576,0.476175,0.260318,0.402012,0.7421,0.615065,0.0454338,0.887721,0.0124534,0.895623,0.911657,0.341541,0.323004,0.488729,0.774696,0.229069,0.378331,0.140778,0.588625,0.485487,0.0907298,0.837209,0.293334,0.165113,0.220359,0.728253,0.402965,0.601771,0.00970834,0.828291,0.00852364,0.263894,0.277642,0.758333,0.166783,0.145558,0.706005,0.874587,0.302445,0.639156,0.432857,0.485333,0.566995,0.443406,0.51389,0.999461,0.550864,0.870811,0.781185,0.731702,0.331243,0.59295,0.663517,0.10091,0.740632,0.900552,0.268974,0.892957,0.577514,0.791591,0.424123,0.836562,0.970138,0.611443,0.0576501,0.906856,0.961717,0.831957,0.740008,0.0656794,0.401324,0.048097,0.27726,0.316636,0.829468,0.825563,0.216255,0.290403,0.133685,0.440795,0.970495,0.980087,0.98256,0.533279,0.884273,0.684252,0.701,0.674079,0.870409,0.0802917,0.513747,0.266454,0.311056,0.404194,0.342784,0.810462,0.969736,0.136279,0.34869,0.406376,0.901661,0.415185,0.514797,0.929428,0.843212,0.173488,0.295658,0.150688,0.354102,0.201964,0.48621,0.362581,0.0856955,0.763166,0.982553,0.784252,0.720657,0.953895,0.0862988,0.35325,0.957047,0.0654813,0.22077,0.737543,0.690871,0.860537,0.874962,0.665709,0.142027,0.757317,0.555955,0.698114,0.116645,0.148137,0.780475,0.757389,0.507656,0.247385,0.80882,0.0657606,0.496445,0.91884,0.00747555,0.72571,0.780572,0.4429,0.405987,0.509053,0.519828,0.583354,0.718645,0.464128,0.938033,0.164652,0.929302,0.31176,0.217612,0.84747,0.0728055,0.98678,0.552876,0.922156,0.0776715,4.65512e-05,0.127193,0.638075,0.575653,0.19172,0.00488186,0.126908,0.622197,0.293222,0.556121,0.00175512,0.678084,0.116161,0.846531,0.928903,0.746083,0.0707836,0.909635,0.557315,0.313905,0.426439,0.196525,0.811237,0.396374,0.715277,0.258623,0.674705,0.581825,0.636177,0.115248,0.583136,0.287138,0.144639,0.0124683,0.509506,0.290077,0.246841,0.979915,0.59038,0.0279661,0.185525,0.206391,0.768118,0.190327,0.617984,0.364882,0.441829,0.358414,0.248079,0.129785,0.166736,0.936121,0.782744,0.551222,0.422277,0.599693,0.532603,0.911652,0.997269,0.606945,0.426582,0.959657,0.783933,0.174399,0.387997,0.00719112,0.981435,0.919102,0.202715,0.207961,0.978966,0.426983,0.970028,0.685353,0.293112,0.448704,0.382443,0.650951,0.0880319,0.172853,0.168235,0.508182,0.379669,0.578358,0.247334,0.260564,0.841237,0.361516,0.71671,0.199369,0.462681,0.839987,0.193948,0.887558,0.186678,0.515435,0.886151,0.851694,0.0510955,0.603188,0.831997,0.918443,0.88319,0.766372,0.826605,0.16293,0.96395,0.708218,0.929325,0.100899,0.0359122,0.44748,0.0623859,0.892827,0.982992,0.451713,0.385923,0.474355,0.620145,0.863421,0.937929,0.763412,0.629192,0.922109,0.815307,0.9019,0.868328,0.513047,0.736235,0.629734,0.0597602,0.286881,0.978914,0.255709,0.718275,0.0561836,0.0483722,0.971327,0.858568,0.0176808,0.869709,0.759598,0.457999,0.333936,0.00936872,0.439905,0.48711,0.947707,0.267378,0.369231,0.921281,0.181965,0.593178,0.129987,0.58653,0.95858,0.477155,0.448019,0.485453,0.355992,0.0353886,0.72527,0.884671,0.435967,0.457468,0.805253,0.824135,0.808445,0.339034,0.199983,0.725419,0.303183,0.535669,0.237201,0.169355,0.407915,0.340366,0.918996,0.919995,0.974404,0.661184,0.452317,0.534023,0.340591,0.42528,0.148445,0.305994,0.615342,0.373396,0.614407,0.129164,0.60117,0.419444,0.953422,0.495258,0.91387,0.11071,0.751818,0.88718,0.237576,0.0529364,0.311312,0.377991,0.119721,0.699524,0.99389,0.824594,0.271928,0.42211,0.589339,0.713749,0.987523,0.996196,0.422168,0.415085,0.387136,0.292644,0.225169,0.950499,0.739083,0.518425,0.583082,0.562565,0.494983,0.810668,0.326219,0.863298,0.21093,0.909481,0.674618,0.891591,0.348867,0.657621,0.659253,0.868189,0.592416,0.733379,0.889175,0.282328,0.251284,0.596617,0.930921,0.960878,0.663076,0.542754,0.846406,0.501283,0.26533,0.0253402,0.779607,0.700761,0.237494,0.572504,0.263043,|0.477937,0.505776,0.144433,0.062717,0.837001,0.590148,0.374134,0.807472,0.00346798,0.671135,0.806664,0.189022,0.844975,0.085512,0.456405,0.0633367,0.563548,0.394062,0.291204,0.0403134,0.237254,0.677627,0.335657,0.695365,0.751262,0.261567,0.0104886,0.932381,0.0420597,0.00784051,0.54295,0.741478,0.0219858,0.297102,0.32123,0.834332,0.584212,0.923224,0.571395,0.133974,0.473423,0.536492,0.364475,0.7258,0.545279,0.662293,0.776841,0.269012,0.15463,0.887124,0.730803,0.141982,0.723073,0.676715,0.105105,0.540283,0.848766,0.769775,0.323211,0.166436,0.310283,0.686348,0.372648,0.289791,0.429424,0.82358,0.473378,0.756227,0.122883,0.0871871,0.334763,0.282159,0.170342,0.803747,0.529845,0.818825,0.335608,0.769504,0.512256,0.843524,0.269162,0.161786,0.907126,0.883417,0.533377,0.804833,0.272043,0.681411,0.773365,0.830232,0.831179,0.815477,0.0368972,0.934061,0.799384,0.762002,0.574365,0.708666,0.960407,0.780957,0.985381,0.953281,0.29486,0.386972,0.608366,0.346979,0.989607,0.384597,0.821456,0.364831,0.325346,0.832625,0.427488,0.743662,0.672945,0.426384,0.904976,0.518627,0.562715,0.819056,0.351666,0.657552,0.255159,0.265079,0.954607,0.779046,0.137455,0.242408,0.649526,0.964072,0.343853,0.936963,0.461372,0.459417,0.705554,0.990618,0.998645,0.149396,0.50263,0.927417,0.66661,0.440748,0.996909,0.54111,0.0834268,0.279406,0.493285,0.28369,0.346922,0.532577,0.494821,0.319171,0.846397,0.245717,0.733246,0.0381891,0.356548,0.514632,0.732125,0.118408,0.717065,0.775527,0.48185,0.601238,0.42784,0.310056,0.810093,0.160136,0.31027,0.665754,0.490574,0.0826465,0.938873,0.251217,0.743601,0.691844,0.553907,0.486303,0.768716,0.731966,0.500866,0.839945,0.105548,0.49555,0.345439,0.955455,0.105909,0.349706,0.88561,0.343088,0.0211449,0.122681,0.643077,0.75293,0.107591,0.239279,0.291846,0.812109,0.0107848,0.957912,0.423796,0.397118,0.907231,0.380798,0.439731,0.569652,0.915373,0.125448,0.636186,0.432647,0.768513,0.0927567,0.709568,0.0627178,0.571093,0.220891,0.504407,0.296065,0.133411,0.358232,0.474459,0.228944,0.365507,0.480458,0.763002,0.137913,0.812315,0.359752,0.464366,0.832337,0.270665,0.36826,0.481099,0.372305,0.457316,0.712671,0.111148,0.878953,0.36077,0.565143,0.217933,0.0884307,0.190368,0.167279,0.512079,0.929071,0.295764,0.863203,0.00711191,0.905087,0.554917,0.448622,0.17976,0.103027,0.76757,0.206387,0.294756,0.239926,0.182676,0.733422,0.597358,0.603037,0.0746662,0.0170908,0.359006,0.735043,0.746395,0.614578,0.397923,0.391487,0.777714,0.486708,0.192464,0.322369,0.344674,0.441247,0.486634,0.778556,0.557388,0.00943458,0.260037,0.716555,0.323185,0.258563,0.192649,0.41892,0.272504,0.377785,0.178266,0.913659,0.0790061,0.677118,0.143166,0.916806,0.769495,0.775547,0.643664,0.710536,0.668071,0.383872,0.190916,0.719134,0.192182,0.778266,0.0713224,0.401234,0.380886,0.454297,0.278542,0.122849,0.670984,0.0963317,0.205774,0.874468,0.34455,0.104473,0.200719,0.170465,0.574447,0.379745,0.689294,0.130713,0.131095,0.389598,0.77985,0.581233,0.520253,0.845105,0.478114,0.198537,0.893725,0.256309,0.365649,0.039521,0.832372,0.408017,0.822095,0.926283,0.715785,0.402227,0.684413,0.71132,0.609778,0.219879,0.576578,0.0496331,0.710928,0.393042,0.464211,0.35423,0.611354,0.855181,0.572639,0.0684519,0.872343,0.654591,0.969401,0.413957,0.584498,0.898318,0.356618,0.886248,0.298152,0.77359,0.38425,0.0405432,0.302347,0.567684,0.355911,0.210075,0.326396,0.750042,0.856952,0.332547,0.604898,0.343649,0.0562,0.857833,0.0649271,0.70331,0.0327468,0.815433,0.937479,0.725374,0.0914036,0.390777,0.0840755,0.842221,0.351288,0.697389,0.276398,0.245463,0.921764,0.211931,0.523001,0.8272,0.121285,0.274137,0.729382,0.765071,0.104215,0.412226,0.645218,0.708829,0.400951,0.811839,0.67075,0.689553,0.322331,0.944962,0.419232,0.422231,0.580383,0.057471,0.870183,0.0680543,0.584058,0.329157,0.383178,0.211738,0.454005,0.10895,0.115951,0.77644,0.115323,0.559865,0.050971,0.864507,0.698191,0.0808098,0.153505,0.341264,0.773919,0.964477,0.200649,0.783171,0.194073,0.870259,0.374755,0.84824,0.0789562,0.0835729,0.0172904,0.840385,0.408341,0.000811875,0.0777957,0.801619,0.220684,0.878675,0.200944,0.728116,0.796157,0.462879,0.765729,0.460382,0.397281,0.519915,0.100881,0.209495,0.36282,0.696946,0.368997,0.321085,0.18114,0.669977,0.090524,0.235541,0.279399,0.843092,0.364152,0.996697,0.162554,0.398339,0.901237,0.63077,0.290404,0.837467,0.385132,0.0889047,0.891239,0.201234,0.429918,0.993124,0.903253,0.810232,0.385587,0.321914,0.0461341,0.648095,0.626993,0.284378,0.105105,0.535518,0.321128,0.327943,0.263949,0.480651,0.851703,0.706905,0.792688,0.932838,0.444727,0.725274,0.520983,0.465408,0.524843,0.166285,0.960453,0.588584,0.375103,0.298097,0.129133,0.250845,0.336546,0.311476,0.289867,0.370632,0.659941,0.870649,0.471109,0.765512,0.760682,0.872852,0.653254,0.925615,0.401073,0.144187,0.201207,0.867399,0.238244,0.00230944,0.20533,0.547092,0.890931,0.279433,0.960068,0.118859,0.306601,0.161768,0.412211,0.440232,0.0991473,0.484186,0.0454388,0.0604246,0.600658,0.923333,0.451949,0.251697,0.403555,0.79999,0.928454,0.031533,0.0957606,0.556134,0.675368,0.834079,0.257506,0.346237,0.107388,0.843549,0.213519,0.653482,0.475044,0.192619,0.844686,0.516023,0.548342,0.483376,0.171054,0.450254,0.0702189,0.251512,0.305421,0.462419,0.233517,0.532048,0.440378,0.66654,0.30533,0.869544,0.61426,0.964267,0.0557033,0.566339,0.330585,0.811375,0.787608,0.622752,0.0304171,0.42101,0.99586,0.492578,0.556649,0.322818,0.658397,0.889401,0.915943,0.530591,0.539017,0.66028,0.764458,0.13669,0.063507,0.218208,0.419716,0.386446,0.349973,0.633501,0.942835,0.888887,0.675035,0.354783,0.85832,0.310629,0.766237,0.225922,0.859361,0.729175,0.0635364,0.336826,0.0679825,0.772243,0.776208,0.741457,0.241036,0.867322,0.314845,0.1337,0.205486,0.4026,0.374504,0.71399,0.0309626,0.00813878,0.884995,0.273971,0.183559,0.291778,0.575219,0.452069,0.133402,0.0405332,0.193072,0.580655,0.182013,0.400409,0.429082,0.510186,0.23543,0.0186492,0.804009,0.598468,0.0142595,0.263274,0.816864,0.825823,0.342224,0.570917,0.153709,0.109411,0.683309,0.590672,0.369932,0.851541,0.939254,0.662746,0.896801,0.159752,0.312842,0.548895,0.349439,0.833791,0.002294,0.0962284,0.899521,0.611802,0.514132,0.117026,0.519401,0.825122,0.111547,0.176563,0.144051,0.830815,0.975526,0.578266,0.329115,0.89441,0.742458,0.976293,0.766371,0.272362,0.755487,0.501674,0.57767,0.22035,0.10513,0.0219188,0.502414,0.92419,0.111925,0.411961,0.411979,0.791643,0.762872,0.598838,0.885143,0.867966,0.214768,0.303408,0.201555,0.215849,0.633313,0.115467,0.418353,0.212155,0.85819,0.486769,0.646509,0.780818,0.722304,0.629407,0.953682,0.346253,0.893297,0.258903,0.887162,0.15619,0.901957,0.368687,0.605396,0.0444774,0.568946,0.481345,0.0208053,0.427465,0.530649,0.111389,0.477401,0.707511,0.64351,0.394858,0.327515,0.615628,0.056132,0.415905,0.32036,0.662969,0.53697,0.911514,0.805952,0.303203,0.831025,0.368712,0.924136,0.491978,0.848878,0.636,0.651762,0.10275,0.762679,0.809943,0.966914,0.10802,0.652183,0.509724,0.893717,0.582355,0.248858,0.476883,0.624424,0.107099,0.411025,0.927158,0.919387,0.664177,0.382042,0.504208,0.15146,0.481758,0.296283,0.457973,0.359974,0.7672,0.732902,0.0524746,0.0706427,0.397185,0.683159,0.391706,0.193657,0.462435,0.911432,0.214513,0.0350604,0.882104,0.231813,0.730767,0.257963,0.149954,0.622813,0.667446,0.769824,0.114173,0.532655,0.430277,0.439452,0.393026,0.0193601,0.221531,0.198624,0.247603,0.511581,0.791118,0.556205,0.066615,0.997275,0.0642766,0.673623,0.222736,0.0408862,0.535079,0.979885,0.697967,0.488608,0.932503,0.224812,0.354719,0.0852258,0.191427,0.884945,0.00241613,0.259512,0.554872,0.105944,0.611705,0.642326,0.14305,0.216579,0.183782,0.147446,0.235755,0.475387,0.480319,0.589814,0.926723,0.0167834,0.347473,0.957491,0.152258,0.13983,0.849549,0.924693,0.478969,0.767469,0.230368,0.950762,0.781052,0.3287,0.575508,0.416458,0.458281,0.985876,0.975473,0.777002,0.692032,0.5646,0.543456,0.110556,0.442958,0.58408,0.913439,0.771122,0.477027,0.514257,0.628042,0.721949,0.526793,0.218849,0.647453,0.427074,0.118642,0.761444,0.902472,0.249814,0.549554,0.305335,0.633502,0.557522,0.710662,0.645015,0.425062,0.188114,0.819628,0.15884,0.767125,0.31667,0.942737,0.633242,0.709188,0.757958,0.64477,0.657196,0.483382,0.776051,0.812934,0.921252,0.143937,0.766363,0.831966,0.204826,0.935292,0.928458,0.256132,0.507643,0.438999,0.33305,0.962649,0.483971,0.803218,0.84108,0.460727,0.525024,0.447609,0.224196,0.827852,0.99099,0.191882,0.686625,0.748215,0.522449,0.28199,0.952141,0.8413,0.495523,0.400602,0.37816,0.510968,0.230785,0.500027,0.305055,0.346082,0.0623874,0.205343,0.838225,0.316949,0.2842,0.143936,0.38087,0.876859,0.405829,0.715341,0.332369,0.46221,0.838616,0.380536,0.478176,0.358875,0.971014,0.170773,0.816862,0.53349,0.650413,0.940885,0.469772,0.125552,0.34488,0.175647,0.874444,0.3175,0.616904,0.0287997,0.80935,0.674636,0.488178,0.693786,0.43362,0.846738,0.701916,0.26688,0.820334,0.226541,0.529985,0.629719,0.560155,0.265432,0.041769,0.927445,0.263615,0.983029,0.109752,0.829676,0.693769,0.24943,0.318847,0.669456,0.0880612,0.755834,|0.214089,0.877977,0.683661,0.473319,0.563569,0.68307,0.12455,0.471784,0.576607,0.82096,0.291005,0.16926,0.790253,0.782313,0.208077,0.99499,0.39487,0.909069,0.771179,0.71838,0.887979,0.221347,0.215163,0.805295,0.859284,0.292269,0.618053,0.918115,0.290771,0.441012,0.860543,0.871096,0.301751,0.594807,0.899121,0.0621122,0.165094,0.365458,0.103248,0.245529,0.858134,0.145392,0.347992,0.878716,0.782775,0.195933,0.334051,0.969297,0.658181,0.741425,0.534639,0.820383,0.677413,0.179593,0.39104,0.642768,0.586605,0.474779,0.192816,0.124376,0.211,0.792811,0.617198,0.216304,0.237018,0.805115,0.816949,0.847881,0.245704,0.144294,0.257785,0.858009,0.148395,0.865403,0.683931,0.949142,0.980901,0.746959,0.972074,0.535734,0.716846,0.0331796,0.956513,0.7169,0.376271,0.326076,0.0864314,0.687515,0.280132,0.895021,0.692544,0.204218,0.408426,0.719746,0.0613756,0.65261,0.511943,0.389372,0.0220684,0.292171,0.166362,0.600582,0.301106,0.411976,0.716733,0.864854,0.58639,0.254029,0.680421,0.190802,0.0132397,0.0027805,0.939355,0.730123,0.741807,0.0509171,0.879879,0.693371,0.671598,0.820377,0.0745465,0.564263,0.101959,0.169281,0.875482,0.328367,0.843714,0.474112,0.0122439,0.244541,0.763468,0.29042,0.0502329,0.219923,0.892953,0.801417,0.757634,0.957245,0.747735,0.426735,0.646422,0.352512,0.373753,0.724548,0.393148,0.641221,0.439543,0.704899,0.0451917,0.542686,0.718922,0.412897,0.922172,0.88195,0.34727,0.645777,0.561757,0.129776,0.8828,0.588614,0.0755465,0.847683,0.804321,0.411935,0.794024,0.815441,0.348122,0.950259,0.250646,0.850596,0.517644,0.717128,0.421112,0.918166,0.555629,0.853888,0.087947,0.814026,0.0845908,0.769739,0.867044,0.597161,0.92467,0.260618,0.32647,0.70876,0.69749,0.212118,0.907338,0.496019,0.478793,0.136436,0.722026,0.462834,0.414333,0.650667,0.549868,0.152872,0.0137078,0.911329,0.211171,0.407837,0.129544,0.0294179,0.0848228,0.235577,0.254647,0.760917,0.642816,0.911525,0.504928,0.728764,0.767033,0.418032,0.451512,0.322373,0.111358,0.759693,0.483565,0.19455,0.658161,0.180061,0.504581,0.431898,0.423318,0.49423,0.969573,0.720867,0.96031,0.71426,0.992114,0.358915,0.857748,0.248115,0.88939,0.164749,0.587704,0.238232,0.591058,0.0547593,0.393732,0.93815,0.796369,0.548316,0.730538,0.55281,0.0233978,0.65686,0.412799,0.836357,0.0416162,0.456516,0.10895,0.402842,0.244964,0.27908,0.152383,0.411154,0.549825,0.618597,0.410527,0.859015,0.847941,0.858414,0.351546,0.828043,0.143229,0.0684499,0.150494,0.311462,0.696063,0.0645045,0.332439,0.437187,0.987399,0.975152,0.306481,0.548687,0.464202,0.708099,0.817783,0.320874,0.747197,0.555428,0.346923,0.904065,0.496418,0.336199,0.860022,0.411223,0.250125,0.913232,0.60548,0.251806,0.632029,0.655787,0.372554,0.375172,0.57463,0.994636,0.684414,0.39566,0.643102,0.168826,0.252836,0.610187,0.785063,0.0480145,0.44857,0.984865,0.838404,0.150114,0.493449,0.23079,0.0632703,0.841334,0.12291,0.0560849,0.791523,0.34164,0.570661,0.561992,0.379666,0.163219,0.810874,0.501624,0.880052,0.336478,0.787911,0.238254,0.0382089,0.612724,0.608434,0.154828,0.364255,0.331129,0.478231,0.867544,0.138003,0.220158,0.888416,0.923827,0.832841,0.288861,0.408079,0.577506,0.122177,0.558722,0.601798,0.458864,0.549041,0.0674733,0.599548,0.774027,0.0264928,0.188666,0.420651,0.67362,0.250278,0.200952,0.000152528,0.935212,0.112984,0.618148,0.916244,0.845674,0.211043,0.0112755,0.177805,0.00709289,0.0456833,0.105839,0.937855,0.594748,0.733361,0.0478594,0.669672,0.556197,0.116089,0.757594,0.629751,0.804675,0.758054,0.615972,0.830943,0.543574,0.437527,0.550842,0.724611,0.707529,0.955131,0.598002,0.909475,0.621255,0.999981,0.206,0.775354,0.745414,0.798124,0.419,0.502057,0.111126,0.608624,0.666261,0.00923949,0.296785,0.731796,0.0107149,0.157557,0.529588,0.225342,0.263831,0.691274,0.861748,0.730313,0.217459,0.931994,0.0883608,0.307913,0.262228,0.348269,0.377835,0.130269,0.863734,0.672376,0.565293,0.885636,0.379782,0.391835,0.916222,0.279152,0.0346166,0.220247,0.170503,0.844617,0.421381,0.913685,0.582064,0.0821435,0.390292,0.227925,0.183934,0.529631,0.191993,0.497466,0.122404,0.625351,0.309154,0.830923,0.31234,0.150463,0.433195,0.806218,0.0920197,0.444848,0.247989,0.0410848,0.616129,0.88392,0.869597,0.622248,0.335203,0.379746,0.474303,0.0787163,0.523033,0.192483,0.0187313,0.761512,0.530185,0.817637,0.245344,0.460274,0.731166,0.742145,0.576371,0.534546,0.592201,0.463814,0.739535,0.437938,0.550139,0.778337,0.862928,0.155484,0.346358,0.0251126,0.72352,0.256282,0.467677,0.978363,0.729155,0.00938189,0.84249,0.140485,0.100515,0.0626051,0.521606,0.315202,0.420517,0.563838,0.359375,0.840592,0.937681,0.903717,0.539126,0.938624,0.302758,0.899587,0.00718033,0.33981,0.312733,0.1738,0.95661,0.333074,0.209969,0.268897,0.552356,0.168794,0.761246,0.324988,0.149827,0.132353,0.183419,0.661552,0.230367,0.147208,0.210478,0.830347,0.639695,0.354863,0.618963,0.960894,0.35012,0.874348,0.952408,0.813798,0.396101,0.98215,0.433261,0.399003,0.481575,0.718474,0.136441,0.760909,0.75229,0.94389,0.572173,0.964263,0.466234,0.9042,0.907674,0.131205,0.0641911,0.295507,0.932119,0.698324,0.686142,0.450763,0.816763,0.33305,0.460636,0.486898,0.240564,0.636979,0.379366,0.631439,0.77831,0.225953,0.0801275,0.112431,0.564473,0.0448765,0.776967,0.826569,0.932965,0.581888,0.439967,0.584448,0.855971,0.156574,0.0202116,0.450575,0.0126829,0.675824,0.833479,0.217231,0.161259,0.746446,0.369461,0.430626,0.290557,0.876967,0.796358,0.623346,0.0398373,0.999796,0.247756,0.732173,0.639819,0.670469,0.638172,0.349384,0.705463,0.453021,0.555429,0.0318453,0.234369,0.704459,0.790553,0.699091,0.786127,0.135484,0.527665,0.834532,0.902969,0.448429,0.907585,0.747713,0.816821,0.335364,0.993712,0.464341,0.645459,0.0482989,0.459916,0.410045,0.506099,0.692086,0.0961956,0.348133,0.606047,0.765294,0.339124,0.47435,0.213764,0.804319,0.884215,0.646587,0.686381,0.00681758,0.496972,0.671031,0.227085,0.371653,0.279977,0.712365,0.942846,0.99733,0.622025,0.544291,0.425579,0.934186,0.0868209,0.952877,0.179238,0.611369,0.621048,0.174013,0.350149,0.985914,0.716178,0.577453,0.69461,0.419859,0.261038,0.525874,0.493858,0.948337,0.349705,0.743257,0.629825,0.815859,0.216644,0.42099,0.0377012,0.786285,0.370505,0.131189,0.424297,0.286783,0.804129,0.04298,0.199586,0.441902,0.981719,0.511241,0.674589,0.691348,0.776356,0.996791,0.4306,0.839585,0.519472,0.137563,0.0567117,0.93443,0.109253,0.582883,0.700177,0.56018,0.0187503,0.609457,0.572044,0.214311,0.873179,0.945181,0.425208,0.049948,0.574484,0.720779,0.967933,0.395357,0.290032,0.457951,0.455759,0.104599,0.0849202,0.69034,0.303607,0.0244954,0.719825,0.250392,0.860023,0.567417,0.987986,0.872784,0.723217,0.715647,0.303229,0.542457,0.242807,0.690579,0.0524386,0.133624,0.776051,0.58231,0.154072,0.800444,0.115863,0.691998,0.885728,0.494304,0.97828,0.65175,0.035683,0.411487,0.691698,0.317799,0.917517,0.838944,0.152242,0.776501,0.57585,0.977823,0.738028,0.318811,0.803871,0.134434,0.589026,0.835173,0.0847231,0.822325,0.895885,0.405683,0.904876,0.971808,0.609083,0.846695,0.237572,0.610767,0.10405,0.441015,0.441732,0.986241,0.998853,0.335406,0.16673,0.0808676,0.0655615,0.817867,0.631761,0.922669,0.535648,0.0820532,0.407533,0.290969,0.463089,0.553317,0.134795,0.674245,0.820145,0.534234,0.518657,0.218231,0.454425,0.465945,0.86595,0.29888,0.799543,0.219062,0.0259555,0.388844,0.300504,0.566968,0.899005,0.963392,0.761169,0.594128,0.0386032,0.387784,0.899509,0.122925,0.202455,0.646429,0.685349,0.201821,0.848257,0.555956,0.228371,0.937667,0.0137522,0.957473,0.846562,0.660345,0.261886,0.725996,0.839552,0.871438,0.241467,0.422229,0.860703,0.704274,0.43135,0.528756,0.699565,0.697116,0.887272,0.768943,0.809421,0.136333,0.818525,0.983148,0.0524408,0.614958,0.359529,0.62646,0.531176,0.252686,0.596386,0.364256,0.333258,0.957401,0.554154,0.0245105,0.582753,0.488522,0.863495,0.108962,0.54375,0.706788,0.94751,0.723287,0.179872,0.765601,0.301047,0.437922,0.835488,0.076612,0.303225,0.982043,0.277399,0.682059,0.637373,0.295174,0.255126,0.192012,0.42686,0.162721,0.866626,0.292016,0.981415,0.534812,0.143684,0.695562,0.680598,0.980436,0.649049,0.809799,0.406887,0.675184,0.217208,0.89463,0.44943,0.601827,0.931636,0.805595,0.672866,0.126262,0.543427,0.942535,0.167739,0.141227,0.427436,0.0766161,0.482442,0.63932,0.117225,0.748286,0.23326,0.555934,0.92388,0.628575,0.450889,0.530442,0.452843,0.756311,0.523286,0.296556,0.620753,0.939267,0.246501,0.745942,0.589537,0.889639,0.736166,0.0866563,0.986635,0.235894,0.989519,0.457128,0.0903319,0.232879,0.7612,0.812602,0.7715,0.0941168,0.542183,0.579537,0.718125,0.250457,0.975769,0.0573402,0.0733061,0.0733418,0.0517948,0.335258,0.815446,0.0899298,0.123016,0.319891,0.804179,0.622801,0.732569,0.115123,0.83949,0.0917206,0.730021,0.569445,0.420069,0.0126429,0.902893,0.00870311,0.911125,0.890279,0.309149,0.711225,0.155499,0.454017,0.481539,0.968478,0.611797,0.494308,0.445103,0.8448,0.168645,0.446265,0.882477,0.359053,0.902471,0.190352,0.10079,0.442993,0.62034,0.576718,0.645123,0.439236,0.852128,0.177316,0.161009,0.335237,0.286251,0.377456,0.820925,0.446288,0.964664,0.284364,0.972989,0.116841,0.228599,|0.54403,0.939637,0.0670965,0.166275,0.515164,0.48936,0.520525,0.0196445,0.940933,0.644928,0.0660848,0.322194,0.102665,0.726701,0.397392,0.28631,0.290033,0.734722,0.116894,0.0127518,0.80004,0.847074,0.327065,0.46729,0.0415975,0.0617725,0.0417359,0.389311,0.447136,0.698544,0.0171219,0.793185,0.326303,0.678561,0.728379,0.0277165,0.134288,0.712839,0.791859,0.79366,0.762922,0.767257,0.0377052,0.57754,0.156285,0.673489,0.553014,0.248291,0.687538,0.964981,0.118848,0.0151368,0.113331,0.115376,0.00399876,0.228478,0.674653,0.536984,0.762142,0.674838,0.176635,0.0735225,0.665318,0.154066,0.423533,0.363791,0.0948569,0.172584,0.460579,0.320805,0.741648,0.682399,0.576516,0.639076,0.54364,0.869942,0.0467444,0.230693,0.847074,0.726104,0.153156,0.323138,0.481179,0.94069,0.837791,0.724363,0.922955,0.999204,0.995953,0.453677,0.332549,0.425871,0.532671,0.0283123,0.788596,0.506461,0.951266,0.962866,0.257276,0.333094,0.688494,0.11889,0.590295,0.969898,0.680447,0.88072,0.454209,0.411027,0.301682,0.406913,0.760764,0.793342,0.334093,0.867383,0.242256,0.736912,0.0477319,0.461677,0.345184,0.551181,0.341749,0.598343,0.854006,0.320391,0.800008,0.759576,0.290989,0.633421,0.37104,0.591858,0.0921844,0.52871,0.223815,0.94594,0.784881,0.498469,0.574546,0.561354,0.337848,0.155808,0.639819,0.233354,0.970787,0.796772,0.707864,0.555403,0.87605,0.61709,0.178401,0.643078,0.0441208,0.205015,0.794376,0.721697,0.97443,0.399264,0.829171,0.0485377,0.0675647,0.57224,0.751893,0.240503,0.308658,0.127461,0.596822,0.688505,0.436555,0.866819,0.373161,0.119535,0.396675,0.340507,0.735722,0.895952,0.296153,0.283016,0.242695,0.727008,0.577115,0.698177,0.992007,0.260483,0.674754,0.143425,0.689096,0.693457,0.0516194,0.523459,0.548153,0.26768,0.804045,0.658273,0.0644218,0.217839,0.579678,0.380659,0.700821,0.245691,0.497373,0.77368,0.171817,0.2465,0.812691,0.0408265,0.960854,0.301021,0.539975,0.307236,0.24893,0.509756,0.680304,0.42038,0.910642,0.481646,0.538219,0.00767052,0.16023,0.914393,0.656586,0.105404,0.442596,0.344918,0.467019,0.0192953,0.0594636,0.510216,0.176591,0.206861,0.910855,0.708652,0.0670706,0.30445,0.90554,0.600695,0.175335,0.3599,0.57396,0.291106,0.526629,0.263004,0.277205,0.440372,0.425818,0.67307,0.539578,0.0400028,0.34637,0.656525,0.274414,0.538015,0.718471,0.414801,0.508144,0.269923,0.706243,0.366839,0.872149,0.142583,0.9953,0.77899,0.653753,0.0102187,0.217107,0.562876,0.682114,0.901861,0.978104,0.923849,0.851465,0.759941,0.123758,0.980468,0.406991,0.570107,0.13006,0.354914,0.00925744,0.87975,0.444537,0.279103,0.267077,0.278318,0.615451,0.270821,0.429178,0.120709,0.0475896,0.728123,0.67525,0.676368,0.222741,0.367483,0.0397016,0.759827,0.496693,0.888137,0.967115,0.562648,0.824346,0.568399,0.647047,0.42691,0.535951,0.131948,0.238152,0.574999,0.0432886,0.527158,0.945798,0.651068,0.359551,0.621895,0.0145873,0.256914,0.83097,0.937835,0.495645,0.540582,0.813987,0.626132,0.368064,0.171998,0.686346,0.153989,0.4542,0.859699,0.57904,0.215087,0.0413275,0.01595,0.400212,0.672783,0.396537,0.946772,0.876097,0.324564,0.973345,0.80444,0.00159073,0.545006,0.0740329,0.733015,0.687887,0.24114,0.315973,0.224143,0.149974,0.209105,0.466421,0.179944,0.144323,0.492324,0.20698,0.0774259,0.401983,0.168784,0.35836,0.626992,0.752238,0.892562,0.505126,0.741339,0.281401,0.128228,0.498887,0.630781,0.0664984,0.344282,0.56222,0.113787,0.211726,0.53277,0.225359,0.145078,0.069217,0.260416,0.988551,0.883807,0.374079,0.189607,0.255968,0.124712,0.0200096,0.940445,0.568305,0.360502,0.688251,0.299322,0.927016,0.809258,0.38264,0.375545,0.131291,0.227011,0.212568,0.816336,0.820757,0.857971,0.133562,0.230984,0.217938,0.978517,0.109076,0.486472,0.264817,0.925214,0.123467,0.0324616,0.505522,0.467987,0.0341533,0.287812,0.295486,0.565334,0.973963,0.554322,0.445209,0.722831,0.62866,0.373269,0.365673,0.277423,0.230499,0.538685,0.0825371,0.944296,0.595899,0.0696895,0.950671,0.908609,0.0997685,0.510514,0.691767,0.837608,0.936263,0.315858,0.713422,0.318558,0.692896,0.478592,0.62465,0.935618,0.451139,0.899711,0.360372,0.698771,0.496608,0.151738,0.799931,0.364065,0.0887032,0.0758948,0.555652,0.881917,0.311363,0.0865258,0.117792,0.78994,0.8434,0.548225,0.93501,0.470013,0.648477,0.721386,0.112889,0.220208,0.561581,0.723498,0.953723,0.220108,0.525697,0.737099,0.222759,0.917068,0.183507,0.576909,0.955247,0.181067,0.764052,0.368732,0.00739431,0.188791,0.963509,0.288028,0.0634137,0.133363,0.671006,0.129378,0.938174,0.481153,0.637534,0.431932,0.304016,0.44352,0.196804,0.0560861,0.196629,0.350436,0.492188,0.872735,0.575163,0.718569,0.469214,0.462792,0.375506,0.986884,0.790887,0.88684,0.921541,0.621101,0.0926496,0.589182,0.340373,0.124345,0.253176,0.177641,0.244176,0.836996,0.248926,0.257563,0.972139,0.819215,0.77864,0.410602,0.351149,0.23396,0.891434,0.441287,0.408741,0.672485,0.375449,0.280675,0.158786,0.311944,0.7634,0.234355,0.315288,0.564142,0.405212,0.679491,0.132476,0.59608,0.637497,0.526424,0.697468,0.0367292,0.581759,0.21386,0.684428,0.246369,0.222336,0.023764,0.966374,0.90868,0.274978,0.0701725,0.739253,0.574652,0.122867,0.999012,0.0186623,0.679541,0.723658,0.938731,0.899485,0.428743,0.864692,0.197017,0.154989,0.102628,0.191851,0.537395,0.585856,0.640343,0.786774,0.379645,0.0547609,0.0565376,0.0472636,0.272496,0.360888,0.569284,0.439447,0.501993,0.894747,0.220616,0.120807,0.0434448,0.179311,0.253449,0.270878,0.698918,0.201525,0.563645,0.0297985,0.363292,0.665876,0.153721,0.275046,0.782751,0.957876,0.652984,0.0350181,0.83296,0.292496,0.392522,0.319806,0.97356,0.250331,0.52837,0.637784,0.725839,0.62192,0.35997,0.973942,0.228063,0.500972,0.34168,0.86731,0.701688,0.916353,0.565004,0.074522,0.610866,0.355962,0.273482,0.979324,0.789117,0.965285,0.109762,0.575765,0.045366,0.537454,0.01638,0.101812,0.983306,0.0565557,0.531244,0.600524,0.671785,0.961466,0.979654,0.817344,0.542491,0.599128,0.37235,0.249598,0.942583,0.145456,0.592743,0.785553,0.559061,0.845552,0.25615,0.191637,0.842778,0.957116,0.970061,0.459678,0.242936,0.362604,0.84094,0.659633,0.937345,0.736201,0.639084,0.494435,0.246747,0.823208,0.209437,0.0294835,0.636621,0.968092,0.678781,0.0163125,0.123205,0.666789,0.196378,0.614525,0.266055,0.979899,0.569749,0.0536504,0.562933,0.461148,0.947189,0.366397,0.0372968,0.470692,0.359114,0.554946,0.275464,0.30698,0.0566439,0.0822832,0.697462,0.436439,0.164101,0.886318,0.605033,0.400867,0.302945,0.800157,0.112978,0.094669,0.572962,0.809714,0.464975,0.422151,0.145128,0.890459,0.508788,0.333826,0.701774,0.634434,0.523153,0.634486,0.835781,0.78434,0.168197,0.302996,0.901212,0.568179,0.731761,0.87344,0.424753,0.669622,0.132893,0.37482,0.693236,0.0936799,0.0897948,0.947325,0.0357653,0.555592,0.974834,0.676887,0.73672,0.953929,0.46273,0.349775,0.64105,0.114888,0.294132,0.663736,0.25612,0.663703,0.972214,0.823247,0.974817,0.805419,0.100049,0.359615,0.150378,0.4753,0.616722,0.16821,0.868676,0.331177,0.828462,0.0474933,0.648256,0.493025,0.493413,0.621366,0.444674,0.138483,0.629978,0.761524,0.296808,0.729373,0.00685459,0.289475,0.434195,0.0783598,0.742083,0.123458,0.481239,0.558595,0.16172,0.910183,0.371502,0.929565,0.0201163,0.162223,0.976648,0.866528,0.446844,0.677996,0.518896,0.935278,0.433215,0.338115,0.949792,0.174179,0.560445,0.873992,0.2217,0.395051,0.606683,0.617587,0.686441,0.122717,0.233021,0.564703,0.132098,0.975985,0.586453,0.696945,0.149355,0.934411,0.889644,0.68299,0.381607,0.962709,0.670937,0.440041,0.21842,0.26624,0.168082,0.328584,0.976134,0.303066,0.550389,0.899813,0.593522,0.555748,0.333509,0.545037,0.181299,0.389612,0.856715,0.022418,0.228033,0.6361,0.532385,0.476064,0.519856,0.325448,0.999936,0.69891,0.531175,0.132611,0.240608,0.97096,0.340747,0.669237,0.155947,0.729232,0.201639,0.278894,0.639707,0.124209,0.100197,0.909228,0.713388,0.116771,0.49167,0.662295,0.588767,0.288231,0.305939,0.419186,0.505914,0.736887,0.645503,0.0292085,0.712748,0.303914,0.798315,0.184026,0.876144,0.312188,0.604786,0.968581,0.881149,0.337547,0.195682,0.345308,0.508388,0.143957,0.678329,0.0986975,0.310943,0.249688,0.889951,0.295305,0.811642,0.25125,0.883586,0.4434,0.446925,0.430959,0.151502,0.272179,0.406382,0.0410623,0.489443,0.0433341,0.933535,0.311658,0.85289,0.652943,0.775435,0.60336,0.65187,0.538719,0.558662,0.768227,0.766446,0.446749,0.637966,0.800829,0.114374,0.263457,0.170083,0.159657,0.190821,0.0592493,0.815395,0.609819,0.706734,0.441129,0.0723979,0.418798,0.686705,0.780483,0.826967,0.72909,0.275049,0.0517529,0.586954,0.816291,0.177262,0.101132,0.914062,0.687451,0.46505,0.830935,0.257666,0.997923,0.505945,0.494415,0.18009,0.557464,0.410934,0.267576,0.756924,0.931893,0.494422,0.294152,0.583317,0.742384,0.047401,0.468039,0.551193,0.366822,0.304217,0.609941,0.541186,0.963648,0.115242,0.0876438,0.262151,0.526482,0.159992,0.523208,0.228617,0.383557,0.357236,0.97829,0.0761673,0.939829,0.556428,0.604014,0.596354,0.342727,0.805131,0.532685,0.523765,0.532989,0.831561,0.953788,0.120352,0.0911383,0.184126,0.581951,0.582176,0.842116,0.477986,0.90777,0.740812,0.520582,0.904772,0.830909,0.340768,0.0358294,0.341309,0.29663,0.450743,|0.684802,0.225992,0.39361,0.979418,0.423083,0.331078,0.887353,0.592017,0.149817,0.431782,0.617344,0.227572,0.150516,0.890592,0.231448,0.0925946,0.409542,0.872943,0.92273,0.849114,0.556771,0.31629,0.427377,0.775648,0.14199,0.508272,0.408241,0.821684,0.227242,0.599567,0.800313,0.421696,0.857192,0.585735,0.539233,0.630837,0.237435,0.984,0.557032,0.441954,0.938888,0.982732,0.678946,0.478871,0.0635812,0.158413,0.797997,0.130057,0.37547,0.123417,0.635859,0.581438,0.0212513,0.596375,0.638942,0.353088,0.583873,0.902069,0.565811,0.536493,0.382831,0.0986024,0.522737,0.343474,0.998452,0.53045,0.407231,0.62,0.151073,0.704189,0.918717,0.51421,0.367969,0.780057,0.351549,0.850685,0.260125,0.778265,0.941166,0.610412,0.744325,0.586971,0.846385,0.00149447,0.250905,0.653952,0.224831,0.726374,0.525753,0.135437,0.902837,0.928477,0.289582,0.757453,0.966397,0.87656,0.703582,0.139283,0.0753057,0.731916,0.91077,0.327516,0.347353,0.348224,0.897133,0.860331,0.210784,0.465099,0.39097,0.969112,0.058552,0.901133,0.0473703,0.809659,0.575086,0.679883,0.539229,0.0475692,0.306272,0.0452083,0.551361,0.942062,0.990138,0.482087,0.591007,0.0550617,0.628677,0.323269,0.326468,0.165855,0.0347505,0.30382,0.0504891,0.60097,0.836205,0.945183,0.230906,0.502711,0.833938,0.377445,0.527159,0.213157,0.0174707,0.134288,0.542617,0.717608,0.785451,0.00840634,0.206917,0.546969,0.335059,0.619134,0.751943,0.27574,0.314706,0.364267,0.728305,0.775803,0.168307,0.150068,0.625831,0.822639,0.0565979,0.121596,0.738803,0.40118,0.663535,0.208928,0.58944,0.144597,0.594627,0.130613,0.389628,0.370338,0.847815,0.311659,0.861016,0.432751,0.55416,0.498757,0.906848,0.702996,0.715053,0.774746,0.404787,0.874034,0.15143,0.0762786,0.226147,0.716249,0.0971684,0.133869,0.249223,0.14565,0.6139,0.216773,0.477361,0.50079,0.751374,0.0055176,0.774805,0.401842,0.889597,0.271472,0.480289,0.451496,0.638974,0.454487,0.336022,0.827089,0.150853,0.432063,0.200877,0.731229,0.219473,0.374357,0.869398,0.636544,0.308042,0.650462,0.250037,0.588143,0.651113,0.0953951,0.294674,0.11438,0.271154,0.986698,0.638543,0.956517,0.453212,0.837182,0.587013,0.12481,0.877418,0.739316,0.241543,0.150419,0.854285,0.565075,0.525078,0.34246,0.448207,0.0897804,0.117814,0.960848,0.970367,0.818004,0.457498,0.442926,0.989051,0.620553,0.272165,0.825365,0.329576,0.338294,0.157283,0.77336,0.189968,0.212451,0.406112,0.691846,0.762532,0.47246,0.553108,0.509274,0.818102,0.660625,0.816793,0.932622,0.0554551,0.602692,0.787088,0.32199,0.929666,0.479079,0.957194,0.268715,0.221909,0.750081,0.137548,0.928474,0.212158,0.983467,0.606282,0.915449,0.838195,0.264465,0.10263,0.208028,0.180649,0.508989,0.0425872,0.912519,0.427894,0.169459,0.836954,0.940989,0.9646,0.984936,0.556038,0.602858,0.249206,0.495046,0.640902,0.621526,0.684256,0.412388,0.643335,0.568692,0.190051,0.575496,0.689501,0.621537,0.226867,0.746041,0.508488,0.264025,0.504685,0.0434872,0.818086,0.55423,0.559114,0.592418,0.889819,0.163247,0.920277,0.558022,0.777279,0.452853,0.553679,0.928441,0.493515,0.18378,0.517635,0.505397,0.0312504,0.727404,0.966085,0.525916,0.875265,0.433915,0.545387,0.694117,0.270065,0.408085,0.621212,0.353797,0.192009,0.603279,0.284972,0.517857,0.899279,0.870699,0.672144,0.839834,0.28259,0.761338,0.219067,0.309989,0.448307,0.705895,0.549257,0.84241,0.0428032,0.939485,0.8483,0.421473,0.674577,0.532285,0.238526,0.848748,0.793796,0.371703,0.139925,0.848752,0.110961,0.777425,0.749848,0.789629,0.193737,0.284028,0.328259,0.596672,0.342518,0.444769,0.847847,0.189859,0.41819,0.0920066,0.952817,0.33548,0.328626,0.820312,0.03693,0.2608,0.422725,0.61229,0.761339,0.323566,0.659515,0.381365,0.891169,0.897369,0.847969,0.458682,0.211828,0.966288,0.676284,0.38637,0.983714,0.00722384,0.50212,0.778393,0.85503,0.673915,0.580178,0.836503,0.14132,0.622281,0.35769,0.376103,0.671735,0.836463,0.420191,0.972692,0.0945796,0.62581,0.0285235,0.852443,0.305624,0.46606,0.9138,0.406686,0.320311,0.171341,0.832119,0.782314,0.223777,0.463461,0.949276,0.948143,0.0260484,0.401289,0.859514,0.170358,0.0493319,0.883306,0.199609,0.325251,0.556651,0.773461,0.0889493,0.618113,0.451035,0.837096,0.646884,0.155105,0.779039,0.397086,0.0245212,0.279988,0.0196081,0.901817,0.785679,0.303941,0.87851,0.615764,0.842772,0.965683,0.566297,0.685974,0.352544,0.625797,0.950085,0.557719,0.0690671,0.464096,0.717849,0.287285,0.769608,0.869428,0.834917,0.464745,0.154845,0.78056,0.298211,0.575643,0.163125,0.944722,0.907223,0.32352,0.819524,0.938016,0.834639,0.456467,0.615258,0.303672,0.908982,0.660879,0.604598,0.508774,0.54744,0.379188,0.014025,0.825605,0.1042,0.397221,0.916581,0.632487,0.937403,0.480831,0.550471,0.928626,0.0491365,0.573816,0.517173,0.494248,0.683391,0.187866,0.486546,0.967754,0.390371,0.848096,0.379272,0.551437,0.0895234,0.207696,0.855906,0.861723,0.380744,0.676538,0.855438,0.79654,0.470754,0.571933,0.836361,0.867046,0.177727,0.737558,0.126894,0.0370487,0.932058,0.764389,0.0479831,0.790744,0.544316,0.315081,0.925422,0.5883,0.159326,0.756273,0.566599,0.837491,0.527918,0.863349,0.389602,0.0840439,0.324105,0.0426326,0.345387,0.9094,0.104239,0.496595,0.38071,0.540394,0.709121,0.0942851,0.151726,0.869602,0.262695,0.849493,0.693713,0.240543,0.979752,0.191419,0.142118,0.829634,0.425444,0.939289,0.0319872,0.560587,0.0902906,0.532068,0.064846,0.724233,0.165606,0.904275,0.79737,0.532839,0.357754,0.738602,0.0457547,0.311411,0.132016,0.85793,0.75655,0.501986,0.759186,0.659172,0.96997,0.539976,0.965227,0.692601,0.265198,0.377655,0.0766262,0.846198,0.123448,0.162302,0.816682,0.462801,0.193168,0.574724,0.159613,0.837722,0.644626,0.294351,0.103487,0.219708,0.896569,0.483934,0.338926,0.0555412,0.209251,0.537705,0.498047,0.157651,0.187403,0.675307,0.798896,0.578009,0.0443311,0.00904399,0.248362,0.850406,0.0526124,0.327781,0.657299,0.538948,0.877301,0.121105,0.184803,0.183245,0.376547,0.336347,0.688337,0.00643981,0.647824,0.740268,0.151738,0.686298,0.839875,0.461079,0.231395,0.731281,0.464605,0.385571,0.124022,0.561279,0.0261009,0.924388,0.912404,0.233853,0.578142,0.773227,0.220042,0.878991,0.660486,0.150762,0.130094,0.868638,0.748854,0.721409,0.621572,0.379047,0.345138,0.0840372,0.836241,0.47247,0.898537,0.230641,0.632957,0.416918,0.664102,0.408365,0.332347,0.426054,0.376971,0.464955,0.360529,0.743661,0.161408,0.596068,0.175506,0.822982,0.779555,0.162184,0.866939,0.156565,0.21411,0.484191,0.0979762,0.7521,0.17217,0.207286,0.313345,0.303071,0.943168,0.724374,0.302651,0.483978,0.882428,0.819755,0.761085,0.393267,0.851449,0.231446,0.567699,0.698089,0.0280333,0.642997,0.596498,0.612912,0.21734,0.592825,0.353202,0.600684,0.472734,0.712022,0.0816826,0.46777,0.718422,0.728211,0.518014,0.917318,0.554385,0.844594,0.726343,0.923935,0.308732,0.780042,0.899212,0.345578,0.878855,0.0126145,0.3495,0.240304,0.687608,0.1939,0.913426,0.477747,0.676271,0.871083,0.790104,0.804301,0.42317,0.0639277,0.0511844,0.0319618,0.736414,0.00658715,0.718917,0.267082,0.60504,0.773897,0.96527,0.180428,0.266731,0.447109,0.634172,0.839107,0.456293,0.023129,0.480869,0.465074,0.863459,0.790567,0.450399,0.23938,0.304169,0.964336,0.985499,0.0678015,0.260113,0.349504,0.388925,0.562477,0.967895,0.724034,0.33628,0.0483068,0.667754,0.303213,0.112788,0.577514,0.744385,0.10167,0.221886,0.246322,0.0321518,0.614024,0.321677,0.285895,0.824336,0.272913,0.858882,0.517485,0.131685,0.416208,0.334815,0.147914,0.428329,0.439834,0.495465,0.30867,0.926249,0.00901103,0.204011,0.369932,0.124551,0.226723,0.27886,0.816248,0.656957,0.925317,0.227952,0.831171,0.856197,0.881648,0.678651,0.441217,0.916469,0.549483,0.306748,0.368646,0.538211,0.585692,0.706036,0.756047,0.515931,0.863817,0.00130892,0.605732,0.797632,0.24149,0.550557,0.140475,0.638238,0.215681,0.346257,0.62458,0.244271,0.246762,0.330336,0.612281,0.445821,0.692436,0.604827,0.874739,0.996867,0.844871,0.423469,0.337826,0.255734,0.995766,0.214306,0.602409,0.154812,0.0502692,0.822634,0.585953,0.0818977,0.636272,0.852643,0.129331,0.929948,0.016537,0.198051,0.755308,0.946319,0.652278,0.149719,0.143025,0.143208,0.321116,0.350579,0.279872,0.458364,0.467782,0.322257,0.126587,0.654067,0.523879,0.416014,0.0220773,0.738454,0.0570965,0.562724,0.344516,0.0228752,0.763035,0.948071,0.635593,0.400554,0.152905,0.670455,0.782274,0.090994,0.49814,0.581563,0.0111415,0.177136,0.677153,0.676477,0.306552,0.477019,0.604635,0.486997,0.699106,0.272811,0.924803,0.809231,0.333505,0.875225,0.361341,0.086264,0.209697,0.0734599,0.135066,0.714936,0.878474,0.950212,0.545507,0.139084,0.196169,0.941326,0.347756,0.186006,0.918572,0.710448,0.123179,0.98044,0.235882,0.319744,0.424872,0.0544823,0.741339,0.758497,0.180218,0.379674,0.144041,0.0718629,0.978882,0.568916,0.925473,0.923666,0.161608,0.786632,0.724277,0.635491,0.120819,0.029605,0.528552,0.628212,0.576712,0.376351,0.522187,0.364569,0.146471,0.903371,0.955812,0.561941,0.87038,0.434338,0.229201,0.217818,0.914049,0.393707,0.296017,0.722486,0.369004,0.543115,0.668432,0.91498,0.688064,0.0710815,0.918586,0.0524283,0.797075,0.703495,0.64559,0.102975,0.954167,0.0372373,0.683833,0.782354,0.547042,0.801218,0.270511,|0.542252,0.729338,0.614593,0.406569,0.00577575,0.527074,0.648279,0.360016,0.961083,0.507528,0.541326,0.80859,0.647448,0.991559,0.90857,0.215472,0.722474,0.163458,0.431013,0.41849,0.94421,0.152756,0.0989131,0.606892,0.55496,0.53792,0.84312,0.866658,0.585101,0.158293,0.56343,0.225237,0.797232,0.271791,0.721865,0.675876,0.185617,0.756374,0.0568203,0.374328,0.837256,0.109336,0.257997,0.131827,0.393534,0.00450146,0.477908,0.591747,0.62884,0.67707,0.498729,0.476952,0.75683,0.132888,0.743159,0.215878,0.949697,0.0267395,0.655477,0.05087,0.652198,0.164072,0.815078,0.975317,0.0020045,0.0285632,0.36053,0.650182,0.406056,0.870076,0.625271,0.526606,0.14147,0.727139,0.939613,0.777039,0.351036,0.0917398,0.0500727,0.0379168,0.773747,0.27364,0.876677,0.921923,0.740001,0.0835135,0.413662,0.939667,0.808498,0.453969,0.297927,0.619639,0.680541,0.271959,0.302647,0.477833,0.89278,0.880063,0.116264,0.146214,0.1479,0.747577,0.672639,0.362307,0.066712,0.0361202,0.40762,0.818307,0.34968,0.728756,0.903111,0.953712,0.803764,0.465924,0.0531735,0.92504,0.635825,0.732323,0.786146,0.85597,0.745672,0.747377,0.176021,0.695329,0.605499,0.544842,0.16032,0.584473,0.306402,0.366803,0.427029,0.754686,0.612727,0.524859,0.000124991,0.497606,0.215117,0.577776,0.988883,0.82895,0.182909,0.0656939,0.87743,0.308693,0.474701,0.781396,0.739739,0.828846,0.497709,0.236967,0.270727,0.992646,0.391883,0.497129,0.684038,0.624087,0.525002,0.480473,0.210976,0.947141,0.255417,0.339215,0.375579,0.360437,0.108862,0.98172,0.502474,0.97414,0.828655,0.201106,0.541755,0.278041,0.746512,0.823529,0.404078,0.237225,0.0582029,0.0508734,0.790767,0.991678,0.672466,0.998883,0.770238,0.397617,0.270438,0.0525767,0.284762,0.0335307,0.869065,0.578346,0.232641,0.929055,0.992717,0.180794,0.0402843,0.926965,0.996319,0.771056,0.389873,0.749313,0.525539,0.91936,0.0576885,0.781887,0.675432,0.828138,0.743344,0.167427,0.446997,0.62149,0.433138,0.947279,0.669039,0.659233,0.407565,0.861159,0.423859,0.32798,0.487687,0.95546,0.636681,0.0578735,0.403216,0.549923,0.512938,0.718577,0.781834,0.244511,0.381602,0.664648,0.223425,0.832385,0.553579,0.134985,0.472127,0.895631,0.851158,0.0154696,0.514044,0.297366,0.276081,0.162582,0.527459,0.139243,0.838478,0.287447,0.0457407,0.118301,0.364987,0.0520989,0.202422,0.516153,0.171903,0.989645,0.762264,0.131749,0.0345058,0.428864,0.156624,0.477901,0.719004,0.319248,0.667063,0.0642592,0.144744,0.563722,0.659555,0.328452,0.181462,0.36786,0.943142,0.805042,0.291729,0.483291,0.465832,0.137203,0.931127,0.656119,0.654102,0.74701,0.942096,0.587524,0.52513,0.744758,0.217085,0.355283,0.995957,0.288872,0.871974,0.727323,0.716465,0.820078,0.684479,0.914606,0.141696,0.174039,0.183818,0.0809174,0.0932841,0.149228,0.9655,0.725954,0.950393,0.102959,0.0834664,0.740595,0.859543,0.669977,0.104588,0.448304,0.493025,0.57838,0.163063,0.403616,0.223095,0.226903,0.486544,0.731619,0.710018,0.222085,0.9755,0.828786,0.401011,0.657684,0.633619,0.510493,0.345861,0.0861086,0.915613,0.387269,0.932679,0.650258,0.28837,0.81836,0.827295,0.935586,0.344326,0.54836,0.622754,0.399778,0.541335,0.461053,0.837692,0.679873,0.503879,0.818753,0.349257,0.3961,0.546494,0.701844,0.299318,0.619051,0.917095,0.26243,0.241765,0.381533,0.790788,0.326688,0.0905395,0.201068,0.0611981,0.523416,0.00786781,0.362454,0.730022,0.750526,0.366713,0.307644,0.890991,0.996139,0.323195,0.243993,0.612806,0.372439,0.617277,0.0928026,0.421195,0.890485,0.969611,0.0286334,0.925201,0.165552,0.310545,0.537503,0.514004,0.923947,0.699119,0.467999,0.26496,0.898737,0.692063,0.800097,0.628007,0.244766,0.347549,0.842222,0.543646,0.640506,0.00561094,0.797521,0.779041,0.299082,0.93429,0.48524,0.0639806,0.253437,0.900386,0.732855,0.264465,0.102236,0.919769,0.970013,0.164602,0.301818,0.806888,0.464471,0.571175,0.544014,0.296226,0.108954,0.659821,0.587583,0.731385,0.23876,0.000628829,0.946353,0.0616768,0.778298,0.0640808,0.352911,0.294872,0.441506,0.667564,0.424201,0.960095,0.839386,0.237788,0.654103,0.600826,0.445588,0.627271,0.988509,0.44623,0.481812,0.206051,0.49958,0.0828192,0.771036,0.512091,0.173961,0.188125,0.948546,0.677992,0.662202,0.950502,0.834096,0.32612,0.598158,0.990148,0.639895,0.52876,0.484874,0.455148,0.511835,0.312762,0.824083,0.419891,0.800653,0.392432,0.315744,0.526219,0.834988,0.857169,0.896158,0.423983,0.6534,0.436636,0.942161,0.667793,0.956393,0.718752,0.289613,0.805219,0.218251,0.762234,0.615299,0.999506,0.692657,0.248161,0.777167,0.744415,0.176143,0.0842013,0.81306,0.940858,0.828827,0.694022,0.252531,0.669729,0.0492957,0.950616,0.419581,0.334278,0.294329,0.494618,0.648841,0.674018,0.386014,0.876216,0.399806,0.204974,0.135771,0.632331,0.578786,0.969517,0.285139,0.581281,0.763753,0.081091,0.673958,0.911585,0.566932,0.670586,0.33945,0.807543,0.646547,0.609657,0.681863,0.123278,0.287354,0.244298,0.861464,0.841967,0.912489,0.211664,0.844703,0.65645,0.418824,0.996854,0.606911,0.251373,0.584511,0.716829,0.266897,0.0620464,0.718546,0.558078,0.883743,0.951925,0.633356,0.995754,0.909722,0.746902,0.693046,0.0495733,0.717377,0.478729,0.534344,0.537417,0.748948,0.428658,0.344734,0.665934,0.369962,0.596878,0.531224,0.511231,0.154517,0.418487,0.0501701,0.99847,0.0706061,0.240414,0.600123,0.0238895,0.555736,0.369268,0.332388,0.109241,0.00354153,0.301232,0.888957,0.145916,0.34662,0.0840892,0.556801,0.038997,0.292902,0.671173,0.697629,0.126109,0.664497,0.692202,0.583078,0.760027,0.668496,0.0556779,0.547549,0.224996,0.109209,0.225944,0.527076,0.616674,0.301625,0.747399,0.139937,0.00566071,0.62009,0.798633,0.138716,0.114578,0.851273,0.48674,0.510474,0.387559,0.00396657,0.385717,0.120908,0.345226,0.3903,0.035853,0.0630355,0.734419,0.382002,0.755835,0.99779,0.660786,0.0764655,0.330212,0.986527,0.574951,0.537844,0.259049,0.263323,0.877078,0.616001,0.225831,0.86612,0.353663,0.160325,0.44829,0.306148,0.766678,0.629511,0.23735,0.675072,0.774264,0.246704,0.111579,0.657723,0.8848,0.402248,0.739346,0.458836,0.569556,0.0875018,0.462534,0.820471,0.459482,0.449773,0.973167,0.78836,0.34754,0.886325,0.286375,0.911023,0.727703,0.638208,0.508768,0.145143,0.60591,0.680639,0.160671,0.461939,0.727834,0.504541,0.761624,0.124849,0.710926,0.529937,0.838182,0.630534,0.931555,0.414273,0.781105,0.910019,0.339631,0.133253,0.937747,0.966959,0.632203,0.309338,0.508865,0.956985,0.0188394,0.130919,0.616313,0.577487,0.178787,0.740347,0.442358,0.124766,0.326177,0.125133,0.67285,0.0485704,0.906869,0.552699,0.616185,0.715863,0.223267,0.95645,0.775656,0.304164,0.157961,0.374667,0.213994,0.14067,0.0251279,0.64282,0.45912,0.563017,0.676861,0.326959,0.0798405,0.913794,0.901508,0.595259,0.279092,0.758082,0.497091,0.442781,0.907588,0.110771,0.824454,0.714191,0.397777,0.715112,0.765227,0.870532,0.955193,0.519598,0.47496,0.563849,0.351462,0.508572,0.768769,0.387654,0.689821,0.153115,0.200989,0.389303,0.423522,0.833767,0.310891,0.106469,0.934306,0.324415,0.308237,0.157574,0.943487,0.255885,0.466048,0.179584,0.0133759,0.872883,0.594447,0.94609,0.637146,0.411126,0.73804,0.0746874,0.263206,0.368492,0.0178738,0.941864,0.647212,0.913478,0.814828,0.558029,0.569304,0.131104,0.806511,0.516795,0.0767933,0.147625,0.325222,0.00949913,0.416952,0.20794,0.276251,0.687292,0.0399598,0.841225,0.492337,0.268531,0.139232,0.260597,0.169204,0.240517,0.54152,0.415438,0.366191,0.951025,0.265459,0.908523,0.661882,0.49047,0.103907,0.650789,0.805339,0.284291,0.187281,0.239593,0.681972,0.0524454,0.554162,0.155023,0.0381425,0.192307,0.0555443,0.319614,0.0618465,0.080036,0.895478,0.352617,0.151189,0.798824,0.155115,0.479557,0.211023,0.311416,0.661896,0.959985,0.942564,0.162301,0.632012,0.496145,0.0745928,0.2415,0.249145,0.556206,0.559772,0.101472,0.461456,0.735496,0.00802159,0.983068,0.558784,0.548387,0.141183,0.804659,0.580064,0.347009,0.603381,0.77845,0.74207,0.700044,0.787787,0.775641,0.251557,0.857601,0.325378,0.502489,0.214917,0.202902,0.497584,0.0308771,0.129073,0.494542,0.00541848,0.312472,0.674988,0.294883,0.0570747,0.302707,0.0588881,0.886431,0.679151,0.860299,0.687802,0.433583,0.868956,0.845874,0.878303,0.546424,0.373816,0.71601,0.845056,0.731588,0.972211,0.848272,0.32908,0.475893,0.921491,0.601269,0.542916,0.216589,0.297819,0.298962,0.290696,0.340282,0.750713,0.233114,0.574423,0.257445,0.82576,0.285999,0.912391,0.370418,0.14087,0.127365,0.640469,0.116564,0.668085,0.758682,0.549562,0.876201,0.812761,0.346287,0.302173,0.565484,0.999989,0.375035,0.028747,0.922293,0.702477,0.525754,0.214708,0.537021,0.697409,0.209119,0.493935,0.700067,0.134438,0.517697,0.428683,0.919547,0.217679,0.99782,0.527133,0.154218,0.12004,0.617907,0.814115,0.208465,0.478735,0.064208,0.60757,0.0207862,0.151591,0.528217,0.513017,0.489732,0.428849,0.0578718,0.761192,0.00510371,0.973239,0.925029,0.799274,0.519499,0.397729,0.145173,0.566093,0.955054,0.000470459,0.571389,0.199309,0.263791,0.430657,0.644603,0.599821,0.560977,0.220591,0.691346,0.490153,0.080562,0.375561,0.686892,0.490796,0.202937,0.332647,0.220539,0.319769,0.257113,0.815391,0.558765,0.410818,0.483126,0.365427,0.488968,0.14571,0.176661,0.0549062,0.134127,0.352408,0.357265,0.752309,0.35411,|0.453926,0.107594,0.630267,0.38983,0.754279,0.628246,0.947385,0.493521,0.902113,0.182868,0.580779,0.832996,0.906344,0.512835,0.579276,0.660959,0.173128,0.417606,0.786249,0.0987518,0.826826,0.855048,0.699913,0.812665,0.932172,0.16662,0.631289,0.46295,0.457643,0.753857,0.724886,0.430276,0.401008,0.607755,0.0861655,0.578402,0.858515,0.391917,0.097587,0.594684,0.400077,0.400058,0.533246,0.00648057,0.221313,0.268781,0.971891,0.451708,0.172589,0.940017,0.183285,0.692202,0.844985,0.437116,0.631003,0.164786,0.389686,0.826074,0.00157326,0.715258,0.610396,0.948406,0.831579,0.961816,0.204059,0.564315,0.349935,0.687103,0.885062,0.222428,0.360997,0.553425,0.289803,0.794183,0.83903,0.466374,0.793948,0.988876,0.527518,0.686591,0.989355,0.931887,0.496528,0.116147,0.577627,0.983292,0.496238,0.920429,0.0904669,0.57753,0.750631,0.873431,0.725624,0.40929,0.88796,0.452654,0.610958,0.938194,0.26311,0.999384,0.056664,0.371686,0.864626,0.977177,0.688035,0.750924,0.306192,0.863842,0.996864,0.100306,0.219123,0.454983,0.36373,0.963877,0.428109,0.0707165,0.227769,0.684722,0.00964475,0.793445,0.258199,0.780308,0.0126393,0.4486,0.224878,0.852632,0.00249654,0.484862,0.317113,0.197006,0.637237,0.00895494,0.0107372,0.4571,0.799763,0.184301,0.946549,0.224091,0.154752,0.445421,0.806681,0.490108,0.646544,0.796171,0.264456,0.953387,0.770328,0.0184807,0.3618,0.783031,0.303201,0.735588,0.304142,0.760527,0.496999,0.554535,0.476474,0.743015,0.467158,0.165654,0.996106,0.809236,0.827727,0.636881,0.676744,0.0641792,0.586802,0.571012,0.579727,0.86746,0.753108,0.521722,0.570434,0.227834,0.0300526,0.814673,0.721029,0.489754,0.710789,0.890154,0.825368,0.222122,0.00400406,0.431772,0.836076,0.700104,0.682308,0.181797,0.699531,0.774876,0.2347,0.302833,0.493687,0.19084,0.941812,0.292795,0.641454,0.150907,0.363215,0.714576,0.0134135,0.906242,0.166511,0.575676,0.206615,0.456536,0.235986,0.724217,0.627887,0.737645,0.0841891,0.933554,0.0425091,0.696244,0.175658,0.925232,0.54541,0.388238,0.507586,0.00885808,0.203049,0.256825,0.791806,0.469621,0.742279,0.566817,0.674672,0.660041,0.894461,0.740293,0.535642,0.840773,0.950203,0.470715,0.413031,0.90177,0.506822,0.172429,0.906156,0.0923458,0.16828,0.569815,0.420075,0.658709,0.437927,0.463346,0.618008,0.670695,0.135231,0.72835,0.689456,0.151335,0.885958,0.828833,0.953003,0.54951,0.537037,0.646172,0.642467,0.0635809,0.0488702,0.829318,0.199942,0.428326,0.299361,0.135164,0.945717,0.765711,0.726723,0.417006,0.996637,0.164151,0.164037,0.0120143,0.107722,0.359651,0.048974,0.498488,0.598658,0.731692,0.78952,0.894505,0.416763,0.574078,0.13365,0.942672,0.510981,0.218709,0.178018,0.727239,0.262034,0.20032,0.713715,0.452415,0.633507,0.953071,0.370988,0.234444,0.761505,0.480034,0.159093,0.106623,0.3495,0.594182,0.290313,0.5949,0.110125,0.709992,0.0539227,0.545452,0.579747,0.01466,0.394965,0.0591743,0.507719,0.179233,0.82767,0.979764,0.930696,0.567873,0.965706,0.957247,0.880793,0.13674,0.379443,0.576676,0.214007,0.247693,0.0643595,0.581189,0.549301,0.0794091,0.383315,0.698578,0.853531,0.197567,0.0998912,0.821327,0.450606,0.720107,0.607485,0.356454,0.116766,0.277074,0.418888,0.896896,0.687697,0.80872,0.805649,0.557213,0.00949317,0.796717,0.00311375,0.593374,0.283997,0.0296646,0.976477,0.70057,0.71044,0.569775,0.893713,0.182873,0.188517,0.952805,0.992637,0.969824,0.207867,0.168166,0.185566,0.986976,0.710408,0.541885,0.848392,0.836606,0.98166,0.576913,0.221446,0.572927,0.576141,0.956772,0.758344,0.754082,0.382615,0.371136,0.664063,0.182848,0.297783,0.589662,0.796718,0.283553,0.938956,0.128581,0.220823,0.674481,0.464493,0.369314,0.227465,0.828545,0.696302,0.58684,0.962222,0.292476,0.418587,0.591904,0.437751,0.682907,0.920273,0.710835,0.494806,0.42268,0.951348,0.987653,0.326224,0.831025,0.593647,0.372998,0.271834,0.282733,0.684029,0.244605,0.819757,0.361805,0.93977,0.0587658,0.14768,0.609607,0.787636,0.730837,0.535312,0.786793,0.233461,0.933251,0.576081,0.749703,0.680602,0.804877,0.69139,0.237253,0.0525388,0.585967,0.0951039,0.270529,0.043277,0.187416,0.809343,0.525169,0.372225,0.349712,0.489941,0.658867,0.0359699,0.87084,0.398148,0.0806941,0.909514,0.400554,0.31874,0.152354,0.57887,0.717536,0.278753,0.284028,0.0458389,0.71661,0.47765,0.729508,0.821724,0.680403,0.614672,0.666529,0.502444,0.3683,0.100995,0.253893,0.416379,0.305699,0.482596,0.832176,0.60506,0.975327,0.0775341,0.451966,0.645747,0.941145,0.24364,0.0711623,0.194095,0.419826,0.648884,0.518763,0.718707,0.648498,0.529754,0.713485,0.959821,0.270983,0.559565,0.369075,0.672404,0.497783,0.806612,0.475467,0.749251,0.962672,0.876456,0.747576,0.61526,0.0533821,0.931223,0.860718,0.222564,0.439181,0.0952999,0.30223,0.267524,0.791849,0.0199453,0.149486,0.916783,0.860559,0.516451,0.768632,0.891457,0.00798374,0.10581,0.554622,0.187259,0.191462,0.994922,0.291458,0.902066,0.732336,0.0603096,0.20482,0.348117,0.242386,0.391011,0.0165231,0.289614,0.743114,0.488408,0.191943,0.650985,0.316682,0.870091,0.189864,0.606856,0.7691,0.216076,0.443674,0.412922,0.493285,0.198002,0.064414,0.3957,0.0122505,0.514748,0.408386,0.346693,0.219025,0.178697,0.498557,0.30265,0.865194,0.000588477,0.542523,0.986917,0.270058,0.709646,0.935202,0.289027,0.98183,0.325033,0.86246,0.0226218,0.561749,0.496288,0.734993,0.944584,0.258286,0.728336,0.298643,0.601755,0.0818599,0.422383,0.904914,0.6325,0.441029,0.249813,0.938652,0.107451,0.461306,0.902255,0.210365,0.621573,0.444112,0.0755789,0.0420113,0.261827,0.686663,0.635176,0.798857,0.960477,0.278325,0.40945,0.511334,0.915034,0.82282,0.00875884,0.3012,0.505616,0.53612,0.836778,0.45335,0.801533,0.457635,0.434855,0.0594457,0.4456,0.861187,0.853453,0.386417,0.918905,0.878826,0.906335,0.957792,0.800734,0.30127,0.450015,0.418981,0.680996,0.379079,0.389923,0.183397,0.571168,0.808794,0.374913,0.0290337,0.115005,0.983284,0.00509351,0.133024,0.91876,0.506956,0.162077,0.950073,0.0644618,0.192513,0.758246,0.185034,0.842418,0.647806,0.216287,0.094537,0.736845,0.961749,0.0356983,0.795431,0.942194,0.733262,0.137276,0.806384,0.211786,0.556525,0.587926,0.820572,0.90609,0.942862,0.613436,0.520073,0.321225,0.00175011,0.168632,0.63894,0.846187,0.898675,0.0088706,0.882985,0.730787,0.225914,0.770914,0.671228,0.575467,0.0261843,0.364156,0.740871,0.992839,0.881556,0.503576,0.989707,0.962905,0.992023,0.976058,0.427601,0.468519,0.697411,0.899391,0.335181,0.96601,0.147448,0.897055,0.327205,0.0676585,0.461169,0.118053,0.212967,0.419077,0.512712,0.459384,0.0968908,0.937789,0.148596,0.237341,0.46831,0.937827,0.667848,0.684928,0.942134,0.147502,0.138328,0.0146304,0.684883,0.503402,0.168137,0.784989,0.941168,0.186414,0.439306,0.666938,0.632921,0.00139391,0.464846,0.643055,0.743814,0.622679,0.0395543,0.879493,0.284195,0.09139,0.215984,0.567239,0.657602,0.565117,0.435591,0.746262,0.763142,0.844921,0.644494,0.115006,0.0962359,0.893399,0.0176339,0.525871,0.911969,0.276388,0.57898,0.847512,0.396883,0.6729,0.311414,0.145515,0.620558,0.911688,0.835539,0.47246,0.260104,0.241564,0.647604,0.232705,0.695832,0.8819,0.460772,0.226471,0.423464,0.331445,0.849468,0.880819,0.708093,0.410561,0.345614,0.869776,0.494585,0.44859,0.0192662,0.959945,0.878675,0.652136,0.389547,0.218255,0.564042,0.602325,0.252021,0.405502,0.746355,0.939447,0.123056,0.789209,0.802112,0.126379,0.215428,0.799088,0.0170346,0.228296,0.564813,0.386772,0.602521,0.275858,0.438568,0.794102,0.355188,0.510128,0.70886,0.0679581,0.891213,0.00525105,0.330616,0.224351,0.222032,0.665288,0.780593,0.24577,0.825432,0.220472,0.977978,0.208848,0.0517671,0.662859,0.0049693,0.522669,0.550121,0.330749,0.88001,0.667769,0.468345,0.603531,0.374278,0.65143,0.545399,0.214109,0.699373,0.379659,0.191804,0.363578,0.806975,0.917502,0.774241,0.803227,0.766072,0.244444,0.516447,0.845741,0.916879,0.0998768,0.380348,0.556387,0.990942,0.564582,0.793197,0.236199,0.585799,0.351591,0.109936,0.877047,0.914009,0.538514,0.773696,0.298926,0.974502,0.549279,0.163193,0.41313,0.991171,0.512348,0.167173,0.123809,0.394489,0.0444604,0.540667,0.364584,0.0290222,0.87186,0.763685,0.781196,0.224101,0.928412,0.285196,0.056443,0.561845,0.154363,0.759473,0.33814,0.296941,0.582892,0.0614116,0.969515,0.411713,0.4783,0.580384,0.434044,0.775244,0.681432,0.481769,0.528143,0.204341,0.475507,0.365468,0.0900909,0.489095,0.127338,0.9798,0.827801,0.191129,0.201965,0.630152,0.235208,0.290101,0.0989142,0.997161,0.0355781,0.629174,0.730861,0.657958,0.152496,0.581592,0.472368,0.570239,0.447574,0.864175,0.265541,0.791962,0.489166,0.966191,0.171309,0.00825417,0.827552,0.478877,0.410381,0.237913,0.18183,0.739517,0.77332,0.358672,0.205089,0.884932,0.0559757,0.531014,0.961593,0.176056,0.433003,0.853716,0.139939,0.10119,0.739141,0.0683404,0.680069,0.741897,0.772307,0.40428,0.394872,0.647781,0.171467,0.513652,0.183418,0.744178,0.371903,0.679994,0.0695344,0.197263,0.57473,0.673249,0.0079729,0.0519828,0.435238,0.780673,0.462006,0.470749,0.325391,0.0249603,0.52557,0.36322,0.411391,0.464948,0.371565,0.754789,0.801912,0.719928,0.423935,0.628266,0.981829,0.606389,0.892967,0.67682,0.597299,0.45291,0.448922,0.175712,0.899721,0.198636,0.921163,0.314422,|0.770705,0.961754,0.0743809,0.0272052,0.883791,0.879327,0.538906,0.201949,0.575685,0.753454,0.00909585,0.317029,0.359185,0.592822,0.749151,0.387394,0.217385,0.952871,0.32648,0.0781595,0.497611,0.276094,0.328351,0.395408,0.0293118,0.700277,0.761389,0.968524,0.144645,0.221163,0.573282,0.463996,0.466799,0.659477,0.879011,0.846109,0.409495,0.875706,0.487032,0.365798,0.727587,0.584975,0.241228,0.104411,0.133435,0.2187,0.0894054,0.222505,0.266156,0.295748,0.853986,0.823505,0.0089224,0.612934,0.516917,0.583359,0.0887737,0.405752,0.473993,0.541875,0.780734,0.0203605,0.446328,0.713269,0.249889,0.445843,0.554315,0.0828071,0.826069,0.780481,0.306911,0.746984,0.476719,0.476052,0.510923,0.930048,0.218157,0.086064,0.0146526,0.353919,0.377231,0.809259,0.273111,0.121982,0.847697,0.109588,0.951288,0.542483,0.176253,0.686616,0.469814,0.663851,0.165969,0.13585,0.521331,0.849533,0.532098,0.280206,0.02547,0.158324,0.0808706,0.934661,0.228225,0.668595,0.445273,0.314789,0.0465482,0.569826,0.389521,0.39765,0.635545,0.147313,0.179068,0.114946,0.634585,0.821566,0.924753,0.571854,0.348309,0.731649,0.812485,0.127026,0.299364,0.836984,0.357515,0.836219,0.207475,0.814348,0.104854,0.0188012,0.0965168,0.916099,0.144081,0.889844,0.219563,0.00266433,0.407593,0.889591,0.900047,0.460214,0.195685,0.184015,0.793928,0.986663,0.37037,0.331567,0.337635,0.777556,0.245365,0.408803,0.69684,0.313688,0.496193,0.0246487,0.041294,0.304321,0.13806,0.877564,0.655984,0.167314,0.933478,0.937701,0.814794,0.359742,0.642245,0.0819241,0.0415298,0.474056,0.0497051,0.79408,0.0702725,0.331481,0.21541,0.875642,0.709249,0.995473,0.769264,0.368348,0.640374,0.871297,0.987863,0.89308,0.445024,0.018538,0.317643,0.202078,0.357624,0.317547,0.168234,0.751556,0.719997,0.63131,0.725321,0.0765699,0.488296,0.22796,0.807074,0.0850988,0.575405,0.400169,0.661322,0.151038,0.350158,0.254508,0.583088,0.112847,0.746077,0.340662,0.406531,0.225801,0.383066,0.74628,0.927159,0.999299,0.180077,0.897626,0.600167,0.00318527,0.499238,0.521363,0.40261,0.182987,0.844127,0.680517,0.0539435,0.351553,0.359999,0.80023,0.875653,0.932645,0.248628,0.0375937,0.480788,0.664269,0.261599,0.210635,0.523252,0.708608,0.557939,0.698393,0.750447,0.902357,0.741445,0.957579,0.627105,0.267811,0.814276,0.81967,0.663005,0.0972335,0.572915,0.0618483,0.330193,0.0234982,0.396988,0.361975,0.666185,0.0279056,0.952435,0.969636,0.914928,0.31604,0.0417427,0.504266,0.635074,0.52457,0.723182,0.699742,0.56861,0.668096,0.593421,0.613089,0.268844,0.0306452,0.0231128,0.976767,0.881605,0.53626,0.892046,0.316602,0.335679,0.539127,0.44797,0.153601,0.82494,0.302199,0.0545726,0.196722,0.746637,0.929264,0.1342,0.255266,0.528186,0.876482,0.509967,0.77436,0.578065,0.829883,0.416413,0.467289,0.211192,0.0189241,0.732434,0.619857,0.986625,0.245871,0.302229,0.454843,0.212434,0.718194,0.631226,0.233241,0.955304,0.243634,0.391818,0.612097,0.0797983,0.456643,0.175145,0.354777,0.986776,0.770957,0.247685,0.935611,0.423389,0.243349,0.434478,0.0534981,0.285738,0.577233,0.14789,0.510134,0.451905,0.432994,0.523251,0.826778,0.27151,0.177252,0.702913,0.439338,0.301833,0.422836,0.632158,0.453616,0.407812,0.70034,0.467872,0.447739,0.0346937,0.965523,0.754896,0.815674,0.797354,0.49265,0.546641,0.934692,0.864118,0.546261,0.525774,0.937291,0.946424,0.279128,0.88205,0.4399,0.104231,0.715688,0.36739,0.856016,0.630067,0.454398,0.721807,0.45191,0.610453,0.682747,0.37365,0.422604,0.0729541,0.906366,0.457216,0.310709,0.661963,0.775383,0.0687101,0.547089,0.407905,0.795758,0.17654,0.970866,0.0568451,0.567912,0.28802,0.357673,0.569657,0.548331,0.789729,0.221913,0.605929,0.166333,0.692798,0.477839,0.175356,0.801139,0.60103,0.052892,0.675316,0.528154,0.940068,0.926612,0.504134,0.806399,0.433247,0.704987,0.0989153,0.787092,0.27917,0.0856208,0.634021,0.149593,0.985668,0.969243,0.186986,0.247163,0.981747,0.812499,0.225527,0.323526,0.241534,0.743882,0.930421,0.463568,0.636871,0.163971,0.950306,0.932613,0.26105,0.886715,0.405328,0.103913,0.813399,0.757675,0.411455,0.47752,0.796542,0.265272,0.835244,0.626952,0.61901,0.0432373,0.450638,0.541748,0.949143,0.967347,0.0112797,0.357003,0.0820744,0.655212,0.0886624,0.434462,0.408722,0.681713,0.345579,0.116896,0.596939,0.355282,0.228008,0.156739,0.254193,0.612277,0.307506,0.177719,0.0332403,0.868027,0.985402,0.0433559,0.10878,0.202452,0.396962,0.334417,0.592008,0.781918,0.885409,0.382416,0.739706,0.902862,0.141992,0.134757,0.94974,0.160339,0.679862,0.204062,0.621405,0.00816494,0.636597,0.926591,0.599292,0.575922,0.318956,0.511458,0.493244,0.232244,0.710571,0.873813,0.13209,0.0614982,0.760654,0.936814,0.552616,0.450906,0.730555,0.715988,0.595928,0.0500444,0.217597,0.00509483,0.215377,0.788228,0.922079,0.376757,0.00535566,0.323241,0.323004,0.837513,0.927751,0.2387,0.0142405,0.777274,0.26747,0.261586,0.394001,0.155848,0.507278,0.0399417,0.652566,0.0708706,0.0513997,0.197769,0.556884,0.804941,0.794803,0.0617748,0.0758929,0.126032,0.556258,0.270792,0.925825,0.135902,0.75823,0.623993,0.291251,0.587946,0.0916483,0.62909,0.864121,0.970152,0.546502,0.584928,0.107865,0.969283,0.237366,0.136125,0.00288653,0.37402,0.829847,0.641349,0.658831,0.068167,0.0977527,0.594188,0.598858,0.055397,0.774046,0.0956417,0.443587,0.46282,0.394886,0.545924,0.719193,0.236577,0.465691,0.684513,0.157633,0.840678,0.298402,0.039333,0.046672,0.0858465,0.119158,0.114255,0.379943,0.24717,0.939829,0.487255,0.649381,0.44086,0.73285,0.427363,0.752328,0.580023,0.301596,0.0987283,0.172852,0.732341,0.9659,0.451264,0.597789,0.757056,0.0451614,0.265102,0.065231,0.234925,0.673154,0.613581,0.341637,0.219188,0.777924,0.0571807,0.418592,0.634411,0.87159,0.0510151,0.002581,0.810249,0.361451,0.83825,0.307743,0.241412,0.860412,0.172017,0.197405,0.817955,0.682586,0.720268,0.0706489,0.985548,0.492714,0.898978,0.971851,0.459465,0.625036,0.216992,0.497343,0.244793,0.662729,0.544776,0.947875,0.423485,0.925207,0.735296,0.69032,0.505106,0.725666,0.79752,0.020541,0.349904,0.769361,0.587643,0.929065,0.186274,0.395551,0.0587499,0.892182,0.727926,0.0140718,0.450189,0.349644,0.389425,0.952898,0.0521401,0.448405,0.542065,0.875552,0.982867,0.409811,0.138249,0.118162,0.204793,0.101745,0.388024,0.166603,0.263267,0.0571448,0.855944,0.892838,0.963388,0.398634,0.137769,0.222233,0.860257,0.0886944,0.137337,0.175468,0.870071,0.843863,0.829399,0.00930816,0.712561,0.24289,0.453839,0.442668,0.735727,0.0371574,0.0304281,0.974832,0.901008,0.853983,0.125668,0.614893,0.445608,0.398947,0.544466,0.889506,0.840985,0.922162,0.477155,0.139726,0.185028,0.999095,0.935278,0.3844,0.180675,0.877876,0.908866,0.0123087,0.197346,0.14625,0.0290875,0.0187224,0.401384,0.153934,0.531028,0.337818,0.946863,0.925576,0.564645,0.377496,0.157198,0.720392,0.91703,0.215427,0.743497,0.2249,0.324243,0.1293,0.164026,0.428894,0.241014,0.229962,0.491961,0.23297,0.401997,0.393734,0.555934,0.539027,0.162244,0.60045,0.423705,0.285384,0.157803,0.153309,0.388305,0.243108,0.152989,0.773532,0.299303,0.815382,0.711006,0.5335,0.113491,0.703988,0.28267,0.213964,0.806501,0.963841,0.262436,0.429627,0.410369,0.960632,0.662692,0.402671,0.704715,0.588783,0.420833,0.438406,0.498753,0.222731,0.225508,0.136682,0.329838,0.197449,0.304181,0.970417,0.436246,0.21436,0.45783,0.975936,0.369247,0.579136,0.127938,0.583511,0.289559,0.97727,0.748941,0.643659,0.411136,0.715587,0.229966,0.23682,0.750257,0.907402,0.894045,0.034117,0.982474,0.0417596,0.416234,0.454715,0.474356,0.209437,0.735948,0.756277,0.199699,0.702663,0.738474,0.557337,0.172964,0.527012,0.495687,0.534319,0.487644,0.124552,0.0390881,0.946226,0.124555,0.810368,0.556235,0.967649,0.420775,0.436551,0.439945,0.865699,0.323021,0.470956,0.172751,0.555646,0.375669,0.447849,0.089895,0.121998,0.376575,0.8903,0.183635,0.769315,0.580175,0.800733,0.580766,0.95306,0.0296806,0.167671,0.121931,0.782902,0.839724,0.859353,0.643051,0.582266,0.730367,0.507479,0.460544,0.531211,0.183731,0.392981,0.0388076,0.526569,0.770708,0.838075,0.672367,0.148154,0.772646,0.838826,0.126939,0.979255,0.504842,0.531749,0.558692,0.567311,0.658584,0.11306,0.187125,0.915749,0.537097,0.606851,0.295745,0.774648,0.203359,0.493231,0.77033,0.90184,0.920001,0.944393,0.712216,0.899199,0.928377,0.762003,0.702757,0.977425,0.793304,0.721342,0.48042,0.697874,0.976336,0.817329,0.449192,0.630404,0.336454,0.883251,0.0250773,0.285586,0.605487,0.00277573,0.901054,0.652195,0.544238,0.388654,0.852818,0.615412,0.0305578,0.345209,0.46628,0.219041,0.599581,0.895098,0.275936,0.85114,0.0119094,0.769792,0.386935,0.647655,0.393436,0.0972714,0.529975,0.60362,0.31713,0.222966,0.826647,0.490373,0.504351,0.70829,0.109749,0.982196,0.406043,0.666186,0.00260407,0.566403,0.0976297,0.836108,0.837308,0.173009,0.792912,0.714717,0.386209,0.430088,0.315178,0.380529,0.0830251,0.0569797,0.260288,0.204053,0.707643,0.0186057,0.904089,0.632437,0.453047,0.314363,0.168321,0.652084,0.908041,0.230812,0.601001,0.526106,0.925588,0.28863,0.0721698,0.476783,0.987648,0.952041,0.237477,0.950779,0.0973583,0.979814,0.74818,0.69729,0.913172,0.126031,0.0464092,0.119325,0.348752,0.995564,0.0399994,0.705757,0.40136,0.243971,0.635801,|0.712398,0.0431637,0.190247,0.914384,0.40149,0.00339264,0.490139,0.738797,0.108507,0.117366,0.976409,0.192387,0.895947,0.192734,0.457668,0.628825,0.739802,0.596141,0.599848,0.00206095,0.782035,0.426785,0.943306,0.764316,0.33244,0.22154,0.787492,0.507987,0.0622685,0.178755,0.315508,0.251985,0.0411556,0.31006,0.0985658,0.326977,0.975021,0.499157,0.0773667,0.382464,0.657902,0.912953,0.900648,0.177169,0.786218,0.224479,0.333475,0.0349069,0.438711,0.475577,0.784746,0.0895171,0.844229,0.0922843,0.911346,0.776591,0.412539,0.461582,0.599336,0.789166,0.735523,0.173891,0.00801504,0.270407,0.267871,0.460676,0.359689,0.265339,0.829122,0.257034,0.854847,0.314046,0.773359,0.746032,0.670733,0.297866,0.875517,0.243212,0.627239,0.496817,0.370372,0.354605,0.82489,0.877319,0.053352,0.695905,0.723945,0.963809,0.428784,0.66181,0.881886,0.518781,0.143458,0.606642,0.286083,0.776573,0.892065,0.713006,0.8637,0.355831,0.683837,0.791096,0.45846,0.494471,0.613953,0.626115,0.382144,0.667905,0.144818,0.626103,0.226971,0.558777,0.979117,0.576464,0.775035,0.480524,0.799239,0.244436,0.763546,0.401845,0.111933,0.735087,0.470541,0.916389,0.931918,0.650092,0.865501,0.711109,0.501805,0.859368,0.981464,0.00131088,0.425689,0.0849497,0.397201,0.701753,0.686788,0.296847,0.663016,0.197906,0.542276,0.23331,0.540915,0.515821,0.992221,0.809591,0.443335,0.148872,0.106862,0.212194,0.42422,0.133249,0.911934,0.328798,0.683804,0.951084,0.312576,0.973665,0.215094,0.149481,0.35184,0.0581913,0.536071,0.16091,0.53742,0.703221,0.223677,0.556545,0.848103,0.904227,0.948007,0.695109,0.518569,0.0238262,0.848937,0.742531,0.234281,0.085589,0.425985,0.389612,0.670757,0.591986,0.370299,0.30967,0.268853,0.651618,0.888242,0.738697,0.246468,0.725271,0.0356482,0.701035,0.990459,0.749627,0.538392,0.803014,0.0705576,0.883684,0.926048,0.924879,0.672298,0.617698,0.779019,0.785956,0.709761,0.070851,0.857549,0.956446,0.167451,0.736557,0.0832171,0.209643,0.0859631,0.134709,0.78893,0.721093,0.237727,0.376339,0.0567577,0.222146,0.0864362,0.811423,0.982173,0.916619,0.40101,0.615888,0.173537,0.611151,0.0886195,0.55504,0.209964,0.22084,0.109322,0.4165,0.443458,0.854196,0.774177,0.0656117,0.17945,0.360898,0.791277,0.71426,0.756912,0.6756,0.921623,0.598208,0.920401,0.460417,0.0917244,0.842936,0.869688,0.889553,0.0118631,0.298771,0.742707,0.544184,0.515989,0.202721,0.525806,0.182202,0.651549,0.663842,0.19316,0.880727,0.701086,0.439119,0.745501,0.000522673,0.497136,0.202672,0.503024,0.378818,0.967117,0.783194,0.623035,0.149537,0.273404,0.462374,0.907368,0.147821,0.495529,0.806263,0.0405157,0.350947,0.503845,0.998446,0.976932,0.0448484,0.28795,0.419185,0.058941,0.0932659,0.858628,0.205123,0.177266,0.179617,0.197841,0.809803,0.762821,0.830245,0.279076,0.440936,0.886122,0.403524,0.104753,0.453934,0.855521,0.940106,0.908041,0.794874,0.611458,0.477892,0.04071,0.0166881,0.310044,0.420949,0.546021,0.375472,0.556325,0.408822,0.715065,0.739352,0.567767,0.447179,0.719983,0.339053,0.361383,0.155641,0.380823,0.707965,0.284319,0.476196,0.0201042,0.418841,0.84645,0.900512,0.443579,0.897754,0.521359,0.804397,0.746299,0.163227,0.228528,0.570328,0.792271,0.505983,0.577343,0.386646,0.120265,0.233461,0.0270487,0.45798,0.171625,0.949941,0.660378,0.508293,0.150931,0.547007,0.509726,0.716138,0.736501,0.459978,0.43526,0.00137484,0.769281,0.767537,0.185778,0.916462,0.21398,0.24953,0.920396,0.139413,0.460212,0.730832,0.707702,0.171288,0.610001,0.451348,0.450342,0.660284,0.873989,0.68237,0.0316168,0.339713,0.73552,0.604712,0.382054,0.0803136,0.326917,0.452505,0.846575,0.664374,0.208594,0.437177,0.587251,0.737696,0.0183292,0.775433,0.620883,0.757011,0.156519,0.0643363,0.735363,0.583897,0.627669,0.687682,0.859931,0.612549,0.480625,0.722559,0.086783,0.283941,0.652752,0.470101,0.622486,0.193185,0.415569,0.134227,0.0724056,0.97131,0.212289,0.564153,0.306546,0.867141,0.730969,0.138865,0.953007,0.60296,0.519413,0.67066,0.283327,0.0301911,0.173389,0.48035,0.596928,0.744678,0.579409,0.730403,0.685735,0.993203,0.822255,0.888873,0.0838704,0.387822,0.590431,0.384506,0.365424,0.178063,0.916326,0.553133,0.672334,0.370497,0.11075,0.171945,0.883947,0.725114,0.511089,0.0284475,0.9249,0.879347,0.392495,0.767911,0.245321,0.622419,0.152949,0.282981,0.590319,0.720352,0.57291,0.324783,0.216412,0.0935302,0.301427,0.569216,0.324605,0.451908,0.97242,0.728868,0.726973,0.84664,0.918582,0.0179094,0.0270459,0.115454,0.552136,0.948778,0.953796,0.248873,0.0549849,0.118493,0.602609,0.796069,0.456794,0.692264,0.243188,0.940288,0.965873,0.717797,0.910412,0.709547,0.339629,0.0784945,0.741589,0.38756,0.284272,0.439316,0.165715,0.976018,0.896027,0.313085,0.0217488,0.830152,0.939747,0.229955,0.846244,0.519118,0.166023,0.01072,0.859636,0.0485411,0.135157,0.99076,0.633444,0.775636,0.575761,0.385409,0.397391,0.862003,0.477913,0.185598,0.928252,0.282876,0.307038,0.655518,0.0706393,0.572971,0.329666,0.369133,0.191266,0.894273,0.907537,0.610307,0.0448225,0.505843,0.312369,0.718211,0.292519,0.807711,0.25136,0.924315,0.800525,0.131127,0.361905,0.0124718,0.743194,0.422324,0.136512,0.452447,0.147162,0.353481,0.027747,0.568015,0.936525,0.6765,0.12388,0.993838,0.975264,0.279275,0.126779,0.423117,0.40298,0.392371,0.662576,0.0213377,0.849355,0.0584214,0.645348,0.304675,0.25133,0.129919,0.328589,0.366661,0.360795,0.869189,0.967505,0.714338,0.703582,0.358798,0.253068,0.409004,0.954361,0.282486,0.663293,0.89006,0.919985,0.44729,0.106224,0.648837,0.982682,0.973737,0.0717135,0.827002,0.873573,0.746602,0.730345,0.293698,0.325697,0.656906,0.845473,0.158456,0.811511,0.971696,0.719233,0.443715,0.167931,0.50723,0.835464,0.862404,0.0675989,0.454895,0.26086,0.492352,0.24865,0.113717,0.193475,0.957541,0.801722,0.322682,0.395521,0.361288,0.92912,0.887918,0.387944,0.910142,0.0331821,0.643838,0.0310674,0.859161,0.868695,0.819827,0.0287221,0.860992,0.998787,0.14858,0.497385,0.0769776,0.646078,0.481424,0.445693,0.253681,0.559969,0.172614,0.717585,0.886387,0.781356,0.349144,0.238757,0.281807,0.632108,0.128613,0.306969,0.320702,0.693824,0.593044,0.0679037,0.0171914,0.38561,0.586804,0.884884,0.60605,0.369408,0.661889,0.110621,0.654278,0.645935,0.386101,0.345876,0.0373595,0.265825,0.026451,0.555958,0.765875,0.0861425,0.94316,0.613358,0.391766,0.182215,0.41704,0.141692,0.631959,0.730223,0.562212,0.0251049,0.290171,0.363536,0.955542,0.854625,0.874519,0.953061,0.137363,0.614662,0.480903,0.383456,0.704339,0.303914,0.273449,0.924624,0.616499,0.207685,0.60973,0.742888,0.847416,0.325779,0.693496,0.589914,0.780152,0.0897031,0.936278,0.322226,0.401958,0.436161,0.0121236,0.511098,0.222672,0.381133,0.416331,0.0160685,0.546884,0.979959,0.271675,0.671499,0.198173,0.083062,0.385006,0.615091,0.506953,0.014548,0.165418,0.962282,0.443957,0.970967,0.571205,0.586513,0.0644994,0.792886,0.188193,0.297877,0.111068,0.202632,0.968216,0.781113,0.544521,0.244334,0.056344,0.53213,0.302979,0.192658,0.643652,0.545263,0.127217,0.11375,0.4005,0.353848,0.216988,0.89266,0.250084,0.599168,0.632574,0.369921,0.970811,0.902019,0.447487,0.249231,0.80189,0.919761,0.475773,0.603084,0.220778,0.48853,0.99017,0.446666,0.611961,0.51117,0.280508,0.958769,0.945677,0.118964,0.684921,0.997997,0.166335,0.688068,0.631319,0.790986,0.545324,0.635904,0.920634,0.0707661,0.342261,0.392282,0.552341,0.1426,0.629252,0.0751771,0.592377,0.541371,0.255702,0.939853,0.613958,0.57542,0.750694,0.808608,0.89283,0.710719,0.448313,0.385328,0.426238,0.967128,0.208315,0.247314,0.607914,0.618855,0.493167,0.916849,0.748653,0.851158,0.363042,0.509394,0.763834,0.608454,0.689498,0.986555,0.267852,0.590855,0.638239,0.348075,0.0924175,0.955118,0.545248,0.443211,0.308414,0.334522,0.832575,0.572646,0.202141,0.103919,0.626634,0.745951,0.152288,0.529283,0.788513,0.220417,0.129167,0.268476,0.148312,0.17363,0.243313,0.688285,0.125867,0.497723,0.193286,0.827787,0.248693,0.409387,0.189914,0.369745,0.0734684,0.442404,0.401475,0.763728,0.988918,0.94985,0.483312,0.189788,0.773266,0.954245,0.366224,0.593769,0.226901,0.0717437,0.919667,0.618403,0.219378,0.500026,0.554876,0.573537,0.933058,0.619494,0.74232,0.622503,0.143851,0.409234,0.962663,0.436911,0.132294,0.427209,0.477359,0.135216,0.653089,0.111733,0.203092,0.571369,0.522983,0.70991,0.512744,0.408325,0.516317,0.0471811,0.028484,0.162798,0.433219,0.375229,0.371212,0.987791,0.632612,0.48135,0.113218,0.939445,0.536159,0.888545,0.651217,0.548688,0.0602274,0.49498,0.799388,0.530927,0.637694,0.774029,0.545764,0.448825,0.688803,0.527017,0.0482528,0.444124,0.99511,0.89957,0.138782,0.838789,0.930121,0.645375,0.3507,0.20418,0.678037,0.245133,0.350702,0.493072,0.236754,0.114761,0.960141,0.404117,0.827969,0.0774729,0.181756,0.305422,0.967512,0.313855,0.732134,0.0391207,0.592858,0.327963,0.218818,0.651593,0.193878,0.526757,0.149942,0.864327,0.375261,0.495768,0.290398,0.310637,0.300493,0.987706,0.627474,0.337598,0.711001,0.694716,0.417915,0.270833,0.670782,0.497633,0.29936,0.0739422,0.79758,0.437919,0.847172,0.347336,0.152475,0.809323,0.66704,0.563394,0.0640678,0.750631,0.752935,0.168961,0.621368,0.65421,0.0919601,0.435297,0.355933,0.813178,0.177496,|0.470077,0.919477,0.338645,0.7449,0.0231282,0.865999,0.765181,0.855124,0.542349,0.125665,0.409289,0.819335,0.966919,0.266289,0.0755698,0.270168,0.0380377,0.551919,0.750093,0.679087,0.867168,0.275238,0.612936,0.991117,0.494956,0.564449,0.0990235,0.0204504,0.90479,0.862923,0.0387012,0.280896,0.836323,0.592607,0.209914,0.452793,0.74151,0.79903,0.494755,0.0770582,0.00338072,0.89523,0.884636,0.688127,0.615408,0.902092,0.989114,0.0675926,0.637875,0.310338,0.735651,0.308983,0.964183,0.0660485,0.945981,0.809238,0.483059,0.370857,0.0482414,0.276703,0.848701,0.125526,0.189292,0.215343,0.176212,0.116765,0.309822,0.447723,0.266324,0.533959,0.602343,0.0576217,0.572579,0.244172,0.904321,0.891254,0.759457,0.20047,0.374045,0.680723,0.492104,0.9379,0.16511,0.172542,0.978824,0.108538,0.099333,0.58384,0.58652,0.224612,0.60431,0.0179561,0.70942,0.0201938,0.214715,0.597778,0.971331,0.445994,0.581476,0.042731,0.658027,0.721408,0.32746,0.812739,0.566476,0.938313,0.939003,0.330622,0.311977,0.945578,0.024794,0.975006,0.0623698,0.72492,0.974119,0.964479,0.167899,0.821964,0.387537,0.605668,0.638067,0.307355,0.0993604,0.528945,0.544792,0.954066,0.204624,0.334952,0.116055,0.154816,0.916038,0.808066,0.814329,0.0994997,0.174384,0.95366,0.694702,0.84292,0.456546,0.419617,0.452654,0.66537,0.00970221,0.384621,0.0184865,0.552403,0.689957,0.574672,0.26451,0.767095,0.0761595,0.398643,0.821635,0.616352,0.508921,0.541124,0.138226,0.0848634,0.401969,0.948076,0.0670651,0.399759,0.263269,0.983723,0.561278,0.977869,0.84568,0.932241,0.710112,0.664171,0.349123,0.169935,0.331262,0.86327,0.709854,0.931923,0.833571,0.917001,0.196108,0.907687,0.910097,0.241638,0.734604,0.422001,0.466814,0.265738,0.843783,0.870631,0.690555,0.892993,0.221266,0.41934,0.121112,0.425581,0.0619598,0.889498,0.551251,0.488924,0.53496,0.368129,0.259219,0.982163,0.661214,0.0336088,0.144056,0.810852,0.835676,0.755107,0.948252,0.0350299,0.0170036,0.666063,0.981777,0.739085,0.5177,0.281686,0.251079,0.824995,0.67897,0.705681,0.558129,0.535065,0.387262,0.566973,0.997128,0.586741,0.806706,0.53828,0.724696,0.0273605,0.0703138,0.0534799,0.89704,0.540648,0.956212,0.806991,0.35148,0.59044,0.106773,0.956362,0.488905,0.659622,0.214161,0.903584,0.452434,0.256361,0.823727,0.302638,0.61005,0.472563,0.382574,0.464044,0.866352,0.930704,0.0319123,0.805073,0.350668,0.43077,0.224474,0.0639436,0.856987,0.128177,0.466379,0.702122,0.0831381,0.17259,0.569983,0.429104,0.0809312,0.639086,0.660055,0.0336921,0.441169,0.181822,0.914083,0.964115,0.214596,0.317271,0.62423,0.619466,0.773972,0.383168,0.107467,0.0313072,0.950834,0.789211,0.967931,0.545623,0.27492,0.641292,0.228453,0.643751,0.789775,0.182805,0.646233,0.762413,0.606701,0.966833,0.795211,0.949317,0.970807,0.373037,0.479936,0.382004,0.783681,0.597188,0.243533,0.987558,0.788041,0.184059,0.36065,0.643586,0.769778,0.0062449,0.500907,0.318749,0.552551,0.54099,0.334643,0.783958,0.838068,0.154427,0.317258,0.143273,0.677058,0.293903,0.170321,0.145461,0.362141,0.50077,0.675226,0.506631,0.36017,0.0223776,0.0905308,0.940261,0.330558,0.310012,0.35138,0.341762,0.624344,0.909656,0.47303,0.909411,0.679853,0.229545,0.917316,0.635496,0.589761,0.832717,0.0403115,0.600023,0.217521,0.270951,0.222077,0.418762,0.108687,0.919945,0.197261,0.917186,0.98111,0.359832,0.549911,0.36615,0.768324,0.620263,0.999985,0.879053,0.450589,0.255967,0.575472,0.237836,0.195769,0.935668,0.0876177,0.628628,0.825532,0.0952949,0.450953,0.132877,0.412642,0.359925,0.447193,0.0545022,0.416604,0.475575,0.124722,0.0731727,0.083684,0.408847,0.0118447,0.419986,0.0817941,0.355607,0.537303,0.90459,0.792435,0.076533,0.385595,0.0569885,0.931275,0.380969,0.698467,0.291879,0.0816085,0.0572277,0.650596,0.786446,0.505322,0.549151,0.475143,0.15978,0.313971,0.747432,0.676146,0.912637,0.750823,0.0153255,1.40667e-05,0.510158,0.5376,0.295774,0.957709,0.146149,0.141872,0.988472,0.563604,0.915179,0.466307,0.708433,0.996998,0.188496,0.820777,0.513691,0.851396,0.583571,0.601707,0.111507,0.709729,0.0287443,0.811807,0.591883,0.111605,0.615291,0.0186456,0.347981,0.310175,0.287537,0.864362,0.876856,0.0331386,0.68314,0.237257,0.265029,0.731653,0.338883,0.443558,0.398201,0.983051,0.840248,0.607294,0.784552,0.0538058,0.513679,0.836893,0.610412,0.945261,0.902108,0.340905,0.0250955,0.541707,0.233189,0.189522,0.15187,0.967781,0.367817,0.272344,0.0274075,0.257349,0.854566,0.470328,0.874317,0.917024,0.0813864,0.029025,0.657619,0.843644,0.338061,0.759127,0.968556,0.835885,0.792629,0.0547528,0.679454,0.153497,0.0894853,0.570471,0.0844857,0.60567,0.723498,0.374288,0.425478,0.519552,0.309541,0.154474,0.67447,0.169311,0.366732,0.597256,0.660874,0.239398,0.0342874,0.3726,0.268338,0.829148,0.712517,0.340022,0.85612,0.0552041,0.387456,0.051623,0.846052,0.352718,0.391812,0.784635,0.173277,0.543307,0.993264,0.252473,0.872534,0.614726,0.244574,0.143847,0.256383,0.269186,0.10741,0.328266,0.096924,0.341754,0.797805,0.478548,0.926134,0.618695,0.107948,0.505552,0.338076,0.295498,0.270134,0.0780901,0.295993,0.877092,0.191417,0.10691,0.663148,0.329309,0.473018,0.741876,0.664274,0.721412,0.0532588,0.802187,0.024913,0.431839,0.945194,0.43059,0.8801,0.527549,0.648235,0.406368,0.20829,0.975184,0.548092,0.335801,0.947269,0.725394,0.941395,0.363323,0.190551,0.804108,0.0953946,0.665629,0.76572,0.654449,0.17985,0.937423,0.21704,0.53049,0.617649,0.590902,0.617518,0.480597,0.921938,0.509305,0.624832,0.0664064,0.825641,0.991853,0.611492,0.303392,0.37472,0.158469,0.752651,0.136957,0.514711,0.485762,0.583462,0.757302,0.523884,0.567967,0.816958,0.241881,0.893441,0.732694,0.844951,0.423919,0.58752,0.642051,0.654871,0.499722,0.475661,0.937701,0.736126,0.153911,0.664726,0.0284318,0.544489,0.458045,0.528307,0.984811,0.671936,0.405677,0.679452,0.876864,0.803682,0.361886,0.548094,0.0383597,0.363796,0.297907,0.370213,0.269668,0.765904,0.518611,0.815934,0.97051,0.680472,0.409355,0.233923,0.568927,0.371474,0.0605484,0.167746,0.165459,0.834401,0.601488,0.502291,0.565979,0.919077,0.997499,0.952389,0.667139,0.987454,0.66227,0.473625,0.282305,0.589989,0.472357,0.90553,0.888877,0.200561,0.818107,0.895539,0.329166,0.04184,0.718027,0.266526,0.649448,0.115471,0.182793,0.38396,0.060471,0.850877,0.243602,0.945172,0.277238,0.290816,0.938521,0.854047,0.499538,0.672585,0.452656,0.283407,0.448114,0.728188,0.514393,0.684436,0.70422,0.894211,0.0379184,0.74703,0.303398,0.799298,0.840576,0.617148,0.207673,0.115684,0.761616,0.232645,0.878053,0.822885,0.210386,0.0487945,0.665418,0.956059,0.295942,0.361483,0.708927,0.791237,0.126649,0.597235,0.41469,0.511396,0.0868094,0.147759,0.170572,0.0845729,0.719995,0.151208,0.984015,0.331969,0.117826,0.875705,0.757463,0.550303,0.773947,0.761522,0.38847,0.182251,0.850949,0.00633073,0.951994,0.997134,0.509731,0.161977,0.62554,0.885722,0.227565,0.974583,0.79866,0.679172,0.226596,0.954104,0.256187,0.534982,0.38384,0.899286,0.715673,0.721024,0.753164,0.0971709,0.04293,0.0353,0.7134,0.680836,0.669938,0.255506,0.787973,0.660683,0.72219,0.0219415,0.323132,0.147412,0.735316,0.98584,0.717527,0.0415586,0.481411,0.575795,0.834551,0.904415,0.315992,0.255033,0.718883,0.779275,0.206796,0.199338,0.258835,0.911436,0.578472,0.100926,0.6426,0.375935,0.234321,0.159326,0.116567,0.305725,0.819996,0.754162,0.462173,0.576198,0.963241,0.908962,0.788265,0.26147,0.47452,0.0885363,0.352115,0.710483,0.433341,0.994552,0.318884,0.522054,0.912917,0.362093,0.999115,0.779249,0.942366,0.127711,0.126504,0.11473,0.913117,0.885986,0.48988,0.687948,0.260108,0.195734,0.296924,0.311651,0.347615,0.801976,0.773834,0.26973,0.263648,0.177339,0.60224,0.174707,0.946847,0.481068,0.708985,0.502156,0.0795822,0.0825765,0.900562,0.275967,0.2074,0.156331,0.429273,0.0914353,0.521872,0.148072,0.785507,0.752735,0.541321,0.0198932,0.301605,0.255899,0.639592,0.135999,0.195896,0.683026,0.703221,0.4639,0.111859,0.554697,0.579194,0.553293,0.216623,0.29567,0.363617,0.324198,0.542875,0.120258,0.926919,0.948198,0.764438,0.984634,0.618169,0.859499,0.185994,0.415354,0.802002,0.053197,0.0295513,0.502422,0.338715,0.211918,0.577813,0.199529,0.455464,0.426606,0.885836,0.925535,0.279608,0.372413,0.222931,0.665537,0.834976,0.893025,0.228944,0.383427,0.97913,0.536125,0.924327,0.751169,0.680871,0.35526,0.534133,0.359827,0.908256,0.944433,0.773243,0.803733,0.688818,0.867923,0.390888,0.16454,0.614129,0.862321,0.0175541,0.333148,0.952846,0.608837,0.868681,0.595141,0.729401,0.945213,0.677402,0.528534,0.824505,0.184338,0.321404,0.398034,0.603692,0.252363,0.936451,0.904801,0.175951,0.756307,0.330315,0.245303,0.0042147,0.00163162,0.211812,0.707665,0.945206,0.856907,0.555939,0.562452,0.263658,0.0540448,0.0574497,0.45107,0.260837,0.425259,0.00649029,0.0394819,0.399385,0.096486,0.0898085,0.0642602,0.719269,0.921941,0.148778,0.781065,0.353186,0.905093,0.752479,0.472343,0.116475,0.256811,0.183676,0.149363,0.944818,0.782812,0.763893,0.018144,0.109833,0.205104,0.491774,0.897122,0.802013,0.943411,0.978047,0.0503826,0.446915,0.432429,0.382006,0.468754,0.435693,0.400898,0.617176,0.628972,0.262488,0.561518,0.66664,0.841067,0.00762671,0.759267,0.806326,0.876915,|0.290056,0.303658,0.262798,0.0920572,0.122796,0.907079,0.781123,0.283018,0.86628,0.515668,0.996023,0.176961,0.537595,0.0960132,0.0854341,0.644915,0.962529,0.882869,0.930093,0.210998,0.997363,0.707632,0.665814,0.00626343,0.524402,0.408779,0.284894,0.766913,0.261691,0.0161265,0.524095,0.102255,0.999768,0.618594,0.0873107,0.319232,0.346548,0.921318,0.0492609,0.791365,0.666018,0.0710794,0.781126,0.566986,0.118938,0.00528389,0.363542,0.76545,0.355714,0.92486,0.298895,0.286996,0.403228,0.385572,0.707991,0.689551,0.0446837,0.150481,0.340354,0.810318,0.384934,0.629191,0.824217,0.105949,0.351544,0.0424024,0.462306,0.302736,0.330912,0.929377,0.992666,0.720972,0.625899,0.69174,0.639035,0.334547,0.949237,0.775373,0.221719,0.570354,0.990113,0.897832,0.37918,0.871062,0.636342,0.104395,0.0927163,0.737514,0.809251,0.095019,0.165752,0.840769,0.495774,0.244852,0.396277,0.168491,0.0648677,0.780232,0.783056,0.968872,0.745276,0.791609,0.27382,0.530478,0.995513,0.245155,0.0691599,0.805128,0.915489,0.477789,0.231217,0.511422,0.747634,0.707375,0.0509667,0.313491,0.462373,0.64958,0.525039,0.771901,0.332956,0.690845,0.840361,0.95309,0.921066,0.490111,0.752318,0.0839359,0.539824,0.794648,0.779743,0.472571,0.234037,0.00754797,0.824661,0.784864,0.376167,0.276662,0.344843,0.131407,0.0534638,0.0935013,0.00041616,0.33869,0.357085,0.589322,0.0742804,0.387304,0.903483,0.671029,0.654911,0.148618,0.00786573,0.224964,0.172691,0.819548,0.801977,0.991135,0.714386,0.56194,0.742366,0.947275,0.630983,0.893196,0.0548195,0.057077,0.788566,0.303902,0.506254,0.93205,0.998125,0.667314,0.152587,0.100977,0.972483,0.266796,0.337628,0.131792,0.869075,0.460631,0.26179,0.911307,0.661405,0.689141,0.0699861,0.256059,0.461955,0.768647,0.43824,0.807907,0.483024,0.227018,0.550978,0.1147,0.362582,0.336707,0.937541,0.654804,0.899877,0.385621,0.160218,0.778155,0.762072,0.651467,0.203029,0.285379,0.70397,0.540069,0.939935,0.535264,0.653627,0.336931,0.150438,0.524457,0.372842,0.528028,0.442292,0.00434929,0.428181,0.0720169,0.0502144,0.289582,0.502855,0.409856,0.858032,0.833562,0.464123,0.809262,0.412473,0.908507,0.553996,0.071305,0.213875,0.68097,0.926533,0.212995,0.380878,0.751464,0.847339,0.17484,0.968149,0.146148,0.677075,0.0568089,0.607578,0.271348,0.703688,0.797414,0.148582,0.158142,0.224472,0.442577,0.828276,0.748544,0.997716,0.875334,0.557717,0.64859,0.061568,0.155947,0.881889,0.0515426,0.622987,0.594157,0.936351,0.74152,0.935034,0.849593,0.621833,0.259474,0.0809671,0.918037,0.227312,0.869466,0.4322,0.685442,0.20162,0.852155,0.218298,0.751705,0.742988,0.79558,0.628795,0.919839,0.883966,0.269928,0.039732,0.284374,0.658547,0.0520706,0.769514,0.675474,0.673919,0.0231096,0.538373,0.709865,0.0771218,0.375411,0.361526,0.952687,0.365079,0.768216,0.900415,0.559566,0.623648,0.96968,0.349169,0.565461,0.288837,0.252338,0.362907,0.162631,0.020209,0.412301,0.230604,0.111754,0.121801,0.488091,0.311448,0.0689808,0.738024,0.430146,0.451492,0.191396,0.347602,0.781637,0.913212,0.177941,0.72498,0.623373,0.168133,0.815525,0.531437,0.0888377,0.993483,0.499615,0.0673208,0.760377,0.276726,0.0455483,0.239293,0.120088,0.724324,0.563467,0.955645,0.0639978,0.51706,0.23181,0.94302,0.851276,0.814742,0.0651755,0.581003,0.240213,0.120267,0.156501,0.5917,0.993049,0.14218,0.872575,0.285535,0.398511,0.911956,0.938438,0.327754,0.664271,0.117162,0.130126,0.0586025,0.253838,0.0415037,0.646768,0.0727339,0.00867301,0.188077,0.852129,0.974558,0.321871,0.666618,0.526697,0.558061,0.795719,0.00261885,0.015856,0.22252,0.44685,0.292578,0.671949,0.989859,0.70426,0.132043,0.708826,0.567083,0.636155,0.74413,0.590803,0.557006,0.259349,0.944108,0.23913,0.135492,0.502376,0.912969,0.613347,0.817854,0.139918,0.564296,0.110019,0.665638,0.683115,0.730072,0.00657463,0.956454,0.0557004,0.0241345,0.140165,0.0622777,0.95734,0.354868,0.4903,0.107567,0.0867679,0.253403,0.957542,0.564905,0.435515,0.600753,0.969871,0.740555,0.337458,0.648203,0.32529,0.955104,0.684413,0.343422,0.255893,0.325025,0.049458,0.718183,0.52725,0.902971,0.624349,0.0464787,0.479121,0.346304,0.0436444,0.175746,0.665556,0.0646853,0.957136,0.691919,0.0873688,0.507772,0.0999777,0.966288,0.666452,0.214475,0.968981,0.66591,0.711457,0.344213,0.502178,0.762896,0.565787,0.68037,0.253227,0.0552917,0.994293,0.0196554,0.437331,0.299342,0.708665,0.654113,0.438967,0.346952,0.89428,0.680152,0.383171,0.961159,0.398225,0.34778,0.745469,0.84035,0.858249,0.558452,0.260073,0.48553,0.79851,0.987122,0.0736595,0.97291,0.0770199,0.518858,0.363921,0.102106,0.420168,0.346448,0.730744,0.0855556,0.010559,0.323873,0.32062,0.420439,0.810632,0.385727,0.996481,0.257378,0.813973,0.234305,0.289715,0.519337,0.115668,0.174156,0.93133,0.146656,0.883223,0.389466,0.995733,0.202577,0.654541,0.755199,0.385023,0.260282,0.599048,0.947211,0.0573838,0.866321,0.902396,0.893752,0.882775,0.408472,0.134217,0.997167,0.663665,0.960119,0.546907,0.569635,0.626078,0.653273,0.843223,0.170949,0.0706068,0.0914436,0.368374,0.932727,0.793742,0.987805,0.584609,0.0995888,0.29839,0.275114,0.856033,0.337711,0.402777,0.317337,0.356418,0.377156,0.291332,0.0245062,0.421719,0.102395,0.289717,0.488377,0.407433,0.159043,0.543042,0.481085,0.516605,0.805763,0.197523,0.187951,0.468012,0.911328,0.40286,0.0363414,0.945363,0.543884,0.586325,0.849682,0.913611,0.559111,0.729768,0.291167,0.564487,0.538384,0.801247,0.591453,0.721862,0.299768,0.140277,0.251368,0.499608,0.609028,0.996257,0.727861,0.110392,0.264166,0.14354,0.270826,0.531592,0.658778,0.85363,0.140561,0.594988,0.105781,0.734915,0.976184,0.55772,0.085086,0.660698,0.45437,0.910622,0.0815409,0.833398,0.638284,0.246122,0.112774,0.232275,0.970252,0.746949,0.0886894,0.358831,0.854507,0.617317,0.230644,0.238351,0.872386,0.681405,0.795435,0.684295,0.173302,0.420386,0.823414,0.590308,0.49179,0.629605,0.440259,0.350991,0.895823,0.801226,0.684609,0.134385,0.709847,0.455601,0.69173,0.423038,0.308674,0.683412,0.513738,0.380488,0.740538,0.956223,0.176984,0.184404,0.956836,0.345227,0.421898,0.35897,0.758112,0.421522,0.0362507,0.362915,0.532267,0.162394,0.966859,0.814865,0.305963,0.672889,0.467618,0.622554,0.580863,0.914996,0.921505,0.132888,0.690074,0.919128,0.564561,0.506643,0.619477,0.971079,0.76497,0.142009,0.875211,0.475666,0.915452,0.52574,0.621363,0.88228,0.202748,0.984256,0.931114,0.234454,0.430495,0.977749,0.0762962,0.267104,0.738944,0.980729,0.899255,0.0559891,0.284166,0.251886,0.595394,0.32977,0.258519,0.318521,0.186941,0.248156,0.841647,0.900319,0.847618,0.302522,0.46584,0.321981,0.629045,0.889015,0.395976,0.786124,0.267871,0.215619,0.51607,0.252733,0.908786,0.826689,0.772798,0.669451,0.781081,0.542036,0.803074,0.815776,0.995844,0.347233,0.080741,0.694234,0.13012,0.459701,0.31547,0.421946,0.177514,0.425352,0.881282,0.572827,0.525315,0.872678,0.352926,0.658785,0.943334,0.624694,0.159995,0.911756,0.582457,0.535167,0.113046,0.336231,0.066458,0.517916,0.865002,0.775983,0.298334,0.366108,0.661818,0.0386872,0.488494,0.836959,0.597249,0.155979,0.302485,0.837109,0.650221,0.60691,0.449896,0.683402,0.497487,0.390426,0.39187,0.252734,0.908687,0.772244,0.216398,0.875324,0.249784,0.52826,0.928215,0.351529,0.700761,0.272794,0.297171,0.542621,0.53489,0.785992,0.00989264,0.747031,0.284431,0.853467,0.935122,0.864834,0.103981,0.369033,0.190442,0.464634,0.207625,0.123397,0.934734,0.0121467,0.149092,0.888165,0.754981,0.227668,0.830408,0.694709,0.323758,0.0816689,0.840384,0.37259,0.50977,0.0626162,0.236967,0.67477,0.936973,0.283376,0.654731,0.23811,0.649479,0.0234186,0.492129,0.73124,0.810033,0.539681,0.575191,0.384256,0.775038,0.934482,0.378243,0.117046,0.356234,0.961538,0.205352,0.966168,0.866976,0.653769,0.495211,0.696514,0.123336,0.191183,0.149229,0.41941,0.84782,0.878462,0.518756,0.601126,0.537483,0.0178648,0.502806,0.512223,0.0576105,0.372536,0.417179,0.80475,0.0259078,0.0263882,0.114738,0.0636023,0.869258,0.603636,0.823387,0.341286,0.641542,0.377908,0.719354,0.388767,0.408309,0.29064,0.640547,0.453245,0.525713,0.212545,0.446197,0.209741,0.676283,0.613186,0.316742,0.126529,0.776205,0.193994,0.654952,0.979695,0.159421,0.64387,0.850471,0.382605,0.53723,0.212156,0.809205,0.454385,0.613318,0.358935,0.121135,0.69392,0.105071,0.470985,0.531578,0.424685,0.283795,0.22452,0.629593,0.998668,0.323585,0.120793,0.463868,0.847361,0.863306,0.825749,0.0483168,0.586428,0.727819,0.237177,0.531922,0.0454024,0.932829,0.0736121,0.0187637,0.0488729,0.452314,0.949478,0.389905,0.460169,0.0540119,0.0693935,0.146852,0.568819,0.745681,0.168674,0.0847582,0.508773,0.17946,0.67865,0.420419,0.43895,0.411202,0.848135,0.0432242,0.229112,0.412826,0.702279,0.800701,0.712106,0.0943041,0.215394,0.810003,0.395558,0.824168,0.441848,0.613618,0.323722,0.691818,0.0764034,0.885612,0.114818,0.960877,0.895172,0.0631651,0.231737,0.712954,0.679671,0.605198,0.917532,0.0854675,0.411247,0.995044,0.639676,0.211122,0.943114,0.066825,0.226005,0.464368,0.394573,0.100982,0.48946,0.787868,0.981274,0.51478,0.388487,0.928742,0.966914,0.222861,0.37769,0.492067,0.109742,0.432648,0.0457045,0.440223,0.385292,0.0139577,0.199838,0.541057,0.180252,0.33688,0.467005,0.884164,0.901784,|0.974214,0.711162,0.135992,0.572342,0.292665,0.366473,0.255222,0.302461,0.0308446,0.790878,0.704397,0.445293,0.973066,0.415188,0.883625,0.817805,0.621978,0.148204,0.566968,0.986573,0.953675,0.441698,0.059322,0.609584,0.990799,0.217115,0.0751303,0.789355,0.108038,0.609365,0.586776,0.381921,0.0388781,0.222703,0.775844,0.211839,0.769697,0.305409,0.3932,0.915472,0.562709,0.314839,0.483776,0.566022,0.378974,0.319251,0.169829,0.488871,0.691873,0.568259,0.0416411,0.810272,0.932931,0.516327,0.374553,0.212,0.258771,0.737906,0.320979,0.6569,0.246286,0.716447,0.402698,0.377629,0.916366,0.499053,0.646932,0.65579,0.411795,0.100036,0.471797,0.549043,0.361804,0.91845,0.614549,0.00955433,0.559075,0.123227,0.374418,0.691585,0.228192,0.620319,0.199766,0.138067,0.179705,0.61771,0.644506,0.680304,0.916947,0.856817,0.119032,0.291732,0.0837826,0.750548,0.457818,0.27895,0.0907147,0.671901,0.907161,0.0700833,0.722418,0.0975499,0.805661,0.715169,0.49262,0.827148,0.0817724,0.845429,0.159203,0.194128,0.869638,0.202574,0.143033,0.310478,0.563235,0.20924,0.308744,0.248249,0.929681,0.890477,0.552459,0.29934,0.619059,0.297355,0.056318,0.641379,0.947875,0.647384,0.53666,0.272725,0.230598,0.316514,0.43455,0.656455,0.225187,0.520105,0.754995,0.0441867,0.780515,0.655735,0.35161,0.401759,0.186708,0.794469,0.81872,0.817148,0.386346,0.682906,0.367375,0.08347,0.368864,0.246713,0.677958,0.163325,0.204495,0.24861,0.728749,0.00150824,0.525304,0.229013,0.674547,0.212014,0.148134,0.292841,0.310336,0.682361,0.752825,0.374179,0.521526,0.437962,0.924993,0.103178,0.568972,0.0617597,0.441078,0.622817,0.425129,0.172422,0.852363,0.892944,0.361097,0.193261,0.724232,0.928276,0.164621,0.725115,0.62018,0.542127,0.311443,0.628108,0.302753,0.569859,0.634593,0.390746,0.103541,0.0963874,0.157706,0.669417,0.0746369,0.505288,0.787403,0.515881,0.433929,0.0991107,0.387055,0.271643,0.0327688,0.483101,0.356977,0.618435,0.503553,0.0729747,0.519338,0.939951,0.130899,0.334801,0.398501,0.96631,0.0357183,0.315772,0.908425,0.170054,0.495482,0.370149,0.418802,0.120968,0.495996,0.637104,0.0415998,0.609965,0.533597,0.210092,0.0391157,0.0201644,0.231265,0.77544,0.0167682,0.71594,0.614246,0.768536,0.189787,0.36482,0.938994,0.477462,0.250373,0.0457323,0.567529,0.763772,0.405455,0.0936503,0.990475,0.722431,0.0225183,0.277735,0.0944175,0.726827,0.928982,0.957157,0.346582,0.933037,0.460358,0.0323283,0.073302,0.243442,0.758408,0.038501,0.446215,0.709866,0.306712,0.890499,0.789585,0.974832,0.253857,0.600909,0.516306,0.0776399,0.151952,0.0250692,0.131298,0.410858,0.900514,0.96898,0.180293,0.220374,0.113632,0.343608,0.443582,0.804713,0.923684,0.706458,0.557319,0.590516,0.804924,0.476962,0.953687,0.803246,0.136743,0.828324,0.208683,0.359773,0.343904,0.851046,0.0192816,0.11657,0.110094,0.40789,0.733336,0.713898,0.250097,0.339603,0.173213,0.000626862,0.406625,0.524621,0.460264,0.839334,0.0011121,0.820993,0.836207,0.744291,0.487257,0.0554586,0.228852,0.672914,0.137922,0.841182,0.819528,0.675039,0.189552,0.148428,0.0592313,0.75947,0.606484,0.993383,0.504361,0.998021,0.225083,0.279847,0.29307,0.0995652,0.623726,0.718311,0.723769,0.50075,0.096049,0.0593436,0.672294,0.570381,0.0581841,0.886281,0.226161,0.980195,0.151486,0.218418,0.0975726,0.191157,0.128718,0.0951383,0.574852,0.12455,0.216331,0.411283,0.68179,0.797854,0.0489605,0.540658,0.510703,0.460013,0.271415,0.415283,0.954869,0.698726,0.728097,0.407522,0.574421,0.15301,0.406208,0.883298,0.119473,0.2635,0.900019,0.4825,0.229984,0.730803,0.60849,0.607252,0.950264,0.0394392,0.145096,0.839492,0.358764,0.385573,0.214243,0.440109,0.063557,0.826332,0.581364,0.819331,0.513339,0.214723,0.6335,0.659358,0.354784,0.661975,0.687021,0.391672,0.233872,0.961073,0.971757,0.659892,0.494306,0.300227,0.69916,0.558157,0.992055,0.537791,0.510545,0.765393,0.811959,0.977791,0.676778,0.450929,0.00573856,0.935958,0.651527,0.901986,0.358293,0.0114821,0.906759,0.0765575,0.00491375,0.909133,0.848761,0.630668,0.352339,0.543653,0.347525,0.0188155,0.252428,0.852238,0.437088,0.749199,0.473139,0.738626,0.777031,0.516117,0.106008,0.304492,0.889824,0.0874014,0.979251,0.289227,0.867792,0.272284,0.348861,0.885006,0.622364,0.455417,0.518085,0.0485111,0.212711,0.495845,0.935989,0.567297,0.852646,0.162708,0.304579,0.449011,0.981151,0.679653,0.17058,0.194306,0.287317,0.601241,0.217893,0.96366,0.87374,0.2579,0.916686,0.128497,0.465775,0.509603,0.502963,0.277761,0.609509,0.436776,0.357358,0.583459,0.278155,0.120832,0.609328,0.179922,0.810123,0.631365,0.341108,0.1529,0.37685,0.492971,0.634227,0.394791,0.495903,0.356637,0.554897,0.855141,0.342221,0.936086,0.262927,0.977834,0.516214,0.0230664,0.312171,0.567005,0.506588,0.134693,0.429922,0.734976,0.203328,0.755792,0.717006,0.276467,0.74684,0.087781,0.245182,0.0449783,0.500413,0.542821,0.927664,0.0637159,0.504278,0.533383,0.938999,0.643354,0.0612308,0.288149,0.682397,0.538375,0.358226,0.282184,0.782343,0.612957,0.179726,0.0854112,0.254212,0.651419,0.382751,0.200444,0.139274,0.33756,0.0249831,0.328675,0.902792,0.547392,0.632414,0.706653,0.393685,0.479587,0.218755,0.29998,0.649844,0.457714,0.825547,0.823334,0.682092,0.159297,0.706671,0.277503,0.114815,0.404885,0.1944,0.566815,0.144565,0.940486,0.957993,0.106219,0.878927,0.582411,0.743776,0.923731,0.304825,0.840247,0.173355,0.349205,0.294963,0.785712,0.086839,0.337499,0.990772,0.191418,0.483007,0.671478,0.791695,0.881486,0.448486,0.39257,0.972179,0.334396,0.145161,0.845279,0.514524,0.837731,0.99993,0.565922,0.617023,0.791614,0.00213909,0.737827,0.153609,0.744475,0.111716,0.248715,0.108556,0.886406,0.62773,0.186476,0.181748,0.0891678,0.273404,0.358598,0.997606,0.806668,0.427643,0.123651,0.336698,0.348102,0.98521,0.452602,0.663829,0.154429,0.737525,0.200144,0.224516,0.0959455,0.358628,0.630831,0.461841,0.684214,0.994168,0.11406,0.127893,0.963427,0.76441,0.770842,0.998477,0.490658,0.57403,0.666236,0.409791,0.635158,0.664988,0.149275,0.763125,0.135323,0.910858,0.274787,0.991062,0.529351,0.773071,0.338426,0.976048,0.802609,0.560228,0.991148,0.365487,0.0463252,0.15093,0.729152,0.949954,0.777978,0.450601,0.0838278,0.161618,0.0191697,0.814554,0.748039,0.340598,0.47918,0.242465,0.468836,0.527298,0.611847,0.200001,0.788711,0.494853,0.0879746,0.408778,0.594418,0.322936,0.147578,0.216929,0.909258,0.641689,0.782377,0.207331,0.990917,0.620264,0.931987,0.870301,0.139791,0.1855,0.561222,0.852811,0.365864,0.0405169,0.806854,0.409186,0.481814,0.700775,0.918291,0.467885,0.957103,0.359989,0.605632,0.705723,0.00361222,0.0964327,0.656381,0.537616,0.343632,0.891084,0.50647,0.600196,0.630655,0.0761946,0.0420271,0.870227,0.156929,0.790291,0.266904,0.104572,0.00576121,0.185474,0.442147,0.825472,0.208579,0.837003,0.557433,0.254294,0.222231,0.111561,0.220774,0.547929,0.785164,0.197523,0.233467,0.858994,0.780688,0.561868,0.0195886,0.615807,0.808832,0.0896937,0.86389,0.901296,0.263678,0.138876,0.992969,0.714833,0.000711501,0.065725,0.614315,0.810322,0.0471541,0.1655,0.0204504,0.555808,0.180013,0.936433,0.907291,0.0222078,0.393439,0.0233634,0.725736,0.115822,0.917527,0.10809,0.463644,0.486385,0.711223,0.199748,0.0875441,0.812796,0.194157,0.667272,0.00262147,0.727842,0.395229,0.905901,0.989385,0.647329,0.837636,0.102726,0.141442,0.299999,0.355848,0.74333,0.692171,0.934555,0.0898697,0.429096,0.771868,0.589086,0.015182,0.659549,0.223115,0.681683,0.992318,0.903727,0.925751,0.912406,0.889094,0.538516,0.872846,0.596737,0.80968,0.528142,0.141225,0.792471,0.0219774,0.241936,0.923396,0.918555,0.316199,0.973573,0.474608,0.435687,0.069325,0.434663,0.298594,0.833892,0.588041,0.73159,0.492373,0.325364,0.00527942,0.197764,0.591259,0.870928,0.770972,0.868177,0.66901,0.0786126,0.471061,0.0860772,0.445465,0.975374,0.103327,0.0184616,0.988716,0.709746,0.820758,0.756732,0.399996,0.710463,0.927782,0.851576,0.312112,0.459216,0.558197,0.0211512,0.930977,0.961163,0.862141,0.836505,0.719303,0.690109,0.46337,0.486014,0.1498,0.507357,0.521783,0.398516,0.792391,0.76848,0.142283,0.640658,0.540234,0.944963,0.293953,0.908185,0.756434,0.0233615,0.168058,0.168583,0.770641,0.898346,0.214718,0.787985,0.0104663,0.604037,0.191781,0.752187,0.968476,0.68838,0.704952,0.783753,0.661022,0.80959,0.783251,0.0518724,0.994287,0.686492,0.0578657,0.616829,0.729616,0.418443,0.444175,0.0214073,0.311947,0.231348,0.915888,0.330448,0.484138,0.408591,0.535724,0.0778753,0.420406,0.585509,0.288433,0.0184928,0.513528,0.173078,0.27691,0.834389,0.33925,0.644199,0.999415,0.660354,0.246811,0.0244987,0.348573,0.018368,0.594607,0.499921,0.141043,0.58028,0.51322,0.179711,0.0243251,0.17754,0.412944,0.335482,0.730947,0.445511,0.385308,0.724302,0.535795,0.105352,0.819405,0.355112,0.742334,0.110296,0.724313,0.159526,0.528366,0.971594,0.394353,0.424661,0.422943,0.922936,0.263015,0.769091,0.17986,0.415495,0.917528,0.565324,0.728876,0.0649391,0.151733,0.879525,0.713791,0.654336,0.0897387,0.689888,0.255221,0.229359,0.967573,0.236875,0.761713,0.423306,0.102013,0.160686,0.355604,0.171352,0.948839,0.888131,0.956233,0.963503,0.488205,0.190368,0.616294,0.907796,0.820731,0.553644,0.873556,0.628873,0.168766,0.861157,0.200089,0.141668,0.579177,|0.169334,0.0933317,0.11585,0.397004,0.398986,0.731366,0.64856,0.592536,0.466521,0.997724,0.347988,0.786289,0.456867,0.959252,0.21624,0.0258785,0.247724,0.489885,0.798517,0.750039,0.513478,0.239883,0.140514,0.161412,0.838012,0.0335962,0.972868,0.0631819,0.865553,0.281066,0.418431,0.285293,0.190395,0.703662,0.303293,0.0333914,0.328281,0.0255372,0.501898,0.298102,0.223578,0.759618,0.228868,0.068126,0.741811,0.667703,0.889042,0.889093,0.976097,0.711824,0.369106,0.283947,0.812497,0.763932,0.367392,0.363894,0.615109,0.532891,0.182491,0.924501,0.576672,0.993618,0.111661,0.175461,0.605644,0.590985,0.38827,0.257851,0.893548,0.318309,0.170815,0.421685,0.886588,0.798814,0.966486,0.191412,0.958781,0.549652,0.765017,0.170498,0.889057,0.396765,0.37618,0.661251,0.131117,0.0371486,0.00205743,0.561002,0.928876,0.00992328,0.0128607,0.381088,0.0847625,0.0109989,0.847963,0.0937598,0.197088,0.447272,0.102827,0.864439,0.517751,0.947871,0.482892,0.594086,0.675342,0.593863,0.601501,0.88686,0.0836841,0.388353,0.395813,0.337574,0.00653219,0.193086,0.817656,0.570957,0.545478,0.510358,0.595002,0.919953,0.298353,0.903079,0.557489,0.961003,0.555928,0.0800267,0.400226,0.552968,0.395872,0.841772,0.822673,0.707347,0.57193,0.717981,0.694615,0.0334949,0.671317,0.268363,0.537671,0.354281,0.548398,0.663001,0.55933,0.465063,0.353751,0.193524,0.505106,0.999812,0.748676,0.435473,0.994168,0.459845,0.331657,0.198428,0.16283,0.576037,0.30856,0.528445,0.780757,0.337075,0.0482823,0.328615,0.581047,0.909566,0.760434,0.586429,0.596408,0.423385,0.587693,0.604686,0.390638,0.145582,0.742831,0.609858,0.0960726,0.832399,0.764455,0.825053,0.756158,0.840734,0.0238487,0.508243,0.718371,0.785529,0.876768,0.182864,0.728682,0.975624,0.872607,0.434701,0.878862,0.805922,0.593029,0.735688,0.944355,0.47408,0.373697,0.0807518,0.0923288,0.407383,0.71302,0.50054,0.383324,0.329576,0.997248,0.906584,0.859281,0.608699,0.740653,0.958417,0.456685,0.51212,0.133514,0.298071,0.522545,0.112632,0.172406,0.110892,0.256306,0.638377,0.188881,0.877294,0.185007,0.712433,0.539051,0.445548,0.226,0.528936,0.531076,0.845624,0.0879444,0.194156,0.213712,0.11001,0.533583,0.586969,0.860483,0.553383,0.257992,0.340126,0.317379,0.141889,0.661642,0.350688,0.810063,0.699915,0.0437477,0.401689,0.31297,0.731223,0.288561,0.206046,0.959867,0.180876,0.368427,0.486254,0.641038,0.367518,0.831576,0.555128,0.43909,0.164841,0.237922,0.545416,0.0770573,0.52763,0.824354,0.0641035,0.211932,0.704076,0.0944924,0.399035,0.833015,0.510363,0.286538,0.660847,0.92576,0.75023,0.889526,0.745629,0.328319,0.941349,0.0294757,0.428198,0.569765,0.840706,0.0122369,0.754895,0.0544167,0.501066,0.128199,0.944991,0.127115,0.927743,0.450258,0.373901,0.287487,0.928142,0.54057,0.814239,0.480066,0.405244,0.782651,0.769161,0.877976,0.058115,0.005795,0.28166,0.569608,0.243939,0.0839748,0.956147,0.643588,0.742551,0.1233,0.306986,0.681675,0.403691,0.143754,0.578395,0.265196,0.175071,0.243225,0.387499,0.652046,0.114421,0.648688,0.580369,0.311045,0.291484,0.854578,0.555572,0.569483,0.318225,0.514749,0.713458,0.679325,0.876997,0.695466,0.917655,0.692061,0.628433,0.261161,0.377287,0.929087,0.266597,0.855786,0.192129,0.192499,0.0910926,0.628911,0.554795,0.982021,0.706358,0.385823,0.210324,0.728387,0.994812,0.0399386,0.223764,0.445995,0.0834417,0.194055,0.303526,0.178863,0.750891,0.370316,0.26543,0.324654,0.0902727,0.0853999,0.444634,0.784159,0.693713,0.951502,0.651293,0.437497,0.208552,0.623406,0.575968,0.622789,0.546016,0.727132,0.113974,0.729138,0.474393,0.625676,0.646815,0.0822843,0.850672,0.0182648,0.171506,0.187375,0.71953,0.902004,0.676366,0.013741,0.585688,0.180171,0.874193,0.529766,0.926012,0.439289,0.547518,0.193787,0.258044,0.150749,0.0139278,0.570624,0.376182,0.310823,0.885888,0.110748,0.0628287,0.851549,0.864942,0.839916,0.966844,0.98832,0.106256,0.870348,0.515987,0.215324,0.974325,0.156292,0.489754,0.230865,0.687147,0.0853775,0.385132,0.98179,0.47211,0.523107,0.6517,0.206677,0.44918,0.641054,0.678118,0.095894,0.441877,0.79772,0.775015,0.195748,0.947543,0.103878,0.300772,0.74547,0.120438,0.122834,0.0615959,0.217086,0.620538,0.816953,0.268668,0.172021,0.361604,0.0033024,0.965678,0.520519,0.595344,0.331118,0.523344,0.61179,0.508076,0.325969,0.207631,0.107169,0.0756506,0.177651,0.118999,0.933364,0.188933,0.499916,0.182975,0.941019,0.176125,0.110656,0.614824,0.672472,0.0638663,0.303017,0.794368,0.751336,0.949591,0.505849,0.484158,0.603709,0.757435,0.663788,0.899287,0.739886,0.497508,0.148393,0.166709,0.129174,0.324387,0.103909,0.211921,0.0139027,0.618518,0.4211,0.345395,0.0690748,0.0251567,0.552893,0.623102,0.83059,0.0846296,0.193149,0.577746,0.854647,0.436336,0.953553,0.638552,0.476577,0.454142,0.258871,0.24747,0.563441,0.88487,0.698627,0.597246,0.898705,0.597155,0.706784,0.0231903,0.23997,0.0832895,0.999041,0.0819668,0.612348,0.751016,0.604092,0.346607,0.439128,0.552048,0.351252,0.805677,0.81434,0.235362,0.928316,0.452024,0.855103,0.373547,0.321818,0.900458,0.685341,0.895613,0.5717,0.759764,0.705939,0.355112,0.696746,0.436668,0.770507,0.209181,0.56393,0.522881,0.44509,0.243845,0.292154,0.376079,0.96583,0.212156,0.866258,0.0306833,0.906637,0.45103,0.581329,0.250466,0.284385,0.367485,0.268556,0.351873,0.178444,0.270008,0.977816,0.712778,0.965085,0.0295975,0.114204,0.537865,0.977675,0.410805,0.865782,0.0155761,0.136113,0.181729,0.538541,0.218301,0.939201,0.702056,0.986869,0.66033,0.697461,0.764545,0.146375,0.560674,0.254334,0.475461,0.279877,0.503764,0.984953,0.0241039,0.999537,0.267097,0.17245,0.477497,0.178168,0.905372,0.795831,0.251485,0.629584,0.650182,0.377783,0.550877,0.73788,0.101908,0.560072,0.192589,0.286271,0.379115,0.885751,0.991037,0.729094,0.903733,0.650297,0.982813,0.28487,0.930441,0.801443,0.952056,0.923223,0.876748,0.838032,0.295069,0.509003,0.471652,0.26556,0.837241,0.624574,0.902133,0.697121,0.068967,0.798416,0.375855,0.665703,0.344608,0.456891,0.0214256,0.778275,0.983877,0.807375,0.733531,0.621381,0.0480375,0.43063,0.934075,0.285544,0.110606,0.0399403,0.466821,0.12156,0.370373,0.834873,0.546206,0.064989,0.45657,0.0946479,0.0199919,0.553811,0.501263,0.249978,0.521421,0.529366,0.825753,0.39694,0.507316,0.380917,0.396805,0.847155,0.494344,0.70485,0.751891,0.667654,0.981964,0.240834,0.184097,0.71448,0.296251,0.0527772,0.65136,0.199616,0.741132,0.629846,0.206457,0.863136,0.43741,0.961642,0.728319,0.953084,0.0856625,0.889204,0.00164241,0.857302,0.161917,0.402499,0.957522,0.139236,0.646929,0.962968,0.836544,0.809619,0.272723,0.0111401,0.849046,0.74967,0.187436,0.775396,0.725507,0.646615,0.525814,0.0825296,0.245274,0.0510357,0.266315,0.373146,0.608546,0.17967,0.439585,0.511351,0.0699935,0.941705,0.497087,0.762861,0.0316103,0.651996,0.228838,0.536644,0.3039,0.760408,0.699372,0.199559,0.0610338,0.708986,0.744632,0.827783,0.591832,0.653725,0.204522,0.225618,0.249706,0.806499,0.0812995,0.251097,0.503216,0.306634,0.1752,0.401495,0.767117,0.821667,0.898923,0.271801,0.280338,0.0386504,0.104208,0.386486,0.626831,0.448227,0.412645,0.10165,0.134765,0.467052,0.350992,0.813555,0.942537,0.0936725,0.952079,0.738947,0.016895,0.749018,0.670752,0.396879,0.422952,0.774052,0.693762,0.984022,0.251442,0.506921,0.972817,0.315183,0.545496,0.994569,0.813664,0.609355,0.403436,0.839264,0.610682,0.393128,0.306562,0.582681,0.561654,0.410406,0.471087,0.648753,0.546033,0.325168,0.220339,0.811429,0.246404,0.810978,0.110434,0.207867,0.635104,0.945799,0.916425,0.462326,0.480439,0.862696,0.717504,0.978812,0.901533,0.828381,0.0117729,0.85383,0.0949793,0.779626,0.931461,0.269276,0.705358,0.889234,0.137087,0.254381,0.603441,0.424695,0.377373,0.881009,0.332667,0.436779,0.939317,0.234014,0.993379,0.792625,0.974571,0.938647,0.349926,0.133455,0.455093,0.872632,0.950005,0.753072,0.316245,0.691189,0.756675,0.420501,0.961615,0.973554,0.568785,0.231806,0.545541,0.920953,0.414233,0.726922,0.347792,0.345071,0.999258,0.111509,0.235524,0.361596,0.19241,0.169427,0.970667,0.937333,0.583042,0.156811,0.327966,0.544534,0.754886,0.557503,0.234156,0.296537,0.897304,0.297638,0.503975,0.815044,0.015422,0.784483,0.786216,0.29261,0.809588,0.00963748,0.60091,0.379719,0.794527,0.569791,0.260679,0.0638333,0.697507,0.321074,0.407526,0.402075,0.494434,0.339414,0.974453,0.392938,0.166991,0.144077,0.571598,0.280702,0.70387,0.0513735,0.234014,0.792133,0.462677,0.694403,0.269801,0.651852,0.896932,0.392364,0.913768,0.223456,0.377359,0.29984,0.823188,0.684252,0.789985,0.799901,0.138929,0.814086,0.105985,0.467352,0.50482,0.425399,0.664703,0.832051,0.376673,0.77519,0.558518,0.510436,0.468275,0.202383,0.258794,0.283625,0.915862,0.987262,0.0313569,0.380108,0.392151,0.593145,0.567244,0.537781,0.499111,0.222243,0.41373,0.246935,0.090299,0.787445,0.219746,0.383943,0.696349,0.725779,0.416099,0.990972,0.0628635,0.77099,0.00810069,0.959591,0.986707,0.563751,0.142037,0.814033,0.679932,0.632089,0.974812,0.45167,0.836205,0.857154,0.0235667,0.19584,0.262384,0.210772,0.527991,0.235736,0.801481,0.0566646,0.146615,0.14476,0.371956,0.777747,0.984836,0.326023,0.733862,0.843373,0.286436,0.544273,0.97706,0.809951,0.369145,0.90159,0.0271109,|0.696078,0.340989,0.521817,0.397906,0.793331,0.811041,0.549532,0.464533,0.925013,0.161406,0.345959,0.495828,0.642078,0.759902,0.584241,0.984167,0.118048,0.761362,0.939602,0.856904,0.139732,0.886014,0.915346,0.895103,0.0449052,0.984336,0.922854,0.304411,0.718669,0.517208,0.0585138,0.408854,0.899456,0.26664,0.77992,0.068072,0.0609306,0.622062,0.888926,0.677802,0.762185,0.328031,0.343171,0.582876,0.640538,0.299227,0.543508,0.0330507,0.725023,0.201117,0.30829,0.499296,0.259354,0.999005,0.0616472,0.763489,0.785466,0.457114,0.459621,0.750934,0.116484,0.719801,0.26523,0.719196,0.684195,0.244403,0.880971,0.756064,0.481417,0.630095,0.888813,0.644576,0.956202,0.79457,0.416754,0.428288,0.0615327,0.999657,0.0145237,0.502382,0.284512,0.61005,0.109273,0.892054,0.810553,0.72929,0.978601,0.13577,0.540555,0.860934,0.0835665,0.255075,0.431277,0.0668543,0.0927815,0.504137,0.152419,0.396027,0.31327,0.659708,0.885107,0.917632,0.362867,0.932787,0.116907,0.679304,0.895799,0.379713,0.534014,0.796381,0.403099,0.727123,0.705272,0.698225,0.872238,0.599125,0.427206,0.116394,0.443484,0.368748,0.512083,0.328904,0.0463206,0.462989,0.385845,0.0621197,0.629902,0.796137,0.763087,0.174113,0.376113,0.509057,0.862581,0.458941,0.0338146,0.366493,0.886199,0.578744,0.0688199,0.774553,0.0828277,0.535685,0.566819,0.507931,0.725477,0.342138,0.0855147,0.426754,0.00760674,0.0254382,0.577868,0.0884774,0.954645,0.777438,0.0343603,0.146944,0.488481,0.69629,0.0026052,0.700752,0.526354,0.431414,0.5038,0.222424,0.915572,0.971552,0.725551,0.46015,0.744991,0.101232,0.47491,0.341372,0.91436,0.727469,0.153109,0.139002,0.68807,0.590699,0.698239,0.73723,0.0665326,0.910242,0.659215,0.536237,0.993736,0.36663,0.0813926,0.818039,0.773582,0.160894,0.00687063,0.0677221,0.130697,0.259979,0.564276,0.740241,0.686155,0.56509,0.39871,0.869314,0.258654,0.737636,0.630599,0.841453,0.660502,0.777715,0.593224,0.183768,0.143117,0.815691,0.590461,0.184376,0.770749,0.244949,0.498027,0.160996,0.153553,0.651736,0.22043,0.192662,0.9409,0.193713,0.322582,0.812711,0.917202,0.583583,0.83518,0.317222,0.907559,0.984926,0.582546,0.881079,0.259768,0.534017,0.746484,0.26459,0.492622,0.891563,0.394587,0.574024,0.0340383,0.639139,0.30447,0.502323,0.017058,0.295877,0.674696,0.618503,0.578272,0.99945,0.400759,0.202149,0.942123,0.620866,0.848248,0.830171,0.460413,0.0416069,0.0744396,0.176548,0.20141,0.330723,0.454479,0.774569,0.927142,0.882402,0.361363,0.476182,0.396748,0.405353,0.571141,0.189879,0.461736,0.93112,0.683147,0.918803,0.258233,0.972486,0.24206,0.726281,0.316543,0.466559,0.549856,0.512202,0.660933,0.0537447,0.322158,0.840383,0.676947,0.524667,0.100497,0.395227,0.851836,0.241813,0.589913,0.121812,0.989212,0.141848,0.260991,0.913923,0.866439,0.416862,0.920482,0.236241,0.935572,0.951882,0.48885,0.846118,0.538193,0.994901,0.00672901,0.890266,0.677176,0.477702,0.537961,0.594367,0.751019,0.434337,0.987711,0.746447,0.356547,0.884662,0.249566,0.0863987,0.35507,0.3157,0.289275,0.921302,0.0518724,0.367924,0.411493,0.99638,0.324863,0.784494,0.0119575,0.170601,0.121349,0.873556,0.618434,0.643047,0.0881095,0.469592,0.0492545,0.709787,0.101599,0.751328,0.21514,0.901255,0.364533,0.487714,0.447433,0.696918,0.348128,0.344534,0.926117,0.499508,0.62903,0.491266,0.461243,0.516626,0.550138,0.352535,0.988582,0.766565,0.222009,0.519019,0.218482,0.848201,0.510826,0.333427,0.24109,0.962219,0.106958,0.737202,0.793475,0.567576,0.36117,0.398573,0.762314,0.96169,0.862479,0.117762,0.958424,0.555832,0.0429581,0.768337,0.685873,0.92573,0.601874,0.0718787,0.821397,0.724596,0.975508,0.453567,0.743849,0.45073,0.986022,0.493374,0.265787,0.331423,0.252986,0.823566,0.0759597,0.165543,0.115967,0.0102585,0.594099,0.796981,0.838379,0.66042,0.605666,0.809496,0.166322,0.583248,0.382429,0.256263,0.053871,0.0778232,0.271353,0.818304,0.186569,0.717844,0.281207,0.916029,0.2316,0.875115,0.281253,0.147375,0.438237,0.317156,0.240366,0.670253,0.382536,0.263362,0.897938,0.482772,0.289515,0.453314,0.331106,0.583835,0.63369,0.526894,0.0217883,0.00782788,0.198901,0.917436,0.443534,0.154726,0.476087,0.458137,0.285504,0.0135673,0.312239,0.35139,0.722179,0.153422,0.291875,0.854382,0.582892,0.643496,0.174702,0.616748,0.171402,0.653568,0.493626,0.837948,0.650042,0.235312,0.104549,0.296293,0.0744357,0.460466,0.436033,0.134752,0.163933,0.547766,0.655835,0.286062,0.194566,0.642934,0.821646,0.303699,0.626735,0.448787,0.57942,0.125633,0.43251,0.0433027,0.686236,0.889029,0.882088,0.740178,0.667948,0.639937,0.30786,0.868676,0.953584,0.379735,0.611338,0.34212,0.930374,0.280767,0.700745,0.322879,0.00682211,0.831713,0.193866,0.0620303,0.401672,0.641023,0.782483,0.799948,0.16781,0.130501,0.528021,0.967413,0.250584,0.838285,0.47105,0.0970939,0.0653346,0.904652,0.797986,0.455814,0.494242,0.185899,0.696854,0.380494,0.32514,0.462675,0.233412,0.35258,0.205817,0.0625392,0.30797,0.110745,0.717698,0.620553,0.997125,0.639604,0.76499,0.247054,0.148568,0.424164,0.616719,0.489378,0.195714,0.575931,0.314661,0.0944332,0.5188,0.757633,0.7701,0.927729,0.66493,0.581978,0.0601349,0.835953,0.785301,0.320924,0.550965,0.645176,0.281615,0.779207,0.716092,0.0367412,0.515881,0.71724,0.485173,0.736183,0.0251834,0.227837,0.858399,0.974407,0.691952,0.953092,0.356278,0.691101,0.788857,0.331926,0.502229,0.476493,0.665588,0.634862,0.83672,0.867889,0.115375,0.663295,0.249632,0.318124,0.715841,0.76593,0.678319,0.414141,0.204296,0.816286,0.0653513,0.624119,0.433426,0.344086,0.82091,0.941143,0.572595,0.229262,0.0274142,0.697793,0.0368629,0.392238,0.980619,0.740388,0.0915846,0.944236,0.93705,0.428118,0.845765,0.608134,0.491954,0.17588,0.242621,0.119875,0.0181425,0.0334218,0.94453,0.184374,0.0534297,0.528332,0.945574,0.0924753,0.682022,0.166725,0.323141,0.781566,0.0752001,0.813594,0.028191,0.358449,0.0893542,0.547793,0.816779,0.884721,0.725341,0.0580553,0.876176,0.602695,0.270173,0.574236,0.0479492,0.635114,0.917546,0.858002,0.549438,0.157151,0.055661,0.64331,0.614087,0.988875,0.890159,0.878478,0.391929,0.42714,0.6462,0.0583155,0.789386,0.179519,0.218493,0.753903,0.331497,0.464896,0.215784,0.891046,0.470123,0.00517064,0.57229,0.199744,0.407657,0.708478,0.0109209,0.501809,0.972805,0.0355619,0.216436,0.991407,0.798863,0.0480326,0.639202,0.290311,0.410407,0.915739,0.17689,0.0230622,0.944405,0.0413724,0.849126,0.00993145,0.961524,0.271458,0.901566,0.955822,0.0277912,0.881495,0.903393,0.640563,0.167204,0.545874,0.522747,0.507983,0.85262,0.190845,0.674382,0.598227,0.099833,0.709366,0.857081,0.143662,0.749533,0.595392,0.0075956,0.370225,0.148845,0.393041,0.0155252,0.527052,0.263327,0.217965,0.967435,0.391829,0.294265,0.74937,0.732265,0.259951,0.651863,0.441274,0.187837,0.173893,0.691798,0.710323,0.747406,0.7512,0.34709,0.79507,0.160877,0.875744,0.624464,0.604748,0.330335,0.544432,0.649623,0.417604,0.0429381,0.668075,0.761373,0.940216,0.427499,0.835994,0.558919,0.744021,0.655403,0.653631,0.508635,0.860867,0.444396,0.24938,0.553282,0.245767,0.936317,0.0304157,0.221882,0.239938,0.0496212,0.717062,0.479306,0.894504,0.392951,0.976232,0.0437286,0.115423,0.980086,0.387043,0.128015,0.0128756,0.55999,0.193124,0.236658,0.818959,0.0697723,0.451365,0.597689,0.689858,0.0379089,0.865103,0.342715,0.215086,0.0835268,0.443836,0.585468,0.31785,0.00520849,0.7378,0.689659,0.446987,0.539118,0.624069,0.35449,0.704518,0.496891,0.561753,0.194265,0.357984,0.57827,0.532552,0.476212,0.587403,0.611795,0.320874,0.742366,0.988602,0.372885,0.526382,0.119834,0.975608,0.535445,0.131216,0.894555,0.0964483,0.365591,0.0820333,0.355554,0.795491,0.361964,0.793582,0.359387,0.494409,0.53651,0.84022,0.84093,0.990735,0.117758,0.79539,0.366773,0.875579,0.998861,0.207778,0.416295,0.32712,0.89677,0.917692,0.562838,0.861415,0.523353,0.795672,0.523622,0.245718,0.708832,0.289021,0.818208,0.98699,0.696436,0.289093,0.373589,0.795231,0.855296,0.365781,0.224417,0.355747,0.718511,0.160676,0.340837,0.38638,0.108866,0.00683141,0.413212,0.959826,0.880647,0.657875,0.755991,0.59393,0.438243,0.541936,0.234364,0.21723,0.677126,0.692059,0.441079,0.178747,0.353395,0.827448,0.514647,0.44318,0.787153,0.966093,0.436291,0.278605,0.240743,0.222593,0.421624,0.366597,0.320609,0.391664,0.607846,0.109913,0.0891647,0.507231,0.804087,0.422591,0.81766,0.711367,0.453613,0.94847,0.0304735,0.799909,0.0395221,0.750599,0.373015,0.894948,0.955453,0.25622,0.804463,0.302128,0.254272,0.945141,0.185484,0.0857294,0.250597,0.533887,0.180542,0.265959,0.712146,0.480855,0.246592,0.713986,0.10463,0.246952,0.618638,0.961721,0.563249,0.520178,0.307125,0.542811,0.0675997,0.185167,0.945271,0.531294,0.843509,0.591192,0.181044,0.952913,0.909128,0.0566944,0.0099169,0.146073,0.0545656,0.615135,0.166733,0.646242,0.868955,0.0685865,0.0490808,0.612261,0.110835,0.356654,0.803707,0.976874,0.608297,0.0330434,0.209313,0.0108028,0.608269,0.146214,0.151711,0.21521,0.476354,0.12146,0.813832,0.0641648,0.130309,0.00620711,0.527817,0.372959,0.954751,0.0231327,0.68091,0.181908,0.0376751,0.561293,0.111585,0.565296,0.568085,0.79579,0.706864,0.854997,0.40833,0.0821674,0.244049,0.839778,0.622615,0.226674,0.937444,0.165545,0.46553,0.981946,|0.99354,0.189519,0.961834,0.256332,0.172099,0.471239,0.79605,0.0781254,0.988189,0.0266487,0.825676,0.94157,0.537277,0.693444,0.384888,0.050445,0.73931,0.94995,0.342811,0.853462,0.813801,0.945705,0.479218,0.722187,0.872278,0.77996,0.135692,0.29269,0.938956,0.575342,0.778363,0.457951,0.236987,0.783372,0.707035,0.273788,0.660682,0.982137,0.849721,0.82126,0.573636,0.614771,0.283757,0.702356,0.830738,0.486007,0.757338,0.289518,0.954353,0.50502,0.292203,0.685084,0.230364,0.458672,0.715958,0.107528,0.668911,0.121188,0.980771,0.755182,0.0973898,0.672945,0.879586,0.877557,0.546872,0.896594,0.5097,0.876005,0.401626,0.593606,0.0352188,0.997768,0.356597,0.744799,0.485939,0.440349,0.990931,0.577927,0.325471,0.923194,0.423813,0.493816,0.52337,0.119041,0.192259,0.0687633,0.824366,0.329004,0.823903,0.695165,0.172926,0.430546,0.818241,0.615873,0.798026,0.00310022,0.937442,0.223562,0.11086,0.302367,0.0449643,0.585775,0.232756,0.90457,0.172906,0.527552,0.586942,0.718139,0.205596,0.498007,0.601339,0.640771,0.439479,0.464569,0.847448,0.620222,0.490267,0.375615,0.48935,0.86315,0.772819,0.285764,0.144503,0.152375,0.653262,0.141854,0.543182,0.122493,0.470703,0.713253,0.685114,0.556201,0.30968,0.564163,0.53771,0.840987,0.522872,0.29403,0.185523,0.210723,0.736227,0.799808,0.985949,0.476014,0.306632,0.440367,0.405778,0.544014,0.447594,0.911662,0.665096,0.819202,0.661555,0.371301,0.834071,0.615006,0.476326,0.417472,0.126365,0.596881,0.515374,0.531568,0.470699,0.871719,0.655866,0.669079,0.771497,0.0647399,0.322099,0.0272552,0.647837,0.356757,0.433585,0.424665,0.764345,0.561936,0.995579,0.684912,0.594918,0.189946,0.920337,0.947497,0.592495,0.279912,0.589307,0.548356,0.549553,0.217529,0.635981,0.164444,0.674678,0.253923,0.424216,0.589923,0.122016,0.3994,0.917945,0.990462,0.926396,0.817302,0.242058,0.623833,0.253806,0.696181,0.117191,0.127612,0.509627,0.00318098,0.261741,0.771961,0.480131,0.628367,0.027676,0.897851,0.292741,0.963729,0.0815691,0.230525,0.197237,0.563329,0.238793,0.681359,0.955326,0.89845,0.55793,0.676728,0.534863,0.0130426,0.0432741,0.884292,0.0674906,0.772646,0.497254,0.573369,0.766357,0.427388,0.563713,0.447934,0.220202,0.978033,0.288039,0.998071,0.37285,0.0491357,0.224439,0.584587,0.894672,0.48027,0.727634,0.557986,0.703771,0.572635,0.921771,0.12881,0.205569,0.304895,0.219519,0.968553,0.118823,0.0211762,0.181432,0.3937,0.118532,0.36244,0.496247,0.260555,0.1043,0.215719,0.989608,0.975346,0.540359,0.0788324,0.720993,0.725451,0.52505,0.898085,0.750846,0.233063,0.75185,0.348214,0.306854,0.555286,0.926724,0.944314,0.969669,0.791839,0.545922,0.479166,0.539031,0.251579,0.610473,0.117022,0.646142,0.918245,0.873621,0.621557,0.746067,0.880341,0.691917,0.856647,0.446616,0.281927,0.470969,0.344068,0.754509,0.650284,0.775914,0.0468844,0.973787,0.090895,0.449294,0.932982,0.643365,0.0438422,0.323932,0.0778649,0.729515,0.218091,0.227406,0.746902,0.850286,0.140715,0.902399,0.901134,0.526624,0.97594,0.599632,0.393011,0.922672,0.672867,0.19176,0.311559,0.588706,0.230754,0.986267,0.662829,0.887432,0.225755,0.722269,0.454157,0.684677,0.374543,0.846127,0.672872,0.229288,0.712683,0.218132,0.563008,0.560609,0.630462,0.328363,0.831755,0.35608,0.717222,0.342527,0.117087,0.647454,0.839958,0.394431,0.407266,0.980632,0.348422,0.0288625,0.483614,0.245593,0.185933,0.01487,0.715798,0.61623,0.762828,0.406886,0.118897,0.31152,0.93596,0.778702,0.12158,0.0589633,0.610882,0.500276,0.42362,0.991962,0.667302,0.693654,0.367573,0.481862,0.724882,0.19364,0.430172,0.517778,0.454977,0.528562,0.945032,0.481814,0.573444,0.279056,0.292365,0.220453,0.746189,0.476865,0.485661,0.43694,0.0191172,0.483281,0.801886,0.816838,0.915699,0.425759,0.371392,0.504222,0.689686,0.480093,0.711227,0.154234,0.950912,0.736509,0.394344,0.98812,0.228254,0.459106,0.993695,0.167876,0.247431,0.714874,0.0624449,0.806666,0.42914,0.60288,0.628023,0.384378,0.59607,0.655851,0.923054,0.426368,0.492674,0.629257,0.483897,0.115004,0.842672,0.437828,0.190188,0.876865,0.84345,0.937017,0.140383,0.775607,0.69309,0.166128,0.289549,0.430976,0.891152,0.814903,0.200974,0.954544,0.846028,0.421235,0.182951,0.877508,0.299304,0.12878,0.329724,0.349303,0.868681,0.119668,0.829844,0.884424,0.0524955,0.399417,0.926166,0.194145,0.850949,0.338405,0.607361,0.344919,0.498048,0.21244,0.943882,0.560192,0.399836,0.981277,0.80488,0.279139,0.33692,0.762043,0.344624,0.641013,0.825811,0.439873,0.755607,0.859835,0.351705,0.796488,0.42089,0.852333,0.478446,0.652912,0.757133,0.573868,0.0491441,0.6925,0.344237,0.104629,0.623983,0.327836,0.500283,0.719821,0.959405,0.298344,0.190985,0.298584,0.658571,0.231174,0.0923046,0.450625,0.299534,0.892781,0.398331,0.922225,0.549775,0.481027,0.185621,0.310981,0.492191,0.703279,0.726763,0.251627,0.603226,0.987952,0.758549,0.0780581,0.3577,0.42133,0.34288,0.0299405,0.139889,0.738062,0.505877,0.852934,0.642258,0.702688,0.45545,0.766273,0.638986,0.351144,0.442906,0.727227,0.00644737,0.386804,0.0389253,0.160157,0.346924,0.0264874,0.983673,0.340401,0.0727784,0.331888,0.813529,0.323533,0.0789657,0.567507,0.531062,0.2223,0.344814,0.807657,0.774548,0.929692,0.653688,0.172497,0.0155745,0.0701263,0.655339,0.00397319,0.792153,0.0417416,0.197886,0.342452,0.307324,0.167069,0.169004,0.71164,0.311211,0.521438,0.0233417,0.991724,0.442469,0.409635,0.0934547,0.947489,0.201036,0.372029,0.539789,0.201359,0.2643,0.0449325,0.980088,0.817474,0.229428,0.960296,0.0780216,0.597969,0.482233,0.547559,0.119154,0.490161,0.212466,0.895938,0.18768,0.577032,0.0967744,0.080072,0.654819,0.338476,0.348845,0.997962,0.875728,0.969903,0.244966,0.0352335,0.0676417,0.365273,0.539185,0.682959,0.0506095,0.726891,0.991206,0.0566217,0.643686,0.777401,0.829608,0.00998634,0.591913,0.0941694,0.956218,0.478455,0.204891,0.818411,0.473619,0.645958,0.352434,0.566163,0.139313,0.302211,0.0473941,0.492812,0.525487,0.955792,0.381224,0.363802,0.020702,0.545256,0.0899388,0.746926,0.0636291,0.809097,0.00236917,0.998706,0.0994307,0.516692,0.467391,0.875684,0.00039047,0.676942,0.226555,0.629698,0.1243,0.594068,0.877368,0.598171,0.574358,0.0720092,0.494213,0.523183,0.0666177,0.491684,0.577567,0.29135,0.790282,0.953456,0.74728,0.193681,0.670263,0.188726,0.261091,0.712052,0.938752,0.399057,0.882571,0.809331,0.517646,0.31461,0.0561012,0.57292,0.331422,0.349242,0.274489,0.855411,0.564423,0.409939,0.830063,0.0386968,0.681228,0.0575762,0.663201,0.742679,0.635322,0.056101,0.806338,0.426958,0.443829,0.979818,0.207919,0.00612247,0.509579,0.925194,0.991915,0.807945,0.601137,0.211549,0.127598,0.720246,0.512128,0.75819,0.576638,0.0866604,0.0304503,0.570469,0.590126,0.271582,0.0268185,0.928384,0.891511,0.0955752,0.367461,0.151967,0.776003,0.672635,0.541955,0.679251,0.638838,0.745221,0.427233,0.648561,0.576104,0.557497,0.0810255,0.51264,0.09561,0.523719,0.446721,0.989133,0.476131,0.848901,0.303814,0.488634,0.0584651,0.941423,0.297807,0.594242,0.906654,0.138839,0.652047,0.23622,0.188824,0.806782,0.76765,0.693387,0.410949,0.699696,0.185106,0.909937,0.888758,0.267552,0.356769,0.599554,0.846797,0.154806,0.305044,0.790572,0.104394,0.587058,0.0225502,0.932861,0.851287,0.273287,0.793956,0.0487055,0.513962,0.388303,0.508012,0.821831,0.501613,0.785436,0.479372,0.240623,0.0522156,0.0169454,0.0918015,0.209315,0.86624,0.242196,0.886363,0.133086,0.469076,0.33525,0.0500951,0.534546,0.951587,0.995009,0.392729,0.542331,0.395606,0.00993234,0.223777,0.857336,0.57631,0.245912,0.535152,0.1005,0.845889,0.891222,0.893864,0.821463,0.758111,0.700249,0.500556,0.899006,0.483346,0.469002,0.78488,0.596964,0.468628,0.657286,0.400861,0.721525,0.656685,0.444324,0.0161312,0.679487,0.153659,0.365338,0.656698,0.236545,0.401131,0.532636,0.636937,0.0206721,0.423273,0.690963,0.748974,0.987319,0.704759,0.499537,0.565635,0.143104,0.419772,0.0836472,0.465823,0.72919,0.24072,0.55945,0.553539,0.326776,0.587614,0.432886,0.68895,0.418734,0.661036,0.821169,0.719517,0.0687127,0.613779,0.33636,0.60148,0.90367,0.0265007,0.724279,0.634106,0.976908,0.405922,0.0923488,0.582034,0.824665,0.393757,0.77011,0.187877,0.809499,0.672342,0.101919,0.807943,0.145069,0.203807,0.594205,0.946142,0.252192,0.269533,0.144822,0.988211,0.49166,0.334675,0.194516,0.76718,0.0210065,0.219488,0.725958,0.936278,0.0125208,0.843735,0.632338,0.830024,0.167345,0.192328,0.503041,0.800957,0.720545,0.858879,0.272725,0.997069,0.591611,0.467911,0.41575,0.361703,0.500803,0.882862,0.059541,0.153878,0.940285,0.129069,0.621937,0.625547,0.421014,0.562591,0.230789,0.731658,0.811057,0.511268,0.920279,0.0948736,0.487959,0.829863,0.651241,0.434615,0.40477,0.341608,0.154533,0.62933,0.480707,0.428711,0.643077,0.784116,0.284899,0.779771,0.930745,0.426608,0.363315,0.675182,0.320225,0.86894,0.930009,0.870039,0.0214798,0.203344,0.774619,0.752256,0.88085,0.404245,0.518633,0.0740042,0.601549,0.868818,0.0591189,0.380673,0.170999,0.135475,0.344023,0.493381,0.769136,0.482376,0.69954,0.610053,0.157562,0.0151854,0.707121,0.295529,0.998813,0.850414,0.284224,0.0456929,0.620267,0.15063,0.352666,0.793536,0.0895528,0.110435,0.712638,0.703798,0.0241592,0.592391,0.37636,0.418656,0.627121,0.950847,|0.0411982,0.828452,0.187622,0.560647,0.207179,0.869772,0.139556,0.459674,0.379884,0.0556358,0.472439,0.558133,0.0666222,0.349329,0.601929,0.321917,0.368649,0.944862,0.595452,0.625388,0.0185084,0.225898,0.20338,0.330588,0.105299,0.486062,0.809546,0.844132,0.738817,0.47212,0.994564,0.80323,0.0996166,0.693549,0.248984,0.659183,0.466493,0.975719,0.52194,0.80175,0.984299,0.163309,0.831256,0.693057,0.647393,0.161764,0.573645,0.680573,0.795178,0.702767,0.615091,0.582766,0.744158,0.753452,0.997576,0.237989,0.00153416,0.361605,0.345279,0.947734,0.901037,0.846421,0.544924,0.348997,0.422371,0.200625,0.576889,0.895177,0.663125,0.550996,0.952429,0.645505,0.313198,0.739591,0.622909,0.158675,0.293608,0.95822,0.239434,0.636999,0.595099,0.148993,0.471282,0.399015,0.80551,0.0227849,0.733074,0.722779,0.390205,0.394061,0.648038,0.351501,0.179723,0.216072,0.000855327,0.747917,0.799603,0.119456,0.771958,0.580157,0.657869,0.749959,0.742366,0.142241,0.825439,0.200449,0.164542,0.272513,0.930421,0.647153,0.954068,0.295143,0.311717,0.0179328,0.203813,0.0604464,0.61079,0.278599,0.627196,0.1439,0.492074,0.75996,0.417093,0.188208,0.973086,0.994209,0.326495,0.772583,0.484054,0.159294,0.444356,0.999677,0.689624,0.248569,0.526746,0.778862,0.539115,0.61191,0.369448,0.714357,0.114951,0.979565,0.607112,0.473715,0.164367,0.435673,0.741878,0.0258237,0.374114,0.630531,0.0427833,0.184329,0.901958,0.664481,0.740643,0.203553,0.131543,0.765166,0.386327,0.154576,0.93486,0.666224,0.0626988,0.230859,0.501541,0.247253,0.594311,0.726837,0.538028,0.0303768,0.929114,0.432711,0.438479,0.105676,0.148998,0.953967,0.698951,0.644034,0.650918,0.3645,0.559127,0.0203102,0.320731,0.670691,0.735846,0.406757,0.471411,0.711545,0.558119,0.716291,0.551242,0.68967,0.138944,0.91031,0.816521,0.483194,0.850732,0.832316,0.505083,0.784689,0.0462863,0.133209,0.477039,0.392521,0.428207,0.390492,0.628559,0.869662,0.915316,0.830033,0.105204,0.670671,0.356296,0.239775,0.145259,0.292878,0.806074,0.838248,0.198237,0.946983,0.753568,0.388972,0.274178,0.981375,0.699979,0.702788,0.956939,0.185106,0.620586,0.133141,0.616382,0.578692,0.814447,0.945596,0.89634,0.864188,0.289067,0.618275,0.192232,0.112923,0.873588,0.831371,0.867164,0.385028,0.760746,0.109107,0.536558,0.052687,0.817829,0.631697,0.15889,0.482938,0.583073,0.501021,0.654366,0.0361238,0.385628,0.192828,0.596206,0.594903,0.38935,0.401554,0.514169,0.602091,0.326086,0.176656,0.402637,0.703659,0.958492,0.968816,0.971395,0.233198,0.960159,0.616963,0.884511,0.554923,0.185724,0.849787,0.391962,0.259009,0.651106,0.859259,0.778698,0.292636,0.0948128,0.0569262,0.753208,0.402327,0.840319,0.780609,0.967895,0.845205,0.772852,0.888961,0.2439,0.406358,0.788761,0.998706,0.966608,0.649805,0.581562,0.0517196,0.475747,0.0444368,0.589374,0.942612,0.463531,0.909541,0.599118,0.689365,0.947761,0.0935476,0.431825,0.680664,0.305305,0.916274,0.666432,0.88566,0.460496,0.873625,0.835472,0.69778,0.069972,0.597512,0.976522,0.528703,0.692903,0.16485,0.639975,0.420883,0.870739,0.813552,0.294102,0.187561,0.126136,0.0322382,0.539932,0.00979465,0.44162,0.0529221,0.341712,0.717317,0.501226,0.806881,0.760556,0.107609,0.772082,0.121776,0.600805,0.53665,0.723589,0.587601,0.693811,0.28211,0.484197,0.466634,0.661817,0.582573,0.422195,0.816918,0.0299747,0.528348,0.253044,0.341151,0.508236,0.0388997,0.598516,0.517397,0.298864,0.847094,0.512336,0.586218,0.8416,0.601935,0.616165,0.637625,0.778233,0.981426,0.306529,0.894069,0.155831,0.496094,0.27018,0.905263,0.743371,0.135417,0.864991,0.877126,0.420233,0.461083,0.0301477,0.899175,0.193544,0.302951,0.861304,0.118096,0.454579,0.593288,0.518005,0.582422,0.384881,0.304035,0.215058,0.327867,0.849484,0.914695,0.127946,0.0940035,0.593134,0.593511,0.247349,0.067657,0.409049,0.992243,0.207455,0.798655,0.113627,0.231457,0.326424,0.908928,0.407848,0.482067,0.440617,0.142331,0.2161,0.162935,0.858009,0.611784,0.15528,0.0126687,0.455391,0.383006,0.245958,0.483688,0.157429,0.0162297,0.482675,0.177237,0.924017,0.373165,0.547171,0.523199,0.649252,0.541311,0.869609,0.0815002,0.0447543,0.834633,0.290844,0.699964,0.402291,0.378925,0.778981,0.253285,0.932191,0.261249,0.353035,0.660074,0.0497943,0.886647,0.805916,0.485821,0.54954,0.660926,0.56338,0.822673,0.650743,0.99196,0.265541,0.475377,0.0223605,0.692826,0.996249,0.858357,0.38434,0.0418185,0.915226,0.344944,0.97544,0.584956,0.51672,0.217653,0.926997,0.668353,0.909163,0.296582,0.0984402,0.108483,0.460553,0.732637,0.24063,0.0195187,0.0477654,0.868705,0.662768,0.411935,0.571506,0.469048,0.690319,0.882083,0.795141,0.00977004,0.623934,0.0357031,0.0380955,0.428188,0.991943,0.125645,0.576999,0.015203,0.664254,0.125705,0.169512,0.80456,0.634794,0.934194,0.957176,0.998312,0.785285,0.0874386,0.890597,0.338475,0.386307,0.797273,0.886227,0.251758,0.0265399,0.0409324,0.268328,0.0076803,0.905266,0.518637,0.516996,0.534369,0.153265,0.993482,0.692742,0.577774,0.150846,0.791368,0.4077,0.750919,0.844833,0.741399,0.763765,0.373532,0.734213,0.112948,0.191816,0.134905,0.137692,0.720195,0.0361618,0.537429,0.648638,0.978453,0.539821,0.0867203,0.826479,0.599416,0.977976,0.967233,0.884983,0.656368,0.781944,0.030726,0.88446,0.0727066,0.261005,0.6264,0.697709,0.31372,0.806237,0.847072,0.0384778,0.963181,0.32408,0.526236,0.0390948,0.0810788,0.661565,0.522986,0.422148,0.808555,0.536545,0.774882,0.876663,0.762277,0.033917,0.583467,0.278426,0.325637,0.351607,0.888498,0.47017,0.959338,0.698059,0.910788,0.546342,0.817642,0.268467,0.996568,0.399758,0.0157982,0.0745447,0.186191,0.454143,0.887981,0.891343,0.208663,0.506375,0.800425,0.518605,0.549367,0.632684,0.370063,0.452223,0.802419,0.607925,0.466422,0.858452,0.0570582,0.168996,0.35598,0.461714,0.738217,0.522021,0.867403,0.399668,0.77249,0.251647,0.0759759,0.00685871,0.249096,0.90882,0.984108,0.276674,0.341123,0.698969,0.752029,0.474239,0.0234402,0.0994056,0.526754,0.444522,0.937482,0.808686,0.94146,0.903027,0.672765,0.225588,0.993578,0.0975016,0.0835195,0.475949,0.352035,0.660249,0.954042,0.0563188,0.0237627,0.60942,0.803811,0.197505,0.207983,0.914761,0.118375,0.948589,0.400637,0.152374,0.901995,0.329947,0.486926,0.704451,0.309424,0.282799,0.180729,0.553946,0.759005,0.701371,0.891714,0.899874,0.0630987,0.905327,0.666911,0.211294,0.0768942,0.312192,0.569632,0.560513,0.140873,0.183898,0.0331152,0.711615,0.590225,0.244635,0.550878,0.738862,0.923054,0.426428,0.971682,0.339969,0.00956655,0.998008,0.0838468,0.236254,0.494384,0.800993,0.389125,0.695882,0.682777,0.518316,0.755833,0.665801,0.103954,0.779607,0.825735,0.479979,0.739365,0.489438,0.986942,0.468401,0.325864,0.945719,0.44862,0.017922,0.264538,0.535196,0.602361,0.294213,0.0350718,0.599352,0.415577,0.713527,0.866167,0.114954,0.773665,0.815198,0.636127,0.800669,0.66107,0.469297,0.0916968,0.267148,0.436301,0.272164,0.0864889,0.894724,0.539365,0.166381,0.931238,0.401166,0.478618,0.516254,0.804103,0.337684,0.239235,0.0906376,0.601161,0.153755,0.384121,0.829879,0.319592,0.758783,0.0313494,0.185969,0.815983,0.872068,0.384327,0.589172,0.583114,0.901604,0.544683,0.298954,0.190857,0.0621747,0.274444,0.717203,0.0152016,0.126848,0.214305,0.681099,0.0741482,0.60133,0.260037,0.716314,0.750305,0.623014,0.241383,0.243263,0.569661,0.063677,0.491004,0.913965,0.976411,0.387854,0.0151463,0.07421,0.742256,0.00677419,0.909729,0.898983,0.0552796,0.342492,0.618197,0.696662,0.384528,0.610698,0.965002,0.439457,0.576657,0.793013,0.469809,0.451502,0.233771,0.635452,0.676758,0.875012,0.313661,0.00921893,0.787545,0.899323,0.146822,0.392681,0.956861,0.886411,0.284453,0.604227,0.858249,0.211716,0.0446932,0.376932,0.0811362,0.677806,0.167919,0.0620441,0.25419,0.0634857,0.195444,0.123336,0.427037,0.928905,0.69242,0.55588,0.924558,0.672033,0.753669,0.755796,0.240837,0.105951,0.126454,0.909884,0.803465,0.819024,0.142196,0.349512,0.878429,0.276755,0.62844,0.313766,0.578997,0.088655,0.168115,0.37077,0.365174,0.268778,0.478878,0.999423,0.464571,0.966316,0.746149,0.116659,0.794697,0.376273,0.232678,0.268459,0.780087,0.494902,0.77677,0.796505,0.877607,0.308951,0.0706646,0.00892162,0.0477252,0.0545059,0.133908,0.336415,0.436223,0.665277,0.87101,0.0746503,0.0156472,0.231412,0.876956,0.544908,0.301487,0.310705,0.65248,0.87427,0.462899,0.682039,0.810233,0.0635113,0.919268,0.0289512,0.282394,0.858807,0.850716,0.618396,0.6052,0.273064,0.333069,0.850517,0.823206,0.674858,0.876223,0.0895205,0.66458,0.778578,0.226823,0.945735,0.265309,0.0080958,0.389411,0.0252904,0.649816,0.791341,0.75371,0.352444,0.644637,0.632994,0.581968,0.24121,0.392496,0.579522,0.11411,0.260787,0.778715,0.453759,0.450589,0.493016,0.855797,0.651965,0.00201803,0.931705,0.326,0.768613,0.393287,0.189079,0.466653,0.369054,0.721435,0.988749,0.904189,0.144351,0.268463,0.142053,0.761709,0.628768,0.526681,0.341547,0.433147,0.643719,0.201894,0.0802111,0.360796,0.476566,0.96353,0.47282,0.0529377,0.287036,0.728701,0.209748,0.912144,0.153899,0.173316,0.219876,0.310366,0.51899,0.424201,0.896431,0.362206,0.860484,0.681336,0.600837,0.441246,0.436927,0.478048,0.910411,0.199364,0.976101,0.567788,0.274076,0.775604,0.446399,0.850661,0.801423,0.28092,0.27339,0.24918,|0.729543,0.0672885,0.170101,0.688752,0.225212,0.445863,0.497954,0.329626,0.0462398,0.880884,0.245102,0.576076,0.322,0.539755,0.446815,0.832431,0.299519,0.948332,0.547185,0.620747,0.169478,0.209521,0.863678,0.794804,0.145981,0.225295,0.495647,0.503451,0.540151,0.441139,0.890791,0.0360586,0.380652,0.242999,0.446547,0.0530564,0.100037,0.509752,0.164403,0.727091,0.311045,0.994938,0.440579,0.744445,0.0940185,0.463839,0.323444,0.622984,0.137995,0.93913,0.0207761,0.866861,0.516616,0.929,0.0785774,0.348909,0.927393,0.324515,0.672056,0.938934,0.921361,0.895395,0.164882,0.381904,0.203386,0.787011,0.427356,0.516325,0.334217,0.327429,0.521925,0.988501,0.0171893,0.614385,0.464228,0.0354181,0.302737,0.784092,0.247547,0.52252,0.504462,0.950841,0.276603,0.0493521,0.968693,0.596061,0.871096,0.254064,0.513323,0.114898,0.980796,0.775814,0.747131,0.802523,0.223658,0.544909,0.161645,0.513663,0.283752,0.538053,0.255814,0.351476,0.3181,0.850715,0.83134,0.861577,0.942205,0.614392,0.538394,0.195365,0.695033,0.893135,0.05688,0.448522,0.439834,0.377582,0.486893,0.758392,0.680201,0.423933,0.356346,0.332036,0.346608,0.867341,0.884993,0.21774,0.765017,0.125899,0.517465,0.603971,0.567384,0.224199,0.736933,0.608034,0.782122,0.923541,0.897264,0.0040195,0.910401,0.791039,0.167517,0.852625,0.511816,0.882789,0.683192,0.74668,0.295782,0.47228,0.565689,0.100074,0.213502,0.769,0.666952,0.634322,0.854924,0.583932,0.621836,0.37049,0.369561,0.349219,0.0808134,0.561067,0.154203,0.225936,0.191474,0.028767,0.509467,0.539036,0.282535,0.591049,0.512852,0.154009,0.0714306,0.627129,0.931287,0.901669,0.865291,0.631141,0.800667,0.575946,0.82477,0.153474,0.373905,0.729853,0.047947,0.408639,0.443682,0.256278,0.869296,0.4195,0.00934541,0.636119,0.783646,0.121946,0.070759,0.8025,0.593073,0.711116,0.928301,0.015686,0.919609,0.664118,0.586634,0.208936,0.110685,0.0605012,0.559851,0.847308,0.951674,0.0198453,0.333373,0.891895,0.947558,0.0842666,0.417589,0.962827,0.871724,0.106517,0.0161908,0.815987,0.173227,0.609378,0.189396,0.763745,0.579222,0.846991,0.885089,0.418097,0.442625,0.194693,0.514287,0.890472,0.487762,0.23361,0.429689,0.474777,0.986142,0.483048,0.235053,0.301679,0.187953,0.0925656,0.954073,0.161715,0.178068,0.0282788,0.496903,0.451755,0.549309,0.966999,0.678182,0.090003,0.10605,0.962024,0.458596,0.382833,0.87707,0.51321,0.392448,0.0984598,0.374727,0.950418,0.25592,0.687262,0.744817,0.57015,0.545608,0.733385,0.161586,0.420061,0.0552522,0.542947,0.217618,0.764013,0.63696,0.807293,0.282325,0.208441,0.467105,0.693815,0.471344,0.776871,0.699946,0.0987327,0.284876,0.320572,0.619247,0.23448,0.165482,0.397335,0.226332,0.584586,0.177823,0.109932,0.139811,0.2681,0.110153,0.516443,0.442073,0.741494,0.671238,0.387812,0.322115,0.187373,0.193957,0.935094,0.317625,0.92846,0.817075,0.657547,0.0606604,0.884905,0.876394,0.439077,0.682391,0.404606,0.0816426,0.620197,0.719966,0.381637,0.829021,0.893537,0.968252,0.836833,0.357911,0.339962,0.487417,0.187276,0.448028,0.330877,0.803389,0.322256,0.61859,0.569359,0.895687,0.0246415,0.651637,0.346994,0.819275,0.950169,0.200061,0.593371,0.334504,0.972215,0.874441,0.900692,0.783157,0.534797,0.0564752,0.905504,0.0273901,0.251711,0.303763,0.32885,0.149215,0.637718,0.629694,0.833305,0.828654,0.921853,0.333855,0.943069,0.821272,0.814432,0.496639,0.248524,0.233843,0.47576,0.145385,0.778509,0.115377,0.631101,0.910676,0.108198,0.142049,0.141094,0.663608,0.0477167,0.494823,0.4385,0.996939,0.0303429,0.0566246,0.472479,0.0615499,0.964102,0.271573,0.731385,0.613608,0.0336919,0.712889,0.330933,0.322496,0.0153838,0.268361,0.649431,0.90164,0.953319,0.217143,0.115548,0.245995,0.195325,0.751429,0.363531,0.593268,0.170884,0.462781,0.833555,0.0769593,0.5001,0.698946,0.900535,0.291023,0.982606,0.653449,0.193202,0.894957,0.489096,0.837486,0.985491,0.102308,0.125946,0.781996,0.629648,0.148141,0.280209,0.494655,0.0159045,0.347306,0.578254,0.0991624,0.733505,0.334393,0.185064,0.425885,0.765748,0.0340726,0.913941,0.924351,0.790954,0.623109,0.468552,0.941253,0.777036,0.461143,0.207385,0.774364,0.782022,0.653943,0.554855,0.177669,0.542122,0.963269,0.551932,0.742717,0.477286,0.224973,0.15067,0.882815,0.464269,0.0390111,0.903055,0.685412,0.285866,0.294244,0.863963,0.845404,0.923576,0.339634,0.0816492,0.0220338,0.337771,0.456608,0.503141,0.223696,0.893794,0.576039,0.280971,0.725554,0.368984,0.550382,0.734279,0.63308,0.273337,0.927257,0.986505,0.272996,0.777879,0.475928,0.0197125,0.357511,0.424446,0.489253,0.090142,0.517923,0.78676,0.874828,0.872526,0.753727,0.244666,0.869476,0.404392,0.60744,0.823656,0.565359,0.251565,0.171063,0.198541,0.427201,0.0881355,0.37961,0.563545,0.485708,0.341408,0.963243,0.752814,0.641135,0.469229,0.797499,0.31487,0.739463,0.765773,0.430848,0.976921,0.995355,0.575185,0.470404,0.788534,0.559737,0.482921,0.322853,0.679719,0.547213,0.117434,0.054373,0.719814,0.0981187,0.363847,0.434385,0.976614,0.92808,0.985282,0.879326,0.114511,0.632064,0.707871,0.373538,0.468674,0.234246,0.42367,0.92595,0.56251,0.133892,0.599537,0.293876,0.941887,0.163543,0.121248,0.616318,0.281332,0.23632,0.555145,0.566361,0.0127562,0.193263,0.191861,0.248938,0.572025,0.0400861,0.022545,0.0427127,0.614464,0.970316,0.350545,0.488814,0.853767,0.702216,0.32924,0.760041,0.62106,0.905849,0.563141,0.516956,0.9572,0.355186,0.893227,0.65607,0.932774,0.136062,0.378794,0.253946,0.193855,0.0123961,0.244416,0.746234,0.091228,0.448176,0.383611,0.493574,0.646575,0.0750737,0.82764,0.530957,0.932277,0.165422,0.595262,0.834278,0.363812,0.56525,0.108933,0.166258,0.455432,0.463684,0.660899,0.371713,0.953687,0.541032,0.213298,0.162446,0.684062,0.319106,0.558703,0.86538,0.245642,0.30421,0.369712,0.784372,0.877409,0.346989,0.092743,0.570386,0.889898,0.576264,0.291988,0.342752,0.00346279,0.789346,0.0768117,0.997873,0.202383,0.11116,0.989127,0.684593,0.765113,0.257891,0.400467,0.893897,0.112913,0.0173587,0.190596,0.289677,0.0840964,0.944548,0.883012,0.848528,0.782056,0.46297,0.280051,0.619932,0.304673,0.352556,0.169266,0.058022,0.861216,0.255708,0.314709,0.356516,0.987862,0.724647,0.419175,0.282793,0.674229,0.444375,0.979999,0.988358,0.238248,0.576626,0.470285,0.872626,0.785097,0.416092,0.747982,0.159933,0.575212,0.00982904,0.739214,0.279134,0.957998,0.363837,0.545523,0.796932,0.474919,0.945915,0.0155283,0.322297,0.191009,0.971107,0.89325,0.0571001,0.423475,0.495861,0.271628,0.884146,0.217334,0.152166,0.0653954,0.501275,0.791441,0.391988,0.891181,0.0369143,0.187189,0.879369,0.308952,0.39436,0.78778,0.115395,0.161604,0.427406,0.0141827,0.406744,0.723329,0.222865,0.941446,0.925301,0.132682,0.374556,0.229896,0.461857,0.124962,0.782922,0.33393,0.334008,0.0296091,0.220439,0.980202,0.122318,0.34027,0.811352,0.688356,0.675185,0.170498,0.535728,0.276276,0.0305518,0.0552951,0.140501,0.6802,0.342243,0.662479,0.220874,0.966687,0.344357,0.867823,0.0581757,0.620388,0.696497,0.641234,0.250738,0.00729841,0.330258,0.514528,0.631864,0.770243,0.559687,0.153753,0.618147,0.459248,0.16009,0.574694,0.274937,0.680006,0.155507,0.804733,0.0562965,0.734439,0.540651,0.382087,0.289303,0.985218,0.0776664,0.72442,0.685037,0.704092,0.931538,0.0904396,0.560436,0.739528,0.552455,0.770792,0.199766,0.625281,0.708732,0.15599,0.946397,0.833132,0.100746,0.836469,0.0775117,0.916622,0.553985,0.552658,0.851547,0.65746,0.921419,0.353171,0.797086,0.95977,0.380976,0.0497479,0.0352402,0.923376,0.153335,0.901628,0.167703,0.234432,0.848619,0.776137,0.978878,0.797718,0.667404,0.913006,0.868143,0.033122,0.987978,0.581033,0.00699663,0.233546,0.642022,0.548257,0.18927,0.862914,0.0574814,0.485902,0.0127077,0.877255,0.613662,0.627591,0.0303476,0.566742,0.860743,0.552647,0.748776,0.610558,0.944178,0.495424,0.311,0.512693,0.490989,0.180163,0.515142,0.565325,0.0797123,0.551129,0.42109,0.460148,0.227151,0.927085,0.427368,0.787252,0.820899,0.111994,0.624422,0.971587,0.415106,0.366924,0.444731,0.760242,0.0652245,0.367484,0.51303,0.761303,0.335971,0.743467,0.958914,0.889557,0.0792695,0.585925,0.480548,0.0405488,0.685586,0.0396481,0.156027,0.307898,0.103735,0.881303,0.10657,0.272633,0.922239,0.466694,0.0646971,0.56159,0.319698,0.0858201,0.810563,0.377297,0.238971,0.215078,0.898833,0.283526,0.520374,0.0396371,0.945821,0.665621,0.886482,0.180119,0.979778,0.172951,0.311083,0.162624,0.562812,0.512966,0.204449,0.479066,0.625332,0.758384,0.911616,0.710092,0.530043,0.33092,0.299881,0.0742121,0.50993,0.688979,0.490348,0.195029,0.886362,0.119656,0.934906,0.255502,0.883687,0.343163,0.658709,0.68212,0.967816,0.871921,0.944585,0.463431,0.290703,0.215432,0.694486,0.534856,0.347282,0.687607,0.571278,0.34335,0.772867,0.621628,0.687768,0.798988,0.679318,0.953812,0.873785,0.260532,0.508423,0.920567,0.395926,0.662032,0.939236,0.592373,0.13257,0.00967926,0.26856,0.322275,0.867019,0.0147585,0.0633799,0.0553233,0.133076,0.89805,0.651493,0.641342,0.72198,0.670671,0.834527,0.262513,0.0907704,0.750522,0.982306,0.973014,0.627308,0.374844,0.722547,0.488458,0.437861,0.0936133,0.36918,0.315278,0.520345,0.291643,0.117058,0.442918,0.571535,0.28041,0.980648,0.28277,0.188236,0.0123483,0.665234,0.160141,|0.413342,0.677987,0.537119,0.552329,0.639735,0.430812,0.6469,0.28017,0.48533,0.428647,0.0987124,0.947551,0.0056932,0.390139,0.589869,0.272595,0.755347,0.552516,0.3201,0.759752,0.605879,0.433797,0.135094,0.0356135,0.155848,0.825038,0.351089,0.404974,0.890574,0.612743,0.642473,0.412325,0.896151,0.950443,0.984281,0.0677003,0.761144,0.617885,0.252394,0.392408,0.544959,0.76851,0.125938,0.382772,0.888081,0.44778,0.392712,0.178646,0.870656,0.695193,0.699562,0.0960774,0.36739,0.0650607,0.600925,0.219594,0.135642,0.376129,0.573138,0.573621,0.525172,0.828687,0.766451,0.419417,0.234672,0.161701,0.877669,0.958596,0.976259,0.289285,0.144386,0.553286,0.781703,0.636306,0.851536,0.552481,0.852467,0.048507,0.224254,0.56744,0.53073,0.944629,0.360158,0.439273,0.536553,0.0841097,0.0290303,0.822764,0.258971,0.229921,0.09779,0.491152,0.021335,0.595766,0.183473,0.463656,0.661967,0.40861,0.428181,0.481193,0.549106,0.726248,0.276456,0.618657,0.40386,0.024755,0.125667,0.126875,0.730247,0.0527321,0.346481,0.993886,0.0920045,0.323283,0.706273,0.773508,0.942377,0.624279,0.964841,0.803316,0.140262,0.9875,0.690962,0.836815,0.58714,0.435183,0.610454,0.607451,0.674509,0.200878,0.75127,0.689557,0.490107,0.259929,0.169716,0.957587,0.335111,0.418499,0.710129,0.809527,0.666761,0.938552,0.653715,0.151078,0.292622,0.563302,0.889791,0.493172,0.0473735,0.480107,0.153257,0.404513,0.58701,0.334306,0.802484,0.144116,0.469343,0.791444,0.813899,0.471695,0.974486,0.197334,0.276933,0.857644,0.551947,0.443577,0.031028,0.961178,0.098236,0.267834,0.128587,0.620202,0.495539,0.915859,0.670682,0.23381,0.757381,0.318373,0.16258,0.644708,0.677359,0.556562,0.998113,0.718122,0.51794,0.779402,0.954989,0.460056,0.462131,0.285968,0.388811,0.357401,0.548143,0.489686,0.660024,0.483665,0.278055,0.92008,0.180091,0.428511,0.0481182,0.16933,0.990515,0.694648,0.681016,0.899827,0.674034,0.510428,0.544494,0.451895,0.501512,0.30039,0.060389,0.909812,0.987941,0.502232,0.577307,0.456283,0.216054,0.162612,0.0217957,0.141669,0.409752,0.0838848,0.22807,0.945691,0.908934,0.28211,0.129493,0.727399,0.324617,0.81215,0.406338,0.6534,0.892419,0.030818,0.925966,0.863155,0.375906,0.135696,0.819704,0.371767,0.520475,0.595843,0.443373,0.621531,0.868361,0.392847,0.818541,0.0184304,0.466245,0.420159,0.853979,0.607485,0.158122,0.72325,0.189266,0.0393651,0.840319,0.601766,0.139004,0.780152,0.817342,0.845828,0.756494,0.996137,0.431924,0.148377,0.435401,0.864559,0.0450558,0.955651,0.056667,0.736897,0.333653,0.730754,0.267163,0.58022,0.240923,0.522937,0.605631,0.16733,0.241346,0.583787,0.720822,0.102571,0.641706,0.43014,0.935962,0.730149,0.697362,0.965955,0.875316,0.70037,0.246044,0.488496,0.206572,0.955047,0.157173,0.97266,0.736023,0.635746,0.131709,0.126162,0.543761,0.00684935,0.940579,0.396168,0.522561,0.190259,0.743648,0.333341,0.313071,0.351174,0.160363,0.410017,0.0357057,0.646186,0.186472,0.417566,0.230724,0.0668145,0.771788,0.316985,0.556395,0.863768,0.0456266,0.61806,0.0145919,0.274805,0.257208,0.351561,0.886035,0.719764,0.140261,0.926966,0.754443,0.318435,0.304411,0.870739,0.473202,0.505298,0.284588,0.914175,0.225574,0.264319,0.0701715,0.817994,0.0657427,0.0968566,0.365113,0.911379,0.407813,0.155966,0.295171,0.314989,0.915143,0.899145,0.443583,0.0924788,0.94095,0.383176,0.490524,0.948347,0.235315,0.516621,0.571102,0.0791872,0.765368,0.642706,0.8137,0.614482,0.139692,0.0644851,0.408233,0.878284,0.237145,0.191259,0.214356,0.178222,0.370083,0.132692,0.633565,0.559918,0.535684,0.363357,0.759855,0.3356,0.53069,0.368125,0.462855,0.250708,0.849662,0.804492,0.671376,0.625286,0.179676,0.891053,0.140296,0.0831144,0.591863,0.639574,0.153997,0.38951,0.794031,0.785625,0.474018,0.647408,0.0408117,0.34466,0.0154381,0.737375,0.837289,0.783336,0.996788,0.87865,0.564388,0.205339,0.254946,0.507575,0.149646,0.28536,0.10726,0.642641,0.663793,0.155997,0.432313,0.678434,0.714456,0.700087,0.233386,0.400113,0.990574,0.682608,0.819722,0.743349,0.190133,0.161704,0.893621,0.345045,0.427234,0.960189,0.490297,0.274748,0.276735,0.0394566,0.269664,0.853775,0.794127,0.245053,0.827547,0.259466,0.172503,0.90136,0.620303,0.250285,0.377431,0.658696,0.200078,0.263191,0.442719,0.413778,0.164055,0.25209,0.881782,0.971807,0.555118,0.613671,0.483553,0.904536,0.498475,0.49598,0.030748,0.866787,0.821151,0.252493,0.750083,0.314889,0.846078,0.586738,0.076637,0.644755,0.625506,0.0929375,0.861707,0.135536,0.996503,0.866457,0.97315,0.826886,0.199526,0.427171,0.326607,0.399143,0.214941,0.411388,0.668797,0.0603765,0.266528,0.268066,0.668196,0.81582,0.783888,0.199039,0.121401,0.919274,0.931678,0.600846,0.564522,0.39274,0.934505,0.616117,0.161487,0.519126,0.117656,0.000493824,0.168066,0.284196,0.967906,0.480918,0.483155,0.859495,0.554105,0.635219,0.109837,0.662166,0.660518,0.156264,0.681123,0.692842,0.0054028,0.362782,0.185699,0.8047,0.935612,0.402398,0.314793,0.921114,0.00773472,0.0991656,0.852537,0.503593,0.759968,0.566603,0.697909,0.977925,0.904033,0.666764,0.231842,0.762965,0.267942,0.38809,0.8786,0.550163,0.60392,0.768895,0.904643,0.428083,0.908282,0.893053,0.863534,0.787902,0.42667,0.688258,0.329351,0.156174,0.866963,0.283332,0.0325769,0.330505,0.336816,0.13803,0.781831,0.212986,0.171108,0.762626,0.279413,0.722133,0.496124,0.534988,0.781976,0.787398,0.391669,0.535788,0.840007,0.473007,0.881051,0.0496643,0.052694,0.896999,0.0139506,0.11262,0.212451,0.355447,0.862689,0.394109,0.23658,0.540598,0.0532202,0.688975,0.356493,0.605369,0.272999,0.699334,0.156209,0.337609,0.206057,0.288178,0.954911,0.0147285,0.375852,0.10621,0.659666,0.336641,0.405531,0.646545,0.896883,0.900813,0.684267,0.937155,0.754285,0.100765,0.947712,0.69757,0.754484,0.464173,0.474258,0.638511,0.239389,0.313025,0.60901,0.84323,0.612616,0.393702,0.305229,0.433077,0.144563,0.751293,0.421543,0.902827,0.821267,0.564688,0.458984,0.726009,0.524961,0.827563,0.0866913,0.601994,0.500416,0.857039,0.835835,0.78542,0.900928,0.278612,0.571255,0.483688,0.81431,0.69894,0.862003,0.642829,0.958446,0.0213734,0.688144,0.346102,0.631572,0.556374,0.762109,0.739482,0.285994,0.194814,0.973752,0.677225,0.867168,0.221145,0.821425,0.6318,0.639007,0.977545,0.973711,0.397395,0.206576,0.373429,0.371726,0.966992,0.166425,0.244924,0.418391,0.61942,0.870474,0.559416,0.866329,0.809318,0.746626,0.068081,0.228678,0.867211,0.685294,0.613634,5.88894e-05,0.386917,0.209941,0.69964,0.939386,0.869238,0.347832,0.921201,0.255445,0.569133,0.589919,0.854247,0.817943,0.870518,0.281493,0.318186,0.719729,0.77614,0.552855,0.968252,0.873477,0.580853,0.388411,0.782679,0.270136,0.744036,0.603075,0.385403,0.559411,0.679798,0.73963,0.27456,0.977298,0.475962,0.551911,0.727166,0.323068,0.718448,0.857474,0.645922,0.0846531,0.128304,0.992356,0.409556,0.163147,0.158362,0.560187,0.809129,0.703133,0.391132,0.487252,0.608229,0.152515,0.792603,0.921736,0.996112,0.167359,0.412458,0.973868,0.371266,0.33962,0.105606,0.366593,0.590579,0.509864,0.200748,0.97612,0.681523,0.668286,0.26708,0.901298,0.521897,0.79577,0.391486,0.790949,0.887532,0.255807,0.158848,0.602475,0.960101,0.413839,0.837156,0.239518,0.662792,0.429923,0.183555,0.967005,0.187627,0.854505,0.939921,0.645696,0.594642,0.438015,0.741008,0.494534,0.950854,0.668464,0.557411,0.154923,0.624991,0.455834,0.846749,0.968476,0.294385,0.255607,0.298329,0.906526,0.179831,0.491667,0.18283,0.503804,0.993309,0.0677305,0.787953,0.0211791,0.789916,0.883649,0.330421,0.952317,0.903169,0.542313,0.822161,0.395837,0.521137,0.578863,0.341899,0.438076,0.37092,0.000930011,0.253091,0.451528,0.430362,0.828676,0.786594,0.644845,0.463323,0.0728275,0.056078,0.154195,0.62232,0.0382935,0.207884,0.433403,0.779793,0.993021,0.729871,0.25699,0.748099,0.608832,0.713063,0.0549124,0.932959,0.489489,0.706642,0.516537,0.176253,0.463586,0.774423,0.0292582,0.603137,0.443687,0.654525,0.714548,0.210619,0.20581,0.594559,0.614564,0.877229,0.759374,0.430208,0.697569,0.9168,0.364825,0.103901,0.201106,0.42771,0.111827,0.775035,0.553749,0.822875,0.275841,0.763315,0.833599,0.125144,0.437752,0.848358,0.39944,0.24271,0.359833,0.186489,0.137227,0.978699,0.70524,0.503766,0.167491,0.852663,0.818689,0.632291,0.082432,0.244537,0.405984,0.118256,0.847564,0.320894,0.203258,0.981449,0.806106,0.344395,0.204913,0.43441,0.481453,0.14422,0.841661,0.0553461,0.95855,0.560417,0.305191,0.567547,0.364622,0.310265,0.11367,0.203163,0.312791,0.714205,0.730895,0.162095,0.0945666,0.992357,0.343772,0.787644,0.713211,0.186173,0.394958,0.924207,0.611724,0.303588,0.260196,0.132204,0.713283,0.937639,0.248281,0.330269,0.764891,0.789772,0.508609,0.387647,0.834278,0.116452,0.235475,0.431586,0.36107,0.365436,0.685243,0.976817,0.887299,0.504158,0.55259,0.491222,0.999636,0.604223,0.856492,0.658324,0.640036,0.58327,0.640251,0.132712,0.413096,0.772552,0.0548234,0.205659,0.994762,0.735788,0.150846,0.736479,0.26031,0.463859,0.637038,0.238037,0.858807,0.189317,0.649667,0.565427,0.0194373,0.73277,0.958845,0.469426,0.78868,0.21385,0.47946,0.811193,0.669101,0.982518,0.220003,0.212138,0.463304,0.0662526,0.775541,0.524754,0.0367232,0.539757,0.504127,0.14425,|0.756371,0.524296,0.801405,0.974153,0.0483425,0.98874,0.746624,0.0583323,0.205243,0.649123,0.617052,0.677873,0.401116,0.811199,0.868119,0.516935,0.338513,0.555596,0.635255,0.707683,0.317755,0.167303,0.811822,0.914412,0.233509,0.644628,0.177806,0.790727,0.463889,0.854407,0.123999,0.870229,0.940915,0.678617,0.66779,0.117438,0.933575,0.0541914,0.244862,0.988444,0.466179,0.933346,0.867297,0.472597,0.547692,0.493899,0.372219,0.930218,0.337893,0.805575,0.733912,0.785757,0.735522,0.495731,0.324704,0.990701,0.531145,0.0616219,0.628017,0.452066,0.0266708,0.636975,0.760526,0.500837,0.424749,0.11335,0.274779,0.651409,0.115606,0.731799,0.140005,0.049432,0.23339,0.736047,0.196149,0.12006,0.180956,0.82997,0.71725,0.284564,0.872409,0.957549,0.390384,0.241277,0.857046,0.15457,0.165006,0.909863,0.953432,0.595528,0.123848,0.211168,0.574186,0.314425,0.725936,0.242359,0.426158,0.189651,0.0532869,0.272907,0.158342,0.305477,0.0249099,0.230856,0.232502,0.753486,0.776257,0.0900005,0.646097,0.397948,0.711632,0.934604,0.238238,0.643917,0.329331,0.94844,0.43077,0.998233,0.834521,0.502822,0.748078,0.498688,0.811578,0.892039,0.229906,0.577112,0.00188094,0.0464191,0.563417,0.873154,0.601786,0.215627,0.404302,0.223689,0.0609462,0.555333,0.990268,0.45793,0.647058,0.325749,0.938441,0.472299,0.847915,0.28992,0.771762,0.998573,0.914391,0.0756393,0.519622,0.541472,0.621905,0.199401,0.0418299,0.44259,0.0731834,0.219457,0.0141691,0.651223,0.110425,0.331092,0.0895011,0.628832,0.817945,0.862313,0.690613,0.689251,0.639377,0.420403,0.644901,0.3915,0.684858,0.463398,0.82658,0.654604,0.883819,0.353212,0.510278,0.0320384,0.0852147,0.890862,0.955174,0.0750437,0.827209,0.467967,0.818412,0.176684,0.0967737,0.233555,0.0050419,0.423177,0.982293,0.314826,0.326576,0.756622,0.713798,0.559285,0.502681,0.751466,0.813744,0.997416,0.846562,0.242765,0.479036,0.97685,0.264739,0.424294,0.795182,0.617591,0.890742,0.791779,0.157687,0.0403936,0.500736,0.754733,0.973324,0.0113869,0.784809,0.788149,0.486825,0.0340202,0.579528,0.790491,0.5903,0.980462,0.825939,0.0452434,0.597069,0.0523807,0.483089,0.568762,0.778617,0.936232,0.813619,0.984654,0.46855,0.484201,0.989843,0.0391427,0.489445,0.38988,0.716099,0.753469,0.395542,0.675816,0.453773,0.162552,0.579705,0.87959,0.930802,0.703376,0.733481,0.57274,0.786058,0.468293,0.692162,0.575261,0.627581,0.642549,0.975462,0.0564072,0.300896,0.078739,0.294769,0.45514,0.844047,0.556021,0.322843,0.947025,0.563546,0.818331,0.290994,0.451444,0.0522824,0.901652,0.197024,0.780922,0.788247,0.431742,0.657593,0.954761,0.16236,0.292627,0.783372,0.984212,0.0698399,0.525226,0.0848547,0.0443537,0.0765427,0.701644,0.295627,0.54033,0.85355,0.205809,0.678822,0.30721,0.0168079,0.925904,0.660482,0.50217,0.35209,0.923678,0.654541,0.0662088,0.516302,0.207455,0.607283,0.485804,0.637214,0.0440977,0.235625,0.59098,0.219505,0.257209,0.0902254,0.260203,0.84663,0.224636,0.12532,0.0710982,0.328418,0.61444,0.509469,0.673541,0.919858,0.882486,0.677882,0.964947,0.47326,0.503723,0.196624,0.0128096,0.602224,0.71758,0.418152,0.184479,0.562673,0.555111,0.735226,0.526487,0.86985,0.712484,0.248132,0.634269,0.890369,0.241646,0.605292,0.861569,0.92055,0.902828,0.579987,0.944885,0.397417,0.595338,0.302444,0.34777,0.447806,0.585939,0.472334,0.726873,0.304546,0.913072,0.549664,0.385306,0.129312,0.213561,0.748056,0.152187,0.264498,0.396584,0.133644,0.972541,0.475367,0.187324,0.588875,0.0972078,0.167298,0.573042,0.716302,0.831245,0.724057,0.179411,0.886125,0.253263,0.765072,0.920771,0.478883,0.355732,0.719374,0.51458,0.594774,0.30149,0.104051,0.250718,0.18018,0.43014,0.809767,0.749103,0.779993,0.627459,0.771974,0.0703142,0.53475,0.845327,0.0516378,0.332508,0.961098,0.678174,0.874287,0.429626,0.445929,0.574971,0.246448,0.789283,0.204349,0.0272043,0.864515,0.346323,0.70799,0.655611,0.638298,0.820812,0.83221,0.78543,0.69959,0.48377,0.0271347,0.864158,0.398081,0.433646,0.0189022,0.269235,0.428006,0.719992,0.740867,0.670442,0.507915,0.0357931,0.735603,0.0659789,0.466843,0.357952,0.505705,0.676685,0.471109,0.704594,0.36979,0.0586553,0.432833,0.0614551,0.594673,0.67085,0.564082,0.437984,0.835655,0.688652,0.553325,0.722573,0.913483,0.71769,0.32648,0.267273,0.643131,0.999682,0.817348,0.597007,0.901252,0.786228,0.260065,0.470101,0.108161,0.677299,0.717038,0.451291,0.714847,0.773887,0.397585,0.841463,0.857291,0.22079,0.0072307,0.288889,0.340355,0.874346,0.179822,0.742981,0.752695,0.548027,0.719553,0.395955,0.332672,0.00133932,0.340442,0.479864,0.824186,0.403867,0.742692,0.475142,0.518674,0.600036,0.49552,0.714989,0.937741,0.842975,0.594561,0.581074,0.267043,0.665616,0.562129,0.880909,0.0748912,0.897475,0.826223,0.599604,0.647591,0.669218,0.156203,0.344716,0.576287,0.290883,0.876453,0.818164,0.0385525,0.019814,0.245411,0.0574281,0.294743,0.424501,0.0394964,0.29141,0.401297,0.61949,0.517291,0.487347,0.149767,0.0504392,0.335014,0.560366,0.73338,0.0214908,0.454797,0.316007,0.643332,0.294035,0.480502,0.782501,0.962689,0.954934,0.000505984,0.510887,0.204653,0.569368,0.570524,0.904855,0.93285,0.253229,0.799317,0.842213,0.638738,0.56256,0.123,0.389242,0.120887,0.96783,0.98619,0.283934,0.579771,0.936575,0.927999,0.205649,0.116272,0.699107,0.913219,0.159679,0.371699,0.815849,0.885106,0.588925,0.599931,0.620559,0.574419,0.673785,0.957704,0.567319,0.288294,0.360577,0.126685,0.557042,0.958201,0.532771,0.0342969,0.283766,0.0293952,0.0538355,0.679573,0.0738795,0.437302,0.920097,0.906463,0.442548,0.843602,0.934506,0.153311,0.883985,0.680023,0.496875,0.203383,0.601444,0.0982317,0.888834,0.515423,0.113328,0.245261,0.840944,0.806083,0.0153688,0.170575,0.325009,0.229071,0.738166,0.00613517,0.310442,0.650387,0.373272,0.646392,0.66848,0.559533,0.271495,0.0326256,0.452487,0.12147,0.737475,0.255048,0.999324,0.159303,0.722181,0.0447628,0.396901,0.595181,0.133587,0.548073,0.3968,0.709277,0.300718,0.388236,0.276459,0.459389,0.874843,0.0791208,0.32859,0.766769,0.950141,0.353435,0.39938,0.203962,0.328304,0.850314,0.150903,0.119326,0.366175,0.951236,0.434404,0.941707,0.460199,0.321108,0.103622,0.783916,0.0912687,0.530121,0.0563987,0.369261,0.070344,0.766323,0.229405,0.254936,0.753403,0.548881,0.978307,0.434488,0.730218,0.398539,0.691158,0.482958,0.776934,0.672644,0.40508,0.216162,0.323526,0.211372,0.0752974,0.342722,0.672499,0.654134,0.212047,0.404816,0.71299,0.067286,0.539266,0.622863,0.668964,0.287299,0.755208,0.382429,0.443111,0.299165,0.170466,0.574846,0.324414,0.266969,0.331993,0.0782852,0.206184,0.905317,0.644974,0.0164213,0.0500596,0.495798,0.681402,0.87244,0.649672,0.136229,0.153532,0.539756,0.287791,0.196743,0.437293,0.265918,0.79635,0.181031,0.413269,0.0268209,0.652768,0.177338,0.4308,0.824863,0.951497,0.354033,0.763542,0.462232,0.202784,0.145408,0.839225,0.0672935,0.889284,0.42342,0.462207,0.524714,0.153318,0.137255,0.204203,0.29236,0.325633,0.116142,0.339765,0.788178,0.546921,0.909196,0.105558,0.173787,0.836003,0.845578,0.766229,0.497336,0.954665,0.0723104,0.512089,0.631477,0.567193,0.964055,0.587738,0.501899,0.391995,0.984695,0.564813,0.769567,0.596655,0.0205144,0.411213,0.0258285,0.274472,0.139136,0.236403,0.390992,0.151172,0.223348,0.747138,0.141366,0.572515,0.268361,0.585653,0.119866,0.131169,0.50525,0.680652,0.00182128,0.931325,0.260802,0.294551,0.109767,0.183639,0.915705,0.721556,0.690028,0.0084222,0.0533749,0.0267604,0.336196,0.00831169,0.0279507,0.176371,0.8457,0.453936,0.32764,0.225877,0.375419,0.411096,0.405685,0.343035,0.364582,0.0064162,0.722115,0.961901,0.877775,0.891378,0.26277,0.386329,0.29591,0.569958,0.390896,0.963795,0.140382,0.788884,0.813242,0.603552,0.576093,0.445838,0.247035,0.112612,0.33772,0.207111,0.110942,0.751126,0.664481,0.20104,0.422302,0.404576,0.760497,0.0310081,0.765793,0.95905,0.113428,0.139506,0.646031,0.0317988,0.239832,0.447749,0.835187,0.384479,0.53538,0.940276,0.993497,0.942253,0.236418,0.137467,0.839262,0.857944,0.581963,0.706219,0.581984,0.268793,0.961766,0.340604,0.256929,0.441462,0.0941175,0.735663,0.375058,0.980274,0.0164083,0.928939,0.471559,0.406766,0.305278,0.966864,0.536021,0.268405,0.14461,0.584171,0.828638,0.435353,0.529743,0.142901,0.177667,0.687732,0.244527,0.280503,0.469802,0.686393,0.196566,0.720118,0.7558,0.927353,0.337927,0.708861,0.629132,0.583267,0.885356,0.725386,0.926344,0.822478,0.707507,0.0125796,0.518414,0.403534,0.395489,0.566703,0.997413,0.550751,0.354735,0.0533537,0.942855,0.479834,0.567948,0.5564,0.717851,0.782441,0.579076,0.255374,0.704138,0.0380703,0.00791514,0.762129,0.916018,0.645323,0.198452,0.407372,0.632431,0.779363,0.0150296,0.318569,0.77531,0.65112,0.405976,0.598551,0.806642,0.786884,0.287043,0.933871,0.812578,0.0637805,0.891358,0.522883,0.911845,0.791559,0.506258,0.584286,0.985795,0.316658,0.443892,0.65874,0.954162,0.106859,0.647017,0.17144,0.132228,0.0773826,0.0720633,0.877003,0.108941,0.981005,0.993415,0.0213408,0.316461,0.509634,0.986399,0.355067,0.302559,0.502144,0.0291374,0.312356,0.925051,0.466783,0.042542,0.453788,0.683447,0.0686191,0.614644,0.077008,0.768337,0.752478,0.579692,0.98496,0.47758,0.178131,0.454054,0.584117,0.483052,0.792869,0.839016,0.418316,|0.576496,0.972611,0.292257,0.535839,0.418619,0.0566574,0.525933,0.637055,0.143887,0.297782,0.0184473,0.304099,0.689762,0.215917,0.901824,0.0753917,0.967823,0.529396,0.0423589,0.805983,0.571414,0.38475,0.0474802,0.0897668,0.415451,0.829123,0.605702,0.375058,0.0388007,0.408594,0.784455,0.135348,0.122606,0.324114,0.847519,0.821726,0.709797,0.637251,0.402421,0.874623,0.0793211,0.231387,0.0080201,0.374994,0.0356362,0.987555,0.942331,0.357465,0.0357273,0.86308,0.746636,0.0725194,0.622362,0.484398,0.869623,0.760578,0.574396,0.693494,0.234824,0.624848,0.0663503,0.253411,0.418518,0.706058,0.472317,0.547674,0.707437,0.72,0.774333,0.385756,0.469956,0.532911,0.337875,0.682793,0.960261,0.757897,0.126867,0.223576,0.812939,0.361091,0.442524,0.343656,0.710949,0.828999,0.0233636,0.536732,0.529219,0.292122,0.43951,0.826598,0.236866,0.391251,0.591627,0.437166,0.343415,0.720389,0.1147,0.910132,0.418532,0.812788,0.0615222,0.721856,0.607454,0.662209,0.53748,0.718402,0.649213,0.614266,0.524537,0.514307,0.534178,0.179971,0.792192,0.664345,0.241616,0.594092,0.952826,0.0665392,0.0352483,0.135025,0.323272,0.389965,0.687403,0.443225,0.496467,0.880481,0.390351,0.33585,0.34703,0.687448,0.185576,0.0134427,0.355471,0.32408,0.650091,0.906466,0.842307,0.44837,0.830486,0.814431,0.0514352,0.580404,0.0677232,0.00788289,0.714738,0.940571,0.503517,0.357035,0.383395,0.240042,0.651758,0.132657,0.638291,0.947347,0.699471,0.893533,0.198327,0.205693,0.47235,0.912244,0.681241,0.857933,0.58081,0.144989,0.697873,0.812609,0.154573,0.675748,0.580568,0.449981,0.849062,0.823022,0.553266,0.841754,0.457606,0.157684,0.755913,0.0776567,0.0927318,0.738377,0.310468,0.317261,0.729972,0.587663,0.310455,0.789528,0.625676,0.0457113,0.433189,0.824146,0.568343,0.470091,0.495875,0.686532,0.850492,0.853856,0.468005,0.584575,0.962412,0.435133,0.389985,0.902369,0.020092,0.89385,0.0108373,0.792806,0.683186,0.057558,0.885659,0.647153,0.36926,0.195866,0.94988,0.231268,0.0429311,0.297304,0.439751,0.948047,0.0159218,0.890823,0.925236,0.915959,0.972739,0.204501,0.294377,0.466428,0.0121729,0.756197,0.609399,0.0528657,0.509402,0.857953,0.214917,0.660126,0.912426,0.490333,0.0504937,0.719888,0.733156,0.562622,0.0811991,0.802003,0.53519,0.30835,0.232673,0.0733823,0.226242,0.05176,0.0929009,0.729224,0.870637,0.834793,0.348775,0.794575,0.0200796,0.924759,0.562747,0.527905,0.0268626,0.422924,0.865869,0.532825,0.0906692,0.744361,0.467139,0.734075,0.532427,0.422828,0.550403,0.467104,0.164201,0.622243,0.450415,0.0967847,0.323923,0.657482,0.127161,0.757434,0.514385,0.392975,0.796401,0.649906,0.815278,0.0532436,0.638865,0.692678,0.539439,0.640136,0.728433,0.898968,0.369817,0.213946,0.00962991,0.012336,0.310292,0.86564,0.762052,0.385822,0.443685,0.478385,0.127935,0.628736,0.358854,0.689119,0.424389,0.86664,0.593751,0.43665,0.294627,0.570004,0.419114,0.136766,0.320328,0.870488,0.507813,0.52467,0.188163,0.520032,0.0718122,0.598086,0.946323,0.0400376,0.755366,0.517088,0.915661,0.919773,0.606973,0.452136,0.0440766,0.73643,0.00757366,0.0478197,0.524586,0.172908,0.196991,0.126336,0.0129774,0.473491,0.258284,0.0636011,0.033118,0.0252976,0.242248,0.411313,0.375036,0.894175,0.932033,0.447986,0.978872,0.998563,0.0910142,0.0957728,0.684946,0.54823,0.980987,0.66115,0.275433,0.342678,0.0275567,0.629428,0.903241,0.59237,0.0735456,0.255898,0.240948,0.278031,0.423861,0.760762,0.841019,0.929158,0.00708663,0.756773,0.035149,0.995964,0.718896,0.557979,0.904878,0.109747,0.178715,0.0463564,0.70708,0.0720791,0.531063,0.453701,0.23987,0.833466,0.961653,0.796142,0.920509,0.613394,0.26709,0.219758,0.272653,0.953064,0.690058,0.639414,0.0111223,0.662176,0.0844409,0.0922701,0.0320654,0.188222,0.699668,0.196051,0.160281,0.00592762,0.95868,0.761858,0.999809,0.796708,0.713914,0.0505027,0.7562,0.696704,0.906365,0.952074,0.90411,0.491282,0.384689,0.798868,0.64146,0.34095,0.416634,0.987888,0.955234,0.107403,0.818695,0.839895,0.858204,0.387691,0.208046,0.149036,0.347759,0.0803607,0.273927,0.331826,0.859376,0.455704,0.337549,0.174992,0.537033,0.289128,0.557879,0.348752,0.834931,0.198226,0.918901,0.233397,0.0332235,0.214736,0.431923,0.764543,0.264078,0.784771,0.663397,0.197395,0.580343,0.0380238,0.768567,0.42894,0.360379,0.578381,0.798858,0.901367,0.541058,0.649268,0.037675,0.225237,0.0987299,0.634644,0.31628,0.239202,0.682035,0.79743,0.794785,0.593685,0.857928,0.192781,0.127967,0.0296985,0.220458,0.015168,0.0437276,0.340578,0.739903,0.407652,0.0545059,0.975265,0.825259,0.157973,0.0702761,0.304032,0.210172,0.68947,0.690416,0.38374,0.27651,0.707039,0.818289,0.422197,0.234613,0.712868,0.12756,0.391968,0.309063,0.45219,0.463959,0.190801,0.36889,0.923705,0.00209188,0.810128,0.915856,0.857057,0.127362,0.0157707,0.0495112,0.50425,0.877807,0.184791,0.997789,0.702234,0.817941,0.244414,0.4409,0.763151,0.876745,0.950741,0.955933,0.92971,0.953024,0.28655,0.927971,0.734006,0.156618,0.134969,0.178635,0.575194,0.874139,0.870788,0.304125,0.385569,0.473125,0.0435812,0.45782,0.257205,0.0852633,0.507099,0.435226,0.749931,0.969327,0.42679,0.894802,0.920946,0.545506,0.125996,0.9311,0.78507,0.395985,0.108712,0.0191108,0.167082,0.160718,0.280163,0.0133806,0.199501,0.706602,0.280034,0.630626,0.659138,0.0528294,0.918086,0.128959,0.0825379,0.706386,0.0501133,0.685841,0.515418,0.0780284,0.881871,0.876243,0.181732,0.125357,0.122867,0.788645,0.0110916,0.626763,0.314756,0.909303,0.950613,0.549474,0.440063,0.778338,0.330218,0.381701,0.632549,0.491373,0.442307,0.679178,0.0598385,0.692974,0.898556,0.830992,0.851082,0.29039,0.590401,0.791513,0.976003,0.8778,0.45479,0.280501,0.34979,0.892102,0.981782,0.652435,0.864232,0.437586,0.0446351,0.962501,0.245718,0.648975,0.733995,0.159392,0.377973,0.0741783,0.573681,0.865705,0.958465,0.582269,0.468947,0.0340814,0.621172,0.814465,0.6707,0.6077,0.879502,0.994394,0.397827,0.0389241,0.994577,0.304125,0.523026,0.225921,0.679298,0.344701,0.395283,0.118154,0.128999,0.950624,0.558688,0.928848,0.42659,0.743776,0.182941,0.827881,0.784032,0.991926,0.0438633,0.14988,0.474727,0.120371,0.43167,0.946559,0.510847,0.258454,0.65476,0.44929,0.747757,0.581517,0.654504,0.410817,0.369171,0.779603,0.461667,0.309361,0.853981,0.735909,0.745045,0.241618,0.943122,0.863348,0.272037,0.382385,0.0305094,0.656012,0.973582,0.486161,0.985331,0.905082,0.55211,0.477998,0.222893,0.962157,0.888808,0.267021,0.647419,0.13748,0.141998,0.148693,0.985855,0.815774,0.949692,0.564355,0.489076,0.37054,0.784126,0.545805,0.821124,0.719713,0.369399,0.108507,0.851264,0.287221,0.844473,0.898476,0.649863,0.926356,0.540138,0.0528362,0.597029,0.319364,0.0314553,0.734281,0.548621,0.267325,0.00875098,0.101252,0.901149,0.651561,0.639069,0.573843,0.390938,0.388698,0.207721,0.554997,0.161119,0.809468,0.956869,0.275219,0.63013,0.19922,0.720497,0.0371411,0.0184601,0.437569,0.739839,0.217999,0.531269,0.428382,0.101428,0.614403,0.743038,0.270824,0.64935,0.733081,0.730495,0.794611,0.88633,0.621658,0.458535,0.767121,0.484139,0.585691,0.469568,0.956497,0.740913,0.531537,0.880987,0.847841,0.39179,0.302714,0.0745361,0.356315,0.407599,0.674337,0.847549,0.7179,0.665057,0.382883,0.411057,0.651081,0.645669,0.706569,0.0598434,0.879409,0.151912,0.580112,0.467186,0.543562,0.598435,0.430049,0.591711,0.243855,0.526755,0.865229,0.494993,0.106353,0.255822,0.114487,0.126184,0.709295,0.697387,0.0259405,0.534699,0.107745,0.172781,0.585148,0.157905,0.426752,0.563385,0.0278002,0.0965862,0.456117,0.852024,0.824326,0.760949,0.366044,0.503232,0.323872,0.666154,0.850023,0.92379,0.892416,0.525671,0.543837,0.677886,0.0845787,0.755167,0.416887,0.547886,0.834947,0.782339,0.725028,0.598715,0.0501048,0.366943,0.565977,0.0596065,0.871187,0.999513,0.523285,0.59692,0.726506,0.490663,0.235483,0.292522,0.318691,0.72464,0.6835,0.298985,0.48466,0.336711,0.967129,0.0565457,0.968021,0.275847,0.306171,0.723479,0.0481063,0.0876409,0.0524106,0.836238,0.500178,0.105726,0.0111397,0.812193,0.448671,0.0735256,0.928148,0.118474,0.829249,0.146445,0.00861245,0.840695,0.148665,0.479922,0.863351,0.233457,0.920084,0.108794,0.554336,0.335466,0.37144,0.968921,0.0594214,0.594364,0.883981,0.919348,0.373646,0.319916,0.555649,0.763749,0.853473,0.930388,0.521681,0.345541,0.313945,0.845643,0.495293,0.389836,0.707179,0.246165,0.660713,0.0795416,0.716783,0.650359,0.14088,0.119642,0.894789,0.472545,0.68115,0.198313,0.0799438,0.350001,0.284008,0.208978,0.611842,0.357569,0.629322,0.880879,0.533904,0.540978,0.587678,0.358799,0.506594,0.684501,0.261563,0.650112,0.385302,0.999598,0.237297,0.965755,0.451593,0.257104,0.869198,0.852521,0.913596,0.0210686,0.442755,0.303707,0.700599,0.595883,0.144784,0.258595,0.247078,0.456619,0.878939,0.955678,0.00487584,0.67823,0.333599,0.0528334,0.280487,0.0405614,0.842501,0.785164,0.033235,0.217673,0.0982646,0.774917,0.894156,0.444647,0.76821,0.735281,0.121353,0.923347,0.238787,0.707715,0.32253,0.122735,0.750948,0.381123,0.63066,0.48495,0.851969,0.818668,0.23235,0.562443,0.16737,0.697245,0.68578,0.805292,0.58961,0.883024,0.602982,0.496669,0.742886,0.29426,0.150718,0.151149,0.796432,0.851841,0.410265,0.874039,0.586532,0.485721,0.41023,0.982467,0.17936,0.769139,|0.315226,0.531663,0.573395,0.0812268,0.332775,0.016122,0.148181,0.0401002,0.383202,0.426431,0.998078,0.421793,0.576258,0.0735759,0.471542,0.130118,0.244243,0.890405,0.0647969,0.680077,0.130196,0.351729,0.496442,0.292887,0.519168,0.0131427,0.976141,0.986529,0.277669,0.633292,0.16351,0.665861,0.312181,0.831471,0.0378736,0.117778,0.0651483,0.682497,0.901902,0.817198,0.910734,0.272605,0.368456,0.729729,0.768903,0.75708,0.789276,0.854289,0.312999,0.651444,0.777925,0.977577,0.554698,0.956503,0.585764,0.12323,0.972567,0.204437,0.218004,0.617525,0.31862,0.214595,0.946278,0.499994,0.596217,0.258076,0.525528,0.426779,0.677312,0.298542,0.536991,0.683284,0.777906,0.761319,0.742704,0.602359,0.727364,0.506549,0.44669,0.95739,0.893248,0.910405,0.550959,0.658566,0.988808,0.912557,0.8968,0.58361,0.493105,0.496132,0.0668857,0.0778398,0.996289,0.594231,0.396335,0.748377,0.727028,0.300646,0.0421088,0.785455,0.472368,0.132829,0.587252,0.815867,0.0629998,0.437979,0.1231,0.287989,0.507186,0.374722,0.675217,0.128411,0.0981774,0.0880662,0.100134,0.162979,0.54773,0.134769,0.988458,0.653922,0.32032,0.57204,0.603348,0.0546284,0.177588,0.667567,0.902192,0.142826,0.746954,0.413992,0.718501,0.503896,0.436764,0.619897,0.519513,0.657294,0.793358,0.382082,0.918052,0.640079,0.844597,0.54714,0.541824,0.855692,0.365529,0.950405,0.249131,0.193617,0.0137306,0.923266,0.654609,0.662183,0.415657,0.215791,0.161599,0.00738257,0.121002,0.435906,0.268116,0.959145,0.790475,0.69477,0.764593,0.982056,0.0365472,0.84651,0.585422,0.810074,0.755433,0.489428,0.128877,0.555116,0.420429,0.377645,0.790634,0.846307,0.819522,0.925706,0.543228,0.159872,0.504179,0.431965,0.994952,0.139731,0.361452,0.341005,0.728338,0.686328,0.647286,0.105052,0.901264,0.999087,0.505155,0.699695,0.428925,0.0797443,0.0853453,0.434624,0.939819,0.12569,0.0470959,0.537735,0.163144,0.00184661,0.636498,0.266868,0.533704,0.735019,0.318794,0.0455508,0.43825,0.386027,0.409114,0.239747,0.841792,0.0430735,0.421842,0.387172,0.773904,0.988243,0.421329,0.449954,0.949807,0.626849,0.17398,0.51213,0.0721518,0.213527,0.861122,0.368539,0.312307,0.908497,0.477659,0.585562,0.912049,0.896897,0.799092,0.746741,0.0393002,0.918344,0.397813,0.0967465,0.439212,0.593032,0.458796,0.962383,0.678434,0.390911,0.957858,0.282151,0.433166,0.316461,0.186753,0.512764,0.00457209,0.163112,0.485405,0.419173,0.227531,0.306224,0.156214,0.633617,0.334741,0.347667,0.992639,0.0538339,0.940103,0.449931,0.157832,0.896156,0.642939,0.0618951,0.417724,0.166377,0.68143,0.903467,0.994324,0.255364,0.432728,0.834881,0.983136,0.704582,0.90587,0.765449,0.466158,0.898942,0.405996,0.224265,0.0374908,0.0170417,0.215659,0.356271,0.320432,0.295019,0.066498,0.771751,0.587808,0.660824,0.418172,0.72865,0.851051,0.551347,0.894232,0.384027,0.360701,0.582068,0.79436,0.0456796,0.172136,0.0906926,0.155103,0.762064,0.713383,0.564802,0.969682,0.14428,0.985138,0.824823,0.0692816,0.226904,0.800682,0.807084,0.151587,0.000420272,0.771034,0.471659,0.891762,0.996334,0.136614,0.450428,0.299548,0.828629,0.355721,0.813967,0.944515,0.73195,0.997679,0.534616,0.94339,0.358878,0.661263,0.433979,0.0794248,0.107921,0.972983,0.422149,0.953366,0.289472,0.481095,0.0136528,0.0137349,0.902784,0.419808,0.558888,0.053826,0.543744,0.2711,0.663594,0.54853,0.426565,0.76784,0.596254,0.266984,0.822153,0.896034,0.194331,0.593925,0.405085,0.444673,0.278817,0.299029,0.678923,0.0972188,0.250526,0.673395,0.0634666,0.851923,0.817375,0.782231,0.262206,0.463465,0.536167,0.675195,0.572531,0.789283,0.515692,0.2046,0.028199,0.997395,0.143795,0.776685,0.833487,0.0719265,0.69102,0.216503,0.767843,0.303485,0.733924,0.205291,0.992564,0.525879,0.740289,0.795928,0.989405,0.215489,0.783244,0.718179,0.840733,0.423865,0.944529,0.21513,0.0462701,0.926466,0.927673,0.278125,0.928351,0.48656,0.8692,0.10034,0.560074,0.588754,0.268613,0.905932,0.274656,0.0887885,0.665515,0.569957,0.658004,0.302294,0.445071,0.174705,0.762315,0.0479296,0.873858,0.941101,0.130648,0.131006,0.0189202,0.125273,0.206103,0.855407,0.321503,0.849866,0.42246,0.832612,0.277407,0.733095,0.734661,0.829003,0.0610761,0.860888,0.522713,0.126823,0.574498,0.245719,0.258826,0.707072,0.0846074,0.203637,0.915847,0.635556,0.118324,0.735838,0.695414,0.56412,0.922353,0.653659,0.495481,0.205438,0.276525,0.264266,0.205159,0.976718,0.464172,0.52044,0.541209,0.241776,0.0661755,0.110669,0.732331,0.892682,0.0287763,0.524735,0.464433,0.883828,0.668215,0.556957,0.290288,0.4986,0.32696,0.0469278,0.453675,0.301942,0.528647,0.626221,0.735014,0.264276,0.99163,0.895421,0.895772,0.0215156,0.263126,0.318495,0.288975,0.0534422,0.834722,0.952647,0.616723,0.560934,0.319412,0.346073,0.843191,0.53193,0.584632,0.119703,0.474455,0.743701,0.00420761,0.898562,0.514032,0.5469,0.015255,0.217474,0.671655,0.526449,0.93384,0.0593489,0.837455,0.329953,0.405587,0.912274,0.417438,0.423917,0.947739,0.106994,0.629744,0.0448335,0.970197,0.520374,0.365546,0.970893,0.123277,0.350389,0.45453,0.300068,0.476676,0.548319,0.352449,0.684058,0.959159,0.821591,0.592197,0.409867,0.222858,0.888195,0.455816,0.588686,0.457447,0.731414,0.450391,0.0132486,0.634773,0.934639,0.962783,0.658224,0.202093,0.437783,0.195018,0.350823,0.996626,0.506439,0.668228,0.99658,0.584244,0.722192,0.656821,0.106293,0.97298,0.829177,0.545602,0.0927173,0.179173,0.335693,0.873089,0.722853,0.147752,0.400321,0.953063,0.502907,0.77068,0.958481,0.0402463,0.451556,0.703824,0.0835908,0.969741,0.883423,0.672187,0.109963,0.649931,0.0523539,0.457554,0.83839,0.53259,0.368086,0.561146,0.00790191,0.453345,0.740636,0.517061,0.554397,0.200329,0.432162,0.211984,0.0490545,0.772661,0.705763,0.732727,0.187166,0.996778,0.809936,0.251825,0.718133,0.711864,0.943339,0.0597593,0.920891,0.113486,0.552539,0.462361,0.724261,0.993738,0.983339,0.725744,0.224386,0.0323659,0.940904,0.415862,0.96366,0.933743,0.660444,0.321914,0.336123,0.725478,0.426662,0.173604,0.335076,0.474305,0.461351,0.53027,0.844467,0.949322,0.41256,0.138266,0.310433,0.9584,0.718169,0.35318,0.765223,0.229947,0.595481,0.551153,0.720062,0.186758,0.416468,0.633673,0.168404,0.000539482,0.089031,0.350693,0.814852,0.238161,0.963494,0.662445,0.18819,0.573628,0.184813,0.472563,0.366361,0.17059,0.947,0.82717,0.657439,0.25653,0.64503,0.405965,0.218533,0.856639,0.777234,0.489591,0.582408,0.305235,0.386611,0.288307,0.502899,0.545896,0.716796,0.527221,0.659345,0.00482941,0.922485,0.366168,0.361671,0.467403,0.223342,0.900418,0.396606,0.52495,0.991132,0.729261,0.120547,0.0429896,0.91292,0.212318,0.107881,0.851978,0.653882,0.723391,0.842041,0.744179,0.256353,0.0236328,0.470522,0.321284,0.254941,0.934463,0.74528,0.911341,0.144894,0.554763,0.674394,0.40259,0.475579,0.543844,0.364366,0.255072,0.0699558,0.10529,0.130469,0.463046,0.279183,0.137985,0.694518,0.343681,0.174024,0.0144677,0.545578,0.991013,0.294638,0.17399,0.383697,0.322357,0.202317,0.575302,0.391749,0.0204363,0.756959,0.227746,0.58219,0.942296,0.50631,0.507706,0.227751,0.837237,0.765836,0.47026,0.0348587,0.697688,0.839656,0.56974,0.256465,0.291513,0.830826,0.0488682,0.13772,0.855824,0.653839,0.931626,0.178514,0.256831,0.715895,0.351936,0.859833,0.411474,0.824065,0.274573,0.855049,0.174342,0.539438,0.696734,0.665837,0.427768,0.402097,0.95629,0.109901,0.139124,0.700626,0.875645,0.404398,0.864348,0.449497,0.834989,0.813072,0.61621,0.0747625,0.0785567,0.653791,0.910998,0.0434997,0.971748,0.369369,0.130272,0.489528,0.0550962,0.279904,0.465583,0.478439,0.103438,0.474243,0.203406,0.508687,0.17244,0.456199,0.101544,0.471195,0.955176,0.718509,0.742497,0.554252,0.892382,0.611175,0.789823,0.255767,0.857118,0.865189,0.974187,0.223045,0.995193,0.22357,0.291662,0.533176,0.981748,0.421393,0.261493,0.26219,0.410242,0.252111,0.653493,0.128659,0.749389,0.198708,0.467738,0.37757,0.046156,0.673816,0.566426,0.288745,0.237075,0.87104,0.175007,0.983913,0.20267,0.109299,0.368767,0.826287,0.142351,0.999325,0.740068,0.262588,0.152392,0.504688,0.499945,0.910868,0.877544,0.850495,0.884441,0.0550022,0.758169,0.519931,0.427225,0.432839,0.534532,0.393615,0.446137,0.813025,0.0659449,0.509795,0.785731,0.536915,0.607437,0.103892,0.202269,0.402435,0.700686,0.732419,0.0610125,0.431009,0.772179,0.957791,0.677129,0.979987,0.832676,0.356615,0.463007,0.0510746,0.102764,0.857172,0.290888,0.663415,0.152056,0.376408,0.838389,0.552111,0.133639,0.578004,0.837625,0.50671,0.039683,0.659782,0.699654,0.652005,0.552178,0.210847,0.518714,0.797938,0.247892,0.430829,0.94322,0.956276,0.759862,0.43526,0.987996,0.923042,0.456856,0.00400668,0.643706,0.213842,0.766332,0.613893,0.286425,0.31253,0.818217,0.0704826,0.532098,0.936982,0.435251,0.0957624,0.757006,0.75269,0.621716,0.904948,0.121484,0.605899,0.822328,0.92036,0.934116,0.951594,0.181118,0.227695,0.735018,0.947813,0.856527,0.701777,0.0779134,0.226059,0.751454,0.930174,0.0513912,0.09375,0.258119,0.748736,0.322407,0.0787234,0.0997126,0.319065,0.248778,0.639455,0.0150092,0.184818,0.844123,0.318141,0.73431,0.919716,0.730319,0.89396,0.62953,0.211382,0.646209,0.344412,0.707232,0.49657,0.0144212,0.567693,0.281734,0.792297,0.924065,0.870316,0.783881,0.608036,0.632502,|0.174144,0.912682,0.000978112,0.743836,0.450157,0.808024,0.793603,0.719042,0.350627,0.976062,0.549179,0.430655,0.148547,0.472866,0.742012,0.840724,0.146925,0.740611,0.335309,0.330612,0.0275549,0.907959,0.810197,0.0980237,0.140051,0.756647,0.872328,0.646313,0.923682,0.550876,0.870734,0.531884,0.0296686,0.155547,0.50182,0.749921,0.000972927,0.68405,0.432645,0.0979706,0.310015,0.702182,0.142327,0.599536,0.155165,0.898048,0.449729,0.536049,0.556266,0.217329,0.170556,0.163729,0.875678,0.0969924,0.783319,0.59073,0.0586295,0.404221,0.609646,0.0351968,0.48158,0.798782,0.160554,0.309705,0.735558,0.369654,0.291898,0.0594447,0.14221,0.719062,0.314966,0.83361,0.47327,0.8899,0.191265,0.395807,0.460421,0.877343,0.0308378,0.32495,0.562662,0.865501,0.998553,0.994925,0.239344,0.134127,0.476993,0.232942,0.285478,0.355515,0.0389187,0.50731,0.0710897,0.678568,0.643688,0.187701,0.749586,0.655167,0.754227,0.72867,0.462999,0.466879,0.784188,0.375523,0.0105935,0.270557,0.556115,0.432248,0.289367,0.143398,0.529634,0.47836,0.894559,0.204992,0.216553,0.463507,0.893834,0.45264,0.761393,0.36902,0.262797,0.929312,0.99325,0.725444,0.637799,0.294175,0.966358,0.611855,0.856838,0.218586,0.129157,0.89245,0.42592,0.543459,0.590006,0.638047,0.68512,0.155588,0.0518755,0.184742,0.775073,0.912489,0.666929,0.20081,0.18496,0.98856,0.0745424,0.112608,0.284342,0.981435,0.199895,0.263814,0.600816,0.837519,0.715425,0.0520218,0.9676,0.381246,0.700965,0.407363,0.174831,0.289575,0.841244,0.667351,0.236388,0.539329,0.928764,0.82559,0.373034,0.09052,0.482025,0.973085,0.340778,0.184967,0.890391,0.349802,0.352843,0.821955,0.993796,0.336541,0.611397,0.242488,0.645398,0.336605,0.959692,0.0898887,0.744146,0.687668,0.583875,0.896525,0.82971,0.2617,0.110474,0.987658,0.778007,0.309746,0.012907,0.555185,0.155899,0.864915,0.595212,0.771256,0.359308,0.2755,0.990449,0.273067,0.0498087,0.676332,0.541675,0.908865,0.84678,0.237187,0.754302,0.45831,0.461601,0.76752,0.54008,0.127539,0.855175,0.71355,0.901424,0.868028,0.910466,0.213888,0.419329,0.682893,0.494698,0.0117785,0.212056,0.616953,0.105559,0.225896,0.874334,0.901193,0.783885,0.553548,0.460374,0.559051,0.873155,0.344837,0.0630635,0.476488,0.0455388,0.0238588,0.420956,0.96784,0.105585,0.391946,0.204778,0.353227,0.380119,0.371158,0.119847,0.886369,0.98501,0.3134,0.2949,0.119467,0.443731,0.773941,0.831242,0.558236,0.0344357,0.157495,0.128804,0.748241,0.76457,0.593344,0.167225,0.74508,0.878908,0.0749424,0.771776,0.685818,0.139469,0.664874,0.584736,0.755538,0.438354,0.0114515,0.940998,0.373451,0.149922,0.442643,0.622634,0.67666,0.718969,0.750476,0.282083,0.654968,0.468609,0.93559,0.969154,0.637507,0.879503,0.719878,0.851627,0.533233,0.0782039,0.895957,0.136414,0.181629,0.342719,0.987738,0.220935,0.485415,0.791397,0.504288,0.664566,0.529115,0.770749,0.264863,0.468833,0.77292,0.925322,0.866731,0.100599,0.0202247,0.116483,0.477963,0.221075,0.676123,0.99525,0.626086,0.15957,0.0513824,0.660241,0.364231,0.68173,0.867692,0.0396169,0.00074029,0.279333,0.786991,0.735423,0.315337,0.813295,0.448541,0.391781,0.924953,0.0975156,0.00299251,0.811563,0.662523,0.118788,0.774442,0.899262,0.229634,0.170811,0.450197,0.744716,0.490717,0.704648,0.250441,0.320232,0.847431,0.152063,0.982475,0.242617,0.124276,0.622522,0.0887669,0.426739,0.860942,0.60422,0.72748,0.43766,0.0273604,0.592896,0.945275,0.0873736,0.757041,0.00287151,0.652696,0.1601,0.450381,0.835039,0.977942,0.887012,0.805756,0.0938504,0.892355,0.641741,0.674364,0.0366235,0.133473,0.684932,0.353819,0.997246,0.533277,0.463261,0.0983458,0.23177,0.217496,0.898606,0.953034,0.742639,0.278163,0.138768,0.431635,0.385833,0.75731,0.666149,0.203328,0.406577,0.117558,0.751515,0.886254,0.574821,0.517524,0.289167,0.946905,0.924471,0.78422,0.78479,0.609103,0.648643,0.915812,0.261475,0.92625,0.482128,0.882831,0.410923,0.693346,0.252867,0.0202082,0.70781,0.908196,0.704897,0.448452,0.710872,0.278729,0.973194,0.911068,0.65879,0.0759926,0.928268,0.311319,0.829157,0.211777,0.956526,0.681974,0.848589,0.487429,0.0350909,0.52407,0.913427,0.80079,0.755278,0.0122816,0.601551,0.401898,0.00594574,0.0931314,0.710397,0.0291598,0.512314,0.614587,0.739202,0.886893,0.0386455,0.462426,0.0874838,0.502008,0.0521109,0.959483,0.323896,0.781954,0.435653,0.18349,0.989155,0.628193,0.699009,0.58261,0.264563,0.238752,0.116496,0.550151,0.0735741,0.150358,0.520975,0.0282333,0.89492,0.798296,0.208996,0.21767,0.716947,0.547367,0.672933,0.603699,0.860197,0.351548,0.562718,0.168966,0.441372,0.262718,0.0708287,0.7262,0.875168,0.593613,0.0749576,0.181878,0.97278,0.933103,0.513965,0.882628,0.310412,0.969696,0.723466,0.0115283,0.979779,0.0466154,0.268865,0.147553,0.558856,0.526276,0.554586,0.781513,0.528665,0.234842,0.546369,0.410596,0.83403,0.54374,0.0279354,0.450727,0.963715,0.246653,0.250501,0.769709,0.938441,0.584282,0.79789,0.500335,0.414133,0.674288,0.275949,0.285416,0.646033,0.126369,0.562073,0.800077,0.807161,0.513237,0.599563,0.931488,0.874768,0.341337,0.170677,0.281458,0.0543557,0.00120205,0.581252,0.468574,0.870565,0.279884,0.111135,0.866148,0.325033,0.345174,0.230218,0.103858,0.101856,0.161514,0.84215,0.985778,0.687908,0.67038,0.778633,0.895703,0.678815,0.192649,0.378127,0.826718,0.322957,0.896752,0.236851,0.174337,0.882766,0.931261,0.754678,0.861934,0.0975221,0.964212,0.473329,0.10972,0.357002,0.178348,0.824934,0.371335,0.10971,0.245718,0.107217,0.324688,0.594702,0.0458569,0.92754,0.379408,0.883353,0.876079,0.946519,0.280016,0.241024,0.212315,0.659203,0.50358,0.210169,0.295227,0.700105,0.180893,0.105403,0.305921,0.195913,0.494697,0.789984,0.784458,0.351096,0.939096,0.210831,0.14878,0.565726,0.814524,0.560806,0.526108,0.0971074,0.894981,0.733774,0.986012,0.623835,0.83848,0.70338,0.210068,0.662589,0.652659,0.386747,0.718597,0.612317,0.671253,0.571202,0.00727743,0.314997,0.530714,0.981046,0.977128,0.817799,0.734077,0.176601,0.40415,0.821314,0.637429,0.145707,0.374407,0.834797,0.0264865,0.576073,0.518015,0.884227,0.850627,0.249742,0.673964,0.138159,0.809292,0.558858,0.272124,0.502049,0.803059,0.174148,0.703286,0.00659698,0.481215,0.129305,0.0885803,0.123426,0.168953,0.842778,0.233279,0.728786,0.168649,0.975101,0.826083,0.960829,0.324207,0.904617,0.503123,0.45633,0.55015,0.976383,0.625334,0.97579,0.343393,0.27747,0.894374,0.310226,0.492042,0.549665,0.155871,0.114746,0.356928,0.575547,0.852133,0.325525,0.037679,0.513372,0.798934,0.0732211,0.177864,0.232832,0.702614,0.834574,0.220409,0.0826958,0.0453641,0.352867,0.206926,0.470131,0.655739,0.337986,0.412396,0.852029,0.610492,0.0544516,0.843737,0.666574,0.245704,0.699317,0.825235,0.582149,0.605531,0.356864,0.603159,0.655883,0.987069,0.780048,0.189828,0.0586919,0.135931,0.365898,0.286788,0.898945,0.309713,0.573614,0.652535,0.98887,0.358383,0.654056,0.265686,0.293112,0.924735,0.793954,0.786493,0.263431,0.0955399,0.287945,0.474173,0.232569,0.819139,0.264225,0.419888,0.897434,0.198549,0.870376,0.797683,0.660779,0.686115,0.132619,0.910592,0.96539,0.710676,0.651234,0.501611,0.713497,0.535692,0.88696,0.484582,0.118291,0.798757,0.481012,0.850606,0.932671,0.670069,0.397196,0.920901,0.346695,0.915015,0.180023,0.260489,0.16033,0.596123,0.930389,0.192573,0.0620515,0.0918173,0.786439,0.977916,0.0512013,0.995506,0.0807142,0.253869,0.233859,0.140065,0.456914,0.638497,0.0134707,0.699855,0.464918,0.856967,0.294226,0.782862,0.897629,0.67723,0.190086,0.252476,0.693671,0.431202,0.215341,0.301831,0.219151,0.850798,0.31951,0.743424,0.441985,0.813242,0.0760015,0.983136,0.575182,0.477148,0.067387,0.533546,0.804972,0.341258,0.0630275,0.471883,0.319879,0.24781,0.54501,0.366144,0.0822706,0.430387,0.0590669,0.299098,0.944227,0.529411,0.456156,0.72979,0.245155,0.265321,0.627732,0.184479,0.326069,0.865505,0.575311,0.51053,0.193595,0.871469,0.183443,0.649565,0.441001,0.745881,0.856838,0.307028,0.84832,0.67734,0.324626,0.574541,0.754872,0.197734,0.574318,0.929929,0.38708,0.490452,0.635776,0.0612422,0.234693,0.805979,0.475426,0.0757613,0.814655,0.900014,0.647221,0.693134,0.953591,0.0378352,0.397168,0.525362,0.537688,0.301283,0.615168,0.927372,0.382934,0.767699,0.605797,0.271538,0.890459,0.432516,0.846999,0.74848,0.270521,0.0146971,0.706972,0.210888,0.30538,0.320572,0.793665,0.521555,0.886166,0.207285,0.0994917,0.784508,0.619264,0.986321,0.244708,0.904037,0.195441,0.410259,0.797675,0.605794,0.554223,0.231473,0.291599,0.0327024,0.718496,0.784,0.716861,0.844341,0.00970227,0.730098,0.0618339,0.988356,0.14247,0.465936,0.217636,0.876242,0.420552,0.934646,0.953428,0.3617,0.607156,0.394295,0.0888857,0.481544,0.287697,0.178183,0.605093,0.516451,0.435762,0.926054,0.351567,0.688915,0.482411,0.0006935,0.709986,0.313258,0.981302,0.46692,0.560643,0.818544,0.535084,0.706418,0.231222,0.330884,0.350094,0.0766752,0.206277,0.00834906,0.242984,0.886152,0.632698,0.119592,0.855588,0.150496,0.53089,0.676355,0.145072,0.665753,0.418333,0.761084,0.819626,0.0159129,0.218558,0.726664,0.568647,0.224346,0.242791,0.23419,0.964087,0.716222,0.866735,0.346555,0.708623,0.785558,0.677468,0.406407,0.367461,0.104125,0.534755,0.793251,0.277117,0.998962,0.0058586,0.645667,|0.203114,0.846588,0.399858,0.143666,0.677858,0.537378,0.45274,0.623653,0.498219,0.439915,0.130615,0.683468,0.558801,0.788302,0.668883,0.925257,0.713037,0.258407,0.740194,0.608692,0.170161,0.352894,0.91929,0.865535,0.529171,0.412502,0.431102,0.0573885,0.652723,0.642943,0.802991,0.815034,0.284427,0.199734,0.630361,0.161892,0.344247,0.638142,0.369881,0.971325,0.18446,0.412826,0.150494,0.199609,0.522925,0.263136,0.657255,0.112873,0.529791,0.285763,0.935081,0.881383,0.559748,0.55136,0.609537,0.724147,0.381068,0.351632,0.499918,0.801451,0.221905,0.578233,0.790217,0.349155,0.511839,0.403443,0.508136,0.328829,0.903262,0.464762,0.829103,0.311693,0.0434141,0.756284,0.447425,0.0039677,0.809433,0.690523,0.40066,0.320798,0.24405,0.344912,0.882471,0.591863,0.362654,0.270251,0.472633,0.538994,0.181239,0.122343,0.400788,0.261783,0.932039,0.0344911,0.30823,0.358016,0.504865,0.855233,0.586422,0.288399,0.310071,0.12324,0.417231,0.813462,0.0499069,0.0384458,0.378867,0.617388,0.0575251,0.170344,0.784322,0.804317,0.164537,0.0639825,0.626657,0.561923,0.251373,0.000441134,0.208267,0.0231889,0.788498,0.29109,0.918914,0.070855,0.755819,0.251492,0.979672,0.473954,0.299191,0.110502,0.821259,0.721338,0.785226,0.896104,0.717133,0.444826,0.87126,0.0921196,0.116978,0.558016,0.136547,0.335165,0.810995,0.953875,0.20662,0.508851,0.307141,0.428406,0.549702,0.492741,0.799064,0.349558,0.427496,0.9684,0.411852,0.288741,0.42512,0.448291,0.349523,0.574548,0.984225,0.962568,0.873653,0.504633,0.200151,0.311296,0.901584,0.978994,0.0834637,0.672083,0.767948,0.10504,0.992185,0.713663,0.676854,0.945658,0.923626,0.517044,0.540159,0.225646,0.569334,0.0835339,0.621157,0.867654,0.770292,0.890523,0.00827008,0.467457,0.833919,0.720016,0.0790371,0.0455579,0.159884,0.043798,0.879411,0.575813,0.998744,0.677451,0.665903,0.521455,0.104435,0.660059,0.273141,0.869455,0.698668,0.427152,0.489771,0.189433,0.519807,0.71921,0.371,0.217143,0.0407721,0.852638,0.911478,0.139398,0.854677,0.626098,0.277609,0.683964,0.274548,0.216799,0.264855,0.63509,0.65485,0.341028,0.225174,0.440022,0.997592,0.0181361,0.34674,0.815779,0.121363,0.510737,0.639385,0.460794,0.548995,0.633733,0.825837,0.930416,0.292954,0.143395,0.848372,0.264666,0.860678,0.735093,0.928619,0.251933,0.144559,0.783628,0.4887,0.416344,0.719219,0.16445,0.109197,0.627908,0.762475,0.697769,0.702071,0.114504,0.93247,0.554451,0.24493,0.315275,0.915638,0.162702,0.272947,0.472837,0.293548,0.492518,0.0522536,0.442944,0.558599,0.545178,0.292657,0.189747,0.0270914,0.083966,0.386815,0.129182,0.668817,0.712909,0.226177,0.320854,0.173842,0.548844,0.63947,0.211437,0.0748085,0.475828,0.614088,0.973946,0.299567,0.323312,2.41995e-05,0.775134,0.814791,0.378895,0.147761,0.937064,0.338307,0.68234,0.623667,0.497024,0.40514,0.567269,0.868375,0.351555,0.550293,0.635102,0.833573,0.91137,0.608791,0.478226,0.754891,0.523627,0.754112,0.494824,0.825801,0.0470142,0.445514,0.193988,0.286763,0.271178,0.315691,0.197921,0.770963,0.0139243,0.788885,0.773121,0.812842,0.490472,0.180601,0.99661,0.479751,0.172142,0.867195,0.49109,0.868955,0.87469,0.309928,0.141112,0.307648,0.396153,0.0423602,0.919739,0.757195,0.316674,0.602966,0.613935,0.111326,0.683745,0.892592,0.296774,0.480662,0.832118,0.346155,0.386975,0.781407,0.530594,0.815679,0.524343,0.709549,0.0522918,0.846618,0.854417,0.359673,0.617379,0.440629,0.0917595,0.820172,0.507075,0.479363,0.771501,0.164281,0.811744,0.638913,0.146931,0.867909,0.687947,0.628831,0.752733,0.235659,0.0292957,0.0794792,0.921846,0.753594,0.357544,0.581258,0.702352,0.904956,0.161989,0.829093,0.431751,0.0388287,0.509555,0.360757,0.968065,0.212848,0.0801906,0.936486,0.0567159,0.939255,0.238036,0.730695,0.216656,0.710856,0.169542,0.00649494,0.624449,0.619618,0.533877,0.947728,0.511734,0.787374,0.0973171,0.786331,0.753309,0.466877,0.0142635,0.561264,0.845837,0.369387,0.277504,0.0720229,0.0208498,0.590327,0.699486,0.158919,0.156991,0.452803,0.0622137,0.84317,0.976561,0.789678,0.961939,0.513846,0.411646,0.872221,0.0351464,0.402427,0.861111,0.287649,0.0975572,0.0552605,0.27683,0.472369,0.627405,0.708177,0.667984,0.421828,0.649254,0.446311,0.632932,0.761878,0.819661,0.556693,0.663316,0.127971,0.57866,0.178087,0.981877,0.769211,0.146162,0.601708,0.162492,0.0433406,0.122391,0.981522,0.258242,0.344777,0.786792,0.694442,0.58032,0.706977,0.539583,0.587801,0.447141,0.794064,0.531271,0.238564,0.727347,0.60028,0.612067,0.690549,0.217398,0.45894,0.110158,0.451191,0.992485,0.560279,0.916517,0.597949,0.569401,0.772949,0.211952,0.632121,0.202605,0.781579,0.703523,0.196398,0.728732,0.153585,0.933459,0.52598,0.556878,0.457159,0.79432,0.0885295,0.514407,0.570118,0.446629,0.407809,0.998111,0.843563,0.127204,0.365025,0.659904,0.158008,0.494776,0.973593,0.499687,0.183366,0.963209,0.0816124,0.645701,0.683889,0.865442,0.562197,0.125506,0.704078,0.265514,0.214134,0.936978,0.309863,0.732808,0.142447,0.205267,0.712655,0.177844,0.773731,0.477153,0.513207,0.79488,0.420254,0.700347,0.38158,0.961744,0.97693,0.566215,0.274257,0.222337,0.313926,0.657782,0.42962,0.561142,0.815158,0.901802,0.367559,0.813238,0.254473,0.336272,0.96806,0.237595,0.0228053,0.515338,0.550233,0.438369,0.627492,0.301463,0.87687,0.345899,0.306218,0.6539,0.422964,0.898063,0.579495,0.767905,0.782608,0.234895,0.789622,0.275435,0.885764,0.959665,0.666519,0.527641,0.778235,0.642343,0.0843256,0.544812,0.877679,0.21624,0.450128,0.310837,0.869785,0.038096,0.548197,0.834547,0.124775,0.102005,0.647676,0.141938,0.0909125,0.849309,0.41812,0.833204,0.39169,0.993106,0.86493,0.780893,0.983503,0.568292,0.564458,0.302673,0.39728,0.429638,0.104531,0.947584,0.485141,0.4325,0.959141,0.474799,0.687408,0.72912,0.439843,0.947273,0.195933,0.148006,0.498098,0.159401,0.29148,0.14274,0.843682,0.983822,0.958685,0.351696,0.491127,0.0128173,0.244366,0.475889,0.676675,0.438222,0.885778,0.865951,0.0966696,0.88875,0.0613723,0.736807,0.800571,0.298122,0.373166,0.565969,0.643834,0.579262,0.347766,0.0482496,0.911274,0.949742,0.300167,0.216324,0.765658,0.846457,0.850647,0.68089,0.556709,0.344512,0.938419,0.372496,0.957655,0.76681,0.64231,0.855886,0.833293,0.926912,0.1913,0.55364,0.192221,0.174075,0.451337,0.318963,0.780993,0.185696,0.639276,0.633239,0.314431,0.875452,0.895415,0.382082,0.614658,0.166541,0.703327,0.738167,0.13429,0.868569,0.144425,0.804519,0.641497,0.212629,0.617444,0.843693,0.474675,0.088231,0.457548,0.924228,0.188027,0.0540239,0.361601,0.419139,0.643029,0.830532,0.426872,0.0268704,0.766083,0.986948,0.650608,0.644565,0.144154,0.825817,0.719987,0.759036,0.314205,0.453476,0.490994,0.793036,0.658413,0.106495,0.282972,0.53377,0.880466,0.517618,0.439818,0.702548,0.96814,0.934215,0.0187036,0.162689,0.208001,0.599871,0.58818,0.735064,0.301816,0.723638,0.779956,0.837544,0.769109,0.510955,0.124019,0.710428,0.514415,0.00287551,0.949531,0.514086,0.580389,0.752338,0.565043,0.625383,0.647112,0.403445,0.350669,0.309361,0.577384,0.488818,0.73084,0.350688,0.957338,0.38566,0.220999,0.251344,0.948991,0.288534,0.314861,0.132147,0.095292,0.348636,0.928516,0.894172,0.389291,0.760149,0.186884,0.0560778,0.0453125,0.745143,0.912725,0.5874,0.766677,0.782029,0.536071,0.943333,0.8597,0.852602,0.0424251,0.510812,0.926552,0.14789,0.94378,0.457127,0.339679,0.214986,0.825251,0.715087,0.727007,0.568637,0.423406,0.615781,0.822519,0.254121,0.314947,0.00558931,0.754826,0.655477,0.0995939,0.878342,0.788997,0.792283,0.71006,0.213589,0.571101,0.858421,0.264669,0.731096,0.434216,0.187478,0.0847301,0.559988,0.076673,0.567694,0.0687926,0.335046,0.356492,0.761848,0.463886,0.00790697,0.63624,0.400194,0.344315,0.0571378,0.753383,0.600306,0.386287,0.763649,0.102499,0.375966,0.435509,0.923559,0.75576,0.611153,0.971463,0.965634,0.935096,0.798071,0.544407,0.455713,0.442518,0.0669727,0.15915,0.887578,0.310639,0.219089,0.576131,0.565012,0.0856162,0.55367,0.400136,0.55768,0.616659,0.270976,0.445827,0.139709,0.315154,0.28629,0.294374,0.249302,0.558952,0.46699,0.613054,0.732643,0.492553,0.816557,0.020057,0.147021,0.885775,0.649208,0.559867,0.950054,0.0570036,0.401522,0.602921,0.734477,0.287935,0.928439,0.264394,0.537046,0.226614,0.858863,0.771232,0.936313,0.127413,0.723258,0.613212,0.335125,0.571816,0.93548,0.905306,0.974829,0.0259823,0.862724,0.817815,0.0255083,0.13754,0.0297207,0.825105,0.767289,0.479588,0.523767,0.756893,0.156859,0.537578,0.646718,0.108253,0.193997,0.075995,0.15692,0.530026,0.628045,0.561448,0.86326,0.771831,0.94605,0.931686,0.57346,0.0124896,0.661279,0.403238,0.116921,0.482525,0.859483,0.0943776,0.236176,0.901483,0.94971,0.545339,0.18027,0.331193,0.5726,0.927694,0.756802,0.988204,0.729232,0.252558,0.131144,0.395513,0.32238,0.112052,0.261819,0.53479,0.87893,0.0975652,0.340481,0.453168,0.944114,0.126661,0.821643,0.742695,0.980963,0.693201,0.816683,0.908135,0.50002,0.763625,0.540366,0.684207,0.635998,0.72072,0.942584,0.67272,0.056971,0.348644,0.202099,0.620425,0.504015,0.893872,0.18643,0.756916,0.854547,0.231479,0.16202,0.457077,0.344656,0.936125,0.899233,0.814611,0.0529617,0.933008,0.345794,0.280186,0.0320377,0.60294,0.925456,0.145563,0.728901,|0.745936,0.446525,0.19643,0.338634,0.41552,0.0340863,0.0816684,0.592133,0.273243,0.0436716,0.846298,0.0658572,0.0597732,0.54982,0.756761,0.458504,0.940856,0.851808,0.0345784,0.737924,0.960355,0.419163,0.977848,0.132034,0.179283,0.674571,0.616811,0.408964,0.575788,0.0814402,0.441645,0.691645,0.921296,0.37761,0.784649,0.497487,0.683982,0.319723,0.25598,0.287548,0.581176,0.663594,0.177443,0.280362,0.341798,0.432048,0.0335361,0.972339,0.803529,0.591725,0.188367,0.931371,0.805427,0.380714,0.690075,0.785991,0.390427,0.601082,0.555239,0.0336457,0.836916,0.521015,0.367102,0.516241,0.78529,0.572344,0.744994,0.432586,0.920277,0.76012,0.208563,0.874346,0.968229,0.430568,0.254861,0.642074,0.754163,0.361936,0.246493,0.0918808,0.29398,0.259942,0.471962,0.969347,0.826573,0.05319,0.911667,0.117606,0.87111,0.337524,0.727877,0.970753,0.57922,0.638357,0.523435,0.36004,0.431175,0.670842,0.267076,0.202585,0.72404,0.636306,0.177063,0.314409,0.0482544,0.841407,0.248581,0.887778,0.860464,0.546246,0.542184,0.929135,0.35997,0.63603,0.945723,0.202788,0.372079,0.65259,0.993864,0.583619,0.191756,0.986919,0.992135,0.815979,0.820456,0.206625,0.779738,0.622997,0.282902,0.921025,0.536863,0.655081,0.0993516,0.972136,0.313945,0.523799,0.675885,0.783319,0.461412,0.821794,0.674452,0.90766,0.916842,0.525056,0.412732,0.968649,0.690738,0.852811,0.591995,0.991169,0.229328,0.799873,0.372334,0.462209,0.338579,0.490358,0.517855,0.813857,0.766683,0.579581,0.573511,0.896668,0.445068,0.959263,0.265611,0.697058,0.683491,0.906873,0.813939,0.882602,0.955674,0.0478544,0.285865,0.717496,0.484139,0.750275,0.518819,0.942804,0.0575795,0.326569,0.121483,0.957391,0.403727,0.374739,0.477846,0.334175,0.772538,0.430208,0.512247,0.228591,0.174346,0.0336524,0.613649,0.390903,0.318944,0.96162,0.0357378,0.951992,0.460822,0.629263,0.7419,0.221002,0.376868,0.751639,0.516099,0.458755,0.172594,0.15549,0.00399125,0.277935,0.550328,0.647829,0.0748523,0.852416,0.73634,0.21939,0.27303,0.259908,0.275479,0.553149,0.642004,0.13878,0.0344949,0.379803,0.325163,0.580926,0.444861,0.774688,0.378538,0.0848197,0.444103,0.468268,0.773154,0.592134,0.154406,0.807633,0.446854,0.693353,0.159605,0.773689,0.212534,0.301551,0.489966,0.59911,0.696712,0.848514,0.653282,0.547898,0.586983,0.683613,0.147204,0.168174,0.455945,0.36495,0.899418,0.92816,0.53889,0.154777,0.0376189,0.230237,0.543713,0.653227,0.955571,0.718671,0.159602,0.0661871,0.397487,0.66539,0.367379,0.0849934,0.554842,0.159522,0.506556,0.493397,0.954836,0.597523,0.614384,0.62203,0.607538,0.297587,0.647624,0.27255,0.210829,0.985004,0.422316,0.530257,0.11353,0.495474,0.768796,0.271855,0.510195,0.380814,0.287007,0.19143,0.882833,0.681771,0.891906,0.246287,0.434557,0.791338,0.331196,0.906892,0.828713,0.936598,0.671296,0.0758733,0.389072,0.436989,0.0157815,0.0328776,0.793939,0.656238,0.519588,0.193106,0.294534,0.583384,0.682296,0.873061,0.456807,0.614164,0.129817,0.244155,0.700021,0.353119,0.656362,0.765135,0.86497,0.745393,0.37047,0.987557,0.0696329,0.0422373,0.806664,0.710429,0.670426,0.358959,0.878236,0.48169,0.951097,0.759865,0.147156,0.961232,0.0317968,0.988064,0.486094,0.675141,0.443029,0.0858555,0.31215,0.605049,0.565118,0.159973,0.548812,0.83707,0.508578,0.388085,0.801197,0.97906,0.523979,0.235003,0.796206,0.280055,0.398283,0.389065,0.635951,0.6168,0.578159,0.953156,0.301791,0.772879,0.989774,0.429019,0.462855,0.159014,0.434214,0.53806,0.906759,0.958656,0.758009,0.708291,0.581806,0.975918,0.505355,0.261182,0.750639,0.886312,0.118782,0.0397303,0.722006,0.521923,0.226311,0.487007,0.709743,0.634893,0.493218,0.381071,0.226658,0.335175,0.91169,0.935356,0.161568,0.577651,0.956475,0.625732,0.926561,0.19356,0.319116,0.05874,0.241845,0.914795,0.263223,0.652689,0.782854,0.280141,0.687692,0.148936,0.028241,0.720846,0.213141,0.130351,0.341967,0.814645,0.275028,0.0361962,0.655432,0.287225,0.118742,0.300076,0.168994,0.511971,0.735396,0.377538,0.513749,0.436626,0.648056,0.765203,0.677364,0.83755,0.768114,0.127276,0.366631,0.256257,0.853371,0.886699,0.191854,0.849438,0.0820367,0.698871,0.761228,0.367038,0.806631,0.45426,0.789702,0.894015,0.300974,0.614873,0.0348745,0.535323,0.0556519,0.343617,0.0290733,0.648244,0.138084,0.142109,0.108658,0.337653,0.65343,0.704037,0.68531,0.93825,0.37869,0.729961,0.215179,0.0341918,0.399444,0.662782,0.368948,0.436377,0.0659539,0.0906315,0.989756,0.236791,0.936262,0.87587,0.0906712,0.441517,0.895925,0.739497,0.522232,0.0785099,0.884521,0.233785,0.92234,0.727091,0.0627102,0.849687,0.59116,0.58935,0.882726,0.220586,0.367208,0.151195,0.192196,0.955164,0.418192,0.463924,0.60915,0.748947,0.210455,0.166075,0.955926,0.734914,0.658005,0.804114,0.736566,0.0117598,0.0938839,0.586956,0.731387,0.0115712,0.350555,0.862754,0.372626,0.422983,0.384873,0.10131,0.863611,0.961371,0.626682,0.799674,0.102825,0.601953,0.905017,0.671877,0.0863525,0.91377,0.953031,0.826757,0.307145,0.529609,0.193872,0.320892,0.0620211,0.751619,0.756169,0.763523,0.961996,0.806654,0.149515,0.982781,0.103625,0.203595,0.945551,0.293728,0.509467,0.513828,0.0715978,0.0426161,0.838591,0.557093,0.426721,0.978494,0.452373,0.868148,0.499044,0.824101,0.0193273,0.520367,0.383561,0.0794861,0.622171,0.502219,0.0580433,0.9223,0.335186,0.886714,0.0910013,0.275484,0.192462,0.380817,0.496775,0.331159,0.695999,0.298547,0.181709,0.135291,0.241873,0.635358,0.615671,0.706478,0.12115,0.827127,0.0168873,0.0943635,0.235456,0.237069,0.799802,0.0871839,0.828781,0.930622,0.292869,0.414964,0.534338,0.915032,0.728732,0.880066,0.575363,0.115308,0.759231,0.893695,0.88529,0.1576,0.561062,0.796659,0.0866855,0.766219,0.940902,0.152035,0.162296,0.273044,0.246197,0.858477,0.399878,0.0459471,0.199716,0.8037,0.190847,0.532749,0.327586,0.870557,0.139112,0.802182,0.213118,0.855899,0.404249,0.241273,0.169108,0.774295,0.284717,0.356193,0.373586,0.346865,0.727899,0.53212,0.715424,0.54079,0.294487,0.461631,0.0388284,0.0643303,0.94917,0.19806,0.607301,0.487249,0.464244,0.849914,0.583928,0.965983,0.453957,0.119182,0.764287,0.959771,0.157696,0.00252855,0.390372,0.197887,0.0226417,0.604841,0.229792,0.244664,0.468728,0.613128,0.750352,0.225344,0.787653,0.46301,0.285769,0.191811,0.246048,0.715851,0.415017,0.366041,0.188332,0.991587,0.710858,0.583576,0.526555,0.776976,0.366333,0.0839572,0.830213,0.434263,0.0865763,0.533045,0.996292,0.394946,0.622054,0.159945,0.466055,0.97094,0.58805,0.596268,0.953846,0.412828,0.607839,0.119135,0.382908,0.757619,0.2094,0.496174,0.738207,0.883357,0.802809,0.0153064,0.201464,0.635321,0.813272,0.792795,0.0285482,0.741407,0.360008,0.268086,0.224158,0.676611,0.688608,0.654627,0.870196,0.023867,0.607659,0.562851,0.725246,0.315439,0.542123,0.7305,0.0728416,0.0918422,0.763754,0.502179,0.0231726,0.385168,0.636901,0.966256,0.343212,0.957582,0.999206,0.0213056,0.812294,0.396698,0.49693,0.23882,0.797602,0.365309,0.733378,0.306938,0.575659,0.216027,0.0136851,0.666408,0.900495,0.065989,0.735576,0.802242,0.707055,0.46611,0.0560821,0.17758,0.0909652,0.426856,0.897311,0.886498,0.751423,0.249453,0.996099,0.208791,0.228068,0.423916,0.127596,0.0117344,0.01339,0.641531,0.700472,0.7965,0.945796,0.794338,0.575381,0.38252,0.346884,0.400326,0.259683,0.97194,0.195626,0.0410452,0.80423,0.122316,0.559229,0.214106,0.632623,0.590028,0.25354,0.0843711,0.0709684,0.588352,0.530758,0.417003,0.676682,0.665229,0.268767,0.655165,0.192649,0.0417819,0.63981,0.300008,0.691331,0.645741,0.676167,0.977162,0.754364,0.531955,0.542566,0.216682,0.920061,0.0208746,0.316425,0.0955797,0.133819,0.833382,0.714938,0.357045,0.14661,0.773066,0.17004,0.70819,0.829315,0.642474,0.333145,0.501976,0.6474,0.104425,0.787884,0.273065,0.762126,0.81877,0.864403,0.00599229,0.398378,0.0170529,0.201394,0.449112,0.355241,0.456622,0.541665,0.863777,0.723101,0.885154,0.342083,0.510501,0.481508,0.584203,0.332406,0.560754,0.774848,0.893043,0.902384,0.737285,0.825748,0.379851,0.527449,0.152243,0.197858,0.750428,0.00187802,0.400905,0.722457,0.903659,0.712968,0.188307,0.214459,0.71632,0.184425,0.939888,0.558221,0.800291,0.611448,0.776843,0.998672,0.318101,0.669628,0.871278,0.943816,0.956943,0.990309,0.490115,0.58579,0.548975,0.613165,0.712326,0.893088,0.36077,0.0431679,0.379576,0.311664,0.211592,0.675275,0.216642,0.882018,0.0932248,0.821793,0.25268,0.744483,0.197909,0.293666,0.770033,0.428324,0.32657,0.135563,0.328779,0.24194,0.563645,0.569075,0.965459,0.678664,0.554491,0.326392,0.633358,0.152267,0.411105,0.102972,0.64929,0.933457,0.651169,0.194296,0.844704,0.20577,0.941785,0.569994,0.93032,0.283976,0.412437,0.190432,0.893998,0.487594,0.941131,0.827921,0.961535,0.363593,0.438538,0.0900241,0.594723,0.859762,0.940896,0.850312,0.470381,0.108145,0.754873,0.783879,0.518456,0.895515,0.139868,0.548326,0.684253,0.812805,0.563852,0.826682,0.527938,0.990466,0.894489,0.855666,0.901693,0.325,0.37314,0.907626,0.109156,0.401221,0.337399,0.67986,0.295565,0.326516,0.333158,0.686409,0.0694665,0.0586727,0.797584,0.626673,0.400471,0.602324,0.376019,0.467988,0.680303,0.723437,0.885053,0.845085,0.578693,0.284747,0.367478,0.97362,0.84186,0.61736,0.219374,0.792569,0.828555,|0.0423461,0.462241,0.210421,0.322803,0.888523,0.278781,0.779559,0.380564,0.408666,0.51019,0.865271,0.658693,0.677979,0.405325,0.415759,0.126307,0.0645922,0.821968,0.444543,0.422035,0.637526,0.734059,0.977112,0.561796,0.657418,0.934839,0.988395,0.078455,0.458967,0.9015,0.0916662,0.319965,0.853404,0.170716,0.232311,0.705481,0.254819,0.413129,0.923293,0.745553,0.132112,0.0791211,0.872895,0.178805,0.1277,0.175264,0.778079,0.521014,0.13899,0.0511338,0.684132,0.94645,0.626569,0.486462,0.766572,0.0815321,0.987137,0.112844,0.555559,0.385027,0.390364,0.54136,0.119884,0.384667,0.71473,0.227562,0.109174,0.759976,0.658749,0.195584,0.914405,0.451149,0.199709,0.94722,0.287414,0.725086,0.454519,0.814599,0.460546,0.772084,0.395394,0.916042,0.334993,0.773431,0.55495,0.559824,0.866098,0.644472,0.468929,0.245599,0.075484,0.00607932,0.113019,0.871859,0.751835,0.234068,0.450437,0.883508,0.559908,0.852247,0.441639,0.432352,0.968848,0.885681,0.120493,0.606692,0.120011,0.999831,0.382876,0.503695,0.787159,0.940266,0.00816721,0.580053,0.455453,0.145817,0.285868,0.18462,0.208636,0.274946,0.248795,0.24713,0.330572,0.283743,0.098415,0.703824,0.122262,0.89411,0.673181,0.277974,0.873513,0.244663,0.637369,0.870599,0.687347,0.202324,0.83927,0.129036,0.498018,0.696056,0.640642,0.186381,0.126199,0.830523,0.735256,0.719399,0.424603,0.614759,0.50473,0.586212,0.450483,0.648671,0.874537,0.189114,0.142402,0.375944,0.118443,0.613584,0.700104,0.195973,0.947126,0.686698,0.524801,0.71283,0.695789,0.000348747,0.635067,0.594942,0.933011,0.184819,0.241773,0.191692,0.176775,0.632692,0.0295035,0.578578,0.866275,0.999734,0.521648,0.8659,0.740525,0.703232,0.809858,0.723904,0.693127,0.019636,0.0346367,0.363918,0.165383,0.468851,0.0225105,0.207173,0.955253,0.0120126,0.144137,0.121386,0.399817,0.209137,0.364878,0.437302,0.426527,0.673554,0.303753,0.908091,0.448999,0.337365,0.656683,0.366742,0.170834,0.618479,0.35825,0.819751,0.036607,0.00486422,0.0484726,0.112462,0.216896,0.416529,0.345527,0.11349,0.304076,0.825474,0.665984,0.720367,0.706971,0.191262,0.378668,0.978868,0.424329,0.530841,0.894609,0.360577,0.372405,0.396059,0.247451,0.060627,0.145053,0.50027,0.0178229,0.796795,0.583766,0.355788,0.686189,0.792293,0.190574,0.275927,0.0730339,0.171407,0.223356,0.843393,0.303609,0.959415,0.463266,0.836294,0.187372,0.831386,0.862961,0.141159,0.402448,0.133989,0.229401,0.20208,0.358101,0.62287,0.83068,0.852309,0.597574,0.146684,0.201567,0.0810244,0.575312,0.358505,0.668309,0.398404,0.881326,0.167114,0.977936,0.41289,0.425321,0.72894,0.118009,0.0888383,0.871471,0.46228,0.387996,0.138521,0.797259,0.187967,0.326099,0.943828,0.914246,0.569559,0.326863,0.817512,0.364748,0.507222,0.401613,0.0388001,0.783548,0.264124,0.0415561,0.782555,0.241104,0.538637,0.70606,0.0471449,0.127757,0.559849,0.814342,0.553051,0.832401,0.287255,0.576183,0.050679,0.334542,0.346304,0.762595,0.0745245,0.0113136,0.714247,0.0629277,0.527867,0.167277,0.595653,0.584003,0.865848,0.688895,0.176645,0.826321,0.633386,0.371365,0.198018,0.968943,0.32479,0.912027,0.0664731,0.0342223,0.378803,0.0223224,0.439749,0.775646,0.875103,0.484475,0.719212,0.510038,0.397741,0.0846081,0.293242,0.643227,0.858658,0.922213,0.841747,0.120321,0.860653,0.215002,0.821903,0.610476,0.841909,0.625481,0.385037,0.178647,0.388044,0.0893363,0.323706,0.2541,0.771266,0.156894,0.403618,0.670415,0.940364,0.357169,0.424042,0.100848,0.0671973,0.844046,0.0612872,0.326401,0.996983,0.728433,0.316475,0.300451,0.842425,0.51332,0.169451,0.908862,0.570499,0.826631,0.785758,0.980036,0.702241,0.152588,0.598843,0.491459,0.178557,0.158116,0.241905,0.967087,0.104819,0.825502,0.855536,0.76871,0.066735,0.17461,0.51056,0.906025,0.110002,0.662408,0.834,0.56053,0.371336,0.204966,0.859113,0.283691,0.594437,0.202312,0.986013,0.992619,0.249891,0.0421322,0.663947,0.295602,0.717838,0.952447,0.713082,0.500512,0.960921,0.542481,0.269238,0.862363,0.759038,0.800566,0.565837,0.497339,0.951073,0.469585,0.394888,0.0634199,0.673818,0.7968,0.187397,0.647022,0.127966,0.452875,0.448711,0.360184,0.505581,0.777252,0.210543,0.13335,0.505726,0.0977173,0.845284,0.272846,0.898684,0.146809,0.468485,0.545613,0.427509,0.81886,0.437894,0.636025,0.808795,0.67809,0.0594434,0.778697,0.868209,0.614931,0.809271,0.157555,0.264565,0.0478507,0.82144,0.394867,0.700436,0.243463,0.332181,0.302558,0.720622,0.362683,0.352043,0.881436,0.155784,0.880093,0.146295,0.761242,0.636389,0.7749,0.318794,0.131338,0.111949,0.926019,0.591674,0.0583057,0.620669,0.268445,0.461308,0.116923,0.923479,0.290983,0.00308442,0.467728,0.691368,0.931119,0.295214,0.658866,0.972485,0.420024,0.678311,0.379739,0.245915,0.385241,0.0865463,0.692755,0.758172,0.0872248,0.023499,0.95643,0.215259,0.940864,0.342952,0.705341,0.817124,0.647541,0.870456,0.721519,0.17201,0.641541,0.76294,0.384737,0.287861,0.339766,0.884118,0.771959,0.522702,0.767217,0.627415,0.46359,0.396714,0.806149,0.0897431,0.798501,0.598739,0.203042,0.530031,0.59184,0.630498,0.689799,0.665956,0.756298,0.511567,0.412931,0.458161,0.920619,0.284565,0.1915,0.590839,0.97366,0.920683,0.292078,0.9148,0.279687,0.749473,0.0422907,0.58138,0.0868096,0.0115806,0.608139,0.158177,0.940704,0.315501,0.694034,0.862284,0.47998,0.192483,0.444908,0.550251,0.0123853,0.103933,0.221394,0.668586,0.723139,0.604443,0.427291,0.527067,0.18031,0.691268,0.940254,0.821725,0.750437,0.596134,0.192302,0.0128245,0.426836,0.308386,0.46856,0.963265,0.902716,0.824772,0.570952,0.955277,0.748122,0.952376,0.979086,0.2443,0.2566,0.355981,0.588192,0.864338,0.566459,0.988554,0.588192,0.608931,0.0445373,0.614126,0.176582,0.766057,0.2038,0.989763,0.999922,0.829342,0.455327,0.861869,0.432829,0.960258,0.112234,0.0604503,0.609299,0.37266,0.83871,0.827454,0.562778,0.81702,0.285377,0.902664,0.0968322,0.730853,0.00425845,0.604289,0.226411,0.0511448,0.177302,0.431703,0.0938674,0.671596,0.531605,0.526863,0.538438,0.158534,0.905191,0.326724,0.347748,0.0326365,0.0813483,0.604427,0.5439,0.306744,0.231167,0.882231,0.745959,0.0831399,0.366463,0.0276024,0.923322,0.111757,0.80911,0.323239,0.643428,0.770319,0.70285,0.71162,0.417194,0.915851,0.203024,0.921279,0.473236,0.717317,0.86601,0.0305173,0.339543,0.351005,0.733103,0.694397,0.832573,0.18019,0.590942,0.701931,0.971578,0.263144,0.355558,0.394048,0.120183,0.361051,0.439864,0.843331,0.381019,0.285038,0.177745,0.0927448,0.706646,0.555198,0.503527,0.350658,0.494446,0.915639,0.245657,0.959693,0.454479,0.860603,0.306978,0.233764,0.787963,0.768624,0.989844,0.791606,0.118613,0.370087,0.383577,0.632979,0.00538117,0.958724,0.606695,0.777228,0.100271,0.44281,0.738613,0.761815,0.498931,0.252205,0.901658,0.104852,0.455138,0.423382,0.0779234,0.0884483,0.944045,0.107829,0.127126,0.864294,0.0310309,0.545576,0.0324523,0.868637,0.597023,0.0931011,0.00708896,0.934648,0.273682,0.961997,0.854504,0.764574,0.269834,0.00748074,0.41869,0.326208,0.170805,0.723855,0.255724,0.0797161,0.566874,0.947412,0.388858,0.484815,0.992985,0.350849,0.820668,0.482797,0.339161,0.305929,0.841653,0.92645,0.11374,0.611957,0.243765,0.356348,0.158026,0.0127376,0.0981854,0.513299,0.05523,0.727617,0.368872,0.710415,0.720302,0.692813,0.91677,0.123729,0.6311,0.60905,0.802457,0.907651,0.88634,0.215823,0.86946,0.663231,0.0479378,0.502693,0.33778,0.173049,0.610168,0.456155,0.0881169,0.237173,0.975361,0.127159,0.418183,0.840492,0.496967,0.667679,0.698311,0.523693,0.551004,0.67591,0.677352,0.674488,0.859627,0.282174,0.0939071,0.27445,0.332728,0.957177,0.985532,0.524687,0.740469,0.627832,0.952702,0.920172,0.225619,0.0286195,0.429739,0.0860785,0.78169,0.10156,0.630688,0.357365,0.555008,0.56978,0.531621,0.348858,0.752903,0.0907445,0.304637,0.640217,0.487489,0.201857,0.478532,0.548625,0.25015,0.156966,0.917501,0.629033,0.325296,0.284127,0.811173,0.307673,0.280441,0.892134,0.176298,0.718696,0.690601,0.138102,0.875683,0.279213,0.198825,0.620202,0.781208,0.990106,0.0103615,0.169576,0.744607,0.471882,0.176965,0.165367,0.0966997,0.402935,0.314922,0.536454,0.777478,0.896843,0.340187,0.457914,0.540911,0.885532,0.573548,0.689938,0.317436,0.904658,0.82497,0.743943,0.889134,0.291292,0.169256,0.853752,0.734935,0.542366,0.554855,0.190028,0.962895,0.278305,0.337953,0.370315,0.220691,0.25603,0.221964,0.703646,0.728651,0.288078,0.348851,0.13451,0.0503812,0.086695,0.26464,0.504547,0.103732,0.726563,0.994274,0.0958737,0.856976,0.593031,0.438798,0.482742,0.0625478,0.67248,0.397139,0.750844,0.911219,0.524599,0.473192,0.993098,0.974308,0.0836433,0.880567,0.308799,0.523451,0.730915,0.356535,0.334418,0.788151,0.137417,0.0136661,0.25904,0.126048,0.806749,0.142255,0.324307,0.710172,0.630584,0.297209,0.199904,0.867493,0.284499,0.174563,0.0888185,0.211559,0.76231,0.228578,0.264925,0.60514,0.337731,0.348278,0.375585,0.769766,0.996377,0.0887172,0.379088,0.803819,0.922059,0.31665,0.687006,0.284702,0.183713,0.156643,0.677964,0.770889,0.0332767,0.274267,0.701682,0.626847,0.757562,0.601903,0.460568,0.611447,0.978946,0.715515,0.513697,0.212499,0.0241173,0.998454,0.836878,0.965326,0.701498,0.0410571,0.75389,0.753614,0.151312,0.203973,0.992896,0.337752,0.812334,0.877709,0.0433545,|0.179783,0.461424,0.382106,0.0518582,0.454325,0.509281,0.365295,0.683776,0.465332,0.252124,0.33473,0.773915,0.540944,0.0246513,0.923565,0.708847,0.500375,0.787934,0.640538,0.579089,0.806648,0.299225,0.941814,0.343256,0.748631,0.780086,0.30805,0.463926,0.519902,0.474534,0.0285793,0.849999,0.926233,0.987665,0.617901,0.684897,0.36973,0.00511479,0.640709,0.823358,0.423954,0.0883719,0.376929,0.529298,0.14816,0.619898,0.764296,0.758075,0.998503,0.358841,0.529875,0.932066,0.142122,0.712336,0.593796,0.451599,0.675916,0.393408,0.587923,0.0737825,0.152561,0.22242,0.419489,0.38738,0.287618,0.796241,0.397651,0.0306424,0.573818,0.146723,0.39669,0.146441,0.39907,0.260025,0.530399,0.122986,0.350275,0.997873,0.423007,0.878517,0.412282,0.144349,0.170721,0.87784,0.960667,0.717327,0.330691,0.789738,0.0569661,0.451072,0.41619,0.0438097,0.169302,0.139764,0.625478,0.858454,0.809563,0.266702,0.773934,0.259605,0.757354,0.605096,0.659206,0.344221,0.874201,0.623336,0.626324,0.65946,0.104329,0.13038,0.264595,0.792632,0.819909,0.750485,0.742897,0.702311,0.607195,0.722097,0.306732,0.0659673,0.932741,0.514535,0.506842,0.213585,0.649565,0.222243,0.798088,0.725879,0.748832,0.839528,0.115819,0.0542329,0.00832039,0.0976024,0.919035,0.557286,0.261645,0.328685,0.946572,0.685045,0.557269,0.913554,0.197806,0.29902,0.213787,0.458861,0.210858,0.266209,0.290497,0.604058,0.264194,0.364889,0.914727,0.213553,0.442028,0.28603,0.289918,0.917607,0.54997,0.485666,0.0194196,0.467464,0.742523,0.492341,0.93975,0.0559424,0.70162,0.816484,0.0978503,0.681948,0.041679,0.811276,0.559032,0.968319,0.284446,0.0103155,0.537345,0.295879,0.873417,0.908691,0.67494,0.147195,0.810539,0.575098,0.173925,0.921854,0.0549319,0.405538,0.861338,0.230045,0.330564,0.341916,0.908073,0.299116,0.383384,0.502722,0.901369,0.178152,0.93873,0.380504,0.54882,0.982875,0.0720366,0.216988,0.97657,0.229741,0.0924847,0.281636,0.987973,0.0519723,0.680494,0.690907,0.345338,0.403609,0.661208,0.401528,0.402917,0.460379,0.690784,0.2364,0.946104,0.449486,0.864418,0.995333,0.959785,0.74198,0.10511,0.0819077,0.31926,0.617564,0.52393,0.716646,0.0605048,0.972892,0.519254,0.626003,0.604027,0.884787,0.923454,0.716424,0.852824,0.570595,0.564407,0.398923,0.41539,0.0886435,0.062243,0.163433,0.660867,0.40698,0.244892,0.884581,0.386016,0.411855,0.382074,0.30639,0.647076,0.253563,0.724028,0.163094,0.617468,0.438975,0.265682,0.906815,0.772071,0.138235,0.604858,0.280632,0.339103,0.878966,0.724064,0.598291,0.889065,0.198729,0.77883,0.10144,0.236108,0.055574,0.364811,0.247477,0.548544,0.904218,0.560041,0.669034,0.0399897,0.697872,0.556579,0.757165,0.495328,0.426123,0.590807,0.189054,0.247472,0.646644,0.428661,0.386524,0.37918,0.665213,0.835247,0.894883,0.185059,0.993952,0.444104,0.50528,0.561834,0.321162,0.650876,0.0468023,0.884221,0.688589,0.820521,0.495076,0.168082,0.916088,0.929407,0.909309,0.104681,0.690239,0.532594,0.950091,0.614139,0.114104,0.460213,0.380773,0.655261,0.571676,0.416395,0.147434,0.384319,0.148298,0.297187,0.424245,0.540468,0.0202358,0.74368,0.0185857,0.479833,0.244896,0.834351,0.969591,0.788857,0.0280939,0.403439,0.379665,0.172477,0.124191,0.670384,0.925789,0.237309,0.368098,0.87504,0.496204,0.474339,0.910504,0.381634,0.793273,0.940913,0.155371,0.00398117,0.987366,0.66062,0.546765,0.528438,0.486458,0.841955,0.603668,0.795569,0.117228,0.7717,0.101464,0.645137,0.563346,0.737864,0.297394,0.580073,0.0353765,0.575925,0.817598,0.510578,0.333069,0.330358,0.542831,0.453385,0.83303,0.878865,0.566748,0.709363,0.0574056,0.457853,0.512731,0.931611,0.482309,0.931072,0.651706,0.577679,0.694872,0.526846,0.0815479,0.180399,0.260239,0.737321,0.0181444,0.932217,0.553889,0.320945,0.273347,0.283938,0.998666,0.199262,0.328631,0.634836,0.0660003,0.96659,0.22321,0.134433,0.48596,0.995296,0.869719,0.595233,0.319919,0.147352,0.406339,0.115614,0.0269142,0.256997,0.374482,0.34542,0.672713,0.333122,0.404218,0.983049,0.544976,0.582867,0.530718,0.896065,0.309003,0.764716,0.910662,0.221651,0.124118,0.0259783,0.847105,0.234472,0.903794,0.0911077,0.66027,0.787591,0.522963,0.966893,0.563388,0.591201,0.0494788,0.708744,0.0543516,0.168301,0.323964,0.0669013,0.143456,0.361682,0.50872,0.580667,0.607024,0.0287987,0.534575,0.13,0.697544,0.346342,0.544397,0.885369,0.4306,0.2763,0.37444,0.927656,0.268525,0.75076,0.379741,0.680586,0.476012,0.0392179,0.732453,0.3961,0.130743,0.816216,0.526859,0.944301,0.988051,0.742601,0.56938,0.75708,0.677033,0.112545,0.954688,0.655917,0.0176724,0.0659114,0.19102,0.801297,0.691413,0.985007,0.988487,0.411865,0.471566,0.902219,0.0681533,0.940669,0.193062,0.661057,0.373458,0.758926,0.184962,0.933337,0.522858,0.0914717,0.105,0.954287,0.798178,0.329551,0.899717,0.180862,0.441887,0.559028,0.510449,0.59825,0.0491587,0.889755,0.637668,0.482783,0.514853,0.834433,0.341504,0.966899,0.500928,0.967915,0.348164,0.387488,0.555466,0.959764,0.220693,0.0233826,0.440493,0.123332,0.969405,0.709379,0.698743,0.910202,0.481421,0.831575,0.830732,0.0920274,0.851124,0.0184383,0.0411363,0.520905,0.119948,0.888701,0.633867,0.377069,0.925748,0.195329,0.995661,0.359899,0.940965,0.104632,0.0195884,0.983951,0.382559,0.830887,0.794406,0.99657,0.552181,0.773351,0.224056,0.548621,0.823202,0.93925,0.970885,0.30408,0.862565,0.424026,0.54403,0.588346,0.213174,0.55251,0.26853,0.0722547,0.249202,0.171031,0.745762,0.511113,0.797027,0.432907,0.829468,0.130994,0.952088,0.248319,0.835544,0.779293,0.0618429,0.381714,0.728357,0.496182,0.2578,0.30251,0.950961,0.873787,0.54431,0.77672,0.409606,0.124901,0.427927,0.284252,0.775203,0.528954,0.150755,0.473763,0.751359,0.460389,0.384602,0.119727,0.428975,0.0127571,0.054118,0.638773,0.887073,0.790517,0.63514,0.373899,0.62776,0.643976,0.849536,0.121735,0.856922,0.658065,0.494185,0.64408,0.0524931,0.762133,0.913171,0.538381,0.907031,0.747617,0.0971792,0.141528,0.28475,0.875844,0.838932,0.413772,0.554038,0.0141473,0.68746,0.584643,0.978393,0.616711,0.729627,0.4218,0.0135625,0.800148,0.109461,0.456701,0.179717,0.105958,0.344486,0.092577,0.464261,0.0255572,0.140875,0.396049,0.542886,0.226703,0.711052,0.081194,0.131707,0.671552,0.632857,0.794504,0.000424385,0.252898,0.857897,0.402546,0.289412,0.752403,0.837096,0.0486461,0.561035,0.179295,0.498449,0.139204,0.358517,0.362457,0.00211,0.419387,0.484739,0.784896,0.125758,0.552429,0.0441239,0.454543,0.582411,0.282184,0.905556,0.772484,0.0262727,0.469122,0.807157,0.458979,0.688616,0.126826,0.0801562,0.251509,0.0182782,0.190605,0.389612,0.836838,0.674648,0.386721,0.145005,0.094827,0.942233,0.897349,0.278926,0.501632,0.378991,0.749329,0.501615,0.611779,0.043654,0.436206,0.931544,0.881612,0.937717,0.449721,0.614642,0.722064,0.786547,0.607104,0.883088,0.707813,0.460555,0.0518997,0.968005,0.62888,0.332041,0.156302,0.0630306,0.668171,0.420988,0.00149292,0.686737,0.663729,0.592228,0.172818,0.812944,0.17446,0.935742,0.975009,0.375181,0.562194,0.633147,0.190691,0.463783,0.750484,0.774469,0.167199,0.737339,0.660598,0.906047,0.442408,0.701771,0.606103,0.465272,0.432216,0.42274,0.139375,0.469105,0.890138,0.480335,0.232619,0.502846,0.955808,0.6684,0.13076,0.938312,0.360083,0.790399,0.248741,0.929492,0.224859,0.596649,0.0131969,0.292192,0.018701,0.667306,0.139098,0.0824324,0.625476,0.432793,0.692898,0.904033,0.464482,0.886946,0.986275,0.950012,0.33441,0.717091,0.571163,0.982301,0.392742,0.29796,0.0132535,0.847791,0.531427,0.783489,0.306161,0.309345,0.346261,0.393895,0.50381,0.459036,0.30229,0.359905,0.704723,0.657986,0.98163,0.361402,0.265055,0.691085,0.736434,0.646366,0.570401,0.725923,0.62428,0.348713,0.670447,0.949591,0.929615,0.244765,0.639555,0.446148,0.958495,0.631366,0.614089,0.00602835,0.23203,0.215667,0.972258,0.0172256,0.806072,0.34822,0.00772321,0.738887,0.128825,0.990443,0.159561,0.00531816,0.766892,0.720351,0.519766,0.591244,0.234127,0.91738,0.317308,0.596002,0.845176,0.312482,0.759815,0.873841,0.526442,0.603791,0.641229,0.0424227,0.230645,0.966301,0.411465,0.711177,0.333357,0.811431,0.920659,0.323546,0.566544,0.696788,0.148283,0.224345,0.524429,0.982829,0.00160664,0.781653,0.319454,0.850667,0.713328,0.514775,0.0127472,0.935308,0.516338,0.189331,0.364369,0.376677,0.191693,0.175354,0.464736,0.0342132,0.554886,0.245024,0.0980407,0.224153,0.989597,0.169217,0.379078,0.524845,0.629224,0.399544,0.632119,0.409832,0.411592,0.0759783,0.441779,0.921278,0.49787,0.236153,0.355369,0.242028,0.377608,0.290617,0.280855,0.00653696,0.896041,0.00852358,0.547227,0.806514,0.963958,0.625548,0.317087,0.663233,0.674547,0.977112,0.3846,0.644393,0.732739,0.0268055,0.768523,0.241461,0.644232,0.242212,0.47624,0.506405,0.561621,0.700781,0.718209,0.946806,0.0953039,0.376088,0.683215,0.709085,0.972507,0.597628,0.966239,0.206575,0.713441,0.947432,0.165087,0.774999,0.721466,0.577735,0.452628,0.464533,0.954814,0.638162,0.41653,0.222424,0.711548,0.50557,0.486756,0.188866,0.714347,0.552265,0.322415,0.956719,0.578059,0.522356,0.808613,0.137697,0.0818648,0.778984,0.311848,0.232731,0.932589,0.677827,0.0256152,0.733283,0.961486,0.331256,0.221865,0.0925223,0.005041,0.127144,0.522088,0.289395,0.376229,0.581607,0.72201,0.634013,|0.202882,0.808423,0.545145,0.526438,0.559096,0.416231,0.611874,0.185317,0.51946,0.475666,0.709453,0.465228,0.376571,0.778162,0.0957188,0.35848,0.26585,0.637962,0.303649,0.325908,0.726583,0.719541,0.0801495,0.0963609,0.573541,0.325152,0.974368,0.0171142,0.0952355,0.917753,0.948428,0.988,0.856989,0.400481,0.6724,0.460516,0.881357,0.794323,0.457456,0.597273,0.762548,0.954501,0.22781,0.239516,0.679364,0.600808,0.562824,0.229368,0.933015,0.704207,0.813235,0.53,0.767915,0.77185,0.056913,0.600246,0.9252,0.974262,0.194477,0.415153,0.167864,0.503567,0.753669,0.520857,0.438208,0.430792,0.681901,0.427381,0.0947977,0.612676,0.592945,0.879669,0.742472,0.0977265,0.936064,0.806773,0.64023,0.685659,0.213441,0.296276,0.85666,0.458499,0.676255,0.176095,0.690658,0.914302,0.0700377,0.558973,0.662296,0.0932091,0.827498,0.672277,0.631997,0.986293,0.862038,0.39716,0.59146,0.664059,0.51624,0.184406,0.13637,0.994447,0.875232,0.606724,0.30066,0.840735,0.288778,0.878436,0.456704,0.701978,0.26675,0.861475,0.0193725,0.893034,0.445794,0.512248,0.138427,0.686189,0.0470699,0.0460956,0.172549,0.474939,0.265575,0.390744,0.571973,0.539586,0.37467,0.79372,0.258344,0.437153,0.633784,0.346452,0.750099,0.0222295,0.652098,0.04899,0.0235219,0.68827,0.380672,0.120412,0.0371637,0.045269,0.562356,0.846667,0.553557,0.80493,0.471033,0.661258,0.965051,0.883262,0.928795,0.191616,0.403317,0.947416,0.832792,0.51629,0.995644,0.805577,0.412167,0.871345,0.91848,0.334927,0.516623,0.511929,0.76465,0.0775414,0.541972,0.176589,0.15203,0.200396,0.137717,0.237235,0.229884,0.519848,0.129024,0.535618,0.303372,0.297401,0.308692,0.36307,0.904214,0.751566,0.142072,0.0993775,0.761514,0.247486,0.580029,0.383909,0.617914,0.677794,0.631053,0.822216,0.13633,0.296099,0.405181,0.828749,0.275632,0.342049,0.092134,0.74497,0.397087,0.51477,0.975426,0.108458,0.624682,0.522265,0.961034,0.519861,0.506642,0.100414,0.923267,0.878304,0.767255,0.73976,0.561784,0.305358,0.604466,0.0641761,0.0298073,0.815373,0.34414,0.485506,0.954636,0.0347711,0.308506,0.891325,0.373022,0.461096,0.93941,0.8832,0.01993,0.846326,0.616026,0.186604,0.457393,0.554257,0.542969,0.257334,0.140182,0.358405,0.0230486,0.472348,0.982355,0.45877,0.698013,0.962039,0.387251,0.200337,0.301543,0.0188091,0.37872,0.110542,0.536499,0.25252,0.956332,0.189171,0.251096,0.692497,0.493044,0.601099,0.130456,0.653144,0.507965,0.854294,0.115287,0.235166,0.0544806,0.339891,0.356577,0.022021,0.461665,0.0321314,0.2626,0.455261,0.0870212,0.538349,0.426463,0.257411,0.980472,0.107401,0.754629,0.867964,0.813092,0.581418,0.39203,0.231347,0.4615,0.600315,0.953317,0.949385,0.60242,0.365628,0.865047,0.175934,0.784308,0.604467,0.816853,0.828392,0.53386,0.895641,0.946645,0.119084,0.628311,0.322774,0.650389,0.794132,0.816609,0.109835,0.679848,0.257206,0.354543,0.618542,0.598994,0.216276,0.977628,0.43433,0.445333,0.205084,0.502883,0.064586,0.722607,0.512642,0.149365,0.791852,0.956422,0.590047,0.048789,0.320806,0.669872,0.69223,0.0851833,0.42562,0.871747,0.971219,0.898277,0.646843,0.758799,0.00116128,0.287728,0.0225248,0.0494778,0.622492,0.557134,0.501806,0.857378,0.153795,0.241007,0.472188,0.551323,0.46144,0.829095,0.580636,0.749,0.879458,0.894703,0.244906,0.556552,0.820564,0.298886,0.936475,0.0989082,0.017353,0.446997,0.832419,0.789492,0.569396,0.695894,0.524619,0.373081,0.468712,0.87311,0.975269,0.148965,0.91184,0.920113,0.532153,0.790211,0.773973,0.77728,0.47308,0.0694775,0.805557,0.121593,0.782121,0.500076,0.167734,0.349415,0.498262,0.779154,0.863063,0.0808208,0.455774,0.930411,0.0355608,0.14639,0.650685,0.331169,0.695622,0.925259,0.962278,0.433582,0.0319449,0.159447,0.0525151,0.417437,0.665517,0.927761,0.16678,0.727017,0.342392,0.0578707,0.556055,0.0986177,0.716075,0.407739,0.59085,0.756989,0.820194,0.453146,0.70892,0.228494,0.614482,0.866206,0.604307,0.939691,0.71369,0.195987,0.340917,0.287052,0.338947,0.47564,0.222084,0.415593,0.466401,0.0784536,0.932805,0.0813534,0.909584,0.15643,0.638304,0.843419,0.793404,0.60538,0.272517,0.59141,0.0020687,0.500085,0.0994038,0.0630292,0.466517,0.377866,0.47314,0.31471,0.236522,0.669275,0.343382,0.313601,0.815588,0.00876534,0.444183,0.685586,0.764764,0.894416,0.394559,0.644268,0.62889,0.207758,0.0135851,0.95258,0.235569,0.12429,0.400808,0.438565,0.718709,0.416924,0.599318,0.698533,0.927539,0.0201929,0.107367,0.639373,0.714109,0.822056,0.41215,0.58191,0.89846,0.0374266,0.784897,0.614495,0.911685,0.895659,0.145105,0.00877768,0.649259,0.516183,0.0596235,0.751052,0.473151,0.492478,0.732733,0.3319,0.256195,0.872632,0.259068,0.99665,0.550176,0.782699,0.793429,0.83229,0.467281,0.763322,0.493175,0.165559,0.910362,0.237146,0.432351,0.0971106,0.081526,0.369732,0.979053,0.970851,0.741046,0.714336,0.255186,0.246036,0.0653144,0.148125,0.732495,0.261902,0.976745,0.846899,0.494649,0.113942,0.179862,0.657972,0.705292,0.88569,0.610777,0.172923,0.423932,0.384054,0.79,0.10057,0.948768,0.984419,0.454687,0.728036,0.145159,0.518178,0.437621,0.786805,0.256401,0.684053,0.120333,0.75282,0.494115,0.737432,0.0723155,0.057373,0.392066,0.0195891,0.885325,0.950667,0.655981,0.142079,0.498557,0.522562,0.220571,0.492438,0.987432,0.0300633,0.547827,0.157881,0.225916,0.406297,0.163079,0.158867,0.444928,0.856575,0.751917,0.631688,0.444526,0.16911,0.898749,0.418173,0.682797,0.895833,0.54354,0.563123,0.458328,0.131065,0.304179,0.0199147,0.810818,0.305215,0.536532,0.307474,0.225194,0.254389,0.561826,0.413802,0.9336,0.247246,0.619978,0.403547,0.762355,0.918655,0.395186,0.700187,0.0558093,0.203611,0.123012,0.546389,0.338445,0.178988,0.89896,0.929882,0.674033,0.0290781,0.759936,0.173054,0.640342,0.736893,0.645596,0.266296,0.120445,0.224509,0.80868,0.455953,0.845991,0.725981,0.188975,0.226459,0.284957,0.970996,0.512521,0.785531,0.718641,0.0149472,0.384161,0.48245,0.744318,0.517885,0.99642,0.416356,0.896086,0.0891082,0.0793506,0.184854,0.863124,0.738167,0.768164,0.555413,0.618388,0.071489,0.14448,0.129245,0.0829535,0.0373567,0.454258,0.868885,0.797107,0.333114,0.0572316,0.801654,0.316651,0.339984,0.493186,0.25476,0.00706023,0.447316,0.402909,0.276847,0.694342,0.320845,0.599986,0.0646564,0.6801,0.225712,0.439797,0.746202,0.833523,0.0635158,0.406939,0.426509,0.587196,0.465152,0.467582,0.0312158,0.996546,0.895185,0.521035,0.164355,0.902383,0.899374,0.643782,0.173361,0.000949681,0.736041,0.802666,0.180143,0.0656736,0.659714,0.0118604,0.790869,0.208615,0.74396,0.0810872,0.877592,0.770383,0.969466,0.25811,0.16735,0.107331,0.725159,0.797751,0.542141,0.661747,0.424711,0.434318,0.844001,0.121719,0.889065,0.600655,0.430382,0.816856,0.575632,0.323735,0.704812,0.453965,0.834718,0.406172,0.721583,0.407561,0.117949,0.419134,0.758768,0.755487,0.491239,0.794833,0.344995,0.973545,0.678464,0.558352,0.358614,0.332289,0.134985,0.96415,0.189674,0.516133,0.627757,0.381759,0.944241,0.118239,0.9483,0.691533,0.12241,0.724117,0.742362,0.865723,0.575702,0.414824,0.913369,0.44709,0.155077,0.466765,0.728865,0.266525,0.471084,0.898577,0.193645,0.492256,0.716682,0.747046,0.811126,0.00983649,0.473133,0.312678,0.992227,0.934155,0.106881,0.656138,0.924381,0.986887,0.157978,0.691318,0.441964,0.0713868,0.74384,0.419929,0.692746,0.179287,0.642833,0.525217,0.0237697,0.654286,0.119101,0.0935566,0.239791,0.927693,0.76323,0.882479,0.381791,0.902588,0.751056,0.452568,0.543486,0.0752931,0.411909,0.397811,0.308074,0.0680614,0.465704,0.515516,0.260608,0.640878,0.565938,0.606166,0.746964,0.429373,0.880046,0.712327,0.122658,0.699473,0.997705,0.091782,0.982474,0.349385,0.850183,0.934991,0.181265,0.380093,0.833659,0.684895,0.111013,0.756845,0.37377,0.31369,0.924419,0.487281,0.762656,0.785643,0.36064,0.418174,0.224663,0.597612,0.691461,0.745619,0.237835,0.655738,0.709467,0.223005,0.726204,0.0509619,0.985598,0.480831,0.86687,0.338204,0.728188,0.502651,0.424963,0.428681,0.165245,0.898786,0.845539,0.70131,0.950513,0.594543,0.710031,0.80539,0.170414,0.807748,0.213436,0.574378,0.398572,0.614566,0.0689569,0.0819549,0.183659,0.536587,0.107775,0.19828,0.443165,0.809394,0.987183,0.426127,0.725065,0.195814,0.753413,0.877494,0.192871,0.219281,0.608326,0.956739,0.993143,0.349131,0.254665,0.0227839,0.956172,0.591089,0.2079,0.459233,0.80383,0.608074,0.647547,0.766607,0.964262,0.0793176,0.352569,0.137023,0.43354,0.564224,0.375526,0.812554,0.971336,0.335935,0.951546,0.857776,0.690846,0.125251,0.678093,0.219843,0.179068,0.223981,0.747691,0.805044,0.958833,0.19023,0.825025,0.0644626,0.419083,0.296048,0.681945,0.193979,0.983024,0.126925,0.517951,0.311719,0.815964,0.851437,0.868607,0.0924032,0.62901,0.664029,0.630933,0.366081,0.545476,0.789667,0.0135713,0.912747,0.818879,0.184759,0.381293,0.307119,0.181303,0.361749,0.0964366,0.656648,0.961063,0.717786,0.585873,0.667769,0.472092,0.163053,0.525214,0.0741639,0.19476,0.0012874,0.60136,0.180308,0.9611,0.260462,0.813354,0.814622,0.170286,0.257958,0.568035,0.499724,0.810947,0.382345,0.74298,0.499211,0.295988,0.353166,0.135217,0.97112,0.342424,0.753492,0.745206,0.178501,0.022836,0.5393,0.25233,0.355573,0.41322,0.922486,0.131523,0.0205341,0.240254,0.0139215,|0.447339,0.290146,0.148467,0.162949,0.609408,0.951913,0.786276,0.15568,0.713598,0.348375,0.135567,0.855377,0.182826,0.971017,0.314559,0.76856,0.443507,0.592115,0.13142,0.257551,0.935315,0.871963,0.463001,0.245647,0.243449,0.496523,0.494296,0.393744,0.543651,0.203674,0.984698,0.881365,0.615604,0.3449,0.689442,0.257842,0.513153,0.160963,0.829054,0.792086,0.900491,0.0635669,0.332041,0.545807,0.837439,0.423871,0.145279,0.0398352,0.493306,0.55219,0.138014,0.0379629,0.502235,0.898989,0.230533,0.238802,0.205527,0.63953,0.727638,0.207246,0.0930959,0.448372,0.677455,0.0566194,0.21102,0.183614,0.0302118,0.393001,0.339321,0.914612,0.600082,0.755912,0.912674,0.12621,0.553991,0.722882,0.668863,0.906361,0.861022,0.260401,0.768234,0.655303,0.412322,0.756987,0.573953,0.801664,0.330189,0.936752,0.0582165,0.534064,0.791771,0.83052,0.885291,0.469823,0.411204,0.275595,0.63824,0.906963,0.254229,0.0334301,0.936341,0.147588,0.830118,0.921128,0.814874,0.0372364,0.649533,0.641703,0.778267,0.607512,0.317715,0.833367,0.901329,0.687291,0.397644,0.365991,0.97403,0.728769,0.231763,0.193061,0.64254,0.251928,0.99377,0.642848,0.831248,0.675133,0.525314,0.689759,0.146142,0.0959021,0.66973,0.641667,0.423554,0.811876,0.156431,0.898777,0.920044,0.931166,0.0866876,0.612605,0.40855,0.0900862,0.12982,0.0240492,0.149053,0.104961,0.67063,0.81126,0.127105,0.932999,0.807815,0.98374,0.357714,0.823696,0.22949,0.832391,0.518562,0.859472,0.830373,0.800807,0.255046,0.588897,0.166686,0.725822,0.836361,0.577914,0.739867,0.407777,0.142764,0.754621,0.975589,0.746658,0.847544,0.6425,0.452775,0.0270835,0.756252,0.108834,0.233028,0.29007,0.935444,0.303622,0.295015,0.427303,0.0986206,0.471058,0.381099,0.461677,0.577802,0.427237,0.443728,0.674866,0.449527,0.115985,0.838129,0.0270338,0.258813,0.853788,0.429382,0.243389,0.716789,0.392426,0.241787,0.392529,0.156355,0.545397,0.62142,0.955241,0.984559,0.936346,0.774517,0.37453,0.561182,0.157486,0.333213,0.483861,0.757504,0.490625,0.59617,0.75541,0.713642,0.261758,0.430267,0.692532,0.0217495,0.759955,0.0123833,0.808642,0.751526,0.933736,0.331822,0.426069,0.483406,0.560018,0.950895,0.966309,0.76941,0.753065,0.339144,0.0456704,0.253434,0.0013575,0.883081,0.877075,0.641286,0.0464766,0.644348,0.0978898,0.677438,0.403676,0.959154,0.246616,0.980022,0.110239,0.605151,0.88189,0.598037,0.258154,0.749361,0.0721385,0.939518,0.340716,0.882435,0.481444,0.335769,0.113213,0.882313,0.464799,0.5122,0.505434,0.908212,0.823928,0.086558,0.535279,0.914487,0.164423,0.923741,0.451072,0.287134,0.836611,0.828005,0.175156,0.0779027,0.372048,0.760767,0.60538,0.969826,0.0504357,0.300574,0.815559,0.504787,0.337101,0.945235,0.736764,0.485525,0.737578,0.0685092,0.754751,0.696217,0.75581,0.620924,0.798599,0.901062,0.128605,0.148946,0.211153,0.446299,0.834484,0.97657,0.961984,0.709978,0.760838,0.27791,0.947355,0.732575,0.655761,0.97461,0.707099,0.435064,0.89442,0.369444,0.0430784,0.92124,0.13303,0.990091,0.851382,0.657737,0.0167332,0.848239,0.941647,0.223876,0.644285,0.67792,0.271369,0.125725,0.634818,0.298015,0.786315,0.687015,0.738212,0.930365,0.397885,0.556901,0.32513,0.981453,0.452375,0.397493,0.75443,0.831806,0.672037,0.925137,0.358764,0.0602084,0.432965,0.262475,0.882955,0.390951,0.028517,0.916137,0.109929,0.425127,0.611917,0.381863,0.468046,0.141133,0.0140998,0.700753,0.647792,0.959356,0.634013,0.486685,0.0294273,0.392952,0.255415,0.515142,0.0787687,0.168165,0.91278,0.434852,0.632761,0.633815,0.40523,0.256009,0.262347,0.85496,0.979167,0.457603,0.936241,0.0912541,0.763169,0.986952,0.0747349,0.326321,0.707096,0.197054,0.0982398,0.450205,0.890795,0.214675,0.376486,0.555463,0.243646,0.750227,0.673651,0.0724968,0.218505,0.0122899,0.0257267,0.799184,0.694633,0.360314,0.740104,0.238804,0.370905,0.704856,0.179607,0.642358,0.430008,0.815056,0.39556,0.65019,0.690096,0.356514,0.810396,0.825123,0.0610694,0.409817,0.299366,0.235528,0.572136,0.865493,0.999361,0.702554,0.0226596,0.789776,0.237108,0.869614,0.179021,0.378984,0.9917,0.60455,0.134374,0.708795,0.856839,0.757193,0.700581,0.140077,0.880893,0.65264,0.956299,0.954776,0.955453,0.122758,0.282585,0.545202,0.0492455,0.889772,0.448775,0.576744,0.325203,0.782572,0.566292,0.788693,0.673472,0.255584,0.713292,0.863934,0.147869,0.128765,0.453848,0.2143,0.4098,0.251693,0.602407,0.987865,0.192711,0.350882,0.750011,0.0127147,0.106442,0.753685,0.119402,0.942496,0.0929229,0.626884,0.394962,0.123303,0.646829,0.409576,0.302903,0.413294,0.506934,0.82836,0.701502,0.0625657,0.423071,0.164886,0.0233492,0.751322,0.826656,0.0368736,0.435383,0.633792,0.551987,0.892864,0.0944173,0.330859,0.94366,0.0253017,0.386501,0.821591,0.524428,0.652855,0.222178,0.810791,0.750131,0.912555,0.981511,0.274195,0.394244,0.422756,0.874116,0.712083,0.47825,0.447647,0.16679,0.471994,0.913039,0.755099,0.677872,0.762598,0.525156,0.710639,0.541921,0.144985,0.128326,0.241,0.0873551,0.358075,0.555772,0.241072,0.515548,0.0251682,0.98218,0.164913,0.580938,0.654383,0.362799,0.850996,0.908687,0.790181,0.944982,0.279938,0.33059,0.165509,0.268951,0.50364,0.419884,0.473476,0.0531074,0.271614,0.217674,0.775761,0.801833,0.508788,0.361189,0.838214,0.825472,0.778209,0.43347,0.99296,0.789558,0.152636,0.0657679,0.672673,0.348524,0.0239829,0.987637,0.618937,0.802533,0.748064,0.330277,0.57989,0.841324,0.456066,0.528815,0.235515,0.659843,0.795131,0.0628048,0.711346,0.596082,0.315976,0.62718,0.874601,0.835894,0.28636,0.93528,0.533717,0.789158,0.754252,0.361039,0.835076,0.166741,0.473086,0.646669,0.701957,0.801702,0.849744,0.248874,0.0633763,0.124311,0.62261,0.317612,0.768876,0.427893,0.638643,0.197634,0.815077,0.231828,0.76667,0.746191,0.938709,0.362498,0.354956,0.541364,0.457087,0.303885,0.476143,0.280381,0.758885,0.55255,0.903073,0.715903,0.107089,0.901036,0.147757,0.225997,0.894613,0.324844,0.894101,0.242798,0.729512,0.457421,0.345213,0.751344,0.872416,0.802145,0.392173,0.177753,0.863371,0.961991,0.657307,0.000596344,0.0731691,0.767123,0.732702,0.48757,0.461865,0.420284,0.384066,0.367645,0.913036,0.945022,0.348823,0.414501,0.577641,0.781253,0.501839,0.118138,0.139031,0.444843,0.660848,0.22196,0.878757,0.770928,0.239403,0.0544496,0.116101,0.0167908,0.232908,0.526426,0.566937,0.0464866,0.694273,0.343401,0.855407,0.967869,0.719499,0.630987,0.610267,0.00152266,0.0678367,0.254736,0.140951,0.60248,0.0449418,0.797,0.477847,0.446884,0.544487,0.35265,0.497377,0.926312,0.756686,0.415207,0.883853,0.0688487,0.0764076,0.151728,0.252597,0.516977,0.860111,0.282071,0.278996,0.90671,0.997509,0.175286,0.802264,0.804376,0.386052,0.605695,0.143822,0.550623,0.61921,0.933904,0.616373,0.878859,0.708476,0.946116,0.72721,0.732019,0.918062,0.534446,0.912455,0.726418,0.124857,0.224683,0.544555,0.78035,0.738406,0.306084,0.385481,0.365204,0.3551,0.0879136,0.786745,0.369648,0.32703,0.625148,0.605668,0.466548,0.10035,0.0918517,0.676574,0.0753117,0.277717,0.955126,0.685331,0.579234,0.0983276,0.2974,0.747555,0.826363,0.0406029,0.960975,0.0360852,0.0343037,0.74229,0.400763,0.679009,0.588724,0.521847,0.356382,0.701045,0.366423,0.195521,0.188839,0.922665,0.160359,0.276147,0.269283,0.621401,0.908464,0.527463,0.84088,0.959926,0.993621,0.671912,0.877047,0.122927,0.859682,0.741859,0.70759,0.17406,0.635592,0.854344,0.121025,0.527589,0.616928,0.149153,0.331375,0.565752,0.441659,0.37469,0.583607,0.847835,0.892934,0.647495,0.157759,0.897568,0.414126,0.128209,0.0231423,0.823157,0.340986,0.800263,0.418989,0.304264,0.300251,0.0659584,0.35841,0.929294,0.162852,0.631466,0.0213204,0.425424,0.730967,0.956127,0.581966,0.0601678,0.251029,0.942408,0.915069,0.848007,0.359413,0.0401866,0.923492,0.725932,0.644473,0.00750881,0.353669,0.902339,0.868055,0.12472,0.583682,0.688683,0.77173,0.171047,0.0194105,0.0968649,0.0971527,0.728286,0.00504589,0.750726,0.795829,0.50888,0.582617,0.110356,0.327565,0.235251,0.371428,0.934829,0.899737,0.661467,0.264965,0.428355,0.320552,0.336252,0.457515,0.162052,0.849154,0.559293,0.667833,0.222546,0.955041,0.417286,0.974921,0.509423,0.260842,0.818824,0.265508,0.398254,0.565887,0.865228,0.137743,0.251519,0.424377,0.226046,0.998013,0.511824,0.848546,0.399459,0.76812,0.964026,0.660284,0.614616,0.110003,0.00147402,0.448999,0.557347,0.0742918,0.059068,0.816867,0.510273,0.278779,0.184762,0.379472,0.44748,0.901981,0.601722,0.704118,0.935123,0.198975,0.392904,0.10439,0.79931,0.86847,0.229397,0.343992,0.0173995,0.417328,0.0707548,0.971251,0.536649,0.915396,0.258425,0.806303,0.322388,0.449995,0.361471,0.923879,0.743158,0.762844,0.0844358,0.737647,0.487756,0.896481,0.628961,0.0315655,0.201797,0.457388,0.259675,0.679311,0.702944,0.306351,0.179291,0.549904,0.262722,0.230868,0.676138,0.823877,0.349622,0.82318,0.700327,0.204891,0.526785,0.695365,0.990668,0.440779,0.662779,0.0319471,0.613633,0.183059,0.0944641,0.911356,0.758868,0.165533,0.476824,0.147383,0.721033,0.82461,0.192915,0.345987,0.388839,0.237667,0.659984,0.313087,0.244266,0.697982,0.795914,0.804947,0.545342,0.49673,0.362277,0.602478,0.20791,0.490629,0.695674,0.210577,0.0839071,0.999845,0.848698,0.107118,0.100362,0.642652,0.377013,0.171421,0.602474,0.789779,|0.573198,0.644009,0.50773,0.716884,0.139942,0.11882,0.0530015,0.0495265,0.0869279,0.894826,0.159051,0.274302,0.194969,0.832595,0.172788,0.538454,0.35486,0.586999,0.781963,0.847096,0.593488,0.415395,0.831627,0.556826,0.648504,0.537048,0.435098,0.274065,0.97747,0.711822,0.162226,0.860789,0.94089,0.476964,0.221146,0.0473757,0.0217371,0.899154,0.247165,0.119993,0.432192,0.70857,0.597479,0.281983,0.386303,0.417304,0.579103,0.751548,0.792977,0.885243,0.782533,0.217834,0.244528,0.27517,0.381873,0.987207,0.159869,0.622994,0.75953,0.449284,0.804034,0.653745,0.351337,0.908159,0.118657,0.63527,0.803787,0.765106,0.312782,0.79131,0.0436583,0.91293,0.377265,0.709725,0.952244,0.720704,0.519252,0.400447,0.990197,0.820139,0.167467,0.129419,0.695293,0.658166,0.319335,0.486512,0.156612,0.984861,0.835858,0.156466,0.64153,0.691958,0.160948,0.328562,0.367332,0.703207,0.377964,0.770365,0.497053,0.370015,0.648446,0.620573,0.00622886,0.428867,0.14768,0.0783135,0.521397,0.290448,0.0706073,0.860175,0.649853,0.369287,0.0523336,0.472917,0.620589,0.450997,0.0352009,0.104341,0.40735,0.101017,0.970857,0.350812,0.766378,0.109562,0.957994,0.0473904,0.0832161,0.317298,0.326742,0.774772,0.0449142,0.179979,0.0778578,0.917077,0.204647,0.162097,0.232842,0.655154,0.262967,0.529948,0.774952,0.938367,0.0961456,0.765353,0.727925,0.752149,0.88965,0.603053,0.400902,0.100655,0.730947,0.515302,0.121258,0.649934,0.783038,0.6048,0.727377,0.0797331,0.140962,0.0300659,0.664729,0.113492,0.389617,0.601497,0.917349,0.995535,0.0523066,0.866832,0.697826,0.0896702,0.94463,0.212787,0.279703,0.290151,0.614891,0.27019,0.496229,0.336353,0.465978,0.218702,0.503192,0.351048,0.537343,0.187245,0.160617,0.294291,0.56714,0.355324,0.920628,0.220098,0.374327,0.893509,0.233207,0.575775,0.315711,0.617743,0.368183,0.911529,0.56686,0.769859,0.735148,0.22217,0.745583,0.968308,0.573827,0.560638,0.581789,0.0166709,0.501717,0.972239,0.242832,0.344433,0.153432,0.169893,0.773348,0.94175,0.874548,0.628819,0.368095,0.866008,0.448132,0.0507955,0.807778,0.274155,0.322179,0.968964,0.72152,0.278866,0.161275,0.504911,0.745426,0.151568,0.319196,0.543826,0.0467418,0.885555,0.497456,0.291853,0.260485,0.602958,0.782195,0.42724,0.466011,0.732397,0.674833,0.9582,0.143584,0.240961,0.354502,0.869185,0.324963,0.742789,0.318252,0.164126,0.222105,0.599305,0.0634688,0.906526,0.249431,0.187173,0.104669,0.431754,0.969411,0.78615,0.964981,0.845815,0.77642,0.417338,0.824867,0.135726,0.173461,0.228216,0.766435,0.521448,0.124525,0.567417,0.159122,0.902138,0.372475,0.0334172,0.892175,0.855792,0.333413,0.723297,0.651025,0.00164038,0.0702159,0.261301,0.992172,0.802208,0.756961,0.160031,0.588839,0.488784,0.205371,0.276599,0.324969,0.545418,0.98703,0.934609,0.206537,0.371587,0.252094,0.482713,0.349537,0.43753,0.881488,0.506431,0.575903,0.206223,0.221769,0.470981,0.332177,0.643161,0.869054,0.328139,0.927392,0.663854,0.924747,0.642546,0.469874,0.506589,0.631828,0.702667,0.154685,0.36024,0.261258,0.141395,0.616496,0.107073,0.326126,0.886928,0.463887,0.320522,0.432401,0.453137,0.526404,0.630745,0.90701,0.362049,0.606007,0.754633,0.543897,0.745234,0.647664,0.944288,0.834239,0.902679,0.880027,0.842013,0.961706,0.0178109,0.370774,0.455229,0.227844,0.679689,0.784755,0.240174,0.794434,0.061794,0.81464,0.805068,0.394293,0.416658,0.814479,0.0426256,0.700231,0.835146,0.34018,0.0642478,0.0657762,0.340289,0.679466,0.283191,0.542617,0.38204,0.142404,0.793014,0.573792,0.74689,0.741153,0.231177,0.587231,0.538345,0.647651,0.542534,0.180407,0.304695,0.409442,0.0553182,0.291967,0.522592,0.512704,0.00609493,0.619885,0.842401,0.984523,0.0422543,0.719731,0.908711,0.260174,0.374155,0.314185,0.447155,0.54245,0.0797969,0.667735,0.22457,0.451541,0.550693,0.247104,0.767424,0.914494,0.36877,0.648295,0.951819,0.59572,0.873857,0.734327,0.985775,0.582051,0.48114,0.745522,0.395655,0.455608,0.759202,0.458306,0.905221,0.700402,0.66065,0.0237936,0.447607,0.0126718,0.00548124,0.0852804,0.231432,0.455969,0.514812,0.157,0.284011,0.674554,0.773678,0.442767,0.802553,0.343757,0.478453,0.787624,0.340007,0.101382,0.225438,0.486987,0.3961,0.417442,0.574276,0.668924,0.077046,0.279336,0.831191,0.832311,0.0572588,0.0682548,0.0712706,0.71966,0.298929,0.231644,0.241869,0.148758,0.354117,0.448607,0.815156,0.022194,0.60356,0.330732,0.223273,0.0168478,0.72675,0.151848,0.0199901,0.839302,0.345161,0.822782,0.412531,0.243881,0.381058,0.0472069,0.773493,0.731547,0.381842,0.508877,0.165787,0.620917,0.600302,0.308718,0.83337,0.784417,0.0669557,0.592817,0.0774147,0.180564,0.147689,0.942369,0.994883,0.835945,0.575364,0.923357,0.0590755,0.84737,0.667535,0.87722,0.997177,0.0946206,0.548157,0.88512,0.899521,0.496591,0.739266,0.973468,0.315509,0.173414,0.84785,0.249184,0.588899,0.201691,0.613479,0.337482,0.841302,0.603978,0.0797635,0.850919,0.79774,0.491914,0.627864,0.573409,0.29184,0.0188664,0.744059,0.524703,0.648039,0.777112,0.464531,0.832897,0.658679,0.865856,0.239693,0.269632,0.850137,0.319049,0.799304,0.770133,0.396271,0.871191,0.440619,0.509489,0.330983,0.723938,0.301989,0.844017,0.514283,0.677744,0.286884,0.854356,0.922813,0.559901,0.288192,0.554433,0.174381,0.70526,0.657906,0.685558,0.433962,0.829523,0.758197,0.0271505,0.101535,0.396449,0.490003,0.864044,0.114754,0.274215,0.407532,0.699639,0.262739,0.208335,0.0297109,0.819496,0.768036,0.727175,0.768465,0.958631,0.86025,0.891817,0.195915,0.712539,0.154695,0.945171,0.421427,0.101425,0.0222781,0.275672,0.117458,0.0452149,0.820901,0.671827,0.669154,0.430642,0.252725,0.646548,0.115148,0.281214,0.199398,0.670146,0.943639,0.765362,0.18891,0.163529,0.912093,0.797141,0.576399,0.453456,0.30173,0.932012,0.501321,0.0313623,0.69435,0.638438,0.844647,0.651259,0.405646,0.594386,0.0580005,0.330277,0.949882,0.23726,0.714678,0.873699,0.381226,0.528096,0.0663344,0.361564,0.809774,0.718723,0.638102,0.0774951,0.0586583,0.670692,0.293925,0.634082,0.479657,0.166091,0.526876,0.855122,0.719502,0.656946,0.511242,0.246536,0.0264515,0.276371,0.594282,0.688137,0.748323,0.836893,0.735121,0.336516,0.939486,0.926504,0.472268,0.997795,0.728839,0.0579035,0.296215,0.533284,0.791486,0.123329,0.516678,0.638197,0.728152,0.866719,0.91279,0.960599,0.863758,0.152141,0.720633,0.337891,0.0979941,0.506432,0.42286,0.154419,0.875578,0.693095,0.287726,0.92676,0.371698,0.616242,0.38295,0.824258,0.058369,0.619431,0.15671,0.478228,0.0112754,0.289429,0.986211,0.237627,0.62425,0.583362,0.100384,0.726885,0.49354,0.478355,0.156759,0.530992,0.132869,0.94124,0.961936,0.155116,0.944329,0.973631,0.187514,0.56074,0.801464,0.644704,0.259864,0.784651,0.372737,0.253902,0.95258,0.907009,0.546458,0.610995,0.391011,0.836418,0.981326,0.245893,0.28101,0.93215,0.342312,0.240648,0.926492,0.339613,0.967512,0.568394,0.696151,0.401133,0.524531,0.882007,0.365974,0.722638,0.735727,0.804499,0.478911,0.418189,0.166336,0.889257,0.156515,0.0105638,0.144463,0.937008,0.808643,0.153109,0.832716,0.33791,0.695372,0.365222,0.0975994,0.980183,0.906316,0.479552,0.44174,0.168191,0.138003,0.562851,0.943826,0.472408,0.662233,0.571438,0.456395,0.628961,0.76477,0.63148,0.478917,0.678982,0.956706,0.112515,0.41407,0.25831,0.595405,0.771768,0.961865,0.516315,0.946709,0.721277,0.956545,0.750862,0.144864,0.501223,0.503309,0.678797,0.689819,0.0543847,0.6272,0.883632,0.921051,0.328026,0.231469,0.0269295,0.255159,0.172877,0.613378,0.676195,0.505095,0.0474702,0.736942,0.909549,0.892975,0.194361,0.791607,0.36311,0.981139,0.32876,0.378545,0.472545,0.900925,0.833568,0.2253,0.598606,0.870155,0.377681,0.48112,0.76009,0.0857213,0.603728,0.722682,0.454828,0.0784203,0.224241,0.680519,0.15474,0.871663,0.441283,0.132047,0.0557602,0.101963,0.143814,0.928143,0.248211,0.685028,0.140194,0.675633,0.360218,0.668911,0.247957,0.605175,0.685402,0.657675,0.433576,0.237432,0.911955,0.565921,0.671252,0.671773,0.366672,0.973157,0.167431,0.753412,0.936781,0.550084,0.929228,0.749669,0.024766,0.136077,0.803796,0.584194,0.141976,0.9759,0.397089,0.953876,0.0693136,0.72618,0.314421,0.640807,0.75621,0.834953,0.637986,0.21002,0.995965,0.971085,0.109716,0.313624,0.380246,0.0917832,0.100569,0.279416,0.672274,0.357346,0.74297,0.672074,0.758494,0.310475,0.52344,0.406931,0.723245,0.520229,0.205226,0.54277,0.198014,0.0874031,0.607215,0.725633,0.920537,0.239631,0.938777,0.745605,0.813829,0.608966,0.452393,0.802856,0.739361,0.851936,0.170247,0.864643,0.942339,0.770661,0.0933122,0.464837,0.681877,0.41576,0.180548,0.103664,0.684746,0.18911,0.362092,0.817687,0.956094,0.771825,0.779935,0.256964,0.609161,0.268941,0.392595,0.139904,0.410384,0.753744,0.671246,0.297831,0.553413,0.739663,0.126905,0.780307,0.212031,0.777549,0.369608,0.832517,0.305725,0.692562,0.0792736,0.189151,0.889592,0.0235161,0.625277,0.345887,0.423573,0.550351,0.832628,0.20521,0.64674,0.494428,0.0840001,0.342438,0.410859,0.80728,0.669754,0.0545701,0.973722,0.260592,0.687568,0.911641,0.35069,0.205915,0.0227656,0.226893,0.998815,0.0824423,0.668982,0.232449,0.988626,0.684705,0.593804,0.357515,0.674136,0.692628,0.22427,0.742187,0.7311,0.102086,0.603963,0.0489953,0.694736,0.175012,0.925663,0.837413,|0.126708,0.369449,0.194185,0.644592,0.632837,0.555795,0.303347,0.666106,0.87932,0.86026,0.639419,0.0278985,0.654415,0.136976,0.600538,0.488915,0.74972,0.75781,0.164254,0.821974,0.0181127,0.518279,0.605751,0.596797,0.345866,0.897841,0.692396,0.935029,0.444457,0.658991,0.105299,0.201673,0.300135,0.109777,0.197174,0.424891,0.680163,0.315402,0.373845,0.888808,0.536765,0.936292,0.638865,0.696274,0.323428,0.936244,0.703754,0.574347,0.984694,0.78865,0.508096,0.828012,0.443343,0.562931,0.223443,0.436268,0.555519,0.935016,0.521364,0.507257,0.0308057,0.395533,0.965498,0.235932,0.73236,0.853291,0.662181,0.927922,0.214853,0.511517,0.311066,0.140903,0.263841,0.910185,0.316584,0.847829,0.521429,0.710678,0.889515,0.380888,0.758962,0.264151,0.314238,0.876134,0.58291,0.851741,0.280411,0.00471532,0.885025,0.102505,0.465631,0.808612,0.691197,0.970268,0.653697,0.636588,0.666984,0.193758,0.191459,0.616527,0.464705,0.646473,0.51798,0.379707,0.74082,0.316528,0.439798,0.20156,0.331698,0.491049,0.0611586,0.713132,0.767278,0.310016,0.457693,0.0850967,0.119392,0.741738,0.701956,0.28806,0.223094,0.516535,0.796649,0.943865,0.52762,0.924416,0.301197,0.915072,0.0833474,0.588731,0.380847,0.364457,0.697289,0.180961,0.624514,0.477926,0.32748,0.320207,0.498141,0.192462,0.701289,0.208332,0.985399,0.836568,0.169484,0.822146,0.308087,0.317648,0.0217726,0.448036,0.921349,0.495713,0.551981,0.607389,0.0824674,0.962916,0.844583,0.733257,0.200598,0.0589559,0.5866,0.356895,0.35476,0.143098,0.993945,0.694428,0.587818,0.585587,0.0988858,0.724413,0.0106829,0.361842,0.423288,0.883231,0.360804,0.131279,0.22885,0.793315,0.357455,0.0367842,0.310703,0.825668,0.239727,0.895572,0.671904,0.0936198,0.809492,0.00773114,0.96801,0.78539,0.187665,0.174799,0.88477,0.555664,0.200076,0.862663,0.0541803,0.767204,0.271238,0.96532,0.0611938,0.509848,0.095835,0.285455,0.335423,0.465825,0.617034,0.120515,0.22601,0.703356,0.469453,0.641832,0.894669,0.283838,0.925887,0.392284,0.575396,0.893378,0.0904247,0.535107,0.517468,0.475242,0.660782,0.072873,0.384353,0.0967739,0.840885,0.911359,0.882273,0.462873,0.788451,0.244608,0.847191,0.00117594,0.882533,0.773633,0.401307,0.518351,0.468461,0.7404,0.121717,0.454796,0.488518,0.666034,0.456163,0.411855,0.514258,0.634644,0.178367,0.0888853,0.885657,0.810707,0.390167,0.446055,0.305836,0.395534,0.195481,0.967842,0.127853,0.321345,0.659206,0.654163,0.49821,0.725595,0.705791,0.187609,0.945301,0.233307,0.243679,0.205487,0.390027,0.806395,0.616118,0.826856,0.94442,0.363149,0.708859,0.768933,0.657876,0.182415,0.631663,0.797768,0.368592,0.669054,0.0342689,0.201203,0.763279,0.49417,0.760632,0.217737,0.206104,0.943764,0.51602,0.0766945,0.551225,0.360946,0.418003,0.0601303,0.428676,0.546794,0.418297,0.258277,0.339934,0.806964,0.283567,0.376288,0.545661,0.892388,0.900097,0.284629,0.809499,0.947495,0.041668,0.39686,0.985994,0.774089,0.505369,0.962749,0.480113,0.596735,0.08745,0.746469,0.212612,0.562819,0.742614,0.194025,0.625844,0.650103,0.233793,0.715793,0.784918,0.57391,0.507831,0.171956,0.878689,0.717234,0.525514,0.73554,0.928171,0.139983,0.621377,0.383678,0.349298,0.409928,0.0442246,0.223452,0.0557072,0.888879,0.875562,0.752837,0.628764,0.588925,0.838541,0.545107,0.325986,0.265105,0.344071,0.0989492,0.274911,0.403413,0.514136,0.424357,0.675761,0.915506,0.716646,0.942642,0.129394,0.192865,0.364101,0.896959,0.395982,0.147957,0.129229,0.956271,0.854694,0.655943,0.427665,0.388908,0.37557,0.673099,0.842383,0.359958,0.201149,0.584527,0.981801,0.394542,0.0171711,0.662257,0.361015,0.503613,0.462672,0.17353,0.631039,0.646493,0.419793,0.0837562,0.343545,0.97598,0.172827,0.709445,0.797573,0.172203,0.201961,0.0682452,0.46619,0.890918,0.689087,0.1606,0.508133,0.10849,0.819301,0.369392,0.817978,0.889445,0.00427639,0.844748,0.518184,0.438873,0.311928,0.187619,0.517451,0.944401,0.348841,0.787076,0.630555,0.965332,0.625552,0.639323,0.356477,0.228992,0.197565,0.971292,0.742022,0.576474,0.829039,0.595766,0.190135,0.491781,0.778639,0.752292,0.361228,0.427253,0.247723,0.0838769,0.167651,0.954671,0.851603,0.782467,0.676745,0.947849,0.949693,0.190087,0.00962543,0.288953,0.887877,0.500937,0.0646235,0.897884,0.650191,0.277396,0.340696,0.957712,0.951386,0.980229,0.47803,0.314106,0.405227,0.569077,0.155881,0.687966,0.0805709,0.398198,0.651755,0.0694988,0.88588,0.497268,0.62202,0.769511,0.647109,0.581631,0.739712,0.693156,0.392197,0.110432,0.555223,0.347103,0.498546,0.0822296,0.0160661,0.926577,0.972888,0.79324,0.583714,0.612895,0.425918,0.847545,0.654455,0.481856,0.997857,0.832843,0.544143,0.244885,0.991508,0.865109,0.181417,0.407324,0.923674,0.553601,0.759664,0.748956,0.786901,0.992993,0.335029,0.418471,0.960485,0.970038,0.48857,0.0827548,0.658185,0.606368,0.943158,0.776305,0.0680313,0.399959,0.0819212,0.598039,0.13787,0.453763,0.399081,0.521453,0.238662,0.561512,0.784341,0.850554,0.137964,0.159591,0.0768416,0.236904,0.583808,0.94629,0.95129,0.645674,0.627237,0.211539,0.135927,0.885328,0.307984,0.209962,0.59397,0.315762,0.387083,0.792376,0.402336,0.347081,0.76331,0.449814,0.741398,0.320841,0.904112,0.988091,0.585729,0.13932,0.520188,0.498412,0.586232,0.765022,0.968858,0.314375,0.846011,0.438206,0.052909,0.921998,0.96788,0.166913,0.116792,0.858317,0.585147,0.33615,0.978273,0.489324,0.453621,0.774356,0.201444,0.155829,0.577015,0.870008,0.495886,0.622504,0.0455631,0.614094,0.686514,0.730906,0.946085,0.739794,0.764767,0.00957757,0.863728,0.60508,0.454682,0.806109,0.794793,0.695018,0.0144511,0.0118849,0.70931,0.800518,0.00213033,0.0145917,0.965697,0.499248,0.290034,0.648335,0.147635,0.0988858,0.356927,0.244356,0.422388,0.209234,0.876129,0.20519,0.223916,0.0961176,0.849052,0.998168,0.867404,0.968562,0.496865,0.114032,0.532273,0.221443,0.734917,0.522655,0.424621,0.959706,0.301461,0.212654,0.267058,0.958715,0.188848,0.728447,0.120853,0.448127,0.56429,0.270159,0.56326,0.0195321,0.0603669,0.741801,0.0407039,0.241738,0.373071,0.272225,0.563469,0.12065,0.606758,0.394593,0.450626,0.876131,0.112758,0.959717,0.465262,0.426654,0.116728,0.878506,0.536798,0.115778,0.466935,0.35912,0.628496,0.926124,0.56122,0.273336,0.208023,0.72612,0.574281,0.841518,0.0802063,0.51157,0.117296,0.709793,0.395789,0.797853,0.0666124,0.650359,0.495551,0.448109,0.00359821,0.0335664,0.595708,0.246129,0.410268,0.372442,0.861715,0.163024,0.853718,0.466109,0.945445,0.267762,0.415501,0.885547,0.556928,0.0698762,0.150814,0.92985,0.759419,0.271603,0.0181231,0.219734,0.347124,0.203223,0.0593586,0.34167,0.739694,0.72233,0.137297,0.0766392,0.492272,0.836435,0.236753,0.159502,0.212846,0.238967,0.284096,0.575425,0.11983,0.423868,0.143666,0.735261,0.282586,0.155317,0.482027,0.77393,0.0152726,0.641857,0.872305,0.263909,0.0229668,0.424968,0.947248,0.846133,0.0266725,0.861168,0.774967,0.0249132,0.350005,0.0124249,0.682236,0.159686,0.88651,0.363019,0.786706,0.47064,0.651942,0.658292,0.0957881,0.409598,0.442775,0.436543,0.589166,0.702318,0.435657,0.481593,0.206701,0.037522,0.922831,0.232446,0.708108,0.8285,0.359533,0.848142,0.463232,0.872172,0.824738,0.267529,0.916321,0.410598,0.0797862,0.271789,0.992352,0.628974,0.164107,0.107005,0.604212,0.179745,0.0117778,0.690849,0.358919,0.449012,0.276297,0.114301,0.397464,0.30542,0.410474,0.195656,0.0188167,0.477111,0.746978,0.0528827,0.785315,0.157543,0.390255,0.0701582,0.73077,0.0219687,0.389437,0.274357,0.131581,0.609556,0.0623376,0.517617,0.317761,0.311283,0.420377,0.69607,0.275835,0.991758,0.050888,0.249299,0.55448,0.075542,0.345766,0.391392,0.0712214,0.958949,0.684069,0.149918,0.667642,0.00743556,0.265689,0.854179,0.228336,0.846714,0.52077,0.43508,0.838985,0.582497,0.099161,0.67405,0.858456,0.852987,0.641483,0.273968,0.374656,0.698807,0.982515,0.44023,0.00699192,0.465607,0.49851,0.556307,0.71258,0.15714,0.60796,0.90361,0.926188,0.30193,0.827065,0.588736,0.482994,0.264082,0.639017,0.0264488,0.0474948,0.769936,0.997297,0.912516,0.568214,0.861507,0.348705,0.758237,0.46967,0.401847,0.942017,0.306479,0.300367,0.88462,0.553414,0.148919,0.516733,0.831611,0.875724,0.187725,0.219885,0.139325,0.021828,0.0158645,0.371766,0.538875,0.543016,0.779381,0.825754,0.888063,0.484558,0.54104,0.421462,0.611109,0.330105,0.512189,0.188125,0.277552,0.231962,0.906412,0.361776,0.168619,0.753057,0.107145,0.754186,0.0598025,0.692033,0.872948,0.508936,0.8151,0.733844,0.691897,0.661493,0.328971,0.999304,0.613119,0.070425,0.0486639,0.34462,0.749748,0.479534,0.0951661,0.818226,0.421255,0.694649,0.693536,0.808056,0.656487,0.609165,0.322612,0.500692,0.500449,0.378356,0.369374,0.454694,0.995937,0.526942,0.131695,0.801739,0.784358,0.369149,0.202538,0.266745,0.416217,0.630335,0.1394,0.375552,0.956486,0.00969487,0.556525,0.961647,0.989886,0.789974,0.446958,0.0980476,0.652228,0.635469,0.182729,0.822541,0.306383,0.421626,0.133141,0.736672,0.480829,0.363321,0.325172,0.00862449,0.918484,0.788339,0.614421,0.807864,0.890623,0.538874,0.0817403,0.371309,0.768968,0.457144,0.471038,0.487005,0.231214,0.230608,0.651849,0.936936,0.255533,0.58829,0.0521571,0.304171,0.130968,0.0615163,0.0260646,0.428691,0.946231,0.98341,0.48043,0.275975,0.835696,0.099876,0.0912682,|0.977387,0.789547,0.596094,0.162703,0.369107,0.597831,0.338463,0.802071,0.827734,0.163007,0.893673,0.393488,0.846417,0.575568,0.698321,0.811841,0.212668,0.327243,0.480908,0.136598,0.490479,0.337779,0.545084,0.942938,0.745498,0.0283093,0.674489,0.609608,0.144899,0.494165,0.348897,0.388624,0.360628,0.0319818,0.953146,0.804834,0.860058,0.141295,0.162185,0.0802591,0.671287,0.315246,0.0841878,0.617438,0.726481,0.55692,0.540545,0.111715,0.396788,0.325349,0.0278854,0.208735,0.0461838,0.276807,0.71191,0.99224,0.947194,0.467376,0.113069,0.750153,0.662208,0.934665,0.21288,0.508932,0.827497,0.429302,0.404037,0.225083,0.733609,0.750936,0.0970825,0.537916,0.0126458,0.367852,0.871361,0.74997,0.95583,0.512491,0.155693,0.539403,0.847278,0.207509,0.645648,0.765809,0.267015,0.236282,0.246528,0.125559,0.716973,0.996608,0.830924,0.27032,0.610663,0.266459,0.394941,0.991123,0.984613,0.739136,0.160734,0.374139,0.39586,0.939673,0.878548,0.310854,0.0248401,0.680913,0.491605,0.120464,0.167975,0.415714,0.363923,0.637701,0.464081,0.496357,0.762679,0.401411,0.501566,0.849531,0.726789,0.0255991,0.874427,0.418673,0.455331,0.656771,0.412241,0.77917,0.188037,0.803029,0.0456535,0.13047,0.975037,0.350165,0.818895,0.325202,0.0474322,0.803041,0.439724,0.906235,0.40786,0.130008,0.115576,0.277225,0.920664,0.366048,0.272519,0.566113,0.907784,0.3183,0.876186,0.256125,0.715331,0.984377,0.28502,0.573229,0.93672,0.106969,0.03794,0.422109,0.869439,0.608809,0.0121001,0.358764,0.835224,0.510077,0.192711,0.156119,0.515244,0.969474,0.928343,0.63874,0.775405,0.809073,0.55924,0.63802,0.447011,0.638573,0.496936,0.199323,0.595261,0.45383,0.237839,0.8468,0.222916,0.703756,0.56779,0.387294,0.107654,0.376726,0.720409,0.382856,0.511425,0.894773,0.00558794,0.611993,0.152585,0.913468,0.859924,0.122496,0.249438,0.910157,0.364851,0.494986,0.179009,0.994817,0.772867,0.181593,0.197897,0.528117,0.775122,0.588805,0.665461,0.656986,0.788876,0.924497,0.222093,0.658232,0.955777,0.478385,0.568154,0.105462,0.714776,0.0485121,0.323064,0.211385,0.174213,0.234576,0.0727239,0.859427,0.78603,0.606609,0.615863,0.00869387,0.440627,0.964509,0.475476,0.133379,0.667537,0.734696,0.552367,0.775171,0.745706,0.486111,0.364622,0.624493,0.207057,0.0694566,0.613762,0.0884776,0.46571,0.0675768,0.696703,0.367516,0.818869,0.797709,0.199319,0.796321,0.173628,0.199998,0.611353,0.706784,0.682852,0.0838689,0.355931,0.712262,0.9494,0.0204861,0.264702,0.696584,0.600791,0.0100441,0.33176,0.832466,0.863438,0.837545,0.168026,0.084898,0.844965,0.666005,0.619568,0.454853,0.171356,0.516617,0.566595,0.505998,0.427845,0.661187,0.595473,0.359653,0.235699,0.240136,0.314831,0.630001,0.245684,0.682756,0.443462,0.982277,0.961214,0.0769873,0.294349,0.597654,0.940568,0.61971,0.714529,0.616209,0.358256,0.919999,0.798253,0.118963,0.744386,0.447698,0.643364,0.357287,0.991088,0.835413,0.987305,0.447781,0.771654,0.390589,0.562158,0.311839,0.000641644,0.93096,0.13444,0.778296,0.394285,0.685619,0.776383,0.389107,0.575499,0.979756,0.973049,0.511384,0.565836,0.999146,0.456743,0.305862,0.749907,0.596802,0.68862,0.876989,0.337787,0.875169,0.461818,0.158338,0.734351,0.527367,0.634058,0.249664,0.895372,0.285323,0.901605,0.839589,0.121184,0.380716,0.270022,0.915695,0.808294,0.611545,0.168771,0.402888,0.81072,0.702504,0.547482,0.969946,0.450295,0.282814,0.0023219,0.299401,0.107118,0.834574,0.496449,0.0838869,0.543227,0.56778,0.511063,0.149287,0.85218,0.87958,0.75906,0.780571,0.518747,0.646137,0.0776062,0.0775738,0.364869,0.502377,0.908629,0.832364,0.197315,0.82013,0.413795,0.573784,0.983038,0.428487,0.383339,0.420151,0.864847,0.517893,0.20533,0.92622,0.581064,0.560004,0.167145,0.990344,0.628352,0.0485617,0.24472,0.282042,0.744567,0.552016,0.493977,0.108659,0.770999,0.49284,0.0998941,0.708625,0.646961,0.397377,0.910011,0.392242,0.156628,0.846731,0.684377,0.218183,0.383,0.224341,0.200755,0.571065,0.190024,0.942025,0.535646,0.352573,0.321409,0.142951,0.32478,0.88642,0.0849756,0.716261,0.11763,0.879514,0.169351,0.161538,0.00155389,0.537142,0.178346,0.947224,0.303469,0.0773904,0.408383,0.358359,0.408797,0.758875,0.226865,0.0551994,0.521897,0.943281,0.103454,0.642944,0.00125355,0.296152,0.286298,0.281335,8.63671e-05,0.863811,0.409527,0.263809,0.390922,0.335047,0.603997,0.377179,0.948449,0.81878,0.19437,0.365748,0.940565,0.945764,0.817277,0.419477,0.350571,0.953393,0.249354,0.332174,0.627229,0.563894,0.195592,0.518944,0.976726,0.891695,0.520044,0.718232,0.880018,0.78738,0.857965,0.53404,0.558297,0.898156,0.630254,0.561402,0.919877,0.131813,0.233193,0.132421,0.950329,0.392011,0.376198,0.0520008,0.54915,0.970798,0.231931,0.429198,0.804787,0.377312,0.48053,0.272293,0.890711,0.629722,0.240516,0.179947,0.466046,0.385405,0.119713,0.919835,0.0605631,0.0267678,0.980313,0.0878612,0.0554594,0.481251,0.0551077,0.528595,0.0201495,0.6401,0.669819,0.773156,0.239707,0.925595,0.240425,0.582752,0.399626,0.962575,0.823162,0.979802,0.14072,0.170916,0.247242,0.399632,0.406658,0.376706,0.951265,0.506066,0.504336,0.18751,0.7122,0.171483,0.875496,0.184483,0.647439,0.528677,0.164478,0.704423,0.478159,0.0144526,0.577236,0.698329,0.0763329,0.218016,0.473634,0.287703,0.71799,0.31684,0.0465553,0.510171,0.784381,0.884051,0.423903,0.0472347,0.448853,0.806807,0.229708,0.420523,0.421536,0.266784,0.81122,0.585132,0.134661,0.546479,0.446237,0.433822,0.628405,0.877433,0.656804,0.796744,0.145757,0.302795,0.116312,0.923266,0.67793,0.278376,0.14997,0.910664,0.365171,0.446198,0.836489,0.659108,0.0668763,0.512627,0.200118,0.397882,0.0382531,0.708209,0.41986,0.485707,0.162025,0.134524,0.673532,0.360052,0.80805,0.664092,0.899426,0.382197,0.465435,0.765268,0.623811,0.636115,0.37347,0.506974,0.296303,0.359554,0.274749,0.850334,0.194997,0.655438,0.613392,0.992986,0.289097,0.718568,0.835838,0.406618,0.274027,0.356294,0.579028,0.181092,0.316805,0.311038,0.443219,0.851391,0.506466,0.41447,0.550714,0.970346,0.312384,0.749911,0.128946,0.684115,0.257295,0.9784,0.0271174,0.624664,0.799659,0.986181,0.780497,0.0231236,0.499572,0.313939,0.784926,0.722024,0.622611,0.553386,0.389138,0.656918,0.235283,0.855999,0.0791718,0.531976,0.473149,0.267617,0.73987,0.588155,0.296404,0.553687,0.725003,0.983703,0.776463,0.640354,0.0151239,0.901933,0.602331,0.850361,0.955558,0.287645,0.0673906,0.597246,0.812956,0.322601,0.779426,0.335799,0.718168,0.918001,0.489329,0.785754,0.532795,0.557151,0.484178,0.72121,0.774891,0.476633,0.47786,0.784507,0.759899,0.932758,0.0999483,0.489643,0.904358,0.0340438,0.322462,0.331303,0.425706,0.997839,0.191009,0.799794,0.0626926,0.777164,0.662734,0.0435053,0.0574645,0.517766,0.334831,0.0927566,0.971485,0.365006,0.582627,0.526122,0.131094,0.104442,0.950884,0.530357,0.519543,0.279654,0.0484959,0.488347,0.382717,0.266717,0.762929,0.592792,0.903463,0.41933,0.611614,0.781017,0.831439,0.168017,0.465752,0.275743,0.668679,0.774509,0.823692,0.104598,0.156137,0.800996,0.207923,0.278922,0.445936,0.196328,0.454897,0.493175,0.407732,0.718041,0.123739,0.994185,0.969981,0.794241,0.737009,0.0436926,0.984034,0.0256499,0.644048,0.291869,0.922342,0.300346,0.777597,0.066901,0.749166,0.955481,0.934175,0.790028,0.320002,0.21695,0.961275,0.29129,0.441435,0.845903,0.0482225,0.909787,0.538142,0.0161437,0.833599,0.928023,0.32779,0.743487,0.840722,0.497449,0.674197,0.0139815,0.579838,0.632763,0.292731,0.54044,0.982792,0.351246,0.305204,0.722983,0.788923,0.851984,0.105087,0.219528,0.713911,0.691957,0.697434,0.115879,0.405749,0.397918,0.146925,0.126682,0.989119,0.120784,0.752607,0.300699,0.696938,0.416664,0.422657,0.438153,0.595673,0.345317,0.823753,0.0148777,0.541201,0.771602,0.386259,0.20625,0.871911,0.180647,0.0586193,0.756766,0.670468,0.161468,0.531706,0.718046,0.433558,0.431963,0.27772,0.175544,0.984438,0.358526,0.937922,0.405814,0.379407,0.682596,0.977099,0.0762504,0.564961,0.896474,0.109253,0.980012,0.588533,0.591771,0.719843,0.362512,0.632657,0.855793,0.615944,0.923771,0.913684,0.798803,0.712893,0.116541,0.507743,0.852359,0.188481,0.911461,0.208249,0.264012,0.566438,0.386621,0.360276,0.125932,0.73021,0.126995,0.906805,0.959438,0.621339,0.46405,0.802334,0.19353,0.922891,0.68101,0.197555,0.1865,0.427338,0.198872,0.581381,0.820623,0.837152,0.874421,0.257846,0.322841,0.740117,0.0200703,0.0348502,0.534409,0.790574,0.377679,0.943895,0.412019,0.0361561,0.625325,0.577791,0.408209,0.0661324,0.347015,0.14848,0.592379,0.372581,0.0876035,0.386817,0.222822,0.763506,0.408077,0.312368,0.698246,0.301888,0.473213,0.930613,0.671054,0.107265,0.149126,0.187482,0.24144,0.662872,0.629121,0.702183,0.189369,0.847559,0.261324,0.570285,0.788913,0.416858,0.373023,0.686287,0.642011,0.612003,0.445478,0.74972,0.154096,0.147177,0.0613613,0.663363,0.390629,0.844551,0.376671,0.73994,0.0803384,0.472385,0.773036,0.405928,0.272073,0.620823,0.174421,0.374803,0.460851,0.231546,0.427409,0.72468,0.628102,0.492259,0.953898,0.393174,0.843491,0.632225,0.851575,0.729665,0.010933,0.720052,0.619796,0.301738,0.495351,0.803859,0.524679,0.324013,0.532254,0.861364,0.432755,0.0989067,0.583441,0.809987,0.411183,0.962665,0.21267,0.109234,0.0482004,0.072795,0.434298,|0.0534875,0.532779,0.337383,0.977724,0.53263,0.332952,0.0638474,0.620672,0.674509,0.149807,0.687985,0.792132,0.3054,0.17656,0.284023,0.484318,0.438458,0.02911,0.785927,0.188639,0.722796,0.367805,0.120644,0.786617,0.0970498,0.173667,0.0564625,0.237708,0.69246,0.447665,0.929748,0.125674,0.455341,0.989765,0.952647,0.384495,0.505103,0.609146,0.211776,0.704672,0.979992,0.94003,0.0586014,0.79416,0.801401,0.0690416,0.146137,0.72413,0.284052,0.423964,0.454949,0.782036,0.716894,0.53309,0.052583,0.599165,0.0519035,0.61509,0.199312,0.893075,0.342407,0.537007,0.72499,0.237401,0.613203,0.336402,0.445086,0.160948,0.448631,0.699298,0.0789284,0.80778,0.0716983,0.940099,0.16452,0.579958,0.867942,0.425368,0.142671,0.822056,0.623648,0.77564,0.48965,0.490572,0.368762,0.272093,0.331701,0.190197,0.533823,0.641887,0.468044,0.698236,0.634876,0.0113899,0.446169,0.971013,0.0209461,0.592665,0.865402,0.0766158,0.0335965,0.342626,0.876738,0.649472,0.961724,0.475432,0.28539,0.557876,0.69743,0.373351,0.654792,0.612227,0.727772,0.389582,0.615084,0.580574,0.689585,0.114535,0.824483,0.673168,0.958021,0.481935,0.00137055,0.181821,0.129724,0.498045,0.261734,0.197492,0.860417,0.923824,0.0998437,0.392759,0.52176,0.365705,0.219138,0.266804,0.907218,0.812074,0.918688,0.875753,0.281528,0.0772983,0.0782025,0.117105,0.124672,0.942953,0.279411,0.690356,0.228898,0.643182,0.215304,0.26982,0.854514,0.755112,0.0735893,0.159906,0.132649,0.745294,0.273457,0.986399,0.109144,0.948395,0.961138,0.899019,0.774877,0.220583,0.231307,0.238024,0.405733,0.195128,0.967008,0.525301,0.364966,0.945451,0.811117,0.279068,0.138455,0.356906,0.824154,0.94699,0.272836,0.356698,0.859375,0.262507,0.180078,0.114409,0.60019,0.410045,0.105443,0.383264,0.201857,0.579041,0.102482,0.521702,0.742641,0.252056,0.940151,0.160248,0.107507,0.495141,0.916047,0.0820509,0.0161765,0.0998345,0.368239,0.779072,0.123448,0.682986,0.00369406,0.0916034,0.149819,0.487954,0.671178,0.0199222,0.000166535,0.785323,0.486733,0.221023,0.156204,0.0841497,0.240563,0.932931,0.440665,0.739491,0.569366,0.430806,0.0283499,0.180871,0.089738,0.0293676,0.877739,0.446007,0.749482,0.304932,0.252522,0.497836,0.844679,0.932875,0.0932418,0.987022,0.233657,0.806115,0.959488,0.0484131,0.374142,0.18247,0.627733,0.383563,0.0318298,0.580229,0.670112,0.797672,0.364076,0.762564,0.360023,0.0297992,0.616033,0.132709,0.73857,0.0057416,0.147259,0.232717,0.15937,0.113848,0.217578,0.577371,0.769409,0.682066,0.314971,0.7189,0.76224,0.310821,0.282136,0.826041,0.0441114,0.638764,0.595893,0.108503,0.600726,0.131772,0.871495,0.202011,0.144127,0.519489,0.0686265,0.329353,0.514565,0.253606,0.734651,0.0961068,0.196044,0.743963,0.182718,0.165235,0.154066,0.0532798,0.399502,0.204244,0.166198,0.699188,0.180464,0.556607,0.0173289,0.325324,0.24844,0.643971,0.0562754,0.110758,0.611927,0.401155,0.949279,0.0809983,0.707573,0.675398,0.559125,0.896853,0.617665,0.599754,0.972996,0.605158,0.871568,0.343758,0.687109,0.0546046,0.356419,0.527553,0.00788653,0.29937,0.0652036,0.0186779,0.290645,0.0501752,0.00947195,0.261651,0.61324,0.164289,0.991356,0.80118,0.671067,0.327215,0.423403,0.951473,0.250796,0.710578,0.174623,0.346219,0.60958,0.496816,0.361123,0.500421,0.111247,0.856685,0.50873,0.827111,0.160645,0.132298,0.0995941,0.445549,0.246922,0.499799,0.0690767,0.643097,0.862491,0.260114,0.264482,0.739828,0.618119,0.279818,0.11069,0.357896,0.859375,0.341551,0.509612,0.15551,0.889427,0.95546,0.358401,0.800433,0.197371,0.262532,0.269884,0.289617,0.666126,0.255996,0.166928,0.974691,0.0205032,0.102459,0.985812,0.993961,0.229363,0.920146,0.26089,0.342174,0.351,0.597247,0.0443004,0.833194,0.268005,0.663359,0.710407,0.506716,0.560789,0.666668,0.302787,0.941823,0.632175,0.624007,0.293019,0.8271,0.731544,0.925899,0.40042,0.544087,0.657739,0.414458,0.013789,0.207331,0.618394,0.949676,0.996593,0.847814,0.868744,0.983316,0.903742,0.417021,0.679766,0.541212,0.314779,0.821586,0.589189,0.767358,0.911148,0.755042,0.961034,0.807916,0.560348,0.830806,0.18254,0.913477,0.400565,0.356912,0.549433,0.145412,0.094828,0.57741,0.770318,0.903164,0.245933,0.585744,0.421994,0.222024,0.185845,0.0925011,0.55287,0.164267,0.338639,0.128514,0.127632,0.28297,0.967079,0.342625,0.0131195,0.794422,0.915402,0.588406,0.952157,0.981565,0.49358,0.434207,0.412161,0.923252,0.389304,0.674239,0.0492538,0.0841749,0.404529,0.520916,0.0298871,0.113578,0.397757,0.809353,0.288459,0.357805,0.929265,0.678508,0.69649,0.977322,0.201359,0.25279,0.876728,0.594763,0.0296898,0.956142,0.391216,0.100865,0.931242,0.754479,0.516704,0.0653165,0.212525,0.0905874,0.419661,0.855142,0.546115,0.396039,0.0185745,0.850761,0.586291,0.572661,0.602495,0.604225,0.782181,0.406502,0.058248,0.430387,0.475779,0.602387,0.693535,0.289048,0.999475,0.525863,0.100488,0.166891,0.277802,0.804007,0.88845,0.180594,0.897908,0.842303,0.58016,0.564221,0.529176,0.71297,0.372572,0.355345,0.0695121,0.0842701,0.155752,0.402379,0.345433,0.386664,0.417147,0.972265,0.33066,0.674367,0.417439,0.148977,0.829105,0.909814,0.0599021,0.45106,0.44251,0.444413,0.620305,0.896366,0.376662,0.198151,0.512656,0.984268,0.862962,0.706533,0.118756,0.0786031,0.802075,0.799284,0.484806,0.314933,0.465377,0.746177,0.274418,0.38103,0.30213,0.494548,0.652481,0.72016,0.639708,0.202018,0.914066,0.762851,0.279575,0.444505,0.489637,0.120938,0.412657,0.668193,0.642347,0.249319,0.938411,0.361306,0.751408,0.89755,0.364147,0.130012,0.0442185,0.70941,0.366342,0.807559,0.471623,0.396617,0.219897,0.701016,0.426415,0.722887,0.524146,0.420105,0.762904,0.126879,0.977461,0.988598,0.436918,0.665456,0.324932,0.255578,0.198807,0.423904,0.984292,0.475268,0.267557,0.202078,0.868157,0.461648,0.075475,0.829191,0.778968,0.433408,0.421424,0.0588028,0.878652,0.964365,0.512034,0.650036,0.734537,0.746585,0.718776,0.277454,0.0870226,0.998792,0.817717,0.740787,0.18239,0.264511,0.3612,0.824602,0.60063,0.728414,0.343519,0.243735,0.155369,0.984896,0.00333297,0.665968,0.277917,0.902666,0.131866,0.325451,0.470797,0.430287,0.0993268,0.603131,0.194379,0.943768,0.112381,0.731987,0.348442,0.171423,0.52952,0.760775,0.446584,0.723877,0.935683,0.181083,0.618599,0.848456,0.440604,0.540455,0.413548,0.784963,0.694921,0.78663,0.24112,0.583849,0.807649,0.207658,0.469286,0.783882,0.482223,0.675327,0.671246,0.512051,0.523436,0.0342312,0.604339,0.91523,0.990554,0.572215,0.113513,0.835958,0.0453674,0.0569977,0.0498192,0.659307,0.616085,0.586226,0.603912,0.306676,0.436147,0.0675478,0.270805,0.371753,0.233161,0.304515,0.680561,0.530325,0.0942459,0.0200768,0.610684,0.971329,0.774455,0.41539,0.8756,0.124622,0.531316,0.977562,0.981717,0.569148,0.418642,0.177971,0.142679,0.726709,0.531429,0.649016,0.66138,0.61287,0.688266,0.59241,0.143809,0.580643,0.885703,0.249914,0.94765,0.7574,0.694417,0.579545,0.176533,0.382137,0.861613,0.249123,0.0437458,0.286361,0.96486,0.538321,0.219747,0.381614,0.822356,0.541103,0.464743,0.836334,0.55448,0.53572,0.160915,0.989119,0.768966,0.0222488,0.206351,0.00900036,0.820848,0.0535908,0.0087024,0.655056,0.090839,0.590923,0.923124,0.172457,0.47711,0.354409,0.216778,0.981705,0.628117,0.986902,0.484514,0.215879,0.166541,0.808828,0.381901,0.735101,0.354753,0.709966,0.894632,0.623668,0.909013,0.731097,0.362203,0.0772811,0.736098,0.472886,0.185651,0.741056,0.485653,0.226676,0.572279,0.580307,0.123245,0.770748,0.686201,0.803068,0.293748,0.602051,0.165573,0.966855,0.852581,0.592157,0.0770454,0.950865,0.122343,0.31101,0.0774018,0.821929,0.580983,0.964922,0.203097,0.595919,0.0377875,0.492762,0.657644,0.555578,0.444143,0.544664,0.875418,0.528273,0.835289,0.711622,0.331355,0.647021,0.738342,0.988306,0.299323,0.438149,0.540551,0.618408,0.819113,0.21128,0.430452,0.687762,0.437333,0.203078,0.341168,0.290452,0.599256,0.416269,0.732808,0.943682,0.468793,0.875611,0.801657,0.840636,0.931253,0.263959,0.519478,0.251269,0.573552,0.454598,0.597441,0.124706,0.643447,0.334264,0.192125,0.527888,0.845179,0.347517,0.820089,0.88356,0.277614,0.810328,0.108606,0.683899,0.974823,0.681954,0.028503,0.909624,0.654035,0.878499,0.746975,0.626452,0.497982,0.149702,0.938348,0.45513,0.377929,0.696126,0.668363,0.943694,0.982346,0.209997,0.109912,0.751612,0.287722,0.156959,0.228498,0.00466341,0.0779814,0.559499,0.068646,0.329502,0.953081,0.682689,0.833451,0.40105,0.143174,0.821258,0.307192,0.193138,0.425461,0.312339,0.669302,0.00759161,0.558108,0.765743,0.959063,0.794506,0.127834,0.150309,0.177307,0.474309,0.813477,0.568679,0.201122,0.95979,0.907523,0.877667,0.0326911,0.762256,0.419086,0.806216,0.423483,0.293355,0.115309,0.240145,0.0846351,0.645927,0.846427,0.0783019,0.521605,0.323155,0.148004,0.186308,0.380903,0.018472,0.13486,0.353672,0.796928,0.651857,0.563944,0.697223,0.474704,0.371956,0.465222,0.848033,0.308554,0.724348,0.0685445,0.166101,0.778086,0.789122,0.534051,0.0771793,0.101906,0.0319867,0.101825,0.855853,0.675844,0.567642,0.13387,0.091108,0.0205455,0.271205,0.586036,0.577306,0.22286,0.971985,0.942378,0.31164,0.0834683,0.000419199,0.974987,0.0334558,0.0134977,0.385275,0.613721,0.0948134,0.727537,0.127113,0.325208,0.452536,0.850879,0.0177179,0.350152,0.650369,0.381992,0.280076,|0.117485,0.615899,0.925149,0.888243,0.159191,0.560637,0.658101,0.518966,0.173829,0.816519,0.138755,0.674075,0.548448,0.661073,0.498517,0.53806,0.899926,0.852246,0.896372,0.79159,0.587053,0.237418,0.611574,0.151625,0.888903,0.999703,0.308553,0.246976,0.395826,0.676645,0.683176,0.381706,0.538184,0.579972,0.92558,0.162215,0.644535,0.904269,0.0680329,0.0148326,0.405897,0.522903,0.204889,0.486126,0.776562,0.628641,0.695279,0.796705,0.183477,0.00900334,0.629474,0.0189865,0.375172,0.196113,0.675518,0.710081,0.219751,0.179887,0.939613,0.574571,0.459008,0.239188,0.0342754,0.400725,0.387819,0.221734,0.889085,0.246538,0.128863,0.159493,0.165078,0.310015,0.791618,0.713392,0.705176,0.515867,0.730871,0.895691,0.815474,0.339404,0.592893,0.0570922,0.491098,0.989219,0.103309,0.721342,0.223364,0.000895917,0.275659,0.270498,0.865834,0.00867879,0.145807,0.560881,0.88596,0.234897,0.838175,0.752409,0.116233,0.00645703,0.0745989,0.412771,0.523161,0.652449,0.0958481,0.388697,0.870987,0.44575,0.264115,0.609364,0.11493,0.371334,0.676915,0.063196,0.713217,0.96308,0.14793,0.0942744,0.359124,0.685237,0.429497,0.301912,0.883226,0.948295,0.284946,0.786454,0.558905,0.654047,0.611882,0.163011,0.264015,0.140017,0.65994,0.320804,0.243324,0.253739,0.225239,0.0854908,0.892581,0.585724,0.490703,0.62752,0.93079,0.108627,0.516104,0.705674,0.772318,0.00898457,0.849075,0.112554,0.585903,0.304477,0.387327,0.122041,0.0921878,0.384095,0.641639,0.284209,0.701133,0.526783,0.632814,0.731817,0.49338,0.0348231,0.948682,0.909099,0.754277,0.890596,0.995732,0.347973,0.785631,0.00931334,0.140481,0.680244,0.20146,0.808505,0.540159,0.0933921,0.810015,0.00793207,0.96784,0.715286,0.690867,0.740889,0.614139,0.819412,0.0786178,0.472956,0.351172,0.0899505,0.703735,0.462113,0.911261,0.984526,0.802533,0.264567,0.417948,0.199785,0.741532,0.0682865,0.309134,0.923309,0.56403,0.262424,0.165873,0.461532,0.580179,0.692832,0.678071,0.570526,0.703196,0.0194528,0.776729,0.722275,0.0939102,0.134866,0.850229,0.61106,0.643842,0.667453,0.5488,0.937294,0.411279,0.952518,0.857847,0.91717,0.525919,0.61015,0.349252,0.0619662,0.174358,0.686897,0.732432,0.760175,0.620646,0.865993,0.714562,0.604386,0.874798,0.898365,0.978111,0.356084,0.193697,0.150663,0.387388,0.739981,0.162722,0.986291,0.398129,0.816702,0.616671,0.724575,0.765894,0.625915,0.92584,0.399697,0.181541,0.330105,0.774939,0.952709,0.858457,0.409915,0.333282,0.871424,0.738528,0.301967,0.732442,0.999969,0.378088,0.13864,0.780794,0.738591,0.0355546,0.94232,0.482082,0.194812,0.959902,0.14289,0.515086,0.323215,0.240327,0.853763,0.317231,0.134189,0.216042,0.490084,0.11893,0.200203,0.761698,0.00283784,0.763197,0.583155,0.0389004,0.793393,0.26113,0.222485,0.671976,0.169265,0.931389,0.845321,0.293863,0.973136,0.339173,0.907041,0.341009,0.418685,0.419952,0.629167,0.80483,0.00878602,0.0394422,0.306525,0.0528611,0.944704,0.790778,0.734427,0.731939,0.517021,0.0155899,0.603072,0.279665,0.845391,0.258628,0.835967,0.638928,0.507275,0.460712,0.958475,0.527516,0.318953,0.960207,0.3189,0.109859,0.563299,0.830152,0.866489,0.232291,0.794721,0.0547648,0.108862,0.34426,0.0846236,0.0993605,0.30227,0.466496,0.225746,0.704746,0.0287652,0.068655,0.357938,0.401327,0.781961,0.134483,0.00738525,0.00794762,0.306754,0.452925,0.389132,0.437996,0.595812,0.765294,0.44558,0.323218,0.94103,0.850605,0.919535,0.320128,0.824398,0.240808,0.208911,0.891949,0.887895,0.962173,0.641671,0.897481,0.197862,0.550568,0.381305,0.753027,0.326359,0.154566,0.658163,0.258207,0.177737,0.123935,0.630161,0.0775081,0.15693,0.722856,0.852944,0.179095,0.352928,0.255863,0.653072,0.741969,0.252517,0.00215197,0.541355,0.904883,0.494982,0.511019,0.837419,0.235747,0.439824,0.99313,0.220718,0.0163048,0.201493,0.0124301,0.777941,0.1616,0.476918,0.439553,0.398843,0.121834,0.65906,0.729784,0.25862,0.636077,0.75931,0.678412,0.519789,0.813762,0.71082,0.673283,0.659945,0.0672682,0.473192,0.651015,0.603682,0.798573,0.108505,0.195198,0.0420349,0.088783,0.156645,0.22216,0.142326,0.500748,0.573305,0.868341,0.328941,0.0781615,0.031985,0.0444738,0.464182,0.981152,0.762571,0.0321403,0.404182,0.835471,0.680383,0.204894,0.026455,0.154718,0.00174439,0.75688,0.52506,0.173831,0.872134,0.99019,0.127192,0.404334,0.00608283,0.63562,0.263756,0.896682,0.574162,0.689244,0.507021,0.638762,0.289211,0.462229,0.0355272,0.632465,0.57518,0.739552,0.548424,0.408765,0.780354,0.0606014,0.327782,0.702096,0.0906833,0.878225,0.616925,0.437509,0.708144,0.0663452,0.307553,0.597402,0.853846,0.443475,0.0368962,0.901904,0.580714,0.402931,0.399427,0.544576,0.680278,0.884202,0.938251,0.507038,0.794056,0.906783,0.694292,0.643466,0.157913,0.188655,0.672777,0.683211,0.19709,0.0359543,0.783952,0.58432,0.767268,0.760367,0.330696,0.199757,0.617833,0.181676,0.758395,0.195018,0.568353,0.420607,0.928975,0.0828344,0.163868,0.730012,0.177989,0.883017,0.0269986,0.795434,0.0563428,0.226196,0.803039,0.740614,0.67227,0.123902,0.204183,0.766848,0.938672,0.8336,0.770742,0.461918,0.542903,0.263544,0.767853,0.0561554,0.582009,0.656968,0.0103881,0.17649,0.976169,0.229122,0.800504,0.507258,0.58979,0.347331,0.790953,0.528241,0.55995,0.137081,0.677386,0.922415,0.277942,0.933781,0.271926,0.292425,0.0129164,0.718127,0.725002,0.675135,0.587309,0.116446,0.101647,0.00541764,0.987719,0.188018,0.624615,0.0247488,0.955398,0.113366,0.895946,0.790004,0.164153,0.628509,0.937414,0.335857,0.169863,0.543815,0.575611,0.736139,0.0571288,0.989347,0.860156,0.493785,0.63121,0.940249,0.632741,0.109371,0.131561,0.607091,0.957329,0.0280336,0.0246205,0.504822,0.0475786,0.603177,0.0529612,0.779194,0.0353773,0.480227,0.63992,0.176548,0.298322,0.00242627,0.754909,0.323984,0.0618724,0.525028,0.456872,0.1395,0.914966,0.587088,0.188521,0.920544,0.0815279,0.103067,0.951086,0.419426,0.0888527,0.64465,0.488923,0.783953,0.863655,0.743111,0.213495,0.887349,0.93152,0.952127,0.396075,0.24239,0.0356048,0.60101,0.230813,0.0179603,0.747391,0.543969,0.170286,0.449102,0.543243,0.892014,0.543226,0.296174,0.298378,0.236902,0.354078,0.822649,0.736977,0.689909,0.343395,0.299153,0.212789,0.00857526,0.890247,0.767006,0.171198,0.518546,0.426716,0.996033,0.984039,0.5917,0.38066,0.311628,0.338596,0.747463,0.017657,0.369538,0.577694,0.952194,0.368036,0.594627,0.228531,0.692306,0.0276804,0.987379,0.0557463,0.000611365,0.113257,0.706782,0.0156222,0.494083,0.839692,0.691261,0.00737005,0.568372,0.233988,0.830753,0.900995,0.0435431,0.629126,0.626908,0.106095,0.63773,0.43361,0.00349033,0.333421,0.774179,0.569926,0.0106182,0.869621,0.0292417,0.842405,0.801046,0.770045,0.414559,0.299955,0.320765,0.239881,0.374432,0.831962,0.14509,0.00273913,0.896819,0.619094,0.185547,0.021161,0.403245,0.71338,0.637088,0.175726,0.240184,0.209798,0.770192,0.160988,0.817055,0.938305,0.254706,0.794435,0.303984,0.280181,0.578263,0.991146,0.946687,0.845533,0.23283,0.864766,0.0457851,0.354774,0.831554,0.610467,0.862799,0.88556,0.82805,0.419151,0.566742,0.128395,0.931083,0.610992,0.26173,0.0306628,0.0997404,0.576869,0.065788,0.596163,0.977247,0.435193,0.57724,0.0379025,0.680614,0.382089,0.543006,0.0628939,0.402441,0.955791,0.480166,0.767185,0.142855,0.756305,0.144383,0.565436,0.0723589,0.00756711,0.120747,0.48033,0.512838,0.416706,0.973494,0.753902,0.264885,0.355594,0.151165,0.763133,0.384607,0.803739,0.0875762,0.190251,0.180133,0.486896,0.25484,0.624397,0.256072,0.0651429,0.181849,0.263619,0.798863,0.298801,0.565383,0.581614,0.669087,0.857042,0.925683,0.221331,0.587532,0.988034,0.926449,0.0950808,0.503679,0.43697,0.966057,0.302228,0.827335,0.792431,0.769155,0.297858,0.000105619,0.108124,0.317239,0.87079,0.592017,0.326297,0.406153,0.159218,0.0482754,0.119093,0.630953,0.706884,0.171954,0.915097,0.0753188,0.269536,0.254211,0.033913,0.204933,0.458676,0.98428,0.0583009,0.450976,0.537033,0.676604,0.49546,0.616878,0.0394845,0.656632,0.294625,0.642999,0.424424,0.106749,0.275595,0.334708,0.833765,0.276062,0.257389,0.758757,0.423526,0.425832,0.514678,0.873364,0.949467,0.655739,0.169562,0.827828,0.0269265,0.750812,0.837802,0.918534,0.917167,0.324208,0.529884,0.222306,0.853003,0.215013,0.704521,0.34598,0.158955,0.0219671,0.140756,0.123012,0.751398,0.928431,0.224634,0.0935895,0.687768,0.904515,0.561213,0.725773,0.0179807,0.780276,0.274235,0.80461,0.021174,0.343047,0.0535689,0.62084,0.630448,0.167754,0.144526,0.898642,0.166969,0.917628,0.106928,0.827345,0.937782,0.919478,0.14753,0.0240957,0.304965,0.576888,0.38208,0.0990332,0.615631,0.746344,0.34754,0.767914,0.332859,0.847318,0.407172,0.300034,0.459475,0.00906819,0.286103,0.291897,0.67357,0.187519,0.379011,0.595617,0.740134,0.908613,0.349432,0.0208054,0.178399,0.466228,0.629266,0.133851,0.995126,0.733217,0.524235,0.182973,0.751161,0.763342,0.124871,0.884219,0.542186,0.225252,0.409583,0.580987,0.764949,0.730187,0.0917733,0.114539,0.393494,0.349561,0.752782,0.230994,0.914181,0.136496,0.05765,0.323161,0.504407,0.994583,0.47035,0.899195,0.193963,0.00898468,0.554987,0.439505,0.0742046,0.0741961,0.629864,0.672593,0.87785,0.790041,0.468707,0.713927,0.0728767,0.344675,0.638002,0.240386,0.870937,0.499024,0.510941,0.512755,0.704362,0.593413,0.292557,0.838983,0.657823,0.319453,0.351953,|0.919847,0.277281,0.00191903,0.879771,0.836553,0.582312,0.404125,0.14458,0.226038,0.541643,0.276802,0.428349,0.942525,0.512341,0.912902,0.413461,0.0284232,0.701444,0.316286,0.236604,0.527123,0.646024,0.157113,0.203341,0.732244,0.148107,0.502132,0.685837,0.0794688,0.493882,0.0461133,0.860389,0.899357,0.713196,0.0749755,0.396433,0.658216,0.778863,0.123682,0.227493,0.71031,0.110998,0.73465,0.0752766,0.65168,0.838167,0.712064,0.525079,0.560834,0.592558,0.746395,0.57579,0.480129,0.763482,0.629315,0.0473059,0.318188,0.614174,0.21018,0.290333,0.993616,0.516653,0.60859,0.891622,0.580352,0.706982,0.655604,0.806877,0.580698,0.654306,0.182974,0.164362,0.455052,0.489955,0.784043,0.894837,0.777087,0.421022,0.841463,0.851089,0.949636,0.837637,0.973336,0.472198,0.886221,0.0419171,0.47159,0.699731,0.346543,0.909528,0.297261,0.417592,0.234391,0.625323,0.222539,0.574555,0.45623,0.546316,0.498037,0.555922,0.322862,0.301387,0.474036,0.496038,0.58525,0.94929,0.963779,0.689371,0.518721,0.787576,0.00783426,0.491513,0.84339,0.67749,0.721703,0.252232,0.884603,0.180207,0.387742,0.0588102,0.191647,0.739535,0.777839,0.865488,0.392394,0.382613,0.211876,0.320964,0.323324,0.626102,0.251972,0.510289,0.409631,0.404374,0.323046,0.745356,0.617775,0.275676,0.918938,0.60233,0.562607,0.513726,0.716339,0.100825,0.21204,0.451079,0.798545,0.696553,0.677628,0.931365,0.135872,0.740892,0.912636,0.0412771,0.438285,0.236324,0.778443,0.423485,0.762671,0.825147,0.105068,0.282153,0.651789,0.295905,0.2915,0.0497287,0.311421,0.266499,0.38805,0.118551,0.645903,0.844874,0.301369,0.580634,0.411105,0.434091,0.958227,0.225251,0.043622,0.763238,0.626044,0.179987,0.121816,0.822025,0.168564,0.0860033,0.539839,0.674113,0.935032,0.901346,0.0217209,0.811675,0.31614,0.302844,0.919952,0.511979,0.374743,0.377416,0.0821795,0.950527,0.513899,0.569732,0.838445,0.462319,0.640193,0.602262,0.18776,0.0120568,0.326833,0.0469925,0.139472,0.757296,0.0245677,0.710662,0.953274,0.120095,0.50092,0.881777,0.383164,0.385823,0.704379,0.0293484,0.598811,0.566899,0.314645,0.851526,0.808936,0.883094,0.570185,0.872855,0.52994,0.704218,0.68313,0.0554923,0.163487,0.939644,0.233111,0.364671,0.522835,0.668432,0.406268,0.987093,0.293013,0.325441,0.66686,0.510421,0.985224,0.0347905,0.382306,0.402459,0.686751,0.0722618,0.36758,0.286748,0.0861934,0.883055,0.760331,0.735905,0.156466,0.178175,0.780706,0.380962,0.182344,0.390114,0.991419,0.0916631,0.977271,0.192925,0.845405,0.496636,0.790585,0.369716,0.38147,0.942786,0.686053,0.860865,0.911383,0.928967,0.59896,0.714083,0.375167,0.710351,0.303645,0.145277,0.483843,0.726804,0.892895,0.341864,0.728027,0.728826,0.744677,0.232096,0.00821048,0.13899,0.240743,0.0281461,0.917131,0.240035,0.145334,0.82404,0.857477,0.54627,0.212625,0.00485057,0.0348958,0.493447,0.694957,0.275864,0.066812,0.832263,0.0327379,0.994919,0.435319,0.0146797,0.0966281,0.91169,0.3689,0.151443,0.442398,0.215627,0.502962,0.885748,0.174133,0.475431,0.146403,0.744224,0.630146,0.625796,0.257047,0.0724838,0.063581,0.686256,0.341931,0.727285,0.60114,0.990025,0.756635,0.262344,0.477668,0.516106,0.139449,0.306283,0.495676,0.700505,0.0879228,0.0442804,0.283228,0.794916,0.488432,0.791293,0.91448,0.536701,0.0766337,0.268922,0.485068,0.895665,0.130177,0.356631,0.938022,0.0957823,0.718311,0.172162,0.769769,0.559775,0.508679,0.213311,0.502918,0.464429,0.0415427,0.164469,0.703666,0.720689,0.440372,0.658133,0.143122,0.225257,0.750427,0.926678,0.253943,0.258743,0.0443721,0.933911,0.708609,0.2276,0.307501,0.899587,0.308104,0.704434,0.226304,0.548578,0.574089,0.583736,0.756908,0.966328,0.246162,0.958346,0.63273,0.898828,0.63085,0.583444,0.271382,0.696907,0.582476,0.251764,0.536029,0.699994,0.397743,0.365476,0.656748,0.914461,0.249597,0.604713,0.198788,0.647073,0.084698,0.173855,0.35762,0.88123,0.615055,0.447826,0.916552,0.545715,0.733935,0.332771,0.988791,0.844217,0.224736,0.672691,0.558534,0.893846,0.997227,0.935809,0.707187,0.358902,0.565691,0.57146,0.0298532,0.971247,0.533948,0.398919,0.905181,0.304973,0.20115,0.782388,0.241848,0.0779019,0.730167,0.421706,0.0239042,0.677184,0.317191,0.528569,0.223138,0.705524,0.497103,0.0499349,0.284317,0.804503,0.0589226,0.738301,0.643352,0.308684,0.608271,0.115584,0.541704,0.200416,0.827814,0.918327,0.397125,0.0396993,0.713834,0.594581,0.481262,0.169184,0.586345,0.858839,0.457939,0.803502,0.659311,0.0596564,0.989081,0.418799,0.40719,0.224325,0.130186,0.0278005,0.765957,0.853507,0.374139,0.14138,0.072818,0.249097,0.0793419,0.445732,0.933505,0.00516409,0.373366,0.328303,0.81638,0.0792304,0.984988,0.50257,0.911551,0.617491,0.550305,0.71357,0.922578,0.349243,0.0922945,0.585364,0.860858,0.195844,0.318499,0.279096,0.629747,0.944784,0.494058,0.899998,0.143144,0.695578,0.563646,0.790001,0.476149,0.72595,0.19589,0.756203,0.868688,0.0353037,0.79069,0.563009,0.936066,0.712414,0.928535,0.825677,0.252461,0.855718,0.480985,0.303784,0.0686916,0.409191,0.00614822,0.19991,0.873307,0.726334,0.711472,0.448871,0.18786,0.0084812,0.336941,0.68896,0.816085,0.0328606,0.0372926,0.873319,0.139244,0.19085,0.083469,0.861036,0.346813,0.5161,0.00454789,0.752825,0.360306,0.412369,0.17321,0.908826,0.550749,0.978469,0.23665,0.598055,0.545468,0.440813,0.296574,0.784993,0.00464368,0.776085,0.310173,0.68602,0.123969,0.0370963,0.405836,0.513293,0.858789,0.649361,0.504908,0.0571425,0.739962,0.324945,0.433512,0.743563,0.447707,0.0437939,0.46508,0.557554,0.69756,0.0934974,0.755047,0.456853,0.868594,0.646969,0.163746,0.693819,0.82827,0.612053,0.970162,0.610711,0.348723,0.539895,0.766033,0.146923,0.735452,0.325339,0.460639,0.41804,0.246932,0.991699,0.950509,0.196247,0.993623,0.0356013,0.107231,0.644328,0.714338,0.00569075,0.594108,0.0182858,0.724291,0.0824575,0.461681,0.648154,0.847894,0.398352,0.883509,0.134966,0.522094,0.376648,0.932781,0.213743,0.775712,0.393027,0.415555,0.111776,0.591913,0.489866,0.565213,0.755812,0.241687,0.788044,0.707245,0.969664,0.2853,0.231218,0.650783,0.0321695,0.24786,0.902165,0.763595,0.215462,0.902618,0.367897,0.584814,0.463656,0.845637,0.179298,0.0144681,0.502493,0.531286,0.885202,0.360803,0.156251,0.138852,0.842075,0.762284,0.93948,0.376345,0.725742,0.527478,0.409232,0.62465,0.287474,0.4626,0.0107946,0.867338,0.314227,0.117636,0.807204,0.783913,0.406988,0.963498,0.227493,0.735667,0.477875,0.674012,0.259719,0.887931,0.184215,0.525266,0.934399,0.58649,0.462733,0.886097,0.198156,0.141604,0.199097,0.196663,0.851462,0.968362,0.372672,0.0397509,0.213177,0.92105,0.732356,0.0227185,0.398483,0.97143,0.0166126,0.30489,0.715642,0.558987,0.616184,0.4616,0.807115,0.101722,0.0286462,0.754784,0.148584,0.642625,0.320637,0.917828,0.955712,0.755684,0.653045,0.366539,0.342468,0.796471,0.409662,0.166218,0.192054,0.134025,0.243901,0.141022,0.240776,0.562164,0.339692,0.930194,0.698599,0.73102,0.681282,0.541203,0.636887,0.972801,0.094229,0.346004,0.489658,0.365352,0.271815,0.647037,0.809003,0.922669,0.232467,0.873425,0.442625,0.753537,0.674533,0.672128,0.0706253,0.383177,0.962752,0.161258,0.304266,0.574716,0.220962,0.310905,0.479578,0.343258,0.802536,0.900812,0.319417,0.194167,0.766053,0.406063,0.749587,0.63524,0.217646,0.707106,0.270835,0.220737,0.566468,0.186401,0.777455,0.0756922,0.251271,0.0390254,0.21018,0.813579,0.9185,0.131409,0.33525,0.744057,0.750077,0.28913,0.357712,0.624686,0.363539,0.102036,0.95939,0.399229,0.307435,0.467921,0.110717,0.867381,0.496581,0.422376,0.0668367,0.873593,0.903101,0.485674,0.641013,0.591398,0.624699,0.205374,0.290411,0.852039,0.0092572,0.0161628,0.505207,0.746069,0.405545,0.554471,0.538474,0.382024,0.286609,0.516573,0.925253,0.626,0.933087,0.849008,0.798669,0.0813653,0.83588,0.960926,0.742776,0.678852,0.854238,0.166168,0.664384,0.421887,0.17103,0.101899,0.988794,0.430815,0.411804,0.236098,0.891371,0.601524,0.831471,0.685866,0.751215,0.776569,0.44466,0.0131223,0.623745,0.629302,0.028643,0.66599,0.872774,0.978698,0.571551,0.113597,0.650726,0.7981,0.166251,0.173007,0.0145563,0.533213,0.734348,0.654183,0.415506,0.366403,0.0527356,0.168314,0.962072,0.546459,0.762565,0.571931,0.459949,0.598154,0.234102,0.0145044,0.564506,0.970134,0.801901,0.131948,0.827665,0.494208,0.558717,0.651492,0.659629,0.650474,0.475054,0.429882,0.920976,0.895039,0.713924,0.219597,0.293002,0.65669,0.640715,0.832766,0.725418,0.173515,0.115346,0.607267,0.0519097,0.810601,0.217421,0.177092,0.116833,0.702362,0.731422,0.858366,0.952902,0.254717,0.196454,0.834052,0.637679,0.872516,0.00956059,0.946742,0.8826,0.0729864,0.935562,0.162502,0.559343,0.441466,0.277676,0.325029,0.955197,0.0927863,0.926165,0.294107,0.915004,0.980607,0.67692,0.72722,0.86959,0.45445,0.660819,0.919382,0.137973,0.829476,0.00259829,0.366294,0.041803,0.222287,0.598578,0.992246,0.190373,0.368749,0.56943,0.130717,0.344089,0.0586772,0.425664,0.484468,0.758572,0.163268,0.51658,0.454178,0.592897,0.264444,0.903185,0.205814,0.508292,0.29928,0.410169,0.714786,0.764997,0.339963,0.0899163,0.131778,0.0327773,0.879836,0.619605,0.283432,0.597575,0.431594,0.56324,0.733149,0.61494,0.882239,0.501051,0.434101,0.763891,0.350306,0.824269,0.833137,0.895088,0.740734,0.903382,|0.845953,0.763283,0.418186,0.174635,0.767288,0.246507,0.995797,0.497591,0.758591,0.705588,0.387814,0.465607,0.110533,0.087839,0.415192,0.044027,0.39139,0.924702,0.931926,0.979658,0.461723,0.529126,0.424707,0.0491159,0.0743039,0.526194,0.0125811,0.997547,0.65652,0.884988,0.20621,0.478867,0.0850688,0.469839,0.441073,0.628109,0.570918,0.777056,0.18202,0.989043,0.414523,0.998,0.937911,0.621135,0.959147,0.232617,0.0770792,0.198198,0.998015,0.0824856,0.508726,0.264623,0.901721,0.307915,0.0868813,0.630017,0.994098,0.10183,0.290354,0.783238,0.632142,0.135531,0.965272,0.834233,0.929397,0.855253,0.369424,0.92116,0.45329,0.330061,0.508953,0.225052,0.43833,0.675855,0.628466,0.922675,0.49492,0.974099,0.000823498,0.938146,0.193783,0.817065,0.978214,0.389964,0.681136,0.796587,0.142327,0.833562,0.770251,0.533792,0.0337856,0.190343,0.921257,0.239761,0.528367,0.278433,0.106331,0.830047,0.377449,0.665475,0.96052,0.295805,0.950768,0.735127,0.157374,0.574977,0.721313,0.755534,0.242342,0.697886,0.684517,0.16104,0.681173,0.570143,0.114554,0.321542,0.0347907,0.384837,0.232312,0.388814,0.300502,0.700168,0.778625,0.911759,0.186887,0.358391,0.828023,0.306004,0.92587,0.958597,0.220676,0.826149,0.486819,0.443119,0.558551,0.847388,0.793711,0.757069,0.641537,0.924976,0.468858,0.0928142,0.929011,0.43747,0.656991,0.30521,0.860832,0.287191,0.635303,0.689422,0.585131,0.949637,0.0490546,0.363579,0.144787,0.81283,0.724482,0.609069,0.808563,0.366615,0.0799158,0.447558,0.406182,0.23239,0.480602,0.788403,0.00738078,0.768964,0.385243,0.229609,0.378976,0.632674,0.0746451,0.988917,0.508308,0.656865,0.604108,0.095758,0.0401707,0.338656,0.373874,0.709287,0.10063,0.500749,0.917432,0.65431,0.388905,0.217257,0.276586,0.287488,0.230819,0.121593,0.808344,0.218596,0.729266,0.93022,0.971308,0.331979,0.99738,0.0828348,0.839544,0.104535,0.407309,0.920734,0.852727,0.706254,0.762235,0.237503,0.0190839,0.80465,0.639481,0.469845,0.93905,0.774301,0.321952,0.72236,0.914589,0.117791,0.308193,0.674528,0.834086,0.256031,0.912631,0.0674723,0.131196,0.0783646,0.750352,0.147015,0.941493,0.797811,0.629536,0.919714,0.612534,0.270975,0.384042,0.524929,0.873586,0.419055,0.533851,0.967198,0.659657,0.276218,0.20519,0.299021,0.0648303,0.0489143,0.602777,0.674099,0.484739,0.692253,0.960675,0.0241739,0.800534,0.0243713,0.821437,0.423437,0.993586,0.617495,0.580732,0.0211821,0.702886,0.375874,0.938983,0.269271,0.876446,0.398305,0.826555,0.0560079,0.122952,0.423292,0.257868,0.334894,0.898452,0.268542,0.792341,0.169761,0.117835,0.773011,0.711469,0.651504,0.9766,0.63127,0.923743,0.806574,0.793151,0.439644,0.257618,0.473292,0.465541,0.986987,0.0958264,0.487302,0.238609,0.452451,0.012898,0.339289,0.250456,0.390274,0.0983873,0.570354,0.489477,0.766498,0.306146,0.314502,0.535808,0.0550508,0.124036,0.13452,0.130086,0.0445957,0.929137,0.774596,0.439965,0.920684,0.637499,0.665467,0.308683,0.435131,0.970668,0.704105,0.994627,0.487767,0.207222,0.621791,0.415717,0.28442,0.190683,0.37575,0.799677,0.708881,0.59724,0.617332,0.279235,0.169744,0.961051,0.800507,0.962461,0.608298,0.0648444,0.157215,0.64463,0.876746,0.769942,0.559853,0.458549,0.583493,0.852422,0.399302,0.469718,0.260157,0.481831,0.80887,0.271113,0.218291,0.332226,0.229619,0.445868,0.739321,0.611161,0.0536107,0.0887669,0.464813,0.779483,0.935474,0.427883,0.256916,0.110279,0.147108,0.314026,0.790758,0.467353,0.973731,0.925565,0.703435,0.32319,0.740449,0.564272,0.907406,0.325425,0.710792,0.721441,0.166703,0.109977,0.312279,0.135116,0.613051,0.937518,0.36595,0.0263675,0.796273,0.245483,0.760278,0.939192,0.780725,0.869918,0.644861,0.239053,0.683306,0.505769,0.927305,0.825423,0.564018,0.110242,0.655554,0.887309,0.751271,0.214182,0.615576,0.823254,0.984559,0.470382,0.152004,0.935946,0.530971,0.046938,0.8486,0.319056,0.882972,0.459837,0.901328,0.0632799,0.809021,0.477591,0.417209,0.694996,0.188049,0.463965,0.194699,0.957336,0.76309,0.993837,0.481413,0.890639,0.988996,0.0333167,0.042712,0.918476,0.029618,0.474495,0.962866,0.828722,0.885571,0.306992,0.866023,0.540836,0.226272,0.0572522,0.36579,0.733638,0.097833,0.752813,0.125206,0.997394,0.290037,0.918469,0.640636,0.757486,0.210873,0.559936,0.898952,0.0531866,0.980755,0.162556,0.904604,0.286899,0.11225,0.794117,0.593241,0.0165044,0.0832645,0.0487512,0.227135,0.508617,0.677778,0.135017,0.286108,0.735058,0.378658,0.720535,0.426428,0.976379,0.697625,0.373933,0.0541995,0.606946,0.237849,0.114425,0.404413,0.653624,0.391279,0.0583909,0.311807,0.174899,0.157815,0.404054,0.858348,0.557346,0.373901,0.841319,0.767928,0.229063,0.182794,0.626399,0.773789,0.530223,0.0172718,0.738794,0.421654,0.995485,0.921238,0.238675,0.559603,0.660028,0.0837314,0.432513,0.197388,0.338316,0.299025,0.600357,0.270786,0.922112,0.343882,0.310744,0.990637,0.978822,0.190996,0.104653,0.286919,0.740308,0.134804,0.055515,0.693862,0.347067,0.792398,0.851148,0.420157,0.888778,0.795311,0.0508837,0.922015,0.528877,0.0806252,0.771208,0.184041,0.932468,0.236607,0.542484,0.48522,0.715919,0.579596,0.48026,0.452297,0.444594,0.396381,0.0124539,0.82622,0.00428289,0.369954,0.123631,0.844767,0.347469,0.881772,0.00102735,0.767985,0.0823308,0.605904,0.336788,0.248626,0.509946,0.136505,0.777763,0.49016,0.87498,0.787279,0.801838,0.466107,0.689669,0.697974,0.559226,0.632206,0.879376,0.938051,0.603901,0.591774,0.047042,0.0311339,0.184868,0.235922,0.360271,0.738256,0.101864,0.200921,0.0706273,0.0260084,0.885122,0.479745,0.809444,0.374047,0.512769,0.661336,0.125407,0.173862,0.759113,0.621116,0.990597,0.708963,0.529801,0.124966,0.679628,0.306103,0.0200865,0.806999,0.998727,0.337307,0.970909,0.0555925,0.172556,0.792898,0.400236,0.962562,0.0550021,0.563858,0.700515,0.422454,0.0828913,0.775978,0.791399,0.819731,0.0312487,0.746627,0.973366,0.474663,0.999858,0.917563,0.760099,0.419848,0.763815,0.998664,0.830573,0.866664,0.271106,0.907951,0.481055,0.384077,0.287194,0.395464,0.889979,0.113072,0.915738,0.607005,0.429531,0.104685,0.836388,0.634503,0.938943,0.995848,0.0360126,0.719101,0.0876181,0.466376,0.218128,0.775572,0.321517,0.593219,0.112674,0.180479,0.99586,0.209256,0.102217,0.132748,0.678186,0.0299118,0.707314,0.385144,0.890368,0.220698,0.711399,0.0540909,0.193256,0.632465,0.857884,0.945419,0.972129,0.97118,0.380313,0.731113,0.124857,0.695088,0.279136,0.585723,0.3824,0.837415,0.176369,0.116449,0.834125,0.82585,0.133751,0.482989,0.638682,0.55327,0.523758,0.806001,0.674705,0.637889,0.24746,0.663309,0.471074,0.38069,0.727926,0.533989,0.725293,0.0716627,0.805425,0.183014,0.486514,0.143257,0.120419,0.093524,0.203744,0.756314,0.0977619,0.269859,0.630422,0.488223,0.665038,0.392614,0.0163302,0.174069,0.423458,0.074838,0.710367,0.588803,0.500817,0.249425,0.753247,0.347719,0.425885,0.803966,0.948597,0.860815,0.54605,0.326039,0.933359,0.959969,0.642456,0.718469,0.327384,0.534979,0.807426,0.713228,0.174862,0.156443,0.653441,0.390134,0.783059,0.0714176,0.0141835,0.418393,0.851856,0.716264,0.735416,0.746171,0.807905,0.242726,0.627429,0.97038,0.210171,0.355401,0.190462,0.711408,0.828429,0.295215,0.924213,0.0677332,0.21958,0.437872,0.673496,0.746924,0.764091,0.569897,0.234796,0.120528,0.367069,0.285833,0.619329,0.0548981,0.629558,0.305812,0.586031,0.122981,0.972273,0.820938,0.864572,0.252094,0.290342,0.727569,0.792392,0.711762,0.46943,0.71311,0.693822,0.916357,0.152449,0.286116,0.770534,0.0842611,0.362367,0.128089,0.181627,0.903236,0.986109,0.00107795,0.366503,0.876079,0.918734,0.544554,0.193638,0.898883,0.898861,0.389678,0.818829,0.418149,0.421189,0.852493,0.146465,0.298769,0.462375,0.301687,0.157975,0.0508918,0.527103,0.728291,0.701765,0.740685,0.332596,0.491382,0.239422,0.721849,0.0683017,0.636602,0.03646,0.970893,0.862277,0.194584,0.607527,0.200222,0.146981,0.939022,0.645884,0.246982,0.234451,0.4128,0.87626,0.146027,0.799459,0.830798,0.787604,0.601988,0.359254,0.819511,0.390099,0.272244,0.360343,0.0469624,0.610789,0.844236,0.961572,0.488115,0.72075,0.329463,0.95869,0.647218,0.056502,0.954194,0.839612,0.925638,0.714076,0.888187,0.10573,0.281337,0.85445,0.744318,0.160242,0.773389,0.761422,0.288935,0.544434,0.434875,0.848117,0.201389,0.971637,0.537162,0.567763,0.306941,0.606739,0.910771,0.842676,0.0711157,0.686093,0.310207,0.840619,0.83933,0.26915,0.291034,0.308647,0.157207,0.934478,0.502013,0.368504,0.181957,0.793962,0.420938,0.211884,0.480424,0.9194,0.74678,0.366065,0.851534,0.264605,0.678899,0.888594,0.677865,0.46654,0.285917,0.642673,0.980787,0.880753,0.63594,0.471198,0.592554,0.304561,0.384775,0.109429,0.81886,0.243178,0.224325,0.158022,0.115108,0.856893,0.858827,0.208499,0.784726,0.170354,0.194811,0.626133,0.332981,0.493872,0.56991,0.295484,0.408004,0.657952,0.901838,0.237331,0.328532,0.631848,0.447227,0.616413,0.509732,0.666967,0.626512,0.578099,0.743538,0.156785,0.941197,0.24538,0.417608,0.596521,0.695976,0.968723,0.48871,0.402997,0.237944,0.598645,0.0424115,0.366964,0.731933,0.63682,0.733094,0.0530034,0.863141,0.722157,0.721397,0.259264,0.646536,0.0568751,0.194568,0.367803,0.337514,0.820399,0.487279,0.00718093,0.478989,0.400331,0.510031,0.115167,0.336973,0.341366,0.0531546,0.964747,0.694524,|0.286725,0.812885,0.325052,0.0866902,0.646146,0.967151,0.811972,0.452675,0.328733,0.139113,0.431092,0.955466,0.234188,0.723236,0.44918,0.617331,0.520553,0.985086,0.987761,0.65034,0.336895,0.558953,0.362065,0.727591,0.364427,0.383562,0.759578,0.408621,0.481822,0.900391,0.500541,0.751217,0.00075525,0.924412,0.621042,0.941547,0.128072,0.251,0.633723,0.463972,0.463959,0.20795,0.135347,0.0964063,0.991533,0.090161,0.28048,0.967566,0.54391,0.66259,0.954324,0.422657,0.410164,0.123079,0.73519,0.484914,0.506767,0.66899,0.476974,0.460141,0.839298,0.700567,0.111673,0.414863,0.0550944,0.123672,0.93542,0.372059,0.287556,0.0233361,0.562887,0.84625,0.298815,0.39002,0.504572,0.58809,0.59727,0.102251,0.843328,0.530621,0.987096,0.743625,0.17891,0.913979,0.89112,0.783126,0.494251,0.611476,0.915738,0.0896555,0.629985,0.247579,0.78919,0.411499,0.493026,0.479447,0.71019,0.333382,0.671117,0.362062,0.0204858,0.548529,0.0535541,0.385031,0.586067,0.0334588,0.924573,0.737052,0.610125,0.776185,0.552079,0.923192,0.149454,0.596022,0.426367,0.21677,0.705739,0.681413,0.511077,0.770798,0.213817,0.782479,0.932862,0.474055,0.763877,0.6891,0.126982,0.827401,0.276566,0.222502,0.120173,0.238153,0.959513,0.869206,0.621723,0.423715,0.31213,0.49441,0.910942,0.692266,0.231486,0.804712,0.151972,0.970546,0.126427,0.153481,0.503504,0.111146,0.933235,0.864204,0.0770583,0.0121712,0.694446,0.0704432,0.300681,0.966711,0.0992948,0.339082,0.862676,0.662325,0.166944,0.771356,0.45565,0.15716,0.913441,0.727073,0.133312,0.194791,0.639427,0.121344,0.996951,0.572354,0.781747,0.285543,0.734151,0.965199,0.325985,0.530457,0.735293,0.944286,0.87339,0.227801,0.505624,0.744461,0.961318,0.0580583,0.0531125,0.700039,0.311646,0.0481643,0.0864451,0.786927,0.705203,0.71907,0.427511,0.660717,0.562483,0.79329,0.87918,0.913666,0.2229,0.859005,0.582686,0.0633768,0.502182,0.951487,0.430696,0.273123,0.0849037,0.455205,0.750301,0.832884,0.841913,0.248323,0.097241,0.220579,0.313379,0.12941,0.864957,0.610901,0.900246,0.674742,0.0754443,0.920812,0.423441,0.930737,0.0177141,0.374486,0.436412,0.80368,0.458212,0.497087,0.701729,0.984277,0.808162,0.930022,0.184878,0.412208,0.154938,0.390457,0.801355,0.574888,0.522336,0.408319,0.584326,0.245639,0.494915,0.936971,0.627526,0.78105,0.360806,0.839398,0.00802529,0.554881,0.679136,0.709086,0.159231,0.468885,0.633989,0.804804,0.657334,0.952117,0.360628,0.649346,0.37601,0.336815,0.742876,0.262534,0.76395,0.718785,0.440592,0.631867,0.656863,0.419194,0.659627,0.185036,0.766428,0.687789,0.771929,0.309846,0.667698,0.978167,0.686374,0.777089,0.809143,0.182656,0.607184,0.943005,0.238556,0.123893,0.234881,0.270718,0.362486,0.201524,0.796882,0.377416,0.750278,0.167766,0.562801,0.742123,0.286438,0.222396,0.946211,0.658124,0.162156,0.782249,0.962431,0.806117,0.0918138,0.838625,0.788966,0.66569,0.613483,0.699675,0.741211,0.372849,0.0547007,0.96202,0.860469,0.0888878,0.119907,0.939444,0.288574,0.34353,0.308024,0.41651,0.753905,0.230885,0.0381036,0.650735,0.790722,0.392346,0.87407,0.279063,0.593549,0.630511,0.769326,0.268395,0.578623,0.117278,0.244092,0.769674,0.464493,0.879476,0.773236,0.547303,0.0108929,0.237035,0.12053,0.538289,0.300224,0.52801,0.485063,0.311282,0.442603,0.261633,0.22954,0.906344,0.528788,0.665482,0.554406,0.96879,0.592852,0.413384,0.381319,0.696115,0.128592,0.511233,0.876101,0.264989,0.0271421,0.837655,0.275614,0.77571,0.841877,0.455741,0.387816,0.353534,0.296393,0.0533198,0.574964,0.79748,0.635644,0.779637,0.782047,0.967599,0.111392,0.586351,0.591187,0.358525,0.0297313,0.134841,0.00138158,0.944355,0.943239,0.0762352,0.185161,0.0011217,0.427912,0.510232,0.183173,0.730357,0.618641,0.582263,0.407388,0.449299,0.634209,0.217687,0.222765,0.295584,0.501126,0.311709,0.086858,0.647283,0.562782,0.461046,0.0097478,0.848259,0.0227104,0.879168,0.141949,0.96835,0.900085,0.00299758,0.183775,0.786801,0.0330342,0.0877689,0.560725,0.0519732,0.142729,0.503559,0.810238,0.126078,0.542394,0.905924,0.501308,0.445978,0.119028,0.0447758,0.786724,0.593232,0.579458,0.131296,0.10578,0.535232,0.286167,0.246403,0.503688,0.330304,0.995645,0.517842,0.534685,0.405487,0.734109,0.855675,0.309934,0.32693,0.938275,0.987088,0.398733,0.266186,0.714899,0.0290853,0.264275,0.521638,0.162767,0.0939193,0.354249,0.0117472,0.0405019,0.0406966,0.386154,0.545721,0.461529,0.22273,0.512411,0.76758,0.3558,0.122005,0.28958,0.0455036,0.0524659,0.485002,0.196961,0.806463,0.392451,0.0848635,0.416186,0.688073,0.215631,0.331317,0.662016,0.611931,0.451589,0.328841,0.330073,0.45691,0.474078,0.143977,0.155351,0.488288,0.981776,0.852745,0.826802,0.860956,0.18368,0.106072,0.153165,0.947834,0.400815,0.946741,0.749946,0.840088,0.334532,0.830332,0.299656,0.919405,0.970229,0.0487768,0.665048,0.900309,0.673189,0.258665,0.779268,0.643625,0.50799,0.711117,0.77622,0.656941,0.728203,0.655327,0.487082,0.315024,0.356722,0.0518181,0.365361,0.0243052,0.00598013,0.727751,0.101173,0.714785,0.301416,0.613382,0.882745,0.615687,0.729986,0.102152,0.236388,0.211362,0.0988224,0.23347,0.660939,0.250429,0.404806,0.702563,0.920388,0.584835,0.779566,0.112896,0.464987,0.209331,0.506132,0.383563,0.0783079,0.920898,0.0176858,0.127847,0.0514539,0.66902,0.420244,0.042706,0.589202,0.850892,0.179339,0.364214,0.698908,0.0339295,0.895509,0.0538967,0.667878,0.916733,0.187292,0.257467,0.403005,0.431659,0.517383,0.086143,0.819445,0.898534,0.894326,0.900506,0.657323,0.351103,0.429805,0.38635,0.500737,0.170369,0.558406,0.410772,0.671189,0.999239,0.656623,0.210238,0.0846743,0.0463208,0.398771,0.21257,0.643706,0.734917,0.784566,0.972874,0.0318306,0.868339,0.08865,0.502482,0.28633,0.00846273,0.106783,0.576397,0.0768135,0.0317948,0.338545,0.185376,0.34112,0.861069,0.542497,0.884436,0.314393,0.280048,0.134706,0.417599,0.901006,0.237842,0.0457024,0.424822,0.912886,0.239927,0.433073,0.287468,0.475843,0.117641,0.829654,0.703243,0.846722,0.558658,0.319062,0.466518,0.701953,0.854501,0.38743,0.252469,0.56281,0.893092,0.973337,0.0939801,0.922851,0.611258,0.68661,0.659612,0.409537,0.553644,0.58499,0.0551578,0.519646,0.579981,0.0954334,0.575926,0.883927,0.771397,0.963803,0.807027,0.267891,0.0622444,0.00649476,0.704377,0.229119,0.15998,0.83931,0.0875734,0.77529,0.8691,0.698402,0.713073,0.244557,0.0271994,0.0116973,0.413078,0.915186,0.254287,0.208742,0.167398,0.0885682,0.939077,0.343998,0.504157,0.595192,0.87653,0.387981,0.433079,0.0436095,0.0934554,0.660353,0.559298,0.210519,0.952534,0.608671,0.620031,0.975158,0.579207,0.393134,0.598292,0.893534,0.947832,0.974263,0.335945,0.729428,0.617903,0.339375,0.0462547,0.477132,0.963505,0.709601,0.314237,0.0804288,0.362509,0.121603,0.709236,0.844107,0.169213,0.022217,0.895453,0.0662974,0.975903,0.922263,0.834134,0.672927,0.905601,0.403556,0.130992,0.442374,0.063836,0.928573,0.526985,0.180864,0.0920517,0.445814,0.838394,0.638792,0.0729095,0.515841,0.239152,0.617333,0.0854592,0.507605,0.579786,0.0182056,0.459604,0.240394,0.892706,0.910371,0.523971,0.0119625,0.803091,0.00640905,0.830051,0.610505,0.840676,0.548549,0.911171,0.527597,0.216329,0.46504,0.648788,0.917802,0.173159,0.123067,0.547917,0.8527,0.837131,0.171978,0.73187,0.531677,0.680596,0.600519,0.395223,0.831077,0.599001,0.409553,0.780124,0.124973,0.617533,0.511296,0.715826,0.0264173,0.21405,0.106216,0.703744,0.65723,0.0328823,0.400137,0.361062,0.728673,0.450123,0.658324,0.854604,0.712783,0.799447,0.0515085,0.56147,0.100216,0.0126905,0.303819,0.909152,0.947135,0.18415,0.890163,0.150252,0.503923,0.331935,0.0652546,0.296919,0.955079,0.623872,0.6042,0.409929,0.832506,0.702324,0.736715,0.24178,0.484441,0.998786,0.243926,0.241489,0.330986,0.536901,0.994199,0.346695,0.253189,0.550484,0.434925,0.989169,0.760817,0.546727,0.597426,0.252209,0.648136,0.356918,0.179026,0.972711,0.880425,0.54691,0.448503,0.395221,0.397146,0.176343,0.514718,0.749358,0.0344112,0.90158,0.322465,0.44635,0.882896,0.108981,0.469255,0.5288,0.329252,0.84721,0.906403,0.670909,0.786427,0.645305,0.162932,0.306176,0.277898,0.0529032,0.641295,0.893866,0.0985252,0.858131,0.581207,0.8495,0.724628,0.576424,0.00777036,0.176231,0.238199,0.795276,0.565957,0.335119,0.742657,0.180399,0.487584,0.0386844,0.29539,0.984837,0.680904,0.164218,0.729726,0.345036,0.480426,0.283975,0.177827,0.248703,0.0644887,0.658439,0.830651,0.459027,0.802662,0.616035,0.387915,0.821489,0.110613,0.732456,0.0727852,0.507271,0.979138,0.0240007,0.490274,0.0620646,0.698186,0.492758,0.990878,0.776513,0.784616,0.7659,0.467618,0.782838,0.0886562,0.461751,0.716541,0.683225,0.122431,0.768492,0.113328,0.376053,0.349092,0.16882,0.319286,0.726895,0.368452,0.576004,0.324235,0.235072,0.949472,0.297994,0.706292,0.0717837,0.0981779,0.662127,0.602938,0.33335,0.130116,0.979986,0.872861,0.032176,0.674388,0.545995,0.97438,0.0423365,0.0162045,0.148621,0.934049,0.299128,0.859877,0.659912,0.429662,0.642581,0.502258,0.203819,0.163997,0.145608,0.193979,0.602515,0.340388,0.838173,0.980337,0.183123,0.905328,0.200678,0.375206,0.60845,0.513882,0.869154,0.0613971,0.0178618,0.341779,0.375073,0.301928,0.281188,0.581654,0.128818,0.768209,0.988179,0.146944,0.548766,0.910686,0.831981,0.161679,0.288652,|0.220371,0.165177,0.376612,0.991504,0.252122,0.416413,0.498427,0.764835,0.890992,0.526419,0.0491455,0.95946,0.142,0.368478,0.615336,0.0781775,0.089012,0.0614641,0.971146,0.4605,0.733201,0.285698,0.321535,0.730304,0.386235,0.452349,0.246751,0.263625,0.466517,0.0370237,0.273092,0.542747,0.964887,0.997317,0.388875,0.491893,0.703703,0.639445,0.770909,0.483586,0.454973,0.815105,0.830245,0.738082,0.64143,0.0852888,0.128181,0.511238,0.502999,0.554731,0.667976,0.795687,0.313904,0.179957,0.384555,0.497822,0.0261732,0.821278,0.228016,0.99956,0.583332,0.538489,0.339372,0.131421,0.504261,0.378664,0.653671,0.973814,0.638535,0.917026,0.399277,0.147726,0.166702,0.0881191,0.662112,0.9255,0.190902,0.723348,0.116472,0.642776,0.308594,0.051958,0.0383533,0.653291,0.486118,0.529729,0.225782,0.270422,0.244736,0.368231,0.688012,0.936964,0.795018,0.611489,0.673511,0.596861,0.979516,0.715688,0.114196,0.230773,0.152749,0.356858,0.46768,0.704473,0.323477,0.867797,0.40463,0.587938,0.605998,0.911466,0.141231,0.614577,0.377036,0.754386,0.372902,0.736035,0.793957,0.692162,0.256105,0.0201166,0.297987,0.496338,0.312853,0.815389,0.0554502,0.947486,0.490368,0.896147,0.384631,0.157834,0.677471,0.532432,0.197496,0.290907,0.764485,0.194301,0.735816,0.802771,0.0228603,0.453792,0.491296,0.263637,0.467173,0.108753,0.93587,0.499156,0.391367,0.368774,0.0225047,0.102774,0.451943,0.591037,0.428095,0.775122,0.996572,0.279239,0.567798,0.628658,0.659192,0.282097,0.0199788,0.0235779,0.852392,0.830582,0.434224,0.504679,0.555663,0.13728,0.803423,0.366815,0.867346,0.391123,0.0291191,0.559891,0.170503,0.0326418,0.209502,0.230406,0.75384,0.528495,0.735221,0.622386,0.241808,0.579221,0.910856,0.655407,0.837325,0.869494,0.8544,0.854483,0.793382,0.0372518,0.349881,0.305329,0.415313,0.586872,0.403354,0.659828,0.859847,0.132348,0.690276,0.28983,0.950664,0.827083,0.085915,0.786146,0.947512,0.710554,0.991304,0.21835,0.247179,0.477995,0.537905,0.460089,0.473263,0.77864,0.878176,0.105744,0.617621,0.352854,0.0244688,0.129817,0.389978,0.605165,0.879537,0.953259,0.239987,0.657464,0.22001,0.509987,0.757108,0.526785,0.44332,0.565986,0.360184,0.309206,0.987529,0.459965,0.406858,0.438716,0.645472,0.556096,0.196218,0.0403488,0.398215,0.115618,0.862784,0.552403,0.905726,0.238102,0.63222,0.870587,0.596598,0.144641,0.125378,0.81415,0.91339,0.0448647,0.897124,0.326968,0.890587,0.831223,0.580256,0.582324,0.776912,0.85086,0.330162,0.632355,0.617663,0.683304,0.629523,0.464011,0.470999,0.197835,0.953725,0.950507,0.783677,0.403215,0.189091,0.060676,0.151524,0.0612363,0.754781,0.792356,0.245413,0.855552,0.57169,0.360697,0.381755,0.0616699,0.801591,0.434958,0.503287,0.814856,0.629989,0.108877,0.741193,0.367995,0.0676212,0.443176,0.552399,0.280976,0.854036,0.834353,0.13671,0.864985,0.173687,0.933948,0.780828,0.376875,0.645605,0.41066,0.557984,0.708981,0.0719333,0.678239,0.469113,0.379637,0.772072,0.232256,0.917869,0.414628,0.588655,0.802216,0.380298,0.181155,0.448693,0.745638,0.463186,0.383558,0.0456644,0.20596,0.382152,0.646705,0.542773,0.693298,0.195944,0.800474,0.991205,0.263766,0.240756,0.346007,0.746916,0.619054,0.156717,0.976891,0.54359,0.303359,0.388689,0.3212,0.846722,0.21634,0.909351,0.565083,0.434847,0.249576,0.158829,0.895364,0.442589,0.358577,0.583109,0.814229,0.131113,0.780861,0.493379,0.252738,0.530005,0.387485,0.939648,0.260783,0.447668,0.683562,0.368869,0.534016,0.58998,0.504616,0.562442,0.19463,0.76996,0.934002,0.981307,0.190607,0.143923,0.258185,0.716348,0.290405,0.72992,0.353863,0.530714,0.456304,0.568141,0.00524139,0.11544,0.248971,0.0929435,0.63769,0.79574,0.548449,0.845207,0.794653,0.795098,0.731514,0.180808,0.592269,0.345486,0.0323527,0.313202,0.375965,0.868519,0.506557,0.834706,0.20375,0.467052,0.954468,0.162615,0.641509,0.289148,0.239761,0.0874824,0.634739,0.813606,0.962686,0.481873,0.718006,0.142215,0.864735,0.763058,0.637767,0.756267,0.700353,0.389975,0.24434,0.235012,0.405335,0.00647604,0.797063,0.722992,0.449014,0.257881,0.838888,0.783655,0.136732,0.727754,0.806947,0.734207,0.174166,0.290557,0.0480718,0.797776,0.843816,0.35011,0.26728,0.117695,0.598557,0.374119,0.911978,0.439092,0.229875,0.779913,0.934151,0.425543,0.319189,0.588777,0.902167,0.479116,0.382719,0.527455,0.494629,0.652681,0.536894,0.523209,0.22487,0.772972,0.900054,0.184348,0.21401,0.712092,0.347068,0.906246,0.55512,0.389109,0.132845,0.668118,0.516233,0.325749,0.110845,0.328343,0.371848,0.0316538,0.233461,0.672847,0.437685,0.916457,0.614116,0.212745,0.0156202,0.397143,0.846033,0.033502,0.31901,0.328751,0.0950195,0.888064,0.330058,0.314889,0.227727,0.361747,0.555937,0.322181,0.701611,0.884112,0.969877,0.983477,0.262032,0.404183,0.759342,0.84016,0.392048,0.711877,0.587527,0.702917,0.87113,0.760281,0.462843,0.329166,0.306287,0.428102,0.90441,0.879073,0.979962,0.865309,0.844508,0.502388,0.618009,0.635999,0.919925,0.581601,0.170555,0.681468,0.264913,0.937315,0.745645,0.2942,0.936069,0.0823184,0.760961,0.25351,0.0799567,0.537998,0.341265,0.915079,0.16729,0.29577,0.386829,0.705544,0.0637853,0.359545,0.221721,0.424368,0.441246,0.40365,0.865924,0.252548,0.00196737,0.994839,0.349143,0.103853,0.846959,0.501556,0.00470227,0.515943,0.707911,0.339214,0.156885,0.498453,0.246138,0.298783,0.442689,0.986206,0.987699,0.222586,0.608796,0.210086,0.418563,0.62102,0.702214,0.577473,0.378257,0.326353,0.131635,0.146677,0.921155,0.229179,0.504685,0.0261768,0.997788,0.359466,0.214281,0.738952,0.589878,0.952627,0.327768,0.547389,0.777648,0.256774,0.140429,0.907897,0.814019,0.0617049,0.632138,0.676296,0.490212,0.396875,0.0545223,0.381502,0.449122,0.656171,0.297558,0.563431,0.595526,0.679899,0.358975,0.886384,0.789232,0.0701489,0.341524,0.80274,0.718638,0.19754,0.992695,0.721874,0.851428,0.329146,0.634913,0.785249,0.941108,0.791344,0.346755,0.704693,0.962292,0.393671,0.612913,0.371787,0.571522,0.931788,0.981179,0.133549,0.452551,0.897053,0.265921,0.0682039,0.923903,0.15002,0.709811,0.557303,0.862012,0.107793,0.0609924,0.206332,0.137042,0.97172,0.166353,0.148533,0.615459,0.12872,0.86566,0.110694,0.199652,0.0604933,0.180873,0.495113,0.418479,0.401548,0.870936,0.496752,0.193154,0.839929,0.80713,0.300016,0.722561,0.33786,0.141827,0.528086,0.255469,0.103815,0.172489,0.631647,0.638555,0.756035,0.579766,0.215486,0.322397,0.564653,0.935629,0.697373,0.0598801,0.257527,0.779189,0.00682521,0.700535,0.26936,0.332273,0.713511,0.423901,0.137973,0.695356,0.40119,0.435292,0.905036,0.982334,0.438051,0.373792,0.724685,0.214244,0.942892,0.483633,0.244281,0.229515,0.797306,0.812689,0.0107911,0.91181,0.0652412,0.29022,0.223808,0.345668,0.901667,0.373167,0.294377,0.180977,0.94832,0.806411,0.862325,0.570009,0.0417655,0.779093,0.351149,0.503847,0.829742,0.825188,0.711943,0.546997,0.239933,0.177526,0.729798,0.133857,0.697842,0.917501,0.603364,0.401279,0.357838,0.163915,0.600067,0.759202,0.993834,0.114226,0.570353,0.740005,0.0942563,0.533804,0.761844,0.118886,0.286543,0.834064,0.482651,0.710805,0.41264,0.13837,0.839759,0.912715,0.104174,0.964001,0.505946,0.445527,0.359327,0.39015,0.354561,0.229444,0.540335,0.969335,0.856904,0.50321,0.949992,0.340372,0.372501,0.33085,0.247193,0.163402,0.28057,0.19134,0.0488761,0.307622,0.22723,0.356808,0.619093,0.649713,0.211215,0.748501,0.0624603,0.953545,0.105397,0.449709,0.535191,0.749512,0.161597,0.361593,0.612444,0.958802,0.819953,0.31722,0.711168,0.658001,0.105782,0.0417342,0.852139,0.0177223,0.345801,0.309791,0.355576,0.106304,0.195203,0.272643,0.0756189,0.632657,0.470616,0.859244,0.113549,0.375659,0.851126,0.381539,0.327052,0.544522,0.107027,0.598271,0.480772,0.625867,0.840212,0.119439,0.733632,0.289893,0.128259,0.608393,0.216314,0.384536,0.2334,0.506155,0.0581707,0.545602,0.139113,0.792394,0.893604,0.293176,0.359716,0.787965,0.893808,0.0684422,0.900407,0.391091,0.936882,0.459156,0.120552,0.77134,0.330801,0.538479,0.588958,0.0918648,0.175187,0.0921376,0.272763,0.406966,0.115178,0.928474,0.577239,0.330441,0.59745,0.369002,0.340696,0.899763,0.0524085,0.17582,0.699664,0.208479,0.80211,0.769062,0.951008,0.913738,0.237538,0.293162,0.314201,0.799854,0.718655,0.445693,0.551984,0.13904,0.650091,0.473103,0.816153,0.551653,0.90193,0.705273,0.0176346,0.168232,0.776554,0.480273,0.0666509,0.853178,0.899647,0.453657,0.168952,0.662449,0.0996613,0.691425,0.439313,0.218451,0.714222,0.983551,0.611949,0.0372705,0.115522,0.789649,0.115389,0.723009,0.116989,0.454848,0.956436,0.254108,0.0488307,0.461822,0.302688,0.733034,0.678536,0.272761,0.577709,0.571688,0.246891,0.0111248,0.716756,0.067452,0.900808,0.270426,0.213062,0.27544,0.0708736,0.803206,0.976264,0.463419,0.776512,0.528204,0.748492,0.0640444,0.0267721,0.857287,0.480597,0.196239,0.928266,0.82123,0.567165,0.272101,0.175942,0.129509,0.435162,0.990349,0.0154776,0.575335,0.63911,0.378786,0.233412,0.995819,0.309305,0.484717,0.9999,0.180578,0.278201,0.715331,0.654273,0.952362,0.67444,0.617009,0.787077,0.84829,0.675485,0.00379735,0.837544,0.479535,0.585122,0.526054,0.545279,0.775302,0.626677,0.227057,0.755969,0.32446,0.893959,0.463446,0.914543,0.572029,0.820942,0.00654912,0.33624,0.583151,|0.484287,0.952601,0.900975,0.136205,0.558002,0.378248,0.760131,0.759272,0.0911244,0.0881751,0.0752434,0.714659,0.629478,0.652586,0.0285224,0.437309,0.819869,0.736313,0.650358,0.166681,0.86452,0.311337,0.821883,0.014994,0.225427,0.437288,0.123118,0.957701,0.858973,0.184404,0.386763,0.042955,0.991676,0.0467611,0.429733,0.75517,0.0498893,0.853917,0.108587,0.691531,0.401715,0.963664,0.299045,0.874783,0.00475067,0.838423,0.927171,0.653888,0.0961823,0.761328,0.110106,0.258219,0.0452337,0.897581,0.677269,0.895368,0.743558,0.416817,0.631421,0.93229,0.624525,0.791562,0.535921,0.206779,0.18883,0.623829,0.348479,0.552198,0.668491,0.65609,0.0864558,0.321145,0.720909,0.349209,0.38226,0.12525,0.315603,0.399091,0.378881,0.138669,0.584585,0.35341,0.102625,0.0897643,0.870327,0.100186,0.453941,0.462825,0.923272,0.34631,0.00875276,0.351021,0.387864,0.0290198,0.697532,0.757379,0.289372,0.326068,0.347365,0.910685,0.994455,0.770919,0.865824,0.912265,0.24072,0.348108,0.158749,0.67692,0.318156,0.287853,0.331913,0.117674,0.646863,0.964549,0.981279,0.16185,0.394006,0.216112,0.510066,0.354161,0.139753,0.856199,0.889463,0.695364,0.778701,0.519803,0.345794,0.911283,0.593057,0.844448,0.247426,0.34647,0.0946103,0.745863,0.593232,0.723753,0.471681,0.960198,0.502409,0.588625,0.788923,0.32522,0.506645,0.940326,0.304788,0.83007,0.418598,0.429408,0.581544,0.400395,0.139354,0.766652,0.903887,0.436144,0.388352,0.944987,0.479885,0.77071,0.894434,0.561096,0.369016,0.832051,0.202537,0.0953885,0.958975,0.0731129,0.307762,0.788709,0.638008,0.312178,0.536401,0.588852,0.0918486,0.414974,0.929063,0.246144,0.365335,0.852974,0.866121,0.319948,0.05987,0.0870606,0.134439,0.728047,0.430378,0.360575,0.613657,0.989986,0.4393,0.411988,0.395972,0.887518,0.587089,0.896103,0.632498,0.832268,0.760735,0.191674,0.469621,0.053913,0.948803,0.696385,0.35055,0.329514,0.75702,0.248076,0.43504,0.455648,0.610496,0.251753,0.426766,0.147086,0.838168,0.180332,0.608796,0.761187,0.576673,0.393821,0.706627,0.532103,0.629602,0.476296,0.993128,0.915482,0.298644,0.874954,0.144018,0.293799,0.180554,0.165821,0.201726,0.850609,0.649386,0.61847,0.276743,0.317883,0.481877,0.95494,0.270208,0.7716,0.861984,0.758159,0.478136,0.376883,0.648217,0.305905,0.0624301,0.152699,0.00582564,0.994792,0.81739,0.441058,0.60705,0.679152,0.138681,0.702498,0.18293,0.154202,0.6617,0.648082,0.64949,0.386934,0.331527,0.864335,0.470443,0.640159,0.169794,0.364238,0.0623939,0.720625,0.22625,0.879921,0.100565,0.165646,0.0544678,0.130405,0.534855,0.46593,0.174056,0.105506,0.230255,0.229448,0.661944,0.268533,0.33935,0.310576,0.0462036,0.134989,0.815474,0.320079,0.777866,0.533706,0.789849,0.311522,0.107546,0.54433,0.199132,0.470524,0.484176,0.638295,0.824838,0.0514315,0.892763,0.075698,0.917079,0.277439,0.84597,0.748452,0.876346,0.961783,0.127149,0.530798,0.162134,0.0794534,0.913805,0.586978,0.112129,0.668835,0.851577,0.980794,0.434877,0.65254,0.966609,0.234028,0.895672,0.181408,0.444,0.41464,0.127084,0.112816,0.433765,0.359705,0.91665,0.764482,0.163313,0.38312,0.950756,0.778242,0.740727,0.753207,0.601044,0.843449,0.531198,0.320478,0.502226,0.756335,0.326927,0.593701,0.819184,0.757593,0.0245239,0.0942143,0.424875,0.320182,0.079479,0.164503,0.886047,0.904241,0.60288,0.999981,0.496502,0.498152,0.767451,0.387953,0.797297,0.60097,0.346091,0.698489,0.869033,0.797077,0.370652,0.155252,0.512588,0.394209,0.27917,0.550399,0.204991,0.456178,0.116953,0.739077,0.049907,0.859863,0.0774361,0.884795,0.80117,0.342356,0.713726,0.0835235,0.628274,0.377489,0.732537,0.860338,0.523382,0.491,0.695036,0.0171881,0.387542,0.833364,0.530429,0.112488,0.448861,0.620958,0.64799,0.575776,0.9207,0.612247,0.368616,0.668784,0.896588,0.493653,0.121218,0.0788897,0.175313,0.233271,0.609865,0.865177,0.823992,0.953168,0.19408,0.45666,0.2598,0.147353,0.749541,0.164048,0.293845,0.463116,0.921503,0.699322,0.226006,0.813579,0.81834,0.532282,0.851705,0.0264668,0.105885,0.0885379,0.0123342,0.744647,0.980328,0.432788,0.199009,0.0599638,0.417155,0.617631,0.325495,0.0123682,0.813288,0.220321,0.698841,0.454793,0.873981,0.842823,0.901169,0.493375,0.656452,0.998115,0.932972,0.793976,0.989879,0.825643,0.830272,0.39729,0.321259,0.270886,0.190313,0.665199,0.349758,0.181312,0.483382,0.252442,0.216969,0.718934,0.155767,0.470163,0.954182,0.149252,0.727532,0.894538,0.883564,0.280535,0.0255092,0.00215143,0.561278,0.960422,0.720124,0.409888,0.993746,0.55387,0.82378,0.626258,0.59633,0.971565,0.786233,0.370168,0.42542,0.115223,0.30537,0.916715,0.412119,0.971101,0.836756,0.201181,0.300856,0.0515893,0.581106,0.525216,0.52505,0.900655,0.364166,0.502756,0.0109917,0.773002,0.528193,0.29372,0.0989767,0.00919396,0.0719429,0.430555,0.0667719,0.794194,0.950261,0.798484,0.706428,0.994147,0.531693,0.0539743,0.99108,0.668772,0.538235,0.0907029,0.422136,0.339263,0.802973,0.74565,0.531233,0.98352,0.136094,0.62003,0.501964,0.698341,0.701717,0.780836,0.754777,0.43932,0.0386972,0.266719,0.651153,0.881825,0.427607,0.597062,0.109659,0.886322,0.507848,0.495376,0.764432,0.0434405,0.409568,0.649591,0.586771,0.678097,0.394856,0.936377,0.876519,0.8091,0.108299,0.660172,0.817183,0.184529,0.0391622,0.453445,0.412507,0.136847,0.920541,0.563315,0.616392,0.757879,0.785881,0.182502,0.527292,0.406627,0.489274,0.138288,0.583917,0.971864,0.156074,0.093524,0.489372,0.665624,0.49335,0.209945,0.938966,0.321813,0.426459,0.168904,0.0845696,0.182378,0.0108674,0.924094,0.373624,0.450923,0.272179,0.0128615,0.679857,0.710945,0.681115,0.706191,0.544538,0.0121782,0.206181,0.632361,0.889729,0.965982,0.0587555,0.661355,0.1989,0.356929,0.282518,0.746647,0.26294,0.436457,0.379515,0.888235,0.45048,0.201197,0.831993,0.247818,0.571518,0.516808,0.26635,0.500634,0.307681,0.395316,0.537123,0.730916,0.98744,0.933575,0.812011,0.397586,0.569915,0.80317,0.00686449,0.888969,0.774542,0.404529,0.0442279,0.744594,0.962253,0.296558,0.263725,0.828291,0.449262,0.148465,0.149617,0.93296,0.566864,0.921322,0.581491,0.863549,0.692757,0.661558,0.838571,0.48177,0.00765425,0.839355,0.962458,0.908418,0.440493,0.270019,0.0615301,0.991038,0.906471,0.663037,0.359744,0.269605,0.686417,0.67251,0.542603,0.397762,0.799426,0.542013,0.103342,0.68788,0.447042,0.53707,0.809992,0.382547,0.941784,0.477483,0.988835,0.508191,0.510429,0.917709,0.635233,0.00784868,0.629345,0.171063,0.748969,0.653534,0.574418,0.960714,0.028334,0.111355,0.240076,0.375753,0.056979,0.525112,0.0483472,0.882279,0.926851,0.718561,0.0364466,0.241612,0.525587,0.0893735,0.28752,0.456506,0.968952,0.973609,0.285104,0.402747,0.171235,0.387448,0.382409,0.702919,0.936485,0.917105,0.821669,0.238907,0.423718,0.837579,0.909395,0.239386,0.767736,0.976601,0.123108,0.00702006,0.91763,0.270339,0.585749,0.211106,0.482031,0.980109,0.565381,0.0296283,0.193592,0.0539095,0.708032,0.643415,0.266004,0.785343,0.254104,0.0115104,0.367244,0.524704,0.958792,0.219605,0.212492,0.0215663,0.497529,0.389539,0.59624,0.0720786,0.634766,0.668483,0.98531,0.624852,0.958429,0.388781,0.509368,0.0724953,0.289715,0.451093,0.971684,0.647299,0.835101,0.463727,0.356845,0.177657,0.973763,0.684633,0.542738,0.136548,0.163669,0.244062,0.993977,0.882536,0.665933,0.737023,0.390891,0.488529,0.707607,0.406701,0.191241,0.951606,0.430373,0.850418,0.844957,0.542364,0.520787,0.726636,0.387206,0.0930569,0.914063,0.0180874,0.208245,0.824076,0.782698,0.200228,0.28179,0.686354,0.28958,0.754083,0.633919,0.044494,0.329667,0.384805,0.804623,0.719188,0.974479,0.126999,0.925893,0.201351,0.793505,0.765192,0.414688,0.562371,0.186462,0.832641,0.455072,0.0127891,0.842325,0.462334,0.775699,0.0121393,0.577805,0.451772,0.287157,0.707655,0.56631,0.044389,0.335059,0.60577,0.372755,0.575062,0.869978,0.300807,0.685076,0.16001,0.854047,0.732432,0.502457,0.857169,0.398495,0.234937,0.839666,0.46129,0.73761,0.967894,0.831294,0.471786,0.623833,0.565034,0.932608,0.0402237,0.598884,0.46229,0.651836,0.511816,0.259212,0.37803,0.791601,0.249414,0.0794834,0.494246,0.0046398,0.57496,0.338427,0.637194,0.463373,0.613302,0.447848,0.99835,0.79989,0.773617,0.00939631,0.896234,0.589206,0.246358,0.679712,0.495249,0.00399303,0.306527,0.220442,0.584123,0.40241,0.262238,0.00709236,0.515079,0.539751,0.55913,0.661379,0.899443,0.410754,0.949878,0.877054,0.347026,0.311037,0.284271,0.804181,0.0946726,0.558221,0.804265,0.219249,0.306734,0.963257,0.943114,0.579632,0.889011,0.121524,0.553666,0.646779,0.487664,0.956258,0.395078,0.80508,0.475578,0.623752,0.547834,0.455283,0.102597,0.122708,0.982552,0.451593,0.817611,0.903754,0.747172,0.749528,0.869064,0.624199,0.0405946,0.769278,0.905247,0.253339,0.0107937,0.752686,0.19003,0.343115,0.268592,0.602054,0.00280023,0.347013,0.225695,0.0364798,0.859703,0.931029,0.62397,0.284573,0.262083,0.290285,0.358974,0.547495,0.579387,0.0556863,0.387164,0.649757,0.713891,0.994117,0.0551247,0.170286,0.390354,0.863933,0.120864,0.672115,0.732718,0.741872,0.340732,0.205286,0.185196,0.862947,0.997341,0.744381,0.162856,0.793528,0.856644,0.54212,0.0490977,0.259928,0.253829,0.741463,0.232932,0.389009,0.431985,0.637144,0.931906,0.479815,0.934002,0.794184,0.232015,0.0920648,0.268692,|0.650822,0.863759,0.626095,0.632903,0.730057,0.648925,0.993543,0.604522,0.806792,0.50083,0.461795,0.0210627,0.732716,0.914402,0.268708,0.74814,0.631372,0.0378307,0.816053,0.588423,0.776123,0.871619,0.627262,0.583407,0.702287,0.353892,0.259399,0.834484,0.0143828,0.725139,0.256561,0.391085,0.495848,0.855873,0.421587,0.68319,0.166806,0.501343,0.805795,0.911111,0.166029,0.919386,0.428065,0.921963,0.0700129,0.793097,0.168463,0.240134,0.986169,0.684412,0.578617,0.703948,0.293641,0.24007,0.463523,0.189424,0.69812,0.00654107,0.494332,0.304899,0.818687,0.503565,0.0160281,0.577973,0.706327,0.894143,0.587877,0.0113844,0.213891,0.471482,0.75123,0.681132,0.393214,0.12023,0.264929,0.433453,0.530346,0.769792,0.10728,0.204492,0.558485,0.536715,0.66893,0.694635,0.88325,0.504173,0.298504,0.398804,0.00952107,0.750172,0.331023,0.75291,0.543322,0.69588,0.945613,0.200912,0.136785,0.0648084,0.348404,0.245169,0.107835,0.0287167,0.713711,0.696574,0.657631,0.40083,0.802499,0.0311425,0.309482,0.0656098,0.615646,0.536087,0.448718,0.931273,0.140645,0.411106,0.314058,0.808873,0.250261,0.248435,0.0693375,0.889277,0.272918,0.14664,0.37709,0.489191,0.26447,0.00969702,0.345352,0.430008,0.914575,0.291948,0.528475,0.384369,0.997987,0.731136,0.45241,0.328624,0.841004,0.832291,0.951837,0.277797,0.99529,0.118079,0.711851,0.840476,0.630264,0.0838488,0.295229,0.23465,0.328356,0.155604,0.929973,0.0287066,0.202235,0.957144,0.600554,0.990094,0.79685,0.490998,0.610239,0.655685,0.896968,0.727909,0.578147,0.663089,0.750037,0.583502,0.555806,0.486228,0.486328,0.667393,0.00477517,0.247099,0.0263353,0.0584465,0.0696031,0.875033,0.665053,0.783784,0.264292,0.124962,0.211749,0.597457,0.811865,0.346948,0.438674,0.893192,0.635776,0.0936233,0.0483528,0.766388,0.0705394,0.393722,0.692567,0.30151,0.774032,0.633194,0.751199,0.736562,0.168215,0.273567,0.695695,0.476004,0.673039,0.910527,0.283913,0.697094,0.342378,0.299218,0.328889,0.183053,0.0497051,0.406694,0.824243,0.287584,0.945135,0.749758,0.672853,0.440159,0.834655,0.877702,0.264375,0.22994,0.473817,0.337233,0.972102,0.017203,0.578308,0.916314,0.0712331,0.524688,0.38371,0.789037,0.444475,0.221984,0.744662,0.713044,0.918592,0.357822,0.405489,0.363562,0.975262,0.907156,0.435993,0.1821,0.790255,0.338418,0.417328,0.662085,0.982123,0.475565,0.665256,0.724208,0.913607,0.922216,0.511658,0.063511,0.63879,0.667771,0.692414,0.424748,0.532539,0.325611,0.214186,0.805143,0.721176,0.618578,0.119749,0.884483,0.0400201,0.925164,0.336433,0.0573988,0.141485,0.417877,0.550384,0.94611,0.263006,0.0995172,0.556701,0.237111,0.995537,0.404888,0.725626,0.157123,0.850508,0.47801,0.348405,0.14291,0.664972,0.600656,0.532019,0.186777,0.361544,0.787805,0.467155,0.612174,0.219804,0.0767815,0.468451,0.400265,0.809628,0.459824,0.539765,0.420532,0.641901,0.088979,0.386657,0.786318,0.621184,0.190244,0.439072,0.0687573,0.197043,0.511317,0.277839,0.999246,0.76236,0.0522493,0.0756814,0.840221,0.783386,0.131962,0.364801,0.600995,0.288362,0.825614,0.254189,0.248992,0.365854,0.302474,0.973274,0.347485,0.912601,0.486022,0.166789,0.203013,0.610846,0.421268,0.701046,0.855546,0.327787,0.876713,0.414179,0.00224757,0.86842,0.256642,0.281618,0.676252,0.942266,0.11223,0.249617,0.316269,0.708513,0.732892,0.909742,0.163159,0.127821,0.841646,0.0120327,0.164459,0.11215,0.754556,0.833524,0.65233,0.421279,0.10349,0.678881,0.0656131,0.515868,0.277985,0.16366,0.117096,0.397304,0.530466,0.865235,0.328928,0.311424,0.0271031,0.134396,0.488045,0.440771,0.732828,0.414647,0.633923,0.564452,0.630159,0.918304,0.88661,0.217869,0.898188,0.319286,0.603302,0.392815,0.515282,0.887501,0.290402,0.0941591,0.155684,0.594323,0.523962,0.958715,0.681381,0.251336,0.0723771,0.222939,0.238544,0.351574,0.809268,0.205526,0.934695,0.39684,0.325732,0.0619011,0.671913,0.482074,0.379053,0.632584,0.157377,0.809575,0.294908,0.304458,0.244225,0.404648,0.0301489,0.808336,0.793874,0.724245,0.216225,0.86126,0.423635,0.668211,0.2158,0.392253,0.276258,0.756494,0.735003,0.0156894,0.759866,0.312093,0.0484062,0.182502,0.13149,0.466027,0.581454,0.663948,0.387416,0.724535,0.628504,0.268,0.504538,0.62461,0.208076,0.346558,0.600333,0.785784,0.794257,0.726022,0.194025,0.041273,0.699692,0.0861455,0.892526,0.789741,0.920634,0.772832,0.134538,0.241693,0.310843,0.235687,0.498513,0.516356,0.248044,0.0279067,0.732777,0.0731444,0.494685,0.765738,0.413066,0.169349,0.519349,0.439367,0.944608,0.38786,0.953288,0.227344,0.78243,0.833279,0.921679,0.202393,0.153665,0.0414439,0.427331,0.215445,0.906728,0.645474,0.702143,0.330555,0.297966,0.532694,0.517492,0.279268,0.361449,0.493139,0.934943,0.584858,0.460339,0.442307,0.955644,0.893437,0.972342,0.631177,0.0141507,0.747516,0.680659,0.475669,0.939377,0.670995,0.239587,0.296468,0.0355577,0.696397,0.117643,0.747654,0.616092,0.523552,0.536349,0.447356,0.019841,0.877755,0.882707,0.165115,0.213235,0.682404,0.929512,0.263622,0.544706,0.13669,0.17035,0.618399,0.559853,0.990858,0.534762,0.644911,0.780487,0.300816,0.0487999,0.150267,0.800191,0.780328,0.362644,0.622483,0.374236,0.137936,0.535147,0.795319,0.949817,0.0855089,0.0209008,0.807584,0.650908,0.321902,0.713312,0.476911,0.213737,0.138075,0.33152,0.15503,0.144153,0.57505,0.179603,0.460398,0.478625,0.026689,0.932465,0.71062,0.715746,0.258902,0.909604,0.298004,0.4848,0.940431,0.400492,0.746731,0.653876,0.0930572,0.0592366,0.451014,0.664491,0.0286823,0.0884374,0.529537,0.807696,0.204454,0.0161957,0.152714,0.442626,0.0470963,0.986578,0.658574,0.972404,0.0903739,0.635409,0.83578,0.0478805,0.0138742,0.985072,0.651176,0.653561,0.400827,0.668184,0.901398,0.346233,0.530739,0.92042,0.509554,0.355752,0.31314,0.50851,0.318371,0.956173,0.372372,0.703373,0.17147,0.14737,0.446832,0.700375,0.571306,0.544594,0.303289,0.658847,0.586692,0.0777569,0.0197146,0.900878,0.0501297,0.267452,0.267813,0.144464,0.000333428,0.637015,0.730606,0.162721,0.640895,0.515661,0.317401,0.284958,0.776403,0.454042,0.672583,0.187307,0.598728,0.161408,0.781632,0.0969223,0.459254,0.704685,0.192401,0.10707,0.512923,0.00868756,0.506924,0.584959,0.196873,0.984897,0.63898,0.960896,0.364608,0.470417,0.484084,0.054198,0.154832,0.21976,0.607889,0.302262,0.499523,0.484757,0.668281,0.426283,0.500771,0.516373,0.153048,0.170413,0.240133,0.106405,0.0537723,0.670231,0.905182,0.208976,0.501147,0.577626,0.0502789,0.709825,0.157761,0.990589,0.532156,0.618487,0.446249,0.743208,0.0907956,0.233073,0.347592,0.00853646,0.600434,0.316352,0.103232,0.680001,0.109503,0.805723,0.0398683,0.920505,0.444676,0.392257,0.289097,0.265024,0.27738,0.13424,0.649665,0.267228,0.987457,0.926967,0.652794,0.496918,0.521146,0.623578,0.183521,0.810558,0.816109,0.1759,0.921106,0.253648,0.883129,0.202038,0.647199,0.565767,0.679767,0.212942,0.329607,0.286573,0.119979,0.550033,0.452426,0.0428703,0.625333,0.299431,0.240985,0.0351217,0.195976,0.642008,0.569384,0.869658,0.814377,0.393075,0.466493,0.115624,0.527042,0.763393,0.0249364,0.386257,0.873106,0.899911,0.0973918,0.481361,0.350426,0.627699,0.079354,0.466312,0.542644,0.582291,0.522759,0.803041,0.629821,0.23636,0.942567,0.384355,0.0812113,0.90251,0.47361,0.433855,0.549406,0.838593,0.916838,0.475675,0.278524,0.689497,0.45026,0.559755,0.509449,0.812542,0.532276,0.159315,0.911225,0.847029,0.397625,0.624494,0.957602,0.700826,0.0742219,0.722743,0.012174,0.419457,0.463631,0.277002,0.113739,0.98243,0.705422,0.458766,0.149058,0.73327,0.185222,0.948958,0.0612002,0.3188,0.504613,0.252853,0.875062,0.293722,0.745012,0.230382,0.0891589,0.65299,0.247387,0.386191,0.424455,0.492757,0.0759497,0.937631,0.273328,0.82563,0.982559,0.486067,0.742437,0.758051,0.442984,0.364982,0.618239,0.218306,0.833641,0.313537,0.743629,0.274696,0.798603,0.0724336,0.935225,0.913794,0.328312,0.261588,0.846576,0.194083,0.859446,0.291971,0.113331,0.776924,0.678516,0.744683,0.445104,0.0534312,0.146877,0.364878,0.358773,0.983211,0.443262,0.335576,0.68757,0.345346,0.940063,0.0983753,0.701305,0.901147,0.173699,0.373083,0.44617,0.822264,0.390602,0.975577,0.489366,0.286656,0.877981,0.54761,0.292997,0.230736,0.722277,0.257349,0.468164,0.71499,0.0198069,0.450878,0.0320879,0.978076,0.289677,0.689576,0.979982,0.453278,0.204662,0.576117,0.402266,0.612795,0.538479,0.836017,0.56754,0.60419,0.367565,0.605043,0.461154,0.281009,0.719894,0.873587,0.198696,0.454319,0.427942,0.251042,0.914662,0.439588,0.521212,0.749956,0.59457,0.113,0.522933,0.710871,0.448822,0.93118,0.913346,0.800529,0.493724,0.55881,0.4092,0.798088,0.933098,0.985956,0.0367233,0.993327,0.327743,0.861365,0.596167,0.318049,0.993588,0.468571,0.404063,0.633278,0.761629,0.159911,0.797859,0.753569,0.357966,0.0383777,0.332392,0.273574,0.759705,0.486398,0.76616,0.532261,0.716571,0.887176,0.666941,0.972363,0.0872983,0.514788,0.606368,0.797211,0.667961,0.0152842,0.643743,0.895864,0.368664,0.523726,0.0113851,0.554229,0.0116411,0.356227,0.0855444,0.597397,0.150021,0.0438989,0.45239,0.621014,0.00535959,0.653496,0.226155,0.575674,0.84241,0.117811,0.955095,0.777316,0.490773,0.157214,0.329772,0.512217,0.135811,0.11504,0.186103,0.196673,0.0283308,0.64254,0.747461,0.135818,0.857137,0.670217,0.721959,0.860045,|0.0563675,0.940812,0.205746,0.250606,0.268437,0.411951,0.729897,0.733163,0.48703,0.714359,0.198594,0.970174,0.847462,0.777811,0.183633,0.326179,0.106065,0.417161,0.946266,0.282799,0.921957,0.594668,0.490222,0.908951,0.769261,0.0751031,0.965285,0.110463,0.758023,0.653443,0.100698,0.0989003,0.925365,0.768224,0.767688,0.891032,0.318848,0.143288,0.4334,0.284014,0.0350921,0.0195942,0.98282,0.512298,0.271027,0.217983,0.520986,0.312165,0.786307,0.628111,0.60872,0.474599,0.472771,0.00203747,0.75063,0.322469,0.67039,0.283617,0.900873,0.104801,0.0993176,0.510235,0.159334,0.733015,0.214064,0.089609,0.837525,0.60714,0.838421,0.703197,0.689432,0.141007,0.0557055,0.951272,0.436398,0.413336,0.733881,0.462852,0.228853,0.8479,0.467492,0.0552433,0.779597,0.413143,0.89384,0.074127,0.55637,0.984822,0.840403,0.393948,0.332146,0.377947,0.74469,0.410178,0.322043,0.537157,0.806263,0.82151,0.131145,0.0539843,0.0352987,0.939054,0.383401,0.0364766,0.88942,0.162922,0.310621,0.35462,0.162438,0.82808,0.347917,0.807682,0.521307,0.308028,0.750256,0.972146,0.567913,0.943017,0.347048,0.461768,0.828866,0.63212,0.811357,0.49997,0.919739,0.804771,0.689819,0.761066,0.232102,0.221233,0.00976646,0.313393,0.800362,0.50936,0.941009,0.574324,0.678232,0.877256,0.599026,0.405612,0.672529,0.869451,0.25021,0.511769,0.380279,0.889266,0.720883,0.983233,0.415582,0.72894,0.244627,0.145977,0.684734,0.358233,0.669059,0.0281978,0.0653625,0.240684,0.748282,0.175226,0.250754,0.128169,0.238883,0.440505,0.760091,0.0540606,0.0248782,0.414756,0.984227,0.874147,0.0958217,0.667714,0.467887,0.175089,0.145989,0.279208,0.961894,0.970839,0.184665,0.596182,0.986113,0.0887904,0.667361,0.179366,0.88761,0.402354,0.208421,0.0291858,0.0415705,0.422949,0.355426,0.672123,0.249575,0.209364,0.428068,0.40023,0.613347,0.10816,0.761098,0.56976,0.965536,0.769941,0.196644,0.55748,0.599048,0.61358,0.205277,0.364344,0.572083,0.773425,0.787037,0.0815689,0.126752,0.0422396,0.413431,0.48554,0.433268,0.63321,0.240314,0.371386,0.778215,0.473353,0.769322,0.322221,0.650223,0.950178,0.544711,0.0933973,0.354424,0.155742,0.149949,0.0539989,0.854194,0.826906,0.910422,0.427404,0.0936013,0.168143,0.767937,0.562678,0.507684,0.794392,0.460176,0.657068,0.122318,0.663029,0.597302,0.245321,0.936118,0.233391,0.647262,0.199797,0.619093,0.914161,0.714094,0.791502,0.232285,0.608787,0.473177,0.0342124,0.7991,0.81463,0.316086,0.0266207,0.763842,0.211491,0.0391244,0.657886,0.227876,0.939419,0.417777,0.0688655,0.721052,0.861247,0.995384,0.219451,0.853367,0.585499,0.152027,0.264067,0.240768,0.295944,0.429216,0.112152,0.894724,0.230789,0.0953462,0.867085,0.910835,0.401231,0.776272,0.113454,0.785638,0.497237,0.0568938,0.286532,0.0638319,0.154993,0.982022,0.625844,0.352756,0.549709,0.0521135,0.0476846,0.0401937,0.361807,0.480761,0.559156,0.878763,0.0317115,0.175401,0.730972,0.32863,0.986015,0.0508918,0.565303,0.364308,0.0202491,0.901258,0.853475,0.231728,0.986529,0.342227,0.769249,0.648739,0.109134,0.859434,0.574339,0.320999,0.653074,0.853049,0.860363,0.104245,0.467453,0.995733,0.934281,0.644497,0.594684,0.251526,0.649524,0.615155,0.146118,0.425855,0.0935255,0.0620362,0.908819,0.741272,0.408415,0.071004,0.350811,0.640084,0.994137,0.23886,0.441402,0.166606,0.645931,0.568452,0.531616,0.344516,0.769424,0.0355571,0.665183,0.364745,0.0535609,0.147307,0.622538,0.167578,0.0886328,0.703539,0.667103,0.75074,0.759355,0.840801,0.364058,0.873017,0.274042,0.671483,0.0325328,0.153168,0.678665,0.424509,0.393453,0.605597,0.101306,0.893016,0.668565,0.438728,0.241683,0.121105,0.979301,0.997842,0.295469,0.102241,0.633127,0.496286,0.0220821,0.625455,0.962314,0.863867,0.44658,0.233684,0.535509,0.192488,0.648185,0.390885,0.0673766,0.218024,0.322669,0.353341,0.82862,0.363759,0.878546,0.188289,0.856391,0.578991,0.606873,0.52861,0.3277,0.0213244,0.465863,0.554573,0.538056,0.889819,0.673593,0.660691,0.635662,0.204598,0.651711,0.0036909,0.888198,0.77867,0.376653,0.77945,0.946725,0.830853,0.761661,0.928172,0.294897,0.338052,0.039062,0.767737,0.623996,0.0243254,0.324628,0.894899,0.771071,0.212475,0.738752,0.731075,0.581677,0.13415,0.926929,0.4095,0.0141339,0.526185,0.135172,0.65127,0.207049,0.547976,0.982626,0.369729,0.421829,0.814483,0.873896,0.473478,0.0898706,0.875098,0.789276,0.482404,0.365789,0.577968,0.600528,0.487788,0.688652,0.735064,0.976998,0.813154,0.473839,0.314775,0.609923,0.685482,0.24549,0.53312,0.0849586,0.659053,0.80081,0.82226,0.911988,0.892256,0.903662,0.371906,0.432268,0.888855,0.240389,0.734063,0.293083,0.675097,0.61672,0.566551,0.0858818,0.619708,0.973134,0.666867,0.586003,0.998655,0.723779,0.40886,0.765968,0.22917,0.29629,0.760477,0.856198,0.869568,0.183871,0.211023,0.745183,0.973304,0.77894,0.686417,0.822637,0.47963,0.790366,0.678022,0.245336,0.946053,0.868148,0.427598,0.774851,0.668376,0.466729,0.887707,0.0182911,0.0247753,0.138951,0.391343,0.352223,0.484363,0.843038,0.537768,0.753992,0.247445,0.929021,0.511077,0.357213,0.224021,0.687863,0.004893,0.216188,0.252168,0.656486,0.0874097,0.561117,0.926762,0.799068,0.473078,0.399471,0.12113,0.831902,0.577046,0.328285,0.605928,0.898746,0.64838,0.0305498,0.893965,0.653211,0.969367,0.715236,0.488779,0.122844,0.238811,0.169169,0.59476,0.958765,0.484057,0.56199,0.121455,0.580032,0.76469,0.787868,0.804873,0.272338,0.324205,0.45895,0.44391,0.658102,0.0688354,0.392164,0.510348,0.360664,0.503876,0.621567,0.76599,0.0183132,0.772759,0.795068,0.849448,0.68005,0.214364,0.453306,0.610471,0.680139,0.966582,0.744134,0.682125,0.117003,0.703633,0.910785,0.775571,0.259341,0.665182,0.270862,0.922409,0.50988,0.610772,0.831198,0.705583,0.820273,0.00531501,0.658763,0.911514,0.413071,0.377181,0.508696,0.193731,0.8126,0.339667,0.852301,0.930053,0.169671,0.706921,0.90221,0.689027,0.446014,0.705418,0.377764,0.679853,0.572487,0.975467,0.769392,0.626528,0.809507,0.207189,0.03979,0.869517,0.194279,0.713096,0.538333,0.267909,0.679005,0.530297,0.323996,0.248758,0.920502,0.671507,0.160304,0.594665,0.0108961,0.983217,0.759315,0.562006,0.61257,0.630664,0.431981,0.0499998,0.457143,0.808381,0.109039,0.531936,0.945791,0.229181,0.144338,0.46782,0.360166,0.885318,0.834499,0.316204,0.0271814,0.948481,0.776507,0.546974,0.228684,0.968842,0.0272872,0.841022,0.17274,0.622654,0.0494316,0.783921,0.448041,0.919751,0.638596,0.450082,0.348778,0.381996,0.869413,0.210496,0.64947,0.944291,0.247562,0.77969,0.960478,0.211654,0.632646,0.373095,0.817983,0.569604,0.943921,0.70582,0.80712,0.73641,0.368236,0.749492,0.313694,0.301845,0.678044,0.0139225,0.482466,0.231847,0.542966,0.0373061,0.414255,0.774584,0.101709,0.230109,0.65381,0.1125,0.627697,0.279107,0.988114,0.810187,0.185503,0.641129,0.327315,0.555861,0.97613,0.0913341,0.631129,0.540249,0.209366,0.796016,0.92223,0.839423,0.980915,0.364239,0.348317,0.282857,0.587578,0.268998,0.120981,0.873595,0.368905,0.851836,0.993118,0.774433,0.950684,0.280587,0.633223,0.184366,0.844159,0.381474,0.399892,0.484011,0.657344,0.231542,0.335491,0.0508046,0.855604,0.419724,0.388102,0.71113,0.452214,0.682853,0.606005,0.679947,0.0605052,0.836362,0.616885,0.500465,0.0996103,0.473552,0.63046,0.50715,0.974234,0.644788,0.659231,0.99262,0.240662,0.215253,0.0555292,0.745761,0.473183,0.735819,0.166447,0.863822,0.3357,0.0323495,0.126468,0.457772,0.373674,0.87814,0.80356,0.467939,0.509394,0.0796705,0.692733,0.979073,0.522778,0.398019,0.441375,0.980199,0.133817,0.895005,0.80652,0.962699,0.357336,0.660364,0.154453,0.674028,0.718214,0.987848,0.309264,0.794237,0.653158,0.324575,0.0394468,0.989809,0.0821263,0.0697787,0.75459,0.113716,0.883389,0.115779,0.823652,0.853607,0.268634,0.271427,0.62981,0.75923,0.378933,0.940281,0.510961,0.45757,0.205602,0.189399,0.0618565,0.428306,0.321204,0.71319,0.391618,0.0613111,0.898443,0.197979,0.202873,0.981642,0.862862,0.168976,0.400911,0.100431,0.981966,0.592579,0.515339,0.336023,0.937822,0.844105,0.184005,0.52072,0.675832,0.799627,0.51204,0.953093,0.853445,0.817165,0.66662,0.172778,0.216076,0.479356,0.334191,0.957743,0.906145,0.852498,0.736152,0.10186,0.868643,0.243536,0.425618,0.15265,0.160147,0.0125614,0.617377,0.829867,0.894232,0.456301,0.933134,0.443811,0.259896,0.375211,0.204712,0.618294,0.794253,0.769706,0.288345,0.533788,0.216119,0.76497,0.993649,0.999431,0.649403,0.357732,0.85481,0.72308,0.877436,0.294612,0.385548,0.0174614,0.318421,0.532278,0.524289,0.221433,0.216706,0.543769,0.0473537,0.972945,0.680617,0.448657,0.862162,0.880308,0.372816,0.626993,0.59295,0.92105,0.832516,0.763884,0.119203,0.337789,0.969802,0.356748,0.859744,0.770661,0.674769,0.715326,0.140451,0.993131,0.0760704,0.144785,0.829354,0.413486,0.881421,0.483148,0.112119,0.037595,0.893477,0.201954,0.869383,0.624772,0.954455,0.584403,0.946147,0.743397,0.97646,0.591055,0.784975,0.170681,0.0325671,0.214482,0.0180773,0.734571,0.0471195,0.461263,0.203778,0.325742,0.921959,0.904327,0.0602067,0.361089,0.543452,0.338992,0.225799,0.492433,0.734546,0.151172,0.483065,0.752978,0.81607,0.162509,0.715234,0.975315,0.0894699,0.49674,0.774532,0.704968,0.201401,0.818994,0.282982,0.15069,0.167532,0.119462,0.334014,0.326699,0.767033,|0.114195,0.0117755,0.63392,0.0435877,0.549542,0.735317,0.791125,0.0294671,0.0288274,0.791995,0.504082,0.87813,0.806247,0.119554,0.179807,0.829173,0.658216,0.0784299,0.809353,0.786211,0.341005,0.848566,0.723971,0.541531,0.890225,0.657034,0.642556,0.48444,0.541058,0.924199,0.72302,0.288613,0.298158,0.138313,0.101951,0.082884,0.861595,0.431534,0.659682,0.523635,0.565989,0.887148,0.646472,0.721563,0.536803,0.639078,0.529478,0.20418,0.925927,0.175979,0.477174,0.531682,0.319095,0.699271,0.312496,0.296245,0.276942,0.175568,0.168819,0.955855,0.122498,0.796107,0.485481,0.252503,0.291532,0.141798,0.0992524,0.409755,0.647419,0.624784,0.41865,0.829447,0.797187,0.453004,0.0361242,0.689161,0.450919,0.813859,0.334074,0.0913931,0.114077,0.361742,0.380947,0.539246,0.661803,0.758315,0.225266,0.528242,0.0639686,0.383512,0.738875,0.452543,0.712186,0.20978,0.715584,0.110169,0.848183,0.495697,0.414395,0.652841,0.129903,0.736131,0.781974,0.0488921,0.668306,0.560503,0.769673,0.0798661,0.686976,0.429775,0.339523,0.14149,0.279639,0.720981,0.324624,0.0385731,0.802902,0.187059,0.497507,0.625079,0.329795,0.338709,0.420279,0.482526,0.149754,0.589699,0.232172,0.155774,0.0790477,0.527755,0.372821,0.429938,0.766872,0.863325,0.467366,0.365143,0.748291,0.0943877,0.516033,0.267411,0.892711,0.0842395,0.262987,0.935326,0.935068,0.301225,0.448663,0.711069,0.0811377,0.232932,0.560702,0.440911,0.973867,0.542174,0.226983,0.189183,0.521591,0.858662,0.585034,0.199829,0.491415,0.496961,0.552041,0.0436931,0.962341,0.950637,0.924052,0.444593,0.148443,0.382867,0.608089,0.532507,0.456068,0.902281,0.129229,0.559423,0.300006,0.714946,0.0411345,0.677009,0.888474,0.645196,0.452577,0.106365,0.446439,0.317734,0.0174097,0.0644068,0.347541,0.747525,0.210273,0.172426,0.263015,0.246869,0.406744,0.82827,0.970493,0.136708,0.922359,0.551919,0.250229,0.205175,0.861277,0.99118,0.358785,0.313236,0.602786,0.626319,0.855697,0.260836,0.847756,0.590754,0.0678277,0.525347,0.708142,0.0850332,0.650863,0.769173,0.263057,0.278897,0.239189,0.301578,0.483226,0.215162,0.313112,0.0737686,0.279904,0.664236,0.977389,0.0730902,0.0357718,0.578973,0.709885,0.263894,0.323839,0.759303,0.196411,0.65489,0.974709,0.600919,0.543071,0.790447,0.665542,0.12646,0.511227,0.421381,0.890582,0.952108,0.715015,0.145481,0.869149,0.490195,0.58527,0.828249,0.966816,0.119433,0.206203,0.261414,0.47891,0.28465,0.868026,0.220396,0.252617,0.39117,0.792396,0.991788,0.2608,0.552361,0.180152,0.390793,0.103586,0.410742,0.502775,0.0642834,0.899804,0.40263,0.993289,0.544353,0.0419027,0.994193,0.0878082,0.417542,0.421514,0.495946,0.67348,0.825604,0.884099,0.897792,0.369615,0.60484,0.179602,0.431365,0.387814,0.0814174,0.34824,0.794582,0.511014,0.662169,0.680243,0.264026,0.362673,0.13839,0.448081,0.705556,0.168347,0.796506,0.608887,0.653783,0.842407,0.127121,0.797445,0.944729,0.501442,0.29422,0.095439,0.405329,0.910628,0.130727,0.135294,0.974835,0.782273,0.950412,0.760884,0.0980382,0.13155,0.357976,0.213267,0.397304,0.639182,0.78834,0.369135,0.811948,0.189009,0.590936,0.375182,0.0672753,0.600223,0.265083,0.814071,0.136999,0.216123,0.652897,0.804526,0.176564,0.234979,0.251989,0.574336,0.114474,0.189236,0.603581,0.0554878,0.59398,0.604517,0.89416,0.236304,0.747316,0.494663,0.488049,0.351568,0.982494,0.834218,0.650298,0.489583,0.750645,0.164188,0.013467,0.092446,0.111777,0.356414,0.738863,0.351515,0.0311248,0.344966,0.523367,0.823076,0.173378,0.11376,0.412481,0.780331,0.792861,0.390476,0.870739,0.440446,0.544051,0.801585,0.0429209,0.900895,0.190794,0.779402,0.431597,0.178605,0.0620903,0.223223,0.110891,0.844552,0.176642,0.476655,0.683038,0.601992,0.851293,0.567804,0.954325,0.859511,0.488949,0.776898,0.438497,0.990413,0.649973,0.978327,0.33081,0.504242,0.663072,0.678682,0.228688,0.759627,0.881955,0.0314069,0.0295735,0.284378,0.919607,0.328449,0.855907,0.100679,0.916278,0.776682,0.847283,0.510755,0.10326,0.731655,0.211202,0.453503,0.430103,0.850317,0.677052,0.257982,0.469345,0.840679,0.298348,0.59256,0.48394,0.936617,0.29255,0.805456,0.529357,0.00791776,0.219636,0.1976,0.658128,0.201279,0.281641,0.079379,0.980468,0.780173,0.0936035,0.800825,0.412553,0.9319,0.948113,0.29613,0.913291,0.175578,0.56339,0.197889,0.30035,0.584381,0.453833,0.502647,0.639334,0.679938,0.210994,0.792823,0.0531157,0.274916,0.613597,0.865397,0.568854,0.52898,0.28766,0.0671595,0.182955,0.80291,0.0151684,0.915321,0.0878453,0.172622,0.736869,0.889206,0.36878,0.606811,0.577298,0.439084,0.012655,0.637024,0.238634,0.527678,0.471512,0.340766,0.329626,0.918196,0.665497,0.78324,0.384584,0.247992,0.774546,0.753611,0.781888,0.870485,0.272889,0.286204,0.234403,0.781964,0.766737,0.829978,0.723877,0.800817,0.592509,0.436951,0.748813,0.723817,0.552637,0.814376,0.763917,0.813437,0.86219,0.987429,0.747419,0.309516,0.106364,0.152684,0.162781,0.102216,0.820217,0.137482,0.472043,0.478267,0.988439,0.347378,0.221057,0.0204881,0.57762,0.265216,0.107044,0.678744,0.693289,0.692877,0.456433,0.79549,0.091073,0.825871,0.503909,0.360036,0.611611,0.681068,0.840602,0.340572,0.820132,0.354123,0.769634,0.840665,0.938039,0.508942,0.919485,0.207294,0.77515,0.588559,0.488568,0.260526,0.076476,0.685851,0.424308,0.745509,0.873987,0.126334,0.442812,0.330212,0.298655,0.00827253,0.140251,0.689835,0.921966,0.527114,0.640333,0.0965714,0.286462,0.685965,0.369148,0.277249,0.61465,0.183522,0.172048,0.00776923,0.618758,0.0447763,0.271876,0.914055,0.321644,0.818263,0.0224474,0.797081,0.63962,0.394587,0.0449153,0.889135,0.958356,0.538186,0.0197271,0.993599,0.775243,0.582239,0.16754,0.992815,0.839963,0.266501,0.621411,0.0740449,0.608935,0.431207,0.258097,0.545934,0.0372295,0.0768439,0.315098,0.442186,0.0729154,0.2171,0.417362,0.429931,0.113329,0.543268,0.665258,0.428165,0.7275,0.164224,0.98272,0.282444,0.373094,0.680091,0.545517,0.801453,0.530855,0.430374,0.984398,0.875114,0.587965,0.338544,0.540933,0.767406,0.712471,0.587335,0.810777,0.334876,0.351494,0.0552452,0.41593,0.980634,0.541195,0.937199,0.493479,0.573246,0.221322,0.512398,0.129497,0.909339,0.0434245,0.191243,0.146667,0.525042,0.00015372,0.917056,0.426678,0.065221,0.683603,0.935474,0.380621,0.505252,0.249809,0.00301576,0.523105,0.929707,0.20528,0.0670364,0.657897,0.889017,0.546213,0.332987,0.642629,0.673698,0.388715,0.6834,0.753683,0.689837,0.729242,0.127254,0.566411,0.750118,0.546619,0.240217,0.464905,0.622999,0.948928,0.961221,0.91773,0.665956,0.354552,0.0687817,0.823871,0.728752,0.0718662,0.679481,0.620828,0.702138,0.0631605,0.242539,0.371749,0.288973,0.780011,0.371448,0.447631,0.588818,0.945204,0.597302,0.78585,0.919121,0.507323,0.948339,0.886783,0.560785,0.3404,0.598058,0.813998,0.810278,0.524017,0.557014,0.224925,0.0219844,0.728773,0.628956,0.643739,0.393141,0.891719,0.472457,0.063077,0.805344,0.841938,0.547794,0.935364,0.0295436,0.855858,0.432563,0.578662,0.573224,0.370142,0.453856,0.375713,0.821441,0.976071,0.395446,0.567002,0.500952,0.25696,0.692369,0.492872,0.230929,0.313702,0.556904,0.300023,0.755322,0.799255,0.652322,0.626921,0.415968,0.923335,0.286857,0.11803,0.0672156,0.33747,0.761243,0.780803,0.73695,0.289111,0.166463,0.827593,0.184129,0.87243,0.109583,0.437558,0.19397,0.95519,0.779443,0.779858,0.154844,0.492104,0.353793,0.874103,0.508255,0.983334,0.418044,0.993308,0.0572723,0.997934,0.548654,0.49428,0.763789,0.958274,0.536353,0.133093,0.162323,0.156111,0.581121,0.0748204,0.00654662,0.0296212,0.305165,0.151376,0.730081,0.864509,0.144539,0.0079248,0.845419,0.675406,0.736045,0.77433,0.0220677,0.0703595,0.0663757,0.680745,0.0254506,0.774995,0.968254,0.346878,0.133184,0.829185,0.269388,0.769051,0.71509,0.0663293,0.650584,0.308556,0.234515,0.151515,0.588957,0.605424,0.894409,0.18983,0.061784,0.813729,0.020348,0.240823,0.200916,0.483828,0.0217516,0.721968,0.8652,0.0251048,0.500065,0.815172,0.825886,0.620463,0.227013,0.968119,0.929076,0.905311,0.807262,0.379017,0.00959611,0.968117,0.942664,0.580179,0.406889,0.919749,0.978908,0.616871,0.155841,0.478093,0.100627,0.574288,0.134868,0.166305,0.988082,0.330052,0.703625,0.0191794,0.495382,0.486775,0.572066,0.885673,0.924444,0.0773147,0.675611,0.720396,0.0689505,0.260345,0.043944,0.852387,0.43142,0.36072,0.320486,0.969064,0.0787944,0.166967,0.260213,0.689581,0.430736,0.748545,0.0729392,0.678382,0.519161,0.694955,0.907166,0.594835,0.252785,0.686055,0.257189,0.625661,0.842851,0.308807,0.901862,0.106845,0.609326,0.721914,0.934679,0.735135,0.264132,0.313795,0.273853,0.454725,0.401618,0.841089,0.27304,0.237561,0.627054,0.715296,0.12861,0.10288,0.951711,0.874806,0.126957,0.581294,0.895628,0.977226,0.855199,0.680144,0.700991,0.040108,0.980789,0.183686,0.203178,0.29538,0.178539,0.414467,0.410892,0.046478,0.105062,0.935718,0.108253,0.728475,0.370441,0.0246748,0.85441,0.920661,0.590379,0.521839,0.0790003,0.654298,0.845468,0.65506,0.0162372,0.501781,0.523395,0.20606,0.82333,0.326583,0.683066,0.325559,0.397709,0.61864,0.96103,0.0832225,0.59704,0.0289093,0.996317,0.740288,0.127271,0.0968712,0.0655862,0.135778,0.256174,0.297186,0.882502,0.262037,0.446234,0.680789,0.828778,0.484952,0.980026,0.389174,0.967194,0.980377,0.948752,0.424793,|0.55707,0.493726,0.0643526,0.467594,0.394252,0.954047,0.783082,0.953652,0.407239,0.0396734,0.0775726,0.993896,0.791002,0.0497479,0.881839,0.425128,0.350628,0.200848,0.57471,0.955581,0.5633,0.987872,0.408994,0.477534,0.427076,0.102567,0.0480725,0.575567,0.997204,0.922272,0.0343569,0.541145,0.530577,0.776724,0.954959,0.390098,0.539355,0.688921,0.370138,0.0425573,0.377429,0.463038,0.510325,0.24144,0.204163,0.65766,0.649697,0.368782,0.961799,0.949257,0.0603616,0.644177,0.587329,0.750157,0.791186,0.548011,0.0313491,0.983702,0.628831,0.942231,0.993842,0.61436,0.188893,0.181494,0.959602,0.850094,0.381966,0.808344,0.880086,0.155233,0.322183,0.823019,0.342185,0.945853,0.46933,0.0883134,0.788398,0.365759,0.261093,0.124608,0.230448,0.368661,0.582625,0.682429,0.186481,0.991365,0.755374,0.615093,0.193302,0.41013,0.0842091,0.835098,0.756568,0.850786,0.582575,0.313708,0.966029,0.0450019,0.876788,0.0491071,0.760005,0.617037,0.0697488,0.470191,0.57788,0.419985,0.637348,0.562413,0.832958,0.870479,0.682531,0.113043,0.438939,0.0808492,0.345973,0.396543,0.827545,0.935686,0.210449,0.407754,0.426207,0.442454,0.399118,0.010147,0.603112,0.349581,0.968564,0.152755,0.277569,0.354737,0.6042,0.847572,0.721123,0.15037,0.499949,0.45406,0.126635,0.352987,0.807087,0.0322369,0.991323,0.0844832,0.439613,0.584273,0.239511,0.0496178,0.627458,0.189261,0.01788,0.157028,0.747548,0.39135,0.130474,0.56784,0.659198,0.982611,0.713585,0.839435,0.390978,0.383109,0.391924,0.701613,0.501693,0.817018,0.37173,0.446812,0.153537,0.136755,0.0148695,0.121663,0.921179,0.768987,0.895358,0.941477,0.874901,0.06641,0.485985,0.272102,0.793888,0.306606,0.128593,0.92803,0.885571,0.169541,0.48107,0.638782,0.622142,0.89481,0.771702,0.500167,0.415841,0.972118,0.384218,0.508441,0.297859,0.307003,0.0459259,0.827867,0.752745,0.986637,0.472323,0.840935,0.563093,0.988413,0.126382,0.567146,0.585386,0.506659,0.904463,0.189501,0.620295,0.164921,0.573011,0.19095,0.420466,0.44226,0.267388,0.938162,0.133511,0.00336719,0.0730584,0.732498,0.207848,0.40982,0.150761,0.96855,0.362721,0.691758,0.417096,0.462943,0.66756,0.761899,0.957756,0.23213,0.92998,0.362814,0.320897,0.604149,0.460597,0.40438,0.437117,0.911368,0.740762,0.34858,0.717394,0.482274,0.808567,0.95573,0.498301,0.947158,0.199522,0.258891,0.684984,0.2011,0.970467,0.827938,0.198283,0.327357,0.818397,0.513153,0.836105,0.470526,0.113482,0.542505,0.0328273,0.910436,0.370553,0.545596,0.500841,0.986719,0.424588,0.477488,0.0836008,0.621974,0.620832,0.130207,0.543182,0.88436,0.974503,0.541787,0.829663,0.415683,0.865367,0.654168,0.997408,0.991234,0.157065,0.783741,0.177393,0.168231,0.141565,0.595007,0.950604,0.640651,0.214904,0.897901,0.94799,0.55838,0.058622,0.428123,0.870284,0.515074,0.749376,0.851894,0.0494612,0.573583,0.0648598,0.0483299,0.778484,0.621868,0.29946,0.863879,0.697308,0.742438,0.274276,0.824047,0.116291,0.467548,0.283277,0.394188,0.53915,0.509643,0.0383942,0.0971841,0.163733,0.860425,0.917799,0.0813206,0.562163,0.161931,0.904402,0.887893,0.512714,0.0929679,0.711521,0.513801,0.951689,0.631511,0.677278,0.833261,0.292383,0.2871,0.144887,0.734829,0.942624,0.294708,0.00570595,0.385772,0.58906,0.17157,0.683535,0.1019,0.265763,0.311816,0.11682,0.965316,0.178437,0.361582,0.271526,0.708312,0.628545,0.492752,0.266569,0.140305,0.470678,0.966776,0.964961,0.378053,0.726337,0.910603,0.980773,0.51388,0.866556,0.599184,0.425824,0.384324,0.254803,0.520921,0.298728,0.0463744,0.0817163,0.641924,0.360884,0.369654,0.111315,0.631062,0.0197939,0.885631,0.239043,0.291456,0.969959,0.0748771,0.818944,0.374231,0.898794,0.75638,0.818043,0.114968,0.666173,0.214879,0.427528,0.126437,0.0723231,0.806523,0.938698,0.922208,0.521107,0.842308,0.54551,0.806073,0.074132,0.36371,0.625162,0.104159,0.338017,0.680825,0.665227,0.172241,0.962574,0.000296772,0.819192,0.724476,0.345061,0.221597,0.921225,0.239369,0.0354418,0.691776,0.433272,0.722093,0.00317824,0.179144,0.150471,0.973656,0.370127,0.475043,0.927201,0.387826,0.338681,0.492617,0.993407,0.00441629,0.0552924,0.161687,0.0631275,0.444621,0.347932,0.149854,0.498079,0.113442,0.535749,0.112917,0.245981,0.496271,0.782899,0.191195,0.820503,0.231887,0.500236,0.593395,0.865761,0.335305,0.387962,0.942938,0.341541,0.886058,0.338303,0.145398,0.193615,0.00479144,0.294211,0.218005,0.684475,0.996206,0.361893,0.3264,0.13629,0.223627,0.314058,0.885488,0.0974219,0.0726675,0.0127363,0.597432,0.366366,0.597477,0.431965,0.833545,0.810971,0.71737,0.139572,0.883127,0.686063,0.118418,0.967195,0.206709,0.169762,0.0379124,0.573601,0.751676,0.00335211,0.053495,0.949754,0.177832,0.157028,0.736474,0.95681,0.225185,0.439709,0.957567,0.542907,0.396653,0.24915,0.152274,0.112005,0.504291,0.435631,0.662148,0.507118,0.344931,0.0222991,0.536258,0.512054,0.847747,0.233445,0.386713,0.735174,0.567529,0.41912,0.491376,0.0688896,0.57942,0.821198,0.78013,0.956388,0.0402418,0.395348,0.549491,0.0409472,0.638749,0.566288,0.818924,0.571039,0.878473,0.325577,0.870928,0.215341,0.130429,0.0987052,0.370745,0.936949,0.640929,0.810952,0.750992,0.0847439,0.428475,0.668824,0.982944,0.0692817,0.77304,0.668288,0.215786,0.958558,0.907674,0.725612,0.722561,0.157838,0.227619,0.976233,0.415798,0.450538,0.194899,0.931265,0.676909,0.154505,0.0858039,0.59284,0.98893,0.603785,0.942169,0.423039,0.630436,0.45116,0.266146,0.783596,0.181054,0.745827,0.326346,0.947558,0.530941,0.494804,0.401271,0.777378,0.830938,0.587106,0.227571,0.63409,0.311799,0.930468,0.193804,0.48668,0.549545,0.287473,0.482888,0.10841,0.914216,0.613257,0.474386,0.699518,0.428681,0.126712,0.18713,0.823296,0.970491,0.251065,0.825819,0.525809,0.866631,0.823378,0.0878561,0.68903,0.688506,0.0429876,0.0158919,0.910583,0.401472,0.622174,0.721454,0.60701,0.633959,0.741243,0.677949,0.676804,0.134398,0.531842,0.101609,0.393494,0.146384,0.2225,0.894404,0.0148207,0.610064,0.0267651,0.879758,0.951409,0.0676982,0.302876,0.907877,0.754435,0.156776,0.857307,0.420077,0.583264,0.625755,0.725212,0.0705111,0.10529,0.954522,0.522699,0.410275,0.643168,0.841556,0.54774,0.780709,0.287108,0.261186,0.925402,0.0087527,0.707588,0.953616,0.705063,0.565644,0.898217,0.551893,0.814647,0.250836,0.0207615,0.727111,0.601433,0.121503,0.132981,0.632843,0.418561,0.922179,0.243687,0.635021,0.604258,0.0688342,0.17,0.908307,0.536291,0.402854,0.342287,0.925883,0.739604,0.743256,0.794587,0.786909,0.481932,0.715248,0.0792816,0.831522,0.180205,0.817392,0.755995,0.0370243,0.580023,0.613674,0.710687,0.317792,0.813106,0.108107,0.701723,0.70058,0.165826,0.88391,0.849634,0.204761,0.135352,0.965776,0.10994,0.723688,0.661428,0.612767,0.27844,0.744766,0.277131,0.614886,0.662318,0.312334,0.511472,0.592945,0.210085,0.153877,0.422929,0.548937,0.0405545,0.128649,0.562155,0.0534227,0.957246,0.443635,0.462013,0.640628,0.641241,0.903634,0.564365,0.37654,0.99104,0.767629,0.573982,0.276015,0.473722,0.860026,0.0560917,0.514275,0.615196,0.680628,0.418755,0.677118,0.379477,0.298353,0.0202807,0.682974,0.243492,0.0691419,0.361845,0.437162,0.0138856,0.365578,0.148684,0.179393,0.912494,0.766605,0.580372,0.393484,0.708491,0.311156,0.734842,0.624425,0.796286,0.135213,0.0568514,0.111301,0.66637,0.37704,0.45501,0.997071,0.365717,0.325981,0.277141,0.788997,0.743196,0.476714,0.79578,0.149158,0.613388,0.199467,0.112528,0.483249,0.355555,0.350958,0.0879125,0.983585,0.226552,0.758099,0.540956,0.841699,0.518701,0.0755381,0.21461,0.518296,0.819919,0.532111,0.280884,0.539632,0.864922,0.140941,0.0044446,0.933958,0.318842,0.162023,0.293871,0.975363,0.972828,0.0858836,0.915264,0.927711,0.588539,0.800367,0.318341,0.884901,0.483031,0.804276,0.892328,0.699517,0.0380364,0.421746,0.858486,0.389088,0.797097,0.90739,0.169578,0.903373,0.376237,0.652677,0.142246,0.372029,0.322056,0.782536,0.317616,0.680109,0.0376105,0.280638,0.733849,0.476897,0.154479,0.384978,0.624883,0.723809,0.405892,0.776618,0.49367,0.311887,0.504434,0.845417,0.615467,0.375624,0.904122,0.306883,0.735095,0.327093,0.9491,0.245357,0.871786,0.434325,0.561519,0.748486,0.110311,0.327962,0.33051,0.215284,0.845905,0.529793,0.213207,0.39604,0.617772,0.0169818,0.275863,0.452697,0.248525,0.890257,0.816625,0.707945,0.848657,0.996611,0.2975,0.645509,0.997492,0.508073,0.566101,0.297661,0.0278345,0.196361,0.950321,0.0280064,0.0286579,0.623611,0.000721753,0.854763,0.876996,0.221786,0.0251285,0.0508399,0.174066,0.629964,0.497751,0.601114,0.0123174,0.564951,0.96615,0.722922,0.584962,0.367343,0.25264,0.576943,0.27269,0.181967,0.534335,0.756471,0.32959,0.0172642,0.659764,0.482746,0.0470344,0.074121,0.809996,0.24113,0.103833,0.946136,0.259813,0.339972,0.972095,0.798931,0.549193,0.0463699,0.948785,0.702802,0.706113,0.385513,0.0518752,0.41128,0.832598,0.0114043,0.880268,0.632679,0.388919,0.373097,0.396006,0.732121,0.946097,0.960374,0.805971,0.121267,0.677165,0.785353,0.146405,0.288101,0.894158,0.605816,0.20642,0.839708,0.395701,0.727911,0.506553,0.0360093,0.266683,0.633694,0.981303,0.0150025,0.432299,0.277404,0.967317,0.0613275,0.357904,0.0441951,0.786139,0.719692,0.982423,0.0864943,0.117815,0.722054,0.528275,0.128211,0.719135,0.193198,0.0765793,0.122963,0.997718,0.986093,|0.431299,0.00697678,0.875673,0.136361,0.124783,0.295525,0.033873,0.440022,0.278126,0.237907,0.824112,0.583306,0.954003,0.0801197,0.48608,0.902153,0.236542,0.866736,0.44322,0.667302,0.926629,0.923838,0.432585,0.607754,0.836726,0.673002,0.860245,0.400191,0.889112,0.196184,0.26817,0.314942,0.0504654,0.229864,0.293752,0.395922,0.594003,0.754443,0.351524,0.942716,0.165915,0.00317502,0.341029,0.26222,0.579399,0.524755,0.90292,0.796718,0.0884473,0.0960589,0.0200418,0.34148,0.299502,0.778619,0.407754,0.582399,0.320543,0.755539,0.680992,0.625814,0.195556,0.982658,0.330041,0.0591102,0.750206,0.895204,0.943022,0.4515,0.434102,0.513954,0.669085,0.627833,0.35983,0.0318344,0.06328,0.190961,0.763128,0.660921,0.248175,0.139438,0.478794,0.303917,0.225784,0.455073,0.456445,0.553759,0.168058,0.438094,0.061086,0.738074,0.885834,0.761428,0.230651,0.601639,0.0647361,0.809889,0.56759,0.283482,0.0865172,0.867213,0.247288,0.12058,0.971238,0.525101,0.842507,0.907224,0.247661,0.290263,0.0683548,0.684033,0.0461369,0.408509,0.0789925,0.789193,0.480868,0.511,0.0612891,0.923877,0.378292,0.0828985,0.888731,0.996161,0.399324,0.750917,0.330816,0.158546,0.314646,0.757805,0.991449,0.907342,0.72932,0.470619,0.0877742,0.509734,0.918209,0.129653,0.593449,0.0283172,0.467652,0.801135,0.459296,0.606902,0.0573599,0.002231,0.816873,0.43704,0.875505,0.378713,0.605594,0.497692,0.944645,0.28294,0.238616,0.977891,0.62618,0.941088,0.427581,0.410842,0.0759162,0.522099,0.53967,0.528541,0.117206,0.381088,0.983047,0.599667,0.0691213,0.459461,0.18718,0.928919,0.321892,0.784488,0.866726,0.61848,0.166796,0.137362,0.654719,0.885699,0.46374,0.849019,0.993507,0.584513,0.0633098,0.0551923,0.172064,0.519801,0.21992,0.763529,0.0616171,0.459104,0.935079,0.461416,0.085635,0.795896,0.93672,0.485997,0.828303,0.882775,0.791008,0.408153,0.198822,0.920889,0.70788,0.679826,0.214348,0.357238,0.742271,0.282882,0.884856,0.381118,0.13587,0.261515,0.0632542,0.303024,0.447794,0.486035,0.791454,0.345866,0.201895,0.738544,0.403442,0.0736771,0.35743,0.128728,0.617181,0.536852,0.472027,0.281568,0.270486,0.173423,0.321688,0.789314,0.422483,0.597091,0.0261714,0.0386847,0.507593,0.851901,0.640194,0.466856,0.407989,0.465046,0.610004,0.835467,0.0749607,0.444216,0.89031,0.445221,0.417646,0.920898,0.295958,0.745498,0.8528,0.523128,0.206786,0.0932545,0.316416,0.272327,0.731921,0.893098,0.545634,0.727431,0.502551,0.785749,0.681692,0.828139,0.944669,0.151598,0.310342,0.866234,0.949037,0.962506,0.271517,0.308711,0.00532138,0.471305,0.423723,0.711266,0.420427,0.96113,0.11217,0.780718,0.0302044,0.503326,0.853033,0.607957,0.654187,0.730308,0.102641,0.740565,0.907372,0.462344,0.761208,0.542378,0.131665,0.348392,0.549502,0.44556,0.858463,0.611525,0.873532,0.325924,0.0467938,0.674982,0.992275,0.888154,0.873256,0.809424,0.226611,0.0881199,0.208341,0.959194,0.593558,0.875676,0.432108,0.919708,0.335579,0.261108,0.805913,0.343861,0.843583,0.466125,0.629369,0.233064,0.718483,0.44054,0.0854955,0.936972,0.361476,0.166293,0.608926,0.933514,0.860207,0.327785,0.698174,0.938515,0.277609,0.383016,0.36055,0.514706,0.750282,0.305284,0.275641,0.298682,0.423446,0.89632,0.782845,0.591604,0.0534782,0.771474,0.896283,0.615162,0.759498,0.409288,0.658872,0.247675,0.323315,0.55021,0.576957,0.828227,0.759628,0.953189,0.679579,0.109225,0.180019,0.988103,0.20973,0.657067,0.140095,0.252953,0.933033,0.388768,0.36066,0.673473,0.353136,0.701282,0.642213,0.942818,0.405331,0.928414,0.818285,0.512768,0.569989,0.124625,0.482675,0.0371516,0.00105542,0.895151,0.55491,0.353745,0.718683,0.754885,0.912171,0.0563353,0.305949,0.613941,0.507388,0.415067,0.102977,0.266861,0.25666,0.828487,0.782782,0.725752,0.930213,0.5551,0.856654,0.0197477,0.50964,0.108647,0.110059,0.575633,0.435149,0.66857,0.232941,0.386341,0.595892,0.246461,0.954926,0.221034,0.731149,0.354296,0.915228,0.93242,0.147759,0.392525,0.284813,0.0527334,0.434542,0.169825,0.728257,0.882635,0.912143,0.20086,0.488902,0.363859,0.0625281,0.421536,0.456699,0.922524,0.680837,0.718804,0.675574,0.0192905,0.742467,0.186944,0.935389,0.391035,0.516287,0.60337,0.758403,0.382804,0.482624,0.779014,0.783456,0.914735,0.555971,0.647575,0.664106,0.0355877,0.983432,0.0231982,0.206407,0.323038,0.117989,0.488326,0.594756,0.231327,0.0903988,0.289365,0.981287,0.889261,0.281515,0.624059,0.758626,0.478538,0.722185,0.595211,0.383341,0.0415996,0.119508,0.461438,0.786641,0.64473,0.618993,0.642425,0.996205,0.0558377,0.710496,0.160282,0.685748,0.84891,0.81159,0.898009,0.918106,0.919666,0.42813,0.764498,0.644687,0.294212,0.992477,0.4412,0.847029,0.0230982,0.0327666,0.640842,0.88835,0.756669,0.776782,0.720221,0.895299,0.728686,0.626304,0.718385,0.333167,0.245037,0.903311,0.178636,0.53998,0.245369,0.0589476,0.628147,0.62007,0.661135,0.820803,0.520117,0.420195,0.566055,0.370559,0.380638,0.862429,0.493616,0.325136,0.78028,0.0738252,0.105579,0.653032,0.969855,0.972922,0.947911,0.839571,0.824256,0.750331,0.911943,0.643352,0.743191,0.751639,0.046236,0.871121,0.765688,0.995035,0.0211685,0.905967,0.833926,0.0646574,0.529887,0.750993,0.615981,0.323798,0.466575,0.46535,0.597512,0.326524,0.630667,0.832884,0.62762,0.504063,0.237724,0.181961,0.556578,0.779409,0.439624,0.288608,0.104791,0.893656,0.576074,0.434514,0.0436506,0.394258,0.289005,0.200931,0.0345008,0.281651,0.0377545,0.20423,0.236136,0.880119,0.992952,0.662162,0.548325,0.776144,0.472231,0.669218,0.418125,0.747576,0.35465,0.857166,0.762424,0.960583,0.592116,0.411571,0.382781,0.738641,0.806056,0.797922,0.187514,0.0648239,0.347278,0.0115227,0.928026,0.214643,0.560141,0.936932,0.792816,0.772611,0.0690877,0.265066,0.730681,0.677614,0.836622,0.607181,0.959347,0.159849,0.941333,0.202151,0.689038,0.900745,0.043364,0.00327069,0.564194,0.530461,0.362889,0.425564,0.109418,0.938991,0.179878,0.423526,0.972286,0.811314,0.942405,0.691497,0.0339198,0.224331,0.366935,0.020227,0.78522,0.213411,0.39567,0.28978,0.247641,0.460183,0.14297,0.0573329,0.789057,0.523113,0.431316,0.681478,0.567552,0.619227,0.286197,0.882383,0.213629,0.101134,0.903884,0.358694,0.353286,0.434282,0.353083,0.976469,0.912284,0.258858,0.235002,0.247177,0.125856,0.557557,0.99353,0.164325,0.450803,0.0572965,0.148701,0.0812147,0.427685,0.197367,0.0573031,0.512659,0.923077,0.0821909,0.635975,0.630618,0.788941,0.593328,0.906548,0.0452456,0.949939,0.425158,0.559905,0.660614,0.7454,0.955628,0.827586,0.402667,0.27468,0.311306,0.197473,0.7576,0.625775,0.0982371,0.520875,0.25706,0.902528,0.177518,0.232767,0.802851,0.0837539,0.327183,0.0120161,0.848023,0.299839,0.712409,0.768457,0.65811,0.498883,0.861847,0.294037,0.980604,0.566078,0.576786,0.885745,0.885934,0.341955,0.132932,0.71478,0.0141945,0.358128,0.602843,0.827142,0.345256,0.405409,0.800507,0.867488,0.858662,0.894657,0.516264,0.686439,0.872792,0.186534,0.15932,0.770539,0.809343,0.271518,0.149256,0.96006,0.627363,0.0171868,0.950084,0.126859,0.371155,0.319851,0.343399,0.463213,0.974502,0.450149,0.577318,0.452525,0.899795,0.99603,0.425854,0.362175,0.203603,0.311296,0.108504,0.284565,0.458467,0.501298,0.191112,0.892734,0.951494,0.788403,0.391479,0.538924,0.83897,0.29379,0.772809,0.772059,0.0968593,0.473098,0.536691,0.484045,0.203231,0.0712311,0.292509,0.384649,0.276989,0.246684,0.632409,0.464649,0.631814,0.287227,0.971222,0.539142,0.563961,0.929795,0.283543,0.0812892,0.890007,0.749519,0.838236,0.261451,0.50666,0.638054,0.832195,0.409718,0.577245,0.0242211,0.399178,0.229341,0.594887,0.834997,0.715096,0.722376,0.102622,0.718492,0.415864,0.554845,0.160777,0.287523,0.354179,0.756264,0.556721,0.560445,0.0187495,0.557999,0.466558,0.383633,0.760469,0.568386,0.645168,0.552424,0.56387,0.7629,0.270525,0.945667,0.183296,0.534313,0.394781,0.311438,0.192915,0.99495,0.776897,0.00648385,0.137545,0.18984,0.279579,0.482323,0.425402,0.225812,0.824357,0.6675,0.428632,0.750921,0.0394675,0.925875,0.270295,0.316586,0.560915,0.0716696,0.896434,0.267965,0.0530722,0.161257,0.133602,0.695123,0.852705,0.977126,0.152706,0.501529,0.625524,0.787528,0.884042,0.396504,0.245831,0.392273,0.389605,0.0424273,0.654381,0.107628,0.593947,0.330004,0.87595,0.460631,0.280595,0.46945,0.870804,0.266349,0.772666,0.92043,0.691975,0.463042,0.450099,0.676174,0.789493,0.534872,0.238221,0.318057,0.302836,0.420253,0.189612,0.238817,0.00352675,0.940736,0.128014,0.607042,0.342995,0.213726,0.381599,0.920845,0.225842,0.516578,0.593994,0.206843,0.988732,0.262171,0.150512,0.957134,0.732791,0.645447,0.657759,0.215191,0.278231,0.220382,0.660451,0.152383,0.510691,0.528987,0.487756,0.381396,0.313563,0.317428,0.593116,0.508027,0.703713,0.277269,0.223259,0.102197,0.0990785,0.815808,0.694708,0.0301005,0.00773203,0.355273,0.407005,0.75749,0.642667,0.440003,0.766125,0.232029,0.0993123,0.0371794,0.533239,0.088123,0.156335,0.541211,0.19816,0.0591902,0.198521,0.371461,0.0526782,0.336139,0.618477,0.280271,0.816596,0.894558,0.211801,0.599118,0.688601,0.59358,0.810908,0.40212,0.443955,0.415069,0.5636,0.438308,0.562856,0.821843,0.303436,0.82673,0.894508,0.427239,0.599915,0.434327,0.925261,0.933292,0.454815,0.837402,0.723851,0.761991,0.9782,0.919415,0.91723,0.81786,|0.0129551,0.668668,0.496667,0.367655,0.863582,0.636393,0.919928,0.965013,0.963253,0.79123,0.375074,0.362762,0.298761,0.746845,0.996901,0.490901,0.280891,0.302306,0.920725,0.924083,0.446521,0.718479,0.0243036,0.571061,0.266271,0.806587,0.447185,0.748318,0.663795,0.94776,0.820465,0.288871,0.104295,0.320498,0.399622,0.87183,0.348384,0.00471646,0.0790469,0.904329,0.843828,0.875001,0.686772,0.147604,0.417097,0.00357568,0.0857422,0.123081,0.403635,0.543398,0.264658,0.149905,0.525196,0.251393,0.428375,0.838586,0.35053,0.318681,0.393719,0.773367,0.699605,0.824373,0.178748,0.981238,0.822687,0.862098,0.378621,0.996139,0.982671,0.402132,0.520177,0.108865,0.150448,0.93956,0.193301,0.206417,0.823781,0.475032,0.860899,0.439782,0.357107,0.782403,0.196857,0.0932397,0.660885,0.719077,0.877096,0.0910288,0.395722,0.796202,0.704479,0.150028,0.98723,0.243578,0.059773,0.739669,0.504678,0.149327,0.897353,0.602073,0.44054,0.898685,0.318384,0.998639,0.0727172,0.20536,0.595084,0.0964566,0.488488,0.0491152,0.160735,0.885562,0.343197,0.687367,0.821652,0.803301,0.852142,0.576359,0.00947726,0.953381,0.0294155,0.00629783,0.61862,0.876553,0.0874466,0.404355,0.447329,0.570858,0.946615,0.101642,0.609122,0.543066,0.195571,0.848544,0.354,0.687649,0.93104,0.975293,0.444569,0.696662,0.738054,0.492042,0.0285988,0.681795,0.337561,0.952537,0.544977,0.938189,0.0320951,0.959296,0.0922091,0.758247,0.786425,0.293985,0.48688,0.369852,0.804518,0.194582,0.791537,0.527796,0.0323008,0.283237,0.0613487,0.780482,0.673292,0.663238,0.98602,0.621579,0.109918,0.665908,0.644838,0.603435,0.766935,0.394777,0.219828,0.275649,0.590772,0.557727,0.709499,0.789933,0.262351,0.194204,0.873033,0.752967,0.835378,0.0330639,0.777372,0.458106,0.865085,0.68023,0.633358,0.116085,0.00414485,0.683502,0.103886,0.41015,0.599504,0.0803109,0.0945631,0.770666,0.866304,0.501821,0.058521,0.308769,0.863863,0.500237,0.8797,0.0161908,0.135219,0.316374,0.723524,0.481245,0.603506,0.286702,0.755808,0.826753,0.212924,0.153648,0.0628229,0.967489,0.0845467,0.890868,0.710855,0.309942,0.191234,0.864947,0.920123,0.13993,0.045111,0.780746,0.862183,0.77051,0.87942,0.154809,0.680286,0.058387,0.583842,0.464787,0.0248432,0.279134,0.0348849,0.927714,0.0565147,0.0119369,0.832473,0.799995,0.728436,0.835369,0.942584,0.0483039,0.174002,0.728989,0.354553,0.960191,0.516473,0.634268,0.409418,0.475421,0.786274,0.966718,0.928081,0.691646,0.789028,0.19465,0.945147,0.686399,0.604807,0.0249403,0.729371,0.472989,0.41513,0.544832,0.1068,0.954878,0.085493,0.588346,0.504929,0.586773,0.745547,0.75018,0.283784,0.847943,0.893735,0.246459,0.953346,0.146991,0.223966,0.746101,0.0167551,0.331783,0.789717,0.9024,0.986301,0.715418,0.412944,0.0311698,0.281,0.85494,0.606888,0.581241,0.602649,0.463713,0.1628,0.256605,0.185277,0.101636,0.533813,0.205066,0.409438,0.195491,0.24384,0.139857,0.868342,0.012674,0.560282,0.452582,0.047529,0.57354,0.583854,0.753667,0.677969,0.815881,0.420474,0.940114,0.946724,0.153542,0.737568,0.586387,0.931431,0.701014,0.505499,0.248271,0.451794,0.643571,0.273649,0.298567,0.414635,0.24069,0.979889,0.336102,0.36891,0.455778,0.281597,0.175561,0.743346,0.949378,0.0923872,0.93795,0.728789,0.0168471,0.33422,0.589746,0.802601,0.721414,0.0853851,0.892717,0.0324743,0.953223,0.918372,0.747886,0.810834,0.441031,0.973539,0.371588,0.26166,0.242528,0.26304,0.470733,0.984253,0.192364,0.677396,0.423164,0.78303,0.585389,0.480062,0.316004,0.943074,0.115197,0.0203606,0.283618,0.572537,0.879073,0.669678,0.096124,0.930185,0.994506,0.809026,0.794801,0.0569839,0.411314,0.755,0.239353,0.148658,0.102071,0.0203965,0.139782,0.889899,0.372044,0.727367,0.989777,0.169996,0.875798,0.164462,0.601347,0.457481,0.897476,0.929862,0.0179604,0.380807,0.224471,0.411004,0.840968,0.228337,0.90205,0.975015,0.200663,0.364513,0.342966,0.74336,0.659944,0.00900686,0.49304,0.36948,0.727855,0.979318,0.10598,0.471738,0.916355,0.794831,0.307501,0.265377,0.0484744,0.366297,0.32969,0.260201,0.632258,0.00941992,0.29696,0.305048,0.865797,0.896134,0.281526,0.613579,0.554397,0.791363,0.730973,0.0608413,0.109205,0.396627,0.323394,0.713634,0.630132,0.308821,0.293103,0.369633,0.874712,0.859713,0.468821,0.93064,0.0700073,0.0018875,0.576745,0.14974,0.676919,0.916314,0.209347,0.452845,0.147733,0.270802,0.89768,0.252864,0.791135,0.967676,0.862965,0.616179,0.87105,0.163637,0.950959,0.0852789,0.778264,0.514928,0.437821,0.0955272,0.207682,0.354919,0.236931,0.483165,0.409872,0.702936,0.481953,0.890744,0.477836,0.978408,0.999003,0.163216,0.598173,0.460187,0.612177,0.189753,0.88126,0.126214,0.728677,0.144199,0.167423,0.57609,0.735356,0.989166,0.941,0.325275,0.816152,0.706844,0.0498769,0.545805,0.551866,0.448078,0.600267,0.825028,0.344444,0.700063,0.653044,0.0631445,0.0565934,0.57058,0.246122,0.815964,0.323366,0.0312631,0.974132,0.149838,0.26624,0.406814,0.236583,0.4905,0.879559,0.002707,0.405427,0.929493,0.138666,0.223975,0.26408,0.709715,0.821886,0.390539,0.0921001,0.922788,0.370599,0.815579,0.665949,0.548543,0.757779,0.384463,0.0830688,0.178387,0.438015,0.912496,0.235094,0.690786,0.690913,0.803996,0.771535,0.456772,0.127882,0.24093,0.540138,0.0281029,0.864281,0.999118,0.848686,0.567585,0.0705086,0.418806,0.515636,0.479728,0.764438,0.928329,0.990063,0.0645924,0.685176,0.208313,0.404572,0.711454,0.799366,0.818957,0.448178,0.416844,0.799018,0.37624,0.719641,0.605136,0.486606,0.696635,0.304906,0.982581,0.56138,0.0183127,0.593009,0.00012964,0.398364,0.410167,0.860667,0.638001,0.709292,0.769842,0.508057,0.26494,0.878268,0.327984,0.0704655,0.117197,0.774124,0.343358,0.664677,0.792304,0.809298,0.254561,0.390182,0.665694,0.984563,0.871881,0.368539,0.553649,0.161924,0.69544,0.783677,0.568374,0.551334,0.382096,0.277094,0.585892,0.936985,0.944194,0.20704,0.712209,0.641779,0.508231,0.305472,0.915751,0.973989,0.0230899,0.590813,0.385987,0.488414,0.166734,0.337135,0.227285,0.463253,0.425844,0.973569,0.31704,0.892725,0.728481,0.863448,0.561455,0.589506,0.0795395,0.581555,0.67045,0.185614,0.959188,0.394815,0.525848,0.555801,0.628236,0.211883,0.328039,0.564094,0.533903,0.708244,0.527084,0.530916,0.0928808,0.182779,0.282458,0.815941,0.475755,0.89476,0.502999,0.903391,0.393089,0.393953,0.0558807,0.753491,0.0724137,0.156068,0.569004,0.113007,0.457172,0.186656,0.666621,0.835557,0.173959,0.231174,0.911073,0.0457554,0.120039,0.00566894,0.556162,0.310682,0.134001,0.419654,0.0086267,0.81561,0.0412619,0.602462,0.223234,0.56193,0.039758,0.605411,0.960632,0.000201523,0.75814,0.84006,0.0542591,0.69965,0.600795,0.789783,0.491239,0.406664,0.663317,0.811825,0.281628,0.878867,0.587352,0.92591,0.432136,0.469011,0.497201,0.303203,0.896602,0.66763,0.829647,0.678178,0.630785,0.855662,0.572459,0.204677,0.89829,0.531152,0.694682,0.242082,0.660924,0.184578,0.69455,0.198577,0.126758,0.28568,0.122346,0.463961,0.521989,0.329423,0.507686,0.12161,0.774149,0.024995,0.679433,0.486431,0.117052,0.588762,0.670852,0.262165,0.750151,0.920732,0.130153,0.62836,0.173166,0.819002,0.55254,0.500695,0.299487,0.404702,0.713642,0.488139,0.207052,0.555966,0.534145,0.609486,0.209814,0.766462,0.0439345,0.337895,0.894046,0.102701,0.251161,0.0563025,0.82841,0.548748,0.760431,0.96302,0.57541,0.71237,0.889819,0.403978,0.116692,0.895665,0.514494,0.782377,0.0485377,0.96089,0.31905,0.984451,0.577165,0.52262,0.538986,0.083919,0.351084,0.182917,0.262957,0.30214,0.597695,0.785643,0.208264,0.311631,0.805761,0.576903,0.286138,0.519085,0.359127,0.829678,0.988123,0.124164,0.220514,0.16834,0.740877,0.375401,0.37975,0.207722,0.357177,0.300437,0.893478,0.462958,0.583085,0.708232,0.477717,0.733851,0.201183,0.429838,0.0161023,0.801311,0.199444,0.0956366,0.378067,0.231108,0.145352,0.714835,0.661912,0.774677,0.605335,0.652224,0.903715,0.297364,0.0786949,0.938662,0.194431,0.495462,0.567014,0.238676,0.470324,0.0423793,0.633668,0.0195038,0.0356767,0.195918,0.705647,0.820937,0.275477,0.492507,0.524485,0.734495,0.177162,0.344689,0.393051,0.10074,0.958162,0.595339,0.366042,0.411066,0.431909,0.960876,0.718934,0.521411,0.111325,0.779543,0.246714,0.584054,0.732446,0.706447,0.137285,0.678017,0.0389791,0.425201,0.637728,0.834872,0.985763,0.872566,0.74393,0.63369,0.811475,0.999192,0.45386,0.654426,0.707976,0.439937,0.516526,0.0901917,0.969338,0.911539,0.348778,0.242906,0.462401,0.267452,0.504412,0.442737,0.0793925,0.0971462,0.332736,0.626943,0.860748,0.981951,0.830099,0.464075,0.311149,0.98041,0.846533,0.18861,0.210857,0.776714,0.178695,0.826223,0.0944471,0.0969772,0.797021,0.449218,0.1852,0.570647,0.262234,0.0725522,0.645251,0.72527,0.41633,0.969901,0.223222,0.260451,0.158027,0.14677,0.871803,0.523366,0.424287,0.25737,0.633087,0.865382,0.876536,0.373462,0.525247,0.286551,0.407573,0.883142,0.101766,0.572651,0.697915,0.0834062,0.646109,0.70845,0.628522,0.43763,0.269361,0.452156,0.159983,0.934425,3.15905e-05,0.853818,0.390511,0.770577,0.961613,0.487426,0.410635,0.483324,0.294726,0.816292,0.272008,0.310757,0.863105,0.438891,0.136189,0.816534,0.902444,0.268155,0.612418,0.499536,0.14366,0.966425,0.570219,0.731912,0.850817,0.252565,0.440434,0.776524,0.0355469,0.2529,0.574712,0.27598,|0.963493,0.284904,0.310161,0.967791,0.438314,0.323951,0.786056,0.552115,0.925951,0.264125,0.345954,0.530021,0.0943602,0.0632045,0.20529,0.166557,0.913383,0.677106,0.0555579,0.0565618,0.114386,0.633321,0.207755,0.578961,0.101652,0.437845,0.942263,0.699222,0.630353,0.86685,0.442946,0.476993,0.382961,0.149867,0.66722,0.438911,0.596286,0.101014,0.511406,0.14184,0.561204,0.958355,0.0112324,0.418104,0.710451,0.955936,0.501442,0.326825,0.83287,0.877236,0.421073,0.608699,0.316625,0.571824,0.0714458,0.181671,0.29469,0.363665,0.622809,0.253425,0.315012,0.18039,0.279163,0.287452,0.826446,0.0997084,0.498793,0.25642,0.619855,0.167952,0.947076,0.0176795,0.152307,0.0508843,0.308138,0.663308,0.0846299,0.350454,0.471912,0.945041,0.000708282,0.954668,0.307126,0.469569,0.111681,0.236217,0.919666,0.981111,0.641,0.141217,0.370259,0.177538,0.696304,0.483863,0.925754,0.910946,0.215144,0.196924,0.660229,0.714721,0.335359,0.162037,0.780457,0.592069,0.618583,0.558328,0.272787,0.822374,0.310693,0.289658,0.0897695,0.438996,0.975522,0.844763,0.390551,0.055007,0.675055,0.118167,0.0827225,0.947788,0.406422,0.228171,0.532311,0.29198,0.300249,0.268652,0.527662,0.291816,0.62661,0.250534,0.35488,0.495586,0.626771,0.953628,0.378324,0.720932,0.199399,0.607396,0.57945,0.930003,0.815138,0.755159,0.891994,0.929578,0.0394681,0.0823843,0.100097,0.677862,0.428538,0.920899,0.421948,0.537975,0.836623,0.775343,0.219444,0.0835111,0.938166,0.792372,0.721467,0.460495,0.533751,0.355848,0.372391,0.0886508,0.484867,0.0692092,0.71612,0.517304,0.450008,0.403577,0.510907,0.41704,0.916032,0.769251,0.0276939,0.967619,0.499607,0.792019,0.655622,0.572654,0.232017,0.223111,0.294178,0.649189,0.322676,0.926987,0.317448,0.431954,0.510228,0.152436,0.551507,0.00747806,0.8969,0.604698,0.969585,0.887668,0.968861,0.0980704,0.952431,0.527497,0.307116,0.604598,0.433654,0.0768597,0.62601,0.548597,0.302345,0.986079,0.402374,0.839548,0.425032,0.333377,0.534579,0.58426,0.494639,0.807783,0.141067,0.509619,0.0860703,0.342327,0.219156,0.645508,0.472869,0.88166,0.671391,0.467564,0.538885,0.601637,0.281162,0.425676,0.616615,0.253973,0.168095,0.605234,0.107268,0.105535,0.953046,0.230132,0.640234,0.741934,0.789051,0.824946,0.438603,0.959872,0.529139,0.463962,0.711883,0.716908,0.0588313,0.0975385,0.747944,0.516308,0.0129669,0.163315,0.431115,0.535412,0.464982,0.776468,0.605432,0.0604115,0.167041,0.972755,0.31361,0.305482,0.0739263,0.173189,0.234411,0.743216,0.0157229,0.710333,0.567295,0.966628,0.834604,0.226721,0.772912,0.859787,0.305885,0.906833,0.22255,0.312591,0.394911,0.250477,0.536572,0.658859,0.790366,0.429716,0.117613,0.56449,0.20768,0.644568,0.566947,0.280764,0.72125,0.322052,0.669261,0.221005,0.537585,0.0218802,0.6038,0.376206,0.67369,0.0598894,0.597832,0.829494,0.208676,0.896296,0.396074,0.489933,0.0706581,0.700399,0.819043,0.487755,0.41404,0.232058,0.559073,0.951617,0.178101,0.169352,0.833859,0.460257,0.395745,0.104075,0.666823,0.804949,0.178816,0.102871,0.047253,0.306626,0.928687,0.101789,0.0757931,0.453403,0.251098,0.924411,0.274202,0.550224,0.520662,0.097894,0.674261,0.93401,0.475412,0.168941,0.612274,0.125659,0.617126,0.356268,0.971024,0.665126,0.118234,0.980078,0.643228,0.939133,0.909854,0.846428,0.887958,0.573618,0.161439,0.923807,0.560196,0.409951,0.433065,0.981829,0.676121,0.690218,0.802599,0.105544,0.0141657,0.874839,0.35839,0.138335,0.00721788,0.38471,0.446032,0.884479,0.862535,0.316331,0.887768,0.958861,0.750758,0.14885,0.876868,0.485086,0.155541,0.630063,0.668104,0.541909,0.61388,0.622955,0.764701,0.490653,0.979194,0.325516,0.402292,0.928922,0.958525,0.85165,0.139069,0.0654115,0.381607,0.505793,0.054309,0.388038,0.511927,0.620717,0.451515,0.588879,0.192601,0.708374,0.773211,0.404764,0.196502,0.771457,0.370646,0.767768,0.441519,0.385231,0.673818,0.77189,0.784801,0.221404,0.142844,0.818039,0.325531,0.163747,0.449506,0.61565,0.972147,0.207524,0.349513,0.0741678,0.461753,0.352249,0.343996,0.783009,0.321453,0.709044,0.728133,0.213854,0.0963119,0.503881,0.978507,0.779581,0.171801,0.806571,0.788545,0.311465,0.0879119,0.687225,0.837105,0.682822,0.562104,0.44194,0.317094,0.982186,0.678767,0.733083,0.78252,0.901107,0.53711,0.733564,0.0517214,0.901979,0.695721,0.715022,0.050066,0.0343561,0.912943,0.809195,0.70041,0.51948,0.0450827,0.864876,0.647345,0.630877,0.805024,0.379862,0.434335,0.262959,0.742803,0.67625,0.912773,0.4308,0.714937,0.846017,0.203574,0.504266,0.315344,0.197389,0.379454,0.504787,0.989909,0.635864,0.959615,0.603271,0.687061,0.984589,0.722152,0.868012,0.29103,0.102968,0.743554,0.96968,0.0795519,0.244515,0.168385,0.109107,0.518567,0.634304,0.212174,0.0342618,0.196805,0.24619,0.646561,0.0463246,0.323593,0.0813069,0.891998,0.0227257,0.852427,0.906994,0.487552,0.676965,0.219714,0.78404,0.412771,0.537355,0.171706,0.234031,0.490691,0.122767,0.0979791,0.915364,0.117971,0.167432,0.762974,0.42691,0.543161,0.885495,0.152262,0.761554,0.0324907,0.829699,0.695783,0.0114247,0.933791,0.168009,0.403722,0.402744,0.023899,0.367337,0.659645,0.847114,0.967222,0.802924,0.117554,0.382071,0.514288,0.0820548,0.717452,0.0750324,0.895832,0.359447,0.918307,0.0366655,0.6304,0.584463,0.748305,0.506309,0.0146791,0.993492,0.123172,0.0676657,0.570465,0.879092,0.126896,0.282572,0.227253,0.847942,0.811512,0.311838,0.164014,0.841553,0.490005,0.865164,0.817433,0.844241,0.0107874,0.504571,0.594595,0.400157,0.456946,0.66394,0.199261,0.665474,0.368645,0.102086,0.498944,0.275366,0.771224,0.986699,0.526642,0.940549,0.445331,0.0226989,0.958538,0.440932,0.996671,0.268746,0.840595,0.057018,0.310624,0.00451285,0.076461,0.937047,0.838715,0.714742,0.753836,0.115494,0.791063,0.26817,0.169342,0.708746,0.408338,0.711578,0.0157181,0.0864062,0.410684,0.321426,0.301219,0.677467,0.677998,0.128504,0.274704,0.1425,0.578321,0.0484988,0.446009,0.477771,0.272372,0.478632,0.251164,0.340484,0.667763,0.529763,0.237997,0.0676492,0.22258,0.166247,0.870774,0.958856,0.439266,0.0609896,0.694077,0.773674,0.225048,0.984251,0.0594954,0.49899,0.861261,0.865066,0.164116,0.136203,0.496622,0.792879,0.939641,0.327627,0.985269,0.143019,0.384289,0.98271,0.867313,0.534249,0.961752,0.21134,0.444887,0.447157,0.291369,0.451258,0.222253,0.90015,0.969,0.69047,0.325662,0.708196,0.176608,0.0951102,0.324456,0.616033,0.481425,0.329385,0.488144,0.0123918,0.738041,0.509429,0.563604,0.152893,0.151432,0.305218,0.0546249,0.831101,0.177823,0.708219,0.768794,0.182893,0.274769,0.242179,0.941104,0.78223,0.763643,0.841903,0.452736,0.375468,0.942921,0.151413,0.186824,0.647256,0.575108,0.324914,0.950292,0.52323,0.671933,0.0920126,0.300958,0.321826,0.790802,0.979051,0.145101,0.0369986,0.279509,0.523611,0.505774,0.888851,0.811212,0.831817,0.403564,0.127358,0.0383162,0.445791,0.347629,0.437878,0.831671,0.625389,0.204433,0.806434,0.13116,0.452296,0.35705,0.347811,0.361166,0.466528,0.569555,0.609565,0.967749,0.993693,0.256191,0.514902,0.649243,0.0980181,0.729574,0.674508,0.79785,0.523165,0.908264,0.287772,0.676767,0.419559,0.811839,0.102372,0.487128,0.923256,0.586248,0.622174,0.711613,0.699705,0.620263,0.50139,0.653793,0.0328988,0.279966,0.127849,0.893256,0.855461,0.502278,0.261678,0.96634,0.391565,0.397581,0.591926,0.556203,0.434402,0.859384,0.292044,0.748925,0.803541,0.378123,0.87581,0.257536,0.747572,0.729768,0.903822,0.14106,0.698323,0.126499,0.668512,0.418168,0.788973,0.565858,0.345935,0.513344,0.154652,0.694569,0.325524,0.894187,0.797928,0.398421,0.527841,0.409532,0.0102909,0.993759,0.833114,0.426829,0.804794,0.71357,0.522937,0.256938,0.588309,0.736509,0.491492,0.580536,0.730534,0.96234,0.264196,0.44339,0.681754,0.486489,0.855238,0.205376,0.386511,0.323994,0.42714,0.897861,0.335491,0.845179,0.41271,0.256966,0.731807,0.476319,0.60171,0.109191,0.525494,0.133598,0.682365,0.741441,0.377838,0.724715,0.437031,0.394898,0.364482,0.667409,0.300477,0.383204,0.806417,0.964702,0.759938,0.879693,0.827557,0.637755,0.679436,0.387098,0.394374,0.863242,0.705007,0.0217443,0.551254,0.142543,0.934368,0.673438,0.726329,0.0229677,0.895357,0.0653039,0.382022,0.0772706,0.367467,0.472933,0.30172,0.844747,0.545411,0.140631,0.526063,0.285601,0.463477,0.439774,0.875212,0.549005,0.156962,0.105586,0.0643441,0.0622863,0.970918,0.474983,0.688203,0.0163042,0.112393,0.985292,0.0729309,0.19691,0.0148003,0.32139,0.542333,0.945373,0.379678,0.0570976,0.102694,0.241135,0.947353,0.266724,0.454399,0.587831,0.625046,0.764747,0.49854,0.958515,0.330303,0.865521,0.574838,0.20734,0.0205252,0.684844,0.271034,0.223095,0.81404,0.957127,0.867297,0.934462,0.640428,0.106996,0.213566,0.0508333,0.554081,0.251145,0.446158,0.374824,0.71128,0.115133,0.824048,0.121625,0.351536,0.222923,0.746238,0.209978,0.368124,0.345431,0.627581,0.978837,0.258773,0.216723,0.63398,0.246833,0.186967,0.311653,0.788773,0.114362,0.478614,0.966011,0.508518,0.40837,0.258629,0.543413,0.0896693,0.158629,0.876827,0.785196,0.34372,0.397837,0.86769,0.0634843,0.216223,0.460672,0.257353,0.928174,0.133183,0.190431,0.744371,0.376622,0.693718,0.858809,0.541891,0.256957,0.547896,0.267372,0.865588,0.519336,0.358952,0.298111,0.449488,0.373877,0.62777,0.281203,0.637134,|0.438667,0.108605,0.213971,0.792847,0.475303,0.226212,0.306708,0.942169,0.63778,0.906672,0.572754,0.0250316,0.00552976,0.099572,0.533798,0.478454,0.838307,0.65245,0.814088,0.21543,0.795587,0.424053,0.332917,0.997878,0.38747,0.763955,0.112252,0.976313,0.742517,0.257919,0.676862,0.714002,0.796004,0.460261,0.679139,0.493051,0.0878172,0.834396,0.300688,0.568257,0.512863,0.592637,0.783893,0.483375,0.90075,0.233211,0.607743,0.781715,0.396325,0.0493211,0.0180808,0.874699,0.877012,0.729647,0.157469,0.406264,0.179019,0.981311,0.189787,0.495004,0.524261,0.502983,0.174904,0.456724,0.0923594,0.125053,0.206852,0.243729,0.00494617,0.261083,0.490008,0.238772,0.633639,0.430601,0.906759,0.161218,0.455551,0.657221,0.0469322,0.460047,0.596632,0.472179,0.746813,0.282019,0.800943,0.776079,0.831216,0.346114,0.676298,0.263052,0.429221,0.286893,0.221433,0.412573,0.109924,0.268351,0.05348,0.935988,0.0421163,0.429819,0.342531,0.172279,0.138601,0.147806,0.307977,0.927897,0.037099,0.0940787,0.991715,0.992719,0.549148,0.0905221,0.0238133,0.866798,0.471387,0.980743,0.747361,0.244736,0.132036,0.545397,0.00620079,0.824587,0.87236,0.219679,0.0203992,0.192687,0.560292,0.028522,0.0493855,0.41683,0.157911,0.555729,0.151132,0.34724,0.241779,0.839498,0.782308,0.878997,0.83219,0.144037,0.276752,0.0430772,0.45912,0.0010038,0.931405,0.681764,0.24726,0.44779,0.982727,0.217832,0.731439,0.925123,0.794672,0.795405,0.51585,0.365584,0.0696115,0.783524,0.493898,0.0716861,0.483664,0.403987,0.928744,0.50919,0.35912,0.0111144,0.833982,0.765784,0.871581,0.670992,0.428641,0.225441,0.459252,0.806116,0.601557,0.840676,0.608126,0.841227,0.881644,0.731852,0.863605,0.415649,0.908992,0.856681,0.322296,0.145803,0.0707374,0.914657,0.872669,0.290898,0.888291,0.533914,0.85537,0.186199,0.152674,0.891635,0.774125,0.565174,0.745398,0.259962,0.699366,0.0444441,0.945001,0.168462,0.811415,0.0323691,0.817993,0.816481,0.913505,0.781951,0.348024,0.612274,0.83304,0.693583,0.415112,0.691147,0.315361,0.221038,0.700571,0.667065,0.70573,0.319109,0.530107,0.200738,0.99829,0.346842,0.825727,0.0638142,0.734916,0.0158485,0.790063,0.00721818,0.956968,0.542809,0.981873,0.458881,0.945781,0.92009,0.210066,0.405567,0.772101,0.312819,0.46898,0.565687,0.244951,0.793953,0.192582,0.284571,0.603874,0.718576,0.469731,0.149197,0.496873,0.930334,0.546299,0.782961,0.157394,0.829183,0.863045,0.893246,0.238429,0.305296,0.0988036,0.599815,0.148625,0.296289,0.595015,0.129809,0.466845,0.785321,0.918126,0.12977,0.232447,0.0759286,0.600915,0.25794,0.211108,0.942273,0.0588183,0.261983,0.977209,0.0502333,0.480279,0.839644,0.0497155,0.20819,0.638664,0.236382,0.789692,0.367271,0.110832,0.728764,0.299486,0.347542,0.595268,0.318487,0.0637147,0.273857,0.468891,0.621679,0.928072,0.749771,0.408701,0.388682,0.385498,0.560565,0.807033,0.844746,0.644127,0.461098,0.0463134,0.0424641,0.641783,0.480739,0.852569,0.595386,0.386935,0.93458,0.867318,0.0873767,0.505246,0.124656,0.336019,0.866631,0.840525,0.753182,0.538446,0.461259,0.267827,0.957782,0.458802,0.992883,0.515939,0.793345,0.375439,0.535293,0.683213,0.76513,0.791468,0.222895,0.297165,0.59347,0.0753734,0.0840842,0.116306,0.125521,0.0539478,0.44315,0.393867,0.878457,0.95989,0.614925,0.288758,0.633755,0.441828,0.484074,0.0785161,0.755791,0.11537,0.777042,0.0274101,0.253478,0.120571,0.406591,0.181388,0.0662274,0.501741,0.346973,0.423058,0.58928,0.233223,0.107914,0.0430403,0.0520349,0.738142,0.552079,0.60437,0.931033,0.0190955,0.920895,0.782181,0.372564,0.896413,0.995601,0.669202,0.668557,0.609195,0.144812,0.751016,0.169508,0.193352,0.222583,0.455656,0.773561,0.836347,0.555213,0.907171,0.304047,0.211345,0.825097,0.558188,0.151765,0.862984,0.810266,0.557269,0.00741655,0.83722,0.459912,0.74061,0.253655,0.071698,0.410164,0.201989,0.154689,0.0524398,0.29506,0.80615,0.726563,0.077911,0.586394,0.746692,0.754959,0.381094,0.673429,0.746159,0.0818902,0.986509,0.400512,0.66999,0.352864,0.961372,0.710736,0.459976,0.775981,0.973554,0.925795,0.497742,0.804097,0.262119,0.80934,0.386835,0.0676525,0.967975,0.390281,0.934367,0.569586,0.0051837,0.624618,0.00284946,0.222994,0.867853,0.815961,0.842906,0.745823,0.227838,0.399976,0.492358,0.550657,0.841971,0.168189,0.292229,0.160375,0.759446,0.179001,0.722616,0.418595,0.375963,0.295257,0.792162,0.884225,0.627617,0.503731,0.941205,0.163858,0.535165,0.537823,0.980615,0.881858,0.664292,0.307154,0.995118,0.00312912,0.650671,0.639394,0.745247,0.994373,0.42211,0.726486,0.337097,0.770074,0.752783,0.328526,0.94759,0.158202,0.579586,0.55301,0.118311,0.602245,0.746034,0.715649,0.0859379,0.723471,0.37675,0.487659,0.42402,0.760965,0.874917,0.796061,0.421436,0.649692,0.338068,0.0251229,0.0573348,0.810528,0.71777,0.601946,0.978059,0.689946,0.0121995,0.891411,0.908563,0.144569,0.629714,0.167935,0.717409,0.652453,0.136924,0.406178,0.556835,0.874442,0.524015,0.768827,0.0214061,0.711101,0.166843,0.882815,0.0832046,0.327811,0.152046,0.42392,0.771788,0.731463,0.605886,0.927564,0.64339,0.0909519,0.410759,0.0418728,0.625423,0.302021,0.787162,0.149453,0.691983,0.800634,0.368638,0.186877,0.0753602,0.523348,0.638735,0.680542,0.992545,0.00816482,0.223799,0.627709,0.730231,0.389388,0.179258,0.463209,0.511453,0.58525,0.404966,0.722311,0.617548,0.568784,0.408247,0.428484,0.78038,0.0076167,0.760105,0.51353,0.738359,0.273693,0.243663,0.575027,0.446616,0.157769,0.888451,0.113051,0.363869,0.895586,0.95323,0.312466,0.145816,0.548584,0.504407,0.329933,0.746751,0.694845,0.66672,0.800301,0.112101,0.623125,0.488536,0.462794,0.432287,0.578754,0.922175,0.908839,0.912812,0.164552,0.585577,0.156413,0.988793,0.733462,0.120744,0.163535,0.746837,0.0932158,0.957773,0.773418,0.520169,0.992344,0.39581,0.234355,0.965852,0.0262525,0.19553,0.910596,0.021608,0.841477,0.98542,0.944509,0.137085,0.954583,0.633374,0.463331,0.722046,0.7172,0.340894,0.50406,0.720532,0.429929,0.365649,0.72813,0.372538,0.591747,0.207788,0.332023,0.968896,0.843302,0.763512,0.219787,0.786962,0.322174,0.0952827,0.264505,0.928625,0.523396,0.171587,0.936167,0.610852,0.40731,0.207371,0.176615,0.826515,0.13541,0.345447,0.921627,0.368761,0.0827277,0.672859,0.504704,0.996716,0.0515014,0.64268,0.602368,0.911288,0.229854,0.194102,0.767588,0.127022,0.449281,0.588509,0.483004,0.24994,0.390453,0.0852528,0.324234,0.767531,0.541489,0.451698,0.972529,0.601858,0.241865,0.775075,0.234268,0.879572,0.275235,0.465276,0.116609,0.309486,0.0783311,0.556632,0.166542,0.555512,0.184748,0.681558,0.646769,0.868512,0.394287,0.0200493,0.529816,0.910016,0.614288,0.955141,0.648943,0.435973,0.901222,0.225761,0.864451,0.652896,0.730112,0.740534,0.661395,0.364518,0.939878,0.481427,0.846961,0.468378,0.448341,0.0257827,0.393463,0.225281,0.320542,0.834863,0.226326,0.629745,0.109688,0.167848,0.644292,0.369395,0.342291,0.772961,0.672217,0.0768875,0.268276,0.555464,0.204794,0.832442,0.173528,0.898452,0.65112,0.881809,0.936244,0.680484,0.658454,0.182742,0.799423,0.564579,0.97342,0.214277,0.166932,0.469875,0.641591,0.228913,0.50159,0.0472863,0.79218,0.805943,0.749848,0.623342,0.212291,0.0343419,0.335164,0.89617,0.0125905,0.413765,0.527236,0.437164,0.212568,0.759627,0.976001,0.901911,0.140988,0.363295,0.72832,0.975891,0.98457,0.194995,0.141499,0.0924941,0.869392,0.348835,0.23042,0.174638,0.286913,0.90965,0.452641,0.0307623,0.14517,0.157943,0.841541,0.160473,0.703697,0.309063,0.192985,0.860882,0.539977,0.498923,0.840699,0.792151,0.719435,0.807639,0.345532,0.128168,0.859789,0.593124,0.549808,0.420535,0.423472,0.476086,0.854204,0.584848,0.0737031,0.836655,0.357247,0.216626,0.282096,0.882568,0.799902,0.733969,0.0639112,0.110206,0.356376,0.122102,0.306579,0.886808,0.0956072,0.136654,0.688926,0.180591,0.87418,0.831454,0.350201,0.154138,0.865872,0.997502,0.0545343,0.459592,0.424487,0.599741,0.586981,0.967313,0.243174,0.567196,0.332327,0.0404916,0.271071,0.935218,0.545328,0.718119,0.370484,0.177268,0.0282126,0.726023,0.104118,0.542176,0.374812,0.745752,0.471708,0.149452,0.57604,0.606471,0.586257,0.615201,0.453762,0.43908,0.490504,0.736463,0.0591085,0.0454112,0.361798,0.89724,0.854271,0.325856,0.518499,0.159379,0.230115,0.0452883,0.319762,0.98392,0.116534,0.996965,0.0464751,0.83562,0.410791,0.771486,0.726011,0.603069,0.748311,0.902643,0.1975,0.0328854,0.0454723,0.66381,0.743132,0.425767,0.489897,0.64864,0.946396,0.421035,0.412344,0.491149,0.392437,0.339208,0.581731,0.238276,0.0654252,0.631845,0.343639,0.494434,0.3152,0.723004,0.201015,0.503901,0.592351,0.692489,0.60416,0.736225,0.302385,0.350923,0.897119,0.706317,0.332331,0.553513,0.468343,0.683609,0.518195,0.431652,0.0209312,0.251767,0.913596,0.619931,0.24255,0.246448,0.73384,0.711796,0.799826,0.59171,0.388126,0.387664,0.569636,0.94328,0.644824,0.318368,0.488089,0.250242,0.987057,0.316855,0.539585,0.131347,0.921386,0.387823,0.893638,0.604746,0.661297,0.189761,0.619064,0.402318,0.504439,0.603063,0.016019,0.50338,0.0450452,0.877742,0.0209914,0.372329,0.46715,0.876116,0.530646,0.332001,0.111538,0.124707,0.413014,0.512269,0.190505,0.587945,0.486466,0.611651,0.355652,0.386998,0.571019,0.636657,0.103309,0.0350007,0.93471,0.190919,0.851176,0.36007,0.411284,|0.00873023,0.816506,0.98254,0.342959,0.634974,0.900465,0.29103,0.333959,0.147194,0.401627,0.282262,0.164013,0.88185,0.456208,0.13769,0.228791,0.314518,0.931348,0.228421,0.560609,0.826641,0.833306,0.997441,0.984086,0.110078,0.249874,0.132359,0.398292,0.925706,0.892976,0.946818,0.712086,0.880842,0.157465,0.0155984,0.140849,0.469328,0.699814,0.679083,0.0947738,0.670492,0.156314,0.78508,0.618233,0.964476,0.866817,0.519831,0.793588,0.83063,0.251655,0.953608,0.307371,0.774564,0.597049,0.50003,0.0867037,0.986568,0.53222,0.867217,0.86593,0.478822,0.153374,0.342461,0.455521,0.0688689,0.659716,0.810244,0.0799554,0.0280596,0.39299,0.637606,0.414758,0.235353,0.82838,0.641806,0.144457,0.0443732,0.884354,0.314095,0.404157,0.608569,0.60442,0.107216,0.323878,0.829185,0.575201,0.102716,0.261946,0.32394,0.709108,0.376886,0.986127,0.765092,0.109446,0.493885,0.0573089,0.819673,0.62415,0.873484,0.0303983,0.737786,0.340791,0.100421,0.102764,0.401836,0.898211,0.603915,0.367318,0.953403,0.868743,0.614378,0.918731,0.400442,0.187654,0.46518,0.443598,0.241051,0.266686,0.690438,0.996767,0.445738,0.812676,0.238121,0.675508,0.339117,0.875127,0.813565,0.283068,0.918866,0.767866,0.277008,0.83244,0.199114,0.685641,0.893268,0.569521,0.832893,0.49963,0.341911,0.449007,0.900419,0.666841,0.920586,0.324752,0.859477,0.865391,0.696689,0.0382224,0.968308,0.577905,0.037342,0.771825,0.461713,0.826412,0.793989,0.995365,0.993671,0.74251,0.888702,0.644601,0.179786,0.263329,0.0365677,0.286174,0.483947,0.915813,0.629197,0.669572,0.367318,0.537526,0.306706,0.718446,0.282475,0.333265,0.732723,0.377106,0.950527,0.60053,0.0997452,0.872257,0.562043,0.0570574,0.5515,0.328045,0.700108,0.01271,0.71575,0.171048,0.61218,0.109358,0.083984,0.0120289,0.614004,0.685814,0.335584,0.701607,0.181681,0.629588,0.990058,0.864593,0.233648,0.951523,0.979274,0.875508,0.497282,0.767342,0.305403,0.62819,0.956979,0.652696,0.75232,0.707163,0.462205,0.0460159,0.719669,0.930083,0.094984,0.145328,0.015973,0.00489634,0.894187,0.122025,0.509237,0.611324,0.46637,0.966202,0.0285234,0.844792,0.222598,0.0411473,0.0611945,0.0179485,0.688032,0.518214,0.721333,0.776421,0.911884,0.268933,0.110131,0.57435,0.849482,0.00607395,0.457218,0.911118,0.208133,0.829695,0.651956,0.237751,0.0258658,0.648456,0.608905,0.0821012,0.537708,0.0345449,0.399039,0.108971,0.344209,0.183391,0.172131,0.120523,0.578957,0.417322,0.567802,0.559506,0.727695,0.15973,0.168834,0.711944,0.515623,0.938548,0.255359,0.306427,0.526448,0.389771,0.0232706,0.36385,0.924208,0.354849,0.431254,0.963306,0.450346,0.371252,0.62481,0.307888,0.456604,0.400089,0.193836,0.0243628,0.0311697,0.284603,0.350988,0.705675,0.320852,0.00551456,0.594273,0.578314,0.470101,0.820697,0.326161,0.52453,0.140821,0.0035888,0.543677,0.780555,0.973449,0.704786,0.520302,0.762583,0.446954,0.10569,0.687369,0.800701,0.1214,0.274942,0.23178,0.841469,0.846555,0.272685,0.548949,0.788259,0.546927,0.0712173,0.727904,0.29519,0.246143,0.357882,0.661854,0.903945,0.912246,0.631042,0.795577,0.0181742,0.0175506,0.178193,0.677932,0.390603,0.675838,0.0182373,0.862678,0.21315,0.697546,0.7932,0.908744,0.12279,0.064814,0.616018,0.00545919,0.406884,0.365833,0.20592,0.0368925,0.165135,0.38293,0.808801,0.451755,0.694777,0.112039,0.238977,0.62921,0.0728353,0.877764,0.69753,0.287907,0.662939,0.109877,0.412687,0.888751,0.507083,0.22805,0.947102,0.915245,0.984742,0.108544,0.827227,0.540882,0.331123,0.360774,0.121961,0.184833,0.695219,0.106496,0.369911,0.57782,0.408645,0.952467,0.215129,0.604029,0.145182,0.726842,0.988158,0.165859,0.547616,0.59161,0.936244,0.0654936,0.172406,0.486869,0.0296726,0.807848,0.908565,0.153348,0.261655,0.163782,0.107147,0.77721,0.83205,0.934689,0.469087,0.0585461,0.970193,0.816983,0.601756,0.19154,0.472553,0.965829,0.129815,0.060216,0.515527,0.709661,0.929281,0.0369105,0.922213,0.755785,0.333747,0.867401,0.263106,0.898934,0.0903019,0.109256,0.499858,0.300596,0.52716,0.648193,0.92592,0.389214,0.750083,0.11743,0.817064,0.595121,0.501621,0.599578,0.709289,0.558791,0.94432,0.590201,0.220441,0.629447,0.877117,0.850577,0.860465,0.694345,0.488412,0.719103,0.126623,0.535233,0.405813,0.170372,0.138893,0.51012,0.695509,0.86619,0.700119,0.924487,0.68278,0.98614,0.883383,0.383878,0.625717,0.920628,0.531334,0.768199,0.288309,0.151537,0.604859,0.372293,0.296279,0.7508,0.782893,0.296618,0.198444,0.494821,0.638175,0.570237,0.872042,0.896568,0.127177,0.782857,0.0112165,0.384522,0.703476,0.546554,0.0483247,0.942745,0.4484,0.877074,0.310727,0.737903,0.328033,0.327534,0.70949,0.505601,0.421126,0.688846,0.427105,0.789941,0.419241,0.390239,0.738028,0.303891,0.872668,0.784028,0.0193081,0.833419,0.774944,0.127322,0.621341,0.455947,0.947211,0.136802,0.207179,0.703315,0.1234,0.952713,0.112358,0.309382,0.991645,0.943356,0.98799,0.987395,0.0583885,0.495038,0.775051,0.809167,0.510341,0.0240203,0.462499,0.565113,0.382468,0.370622,0.71911,0.632276,0.454644,0.867783,0.182059,0.0604697,0.578435,0.661477,0.234505,0.188926,0.854833,0.158346,0.859438,0.252216,0.999145,0.885559,0.164004,0.236048,0.363549,0.388714,0.858026,0.146557,0.71888,0.942336,0.291376,0.691816,0.940679,0.802659,0.16481,0.792528,0.545822,0.164515,0.205416,0.92969,0.143247,0.579239,0.334358,0.293734,0.198748,0.646914,0.789439,0.26882,0.387349,0.62853,0.953224,0.473286,0.878287,0.940486,0.633225,0.709206,0.0486035,0.581269,0.768368,0.296106,0.028065,0.172473,0.224129,0.326004,0.336732,0.656853,0.478761,0.46606,0.956532,0.684211,0.830641,0.786816,0.128445,0.244344,0.803079,0.924487,0.487165,0.224723,0.123327,0.210206,0.061983,0.428831,0.914633,0.625161,0.740057,0.130027,0.664481,0.233159,0.638449,0.682366,0.817664,0.875392,0.257611,0.463259,0.469741,0.0470094,0.19806,0.48623,0.30943,0.731032,0.410093,0.594176,0.266697,0.576669,0.70211,0.41551,0.96677,0.493029,0.975715,0.802746,0.880348,0.603552,0.88119,0.254524,0.755381,0.0793421,0.119584,0.388793,0.546344,0.603463,0.623786,0.105216,0.222706,0.945407,0.573797,0.922861,0.631682,0.755311,0.556048,0.50006,0.96423,0.0838157,0.272501,0.18787,0.577691,0.897596,0.966546,0.263594,0.972222,0.596897,0.890711,0.214306,0.0557508,0.0303281,0.035376,0.549235,0.849352,0.551001,0.90049,0.525349,0.539784,0.981331,0.914197,0.707119,0.337361,0.89219,0.764933,0.138352,0.353741,0.776894,0.921303,0.617494,0.153739,0.857125,0.96222,0.105646,0.676378,0.719308,0.197745,0.963853,0.730377,0.627316,0.0180783,0.376785,0.13061,0.811161,0.199282,0.104985,0.777152,0.680969,0.474822,0.489178,0.354672,0.944396,0.847153,0.136982,0.568449,0.0547243,0.778002,0.477735,0.563205,0.320587,0.421616,0.276536,0.546192,0.651996,0.574026,0.903392,0.701431,0.6228,0.631223,0.583746,0.849882,0.4251,0.215487,0.647255,0.963207,0.750413,0.686411,0.698503,0.437538,0.889283,0.943705,0.903597,0.0169463,0.367444,0.654879,0.590442,0.851674,0.514278,0.468332,0.498227,0.755277,0.0330497,0.0838954,0.809306,0.737603,0.373357,0.355299,0.823022,0.185643,0.611422,0.571696,0.743427,0.620858,0.348027,0.269678,0.915194,0.916573,0.260247,0.522439,0.199266,0.999589,0.161435,0.584569,0.000633001,0.900798,0.0747434,0.478545,0.289009,0.894435,0.0669634,0.584081,0.950621,0.43823,0.138841,0.685845,0.569874,0.659359,0.840267,0.172237,0.31198,0.140626,0.495892,0.212953,0.46568,0.900677,0.936319,0.846863,0.629245,0.903636,0.214523,0.471569,0.634759,0.0280678,0.820662,0.270749,0.434371,0.778201,0.542338,0.913763,0.201617,0.414214,0.920328,0.330948,0.692759,0.93396,0.0363104,0.932146,0.444705,0.697726,0.355886,0.609451,0.84289,0.156822,0.516553,0.222116,0.371394,0.0735759,0.516148,0.101531,0.699269,0.3598,0.919848,0.02575,0.292618,0.853681,0.952528,0.111607,0.365667,0.0627685,0.772565,0.133399,0.822417,0.374898,0.733727,0.469542,0.115828,0.777908,0.409434,0.738187,0.199064,0.88328,0.575217,0.325357,0.38587,0.944845,0.43281,0.506243,0.247533,0.75797,0.0723552,0.468136,0.450766,0.792706,0.129187,0.159961,0.129573,0.494603,0.369199,0.191838,0.807693,0.236439,0.507564,0.886228,0.303677,0.653156,0.0678204,0.773555,0.165292,0.714232,0.291818,0.62885,0.878443,0.9518,0.922626,0.408865,0.594157,0.798738,0.0725176,0.0549518,0.643114,0.496488,0.770802,0.429967,0.461082,0.711724,0.748369,0.026559,0.88275,0.948637,0.563956,0.221654,0.151424,0.217779,0.935801,0.945086,0.0582318,0.588978,0.353411,0.824687,0.438876,0.0439237,0.743753,0.783403,0.500639,0.63904,0.813361,0.280842,0.631894,0.143138,0.55598,0.783166,0.459484,0.541832,0.635371,0.893771,0.675256,0.782589,0.407176,0.668417,0.357082,0.934518,0.825722,0.772643,0.943017,0.376789,0.319689,0.788244,0.864093,0.425783,0.0564132,0.635333,0.368054,0.780539,0.855675,0.963986,0.604025,0.0513909,0.0905744,0.938252,0.160256,0.820056,0.0363941,0.94501,0.170906,0.524798,0.899077,0.397036,0.636839,0.250498,0.709747,0.696496,0.704182,0.359164,0.156296,0.79395,0.102405,0.711167,0.783711,0.354095,0.669683,0.75133,0.0905833,0.89391,0.0444841,0.470756,0.752283,0.777866,0.827646,0.532856,0.831219,0.363676,0.818803,0.304427,0.941252,0.958173,0.789089,0.00965846,0.905075,0.715301,0.627575,0.246222,0.0539302,0.881272,0.595239,0.416,|0.232899,0.485944,0.622659,0.82686,0.18629,0.168095,0.754733,0.115598,0.790861,0.461575,0.720082,0.150859,0.0997197,0.256563,0.399786,0.817575,0.79134,0.443537,0.035706,0.699943,0.68719,0.326843,0.741823,0.935636,0.377748,0.226562,0.164976,0.672308,0.941527,0.39061,0.319258,0.957791,0.717721,0.376481,0.961467,0.476165,0.921125,0.737145,0.707329,0.183236,0.889491,0.97597,0.647801,0.899172,0.133006,0.620869,0.469759,0.993601,0.691154,0.461318,0.80985,0.689813,0.978894,0.848179,0.332725,0.504516,0.679651,0.638067,0.280166,0.391845,0.950217,0.465882,0.0665362,0.831101,0.832135,0.957945,0.818061,0.853492,0.235374,0.262747,0.309516,0.733913,0.206315,0.718378,0.483514,0.102691,0.411894,0.484678,0.658027,0.550806,0.21479,0.965671,0.749218,0.034569,0.0269674,0.0319288,0.392178,0.78447,0.96523,0.304573,0.0825589,0.801158,0.507145,0.636114,0.453657,0.85354,0.227015,0.57817,0.978261,0.691341,0.312554,0.859037,0.127383,0.353789,0.483151,0.0264987,0.414137,0.0142856,0.205132,0.707785,0.710262,0.849716,0.616977,0.423543,0.160455,0.0483626,0.349187,0.317191,0.977325,0.125591,0.54873,0.471252,0.667854,0.281103,0.674401,0.588535,0.593016,0.135708,0.714535,0.13199,0.0778531,0.273705,0.370688,0.178554,0.424705,0.673118,0.682046,0.301051,0.225547,0.539236,0.388957,0.897043,0.552855,0.923221,0.55294,0.813999,0.315475,0.31424,0.142729,0.0245802,0.0918685,0.858381,0.769356,0.596878,0.380007,0.930065,0.479194,0.964461,0.18096,0.152586,0.831652,0.692097,0.834168,0.184061,0.852945,0.0174782,0.439675,0.930708,0.537525,0.816952,0.789221,0.97569,0.281706,0.242027,0.950908,0.118398,0.0748402,0.0676618,0.569961,0.554874,0.683168,0.369253,0.0392077,0.0344877,0.6038,0.255736,0.105687,0.337475,0.912501,0.493267,0.259983,0.344552,0.68564,0.410012,0.939489,0.672506,0.375368,0.675518,0.403786,0.842352,0.471956,0.865224,0.621621,0.240454,0.87116,0.927013,0.651764,0.0314842,0.758565,0.938525,0.64266,0.0722346,0.980971,0.642492,0.512339,0.786039,0.301158,0.70437,0.115054,0.0159116,0.588557,0.91481,0.828035,0.123425,0.620627,0.97756,0.736662,0.777644,0.729804,0.993225,0.165073,0.586984,0.614762,0.805629,0.947909,0.900762,0.561918,0.583716,0.583034,0.422901,0.458288,0.813634,0.588978,0.120192,0.615019,0.293213,0.366049,0.817378,0.530811,0.785113,0.372659,0.44621,0.775065,0.809033,0.551274,0.178134,0.579126,0.789042,0.0417714,0.491291,0.998404,0.824609,0.68104,0.0676025,0.983155,0.962399,0.846858,0.928063,0.166335,0.319744,0.543745,0.112657,0.990287,0.171811,0.862918,0.385911,0.185974,0.767334,0.019165,0.0954559,0.989696,0.00786752,0.08834,0.881638,0.975094,0.223102,0.991677,0.0943006,0.98124,0.0023874,0.679344,0.342196,0.584066,0.226375,0.252169,0.24477,0.415804,0.490461,0.24534,0.227814,0.0497052,0.5375,0.0466948,0.0507946,0.131577,0.202915,0.996583,0.676315,0.657069,0.350973,0.681442,0.852223,0.00166345,0.876333,0.130635,0.861182,0.216022,0.25721,0.112564,0.547621,0.387942,0.256448,0.984655,0.116919,0.979168,0.996976,0.693712,0.448768,0.607565,0.446231,0.08799,0.549175,0.998875,0.530823,0.291372,0.41411,0.56611,0.575098,0.913038,0.907633,0.841565,0.937489,0.965801,0.772877,0.258887,0.0456164,0.218701,0.85616,0.36419,0.952868,0.561912,0.270889,0.544085,0.20361,0.222847,0.279845,0.220876,0.16276,0.473848,0.762305,0.10718,0.427419,0.434215,0.722128,0.814835,0.352861,0.56338,0.486937,0.56634,0.550211,0.558746,0.734911,0.385475,0.816076,0.705298,0.829441,0.276129,0.0265549,0.17928,0.884601,0.568795,0.682428,0.421939,0.663966,0.239451,0.401418,0.980407,0.484855,0.541192,0.486018,0.848994,0.744545,0.402643,0.680731,0.519599,0.64551,0.20545,0.991144,0.830773,0.843433,0.401778,0.343548,0.40325,0.575392,0.47494,0.497826,0.876029,0.0696184,0.203583,0.873659,0.3286,0.747172,0.23335,0.289403,0.0128053,0.184746,0.565735,0.194196,0.806355,0.601807,0.463513,0.0174568,0.418244,0.438519,0.355143,0.67219,0.760698,0.276386,0.966317,0.937137,0.644436,0.54284,0.376238,0.0466753,0.193529,0.517081,0.638481,0.851176,0.321468,0.370795,0.959601,0.475895,0.873716,0.502886,0.11279,0.895217,0.766567,0.986258,0.46143,0.149554,0.997897,0.00227702,0.541656,0.70081,0.342311,0.1926,0.175229,0.810359,0.194064,0.521677,0.239015,0.726027,0.6713,0.523808,0.322468,0.103784,0.511128,0.270371,0.91896,0.27366,0.482851,0.951333,0.866906,0.486148,0.641972,0.736846,0.270535,0.33178,0.724645,0.687123,0.362904,0.466388,0.642551,0.0979161,0.849635,0.0297518,0.729854,0.267435,0.651655,0.293413,0.581556,0.61531,0.219843,0.535585,0.237572,0.765858,0.762289,0.597794,0.121539,0.866526,0.546551,0.175234,0.0147662,0.60686,0.459316,0.338224,0.0953615,0.41576,0.818842,0.367806,0.537895,0.0935122,0.087689,0.876997,0.810161,0.318437,0.348326,0.980749,0.46555,0.579238,0.0430126,0.699292,0.767795,0.935716,0.411708,0.26662,0.00973231,0.462729,0.298533,0.637111,0.984,0.368243,0.215397,0.214861,0.593641,0.637792,0.374961,0.713536,0.201804,0.689564,0.104205,0.826575,0.370752,0.268295,0.470423,0.528328,0.767022,0.329769,0.834059,0.200246,0.138926,0.445747,0.164249,0.729469,0.155312,0.313352,0.965274,0.701998,0.330102,0.302504,0.754675,0.0873696,0.765742,0.321803,0.555821,0.510645,0.416347,0.968088,0.707464,0.94869,0.489759,0.0945616,0.357404,0.0869946,0.64458,0.327794,0.615451,0.369683,0.41434,0.145184,0.0916948,0.691443,0.415116,0.866987,0.492808,0.816961,0.852836,0.231818,0.12296,0.20886,0.205176,0.148726,0.469389,0.180653,0.13024,0.845042,0.633576,0.299586,0.130332,0.71483,0.327564,0.490978,0.0428049,0.684166,0.689601,0.0565849,0.92575,0.937379,0.668735,0.775393,0.0507346,0.273778,0.0854575,0.50554,0.506166,0.494107,0.913447,0.331039,0.738173,0.660534,0.0235887,0.0935627,0.563495,0.0123375,0.536726,0.509999,0.0443503,0.0473617,0.0127149,0.222934,0.43768,0.734543,0.0842025,0.444601,0.937072,0.211252,0.0829145,0.836522,0.0255994,0.207245,0.60512,0.0931289,0.44426,0.796448,0.434235,0.466046,0.980693,0.509105,0.149794,0.964679,0.666854,0.335748,0.723463,0.500418,0.405035,0.974454,0.145074,0.776425,0.878846,0.44308,0.962224,0.129613,0.140055,0.714609,0.0363806,0.62635,0.0861319,0.48137,0.209583,0.522717,0.902588,0.298068,0.0179607,0.993827,0.490993,0.251894,0.662029,0.758267,0.900794,0.59696,0.272265,0.710062,0.651749,0.192186,0.965385,0.141718,0.745627,0.5412,0.60757,0.673428,0.112257,0.823089,0.212662,0.183033,0.0153464,0.869955,0.265386,0.798614,0.322044,0.128797,0.656877,0.52427,0.368011,0.437822,0.533122,0.793245,0.830445,0.299727,0.698065,0.764364,0.062128,0.923221,0.684706,0.93236,0.68385,0.45419,0.116861,0.834087,0.595167,0.940845,0.483583,0.42932,0.821346,0.571404,0.71869,0.457151,0.547518,0.540694,0.26754,0.332511,0.455603,0.173944,0.743423,0.760679,0.499195,0.0876035,0.321612,0.777202,0.970404,0.573355,0.0909231,0.563426,0.131731,0.587139,0.427841,0.947564,0.0527092,0.157285,0.551039,0.188877,0.626836,0.431692,0.81912,0.0984407,0.21964,0.590732,0.466206,0.13816,0.907318,0.471864,0.200232,0.494948,0.981783,0.541713,0.825595,0.210483,0.313048,0.732947,0.00814557,0.480631,0.643683,0.825869,0.775302,0.26193,0.326947,0.896545,0.40545,0.486925,0.878322,0.861257,0.119787,0.802464,0.692518,0.454985,0.610418,0.730671,0.0345982,0.0455884,0.199051,0.13425,0.547817,0.312769,0.299209,0.679202,0.942214,0.925596,0.059719,0.467548,0.908423,0.435278,0.584326,0.792055,0.519487,0.991403,0.876284,0.556802,0.658127,0.936455,0.787235,0.90716,0.332289,0.936335,0.638606,0.575955,0.581411,0.204826,0.270859,0.382732,0.442856,0.725922,0.18155,0.666316,0.0815574,0.240853,0.513895,0.452823,0.153455,0.89593,0.75071,0.798144,0.282792,0.387605,0.303067,0.0267434,0.800955,0.716723,0.385211,0.170112,0.890017,0.0278776,0.0142192,0.71192,0.0571601,0.305149,0.530184,0.0952995,0.492943,0.587622,0.592341,0.523956,0.742851,0.546716,0.0712683,0.953614,0.547599,0.460389,0.666261,0.00282222,0.635568,0.545023,0.83581,0.236792,0.691416,0.017962,0.143981,0.0301175,0.652826,0.966055,0.183681,0.336629,0.913875,0.034979,0.0761848,0.480228,0.690596,0.475749,0.618648,0.841099,0.163047,0.189198,0.618554,0.941938,0.308426,0.569246,0.488325,0.0857795,0.564819,0.597845,0.812783,0.65723,0.786737,0.438605,0.730563,0.712064,0.958478,0.389977,0.147378,0.76541,0.415828,0.224573,0.641784,0.457249,0.0260257,0.187419,0.101256,0.603774,0.424188,0.961449,0.177283,0.202098,0.952731,0.685031,0.406944,0.702216,0.350559,0.797737,0.656465,0.0300319,0.683126,0.755439,0.188594,0.0715076,0.960347,0.0798004,0.540299,0.945263,0.666152,0.404329,0.825856,0.170488,0.956785,0.714545,0.212766,0.817113,0.122853,0.0568624,0.994572,0.190364,0.936948,0.2216,0.100656,0.944466,0.593699,0.834743,0.333605,0.387946,0.361156,0.338834,0.952572,0.738775,0.73906,0.44798,0.965654,0.938434,0.406261,0.256339,0.864711,0.516843,0.390293,0.521592,0.451421,0.795066,0.0433091,0.309894,0.77339,0.197222,0.488386,0.693664,0.901189,0.971825,0.880405,0.163525,0.485095,0.41494,0.636226,0.413005,0.790581,0.292838,0.00671452,0.894365,0.873664,0.0696956,0.629446,0.846287,0.834286,0.349071,0.68739,0.0713039,0.280176,0.255145,0.00783074,0.134366,0.140416,0.080013,0.870106,0.535311,0.646702,0.352584,0.961971,0.865011,|0.000889361,0.724941,0.577565,0.39335,0.302732,0.678913,0.536507,0.362368,0.579166,0.445458,0.312062,0.847914,0.0898463,0.785792,0.459934,0.942499,0.0359084,0.561533,0.768502,0.534209,0.0979169,0.193607,0.547271,0.19924,0.52928,0.651576,0.0431064,0.994574,0.520991,0.204461,0.483909,0.17905,0.567482,0.565396,0.57127,0.0614746,0.435916,0.578992,0.0148277,0.423424,0.650039,0.437213,0.251277,0.435096,0.20214,0.225628,0.647038,0.227671,0.992101,0.493689,0.195841,0.191818,0.289264,0.113836,0.105885,0.208437,0.870796,0.670263,0.33535,0.0219957,0.785976,0.4776,0.442797,0.427671,0.190616,0.591505,0.170521,0.362613,0.420815,0.514558,0.584157,0.355935,0.391501,0.661522,0.971727,0.696364,0.70181,0.0721072,0.790488,0.2773,0.0776128,0.698427,0.92278,0.111717,0.630217,0.492841,0.175971,0.213805,0.947962,0.0966181,0.0499365,0.529258,0.957711,0.426319,0.885389,0.723924,0.931782,0.933676,0.0969073,0.672568,0.813577,0.604926,0.704277,0.820049,0.620119,0.29192,0.421814,0.843938,0.721429,0.534365,0.996837,0.242319,0.935289,0.989765,0.595314,0.67523,0.974843,0.302429,0.189411,0.899448,0.838481,0.425956,0.807027,0.471708,0.252541,0.714686,0.1267,0.463493,0.479756,0.880132,0.874108,0.509689,0.0921319,0.283828,0.343763,0.520122,0.269127,0.679719,0.972911,0.268256,0.404043,0.419189,0.392819,0.791953,0.847789,0.833705,0.236294,0.583573,0.974285,0.425273,0.774253,0.263408,0.106668,0.753709,0.38035,0.067071,0.080358,0.504672,0.927619,0.712287,0.496199,0.302557,0.853608,0.556422,0.267167,0.805817,0.643252,0.44926,0.288903,0.419655,0.678515,0.59188,0.148156,0.254262,0.76496,0.746272,0.546172,0.184077,0.32067,0.0561875,0.921836,0.731765,0.522349,0.215856,0.529586,0.551263,0.153152,0.385759,0.687267,0.78611,0.883159,0.920761,0.0479169,0.17866,0.132658,0.321913,0.786963,0.404545,0.41863,0.733107,0.814839,0.724421,0.746355,0.404506,0.767895,0.207998,0.642159,0.0928876,0.60214,0.985334,0.881402,0.05612,0.921572,0.975457,0.0010854,0.156169,0.747732,0.5513,0.925494,0.147926,0.211136,0.135766,0.565868,0.657805,0.121888,0.62846,0.656153,0.82752,0.302099,0.418224,0.0277479,0.488989,0.386717,0.762287,0.57511,0.602876,0.839545,0.950355,0.494273,0.821245,0.345327,0.199756,0.100174,0.360822,0.372385,0.847129,0.830439,0.561532,0.700185,0.702038,0.26362,0.564502,0.673692,0.224286,0.958437,0.176047,0.514601,0.226426,0.305411,0.138385,0.0964363,0.0261357,0.0888962,0.17828,0.0909566,0.943245,0.846607,0.207413,0.858883,0.995163,0.704654,0.366737,0.254889,0.275179,0.683174,0.67225,0.795599,0.55796,0.962505,0.959346,0.0880781,0.882809,0.198731,0.560384,0.45118,0.149728,0.701933,0.626782,0.995991,0.701574,0.775123,0.445489,0.563163,0.723373,0.764395,0.395188,0.173198,0.563444,0.673324,0.174714,0.698706,0.894791,0.327656,0.368024,0.120421,0.560513,0.699669,0.255121,0.306172,0.533079,0.972159,0.929,0.693991,0.134296,0.72116,0.907167,0.379336,0.846054,0.0932947,0.0383514,0.255636,0.192052,0.61361,0.481486,0.325561,0.0788912,0.570432,0.32512,0.802255,0.116403,0.024673,0.360325,0.837031,0.252169,0.891792,0.790122,0.856041,0.41458,0.72835,0.831666,0.538016,0.0829822,0.690062,0.131316,0.228921,0.41254,0.130366,0.471445,0.00830692,0.618951,0.0987291,0.871805,0.669382,0.813252,0.0642938,0.882462,0.725721,0.469706,0.167423,0.628901,0.616131,0.75421,0.0550045,0.417683,0.601325,0.448725,0.0993696,0.314889,0.526772,0.0885162,0.933666,0.814758,0.203922,0.256462,0.914593,0.357627,0.704892,0.10898,0.589835,0.525308,0.896846,0.220258,0.436589,0.226857,0.585939,0.908523,0.0256171,0.570903,0.782907,0.496105,0.463376,0.0510401,0.88056,0.576669,0.973303,0.374945,0.133385,0.932405,0.901199,0.576918,0.23108,0.271516,0.0573158,0.789342,0.385535,0.10571,0.0654791,0.667848,0.599507,0.352922,0.255161,0.469325,0.0942934,0.672096,0.838688,0.483687,0.535643,0.143992,0.775234,0.0130337,0.347961,0.196441,0.791242,0.19704,0.83748,0.996175,0.246251,0.673806,0.189329,0.122429,0.14876,0.74481,0.423605,0.980738,0.46079,0.374243,0.0516662,0.645194,0.388982,0.400889,0.940878,0.743083,0.0813848,0.604685,0.832612,0.2443,0.653832,0.0376083,0.508879,0.546152,0.251741,0.328467,0.755844,0.573529,0.231812,0.143812,0.172725,0.0985862,0.423733,0.530465,0.667937,0.0238258,0.143853,0.532372,0.563365,0.81562,0.378347,0.800077,0.64995,0.376233,0.857305,0.667015,0.0660064,0.213037,0.90408,0.0950577,0.938316,0.795763,0.69826,0.968956,0.595424,0.149693,0.926292,0.0118833,0.00843579,0.537423,0.854226,0.205731,0.272605,0.341764,0.948445,0.741195,0.369703,0.177192,0.579316,0.983954,0.752353,0.870485,0.0675375,0.866063,0.949188,0.775923,0.0361152,0.773152,0.644509,0.809584,0.891378,0.0883621,0.844487,0.302538,0.180285,0.633842,0.0622303,0.425545,0.899536,0.460142,0.857839,0.19401,0.72177,0.27942,0.614192,0.464059,0.338705,0.709593,0.457559,0.938355,0.762016,0.967814,0.173046,0.149786,0.00199807,0.766671,0.994861,0.954328,0.821351,0.756151,0.720959,0.777982,0.290673,0.111221,0.721411,0.692025,0.692791,0.800732,0.355513,0.959551,0.802551,0.143918,0.246046,0.577736,0.0303565,0.470068,0.147898,0.20669,0.3223,0.560103,0.449336,0.85888,0.317359,0.279674,0.945271,0.155255,0.969734,0.856002,0.477283,0.716578,0.401237,0.159404,0.268695,0.0780939,0.928526,0.130936,0.581945,0.334571,0.430479,0.471471,0.498563,0.752779,0.921494,0.5033,0.488997,0.291928,0.592171,0.411381,0.0447085,0.318191,0.42049,0.725753,0.46999,0.426002,0.22309,0.248179,0.640604,0.80597,0.254669,0.450974,0.994505,0.28926,0.12383,0.9392,0.177511,0.0260763,0.90408,0.873462,0.659187,0.560621,0.152789,0.897321,0.377166,0.633026,0.373953,0.969349,0.728533,0.1222,0.461827,0.590866,0.573229,0.15682,0.334023,0.433701,0.089659,0.833488,0.869215,0.518875,0.0516702,0.607316,0.123381,0.891832,0.0796164,0.624285,0.843108,0.942455,0.771007,0.3554,0.1165,0.919871,0.164415,0.397263,0.335342,0.187669,0.140901,0.398146,0.0614496,0.568215,0.349172,0.724826,0.120258,0.387719,0.472819,0.012615,0.172111,0.456392,0.826957,0.574799,0.0162716,0.244041,0.0993024,0.815002,0.67876,0.859956,0.205126,0.844089,0.51811,0.31249,0.739148,0.83348,0.0571045,0.89776,0.823616,0.38522,0.243061,0.107083,0.461535,0.249024,0.744185,0.755274,0.930655,0.799866,0.642633,0.791272,0.3994,0.173031,0.460515,0.204821,0.631585,0.0710584,0.792697,0.471109,0.198057,0.221676,0.317345,0.233592,0.247454,0.775969,0.0128509,0.89711,0.987687,0.541741,0.764355,0.887183,0.812508,0.38884,0.298739,0.413476,0.695496,0.462037,0.637367,0.773925,0.384843,0.377336,0.803148,0.210604,0.0649475,0.572483,0.140132,0.540974,0.169663,0.62919,0.577249,0.782138,0.04846,0.739462,0.783526,0.825532,0.408728,0.832312,0.127783,0.570269,0.607443,0.67774,0.845578,0.544578,0.394745,0.662973,0.865172,0.21967,0.852758,0.392798,0.810342,0.589521,0.791615,0.680493,0.257083,0.399838,0.331194,0.998713,0.971128,0.318635,0.458568,0.542716,0.341592,0.266368,0.243019,0.472887,0.449608,0.901535,0.777829,0.656084,0.429355,0.0211971,0.506832,0.393778,0.760532,0.581265,0.89282,0.220776,0.142753,0.758878,0.440374,0.885904,0.735139,0.924012,0.956918,0.826596,0.0504019,0.942222,0.095463,0.741448,0.254571,0.863204,0.22677,0.590279,0.640158,0.168472,0.575567,0.924071,0.953833,0.195393,0.0659862,0.975822,0.191648,0.247452,0.638518,0.182594,0.312016,0.273629,0.818484,0.112571,0.15684,0.312523,0.811535,0.0794415,0.213697,0.997194,0.605958,0.083787,0.783061,0.458216,0.616815,0.464042,0.530886,0.245776,0.17295,0.457572,0.881849,0.0868864,0.592854,0.545445,0.676798,0.0484767,0.531205,0.486829,0.893743,0.901945,0.735719,0.143949,0.449899,0.776363,0.0309831,0.82263,0.0244051,0.417463,0.370702,0.853231,0.652958,0.31988,0.288065,0.416187,0.565242,0.18677,0.983401,0.224814,0.157697,0.0121366,0.128275,0.295252,0.553186,0.61257,0.007146,0.492167,0.844966,0.486555,0.213629,0.44121,0.507743,0.865783,0.597377,0.114124,0.680144,0.930747,0.716384,0.473319,0.648994,0.279437,0.959262,0.340383,0.234508,0.27061,0.755981,0.00441635,0.92513,0.00342309,0.126233,0.220185,0.726755,0.494864,0.10704,0.660251,0.0314775,0.508684,0.0522518,0.301744,0.637845,0.0496073,0.742866,0.244493,0.893243,0.423055,0.330031,0.412851,0.738154,0.779707,0.153794,0.488708,0.725917,0.0960793,0.843106,0.186369,0.791143,0.293552,0.989789,0.884122,0.339105,0.776325,0.558365,0.302795,0.626436,0.820148,0.867531,0.751314,0.486488,0.292521,0.148754,0.418309,0.292184,0.503469,0.142075,0.257273,0.329878,0.03869,0.725792,0.579924,0.0867411,0.145467,0.199259,0.869424,0.241705,0.74294,0.99172,0.629293,0.0963459,0.985347,0.229827,0.35294,0.375742,0.636735,0.544564,0.146746,0.641805,0.358818,0.824299,0.217504,0.489449,0.495454,0.490196,0.762834,0.0345624,0.600538,0.102914,0.541569,0.462772,0.689126,0.522856,0.633213,0.712513,0.567655,0.6727,0.990828,0.546961,0.663812,0.687299,0.256545,0.508449,0.553182,0.816895,0.320524,0.0832173,0.120161,0.287887,0.502389,0.475029,0.825002,0.209546,0.41493,0.569633,0.272492,0.974044,0.28453,0.674203,0.0290138,0.771804,0.501602,0.115517,0.199883,0.45532,0.560993,0.969462,0.343679,0.0916461,0.0464028,0.559436,0.803404,0.767339,0.545903,0.191463,0.659051,0.948553,0.948095,0.639495,0.731801,|0.731681,0.836912,0.449753,0.0859769,0.266177,0.768546,0.551132,0.756101,0.0589334,0.295722,0.0163199,0.203604,0.151341,0.317609,0.897276,0.556424,0.411828,0.434793,0.821942,0.187907,0.587932,0.610797,0.832186,0.696977,0.498641,0.817311,0.708436,0.273382,0.949049,0.30869,0.419976,0.558172,0.678395,0.779366,0.800288,0.54216,0.605138,0.970276,0.754929,0.377563,0.173048,0.0371264,0.795515,0.704059,0.132397,0.820105,0.605052,0.427346,0.0671751,0.67934,0.794249,0.26839,0.573028,0.091765,0.164901,0.974635,0.691445,0.196632,0.0558002,0.47334,0.551331,0.887603,0.269656,0.534069,0.773816,0.321599,0.591588,0.293064,0.719572,0.0621934,0.235429,0.900907,0.906728,0.713431,0.110977,0.0994974,0.0788834,0.111331,0.401034,0.700795,0.496565,0.523272,0.847892,0.854862,0.00823396,0.489535,0.996359,0.40207,0.634034,0.00346899,0.864182,0.74018,0.798654,0.686879,0.238209,0.0539043,0.512807,0.155326,0.804753,0.840658,0.879643,0.111139,0.959063,0.283625,0.762634,0.15445,0.551008,0.151113,0.594741,0.623717,0.283235,0.866467,0.848229,0.672081,0.394499,0.432031,0.286602,0.103401,0.943428,0.791291,0.539743,0.8764,0.0860029,0.526746,0.65253,0.302166,0.206592,0.444321,0.254521,0.768855,0.865359,0.837426,0.37533,0.189161,0.139841,0.461515,0.311469,0.297171,0.419505,0.255369,0.259443,0.0330217,0.806026,0.852738,0.681495,0.449035,0.104221,0.621958,0.881831,0.583575,0.559838,0.24419,0.370726,0.418037,0.310979,0.823078,0.812363,0.844357,0.242461,0.369513,0.36755,0.0840122,0.156518,0.0633128,0.483051,0.773127,0.838274,0.467913,0.542968,0.820236,0.576893,0.115082,0.886294,0.379769,0.22659,0.204993,0.0716699,0.718639,0.407983,0.814352,0.308813,0.929852,0.819278,0.904855,0.641664,0.173316,0.540179,0.300238,0.353648,0.455287,0.427655,0.861469,0.438535,0.0493729,0.571816,0.15848,0.0910389,0.665974,0.652025,0.112867,0.0957063,0.583584,0.195778,0.254196,0.097435,0.845293,0.618251,0.684739,0.337389,0.663836,0.0905179,0.0565954,0.709999,0.409241,0.0463549,0.201022,0.13673,0.544143,0.398773,0.478159,0.912184,0.143562,0.556668,0.694236,0.184192,0.615686,0.234222,0.586444,0.356982,0.803964,0.562838,0.549937,0.147695,0.998687,0.133073,0.787607,0.445509,0.703112,0.0695609,0.729741,0.759982,0.544899,0.263865,0.357166,0.0584388,0.0912346,0.106848,0.762001,0.405101,0.943072,0.196951,0.882836,0.956279,0.789683,0.862354,0.880729,0.328973,0.516223,0.340762,0.98954,0.970213,0.925697,0.565821,0.866342,0.59977,0.33814,0.268074,0.435853,0.272767,0.708613,0.631173,0.663464,0.0256891,0.214538,0.247825,0.132381,0.666083,0.0087285,0.483179,0.520978,0.259434,0.638697,0.3527,0.056742,0.370642,0.699252,0.656264,0.0443758,0.133879,0.707242,0.675958,0.460623,0.673072,0.402351,0.175079,0.383373,0.37091,0.969643,0.459579,0.986478,0.434547,0.611255,0.255253,0.761518,0.900871,0.91715,0.974865,0.691604,0.571491,0.767488,0.985013,0.386848,0.756679,0.729874,0.404057,0.814662,0.648066,0.79102,0.0281493,0.275399,0.607986,0.730351,0.423524,0.337265,0.783622,0.425914,0.259579,0.294124,0.705824,0.76323,0.726479,0.82219,0.87959,0.128575,0.356326,0.476238,0.345778,0.51755,0.940313,0.985689,0.697831,0.623179,0.18176,0.499088,0.346515,0.593901,0.671072,0.23859,0.61326,0.0879617,0.807304,0.746575,0.261495,0.152649,0.8069,0.0838065,0.13934,0.52597,0.523301,0.0558565,0.617589,0.391986,0.119368,0.851117,0.783474,0.380525,0.810954,0.178743,0.397653,0.259202,0.518949,0.13793,0.785057,0.406105,0.779148,0.0842342,0.703109,0.137623,0.222692,0.469398,0.17508,0.84577,0.402647,0.941564,0.119222,0.0834448,0.358136,0.906981,0.59446,0.209949,0.686903,0.640383,0.431803,0.539897,0.915802,0.422058,0.452182,0.344051,0.297916,0.783494,0.0166046,0.034326,0.78684,0.632617,0.0235318,0.898071,0.478178,0.387,0.660248,0.112617,0.171901,0.720854,0.713751,0.737128,0.528038,0.92619,0.781543,0.582653,0.240619,0.566578,0.296571,0.941614,0.637461,0.930236,0.278186,0.559889,0.852853,0.229674,0.338123,0.800879,0.0483652,0.0644009,0.723023,0.931478,0.982391,0.328286,0.205125,0.462764,0.918035,0.363954,0.147711,0.430893,0.337546,0.0493491,0.0451726,0.385248,0.140173,0.969276,0.531507,0.504284,0.0579355,0.462812,0.506664,0.222622,0.951646,0.785418,0.601761,0.0631491,0.641796,0.224795,0.589484,0.991635,0.64819,0.153616,0.526984,0.928873,0.845565,0.429876,0.290717,0.945992,0.636256,0.474774,0.735959,0.344368,0.526409,0.540628,0.0585986,0.877959,0.0139326,0.841873,0.00656843,0.0223321,0.991929,0.0795853,0.531585,0.62921,0.47544,0.192699,0.935427,0.5219,0.756596,0.788426,0.979948,0.139087,0.498253,0.294553,0.988344,0.723533,0.732587,0.00151622,0.101663,0.0993291,0.15042,0.804083,0.967014,0.166767,0.220386,0.256504,0.780928,0.505255,0.666859,0.626378,0.902499,0.556844,0.381335,0.633826,0.92467,0.0524638,0.0203153,0.612238,0.384551,0.116281,0.0066784,0.782415,0.147079,0.225905,0.378454,0.229708,0.914498,0.385059,0.645053,0.136585,0.825332,0.833584,0.315198,0.270023,0.503161,0.272126,0.345222,0.620234,0.517649,0.0399294,0.343706,0.297541,0.927968,0.305251,0.197543,0.667408,0.580916,0.19025,0.0702739,0.195596,0.557524,0.943444,0.716281,0.377645,0.22746,0.856454,0.389316,0.271738,0.0823129,0.533243,0.17498,0.223235,0.670307,0.14491,0.171677,0.228519,0.790514,0.347759,0.891247,0.277558,0.311763,0.947621,0.286898,0.783291,0.892617,0.375925,0.721106,0.82796,0.94285,0.47085,0.621612,0.822783,0.0161872,0.46669,0.850109,0.486124,0.0241659,0.106756,0.539685,0.34565,0.104541,0.0132052,0.365865,0.312422,0.716083,0.579886,0.674288,0.389671,0.970963,0.524275,0.217103,0.2663,0.509335,0.942779,0.639175,0.759213,0.192826,0.541235,0.21697,0.228103,0.919894,0.356354,0.485452,0.487682,0.643582,0.0886567,0.169355,0.374221,0.373483,0.136584,0.73013,0.428515,0.357107,0.441108,0.627293,0.368087,0.570897,0.432525,0.705079,0.41139,0.653911,0.0328343,0.670056,0.228444,0.289096,0.0338008,0.69198,0.909031,0.239864,0.136066,0.00765902,0.818872,0.591971,0.943234,0.385405,0.566225,0.0743091,0.621519,0.969999,0.494407,0.464381,0.121331,0.456171,0.955074,0.580281,0.601083,0.0223577,0.599386,0.5686,0.182352,0.723906,0.945518,0.888272,0.647147,0.398625,0.726281,0.108429,0.342147,0.285103,0.999225,0.690287,0.797799,0.421837,0.722182,0.522103,0.550578,0.0573422,0.736426,0.932488,0.990261,0.986937,0.00575805,0.150472,0.204228,0.899062,0.503081,0.807975,0.863796,0.761315,0.480774,0.201786,0.815297,0.162239,0.712992,0.629507,0.0757346,0.773549,0.840085,0.28021,0.696846,0.0629799,0.00601047,0.811703,0.801062,0.56284,0.0219932,0.11941,0.692101,0.475097,0.522756,0.117148,0.566616,0.994771,0.914726,0.860711,0.121571,0.586316,0.871718,0.0759907,0.286099,0.0574963,0.454425,0.693058,0.51613,0.105007,0.255663,0.107096,0.646176,0.243638,0.0507631,0.238342,0.334299,0.888045,0.91808,0.96648,0.161929,0.103588,0.886706,0.021655,0.358267,0.139848,0.232286,0.75046,0.25441,0.978805,0.771364,0.756596,0.852192,0.454144,0.702288,0.734627,0.417558,0.141246,0.652514,0.0391685,0.929916,0.504461,0.321755,0.0273095,0.132218,0.224503,0.203964,0.636288,0.0914314,0.473791,0.290658,0.41426,0.240364,0.526972,0.180965,0.94053,0.428177,0.579428,0.695166,0.204442,0.892028,0.794569,0.171628,0.627287,0.159663,0.650229,0.0823103,0.731896,0.0852113,0.61319,0.912172,0.363717,0.196347,0.215202,0.172397,0.842472,0.529494,0.415448,0.10691,0.229623,0.842001,0.593395,0.674341,0.685493,0.0401847,0.234463,0.219892,0.921811,0.427455,0.528041,0.879085,0.58572,0.514389,0.816236,0.76093,0.582645,0.084613,0.0382375,0.61527,0.271801,0.806636,0.43923,0.468723,0.783508,0.681845,0.914427,0.45806,0.364184,0.115097,0.174807,0.206898,0.163518,0.719048,0.405467,0.849248,0.126415,0.898306,0.561585,0.966172,0.363796,0.543127,0.391505,0.0642301,0.165987,0.13204,0.710353,0.632911,0.836683,0.221438,0.83736,0.64143,0.103061,0.531575,0.912321,0.961422,0.361719,0.935049,0.0540274,0.160012,0.176741,0.264462,0.414565,0.0305487,0.844403,0.653005,0.00290984,0.477923,0.46514,0.678966,0.418857,0.23943,0.215081,0.76863,0.495084,0.246488,0.771335,0.629297,0.684733,0.82135,0.484853,0.986758,0.108281,0.254968,0.00376171,0.91813,0.0651297,0.185497,0.377776,0.799073,0.890987,0.381516,0.537729,0.345478,0.148042,0.271608,0.936863,0.626312,0.270605,0.682697,0.983134,0.354667,0.305844,0.346154,0.792155,0.296771,0.961648,0.576633,0.653723,0.147224,0.430799,0.76636,0.936073,0.745586,0.106011,0.216602,0.546569,0.583378,0.851139,0.208279,0.780122,0.226646,0.691258,0.844706,0.48736,0.257013,0.95238,0.270769,0.0439353,0.0185297,0.167035,0.704813,0.133638,0.430176,0.879987,0.438479,0.514544,0.202889,0.730573,0.864699,0.0203585,0.428427,0.68092,0.264231,0.570287,0.0956739,0.883019,0.927403,0.131682,0.984282,0.279483,0.26296,0.473823,0.158683,0.390514,0.292794,0.87025,0.692575,0.757538,0.79876,0.617475,0.172582,0.589734,0.881329,0.955636,0.0263015,0.39367,0.147238,0.207381,0.867373,0.602598,0.802297,0.0901543,0.393244,0.834112,0.696879,0.0524525,0.177487,0.703395,0.256452,0.630301,0.539292,0.388398,0.733941,0.00937957,0.656127,0.815827,0.284544,0.999515,0.549769,0.464231,0.901424,0.304055,0.852822,0.614618,0.499878,0.461914,0.51432,0.657013,0.598242,0.240894,0.629331,0.635988,0.0801929,|0.106325,0.108667,0.313517,0.591929,0.870724,0.558634,0.0313843,0.549641,0.0884116,0.330903,0.59607,0.999098,0.97021,0.533655,0.419191,0.65823,0.79476,0.257326,0.676247,0.543616,0.135705,0.456165,0.196916,0.200929,0.010986,0.0396965,0.3847,0.935637,0.846523,0.233283,0.96672,0.117855,0.573613,0.620617,0.0293942,0.0467823,0.305278,0.494863,0.148582,0.321269,0.564813,0.839783,0.422521,0.853159,0.525264,0.876239,0.408997,0.880949,0.768439,0.32483,0.866259,0.72387,0.826209,0.110918,0.641336,0.167469,0.777218,0.608095,0.832699,0.333512,0.326634,0.103797,0.520931,0.298719,0.689029,0.770249,0.988399,0.297436,0.606236,0.587784,0.220699,0.369828,0.171178,0.576282,0.250626,0.315018,0.201093,0.297537,0.881526,0.543471,0.392419,0.782072,0.418268,0.612382,0.269581,0.512211,0.852583,0.431298,0.01668,0.740915,0.0497739,0.514843,0.132545,0.9526,0.755891,0.879893,0.593036,0.970167,0.603203,0.135578,0.666159,0.286851,0.435017,0.48953,0.232572,0.236215,0.0669892,0.889221,0.821545,0.586333,0.199302,0.269313,0.391752,0.878288,0.395602,0.756617,0.790621,0.835459,0.768722,0.999003,0.594622,0.43156,0.537924,0.248114,0.942662,0.918641,0.0590562,0.781046,0.300543,0.925547,0.647011,0.905259,0.996247,0.555588,0.548721,0.0698037,0.553081,0.618643,0.352646,0.357024,0.743854,0.525273,0.00141585,0.452953,0.167096,0.383478,0.72343,0.0261951,0.645103,0.242278,0.573548,0.453394,0.314132,0.654129,0.628951,0.214722,0.985927,0.895082,0.486238,0.317261,0.796142,0.787034,0.469485,0.738455,0.036094,0.734452,0.975071,0.776824,0.939979,0.633446,0.401627,0.418951,0.378319,0.946514,0.533809,0.851548,0.131835,0.9384,0.679149,0.101284,0.698949,0.338211,0.217288,0.449548,0.430665,0.951343,0.607049,0.53726,0.381706,0.34614,0.927711,0.0414079,0.549493,0.878349,0.203124,0.701616,0.861926,0.240929,0.712495,0.0143352,0.721783,0.296884,0.800451,0.611226,0.765543,0.613229,0.324511,0.849684,0.847325,0.370462,0.971461,0.857845,0.568651,0.690691,0.224124,0.985257,0.205004,0.730163,0.230589,0.903274,0.582764,0.0291649,0.49999,0.885703,0.888933,0.676669,0.301162,0.494937,0.31693,0.915624,0.372764,0.659787,0.865304,0.515602,0.738499,0.707111,0.792428,0.607658,0.424309,0.149623,0.0847893,0.0306158,0.800573,0.707355,0.768049,0.360144,0.896732,0.0905053,0.237054,0.393128,0.480577,0.583821,0.207566,0.151852,0.815575,0.0498943,0.309542,0.122064,0.0300306,0.718528,0.756299,0.718799,0.0583658,0.0831464,0.482033,0.347836,0.387806,0.0803319,0.447736,0.940937,0.695851,0.982706,0.0828341,0.0736627,0.0738698,0.980832,0.752311,0.370425,0.946089,0.721106,0.520675,0.132499,0.914109,0.809026,0.384407,0.925305,0.979047,0.996278,0.338836,0.0860726,0.327007,0.0818657,0.627377,0.230601,0.981779,0.720719,0.582121,0.849989,0.120764,0.453754,0.831365,0.155948,0.486688,0.94609,0.0940328,0.71381,0.86745,0.174104,0.256922,0.490457,0.972015,0.925228,0.2459,0.853826,0.803055,0.372019,0.0826881,0.454912,0.659115,0.228577,0.920476,0.800519,0.0124432,0.824178,0.532176,0.102,0.709324,0.086354,0.650132,0.349,0.134648,0.0534772,0.84694,0.685649,0.158895,0.815146,0.391405,0.236998,0.820103,0.567237,0.280211,0.199129,0.111418,0.420506,0.192621,0.465166,0.977139,0.898191,0.479245,0.665654,0.479134,0.791581,0.953453,0.794103,0.589321,0.0570506,0.392455,0.281873,0.652724,0.344429,0.618744,0.527567,0.933858,0.312036,0.486262,0.872525,0.878302,0.31437,0.236432,0.447645,0.744848,0.695456,0.789778,0.718592,0.291648,0.127675,0.502634,0.247238,0.179351,0.141625,0.0894093,0.2087,0.613568,0.606314,0.680969,0.670303,0.0676657,0.127132,0.431406,0.44867,0.394823,0.605565,0.945798,0.508172,0.837737,0.687987,0.268602,0.463138,0.277925,0.796899,0.665999,0.769873,0.207973,0.103813,0.78146,0.83053,0.344585,0.385384,0.984401,0.207319,0.61994,0.619145,0.446278,0.692012,0.128719,0.279257,0.589644,0.000622988,0.622649,0.762382,0.763262,0.267316,0.863595,0.808159,0.172632,0.251093,0.889464,0.221159,0.884559,0.336619,0.63991,0.0863616,0.374157,0.638738,0.566885,0.120579,0.645063,0.694618,0.509139,0.847182,0.437138,0.0332251,0.0699959,0.666375,0.777264,0.252789,0.353815,0.398598,0.0592576,0.586873,0.321828,0.795705,0.926629,0.623868,0.926681,0.427288,0.502747,0.27022,0.5015,0.717715,0.557209,0.489335,0.935902,0.297928,0.699901,0.0901307,0.615204,0.223656,0.374262,0.793366,0.720127,0.664097,0.726084,0.703557,0.588649,0.162248,0.843251,0.160877,0.687765,0.432395,0.0291048,0.667937,0.65655,0.523271,0.0972649,0.00602162,0.77709,0.292284,0.521359,0.141775,0.0556882,0.742163,0.0447125,0.885319,0.0195829,0.770012,0.220096,0.43313,0.490924,0.272925,0.226968,0.92011,0.452463,0.728814,0.763921,0.464383,0.777697,0.696412,0.339595,0.471623,0.737493,0.572133,0.0448362,0.170659,0.806211,0.499387,0.862417,0.813635,0.830425,0.0418646,0.822491,0.481468,0.840383,0.99709,0.188909,0.88639,0.476536,0.868113,0.153263,0.865326,0.277932,0.128595,0.904162,0.166792,0.503711,0.415036,0.74904,0.0868542,0.757078,0.532463,0.581779,0.0355443,0.285336,0.437895,0.76103,0.572785,0.159307,0.895103,0.539036,0.105713,0.474173,0.84306,0.297138,0.841006,0.845055,0.89008,0.335097,0.357094,0.144085,0.00615436,0.68963,0.246471,0.663774,0.776618,0.923226,0.846258,0.364539,0.577397,0.721256,0.336785,0.833804,0.927271,0.869301,0.950363,0.503397,0.980611,0.208334,0.378004,0.417639,0.99196,0.708432,0.701957,0.574506,0.452818,0.964194,0.904686,0.21129,0.859193,0.602021,0.914091,0.740671,0.882734,0.587004,0.165393,0.132709,0.189303,0.363621,0.412358,0.726251,0.0649706,0.802928,0.890729,0.831049,0.0205325,0.959924,0.415345,0.900137,0.145084,0.218073,0.502946,0.526477,0.679679,0.524904,0.664064,0.500832,0.01286,0.594665,0.0615885,0.253402,0.598647,0.741377,0.603586,0.162142,0.591233,0.346998,0.922085,0.971871,0.42713,0.446522,0.225951,0.0964883,0.216257,0.204728,0.752963,0.175025,0.703075,0.569296,0.178331,0.645842,0.582342,0.530427,0.224059,0.540891,0.281238,0.409811,0.30022,0.723528,0.0171574,0.979648,0.471925,0.954875,0.422967,0.967882,0.498388,0.481782,0.846253,0.797014,0.315958,0.333359,0.266821,0.826101,0.222552,0.205623,0.290631,0.193227,0.904196,0.689051,0.714094,0.762277,0.652515,0.695417,0.906763,0.89603,0.781057,0.451356,0.16514,0.0363996,0.882799,0.886666,0.127044,0.201165,0.55056,0.104654,0.491919,0.837828,0.417526,0.504566,0.141568,0.907596,0.361079,0.945849,0.803355,0.438696,0.473492,0.84647,0.427333,0.476779,0.360335,0.64649,0.574097,0.965887,0.821617,0.775437,0.806638,0.789226,0.255694,0.493969,0.357614,0.971374,0.482961,0.095631,0.498526,0.140539,0.467144,0.722116,0.406353,0.0436526,0.035123,0.178611,0.743235,0.848945,0.69624,0.413976,0.693615,0.106731,0.580532,0.0814799,0.0790373,0.428197,0.793236,0.00598389,0.902846,0.424794,0.779993,0.235563,0.378196,0.666127,0.782472,0.649241,0.126129,0.71026,0.607747,0.605265,0.712169,0.695388,0.0547124,0.428682,0.0741539,0.153054,0.798976,0.567649,0.639659,0.239872,0.173237,0.0513162,0.979797,0.0824489,0.196433,0.197589,0.136565,0.410976,0.0953438,0.306866,0.178897,0.890127,0.356349,0.614592,0.827177,0.258369,0.791758,0.601665,0.016468,0.89566,0.624225,0.184909,0.951824,0.371561,0.975539,0.170183,0.542687,0.353441,0.194905,0.629792,0.726144,0.0875946,0.907337,0.908535,0.34477,0.395752,0.362739,0.724683,0.724819,0.743532,0.0779636,0.448938,0.516021,0.0257235,0.484852,0.802173,0.525401,0.832864,0.209495,0.685987,0.466323,0.164444,0.467522,0.963005,0.0438825,0.179644,0.306796,0.658277,0.33554,0.0313665,0.758106,0.479334,0.0954467,0.673938,0.244547,0.115571,0.381944,0.645184,0.693947,0.48513,0.0827004,0.894242,0.817161,0.173828,0.0380216,0.775322,0.168212,0.0797932,0.884496,0.951548,0.185734,0.981239,0.181984,0.238321,0.81752,0.481176,0.304762,0.375651,0.881312,0.195852,0.166431,0.630154,0.847863,0.26984,0.525677,0.381041,0.433676,0.572742,0.269989,0.426982,0.254583,0.4963,0.189901,0.722592,0.496791,0.640032,0.483039,0.351542,0.947362,0.827176,0.246094,0.373602,0.33356,0.824837,0.542326,0.11072,0.186703,0.607118,0.931513,0.918047,0.58796,0.48443,0.169575,0.517845,0.726709,0.756981,0.3471,0.876146,0.666351,0.671731,0.599814,0.0293684,0.229991,0.697944,0.228206,0.0313922,0.293091,0.959795,0.0048095,0.4328,0.442892,0.494145,0.768133,0.469433,0.957892,0.680825,0.00472182,0.25052,0.883638,0.850439,0.610743,0.268303,0.668568,0.194316,0.100832,0.369828,0.41556,0.461775,0.280357,0.423048,0.0733445,0.551399,0.420513,0.264229,0.900724,0.0684765,0.573656,0.219153,0.48555,0.0279794,0.912009,0.15061,0.661048,0.108719,0.137709,0.647379,0.561663,0.968026,0.363964,0.616487,0.336858,0.530094,0.222272,0.446916,0.0931835,0.847215,0.748614,0.263367,0.250361,0.263172,0.281823,0.239747,0.962501,0.540652,0.705389,0.760174,0.699064,0.799146,0.130776,0.318938,0.890949,0.594371,0.803162,0.996046,0.357208,0.398316,0.469799,0.542241,0.587819,0.923983,0.624418,0.554104,0.593418,0.333794,0.87028,0.160184,0.809254,0.801928,0.186319,0.620145,0.72282,0.512695,0.800369,0.532925,0.659303,0.438923,0.97854,0.829724,0.0901714,0.964095,0.396184,0.423941,0.852005,0.558459,0.258748,0.236983,0.209386,0.873515,0.535776,0.839768,0.424841,0.895734,0.63598,0.107712,0.300878,0.923899,0.524286,|0.648757,0.93821,0.393115,0.59458,0.593397,0.683693,0.973508,0.608126,0.375572,0.332393,0.135514,0.880741,0.791939,0.0709727,0.577645,0.284626,0.383983,0.96396,0.458937,0.7621,0.661642,0.277101,0.110897,0.710666,0.876905,0.400998,0.380925,0.825355,0.276982,0.940846,0.990582,0.846406,0.581712,0.0518801,0.883926,0.0477195,0.759391,0.503874,0.812213,0.99103,0.430062,0.978379,0.0214929,0.814511,0.182558,0.959489,0.207291,0.821486,0.542871,0.36358,0.215748,0.706352,0.949366,0.822339,0.0406967,0.872375,0.679526,0.385222,0.27938,0.549197,0.873005,0.25829,0.260419,0.902439,0.493735,0.310128,0.486282,0.0535167,0.0985092,0.516835,0.904361,0.436676,0.602275,0.96645,0.061554,0.114453,0.997191,0.211238,0.00569022,0.0747886,0.206093,0.760498,0.728213,0.887158,0.184657,0.469804,0.0519365,0.254456,0.324855,0.969927,0.86925,0.939016,0.385795,0.994972,0.0321873,0.73728,0.660745,0.30328,0.828863,0.0885183,0.424492,0.118236,0.49145,0.649402,0.561809,0.103046,0.424082,0.925653,0.396192,0.243647,0.523386,0.499043,0.896987,0.309928,0.418879,0.601098,0.283102,0.532686,0.711926,0.794639,0.822338,0.404031,0.430213,0.54195,0.593444,0.320887,0.798713,0.20856,0.788437,0.755835,0.888335,0.861454,0.63973,0.112063,0.889198,0.25417,0.899058,0.0573776,0.522485,0.856459,0.807201,0.460774,0.236463,0.449845,0.879364,0.119615,0.789343,0.734585,0.184246,0.0146132,0.394121,0.0657561,0.590003,0.807139,0.703763,0.609711,0.554192,0.539938,0.705345,0.2871,0.797439,0.361403,0.0976139,0.882015,0.740799,0.0476841,0.900113,0.735868,0.8142,0.907848,0.896316,0.377548,0.621565,0.945185,0.661687,0.0428687,0.179527,0.0146295,0.240568,0.201162,0.231641,0.806383,0.562244,0.685803,0.49893,0.89196,0.75451,0.883564,0.147145,0.209509,0.0398004,0.931649,0.533386,0.662901,0.878165,0.0300301,0.388842,0.163906,0.250778,0.781506,0.10116,0.743736,0.368274,0.390932,0.39324,0.315646,0.832494,0.00300771,0.966118,0.76912,0.125381,0.540059,0.336937,0.0452614,0.777261,0.446949,0.373176,0.26649,0.797441,0.475879,0.192381,0.142961,0.302459,0.574572,0.689623,0.860986,0.357853,0.997993,0.94426,0.253596,0.278014,0.491736,0.45157,0.995761,0.0482329,0.2171,0.822773,0.363519,0.387035,0.882956,0.38237,0.871467,0.139171,0.899488,0.25653,0.365344,0.14281,0.214611,0.523089,0.298529,0.538039,0.661778,0.0658348,0.956264,0.830723,0.487533,0.633349,0.138354,0.459346,0.419985,0.14832,0.346413,0.959956,0.274147,0.366709,0.822604,0.0143375,0.219102,0.365793,0.807373,0.0270523,0.328855,0.220867,0.388755,0.397977,0.587275,0.679812,0.329339,0.0945281,0.831426,0.538591,0.184869,0.502591,0.566811,0.719459,0.339026,0.178235,0.487218,0.183119,0.972837,0.637198,0.662444,0.955003,0.50783,0.199178,0.542113,0.374383,0.731646,0.42431,0.110219,0.411853,0.106377,0.60263,0.909768,0.890106,0.820387,0.307952,0.469548,0.695539,0.420688,0.223315,0.429129,0.964048,0.0180216,0.312791,0.316024,0.465947,0.162561,0.944879,0.267711,0.843441,0.470408,0.979391,0.96042,0.752043,0.710809,0.623173,0.700172,0.721261,0.00957197,0.760862,0.199516,0.710396,0.170466,0.930454,0.332263,0.434647,0.588483,0.660965,0.0697617,0.472206,0.645656,0.180818,0.872104,0.0647816,0.559141,0.157422,0.566067,0.172722,0.00146508,0.582121,0.542932,0.703239,0.815021,0.953081,0.154841,0.0190367,0.106692,0.840402,0.904113,0.736052,0.531451,0.953067,0.346928,0.966969,0.733818,0.669072,0.318897,0.598282,0.495832,0.487849,0.320553,0.831208,0.958528,0.962978,0.250273,0.18775,0.280777,0.136035,0.305051,0.905008,0.421562,0.0402994,0.10501,0.445305,0.855642,0.859363,0.38128,0.517278,0.497699,0.0274274,0.339718,0.065106,0.268795,0.0506777,0.285043,0.88163,0.257466,0.337104,0.00596559,0.0999962,0.466353,0.84506,0.759146,0.570456,0.651305,0.0470521,0.680039,0.466399,0.197273,0.883402,0.675497,0.668633,0.372401,0.0539684,0.767632,0.578754,0.31494,0.294069,0.838209,0.606764,0.0170703,0.617851,0.0104742,0.696327,0.63909,0.946723,0.865049,0.980348,0.699821,0.453601,0.39902,0.0650752,0.412287,0.0454358,0.218756,0.339681,0.887381,0.44039,0.387326,0.311208,0.0262536,0.553957,0.266076,0.868638,0.14097,0.190754,0.968605,0.600882,0.371571,0.717029,0.93272,0.125743,0.39398,0.129116,0.085144,0.511811,0.221848,0.279436,0.00731337,0.166566,0.205584,0.686688,0.120744,0.22159,0.155004,0.912357,0.0449966,0.204627,0.153199,0.732245,0.248544,0.814609,0.300004,0.473431,0.977199,0.410629,0.856821,0.943769,0.167036,0.404458,0.452668,0.480781,0.0753824,0.887205,0.470148,0.513153,0.509463,0.368392,0.395225,0.436812,0.474471,0.620959,0.935616,0.509653,0.484281,0.328928,0.184531,0.765462,0.148894,0.629421,0.65299,0.0223936,0.43066,0.628004,0.460437,0.954348,0.756422,0.235558,0.77652,0.347379,0.655881,0.650537,0.305029,0.9321,0.767367,0.852202,0.373743,0.213003,0.994204,0.353287,0.809622,0.53694,0.832396,0.175483,0.974258,0.342323,0.967846,0.190649,0.11863,0.394382,0.975235,0.767294,0.57898,0.424726,0.165608,0.0251589,0.739199,0.334451,0.969738,0.286618,0.361386,0.834393,0.769679,0.497079,0.096077,0.489483,0.855416,0.93457,0.574676,0.879627,0.128769,0.557847,0.658229,0.517122,0.857763,0.98594,0.5183,0.41849,0.00347322,0.0944181,0.135038,0.404606,0.0528358,0.730515,0.291534,0.304313,0.180179,0.431407,0.265332,0.605437,0.0211083,0.779283,0.496954,0.216508,0.0877891,0.443874,0.116484,0.0309806,0.243085,0.229966,0.654688,0.617393,0.661105,0.947373,0.221343,0.90002,0.151159,0.646436,0.196261,0.916321,0.796537,0.932797,0.895488,0.992822,0.969036,0.0310283,0.852281,0.912373,0.0936287,0.185073,0.359817,0.166767,0.419339,0.734239,0.747921,0.384492,0.521752,0.0582397,0.405984,0.443382,0.0248827,0.53377,0.760623,0.306196,0.159286,0.294493,0.207222,0.115417,0.0210259,0.294292,0.373313,0.591714,0.345049,0.293303,0.200729,0.495525,0.440683,0.837674,0.843618,0.077616,0.406663,0.0137928,0.329747,0.141728,0.612933,0.221097,0.948097,0.982538,0.506978,0.631679,0.100064,0.774999,0.724768,0.939728,0.834417,0.928632,0.139819,0.528686,0.445975,0.227963,0.0315817,0.866542,0.457859,0.293736,0.418563,0.8963,0.237029,0.68233,0.750009,0.368797,0.387875,0.828568,0.946069,0.427223,0.876237,0.846668,0.786539,0.278772,0.424456,0.686265,0.750142,0.933718,0.598948,0.18744,0.427825,0.995483,0.563656,0.617762,0.764282,0.316622,0.801979,0.274641,0.239137,0.420579,0.0221193,0.893343,0.767308,0.345015,0.19393,0.123508,0.155736,0.0308332,0.870597,0.620724,0.00886971,0.658536,0.346832,0.299582,0.209503,0.322033,0.75423,0.498505,0.424952,0.696042,0.860397,0.91242,0.86821,0.212493,0.0713409,0.518612,0.430536,0.916697,0.610124,0.313731,0.244002,0.465117,0.310972,0.728319,0.211351,0.833987,0.08536,0.988931,0.843807,0.562338,0.917636,0.0709273,0.974395,0.25799,0.930328,0.0952942,0.0329208,0.0844803,0.288986,0.15112,0.0462243,0.565914,0.38153,0.875314,0.524355,0.663478,0.887099,0.344474,0.498691,0.599542,0.904159,0.457845,0.59215,0.752401,0.201056,0.365354,0.528443,0.635215,0.38455,0.112076,0.0929711,0.376589,0.793751,0.192183,0.854345,0.861659,0.311528,0.834126,0.802055,0.737064,0.492823,0.902759,0.655487,0.912265,0.971308,0.876828,0.772375,0.708795,0.156385,0.0925649,0.329128,0.244708,0.574108,0.981604,0.812671,0.684033,0.142205,0.676051,0.559934,0.0734798,0.724616,0.606052,0.942174,0.327198,0.00606775,0.0625107,0.406229,0.172766,0.978673,0.0535808,0.951207,0.103462,0.497451,0.60419,0.151404,0.733968,0.0833445,0.716829,0.0145776,0.692805,0.849716,0.894882,0.441564,0.122717,0.748194,0.859408,0.400961,0.330377,0.085317,0.971878,0.0311385,0.0949017,0.588377,0.780829,0.562838,0.399704,0.0909231,0.580777,0.766738,0.412971,0.213955,0.810632,0.360667,0.727483,0.470092,0.962428,0.18855,0.92793,0.513857,0.14601,0.793832,0.831879,0.317044,0.606767,0.564547,0.383172,0.348417,0.104638,0.342014,0.196113,0.346868,0.356176,0.400198,0.501433,0.764176,0.246704,0.232567,0.686028,0.370806,0.96627,0.967748,0.29853,0.376581,0.205264,0.491964,0.753347,0.540968,0.935254,0.775891,0.647178,0.300409,0.567178,0.315802,0.796586,0.965371,0.638474,0.607099,0.169384,0.544479,0.24522,0.690933,0.0459601,0.518168,0.0897756,0.678185,0.859401,0.0958973,0.841099,0.905401,0.343767,0.476164,0.568046,0.187021,0.200747,0.0937285,0.183457,0.441429,0.0764822,0.293949,0.170103,0.536251,0.0247607,0.107896,0.210545,0.081571,0.375022,0.118483,0.91532,0.599025,0.418733,0.400043,0.956376,0.744256,0.274858,0.34121,0.934094,0.788071,0.902236,0.651224,0.0299655,0.799436,0.379843,0.77575,0.233526,0.171411,0.416029,0.431762,0.191108,0.532298,0.781259,0.306038,0.484192,0.0145346,0.588127,0.756639,0.724486,0.853929,0.777871,0.825808,0.35958,0.125214,0.934972,0.641317,0.0380233,0.615509,0.117739,0.840445,0.757724,0.401685,0.443626,0.492571,0.15262,0.108786,0.283408,0.0678818,0.927972,0.504569,0.663655,0.922481,0.953198,0.435973,0.664927,0.000134528,0.10788,0.654074,0.255418,0.0490023,0.114301,0.0896191,0.329827,0.860675,0.0592533,0.327413,0.448741,0.886993,0.335295,0.487808,0.724909,0.748077,0.847801,0.494753,0.69272,0.0708247,0.175453,0.96344,0.382414,0.111819,0.139659,0.461916,0.861868,0.590131,0.736597,0.451327,0.011102,0.917133,0.234092,0.146751,0.516434,0.334042,0.146984,0.347656,0.269046,0.437536,0.144413,0.288984,|0.466163,0.0722144,0.804637,0.505318,0.632991,0.918004,0.914492,0.114534,0.286235,0.963958,0.19473,0.290476,0.950417,0.569108,0.482808,0.220719,0.509364,0.445584,0.462388,0.499937,0.443568,0.955324,0.447443,0.0653591,0.828889,0.942781,0.228569,0.970855,0.62742,0.578227,0.609074,0.405179,0.805372,0.834719,0.854863,0.0897301,0.774477,0.627009,0.0394445,0.534486,0.82166,0.382939,0.392368,0.1626,0.807022,0.461461,0.237888,0.251342,0.495918,0.209293,0.00706387,0.594118,0.0255529,0.568901,0.196595,0.0792022,0.968139,0.771863,0.0385864,0.686101,0.691444,0.556293,0.835364,0.493223,0.502505,0.58744,0.50059,0.0232683,0.219473,0.40686,0.641722,0.218674,0.561992,0.469809,0.582888,0.46782,0.877418,0.486418,0.179051,0.976078,0.17515,0.409428,0.979122,0.339311,0.764745,0.789055,0.540618,0.936345,0.252324,0.533385,0.184021,0.125749,0.586451,0.0141073,0.201393,0.53732,0.348944,0.645148,0.370525,0.478247,0.456274,0.343915,0.249811,0.733174,0.842808,0.195124,0.340024,0.814157,0.654592,0.245198,0.932138,0.120483,0.318172,0.611926,0.000594497,0.0374581,0.853118,0.797854,0.866139,0.0977658,0.729173,0.941918,0.673469,0.205362,0.320235,0.495853,0.506077,0.80525,0.929917,0.934244,0.802543,0.023739,0.747111,0.710046,0.671866,0.239216,0.143165,0.497524,0.507657,0.234806,0.901257,0.685243,0.527277,0.489636,0.8785,0.456985,0.485373,0.948479,0.981531,0.131591,0.970137,0.645101,0.202124,0.434844,0.59469,0.611554,0.588676,0.0854735,0.596138,0.505145,0.336055,0.58413,0.0732248,0.101023,0.691815,0.208524,0.855097,0.689422,0.970151,0.34786,0.723616,0.71106,0.746821,0.023501,0.316105,0.17496,0.174522,0.821429,0.230612,0.289733,0.884502,0.669455,0.890743,0.18923,0.0921986,0.705195,0.00272691,0.0775445,0.00251526,0.982388,0.461302,0.097064,0.361452,0.218126,0.966641,0.846133,0.882466,0.219675,0.188188,0.949489,0.790895,0.389336,0.0962343,0.848218,0.183125,0.770033,0.79234,0.303348,0.427049,0.590296,0.182963,0.67666,0.070649,0.33717,0.290575,0.479241,0.359753,0.872001,0.30944,0.582379,0.0941641,0.0653635,0.967654,0.395501,0.42187,0.604359,0.239669,0.110257,0.0786211,0.121182,0.83062,0.511561,0.525156,0.066412,0.636578,0.500992,0.138457,0.623502,0.720001,0.570433,0.198432,0.236224,0.955577,0.996821,0.483823,0.461982,0.711891,0.320927,0.375945,0.246625,0.757354,0.822985,0.920329,0.0148095,0.377817,0.155249,0.237885,0.66208,0.709997,0.479158,0.576624,0.130642,0.854553,0.726551,0.541549,0.621782,0.502897,0.571745,0.3149,0.416423,0.195539,0.677855,0.0553792,0.891177,0.735549,0.209333,0.181481,0.354864,0.816475,0.545692,0.302367,0.365362,0.980678,0.173176,0.61349,0.288369,0.947294,0.951357,0.272259,0.480335,0.972605,0.170545,0.743868,0.607461,0.0318798,0.89521,0.860364,0.180994,0.975597,0.70686,0.634662,0.131128,0.245685,0.736537,0.37581,0.113276,0.281566,0.0619099,0.395909,0.177784,0.764319,0.748677,0.202623,0.882817,0.267967,0.647758,0.0989428,0.0422955,0.801609,0.0213405,0.516102,0.48421,0.817856,0.160401,0.864041,0.795868,0.342734,0.489705,0.455856,0.899564,0.382198,0.638244,0.337672,0.603025,0.705331,0.740223,0.52405,0.808719,0.550916,0.563641,0.359125,0.878537,0.809,0.339574,0.668787,0.196103,0.164013,0.711721,0.297826,0.637827,0.913596,0.786771,0.812744,0.550532,0.15401,0.810145,0.896568,0.458763,0.926433,0.409464,0.441289,0.965372,0.771192,0.632393,0.705637,0.924321,0.29986,0.961254,0.766323,0.284841,0.8133,0.636624,0.918405,0.729394,0.451983,0.523076,0.105918,0.378973,0.501377,0.108511,0.0774475,0.554738,0.388354,0.92027,0.0413139,0.89191,0.554223,0.552128,0.727876,0.0310073,0.745889,0.855694,0.904893,0.033752,0.302908,0.984163,0.15234,0.773749,0.502646,0.199874,0.474593,0.565806,0.590041,0.703767,0.72388,0.0761325,0.646932,0.937564,0.98899,0.231877,0.104122,0.480606,0.386813,0.0901499,0.159423,0.0695837,0.832934,0.245164,0.260842,0.914849,0.177088,0.844387,0.576679,0.580827,0.641965,0.626479,0.00278002,0.135543,0.331004,0.589248,0.989704,0.0927461,0.27291,0.449036,0.626317,0.386133,0.818172,0.186459,0.793443,0.827506,0.218779,0.384037,0.521727,0.945039,0.889708,0.250585,0.577711,0.448864,0.666751,0.600007,0.429131,0.296529,0.671233,0.404777,0.307206,0.620117,0.815871,0.373118,0.80123,0.535376,0.104184,0.884919,0.980432,0.257215,0.218732,0.0455249,0.942215,0.872028,0.774986,0.599144,0.535595,0.402661,0.0845717,0.76831,0.353056,0.342389,0.271933,0.137455,0.0793344,0.659541,0.137678,0.37074,0.259363,0.475311,0.268201,0.972489,0.87338,0.885092,0.119306,0.264648,0.975645,0.695857,0.356152,0.465903,0.237483,0.37209,0.319906,0.571481,0.798965,0.226136,0.440179,0.961416,0.778389,0.417506,0.62387,0.701245,0.557104,0.848953,0.964363,0.402206,0.75266,0.508341,0.754886,0.317876,0.0508834,0.784798,0.0919569,0.49539,0.0344663,0.305341,0.996284,0.708537,0.166995,0.935154,0.646926,0.211978,0.783844,0.558689,0.495315,0.04021,0.835836,0.253432,0.9979,0.733936,0.169118,0.435932,0.57597,0.141596,0.578901,0.433938,0.878376,0.223181,0.64352,0.482072,0.885897,0.855512,0.0602557,0.262171,0.508876,0.434524,0.126709,0.402497,0.706916,0.00219226,0.472791,0.736319,0.0347424,0.840925,0.386397,0.812493,0.860585,0.456351,0.830822,0.483248,0.0808908,0.754342,0.251934,0.306775,0.0370765,0.151596,0.0733262,0.857454,0.991647,0.346203,0.491557,0.916936,0.474106,0.565315,0.815145,0.511791,0.565173,0.19452,0.553545,0.820409,0.336643,0.792567,0.812721,0.495352,0.384756,0.46538,0.947496,0.819125,0.461029,0.952438,0.387184,0.924415,0.873951,0.857222,0.423315,0.123588,0.335111,0.0635455,0.219114,0.111313,0.788394,0.357646,0.122456,0.559065,0.164156,0.959948,0.30714,0.067938,0.820419,0.490288,0.213645,0.513847,0.898609,0.925184,0.630493,0.916433,0.00902689,0.274201,0.880178,0.455939,0.425831,0.426265,0.368101,0.479494,0.922046,0.529962,0.363758,0.558831,0.787419,0.649531,0.727701,0.226129,0.719183,0.746282,0.415812,0.664901,0.240007,0.800434,0.331572,0.193245,0.455236,0.162191,0.765139,0.00756776,0.494919,0.533176,0.124479,0.894906,0.879895,0.466243,0.406286,0.385911,0.908943,0.862925,0.553068,0.00912368,0.551513,0.0603697,0.399378,0.747085,0.782604,0.248308,0.349743,0.638553,0.750135,0.0118935,0.303275,0.339052,0.441085,0.656948,0.866133,0.591572,0.769245,0.666995,0.603413,0.733904,0.580203,0.300375,0.114855,0.0727472,0.561542,0.0704048,0.819528,0.550903,0.367825,0.68862,0.372928,0.926483,0.946315,0.953585,0.68005,0.687834,0.455384,0.470436,0.701979,0.752417,0.23714,0.588191,0.00513053,0.145786,0.223584,0.269002,0.535593,0.450517,0.235126,0.428983,0.35029,0.43035,0.296046,0.0975407,0.333292,0.725683,0.667488,0.499788,0.214714,0.0440394,0.396856,0.68616,0.0101824,0.495398,0.522149,0.841996,0.00154805,0.673858,0.174213,0.102925,0.628225,0.949627,0.123194,0.063061,0.452481,0.189982,0.820783,0.209585,0.437615,0.107348,0.43989,0.518459,0.780859,0.596531,0.08377,0.247383,0.0702208,0.972229,0.46072,0.470552,0.558888,0.133379,0.410461,0.482734,0.483834,0.116023,0.158959,0.231958,0.930924,0.465016,0.794024,0.751692,0.891086,0.427373,0.792922,0.440948,0.517597,0.619797,0.311654,0.868742,0.835937,0.620099,0.949968,0.939926,0.570952,0.754314,0.348808,0.431499,0.381443,0.932211,0.829251,0.348533,0.0905343,0.82266,0.958295,0.461462,0.172003,0.806911,0.104494,0.142037,0.353826,0.170411,0.246518,0.421657,0.414405,0.663045,0.422625,0.383413,0.749238,0.0217491,0.282216,0.7422,0.814919,0.382201,0.979193,0.79104,0.889639,0.945412,0.330354,0.238902,0.768559,0.895874,0.57065,0.23174,0.126849,0.73351,0.312552,0.630063,0.991719,0.666962,0.019599,0.69328,0.481307,0.172439,0.0932916,0.994292,0.278403,0.637377,0.108993,0.0426599,0.119008,0.745485,0.622078,0.361815,0.637298,0.223164,0.0586292,0.934795,0.0716099,0.0193344,0.180763,0.290184,0.888818,0.385261,0.505025,0.457761,0.909045,0.678137,0.53268,0.643031,0.392561,0.962253,0.357873,0.691887,0.137856,0.622535,0.406985,0.667417,0.464308,0.77065,0.06217,0.632568,0.480874,0.356226,0.438201,0.584612,0.808132,0.0997865,0.0711979,0.84203,0.899572,0.774575,0.0974274,0.218668,0.263172,0.27585,0.462727,0.988187,0.922519,0.872989,0.877432,0.136943,0.807747,0.978298,0.869492,0.978316,0.682278,0.133738,0.969968,0.7495,0.938185,0.904796,0.945167,0.913234,0.898605,0.612883,0.0464428,0.570084,0.870799,0.829516,0.120759,0.574692,0.504997,0.22039,0.365912,0.760168,0.118777,0.576157,0.259821,0.0351207,0.802952,0.188402,0.501941,0.486605,0.653902,0.293102,0.877418,0.849244,0.985798,0.120967,0.345832,0.376664,0.547766,0.173522,0.136027,0.870489,0.978761,0.868319,0.733562,0.099214,0.798992,0.0496573,0.234022,0.848571,0.802199,0.68211,0.693333,0.225301,0.215666,0.632784,0.00155002,0.953935,0.845171,0.773461,0.582443,0.220266,0.756249,0.427943,0.50967,0.471736,0.212712,0.628772,0.0885473,0.607492,0.100545,0.401085,0.432123,0.313141,0.501513,0.102765,0.263601,0.256246,0.581286,0.523177,0.470539,0.94665,0.792811,0.14553,0.657638,0.0672938,0.234009,0.591309,0.586033,0.75589,0.905567,0.543525,0.643503,0.313901,0.38221,0.0573047,0.638002,0.632529,0.781848,0.998842,0.59274,0.387407,0.0312305,0.613211,0.870368,0.999103,0.800664,0.92194,0.055996,0.21638,0.259084,0.0330498,0.801712,0.605987,0.376712,0.313712,|0.612015,0.435611,0.909083,0.394489,0.300179,0.44681,0.00923359,0.625114,0.808818,0.611299,0.994402,0.24995,0.133932,0.97454,0.233923,0.198633,0.0596524,0.50499,0.167107,0.708364,0.528739,0.749004,0.285278,0.296232,0.983724,0.377495,0.333671,0.127809,0.669613,0.679624,0.858255,0.970694,0.123132,0.647235,0.241269,0.766747,0.634558,0.592421,0.331493,0.534918,0.213995,0.454916,0.444675,0.205431,0.186325,0.231277,0.826302,0.394842,0.456437,0.60861,0.690016,0.156058,0.123172,0.678953,0.935993,0.373679,0.08595,0.717756,0.484701,0.315149,0.326799,0.145045,0.265437,0.521175,0.8093,0.572768,0.3997,0.132255,0.732822,0.931786,0.50463,0.138928,0.318862,0.781857,0.0488738,0.8847,0.160365,0.627137,0.241214,0.889309,0.833037,0.88288,0.719014,0.842928,0.55973,0.784836,0.468828,0.882423,0.703327,0.648067,0.0883334,0.774116,0.416099,0.277234,0.891618,0.713838,0.336907,0.274398,0.721366,0.951384,0.686237,0.714996,0.997825,0.427565,0.563292,0.153696,0.534677,0.909748,0.888649,0.0340495,0.914641,0.921576,0.20722,0.121795,0.347422,0.336735,0.451394,0.952098,0.384871,0.784397,0.156698,0.504657,0.325865,0.451462,0.647162,0.957735,0.365627,0.334152,0.298761,0.307825,0.194072,0.188605,0.0588568,0.903973,0.442218,0.959603,0.547745,0.678706,0.735402,0.486193,0.852519,0.504367,0.613703,0.769019,0.852412,0.518694,0.0164513,0.997369,0.40417,0.281856,0.567168,0.515597,0.65645,0.243456,0.397194,0.869741,0.587214,0.584928,0.469066,0.0732396,0.4709,0.684946,0.567635,0.749922,0.490549,0.754313,0.330065,0.477015,0.0858068,0.0466465,0.694385,0.837819,0.959223,0.489589,0.464244,0.0108877,0.206461,0.46787,0.881091,0.359172,0.0255864,0.684981,0.496592,0.402491,0.303316,0.187681,0.618815,0.30678,0.977628,0.0260997,0.810205,0.358096,0.804639,0.196213,0.240902,0.832107,0.323837,0.0636614,0.260035,0.287185,0.320171,0.0286891,0.634839,0.421411,0.0196013,0.299363,0.562958,0.149209,0.256142,0.964332,0.763851,0.89183,0.0630113,0.945875,0.425302,0.90366,0.653821,0.839632,0.996857,0.847148,0.121079,0.819789,0.764007,0.351307,0.795263,0.162383,0.993514,0.65851,0.277492,0.445419,0.65292,0.710232,0.442182,0.720226,0.339765,0.30641,0.740485,0.542949,0.121688,0.651605,0.549468,0.669748,0.714936,0.931795,0.0637837,0.370655,0.957621,0.213928,0.864149,0.431971,0.0634621,0.857826,0.965266,0.249585,0.692809,0.175172,0.78877,0.737209,0.115986,0.943314,0.461394,0.532507,0.315606,0.421657,0.547504,0.682322,0.743327,0.443879,0.567821,0.950681,0.49387,0.59817,0.39861,0.130831,0.689936,0.955106,0.809722,0.93092,0.400672,0.0760732,0.188315,0.099871,0.571136,0.185749,0.650078,0.138657,0.451785,0.97795,0.596153,0.856363,0.634892,0.543564,0.568782,0.0599074,0.548791,0.397036,0.748149,0.434433,0.540739,0.851333,0.781495,0.247254,0.624097,0.213619,0.437841,0.985177,0.217065,0.563399,0.440228,0.881903,0.179894,0.029768,0.161432,0.711041,0.887757,0.50181,0.355683,0.653653,0.981787,0.976976,0.348819,0.609271,0.750141,0.017262,0.366633,0.362907,0.748187,0.00726277,0.728807,0.508431,0.86791,0.456032,0.0429415,0.266079,0.418776,0.737606,0.385858,0.971516,0.0467554,0.41922,0.987378,0.053695,0.918056,0.357168,0.730456,0.382433,0.638305,0.526267,0.333875,0.133311,0.319348,0.787674,0.886572,0.680223,0.544306,0.868395,0.739006,0.867852,0.0799294,0.298589,0.473792,0.798041,0.407399,0.458868,0.400877,0.534035,0.294432,0.888448,0.229676,0.248716,0.894012,0.169575,0.279772,0.961478,0.919454,0.738904,0.02359,0.194048,0.109022,0.35647,0.652473,0.191874,0.318923,0.0213985,0.447592,0.0266986,0.127424,0.437963,0.358667,0.875606,0.436565,0.258614,0.268504,0.647779,0.496146,0.379205,0.294766,0.390997,0.305705,0.345588,0.807116,0.608796,0.449489,0.798784,0.642722,0.890938,0.932806,0.271443,0.0893556,0.404175,0.970795,0.953577,0.26974,0.51009,0.314584,0.892122,0.702477,0.50883,0.85159,0.595821,0.680387,0.485329,0.166323,0.253775,0.917003,0.936709,0.505685,0.800914,0.440358,0.955907,0.168322,0.843359,0.183986,0.862272,0.607265,0.965873,0.142061,0.110543,0.925709,0.959048,0.700852,0.710205,0.0888742,0.747565,0.150488,0.886961,0.18766,0.0391459,0.439822,0.638805,0.695339,0.00466377,0.190934,0.503714,0.626396,0.0309083,0.204024,0.576374,0.697038,0.323059,0.657044,0.471997,0.380335,0.773644,0.392862,0.924499,0.0672368,0.0568033,0.413211,0.848851,0.618745,0.577675,0.790503,0.191644,0.56912,0.87088,0.171885,0.904127,0.599456,0.519446,0.13216,0.477867,0.652217,0.594139,0.863976,0.293766,0.962917,0.386122,0.774058,0.26022,0.373946,0.663337,0.0794328,0.313409,0.901732,0.985391,0.28463,0.31017,0.79447,0.556985,0.626647,0.618922,0.680804,0.228037,0.124833,0.0242287,0.848263,0.968509,0.354524,0.0819715,0.780124,0.260852,0.222538,0.440657,0.774349,0.776624,0.792073,0.166378,0.734249,0.52839,0.411473,0.571738,0.993437,0.752469,0.266162,0.117041,0.261633,0.071578,0.400913,0.769506,0.0982507,0.846692,0.519622,0.860646,0.802026,0.309335,0.219959,0.703588,0.932789,0.435375,0.589165,0.992851,0.494387,0.967851,0.950412,0.631916,0.243259,0.361172,0.478154,0.202448,0.938681,0.690986,0.585015,0.796067,0.0748674,0.949498,0.128978,0.599584,0.420198,0.732446,0.517696,0.208945,0.606973,0.0758263,0.347783,0.296945,0.126297,0.490751,0.936791,0.234487,0.999327,0.281994,0.223836,0.274384,0.312286,0.700362,0.721247,0.348456,0.261126,0.291855,0.288891,0.982627,0.790935,0.752689,0.758029,0.881095,0.866909,0.596047,0.57521,0.748816,0.603055,0.146555,0.11899,0.104723,0.536251,0.495827,0.659083,0.0574524,0.617656,0.198939,0.815875,0.167063,0.133275,0.21741,0.495571,0.394723,0.545028,0.507228,0.995433,0.987574,0.926786,0.932884,0.635599,0.237806,0.267519,0.114317,0.502184,0.702946,0.0103087,0.207543,0.487647,0.593887,0.0475348,0.991806,0.157288,0.448885,0.560075,0.696341,0.618048,0.468928,0.388327,0.585516,0.784555,0.566087,0.747953,0.933257,0.682114,0.815388,0.31359,0.791756,0.618269,0.740965,0.2348,0.2858,0.582192,0.183553,0.356898,0.440495,0.344852,0.972062,0.668169,0.850798,0.940615,0.738011,0.478469,0.66517,0.948076,0.180716,0.681657,0.852224,0.28424,0.238342,0.661958,0.686708,0.194984,0.179483,0.279964,0.179508,0.6418,0.222178,0.578935,0.265629,0.734559,0.796203,0.120205,0.264465,0.720493,0.156647,0.771775,0.552054,0.471371,0.3994,0.646155,0.45462,0.956781,0.821241,0.777696,0.491489,0.894845,0.337618,0.202176,0.960211,0.113868,0.0918126,0.440595,0.472544,0.669122,0.627379,0.633882,0.109816,0.109984,0.769563,0.0792176,0.9688,0.335258,0.125976,0.10953,0.576396,0.127473,0.516575,0.916051,0.537844,0.513632,0.626619,0.023461,0.521764,0.881691,0.0736681,0.333751,0.393652,0.461097,0.0183102,0.347479,0.457644,0.796755,0.852912,0.201585,0.916963,0.918289,0.977127,0.0755327,0.921287,0.0467007,0.631754,0.706912,0.554856,0.465667,0.484614,0.6632,0.0802565,0.485587,0.074796,0.768027,0.168712,0.0702429,0.936493,0.509603,0.226939,0.220077,0.935878,0.517482,0.440088,0.521832,0.59818,0.593781,0.369699,0.245949,0.0623647,0.934854,0.861827,0.376692,0.680337,0.803562,0.273777,0.310478,0.612812,0.397746,0.603044,0.427386,0.62829,0.840909,0.313445,0.86437,0.65164,0.899033,0.328249,0.964297,0.281508,0.717555,0.306718,0.927134,0.581691,0.54596,0.210815,0.333401,0.0445828,0.285848,0.835844,0.744067,0.67747,0.693628,0.872345,0.797761,0.999504,0.750473,0.892927,0.528994,0.276338,0.37533,0.244422,0.298504,0.804974,0.896364,0.698366,0.246658,0.952237,0.145617,0.0744672,0.644611,0.266786,0.194561,0.464373,0.539902,0.275226,0.851339,0.12168,0.494076,0.752582,0.655038,0.153606,0.208114,0.718783,0.28259,0.957665,0.867846,0.151131,0.514975,0.895506,0.442182,0.993757,0.234588,0.594299,0.830094,0.255942,0.0244318,0.0909711,0.597733,0.59659,0.752029,0.443323,0.29659,0.919862,0.95849,0.348578,0.138809,0.0384886,0.867244,0.533427,0.298576,0.666693,0.283976,0.363481,0.816837,0.843539,0.0257056,0.158847,0.101522,0.12538,0.0217033,0.0597607,0.642681,0.667531,0.605306,0.148077,0.593997,0.182894,0.220892,0.553191,0.376604,0.384882,0.861938,0.518406,0.156387,0.688019,0.299118,0.576187,0.342817,0.584297,0.143901,0.824054,0.167783,0.540289,0.118834,0.872208,0.658485,0.405809,0.420184,0.214199,0.132039,0.867043,0.351924,0.841821,0.785463,0.821756,0.975459,0.152538,0.592175,0.643289,0.724987,0.782676,0.357614,0.25431,0.600565,0.8989,0.434214,0.356901,0.0149434,0.228079,0.373896,0.870806,0.371254,0.000844538,0.11092,0.242357,0.405509,0.115711,0.142139,0.678651,0.370768,0.855214,0.761466,0.890511,0.829646,0.544411,0.237057,0.890354,0.760479,0.807109,0.430551,0.979564,0.52127,0.931621,0.0185174,0.160218,0.103663,0.128415,0.410949,0.783555,0.334729,0.809276,0.312795,0.558779,0.187918,0.0515512,0.432403,0.961673,0.38341,0.0695658,0.17042,0.457381,0.473119,0.0200318,0.244746,0.102354,0.833635,0.973346,0.681596,0.550929,0.273973,0.590018,0.504232,0.536128,0.0921635,0.899584,0.373918,0.430929,0.29073,0.384143,0.114508,0.616121,0.338093,0.0711268,0.576531,0.104913,0.739506,0.579931,0.957852,0.343722,0.193098,0.166256,0.89906,0.643112,0.365846,0.922636,0.934172,0.110585,0.465956,0.390604,0.565419,0.265475,0.776934,0.794142,0.0668963,0.471164,0.668331,0.266233,0.595736,0.781941,0.447335,0.994075,|0.812138,0.668274,0.216788,0.57832,0.461133,0.486201,0.986696,0.606689,0.785242,0.30125,0.126748,0.0630358,0.186894,0.0602947,0.983242,0.0800105,0.0491814,0.721797,0.773904,0.713054,0.654382,0.910679,0.587942,0.0400798,0.787104,0.255548,0.294308,0.797829,0.987864,0.00159663,0.410175,0.424041,0.576072,0.865648,0.69186,0.478262,0.842469,0.158556,0.0170364,0.570336,0.843882,0.72229,0.69986,0.750685,0.413829,0.805909,0.0646878,0.880252,0.543241,0.575616,0.314153,0.111364,0.348007,0.173185,0.180774,0.577181,0.902194,0.793362,0.750488,0.382161,0.355079,0.998993,0.642402,0.62042,0.702566,0.373164,0.859211,0.426985,0.705998,0.837585,0.453603,0.205348,0.201039,0.422831,0.939466,0.0842971,0.868223,0.18771,0.933704,0.851661,0.470761,0.809143,0.818112,0.572072,0.953373,0.862147,0.676917,0.00243902,0.866762,0.865101,0.994849,0.416615,0.979599,0.137981,0.893898,0.239993,0.742908,0.422711,0.259175,0.367938,0.403046,0.760959,0.0146747,0.700043,0.818215,0.710651,0.813997,0.612447,0.0597436,0.937834,0.433685,0.823632,0.369325,0.963628,0.327047,0.129644,0.0949086,0.932553,0.676454,0.746092,0.0365772,0.804843,0.241285,0.823567,0.143568,0.327675,0.292388,0.295976,0.822187,0.306725,0.15997,0.439057,0.250533,0.988686,0.968897,0.276246,0.486657,0.821469,0.867159,0.93407,0.27791,0.40988,0.80675,0.37324,0.345395,0.215765,0.235806,0.822227,0.59204,0.249072,0.23784,0.170458,0.453694,0.757646,0.58348,0.371377,0.0344574,0.86281,0.568615,0.133532,0.247762,0.539049,0.0477812,0.145482,0.196126,0.772294,0.460721,0.66654,0.422409,0.476597,0.985549,0.0225335,0.437759,0.288442,0.207377,0.938771,0.113302,0.801239,0.583314,0.565492,0.409158,0.114552,0.486773,0.741288,0.585035,0.0519714,0.10404,0.20775,0.059075,0.978764,0.212658,0.274234,0.31645,0.901738,0.976345,0.00112212,0.496491,0.91207,0.904389,0.631289,0.766922,0.775608,0.741889,0.402741,0.15342,0.0750656,0.723109,0.7756,0.968285,0.0897778,0.304627,0.818882,0.932876,0.562501,0.314892,0.48417,0.781893,0.82603,0.871296,0.819149,0.0106967,0.240832,0.37817,0.100917,0.633395,0.246986,0.507995,0.325011,0.350516,0.886223,0.0337697,0.693603,0.0157859,0.231769,0.00382024,0.335548,0.307759,0.329051,0.482781,0.560619,0.1905,0.539311,0.529543,0.681878,0.456689,0.525696,0.122514,0.910176,0.31515,0.397062,0.253524,0.443031,0.907322,0.0263576,0.995009,0.71685,0.324793,0.376292,0.186087,0.749499,0.0415526,0.42419,0.0404043,0.970005,0.484835,0.91062,0.626948,0.554602,0.0933102,0.785183,0.477025,0.142441,0.063325,0.48327,0.554816,0.223417,0.0123395,0.221411,0.775661,0.756129,0.549977,0.114196,0.501641,0.623314,0.456683,0.0955557,0.297213,0.375219,0.592059,0.896053,0.199764,0.913596,0.28923,0.0295948,0.917019,0.868149,0.427084,0.251016,0.467393,0.46564,0.898428,0.220817,0.503566,0.836749,0.874721,0.280278,0.491736,0.793799,0.989133,0.872698,0.447929,0.247471,0.155201,0.719762,0.581526,0.777762,0.378249,0.202278,0.553725,0.159027,0.44085,0.729558,0.333485,0.775022,0.317931,0.730935,0.201601,0.323512,0.930641,0.953967,0.517426,0.862365,0.408718,0.01187,0.867373,0.190177,0.637858,0.511928,0.541545,0.0660777,0.412923,0.563739,0.950164,0.0844385,0.361556,0.0141588,0.159809,0.0719826,0.288588,0.0442561,0.325612,0.319233,0.998705,0.857297,0.34214,0.915505,0.959145,0.797067,0.269721,0.239287,0.0511308,0.882183,0.250721,0.879642,0.800997,0.522528,0.499124,0.883842,0.892902,0.268888,0.729868,0.120452,0.423313,0.314653,0.910066,0.675773,0.863126,0.766431,0.708879,0.711127,0.61315,0.629807,0.338741,0.811934,0.078425,0.169168,0.124332,0.794827,0.537452,0.932999,0.692894,0.77764,0.306786,0.456521,0.627954,0.890136,0.385859,0.420664,0.805642,0.20693,0.562857,0.821796,0.356088,0.908839,0.570984,0.975802,0.359692,0.911454,0.392449,0.106182,0.26035,0.549498,0.73745,0.492578,0.384184,0.530896,0.0697201,0.135271,0.518466,0.836326,0.114264,0.423998,0.908731,0.822804,0.463418,0.282724,0.762424,0.565081,0.0255359,0.819132,0.150406,0.0256002,0.175923,0.190899,0.687425,0.140826,0.306064,0.29874,0.2236,0.396827,0.920567,0.292943,0.782235,0.990451,0.614757,0.5991,0.905344,0.503042,0.0595042,0.613996,0.332076,0.87333,0.527085,0.0509591,0.338028,0.602114,0.356287,0.817345,0.254851,0.836689,0.208473,0.956329,0.421851,0.420769,0.73205,0.908702,0.372382,0.0449584,0.384974,0.359584,0.956559,0.894963,0.933406,0.804728,0.301786,0.548824,0.895537,0.166937,0.284498,0.115809,0.674746,0.146396,0.485967,0.778067,0.619419,0.855504,0.15926,0.717604,0.531516,0.489247,0.883213,0.247548,0.685688,0.484339,0.252733,0.828238,0.370436,0.332783,0.518106,0.881514,0.140496,0.826459,0.481191,0.504335,0.240017,0.290108,0.747926,0.0941206,0.484344,0.721825,0.750388,0.773658,0.754821,0.88598,0.247522,0.237698,0.119161,0.771115,0.223615,0.283169,0.0844643,0.432845,0.625492,0.975481,0.272348,0.614715,0.690134,0.925957,0.544692,0.397889,0.533719,0.797763,0.355024,0.713105,0.453788,0.513502,0.460668,0.918149,0.113534,0.83575,0.737197,0.816376,0.951474,0.70777,0.439566,0.648952,0.81998,0.00848252,0.734858,0.500863,0.90348,0.733879,0.360151,0.414272,0.38431,0.384018,0.957588,0.158981,0.066337,0.864517,0.195193,0.92801,0.650099,0.666314,0.480754,0.478323,0.258988,0.566455,0.365786,0.376759,0.667033,0.861145,0.519131,0.5211,0.858544,0.336782,0.274991,0.395908,0.590479,0.787899,0.602665,0.397016,0.664491,0.0402765,0.737674,0.319926,0.730542,0.461347,0.0441939,0.428172,0.837053,0.874742,0.463242,0.224198,0.548148,0.55562,0.0670851,0.0150841,0.384627,0.365536,0.50025,0.933016,0.655165,0.662903,0.564498,0.428752,0.544377,0.450449,0.580339,0.647559,0.648525,0.995465,0.233416,0.292493,0.284077,0.912596,0.47681,0.749765,0.131679,0.309448,0.29289,0.642809,0.105845,0.094016,0.646735,0.522767,0.826213,0.161403,0.903062,0.331818,0.610221,0.375202,0.212201,0.921218,0.958662,0.192755,0.783134,0.556097,0.303848,0.732056,0.0225173,0.599616,0.182411,0.0581651,0.912516,0.718133,0.270109,0.760104,0.699356,0.725331,0.71765,0.678757,0.989846,0.457537,0.858303,0.519456,0.183987,0.166753,0.759459,0.532137,0.499424,0.416327,0.686139,0.0470506,0.118994,0.13212,0.0252075,0.900428,0.286546,0.148136,0.228375,0.903322,0.860765,0.900646,0.567017,0.351849,0.816292,0.204659,0.756457,0.0321435,0.883953,0.669176,0.158554,0.714587,0.629821,0.291395,0.258546,0.429427,0.239601,0.598776,0.961529,0.0578495,0.300059,0.178749,0.123744,0.839499,0.177461,0.346801,0.80083,0.75231,0.131628,0.0394345,0.528199,0.754731,0.397845,0.571207,0.417533,0.749944,0.900662,0.118122,0.502659,0.317531,0.219804,0.326798,0.12976,0.761273,0.0550718,0.425976,0.517109,0.543017,0.854813,0.712251,0.778867,0.70612,0.217643,0.0229365,0.408453,0.169915,0.0981004,0.809825,0.931022,0.602786,0.239494,0.800088,0.0244145,0.188421,0.322216,0.248382,0.728236,0.525759,0.275652,0.339598,0.956838,0.300726,0.243496,0.249047,0.0773394,0.349615,0.0887533,0.8164,0.0266337,0.541071,0.791762,0.155362,0.393739,0.0420756,0.636001,0.581524,0.136101,0.88383,0.843944,0.455813,0.0762368,0.866384,0.437812,0.214584,0.237925,0.999166,0.417234,0.0708689,0.759698,0.570881,0.794814,0.0610616,0.2826,0.761087,0.228326,0.710341,0.371752,0.754945,0.914514,0.0230108,0.777871,0.879038,0.831455,0.484878,0.825421,0.150481,0.6989,0.559092,0.0088253,0.72336,0.342812,0.77907,0.119502,0.992017,0.263261,0.748623,0.301051,0.635286,0.54813,0.0231006,0.287273,0.327798,0.693375,0.892999,0.441406,0.381095,0.890488,0.194015,0.826332,0.0532208,0.461571,0.788135,0.857194,0.313859,0.684513,0.435727,0.377577,0.654917,0.0716758,0.941571,0.217101,0.721242,0.598159,0.869203,0.987287,0.155856,0.460913,0.483647,0.836373,0.545306,0.620502,0.300763,0.583675,0.928454,0.104514,0.0660345,0.938228,0.958115,0.624354,0.94114,0.0681524,0.640277,0.158498,0.884098,0.236699,0.729153,0.904014,0.311117,0.0139465,0.0588822,0.770313,0.370532,0.559156,0.333008,0.567539,0.445443,0.997764,0.77366,0.357744,0.849941,0.473781,0.577823,0.751179,0.300622,0.584392,0.815505,0.284785,0.113789,0.911993,0.271809,0.585702,0.72676,0.254226,0.338122,0.16386,0.605564,0.238527,0.56173,0.744269,0.256098,0.119356,0.203925,0.313186,0.154469,0.878594,0.798133,0.557272,0.794997,0.341697,0.188088,0.438884,0.422827,0.107651,0.818996,0.905823,0.33101,0.640604,0.85701,0.887258,0.691433,0.894646,0.290876,0.940497,0.9671,0.963172,0.4342,0.653373,0.568006,0.675723,0.763891,0.525031,0.474522,0.354494,0.222729,0.184933,0.881751,0.844376,0.756273,0.30761,0.052318,0.229092,0.221679,0.46579,0.59384,0.153807,0.150299,0.695375,0.0798074,0.099656,0.926419,0.867911,0.64959,0.46625,0.248191,0.898161,0.575749,0.601297,0.605748,0.369738,0.943011,0.665363,0.48873,0.638206,0.339254,0.646262,0.951111,0.856866,0.743701,0.451987,0.314389,0.100346,0.908431,0.633627,0.81321,0.764587,0.568194,0.651205,0.929029,0.355684,0.630274,0.255231,0.969237,0.791098,0.776689,0.45947,0.380395,0.62111,0.630099,0.36009,0.0482873,0.797213,0.167761,0.363702,0.492896,0.787676,0.763487,0.813402,0.183661,0.324288,0.230002,0.194534,0.0565849,0.107737,0.0232686,0.567353,0.204874,0.752581,0.794716,0.790909,0.137296,0.585132,0.705181,0.63048,0.331968,0.525195,0.629553,0.5182,0.857134,|0.0876733,0.807273,0.337027,0.6741,0.22164,0.543019,0.563071,0.412987,0.571213,0.92925,0.307906,0.470119,0.492509,0.309497,0.443189,0.106489,0.337892,0.771218,0.794315,0.502714,0.798058,0.277004,0.983313,0.661898,0.100019,0.811921,0.857823,0.78214,0.417163,0.18518,0.234484,0.105257,0.791594,0.553234,0.156538,0.478123,0.144343,0.0989478,0.472083,0.553843,0.724406,0.562105,0.793406,0.412941,0.0786837,0.50624,0.344147,0.880748,0.834845,0.123641,0.708819,0.841502,0.262165,0.185213,0.299683,0.231913,0.0641377,0.57285,0.215585,0.569196,0.342189,0.941124,0.462063,0.639125,0.575415,0.068737,0.362797,0.227036,0.518992,0.103065,0.526554,0.111326,0.448418,0.858874,0.654216,0.287458,0.470549,0.638309,0.742076,0.164441,0.104648,0.223854,0.226067,0.916759,0.479344,0.188295,0.0934367,0.360897,0.0245615,0.435291,0.252548,0.562497,0.023115,0.135872,0.375687,0.220413,0.577367,0.132167,0.215631,0.380187,0.783701,0.825255,0.0939513,0.631255,0.77871,0.110719,0.731836,0.182939,0.842689,0.389503,0.910683,0.696198,0.0555069,0.647769,0.302637,0.465867,0.623128,0.405704,0.333061,0.96886,0.438506,0.567306,0.763085,0.20811,0.0419891,0.0032683,0.184201,0.348937,0.205184,0.413591,0.636788,0.574939,0.0804763,0.67148,0.764364,0.415449,0.162365,0.58993,0.579947,0.0820324,0.827773,0.546396,0.076873,0.760833,0.765111,0.512137,0.63259,0.614074,0.975823,0.202814,0.868344,0.799931,0.659008,0.42466,0.878019,0.850498,0.0480993,0.0437152,0.140168,0.0857915,0.392288,0.65145,0.45829,0.115106,0.932788,0.819966,0.48809,0.81468,0.589679,0.42037,0.510623,0.704388,0.57422,0.482339,0.0987961,0.498438,0.617904,0.120592,0.398958,0.301873,0.640899,0.660502,0.0719013,0.905601,0.500941,0.546357,0.174015,0.258635,0.536212,0.0943364,0.872942,0.66593,0.59848,0.972633,0.162511,0.383769,0.0705592,0.966626,0.800514,0.249535,0.515961,0.680625,0.574576,0.577122,0.0966681,0.867652,0.464703,0.924912,0.641003,0.0706811,0.671884,0.496159,0.664141,0.386479,0.0765275,0.304509,0.399205,0.495966,0.711498,0.554743,0.775722,0.769793,0.90396,0.916335,0.547826,0.468017,0.339234,0.549108,0.964319,0.163571,0.484973,0.502656,0.312697,0.230349,0.305323,0.0791067,0.651485,0.216876,0.489151,0.0517535,0.83176,0.352016,0.619695,0.0223408,0.436281,0.140631,0.995197,0.197878,0.263986,0.108161,0.993379,0.429444,0.804844,0.387883,0.763296,0.35985,0.346428,0.617268,0.41186,0.121655,0.76428,0.996338,0.96128,0.763324,0.968184,0.592558,0.0482371,0.0902818,0.732294,0.382095,0.181358,0.218802,0.0848922,0.677425,0.0601822,0.68864,0.406625,0.348996,0.0874865,0.302904,0.0819502,0.822659,0.839103,0.778759,0.737197,0.110369,0.427673,0.612665,0.178355,0.162498,0.0311767,0.203279,0.289911,0.551326,0.990187,0.512915,0.586467,0.546054,0.0986381,0.793834,0.0121475,0.996146,0.931484,0.740559,0.0665318,0.945085,0.212774,0.083452,0.0888175,0.0523524,0.111849,0.70651,0.326698,0.720315,0.419434,0.425359,0.201452,0.446105,0.800146,0.798356,0.718717,0.0483353,0.0839655,0.447974,0.940577,0.0515101,0.951937,0.894744,0.888012,0.92682,0.364495,0.195176,0.42244,0.564967,0.767989,0.871718,0.80664,0.638586,0.814915,0.431133,0.593031,0.586541,0.571104,0.421798,0.716881,0.920997,0.146341,0.677802,0.330053,0.82516,0.324188,0.579374,0.976781,0.693708,0.563366,0.684593,0.209415,0.0762556,0.0647171,0.393203,0.271119,0.667817,0.488754,0.250233,0.207761,0.37669,0.0881839,0.121497,0.698917,0.799519,0.88358,0.288595,0.122508,0.537479,0.383926,0.0761433,0.101525,0.886353,0.172769,0.421297,0.234874,0.412201,0.842185,0.706825,0.807278,0.0612152,0.181088,0.904074,0.484317,0.190917,0.471839,0.94667,0.91468,0.912766,0.206165,0.484913,0.206405,0.433173,0.500282,0.242545,0.163131,0.802454,0.695959,0.85913,0.270595,0.387868,0.444304,0.809439,0.941016,0.938244,0.529037,0.0593795,0.132206,0.866663,0.748954,0.518529,0.151003,0.155392,0.918657,0.473038,0.453658,0.0902866,0.936562,0.623682,0.31042,0.339776,0.211924,0.29894,0.998926,0.671155,0.553457,0.395613,0.403156,0.715509,0.0471188,0.467926,0.383662,0.853248,0.339514,0.321707,0.252337,0.02587,0.695282,0.109474,0.0739466,0.30053,0.562301,0.23138,0.608935,0.288574,0.88662,0.638837,0.106074,0.543284,0.414489,0.14143,0.0789375,0.110314,0.546698,0.609289,0.489747,0.12906,0.428014,0.404872,0.30499,0.371172,0.787652,0.792889,0.875362,0.69731,0.527859,0.227219,0.832339,0.138483,0.203933,0.137533,0.529939,0.642557,0.573276,0.498216,0.397249,0.461403,0.783101,0.300826,0.904753,0.335996,0.174293,0.133174,0.938127,0.13707,0.886711,0.0942295,0.290909,0.425487,0.898815,0.89805,0.73258,0.657613,0.112574,0.0828637,0.113169,0.78373,0.200837,0.323795,0.629575,0.214766,0.932529,0.431339,0.20748,0.198009,0.683042,0.957979,0.377429,0.130383,0.085391,0.264125,0.193895,0.38997,0.425822,0.199752,0.556067,0.346501,0.675505,0.186402,0.529232,0.476566,0.232379,0.116559,0.356301,0.451681,0.927488,0.109766,0.466726,0.54241,0.5318,0.0353795,0.327868,0.395712,0.63074,0.667835,0.152035,0.903189,0.418079,0.219183,0.92758,0.000718236,0.649475,0.554266,0.425158,0.279011,0.591235,0.210278,0.405593,0.26924,0.0751948,0.711736,0.0187219,0.28418,0.335432,0.629003,0.934747,0.110702,0.242703,0.561462,0.40152,0.123809,0.989746,0.586302,0.389049,0.00955909,0.212904,0.476649,0.852118,0.387394,0.0492927,0.222835,0.788523,0.569375,0.616788,0.990856,0.397861,0.894134,0.924296,0.990104,0.451766,0.396865,0.299283,0.286104,0.130509,0.176897,0.235395,0.163894,0.640689,0.0549121,0.20618,0.0350883,0.728246,0.48817,0.0141889,0.87714,0.0898555,0.284,0.0589849,0.498444,0.297575,0.809243,0.900025,0.131388,0.123212,0.507332,0.532608,0.587908,0.942818,0.561294,0.95966,0.256034,0.171598,0.892363,0.0673869,0.440558,0.428627,0.370465,0.0687334,0.303057,0.654386,0.709222,0.442362,0.709083,0.86937,0.821641,0.0765989,0.271453,0.123238,0.638746,0.87037,0.730203,0.688785,0.133262,0.391294,0.167207,0.300013,0.983692,0.208951,0.694154,0.713535,0.441792,0.370966,0.984458,0.723452,0.939255,0.393936,0.837408,0.891386,0.942393,0.0363027,0.00771129,0.0298285,0.998627,0.379961,0.64272,0.622152,0.0248479,0.104213,0.535538,0.0765463,0.914896,0.276203,0.600605,0.700262,0.755453,0.544469,0.443043,0.233059,0.62841,0.483647,0.958696,0.759609,0.184352,0.84321,0.482983,0.323285,0.309813,0.636388,0.13088,0.475814,0.290559,0.120262,0.844385,0.357367,0.0562338,0.696357,0.115785,0.69111,0.699426,0.501847,0.783144,0.706681,0.554216,0.615511,0.973695,0.767355,0.29146,0.90098,0.0160036,0.0989816,0.559654,0.749386,0.353199,0.431704,0.68253,0.0715621,0.781293,0.772029,0.118138,0.589403,0.174884,0.930685,0.892433,0.979709,0.796408,0.713667,0.333235,0.0411642,0.417837,0.785443,0.694606,0.511967,0.170135,0.787153,0.12764,0.0537094,0.999826,0.868516,0.30691,0.689012,0.360268,0.0457922,0.782746,0.588226,0.214138,0.501902,0.716487,0.231093,0.479571,0.678048,0.946784,0.665159,0.62016,0.225505,0.202844,0.0629596,0.0930709,0.84589,0.517861,0.261167,0.882464,0.722617,0.346604,0.0468145,0.835502,0.327737,0.568437,0.284507,0.125044,0.092253,0.047502,0.620911,0.386339,0.973232,0.425238,0.189546,0.522383,0.964346,0.513263,0.571973,0.572945,0.406937,0.91017,0.0268851,0.279926,0.339013,0.5927,0.575792,0.41832,0.867085,0.46221,0.532902,0.630379,0.993865,0.457064,0.749778,0.882537,0.678014,0.0916466,0.497983,0.798128,0.0166203,0.647323,0.834311,0.00699633,0.686125,0.0153965,0.173361,0.00365818,0.695131,0.0421656,0.00913674,0.401789,0.666844,0.0665009,0.00601763,0.760064,0.580955,0.999949,0.956357,0.458504,0.571539,0.644978,0.124004,0.592146,0.556662,0.488911,0.658285,0.368503,0.182247,0.993671,0.486688,0.111691,0.838838,0.333849,0.944325,0.508583,0.957246,0.661596,0.0807042,0.273718,0.690301,0.125987,0.980528,0.850237,0.508018,0.662377,0.521592,0.269113,0.220093,0.328215,0.390774,0.0404353,0.768333,0.109572,0.472046,0.196003,0.182195,0.783516,0.309499,0.604445,0.380083,0.559026,0.344579,0.53745,0.861842,0.336688,0.162439,0.693818,0.775837,0.0851604,0.248033,0.25697,0.222724,0.244048,0.701663,0.770272,0.475369,0.974543,0.0838636,0.875962,0.998261,0.0772848,0.243002,0.915202,0.886845,0.892397,0.736125,0.818267,0.263996,0.936946,0.996709,0.294125,0.932054,0.453509,0.869002,0.391179,0.924524,0.953656,0.0156986,0.474047,0.369443,0.543896,0.785955,0.0301343,0.741118,0.136812,0.861844,0.462019,0.306634,0.890617,0.00260305,0.0570819,0.977178,0.899194,0.733402,0.56606,0.586399,0.595418,0.489632,0.207109,0.653357,0.821217,0.680289,0.160075,0.716076,0.631048,0.951336,0.806697,0.0148966,0.905562,0.844045,0.20595,0.0959764,0.286801,0.183624,0.706379,0.112646,0.33847,0.403416,0.423547,0.891982,0.677284,0.695135,0.154712,0.510209,0.223941,0.526691,0.369663,0.356664,0.358598,0.0521447,0.0484403,0.0948457,0.835039,0.356061,0.839157,0.508857,0.259933,0.432831,0.726449,0.557902,0.759259,0.248152,0.930582,0.497477,0.406263,0.122692,0.205346,0.0882831,0.797386,0.457991,0.948091,0.972458,0.777342,0.685876,0.937548,0.963919,0.106722,0.175896,0.823127,0.560875,0.40541,0.853681,0.132645,0.576184,0.810179,0.346232,0.489848,0.108549,0.533535,0.653464,0.281944,0.325742,0.0326594,0.195032,0.377846,0.553926,0.437286,0.531462,0.845966,0.0179211,0.440882,0.96483,0.685849,|0.732574,0.137225,0.254351,0.0113758,0.749263,0.592043,0.961312,0.657351,0.962056,0.84141,0.00671005,0.281818,0.0194891,0.0295724,0.457604,0.0919642,0.686291,0.0927336,0.0835309,0.47891,0.166573,0.570501,0.505943,0.700112,0.397702,0.912535,0.831216,0.578127,0.346904,0.442172,0.519981,0.222778,0.331597,0.943535,0.498979,0.876779,0.347792,0.140739,0.773223,0.319762,0.175209,0.351439,0.564685,0.303341,0.3558,0.457259,0.65446,0.752423,0.452064,0.705557,0.588969,0.158486,0.903991,0.480801,0.183553,0.463635,0.0696989,0.369263,0.217089,0.887908,0.266983,0.0234806,0.624015,0.157722,0.901045,0.795568,0.949853,0.922045,0.25075,0.810507,0.413125,0.333985,0.618507,0.415413,0.561259,0.327308,0.297599,0.374617,0.627551,0.214492,0.441911,0.0449718,0.685526,0.777945,0.518696,0.0285785,0.682873,0.122122,0.105083,0.377562,0.468242,0.187125,0.360519,0.00641668,0.0434623,0.188749,0.892167,0.930526,0.775654,0.0999755,0.464445,0.120651,0.911389,0.533996,0.115158,0.511821,0.467556,0.204384,0.132207,0.294408,0.478926,0.413484,0.983574,0.908644,0.434922,0.711289,0.708554,0.132955,0.313424,0.261009,0.707185,0.291151,0.68679,0.81536,0.437802,0.534156,0.72989,0.73928,0.410115,0.609554,0.961101,0.194366,0.297546,0.272105,0.63244,0.959555,0.880457,0.2431,0.809946,0.284605,0.253108,0.651388,0.921269,0.493609,0.0787626,0.0885704,0.498489,0.296389,0.605167,0.678617,0.228585,0.85904,0.314765,0.679265,0.390683,0.0735314,0.230499,0.68506,0.454958,0.482583,0.352565,0.94966,0.33666,0.185451,0.104638,0.829238,0.928619,0.999642,0.706998,0.616812,0.905533,0.012741,0.732397,0.625711,0.393788,0.720261,0.77265,0.043601,0.946624,0.427495,0.352506,0.943498,0.411157,0.0895413,0.623433,0.666196,0.265562,0.327192,0.655649,0.768567,0.992536,0.0453542,0.0709541,0.984319,0.702872,0.202138,0.356621,0.106551,0.69566,0.0589852,0.771026,0.170478,0.0398269,0.363867,0.989716,0.0376594,0.0753348,0.0962592,0.46344,0.270291,0.671975,0.483672,0.474655,0.291292,0.0249325,0.212517,0.0898319,0.0372516,0.224819,0.105011,0.528165,0.24808,0.533233,0.635697,0.15505,0.711722,0.813405,0.145268,0.0792292,0.687409,0.122788,0.742766,0.17068,0.655965,0.705242,0.204388,0.81553,0.0185841,0.92965,0.303239,0.658653,0.870319,0.439175,0.175068,0.714072,0.935959,0.140117,0.488719,0.806019,0.642838,0.95841,0.431725,0.590061,0.60472,0.196747,0.105774,0.989829,0.825109,0.918703,0.231237,0.970125,0.148556,0.446526,0.708631,0.0552144,0.324081,0.584573,0.0870509,0.216998,0.624578,0.682759,0.374625,0.232875,0.13128,0.784459,0.678088,0.399926,0.125411,0.288351,0.265847,0.25971,0.617996,0.714656,0.643241,0.245776,0.411979,0.710962,0.493806,0.205301,0.285274,0.00646454,0.432478,0.801684,0.00493711,0.828974,0.420099,0.114391,0.744107,0.265947,0.158082,0.724174,0.273583,0.82358,0.566814,0.168944,0.717665,0.667802,0.497744,0.633592,0.239193,0.949041,0.940122,0.111623,0.434377,0.164769,0.806094,0.269406,0.183896,0.341497,0.0693376,0.924746,0.396506,0.831655,0.364192,0.649186,0.549056,0.0182269,0.365008,0.899646,0.339535,0.0118689,0.0268779,0.801376,0.928499,0.682359,0.0950296,0.385074,0.886319,0.722082,0.277079,0.870391,0.468607,0.701957,0.824888,0.497274,0.558952,0.181542,0.891872,0.540743,0.867469,0.36808,0.0540721,0.564123,0.144651,0.660889,0.856402,0.196211,0.805074,0.593491,0.838969,0.43231,0.0467052,0.876709,0.0739639,0.82553,0.233691,0.384967,0.629702,0.336689,0.121341,0.612898,0.854216,0.289273,0.061018,0.956024,0.580793,0.535832,0.753441,0.909202,0.115902,0.98183,0.137542,0.610322,0.613878,0.287321,0.987362,0.42227,0.899967,0.617592,0.806973,0.160289,0.787312,0.113784,0.424595,0.767582,0.0911308,0.0767077,0.386291,0.828048,0.792237,0.556519,0.353428,0.90152,0.393241,0.612438,0.264882,0.197591,0.314231,0.856167,0.357563,0.288335,0.444125,0.76884,0.574707,0.88006,0.239183,0.261647,0.50674,0.997849,0.241145,0.428307,0.979623,0.172671,0.13689,0.849456,0.03847,0.723836,0.439057,0.764871,0.693403,0.157352,0.218238,0.411668,0.811827,0.734534,0.541773,0.519585,0.346446,0.494495,0.378972,0.995885,0.735446,0.428739,0.937874,0.870875,0.124385,0.0757893,0.644117,0.337675,0.695319,0.675176,0.262258,0.21453,0.481259,0.0109222,0.282384,0.194831,0.557647,0.572486,0.729583,0.656854,0.26281,0.70041,0.297402,0.23007,0.388214,0.201314,0.957211,0.136006,0.929637,0.397875,0.799897,0.98633,0.901387,0.309979,0.757103,0.703956,0.764724,0.527586,0.958976,0.661551,0.991933,0.723642,0.513092,0.431696,0.169428,0.957679,0.972991,0.584687,0.147081,0.104126,0.192132,0.474894,0.154058,0.288819,0.878539,0.871849,0.20981,0.519376,0.865232,0.0743189,0.463008,0.150032,0.880227,0.917615,0.264525,0.473542,0.70561,0.138196,0.268881,0.28735,0.411297,0.796404,0.252265,0.494574,0.414311,0.783003,0.0964793,0.235082,0.855669,0.164364,0.601132,0.0190666,0.591048,0.229692,0.52239,0.0940777,0.13406,0.265078,0.467609,0.427638,0.512656,0.225117,0.156959,0.885198,0.827451,0.375443,0.361951,0.692772,0.215936,0.838939,0.440633,0.138144,0.906232,0.732296,0.020371,0.854385,0.83972,0.448872,0.332824,0.223799,0.808131,0.561044,0.95617,0.237453,0.525516,0.284175,0.438102,0.2542,0.590132,0.840737,0.302935,0.243773,0.693302,0.1101,0.415602,0.885995,0.921411,0.751847,0.684635,0.62869,0.689351,0.55503,0.752527,0.318521,0.565599,0.152814,0.836761,0.0232988,0.731878,0.945854,0.550046,0.797438,0.490593,0.0255208,0.46569,0.691216,0.978866,0.60366,0.8151,0.493195,0.425079,0.179596,0.309275,0.661284,0.885889,0.863516,0.49539,0.156991,0.788734,0.199409,0.498376,0.884765,0.263867,0.813354,0.69394,0.765111,0.163652,0.42795,0.453722,0.554329,0.0659005,0.622514,0.354254,0.91318,0.902507,0.773382,0.753274,0.913793,0.0195892,0.229663,0.195723,0.557221,0.618203,0.584907,0.147315,0.798721,0.317883,0.0917959,0.392829,0.134932,0.355753,0.513157,0.106652,0.974281,0.555366,0.0430778,0.601029,0.340762,0.635261,0.897593,0.267041,0.517636,0.660646,0.0483586,0.0534441,0.130219,0.233013,0.924537,0.869574,0.405947,0.511233,0.0526386,0.272246,0.887942,0.33416,0.382634,0.286877,0.671534,0.753481,0.984894,0.768799,0.184875,0.802358,0.393986,0.778787,0.875849,0.916787,0.591032,0.950714,0.529744,0.922607,0.606109,0.401444,0.116297,0.699547,0.412051,0.870751,0.0881492,0.402218,0.706904,0.786795,0.703473,0.885925,0.467081,0.664337,0.774767,0.773972,0.26318,0.607544,0.178909,0.385188,0.264103,0.406617,0.675392,0.881975,0.0313239,0.230634,0.628405,0.918378,0.31118,0.395952,0.518225,0.530379,0.8162,0.860068,0.56202,0.976279,0.621716,0.771355,0.632122,0.599064,0.592529,0.717654,0.831004,0.643492,0.313802,0.948632,0.0596216,0.270711,0.353485,0.218422,0.320187,0.289375,0.310527,0.491214,0.396499,0.246039,0.354875,0.883005,0.619699,0.638464,0.940143,0.898333,0.12344,0.100947,0.53438,0.206069,0.347838,0.305153,0.130078,0.382537,0.884568,0.171688,0.137561,0.844162,0.113998,0.961837,0.873575,0.358498,0.784092,0.775116,0.4555,0.885495,0.648889,0.778032,0.901385,0.13335,0.44157,0.719453,0.974524,0.0805341,0.198293,0.224461,0.580885,0.6736,0.592124,0.515763,0.940871,0.658225,0.615586,0.257844,0.264207,0.354251,0.86299,0.716669,0.491313,0.120002,0.13086,0.762311,0.0937261,0.785885,0.672305,0.295352,0.807129,0.386558,0.955575,0.0172656,0.163554,0.989112,0.327883,0.794226,0.123317,0.0201653,0.0280314,0.271561,0.70095,0.136174,0.411714,0.463266,0.865067,0.66726,0.148624,0.716348,0.515244,0.359743,0.542365,0.101959,0.378569,0.197028,0.534054,0.215535,0.159438,0.60879,0.934577,0.964824,0.391513,0.420063,0.451251,0.272241,0.733444,0.0280043,0.310123,0.616224,0.0492409,0.505833,0.359197,0.425,0.631402,0.328523,0.0404108,0.396261,0.730476,0.249866,0.443733,0.0706035,0.510253,0.424944,0.780802,0.921794,0.0628912,0.132341,0.216194,0.268877,0.176434,0.288655,0.821227,0.986789,0.192014,0.705721,0.958091,0.0343112,0.280811,0.431234,0.361502,0.470772,0.465893,0.553116,0.823501,0.289001,0.685441,0.769844,0.83798,0.844212,0.194469,0.157944,0.0478011,0.0398182,0.791603,0.742487,0.338484,0.461635,0.34095,0.144158,0.552905,0.386058,0.724273,0.308662,0.00473338,0.177598,0.251003,0.678273,0.696968,0.694324,0.63884,0.653447,0.96955,0.998735,0.440459,0.600694,0.302356,0.885035,0.0421337,0.385587,0.126125,0.679319,0.0770811,0.101422,0.119149,0.159845,0.806846,0.568228,0.372776,0.60943,0.536809,0.442099,0.308649,0.145423,0.576975,0.304152,0.793617,0.44886,0.928484,0.700456,0.111832,0.485406,0.753416,0.0568072,0.234152,0.340781,0.309583,0.271354,0.419931,0.709954,0.704293,0.721456,0.552473,0.841812,0.569512,0.420738,0.517094,0.416986,0.671433,0.0819281,0.0619249,0.755511,0.598101,0.253418,0.0936344,0.826356,0.485495,0.200334,0.530807,0.113159,0.41323,0.106613,0.0489182,0.0740896,0.944477,0.716543,0.936016,0.895261,0.650875,0.832485,0.903093,0.831161,0.333868,0.137888,0.49302,0.665538,0.161217,0.527429,0.999258,0.0750607,0.487084,0.24408,0.76115,0.611889,0.606744,0.109098,0.461586,0.230858,0.772512,0.0987339,0.293957,0.656115,0.767858,0.53146,0.558017,0.917011,0.866106,0.796824,0.0905847,0.785023,0.657706,0.861365,0.182404,0.99075,0.794175,0.722508,0.292273,0.520525,0.617468,0.85616,0.265282,0.706597,0.0315692,0.918134,0.105521,0.75873,|0.816972,0.79002,0.361455,0.941356,0.122471,0.349707,0.0363352,0.738777,0.725617,0.388832,0.423501,0.0352062,0.43566,0.202362,0.334658,0.608323,0.117391,0.38026,0.740214,0.908193,0.7766,0.617973,0.319412,0.616435,0.0398731,0.752676,0.744551,0.257264,0.932222,0.23692,0.0169606,0.981485,0.355473,0.861638,0.442623,0.657188,0.599131,0.107453,0.99953,0.985672,0.322757,0.0265117,0.746867,0.827385,0.391143,0.380031,0.901638,0.159004,0.244689,0.106573,0.80556,0.856801,0.144432,0.49545,0.248397,0.372048,0.0274678,0.620594,0.04554,0.960878,0.125816,0.0257955,0.360867,0.919076,0.863825,0.344559,0.880705,0.461072,0.747652,0.710089,0.655679,0.934419,0.714433,0.758392,0.263355,0.453815,0.0876936,0.245458,0.810889,0.954041,0.616993,0.896437,0.290281,0.581164,0.252879,0.763546,0.648842,0.762863,0.283218,0.714291,0.298661,0.707926,0.153706,0.626603,0.78732,0.269878,0.341534,0.886223,0.257669,0.0472243,0.00372118,0.489501,0.504649,0.51348,0.927662,0.201371,0.749034,0.140169,0.160768,0.0171896,0.19053,0.55492,0.917823,0.683377,0.177985,0.354299,0.36859,0.532887,0.357383,0.503722,0.906566,0.0355745,0.698603,0.66084,0.768063,0.735968,0.872257,0.375848,0.525281,0.949058,0.0494912,0.817972,0.518358,0.936324,0.70871,0.953778,0.563011,0.201497,0.674514,0.515992,0.852507,0.743091,0.150718,0.863662,0.259056,0.265277,0.412653,0.87118,0.965697,0.790457,0.382001,0.481205,0.985074,0.505595,0.204388,0.426529,0.933886,0.95796,0.22275,0.638069,0.699936,0.086951,0.538208,0.288923,0.185383,0.250515,0.424903,0.18356,0.545011,0.763406,0.723432,0.025497,0.763489,0.483933,0.34878,0.842306,0.289512,0.730394,0.92182,0.173633,0.504299,0.268544,0.954232,0.130635,0.205288,0.082919,0.289536,0.469039,0.998967,0.607145,0.45574,0.687428,0.302804,0.414978,0.237646,0.554721,0.871985,0.579881,0.930376,0.993145,0.355325,0.200639,0.0364105,0.625229,0.967897,0.269175,0.3779,0.811521,0.706922,0.829752,0.501505,0.458541,0.278679,0.0203221,0.923665,0.738267,0.784687,0.29011,0.580219,0.810157,0.760405,0.656756,0.986719,0.362791,0.0149633,0.18538,0.913251,0.393847,0.813095,0.818457,0.395879,0.305503,0.170585,0.735085,0.0402077,0.511334,0.905864,0.301629,0.720004,0.0341055,0.171949,0.41977,0.193604,0.808114,0.186693,0.719573,0.593644,0.939766,0.373063,0.634086,0.660028,0.365987,0.815252,0.609545,0.516759,0.155525,0.966424,0.199086,0.932486,0.223356,0.126125,0.489793,0.484716,0.246125,0.548308,0.727187,0.722012,0.145234,0.350114,0.729792,0.152299,0.859235,0.852614,0.687463,0.21759,0.506086,0.984646,0.453288,0.0597438,0.296981,0.392911,0.856783,0.53631,0.534786,0.266503,0.5188,0.78026,0.24013,0.349457,0.255802,0.0349676,0.584409,0.71535,0.572014,0.684624,0.899332,0.3316,0.800695,0.903198,0.814065,0.787253,0.07046,0.18085,0.543979,0.164132,0.962383,0.280606,0.0373107,0.79145,0.625598,0.741273,0.414849,0.777433,0.753455,0.73841,0.542537,0.49939,0.793887,0.274061,0.196727,0.0327905,0.406531,0.0300315,0.115661,0.675381,0.34792,0.861275,0.96817,0.278706,0.903162,0.711209,0.0553446,0.18014,0.975564,0.171222,0.654612,0.315429,0.30611,0.462048,0.931109,0.901106,0.391264,0.236491,0.00586957,0.464293,0.721112,0.293867,0.501698,0.30323,0.642455,0.931235,0.521718,0.140043,0.0354142,0.619717,0.88313,0.926007,0.560512,0.949603,0.413731,0.751661,0.776975,0.814523,0.673459,0.389221,0.607419,0.736475,0.792818,0.378008,0.542397,0.230561,0.234977,0.861984,0.903483,0.467113,0.625821,0.528181,0.183879,0.150958,0.125893,0.873542,0.250324,0.187096,0.130097,0.499213,0.471685,0.91751,0.668858,0.789251,0.98711,0.819358,0.0289091,0.0301515,0.425155,0.232425,0.7438,0.901466,0.330035,0.06834,0.882276,0.186721,0.570658,0.281298,0.57739,0.882413,0.638349,0.862573,0.886976,0.444778,0.963782,0.266156,0.181249,0.848035,0.453547,0.103809,0.588241,0.112561,0.963447,0.745024,0.0586426,0.205682,0.0708416,0.154405,0.431546,0.978771,0.682491,0.445055,0.72251,0.936793,0.889347,0.744887,0.986555,0.721561,0.12501,0.38514,0.484311,0.947311,0.316503,0.843329,0.970203,0.45372,0.766268,0.390514,0.378782,0.739176,0.799066,0.131659,0.727333,0.485555,0.27565,0.210689,0.911936,0.571476,0.821375,0.153861,0.89588,0.0583885,0.390033,0.355167,0.503771,0.0281324,0.0637096,0.40226,0.567509,0.562307,0.00953239,0.859888,0.694027,0.301056,0.738902,0.0419927,0.160118,0.540739,0.0532552,0.240639,0.763558,0.965412,0.576984,0.666303,0.473876,0.814076,0.922161,0.771815,0.409071,0.404832,0.574517,0.990666,0.224183,0.484233,0.919896,0.366193,0.970376,0.949271,0.880405,0.0234542,0.701041,0.237837,0.950583,0.971584,0.839904,0.432863,0.332535,0.818259,0.539548,0.0996751,0.630005,0.627536,0.433476,0.843673,0.534551,0.135459,0.588965,0.679016,0.21774,0.507067,0.2317,0.704901,0.163974,0.947142,0.59091,0.192426,0.0964023,0.59194,0.68026,0.63105,0.916451,0.137497,0.32669,0.353072,0.79483,0.141143,0.370497,0.83043,0.518019,0.190614,0.803699,0.684603,0.574649,0.451315,0.769016,0.445912,0.468679,0.519951,0.721287,0.654036,0.949058,0.63747,0.227489,0.178007,0.642091,0.601045,0.374101,0.932609,0.744947,0.611037,0.827549,0.311736,0.0558506,0.301726,0.555434,0.0145741,0.384399,0.902848,0.877026,0.74677,0.886003,0.676599,0.925598,0.379273,0.931409,0.355852,0.693861,0.433437,0.464624,0.931368,0.925871,0.519423,0.0805308,0.803228,0.219896,0.156476,0.107949,0.45545,0.831407,0.427955,0.450214,0.273174,0.270189,0.0255459,0.186824,0.0730141,0.727421,0.465323,0.77659,0.583218,0.70979,0.115376,0.832841,0.585895,0.260461,0.419032,0.242508,0.846763,0.260753,0.483877,0.947201,0.867195,0.642278,0.690944,0.217421,0.404101,0.242026,0.0688441,0.970932,0.00505835,0.428325,0.28063,0.298907,0.716854,0.287732,0.466346,0.74189,0.794193,0.856016,0.588597,0.746984,0.738422,0.0122703,0.119536,0.482544,0.572757,0.331155,0.88322,0.385023,0.448031,0.0749817,0.965412,0.548833,0.425903,0.956339,0.606981,0.179533,0.0847251,0.295368,0.755337,0.348108,0.424786,0.799902,0.500732,0.97512,0.824225,0.101621,0.668705,0.382621,0.691866,0.592683,0.064742,0.699531,0.806991,0.0502712,0.8149,0.119073,0.827894,0.310153,0.0666927,0.225373,0.211601,0.0121303,0.963989,0.85551,0.928803,0.503232,0.28243,0.898034,0.474433,0.785791,0.0905548,0.940183,0.549654,0.637347,0.880438,0.18193,0.59777,0.955382,0.00109464,0.749377,0.455237,0.541955,0.113062,0.973166,0.582539,0.950584,0.238169,0.638089,0.818281,0.159003,0.753714,0.18752,0.351234,0.961538,0.30138,0.0198678,0.701827,0.64507,0.291144,0.0702028,0.321685,0.934523,0.741011,0.895215,0.689403,0.513573,0.377568,0.39919,0.711988,0.150083,0.506453,0.920685,0.639432,0.969455,0.242815,0.925373,0.187216,0.110953,0.777164,0.960901,0.258942,0.389804,0.762467,0.0473487,0.649992,0.411709,0.51209,0.42928,0.076843,0.988381,0.0373908,0.249928,0.498057,0.336671,0.613413,0.796435,0.904531,0.930873,0.95204,0.549199,0.655754,0.115559,0.947416,0.888265,0.880796,0.0881882,0.383495,0.657503,0.407241,0.15235,0.677004,0.147697,0.529829,0.200787,0.12545,0.853552,0.494428,0.894843,0.6298,0.904073,0.25683,0.998044,0.266961,0.827335,0.927927,0.566089,0.990427,0.786896,0.438592,0.704597,0.688519,0.0569339,0.628432,0.486515,0.521345,0.42242,0.383652,0.453112,0.891077,0.934945,0.766103,0.974692,0.427331,0.00396359,0.879163,0.742854,0.938596,0.152635,0.60222,0.195204,0.394477,0.851792,0.396431,0.334147,0.357686,0.400384,0.667048,0.647233,0.15771,0.488359,0.699854,0.822263,0.0210424,0.0863125,0.977871,0.864686,0.632061,0.301818,0.902627,0.900855,0.800388,0.246352,0.874711,0.834435,0.26339,0.0291634,0.417736,0.0985969,0.913805,0.416947,0.38378,0.412005,0.637465,0.368887,0.210875,0.825135,0.163222,0.482711,0.294144,0.858581,0.266825,0.557991,0.228702,0.532019,0.62304,0.325579,0.821274,0.699591,0.35602,0.752426,0.0360145,0.573685,0.0467178,0.0804728,0.850108,0.57453,0.247357,0.632657,0.8882,0.408672,0.0764863,0.170849,0.975357,0.420215,0.160405,0.818381,0.824075,0.225102,0.774614,0.774038,0.421013,0.943069,0.440457,0.876708,0.175509,0.467742,0.618506,0.659216,0.739546,0.143858,0.398117,0.105075,0.19104,0.98562,0.0846525,0.856335,0.0639856,0.208564,0.779332,0.956209,0.442221,0.19223,0.446661,0.790235,0.83653,0.517163,0.983471,0.274914,0.732542,0.593763,0.0894564,0.650012,0.814786,0.228082,0.222211,0.076826,0.516279,0.215282,0.987781,0.191532,0.282528,0.898501,0.327257,0.462174,0.0142896,0.252218,0.228881,0.570854,0.139957,0.943921,0.653142,0.135452,0.133417,0.929045,0.509409,0.583572,0.680909,0.462808,0.667019,0.481727,0.18629,0.524211,0.683495,0.707604,0.470662,0.10349,0.0709467,0.479422,0.0516702,0.812436,0.184515,0.0333272,0.225034,0.331691,0.98624,0.744344,0.0800941,0.723679,0.972477,0.903005,0.952526,0.39378,0.904571,0.989459,0.54151,0.92275,0.490649,0.357017,0.729976,0.680998,0.155248,0.330432,0.413548,0.772366,0.290776,0.00642461,0.566968,0.480223,0.0630018,0.0334343,0.472925,0.608479,0.0958714,0.361119,0.74227,0.92262,0.792594,0.919448,0.316727,0.970021,0.654324,0.0716897,0.84078,0.862438,0.984846,0.549662,0.565316,0.164576,0.452789,0.340799,0.542719,0.592445,0.957311,0.312581,0.372501,0.624852,0.399728,0.647648,0.771869,0.188189,0.49828,0.861315,0.102376,0.567201,|0.0592732,0.990253,0.453096,0.775213,0.0748098,0.269108,0.806572,0.090225,0.567565,0.0843206,0.640176,0.475993,0.111198,0.780972,0.900821,0.257925,0.814886,0.0625929,0.804934,0.851239,0.225464,0.20427,0.0843707,0.238295,0.120088,0.144501,0.907058,0.245467,0.20517,0.790489,0.921642,0.726343,0.324093,0.688147,0.189764,0.666375,0.767448,0.170102,0.715613,0.438151,0.116017,0.077305,0.8193,0.0779677,0.241427,0.0302463,0.630131,0.732988,0.237391,0.677042,0.960971,0.113631,0.166834,0.109233,0.696856,0.145976,0.942216,0.896584,0.0355937,0.243949,0.425843,0.559836,0.389177,0.60694,0.992711,0.84543,0.803355,0.221551,0.017974,0.0906703,0.27768,0.569339,0.0999825,0.370016,0.0917869,0.406865,0.798326,0.65074,0.705758,0.388173,0.36082,0.895926,0.517016,0.111674,0.732921,0.949284,0.811024,0.172979,0.516281,0.309488,0.96779,0.755523,0.898718,0.206572,0.241488,0.978159,0.19457,0.703778,0.877183,0.565694,0.00737214,0.193726,0.906578,0.154062,0.850878,0.690801,0.869248,0.475368,0.160556,0.137688,0.0930098,0.976506,0.719224,0.223898,0.35778,0.739315,0.361179,0.581574,0.793567,0.0755753,0.57469,0.420685,0.0674285,0.77861,0.451452,0.909471,0.253961,0.345506,0.170366,0.606475,0.342365,0.329538,0.729869,0.860892,0.889491,0.633309,0.938077,0.25439,0.658966,0.548898,0.562277,0.694578,0.343909,0.0478968,0.352905,0.766584,0.0155016,0.426221,0.661363,0.138192,0.525767,0.874514,0.735155,0.947669,0.0699309,0.656533,0.729589,0.132899,0.551518,0.43507,0.772038,0.760993,0.936745,0.357771,0.178624,0.999634,0.319448,0.94845,0.509275,0.955799,0.195882,0.826092,0.595268,0.662887,0.946636,0.899639,0.725077,0.652107,0.903843,0.434209,0.157437,0.860587,0.966858,0.252489,0.130153,0.614298,0.82177,0.692598,0.388667,0.353708,0.799409,0.665665,0.299267,0.0675551,0.220345,0.817875,0.24741,0.656455,0.804356,0.658356,0.638796,0.411978,0.370586,0.269174,0.121861,0.383435,0.919716,0.693177,0.663171,0.319636,0.683325,0.862606,0.739451,0.457372,0.0260001,0.571774,0.767402,0.586662,0.83724,0.334809,0.137486,0.201798,0.331149,0.432586,0.794407,0.966094,0.108541,0.94128,0.106452,0.233878,0.0525509,0.282242,0.474844,0.564015,0.742556,0.602002,0.629667,0.0820203,0.540021,0.112782,0.38813,0.298936,0.639688,0.245744,0.442726,0.0715885,0.532026,0.867375,0.801579,0.746386,0.879237,0.860474,0.205084,0.402619,0.953757,0.756933,0.0856745,0.0556596,0.82105,0.958863,0.420673,0.175249,0.84438,0.39471,0.809215,0.850608,0.00671619,0.0810817,0.630151,0.816007,0.0422186,0.791773,0.10703,0.776103,0.569275,0.438104,0.726232,0.378204,0.706981,0.309878,0.0352355,0.840345,0.931332,0.856375,0.701745,0.858118,0.668116,0.0028314,0.370468,0.762676,0.367576,0.9499,0.108543,0.937817,0.194838,0.914453,0.788024,0.109059,0.639284,0.591671,0.520779,0.103842,0.899791,0.765286,0.208991,0.158648,0.315372,0.741309,0.91603,0.0734087,0.765946,0.496721,0.606781,0.478289,0.845688,0.793708,0.0636696,0.344703,0.15034,0.826718,0.464437,0.308777,0.175755,0.699081,0.533856,0.804791,0.21308,0.413184,0.232262,0.856269,0.830528,0.422892,0.248435,0.686269,0.265598,0.133861,0.51598,0.264299,0.0650483,0.276567,0.0275642,0.729929,0.272689,0.596453,0.120863,0.637218,0.0736924,0.3503,0.339374,0.832821,0.638392,0.286957,0.762567,0.72918,0.233788,0.689174,0.33367,0.849218,0.867894,0.38375,0.924445,0.798436,0.112341,0.433291,0.807933,0.284951,0.0365149,0.490552,0.0624833,0.789332,0.589459,0.586744,0.30037,0.668303,0.310936,0.131397,0.571789,0.353166,0.342674,0.0967976,0.101873,0.852276,0.67318,0.654133,0.945412,0.964083,0.713823,0.132773,0.266141,0.785477,0.260779,0.907344,0.651893,0.283581,0.122705,0.145142,0.660032,0.121887,0.0875367,0.493066,0.0360689,0.840516,0.512431,0.995078,0.922892,0.284929,0.20275,0.355661,0.620898,0.909765,0.68304,0.622162,0.00320452,0.543543,0.830714,0.783375,0.842383,0.0126907,0.728584,0.263747,0.81675,0.623673,0.143089,0.108793,0.374143,0.628852,0.592643,0.919873,0.203415,0.973127,0.408643,0.868212,0.956137,0.673643,0.123557,0.789296,0.417845,0.358184,0.222371,0.752295,0.135507,0.414005,0.92196,0.743181,0.224175,0.364136,0.705811,0.068437,0.733117,0.712832,0.837165,0.0116681,0.534773,0.869884,0.720996,0.688005,0.678993,0.173662,0.424895,0.914169,0.561405,0.553361,0.719028,0.362983,0.888062,0.315395,0.033305,0.673396,0.315712,0.369489,0.332775,0.176796,0.349025,0.779304,0.593882,0.545553,0.828159,0.717607,0.766735,0.232832,0.814533,0.917592,0.0441432,0.174016,0.30571,0.28493,0.142068,0.437509,0.270531,0.800942,0.238421,0.261025,0.796944,0.362699,0.482933,0.794277,0.293869,0.567072,0.675909,0.975908,0.343878,0.410404,0.741085,0.442573,0.284703,0.850295,0.0918254,0.318983,0.858565,0.145049,0.798903,0.208113,0.439111,0.20166,0.878974,0.418802,0.536704,0.383837,0.327383,0.686187,0.538055,0.989153,0.77905,0.361749,0.00963712,0.0552885,0.25704,0.442211,0.602377,0.283758,0.566321,0.510051,0.943647,0.997155,0.372883,0.579551,0.00375092,0.235614,0.0483007,0.334131,0.132755,0.116518,0.326193,0.233903,0.862618,0.572144,0.825495,0.467033,0.351189,0.845972,0.0559994,0.0650539,0.847688,0.820084,0.863389,0.0922751,0.425126,0.995604,0.304495,0.177487,0.833926,0.302127,0.382923,0.734857,0.124761,0.0131657,0.257045,0.107687,0.462233,0.771261,0.00800633,0.268686,0.60295,0.261638,0.433589,0.477706,0.589197,0.0436944,0.89783,0.457485,0.381965,0.985818,0.588941,0.25545,0.563743,0.760985,0.157219,0.467507,0.20018,0.46824,0.333427,0.331631,0.319442,0.268842,0.797941,0.761546,0.449212,0.142219,0.0153438,0.108115,0.675542,0.449838,0.304806,0.252022,0.767693,0.369732,0.710136,0.738808,0.859351,0.605025,0.885267,0.209097,0.501588,0.755989,0.820253,0.527391,0.491375,0.482172,0.281532,0.0179977,0.532525,0.735864,0.888606,0.953718,0.808614,0.203,0.787378,0.392108,0.858553,0.586616,0.668518,0.204529,0.157636,0.56063,0.100313,0.688455,0.0854236,0.245523,0.316637,0.740569,0.0451863,0.787484,0.583885,0.426941,0.390415,0.325478,0.718103,0.95807,0.408692,0.799211,0.235839,0.868209,0.995831,0.615624,0.973731,0.39844,0.20113,0.0560824,0.468497,0.742327,0.611104,0.0823638,0.958825,0.943311,0.628089,0.394694,0.998397,0.241192,0.827263,0.929444,0.999992,0.436828,0.808809,0.923014,0.218488,0.222102,0.195815,0.950979,0.33596,0.861387,0.822865,0.918332,0.316219,0.663378,0.962614,0.256126,0.486569,0.0668383,0.785127,0.425351,0.555301,0.408685,0.011161,0.795577,0.379781,0.469504,0.341082,0.729642,0.934729,0.201451,0.186329,0.0208561,0.67284,0.0131595,0.124219,0.979933,0.234832,0.126075,0.41613,0.474624,0.927161,0.199006,0.539633,0.767402,0.956862,0.82796,0.284178,0.328224,0.145356,0.0558233,0.51683,0.0911093,0.0297026,0.870711,0.890026,0.801652,0.0793977,0.659599,0.60922,0.833362,0.323376,0.548726,0.0751579,0.566873,0.699702,0.693493,0.735724,0.66077,0.34583,0.251075,0.771872,0.902159,0.981785,0.676655,0.61622,0.846413,0.620154,0.0553246,0.455817,0.178898,0.447988,0.253168,0.311472,0.0296084,0.217363,0.322377,0.960608,0.0856752,0.787911,0.677822,0.394813,0.904952,0.463155,0.317291,0.4286,0.315185,0.162586,0.0310153,0.240601,0.0281867,0.313032,0.843988,0.295193,0.52796,0.529559,0.796357,0.23813,0.338679,0.610193,0.69244,0.0610293,0.0447941,0.0618634,0.553124,0.55295,0.846403,0.798812,0.987715,0.738852,0.289538,0.232032,0.700045,0.940353,0.00763643,0.246923,0.104766,0.0661854,0.80251,0.0732919,0.280794,0.167399,0.782385,0.351623,0.0761649,0.340751,0.80785,0.491147,0.939955,0.306439,0.761359,0.904694,0.532221,0.233772,0.506259,0.580702,0.0342171,0.115699,0.0535975,0.671909,0.495589,0.605945,0.480107,0.424087,0.561782,0.419473,0.389342,0.530703,0.0215837,0.367192,0.813449,0.634085,0.931862,0.296277,0.778965,0.226253,0.752513,0.0347279,0.113057,0.0143054,0.486589,0.469575,0.308318,0.0111813,0.374721,0.843895,0.0383962,0.778482,0.429113,0.77806,0.267874,0.123646,0.929578,0.344275,0.706094,0.0975696,0.111772,0.908642,0.482488,0.874054,0.490127,0.24743,0.577941,0.868623,0.337584,0.199971,0.860824,0.654934,0.720113,0.374598,0.574352,0.204815,0.574165,0.262555,0.621249,0.142847,0.916372,0.685382,0.435999,0.767707,0.697149,0.532231,0.471235,0.765713,0.0126128,0.311139,0.760519,0.808267,0.191938,0.543434,0.862889,0.665688,0.846994,0.250919,0.245023,0.722798,0.310212,0.833848,0.417609,0.93361,0.660192,0.331426,0.848523,0.0513024,0.949506,0.781162,0.854218,0.0572817,0.345511,0.685744,0.15175,0.357389,0.626109,0.986898,0.674207,0.338995,0.325837,0.109447,0.219986,0.179626,0.566046,0.954012,0.171866,0.607449,0.762286,0.325838,0.950715,0.130193,0.488155,0.317185,0.283908,0.521484,0.47307,0.938198,0.777242,0.974527,0.489214,0.975177,0.677151,0.0669554,0.413058,0.326037,0.105788,0.548841,0.324339,0.642396,0.886207,0.637371,0.338373,0.0143143,0.959142,0.298419,0.160131,0.608257,0.773411,0.367617,0.301712,0.398145,0.898011,0.453236,0.370884,0.477034,0.0638198,0.683766,0.562765,0.766994,0.795193,0.716977,0.0689435,0.93371,0.424422,0.43533,0.163386,0.772233,0.302975,0.607891,0.844954,0.888798,0.285231,0.990607,0.918139,0.163645,0.0349176,0.424985,0.270077,0.501657,0.939278,0.936684,0.450409,0.423418,0.930268,0.27374,0.00893664,0.817532,0.35103,0.627166,0.319367,0.976556,0.791636,0.731322,0.871211,|0.620588,0.649091,0.155206,0.299022,0.992795,0.579258,0.996765,0.96917,0.927213,0.643994,0.309778,0.234813,0.340088,0.742779,0.412084,0.634979,0.417895,0.636473,0.917173,0.572631,0.10645,0.34548,0.0248473,0.989868,0.0146344,0.656677,0.42073,0.482209,0.346504,0.887942,0.0617482,0.391234,0.664824,0.735915,0.415305,0.503659,0.926445,0.617599,0.786395,0.212062,0.942764,0.619643,0.15838,0.321537,0.88453,0.605698,0.718805,0.973936,0.428018,0.499669,0.446751,0.328222,0.0815836,0.178823,0.460635,0.894246,0.867431,0.409589,0.0300254,0.804203,0.669005,0.227402,0.835642,0.650587,0.547125,0.737462,0.97973,0.660245,0.41116,0.43073,0.30173,0.868138,0.853419,0.764426,0.990438,0.338448,0.362651,0.729794,0.71289,0.328227,0.742006,0.18858,0.520489,0.80378,0.475269,0.227172,0.611283,0.0272986,0.098479,0.496341,0.0945435,0.847553,0.866126,0.372259,0.0774167,0.544872,0.427662,0.376207,0.983076,0.935645,0.078191,0.959282,0.296944,0.788271,0.427816,0.354984,0.755921,0.0713151,0.729351,0.482072,0.0856916,0.186713,0.602926,0.72064,0.126677,0.951141,0.080582,0.925104,0.378854,0.484674,0.885126,0.168274,0.385662,0.934666,0.413559,0.62305,0.619904,0.489481,0.0680565,0.284059,0.700855,0.600908,0.771339,0.46968,0.618509,0.873571,0.984312,0.964472,0.751445,0.0365022,0.213863,0.844411,0.0126584,0.199398,0.971919,0.0126715,0.0664682,0.91071,0.445524,0.53455,0.784642,0.19729,0.484723,0.884773,0.329511,0.749914,0.40171,0.891272,0.0834082,0.233448,0.614395,0.117624,0.121011,0.0973935,0.0377163,0.0644987,0.659671,0.738966,0.402568,0.271291,0.354208,0.33743,0.442842,0.174997,0.135189,0.344317,0.954245,0.576583,0.831723,0.201514,0.995998,0.48245,0.824249,0.89403,0.100927,0.707832,0.629799,0.245932,0.348931,0.529298,0.405138,0.423223,0.538238,0.698482,0.140617,0.970845,0.574617,0.763703,0.601424,0.401454,0.705679,0.549355,0.0510812,0.988808,0.0340863,0.618047,0.711097,0.735155,0.597608,0.722597,0.522216,0.768966,0.51776,0.467236,0.946239,0.386817,0.666431,0.238158,0.035571,0.812009,0.833185,0.455938,0.116279,0.184118,0.313614,0.840465,0.696437,0.783519,0.589218,0.367179,0.543552,0.860604,0.410709,0.7327,0.162742,0.917958,0.156376,0.83509,0.303673,0.90678,0.548722,0.710917,0.790411,0.654111,0.655491,0.5881,0.108528,0.0976736,0.598362,0.50711,0.368451,0.216815,0.0661048,0.703199,0.434922,0.443577,0.05035,0.634264,0.810938,0.169032,0.21776,0.504965,0.989129,0.310088,0.807816,0.257864,0.910544,0.195988,0.513463,0.148352,0.463851,0.870641,0.401225,0.793341,0.587912,0.101443,0.611588,0.533597,0.959785,0.337965,0.43631,0.374752,0.166177,0.306546,0.605308,0.995983,0.0321712,0.973023,0.524036,0.123236,0.989441,0.439125,0.159407,0.54052,0.279961,0.136749,0.165318,0.574127,0.608177,0.531923,0.886829,0.60923,0.808723,0.549926,0.109422,0.856627,0.535227,0.15281,0.69343,0.717435,0.170453,0.701822,0.543898,0.375475,0.282332,0.802909,0.0903108,0.634174,0.778314,0.722433,0.807822,0.988721,0.171454,0.489252,0.341935,0.12564,0.722034,0.67158,0.260915,0.15733,0.723273,0.678281,0.567383,0.132646,0.580748,0.591743,0.300311,0.336097,0.337495,0.250794,0.27163,0.698006,0.210591,0.804437,0.728171,0.801306,0.357679,0.670376,0.146768,0.0139005,0.907105,0.97062,0.250178,0.200866,0.188111,0.230041,0.992243,0.32694,0.0294676,0.245142,0.843403,0.819153,0.669756,0.128812,0.372346,0.608516,0.986186,0.747472,0.399724,0.419668,0.143172,0.874964,0.301425,0.580908,0.369732,0.231205,0.84277,0.659977,0.899001,0.361891,0.356517,0.708599,0.304309,0.856951,0.571515,0.50792,0.521994,0.696725,0.926406,0.52588,0.0147047,0.29285,0.349984,0.313964,0.457368,0.667116,0.519124,0.482891,0.678563,0.12309,0.224893,0.809852,0.798006,0.361829,0.0583621,0.656206,0.64586,0.551432,0.865462,0.440437,0.550787,0.479423,0.576918,0.628447,0.221044,0.530534,0.0687697,0.993409,0.782369,0.783703,0.589048,0.806146,0.841256,0.622332,0.393087,0.524318,0.80878,0.988836,0.757689,0.170154,0.33853,0.314957,0.213847,0.8837,0.360617,0.821561,0.375868,0.825795,0.0730184,0.4114,0.20514,0.967537,0.398787,0.0194264,0.300386,0.242981,0.264244,0.473135,0.881009,0.965098,0.921819,0.913685,0.262219,0.0680413,0.434145,0.722732,0.808932,0.562929,0.14353,0.54907,0.149065,0.899473,0.492704,0.0944268,0.457103,0.737166,0.45547,0.16838,0.447904,0.415254,0.924983,0.816739,0.255443,0.139848,0.291548,0.213944,0.3948,0.444318,0.313332,0.74773,0.915644,0.368107,0.401739,0.345344,0.808622,0.510282,0.15392,0.644584,0.223233,0.461854,0.246894,0.915434,0.764594,0.495275,0.00810045,0.239124,0.953511,0.113526,0.167152,0.715691,0.184177,0.887171,0.653085,0.39079,0.394632,0.485954,0.527474,0.794744,0.784727,0.221429,0.511323,0.449781,0.0592474,0.463095,0.0809767,0.0656034,0.343775,0.497358,0.3849,0.247389,0.557075,0.940678,0.59386,0.552389,0.10166,0.738545,0.777253,0.484618,0.866309,0.0452936,0.558736,0.039249,0.0338924,0.404685,0.907705,0.560117,0.412054,0.709574,0.203183,0.269939,0.547447,0.702815,0.450294,0.103725,0.892956,0.964742,0.823856,0.287826,0.843936,0.294421,0.0705457,0.731463,0.548443,0.521893,0.152523,0.36641,0.381278,0.109415,0.93198,0.130824,0.291231,0.00189257,0.0565673,0.0181133,0.604014,0.229255,0.116456,0.142312,0.73993,0.291513,0.787551,0.435186,0.705386,0.0955797,0.657722,0.361732,0.632724,0.0729727,0.242735,0.999674,0.727249,0.0146183,0.333678,0.511165,0.449256,0.768165,0.352254,0.337538,0.263956,0.528042,0.018357,0.160948,0.0880818,0.458195,0.0991452,0.975015,0.6572,0.388273,0.673942,0.611513,0.464142,0.748485,0.206474,0.934199,0.563364,0.772366,0.634579,0.33221,0.685518,0.0419158,0.582437,0.694531,0.782087,0.859053,0.137746,0.030679,0.407471,0.997062,0.232304,0.249401,0.251704,0.889306,0.493453,0.242615,0.357596,0.576174,0.21357,0.449713,0.484441,0.249679,0.919715,0.149942,0.50148,0.703822,0.890463,0.287905,0.238201,0.261579,0.34192,0.586374,0.609519,0.859565,0.689534,0.00191671,0.777508,0.216327,0.412934,0.38308,0.577433,0.321463,0.146896,0.527843,0.288009,0.757887,0.984122,0.743345,0.0315161,0.985137,0.481142,0.96563,0.950513,0.52558,0.120984,0.968645,0.0228397,0.0838649,0.223138,0.0764002,0.325719,0.099344,0.245403,0.798486,0.186263,0.468468,0.991788,0.747045,0.845766,0.860236,0.923887,0.220423,0.509388,0.643408,0.903349,0.362476,0.886857,0.912133,0.31214,0.34223,0.216344,0.575453,0.875405,0.139206,0.948651,0.642497,0.0536001,0.319514,0.45101,0.0423309,0.956071,0.941586,0.417565,0.729644,0.709814,0.490251,0.153557,0.670046,0.606662,0.127504,0.753415,0.727819,0.229361,0.00121075,0.0733909,0.693343,0.0636598,0.871756,0.000532627,0.580849,0.912992,0.104684,0.92925,0.0778973,0.465476,0.177264,0.432095,0.404028,0.735649,0.689259,0.959764,0.686699,0.884112,0.178542,0.730517,0.440004,0.735179,0.351724,0.888378,0.964851,0.633424,0.246922,0.948893,0.82946,0.0926433,0.331625,0.8978,0.691783,0.639649,0.948382,0.361244,0.140036,0.462343,0.628516,0.477593,0.596122,0.232243,0.548588,0.453163,0.889343,0.512296,0.529384,0.553421,0.910632,0.508765,0.365619,0.182685,0.496264,0.546258,0.0869821,0.343563,0.53972,0.925194,0.83417,0.466783,0.330536,0.153681,0.175574,0.885202,0.709327,0.748146,0.156968,0.482085,0.0283259,0.558044,0.238925,0.9282,0.453894,0.692486,0.986332,0.661832,0.663812,0.678429,0.151394,0.0940841,0.446466,0.795616,0.103046,0.18774,0.887505,0.020467,0.332831,0.398736,0.22809,0.911545,0.238475,0.745349,0.875749,0.416794,0.390069,0.395414,0.628333,0.695531,0.396698,0.635551,0.876067,0.166375,0.236003,0.568787,0.684509,0.270972,0.124143,0.758324,0.179179,0.860834,0.660653,0.609623,0.308919,0.0659277,0.367085,0.385247,0.846381,0.298663,0.887259,0.883851,0.137057,0.246334,0.221918,0.979211,0.0323637,0.0107281,0.598629,0.683413,0.485906,0.904405,0.952183,0.576173,0.972762,0.315478,0.469353,0.0834956,0.834512,0.361118,0.251185,0.131524,0.789967,0.765956,0.626708,0.0190156,0.586727,0.901492,0.953895,0.956546,0.158806,0.807064,0.386779,0.809208,0.831657,0.701502,0.0600471,0.666287,0.878615,0.195494,0.0143656,0.544947,0.242112,0.996708,0.768438,0.382931,0.172564,0.2824,0.148368,0.785283,0.738131,0.950725,0.685614,0.685445,0.265356,0.992773,0.686063,0.298867,0.444882,0.13399,0.356209,0.925428,0.443438,0.691193,0.338097,0.0606951,0.020227,0.522104,0.430167,0.712725,0.981063,0.681757,0.198779,0.598359,0.19739,0.66415,0.296682,0.172131,0.33882,0.164126,0.735164,0.107982,0.244648,0.0296379,0.998152,0.381644,0.275149,0.634569,0.523472,0.490129,0.119042,0.371669,0.880187,0.889647,0.40643,0.839663,0.344189,0.256137,0.166492,0.170754,0.569348,0.350726,0.936493,0.277413,0.4048,0.299861,0.641943,0.268968,0.872409,0.64094,0.665473,0.172781,0.808422,0.78507,0.648189,0.605031,0.730988,0.405901,0.878607,0.220841,0.647312,0.188937,0.563626,0.790726,0.37947,0.183954,0.0498201,0.822457,0.948116,0.212433,0.899354,0.793433,0.698213,0.773268,0.7926,0.389204,0.549971,0.985847,0.2951,0.363894,0.971659,0.807944,0.809745,0.511974,0.984169,0.941118,0.10403,0.977358,0.513685,0.379082,0.269526,0.674622,0.447668,0.624971,0.898655,0.644691,0.852529,0.980766,0.993321,0.405218,0.926549,0.859831,0.293191,0.621413,0.428547,0.800914,0.0788448,0.804756,0.0591547,|0.38107,0.0613036,0.885885,0.358297,0.639415,0.627018,0.654844,0.680824,0.354001,0.849597,0.897454,0.160942,0.670785,0.764349,0.338544,0.200149,0.110791,0.595665,0.926692,0.887235,0.897793,0.902736,0.246377,0.639252,0.868234,0.34008,0.25645,0.84591,0.477548,0.453937,0.341978,0.167892,0.871952,0.911226,0.156153,0.509717,0.869759,0.753309,0.822721,0.576102,0.94465,0.435864,0.273394,0.906143,0.325936,0.0378437,0.803162,0.225913,0.496909,0.81146,0.713103,0.798712,0.917078,0.945392,0.06421,0.601947,0.53764,0.959504,0.0844002,0.590307,0.131255,0.935039,0.224901,0.306152,0.736347,0.54258,0.392305,0.358158,0.664927,0.661948,0.161207,0.690964,0.37229,0.905575,0.751596,0.918837,0.19524,0.385343,0.195831,0.912009,0.117521,0.705641,0.0746832,0.963621,0.49724,0.0783044,0.935282,0.618219,0.284728,0.791774,0.0560755,0.909901,0.169981,0.430536,0.96414,0.238954,0.287372,0.608147,0.483948,0.696173,0.492052,0.472749,0.949966,0.892925,0.546962,0.113158,0.489139,0.780032,0.928154,0.775713,0.935358,0.302989,0.0928755,0.495825,0.568516,0.14531,0.487388,0.987575,0.05305,0.660963,0.752136,0.813421,0.339445,0.854313,0.696239,0.392714,0.794636,0.534931,0.577192,0.04885,0.811034,0.301849,0.451199,0.343017,0.889736,0.548659,0.0474693,0.835127,0.515929,0.472461,0.947473,0.165892,0.1483,0.0978531,0.213557,0.706983,0.816602,0.988286,0.675478,0.6969,0.307106,0.351699,0.603544,0.0144271,0.519971,0.210577,0.450494,0.425507,0.808456,0.940885,0.779296,0.19377,0.0984433,0.533531,0.817476,0.525567,0.551678,0.539098,0.263066,0.40972,0.506168,0.295247,0.524551,0.658416,0.804653,0.903282,0.51701,0.111683,0.0109224,0.0244607,0.764131,0.233874,0.180439,0.212385,0.00902981,0.894388,0.782645,0.186473,0.340457,0.712292,0.109765,0.370489,0.643574,0.538966,0.565898,0.57027,0.915691,0.704254,0.222355,0.837698,0.819315,0.188305,0.875965,0.899037,0.0152124,0.616054,0.522127,0.753631,0.162116,0.0842782,0.438527,0.556678,0.919189,0.0415011,0.244743,0.984042,0.953362,0.282213,0.549053,0.429621,0.619861,0.865939,0.673776,0.290899,0.0140201,0.310155,0.900563,0.97276,0.919353,0.895536,0.770857,0.710263,0.14752,0.645016,0.662961,0.0477728,0.152023,0.124508,0.592471,0.896498,0.0980959,0.281204,0.997437,0.629032,0.240209,0.810531,0.75155,0.568617,0.17274,0.492368,0.871077,0.552777,0.871961,0.999495,0.699493,0.721349,0.147294,0.547459,0.553542,0.402433,0.762898,0.924763,0.302775,0.280997,0.573974,0.433264,0.587003,0.649391,0.0883678,0.404831,0.107709,0.241105,0.54299,0.67777,0.208294,0.305739,0.994504,0.253406,0.996599,0.375738,0.146846,0.0264985,0.056012,0.378405,0.923417,0.286857,0.734232,0.586648,0.233281,0.141168,0.962749,0.417122,0.692693,0.0351416,0.970959,0.498728,0.212061,0.598711,0.934273,0.394634,0.266429,0.320594,0.970781,0.585106,0.968045,0.305917,0.428865,0.674836,0.751601,0.201934,0.145573,0.365539,0.20654,0.999596,0.267152,0.410528,0.779615,0.101087,0.133539,0.501851,0.748281,0.324196,0.945115,0.808456,0.317527,0.322784,0.997594,0.893169,0.313902,0.849823,0.710811,0.0860279,0.738647,0.619987,0.0501688,0.848972,0.424957,0.811098,0.536264,0.440841,0.19655,0.398087,0.901479,0.90924,0.49129,0.93898,0.633447,0.542191,0.241573,0.881702,0.415973,0.383956,0.0844457,0.119113,0.997423,0.222705,0.998916,0.0353987,0.955796,0.918919,0.158118,0.809802,0.620778,0.582449,0.736356,0.356459,0.962849,0.250243,0.72922,0.0822492,0.594623,0.0772744,0.0632542,0.485873,0.935487,0.215382,0.137778,0.288704,0.208246,0.608431,0.385142,0.22041,0.369418,0.243499,0.0371356,0.289327,0.709071,0.853535,0.943685,0.814432,0.225537,0.923196,0.170235,0.203138,0.298868,0.80778,0.327163,0.263202,0.291471,0.723586,0.156628,0.602234,0.655838,0.902405,0.986088,0.121317,0.784056,0.78683,0.793294,0.430504,0.857182,0.331103,0.319931,0.418164,0.0730259,0.975572,0.435887,0.121769,0.932637,0.237328,0.910784,0.60147,0.749773,0.875167,0.323829,0.556981,0.601722,0.342448,0.0880727,0.920651,0.150329,0.668925,0.287787,0.825433,0.614435,0.717683,0.63221,0.64655,0.955937,0.52878,0.694553,0.170459,0.520925,0.16988,0.536869,0.670082,0.531815,0.914349,0.956684,0.250344,0.802829,0.497186,0.0513421,0.435478,0.13434,0.567653,0.520039,0.237998,0.64382,0.952264,0.658999,0.947549,0.0542016,0.552753,0.722491,0.103481,0.186824,0.409266,0.0709261,0.099893,0.836847,0.318455,0.0392281,0.0387303,0.0638762,0.759464,0.280286,0.785211,0.796894,0.111892,0.722887,0.869733,0.989328,0.48349,0.523388,0.0985327,0.458606,0.978857,0.627755,0.439009,0.264032,0.647801,0.471366,0.442154,0.61408,0.475051,0.504598,0.938789,0.400187,0.152872,0.112257,0.0808403,0.77029,0.549797,0.771487,0.742388,0.393963,0.745266,0.401303,0.997366,0.798405,0.205001,0.968925,0.64491,0.8807,0.241041,0.406285,0.168052,0.245611,0.0535248,0.482358,0.173618,0.992486,0.892275,0.980352,0.27887,0.504516,0.72564,0.109626,0.146082,0.169863,0.345416,0.291013,0.123709,0.203212,0.999904,0.718048,0.701475,0.52703,0.96298,0.600762,0.705568,0.3939,0.845284,0.78844,0.710632,0.119712,0.913202,0.456602,0.289733,0.595165,0.254597,0.294766,0.570634,0.0349054,0.778286,0.641196,0.752485,0.543186,0.322648,0.371595,0.4566,0.31829,0.38834,0.810041,0.227591,0.414378,0.129364,0.810385,0.201463,0.627752,0.29905,0.99996,0.595997,0.53806,0.91644,0.870924,0.990404,0.882888,0.774376,0.597969,0.848329,0.81099,0.497154,0.548975,0.935956,0.47395,0.555065,0.382238,0.895361,0.456127,0.247065,0.556115,0.691605,0.775597,0.691078,0.775502,0.648415,0.00542831,0.915463,0.782672,0.250717,0.335859,0.811974,0.658139,0.113556,0.297662,0.951221,0.47028,0.75548,0.531296,0.127331,0.75542,0.0320171,0.737915,0.207469,0.430125,0.926572,0.465303,0.660703,0.795753,0.107687,0.713171,0.999612,0.463759,0.687277,0.29058,0.965928,0.901288,0.0839406,0.566789,0.567551,0.358397,0.105357,0.791191,0.18968,0.242117,0.956059,0.865759,0.0551092,0.532029,0.130587,0.93374,0.0143129,0.516021,0.330407,0.170063,0.331529,0.297485,0.0762643,0.787976,0.494047,0.121534,0.843999,0.522077,0.617599,0.847758,0.885951,0.119754,0.899067,0.491156,0.0728315,0.388752,0.994133,0.461799,0.43888,0.396566,0.0783169,0.315334,0.472402,0.587173,0.561905,0.354975,0.702209,0.187389,0.0866779,0.1189,0.375501,0.963485,0.0987962,0.919713,0.173658,0.937753,0.0177025,0.831955,0.0268611,0.364325,0.344681,0.919344,0.210382,0.0369694,0.275635,0.782788,0.179006,0.507315,0.46472,0.647953,0.238188,0.493905,0.826799,0.390166,0.562488,0.512089,0.932337,0.116631,0.115475,0.927936,0.661243,0.27435,0.526168,0.0626846,0.555107,0.725271,0.696232,0.902263,0.508306,0.553732,0.202695,0.556154,0.427163,0.256556,0.300402,0.958342,0.457479,0.828729,0.812592,0.061088,0.41667,0.61794,0.296314,0.280216,0.821427,0.639018,0.454369,0.0427551,0.0255277,0.666927,0.014697,0.71865,0.548844,0.935853,0.461484,0.169531,0.955479,0.725757,0.298745,0.697779,0.00335288,0.415635,0.580698,0.332095,0.994977,0.0139596,0.361039,0.422431,0.412533,0.73659,0.115885,0.650596,0.414713,0.921489,0.605989,0.378195,0.313125,0.696116,0.11397,0.208101,0.271526,0.874325,0.667563,0.600721,0.014081,0.412841,0.999346,0.375052,0.379373,0.647177,0.882005,0.614014,0.0271408,0.785659,0.0867151,0.216294,0.63538,0.737618,0.589888,0.646394,0.815809,0.577238,0.117346,0.565412,0.219447,0.525481,0.0259604,0.0486456,0.010802,0.251332,0.350205,0.786743,0.494094,0.922948,0.575749,0.205524,0.414344,0.0814843,0.113303,0.783363,0.983143,0.110921,0.85618,0.898073,0.270599,0.729801,0.647812,0.817751,0.578173,0.50445,0.125212,0.58999,0.333142,0.989018,0.622842,0.356409,0.878505,0.974587,0.69912,0.230749,0.757148,0.664828,0.272239,0.816792,0.0687853,0.904819,0.474576,0.642543,0.821013,0.785545,0.129546,0.607467,0.939083,0.312973,0.106086,0.693357,0.0607399,0.521377,0.140593,0.42326,0.340033,0.431427,0.467368,0.708896,0.378001,0.901787,0.593704,0.980929,0.0475014,0.088299,0.734056,0.167858,0.456055,0.641377,0.269022,0.819668,0.528572,0.657304,0.301289,0.754794,0.646053,0.635144,0.0829076,0.86704,0.932472,0.00645041,0.719908,0.44024,0.874605,0.974498,0.31959,0.0339485,0.80333,0.179446,0.235133,0.861994,0.952314,0.500495,0.909461,0.643743,0.269519,0.68927,0.330706,0.531448,0.356302,0.722972,0.448709,0.683202,0.536468,0.889508,0.930557,0.42602,0.342839,0.413128,0.465285,0.696129,0.318276,0.152049,0.181206,0.510537,0.669714,0.301629,0.487484,0.736549,0.26124,0.865944,0.605323,0.453258,0.993937,0.791759,0.33931,0.830881,0.829943,0.998391,0.472337,0.696913,0.0239493,0.971066,0.0525653,0.143985,0.87343,0.589383,0.328883,0.0287726,0.228977,0.834024,0.784567,0.797644,0.899706,0.943022,0.252056,0.368886,0.784288,0.120107,0.536929,0.734397,0.813136,0.0464799,0.822282,0.663715,0.649838,0.218817,0.482305,0.585218,0.872261,0.578382,0.360088,0.814734,0.163363,0.149636,0.300904,0.796468,0.747937,0.196916,0.753173,0.082295,0.857975,0.583252,0.893529,0.796398,0.00469989,0.212192,0.950574,0.27816,0.0844464,0.303372,0.758497,0.317922,0.183824,0.206926,0.464489,0.497619,0.208768,0.146373,0.456349,0.291479,0.457131,0.396059,0.461383,0.323719,0.718278,0.341716,0.774495,0.646424,0.188353,0.145922,0.758602,0.966908,0.762821,0.45164,0.793421,0.991037,0.400002,|0.22382,0.0525494,0.927279,0.704802,0.413564,0.763576,0.0898894,0.241041,0.28093,0.856493,0.0263557,0.205535,0.893237,0.963543,0.243709,0.740482,0.570278,0.92187,0.843755,0.504699,0.588914,0.985763,0.595421,0.449707,0.946509,0.715986,0.914095,0.37648,0.462492,0.687599,0.428385,0.137558,0.230777,0.872034,0.439747,0.619218,0.0169678,0.928005,0.219823,0.2683,0.886101,0.760488,0.543249,0.789896,0.46565,0.652109,0.535583,0.868299,0.397879,0.6045,0.572857,0.508972,0.334932,0.321419,0.596669,0.0392846,0.396643,0.693746,0.745586,0.596168,0.837412,0.637482,0.409375,0.380703,0.658358,0.492068,0.633207,0.210822,0.222986,0.444015,0.34048,0.472351,0.909603,0.399834,0.407296,0.0361804,0.568568,0.892174,0.435447,0.973576,0.0712064,0.866459,0.328358,0.655796,0.254017,0.381281,0.476539,0.174036,0.179785,0.765437,0.841946,0.194197,0.197072,0.139145,0.984901,0.115532,0.164776,0.522881,0.215609,0.746743,0.616975,0.945151,0.959791,0.0818788,0.555734,0.8577,0.188517,0.684854,0.17108,0.783408,0.793621,0.654501,0.0450475,0.0211716,0.951871,0.700103,0.414469,0.626909,0.922261,0.451366,0.751659,0.996904,0.545219,0.284531,0.393875,0.598463,0.644387,0.0246656,0.768551,0.122936,0.337679,0.793,0.967598,0.174404,0.684381,0.545153,0.53648,0.0656782,0.718082,0.957954,0.0805476,0.373437,0.154508,0.850662,0.164294,0.817493,0.705259,0.631654,0.438898,0.114705,0.110168,0.542046,0.649515,0.744827,0.800937,0.857087,0.0109572,0.287287,0.79,0.178124,0.299066,0.311777,0.253612,0.838239,0.365957,0.542206,0.794773,0.863563,0.976639,0.253052,0.735626,0.812661,0.387467,0.763876,0.27188,0.626864,0.847876,0.51363,0.0574844,0.0857558,0.736263,0.476939,0.136538,0.187906,0.946963,0.219265,0.0582127,0.255985,0.569104,0.91564,0.757219,0.228735,0.424499,0.0817136,0.93647,0.108275,0.940038,0.615075,0.820932,0.0936826,0.368406,0.662375,0.698152,0.626076,0.903422,0.0753198,0.562681,0.737293,0.318383,0.502835,0.530767,0.117354,0.878975,0.767349,0.80093,0.386815,0.892356,0.520151,0.34311,0.907309,0.499468,0.549338,0.957578,0.548377,0.597215,0.403096,0.993721,0.68891,0.998071,0.915522,0.330818,0.830627,0.648316,0.222998,0.294388,0.809295,0.00860274,0.0561576,0.237076,0.00123256,0.128677,0.298975,0.136967,0.0964628,0.937675,0.483699,0.033015,0.627366,0.227648,0.35872,0.469141,0.613069,0.885849,0.48292,0.531224,0.335254,0.867957,0.123387,0.682795,0.896181,0.0502206,0.627422,0.462736,0.817653,0.678864,0.313052,0.554417,0.330708,0.496158,0.694726,0.797429,0.939118,0.0934389,0.739157,0.716672,0.398671,0.774851,0.155024,0.191078,0.0003317,0.926207,0.755234,0.352103,0.851403,0.300537,0.285015,0.470785,0.651805,0.90979,0.473416,0.148646,0.0375623,0.812388,0.0519211,0.162276,0.915473,0.462225,0.771689,0.638196,0.714505,0.614161,0.555133,0.541539,0.596214,0.833595,0.940006,0.756768,0.887787,0.170052,0.223251,0.917887,0.128634,0.596738,0.72596,0.222417,0.206277,0.13248,0.707322,0.233791,0.0937566,0.660818,0.601635,0.0483148,0.708675,0.98354,0.13367,0.319447,0.194178,0.439477,0.159717,0.183194,0.0342454,0.245336,0.293278,0.241494,0.668529,0.271347,0.925581,0.242901,0.555846,0.196494,0.0583496,0.670512,0.315381,0.261074,0.982265,0.878279,0.245915,0.277541,0.21978,0.271975,0.434966,0.862757,0.732473,0.0759412,0.263022,0.985089,0.735498,0.0349922,0.403133,0.0921116,0.764869,0.599239,0.886814,0.311694,0.956337,0.467535,0.824356,0.0456741,0.754168,0.638922,0.724765,0.274626,0.872239,0.433062,0.816011,0.953834,0.522907,0.391247,0.749112,0.192688,0.700631,0.905092,0.502804,0.93609,0.37386,0.151703,0.00179064,0.947117,0.325275,0.722154,0.109229,0.84731,0.0120117,0.315537,0.867378,0.324814,0.51304,0.504399,0.744057,0.875995,0.0964035,0.964638,0.791824,0.955816,0.996685,0.847095,0.618772,0.951388,0.497078,0.99162,0.361919,0.884438,0.00392067,0.126401,0.172989,0.176159,0.924288,0.1827,0.228424,0.445469,0.0599649,0.220154,0.269818,0.248173,0.603943,0.276254,0.878025,0.263614,0.276504,0.206816,0.0262563,0.872609,0.690529,0.0298486,0.249494,0.317974,0.892598,0.688324,0.85951,0.340815,0.781096,0.460844,0.366302,0.933895,0.154961,0.370355,0.30534,0.757444,0.768555,0.237184,0.647592,0.945801,0.980358,0.102842,0.232499,0.591646,0.776313,0.452857,0.181026,0.940081,0.439223,0.239214,0.182144,0.207484,0.988467,0.0165163,0.697376,0.538582,0.0955989,0.767192,0.291581,0.329716,0.429063,0.376324,0.387417,0.331738,0.46202,0.465051,0.888611,0.734362,0.759587,0.0441317,0.839919,0.691747,0.637928,0.615995,0.812276,0.725484,0.21241,0.94826,0.523805,0.874212,0.291466,0.998076,0.663925,0.401737,0.841089,0.987255,0.313411,0.422037,0.352089,0.00550407,0.668425,0.488095,0.722118,0.328829,0.3153,0.501066,0.112684,0.429498,0.240635,0.321731,0.0817752,0.902817,0.895066,0.313882,0.870428,0.382083,0.740715,0.311943,0.0628006,0.922929,0.287653,0.664436,0.710414,0.923465,0.583536,0.726592,0.0468838,0.797436,0.011112,0.235707,0.342421,0.890146,0.847377,0.183714,0.119959,0.867739,0.578815,0.455595,0.583341,0.0749422,0.560398,0.148637,0.449246,0.971004,0.537241,0.695041,0.067055,0.0800717,0.453006,0.144643,0.344292,0.711903,0.858398,0.256819,0.753187,0.614098,0.721976,0.165178,0.759928,0.674301,0.809671,0.578084,0.017705,0.677378,0.473481,0.707652,0.499044,0.309239,0.178446,0.347256,0.355726,0.0823544,0.420405,0.778435,0.203128,0.340622,0.404966,0.585893,0.13935,0.0220868,0.696354,0.990478,0.756672,0.186135,0.462427,0.631437,0.0882604,0.760209,0.540171,0.522374,0.99766,0.557906,0.528414,0.989654,0.859873,0.10218,0.770214,0.623388,0.720951,0.483598,0.589521,0.7534,0.867254,0.88161,0.515385,0.483166,0.0621791,0.541313,0.475955,0.42684,0.110465,0.874914,0.108066,0.883819,0.00254261,0.50431,0.204046,0.265204,0.780307,0.0696509,0.638293,0.248364,0.643297,0.54026,0.676824,0.161353,0.453134,0.726643,0.0620487,0.388865,0.478898,0.368556,0.8689,0.560124,0.206246,0.0348733,0.939246,0.928751,0.532695,0.489473,0.470723,0.691406,0.561003,0.167878,0.921685,0.866816,0.97425,0.354743,0.385813,0.146455,0.690558,0.0521692,0.795802,0.706342,0.397938,0.243394,0.197774,0.819421,0.417085,0.870669,0.930585,0.505812,0.642293,0.38015,0.696368,0.596612,0.819537,0.58732,0.762324,0.0285383,0.40065,0.501109,0.835651,0.457837,0.707118,0.480703,0.120319,0.914963,0.910046,0.993766,0.113572,0.188456,0.272781,0.373472,0.862792,0.981603,0.139707,0.597151,0.919855,0.408832,0.090266,0.998645,0.76109,0.499087,0.245315,0.491317,0.95876,0.176087,0.601634,0.863655,0.0209131,0.343255,0.982801,0.694003,0.668175,0.239791,0.980677,0.467472,0.21076,0.364918,0.590629,0.441681,0.334837,0.0866097,0.0601708,0.364242,0.161084,0.656375,0.975328,0.786011,0.636458,0.70945,0.557049,0.393341,0.054509,0.628061,0.170416,0.00663733,0.739579,0.957575,0.836098,0.10067,0.282121,0.54815,0.135376,0.605347,0.66492,0.184479,0.80916,0.59761,0.0924035,0.847735,0.536932,0.45182,0.200438,0.0663567,0.397764,0.495529,0.823332,0.956231,0.402399,0.00987214,0.446177,0.40468,0.893048,0.0238113,0.399656,0.15384,0.832356,0.614354,0.755721,0.441938,0.518861,0.842221,0.264817,0.0410243,0.314651,0.955471,0.998719,0.733945,0.92617,0.976345,0.80225,0.981753,0.999312,0.257019,0.664816,0.29216,0.130405,0.130339,0.231629,0.484519,0.988839,0.948359,0.342896,0.72711,0.649605,0.300206,0.967642,0.366569,0.367337,0.464344,0.263549,0.520181,0.14166,0.0926635,0.377116,0.780296,0.937167,0.463336,0.0179883,0.00241721,0.134248,0.961816,0.115129,0.130912,0.580619,0.802869,0.562413,0.747115,0.8122,0.0399995,0.22526,0.88619,0.970728,0.767964,0.649337,0.470924,0.140876,0.566549,0.659895,0.837623,0.10708,0.109778,0.432123,0.14404,0.993861,0.246476,0.83176,0.410697,0.544932,0.956394,0.28811,0.72249,0.315584,0.102134,0.837717,0.733995,0.408819,0.90744,0.766063,0.0171643,0.190348,0.0832506,0.945012,0.212853,0.0471846,0.9745,0.104152,0.129224,0.137448,0.479115,0.03101,0.808196,0.723839,0.471381,0.726084,0.00632954,0.813525,0.598301,0.553565,0.515712,0.545851,0.564647,0.386351,0.731313,0.0290641,0.647312,0.905717,0.261025,0.877862,0.516808,0.500797,0.354849,0.842258,0.486219,0.165002,0.691788,0.452101,0.599927,0.245839,0.501609,0.0205275,0.152995,0.729662,0.366887,0.0729628,0.168516,0.635731,0.697712,0.882909,0.291837,0.952949,0.498741,0.0832943,0.810204,0.658879,0.245228,0.918664,0.808459,0.122423,0.0266091,0.815785,0.704116,0.465047,0.175348,0.338679,0.116577,0.0986933,0.00291175,0.838932,0.313531,0.709391,0.959767,0.16579,0.427901,0.16572,0.132844,0.31157,0.204493,0.620991,0.429351,0.38035,0.70819,0.831975,0.0703601,0.154126,0.24167,0.936233,0.654493,0.339995,0.772324,0.947684,0.302813,0.841718,0.247589,0.0808592,0.895911,0.923206,0.956815,0.118716,0.178789,0.406274,0.846241,0.737079,0.148221,0.81234,0.267433,0.562111,0.869237,0.983233,0.407163,0.230243,0.983223,0.872554,0.877353,0.38307,0.960116,0.646716,0.197992,0.900653,0.493227,0.675738,0.137114,0.771711,0.992176,0.919768,0.534231,0.215701,0.940355,0.598788,0.367163,0.920705,0.30683,0.643466,0.396771,0.0521667,0.739609,0.702549,0.918673,0.698174,0.689088,0.472006,0.890595,0.43336,0.450719,0.902163,0.264761,0.571646,0.406853,0.050383,0.788054,0.197657,0.856332,0.0265635,0.519631,0.431221,|0.217244,0.959525,0.963366,0.544828,0.0862285,0.389256,0.794605,0.830933,0.32639,0.514834,0.698716,0.319312,0.74395,0.998618,0.755554,0.227928,0.495382,0.849671,0.263551,0.340632,0.936175,0.588236,0.176473,0.105926,0.527109,0.63534,0.627598,0.380042,0.237834,0.248577,0.764277,0.883802,0.562705,0.962101,0.5012,0.344569,0.445226,0.548312,0.373394,0.679475,0.655807,0.618572,0.419879,0.723972,0.711202,0.997548,0.802174,0.0202791,0.864316,0.778863,0.616315,0.323525,0.31834,0.146764,0.29938,0.307988,0.453327,0.949619,0.0503976,0.63506,0.828269,0.934051,0.0233181,0.950616,0.0360626,0.345707,0.245759,0.402765,0.117713,0.0322645,0.667888,0.503739,0.294298,0.665498,0.49092,0.0655966,0.399178,0.885661,0.735875,0.380893,0.103308,0.999782,0.0774394,0.738914,0.773021,0.774673,0.247317,0.0225138,0.801016,0.213783,0.338289,0.553358,0.995329,0.675929,0.935266,0.763189,0.471382,0.521821,0.72748,0.0722228,0.107146,0.288991,0.15374,0.94864,0.202318,0.686556,0.969812,0.447094,0.5186,0.944666,0.0432709,0.554117,0.614799,0.694798,0.997801,0.0962439,0.408097,0.903583,0.913646,0.279246,0.868811,0.721093,0.797299,0.082178,0.964626,0.218681,0.769405,0.847608,0.0995194,0.0569291,0.195273,0.570406,0.325456,0.24011,0.397482,0.942619,0.0260643,0.29806,0.273924,0.353431,0.996953,0.766878,0.359033,0.140457,0.610238,0.551429,0.406887,0.460196,0.530399,0.219494,0.912668,0.856655,0.956818,0.657573,0.199943,0.367923,0.102219,0.08661,0.429906,0.631539,0.0868153,0.585626,0.746503,0.557046,0.61017,0.674087,0.602111,0.347119,0.358854,0.593537,0.521733,0.337293,0.568642,0.57974,0.230817,0.72029,0.434484,0.561723,0.196031,0.897386,0.733471,0.631698,0.121323,0.452664,0.605848,0.0467441,0.694473,0.574158,0.462719,0.410561,0.65041,0.41565,0.400364,0.796367,0.0476075,0.915376,0.444389,0.224932,0.917409,0.986976,0.33396,0.631561,0.980974,0.581832,0.00426215,0.123024,0.483153,0.705647,0.353952,0.0528882,0.423082,0.861957,0.0961255,0.0325714,0.75562,0.916735,0.989016,0.313722,0.299452,0.300577,0.50561,0.00278878,0.954724,0.0441523,0.0733203,0.0880534,0.571088,0.549724,0.619769,0.245042,0.806635,0.945051,0.915,0.458587,0.747872,0.135785,0.208268,0.184429,0.396681,0.102823,0.561527,0.283889,0.438053,0.0241874,0.643336,0.31439,0.904899,0.0828245,0.0330992,0.269577,0.3554,0.325884,0.00588626,0.069596,0.343199,0.731768,0.0637579,0.477413,0.707662,0.592536,0.89363,0.903251,0.205947,0.946413,0.20766,0.682076,0.0820749,0.426011,0.00314951,0.727765,0.0693132,0.783876,0.442473,0.385145,0.768295,0.148672,0.0111758,0.952113,0.980325,0.639104,0.693081,0.314635,0.741189,0.153156,0.72738,0.905519,0.216304,0.223842,0.208577,0.559203,0.48758,0.0682887,0.790217,0.781152,0.685046,0.537525,0.215175,0.028022,0.99487,0.622416,0.250994,0.17964,0.620416,0.589183,0.213809,0.640029,0.600882,0.884292,0.577217,0.294954,0.227383,0.548246,0.144889,0.14412,0.374502,0.204693,0.460675,0.115682,0.915697,0.571023,0.130028,0.255932,0.129119,0.45907,0.340151,0.686093,0.587911,0.216434,0.720488,0.341167,0.155057,0.63237,0.253078,0.847612,0.790405,0.768412,0.910373,0.986394,0.169032,0.00856239,0.658266,0.00962567,0.189003,0.175784,0.250424,0.411274,0.263722,0.00807428,0.00327182,0.52101,0.0153068,0.694135,0.457612,0.901014,0.700644,0.721028,0.923307,0.1446,0.551768,0.180852,0.840461,0.740901,0.0776849,0.919238,0.346058,0.864569,0.318357,0.397253,0.106464,0.384576,0.424717,0.227344,0.845098,0.0270956,0.688664,0.727753,0.881487,0.694426,0.153029,0.27193,0.261633,0.0250785,0.468773,0.963773,0.118373,0.810063,0.241078,0.432451,0.403137,0.700968,0.867496,0.465898,0.914636,0.746759,0.956095,0.442584,0.910856,0.190488,0.415771,0.704571,0.125173,0.761661,0.371082,0.651607,0.952502,0.480812,0.751285,0.318336,0.924646,0.418016,0.608931,0.625961,0.723966,0.664731,0.378977,0.156433,0.18901,0.295739,0.0554133,0.924668,0.427533,0.686982,0.957376,0.413295,0.799897,0.572215,0.264445,0.410743,0.92666,0.330257,0.831539,0.832606,0.485,0.207387,0.512881,0.974898,0.111375,0.00782287,0.69533,0.166845,0.443916,0.166587,0.412344,0.537619,0.48886,0.493652,0.216277,0.584254,0.246107,0.777356,0.645927,0.420476,0.765214,0.865414,0.590925,0.548501,0.259943,0.0901703,0.400088,0.577658,0.668095,0.486323,0.858213,0.735943,0.189732,0.713219,0.853634,0.314322,0.460249,0.678881,0.187532,0.870991,0.893618,0.642956,0.346594,0.893202,0.893905,0.814641,0.678761,0.961507,0.0755396,0.342613,0.864431,0.142025,0.133773,0.507907,0.0521701,0.0245818,0.701998,0.869424,0.605113,0.651262,0.524752,0.549259,0.679522,0.816632,0.457114,0.929982,0.220996,0.64437,0.48877,0.428506,0.455032,0.626963,0.420029,0.677653,0.732055,0.130859,0.447912,0.203231,0.140874,0.139298,0.65063,0.013244,0.739218,0.695062,0.607516,0.992174,0.76396,0.301238,0.0447839,0.462255,0.0176365,0.499323,0.409158,0.587413,0.536864,0.521967,0.993826,0.294991,0.886451,0.391576,0.709929,0.727367,0.190493,0.286682,0.813764,0.358665,0.564996,0.673594,0.359245,0.60279,0.405468,0.892513,0.624481,0.48274,0.230747,0.210895,0.6184,0.0335192,0.929804,0.00681996,0.709143,0.237287,0.122685,0.845843,0.939877,0.946243,0.0498156,0.451086,0.644287,0.0632905,0.991072,0.594255,0.516351,0.56707,0.414303,0.385122,0.207567,0.329556,0.605428,0.263335,0.857252,0.0261459,0.423779,0.34884,0.299013,0.842746,0.404724,0.8569,0.41732,0.377593,0.929801,0.526263,0.335594,0.274247,0.857209,0.950676,0.809602,0.491525,0.868349,0.186977,0.823916,0.376992,0.222085,0.338545,0.270076,0.911349,0.910691,0.0825762,0.48483,0.729417,0.102103,0.43653,0.140597,0.234797,0.644524,0.524036,0.267357,0.813936,0.110086,0.583764,0.315518,0.252715,0.0344056,0.181727,0.199674,0.184259,0.304842,0.471503,0.594625,0.880851,0.0740905,0.881721,0.330152,0.0824759,0.653124,0.781871,0.824108,0.360051,0.697895,0.268054,0.699103,0.741797,0.485707,0.339098,0.663712,0.163341,0.0945486,0.972553,0.757561,0.645371,0.797071,0.262926,0.252912,0.803991,0.816742,0.466938,0.741149,0.118453,0.982029,0.8481,0.16005,0.739075,0.94487,0.6176,0.998032,0.722505,0.329433,0.679697,0.095429,0.529362,0.64891,0.865541,0.720667,0.638026,0.0983713,0.422382,0.694924,0.232036,0.843627,0.888595,0.0512377,0.396748,0.732946,0.76347,0.143159,0.584033,0.0449172,0.254875,0.125254,0.0977651,0.188822,0.941777,0.120329,0.896688,0.21091,0.321228,0.722096,0.739736,0.664101,0.951101,0.639222,0.856675,0.960015,0.521051,0.233713,0.468474,0.057994,0.285728,0.613899,0.158509,0.514905,0.616764,0.361326,0.71137,0.477015,0.802133,0.503587,0.866252,0.396808,0.55936,0.652507,0.750181,0.903641,0.18606,0.482271,0.823822,0.348056,0.540787,0.131086,0.530164,0.836129,0.688953,0.555388,0.89708,0.552148,0.243772,0.979181,0.568832,0.366522,0.850262,0.838071,0.479817,0.552015,0.527087,0.544273,0.118863,0.949648,0.694275,0.915174,0.418767,0.358107,0.354775,0.439538,0.683951,0.793682,0.134486,0.818759,0.29233,0.380972,0.150446,0.15016,0.218419,0.725277,0.276422,0.440825,0.820206,0.848301,0.360321,0.152063,0.400028,0.242651,0.654976,0.972867,0.802371,0.329356,0.840192,0.647547,0.250331,0.876446,0.581954,0.27874,0.953326,0.709735,0.469516,0.538631,0.330001,0.733737,0.215736,0.552099,0.399339,0.559757,0.0199499,0.0522208,0.277423,0.751186,0.103829,0.735995,0.548208,0.397601,0.395204,0.332855,0.047833,0.0688977,0.674134,0.206014,0.791773,0.645064,0.129154,0.166619,0.320508,0.325835,0.495769,0.529996,0.031896,0.155024,0.52415,0.665853,0.666069,0.925206,0.427321,0.0796787,0.175819,0.830201,0.0666337,0.899868,0.449659,0.936067,0.924872,0.68248,0.0340105,0.791556,0.952795,0.302335,0.0921576,0.39465,0.153963,0.879511,0.568057,0.934854,0.868392,0.772886,0.472044,0.406649,0.698678,0.924138,0.0891383,0.812487,0.369044,0.612603,0.467265,0.276322,0.655481,0.951112,0.0106552,0.0520879,0.638056,0.0550047,0.490691,0.0951968,0.600875,0.19642,0.326487,0.645868,0.290413,0.594901,0.83596,0.840556,0.781564,0.769132,0.99798,0.709655,0.330183,0.731658,0.904251,0.858817,0.858651,0.591942,0.212113,0.23757,0.234024,0.531695,0.717872,0.893016,0.773135,0.221626,0.879448,0.880546,0.377029,0.709848,0.465484,0.696072,0.900069,0.686372,0.360607,0.560198,0.225497,0.933363,0.327669,0.00327313,0.349825,0.315755,0.723629,0.830478,0.937298,0.583831,0.246398,0.283529,0.989667,0.949551,0.282352,0.728462,0.311562,0.616623,0.976788,0.256438,0.609266,0.962302,0.741566,0.809873,0.158375,0.00995737,0.597436,0.498989,0.0883479,0.255101,0.176105,0.898089,0.89715,0.265686,0.220519,0.960826,0.677208,0.054584,0.565685,0.151798,0.586486,0.172229,0.301589,0.697567,0.544016,0.401176,0.926742,0.825149,0.685331,0.0503141,0.465303,0.285633,0.107192,0.452158,0.589035,0.31869,0.52961,0.266431,0.416975,0.635196,0.916756,0.119102,0.793941,0.526356,0.192157,0.603958,0.271761,0.28883,0.311367,0.314327,0.149808,0.512217,0.586,0.482595,0.707828,0.124835,0.784008,0.515277,0.33793,0.781091,0.679283,0.614039,0.338195,0.519363,0.963867,0.335988,0.112199,0.886367,0.132153,0.396467,0.0333499,0.47651,0.726913,0.215211,0.623877,0.100123,0.35498,0.0455404,0.412663,0.967266,0.300457,0.923773,0.585049,0.977349,0.0873582,0.654984,0.533383,0.0940807,0.612439,0.584915,0.832957,0.0452041,0.159314,|0.472304,0.277696,0.486216,0.234482,0.0559528,0.234547,0.660951,0.014617,0.34789,0.147193,0.459071,0.112007,0.328911,0.579536,0.58163,0.303416,0.144093,0.379652,0.1781,0.102248,0.438186,0.379535,0.873891,0.0368555,0.44826,0.0360295,0.248882,0.344859,0.829662,0.150986,0.52308,0.736835,0.285756,0.801322,0.415683,0.36298,0.0710249,0.871965,0.154232,0.316766,0.446254,0.809025,0.195608,0.296103,0.0414479,0.898845,0.360019,0.0562442,0.370203,0.449298,0.563295,0.90497,0.386248,0.502388,0.115011,0.477964,0.33725,0.992881,0.498077,0.152324,0.751161,0.357096,0.929832,0.23536,0.480562,0.317227,0.608667,0.539663,0.170947,0.832915,0.592927,0.269528,0.827752,0.395425,0.805858,0.280606,0.259286,0.207512,0.0369241,0.592159,0.481021,0.604628,0.39225,0.031341,0.668259,0.515655,0.21146,0.591345,0.29094,0.726567,0.607328,0.391662,0.16825,0.143932,0.653915,0.870958,0.181086,0.912166,0.271915,0.215745,0.639397,0.7782,0.284894,0.208285,0.189082,0.306835,0.0158058,0.852381,0.152049,0.0446787,0.997279,0.314309,0.651108,0.0898721,0.0612799,0.0714754,0.177676,0.704187,0.620136,0.583909,0.139124,0.699492,0.437323,0.180368,0.0940189,0.443616,0.812675,0.451494,0.79043,0.674691,0.978672,0.981098,0.998628,0.64803,0.475815,0.0874237,0.670973,0.710291,0.84817,0.114434,0.442343,0.421998,0.75799,0.768822,0.818742,0.966669,0.18678,0.35655,0.125071,0.681901,0.390706,0.692695,0.103916,0.425838,0.895197,0.533605,0.603715,0.724296,0.3148,0.773096,0.122492,0.674879,0.467894,0.0741209,0.901494,0.0902321,0.381625,0.550689,0.0121725,0.311706,0.411603,0.481217,0.147524,0.289012,0.744844,0.232061,0.497073,0.292722,0.0341491,0.569613,0.239057,0.812521,0.506949,0.479171,0.24345,0.853518,0.863814,0.381174,0.403977,0.276563,0.271107,0.502608,0.233798,0.117018,0.320128,0.612225,0.829288,0.104579,0.632618,0.293584,0.641658,0.30126,0.744082,0.185757,0.243489,0.338975,0.787284,0.384522,0.842702,0.664808,0.0528222,0.969549,0.214673,0.844013,0.0396469,0.560935,0.0992184,0.497864,0.152858,0.42268,0.7017,0.546561,0.305461,0.311032,0.601031,0.669572,0.949061,0.587295,0.466054,0.265881,0.531642,0.497514,0.251364,0.970095,0.0601511,0.430548,0.352628,0.701225,0.975726,0.970298,0.2702,0.061039,0.640194,0.494074,0.846492,0.635582,0.91482,0.000201762,0.942882,0.279971,0.705736,0.909307,0.0856922,0.775004,0.947363,0.875113,0.0811037,0.350358,0.307562,0.685648,0.512135,0.360681,0.398058,0.575503,0.633513,0.168752,0.345512,0.832131,0.331419,0.515327,0.811174,0.383704,0.755567,0.383136,0.0280439,0.368519,0.96143,0.896279,0.614696,0.900536,0.129445,0.13406,0.828874,0.260122,0.211702,0.0754179,0.136451,0.126265,0.125981,0.147064,0.128186,0.0464735,0.679314,0.44525,0.437618,0.121217,0.984472,0.212165,0.484473,0.370566,0.438961,0.96497,0.68381,0.405947,0.1123,0.955731,0.945638,0.268083,0.631326,0.0523944,0.565553,0.865968,0.45253,0.190793,0.43728,0.614927,0.785188,0.348007,0.0838204,0.139535,0.239535,0.263165,0.490878,0.00374728,0.952334,0.818358,0.382214,0.54537,0.754248,0.859609,0.303093,0.4816,0.510913,0.271215,0.479882,0.869843,0.559964,0.513018,0.784791,0.101786,0.701833,0.252969,0.378697,0.0792691,0.391981,0.584739,0.834664,0.262619,0.31543,0.533427,0.475589,0.628871,0.712273,0.507377,0.205563,0.899014,0.217788,0.801291,0.764359,0.724203,0.271048,0.0674383,0.332021,0.384288,0.735978,0.144949,0.15503,0.971304,0.38858,0.0511625,0.75207,0.046541,0.240273,0.985011,0.792094,0.768246,0.33608,0.964717,0.791847,0.092878,0.0396953,0.89967,0.315848,0.343152,0.803897,0.7223,0.469866,0.148477,0.178032,0.913787,0.112508,0.0880926,0.523991,0.0197636,0.821413,0.529889,0.641951,0.873118,0.392817,0.513061,0.586751,0.392125,0.883987,0.765511,0.333497,0.249631,0.7402,0.61961,0.72645,0.261961,0.105547,0.76325,0.314484,0.501261,0.106243,0.638634,0.36849,0.814136,0.597045,0.275866,0.279629,0.496396,0.243684,0.560941,0.637512,0.103157,0.51791,0.107341,0.726882,0.835847,0.183226,0.765754,0.214971,0.760001,0.921056,0.170765,0.074963,0.98007,0.941952,0.696468,0.415467,0.479901,0.101226,0.0416623,0.83775,0.513074,0.286297,0.228357,0.943188,0.682749,0.13988,0.451064,0.973982,0.377861,0.972122,0.557566,0.172982,0.058812,0.665866,0.768105,0.359568,0.801889,0.965504,0.683245,0.118149,0.242107,0.62288,0.226285,0.916832,0.0519047,0.873931,0.490828,0.507266,0.81451,0.215381,0.849488,0.486618,0.548803,0.856584,0.249094,0.72099,0.386198,0.0356784,0.0943414,0.675389,0.489774,0.797765,0.712895,0.736417,0.101365,0.958193,0.530437,0.455155,0.907802,0.256547,0.938002,0.259074,0.560859,0.125044,0.575574,0.102575,0.012154,0.641038,0.321725,0.0227588,0.540138,0.719353,0.856771,0.716062,0.834461,0.656909,0.920214,0.951625,0.394601,0.747097,0.705558,0.366915,0.20016,0.446591,0.711435,0.186068,0.989469,0.822068,0.887147,0.641233,0.2855,0.957138,0.860109,0.467045,0.644576,0.240104,0.511565,0.330095,0.321676,0.0150169,0.180929,0.200179,0.127466,0.853929,0.60076,0.726767,0.404008,0.426642,0.956445,0.64076,0.760563,0.0632637,0.505497,0.862857,0.809167,0.955856,0.505802,0.277839,0.460247,0.469959,0.438885,0.988829,0.204115,0.848569,0.23843,0.518713,0.379607,0.653334,0.78676,0.541311,0.138784,0.963453,0.119351,0.673063,0.280836,0.62107,0.10299,0.309406,0.476786,0.686325,0.0706458,0.296691,0.0446066,0.454415,0.0787565,0.223541,0.314744,0.137646,0.143655,0.263974,0.260257,0.593034,0.449466,0.709375,0.586811,0.521648,0.400392,0.783464,0.856663,0.187874,0.868864,0.384366,0.783703,0.564259,0.0821214,0.289616,0.454269,0.0520133,0.493773,0.502068,0.0361206,0.353577,0.375822,0.228625,0.841579,0.597582,0.770068,0.814051,0.68875,0.578972,0.0722733,0.393837,0.658818,0.82695,0.0784824,0.953966,0.716824,0.0846603,0.428344,0.69483,0.812597,0.592217,0.900952,0.469208,0.499494,0.844394,0.601809,0.85878,0.0534115,0.628741,0.466287,0.221387,0.0694258,0.924304,0.327608,0.0396572,0.619269,0.350353,0.432467,0.246695,0.418713,0.826488,0.0260052,0.83615,0.4696,0.573006,0.95362,0.0104831,0.387111,0.785382,0.592249,0.900117,0.0646914,0.60955,0.073051,0.574254,0.462615,0.504696,0.723288,0.802222,0.834154,0.0925346,0.856426,0.135319,0.0805708,0.414006,0.831291,0.281958,0.740831,0.164369,0.811739,0.982086,0.28586,0.588757,0.490047,0.374036,0.807271,0.800081,0.00657946,0.439712,0.771459,0.195573,0.766604,0.624786,0.882033,0.681546,0.551285,0.783025,0.928555,0.365456,0.118276,0.527396,0.758649,0.722093,0.143108,0.559747,0.9698,0.661281,0.914588,0.165345,0.960828,0.514846,0.107785,0.561117,0.817259,0.611457,0.931688,0.172694,0.744073,0.861293,0.202303,0.527291,0.0188583,0.445683,0.83145,0.251724,0.190773,0.249032,0.820237,0.497186,0.281385,0.972591,0.512971,0.0477244,0.167404,0.913913,0.427465,0.689073,0.867045,0.706481,0.286199,0.946918,0.419362,0.664744,0.183914,0.868624,0.847701,0.291648,0.835925,0.119433,0.215075,0.9905,0.977709,0.34963,0.509675,0.373542,0.159797,0.0644822,0.917513,0.62142,0.0212818,0.571769,0.305088,0.956318,0.960731,0.211344,0.417984,0.161236,0.424798,0.209503,0.583372,0.673066,0.154812,0.510008,0.402184,0.0236062,0.0263749,0.396823,0.80185,0.638094,0.187994,0.670914,0.0731793,0.957018,0.522791,0.66167,0.324716,0.936041,0.312856,0.0490439,0.717725,0.804233,0.54024,0.512996,0.879409,0.242946,0.388839,0.958697,0.313022,0.0679165,0.272546,0.133027,0.560813,0.646078,0.500911,0.554446,0.754913,0.723324,0.536595,0.467411,0.231605,0.441843,0.931052,0.352007,0.682511,0.419715,0.365253,0.425776,0.396456,0.0511009,0.41525,0.17635,0.833039,0.596215,0.953351,0.541723,0.906327,0.373207,0.539531,0.627518,0.0190488,0.760364,0.942945,0.482518,0.162859,0.3021,0.541747,0.462828,0.337927,0.0819867,0.657156,0.921765,0.504866,0.790795,0.0712829,0.296134,0.116586,0.676679,0.0190849,0.649175,0.549605,0.232433,0.215413,0.49447,0.684168,0.68411,0.472788,0.937663,0.875489,0.967634,0.904722,0.547295,0.308197,0.733291,0.976109,0.0119818,0.853595,0.723019,0.434224,0.694064,0.962491,0.867274,0.146473,0.412138,0.404717,0.761913,0.720501,0.441271,0.413352,0.673482,0.53281,0.797597,0.708593,0.631677,0.463164,0.356171,0.263964,0.0586492,0.791402,0.265313,0.506018,0.618417,0.70818,0.139954,0.357292,0.399566,0.993087,0.71972,0.692537,0.580038,0.879935,0.288449,0.475754,0.00592738,0.930697,0.160857,0.843446,0.0129451,0.381983,0.813635,0.0356227,0.00506884,0.749717,0.394109,0.749718,0.0123339,0.71201,0.855024,0.326051,0.179192,0.557156,0.627248,0.351326,0.819393,0.530549,0.563512,0.268792,0.648719,0.744587,0.239208,0.705661,0.366675,0.56772,0.00843245,0.532923,0.566633,0.821202,0.0865629,0.639494,0.155592,0.533965,0.890928,0.263507,0.11426,0.0425296,0.906482,0.0415459,0.343568,0.504692,0.337648,0.116033,0.17494,0.785055,0.903395,0.670411,0.0758984,0.617226,0.477423,0.814334,0.874842,0.867809,0.650656,0.496353,0.276245,0.652206,0.599495,0.103386,0.74966,0.999083,0.356337,0.304727,0.468424,0.588383,0.125094,0.543159,0.693853,0.808167,0.297467,0.972063,0.991377,0.0741354,0.969075,0.098428,0.105556,0.928793,0.865139,0.922797,0.637061,0.463432,0.169065,0.666725,0.572832,0.134031,0.748498,0.606107,0.0146034,0.537488,0.917925,0.708531,0.37037,0.890764,0.33972,0.770825,0.690102,0.851479,|0.479613,0.223832,0.376771,0.835873,0.295168,0.157828,0.31734,0.397208,0.392081,0.961693,0.909255,0.0490666,0.902956,0.432976,0.829987,0.776932,0.704898,0.615334,0.785126,0.825841,0.613204,0.952912,0.694757,0.2596,0.332426,0.502552,0.324508,0.462099,0.126263,0.513781,0.332312,0.540324,0.871532,0.134165,0.775232,0.912869,0.104349,0.733098,0.436721,0.0645586,0.0695282,0.119563,0.529797,0.21094,0.661966,0.530243,0.368405,0.982789,0.315926,0.957009,0.989993,0.035964,0.683494,0.469284,0.0741931,0.828428,0.13871,0.136102,0.363732,0.539567,0.358721,0.0103095,0.264147,0.738036,0.307794,0.378035,0.233174,0.307527,0.281997,0.429817,0.478793,0.0426312,0.104044,0.406025,0.802728,0.668016,0.0015462,0.0384242,0.379937,0.381306,0.680571,0.564183,0.544515,0.0310557,0.0960043,0.551052,0.244921,0.1264,0.128208,0.810041,0.839348,0.713147,0.549763,0.795117,0.774761,0.091493,0.166224,0.0761013,0.865334,0.972082,0.62315,0.204066,0.0984032,0.88742,0.238901,0.336094,0.710924,0.430786,0.402906,0.858124,0.350081,0.079882,0.237604,0.201222,0.106284,0.4405,0.140797,0.105098,0.335826,0.819612,0.965104,0.604509,0.432126,0.757006,0.315221,0.942668,0.60043,0.573689,0.353517,0.18812,0.121327,0.528022,0.330483,0.103602,0.836608,0.595162,0.332859,0.652536,0.00653195,0.67833,0.459413,0.244663,0.931505,0.373057,0.800595,0.598328,0.429135,0.569683,0.609417,0.183736,0.351871,0.745864,0.445866,0.576573,0.69503,0.389916,0.572904,0.89365,0.211562,0.953513,0.639495,0.323578,0.85396,0.48611,0.850865,0.805972,0.276786,0.646326,0.125082,0.196997,0.73441,0.785413,0.308039,0.371413,0.464555,0.146547,0.364525,0.678063,0.0899672,0.919781,0.624174,0.22169,0.236668,0.575172,0.584969,0.925015,0.154914,0.700539,0.840274,0.358985,0.727915,0.396177,0.0841686,0.749557,0.208996,0.589332,0.0224088,0.989908,0.885754,0.693945,0.607721,0.450113,0.874046,0.0900678,0.0617096,0.0080539,0.752982,0.936098,0.937545,0.973578,0.668958,0.640869,0.0403112,0.416454,0.0826045,0.0698991,0.705761,0.905931,0.715016,0.174978,0.00926745,0.394731,0.160846,0.761538,0.925569,0.216676,0.263453,0.455931,0.102129,0.124152,0.178125,0.790425,0.055843,0.614554,0.669093,0.158736,0.41628,0.679719,0.523279,0.177528,0.632478,0.447985,0.582352,0.777593,0.843299,0.201348,0.562223,0.766671,0.74123,0.281288,0.686913,0.940424,0.536558,0.739514,0.727614,0.530184,0.427989,0.488428,0.330992,0.974674,0.00533366,0.13775,0.56486,0.0729073,0.280506,0.628536,0.951908,0.584993,0.0782642,0.766385,0.567679,0.398099,0.167515,0.177169,0.518657,0.576201,0.342575,0.75289,0.960496,0.374829,0.00760764,0.609218,0.395884,0.173759,0.333722,0.357565,0.377341,0.768889,0.512091,0.526929,0.537508,0.0861592,0.998884,0.747573,0.48362,0.398967,0.146344,0.433843,0.592859,0.0998222,0.516133,0.0472975,0.0342897,0.380698,0.488043,0.710654,0.10481,0.169389,0.327754,0.832099,0.024521,0.767126,0.386887,0.0977392,0.0359101,0.370263,0.297912,0.671082,0.47062,0.70672,0.01604,0.201911,0.161094,0.973228,0.468219,0.0156987,0.957317,0.615602,0.388185,0.997931,0.583354,0.67784,0.974825,0.316029,0.45744,0.240473,0.137995,0.287836,0.092662,0.729371,0.309357,0.69874,0.352739,0.893847,0.108955,0.409452,0.830048,0.455973,0.446078,0.0518631,0.48637,0.0323416,0.588313,0.127778,0.10291,0.0343478,0.971315,0.393275,0.756048,0.592233,0.451973,0.208027,0.535927,0.0760891,0.423969,0.981961,0.780716,0.447383,0.338045,0.536369,0.658124,0.523589,0.439049,0.586504,0.904826,0.560214,0.0968625,0.594657,0.142786,0.750209,0.181028,0.773384,0.524989,0.484062,0.651133,0.602802,0.490188,0.749278,0.85231,0.892059,0.173465,0.519842,0.402662,0.448671,0.375805,0.362929,0.512008,0.734368,0.345494,0.337696,0.721873,0.473334,0.00762326,0.0617723,0.457248,0.140465,0.537504,0.07964,0.519317,0.265426,0.200149,0.438142,0.336036,0.0880215,0.986697,0.411517,0.300716,0.501924,0.489824,0.859402,0.850978,0.550384,0.823178,0.00019604,0.622961,0.677183,0.896285,0.368734,0.756235,0.601899,0.437953,0.650585,0.627539,0.0764476,0.587471,0.19902,0.174894,0.792999,0.800453,0.565978,0.991521,0.374761,0.258893,0.61995,0.601261,0.347933,0.51125,0.24179,0.0649962,0.504237,0.0461057,0.397099,0.141104,0.249552,0.319907,0.579844,0.674658,0.059957,0.234793,0.479108,0.832521,0.614113,0.88936,0.239099,0.694893,0.67137,0.016574,0.784266,0.485113,0.742065,0.617442,0.555661,0.270008,0.400913,0.0744544,0.443623,0.977938,0.0410684,0.504853,0.470637,0.0407412,0.947533,0.749019,0.429858,0.172471,0.527074,0.801874,0.628586,0.0075438,0.570109,0.44304,0.883038,0.445552,0.78732,0.872896,0.759454,0.814381,0.995929,0.243075,0.924513,0.810184,0.805029,0.814375,0.287761,0.545469,0.630337,0.421781,0.0139798,0.785101,0.308208,0.923202,0.0957373,0.239999,0.740674,0.741619,0.658027,0.736141,0.922313,0.400992,0.535867,0.461073,0.0893217,0.485111,0.123475,0.414163,0.0876223,0.739672,0.379413,0.901684,0.425498,0.956175,0.782031,0.9615,0.395555,0.442019,0.508774,0.624744,0.764304,0.420912,0.585367,0.970819,0.995657,0.753793,0.455966,0.770462,0.725448,0.459609,0.243557,0.480364,0.615341,0.360052,0.975132,0.542147,0.469093,0.379598,0.024375,0.275402,0.333559,0.693023,0.281922,0.836582,0.311661,0.287736,0.197397,0.949054,0.252887,0.6731,0.897617,0.437655,0.349184,0.311941,0.532723,0.89432,0.436508,0.823118,0.855483,0.655663,0.43064,0.704861,0.638403,0.0188847,0.268581,0.870218,0.250873,0.206622,0.90016,0.572757,0.260724,0.620794,0.887279,0.159861,0.516225,0.936598,0.976299,0.909017,0.578195,0.0503088,0.499707,0.209537,0.694727,0.0647527,0.517591,0.672841,0.382413,0.467498,0.115951,0.880369,0.690513,0.431742,0.32894,0.720606,0.199661,0.389237,0.36024,0.407482,0.0260055,0.00148034,0.899953,0.157472,0.387429,0.445294,0.754695,0.183083,0.0982977,0.660024,0.404642,0.322668,0.445775,0.00025785,0.0292969,0.661738,0.428353,0.71296,0.289909,0.388427,0.960797,0.910991,0.676216,0.130774,0.897012,0.22384,0.830571,0.802031,0.035212,0.959204,0.638589,0.948895,0.863807,0.0146494,0.41715,0.243553,0.714463,0.551585,0.240526,0.022325,0.782076,0.991278,0.330175,0.763379,0.149614,0.293401,0.258632,0.897561,0.149926,0.480993,0.71935,0.749399,0.156608,0.29949,0.149675,0.673881,0.509076,0.731984,0.190655,0.407576,0.316015,0.19015,0.19134,0.761552,0.581433,0.164043,0.748679,0.963075,0.8062,0.200762,0.054514,0.64551,0.434347,0.209685,0.425145,0.623489,0.0400705,0.366733,0.446642,0.606111,0.4227,0.554458,0.238856,0.794186,0.519353,0.354642,0.694647,0.727872,0.568726,0.692518,0.744908,0.231901,0.52925,0.0953733,0.573508,0.0325014,0.333401,0.67097,0.191132,0.922358,0.934384,0.804157,0.947878,0.904686,0.669259,0.361597,0.493978,0.867836,0.534027,0.681397,0.100993,0.900008,0.794811,0.665588,0.602519,0.412225,0.584908,0.699562,0.670363,0.144329,0.542551,0.864906,0.873354,0.497512,0.710023,0.486801,0.102061,0.117249,0.86461,0.611328,0.224349,0.89543,0.352164,0.881005,0.496587,0.155963,0.934557,0.377743,0.566464,0.11186,0.109994,0.0345616,0.902843,0.545115,0.187365,0.138599,0.931131,0.276588,0.390363,0.451464,0.378223,0.601083,0.855925,0.945896,0.302086,0.774038,0.0234188,0.559511,0.285805,0.91205,0.442717,0.207921,0.872751,0.307345,0.273479,0.505451,0.646342,0.53607,0.190339,0.842759,0.379936,0.77362,0.270884,0.928995,0.0982397,0.177623,0.944788,0.502264,0.840502,0.89666,0.963734,0.785522,0.191131,0.843763,0.119272,0.754269,0.409578,0.531641,0.170886,0.416914,0.127285,0.945969,0.455773,0.475883,0.745459,0.635538,0.756154,0.729953,0.0998387,0.553531,0.641572,0.930229,0.82129,0.554121,0.0326996,0.224527,0.985221,0.950956,0.916018,0.740809,0.56206,0.371744,0.340263,0.535315,0.0593211,0.546463,0.818189,0.795231,0.408794,0.711953,0.31688,0.227609,0.922149,0.92302,0.791072,0.143078,0.872602,0.851291,0.759986,0.556728,0.743212,0.630178,0.183388,0.66645,0.417226,0.0522395,0.857572,0.370424,0.409515,0.840409,0.384212,0.590018,0.0762465,0.675321,0.781271,0.735689,0.969402,0.946081,0.682155,0.0924111,0.55174,0.299636,0.145605,0.0118226,0.0864223,0.539108,0.72679,0.38597,0.918427,0.837242,0.127968,0.149461,0.264358,0.755476,0.182844,0.541362,0.963801,0.0598173,0.438629,0.686727,0.945542,0.799738,0.450889,0.942436,0.0287027,0.0709246,0.123994,0.519736,0.00415045,0.238847,0.139962,0.505228,0.787893,0.596887,0.878546,0.595013,0.0137858,0.116057,0.47453,0.685916,0.0650383,0.514755,0.115081,0.0898542,0.0718785,0.275703,0.191674,0.6636,0.464894,0.195556,0.1386,0.864894,0.531041,0.34293,0.57115,0.357001,0.805048,0.6905,0.818655,0.636352,0.913387,0.263395,0.879668,0.691491,0.571345,0.95528,0.516934,0.679557,0.553996,0.516316,0.613517,0.82221,0.870549,0.426074,0.821852,0.86993,0.185274,0.722365,0.751253,0.180709,0.288708,0.402946,0.449525,0.99422,0.375057,0.496943,0.13575,0.270604,0.662949,0.636112,0.709385,0.311504,0.176655,0.723393,0.391613,0.927176,0.920339,0.352149,0.529212,0.263033,0.18491,0.529779,0.36363,0.226559,0.0165696,0.241989,0.146524,0.123993,0.272244,0.829872,0.370968,0.0762799,0.622072,0.257639,0.221739,0.110131,0.505602,0.512912,0.734929,0.0821282,0.197397,0.66528,0.269461,0.58533,0.431211,0.181485,0.874892,0.0090732,0.847993,0.543918,0.826335,0.182931,0.354704,0.123285,0.356346,|0.245244,0.173329,0.515943,0.90601,0.314179,0.941988,0.0290043,0.945782,0.906012,0.0648656,0.945062,0.476704,0.0571945,0.868789,0.705882,0.194444,0.595191,0.665653,0.880411,0.60509,0.743213,0.333506,0.634262,0.750434,0.371892,0.524496,0.519185,0.865959,0.418047,0.677204,0.18123,0.313372,0.214694,0.537743,0.506091,0.931948,0.902212,0.893819,0.927998,0.919544,0.595677,0.89082,0.508176,0.431769,0.130499,0.995513,0.80332,0.610186,0.233253,0.137308,0.797931,0.938797,0.341714,0.596069,0.781286,0.735571,0.113659,0.446831,0.284256,0.926727,0.970158,0.28499,0.813757,0.0376762,0.0884575,0.289218,0.553437,0.412075,0.122987,0.676363,0.499275,0.928346,0.433167,0.473873,0.426427,0.0238869,0.682737,0.136858,0.273059,0.290097,0.215424,0.572794,0.043419,0.537505,0.2445,0.442793,0.901663,0.739084,0.274499,0.205147,0.708453,0.356739,0.0291246,0.99168,0.112707,0.616797,0.683714,0.875081,0.215639,0.151397,0.53507,0.926834,0.811189,0.906069,0.116057,0.352167,0.126148,0.728791,0.595014,0.179703,0.400037,0.755307,0.190923,0.0546675,0.130074,0.190549,0.343475,0.612042,0.705064,0.091239,0.210148,0.519386,0.178269,0.0139964,0.727047,0.932258,0.486358,0.211059,0.279625,0.848695,0.430468,0.461145,0.790537,0.581602,0.999588,0.653667,0.329813,0.368173,0.251455,0.332631,0.911157,0.0776944,0.633212,0.922352,0.774026,0.483825,0.857267,0.828801,0.657719,0.306189,0.465498,0.184676,0.307447,0.524473,0.936399,0.509558,0.0583516,0.0543748,0.102638,0.482802,0.15251,0.544606,0.745997,0.145588,0.478462,0.044716,0.405932,0.436819,0.0741062,0.295401,0.130492,0.553866,0.211645,0.340875,0.114448,0.833116,0.240458,0.612809,0.761727,0.974645,0.304731,0.525744,0.868347,0.336588,0.0438566,0.498919,0.0015105,0.54657,0.777561,0.98641,0.325614,0.954449,0.253615,0.629244,0.624052,0.0136816,0.89319,0.558425,0.26834,0.194923,0.759376,0.720324,0.224981,0.381088,0.561506,0.0419421,0.402646,0.46971,0.266475,0.714609,0.335839,0.868975,0.313124,0.121933,0.873473,0.822598,0.41819,0.433841,0.757672,0.900438,0.777314,0.333174,0.829495,0.0382902,0.266433,0.209558,0.664151,0.887929,0.757498,0.274705,0.735218,0.576627,0.831241,0.130179,0.277368,0.28428,0.254034,0.865097,0.592093,0.83637,0.199034,0.00469464,0.231925,0.0547038,0.720493,0.879688,0.401883,0.776428,0.762316,0.0879878,0.575818,0.423018,0.997333,0.126548,0.501155,0.98175,0.648807,0.571861,0.45764,0.905896,0.805438,0.215339,0.470628,0.816556,0.427739,0.226028,0.556521,0.339147,0.656621,0.183457,0.518567,0.609888,0.329002,0.678572,0.0176297,0.396183,0.495339,0.750971,0.0700575,0.695586,0.846095,0.462022,0.134669,0.981083,0.281894,0.108761,0.654565,0.036717,0.160529,0.256416,0.717938,0.205478,0.34978,0.0797099,0.956931,0.481179,0.334348,0.975491,0.172516,0.584822,0.867422,0.580655,0.287026,0.327451,0.616032,0.513141,0.0561419,0.886121,0.530014,0.464846,0.243741,0.123543,0.172251,0.693271,0.641976,0.983589,0.804601,0.828844,0.874849,0.657602,0.397394,0.382418,0.550923,0.0588414,0.00608397,0.0742058,0.187542,0.639941,0.104223,0.0140375,0.604486,0.734422,0.190438,0.241461,0.444586,0.868995,0.582471,0.437735,0.668355,0.164065,0.829526,0.709191,0.277363,0.555076,0.992391,0.226177,0.758484,0.137685,0.763552,0.293454,0.72348,0.949102,0.934012,0.612772,0.636914,0.168942,0.654649,0.967792,0.276543,0.359474,0.556277,0.65317,0.647376,0.855453,0.56977,0.195198,0.0146093,0.820665,0.112012,0.509679,0.211551,0.442417,0.901428,0.471567,0.355897,0.481457,0.476418,0.142999,0.229678,0.873127,0.482119,0.366156,0.350369,0.233202,0.00177699,0.549728,0.730425,0.699747,0.619506,0.663269,0.182135,0.0655704,0.836059,0.112592,0.921491,0.673517,0.269662,0.545931,0.886948,0.142639,0.911419,0.549109,0.384357,0.420491,0.205593,0.48388,0.265259,0.636712,0.0494957,0.675211,0.570376,0.107103,0.541257,0.444637,0.421565,0.752741,0.872542,0.639514,0.292833,0.368274,0.778077,0.456559,0.645364,0.685991,0.555754,0.580783,0.696519,0.224282,0.993205,0.871963,0.912564,0.220735,0.948261,0.680954,0.557968,0.368485,0.587608,0.825298,0.379492,0.127543,0.176557,0.877326,0.814138,0.224111,0.250563,0.014361,0.890954,0.416119,0.390306,0.671843,0.78311,0.662131,0.855883,0.672248,0.503412,0.117316,0.60537,0.0252008,0.364686,0.241109,0.141362,0.0860606,0.575624,0.957422,0.570886,0.950797,0.588308,0.246396,0.240387,0.0453027,0.1914,0.160674,0.539966,0.0151387,0.00872809,0.702171,0.537031,0.736582,0.267067,0.862425,0.554163,0.947079,0.749368,0.544153,0.449516,0.674897,0.576645,0.184722,0.18792,0.641936,0.832238,0.981836,0.35835,0.66684,0.417035,0.445434,0.519167,0.294761,0.555022,0.154434,0.219438,0.163661,0.619168,0.508062,0.494638,0.649693,0.733267,0.313558,0.365213,0.339382,0.0378017,0.727072,0.935225,0.679761,0.82121,0.55723,0.539973,0.485439,0.982853,0.615577,0.154986,0.941285,0.0923879,0.940889,0.381575,0.804926,0.120628,0.487308,0.184938,0.388949,0.45192,0.374609,0.326325,0.857407,0.852911,0.487617,0.88518,0.472155,0.131877,0.158014,0.61001,0.749097,0.494025,0.38061,0.929398,0.56995,0.172462,0.75069,0.600019,0.675984,0.720223,0.705783,0.672237,0.677611,0.150599,0.893575,0.530611,0.358015,0.656316,0.333309,0.731833,0.156683,0.951353,0.44646,0.376728,0.338731,0.945222,0.651471,0.600726,0.339045,0.813977,0.326657,0.561407,0.346993,0.488908,0.504029,0.33195,0.532223,0.30238,0.400085,0.356986,0.844369,0.839192,0.153591,0.858588,0.558318,0.852104,0.890796,0.622395,0.878434,0.0934049,0.0331817,0.369046,0.529016,0.553386,0.12053,0.297403,0.323407,0.618273,0.490473,0.221331,0.555,0.154585,0.727782,0.21756,0.828768,0.288542,0.621617,0.557008,0.160824,0.212466,0.910901,0.524552,0.916005,0.829603,0.0948208,0.650266,0.115442,0.0795018,0.805141,0.767138,0.410659,0.908612,0.0836997,0.276839,0.292021,0.317333,0.881274,0.704451,0.599726,0.5873,0.871665,0.0617229,0.936391,0.0451354,0.402031,0.362166,0.693443,0.326048,0.548641,0.361062,0.694198,0.0592659,0.556416,0.706175,0.316431,0.47865,0.424133,0.911743,0.613597,0.105671,0.573825,0.771135,0.707573,0.0851287,0.766773,0.944947,0.474579,0.382928,0.717887,0.838095,0.0477642,0.0785918,0.951555,0.388014,0.767391,0.718622,0.649227,0.80958,0.724441,0.181447,0.370838,0.675689,0.111691,0.125237,0.133611,0.483503,0.176469,0.394772,0.116855,0.678822,0.604229,0.759883,0.478871,0.225696,0.200948,0.706774,0.341186,0.615431,0.384606,0.878939,0.219125,0.319662,0.22936,0.495563,0.582642,0.954494,0.835185,0.535166,0.154513,0.0134839,0.187503,0.203766,0.14139,0.869741,0.952042,0.87647,0.420557,0.853903,0.239088,0.510972,0.328617,0.765716,0.288567,0.875978,0.391143,0.504959,0.872732,0.857732,0.185303,0.348794,0.915013,0.252325,0.114026,0.309251,0.323079,0.488609,0.338996,0.330665,0.623654,0.85824,0.77143,0.0551158,0.0493189,0.560116,0.588815,0.724206,0.293618,0.356407,0.350534,0.498433,0.152073,0.745211,0.631112,0.484368,0.284614,0.405036,0.0764009,0.927259,0.40369,0.56471,0.80129,0.524759,0.244639,0.382044,0.772211,0.787893,0.68967,0.138763,0.0467891,0.918048,0.48631,0.0969187,0.429864,0.670793,0.948586,0.984161,0.805652,0.763117,0.760299,0.129654,0.603167,0.514057,0.367663,0.285946,0.275116,0.214638,0.99219,0.372802,0.176425,0.407712,0.424075,0.675924,0.976084,0.38951,0.73121,0.245427,0.339132,0.541284,0.38637,0.825952,0.638287,0.656996,0.710167,0.613903,0.9052,0.690965,0.833072,0.374025,0.217198,0.473214,0.683355,0.695339,0.366641,0.887463,0.901992,0.702676,0.852172,0.403156,0.763983,0.679927,0.605486,0.287403,0.360782,0.498636,0.521061,0.267542,0.688228,0.674514,0.793618,0.907265,0.723614,0.525133,0.887015,0.687908,0.651631,0.118389,0.59654,0.762105,0.185686,0.480585,0.799812,0.577837,0.618023,0.419531,0.448178,0.355545,0.834774,0.103696,0.993201,0.975608,0.823417,0.260344,0.842717,0.892707,0.477894,0.759096,0.552725,0.527507,0.6566,0.893905,0.388744,0.257816,0.421455,0.331875,0.101317,0.604852,0.896573,0.557334,0.938271,0.638301,0.614946,0.321611,0.66498,0.13066,0.405245,0.760363,0.117201,0.862544,0.666097,0.420294,0.716211,0.069352,0.687283,0.734049,0.920325,0.882213,0.400629,0.897764,0.469816,0.408839,0.0817277,0.871799,0.425906,0.593174,0.733617,0.270253,0.654773,0.897294,0.260233,0.130418,0.189863,0.30023,0.885258,0.218102,0.974776,0.776866,0.120832,0.000222623,0.119024,0.378982,0.718007,0.809828,0.672683,0.689676,0.962821,0.952489,0.268906,0.0808635,0.0120305,0.12642,0.986168,0.760533,0.194754,0.283933,0.158645,0.117707,0.207225,0.664876,0.577738,0.0926317,0.37052,0.0408422,0.499777,0.2987,0.282744,0.926219,0.696253,0.71283,0.360204,0.443302,0.457681,0.791119,0.0264652,0.954391,0.461357,0.0875163,0.0856155,0.367951,0.373861,0.534578,0.774864,0.715922,0.995493,0.782945,0.77683,0.933091,0.0076915,0.151896,0.622149,0.726333,0.959937,0.644519,0.577459,0.972491,0.721322,0.171212,0.965497,0.979974,0.355366,0.491346,0.675723,0.98035,0.0568261,0.251533,0.457496,0.977151,0.474716,0.267902,0.604659,0.438699,0.275082,0.791366,0.0285561,0.0418475,0.92118,0.108803,0.374128,0.0737696,0.658571,0.958197,0.423867,0.296832,0.916059,0.0180457,0.995077,0.662044,0.511199,0.331727,0.108473,0.703057,0.772413,0.202752,0.385713,0.202045,0.988759,0.814883,0.25198,0.36621,0.798618,|0.984344,0.584359,0.57536,0.793423,0.0861064,0.717574,0.500731,0.705228,0.656144,0.435205,0.477593,0.28611,0.260326,0.886894,0.168826,0.535486,0.730675,0.0560694,0.534633,0.477785,0.512176,0.681505,0.324661,0.489159,0.519313,0.714989,0.807192,0.181177,0.955892,0.108768,0.397242,0.642316,0.0332825,0.908062,0.0474659,0.955736,0.724234,0.305869,0.853498,0.289661,0.505817,0.13143,0.708465,0.726804,0.764135,0.263793,0.604866,0.693993,0.078069,0.252931,0.197392,0.691049,0.946182,0.761635,0.20376,0.286338,0.662894,0.627475,0.281267,0.364581,0.282725,0.526723,0.949485,0.163608,0.0483398,0.561126,0.178,0.570158,0.0159135,0.0183893,0.735438,0.898415,0.857379,0.729035,0.489403,0.95442,0.4038,0.608416,0.387095,0.888003,0.973607,0.603218,0.118273,0.89984,0.581288,0.369598,0.330256,0.938311,0.340938,0.78352,0.871688,0.644542,0.278242,0.760812,0.871918,0.741927,0.688904,0.327411,0.929436,0.64669,0.239863,0.102934,0.849847,0.408993,0.289867,0.613649,0.42676,0.145853,0.642768,0.323851,0.222473,0.734213,0.867482,0.399915,0.569132,0.670281,0.815815,0.922438,0.40683,0.692954,0.977339,0.185937,0.379366,0.00995904,0.587707,0.958529,0.312577,0.561152,0.442884,0.309664,0.012356,0.463691,0.677515,0.0688558,0.613948,0.953029,0.774431,0.326538,0.395978,0.509484,0.569303,0.603587,0.669826,0.888627,0.263791,0.541626,0.450938,0.251991,0.0432511,0.0396056,0.120834,0.909933,0.0333062,0.450132,0.593692,0.91848,0.0237156,0.111418,0.118271,0.396408,0.35756,0.199552,0.0607657,0.205146,0.75494,0.79428,0.657001,0.504861,0.190513,0.367303,0.0175734,0.780807,0.502007,0.588186,0.300848,0.867475,0.787379,0.619323,0.700038,0.150704,0.868863,0.0320992,0.219346,0.620537,0.166351,0.718242,0.977904,0.206322,0.181713,0.437558,0.154726,0.442483,0.831473,0.523335,0.614667,0.208764,0.248892,0.0208539,0.639234,0.392918,0.382787,0.748776,0.183658,0.278005,0.421991,0.513867,0.960773,0.793207,0.693184,0.676346,0.546821,0.878299,0.388102,0.50448,0.0071876,0.300155,0.130715,0.657741,0.206043,0.1815,0.669731,0.799062,0.746936,0.0376341,0.14787,0.87265,0.742265,0.217362,0.295412,0.505085,0.274839,0.069795,0.14005,0.157652,0.810492,0.964731,0.0566624,0.354621,0.482612,0.0613071,0.0438425,0.0252808,0.518103,0.507988,0.192148,0.0272606,0.910517,0.191651,0.853961,0.0178094,0.731369,0.619533,0.778827,0.245864,0.660455,0.715704,0.655843,0.266178,0.718641,0.222253,0.0263812,0.0399755,0.222845,0.715452,0.379072,0.000828028,0.164841,0.809698,0.152128,0.88305,0.34723,0.196317,0.438369,0.290655,0.683298,0.796834,0.725327,0.113596,0.401082,0.933264,0.454989,0.000758171,0.800413,0.115994,0.780484,0.312255,0.13628,0.770998,0.0493515,0.0131068,0.411871,0.0401801,0.47571,0.424297,0.380332,0.126294,0.393807,0.471197,0.731319,0.409047,0.295045,0.817229,0.461451,0.680319,0.89923,0.743766,0.327401,0.304951,0.979216,0.129199,0.630186,0.259625,0.632332,0.612682,0.64105,0.533979,0.541189,0.0665796,0.623702,0.344783,0.190841,0.838795,0.331447,0.17101,0.139028,0.0804954,0.546558,0.311,0.272321,0.623189,0.563177,0.0433441,0.124448,0.269118,0.534815,0.980087,0.849171,0.857221,0.289881,0.957606,0.136665,0.577454,0.350713,0.719596,0.377348,0.159141,0.560917,0.433178,0.121976,0.566292,0.175431,0.261575,0.962831,0.383599,0.143144,0.587689,0.660407,0.564283,0.522935,0.288687,0.791091,0.481483,0.633851,0.129224,0.25766,0.618702,0.780498,0.816495,0.572005,0.878661,0.93108,0.335366,0.670097,0.597919,0.425492,0.764104,0.141374,0.529304,0.65752,0.0799628,0.0192562,0.329769,0.976278,0.888521,0.659295,0.196363,0.365396,0.933623,0.31369,0.421276,0.874341,0.528899,0.562583,0.825531,0.275367,0.684739,0.118949,0.409789,0.564577,0.230938,0.379644,0.979493,0.947406,0.345493,0.941837,0.944433,0.744143,0.311942,0.324833,0.705088,0.124629,0.564873,0.324781,0.974733,0.678365,0.461124,0.938989,0.994928,0.571985,0.596691,0.620705,0.792459,0.90468,0.752361,0.801521,0.756907,0.536216,0.927512,0.180597,0.0455282,0.472541,0.807468,0.650565,0.351256,0.651816,0.881553,0.32,0.47647,0.141799,0.721818,0.9516,0.0285575,0.83818,0.708695,0.223035,0.26132,0.873817,0.14344,0.271304,0.120911,0.286255,0.304833,0.141838,0.476289,0.94661,0.591232,0.243446,0.700601,0.700267,0.308537,0.80537,0.893238,0.259671,0.540269,0.380032,0.131004,0.591728,0.270375,0.926387,0.0582279,0.146164,0.53562,0.674134,0.464536,0.0755624,0.223827,0.602948,0.859112,0.40822,0.507212,0.998699,0.41397,0.780168,0.312295,0.143656,0.606161,0.508418,0.454796,0.690533,0.914746,0.0115361,0.997815,0.719922,0.679365,0.390231,0.672438,0.572007,0.61405,0.0727022,0.572959,0.664061,0.00423962,0.449434,0.0905077,0.649349,0.375978,0.869448,0.0161236,0.246271,0.439562,0.209896,0.106746,0.907578,0.449823,0.113057,0.820959,0.743251,0.0139377,0.64782,0.888918,0.703364,0.659182,0.169322,0.554922,0.456583,0.643211,0.719983,0.607666,0.163941,0.351611,0.640047,0.924056,0.406341,0.63444,0.357631,0.358624,0.967872,0.0862095,0.271713,0.888678,0.516644,0.785568,0.917326,0.199199,0.54828,0.30567,0.285372,0.66164,0.95146,0.530971,0.637169,0.64419,0.135198,0.446465,0.116956,0.652684,0.894249,0.537915,0.861379,0.989517,0.530094,0.752321,0.994795,0.94356,0.666747,0.442105,0.285403,0.781201,0.566743,0.619266,0.199464,0.325628,0.490105,0.0595892,0.307803,0.330817,0.207183,0.737043,0.659793,0.0651444,0.129891,0.532586,0.996141,0.66278,0.376226,0.523753,0.587766,0.669185,0.736061,0.641836,0.794388,0.816983,0.474505,0.317928,0.740747,0.030414,0.790505,0.313514,0.554714,0.767803,0.791028,0.388358,0.888119,0.288252,0.470495,0.962978,0.590859,0.827447,0.550397,0.553197,0.755423,0.681371,0.476767,0.144398,0.204012,0.622068,0.529997,0.474347,0.79788,0.370175,0.487907,0.842892,0.80184,0.0709013,0.356841,0.0871807,0.229934,0.0488616,0.729083,0.783497,0.260561,0.191406,0.126752,0.916515,0.37528,0.358106,0.265198,0.316589,0.812562,0.341488,0.309609,0.228657,0.320022,0.527449,0.704814,0.809679,0.79773,0.00387841,0.203915,0.200881,0.386051,0.421754,0.651843,0.202584,0.203305,0.143112,0.483859,0.818201,0.605839,0.784194,0.75579,0.978073,0.689832,0.447749,0.558223,0.104512,0.98121,0.379035,0.834995,0.80193,0.624138,0.552111,0.693113,0.110631,0.831013,0.326226,0.667427,0.229642,0.653812,0.114954,0.576881,0.0210174,0.146126,0.962814,0.637762,0.056528,0.498096,0.29705,0.832884,0.484515,0.0146735,0.0748733,0.125654,0.148267,0.377155,0.701801,0.20366,0.193197,0.198497,0.128483,0.354429,0.235748,0.225589,0.769264,0.154894,0.774364,0.930327,0.128532,0.617676,0.641297,0.0428081,0.991696,0.321432,0.754345,0.118734,0.232332,0.776954,0.829539,0.133608,0.494066,0.0298436,0.588877,0.590091,0.969168,0.453963,0.223298,0.998723,0.475972,0.82395,0.546005,0.763466,0.764051,0.600091,0.472534,0.74079,0.994995,0.992883,0.657672,0.664634,0.77879,0.600167,0.621336,0.845878,0.668071,0.365313,0.583905,0.752382,0.585743,0.380152,0.527262,0.64165,0.0730176,0.214568,0.271881,0.555338,0.269607,0.751651,0.0372906,0.907004,0.0740432,0.991472,0.713847,0.955152,0.47712,0.346394,0.494729,0.550634,0.111307,0.427382,0.298645,0.38375,0.992648,0.540417,0.691484,0.336091,0.448262,0.429942,0.558544,0.585717,0.354507,0.772295,0.806537,0.804967,0.58254,0.192841,0.175974,0.569602,0.828614,0.541642,0.39386,0.762614,0.587693,0.980905,0.716945,0.151053,0.00903916,0.160749,0.727115,0.750324,0.443066,0.530496,0.0894942,0.486656,0.964049,0.673122,0.163925,0.422074,0.765104,0.57688,0.895901,0.658863,0.388635,0.796491,0.477547,0.18728,0.256172,0.644595,0.599161,0.244136,0.0940737,0.924597,0.869654,0.508991,0.387892,0.25531,0.832125,0.407739,0.60376,0.449734,0.778819,0.468481,0.318024,0.906153,0.493492,0.451275,0.363267,0.0142041,0.230067,0.248925,0.725072,0.793442,0.232766,0.429703,0.655222,0.470354,0.974259,0.128083,0.436403,0.0942412,0.0429204,0.18575,0.533556,0.322885,0.983566,0.101673,0.958981,0.587743,0.0536126,0.838466,0.185371,0.109896,0.688226,0.636767,0.0304241,0.683519,0.896191,0.115687,0.864213,0.428677,0.652168,0.528093,0.284364,0.603048,0.354896,0.178423,0.596498,0.102831,0.727895,0.565501,0.683724,0.905113,0.95791,0.473095,0.109083,0.795729,0.300871,0.535654,0.0798806,0.000341952,0.10765,0.149395,0.686749,0.957285,0.949888,0.119876,0.0242115,0.00558829,0.332764,0.558276,0.998507,0.594502,0.587734,0.153435,0.460896,0.992697,0.489626,0.176102,0.835844,0.954934,0.329252,0.314467,0.633349,0.794614,0.494638,0.495024,0.163198,0.337425,0.66109,0.190663,0.583925,0.42818,0.134574,0.594184,0.939089,0.959539,0.519608,0.635882,0.224663,0.780974,0.016525,0.940753,0.527863,0.551654,0.65885,0.362882,0.502276,0.540736,0.471826,0.657766,0.51936,0.0424844,0.963019,0.903095,0.849974,0.723332,0.549825,0.994523,0.422095,0.268805,0.921194,0.839677,0.475931,0.148709,0.428337,0.0957503,0.0154654,0.805716,0.652939,0.192556,0.544895,0.758107,0.156282,0.851089,0.526333,0.0790464,0.0688019,0.922076,0.337536,0.27651,0.605677,0.0513657,0.770322,0.0699849,0.772027,0.0704317,0.204408,0.151985,0.460185,0.119452,0.999291,0.536273,0.857904,0.160574,0.864725,0.642683,0.93656,0.0413377,0.12023,0.170751,0.550272,0.20753,0.0203486,0.141241,0.38539,0.575353,0.78446,0.742713,0.855199,0.582582,0.81134,|0.000250995,0.389793,0.532688,0.109192,0.956477,0.471965,0.964152,0.62564,0.756867,0.899162,0.816963,0.0671089,0.2352,0.442125,0.330365,0.563582,0.792955,0.93447,0.686054,0.691404,0.290612,0.111237,0.315952,0.726784,0.834484,0.710648,0.840465,0.67506,0.265647,0.510111,0.626032,0.458951,0.294596,0.0310495,0.0911673,0.355179,0.836265,0.700281,0.574824,0.328744,0.432711,0.586576,0.466484,0.095468,0.0293446,0.16232,0.0675716,0.552386,0.36848,0.905078,0.124339,0.759316,0.463232,0.969832,0.36415,0.640407,0.781842,0.661993,0.463022,0.116303,0.879871,0.183949,0.471528,0.0500475,0.84932,0.772717,0.28345,0.389365,0.775895,0.0375744,0.115108,0.23001,0.33871,0.599344,0.356806,0.834107,0.313277,0.855349,0.864391,0.349913,0.444377,0.683222,0.423325,0.841734,0.970797,0.426907,0.0661831,0.122372,0.461041,0.144343,0.408464,0.643516,0.754148,0.897677,0.318406,0.175526,0.428001,0.985256,0.0433542,0.149889,0.537004,0.589789,0.0109424,0.701161,0.764412,0.0475207,0.662944,0.689862,0.917914,0.520934,0.111306,0.478078,0.255518,0.98114,0.772412,0.938263,0.9821,0.793024,0.731541,0.48452,0.429064,0.0462307,0.585906,0.11362,0.2986,0.741497,0.403828,0.269085,0.494877,0.189342,0.445141,0.226603,0.73931,0.050387,0.588803,0.544115,0.738267,0.941686,0.724483,0.94036,0.655033,0.0186144,0.143877,0.666166,0.164937,0.27492,0.967206,0.672852,0.784917,0.0254206,0.996258,0.916483,0.62032,0.443281,0.651646,0.302636,0.533383,0.394433,0.316707,0.730568,0.238761,0.30132,0.165315,0.3752,0.0648993,0.434123,0.158635,0.239353,0.221722,0.106778,0.435559,0.701873,0.303522,0.203547,0.316353,0.0434061,0.286044,0.49527,0.0390571,0.155541,0.700478,0.0315232,0.623439,0.138436,0.18811,0.672673,0.22903,0.423695,0.406105,0.445632,0.201667,0.884873,0.76543,0.561977,0.89887,0.244579,0.252891,0.182587,0.64724,0.165279,0.195698,0.70295,0.554722,0.18143,0.126488,0.63101,0.49418,0.283937,0.866615,0.207314,0.824589,0.650267,0.212327,0.774512,0.747073,0.783864,0.969749,0.581595,0.133549,0.669812,0.972777,0.258996,0.206357,0.464598,0.467397,0.139123,0.369852,0.361754,0.00715935,0.851011,0.0448077,0.459552,0.0750078,0.516781,0.790602,0.718618,0.409593,0.204391,0.120482,0.0831947,0.91572,0.226181,0.643172,0.812987,0.948053,0.153728,0.742153,0.395421,0.486173,0.105556,0.442227,0.134461,0.761374,0.232084,0.760398,0.854584,0.535104,0.358019,0.507725,0.628713,0.57279,0.421949,0.527401,0.797153,0.240484,0.0333536,0.423239,0.911193,0.280085,0.205287,0.4836,0.519677,0.375455,0.440951,0.64987,0.735113,0.00328219,0.828615,0.347192,0.811803,0.788917,0.57169,0.175362,0.653186,0.28327,0.684947,0.724844,0.68314,0.851009,0.800915,0.212872,0.889067,0.311074,0.725356,0.389425,0.488644,0.798802,0.260048,0.0578614,0.169333,0.770033,0.613407,0.366708,0.803975,0.287766,0.459538,0.157726,0.290019,0.537368,0.376682,0.85214,0.982259,0.849931,0.665857,0.222647,0.777679,0.317452,0.0402222,0.931046,0.18643,0.396166,0.692339,0.00516242,0.241425,0.284431,0.80134,0.771785,0.0570573,0.0364192,0.490092,0.930951,0.142562,0.59754,0.608715,0.345327,0.62895,0.467045,0.29145,0.251461,0.523666,0.851021,0.684206,0.143799,0.740061,0.0893493,0.454309,0.449874,0.119968,0.321475,0.758848,0.390348,0.830953,0.279023,0.697085,0.336215,0.738799,0.800786,0.96592,0.452791,0.597575,0.869758,0.725123,0.839246,0.59123,0.551542,0.946401,0.354977,0.0404605,0.737061,0.158873,0.516162,0.652598,0.0227948,0.3091,0.105936,0.53528,0.964559,0.25159,0.0182759,0.026341,0.627337,0.349548,0.691487,0.796697,0.382704,0.763536,0.793729,0.96964,0.314757,0.711075,0.888425,0.218894,0.0895227,0.493288,0.0827518,0.471082,0.603599,0.282701,0.895693,0.859088,0.462568,0.151047,0.486041,0.743329,0.283374,0.552466,0.999606,0.57074,0.545732,0.626694,0.365294,0.195843,0.191702,0.850487,0.40834,0.307896,0.448153,0.793054,0.178818,0.402169,0.580595,0.277118,0.252944,0.921467,0.00730556,0.703753,0.504788,0.856043,0.488535,0.516077,0.823758,0.160582,0.520201,0.165532,0.946501,0.858042,0.54924,0.290443,0.768932,0.891096,0.286258,0.626353,0.658656,0.30767,0.79483,0.801133,0.572737,0.746738,0.63689,0.673798,0.418973,0.997003,0.898415,0.120035,0.354637,0.218517,0.480572,0.0811887,0.338829,0.774748,0.273884,0.384954,0.298075,0.0684744,0.374112,0.68165,0.233842,0.483307,0.139629,0.885697,0.272668,0.555113,0.521176,0.533406,0.501134,0.94024,0.232485,0.00996703,0.267411,0.793162,0.498319,0.645639,0.82783,0.240946,0.372944,0.184136,0.541185,0.0652341,0.559148,0.779401,0.415996,0.526665,0.145302,0.761516,0.252789,0.678189,0.0995603,0.0739706,0.0328884,0.981704,0.902998,0.521882,0.702138,0.343219,0.662803,0.649725,0.421353,0.811001,0.985682,0.274535,0.366864,0.827863,0.940359,0.738658,0.867713,0.0592791,0.63565,0.000329077,0.853346,0.282669,0.208811,0.863486,0.904294,0.840616,0.631245,0.721945,0.584596,0.780025,0.556559,0.625211,0.32121,0.824662,0.30998,0.765599,0.352339,0.415909,0.172037,0.139412,0.72974,0.897608,0.126068,0.364422,0.758804,0.690795,0.750535,0.270957,0.148387,0.902728,0.035957,0.522465,0.949888,0.545248,0.672488,0.248926,0.708858,0.380435,0.223569,0.145368,0.998568,0.149001,0.875799,0.935419,0.819017,0.780509,0.580872,0.69706,0.83609,0.600792,0.774497,0.224133,0.634907,0.339299,0.350448,0.320138,0.379051,0.107325,0.808795,0.573361,0.571192,0.431524,0.476057,0.736702,0.465962,0.663175,0.640871,0.832761,0.714641,0.66101,0.23182,0.765568,0.687171,0.380608,0.719297,0.610067,0.939733,0.20502,0.086727,0.0773115,0.697049,0.256204,0.797919,0.486791,0.528178,0.458502,0.230872,0.293135,0.302663,0.867422,0.534244,0.432852,0.524747,0.712238,0.795224,0.0358738,0.119988,0.271039,0.135025,0.648342,0.959743,0.801531,0.736216,0.911864,0.718677,0.431241,0.860449,0.62998,0.367629,0.0749218,0.626363,0.307336,0.0130194,0.42455,0.399636,0.0135903,0.76849,0.622218,0.469839,0.21727,0.425009,0.67568,0.133738,0.471128,0.0414345,0.668167,0.330368,0.850755,0.236823,0.858987,0.71087,0.334153,0.572941,0.71043,0.850523,0.277476,0.316905,0.430496,0.938754,0.571094,0.00720108,0.139105,0.900148,0.281848,0.345419,0.0934848,0.622424,0.932909,0.748652,0.684781,0.178652,0.067537,0.197924,0.574254,0.87656,0.75371,0.471198,0.303449,0.10395,0.445557,0.0862415,0.430286,0.37434,0.778528,0.746206,0.662801,0.0800117,0.447469,0.449528,0.373222,0.182678,0.143872,0.653097,0.662895,0.0898153,0.820943,0.717639,0.948311,0.138207,0.266253,0.0881388,0.832556,0.902213,0.283919,0.275257,0.765683,0.808026,0.9138,0.265988,0.315401,0.807021,0.782536,0.910353,0.630278,0.268656,0.568512,0.515332,0.706306,0.954576,0.703317,0.543539,0.245487,0.0763092,0.0897157,0.668885,0.136561,0.828967,0.666602,0.231381,0.833302,0.601384,0.642172,0.0523314,0.398145,0.26992,0.177333,0.341028,0.0814679,0.705997,0.792375,0.876796,0.574551,0.454366,0.943213,0.369272,0.10475,0.672375,0.827591,0.722676,0.242916,0.564078,0.485725,0.871041,0.600278,0.872606,0.452569,0.369296,0.631206,0.155636,0.0713124,0.777545,0.414325,0.799681,0.807611,0.193359,0.419898,0.338006,0.841825,0.930974,0.437661,0.310061,0.0229127,0.960827,0.828755,0.999279,0.96715,0.970368,0.958013,0.475548,0.99221,0.865162,0.333324,0.876897,0.522223,0.995762,0.694342,0.937907,0.0418062,0.971649,0.2074,0.699158,0.414522,0.485448,0.871579,0.786529,0.560888,0.71524,0.105913,0.666126,0.593542,0.437927,0.778142,0.856436,0.784116,0.676749,0.621681,0.128617,0.711011,0.312149,0.167062,0.54337,0.64312,0.843399,0.284096,0.870894,0.769972,0.561678,0.839267,0.442252,0.769802,0.894127,0.867029,0.763088,0.877354,0.347455,0.540938,0.313875,0.359533,0.398763,0.453223,0.555227,0.685567,0.00788814,0.151961,0.256586,0.458694,0.467869,0.219495,0.456046,0.573169,0.289209,0.972649,0.895945,0.984637,0.610479,0.587495,0.399611,0.684693,0.695935,0.245427,0.0934724,0.653512,0.886876,0.893651,0.459134,0.183773,0.305345,0.353923,0.720003,0.20877,0.592163,0.558426,0.85361,0.716585,0.979271,0.979187,0.564067,0.0397976,0.556115,0.818172,0.412078,0.24892,0.809509,0.957261,0.295856,0.595725,0.796926,0.34706,0.820727,0.256995,0.255148,0.522906,0.965404,0.383605,0.554196,0.981929,0.15411,0.901287,0.891914,0.163106,0.737465,0.317979,0.375253,0.147918,0.60413,0.316425,0.869897,0.340707,0.757445,0.223555,0.119397,0.549926,0.536881,0.336907,0.761751,0.166271,0.327508,0.492922,0.21006,0.379459,0.381847,0.826243,0.432484,0.199848,0.73672,0.980313,0.294559,0.97739,0.178469,0.576617,0.314821,0.0461673,0.974779,0.695644,0.15216,0.34946,0.177048,0.153881,0.0415795,0.157998,0.539003,0.345976,0.727034,0.032365,0.180557,0.109101,0.975661,0.615866,0.520657,0.545226,0.893538,0.0994093,0.422853,0.664067,0.757167,0.984789,0.212927,0.185482,0.0758023,0.0349143,0.244019,0.434569,0.597234,0.367442,0.567132,0.897917,0.803023,0.487577,0.317079,0.999575,0.417739,0.903098,0.193103,0.192124,0.916004,0.611049,0.421163,0.411129,0.444851,0.671127,0.237253,0.469575,0.583421,0.850104,0.177587,0.403697,0.301659,0.163898,0.0892934,0.961829,0.973081,0.54771,0.725755,0.145648,0.929828,0.377073,0.571849,0.469918,0.493412,0.69883,0.928519,0.131797,0.412393,0.376571,0.247968,0.833537,0.0417872,0.645855,0.829183,0.248924,0.723935,0.38629,|0.364851,0.395603,0.554988,0.55802,0.25205,0.698882,0.744828,0.441094,0.417401,0.229623,0.706744,0.320896,0.342042,0.395887,0.649047,0.0997795,0.406962,0.519059,0.926168,0.0256298,0.427959,0.636261,0.684844,0.855361,0.435945,0.469751,0.813827,0.915957,0.283068,0.805356,0.0371902,0.338653,0.0636511,0.870299,0.293813,0.509029,0.657916,0.502713,0.642954,0.263635,0.705817,0.484242,0.581564,0.663871,0.0292423,0.732308,0.671517,0.419638,0.258639,0.503651,0.0634523,0.0529953,0.142146,0.269438,0.630506,0.283156,0.706321,0.178428,0.501967,0.337242,0.797479,0.206213,0.355921,0.795002,0.223915,0.84959,0.711918,0.632316,0.683259,0.203279,0.359471,0.461718,0.843672,0.0990018,0.184862,0.544384,0.41626,0.0460367,0.978722,0.388239,0.824372,0.33387,0.227195,0.728006,0.0528142,0.0290469,0.962687,0.936014,0.562849,0.605965,0.165143,0.430848,0.427142,0.15364,0.0884123,0.930765,0.570143,0.462817,0.560826,0.039282,0.64735,0.767784,0.370184,0.726859,0.529615,0.234761,0.567534,0.715555,0.132453,0.819815,0.0988227,0.50926,0.471715,0.683236,0.230629,0.0795565,0.140904,0.138577,0.728672,0.479178,0.332468,0.0311189,0.477674,0.501421,0.88969,0.303772,0.628121,0.181218,0.56228,0.0729389,0.329706,0.620347,0.522958,0.165111,0.634581,0.600031,0.205859,0.160722,0.655205,0.158985,0.631777,0.0061717,0.851747,0.79771,0.675992,0.245981,0.709498,0.66353,0.997229,0.200378,0.881654,0.525399,0.264067,0.434402,0.447883,0.311472,0.0932885,0.23228,0.663723,0.596012,0.217884,0.660763,0.432879,0.660483,0.775309,0.390658,0.630338,0.314955,0.407751,0.823683,0.901516,0.132612,0.584588,0.124812,0.0930811,0.310932,0.814162,0.399012,0.50138,0.171316,0.980926,0.333882,0.0824718,0.68742,0.453309,0.709309,0.924899,0.769538,0.0851273,0.514265,0.315213,0.491896,0.198661,0.138867,0.690347,0.530021,0.97748,0.689564,0.355483,0.189125,0.0769256,0.581469,0.477116,0.902252,0.0646713,0.916053,0.879252,0.00655186,0.0119513,0.727874,0.854494,0.0351366,0.410559,0.908709,0.202165,0.0517699,0.613768,0.829925,0.279518,0.573143,0.00862825,0.638827,0.273694,0.369296,0.0380072,0.836006,0.269783,0.114739,0.40994,0.0582412,0.329268,0.477327,0.2653,0.902482,0.375251,0.891229,0.482217,0.927211,0.0344859,0.654554,0.139816,0.180979,0.00878054,0.440794,0.0201858,0.409888,0.42327,0.412951,0.19651,0.152134,0.936936,0.998252,0.0382811,0.263862,0.514677,0.798857,0.0207648,0.655156,0.324373,0.61361,0.666856,0.92758,0.0217642,0.95848,0.657032,0.81418,0.0279363,0.0343451,0.631642,0.0389353,0.424875,0.6223,0.583401,0.582159,0.26761,0.0894905,0.782696,0.0856847,0.515951,0.158667,0.0541072,0.714982,0.556891,0.96423,0.147912,0.673399,0.334231,0.169275,0.878803,0.843792,0.541824,0.709257,0.323912,0.287091,0.393669,0.921986,0.321201,0.263312,0.413552,0.848921,0.829405,0.696881,0.013513,0.0901024,0.762335,0.54869,0.539529,0.492847,0.895997,0.817335,0.0840858,0.890431,0.900398,0.945001,0.969298,0.165142,0.61877,0.68967,0.618959,0.791179,0.570727,0.569244,0.00203103,0.639079,0.595707,0.45872,0.204395,0.297043,0.558557,0.747384,0.393531,0.266141,0.37171,0.774366,0.237399,0.118214,0.437766,0.165323,0.110172,0.161524,0.203837,0.760363,0.713171,0.892353,0.189608,0.690487,0.493135,0.0368395,0.869834,0.638761,0.307794,0.632817,0.860818,0.76601,0.0502385,0.452354,0.571856,0.578165,0.953149,0.901656,0.931413,0.108279,0.52702,0.46597,0.717107,0.948289,0.5576,0.248069,0.551382,0.767948,0.572436,0.599922,0.907318,9.57251e-05,0.27762,0.369421,0.886945,0.853791,0.595349,0.890519,0.475399,0.479991,0.0910757,0.372969,0.801213,0.938168,0.535924,0.134859,0.168161,0.295824,0.822261,0.375831,0.0621495,0.447657,0.112748,0.14698,0.601247,0.2474,0.214594,0.15213,0.31374,0.646038,0.82358,0.207794,0.743776,0.24877,0.993999,0.60789,0.160573,0.595639,0.403886,0.0133818,0.951249,0.18815,0.576777,0.399742,0.197082,0.857354,0.664588,0.0439502,0.163548,0.339804,0.98153,0.0424374,0.762001,0.208243,0.208593,0.559811,0.701936,0.0607604,0.641514,0.0207724,0.444361,0.763102,0.0102266,0.366773,0.54895,0.47869,0.346535,0.552139,0.114819,0.796013,0.503049,0.896377,0.245486,0.00860745,0.4806,0.94027,0.530938,0.16992,0.711723,0.696087,0.616771,0.202079,0.133652,0.616711,0.269292,0.911651,0.32498,0.764456,0.66031,0.108956,0.299928,0.573874,0.877481,0.517017,0.85516,0.252202,0.683751,0.639442,0.352626,0.0817841,0.769267,0.853108,0.521616,0.58949,0.387303,0.67192,0.51725,0.689544,0.971985,0.42013,0.762215,0.95472,0.57246,0.807773,0.853463,0.755397,0.845347,0.436538,0.838,0.90108,0.0355794,0.0735231,0.324693,0.988631,0.410299,0.917703,0.501647,0.0453,0.232039,0.589971,0.440695,0.407144,0.824494,0.0991962,0.0471308,0.6673,0.482287,0.0519201,0.245592,0.229479,0.0267594,0.384327,0.877739,0.0661504,0.783883,0.866827,0.31075,0.938762,0.833683,0.67202,0.632711,0.814174,0.440116,0.720304,0.964092,0.801144,0.230821,0.359253,0.320882,0.0915247,0.432964,0.0255,0.356178,0.888333,0.289453,0.930959,0.581846,0.0960157,0.192527,0.666663,0.0626761,0.129503,0.499022,0.170725,0.797932,0.0300495,0.431424,0.171816,0.814542,0.0834891,0.0821999,0.0860293,0.145325,0.937915,0.0240184,0.477037,0.836239,0.365281,0.624906,0.72433,0.535995,0.681528,0.436647,0.337888,0.0852076,0.741445,0.258417,0.866895,0.864294,0.877795,0.703449,0.0239388,0.0810488,0.288438,0.730781,0.0731909,0.359975,0.945215,0.105954,0.741495,0.705142,0.516275,0.373931,0.0916182,0.410715,0.854184,0.351389,0.560548,0.304262,0.819226,0.297331,0.25962,0.691799,0.29447,0.575116,0.477383,0.32157,0.0111918,0.978803,0.85293,0.495539,0.473917,0.750292,0.541902,0.23598,0.211238,0.481508,0.804748,0.882121,0.879899,0.145655,0.16162,0.109709,0.601519,0.382736,0.977432,0.0733508,0.291842,0.548452,0.455886,0.102746,0.846933,0.747501,0.682136,0.87375,0.0137857,0.431037,0.896839,0.503716,0.631477,0.976077,0.151407,0.196644,0.494629,0.0805962,0.594662,0.982625,0.586378,0.248356,0.775599,0.63681,0.926557,0.485949,0.162476,0.258142,0.243393,0.954646,0.827326,0.661967,0.371279,0.0560936,0.600342,0.890538,0.0526935,0.751795,0.431373,0.478613,0.126794,0.635528,0.187637,0.888258,0.340715,0.402089,0.867416,0.75986,0.754135,0.528662,0.758467,0.172827,0.42976,0.156104,0.0406479,0.873263,0.166819,0.225473,0.510651,0.581734,0.426462,0.0770315,0.820917,0.234818,0.790604,0.18475,0.192824,0.182636,0.665003,0.187228,0.845945,0.155993,0.476903,0.299928,0.662545,0.0812817,0.594519,0.042292,0.646557,0.35856,0.556031,0.546801,0.977476,0.941966,0.0411816,0.463447,0.0280013,0.0560228,0.246299,0.0903065,0.74824,0.599237,0.258523,0.21194,0.326203,0.407444,0.0272888,0.356348,0.0951322,0.590336,0.629464,0.941759,0.115685,0.804566,0.0280942,0.905002,0.951691,0.892399,0.629552,0.433331,0.270929,0.563959,0.0567837,0.795814,0.736888,0.249937,0.0358638,0.478392,0.282427,0.343245,0.26699,0.294275,0.568978,0.0404773,0.468535,0.112296,0.985553,0.97559,0.824273,0.382933,0.629134,0.219116,0.144641,0.621043,0.332554,0.325594,0.454712,0.0736341,0.338868,0.183108,0.991444,0.512733,0.470974,0.559714,0.591853,0.883092,0.0853329,0.915564,0.827313,0.173181,0.169156,0.305685,0.486533,0.491368,0.782635,0.366283,0.136909,0.39672,0.594258,0.438918,0.780004,0.0903426,0.37796,0.837578,0.0536622,0.580245,0.103738,0.744928,0.34374,0.237885,0.787667,0.253838,0.689837,0.86682,0.499959,0.808685,0.203036,0.567427,0.345448,0.34363,0.459868,0.805934,0.798985,0.589224,0.680676,0.285506,0.0725402,0.00296015,0.550803,0.912981,0.313853,0.877462,0.409375,0.491203,0.137477,0.199617,0.755617,0.669544,0.11188,0.566504,0.437736,0.221265,0.964641,0.507061,0.259211,0.108296,0.74211,0.133295,0.864274,0.146714,0.851845,0.11832,0.57772,0.284756,0.878387,0.250765,0.268173,0.244047,0.945738,0.0667722,0.294734,0.76008,0.984539,0.0426511,0.694338,0.949345,0.953435,0.22406,0.118743,0.194647,0.500054,0.763776,0.994565,0.632937,0.197686,0.622296,0.168528,0.551045,0.196001,0.676303,0.643511,0.0597216,0.196054,0.244317,0.0713417,0.690924,0.977762,0.481993,0.0795388,0.606028,0.13279,0.786693,0.203636,0.863071,0.448835,0.00553805,0.878055,0.456397,0.871104,0.877701,0.398935,0.506807,0.23855,0.995719,0.643894,0.987575,0.639079,0.4047,0.181214,0.13159,0.867921,0.11966,0.785456,0.0364431,0.393809,0.142006,0.334902,0.92867,0.511782,0.931638,0.479393,0.486227,0.814081,0.435645,0.439462,0.537899,0.158191,0.631915,0.751031,0.220483,0.525967,0.00624651,0.27324,0.936881,0.862968,0.885148,0.197691,0.0759348,0.739706,0.56669,0.347639,0.254612,0.630292,0.944368,0.590587,0.39275,0.00984526,0.722939,0.426332,0.697973,0.463676,0.372565,0.763735,0.732664,0.807488,0.0794892,0.0945395,0.453093,0.84508,0.316936,0.845578,0.0804614,0.400722,0.192209,0.207136,0.57469,0.356035,0.0748503,0.615339,0.0243188,0.8278,0.586765,0.805854,0.899594,0.0463108,0.903716,0.972054,0.0802962,0.709564,0.468325,0.76656,0.449049,0.166847,0.0407866,0.351312,0.141567,0.934033,0.155249,0.72964,0.071015,0.562513,0.240997,0.0839496,0.170666,0.421199,0.915045,0.194439,0.671049,0.238872,0.849067,0.679528,0.254967,0.908058,0.615967,0.170237,0.265261,0.872095,0.238252,0.586265,0.748174,0.0720652,0.239089,0.840481,0.85233,0.850238,0.570786,0.148506,0.275034,0.867348,0.89068,0.231619,|0.570461,0.430935,0.125888,0.402318,0.989838,0.739295,0.998062,0.434687,0.857991,0.857661,0.965196,0.967301,0.189312,0.645292,0.953881,0.332493,0.253305,0.928518,0.842569,0.14352,0.0107575,0.100782,0.1431,0.575155,0.705534,0.754745,0.701363,0.432097,0.790568,0.107814,0.186702,0.558143,0.757267,0.603861,0.431912,0.740211,0.874037,0.335093,0.0372173,0.928719,0.59906,0.633111,0.85525,0.628741,0.644941,0.470577,0.711149,0.774954,0.713819,0.521234,0.722967,0.838589,0.209911,0.195485,0.133085,0.892685,0.306755,0.802027,0.563073,0.901746,0.69555,0.290921,0.426129,0.770845,0.751425,0.033962,0.498288,0.99679,0.537374,0.647803,0.37935,0.983814,0.236317,0.483944,0.884517,0.427202,0.482809,0.630344,0.746082,0.649707,0.590848,0.596704,0.222598,0.254335,0.0622669,0.650585,0.137011,0.9898,0.416876,0.652207,0.601331,0.369481,0.258565,0.650823,0.611081,0.988315,0.109942,0.798767,0.955822,0.773511,0.216292,0.485761,0.823623,0.189751,0.424706,0.920837,0.618533,0.441051,0.150065,0.92064,0.685098,0.608681,0.0752633,0.372936,0.119469,0.817614,0.879958,0.723034,0.165248,0.082551,0.977629,0.922889,0.905879,0.567167,0.631864,0.902342,0.487539,0.0239921,0.718599,0.865058,0.327159,0.983447,0.587091,0.580234,0.905076,0.915014,0.459348,0.0515552,0.320656,0.549295,0.973675,0.615813,0.5432,0.435361,0.493047,0.207309,0.707697,0.326961,0.430015,0.0370317,0.201277,0.891787,0.423253,0.484336,0.810635,0.410211,0.707238,0.578019,0.226962,0.862859,0.460608,0.550125,0.843527,0.288271,0.978298,0.114753,0.134512,0.926506,0.616773,0.504504,0.215105,0.00705367,0.171861,0.294856,0.625048,0.591976,0.686005,0.744643,0.460663,0.782296,0.796409,0.750855,0.0747652,0.929273,0.355174,0.898821,0.094581,0.254251,0.700296,0.734748,0.911333,0.434758,0.0309699,0.609176,0.10145,0.836074,0.691871,0.676026,0.0109526,0.0657331,0.00981575,0.0459657,0.172154,0.365862,0.340943,0.205948,0.799054,0.120652,0.123856,0.665896,0.61465,0.241289,0.96612,0.282557,0.224403,0.39766,0.220194,0.524788,0.22849,0.767517,0.970209,0.944004,0.538277,0.0031805,0.975318,0.965133,0.997069,0.488838,0.518276,0.812736,0.672041,0.514057,0.0843952,0.146087,0.321618,0.310546,0.781903,0.283074,0.25751,0.560694,0.663622,0.997931,0.935483,0.390774,0.926393,0.405581,0.750969,0.235737,0.128285,0.17017,0.582423,0.744589,0.503982,0.870263,0.157356,0.942589,0.405915,0.806956,0.356989,0.652609,0.0381193,0.549642,0.777508,0.201473,0.756109,0.556114,0.0199627,0.104989,0.656737,0.525722,0.124526,0.143752,0.974205,0.838298,0.14129,0.239425,0.359141,0.249626,0.69281,0.893058,0.603892,0.449683,0.267269,0.900573,0.467267,0.0114713,0.83794,0.700294,0.362143,0.85871,0.622977,0.440579,0.40645,0.114804,0.125878,0.425918,0.832664,0.519353,0.618885,0.258606,0.949944,0.656792,0.757605,0.883583,0.744594,0.528884,0.706088,0.233665,0.156068,0.213164,0.149199,0.498394,0.0901589,0.530134,0.515431,0.0191718,0.805416,0.581993,0.894799,0.210492,0.647172,0.590886,0.0650428,0.602042,0.652734,0.237502,0.221229,0.792047,0.427904,0.114468,0.343777,0.304171,0.928064,0.94361,0.924163,0.367876,0.746772,0.361706,0.793617,0.798127,0.252366,0.420556,0.349115,0.960251,0.976706,0.445605,0.82937,0.0789996,0.825506,0.956896,0.533029,0.734818,0.270066,0.449961,0.0611531,0.617553,0.380867,0.508606,0.172957,0.838221,0.174264,0.895987,0.0330073,0.28134,0.576885,0.887629,0.893318,0.893981,0.444195,0.299827,0.470294,0.677118,0.659024,0.874673,0.426933,0.302366,0.885854,0.771973,0.838313,0.216397,0.412773,0.843662,0.0735403,0.352876,0.300295,0.302128,0.0949027,0.811347,0.982981,0.757138,0.951753,0.961148,0.287279,0.150982,0.187833,0.422213,0.513376,0.844297,0.329092,0.275675,0.653691,0.987768,0.613358,0.992377,0.155377,0.43075,0.665448,0.274355,0.966409,0.161079,0.892209,0.606989,0.0353397,0.971145,0.385928,0.572828,0.589902,0.555096,0.812033,0.512563,0.0678465,0.253903,0.825782,0.582363,0.928095,0.777634,0.44025,0.981712,0.0972057,0.404862,0.626486,0.538927,0.407159,0.627829,0.345507,0.817373,0.61393,0.774077,0.166298,0.0909631,0.481089,0.361245,0.64565,0.384907,0.990317,0.667318,0.837863,0.70424,0.579207,0.723648,0.071609,0.570829,0.666678,0.442581,0.63337,0.299756,0.933624,0.325838,0.407058,0.935682,0.653259,0.88904,0.559183,0.989718,0.78158,0.954744,0.715259,0.379934,0.241873,0.964888,0.855842,0.326688,0.0646057,0.708975,0.045426,0.46264,0.930684,0.424999,0.98134,0.804538,0.332654,0.906581,0.593917,0.893159,0.95577,0.522371,0.024217,0.867627,0.109062,0.88322,0.25063,0.135117,0.811297,0.144496,0.271404,0.890786,0.534307,0.215647,0.265233,0.816069,0.593049,0.773493,0.880924,0.219307,0.865994,0.673388,0.595877,0.523795,0.201146,0.95557,0.144157,0.3682,0.89468,0.113903,0.580622,0.343641,0.866823,0.234623,0.373236,0.124641,0.435952,0.540557,0.203745,0.719567,0.240272,0.369366,0.542999,0.52131,0.599882,0.875346,0.721288,0.349933,0.587107,0.696122,0.269,0.566194,0.073558,0.821417,0.791494,0.0484072,0.439313,0.256001,0.283187,0.0257465,0.880992,0.239252,0.874518,0.321514,0.503357,0.932086,0.0459488,0.489401,0.119976,0.917792,0.881084,0.929832,0.366572,0.250595,0.210141,0.6746,0.058479,0.93936,0.643136,0.798924,0.696613,0.877473,0.398484,0.821119,0.388888,0.000436246,0.407315,0.219354,0.408157,0.474168,0.0895514,0.264706,0.835185,0.241733,0.966904,0.0639248,0.532107,0.259845,0.368556,0.397918,0.695734,0.787471,0.112977,0.1208,0.635614,0.345004,0.445576,0.208051,0.271656,0.63255,0.248171,0.223055,0.893939,0.893321,0.919679,0.459632,0.360425,0.847527,0.47024,0.512682,0.61657,0.665584,0.445032,0.674834,0.915121,0.189976,0.551421,0.479838,0.10637,0.714373,0.136704,0.588448,0.73463,0.0818442,0.736618,0.625896,0.686429,0.458204,0.663172,0.158918,0.0892603,0.443822,0.414311,0.550698,0.240877,0.123189,0.982574,0.494069,0.688933,0.606826,0.637478,0.559818,0.018515,0.765256,0.706803,0.862547,0.0466223,0.28872,0.771698,0.28175,0.645166,0.536296,0.0752959,0.669901,0.999781,0.0955487,0.837217,0.262385,0.889366,0.653893,0.225327,0.807429,0.0278779,0.233456,0.137753,0.0157101,0.388062,0.0779436,0.263207,0.862897,0.274917,0.557787,0.368832,0.463275,0.22949,0.468605,0.827045,0.191653,0.762127,0.480672,0.88538,0.521561,0.623885,0.697017,0.507877,0.231518,0.586992,0.678889,0.678878,0.342942,0.0727046,0.369393,0.178925,0.150293,0.946705,0.911101,0.190525,0.877983,0.11206,0.804216,0.950725,0.872757,0.456722,0.165859,0.905557,0.63463,0.718074,0.322107,0.453968,0.748466,0.868887,0.371968,0.645695,0.682743,0.862786,0.932026,0.145632,0.0107799,0.163442,0.254007,0.968056,0.572852,0.487868,0.622243,0.78011,0.844579,0.247998,0.014771,0.471877,0.827551,0.152374,0.562456,0.875758,0.133848,0.769397,0.912049,0.986805,0.0961475,0.593633,0.189612,0.560454,0.71688,0.51738,0.371575,0.419121,0.782353,0.98519,0.694413,0.985412,0.932716,0.692527,0.926027,0.700367,0.191537,0.326027,0.118623,0.120242,0.180829,0.409302,0.0839034,0.851648,0.717776,0.240502,0.00377756,0.251197,0.684893,0.867656,0.386028,0.7783,0.746205,0.640707,0.0593871,0.261313,0.0477086,0.0790055,0.384844,0.935243,0.704069,0.0534614,0.493995,0.686091,0.946544,0.492773,0.11372,0.998541,0.711438,0.467702,0.334515,0.952956,0.49039,0.879966,0.101356,0.902333,0.652185,0.0739336,0.901406,0.980281,0.142569,0.908966,0.642917,0.672312,0.688992,0.265822,0.845454,0.191436,0.0815404,0.733818,0.141077,0.0525244,0.141275,0.320761,0.117049,0.581048,0.92337,0.304684,0.628497,0.540692,0.735678,0.143825,0.627002,0.664622,0.240348,0.401509,0.996047,0.25034,0.985615,0.292093,0.519855,0.832234,0.439925,0.762541,0.879015,0.484858,0.0231167,0.0440462,0.404282,0.230112,0.244424,0.932817,0.873963,0.353608,0.333908,0.864031,0.989768,0.569393,0.372739,0.902641,0.467179,0.437137,0.76926,0.862026,0.0621123,0.351635,0.852984,0.939427,0.252746,0.251451,0.706763,0.112881,0.929978,0.43746,0.908734,0.352364,0.30546,0.497068,0.566383,0.452989,0.433051,0.981247,0.423524,0.996973,0.255222,0.652474,0.0992255,0.615818,0.17519,0.76364,0.731073,0.652937,0.496217,0.0696787,0.643931,0.762244,0.595846,0.382643,0.816824,0.780491,0.142144,0.481454,0.824997,0.284973,0.219454,0.718564,0.961134,0.355657,0.136522,0.200145,0.216611,0.436572,0.910441,0.176708,0.912135,0.214688,0.278353,0.291346,0.775923,0.474528,0.648321,0.901841,0.428255,0.473147,0.208765,0.185491,0.86018,0.627393,0.917832,0.0550544,0.359757,0.3868,0.422442,0.469971,0.851987,0.299449,0.581414,0.614166,0.704563,0.183007,0.527935,0.137096,0.933433,0.146433,0.00887448,0.25662,0.461459,0.702469,0.662507,0.94533,0.0574327,0.00987589,0.765831,0.977769,0.24779,0.565632,0.16017,0.777757,0.0364414,0.755597,0.329601,0.709736,0.518262,0.914696,0.407388,0.69604,0.74557,0.274882,0.173723,0.33668,0.368883,0.83359,0.724784,0.456092,0.932502,0.712057,0.00913888,0.951589,0.416383,0.128017,0.0218723,0.0369238,0.437187,0.616851,0.96252,0.613444,0.333867,0.92794,0.0575209,0.123229,0.725438,0.626923,0.274249,0.941704,0.082303,0.803825,0.828508,0.225154,0.913573,0.569332,0.456482,0.15764,0.0397043,0.757922,0.740983,0.72694,0.0470608,0.969246,0.173444,0.592633,0.973658,0.483098,0.00721419,0.986478,0.767465,0.395968,0.502934,0.718822,0.768644,|0.120063,0.761868,0.689441,0.645389,0.975984,0.424855,0.302493,0.349299,0.586337,0.428319,0.6983,0.105463,0.871389,0.311279,0.971402,0.597317,0.154002,0.128971,0.23261,0.435222,0.744322,0.0451196,0.331919,0.953089,0.998107,0.893183,0.994635,0.610165,0.00445974,0.697943,0.130304,0.492769,0.047183,0.423954,0.868406,0.154699,0.471494,0.626537,0.387753,0.318881,0.27629,0.0391517,0.407037,0.864874,0.558393,0.263203,0.786691,0.236004,0.59083,0.80142,0.431529,0.433477,0.222912,0.324692,0.177782,0.330799,0.396506,0.368483,0.487674,0.092687,0.302775,0.102991,0.666533,0.806988,0.730519,0.580716,0.0173107,0.758571,0.924579,0.316898,0.0879873,0.252284,0.293285,0.212689,0.0554036,0.690918,0.332304,0.452495,0.983483,0.930064,0.832648,0.227452,0.00428843,0.328739,0.225543,0.841914,0.325435,0.12952,0.836268,0.768117,0.578433,0.412679,0.658619,0.97977,0.897741,0.988987,0.614699,0.842811,0.095543,0.277032,0.997967,0.998292,0.830012,0.107572,0.941465,0.345675,0.933518,0.812526,0.842767,0.77174,0.896472,0.149728,0.340271,0.262061,0.138032,0.178274,0.478873,0.0481011,0.721187,0.730626,0.283555,0.149482,0.326932,0.783224,0.315201,0.563325,0.146033,0.88183,0.0481699,0.932595,0.977773,0.148477,0.794466,0.448484,0.125613,0.0953439,0.767469,0.0657887,0.518505,0.554248,0.948516,0.605011,0.581318,0.502659,0.919797,0.285488,0.537203,0.365059,0.656391,0.585984,0.764496,0.467696,0.0713282,0.910564,0.260459,0.680876,0.686466,0.0255359,0.512621,0.215533,0.219405,0.74913,0.376688,0.368677,0.211519,0.556461,0.863471,0.329518,0.3304,0.178297,0.1982,0.0288369,0.0654695,0.106517,0.709832,0.354452,0.820985,0.758725,0.801707,0.899235,0.448417,0.459018,0.733114,0.19622,0.801717,0.336518,0.882736,0.128556,0.0829216,0.267603,0.848233,0.145161,0.391435,0.601485,0.240753,0.741863,0.262007,0.160213,0.773888,0.688276,0.211234,0.278296,0.0696955,0.525192,0.853422,0.506606,0.775643,0.215683,0.599011,0.551723,0.168268,0.444707,0.50298,0.369331,0.139235,0.2939,0.74273,0.0395435,0.91068,0.294202,0.914655,0.591111,0.773155,0.446485,0.514863,0.116409,0.946569,0.420449,0.949445,0.338553,0.116514,0.454383,0.397882,0.393019,0.686223,0.202442,0.0592219,0.220195,0.0973421,0.35854,0.307429,0.598404,0.098132,0.380812,0.604271,0.139625,0.975829,0.549185,0.630258,0.994488,0.474498,0.311646,0.543333,0.759048,0.564893,0.268403,0.451774,0.749659,0.0109855,0.357927,0.598603,0.544403,0.649178,0.1885,0.76378,0.584898,0.983241,0.239058,0.792841,0.058232,0.755024,0.42307,0.490423,0.103158,0.476684,0.508815,0.681415,0.222407,0.365782,0.988281,0.0655748,0.598685,0.757428,0.207174,0.877631,0.630846,0.668292,0.0192903,0.580856,0.507645,0.538159,0.0357794,0.817125,0.0270044,0.625029,0.524462,0.672061,0.420934,0.562077,0.621964,0.613315,0.540074,0.490649,0.270387,0.796038,0.335065,0.881796,0.277899,0.960252,0.817868,0.132169,0.0781668,0.972209,0.344188,0.982847,0.242132,0.977698,0.778858,0.179173,0.683333,0.714631,0.110534,0.747172,0.221153,0.20545,0.105873,0.788047,0.83719,0.787374,0.969467,0.90419,0.254372,0.670565,0.67456,0.130742,0.34367,0.467042,0.00908983,0.244658,0.985611,0.75053,0.138398,0.35094,0.489749,0.726038,0.0848208,0.619521,0.208934,0.215668,0.510207,0.778512,0.378929,0.0228422,0.639192,0.856648,0.161045,0.722069,0.200917,0.569753,0.728096,0.72952,0.544454,0.128798,0.270866,0.0104844,0.682547,0.0346037,0.704733,0.778295,0.927242,0.798013,0.157847,0.181725,0.833063,0.434533,0.304693,0.4691,0.733528,0.864762,0.303911,0.618402,0.303164,0.580716,0.899761,0.363303,0.94727,0.177366,0.711677,0.0136258,0.748951,0.775695,0.265515,0.643644,0.0432855,0.922399,0.0614897,0.955695,0.168748,0.406236,0.622497,0.365436,0.394236,0.943371,0.791466,0.685808,0.846741,0.635989,0.129613,0.535013,0.360063,0.679994,0.629971,0.00456613,0.662427,0.359231,0.469164,0.595425,0.924309,0.22906,0.507982,0.641353,0.535193,0.109763,0.288114,0.0898603,0.497361,0.10437,0.19246,0.562019,0.0845366,0.190429,0.144561,0.474857,0.971208,0.882126,0.391086,0.0236183,0.421733,0.518565,0.522983,0.237701,0.350514,0.76968,0.446687,0.496832,0.561617,0.396848,0.738032,0.28926,0.162759,0.589613,0.598399,0.854447,0.127619,0.370405,0.367307,0.779913,0.468157,0.17597,0.696359,0.399049,0.266595,0.253044,0.385747,0.53514,0.171619,0.927953,0.837327,0.969084,0.366395,0.470079,0.74114,0.833203,0.798601,0.381584,0.369559,0.150867,0.210091,0.934508,0.643274,0.860113,0.104684,0.421785,0.613477,0.658483,0.755532,0.886996,0.57631,0.021196,0.937069,0.231155,0.272107,0.0542864,0.0408143,0.743193,0.941971,0.874896,0.502276,0.393689,0.181688,0.977021,0.28979,0.0941392,0.346422,0.971366,0.447435,0.853563,0.63309,0.519927,0.429802,0.04176,0.396112,0.823121,0.128671,0.490316,0.364332,0.671692,0.268516,0.2006,0.431026,0.501912,0.231986,0.837882,0.176419,0.396344,0.183594,0.670848,0.44635,0.778999,0.345135,0.829807,0.759278,0.355663,0.925061,0.80796,0.107617,0.377421,0.91742,0.63366,0.512136,0.547168,0.987823,0.504288,0.229363,0.481154,0.521371,0.601806,0.972721,0.771887,0.353498,0.728837,0.724451,0.0426016,0.916699,0.0604315,0.960316,0.616647,0.119874,0.879266,0.281552,0.0415592,0.573597,0.166984,0.337443,0.75265,0.468875,0.874775,0.913277,0.272495,0.165495,0.357768,0.712328,0.13509,0.322622,0.520812,0.251998,0.614476,0.823991,0.85748,0.972081,0.198799,0.477614,0.761889,0.631646,0.107354,0.226124,0.0479258,0.967683,0.732747,0.255101,0.114418,0.258137,0.897079,0.77127,0.702373,0.432685,0.384447,0.624769,0.493226,0.497639,0.191348,0.53456,0.00385123,0.0570704,0.402514,0.829976,0.242899,0.820922,0.519787,0.758005,0.29585,0.366697,0.914817,0.724997,0.298624,0.54129,0.683653,0.977864,0.541862,0.877664,0.231402,0.0741109,0.635032,0.934492,0.858932,0.325829,0.507908,0.925484,0.836843,0.811389,0.761145,0.00860065,0.640468,0.551522,0.8708,0.792315,0.369748,0.645584,0.0646976,0.127054,0.362751,0.517598,0.712465,0.814366,0.238649,0.771385,0.299099,0.577057,0.641031,0.38301,0.828495,0.174462,0.608079,0.0947971,0.185768,0.422549,0.0328041,0.877371,0.0350009,0.0846985,0.553207,0.0420294,0.454293,0.507167,0.213942,0.66911,0.91978,0.791064,0.660403,0.061322,0.611955,0.0579045,0.581299,0.6023,0.0979883,0.667648,0.984865,0.137243,0.497957,0.152839,0.533513,0.646812,0.00193632,0.108195,0.0879196,0.2537,0.926542,0.388181,0.492106,0.509093,0.144289,0.696037,0.307311,0.0752773,0.40835,0.758111,0.150616,0.177344,0.480529,0.171724,0.214103,0.133542,0.900232,0.584124,0.332261,0.0962792,0.971668,0.561889,0.104826,0.382471,0.000108838,0.0387586,0.126536,0.769672,0.775555,0.23702,0.547052,0.490447,0.285369,0.801531,0.307995,0.593599,0.999657,0.0719753,0.860683,0.379842,0.574955,0.223514,0.687714,0.553288,0.265365,0.0225046,0.68589,0.744625,0.253621,0.86277,0.153951,0.657128,0.293288,0.48877,0.145574,0.696079,0.573739,0.466126,0.650139,0.340464,0.916025,0.23164,0.113918,0.762683,0.496462,0.721142,0.779169,0.942133,0.986151,0.315509,0.446455,0.791169,0.119924,0.281504,0.386929,0.410612,0.281878,0.275321,0.215193,0.133741,0.138209,0.240314,0.630497,0.186557,0.834489,0.967275,0.236196,0.136579,0.413743,0.11599,0.895577,0.661095,0.0971456,0.483032,0.718553,0.147275,0.707482,0.821084,0.803129,0.167994,0.104116,0.583556,0.278974,0.983426,0.192977,0.513976,0.607701,0.0904984,0.908476,0.47682,0.549829,0.0996897,0.446283,0.350742,0.0810723,0.426299,0.372903,0.371826,0.900539,0.217478,0.598918,0.952523,0.736317,0.942061,0.238363,0.560772,0.698726,0.789712,0.0374904,0.745409,0.750088,0.319325,0.458362,0.149386,0.428962,0.359988,0.358829,0.446889,0.150506,0.379046,0.00519186,0.397202,0.44193,0.855667,0.36873,0.272299,0.16287,0.417884,0.375786,0.948522,0.0552422,0.899447,0.0296994,0.130989,0.082044,0.570785,0.100362,0.414481,0.0656393,0.374005,0.607746,0.850592,0.234635,0.854255,0.191385,0.529155,0.986024,0.987092,0.705937,0.952149,0.0767866,0.828493,0.577378,0.722965,0.479631,0.945985,0.965106,0.904076,0.505652,0.698395,0.226152,0.294449,0.764163,0.46221,0.260235,0.51708,0.438844,0.139936,0.146824,0.417798,0.0713496,0.481594,0.405923,0.0762236,0.310732,0.896771,0.0438976,0.520149,0.350973,0.161086,0.533278,0.557102,0.0987238,0.255019,0.960364,0.478526,0.700788,0.77796,0.909258,0.97572,0.152551,0.9994,0.292004,0.837327,0.991532,0.757168,0.180244,0.622484,0.541151,0.132941,0.473372,0.191303,0.451034,0.442291,0.399972,0.829086,0.986808,0.307326,0.763423,0.566017,0.85505,0.0171751,0.367976,0.946636,0.243368,0.962134,0.00185192,0.375694,0.93328,0.826845,0.609418,0.238621,0.35995,0.237387,0.901258,0.821564,0.787071,0.523327,0.982717,0.460575,0.298335,0.659038,0.148613,0.337924,0.476782,0.116635,0.244224,0.623128,0.98682,0.0185775,0.736274,0.950697,0.738573,0.960201,0.222222,0.887398,0.335813,0.34933,0.842035,0.38624,0.166144,0.504346,0.255141,0.405993,0.975861,0.17812,0.79149,0.114664,0.189505,0.539072,0.197488,0.710138,0.262403,0.972415,0.941888,0.794793,0.0398073,0.516401,0.0629485,0.505226,0.498558,0.513022,0.913921,0.920123,0.473417,0.33425,0.0766935,0.422883,0.0451297,0.878201,0.919758,0.198995,0.728663,0.831843,0.313888,0.699941,0.269413,0.58672,0.551324,0.0121558,0.428885,0.687382,0.649028,0.149228,|0.239789,0.502491,0.569593,0.364601,0.202202,0.685631,0.42535,0.098794,0.348918,0.441505,0.813121,0.86457,0.480012,0.622264,0.293872,0.142821,0.8793,0.657161,0.215616,0.257298,0.067916,0.449219,0.566575,0.893504,0.581233,0.300613,0.756001,0.857316,0.145264,0.409888,0.478723,0.432547,0.0842151,0.194968,0.130857,0.876259,0.378498,0.386446,0.525118,0.0736248,0.61759,0.544905,0.0773352,0.271883,0.680171,0.758582,0.0374286,0.96966,0.807662,0.248345,0.0486221,0.706769,0.753732,0.768314,0.404702,0.44811,0.370683,0.836491,0.911758,0.99711,0.538097,0.553104,0.326389,0.545555,0.727186,0.423027,0.128689,0.716798,0.822249,0.220179,0.652362,0.888418,0.879418,0.789684,0.100132,0.0669149,0.973624,0.658618,0.548756,0.483827,0.690219,0.691854,0.851615,0.621154,0.114359,0.588086,0.254471,0.303545,0.52745,0.786317,0.874779,0.310134,0.598894,0.729438,0.801761,0.794908,0.261024,0.835682,0.0416321,0.906132,0.85972,0.016761,0.370885,0.492441,0.459249,0.150773,0.0316301,0.701798,0.271729,0.269999,0.643647,0.698893,0.00501835,0.00673419,0.363275,0.312789,0.135954,0.684753,0.426574,0.253808,0.38798,0.901588,0.874544,0.222372,0.150132,0.990985,0.708731,0.653477,0.349597,0.539441,0.559731,0.250638,0.295568,0.17902,0.445539,0.35415,0.914586,0.331939,0.407333,0.138879,0.511561,0.901108,0.0133764,0.291195,0.697685,0.736284,0.239579,0.455298,0.564675,0.38319,0.479106,0.736445,0.73724,0.364567,0.54008,0.599322,0.754697,0.792713,0.922118,0.752565,0.0650059,0.405447,0.790671,0.510047,0.579458,0.318808,0.744538,0.596937,0.975361,0.881347,0.118988,0.0508026,0.385198,0.653264,0.949662,0.16438,0.374236,0.928121,0.232649,0.160269,0.211878,0.471743,0.433553,0.00434083,0.412929,0.136215,0.0362682,0.926831,0.975791,0.836227,0.0377284,0.243741,0.401365,0.11863,0.715529,0.646253,0.393253,0.997991,0.9115,0.915338,0.406059,0.890969,0.385184,0.756646,0.165169,0.795766,0.904115,0.386915,0.833362,0.197614,0.726419,0.141552,0.936235,0.276618,0.862217,0.237926,0.899905,0.933025,0.0922474,0.560466,0.813776,0.720631,0.538903,0.443676,0.275409,0.456943,0.983608,0.561305,0.0897907,0.285374,0.524747,0.0830587,0.125872,0.607593,0.212475,0.471283,0.324545,0.818668,0.793225,0.835022,0.389717,0.91594,0.230868,0.749165,0.125942,0.100429,0.447757,0.0485116,0.387298,0.819348,0.43238,0.383696,0.122536,0.730063,0.848363,0.650985,0.487286,0.17595,0.658765,0.209686,0.945839,0.996869,0.892053,0.674974,0.811116,0.121065,0.853761,0.489667,0.85167,0.684235,0.124719,0.346463,0.70299,0.877225,0.613798,0.282079,0.821816,0.89799,0.619511,0.995638,0.664848,0.289924,0.509307,0.755862,0.064914,0.391852,0.573423,0.257613,0.0766272,0.781672,0.385425,0.432561,0.314286,0.489623,0.755208,0.720346,0.402895,0.256343,0.665622,0.776905,0.100228,0.240508,0.622316,0.574162,0.326729,0.179168,0.653279,0.268907,0.889174,0.876057,0.806036,0.74746,0.402116,0.753147,0.717761,0.489486,0.462947,0.283556,0.673715,0.978268,0.636609,0.00979298,0.479302,0.603601,0.605736,0.203177,0.791014,0.353883,0.141451,0.609392,0.792645,0.213707,0.0283464,0.93164,0.216154,0.993317,0.444858,0.676535,0.180353,0.80618,0.802798,0.130307,0.35119,0.301905,0.00052917,0.956919,0.186392,0.663434,0.516007,0.284371,0.950553,0.892102,0.835687,0.231983,0.0797091,0.17512,0.726366,0.900445,0.154471,0.653736,0.520048,0.0862976,0.215536,0.12329,0.526386,0.192885,0.284302,0.760552,0.244723,0.327963,0.641324,0.17988,0.713724,0.546428,0.692161,0.936565,0.533921,0.370651,0.907085,0.515765,0.160639,0.602853,0.0949507,0.40102,0.61208,0.530547,0.863848,0.775588,0.507852,0.625957,0.930096,0.471952,0.607301,0.400434,0.844933,0.856737,0.613061,0.516723,0.047241,0.194493,0.952812,0.231004,0.779554,0.583991,0.14485,0.53022,0.182105,0.61756,0.235112,0.441803,0.450792,0.808859,0.287243,0.590759,0.694097,0.943898,0.683886,0.408673,0.895046,0.606132,0.686298,0.80158,0.222285,0.775687,0.0524889,0.990559,0.555474,0.687588,0.332052,0.960768,0.842978,0.424166,0.0947299,0.914798,0.422148,0.164157,0.117812,0.42072,0.966569,0.0190284,0.702174,0.951806,0.559327,0.547299,0.978378,0.0385929,0.334344,0.438185,0.967047,0.98513,0.492607,0.257891,0.613656,0.728263,0.782579,0.714638,0.343905,0.277049,0.0435218,0.204529,0.445587,0.718125,0.0483258,0.856285,0.533332,0.0723578,0.0854157,0.618124,0.124188,0.701085,0.0714568,0.298422,0.323653,0.747617,0.0131211,0.937665,0.7902,0.674946,0.776501,0.749575,0.65363,0.93254,0.880333,0.329877,0.466726,0.237061,0.0272266,0.0751669,0.752979,0.0849233,0.496528,0.179849,0.827863,0.176739,0.603288,0.813108,0.134655,0.961189,0.381462,0.36073,0.092354,0.240424,0.738277,0.733009,0.664413,0.713459,0.305571,0.744622,0.99312,0.0758355,0.827316,0.316376,0.783959,0.557195,0.967008,0.776236,0.0873017,0.214759,0.800085,0.594766,0.937244,0.508661,0.488002,0.964644,0.305915,0.784481,0.530843,0.752542,0.585263,0.831603,0.888016,0.830087,0.959627,0.389473,0.779886,0.518459,0.912397,0.655652,0.676719,0.935771,0.321952,0.863049,0.210602,0.280014,0.993945,0.825455,0.0366033,0.429939,0.541897,0.198496,0.56632,0.390431,0.0837959,0.909984,0.657525,0.545669,0.0760587,0.797094,0.31493,0.854396,0.802625,0.307252,0.460762,0.240937,0.174446,0.52766,0.189797,0.900948,0.421189,0.505248,0.00190133,0.736666,0.215009,0.0165869,0.437299,0.970843,0.728938,0.106979,0.747526,0.669204,0.327932,0.714265,0.642993,0.207621,0.490027,0.570803,0.588834,0.799012,0.552424,0.162605,0.732534,0.837801,0.0861525,0.231667,0.977162,0.257823,0.843157,0.505659,0.924962,0.734976,0.391986,0.397535,0.728559,0.876314,0.0478442,0.793691,0.253384,0.991033,0.963659,0.57163,0.635901,0.72919,0.122941,0.647113,0.0965306,0.631764,0.715346,0.730927,0.0913208,0.185554,0.835442,0.517053,0.598116,0.989709,0.546053,0.383107,0.322271,0.654855,0.314332,0.955192,0.987945,0.875341,0.966076,0.811786,0.984404,0.875907,0.963448,0.0900226,0.548039,0.880118,0.79404,0.135254,0.584169,0.993859,0.381572,0.313608,0.739315,0.459077,0.161069,0.78302,0.167338,0.0217667,0.480621,0.521779,0.00659424,0.782597,0.349178,0.212856,0.144438,0.66547,0.204875,0.086419,0.986276,0.836531,0.187718,0.897252,0.106675,0.806708,0.321656,0.220327,0.524945,0.993189,0.265232,0.55896,0.993345,0.719636,0.667072,0.213335,0.266149,0.905296,0.110402,0.189976,0.961751,0.513292,0.925956,0.799163,0.661342,0.0684685,0.997275,0.765539,0.0855013,0.766438,0.540949,0.516112,0.485637,0.985358,0.748904,0.671371,0.128761,0.998391,0.275818,0.691101,0.560111,0.682391,0.889951,0.116878,0.774152,0.888255,0.584832,0.330583,0.786143,0.374648,0.701083,0.69743,0.30399,0.498613,0.39863,0.200018,0.835961,0.31247,0.626495,0.330112,0.17159,0.983447,0.343298,0.94329,0.383559,0.489398,0.636008,0.288675,0.498228,0.853256,0.834877,0.104153,0.256255,0.734288,0.485814,0.731962,0.993102,0.225768,0.927883,0.638576,0.60378,0.816883,0.0980967,0.458579,0.587945,0.0388641,0.892402,0.373629,0.0203208,0.129069,0.586205,0.237716,0.0904609,0.816278,0.498871,0.85306,0.908257,0.124885,0.586952,0.881623,0.721375,0.726793,0.823328,0.652093,0.248018,0.252934,0.771917,0.048595,0.343186,0.711576,0.1286,0.82451,0.322627,0.146775,0.337686,0.622006,0.0897897,0.60183,0.488523,0.871842,0.225055,0.339161,0.621971,0.782762,0.624842,0.450713,0.760349,0.430868,0.31679,0.704282,0.436391,0.84848,0.811446,0.662967,0.59821,0.123277,0.466902,0.961508,0.35956,0.826963,0.829742,0.155945,0.458604,0.715405,0.998487,0.408551,0.543106,0.577655,0.0404016,0.667195,0.550897,0.399949,0.794148,0.129522,0.267739,0.881722,0.39732,0.0476352,0.408323,0.962902,0.189657,0.562413,0.0290119,0.776657,0.682207,0.366544,0.675926,0.56686,0.811074,0.139515,0.650783,0.73324,0.142967,0.0191443,0.540955,0.613124,0.328003,0.310524,0.859986,0.0847816,0.552847,0.698149,0.297952,0.678798,0.0745052,0.726772,0.857136,0.0552211,0.656182,0.546941,0.880409,0.58527,0.249256,0.92454,0.425083,0.105574,0.175977,0.552386,0.517763,0.60168,0.0616834,0.0412195,0.468421,0.195654,0.737949,0.576547,0.835657,0.451424,0.425395,0.954752,0.822386,0.572471,0.178832,0.10661,0.62549,0.541337,0.3381,0.0985863,0.0407069,0.513427,0.683963,0.924515,0.685692,0.787846,0.87175,0.403844,0.0362077,0.949943,0.209311,0.0898696,0.693588,0.0870044,0.34217,0.308154,0.617513,0.2438,0.668294,0.73685,0.302187,0.176066,0.854245,0.081624,0.854128,0.59221,0.0396709,0.188398,0.59321,0.72716,0.145932,0.839496,0.544505,0.329248,0.980729,0.6122,0.136073,0.726839,0.275708,0.0912236,0.219053,0.971886,0.972243,0.0885253,0.0892416,0.879757,0.569373,0.71107,0.52662,0.454062,0.149544,0.0910671,0.549338,0.182427,0.396229,0.382428,0.242761,0.566782,0.164955,0.825238,0.238656,0.978508,0.788114,0.196659,0.786195,0.977395,0.0814123,0.791189,0.776641,0.956697,0.490302,0.647601,0.977119,0.74123,0.664175,0.559987,0.116537,0.601642,0.531941,0.819332,0.922313,0.197415,0.0145117,0.646869,0.3009,0.154683,0.180038,0.0793111,0.658774,0.429278,0.519945,0.596266,0.447194,0.212527,0.610543,0.83418,0.430326,0.851093,0.592151,0.917271,0.167858,0.544879,0.897807,0.590608,0.724467,0.714871,0.643111,0.0807441,0.0320653,0.0201827,0.472336,0.293928,0.760489,0.379498,0.00834191,0.633277,0.535674,0.518826,0.61888,0.365699,|0.171068,0.955831,0.320692,0.501725,0.993676,0.112711,0.590625,0.368671,0.035444,0.943222,0.0908335,0.660322,0.988756,0.893437,0.446984,0.678989,0.362236,0.112014,0.410536,0.946732,0.147973,0.642412,0.814361,0.486615,0.194917,0.737184,0.836386,0.853138,0.357195,0.904302,0.114688,0.0477469,0.562405,0.101908,0.676414,0.127676,0.0152751,0.876356,0.548979,0.275355,0.365571,0.592547,0.254818,0.205804,0.99661,0.567449,0.254688,0.36811,0.693785,0.467886,0.997676,0.0849514,0.295829,0.418541,0.291814,0.576499,0.147236,0.240537,0.0892785,0.837677,0.0365126,0.15108,0.0695032,0.494199,0.783068,0.000413656,0.908187,0.119781,0.776077,0.0203511,0.896688,0.208521,0.538455,0.50696,0.268035,0.271212,0.334072,0.767621,0.864567,0.774104,0.152012,0.81218,0.149021,0.639249,0.446313,0.311391,0.446147,0.330946,0.683556,0.779029,0.798658,0.317975,0.859795,0.922527,0.3178,0.71097,0.617864,0.142874,0.794774,0.335525,0.0887792,0.78796,0.664584,0.170486,0.990632,0.154265,0.500321,0.478345,0.183847,0.912647,0.0793098,0.731773,0.41344,0.119664,0.212806,0.199049,0.62644,0.593637,0.470901,0.64256,0.807096,0.679732,0.0259073,0.114562,0.290686,0.523996,0.0417491,0.886001,0.249661,0.275194,0.0762743,0.625751,0.15566,0.626172,0.910665,0.978473,0.134819,0.65452,0.332721,0.391935,0.823099,0.606942,0.601415,0.541719,0.281909,0.296631,0.345968,0.746796,0.673763,0.202697,0.910527,0.481759,0.992292,0.519764,0.641233,0.642154,0.512696,0.968283,0.177671,0.936759,0.0502456,0.60787,0.401902,0.450355,0.113135,0.265038,0.143732,0.414924,0.263785,0.268959,0.687493,0.664866,0.239198,0.394407,0.155296,0.596911,0.184657,0.586101,0.512181,0.5734,0.42262,0.304447,0.380975,0.8825,0.21688,0.403994,0.318281,0.591273,0.197663,0.666117,0.00776017,0.740463,0.905437,0.613548,0.0997885,0.598037,0.721186,0.6652,0.125899,0.185048,0.339791,0.427914,0.522321,0.580497,0.769274,0.425288,0.902505,0.365095,0.267866,0.643896,0.936534,0.648371,0.453032,0.551228,0.681457,0.0759965,0.68461,0.959301,0.570506,0.529739,0.274484,0.0702155,0.641538,0.482616,0.393224,0.761046,0.180073,0.523697,0.703677,0.73612,0.410205,0.596827,0.12662,0.199998,0.642699,0.491329,0.542701,0.137283,0.770262,0.943651,0.303886,0.661482,0.103595,0.0517297,0.580009,0.87502,0.3021,0.750705,0.840949,0.994983,0.885219,0.0900672,0.640383,0.951248,0.425565,0.00159484,0.0097152,0.432269,0.340396,0.908461,0.186914,0.550215,0.695973,0.675209,0.261909,0.620017,0.133692,0.570661,0.605411,0.309688,0.0573371,0.357293,0.604285,0.371649,0.121793,0.433983,0.00829899,0.748251,0.615247,0.0365828,0.389684,0.452192,0.343501,0.0993459,0.12693,0.259238,0.321449,0.450297,0.554562,0.488596,0.745869,0.886009,0.568639,0.331115,0.00688434,0.255057,0.998029,0.403962,0.967328,0.839982,0.195614,0.303777,0.948228,0.134718,0.329922,0.825613,0.0760937,0.566553,0.137506,0.7821,0.733528,0.557925,0.656089,0.0163236,0.0889057,0.659911,0.940998,0.406583,0.992864,0.916005,0.914102,0.435372,0.544551,0.701733,0.676516,0.260386,0.131101,0.456707,0.849381,0.77834,0.772703,0.441059,0.807898,0.867414,0.642304,0.827503,0.163303,0.296073,0.455957,0.727711,0.74693,0.236108,0.939489,0.829222,0.221518,0.484206,0.255067,0.260593,0.579941,0.520812,0.526577,0.103996,0.339617,0.280293,0.826945,0.0812146,0.119352,0.634577,0.237231,0.232481,0.248262,0.243801,0.540468,0.286357,0.0177139,0.717405,0.567222,0.717962,0.0998134,0.0489821,0.685329,0.932189,0.0607249,0.0436021,0.447106,0.787485,0.781513,0.494584,0.628472,0.815677,0.899032,0.399266,0.674343,0.0687153,0.0907975,0.131029,0.59794,0.99432,0.609808,0.995074,0.419415,0.796726,0.330529,0.125743,0.487259,0.899287,0.55012,0.120406,0.0875831,0.323257,0.722881,0.674275,0.977176,0.510191,0.542362,0.860488,0.634905,0.967845,0.885531,0.892107,0.195389,0.704338,0.39369,0.925302,0.784571,0.470459,0.833617,0.797832,0.313716,0.460621,0.880557,0.219362,0.872567,0.51371,0.7091,0.227021,0.727559,0.28442,0.0620183,0.0403441,0.1798,0.610923,0.845348,0.118854,0.506385,0.897369,0.073776,0.653709,0.947404,0.0278317,0.901338,0.878563,0.123662,0.630925,0.0562323,0.330515,0.374389,0.0514013,0.667511,0.210563,0.621416,0.627598,0.214754,0.69699,0.0840634,0.546126,0.539083,0.208072,0.612884,0.102262,0.178839,0.475846,0.130074,0.637182,0.761978,0.147446,0.121709,0.884404,0.765382,0.351707,0.800488,0.932966,0.389578,0.14156,0.990848,0.260343,0.337296,0.647647,0.829724,0.220318,0.0413086,0.302112,0.799078,0.723069,0.0684435,0.731899,0.826511,0.857032,0.201726,0.989821,0.189307,0.330683,0.293663,0.134299,0.0786757,0.173843,0.288159,0.33801,0.368514,0.72894,0.449793,0.757369,0.0795577,0.273104,0.859169,0.658607,0.717941,0.306815,0.935652,0.683458,0.222871,0.120259,0.369694,0.603812,0.488731,0.68459,0.567722,0.610536,0.796705,0.912319,0.137983,0.116967,0.250173,0.423163,0.464303,0.931181,0.663339,0.626952,0.630469,0.723294,0.883301,0.0920144,0.125226,0.291088,0.039122,0.282066,0.636243,0.279313,0.829061,0.161701,0.0235361,0.402547,0.784391,0.879229,0.998569,0.333765,0.820835,0.242598,0.129797,0.474132,0.55069,0.350246,0.0453497,0.873028,0.901765,0.549831,0.653469,0.534311,0.582217,0.534762,0.312023,0.798089,0.563193,0.759724,0.462843,0.629086,0.859588,0.870272,0.0543981,0.211275,0.643049,0.178373,0.569144,0.372159,0.208801,0.127123,0.371583,0.36255,0.443079,0.722042,0.850944,0.701356,0.574348,0.0362251,0.135602,0.623389,0.178026,0.279316,0.778202,0.387066,0.835086,0.233928,0.761219,0.869667,0.221375,0.197776,0.999969,0.369057,0.82036,0.161077,0.645664,0.288836,0.0523,0.690434,0.213689,0.436169,0.405477,0.487112,0.0175159,0.774899,0.638129,0.322429,0.762827,0.274622,0.337421,0.516307,0.933116,0.00731498,0.302502,0.599697,0.155584,0.325193,0.588087,0.530468,0.83588,0.553278,0.597507,0.641042,0.313499,0.950969,0.199662,0.584421,0.81603,0.944242,0.972887,0.554262,0.260886,0.190902,0.353132,0.769325,0.0113934,0.111964,0.763542,0.17235,0.0170273,0.497651,0.5626,0.308276,0.220674,0.41618,0.670786,0.848928,0.378969,0.201268,0.281295,0.747423,0.838545,0.681078,0.367429,0.100063,0.656891,0.518594,0.12772,0.924895,0.488245,0.821099,0.205121,0.793012,0.237803,0.0608392,0.879464,0.509234,0.657508,0.496418,0.373606,0.481213,0.61289,0.491093,0.4455,0.193169,0.485123,0.362903,0.462594,0.627897,0.782789,0.64018,0.719171,0.392852,0.0574548,0.542238,0.28858,0.546165,0.516645,0.629112,0.924643,0.901529,0.11335,0.287164,0.467824,0.487185,0.666351,0.789943,0.651865,0.530088,0.568004,0.921111,0.115936,0.152501,0.821401,0.755242,0.0823931,0.47384,0.386523,0.124565,0.299076,0.330587,0.593676,0.27733,0.571467,0.772213,0.390175,0.392846,0.0353305,0.916552,0.0781361,0.656163,0.311647,0.151913,0.0106326,0.629624,0.88767,0.985896,0.790223,0.44753,0.647527,0.622411,0.431967,0.328536,0.771378,0.643599,0.056538,0.857481,0.882779,0.0339822,0.343242,0.72038,0.590656,0.537053,0.549364,0.896763,0.673956,0.796971,0.568881,0.0359907,0.562069,0.420259,0.18833,0.606831,0.384192,0.669943,0.724933,0.764434,0.0442705,0.983955,0.0129247,0.736241,0.156584,0.585596,0.283952,0.307913,0.571827,0.403934,0.887971,0.584561,0.926213,0.586579,0.968878,0.345368,0.757088,0.156562,0.658111,0.400817,0.415743,0.73872,0.932346,0.948329,0.346422,0.184818,0.749513,0.676715,0.880662,0.496939,0.0341163,0.83993,0.829184,0.631922,0.768927,0.243832,0.443661,0.00565362,0.00899434,0.830693,0.439555,0.433237,0.789571,0.0789769,0.854407,0.216328,0.383599,0.26305,0.166743,0.94087,0.082274,0.095718,0.562595,0.629305,0.839852,0.286615,0.409079,0.358655,0.416185,0.976908,0.233574,0.892463,0.102057,0.344277,0.326795,0.31955,0.310159,0.3095,0.0378334,0.737731,0.627365,0.390099,0.469526,0.689105,0.418492,0.216665,0.283539,0.393765,0.846519,0.0152182,0.346303,0.840556,0.0526901,0.425314,0.329435,0.877199,0.137811,0.536772,0.362323,0.79897,0.542107,0.911041,0.387326,0.677322,0.586742,0.67018,0.54889,0.843733,0.648422,0.810381,0.828029,0.0767614,0.273127,0.564929,0.193735,0.169322,0.769864,0.333368,0.471319,0.66619,0.92787,0.633315,0.484059,0.423531,0.0904323,0.839609,0.341225,0.452826,0.310079,0.799475,0.983159,0.850841,0.109617,0.944472,0.863156,0.273038,0.800565,0.23857,0.17136,0.301312,0.894955,0.658674,0.278314,0.719183,0.12527,0.618711,0.355037,0.227796,0.00815803,0.51688,0.607528,0.339037,0.604746,0.211205,0.0927827,0.0891193,0.221148,0.256251,0.283046,0.049397,0.0697126,0.592113,0.416368,0.284541,0.972035,0.599544,0.998601,0.0729918,0.566066,0.378875,0.993549,0.417637,0.223949,0.141352,0.58038,0.909934,0.611072,0.476652,0.0868684,0.653906,0.867057,0.831268,0.191655,0.0893226,0.200556,0.735381,0.784969,0.708839,0.728943,0.609153,0.656915,0.536551,0.856148,0.695226,0.703283,0.685616,0.975108,0.825205,0.487235,0.477177,0.453193,0.612243,0.814305,0.995727,0.342579,0.11451,0.995602,0.321243,0.211193,0.178982,0.364233,0.0124434,0.585189,0.907762,0.580494,0.63213,0.312748,0.928045,0.160704,0.117354,0.857644,0.205717,0.981506,0.149277,0.489366,0.7365,0.778667,0.820166,0.553282,0.990867,0.53231,0.630262,0.00882047,0.0320688,0.43278,0.431044,0.640195,0.719078,0.250476,0.788329,0.279683,0.635841,0.944524,0.410589,0.29048,0.04049,0.818497,0.455363,|0.291229,0.500892,0.700682,0.494916,0.345837,0.280736,0.373124,0.696843,0.533241,0.961466,0.917318,0.533787,0.682929,0.183975,0.0346284,0.661835,0.0977988,0.0516551,0.218835,0.247253,0.381077,0.63746,0.801628,0.344987,0.230106,0.514176,0.653458,0.415355,0.0284435,0.650029,0.986386,0.865121,0.0832883,0.644886,0.773496,0.477199,0.900994,0.0431341,0.839473,0.759376,0.707911,0.591079,0.343468,0.0187811,0.726544,0.728234,0.604109,0.209161,0.261287,0.705204,0.185054,0.739778,0.197735,0.167568,0.172083,0.109217,0.284769,0.537724,0.102583,0.621983,0.496194,0.619859,0.49297,0.0892198,0.413007,0.964881,0.281328,0.134038,0.26311,0.878186,0.284563,0.107976,0.261007,0.0945359,0.220682,0.547511,0.710159,0.0745423,0.0341355,0.75948,0.985674,0.93862,0.600408,0.497282,0.985455,0.278554,0.862108,0.811503,0.89941,0.0738952,0.70247,0.460015,0.917382,0.941707,0.963273,0.777394,0.915555,0.387629,0.638828,0.102379,0.155838,0.276696,0.972106,0.529419,0.861317,0.868329,0.76004,0.408629,0.579838,0.257156,0.475043,0.913993,0.0327842,0.234347,0.626266,0.21928,0.58989,0.206585,0.0800071,0.189371,0.805304,0.991173,0.758748,0.470222,0.834556,0.612661,0.780623,0.39285,0.0387981,0.306751,0.282654,0.0858728,0.298035,0.113957,0.822501,0.0380099,0.263605,0.860993,0.193933,0.527245,0.378378,0.895818,0.85989,0.916192,0.498521,0.0489611,0.432176,0.938533,0.146026,0.0752269,0.449609,0.639546,0.179931,0.345859,0.131946,0.648952,0.120065,0.986992,0.552071,0.837386,0.716009,0.013475,0.300467,0.50044,0.317376,0.737072,0.661959,0.785666,0.280407,0.276817,0.7509,0.510315,0.398245,0.941178,0.79964,0.834732,0.0358449,0.882834,0.264433,0.170084,0.654193,0.91274,0.631024,0.661806,0.216579,0.0292168,0.231356,0.187429,0.159897,0.37505,0.71162,0.0902865,0.184006,0.433281,0.763084,0.32944,0.11439,0.721464,0.291384,0.153262,0.123544,0.996842,0.833465,0.00765586,0.510616,0.471391,0.742344,0.884735,0.533752,0.309185,0.0518797,0.263286,0.0556467,0.0758502,0.271295,0.251084,0.831196,0.0999515,0.300279,0.328074,0.858999,0.160301,0.563195,0.839864,0.258101,0.846425,0.436134,0.830158,0.492041,0.0343075,0.692373,0.856314,0.639792,0.583437,0.642246,0.441873,0.257516,0.785575,0.50599,0.173028,0.34777,0.00907189,0.380332,0.169977,0.869416,0.871387,0.431836,0.447306,0.358436,0.579492,0.662565,0.924079,0.0478503,0.109624,0.603415,0.607821,0.625509,0.471136,0.692922,0.619994,0.229856,0.163976,0.924522,0.171036,0.0813012,0.863733,0.803634,0.494223,0.0804552,0.333397,0.453209,0.0934508,0.0861176,0.241192,0.201339,0.427364,0.17634,0.853432,0.91544,0.318209,0.519932,0.374906,0.228913,0.663677,0.0116834,0.384237,0.339475,0.127784,0.428401,0.138311,0.476455,0.268768,0.450315,0.873588,0.836907,0.33836,0.172261,0.382462,0.903294,0.631874,0.298186,0.46229,0.152325,0.629947,0.931314,0.4112,0.980303,0.351146,0.0816626,0.834833,0.0135223,0.114685,0.791921,0.325754,0.13543,0.160005,0.152689,0.480105,0.530989,0.968895,0.19232,0.624176,0.69643,0.749973,0.442857,0.317347,0.251438,0.495162,0.745871,0.951999,0.990475,0.733425,0.967411,0.507435,0.912558,0.253401,0.576594,0.178252,0.360897,0.22465,0.695356,0.0513296,0.237785,0.389996,0.454326,0.468994,0.269945,0.826777,0.775798,0.437682,0.711009,0.173076,0.00785685,0.554743,0.232091,0.00425899,0.573826,0.384618,0.893782,0.697961,0.0669529,0.933403,0.0267296,0.68471,0.552478,0.116835,0.331882,0.147857,0.82516,0.754056,0.940891,0.892567,0.508007,0.783286,0.432056,0.369695,0.948604,0.0118201,0.676677,0.777278,0.0482517,0.357158,0.118707,0.995282,0.162127,0.822893,0.17635,0.977733,0.19122,0.427908,0.760093,0.356017,0.10544,0.906129,0.0672138,0.0680325,0.429039,0.586825,0.74793,0.719742,0.389078,0.0542185,0.0442613,0.227259,0.259715,0.379018,0.922389,0.0944194,0.213737,0.8726,0.533033,0.844808,0.457083,0.283248,0.846178,0.720944,0.0239269,0.4792,0.840909,0.422861,0.760745,0.121827,0.373572,0.327232,0.493666,0.411937,0.0178517,0.826089,0.233383,0.850396,0.474152,0.535335,0.941906,0.425324,0.979555,0.83648,0.839315,0.680595,0.521741,0.859706,0.270141,0.787554,0.785611,0.564946,0.936732,0.13109,0.436598,0.4861,0.444302,0.454099,0.0441788,0.713195,0.347402,0.679554,0.697404,0.930321,0.540237,0.499453,0.0744306,0.712215,0.781816,0.518354,0.435226,0.773952,0.406251,0.839803,0.396301,0.996649,0.993895,0.22663,0.592789,0.553197,0.00626057,0.70368,0.870753,0.404714,0.964997,0.851699,0.0470678,0.000494182,0.476723,0.162821,0.176375,0.480115,0.190889,0.924786,0.88679,0.0522109,0.284245,0.294257,0.49508,0.270646,0.39384,0.366205,0.0309539,0.238259,0.399618,0.0323232,0.0910973,0.168044,0.22721,0.581637,0.0324986,0.865167,0.63434,0.368131,0.927616,0.776348,0.229172,0.217374,0.562106,0.830222,0.812408,0.050082,0.817975,0.334436,0.843635,0.202578,0.998325,0.40119,0.959306,0.937772,0.436512,0.0665478,0.74051,0.49666,0.405142,0.55134,0.628688,0.480528,0.445342,0.133595,0.639416,0.714372,0.151503,0.327842,0.785975,0.935432,0.0467501,0.137247,0.0119504,0.484549,0.649349,0.201956,0.942944,0.310858,0.581463,0.120325,0.325224,0.422823,0.73378,0.349608,0.973638,0.638952,0.193997,0.992275,0.0762876,0.390056,0.922633,0.596446,0.552218,0.0127896,0.834146,0.73885,0.886784,0.28338,0.306743,0.0692816,0.204947,0.608412,0.66651,0.309679,0.0821194,0.492242,0.317035,0.106301,0.310172,0.556134,0.649771,0.824234,0.987114,0.133647,0.611656,0.87462,0.0473647,0.328651,0.864594,0.281801,0.553333,0.924426,0.693633,0.1686,0.823263,0.841601,0.171962,0.492273,0.5628,0.830935,0.00453651,0.652314,0.694912,0.862608,0.692217,0.883536,0.572808,0.236487,0.910068,0.701215,0.524029,0.978468,0.554082,0.00591815,0.0038622,0.148629,0.878127,0.351479,0.836177,0.940899,0.113563,0.915285,0.586442,0.00234085,0.567889,0.451466,0.667197,0.360672,0.46201,0.794997,0.25079,0.404605,0.887409,0.0986425,0.0340084,0.973181,0.903977,0.208541,0.750562,0.508539,0.207163,0.967695,0.928593,0.108361,0.608035,0.701902,0.727954,0.473925,0.550747,0.750613,0.0881686,0.122061,0.703009,0.898074,0.582278,0.0722604,0.109232,0.766774,0.419042,0.677784,0.81143,0.5604,0.498652,0.400302,0.167031,0.748711,0.276301,0.478333,0.52193,0.715839,0.213461,0.931341,0.895405,0.509615,0.841733,0.713202,0.400746,0.420154,0.155522,0.742956,0.487198,0.77089,0.0929409,0.812046,0.279827,0.634098,0.249675,0.377508,0.941363,0.358361,0.859365,0.258758,0.805759,0.45973,0.535178,0.0891024,0.578653,0.488802,0.184391,0.294347,0.827319,0.103917,0.690434,0.589165,0.820211,0.503306,0.912715,0.421743,0.0325093,0.204586,0.524454,0.897135,0.567632,0.617665,0.195256,0.401407,0.224632,0.0182824,0.984815,0.579576,0.0333616,0.9871,0.238151,0.282056,0.987316,0.200603,0.497419,0.964949,0.232797,0.76205,0.0614818,0.0678224,0.978938,0.924127,0.318043,0.48741,0.994385,0.686798,0.30538,0.00485224,0.895044,0.35824,0.866328,0.580428,0.994648,0.500924,0.928848,0.237392,0.842441,0.577178,0.759,0.166251,0.203443,0.136466,0.665386,0.0278897,0.613863,0.702007,0.001984,0.493551,0.857937,0.643958,0.99569,0.307996,0.107239,0.354614,0.753159,0.347145,0.106642,0.950304,0.767717,0.413793,0.90939,0.158743,0.819787,0.866284,0.394006,0.578255,0.414788,0.505187,0.70661,0.0383685,0.654351,0.91744,0.780158,0.485566,0.48156,0.182239,0.589527,0.600148,0.969927,0.928344,0.945415,0.344335,0.668477,0.738721,0.160387,0.857202,0.680136,0.796125,0.0629961,0.120278,0.224216,0.594996,0.49399,0.858833,0.703741,0.715406,0.73498,0.377956,0.338302,0.377395,0.915771,0.732357,0.108234,0.347332,0.797216,0.234283,0.382487,0.614908,0.0758845,0.0664388,0.828458,0.982561,0.117455,0.188971,0.416707,0.240222,0.436107,0.740004,0.0122148,0.649261,0.106622,0.0562698,0.438146,0.982259,0.50488,0.846757,0.289764,0.741172,0.806306,0.405744,0.854214,0.813241,0.66765,0.405529,0.423594,0.897797,0.465301,0.67215,0.514175,0.176176,0.0113869,0.0805104,0.898687,0.29048,0.901271,0.80968,0.415403,0.163031,0.55501,0.298455,0.20236,0.0157994,0.267304,0.778027,0.474534,0.366051,0.130351,0.60828,0.979861,0.711074,0.174846,0.979598,0.35827,0.151505,0.867547,0.924907,0.723303,0.346572,0.0667953,0.305865,0.290759,0.23765,0.334188,0.670061,0.853086,0.00904679,0.737885,0.291613,0.113743,0.387517,0.592464,0.740751,0.169501,0.500027,0.417142,0.0883302,0.474225,0.922935,0.581814,0.930258,0.898913,0.870604,0.69171,0.453841,0.138038,0.327769,0.702216,0.348793,0.394735,0.206168,0.50294,0.815452,0.773217,0.536947,0.106232,0.602177,0.675272,0.145267,0.229808,0.714998,0.7288,0.15638,0.409254,0.73038,0.394451,0.576213,0.624289,0.215834,0.986047,0.963191,0.660873,0.808885,0.760774,0.223189,0.752881,0.204012,0.0939649,0.292878,0.282026,0.723969,0.917139,0.356369,0.491033,0.278687,0.373507,0.622763,0.140823,0.532073,0.410614,0.657395,0.604475,0.294383,0.980472,0.575228,0.589189,0.274488,0.047924,0.314348,0.286879,0.854768,0.936264,0.743393,0.939581,0.120769,0.950123,0.441359,0.881299,0.43056,0.800574,0.972392,0.413273,0.983939,0.75915,0.630203,0.555017,0.0379504,0.991506,0.715452,0.248698,0.283901,0.442271,0.0903223,0.447412,0.918965,0.298762,0.601878,0.164783,0.0233927,0.853814,0.0380965,0.547024,0.845595,0.0931463,0.327846,0.16584,0.572361,0.217332,0.639048,0.818694,0.961905,|0.665973,0.352949,0.0932261,0.182616,0.90757,0.578677,0.86814,0.738415,0.170539,0.636617,0.405747,0.956847,0.0103979,0.470263,0.873174,0.359101,0.577532,0.497667,0.852984,0.969377,0.959883,0.200241,0.23361,0.0657699,0.00754863,0.892664,0.857347,0.819348,0.153264,0.763549,0.340399,0.687098,0.261838,0.430396,0.154266,0.752312,0.25063,0.82177,0.376589,0.60717,0.663039,0.360798,0.611475,0.720725,0.353366,0.298374,0.88642,0.539186,0.767049,0.413211,0.251142,0.690663,0.602633,0.822228,0.976022,0.728637,0.945282,0.0274674,0.0929273,0.517725,0.36093,0.498856,0.995476,0.377195,0.918623,0.868348,0.065679,0.274206,0.549844,0.514768,0.402423,0.56989,0.414965,0.783885,0.678412,0.177477,0.912842,0.893277,0.235524,0.44559,0.154362,0.65711,0.00606245,0.500842,0.943857,0.667857,0.968011,0.455628,0.216924,0.602916,0.493608,0.898514,0.0990618,0.939444,0.903475,0.793374,0.0732934,0.831644,0.898809,0.278031,0.311351,0.444106,0.302683,0.26485,0.54382,0.949278,0.716524,0.690261,0.488926,0.231882,0.509382,0.254338,0.21139,0.466608,0.0234928,0.0515328,0.636403,0.050088,0.638654,0.305374,0.542759,0.630919,0.59447,0.351421,0.243015,0.569721,0.613729,0.988826,0.0396316,0.00337076,0.687595,0.138708,0.067115,0.334144,0.853563,0.705868,0.910112,0.496114,0.996015,0.747101,0.850975,0.911763,0.984811,0.0121291,0.236637,0.00387383,0.978015,0.230942,0.177585,0.109223,0.800304,0.63373,0.724889,0.805312,0.59447,0.203718,0.555955,0.36768,0.70266,0.56081,0.78084,0.661713,0.487823,0.814849,0.199774,0.233848,0.780787,0.405546,0.662486,0.529813,0.1102,0.491073,0.874297,0.7294,0.791125,0.147313,0.0976681,0.936022,0.241472,0.745271,0.20559,0.876054,0.815915,0.490374,0.0610777,0.817917,0.119423,0.0301204,0.99208,0.749325,0.27858,0.958079,0.662908,0.756108,0.739333,0.514026,0.35579,0.658513,0.112593,0.1179,0.379689,0.250791,0.832503,0.311827,0.694956,0.497388,0.800277,0.770191,0.34753,0.386979,0.00924414,0.476507,0.493271,0.542149,0.951827,0.00483286,0.439743,0.985181,0.174758,0.318142,0.965455,0.0388171,0.388429,0.740191,0.0380571,0.1425,0.909178,0.0307769,0.350998,0.317316,0.370238,0.79031,0.420288,0.409806,0.167044,0.585079,0.622055,0.85758,0.342322,0.78681,0.889678,0.667772,0.0861674,0.584364,0.44919,0.709211,0.666109,0.445699,0.965763,0.570055,0.741808,0.39902,0.193602,0.569287,0.896912,0.404824,0.351157,0.101597,0.986676,0.442964,0.673578,0.53189,0.990372,0.629153,0.0302089,0.769904,0.110461,0.588803,0.342247,0.582176,0.128711,0.906937,0.468439,0.73434,0.330897,0.15829,0.760695,0.641633,0.507371,0.593454,0.0873312,0.933731,0.671521,0.281975,0.390744,0.127671,0.560359,0.0327753,0.233602,0.59418,0.221613,0.0825302,0.930409,0.208546,0.89296,0.849443,0.654156,0.322293,0.990616,0.221766,0.462206,0.548729,0.463786,0.714887,0.221164,0.689268,0.794908,0.0482361,0.672597,0.29084,0.613926,0.968982,0.876749,0.92848,0.724254,0.419917,0.770751,0.16148,0.809229,0.217709,0.436869,0.90472,0.184271,0.902956,0.498273,0.994217,0.337991,0.156885,0.753765,0.808636,0.851031,0.541371,0.980284,0.0401852,0.881481,0.846217,0.604107,0.0742694,0.83283,0.792931,0.775433,0.893912,0.261144,0.459843,0.248017,0.571323,0.013098,0.931271,0.827693,0.715291,0.305384,0.661383,0.52724,0.1454,0.563548,0.527778,0.436547,0.985277,0.518278,0.800578,0.137053,0.849939,0.287268,0.246095,0.865576,0.104269,0.639381,0.91415,0.416878,0.335638,0.207648,0.0354005,0.382188,0.0428668,0.374349,0.970967,0.242435,0.421946,0.115554,0.271315,0.277875,0.336649,0.141466,0.554343,0.219067,0.485967,0.490729,0.362516,0.623534,0.792109,0.0162409,0.320548,0.952988,0.660099,0.487384,0.961166,0.7915,0.0985204,0.464626,0.89687,0.717207,0.642653,0.214325,0.416155,0.805848,0.00942099,0.0419482,0.650772,0.486576,0.34184,0.481326,0.998158,0.814248,0.236489,0.753404,0.141918,0.946037,0.297822,0.0988725,0.0120238,0.774426,0.771393,0.296682,0.531265,0.548296,0.784813,0.290622,0.880482,0.308206,0.225098,0.386291,0.489225,0.641469,0.966685,0.475579,0.959302,0.455082,0.539673,0.458608,0.933714,0.199744,0.285913,0.341577,0.799913,0.521797,0.0724338,0.663987,0.714506,0.539316,0.373071,0.156506,0.678362,0.525065,0.515242,0.100076,0.252868,0.845847,0.529275,0.97816,0.796125,0.82834,0.868855,0.253577,0.674238,0.716018,0.433026,0.959592,0.553789,0.00824475,0.409536,0.100198,0.556336,0.608088,0.455187,0.819362,0.324993,0.0486641,0.608871,0.812384,0.400855,0.465103,0.728724,0.18906,0.719309,0.987063,0.134731,0.245942,0.277823,0.105227,0.316631,0.820816,0.18094,0.502464,0.0539402,0.671693,0.749611,0.638344,0.0164704,0.623189,0.496002,0.2311,0.719435,0.501201,0.839912,0.283099,0.62886,0.843345,0.880186,0.568074,0.752009,0.920812,0.755421,0.0427917,0.191557,0.787168,0.583625,0.182997,0.061404,0.674648,0.767339,0.262371,0.274968,0.212821,0.375172,0.792595,0.966395,0.530851,0.113825,0.400053,0.432575,0.543865,0.707467,0.211829,0.320819,0.244964,0.470272,0.697551,0.324374,0.0295178,0.612334,0.413696,0.752201,0.281989,0.643914,0.0747221,0.590951,0.182968,0.589792,0.166831,0.328297,0.807213,0.526731,0.577198,0.51215,0.672794,0.1213,0.513205,0.751481,0.280158,0.707601,0.927979,0.21076,0.647763,0.260359,0.571937,0.343189,0.907769,0.0346586,0.709271,0.142979,0.85923,0.840281,0.689619,0.648845,0.252382,0.246998,0.957381,0.201436,0.0583513,0.0228206,0.586159,0.76173,0.33053,0.818977,0.798505,0.883585,0.151362,0.59489,0.198532,0.465136,0.184148,0.374578,0.515517,0.872871,0.565263,0.958823,0.403712,0.746682,0.354276,0.54755,0.0055989,0.744242,0.894327,0.678375,0.69798,0.0219507,0.597606,0.491144,0.983102,0.352883,0.0176468,0.648609,0.514261,0.991587,0.63143,0.217914,0.0629892,0.510736,0.85556,0.0150632,0.943627,0.148596,0.166431,0.344,0.854537,0.305792,0.214752,0.370262,0.458068,0.0642654,0.370759,0.697148,0.274399,0.186466,0.469419,0.891032,0.656335,0.791282,0.615167,0.681178,0.854662,0.156477,0.104257,0.134484,0.683575,0.638901,0.966691,0.643148,0.390602,0.52049,0.680339,0.206142,0.334749,0.616897,0.470975,0.710019,0.809706,0.278185,0.85736,0.953504,0.977702,0.553174,0.256543,0.170234,0.00424945,0.47013,0.863234,0.374984,0.325955,0.161163,0.150398,0.592735,0.00440514,0.10347,0.639286,0.814298,0.124002,0.508912,0.313853,0.410484,0.406747,0.0941173,0.263351,0.952205,0.968547,0.194932,0.491365,0.52541,0.543078,0.214365,0.147834,0.844779,0.924812,0.662939,0.91826,0.245341,0.881478,0.286594,0.837951,0.731355,0.807714,0.84852,0.476421,0.0996215,0.204493,0.776624,0.216183,0.370949,0.444379,0.914166,0.889714,0.299625,0.350033,0.953929,0.264011,0.412525,0.207359,0.46259,0.154329,0.683414,0.132158,0.753275,0.667116,0.849022,0.073908,0.502155,0.33854,0.563279,0.136483,0.0542865,0.736735,0.71332,0.250853,0.785904,0.718438,0.140254,0.292051,0.824258,0.673059,0.555712,0.29779,0.192811,0.64706,0.391145,0.956146,0.730271,0.133475,0.762907,0.601944,0.637211,0.137059,0.752876,0.897965,0.778995,0.628499,0.793471,0.178633,0.290588,0.992891,0.398629,0.55755,0.375977,0.67365,0.764828,0.362465,0.961584,0.754424,0.0284928,0.277126,0.955021,0.980601,0.433927,0.950691,0.150606,0.898813,0.256223,0.279687,0.602525,0.319179,0.951312,0.88878,0.587163,0.30144,0.0683562,0.909419,0.231996,0.919149,0.285895,0.310962,0.032034,0.0743522,0.333421,0.429899,0.138782,0.855031,0.246551,0.416192,0.998557,0.808908,0.23339,0.39205,0.450891,0.5188,0.156192,0.608994,0.702204,0.61248,0.636009,0.163074,0.43105,0.590204,0.312015,0.8024,0.080075,0.640019,0.0220625,0.229048,0.0140768,0.136738,0.490848,0.275179,0.210517,0.810902,0.497961,0.0274369,0.183191,0.842398,0.621447,0.217884,0.929505,0.591699,0.588734,0.511854,0.393044,0.345179,0.5908,0.103707,0.917028,0.0625325,0.27979,0.295348,0.197835,0.32144,0.254417,0.331226,0.637132,0.659479,0.244537,0.633829,0.981461,0.270889,0.942737,0.859754,0.245942,0.66679,0.272331,0.405659,0.555784,0.270315,0.679541,0.269363,0.722183,0.0126176,0.516481,0.696953,0.228572,0.881412,0.275072,0.413102,0.745752,0.703433,0.316242,0.41101,0.237939,0.662313,0.0581588,0.565441,0.391673,0.809903,0.85889,0.382815,0.467467,0.173787,0.490684,0.79118,0.75293,0.357774,0.406184,0.205252,0.744209,0.634481,0.482068,0.808833,0.454525,0.57954,0.0590959,0.627747,0.421433,0.683126,0.472936,0.763332,0.527097,0.926883,0.644759,0.244904,0.766771,0.473848,0.0918906,0.742482,0.305457,0.250745,0.250085,0.634488,0.511636,0.645217,0.651474,0.655446,0.0129556,0.710191,0.241103,0.637584,0.552404,0.384537,0.0542646,0.634993,0.969132,0.287646,0.550033,0.594037,0.0463555,0.323135,0.256225,0.1326,0.143292,0.419353,0.695532,0.971357,0.527888,0.428354,0.775209,0.382343,0.00144804,0.326263,0.166791,0.135232,0.375834,0.991206,0.248041,0.0785335,0.363039,0.822017,0.0154747,0.760731,0.326109,0.231904,0.636105,0.598258,0.550681,0.944406,0.353956,0.0457034,0.57424,0.741711,0.570056,0.918716,0.561901,0.257356,0.73949,0.157538,0.450404,0.559303,0.624544,0.339528,0.13857,0.881605,0.334221,0.868874,0.573661,0.561396,0.896125,0.17408,0.282169,0.844839,0.992136,0.945821,0.140023,0.605251,0.428885,0.245072,0.299468,0.964057,0.876863,0.90899,0.774671,0.234495,0.739329,0.397842,0.91641,0.621791,0.298878,|0.738069,0.273992,0.0744896,0.298494,0.133987,0.229875,0.567468,0.702997,0.502398,0.0179023,0.350674,0.400264,0.372938,0.492815,0.0846717,0.68639,0.0259655,0.461717,0.0708011,0.688836,0.225727,0.210906,0.41244,0.268337,0.270312,0.0922734,0.618254,0.713904,0.611047,0.83906,0.000647426,0.248044,0.470799,0.00331104,0.967586,0.712973,0.970363,0.0292143,0.0198906,0.679972,0.403487,0.420959,0.847151,0.199396,0.815414,0.130464,0.559576,0.689061,0.576161,0.104292,0.670279,0.600586,0.219667,0.36246,0.526986,0.0592228,0.610865,0.163428,0.981833,0.126578,0.245533,0.358656,0.341659,0.12437,0.579777,0.769314,0.645415,0.0705709,0.177158,0.0868781,0.206108,0.527194,0.415114,0.520088,0.535701,0.394042,0.340997,0.882698,0.157811,0.959958,0.372445,0.944752,0.756481,0.67077,0.958746,0.603673,0.436999,0.54557,0.131688,0.804013,0.869741,0.938313,0.270096,0.687103,0.124814,0.178865,0.0494813,0.679641,0.286434,0.453707,0.540638,0.987493,0.640133,0.559111,0.520007,0.693324,0.364294,0.39734,0.176741,0.302881,0.17875,0.34973,0.812683,0.246087,0.505887,0.952191,0.130053,0.519935,0.566844,0.402941,0.351254,0.688814,0.680696,0.913907,0.921868,0.530535,0.544758,0.667601,0.813565,0.787233,0.682955,0.453707,0.0359624,0.718463,0.175745,0.233366,0.124001,0.474688,0.578418,0.863557,0.937671,0.207333,0.750804,0.843571,0.865783,0.57965,0.608517,0.630353,0.141755,0.0814438,0.262116,0.269405,0.327054,0.498603,0.979499,0.497471,0.57473,0.405957,0.250026,0.922882,0.192375,0.675089,0.567391,0.969603,0.285002,0.48746,0.229974,0.668969,0.291026,0.993241,0.706596,0.348262,0.344637,0.519129,0.605312,0.627095,0.346478,0.365297,0.953314,0.473773,0.711025,0.159967,0.320444,0.908707,0.955243,0.282548,0.183952,0.819109,0.271432,0.45871,0.657954,0.714899,0.290398,0.947737,0.980097,0.462979,0.889669,0.0543013,0.57396,0.0303802,0.900432,0.0542422,0.679334,0.737111,0.99731,0.438282,0.381844,0.11938,0.822476,0.063016,0.358847,0.430342,0.967576,0.687628,0.45005,0.642959,0.648057,0.518727,0.465738,0.917811,0.980159,0.469716,0.257907,0.258433,0.882498,0.270666,0.433933,0.599596,0.707287,0.495295,0.0553432,0.22925,0.467328,0.0208935,0.467208,0.791359,0.265928,0.694822,0.917776,0.350004,0.912332,0.140454,0.107435,0.637355,0.412737,0.817623,0.897367,0.621431,0.50901,0.515708,0.275406,0.269621,0.66453,0.734221,0.468613,0.172517,0.881922,0.904201,0.867933,0.0673989,0.217253,0.677516,0.507394,0.564513,0.0358008,0.801315,0.227121,0.756181,0.326661,0.510819,0.525741,0.989232,0.0259365,0.863792,0.451605,0.127499,0.153148,0.745706,0.623036,0.108942,0.0975286,0.778455,0.234665,0.46542,0.260982,0.113847,0.483155,0.95509,0.329207,0.752349,0.874654,0.233181,0.959017,0.653889,0.740716,0.781664,0.990357,0.876289,0.681528,0.795699,0.387112,0.560785,0.657462,0.906926,0.637899,0.737829,0.885084,0.905466,0.106772,0.5583,0.883777,0.362779,0.196843,0.798217,0.896828,0.269159,0.830411,0.496112,0.529875,0.162832,0.3702,0.484638,0.685045,0.00752461,0.837485,0.0460089,0.974062,0.240245,0.408747,0.334909,0.234593,0.872371,0.242168,0.933624,0.682102,0.592205,0.885123,0.64703,0.124239,0.171859,0.968931,0.432705,0.056473,0.937733,0.656932,0.0344664,0.256287,0.0348068,0.962866,0.192151,0.063694,0.818159,0.937117,0.995121,0.195696,0.832433,0.408705,0.373988,0.663155,0.145702,0.853097,0.557882,0.738249,0.592226,0.00439757,0.492123,0.818326,0.472172,0.807509,0.504868,0.487601,0.556679,0.30749,0.279026,0.0623212,0.0220503,0.0333809,0.125437,0.658942,0.977978,0.227465,0.648877,0.638784,0.551037,0.730135,0.99013,0.251605,0.701915,0.837876,0.770352,0.654139,0.828842,0.615527,0.0460694,0.640493,0.418872,0.964369,0.724994,0.396846,0.601362,0.547526,0.207353,0.754685,0.414526,0.833774,0.343635,0.295696,0.316735,0.557114,0.306204,0.70106,0.604525,0.978203,0.349649,0.712368,0.554528,0.798297,0.565317,0.101955,0.676794,0.0224399,0.13015,0.131594,0.105765,0.80769,0.611472,0.373251,0.195373,0.273782,0.457073,0.613409,0.522366,0.298151,0.0710916,0.559107,0.578837,0.412938,0.755607,0.499993,0.613362,0.618801,0.150571,0.234774,0.381069,0.727427,0.358476,0.358703,0.851149,0.348434,0.716174,0.469008,0.769708,0.920369,0.991318,0.246329,0.558182,0.736857,0.228568,0.529466,0.449436,0.709085,0.401559,0.0661893,0.801675,0.497255,0.849987,0.233401,0.489142,0.299929,0.746025,0.496136,0.447082,0.57768,0.923494,0.632151,0.0738624,0.847582,0.105134,0.154729,0.807594,0.0477207,0.478699,0.359224,0.434448,0.637054,0.548563,0.721094,0.762327,0.0745358,0.996038,0.794158,0.826798,0.81436,0.273374,0.844468,0.505277,0.12433,0.960313,0.272965,0.98707,0.636862,0.176983,0.678856,0.968665,0.952119,0.631182,0.749553,0.273459,0.137034,0.531054,0.225797,0.112208,0.49339,0.305622,0.735112,0.062719,0.506672,0.890906,0.724892,0.319094,0.9404,0.934169,0.128574,0.332369,0.306924,0.82237,0.843881,0.745316,0.795904,0.0265979,0.663757,0.596387,0.743954,0.659642,0.849584,0.90878,0.577852,0.602251,0.0713218,0.22971,0.665876,0.13221,0.0605616,0.306059,0.255072,0.230306,0.140996,0.93042,0.1813,0.83406,0.608883,0.619105,0.0251344,0.0538126,0.813388,0.792236,0.245118,0.966955,0.299365,0.580127,0.371748,0.749463,0.914614,0.602067,0.920491,0.732916,0.336265,0.523802,0.801937,0.216093,0.33073,0.958357,0.770006,0.996265,0.597986,0.312034,0.965065,0.105221,0.552287,0.289357,0.631893,0.182753,0.500007,0.476748,0.146333,0.646787,0.72745,0.974704,0.922362,0.473038,0.162983,0.410461,0.000472069,0.487921,0.399525,0.19811,0.562362,0.0498845,0.484931,0.634636,0.51566,0.534069,0.0919739,0.935294,0.817806,0.973636,0.36941,0.717783,0.103316,0.0950881,0.965686,0.241461,0.0635523,0.543653,0.769288,0.318258,0.440484,0.0321265,0.777767,0.0851139,0.690351,0.94179,0.427786,0.139203,0.138282,0.0502918,0.603208,0.955551,0.00448018,0.626484,0.247392,0.0766652,0.405874,0.522864,0.462284,0.058462,0.000146031,0.829269,0.119891,0.807728,0.381426,0.798081,0.542015,0.860776,0.798165,0.419219,0.146432,0.287952,0.697857,0.373227,0.114992,0.539969,0.245781,0.120792,0.374636,0.800305,0.95897,0.558075,0.996368,0.847227,0.440773,0.659886,0.64959,0.656049,0.92052,0.647785,0.884493,0.59516,0.274616,0.98193,0.472492,0.121458,0.336922,0.625027,0.435781,0.76199,0.7688,0.338179,0.506499,0.149945,0.194202,0.626163,0.470625,0.428296,0.118073,0.646697,0.322128,0.458611,0.863994,0.458346,0.408507,0.00219506,0.117005,0.158091,0.806809,0.557818,0.711104,0.700101,0.587603,0.00165951,0.422023,0.927987,0.500521,0.0785233,0.321549,0.310394,0.0338755,0.877987,0.165068,0.751824,0.555262,0.953453,0.855553,0.951122,0.0575747,0.424577,0.854763,0.496257,0.489439,0.81509,0.39767,0.30323,0.6442,0.165102,0.041963,0.600637,0.148448,0.509513,0.0688627,0.807411,0.798002,0.222073,0.636726,0.989615,0.968521,0.8656,0.304547,0.367206,0.721175,0.585511,0.429243,0.65618,0.377733,0.507046,0.58036,0.815876,0.806348,0.109721,0.289476,0.714182,0.134683,0.179095,0.286843,0.823158,0.606774,0.750059,0.108758,0.32535,0.308121,0.352202,0.623613,0.785109,0.0894864,0.0597436,0.200687,0.263868,0.331619,0.779275,0.576407,0.532704,0.359988,0.24366,0.469108,0.511445,0.529568,0.304072,0.743339,0.207812,0.120171,0.77689,0.785493,0.620503,0.740998,0.537139,0.266829,0.708028,0.694304,0.961334,0.894849,0.544052,0.503749,0.57517,0.527349,0.177619,0.814435,0.538851,0.215386,0.0641323,0.492772,0.445524,0.812723,0.572275,0.932775,0.243496,0.716398,0.0792404,0.120546,0.0503062,0.452957,0.720954,0.0706159,0.834011,0.239664,0.298959,0.483211,0.416908,0.734367,0.550505,0.576272,0.97886,0.00710529,0.0557744,0.377176,0.761354,0.0862802,0.475196,0.274783,0.539191,0.26457,0.621174,0.641859,0.439236,0.931755,0.450137,0.27838,0.762291,0.0968879,0.224677,0.772882,0.499286,0.197932,0.126561,0.50328,0.441619,0.449334,0.475586,0.659654,0.240608,0.378766,0.287455,0.188159,0.898848,0.501491,0.109429,0.274894,0.505935,0.660798,0.855841,0.0672396,0.282055,0.615924,0.24707,0.602352,0.856761,0.249399,0.0765834,0.26053,0.637311,0.0813673,0.0522979,0.974277,0.0217865,0.844819,0.55928,0.46515,0.865685,0.733234,0.378325,0.721108,0.995353,0.752896,0.654315,0.459117,0.39164,0.201761,0.395336,0.00767195,0.453507,0.73994,0.594673,0.855421,0.320662,0.194736,0.697537,0.754112,0.494102,0.340588,0.774188,0.273849,0.291124,0.943899,0.384639,0.750754,0.686442,0.919539,0.978364,0.591836,0.0909259,0.797549,0.625254,0.517167,0.414087,0.322249,0.664263,0.178983,0.830513,0.323243,0.50994,0.274896,0.475334,0.591649,0.453644,0.377555,0.162306,0.38582,0.264118,0.276841,0.854672,0.56816,0.0625486,0.796161,0.320403,0.389962,0.391631,0.0851436,0.469879,0.0819767,0.0201482,0.819888,0.655404,0.209562,0.0383925,0.432708,0.993349,0.922217,0.103089,0.311691,0.442951,0.33167,0.761815,0.950477,0.465938,0.687307,0.272021,0.706367,0.574991,0.119072,0.0545154,0.476227,0.824807,0.845701,0.78499,0.773515,0.224537,0.00952262,0.363837,0.166773,0.0102115,0.554325,0.671053,0.668352,0.856854,0.818779,0.958428,0.24623,0.944434,0.718976,0.742391,0.34129,0.57102,0.539847,0.690621,0.366388,0.0559683,0.150025,0.198141,0.646319,0.29007,0.0613491,0.0302026,0.68616,0.533568,0.796791,0.131698,0.546224,0.940094,0.77916,0.42105,0.115011,0.663295,|0.0752653,0.139341,0.927144,0.244004,0.773675,0.185262,0.368511,0.732064,0.367195,0.380543,0.314572,0.246346,0.372702,0.79681,0.197728,0.484527,0.876504,0.322668,0.248791,0.859756,0.0805243,0.0229433,0.435342,0.699034,0.100913,0.536616,0.0907497,0.641739,0.43859,0.283397,0.488659,0.606616,0.740421,0.752159,0.588954,0.994659,0.650948,0.801276,0.296233,0.721933,0.52936,0.979946,0.91012,0.978693,0.52311,0.173152,0.734693,0.347408,0.866603,0.481663,0.0171263,0.198294,0.962932,0.581254,0.647294,0.537331,0.168076,0.950114,0.549477,0.0759353,0.591724,0.7587,0.179262,0.855857,0.765279,0.934244,0.468626,0.442304,0.468214,0.582207,0.175223,0.0275705,0.559506,0.496783,0.559103,0.451515,0.272661,0.836451,0.878135,0.389108,0.256498,0.87877,0.305967,0.298604,0.659141,0.509442,0.163273,0.822801,0.700235,0.354333,0.17815,0.607999,0.0788925,0.724195,0.904114,0.31379,0.793133,0.534618,0.932873,0.833955,0.548523,0.00217456,0.533031,0.953391,0.44754,0.519828,0.895977,0.612041,0.123712,0.898832,0.785262,0.199527,0.0190521,0.998141,0.635228,0.684387,0.214843,0.515046,0.612011,0.0794025,0.0856238,0.0876251,0.891167,0.337188,0.768569,0.112545,0.290179,0.102737,0.917892,0.741678,0.408257,0.913614,0.341667,0.438152,0.825337,0.602983,0.723233,0.397555,0.764515,0.429729,0.842736,0.919138,0.113703,0.911752,0.663249,0.86778,0.631586,0.201795,0.447356,0.22928,0.66874,0.52155,0.996192,0.357277,0.667549,0.817037,0.288183,0.500516,0.175344,0.248647,0.0406126,0.840378,0.995002,0.333026,0.764136,0.492737,0.131697,0.554347,0.784845,0.640726,0.349835,0.996454,0.687937,0.246485,0.913345,0.56,0.458585,0.0627758,0.101665,0.0777441,0.967044,0.964686,0.711591,0.595244,0.41583,0.0201033,0.494347,0.850908,0.480995,0.0614675,0.989622,0.206658,0.417827,0.663094,0.202447,0.999803,0.470116,0.503767,0.836826,0.848414,0.639758,0.914425,0.586633,0.185953,0.0141768,0.827038,0.374312,0.785332,0.531901,0.472655,0.387058,0.503929,0.350059,0.965508,0.65559,0.0235829,0.826741,0.582299,0.8635,0.926874,0.611859,0.441288,0.584825,0.336299,0.329008,0.630723,0.06805,0.388592,0.935967,0.0736862,0.594957,0.614421,0.112817,0.921855,0.819549,0.575374,0.967614,0.41297,0.158526,0.389728,0.429028,0.683918,0.38742,0.28996,0.0875329,0.342656,0.600394,0.0707982,0.222662,0.738932,0.0962736,0.957841,0.244195,0.636744,0.910774,0.846306,0.691124,0.334081,0.828458,0.892373,0.75769,0.348838,0.586444,0.914021,0.277427,0.736373,0.155102,0.129055,0.040677,0.320165,0.0313765,0.171983,0.384265,0.500629,0.306118,0.757862,0.653382,0.00580752,0.369141,0.541014,0.567205,0.227155,0.461173,0.497536,0.872547,0.365258,0.158856,0.202007,0.747411,0.912682,0.975261,0.464168,0.301624,0.358489,0.2201,0.529751,0.816893,0.596144,0.557707,0.966039,0.733358,0.459728,0.691279,0.459,0.520035,0.526202,0.896465,0.00488389,0.609403,0.651998,0.430331,0.168892,0.299862,0.885805,0.736842,0.254119,0.582425,0.605837,0.646165,0.137455,0.154503,0.0210783,0.266592,0.340495,0.725371,0.874988,0.508579,0.954936,0.636932,0.114886,0.30741,0.623512,0.0269564,0.449931,0.385494,0.0667264,0.354951,0.885738,0.327008,0.255792,0.112883,0.889879,0.186645,0.729508,0.455647,0.73798,0.417433,0.62259,0.111985,0.769058,0.250572,0.309655,0.213045,0.185818,0.798537,0.600933,0.841039,0.447375,0.629839,0.941445,0.280387,0.575468,0.22924,0.384341,0.445857,0.170907,0.436494,0.0267615,0.528101,0.789451,0.398512,0.921584,0.0449514,0.736926,0.988397,0.37556,0.824784,0.152004,0.211258,0.71765,0.0210415,0.591255,0.824073,0.995916,0.0675147,0.617999,0.700781,0.348522,0.0457682,0.384571,0.683673,0.0494098,0.735547,0.890734,0.960246,0.471611,0.944666,0.736772,0.369144,0.648667,0.374429,0.909257,0.764456,0.385292,0.959717,0.771768,0.159519,0.251797,0.985576,0.654336,0.667709,0.862205,0.825262,0.842211,0.986635,0.635397,0.767546,0.792717,0.498272,0.727216,0.18153,0.858436,0.0516168,0.708809,0.361691,0.715506,0.823776,0.916989,0.888662,0.625204,0.435265,0.426214,0.306761,0.899196,0.131406,0.930122,0.956037,0.438174,0.523795,0.485447,0.797575,0.0164401,0.321978,0.151627,0.658396,0.96665,0.14481,0.912132,0.247263,0.707459,0.729068,0.322358,0.233432,0.759825,0.0339329,0.900344,0.705788,0.414625,0.573378,0.46242,0.356206,0.767514,0.986862,0.614924,0.0653241,0.658932,0.405366,0.236158,0.154665,0.153783,0.241177,0.445282,0.553015,0.283825,0.270508,0.260953,0.347086,0.190036,0.227396,0.795214,0.675844,0.864983,0.385752,0.521211,0.31925,0.246443,0.637595,0.484335,0.145131,0.204381,0.686776,0.534564,0.177519,0.585511,0.476275,0.224646,0.0538384,0.176553,0.287677,0.350575,0.683754,0.0987785,0.0285177,0.379222,0.358212,0.600749,0.785186,0.0231063,0.718351,0.342303,0.932125,0.814181,0.198255,0.29381,0.257483,0.289384,0.137741,0.710261,0.949408,0.427812,0.888602,0.844375,0.395562,0.391265,0.887515,0.587753,0.731008,0.229069,0.0592086,0.174256,0.504493,0.288432,0.292368,0.093793,0.595002,0.0590911,0.872975,0.703496,0.692403,0.649951,0.0883762,0.0947216,0.327107,0.617342,0.654336,0.862064,0.594424,0.700229,0.12411,0.59884,0.720999,0.335296,0.791727,0.301901,0.256144,0.371767,0.143118,0.33466,0.331585,0.049073,0.0757918,0.334842,0.339083,0.382599,0.783255,0.654596,0.0686601,0.533873,0.541832,0.140952,0.0657381,0.803036,0.666024,0.832288,0.901211,0.606803,0.466825,0.695594,0.165131,0.995299,0.185422,0.540933,0.354276,0.306529,0.552483,0.852773,0.00693476,0.672574,0.108261,0.840889,0.976262,0.362671,0.201351,0.339298,0.153399,0.689224,0.797029,0.368701,0.135769,0.756964,0.979641,0.826144,0.0417032,0.0841371,0.673247,0.483881,0.660271,0.32719,0.317758,0.622945,0.318771,0.635787,0.0616227,0.278918,0.362025,0.777083,0.910288,0.88103,0.155852,0.347501,0.943558,0.660778,0.375834,0.456101,0.591911,0.164262,0.13616,0.71896,0.109871,0.864168,0.180025,0.729261,0.00364178,0.813559,0.539889,0.339496,0.499543,0.120323,0.355558,0.969324,0.34256,0.617252,0.658771,0.139264,0.489679,0.86167,0.793751,0.69292,0.5639,0.469305,0.839853,0.243792,0.53027,0.410927,0.744921,0.719366,0.523114,0.30666,0.155809,0.843212,0.309134,0.539035,0.947765,0.27495,0.99359,0.633252,0.582165,0.688289,0.39387,0.734957,0.12124,0.790059,0.687823,0.331639,0.782127,0.92428,0.861065,0.0461674,0.0684104,0.108929,0.977803,0.527982,0.579983,0.565322,0.0558187,0.999387,0.575908,0.86902,0.245199,0.741575,0.59941,0.00523978,0.584971,0.416796,0.802918,0.685232,0.441636,0.886601,0.97173,0.0852903,0.286824,0.158771,0.927038,0.043607,0.837033,0.121444,0.00301319,0.812109,0.0278609,0.368031,0.259992,0.946398,0.945213,0.810222,0.470448,0.352045,0.00208259,0.223599,0.615788,0.667166,0.389338,0.165755,0.996346,0.858834,0.95094,0.143107,0.281147,0.56912,0.530986,0.255589,0.0753868,0.559908,0.654646,0.104331,0.7677,0.662975,0.884724,0.843257,0.474138,0.451915,0.240887,0.140359,0.312113,0.745582,0.677033,0.740646,0.178962,0.656686,0.208408,0.809974,0.135469,0.880425,0.599482,0.0319961,0.404341,0.517265,0.217542,0.376875,0.0158473,0.850286,0.691114,0.440113,0.526675,0.0112404,0.111984,0.669354,0.899103,0.282324,0.31129,0.580604,0.504727,0.257727,0.163423,0.314825,0.287124,0.445682,0.691172,0.251011,0.668141,0.159302,0.060441,0.658858,0.0823987,0.655367,0.615759,0.743752,0.0896258,0.662592,0.036788,0.845161,0.351669,0.246351,0.103227,0.629907,0.781464,0.282221,0.124231,0.234789,0.492563,0.5982,0.490312,0.894348,0.0656413,0.931456,0.14713,0.911214,0.168473,0.438142,0.595395,0.914012,0.891045,0.158074,0.587294,0.132475,0.759912,0.411034,0.285299,0.0196477,0.998033,0.662129,0.0500898,0.11517,0.852546,0.28896,0.158808,0.0318882,0.830961,0.346148,0.625903,0.672956,0.590063,0.979312,0.342809,0.618073,0.0865343,0.305122,0.441431,0.526117,0.908166,0.357155,0.857233,0.261302,0.996551,0.719472,0.00750864,0.949698,0.623916,0.175664,0.972991,0.681781,0.309647,0.778748,0.256696,0.171115,0.0871054,0.281069,0.508167,0.108294,0.568169,0.818894,0.0533825,0.191835,0.485804,0.626268,0.237746,0.746559,0.664503,0.831767,0.141181,0.793181,0.462646,0.345206,0.907137,0.52076,0.372254,0.286564,0.4462,0.58182,0.605075,0.305325,0.129951,0.490818,0.934526,0.998278,0.843893,0.752281,0.832883,0.222361,0.234109,0.560579,0.103423,0.339018,0.971711,0.301224,0.051892,0.959474,0.89854,0.35157,0.240366,0.482073,0.693999,0.67002,0.185463,0.705964,0.825365,0.702774,0.810579,0.210352,0.386602,0.558857,0.891054,0.51902,0.526145,0.599756,0.624892,0.100005,0.756635,0.881842,0.669816,0.892685,0.953766,0.77138,0.508021,0.341076,0.817571,0.135198,0.622914,0.140118,0.218859,0.920049,0.161359,0.736886,0.560201,0.377136,0.085756,0.892764,0.504286,0.901212,0.836546,0.655625,0.241376,0.0284394,0.455515,0.8345,0.289483,0.555693,0.716337,0.628268,0.0663117,0.436405,0.695998,0.478335,0.077557,0.134189,0.8631,0.021861,0.563653,0.120232,0.31235,0.266416,0.236862,0.333501,0.641661,0.751876,0.300512,0.462015,0.931595,0.934012,0.952612,0.286984,0.543096,0.8566,0.346664,0.0498801,0.724774,0.486113,0.403756,0.0369657,0.165206,0.91272,0.664743,0.572553,0.28366,0.285764,0.777976,0.947255,0.668883,0.271044,0.732029,0.710139,0.552483,0.148402,0.420435,0.0779432,0.272603,0.494199,0.751198,0.408731,0.874007,0.96862,|0.43617,0.616848,0.578057,0.796219,0.0970396,0.32933,0.212176,0.255687,0.791349,0.717272,0.353299,0.900191,0.715214,0.812362,0.455763,0.847431,0.903695,0.804465,0.322566,0.844367,0.933983,0.092682,0.844881,0.319329,0.937364,0.75229,0.824274,0.439654,0.113223,0.0898059,0.654215,0.839383,0.358245,0.750921,0.643214,0.662042,0.0853862,0.780696,0.301028,0.147234,0.0100993,0.595363,0.396646,0.490592,0.680933,0.234761,0.487541,0.5297,0.522078,0.608665,0.915367,0.871246,0.337945,0.714967,0.754751,0.243843,0.355875,0.214659,0.97084,0.61039,0.201274,0.708901,0.642975,0.827071,0.979089,0.635791,0.343632,0.138974,0.193748,0.0598516,0.225573,0.205803,0.300903,0.0144345,0.536793,0.0835327,0.713712,0.378313,0.734755,0.552029,0.0451394,0.166755,0.70513,0.498745,0.756705,0.906156,0.938225,0.0659639,0.720407,0.482576,0.0192693,0.98485,0.404916,0.071876,0.144479,0.670697,0.748556,0.249027,0.758272,0.0372284,0.743891,0.0707045,0.966822,0.152585,0.0287895,0.73125,0.974014,0.886722,0.177708,0.596804,0.753467,0.995581,0.865898,0.0403575,0.859505,0.630613,0.989306,0.0648623,0.406786,0.193202,0.829576,0.415682,0.422995,0.967375,0.50909,0.449786,0.720306,0.0428766,0.562741,0.538853,0.0649096,0.861847,0.704005,0.274116,0.114198,0.597094,0.386625,0.954922,0.701685,0.162152,0.184608,0.0849732,0.0146285,0.786227,0.263167,0.701669,0.359065,0.472005,0.0364133,0.595061,0.146049,0.345281,0.27424,0.3129,0.162633,0.0251821,0.259828,0.484895,0.994012,0.244045,0.296706,0.678371,0.679598,0.0935603,0.787338,0.0235552,0.294358,0.486497,0.624834,0.895259,0.702057,0.63282,0.37572,0.544779,0.569773,0.343207,0.330236,0.596122,0.423488,0.855317,0.254604,0.334812,0.459062,0.641941,0.801274,0.364891,0.476722,0.887987,0.679353,0.0303839,0.731497,0.92241,0.338863,0.601797,0.835118,0.514834,0.139843,0.27369,0.816772,0.565316,0.872867,0.579838,0.586064,0.860302,0.899327,0.751617,0.758979,0.0670678,0.936262,0.549889,0.407272,0.237573,0.898282,0.643448,0.848205,0.836778,0.180913,0.808027,0.235343,0.289493,0.619337,0.841514,0.0583398,0.834094,0.790196,0.36527,0.90988,0.476809,0.898224,0.858359,0.297574,0.56052,0.916927,0.706721,0.264391,0.837653,0.198754,0.736905,0.322509,0.917919,0.112831,0.405666,0.587374,0.646935,0.491262,0.564852,0.0993872,0.91633,0.214246,0.350952,0.638953,0.167952,0.0311747,0.892832,0.160333,0.860487,0.66463,0.303831,0.402399,0.111977,0.0997051,0.455994,0.740376,0.836515,0.0664358,0.976509,0.920406,0.558096,0.599477,0.807829,0.925121,0.388232,0.793116,0.491631,0.757024,0.662078,0.944199,0.899837,0.621774,0.30698,0.074154,0.471525,0.133535,0.135032,0.521039,0.540689,0.306333,0.103288,0.942317,0.148646,0.862517,0.691716,0.522961,0.340606,0.552758,0.592361,0.159821,0.00417483,0.404429,0.664222,0.568557,0.862659,0.728842,0.489949,0.192458,0.300579,0.184019,0.796082,0.712703,0.332368,0.229811,0.0339974,0.412066,0.487324,0.120719,0.74807,0.550395,0.686918,0.945142,0.783624,0.416275,0.877585,0.535913,0.0204164,0.818937,0.481981,0.034156,0.746459,0.575931,0.203499,0.725494,0.136163,0.185449,0.110844,0.00627071,0.251785,0.980737,0.709657,0.490463,0.896033,0.966037,0.0397663,0.360983,0.696167,0.388951,0.138072,0.869282,0.359467,0.549666,0.120641,0.980997,0.150891,0.178337,0.662749,0.569243,0.92285,0.385787,0.0633498,0.181927,0.851521,0.0310231,0.100283,0.373469,0.0649732,0.549326,0.222268,0.268995,0.0050655,0.643676,0.0854822,0.314028,0.348764,0.594735,0.832172,0.503122,0.169614,0.982254,0.889776,0.628928,0.422039,0.151589,0.948275,0.345811,0.591162,0.601046,0.334939,0.928234,0.305897,0.622982,0.763072,0.226304,0.682217,0.798377,0.257108,0.107638,0.15231,0.615803,0.515908,0.526452,0.731791,0.521864,0.993028,0.0143514,0.226321,0.519926,0.823724,0.862721,0.0331887,0.451249,0.0870976,0.205152,0.878339,0.740042,0.865123,0.680124,0.787124,0.942594,0.902149,0.681686,0.565495,0.786353,0.436455,0.416995,0.893933,0.226621,0.420369,0.791442,0.0863911,0.67604,0.310399,0.918314,0.71086,0.745023,0.121392,0.637973,0.291142,0.988259,0.644727,0.897342,0.0656708,0.437081,0.604008,0.409429,0.657866,0.742036,0.310149,0.787636,0.139663,0.140496,0.241095,0.724061,0.661502,0.997691,0.947905,0.844255,0.25105,0.151461,0.526608,0.165735,0.964426,0.960268,0.803325,0.788789,0.937959,0.599774,0.765825,0.165486,0.108406,0.820431,0.966808,0.221852,0.0254167,0.0312641,0.0662556,0.837932,0.380232,0.94179,0.300414,0.254554,0.0292544,0.871024,0.917275,0.243772,0.231259,0.621783,0.649765,0.587585,0.483621,0.786687,0.56678,0.247028,0.762201,0.0704542,0.872943,0.5822,0.158347,0.286677,0.68339,0.265277,0.679863,0.892827,0.138789,0.711208,0.4047,0.42076,0.306449,0.615276,0.263562,0.0523303,0.612185,0.733063,0.214082,0.120629,0.707437,0.87209,0.428435,0.352413,0.00478381,0.868816,0.510563,0.31647,0.408854,0.835526,0.559363,0.707867,0.820699,0.890356,0.142835,0.154726,0.367633,0.784554,0.408961,0.22407,0.881103,0.559283,0.659831,0.285035,0.970078,0.10003,0.393653,0.373711,0.973705,0.682206,0.500389,0.835618,0.477466,0.435187,0.980314,0.854361,0.699542,0.556149,0.922519,0.1969,0.421223,0.289414,0.249517,0.844746,0.133784,0.599315,0.892259,0.86655,0.417375,0.00703758,0.363871,0.998136,0.522053,0.701951,0.795817,0.376488,0.973222,0.747453,0.946851,0.876357,0.202286,0.307801,0.655562,0.748568,0.539166,0.0663255,0.256118,0.211349,0.448495,0.117988,0.931418,0.393456,0.732476,0.46079,0.432515,0.361104,0.12337,0.77102,0.367736,0.938226,0.449486,0.551992,0.67251,0.437487,0.8524,0.6226,0.3662,0.724535,0.919703,0.21876,0.65538,0.116148,0.15596,0.988848,0.216396,0.847865,0.737445,0.888937,0.0661429,0.182071,0.363884,0.908206,0.0390478,0.178432,0.030332,0.595583,0.44293,0.683553,0.333325,0.985123,0.249978,0.698358,0.365076,0.938254,0.390769,0.413141,0.0487662,0.87248,0.218762,0.981409,0.755495,0.797148,0.550363,0.626304,0.192874,0.972929,0.0249329,0.705123,0.79701,0.359464,0.392787,0.568802,0.625692,0.421783,0.249385,0.512832,0.28534,0.726855,0.696947,0.362,0.858128,0.908228,0.672003,0.884437,0.262399,0.447715,0.979251,0.802001,0.0934438,0.167007,0.471732,0.126301,0.542155,0.683596,0.615181,0.111218,0.451956,0.24805,0.953136,0.684031,0.732919,0.568491,0.215666,0.652956,0.0618187,0.626337,0.143934,0.032739,0.848516,0.40426,0.517082,0.117316,0.903378,0.876395,0.397446,0.513422,0.398732,0.310864,0.546066,0.277783,0.0490748,0.639839,0.608152,0.768132,0.726131,0.396441,0.383138,0.25935,0.438096,0.119327,0.241232,0.729773,0.2767,0.292802,0.840485,0.782797,0.89159,0.732147,0.474853,0.406577,0.409761,0.106925,0.976015,0.748953,0.539998,0.533515,0.345304,0.963862,0.217089,0.236886,0.337359,0.0992662,0.524824,0.541,0.867,0.0145851,0.88569,0.586034,0.623344,0.502614,0.974466,0.277257,0.391138,0.49975,0.364219,0.430912,0.0315426,0.624456,0.212458,0.155473,0.80523,0.351429,0.951668,0.261216,0.632175,0.611484,0.319198,0.741791,0.563791,0.122078,0.201788,0.907124,0.192274,0.649712,0.880136,0.611292,0.439333,0.947763,0.0812271,0.308472,0.570149,0.649002,0.0112697,0.224984,0.678201,0.556187,0.0338764,0.770316,0.809713,0.5698,0.188592,0.356082,0.0469275,0.650152,0.992212,0.946209,0.459701,0.942003,0.0467476,0.219619,0.329941,0.196321,0.754295,0.156043,0.639805,0.910821,0.916958,0.493113,0.5642,0.0365019,0.0852133,0.0779713,0.383928,0.18598,0.377726,0.491352,0.609024,0.249689,0.980494,0.0600635,0.624479,0.65781,0.0320129,0.0099569,0.370528,0.812206,0.667263,0.385492,0.335468,0.0571975,0.963005,0.300921,0.251508,0.0612746,0.408552,0.553931,0.369396,0.114324,0.441059,0.8021,0.136586,0.687555,0.607515,0.928826,0.913232,0.38173,0.722589,0.719175,0.921723,0.0765496,0.174413,0.994942,0.569124,0.276815,0.977413,0.826143,0.55828,0.992745,0.275868,0.217621,0.518008,0.997304,0.172261,0.252639,0.647096,0.526882,0.195036,0.450382,0.969374,0.963993,0.845259,0.0077849,0.813959,0.339985,0.0927199,0.561165,0.0976872,0.467424,0.424023,0.948133,0.687377,0.349054,0.259592,0.0189265,0.630073,0.876169,0.922967,0.869738,0.351566,0.998194,0.849613,0.589501,0.935825,0.689765,0.0177574,0.0135853,0.146359,0.186339,0.683857,0.122679,0.89025,0.598754,0.460525,0.626199,0.346184,0.916982,0.973149,0.0364188,0.52059,0.103633,0.656888,0.715055,0.372435,0.168527,0.389278,0.120628,0.437693,0.917571,0.109469,0.987557,0.0184562,0.360394,0.0616139,0.411996,0.951099,0.738989,0.534968,0.75443,0.771516,0.941226,0.137855,0.170634,0.483134,0.427888,0.0920518,0.318966,0.4942,0.325562,0.550316,0.900726,0.619996,0.922948,0.953597,0.919492,0.523041,0.457365,0.635402,0.75464,0.857459,0.299028,0.00274056,0.139392,0.854964,0.55409,0.452775,0.0612462,0.276135,0.93409,0.420431,0.659252,0.102001,0.85714,0.422856,0.733617,0.789575,0.216294,0.925376,0.122375,0.649641,0.752829,0.642016,0.991281,0.620377,0.513382,0.898971,0.142302,0.79995,0.0952058,0.623815,0.395289,0.311606,0.476433,0.777745,0.449569,0.0591461,0.114111,0.498294,0.0527554,0.318217,0.659432,0.922794,0.607157,0.68774,0.661664,0.0172414,0.700035,0.961673,0.458009,0.277061,0.111981,0.545096,0.415719,0.301558,0.722395,0.743188,0.85443,0.0376869,0.558764,0.834911,0.650515,0.302237,0.0984297,0.750799,0.780053,0.179512,0.536948,0.954436,|0.192553,0.411156,0.697335,0.30558,0.773599,0.815533,0.511222,0.918618,0.567826,0.175266,0.394792,0.46694,0.705717,0.98383,0.0947797,0.330773,0.792781,0.523824,0.421731,0.0489313,0.378785,0.948873,0.411293,0.124358,0.988124,0.384337,0.315531,0.346353,0.308286,0.187274,0.0592712,0.923749,0.546755,0.00679588,0.0540711,0.745323,0.150568,0.361571,0.74814,0.326936,0.645952,0.136793,0.814332,0.530462,0.249732,0.205457,0.510829,0.0169083,0.565583,0.593401,0.37278,0.399926,0.658216,0.457422,0.667441,0.0600984,0.244552,0.6347,0.188255,0.221482,0.618776,0.792571,0.990208,0.776183,0.788216,0.529704,0.0386978,0.0825319,0.393816,0.94075,0.259711,0.73062,0.374313,0.561225,0.499752,0.343715,0.267152,0.31574,0.654671,0.635373,0.53376,0.580316,0.932955,0.42453,0.253985,0.286025,0.139454,0.448085,0.572177,0.697197,0.140914,0.0977571,0.48695,0.58794,0.989114,0.41247,0.431443,0.627071,0.156309,0.94603,0.841433,0.0849445,0.408271,0.369233,0.932933,0.243949,0.870539,0.725513,0.700708,0.875993,0.0582003,0.770803,0.58348,0.671816,0.615321,0.654806,0.0699518,0.738376,0.877808,0.937742,0.509012,0.0316102,0.539408,0.991475,0.279631,0.902529,0.418747,0.346456,0.402976,0.33524,0.449999,0.102001,0.762306,0.976939,0.555468,0.238565,0.220742,0.213607,0.00312388,0.956988,0.423242,0.0550089,0.281165,0.850008,0.654051,0.164051,0.41728,0.0910246,0.712369,0.458847,0.756421,0.232314,0.994569,0.384429,0.207178,0.902891,0.67863,0.0105544,0.150271,0.267361,0.855592,0.749381,0.170012,0.328024,0.22896,0.532777,0.0952326,0.185425,0.833056,0.477046,0.0271029,0.228346,0.959737,0.614123,0.209993,0.561183,0.582315,0.931036,0.602173,0.634535,0.512851,0.529332,0.463164,0.547503,0.361248,0.749377,0.943999,0.495992,0.846036,0.225159,0.287185,0.520021,0.0891865,0.864988,0.855952,0.365486,0.44341,0.843955,0.0623903,0.769211,0.558971,0.103359,0.414155,0.873119,0.0989287,0.0745518,0.383189,0.624178,0.341968,0.696188,0.42237,0.0248112,0.364438,0.800739,0.421211,0.626676,0.852339,0.682803,0.549078,0.276668,0.59855,0.200777,0.90672,0.566708,0.335972,0.828964,0.61606,0.238407,0.122875,0.366807,0.944237,0.715745,0.837821,0.184532,0.570204,0.121039,0.441548,0.578585,0.887473,0.559546,0.110205,0.449726,0.823874,0.765093,0.479928,0.677187,0.527209,0.488591,0.760835,0.714047,0.115714,0.325264,0.351105,0.258283,0.797926,0.516624,0.506524,0.811115,0.161384,0.186449,0.527793,0.455928,0.721328,0.494547,0.334959,0.996857,0.941937,0.872082,0.899521,0.736262,0.327074,0.563834,0.75069,0.346166,0.907835,0.807998,0.264634,0.270903,0.767887,0.396708,0.83541,0.73408,0.0845858,0.477022,0.512587,0.797296,0.75151,0.562136,0.691807,0.164241,0.451116,0.00403994,0.344998,0.868277,0.59955,0.0967913,0.953161,0.267802,0.378833,0.831956,0.033061,0.443437,0.834517,0.4477,0.890128,0.492822,0.319849,0.2797,0.796552,0.772272,0.222403,0.805226,0.0544479,0.626276,0.777177,0.59498,0.682172,0.352777,0.72755,0.913548,0.131342,0.929376,0.326445,0.0861627,0.705152,0.395066,0.250286,0.946651,0.307974,0.646112,0.619701,0.809943,0.982969,0.78503,0.717708,0.647817,0.605965,0.962689,0.861754,0.613903,0.792522,0.853355,0.834013,0.161756,0.496598,0.461146,0.635355,0.336172,0.899711,0.662969,0.94667,0.731921,0.954112,0.52101,0.0912272,0.339811,0.00108248,0.561585,0.0610306,0.372668,0.917245,0.260386,0.283991,0.617168,0.722955,0.936231,0.99672,0.051387,0.101518,0.198684,0.531692,0.993734,0.243179,0.658916,0.81298,0.0279964,0.863184,0.562836,0.409342,0.605487,0.361641,0.919689,0.681802,0.141262,0.751974,0.80381,0.829258,0.0399343,0.000620544,0.997202,0.150594,0.820981,0.0842198,0.54463,0.207824,0.928451,0.838111,0.762469,0.394917,0.515366,0.0396395,0.945943,0.0828891,0.3145,0.642031,0.872459,0.945114,0.797907,0.848548,0.959759,0.12861,0.178991,0.509733,0.612536,0.265498,0.987248,0.424327,0.253468,0.115836,0.609936,0.492657,0.475483,0.804926,0.0156966,0.769855,0.164558,0.669017,0.713076,0.365071,0.95408,0.401462,0.437213,0.899255,0.0502121,0.318296,0.959936,0.0149328,0.875951,0.24216,0.90921,0.396863,0.891607,0.262862,0.400662,0.918483,0.29775,0.702948,0.291829,0.249589,0.762408,0.647727,0.298719,0.395165,0.255449,0.135926,0.900438,0.983974,0.367022,0.979305,0.946867,0.434401,0.105916,0.377948,0.478293,0.755257,0.579073,0.625538,0.238823,0.486259,0.237313,0.00329673,0.701442,0.791159,0.672194,0.986002,0.735773,0.230188,0.486044,0.0874969,0.053746,0.287441,0.813609,0.928414,0.0661672,0.76289,0.165045,0.537762,0.0775395,0.861365,0.947167,0.142476,0.947315,0.852371,0.896547,0.434429,0.538752,0.92255,0.932755,0.460658,0.671105,0.384826,0.621202,0.582314,0.599267,0.450938,0.0673935,0.71535,0.820305,0.026445,0.59245,0.703109,0.676356,0.620435,0.383331,0.836223,0.325745,0.633077,0.439027,0.574008,0.815157,0.818596,0.503651,0.777362,0.64251,0.65405,0.865539,0.20524,0.323483,0.471459,0.991681,0.465327,0.2404,0.192807,0.273437,0.927964,0.0622734,0.918015,0.373411,0.913327,0.696912,0.245439,0.258207,0.381739,0.419372,0.719899,0.448117,0.4923,0.190666,0.764454,0.71116,0.750748,0.733594,0.819488,0.109823,0.166806,0.583916,0.132253,0.999744,0.218552,0.760974,0.655846,0.870895,0.262959,0.911988,0.281329,0.228706,0.107061,0.438773,0.335583,0.946405,0.832065,0.751572,0.196438,0.276076,0.475731,0.337334,0.50929,0.933638,0.61527,0.21218,0.127508,0.100886,0.475645,0.364228,0.237787,0.326781,0.549268,0.595866,0.593439,0.911356,0.541941,0.959149,0.726629,0.584826,0.0550703,0.740419,0.255193,0.457057,0.423293,0.0788236,0.533512,0.986952,0.31991,0.163731,0.847811,0.443743,0.0538487,0.740883,0.0267939,0.65599,0.0503338,0.746406,0.441559,0.501898,0.215144,0.638278,0.0710817,0.151243,0.958849,0.982253,0.786413,0.164943,0.0304686,0.148937,0.685208,0.975758,0.172696,0.033692,0.801196,0.0586496,0.782807,0.737519,0.449481,0.987322,0.221822,0.190663,0.883643,0.67993,0.655195,0.326587,0.820722,0.595081,0.729178,0.202963,0.319016,0.327353,0.504273,0.835779,0.198436,0.158831,0.204787,0.724131,0.539743,0.790129,0.989261,0.520165,0.715042,0.347805,0.0192915,0.286626,0.942029,0.473152,0.796102,0.661097,0.448879,0.298805,0.30261,0.216972,0.603337,0.6146,0.224939,0.549476,0.226014,0.728846,0.317955,0.704577,0.388862,0.441003,0.595849,0.516481,0.206075,0.309763,0.176543,0.966628,0.138054,0.0290389,0.195754,0.411475,0.0409459,0.891531,0.52995,0.931743,0.861915,0.732476,0.601316,0.361815,0.297655,0.717875,0.142603,0.497916,0.904409,0.251071,0.0417108,0.00907713,0.734948,0.680054,0.0115141,0.531105,0.983185,0.049207,0.577344,0.276714,0.0940484,0.616296,0.667429,0.0487036,0.660139,0.376332,0.705526,0.0449332,0.97303,0.559011,0.076584,0.890118,0.938806,0.503631,0.159655,0.262795,0.0481656,0.408701,0.536032,0.193256,0.0145526,0.478299,0.586117,0.996578,0.30914,0.921031,0.963121,0.333931,0.750779,0.202405,0.82745,0.0656396,0.0536499,0.50289,0.541018,0.955928,0.313905,0.994118,0.962992,0.632703,0.642607,0.54453,0.0570874,0.117397,0.0761365,0.381982,0.723114,0.132064,0.0882644,0.20777,0.0631672,0.935599,0.215729,0.398712,0.713362,0.468025,0.0713311,0.000429332,0.158872,0.441721,0.42352,0.158494,0.340103,0.826504,0.655494,0.17913,0.663159,0.587974,0.115669,0.418858,0.71348,0.136795,0.715458,0.788702,0.16044,0.24144,0.201619,0.835994,0.42777,0.568352,0.408671,0.21947,0.9264,0.421497,0.870479,0.752278,0.310959,0.882379,0.72983,0.861763,0.427473,0.421664,0.78743,0.872226,0.653485,0.448906,0.313583,0.801435,0.362974,0.196498,0.665538,0.944351,0.600322,0.0211654,0.377034,0.285203,0.819235,0.272936,0.184519,0.682301,0.561098,0.699659,0.858225,0.448397,0.0795534,0.823871,0.622614,0.692179,0.0194329,0.953962,0.80221,0.464072,0.925891,0.717246,0.464641,0.0052104,0.791148,0.310648,0.230485,0.288761,0.308854,0.569211,0.60783,0.170237,0.637406,0.669587,0.641774,0.841507,0.464448,0.163293,0.192055,0.940144,0.122712,0.729288,0.679387,0.445871,0.698455,0.360789,0.148851,0.15679,0.816265,0.741568,0.142251,0.464073,0.965206,0.253001,0.482171,0.881683,0.922611,0.530018,0.938822,0.626204,0.397907,0.544713,0.00363523,0.437038,0.943428,0.192328,0.838274,0.384938,0.0594847,0.326252,0.170541,0.304956,0.453443,0.959665,0.361699,0.401541,0.763004,0.11375,0.963533,0.22114,0.831939,0.312704,0.45629,0.267436,0.841542,0.366824,0.0755268,0.0910408,0.967122,0.558969,0.781168,0.908569,0.98808,0.178265,0.552355,0.528578,0.881742,0.165359,0.365681,0.0860924,0.608358,0.349143,0.191991,0.843169,0.931823,0.635997,0.235651,0.825793,0.357597,0.617516,0.813784,0.342713,0.471543,0.689602,0.0240434,0.878112,0.631631,0.954315,0.0921052,0.0315306,0.650446,0.666806,0.133829,0.969565,0.429004,0.0329541,0.0967077,0.636218,0.700671,0.638049,0.582372,0.148611,0.683411,0.432882,0.456494,0.240972,0.0893482,0.702443,0.359019,0.706486,0.709468,0.669777,0.692299,0.367783,0.823131,0.435035,0.625037,0.64655,0.780847,0.0893301,0.407079,0.00850284,0.788909,0.584191,0.466389,0.317269,0.116951,0.870062,0.190502,0.363349,0.997457,0.0272046,0.500824,0.71447,0.0964744,0.0825869,0.0511319,0.669576,0.96279,0.171792,0.660637,0.439189,0.901772,0.627491,0.863631,0.446865,0.121597,0.534199,0.876333,0.434783,0.901923,0.873573,0.984492,0.95546,0.491499,0.840342,|0.996651,0.370726,0.0618628,0.865645,0.369745,0.647456,0.319925,0.77004,0.83146,0.697209,0.650527,0.747454,0.0625576,0.0091967,0.210406,0.388086,0.499866,0.379492,0.810718,0.562179,0.276664,0.354439,0.666742,0.204558,0.652028,0.157781,0.220867,0.646087,0.547865,0.206056,0.576056,0.805136,0.0963345,0.811708,0.612408,0.133395,0.247199,0.897407,0.53183,0.399474,0.535878,0.59361,0.405705,0.795983,0.732111,0.85951,0.804539,0.151192,0.13351,0.493497,0.200269,0.884842,0.862172,0.241922,0.357701,0.0623856,0.765573,0.785401,0.803208,0.861704,0.315519,0.577921,0.872124,0.172673,0.445876,0.707043,0.0925385,0.443288,0.0603549,0.00495982,0.272272,0.179262,0.663352,0.0325063,0.0637209,0.373013,0.229235,0.971954,0.650923,0.965384,0.332261,0.765268,0.927538,0.841107,0.669616,0.770132,0.0927666,0.390725,0.687533,0.104639,0.586131,0.791947,0.245574,0.828421,0.49049,0.578383,0.492636,0.952813,0.685929,0.048947,0.901036,0.70423,0.288194,0.0604758,0.0568151,0.398186,0.953474,0.255656,0.536939,0.646721,0.520589,0.85729,0.604425,0.00916147,0.591115,0.108103,0.0828468,0.170967,0.879514,0.873226,0.545131,0.358825,0.990404,0.419181,0.0551268,0.12149,0.6962,0.29319,0.8828,0.174941,0.201337,0.501691,0.129083,0.64792,0.377015,0.281767,0.723287,0.7618,0.912151,0.87005,0.305902,0.807705,0.452745,0.025532,0.129357,0.369512,0.477891,0.934568,0.348433,0.236774,0.889037,0.160174,0.493152,0.356367,0.931299,0.447498,0.425727,0.406782,0.201092,0.498997,0.111368,0.151291,0.00330871,0.22412,0.211197,0.689693,0.918798,0.591227,0.950623,0.72841,0.204811,0.0114776,0.997977,0.124807,0.394617,0.759346,0.892003,0.45393,0.667357,0.071892,0.63204,0.544532,0.58749,0.603613,0.640752,0.936996,0.458034,0.169531,0.586431,0.664092,0.470884,0.847261,0.993214,0.985431,0.26459,0.238461,0.289176,0.699262,0.249374,0.0695965,0.950251,0.0687112,0.679818,0.605314,0.0041905,0.0784047,0.154444,0.0315438,0.0763581,0.389615,0.192806,0.71077,0.400259,0.249957,0.275691,0.253588,0.686619,0.603416,0.0154232,0.999473,0.860109,0.8185,0.683246,0.668824,0.202326,0.350056,0.576847,0.0202383,0.463108,0.330753,0.899589,0.910102,0.100089,0.482683,0.642603,0.969469,0.119632,0.537703,0.0579129,0.217651,0.768765,0.17949,0.573687,0.259673,0.736371,0.622387,0.400976,0.442507,0.232427,0.194757,0.837733,0.581225,0.926231,0.409774,0.518791,0.504177,0.0762752,0.617437,0.411736,0.0114529,0.770726,0.444823,0.851077,0.946191,0.0840364,0.0633014,0.345224,0.90706,0.821607,0.628054,0.10464,0.350686,0.322907,0.65129,0.943653,0.790082,0.496753,0.594118,0.543149,0.787293,0.857218,0.190632,0.647302,0.00900722,0.113893,0.464072,0.07404,0.102546,0.287164,0.701806,0.36257,0.575116,0.146968,0.388518,0.304063,0.595426,0.0383922,0.907723,0.786905,0.0279104,0.186403,0.605269,0.625707,0.186941,0.61902,0.114331,0.562892,0.423798,0.431776,0.191683,0.975157,0.161747,0.400176,0.354596,0.225292,0.36733,0.835388,0.552975,0.821589,0.11503,0.273916,0.39968,0.534682,0.976549,0.226081,0.616805,0.778339,0.100987,0.946138,0.54041,0.428978,0.768047,0.334646,0.631303,0.298589,0.792715,0.490418,0.376422,0.832348,0.199541,0.372308,0.320204,0.94914,0.264991,0.42804,0.491464,0.977688,0.923431,0.473992,0.928529,0.931659,0.328724,0.0354847,0.993962,0.96941,0.232018,0.384612,0.414006,0.608719,0.824398,0.124783,0.876874,0.207155,0.96237,0.123137,0.783209,0.552588,0.985938,0.754666,0.515701,0.357035,0.599021,0.824578,0.359455,0.281016,0.1331,0.709014,0.802281,0.852313,0.802567,0.811927,0.109755,0.180689,0.204381,0.992694,0.266207,0.120381,0.287429,0.353893,0.355097,0.239341,0.837968,0.523602,0.896721,0.150902,0.838269,0.393763,0.101906,0.152209,0.230479,0.919757,0.136978,0.0334885,0.751653,0.269863,0.739212,0.359327,0.341219,0.843193,0.515567,0.974723,0.866775,0.499255,0.0214897,0.521924,0.813284,0.561026,0.216949,0.994218,0.668806,0.833092,0.857655,0.0509289,0.24641,0.326452,0.933507,0.148631,0.132329,0.738117,0.837368,0.697934,0.144568,0.816848,0.866465,0.591717,0.875904,0.989945,0.16546,0.595689,0.836643,0.620903,0.515109,0.495397,0.394602,0.919473,0.655631,0.25246,0.182094,0.242734,0.730206,0.131463,0.753965,0.484258,0.63361,0.402788,0.772274,0.765676,0.137545,0.214297,0.224692,0.0209882,0.412593,0.840785,0.723903,0.609662,0.742849,0.54254,0.171607,0.251281,0.40926,0.640701,0.854622,0.782957,0.43871,0.0240157,0.694882,0.347721,0.896307,0.438337,0.378476,0.997385,0.380059,0.0671532,0.443421,0.532165,0.525849,0.699946,0.889193,0.986059,0.730587,0.60388,0.122483,0.877554,0.735004,0.294929,0.602332,0.113411,0.0567572,0.900089,0.0958092,0.131812,0.152525,0.169479,0.423161,0.291372,0.287659,0.78269,0.992643,0.108111,0.84009,0.202884,0.73073,0.945655,0.958344,0.326846,0.490186,0.407668,0.852334,0.881333,0.919,0.206896,0.838463,0.0277951,0.369657,0.800481,0.530774,0.462157,0.219657,0.357806,0.337748,0.262752,0.330035,0.295774,0.739412,0.48904,0.579834,0.797231,0.954007,0.202493,0.388005,0.0164201,0.70732,0.532997,0.758361,0.766769,0.499083,0.600038,0.880558,0.068285,0.580989,0.412646,0.295144,0.114641,0.522244,0.93574,0.963488,0.655342,0.778696,0.853818,0.0996711,0.144883,0.635925,0.182494,0.230584,0.202461,0.384062,0.719822,0.5513,0.279994,0.832987,0.249517,0.158703,0.672792,0.332359,0.521325,0.615751,0.268655,0.067711,0.342274,0.023486,0.120817,0.138812,0.705247,0.194607,0.259668,0.625978,0.643547,0.467306,0.895342,0.777681,0.413459,0.575189,0.702255,0.078168,0.642445,0.207095,0.631455,0.761792,0.640032,0.879482,0.327804,0.143425,0.29552,0.231107,0.437466,0.909804,0.472872,0.548254,0.400941,0.334585,0.760586,0.432617,0.769046,0.764222,0.570727,0.775555,0.329849,0.202906,0.860441,0.988291,0.852389,0.50464,0.777621,0.471668,0.124027,0.00964516,0.98724,0.536172,0.0185562,0.687645,0.279543,0.155872,0.777089,0.500093,0.882173,0.436256,0.575204,0.128332,0.190114,0.295979,0.58787,0.16629,0.882804,0.209755,0.622922,0.941687,0.0547616,0.950219,0.492402,0.83954,0.0296641,0.315256,0.60113,0.725293,0.0112236,0.0120498,0.740003,0.281164,0.301386,0.638278,0.795796,0.822743,0.868496,0.32492,0.580488,0.825769,0.0400803,0.32426,0.655665,0.226592,0.819584,0.0323579,0.816819,0.22658,0.736495,0.401107,0.903334,0.0653237,0.25183,0.308653,0.984373,0.301632,0.0348965,0.703905,0.0462006,0.761202,0.133196,0.489034,0.533249,0.662884,0.796438,0.976509,0.505174,0.752385,0.0810994,0.218082,0.429511,0.845921,0.403649,0.619877,0.0496594,0.00866568,0.918602,0.820414,0.288105,0.190062,0.7406,0.4998,0.639848,0.181912,0.252928,0.548212,0.652455,0.033412,0.30601,0.77829,0.113246,0.905146,0.0359483,0.42252,0.466767,0.663404,0.602537,0.79405,0.753863,0.691261,0.348354,0.840081,0.282753,0.2464,0.494633,0.606037,0.573096,0.679558,0.629558,0.324804,0.685884,0.406279,0.258071,0.559712,0.33204,0.898758,0.901471,0.051165,0.0553291,0.312147,0.766391,0.00115323,0.920795,0.796406,0.565323,0.540407,0.729798,0.732879,0.265337,0.19839,0.980893,0.938692,0.553257,0.976708,0.166248,0.918688,0.508199,0.349724,0.978123,0.392533,0.0830789,0.628212,0.394125,0.0914167,0.102935,0.54282,0.247857,0.887606,0.0961146,0.117538,0.316483,0.950697,0.800555,0.731699,0.427616,0.793827,0.759643,0.282391,0.996435,0.0246608,0.0479913,0.989547,0.339394,0.670733,0.852147,0.515365,0.0348015,0.73183,0.775722,0.798293,0.404602,0.723585,0.154281,0.61603,0.477863,0.698606,0.867222,0.878191,0.202905,0.363073,0.791134,0.311735,0.950676,0.186306,0.312256,0.155649,0.859284,0.599839,0.477449,0.963314,0.203544,0.908505,0.0320029,0.258431,0.381294,0.827454,0.154994,0.766306,0.647153,0.833469,0.733237,0.104598,0.424563,0.0622655,0.380297,0.247238,0.605356,0.312298,0.69483,0.606565,0.63881,0.624746,0.401209,0.947925,0.626332,0.99021,0.415366,0.00381464,0.695959,0.91337,0.40223,0.616639,0.681183,0.840394,0.43317,0.839198,0.882115,0.418948,0.138471,0.299623,0.645279,0.142456,0.982328,0.776985,0.584542,0.385946,0.956216,0.311025,0.43676,0.878687,0.775409,0.648018,0.613587,0.981309,0.406926,0.996758,0.175662,0.485662,0.261018,0.191296,0.875557,0.34979,0.400557,0.0433753,0.201432,0.72684,0.17257,0.308031,0.92775,0.584629,0.261173,0.225424,0.4863,0.909146,0.216044,0.374882,0.448781,0.501432,0.890198,0.0441483,0.642004,0.604241,0.867963,0.776348,0.208622,0.100122,0.752329,0.107921,0.493998,0.878045,0.235024,0.246713,0.0543365,0.0921063,0.10416,0.479754,0.103423,0.964111,0.446505,0.353891,0.191796,0.540201,0.118741,0.561559,0.618895,0.921379,0.00877208,0.738227,0.746401,0.373091,0.240651,0.723015,0.945509,0.158649,0.0687681,0.396949,0.828583,0.147143,0.315323,0.45535,0.129313,0.946263,0.885535,0.149266,0.779498,0.543514,0.0527835,0.788906,0.42118,0.718086,0.733511,0.259554,0.259479,0.774403,0.993544,0.976573,0.2698,0.266836,0.573841,0.252188,0.00813973,0.222085,0.773679,0.220369,0.390679,0.851976,0.721842,0.228657,0.178865,0.12021,0.314513,0.406718,0.0374933,0.149437,0.388938,0.1139,0.673982,0.685506,0.921896,0.889781,0.65604,0.115155,0.370996,0.589038,0.515739,0.8946,0.65477,0.505954,0.676858,0.361566,0.627556,0.817151,0.981804,0.264916,0.532938,0.554563,0.189244,0.903376,0.961893,0.514102,0.751938,0.550703,0.427914,0.490676,|0.125387,0.900921,0.624517,0.698674,0.940498,0.774929,0.285312,0.278307,0.874075,0.4273,0.9663,0.57924,0.0459217,0.242452,0.230234,0.729908,0.814824,0.134642,0.978187,0.57965,0.626948,0.109654,0.0319608,0.82252,0.235397,0.585627,0.625794,0.273924,0.436441,0.965619,0.285549,0.897038,0.0915883,0.949151,0.275656,0.691977,0.61077,0.798936,0.756477,0.0634015,0.979336,0.634929,0.228452,0.488638,0.0683003,0.270979,0.452884,0.74848,0.308838,0.49389,0.360699,0.868618,0.56061,0.632138,0.695878,0.767982,0.876158,0.360758,0.390381,0.752842,0.0505124,0.708643,0.781538,0.812089,0.63717,0.156109,0.926802,0.924255,0.842386,0.93448,0.977724,0.309999,0.0326533,0.127205,0.0364016,0.426947,0.725038,0.901823,0.636543,0.108864,0.621378,0.174556,0.425408,0.542975,0.176575,0.973977,0.268981,0.164456,0.356935,0.530858,0.26777,0.556094,0.915659,0.258425,0.10953,0.0265467,0.52558,0.0629366,0.732938,0.289618,0.914104,0.964903,0.347681,0.215957,0.413471,0.516482,0.5723,0.0822359,0.581981,0.930658,0.205229,0.22686,0.445343,0.712765,0.479833,0.27318,0.0710393,0.798393,0.0545374,0.657206,0.990627,0.44674,0.89117,0.276533,0.402666,0.950203,0.507394,0.85497,0.742054,0.728479,0.445606,0.806774,0.718988,0.661784,0.294617,0.401733,0.59065,0.904563,0.146654,0.626956,0.689317,0.184108,0.765277,0.451784,0.510499,0.996931,0.492638,0.537483,0.212042,0.421781,0.450686,0.100834,0.212142,0.577512,0.783051,0.376175,0.44778,0.681369,0.0116162,0.770599,0.886015,0.788378,0.17535,0.489643,0.897649,0.50813,0.484617,0.192389,0.221169,0.54938,0.638364,0.85933,0.0811276,0.0128649,0.235908,0.812396,0.944338,0.444259,0.286597,0.884702,0.246531,0.858307,0.935284,0.53923,0.353595,0.810462,0.106981,0.875412,0.0336349,0.05678,0.866148,0.698495,0.0922311,0.766993,0.909615,0.93443,0.418696,0.0474051,0.316895,0.790869,0.0260014,0.566319,0.493096,0.361604,0.452406,0.0494642,0.562226,0.921003,0.668934,0.98095,0.258655,0.245151,0.626761,0.992625,0.220334,0.0430013,0.537803,0.862435,0.942946,0.181158,0.410984,0.49117,0.274817,0.579343,0.113746,0.436547,0.0967752,0.732188,0.572092,0.528909,0.827249,0.508484,0.313937,0.297129,0.64675,0.702273,0.999791,0.339983,0.848984,0.675049,0.342025,0.287285,0.901508,0.950644,0.254389,0.89484,0.867506,0.945391,0.364706,0.900231,0.806866,0.510417,0.873857,0.674085,0.946169,0.448032,0.688108,0.740692,0.551168,0.344039,0.0578629,0.922836,0.988903,0.536711,0.826697,0.811579,0.875405,0.215322,0.386025,0.620673,0.32091,0.57362,0.219801,0.403633,0.503678,0.239441,0.365646,0.654059,0.415822,0.578491,0.872582,0.143825,0.338878,0.0408721,0.399353,0.998544,0.252316,0.642328,0.808587,0.215973,0.842685,0.0641142,0.614772,0.836622,0.242982,0.599634,0.851735,0.916865,0.114044,0.869179,0.331553,0.128951,0.777817,0.940235,0.275496,0.341171,0.346366,0.693061,0.728706,0.200105,0.337101,0.586128,0.166479,0.569288,0.227013,0.914546,0.763025,0.508329,0.467973,0.710247,0.661396,0.277677,0.275666,0.476702,0.747216,0.0483984,0.199515,0.741081,0.359545,0.661933,0.753481,0.856433,0.632319,0.759568,0.188345,0.762061,0.128347,0.0352621,0.663754,0.799253,0.0866026,0.63718,0.12553,0.922341,0.351383,0.133894,0.9119,0.71474,0.953824,0.226326,0.293457,0.102709,0.213114,0.226731,0.0342693,0.0544241,0.152915,0.864034,0.909232,0.273612,0.941006,0.404744,0.122006,0.583896,0.365834,0.654501,0.916762,0.306414,0.912628,0.968336,0.681757,0.11751,0.191148,0.841374,0.122332,0.012767,0.58965,0.24414,0.634837,0.0622013,0.18094,0.0387323,0.748931,0.956781,0.247076,0.654379,0.609344,0.496464,0.125629,0.936813,0.061879,0.310755,0.878981,0.147843,0.177617,0.540634,0.951226,0.909693,0.825841,0.98768,0.421434,0.168816,0.261207,0.0319938,0.170553,0.326141,0.483009,0.895903,0.890899,0.70331,0.98022,0.870552,0.723079,0.762532,0.877475,0.674036,0.721786,0.898456,0.603571,0.597885,0.505425,0.488618,0.98986,0.087668,0.848282,0.24594,0.980777,0.385234,0.561274,0.391347,0.987915,0.683759,0.444535,0.753314,0.25365,0.919216,0.655173,0.151849,0.543457,0.0848247,0.60887,0.0992424,0.615548,0.247172,0.289668,0.224043,0.723084,0.655703,0.0810339,0.392387,0.661263,0.456006,0.51472,0.351678,0.560881,0.181629,0.0882124,0.946056,0.535252,0.730495,0.890282,0.631032,0.346747,0.847941,0.168628,0.783808,0.59185,0.858916,0.0361515,0.325767,0.557156,0.461832,0.962969,0.469001,0.000958502,0.635323,0.36034,0.302805,0.69179,0.788442,0.551669,0.269183,0.563721,0.722248,0.889602,0.44794,0.413939,0.411619,0.534285,0.389649,0.109284,0.622243,0.23262,0.0593859,0.319954,0.417922,0.69585,0.503088,0.556089,0.726157,0.497025,0.0435039,0.198129,0.960725,0.475109,0.551572,0.758767,0.570671,0.952153,0.458319,0.14777,0.757195,0.682856,0.664154,0.828693,0.306726,0.287344,0.465472,0.24223,0.775747,0.460656,0.840806,0.379018,0.58457,0.53717,0.31768,0.264164,0.662115,0.792594,0.607639,0.172001,0.685891,0.220419,0.39986,0.99758,0.583396,0.0768226,0.195785,0.644228,0.645835,0.163336,0.128052,0.657147,0.341375,0.476072,0.192266,0.487194,0.61055,0.883542,0.169033,0.0801487,0.620037,0.125425,0.486636,0.488534,0.485139,0.977399,0.0492206,0.160427,0.993293,0.255303,0.555385,0.713654,0.188712,0.00722748,0.865718,0.269006,0.619421,0.723469,0.474012,0.634073,0.525349,0.25237,0.467426,0.554945,0.0254564,0.115035,0.402496,0.477015,0.706262,0.968464,0.582865,0.690013,0.973466,0.379034,0.0439249,0.331095,0.318088,0.35895,0.130316,0.664114,0.395368,0.244331,0.922416,0.980237,0.745683,0.0977967,0.441172,0.157866,0.461807,0.292926,0.977743,0.698597,0.549655,0.911533,0.739406,0.849252,0.223414,0.0846566,0.712564,0.951712,0.212552,0.887814,0.827757,0.37618,0.247363,0.646873,0.197412,0.428166,0.357529,0.686891,0.383052,0.489843,0.162243,0.812885,0.82521,0.0762842,0.749497,0.155866,0.756425,0.140374,0.183442,0.495724,0.347323,0.672336,0.326583,0.665077,0.921849,0.137977,0.223814,0.49529,0.625501,0.507733,0.00945228,0.974641,0.0976756,0.926564,0.521633,0.37194,0.878262,0.97292,0.282753,0.651362,0.0822489,0.92192,0.614354,0.688431,0.783425,0.94412,0.274251,0.707449,0.397765,0.0607172,0.146519,0.775916,0.710768,0.89086,0.693391,0.255572,0.32293,0.0532854,0.346663,0.978988,0.910622,0.187877,0.838722,0.96253,0.201058,0.549193,0.505961,0.322668,0.197738,0.676133,0.777551,0.0376067,0.213972,0.656205,0.353997,0.260844,0.367662,0.313811,0.440658,0.466445,0.446015,0.954068,0.76794,0.105284,0.630871,0.81343,0.640355,0.719747,0.790131,0.43725,0.124772,0.561305,0.48177,0.460565,0.737253,0.285224,0.678494,0.0751571,0.66066,0.120938,0.243487,0.124601,0.438183,0.411427,0.212778,0.957612,0.396094,0.288693,0.624152,0.634955,0.0474721,0.186342,0.970912,0.037336,0.284221,0.741038,0.3387,0.702192,0.689146,0.321159,0.69963,0.136515,0.610641,0.639835,0.560915,0.678008,0.89372,0.496311,0.00763172,0.717769,0.686531,0.301623,0.654918,0.336015,0.445871,0.686233,0.534547,0.806277,0.744347,0.750377,0.656993,0.30962,0.72117,0.648512,0.524658,0.09499,0.952816,0.84564,0.707981,0.984948,0.511274,0.552033,0.871451,0.894317,0.551998,0.433024,0.924116,0.464416,0.701105,0.457868,0.643279,0.320179,0.934015,0.896049,0.76136,0.88491,0.959695,0.929036,0.871692,0.77766,0.1129,0.614139,0.154389,0.488355,0.339834,0.544013,0.264888,0.0565095,0.625719,0.406171,0.179374,0.685315,0.429136,0.247777,0.1218,0.495336,0.629949,0.419572,0.196862,0.965411,0.226209,0.0250959,0.40049,0.770947,0.649579,0.282455,0.387409,0.77615,0.515629,0.217333,0.52523,0.0389714,0.407269,0.815917,0.524666,0.691966,0.678649,0.477925,0.749505,0.583981,0.247836,0.785908,0.47451,0.457929,0.0636094,0.710242,0.0961086,0.411742,0.98603,0.0492631,0.76945,0.0479534,0.177755,0.685757,0.600187,0.00889313,0.585422,0.408853,0.691403,0.036736,0.865984,0.887422,0.910606,0.192288,0.0595354,0.323837,0.842882,0.0814285,0.305436,0.387048,0.0122578,0.906137,0.579829,0.261917,0.00506866,0.768329,0.730072,0.0479844,0.142129,0.034139,0.477511,0.393998,0.594872,0.40742,0.222595,0.797311,0.538043,0.69774,0.204616,0.943181,0.513065,0.729943,0.585879,0.691721,0.606577,0.746162,0.436707,0.749131,0.760095,0.440735,0.509358,0.346272,0.909202,0.144292,0.442057,0.594388,0.321188,0.699576,0.483974,0.94131,0.986371,0.502822,0.115395,0.473791,0.330899,0.0827754,0.313529,0.417808,0.766362,0.75845,0.926984,0.951099,0.657314,0.703983,0.421849,0.877857,0.090816,0.295292,0.298267,0.144884,0.320596,0.403964,0.900698,0.152015,0.85579,0.212307,0.838766,0.588419,0.748163,0.0470759,0.682103,0.315424,0.429137,0.671094,0.211588,0.0294657,0.417672,0.250216,0.284476,0.967154,0.428587,0.208499,0.561077,0.788803,0.0742452,0.447947,0.0150598,0.732779,0.74537,0.286144,0.0322499,0.0614207,0.603496,0.229631,0.147949,0.959215,0.21949,0.726544,0.416338,0.477646,0.289854,0.182428,0.912321,0.117399,0.328281,0.899632,0.529164,0.0540486,0.958235,0.130678,0.682372,0.530394,0.657166,0.316068,0.149281,0.234488,0.894262,0.243137,0.386615,0.975094,0.0799807,0.914521,0.428662,0.933322,0.792833,0.899922,0.839052,0.468055,0.406509,0.260871,0.316012,0.633154,0.314855,0.0391775,0.194963,0.826786,0.564871,0.180363,0.865691,0.861716,0.698244,0.451592,0.210389,0.481479,0.657227,0.699975,0.412977,|0.153411,0.847397,0.765117,0.173969,0.189578,0.540532,0.946258,0.0799599,0.200648,0.173751,0.891925,0.522034,0.946664,0.774042,0.670719,0.0573337,0.482027,0.013605,0.262488,0.0439261,0.129912,0.0657148,0.741358,0.453262,0.132798,0.384364,0.472313,0.72011,0.215528,0.0634543,0.907971,0.00698578,0.902502,0.487052,0.855531,0.334105,0.786738,0.86221,0.255135,0.721547,0.271661,0.349805,0.280259,0.297214,0.636049,0.0831751,0.615135,0.670395,0.492493,0.589991,0.550989,0.895338,0.431035,0.217283,0.692423,0.600684,0.516418,0.796449,0.230229,0.826321,0.645491,0.799129,0.575285,0.0998768,0.156085,0.625092,0.825576,0.820811,0.643683,0.671057,0.512015,0.832217,0.401619,0.414152,0.610576,0.777206,0.130471,0.24111,0.349805,0.0177145,0.156355,0.490915,0.766219,0.98916,0.707769,0.691691,0.7557,0.976445,0.712732,0.880874,0.106061,0.941523,0.309758,0.412803,0.145756,0.590034,0.718085,0.635912,0.214082,0.371231,0.00147289,0.00860339,0.692972,0.41871,0.770179,0.0728227,0.0757927,0.441924,0.827771,0.424013,0.626125,0.837023,0.406939,0.223487,0.521597,0.12493,0.596755,0.507841,0.684876,0.0645357,0.026355,0.470467,0.441047,0.756595,0.402245,0.687932,0.851166,0.455066,0.819227,0.947186,0.933325,0.118157,0.665486,0.966623,0.896574,0.439662,0.0555106,0.706374,0.916412,0.0340285,0.219992,0.492309,0.361829,0.0403607,0.0780579,0.682213,0.86088,0.252287,0.731463,0.213728,0.441911,0.863033,0.843365,0.782309,0.76655,0.352359,0.825613,0.895304,0.959671,0.429703,0.257828,0.873734,0.811302,0.643085,0.788201,0.445617,0.711657,0.746245,0.953653,0.644109,0.146464,0.302662,0.45436,0.724083,0.39581,0.444041,0.96885,0.902459,0.528993,0.874698,0.143775,0.0608266,0.869926,0.921388,0.570591,0.867789,0.136799,0.297389,0.526826,0.929329,0.0538717,0.605387,0.00430334,0.112266,0.806727,0.759433,0.778081,0.191727,0.559641,0.25032,0.0593058,0.351496,0.0431402,0.769786,0.399443,0.805576,0.285739,0.938257,0.230469,0.238009,0.906427,0.0943309,6.96182e-05,0.540298,0.421387,0.451141,0.893589,0.758473,0.271362,0.725112,0.404858,0.94474,0.354581,0.846844,0.41875,0.352316,0.722205,0.0797105,0.623076,0.228008,0.718178,0.0723747,0.514874,0.112757,0.365482,0.208544,0.64426,0.114699,0.762109,0.707854,0.21378,0.677215,0.572867,0.83679,0.441587,0.512778,0.408662,0.230603,0.0654884,0.395905,0.719646,0.0539492,0.24478,0.289383,0.272349,0.301003,0.139056,0.547854,0.328791,0.278313,0.628872,0.101831,0.157124,0.299387,0.565704,0.87099,0.272027,0.79729,0.0397058,0.633615,0.26742,0.00676757,0.0153791,0.899672,0.781554,0.515338,0.272497,0.783123,0.669172,0.0649467,0.171753,0.651341,0.749372,0.143624,0.678426,0.415723,0.608527,0.138625,0.230026,0.902754,0.150674,0.44662,0.601658,0.929889,0.246486,0.407866,0.221427,0.962386,0.000204027,0.861998,0.181525,0.559428,0.863741,0.611928,0.0130005,0.0285224,0.367715,0.747661,0.27109,0.292718,0.642884,0.365675,0.0621455,0.519807,0.215883,0.0782298,0.600609,0.671278,0.613958,0.636591,0.259272,0.410956,0.551555,0.652347,0.37797,0.494138,0.328836,0.124136,0.428393,0.993816,0.341813,0.364531,0.73766,0.372563,0.746464,0.149783,0.0956295,0.126257,0.754494,0.36502,0.123599,0.00915802,0.900683,0.10806,0.587752,0.255592,0.0456158,0.658165,0.340841,0.174335,0.124828,0.30867,0.793373,0.578312,0.0105067,0.0717019,0.86582,0.400505,0.668759,0.642804,0.912648,0.531814,0.479931,0.820172,0.174589,0.50731,0.917616,0.214237,0.99211,0.546012,0.221634,0.89868,0.0775934,0.564631,0.602507,0.588339,0.724224,0.702805,0.888624,0.555173,0.840444,0.06199,0.990249,0.130732,0.691469,0.0714365,0.18821,0.346332,0.183319,0.87,0.798868,0.0732427,0.0113987,0.146676,0.991123,0.0240431,0.172632,0.443431,0.209074,0.245764,0.43088,0.232805,0.377011,0.399018,0.366058,0.652124,0.246343,0.369876,0.118711,0.339283,0.717047,0.500624,0.718234,0.848627,0.334223,0.599981,0.262118,0.969746,0.700607,0.124893,0.351831,0.267153,0.252882,0.526677,0.864467,0.0251905,0.121084,0.410955,0.287901,0.559292,0.775093,0.92334,0.274719,0.127192,0.930397,0.0465069,0.859013,0.855049,0.659433,0.110564,0.721721,0.410263,0.233784,0.0555562,0.629716,0.545861,0.599119,0.0601388,0.686892,0.175935,0.94644,0.284932,0.116573,0.744354,0.373741,0.160193,0.483904,0.257361,0.350061,0.19536,0.632856,0.713956,0.263585,0.533214,0.930586,0.379577,0.134564,0.705545,0.482596,0.00552791,0.240478,0.251923,0.316626,0.701553,0.533051,0.318757,0.954462,0.823965,0.480457,0.611141,0.948926,0.014387,0.896378,0.57892,0.906696,0.394964,0.430582,0.00467324,0.801949,0.928527,0.738139,0.766485,0.116061,0.7747,0.0691838,0.803229,0.911095,0.645583,0.572852,0.194293,0.786426,0.74524,0.945091,0.595478,0.437382,0.196965,0.98852,0.278437,0.618974,0.491008,0.104237,0.940596,0.900961,0.888848,0.0777053,0.165849,0.38787,0.0363169,0.686585,0.805879,0.398847,0.00660098,0.610539,0.51608,0.38324,0.192166,0.972963,0.186058,0.591089,0.0720763,0.36419,0.491559,0.692481,0.667239,0.972119,0.250122,0.496724,0.484201,0.981922,0.886616,0.0504412,0.120363,0.192096,0.755144,0.109665,0.111216,0.0565468,0.354086,0.981273,0.0149122,0.926701,0.734373,0.673884,0.49195,0.873993,0.314688,0.00222141,0.666167,0.915061,0.866287,0.521048,0.0586597,0.864655,0.334853,0.487842,0.801841,0.0989524,0.809054,0.636391,0.624528,0.208233,0.370321,0.892821,0.548386,0.278506,0.412625,0.131974,0.801239,0.611234,0.733593,0.485113,0.891731,0.607442,0.889028,0.761421,0.858014,0.889503,0.671645,0.283447,0.203255,0.187935,0.753758,0.741526,0.466182,0.103731,0.822969,0.604702,0.523644,0.333213,0.810226,0.963416,0.415392,0.807848,0.912433,0.121461,0.591696,0.986021,0.644704,0.780922,0.360015,0.591688,0.0503708,0.0398914,0.461809,0.551727,0.197614,0.892358,0.246809,0.645707,0.402542,0.935902,0.813526,0.396835,0.268006,0.843629,0.0307655,0.849847,0.897778,0.054797,0.401993,0.576118,0.0845027,0.597816,0.866497,0.169931,0.03884,0.259498,0.368996,0.0375426,0.313589,0.401156,0.392983,0.823395,0.33267,0.530547,0.94956,0.257301,0.425113,0.83809,0.565048,0.18721,0.0480242,0.231628,0.109466,0.646106,0.00996864,0.730395,0.45774,0.495631,0.390124,0.574331,0.755563,0.911614,0.308387,0.69151,0.65467,0.735283,0.59905,0.642623,0.152303,0.752358,0.241841,0.931235,0.278288,0.0921128,0.783678,0.00364721,0.341439,0.689214,0.911001,0.3422,0.124826,0.864248,0.0289924,0.734134,0.38878,0.770652,0.488861,0.194876,0.314352,0.320451,0.696424,0.532314,0.637127,0.542011,0.870926,0.846422,0.669659,0.203641,0.711289,0.842113,0.670303,0.450043,0.38045,0.243281,0.0872375,0.377929,0.714988,0.659977,0.805244,0.241546,0.0877662,0.757159,0.759362,0.964768,0.415797,0.185849,0.210195,0.455671,0.274127,0.2398,0.893726,0.418182,0.39145,0.651198,0.538806,0.994682,0.622218,0.843605,0.350908,0.712213,0.656266,0.119016,0.365772,0.638345,0.0716978,0.261515,0.136138,0.275166,0.724024,0.19542,0.330796,0.645716,0.586172,0.316094,0.216371,0.633142,0.787239,0.568715,0.93914,0.00610048,0.0347462,0.437855,0.971298,0.688953,0.877724,0.213424,0.385457,0.523597,0.30534,0.846031,0.233483,0.581506,0.271226,0.995361,0.542857,0.287922,0.644863,0.0806367,0.562703,0.523679,0.93879,0.430368,0.564604,0.177217,0.570396,0.0422863,0.414635,0.836692,0.113627,0.207258,0.109984,0.440344,0.6598,0.623619,0.460027,0.234203,0.157027,0.548117,0.769092,0.158097,0.168875,0.0294272,0.783088,0.0314518,0.795656,0.901409,0.846088,0.0492005,0.28318,0.971523,0.707254,0.0690022,0.25464,0.0102335,0.781195,0.0275925,0.136299,0.00130171,0.302829,0.3221,0.980874,0.505999,0.616111,0.223824,0.296925,0.191097,0.557514,0.0138513,0.386913,0.196729,0.479506,0.86084,0.277613,0.239271,0.579821,0.520922,0.716411,0.38938,0.417938,0.716663,0.0740134,0.260503,0.877382,0.0232168,0.0756359,0.323267,0.133899,0.515182,0.87615,0.891478,0.622688,0.768617,0.356811,0.874891,0.335212,0.383039,0.632877,0.667752,0.723027,0.480805,0.802967,0.385871,0.622671,0.472646,0.374801,0.0628686,0.60115,0.0480016,0.659029,0.825413,0.253352,0.154413,0.349453,0.941507,0.262396,0.960816,0.657494,0.757725,0.628089,0.200659,0.218266,0.112097,0.000606239,0.414976,0.302635,0.521564,0.858387,0.43983,0.734047,0.969622,0.673638,0.0854834,0.54759,0.668807,0.285848,0.557659,0.576028,0.340928,0.31314,0.414407,0.772218,0.813724,0.730924,0.379944,0.366947,0.69403,0.859011,0.299657,0.844111,0.607058,0.825197,0.593611,0.906924,0.0154175,0.708962,0.582357,0.827237,0.623091,0.879461,0.360291,0.901019,0.571435,0.265005,0.33679,0.0319074,0.268938,0.0827541,0.713447,0.447279,0.983745,0.185442,0.883826,0.723127,0.779442,0.2304,0.301626,0.770151,0.860997,0.0685592,0.278445,0.826072,0.150596,0.384513,0.55857,0.739032,0.0203609,0.224318,0.87691,0.105622,0.306177,0.884492,0.855488,0.272136,0.968656,0.0168008,0.99069,0.779054,0.608695,0.839174,0.495818,0.853668,0.3228,0.199545,0.365823,0.759292,0.156748,0.968159,0.456297,0.349593,0.0868091,0.323176,0.662697,0.399889,0.633708,0.0562813,0.672759,0.357188,0.0154407,0.745964,0.0299959,0.112996,0.360898,0.94292,0.442864,0.974237,0.761109,0.103341,0.263758,0.0768121,0.884452,0.937034,0.962364,0.435798,0.703686,0.348693,0.293239,0.899406,0.642852,0.212289,0.546451,0.313385,0.702977,0.975587,0.181803,0.118326,0.529329,0.201139,0.654201,0.0822126,|0.799297,0.512753,0.345724,0.863825,0.796993,0.53549,0.0691669,0.273995,0.757918,0.708727,0.654041,0.311817,0.703612,0.0655743,0.510173,0.729603,0.0244044,0.327248,0.0101342,0.665156,0.278902,0.718894,0.0794499,0.896728,0.462344,0.820249,0.737058,0.0846778,0.128911,0.31491,0.271731,0.281117,0.120502,0.0883802,0.473595,0.15908,0.620879,0.768086,0.00444442,0.061591,0.706189,0.771527,0.144775,0.681406,0.47069,0.296624,0.236881,0.500267,0.228896,0.615308,0.0831465,0.986428,0.24137,0.345204,0.7068,0.347192,0.795383,0.163056,0.531808,0.128595,0.393195,0.263692,0.710769,0.844235,0.437448,0.173369,0.29625,0.404565,0.0224805,0.0129489,0.103052,0.337003,0.941539,0.0549819,0.97136,0.329298,0.998124,0.345597,0.914094,0.800234,0.22546,0.145939,0.0811452,0.677281,0.972501,0.49047,0.731633,0.715931,0.372711,0.608477,0.547046,0.592062,0.79383,0.0798233,0.11697,0.0234156,0.358671,0.642424,0.966391,0.0250296,0.15872,0.527777,0.435697,0.613112,0.960529,0.559528,0.0904427,0.276062,0.134398,0.424842,0.180234,0.25117,0.164467,0.0254597,0.996636,0.99546,0.580539,0.582044,0.482934,0.0467089,0.859376,0.956683,0.694271,0.114691,0.199668,0.0398536,0.715338,0.597962,0.297981,0.589131,0.127305,0.490313,0.703145,0.143006,0.795462,0.928529,0.331315,0.778238,0.600067,0.291855,0.368765,0.869288,0.40187,0.249493,0.997584,0.987831,0.502779,0.324464,0.0981173,0.149047,0.483767,0.682037,0.889806,0.721985,0.667464,0.589012,0.285463,0.72285,0.334412,0.089639,0.525198,0.449366,0.856396,0.853355,0.862688,0.758603,0.996186,0.254726,0.343377,0.882613,0.437341,0.946952,0.924025,0.745294,0.164588,0.71863,0.204028,0.172261,0.240013,0.125434,0.0636541,0.188475,0.778743,0.44992,0.633642,0.576881,0.383655,0.183328,0.563445,0.224541,0.673176,0.546091,0.955392,0.0141171,0.342877,0.0670238,0.504015,0.223138,0.50255,0.515734,0.800125,0.953228,0.02016,0.426928,0.91401,0.848879,0.552892,0.798049,0.832919,0.673139,0.569901,0.581054,0.56441,0.484967,0.256377,0.392094,0.199905,0.814478,0.459786,0.7471,0.139386,0.755124,0.136793,0.85816,0.176572,0.771184,0.766185,0.147623,0.295636,0.742453,0.806618,0.703165,0.512575,0.897249,0.494567,0.222185,0.49008,0.0726154,0.286773,0.91939,0.262315,0.445679,0.0372741,0.691188,0.973174,0.555088,0.982197,0.357157,0.925857,0.29013,0.294452,0.965839,0.596691,0.213446,0.702086,0.809348,0.623445,0.747817,0.0401679,0.984851,0.259322,0.398536,0.626772,0.475926,0.642403,0.694973,0.154943,0.956763,0.827709,0.59596,0.97577,0.92246,0.274071,0.806025,0.776019,0.661693,0.630876,0.960278,0.250963,0.97468,0.27754,0.632432,0.823624,0.10041,0.19342,0.993548,0.463156,0.0331804,0.0233967,0.84002,0.449896,0.534043,0.626083,0.74654,0.129498,0.891425,0.563277,0.23437,0.29402,0.870364,0.064189,0.124769,0.933012,0.209002,0.36803,0.222047,0.185455,0.447105,0.783126,0.607116,0.373969,0.446219,0.646617,0.733798,0.944565,0.206405,0.773748,0.932462,0.863485,0.585559,0.668664,0.986532,0.399155,0.869068,0.388863,0.872447,0.713271,0.262912,0.855596,0.117975,0.810221,0.679068,0.383811,0.702044,0.136035,0.959308,0.606056,0.61015,0.201081,0.834183,0.513842,0.434028,0.306278,0.865591,0.163834,0.779639,0.889674,0.140061,0.615251,0.714558,0.845232,0.265469,0.00303334,0.897333,0.249339,0.915657,0.539312,0.963085,0.164236,0.967564,0.873891,0.381055,0.0367503,0.783569,0.802945,0.87072,0.776171,0.980908,0.815071,0.665917,0.366185,0.442088,0.267985,0.619785,0.506859,0.824793,0.119528,0.806898,0.51959,0.214752,0.730452,0.312609,0.184298,0.185354,0.125508,0.941853,0.210999,0.299332,0.738801,0.0212827,0.185798,0.413373,0.538573,0.822498,0.227258,0.761588,0.977164,0.333223,0.421288,0.0951113,0.782388,0.340531,0.992562,0.765015,0.417521,0.516805,0.75611,0.210638,0.369233,0.967723,0.20405,0.805411,0.0122439,0.48557,0.738501,0.610731,0.415877,0.806748,0.997073,0.902377,0.17599,0.402991,0.1886,0.966284,0.921838,0.0209658,0.540392,0.354504,0.0337207,0.191715,0.362485,0.240555,0.698165,0.865633,0.220331,0.886406,0.839633,0.48641,0.215693,0.984135,0.0906962,0.744973,0.466888,0.900959,0.158266,0.937209,0.890563,0.340584,0.345674,0.242995,0.203924,0.403325,0.517607,0.702146,0.286756,0.160703,0.726339,0.841828,0.819988,0.128618,0.0474569,0.00259429,0.964867,0.387478,0.116478,0.308476,0.412707,0.307075,0.0741717,0.64832,0.106245,0.512519,0.548821,0.27466,0.476698,0.912576,0.883409,0.135926,0.572843,0.776917,0.547674,0.525462,0.418522,0.676215,0.510718,0.402578,0.951286,0.393467,0.690847,0.696814,0.137888,0.189329,0.4525,0.242802,0.637284,0.12153,0.378751,0.320006,0.852975,0.978783,0.680933,0.752248,0.62813,0.151107,0.0865206,0.0247723,0.845561,0.82805,0.331847,0.488858,0.353463,0.00686264,0.248727,0.841005,0.641614,0.000905931,0.768803,0.89522,0.519127,0.00466967,0.651064,0.808254,0.22529,0.228294,0.552176,0.122576,0.302688,0.60593,0.44365,0.491508,0.905164,0.0782483,0.271068,0.832484,0.643084,0.60551,0.779885,0.779754,0.129412,0.793423,0.405841,0.599687,0.376864,0.823748,0.190745,0.920049,0.697697,0.472646,0.422778,0.665531,0.341858,0.367527,0.544714,0.887254,0.383091,0.395958,0.299645,0.0628549,0.555663,0.691738,0.42423,0.122436,0.150065,0.888476,0.059552,0.606575,0.204931,0.269565,0.651029,0.207687,0.1676,0.420027,0.468093,0.614064,0.931739,0.758925,0.0122044,0.713895,0.987857,0.333496,0.110833,0.545856,0.644436,0.786008,0.822602,0.406265,0.407156,0.104736,0.458253,0.772528,0.736109,0.57914,0.548888,0.611727,0.333318,0.593669,0.842735,0.131826,0.823192,0.570777,0.341025,0.85012,0.426016,0.421346,0.312569,0.632738,0.645238,0.460558,0.62959,0.961458,0.903848,0.650721,0.0843713,0.360653,0.0732629,0.375403,0.946319,0.757219,0.515677,0.657508,0.621168,0.147687,0.369512,0.644183,0.660172,0.633186,0.934607,0.33584,0.746244,0.370266,0.0383257,0.911124,0.608786,0.421662,0.0395746,0.385233,0.725027,0.324392,0.893941,0.830103,0.694087,0.884319,0.869263,0.809938,0.841834,0.53819,0.0650462,0.276842,0.812068,0.121906,0.00257552,0.608025,0.557451,0.956851,0.175631,0.233199,0.0651624,0.0223001,0.910952,0.753338,0.495088,0.885022,0.45093,0.869968,0.0998278,0.894394,0.285061,0.130109,0.5274,0.713508,0.900055,0.216769,0.03527,0.615974,0.155873,0.62216,0.557564,0.312313,0.0937803,0.542059,0.198418,0.320425,0.474522,0.527268,0.0851951,0.972251,0.669708,0.0405894,0.126309,0.843829,0.257859,0.776796,0.75082,0.258562,0.252998,0.969943,0.937458,0.891808,0.20266,0.35754,0.504763,0.483851,0.194608,0.259565,0.704257,0.918196,0.809157,0.496446,0.370848,0.741711,0.547549,0.592552,0.75271,0.361087,0.852178,0.879177,0.72253,0.501857,0.0992758,0.170521,0.621297,0.704898,0.50197,0.987744,0.853764,0.695377,0.0278641,0.670974,0.905536,0.00322539,0.275329,0.0849609,0.4209,0.851242,0.00869811,0.670161,0.125422,0.630557,0.248928,0.898909,0.664649,0.860162,0.047169,0.282364,0.796803,0.962532,0.861878,0.520766,0.557858,0.908353,0.490392,0.111225,0.772901,0.354641,0.00918174,0.0124914,0.343355,0.544772,0.267958,0.639813,0.631379,0.620007,0.715824,0.434772,0.178753,0.8572,0.697762,0.288257,0.97377,0.117987,0.70034,0.322842,0.694933,0.73788,0.866662,0.675206,0.925471,0.976752,0.689977,0.795068,0.628819,0.80448,0.547344,0.0304341,0.730247,0.873606,0.867137,0.774496,0.0885909,0.0297737,0.552568,0.208387,0.767668,0.0653321,0.404757,0.4865,0.992731,0.688857,0.0459128,0.633828,0.781969,0.925372,0.952361,0.372381,0.545176,0.341854,0.19097,0.627234,0.517976,0.131179,0.416345,0.209483,0.217503,0.0302098,0.35082,0.33056,0.895916,0.192205,0.0792284,0.220098,0.663473,0.407576,0.982431,0.434028,0.0379224,0.446141,0.343911,0.841499,0.275193,0.0180662,0.448984,0.898776,0.153417,0.419089,0.143505,0.575428,0.856245,0.433539,0.0524324,0.828296,0.164168,0.31392,0.359026,0.618224,0.591789,0.225574,0.817771,0.698209,0.455879,0.96064,0.642439,0.510197,0.580402,0.979427,0.247593,0.680825,0.6154,0.820979,0.488584,0.20625,0.861089,0.0979913,0.519588,0.0448039,0.333736,0.286595,0.868533,0.105529,0.527579,0.365062,0.857818,0.0531283,0.913339,0.695424,0.743037,0.489715,0.885804,0.964833,0.20495,0.947052,0.817517,0.871129,0.0928552,0.211468,0.666264,0.269777,0.271475,0.30447,0.797221,0.354629,0.1126,0.479269,0.75438,0.722274,0.493156,0.339728,0.38729,0.0180262,0.608172,0.338569,0.182134,0.904453,0.565525,0.484634,0.758838,0.28772,0.278669,0.802412,0.58982,0.787961,0.814698,0.187946,0.957816,0.984839,0.973794,0.524322,0.239315,0.688929,0.389993,0.810663,0.912233,0.510451,0.46003,0.369247,0.954467,0.995462,0.942729,0.00939602,0.342687,0.570135,0.971148,0.200057,0.919174,0.321872,0.503859,0.847899,0.882009,0.486441,0.965976,0.507018,0.425738,0.938011,0.803151,0.952255,0.202042,0.631125,0.478064,0.561492,0.376744,0.702407,0.206067,0.513101,0.0923879,0.556449,0.463779,0.532263,0.988993,0.808834,0.230526,0.176828,0.636697,0.116253,0.81595,0.344536,0.888183,0.395996,0.334927,0.297349,0.570843,0.445327,0.696629,0.0350108,0.397638,0.816699,0.850981,0.546473,0.869192,0.63366,0.547708,0.0174282,0.434057,0.995266,0.274526,0.776976,0.424411,0.634362,0.744907,0.359483,0.865186,0.634496,0.709233,0.643388,0.265127,0.215947,0.440249,0.942969,0.924667,0.216014,0.645602,0.828423,|0.192129,0.52185,0.15477,0.282055,0.0748075,0.0521865,0.135204,0.284118,0.594403,0.827173,0.544093,0.0586177,0.603646,0.295655,0.0954553,0.102598,0.639437,0.625569,0.0543759,0.135347,0.820839,0.634257,0.861209,0.429187,0.521463,0.176532,0.160711,0.106629,0.192344,0.315597,0.523086,0.148699,0.904603,0.469058,0.756859,0.352815,1.00136e-05,0.141729,0.222064,0.72715,0.512286,0.617835,0.1775,0.501561,0.0648339,0.575797,0.385838,0.546925,0.802882,0.841113,0.526734,0.409736,0.338998,0.611344,0.598751,0.362795,0.298712,0.274721,0.317257,0.048126,0.670593,0.356402,0.209249,0.399139,0.267009,0.417564,0.758291,0.744265,0.605026,0.811501,0.48303,0.636424,0.770901,0.837387,0.178577,0.63804,0.14836,0.195751,0.217677,0.00201458,0.214555,0.00226444,0.585606,0.220905,0.168819,0.202012,0.714086,0.218158,0.581505,0.0143691,0.22311,0.397329,0.721335,0.051904,0.116504,0.749479,0.843195,0.113375,0.893517,0.741957,0.164811,0.724719,0.922691,0.833861,0.129174,0.0269969,0.461757,0.681043,0.523193,0.535841,0.097793,0.985323,0.394614,0.535182,0.764352,0.49162,0.336961,0.103856,0.594085,0.976682,0.625855,0.199725,0.318079,0.984322,0.555815,0.903258,0.982722,0.137804,0.203241,0.420932,0.0242577,0.865491,0.516796,0.518487,0.0959445,0.231131,0.0370932,0.525511,0.838833,0.919354,0.890088,0.0506995,0.992524,0.717334,0.126391,0.147981,0.69206,0.955721,0.691618,0.464785,0.270551,0.697545,0.0435239,0.677461,0.586029,0.527603,0.358614,0.39597,0.95493,0.791468,0.795235,0.779127,0.0569625,0.510495,0.0212224,0.151756,0.381923,0.636824,0.332809,0.0722939,0.521073,0.564065,0.452573,0.228411,0.411228,0.119361,0.150519,0.934428,0.779652,0.931378,0.649498,0.0339591,0.441608,0.908442,0.24563,0.0901638,0.629734,0.0886586,0.645418,0.0286141,0.729756,0.795064,0.169465,0.888316,0.95318,0.466202,0.848916,0.162977,0.146626,0.4781,0.50111,0.179416,0.25873,0.0317932,0.107836,0.0938727,0.683032,0.818427,0.389908,0.50242,0.216114,0.0796877,0.234644,0.346486,0.923138,0.345953,0.579439,0.380919,0.206579,0.341049,0.561675,0.16234,0.0541335,0.884864,0.667327,0.903992,0.396762,0.787497,0.467416,0.497238,0.44544,0.134922,0.387295,0.0193797,0.207855,0.544743,0.422359,0.727084,0.333056,0.842974,0.165834,0.410091,0.575865,0.87205,0.67189,0.253842,0.430181,0.561461,0.784153,0.257294,0.894012,0.200989,0.144086,0.115247,0.95484,0.68785,0.41118,0.541644,0.433885,0.582629,0.61778,0.376402,0.391782,0.653694,0.603712,0.61318,0.241621,0.169146,0.55807,0.146249,0.798844,0.19581,0.205716,0.779857,0.00564516,0.882527,0.946661,0.188836,0.558562,0.249996,0.674192,0.638839,0.368814,0.459447,0.158458,0.237284,0.957704,0.97434,0.545143,0.19299,0.402772,0.453618,0.474902,0.321896,0.250916,0.0364857,0.643838,0.291699,0.909857,0.875659,0.0725576,0.447571,0.467181,0.846287,0.656867,0.756684,0.06587,0.46521,0.608411,0.326616,0.349537,0.450842,0.491711,0.850921,0.578567,0.212763,0.727293,0.299835,0.373741,0.0613278,0.896087,0.405086,0.467431,0.476846,0.203858,0.974003,0.912411,0.680306,0.385893,0.278143,0.7334,0.405724,0.601122,0.877573,0.956516,0.565896,0.856504,0.924337,0.482316,0.903861,0.365531,0.284764,0.657305,0.336956,0.467621,0.082756,0.0468498,0.0593457,0.03488,0.438012,0.434159,0.707913,0.983335,0.393227,0.754488,0.709041,0.877129,0.620304,0.915576,0.0471041,0.356999,0.457866,0.793072,0.565727,0.289937,0.00707328,0.13487,0.729233,0.152279,0.989236,0.963175,0.730502,0.910248,0.711147,0.384853,0.447209,0.645008,0.703986,0.880454,0.856184,0.0801073,0.46686,0.623467,0.680658,0.15655,0.691707,0.452804,0.966224,0.676815,0.135729,0.513725,0.294064,0.459867,0.607539,0.301537,0.745488,0.0482543,0.264381,0.447152,0.118366,0.483421,0.167533,0.726787,0.347606,0.302568,0.871882,0.730118,0.0907277,0.0688724,0.0569117,0.602342,0.127377,0.983562,0.296209,0.466836,0.414075,0.514546,0.673358,0.144415,0.538224,0.500503,0.777685,0.852484,0.692081,0.877826,0.558481,0.525237,0.00341928,0.959175,0.92628,0.142686,0.659355,0.332915,0.844705,0.472745,0.154007,0.0387248,0.0200471,0.0583162,0.40899,0.00141203,0.86883,0.0037365,0.19966,0.362912,0.652853,0.200791,0.341759,0.93058,0.416056,0.251916,0.199227,0.519789,0.0375902,0.607502,0.394928,0.656215,0.982282,0.157773,0.271612,0.538517,0.351066,0.478234,0.453723,0.739745,0.0653809,0.91139,0.640343,0.214535,0.998477,0.847571,0.478323,0.129464,0.60819,0.219956,0.686735,0.444903,0.22398,0.597538,0.812873,0.193608,0.802482,0.124141,0.41731,0.395318,0.628715,0.380541,0.45809,0.550066,0.343115,0.939074,0.356326,0.555947,0.751144,0.200429,0.467702,0.44293,0.185156,0.26088,0.383306,0.34149,0.512511,0.457367,0.269679,0.874894,0.030988,0.885673,0.315469,0.485524,0.954752,0.0625877,0.813368,0.77498,0.312301,0.198202,0.633864,0.409788,0.794868,0.77229,0.676189,0.275091,0.824838,0.679927,0.296521,0.437283,0.409023,0.95608,0.922286,0.324882,0.247543,0.137428,0.906119,0.987327,0.496874,0.8105,0.545772,0.535382,0.0816308,0.318281,0.660527,0.976399,0.903981,0.952136,0.581733,0.336188,0.379971,0.482238,0.432204,0.998748,0.445266,0.913005,0.440372,0.801709,0.897278,0.292984,0.00505185,0.772077,0.525577,0.922721,0.288818,0.0695847,0.845791,0.892391,0.202695,0.632048,0.857935,0.671397,0.845513,0.365641,0.550085,0.925003,0.236653,0.861897,0.127156,0.0687627,0.461152,0.270629,0.152152,0.735179,0.245143,0.940807,0.15363,0.906218,0.53849,0.39086,0.125141,0.145888,0.833712,0.28449,0.247976,0.411266,0.802717,0.862536,0.519536,0.174609,0.611407,0.586288,0.553474,0.825873,0.355714,0.512636,0.666348,0.100323,0.794193,0.585417,0.696927,0.821288,0.420612,0.353683,0.759411,0.910868,0.248342,0.86196,0.694301,0.971339,0.790128,0.240126,0.761293,0.848254,0.31372,0.046465,0.92464,0.859559,0.912056,0.443706,0.351367,0.160026,0.259515,0.24669,0.850104,0.0126173,0.980152,0.00396413,0.237944,0.416937,0.367954,0.449263,0.917564,0.187516,0.755496,0.660412,0.899877,0.664582,0.513242,0.00265038,0.396873,0.226671,0.137286,0.0103334,0.749447,0.804882,0.952903,0.60688,0.718459,0.507639,0.789232,0.921608,0.712851,0.857656,0.591422,0.205153,0.755011,0.680941,0.0108052,0.337922,0.0618842,0.747063,0.54513,0.0922492,0.633046,0.830779,0.456322,0.962736,0.287537,0.775749,0.82245,0.991685,0.0631499,0.986952,0.967618,0.152702,0.467674,0.0587754,0.536776,0.407782,0.463685,0.212278,0.788379,0.850713,0.104165,0.573278,0.501079,0.402353,0.545724,0.697971,0.261841,0.585845,0.379687,0.042065,0.492199,0.402522,0.287742,0.887123,0.774192,0.692755,0.604409,0.142759,0.742172,0.341934,0.580992,0.603912,0.0340102,0.646021,0.522639,0.971222,0.492622,0.809438,0.496908,0.115198,0.800145,0.130421,0.202153,0.569146,0.47076,0.594016,0.059072,0.0243226,0.333631,0.893624,0.102285,0.317771,0.74864,0.493773,0.857416,0.0212496,0.931207,0.565428,0.106604,0.130967,0.866158,0.87919,0.508766,0.53516,0.794772,0.147991,0.939804,0.427582,0.974614,0.566536,0.739226,0.157463,0.369801,0.518209,0.146979,0.619438,0.355284,0.245379,0.199055,0.374842,0.985251,0.112606,0.832147,0.691418,0.279304,0.542374,0.394805,0.799409,0.54299,0.425964,0.10707,0.269238,0.601454,0.449565,0.434781,0.809291,0.759621,0.828828,0.827304,0.373774,0.222081,0.455868,0.438078,0.310948,0.511305,0.436166,0.801818,0.0260263,0.12666,0.652823,0.339414,0.40684,0.605119,0.817258,0.890498,0.23502,0.667254,0.55863,0.850264,0.964716,0.982147,0.880042,0.525822,0.473124,0.49263,0.145782,0.0271643,0.400722,0.992667,0.775417,0.159794,0.760301,0.704547,0.0930604,0.493044,0.583374,0.22288,0.644274,0.669976,0.543682,0.701295,0.879253,0.0767204,0.803987,0.443889,0.606551,0.463578,0.263203,0.50841,0.237777,0.0204595,0.307039,0.650982,0.659044,0.701629,0.676684,0.438815,0.603978,0.90913,0.902967,0.250699,0.218,0.815069,0.661497,0.451645,0.139593,0.743489,0.173843,0.241549,0.446037,0.27715,0.351008,0.641371,0.416908,0.731266,0.876337,0.434541,0.557247,0.864049,0.643567,0.478866,0.852871,0.545016,0.626432,0.224217,0.0926014,0.690048,0.308405,0.618451,0.659221,0.43482,0.603281,0.0324096,0.832321,0.677768,0.631788,0.392211,0.060522,0.271269,0.153368,0.759546,0.971082,0.825798,0.0481693,0.67851,0.674169,0.712005,0.221383,0.917289,0.57162,0.421387,0.357079,0.41141,0.49379,0.593298,0.20417,0.340521,0.970351,0.609858,0.191465,0.42599,0.470316,0.122026,0.0646215,0.543706,0.179946,0.875402,0.0452434,0.831125,0.34494,0.100573,0.831097,0.937698,0.734931,0.750033,0.00223821,0.306098,0.0859183,0.349871,0.810995,0.0588666,0.952083,0.343699,0.815579,0.493591,0.75147,0.0470593,0.221269,0.44955,0.320404,0.799562,0.445241,0.512072,0.140385,0.202553,0.81118,0.84971,0.259607,0.0860277,0.691449,0.160733,0.0641087,0.288888,0.435278,0.85832,0.789547,0.850484,0.0800202,0.0806279,0.655383,0.897652,0.511615,0.293698,0.15632,0.937375,0.260624,0.679008,0.613458,0.778258,0.948712,0.490613,0.534798,0.375675,0.278201,0.0576475,0.345214,0.689874,0.809671,0.0326322,0.98864,0.339076,0.8,0.684348,0.471445,0.195216,0.109909,0.755125,0.474491,0.264054,0.79706,0.702938,0.135196,0.867363,0.544263,0.101336,0.244737,0.184428,0.835879,0.030538,0.618727,0.895909,0.47566,0.405057,0.928575,0.42333,0.163299,0.202738,0.55124,0.172876,0.319842,0.468552,|0.801265,0.957092,0.654146,0.366298,0.69439,0.654041,0.554331,0.116399,0.063513,0.720159,0.946868,0.0185125,0.995267,0.0216513,0.352593,0.782161,0.513303,0.577646,0.335472,0.294381,0.0447553,0.572514,0.999868,0.563056,0.210514,0.401394,0.848353,0.749271,0.485036,0.876434,0.828593,0.538111,0.348176,0.474759,0.0432958,0.631109,0.0110191,0.457591,0.0190931,0.277371,0.256871,0.175163,0.977454,0.0707245,0.774627,0.064649,0.260277,0.327661,0.933864,0.147534,0.561679,0.707499,0.483126,0.836124,0.576696,0.318912,0.373182,0.969946,0.543275,0.664682,0.813462,0.042538,0.189218,0.555105,0.0923526,0.222169,0.75675,0.793286,0.304325,0.247236,0.524656,0.804849,0.115464,0.282501,0.657853,0.416448,0.978887,0.878286,0.948595,0.298668,0.395901,0.268308,0.270323,0.288414,0.518533,0.0333695,0.15687,0.606126,0.0326377,0.808959,0.0112595,0.506331,0.839396,0.292375,0.505993,0.530725,0.4464,0.453908,0.343969,0.0185793,0.438992,0.710117,0.365131,0.50068,0.928668,0.439554,0.511225,0.411502,0.20967,0.113732,0.738338,0.539518,0.629765,0.0362438,0.535548,0.253071,0.790452,0.862712,0.959248,0.466785,0.0698704,0.920939,0.711385,0.872833,0.0949785,0.512221,0.309171,0.376353,0.708051,0.726546,0.659526,0.815661,0.53103,0.449367,0.573034,0.489313,0.865374,0.146588,0.121411,0.0328003,0.432969,0.997439,0.133574,0.26039,0.892577,0.803357,0.446818,0.436591,0.799639,0.816894,0.253312,0.546973,0.472672,0.0763369,0.536081,0.881341,0.46169,0.28177,0.0139881,0.722868,0.148566,0.354391,0.458091,0.532329,0.434882,0.734914,0.453315,0.702821,0.546427,0.920645,0.582126,0.0650662,0.611347,0.900512,0.773757,0.633317,0.637745,0.104925,0.90358,0.180312,0.341317,0.0447776,0.717214,0.51209,0.985822,0.201289,0.118576,0.334327,0.790892,0.0762773,0.631192,0.111019,0.906115,0.111843,0.128498,0.549036,0.269143,0.683656,0.924733,0.591652,0.645056,0.52131,0.549056,0.433873,0.261497,0.478249,0.611899,0.973877,0.548009,0.220988,0.336885,0.434758,0.401548,0.528399,0.0690009,0.0510708,0.243566,0.245362,0.280542,0.228893,0.824895,0.0344791,0.660274,0.0441565,0.162665,0.275907,0.194986,0.326386,0.00443673,0.182286,0.245745,0.598824,0.726501,0.763102,0.406578,0.0327992,0.927129,0.709527,0.155989,0.796357,0.58072,0.260857,0.083724,0.320703,0.489618,0.16499,0.306543,0.591685,0.389697,0.40536,0.601294,0.202192,0.603558,0.821317,0.368095,0.905474,0.28945,0.149904,0.480317,0.0128233,0.17473,0.0644166,0.357988,0.923889,0.372073,0.888595,0.269421,0.400435,0.152252,0.874922,0.898836,0.448336,0.517151,0.168561,0.175792,0.245846,0.639837,0.666268,0.252203,0.123792,0.907002,0.245878,0.0567864,0.154502,0.156095,0.766666,0.782482,0.481161,0.363032,0.00697064,0.968458,0.726954,0.233237,0.456239,0.716949,0.925157,0.925145,0.702705,0.502225,0.70631,0.989405,0.736241,0.932858,0.77392,0.745498,0.733697,0.0763836,0.223282,0.59068,0.544652,0.0765254,0.908403,0.324351,0.238778,0.976728,0.170312,0.372897,0.962895,0.813449,0.391596,0.445787,0.0159122,0.774873,0.525899,0.642012,0.480659,0.421145,0.276021,0.605843,0.141149,0.971587,0.451334,0.798009,0.144359,0.873019,0.0193453,0.840328,0.28981,0.988361,0.499155,0.591406,0.988608,0.450077,0.228131,0.179492,0.0954148,0.208982,0.611679,0.243014,0.593958,0.138689,0.635955,0.419606,0.0294811,0.666103,0.41765,0.319448,0.0337193,0.563427,0.171726,0.429327,0.448893,0.640421,0.866445,0.201633,0.908038,0.218852,0.473719,0.0307492,0.537082,0.73685,0.434249,0.185123,0.743667,0.753398,0.982154,0.211092,0.335047,0.638326,0.322183,0.697803,0.888925,0.47623,0.49217,0.194809,0.768408,0.064292,0.588183,0.255437,0.312632,0.225141,0.403983,0.247731,0.965983,0.107564,0.293859,0.21979,0.777919,0.505931,0.433133,0.1124,0.0545997,0.314617,0.149963,0.769046,0.758692,0.942216,0.137129,0.298038,0.207643,0.378111,0.321032,0.59801,0.777768,0.200053,0.698746,0.179345,0.862941,0.350861,0.379514,0.263185,0.915966,0.386762,0.939151,0.50015,0.131405,0.921983,0.84365,0.5772,0.7726,0.79996,0.383335,0.00963247,0.0201539,0.96351,0.582919,0.701097,0.697322,0.454164,0.886902,0.243981,0.749927,0.0431349,0.34858,0.366284,0.81296,0.673985,0.681458,0.205825,0.673899,0.825526,0.86276,0.121344,0.393591,0.430858,0.26913,0.797793,0.137809,0.697792,0.976276,0.570247,0.394534,0.838776,0.711773,0.0580189,0.196803,0.16937,0.70401,0.570265,0.567288,0.249998,0.888578,0.243618,0.617495,0.963971,0.156128,0.475767,0.929769,0.311406,0.942944,0.756739,0.604879,0.43419,0.604646,0.644137,0.64999,0.855977,0.339589,0.0550684,0.206434,0.380549,0.608649,0.23312,0.231139,0.855705,0.815172,0.68509,0.465019,0.925878,0.926781,0.645224,0.201845,0.31531,0.157812,0.279653,0.766039,0.437359,0.512271,0.301745,0.728431,0.748173,0.451987,0.61286,0.477039,0.687452,0.58452,0.407029,0.836429,0.682444,0.429422,0.639562,0.329018,0.920947,0.129259,0.251142,0.980684,0.101116,0.0783526,0.0361216,0.478457,0.0730309,0.182034,0.941945,0.961742,0.667269,0.37616,0.647727,0.667594,0.996716,0.301908,0.429947,0.309202,0.698271,0.638008,0.0404456,0.642166,0.35504,0.529309,0.225954,0.384306,0.465311,0.735088,0.423318,0.501927,0.644393,0.171997,0.250159,0.154603,0.935718,0.636824,0.288893,0.230534,0.822345,0.843906,0.142055,0.213895,0.684474,0.609641,0.0564931,0.731316,0.310644,0.191775,0.943626,0.431556,0.246516,0.513631,0.16149,0.912055,0.176641,0.192892,0.549475,0.952824,0.223993,0.66089,0.915817,0.768127,0.0739641,0.823195,0.152636,0.235184,0.742705,0.538072,0.837533,0.583549,0.301993,0.831089,0.249263,0.972935,0.652892,0.682373,0.800842,0.314898,0.190666,0.19393,0.616258,0.868625,0.0269375,0.379844,0.747727,0.852449,0.215661,0.815947,0.005023,0.557926,0.404436,0.500121,0.00142711,0.751347,0.536831,0.831387,0.788974,0.629028,0.276356,0.663136,0.0568705,0.685315,0.460907,0.592871,0.816068,0.306179,0.471617,0.549892,0.360036,0.813806,0.325467,0.909677,0.420759,0.59615,0.684253,0.342056,0.858126,0.811615,0.254527,0.857584,0.191076,0.0709096,0.488614,0.402586,0.593979,0.453245,0.301198,0.658296,0.462398,0.644922,0.902585,0.918749,0.825958,0.0883499,0.699634,0.546683,0.0318986,0.528931,0.446092,0.120067,0.0760615,0.385316,0.98845,0.855145,0.119069,0.0707843,0.918962,0.925387,0.920368,0.0764751,0.953398,0.0504599,0.459407,0.929389,0.620123,0.605504,0.230848,0.698724,0.841839,0.892018,0.964043,0.55773,0.0130704,0.455049,0.901289,0.54118,0.228265,0.963489,0.940039,0.275427,0.743489,0.415265,0.493085,0.420865,0.0145205,0.112933,0.223599,0.286431,0.917521,0.0536682,0.558495,0.551138,0.551848,0.373248,0.769366,0.926515,0.425288,0.670223,0.373409,0.613696,0.285421,0.6522,0.739064,0.433986,0.0851399,0.690686,0.399724,0.998198,0.944174,0.441831,0.698149,0.308336,0.102459,0.825019,0.0979801,0.98179,0.829431,0.265682,0.318594,0.72407,0.254114,0.43081,0.105412,0.162107,0.788975,0.400253,0.690884,0.25351,0.313932,0.76856,0.101482,0.473173,0.60147,0.00950366,0.161722,0.760167,0.0157303,0.260902,0.719056,0.220177,0.379223,0.288673,0.421454,0.899716,0.228983,0.779432,0.470032,0.16118,0.500197,0.964671,0.296669,0.779539,0.250087,0.0800708,0.693348,0.740092,0.629307,0.116816,0.592859,0.684414,0.528881,0.754672,0.496821,0.608077,0.93564,0.0416112,0.368804,0.0567855,0.919011,0.322006,0.848761,0.24732,0.396976,0.403432,0.797806,0.869045,0.668874,0.53735,0.0137814,0.580568,0.0817528,0.770444,0.179904,0.868526,0.160519,0.0486655,0.858428,0.21861,0.187694,0.986721,0.836981,0.0349926,0.441248,0.566163,0.666596,0.235771,0.55758,0.255175,0.878431,0.997496,0.0493007,0.160848,0.554288,0.162184,0.835798,0.266677,0.653281,0.565222,0.131192,0.963743,0.884855,0.697638,0.209721,0.81553,0.14449,0.333034,0.0189956,0.837673,0.694868,0.432722,0.165717,0.871991,0.292263,0.627368,0.637473,0.483983,0.479506,0.112939,0.19995,0.117355,0.662012,0.178926,0.0774826,0.516106,0.417399,0.976797,0.724401,0.735555,0.275534,0.123153,0.384047,0.924499,0.0547543,0.880141,0.785476,0.66978,0.387012,0.099614,0.375286,0.917499,0.474372,0.410384,0.255022,0.20045,0.546412,0.503441,0.615838,0.446099,0.570865,0.70431,0.146744,0.923329,0.910135,0.249446,0.208398,0.430791,0.204213,0.774552,0.213273,0.17368,0.966454,0.0153928,0.271057,0.832772,0.23672,0.148743,0.886632,0.49566,0.606558,0.761337,0.20323,0.560798,0.57097,0.419531,0.584343,0.434887,0.616317,0.709521,0.866397,0.0934343,0.392626,0.328559,0.569123,0.877851,0.166615,0.682717,0.0585037,0.219012,0.79309,0.0459681,0.548358,0.741809,0.701587,0.492927,0.230119,0.758077,0.148375,0.825391,0.721125,0.761145,0.620107,0.502006,0.776851,0.583509,0.599388,0.640937,0.309498,0.819826,0.976525,0.560564,0.829046,0.691881,0.507446,0.168672,0.680072,0.535769,0.732589,0.396688,0.461189,0.689094,0.684961,0.793617,0.349179,0.918147,0.0835353,0.151367,0.724031,0.302797,0.422715,0.46104,0.372431,0.902036,0.161144,0.415669,0.927226,0.263101,0.00635225,0.153196,0.454608,0.700832,0.692425,0.637201,0.627734,0.871493,0.419326,0.937655,0.471233,0.710534,0.621169,0.349633,0.185683,0.0221975,0.973495,0.50539,0.314744,0.27127,0.484263,0.715668,0.705337,0.408979,0.668495,0.997401,0.856103,0.287509,0.879578,0.832818,0.335936,0.554037,0.117793,0.409001,0.444201,0.19021,0.522704,0.0312377,0.0110521,0.493427,|0.823296,0.749865,0.655015,0.235774,0.560022,0.0506243,0.222253,0.537568,0.621722,0.91232,0.247109,0.0509213,0.701426,0.40583,0.497418,0.968928,0.769549,0.882432,0.515824,0.397489,0.842558,0.0542936,0.96539,0.00198686,0.57818,0.429006,0.0614675,0.487177,0.205526,0.136343,0.78919,0.396099,0.626102,0.336333,0.945972,0.660036,0.0698013,0.649459,0.143048,0.96928,0.639457,0.81773,0.830885,0.244171,0.325646,0.566794,0.367954,0.366002,0.414011,0.564743,0.826802,0.354621,0.981613,0.0286211,0.550621,0.003434,0.58624,0.746398,0.0399609,0.609227,0.502581,0.615364,0.833831,0.769716,0.528202,0.588817,0.814006,0.200395,0.697491,0.878827,0.932182,0.859798,0.0397649,0.0797684,0.955583,0.619061,0.668281,0.203262,0.288098,0.344592,0.786011,0.187436,0.81275,0.921274,0.00252223,0.887292,0.145869,0.767561,0.544101,0.97678,0.342838,0.542589,0.903776,0.445358,0.88352,0.451862,0.848691,0.81767,0.38963,0.315557,0.579674,0.38287,0.679716,0.753929,0.719263,0.679144,0.0991129,0.974735,0.915924,0.648551,0.635936,0.0732397,0.612453,0.447046,0.541784,0.97598,0.406117,0.186276,0.804781,0.406928,0.19788,0.431359,0.690831,0.689271,0.27652,0.625389,0.263384,0.286766,0.249783,0.76542,0.148959,0.240636,0.225768,0.432276,0.855066,0.620444,0.0475652,0.593938,0.5972,0.504318,0.900211,0.395219,0.0717471,0.707437,0.476645,0.312122,0.266075,0.654343,0.279383,0.855561,0.417836,0.920543,0.608224,0.715684,0.900828,0.677675,0.856846,0.647574,0.851839,0.274455,0.529652,0.797917,0.466654,0.0540375,0.293954,0.0704794,0.248617,0.617533,0.533181,0.588801,0.128045,0.41092,0.555732,0.371478,0.843953,0.844146,0.263898,0.554721,0.912733,0.373401,0.884497,0.2817,0.721319,0.65647,0.406177,0.825749,0.641342,0.827723,0.460913,0.659208,0.0928696,0.441439,0.202519,0.0961335,0.734801,0.324,0.997949,0.390183,0.772974,0.950209,0.0403609,0.0627569,0.269864,0.109834,0.956353,0.21701,0.392718,0.370137,0.0964976,0.164966,0.171668,0.384792,0.524304,0.249924,0.351546,0.782624,0.668651,0.830381,0.645933,0.0685901,0.398301,0.784754,0.2624,0.437402,0.488833,0.132348,0.218576,0.556044,0.552255,0.250083,0.964265,0.562668,0.795871,0.378056,0.173628,0.334223,0.533108,0.901119,0.0743186,0.345316,0.730564,0.499145,0.646933,0.395926,0.195706,0.435812,0.785008,0.654122,0.820674,0.244456,0.736075,0.328117,0.430557,0.146546,0.919425,0.754618,0.617462,0.142039,0.14894,0.87172,0.0378613,0.6476,0.219371,0.0131086,0.992345,0.735392,0.699498,0.214236,0.203061,0.710667,0.132893,0.386459,0.787602,0.209941,0.179622,0.45403,0.841164,0.570965,0.276591,0.793795,0.381919,0.239,0.771103,0.386289,0.282038,0.719404,0.65907,0.223719,0.465252,0.908996,0.600974,0.675677,0.14902,0.604095,0.313625,0.621683,0.397305,0.840293,0.186308,0.396088,0.100541,0.366842,0.995566,0.881464,0.908546,0.952446,0.44093,0.234722,0.947773,0.907376,0.831675,0.979863,0.317075,0.749981,0.991153,0.484534,0.627283,0.0184442,0.838986,0.259944,0.480077,0.483383,0.523661,0.324232,0.94112,0.380539,0.696495,0.615871,0.871545,0.74912,0.492553,0.327631,0.0124253,0.493738,0.149357,0.181686,0.0585698,0.210773,0.775619,0.508664,0.157633,0.110933,0.0626257,0.680541,0.431865,0.648319,0.272765,0.192618,0.906376,0.598007,0.320174,0.707377,0.931344,0.367163,0.131584,0.72954,0.416264,0.251284,0.791563,0.485541,0.677794,0.397494,0.852107,0.912429,0.400046,0.153729,0.808402,0.371447,0.307273,0.727157,0.835701,0.275131,0.819932,0.349303,0.480486,0.39906,0.349889,0.188451,0.432487,0.169542,0.952725,0.600303,0.50567,0.386278,0.23926,0.870059,0.0224489,0.863541,0.0797014,0.0907902,0.977085,0.609407,0.581529,0.705839,0.513575,0.436264,0.846041,0.889404,0.257835,0.959879,0.450678,0.242419,0.701172,0.535352,0.802982,0.865934,0.331417,0.0439546,0.538886,0.755853,0.0794873,0.277224,0.382268,0.674116,0.949469,0.554897,0.371123,0.73396,0.0162542,0.431881,0.383632,0.238956,0.881918,0.594604,0.117874,0.111608,0.847597,0.0671047,0.263778,0.444336,0.402125,0.440433,0.695856,0.278883,0.123424,0.444779,0.819571,0.232514,0.562673,0.403087,0.740984,0.270676,0.784485,0.876316,0.515568,0.778233,0.261809,0.575737,0.392471,0.293324,0.316595,0.792241,0.054135,0.155356,0.431066,0.821595,0.541903,0.206583,0.796489,0.29093,0.308373,0.818072,0.757857,0.61135,0.807892,0.0306947,0.290762,0.680727,0.669329,0.782781,0.460521,0.0937217,0.719463,0.317471,0.176886,0.604489,0.211873,0.740343,0.26561,0.156391,0.761602,0.517996,0.46893,0.644002,0.338372,0.87438,0.714438,0.573345,0.0805909,0.620287,0.804147,0.874136,0.025803,0.0629577,0.0582136,0.624196,0.302296,0.829836,0.967739,0.755478,0.0789751,0.269953,0.758876,0.311733,0.236668,0.48412,0.371921,0.461427,0.347869,0.586277,0.00215048,0.367572,0.415981,0.469384,0.708754,0.557496,0.165713,0.596078,0.449719,0.682831,0.867985,0.101371,0.115498,0.737843,0.719146,0.152096,0.669098,0.310383,0.912743,0.269449,0.349297,0.551896,0.454829,0.990067,0.384098,0.696324,0.151928,0.363913,0.640157,0.815016,0.232944,0.0989958,0.774335,0.836337,0.357653,0.0388325,0.0843642,0.957535,0.986673,0.524729,0.159958,0.353435,0.0138266,0.414962,0.0991142,0.17732,0.999832,0.87525,0.243019,0.329196,0.264407,0.571838,0.131767,0.534202,0.257687,0.382034,0.461637,0.219316,0.160875,0.324819,0.0794743,0.741683,0.322318,0.979421,0.783348,0.682238,0.763977,0.599859,0.661516,0.200851,0.932657,0.759146,0.124161,0.892255,0.268504,0.374085,0.731015,0.691574,0.960759,0.870034,0.860091,0.540146,0.848608,0.767108,0.378958,0.416313,0.0446891,0.830223,0.162206,0.116485,0.983684,0.54879,0.0168766,0.937328,0.24848,0.426679,0.341804,0.218724,0.81117,0.724985,0.321993,0.859773,0.193943,0.911719,0.569746,0.205487,0.544681,0.53027,0.425797,0.462604,0.630807,0.112429,0.621382,0.224278,0.788176,0.967467,0.320652,0.357474,0.778754,0.587229,0.871197,0.412471,0.890764,0.273447,0.693066,0.493521,0.0597056,0.942065,0.0856376,0.655084,0.392641,0.685766,0.345999,0.18442,0.0819548,0.552172,0.833235,0.66198,0.765756,0.57362,0.146102,0.916141,0.303224,0.802776,0.21691,0.250252,0.962451,0.928093,0.333682,0.95408,0.0140095,0.43752,0.274597,0.0112097,0.751475,0.106101,0.861441,0.788339,0.130278,0.7026,0.867065,0.368382,0.600454,0.0496354,0.877251,0.677313,0.3005,0.34207,0.182394,0.293939,0.820094,0.722205,0.701912,0.744524,0.110069,0.438303,0.523286,0.658598,0.20685,0.70252,0.421446,0.548507,0.286748,0.769497,0.435449,0.428337,0.756904,0.730926,0.616003,0.245065,0.20954,0.145944,0.071677,0.530775,0.689646,0.586309,0.657013,0.685872,0.848683,0.991033,0.472604,0.873724,0.696932,0.173268,0.716856,0.0563954,0.814383,0.223928,0.201351,0.933042,0.309843,0.678606,0.923794,0.380332,0.216459,0.873803,0.853592,0.899817,0.37243,0.306114,0.534867,0.0868249,0.713382,0.769936,0.84788,0.223907,0.461837,0.347661,0.237157,0.469221,0.761236,0.790989,0.00988179,0.706069,0.53214,0.23785,0.0135397,0.101242,0.422388,0.247343,0.923574,0.0364503,0.428477,0.376671,0.47295,0.960852,0.507799,0.290844,0.796089,0.19339,0.839584,0.486671,0.499714,0.0641477,0.724259,0.49425,0.297356,0.291356,0.425832,0.555012,0.557998,0.146426,0.917186,0.135143,0.737542,0.1461,0.993266,0.535333,0.232457,0.907779,0.777024,0.451744,0.973809,0.630445,0.606153,0.146163,0.454382,0.849027,0.279678,0.740068,0.322627,0.12944,0.35532,0.74071,0.544045,0.156393,0.881375,0.1766,0.186135,0.346433,0.977438,0.951551,0.0951172,0.835874,0.0711128,0.0984302,0.191899,0.654312,0.39115,0.042087,0.605286,0.0716612,0.00258964,0.639897,0.674085,0.593867,0.319768,0.469285,0.605077,0.709493,0.52641,0.0962439,0.169566,0.772115,0.0691372,0.785936,0.253381,0.328077,0.567851,0.468624,0.569565,0.16655,0.0934346,0.214402,0.826393,0.927261,0.432607,0.538569,0.917534,0.808768,0.656059,0.54934,0.355974,0.559178,0.158724,0.644659,0.351019,0.953093,0.638823,0.0830351,0.183051,0.899187,0.374134,0.896909,0.825779,0.539579,0.0711691,0.105396,0.306728,0.924753,0.189017,0.844788,0.109213,0.102081,0.280586,0.0825394,0.952194,0.600078,0.170089,0.866093,0.596292,0.790423,0.537945,0.962125,0.434751,0.305597,0.160243,0.281018,0.201441,0.331795,0.166981,0.555831,0.655593,0.330329,0.205571,0.565872,0.156002,0.513137,0.10465,0.411958,0.835527,0.205399,0.599126,0.272426,0.0673356,0.945749,0.553701,0.514578,0.333153,0.786788,0.53652,0.134233,0.918903,0.871899,0.672853,0.150986,0.705629,0.800741,0.175583,0.32078,0.604834,0.532094,0.785315,0.465879,0.0628194,0.157999,0.623723,0.295437,0.705892,0.107029,0.104935,0.884696,0.443616,0.486801,0.8459,0.640801,0.862751,0.488432,0.443033,0.475058,0.687127,0.091585,0.961011,0.230727,0.695525,0.433601,0.79099,0.356628,0.604756,0.801376,0.743401,0.916129,0.0388757,0.642042,0.0400596,0.937835,0.0883942,0.877572,0.277721,0.493905,0.566357,0.735989,0.169586,0.33196,0.49571,0.279059,0.207064,0.312608,0.824806,0.42349,0.11774,0.317648,0.192393,0.452786,0.658925,0.0840646,0.148313,0.589705,0.0419714,0.821687,0.598945,0.180061,0.871753,0.909474,0.135799,0.0439287,0.903027,0.844608,0.474931,0.154939,0.117008,0.265657,0.437264,0.796458,0.179395,0.908535,0.0522426,0.845335,0.206234,0.566291,0.366935,0.15139,0.660725,0.644413,0.410401,0.820486,0.994639,0.280527,0.616851,0.621963,|0.382769,0.613946,0.584675,0.715756,0.698493,0.591999,0.65535,0.099124,0.821542,0.0828119,0.371754,0.582146,0.754198,0.896489,0.42614,0.526702,0.300059,0.71601,0.525667,0.77748,0.763378,0.418404,0.773389,0.287671,0.279119,0.908127,0.69358,0.327283,0.246627,0.620733,0.486436,0.948468,0.720108,0.887767,0.291853,0.623493,0.401444,0.691693,0.855144,0.710483,0.471345,0.157772,0.459814,0.485329,0.184009,0.13733,0.0737818,0.7598,0.235596,0.219994,0.973195,0.670212,0.147078,0.548491,0.383964,0.384709,0.0904458,0.812545,0.785118,0.537911,0.315577,0.495532,0.487698,0.940213,0.298011,0.326131,0.0802425,0.0229331,0.0603372,0.00171274,0.791544,0.621335,0.402534,0.868483,0.763121,0.725858,0.980158,0.590681,0.720833,0.732021,0.573507,0.81559,0.37851,0.0315491,0.941728,0.0640368,0.00123954,0.666135,0.137316,0.563833,0.570782,0.0519512,0.252354,0.0771769,0.200604,0.187825,0.0510867,0.312911,0.455002,0.279595,0.0582262,0.481515,0.492851,0.902826,0.520483,0.720235,0.226602,0.383029,0.0761571,0.167319,0.291165,0.307251,0.0288153,0.702171,0.58373,0.432469,0.388507,0.423094,0.659465,0.43879,0.564303,0.885499,0.776259,0.835073,0.427845,0.437366,0.500469,0.364552,0.941248,0.40862,0.929245,0.253611,0.0683292,0.464532,0.20948,0.483213,0.104821,0.215511,0.938042,0.781161,0.733931,0.579947,0.657489,0.0418371,0.278361,0.89574,0.341715,0.428002,0.119337,0.0447589,0.69647,0.20009,0.95613,0.427462,0.637352,0.310453,0.185873,0.735552,0.619973,0.370871,0.473348,0.996063,0.307302,0.422435,0.184502,0.824816,0.539989,0.319055,0.195353,0.272066,0.516079,0.107894,0.189745,0.420535,0.755097,0.745382,0.786685,0.118324,0.388953,0.0914817,0.240097,0.115541,0.219699,0.3064,0.740649,0.995584,0.694462,0.197715,0.0933326,0.444227,0.135038,0.25963,0.233724,0.762073,0.773787,0.506895,0.549111,0.857239,0.26797,0.296188,0.811967,0.590147,0.383459,0.100031,0.931475,0.551491,0.408659,0.489637,0.732185,0.294084,0.435526,0.508388,0.144688,0.359063,0.471909,0.00890464,0.805192,0.388912,0.199328,0.510619,0.895552,0.417735,0.981917,0.960879,0.0402243,0.100011,0.0230043,0.315293,0.839996,0.259458,0.376782,0.684046,0.815295,0.402648,0.595319,0.863919,0.604532,0.173299,0.160879,0.629167,0.37624,0.599472,0.955615,0.731009,0.0935763,0.81906,0.115427,0.97075,0.040773,0.00717479,0.791769,0.719054,0.875995,0.874468,0.151564,0.567256,0.774657,0.0647237,0.381976,0.787414,0.624964,0.387238,0.144349,0.619141,0.970466,0.520331,0.0403005,0.546872,0.871158,0.848612,0.495636,0.506717,0.93543,0.185865,0.0357012,0.924038,0.155724,0.0933668,0.52988,0.601679,0.985335,0.655456,0.885014,0.703038,0.345322,0.390112,0.931695,0.0216523,0.914077,0.32716,0.735495,0.0342436,0.304833,0.221484,0.79622,0.72444,0.448811,0.378386,0.887579,0.879096,0.252332,0.579364,0.631522,0.312104,0.0584952,0.629554,0.941937,0.358568,0.000330091,0.539657,0.0664467,0.865037,0.952434,0.426975,0.544253,0.52913,0.971712,0.721745,0.516414,0.988385,0.638353,0.81514,0.326966,0.651046,0.340679,0.579807,0.568957,0.696619,0.870975,0.13261,0.454115,0.89005,0.0825405,0.442159,0.692529,0.0863298,0.94543,0.186805,0.273538,0.876661,0.194115,0.737193,0.53666,0.744675,0.0880987,0.927354,0.838754,0.328145,0.776775,0.0384911,0.383027,0.236633,0.196394,0.365908,0.737629,0.452866,0.0573812,0.148025,0.706703,0.336541,0.981447,0.752358,0.655635,0.262437,0.790594,0.899383,0.539104,0.377032,0.292367,0.0959048,0.981395,0.407653,0.431006,0.795854,0.476686,0.952017,0.643255,0.666595,0.523705,0.766252,0.452103,0.503005,0.594972,0.836587,0.303607,0.826465,0.629807,0.509074,0.416753,0.557072,0.39637,0.351161,0.172954,0.405226,0.0323156,0.492342,0.0469058,0.828777,0.320853,0.175985,0.405661,0.371001,0.0590954,0.876927,0.235194,0.899501,0.233103,0.289011,0.935135,0.615889,0.876258,0.956914,0.24923,0.635511,0.777961,0.772548,0.550084,0.80508,0.468078,0.584198,0.864421,0.561434,0.882104,0.486548,0.0936561,0.141426,0.370422,0.944365,0.228125,0.7471,0.680171,0.456895,0.763836,0.77177,0.684305,0.58518,0.994884,0.501664,0.779088,0.504759,0.863466,0.232026,0.970702,0.901593,0.529498,0.15174,0.511975,0.164636,0.446609,0.0167983,0.807383,0.484458,0.918759,0.829503,0.807709,0.69842,0.107297,0.0150142,0.890226,0.61166,0.774162,0.492763,0.134296,0.241512,0.876237,0.449009,0.547348,0.831049,0.359261,0.916144,0.855194,0.185801,0.714051,0.73594,0.75622,0.0208556,0.442915,0.156581,0.22274,0.553462,0.226369,0.598155,0.679652,0.353767,0.32168,0.604482,0.489423,0.412555,0.346983,0.18679,0.856396,0.765102,0.828533,0.864148,0.39915,0.480245,0.538827,0.932636,0.620211,0.386835,0.0363382,0.657121,0.512615,0.403445,0.174753,0.128969,0.306974,0.682564,0.815833,0.753811,0.453832,0.722194,0.0562338,0.169291,0.0092063,0.936309,0.8247,0.516394,0.893817,0.849223,0.812371,0.441082,0.494493,0.988817,0.299315,0.420821,0.15055,0.138502,0.494835,0.854671,0.873932,0.887622,0.219439,0.224828,0.469475,0.938893,0.160127,0.591777,0.0826362,0.833892,0.30522,0.43078,0.22659,0.893204,0.44693,0.145709,0.580009,0.335703,0.968509,0.629961,0.294732,0.543053,0.171354,0.780254,0.12509,0.806799,0.981408,0.534317,0.185058,0.906366,0.418802,0.672646,0.135291,0.659139,0.0792165,0.599571,0.33769,0.66476,0.476624,0.374792,0.185457,0.451721,0.636978,0.116631,0.0920638,0.624759,0.553342,0.282247,0.674698,0.136553,0.0393237,0.971513,0.635742,0.274156,0.623335,0.274117,0.705862,0.320969,0.631787,0.994421,0.118152,0.303229,0.688126,0.410448,0.0654543,0.346817,0.37905,0.00945407,0.267099,0.608567,0.052667,0.941898,0.333789,0.599159,0.287802,0.159953,0.988708,0.830607,0.262477,0.100996,0.119416,0.594387,0.884165,0.0448115,0.734892,0.743627,0.697828,0.124379,0.0974068,0.607516,0.969727,0.299154,0.775937,0.00311357,0.897572,0.350547,0.119313,0.682421,0.25344,0.811117,0.356354,0.589892,0.471817,0.665881,0.585497,0.44334,0.130508,0.223934,0.67688,0.237544,0.848418,0.250914,0.596223,0.414705,0.786342,0.0840918,0.215622,0.633295,0.495602,0.349586,0.0257295,0.468868,0.857215,0.670157,0.225861,0.802307,0.455226,0.706405,0.799805,0.472288,0.883738,0.923727,0.991395,0.209624,0.687141,0.999842,0.672161,0.441304,0.181492,0.939975,0.441656,0.684471,0.0767974,0.654719,0.854163,0.490128,0.73575,0.923572,0.931667,0.597837,0.695672,0.323559,0.418253,0.748688,0.665124,0.713877,0.0228214,0.98148,0.918484,0.76169,0.249965,0.475883,0.52782,0.813911,0.5523,0.220516,0.523696,0.725028,0.404394,0.278623,0.994963,0.894246,0.1295,0.948552,0.459935,0.213643,0.211603,0.062032,0.0849482,0.169486,0.872532,0.917105,0.388493,0.721021,0.882692,0.652556,0.941237,0.161336,0.543567,0.321521,0.0321202,0.566441,0.244314,0.626332,0.20438,0.353084,0.303832,0.878477,0.23991,0.200978,0.686678,0.490638,0.911128,0.525036,0.0212452,0.717743,0.518291,0.358878,0.0493385,0.791242,0.833508,0.113672,0.773188,0.942169,0.372995,0.190575,0.716453,0.525079,0.36968,0.510853,0.529843,0.967229,0.926702,0.910414,0.547564,0.341962,0.140166,0.680763,0.49023,0.204721,0.850513,0.822305,0.334747,0.0611668,0.88289,0.756554,0.713298,0.839708,0.771516,0.831934,0.00773507,0.0474718,0.594566,0.404181,0.284309,0.127898,0.265454,0.337095,0.432895,0.407923,0.932538,0.548753,0.75329,0.597849,0.398541,0.599941,0.0344432,0.520807,0.589288,0.927793,0.354675,0.367371,0.350531,0.271391,0.337674,0.133982,0.732781,0.278242,0.604554,0.464951,0.383838,0.65665,0.439984,0.259993,0.22517,0.0613165,0.073821,0.953546,0.0805202,0.333344,0.87164,0.425441,0.947181,0.968766,0.0870512,0.0602443,0.330974,0.66307,0.470225,0.713883,0.335799,0.0115523,0.126704,0.422374,0.366105,0.0171589,0.95815,0.392531,0.521302,0.445792,0.242125,0.117494,0.35825,0.422579,0.94478,0.181878,0.320781,0.314896,0.638794,0.894352,0.907931,0.50793,0.898671,0.647357,0.202719,0.049168,0.27143,0.0119927,0.479625,0.673299,0.610013,0.800669,0.371671,0.322372,0.848231,0.277389,0.534891,0.429677,0.302383,0.193954,0.752364,0.802075,0.668477,0.393496,0.36711,0.419278,0.839328,0.709567,0.126717,0.769131,0.368554,0.914198,0.115435,0.812766,0.705633,0.44891,0.532257,0.512858,0.410921,0.286059,0.575119,0.68128,0.449435,0.949272,0.873525,0.266941,0.590143,0.338444,0.576275,0.674808,0.316368,0.331757,0.186818,0.620789,0.646604,0.923634,0.340329,0.446959,0.660541,0.482311,0.00140077,0.562481,0.101635,0.0872014,0.469167,0.228628,0.154683,0.196017,0.728598,0.501491,0.110656,0.570579,0.236494,0.0918196,0.713293,0.120183,0.840479,0.505666,0.658722,0.463119,0.0852088,0.743541,0.817416,0.498472,0.530497,0.151965,0.89432,0.30218,0.0282211,0.276296,0.416675,0.640259,0.822198,0.857844,0.057734,0.464645,0.323087,0.347617,0.573507,0.569851,0.351008,0.537127,0.103839,0.377871,0.97999,0.66947,0.74234,0.965845,0.498416,0.320963,0.557747,0.506052,0.52974,0.312319,0.317712,0.645029,0.718357,0.536682,0.233211,0.0747883,0.324537,0.592175,0.616258,0.244535,0.443715,0.880094,0.240894,0.901933,0.819626,0.24992,0.980287,0.162913,0.13071,0.175907,0.391866,0.150449,0.00478584,0.756501,0.934202,0.283257,0.784664,0.859426,0.222427,0.0874108,0.684015,0.169326,0.63067,0.0291442,0.269622,0.723039,0.337773,0.97302,0.342947,0.567352,0.0593522,0.466659,0.904939,0.880282,0.52164,0.840463,|0.12112,0.440019,0.783892,0.576484,0.27133,0.53149,0.623049,0.163349,0.439203,0.491466,0.191273,0.981562,0.75543,0.897851,0.932499,0.171759,0.030921,0.153458,0.085548,0.435778,0.694309,0.757574,0.0261956,0.41539,0.0201963,0.144738,0.342697,0.797784,0.953962,0.0067699,0.862723,0.113441,0.44278,0.231152,0.813699,0.576334,0.0179719,0.683443,0.502074,0.24175,0.51332,0.709532,0.941509,0.262478,0.11737,0.877294,0.378001,0.340197,0.551814,0.707869,0.431893,0.370461,0.28996,0.945976,0.966589,0.694275,0.369801,0.971579,0.287887,0.0838535,0.154672,0.142533,0.107871,0.633392,0.0870693,0.807684,0.98328,0.453836,0.961864,0.445119,0.517717,0.0556105,0.543467,0.363943,0.884102,0.626718,0.830856,0.651975,0.143237,0.298899,0.750102,0.0188487,0.148118,0.654238,0.856371,0.880095,0.424688,0.31535,0.0532957,0.218438,0.0103902,0.858126,0.965047,0.855641,0.191158,0.124793,0.488141,0.186712,0.204219,0.500197,0.878861,0.448059,0.0969536,0.302795,0.78624,0.100393,0.229463,0.508102,0.0192335,0.513716,0.106113,0.169798,0.426933,0.862301,0.486171,0.688384,0.578697,0.344301,0.823718,0.158816,0.890055,0.137224,0.180664,0.0366454,0.356137,0.863315,0.898804,0.221791,0.0850604,0.849681,0.108433,0.653045,0.379749,0.106078,0.56236,0.262736,0.965204,0.957624,0.715362,0.452419,0.581589,0.0879377,0.213217,0.735675,0.293438,0.693471,0.906566,0.1494,0.4044,0.679914,0.973586,0.93353,0.639524,0.329493,0.112253,0.949385,0.851891,0.641918,0.8401,0.825109,0.125569,0.988527,0.873253,0.302977,0.61736,0.566166,0.698774,0.495984,0.317387,0.484281,0.393491,0.077317,0.39883,0.594109,0.887604,0.124908,0.515474,0.991656,0.359648,0.103317,0.167652,0.197407,0.818774,0.330301,0.925308,0.116718,0.153393,0.31142,0.198176,0.844862,0.543921,0.557803,0.933237,0.515725,0.177349,0.885739,0.0213905,0.814499,0.504156,0.375729,0.842839,0.449745,0.782518,0.1176,0.678111,0.251339,0.30418,0.894187,0.547592,0.798246,0.866392,0.864306,0.709362,0.432008,0.766975,0.746232,0.357953,0.5107,0.484479,0.505434,0.275147,0.512591,0.752628,0.782194,0.573268,0.330786,0.853449,0.397598,0.0832428,0.906478,0.542142,0.249573,0.410896,0.674849,0.848922,0.787748,0.962425,0.289128,0.845289,0.168664,0.859768,0.813122,0.634937,0.899563,0.0494183,0.828761,0.169284,0.340521,0.725126,0.4734,0.0400253,0.932256,0.94521,0.977305,0.162038,0.633458,0.681715,0.531206,0.0881574,0.986284,0.903243,0.447624,0.387677,0.294,0.85983,0.0849555,0.0984605,0.676533,0.694339,0.563316,0.451796,0.0616335,0.116675,0.787806,0.638914,0.551187,0.35224,0.537636,0.643573,0.746842,0.82494,0.561507,0.477001,0.66705,0.348187,0.923743,0.133427,0.587981,0.445383,0.78343,0.762817,0.779881,0.792969,0.118719,0.166246,0.948032,0.613759,0.406915,0.191601,0.73428,0.630801,0.766557,0.258207,0.289283,0.261142,0.0444735,0.914138,0.838128,0.659637,0.223772,0.419593,0.031539,0.893507,0.34675,0.039506,0.734222,0.312522,0.0805563,0.798639,0.152365,0.928112,0.401522,0.726434,0.218952,0.189303,0.933525,0.775158,0.104632,0.874521,0.587995,0.69146,0.714517,0.260016,0.898662,0.28161,0.445088,0.645744,0.871114,0.730631,0.113554,0.257864,0.656467,0.408592,0.552433,0.376087,0.0945774,0.356073,0.35389,0.2883,0.959903,0.580861,0.230492,0.889449,0.722077,0.784645,0.0991324,0.705299,0.279518,0.968463,0.158438,0.918949,0.0976266,0.466469,0.00946611,0.303119,0.462303,0.319336,0.191371,0.139838,0.703159,0.896636,0.674195,0.798058,0.656687,0.674501,0.528696,0.61219,0.773417,0.76129,0.00285751,0.453038,0.380433,0.0122278,0.407976,0.920318,0.0191414,0.366389,0.39055,0.865209,0.757352,0.658763,0.149943,0.591453,0.7744,0.988,0.496544,0.48105,0.253789,0.455935,0.737042,0.282532,0.820189,0.227633,0.379211,0.173292,0.354881,0.570833,0.190924,0.679368,0.368097,0.259616,0.451334,0.0721823,0.847672,0.33697,0.396084,0.563821,0.739501,0.917338,0.636565,0.803034,0.45107,0.611404,0.150328,0.506452,0.815836,0.969584,0.433159,0.941441,0.0455347,0.0672303,0.727827,0.122318,0.485023,0.58563,0.212631,0.0703749,0.437826,0.189552,0.809296,0.0278969,0.409651,0.754048,0.945582,0.928885,0.643212,0.236273,0.853018,0.467593,0.991929,0.0260876,0.105536,0.832547,0.125059,0.718679,0.0304068,0.118349,0.787317,0.374907,0.475381,0.310564,0.200566,0.821393,0.459406,0.508672,0.834925,0.766264,0.654778,0.876263,0.225827,0.779444,0.369343,0.998656,0.6561,0.714773,0.459447,0.326287,0.781383,0.831841,0.214351,0.500096,0.654029,0.947183,0.373699,0.0938921,0.0342059,0.548058,0.277377,0.0951251,0.579603,0.559551,0.875165,0.51915,0.124012,0.9717,0.718965,0.182359,0.8729,0.21607,0.450476,0.687539,0.320943,0.150309,0.381408,0.382764,0.1955,0.496517,0.647034,0.803601,0.533034,0.89333,0.643054,0.626131,0.126223,0.0964398,0.248649,0.376002,0.160692,0.873643,0.913038,0.95595,0.83221,0.93736,0.227171,0.968076,0.766053,0.999151,0.451302,0.204034,0.848471,0.405748,0.533726,0.289897,0.725515,0.402179,0.639648,0.135365,0.223907,0.341782,0.893251,0.345706,0.00410205,0.668676,0.424743,0.087492,0.959118,0.951437,0.950245,0.865586,0.425527,0.595187,0.24805,0.143802,0.453033,0.184555,0.137502,0.605981,0.0747094,0.247561,0.000289679,0.319845,0.242295,0.882853,0.582579,0.267833,0.00274873,0.42575,0.0518844,0.583176,0.446668,0.712313,0.596333,0.103555,0.202876,0.126844,0.679486,0.840629,0.917006,0.680001,0.191098,0.92716,0.752241,0.862485,0.114268,0.707451,0.944672,0.620154,0.755933,0.0175006,0.276922,0.125657,0.522322,0.857191,0.601266,0.289496,0.868973,0.693926,0.53691,0.366145,0.826101,0.634674,0.582442,0.342887,0.694231,0.901453,0.352475,0.493899,0.160232,0.693154,0.104015,0.624045,0.624929,0.971532,0.690136,0.444513,0.434191,0.844442,0.802212,0.575339,0.0402473,0.907302,0.962178,0.479893,0.358751,0.941909,0.761701,0.379661,0.940175,0.0546858,0.971384,0.309886,0.287968,0.917718,0.67118,0.068729,0.749354,0.838901,0.963952,0.294428,0.653764,0.760744,0.474928,0.525953,0.0606482,0.650883,0.00763535,0.45835,0.0487832,0.338421,0.814862,0.105193,0.699737,0.683102,0.297423,0.43921,0.47151,0.514351,0.623301,0.492269,0.584659,0.475304,0.512623,0.592481,0.751959,0.755976,0.249225,0.223338,0.235675,0.254966,0.236875,0.472792,0.909475,0.230247,0.110655,0.400249,0.365157,0.158969,0.987365,0.391534,0.521674,0.370365,0.796528,0.813874,0.992077,0.379785,0.501776,0.262883,0.84301,0.811636,0.690205,0.433793,0.146368,0.44991,0.933613,0.0294668,0.483081,0.811533,0.879567,0.196016,0.962118,0.0284346,0.171919,0.233779,0.330701,0.115137,0.821941,0.173246,0.26453,0.64223,0.75691,0.753029,0.169088,0.152794,0.804241,0.0668902,0.86706,0.915251,0.783655,0.323391,0.289591,0.359424,0.954649,0.682911,0.602108,0.482318,0.50864,0.667097,0.527615,0.439836,0.481951,0.780532,0.5237,0.196789,0.181756,0.0105718,0.841852,0.37839,0.316791,0.693601,0.560409,0.866922,0.148568,0.224983,0.759186,0.833091,0.62004,0.689087,0.517595,0.119553,0.885467,0.210763,0.900946,0.310715,0.341096,0.976145,0.443499,0.0781168,0.0615104,0.574642,0.697021,0.541079,0.928495,0.262589,0.661804,0.117277,0.131675,0.199329,0.373498,0.0216063,0.578502,0.64748,0.239414,0.595753,0.69395,0.316221,0.602763,0.960507,0.847873,0.4707,0.150587,0.145074,0.511444,0.82318,0.239572,0.360206,0.628585,0.683027,0.787644,0.191062,0.790209,0.745778,5.26309e-05,0.995182,0.392677,0.133829,0.138792,0.195564,0.232149,0.450753,0.436059,3.95179e-05,0.655847,0.44623,0.774313,0.08438,0.0517423,0.277639,0.674467,0.118781,0.964436,0.777959,0.279755,0.591034,0.614312,0.341445,0.740103,0.375347,0.756103,0.729739,0.557172,0.130788,0.85466,0.562371,0.105145,0.882508,0.575416,0.449628,0.948386,0.524687,0.620337,0.925428,0.488837,0.239227,0.215561,0.377933,0.764738,0.179907,0.414488,0.164529,0.68601,0.917158,0.378536,0.180433,0.4633,0.434562,0.896268,0.598922,0.605511,0.751941,0.141262,0.432416,0.785051,0.101936,0.365204,0.496952,0.772407,0.801213,0.153013,0.675014,0.643933,0.391658,0.266437,0.0465334,0.345483,0.370084,0.740328,0.254083,0.205924,0.0505792,0.325028,0.645138,0.0057826,0.359125,0.660466,0.351992,0.374784,0.124317,0.679241,0.467464,0.679985,0.564457,0.245005,0.949154,0.746215,0.0221977,0.438633,0.0748343,0.876079,0.281973,0.833513,0.360565,0.775017,0.975577,0.758556,0.665047,0.922748,0.764609,0.337655,0.540587,0.739565,0.998399,0.00880367,0.62081,0.328525,0.0670668,0.312527,0.587894,0.869865,0.916524,0.0416706,0.267348,0.443977,0.764061,0.831939,0.439259,0.758243,0.955794,0.512072,0.869593,0.672244,0.254438,0.977224,0.450098,0.0473999,0.520697,0.229679,0.359993,0.246827,0.891105,0.678754,0.560812,0.330106,0.875375,0.182278,0.242126,0.291118,0.66804,0.855983,0.0129302,0.755669,0.927977,0.916592,0.0322473,0.115731,0.598422,0.899157,0.981106,0.844251,0.701384,0.786996,0.760377,0.473981,0.224065,0.530738,0.998003,0.423613,0.554529,0.921704,0.67944,0.257627,0.00580627,0.267689,0.353755,0.0511013,0.894633,0.199963,0.0420704,0.90281,0.184826,0.875804,0.0301728,0.525687,0.347724,0.77383,0.367771,0.938639,0.745076,0.628256,0.805957,0.747082,0.810009,0.815081,0.298002,0.849832,0.65305,0.191851,0.884931,0.386504,0.592788,0.436756,0.582378,0.041114,0.875152,0.435762,0.0907118,0.646858,0.328584,0.216764,0.896564,0.907841,|0.360055,0.793327,0.904916,0.876572,0.976561,0.552359,0.00501114,0.815909,0.577314,0.498975,0.102332,0.0384938,0.423949,0.472604,0.0915243,0.759806,0.830992,0.258162,0.348766,0.860442,0.841264,0.475172,0.927696,0.848172,0.241231,0.377004,0.721443,0.221693,0.811246,0.474228,0.610268,0.321157,0.964148,0.394756,0.566711,0.33818,0.349709,0.72333,0.62929,0.44872,0.918501,0.444512,0.550992,0.381681,0.662369,0.395825,0.729178,0.401687,0.298299,0.727943,0.865636,0.335743,0.304162,0.66949,0.63382,0.554412,0.236286,0.102318,0.96486,0.725643,0.447809,0.0255309,0.354435,0.161618,0.768379,0.21106,0.143319,0.254931,0.863054,0.3757,0.245589,0.0529879,0.427018,0.606226,0.981098,0.0739504,0.242614,0.883631,0.364589,0.318981,0.368618,0.775758,0.139785,0.745226,0.211567,0.345741,0.337666,0.795529,0.0779683,0.564506,0.512523,0.791912,0.735198,0.948067,0.0423353,0.103799,0.0597939,0.271986,0.0457131,0.477443,0.856115,0.832068,0.956612,0.767425,0.796751,0.374134,0.10569,0.0159501,0.847001,0.078346,0.300017,0.410156,0.718318,0.0346797,0.0277316,0.284356,0.997146,0.0356054,0.764557,0.644392,0.977377,0.212701,0.965801,0.563951,0.589996,0.0149441,0.0573317,0.679289,0.249732,0.920503,0.972776,0.437534,0.840371,0.096361,0.0621181,0.681366,0.904938,0.213881,0.0698643,0.308,0.305333,0.998882,0.0252473,0.209297,0.49489,0.93962,0.0746355,0.175896,0.741621,0.326287,0.240774,0.115323,0.0693629,0.0520208,0.169833,0.806141,0.553119,0.580798,0.645177,0.225978,0.596797,0.37865,0.534846,0.079842,0.804263,0.280288,0.9991,0.318132,0.325378,0.438593,0.67987,0.137479,0.874072,0.588221,0.526926,0.284143,0.0387049,0.226508,0.300633,0.868035,0.500611,0.776594,0.823957,0.129496,0.175873,0.363835,0.241372,0.733779,0.81849,0.183368,0.982748,0.14197,0.68376,0.74608,0.861341,0.993957,0.890751,0.153004,0.316679,0.809653,0.326234,0.0931405,0.384193,0.750124,0.255275,0.924206,0.302413,0.82197,0.0372332,0.0704889,0.0327869,0.120331,0.863899,0.153341,0.828741,0.279562,0.928342,0.00505823,0.0611623,0.307534,0.940422,0.686575,0.991197,0.970141,0.0103599,0.232946,0.571972,0.885907,0.379494,0.667209,0.686891,0.630347,0.622896,0.717142,0.36841,0.606068,0.763014,0.696973,0.204686,0.0871952,0.0502809,0.034891,0.195706,0.937108,0.709045,0.371519,0.0776151,0.698389,0.359012,0.667112,0.58787,0.193678,0.75094,0.328381,0.858655,0.0572412,0.188577,0.79564,0.0628288,0.511259,0.880174,0.934862,0.283657,0.707527,0.341069,0.272717,0.371639,0.143834,0.648859,0.0733731,0.715349,0.804689,0.533591,0.738626,0.745905,0.946687,0.81275,0.908188,0.679726,0.03516,0.856894,0.245963,0.1751,0.633567,0.266514,0.32282,0.576643,0.905188,0.729411,0.804118,0.630354,0.809423,0.542816,0.298445,0.233084,0.337443,0.625621,0.956527,0.978834,0.979038,0.523636,0.559946,0.998535,0.387827,0.64318,0.618402,0.355738,0.92351,0.350748,0.613164,0.235121,0.523651,0.842587,0.440928,0.513932,0.22255,0.998579,0.0424258,0.788908,0.628377,0.0227722,0.231584,0.165025,0.756883,0.147082,0.293989,0.0421257,0.361272,0.274931,0.120918,0.234675,0.734154,0.593628,0.109659,0.317137,0.301941,0.036985,0.804445,0.583834,0.743724,0.223664,0.23351,0.0933647,0.834868,0.387768,0.897521,0.0167153,0.972498,0.246048,0.78001,0.142181,0.575842,0.813712,0.638548,0.618253,0.109254,0.0163958,0.431091,0.0290079,0.655924,0.98252,0.661718,0.0449229,0.347805,0.247724,0.0676528,0.642402,0.957053,0.231515,0.488057,0.661748,0.684161,0.112612,0.782941,0.627081,0.266223,0.76209,0.214931,0.304986,0.754221,0.55647,0.937079,0.859588,0.470634,0.064353,0.856259,0.963746,0.53501,0.886235,0.572555,0.57438,0.147397,0.954735,0.40744,0.144175,0.329922,0.863417,0.670162,0.435814,0.23606,0.148405,0.714828,0.546108,0.799666,0.270321,0.0307397,0.352791,0.858749,0.906065,0.49376,0.292201,0.555756,0.021666,0.820365,0.812155,0.419079,0.363116,0.403114,0.652554,0.458997,0.108192,0.725955,0.896307,0.155991,0.730376,0.89898,0.0575878,0.798244,0.907001,0.910212,0.613514,0.12746,0.0294082,0.317562,0.748707,0.407745,0.180223,0.727495,0.360279,0.961831,0.482342,0.754332,0.837936,0.266698,0.686501,0.0598007,0.756693,0.145225,0.286201,0.746484,0.940865,0.33978,0.346348,0.138848,0.0561045,0.270598,0.468892,0.523157,0.757355,0.856213,0.360859,0.649233,0.631131,0.626957,0.567613,0.637453,0.3258,0.453549,0.81434,0.0156056,0.15905,0.758244,0.808097,0.426651,0.537213,0.163108,0.996729,0.912023,0.357889,0.685283,0.131229,0.483361,0.0323888,0.871408,0.987974,0.176069,0.988953,0.61318,0.443317,0.307391,0.948543,0.61836,0.926731,0.59331,0.978128,0.0174538,0.495928,0.0158277,0.964827,0.711694,0.494977,0.145773,0.82791,0.287204,0.586345,0.498954,0.587698,0.377475,0.205733,0.176235,0.918612,0.950295,0.922304,0.721543,0.314933,0.877636,0.0150774,0.595492,0.221056,0.189588,0.538129,0.437886,0.507216,0.819093,0.528046,0.185231,0.158729,0.343926,0.506633,0.973609,0.276217,0.439433,0.555029,0.54149,0.418351,0.0948392,0.477024,0.73343,0.0407453,0.292078,0.672653,0.787458,0.828829,0.867423,0.548364,0.696866,0.757648,0.0974939,0.488884,0.389075,0.655113,0.697089,0.370756,0.798601,0.0302182,0.192948,0.0638485,0.443118,0.121047,0.101927,0.398532,0.375578,0.664337,0.496384,0.188612,0.510545,0.678515,0.242978,0.186862,0.439723,0.221381,0.583896,0.588409,0.400348,0.180208,0.410627,0.805771,0.205246,0.840671,0.658015,0.53686,0.026875,0.433201,0.942103,0.519369,0.657634,0.0185349,0.827981,0.118582,0.377433,0.0345901,0.197548,0.0729105,0.602986,0.0147998,0.398693,0.814004,0.375793,0.168837,0.391614,0.066473,0.85831,0.0728673,0.359807,0.244516,0.275527,0.930332,0.740398,0.972776,0.450993,0.953581,0.584024,0.81106,0.275783,0.70214,0.569623,0.456735,0.305587,0.0692027,0.973298,0.240246,0.761092,0.90058,0.121095,0.232883,0.689448,0.78232,0.983159,0.493186,0.60115,0.975209,0.630233,0.856034,0.464879,0.484413,0.236515,0.205655,0.120851,0.495451,0.206033,0.764501,0.719468,0.529248,0.86487,0.406414,0.931252,0.648805,0.467394,0.610383,0.624148,0.816655,0.299295,0.283276,0.495326,0.966093,0.258904,0.272748,0.93179,0.490901,0.634187,0.157873,0.566421,0.710097,0.183348,0.545029,0.532278,0.608032,0.636099,0.377524,0.584113,0.824474,0.627323,0.3628,0.24416,0.230794,0.556091,0.428385,0.424444,0.32977,0.662426,0.52374,0.0320984,0.00607908,0.677344,0.119439,0.535544,0.155169,0.192408,0.39851,0.534374,0.204069,0.5409,0.325014,0.583198,0.350853,0.874997,0.989254,0.843363,0.169211,0.507696,0.434493,0.248235,0.210949,0.277374,0.64159,0.0134658,0.253865,0.444458,0.796827,0.0587305,0.911309,0.829766,0.573877,0.875609,0.788874,0.976104,0.811037,0.249921,0.678214,0.67454,0.0777097,0.252969,0.75812,0.705655,0.912187,0.147559,0.599462,0.379814,0.152755,0.669357,0.112716,0.437251,0.487689,0.19122,0.329032,0.768297,0.705728,0.450898,0.565952,0.756224,0.123216,0.861893,0.88504,0.530775,0.316171,0.980938,0.770515,0.371949,0.759864,0.822024,0.521636,0.178973,0.472536,0.485069,0.622321,0.352262,0.393376,0.90228,0.340206,0.149377,0.591619,0.865645,0.0350265,0.994166,0.628701,0.562233,0.806757,0.86229,0.828159,0.25924,0.980852,0.0818488,0.191846,0.856977,0.430664,0.0397037,0.0270513,0.837966,0.534165,0.244422,0.503345,0.334337,0.19239,0.408847,0.838839,0.514538,0.735305,0.494619,0.416341,0.437776,0.269386,0.000907302,0.44607,0.495962,0.191171,0.213539,0.157476,0.364795,0.705315,0.242794,0.469839,0.269981,0.459179,0.253591,0.0954925,0.295399,0.922086,0.767148,0.0844758,0.974025,0.531368,0.196916,0.217862,0.540722,0.477295,0.851019,0.848688,0.109454,0.781155,0.110955,0.560067,0.634869,0.213499,0.466979,0.618626,0.95893,0.32553,0.424901,0.168672,0.538522,0.295554,0.533646,0.73164,0.993084,0.0183004,0.90875,0.392497,0.649078,0.268093,0.642262,0.294604,0.743013,0.846835,0.866451,0.497296,0.519859,0.665196,0.706612,0.634649,0.730217,0.777479,0.592658,0.488036,0.504895,0.633559,0.991653,0.741312,0.592858,0.855294,0.0480711,0.0708382,0.240415,0.0444001,0.611816,0.143214,0.540085,0.376932,0.842029,0.676038,0.653019,0.966597,0.773031,0.314968,0.24806,0.216524,0.292439,0.186497,0.646357,0.122424,0.487045,0.0663934,0.569921,0.21429,0.744018,0.437712,0.459139,0.53794,0.286945,0.722821,0.905824,0.689026,0.811727,0.832158,0.645682,0.0646067,0.525859,0.02807,0.272292,0.127375,0.84053,0.458753,0.854996,0.0524409,0.959394,0.75526,0.674205,0.711788,0.207286,0.241778,0.314818,0.910074,0.468706,0.656275,0.507406,0.758529,0.48262,0.868544,0.667058,0.472925,0.223032,0.209932,0.801361,0.0222207,0.0282027,0.0719196,0.223353,0.104522,0.287803,0.93389,0.495777,0.941111,0.359403,0.277228,0.894975,0.208812,0.824538,0.587614,0.923419,0.165202,0.689896,0.700074,0.462556,0.294288,0.89166,0.513384,0.461195,0.0949258,0.912569,0.176602,0.980901,0.989599,0.250696,0.162902,0.577978,0.0785839,0.98198,0.183249,0.634792,0.475343,0.29235,0.8938,0.990269,0.107115,0.616314,0.824922,0.0637335,0.487514,0.139666,0.492486,0.75066,0.0227028,0.511908,0.884051,0.122688,0.775148,0.389566,0.741632,0.792023,0.867909,0.635812,0.888001,0.59502,0.171374,0.26738,0.582267,0.333605,0.46893,0.984865,0.745257,0.701697,0.8507,0.516229,0.973714,0.152583,0.402562,0.430787,0.150449,0.340309,0.0857422,0.660545,|0.500078,0.184831,0.571361,0.0541199,0.893209,0.206594,0.84996,0.5056,0.962809,0.234761,0.995128,0.221621,0.72847,0.949667,0.919365,0.440313,0.444665,0.775853,0.227846,0.291466,0.130024,0.0586729,0.449985,0.948329,0.237916,0.00451398,0.655083,0.132976,0.522513,0.580238,0.905051,0.52992,0.863419,0.703848,0.163026,0.330583,0.249239,0.598828,0.80806,0.0443907,0.964974,0.360627,0.231771,0.560706,0.123135,0.869826,0.40261,0.0420268,0.713847,0.432815,0.832522,0.534375,0.218348,0.5954,0.521663,0.619628,0.417217,0.710646,0.547553,0.895894,0.0584579,0.880856,0.834548,0.44222,0.945209,0.357487,0.0166003,0.488608,0.0190547,0.0366516,0.947824,0.783837,0.376416,0.871988,0.975788,0.55309,0.546845,0.680785,0.00973803,0.0502926,0.340401,0.356641,0.240581,0.345504,0.824379,0.992835,0.767347,0.635031,0.912086,0.80685,0.0407498,0.0321066,0.00216591,0.709978,0.727556,0.940057,0.00110233,0.0144358,0.485119,0.492429,0.465433,0.36551,0.198641,0.685013,0.46458,0.842604,0.314249,0.0682445,0.352848,0.279076,0.656672,0.823156,0.624652,0.142253,0.274445,0.832746,0.0676776,0.18968,0.292247,0.809248,0.471236,0.206149,0.379559,0.802744,0.684593,0.468818,0.0161244,0.968255,0.663958,0.0517989,0.098027,0.510258,0.229167,0.50455,0.271149,0.0652486,0.395586,0.790299,0.695211,0.795697,0.461936,0.550978,0.447958,0.290346,0.289825,0.351916,0.159997,0.518575,0.708534,0.0276388,0.806005,0.802181,0.792799,0.613624,0.231705,0.812512,0.112809,0.84466,0.751872,0.311414,0.985782,0.436995,0.392846,0.376974,0.883373,0.225965,0.155599,0.256417,0.67233,0.380348,0.838104,0.196112,0.24521,0.301454,0.570033,0.136706,0.152341,0.783972,0.619576,0.975409,0.0286354,0.167892,0.323325,0.314863,0.264146,0.202517,0.0707437,0.347602,0.783611,0.622306,0.106894,0.391277,0.214382,0.555222,0.642142,0.582489,0.659471,0.781706,0.902922,0.736604,0.821466,0.570495,0.988591,0.773638,0.140016,0.0854084,0.999254,0.628331,0.590238,0.876564,0.108019,0.555543,0.778273,0.548926,0.98904,0.32704,0.652208,0.781642,0.101081,0.925057,0.65311,0.784877,0.428375,0.00139159,0.794028,0.472654,0.434143,0.929008,0.172374,0.355679,0.535082,0.755338,0.632154,0.172966,0.953447,0.919659,0.587632,0.058142,0.698536,0.288572,0.812613,0.39032,0.0183544,0.87064,0.17217,0.217668,0.513995,0.762783,0.743704,0.657661,0.478847,0.542322,0.147695,0.295391,0.667396,0.144964,0.89145,0.665593,0.273148,0.0513589,0.713354,0.729112,0.261615,0.902947,0.609952,0.0664023,0.558608,0.00284886,0.636686,0.336982,0.648877,0.688366,0.505926,0.0723624,0.91651,0.774945,0.782349,0.192224,0.393249,0.999119,0.6747,0.771799,0.930103,0.333733,0.571802,0.260719,0.674353,0.434957,0.422104,0.356996,0.155502,0.386841,0.924788,0.903807,0.213549,0.206223,0.669354,0.42296,0.458996,0.950122,0.812284,0.332706,0.112886,0.946704,0.834291,0.161254,0.652999,0.657757,0.330543,0.784882,0.890011,0.474256,0.379474,0.754545,0.160471,0.791997,0.449872,0.0249031,0.618616,0.511299,0.771958,0.400183,0.574557,0.0965598,0.283093,0.195041,0.959338,0.523887,0.196443,0.936661,0.627472,0.791026,0.0504672,0.840254,0.229611,0.576773,0.557028,0.837871,0.487516,0.736007,0.501304,0.0341578,0.0748556,0.521556,0.478238,0.287155,0.488374,0.923583,0.693142,0.100653,0.50458,0.982219,0.963783,0.780819,0.539386,0.491194,0.845661,0.958512,0.55543,0.94059,0.473666,0.135801,0.644061,0.242772,0.227507,0.560256,0.956751,0.865274,0.683611,0.313507,0.195029,0.116937,0.195473,0.710948,0.167058,0.877371,0.498739,0.982259,0.619375,0.780775,0.151412,0.112128,0.388092,0.922612,0.630606,0.0106999,0.936611,0.752648,0.391167,0.263333,0.307149,0.953408,0.51061,0.337971,0.0750523,0.0563414,0.0431609,0.548832,0.621833,0.521382,0.0182017,0.563609,0.0736909,0.704835,0.604768,0.0290968,0.483693,0.0603241,0.143414,0.784757,0.756803,0.50343,0.94656,0.542184,0.503958,0.317037,0.0687227,0.315364,0.920333,0.712829,0.815385,0.560309,0.932905,0.739306,0.542053,0.328872,0.48983,0.188335,0.912909,0.974931,0.467127,0.844635,0.176658,0.512293,0.338198,0.14143,0.0793409,0.584194,0.94491,0.62883,0.224675,0.283169,0.988339,0.887338,0.0349672,0.422668,0.410273,0.0987284,0.850899,0.978863,0.585437,0.257199,0.987262,0.216878,0.763084,0.359644,0.10303,0.966955,0.947437,0.125257,0.69659,0.657813,0.870392,0.524404,0.20825,0.187167,0.775823,0.0331214,0.829913,0.530275,0.548222,0.792123,0.711426,0.532732,0.155337,0.37332,0.646758,0.00615966,0.751893,0.0365031,0.170734,0.490869,0.739345,0.314516,0.318721,0.861612,0.297165,0.0630434,0.792256,0.940481,0.0582443,0.623928,0.556176,0.540563,0.28813,0.978202,0.899043,0.957099,0.206645,0.829287,0.837962,0.800924,0.875142,0.547835,0.686817,0.00687623,0.0592045,0.785596,0.825328,0.935219,0.204397,0.934735,0.527925,0.878274,0.479467,0.560425,0.340967,0.376974,0.56584,0.758076,0.128537,0.889821,0.938537,0.785807,0.559167,0.735174,0.18732,0.71502,0.185429,0.323816,0.394821,0.393516,0.927877,0.927627,0.847773,0.804269,0.87581,0.101348,0.0855953,0.471948,0.693122,0.500389,0.595503,0.652613,0.573233,0.0214099,0.965723,0.777022,0.553849,0.81259,0.142757,0.808747,0.798666,0.820893,0.839404,0.107174,0.600059,0.654488,0.4399,0.308836,0.0963932,0.229926,0.0938001,0.833458,0.519817,0.957524,0.524633,0.474371,0.310264,0.38762,0.93013,0.700043,0.32447,0.221122,0.0313748,0.145491,0.446854,0.28485,0.0962569,0.451901,0.427855,0.550868,0.132645,0.101565,0.805372,0.696467,0.197004,0.692347,0.554388,0.614203,0.366959,0.626095,0.140369,0.632049,0.354526,0.437053,0.832958,0.00284725,0.867611,0.401807,0.821593,0.495538,0.548045,0.44921,0.291995,0.451796,0.508301,0.841419,0.078194,0.90957,0.669742,0.571479,0.794869,0.933918,0.796099,0.603746,0.53891,0.00666547,0.749492,0.718988,0.931993,0.458662,0.924153,0.397382,0.1433,0.87707,0.0770296,0.81152,0.378804,0.81633,0.496198,0.650651,0.109464,0.883408,0.378229,0.438613,0.170175,0.463789,0.165924,0.305931,0.22047,0.60685,0.522927,0.546994,0.720066,0.265777,0.0992419,0.10048,0.875478,0.523611,0.014532,0.596594,0.838514,0.451206,0.321387,0.772734,0.119797,0.751322,0.118787,0.761031,0.340967,0.997845,0.797251,0.169913,0.578155,0.184496,0.033085,0.318353,0.364656,0.0568034,0.632854,0.131914,0.0735978,0.252748,0.72624,0.00736797,0.941549,0.214189,0.403106,0.282553,0.543822,0.5252,0.235615,0.734576,0.707825,0.345068,0.748878,0.511299,0.794173,0.472003,0.338522,0.874411,0.0538247,0.365764,0.808439,0.537569,0.708882,0.374179,0.906919,0.426437,0.155392,0.0406125,0.255525,0.932476,0.132994,0.996013,0.368663,0.39537,0.554499,0.362764,0.683526,0.841902,0.129651,0.587754,0.252401,0.124236,0.141484,0.260443,0.932832,0.760732,0.0273308,0.252054,0.834428,0.521501,0.592551,0.0203118,0.608617,0.341986,0.882149,0.495905,0.800032,0.892496,0.619061,0.255203,0.0286673,0.264523,0.476346,0.240386,0.945114,0.619574,0.443954,0.761642,0.150914,0.439494,0.856403,0.200377,0.608819,0.912494,0.514451,0.238637,0.22076,0.999736,0.21641,0.720081,0.930642,0.12468,0.0455887,0.385382,0.175348,0.88618,0.427397,0.358128,0.241787,0.471786,0.965269,0.251248,0.404511,0.95616,0.414936,0.0189724,0.835383,0.528624,0.794122,0.253385,0.0972732,0.927072,0.288238,0.599752,0.194786,0.424647,0.972309,0.888922,0.996458,0.673193,0.611006,0.0918616,0.307692,0.330637,0.0874282,0.348968,0.45648,0.404473,0.385739,0.85132,0.777535,0.103564,0.00307518,0.0988879,0.828156,0.0709088,0.967664,0.504334,0.451204,0.154048,0.491144,0.83686,0.846527,0.23567,0.496197,0.730473,0.525137,0.441849,0.99097,0.726075,0.523156,0.869268,0.759075,0.327713,0.549951,0.775669,0.277806,0.363083,0.642118,0.296137,0.716603,0.739871,0.813629,0.356491,0.441069,0.604458,0.69998,0.238717,0.740554,0.853895,0.497107,0.415613,0.854054,0.846125,0.631942,0.0319542,0.498752,0.034642,0.537963,0.735102,0.554307,0.709187,0.884933,0.452307,0.891545,0.418082,0.738133,0.600084,0.971393,0.325921,0.720571,0.98489,0.718297,0.492684,0.756225,0.815741,0.0845982,0.0319309,0.552435,0.849354,0.668327,0.210338,0.345733,0.675753,0.78906,0.996163,0.400068,0.110357,0.410367,0.954135,0.515498,0.704879,0.812968,0.0839915,0.288256,0.914196,0.838164,0.371832,0.73129,0.433558,0.685793,0.754381,0.39038,0.877133,0.0373789,0.799895,0.938867,0.658313,0.620447,0.188723,0.93179,0.117433,0.858101,0.39978,0.970795,0.267827,0.264699,0.62407,0.932808,0.421254,0.159594,0.858168,0.875858,0.133665,0.877127,0.287266,0.826796,0.275984,0.162959,0.161483,0.529802,0.439761,0.408239,0.950569,0.780281,0.762629,0.097207,0.376213,0.120827,0.495684,0.846516,0.783842,0.791701,0.0452115,0.37146,0.259165,0.840798,0.913008,0.914413,0.300638,0.871801,0.742247,0.520478,0.513325,0.999574,0.906778,0.645386,0.413525,0.498606,0.43137,0.19962,0.553612,0.0734524,0.0355042,0.502372,0.779819,0.769976,0.140351,0.0279156,0.350306,0.518233,0.762754,0.609937,0.936103,0.778349,0.115512,0.68538,0.754287,0.745484,0.460178,0.480679,0.0107871,0.809372,0.792708,0.819097,0.556092,0.31645,0.734804,0.153235,0.308823,0.0104273,0.888827,0.757589,0.930463,0.939498,0.710962,0.672632,0.235548,0.628935,0.0475786,0.152153,0.559004,0.231213,0.0912367,0.712895,0.102156,0.179553,0.269234,0.133871,0.475813,0.488004,0.56095,0.240006,0.369226,0.564032,0.048451,|0.241225,0.536987,0.419138,0.914629,0.0286539,0.482228,0.868304,0.974593,0.739111,0.862872,0.292814,0.916687,0.594179,0.231771,0.590367,0.64977,0.465474,0.915287,0.236502,0.0130758,0.92456,0.96042,0.39858,0.739505,0.750266,0.397067,0.023011,0.627254,0.481507,0.829888,0.0847103,0.161465,0.308347,0.321606,0.258148,0.615118,0.53272,0.592602,0.469208,0.352227,0.713092,0.745253,0.195433,0.223207,0.921658,0.638545,0.667232,0.955391,0.686777,0.829938,0.167412,0.763639,0.0894538,0.241905,0.451352,0.852576,0.88422,0.929458,0.114591,0.506003,0.26714,0.261348,0.30304,0.838763,0.403128,0.145225,0.914743,0.273207,0.0950153,0.621529,0.772136,0.638838,0.906729,0.33604,0.221978,0.844968,0.753216,0.753584,0.760226,0.909205,0.328171,0.904189,0.0156354,0.813397,0.885776,0.551836,0.947017,0.145518,0.347019,0.25355,0.958693,0.824732,0.896757,0.824321,0.313925,0.35671,0.842104,0.388969,0.33214,0.804679,0.0170445,0.451779,0.960462,0.840923,0.0540679,0.870011,0.7159,0.374898,0.0160985,0.221229,0.327237,0.960907,0.429215,0.622337,0.956606,0.811704,0.315885,0.256065,0.742892,0.500882,0.183971,0.563424,0.262717,0.830673,0.789687,0.798254,0.554198,0.0706048,0.167999,0.808122,0.841181,0.62439,0.222795,0.20877,0.304136,0.520377,0.698542,0.177573,0.821996,0.703161,0.274902,0.764478,0.506051,0.654956,0.975443,0.207259,0.05635,0.335056,0.685694,0.562537,0.26698,0.531322,0.671993,0.357021,0.108803,0.391279,0.0763395,0.342554,0.466129,0.755282,0.0267128,0.45792,0.581575,0.207947,0.0286875,0.828417,0.564044,0.491001,0.10749,0.464684,0.426872,0.0913455,0.598961,0.355533,0.33255,0.00123769,0.342163,0.945487,0.738675,0.89827,0.779536,0.293028,0.590675,0.177557,0.636542,0.675023,0.910713,0.525731,0.361391,0.420709,0.0648211,0.107238,0.994628,0.495121,0.462741,0.59299,0.824894,0.782839,0.417101,0.909068,0.534069,0.554657,0.23883,0.370201,0.981814,0.277045,0.326584,0.607308,0.238908,0.933202,0.529399,0.711249,0.378637,0.168151,0.308412,0.789291,0.650888,0.181634,0.489207,0.868687,0.15642,0.110294,0.887055,0.0987577,0.885118,0.0463306,0.286386,0.536938,0.784312,0.0432015,0.479737,0.830912,0.625195,0.114553,0.457125,0.898464,0.31312,0.99768,0.223854,0.640902,0.306278,0.220516,0.209652,0.736416,0.21078,0.630888,0.104526,0.361847,0.873843,0.174794,0.0407292,0.00566471,0.760117,0.782778,0.0795357,0.442558,0.0457378,0.502418,0.0257512,0.0612446,0.895805,0.202625,0.761709,0.255214,0.0889279,0.435018,0.0503235,0.885048,0.0592968,0.802383,0.130446,0.969148,0.149336,0.168499,0.243208,0.223604,0.043098,0.81543,0.332352,0.95192,0.522435,0.540667,0.149182,0.0403809,0.0363763,0.20414,0.0600293,0.80782,0.175609,0.636219,0.316647,0.75021,0.51399,0.0403675,0.0211424,0.895569,0.254297,0.367949,0.890643,0.794248,0.152976,0.631802,0.519648,0.232747,0.404409,0.663418,0.172231,0.527009,0.597157,0.633772,0.690995,0.595919,0.134524,0.804653,0.345129,0.636908,0.916398,0.778605,0.621398,0.666924,0.345794,0.882047,0.351691,0.919545,0.345874,0.504975,0.239983,0.804973,0.992545,0.145036,0.406295,0.332765,0.127963,0.847413,0.850676,0.52513,0.0463888,0.747249,0.945999,0.856478,0.827344,0.185828,0.209577,0.557162,0.708873,0.646673,0.486745,0.0904327,0.469505,0.26286,0.752787,0.506486,0.474848,0.211003,0.40661,0.520183,0.293124,0.911409,0.600812,0.210733,0.52912,0.291684,0.274033,0.275488,0.934594,0.808573,0.115558,0.462257,0.172588,0.193399,0.796326,0.21658,0.474491,0.162208,0.54147,0.918834,0.0119128,0.082419,0.721802,0.875206,0.39286,0.062801,0.985429,0.3141,0.822601,0.627824,0.4439,0.274667,0.799276,0.77098,0.871135,0.00127274,0.890631,0.678584,0.386549,0.680035,0.62515,0.165883,0.824051,0.692902,0.987047,0.441611,0.497777,0.15936,0.908466,0.352169,0.178353,0.421779,0.304791,0.165289,0.437076,0.886998,0.267282,0.054,0.245496,0.378497,0.814494,0.759779,0.507093,0.601451,0.522319,0.107104,0.369479,0.117652,0.920396,0.907371,0.912932,0.119731,0.513444,0.791366,0.735184,0.631845,0.271252,0.898204,0.872103,0.886856,0.401759,0.601525,0.337802,0.869648,0.504717,0.96067,0.425535,0.84613,0.119384,0.812409,0.542084,0.0903656,0.884031,0.869295,0.113242,0.735207,0.285417,0.846778,0.369496,0.138014,0.692394,0.2804,0.648131,0.93056,0.965019,0.87447,0.959977,0.350347,0.550667,0.320895,0.263374,0.00222808,0.207825,0.42677,0.255833,0.487618,0.704306,0.0306099,0.43994,0.994615,0.770662,0.0355561,0.748384,0.521951,0.732279,0.298234,0.184728,0.570746,0.153769,0.904242,0.908419,0.569791,0.949785,0.283925,0.260752,0.429992,0.294348,0.665564,0.680499,0.203795,0.000611901,0.913262,0.638333,0.595406,0.951978,0.164119,0.106761,0.231592,0.724444,0.223084,0.474186,0.115883,0.445998,0.300363,0.142859,0.403652,0.188476,0.717252,0.547567,0.102219,0.846648,0.985472,0.673602,0.968302,0.100755,0.0144214,0.936167,0.136972,0.438054,0.817887,0.633866,0.836343,0.940531,0.51497,0.558745,0.815797,0.847865,0.473488,0.624138,0.666963,0.0882701,0.0654366,0.929419,0.875937,0.879871,0.16558,0.473515,0.957903,0.263793,0.248162,0.47182,0.846063,0.981249,0.322107,0.885223,0.767939,0.190116,0.536654,0.425753,0.348105,0.258455,0.822549,0.406322,0.478425,0.312043,0.700896,0.843396,0.368495,0.525782,0.749986,0.506153,0.0401346,0.656386,0.891007,0.307759,0.485788,0.668229,0.653258,0.191095,0.624328,0.415552,0.209654,0.595435,0.0469935,0.137512,0.0536154,0.0511554,0.0422325,0.233219,0.0408058,0.249342,0.859129,0.304399,0.338467,0.903635,0.276386,0.12474,0.427234,0.251197,0.820653,0.142057,0.921333,0.82533,0.685008,0.639218,0.602163,0.953417,0.129045,0.641891,0.345707,0.712451,0.368375,0.897045,0.905511,0.715394,0.218767,0.536242,0.564137,0.0924527,0.231793,0.315166,0.292983,0.274963,0.00031662,0.446979,0.284714,0.643554,0.896188,0.475403,0.989629,0.969816,0.548852,0.31996,0.0450627,0.621697,0.0695059,0.501119,0.129953,0.58916,0.200358,0.126826,0.184355,0.324468,0.0196173,0.635438,0.0334485,0.084654,0.294397,0.337926,0.966203,0.161307,0.965081,0.612855,0.888019,0.385863,0.261318,0.597713,0.548045,0.635336,0.662587,0.102438,0.809018,0.0375841,0.77094,0.577638,0.440528,0.962041,0.48948,0.722314,0.387549,0.987462,0.113108,0.282941,0.343542,0.135927,0.361007,0.226354,0.250452,0.863525,0.493338,0.379386,0.251748,0.896775,0.335289,0.763926,0.00469738,0.484922,0.0950124,0.797905,0.991903,0.451369,0.463381,0.327692,0.98462,0.134464,0.882606,0.384974,0.496753,0.590102,0.50302,0.278676,0.258391,0.0124062,0.645165,0.623282,0.660918,0.323718,0.796741,0.241501,0.239051,0.498851,0.462816,0.535232,0.0201015,0.525764,0.976074,0.774258,0.855904,0.275479,0.685238,0.0525808,0.154467,0.140269,0.611306,0.488958,0.364475,0.0957511,0.749347,0.0182375,0.786577,0.726619,0.750081,0.0877575,0.935213,0.866007,0.906861,0.669408,0.00725931,0.168877,0.615709,0.346969,0.258133,0.893115,0.834219,0.998056,0.770367,0.435191,0.416749,0.758135,0.834503,0.315143,0.117118,0.463781,0.541044,0.612765,0.0514249,0.300388,0.624708,0.0254178,0.599694,0.25053,0.657133,0.471577,0.378494,0.479815,0.975415,0.99803,0.0632203,0.735092,0.475647,0.784409,0.536798,0.228509,0.837423,0.389798,0.108938,0.00750756,0.616292,0.0968384,0.987366,0.986101,0.644888,0.35822,0.542507,0.0326157,0.232703,0.244102,0.085606,0.812529,0.719849,0.0752894,0.0848365,0.955533,0.395231,0.749147,0.010141,0.235133,0.533477,0.916922,0.82306,0.0997449,0.362186,0.892303,0.938568,0.70281,0.256487,0.0907196,0.662139,0.747223,0.87712,0.050585,0.626358,0.422764,0.0737332,0.617012,0.565904,0.909428,0.481846,0.336336,0.13954,0.31367,0.555375,0.830664,0.955554,0.213183,0.314087,0.280479,0.598335,0.184067,0.976568,0.488959,0.128285,0.65683,0.806313,0.74395,0.0550376,0.711007,0.588012,0.238057,0.0132684,0.86335,0.750419,0.474147,0.735111,0.303859,0.237877,0.189906,0.303566,0.263681,0.0942723,0.260487,0.798085,0.865882,0.780605,0.468864,0.451555,0.445749,0.532283,0.507477,0.847065,0.0185013,0.288919,0.16981,0.973206,0.10228,0.170977,0.874663,0.124288,0.119938,0.318619,0.903861,0.0194143,0.501771,0.00388694,0.494304,0.0455675,0.955882,0.269365,0.646335,0.872731,0.610575,0.809672,0.461815,0.273124,0.221155,0.253903,0.513123,0.925937,0.902438,0.668956,0.0929144,0.980603,0.815237,0.986179,0.260847,0.40349,0.781769,0.934685,0.776406,0.797959,0.636247,0.260856,0.346853,0.700273,0.181283,0.277878,0.957389,0.127652,0.633709,0.113524,0.92538,0.0401493,0.583306,0.498883,0.669156,0.755971,0.485964,0.821208,0.36295,0.217973,0.868219,0.944389,0.303009,0.302906,0.345018,0.0807973,0.246146,0.952705,0.503566,0.189039,0.396048,0.234972,0.472118,0.130176,0.519778,0.494443,0.312769,0.852068,0.612572,0.0699332,0.670222,0.053699,0.628566,0.13778,0.193074,0.85788,0.350412,0.833376,0.344744,0.915835,0.551938,0.696057,0.16493,0.919559,0.907495,0.976913,0.912137,0.241001,0.578329,0.127244,0.806845,0.729031,0.686996,0.561377,0.0341371,0.383531,0.0827057,0.332516,0.736852,0.0850879,0.0803408,0.903936,0.463189,0.928539,0.257331,0.98942,0.742273,0.0387433,0.43033,0.150121,0.906513,0.647057,0.496588,0.6942,0.888543,0.296401,0.56302,0.635286,0.667362,0.378768,0.984428,0.429746,0.577208,0.967914,0.552154,0.0192056,0.771224,0.660766,0.801578,0.346666,0.663647,0.32773,0.55549,0.450272,|0.842314,0.343311,0.188692,0.560569,0.445256,0.62007,0.209031,0.119198,0.107191,0.921436,0.53284,0.0152563,0.505053,0.431068,0.000933588,0.506334,0.392449,0.209541,0.0644921,0.0546606,0.302438,0.522511,0.0440269,0.74947,0.585265,0.0135404,0.0362025,0.474179,0.64681,0.948462,0.937122,0.635606,0.710686,0.445442,0.0393931,0.612964,0.0253508,0.802753,0.519647,0.014048,0.979732,0.464663,0.582986,0.68746,0.563266,0.61914,0.332517,0.239565,0.896559,0.64834,0.71124,0.127063,0.526267,0.498748,0.609381,0.645516,0.507684,0.133866,0.607067,0.640075,0.607605,0.528367,0.54982,0.82892,0.227719,0.945798,0.545888,0.206622,0.729267,0.00319034,0.533175,0.497795,0.545253,0.469024,0.224282,0.0158063,0.234482,0.52359,0.204258,0.398789,0.876298,0.272285,0.595734,0.71119,0.698785,0.0253561,0.0423349,0.777667,0.078751,0.0377311,0.0541307,0.726265,0.115637,0.702434,0.503522,0.388065,0.0584103,0.660874,0.828687,0.967877,0.443835,0.593161,0.165483,0.784805,0.637739,0.580065,0.419758,0.376739,0.810802,0.686376,0.867789,0.303203,0.67986,0.209132,0.553054,0.814831,0.647849,0.985409,0.884823,0.776578,0.0335562,0.133961,0.6114,0.43976,0.559048,0.0667269,0.700355,0.774865,0.0254034,0.23892,0.798282,0.136917,0.281543,0.868477,0.875524,0.185845,0.349428,0.567937,0.494502,0.691091,0.230834,0.0446512,0.0153638,0.67814,0.441431,0.114869,0.388196,0.176648,0.559093,0.895574,0.486238,0.582706,0.533665,0.628091,0.578047,0.523225,0.342995,0.34094,0.71834,0.234234,0.0780669,0.13089,0.443546,0.87997,0.136487,0.685013,0.530085,0.422285,0.771385,0.0341054,0.928568,0.586782,0.664883,0.347697,0.0656466,0.931105,0.402512,0.589815,0.599585,0.124385,0.259626,0.224576,0.423711,0.486894,0.34245,0.5131,0.576135,0.948052,0.949433,0.738825,0.579279,0.0993699,0.667879,0.360163,0.839107,0.498879,0.122644,0.603282,0.867896,0.790889,0.642798,0.216308,0.324651,0.76016,0.75569,0.530857,0.0321726,0.336848,0.954782,0.0419111,0.151937,0.855448,0.933266,0.241062,0.583568,0.342948,0.955905,0.800154,0.637097,0.182819,0.70024,0.815352,0.0984286,0.448364,0.306575,0.978904,0.279584,0.515697,0.418332,0.539696,0.519515,0.306955,0.564807,0.62267,0.531793,0.0727881,0.245366,0.697443,0.584723,0.161915,0.546351,0.190124,0.853685,0.206499,0.639817,0.485943,0.52687,0.696144,0.333407,0.158538,0.0421141,0.596943,0.133124,0.154949,0.482576,0.573266,0.831462,0.489442,0.594612,0.94079,0.633268,0.177924,0.174298,0.340624,0.811177,0.642999,0.550013,0.979675,0.589155,0.449715,0.458574,0.0072999,0.658768,0.593932,0.398567,0.887844,0.0752856,0.261133,0.52989,0.490526,0.0357779,0.877095,0.169021,0.737867,0.629681,0.674566,0.079573,0.651183,0.0493919,0.0931653,0.206596,0.928675,0.322875,0.539098,0.90288,0.226853,0.209043,0.914027,0.111217,0.876592,0.404503,0.718791,0.743411,0.352636,0.987471,0.505789,0.571034,0.274568,0.887804,0.427125,0.251889,0.953482,0.196216,0.173283,0.073252,0.591401,0.6559,0.567537,0.738782,0.836668,0.905376,0.227062,0.424552,0.183573,0.499792,0.76369,0.0526938,0.153204,0.703824,0.649857,0.915956,0.0302206,0.244781,0.16798,0.0267465,0.854644,0.173466,0.242102,0.0851484,0.891026,0.209019,0.902933,0.134058,0.775384,0.641292,0.188206,0.459732,0.943819,0.963627,0.0396405,0.783445,0.684716,0.410469,0.743347,0.451697,0.827884,0.861384,0.931151,0.00536597,0.462744,0.754295,0.874767,0.275797,0.473614,0.748171,0.183151,0.188803,0.962516,0.208626,0.344592,0.699661,0.187953,0.714381,0.256383,0.756545,0.00629842,0.584695,0.984098,0.265736,0.925602,0.58196,0.606561,0.489654,0.597243,0.39642,0.632216,0.0841996,0.399971,0.228789,0.825868,0.240672,0.163849,0.695783,0.312939,0.194512,0.85313,0.821681,0.744108,0.787208,0.171868,0.329286,0.140923,0.522758,0.302839,0.753135,0.56778,0.524695,0.574198,0.405944,0.649859,0.626471,0.361055,0.694937,0.17764,0.21352,0.926748,0.218401,0.572833,0.553838,0.695317,0.131256,0.0324258,0.880444,0.331699,0.0532688,0.700051,0.380251,0.970727,0.701068,0.456496,0.222401,0.0864996,0.797092,0.223706,0.856095,0.551649,0.0906312,0.863456,0.968279,0.7366,0.401948,0.728317,0.914058,0.429786,0.149465,0.434021,0.596392,0.686556,0.407897,0.709776,0.898215,0.420182,0.0836793,0.754235,0.912266,0.0220823,0.891523,0.454859,0.101468,0.628485,0.61663,0.72095,0.966399,0.794956,0.468393,0.577738,0.798363,0.201943,0.0248464,0.572544,0.421883,0.726642,0.261349,0.106054,0.336797,0.346427,0.0519937,0.56808,0.561908,0.592805,0.863529,0.914001,0.491546,0.356425,0.247759,0.623219,0.153641,0.213435,0.695045,0.244026,0.246868,0.662816,0.573186,0.142979,0.766499,0.283187,0.410773,0.0539431,0.30229,0.575038,0.30269,0.0364907,0.723113,0.378002,0.144624,0.312714,0.950467,0.245243,0.498054,0.792318,0.814952,0.556613,0.698738,0.785241,0.636033,0.593266,0.774155,0.341305,0.984788,0.570539,0.416564,0.861266,0.820017,0.847239,0.0943737,0.133909,0.121348,0.430215,0.790083,0.329808,0.8621,0.0535392,0.0883408,0.640435,0.666941,0.516005,0.509179,0.423343,0.422583,0.678568,0.243245,0.333971,0.0958721,0.0533773,0.535451,0.0257293,0.00701112,0.0381482,0.0284681,0.958503,0.790096,0.335383,0.900825,0.886503,0.597662,0.462304,0.15512,0.837156,0.432191,0.244748,0.895334,0.965215,0.0232641,0.429117,0.557088,0.339902,0.46174,0.0627093,0.0971848,0.242567,0.352678,0.181071,0.643457,0.961797,0.524279,0.236725,0.523968,0.555844,0.703891,0.259248,0.602361,0.116225,0.651721,0.239827,0.845395,0.196075,0.249517,0.992585,0.2232,0.140836,0.601133,0.318121,0.71034,0.667833,0.940546,0.678668,0.936967,0.155333,0.724903,0.857882,0.477395,0.255911,0.444201,0.103687,0.735458,0.986568,0.46663,0.241296,0.203477,0.235951,0.0275379,0.57302,0.0621789,0.224644,0.484905,0.360143,0.433844,0.701813,0.40958,0.303608,0.400127,0.477709,0.585526,0.762454,0.614357,0.048561,0.797914,0.651277,0.706133,0.190928,0.4052,0.910124,0.717259,0.369197,0.212798,0.295145,0.0267197,0.0449623,0.282798,0.0569845,0.785663,0.194668,0.408029,0.474892,0.898161,0.117101,0.943312,0.647692,0.400893,0.0446877,0.594632,0.696923,0.240109,0.193781,0.618841,0.262516,0.814641,0.505889,0.710244,0.448646,0.248676,0.869519,0.32005,0.337238,0.343008,0.471004,0.262475,0.536795,0.757867,0.360305,0.721171,0.536305,0.182918,0.537966,0.474811,0.632304,0.707558,0.48412,0.927566,0.54263,0.987763,0.739283,0.270629,0.349954,0.943382,0.0483021,0.0539251,0.856889,0.0462998,0.48944,0.312813,0.745856,0.0657833,0.202397,0.884307,0.389275,0.761889,0.300076,0.371723,0.415638,0.974985,0.7072,0.753985,0.947326,0.632426,0.213611,0.482436,0.44871,3.08156e-05,0.694314,0.755526,0.74491,0.41706,0.422004,0.394353,0.0168182,0.861581,0.642311,0.100395,0.21652,0.74,0.681884,0.828693,0.0697913,0.0431815,0.19767,0.334974,0.721199,0.915515,0.979642,0.907314,0.833136,0.200516,0.163186,0.897138,0.691875,0.0018329,0.979901,0.706506,0.763863,0.405773,0.642072,0.0913332,0.638552,0.898859,0.865529,0.321637,0.91573,0.101169,0.641913,0.194918,0.0985212,0.564865,0.518542,0.979673,0.690615,0.324051,0.829164,0.469021,0.300225,0.644062,0.278861,0.328882,0.535645,0.373155,0.332293,0.478092,0.1038,0.0149057,0.634268,0.062355,0.518532,0.876761,0.339049,0.235534,0.292643,0.733845,0.542033,0.819714,0.836352,0.351452,0.337661,0.940417,0.097838,0.248018,0.41949,0.011568,0.0916548,0.728339,0.838563,0.415875,0.193724,0.112906,0.334556,0.612267,0.256963,0.558812,0.534798,0.759424,0.00315219,0.362089,0.459404,0.92639,0.421344,0.998745,0.72118,0.906812,0.21228,0.630142,0.413801,0.613288,0.831559,0.816342,0.651836,0.713875,0.630969,0.100536,0.0110446,0.287145,0.994093,0.62032,0.340738,0.580537,0.500326,0.639287,0.496349,0.480461,0.960775,0.207301,0.323742,0.752849,0.0133521,0.707478,0.603338,0.740695,0.109807,0.875049,0.609209,0.102196,0.569519,0.3351,0.18565,0.455473,0.141129,0.820057,0.639999,0.0902444,0.533482,0.672695,0.736952,0.904011,0.554251,0.821384,0.357534,0.667837,0.851175,0.448047,0.812051,0.99117,0.995844,0.993912,0.607299,0.889522,0.0992094,0.770791,0.0082323,0.213495,0.114039,0.148888,0.573996,0.851452,0.487288,0.941351,0.47319,0.248523,0.503226,0.951973,0.684775,0.0258132,0.995995,0.228472,0.677599,0.483885,0.868271,0.947955,0.268501,0.045203,0.196861,0.852276,0.0137635,0.106772,0.201721,0.325159,0.852585,0.780471,0.624334,0.719982,0.969973,0.307921,0.0244389,0.951307,0.156074,0.146216,0.891558,0.31341,0.466797,0.189355,0.967199,0.514225,0.188882,0.410917,0.325197,0.0710126,0.281153,0.728594,0.996487,0.434832,0.269891,0.42731,0.154451,0.464078,0.839369,0.25921,0.233003,0.124146,0.698786,0.410196,0.619637,0.855197,0.761739,0.89413,0.440357,0.28775,0.656267,0.467024,0.609454,0.337748,0.409537,0.530082,0.522798,0.410066,0.882273,0.312385,0.0556114,0.350331,0.533651,0.960709,0.595804,0.644442,0.882506,0.323583,0.536547,0.457517,0.0438064,0.867581,0.735951,0.0139449,0.837024,0.846664,0.759219,0.116547,0.385193,0.00997692,0.7655,0.404829,0.745892,0.724913,0.422758,0.996544,0.415744,0.421289,0.681756,0.711066,0.764894,0.790778,0.714395,0.591907,0.119508,0.0506576,0.0107985,0.162637,0.621614,0.780117,0.0639835,0.10803,0.76143,0.873067,0.621768,0.200505,0.884662,0.0528217,0.00940675,0.686725,0.0743013,0.582855,0.850633,0.346627,0.103442,0.440707,0.150457,|0.532766,0.339674,0.377118,0.795244,0.197223,0.524805,0.358465,0.683333,0.0208805,0.334076,0.43561,0.248499,0.0624142,0.412199,0.226546,0.717142,0.510808,0.741575,0.578154,0.5956,0.400971,0.825772,0.427046,0.0590113,0.0263678,0.933836,0.762337,0.977495,0.0819604,0.354612,0.629366,0.629063,0.41792,0.769459,0.144922,0.85505,0.767262,0.981552,0.582035,0.145251,0.0335717,0.0271477,0.0529212,0.714749,0.826295,0.730996,0.442183,0.920808,0.729857,0.74189,0.251644,0.0344525,0.614466,0.365663,0.36836,0.804243,0.398249,0.346893,0.7127,0.975562,0.462539,0.420193,0.42855,0.507974,0.762544,0.8512,0.44244,0.339919,0.703965,0.0832449,0.980574,0.436219,0.271518,0.886603,0.747912,0.0845224,0.818898,0.976948,0.181733,0.100987,0.675749,0.216859,0.945498,0.923108,0.477856,0.104432,0.6166,0.19287,0.338254,0.701637,0.00180107,0.139306,0.251274,0.22008,0.905398,0.974471,0.147819,0.12044,0.540917,0.486396,0.504662,0.84088,0.223545,0.77509,0.526957,0.345229,0.818452,0.0809938,0.433136,0.532185,0.685233,0.63895,0.476772,0.359309,0.332113,0.933017,0.924422,0.457932,0.313082,0.261649,0.315527,0.283643,0.785654,0.0639527,0.272477,0.198147,0.368041,0.376279,0.811606,0.589849,0.820752,0.486863,0.201478,0.90568,0.244204,0.538544,0.951628,0.568477,0.232809,0.206951,0.52401,0.580296,0.97606,0.761349,0.693443,0.511337,0.265138,0.78949,0.919603,0.868402,0.350111,0.527445,0.986644,0.669636,0.0317143,0.87948,0.45418,0.911687,0.0206846,0.0139404,0.876173,0.118138,0.301921,0.0570323,0.360462,0.406132,0.86769,0.523601,0.00279337,0.402857,0.358971,0.749241,0.339591,0.413004,0.480333,0.287607,0.504679,0.678999,0.0231246,0.285419,0.151919,0.160784,0.909872,0.873739,0.705076,0.322104,0.485493,0.265037,0.241803,0.253108,0.496183,0.0520015,0.0195794,0.188639,0.792671,0.331474,0.672921,0.684067,0.341958,0.75584,0.34689,0.691574,0.728971,0.263068,0.965631,0.513601,0.0911908,0.697329,0.764835,0.82396,0.189699,0.234601,0.50427,0.717565,0.408037,0.316943,0.588449,0.254195,0.802302,0.760755,0.327939,0.520109,0.932634,0.300452,0.741613,0.57267,0.285581,0.772098,0.105742,0.14657,0.96126,0.866257,0.904673,0.440445,0.204259,0.0166702,0.652789,0.587655,0.205842,0.356872,0.527518,0.0434921,0.35935,0.902798,0.251713,0.332093,0.474008,0.633667,0.94986,0.712108,0.923674,0.327088,0.821024,0.263092,0.210662,0.522565,0.3348,0.314583,0.404567,0.940714,0.683946,0.169627,0.849913,0.589216,0.972817,0.435109,0.761963,0.116012,0.49289,0.0098964,0.191459,0.51208,0.922542,0.536807,0.615803,0.540669,0.825656,0.560608,0.657692,0.746121,0.187,0.691693,0.999273,0.517496,0.555184,0.680479,0.706733,0.897724,0.726029,0.797561,0.772599,0.413255,0.933354,0.92341,0.745613,0.601583,0.833529,0.74803,0.610966,0.812494,0.436039,0.873248,0.953134,0.142607,0.408884,0.379512,0.847322,0.0640894,0.291571,0.408055,0.983714,0.175267,0.816792,0.776439,0.0823621,0.355273,0.755513,0.400867,0.6613,0.777716,0.117623,0.890091,0.917937,0.32378,0.750091,0.800353,0.478307,0.867428,0.639483,0.639524,0.746352,0.534865,0.690083,0.00503653,0.0943845,0.382502,0.249729,0.314565,0.350967,0.54067,0.822626,0.00801426,0.563851,0.939485,0.0933951,0.583318,0.536278,0.282494,0.696303,0.164665,0.705598,0.37993,0.0371952,0.661172,0.233935,0.534099,0.680306,0.23622,0.0688166,0.130488,0.773666,0.636883,0.398048,0.438618,0.886773,0.537557,0.339908,0.0296084,0.585765,0.956128,0.35235,0.0243233,0.227233,0.950574,0.53639,0.218834,0.843113,0.376926,0.864902,0.958811,0.309038,0.0917073,0.651262,0.157665,0.715875,0.795084,0.568889,0.331632,0.399918,0.24787,0.710478,0.825669,0.834897,0.984423,0.409083,0.577232,0.171073,0.0351789,0.391181,0.293101,0.91383,0.459065,0.702079,0.31777,0.228832,0.704578,0.232967,0.35141,0.44748,0.525246,0.576802,0.869342,0.459532,0.994905,0.907633,0.415951,0.470647,0.0062899,0.734958,0.778784,0.120693,0.134806,0.0276367,0.388731,0.735328,0.817151,0.0379021,0.0132925,0.163786,0.461854,0.828419,0.726554,0.810325,0.296526,0.182031,0.37198,0.422914,0.487596,0.160243,0.450451,0.767869,0.238162,0.374399,0.294996,0.907159,0.678085,0.759124,0.794819,0.784114,0.171442,0.287954,0.443973,0.739268,0.446523,0.816928,0.48262,0.137523,0.245024,0.874645,0.913797,0.490523,0.474445,0.526126,0.108542,0.924157,0.9555,0.182447,0.870406,0.0990552,0.294332,0.299426,0.242103,0.170313,0.438589,0.469145,0.0320207,0.565652,0.103566,0.481662,0.994905,0.487425,0.325249,0.904712,0.79915,0.954806,0.370609,0.107947,0.461779,0.980597,0.669549,0.282705,0.98773,0.190096,0.911666,0.352775,0.487714,0.828328,0.66576,0.783356,0.906678,0.0475951,0.946522,0.853543,0.119437,0.0388799,0.590472,0.215098,0.322078,0.116968,0.528321,0.370775,0.708847,0.352796,0.155567,0.811104,0.93437,0.763694,0.202832,0.412413,0.91522,0.306936,0.949437,0.729206,0.692523,0.12462,0.958335,0.0657923,0.910951,0.909394,0.36434,0.547344,0.0360642,0.158745,0.277237,0.458582,0.163273,0.738291,0.515064,0.780306,0.111784,0.0773506,0.93988,0.264589,0.52169,0.650253,0.743036,0.441603,0.714809,0.357454,0.501069,0.473097,0.469008,0.908558,0.916932,0.696031,0.0749115,0.585142,0.0775532,0.38921,0.988744,0.687012,0.692668,0.610933,0.661576,0.792865,0.823381,0.371362,0.606135,0.095935,0.540485,0.150913,0.937406,0.316243,0.467556,0.201135,0.75858,0.787193,0.335624,0.899747,0.482387,0.544591,0.19142,0.348623,0.890505,0.529935,0.292435,0.990454,0.27761,0.538735,0.344254,0.351622,0.837763,0.270481,0.892297,0.308107,0.352989,0.0974013,0.483505,0.958184,0.985994,0.412966,0.430991,0.802405,0.685733,0.846221,0.756029,0.825581,0.931332,0.863075,0.148125,0.872474,0.0534516,0.313327,0.00204039,0.772967,0.924848,0.225118,0.127329,0.395295,0.160469,0.293725,0.536228,0.314905,0.93202,0.0450726,0.875572,0.207348,0.225613,0.0141178,0.00749922,0.58547,0.108839,0.0941516,0.50805,0.899519,0.22345,0.222521,0.384278,0.502633,0.897741,0.791155,0.349186,0.338597,0.339318,0.770698,0.603011,0.242279,0.0751274,0.753088,0.74297,0.162,0.469245,0.396402,0.20921,0.0920627,0.0493475,0.987531,0.971011,0.836055,0.653752,0.513636,0.851487,0.974453,0.774709,0.450863,0.824612,0.554311,0.0303025,0.966961,0.413322,0.869055,0.0745617,0.178584,0.100913,0.4525,0.553919,0.808062,0.514916,0.99428,0.377899,0.359106,0.562891,0.119227,0.441999,0.120854,0.017981,0.0540722,0.0919711,0.750069,0.0126415,0.770732,0.0373297,0.793643,0.569886,0.752306,0.530172,0.421512,0.67188,0.886114,0.962865,0.901255,0.900775,0.889084,0.781576,0.508251,0.107519,0.349048,0.31447,0.317972,0.982158,0.704832,0.5468,0.696521,0.629207,0.64889,0.095535,0.986221,0.804905,0.155798,0.85658,0.731162,0.77369,0.0341804,0.265746,0.00897312,0.324515,0.593391,0.808564,0.588412,0.662911,0.435155,0.571835,0.0126718,0.538422,0.966654,0.259703,0.111474,0.296415,0.63535,0.619597,0.268785,0.358904,0.737109,0.959943,0.139413,0.569224,0.077552,0.215566,0.154928,0.957835,0.383148,0.0790137,0.310499,0.0254433,0.306303,0.454107,0.039788,0.411309,0.758523,0.73136,0.799287,0.625687,0.292076,0.479761,0.888048,0.935104,0.106308,0.68903,0.816975,0.183794,0.13825,0.377437,0.411857,0.210448,0.67297,0.514991,0.866173,0.316106,0.63502,0.118602,0.465867,0.307959,0.667555,0.824946,0.84238,0.753123,0.959488,0.629014,0.648677,0.813443,0.0904022,0.620866,0.00431991,0.00309861,0.0189931,0.817899,0.981085,0.503407,0.38087,0.0298387,0.0703613,0.888405,0.726529,0.631159,0.659864,0.622984,0.417364,0.373322,0.0620034,0.500457,0.420383,0.131775,0.669242,0.777851,0.686431,0.633112,0.328207,0.369993,0.663317,0.43856,0.258968,0.554047,0.504071,0.261521,0.295287,0.972292,0.992002,0.77846,0.855106,0.438382,0.552426,0.531558,0.840638,0.511451,0.576775,0.0157281,0.551578,0.61391,0.588333,0.322174,0.826992,0.282554,0.0391724,0.846214,0.368908,0.362696,0.236539,0.701794,0.372134,0.863456,0.338864,0.0579473,0.742048,0.72043,0.757876,0.40202,0.294709,0.0221725,0.453362,0.511078,0.28983,0.982946,0.91444,0.378249,0.0961105,0.903184,0.394018,0.405623,0.696951,0.699609,0.746975,0.149822,0.397617,0.928188,0.351854,0.744673,0.805945,0.935728,0.487464,0.71326,0.810256,0.63989,0.820063,0.288663,0.996711,0.296506,0.329129,0.511841,0.192581,0.0386213,0.232891,0.339073,0.555109,0.161951,0.366269,0.157582,0.982539,0.0336878,0.784055,0.221492,0.720386,0.507827,0.198289,0.498118,0.67924,0.135764,0.713522,0.556216,0.66955,0.744972,0.231556,0.591552,0.716295,0.00420511,0.851581,0.259443,0.945588,0.190361,0.199527,0.618315,0.349517,0.508296,0.830734,0.279611,0.501476,0.679492,0.927946,0.400186,0.980068,0.572498,0.847405,0.441869,0.770151,0.639586,0.348407,0.156188,0.919412,0.885989,0.881606,0.0503057,0.366709,0.153024,0.697907,0.0750792,0.981636,0.112896,0.837811,0.077217,0.070457,0.822167,0.696605,0.551011,0.0217575,0.598607,0.78957,0.618023,0.971053,0.999701,0.895616,0.994585,0.339425,0.67491,0.935453,0.440685,0.636074,0.758144,0.112929,0.609768,0.565959,0.390917,0.554124,0.492117,0.179975,0.368242,0.295806,0.904133,0.222291,0.568682,0.668099,0.942611,0.367295,0.14482,0.320577,0.852281,0.405218,0.69306,0.314874,0.859693,0.192163,0.98862,0.847232,0.244076,0.791096,0.217288,0.720464,0.835041,0.0917959,0.1199,0.96963,0.0781658,|0.0394043,0.109908,0.0132825,0.0933327,0.682892,0.569242,0.684559,0.319492,0.80341,0.498158,0.542847,0.399884,0.567505,0.239267,0.277178,0.644643,0.702962,0.913227,0.1668,0.29341,0.512154,0.26253,0.755327,0.285837,0.979148,0.256317,0.0524197,0.80263,0.603848,0.298895,0.572106,0.964639,0.908671,0.199995,0.235209,0.922008,0.742977,0.782731,0.783364,0.0760421,0.326232,0.910655,0.0566965,0.883853,0.628458,0.527144,0.0181856,0.374989,0.356427,0.492944,0.953008,0.787387,0.0446653,0.340006,0.355331,0.745499,0.763567,0.0592796,0.497232,0.797239,0.294525,0.878202,0.922563,0.874402,0.910904,0.15632,0.958226,0.492369,0.479604,0.799602,0.57768,0.579413,0.992117,0.703758,0.522548,0.963282,0.141925,0.720366,0.038685,0.170109,0.55579,0.350629,0.675488,0.190517,0.0364147,0.383374,0.6788,0.961566,0.956956,0.0423652,0.0595282,0.941614,0.464616,0.165056,0.336723,0.491458,0.785459,0.424636,0.961268,0.48573,0.882814,0.0229753,0.129237,0.331017,0.499695,0.283415,0.308909,0.214782,0.854137,0.0777841,0.89701,0.387093,0.569302,0.848958,0.055483,0.440621,0.27292,0.912264,0.711607,0.773284,0.54534,0.409843,0.410058,0.0861078,0.909997,0.134236,0.986238,0.332604,0.411975,0.568349,0.56416,0.751362,0.766792,0.527482,0.348114,0.0172746,0.987949,0.0348986,0.938833,0.139788,0.358012,0.951059,0.741284,0.107265,0.964427,0.732032,0.636684,0.757858,0.460279,0.602168,0.453391,0.593537,0.669146,0.792649,0.347454,0.38316,0.975753,0.700509,0.944427,0.590143,0.019566,0.482444,0.200072,0.197811,0.480296,0.65993,0.00679392,0.758061,0.133474,0.304354,0.341524,0.37812,0.885561,0.30363,0.765816,0.662509,0.428593,0.887615,0.549257,0.410574,0.665291,0.853465,0.442561,0.0762064,0.378292,0.49916,0.600054,0.608039,0.159666,0.609686,0.119901,0.472385,0.0866934,0.267247,0.83869,0.0137339,0.337062,0.294727,0.631479,0.949253,0.552175,0.929602,0.738648,0.837893,0.0460123,0.691779,0.818031,0.639421,0.804849,0.378122,0.206919,0.698448,0.220211,0.170495,0.940383,0.184544,0.866508,0.729388,0.695262,0.717956,0.351102,0.100631,0.870351,0.971639,0.437285,0.882629,0.501195,0.816235,0.744755,0.338378,0.865655,0.940558,0.199288,0.826123,0.665041,0.207972,0.847993,0.3141,0.824803,0.905349,0.0808165,0.694801,0.0942919,0.716775,0.73017,0.309601,0.910401,0.984591,0.114061,0.95091,0.380414,0.582146,0.0283396,0.136472,0.638951,0.597217,0.798618,0.11978,0.496735,0.333291,0.123444,0.858535,0.183243,0.652844,0.0400413,0.353384,0.913249,0.715633,0.214873,0.510922,0.725423,0.947445,0.405705,0.660366,0.317797,0.534492,0.665205,0.117728,0.0679212,0.691673,0.882063,0.356252,0.632282,0.285014,0.158912,0.759381,0.331291,0.206268,0.32393,0.342595,0.368206,0.392382,0.733025,0.448662,0.545043,0.403162,0.45458,0.765085,0.202317,0.219841,0.917068,0.881798,0.675184,0.632632,0.436841,0.0809673,0.757386,0.71071,0.00635052,0.199207,0.938259,0.543887,0.532761,0.66459,0.99724,0.500549,0.733251,0.922733,0.754833,0.447198,0.946859,0.585617,0.645781,0.638389,0.771608,0.95035,0.0102369,0.920556,0.472414,0.272836,0.66556,0.525695,0.144158,0.585547,0.35193,0.965768,0.446433,0.087602,0.313896,0.0268612,0.182046,0.573996,0.177702,0.529142,0.611411,0.999151,0.591919,0.753362,0.89265,0.580149,0.0181227,0.86183,0.382851,0.502375,0.521022,0.498847,0.669532,0.424244,0.466324,0.642011,0.300164,0.0311568,0.316774,0.0515029,0.285906,0.424729,0.133102,0.786026,0.811074,0.954594,0.141523,0.37873,0.631148,0.416,0.312152,0.469326,0.852319,0.255848,0.733904,0.327741,0.259328,0.324115,0.918864,0.359271,0.895563,0.41357,0.510796,0.0965908,0.894645,0.206727,0.774581,0.303742,0.999802,0.0571508,0.879564,0.21268,0.134499,0.653508,0.182536,0.0494009,0.440927,0.194214,0.236136,0.715931,0.0305365,0.42661,0.197009,0.45949,0.259259,0.0872298,0.209394,0.383186,0.272472,0.335,0.982269,0.826112,0.0858148,0.250355,0.0516404,0.464705,0.769757,0.145757,0.21017,0.178628,0.471766,0.860415,0.00458473,0.679863,0.677596,0.403996,0.798515,0.350829,0.678254,0.963753,0.294393,0.704983,0.134175,0.312227,0.249037,0.47978,0.881945,0.689436,0.419432,0.441565,0.0983332,0.577892,0.842366,0.221492,0.271839,0.249429,0.667234,0.225999,0.153657,0.700678,0.573083,0.352458,0.272368,0.55372,0.292286,0.374993,0.690942,0.580477,0.82935,0.415649,0.303855,0.639059,0.133769,0.989734,0.55357,0.401395,0.440077,0.225211,0.638974,0.281117,0.0427091,0.908337,0.643514,0.151686,0.599234,0.645522,0.330832,0.249798,0.132747,0.445257,0.654155,0.166521,0.595535,0.471128,0.771389,0.188963,0.33916,0.855305,0.280374,0.670294,0.662556,0.799372,0.153532,0.826033,0.996632,0.955471,0.0542312,0.350529,0.646551,0.350639,0.393721,0.490899,0.20992,0.21193,0.726858,0.564311,0.55345,0.633873,0.346764,0.0145791,0.393118,0.150451,0.956266,0.580083,0.88079,0.544547,0.687043,0.95807,0.671315,0.913955,0.760864,0.200847,0.0326381,0.0674637,0.0689752,0.342008,0.0811571,0.304415,0.874575,0.317312,0.556669,0.214539,0.225164,0.337505,0.690294,0.151595,0.270134,0.608352,0.600545,0.979097,0.202386,0.755413,0.314781,0.37461,0.2376,0.293182,0.331274,0.514208,0.0472916,0.681595,0.143917,0.563222,0.169689,0.838106,0.781325,0.621325,0.163904,0.205406,0.60205,0.263086,0.766717,0.835562,0.292762,0.219771,0.720021,0.997689,0.43602,0.913481,0.914862,0.51572,0.693965,0.0518585,0.303913,0.156394,0.535649,0.704787,0.617176,0.234482,0.380456,0.632075,0.0764483,0.190784,0.72197,0.413625,0.158333,0.98468,0.276407,0.419388,0.582731,0.341707,0.715697,0.988692,0.250791,0.805585,0.331248,0.399301,0.104372,0.239294,0.778234,0.355503,0.479105,0.0488783,0.0664242,0.484918,0.664853,0.437624,0.321461,0.26597,0.763847,0.171485,0.0536918,0.641613,0.527068,0.977633,0.683493,0.423631,0.496902,0.0245914,0.0592973,0.103705,0.477585,0.253093,0.7462,0.207068,0.205765,0.844801,0.482188,0.995511,0.423815,0.0141323,0.470374,0.176039,0.798925,0.917288,0.653007,0.26219,0.3794,0.706879,0.323634,0.414103,0.310817,0.796996,0.998995,0.330533,0.351541,0.60144,0.254818,0.245781,0.74328,0.199367,0.567046,0.78765,0.355892,0.888974,0.607048,0.699921,0.834761,0.48094,0.983484,0.185706,0.256173,0.497302,0.735557,0.217716,0.334767,0.943771,0.246139,0.710069,0.794173,0.271682,0.48921,0.990791,0.162774,0.809618,0.309778,0.417622,0.244483,0.493485,0.265282,0.246733,0.857288,0.953937,0.857203,0.248799,0.546789,0.7041,0.754166,0.119063,0.205902,0.687312,0.746362,0.627535,0.0146875,0.404777,0.359482,0.0933961,0.2057,0.273819,0.221112,0.262642,0.299688,0.622036,0.963412,0.537364,0.26802,0.310726,0.618205,0.371372,0.676891,0.396,0.016527,0.608838,0.982248,0.862203,0.0116493,0.668979,0.938756,0.202467,0.643584,0.173887,0.998752,0.715961,0.955612,0.755616,0.566514,0.322276,0.836493,0.575979,0.584439,0.799581,0.906591,0.893524,0.466336,0.0666714,0.846615,0.886319,0.655354,0.77661,0.353245,0.148849,0.0576388,0.134034,0.882501,0.630924,0.98768,0.0614465,0.414973,0.282671,0.504593,0.576177,0.0903938,0.312962,0.872285,0.870972,0.733927,0.56498,0.366991,0.411038,0.936738,0.255595,0.388464,0.473433,0.827635,0.430143,0.237631,0.153887,0.248656,0.723913,0.000593603,0.528681,0.466621,0.732668,0.119119,0.596962,0.210611,0.238445,0.0880713,0.960664,0.9683,0.763593,0.741471,0.89141,0.41629,0.0476341,0.264613,0.0913181,0.251363,0.981033,0.403463,0.61224,0.0314168,0.880487,0.352775,0.618182,0.336792,0.574514,0.621645,0.533745,0.344391,0.676498,0.999573,0.236228,0.543914,0.56024,0.0914743,0.483243,0.2835,0.540325,0.311618,0.464957,0.255069,0.554713,0.280264,0.940162,0.869931,0.328368,0.301939,0.838366,0.935728,0.0896425,0.4485,0.559104,0.0954484,0.778326,0.688622,0.838974,0.763395,0.68152,0.75486,0.41679,0.923673,0.722242,0.764978,0.726566,0.894018,0.14855,0.835526,0.0690064,0.52269,0.718334,0.806937,0.852205,0.750187,0.9969,0.571938,0.501811,0.813909,0.348945,0.689629,0.810282,0.939157,0.227752,0.618493,0.876204,0.320904,0.461685,0.721391,0.131498,0.28926,0.695027,0.546527,0.462917,0.670322,0.0294706,0.836434,0.211475,0.887857,0.943058,0.122888,0.855467,0.0751936,0.755225,0.635804,0.690914,0.868977,0.833814,0.525844,0.219008,0.527546,0.578132,0.962512,0.551657,0.519211,0.708721,0.922853,0.871761,0.798812,0.222817,0.621724,0.392546,0.0512064,0.0376095,0.868655,0.00580883,0.0476187,0.285793,0.184173,0.106939,0.705125,0.960455,0.661748,0.0241364,0.803711,0.0951215,0.233377,0.292871,0.516753,0.764154,0.928146,0.571722,0.372087,0.575776,0.922097,0.39897,0.954005,0.462065,0.640895,0.847629,0.47704,0.710768,0.468409,0.188989,0.444818,0.722638,0.445437,0.515613,0.526803,0.982328,0.909914,0.0381731,0.558432,0.679668,0.352463,0.832266,0.249238,0.184768,0.294858,0.720641,0.992769,0.745295,0.0784753,0.926919,0.0701076,0.280472,0.926768,0.648332,0.39578,0.979885,0.266088,0.328092,0.0551659,0.553497,0.0768638,0.570735,0.0394782,0.341231,0.303054,0.667502,0.287188,0.562618,0.368367,0.952266,0.900986,0.133903,0.64575,0.955059,0.683882,0.375748,0.745889,0.456097,0.160907,0.28594,0.832212,0.186918,0.300696,0.195303,0.541348,0.660401,0.870846,0.00870073,0.179851,0.104187,0.180004,0.581021,0.234131,0.582166,0.46709,0.042641,0.115361,0.875628,0.0583246,0.932966,0.416522,0.236148,0.322405,0.567791,|0.344098,0.62289,0.0765678,0.59775,0.911531,0.943643,0.0578143,0.792928,0.769317,0.411637,0.339575,0.439279,0.115439,0.952106,0.13224,0.361836,0.0161073,0.838952,0.300866,0.77071,0.580231,0.630003,0.594167,0.482611,0.718151,0.0953686,0.62128,0.071894,0.149267,0.90655,0.435501,0.621161,0.327794,0.608931,0.11559,0.314653,0.804823,0.81414,0.255577,0.529907,0.358589,0.259364,0.221518,0.544691,0.477959,0.611457,0.171108,0.107914,0.637122,0.685066,0.374363,0.0240591,0.0143059,0.39823,0.112407,0.893603,0.610488,0.898252,0.311277,0.174894,0.344685,0.989492,0.513819,0.684426,0.852008,0.494374,0.0299647,0.188954,0.9023,0.518573,0.58355,0.426027,0.805489,0.106844,0.380933,0.164057,0.096468,0.0902951,0.483659,0.888902,0.142597,0.825728,0.909939,0.493336,0.241607,0.431326,0.806804,0.38046,0.00339854,0.924845,0.869433,0.9646,0.506632,0.223107,0.151806,0.997848,0.270132,0.738412,0.325706,0.317846,0.0195439,0.0869349,0.0420806,0.630443,0.283807,0.781757,0.127901,0.469548,0.783698,0.370812,0.723932,0.252989,0.724582,0.0210724,0.254833,0.901281,0.479817,0.967245,0.217619,0.359615,0.150028,0.837399,0.902308,0.318683,0.617643,0.0953497,0.458974,0.295552,0.776719,0.925815,0.463851,0.393258,0.208841,0.677413,0.759751,0.130112,0.855422,0.5736,0.262638,0.558862,0.210451,0.601855,0.968197,0.128874,0.399422,0.568681,0.634691,0.60057,0.441519,0.116153,0.514804,0.251189,0.655096,0.202747,0.785703,0.39376,0.0213247,0.662832,0.943383,0.56034,0.555584,0.204771,0.35741,0.557383,0.512404,0.00346667,0.0218103,0.537274,0.242725,0.374536,0.782203,0.0598183,0.351394,0.203866,0.361291,0.250891,0.526727,0.949182,0.246157,0.0364037,0.203971,0.110887,0.45541,0.0402576,0.150617,0.562408,0.400492,0.140255,0.160358,0.0480747,0.390977,0.555807,0.838273,0.720682,0.743781,0.492247,0.983473,0.63064,0.969836,0.729712,0.012187,0.527428,0.935863,0.992751,0.855824,0.176831,0.00606668,0.889804,0.609035,0.691783,0.327036,0.165824,0.925276,0.969842,0.338145,0.804489,0.0828566,0.905929,0.677695,0.591341,0.122437,0.541894,0.571713,0.812232,0.754132,0.257738,0.734543,0.616549,0.834449,0.169215,0.823085,0.438409,0.886092,0.439582,0.334206,0.109022,0.62067,0.522513,0.0568937,0.556855,0.0557342,0.292779,0.973092,0.684607,0.421698,0.0677083,0.494784,0.682052,0.216994,0.503355,0.252536,0.431985,0.203553,0.13225,0.973967,0.236512,0.292368,0.907473,0.740394,0.692611,0.18444,0.579491,0.190083,0.891993,0.622296,0.556073,0.428211,0.791773,0.950519,0.506139,0.574381,0.598467,0.624747,0.0184369,0.175533,0.170396,0.40404,0.577235,0.706406,0.760338,0.77209,0.0652689,0.613909,0.291042,0.394729,0.727097,0.613423,0.0178062,0.355169,0.292488,0.302011,0.573686,0.598517,0.393006,0.644872,0.194441,0.265183,0.600997,0.376024,0.952614,0.135038,0.779786,0.554177,0.670632,0.156643,0.932932,0.466564,0.927901,0.831354,0.772537,0.904737,0.908412,0.637697,0.8734,0.825937,0.581224,0.266984,0.357456,0.297775,0.803875,0.908577,0.447673,0.800084,0.740615,0.906445,0.951883,0.597771,0.0236213,0.289573,0.0511236,0.80277,0.0363983,0.884788,0.637406,0.632644,0.874159,0.386233,0.615101,0.747169,0.459256,0.739802,0.828753,0.234039,0.710278,0.319029,0.490425,0.0461957,0.502285,0.272547,0.602713,0.162489,0.966129,0.331118,0.207075,0.110373,0.593505,0.719532,0.68465,0.506738,0.21197,0.391319,0.876045,0.0946586,0.790659,0.567638,0.100405,0.87591,0.802314,0.354606,0.357853,0.223954,0.431253,0.400744,0.799412,0.763038,0.823851,0.557687,0.518446,0.207054,0.22945,0.877963,0.547998,0.081494,0.00483298,0.753359,0.280174,0.636657,0.383843,0.675529,0.164957,0.145301,0.588513,0.512353,0.817515,0.381869,0.27208,0.595656,0.357644,0.717165,0.475275,0.0176118,0.814091,0.629173,0.0267079,0.737423,0.735458,0.213425,0.82095,0.503399,0.585044,0.155439,0.25209,0.629459,0.675704,0.0274481,0.355539,0.970939,0.695344,0.175645,0.662926,0.80994,0.570177,0.224425,0.00616056,0.271021,0.567624,0.471609,0.88261,0.772931,0.0862457,0.553374,0.106864,0.857982,0.510545,0.543576,0.826764,0.668642,0.176708,0.859729,0.865478,0.132665,0.98674,0.969737,0.914217,0.42829,0.0660411,0.531882,0.890982,0.459111,0.248274,0.306345,0.987739,0.32083,0.639208,0.120974,0.210272,0.410845,0.484025,0.58239,0.132772,0.519286,0.659199,0.949195,0.0182287,0.251788,0.459638,0.867466,0.786789,0.0436875,0.616599,0.179823,0.725771,0.586451,0.345657,0.0170379,0.1933,0.728681,0.678418,0.306241,0.102496,0.909775,0.480103,0.301343,0.927895,0.861412,0.799241,0.472565,0.270182,0.172017,0.451895,0.922867,0.482116,0.484146,0.331931,0.0913348,0.257323,0.103562,0.975906,0.761473,0.210626,0.335524,0.612079,0.446102,0.516574,0.573281,0.180268,0.309806,0.170682,0.100257,0.699749,0.594594,0.195345,0.0127749,0.650625,0.855753,0.648754,0.182219,0.984129,0.242401,0.0241061,0.66859,0.408457,0.590725,0.145905,0.669027,0.937663,0.460449,0.0168254,0.553905,0.135178,0.12548,0.564011,0.814202,0.74834,0.306106,0.771517,0.1828,0.190484,0.361394,0.798774,0.102993,0.39953,0.441194,0.352849,0.0305299,0.603598,0.46129,0.636526,0.604297,0.957424,0.959846,0.163496,0.556076,0.992165,0.0352619,0.96876,0.478685,0.325518,0.279288,0.39787,0.148929,0.475944,0.625661,0.0658655,0.703707,0.365322,0.184005,0.84519,0.950153,0.0733747,0.350938,0.722659,0.0638778,0.776247,0.201248,0.813563,0.987769,0.641921,0.306997,0.626017,0.357896,0.940882,0.766075,0.447858,0.827767,0.305581,0.982323,0.118249,0.172641,0.471778,0.906853,0.783564,0.356643,0.894972,0.0574017,0.469865,0.882386,0.17253,0.930897,0.999278,0.463943,0.491491,0.0112139,0.240788,0.910438,0.578457,0.606962,0.467096,0.704971,0.650408,0.0559503,0.530969,0.84964,0.241688,0.721346,0.496783,0.656369,0.44267,0.275128,0.724857,0.136049,0.385849,0.905549,0.50549,0.21777,0.686899,0.129194,0.22087,0.967141,0.971271,0.0246285,0.948235,0.350401,0.274246,0.427945,0.122524,0.266588,0.37789,0.999905,0.913885,0.324816,0.597582,0.784802,0.796658,0.199045,0.333418,0.773834,0.996505,0.316784,0.309498,0.80308,0.760805,0.754253,0.74779,0.490877,0.036796,0.39449,0.648976,0.0840828,0.230025,0.988936,0.831845,0.80648,0.519153,0.172438,0.459755,0.991608,0.353734,0.979662,0.631476,0.583449,0.495207,0.0256544,0.373719,0.567526,0.573166,0.231437,0.523085,0.97036,0.842808,0.285128,0.120325,0.623514,0.461085,0.200561,0.668459,0.321773,0.403431,0.124858,0.892392,0.501821,0.589217,0.218259,0.149731,0.951867,0.783685,0.993851,0.563704,0.0133299,0.400118,0.399784,0.876912,0.688114,0.31732,0.750083,0.107645,0.977561,0.351678,0.00606507,0.496881,0.824932,0.123025,0.865447,0.554627,0.271739,0.631649,0.299102,0.395513,0.972322,0.345445,0.423168,0.160935,0.360833,0.958059,0.442814,0.0498176,0.212209,0.889607,0.298995,0.839037,0.579503,0.980241,0.725028,0.920926,0.753583,0.690208,0.911622,0.449239,0.562995,0.389941,0.324376,0.437542,0.108023,0.251835,0.22279,0.681827,0.320558,0.698724,0.90832,0.725907,0.064109,0.486644,0.963303,0.905763,0.383892,0.176648,0.148964,0.338974,0.265004,0.200068,0.321945,0.861408,0.456956,0.931226,0.0994346,0.958902,0.191968,0.0808595,0.274041,0.676076,0.348129,0.243277,0.405986,0.226643,0.362946,0.998955,0.63547,0.442591,0.747078,0.277144,0.610054,0.652019,0.127982,0.871854,0.623142,0.0228721,0.343679,0.636829,0.143076,0.128902,0.211093,0.0109159,0.722778,0.811932,0.295548,0.0163678,0.195652,0.612457,0.412435,0.620971,0.399718,0.232668,0.0421612,0.0539643,0.631069,0.831201,0.197357,0.651021,0.109995,0.28779,0.828492,0.642266,0.14666,0.26557,0.954943,0.576634,0.266795,0.519306,0.420829,0.525537,0.772425,0.845688,0.868204,0.638462,0.884498,0.529987,0.608362,0.911599,0.61236,0.665016,0.557823,0.566326,0.195527,0.512611,0.546519,0.975763,0.596338,0.104609,0.3283,0.863324,0.599101,0.492873,0.161016,0.163793,0.42563,0.828128,0.455071,0.62104,0.46175,0.933964,0.536095,0.875235,0.577712,0.169742,0.585425,0.623824,0.543076,0.853987,0.256506,0.281401,0.0400407,0.0106664,0.0118586,0.956314,0.224857,0.163609,0.49567,0.693105,0.515743,0.84751,0.0263318,0.473839,0.838922,0.959771,0.0631993,0.559953,0.0396433,0.758699,0.728119,0.542897,0.280766,0.201967,0.192473,0.887912,0.311954,0.435775,0.606182,0.473048,0.250085,0.470191,0.0789742,0.104959,0.531781,0.531674,0.13559,0.0479856,0.117431,0.430693,0.51539,0.384067,0.345161,0.700586,0.0525113,0.458483,0.909042,0.821775,0.278871,0.694026,0.539974,0.183743,0.223535,0.713542,0.398276,0.933532,0.863214,0.0861356,0.618741,0.088782,0.608794,0.123788,0.21258,0.214871,0.545347,0.110554,0.926754,0.515238,0.387418,0.244904,0.470876,0.482048,0.243193,0.99167,0.780102,0.472822,0.922902,0.702347,0.651454,0.474776,0.70307,0.867904,0.434915,0.403197,0.423179,0.619418,0.936409,0.879712,0.742154,0.0431716,0.108559,0.516314,0.768277,0.559075,0.52249,0.622808,0.385244,0.535017,0.671012,0.938407,0.278418,0.765695,0.134915,0.878299,0.0520386,0.352215,0.930289,0.189757,0.124824,0.0888813,0.311301,0.0597935,0.485535,0.131789,0.350385,0.610058,0.436619,0.162268,0.750113,0.976977,0.00497019,0.523669,0.794017,0.68253,0.760373,0.890306,0.148313,0.57144,0.13062,0.784384,0.868547,0.128611,0.175946,0.267607,0.542273,0.890581,0.0887238,0.0714868,0.547142,0.00344115,0.904316,0.0842271,|0.830434,0.842427,0.6946,0.923119,0.362659,0.476576,0.798301,0.450056,0.610807,0.517857,0.92796,0.472331,0.794968,0.466077,0.244368,0.484034,0.9918,0.0321469,0.173573,0.115864,0.539953,0.898649,0.635209,0.912985,0.749831,0.713506,0.997312,0.395399,0.682469,0.536398,0.228819,0.188076,0.57229,0.290246,0.524553,0.956321,0.370474,0.480548,0.50375,0.829775,0.965263,0.791115,0.152625,0.759263,0.818699,0.433691,0.525207,0.152548,0.176972,0.858256,0.117935,0.671156,0.606511,0.256849,0.808555,0.64731,0.993826,0.827861,0.0832496,0.193233,0.408824,0.0477406,0.135225,0.436536,0.165087,0.0870124,0.967938,0.88877,0.575845,0.296958,0.901819,0.347295,0.376604,0.497023,0.41412,0.903691,0.702978,0.224395,0.637044,0.0394607,0.188831,0.436223,0.00224805,0.645102,0.770788,0.844871,0.165571,0.259506,0.0917752,0.221456,0.865452,0.314415,0.382178,0.45567,0.545265,0.618479,0.0314222,0.518434,0.213337,0.0524172,0.0415387,0.296669,0.968779,0.71287,0.928879,0.772074,0.399222,0.0831686,0.10878,0.620863,0.597095,0.888968,0.542138,0.0907432,0.849213,0.169893,0.51099,0.669203,0.786139,0.774063,0.584248,0.74876,0.880964,0.224342,0.735965,0.614,0.10746,0.0967541,0.718171,0.75571,0.202804,0.15344,0.878769,0.42299,0.202714,0.146522,0.369426,0.934698,0.0292091,0.322977,0.924732,0.181075,0.221815,0.335381,0.239552,0.0111036,0.813403,0.312974,0.717744,0.901313,0.868285,0.988841,0.0575722,0.298976,0.155396,0.781907,0.418931,0.00621235,0.763292,0.918455,0.696249,0.442853,0.363663,0.279365,0.777738,0.376212,0.547248,0.645369,0.513556,0.351304,0.00487459,0.84252,0.0222349,0.159782,0.812262,0.636658,0.359793,0.280833,0.996067,0.393396,6.65784e-05,0.451278,0.127347,0.333571,0.986841,0.0719537,0.487924,0.048238,0.259246,0.969765,0.00312382,0.15404,0.48407,0.815478,0.496656,0.36234,0.0660312,0.970074,0.442553,0.34245,0.968504,0.937415,0.682061,0.213179,0.68163,0.150966,0.0754052,0.799059,0.610903,0.417807,0.680462,0.0365348,0.467167,0.521521,0.646987,0.527949,0.376942,0.077674,0.277767,0.0958502,0.271699,0.979726,0.99565,0.644989,0.0174546,0.642313,0.33097,0.0843074,0.083977,0.518412,0.865651,0.607715,0.120079,0.771495,0.472015,0.168341,0.525743,0.800379,0.0389592,0.332705,0.554526,0.608083,0.419777,0.688103,0.0480489,0.742541,0.307337,0.0954143,0.836335,0.394424,0.770059,0.811172,0.434344,0.902208,0.235243,0.540148,0.967173,0.277539,0.109151,0.795359,0.918562,0.467468,0.691531,0.519439,0.78622,0.581457,0.599339,0.19786,0.572152,0.00220191,0.796853,0.155188,0.436722,0.0618958,0.283811,0.634355,0.137916,0.268062,0.125443,0.530322,0.524239,0.800904,0.42214,0.95955,0.663143,0.232509,0.629645,0.66411,0.0951124,0.826498,0.637723,0.897017,0.416742,0.0493234,0.18232,0.57509,0.910513,0.998761,0.669252,0.621623,0.782422,0.18417,0.259745,0.428169,0.874423,0.653845,0.722857,0.550607,0.231788,0.517333,0.299322,0.518544,0.386035,0.843264,0.346836,0.421452,0.631979,0.267541,0.826821,0.481034,0.239428,0.33635,0.859448,0.280378,0.186173,0.343071,0.529798,0.0890286,0.744265,0.0177454,0.490652,0.61379,0.555778,0.0103179,0.701895,0.0668962,0.516408,0.895353,0.342356,0.508035,0.545307,0.734344,0.655071,0.83221,0.372719,0.548068,0.654527,0.701674,0.226999,0.637154,0.98522,0.178192,0.388667,0.770873,0.573715,0.601279,0.0747075,0.671168,0.0150516,0.792043,0.42894,0.578252,0.885605,0.631969,0.505699,0.579498,0.288765,0.518109,0.674562,0.0170493,0.668989,0.690572,0.179576,0.111325,0.12547,0.641601,0.418979,0.140056,0.301891,0.134082,0.756108,0.169757,0.650498,0.372763,0.191746,0.821563,0.856341,0.416665,0.306032,0.339576,0.369458,0.291678,0.119926,0.145616,0.615385,0.638645,0.0512538,0.697512,0.637349,0.910144,0.95143,0.37452,0.738138,0.62473,0.223577,0.986189,0.475548,0.0572156,0.284417,0.372036,0.602673,0.477741,0.181913,0.962778,0.718474,0.6318,0.847198,0.887512,0.656774,0.562056,0.570493,0.180909,0.588149,0.430646,0.0921653,0.794154,0.0976071,0.406785,0.613813,0.0730205,0.483975,0.605048,0.574067,0.336919,0.0654777,0.697066,0.156154,0.952908,0.557084,0.284874,0.263916,0.91178,0.196978,0.704336,0.332562,0.444796,0.822906,0.14239,0.690188,0.565516,0.853852,0.732101,0.131975,0.199342,0.0200829,0.652407,0.485519,0.982084,0.807372,0.52305,0.873449,0.764433,0.213046,0.828404,0.46271,0.871188,0.85939,0.860604,0.671416,0.0542958,0.950651,0.506234,0.191124,0.326704,0.73136,0.9305,0.47735,0.00232172,0.110486,0.849452,0.213609,0.807419,0.968453,0.655764,0.91012,0.20212,0.68391,0.024268,0.739299,0.749664,0.617667,0.066204,0.409239,0.147943,0.850899,0.519458,0.95735,0.0256023,0.235026,0.619966,0.391668,0.751732,0.113282,0.362333,0.338101,0.538645,0.0899449,0.204689,0.14604,0.117177,0.62763,0.447948,0.224659,0.367952,0.0313329,0.394665,0.391064,0.860743,0.778876,0.977815,0.512609,0.659916,0.689549,0.628467,0.116788,0.952061,0.215382,0.228049,0.753684,0.201194,0.886322,0.809496,0.578989,0.628534,0.655,0.82482,0.911795,0.75587,0.464475,0.597717,0.611095,0.203053,0.411487,0.153206,0.975823,0.565448,0.921342,0.977903,0.029768,0.929692,0.00158411,0.134758,0.90749,0.362299,0.533667,0.835341,0.0356173,0.535176,0.0599137,0.458561,0.66634,0.821326,0.103494,0.481104,0.551944,0.554666,0.599317,0.529754,0.322857,0.572267,0.100284,0.556449,0.986887,0.840742,0.544291,0.0248968,0.843919,0.657119,0.987008,0.61697,0.815881,0.535696,0.0999056,0.940977,0.184931,0.246773,0.987161,0.184542,0.75859,0.37089,0.706352,0.914264,0.869617,0.73477,0.477278,0.304031,0.173738,0.110612,0.717229,0.00862068,0.206962,0.695525,0.14002,0.99948,0.441638,0.502052,0.222252,0.301787,0.817035,0.0538957,0.295283,0.541909,0.207868,0.39501,0.995192,0.0165048,0.365086,0.786023,0.250607,0.680211,0.68809,0.569182,0.0550589,0.351258,0.269414,0.222581,0.46965,0.148635,0.91821,0.556564,0.834194,0.482748,0.596713,0.906379,0.463442,0.37469,0.168328,0.742542,0.630303,0.956183,0.945259,0.314695,0.555535,0.437607,0.300967,0.508263,0.24896,0.669342,0.838322,0.607338,0.953065,0.748792,0.615749,0.221599,0.831427,0.363958,0.4341,0.0962517,0.805543,0.980911,0.936382,0.17032,0.0155953,0.428876,0.726351,0.99982,0.982198,0.172691,0.837287,0.305658,0.440689,0.223139,0.152306,0.301321,0.48242,0.86228,0.718821,0.660222,0.35487,0.407723,0.346323,0.603948,0.263819,0.924666,0.873285,0.450655,0.0208634,0.974225,0.635777,0.319722,0.880856,0.400939,0.965689,0.337455,0.211507,0.689258,0.758966,0.780522,0.0531774,0.963651,0.0185108,0.922319,0.117689,0.814024,0.396369,0.680693,0.301762,0.0627952,0.982875,0.502837,0.254009,0.86596,0.480253,0.380622,0.713358,0.742979,0.550065,0.607369,0.461396,0.852934,0.249796,0.57304,0.0230998,0.862741,0.800263,0.0651977,0.975258,0.563628,0.257092,0.445527,0.453227,0.0702497,0.637634,0.937497,0.812363,0.602352,0.381038,0.18614,0.764729,0.0425342,0.718397,0.648943,0.470628,0.923458,0.485767,0.278,0.241612,0.801979,0.80646,0.203322,0.486785,0.0719844,0.944889,0.972446,0.00578666,0.711319,0.269198,0.335242,0.301863,0.320522,0.956681,0.189474,0.0693164,0.21737,0.107385,0.45477,0.807443,0.194753,0.365815,0.333206,0.91917,0.473916,0.272488,0.213937,0.922828,0.789004,0.775175,0.0821016,0.528858,0.750683,0.425476,0.00430423,0.0982172,0.541222,0.042334,0.885025,0.35003,0.18717,0.248101,0.42528,0.894534,0.744629,0.520787,0.651829,0.969203,0.112912,0.995038,0.100759,0.89452,0.154789,0.923094,0.169759,0.184702,0.843067,0.44008,0.2632,0.984794,0.0973746,0.243467,0.972479,0.936867,0.484801,0.8699,0.328039,0.232658,0.220219,0.0460938,0.00476271,0.836284,0.624389,0.519885,0.484778,0.759343,0.362336,0.427154,0.526054,0.241781,0.137529,0.835376,0.121442,0.989278,0.756123,0.695744,0.927015,0.695577,0.524807,0.206285,0.485224,0.294862,0.952843,0.0320243,0.0846242,0.872576,0.404279,0.395876,0.784664,0.772097,0.783222,0.757011,0.282461,0.348852,0.917248,0.865577,0.316789,0.17938,0.579931,0.518233,0.307212,0.365086,0.102153,0.135329,0.374549,0.314316,0.308502,0.268328,0.0631644,0.271837,0.87212,0.50267,0.636853,0.71145,0.360549,0.21137,0.975979,0.910294,0.652033,0.2866,0.694957,0.902351,0.552074,0.809814,0.280745,0.264747,0.82088,0.691867,0.0841019,0.767942,0.844175,0.237688,0.000135899,0.925048,0.89505,0.107555,0.797045,0.86349,0.450038,0.959838,0.824462,0.173411,0.616159,0.206339,0.674129,0.203535,0.385665,0.242173,0.832297,0.663038,0.422953,0.291603,0.821167,0.0985721,0.474123,0.375534,0.861219,0.587055,0.793329,0.49709,0.88704,0.479301,0.0318736,0.180202,0.0217752,0.221827,0.985407,0.235836,0.105052,0.214791,0.577451,0.747391,0.756924,0.823084,0.0679486,0.990044,0.986945,0.36984,0.328781,0.24169,0.360027,0.432912,0.0188718,0.175962,0.797657,0.424301,0.297689,0.468034,0.0114573,0.602708,0.860699,0.567071,0.49977,0.0948404,0.494148,0.782145,0.592868,0.482431,0.573171,0.635725,0.828103,0.957795,0.523709,0.0308425,0.553682,0.840505,0.044029,0.28186,0.570777,0.165764,0.64369,0.371593,0.325794,0.793791,0.675689,0.201979,0.885246,0.942521,0.868444,0.868746,0.832324,0.159792,0.133181,0.0178089,0.0656527,0.619675,0.170513,0.7019,0.700804,0.338482,0.224904,0.367675,0.898901,0.0237299,0.96767,0.232302,0.458889,0.692045,0.346408,0.922016,0.536351,0.590169,0.234109,|0.891876,0.721598,0.858785,0.399386,0.396365,0.0887508,0.353519,0.911714,0.818933,0.756169,0.209373,0.313843,0.533466,0.967555,0.528974,0.361197,0.871649,0.30054,0.596727,0.238665,0.553669,0.491066,0.133729,0.186149,0.199895,0.944472,0.392957,0.442473,0.660686,0.443566,0.0979609,0.184905,0.0550512,0.550114,0.249944,0.624601,0.0744125,0.980711,0.91531,0.783527,0.379617,0.906053,0.421843,0.896259,0.555241,0.427751,0.425572,0.550871,0.622374,0.346005,0.167595,0.909701,0.682093,0.760458,0.600054,0.872068,0.397775,0.208492,0.34051,0.0703816,0.187076,0.190546,0.716313,0.881929,0.10346,0.170379,0.368482,0.864548,0.289181,0.56655,0.0124358,0.399287,0.931858,0.96884,0.315983,0.0206779,0.138844,0.892888,0.311123,0.654041,0.191408,0.753788,0.197387,0.067398,0.646244,0.952355,0.968369,0.599439,0.948324,0.476978,0.771577,0.106743,0.377776,0.36732,0.221108,0.400061,0.146497,0.426873,0.145072,0.0168066,0.0411395,0.477319,0.813156,0.325722,0.18581,0.0766934,0.0954345,0.963357,0.553411,0.432182,0.830585,0.992094,0.589255,0.0174832,0.884304,0.996879,0.467018,0.995073,0.299369,0.0829066,0.566786,0.0934772,0.635454,0.720717,0.492881,0.339339,0.764952,0.849084,0.270139,0.188353,0.294482,0.724988,0.121368,0.256061,0.570218,0.523104,0.0995575,0.111426,0.397705,0.426498,0.986976,0.0311741,0.350729,0.414721,0.313697,0.666487,0.858604,0.281709,0.775297,0.657581,0.694393,0.712141,0.409957,0.121187,0.743535,0.849093,0.678373,0.860558,0.502928,0.13418,0.506558,0.746549,0.101186,0.915402,0.072149,0.124708,0.169444,0.876421,0.551697,0.520457,0.395501,0.32201,0.580468,0.649332,0.423177,0.539042,0.330025,0.948382,0.769325,0.927621,0.982813,0.429408,0.723446,0.0920956,0.157896,0.00636351,0.859788,0.41631,0.673412,0.310553,0.810131,0.572273,0.58128,0.533278,0.43696,0.782709,0.413263,0.651237,0.998896,0.375539,0.457502,0.0763425,0.618513,0.465974,0.158731,0.517078,0.457337,0.94745,0.61317,0.455609,0.173998,0.531756,0.321958,0.52726,0.177588,0.0515681,0.0725122,0.864139,0.449334,0.4958,0.140513,0.62939,0.450891,0.444444,0.184182,0.671217,0.978448,0.853597,0.508284,0.979141,0.0885252,0.143625,0.752265,0.362789,0.458266,0.919193,0.585738,0.279034,0.681508,0.533666,0.577449,0.117016,0.821696,0.394709,0.780268,0.439272,0.929601,0.835031,0.779372,0.457584,0.939751,0.869636,0.794434,0.559332,0.722628,0.255462,0.0228571,0.326017,0.9387,0.40381,0.205339,0.108879,0.35728,0.861465,0.320225,0.767466,0.0137196,0.89435,0.884016,0.347604,0.996406,0.14699,0.0370806,0.944901,0.26114,0.268831,0.591173,0.117494,0.886704,0.344175,0.604586,0.601108,0.871996,0.431798,0.616804,0.99698,0.476481,0.12821,0.0619329,0.554501,0.118796,0.279914,0.58775,0.535945,0.106624,0.930079,0.859683,0.716231,0.893674,0.92167,0.652879,0.0783288,0.929227,0.538408,0.664574,0.578259,0.683157,0.355148,0.271778,0.856319,0.887331,0.421187,0.661586,0.220137,0.803576,0.849843,0.766566,0.750762,0.443076,0.609897,0.338158,0.745402,0.172487,0.381834,0.319752,0.428867,0.790574,0.586133,0.915783,0.726217,0.247874,0.590788,0.253231,0.191471,0.322385,0.220696,0.733865,0.111509,0.547823,0.202256,0.118906,0.154282,0.346542,0.595035,0.834288,0.613593,0.0889735,0.847609,0.0749627,0.46351,0.189185,0.581997,0.740092,0.184361,0.74539,0.405935,0.237191,0.732077,0.668386,0.755598,0.391847,0.976023,0.829981,0.283798,0.515887,0.0207655,0.88561,0.841928,0.3475,0.926108,0.883446,0.96717,0.705323,0.0373675,0.63961,0.276749,0.171907,0.213656,0.123727,0.363608,0.232783,0.878519,0.00618935,0.0483254,0.316561,0.329465,0.247624,0.905893,0.598941,0.0576094,0.932243,0.116232,0.545566,0.454576,0.456863,0.68631,0.471458,0.951188,0.6242,0.714339,0.412494,0.295287,0.152897,0.805427,0.878893,0.175451,0.246058,0.0475345,0.487189,0.745052,0.83538,0.854689,0.679454,0.137964,0.482747,0.45513,0.604781,0.998891,0.24159,0.778411,0.815785,0.0996075,0.559559,0.513894,0.953891,0.081386,0.293461,0.523305,0.616959,0.443074,0.21272,0.620944,0.304756,0.454616,0.808139,0.496122,0.692094,0.275355,0.366108,0.895695,0.113255,0.807708,0.380093,0.247155,0.422872,0.459344,0.56751,0.230246,0.0144562,0.864237,0.19465,0.848225,0.337022,0.898565,0.0228161,0.367844,0.297176,0.454156,0.275706,0.861285,0.0830398,0.77074,0.325262,0.00223255,0.553402,0.826642,0.506531,0.544362,0.156254,0.855072,0.361673,0.333514,0.971301,0.505106,0.177928,0.535556,0.00462914,0.784905,0.0117673,0.722454,0.71834,0.659712,0.74443,0.915926,0.63148,0.629631,0.604741,0.274348,0.837133,0.918506,0.215608,0.632934,0.368951,0.232669,0.088093,0.866012,0.640271,0.561441,0.418039,0.13335,0.244088,0.0998451,0.103454,0.492518,0.615547,0.865124,0.706964,0.116157,0.766335,0.312924,0.564618,0.446053,0.875681,0.216346,0.588586,0.181678,0.729381,0.154708,0.0279303,0.553613,0.0324694,0.716248,0.133399,0.0945517,0.614035,0.194242,0.337123,0.176271,0.279576,0.392318,0.199021,0.680866,0.929545,0.603327,0.77367,0.77707,0.259146,0.32936,0.0677133,0.0582479,0.242581,0.308567,0.710464,0.460266,0.173918,0.649557,0.81484,0.856556,0.309987,0.659545,0.569992,0.492939,0.708108,0.305234,0.000939429,0.676059,0.21266,0.151391,0.939342,0.462306,0.0224842,0.384305,0.137963,0.274093,0.374472,0.765579,0.0262043,0.554583,0.254177,0.422266,0.7929,0.84164,0.510814,0.281746,0.892276,0.478622,0.374662,0.499054,0.0821682,0.568582,0.95449,0.448133,0.577255,0.181621,0.161031,0.55326,0.222004,0.628838,0.526968,0.0855119,0.84027,0.126071,0.567334,0.0860736,0.268385,0.62868,0.325086,0.355472,0.623699,0.485536,0.707977,0.415823,0.673645,0.707647,0.188778,0.187654,0.209542,0.759492,0.72333,0.118443,0.193885,0.397416,0.815316,0.729386,0.853018,0.344329,0.216246,0.392501,0.906033,0.501098,0.964339,0.70078,0.352615,0.245335,0.720114,0.74437,0.915792,0.515518,0.522987,0.514301,0.128093,0.371161,0.978764,0.833951,0.224734,0.364265,0.725469,0.759134,0.881756,0.162036,0.424523,0.237102,0.17791,0.17859,0.111066,0.987519,0.609403,0.496189,0.142387,0.597792,0.743357,0.509286,0.516718,0.463952,0.00955492,0.713652,0.245727,0.181361,0.953686,0.148077,0.972518,0.0293933,0.36614,0.0550485,0.020556,0.372708,0.443753,0.505007,0.248487,0.90216,0.565939,0.860182,0.265254,0.716658,0.107554,0.103085,0.35654,0.427508,0.952721,0.483805,0.710062,0.963425,0.17297,0.933199,0.259515,0.39736,0.209502,0.990699,0.611636,0.826961,0.99656,0.979781,0.684659,0.722402,0.949019,0.620898,0.146872,0.553713,0.0396004,0.657673,0.286835,0.863157,0.0429073,0.907104,0.534621,0.319422,0.038812,0.399508,0.0510291,0.778016,0.787175,0.47878,0.0947253,0.468928,0.94234,0.976564,0.569096,0.978715,0.842554,0.373714,0.138828,0.323751,0.927873,0.694161,0.616137,0.980806,0.347246,0.792082,0.559923,0.869165,0.885741,0.678437,0.451209,0.000237763,0.681781,0.553951,0.0563856,0.820671,0.991487,0.285045,0.66756,0.996485,0.18097,0.836591,0.152312,0.0773015,0.255302,0.215835,0.136131,0.362467,0.797658,0.17516,0.483046,0.24626,0.531285,0.267435,0.427658,0.165055,0.930273,0.578528,0.794863,0.434033,0.569748,0.134522,0.100967,0.558666,0.380165,0.567747,0.00215322,0.258166,0.302271,0.23732,0.41124,0.565028,0.923482,0.0200424,0.980748,0.929958,0.938653,0.302441,0.388712,0.0299922,0.641861,0.0946563,0.244898,0.965763,0.115145,0.374705,0.425027,0.272874,0.724416,0.718042,0.379778,0.173651,0.995622,0.353397,0.625519,0.000915408,0.789203,0.600252,0.488866,0.487941,0.661031,0.0373153,0.148013,0.216675,0.293332,0.188916,0.0521877,0.0707799,0.446763,0.330064,0.238053,0.792437,0.906272,0.523364,0.703485,0.0905254,0.582171,0.491555,0.0238199,0.526907,0.246098,0.925073,0.0197901,0.74501,0.257958,0.796041,0.625623,0.263779,0.984883,0.389834,0.927433,0.636931,0.127355,0.290896,0.817357,0.586264,0.843674,0.796409,0.759032,0.502935,0.341751,0.425385,0.848873,0.250237,0.593633,0.34873,0.776521,0.399159,0.213072,0.77482,0.670789,0.477102,0.398667,0.920461,0.447464,0.886126,0.511444,0.748663,0.990209,0.630775,0.409447,0.861537,0.719536,0.0511715,0.740243,0.957832,0.818188,0.876622,0.73409,0.657147,0.270151,0.987426,0.538124,0.923549,0.747719,0.682307,0.357843,0.239572,0.101507,0.354314,0.467029,0.589638,0.694315,0.145649,0.988866,0.9809,0.387905,0.912082,0.139046,0.413844,0.976649,0.0337977,0.554076,0.390901,0.942305,0.476213,0.0912623,0.848079,0.468845,0.161853,0.324791,0.265385,0.554827,0.502148,0.686861,0.581526,0.383883,0.314064,0.902173,0.141267,0.402157,0.130017,0.143175,0.99685,0.198012,0.0601007,0.726309,0.761358,0.762128,0.207005,0.417417,0.446314,0.569004,0.159649,0.489746,0.750971,0.152345,0.911662,0.145737,0.923577,0.927902,0.647055,0.801277,0.654553,0.348405,0.276044,0.674431,0.855794,0.835157,0.511707,0.172197,0.774845,0.973402,0.591509,0.264422,0.47389,0.218353,0.699435,0.642729,0.632445,0.756031,0.0395679,0.132871,0.658051,0.141386,0.893729,0.404894,0.705307,0.267318,0.492108,0.237381,0.0498425,0.884915,0.568401,0.323518,0.98485,0.0570045,0.421065,0.237363,0.546905,0.420157,0.184688,0.662435,0.431969,0.753158,0.593508,0.169054,0.774318,0.105325,0.169021,0.00665951,0.205187,0.780878,0.39012,0.851431,0.350458,0.986895,0.619552,0.275428,0.0602984,0.216493,0.914375,0.690538,0.0937476,0.460479,0.603593,0.0103676,0.847707,|0.0885876,0.368004,0.812445,0.91867,0.722545,0.123972,0.694584,0.313525,0.32039,0.649671,0.143176,0.37652,0.0258079,0.561372,0.507675,0.752802,0.206999,0.0223401,0.803754,0.475355,0.788205,0.836444,0.129158,0.29799,0.944915,0.196978,0.632314,0.398489,0.975176,0.679015,0.580462,0.319821,0.427199,0.970177,0.159589,0.424966,0.154997,0.556844,0.388629,0.818361,0.790536,0.191413,0.0148816,0.763489,0.876442,0.262594,0.568024,0.463462,0.586065,0.0572715,0.0973624,0.431667,0.131283,0.417454,0.0930204,0.422705,0.236875,0.636816,0.665925,0.863496,0.304772,0.784378,0.891561,0.357205,0.396416,0.582661,0.335476,0.394275,0.813799,0.930801,0.113441,0.326841,0.315402,0.973978,0.0853843,0.487867,0.557468,0.336453,0.0552166,0.846683,0.43094,0.180737,0.154314,0.374138,0.128119,0.679697,0.696023,0.772724,0.866136,0.229515,0.441398,0.783782,0.31092,0.475731,0.1933,0.816589,0.481312,0.611301,0.876099,0.555545,0.569147,0.381367,0.78891,0.882668,0.784599,0.122506,0.920853,0.2626,0.516402,0.217347,0.816724,0.0417123,0.3899,0.900648,0.255078,0.167509,0.934638,0.902612,0.421208,0.331954,0.571269,0.989458,0.453992,0.0386745,0.373938,0.876114,0.744757,0.0033465,0.264689,0.327663,0.274212,0.492978,0.747736,0.899765,0.578868,0.831798,0.805411,0.969239,0.350418,0.639547,0.157846,0.300525,0.00918168,0.915406,0.38911,0.904496,0.585923,0.244398,0.405015,0.261159,0.142111,0.227032,0.42055,0.571117,0.827062,0.300826,0.546489,0.683078,0.680539,0.148981,0.547605,0.924602,0.647763,0.423097,0.412595,0.286102,0.579854,0.663518,0.064121,0.962102,0.870026,0.934142,0.098592,0.895626,0.638547,0.292651,0.776854,0.976925,0.82341,0.98476,0.407539,0.13345,0.294515,0.467171,0.572809,0.632712,0.644433,0.0360485,0.601728,0.939604,0.780202,0.879449,0.691768,0.801881,0.872586,0.330057,0.578621,0.653952,0.35791,0.666162,0.726826,0.175101,0.615094,0.197326,0.752902,0.894323,0.499144,0.910676,0.0453162,0.222262,0.618435,0.118271,0.307037,0.316436,0.79546,0.242498,0.542003,0.143146,0.878955,0.0574181,0.334643,0.685145,0.0197116,0.201784,0.726953,0.0360069,0.136063,0.0345403,0.475775,0.660767,0.323612,0.293571,0.872877,0.37885,0.32341,0.65128,0.948413,0.69853,0.712701,0.894028,0.479696,0.670994,0.72239,0.135644,0.575084,0.822064,0.975381,0.703661,0.816655,0.630668,0.149622,0.998004,0.304037,0.648495,0.199174,0.248343,0.703862,0.641749,0.811982,0.342416,0.994107,0.8773,0.329014,0.101194,0.608247,0.960473,0.926644,0.499085,0.576708,0.434068,0.475445,0.990316,0.241101,0.496977,0.048079,0.134129,0.312224,0.0100048,0.571855,0.555267,0.979136,0.189662,0.0876957,0.608485,0.34556,0.101404,0.0350611,0.934088,0.876947,0.544003,0.11577,0.321226,0.123255,0.0281245,0.832703,0.677092,0.204775,0.277292,0.802069,0.360988,0.876658,0.404407,0.294117,0.457579,0.679436,0.979712,0.369381,0.781056,0.0169297,0.854231,0.821475,0.815002,0.0694329,0.240786,0.912221,0.295027,0.29463,0.109255,0.606722,0.192576,0.717203,0.608557,0.450162,0.534377,0.488014,0.616338,0.334463,0.597319,0.625884,0.311592,0.555905,0.73536,0.559268,0.453493,0.949907,0.455406,0.556664,0.237132,0.475784,0.38921,0.655255,0.862141,0.956362,0.546392,0.29401,0.631535,0.0873455,0.28672,0.864123,0.546757,0.843624,0.194881,0.00164253,0.892573,0.788971,0.652146,0.574339,0.966093,0.365837,0.927275,0.803875,0.842391,0.453264,0.742784,0.29436,0.233544,0.484265,0.927935,0.387738,0.469843,0.846449,0.165997,0.841175,0.0180261,0.293782,0.283631,0.912781,0.536796,0.463947,0.847164,0.711795,0.558996,0.380803,0.714036,0.270425,0.260522,0.774265,0.280808,0.414364,0.531341,0.236975,0.789723,0.642436,0.783873,0.173379,0.482413,0.495595,0.127548,0.25883,0.547586,0.188066,0.818818,0.81841,0.177596,0.121177,0.860644,0.0358419,0.0461016,0.857715,0.951564,0.930128,0.221533,0.70008,0.531918,0.958078,0.967201,0.621728,0.416256,0.366222,0.675896,0.84793,0.712538,0.410666,0.849309,0.175816,0.274764,0.640913,0.835339,0.324053,0.282403,0.617036,0.119522,0.57697,0.897436,0.930719,0.701085,0.0759944,0.834318,0.371531,0.428488,0.953756,0.585176,0.522891,0.626844,0.267545,0.463595,0.790756,0.864702,0.0980911,0.816205,0.0704142,0.776653,0.575609,0.931273,0.087737,0.0112746,0.961844,0.683988,0.850652,0.382083,0.181213,0.415127,0.647463,0.39523,0.00449246,0.270283,0.375514,0.388667,0.717285,0.300159,0.464113,0.902825,0.00309092,0.680916,0.398386,0.777562,0.406817,0.16217,0.558993,0.316558,0.310975,0.602192,0.688015,0.740299,0.121971,0.744654,0.561909,0.0429777,0.429511,0.999438,0.817074,0.869707,0.719854,0.359471,0.739036,0.215045,0.0547774,0.542326,0.904644,0.748544,0.63638,0.76292,0.989218,0.916923,0.467499,0.975722,0.169254,0.0225498,0.341007,0.693989,0.881936,0.321004,0.104242,0.469138,0.155319,0.0671386,0.916767,0.318676,0.643537,0.903997,0.764592,0.137198,0.269506,0.887664,0.565749,0.1177,0.283893,0.551485,0.99198,0.706068,0.0344322,0.81356,0.107747,0.407978,0.476163,0.944281,0.665664,0.0578629,0.19955,0.52844,0.515534,0.680479,0.619202,0.987547,0.504291,0.339172,0.251114,0.525838,0.683536,0.932147,0.207853,0.00383288,0.275572,0.816776,0.964056,0.990099,0.377109,0.588903,0.57099,0.24444,0.725999,0.959487,0.147613,0.300107,0.86189,0.0338981,0.0822948,0.271533,0.755717,0.149524,0.0154567,0.796413,0.321659,0.22954,0.195345,0.531707,0.0365725,0.546858,0.254499,0.384633,0.689113,0.126629,0.310728,0.388451,0.631215,0.409636,0.980863,0.165795,0.521247,0.240192,0.857983,0.525678,0.562005,0.742603,0.404311,0.728104,0.803315,0.0975074,0.283366,0.153994,0.539761,0.754833,0.665237,0.956141,0.181573,0.910858,0.951486,0.727176,0.894152,0.351788,0.39447,0.758349,0.883169,0.533346,0.572311,0.477661,0.917739,0.99474,0.929779,0.0610394,0.0939303,0.370556,0.282152,0.307503,0.357699,0.564833,0.147615,0.888282,0.363296,0.49192,0.511001,0.218237,0.142606,0.936827,0.0663634,0.86684,0.908078,0.725203,0.269372,0.555111,0.934745,0.731217,0.0514854,0.216619,0.441942,0.79434,0.78839,0.917938,0.499704,0.725523,0.0518145,0.673615,0.267533,0.19677,0.808051,0.697287,0.374618,0.18516,0.725808,0.202874,0.315076,0.230939,0.80372,0.508201,0.770179,0.674942,0.490079,0.500991,0.413967,0.674909,0.334996,0.913749,0.214709,0.255421,0.889239,0.777051,0.834005,0.872182,0.574911,0.789336,0.380792,0.128448,0.699405,0.569234,0.518163,0.586038,0.905429,0.209887,0.304032,0.052504,0.255207,0.856657,0.944078,0.533209,0.512772,0.554442,0.324181,0.753014,0.582305,0.89447,0.665303,0.188069,0.254456,0.564021,0.722839,0.606063,0.680604,0.925266,0.256049,0.710656,0.844232,0.889134,0.789681,0.793409,0.724162,0.517747,0.0865694,0.420835,0.380989,0.942471,0.881174,0.516789,0.965049,0.470249,0.234799,0.162182,0.183036,0.231132,0.372147,0.60589,0.369901,0.185659,0.0357559,0.913229,0.868118,0.904532,0.370858,0.096761,0.444751,0.188112,0.507955,0.232889,0.0501449,0.788669,0.717558,0.138259,0.611572,0.623642,0.361438,0.598848,0.556827,0.69891,0.0393832,0.17601,0.580288,0.97555,0.234694,0.648196,0.237846,0.818824,0.585475,0.110803,0.144177,0.735069,0.0474513,0.671847,0.757886,0.993792,0.489174,0.704253,0.176549,0.998255,0.416346,0.209444,0.348841,0.921443,0.541057,0.0492361,0.548163,0.662858,0.459534,0.0276096,0.786956,0.830949,0.775357,0.678772,0.980199,0.563618,0.574543,0.666646,0.699936,0.737689,0.0106507,0.8688,0.158215,0.0200964,0.324129,0.39518,0.347161,0.853129,0.633394,0.430886,0.979641,0.741891,0.463596,0.590069,0.980741,0.954456,0.176739,0.754279,0.306074,0.0357884,0.415318,0.247804,0.155072,0.482977,0.275103,0.297016,0.0241433,0.0569782,0.990044,0.272798,0.305455,0.888528,0.72248,0.207057,0.647608,0.899142,0.655047,0.624627,0.130864,0.4132,0.364441,0.969279,0.0273015,0.611029,0.851447,0.718997,0.886048,0.836161,0.768887,0.136949,0.586174,0.403638,0.577213,0.438831,0.775396,0.250544,0.176301,0.721387,0.459024,0.190825,0.394528,0.933459,0.063988,0.939387,0.278905,0.874467,0.0927293,0.765036,0.345249,0.710946,0.996137,0.529016,0.462692,0.98476,0.847756,0.496627,0.169478,0.980184,0.99292,0.752885,0.775826,0.992913,0.427248,0.107972,0.968514,0.228942,0.108863,0.0159233,0.13084,0.367165,0.0706217,0.808821,0.677346,0.14473,0.910863,0.969977,0.428337,0.526255,0.0533231,0.64229,0.0562167,0.302238,0.661599,0.126391,0.419729,0.781207,0.0398936,0.66388,0.970877,0.107993,0.602315,0.545876,0.0442209,0.51193,0.711963,0.308677,0.970635,0.93707,0.820426,0.78416,0.536925,0.828802,0.801782,0.89678,0.862332,0.708197,0.377645,0.445601,0.2237,0.137726,0.7865,0.392991,0.573815,0.363868,0.109897,0.142361,0.138193,0.670621,0.000171721,0.319446,0.861729,0.0381692,0.143721,0.347188,0.564884,0.18273,0.152842,0.449229,0.409813,0.960265,0.999732,0.578986,0.131899,0.834288,0.324527,0.100592,0.766143,0.856537,0.567933,0.558338,0.256642,0.643775,0.178346,0.576907,0.465134,0.233015,0.0252695,0.801811,0.997558,0.184708,0.378695,0.987109,0.459709,0.758913,0.07488,0.204129,0.620773,0.417415,0.841804,0.736821,0.0694677,0.404503,0.933731,0.249846,0.313538,0.176636,0.645436,0.564439,0.96946,0.897263,0.520733,0.856669,0.254884,0.123942,0.888225,0.790184,0.64393,0.763777,0.673039,0.906684,0.170378,0.261152,0.499559,0.604931,0.769332,0.967019,0.253867,0.262429,|0.112585,0.475761,0.120806,0.446317,0.589908,0.324143,0.0860872,0.030686,0.286288,0.176301,0.584272,0.154101,0.894483,0.110344,0.74908,0.485655,0.144468,0.165315,0.690913,0.344105,0.53528,0.0786896,0.888789,0.839998,0.653783,0.273425,0.792367,0.486675,0.392713,0.34571,0.220375,0.391698,0.536909,0.148879,0.0220671,0.41398,0.22024,0.513084,0.928177,0.847222,0.0952391,0.652331,0.973679,0.939021,0.849962,0.498335,0.753339,0.9486,0.54888,0.940418,0.147272,0.497183,0.41526,0.021614,0.583973,0.238089,0.427361,0.869057,0.796005,0.331802,0.0985165,0.896856,0.974795,0.523215,0.688281,0.0998138,0.999839,0.952665,0.436811,0.85153,0.260998,0.970234,0.671472,0.379118,0.552612,0.0703976,0.5672,0.639617,0.243057,0.98189,0.893604,0.538178,0.505693,0.631584,0.689493,0.915114,0.522945,0.409357,0.0758409,0.581079,0.222691,0.659935,0.253053,0.726818,0.763191,0.19399,0.707858,0.708852,0.085301,0.327817,0.927576,0.0179982,0.10405,0.173204,0.752266,0.843053,0.0624344,0.430822,0.629551,0.0954559,0.299569,0.175912,0.934633,0.895229,0.38132,0.268933,0.94366,0.223528,0.897401,0.348013,0.762056,0.677863,0.251524,0.590084,0.915225,0.311399,0.756833,0.440322,0.741876,0.96074,0.108108,0.195442,0.470359,0.0677831,0.073236,0.374979,0.995189,0.145702,0.107917,0.735866,0.155131,0.0253377,0.896089,0.790489,0.833052,0.7217,0.39405,0.942252,0.917696,0.642259,0.644306,0.173662,0.249067,0.159918,0.206241,0.227916,0.132639,0.152588,0.895199,0.137363,0.149919,0.436523,0.248324,0.911892,0.0127057,0.945416,0.597203,0.364584,0.0427116,0.641394,0.249634,0.407834,0.0774696,0.382971,0.790762,0.888905,0.870247,0.438982,0.274131,0.541106,0.25599,0.0410473,0.744336,0.111829,0.660637,0.0897831,0.0608374,0.600251,0.776958,0.874019,0.445639,0.920166,0.170944,0.702372,0.52075,0.532895,0.790864,0.517007,0.594191,0.99082,0.648634,0.893983,0.83186,0.405137,0.0269944,0.954374,0.104372,0.032247,0.416571,0.935216,0.0601134,0.981383,0.364593,0.893711,0.650777,0.481332,0.185285,0.397946,0.499309,0.657814,0.672906,0.524538,0.666462,0.695247,0.362579,0.494336,0.693181,0.332941,0.333984,0.183085,0.735589,0.266408,0.366659,0.0428573,0.802413,0.532705,0.562707,0.0946918,0.713569,0.589765,0.536725,0.121891,0.555609,0.922125,0.971269,0.589465,0.607017,0.343514,0.2394,0.693559,0.464986,0.659029,0.193111,0.721578,0.937615,0.0526512,0.238453,0.540586,0.328472,0.611326,0.451174,0.918768,0.564529,0.306698,0.736232,0.0850281,0.288072,0.575709,0.681541,0.0195605,0.150686,0.133579,0.778471,0.222402,0.268355,0.638629,0.84715,0.0505798,0.617153,0.21222,0.349221,0.145936,0.0897914,0.43546,0.088933,0.208851,0.804039,0.524517,0.0815364,0.345113,0.590823,0.859805,0.388434,0.390505,0.810451,0.8104,0.411052,0.0675583,0.217216,0.520708,0.743232,0.00692374,0.150928,0.762034,0.123286,0.80331,0.0929999,0.769638,0.580901,0.845003,0.621034,0.956157,0.647882,0.525671,0.0314536,0.244337,0.682864,0.234877,0.839946,0.242024,0.0283337,0.444854,0.431138,0.000522971,0.0493306,0.61095,0.919571,0.590766,0.799666,0.940576,0.865154,0.18147,0.654803,0.271589,0.332,0.463718,0.740483,0.424688,0.425333,0.836183,0.566856,0.890984,0.371599,0.067209,0.807846,0.438353,0.356651,0.393241,0.649636,0.812858,0.0121998,0.524055,0.890919,0.118667,0.448046,0.49023,0.283208,0.115155,0.942324,0.89312,0.213684,0.43852,0.399758,0.150986,0.0536751,0.0295959,0.0748695,0.126788,0.905397,0.466444,0.275427,0.748343,0.136512,0.373267,0.291038,0.766535,0.109813,0.364329,0.91215,0.764905,0.764752,0.544297,0.418165,0.507746,0.961718,0.881144,0.66623,0.2529,0.57121,0.661791,0.379199,0.909586,0.88217,0.352165,0.763935,0.9095,0.0726628,0.889597,0.455596,0.538356,0.314612,0.0631659,0.510191,0.305147,0.478317,0.53932,0.149949,0.285658,0.953435,0.748642,0.954687,0.702321,0.570449,0.915828,0.900541,0.38904,0.596885,0.537759,0.336162,0.75229,0.974595,0.671228,0.10024,0.366503,0.273439,0.391281,0.188799,0.5322,0.424722,0.757388,0.976093,0.563766,0.762596,0.39278,0.0703302,0.0226912,0.758842,0.737779,0.236606,0.220907,0.279131,0.596098,0.946452,0.264784,0.758965,0.0620869,0.767396,0.209917,0.162193,0.259221,0.544663,0.950695,0.691814,0.321109,0.444965,0.598107,0.813253,0.761741,0.955422,0.497434,0.298565,0.107879,0.372256,0.587084,0.497602,0.309187,0.626827,0.0973441,0.464667,0.79001,0.632128,0.994043,0.661266,0.458746,0.973314,0.862782,0.697295,0.524295,0.84816,0.591273,0.644925,0.111308,0.917174,0.683627,0.7581,0.140668,0.471857,0.671921,0.857372,0.0364556,0.0458741,0.844402,0.56659,0.165953,0.728929,0.475722,0.853282,0.640567,0.00657815,0.448385,0.872506,0.376047,0.63628,0.125748,0.952084,0.68465,0.250683,0.164573,0.280128,0.041629,0.387091,0.843026,0.29755,0.215652,0.979123,0.67524,0.375627,0.0701193,0.239315,0.331229,0.157049,0.138162,0.527982,0.35833,0.325737,0.0916161,0.50375,0.982848,0.890202,0.982762,0.460815,0.278216,0.987713,0.0678817,0.722763,0.937068,0.861077,0.889113,0.931824,0.200726,0.134989,0.156146,0.756763,0.14368,0.475533,0.916972,0.925695,0.98305,0.660961,0.926692,0.72332,0.0863667,0.359763,0.522951,0.875988,0.0368277,0.726969,0.334215,0.595086,0.613531,0.783316,0.926196,0.235301,0.0280318,0.378529,0.0688499,0.334661,0.243356,0.0343558,0.079392,0.357477,0.308577,0.469254,0.449973,0.582186,0.684342,0.696029,0.403539,0.162917,0.0541787,0.881623,0.305989,0.488106,0.0826619,0.952505,0.589985,0.867774,0.946591,0.758746,0.30822,0.0306747,0.155182,0.428784,0.27718,0.440023,0.291086,0.558945,0.347233,0.00662124,0.210952,0.738084,0.0758675,0.25576,0.444883,0.970238,0.704385,0.797391,0.737384,0.542046,0.309025,0.0765875,0.941506,0.360229,0.863172,0.454676,0.944209,0.115226,0.379083,0.927768,0.420383,0.788612,0.758958,0.688038,0.913008,0.403814,0.0101505,0.661991,0.476608,0.55671,0.4804,0.441675,0.86317,0.433556,0.602219,0.0991233,0.922503,0.28639,0.908886,0.419328,0.887047,0.743305,0.398428,0.0307322,0.598274,0.777989,0.858668,0.324997,0.498903,0.733483,0.452524,0.888839,0.94314,0.00646728,0.0846155,0.609116,0.658487,0.566354,0.890129,0.601444,0.0866046,0.693581,0.943046,0.459961,0.717938,0.419533,0.507774,0.408951,0.886621,0.580304,0.018066,0.249881,0.732316,0.681908,0.449958,0.055837,0.708482,0.695832,0.211461,0.441546,0.600795,0.961282,0.216231,0.00917614,0.292493,0.746144,0.202072,0.664866,0.801254,0.575556,0.65175,0.485956,0.273522,0.864128,0.767201,0.591696,0.278384,0.255895,0.836228,0.661273,0.211597,0.104076,0.459429,0.513823,0.98529,0.185308,0.135381,0.722783,0.910217,0.091149,0.40124,0.266684,0.114995,0.744765,0.17466,0.438218,0.693171,0.398738,0.601302,0.705103,0.217368,0.000962079,0.964035,0.980786,0.57334,0.300746,0.00490403,0.879811,0.634754,0.0447719,0.0420188,0.684238,0.515068,0.349427,0.791126,0.608136,0.978937,0.354646,0.499642,0.0681867,0.0408554,0.856041,0.802725,0.327285,0.81356,0.724186,0.380186,0.772224,0.170888,0.259812,0.465935,0.078768,0.859542,0.555524,0.222239,0.631287,0.961215,0.264158,0.856238,0.0260927,0.348827,0.0665402,0.818429,0.649627,0.370151,0.542133,0.20756,0.0866595,0.83321,0.386174,0.602663,0.433741,0.740684,0.795536,0.23444,0.189895,0.137785,0.897933,0.346315,0.559709,0.439672,0.315539,0.689096,0.722996,0.45542,0.774173,0.26153,0.515974,0.0433542,0.0905541,0.986893,0.0835407,0.109791,0.191511,0.884404,0.997171,0.108093,0.328006,0.921731,0.567251,0.867792,0.215268,0.220038,0.831734,0.754489,0.395218,0.999054,0.214224,0.913901,0.0490854,0.16805,0.801782,0.759931,0.281462,0.0354698,0.00276333,0.8979,0.264041,0.327595,0.27571,0.92894,0.0554399,0.970529,0.901872,0.0935292,0.21309,0.662665,0.584689,0.857694,0.453803,0.717411,0.0851506,0.79266,0.395634,0.928341,0.651454,0.370703,0.0307927,0.894321,0.447008,0.434611,0.226398,0.144559,0.384827,0.735005,0.306716,0.768499,0.355084,0.659363,0.800382,0.729461,0.39245,0.148463,0.324278,0.669249,0.402928,0.877327,0.906259,0.518315,0.538997,0.153665,0.784453,0.184848,0.695258,0.622581,0.570114,0.284972,0.531142,0.010391,0.184456,0.408283,0.142292,0.266007,0.807968,0.516524,0.851058,0.0431071,0.000718415,0.963,0.682613,0.776987,0.142497,0.630985,0.479881,0.575609,0.446043,0.16286,0.337819,0.513474,0.366908,0.631381,0.60324,0.371513,0.815542,0.124868,0.796829,0.337806,0.936572,0.135157,0.755548,0.572081,0.306612,0.939776,0.585469,0.883882,0.103492,0.902606,0.478984,0.407812,0.00601542,0.572329,0.111853,0.718339,0.555524,0.927615,0.485411,0.0447413,0.726155,0.0294947,0.349744,0.540209,0.296251,0.814103,0.89247,0.0814581,0.762798,0.542625,0.914037,0.0332663,0.607459,0.0488169,0.732382,0.947867,0.979658,0.380442,0.479658,0.00246799,0.122899,0.817361,0.278534,0.818104,0.820683,0.958827,0.38925,0.965532,0.162023,0.205254,0.00613523,0.759232,0.311308,0.430155,0.80192,0.898018,0.296215,0.176264,0.958122,0.840535,0.811791,0.298168,0.562838,0.217697,0.575275,0.830973,0.767924,0.0142654,0.492933,0.01673,0.564738,0.917967,0.569217,0.108225,0.678518,0.667116,0.794169,0.0896377,0.425832,0.51233,0.498938,0.0245365,0.437666,0.121043,0.635309,0.314372,0.72855,0.551474,0.480298,0.292869,0.982781,0.564841,0.608905,0.720103,0.687462,0.285225,0.282976,0.311193,0.16345,0.380199,0.849317,0.120253,0.797131,0.106888,|0.737146,0.264634,0.677087,0.69433,0.411833,0.951013,0.108467,0.485454,0.815751,0.0308985,0.724603,0.225226,0.737724,0.464603,0.796343,0.245895,0.0521971,0.188695,0.116662,0.887623,0.172148,0.999313,0.742969,0.799357,0.258116,0.639271,0.678607,0.0705716,0.483281,0.456334,0.483891,0.600153,0.52581,0.402832,0.980056,0.135784,0.325658,0.144472,0.724035,0.535469,0.62135,0.0387228,0.971102,0.0330356,0.958634,0.644881,0.317918,0.348016,0.563256,0.861262,0.351526,0.943562,0.59175,0.700081,0.985459,0.955097,0.522138,0.938222,0.312221,0.606287,0.720529,0.356531,0.0820627,0.60358,0.426268,0.92759,0.484601,0.674623,0.194821,0.86684,0.550004,0.398599,0.150068,0.744671,0.311993,0.0306354,0.229233,0.193061,0.244832,0.201275,0.229442,0.311591,0.778788,0.305785,0.725188,0.581135,0.122565,0.250148,0.826207,0.0995874,0.592239,0.252327,0.407836,0.480807,0.166542,0.233756,0.0894552,0.861992,0.305531,0.980278,0.200759,0.338253,0.031022,0.654778,0.958713,0.171447,0.626912,0.906898,0.361199,0.00359857,0.174542,0.467198,0.934746,0.0416456,0.750171,0.831556,0.239907,0.996141,0.133119,0.143229,0.922137,0.444685,0.417617,0.49729,0.704846,0.460848,0.494908,0.530501,0.718098,0.294361,0.83556,0.484834,0.624071,0.250468,0.185376,0.527479,0.0870638,0.0419061,0.908212,0.482983,0.644354,0.113123,0.900894,0.175423,0.688182,0.612624,0.972493,0.0811725,0.122168,0.483086,0.649431,0.391874,0.978324,0.676702,0.932416,0.5506,0.169487,0.662142,0.677911,0.354282,0.541239,0.894288,0.200558,0.572706,0.0579104,0.166508,0.191282,0.772413,0.000540376,0.738853,0.678505,0.697139,0.0722057,0.382164,0.0595073,0.088223,0.624991,0.277376,0.914082,0.0979328,0.116128,0.584126,0.28005,0.859923,0.776365,0.782974,0.636368,0.516502,0.558072,0.587436,0.249474,0.802107,0.143342,0.29595,0.610014,0.423563,0.223749,0.578729,0.745513,0.409036,0.282216,0.452431,0.31422,0.341901,0.494591,0.333406,0.599269,0.620051,0.778205,0.383197,0.233272,0.109995,0.0304239,0.403908,0.311788,0.694043,0.631877,0.497583,0.771649,0.7819,0.850794,0.359351,0.315127,0.935605,0.889868,0.57643,0.000350654,0.146146,0.608079,0.179431,0.793441,0.659942,0.527428,0.193231,0.305036,0.17138,0.384548,0.688591,0.0502138,0.456524,0.0395136,0.85789,0.510114,0.0665269,0.364422,0.664013,0.334487,0.989729,0.465993,0.366573,0.340659,0.446791,0.580579,0.668111,0.954233,0.00572133,0.166724,0.789858,0.592577,0.876947,0.217727,0.0784749,0.266908,0.0751494,0.171814,0.148965,0.610133,0.415132,0.982319,0.688777,0.683592,0.54718,0.910204,0.465021,0.75048,0.20521,0.396633,0.841248,0.0682145,0.841895,0.0539588,0.69589,0.963729,0.645226,0.0899139,0.45917,0.495962,0.845805,0.221173,0.654977,0.30738,0.10134,0.36962,0.258211,0.414378,0.653426,0.1854,0.43621,0.332282,0.417543,0.302936,0.964211,0.694758,0.313719,0.335743,0.9605,0.730801,0.244965,0.0527776,0.732206,0.272714,0.112668,0.459225,0.523655,0.195559,0.119996,0.0358403,0.949046,0.168936,0.0491222,0.42423,0.206337,0.38042,0.154809,0.778288,0.56539,0.369443,0.97136,0.104793,0.315574,0.152326,0.993745,0.891974,0.20196,0.981916,0.401174,0.124054,0.352089,0.886763,0.341049,0.0509454,0.932981,0.759679,0.162441,0.0645629,0.882222,0.0933903,0.298733,0.160299,0.312226,0.427774,0.557578,0.204224,0.118214,0.567722,0.053817,0.10962,0.177667,0.675311,0.677016,0.591694,0.755669,0.658633,0.887935,0.221172,0.59326,0.387688,0.218084,0.824939,0.0116799,0.79085,0.414844,0.91965,0.307596,0.17731,0.748756,0.15986,0.861797,0.807803,0.0624173,0.288535,0.86327,0.875538,0.560751,0.669613,0.909528,0.240719,0.0533856,0.264212,0.866668,0.357663,0.602758,0.877898,0.137836,0.0553886,0.483836,0.401131,0.147319,0.626722,0.84947,0.726075,0.558601,0.794492,0.351425,0.88503,0.0523874,0.428106,0.0166584,0.248439,0.434285,0.171745,0.596373,0.663123,0.278232,0.870321,0.164956,0.964559,0.960957,0.0185698,0.609517,0.447276,0.811169,0.242817,0.668578,0.425588,0.358909,0.325714,0.0240578,0.262023,0.165073,0.328592,0.43385,0.656895,0.744396,0.562422,0.656589,0.0492759,0.293665,0.0310096,0.272044,0.937159,0.95617,0.181963,0.559931,0.984134,0.96626,0.801427,0.722044,0.583564,0.46838,0.852652,0.467179,0.68682,0.626612,0.475993,0.718471,0.826403,0.711541,0.445823,0.0437166,0.939022,0.529544,0.0719239,0.453481,0.481574,0.964604,0.0116432,0.194803,0.152719,0.891381,0.328707,0.275336,0.815262,0.793614,0.987379,0.601462,0.612335,0.479907,0.315292,0.381724,0.548793,0.126994,0.494975,0.235608,0.246389,0.421846,0.927167,0.867445,0.498521,0.355258,0.177519,0.92371,0.185508,0.956639,0.459672,0.836067,0.081819,0.200344,0.618868,0.615102,0.326999,0.858421,0.888303,0.401859,0.574452,0.691318,0.359063,0.593283,0.602078,0.456462,0.786267,0.464514,0.0504414,0.483424,0.237875,0.791743,0.359535,0.365369,0.595072,0.0937008,0.0871395,0.611554,0.813867,0.385439,0.80436,0.927683,0.391493,0.562992,0.388128,0.227036,0.327759,0.866549,0.763335,0.930578,0.685692,0.160962,0.171906,0.0764181,0.922746,0.872302,0.244556,0.0227947,0.0988515,0.30386,0.565001,0.706204,0.483132,0.863076,0.280061,0.212633,0.98477,0.0400947,0.650765,0.159447,0.160037,0.658997,0.974511,0.469349,0.697123,0.357773,0.179357,0.757883,0.257541,0.100169,0.713443,0.00869662,0.819061,0.765082,0.0727933,0.123776,0.396606,0.298181,0.23983,0.938686,0.284069,0.735402,0.99405,0.193155,0.557059,0.965186,0.674214,0.267932,0.361967,0.754821,0.903697,0.754569,0.475397,0.943693,0.654419,0.561751,0.0158091,0.271695,0.617911,0.151674,0.871369,0.459856,0.580057,0.70783,0.764864,0.0380073,0.538443,0.631574,0.937391,0.132055,0.799199,0.202256,0.763382,0.67628,0.00542575,0.983302,0.48268,0.834799,0.53488,0.921153,0.583922,0.287027,0.310164,0.955338,0.263246,0.741807,0.37672,0.00640833,0.933707,0.354299,0.106979,0.362112,0.853213,0.968979,0.295614,0.111549,0.488762,0.824728,0.644455,0.816212,0.221322,0.940943,0.228602,0.0366585,0.794275,0.282019,0.801503,0.541843,0.409455,0.573375,0.46673,0.358861,0.609099,0.471785,0.359204,0.832696,0.526156,0.730743,0.228419,0.00177187,0.594102,0.72291,0.422446,0.053603,0.0164335,0.212313,0.480024,0.583137,0.402623,0.674885,0.793018,0.771624,0.671752,0.478106,0.567668,0.179075,0.710383,0.773742,0.369185,0.308411,0.343758,0.0260357,0.698699,0.166293,0.0645643,0.22928,0.894736,0.569715,0.415907,0.205309,0.855029,0.321036,0.660799,0.81666,0.65245,0.25005,0.503393,0.32061,0.0170766,0.105438,0.237742,0.923279,0.54756,0.760387,0.683433,0.592716,0.576765,0.677523,0.346898,0.952592,0.512828,0.891501,0.312798,0.697362,0.507549,0.887492,0.774185,0.718599,0.519577,0.845052,0.962354,0.756427,0.118412,0.888453,0.192837,0.877033,0.84934,0.590526,0.828183,0.619016,0.013846,0.760362,0.310362,0.251128,0.888871,0.474188,0.0437822,0.573363,0.698594,0.737539,0.941282,0.0835416,0.173957,0.220106,0.197742,0.74035,0.117885,0.353973,0.130877,0.788471,0.620405,0.102552,0.654829,0.579873,0.734508,0.359194,0.783656,0.855537,0.372762,0.491657,0.573492,0.626564,0.539416,0.220034,0.0529314,0.513707,0.644817,0.43109,0.417331,0.795808,0.486573,0.147595,0.011726,0.173041,0.22606,0.701079,0.953629,0.212542,0.882843,0.885268,0.510046,0.400439,0.876765,0.127052,0.645878,0.578319,0.228422,0.312225,0.77997,0.177394,0.516976,0.935425,0.682566,0.0340877,0.34495,0.654763,0.336219,0.682813,0.0869213,0.318284,0.639836,0.86189,0.839217,0.399719,0.736981,0.396046,0.345147,0.574037,0.647617,0.0202065,0.4091,0.350614,0.0107894,0.217906,0.315939,0.764719,0.200249,0.220356,0.44041,0.996023,0.439963,0.186051,0.667268,0.0315285,0.0811667,0.137318,0.58951,0.765369,0.12016,0.0781973,0.273637,0.0956806,0.159645,0.114201,0.865121,0.336296,0.383166,0.311426,0.346058,0.472126,0.0364273,0.797378,0.534021,0.396368,0.553871,0.29627,0.518605,0.716809,0.0374808,0.794139,0.690344,0.596479,0.38333,0.0255855,0.802545,0.314456,0.71572,0.54586,0.234536,0.715758,0.0383767,0.518871,0.982473,0.668297,0.6644,0.702834,0.139224,0.79928,0.618794,0.0228781,0.369888,0.898551,0.834581,0.695433,0.20511,0.976763,0.271234,0.363278,0.919523,0.254643,0.133948,0.630396,0.145199,0.360305,0.741131,0.0361759,0.407827,0.782489,0.311579,0.245923,0.743363,0.329394,0.0124587,0.161541,0.819379,0.0192302,0.775953,0.751744,0.667632,0.36665,0.231263,0.2432,0.202094,0.680377,0.186058,0.228546,0.22761,0.0104294,0.418044,0.522489,0.14908,0.340246,0.0164692,0.358333,0.839003,0.29311,0.817878,0.149034,0.0730038,0.112448,0.967394,0.669975,0.870957,0.374706,0.922038,0.205069,0.0466595,0.257781,0.0452145,0.191351,0.717192,0.927348,0.551932,0.946799,0.511997,0.89154,0.880856,0.264485,0.568651,0.0318582,0.113004,0.99131,0.41811,0.0328391,0.388392,0.408252,0.894055,0.576572,0.0298325,0.851753,0.826143,0.384459,0.117728,0.658872,0.0700981,0.20855,0.657959,0.537775,0.0851922,0.298467,0.0831739,0.311634,0.978479,0.944708,0.924741,0.4961,0.885629,0.55448,0.0143725,0.888279,0.700384,0.265648,0.491758,0.654929,0.0912999,0.479879,0.474336,0.192177,0.525371,0.223925,0.976866,0.102955,0.700929,0.520995,0.349701,0.700133,0.575261,0.10352,0.912431,0.0357711,0.947352,0.351066,0.273521,0.870281,0.117332,0.0377283,0.112868,0.0347236,0.902631,0.311708,0.643536,0.461576,0.220782,0.907259,0.273864,0.858898,|0.99547,0.428071,0.746536,0.553688,0.547956,0.324902,0.953495,0.900055,0.597937,0.737436,0.969197,0.26067,0.779167,0.403102,0.906219,0.873498,0.225097,0.38338,0.72277,0.516585,0.00225163,0.0935377,0.903314,0.786677,0.604824,0.967712,0.302991,0.458453,0.511814,0.950941,0.641477,0.57641,0.154142,0.599862,0.811322,0.841799,0.40247,0.0703239,0.574358,0.924347,0.00620288,0.586482,0.974599,0.0191001,0.812907,0.801838,0.640427,0.737684,0.851835,0.803637,0.688186,0.0113031,0.639207,0.279101,0.195576,0.181813,0.999604,0.019442,0.586307,0.56158,0.136562,0.1044,0.658263,0.30733,0.648733,0.993558,0.160486,0.555165,0.557416,0.150706,0.428687,0.108674,0.103315,0.274467,0.107239,0.592586,0.283222,0.994113,0.616051,0.898705,0.115682,0.403754,0.939801,0.856275,0.642339,0.563844,0.584199,0.96848,0.924023,0.368476,0.816942,0.410739,0.203159,0.416838,0.937916,0.815991,0.457359,0.601992,0.247487,0.973031,0.223782,0.0323725,0.550817,0.962373,0.909694,0.362829,0.716562,0.695195,0.402599,0.292537,0.488857,0.603256,0.292289,0.830207,0.589164,0.564226,0.122567,0.217947,0.361454,0.477162,0.851347,0.0354607,0.177572,0.213169,0.876472,0.911991,0.0424466,0.21549,0.400049,0.239041,0.876907,0.250089,0.0608127,0.311079,0.489408,0.0277804,0.871694,0.258437,0.960845,0.0874617,0.862725,0.0492607,0.21542,0.0401376,0.413854,0.265304,0.424648,0.870846,0.94163,0.0210106,0.674072,0.353494,0.677732,0.888796,0.105842,0.315959,0.00176162,0.629226,0.848835,0.834138,0.878891,0.746389,0.859961,0.112957,0.238768,0.0913299,0.358103,0.293484,0.442238,0.994219,0.257893,0.675672,0.117614,0.279065,0.565796,0.148856,0.431381,0.812046,0.29555,0.688537,0.580212,0.150439,0.0947747,0.494029,0.524894,0.785402,0.27296,0.144399,0.623039,0.931748,0.0319192,0.706663,0.683265,0.676315,0.0114495,0.197731,0.87271,0.595418,0.691659,0.208695,0.972032,0.950978,0.0662182,0.848426,0.39491,0.719439,0.202681,0.861601,0.257071,0.676816,0.526887,0.980388,0.447868,0.768184,0.826678,0.836783,0.96622,0.299368,0.51378,0.218166,0.852603,0.332585,0.849338,0.651487,0.918796,0.801818,0.674799,0.499579,0.723129,0.285863,0.466006,0.641287,0.918275,0.0911272,0.0909905,0.0995343,0.611964,0.0152243,0.843392,0.445609,0.0140574,0.683071,0.129957,0.321606,0.43101,0.561904,0.240343,0.60963,0.543852,0.612868,0.145967,0.445499,0.546501,0.866421,0.128828,0.0200106,0.47461,0.624763,0.903365,0.638642,0.314804,0.238869,0.934724,0.390526,0.636164,0.612389,0.294517,0.173213,0.269873,0.801207,0.043338,0.677709,0.278433,0.460889,0.780652,0.604204,0.00715137,0.0966207,0.347624,0.65935,0.729433,0.902155,0.0595794,0.700434,0.558844,0.635119,0.973728,0.325264,0.0201304,0.276672,0.533545,0.0527451,0.130027,0.743177,0.840335,0.476974,0.209635,0.67971,0.90189,0.384315,0.748375,0.63737,0.0383724,0.126048,0.586341,0.0623586,0.528354,0.690463,0.883143,0.916325,0.331366,0.125432,0.992705,0.855679,0.191469,0.885795,0.483031,0.779806,0.941586,0.453009,0.407098,0.112745,0.61762,0.635785,0.0604819,0.837285,0.182971,0.298995,0.514523,0.659302,0.0476658,0.925609,0.642623,0.50578,0.547202,0.562273,0.722721,0.608425,0.208172,0.475444,0.697358,0.315125,0.00306433,0.146917,0.650784,0.805529,0.646981,0.92715,0.59847,0.0918076,0.309452,0.660922,0.991935,0.112857,0.502097,0.0330015,0.893195,0.984575,0.127652,0.359505,0.979622,0.811037,0.78793,0.248995,0.504234,0.623059,0.848448,0.407351,0.0596345,0.63037,0.722233,0.0645802,0.130577,0.606977,0.383646,0.292176,0.286748,0.430867,0.263373,0.832111,0.921888,0.654064,0.732314,0.370252,0.913312,0.550952,0.315483,0.945452,0.648031,0.88829,0.398606,0.735989,0.545024,0.216501,0.705372,0.184834,0.284642,0.110747,0.491508,0.291388,0.485928,0.428268,0.426476,0.203648,0.594037,0.55521,0.230884,0.232616,0.0576077,0.824168,0.227158,0.853264,0.00162441,0.221089,0.623362,0.123209,0.775551,0.735579,0.0750061,0.380722,0.476245,0.187652,0.957117,0.211937,0.431602,0.690547,0.57151,0.409153,0.803455,0.157415,0.514594,0.717711,0.190001,0.673266,0.901061,0.211962,0.849916,0.417598,0.0747484,0.0602907,0.808242,0.918309,0.442051,0.0870639,0.0400316,0.0498316,0.235254,0.199932,0.510135,0.731047,0.640378,0.970052,0.444842,0.92515,0.999649,0.245134,0.752637,0.0316782,0.992433,0.00103354,0.980009,0.474895,0.779456,0.931866,0.403008,0.658375,0.820481,0.435541,0.922474,0.115106,0.392979,0.853034,0.483631,0.473447,0.976197,0.334725,0.649192,0.409809,0.863749,0.972297,0.504448,0.881747,0.966625,0.238273,0.202442,0.728965,0.878198,0.913224,0.487104,0.7717,0.734527,0.959758,0.648037,0.42693,0.76177,0.935486,0.239262,0.613578,0.194041,0.46944,0.878606,0.0404828,0.596024,0.928463,0.323546,0.397495,0.323462,0.266795,0.632059,0.299977,0.259648,0.92491,0.249676,0.935835,0.966398,0.58501,0.179883,0.949823,0.238512,0.420885,0.880684,0.520566,0.787372,0.818088,0.734272,0.356991,0.205644,0.490624,0.165724,0.537031,0.638783,0.713355,0.980293,0.734804,0.230077,0.229691,0.661119,0.270894,0.883186,0.443442,0.243269,0.401258,0.313285,0.286013,0.643318,0.312461,0.132468,0.250313,0.157238,0.63516,0.707322,0.961449,0.762743,0.777494,0.208174,0.47337,0.0510961,0.829587,0.153365,0.613054,0.493517,0.290121,0.0465558,0.982349,0.757708,0.355514,0.367159,0.414442,0.409357,0.373739,0.276134,0.304442,0.993447,0.0110661,0.991653,0.794558,0.372632,0.392009,0.249963,0.511095,0.770778,0.332422,0.217672,0.742177,0.319887,0.779585,0.69004,0.44431,0.213913,0.0131517,0.277889,0.0619018,0.654566,0.451234,0.649406,0.52652,0.538804,0.764669,0.408705,0.603572,0.671541,0.676148,0.271558,0.159758,0.924685,0.298401,0.347744,0.227624,0.93215,0.807658,0.167611,0.27762,0.498904,0.61267,0.902022,0.675637,0.559853,0.922985,0.0913182,0.497917,0.448406,0.825819,0.785061,0.266788,0.493164,0.487255,0.531473,0.596337,0.848923,0.0196695,0.7425,0.782674,0.3455,0.097393,0.113809,0.405245,0.135022,0.951126,0.780367,0.691135,0.772905,0.927269,0.219709,0.290841,0.283249,0.777396,0.0757043,0.151025,0.660898,0.533188,0.447669,0.304835,0.534254,0.86633,0.0735061,0.779361,0.665906,0.555428,0.833552,0.64697,0.224898,0.738604,0.254933,0.675301,0.887084,0.0050962,0.59459,0.0613067,0.468841,0.985164,0.548523,0.702519,0.213481,0.631859,9.64999e-05,0.189878,0.466681,0.499399,0.7918,0.342001,0.16542,0.255635,0.299616,0.0563789,0.81507,0.962607,0.312979,0.201697,0.894822,0.784703,0.494757,0.340045,0.532004,0.71187,0.800399,0.721779,0.0549636,0.683138,0.632737,0.846977,0.949489,0.806369,0.363535,0.290867,0.61939,0.483494,0.24481,0.545062,0.0187781,0.703738,0.402995,0.895177,0.306916,0.188968,0.759897,0.0156348,0.350515,0.256805,0.650619,0.785837,0.383533,0.0475037,0.732938,0.260718,0.867722,0.238424,0.935747,0.554402,0.719608,0.996974,0.455876,0.84129,0.063545,0.59474,0.77857,0.210039,0.883873,0.79731,0.0493786,0.188601,0.670741,0.125614,0.157541,0.880593,0.280068,0.716058,0.140869,0.383367,0.254577,0.273538,0.876177,0.204114,0.991965,0.876707,0.00927716,0.90563,0.953562,0.459261,0.575841,0.978174,0.567516,0.158963,0.4561,0.0250685,0.187045,0.123875,0.496803,0.327497,0.0925673,0.176779,0.380694,0.560406,0.606958,0.467131,0.444226,0.246703,0.806335,0.0734341,0.573555,0.71326,0.280142,0.672017,0.619854,0.249527,0.587672,0.00614488,0.805266,0.655558,0.951412,0.990691,0.650879,0.344782,0.112361,0.536033,0.190377,0.361373,0.00185454,0.17544,0.538106,0.108248,0.1735,0.841368,0.802203,0.80761,0.628984,0.24764,0.0252626,0.516219,0.0230405,0.00751591,0.113104,0.1619,0.760059,0.218617,0.707402,0.218788,0.56542,0.663686,0.767163,0.502947,0.890412,0.289493,0.347498,0.81825,0.197136,0.629003,0.762962,0.0557616,0.19288,0.695105,0.00178671,0.752488,0.154015,0.511681,0.804803,0.319274,0.933044,0.116084,0.55617,0.692852,0.433162,0.0388358,0.604476,0.0603772,0.827921,0.415367,0.483447,0.0998251,0.834152,0.022642,0.887216,0.521299,0.0527053,0.980546,0.0790453,0.517476,0.797477,0.127836,0.669743,0.745874,0.8695,0.0325456,0.283985,0.083215,0.425311,0.409539,0.781538,0.33344,0.452177,0.341545,0.484551,0.116701,0.952434,0.12891,0.815059,0.874966,0.876402,0.307369,0.648305,0.0452445,0.359773,0.507005,0.11732,0.75058,0.568243,0.225379,0.158531,0.791501,0.568195,0.329543,0.713977,0.284,0.368546,0.697866,0.62322,0.281368,0.00943816,0.505287,0.45998,0.981724,0.505632,0.284525,0.67176,0.760146,0.00539625,0.953864,0.996253,0.761954,0.589778,0.506645,0.38194,0.453749,0.404673,0.0972413,0.922504,0.771605,0.617391,0.276026,0.194595,0.855494,0.321875,0.382526,0.401559,0.657986,0.408041,0.143393,0.216736,0.16732,0.48608,0.11465,0.951388,0.874038,0.64877,0.791017,0.124147,0.794914,0.843973,0.386189,0.572112,0.426052,0.520159,0.276263,0.695818,0.791253,0.924968,0.129428,0.470247,0.62901,0.872634,0.485367,0.097251,0.21206,0.834205,0.395365,0.0167022,0.418567,0.131926,0.130798,0.309132,0.577342,0.0584625,0.43627,0.649965,0.589827,0.928355,0.465047,0.284611,0.421022,0.786936,0.02591,0.548504,0.153537,0.882124,0.900522,0.852551,0.665828,0.408221,0.904475,0.364056,0.0886373,0.647172,0.105096,0.757225,0.194444,0.680354,0.326867,0.890461,0.319074,0.817134,0.499666,0.69316,0.144283,0.765775,0.300059,0.533965,0.701134,0.539837,0.490589,0.42773,0.846924,|0.46742,0.527014,0.537908,0.44581,0.561717,0.736638,0.711155,0.984165,0.104203,0.0340223,0.742907,0.677368,0.389199,0.771589,0.34003,0.0157222,0.393755,0.95899,0.157246,0.449217,0.244304,0.826836,0.290077,0.030334,0.0876878,0.585503,0.64934,0.6039,0.554368,0.70225,0.848593,0.665471,0.613338,0.813883,0.0885583,0.921293,0.422567,0.880983,0.645918,0.0936193,0.820917,0.146629,0.705867,0.686564,0.304894,0.961646,0.109134,0.395178,0.937366,0.330944,0.523486,0.826369,0.337749,0.377514,0.604128,0.278776,0.328634,0.222813,0.717422,0.385594,0.311224,0.697811,0.859123,0.268101,0.603029,0.811864,0.599541,0.445106,0.227888,0.0471311,0.767504,0.425204,0.291314,0.902654,0.818145,0.738897,0.320357,0.11257,0.566385,0.159646,0.429948,0.0230535,0.904382,0.36548,0.892142,0.0741388,0.180049,0.816399,0.130747,0.603372,0.814577,0.956929,0.772134,0.336639,0.956634,0.755039,0.347649,0.100212,0.133493,0.654363,0.67795,0.138055,0.953604,0.083729,0.876587,0.479088,0.641536,0.243598,0.275302,0.887702,0.999474,0.515516,0.99807,0.200344,0.643349,0.192914,0.514167,0.944729,0.184073,0.954255,0.428711,0.466428,0.765074,0.81661,0.826371,0.557106,0.0694494,0.825386,0.787686,0.107507,0.0376065,0.36844,0.944687,0.535214,0.915049,0.555651,0.221824,0.472474,0.346728,0.250168,0.964644,0.637235,0.631711,0.770138,0.883869,0.579749,0.197663,0.645718,0.0760538,0.429172,0.833759,0.188922,0.272775,0.516424,0.140307,0.971307,0.56386,0.369244,0.815009,0.866733,0.200472,0.384842,0.683402,0.705898,0.59381,0.119976,0.132955,0.18385,0.401143,0.173621,0.768356,0.295446,0.695117,0.351994,0.193008,0.883105,0.657518,0.32666,0.0305599,0.943879,0.279247,0.463265,0.851518,0.793448,0.153299,0.551784,0.700206,0.136893,0.5815,0.575827,0.467319,0.787639,0.830231,0.872735,0.0184751,0.133974,0.474119,0.928198,0.653272,0.145241,0.970534,0.233573,0.707463,0.403203,0.888375,0.130243,0.913883,0.5812,0.929813,0.0808004,0.43236,0.903079,0.330509,0.294569,0.193337,0.507504,0.321975,0.442606,0.418965,0.0750573,0.675257,0.394739,0.0359303,0.512556,0.43471,0.774088,0.963668,0.732586,0.926119,0.180329,0.737295,0.238832,0.546445,0.964451,0.0721155,0.787889,0.618965,0.935057,0.548223,0.907587,0.744913,0.287826,0.403439,0.142889,0.853526,0.800018,0.267055,0.799123,0.150183,0.539325,0.502256,0.250345,0.148886,0.141532,0.990124,0.483584,0.754871,0.0243476,0.72832,0.911605,0.792187,0.677893,0.943107,0.0729677,0.195645,0.779142,0.678293,0.0183477,0.626893,0.486857,0.501735,0.498028,0.629638,0.765028,0.17158,0.214682,0.227098,0.560899,0.350136,0.0897983,0.320124,0.0829712,0.192106,0.224862,0.747488,0.756273,0.423275,0.624222,0.640817,0.154068,0.545986,0.478305,0.976909,0.130093,0.118351,0.497118,0.563261,0.192627,0.884419,0.280642,0.563572,0.143407,0.501929,0.426005,0.025558,0.851331,0.42914,0.432289,0.10277,0.199072,0.599664,0.535628,0.150577,0.287088,0.930476,0.88382,0.205734,0.271329,0.441492,0.1651,0.310486,0.0678033,0.715829,0.794665,0.353077,0.169133,0.328975,0.75208,0.0545397,0.455742,0.946102,0.534851,0.733084,0.205986,0.35658,0.147253,0.294305,0.171757,0.0662206,0.804132,0.98132,0.675934,0.792364,0.241502,0.0918173,0.349852,0.259404,0.625493,0.000465035,0.890154,0.866876,0.205092,0.895375,0.0189553,0.127366,0.781924,0.699814,0.106462,0.0132501,0.631412,0.086061,0.0791392,0.59534,0.585831,0.810521,0.0572304,0.289382,0.846599,0.875494,0.0302895,0.770947,0.837135,0.443902,0.942658,0.352886,0.138744,0.799517,0.811902,0.86435,0.461964,0.979646,0.131034,0.536518,0.971635,0.510678,0.969299,0.0117521,0.702636,0.0420243,0.605423,0.998867,0.581123,0.968827,0.961801,0.702446,0.742909,0.0315595,0.765627,0.648829,0.893268,0.513991,0.292525,0.671033,0.77182,0.566806,0.159621,0.108201,0.991093,0.330659,0.204331,0.957539,0.981037,0.146784,0.241883,0.0480011,0.948151,0.134367,0.715247,0.693172,0.571247,0.244445,0.96554,0.321743,0.481141,0.725455,0.6616,0.0567712,0.653752,0.350964,0.954128,0.906894,0.686774,0.739049,0.704957,0.129894,0.682074,0.624265,0.272555,0.506175,0.0294653,0.862961,0.679925,0.536136,0.840584,0.571362,0.198887,0.324418,0.288287,0.961675,0.328706,0.742492,0.322196,0.529756,0.999281,0.540646,0.621301,0.447166,0.143213,0.610769,0.335151,0.834228,0.964823,0.454017,0.301189,0.841346,0.483003,0.320156,0.631225,0.603071,0.619705,0.73112,0.123201,0.0644853,0.648218,0.0286192,0.0511144,0.368162,0.312903,0.52039,0.965127,0.674553,0.658363,0.813649,0.171641,0.525386,0.799761,0.610478,0.434246,0.748643,0.671421,0.519509,0.370052,0.00717676,0.323215,0.672665,0.107286,0.0736074,0.0308801,0.44786,0.022592,0.188699,0.826784,0.425157,0.151565,0.947628,0.179084,0.561707,0.469319,0.260572,0.356424,0.203666,0.127227,0.207021,0.586687,0.0835218,0.200346,0.00485998,0.125601,0.00272644,0.834654,0.499605,0.242672,0.425302,0.0909843,0.550952,0.672159,0.86529,0.0449914,0.102583,0.554703,0.264564,0.125326,0.218219,0.988616,0.513725,0.881486,0.2755,0.0511901,0.148533,0.848266,0.75688,0.0706217,0.941037,0.158299,0.603663,0.99181,0.630661,0.624203,0.29533,0.596407,0.444195,0.572894,0.750615,0.601815,0.663879,0.0086816,0.456626,0.277029,0.680383,0.855631,0.849173,0.444078,0.215899,0.54683,0.143648,0.822274,0.0187994,0.897916,0.907703,0.79209,0.855046,0.789707,0.609681,0.699618,0.142246,0.962139,0.660638,0.217973,0.429009,0.550349,0.939623,0.342379,0.94041,0.389112,0.735711,0.0226659,0.68283,0.274161,0.0527864,0.176299,0.0699283,0.182772,0.640663,0.723897,0.310267,0.708006,0.42327,0.945564,0.431559,0.540821,0.474123,0.359339,0.49901,0.632314,0.107416,0.965955,0.208381,0.307861,0.855307,0.154937,0.158963,0.473694,0.47204,0.60492,0.78734,0.00970185,0.477674,0.424728,0.265496,0.32371,0.404991,0.715825,0.121672,0.73475,0.215741,0.626607,0.929054,0.889292,0.506095,0.478292,0.974483,0.690691,0.446353,0.639222,0.935043,0.980977,0.340451,0.413386,0.23747,0.809419,0.477167,0.455228,0.63094,0.622037,0.950985,0.687383,0.528655,0.676724,0.411293,0.676174,0.290076,0.394577,0.255473,0.570311,0.941538,0.84588,0.101693,0.471135,0.322297,0.272966,0.730154,0.759195,0.586258,0.021058,0.0929863,0.179905,0.841439,0.717781,0.137625,0.205351,0.00107199,0.770707,0.264626,0.204504,0.752924,0.583959,0.365063,0.340587,0.239079,0.12125,0.417601,0.990347,0.704626,0.503123,0.658313,0.770761,0.667627,0.9459,0.340983,0.0137987,0.677543,0.124275,0.189818,0.976898,0.856213,0.497944,0.220226,0.25752,0.682482,0.65045,0.758251,0.842414,0.956331,0.828736,0.130909,0.221911,0.72625,0.830109,0.168229,0.345997,0.772633,0.519472,0.871033,0.935605,0.992211,0.0654036,0.475108,0.0968641,0.985366,0.286348,0.329771,0.592029,0.653397,0.611446,0.294553,0.821347,0.385939,0.180555,0.784571,0.518657,0.411956,0.844864,0.116693,0.913919,0.110873,0.680105,0.893705,0.18483,0.632407,0.751265,0.208893,0.723505,0.0453128,0.199471,0.578394,0.396386,0.86734,0.890273,0.754591,0.178616,0.0515451,0.289851,0.912914,0.322734,0.976421,0.653864,0.162455,0.358961,0.890027,0.0102261,0.0927613,0.739014,0.859937,0.586905,0.499994,0.932188,0.366216,0.0410965,0.453764,0.817175,0.405111,0.745385,0.606654,0.743263,0.720903,0.783154,0.611667,0.796014,0.674226,0.786313,0.224189,0.215112,0.0473992,0.320368,0.401017,0.110312,0.247512,0.937519,0.80127,0.20466,0.71198,0.640031,0.756082,0.967182,0.247017,0.386705,0.456652,0.244112,0.871296,0.402045,0.335072,0.486141,0.458823,0.289693,0.0454794,0.160901,0.830967,0.225811,0.543248,0.811465,0.0865899,0.930981,0.00947261,0.636445,0.848591,0.681136,0.937148,0.280434,0.931631,0.624165,0.436708,0.0835741,0.862229,0.417304,0.971587,0.53516,0.936017,0.920739,0.346002,0.679887,0.0355276,0.729565,0.38022,0.995823,0.671423,0.231786,0.813909,0.539254,0.162191,0.0838758,0.405795,0.9183,0.691682,0.128022,0.723353,0.250536,0.696862,0.606008,0.312956,0.724877,0.509768,0.267958,0.33081,0.479308,0.832418,0.855486,0.665015,0.599149,0.420535,0.561691,0.527231,0.285453,0.405937,0.517949,0.546697,0.861976,0.979227,0.145868,0.183543,0.756778,0.065872,0.231986,0.793616,0.547108,0.0505735,0.0545952,0.739952,0.389634,0.90262,0.959668,0.83771,0.125216,0.678581,0.130601,0.625239,0.140498,0.761236,0.391299,0.0285931,0.736769,0.113554,0.210213,0.549558,0.544319,0.869305,0.577233,0.725918,0.514971,0.522521,0.0775985,0.876743,0.347294,0.478045,0.87811,0.938733,0.685717,0.985804,0.79637,0.4281,0.121802,0.0635768,0.31005,0.89255,0.656638,0.537178,0.126039,0.842505,0.189628,0.451852,0.57408,0.799239,0.983015,0.614038,0.646704,0.978714,0.239913,0.622068,0.655107,0.540227,0.542004,0.247904,0.151741,0.336845,0.362469,0.315843,0.908494,0.919459,0.689575,0.5238,0.946408,0.152787,0.432309,0.414173,0.83958,0.953406,0.141339,0.864667,0.428997,0.89233,0.678738,0.414008,0.667779,0.537322,0.0413704,0.904049,0.470435,0.0662256,0.829533,0.128612,0.0763155,0.293512,0.772564,0.549078,0.424107,0.764283,0.852283,0.599653,0.707732,0.807019,0.409539,0.71872,0.930601,0.909922,0.0909055,0.822696,0.614644,0.608663,0.952186,0.0432245,0.594468,0.473492,0.930684,0.347031,0.761549,0.65448,0.563402,0.681124,0.461478,0.0244497,0.283337,0.507706,0.205087,0.124176,0.0182476,0.260912,0.990281,0.307005,0.0539271,0.128704,0.0591453,|0.364048,0.855636,0.350016,0.180156,0.050357,0.254307,0.842254,0.441518,0.960565,0.157839,0.519551,0.782881,0.414041,0.0216705,0.482456,0.482735,0.47345,0.674037,0.21434,0.288721,0.856247,0.330642,0.573559,0.774446,0.183462,0.50486,0.0959496,0.323141,0.218882,0.246167,0.432144,0.763965,0.630736,0.0692651,0.981237,0.936827,0.943727,0.813481,0.432879,0.839537,0.529191,0.991023,0.612928,0.455106,0.564948,0.417859,0.656629,0.0421412,0.322843,0.686258,0.0522982,0.612283,0.125972,0.444571,0.722024,0.941781,0.89708,0.299707,0.565325,0.00103015,0.619389,0.423699,0.475798,0.165473,0.798733,0.502122,0.875374,0.519434,0.492095,0.259621,0.657858,0.0504463,0.331246,0.988574,0.905857,0.88746,0.485003,0.904736,0.743475,0.688898,0.885047,0.647776,0.0235277,0.0822285,0.126375,0.935362,0.73288,0.619648,0.977313,0.674789,0.671343,0.0678571,0.593206,0.177826,0.737666,0.813279,0.286501,0.682365,0.0191992,0.39922,0.209384,0.481101,0.00967962,0.735473,0.70351,0.874217,0.676209,0.765283,0.694354,0.99913,0.681394,0.240504,0.672802,0.441707,0.75252,0.266637,0.441916,0.383474,0.303315,0.790404,0.52999,0.701067,0.271619,0.0812208,0.570754,0.715818,0.49087,0.691734,0.17224,0.694232,0.473227,0.875306,0.857034,0.729815,0.540314,0.780356,0.346861,0.349903,0.120704,0.347934,0.700639,0.982957,0.22343,0.303812,0.121577,0.239212,0.439492,0.60698,0.769456,0.632609,0.0477145,0.892408,0.435312,0.0567668,0.510381,0.901666,0.805552,0.0467321,0.0241585,0.290296,0.913907,0.954673,0.510999,0.122605,0.300578,0.699939,0.334996,0.445398,0.771282,0.57831,0.787071,0.942001,0.563656,0.699103,0.976744,0.480006,0.368956,0.681429,0.0544615,0.945342,0.474293,0.12418,0.357265,0.188617,0.0019384,0.612109,0.78957,0.446432,0.137059,0.00945795,0.0789738,0.0920954,0.271233,0.262023,0.093509,0.820051,0.97691,0.988576,0.997096,0.0789819,0.651833,0.601574,0.504602,0.62291,0.901301,0.15296,0.965423,0.967779,0.626827,0.329555,0.384482,0.116678,0.994911,0.476656,0.165237,0.616566,0.370865,0.639231,0.740132,0.755358,0.498362,0.78057,0.648354,0.372316,0.118464,0.700398,0.938577,0.259912,0.197162,0.833692,0.910224,0.330725,0.299209,0.28307,0.614419,0.213086,0.703784,0.645548,0.107551,0.767437,0.686366,0.257873,0.183102,0.845482,0.259131,0.294388,0.397458,0.924889,0.432884,0.789012,0.0731066,0.0786437,0.591818,0.221839,0.323329,0.424202,0.923956,0.896392,0.884172,0.335127,0.996562,0.512398,0.194782,0.159145,0.17299,0.126029,0.209141,0.0460531,0.266944,0.593351,0.243165,0.703695,0.521839,0.132441,0.471371,0.452201,0.301227,0.731622,0.442087,0.441505,0.0547583,0.743536,0.257677,0.882763,0.904111,0.0398949,0.596471,0.74433,0.527488,0.730652,0.0980964,0.403406,0.718784,0.537687,0.984611,0.0915566,0.935042,0.380847,0.803303,0.0695825,0.186333,0.137104,0.186586,0.507122,0.842991,0.634548,0.391389,0.309044,0.561978,0.687049,0.713303,0.760568,0.827761,0.405815,0.717307,0.344214,0.675969,0.0753959,0.766526,0.173927,0.069773,0.636411,0.544337,0.708924,0.604043,0.82313,0.664229,0.382853,0.459463,0.983557,0.900729,0.792114,0.932208,0.724953,0.781744,0.264128,0.518053,0.289139,0.872759,0.987404,0.855318,0.787228,0.0484604,0.297599,0.592702,0.240583,0.357813,0.455281,0.499758,0.440029,0.951706,0.723554,0.706157,0.0731094,0.796689,0.588109,0.00341451,0.749547,0.128486,0.986313,0.440873,0.412598,0.942347,0.798926,0.629143,0.66264,0.252157,0.988696,0.240449,0.804734,0.917645,0.488999,0.506759,0.101364,0.194229,0.294459,0.541918,0.664585,0.61083,0.368241,0.24664,0.400934,0.321255,0.408631,0.325758,0.794028,0.160562,0.230916,0.313956,0.489743,0.394922,0.555751,0.666657,0.63759,0.742239,0.300623,0.207939,0.14545,0.227,0.669551,0.44452,0.288492,0.2448,0.776071,0.956048,0.54537,0.756295,0.518804,0.621214,0.666274,0.995117,0.337315,0.242141,0.784253,0.791274,0.021504,0.838311,0.787738,0.851425,0.438988,0.682708,0.0453575,0.53863,0.817703,0.385378,0.33904,0.766548,0.132576,0.365824,0.779838,0.452034,0.344598,0.934047,0.913501,0.351839,0.0767705,0.513756,0.165238,0.113241,0.951426,0.147771,0.856365,0.69514,0.244945,0.518535,0.00766891,0.469302,0.667356,0.347384,0.967039,0.0997038,0.0286135,0.931314,0.815343,0.187808,0.0459514,0.842228,0.615101,0.604558,0.736199,0.27144,0.0320069,0.52366,0.467046,0.813322,0.92112,0.695817,0.635464,0.486275,0.144413,0.452992,0.598689,0.804156,0.661353,0.46226,0.961177,0.791554,0.58676,0.233622,0.485948,0.887367,0.824893,0.191765,0.291178,0.97285,0.741161,0.219948,0.229168,0.231328,0.996437,0.789017,0.793308,0.264296,0.360217,0.736469,0.209744,0.0928362,0.981911,0.0444226,0.945973,0.235224,0.532944,0.212657,0.914755,0.205436,0.64104,0.864875,0.375709,0.0897337,0.511251,0.339774,0.0815484,0.0104536,0.0675535,0.341248,0.114943,0.251262,0.275774,0.26455,0.410256,0.809622,0.910986,0.00278598,0.661917,0.292955,0.13846,0.592779,0.554077,0.100831,0.345927,0.277112,0.431797,0.64649,0.9813,0.172534,0.742637,0.783804,0.933518,0.153157,0.501455,0.86685,0.796903,0.531467,0.716515,0.168732,0.293298,0.939047,0.475378,0.355067,0.102455,0.092964,0.383,0.196132,0.970892,0.928918,0.24568,0.84144,0.8757,0.884924,0.641728,0.161283,0.362621,0.520833,0.159459,0.929669,0.393902,0.0251161,0.87058,0.831444,0.331484,0.656295,0.351138,0.0141359,0.141589,0.551382,0.913726,0.377413,0.31386,0.348703,0.265424,0.960166,0.472061,0.818102,0.51255,0.584418,0.186514,0.568288,0.752961,0.575016,0.222144,0.964139,0.378713,0.21276,0.350191,0.700286,0.617646,0.744002,0.203086,0.268211,0.704584,0.868739,0.840741,0.0151159,0.636907,0.488335,0.823922,0.586966,0.197633,0.796818,0.0407977,0.744825,0.155871,0.673723,0.210419,0.940357,0.221911,0.357337,0.349767,0.179941,0.95388,0.459471,0.723396,0.208651,0.146629,0.581436,0.43535,0.490181,0.484793,0.826008,0.52286,0.246341,0.204067,0.250776,0.294321,0.31608,0.974984,0.523037,0.721774,0.500308,0.590859,0.981706,0.228528,0.23265,0.43218,0.281274,0.853211,0.937336,0.821985,0.946967,0.621725,0.563591,0.646411,0.644164,0.402346,0.323436,0.0275927,0.396489,0.106228,0.5115,0.423089,0.896051,0.100123,0.0462934,0.429388,0.287752,0.310528,0.614142,0.999463,0.109662,0.00367367,0.480185,0.138484,0.636537,0.0235447,0.578783,0.0539237,0.987264,0.343867,0.587432,0.206619,0.595837,0.443107,0.169502,0.329584,0.00204825,0.175556,0.447154,0.208705,0.970744,0.132725,0.300811,0.252738,0.216461,0.985898,0.520785,0.105152,0.275332,0.410339,0.827643,0.0458459,0.451262,0.304825,0.150324,0.528616,0.2116,0.686807,0.942629,0.276535,0.688128,0.399173,0.0587737,0.0958008,0.533966,0.603909,0.351304,0.692692,0.786875,0.533947,0.0445642,0.837125,0.0822129,0.642696,0.695402,0.257013,0.397356,0.404694,0.852469,0.907709,0.782696,0.1431,0.839718,0.311162,0.806838,0.145967,0.625039,0.274701,0.386025,0.791824,0.417493,0.216194,0.255754,0.71463,0.439843,0.616983,0.274115,0.304745,0.116562,0.265893,0.308051,0.0680842,0.916719,0.441004,0.526483,0.590006,0.714645,0.0565461,0.955506,0.215886,0.923797,0.536529,0.839051,0.0904629,0.344863,0.48261,0.33037,0.263829,0.23128,0.661908,0.735226,0.710862,0.0848637,0.299048,0.0749182,0.301252,0.849557,0.274629,0.900085,0.372928,0.152111,0.7429,0.874937,0.0952109,0.18849,0.664243,0.933967,0.676825,0.472635,0.349275,0.368238,0.743509,0.349207,0.297585,0.19455,0.328873,0.0848553,0.53008,0.59484,0.464436,0.0149193,0.546381,0.305314,0.486556,0.125169,0.0305817,0.680035,0.720172,0.835777,0.00908309,0.878552,0.0969993,0.582483,0.99469,0.163929,0.503048,0.105224,0.846738,0.135492,0.260726,0.164806,0.0516468,0.455905,0.985697,0.068882,0.981079,0.364339,0.429039,0.865856,0.985656,0.13931,0.526001,0.64601,0.527524,0.0211301,0.279627,0.274441,0.0927342,0.588689,0.284201,0.785501,0.1196,0.718829,0.280426,0.512225,0.818546,0.0508968,0.750726,0.351993,0.300289,0.132708,0.0622255,0.290439,0.444656,0.930248,0.120813,0.547987,0.328339,0.0208182,0.765134,0.98793,0.640833,0.684478,0.399017,0.375723,0.906094,0.759327,0.668863,0.335582,0.267206,0.667949,0.984877,0.854037,0.74188,0.907045,0.64943,0.472984,0.00293273,0.744435,0.50642,0.674535,0.691542,0.29183,0.796738,0.361808,0.941982,0.396823,0.414753,0.860039,0.783109,0.53395,0.245366,0.851209,0.0713232,0.620849,0.501422,0.339424,0.377448,0.018691,0.511309,0.991133,0.706606,0.173012,0.690442,0.0266252,0.91879,0.90971,0.868252,0.127062,0.499384,0.239635,0.486192,0.188427,0.537263,0.436581,0.0046823,0.288677,0.849266,0.449684,0.282659,0.99226,0.58597,0.647086,0.646596,0.660733,0.85566,0.747409,0.649171,0.0760111,0.596207,0.0582281,0.871023,0.618638,0.340872,0.417428,0.393996,0.129915,0.515506,0.376473,0.812604,0.394842,0.276623,0.138697,0.598668,0.351629,0.926341,0.543416,0.970329,0.750841,0.616331,0.114177,0.418556,0.591147,0.292391,0.240817,0.906974,0.560032,0.295615,0.823026,0.495539,0.146642,0.581963,0.983341,0.519746,0.277639,0.33416,0.115005,0.743407,0.551547,0.134601,0.717437,0.474925,0.229024,0.46696,0.31615,0.517941,0.792558,0.708561,0.0779053,0.804653,0.664543,0.330413,0.238007,0.242865,0.387113,0.798681,0.547272,0.418793,0.235124,0.633024,0.300896,0.686016,0.518817,0.207692,0.013603,0.845671,0.954532,0.209698,0.0648848,0.950149,0.380641,0.974662,|0.213036,0.917265,0.359726,0.256604,0.493091,0.286753,0.659126,0.33761,0.281125,0.513029,0.837076,0.828054,0.65171,0.505141,0.0344753,0.821609,0.987923,0.920788,0.267593,0.234069,0.257742,0.91398,0.225284,0.958462,0.897533,0.999667,0.262978,0.255178,0.282136,0.702924,0.7996,0.417703,0.672378,0.927969,0.432761,0.211415,0.556807,0.514458,0.439984,0.98525,0.0449299,0.322185,0.897433,0.305521,0.21558,0.102853,0.0418041,0.291488,0.615028,0.745452,0.402399,0.745491,0.294362,0.0295436,0.859841,0.378023,0.752748,0.13995,0.667076,0.611064,0.872809,0.0474542,0.281468,0.556064,0.497788,0.826971,0.506314,0.0856792,0.580055,0.852986,0.631388,0.508907,0.00291991,0.914981,0.801128,0.231239,0.147065,0.642067,0.633983,0.389432,0.778033,0.89667,0.290626,0.76146,0.157571,0.215505,0.717128,0.880037,0.0745767,0.338746,0.855479,0.332315,0.97477,0.0500031,0.987553,0.86016,0.600242,0.1588,0.531158,0.372402,0.759124,0.0194767,0.531903,0.868571,0.024959,0.311156,0.28007,0.412565,0.472902,0.456101,0.916571,0.940018,0.891384,0.643887,0.659118,0.393027,0.926706,0.255881,0.961147,0.40135,0.524289,0.505621,0.759484,0.348653,0.659014,0.597249,0.731507,0.486306,0.862947,0.312027,0.778825,0.492661,0.48228,0.689284,0.828173,0.792201,0.0602998,0.15439,0.235326,0.0669618,0.182998,0.876867,0.903698,0.21716,0.606875,0.91942,0.661582,0.343008,0.0542029,0.521722,0.829319,0.0202784,0.37512,0.0859215,0.953486,0.728929,0.740949,0.303797,0.509152,0.146768,0.746688,0.650744,0.757377,0.571755,0.336352,0.760649,0.809018,0.801376,0.0744034,0.306185,0.494875,0.58947,0.366396,0.821938,0.297101,0.954933,0.661283,0.928732,0.0367853,0.570344,0.31167,0.194431,0.535719,0.80523,0.250177,0.0193753,0.804127,0.430661,0.0603145,0.734852,0.773111,0.477745,0.165867,0.788464,0.246279,0.481945,0.786962,0.0668607,0.61337,0.0143877,0.512398,0.325929,0.642601,0.277873,0.658919,0.553505,0.357125,0.320624,0.266824,0.884781,0.117952,0.962811,0.0642864,0.436034,0.871,0.537381,0.536802,0.476543,0.698016,0.573669,0.32583,0.854918,0.702344,0.0995979,0.897082,0.926369,0.177303,0.704678,0.601012,0.67849,0.236063,0.011264,0.908708,0.702231,0.447253,0.277039,0.767507,0.0517194,0.482462,0.66716,0.0806157,0.411693,0.052678,0.777014,0.770152,0.973277,0.873757,0.176227,0.33321,0.0916477,0.143596,0.924766,0.60203,0.397904,0.974437,0.162692,0.721079,0.481621,0.660361,0.305282,0.1713,0.300547,0.199328,0.386412,0.234599,0.468295,0.830828,0.900601,0.498984,0.143404,0.384359,0.219565,0.891618,0.842928,0.843345,0.355563,0.804178,0.4767,0.838759,0.687754,0.883509,0.460983,0.178518,0.545662,0.487714,0.328743,0.620482,0.202825,0.680317,0.11026,0.622088,0.618747,0.59898,0.807776,0.909873,0.783746,0.961327,0.258347,0.11408,0.0856027,0.770308,0.338604,0.294681,0.0179361,0.0887706,0.305419,0.443587,0.319806,0.79339,0.791685,0.752727,0.193548,0.67218,0.381644,0.65513,0.0643558,0.425213,0.108009,0.724174,0.18664,0.102821,0.0864038,0.819571,0.284633,0.818178,0.474946,0.875613,0.414241,0.0259101,0.21123,0.576755,0.834263,0.947813,0.422547,0.973116,0.103723,0.439818,0.367424,0.636216,0.951539,0.245605,0.633193,0.823851,0.223174,0.134297,0.386173,0.214503,0.114214,0.314911,0.913876,0.492261,0.250249,0.521811,0.0820409,0.295511,0.0406384,0.132106,0.395701,0.368846,0.131687,0.414153,0.222885,0.774836,0.377226,0.0306584,0.872339,0.576251,0.569604,0.161949,0.00253057,0.56473,0.586749,0.416866,0.950116,0.743382,0.633906,0.101462,0.607755,0.0566867,0.750419,0.951048,0.163615,0.479432,0.702135,0.620675,0.00266725,0.0985535,0.113939,0.567901,0.667908,0.557999,0.0712479,0.853155,0.0166196,0.590634,0.777004,0.0911028,0.892125,0.0847172,0.422813,0.472565,0.622672,0.67781,0.544039,0.374557,0.644083,0.587863,0.297764,0.160642,0.710973,0.224042,0.108335,0.317487,0.720729,0.103252,0.849001,0.318683,0.139228,0.758111,0.0215949,0.10421,0.137849,0.23488,0.0882671,0.0123814,0.454318,0.222973,0.201263,0.127165,0.904635,0.0487065,0.801047,0.622417,0.0254011,0.990791,0.596069,0.234749,0.386047,0.323437,0.214054,0.101863,0.644188,0.0572789,0.894332,0.790094,0.74103,0.44635,0.322887,0.431205,0.49897,0.965684,0.708892,0.379095,0.933509,0.550203,0.974128,0.641837,0.103525,0.457287,0.246559,0.427278,0.503382,0.229491,0.0657336,0.27929,0.595196,0.232886,0.40721,0.186341,0.318496,0.633886,0.358574,0.193698,0.973595,0.388824,0.041885,0.10397,0.366319,0.69399,0.111693,0.487933,0.0950028,0.0112922,0.548659,0.54321,0.874471,0.915488,0.364695,0.531501,0.165155,0.609208,0.863398,0.93072,0.0976762,0.368495,0.704301,0.97134,0.6342,0.984334,0.807871,0.872785,0.0054276,0.584694,0.588142,0.161083,0.349114,0.508586,0.761426,0.823779,0.477991,0.105604,0.116142,0.890358,0.326407,0.223982,0.684464,0.075815,0.265244,0.923036,0.382333,0.154634,0.199833,0.999108,0.41671,0.134468,0.51021,0.431676,0.733149,0.253849,0.370819,0.222021,0.75756,0.25639,0.931054,0.93025,0.408974,0.517014,0.416857,0.980246,0.765858,0.385914,0.576651,0.858096,0.748833,0.523158,0.0198027,0.649475,0.565266,0.897429,0.262113,0.558334,0.0680291,0.449758,0.741138,0.905633,0.0990208,0.388953,0.752638,0.211507,0.0808974,0.845101,0.386438,0.368001,0.319977,0.75222,0.772746,0.485457,0.0385304,0.0174667,0.906447,0.534231,0.664664,0.269458,0.502281,0.32085,0.709135,0.573543,0.257308,0.814258,0.931676,0.0170924,0.933321,0.575436,0.854833,0.166589,0.30973,0.184567,0.880075,0.0148879,0.0870826,0.217233,0.560678,0.59361,0.688388,0.221414,0.265213,0.952781,0.665376,0.264953,0.750003,0.579346,0.900228,0.241495,0.911816,0.226084,0.811142,0.998653,0.237562,0.793396,0.447446,0.390366,0.120265,0.0136554,0.800454,0.135916,0.992807,0.603471,0.923288,0.01524,0.212224,0.363634,0.213421,0.932792,0.693784,0.821549,0.298667,0.38894,0.0265925,0.642205,0.21703,0.17004,0.0758597,0.343318,0.940879,0.554007,0.64749,0.778856,0.326461,0.514982,0.10335,0.0392315,0.627451,0.200106,0.115437,0.747605,0.965561,0.722467,0.797811,0.727782,0.0188252,0.840889,0.723906,0.232393,0.424559,0.870738,0.316669,0.311786,0.825133,0.226191,0.867988,0.502192,0.809966,0.713567,0.189562,0.62698,0.812303,0.708274,0.823262,0.266231,0.187828,0.766891,0.0417208,0.710948,0.377635,0.349066,0.378267,0.934704,0.647184,0.484946,0.0789958,0.658783,0.595179,0.595233,0.204322,0.759369,0.461589,0.429753,0.225435,0.633745,0.213709,0.0658964,0.651022,0.804205,0.25275,0.541087,0.946705,0.21723,0.703097,0.602438,0.175473,0.254726,0.948567,0.716043,0.6126,0.904855,0.926663,0.991243,0.905145,0.731522,0.26275,0.804944,0.482708,0.114333,0.0827026,0.453821,0.286737,0.098918,0.470797,0.62554,0.749626,0.304817,0.131982,0.915729,0.876583,0.253413,0.646089,0.139365,0.357315,0.60133,0.356612,0.765105,0.728283,0.843839,0.649528,0.476158,0.612932,0.902271,0.0975964,0.23367,0.85357,0.270293,0.486737,0.454832,0.227302,0.744018,0.621493,0.0218167,0.560749,0.443352,0.175851,0.171506,0.981938,0.822517,0.269403,0.18507,0.191253,0.191991,0.582408,0.567449,0.532525,0.465495,0.188897,0.683296,0.765528,0.969894,0.504255,0.610295,0.812743,0.769482,0.622576,0.106634,0.224712,0.614043,0.56574,0.302168,0.147439,0.282639,0.261908,0.867547,0.427722,0.811484,0.959515,0.722082,0.683701,0.79777,0.844885,0.381698,0.843788,0.633835,0.456746,0.0353808,0.125574,0.0577464,0.663937,0.313894,0.141198,0.324258,0.704931,0.775089,0.510859,0.909777,0.239461,0.575495,0.243834,0.588633,0.165347,0.859904,0.484052,0.309839,0.609597,0.799291,0.544024,0.793075,0.396138,0.161222,0.382612,0.210964,0.17191,0.477839,0.172726,0.542543,0.225917,0.752422,0.150394,0.56852,0.972646,0.414711,0.0915961,0.671365,0.18423,0.675216,0.0798897,0.488642,0.00782561,0.393288,0.824273,0.0509517,0.678755,0.20574,0.160006,0.27584,0.892518,0.105727,0.653105,0.20161,0.54987,0.392224,0.195777,0.309924,0.034098,0.723388,0.263408,0.425751,0.97154,0.761695,0.60085,0.498721,0.508905,0.729882,0.596549,0.842095,0.758892,0.908109,0.878618,0.469288,0.0295216,0.22059,0.743901,0.716064,0.16767,0.176987,0.817376,0.257417,0.152416,0.415948,0.330651,0.124672,0.570513,0.818478,0.398804,0.338126,0.141137,0.33612,0.696505,0.303209,0.593658,0.14069,0.365635,0.573511,0.322641,0.45122,0.961033,0.499102,0.840952,0.678499,0.429312,0.842623,0.716321,0.304816,0.651001,0.973653,0.398226,0.93559,0.196271,0.493643,0.0705572,0.0372738,0.2668,0.00553447,0.484597,0.552515,0.59976,0.289825,0.00398403,0.71489,0.214108,0.580695,0.732144,0.182633,0.445188,0.84507,0.378161,0.227545,0.0275881,0.61847,0.99477,0.86915,0.537088,0.596106,0.644871,0.241733,0.947985,0.0244241,0.807536,0.535019,0.540309,0.103719,0.218995,0.82231,0.060595,0.42599,0.657087,0.30433,0.213105,0.434607,0.499578,0.819016,0.227488,0.210101,0.895782,0.506711,0.325725,0.212712,0.165335,0.864034,0.613752,0.304986,0.0388436,0.960376,0.154798,0.43679,0.309755,0.021558,0.199551,0.228711,0.194004,0.607612,0.899541,0.422325,0.673822,0.80542,0.351306,0.521669,0.824362,0.656429,0.21453,0.986608,0.487403,0.868655,0.756235,0.641905,0.754775,0.670929,0.862408,0.050967,0.813082,0.781192,0.290192,0.43717,0.989656,0.854013,0.199368,0.531358,0.306086,0.940921,0.977045,0.975026,0.321788,0.839144,0.62999,|0.701017,0.70525,0.953198,0.778346,0.148112,0.51016,0.289429,0.833162,0.948496,0.15403,0.163718,0.711396,0.0719923,0.787302,0.0182921,0.121441,0.420307,0.530344,0.651612,0.272329,0.979325,0.212311,0.0392679,0.145418,0.0127519,0.693375,0.436763,0.995016,0.398703,0.215061,0.63061,0.844728,0.346558,0.326026,0.926405,0.679364,0.667241,0.635974,0.284557,0.431386,0.0669172,0.684618,0.323734,0.177297,0.155434,0.232503,0.382921,0.149986,0.950264,0.965072,0.919036,0.925579,0.0316217,0.172442,0.877341,0.245538,0.583729,0.360954,0.731937,0.474278,0.369442,0.227483,0.27852,0.348477,0.79942,0.424156,0.843808,0.160084,0.140864,0.515861,0.392919,0.235505,0.465299,0.778395,0.217814,0.0435786,0.543115,0.866486,0.976009,0.771984,0.260153,0.96389,0.0288939,0.339001,0.887243,0.0448633,0.893315,0.300105,0.159145,0.565911,0.308757,0.46415,0.555681,0.859408,0.39154,0.116817,0.620054,0.558549,0.580696,0.0956302,0.486109,0.144378,0.0393581,0.373356,0.662189,0.996942,0.630279,0.704774,0.800604,0.687045,0.774224,0.96585,0.238572,0.0236844,0.188243,0.268857,0.626758,0.888332,0.314683,0.0487472,0.822987,0.241078,0.758499,0.482381,0.447126,0.301182,0.368137,0.937906,0.760304,0.041304,0.507995,0.0936309,0.662445,0.515076,0.138677,0.0793022,0.284959,0.608447,0.194057,0.4408,0.107921,0.882362,0.258073,0.380025,0.269971,0.00710905,0.215895,0.996806,0.497792,0.244989,0.368499,0.911064,0.137506,0.90515,0.216004,0.995145,0.104067,0.453636,0.644319,0.132552,0.893345,0.633751,0.759639,0.404746,0.778071,0.518675,0.134164,0.103969,0.821146,0.619229,0.000427485,0.416574,0.51082,0.56948,0.0309205,0.819481,0.954017,0.296582,0.361126,0.0855086,0.342945,0.935237,0.241225,0.568197,0.25003,0.160236,0.517555,0.188847,0.127477,0.56654,0.739863,0.548246,0.391793,0.583038,0.00474906,0.60314,0.486879,0.869681,0.564523,0.577049,0.14328,0.635376,0.396445,0.560577,0.480105,0.143243,0.457788,0.579749,0.757092,0.975642,0.394947,0.836192,0.479879,0.010586,0.108151,0.0583104,0.678202,0.194183,0.00146145,0.345719,0.516493,0.11317,0.58002,0.390975,0.915216,0.443929,0.397996,0.599139,0.49821,0.197791,0.0558586,0.160481,0.0588174,0.841625,0.267982,0.407247,0.387444,0.852056,0.947383,0.187101,0.0800756,0.0161372,0.208067,0.294555,0.0681398,0.474704,0.950749,0.834644,0.539532,0.00958073,0.84079,0.885133,0.680439,0.054422,0.188711,0.778059,0.807519,0.146044,0.513504,0.114134,0.666935,0.94231,0.858706,0.359891,0.275918,0.216867,0.759834,0.0942791,0.427953,0.750837,0.632475,0.629878,0.60456,0.225113,0.857323,0.295784,0.265027,0.0732115,0.941924,0.780498,0.274958,0.662202,0.406864,0.597388,0.573754,0.497306,0.525743,0.236154,0.279269,0.01836,0.977262,0.18772,0.101858,0.992682,0.627676,0.980059,0.66633,0.646376,0.533905,0.758886,0.0158154,0.0445037,0.325008,0.089115,0.775533,0.0271024,0.259461,0.575169,0.612005,0.0405695,0.72941,0.486321,0.143692,0.429612,0.864411,0.952875,0.872708,0.214334,0.87659,0.487616,0.451243,0.726218,0.181269,0.31071,0.120253,0.700252,0.602659,0.0352904,0.765228,0.418061,0.688695,0.116461,0.699811,0.409588,0.481286,0.804157,0.625541,0.811835,0.501115,0.638001,0.888989,0.558761,0.739395,0.341927,0.257149,0.692499,0.459143,0.18111,0.158619,0.640455,0.801777,0.417306,0.358407,0.551126,0.595976,0.860083,0.168828,0.52431,0.12475,0.138209,0.155161,0.222493,0.452715,0.976389,0.563637,0.241786,0.113216,0.214577,0.716966,0.379977,0.798697,0.0985582,0.867066,0.19082,0.897616,0.670014,0.560565,0.340163,0.846443,0.164902,0.420823,0.971546,0.227446,0.429134,0.265321,0.647043,0.135445,0.256628,0.192657,0.759312,0.328161,0.898595,0.855715,0.438784,0.135753,0.712338,0.593172,0.660114,0.574292,0.0610069,0.485526,0.504612,0.845771,0.169867,0.657495,0.115116,0.667638,0.238723,0.666447,0.697583,0.199549,0.376376,0.79317,0.128132,0.433699,0.0948423,0.572862,0.837899,0.43857,0.829017,0.461898,0.319274,0.823284,0.31694,0.35171,0.0408242,0.352605,0.0376233,0.189231,0.95371,0.623288,0.195684,0.263064,0.52555,0.444843,0.266974,0.829297,0.0127503,0.975518,0.260967,0.541002,0.266427,0.0435565,0.430914,0.562797,0.411281,0.449886,0.964152,0.282044,0.490717,0.241134,0.69117,0.762501,0.595336,0.281058,0.536698,0.765427,0.816728,0.702453,0.251117,0.513774,0.158706,0.0986632,0.206747,0.469534,0.638724,0.716937,0.457704,0.780643,0.00934601,0.273275,0.743753,0.843213,0.653495,0.188662,0.700906,0.713164,0.620388,0.313731,0.76646,0.180211,0.447708,0.404844,0.418274,0.221211,0.307507,0.00177038,0.410039,0.415729,0.0937115,0.418725,0.575761,0.050683,0.647859,0.983244,0.453835,0.468045,0.22331,0.951785,0.995047,0.675431,0.583691,0.0293568,0.719367,0.930184,0.726361,0.00379854,0.742219,0.66027,0.339439,0.0727547,0.0159186,0.533537,0.627065,0.803169,0.432443,0.178784,0.115327,0.969132,0.236707,0.809964,0.0444694,0.129038,0.939488,0.430795,0.364571,0.475998,0.466232,0.881928,0.821322,0.514616,0.380112,0.551617,0.942916,0.775766,0.201634,0.750158,0.468097,0.720514,0.0233667,0.410497,0.164656,0.327382,0.216572,0.245367,0.00452721,0.382882,0.411731,0.128825,0.726903,0.354834,0.448997,0.3125,0.626041,0.109791,0.823917,0.0302129,0.972416,0.340422,0.0804434,0.928824,0.408384,0.0247434,0.0630093,0.964015,0.311276,0.582007,0.759595,0.682377,0.259024,0.106024,0.464534,0.47022,0.645646,0.652222,0.427018,0.585825,0.0954382,0.34999,0.53969,0.938307,0.039539,0.716199,0.33059,0.167418,0.948787,0.462821,0.644946,0.553777,0.205096,0.438416,0.0192851,0.757693,0.887757,0.875941,0.616057,0.391979,0.359465,0.990611,0.723847,0.396578,0.0567073,0.365154,0.264454,0.455241,0.0648167,0.0818346,0.630448,0.510507,0.442553,0.902482,0.916795,0.230307,0.701106,0.147346,0.539371,0.594428,0.371629,0.488169,0.0982895,0.048319,0.0688922,0.609895,0.514044,0.378177,0.304847,0.618323,0.228654,0.155109,0.26429,0.491789,0.409066,0.932767,0.263062,0.525938,0.384517,0.887282,0.139992,0.971325,0.22498,0.254506,0.085294,0.89958,0.516593,0.587239,0.174739,0.307734,0.616765,0.839702,0.0626546,0.21602,0.736619,0.339576,0.769367,0.852868,0.342013,0.985307,0.627057,0.153094,0.73762,0.0879571,0.968539,0.115068,0.694774,0.138946,0.84808,0.303283,0.210022,0.959857,0.457896,0.13215,0.148693,0.380168,0.354504,0.339753,0.0830576,0.184445,0.435266,0.489723,0.0149155,0.321253,0.86598,0.0558134,0.573633,0.216865,0.170993,0.932723,0.254449,0.923609,0.553779,0.406528,0.0251642,0.467597,0.651197,0.57616,0.971172,0.187714,0.899309,0.0807393,0.205601,0.555934,0.831863,0.248187,0.0580502,0.100246,0.420936,0.345751,0.393858,0.910561,0.155491,0.938125,0.335396,0.181317,0.0311553,0.930443,0.390055,0.351956,0.647283,0.591294,0.327847,0.366397,0.989763,0.883469,0.207249,0.826879,0.416782,0.187409,0.264814,0.0894125,0.616193,0.86531,0.772104,0.494539,0.279965,0.0548059,0.304482,0.919908,0.399291,0.736463,0.901567,0.116297,0.477114,0.265926,0.183324,0.163381,0.110842,0.903785,0.29743,0.193609,0.0650685,0.374459,0.60806,0.849311,0.14621,0.118653,0.588684,0.283744,0.0417352,0.232858,0.883613,0.75839,0.69628,0.40482,0.50899,0.0850904,0.534707,0.794378,0.026194,0.997865,0.632209,0.870672,0.230069,0.0281658,0.626625,0.00283337,0.331925,0.78564,0.297042,0.251996,0.219985,0.18203,0.553796,0.61374,0.729284,0.328473,0.314795,0.348585,0.936494,0.225266,0.356918,0.0115185,0.944955,0.0420353,0.180579,0.198383,0.695923,0.11848,0.90901,0.765587,0.952246,0.460203,0.113736,0.744349,0.268233,0.528849,0.835314,0.330333,0.118597,0.489433,0.520978,0.952306,0.231695,0.799581,0.555925,0.0727464,0.253214,0.502613,0.593017,0.526871,0.912953,0.87388,0.0188518,0.791198,0.479036,0.234956,0.161745,0.499811,0.687737,0.918981,0.849714,0.309744,0.386296,0.136756,0.474955,0.0223061,0.932892,0.76197,0.769542,0.150906,0.317823,0.111314,0.589866,0.92363,0.726589,0.507505,0.409691,0.437307,0.514261,0.607426,0.403357,0.0365363,0.227157,0.0464898,0.876883,0.921264,0.517976,0.7977,0.285163,0.474494,0.12478,0.151398,0.961374,0.0196674,0.098244,0.00462979,0.08071,0.702342,0.496535,0.568313,0.193564,0.357364,0.532066,0.72554,0.109789,0.540866,0.704208,0.0492928,0.129761,0.653431,0.604513,0.434683,0.754345,0.575424,0.107035,0.297122,0.154089,0.269787,0.89245,0.330169,0.209441,0.343118,0.897955,0.534721,0.650152,0.019227,0.294231,0.0362728,0.856562,0.421435,0.839315,0.678175,0.952635,0.261446,0.377679,0.03315,0.702799,0.464595,0.650465,0.132361,0.187369,0.206282,0.176306,0.431312,0.760861,0.0254872,0.158684,0.161857,0.640996,0.878235,0.524294,0.371741,0.146903,0.210793,0.0332948,0.990865,0.321975,0.965023,0.0855225,0.200724,0.622693,0.637005,0.636689,0.472971,0.595474,0.156823,0.42802,0.953198,0.749686,0.725862,0.23954,0.011121,0.899228,0.8218,0.578834,0.467629,0.846671,0.301324,0.042329,0.27998,0.906456,0.516629,0.178207,0.850641,0.837992,0.705779,0.204893,0.326148,0.575012,0.200257,0.846606,0.955856,0.0990803,0.165407,0.370397,0.431077,0.167108,0.638923,0.894537,0.609486,0.722121,0.479975,0.970101,0.383276,0.8214,0.0823088,0.221845,0.635189,0.745709,0.328315,0.23671,0.563868,0.035779,0.144333,0.53061,0.811229,0.483507,0.837493,0.862956,0.878302,0.576627,0.758359,0.393856,0.744166,0.849696,0.530704,0.623825,0.721295,0.945042,0.211785,0.172661,|0.0687391,0.514757,0.947326,0.0694757,0.351624,0.330346,0.646637,0.500848,0.569224,0.149431,0.989743,0.0339354,0.418936,0.925775,0.0899001,0.423145,0.399676,0.666218,0.0700371,0.232196,0.168496,0.880648,0.441238,0.595453,0.158528,0.0231547,0.907871,0.46644,0.358975,0.17406,0.757173,0.845176,0.268352,0.226698,0.0770528,0.0497583,0.362739,0.0782436,0.16807,0.429209,0.0323981,0.731179,0.26973,0.152475,0.686606,0.00189114,0.977519,0.132207,0.781478,0.391129,0.101895,0.178981,0.0159488,0.285274,0.620145,0.286338,0.75433,0.0103917,0.63946,0.533934,0.806857,0.341719,0.671175,0.112034,0.0608841,0.894059,0.288696,0.67525,0.264912,0.51295,0.941733,0.661264,0.304805,0.780389,0.191036,0.991924,0.241821,0.444955,0.368048,0.524621,0.428866,0.04146,0.111845,0.480498,0.423996,0.176068,0.796283,0.291968,0.467397,0.653156,0.190582,0.88837,0.710794,0.999177,0.23318,0.566916,0.673099,0.164536,0.567235,0.190763,0.737655,0.38826,0.723399,0.507695,0.662395,0.698383,0.440627,0.604719,0.111427,0.55999,0.58264,0.361173,0.305971,0.319403,0.366729,0.0784143,0.768924,0.158861,0.0674057,0.478896,0.757104,0.460976,0.631796,0.876558,0.807531,0.296224,0.87369,0.501948,0.716757,0.142039,0.780497,0.926554,0.27857,0.705573,0.0181804,0.498712,0.489097,0.790324,0.328902,0.606952,0.710596,0.111913,0.137049,0.804135,0.674676,0.0132097,0.766321,0.197023,0.849427,0.646861,0.849258,0.443933,0.376036,0.917406,0.107091,0.860244,0.418892,0.750316,0.099155,0.426086,0.470678,0.501587,0.860174,0.677824,0.655465,0.272346,0.908497,0.548429,0.375485,0.54579,0.20206,0.588564,0.793019,0.323686,0.290974,0.18038,0.742054,0.55734,0.0408268,0.868116,0.619204,0.0689803,0.449589,0.313004,0.469481,0.389992,0.0743875,0.359529,0.00666589,0.902644,0.762911,0.683992,0.511232,0.698365,0.11235,0.305158,0.706099,0.136499,0.268975,0.549546,0.380148,0.978302,0.227706,0.917235,0.246145,0.233866,0.241656,0.660143,0.59059,0.484748,0.488754,0.452035,0.354611,0.326512,0.987909,0.30208,0.174171,0.474717,0.444343,0.765458,0.0703629,0.283024,0.933827,0.0466567,0.896836,0.767869,0.973251,0.913641,0.0146781,0.62255,0.198953,0.527771,0.598959,0.0249547,0.59921,0.333885,0.520479,0.0830289,0.68161,0.327222,0.953625,0.507732,0.116298,0.457201,0.00823724,0.375815,0.0449088,0.501612,0.735607,0.768203,0.508474,0.952694,0.470876,0.0603666,0.116308,0.865967,0.907726,0.536051,0.543907,0.277018,0.91071,0.936694,0.740389,0.393126,0.509575,0.999882,0.228436,0.584475,0.38185,0.0104952,0.985767,0.959723,0.679492,0.935645,0.337481,0.640559,0.184811,0.211621,0.152608,0.509409,0.267944,0.694908,0.031428,0.0901778,0.439655,0.72762,0.628654,0.791679,0.735567,0.288712,0.055735,0.440585,0.455809,0.774282,0.16078,0.65078,0.855435,0.0454102,0.691042,0.994993,0.927764,0.280697,0.471855,0.682255,0.861809,0.806033,0.86362,0.726572,0.539086,0.145675,0.0182634,0.318599,0.999166,0.154054,0.13555,0.652918,0.314398,0.835403,0.807603,0.898725,0.0941074,0.246178,0.297552,0.684239,0.99037,0.660387,0.107054,0.345159,0.790905,0.889839,0.832332,0.379837,0.860573,0.111721,0.896596,0.877328,0.478991,0.0727969,0.472096,0.155286,0.528556,0.0865634,0.144498,0.378216,0.955776,0.992982,0.170337,0.368893,0.291134,0.713137,0.15346,0.652184,0.806611,0.500752,0.889907,0.332249,0.639379,0.459897,0.465381,0.213211,0.393385,0.798364,0.125202,0.629948,0.719431,0.342518,0.486519,0.820377,0.159774,0.815519,0.107316,0.4562,0.274004,0.876627,0.591191,0.626073,0.907255,0.752601,0.656017,0.484282,0.661264,0.219642,0.872829,0.292923,0.851288,0.346662,0.781376,0.942886,0.215821,0.0734705,0.318799,0.346874,0.639122,0.742428,0.400565,0.826125,0.250692,0.269325,0.588767,0.501375,0.310023,0.019363,0.999179,0.00475514,0.828996,0.402431,0.219461,0.942458,0.929049,0.687272,0.694192,0.242295,0.0596321,0.00207669,0.0717983,0.633337,0.83389,0.393734,0.63599,0.597485,0.105081,0.973308,0.725145,0.314985,0.954469,0.92812,0.792905,0.620327,0.612763,0.077906,0.945844,0.212509,0.667671,0.121433,0.252131,0.671684,0.616256,0.685783,0.18597,0.313494,0.183182,0.54104,0.156658,0.84633,0.389758,0.0372401,0.711063,0.207136,0.197969,0.188267,0.756141,0.543521,0.404416,0.520805,0.810934,0.920731,0.546372,0.305116,0.139896,0.691562,0.00597346,0.328274,0.348925,0.640704,0.552045,0.733334,0.513718,0.0588815,0.481998,0.0604092,0.0736563,0.658807,0.884472,0.248402,0.0285864,0.358659,0.685088,0.320903,0.305746,0.734652,0.483237,0.835737,0.908006,0.881946,0.535458,0.967978,0.430209,0.847343,0.0234339,0.936106,0.357928,0.59922,0.564689,0.220236,0.987855,0.340482,0.56881,0.729636,0.906259,0.244267,0.702404,0.0845351,0.738802,0.266261,0.805019,0.051096,0.384268,0.970772,0.0217366,0.403196,0.55006,0.932792,0.911071,0.210454,0.489553,0.0869194,0.105211,0.208294,0.329431,0.316415,0.705868,0.000524402,0.195617,0.304131,0.976395,0.0710385,0.210789,0.0595959,0.824642,0.702555,0.406001,0.439121,0.127604,0.866196,0.77964,0.467563,0.758375,0.785674,0.373046,0.0333385,0.863871,0.93683,0.672928,0.368537,0.667092,0.853034,0.402309,0.871953,0.178572,0.671049,0.453965,0.536402,0.0558437,0.139819,0.429015,0.88358,0.32441,0.546911,0.217514,0.0721633,0.133988,0.538547,0.131026,0.764835,0.453142,0.584181,0.826424,0.630608,0.224128,0.752617,0.352801,0.306838,0.842986,0.480393,0.513751,0.0483635,0.582642,0.347271,0.70395,0.569013,0.516404,0.975041,0.379856,0.0995759,0.499868,0.646864,0.810362,0.687618,0.0199291,0.941368,0.0736572,0.264887,0.371548,0.637516,0.273696,0.268603,0.0273166,0.00616664,0.83787,0.280078,0.839942,0.749105,0.619882,0.19255,0.827404,0.0140609,0.282922,0.338181,0.0782966,0.317191,0.533714,0.190237,0.0175641,0.149622,0.346492,0.311452,0.17929,0.0617313,0.0349534,0.0744,0.583001,0.161786,0.980111,0.670005,0.158926,0.292552,0.145455,0.89398,0.517275,0.444074,0.371187,0.219045,0.176696,0.0255539,0.256828,0.555762,0.454393,0.974791,0.667882,0.579962,0.927169,0.0956277,0.694639,0.806842,0.67251,0.179283,0.656784,0.504938,0.504876,0.459,0.237178,0.789073,0.278097,0.92554,0.142174,0.912117,0.128892,0.216106,0.153394,0.216516,0.711265,0.844939,0.351247,0.0358686,0.774716,0.27938,0.421314,0.626207,0.158724,0.00113028,0.862147,0.178299,0.315026,0.11313,0.0775698,0.840162,0.2885,0.818761,0.256432,0.339725,0.898423,0.0128712,0.940524,0.120598,0.777203,0.381032,0.335742,0.603259,0.161296,0.775668,0.279976,0.0719926,0.493328,0.334734,0.349119,0.28954,0.245375,0.938451,0.927125,0.958722,0.909971,0.43025,0.945194,0.433873,0.00628972,0.0255979,0.527782,0.178611,0.873611,0.489057,0.923275,0.343161,0.972578,0.937522,0.405755,0.141894,0.135,0.0554032,0.739445,0.102166,0.314686,0.938028,0.762294,0.908079,0.656108,0.137973,0.648487,0.45217,0.532218,0.384316,0.325643,0.223855,0.865162,0.621211,0.118843,0.0400651,0.234703,0.63961,0.80968,0.819636,0.117617,0.0440329,0.541453,0.157709,0.878789,0.459885,0.485596,0.923202,0.14225,0.83473,0.684532,0.484858,0.845058,0.9618,0.741266,0.0469207,0.0142507,0.499035,0.569244,0.802121,0.128532,0.663486,0.0814449,0.11087,0.359778,0.198941,0.300204,0.755665,0.515477,0.90714,0.539867,0.717661,0.248393,0.106342,0.352634,0.666667,0.326685,0.740834,0.181757,0.36943,0.303625,0.348047,0.397444,0.611478,0.0633944,0.357717,0.344681,0.687138,0.813919,0.241191,0.102769,0.469186,0.270224,0.274939,0.435497,0.261497,0.231821,0.83138,0.0325663,0.0606885,0.207703,0.971896,0.623468,0.377978,0.9282,0.60949,0.830944,0.941549,0.131256,0.619966,0.543136,0.650688,0.613291,0.684605,0.00542819,0.619042,0.38605,0.44825,0.719964,0.691002,0.704794,0.580749,0.550352,0.36545,0.565333,0.0529954,0.547009,0.847648,0.984513,0.0731164,0.0725167,0.344744,0.347081,0.169576,0.0101854,0.523301,0.9978,0.426478,0.883423,0.986209,0.772114,0.29068,0.853595,0.76594,0.887836,0.647866,0.0230457,0.194862,0.834337,0.730205,0.830006,0.652753,0.752746,0.546925,0.86483,0.66614,0.386732,0.262133,0.510945,0.758837,0.229593,0.485654,0.0893625,0.104487,0.784501,0.769778,0.0356622,0.877236,0.21937,0.327162,0.277573,0.696826,0.179322,0.0380787,0.692162,0.560088,0.667026,0.89055,0.214647,0.982272,0.144563,0.932661,0.863966,0.99882,0.330387,0.916701,0.0727612,0.475327,0.418562,0.383788,0.255368,0.27454,0.703833,0.12348,0.98778,0.193635,0.559526,0.0713192,0.0992045,0.299785,0.680482,0.584809,0.571247,0.172145,0.156634,0.0576341,0.789465,0.132544,0.875604,0.446153,0.875853,0.462233,0.616398,0.339455,0.556665,0.949304,0.260629,0.199342,0.0887408,0.891633,0.711852,0.737903,0.973849,0.527341,0.306501,0.302629,0.989938,0.079973,0.454832,0.966958,0.473094,0.464024,0.876916,0.136207,0.82119,0.282866,0.187135,0.529805,0.0654385,0.0530941,0.0505562,0.262094,0.610786,0.977699,0.219695,0.770373,0.702044,0.200977,0.695541,0.0363264,0.956751,0.53762,0.257471,0.00420445,0.270236,0.0296382,0.142706,0.713267,0.968373,0.589466,0.075646,0.158926,0.858656,0.352154,0.838427,0.730729,0.292826,0.845318,0.714469,0.845365,0.716461,0.179613,0.303585,0.843903,0.0405566,0.830904,0.31525,0.93602,0.786512,0.390284,0.741019,0.29807,0.285436,0.256092,0.0965528,0.0259562,0.473707,0.776664,0.335955,0.507915,0.0120848,0.295208,0.46199,0.584503,0.933746,0.265782,0.86077,0.517533,0.401488,0.540517,|0.090165,0.455404,0.0721352,0.987278,0.956974,0.157995,0.646392,0.709918,0.965605,0.318904,0.928824,0.257534,0.848679,0.516235,0.148041,0.978488,0.919722,0.451199,0.596115,0.908977,0.344257,0.517667,0.416347,0.681732,0.526117,0.804775,0.896672,0.755031,0.784147,0.319416,0.440029,0.418426,0.0657266,0.260023,0.642862,0.489924,0.298903,0.694193,0.611049,0.359983,0.871437,0.623047,0.397516,0.980679,0.738982,0.624783,0.613186,0.739202,0.607728,0.521237,0.581124,0.418531,0.568658,0.47496,0.184535,0.562209,0.780041,0.235849,0.633918,0.242671,0.993296,0.0182183,0.478566,0.909291,0.19212,0.380552,0.240588,0.121967,0.0498996,0.189578,0.00553584,0.464462,0.175797,0.575272,0.593653,0.613533,0.912019,0.605752,0.300363,0.904047,0.869867,0.886965,0.714539,0.00265974,0.85332,0.0236025,0.822971,0.118381,0.892781,0.891247,0.61202,0.967463,0.0282117,0.515484,0.262648,0.214531,0.986862,0.947824,0.675695,0.642181,0.811998,0.394324,0.845523,0.826998,0.514869,0.542649,0.331827,0.13615,0.652967,0.47271,0.493736,0.243411,0.577132,0.864088,0.257477,0.380341,0.746216,0.0194119,0.0326981,0.201099,0.496444,0.739412,0.910622,0.626589,0.585206,0.0968083,0.968744,0.769171,0.970813,0.683794,0.864685,0.164461,0.482357,0.0242708,0.0377323,0.654375,0.947075,0.578154,0.472195,0.428455,0.0723099,0.328727,0.83501,0.328331,0.54111,0.222124,0.986037,0.84571,0.90771,0.928665,0.734487,0.544346,0.647293,0.0332323,0.745145,0.282516,0.477397,0.158214,0.193612,0.10275,0.626823,0.108413,0.84365,0.800629,0.758116,0.630036,0.68209,0.740953,0.34014,0.560299,0.349348,0.64156,0.516198,0.0376595,0.086552,0.888306,0.952704,0.768949,0.537338,0.0449401,0.456785,0.578975,0.675864,0.536643,0.502757,0.406999,0.765962,0.468127,0.734729,0.451388,0.742483,0.978342,0.538742,0.375063,0.0823181,0.617279,0.960568,0.363519,0.145694,0.774958,0.321653,0.126714,0.996741,0.809045,0.264545,0.931437,0.106683,0.655953,0.194756,0.0602907,0.621019,0.251606,0.637478,0.349371,0.049418,0.649896,0.443395,0.713789,0.340944,0.0244638,0.532096,0.789734,0.0582093,0.77137,0.517459,0.284815,0.183179,0.406013,0.491835,0.487391,0.864589,0.42798,0.640018,0.891641,0.651735,0.345663,0.94808,0.649463,0.740791,0.253758,0.301891,0.779581,0.480179,0.386598,0.676927,0.0180119,0.273002,0.648377,0.624851,0.615533,0.71509,0.0269624,0.280506,0.75869,0.999638,0.599358,0.268327,0.722572,0.761381,0.143574,0.582791,0.962527,0.48916,0.529131,0.426583,0.690314,0.931703,0.359999,0.737257,0.407786,0.208388,0.467892,0.305876,0.120335,0.86185,0.00743741,0.14855,0.0121255,0.646625,0.782162,0.0143249,0.0963929,0.930086,0.662276,0.510096,0.648921,0.24959,0.159252,0.0617288,0.725829,0.918757,0.8023,0.308177,0.986177,0.672406,0.875285,0.237124,0.319781,0.409052,0.0305764,0.980805,0.970873,0.669714,0.239465,0.394611,0.609771,0.0336044,0.668904,0.686002,0.0805964,0.698034,0.719874,0.429121,0.379991,0.60285,0.877757,0.595634,0.309428,0.366448,0.581511,0.331925,0.324646,0.153127,0.211654,0.507655,0.126636,0.0537905,0.433666,0.485584,0.735415,0.458854,0.164377,0.629093,0.149198,0.345064,0.817201,0.437362,0.0545074,0.559646,0.782615,0.740816,0.909857,0.91692,0.664309,0.513523,0.705951,0.428096,0.754211,0.305571,0.566006,0.0619903,0.630713,0.730136,0.379149,0.210747,0.0638555,0.295479,0.517311,0.763119,0.969255,0.495834,0.0368632,0.470334,0.685426,0.346808,0.330263,0.471264,0.963274,0.558087,0.680545,0.181816,0.878623,0.923418,0.330759,0.527798,0.559264,0.562651,0.404145,0.62735,0.38234,0.109173,0.387151,0.572479,0.453936,0.901046,0.578919,0.155135,0.493265,0.112468,0.709685,0.867518,0.37903,0.998169,0.24657,0.964676,0.243142,0.766707,0.36454,0.191445,0.625702,0.602912,0.875748,0.114714,0.529724,0.0168438,0.463181,0.127282,0.000193536,0.100365,0.204375,0.0875868,0.672385,0.0309345,0.250701,0.328706,0.110631,0.201886,0.400741,0.706231,0.612426,0.399998,0.147808,0.484916,0.559144,0.627597,0.863518,0.698657,0.963604,0.361549,0.433446,0.750807,0.163728,0.665025,0.07469,0.65842,0.827135,0.735568,0.268407,0.792276,0.180342,0.906346,0.196261,0.0545725,0.585966,0.894144,0.226941,0.314971,0.166059,0.267443,0.190214,0.923407,0.29943,0.791789,0.149919,0.396879,0.627164,0.405394,0.587723,0.253196,0.818727,0.73061,0.808798,0.0610131,0.395242,0.400044,0.231854,0.225187,0.514125,0.805982,0.938091,0.303009,0.407421,0.1066,0.524079,0.0053829,0.23986,0.305906,0.129924,0.0307613,0.507787,0.0797634,0.835923,0.184299,0.979716,0.860333,0.270018,0.805547,0.407563,0.926629,0.999446,0.288615,0.96014,0.667876,0.916262,0.311315,0.294316,0.659027,0.0720238,0.0612594,0.895281,0.321231,0.594046,0.0518538,0.438487,0.79877,0.751557,0.0258374,0.710036,0.907211,0.0668319,0.437185,0.58752,0.721483,0.59725,0.17397,0.177123,0.709817,0.125259,0.241578,0.357849,0.509407,0.612809,0.0958129,0.10746,0.37311,0.383311,0.8565,0.208296,0.551929,0.399736,0.168035,0.483909,0.58096,0.486163,0.552383,0.223039,0.224442,0.392398,0.269779,0.534275,0.269932,0.525848,0.87872,0.756205,0.583852,0.687882,0.598855,0.558889,0.860743,0.338248,0.693685,0.3109,0.987927,0.18897,0.453014,0.685297,0.589031,0.580608,0.167056,0.478875,0.150785,0.585975,0.231695,0.582955,0.347325,0.394113,0.0759472,0.992431,0.753689,0.0949646,0.362874,0.0612617,0.81914,0.775957,0.803981,0.322841,0.959433,0.168478,0.581071,0.954944,0.835922,0.308136,0.494533,0.518309,0.448277,0.989181,0.0627945,0.355475,0.340028,0.704837,0.607576,0.545535,0.313086,0.464843,0.732313,0.780637,0.0659714,0.0261848,0.477538,0.598782,0.0607801,0.401166,0.406242,0.352412,0.0595131,0.971626,0.947799,0.790766,0.92493,0.393127,0.0921559,0.732397,0.4738,0.595634,0.360337,0.97745,0.304402,0.73323,0.161452,0.329294,0.273663,0.660218,0.805562,0.0374889,0.430534,0.911358,0.552568,0.513277,0.864771,0.302912,0.522626,0.77606,0.0839416,0.145579,0.476088,0.0814,0.089479,0.185955,0.272903,0.954636,0.503909,0.896627,0.455945,0.212545,0.650694,0.449725,0.0588035,0.439902,0.375173,0.991003,0.221493,0.287803,0.568276,0.627696,0.766437,0.50013,0.371657,0.180463,0.889384,0.0486033,0.203471,0.978941,0.200682,0.32844,0.325639,0.245538,0.380753,0.862177,0.396562,0.40767,0.869874,0.99417,0.828591,0.223606,0.0810553,0.315435,0.930675,0.668874,0.103727,0.494207,0.767663,0.521024,0.752884,0.455504,0.0362663,0.545975,0.712699,0.0912827,0.518098,0.767628,0.912161,0.740695,0.476904,0.616911,0.923047,0.847086,0.575955,0.693416,0.947128,0.38543,0.85001,0.961938,0.562591,0.9193,0.245256,0.167264,0.976255,0.0620294,0.105922,0.244523,0.0212313,0.183581,0.793134,0.422396,0.583539,0.970286,0.395389,0.93101,0.817376,0.346577,0.160603,0.713431,0.21223,0.127128,0.978329,0.0262031,0.592066,0.419953,0.585517,0.0695315,0.10415,0.359942,0.3212,0.416738,0.209083,0.747812,0.142014,0.793452,0.434091,0.0961701,0.685124,0.85893,0.0647131,0.594942,0.600809,0.188353,0.430545,0.83849,0.46342,0.212626,0.46071,0.967625,0.553162,0.671221,0.623852,0.275791,0.05338,0.140622,0.734417,0.60777,0.242495,0.724566,0.747337,0.0901999,0.127199,0.251817,0.945013,0.205014,0.380212,0.66936,0.614059,0.0327194,0.439447,0.690251,0.538156,0.360402,0.533166,0.0340496,0.329677,0.43674,0.580484,0.174989,0.830353,0.925183,0.833582,0.294514,0.389283,0.362617,0.807823,0.453919,0.115079,0.559774,0.688896,0.339163,0.746684,0.960831,0.290914,0.845876,0.642366,0.644408,0.492077,0.605069,0.269285,0.49569,0.837256,0.663752,0.728122,0.271117,0.692484,0.858441,0.446703,0.338891,0.190143,0.921339,0.349983,0.824896,0.458413,0.624329,0.587645,0.726165,0.186923,0.774441,0.620344,0.196112,0.625606,0.310944,0.686463,0.190327,0.556538,0.0107667,0.521844,0.393883,0.818378,0.668787,0.266548,0.209765,0.754174,0.206959,0.610078,0.421406,0.0590692,0.687863,0.0601688,0.0106478,0.728564,0.272164,0.219659,0.114324,0.830087,0.0100698,0.830282,0.161782,0.933451,0.458313,0.572689,0.916006,0.509235,0.0684573,0.2028,0.441059,0.82048,0.665331,0.357405,0.206383,0.677393,0.607724,0.433117,0.770723,0.381225,0.60336,0.247562,0.218451,0.486034,0.986072,0.682456,0.811597,0.976827,0.740919,0.0844163,0.518266,0.642782,0.910309,0.956501,0.434202,0.8333,0.646837,0.0764252,0.743115,0.92775,0.673822,0.0821239,0.0521464,0.500138,0.634502,0.536103,0.723625,0.417357,0.247858,0.802455,0.234686,0.562476,0.591005,0.237998,0.463504,0.457706,0.491608,0.266899,0.498484,0.919754,0.654811,0.147791,0.570188,0.294548,0.0748793,0.424266,0.484493,0.990699,0.262182,0.41033,0.194597,0.826403,0.809025,0.885931,0.682448,0.85019,0.109756,0.87546,0.58262,0.354716,0.194957,0.783059,0.0513225,0.783933,0.0161191,0.126641,0.0146456,0.131775,0.564706,0.120375,0.550411,0.0435078,0.828465,0.830545,0.76482,0.180185,0.158992,0.802983,0.499414,0.613675,0.893864,0.335654,0.831143,0.334068,0.332673,0.0919475,0.225626,0.00610435,0.764952,0.267101,0.186082,0.219606,0.968426,0.18395,0.220343,0.543837,0.264349,0.361476,0.0184311,0.729482,0.201212,0.366411,0.458668,0.188882,0.652815,0.0258725,0.683457,0.911374,0.567788,0.864653,0.452272,0.751837,0.822756,0.190914,0.80083,0.0263333,0.0360861,0.0558949,0.749469,0.65659,0.473286,0.551239,0.338743,0.181394,0.370722,0.404219,0.572776,0.234949,0.598486,0.685655,0.781547,|0.31475,0.132957,0.957542,0.140132,0.586833,0.476275,0.829727,0.95664,0.392647,0.997338,0.0424554,0.499711,0.378403,0.475003,0.270401,0.294787,0.709092,0.621498,0.279094,0.963365,0.902255,0.043979,0.429569,0.650555,0.930961,0.716733,0.388566,0.204604,0.145838,0.415957,0.210411,0.0853744,0.712776,0.344792,0.173378,0.175889,0.260156,0.973492,0.695002,0.914748,0.0913454,0.949684,0.799375,0.625149,0.8721,0.916058,0.384781,0.493515,0.512557,0.769332,0.739596,0.467365,0.578406,0.201385,0.691086,0.332257,0.736709,0.370738,0.49835,0.644635,0.090431,0.684674,0.278098,0.864549,0.44572,0.909787,0.71237,0.689641,0.00585866,0.0544026,0.693607,0.0278137,0.345148,0.760583,0.901786,0.181764,0.329116,0.972774,0.768021,0.386528,0.662263,0.0271577,0.537979,0.0440746,0.272593,0.155823,0.546691,0.789655,0.48441,0.364196,0.77698,0.472058,0.709273,0.338379,0.0806848,0.0621293,0.250933,0.225268,0.123709,0.0251877,0.443949,0.552114,0.11096,0.14995,0.341762,0.16187,0.331578,0.261231,0.0723086,0.451047,0.958563,0.332359,0.657498,0.639876,0.582792,0.00116324,0.0897982,0.999092,0.818098,0.769996,0.274832,0.742425,0.953564,0.0594243,0.0254154,0.364423,0.355581,0.793624,0.24501,0.450561,0.443237,0.555538,0.32364,0.357516,0.063632,0.851892,0.0792914,0.150605,0.422976,0.925293,0.485678,0.130857,0.980409,0.495689,0.659908,0.743158,0.232027,0.7958,0.548986,0.61526,0.929347,0.556325,0.652778,0.989756,0.0467044,0.0612123,0.290892,0.572929,0.383196,0.922757,0.900368,0.532928,0.107198,0.188267,0.0880753,0.769,0.223068,0.464049,0.154139,0.742876,0.242671,0.0202311,0.890719,0.885116,0.222956,0.427772,0.56749,0.148807,0.667896,0.272354,0.951691,0.51179,0.874324,0.638772,0.260484,0.357812,0.0759647,0.74853,0.501831,0.909924,0.222253,0.0281624,0.481965,0.475096,0.37737,0.821281,0.0519664,0.858523,0.692676,0.379997,0.553363,0.278866,0.700614,0.646808,0.96512,0.723661,0.0335171,0.086976,0.176779,0.927382,0.574575,0.220343,0.798706,0.873216,0.240466,0.973705,0.624513,0.0670003,0.183242,0.0397701,0.271501,0.316414,0.797246,0.20603,0.779092,0.0830429,0.277607,0.624796,0.34814,0.716957,0.0414446,0.587164,0.636513,0.919996,0.916757,0.585501,0.166211,0.525544,0.751259,0.951362,0.231287,0.588549,0.329033,0.735111,0.247324,0.0243171,0.663876,0.206696,0.429468,0.601635,0.723986,0.883021,0.806498,0.00736541,0.821967,0.426087,0.468138,0.321406,0.608148,0.715773,0.801692,0.0601822,0.771379,0.532276,0.648781,0.020579,0.641026,0.41146,0.433394,0.420786,0.44317,0.96255,0.654398,0.00420147,0.434322,0.544163,0.20513,0.415428,0.927669,0.858007,0.910432,0.0147504,0.763068,0.193797,0.314744,0.340541,0.818632,0.880509,0.826417,0.375061,0.538449,0.317232,0.775412,0.445024,0.353661,0.986155,0.417443,0.0365984,0.31431,0.492275,0.124267,0.386641,0.298251,0.284446,0.14701,0.238666,0.899469,0.150517,0.760153,0.108706,0.41545,0.0594925,0.423077,0.962237,0.0422164,0.11464,0.256333,0.301547,0.276345,0.229707,0.310288,0.684683,0.114844,0.108299,0.109102,0.260917,0.382133,0.896141,0.833824,0.891444,0.146069,0.396697,0.328583,0.0457957,0.848914,0.054043,0.332574,0.114296,0.348678,0.222054,0.210169,0.685369,0.65446,0.811774,0.778952,0.34639,0.787987,0.721747,0.749354,0.45818,0.692462,0.0522056,0.354333,0.634722,0.684637,0.603634,0.493333,0.0354881,0.995396,0.95628,0.784102,0.485919,0.566851,0.429129,0.908331,0.676539,0.211367,0.00156629,0.14354,0.142511,0.299192,0.289472,0.570216,0.0290703,0.105064,0.245908,0.753571,0.42046,0.904271,0.739006,0.928306,0.868582,0.927864,0.282703,0.259178,0.650366,0.296753,0.92969,0.87497,0.627082,0.76861,0.00082767,0.0168596,0.460171,0.252842,0.299926,0.878754,0.301016,0.53253,0.999779,0.18789,0.998969,0.99483,0.119908,0.518882,0.0759749,0.142185,0.225518,0.505943,0.620999,0.690081,0.901776,0.931804,0.095839,0.904017,0.15316,0.120776,0.101825,0.935937,0.0679119,0.50641,0.423546,0.828513,0.161584,0.0158958,0.429452,0.368627,0.808217,0.300529,0.724522,0.362992,0.154879,0.478243,0.636152,0.384542,0.891496,0.662086,0.0282767,0.626506,0.112903,0.00909877,0.7066,0.994808,0.631146,0.598347,0.587689,0.541894,0.708533,0.680409,0.783366,0.877823,0.258709,0.347007,0.0448343,0.589018,0.635521,0.338646,0.367537,0.322079,0.280868,0.589694,0.274604,0.608355,0.763941,0.640497,0.796927,0.337482,0.376508,0.61305,0.360037,0.956651,0.181574,0.128172,0.532827,0.557838,0.100454,0.344993,0.705768,0.472889,0.228752,0.018131,0.36824,0.0736427,0.707152,0.382287,0.430086,0.683416,0.114795,0.936277,0.423259,0.719035,0.345128,0.159201,0.402484,0.381372,0.153849,0.767323,0.462715,0.644215,0.0961007,0.499644,0.0241506,0.438354,0.496893,0.837288,0.972105,0.923354,0.360946,0.908542,0.279837,0.486014,0.542974,0.272279,0.905152,0.741878,0.271408,0.888054,0.145958,0.51581,0.840806,0.292312,0.50267,0.805411,0.91299,0.603795,0.32341,0.257767,0.415572,0.609747,0.166892,0.195824,0.811818,0.269179,0.999066,0.988623,0.68695,0.671131,0.545117,0.207923,0.450709,0.792929,0.0620373,0.5997,0.82394,0.563593,0.626543,0.164033,0.0918021,0.89938,0.661379,0.568276,0.94405,0.292529,0.369019,0.452972,0.771617,0.224338,0.144952,0.520625,0.532712,0.44032,0.804005,0.140898,0.121054,0.810849,0.897645,0.0628924,0.444591,0.933651,0.0993043,0.947648,0.180653,0.491768,0.731291,0.760505,0.574155,0.125484,0.757752,0.503819,0.885906,0.649697,0.36768,0.0187868,0.212618,0.700935,0.821029,0.416872,0.09125,0.476627,0.801412,0.246694,0.717885,0.167141,0.516888,0.388615,0.984146,0.394364,0.899274,0.633464,0.860921,0.757465,0.816655,0.898752,0.768521,0.597772,0.976806,0.281117,0.319644,0.174946,0.475654,0.292688,0.242781,0.62772,0.515661,0.950007,0.0118653,0.780592,0.99468,0.677029,0.165387,0.345354,0.212159,0.121791,0.563651,0.272518,0.524274,0.458419,0.630873,0.40527,0.66086,0.415754,0.981739,0.877648,0.27937,0.676203,0.0514319,0.907869,0.29453,0.403451,0.304586,0.892063,0.285797,0.431354,0.747533,0.668352,0.669938,0.414718,0.455136,0.207962,0.0760634,0.862822,0.698795,0.791615,0.647646,0.958805,0.314547,0.600185,0.685117,0.300889,0.854661,0.373055,0.95657,0.243068,0.292109,0.447124,0.625692,0.152163,0.30316,0.742742,0.477105,0.0238237,0.0519081,0.00883508,0.511381,0.271146,0.606094,0.903352,0.211913,0.103374,0.692288,0.259385,0.646135,0.473835,0.446858,0.671165,0.787354,0.54121,0.628233,0.257095,0.064555,0.020187,0.467414,0.933428,0.404378,0.408979,0.0906891,0.876998,0.445026,0.3215,0.549894,0.593557,0.517118,0.226566,0.37864,0.255227,0.0139408,0.565994,0.445267,0.0165119,0.595596,0.742998,0.720467,0.800283,0.7023,0.458782,0.0476101,0.708378,0.0463821,0.535854,0.0336811,0.591232,0.712304,0.281324,0.0924241,0.770514,0.968066,0.537642,0.471519,0.79618,0.705759,0.540445,0.906928,0.616556,0.666568,0.894803,0.829612,0.703555,0.646848,0.020828,0.490738,0.886566,0.645383,0.0899628,0.322908,0.243698,0.734504,0.418666,0.579053,0.331388,0.682553,0.176849,0.30172,0.645516,0.406064,0.458759,0.886709,0.778448,0.232954,0.746178,0.18341,0.584041,0.0525488,0.914392,0.557804,0.235487,0.210807,0.311711,0.396152,0.725515,0.661451,0.136521,0.540066,0.604779,0.883511,0.687924,0.699452,0.17641,0.228007,0.0235313,0.977615,0.170458,0.0670972,0.873457,0.867777,0.403785,0.912341,0.905723,0.539047,0.359377,0.673048,0.267126,0.866619,0.169312,0.158494,0.79312,0.822661,0.779431,0.981009,0.932353,0.213709,0.774038,0.255855,0.453937,0.703927,0.461899,0.12297,0.279134,0.636561,0.558306,0.430063,0.567604,0.301322,0.669817,0.428216,0.395562,0.278957,0.296177,0.689297,0.561809,0.425258,0.389843,0.44109,0.744067,0.976429,0.0409387,0.995098,0.882682,0.96744,0.450185,0.209754,0.803086,0.959792,0.0634313,0.68509,0.805811,0.905697,0.600573,0.593675,0.0170773,0.0447343,0.33511,0.739891,0.902647,0.83495,0.529996,0.083436,0.479971,0.437329,0.651319,0.0425187,0.738593,0.725781,0.457564,0.919597,0.324216,0.625121,0.905292,0.804834,0.873632,0.64389,0.243538,0.0212895,0.735609,0.947651,0.478975,0.461011,0.584608,0.61824,0.675042,0.112099,0.00617641,0.109305,0.985834,0.465091,0.92037,0.711173,0.396032,0.200717,0.713397,0.609473,0.844108,0.830675,0.944776,0.865302,0.274839,0.255898,0.0110563,0.746128,0.328591,0.735608,0.937818,0.687032,0.753303,0.967846,0.675514,0.198308,0.173446,0.315184,0.0973961,0.481239,0.819355,0.0753297,0.11098,0.968545,0.484132,0.0325269,0.509265,0.880198,0.937227,0.887932,0.650279,0.231649,0.406867,0.878091,0.172605,0.974709,0.326391,0.660927,0.154077,0.56525,0.128286,0.435796,0.119636,0.925976,0.164011,0.405822,0.157297,0.885593,0.841933,0.164612,0.980412,0.111164,0.819546,0.183839,0.173604,0.260246,0.597526,0.659589,0.0567903,0.352202,0.230491,0.910644,0.762765,0.86449,0.582292,0.268624,0.714871,0.590491,0.0795598,0.555862,0.753638,0.70475,0.612131,0.395808,0.431969,0.956556,0.253947,0.484169,0.334727,0.448164,0.313734,0.720191,0.479177,0.455454,0.810475,0.935813,0.0523742,0.459547,0.281197,0.909931,0.952969,0.592013,0.68376,0.124283,0.12913,0.915425,0.801462,0.257749,0.00664467,0.230976,0.0330294,0.968487,0.76918,0.810528,0.840847,0.746008,0.8816,0.191371,0.0611544,0.473285,0.0844296,0.246912,0.660718,0.268164,0.0458215,0.852364,0.142011,0.954144,0.0481349,0.352662,|0.727947,0.697846,0.0792509,0.331034,0.633943,0.0524128,0.83778,0.133692,0.216571,0.0958497,0.375622,0.117397,0.747781,0.680561,0.863713,0.322589,0.086861,0.753491,0.466427,0.364609,0.895863,0.224017,0.938616,0.431519,0.160192,0.244226,0.963366,0.689927,0.778056,0.219258,0.799914,0.0885453,0.769759,0.0543631,0.281908,0.931949,0.0178455,0.221753,0.841617,0.660484,0.572528,0.85472,0.711172,0.477853,0.398549,0.860492,0.878152,0.857765,0.600204,0.387237,0.0417786,0.487294,0.602568,0.262249,0.157596,0.76414,0.888187,0.922317,0.546267,0.632833,0.14998,0.469292,0.196831,0.94886,0.118239,0.665079,0.145909,0.301524,0.646404,0.733537,0.450276,0.887866,0.621076,0.663388,0.62877,0.554221,0.627685,0.455319,0.993122,0.475823,0.254544,0.577386,0.159017,0.257261,0.28666,0.854583,0.231627,0.10304,0.221881,0.310525,0.0508329,0.553288,0.575479,0.892039,0.899679,0.0413519,0.205708,0.153483,0.466847,0.45273,0.715639,0.734214,0.42243,0.411121,0.32165,0.131768,0.599475,0.0803999,0.880909,0.694384,0.427249,0.274122,0.898603,0.925294,0.0185134,0.0190716,0.956319,0.216879,0.692628,0.818589,0.554469,0.468442,0.225393,0.90914,0.160988,0.604299,0.254754,0.450212,0.803504,0.878062,0.507811,0.46286,0.62357,0.749588,0.396543,0.271867,0.674595,0.762174,0.980044,0.0608931,0.52133,0.836624,0.283691,0.731603,0.0771521,0.505138,0.395932,0.538805,0.00294966,0.698434,0.865433,0.613031,0.800254,0.954764,0.492735,0.786742,0.717881,0.129314,0.0108445,0.536813,0.532905,0.353221,0.141101,0.922056,0.843421,0.0711071,0.0933644,0.0599071,0.144274,0.401253,0.966909,0.416379,0.446992,0.49804,0.879868,0.342611,0.0514959,0.256613,0.847208,0.148801,0.57575,0.931119,0.603668,0.529265,0.486122,0.464124,0.0139385,0.455225,0.743575,0.626171,0.966445,0.65917,0.139378,0.429184,0.683987,0.965366,0.90299,0.0878146,0.760098,0.056006,0.761315,0.0554187,0.672658,0.0942556,0.317352,0.0918117,0.820491,0.432362,0.560081,0.25519,0.490613,0.0557335,0.800245,0.913452,0.215824,0.297056,0.316916,0.143131,0.914603,0.494642,0.0408108,0.764506,0.498378,0.283771,0.42303,0.849322,0.440382,0.803614,0.327491,0.958321,0.963584,0.062151,0.279511,0.706966,0.872458,0.033089,0.702815,0.187077,0.327826,0.616392,0.757066,0.725637,0.124349,0.594332,0.220893,0.845734,0.566437,0.387366,0.786089,0.0660135,0.50124,0.686542,0.564667,0.269374,0.732149,0.677258,0.0889528,0.143417,0.952542,0.376598,0.991797,0.272379,0.589157,0.621681,0.188857,0.642188,0.550548,0.584126,0.809265,0.623227,0.448637,0.743464,0.56542,0.126111,0.821048,0.410335,0.267189,0.649529,0.395326,0.237949,0.436442,0.0140156,0.910577,0.389406,0.329031,0.5932,0.9044,0.471049,0.0529719,0.110322,0.667013,0.2287,0.116735,0.104315,0.672217,0.460991,0.515294,0.791332,0.76115,0.565018,0.102612,0.496306,0.138707,0.0270671,0.927223,0.568218,0.166363,0.311014,0.494583,0.599487,0.474558,0.23243,0.503355,0.987982,0.293219,0.678219,0.578022,0.436642,0.211295,0.234269,0.205748,0.444646,0.512249,0.274478,0.639615,0.38992,0.159904,0.0447055,0.92475,0.827488,0.3757,0.519938,0.354995,0.0651782,0.25075,0.920525,0.523966,0.0210394,0.207964,0.362984,0.851617,0.605751,0.172464,0.192468,0.493127,0.616216,0.907717,0.946364,0.789546,0.248021,0.416373,0.534744,0.576968,0.160747,0.0980766,0.719467,0.254074,0.49711,0.252837,0.71253,0.610729,0.628261,0.202593,0.965327,0.858345,0.996742,0.361497,0.820893,0.699061,0.724073,0.64386,0.314641,0.205135,0.624016,0.318653,0.482545,0.0576113,0.891854,0.394161,0.306404,0.0727651,0.76505,0.669488,0.565672,0.49982,0.188127,0.469081,0.421758,0.693086,0.130428,0.451669,0.198294,0.875838,0.327938,0.408657,0.408961,0.890915,0.579674,0.579683,0.71512,0.266883,0.714666,0.63983,0.205834,0.0380113,0.587482,0.0904859,0.658282,0.787551,0.582609,0.560517,0.175458,0.283907,0.320581,0.620826,0.969532,0.455915,0.546943,0.86125,0.622692,0.973893,0.00406384,0.105562,0.355246,0.848987,0.663804,0.929164,0.750402,0.83826,0.814278,0.464531,0.288587,0.922322,0.735805,0.265561,0.0683544,0.929678,0.577226,0.473762,0.238508,0.795951,0.772771,0.267389,0.934064,0.0686156,0.0212858,0.258855,0.469228,0.536359,0.475115,0.540652,0.667804,0.767508,0.172013,0.638902,0.0709845,0.106439,0.814554,0.152866,0.140872,0.881165,0.101004,0.887225,0.107062,0.304997,0.622653,0.100387,0.350402,0.00214761,0.867425,0.94485,0.955395,0.115498,0.585258,0.00450283,0.623165,0.0162947,0.424651,0.17783,0.733039,0.92692,0.633585,0.108205,0.887682,0.651313,0.869851,0.869751,0.797505,0.680817,0.849337,0.6797,0.589343,0.542387,0.850292,0.824124,0.796495,0.452236,0.453419,0.00321031,0.0923738,0.610211,0.137207,0.104196,0.00524139,0.0535845,0.471439,0.630685,0.470659,0.702459,0.534764,0.773496,0.797738,0.976068,0.838571,0.715021,0.501785,0.176131,0.145484,0.84318,0.401131,0.169247,0.149457,0.490212,0.220504,0.538389,0.156198,0.591998,0.198077,0.0387204,0.570694,0.0565057,0.216553,0.712314,0.724845,0.490613,0.222934,0.570576,0.19241,0.635975,0.446364,0.391254,0.118108,0.434082,0.318111,0.708777,0.953854,0.946252,0.308797,0.00664127,0.39312,0.814849,0.435397,0.955277,0.447727,0.861382,0.274384,0.415232,0.559929,0.503681,0.646376,0.674812,0.78735,0.717066,0.457463,0.149089,0.218709,0.394035,0.874841,0.467682,0.118644,0.0536619,0.521222,0.0906805,0.206937,0.49465,0.595101,0.180854,0.472361,0.494301,0.342739,0.819821,0.349984,0.99696,0.396024,0.586463,0.0993868,0.142743,0.852346,0.381312,0.427431,0.87413,0.101102,0.368349,0.447104,0.905211,0.604384,0.48942,0.703891,0.251371,0.796144,0.639909,0.645013,0.990155,0.370179,0.410666,0.141346,0.0862899,0.438908,0.468506,0.27145,0.837825,0.736637,0.992396,0.820111,0.0559974,0.870682,0.774828,0.591691,0.960883,0.0714217,0.980741,0.922111,0.672948,0.144342,0.570025,0.932812,0.472194,0.845306,0.952197,0.304103,0.56335,0.0684676,0.559009,0.875641,0.220336,0.0317553,0.973547,0.483289,0.109936,0.568509,0.00944805,0.435205,0.648735,0.919227,0.9287,0.838659,0.242097,0.911873,0.104431,0.878473,0.84931,0.897817,0.23847,0.42512,0.58493,0.771446,0.923171,0.234916,0.715169,0.429889,0.566922,0.544868,0.683109,0.769467,0.914801,0.112319,0.117709,0.528545,0.956188,0.383158,0.567861,0.959191,0.376158,0.0160279,0.0634103,0.721488,0.186928,0.674649,0.431575,0.787878,0.795784,0.331999,0.294151,0.159038,0.709438,0.172563,0.214742,0.795955,0.96306,0.741618,0.163795,0.600468,0.530035,0.594939,0.494989,0.497649,0.830096,0.465963,0.403215,0.81271,0.773225,0.520025,0.558815,0.413281,0.47739,0.792613,0.0150656,0.207175,0.215506,0.935876,0.901789,0.663159,0.7507,0.468527,0.379722,0.846107,0.0761181,0.955668,0.74085,0.999588,0.889882,0.243316,0.667017,0.625719,0.411681,0.913552,0.918992,0.353491,0.717247,0.31049,0.697358,0.294207,0.338277,0.691507,0.803212,0.900697,0.103039,0.14616,0.209529,0.844091,0.933662,0.238628,0.831667,0.701138,0.153423,0.607525,0.901969,0.0851611,0.866667,0.639007,0.209929,0.695495,0.638039,0.358446,0.0262175,0.91757,0.200556,0.371174,0.469326,0.365664,0.580846,0.431479,0.377994,0.532771,0.312731,0.0195754,0.382232,0.422843,0.92325,0.279589,0.448779,0.743031,0.622897,0.338867,0.981364,0.796035,0.467574,0.822904,0.757275,0.785318,0.201912,0.000436306,0.590007,0.6293,0.474663,0.79211,0.681817,0.4401,0.819655,0.945885,0.650464,0.501581,0.320686,0.0427072,0.877936,0.33154,0.0120429,0.888929,0.426414,0.444548,0.838489,0.259747,0.0292644,0.897192,0.24949,0.899572,0.185947,0.938018,0.0534099,0.619705,0.00799406,0.94774,0.52706,0.97942,0.178589,0.227168,0.181792,0.783625,0.109557,0.34222,0.876659,0.364925,0.757991,0.93526,0.916138,0.746641,0.296074,0.303498,0.368623,0.354386,0.201626,0.64973,0.746264,0.0886199,0.103295,0.765669,0.941282,0.32955,0.795042,0.734033,0.636378,0.292185,0.650849,0.470493,0.0534124,0.0721019,0.218021,0.883449,0.508988,0.201368,0.345911,0.219202,0.0778686,0.42452,0.227786,0.768743,0.807331,0.709166,0.640434,0.872052,0.0794141,0.137688,0.00457036,0.266335,0.186541,0.200886,0.323105,0.602309,0.888865,0.425568,0.689875,0.250602,0.0526491,0.551851,0.497587,0.435523,0.356057,0.0143619,0.596422,0.420853,0.956698,0.408524,0.812039,0.19572,0.351122,0.292877,0.559646,0.174412,0.436132,0.0386294,0.118102,0.221019,0.267067,0.00442445,0.626902,0.16699,0.475704,0.147734,0.206816,0.949887,0.834832,0.307752,0.124921,0.720726,0.817405,0.104833,0.117265,0.481066,0.872603,0.531905,0.738595,0.801144,0.415585,0.778112,0.159448,0.880441,0.084889,0.532079,0.852883,0.458123,0.870476,0.697464,0.565209,0.836991,0.778259,0.474506,0.27519,0.674565,0.826118,0.642217,0.0425165,0.667179,0.898384,0.882986,0.230121,0.080043,0.040222,0.472299,0.773766,0.0251641,0.18359,0.522894,0.825837,0.842573,0.85158,0.961918,0.864663,0.924878,0.120156,0.512011,0.872492,0.607095,0.428369,0.318856,0.406452,0.462821,0.781376,0.434112,0.277333,0.229352,0.264181,0.929906,0.519132,0.923975,0.724466,0.29101,0.959246,0.154431,0.662846,0.621374,0.348304,0.236668,0.87036,0.572737,0.231326,0.505219,0.794979,0.445019,0.131295,0.424652,0.824963,0.274782,0.569783,0.485254,0.468692,0.957721,0.759492,0.360241,0.358378,0.486697,0.0516419,0.57147,0.401383,0.407841,0.226748,0.259572,0.178082,0.681663,0.980325,0.308441,|0.0399331,0.371721,0.988913,0.438341,0.394395,0.103061,0.588238,0.319949,0.241567,0.454375,0.695344,0.624352,0.257093,0.119663,0.270502,0.108761,0.849564,0.348723,0.50764,0.466483,0.030753,0.484092,0.200601,0.56778,0.0439656,0.823522,0.229793,0.474056,0.0971854,0.342392,0.634051,0.00899297,0.747645,0.730761,0.132452,0.543378,0.830596,0.856401,0.52234,0.443296,0.176663,0.407894,0.153701,0.433813,0.159592,0.876731,0.235238,0.0841508,0.0350052,0.105056,0.602709,0.701517,0.0956807,0.223672,0.598291,0.0534648,0.0627675,0.22218,0.711385,0.108903,0.487518,0.997564,0.407525,0.664215,0.342762,0.443434,0.00739908,0.663646,0.937386,0.00860065,0.0651516,0.82537,0.627763,0.225484,0.336431,0.317055,0.179542,0.794366,0.244308,0.234216,0.153678,0.138159,0.559336,0.456643,0.979159,0.548373,0.229724,0.409361,0.0248078,0.0464526,0.832189,0.534544,0.555466,0.369758,0.174846,0.586985,0.822085,0.602038,0.74086,0.712071,0.496343,0.555901,0.0501732,0.944739,0.178669,0.885062,0.181618,0.418523,0.0409676,0.892402,0.238187,0.958286,0.966206,0.176671,0.632075,0.746858,0.658921,0.911086,0.7408,0.225579,0.89472,0.671148,0.839221,0.437483,0.923301,0.80195,0.189001,0.686547,0.496933,0.197238,0.627043,0.92273,0.681284,0.308558,0.0245627,0.39676,0.173283,0.508093,0.123363,0.563201,0.816831,0.611389,0.951893,0.849098,0.980897,0.800372,0.60251,0.200471,0.754374,0.0656583,0.724501,0.349413,0.455806,0.662333,0.510352,0.471514,0.126309,0.547103,0.106776,0.00282937,0.593168,0.437315,0.909673,0.988937,0.488659,0.228622,0.272324,0.140846,0.940148,0.151312,0.0711093,0.299516,0.360027,0.283224,0.668006,0.849468,0.934568,0.422496,0.298848,0.00652468,0.858794,0.178525,0.946725,0.745092,0.780332,0.17429,0.271747,0.928087,0.355994,0.233032,0.283859,0.855266,0.854325,0.570556,0.162425,0.01661,0.817017,0.189463,0.0906709,0.61203,0.932931,0.38846,0.720881,0.461147,0.469058,0.922949,0.246467,0.848809,0.95676,0.33903,0.550204,0.293813,0.448067,0.783079,0.391758,0.203073,0.791312,0.414092,0.553037,0.0380394,0.698896,0.321503,0.905665,0.295062,0.465473,0.436431,0.317981,0.163323,0.917858,0.851631,0.217576,0.139675,0.974004,0.466149,0.339551,0.730682,0.222763,0.514567,0.844028,0.591591,0.574777,0.150193,0.231362,0.100324,0.954794,0.0103866,0.441454,0.733887,0.0822681,0.504871,0.671396,0.400112,0.702592,0.452236,0.351207,0.044949,0.375876,0.916282,0.936792,0.948448,0.932031,0.18441,0.924132,0.730734,0.686351,0.829591,0.391193,0.0296465,0.532351,0.925374,0.871647,0.161788,0.402043,0.622827,0.611964,0.0980047,0.218274,0.571925,0.20297,0.877184,0.347038,0.433668,0.77219,0.975295,0.0657471,0.983214,0.0349138,0.11236,0.0647509,0.45856,0.781024,0.846227,0.18867,0.646787,0.450943,0.578057,0.920695,0.0573688,0.351583,0.135303,0.416616,0.302647,0.477351,0.646512,0.0152928,0.632991,0.202149,0.415745,0.575628,0.680573,0.433513,0.897827,0.536068,0.695399,0.310216,0.629482,0.848881,0.760565,0.990821,0.683256,0.0578088,0.748296,0.198118,0.747626,0.883197,0.129794,0.613124,0.335878,0.631499,0.478278,0.219645,0.187905,0.479737,0.0623549,0.335196,0.639287,0.917512,0.0134215,0.904285,0.654762,0.0612723,0.179673,0.14525,0.915882,0.57918,0.894778,0.227584,0.719427,0.827712,0.439218,0.994851,0.502266,0.736906,0.0278084,0.621452,0.872113,0.0790427,0.232827,0.325571,0.228626,0.50204,0.185031,0.837875,0.387674,0.0524285,0.487808,0.21361,0.692142,0.563416,0.483777,0.448251,0.456421,0.786532,0.358174,0.90039,0.404437,0.242349,0.879389,0.345788,0.878416,0.541138,0.0194901,0.0153635,0.00897217,0.0725128,0.20448,0.117053,0.522653,0.483891,0.231188,0.576456,0.542411,0.610251,0.452097,0.789623,0.330492,0.289911,0.857697,0.760428,0.869646,0.0931603,0.533706,0.0450169,0.85077,0.459122,0.0618408,0.933928,0.950933,0.924201,0.703024,0.914279,0.495625,0.781814,0.939487,0.855039,0.0742275,0.902186,0.960885,0.342128,0.105013,0.669661,0.798149,0.159108,0.0609142,0.16192,0.0891752,0.407042,0.544129,0.848351,0.744051,0.82656,0.865764,0.927365,0.810725,0.552763,0.694772,0.167106,0.0179186,0.771352,0.114813,0.464269,0.108472,0.895024,0.807922,0.0128106,0.753148,0.716226,0.76573,0.900245,0.295073,0.925057,0.909421,0.287682,0.350924,0.00410229,0.951247,0.247896,0.92786,0.0985611,0.538992,0.047214,0.91241,0.693427,0.854783,0.559942,0.706547,0.35304,0.607165,0.244385,0.170368,0.171681,0.960277,0.101434,0.96905,0.929138,0.254179,0.372078,0.22034,0.863546,0.987725,0.144017,0.021103,0.777665,0.0941499,0.223503,0.280623,0.598673,0.633666,0.493284,0.829845,0.807468,0.0436702,0.294441,0.790117,0.891476,0.657072,0.772552,0.520258,0.804561,0.213348,0.109921,0.304968,0.903718,0.844265,0.981275,0.136931,0.289479,0.772455,0.169193,0.834275,0.00464082,0.441534,0.761583,0.910171,0.908347,0.518478,0.563198,0.315284,0.19942,0.252538,0.89475,0.346593,0.900612,0.0966623,0.450302,0.840199,0.9084,0.985819,0.364012,0.562281,0.3924,0.0877044,0.981519,0.164137,0.819584,0.0270278,0.108976,0.990736,0.754082,0.962771,0.681581,0.979634,0.632645,0.294422,0.482379,0.729134,0.580682,0.18343,0.898688,0.969262,0.17834,0.968675,0.329818,0.600676,0.0576037,0.65674,0.258695,0.894204,0.977488,0.190572,0.714973,0.913638,0.863838,0.831793,0.676838,0.976886,0.87701,0.37291,0.179529,0.0134152,0.354681,0.00956571,0.0223516,0.278375,0.625678,0.301091,0.497316,0.425627,0.348538,0.548172,0.113558,0.100593,0.671059,0.322488,0.936594,0.555905,0.577603,0.536592,0.157609,0.515359,0.905777,0.350404,0.799385,0.409098,0.0469954,0.402814,0.705503,0.447965,0.868213,0.695981,0.324922,0.335878,0.934087,0.877868,0.215576,0.504352,0.391141,0.756047,0.511141,0.767108,0.735187,0.278952,0.442547,0.92263,0.515662,0.716926,0.541766,0.192994,0.551363,0.370512,0.0975383,0.968847,0.139615,0.221593,0.673368,0.995288,0.960034,0.995087,0.569107,0.557765,0.924913,0.216664,0.882063,0.877045,0.9461,0.494836,0.206778,0.079724,0.327443,0.789388,0.373879,0.469643,0.0124323,0.246607,0.131164,0.734282,0.612037,0.122437,0.316966,0.215855,0.887093,0.433514,0.742607,0.512325,0.942586,0.57368,0.503387,0.772154,0.0913055,0.874722,0.327543,0.774056,0.0235397,0.186736,0.191547,0.0593291,0.0624474,0.307724,0.74604,0.0656061,0.594647,0.710011,0.766631,0.219916,0.21689,0.891296,0.773739,0.678611,0.0597872,0.27354,0.691324,0.523174,0.26267,0.191274,0.614172,0.707679,0.46833,0.849787,0.715653,0.173396,0.96757,0.246097,0.753593,0.916852,0.328996,0.519863,0.685614,0.257377,0.384195,0.53573,0.318681,0.674603,0.283824,0.971214,0.313953,0.933147,0.298516,0.0511542,0.194813,0.949332,0.527072,0.120707,0.212439,0.869426,0.474124,0.291037,0.367506,0.0655066,0.433487,0.214732,0.872456,0.262574,0.117496,0.475622,0.797944,0.182454,0.106754,0.00126898,0.460719,0.496539,0.239377,0.67248,0.532459,0.47803,0.915419,0.809073,0.8384,0.653632,0.649237,0.597948,0.55916,0.190792,0.192945,0.181024,0.678768,0.147766,0.109247,0.791345,0.264743,0.60982,0.503315,0.0592439,0.0979768,0.895607,0.679283,0.711314,0.214048,0.355333,0.0641468,0.609838,0.864545,0.417115,0.413599,0.134119,0.265188,0.283008,0.62563,0.278073,0.347269,0.18829,0.254743,0.991465,0.863708,0.309149,0.947775,0.354266,0.660128,0.161079,0.5235,0.945738,0.743724,0.804681,0.885086,0.543888,0.274567,0.287017,0.78912,0.700136,0.834008,0.894897,0.259928,0.100472,0.0542858,0.005081,0.297651,0.481641,0.801233,0.895274,0.54426,0.227753,0.508227,0.931635,0.75554,0.346302,0.808522,0.513613,0.116141,0.310406,0.743896,0.0566213,0.137481,0.0334671,0.607764,0.23528,0.0558274,0.54754,0.552581,0.342251,0.279703,0.187195,0.253893,0.496355,0.291564,0.365107,0.107536,0.732393,0.945125,0.881854,0.88658,0.832431,0.848736,0.616175,0.735295,0.927401,0.687864,0.912177,0.943049,0.731462,0.04968,0.679288,0.130629,0.191994,0.664552,0.182157,0.533994,0.868998,0.939892,0.719504,0.182793,0.103845,0.476547,0.486328,0.833885,0.379581,0.864445,0.766761,0.880952,0.512945,0.436624,0.703998,0.766335,0.270693,0.553031,0.0441527,0.790125,0.0763932,0.365325,0.965033,0.863489,0.501684,0.294629,0.9251,0.372692,0.361972,0.347206,0.592623,0.551622,0.187371,0.0700209,0.0654375,0.616651,0.473455,0.908189,0.551546,0.494293,0.965465,0.750136,0.64401,0.289411,0.279907,0.466341,0.660353,0.368052,0.202431,0.0836281,0.441413,0.970583,0.605156,0.635832,0.0925473,0.782743,0.387657,0.748957,0.312298,0.395661,0.267602,0.18402,0.193856,0.566073,0.647736,0.737464,0.616831,0.753385,0.623984,0.93733,0.629061,0.604478,0.323862,0.208804,0.118098,0.32259,0.417682,0.84206,0.837119,0.694298,0.346393,0.850171,0.874195,0.287242,0.0348007,0.500524,0.799367,0.847568,0.504864,0.682343,0.42648,0.844948,0.986151,0.0698278,0.782657,0.471,0.313646,0.532073,0.424147,0.743384,0.469605,0.250006,0.916022,0.84419,0.619321,0.998952,0.492492,0.837268,0.719294,0.516573,0.0197713,0.813809,0.600366,0.774182,0.57202,0.889283,0.926388,0.382018,0.67534,0.136124,0.924945,0.0045079,0.789919,0.151377,0.631618,0.63678,0.88771,0.340957,0.783721,0.207375,0.326145,0.791737,0.0852222,0.141123,0.533612,0.0334669,0.206286,0.252575,0.702915,0.910354,0.505009,0.496122,0.0623316,0.767656,0.871571,0.238952,0.653777,0.874893,0.156762,0.0936797,0.468585,0.445085,0.00173056,0.134756,0.34989,|0.023885,0.566589,0.889685,0.725296,0.549482,0.839937,0.409883,0.941807,0.052225,0.488927,0.889158,0.495775,0.959945,0.72378,0.413796,0.0870128,0.452279,0.0121985,0.85129,0.461492,0.452736,0.0275202,0.303203,0.322812,0.679371,0.0933353,0.151249,0.121257,0.774783,0.897313,0.143077,0.140527,0.965653,0.201507,0.64812,0.57533,0.0319623,0.822251,0.826706,0.105088,0.432424,0.366745,0.626136,0.0784497,0.866636,0.0364147,0.22657,0.144672,0.18174,0.362068,0.139053,0.0528127,0.82088,0.362664,0.7164,0.679868,0.887903,0.979325,0.896664,0.267145,0.507547,0.293444,0.118359,0.389251,0.0244563,0.983672,0.963265,0.413856,0.117215,0.191204,0.125004,0.153283,0.157261,0.394306,0.345508,0.354841,0.721712,0.0299132,0.441015,0.654224,0.00976962,0.732791,0.84771,0.780944,0.968193,0.417239,0.546413,0.863026,0.216569,0.11937,0.11059,0.411499,0.74852,0.416437,0.561951,0.272797,0.306318,0.102439,0.574782,0.93392,0.928208,0.360278,0.681357,0.433316,0.15915,0.177241,0.205909,0.235827,0.638465,0.872523,0.60535,0.675992,0.851737,0.135407,0.0133737,0.546819,0.4547,0.70069,0.0192373,0.830956,0.380433,0.21461,0.375792,0.533345,0.922986,0.847008,0.836822,0.470181,0.380013,0.531516,0.690747,0.0375471,0.993682,0.65761,0.131749,0.828505,0.799492,0.037223,0.487114,0.915309,0.219537,0.0453982,0.956134,0.197292,0.993179,0.436035,0.684214,0.757684,0.0233654,0.25898,0.610408,0.856272,0.909353,0.498002,0.266049,0.244928,0.530156,0.814497,0.465952,0.159548,0.150284,0.780285,0.734268,0.61683,0.955158,0.919961,0.377019,0.291693,0.79976,0.717723,0.811477,0.660173,0.322992,0.727343,0.439382,0.062116,0.106246,0.517265,0.0673014,0.897009,0.778324,0.328021,0.609003,0.211856,0.35807,0.299055,0.929729,0.0327569,0.842317,0.852642,0.316947,0.666004,0.5305,0.932763,0.520641,0.129211,0.962317,0.865144,0.15897,0.875888,0.788973,0.921241,0.249895,0.042565,0.466482,0.849106,0.480028,0.482358,0.719776,0.999576,0.552886,0.274875,0.567099,0.969872,0.556335,0.0907612,0.0268722,0.674123,0.102049,0.298763,0.321665,0.240915,0.179341,0.540912,0.773403,0.962228,0.939702,0.336648,0.538438,0.520566,0.465906,0.833229,0.588649,0.440513,0.212901,0.333316,0.303011,0.916171,0.176005,0.12378,0.675858,0.553305,0.537033,0.234249,0.202979,0.65293,0.260896,0.866377,0.235558,0.150171,0.093841,0.794425,0.132694,0.69545,0.878746,0.675012,0.119801,0.2755,0.972033,0.0582691,0.545111,0.0988823,0.136314,0.482725,0.297557,0.272437,0.444779,0.915271,0.663524,0.801259,0.979554,0.505327,0.51977,0.880547,0.0749379,0.115957,0.822751,0.927054,0.926282,0.385204,0.101061,0.458512,0.506025,0.524049,0.738161,0.214082,0.0313848,0.932384,0.0314157,0.219423,0.188832,0.346547,0.808091,0.390685,0.210151,0.292428,0.82968,0.261968,0.848622,0.978659,0.500544,0.803581,0.162766,0.512141,0.345419,0.48745,0.952636,0.814463,0.223612,0.221743,0.53853,0.615072,0.997533,0.108148,0.950453,0.537771,0.268524,0.162453,0.491403,0.808788,0.480987,0.804698,0.832863,0.0324135,0.0300387,0.282575,0.40584,0.849345,0.434401,0.900906,0.488564,0.573736,0.351046,0.670292,0.340852,0.488054,0.730858,0.876117,0.361551,0.0877901,0.655001,0.860549,0.155849,0.528077,0.495765,0.653907,0.426382,0.904926,0.397254,0.975978,0.946781,0.839618,0.617546,0.54356,0.295786,0.834148,0.989312,0.233353,0.793144,0.491028,0.915415,0.797064,0.855152,0.248449,0.0788881,0.851062,0.0255458,0.522261,0.894313,0.633717,0.114418,0.772209,0.403091,0.80961,0.309149,0.840551,0.716378,0.67115,0.826234,0.44106,0.522615,0.766568,0.0475417,0.555506,0.80312,0.0053401,0.632734,0.266572,0.896698,0.840813,0.680896,0.221288,0.131934,0.00452584,0.302499,0.90404,0.549308,0.120683,0.624784,0.614593,0.607783,0.762249,0.262413,0.127376,0.454717,0.975777,0.267522,0.738399,0.121642,0.697023,0.419188,0.761362,0.264668,0.865471,0.846153,0.323277,0.231293,0.448518,0.455414,0.169426,0.147821,0.646323,0.990793,0.871187,0.230989,0.436395,0.854489,0.863212,0.219547,0.0439474,0.732635,0.00225198,0.368219,0.134374,0.657139,0.0875965,0.364682,0.575175,0.35967,0.471031,0.637119,0.463492,0.838138,0.350747,0.365189,0.623378,0.649369,0.296422,0.20087,0.612074,0.370708,0.603362,0.0201573,0.301043,0.537903,0.907498,0.312896,0.415353,0.704795,0.103515,0.649042,0.316891,0.985292,0.786411,0.729305,0.45531,0.589304,0.736176,0.123144,0.884052,0.0352619,0.20475,0.38573,0.154047,0.370005,0.679723,0.881404,0.883979,0.716476,0.636791,0.708276,0.566969,0.20978,0.646557,0.932257,0.371722,0.069548,0.42904,0.28601,0.797008,0.123414,0.744196,0.971467,0.966008,0.572599,0.671013,0.684159,0.247923,0.0304796,0.824003,0.38246,0.829363,0.601943,0.0795111,0.852446,0.297523,0.358717,0.59322,0.736678,0.693252,0.366448,0.0831565,0.836216,0.0527119,0.576632,0.493031,0.747403,0.124257,0.813304,0.550493,0.113536,0.960054,0.260711,0.691492,0.682134,0.242754,0.582222,0.41603,0.535354,0.332546,0.707847,0.867258,0.0809294,0.677498,0.78529,0.837758,0.804172,0.240758,0.456049,0.00167823,0.282313,0.647588,0.0199036,0.243502,0.465832,0.496782,0.45657,0.394567,0.843894,0.899279,0.358226,0.456685,0.273153,0.192903,0.477561,0.148575,0.112391,0.0975139,0.424602,0.651937,0.589754,0.572119,0.912698,0.0486646,0.114873,0.165431,0.992413,0.158037,0.964954,0.676519,0.57384,0.669309,0.873542,0.598554,0.725227,0.490032,0.680698,0.500502,0.917759,0.833167,0.879046,0.506016,0.379735,0.68529,0.626292,0.652914,0.257812,0.618873,0.357619,0.455584,0.998127,0.982306,0.964953,0.508098,0.173334,0.326223,0.552422,0.870632,0.263563,0.534846,0.587008,0.167804,0.513097,0.215326,0.97401,0.860547,0.539296,0.761803,0.324303,0.0892206,0.68663,0.996743,0.00225884,0.343511,0.886809,0.699954,0.992424,0.466723,0.199367,0.838631,0.801539,0.147538,0.864636,0.13827,0.875914,0.3129,0.905838,0.994744,0.206482,0.902323,0.0553507,0.319781,0.0587146,0.257402,0.000707686,0.539949,0.0454909,0.74293,0.250533,0.987479,0.62341,0.532216,0.251028,0.0773255,0.86535,0.397426,0.441805,0.859166,0.526188,0.0453599,0.629536,0.172251,0.647855,0.337493,0.710849,0.108839,0.996756,0.513718,0.0650972,0.888168,0.211093,0.969927,0.451556,0.418112,0.806185,0.628424,0.0602624,0.713921,0.0125947,0.112041,0.985398,0.772887,0.0480802,0.629204,0.860624,0.344346,0.317943,0.463592,0.812223,0.947617,0.316237,0.436738,0.630497,0.924603,0.856889,0.0307995,0.16856,0.92158,0.720188,0.721914,0.133478,0.466071,0.174867,0.89951,0.0180193,0.208919,0.7192,0.0533149,0.110342,0.101279,0.467636,0.602544,0.084897,0.805241,0.944249,0.363389,0.148635,0.0697492,0.69438,0.215081,0.249719,0.401658,0.228536,0.837955,0.0655258,0.0217103,0.462701,0.240497,0.658212,0.339714,0.385742,0.801022,0.865088,0.866593,0.647527,0.857104,0.812414,0.555406,0.753663,0.773896,0.842435,0.596783,0.0955935,0.536991,0.579839,0.102092,0.295643,0.24271,0.651948,0.670055,0.586086,0.951972,0.156179,0.327386,0.0839921,0.365699,0.0598198,0.153488,0.08947,0.0244132,0.00441122,0.784981,0.84748,0.361875,0.876528,0.88532,0.665266,0.276268,0.264757,0.198099,0.6782,0.972348,0.552176,0.491362,0.0913503,0.597313,0.933562,0.620399,0.193516,0.0528716,0.852245,0.936316,0.198075,0.559846,0.904075,0.986538,0.690989,0.231374,0.386922,0.636054,0.726993,0.0719862,0.996668,0.0739977,0.710493,0.897664,0.579596,0.641103,0.942141,0.567918,0.223237,0.504937,0.0285749,0.34204,0.715336,0.0184386,0.692298,0.297879,0.781177,0.121127,0.00618732,0.0174229,0.299936,0.962154,0.540386,0.511451,0.93136,0.398762,0.597049,0.575625,0.815261,0.812424,0.891734,0.951767,0.0500291,0.925643,0.614893,0.1758,0.720713,0.460947,0.593536,0.603536,0.609532,0.84151,0.734915,0.575582,0.614044,0.497316,0.389048,0.095251,0.615079,0.40829,0.000727415,0.243803,0.604287,0.636312,0.1236,0.427142,0.907682,0.420257,0.340211,0.937648,0.696912,0.383708,0.892844,0.342768,0.134423,0.890815,0.0726923,0.440608,0.495576,0.379051,0.26228,0.0220774,0.817016,0.681531,0.653363,0.227692,0.46597,0.310774,0.798617,0.158865,0.270427,0.217533,0.85551,0.0562633,0.877237,0.733771,0.891934,0.0830057,0.868463,0.358995,0.832474,0.931639,0.304786,0.560841,0.105051,0.71029,0.443185,0.264905,0.983841,0.526658,0.15016,0.932355,0.313214,0.119829,0.513856,0.192513,0.235568,0.748083,0.716266,0.0307664,0.614889,0.932465,0.33131,0.541279,0.658394,0.0839457,0.349221,0.127646,0.512175,0.786609,0.766081,0.678134,0.693142,0.930681,0.229556,0.0945557,0.339732,0.105012,0.755853,0.923465,0.881762,0.623913,0.697369,0.543944,0.0447364,0.0617986,0.635985,0.68964,0.997872,0.544967,0.845316,0.172949,0.360579,0.400101,0.433459,0.567386,0.452168,0.539284,0.661823,0.282617,0.601659,0.116863,0.103059,0.644878,0.988664,0.435928,0.0148237,0.498234,0.235937,0.157911,0.982754,0.28218,0.42135,0.801649,0.0731093,0.520456,0.236661,0.299181,0.828283,0.139706,0.664446,0.5027,0.512459,0.743581,0.15694,0.521186,0.300485,0.984146,0.686262,0.417979,0.276059,0.240062,0.0466244,0.307576,0.597632,0.938944,0.735401,0.0893295,0.0741999,0.191139,0.937277,0.589467,0.581189,0.192073,0.410399,0.715998,0.0437621,0.607497,0.735598,0.98169,0.997332,0.621285,0.0992932,0.55727,0.713254,0.232407,0.289706,0.785843,0.532815,0.0294692,0.641568,0.960492,0.948122,0.873513,0.958843,0.199642,0.877703,0.756361,|0.0866327,0.267095,0.0569805,0.120329,0.897251,0.994067,0.518857,0.248778,0.0526069,0.345414,0.672915,0.780101,0.742564,0.0134044,0.872358,0.831162,0.896318,0.914847,0.783079,0.461096,0.8185,0.373049,0.741844,0.276279,0.906491,0.622877,0.574703,0.761361,0.125893,0.583912,0.899364,0.690255,0.587115,0.572137,0.346475,0.535446,0.109216,0.379968,0.42975,0.977921,0.737518,0.25993,0.33894,0.422993,0.5106,0.75275,0.673182,0.0045259,0.191408,0.37003,0.765889,0.857459,0.123063,0.488495,0.623035,0.738997,0.243822,0.897521,0.544577,0.804128,0.582155,0.516522,0.348016,0.250757,0.434689,0.874087,0.0281927,0.0600709,0.476927,0.686389,0.43541,0.205525,0.855124,0.276243,0.190091,0.087468,0.733315,0.115077,0.589886,0.135859,0.383826,0.384571,0.7404,0.0611295,0.876562,0.680536,0.845247,0.909071,0.370288,0.486227,0.433287,0.592769,0.785886,0.419641,0.559048,0.236035,0.547856,0.56915,0.021373,0.539666,0.0624285,0.61769,0.783339,0.778393,0.769708,0.992934,0.208824,0.550382,0.575946,0.214524,0.905185,0.64577,0.401411,0.348733,0.856614,0.533278,0.505657,0.251417,0.864135,0.18929,0.655762,0.847522,0.220613,0.743893,0.0982189,0.347976,0.663938,0.19117,0.0664339,0.296035,0.790833,0.630703,0.880519,0.592608,0.348579,0.893711,0.880359,0.0439742,0.969604,0.470298,0.742897,0.943685,0.529739,0.14062,0.628398,0.502617,0.355939,0.841899,0.675821,0.646881,0.821069,0.00339818,0.703605,0.5549,0.368989,0.670923,0.950953,0.302868,0.586254,0.635453,0.0940864,0.843418,0.878053,0.963902,0.00365931,0.0892164,0.800761,0.799643,0.221784,0.308089,0.379236,0.285821,0.470855,0.611725,0.625062,0.933042,0.679952,0.301298,0.131259,0.79441,0.77687,0.183666,0.726945,0.427741,0.995251,0.940105,0.061163,0.56921,0.832022,0.886142,0.20279,0.854454,0.88541,0.867676,0.391701,0.250503,0.196909,0.216928,0.921733,0.168016,0.660035,0.462483,0.0962434,0.778449,0.959489,0.865178,0.296151,0.688308,0.179478,0.471258,0.253058,0.624607,0.577809,0.657392,0.74146,0.967878,0.549665,0.516759,0.377568,0.774604,0.222746,0.189911,0.442398,0.238746,0.562668,0.857922,0.604648,0.151806,0.968614,0.172991,0.63323,0.644166,0.830844,0.785149,0.478386,0.0906236,0.033688,0.0729773,0.220292,0.792812,0.0801174,0.411906,0.659618,0.824198,0.348613,0.850962,0.323534,0.0131852,0.823011,0.950257,0.41791,0.248367,0.0716978,0.0739894,0.423219,0.73309,0.411672,0.308426,0.691732,0.0667073,0.051751,0.217552,0.0457104,0.780048,0.817505,0.648933,0.241291,0.634017,0.341393,0.19046,0.587906,0.7526,0.851603,0.887091,0.58618,0.571955,0.325743,0.244675,0.664009,0.881603,0.36129,0.90604,0.80251,0.0994055,0.352785,0.139635,0.209928,0.802326,0.987241,0.878109,0.775168,0.370958,0.146607,0.0704957,0.861625,0.238506,0.953227,0.0858021,0.22187,0.616414,0.89687,0.115147,0.112559,0.755252,0.20741,0.193714,0.785911,0.0698882,0.102572,0.451899,0.950783,0.335467,0.369629,0.79879,0.0365608,0.840298,0.183091,0.330392,0.505855,0.58927,0.667428,0.668798,0.424096,0.971606,0.381632,0.785061,0.312885,0.309316,0.388269,0.0726838,0.036946,0.909114,0.586204,0.323719,0.602807,0.644607,0.976142,0.104074,0.659775,0.380369,0.185735,0.673917,0.956533,0.422521,0.0861306,0.955613,0.650473,0.776298,0.0310985,0.0651389,0.52155,0.126334,0.2477,0.856872,0.542743,0.297122,0.26266,0.49063,0.531778,0.0816469,0.764698,0.435954,0.419734,0.822501,0.230254,0.775126,0.0829573,0.177883,0.356468,0.488336,0.156908,0.399691,0.0680379,0.377929,0.919652,0.938559,0.314743,0.164059,0.210702,0.0736387,0.9977,0.648615,0.142802,0.632661,0.230502,0.352722,0.852057,0.332898,0.675993,0.896485,0.571291,0.647834,0.988067,0.858616,0.648238,0.378176,0.0979102,0.430558,0.709344,0.127705,0.732365,0.12922,0.283034,0.682448,0.420218,0.127776,0.937492,0.346764,0.935934,0.0803799,0.648637,0.0942745,0.0522642,0.936498,0.422474,0.265851,0.442205,0.7537,0.283112,0.0152776,0.862119,0.884656,0.190336,0.788752,0.674989,0.553494,0.496388,0.838334,0.155128,0.937657,0.888846,0.207789,0.44814,0.928287,0.763485,0.460889,0.180075,0.871421,0.450017,0.634268,0.352212,0.0491365,0.862601,0.926365,0.0802019,0.293009,0.546655,0.894642,0.680304,0.425841,0.700512,0.522946,0.686397,0.769857,0.130572,0.898458,0.779154,0.88242,0.632669,0.446702,0.295949,0.12438,0.553174,0.288948,0.0343968,0.994305,0.615583,0.0426062,0.942255,0.627363,0.119983,0.21749,0.823458,0.567976,0.953187,0.282277,0.415651,0.230642,0.259701,0.217158,0.87265,0.230877,0.854586,0.430999,0.301628,0.5927,0.30559,0.837906,0.0391654,0.202455,0.43535,0.325384,0.233537,0.440936,0.453112,0.917699,0.0518471,0.325675,0.767167,0.982172,0.0350958,0.751959,0.809129,0.588818,0.387901,0.979059,0.609189,0.0178959,0.98723,0.701092,0.84248,0.827103,0.0974398,0.222994,0.40564,0.669996,0.704152,0.791634,0.597887,0.286808,0.226758,0.209519,0.687228,0.64615,0.361506,0.422931,0.654861,0.67557,0.866431,0.269755,0.642737,0.447391,0.674669,0.817927,0.581068,0.38265,0.0454783,0.58166,0.446156,0.881465,0.632681,0.436163,0.178174,0.402498,0.261773,0.225495,0.296737,0.0436979,0.203312,0.377501,0.169314,0.420962,0.671514,0.751268,0.0809153,0.461536,0.862812,0.739197,0.629575,0.0261717,0.564731,0.0082491,0.99495,0.309069,0.0285568,0.924715,0.268427,0.605081,0.189158,0.835089,0.544061,0.175684,0.878397,0.28349,0.074524,0.982838,0.928382,0.207565,0.818314,0.744259,0.806381,0.841017,0.0384299,0.567242,0.602784,0.287197,0.445635,0.548244,0.00510567,0.534981,0.338849,0.129178,0.247466,0.398856,0.484843,0.311841,0.904419,0.751879,0.301156,0.0487267,0.0461697,0.322099,0.170715,0.542817,0.470492,0.903287,0.841003,0.898925,0.86376,0.548685,0.962151,0.909686,0.359185,0.657659,0.395757,0.79359,0.290955,0.678467,0.369852,0.926888,0.442423,0.395824,0.523243,0.310189,0.905906,0.279783,0.960114,0.210211,0.289854,0.0349202,0.603482,0.299871,0.120966,0.526364,0.87838,0.757027,0.192675,0.640073,0.110411,0.966076,0.455976,0.236357,0.364696,0.632279,0.374263,0.506987,0.305368,0.250326,0.627884,0.180593,0.163477,0.573168,0.738336,0.0485278,0.113579,0.965271,0.338094,0.307045,0.314305,0.526758,0.863129,0.266961,0.119027,0.977651,0.505196,0.298312,0.359354,0.781912,0.50932,0.0598178,0.749441,0.245675,0.48595,0.972763,0.0573323,0.200757,0.0961396,0.637602,0.761427,0.690298,0.566044,0.870185,0.425633,0.285661,0.71754,0.599725,0.180484,0.0260867,0.745784,0.0372805,0.101456,0.630548,0.311836,0.462195,0.787395,0.0483013,0.78841,0.0447897,0.803878,0.46107,0.469874,0.794582,0.271766,0.38356,0.719508,0.916521,0.235975,0.193436,0.137455,0.909184,0.722396,0.718645,0.333006,0.884496,0.212323,0.955698,0.557931,0.124916,0.181001,0.171081,0.838441,0.600088,0.252064,0.0970352,0.57657,0.963707,0.324976,0.701572,0.264991,0.572019,0.743934,0.0417012,0.984858,0.783019,0.244824,0.386237,0.335554,0.868569,0.320821,0.796911,0.951877,0.735331,0.132554,0.999276,0.690619,0.134623,0.159079,0.311448,0.914892,0.46459,0.319202,0.685582,0.0290135,0.107764,0.17078,0.449616,0.181096,0.689319,0.307853,0.248803,0.544526,0.660387,0.742795,0.712619,0.142902,0.0684913,0.244204,0.786532,0.638498,0.584564,0.0271776,0.0430076,0.746543,0.350956,0.48986,0.754596,0.36411,0.79704,0.0654732,0.567415,0.581111,0.561963,0.0273212,0.347471,0.414009,0.333824,0.913546,0.704855,0.226422,0.423217,0.743283,0.251547,0.333754,0.654636,0.982737,0.887497,0.284964,0.545276,0.327514,0.351206,0.820686,0.389311,0.858247,0.890042,0.0970097,0.580334,0.646013,0.459854,0.366837,0.325744,0.125355,0.00572646,0.134365,0.444495,0.574084,0.414566,0.460359,0.487228,0.791373,0.589492,0.0502638,0.0181032,0.288496,0.975007,0.92393,0.185312,0.214873,0.0438338,0.597949,0.571459,0.7422,0.526272,0.76266,0.599075,0.176859,0.03881,0.67913,0.164876,0.327547,0.992588,0.959278,0.329759,0.868603,0.504697,0.548389,0.0863593,0.278016,0.528938,0.213164,0.598504,0.833131,0.181342,0.725861,0.785597,0.0347154,0.690962,0.675251,0.563757,0.935382,0.927674,0.638296,0.995218,0.0366307,0.174811,0.0549217,0.388932,0.415369,0.0196048,0.785089,0.0160687,0.913812,0.84139,0.0506763,0.102963,0.153973,0.445964,0.757691,0.534722,0.406854,0.289379,0.996144,0.798915,0.972835,0.202346,0.490777,0.744454,0.556394,0.764333,0.765899,0.422888,0.00228477,0.359943,0.326613,0.201986,0.683778,0.0318418,0.865636,0.823026,0.623911,0.164863,0.328777,0.237693,0.281127,0.770407,0.417439,0.0829504,0.478697,0.644914,0.939932,0.3952,0.642693,0.576312,0.901303,0.720996,0.140055,0.22815,0.750076,0.0842428,0.394358,0.931497,0.994126,0.483291,0.0669197,0.214158,0.399226,0.937545,0.71851,0.929638,0.340117,0.666003,0.268133,0.897585,0.0228169,0.160453,0.835837,0.77242,0.711009,0.577871,0.0541542,0.20762,0.790473,0.0317109,0.523515,0.25736,0.398413,0.264459,0.650706,0.688003,0.460872,0.170654,0.283517,0.132381,0.498572,0.48948,0.114967,0.262285,0.0789205,0.366977,0.580692,0.221821,0.0244548,0.585889,0.117941,0.960574,0.28356,0.930793,0.765531,0.636524,0.586132,0.273893,0.932125,0.478926,0.170501,0.567726,0.278917,0.00852901,0.491217,0.102017,0.501885,0.494854,0.504768,0.348773,0.288827,0.33929,0.267695,0.213672,0.283586,0.201591,0.178808,0.727839,0.258661,0.70729,0.4143,0.431242,0.0330409,0.115065,0.481095,0.798132,0.754416,0.027178,|0.956864,0.866246,0.573468,0.839474,0.969018,0.957431,0.993544,0.467838,0.649724,0.271234,0.738801,0.384049,0.336779,0.300032,0.361627,0.0547432,0.0901316,0.169458,0.151318,0.197265,0.976105,0.679274,0.330118,0.758791,0.501301,0.326304,0.95104,0.628601,0.226658,0.673878,0.387206,0.963933,0.480635,0.238316,0.108235,0.808802,0.460981,0.13546,0.026503,0.900937,0.779118,0.456544,0.51859,0.416418,0.173999,0.354767,0.837464,0.154916,0.910588,0.0884557,0.346784,0.934036,0.368891,0.630545,0.393447,0.930059,0.0429406,0.81803,0.807233,0.185378,0.085937,0.798803,0.262181,0.896138,0.857469,0.379668,0.76333,0.646782,0.616668,0.0989144,0.994317,0.603129,0.240925,0.952329,0.183722,0.577806,0.611523,0.694789,0.0759983,0.90462,0.0945589,0.927504,0.223398,0.618516,0.555832,0.73577,0.813371,0.164373,0.721817,0.156347,0.481182,0.5778,0.432427,0.334988,0.104813,0.750004,0.855021,0.76295,0.328392,0.384541,0.0716477,0.00606799,0.0820227,0.893417,0.399722,0.479323,0.346284,0.154746,0.814945,0.742693,0.719503,0.313926,0.894066,0.0635688,0.39897,0.873336,0.569886,0.501028,0.669058,0.391306,0.594589,0.991918,0.227275,0.227857,0.778553,0.676376,0.828256,0.705111,0.813667,0.399565,0.485562,0.87313,0.121253,0.477064,0.945908,0.476732,0.118994,0.44125,0.416677,0.838146,0.545522,0.203621,0.702062,0.196184,0.594391,0.508425,0.822822,0.187105,0.799161,0.536205,0.620252,0.581808,0.341183,0.485543,0.447793,0.350231,0.285654,0.225772,0.630086,0.982324,0.819622,0.516867,0.0697254,0.118833,0.146884,0.381426,0.852065,0.584328,0.837878,0.516057,0.65536,0.931858,0.181957,0.437237,0.945911,0.803272,0.792967,0.357091,0.317786,0.712523,0.511055,0.0320778,0.910811,0.678512,0.598608,0.0684416,0.107338,0.0394821,0.881404,0.517703,0.0683646,0.819447,0.24396,0.311413,0.274706,0.777859,0.282844,0.957132,0.340617,0.645314,0.958071,0.067256,0.69587,0.726538,0.154836,0.253123,0.114538,0.919585,0.842363,0.197026,0.493264,0.357681,0.107116,0.622271,0.700258,0.28525,0.444561,0.286885,0.151555,0.35398,0.0485684,0.329864,0.211596,0.324464,0.00695795,0.495089,0.361741,0.707635,0.464308,0.461134,0.0409185,0.660622,0.548999,0.769444,0.326084,0.714848,0.0217578,0.572628,0.411882,0.923603,0.837522,0.145009,0.852737,0.103496,0.260255,0.590873,0.622769,0.715041,0.974741,0.656599,0.858307,0.886745,0.0884387,0.494948,0.00986326,0.41514,0.428392,0.345198,0.202545,0.942697,0.49648,0.277031,0.151416,0.5271,0.957468,0.0414747,0.937947,0.951612,0.359765,0.178979,0.382969,0.609981,0.365882,0.269043,0.271496,0.398172,0.939571,0.417291,0.50688,0.770959,0.738291,0.377221,0.232028,0.953233,0.646286,0.681292,0.255041,0.4241,0.331408,0.684293,0.509159,0.434941,0.974394,0.956976,0.119527,0.25876,0.111058,0.29157,0.0218718,0.809995,0.673114,0.261011,0.404419,0.87144,0.411439,0.954421,0.185759,0.897525,0.988115,0.236653,0.468815,0.281661,0.706059,0.22224,0.243641,0.847617,0.100574,0.266262,0.932921,0.630252,0.744073,0.959767,0.495604,0.475392,0.917841,0.0242201,0.969951,0.128302,0.0186989,0.227381,0.282469,0.112063,0.0865695,0.803471,0.376776,0.789764,0.693597,0.120115,0.655935,0.258218,0.735978,0.268205,0.162069,0.595413,0.952543,0.59396,0.417703,0.435749,0.505719,0.244496,0.0524608,0.935124,0.255267,0.166432,0.597863,0.117692,0.501075,0.483951,0.955486,0.896368,0.0304132,0.719085,0.115508,0.296095,0.0650769,0.214236,0.937619,0.506492,0.885281,0.0371702,0.634992,0.788015,0.0409661,0.820127,0.676804,0.916947,0.346404,0.566111,0.532793,0.893564,0.53426,0.5223,0.360385,0.285582,0.465981,0.370344,0.609241,0.986116,0.471937,0.588108,0.129914,0.127108,0.688918,0.632465,0.405974,0.700608,0.135092,0.729428,0.0413996,0.203488,0.495403,0.577808,0.192412,0.222359,0.585487,0.220479,0.96148,0.252957,0.919362,0.307894,0.222891,0.703696,0.326223,0.714248,0.17593,0.782235,0.939951,0.327944,0.588447,0.507888,0.685419,0.0966406,0.157542,0.0730078,0.15064,0.957404,0.687424,0.68461,0.534527,0.0421571,0.0306615,0.452329,0.572393,0.305181,0.443746,0.437917,0.138528,0.466381,0.882046,0.0664957,0.485072,0.78188,0.868792,0.77619,0.207918,0.956476,0.439439,0.731849,0.432671,0.318725,0.51851,0.10625,0.407988,0.569587,0.125277,0.492853,0.0122219,0.0897179,0.845562,0.241281,0.282931,0.987615,0.715728,0.508748,0.687827,0.420609,0.237484,0.27939,0.455555,0.801339,0.95035,0.0642507,0.614284,0.292959,0.869882,0.494659,0.857925,0.122844,0.607328,0.119553,0.0994186,0.51938,0.472087,0.362407,0.280934,0.716717,0.174195,0.0537995,0.724771,0.775373,0.527092,0.109209,0.668315,0.106188,0.0946656,0.194313,0.363731,0.955707,0.679573,0.549839,0.341332,0.0678284,0.124844,0.585719,0.763305,0.196309,0.645481,0.908083,0.246577,0.118445,0.565452,0.110777,0.701771,0.540112,0.322803,0.779959,0.110459,0.647479,0.0759585,0.228298,0.827887,0.9038,0.732266,0.443324,0.332008,0.38502,0.0329497,0.233238,0.762392,0.890167,0.231921,0.706902,0.900587,0.72618,0.585288,0.479894,0.965296,0.717988,0.813683,0.749357,0.62761,0.659464,0.575258,0.281144,0.365423,0.0553321,0.211062,0.588041,0.157419,0.371376,0.677826,0.148376,0.396332,0.250347,0.208395,0.804544,0.535681,0.429476,0.588059,0.897023,0.0560911,0.232738,0.730386,0.912002,0.117187,0.413458,0.999646,0.685589,0.450638,0.305633,0.988784,0.859329,0.320541,0.0455464,0.487862,0.178129,0.188769,0.631047,0.872398,0.282181,0.361045,0.55601,0.10605,0.919458,0.281687,0.241743,0.157636,0.447529,0.37879,0.0116545,0.995735,0.294162,0.106605,0.645575,0.879085,0.398647,0.00699073,0.612714,0.553515,0.359395,0.643352,0.193555,0.480383,0.29617,0.742844,0.428915,0.966694,0.189352,0.972143,0.702278,0.460182,0.992074,0.463001,0.518269,0.992018,0.124623,0.225773,0.945505,0.0861802,0.484941,0.616203,0.0276737,0.626062,0.179855,0.928571,0.928018,0.289035,0.633689,0.982845,0.746878,0.10407,0.335886,0.357328,0.958368,0.257839,0.8411,0.226755,0.967814,0.707715,0.00856245,0.5902,0.146142,0.959415,0.293628,0.565065,0.630219,0.579463,0.3103,0.117402,0.607493,0.470798,0.734398,0.104806,0.433983,0.295632,0.749743,0.195633,0.815259,0.412337,0.0180106,0.181869,0.652103,0.275747,0.0231306,0.690099,0.431437,0.77839,0.642431,0.248254,0.382796,0.876388,0.91236,0.699911,0.780892,0.995858,0.840842,0.223378,0.491474,0.851589,0.301008,0.25304,0.470534,0.250947,0.86719,0.189634,0.676775,0.812822,0.189085,0.514643,0.203356,0.935651,0.286831,0.498044,0.472952,0.893741,0.947259,0.683703,0.445967,0.831368,0.589434,0.68199,0.940592,0.0963947,0.654872,0.304967,0.0552931,0.587063,0.434868,0.237584,0.56933,0.298568,0.349521,0.138733,0.160381,0.757672,0.193391,0.846912,0.956536,0.661574,0.616064,0.346066,0.523439,0.932761,0.376608,0.885236,0.397924,0.266662,0.499266,0.895586,0.77285,0.824548,0.343024,0.329328,0.880383,0.148215,0.547122,0.909255,0.663069,0.407843,0.537556,0.126539,0.678865,0.698499,0.521634,0.0591887,0.270032,0.18316,0.382398,0.266313,0.317782,0.850005,0.622072,0.234075,0.329177,0.416184,0.78674,0.708648,0.797127,0.69799,0.0712774,0.556402,0.0712319,0.321988,0.148068,0.816183,0.972435,0.263102,0.10749,0.962098,0.0844824,0.832426,0.356705,0.223175,0.538284,0.19092,0.0950817,0.298518,0.467176,0.932566,0.889162,0.606711,0.619288,0.915106,0.0460411,0.973015,0.806785,0.277685,0.726176,0.348196,0.486134,0.727215,0.205124,0.924831,0.59534,0.580188,0.933488,0.0280887,0.329201,0.438204,0.441123,0.042703,0.450264,0.709121,0.879516,0.65632,0.625245,0.686126,0.880587,0.213172,0.551927,0.921586,0.577189,0.706614,0.276034,0.800787,0.942169,0.660104,0.164242,0.248763,0.614615,0.505961,0.0949387,0.62645,0.0977578,0.568288,0.947645,0.651381,0.14737,0.275784,0.396412,0.436595,0.196698,0.99185,0.985183,0.00639117,0.353002,0.888397,0.0681406,0.217121,0.490805,0.111324,0.72887,0.322839,0.7929,0.985972,0.740272,0.315605,0.142377,0.888572,0.778556,0.46356,0.988427,0.503081,0.733676,0.248624,0.629535,0.924274,0.111475,0.562367,0.418389,0.0566335,0.317477,0.730233,0.450141,0.448294,0.578802,0.801659,0.968575,0.910614,0.448742,0.808092,0.379696,0.0574741,0.815095,0.385945,0.647384,0.152835,0.39659,0.840583,0.724247,0.525979,0.841694,0.274556,0.895367,0.287873,0.316267,0.76333,0.521167,0.782011,0.571832,0.465828,0.868444,0.620105,0.585366,0.57926,0.695977,0.482392,0.428708,0.772169,0.940688,0.968965,0.495284,0.0477828,0.267087,0.163985,0.759436,0.390444,0.0194833,0.694928,0.718137,0.707408,0.60857,0.628538,0.563384,0.76027,0.402905,0.446826,0.449253,0.056468,0.149125,0.125084,0.0912517,0.879831,0.987695,0.769622,0.141835,0.0934491,0.294429,0.918969,0.815529,0.841026,0.251994,0.339832,0.776018,0.169896,0.0565634,0.83127,0.00207818,0.912313,0.41911,0.772335,0.0858684,0.0777826,0.491606,0.898422,0.720389,0.319689,0.486296,0.692438,0.614367,0.298963,0.981882,0.11437,0.938412,0.975038,0.768052,0.340938,0.160479,0.231373,0.556687,0.643336,0.774521,0.603105,0.648373,0.0769239,0.0143704,0.900635,0.993428,0.504819,0.0275695,0.151786,0.693378,0.432556,0.0761662,0.0819936,0.491414,0.493949,0.314306,0.647142,0.0949762,0.387627,0.99703,0.223677,0.886683,0.409941,0.836483,0.70926,0.572507,0.00429624,0.461596,0.582801,0.772372,0.147315,0.61535,0.54697,0.180472,0.634063,0.027009,0.0926183,0.347052,|0.205325,0.615325,0.157295,0.996906,0.622505,0.372461,0.0124913,0.777895,0.187008,0.142775,0.12277,0.866219,0.396057,0.89797,0.166027,0.0381618,0.352577,0.786161,0.446606,0.639443,0.11006,0.400169,0.702455,0.185283,0.285175,0.57002,0.108122,0.464896,0.324068,0.258314,0.561628,0.0583532,0.518921,0.854448,0.549584,0.965892,0.78459,0.889395,0.0168999,0.0564454,0.476565,0.647348,0.195426,0.744342,0.523641,0.114647,0.36254,0.401745,0.814013,0.116839,0.593467,0.00336003,0.0817546,0.654302,0.534361,0.18851,0.671371,0.524811,0.79857,0.374077,0.371303,0.985333,0.734763,0.448672,0.980291,0.10895,0.928243,0.274705,0.397592,0.879878,0.794802,0.533374,0.198758,0.285883,0.961371,0.0403751,0.26767,0.414185,0.0277077,0.465907,0.983278,0.821697,0.918238,0.105258,0.379253,0.981963,0.759542,0.972947,0.530048,0.38774,0.486835,0.814229,0.70422,0.860951,0.764906,0.526418,0.614412,0.119933,0.921449,0.86417,0.654573,0.272396,0.60626,0.292696,0.819069,0.204653,0.796949,0.389831,0.51812,0.248217,0.311879,0.173851,0.443672,0.156106,0.616872,0.992662,0.299638,0.0694541,0.978004,0.24747,0.38062,0.437102,0.0102794,0.515995,0.925032,0.523673,0.877473,0.780905,0.575276,0.786736,0.747838,0.20246,0.323609,0.294452,0.126773,0.632315,0.102272,0.332633,0.00584465,0.12652,0.212133,0.228945,0.21202,0.861532,0.675138,0.388277,0.508007,0.987655,0.189393,0.161892,0.887405,0.00503075,0.061058,0.807316,0.834723,0.0016377,0.299474,0.579208,0.942442,0.939699,0.66971,0.179033,0.690657,0.689519,0.688002,0.74985,0.664878,0.36491,0.867091,0.575659,0.548589,0.0277703,0.298995,0.841946,0.531528,0.744819,0.317848,0.574044,0.382189,0.994439,0.613894,0.55497,0.319806,0.217161,0.60127,0.353543,0.428018,0.800296,0.128744,0.127909,0.36499,0.166029,0.803702,0.286609,0.0902884,0.921376,0.0350484,0.0104384,0.098573,0.272398,0.76779,0.416714,0.31294,0.326907,0.234438,0.0526207,0.284001,0.820116,0.680069,0.278201,0.183846,0.371213,0.95218,0.695453,0.35592,0.660098,0.565092,0.301957,0.371561,0.142596,0.331936,0.479255,0.281718,0.0035755,0.219995,0.352184,0.36915,0.630082,0.983258,0.858443,0.35925,0.897195,0.171251,0.765035,0.527931,0.238295,0.94144,0.0479859,0.112546,0.531671,0.231394,0.122618,0.439758,0.606717,0.398656,0.634559,0.655814,0.314223,0.163945,0.0422002,0.12929,0.912353,0.428156,0.666693,0.446565,0.423613,0.501802,0.200724,0.557755,0.628407,0.919049,0.0705668,0.550942,0.193144,0.225465,0.0392901,0.602633,0.62773,0.516132,0.981331,0.163509,0.321163,0.56767,0.191171,0.984568,0.632346,0.535465,0.28859,0.119142,0.121505,0.927394,0.871618,0.765498,0.71163,0.870126,0.993497,0.0499998,0.278803,0.37477,0.293174,0.595715,0.433625,0.510282,0.950077,0.274611,0.73017,0.375267,0.755892,0.0829685,0.886026,0.371382,0.304291,0.278987,0.906709,0.570135,0.399469,0.651115,0.933464,0.540057,0.725261,0.954159,0.190573,0.0762478,0.525271,0.841189,0.94637,0.370706,0.767544,0.618095,0.125981,0.271305,0.0328867,0.433431,0.273449,0.128369,0.376482,0.169512,0.859777,0.557261,0.873419,0.643742,0.325381,0.912997,0.217658,0.852761,0.324123,0.575422,0.921374,0.609822,0.259627,0.866578,0.663668,0.900298,0.244593,0.578731,0.473747,0.258369,0.594962,0.497112,0.63864,0.406715,0.654562,0.696727,0.68486,0.664108,0.658407,0.556141,0.679559,0.529955,0.523428,0.0812364,0.606638,0.142601,0.321958,0.705946,0.951284,0.164312,0.325547,0.574177,0.149548,0.618183,0.726393,0.575724,0.357496,0.0880898,0.726605,0.829907,0.428792,0.961486,0.501105,0.669179,0.371616,0.300717,0.812281,0.928694,0.623586,0.893387,0.287786,0.439223,0.221885,0.254448,0.930335,0.113516,0.154588,0.0829627,0.274763,0.79975,0.481669,0.0146414,0.392193,0.972905,0.622374,0.750785,0.231217,0.523302,0.955342,0.922998,0.859645,0.34979,0.455561,0.457153,0.25895,0.877752,0.975792,0.0844037,0.391138,0.299248,0.174682,0.513834,0.938867,0.984212,0.634528,0.0222999,0.462879,0.63523,0.71678,0.0662518,0.370384,0.344835,0.674981,0.191231,0.990699,0.474122,0.718288,0.446298,0.967995,0.657884,0.636405,0.558721,0.0115696,0.188323,0.798197,0.165776,0.213875,0.610826,0.00936031,0.953021,0.284611,0.12398,0.0581004,0.351966,0.786515,0.341073,0.161603,0.322441,0.70007,0.756757,0.679379,0.562173,0.314043,0.920965,0.685946,0.25748,0.176056,0.497147,0.0113212,0.165823,0.586607,0.991194,0.700269,0.818408,0.6972,0.768979,0.895663,0.335094,0.221043,0.000597537,0.649267,0.971216,0.425423,0.186989,0.191251,0.441842,0.0152957,0.0649123,0.632658,0.0913463,0.853571,0.251965,0.145695,0.618419,0.513908,0.289361,0.479628,0.0555184,0.249603,0.20157,0.718962,0.706999,0.993129,0.593052,0.717358,0.128151,0.390965,0.00406563,0.977532,0.286821,0.803634,0.94931,0.212358,0.313053,0.320823,0.542097,0.566294,0.695734,0.984338,0.450077,0.542562,0.308733,0.85392,0.323075,0.963813,0.724016,0.202179,0.611845,0.350266,0.873958,0.807111,0.0102825,0.682778,0.524509,0.433672,0.920887,0.124573,0.489701,0.360939,0.134646,0.00275683,0.389742,0.803098,0.848132,0.550782,0.847185,0.789865,0.647353,0.39275,0.810474,0.59818,0.781979,0.904076,0.627942,0.433938,0.274194,0.76303,0.494595,0.439054,0.54119,0.924203,0.806298,0.53435,0.374841,0.388805,0.348378,0.760758,0.676392,0.5038,0.710952,0.33294,0.377594,0.626248,0.953227,0.482775,0.322998,0.718577,0.48407,0.35611,0.23328,0.640133,0.42955,0.405417,0.045038,0.043973,0.255045,0.613798,0.422477,0.335472,0.387632,0.769309,0.78741,0.548968,0.918119,0.993753,0.0217125,0.276154,0.870598,0.632048,0.722122,0.940255,0.640818,0.943194,0.578694,0.915716,0.628284,0.277596,0.597697,0.114095,0.267717,0.606455,0.968101,0.922878,0.322194,0.747968,0.360405,0.935834,0.853508,0.523519,0.455244,0.143047,0.01237,0.585619,0.33972,0.307658,0.799044,0.440277,0.923782,0.264185,0.00302088,0.00779349,0.704122,0.276754,0.775032,0.0570026,0.130543,0.487438,0.303276,0.630933,0.767395,0.748119,0.0183609,0.764963,0.625992,0.763762,0.892119,0.717444,0.443228,0.655772,0.348474,0.0388513,0.324393,0.76932,0.674585,0.252732,0.464464,0.201495,0.868076,0.827564,0.465402,0.389351,0.818325,0.080006,0.977662,0.624435,0.108069,0.509053,0.708264,0.252876,0.24921,0.965915,0.602189,0.37239,0.0427015,0.0352331,0.304004,0.428997,0.539955,0.693863,0.784204,0.571006,0.2822,0.700492,0.618464,0.277861,0.614515,0.40947,0.306018,0.751676,0.465029,0.931633,0.960529,0.924902,0.954176,0.970879,0.747701,0.86009,0.253208,0.256784,0.191786,0.888237,0.370201,0.601569,0.154197,0.711121,0.635018,0.632644,0.212701,0.0190735,0.7069,0.467555,0.738264,0.788547,0.943799,0.554018,0.0082944,0.883986,0.036574,0.786269,0.428626,0.239002,0.607215,0.365085,0.260469,0.494042,0.882955,0.520894,0.441807,0.561525,0.143758,0.0572996,0.248151,0.673315,0.950275,0.298684,0.321939,0.512746,0.688472,0.507561,0.270437,0.0792893,0.124267,0.276182,0.555978,0.800615,0.340493,0.555878,0.563196,0.95011,0.599017,0.244479,0.0303852,0.609556,0.779771,0.427949,0.868357,0.385273,0.995504,0.981197,0.172565,0.0596838,0.220065,0.692381,0.527901,0.167141,0.291834,0.642623,0.699562,0.0169479,0.244122,0.674608,0.420506,0.167996,0.863252,0.367118,0.963344,0.408307,0.999587,0.740692,0.32555,0.199647,0.447293,0.78829,0.959453,0.661971,0.222586,0.89509,0.547228,0.864288,0.955922,0.672677,0.440446,0.505143,0.64393,0.887436,0.183751,0.0898399,0.894846,0.0775672,0.318702,0.879071,0.52168,0.94315,0.102228,0.73359,0.43605,0.40596,0.957472,0.989785,0.156871,0.908178,0.993658,0.524985,0.951273,0.243082,0.501599,0.52546,0.94826,0.208801,0.949717,0.101292,0.791909,0.932197,0.674834,0.251783,0.350831,0.469611,0.41587,0.354563,0.821538,0.279521,0.429172,0.882479,0.21743,0.517667,0.144311,0.984485,0.237296,0.122753,0.828864,0.366713,0.0274758,0.619999,0.0742502,0.999914,0.735914,0.841605,0.0688112,0.960109,0.688519,0.301915,0.921764,0.839392,0.118344,0.93237,0.554183,0.281398,0.552327,0.00353223,0.719804,0.63582,0.807844,0.510205,0.226188,0.865448,0.503054,0.418369,0.151589,0.00687903,0.927971,0.802949,0.700612,0.282033,0.10623,0.420397,0.587217,0.639391,0.564472,0.658529,0.957891,0.842431,0.765424,0.221703,0.00320178,0.370381,0.712832,0.599845,0.455829,0.380871,0.466127,0.329822,0.400998,0.752693,0.661793,0.662117,0.778951,0.619443,0.640817,0.205706,0.826805,0.730712,0.547761,0.981441,0.976243,0.854683,0.636749,0.549772,0.457968,0.483711,0.627748,0.742386,0.242474,0.78791,0.604642,0.554089,0.307433,0.465011,0.792099,0.157763,0.0200781,0.419556,0.079502,0.545896,0.934471,0.547787,0.694205,0.201866,0.0479205,0.270475,0.16403,0.681069,0.910737,0.816665,0.307292,0.455416,0.831425,0.507811,0.116611,0.820253,0.67215,0.355319,0.226133,0.888116,0.621689,0.403612,0.603038,0.873097,0.66094,0.168225,0.0199541,0.155475,0.904197,0.0386863,0.0677704,0.607421,0.0923407,0.857442,0.506429,0.178952,0.800289,0.177911,0.888439,0.0485763,0.325797,0.972799,0.486007,0.606739,0.804922,0.266479,0.875435,0.083732,0.230814,0.831464,0.13863,0.699248,0.208262,0.0991474,0.66561,0.686214,0.701508,0.950426,0.122765,0.0151814,0.322528,0.306635,0.905679,0.849866,0.259042,0.117898,0.798877,0.0674794,0.288868,0.973281,0.613719,0.500228,0.127663,0.578446,0.387794,0.29198,0.656719,0.0922595,0.868576,0.112381,|0.777516,0.472796,0.167063,0.517793,0.433614,0.477469,0.621265,0.989262,0.180764,0.104905,0.868887,0.896797,0.593818,0.999536,0.0590839,0.904977,0.222464,0.112213,0.374823,0.95603,0.784409,0.00486332,0.746748,0.64909,0.888794,0.0981241,0.0439238,0.0278991,0.0625358,0.33369,0.655629,0.260838,0.488618,0.493518,0.62001,0.00223356,0.271531,0.977376,0.298303,0.0487349,0.692902,0.844439,0.803584,0.524134,0.0542629,0.488296,0.924836,0.706953,0.0520456,0.434419,0.667915,0.952691,0.71143,0.579424,0.70395,0.764785,0.800839,0.555311,0.4803,0.736675,0.270604,0.971534,0.358517,0.191101,0.251839,0.506848,0.9355,0.753857,0.921681,0.198373,0.669211,0.14314,0.725065,0.24502,0.0943871,0.954034,0.673354,0.824116,0.311693,0.416089,0.257583,0.976876,0.211282,0.288526,0.170034,0.968756,0.13319,0.221102,0.538015,0.973521,0.118604,0.844423,0.611867,0.550632,0.0743601,0.117247,0.455403,0.795605,0.831448,0.332888,0.529373,0.989689,0.418276,0.514738,0.400673,0.58044,0.574602,0.258931,0.983593,0.875728,0.475973,0.440071,0.361037,0.358006,0.793769,0.191597,0.681327,0.789236,0.286393,0.20786,0.752168,0.318093,0.691652,0.196717,0.767071,0.848358,0.182721,0.181697,0.0140674,0.913494,0.121787,0.534448,0.549026,0.487046,0.305737,0.33586,0.456865,0.488224,0.363799,0.103431,0.246473,0.455858,0.302371,0.156097,0.377772,0.658689,0.8776,0.896026,0.329227,0.465271,0.272879,0.347883,0.978475,0.632796,0.57452,0.569584,0.341958,0.154335,0.38012,0.913754,0.94951,0.706675,0.233683,0.0612949,0.695019,0.382617,0.707959,0.185583,0.733292,0.734575,0.355654,0.882279,0.224039,0.343518,0.0783449,0.883644,0.965282,0.5452,0.252378,0.698621,0.46228,0.0079093,0.34995,0.710146,0.989577,0.15407,0.820347,0.470531,0.754139,0.374658,0.236965,0.264418,0.28211,0.125073,0.965594,0.0734367,0.0653672,0.049055,0.416373,0.596351,0.378236,0.82064,0.96765,0.214893,0.100425,0.501758,0.418996,0.300795,0.800626,0.494747,0.850607,0.518595,0.608763,0.918982,0.837479,0.0620784,0.926631,0.0954072,0.020312,0.422953,0.895242,0.901478,0.185888,0.738768,0.356845,0.522391,0.352116,0.0581033,0.338999,0.54272,0.661327,0.0931906,0.999697,0.555361,0.395777,0.117424,0.0849802,0.993921,0.314198,0.143227,0.94575,0.151471,0.532705,0.801415,0.836623,0.474852,0.332201,0.158868,0.433444,0.776609,0.226898,0.574846,0.0418479,0.34959,0.157509,0.757797,0.980452,0.77039,0.326668,0.206224,0.591832,0.367979,0.975995,0.753621,0.898811,0.602545,0.493756,0.00867277,0.398619,0.0599115,0.851452,0.428243,0.317516,0.231019,0.168548,0.719048,0.632586,0.617019,0.429248,0.766273,0.0229225,0.233748,0.239558,0.734064,0.466268,0.344941,0.294574,0.199347,0.856213,0.747185,0.252319,0.20687,0.237797,0.771847,0.105517,0.453003,0.677899,0.716941,0.968221,0.720779,0.90591,0.165644,0.342417,0.241705,0.557374,0.978938,0.676449,0.961124,0.51296,0.530713,0.686537,0.634601,0.864745,0.9944,0.463973,0.920148,0.0803486,0.185811,0.926615,0.306239,0.0299097,0.927934,0.0486236,0.234194,0.755347,0.1627,0.271955,0.897729,0.829548,0.772565,0.519883,0.612266,0.455548,0.0852664,0.336956,0.878127,0.498065,0.287047,0.056771,0.203762,0.204624,0.198195,0.980697,0.644051,0.0488479,0.177382,0.23111,0.515175,0.938509,0.0726754,0.276828,0.812217,0.195586,0.822635,0.406614,0.781932,0.420556,0.211204,0.611538,0.530901,0.316964,0.844801,0.133839,0.554106,0.233749,0.894256,0.753877,0.841838,0.206078,0.263424,0.0354765,0.28014,0.435487,0.0256829,0.631679,0.250695,0.289436,0.39325,0.77231,0.950137,0.931069,0.497886,0.66267,0.722585,0.735297,0.501542,0.711881,0.813572,0.492173,0.17592,0.294846,0.328336,0.285415,0.622096,0.355208,0.28578,0.947721,0.318106,0.714159,0.998462,0.676933,0.795305,0.897421,0.154264,0.977301,0.175877,0.0907328,0.878289,0.0142496,0.819584,0.363835,0.476978,0.186115,0.185626,0.611752,0.96052,0.300515,0.709927,0.943643,0.670034,0.978068,0.858946,0.0445811,0.0616832,0.348054,0.36899,0.175955,0.245645,0.731801,0.872771,0.581659,0.518429,0.639819,0.985683,0.671131,0.727422,0.11006,0.35952,0.346932,0.975517,0.549897,0.223265,0.181873,0.906054,0.649001,0.244368,0.113591,0.939742,0.853853,0.544977,0.454683,0.200646,0.473161,0.650769,0.565238,0.782025,0.70517,0.151519,0.384186,0.309884,0.669655,0.586377,0.0372761,0.349905,0.262441,0.616646,0.671175,0.424404,0.0445963,0.662586,0.460951,0.869988,0.398902,0.290348,0.530582,0.698536,0.912502,0.564536,0.548763,0.936687,0.370571,0.326603,0.977072,0.957107,0.00371957,0.748553,0.0676196,0.656437,0.107492,0.544951,0.932306,0.389914,0.541102,0.466434,0.545857,0.74434,0.539553,0.855823,0.14891,0.950291,0.862609,0.840657,0.841019,0.133856,0.560254,0.236021,0.381968,0.979906,0.902996,0.984647,0.751322,0.544873,0.0514681,0.984552,0.171751,0.201781,0.479481,0.402143,0.172876,0.252032,0.750406,0.763218,0.687614,0.0647827,0.949267,0.794587,0.704902,0.697287,0.556664,0.045265,0.791961,0.200351,0.58065,0.568766,0.42915,0.657321,0.736847,0.191887,0.902022,0.315514,0.453674,0.250387,0.253738,0.75466,0.0606676,0.639321,0.616182,0.359598,0.778822,0.0709837,0.580195,0.0222597,0.672233,0.680947,0.649772,0.946337,0.332778,0.187182,0.25358,0.44851,0.100817,0.684717,0.469508,0.342977,0.689427,0.600522,0.829121,0.00304395,0.738795,0.179907,0.474836,0.848759,0.158484,0.703102,0.331617,0.20987,0.128644,0.246248,0.0647914,0.651271,0.734701,0.122924,0.991856,0.419869,0.877939,0.233127,0.0645953,0.380925,0.550266,0.0207348,0.390242,0.316393,0.153677,0.900572,0.986833,0.525867,0.920683,0.179952,0.182096,0.72833,0.531099,0.849477,0.801398,0.86246,0.687137,0.72933,0.171328,0.863239,0.553741,0.840827,0.0861493,0.38423,0.713877,0.942876,0.469958,0.212592,0.4714,0.666984,0.146348,0.695689,0.502737,0.320394,0.87068,0.641179,0.433735,0.859718,0.273143,0.0820667,0.594925,0.141017,0.814149,0.231074,0.739258,0.164056,0.560988,0.826635,0.360861,0.568491,0.297968,0.551474,0.546154,0.423361,0.0965635,0.322887,0.0883031,0.879936,0.854845,0.899585,0.748884,0.858558,0.68061,0.273221,0.430461,0.930516,0.0497268,0.912198,0.55788,0.0968289,0.408904,0.188606,0.962614,0.756195,0.565517,0.0471882,0.612613,0.742302,0.150968,0.237251,0.734728,0.593486,0.155448,0.653276,0.387383,0.143104,0.604968,0.999556,0.393739,0.840129,0.586832,0.941017,0.41717,0.825644,0.62321,0.194759,0.606395,0.26397,0.636006,0.458043,0.395266,0.882153,0.524579,0.0605676,0.105738,0.118542,0.384213,0.889886,0.746968,0.348583,0.378401,0.40598,0.783046,0.753234,0.377326,0.0778992,0.865229,0.678543,0.89222,0.0581412,0.362125,0.723453,0.211749,0.474148,0.486562,0.546547,0.967829,0.49179,0.773666,0.289946,0.257007,0.566919,0.0787224,0.201205,0.482311,0.363956,0.432489,0.319324,0.217316,0.434405,0.373712,0.633302,0.937683,0.640427,0.781334,0.219697,0.127137,0.681079,0.29177,0.984111,0.103635,0.158054,0.134924,0.111717,0.195272,0.849702,0.544052,0.234039,0.688048,0.760372,0.890068,0.0473135,0.426958,0.296386,0.501871,0.23962,0.462014,0.975463,0.0842703,0.0868087,0.5989,0.746246,0.493846,0.560881,0.0478385,0.604861,0.105094,0.305147,0.450804,0.110364,0.8555,0.235104,0.887155,0.76337,0.970772,0.0491554,0.303985,0.278328,0.612342,0.141491,0.956966,0.173556,0.843944,0.735008,0.635473,0.291369,0.199117,0.57626,0.645392,0.34141,0.994557,0.66121,0.788162,0.827127,0.342073,0.276102,0.711272,0.976949,0.876575,0.926453,0.0913463,0.62101,0.86644,0.863671,0.430119,0.400408,0.577101,0.20251,0.251053,0.560122,0.156488,0.264126,0.250785,0.0878257,0.665482,0.209158,0.218432,0.0160779,0.354386,0.923979,0.404896,0.895859,0.95957,0.165552,0.776223,0.170995,0.773766,0.535555,0.109862,0.931473,0.988955,0.154972,0.947625,0.0249298,0.724775,0.362555,0.568221,0.350817,0.668173,0.0874436,0.232802,0.0958147,0.627214,0.96975,0.409602,0.843986,0.612625,0.880652,0.37688,0.30261,0.433179,0.99709,0.813787,0.564595,0.363274,0.150385,0.965409,0.0356631,0.402813,0.395032,0.520809,0.119054,0.167701,0.0496569,0.884494,0.410525,0.522725,0.446209,0.542917,0.260947,0.931489,0.0727043,0.569137,0.214506,0.262048,0.0794351,0.153696,0.827843,0.963283,0.191586,0.290116,0.739852,0.156719,0.409041,0.0579842,0.760572,0.0785493,0.0238665,0.877407,0.0753123,0.525784,0.917867,0.944187,0.172351,0.88377,0.957564,0.971153,0.426015,0.602685,0.635973,0.120455,0.285502,0.441038,0.552057,0.746616,0.405281,0.557362,0.633324,0.725946,0.345635,0.772092,0.978703,0.0868006,0.647666,0.647756,0.949717,0.949327,0.48776,0.793543,0.891091,0.688585,0.20315,0.284441,0.836504,0.380967,0.0693127,0.14016,0.887829,0.932234,0.888567,0.593691,0.678062,0.0992637,0.451123,0.66039,0.296452,0.132064,0.869203,0.0643966,0.784494,0.64525,0.219287,0.905033,0.137559,0.12398,0.744165,0.569406,0.649984,0.917146,0.868329,0.64439,0.420427,0.504799,0.0300795,0.884172,0.369201,0.924861,0.0182043,0.470908,0.72394,0.426642,0.875357,0.0841352,0.198802,0.0505092,0.35939,0.692842,0.772482,0.780383,0.327545,0.985749,0.442276,0.280613,0.945104,0.606581,0.275536,0.766596,0.802682,0.244849,0.0347078,0.00101745,0.0083223,0.71723,0.0863482,0.396933,0.319908,0.788892,0.6719,0.0534656,0.185005,0.999672,0.347066,0.464293,0.0227114,0.00775349,0.160008,0.164853,0.377774,0.701231,0.486365,0.531689,0.119384,|0.786188,0.977292,0.124237,0.7779,0.346432,0.549704,0.30904,0.0586012,0.498591,0.418369,0.601876,0.598234,0.222683,0.388571,0.28056,0.161247,0.294479,0.288545,0.711722,0.584647,0.139292,0.980811,0.317002,0.81076,0.470319,0.289548,0.24396,0.168434,0.609242,0.228187,0.333313,0.544459,0.975276,0.467893,0.0631204,0.999571,0.324277,0.48905,0.783051,0.795636,0.00119531,0.156301,0.828539,0.941507,0.101431,0.987173,0.482731,0.814119,0.510146,0.791559,0.915988,0.306629,0.907447,0.918207,0.94324,0.566188,0.842164,0.363097,0.0696799,0.111675,0.337871,0.672897,0.555966,0.0764502,0.766824,0.281743,0.853304,0.505049,0.0966224,0.708033,0.10123,0.196931,0.43782,0.762724,0.276119,0.128984,0.134149,0.587425,0.842889,0.00898713,0.68021,0.764619,0.318008,0.0596954,0.585081,0.76061,0.173223,0.659464,0.98483,0.136327,0.527963,0.542692,0.30492,0.192734,0.34653,0.964135,0.28573,0.192113,0.848901,0.613952,0.248086,0.305027,0.0242159,0.294633,0.452205,0.148573,0.897227,0.580182,0.833543,0.441164,0.394173,0.471807,0.901727,0.111842,0.115074,0.289523,0.584786,0.469416,0.899787,0.51247,0.679534,0.504399,0.341978,0.401271,0.85745,0.0965494,0.461182,0.223174,0.714088,0.831245,0.0342654,0.170836,0.428252,0.439543,0.0110388,0.545172,0.102445,0.273869,0.54805,0.258568,0.604474,0.0283668,0.594514,0.307074,0.446485,0.333504,0.496757,0.466321,0.271869,0.0255658,0.634423,0.977309,0.813116,0.54972,0.0458417,0.141227,0.88928,0.82404,0.640289,0.475474,0.463734,0.42331,0.174621,0.59276,0.206566,0.424975,0.13467,0.837757,0.271143,0.66597,0.298178,0.670372,0.528659,0.0516025,0.442382,0.0540889,0.417284,0.211404,0.418221,0.767242,0.747024,0.916156,0.56329,0.33067,0.43221,0.660003,0.472389,0.644704,0.509982,0.132554,0.0653663,0.010755,0.201342,0.21275,0.0355133,0.364419,0.0992982,0.844363,0.43002,0.468321,0.214879,0.181227,0.577657,0.519659,0.679961,0.391404,0.423398,0.0995904,0.354843,0.862288,0.145719,0.27291,0.734913,0.387001,0.128919,0.573211,0.0275243,0.918327,0.0591258,0.988171,0.538223,0.813905,0.331266,0.244576,0.313062,0.217245,0.0845941,0.358907,0.0440211,0.993234,0.883453,0.128973,0.0527235,0.0223253,0.222968,0.0974717,0.670487,0.0422369,0.312194,0.712705,0.152101,0.749851,0.669596,0.418783,0.127081,0.192966,0.230187,0.289905,0.894021,0.418994,0.331537,0.0459343,0.365471,0.154944,0.724197,0.957484,0.27145,0.704704,0.999549,0.538689,0.340874,0.0636976,0.672959,0.778111,0.438038,0.341945,0.279816,0.133258,0.0175116,0.258021,0.582114,0.103139,0.67037,0.405779,0.870237,0.697615,0.333123,0.0637665,0.227004,0.637288,0.632688,0.919091,0.982816,0.938817,0.359416,0.459238,0.263183,0.518013,0.716461,0.817445,0.647615,0.741451,0.722722,0.56202,0.367292,0.238873,0.744201,0.25226,0.679405,0.230618,0.0763828,0.826459,0.0512988,0.0154964,0.452576,0.486476,0.383769,0.415097,0.110245,0.228341,0.714616,0.620754,0.503754,0.344226,0.825471,0.554839,0.714843,0.526487,0.0365933,0.495248,0.671303,0.220486,0.212415,0.17279,0.620809,0.264275,0.769299,0.975531,0.630515,0.745719,0.886368,0.732746,0.423981,0.893982,0.293785,0.517783,0.367356,0.562072,0.456092,0.0823553,0.827647,0.975966,0.0919809,0.449069,0.446713,0.723877,0.71671,0.0774005,0.733201,0.726879,0.159295,0.848344,0.519214,0.0320294,0.265684,0.876296,0.72484,0.235047,0.830731,0.0306912,0.161098,0.510765,0.538683,0.295397,0.1865,0.384666,0.177869,0.286261,0.987901,0.891838,0.115252,0.633728,0.791765,0.589713,0.579769,0.720535,0.676183,0.82357,0.54388,0.234428,0.575138,0.0489716,0.187833,0.564591,0.24741,0.134679,0.7671,0.619877,0.41072,0.269939,0.470924,0.588687,0.201408,0.773042,0.910866,0.252644,0.817037,0.740289,0.618852,0.889231,0.561799,0.244312,0.520861,0.37314,0.950805,0.507955,0.310189,0.50778,0.871183,0.200237,0.336944,0.835511,0.742708,0.473565,0.365295,0.897452,0.822644,0.58374,0.611248,0.790192,0.61072,0.460296,0.649139,0.526535,0.0171363,0.774553,0.479113,0.323434,0.1566,0.0123572,0.775712,0.0279975,0.92504,0.422397,0.171914,0.348531,0.965518,0.602127,0.521628,0.523371,0.466638,0.914933,0.417604,0.246257,0.305337,0.142859,0.303115,0.155691,0.134964,0.440049,0.354587,0.434886,0.835127,0.109924,0.702194,0.239629,0.163089,0.381729,0.0339124,0.0695029,0.1993,0.179018,0.988793,0.60926,0.511703,0.720452,0.916933,0.515287,0.512927,0.419783,0.784496,0.802041,0.311048,0.63127,0.936914,0.338277,0.374602,0.210465,0.176344,0.901188,0.968674,0.557963,0.710146,0.539835,0.953822,0.0897835,0.542743,0.188245,0.00679421,0.176272,0.675194,0.0938193,0.588905,0.0725909,0.361381,0.405582,0.795032,0.302186,0.915445,0.954205,0.86179,0.408615,0.570086,0.783338,0.89657,0.774358,0.24713,0.249467,0.547808,0.091024,0.0808872,0.297969,0.758206,0.947635,0.431978,0.347115,0.696732,0.304982,0.072424,0.312945,0.880139,0.381702,0.759112,0.559847,0.41959,0.976526,0.109817,0.841788,0.407376,0.185162,0.423154,0.224562,0.380142,0.275225,0.379488,0.736594,0.417502,0.387931,0.574563,0.0158786,0.970228,0.185162,0.408774,0.747983,0.192357,0.748481,0.0734223,0.310409,0.845883,0.634668,0.98693,0.825723,0.171295,0.39202,0.0509917,0.268854,0.367935,0.464603,0.938614,0.320967,0.496067,0.592871,0.422166,0.908711,0.250503,0.131529,0.970586,0.0646219,0.926705,0.520609,0.0758469,0.758491,0.624257,0.458704,0.497787,0.898879,0.160508,0.41634,0.387709,0.969448,0.915502,0.270086,0.998955,0.0430121,0.605203,0.861309,0.901592,0.32819,0.375833,0.465904,0.309159,0.668226,0.617903,0.0253944,0.315752,0.419498,0.579408,0.652423,0.0595066,0.0401258,0.366063,0.289116,0.68951,0.860058,0.882154,0.836681,0.808675,0.597358,0.730589,0.794501,0.541098,0.396346,0.643091,0.28775,0.300954,0.534005,0.713424,0.815991,0.0382604,0.500917,0.306897,0.930063,0.527085,0.267122,0.930406,0.788302,0.410245,0.414764,0.250971,0.0971501,0.943382,0.0401347,0.502942,0.660291,0.85615,0.529529,0.436234,0.807103,0.805534,0.787273,0.371309,0.898461,0.107921,0.377207,0.709372,0.83645,0.429827,0.722463,0.982181,0.224631,0.238726,0.551748,0.27209,0.749698,0.637617,0.0736082,0.864779,0.12982,0.767047,0.954531,0.82504,0.523938,0.983283,0.659325,0.606757,0.528776,0.654799,0.107377,0.929214,0.887933,0.760367,0.916001,0.468664,0.900148,0.873121,0.535968,0.388293,0.260816,0.207832,0.934539,0.399043,0.464958,0.645601,0.518366,0.859345,0.728594,0.546124,0.101744,0.332151,0.754044,0.921633,0.708547,0.811559,0.54634,0.948813,0.160708,0.255444,0.565956,0.501315,0.0748257,0.712153,0.605273,0.848091,0.900337,0.154793,0.563228,0.922523,0.45177,0.728871,0.837681,0.875163,0.321628,0.277895,0.376656,0.88507,0.454881,0.709634,0.787241,0.995703,0.746523,0.935403,0.146592,0.230575,0.396828,0.105533,0.825307,0.595622,0.531033,0.819123,0.890755,0.677293,0.281491,0.348776,0.665977,0.720208,0.776028,0.0406392,0.366976,0.905246,0.141705,0.252533,0.344221,0.169575,0.600627,0.797992,0.00666064,0.604726,0.837599,0.393574,0.324638,0.72504,0.0754737,0.927722,0.253415,0.518946,0.484914,0.58935,0.142256,0.597222,0.85044,0.449405,0.663183,0.57679,0.0461429,0.00649428,0.055768,0.257743,0.108054,0.885935,0.565488,0.433058,0.37031,0.908912,0.760183,0.285875,0.936775,0.620774,0.159885,0.367972,0.142058,0.173256,0.986026,0.542287,0.325274,0.440899,0.5692,0.622379,0.0183445,0.0441626,0.910418,0.853421,0.716721,0.193376,0.633402,0.593726,0.849764,0.526623,0.569476,0.716513,0.0434836,0.69071,0.405463,0.862012,0.866721,0.290181,0.417746,0.0398725,0.418613,0.619286,0.962469,0.641534,0.0628464,0.634698,0.950875,0.659867,0.751304,0.209732,0.802625,0.613824,0.386461,0.147998,0.899251,0.567063,0.0295459,0.439639,0.790673,0.149029,0.881513,0.990643,0.423157,0.134918,0.616908,0.295451,0.000398934,0.964826,0.131644,0.474231,0.0322018,0.678183,0.693903,0.032836,0.0662661,0.635687,0.111312,0.168167,0.940976,0.196155,0.962108,0.838795,0.488467,0.54972,0.884459,0.405213,0.96845,0.457395,0.619131,0.268038,0.635127,0.03676,0.611969,0.287403,0.10835,0.541389,0.26216,0.791467,0.211863,0.79294,0.112045,0.239064,0.919528,0.367612,0.659382,0.523804,0.399007,0.0314376,0.663413,0.426854,0.525697,0.808561,0.669427,0.832648,0.654747,0.434139,0.918344,0.961725,0.42587,0.0859018,0.947918,0.946022,0.519901,0.600227,0.274763,0.12003,0.870007,0.376707,0.461694,0.528484,0.0429493,0.17152,0.322829,0.527737,0.830886,0.0124925,0.730382,0.428229,0.217985,0.621781,0.409076,0.946743,0.535896,0.317347,0.642803,0.70094,0.183549,0.70143,0.531135,0.54523,0.101404,0.542334,0.100752,0.581444,0.891126,0.901936,0.482813,0.169371,0.739169,0.383392,0.213326,0.409745,0.744893,0.729069,0.960268,0.719856,0.991818,0.813869,0.900316,0.625327,0.215802,0.517285,0.883569,0.615583,0.152219,0.947375,0.851966,0.681227,0.239228,0.0596068,0.556814,0.270503,0.158407,0.481472,0.661633,0.977754,0.604459,0.596749,0.355176,0.147609,0.360309,0.212194,0.329297,0.769191,0.0713389,0.488424,0.22247,0.481271,0.762682,0.959742,0.948685,0.688141,0.698171,0.690417,0.524357,0.50796,0.778997,0.404289,0.511506,0.735327,0.439071,0.845311,0.325993,0.444577,0.537243,0.799105,0.533499,0.140235,0.992851,0.670833,0.220006,0.0526464,0.558336,0.482948,0.966681,0.415606,0.471695,0.351918,0.158987,0.647539,0.730762,0.132243,0.603363,|0.674708,0.776443,0.866874,0.234497,0.410984,0.044829,0.349918,0.861683,0.976331,0.68756,0.128691,0.307472,0.389639,0.288927,0.522641,0.30115,0.742891,0.909829,0.253528,0.702319,0.459168,0.189778,0.993924,0.684818,0.95118,0.912131,0.301901,0.923089,0.979859,0.511414,0.172121,0.670319,0.559569,0.69189,0.374809,0.666541,0.923529,0.369219,0.856744,0.84843,0.167119,0.961315,0.90611,0.111413,0.20692,0.354466,0.457788,0.243086,0.548902,0.578272,0.979587,0.222774,0.00549042,0.77404,0.135333,0.28467,0.161332,0.40645,0.372039,0.198804,0.0671837,0.612747,0.163019,0.831396,0.198312,0.692679,0.881913,0.731818,0.892922,0.0111423,0.782727,0.81788,0.8612,0.337335,0.00849873,0.507333,0.248051,0.344691,0.873389,0.0995864,0.505614,0.78271,0.151275,0.370845,0.38418,0.531113,0.351327,0.938605,0.386822,0.881593,0.180747,0.604479,0.904706,0.740444,0.819798,0.177161,0.0707967,0.32882,0.437501,0.663329,0.157531,0.351274,0.342975,0.683044,0.868646,0.737844,0.73981,0.303289,0.230906,0.939458,0.260662,0.149593,0.852236,0.834602,0.796399,0.670697,0.616911,0.536028,0.956453,0.963623,0.0146992,0.604684,0.836928,0.707219,0.673514,0.0861048,0.208526,0.0680219,0.217384,0.563688,0.366856,0.598525,0.500563,0.179742,0.596564,0.659688,0.35807,0.300311,0.828889,0.315309,0.772465,0.150995,0.689203,0.59824,0.8582,0.366101,0.288864,0.874109,0.379521,0.330326,0.479638,0.970887,0.228211,0.634884,0.47475,0.407072,0.0553982,0.335447,0.278509,0.126463,0.456176,0.605957,0.0408959,0.996515,0.645847,0.441826,0.487176,0.131633,0.37824,0.354965,0.625952,0.236311,0.132905,0.137407,0.118814,0.483442,0.0641478,0.691583,0.486876,0.0766003,0.603609,0.826773,0.426617,0.645716,0.108771,0.0508402,0.503016,0.743403,0.21158,0.961207,0.234463,0.097351,0.335529,0.425731,0.589916,0.207839,0.53786,0.874762,0.999408,0.419917,0.437162,0.818125,0.137303,0.716825,0.690392,0.20866,0.552291,0.091684,0.44237,0.965515,0.405463,0.382001,0.718567,0.222382,0.966996,0.0729979,0.478411,0.0597034,0.323955,0.555276,0.801886,0.635621,0.230956,0.513785,0.774194,0.00103331,0.256201,0.823308,0.228848,0.703639,0.506798,0.568302,0.880037,0.613327,0.541883,0.804029,0.738984,0.601764,0.036493,0.515454,0.131037,0.642402,0.330327,0.124028,0.995051,0.431417,0.803784,0.36522,0.198813,0.58299,0.449866,0.0851904,0.784444,0.931584,0.227289,0.832102,0.407314,0.431207,0.551605,0.809976,0.583348,0.140982,0.221572,0.742668,0.55011,0.813125,0.347998,0.455589,0.0633566,0.694176,0.973597,0.74793,0.0678631,0.00102007,0.433272,0.465309,0.246101,0.536867,0.940127,0.844227,0.261328,0.832057,0.998048,0.966876,0.980581,0.120349,0.0743691,0.810537,0.61783,0.350938,0.269574,0.98669,0.540417,0.135233,0.0140281,0.244525,0.55891,0.933935,0.121677,0.594317,0.715079,0.167158,0.512579,0.614451,0.723202,0.0997046,0.000700235,0.685361,0.0941552,0.598104,0.980887,0.98193,0.955759,0.530302,0.0751255,0.0141875,0.399895,0.378288,0.642688,0.491659,0.600638,0.383081,0.0981069,0.832417,0.61514,0.476797,0.735789,0.393483,0.375911,0.519819,0.804328,0.747701,0.92945,0.602862,0.2403,0.49849,0.373326,0.390024,0.017623,0.555447,0.608883,0.647505,0.0250303,0.228765,0.312552,0.877171,0.416499,0.937307,0.647791,0.413639,0.0861565,0.478767,0.978805,0.599954,0.214499,0.853075,0.076919,0.389505,0.670241,0.952241,0.906133,0.287156,0.441431,0.0428823,0.703709,0.712734,0.564252,0.0546594,0.245361,0.00210267,0.319917,0.79595,0.751817,0.158205,0.272482,0.498025,0.837173,0.651206,0.210835,0.929054,0.211551,0.420642,0.488823,0.726529,0.0766515,0.546207,0.854185,0.90873,0.846774,0.985162,0.695686,0.961359,0.60046,0.80637,0.0449772,0.703821,0.367447,0.219508,0.942544,0.368145,0.439937,0.968671,0.802056,0.910049,0.972185,0.853385,0.853812,0.295479,0.590431,0.35936,0.576676,0.78398,0.60518,0.906926,0.930155,0.238065,0.663144,0.0117798,0.0650626,0.754242,0.589952,0.333904,0.760799,0.0421659,0.999227,0.286747,0.0958216,0.0825661,0.701844,0.83891,0.561248,0.296437,0.478192,0.0521664,0.0848699,0.190498,0.483359,0.160606,0.84234,0.795881,0.981791,0.912174,0.729549,0.912167,0.0317444,0.814416,0.0405191,0.855457,0.74465,0.855724,0.541239,0.106838,0.681486,0.20337,0.330351,0.357629,0.275452,0.662872,0.168289,0.584397,0.613262,0.0224901,0.54297,0.443767,0.57909,0.952202,0.478395,0.928611,0.328651,0.487825,0.667998,0.67563,0.177873,0.330123,0.795685,0.728057,0.349407,0.181135,0.804597,0.659289,0.99867,0.255629,0.368676,0.138736,0.939561,0.365015,0.597455,0.0578078,0.0507895,0.10646,0.247144,0.542376,0.225215,0.265054,0.483264,0.404979,0.738466,0.144652,0.857047,0.103409,0.727054,0.245788,0.246024,0.442949,0.734604,0.826706,0.506495,0.226941,0.016411,0.758085,0.719839,0.645988,0.67538,0.928327,0.244435,0.370318,0.547507,0.925252,0.0627678,0.0568236,0.0846911,0.950686,0.0846254,0.913553,0.833205,0.285594,0.77561,0.108341,0.559593,0.465493,0.876003,0.509265,0.212119,0.215574,0.78277,0.363617,0.0928681,0.0261341,0.573216,0.386669,0.127106,0.245146,0.835644,0.051407,0.165288,0.595774,0.438094,0.306648,0.959521,0.723508,0.793641,0.516982,0.19132,0.243224,0.711437,0.867929,0.667739,0.794494,0.461909,0.552231,0.878466,0.174871,0.949953,0.942657,0.275035,0.986713,0.907551,0.601114,0.804915,0.591681,0.298738,0.971913,0.847637,0.250297,0.817176,0.126419,0.59533,0.0315751,0.496882,0.245241,0.279825,0.538957,0.0227023,0.0351157,0.0180836,0.7649,0.71569,0.817598,0.851728,0.274413,0.0934646,0.673445,0.68137,0.00821072,0.367626,0.720786,0.123197,0.938443,0.308374,0.271467,0.650817,0.997602,0.686741,0.729114,0.260659,0.209231,0.0735624,0.169995,0.619187,0.457185,0.160729,0.9705,0.463043,0.233368,0.39853,0.057671,0.918357,0.101438,0.588711,0.743986,0.978805,0.842352,0.894187,0.943558,0.220425,0.238688,0.589581,0.22425,0.615289,0.929999,0.475116,0.443825,0.159083,0.00915664,0.155076,0.211884,0.870264,0.789443,0.96329,0.342048,0.487888,0.525497,0.155681,0.795065,0.737046,0.430793,0.28422,0.0531946,0.469983,0.656941,0.0747972,0.960932,0.584691,0.148826,0.816546,0.0884188,0.0600938,0.366915,0.714296,0.974676,0.265503,0.257584,0.99759,0.742591,0.40628,0.248848,0.796595,0.383525,0.911816,0.201356,0.403433,0.278522,0.448335,0.0996792,0.793103,0.287962,0.0693796,0.153334,0.177789,0.860649,0.468587,0.969109,0.673292,0.561154,0.395669,0.689862,0.578214,0.522181,0.0921811,0.866983,0.513763,0.899954,0.813964,0.624736,0.16023,0.382694,0.325976,0.863337,0.107517,0.44563,0.806691,0.0452219,0.905586,0.0911072,0.853776,0.131555,0.945678,0.159821,0.85207,0.85046,0.612928,0.992386,0.72682,0.423485,0.0910369,0.373157,0.248041,0.0578386,0.612697,0.726438,0.785585,0.956496,0.454286,0.830801,0.213155,0.110653,0.947461,0.999675,0.753903,0.836937,0.622452,0.579449,0.376875,0.534159,0.434574,0.34285,0.572484,0.804257,0.0585199,0.707736,0.0299333,0.151545,0.131587,0.341464,0.738533,0.269161,0.895998,0.484075,0.603972,0.980071,0.768036,0.74081,0.788737,0.70053,0.222397,0.0594313,0.74546,0.510403,0.545102,0.724528,0.959548,0.324335,0.256808,0.779257,0.136096,0.889857,0.0766115,0.684889,0.123829,0.850111,0.433822,0.6545,0.797092,0.0957797,0.938803,0.149259,0.871759,0.0873361,0.0647146,0.0237955,0.126577,0.284013,0.385962,0.426497,0.221124,0.913205,0.00461102,0.0791968,0.617592,0.570398,0.742803,0.334974,0.247822,0.704105,0.618483,0.967448,0.961747,0.788413,0.0402575,0.576569,0.345144,0.944091,0.21794,0.319213,0.719785,0.118386,0.965823,0.768715,0.363403,0.0993975,0.507234,0.855769,0.207198,0.533699,0.0318662,0.840287,0.717964,0.823164,0.260225,0.0756498,0.783417,0.105536,0.724591,0.480828,0.437217,0.859017,0.878836,0.654183,0.869442,0.192648,0.290258,0.989464,0.173082,0.192469,0.951875,0.526053,0.472995,0.438168,0.586231,0.0680441,0.269086,0.547206,0.351658,0.4056,0.942785,0.56805,0.495743,0.13276,0.318063,0.312195,0.0801536,0.419103,0.703471,0.33105,0.925911,0.657638,0.335637,0.277002,0.058628,0.17241,0.497996,0.892873,0.149187,0.177295,0.762306,0.354355,0.610125,0.807871,0.315674,0.72784,0.610285,0.41,0.969023,0.873052,0.0511892,0.105231,0.776789,0.0409901,0.774583,0.558312,0.845809,0.567834,0.00164914,0.996255,0.0788059,0.603542,0.745609,0.167841,0.264196,0.897021,0.0784213,0.68583,0.584146,0.349302,0.109414,0.617191,0.23994,0.42592,0.697871,0.244991,0.488494,0.351094,0.987238,0.954538,0.536437,0.988469,0.0231663,0.0376257,0.666266,0.0925893,0.901569,0.923863,0.684956,0.539847,0.561869,0.938348,0.762182,0.282589,0.0037685,0.378724,0.775607,0.0195342,0.221877,0.262851,0.804939,0.807829,0.00956583,0.765551,0.687351,0.67134,0.522277,0.287123,0.95971,0.335453,0.67397,0.606629,0.335285,0.732591,0.871793,0.320819,0.737477,0.58384,0.71027,0.725709,0.219204,0.274378,0.294487,0.881672,0.43486,0.893065,0.813178,0.651486,0.795063,0.642723,0.341154,0.622767,0.934246,0.800065,0.23533,0.531626,0.596553,0.00122195,0.677319,0.503981,0.644545,0.613997,0.424048,0.856914,0.0670891,0.837717,0.150667,0.199767,0.60589,0.660861,0.00479954,0.00718522,0.523235,0.920757,0.859338,0.191904,0.254407,0.487008,0.477056,0.392579,0.310455,0.603208,0.562931,0.637751,0.0769892,0.129233,0.419093,0.0231209,0.483283,0.00710475,0.723775,0.230787,0.499236,0.322483,0.891389,0.662981,|0.0819244,0.36555,0.101081,0.937555,0.482732,0.426791,0.972947,0.749561,0.0693778,0.996319,0.0491946,0.677126,0.983791,0.982888,0.875235,0.991239,0.770137,0.89604,0.423535,0.53766,0.722646,0.511199,0.121634,0.134355,0.658651,0.0317335,0.191575,0.785208,0.480577,0.962334,0.551024,0.889565,0.562286,0.250444,0.808899,0.579971,0.294606,0.733935,0.751343,0.93882,0.383963,0.700925,0.796428,0.0745909,0.00852668,0.813139,0.745177,0.9732,0.9217,0.0349209,0.0328192,0.84675,0.549952,0.915603,0.956506,0.0677978,0.210548,0.59223,0.907356,0.882085,0.373546,0.230492,0.767794,0.795733,0.832942,0.719499,0.42088,0.328187,0.961729,0.164607,0.568012,0.716192,0.566972,0.924197,0.108491,0.391147,0.0448076,0.401857,0.946876,0.0232855,0.115273,0.0591186,0.993798,0.793203,0.507408,0.626534,0.74326,0.45154,0.950237,0.70132,0.468665,0.203599,0.468507,0.271676,0.702149,0.92888,0.777249,0.910393,0.548238,0.897302,0.603806,0.357886,0.0128246,0.522231,0.661063,0.517101,0.564844,0.842213,0.302082,0.975464,0.723613,0.469058,0.16654,0.877036,0.247271,0.662729,0.0999019,0.797385,0.111185,0.380523,0.970114,0.780366,0.546619,0.282806,0.254595,0.0674967,0.751792,0.547347,0.711076,0.596065,0.865295,0.631658,0.228034,0.491058,0.222506,0.881572,0.765511,0.963729,0.138343,0.210288,0.790628,0.636676,0.568444,0.331446,0.501865,0.216428,0.0196221,0.729567,0.78161,0.367518,0.4574,0.176156,0.818703,0.904832,0.662884,0.309685,0.344675,0.590997,0.125618,0.363843,0.918978,0.806211,0.702009,0.260379,0.630504,0.482821,0.0208663,0.543967,0.790856,0.448897,0.538625,0.505223,0.294815,0.0976807,0.593317,0.378392,0.797652,0.659138,0.231685,0.03473,0.303688,0.561309,0.833162,0.0123572,0.822538,0.409851,0.0875571,0.678825,0.915641,0.411008,0.162516,0.00811493,0.591648,0.357085,0.383282,0.00153399,0.961666,0.947417,0.699264,0.711975,0.594859,0.372814,0.735847,0.391632,0.676662,0.983183,0.722206,0.683754,0.834444,0.249586,0.66728,0.42229,0.188598,0.0121124,0.397813,0.273692,0.80072,0.614649,0.909933,0.950871,0.666646,0.53659,0.654072,0.682726,0.586712,0.770508,0.525446,0.0332946,0.447755,0.563151,0.293816,0.0922598,0.985785,0.532653,0.274758,0.207844,0.498479,0.468618,0.587231,0.139253,0.883577,0.304672,0.321329,0.811185,0.4783,0.697883,0.022989,0.13965,0.0541884,0.721277,0.94341,0.50755,0.352659,0.365451,0.620323,0.649095,0.955972,0.217944,0.183577,0.925085,0.245134,0.514749,0.33593,0.00313127,0.97926,0.554633,0.120729,0.698892,0.833534,0.935817,0.738704,0.360132,0.146722,0.0282207,0.717022,0.768671,0.113311,0.832298,0.108207,0.515794,0.593066,0.613195,0.82588,0.649568,0.0645351,0.768668,0.936689,0.237373,0.702492,0.801435,0.222672,0.00679809,0.951409,0.393639,0.833592,0.628004,0.659638,0.03733,0.0824865,0.376868,0.598062,0.735843,0.922865,0.541916,0.731121,0.439058,0.550732,0.189628,0.718207,0.866372,0.649946,0.426493,0.652626,0.856636,0.180903,0.325073,0.0199497,0.704324,0.697848,0.565658,0.273415,0.243587,0.433673,0.615015,0.226104,0.958643,0.919904,0.074299,0.216024,0.48627,0.725812,0.911527,0.0184705,0.481768,0.952947,0.908035,0.703485,0.370409,0.876766,0.344432,0.119704,0.608922,0.578048,0.687263,0.59461,0.270164,0.175794,0.973434,0.865153,0.468656,0.635697,0.832037,0.699375,0.125817,0.538552,0.630245,0.673693,0.899872,0.823192,0.558762,0.766501,0.0889999,0.70771,0.279386,0.907233,0.537332,0.297613,0.423399,0.865457,0.0827271,0.314835,0.800385,0.0696606,0.89537,0.0140936,0.817863,0.848314,0.643097,0.97447,0.0829988,0.376344,0.223989,0.897469,0.962775,0.0612534,0.713716,0.563167,0.254704,0.503635,0.246275,0.658528,0.0581256,0.335283,0.00260842,0.431,0.175381,0.668049,0.799639,0.197474,0.100232,0.548279,0.0149298,0.450962,0.371519,0.247221,0.755245,0.883067,0.880016,0.932564,0.698455,0.497121,0.694274,0.598186,0.400978,0.941446,0.738514,0.784477,0.87389,0.00601387,0.891911,0.0880504,0.0692143,0.615634,0.471656,0.329191,0.574015,0.864758,0.0497517,0.400648,0.893038,0.88105,0.282178,0.594789,0.363903,0.273368,0.197441,0.551554,0.767308,0.778716,0.800789,0.61501,0.119768,0.886534,0.483613,0.0500517,0.687144,0.208269,0.479154,0.664794,0.26252,0.531716,0.436074,0.758007,0.630256,0.670761,0.54176,0.891677,0.0413751,0.762506,0.820657,0.964371,0.919742,0.704091,0.73408,0.916819,0.195719,0.795031,0.835757,0.378764,0.336587,0.0965854,0.417108,0.638659,0.210325,0.744623,0.133659,0.787571,0.488908,0.297326,0.732209,0.833909,0.660885,0.365051,0.122048,0.0787455,0.173655,0.199415,0.0593713,0.501443,0.273935,0.709518,0.422087,0.84857,0.754686,0.12329,0.387644,0.890341,0.455326,0.0716466,0.20119,0.147499,0.289098,0.191227,0.823827,0.961196,0.952461,0.89365,0.0140681,0.906878,0.537631,0.849933,0.920648,0.8021,0.419318,0.466941,0.592249,0.97909,0.305332,0.388837,0.187108,0.547779,0.892442,0.406564,0.589104,0.480112,0.813532,0.0388504,0.912225,0.93966,0.814014,0.978186,0.50509,0.714596,0.495432,0.110014,0.784241,0.845263,0.584006,0.716046,0.662783,0.666803,0.0638875,0.287765,0.535021,0.481133,0.832471,0.196898,0.491962,0.550292,0.76713,0.024165,0.434608,0.363137,0.928051,0.3733,0.891022,0.848556,0.16332,0.212479,0.453441,0.125221,0.296638,0.907203,0.779015,0.0884425,0.105588,0.887431,0.108379,0.689503,0.887734,0.0702938,0.247632,0.881403,0.329092,0.417699,0.211043,0.214789,0.506092,0.79009,0.648892,0.572315,0.466646,0.383992,0.528918,0.568484,0.518077,0.0506342,0.840007,0.297062,0.0294938,0.212893,0.810992,0.308782,0.703798,0.720492,0.420082,0.465294,0.731336,0.910855,0.480606,0.561075,0.628762,0.733698,0.162195,0.334468,0.118254,0.308087,0.768895,0.194135,0.494403,0.976883,0.524119,0.848488,0.720535,0.772698,0.854991,0.883366,0.715654,0.504661,0.398279,0.368872,0.553787,0.262766,0.796502,0.929412,0.904732,0.397034,0.943091,0.146642,0.230511,0.972126,0.74993,0.654648,0.0615869,0.733551,0.71775,0.311746,0.99781,0.691933,0.0480518,0.531529,0.298508,0.247049,0.849633,0.862411,0.476237,0.0566589,0.0512224,0.866038,0.30442,0.905816,0.869453,0.66439,0.199614,0.475296,0.813188,0.900125,0.889844,0.345782,0.562963,0.0186803,0.373986,0.745799,0.900815,0.823229,0.704669,0.296996,0.835311,0.749913,0.265937,0.562153,0.465205,0.786242,0.737834,0.672537,0.393311,0.752629,0.940912,0.363379,0.0617329,0.193644,0.0345341,0.608738,0.00940669,0.174037,0.22537,0.22425,0.878865,0.743897,0.542121,0.971131,0.869479,0.0414712,0.59811,0.406857,0.0468026,0.209703,0.623045,0.466597,0.334287,0.567345,0.437912,0.847638,0.319702,0.903022,0.0217249,0.3011,0.452599,0.803412,0.534694,0.743594,0.804609,0.826965,0.343927,0.352582,0.89506,0.00175261,0.281954,0.583166,0.399481,0.791421,0.84941,0.652328,0.00921339,0.686421,0.342263,0.7342,0.228856,0.131718,0.997556,0.39162,0.352281,0.654044,0.701321,0.742402,0.487209,0.845654,0.282982,0.248696,0.869843,0.130697,0.817193,0.913658,0.81432,0.867146,0.404682,0.738676,0.688488,0.589858,0.945146,0.580036,0.965003,0.207493,0.319508,0.506025,0.724277,0.355768,0.713086,0.266147,0.710375,0.891662,0.796863,0.596395,0.498549,0.437621,0.167652,0.123684,0.692423,0.770411,0.86356,0.853513,0.0977322,0.503692,0.70383,0.4824,0.40491,0.193874,0.206587,0.653704,0.611502,0.628896,0.793196,0.762882,0.192661,0.0325945,0.487316,0.637953,0.72383,0.788707,0.838087,0.529592,0.145806,0.445407,0.504411,0.33558,0.729628,0.0441377,0.641974,0.986086,0.991228,0.812794,0.533306,0.148775,0.477026,0.975479,0.995758,0.349453,0.0256377,0.0779403,0.839088,0.489504,0.0947334,0.387199,0.45662,0.512035,0.969515,0.929123,0.764163,0.0201276,0.996082,0.568706,0.442881,0.186567,0.939114,0.79086,0.540124,0.0645054,0.101058,0.0680228,0.517847,0.889907,0.146962,0.755565,0.597392,0.834285,0.159446,0.687228,0.182795,0.810493,0.234397,0.64151,0.505503,0.317852,0.132818,0.128542,0.611719,0.929878,0.851947,0.126387,0.287783,0.199405,0.986474,0.853522,0.663734,0.128307,0.564039,0.815756,0.537823,0.498853,0.471096,0.698249,0.853147,0.413372,0.887774,0.629389,0.0745798,0.463472,0.603121,0.9,0.399765,0.319497,0.86823,0.53467,0.409362,0.262323,0.292392,0.375677,0.967133,0.432531,0.848268,0.929779,0.834915,0.851683,0.115783,0.890942,0.994564,0.530899,0.765878,0.698699,0.739607,0.357746,0.954974,0.755865,0.406087,0.115394,0.0769154,0.769111,0.663113,0.853574,0.220349,0.802931,0.506473,0.0932817,0.498062,0.625884,0.174267,0.733311,0.6012,0.0476182,0.670538,0.33509,0.0778913,0.508603,0.763169,0.392882,0.230061,0.658618,0.826565,0.553592,0.417176,0.157295,0.932779,0.443582,0.323243,0.443271,0.28062,0.944768,0.122744,0.733744,0.627833,0.0361874,0.289111,0.943359,0.621698,0.436385,0.996765,0.292487,0.863129,0.339487,0.545014,0.33797,0.871318,0.0406788,0.736432,0.565516,0.607715,0.19135,0.143732,0.830379,0.268819,0.589765,0.348438,0.851102,0.348214,0.850546,0.162512,0.0630088,0.733448,0.702065,0.750998,0.423956,0.272507,0.00121474,0.364161,0.123833,0.195653,0.890176,0.169711,0.240758,0.562947,0.605207,0.44417,0.723914,0.261969,0.74093,0.0205951,0.716981,0.628456,0.143351,0.989761,0.981299,0.81583,0.206092,0.775698,0.0264113,0.985499,0.554056,0.958617,0.924298,0.219977,0.925743,0.149895,0.374112,0.885336,0.82843,0.10936,0.767345,0.234713,0.483101,0.64468,|0.199208,0.894808,0.504345,0.0638546,0.483928,0.663089,0.181753,0.702197,0.797797,0.601539,0.441515,0.0996868,0.329476,0.0946611,0.103394,0.0934421,0.989524,0.09876,0.504279,0.20626,0.158266,0.806114,0.761864,0.829985,0.288277,0.597338,0.259494,0.0269144,0.646105,0.489199,0.489843,0.615928,0.217047,0.651849,0.38911,0.189577,0.343692,0.634198,0.221633,0.00740147,0.822168,0.529428,0.0203396,0.369209,0.917376,0.830364,0.834797,0.998865,0.0777489,0.626474,0.0843785,0.579032,0.153425,0.542341,0.920043,0.528399,0.979979,0.0641882,0.480524,0.280649,0.590954,0.273272,0.264989,0.136485,0.812817,0.294494,0.830206,0.326935,0.126714,0.215206,0.385347,0.392263,0.163136,0.393878,0.963993,0.719003,0.158656,0.479383,0.699662,0.87286,0.904335,0.605036,0.708264,0.170749,0.276497,0.286494,0.826081,0.0880455,0.0604208,0.0884988,0.746035,0.114421,0.848257,0.950433,0.551097,0.23264,0.7183,0.625151,0.198525,0.881784,0.72829,0.580519,0.00491011,0.990507,0.200051,0.560693,0.725866,0.87544,0.985639,0.607172,0.693581,0.804397,0.448636,0.283348,0.134973,0.654007,0.408892,0.851172,0.802575,0.430165,0.116445,0.422404,0.167658,0.859672,0.552048,0.91463,0.922807,0.916197,0.524208,0.345373,0.588953,0.223382,0.158268,0.626421,0.453678,0.553683,0.348926,0.872658,0.0650021,0.214415,0.777771,0.254122,0.65813,0.0437477,0.0133026,0.691432,0.390077,0.784622,0.542665,0.774544,0.610303,0.367954,0.649747,0.74129,0.994417,0.0172476,0.549717,0.445473,0.20835,0.745096,0.407268,0.444822,0.299535,0.659843,0.289713,0.882216,0.712288,0.606526,0.307371,0.0430967,0.0416092,0.97973,0.257839,0.609258,0.708916,0.291532,0.429802,0.227979,0.0156857,0.57833,0.679169,0.331331,0.457524,0.999609,0.319205,0.773409,0.901887,0.600684,0.400788,0.153035,0.308038,0.685269,0.608959,0.94275,0.893691,0.183897,0.113049,0.880579,0.80403,0.598963,0.360899,0.996523,0.846896,0.675237,0.953992,0.732512,0.974782,0.519635,0.940983,0.331169,0.667938,0.997455,0.647156,0.853095,0.120136,0.807174,0.68578,0.269043,0.261926,0.613323,0.159344,0.595912,0.716819,0.206212,0.536086,0.399906,0.755242,0.526721,0.678207,0.707228,0.71644,0.303475,0.0793433,0.122741,0.49851,0.161271,0.744758,0.366379,0.0478464,0.419875,0.9732,0.779759,0.374979,0.0313419,0.541185,0.41495,0.998412,0.218485,0.0341246,0.513446,0.588206,0.133041,0.186842,0.782212,0.342424,0.74087,0.261669,0.522497,0.899158,0.63613,0.208328,0.628772,0.650219,0.956245,0.0565969,0.123181,0.22476,0.00655943,0.17756,0.157133,0.21636,0.145602,0.299294,0.324373,0.293402,0.988021,0.433436,0.470991,0.523137,0.710258,0.031571,0.465218,0.553147,0.946501,0.603095,0.122046,0.278457,0.330985,0.166042,0.539257,0.780489,0.769947,0.685534,0.769306,0.220332,0.600486,0.143677,0.0749997,0.762129,0.22824,0.0953367,0.242663,0.0346739,0.668125,0.970839,0.406717,0.0595948,0.404945,0.174546,0.666985,0.241154,0.13018,0.132553,0.298946,0.761405,0.210542,0.348095,0.234955,0.626552,0.543317,0.730226,0.714755,0.570739,0.128184,0.375735,0.668364,0.889023,0.922263,0.443022,0.335166,0.731186,0.0590665,0.130781,0.75928,0.243259,0.171907,0.0318667,0.925183,0.389854,0.0511678,0.7337,0.243613,0.18053,0.730123,0.92844,0.929236,0.401758,0.740114,0.207712,0.986139,0.859551,0.940227,0.0862839,0.10615,0.538512,0.330287,0.465544,0.650577,0.20328,0.0241336,0.558897,0.367701,0.843,0.179042,0.389793,0.300237,0.0475534,0.850164,0.221592,0.0256641,0.142305,0.721824,0.374752,0.687846,0.0183294,0.250584,0.0948637,0.183552,0.357281,0.517008,0.953938,0.0320543,0.0607868,0.535407,0.186009,0.315148,0.679753,0.462919,0.661181,0.801387,0.289358,0.464106,0.408898,0.498134,0.892198,0.628164,0.361498,0.267522,0.549624,0.466137,0.239555,0.679197,0.249906,0.716407,0.764082,0.876622,0.522566,0.842751,0.92968,0.92817,0.615225,0.542281,0.873235,0.223102,0.558241,0.13643,0.452057,0.27173,0.35662,0.254205,0.991572,0.46058,0.457164,0.0714408,0.246265,0.635924,0.1458,0.0374802,0.0749205,0.586142,0.647854,0.682151,0.789012,0.999381,0.326321,0.00439054,0.451643,0.151352,0.0636389,0.488371,0.078231,0.127617,0.538809,0.302693,0.384664,0.476174,0.995785,0.830468,0.817903,0.897654,0.759366,0.869685,0.592441,0.678269,0.470343,0.516357,0.832586,0.687504,0.962759,0.179129,0.338802,0.645267,0.435674,0.589629,0.367856,0.405888,0.493763,0.996284,0.431833,0.430265,0.134064,0.393933,0.018866,0.0821003,0.998564,0.284238,0.772683,0.0838713,0.907585,0.131635,0.806057,0.735294,0.133684,0.665095,0.460868,0.934698,0.701126,0.195495,0.876041,0.172328,0.854253,0.432568,0.188577,0.285609,0.546546,0.4609,0.678148,0.175388,0.376925,0.530791,0.12282,0.485095,0.453551,0.119807,0.582722,0.242668,0.898724,0.920125,0.822955,0.921457,0.586054,0.0369923,0.332829,0.377783,0.348758,0.310161,0.75926,0.475476,0.784807,0.034036,0.990879,0.0892917,0.716625,0.798937,0.981169,0.552517,0.618489,0.368908,0.818075,0.726682,0.352648,0.076848,0.319827,0.145192,0.946064,0.108704,0.954777,0.051162,0.696665,0.514705,0.219945,0.948682,0.152946,0.239346,0.179597,0.800932,0.897368,0.932468,0.44814,0.130879,0.870115,0.71968,0.868535,0.587021,0.520659,0.00937879,0.838577,0.645063,0.613749,0.585912,0.645925,0.734267,0.0343216,0.93159,0.409602,0.800904,0.681278,0.476528,0.561545,0.0426659,0.519844,0.477508,0.72475,0.11946,0.622684,0.464495,0.307315,0.140081,0.618329,0.985,0.046892,0.735518,0.891328,0.475066,0.15741,0.191128,0.730424,0.831282,0.401741,0.722611,0.786917,0.497872,0.958749,0.676956,0.116123,0.551375,0.385983,0.707322,0.451289,0.245605,0.690485,0.972659,0.386776,0.0584934,0.13637,0.0428135,0.4654,0.0454106,0.115376,0.291095,0.921156,0.565917,0.727837,0.159697,0.936255,0.983444,0.133668,0.289025,0.51909,0.609313,0.286481,0.337347,0.96285,0.656545,0.67412,0.3655,0.771903,0.354447,0.171829,0.249038,0.172373,0.280117,0.911895,0.966449,0.991283,0.728499,0.521344,0.68266,0.546987,0.0687566,0.031821,0.0820085,0.747507,0.0427508,0.169413,0.202587,0.127159,0.418092,0.762129,0.821678,0.428663,0.526468,0.91592,0.472741,0.441052,0.447732,0.469117,0.718322,0.339742,0.742382,0.188672,0.974082,0.087209,0.556195,0.0446829,0.0117582,0.0484349,0.200336,0.341427,0.603209,0.494698,0.919131,0.972813,0.754941,0.0776145,0.161716,0.805346,0.138422,0.212913,0.268472,0.68226,0.361829,0.413703,0.151111,0.570581,0.296901,0.0192609,0.659821,0.947384,0.360134,0.0735645,0.313873,0.668985,0.859738,0.0474621,0.861378,0.991307,0.778262,0.593863,0.58134,0.933759,0.4864,0.760286,0.636894,0.816296,0.0902379,0.0910153,0.216015,0.880204,0.247639,0.080609,0.54169,0.978958,0.34773,0.464365,0.16554,0.794712,0.245454,0.0954731,0.736228,0.275692,0.274427,0.108885,0.856472,0.0425904,0.187838,0.28191,0.892997,0.110474,0.594067,0.192728,0.255044,0.834131,0.325625,0.76491,0.27309,0.0870482,0.876913,0.495241,0.513136,0.144872,0.918491,0.644263,0.690465,0.916619,0.62291,0.214786,0.0385273,0.805848,0.83591,0.630487,0.206372,0.0533209,0.0113882,0.929164,0.8322,0.193812,0.869754,0.905992,0.218749,0.264556,0.809414,0.175201,0.208778,0.438204,0.305785,0.415618,0.443538,0.119917,0.219159,0.487314,0.159764,0.0603319,0.767316,0.681219,0.283323,0.927568,0.797132,0.223261,0.49249,0.599903,0.793491,0.801589,0.707311,0.490179,0.17239,0.551716,0.699107,0.725274,0.98924,0.468143,0.492351,0.974083,0.712492,0.963338,0.411815,0.894985,0.943775,0.309516,0.640763,0.102198,0.667698,0.467809,0.093767,0.376987,0.581333,0.266081,0.0158259,0.564176,0.111012,0.918762,0.247411,0.49337,0.668929,0.74795,0.755482,0.837172,0.496457,0.231399,0.36656,0.432412,0.180458,0.361092,0.438739,0.0527516,0.763633,0.136354,0.0779627,0.071072,0.443895,0.354113,0.532505,0.435404,0.266392,0.934962,0.57512,0.112055,0.774717,0.466059,0.1531,0.138949,0.740223,0.726382,0.224393,0.561277,0.35312,0.133924,0.951912,0.675126,0.697984,0.665719,0.769264,0.525961,0.668837,0.954997,0.303113,0.450043,0.778968,0.299475,0.705916,0.912196,0.686701,0.968068,0.291743,0.89572,0.0231989,0.880589,0.533955,0.608439,0.492719,0.363578,0.439217,0.418469,0.526625,0.91215,0.491957,0.529241,0.0684928,0.871251,0.0225444,0.324328,0.097635,0.500253,0.9663,0.0459974,0.237945,0.451228,0.552106,0.168848,0.0673489,0.0627625,0.485688,0.569758,0.0798903,0.950804,0.122714,0.25583,0.376481,0.533271,0.136261,0.950472,0.5232,0.415216,0.164422,0.390567,0.285785,0.460073,0.326689,0.417395,0.20564,0.848,0.354953,0.444371,0.899638,0.694586,0.222712,0.985075,0.536338,0.768641,0.105901,0.51085,0.0492418,0.820373,0.280919,0.797464,0.954944,0.388424,0.779448,0.915087,0.17038,0.631905,0.094837,0.836613,0.909083,0.224868,0.311268,0.757248,0.673793,0.804621,0.981589,0.384171,0.155622,0.171976,0.640395,0.228952,0.708021,0.315016,0.033605,0.282926,0.189506,0.0606682,0.512166,0.152699,0.231643,0.734999,0.803728,0.524125,0.244829,0.0460308,0.135861,0.793913,0.164421,0.402209,0.531975,0.474901,0.44592,0.651036,0.703993,0.876656,0.304142,0.440098,0.55939,0.640383,0.491544,0.567422,0.212304,0.340835,0.29059,0.701407,0.777712,0.20652,0.595253,0.487197,0.940242,0.310794,0.0549232,0.561542,0.583279,0.319918,0.717214,0.652136,0.299645,0.628224,0.0372914,0.471341,0.831044,0.328126,0.828708,0.673275,0.563165,|0.248329,0.653508,0.912094,0.102687,0.0518324,0.916378,0.274001,0.383663,0.0455449,0.423802,0.035589,0.248348,0.876952,0.602202,0.0963355,0.847383,0.849459,0.541981,0.506239,0.20102,0.870764,0.0441644,0.433322,0.477807,0.877715,0.0412357,0.102524,0.546953,0.0927745,0.793336,0.147558,0.204334,0.996087,0.978015,0.72512,0.0554574,0.46967,0.579582,0.358398,0.170911,0.840109,0.895249,0.693204,0.347963,0.297358,0.047605,0.285523,0.82544,0.275027,0.82634,0.68718,0.718821,0.38987,0.167388,0.451216,0.519664,0.791099,0.382022,0.395614,0.430538,0.0777135,0.0427083,0.583093,0.964405,0.137343,0.123667,0.889642,0.546463,0.989422,0.339473,0.86641,0.881139,0.762478,0.93908,0.875879,0.353987,0.147119,0.20002,0.9033,0.715634,0.0507345,0.0782481,0.426479,0.982867,0.660557,0.424462,0.871721,0.775035,0.873144,0.0530472,0.099779,0.819719,0.162843,0.904964,0.557658,0.780068,0.544854,0.446555,0.733119,0.351831,0.53626,0.648301,0.145783,0.984396,0.542561,0.968253,0.357515,0.441843,0.180284,0.458903,0.939417,0.16217,0.336673,0.375296,0.892038,0.167202,0.00909007,0.841955,0.479664,0.323316,0.84834,0.789324,0.801919,0.0832748,0.3275,0.620134,0.113279,0.710699,0.55601,0.897692,0.735253,0.403988,0.0844078,0.752776,0.327569,0.383064,0.895539,0.66469,0.360229,0.157676,0.392292,0.87195,0.095511,0.808326,0.907318,0.292702,0.480136,0.132002,0.0905137,0.825959,0.189553,0.424294,0.124855,0.253958,0.79346,0.68952,0.463705,0.928603,0.512015,0.722622,0.888327,0.52151,0.140807,0.795926,0.313196,0.611957,0.555103,0.644219,0.736449,0.893534,0.472738,0.0916161,0.735305,0.433156,0.31155,0.772103,0.877399,0.989896,0.0484764,0.609933,0.708162,0.0324243,0.953185,0.679307,0.262571,0.972975,0.427483,0.497005,0.487108,0.932221,0.989385,0.129605,0.636039,0.224775,0.665794,0.613933,0.978323,0.919659,0.218685,0.6957,0.0283742,0.69702,0.332705,0.445037,0.1604,0.441775,0.343439,0.450652,0.125218,0.69342,0.343106,0.623311,0.05126,0.905259,0.353857,0.802668,0.155055,0.404773,0.437971,0.501041,0.387511,0.114232,0.478384,0.292579,0.0398866,0.043927,0.466815,0.172265,0.69889,0.290211,0.665462,0.979005,0.413925,0.47725,0.561653,0.0744987,0.55332,0.518682,0.395885,0.778195,0.470715,0.137573,0.999851,0.384952,0.138151,0.66496,0.585527,0.956937,0.74968,0.627637,0.859216,0.451148,0.896736,0.971071,0.965222,0.650212,0.758708,0.291174,0.259449,0.0488802,0.338969,0.836637,0.208313,0.604484,0.311261,0.0807679,0.131665,0.728818,0.583905,0.385368,0.330192,0.362835,0.979109,0.544147,0.918259,0.529222,0.192899,0.809113,0.511779,0.570512,0.91437,0.55092,0.627957,0.187508,0.0297015,0.553268,0.682429,0.502355,0.212291,0.644446,0.0139295,0.0327811,0.0782661,0.559047,0.918498,0.695826,0.16748,0.753074,0.967436,0.586114,0.178892,0.106284,0.469077,0.382364,0.745732,0.831913,0.395757,0.579294,0.490834,0.663621,0.806555,0.148659,0.869705,0.35272,0.042069,0.330624,0.939348,0.119964,0.731552,0.0469067,0.429897,0.845335,0.937224,0.2157,0.247548,0.660535,0.103196,0.153402,0.17439,0.565334,0.314706,0.0144171,0.533606,0.235075,0.370461,0.742191,0.0449187,0.0760008,0.886253,0.189842,0.347012,0.556191,0.596275,0.241013,0.130543,0.11557,0.732395,0.42871,0.897,0.511216,0.933657,0.753579,0.703233,0.709889,0.982704,0.438172,0.450778,0.0365129,0.916844,0.0350572,0.814941,0.658294,0.442814,0.494474,0.500295,0.676026,0.0944238,0.603053,0.817565,0.103882,0.151147,0.999077,0.0776844,0.058835,0.526053,0.741569,0.820537,0.664674,0.649437,0.367634,0.451288,0.152105,0.0443261,0.792492,0.832843,0.994061,0.433045,0.116565,0.384531,0.0848054,0.377018,0.53831,0.273227,0.228754,0.705445,0.165581,0.0480543,0.196284,0.969457,0.616098,0.440865,0.381421,0.690241,0.214919,0.0220526,0.0357942,0.778598,0.550324,0.775173,0.485744,0.44291,0.604838,0.670841,0.0479697,0.512549,0.967432,0.402115,0.435344,0.266416,0.0710013,0.123262,0.301486,0.599163,0.740529,0.72358,0.446951,0.436662,0.96987,0.741479,0.252373,0.0981137,0.822836,0.846086,0.13049,0.74283,0.00912857,0.916374,0.364621,0.734008,0.275925,0.237,0.156918,0.502988,0.418841,0.433016,0.688975,0.458777,0.529303,0.013243,0.635285,0.0262622,0.372157,0.257805,0.137562,0.516925,0.811962,0.947025,0.19523,0.810116,0.60808,0.355053,0.951906,0.899855,0.454954,0.7385,0.447597,0.264812,0.569856,0.593214,0.000240803,0.0624831,0.309338,0.932756,0.729602,0.605679,0.285835,0.343953,0.716795,0.297983,0.615174,0.9182,0.19738,0.755927,0.221024,0.985967,0.187865,0.843123,0.0644431,0.187541,0.000681341,0.32284,0.0685781,0.123176,0.578089,0.922098,0.10122,0.112981,0.197711,0.189069,0.954223,0.111935,0.194409,0.418435,0.407402,0.745386,0.414689,0.586461,0.527965,0.697032,0.973581,0.983172,0.964321,0.337907,0.82454,0.167988,0.0312109,0.629345,0.399613,0.0876285,0.748957,0.824308,0.680181,0.705842,0.584551,0.152393,0.206227,0.760459,0.911345,0.737188,0.667209,0.621925,0.77067,0.265812,0.384995,0.771233,0.907668,0.0548698,0.291988,0.33946,0.84162,0.0442654,0.23623,0.619254,0.480888,0.116525,0.66986,0.821967,0.136363,0.137303,0.494515,0.0190289,0.0332088,0.780014,0.66113,0.565357,0.418429,0.971178,0.902894,0.13881,0.780406,0.003654,0.0907245,0.510816,0.928273,0.852174,0.305793,0.32039,0.873401,0.506899,0.877248,0.318507,0.0608636,0.431403,0.442812,0.0262093,0.592393,0.885768,0.285457,0.321988,0.439408,0.0327303,0.929303,0.190481,0.164141,0.691692,0.102097,0.278179,0.519222,0.806814,0.0108961,0.360304,0.165954,0.127392,0.901511,0.821937,0.539876,0.565767,0.377417,0.112845,0.868171,0.678295,0.291849,0.906445,0.521913,0.979451,0.0604899,0.810548,0.663847,0.249527,0.645964,0.040769,0.207147,0.877277,0.0898191,0.525324,0.132232,0.0830956,0.687047,0.734598,0.940281,0.824559,0.124407,0.918952,0.396794,0.935768,0.492007,0.611352,0.812455,0.328013,0.02665,0.50598,0.224211,0.998968,0.172333,0.0154635,0.87268,0.895979,0.19778,0.386582,0.268124,0.360027,0.207681,0.125052,0.794151,0.522947,0.478954,0.693564,0.912479,0.799598,0.015114,0.607201,0.341181,0.955692,0.1068,0.820168,0.959473,0.278676,0.936264,0.989872,0.321128,0.081207,0.938738,0.260854,0.917084,0.62971,0.49092,0.724906,0.632409,0.326342,0.507192,0.314156,0.7114,0.0163238,0.213498,0.785662,0.514902,0.256619,0.915329,0.910831,0.698935,0.96189,0.364582,0.408542,0.94119,0.844304,0.260228,0.374379,0.359558,0.945183,0.447375,0.410787,0.635442,0.969778,0.191291,0.885844,0.413829,0.483539,0.0729671,0.883347,0.948868,0.200873,0.369429,0.180442,0.651659,0.754715,0.4564,0.449577,0.113501,0.107976,0.0720701,0.249659,0.134523,0.973743,0.00565088,0.0815113,0.820361,0.447066,0.149544,0.631362,0.227448,0.140669,0.278108,0.559026,0.638216,0.804845,0.194615,0.749693,0.133948,0.720658,0.637043,0.112156,0.0269602,0.617839,0.0664595,0.190681,0.617227,0.482774,0.89601,0.797488,0.264141,0.8324,0.53232,0.184028,0.342362,0.597448,0.135615,0.976184,0.977111,0.12344,0.988896,0.93414,0.187089,0.301191,0.732452,0.950588,0.932482,0.711151,0.371136,0.325505,0.922262,0.339059,0.0238628,0.234619,0.257894,0.568293,0.845227,0.094017,0.245861,0.122268,0.120055,0.2439,0.249046,0.155935,0.103325,0.493539,0.532659,0.659627,0.0500621,0.594302,0.182365,0.631823,0.0983557,0.70281,0.559685,0.305927,0.433966,0.147419,0.298831,0.454144,0.00606912,0.324121,0.495004,0.440686,0.91933,0.237765,0.393637,0.359517,0.375569,0.155507,0.556916,0.67889,0.735608,0.890697,0.662733,0.635843,0.0712094,0.52217,0.831219,0.395891,0.72416,0.504806,0.206784,0.557911,0.513344,0.258267,0.739453,0.0312564,0.729103,0.214526,0.238142,0.52058,0.388239,0.710366,0.673302,0.448975,0.169939,0.7584,0.422381,0.343336,0.836842,0.591098,0.521358,0.282126,0.353026,0.259952,0.902665,0.759881,0.613021,0.882192,0.22129,0.432913,0.191528,0.120333,0.632491,0.419325,0.433626,0.298608,0.308309,0.732661,0.581638,0.296153,0.358243,0.0913916,0.0520709,0.849382,0.612161,0.640191,0.794007,0.758321,0.234764,0.977935,0.662289,0.129861,0.546786,0.394285,0.202855,0.193757,0.201837,0.944409,0.946345,0.0720813,0.454564,0.446078,0.391658,0.494958,0.38232,0.454492,0.540995,0.142884,0.498336,0.298463,0.0878787,0.24612,0.769111,0.930987,0.483333,0.625064,0.917286,0.701446,0.273339,0.981934,0.519758,0.666948,0.334115,0.630378,0.813766,0.525253,0.79465,0.308213,0.447121,0.0333983,0.393705,0.959767,0.795166,0.0456687,0.482165,0.691088,0.883118,0.338458,0.165354,0.393853,0.0604884,0.837556,0.718284,0.0507269,0.661127,0.490563,0.858684,0.735952,0.677561,0.841647,0.9716,0.0807645,0.745523,0.42546,0.967453,0.586546,0.760982,0.550248,0.903927,0.489263,0.540833,0.792497,0.0761926,0.600272,0.714929,0.731438,0.330503,0.282954,0.407705,0.227716,0.747031,0.390054,0.0195927,0.565103,0.542036,0.307861,0.646451,0.0428373,0.951672,0.862654,0.527203,0.643628,0.808079,0.824595,0.183232,0.504872,0.25303,0.374118,0.911696,0.874586,0.761361,0.0638901,0.655902,0.233567,0.191494,0.193423,0.667069,0.949174,0.554937,0.0143989,0.330088,0.582695,0.0623879,0.469768,0.0851005,0.518544,0.274414,0.330538,0.744647,0.0872397,0.794847,0.87611,0.506567,0.795952,0.00192785,0.221743,0.394896,0.200558,0.966712,0.704764,0.147949,0.202732,0.0689706,0.23181,0.655623,0.934934,0.647283,0.931755,0.807135,|0.69283,0.0529954,0.288027,0.492526,0.666222,0.698834,0.878183,0.598996,0.633452,0.843389,0.932557,0.204265,0.163045,0.677632,0.990155,0.640384,0.274853,0.0588629,0.0869225,0.744568,0.716977,0.929845,0.971712,0.80531,0.41123,0.224797,0.687757,0.438576,0.687519,0.808505,0.000231087,0.11898,0.95443,0.531285,0.594386,0.489966,0.969031,0.179536,0.323735,0.220306,0.691824,0.348323,0.312268,0.620899,0.223526,0.355343,0.209431,0.611031,0.461232,0.646788,0.190449,0.170099,0.154975,0.630295,0.473859,0.169791,0.305084,0.120941,0.446637,0.612285,0.985028,0.848507,0.111176,0.0574567,0.582827,0.529978,0.229651,0.641072,0.0543956,0.104856,0.128358,0.374933,0.759126,0.879161,0.182254,0.236445,0.0088833,0.648274,0.70588,0.852651,0.197273,0.138031,0.503907,0.394608,0.696815,0.140069,0.163408,0.955799,0.709965,0.197691,0.0555435,0.19736,0.903981,0.865183,0.634643,0.396889,0.0879902,0.348739,0.945195,0.0303536,0.147323,0.325862,0.71753,0.405445,0.674784,0.576806,0.624876,0.655654,0.316308,0.251849,0.856021,0.566718,0.236113,0.920612,0.0486647,0.686549,0.146297,0.400801,0.0946612,0.546578,0.677918,0.342855,0.233552,0.859098,0.0441307,0.115276,0.549715,0.999458,0.293324,0.686416,0.272382,0.747036,0.568316,0.827157,0.3317,0.221781,0.1715,0.133221,0.900551,0.381179,0.0799213,0.0139772,0.247855,0.839614,0.894596,0.102394,0.300667,0.26258,0.686455,0.332303,0.115688,0.11046,0.484652,0.481904,0.374633,0.121799,0.280874,0.0967516,0.342145,0.230522,0.422096,0.65142,0.645709,0.793772,0.0707356,0.315603,0.272392,0.240223,0.567385,0.399063,0.688864,0.15582,0.457604,0.314016,0.86891,0.746659,0.559844,0.611122,0.943226,0.111765,0.820502,0.195086,0.780177,0.204027,0.294386,0.728533,0.70461,0.618175,0.0874193,0.248958,0.300223,0.500882,0.556578,0.9828,0.328463,0.185186,0.411509,0.101635,0.715413,0.713299,0.199843,0.698514,0.464699,0.613269,0.443822,0.735594,0.704256,0.00598866,0.456065,0.870909,0.0342602,0.984448,0.372567,0.0600954,0.0968408,0.747587,0.999865,0.833645,0.433694,0.599209,0.019309,0.42634,0.807878,0.608969,0.325242,0.813412,0.289642,0.834436,0.518041,0.582585,0.623292,0.128307,0.889754,0.500834,0.299331,0.49579,0.512768,0.419847,0.00593507,0.539409,0.861562,0.862934,0.684254,0.291497,0.342952,0.305419,0.0420275,0.0963346,0.154403,0.205444,0.489049,0.46865,0.380849,0.188313,0.89756,0.83654,0.488071,0.535741,0.361729,0.324356,0.31408,0.443741,0.541717,0.274708,0.411936,0.953266,0.546549,0.827239,0.0715153,0.845983,0.512905,0.990456,0.194242,0.645474,0.562971,0.169366,0.17343,0.986009,0.411056,0.181204,0.379668,0.106835,0.0454315,0.0866966,0.41366,0.4868,0.885943,0.645305,0.735342,0.900692,0.41764,0.596795,0.377832,0.112492,0.0362308,0.924272,0.0791788,0.955988,0.543885,0.282423,0.966789,0.957264,0.955669,0.274837,0.260553,0.0203268,0.194775,0.451606,0.182609,0.432264,0.0259563,0.62486,0.174693,0.970536,0.457762,0.309666,0.996481,0.137698,0.0817974,0.500372,0.930121,0.770912,0.942974,0.99016,0.127204,0.28596,0.941238,0.930354,0.350666,0.340414,0.633415,0.0221227,0.761983,0.891367,0.375308,0.336172,0.783008,0.261385,0.116061,0.081221,0.108859,0.142903,0.528234,0.732959,0.477925,0.301426,0.264321,0.795188,0.932419,0.596606,0.244171,0.506342,0.7899,0.114079,0.141185,0.202235,0.15107,0.164938,0.334977,0.660653,0.237105,0.681965,0.754349,0.0267572,0.0956912,0.580365,0.805011,0.421492,0.176389,0.495429,0.0822901,0.0854936,0.891197,0.980458,0.196345,0.86221,0.835677,0.521388,0.825933,0.522451,0.197545,0.0305489,0.411226,0.902782,0.794548,0.872095,0.333109,0.9198,0.79979,0.99963,0.89807,0.563552,0.430072,0.52725,0.150403,0.987802,0.412704,0.735525,0.129515,0.322156,0.0950807,0.529897,0.492957,0.192205,0.0517079,0.939312,0.0310182,0.340459,0.883701,0.577991,0.525659,0.738338,0.0368421,0.135409,0.231753,0.582797,0.525027,0.804907,0.704732,0.673517,0.5009,0.195988,0.727691,0.398479,0.638638,0.35772,0.400709,0.279757,0.891022,0.996732,0.323866,0.757944,0.646588,0.746233,0.10981,0.175567,0.239999,0.934942,0.219643,0.535373,0.631155,0.532038,0.437805,0.0939832,0.287916,0.664789,0.0315763,0.0376727,0.26229,0.95137,0.0848212,0.980256,0.0930812,0.60106,0.32076,0.742336,0.379166,0.943985,0.379998,0.477289,0.646377,0.952194,0.410495,0.372483,0.938094,0.211069,0.741382,0.314961,0.102884,0.176095,0.0108626,0.704988,0.337886,0.419303,0.198252,0.285815,0.0256826,0.726334,0.767757,0.888135,0.147133,0.214122,0.23733,0.451332,0.0500469,0.500772,0.28507,0.642783,0.79233,0.278533,0.354642,0.322223,0.295078,0.867301,0.872883,0.917077,0.811464,0.264793,0.556254,0.0889807,0.417534,0.880953,0.922813,0.878951,0.0641868,0.371814,0.194644,0.216066,0.133869,0.335057,0.832659,0.80887,0.437417,0.375055,0.833459,0.695038,0.566627,0.27889,0.255578,0.0697032,0.288897,0.221376,0.21563,0.0993317,0.0572273,0.597637,0.37855,0.892688,0.951883,0.245923,0.561819,0.709144,0.0176499,0.323562,0.432916,0.209262,0.783609,0.839743,0.180553,0.309765,0.941269,0.213348,0.0514554,0.893307,0.545213,0.643358,0.377577,0.867075,0.057703,0.843517,0.134081,0.32414,0.963126,0.467503,0.69681,0.538737,0.881566,0.404291,0.119274,0.0119187,0.388171,0.599782,0.784414,0.0318586,0.201362,0.885827,0.151902,0.442119,0.0247718,0.294431,0.217629,0.503852,0.286596,0.492993,0.759907,0.777467,0.00265235,0.0982358,0.8729,0.505361,0.474051,0.438503,0.426187,0.135955,0.449084,0.189137,0.485521,0.0747545,0.205714,0.491282,0.55247,0.843939,0.01248,0.138294,0.210846,0.285259,0.850257,0.990685,0.00807869,0.514243,0.675819,0.437892,0.928703,0.415986,0.0242558,0.979508,0.6173,0.457688,0.0923876,0.25238,0.262279,0.227756,0.0612431,0.540365,0.143058,0.60791,0.650512,0.853378,0.67312,0.891668,0.153546,0.766292,0.471098,0.478367,0.113226,0.156637,0.240086,0.0888532,0.518595,0.954837,0.501026,0.0437579,0.629143,0.62368,0.101271,0.11782,0.478385,0.926463,0.621739,0.350287,0.769044,0.716492,0.757536,0.410546,0.882893,0.909848,0.34183,0.465358,0.76696,0.683586,0.865032,0.473621,0.303196,0.128816,0.0126458,0.883797,0.559435,0.564808,0.0573425,0.247412,0.270553,0.549343,0.471063,0.241259,0.0127611,0.649098,0.797109,0.395904,0.448807,0.507164,0.418389,0.0196135,0.100187,0.881203,0.0153503,0.628848,0.853498,0.491361,0.453311,0.0332931,0.664859,0.730423,0.866225,0.938029,0.0701108,0.508834,0.405752,0.468003,0.283484,0.160857,0.484116,0.767541,0.659644,0.11797,0.189333,0.645235,0.451014,0.851344,0.325318,0.532745,0.542724,0.33039,0.368951,0.126108,0.615671,0.331727,0.556299,0.219117,0.516133,0.938681,0.0983569,0.425675,0.487211,0.582697,0.335325,0.970022,0.712236,0.669356,0.569399,0.146948,0.50933,0.00565898,0.438065,0.625942,0.108773,0.108736,0.227531,0.563128,0.19547,0.955785,0.81452,0.500645,0.334981,0.746083,0.352902,0.58143,0.0133086,0.646074,0.0857293,0.968929,0.595971,0.120065,0.586546,0.591902,0.745128,0.483207,0.464807,0.936996,0.844769,0.208636,0.22038,0.716819,0.275745,0.604901,0.6393,0.543191,0.421749,0.388972,0.655892,0.834713,0.706239,0.369308,0.218,0.311683,0.0846888,0.543094,0.551673,0.0898986,0.322942,0.266839,0.0732152,0.467135,0.675508,0.616061,0.626391,0.345294,0.138873,0.855811,0.438075,0.128667,0.814157,0.418745,0.967107,0.528362,0.0358427,0.775969,0.970361,0.253137,0.762847,0.815969,0.668961,0.432436,0.984952,0.580186,0.146659,0.170302,0.253351,0.440409,0.129719,0.291899,0.153859,0.566619,0.307382,0.680815,0.360186,0.462145,0.757122,0.940533,0.414536,0.930222,0.759794,0.140407,0.215359,0.420508,0.0836068,0.797735,0.902899,0.672568,0.241136,0.919414,0.837604,0.938913,0.256417,0.218069,0.848114,0.449257,0.571784,0.827517,0.62962,0.898733,0.990465,0.979793,0.985578,0.111313,0.904942,0.30116,0.867209,0.146967,0.281451,0.523408,0.903918,0.223214,0.997232,0.341903,0.433727,0.0753084,0.25555,0.164326,0.252188,0.278361,0.313581,0.75986,0.983098,0.101744,0.0287392,0.939417,0.094048,0.786325,0.418159,0.546653,0.433744,0.116695,0.69855,0.987399,0.834163,0.243726,0.928654,0.38642,0.15162,0.131873,0.694422,0.671432,0.150648,0.249813,0.384303,0.980963,0.730219,0.599705,0.776638,0.0785248,0.468381,0.737274,0.402348,0.0777266,0.815495,0.680044,0.955674,0.887925,0.29982,0.860432,0.232367,0.180866,0.699364,0.454743,0.959024,0.352101,0.468907,0.70369,0.330273,0.901024,0.754105,0.896654,0.730193,0.117645,0.781776,0.00523627,0.437628,0.374307,0.489556,0.717394,0.0510811,0.0391065,0.666978,0.229654,0.810325,0.871613,0.575608,0.525986,0.306015,0.817305,0.707573,0.875467,0.444432,0.238337,0.409476,0.23157,0.861005,0.169408,0.871473,0.847652,0.478114,0.947978,0.885357,0.550862,0.545106,0.486831,0.272491,0.415845,0.610179,0.286682,0.844218,0.292644,0.379397,0.0242762,0.727973,0.16693,0.769867,0.712524,0.866093,0.837857,0.0196868,0.823302,0.525051,0.178393,0.51125,0.369075,0.66816,0.963345,0.0923393,0.207039,0.243498,0.669245,0.092768,0.568274,0.880588,0.181088,0.62902,0.146454,0.0723869,0.840261,0.502175,0.438065,0.35431,0.290917,0.246839,0.842385,0.401731,0.598241,0.707871,0.459999,0.310284,0.729346,0.331166,0.56894,0.0838138,0.332475,0.992082,0.337181,0.909235,0.559532,0.391359,0.0129309,0.706148,0.795826,0.597553,0.0764877,0.165509,0.488797,0.595384,0.913862,|0.365635,0.515308,0.573526,0.819671,0.728124,0.226296,0.20913,0.69934,0.452911,0.496375,0.316707,0.035008,0.104895,0.792059,0.533564,0.493764,0.0352408,0.0440371,0.610631,0.94408,0.944116,0.218932,0.944493,0.692154,0.406042,0.835456,0.239641,0.42751,0.634335,0.0586519,0.163649,0.151876,0.25701,0.869827,0.722007,0.990733,0.853893,0.924796,0.863766,0.577619,0.17109,0.466187,0.521403,0.777027,0.0731391,0.244209,0.233083,0.651112,0.231768,0.648904,0.552753,0.612015,0.537277,0.498446,0.635468,0.940041,0.442914,0.289557,0.247646,0.104229,0.649616,0.563263,0.808947,0.614581,0.245174,0.850885,0.342447,0.271128,0.570981,0.406793,0.349204,0.283399,0.331851,0.830692,0.670971,0.816548,0.311519,0.293124,0.452511,0.367588,0.319982,0.111648,0.550841,0.231679,0.612862,0.167486,0.440876,0.48617,0.27685,0.189833,0.609227,0.344978,0.445292,0.156226,0.892105,0.248689,0.79973,0.619942,0.194572,0.405557,0.541747,0.984003,0.471233,0.0663962,0.401199,0.658063,0.845612,0.206977,0.0674312,0.947386,0.507739,0.723619,0.812355,0.940161,0.356831,0.0267892,0.907415,0.0800844,0.697017,0.636794,0.93445,0.521855,0.407162,0.398551,0.499501,0.371919,0.18373,0.634885,0.268915,0.614931,0.777803,0.921476,0.835563,0.554168,0.74868,0.288656,0.697281,0.922396,0.111705,0.895779,0.411368,0.843726,0.0107443,0.667365,0.953394,0.0972729,0.017068,0.339428,0.0996057,0.405639,0.0440065,0.78146,0.0482808,0.628691,0.416676,0.933267,0.9563,0.684867,0.627846,0.703614,0.910695,0.675213,0.709892,0.879032,0.406492,0.260278,0.41253,0.0288497,0.795664,0.55061,0.0604608,0.891509,0.35946,0.757205,0.772488,0.446239,0.916453,0.496236,0.108882,0.81504,0.00219756,0.989394,0.169846,0.680968,0.0259796,0.334287,0.933522,0.0495768,0.519387,0.178436,0.131068,0.0604875,0.753399,0.499184,0.207488,0.643444,0.913659,0.791087,0.726975,0.0408026,0.734585,0.905459,0.598649,0.836241,0.163306,0.910568,0.228742,0.174815,0.861064,0.721525,0.482182,0.416861,0.443925,0.276033,0.641789,0.199053,0.073041,0.961947,0.3826,0.960811,0.429421,0.53022,0.783831,0.616371,0.219908,0.044899,0.360717,0.930319,0.117464,0.900742,0.752745,0.614359,0.31109,0.171123,0.174263,0.316446,0.879547,0.31821,0.688526,0.664087,0.418962,0.0376629,0.35592,0.824994,0.193498,0.185089,0.498973,0.622024,0.25231,0.870863,0.885989,0.789683,0.811253,0.62812,0.83717,0.0866604,0.676465,0.12206,0.400916,0.951747,0.89951,0.276457,0.256592,0.196219,0.797175,0.0467834,0.918377,0.305488,0.12975,0.760256,0.314838,0.526479,0.705459,0.731014,0.785592,0.713985,0.768323,0.411152,0.679858,0.783041,0.348367,0.0413749,0.326034,0.979445,0.22016,0.898748,0.672874,0.214412,0.140299,0.410052,0.251937,0.944351,0.495869,0.0156932,0.214915,0.952664,0.721869,0.0991201,0.928912,0.547203,0.0973844,0.61806,0.990811,0.898031,0.920762,0.776389,0.611852,0.153075,0.433132,0.869688,0.489711,0.984049,0.721456,0.332415,0.582335,0.0595689,0.224097,0.110062,0.7631,0.549117,0.9288,0.317541,0.813653,0.36007,0.808788,0.0356683,0.225126,0.0713986,0.510092,0.00837398,0.604625,0.99467,0.431783,0.76154,0.0483446,0.0749184,0.842739,0.213629,0.851924,0.0118641,0.745093,0.656338,0.801384,0.679374,0.294053,0.128766,0.399861,0.0571182,0.0154834,0.97681,0.960799,0.454203,0.660813,0.263506,0.011502,0.142428,0.441706,0.971772,0.915598,0.727547,0.812172,0.72471,0.480408,0.917082,0.243551,0.4995,0.607997,0.79701,0.776938,0.616585,0.404903,0.944555,0.276715,0.140866,0.0464233,0.612671,0.756662,0.918532,0.693144,0.0357631,0.334242,0.58726,0.968925,0.811895,0.0296908,0.131855,0.191204,0.443194,0.285649,0.525604,0.0370979,0.631909,0.448636,0.970666,0.514567,0.700853,0.7627,0.812268,0.0280775,0.945949,0.598026,0.555731,0.141986,0.38818,0.173311,0.555111,0.198995,0.152533,0.232046,0.747894,0.499717,0.942765,0.881452,0.234893,0.266231,0.634139,0.162244,0.12534,0.0242773,0.573666,0.685669,0.926173,0.708448,0.727336,0.47575,0.775767,0.468879,0.82655,0.0783658,0.646472,0.0728432,0.463002,0.254427,0.783627,0.106678,0.591063,0.621346,0.464879,0.925611,0.849927,0.442542,0.458859,0.251551,0.546886,0.60511,0.214931,0.885438,0.754226,0.178454,0.0650364,0.964548,0.325908,0.364078,0.256703,0.711167,0.549474,0.115276,0.277301,0.417715,0.627617,0.603693,0.271841,0.426656,0.599321,0.328474,0.752372,0.677583,0.460969,0.734571,0.115205,0.893542,0.756556,0.716635,0.287111,0.808951,0.879567,0.840245,0.969852,0.682408,0.55819,0.464821,0.438341,0.927102,0.502141,0.458154,0.885787,0.33439,0.99983,0.193344,0.870109,0.574385,0.569339,0.978437,0.496225,0.0873995,0.740235,0.627113,0.773305,0.24648,0.987326,0.965265,0.778885,0.312287,0.438043,0.10983,0.498627,0.351665,0.510299,0.595759,0.412903,0.263362,0.765054,0.772919,0.882126,0.0862713,0.77474,0.352037,0.75831,0.458723,0.112593,0.788161,0.483159,0.136172,0.188338,0.0209488,0.290037,0.163672,0.899903,0.980026,0.437122,0.394756,0.709788,0.563111,0.941099,0.712553,0.180378,0.479086,0.827094,0.857545,0.17152,0.330007,0.884435,0.8934,0.58063,0.189291,0.659106,0.0302058,0.874142,0.174471,0.344636,0.340536,0.591892,0.545595,0.175291,0.609541,0.220056,0.990241,0.754033,0.161296,0.767444,0.230579,0.842949,0.00637865,0.741094,0.396143,0.496536,0.71748,0.753035,0.0761744,0.951297,0.634715,0.0799495,0.84642,0.722133,0.409529,0.0809398,0.335885,0.703801,0.431969,0.832849,0.100174,0.695681,0.801394,0.342156,0.268123,0.478196,0.0388609,0.648762,0.32754,0.78876,0.506115,0.769375,0.686292,0.302221,0.12156,0.958136,0.74636,0.919076,0.72177,0.883329,0.435037,0.103133,0.0397637,0.908078,0.399941,0.323692,0.934606,0.365381,0.129591,0.000630081,0.358073,0.215552,0.39818,0.24606,0.382975,0.571368,0.290118,0.276555,0.322332,0.307296,0.739588,0.553291,0.258775,0.130969,0.88446,0.369877,0.411276,0.612379,0.795307,0.985062,0.646523,0.378873,0.382684,0.905029,0.0549215,0.918156,0.187446,0.62686,0.570827,0.509016,0.184105,0.138549,0.497986,0.00552964,0.360383,0.97161,0.804728,0.66479,0.00515872,0.993979,0.748462,0.646886,0.0556574,0.619858,0.821254,0.968936,0.861716,0.993257,0.180207,0.0379756,0.64669,0.766835,0.363797,0.646513,0.428406,0.586856,0.792695,0.615581,0.339517,0.0580153,0.656188,0.0389619,0.113859,0.497193,0.177031,0.166115,0.709876,0.618179,0.374675,0.049313,0.154054,0.314191,0.370933,0.00720155,0.992112,0.472095,0.137886,0.869872,0.487162,0.429642,0.845779,0.465232,0.19616,0.995664,0.301359,0.463877,0.972069,0.536398,0.869083,0.29071,0.72657,0.970245,0.123137,0.867684,0.608127,0.669469,0.925331,0.588304,0.171923,0.979871,0.288769,0.0163046,0.518338,0.35566,0.342517,0.939302,0.0368601,0.840807,0.520916,0.420237,0.261991,0.0261323,0.621058,0.372435,0.458161,0.699813,0.826471,0.650605,0.255636,0.165286,0.315493,0.526207,0.584932,0.0847,0.423672,0.748047,0.933801,0.313109,0.878602,0.198116,0.0625994,0.992474,0.659547,0.2338,0.667158,0.76093,0.693183,0.610765,0.015933,0.156439,0.116421,0.332875,0.567909,0.892655,0.685437,0.353948,0.0743251,0.147295,0.974496,0.779751,0.00282621,0.910425,0.0502859,0.268949,0.236464,0.84433,0.279787,0.659767,0.558718,0.918364,0.833425,0.276511,0.717308,0.458017,0.96392,0.133161,0.303837,0.921307,0.0504839,0.868915,0.623926,0.863422,0.806033,0.104676,0.965812,0.330138,0.731274,0.370177,0.871029,0.104158,0.594039,0.319119,0.0471555,0.511396,0.582157,0.127461,0.256082,0.211619,0.529935,0.336516,0.149059,0.816501,0.861658,0.539299,0.312558,0.0528995,0.04708,0.913065,0.00812298,0.459141,0.359653,0.37809,0.469674,0.954755,0.941211,0.640697,0.636985,0.139085,0.697185,0.614858,0.724321,0.11903,0.500524,0.0134627,0.892112,0.256808,0.770063,0.736234,0.85376,0.75392,0.489831,0.029263,0.657617,0.00471848,0.791641,0.620366,0.277265,0.483137,0.810316,0.479993,0.229173,0.604534,0.901062,0.312295,0.00804061,0.0863734,0.169597,0.762635,0.765514,0.834649,0.318854,0.942414,0.094821,0.0169294,0.778961,0.0369932,0.17233,0.71325,0.745851,0.210293,0.716715,0.128306,0.439036,0.375357,0.650544,0.84466,0.946122,0.0487903,0.140989,0.547149,0.0160472,0.990647,0.725987,0.513824,0.691503,0.611611,0.294447,0.738949,0.750534,0.557226,0.458847,0.211772,0.111293,0.405971,0.417973,0.621838,0.561585,0.0552042,0.630909,0.803461,0.37614,0.607751,0.648337,0.590889,0.966121,0.837887,0.406067,0.475812,0.681429,0.830039,0.678529,0.411686,0.727157,0.914766,0.838504,0.7328,0.699362,0.32559,0.688318,0.502209,0.521923,0.964965,0.964551,0.465443,0.503983,0.393849,0.490256,0.516811,0.250841,0.597662,0.666206,0.227617,0.00711709,0.398529,0.903167,0.770368,0.0159346,0.914415,0.0204488,0.429476,0.879956,0.764389,0.255449,0.464019,0.545961,0.606209,0.257572,0.760527,0.148915,0.814671,0.349695,0.0319682,0.383437,0.475613,0.611994,0.873765,0.729799,0.0529218,0.672745,0.0267286,0.773008,0.235026,0.793318,0.158028,0.835926,0.135117,0.337712,0.409898,0.686734,0.705337,0.097974,0.696963,0.674938,0.745956,0.166551,0.410621,0.269619,0.688496,0.950183,0.221059,0.689497,0.688906,0.348159,0.818118,0.765479,0.147117,0.194872,0.0899612,0.707682,0.927915,0.568099,0.459561,0.426211,0.474506,0.615547,0.279502,0.0718577,0.771415,0.745875,0.840647,0.910688,0.961726,0.893129,0.616962,0.374531,0.744659,0.711983,0.86911,0.550361,0.740516,|0.845626,0.393856,0.950911,0.892127,0.631344,0.365461,0.785803,0.402944,0.0024398,0.554831,0.20775,0.0246088,0.591864,0.747575,0.220311,0.133275,0.14209,0.755961,0.495146,0.071479,0.0985045,0.913193,0.902889,0.383912,0.130772,0.315826,0.0627549,0.890848,0.815633,0.993867,0.547733,0.23364,0.656897,0.181682,0.8404,0.55595,0.249076,0.587215,0.507033,0.337709,0.503354,0.79191,0.854281,0.46604,0.604275,0.896508,0.720997,0.289236,0.527709,0.524259,0.945208,0.138781,0.129474,0.320563,0.618088,0.381704,0.550088,0.893772,0.940871,0.713669,0.535309,0.977574,0.125193,0.382975,0.719193,0.0408208,0.635428,0.276945,0.788977,0.776554,0.274448,0.391736,0.647267,0.053022,0.786208,0.567739,0.218945,0.332466,0.266608,0.765654,0.125549,0.0267798,0.606148,0.656368,0.611173,0.587804,0.937396,0.627966,0.337491,0.536088,0.663036,0.333957,0.129479,0.329548,0.909346,0.00962639,0.724554,0.987121,0.62284,0.727371,0.630756,0.118032,0.710146,0.252632,0.577369,0.107478,0.690563,0.208744,0.762525,0.541985,0.0797428,0.744012,0.759375,0.0843786,0.0629241,0.555587,0.477947,0.766807,0.152678,0.319102,0.584668,0.515641,0.0837394,0.220914,0.190631,0.0392355,0.761659,0.844246,0.0232844,0.20388,0.677168,0.139542,0.121183,0.293844,0.271373,0.490389,0.493143,0.135153,0.915694,0.675841,0.937394,0.346637,0.21127,0.358409,0.985912,0.898509,0.849371,0.572464,0.675324,0.926292,0.269784,0.608351,0.569121,0.194303,0.95934,0.324845,0.964125,0.344708,0.0973161,0.529045,0.979573,0.529249,0.798418,0.950601,0.395972,0.70072,0.871381,0.966714,0.0708646,0.196276,0.533304,0.872128,0.497178,0.952198,0.202949,0.872442,0.925055,0.467531,0.928207,0.35654,0.5971,0.737529,0.477753,0.701533,0.0459837,0.160115,0.934318,0.0355203,0.310916,0.741152,0.759039,0.103711,0.110843,0.612754,0.617298,0.854589,0.968032,0.498429,0.360164,0.117869,0.162006,0.443878,0.498118,0.40487,0.385316,0.514494,0.654636,0.212397,0.341216,0.320834,0.528772,0.770208,0.856608,0.282417,0.297695,0.712666,0.220626,0.0370227,0.498906,0.256422,0.870436,0.746261,0.53161,0.83322,0.743847,0.131643,0.574334,0.854051,0.239767,0.113073,0.376587,0.570175,0.825317,0.264647,0.394527,0.651449,0.0277463,0.0272202,0.532506,0.736178,0.938313,0.682039,0.188959,0.701374,0.410537,0.110426,0.309888,0.181343,0.0857197,0.243883,0.174013,0.0874351,0.613575,0.274814,0.635988,0.67724,0.8978,0.429812,0.432647,0.453053,0.307402,0.603759,0.283951,0.0116121,0.503588,0.640577,0.055791,0.0330403,0.54168,0.134318,0.76682,0.0252891,0.188367,0.94295,0.717261,0.391759,0.750454,0.430251,0.422609,0.843938,0.562168,0.840687,0.570559,0.394613,0.444947,0.721362,0.828877,0.933082,0.373955,0.631119,0.450315,0.97366,0.180763,0.0486518,0.314999,0.221776,0.251281,0.351702,0.315594,0.36314,0.951922,0.258265,0.930647,0.70271,0.166799,0.0283317,0.482947,0.299924,0.571057,0.729202,0.658165,0.798244,0.767135,0.318316,0.0674866,0.328966,0.191083,0.450651,0.786481,0.90263,0.552892,0.217264,0.387578,0.378293,0.4375,0.992432,0.408834,0.72754,0.979016,0.661302,0.874184,0.408091,0.79031,0.601181,0.753329,0.0877272,0.63765,0.145706,0.110353,0.42336,0.97648,0.169789,0.0370116,0.527044,0.263819,0.155325,0.929907,0.559962,0.733333,0.152316,0.530842,0.491099,0.612286,0.0752937,0.330358,0.783092,0.368434,0.200531,0.0472769,0.0194681,0.00232738,0.919772,0.276834,0.0181752,0.381473,0.858246,0.165866,0.590746,0.502124,0.743171,0.938625,0.789521,0.60632,0.557398,0.155448,0.0683612,0.298209,0.555907,0.351009,0.553679,0.491396,0.970329,0.669219,0.598235,0.71667,0.929694,0.490328,0.56753,0.694289,0.407456,0.00279939,0.775286,0.654004,0.981667,0.594088,0.248421,0.745696,0.661465,0.988624,0.332881,0.0345032,0.45936,0.0144854,0.22648,0.233147,0.724761,0.717877,0.249391,0.755374,0.0388584,0.570507,0.0732797,0.406061,0.391443,0.749413,0.590087,0.122743,0.996346,0.200681,0.841279,0.416454,0.881496,0.882552,0.102388,0.826725,0.243928,0.60225,0.474985,0.759525,0.91575,0.912489,0.699318,0.656046,0.555522,0.0215276,0.316347,0.32504,0.786616,0.185066,0.491943,0.933938,0.940186,0.897422,0.245815,0.36236,0.199744,0.176952,0.512495,0.287133,0.858177,0.233984,0.230545,0.278797,0.467846,0.473984,0.850456,0.849012,0.570509,0.506337,0.646754,0.998686,0.137249,0.492858,0.184399,0.0657459,0.170781,0.0945469,0.654446,0.252556,0.276239,0.503435,0.892092,0.356573,0.249166,0.859036,0.802423,0.997892,0.817148,0.10417,0.496351,0.531134,0.56655,0.106271,0.456291,0.712537,0.359027,0.0813283,0.777913,0.701741,0.173176,0.48522,0.699363,0.324579,0.529919,0.617239,0.977199,0.399908,0.16004,0.085713,0.992673,0.145739,0.990485,0.933448,0.197365,0.912608,0.406057,0.681718,0.209266,0.253227,0.777465,0.986175,0.582524,0.617933,0.987574,0.788664,0.259388,0.0135849,0.0027867,0.989969,0.125776,0.978803,0.811823,0.421368,0.066202,0.929373,0.698036,0.780029,0.357702,0.467058,0.122408,0.0872405,0.891564,0.692514,0.164847,0.168527,0.325948,0.14567,0.0918514,0.832376,0.152253,0.0349294,0.0365196,0.524939,0.520925,0.114571,0.699894,0.895454,0.631881,0.654798,0.464635,0.00598246,0.529719,0.666572,0.147739,0.936496,0.327461,0.874516,0.222608,0.689123,0.748543,0.869199,0.020642,0.399717,0.386448,0.740145,0.309644,0.366296,0.372469,0.877804,0.207787,0.730505,0.386987,0.635522,0.0778553,0.986855,0.21298,0.534027,0.700096,0.687752,0.738499,0.883054,0.860412,0.375661,0.430918,0.124104,0.214961,0.342291,0.133086,0.334232,0.41143,0.565678,0.173474,0.626806,0.963829,0.841155,0.00326276,0.73074,0.941859,0.0426895,0.907706,0.56776,0.791878,0.289321,0.35516,0.33792,0.013849,0.162204,0.630779,0.178971,0.950199,0.490529,0.459569,0.910256,0.590734,0.186859,0.712313,0.260556,0.24731,0.421567,0.610077,0.320583,0.571876,0.173963,0.557802,0.334407,0.645458,0.525434,0.354414,0.249749,0.342664,0.8698,0.660382,0.307708,0.261478,0.598757,0.337644,0.450959,0.888126,0.897032,0.807415,0.440302,0.53501,0.15035,0.725271,0.156925,0.631539,0.103704,0.208174,0.539217,0.163954,0.609698,0.238379,0.884674,0.682862,0.816521,0.935066,0.287185,0.769923,0.888384,0.261804,0.552229,0.230628,0.45243,0.941725,0.981692,0.0386413,0.996274,0.272709,0.763084,0.911667,0.318742,0.126309,0.255579,0.885864,0.872776,0.270925,0.219856,0.881247,0.940441,0.261762,0.694551,0.248099,0.347058,0.609832,0.50396,0.382356,0.645988,0.338789,0.405608,0.529474,0.920545,0.397907,0.874755,0.797951,0.753456,0.220528,0.437292,0.234609,0.293089,0.831924,0.114886,0.153549,0.0813573,0.364511,0.824516,0.340889,0.583501,0.151556,0.336737,0.0446306,0.351531,0.391553,0.109594,0.896816,0.249796,0.235566,0.0774144,0.393632,0.00922579,0.477376,0.242466,0.401085,0.37075,0.971614,0.497303,0.581519,0.528248,0.622091,0.647251,0.256445,0.796127,0.785945,0.801195,0.333162,0.699737,0.0416636,0.457093,0.808054,0.121188,0.796306,0.546591,0.89092,0.0439122,0.219145,0.709806,0.344996,0.0118613,0.849859,0.501152,0.962659,0.84409,0.952849,0.632687,0.910254,0.586496,0.395377,0.997871,0.253221,0.642427,0.965898,0.116515,0.418005,0.671908,0.187625,0.825154,0.882688,0.425719,0.851101,0.514235,0.228254,0.805647,0.386607,0.180466,0.89966,0.577415,0.763337,0.792326,0.193283,0.0291489,0.993449,0.659431,0.438432,0.415843,0.814215,0.196825,0.645495,0.944459,0.0740759,0.452804,0.0517588,0.716666,0.912781,0.727141,0.582554,0.569209,0.220602,0.545919,0.150829,0.656411,0.69006,0.332377,0.415105,0.894391,0.436875,0.430812,0.70514,0.128879,0.0563368,0.575806,0.000978947,0.0177978,0.0267105,0.454409,0.59966,0.495202,0.375435,0.708515,0.0340099,0.0247241,0.775727,0.616501,0.230842,0.334929,0.254049,0.882937,0.672511,0.967022,0.220866,0.729272,0.305955,0.107707,0.0802454,0.40063,0.0734764,0.785788,0.102699,0.52486,0.149611,0.444439,0.411797,0.740828,0.427694,0.0616101,0.630508,0.73996,0.0448718,0.509195,0.427722,0.961904,0.647371,0.66912,0.687326,0.473592,0.0173464,0.871658,0.0683501,0.104199,0.926986,0.232705,0.611575,0.950543,0.00399846,0.958161,0.652887,0.696245,0.635301,0.0975043,0.348145,0.170754,0.375607,0.408856,0.232902,0.183774,0.041135,0.687998,0.669976,0.50371,0.612424,0.57765,0.427234,0.40256,0.127916,0.95162,0.800452,0.0353728,0.0715708,0.704109,0.714225,0.533315,0.67375,0.881024,0.204743,0.139491,0.676162,0.939821,0.801077,0.276755,0.717439,0.972236,0.99028,0.860863,0.543439,0.740122,0.275175,0.632844,0.0129996,0.408737,0.81408,0.147299,0.511201,0.42079,0.0489507,0.825235,0.288603,0.380165,0.241819,0.918451,0.913615,0.553272,0.353581,0.323495,0.446316,0.0880455,0.978185,0.559319,0.198527,0.018163,0.124938,0.467702,0.817975,0.0402536,0.014708,0.188767,0.404979,0.356818,0.464727,0.759039,0.342382,0.838201,0.777192,0.6619,0.318442,0.851201,0.05019,0.943771,0.756658,0.137777,0.13616,0.958862,0.851306,0.551382,0.434757,0.707494,0.111495,0.925365,0.386866,0.509287,0.131372,0.191275,0.92172,0.281582,0.537652,0.00921136,0.582123,0.896393,0.163433,0.278759,0.84111,0.417076,0.00655025,0.220134,0.203558,0.900209,0.170188,0.827487,0.173452,0.260386,0.993335,0.646376,0.416641,0.30877,0.149382,0.110578,0.430508,0.298958,0.242685,0.619676,0.655317,0.881846,0.819973,0.564261,0.660889,0.601471,0.578531,0.479543,0.436017,0.595983,0.516613,0.469391,0.649248,|0.108018,0.215268,0.815433,0.63174,0.742624,0.103661,0.0241892,0.43904,0.00923932,0.845419,0.389709,0.142594,0.335826,0.116434,0.655014,0.173209,0.626442,0.325312,0.195672,0.142002,0.690313,0.884469,0.140851,0.210055,0.549639,0.912018,0.0130779,0.976144,0.206902,0.739911,0.228681,0.00701141,0.615591,0.559398,0.396812,0.346502,0.59841,0.19392,0.60595,0.608916,0.852215,0.74624,0.253222,0.0652981,0.724257,0.789424,0.692094,0.654225,0.0926231,0.280643,0.990729,0.824158,0.82007,0.577896,0.0857965,0.0859178,0.674426,0.555322,0.690543,0.260803,0.0180128,0.565949,0.447193,0.461468,0.299355,0.172564,0.487438,0.0780855,0.301994,0.254685,0.0377002,0.398186,0.852921,0.0893391,0.403709,0.907301,0.493388,0.203563,0.236416,0.215733,0.192205,0.145436,0.91902,0.757095,0.458368,0.840436,0.799181,0.954273,0.64303,0.755769,0.987746,0.559322,0.619307,0.227281,0.655646,0.474899,0.703761,0.819491,0.0284724,0.0246834,0.933706,0.643041,0.750978,0.156885,0.696563,0.751182,0.509975,0.500935,0.141868,0.469292,0.555884,0.915647,0.845717,0.443841,0.135328,0.858979,0.744387,0.213571,0.754995,0.146193,0.235829,0.14766,0.662392,0.629358,0.777832,0.227089,0.178884,0.802373,0.773514,0.332301,0.679247,0.550891,0.460507,0.0475956,0.785638,0.0210052,0.203673,0.912251,0.637113,0.0990037,0.0942158,0.91834,0.170887,0.524841,0.438995,0.195606,0.197981,0.521845,0.316332,0.425426,0.179535,0.633044,0.553105,0.418976,0.294065,0.034245,0.227955,0.830328,0.205233,0.282446,0.614581,0.242074,0.171036,0.998562,0.901586,0.398145,0.292626,0.0644593,0.224312,0.718314,0.147902,0.0925854,0.24568,0.0629979,0.362952,0.593438,0.208706,0.829792,0.473669,0.119116,0.321431,0.94745,0.575378,0.835677,0.00710553,0.161604,0.00467753,0.986823,0.739721,0.687099,0.254255,0.36161,0.56769,0.116931,0.413034,0.107926,0.424241,0.249837,0.833025,0.0666153,0.669939,0.0994735,0.322092,0.0529711,0.758034,0.631162,0.905396,0.480926,0.351076,0.130029,0.805516,0.386428,0.0168176,0.743065,0.270168,0.915274,0.027711,0.932888,0.00931948,0.192177,0.084967,0.174599,0.888381,0.0720111,0.443499,0.923986,0.505738,0.942088,0.336893,0.399725,0.931998,0.951158,0.474969,0.0905773,0.563203,0.210843,0.648244,0.791274,0.309197,0.585759,0.843625,0.327362,0.740249,0.361223,0.760651,0.32322,0.953599,0.880125,0.836156,0.564879,0.702987,0.240254,0.97902,0.364814,0.847659,0.551575,0.524007,0.354377,0.933326,0.217473,0.588608,0.401748,0.978673,0.0278915,0.625686,0.702846,0.520296,0.0745656,0.493899,0.00817364,0.310833,0.930784,0.531257,0.193693,0.0872834,0.573248,0.567003,0.487673,0.249969,0.581609,0.906633,0.388366,0.468899,0.000833213,0.11955,0.404691,0.865135,0.659965,0.221635,0.478883,0.0756658,0.226502,0.630737,0.472412,0.0455892,0.710932,0.0793453,0.536358,0.621636,0.56246,0.811569,0.179599,0.633584,0.519143,0.281455,0.257872,0.793513,0.393366,0.161409,0.786824,0.825894,0.356518,0.96086,0.947509,0.282056,0.117658,0.997663,0.577477,0.72014,0.736787,0.791934,0.945689,0.440283,0.728707,0.275275,0.0768222,0.0831003,0.0586073,0.701685,0.359108,0.0957058,0.787587,0.260931,0.75328,0.0189559,0.31705,0.161272,0.749072,0.00206208,0.119273,0.609621,0.582025,0.276974,0.448525,0.905552,0.426549,0.148319,0.61098,0.924657,0.951499,0.737612,0.288652,0.513086,0.113438,0.322019,0.511138,0.469768,0.5966,0.750022,0.271896,0.337753,0.567466,0.853162,0.128002,0.0693425,0.293815,0.20814,0.051735,0.654947,0.582974,0.76683,0.22031,0.993333,0.267717,0.0205726,0.361349,0.303162,0.913678,0.213021,0.987285,0.718173,0.789969,0.0758283,0.112103,0.215527,0.519113,0.891919,0.158451,0.838054,0.532287,0.579245,0.549486,0.20126,0.963637,0.153995,0.217682,0.51291,0.641075,0.619994,0.607688,0.315301,0.827359,0.296472,0.157801,0.310669,0.424571,0.209749,0.045899,0.444426,0.535568,0.670004,0.404834,0.249192,0.313103,0.692378,0.777103,0.267957,0.431679,0.991758,0.218916,0.398159,0.77259,0.231515,0.341554,0.456978,0.837204,0.0308414,0.214652,0.63658,0.913001,0.981442,0.067454,0.51416,0.416664,0.402734,0.41132,0.904818,0.624526,0.186184,0.400421,0.252138,0.559662,0.799704,0.950583,0.376263,0.23003,0.826615,0.0782391,0.816231,0.663291,0.969276,0.45062,0.551923,0.440848,0.717442,0.995056,0.833266,0.392758,0.195442,0.0580887,0.374151,0.0693799,0.317476,0.0493766,0.301508,0.437497,0.612207,0.639121,0.709448,0.127816,0.591754,0.529315,0.266614,0.385968,0.400152,0.27579,0.015837,0.966043,0.497344,0.992451,0.699308,0.830055,0.0297158,0.995408,0.245912,0.17355,0.450898,0.825719,0.413798,0.486908,0.00788039,0.56175,0.586707,0.154476,0.0798277,0.699905,0.188794,0.644249,0.780182,0.794045,0.211777,0.626678,0.887218,0.324956,0.743148,0.693246,0.207392,0.54037,0.266927,0.538319,0.752031,0.401181,0.51766,0.615182,0.867219,0.112617,0.0300862,0.0773616,0.428611,0.226017,0.387393,0.688209,0.839268,0.332401,0.404459,0.664459,0.0562945,0.0212329,0.595141,0.6962,0.335207,0.0692059,0.0260682,0.84848,0.383335,0.894452,0.435536,0.285675,0.08281,0.810134,0.167062,0.884018,0.801754,0.6118,0.613329,0.862033,0.408839,0.031295,0.364116,0.8684,0.940774,0.593265,0.689606,0.707012,0.688445,0.446193,0.784085,0.576028,0.341046,0.935468,0.632879,0.359419,0.70249,0.114773,0.0971869,0.455445,0.278094,0.984497,0.231003,0.0608009,0.0504941,0.450429,0.718158,0.575591,0.490045,0.569233,0.963579,0.181786,0.0706517,0.29803,0.315691,0.541048,0.562068,0.0831079,0.153632,0.943066,0.262203,0.256254,0.173487,0.269227,0.629544,0.777851,0.0284547,0.519022,0.372275,0.438193,0.81859,0.429922,0.677406,0.284418,0.183594,0.498252,0.439739,0.0390022,0.299537,0.926002,0.261646,0.00346917,0.757339,0.0559158,0.169931,0.255729,0.980874,0.448636,0.978941,0.611455,0.789479,0.54263,0.270637,0.102616,0.426191,0.356685,0.963208,0.96984,0.729912,0.302998,0.219429,0.23144,0.951598,0.592151,0.832754,0.686001,0.170449,0.289588,0.530065,0.769175,0.612972,0.404438,0.645913,0.229719,0.875031,0.11889,0.930934,0.930645,0.512681,0.211612,0.544417,0.806868,0.546778,0.462686,0.274743,0.58547,0.532448,0.491083,0.977976,0.154793,0.65681,0.369674,0.723083,0.212474,0.970586,0.835069,0.985051,0.62064,0.124468,0.838183,0.565372,0.814537,0.349191,0.0392775,0.659492,0.279646,0.645422,0.551627,0.606852,0.949585,0.626431,0.72684,0.0883273,0.424205,0.0663922,0.0714309,0.768851,0.748706,0.738957,0.795406,0.117438,0.198464,0.24552,0.197821,0.905606,0.379239,0.076395,0.869007,0.976564,0.205393,0.504873,0.719953,0.857641,0.836533,0.0419085,0.843329,0.947691,0.965937,0.460502,0.704773,0.556866,0.704476,0.274547,0.0231575,0.23362,0.608835,0.276327,0.953757,0.266882,0.947232,0.612182,0.409834,0.98296,0.798497,0.684104,0.78061,0.965841,0.458077,0.609663,0.468867,0.0526208,0.321968,0.00849456,0.963228,0.353346,0.629319,0.955973,0.243364,0.955898,0.216083,0.482141,0.429444,0.677718,0.598331,0.342524,0.283677,0.16287,0.90771,0.466199,0.434189,0.403301,0.130588,0.873526,0.207087,0.0774207,0.341172,0.468045,0.776213,0.620117,0.277779,0.969437,0.421334,0.76263,0.29751,0.231987,0.622908,0.0317535,0.435872,0.426124,0.142762,0.166702,0.513356,0.703677,0.720699,0.225938,0.103359,0.0784094,0.653053,0.233376,0.345998,0.471139,0.79817,0.814026,0.686151,0.889029,0.945331,0.580363,0.830445,0.126987,0.139692,0.740807,0.355846,0.540054,0.681906,0.0427644,0.422249,0.739513,0.142146,0.308296,0.729957,0.478776,0.778092,0.219594,0.309365,0.510322,0.131111,0.563219,0.352271,0.981672,0.570489,0.798068,0.911976,0.0877223,0.816129,0.0138458,0.348754,0.244808,0.984599,0.266024,0.0337445,0.873151,0.587751,0.401189,0.237243,0.246073,0.0985307,0.692861,0.254333,0.478108,0.250767,0.31418,0.56618,0.780106,0.857423,0.689691,0.330103,0.500223,0.517658,0.498319,0.0618067,0.877279,0.465405,0.745341,0.991583,0.799182,0.773291,0.181726,0.155461,0.520017,0.5861,0.960672,0.504399,0.0211619,0.970652,0.170366,0.566354,0.112812,0.443098,0.0416339,0.560357,0.344618,0.279786,0.750056,0.707907,0.158346,0.710668,0.953632,0.378512,0.495617,0.141684,0.771075,0.787181,0.402904,0.303331,0.431062,0.322315,0.132818,0.261377,0.0202881,0.343462,0.255632,0.891165,0.490196,0.570488,0.317654,0.674354,0.728048,0.763707,0.860349,0.268882,0.301843,0.0326617,0.00161791,0.138204,0.657484,0.740571,0.43119,0.585567,0.470186,0.213297,0.635141,0.736999,0.279218,0.529199,0.428657,0.283667,0.950631,0.645867,0.575844,0.316547,0.833119,0.649403,0.137985,0.616055,0.494016,0.550386,0.231999,0.383705,0.796282,0.968652,0.88717,0.357469,0.00836551,0.217885,0.37294,0.51919,0.010522,0.512204,0.595767,0.227232,0.3657,0.679983,0.53854,0.0923535,0.761727,0.379014,0.572901,0.820439,0.876869,0.841201,0.502143,0.897665,0.741511,0.0235977,0.23066,0.605018,0.607074,0.431635,0.328917,0.71227,0.759475,0.142474,0.231868,0.261875,0.783125,0.583584,0.371834,0.0638734,0.137246,0.480868,0.281592,0.128503,0.769626,0.968793,0.0609511,0.527027,0.949714,0.386573,0.985431,0.975047,0.475044,0.553343,0.368748,0.00749254,0.0656987,0.128937,0.696655,0.558544,0.800107,0.827029,0.659741,0.59612,0.134315,0.971856,0.653896,0.523431,0.461261,0.403808,0.415665,0.955363,0.454977,0.0768499,0.496172,0.549919,0.857493,0.703887,0.263438,0.0429372,0.80453,0.722551,0.0410203,0.980914,0.185757,0.610359,|0.321042,0.122712,0.629039,0.583066,0.991186,0.146161,0.988654,0.125938,0.913912,0.049222,0.0314065,0.00709999,0.450193,0.0916941,0.68518,0.492131,0.826243,0.0959468,0.493404,0.0524997,0.981745,0.297385,0.920022,0.229726,0.778335,0.690711,0.481936,0.105707,0.127462,0.551837,0.468826,0.31645,0.90514,0.520029,0.406288,0.694776,0.192112,0.833682,0.569174,0.912168,0.81933,0.0248587,0.0438802,0.677618,0.879269,0.0921278,0.533306,0.770573,0.249799,0.965235,0.63673,0.226577,0.781478,0.217844,0.8344,0.293508,0.59964,0.979983,0.580265,0.367008,0.711035,0.102746,0.109451,0.0827059,0.226563,0.478157,0.896527,0.405012,0.478428,0.100602,0.960284,0.567706,0.77245,0.770434,0.107774,0.889143,0.992878,0.345768,0.12598,0.00787306,0.0292762,0.692494,0.611673,0.999019,0.456359,0.426702,0.384668,0.148719,0.0093798,0.924422,0.610189,0.787995,0.090951,0.931251,0.496203,0.709925,0.112312,0.528186,0.652376,0.501842,0.24392,0.543838,0.0268122,0.487333,0.592785,0.0951005,0.15406,0.165698,0.86587,0.737041,0.0472311,0.382705,0.59074,0.511408,0.861524,0.721722,0.555793,0.691277,0.209395,0.903755,0.661625,0.0127301,0.34331,0.887454,0.961473,0.749578,0.0760433,0.220667,0.131349,0.35634,0.128231,0.690934,0.398505,0.50827,0.124717,0.049005,0.0311872,0.555073,0.666522,0.019434,0.796351,0.913151,0.0555516,0.472142,0.210427,0.924153,0.425164,0.909226,0.643521,0.281993,0.245163,0.222771,0.694706,0.005481,0.904383,0.413008,0.0244037,0.990753,0.29871,0.880434,0.314735,0.489771,0.0506186,0.850545,0.600178,0.984438,0.497708,0.51926,0.534321,0.832654,0.545897,0.382951,0.240811,0.0809377,0.0193624,0.373131,0.150358,0.212384,0.687603,0.749895,0.929469,0.366455,0.912126,0.623711,0.649327,0.937566,0.470384,0.401557,0.671718,0.224675,0.643505,0.620492,0.842578,0.75894,0.603509,0.481035,0.809104,0.886335,0.512178,0.879966,0.716793,0.653614,0.306698,0.725099,0.211774,0.390931,0.699685,0.813153,0.0277326,0.179556,0.28224,0.865682,0.873879,0.826873,0.950764,0.589287,0.0629966,0.898732,0.571694,0.204755,0.444492,0.652735,0.0105754,0.262551,0.621839,0.12323,0.760427,0.593177,0.65571,0.0199112,0.493502,0.761701,0.201521,0.643295,0.82502,0.690649,0.357438,0.695839,0.676278,0.367233,0.807826,0.652532,0.441917,0.581846,0.96955,0.0236844,0.270304,0.99571,0.98264,0.793292,0.887523,0.463913,0.441316,0.136562,0.957005,0.753206,0.928379,0.396785,0.742436,0.186033,0.763446,0.663193,0.998934,0.314663,0.0730234,0.836986,0.774634,0.733635,0.987053,0.619455,0.910979,0.626065,0.795338,0.418017,0.323795,0.0465814,0.887356,0.437745,0.924757,0.487401,0.579209,0.385169,0.304941,0.204442,0.265706,0.114571,0.00773275,0.234668,0.712862,0.190464,0.627777,0.0361717,0.19803,0.162515,0.332633,0.716642,0.328456,0.806989,0.276907,0.922434,0.489483,0.0558613,0.612311,0.870522,0.97252,0.230822,0.955068,0.0933901,0.288414,0.719389,0.303022,0.611628,0.00716144,0.765407,0.159942,0.707002,0.253718,0.837214,0.494307,0.844568,0.0278383,0.837921,0.0275933,0.577345,0.794984,0.227785,0.0658471,0.348804,0.131954,0.972213,0.228242,0.676896,0.66193,0.383433,0.942324,0.529606,0.542325,0.533594,0.792751,0.493508,0.351019,0.173996,0.439036,0.201452,0.478668,0.516312,0.108856,0.509697,0.896892,0.695074,0.814614,0.108267,0.0113122,0.864006,0.619687,0.261489,0.462227,0.614873,0.442163,0.237364,0.171,0.255883,0.0125533,0.863877,0.426023,0.261654,0.467757,0.383725,0.954738,0.907711,0.871727,0.882003,0.345788,0.742923,0.113987,0.929332,0.946684,0.78973,0.697793,0.806119,0.224248,0.325699,0.194595,0.268334,0.724386,0.311469,0.593345,0.459779,0.786431,0.449755,0.729326,0.987649,0.959047,0.732296,0.0718739,0.854252,0.543023,0.356752,0.728851,0.866494,0.295588,0.313946,0.40712,0.435869,0.796627,0.0319338,0.582329,0.00443739,0.44407,0.755842,0.0925917,0.694392,0.995808,0.0532889,0.00903755,0.241531,0.665421,0.245075,0.434546,0.826514,0.582704,0.36991,0.97774,0.463463,0.603067,0.909874,0.979257,0.784976,0.333879,0.501275,0.214498,0.94253,0.756497,0.861128,0.337448,0.460537,0.584671,0.441502,0.661833,0.996029,0.960033,0.142971,0.122158,0.793107,0.953335,0.214908,0.403156,0.398724,0.75441,0.908125,0.178808,0.725399,0.90132,0.816756,0.170473,0.600904,0.981073,0.939758,0.588136,0.612998,0.161725,0.765689,0.530051,0.773188,0.749687,0.856991,0.210252,0.815561,0.756106,0.728303,0.14318,0.44194,0.665173,0.166592,0.742128,0.732519,0.683289,0.0538586,0.786966,0.469925,0.587432,0.586616,0.927197,0.143266,0.25023,0.682201,0.754024,0.644567,0.253683,0.494537,0.673646,0.23023,0.469831,0.763475,0.429176,0.571663,0.961228,0.252674,0.808018,0.752115,0.834445,0.988453,0.89945,0.799296,0.284227,0.802673,0.847233,0.174608,0.140937,0.223469,0.648617,0.48352,0.175322,0.689457,0.928603,0.242176,0.502996,0.109423,0.957514,0.631963,0.753195,0.35403,0.260329,0.388389,0.830245,0.081508,0.398479,0.836655,0.301844,0.888133,0.710879,0.615117,0.440428,0.78792,0.75442,0.51983,0.00434184,0.0281581,0.223312,0.106836,0.305492,0.729317,0.613072,0.566564,0.736648,0.332199,0.0669245,0.984973,0.113996,0.363041,0.552654,0.585029,0.0838511,0.39038,0.563641,0.492335,0.0832319,0.15031,0.355847,0.936157,0.0416902,0.534347,0.355405,0.912824,0.255359,0.325412,0.233759,0.943139,0.0756223,0.918976,0.623193,0.0423318,0.928841,0.63188,0.083605,0.287344,0.391889,0.414468,0.259529,0.869103,0.0510061,0.995764,0.539733,0.407762,0.0192392,0.00667846,0.601948,0.381049,0.418382,0.957257,0.0145448,0.98641,0.694607,0.71589,0.665108,0.487968,0.0208634,0.985529,0.592557,0.784398,0.00134939,0.106593,0.538712,0.585323,0.324679,0.849436,0.730852,0.236666,0.171507,0.641838,0.193962,0.685568,0.314965,0.577609,0.995031,0.406417,0.0220907,0.0299559,0.20347,0.453929,0.855415,0.247619,0.262236,0.300322,0.945568,0.41081,0.441884,0.724959,0.00360817,0.494532,0.796296,0.308681,0.689423,0.543074,0.861386,0.542603,0.884169,0.13432,0.738879,0.731742,0.0858886,0.112319,0.936265,0.669821,0.489107,0.524599,0.382254,0.927133,0.517618,0.642533,0.785669,0.558263,0.0206461,0.334858,0.206726,0.150146,0.380066,0.158572,0.0410596,0.788116,0.769381,0.352355,0.206428,0.297638,0.191063,0.75451,0.205256,0.425793,0.429632,0.322038,0.129204,0.757527,0.752081,0.225009,0.72991,0.120732,0.841118,0.259029,0.0388592,0.846864,0.0608604,0.414462,0.0107846,0.905033,0.0991736,0.0768177,0.352658,0.142443,0.795898,0.623053,0.740179,0.0142968,0.421988,0.157127,0.240545,0.404537,0.311402,0.320851,0.838087,0.702306,0.624653,0.655944,0.368515,0.990589,0.664716,0.374574,0.554845,0.223165,0.977897,0.162814,0.610852,0.202118,0.967451,0.10065,0.143843,0.696909,0.0723028,0.276114,0.537741,0.749045,0.53205,0.591296,0.572233,0.852272,0.807627,0.521038,0.155548,0.424778,0.847525,0.408971,0.823222,0.842874,0.130947,0.11769,0.173525,0.536182,0.0699002,0.733658,0.741082,0.71352,0.447804,0.450245,0.430683,0.347379,0.94595,0.49617,0.134761,0.0437938,0.662154,0.220809,0.464945,0.596805,0.14146,0.916819,0.945686,0.129789,0.187254,0.845881,0.0979,0.187649,0.227601,0.475684,0.201633,0.178309,0.810688,0.756312,0.517675,0.991694,0.35672,0.764362,0.777987,0.570886,0.328086,0.460062,0.0176476,0.281528,0.188361,0.917306,0.27094,0.434908,0.856394,0.513705,0.957633,0.700811,0.457603,0.2248,0.647959,0.245346,0.990768,0.072979,0.534881,0.307367,0.913107,0.489848,0.16968,0.406968,0.564176,0.795531,0.490522,0.1687,0.809856,0.33846,0.00402391,0.655636,0.731001,0.20516,0.0817112,0.0591279,0.417011,0.449555,0.30073,0.399623,0.109227,0.636429,0.782058,0.0940275,0.849977,0.68426,0.0678949,0.749201,0.08608,0.904859,0.172681,0.937067,0.665177,0.22672,0.278051,0.99319,0.397143,0.0781505,0.379786,0.434202,0.553787,0.530032,0.439966,0.89851,0.306113,0.662305,0.0433388,0.407863,0.241232,0.856189,0.26453,0.798367,0.529678,0.264823,0.53037,0.229201,0.607386,0.260662,0.313585,0.935081,0.316255,0.654642,0.254786,0.728084,0.667886,0.871318,0.0976496,0.132106,0.358787,0.40109,0.671381,0.351922,0.612046,0.177385,0.0541846,0.991887,0.889422,0.92333,0.0980055,0.909876,0.0926045,0.435412,0.666159,0.633793,0.295629,0.836455,0.320503,0.957401,0.992446,0.930291,0.523427,0.39491,0.635045,0.67938,0.552082,0.54691,0.69629,0.818071,0.200986,0.950917,0.872825,0.20011,0.163819,0.0150225,0.0881267,0.325349,0.534338,0.248972,0.976545,0.400629,0.53819,0.280097,0.0542311,0.924453,0.286424,0.645852,0.352429,0.13386,0.864347,0.755268,0.790111,0.596681,0.104597,0.823501,0.547222,0.935414,0.902379,0.683194,0.232361,0.880875,0.912774,0.0829182,0.785909,0.777928,0.839525,0.0477895,0.637485,0.932326,0.80376,0.697839,0.920692,0.0261647,0.262182,0.494885,0.372067,0.290314,0.0418268,0.569634,0.273196,0.585119,0.767221,0.837237,0.485923,0.558433,0.927855,0.488153,0.987984,0.167505,0.254803,0.291364,0.407472,0.788337,0.0824783,0.399056,0.919516,0.801034,0.968689,0.674392,0.79779,0.835509,0.924849,0.703912,0.0625802,0.0249528,0.727459,0.423111,0.564727,0.365719,0.143972,0.0869525,0.680532,0.00663364,0.813937,0.517961,0.549086,0.394967,0.186245,0.254174,0.150978,0.157637,0.523359,0.786717,0.645404,0.804946,0.814471,0.36416,0.889282,0.780734,0.141599,0.00889599,0.085377,0.140808,0.118325,0.371635,0.877786,0.398445,0.428988,0.108762,|0.471832,0.581801,0.692153,0.718345,0.610452,0.125005,0.741856,0.203753,0.723811,0.286331,0.683119,0.716748,0.0988072,0.267865,0.00203121,0.273506,0.988392,0.0531003,0.143289,0.105023,0.0357473,0.722724,0.890266,0.781218,0.856366,0.824535,0.566809,0.670768,0.370933,0.149915,0.844884,0.774948,0.846735,0.766186,0.22334,0.363556,0.575266,0.196136,0.418369,0.713806,0.0182949,0.0626099,0.927825,0.0636651,0.281936,0.370547,0.835027,0.67703,0.159851,0.955382,0.6835,0.0526171,0.660787,0.899463,0.795811,0.440183,0.792361,0.0494204,0.800265,0.953748,0.27257,0.934407,0.650156,0.908621,0.46201,0.677432,0.996709,0.826179,0.543941,0.326383,0.950078,0.769358,0.679052,0.0807997,0.122995,0.443713,0.727092,0.604387,0.254979,0.707547,0.420989,0.282987,0.507111,0.925978,0.432752,0.808303,0.719766,0.961559,0.556763,0.746627,0.461761,0.993139,0.136499,0.00795865,0.564211,0.264893,0.801758,0.234126,0.297256,0.321262,0.822422,0.139357,0.0707577,0.712054,0.306589,0.03057,0.563998,0.253147,0.997285,0.287109,0.511239,0.219581,0.751274,0.681476,0.829406,0.12072,0.0940676,0.00982231,0.155692,0.546908,0.197012,0.0717517,0.753145,0.173447,0.279593,0.67251,0.570673,0.694603,0.89874,0.193327,0.432234,0.116739,0.720374,0.519545,0.0263805,0.712316,0.538334,0.81491,0.8643,0.913389,0.185558,0.407534,0.759365,0.855991,0.537409,0.415843,0.0860848,0.691566,0.929252,0.671389,0.648764,0.742598,0.119263,0.483312,0.286679,0.957528,0.0152193,0.414997,0.352475,0.724649,0.11698,0.826037,0.499464,0.315133,0.00827378,0.406532,0.915824,0.774973,0.879607,0.525364,0.111262,0.47876,0.0165,0.753012,0.591457,0.108338,0.938196,0.155376,0.428891,0.564941,0.696721,0.997326,0.243565,0.350822,0.593674,0.108779,0.00744092,0.141977,0.093024,0.937752,0.735369,0.485027,0.887287,0.784885,0.807528,0.303288,0.807504,0.578229,0.0820426,0.29707,0.444428,0.943976,0.466226,0.461949,0.130418,0.319958,0.0369958,0.318027,0.44128,0.737363,0.616989,0.577237,0.923614,0.610474,0.671175,0.409089,0.276814,0.393712,0.846548,0.643011,0.563322,0.77647,0.962171,0.513831,0.324317,0.232881,0.566616,0.134636,0.18457,0.950789,0.227827,0.325243,0.269529,0.293119,0.17918,0.20428,0.807932,0.0144844,0.128423,0.267054,0.95485,0.00753444,0.869001,0.792159,0.766797,0.366672,0.797924,0.651843,0.27967,0.805872,0.850545,0.590475,0.638319,0.042272,0.623728,0.468483,0.60952,0.679763,0.512856,0.905002,0.618949,0.5166,0.00855106,0.239656,0.0210249,0.713345,0.376151,0.680571,0.183984,0.175311,0.502842,0.689414,0.934439,0.684496,0.353149,0.328131,0.188893,0.621324,0.827723,0.466435,0.476691,0.0637636,0.913423,0.178841,0.598959,0.621675,0.974274,0.528782,0.332375,0.490717,0.218937,0.332727,0.418172,0.224238,0.992905,0.720279,0.202925,0.325868,0.0573942,0.498129,0.301497,0.482373,0.58852,0.196813,0.887236,0.289277,0.0754973,0.791974,0.0330665,0.171995,0.152202,0.323264,0.942991,0.782862,0.291902,0.853054,0.612484,0.348051,0.0312283,0.979851,0.909185,0.836874,0.186433,0.155835,0.91846,0.514406,0.145651,0.222411,0.536509,0.688169,0.181336,0.683225,0.926526,0.901619,0.644624,0.684454,0.300991,0.853835,0.44182,0.863248,0.76122,0.653893,0.868485,0.638905,0.955273,0.425145,0.154807,0.195712,0.291639,0.404569,0.161969,0.505177,0.493539,0.111822,0.122958,0.514108,0.732815,0.207088,0.822144,0.113207,0.897387,0.131051,0.18105,0.453683,0.842676,0.0540033,0.40556,0.908747,0.267445,0.836311,0.523019,0.50634,0.137272,0.375329,0.218751,0.644918,0.308178,0.1564,0.291261,0.674784,0.814587,0.122985,0.185302,0.722051,0.0393106,0.261108,0.4079,0.899898,0.401189,0.257556,0.768044,0.718627,0.334552,0.11934,0.600624,0.931889,0.0853504,0.814312,0.127709,0.722466,0.053082,0.281495,0.637977,0.202287,0.478255,0.0270349,0.984082,0.430735,0.326791,0.752099,0.414936,0.659367,0.884119,0.72021,0.251148,0.317576,0.839365,0.0451071,0.386333,0.937716,0.141035,0.0566074,0.82966,0.735495,0.811542,0.699537,0.920393,0.751284,0.828089,0.700873,0.31424,0.356679,0.666046,0.149079,0.892916,0.516535,0.572412,0.468992,0.0398071,0.98523,0.193477,0.295997,0.199536,0.604618,0.00639379,0.3516,0.644578,0.837529,0.544476,0.104455,0.820743,0.0541053,0.564134,0.786028,0.729297,0.300619,0.409866,0.916176,0.540325,0.795727,0.365603,0.706178,0.290009,0.0745912,0.11572,0.0682659,0.734252,0.968989,0.218351,0.818349,0.60366,0.683761,0.779163,0.72397,0.275374,0.795966,0.267021,0.133475,0.87341,0.245882,0.091666,0.385474,0.782933,0.452283,0.599336,0.58342,0.234655,0.46746,0.22632,0.140682,0.291537,0.491747,0.580241,0.34605,0.833088,0.758471,0.213179,0.890215,0.495739,0.273811,0.976575,0.515818,0.441105,0.811358,0.314041,0.423055,0.813891,0.0872979,0.510621,0.670781,0.148449,0.0712409,0.06501,0.255882,0.025538,0.314065,0.659726,0.324449,0.486161,0.977613,0.40627,0.241022,0.915135,0.877198,0.999104,0.455024,0.829987,0.671048,0.633669,0.828056,0.0166886,0.0590339,0.664195,0.681797,0.502997,0.105856,0.508307,0.537549,0.692614,0.254707,0.820231,0.227187,0.448172,0.773411,0.125238,0.706229,0.669746,0.0077647,0.867736,0.338949,0.207983,0.118513,0.793013,0.0146366,0.554239,0.869948,0.704007,0.770526,0.970203,0.416694,0.471971,0.42432,0.399002,0.319508,0.603776,0.504941,0.121984,0.862654,0.0416635,0.686109,0.478078,0.769663,0.47882,0.18912,0.533944,0.382368,0.692052,0.359683,0.553458,0.957502,0.512566,0.444573,0.352585,0.358045,0.266145,0.0444382,0.13589,0.885853,0.160309,0.484547,0.873183,0.312947,0.406319,0.298107,0.57514,0.556792,0.0636353,0.840421,0.795624,0.56354,0.989793,0.89975,0.728327,0.277804,0.110176,0.333437,0.825734,0.511608,0.0601081,0.0865735,0.248656,0.181506,0.663767,0.360957,0.695427,0.903872,0.69602,0.827387,0.5391,0.370535,0.757747,0.931373,0.170342,0.405388,0.296126,0.60291,0.444162,0.819866,0.846993,0.710533,0.659421,0.746641,0.00578928,0.9682,0.024173,0.767812,0.552997,0.214766,0.184117,0.00237221,0.262322,0.864548,0.551317,0.764117,0.243414,0.40769,0.0157742,0.52233,0.250197,0.493473,0.435209,0.305116,0.634954,0.784407,0.225857,0.582035,0.21621,0.319449,0.809431,0.638577,0.678701,0.926298,0.63536,0.05366,0.338246,0.293224,0.077624,0.564619,0.940363,0.643854,0.496848,0.586348,0.382232,0.280151,0.446664,0.758699,0.707016,0.285311,0.793737,0.047335,0.558371,0.923829,0.862166,0.144961,0.373947,0.0308897,0.502407,0.168762,0.0182893,0.447563,0.234517,0.916914,0.490499,0.575217,0.460552,0.383047,0.728185,0.672565,0.218716,0.499509,0.795111,0.832053,0.978958,0.816293,0.789979,0.164201,0.972133,0.560999,0.137596,0.535281,0.156814,0.895982,0.938969,0.861773,0.479944,0.735746,0.957008,0.439599,0.167825,0.595436,0.400756,0.950106,0.456246,0.86632,0.057259,0.87365,0.229756,0.576082,0.0903862,0.0138269,0.399494,0.707338,0.116455,0.801741,0.768254,0.703123,0.0742605,0.534851,0.579579,0.407275,0.387904,0.778886,0.378722,0.311435,0.47142,0.202189,0.632602,0.484818,0.47452,0.529245,0.799573,0.469178,0.353304,0.986282,0.25147,0.431264,0.423268,0.360448,0.322786,0.210338,0.940191,0.159624,0.263314,0.538632,0.400041,0.970016,0.79932,0.99437,0.939207,0.041889,0.0736346,0.126128,0.746308,0.534053,0.641742,0.699695,0.222374,0.00583357,0.393441,0.690011,0.406412,0.641991,0.21658,0.835446,0.708,0.51239,0.748713,0.529639,0.352058,0.207786,0.433004,0.010433,0.860886,0.653047,0.0442686,0.113369,0.265715,0.085946,0.497655,0.98129,0.582622,0.591744,0.204303,0.913832,0.965152,0.956477,0.983789,0.29408,0.208823,0.54736,0.987192,0.495679,0.128218,0.209683,0.637711,0.606564,0.243358,0.989093,0.506244,0.658852,0.506788,0.053255,0.324817,0.930914,0.288495,0.141889,0.85693,0.728803,0.820338,0.217136,0.761788,0.0199046,0.349813,0.530273,0.793976,0.613261,0.172237,0.879918,0.967113,0.0155717,0.458235,0.44283,0.340742,0.710886,0.335255,0.732355,0.462219,0.207265,0.703716,0.443755,0.888093,0.965577,0.989604,0.944517,0.602826,0.900869,0.756021,0.71837,0.822804,0.598817,0.527281,0.470428,0.650431,0.845034,0.122685,0.995887,0.94412,0.737613,0.18762,0.975298,0.598248,0.799967,0.993197,0.279261,0.810735,0.145159,0.71156,0.68773,0.292781,0.816691,0.773857,0.00266749,0.893689,0.0815336,0.458198,0.89797,0.107949,0.806425,0.189154,0.766105,0.272562,0.32242,0.976713,0.201362,0.451266,0.728304,0.995872,0.46209,0.608168,0.753129,0.226475,0.240561,0.706642,0.341341,0.294588,0.455353,0.731716,0.0925029,0.0103968,0.492395,0.878398,0.626995,0.139681,0.68402,0.299358,0.627966,0.116965,0.908394,0.513773,0.145626,0.408281,0.459927,0.111169,0.972872,0.207228,0.163222,0.00894576,0.957619,0.383403,0.626842,0.708511,0.466835,0.56277,0.0416454,0.770572,0.332808,0.777436,0.942054,0.562609,0.170773,0.724458,0.898065,0.830136,0.212096,0.416506,0.275643,0.133423,0.785605,0.978526,0.211807,0.0847601,0.301729,0.151685,0.0118392,0.805332,0.991186,0.876725,0.0509256,0.033056,0.450615,0.190101,0.204427,0.196164,0.0748229,0.737652,0.94228,0.606919,0.842693,0.729202,0.913127,0.0754049,0.912136,0.079576,0.386578,0.312743,0.759937,0.358424,0.364037,0.104363,0.999331,0.610796,0.372458,0.531091,0.78585,0.124903,0.365886,0.954142,0.63996,0.158424,0.865425,0.941305,0.714544,0.177074,0.129744,0.994649,0.192779,0.679175,0.778375,0.490982,0.167687,|0.120517,0.0136189,0.0750864,0.59075,0.733689,0.134228,0.572437,0.0249904,0.9969,0.427963,0.763774,0.33899,0.098748,0.172831,0.422293,0.71275,0.16352,0.667101,0.824063,0.946358,0.303274,0.105222,0.596181,0.120934,0.301248,0.0702972,0.441231,0.455857,0.318013,0.070455,0.345223,0.617328,0.258336,0.899004,0.0911118,0.996685,0.775374,0.257327,0.230484,0.687845,0.855149,0.544692,0.557001,0.498789,0.236888,0.919152,0.896619,0.40681,0.290313,0.202222,0.253136,0.23214,0.493221,0.470146,0.246384,0.508232,0.355653,0.939809,0.713627,0.736304,0.179228,0.823497,0.758005,0.924833,0.859329,0.151973,0.206127,0.535853,0.701669,0.601344,0.830294,0.949309,0.347036,0.542675,0.904188,0.825026,0.0729613,0.477155,0.481117,0.794296,0.481607,0.346668,0.307127,0.352823,0.063879,0.0799226,0.0568312,0.331881,0.149595,0.950034,0.686468,0.695912,0.167131,0.0832601,0.485223,0.581974,0.382875,0.288954,0.915169,0.961117,0.474208,2.5034e-06,0.620243,0.0839431,0.387254,0.562234,0.172098,0.987722,0.731759,0.495457,0.578882,0.933711,0.977038,0.83877,0.131094,0.256268,0.515084,0.235171,0.187066,0.395113,0.53793,0.861829,0.584272,0.651481,0.73511,0.39151,0.0713429,0.0070132,0.0308266,0.457533,0.560455,0.568619,0.321983,0.814637,0.580994,0.53262,0.0273479,0.469186,0.605082,0.617863,0.487704,0.86864,0.843373,0.413387,0.310552,0.287032,0.16138,0.933593,0.430023,0.330018,0.781671,0.301754,0.00784081,0.0386652,0.709244,0.58456,0.487422,0.747253,0.363121,0.0634776,0.228948,0.819523,0.615366,0.727289,0.721895,0.756282,0.359425,0.30105,0.791623,0.914626,0.249317,0.785295,0.801205,0.528142,0.705275,0.874043,0.778008,0.378971,0.948368,0.240403,0.809202,0.0985821,0.663031,0.314609,0.314289,0.914665,0.299863,0.82927,0.602555,0.0490176,0.0632891,0.438793,0.219875,0.0228652,0.572917,0.940027,0.242156,0.797835,0.618916,0.874524,0.913035,0.0889859,0.560051,0.735113,0.93665,0.511541,0.906979,0.50925,0.665704,0.272535,0.409456,0.98859,0.138416,0.973917,0.403917,0.436287,0.0802899,0.169107,0.460392,0.0376351,0.459331,0.712696,0.643706,0.96842,0.284342,0.127044,0.31062,0.457458,0.929438,0.91172,0.7975,0.4524,0.649443,0.712671,0.24783,0.624765,0.621035,0.341708,0.853051,0.445928,0.931623,0.350215,0.138455,0.0222507,0.072909,0.775511,0.535408,0.961827,0.489463,0.945078,0.0805752,0.354028,0.418552,0.645799,0.256493,0.953053,0.360539,0.109433,0.685324,0.69565,0.292639,0.376247,0.256016,0.18566,0.419296,0.881702,0.873326,0.340857,0.253755,0.0509094,0.761492,0.0814356,0.514121,0.657176,0.763299,0.275139,0.694645,0.464181,0.778974,0.234751,0.139464,0.774811,0.486395,0.192954,0.842564,0.98821,0.614918,0.787849,0.724298,0.808259,0.916518,0.580075,0.669002,0.568641,0.470745,0.397419,0.564724,0.0631729,0.893865,0.253957,0.820165,0.401227,0.919712,0.365752,0.954226,0.865877,0.860089,0.299413,0.618297,0.862132,0.739519,0.922668,0.092311,0.617341,0.364847,0.136486,0.0511591,0.0412834,0.0255758,0.846259,0.666492,0.339363,0.712301,0.424331,0.300361,0.42181,0.236405,0.539125,0.714057,0.418009,0.105834,0.0318975,0.46375,0.60685,0.399928,0.716314,0.464129,0.159102,0.902135,0.0257838,0.914271,0.573175,0.0239778,0.729925,0.227687,0.962556,0.235232,0.457635,0.903423,0.585163,0.924832,0.0376443,0.0780953,0.367137,0.411955,0.348346,0.921651,0.0792287,0.306089,0.560363,0.933797,0.950523,0.848427,0.000845909,0.21252,0.639874,0.735206,0.739954,0.328403,0.193534,0.716862,0.481601,0.760164,0.967502,0.382568,0.138675,0.294737,0.960428,0.512824,0.917206,0.724756,0.130159,0.39222,0.110128,0.538153,0.846751,0.834188,0.407759,0.765425,0.450377,0.191888,0.0616269,0.11805,0.649651,0.99019,0.417609,0.377156,0.801685,0.832272,0.189189,0.103464,0.945215,0.892386,0.84035,0.374144,0.242126,0.176233,0.478345,0.633557,0.94573,0.606864,0.488248,0.373552,0.728888,0.842388,0.434771,0.965678,0.453047,0.553967,0.645091,0.666913,0.605298,0.280138,0.201769,0.911783,0.656872,0.0463009,0.523759,0.296177,0.271595,0.204105,0.329987,0.989797,0.335093,0.519194,0.94392,0.697805,0.677903,0.330529,0.761844,0.717329,0.565738,0.446576,0.783894,0.143989,0.26843,0.607016,0.109634,0.169896,0.598067,0.350184,0.233856,0.462715,0.700601,0.391653,0.173215,0.201883,0.927635,0.563577,0.534815,0.0182196,0.485533,0.355325,0.468182,0.24573,0.286656,0.708731,0.0959334,0.315449,0.67274,0.272402,0.791821,0.402855,0.50589,0.796409,0.409815,0.680412,0.654926,0.178699,0.92976,0.686643,0.384298,0.137626,0.109059,0.0691603,0.547965,0.906585,0.810468,0.784919,0.431006,0.595155,0.707349,0.0569215,0.748831,0.132567,0.0347397,0.605915,0.459449,0.785135,0.999207,0.0465719,0.456858,0.859193,0.334143,0.99324,0.373089,0.535076,0.112855,0.0800981,0.352243,0.297863,0.96473,0.630669,0.268914,0.982231,0.483428,0.591382,0.61552,0.61252,0.331512,0.0588263,0.228468,0.139036,0.491402,0.619141,0.471697,0.197458,0.525548,0.868491,0.318828,0.384416,0.227132,0.882182,0.583831,0.0386846,0.326492,0.835139,0.985348,0.719212,0.552578,0.888348,0.902151,0.474984,0.905481,0.405039,0.231984,0.475201,0.975359,0.294265,0.154476,0.916794,0.869902,0.0517868,0.654594,0.145813,0.114059,0.231261,0.0704569,0.244899,0.0830563,0.736544,0.341243,0.0069837,0.155987,0.0461226,0.423925,0.191387,0.838616,0.43003,0.481294,0.0988232,0.638059,0.608813,0.165272,0.0766352,0.0359551,0.161414,0.840292,0.327968,0.192957,0.226824,0.00655025,0.594212,0.822507,0.60642,0.165455,0.478206,0.467918,0.875435,0.152432,0.428501,0.410101,0.675768,0.117477,0.522999,0.824103,0.156008,0.737274,0.147608,0.971302,0.46534,0.381373,0.855164,0.579267,0.429758,0.574103,0.460893,0.139021,0.0356126,0.513256,0.077762,0.219609,0.518377,0.85083,0.500538,0.913316,0.699092,0.199601,0.0966601,0.105632,0.0330259,0.800099,0.979212,0.946158,0.40558,0.124322,0.00202781,0.283579,0.313181,0.66459,0.840926,0.610793,0.15617,0.862355,0.708304,0.32834,0.0708045,0.809012,0.65921,0.0420068,0.780278,0.434293,0.296491,0.890958,0.878462,0.873151,0.295094,0.768465,0.919305,0.409337,0.610417,0.220522,0.459515,0.33452,0.676727,0.262356,0.225257,0.749495,0.596766,0.834552,0.754438,0.242065,0.497382,0.205893,0.596833,0.723012,0.434138,0.377105,0.385773,0.829858,0.635362,0.099659,0.383968,0.42742,0.390581,0.649887,0.532946,0.09624,0.850926,0.105492,0.972931,0.124177,0.572347,0.919464,0.150272,0.134683,0.168359,0.0551707,0.9361,0.738988,0.191113,0.902703,0.43609,0.753642,0.737531,0.445722,0.594688,0.777989,0.0864932,0.362872,0.669937,0.3821,0.762453,0.559629,0.92249,0.0138595,0.997247,0.0468379,0.189753,0.580123,0.0461631,0.0364379,0.0467619,0.440985,0.286947,0.197702,0.774161,0.387604,0.148173,0.489502,0.255947,0.205363,0.20917,0.534665,0.933326,0.0285813,0.261004,0.543713,0.749342,0.934261,0.874642,0.912703,0.216122,0.754579,0.812824,0.423007,0.389691,0.736462,0.0339689,0.742995,0.118353,0.531381,0.146422,0.187881,0.201839,0.941996,0.433869,0.67164,0.0140137,0.884826,0.0523149,0.0714377,0.775145,0.125839,0.794917,0.106392,0.123226,0.829782,0.564015,0.290196,0.741446,0.110866,0.696838,0.506309,0.511645,0.385499,0.475593,0.067418,0.345146,0.930261,0.909313,0.88165,0.605993,0.497633,0.327571,0.218683,0.679686,0.257557,0.342507,0.783736,0.48036,0.764236,0.951904,0.277335,0.240411,0.00680661,0.990587,0.58792,0.895179,0.734974,0.0377916,0.333188,0.297861,0.684652,0.791567,0.857601,0.249098,0.582896,0.435042,0.132144,0.768711,0.877379,0.315706,0.588375,0.0147358,0.905378,0.15659,0.823024,0.624301,0.649106,0.634269,0.278035,0.555655,0.387576,0.956928,0.950366,0.556594,0.63266,0.0877818,0.713803,0.387575,0.952128,0.534471,0.217975,0.95968,0.867094,0.805048,0.915508,0.448906,0.689004,0.995417,0.645375,0.67466,0.358052,0.371636,0.668571,0.0736048,0.936548,0.0928106,0.0268789,0.697998,0.724449,0.0524154,0.0578067,0.478827,0.274683,0.211932,0.556228,0.592137,0.272371,0.293401,0.171236,0.984481,0.435252,0.876974,0.275438,0.103774,0.877178,0.82798,0.626888,0.652477,0.731719,0.684322,0.528206,0.962697,0.339495,0.188061,0.945562,0.776114,0.833045,0.631251,0.815065,0.187727,0.383542,0.125793,0.387764,0.909223,0.900233,0.0221354,0.65421,0.934785,0.661351,0.180192,0.606575,0.1152,0.306524,0.364798,0.977107,0.24198,0.672933,0.803963,0.267685,0.110133,0.636494,0.252375,0.168952,0.618241,0.313021,0.546735,0.965544,0.540751,0.22867,0.206191,0.249466,0.419057,0.0179489,0.890084,0.429929,0.770445,0.6832,0.789373,0.967298,0.68958,0.471815,0.150993,0.814266,0.0397251,0.668199,0.781354,0.569684,0.32054,0.055859,0.89481,0.880161,0.680093,0.0911452,0.360713,0.806055,0.184719,0.0435374,0.360269,0.451442,0.67142,0.963309,0.851499,0.768042,0.688235,0.139301,0.114314,0.388227,0.685852,0.469587,0.937395,0.260645,0.347089,0.86578,0.371956,0.222309,0.408237,0.660313,0.54193,0.0953622,0.153328,0.283628,0.89002,0.828583,0.138412,0.910396,0.874406,0.751925,0.432796,0.77403,0.356439,0.475855,0.510601,0.241418,0.540124,0.595491,0.644167,0.829501,0.589108,0.863195,0.580571,0.359938,0.767472,0.448766,0.600317,0.300987,0.414825,0.0898112,0.00429749,0.431289,0.737164,0.304803,0.511974,0.353493,0.563578,0.452096,0.572699,0.609619,0.626569,0.15291,0.380888,0.269887,0.736316,0.0694847,0.829513,0.760556,0.38903,0.675959,|0.0031907,0.254698,0.390755,0.332709,0.229153,0.840289,0.604904,0.964735,0.435382,0.0960888,0.980134,0.398611,0.925823,0.747969,0.528627,0.0540028,0.204942,0.198334,0.352748,0.866569,0.160773,0.30744,0.505135,0.547156,0.0858582,0.0406399,0.681353,0.879682,0.313868,0.562296,0.420197,0.231442,0.116689,0.357335,0.66373,0.532818,0.333171,0.124957,0.797237,0.134059,0.798659,0.224886,0.212249,0.818348,0.27919,0.973726,0.954552,0.848969,0.0604242,0.959827,0.887793,0.157006,0.731259,0.0785848,0.698833,0.314407,0.0451953,0.6479,0.161475,0.270843,0.278872,0.613703,0.312291,0.46134,0.234121,0.113819,0.406808,0.220921,0.244267,0.0429028,0.933288,0.563188,0.154396,0.0508257,0.46644,0.666034,0.392379,0.114795,0.32011,0.950545,0.642451,0.874923,0.948232,0.581915,0.750257,0.383015,0.82511,0.792823,0.545178,0.196903,0.783725,0.690811,0.846854,0.434236,0.775704,0.0835091,0.753401,0.296756,0.556993,0.280352,0.508647,0.905741,0.97334,0.89554,0.891857,0.73057,0.359869,0.252721,0.0196568,0.985251,0.269807,0.49181,0.0850493,0.000930905,0.0731165,0.247603,0.213266,0.235318,0.65497,0.88103,0.459736,0.645101,0.297571,0.173968,0.0793045,0.704736,0.795126,0.256385,0.0856705,0.461915,0.658713,0.352679,0.0306829,0.25927,0.663575,0.520052,0.589998,0.278466,0.631543,0.0878073,0.997037,0.279525,0.535841,0.478219,0.813491,0.605512,0.955267,0.353949,0.266286,0.253191,0.291139,0.880736,0.766039,0.990555,0.342514,0.900814,0.698048,0.0795013,0.609244,0.107977,0.925468,0.431105,0.552859,0.769078,0.213018,0.890264,0.126919,0.699184,0.782335,0.838422,0.367924,0.708688,0.0584549,0.48073,0.0196648,0.721498,0.49229,0.564807,0.754038,0.0711696,0.342515,0.260504,0.923353,0.894967,0.866821,0.209843,0.37585,0.105678,0.331805,0.524763,0.356041,0.787975,0.949564,0.025458,0.662349,0.709282,0.603199,0.853161,0.583936,0.429727,0.552958,0.981384,0.497556,0.865822,0.186848,0.778692,0.0113856,0.367136,0.958974,0.959674,0.289743,0.0546811,0.930158,0.135254,0.997141,0.849399,0.26965,0.075891,0.732289,0.442207,0.00514734,0.659455,0.0639945,0.803288,0.0555165,0.671259,0.720383,0.152256,0.0454676,0.163415,0.991645,0.113044,0.128689,0.217246,0.454771,0.259896,0.533843,0.539147,0.889339,0.116612,0.953086,0.668835,0.324487,0.124553,0.738675,0.378826,0.996554,0.191203,0.398199,0.527045,0.402434,0.694918,0.342325,0.768962,0.570991,0.320409,0.954839,0.53694,0.424145,0.223505,0.989321,0.583512,0.573129,0.712568,0.159612,0.691432,0.460685,0.926994,0.172568,0.235595,0.859523,0.199305,0.279219,0.378455,0.150644,0.104794,0.497683,0.842556,0.236568,0.153888,0.75911,0.68252,0.679607,0.22756,0.589721,0.705171,0.346053,0.0735477,0.972739,0.502995,0.210056,0.379999,0.0311537,0.288073,0.743678,0.891638,0.524393,0.237085,0.00660127,0.596383,0.133177,0.360813,0.15332,0.191878,0.257069,0.422899,0.446814,0.940324,0.469226,0.612438,0.272652,0.220357,0.188724,0.55193,0.251095,0.725194,0.610533,0.229345,0.529413,0.264872,0.359241,0.822715,0.640099,0.728289,0.998482,0.971861,0.671649,0.526925,0.244289,0.5304,0.530083,0.327097,0.230849,0.454132,0.780808,0.617756,0.66597,0.988049,0.560942,0.496675,0.904783,0.529975,0.651249,0.677059,0.391943,0.616745,0.34416,0.444024,0.96877,0.66893,0.675431,0.577679,0.26672,0.488762,0.0824106,0.388905,0.235505,0.716576,0.314601,0.758024,0.388104,0.0550789,0.281694,0.853545,0.235489,0.936502,0.459175,0.0286091,0.192573,0.865376,0.765709,0.895043,0.956267,0.350712,0.651923,0.888807,0.904827,0.788057,0.664647,0.583207,0.518062,0.853048,0.986746,0.184562,0.60701,0.634156,0.177598,0.978969,0.628148,0.0226753,0.230914,0.371464,0.454174,0.0636257,0.554688,0.482929,0.929508,0.93311,0.00575167,0.684852,0.821468,0.372806,0.241778,0.411,0.900607,0.831456,0.626819,0.822945,0.35192,0.755741,0.820436,0.652422,0.772488,0.473723,0.921075,0.43984,0.596369,0.229866,0.380496,0.704287,0.899469,0.843749,0.109662,0.460095,0.413766,0.447023,0.696994,0.723059,0.299043,0.367387,0.0608699,0.920943,0.988556,0.835586,0.0588762,0.352739,0.665087,0.717816,0.0446201,0.283902,0.519874,0.970149,0.90212,0.778983,0.599085,0.892668,0.661435,0.596912,0.726244,0.855624,0.70568,0.060704,0.118538,0.168878,0.621475,0.714489,0.838138,0.118817,0.838099,0.830077,0.107467,0.931664,0.873878,0.572731,0.148275,0.625062,0.742872,0.425418,0.135651,0.431817,0.66933,0.897005,0.685601,0.396928,0.212798,0.0112801,0.262875,0.310065,0.778257,0.105759,0.495187,0.162583,0.936497,0.82508,0.821288,0.0947877,0.647359,0.641169,0.786274,0.0498728,0.844235,0.651863,0.920765,0.144957,0.619512,0.4617,0.991862,0.361065,0.926394,0.00276035,0.545942,0.65147,0.167121,0.872447,0.170709,0.508882,0.523228,0.781032,0.454544,0.558973,0.222114,0.166351,0.98643,0.322447,0.767851,0.67479,0.80001,0.0641853,0.977387,0.291902,0.221391,0.778933,0.688993,0.785619,0.43859,0.534587,0.635485,0.443515,0.264905,0.407352,0.145164,0.956286,0.1709,0.467794,0.544139,0.840307,0.531803,0.816368,0.2415,0.364978,0.1574,0.170449,0.679192,0.0845298,0.62861,0.604864,0.242768,0.554831,0.0751767,0.323483,0.431464,0.87761,0.563839,0.605881,0.642057,0.669812,0.59229,0.861572,0.0679442,0.991143,0.603358,0.526654,0.990561,0.48653,0.703084,0.166918,0.755437,0.133285,0.60104,0.775201,0.323728,0.505651,0.941047,0.675074,0.424199,0.234965,0.0459866,0.16654,0.437937,0.809176,0.883655,0.515987,0.106076,0.303057,0.385653,0.633697,0.502147,0.871763,0.503747,0.939906,0.931996,0.704903,0.382842,0.578704,0.838768,0.752385,0.571759,0.680019,0.020929,0.449002,0.907594,0.0301559,0.460773,0.682856,0.391939,0.150715,0.64323,0.368145,0.759948,0.179406,0.924829,0.533486,0.111141,0.911741,0.641507,0.486229,0.458694,0.236562,0.059868,0.133718,0.146609,0.678886,0.551742,0.225271,0.358103,0.363083,0.677132,0.00959808,0.111872,0.0958745,0.568552,0.169648,0.846295,0.373562,0.47945,0.763634,0.397121,0.290602,0.195747,0.0459369,0.653513,0.517012,0.0866191,0.866352,0.466408,0.060235,0.107509,0.052873,0.397089,0.472944,0.648843,0.823277,0.861238,0.102641,0.287981,0.203721,0.0191542,0.509699,0.82625,0.0457057,0.329683,0.483794,0.0944427,0.0236383,0.698138,0.732482,0.226976,0.300476,0.902607,0.87686,0.936373,0.0341542,0.533422,0.597165,0.21587,0.627788,0.845082,0.135848,0.857691,0.993644,0.11038,0.138863,0.616141,0.584963,0.105031,0.729774,0.544337,0.734853,0.439081,0.0890395,0.738669,0.463651,0.709724,0.202284,0.834779,0.134192,0.804816,0.691387,0.274454,0.604017,0.583466,0.556912,0.398307,0.911969,0.247811,0.930602,0.118829,0.214343,0.290691,0.339615,0.299989,0.0253605,0.380574,0.412406,0.245079,0.206285,0.826263,0.845138,0.149756,0.401323,0.728798,0.687611,0.633614,0.172182,0.223801,0.292625,0.144423,0.72763,0.326664,0.973614,0.102201,0.428468,0.298199,0.525136,0.790568,0.534592,0.574528,0.735563,0.0333125,0.263774,0.636875,0.852762,0.531697,0.444327,0.654335,0.427,0.602646,0.46268,0.918054,0.594593,0.647764,0.0166906,0.240556,0.516454,0.635327,0.504822,0.319511,0.879553,0.57247,0.478254,0.481571,0.623615,0.0964097,0.268259,0.490937,0.712784,0.531214,0.761772,0.574351,0.641841,0.591026,0.09579,0.20508,0.329999,0.309675,0.0830626,0.276564,0.211954,0.54927,0.904933,0.196501,0.170475,0.0246889,0.644084,0.476846,0.605483,0.866353,0.21105,0.514325,0.149999,0.81706,0.430476,0.135132,0.173156,0.450394,0.473499,0.343497,0.349934,0.981211,0.141017,0.912676,0.954654,0.981852,0.274784,0.339265,0.00574392,0.492451,0.504701,0.0830381,0.50585,0.340278,0.745453,0.625677,0.696914,0.570494,0.559718,0.863262,0.513034,0.73216,0.293655,0.429352,0.218028,0.586086,0.743597,0.607433,0.893393,0.855855,0.271807,0.192025,0.336125,0.287268,0.440177,0.0927454,0.315408,0.0824435,0.680581,0.842654,0.484143,0.134971,0.922622,0.840978,0.242461,0.97926,0.0463077,0.0410612,0.410898,0.475669,0.422327,0.539523,0.649226,0.0877758,0.375864,0.427409,0.263222,0.143955,0.230916,0.744375,0.216094,0.175005,0.0255176,0.297066,0.383348,0.96103,0.975597,0.504255,0.103642,0.976153,0.414187,0.428158,0.232649,0.773962,0.0308551,0.572842,0.901142,0.961364,0.71457,0.516139,0.04149,0.204131,0.659354,0.202543,0.13864,0.49639,0.856219,0.330715,0.0226429,0.569138,0.939271,0.978598,0.283869,0.390397,0.845872,0.990727,0.409627,0.546853,0.556736,0.735701,0.623456,0.508078,0.369607,0.291894,0.792758,0.005153,0.340481,0.878655,0.148623,0.892896,0.511876,0.841734,0.493502,0.932984,0.277205,0.0463361,0.56428,0.292084,0.520155,0.847911,0.617376,0.687783,0.353469,0.864608,0.0940561,0.822515,0.744416,0.239661,0.290145,0.428179,0.752543,0.35676,0.844774,0.023173,0.332007,0.556954,0.808094,0.238615,0.0621387,0.563964,0.0817736,0.176548,0.38009,0.868187,0.332486,0.714909,0.118203,0.290335,0.455861,0.439648,0.811067,0.23217,0.706005,0.354471,0.836975,0.577309,0.873696,0.0861846,0.807896,0.104084,0.986772,0.452683,0.119295,0.197466,0.738518,0.82567,0.103942,0.911919,0.797573,0.38804,0.804561,0.594425,0.2284,0.568502,0.695595,0.813645,0.622907,0.163632,0.869019,0.0308326,0.534724,0.940091,0.584986,0.537971,0.508036,0.470569,0.934324,0.881161,0.977363,0.0377004,0.767276,0.190014,0.562975,0.456654,0.447937,0.992984,0.687764,0.281273,0.0588297,0.242427,0.432637,0.483729,0.150801,|0.200236,0.267865,0.0683873,0.826028,0.669539,0.781404,0.387142,0.559722,0.827052,0.995025,0.274661,0.591194,0.423043,0.65346,0.721427,0.660227,0.214017,0.390654,0.495368,0.01347,0.168546,0.127454,0.771408,0.903026,0.679199,0.50328,0.956479,0.805082,0.97571,0.00275815,0.875008,0.0723724,0.22727,0.430771,0.273373,0.380632,0.673541,0.62082,0.152204,0.208786,0.106973,0.277045,0.868547,0.0244381,0.172223,0.790667,0.693511,0.0986844,0.858148,0.258282,0.17458,0.764887,0.413722,0.499135,0.988285,0.25004,0.433867,0.253599,0.84795,0.637773,0.892807,0.966374,0.653896,0.381502,0.229986,0.457234,0.616808,0.823675,0.0759345,0.814891,0.666207,0.722128,0.87983,0.635151,0.350761,0.759977,0.917286,0.990726,0.471657,0.628737,0.812096,0.188277,0.381431,0.224405,0.728504,0.581322,0.587478,0.473932,0.307626,0.432435,0.0174314,0.993371,0.989225,0.314117,0.404475,0.0435448,0.017298,0.626161,0.311253,0.767809,0.0314887,0.206842,0.465784,0.881827,0.668881,0.613671,0.371443,0.759586,0.0172493,0.304339,0.787269,0.54253,0.0266021,0.292812,0.581771,0.410602,0.487046,0.253984,0.764563,0.243302,0.424096,0.686024,0.75721,0.899658,0.124239,0.110049,0.900767,0.986421,0.096828,0.381234,0.771542,0.779544,0.322322,0.562606,0.495308,0.984429,0.565511,0.596676,0.973105,0.404673,0.221554,0.913025,0.57883,0.466921,0.613562,0.533363,0.954047,0.578617,0.540255,0.260028,0.954745,0.601167,0.568343,0.0912943,0.537699,0.427218,0.270156,0.556538,0.497249,0.917918,0.351318,0.603059,0.99292,0.82977,0.168116,0.333044,0.376007,0.904432,0.470937,0.308113,0.320994,0.977443,0.246115,0.823268,0.935586,0.528745,0.896955,0.260124,0.0350113,0.901865,0.890166,0.219249,0.450842,0.813016,0.543129,0.365101,0.809781,0.681001,0.73682,0.345194,0.103352,0.638534,0.0715672,0.152309,0.777729,0.0444977,0.0113838,0.269788,0.00877589,0.222772,0.7933,0.898238,0.507864,0.966571,0.236222,0.116483,0.387844,0.601334,0.983366,0.632588,0.109437,0.646594,0.414113,0.131425,0.306201,0.430204,0.621557,0.643191,0.2301,0.164476,0.583445,0.21909,0.460563,0.631864,0.0967624,0.0420347,0.733368,0.0176904,0.115764,0.682274,0.236837,0.230943,0.48123,0.959217,0.674988,0.721934,0.668606,0.568566,0.389728,0.576977,0.211046,0.737286,0.0141666,0.926372,0.756615,0.742352,0.653623,0.545527,0.828983,0.433471,0.26064,0.240732,0.187415,0.32775,0.305213,0.233773,0.864916,0.331816,0.295473,0.841639,0.522183,0.996614,0.861025,0.635303,0.334041,0.189221,0.0402302,0.2,0.278886,0.0881046,0.524339,0.134356,0.73972,0.479171,0.562409,0.77415,0.25921,0.329363,0.850463,0.253649,0.767961,0.97372,0.858071,0.870842,0.980482,0.0237951,0.61499,0.632945,0.253727,0.503562,0.400053,0.869289,0.88383,0.75916,0.384196,0.0392005,0.531332,0.773398,0.710325,0.179379,0.79068,0.661322,0.0212703,0.0857857,0.0265875,0.570774,0.944077,0.674655,0.159757,0.433105,0.128723,0.889155,0.376406,0.868977,0.960566,0.693205,0.78899,0.149061,0.261342,0.428185,0.761436,0.934406,0.951421,0.566744,0.775898,0.438039,0.494727,0.974691,0.906161,0.96126,0.34244,0.143039,0.366543,0.201155,0.0997418,0.177792,0.671851,0.564839,0.590157,0.407872,0.518395,0.976362,0.43373,0.397254,0.28482,0.427519,0.391833,0.683835,0.147632,0.0785207,0.456214,0.477647,0.719401,0.31268,0.975804,0.680402,0.73657,0.572933,0.886707,0.447954,0.889375,0.206193,0.410301,0.222946,0.98948,0.645525,0.00617331,0.747424,0.313013,0.379338,0.683503,0.311018,0.114327,0.255555,0.672605,0.455605,0.074275,0.425067,0.587797,0.882527,0.66189,0.876487,0.208612,0.196073,0.281909,0.938665,0.913231,0.792306,0.86427,0.202533,0.454394,0.34294,0.187861,0.061763,0.0337369,0.275398,0.890339,0.00782996,0.547009,0.792331,0.324001,0.30819,0.490498,0.746776,0.443595,0.0810084,0.774358,0.821457,0.216394,0.760477,0.642884,0.076878,0.24403,0.970692,0.930882,0.404373,0.317229,0.641095,0.762954,0.66358,0.0763411,0.848038,0.813789,0.0553781,0.770731,0.227464,0.0624671,0.369162,0.230449,0.696056,0.938163,0.230784,0.0290592,0.972852,0.514766,0.460182,0.439407,0.891297,0.509694,0.959531,0.776563,0.387134,0.346031,0.667522,0.438343,0.999848,0.489839,0.188038,0.790821,0.270662,0.411164,0.377419,0.355931,0.638601,0.0401317,0.638056,0.766912,0.0607918,0.67906,0.20041,0.967336,0.667402,0.526334,0.723822,0.774282,0.514479,0.481672,0.474885,0.0912499,0.960286,0.535492,0.6631,0.214887,0.317463,0.394971,0.169318,0.125312,0.580654,0.470202,0.383929,0.0610163,0.0494332,0.0639213,0.632936,0.828574,0.013432,0.956844,0.679968,0.593722,0.676118,0.0312427,0.470498,0.395634,0.679502,0.706542,0.944342,0.458807,0.841404,0.0839691,0.156737,0.847535,0.685561,0.810277,0.52984,0.420639,0.729339,0.402525,0.781935,0.167527,0.605017,0.479339,0.068717,0.961583,0.405682,0.458401,0.814409,0.0054267,0.548739,0.194892,0.831742,0.538883,0.497476,0.943715,0.862847,0.23,0.575155,0.605763,0.974891,0.996667,0.0182829,0.0408933,0.11052,0.0416545,0.280884,0.32618,0.203364,0.754661,0.15146,0.667052,0.412383,0.43778,0.35645,0.0393883,0.156179,0.707636,0.20901,0.10144,0.818643,0.144623,0.395803,0.597537,0.102611,0.755657,0.770225,0.0588699,0.0660592,0.135538,0.494069,0.0855353,0.0999655,0.791088,0.970498,0.247993,0.0312788,0.0414925,0.129663,0.74111,0.398655,0.22482,0.920706,0.115734,0.566796,0.758713,0.70746,0.268867,0.915254,0.230061,0.138458,0.131103,0.468316,0.30862,0.424277,0.0949395,0.063038,0.841981,0.728845,0.580306,0.867449,0.624146,0.228455,0.265314,0.205358,0.584741,0.635919,0.079856,0.563941,0.444047,0.939958,0.593603,0.118912,0.0667119,0.748655,0.00958431,0.102152,0.183253,0.177363,0.0133094,0.732335,0.981953,0.809907,0.0698701,0.632704,0.222553,0.0466666,0.164226,0.59051,0.392286,0.57693,0.449205,0.297994,0.526189,0.533015,0.508797,0.542077,0.474664,0.554195,0.204595,0.299378,0.704141,0.592691,0.503863,0.115275,0.52506,0.630347,0.529279,0.532232,0.335816,0.649999,0.960123,0.0210908,0.821837,0.281427,0.363231,0.749042,0.00486463,0.0600877,0.373276,0.644593,0.210395,0.0121955,0.925156,0.871438,0.255597,0.0656227,0.215421,0.0250714,0.94783,0.207507,0.521567,0.310936,0.868354,0.12564,0.674942,0.918955,0.233307,0.638189,0.902268,0.869955,0.784929,0.820776,0.960763,0.806321,0.961643,0.810945,0.08689,0.421989,0.583106,0.5778,0.843623,0.761704,0.159932,0.489065,0.384086,0.412609,0.350616,0.624928,0.420019,0.967045,0.319287,0.266685,0.646385,0.75628,0.876703,0.0125022,0.175614,0.440227,0.239919,0.280975,0.890917,0.149864,0.691412,0.357199,0.489712,0.546194,0.00132376,0.965846,0.0905464,0.748897,0.416526,0.692726,0.47507,0.374433,0.643062,0.391182,0.129562,0.239467,0.148064,0.0413088,0.977337,0.439672,0.667202,0.279707,0.92464,0.70424,0.725557,0.0708032,0.721747,0.829273,0.756058,0.902202,0.958719,0.348268,0.862151,0.962584,0.900806,0.71946,0.345697,0.375687,0.954051,0.512146,0.891405,0.47147,0.00458473,0.407382,0.53837,0.985078,0.968234,0.513593,0.875502,0.581886,0.627252,0.760236,0.612166,0.516936,0.442441,0.974479,0.285359,0.646813,0.326418,0.86281,0.605446,0.136092,0.434359,0.356336,0.399134,0.0548466,0.458603,0.681496,0.223735,0.88755,0.00976443,0.296654,0.275945,0.0475368,0.619249,0.716455,0.46499,0.682651,0.537679,0.590389,0.795852,0.600267,0.025731,0.0224099,0.965495,0.622749,0.32817,0.320275,0.0104872,0.775969,0.0154955,0.783784,0.652523,0.122153,0.512542,0.607629,0.138377,0.086772,0.91818,0.528182,0.23268,0.621845,0.806598,0.85389,0.503697,0.979439,0.627448,0.234475,0.732649,0.147392,0.176651,0.721648,0.764233,0.626258,0.833022,0.930455,0.552609,0.321661,0.737298,0.735034,0.969769,0.272832,0.0614284,0.603805,0.14834,0.499803,0.139962,0.00895375,0.486293,0.844566,0.83032,0.576911,0.58905,0.426903,0.0651822,0.0951054,0.747801,0.732657,0.694473,0.61619,0.342063,0.115605,0.859891,0.044,0.418776,0.0904443,0.884822,0.76046,0.568824,0.392929,0.379841,0.771058,0.68477,0.997015,0.466977,0.500997,0.825377,0.183033,0.252378,0.0987732,0.685948,0.539169,0.889583,0.209436,0.278811,0.012649,0.873896,0.0186272,0.804521,0.564621,0.0823437,0.425794,0.371488,0.526072,0.658677,0.988491,0.398583,0.758512,0.793005,0.114247,0.883088,0.881217,0.4229,0.10761,0.547173,0.181883,0.941595,0.0816514,0.813622,0.836602,0.185331,0.91986,0.874142,0.777401,0.169957,0.668189,0.182735,0.0380374,0.0226129,0.520954,0.95563,0.526918,0.95688,0.269974,0.0332909,0.0499378,0.285899,0.477037,0.473679,0.0975617,0.0575131,0.676266,0.279987,0.0733333,0.659742,0.112538,0.511811,0.591382,0.366997,0.0291512,0.482852,0.663164,0.895449,0.68201,0.645711,0.948339,0.636719,0.848573,0.326406,0.464298,0.796644,0.327027,0.255869,0.579166,0.52938,0.823769,0.806996,0.885784,0.285339,0.461719,0.451365,0.340165,0.73055,0.364106,0.269463,0.995086,0.56147,0.572314,0.601203,0.747558,0.82919,0.496979,0.659799,0.295757,0.571486,0.921616,0.534872,0.421059,0.70679,0.950832,0.299398,0.986086,0.587018,0.66417,0.729569,0.476883,0.750015,0.540547,0.146052,0.75018,0.13623,0.495082,0.0700662,0.565971,0.287326,0.910382,0.666966,0.181033,0.555207,0.552316,0.781609,0.589937,0.158404,0.513623,0.693957,0.829429,0.0128309,0.855858,0.804,0.907038,0.293702,0.27208,0.468192,0.55394,0.339198,0.435499,0.557841,0.522213,0.771054,0.0359527,|0.366825,0.34202,0.648032,0.898814,0.834582,0.641025,0.804002,0.725146,0.362194,0.0942949,0.883226,0.06064,0.882088,0.762399,0.759174,0.276244,0.564713,0.0757856,0.0542141,0.12103,0.410818,0.909862,0.106188,0.405292,0.136169,0.250841,0.18148,0.352977,0.0738372,0.138047,0.28406,0.839999,0.673794,0.722291,0.134225,0.915699,0.510377,0.181201,0.714128,0.5043,0.0634112,0.941515,0.454481,0.662421,0.949363,0.00549263,0.281949,0.724306,0.929205,0.838599,0.31776,0.161379,0.43443,0.170401,0.58948,0.334522,0.381704,0.351744,0.224905,0.994262,0.905557,0.373228,0.320078,0.590184,0.640237,0.113682,0.0615796,0.106911,0.327728,0.596734,0.183065,0.398255,0.443788,0.608979,0.822015,0.228785,0.554001,0.661792,0.0666858,0.733258,0.567169,0.829396,0.0509962,0.130496,0.817475,0.93147,0.415602,0.0739212,0.016913,0.0330986,0.619376,0.50194,0.0817805,0.0203636,0.822718,0.289746,0.264053,0.576912,0.529137,0.181469,0.167285,0.644312,0.337513,0.935822,0.641148,0.41138,0.305769,0.250995,0.994143,0.0844281,0.224398,0.945335,0.948495,0.813662,0.206443,0.9054,0.427744,0.814411,0.585721,0.684679,0.739532,0.606211,0.451781,0.482971,0.821401,0.719227,0.816113,0.185225,0.308099,0.450366,0.71228,0.501923,0.20959,0.642335,0.497017,0.552827,0.341719,0.404803,0.374255,0.339845,0.724757,0.994276,0.957562,0.431686,0.830816,0.119096,0.967758,0.403106,0.142537,0.679376,0.37222,0.851194,0.868198,0.0156657,0.519292,0.700558,0.0820975,0.170559,0.6788,0.745477,0.189039,0.647032,0.0958616,0.840053,0.724229,0.537317,0.450201,0.45662,0.529884,0.0156842,0.0607921,0.265398,0.248647,0.741376,0.497452,0.850395,0.063871,0.819968,0.967974,0.748181,0.660914,0.73002,0.435635,0.157718,0.801213,0.881052,0.967082,0.011649,0.863765,0.218301,0.85328,0.964774,0.357784,0.0728115,0.364455,0.860148,0.770049,0.414091,0.0193597,0.210187,0.602057,0.191855,0.336147,0.0427661,0.595369,0.521836,0.417496,0.0729582,0.75571,0.365934,0.855536,0.68784,0.299533,0.854558,0.292227,0.0123715,0.275067,0.626159,0.559731,0.951143,0.689019,0.109652,0.348323,0.938597,0.941297,0.0401996,0.465582,0.83218,0.901309,0.862443,0.951462,0.489014,0.19253,0.347768,0.765206,0.533807,0.927737,0.719229,0.720277,0.496812,0.374521,0.295752,0.266508,0.819394,0.123772,0.569163,0.224975,0.905799,0.443568,0.853575,0.140934,0.0271512,0.204384,0.772229,0.989419,0.302123,0.515623,0.947233,0.625096,0.778435,0.333389,0.66664,0.805495,0.279528,0.610825,0.634567,0.252089,0.217524,0.889202,0.00726229,0.535965,0.505225,0.286216,0.633119,0.700868,0.435766,0.21338,0.378559,0.219993,0.945617,0.728734,0.732171,0.205515,0.923855,0.174558,0.794195,0.105031,0.332145,0.871741,0.155364,0.0154434,0.379325,0.9934,0.642607,0.903619,0.915306,0.7902,0.864887,0.0560575,0.221651,0.985793,0.162223,0.763501,0.994068,0.875175,0.452536,0.0425303,0.848439,0.682044,0.340715,0.54866,0.642286,0.0909386,0.984936,0.172026,0.827231,0.203693,0.0481322,0.962238,0.585148,0.452391,0.321899,0.643125,0.774294,0.819791,0.824259,0.170404,0.559231,0.0324161,0.707767,0.561252,0.99147,0.525747,0.129666,0.772793,0.281697,0.518513,0.65408,0.722367,0.506551,0.726349,0.421281,0.168156,0.542556,0.997141,0.297928,0.761256,0.295844,0.444395,0.71358,0.315531,0.294981,0.319266,0.86635,0.08315,0.0246011,0.251095,0.716272,0.0130851,0.174814,0.834248,0.096018,0.885858,0.656431,0.618322,0.0143487,0.170341,0.693561,0.486168,0.086589,0.379522,0.511155,0.128944,0.521324,0.358969,0.850384,0.942205,0.932299,0.0571365,0.280097,0.276156,0.646427,0.238315,0.537304,0.774737,0.374605,0.112544,0.86448,0.0930755,0.186746,0.588143,0.563251,0.889104,0.642595,0.31953,0.774642,0.423294,0.221125,0.459098,0.456569,0.990393,0.617204,0.207706,0.0159186,0.0201148,0.610267,0.0904713,0.319722,0.635435,0.799408,0.19728,0.0505643,0.394723,0.892323,0.313361,0.734943,0.303043,0.0935988,0.535908,0.85626,0.242777,0.0545005,0.317698,0.533197,0.808888,0.789418,0.569079,0.989731,0.0332722,0.667278,0.759814,0.35328,0.498895,0.581284,0.191018,0.692287,0.350066,0.940203,0.967235,0.27748,0.741055,0.484951,0.607336,0.77277,0.475756,0.200537,0.0871225,0.535977,0.298106,0.593793,0.150981,0.59022,0.697352,0.346761,0.789132,0.0191039,0.541474,0.0881733,0.977787,0.0116646,0.175884,0.813444,0.720542,0.594227,0.655925,0.00935113,0.0996004,0.0254875,0.575503,0.729962,0.0418392,0.29074,0.974608,0.86285,0.332288,0.019867,0.712226,0.51344,0.955064,0.154926,0.871006,0.110334,0.632608,0.328999,0.184927,0.883897,0.940093,0.618534,0.881691,0.385641,0.975935,0.309123,0.182108,0.111684,0.00561166,0.804489,0.338706,0.841215,0.010374,0.47669,0.509681,0.153814,0.750707,0.739227,0.100084,0.311748,0.549317,0.850187,0.0114353,0.500351,0.686135,0.0408196,0.933553,0.966257,0.300184,0.734015,0.415162,0.446569,0.546463,0.301224,0.382464,0.0771269,0.39686,0.296733,0.389036,0.321918,0.133845,0.215489,0.17822,0.78033,0.333779,0.9033,0.384572,0.237678,0.408572,0.475368,0.237668,0.945136,0.983415,0.145715,0.814447,0.130009,0.998372,0.388107,0.665469,0.577326,0.0977129,0.878337,0.92074,0.72749,0.738862,0.750344,0.698281,0.641307,0.915682,0.937404,0.137117,0.921276,0.970422,0.99325,0.176314,0.0330119,0.440662,0.0338152,0.816696,0.578577,0.862007,0.0260434,0.881649,0.186219,0.937431,0.129189,0.0585406,0.828213,0.31057,0.443407,0.481081,0.280222,0.00567281,0.587215,0.966577,0.850334,0.4824,0.73464,0.462479,0.221088,0.393425,0.223224,0.703429,0.864275,0.831109,0.689927,0.659131,0.837636,0.834713,0.987756,0.717196,0.169483,0.91435,0.515707,0.0634713,0.299786,0.317704,0.895019,0.684347,0.354508,0.395261,0.962576,0.0156215,0.0525697,0.885471,0.393243,0.236011,0.164209,0.380092,0.0942371,0.185154,0.496444,0.892308,0.922095,0.353054,0.430597,0.553476,0.886234,0.983964,0.161388,0.294311,0.580913,0.479604,0.184259,0.60425,0.980068,0.845216,0.245087,0.388451,0.405727,0.314837,0.294405,0.706236,0.281506,0.151444,0.223379,0.84376,0.254543,0.758571,0.186648,0.540206,0.841763,0.758965,0.43851,0.656089,0.165565,0.394063,0.424344,0.763177,0.578421,0.952323,0.7995,0.651177,0.482537,0.951385,0.102187,0.762735,0.685459,0.449139,0.101045,0.1293,0.102831,0.347653,0.66934,0.88027,0.398388,0.897186,0.996382,0.391123,0.861227,0.997123,0.111916,0.325354,0.239365,0.467029,0.325751,0.0631649,0.882728,0.175294,0.953517,0.557444,0.52571,0.727668,0.458185,0.669425,0.358972,0.226527,0.934127,0.408813,0.255088,0.483077,0.395791,0.64986,0.142043,0.0253177,0.57966,0.011766,0.687898,0.24473,0.881782,0.342302,0.00298941,0.728552,0.486359,0.617952,0.802286,0.0528032,0.633209,0.0787613,0.184702,0.0505989,0.629198,0.374034,0.749589,0.351803,0.736291,0.31658,0.1628,0.403653,0.121938,0.0272396,0.264434,0.972519,0.537804,0.859943,0.781798,0.208695,0.18033,0.49791,0.585981,0.373356,0.70019,0.360736,0.96761,0.853273,0.125986,0.676514,0.488968,0.295175,0.942952,0.65622,0.516779,0.358482,0.754071,0.232739,0.680181,0.806679,0.371286,0.688263,0.468632,0.416523,0.444414,0.489999,0.110495,0.307123,0.707573,0.985809,0.0410604,0.306832,0.978583,0.525374,0.731121,0.277181,0.680589,0.229556,0.0761019,0.137049,0.508907,0.847026,0.714319,0.519157,0.679646,0.307418,0.0925474,0.174792,0.958342,0.61945,0.998978,0.806023,0.985942,0.967786,0.768442,0.922441,0.480391,0.294569,0.0874071,0.987932,0.687383,0.117548,0.398444,0.227369,0.52254,0.359407,0.237606,0.556066,0.222734,0.615769,0.416991,0.983425,0.927591,0.792108,0.393463,0.362244,0.291631,0.755669,0.181212,0.643185,0.68784,0.826063,0.0511924,0.315618,0.66121,0.955528,0.905956,0.532582,0.864683,0.328582,0.49025,0.676227,0.139965,0.504738,0.0275592,0.868236,0.550978,0.705882,0.0103883,0.209015,0.882165,0.926167,0.713699,0.971309,0.15127,0.608331,0.825319,0.555544,0.439959,0.879108,0.228507,0.550402,0.0789347,0.464512,0.550813,0.719582,0.286264,0.308512,0.582489,0.863454,0.712646,0.333305,0.173831,0.769104,0.353423,0.895668,0.326536,0.584603,0.935797,0.0600705,0.532009,0.378265,0.883667,0.243704,0.174637,0.601788,0.197622,0.790673,0.309823,0.78955,0.0550569,0.212972,0.178444,0.897737,0.669432,0.67174,0.31936,0.30284,0.408093,0.437764,0.797772,0.0532397,0.0833768,0.983444,0.0573963,0.849798,0.158116,0.459869,0.404929,0.682124,0.319369,0.978163,0.480034,0.0152912,0.193739,0.981422,0.0878959,0.113333,0.594235,0.499083,0.525192,0.53038,0.519309,0.337247,0.0571915,0.891868,0.152562,0.79411,0.606516,0.748205,0.404626,0.351573,0.105138,0.497333,0.466721,0.563461,0.370683,0.723133,0.320753,0.733127,0.0122872,0.112421,0.204495,0.0147055,0.875609,0.96768,0.00573748,0.568961,0.924689,0.280267,0.828076,0.54389,0.940037,0.330368,0.166212,0.567003,0.482621,0.419919,0.216079,0.152478,0.727508,0.724032,0.090484,0.395195,0.986427,0.536296,0.331577,0.395815,0.267276,0.0881028,0.68553,0.0784613,0.423112,0.85849,0.978827,0.429695,0.640701,0.0302469,0.646755,0.690301,0.00270325,0.544626,0.464644,0.871094,0.414444,0.513759,0.547205,0.442359,0.260615,0.0846997,0.914092,0.533101,0.0905591,0.172187,0.910567,0.384329,0.615293,0.169579,0.91393,0.0982829,0.145505,0.00969958,0.0518456,0.40493,0.325032,0.9607,0.870812,0.423281,0.993938,0.636203,0.0589652,0.516128,0.237544,0.92211,0.046489,0.108591,0.863019,|0.291216,0.317735,0.121391,0.463439,0.059797,0.124401,0.499216,0.503081,0.00647426,0.201828,0.0373621,0.113378,0.0283746,0.596553,0.33593,0.665079,0.0926838,0.802934,0.724318,0.688164,0.640138,0.888627,0.453453,0.233704,0.117016,0.0693994,0.304902,0.27649,0.30384,0.475367,0.660245,0.665663,0.625799,0.426814,0.215855,0.640677,0.429806,0.34088,0.772055,0.889517,0.680386,0.958149,0.987302,0.842337,0.490547,0.259236,0.0376152,0.990319,0.517018,0.246983,0.714806,0.957494,0.119628,0.730974,0.0408694,0.67709,0.114829,0.568355,0.0255873,0.15833,0.720969,0.580976,0.133128,0.0279053,0.795834,0.295346,0.10325,0.91268,0.968226,0.735337,0.265307,0.261978,0.0530424,0.0266684,0.175191,0.25289,0.26393,0.340783,0.764016,0.404095,0.645206,0.11905,0.030112,0.751409,0.651312,0.662257,0.697583,0.270993,0.0194176,0.0868191,0.867462,0.946627,0.891688,0.0491924,0.236353,0.0882407,0.353771,0.624891,0.547508,0.128888,0.441345,0.950876,0.285273,0.566561,0.733131,0.956578,0.958665,0.0413154,0.718464,0.296337,0.936185,0.489038,0.292589,0.459337,0.925507,0.64131,0.883827,0.50122,0.724286,0.284107,0.626918,0.226601,0.723364,0.495404,0.911164,0.0547181,0.0559946,0.807123,0.716663,0.337048,0.323815,0.0195816,0.243745,0.889141,0.788856,0.62359,0.982956,0.894225,0.342835,0.683417,0.759513,0.41835,0.800999,0.0342553,0.758732,0.830821,0.105033,0.265191,0.0374005,0.186091,0.540131,0.778514,0.828985,0.169903,0.172155,0.209499,0.122883,0.0548236,0.565495,0.725817,0.788762,0.583286,0.22492,0.907293,0.952684,0.822241,0.601704,0.850432,0.842075,0.163824,0.783139,0.861616,0.667065,0.137453,0.818185,0.876296,0.247924,0.234965,0.858578,0.257398,0.555116,0.0634181,0.411221,0.197372,0.222878,0.000396669,0.489483,0.628962,0.670298,0.504371,0.220912,0.730557,0.976199,0.686488,0.0380182,0.81535,0.412803,0.313953,0.424943,0.106859,0.690147,0.333145,0.888045,0.614674,0.106527,0.616104,0.277903,0.0167496,0.489475,0.3086,0.994074,0.136545,0.505364,0.95992,0.928884,0.456931,0.0279798,0.113206,0.431737,0.369764,0.0503613,0.0134961,0.238973,0.742517,0.475592,0.491298,0.800743,0.379886,0.0719392,0.679857,0.457906,0.750042,0.252186,0.738764,0.479151,0.839518,0.882738,0.436602,0.927483,0.530332,0.674335,0.532123,0.54815,0.394738,0.151531,0.352358,0.777292,0.0489501,0.585388,0.492162,0.771097,0.728232,0.506822,0.219184,0.754876,0.798924,0.125866,0.458043,0.300845,0.664155,0.307042,0.635726,0.0407332,0.79742,0.178284,0.389221,0.823935,0.075253,0.0212021,0.428655,0.663727,0.372161,0.499156,0.828309,0.991002,0.536287,0.160027,0.946517,0.715755,0.725327,0.0023942,0.800763,0.989631,0.553498,0.842619,0.411354,0.196391,0.709018,0.691956,0.101534,0.509696,0.576531,0.0077796,0.456707,0.594305,0.356403,0.8171,0.102284,0.0660397,0.120806,0.130018,0.556571,0.336364,0.269163,0.974047,0.401987,0.876867,0.337389,0.907853,0.253085,0.963994,0.76257,0.907321,0.684614,0.838564,0.686322,0.283511,0.459542,0.0330964,0.994845,0.527321,0.444295,0.385279,0.48559,0.718945,0.950944,0.71442,0.274416,0.0543174,0.252853,0.30858,0.880669,0.534597,0.733728,0.651725,0.816613,0.456253,0.958848,0.972191,0.582614,0.655766,0.961775,0.831662,0.177316,0.694,0.457248,0.290086,0.809192,0.057114,0.635433,0.64063,0.243056,0.376821,0.127977,0.734795,0.624253,0.875128,0.54236,0.439314,0.746355,0.944034,0.436282,0.244104,0.893349,0.0920459,0.19348,0.652126,0.0540842,0.717124,0.876215,0.828501,0.852499,0.815036,0.526042,0.53928,0.265511,0.238511,0.210916,0.718064,0.233017,0.286399,0.721823,0.704433,0.0791664,0.178895,0.64939,0.425079,0.904417,0.158806,0.362133,0.047914,0.42279,0.192624,0.892528,0.336997,0.649443,0.596449,0.219508,0.709499,0.183307,0.0389011,0.341857,0.599334,0.681064,0.630759,0.238195,0.904871,0.782841,0.80808,0.164283,0.391345,0.0297144,0.788075,0.123797,0.736722,0.201756,0.490496,0.436433,0.849721,0.257559,0.539012,0.626141,0.972974,0.918476,0.315594,0.972829,0.895806,0.933433,0.324736,0.581817,0.24681,0.282948,0.0387538,0.737944,0.741852,0.861377,0.942988,0.49296,0.819932,0.7652,0.469199,0.705184,0.333855,0.425005,0.372004,0.122516,0.74729,0.276788,0.679571,0.935707,0.794897,0.471345,0.241124,0.811506,0.668817,0.44001,0.179811,0.589328,0.327967,0.759678,0.218769,0.589132,0.0201587,0.988616,0.222743,0.649135,0.525733,0.796102,0.146561,0.984089,0.66899,0.0465035,0.914875,0.997504,0.667173,0.478285,0.192206,0.0803904,0.239611,0.389249,0.193921,0.351509,0.648339,0.372664,0.305384,0.0433561,0.551767,0.662745,0.190765,0.980945,0.324853,0.803475,0.400274,0.23572,0.558371,0.900415,0.779718,0.0294998,0.0259908,0.0353898,0.918243,0.61836,0.769088,0.658975,0.125775,0.130761,0.231053,0.927541,0.94669,0.88096,0.144583,0.580374,0.645868,0.0722486,0.103806,0.922663,0.00573879,0.413806,0.805629,0.138309,0.0850807,0.464175,0.0630739,0.0984002,0.0528457,0.856988,0.675868,0.922159,0.00252432,0.191492,0.311524,0.161661,0.723032,0.0172154,0.14485,0.550941,0.720334,0.174838,0.86393,0.81729,0.0833607,0.788398,0.670052,0.687271,0.781093,0.218628,0.747835,0.315932,0.929918,0.189791,0.736588,0.324927,0.618433,0.468137,0.115302,0.145609,0.661709,0.155133,0.709321,0.70645,0.614701,0.0331472,0.714978,0.307158,0.76118,0.631832,0.530147,0.858116,0.609119,0.921149,0.0128087,0.176018,0.952588,0.549815,0.744878,0.656024,0.234163,0.73214,0.943207,0.0428987,0.0644388,0.379643,0.733635,0.435373,0.737198,0.564937,0.982764,0.177804,0.0586379,0.31159,0.186371,0.234638,0.235517,0.599518,0.8647,0.919836,0.194927,0.526568,0.138709,0.214344,0.85433,0.957011,0.304779,0.584385,0.549297,0.45454,0.202031,0.736735,0.420377,0.496264,0.548438,0.730678,0.363025,0.923681,0.309636,0.650269,0.550539,0.153213,0.838571,0.855773,0.741978,0.480052,0.400998,0.498239,0.723126,0.665772,0.984568,0.690634,0.287633,0.149635,0.872172,0.614877,0.954583,0.839915,0.910435,0.111292,0.95645,0.926793,0.131295,0.616528,0.446809,0.699634,0.272241,0.780512,0.876265,0.141647,0.054476,0.751556,0.633242,0.651057,0.974307,0.851298,0.686618,0.729921,0.702945,0.337736,0.0101703,0.837536,0.803287,0.0315509,0.516743,0.521954,0.462429,0.0990029,0.567603,0.595793,0.413216,0.136956,0.860961,0.783615,0.403766,0.48427,0.702093,0.802123,0.375577,0.073626,0.790096,0.745917,0.70918,0.469998,0.401779,0.869106,0.541421,0.243576,0.928196,0.0667197,0.594815,0.8514,0.489427,0.542693,0.552541,0.0126791,0.779429,0.342366,0.387576,0.716006,0.755908,0.645181,0.645397,0.667338,0.457014,0.52042,0.316111,0.0714543,0.411714,0.564715,0.0790477,0.249947,0.388998,0.624221,0.970294,0.00474995,0.0465629,0.218147,0.618281,0.355459,0.759083,0.23894,0.457814,0.879567,0.235213,0.614753,0.695129,0.188571,0.116759,0.0989269,0.673236,0.557738,0.686373,0.785997,0.0901248,0.215703,0.642427,0.03875,0.943912,0.803876,0.367697,0.739409,0.438228,0.680625,0.705967,0.521951,0.607321,0.316241,0.80453,0.917105,0.20037,0.805397,0.253104,0.986959,0.524991,0.688891,0.510879,0.509023,0.312336,0.856805,0.636718,0.965944,0.10658,0.137157,0.206092,0.882729,0.101584,0.786629,0.340853,0.0218452,0.982772,0.434082,0.28772,0.406664,0.274582,0.156476,0.902754,0.898094,0.298522,0.826251,0.179674,0.294367,0.283866,0.181065,0.466029,0.333788,0.385645,0.246685,0.592553,0.871491,0.486649,0.145736,0.628308,0.765263,0.793518,0.505936,0.875735,0.42189,0.648131,0.72214,0.269865,0.335742,0.444783,0.691634,0.519354,0.292901,0.295117,0.976607,0.557877,0.147796,0.82135,0.440219,0.0294947,0.935882,0.144412,0.138439,0.114201,0.36558,0.291211,0.876098,0.85449,0.952075,0.912707,0.479144,0.292856,0.757969,0.638341,0.90686,0.970254,0.501765,0.31761,0.690242,0.681372,0.0360935,0.681422,0.649392,0.0976874,0.217789,0.390703,0.797469,0.901836,0.0464166,0.875166,0.040819,0.652628,0.868492,0.30147,0.104053,0.624791,0.537871,0.843801,0.126312,0.138395,0.574054,0.744288,0.482746,0.900602,0.157667,0.197699,0.0442852,0.813529,0.827352,0.593831,0.990727,0.285389,0.475125,0.563076,0.381049,0.571551,0.231618,0.827489,0.836058,0.553313,0.258453,0.937761,0.253914,0.811805,0.938854,0.953029,0.275041,0.260467,0.0768687,0.227363,0.14647,0.491383,0.617839,0.23583,0.443488,0.0858553,0.857481,0.267962,0.418967,0.391998,0.50227,0.0183955,0.965233,0.759697,0.593607,0.0978138,0.497976,0.30677,0.556583,0.814762,0.424376,0.851117,0.18087,0.333605,0.547563,0.496388,0.102526,0.436124,0.639559,0.857641,0.20674,0.544629,0.155787,0.647854,0.728003,0.243965,0.0694606,0.55198,0.969218,0.995875,0.0895684,0.12119,0.430873,0.762573,0.720566,0.578085,0.313189,0.204236,0.199886,0.431358,0.405425,0.175727,0.954638,0.866722,0.656654,0.134155,0.207081,0.302034,0.433697,0.340882,0.433728,0.126179,0.324115,0.376581,0.268943,0.547621,0.337215,0.768432,0.798129,0.160135,0.326959,0.333843,0.340595,0.298848,0.0386497,0.123541,0.452754,0.954176,0.709402,0.410897,0.973928,0.249279,0.768931,0.531483,0.201597,0.75518,0.0914226,0.241837,0.967714,0.406397,0.187164,0.178035,0.781355,0.223884,0.00285131,0.17712,0.12545,0.83571,0.710023,0.448404,0.922534,0.0360629,0.198624,0.903997,0.619044,0.846234,0.715076,0.118249,0.0904187,0.25929,0.604748,0.186889,0.871126,0.942832,0.388992,0.774902,0.56549,0.668994,0.876613,0.488805,0.350661,|0.838551,0.540307,0.175004,0.478723,0.326104,0.0562982,0.34728,0.645703,0.0311772,0.463564,0.523879,0.395405,0.29308,0.675072,0.0711242,0.0611033,0.44576,0.308038,0.84686,0.50322,0.683595,0.635391,0.475329,0.737367,0.637849,0.0866024,0.686273,0.67533,0.424852,0.771698,0.242671,0.171444,0.390265,0.847744,0.336607,0.135553,0.476708,0.186472,0.500962,0.794301,0.0895673,0.804416,0.510006,0.745992,0.956063,0.156329,0.777175,0.290847,0.0236065,0.201105,0.447249,0.262069,0.634671,0.221187,0.858456,0.845984,0.208151,0.127744,0.0088082,0.903042,0.916384,0.840947,0.53266,0.339743,0.4827,0.823806,0.855862,0.503587,0.356433,0.825078,0.565232,0.923686,0.974062,0.697703,0.737255,0.742068,0.609812,0.682701,0.367903,0.652246,0.434466,0.0145406,0.646781,0.933953,0.444814,0.769205,0.171902,0.120487,0.226392,0.760923,0.498773,0.985736,0.355019,0.147207,0.206197,0.99663,0.607066,0.98109,0.39275,0.0713739,0.908395,0.980098,0.797037,0.866197,0.644616,0.0616095,0.852947,0.404204,0.76021,0.077623,0.473166,0.673582,0.976191,0.789405,0.952172,0.596284,0.92579,0.180873,0.73988,0.166041,0.193537,0.184674,0.853687,0.796151,0.0738627,0.467166,0.581946,0.535044,0.73812,0.227847,0.813803,0.0673956,0.12788,0.75461,0.261353,0.370416,0.211909,0.725907,0.258435,0.0210353,0.583427,0.574899,0.717175,0.291897,0.401697,0.00336248,0.376844,0.312829,0.349751,0.755797,0.476087,0.12956,0.859071,0.155072,0.953781,0.898241,0.651287,0.199958,0.615355,0.25948,0.865165,0.451647,0.994376,0.282774,0.572404,0.59893,0.940226,0.00710303,0.121157,0.886919,0.800372,0.897335,0.0235424,0.675103,0.0737685,0.690964,0.184648,0.856372,0.565991,0.680682,0.687523,0.546593,0.287028,0.670127,0.726342,0.149309,0.790528,0.122033,0.167556,0.979162,0.761012,0.273265,0.467424,0.256254,0.258917,0.697894,0.891101,0.0498134,0.922542,0.523433,0.633653,0.714001,0.737129,0.846165,0.96138,0.991089,0.0453161,0.0914221,0.557154,0.161067,0.454391,0.164208,0.233681,0.620129,0.747681,0.324138,0.0951695,0.703922,0.700765,0.0993105,0.859792,0.588532,0.737085,0.474783,0.00735539,0.131806,0.882693,0.485984,0.294334,0.222795,0.180578,0.576689,0.19141,0.40764,0.912765,0.188033,0.853994,0.962339,0.36277,0.607974,0.0587184,0.0333237,0.47281,0.871271,0.130421,0.620423,0.09591,0.937892,0.621807,0.197942,0.249971,0.734542,0.825896,0.637823,0.5303,0.0537033,0.534565,0.059975,0.124545,0.471915,0.969639,0.268697,0.254655,0.0628231,0.526249,0.546801,0.355587,0.821175,0.0949791,0.137573,0.846353,0.694996,0.106934,0.507509,0.032335,0.862491,0.971722,0.961022,0.16968,0.170962,0.552104,0.286265,0.691718,0.0598142,0.304568,0.605969,0.237003,0.0610216,0.0145577,0.559212,0.453936,0.0106423,0.431242,0.840305,0.65736,0.275412,0.124661,0.599528,0.842134,0.254877,0.712409,0.44296,0.988754,0.990316,0.931941,0.927785,0.765719,0.544178,0.324176,0.576447,0.203219,0.353347,0.20608,0.179927,0.56154,0.319951,0.695377,0.515466,0.778822,0.996963,0.611661,0.774983,0.0974481,0.822796,0.772479,0.816877,0.625372,0.080912,0.752482,0.949398,0.803003,0.370151,0.737653,0.771582,0.225257,0.477642,0.00774246,0.493967,0.978635,0.110398,0.0479875,0.88255,0.0399327,0.516457,0.515909,0.0973805,0.0760404,0.210387,0.561498,0.945253,0.934991,0.571582,0.263183,0.469078,0.36633,0.00803953,0.675374,0.551519,0.975958,0.80097,0.352245,0.962899,0.499879,0.219726,0.437267,0.723832,0.285319,0.243169,0.854617,0.116716,0.181826,0.970771,0.462908,0.747498,0.853858,0.703005,0.0167255,0.067865,0.808739,0.0709395,0.162088,0.0501003,0.257361,0.24575,0.273622,0.0442769,0.0811625,0.971618,0.554187,0.776486,0.899859,0.0955586,0.884483,0.815027,0.309517,0.85435,0.038193,0.396405,0.38255,0.780037,0.305939,0.192801,0.492556,0.877305,0.839096,0.218083,0.78389,0.412294,0.640397,0.922322,0.689932,0.828148,0.0194507,0.061304,0.402368,0.820565,0.931358,0.4463,0.297297,0.386482,0.488777,0.950248,0.512498,0.990925,0.703375,0.775331,0.397264,0.386841,0.53973,0.822514,0.0120891,0.528531,0.330282,0.501754,0.161631,0.858741,0.0626262,0.912242,0.430479,0.681668,0.525219,0.684367,0.790341,0.351339,0.669144,0.082724,0.866033,0.754323,0.765956,0.919222,0.295631,0.775755,0.394479,0.987709,0.644053,0.411669,0.0977036,0.183766,0.0969522,0.655142,0.050127,0.974792,0.228151,0.596836,0.482918,0.419211,0.00736648,0.331132,0.521459,0.438355,0.998568,0.592965,0.368497,0.299527,0.0514864,0.0463947,0.919431,0.917798,0.884912,0.71529,0.465757,0.36907,0.0978999,0.0772107,0.0785505,0.117284,0.711977,0.643761,0.0817536,0.706772,0.926387,0.178877,0.384185,0.619016,0.699874,0.102394,0.70942,0.165074,0.743111,0.966059,0.193988,0.22473,0.270309,0.465799,0.737431,0.862463,0.593349,0.486121,0.199872,0.774163,0.110476,0.554208,0.54464,0.460976,0.370926,0.732426,0.154239,0.38579,0.823487,0.0712813,0.644297,0.331243,0.647696,0.480641,0.763205,0.648747,0.714294,0.208629,0.53508,0.122054,0.658143,0.0839682,0.37542,0.532065,0.116922,0.906864,0.486324,0.249299,0.343589,0.635605,0.943293,0.89361,0.647064,0.486149,0.0588911,0.972689,0.907872,0.271341,0.719569,0.370506,0.403262,0.587648,0.125502,0.544315,0.340204,0.295223,0.38033,0.463703,0.318502,0.0173412,0.899404,0.337777,0.247033,0.39119,0.433696,0.542612,0.138068,0.0949196,0.622847,0.0859476,0.38546,0.188339,0.662631,0.310981,0.99483,0.488456,0.418643,0.634863,0.478616,0.881479,0.0877666,0.222829,0.993645,0.155311,0.775539,0.0460603,0.0822639,0.896495,0.200083,0.657013,0.0739454,0.449016,0.543069,0.326849,0.949837,0.642334,0.0881779,0.115625,0.414516,0.839715,0.420425,0.176323,0.620233,0.834892,0.78033,0.396838,0.578007,0.819768,0.392864,0.263364,0.0942565,0.339501,0.224337,0.128362,0.932296,0.752027,0.576205,0.955715,0.195507,0.990199,0.16056,0.794734,0.769751,0.301018,0.49638,0.949141,0.753708,0.210261,0.57298,0.399573,0.821125,0.345763,0.734713,0.324623,0.693982,0.114655,0.336523,0.927845,0.299766,0.903111,0.61515,0.989047,0.234272,0.176167,0.266882,0.310293,0.905374,0.59847,0.456502,0.342337,0.0497311,0.809285,0.0342891,0.174593,0.0132193,0.133672,0.0043962,0.574252,0.809245,0.351302,0.786533,0.270867,0.576719,0.855703,0.26241,0.845242,0.477115,0.298625,0.546148,0.712096,0.974988,0.0614289,0.13074,0.0138929,0.7183,0.49215,0.179697,0.60198,0.934632,0.171007,0.239988,0.875907,0.375934,0.764631,0.863305,0.0992731,0.834534,0.0602885,0.733493,0.334611,0.273758,0.0634074,0.346905,0.122658,0.166333,0.849505,0.221332,0.673618,0.807143,0.698834,0.0210797,0.276903,0.601408,0.818088,0.512757,0.0383716,0.254876,0.533398,0.843195,0.569164,0.606428,0.0951263,0.858389,0.0744586,0.334109,0.707668,0.768264,0.0647384,0.416955,0.823436,0.184897,0.133725,0.499371,0.233389,0.237079,0.161295,0.802599,0.0628603,0.45371,0.902766,0.337957,0.66871,0.0421438,0.773829,0.339418,0.599792,0.974408,0.742173,0.289473,0.300217,0.357745,0.663547,0.857846,0.443228,0.0790074,0.798729,0.548189,0.571958,0.768365,0.261622,0.930066,0.133855,0.345922,0.898057,0.488938,0.420951,0.398177,0.19386,0.77039,0.819961,0.891015,0.687218,0.837386,0.29912,0.767823,0.914022,0.642697,0.725439,0.0258984,0.903937,0.30718,0.907416,0.96565,0.475991,0.702425,0.166102,0.302679,0.373322,0.827736,0.153646,0.541853,0.0798692,0.222716,0.95855,0.753733,0.467831,0.317417,0.946247,0.0553661,0.158695,0.647464,0.0503498,0.163313,0.353224,0.117705,0.665,0.295202,0.732019,0.0144155,0.694816,0.679136,0.54839,0.512831,0.33739,0.560919,0.364818,0.778386,0.73838,0.665237,0.276706,0.496899,0.439458,0.462515,0.222748,0.059284,0.253063,0.561728,0.0810524,0.401573,0.352804,0.372506,0.336805,0.394174,0.0953941,0.0957742,0.388866,0.734108,0.899355,0.475442,0.288314,0.424753,0.0420409,0.209331,0.775331,0.4372,0.946147,0.387049,0.24389,0.337669,0.975119,0.185914,0.210656,0.929955,0.578934,0.0659953,0.428039,0.281244,0.904849,0.722792,0.412861,0.834053,0.5709,0.453586,0.246907,0.15933,0.597741,0.0866929,0.336072,0.0417134,0.594049,0.555685,0.295072,0.966584,0.782724,0.434367,0.935219,0.0201606,0.194247,0.259598,0.678537,0.0658183,0.98052,0.0775916,0.922893,0.537972,0.382189,0.404115,0.0151204,0.488775,0.962343,0.781427,0.950547,0.0299299,0.404327,0.206387,0.522707,0.253631,0.185739,0.952909,0.632594,0.283533,0.38726,0.520208,0.0304041,0.29727,0.702862,0.454303,0.30342,0.0169511,0.0611313,0.460609,0.189994,0.312186,0.593827,0.289357,0.374525,0.263152,0.780922,0.19313,0.143104,0.868914,0.75113,0.715178,0.13545,0.0380342,0.741742,0.714481,0.256136,0.176113,0.674967,0.19644,0.578434,0.698677,0.328201,0.792861,0.309692,0.480334,0.256128,0.723487,0.954067,0.573192,0.929301,0.740995,0.415191,0.876538,0.909336,0.702381,0.422176,0.504219,0.0273805,0.10752,0.194116,0.905227,0.327428,0.0156062,0.871716,0.644269,0.913015,0.174649,0.561592,0.872112,0.279855,0.203751,0.980182,0.762104,0.389038,0.345298,0.0776431,0.257647,0.076823,0.419276,0.900716,0.623603,0.729436,0.659274,0.560975,0.859452,0.652491,0.707433,0.0834297,0.370786,0.750093,0.978555,0.266011,0.917567,0.594373,0.198929,0.149021,0.339107,0.0211582,0.684047,0.459818,0.841393,0.09952,0.653453,0.542963,0.342855,0.905344,0.265981,0.260224,0.461324,0.419808,0.0244591,0.398681,0.99342,0.563765,0.942004,0.810362,0.76307,0.192873,|0.201108,0.126872,0.960479,0.473015,0.981702,0.198678,0.0523297,0.317793,0.628426,0.0587028,0.614893,0.999182,0.0101575,0.188237,0.811712,0.388036,0.851394,0.68251,0.421238,0.70547,0.917945,0.631856,0.308396,0.752036,0.110116,0.0705892,0.050555,0.773494,0.159605,0.37741,0.254478,0.960396,0.670178,0.944728,0.233654,0.272977,0.709943,0.333488,0.111201,0.340542,0.671968,0.013233,0.973376,0.0829089,0.537254,0.00249356,0.186014,0.402334,0.145384,0.611021,0.0293934,0.776165,0.491864,0.111933,0.0742888,0.230636,0.266726,0.621465,0.221512,0.560506,0.593571,0.807232,0.803429,0.106283,0.105857,0.802556,0.260657,0.4605,0.290844,0.320771,0.264289,0.277379,0.622233,0.133709,0.754041,0.369753,0.0635098,0.25684,0.452723,0.709987,0.627446,0.202057,0.178033,0.056528,0.961057,0.445636,0.783766,0.433138,0.61848,0.449189,0.666859,0.308306,0.638588,0.292604,0.632211,0.203226,0.451741,0.690703,0.982775,0.261566,0.929574,0.504794,0.395156,0.231082,0.885131,0.389259,0.836529,0.607995,0.293821,0.108351,0.640912,0.247535,0.168328,0.740448,0.929328,0.918079,0.523992,0.375491,0.829074,0.568417,0.412009,0.840002,0.204508,0.728556,0.36272,0.642288,0.652823,0.598969,0.13282,0.0318524,0.644021,0.397553,0.422084,0.882621,0.181313,0.851604,0.158429,0.850008,0.130266,0.740982,0.717802,0.909565,0.0959879,0.128087,0.455016,0.198943,0.425068,0.86829,0.704527,0.805501,0.927869,0.578456,0.224061,0.933092,0.0436481,0.182536,0.737742,0.474046,0.225887,0.545199,0.84306,0.249424,0.154478,0.581035,0.521333,0.398148,0.941978,0.0607767,0.388849,0.701452,0.61764,0.773078,0.192148,0.498669,0.809596,0.427898,0.138203,0.378864,0.870624,0.330628,0.0775795,0.777163,0.592921,0.973954,0.449417,0.0574417,0.637514,0.883176,0.260853,0.771318,0.0771376,0.447695,0.0701315,0.273259,0.601569,0.590301,0.234862,0.811345,0.113734,0.533026,0.0964626,0.44669,0.684764,0.458371,0.648416,0.210033,0.257488,0.0149046,0.822204,0.186227,0.0818463,0.7121,0.358817,0.801832,0.213093,0.431063,0.933425,0.0801818,0.92965,0.158596,0.953938,0.886426,0.718694,0.0784321,0.707978,0.0982639,0.427364,0.295968,0.805801,0.0913748,0.900523,0.619458,0.324913,0.436517,0.886874,0.838091,0.577769,0.0169839,0.0234029,0.928565,0.681999,0.917535,0.312525,0.396482,0.595013,0.976476,0.739203,0.494284,0.349172,0.344156,0.275773,0.0564716,0.461408,0.749939,0.190434,0.227376,0.134807,0.402694,0.133972,0.170405,0.0633003,0.947965,0.861679,0.29167,0.0349512,0.468066,0.102705,0.941404,0.960806,0.248978,0.407197,0.187697,0.847635,0.894498,0.0148195,0.82427,0.464027,0.831765,0.414459,0.536374,0.671629,0.133328,0.761926,0.0487633,0.208354,0.346703,0.643977,0.429772,0.391832,0.062994,0.513252,0.069397,0.340765,0.593862,0.112029,0.962094,0.228968,0.411471,0.00705248,0.174376,0.674027,0.578986,0.483894,0.428208,0.903562,0.259924,0.94196,0.734942,0.631784,0.874209,0.37943,0.0707685,0.0669352,0.503599,0.997386,0.256553,0.616774,0.660944,0.35363,0.810547,0.780789,0.0289071,0.0845312,0.206773,0.127631,0.509157,0.0638177,0.471831,0.365274,0.144165,0.20154,0.386082,0.285325,0.833838,0.514455,0.050036,0.693624,0.624674,0.666624,0.670279,0.739568,0.547932,0.127541,0.0796264,0.302365,0.729922,0.919552,0.631302,0.513161,0.301119,0.27625,0.250071,0.816608,0.599988,0.184296,0.253103,0.576014,0.785189,0.130993,0.580899,0.309186,0.721772,0.956046,0.756265,0.11472,0.851363,0.0908961,0.49713,0.0475961,0.979175,0.179287,0.972928,0.718868,0.856895,0.92064,0.704183,0.468645,0.830424,0.276449,0.929576,0.0741857,0.629469,0.708399,0.579593,0.194929,0.731418,0.0238782,0.565009,0.688325,0.628989,0.536525,0.985504,0.416348,0.721829,0.143344,0.659997,0.263889,0.0442337,0.000970662,0.32106,0.813471,0.353011,0.0523509,0.507262,0.620449,0.0396997,0.128315,0.963976,0.993125,0.182882,0.101431,0.733992,0.852967,0.694733,0.497566,0.256248,0.212398,0.187134,0.53376,0.00431067,0.765647,0.308885,0.575556,0.619703,0.0813586,0.800554,0.957382,0.910523,0.533782,0.547619,0.625023,0.0346502,0.870346,0.593268,0.658625,0.111828,0.391204,0.853385,0.239787,0.293161,0.169583,0.265999,0.894504,0.526348,0.214188,0.312885,0.652941,0.985053,0.482519,0.582523,0.547041,0.0506251,0.220264,0.595606,0.480206,0.765837,0.0158901,0.484248,0.377077,0.186588,0.459744,0.315908,0.949649,0.871794,0.938682,0.242518,0.680991,0.746835,0.869141,0.928243,0.582581,0.078398,0.467337,0.0781399,0.0651038,0.422467,0.450158,0.362242,0.914937,0.425902,0.552502,0.127236,0.408275,0.903724,0.943794,0.799488,0.85864,0.926826,0.727024,0.792467,0.179959,0.883245,0.479145,0.294222,0.916405,0.998057,0.678294,0.475124,0.0683976,0.638813,0.188349,0.596372,0.387065,0.820547,0.477914,0.810184,0.565399,0.0264785,0.136176,0.999981,0.794572,0.853863,0.412232,0.421131,0.904574,0.487364,0.331987,0.460142,0.797837,0.666016,0.578417,0.105369,0.905809,0.168341,0.859021,0.143596,0.497065,0.673304,0.323699,0.256055,0.941237,0.930858,0.0657117,0.105117,0.600585,0.0257468,0.489686,0.317524,0.131425,0.0815539,0.183733,0.355048,0.27391,0.921792,0.255244,0.228303,0.842882,0.321587,0.582259,0.372505,0.306317,0.123139,0.216917,0.936952,0.273455,0.45741,0.0790952,0.47741,0.986993,0.457204,0.104212,0.460005,0.422643,0.926369,0.279906,0.413275,0.0297598,0.939054,0.684009,0.696736,0.343522,0.0984102,0.690042,0.245622,0.0574766,0.486697,0.351371,0.535112,0.668692,0.088552,0.99178,0.214252,0.514402,0.0262836,0.85386,0.110875,0.792484,0.0149725,0.103165,0.806409,0.938771,0.981279,0.542143,0.359417,0.620921,0.209081,0.587588,0.886314,0.21577,0.839516,0.0504909,0.182179,0.677436,0.505293,0.344835,0.954893,0.295794,0.0869231,0.911844,0.904591,0.671834,0.209851,0.142042,0.229516,0.119483,0.107665,0.489309,0.486617,0.714274,0.710776,0.827875,0.615878,0.381884,0.757981,0.603328,0.874283,0.382549,0.854111,0.521723,0.996356,0.670323,0.105404,0.149948,0.46731,0.357808,0.145904,0.126759,0.13699,0.581486,0.743473,0.554193,0.450478,0.233655,0.501536,0.797696,0.543245,0.496824,0.383546,0.133795,0.287843,0.388315,0.386733,0.249634,0.0493397,0.850681,0.270999,0.688963,0.251882,0.927753,0.816319,0.541025,0.233059,0.0519547,0.314725,0.80821,0.380246,0.397447,0.514341,0.576728,0.266064,0.517624,0.58935,0.293887,0.651884,0.477184,0.467875,0.429584,0.599558,0.218652,0.529642,0.782333,0.262538,0.648508,0.78995,0.59414,0.428747,0.763719,0.209705,0.35064,0.276624,0.694986,0.660048,0.283025,0.733127,0.0152482,0.126337,0.800799,0.188217,0.204091,0.0135616,0.163952,0.383734,0.510968,0.575475,0.352225,0.639649,0.855846,0.0757098,0.775109,0.986818,0.759062,0.603077,0.515544,0.989772,0.451609,0.0303398,0.309727,0.914627,0.896017,0.208846,0.746122,0.199717,0.882044,0.505263,0.160823,0.053366,0.702064,0.489508,0.622697,0.532385,0.158313,0.73462,0.384913,0.228877,0.818222,0.968832,0.390111,0.995083,0.447309,0.916646,0.750642,0.625913,0.368226,0.91158,0.701379,0.978162,0.999306,0.86501,0.959907,0.446743,0.445828,0.689688,0.155797,0.107526,0.273797,0.225101,0.81767,0.0770738,0.587546,0.482923,0.500214,0.655374,0.953228,0.809959,0.166618,0.439501,0.850319,0.318167,0.896075,0.0895135,0.198212,0.994367,0.0467732,0.100922,0.565066,0.254722,0.892103,0.319255,0.568717,0.913721,0.700361,0.192043,0.608966,0.731164,0.554354,0.382373,0.255788,0.906917,0.874476,0.543347,0.290903,0.203778,0.0560637,0.987287,0.111499,0.68883,0.295599,0.514293,0.0944133,0.28034,0.169571,0.874923,0.763309,0.197331,0.999928,0.892178,0.52017,0.461253,0.978921,0.905571,0.257497,0.75247,0.505851,0.975554,0.849893,0.0733769,0.112255,0.0426599,0.97674,0.42942,0.0974185,0.819225,0.389832,0.146467,0.239006,0.0624642,0.303252,0.458862,0.904631,0.744128,0.677971,0.56613,0.109372,0.678504,0.976873,0.628919,0.934676,0.689324,0.234222,0.729358,0.567669,0.248411,0.812765,0.301984,0.510602,0.078931,0.185818,0.750396,0.0149891,0.120589,0.532295,0.640633,0.56622,0.145989,0.233956,0.674801,0.273335,0.674003,0.919728,0.902736,0.954788,0.519807,0.290056,0.555546,0.888376,0.101724,0.575013,0.677213,0.554307,0.740444,0.0123789,0.0316209,0.56876,0.0779042,0.758709,0.700973,0.156969,0.839049,0.288105,0.85298,0.494641,0.86333,0.525234,0.667505,0.976098,0.55662,0.0893102,0.779803,0.742495,0.557263,0.49533,0.16465,0.864606,0.77926,0.983812,0.175732,0.469314,0.698355,0.626244,0.291919,0.934956,0.477977,0.368839,0.00129861,0.498293,0.458357,0.944782,0.821086,0.614394,0.187772,0.713027,0.898316,0.0745686,0.157253,0.50763,0.679688,0.0271626,0.823547,0.550017,0.215909,0.281687,0.651576,0.178404,0.435006,0.419584,0.0651771,0.308684,0.991298,0.060145,0.707715,0.75899,0.610083,0.119736,0.340296,0.792924,0.374688,0.186651,0.363154,0.22671,0.866651,0.0689768,0.571318,0.520085,0.767466,0.904689,0.988758,0.271831,0.384785,0.996232,0.174493,0.0687173,0.00766718,0.253023,0.813155,0.647636,0.439704,0.467041,0.782777,0.117342,0.710424,0.0122102,0.905949,0.0774171,0.545138,0.536075,0.24802,0.0812163,0.511043,0.309212,0.676711,0.942441,0.612973,0.666191,0.00907421,0.341223,0.626416,0.321036,0.0507163,0.201628,0.749268,0.685313,0.0707287,0.0619645,0.647483,0.973656,0.107487,0.765977,0.868555,0.50638,0.37864,0.307475,0.231932,0.502901,0.2568,0.76637,0.699966,0.146757,0.720334,0.983889,0.643811,|0.830919,0.369693,0.801524,0.756399,0.574099,0.579842,0.793572,0.553404,0.55458,0.427462,0.465937,0.537573,0.586919,0.970542,0.631326,0.300869,0.5429,0.561728,0.169604,0.707245,0.156278,0.295275,0.935453,0.138353,0.750358,0.262867,0.765518,0.457809,0.347031,0.127639,0.529041,0.355381,0.523864,0.78812,0.272956,0.863254,0.975123,0.0770261,0.0569948,0.983855,0.146425,0.00132656,0.830122,0.77201,0.535257,0.763349,0.0348852,0.658008,0.299031,0.656629,0.234536,0.484126,0.172372,0.0440126,0.498047,0.0953622,0.576629,0.261878,0.756634,0.633377,0.00760084,0.0571222,0.363563,0.169025,0.498411,0.148726,0.112961,0.789742,0.140802,0.0247251,0.102748,0.275461,0.799201,0.596924,0.714209,0.261027,0.411142,0.467748,0.200705,0.369483,0.612768,0.558903,0.401954,0.237816,0.0387378,0.596401,0.746514,0.784199,0.742017,0.561357,0.161557,0.198563,0.931042,0.891648,0.695268,0.603347,0.488443,0.185004,0.519149,0.650344,0.912437,0.646399,0.959199,0.38042,0.437232,0.521483,0.176575,0.124792,0.219338,0.884236,0.52852,0.953959,0.322579,0.161779,0.889156,0.649483,0.772367,0.857595,0.337171,0.999186,0.534891,0.480827,0.386045,0.624964,0.465126,0.169364,0.475301,0.0417593,0.513524,0.465274,0.674914,0.411469,0.791499,0.16479,0.255975,0.64709,0.897236,0.915888,0.0395995,0.726442,0.814228,0.483431,0.0555732,0.131835,0.801442,0.969996,0.654553,0.129907,0.353653,0.375212,0.416304,0.692577,0.670315,0.877159,0.779552,0.702928,0.732776,0.864723,0.876662,0.234217,0.177569,0.586295,0.542256,0.302662,0.937128,0.0701739,0.390919,0.665874,0.173281,0.285592,0.669475,0.609221,0.950343,0.235397,0.328749,0.818221,0.356605,0.159873,0.519277,0.193327,0.0612006,0.766848,0.118363,0.223314,0.829732,0.621485,0.70583,0.904985,0.690951,0.616926,0.443952,0.488341,0.963211,0.839568,0.411427,0.704369,0.0911877,0.403749,0.0421866,0.442786,0.266005,0.500268,0.639406,0.112065,0.0701566,0.989198,0.359699,0.553008,0.0226853,0.361297,0.674343,0.45391,0.87757,0.685365,0.0902216,0.390258,0.344162,0.180737,0.734771,0.840142,0.0194637,0.480626,0.990336,0.474356,0.666636,0.929547,0.0891808,0.866083,0.492846,0.0958066,0.811913,0.00343281,0.976361,0.252665,0.249961,0.463841,0.973758,0.72542,0.360187,0.0489126,0.620111,0.434888,0.546808,0.0575539,0.715005,0.378183,0.546546,0.57165,0.416975,0.958066,0.717977,0.924739,0.194463,0.402313,0.650944,0.99112,0.596142,0.309131,0.673148,0.399507,0.00218314,0.483581,0.994434,0.47021,0.0960419,0.949641,0.466283,0.0638977,0.0274636,0.817715,0.995069,0.301587,0.204198,0.77812,0.346202,0.295006,0.37839,0.717152,0.137153,0.255287,0.985761,0.59272,0.43242,0.182156,0.25758,0.273507,0.27113,0.173353,0.429852,0.418366,0.617847,0.638478,0.586408,0.267756,0.209791,0.745063,0.746336,0.072117,0.792513,0.351226,0.869434,0.937043,0.783397,0.0978457,0.523762,0.378266,0.907106,0.0736126,0.596072,0.800741,0.682838,0.565162,0.893434,0.0958781,0.349581,0.278231,0.463692,0.520758,0.976547,0.150688,0.577126,0.920481,0.758397,0.394062,0.29125,0.843539,0.266818,0.984311,0.723923,0.794939,0.218859,0.128251,0.0923738,0.0163044,0.480955,0.510485,0.266675,0.315192,0.139138,0.207823,0.200041,0.580258,0.725165,0.63762,0.777165,0.174684,0.611424,0.395695,0.61926,0.777088,0.694598,0.871127,0.611501,0.926122,0.65556,0.263131,0.61312,0.338938,0.898137,0.677807,0.588618,0.880148,0.831908,0.0739934,0.33582,0.441905,0.159538,0.536826,0.0224808,0.682393,0.658565,0.989922,0.489986,0.147078,0.190463,0.29314,0.716351,0.844488,0.00845134,0.47177,0.64567,0.765967,0.465665,0.579284,0.0812903,0.342348,0.132371,0.541098,0.708205,0.272285,0.16973,0.200825,0.155204,0.258833,0.964577,0.942787,0.838787,0.490282,0.990807,0.633741,0.530454,0.46131,0.768378,0.052218,0.101224,0.147413,0.995068,0.93623,0.215349,0.258059,0.0359324,0.0441234,0.458157,0.134472,0.374944,0.165312,0.189013,0.360236,0.709332,0.880402,0.177105,0.402835,0.360612,0.601833,0.813644,0.929991,0.162806,0.809958,0.438233,0.721492,0.788855,0.567201,0.996487,0.920736,0.428299,0.984046,0.286196,0.635921,0.43379,0.531719,0.0197126,0.738613,0.488341,0.933409,0.212456,0.720158,0.356281,0.831298,0.39648,0.48193,0.749036,0.557361,0.11514,0.234301,0.755169,0.491214,0.0781359,0.918529,0.959119,0.262523,0.210159,0.709565,0.563538,0.810767,0.393077,0.918392,0.140162,0.408274,0.980146,0.997131,0.440878,0.976325,0.556922,0.28272,0.836664,0.216212,0.383126,0.225934,0.0333374,0.146913,0.613009,0.367609,0.141523,0.58826,0.00283867,0.461824,0.313583,0.083868,0.743345,0.148699,0.890008,0.15474,0.743777,0.133021,0.558723,0.0377107,0.902685,0.385367,0.757477,0.388388,0.0844783,0.160506,0.674448,0.188613,0.0768012,0.615506,0.375714,0.548554,0.104667,0.657118,0.237617,0.720176,0.972215,0.553038,0.813301,0.627594,0.795974,0.512638,0.312671,0.996264,0.591347,0.434519,0.21818,0.11467,0.611275,0.693495,0.94958,0.458307,0.347072,0.829541,0.74725,0.375522,0.217354,0.653026,0.544987,0.735149,0.161374,0.841614,0.0207198,0.2223,0.0958179,0.805869,0.063912,0.445459,0.672685,0.100653,0.68213,0.215972,0.756202,0.636439,0.261522,0.530606,0.180851,0.0984136,0.761748,0.555606,0.934439,0.0719808,0.0628937,0.881315,0.155789,0.839442,0.866898,0.470647,0.80485,0.865654,0.881788,0.320295,0.146933,0.207032,0.679554,0.856203,0.366733,0.658405,0.605237,0.496725,0.279717,0.345496,0.977663,0.206707,0.865252,0.71271,0.463127,0.395775,0.405187,0.498073,0.5815,0.61668,0.34577,0.106492,0.0650381,0.397461,0.929797,0.715621,0.0192426,0.25574,0.928468,0.094662,0.382986,0.230928,0.832928,0.0669733,0.417871,0.589681,0.110153,0.354013,0.312935,0.53345,0.268967,0.982486,0.75514,0.00334156,0.847227,0.39305,0.442083,0.93991,0.841195,0.784323,0.831494,0.490366,0.51611,0.874753,0.356773,0.144129,0.740935,0.0248572,0.787916,0.45809,0.319354,0.45243,0.752868,0.159038,0.196505,0.162001,0.562885,0.105731,0.411248,0.591541,0.142726,0.981118,0.69781,0.314947,0.647616,0.867657,0.510742,0.773166,0.724661,0.306732,0.451987,0.215475,0.47058,0.876497,0.3635,0.65751,0.659757,0.00330704,0.487215,0.847479,0.689207,0.0193722,0.823226,0.446534,0.738041,0.186108,0.0227849,0.606793,0.0488322,0.166364,0.964201,0.198486,0.211956,0.24503,0.87165,0.918737,0.230371,0.77876,0.86526,0.88074,0.484728,0.607597,0.0201733,0.738321,0.0544469,0.347653,0.880769,0.722121,0.794647,0.35436,0.556246,0.776547,0.108544,0.748541,0.362701,0.632334,0.243372,0.45069,0.22621,0.470703,0.455121,0.722283,0.222583,0.80486,0.287162,0.391245,0.90773,0.90015,0.284539,0.948547,0.0472994,0.378486,0.821143,0.70748,0.205795,0.563074,0.0101646,0.921688,0.90533,0.393321,0.799409,0.102277,0.599182,0.177724,0.414083,0.762626,0.577683,0.274341,0.277978,0.368931,0.860182,0.20025,0.805361,0.9185,0.551802,0.553462,0.875816,0.243087,0.170961,0.0997054,0.300798,0.238366,0.473096,0.481356,0.488966,0.829845,0.605472,0.619183,0.759038,0.902497,0.783085,0.261461,0.805553,0.483605,0.570079,0.563129,0.272567,0.905629,0.588922,0.228832,0.749103,0.405309,0.802112,0.586556,0.0873719,0.799028,0.717684,0.864901,0.944632,0.0321084,0.905966,0.105471,0.786697,0.695859,0.0504375,0.925233,0.845213,0.92844,0.177463,0.488637,0.507103,0.432784,0.435625,0.0180022,0.694293,0.800111,0.0168816,0.441806,0.586327,0.598084,0.375214,0.37061,0.332507,0.419541,0.373984,0.874911,0.149799,0.74557,0.979568,0.335016,0.496454,0.511617,0.303536,0.156115,0.547215,0.0654588,0.0198713,0.392541,0.639458,0.228102,0.618421,0.163261,0.146011,0.780089,0.416379,0.807479,0.565418,0.391928,0.470729,0.41759,0.707465,0.226127,0.38763,0.299237,0.828936,0.903225,0.727899,0.208119,0.572648,0.510451,0.986696,0.0828928,0.00972426,0.512574,0.545616,0.497841,0.376824,0.115907,0.674279,0.788371,0.480818,0.782259,0.0923196,0.494536,0.443494,0.934626,0.574661,0.13698,0.638899,0.658314,0.897635,0.755805,0.578097,0.294447,0.172708,0.337115,0.944859,0.157321,0.554698,0.142791,0.696586,0.732325,0.899386,0.164215,0.657495,0.199138,0.687331,0.00808424,0.24119,0.83791,0.11661,0.0390487,0.502694,0.779294,0.761737,0.309896,0.576304,0.736507,0.502167,0.289371,0.557898,0.47994,0.672658,0.214494,0.47677,0.40277,0.786206,0.0262153,0.0365717,0.829024,0.266192,0.164649,0.31385,0.327654,0.51919,0.204132,0.308182,0.447915,0.257698,0.825016,0.584517,0.441345,0.637816,0.899041,0.628607,0.587044,0.74407,0.39167,0.213478,0.248815,0.618461,0.143353,0.058194,0.536043,0.0530196,0.402489,0.793938,0.517971,0.230896,0.0453427,0.678131,0.304219,0.154453,0.182405,0.749881,0.593515,0.120336,0.98068,0.831281,0.850125,0.648062,0.486085,0.535538,0.977956,0.0455272,0.706006,0.2476,0.0327343,0.839073,0.965827,0.634523,0.102359,0.374218,0.135539,0.0229082,0.617398,0.690093,0.105058,0.968488,0.767587,0.710437,0.607394,0.669973,0.150197,0.982818,0.616911,0.538305,0.816852,0.180963,0.125724,0.965334,0.0927396,0.906338,0.975726,0.75833,0.605201,0.327343,0.750723,0.527819,0.363274,0.397527,0.437908,0.764062,0.142894,0.181997,0.935643,0.638627,0.735082,0.782582,0.508548,0.415761,0.990569,0.0140859,0.291254,0.489088,0.998908,0.493218,0.418067,0.149562,0.743258,0.714643,0.847794,0.865484,0.192959,0.997189,0.415246,0.742225,0.648977,0.748315,0.544405,0.222764,0.342309,|0.0613385,0.499937,0.462241,0.975348,0.227129,0.37558,0.688806,0.757914,0.170671,0.451446,0.463992,0.307729,0.911719,0.781503,0.674235,0.712114,0.0901011,0.760276,0.516289,0.0450801,0.765651,0.24813,0.50636,0.2999,0.755315,0.718201,0.533342,0.154163,0.647051,0.427717,0.849066,0.398097,0.360938,0.410158,0.628044,0.641354,0.90995,0.583903,0.834347,0.251021,0.985883,0.50886,0.228147,0.785686,0.878274,0.779575,0.508341,0.0778857,0.0029552,0.682677,0.235238,0.239161,0.379647,0.150779,0.00876391,0.32625,0.424123,0.942275,0.0443073,0.791703,0.287254,0.486342,0.47422,0.57742,0.175135,0.825098,0.45119,0.962556,0.316862,0.601767,0.60408,0.699856,0.670405,0.706968,0.13562,0.908727,0.370425,0.624,0.993974,0.600959,0.777486,0.609466,0.0336385,0.545699,0.26933,0.136028,0.0372623,0.627581,0.522043,0.778904,0.821816,0.500174,0.396332,0.817602,0.354728,0.642838,0.712321,0.927974,0.890589,0.507181,0.801485,0.0646662,0.339114,0.496917,0.279101,0.66981,0.396771,0.316692,0.727759,0.00258666,0.471573,0.893908,0.0307184,0.182764,0.29729,0.0793688,0.430446,0.662443,0.343018,0.0692216,0.592329,0.920339,0.780155,0.0945792,0.76173,0.344975,0.364946,0.223467,0.512924,0.179534,0.965241,0.290671,0.604029,0.760216,0.839641,0.897349,0.513179,0.860949,0.076848,0.908282,0.829926,0.822831,0.180676,0.578487,0.617673,0.415909,0.118466,0.0120748,0.0985327,0.590283,0.848383,0.979549,0.271037,0.469414,0.431333,0.289575,0.335934,0.647154,0.437445,0.0609666,0.00133568,0.844155,0.863651,0.84278,0.906838,0.77286,0.614849,0.52263,0.163117,0.754184,0.652288,0.39474,0.301711,0.407378,0.778164,0.63027,0.0324684,0.162358,0.852203,0.207319,0.928829,0.37737,0.643539,0.0723469,0.868503,0.997116,0.882488,0.164633,0.89718,0.424541,0.258102,0.548168,0.0675315,0.930272,0.989741,0.877619,0.259341,0.749902,0.314826,0.0205294,0.669376,0.924637,0.260868,0.628577,0.662912,0.821493,0.021238,0.500996,0.388015,0.0117711,0.0828949,0.727977,0.93804,0.175709,0.259989,0.343537,0.441828,0.486839,0.962395,0.176444,0.594125,0.10385,0.672265,0.939577,0.167547,0.95553,0.232459,0.973088,0.557123,0.32998,0.198324,0.519369,0.313548,0.196467,0.710114,0.615058,0.776746,0.142938,0.525835,0.0861874,0.93802,0.909288,0.638108,0.896038,0.327789,0.0246446,0.372452,0.744561,0.806566,0.498328,0.30945,0.932191,0.359063,0.266899,0.606209,0.415397,0.411263,0.701863,0.683719,0.443822,0.0585834,0.919238,0.407358,0.440003,0.547279,0.899666,0.0492374,0.424222,0.217873,0.880059,0.725443,0.19104,0.0674748,0.45929,0.715506,0.0243362,0.0728264,0.451278,0.0311139,0.540483,0.215436,0.345282,0.408133,0.591952,0.51979,0.305079,0.30075,0.390071,0.748933,0.549151,0.344802,0.642979,0.948437,0.452552,0.10595,0.342483,0.71456,0.293417,0.276794,0.411469,0.0550806,0.245014,0.79037,0.496509,0.0740584,0.597426,0.0446305,0.965981,0.685562,0.166236,0.948399,0.448011,0.175933,0.395027,0.408958,0.727761,0.0844367,0.831978,0.504141,0.825602,0.0498312,0.829812,0.901761,0.453408,0.123675,0.840855,0.935005,0.167158,0.277976,0.656778,0.600765,0.105348,0.938441,0.792037,0.84827,0.838234,0.639788,0.565689,0.173682,0.829852,0.230859,0.144609,0.988918,0.527338,0.576296,0.340451,0.620372,0.790782,0.950119,0.0641364,0.479547,0.632928,0.432628,0.313638,0.66185,0.734708,0.233719,0.256607,0.865104,0.649116,0.355007,0.534581,0.878321,0.251769,0.466368,0.567608,0.555929,0.114407,0.181852,0.691394,0.578934,0.766048,0.771556,0.0081777,0.146988,0.0971788,0.285855,0.468841,0.0409463,0.407692,0.447331,0.11031,0.892629,0.125931,0.819166,0.979415,0.356963,0.591881,0.471083,0.129984,0.79405,0.322677,0.993833,0.363186,0.76,0.0286757,0.79341,0.626557,0.891062,0.519561,0.244311,0.889522,0.407774,0.573871,0.580932,0.25309,0.980845,0.966663,0.193752,0.442264,0.00151843,0.67861,0.148322,0.122045,0.28401,0.230912,0.726458,0.770889,0.0584328,0.166661,0.504396,0.815256,0.788956,0.489218,0.992091,0.466163,0.93562,0.993505,0.343359,0.611387,0.174222,0.645629,0.731031,0.201607,0.903644,0.346113,0.379874,0.777146,0.208533,0.950685,0.777951,0.181831,0.413205,0.35909,0.29793,0.898828,0.731707,0.590379,0.483933,0.500083,0.253544,0.0349914,0.611891,0.307549,0.862423,0.711773,0.69648,0.344488,0.0607654,0.67989,0.439867,0.0750991,0.567059,0.56877,0.544309,0.873807,0.283239,0.637884,0.346459,0.00184184,0.359025,0.995925,0.145647,0.197139,0.984607,0.292006,0.959797,0.0333567,0.973333,0.582802,0.867235,0.885225,0.249826,0.159136,0.0159527,0.585349,0.223304,0.572057,0.490045,0.947327,0.847734,0.931253,0.739317,0.37464,0.355162,0.852326,0.322707,0.630478,0.710244,0.162704,0.735684,0.879221,0.969912,0.666257,0.504122,0.461711,0.866576,0.159677,0.383601,0.571827,0.511647,0.949277,0.374689,0.927187,0.660379,0.106399,0.70801,0.883476,0.260061,0.262997,0.528479,0.88749,0.461009,0.105071,0.3002,0.675277,0.946437,0.701044,0.386961,0.975725,0.260535,0.355475,0.185438,0.50062,0.204576,0.590337,0.0790725,0.842051,0.810389,0.668491,0.789254,0.686062,0.812235,0.172386,0.477458,0.721758,0.256761,0.0339575,0.511976,0.809529,0.0324044,0.213205,0.26538,0.22348,0.738252,0.265155,0.944329,0.889146,0.192598,0.0227485,0.333369,0.388561,0.990025,0.776602,0.53012,0.609165,0.883253,0.20774,0.818666,0.534913,0.335323,0.297717,0.597437,0.703707,0.326385,0.401105,0.806241,0.0870637,0.185741,0.847915,0.0408441,0.123379,0.298925,0.680633,0.408557,0.0842969,0.736176,0.0774063,0.682033,0.330051,0.069979,0.940153,0.453882,0.140921,0.0286531,0.146631,0.24229,0.791922,0.692183,0.373829,0.515888,0.288075,0.734477,0.534746,0.513695,0.0902576,0.482003,0.413726,0.619808,0.144709,0.405702,0.28216,0.849483,0.649109,0.941572,0.820397,0.493042,0.73482,0.649284,0.666252,0.640724,0.591203,0.851474,0.314104,0.297182,0.650691,0.955894,0.50134,0.00627398,0.308908,0.789298,0.111545,0.668659,0.12833,0.938633,0.0309304,0.814708,0.219556,0.671657,0.510157,0.774089,0.413303,0.818214,0.711351,0.325718,0.912014,0.151529,0.0322341,0.381868,0.404372,0.487768,0.485329,0.243277,0.985966,0.89182,0.448342,0.658084,0.0807039,0.532301,0.0921001,0.330612,0.545268,0.928816,0.908613,0.705107,0.220107,0.679557,0.580923,0.421791,0.120342,0.545255,0.591316,0.594055,0.391228,0.248038,0.6553,0.999836,0.477497,0.105344,0.50685,0.316772,0.558118,0.206582,0.112598,0.798582,0.985435,0.620723,0.97315,0.46244,0.0521696,0.132159,0.100724,0.128196,0.94272,0.29859,0.134185,0.547196,0.405806,0.762751,0.911813,0.623743,0.915613,0.637083,0.167754,0.412127,0.365719,0.604222,0.526292,0.88561,0.796583,0.562485,0.727448,0.576553,0.586346,0.695336,0.379193,0.0560772,0.558402,0.883647,0.121365,0.83612,0.540399,0.676037,0.666322,0.0868827,0.559914,0.447022,0.0878862,0.13983,0.202346,0.0923393,0.825203,0.13958,0.795501,0.614903,0.0197855,0.662437,0.77464,0.389372,0.507763,0.902945,0.454556,0.946147,0.69873,0.903958,0.784553,0.621561,0.355252,0.559231,0.687572,0.846472,0.501568,0.331425,0.568681,0.397478,0.195046,0.965131,0.391972,0.536793,0.454884,0.104326,0.917927,0.174288,0.390563,0.0265372,0.898106,0.20765,0.458015,0.843395,0.704349,0.517343,0.597071,0.224269,0.470984,0.602428,0.570456,0.758017,0.0511058,0.943583,0.0450786,0.233426,0.935136,0.655072,0.168726,0.37424,0.927038,0.326248,0.328761,0.420341,0.516177,0.136342,0.723098,0.444095,0.0201777,0.985403,0.770613,0.668256,0.0418908,0.942349,0.586674,0.218809,0.156832,0.131502,0.00429785,0.124958,0.862705,0.879347,0.231629,0.905886,0.513056,0.19101,0.509688,0.674416,0.841455,0.783329,0.920622,0.382309,0.732352,0.976102,0.84615,0.5628,0.316599,0.810826,0.975006,0.897994,0.809423,0.948853,0.0473102,0.21853,0.426252,0.547897,0.72145,0.966901,0.391087,0.500634,0.804575,0.611792,0.619151,0.659581,0.918668,0.62488,0.391521,0.399476,0.76567,0.658784,0.121379,0.130043,0.0750981,0.373621,0.439385,0.302421,0.121365,0.663365,0.0862495,0.414856,0.304743,0.092667,0.126426,0.700668,0.102618,0.520085,0.180387,0.619501,0.556825,0.957485,0.582775,0.0580088,0.647858,0.666794,0.281744,0.047264,0.205918,0.0346205,0.636696,0.937843,0.304298,0.950503,0.275043,0.960175,0.0670772,0.932519,0.867332,0.946354,0.438993,0.293588,0.00827521,0.740097,0.31615,0.0350193,0.106009,0.308131,0.819933,0.766421,0.901143,0.638952,0.754391,0.603453,0.292436,0.961838,0.331175,0.276141,0.237111,0.55461,0.879597,0.983444,0.423669,0.98235,0.714238,0.132059,0.877983,0.10556,0.0489991,0.547755,0.257792,0.803792,0.0747274,0.108722,0.660342,0.789057,0.548275,0.874437,0.846218,0.395374,0.67709,0.0996964,0.738536,0.548413,0.059186,0.973524,0.763682,0.639747,0.216296,0.746574,0.357553,0.932058,0.291596,0.839297,0.433916,0.428957,0.0643132,0.659086,0.53172,0.0500186,0.645346,0.655824,0.143054,0.627154,0.432021,0.35441,0.910602,0.0071004,0.0281587,0.199233,0.313854,0.616411,0.696721,0.607698,0.173655,0.933569,0.00250691,0.443419,0.925016,0.424149,0.986714,0.289004,0.761466,0.703386,0.917221,0.373824,0.514362,0.567343,0.97977,0.72152,0.168562,0.474916,0.912874,0.584125,0.156483,0.190804,0.0655466,0.762924,0.898124,0.218215,0.56616,0.74123,0.247463,0.259997,0.922968,0.297463,0.700487,0.67349,0.143901,0.454239,0.536405,0.67345,0.0774712,0.618195,0.255722,0.0511011,0.0851246,|0.494975,0.0495467,0.679617,0.0325719,0.248633,0.813967,0.605717,0.0655046,0.856068,0.863615,0.415393,0.615321,0.487659,0.479984,0.185712,0.407068,0.12812,0.419695,0.430234,0.298409,0.905896,0.364317,0.974689,0.292363,0.298958,0.798976,0.996406,0.317097,0.343466,0.479393,0.243123,0.295713,0.133258,0.0199063,0.974741,0.111515,0.13669,0.628324,0.73183,0.372912,0.896965,0.89669,0.464274,0.899406,0.477635,0.798462,0.315883,0.0625673,0.0327101,0.964755,0.871632,0.0822609,0.694791,0.977627,0.472816,0.721358,0.697874,0.878321,0.609182,0.355965,0.592616,0.583539,0.186997,0.279767,0.22937,0.500898,0.249763,0.505048,0.382297,0.439839,0.327047,0.287827,0.578728,0.890895,0.843105,0.2491,0.616893,0.0307031,0.538474,0.0181863,0.905288,0.379329,0.971353,0.0555626,0.146653,0.750888,0.417823,0.210584,0.552926,0.165729,0.396433,0.634643,0.0272943,0.19238,0.849163,0.425716,0.337734,0.393595,0.986145,0.684853,0.0815492,0.730965,0.655383,0.752763,0.0609933,0.104089,0.86514,0.204947,0.734966,0.389104,0.349447,0.100938,0.582764,0.103679,0.952405,0.26234,0.978615,0.397678,0.840046,0.461491,0.634523,0.567444,0.960764,0.740224,0.843358,0.342796,0.859912,0.155949,0.271835,0.516782,0.824797,0.0162239,0.470731,0.191386,0.620283,0.185322,0.359265,0.613915,0.114278,0.347745,0.884013,0.906159,0.181592,0.933804,0.352031,0.304558,0.919768,0.201067,0.0617808,0.402666,0.621203,0.964792,0.402262,0.236367,0.0950609,0.569183,0.2717,0.0907238,0.179717,0.800565,0.15574,0.103645,0.767361,0.195315,0.84896,0.263472,0.47592,0.627703,0.376906,0.341453,0.952236,0.933066,0.927115,0.89445,0.1127,0.722268,0.651581,0.557966,0.185659,0.265302,0.110327,0.849297,0.133395,0.482763,0.141347,0.878233,0.458283,0.877859,0.0903742,0.892413,0.821434,0.812814,0.791143,0.252939,0.219629,0.150403,0.580605,0.936439,0.265018,0.731179,0.310158,0.476409,0.880276,0.663447,0.166604,0.84175,0.603676,0.328709,0.794222,0.465927,0.100308,0.480229,0.63599,0.509033,0.027769,0.0271373,0.372537,0.091778,0.0458376,0.65636,0.0151978,0.477331,0.128515,0.241124,0.918477,0.243793,0.629272,0.563795,0.208515,0.842365,0.258242,0.0678506,0.00580245,0.10562,0.199407,0.716305,0.464379,0.309157,0.458093,0.689503,0.403573,0.917084,0.921185,0.411555,0.756172,0.334277,0.154401,0.582232,0.862317,0.378187,0.422966,0.779179,0.971559,0.0223597,0.0890597,0.0839004,0.192835,0.83497,0.341748,0.118841,0.144338,0.620212,0.961304,0.0226389,0.108804,0.908001,0.498225,0.641665,0.11104,0.0185927,0.357053,0.0665362,0.919437,0.211946,0.02556,0.556286,0.410751,0.382161,0.206015,0.949331,0.639743,0.56978,0.343784,0.111084,0.0554561,0.599175,0.845823,0.802026,0.650672,0.034734,0.328282,0.782033,0.0072946,0.282233,0.761328,0.801619,0.723005,0.37865,0.729526,0.702763,0.877178,0.162615,0.602726,0.136395,0.656648,0.681965,0.156989,0.71599,0.829384,0.280657,0.886824,0.637229,0.518689,0.236167,0.787868,0.338392,0.0343239,0.201727,0.228671,0.0896851,0.953355,0.731104,0.762345,0.50535,0.166997,0.900461,0.140476,0.0700902,0.237475,0.104255,0.207393,0.265431,0.773283,0.654518,0.347321,0.138044,0.406093,0.549996,0.424957,0.622122,0.491495,0.905831,0.537853,0.863645,0.890897,0.990283,0.773397,0.178334,0.584624,0.331542,0.968231,0.03639,0.31168,0.308503,0.836206,0.918334,0.181468,0.806348,0.949522,0.476273,0.314149,0.286972,0.493267,0.910968,0.836024,0.457211,0.318686,0.349285,0.332885,0.52849,0.620275,0.307817,0.189922,0.675632,0.177317,0.248817,0.64402,0.260211,0.310367,0.101629,0.948813,0.554608,0.147166,0.00184852,0.0832024,0.550495,0.11862,0.895312,0.231521,0.233098,0.642385,0.833134,0.94951,0.65941,0.423986,0.670067,0.182996,0.295813,0.19536,0.314413,0.0263174,0.989914,0.424916,0.873918,0.602407,0.466336,0.961425,0.760576,0.00881642,0.707772,0.0898253,0.0121009,0.48521,0.407663,0.720846,0.123439,0.633284,0.628175,0.234166,0.772336,0.864088,0.382314,0.297008,0.50766,0.026365,0.343194,0.00540406,0.373062,0.106151,0.275053,0.018523,0.274502,0.0243375,0.388479,0.638006,0.00458378,0.610226,0.492948,0.617096,0.0848323,0.36024,0.698584,0.194629,0.757937,0.302992,0.619058,0.821037,0.294863,0.305883,0.13623,0.94157,0.0102521,0.424094,0.838691,0.115304,0.866131,0.643117,0.30783,0.0910161,0.12512,0.761979,0.993476,0.98754,0.456299,0.904584,0.0533704,0.641772,0.308533,0.00862813,0.481453,0.68277,0.894549,0.117067,0.667007,0.730621,0.99414,0.460994,0.720244,0.978224,0.373324,0.621755,0.467929,0.217332,0.760817,0.552986,0.662794,0.833179,0.37176,0.507634,0.712984,0.276746,0.478242,0.0296168,0.449684,0.425905,0.844476,0.182506,0.0729964,0.907584,0.165574,0.805352,0.064487,0.486603,0.848807,0.343323,0.797366,0.815357,0.0408906,0.897396,0.318287,0.950935,0.273834,0.0741683,0.480617,0.535135,0.349553,0.697515,0.463618,0.848916,0.911735,0.0670557,0.564466,0.0474074,0.493688,0.950293,0.968782,0.283781,0.0529485,0.328414,0.0881906,0.845429,0.224431,0.768946,0.382343,0.991042,0.184749,0.922342,0.615372,0.797595,0.107453,0.124272,0.304241,0.497428,0.604035,0.554373,0.728342,0.0178047,0.276907,0.320767,0.945575,0.793387,0.251074,0.598746,0.780881,0.30835,0.0985166,0.85085,0.708778,0.370568,0.915186,0.460629,0.0799046,0.649823,0.383653,0.918991,0.655444,0.0407324,0.358798,0.142905,0.999942,0.816494,0.754958,0.987585,0.838592,0.514628,0.913941,0.464276,0.841356,0.442301,0.99171,0.272811,0.0808666,0.0427184,0.312312,0.864663,0.109045,0.912977,0.234246,0.510328,0.887491,0.403796,0.396147,0.70996,0.0325928,0.410653,0.430341,0.581916,0.41883,0.720778,0.373158,0.694594,0.147058,0.489947,0.848371,0.134518,0.921935,0.544219,0.679416,0.624654,0.790089,0.103491,0.910345,0.523521,0.234812,0.57471,0.402973,0.392093,0.507881,0.141671,0.408734,0.421418,0.816873,0.574897,0.38975,0.310101,0.141632,0.0170733,0.781011,0.447883,0.344391,0.915622,0.865268,0.236946,0.582815,0.418657,0.695413,0.514674,0.425005,0.869715,0.577972,0.827781,0.0853365,0.444099,0.796893,0.35705,0.787841,0.189185,0.824294,0.827512,0.777133,0.977457,0.448061,0.633541,0.557277,0.377291,0.981343,0.378269,0.0585805,0.871743,0.352052,0.184809,0.904986,0.380017,0.573466,0.846884,0.599675,0.356815,0.880355,0.233744,0.32409,0.917502,0.859795,0.193816,0.36473,0.534349,0.79866,0.00839543,0.145377,0.143807,0.47627,0.997054,0.94052,0.826714,0.761581,0.361509,0.536353,0.814694,0.582054,0.404393,0.168311,0.869264,0.701046,0.760935,0.603259,0.73267,0.938381,0.898175,0.973676,0.09308,0.131011,0.556764,0.937222,0.434895,0.825778,0.84993,0.867633,0.428799,0.353188,0.738719,0.214011,0.880215,0.502911,0.0984127,0.349674,0.447975,0.115989,0.767532,0.181063,0.700539,0.0821081,0.721298,0.573016,0.743238,0.0523111,0.694419,0.124214,0.918975,0.695897,0.638397,0.159781,0.240588,0.354441,0.063485,0.697202,0.684207,0.164108,0.100751,0.727418,0.879435,0.698516,0.920281,0.141894,0.471994,0.529511,0.383557,0.220276,0.408322,0.00052321,0.0675896,0.746087,0.433691,0.541212,0.038491,0.11581,0.887909,0.780469,0.743465,0.766987,0.0724415,0.443157,0.07644,0.128235,0.0163822,0.0410538,0.634136,0.601824,0.483389,0.490476,0.394516,0.188511,0.716508,0.508715,0.820221,0.104936,0.329646,0.484269,0.831851,0.0573601,0.128401,0.0374218,0.813429,0.896904,0.915806,0.257726,0.500619,0.54883,0.856744,0.390785,0.492021,0.489233,0.0133359,0.221186,0.94362,0.913606,0.946759,0.919025,0.605781,0.998457,0.832201,0.0376249,0.495978,0.65563,0.314922,0.879179,0.0198908,0.00994128,0.606785,0.199374,0.670331,0.799202,0.307887,0.458675,0.091866,0.80431,0.106977,0.593328,0.18403,0.335289,0.353301,0.27321,0.130886,0.491163,0.338706,0.698258,0.578716,0.703778,0.139672,0.766118,0.92579,0.192892,0.86677,0.434108,0.292949,0.616369,0.39889,0.988574,0.090235,0.870409,0.061667,0.882322,0.44656,0.23641,0.0470091,0.702881,0.269542,0.283957,0.0719488,0.90084,0.753262,0.163479,0.00311351,0.135242,0.458965,0.8397,0.955103,0.881461,0.264102,0.164905,0.467253,0.368081,0.340871,0.129757,0.224867,0.936385,0.00980848,0.859234,0.146726,0.0764595,0.923614,0.917321,0.78712,0.57345,0.899286,0.25838,0.263102,0.903644,0.0501505,0.292084,0.899499,0.577081,0.601812,0.0668857,0.64364,0.942528,0.759413,0.236525,0.58277,0.511126,0.225887,0.488353,0.0480572,0.251256,0.168681,0.758379,0.414779,0.441687,0.524298,0.889391,0.928654,0.782225,0.640065,0.48506,0.210826,0.612433,0.656298,0.356381,0.906694,0.396509,0.108436,0.666848,0.333384,0.680504,0.76273,0.330587,0.0808818,0.943463,0.866566,0.215097,0.407221,0.950247,0.245854,0.963176,0.799721,0.641029,0.608662,0.950081,0.145839,0.654696,0.983406,0.29508,0.0368742,0.148803,0.21694,0.228219,0.585264,0.154617,0.517637,0.940708,0.130164,0.343678,0.559283,0.0045718,0.396471,0.815012,0.79546,0.246754,0.705599,0.615007,0.239757,0.224674,0.904211,0.192046,0.974298,0.948826,0.190288,0.857098,0.368987,0.985638,0.863131,0.505336,0.453127,0.613542,0.557125,0.0968053,0.688066,0.304497,0.419348,0.975825,0.935019,0.691128,0.443325,0.564155,0.436848,0.555877,0.0900083,0.937529,0.422724,0.0192501,0.161459,0.0787886,0.736497,0.0645654,0.0147187,0.0956873,0.351928,0.571017,0.0782284,0.929751,0.304631,0.619722,0.972118,0.922312,0.52498,0.797033,0.472623,0.228064,0.833032,0.137769,0.420425,0.344777,|0.886006,0.124228,0.13573,0.596177,0.566647,0.652608,0.976397,0.816183,0.371306,0.191514,0.666897,0.251174,0.638927,0.204534,0.801954,0.346249,0.660203,0.603626,0.360098,0.898288,0.728433,0.429004,0.195921,0.213946,0.350537,0.0372332,0.324576,0.493985,0.296282,0.398245,0.447153,0.876002,0.0376391,0.497675,0.32809,0.38598,0.16649,0.306434,0.151254,0.553943,0.37803,0.233974,0.0665724,0.204601,0.063479,0.855711,0.0853237,0.870049,0.3118,0.281245,0.745986,0.09219,0.327851,0.392961,0.85974,0.219476,0.92013,0.431149,0.52717,0.198949,0.819595,0.305016,0.177983,0.852537,0.0374232,0.515094,0.361077,0.629173,0.908838,0.19276,0.297131,0.18507,0.481575,0.214298,0.572872,0.47067,0.169426,0.100912,0.467901,0.234107,0.526748,0.512909,0.357131,0.441316,0.597367,0.661373,0.622579,0.648583,0.548626,0.210547,0.976949,0.623494,0.815964,0.730624,0.291758,0.855513,0.9911,0.564763,0.671148,0.67772,0.182386,0.89342,0.45434,0.12495,0.32462,0.38944,0.27109,0.482587,0.263702,0.428762,0.523596,0.513153,0.105301,0.626563,0.61896,0.608613,0.55469,0.114222,0.412322,0.0065223,0.0339099,0.42512,0.522623,0.0226973,0.0685398,0.224244,0.889255,0.185421,0.832666,0.863123,0.0110399,0.984729,0.517933,0.288427,0.524439,0.810156,0.806606,0.596634,0.437596,0.110505,0.717702,0.42186,0.0164514,0.616356,0.871686,0.172062,0.240927,0.480304,0.538721,0.188436,0.267266,0.574662,0.966264,0.487609,0.203601,0.534337,0.33358,0.146163,0.644565,0.233379,0.300782,0.727697,0.781354,0.225066,0.456502,0.25755,0.110831,0.78291,0.736834,0.430582,0.308424,0.906316,0.939702,0.939769,0.627096,0.901493,0.987845,0.738816,0.0462153,0.57354,0.985023,0.427605,0.084709,0.437784,0.831842,0.220643,0.775381,0.61224,0.468107,0.0294219,0.431362,0.965463,0.8841,0.432962,0.630246,0.531372,0.0587004,0.056637,0.700373,0.165996,0.468077,0.169713,0.029627,0.984796,0.884653,0.414639,0.36523,0.411407,0.924991,0.981601,0.309611,0.392082,0.432555,0.564025,0.476439,0.318371,0.120038,0.888499,0.590859,0.844558,0.718686,0.819979,0.486529,0.114015,0.746289,0.847636,0.521122,0.300136,0.866193,0.44945,0.964938,0.828779,0.954715,0.327964,0.743802,0.0973945,0.133555,0.0247054,0.836783,0.148728,0.506746,0.0447927,0.828334,0.505609,0.542584,0.718662,0.596321,0.753722,0.91969,0.401621,0.981494,0.922541,0.703182,0.477639,0.727126,0.923853,0.468047,0.0633824,0.213979,0.109961,0.869094,0.850916,0.277076,0.97976,0.833341,0.977773,0.267593,0.897661,0.896855,0.0665611,0.519474,0.584317,0.333731,0.0247816,0.449947,0.528493,0.974737,0.342022,0.619409,0.66272,0.457986,0.898358,0.506379,0.841863,0.791943,0.123143,0.393555,0.167078,0.135803,0.700622,0.962682,0.314101,0.861229,0.516531,0.164034,0.892702,0.534996,0.898576,0.63209,0.449541,0.552373,0.846468,0.891384,0.828752,0.639616,0.486735,0.497832,0.4456,0.930838,0.262345,0.574489,0.0212692,0.813361,0.764759,0.55391,0.596046,0.742483,0.997207,0.32565,0.830677,0.97141,0.2221,0.0720666,0.474069,0.428837,0.625658,0.374823,0.788984,0.506966,0.556655,0.206918,0.478514,0.681809,0.287063,0.568939,0.24822,0.0466338,0.745808,0.882006,0.152721,0.497356,0.108239,0.451875,0.94167,0.174063,0.377268,0.490874,0.631645,0.830696,0.444935,0.0456919,0.0144451,0.630514,0.239163,0.862709,0.511543,0.500081,0.305805,0.473656,0.406735,0.302676,0.426777,0.785808,0.0353824,0.45916,0.898476,0.30451,0.0198491,0.425162,0.727519,0.160999,0.869163,0.884052,0.861518,0.300435,0.875277,0.994508,0.497215,0.724304,0.459146,0.120487,0.886573,0.825419,0.995476,0.210505,0.0979211,0.665467,0.295718,0.999752,0.883361,0.708567,0.574557,0.914583,0.515196,0.447682,0.628009,0.789867,0.200298,0.928746,0.64583,0.742321,0.312863,0.465712,0.267608,0.817058,0.797495,0.202731,0.35765,0.162026,0.977641,0.984305,0.290578,0.142778,0.68467,0.71251,0.766075,0.598144,0.103846,0.567921,0.370109,0.758764,0.00999457,0.255807,0.943514,0.595149,0.117823,0.43442,0.589963,0.611358,0.0547923,0.841565,0.781864,0.314394,0.911468,0.603943,0.140758,0.21462,0.0162975,0.423331,0.112257,0.113093,0.219727,0.684657,0.894861,0.738463,0.513554,0.969029,0.817301,0.227564,0.579316,0.198205,0.852131,0.550913,0.284069,0.889583,0.470853,0.570095,0.243388,0.783189,0.58744,0.896696,0.240813,0.300274,0.695101,0.741413,0.760373,0.139239,0.141859,0.206779,0.495473,0.970467,0.908025,0.612346,0.565806,0.255262,0.631545,0.22459,0.445579,0.338786,0.187934,0.110214,0.29542,0.823527,0.436966,0.849041,0.504638,0.64759,0.926124,0.388671,0.482187,0.513492,0.143525,0.552184,0.176404,0.566991,0.509073,0.034405,0.591565,0.452698,0.899156,0.977205,0.284996,0.245915,0.510084,0.532404,0.381063,0.3607,0.576336,0.915953,0.998747,0.422033,0.132432,0.179111,0.438738,0.77496,0.622594,0.569762,0.401171,0.0738255,0.0926197,0.398531,0.309115,0.654275,0.855277,0.613958,0.87312,0.439761,0.861482,0.905136,0.59621,0.407374,0.268973,0.257393,0.609302,0.819241,0.891504,0.131072,0.927486,0.643521,0.442101,0.68221,0.272422,0.121434,0.732586,0.86998,0.179887,0.928966,0.0101649,0.708288,0.177859,0.637854,0.479859,0.175592,0.5693,0.28985,0.535805,0.511986,0.153,0.930436,0.268631,0.153328,0.771089,0.359678,0.48872,0.792714,0.19452,0.978527,0.0916762,0.215643,0.558759,0.253736,0.638419,0.0401869,0.750435,0.571057,0.26052,0.986274,0.109292,0.203973,0.310064,0.852924,0.204442,0.223024,0.560182,0.951648,0.227177,0.328178,0.749783,0.882319,0.124474,0.106193,0.407198,0.303923,0.00705862,0.224752,0.192139,0.846458,0.404383,0.938564,0.148269,0.33139,0.538285,0.92524,0.303903,0.828781,0.7596,0.178181,0.0558028,0.899981,0.58848,0.806281,0.207594,0.767371,0.941663,0.738899,0.305885,0.312278,0.650364,0.722867,0.666781,0.203901,0.83395,0.3566,0.527716,0.345847,0.110847,0.621873,0.573699,0.271577,0.99712,0.209256,0.564133,0.618359,0.93792,0.847607,0.988763,0.454437,0.758438,0.442818,0.929155,0.590031,0.482032,0.332131,0.0627347,0.261899,0.460051,0.734686,0.420546,0.789374,0.626827,0.606649,0.384932,0.0779017,0.565662,0.361895,0.480738,0.344176,0.646645,0.0105463,0.741295,0.636391,0.0144491,0.994342,0.995934,0.835939,0.335521,0.724643,0.313356,0.246677,0.145414,0.195203,0.0125561,0.36285,0.997482,0.380625,0.706146,0.806463,0.780408,0.257525,0.387211,0.901742,0.876109,0.220775,0.0467705,0.0767813,0.277592,0.386888,0.283098,0.232493,0.446713,0.278033,0.741667,0.588171,0.384779,0.0301372,0.36148,0.363436,0.558923,0.965806,0.647191,0.904796,0.881487,0.683608,0.600252,0.50739,0.115267,0.0418563,0.894389,0.654407,0.571986,0.410885,0.886618,0.53179,0.731826,0.00604272,0.142264,0.38513,0.192438,0.889402,0.265912,0.352082,0.653244,0.571277,0.266735,0.185328,0.161549,0.815917,0.903417,0.729154,0.215425,0.587793,0.753579,0.221889,0.576347,0.714638,0.607402,0.290398,0.612997,0.88994,0.398225,0.37342,0.258829,0.197113,0.0335851,0.278315,0.253306,0.289878,0.301492,0.386264,0.930563,0.81841,0.364268,0.547752,0.538737,0.366432,0.438954,0.131328,0.763686,0.292723,0.419951,0.204236,0.398313,0.829476,0.95859,0.923504,0.0873529,0.723014,0.360127,0.65009,0.549389,0.212676,0.60011,0.180528,0.167813,0.686704,0.769535,0.215112,0.642141,0.697187,0.180915,0.645264,0.990433,0.640188,0.0320032,0.0395769,0.327743,0.962831,0.809362,0.423273,0.28096,0.937478,0.962026,0.360531,0.129248,0.903541,0.59206,0.848605,0.0255921,0.495903,0.970223,0.700148,0.931491,0.36995,0.479796,0.659407,0.962256,0.204631,0.51648,0.0244526,0.252142,0.995997,0.192922,0.338748,0.485853,0.872924,0.281122,0.315926,0.203123,0.183017,0.821879,0.405597,0.709739,0.388118,0.031635,0.725812,0.310808,0.426018,0.762995,0.660497,0.901296,0.211675,0.0824081,0.432282,0.335241,0.871515,0.700806,0.298543,0.782342,0.739372,0.985613,0.343317,0.543007,0.832191,0.710104,0.129983,0.0473931,0.740817,0.396214,0.503409,0.579003,0.662695,0.768902,0.821503,0.0789671,0.517329,0.288675,0.292683,0.156114,0.804947,0.197449,0.656239,0.25426,0.379226,0.796072,0.57971,0.671447,0.815516,0.719053,0.0703419,0.496341,0.585609,0.226516,0.161937,0.115566,0.0880636,0.817881,0.821053,0.824955,0.903581,0.301186,0.620418,0.350755,0.3451,0.512057,0.981592,0.254089,0.0365326,0.553976,0.167084,0.167525,0.348788,0.395188,0.446772,0.865229,0.798983,0.402673,0.994993,0.335495,0.711342,0.530411,0.460955,0.25952,0.531683,0.962369,0.758247,0.82121,0.0943275,0.62921,0.557852,0.773109,0.52092,0.770528,0.94666,0.175319,0.231846,0.941663,0.584122,0.718374,0.845996,0.808149,0.711351,0.562388,0.9154,0.510768,0.244843,0.826416,0.796081,0.681153,0.217913,0.965013,0.214869,0.0119524,0.393052,0.756542,0.0991633,0.677138,0.736979,0.814327,0.110798,0.152421,0.915843,0.777957,0.508846,0.657708,0.155347,0.373162,0.831051,0.246331,0.727755,0.735956,0.318576,0.00361764,0.0389608,0.0871709,0.252607,0.817681,0.839529,0.646395,0.846978,0.30647,0.217483,0.191732,0.196422,0.35298,0.975983,0.503222,0.362554,0.0162953,0.965253,0.623104,0.341626,0.949466,0.992042,0.670374,0.629885,0.27198,0.911721,0.0893865,0.883811,0.666122,0.50348,0.680979,0.359457,0.126607,0.2487,0.0919738,0.205573,0.917841,0.553647,0.432585,0.347838,0.0894953,0.876146,0.875334,0.115841,0.0985352,0.394249,0.00226903,0.682006,0.733452,|0.820076,0.15516,0.199744,0.489525,0.560674,0.424122,0.819327,0.500601,0.949468,0.319774,0.0911714,0.330179,0.783636,0.0760314,0.646435,0.67071,0.305448,0.0710781,0.682802,0.201618,0.564084,0.371464,0.8766,0.466045,0.0222753,0.105447,0.255712,0.0729082,0.100214,0.998652,0.457995,0.497158,0.504337,0.581193,0.768109,0.460058,0.890071,0.565495,0.489446,0.0141937,0.541758,0.370458,0.151761,0.017157,0.93036,0.519467,0.763926,0.907788,0.279137,0.151095,0.558781,0.239348,0.568266,0.958832,0.329582,0.58005,0.693339,0.875034,0.761223,0.567273,0.135198,0.665447,0.714747,0.87069,0.910929,0.265903,0.796755,0.208252,0.494375,0.131146,0.877155,0.178686,0.555447,0.526799,0.101058,0.540899,0.31345,0.0106509,0.46509,0.0717109,0.950587,0.885425,0.589422,0.874291,0.253677,0.0467438,0.0538443,0.936045,0.31674,0.174961,0.818806,0.447499,0.66406,0.216688,0.186664,0.619778,0.345953,0.0719497,0.543172,0.508479,0.245271,0.0256894,0.339015,0.738481,0.813398,0.402752,0.182317,0.791923,0.751399,0.831455,0.0112515,0.129259,0.207074,0.185295,0.636331,0.422024,0.396811,0.704598,0.759853,0.65301,0.0409877,0.437967,0.571099,0.936184,0.31274,0.94395,0.0967467,0.696573,0.799242,0.790938,0.842617,0.801914,0.583654,0.598107,0.824714,0.943217,0.169915,0.55463,0.876186,0.123718,0.728638,0.336414,0.0258089,0.99658,0.531266,0.128499,0.861426,0.558563,0.983781,0.283615,0.301188,0.755436,0.926166,0.292286,0.543135,0.886496,0.434787,0.500768,0.235752,0.281873,0.439448,0.819265,0.29196,0.706023,0.550456,0.224971,0.815001,0.961658,0.0686038,0.650596,0.0193928,0.138099,0.682095,0.902513,0.967413,0.979146,0.42682,0.910495,0.389726,0.387461,0.466918,0.612921,0.503461,0.233844,0.374323,0.324529,0.630311,0.695209,0.025235,0.509346,0.285146,0.443964,0.90327,0.706196,0.344989,0.693987,0.143787,0.46239,0.261794,0.79336,0.143997,0.918961,0.610669,0.527599,0.0058226,0.0830852,0.517292,0.699872,0.669762,0.252549,0.9355,0.698571,0.68297,0.641408,0.724668,0.312998,0.0977989,0.0575286,0.764086,0.561241,0.000755489,0.523797,0.992125,0.406684,0.480814,0.371748,0.519625,0.0012033,0.835893,0.644105,0.962836,0.665984,0.649909,0.791453,0.645937,0.307609,0.215449,0.165377,0.793124,0.630531,0.293557,0.156068,0.390511,0.783331,0.528116,0.751489,0.585039,0.760244,0.679642,0.38796,0.234578,0.400446,0.221211,0.0932323,0.263519,0.362368,0.114958,0.144288,0.207429,0.286566,0.853359,0.771116,0.0083757,0.353735,0.811504,0.264636,0.790208,0.494552,0.638631,0.491041,0.818818,0.127209,0.692921,0.805889,0.14692,0.365382,0.613737,0.419922,0.924379,0.34403,0.245951,0.0412666,0.808043,0.37946,0.440513,0.798088,0.926114,0.953819,0.00145137,0.0594313,0.524272,0.395475,0.0673727,0.372701,0.553773,0.614108,0.0458141,0.738812,0.473476,0.260262,0.251581,0.78496,0.55474,0.776918,0.0932618,0.157654,0.522727,0.824042,0.118711,0.422242,0.519123,0.697972,0.24848,0.94131,0.0356928,0.265194,0.23128,0.388442,0.735787,0.269942,0.684969,0.265729,0.774172,0.61211,0.0425424,0.0784069,0.185499,0.193171,0.206701,0.410416,0.82268,0.391154,0.187651,0.614706,0.0938985,0.294618,0.00780737,0.0660796,0.247394,0.24445,0.907781,0.137388,0.0364416,0.435401,0.567666,0.88025,0.21115,0.672241,0.354721,0.252154,0.523389,0.523342,0.460467,0.582846,0.371047,0.665302,0.639693,0.154476,0.731979,0.641992,0.746141,0.517444,0.429447,0.48765,0.487744,0.306745,0.636356,0.650989,0.0439252,0.638276,0.909368,0.0477304,0.479605,0.636324,0.553486,0.293574,0.326806,0.254793,0.923206,0.500292,0.977709,0.869962,0.438245,0.195443,0.783489,0.949595,0.747695,0.306089,0.104201,0.854072,0.262389,0.627223,0.00649995,0.938419,0.111579,0.194155,0.512323,0.326654,0.156151,0.503046,0.240598,0.385282,0.149196,0.492462,0.375936,0.462625,0.351603,0.953053,0.743464,0.925901,0.51781,0.23607,0.66912,0.596798,0.2403,0.302503,0.974527,0.243659,0.755275,0.174381,0.344118,0.729613,0.770666,0.892665,0.292239,0.607479,0.738095,0.235168,0.972971,0.857175,0.0583994,0.429451,0.239792,0.870578,0.888896,0.822466,0.730421,0.214744,0.660116,0.566004,0.395368,0.0889493,0.897107,0.54222,0.275323,0.95753,0.388661,0.454601,0.916924,0.223314,0.102237,0.112572,0.31395,0.541228,0.540171,0.630763,0.23985,0.857584,0.263114,0.853533,0.450271,0.163223,0.359791,0.550653,0.94816,0.24538,0.26491,0.832107,0.263565,0.862253,0.346119,0.979327,0.49822,0.718956,0.0101708,0.623974,0.0466347,0.187757,0.00231493,0.631306,0.7651,0.700681,0.0327256,0.29265,0.415179,0.581662,0.0225373,0.196227,0.312315,0.411767,0.093199,0.393039,0.0323758,0.845583,0.880519,0.910013,0.508124,0.93714,0.633757,0.32332,0.0402392,0.680489,0.118714,0.102231,0.823905,0.434357,0.50729,0.724503,0.111812,0.778906,0.606733,0.255208,0.135877,0.506657,0.130814,0.431812,0.415734,0.653704,0.738576,0.913616,0.32814,0.176484,0.202542,0.692307,0.580547,0.885723,0.339624,0.875658,0.933224,0.226926,0.8496,0.0221817,0.237838,0.457424,0.506497,0.0242537,0.0219582,0.815172,0.852121,0.384041,0.934321,0.281094,0.344541,0.134437,0.797221,0.881732,0.845871,0.295725,0.594658,0.384237,0.545834,0.49212,0.27028,0.684331,0.550636,0.229407,0.796807,0.878332,0.430486,0.968187,0.314883,0.547402,0.727535,0.22928,0.398918,0.991265,0.555785,0.91116,0.880132,0.543273,0.184287,0.994659,0.528839,0.873306,0.245302,0.338953,0.154903,0.368563,0.468257,0.691862,0.984966,0.612254,0.858542,0.0710511,0.203512,0.505311,0.459536,0.724905,0.993957,0.824178,0.680546,0.6114,0.0225132,0.783764,0.351739,0.927751,0.722875,0.456611,0.835811,0.602472,0.135587,0.686632,0.468769,0.220328,0.738437,0.0722938,0.727326,0.0290401,0.817993,0.0155591,0.0574237,0.459176,0.877596,0.633482,0.894678,0.71308,0.169254,0.243157,0.494653,0.566022,0.512631,0.49202,0.826062,0.358542,0.776303,0.0345618,0.121845,0.873782,0.440477,0.593107,0.764455,0.849166,0.346204,0.0202235,0.293598,0.0554135,0.875461,0.682179,0.0120486,0.715922,0.220946,0.236104,0.28079,0.174487,0.270752,0.744185,0.406836,0.60853,0.143298,0.0432408,0.942022,0.762377,0.133996,0.201937,0.351712,0.818601,0.931204,0.594595,0.577244,0.503524,0.0458589,0.799819,0.278683,0.397548,0.187002,0.845807,0.0382801,0.554133,0.732254,0.143272,0.822914,0.351036,0.622892,0.56835,0.644844,0.0942622,0.606144,0.268698,0.754507,0.931543,0.946674,0.605774,0.0329847,0.179529,0.879299,0.757582,0.974981,0.435214,0.543496,0.202459,0.222172,0.352075,0.85528,0.59423,0.398352,0.987608,0.984041,0.271703,0.525179,0.577254,0.686298,0.534377,0.452381,0.156554,0.436887,0.0570059,0.498948,0.931462,0.884133,0.753899,0.392206,0.067854,0.777141,0.250256,0.530832,0.553203,0.695291,0.204725,0.704467,0.63044,0.51322,0.605206,0.0770712,0.268265,0.0382054,0.924702,0.981203,0.629622,0.491945,0.191923,0.955656,0.186602,0.104337,0.824472,0.810593,0.714113,0.434633,0.782648,0.72308,0.0411673,0.988062,0.585996,0.967456,0.445746,0.80572,0.151335,0.500666,0.773586,0.890609,0.058912,0.848895,0.33084,0.898925,0.0837914,0.403564,0.486128,0.443945,0.605276,0.670308,0.944833,0.520536,0.774766,0.23305,0.0950295,0.662604,0.0332156,0.855589,0.747773,0.595316,0.729478,0.71054,0.37889,0.11478,0.824475,0.428659,0.61174,0.110081,0.219969,0.950141,0.986724,0.72288,0.20039,0.981221,0.331581,0.71373,0.732614,0.51936,0.618073,0.700483,0.168255,0.232832,0.748372,0.295245,0.216241,0.800708,0.137449,0.873409,0.327006,0.66161,0.864195,0.188375,0.704852,0.945662,0.343505,0.691446,0.66673,0.41234,0.557918,0.193053,0.568977,0.0701971,0.840474,0.283077,0.384159,0.7043,0.0723743,0.283413,0.414957,0.226222,0.255206,0.739177,0.537642,0.843958,0.192263,0.495993,0.854947,0.206153,0.381804,0.340604,0.811636,0.0416988,0.776293,0.887237,0.668401,0.398268,0.00699645,0.262392,0.577001,0.764262,0.234898,0.165563,0.408517,0.784877,0.937049,0.881943,0.579611,0.984345,0.439073,0.981068,0.186518,0.866722,0.27205,0.342336,0.712016,0.470599,0.933133,0.701277,0.345123,0.234079,0.826169,0.16363,0.301678,0.301737,0.984074,0.276,0.293097,0.344316,0.575119,0.00710714,0.323284,0.25067,0.298894,0.527396,0.71725,0.761003,0.0114297,0.640913,0.439843,0.424371,0.733046,0.56019,0.879753,0.256691,0.959869,0.183697,0.766622,0.0756333,0.679051,0.422024,0.160864,0.995849,0.482855,0.885673,0.972428,0.959008,0.843972,0.877725,0.100928,0.334247,0.268676,0.547475,0.0248896,0.308594,0.848343,0.0275373,0.494964,0.173099,0.629729,0.0551772,0.963744,0.720166,0.860311,0.134164,0.294308,0.442279,0.174952,0.0226229,0.228463,0.904473,0.638664,0.44507,0.623891,0.231222,0.338746,0.817032,0.310597,0.401096,0.95324,0.442869,0.138088,0.799464,0.484165,0.00341922,0.503086,0.101196,0.0878604,0.0191026,0.501745,0.071363,0.687142,0.618609,0.412248,0.481976,0.159009,0.895549,0.641184,0.150161,0.631542,0.880903,0.290525,0.840394,0.885021,0.388751,0.619097,0.500029,0.480573,0.137077,0.159168,0.672066,0.344193,0.911234,0.685039,0.476149,0.963216,0.619555,0.31701,0.140324,0.32917,0.668942,0.715803,0.469818,0.0560373,0.264087,0.773476,0.592036,0.427423,0.0423127,0.143502,0.297313,0.317826,0.466437,0.316988,0.651183,0.954723,0.0215113,0.668956,0.501179,0.768692,0.0262631,0.170912,0.283496,0.515993,0.818404,0.171472,0.997817,0.604961,0.833463,0.244808,0.138645,0.643542,|0.995488,0.854979,0.975276,0.00144565,0.913149,0.523914,0.298008,0.445251,0.949005,0.92697,0.296231,0.0398384,0.497201,0.869737,0.385693,0.700504,0.336443,0.789926,0.927952,0.863822,0.264024,0.265814,0.531736,0.119847,0.200226,0.770483,0.634798,0.533132,0.634232,0.224632,0.69873,0.140098,0.648446,0.642415,0.463845,0.448911,0.875246,0.977933,0.117558,0.389538,0.717004,0.874278,0.404547,0.0550264,0.771767,0.902808,0.853004,0.110015,0.732539,0.389215,0.52318,0.05632,0.972474,0.532049,0.453763,0.978006,0.736636,0.620529,0.870023,0.847235,0.573057,0.633636,0.352903,0.967475,0.388198,0.256706,0.928852,0.0631093,0.0993366,0.0553718,0.500214,0.0919142,0.555646,0.649492,0.222104,0.0109307,0.455564,0.862115,0.241088,0.300455,0.743477,0.818588,0.802071,0.835966,0.952088,0.530578,0.431228,0.561228,0.155086,0.351684,0.409525,0.356797,0.465132,0.613745,0.857243,0.927442,0.0486068,0.521336,0.486318,0.098121,0.014015,0.278709,0.384522,0.801821,0.012616,0.0497276,0.50188,0.208086,0.483304,0.942395,0.263343,0.81585,0.142169,0.36076,0.542663,0.301998,0.477006,0.851625,0.189044,0.578555,0.779173,0.729612,0.298311,0.838137,0.253044,0.769182,0.466182,0.3147,0.803423,0.454413,0.861862,0.265574,0.209471,0.280438,0.722849,0.793792,0.33426,0.394833,0.391348,0.374122,0.631776,0.242445,0.431545,0.824534,0.282627,0.955102,0.854743,0.621912,0.412903,0.335488,0.775558,0.145711,0.102073,0.763581,0.183034,0.505863,0.0376417,0.0128448,0.179596,0.615479,0.251503,0.994405,0.996569,0.333074,0.846545,0.662892,0.641287,0.103529,0.976404,0.740049,0.611461,0.584139,0.106522,0.398966,0.220966,0.0215108,0.23578,0.170128,0.722942,0.685012,0.64786,0.843839,0.346385,0.0318777,0.620277,0.967849,0.659158,0.874458,0.856076,0.76994,0.283276,0.835542,0.883663,0.385456,0.197022,0.899224,0.420003,0.647736,0.526225,0.726549,0.365997,0.28652,0.546308,0.39117,0.663732,0.13322,0.372554,0.763625,0.465562,0.171684,0.732995,0.430944,0.498654,0.376009,0.145006,0.876426,0.949901,0.796916,0.14643,0.358525,0.276239,0.700976,0.798784,0.732512,0.655756,0.791292,0.697164,0.203822,0.398363,0.0625001,0.188142,0.428387,0.286916,0.288603,0.200682,0.753771,0.606053,0.168684,0.569603,0.0695632,0.761326,0.985546,0.623058,0.154815,0.336466,0.680297,0.226737,0.246985,0.425911,0.205456,0.435838,0.197399,0.95169,0.0804071,0.224416,0.645708,0.86552,0.000473917,0.604701,0.759199,0.106653,0.956303,0.154275,0.725837,0.445587,0.945856,0.869898,0.486691,0.247492,0.0720873,0.850234,0.904341,0.862621,0.658248,0.236353,0.348196,0.38825,0.316461,0.231148,0.105322,0.796625,0.15418,0.95626,0.00424778,0.165049,0.231882,0.353537,0.118007,0.612085,0.853469,0.805578,0.542277,0.700351,0.417463,0.937481,0.0656173,0.347315,0.515886,0.414783,0.19997,0.546151,0.931796,0.901694,0.379067,0.522675,0.102784,0.80483,0.383942,0.124422,0.75495,0.133275,0.832529,0.809673,0.241943,0.785783,0.956087,0.484754,0.995976,0.646556,0.102924,0.774526,0.53243,0.331784,0.981533,0.409012,0.948383,0.798066,0.0934577,0.427215,0.947245,0.172078,0.429581,0.940057,0.777139,0.534904,0.310681,0.2553,0.436335,0.464475,0.352425,0.966002,0.858865,0.670501,0.0653264,0.843326,0.907822,0.739772,0.843343,0.550843,0.426757,0.882051,0.438377,0.744873,0.204601,0.342569,0.290705,0.697782,0.785564,0.211128,0.691118,0.41432,0.304433,0.349604,0.00930542,0.0780268,0.666819,0.52805,0.110799,0.875381,0.138088,0.346994,0.0165457,0.902223,0.900948,0.22039,0.822038,0.0863016,0.922275,0.443687,0.1535,0.249875,0.685355,0.270185,0.314278,0.300336,0.956213,0.322978,0.539258,0.403681,0.657688,0.320409,0.962243,0.106027,0.214366,0.656079,0.762241,0.161341,0.267485,0.173156,0.520846,0.818434,0.680828,0.901223,0.394611,0.341937,0.0482125,0.622364,0.647069,0.774441,0.0978901,0.259701,0.536929,0.424038,0.366179,0.518639,0.508474,0.373778,0.208407,0.0871715,0.766819,0.292848,0.116371,0.18877,0.0840179,0.207359,0.167332,0.115537,0.651443,0.73348,0.895769,0.318497,0.67781,0.40662,0.362173,0.258851,0.102325,0.0211705,0.866121,0.721771,0.793305,0.176065,0.584154,0.503697,0.213833,0.247806,0.329061,0.187016,0.418092,0.979483,0.607464,0.334988,0.513036,0.321791,0.853427,0.274769,0.889008,0.149452,0.235961,0.897755,0.117864,4.17233e-06,0.798865,0.888583,0.155279,0.843783,0.493945,0.46225,0.876556,0.849988,0.244068,0.90039,0.870521,0.571198,0.174038,0.208475,0.323109,0.257622,0.940655,0.366726,0.122995,0.115222,0.0735857,0.841596,0.406942,0.804464,0.116912,0.441627,0.0716603,0.818964,0.522006,0.768997,0.981017,0.590675,0.657583,0.276642,0.669505,0.710667,0.263044,0.603477,0.463381,0.856854,0.296906,0.845203,0.00246358,0.840229,0.946368,0.901399,0.503075,0.69139,0.510069,0.934269,0.959985,0.628009,0.437092,0.394719,0.34328,0.750745,0.832845,0.377834,0.440076,0.52788,0.809463,0.345893,0.977645,0.74584,0.349245,0.997964,0.215207,0.648919,0.773004,0.715908,0.546487,0.417901,0.648608,0.443684,0.983106,0.29958,0.165348,0.764052,0.441449,0.640589,0.151799,0.874449,0.25474,0.584195,0.35234,0.864932,0.652051,0.838595,0.603702,0.0263755,0.840308,0.898474,0.337644,0.733227,0.641556,0.560592,0.395188,0.750054,0.556347,0.658986,0.719172,0.291355,0.196123,0.433394,0.509951,0.18037,0.332178,0.261949,0.315186,0.0921134,0.547564,0.770028,0.111959,0.399258,0.731833,0.628695,0.281729,0.0994011,0.102988,0.0576987,0.990001,0.565351,0.0840651,0.269071,0.960552,0.81658,0.651799,0.558323,0.301911,0.555257,0.893342,0.583324,0.652325,0.651635,0.273529,0.0331951,0.72287,0.319738,0.0303797,0.38019,0.0762364,0.0868745,0.554026,0.0845858,0.391623,0.965308,0.058103,0.454814,0.975568,0.274232,0.730614,0.294933,0.386586,0.148212,0.333696,0.652787,0.219361,0.286337,0.406527,0.871394,0.965415,0.935191,0.0740588,0.165853,0.673722,0.611568,0.844982,0.717777,0.586842,0.879023,0.631014,0.705841,0.678487,0.720818,0.489928,0.525209,0.59194,0.978639,0.942532,0.460672,0.465763,0.33299,0.352331,0.431257,0.87483,0.154347,0.761198,0.922358,0.62373,0.787022,0.51344,0.0913896,0.860385,0.180361,0.216107,0.0494798,0.632851,0.490926,0.106574,0.20791,0.01865,0.427308,0.775663,0.882004,0.656694,0.362869,0.882152,0.280271,0.960394,0.91906,0.372125,0.908586,0.356755,0.952632,0.922149,0.456893,0.140069,0.126962,0.74974,0.465646,0.893943,0.774508,0.217469,0.065765,0.352094,0.780183,0.330273,0.408862,0.487998,0.731076,0.620979,0.107018,0.393904,0.982014,0.915174,0.844489,0.256749,0.211163,0.933527,0.50015,0.989108,0.688885,0.0965372,0.169105,0.360049,0.981807,0.965098,0.460635,0.641809,0.91411,0.97731,0.213185,0.133459,0.0386209,0.54206,0.00975072,0.434755,0.104389,0.352702,0.578507,0.655932,0.0976863,0.0315309,0.502211,0.964114,0.747279,0.239249,0.58997,0.694737,0.73698,0.665093,0.499096,0.335306,0.325558,0.134396,0.0899292,0.0414076,0.250433,0.300641,0.55721,0.0815575,0.95044,0.411068,0.227654,0.99019,0.269315,0.113506,0.0473955,0.703731,0.215647,0.0473711,0.83073,0.108527,0.945771,0.905006,0.919257,0.310304,0.0874999,0.730932,0.0699417,0.516518,0.858768,0.363032,0.309415,0.00246501,0.644311,0.715621,0.982127,0.517463,0.946823,0.604104,0.592585,0.665123,0.0205786,0.812077,0.968022,0.538267,0.465884,0.971426,0.340728,0.990073,0.605019,0.680699,0.45236,0.625643,0.822751,0.997511,0.239199,0.605975,0.137444,0.0998915,0.505801,0.339286,0.110349,0.44634,0.459001,0.659559,0.732372,0.301314,0.608662,0.300534,0.390392,0.736681,0.915825,0.0530093,0.399319,0.172831,0.827298,0.42811,0.876986,0.0810131,0.16412,0.980049,0.228739,0.486827,0.80273,0.872174,0.164269,0.120627,0.155643,0.879257,0.111057,0.758693,0.866758,0.357013,0.189979,0.298327,0.925353,0.898781,0.140244,0.139118,0.887984,0.439221,0.481788,0.866608,0.189837,0.741789,0.128109,0.804691,0.21388,0.163333,0.710261,0.465761,0.293466,0.0814301,0.19577,0.187379,0.150439,0.214432,0.749126,0.132619,0.134576,0.0105448,0.798086,0.897275,0.456948,0.0591247,0.612526,0.0257634,0.438731,0.549406,0.211324,0.756761,0.104282,0.159309,0.0610261,0.119702,0.316996,0.303753,0.0133445,0.0125265,0.905137,0.817797,0.41304,0.328195,0.299418,0.975392,0.611563,0.564083,0.204187,0.038773,0.26492,0.249184,0.88231,0.844007,0.489439,0.931061,0.115135,0.738209,0.797663,0.685297,0.608558,0.572438,0.712874,0.226664,0.0985548,0.241892,0.589904,0.755054,0.350884,0.907754,0.724954,0.163285,0.174043,0.464257,0.967672,0.788644,0.17452,0.688884,0.105751,0.821636,0.193741,0.724358,0.17213,0.527834,0.487645,0.232563,0.303199,0.153026,0.199301,0.734692,0.503689,0.474756,0.242915,0.83548,0.683132,0.0378294,0.17571,0.172255,0.283517,0.13227,0.950509,0.455158,0.0838477,0.964869,0.493101,0.452476,0.803084,0.314262,0.309286,0.71162,0.0552005,0.577357,0.135778,0.888717,0.613757,0.553888,0.448551,0.742995,0.826307,0.822961,0.236351,0.767047,0.609225,0.447183,0.142174,0.619427,0.610622,0.585574,0.127493,0.627372,0.708467,0.329493,0.0037598,0.460742,0.104474,0.151141,0.796064,0.705804,0.0946565,0.618205,0.845766,0.466334,0.187982,0.432671,0.457884,0.571646,0.381473,0.333146,0.465425,0.533264,0.0483445,0.191169,0.846785,0.179444,0.790026,0.468757,0.258972,0.112726,0.595253,0.553214,0.359433,0.844525,0.994661,0.30628,0.676043,0.0109312,0.510786,0.560572,| diff --git a/benchmark/torchscripts/VQ/columnCodeIndexX.txt b/benchmark/torchscripts/VQ/columnCodeIndexX.txt new file mode 100644 index 00000000..824a39a4 --- /dev/null +++ b/benchmark/torchscripts/VQ/columnCodeIndexX.txt @@ -0,0 +1 @@ +589,955,374,782,316,855,542,877,626,274,586,38,92,751,787,648,587,522,529,136,952,333,32,404,705,459,799,11,366,175,478,116,607,352,157,783,241,651,875,373,551,564,39,76,833,728,348,559,939,385,367,424,584,590,477,532,905,410,33,13,89,931,239,556,925,973,778,28,996,34,942,246,553,537,461,681,976,959,902,768,425,299,207,658,60,979,613,78,519,723,264,51,729,512,95,262,864,102,479,633,415,936,917,962,664,496,893,267,896,588,878,747,660,919,591,470,616,117,908,995,545,172,567,27,68,357,513,291,191,901,533,248,825,345,380,29,619,523,741,203,679,666,320,180,395,982,930,593,923,141,292,378,358,525,568,314,676,361,743,377,693,860,814,254,762,733,731,35,412,829,55,572,18,465,687,892,488,388,81,269,704,599,900,196,636,788,712,772,360,336,261,850,686,155,869,543,549,210,45,255,883,971,331,890,561,324,278,489,865,312,275,20,863,738,429,383,689,446,483,129,700,832,307,594,296,623,93,162,152,40,927,475,401,462,409,177,494,176,390,928,947,907,857,969,498,145,903,912,342,350,540,764,938,354,597,282,885,740,236,329,444,402,563,650,671,859,612,750,980,297,137,895,566,318,434,169,80,862,562,707,108,57,235,552,442,387,109,715,926,393,422,502,301,812,521,673,603,606,310,218,661,107,767,343,365,58,127,967,580,406,622,223,414,66,455,47,793,104,909,888,230,281,953,680,46,480,328,61,528,791,709,922,817,344,581,5,62,621,439,381,140,652,276,219,749,898,416,557,214,711,154,659,653,125,643,212,744,977,413,998,403,657,10,353,75,163,798,73,21,193,48,823,280,41,842,503,266,516,99,149,940,786,611,0,870,306,6,714,460,958,396,702,846,36,773,174,298,801,554,87,840,835,991,84,184,957,954,170,790,797,841,821,272,49,364,602,234,443,270,989,968,9,222,897,695,407,17,550,179,23,876,467,166,437,74,560,362,168,458,640,115,110,934,185,113,268,746,726,853,972,721,146,242,993,920,961,37,570,450,457,363,845,468,776,209,233,263,100,245,682,195,456,690,950,171,683,615,944,453,431,697,119,647,451,732,541,514,601,150,663,197,161,7,463,598,742,691,124,340,198,156,894,867,135,326,63,332,211,800,929,886,655,430,739,899,710,481,656,447,716,831,471,232,763,311,618,50,737,131,182,25,978,548,847,805,379,487,44,187,96,16,398,208,515,802,71,804,770,672,868,244,167,419,781,851,148,369,699,874,585,495,771,694,497,880,803,440,22,221,399,98,534,884,527,472,941,854,630,420,321,482,313,70,614,83,794,94,277,882,505,202,769,966,427,891,608,547,988,757,284,240,101,810,600,538,225,188,452,734,761,432,215,960,186,411,997,796,913,144,114,436,325,216,822,130,305,231,428,813,384,300,426,873,535,713,756,667,238,662,544,308,435,924,620,201,745,992,376,346,8,752,85,105,575,852,946,916,627,294,273,253,227,646,706,730,654,684,289,260,206,999,703,303,670,824,120,90,408,994,665,774,375,397,128,265,486,356,945,192,112,12,524,382,639,849,777,809,371,582,372,727,573,921,574,724,290,949,848,138,121,520,499,717,279,558,139,644,511,688,696,579,285,605,143,856,200,417,970,577,65,228,985,133,718,720,635,19,906,820,91,476,758,708,160,491,735,220,571,368,963,77,765,775,341,86,836,106,454,872,490,669,405,517,14,151,795,827,861,506,317,441,118,199,258,637,518,183,2,983,910,837,858,24,449,43,974,205,595,82,536,649,469,990,4,370,97,142,349,830,719,760,226,31,881,213,500,578,806,79,937,224,287,484,259,72,624,725,933,178,283,617,569,509,678,915,604,400,628,217,134,555,948,753,675,807,871,530,722,918,464,189,153,334,987,668,956,64,466,565,445,304,539,645,625,819,834,123,67,173,164,319,784,26,839,965,111,951,844,335,808,816,132,337,54,932,596,754,674,229,792,818,249,508,748,322,887,1,271,438,879,347,984,355,904,252,69,889,789,309,243,389,843,103,986,190,701,785,576,338,981,629,492,685,935,158,3,418,194,507,42,295,147,975,838,237,59,15,122,181,30,250,632,88,251,501,964,165,759,698,286,288,811,815,526,330,448,421,473,692,392,493,474,634,755,204,504,53,642,339,257,677,327,610,531,386,126,780,546,826,433,423,391,302,247,866,359,631,485,779,911,52,256,510,828,293,641,766,159,394,592,351,583,943,323,315,736,56,638,914,609, diff --git a/benchmark/torchscripts/VQ/rowCodeBookY.txt b/benchmark/torchscripts/VQ/rowCodeBookY.txt new file mode 100644 index 00000000..55573864 --- /dev/null +++ b/benchmark/torchscripts/VQ/rowCodeBookY.txt @@ -0,0 +1 @@ +0.221675,0.52249,0.213867,0.608888,0.862621,0.606601,0.478902,0.873785,0.378823,0.522888,0.504178,0.770183,0.352281,0.694073,0.203219,0.0582913,0.43753,0.464647,0.0406142,0.931628,0.457517,0.543238,0.136036,0.222114,0.110052,0.596008,0.0330322,0.430218,0.608365,0.413411,0.911164,0.561432,0.59824,0.817375,0.300333,0.0436316,0.95871,0.087873,0.363315,0.00623941,0.84715,0.64195,0.3714,0.708382,0.548847,0.648165,0.911471,0.685559,0.359019,0.155371,0.823787,0.688644,0.489274,0.0605854,0.795063,0.925103,0.345431,0.181274,0.120105,0.0299541,0.329515,0.335813,0.943774,0.312884,0.270604,0.11437,0.226033,0.707567,0.974298,0.243622,0.3228,0.83135,0.296738,0.806115,0.102351,0.554434,0.977754,0.296215,0.832598,0.655237,0.165864,0.909402,0.245128,0.649251,0.37402,0.152699,0.316445,0.112985,0.443684,0.85344,0.0869392,0.280668,0.844914,0.625363,0.630488,0.00859982,0.742384,0.00706339,0.565264,0.408563,0.538754,0.687307,0.650875,0.537322,0.842313,0.770496,0.884219,0.69659,0.130116,0.315338,0.887299,0.313703,0.952839,0.608257,0.721467,0.248901,0.606462,0.114165,0.965654,0.199233,0.910467,0.984378,0.696529,0.853431,0.441157,0.441644,0.34145,0.999546,0.552058,0.105062,0.302069,0.13935,0.0761048,0.203923,0.139218,0.175048,0.168193,0.666865,0.144988,0.788886,0.977863,0.0636379,0.64868,0.188125,0.0632333,0.793318,0.83359,0.300541,0.603958,0.111065,0.963954,0.0315508,0.970944,0.489459,0.748068,0.698248,0.946886,0.293603,0.592391,0.654118,0.939085,0.0831674,0.666155,0.9846,0.697692,0.086996,0.0571461,0.933945,0.0960199,0.378565,0.376988,0.205164,0.0446128,0.459745,0.681355,0.563944,0.793322,0.245046,0.419103,0.930688,0.672915,0.751483,0.201954,0.029907,0.27296,0.829453,0.932258,0.710214,0.318117,0.611864,0.124079,0.0363414,0.593425,0.0371355,0.305422,0.801316,0.789058,0.520813,0.599922,0.778781,0.112052,0.664446,0.98167,0.961647,0.282925,0.928864,0.0831158,0.783648,0.0718629,0.856438,0.730825,0.327399,0.622801,0.785256,0.927596,0.85515,0.621899,0.798166,0.377391,0.44333,0.870687,0.956696,0.342638,0.27343,0.768401,0.0299855,0.271318,0.0062719,0.530783,0.976646,0.148709,0.955724,0.954997,0.0188503,0.630143,0.0510221,0.293151,0.140217,0.00969523,0.567132,0.52974,0.0905744,0.578251,0.428369,0.559656,0.136981,0.642667,0.663655,0.564346,0.917178,0.712805,0.491613,0.752829,0.557189,0.645852,0.996473,0.211559,0.870895,0.318011,0.547747,0.304485,0.57255,0.486525,0.0751219,0.438757,0.880727,0.894475,0.270655,0.643628,0.0184515,0.127643,0.237331,0.498289,0.438511,0.306718,0.356517,0.605151,0.405829,0.89517,0.17094,0.569156,0.906347,0.951762,0.497962,0.274432,0.791137,0.0165858,0.757412,0.644519,0.926225,0.063112,0.862185,0.239005,0.400364,0.972377,0.436014,0.975494,0.282907,0.700072,0.410848,0.76996,0.377996,0.793662,0.408085,0.890846,0.933529,0.578353,0.334068,0.411371,0.402211,0.080812,0.668748,0.195659,0.462349,0.708499,0.431249,0.679205,0.0164374,0.522856,0.349622,0.28465,0.34688,0.0217575,0.312989,0.145855,0.445518,0.118226,0.0587384,0.753628,0.714634,0.724068,0.869237,0.112819,0.626194,0.701968,0.0701913,0.712149,0.0497553,0.777648,0.239991,0.260676,0.283971,0.678303,0.169869,0.0546591,0.0364798,0.648687,0.346071,0.696338,0.372153,0.0725154,0.729395,0.627107,0.452094,0.797536,0.927975,0.899476,0.795063,0.0471072,0.388751,0.963461,0.661989,0.978374,0.0662701,0.153906,0.0728045,0.457883,0.846995,0.944273,0.364558,0.739332,0.762652,0.842747,0.420098,0.0682008,0.319849,0.0749446,0.582072,0.651604,0.00309914,0.2698,0.764283,0.70405,0.223308,0.260837,0.252086,0.920886,0.216129,0.4024,0.256642,0.597665,0.820908,0.755567,0.325452,0.291722,0.53617,0.291267,0.96362,0.436184,0.0454318,0.399393,0.64168,0.298848,0.758914,0.568167,0.756031,0.266088,0.0163715,0.904616,0.728984,0.334416,0.00384456,0.738338,0.410905,0.822426,0.706997,0.502944,0.421241,0.00548249,0.659799,0.612131,0.527166,0.255308,0.480597,0.625002,0.174533,0.313822,0.928801,0.981334,0.853539,0.988749,0.220617,0.532055,0.386572,0.703013,0.683878,0.791684,0.320832,0.988993,0.161891,0.687183,0.968564,0.980472,0.687577,0.0848285,0.686701,0.734108,0.522693,0.108218,0.498572,0.472398,0.757882,0.968682,0.253023,0.188937,0.834205,0.46646,0.576738,0.774333,0.364227,0.546291,0.954665,0.964132,0.0575131,0.185394,0.582316,0.923269,0.92678,0.979046,0.765793,0.0603987,0.413366,0.915492,0.0279156,0.349503,0.510489,0.63648,0.15632,0.817711,0.287704,0.753499,0.52075,0.629019,0.645302,0.557898,0.734041,0.175304,0.396122,0.294631,0.79871,0.94428,0.43252,0.432718,0.261301,0.843031,0.403526,0.19111,0.798941,0.950473,0.440119,0.778276,0.366294,0.739141,0.3217,0.577143,0.997021,0.518233,0.69202,0.36609,0.899594,0.972507,0.555655,0.0782188,0.89769,0.716571,0.640513,0.988381,0.257384,0.441497,0.831163,0.688746,0.824197,0.391076,0.224322,0.93235,0.0279142,0.769231,0.901299,0.35704,0.0242668,0.209913,0.851102,0.173419,0.668938,0.378114,0.123147,0.724939,0.518183,0.369935,0.378761,0.162072,0.446027,0.171183,0.294133,0.959557,0.899174,0.464076,0.613425,0.322605,0.836108,0.119497,0.556053,0.443964,0.270963,0.749476,0.598106,0.407954,0.73386,0.166733,0.189236,0.294515,0.100469,0.450285,0.0343326,0.280487,0.346415,0.716554,0.215579,0.51793,0.14031,0.181244,0.373717,0.108145,0.407073,0.247862,0.477646,0.980064,0.0524676,0.847301,0.611478,0.976867,0.955006,0.892375,0.0226864,0.437961,0.865093,0.129645,0.197221,0.981302,0.856983,0.697295,0.808009,0.257471,0.441716,0.147177,0.162748,0.59392,0.577309,0.182925,0.0113606,0.881443,0.425637,0.0643649,0.181038,0.226057,0.870997,0.883861,0.580282,0.311787,0.0524161,0.63203,0.302543,0.0851922,0.328493,0.279257,0.0389608,0.880154,0.0885473,0.931178,0.695664,0.781092,0.786486,0.408973,0.41475,0.47265,0.545681,0.30807,0.625191,0.530628,0.75636,0.315573,0.60676,0.222243,0.983099,0.839306,0.180443,0.268211,0.536829,0.418723,0.864233,0.966665,0.974689,0.477423,0.419091,0.180527,0.135938,0.203751,0.423879,0.0612724,0.736116,0.490125,0.143208,0.40943,0.847944,0.929199,0.169586,0.508857,0.622408,0.392387,0.84327,0.949509,0.337236,0.0720986,0.30786,0.507252,0.330678,0.417529,0.692434,0.572815,0.366474,0.236351,0.78721,0.100825,0.888446,0.554946,0.151178,0.419008,0.445828,0.982818,0.974437,0.545233,0.510647,0.125062,0.704375,0.668506,0.542101,0.486492,0.422715,0.126045,0.362348,0.20883,0.809084,0.475156,0.0088985,0.627733,0.161595,0.430096,0.52194,0.795702,0.672833,0.241085,0.978404,0.578382,0.199561,0.078488,0.432329,0.162902,0.477265,0.748914,0.376115,0.766057,0.467281,0.435247,0.470662,0.574497,0.512741,0.78895,0.114503,0.867239,0.196506,0.782972,0.0549662,0.756135,0.0912994,0.484247,0.0173569,0.688699,0.837268,0.823385,0.82033,0.515148,0.407472,0.284307,0.476865,0.620074,0.712062,0.855535,0.94328,0.940923,0.745866,0.692171,0.0712658,0.932919,0.57184,0.49116,0.85363,0.867511,0.552338,0.781515,0.240817,0.0754605,0.0122971,0.47178,0.582637,0.584144,0.560597,0.0029003,0.282409,0.159526,0.227999,0.318827,0.0209228,0.7871,0.897395,0.368811,0.720442,0.456487,0.824594,0.193639,0.721085,0.25112,0.575668,0.360242,0.304905,0.632367,0.753807,0.958227,0.658057,0.707494,0.87025,0.0660458,0.688559,0.309496,0.343965,0.622665,0.0923407,0.492879,0.64085,0.379107,0.663352,0.299645,0.347348,0.0881028,0.901741,0.759823,0.704704,0.254644,0.226922,0.349853,0.384263,0.802424,0.417278,0.30085,0.605899,0.825415,0.516004,0.50066,0.210685,0.435557,0.077557,0.718597,0.618005,0.260737,0.718389,0.706125,0.152512,0.252127,0.453193,0.72979,0.0971199,0.785313,0.00397801,0.159887,0.535394,0.100346,0.99091,0.848637,0.957035,0.194411,0.812415,0.0873381,0.224065,0.364057,0.288153,0.984291,0.613618,0.334948,0.514713,0.490649,0.277088,0.657283,0.383732,0.245673,0.153328,0.152801,0.782145,0.557782,0.497568,0.30183,0.0232247,0.416206,0.474485,0.0812114,0.32468,0.0557323,0.194801,0.138364,0.0934949,0.782142,0.396135,0.825602,0.00142002,0.389545,0.654035,0.850641,0.885267,0.912137,0.21737,0.291362,0.461312,0.228203,0.339894,0.637098,0.581325,0.977119,0.0249146,0.852093,0.144513,0.483203,0.00792545,0.743867,0.687296,0.365571,0.552855,0.584106,0.381293,0.324833,0.698612,0.211798,0.911845,0.945525,0.371834,0.486183,0.525247,0.557639,0.18751,0.305725,0.307369,0.371504,0.627587,0.525553,0.26216,0.53785,0.151685,0.520842,0.797213,0.5308,0.979245,0.468684,0.525051,0.945818,0.072174,0.211986,0.760731,0.389418,0.490227,0.676303,0.36144,0.777395,0.506185,0.882135,0.0791454,0.884172,0.78165,0.182186,0.987542,0.380872,0.294677,0.959848,0.901814,0.598935,0.827383,0.907348,0.10558,0.13991,0.212712,0.126866,0.315985,0.771664,0.208084,0.847613,0.419303,0.566487,0.480449,0.207993,0.0721079,0.986014,0.61614,0.833569,0.903993,0.611778,0.779045,0.771966,0.346426,0.642115,0.800717,0.112852,0.436198,0.520415,0.936444,0.239397,0.0714416,0.247633,0.083751,0.868803,0.957957,0.241365,0.285297,0.140762,0.472272,0.848149,0.449633,0.608407,0.237698,0.513017,0.730396,0.84272,0.940218,0.900088,0.318938,0.364222,0.0432373,0.951173,0.885862,0.204504,0.357413,0.903122,0.776177,0.732036,0.531433,0.271632,0.658469,0.0923879,0.212515,0.311916,0.373844,0.0448135,0.53054,0.244746,0.26038,|0.358599,0.0274481,0.738436,0.535519,0.883893,0.7969,0.940745,0.653449,0.831248,0.664426,0.40484,0.108696,0.960483,0.930815,0.396275,0.79409,0.806773,0.954138,0.446424,0.629913,0.21352,0.513326,0.730325,0.559021,0.385436,0.814198,0.989357,0.0199982,0.672415,0.108114,0.486727,0.761692,0.0911845,0.456729,0.366377,0.247605,0.0865121,0.551269,0.736509,0.61594,0.658629,0.21213,0.381527,0.82645,0.610173,0.0529315,0.293987,0.893378,0.265498,0.696071,0.397589,0.587601,0.646006,0.864212,0.147412,0.760689,0.441519,0.679515,0.753363,0.0703093,0.667387,0.359231,0.634363,0.515934,0.986697,0.17593,0.034461,0.260371,0.720846,0.173282,0.334223,0.333398,0.891626,0.774575,0.353446,0.800525,0.365295,0.900541,0.338017,0.234385,0.723056,0.128592,0.154473,0.213403,0.879651,0.558241,0.982049,0.114057,0.0561187,0.15701,0.739025,0.481853,0.863004,0.891918,0.139453,0.972485,0.973963,0.513452,0.379457,0.483565,0.367526,0.712368,0.88006,0.0480011,0.157469,0.967709,0.121834,0.0497566,0.562782,0.418756,0.996788,0.47202,0.830758,0.830714,0.114548,0.787864,0.117127,0.13458,0.0128053,0.28401,0.507159,0.083234,0.574769,0.16757,0.713467,0.87846,0.947992,0.0672134,0.491782,0.759627,0.0537405,0.317426,0.249631,0.945088,0.660104,0.309538,0.319811,0.0834663,0.295713,0.855915,0.212995,0.595619,0.0223774,0.404766,0.211662,0.266231,0.385928,0.426144,0.378977,0.379991,0.814636,0.377698,0.00820208,0.0335906,0.592489,0.183445,0.259958,0.216383,0.338255,0.392637,0.857512,0.225082,0.977714,0.904614,0.729447,0.00730461,0.0856711,0.434175,0.548915,0.974357,0.819242,0.189557,0.260792,0.720049,0.164614,0.657739,0.168038,0.17705,0.995557,0.728906,0.0302037,0.440453,0.578991,0.843154,0.472427,0.748723,0.414809,0.838663,0.370239,0.69272,0.61014,0.766559,0.667557,0.452035,0.622486,0.792109,0.135449,0.949121,0.0174447,0.913555,0.787374,0.846153,0.395387,0.00427639,0.95898,0.433824,0.620298,0.73182,0.85503,0.950648,0.763081,0.655244,0.730313,0.477664,0.26602,0.782065,0.687267,0.943893,0.671954,0.919089,0.785477,0.475613,0.20611,0.256951,0.572313,0.686216,0.0267843,0.955695,0.81101,0.880873,0.678365,0.752838,0.222224,0.755618,0.644992,0.0389462,0.562917,0.499398,0.787921,0.40834,0.777961,0.965829,0.0657601,0.620826,0.0488518,0.697725,0.232941,0.0539684,0.509706,0.30574,0.208194,0.0238863,0.680124,0.242962,0.446494,0.927032,0.202312,0.0343437,0.719895,0.432493,0.611606,0.400392,0.187474,0.462486,0.911977,0.873543,0.544038,0.30297,0.512549,0.973326,0.375149,0.046938,0.06266,0.213146,0.182614,0.510674,0.793965,0.870183,0.351581,0.140575,0.100078,0.0706998,0.584704,0.747088,0.410211,0.737759,0.161386,0.628346,0.421565,0.585245,0.529656,0.734769,0.826237,0.232308,0.884998,0.685681,0.204996,0.130949,0.856032,0.544724,0.15623,0.0584952,0.891178,0.891588,0.0514085,0.327554,0.89337,0.328706,0.939469,0.243961,0.796279,0.817723,0.465901,0.0693884,0.69926,0.0282952,0.255953,0.566536,0.838688,0.704856,0.571902,0.223475,0.907633,0.064875,0.593592,0.219508,0.602066,0.295039,0.641368,0.191903,0.646003,0.126401,0.759733,0.889752,0.445994,0.534158,0.556459,0.14936,0.395311,0.141862,0.620713,0.0419866,0.523356,0.178949,0.871689,0.609865,0.710724,0.410303,0.334936,0.577586,0.17266,0.508407,0.870454,0.950589,0.773662,0.833081,0.0917273,0.930155,0.542759,0.2403,0.579757,0.743792,0.153624,0.798881,0.25634,0.303422,0.593114,0.602776,0.0262347,0.37644,0.118072,0.26276,0.847106,0.245626,0.335951,0.0685174,0.989891,0.307986,0.0528274,0.0213251,0.521924,0.507291,0.448024,0.967316,0.676146,0.469721,0.311285,0.300439,0.644682,0.958078,0.965384,0.939318,0.133933,0.627247,0.962474,0.282301,0.049391,0.8919,0.639233,0.311819,0.213836,0.026627,0.736722,0.0563509,0.798835,0.482747,0.982269,0.386809,0.285588,0.185459,0.0489206,0.611915,0.663257,0.731544,0.654025,0.930719,0.959528,0.721347,0.337187,0.930882,0.904017,0.322237,0.34934,0.162615,0.746644,0.888056,0.841321,0.376939,0.213802,0.22033,0.207455,0.00458837,0.515006,0.708963,0.116375,0.310315,0.732971,0.377156,0.946104,0.212734,0.997966,0.039759,0.846178,0.465703,0.211717,0.159149,0.716474,0.163686,0.264061,0.422474,0.187308,0.10237,0.31279,0.497566,0.221044,0.623362,0.54328,0.0782509,0.812599,0.405864,0.955031,0.620137,0.893705,0.257134,0.00545317,0.0311487,0.335564,0.862043,0.807176,0.404251,0.790071,0.166385,0.904697,0.503958,0.00178891,0.138277,0.297544,0.466836,0.473387,0.611544,0.624171,0.163894,0.754997,0.275595,0.068129,0.653959,0.946748,0.331627,0.588161,0.0732015,0.582945,0.336002,0.596152,0.325998,0.434542,0.37734,0.520294,0.501419,0.291567,0.929805,0.508313,0.084698,0.593647,0.0959713,0.668698,0.432563,0.596508,0.49166,0.695,0.576777,0.134433,0.590677,0.467126,0.965315,0.0619011,0.0325115,0.658113,0.365223,0.588438,0.106343,0.750333,0.928122,0.746898,0.418882,0.871021,0.705399,0.914365,0.449725,0.606745,0.927267,0.269011,0.941446,0.890078,0.12378,0.238983,0.519728,0.824735,0.98648,0.561928,0.123674,0.488942,0.566622,0.0863959,0.608209,0.690138,0.355485,0.843537,0.672307,0.0536917,0.27917,0.959819,0.926906,0.615381,0.366359,0.847493,0.645794,0.0107374,0.0154991,0.382429,0.402385,0.321566,0.0151383,0.124502,0.100684,0.906365,0.544001,0.557859,0.929598,0.0674487,0.853529,0.685006,0.0152724,0.687692,0.691954,0.38919,0.877475,0.74876,0.615293,0.726457,0.178316,0.991744,0.631974,0.142535,0.330512,0.30164,0.212092,0.222018,0.981315,0.78479,0.0998551,0.450199,0.287989,0.0717983,0.385973,0.0998941,0.0705179,0.955637,0.921075,0.768248,0.829352,0.595078,0.906519,0.340817,0.142458,0.686714,0.608536,0.168507,0.819429,0.341893,0.892163,0.866242,0.850659,0.870321,0.648739,0.209058,0.71251,0.88097,0.159423,0.391611,0.553259,0.485756,0.101712,0.173514,0.994076,0.220925,0.619277,0.553102,0.978395,0.111802,0.202458,0.598471,0.190746,0.851549,0.889199,0.310143,0.358266,0.363584,0.00497282,0.437548,0.399721,0.670147,0.666134,0.106243,0.170228,0.493895,0.242195,0.402368,0.113329,0.565069,0.100069,0.48867,0.5005,0.720989,0.359482,0.000853121,0.949469,0.748954,0.373755,0.312039,0.650047,0.0888743,0.834085,0.804147,0.910197,0.996434,0.464455,0.00177419,0.36123,0.845286,0.0775694,0.518639,0.954434,0.700615,0.268442,0.809118,0.856167,0.024389,0.253265,0.374944,0.847536,0.514983,0.616603,0.452609,0.984075,0.831043,0.595378,0.799828,0.200053,0.285585,0.536886,0.764767,0.984019,0.463628,0.470034,0.886115,0.251581,0.231355,0.903282,0.970399,0.0989127,0.169907,0.264203,0.0730259,0.710667,0.124419,0.325045,0.812155,0.747289,0.370558,0.810818,0.850954,0.523493,0.241964,0.525001,0.834195,0.455388,0.327534,0.826232,0.898907,0.477297,0.353389,0.835459,0.589459,0.336512,0.810063,0.401294,0.0664521,0.855039,0.446522,0.442722,0.128844,0.00903755,0.425048,0.445967,0.884437,0.105529,0.0921655,0.0524398,0.194198,0.287103,0.44953,0.277103,0.884511,0.841269,0.552663,0.911904,0.65177,0.988006,0.416932,0.791274,0.264753,0.580377,0.0138399,0.0415416,0.180869,0.315273,0.0745643,0.287498,0.992055,0.488967,0.175993,0.464843,0.782318,0.145814,0.253241,0.298025,0.827291,0.067014,0.620336,0.290842,0.513538,0.274256,0.515712,0.279814,0.693977,0.169181,0.71709,0.570922,0.749413,0.528038,0.606601,0.357397,0.566638,0.657374,0.00466198,0.0844037,0.0894009,0.103773,0.265018,0.296683,0.19509,0.998252,0.313361,0.260808,0.626342,0.409888,0.527348,0.209188,0.890257,0.893878,0.652767,0.936866,0.585073,0.278125,0.329928,0.412449,0.470445,0.953631,0.0814322,0.986635,0.292566,0.50356,0.609944,0.347932,0.531679,0.719635,0.230382,0.784571,0.293703,0.238325,0.985885,0.586859,0.361754,0.446574,0.384184,0.0348951,0.113256,0.617785,0.432438,0.761573,0.748629,0.33697,0.503769,0.652326,0.70125,0.0241345,0.458427,0.26128,0.103809,0.201271,0.525542,0.0845731,0.182644,0.842388,0.294518,0.718474,0.205472,0.848262,0.958796,0.977073,0.523659,0.659042,0.352906,0.565762,0.540491,0.690702,0.905898,0.302529,0.891988,0.530978,0.968765,0.558776,0.67849,0.47603,0.433699,0.901647,0.245496,0.800482,0.509393,0.477565,0.909527,0.124465,0.58259,0.414206,0.694097,8.63075e-05,0.351916,0.227725,0.294283,0.053732,0.800847,0.792839,0.935053,0.37562,0.696994,0.407739,0.778621,0.360868,0.448666,0.204349,0.830005,0.692378,0.426024,0.975015,0.241542,0.273557,0.648295,0.412516,0.784338,0.985632,0.376749,0.831067,0.218406,0.251148,0.583524,0.507396,0.0466267,0.902762,0.110709,0.231753,0.610078,0.206417,0.613147,0.753404,0.410253,0.652117,0.718731,0.818716,0.711193,0.541138,0.0124962,0.603209,0.611752,0.686068,0.758539,0.866359,0.215402,0.132287,0.818057,0.0814514,0.811308,0.0783739,0.0724422,0.680256,0.762024,0.103252,0.907401,0.69471,0.787738,0.000927627,0.260812,0.504517,0.998935,0.190655,0.00378567,0.885046,0.241242,0.506791,0.614262,0.927934,0.570237,0.398774,0.340815,0.816926,0.886747,0.394921,0.999781,0.498445,0.749168,0.223461,0.18686,0.369411,0.218557,0.0771999,0.529734,0.77896,0.271362,0.14947,0.845672,0.30899,0.183912,0.468249,0.0420337,0.955674,0.806888,0.887559,0.750052,0.693544,0.0266245,0.128719,0.860389,0.824379,0.328294,0.389488,0.15107,0.140798,0.495288,0.26072,0.74235,0.592589,0.756587,0.78169,0.738501,0.296021,0.798399,0.164807,0.71242,0.287851,0.314584,0.13691,|0.271887,0.117431,0.680939,0.860664,0.54079,0.564988,0.993535,0.238971,0.527456,0.414488,0.580159,0.471535,0.380169,0.905061,0.875072,0.44513,0.123946,0.614448,0.807034,0.560539,0.719982,0.520965,0.324794,0.750952,0.239812,0.247426,0.403353,0.821607,0.725988,0.874547,0.768853,0.654767,0.268574,0.495774,0.727571,0.0216841,0.487342,0.338807,0.49166,0.037554,0.232316,0.239204,0.871622,0.92303,0.222098,0.987811,0.251067,0.238781,0.45629,0.839353,0.683177,0.516848,0.401126,0.997061,0.0503545,0.607936,0.105586,0.202764,0.953951,0.246489,0.68236,0.152551,0.901052,0.653175,0.505228,0.482392,0.415873,0.336115,0.524298,0.0824751,0.69403,0.486205,0.0200781,0.54837,0.0604793,0.091163,0.528484,0.936572,0.2975,0.740859,0.423787,0.599923,0.450692,0.426476,0.914735,0.25583,0.312125,0.215265,0.794794,0.474074,0.98963,0.866451,0.0571988,0.532207,0.0240711,0.0486715,0.0410623,0.353371,0.338187,0.0963405,0.549316,0.340588,0.0770811,0.725918,0.0773103,0.292534,0.725773,0.826613,0.680904,0.234766,0.082432,0.746603,0.992993,0.833848,0.761661,0.136572,0.713181,0.988125,0.147378,0.603453,0.143811,0.141728,0.615885,0.941524,0.914875,0.666465,0.121553,0.152762,0.349625,0.320486,0.979329,0.420296,0.809558,0.801721,0.285123,0.667922,0.113935,0.257835,0.763825,0.497441,0.324722,0.423816,0.929017,0.131709,0.648942,0.406067,0.214688,0.419291,0.583831,0.979538,0.578714,0.431333,0.39743,0.230813,0.142702,0.249484,0.559688,0.8942,0.989696,0.945947,0.162975,0.434761,0.372048,0.68758,0.521892,0.0678893,0.577559,0.448843,0.279081,0.44377,0.122296,0.475355,0.356209,0.258426,0.610104,0.287722,0.455416,0.0771579,0.374736,0.753517,0.417402,0.800276,0.375211,0.973023,0.141605,0.253166,0.54606,0.146473,0.219371,0.471459,0.294246,0.404315,0.601088,0.0031271,0.135216,0.177787,0.198135,0.919456,0.324085,0.295503,0.127413,0.658394,0.889158,0.330105,0.698253,0.0194612,0.495979,0.491301,0.738454,0.486993,0.41061,0.613562,0.805595,0.837689,0.134109,0.623814,0.0502449,0.679175,0.190316,0.799581,0.890752,0.760487,0.951957,0.116007,0.244207,0.527983,0.165748,0.733772,0.940437,0.939253,0.00558829,0.586212,0.559949,0.0448488,0.758693,0.00492495,0.435711,0.539685,0.230686,0.757445,0.340329,0.770802,0.682231,0.475704,0.131285,0.595567,0.691975,0.0247607,0.8192,0.982398,0.940375,0.0298501,0.168527,0.204132,0.55723,0.482666,0.962895,0.341804,0.429539,0.79819,0.269156,0.893896,0.290076,0.585304,0.172013,0.937228,0.400485,0.0272917,0.525253,0.480102,0.649832,0.842676,0.925299,0.0462219,0.83124,0.082979,0.545337,0.15884,0.760249,0.242502,0.494169,0.941996,0.865241,0.78532,0.58029,0.255297,0.85852,0.331613,0.776866,0.0877435,0.855723,0.400194,0.299019,0.595976,0.363789,0.274723,0.486895,0.351582,0.634361,0.989569,0.0268129,0.794276,0.294132,0.686924,0.832437,0.423002,0.210296,0.417357,0.795939,0.460068,0.737657,0.706474,0.453796,0.566507,0.631833,0.656999,0.820125,0.948008,0.843106,0.614616,0.894101,0.510012,0.982539,0.824004,0.886405,0.452093,0.605916,0.302301,0.300654,0.87539,0.63165,0.498741,0.485966,0.608275,0.944528,0.989497,0.877899,0.967192,0.854776,0.924022,0.928694,0.80975,0.861807,0.765612,0.991213,0.00709236,0.526146,0.0220526,0.803526,0.723687,0.280262,0.350823,0.0297284,0.978918,0.179051,0.88672,0.352278,0.23994,0.717137,0.877725,0.164329,0.877347,0.176393,0.592019,0.355552,0.560089,0.906112,0.6781,0.21388,0.428845,0.287797,0.800145,0.532299,0.726543,0.550455,0.530714,0.84921,0.116272,0.875435,0.066671,0.642004,0.253633,0.542028,0.732363,0.834976,0.0982692,0.942864,0.439903,0.807328,0.419729,0.642654,0.0985832,0.0347287,0.418405,0.46954,0.273543,0.722057,0.234882,0.428318,0.572506,0.000146866,0.389086,0.30677,0.00328964,0.208242,0.942305,0.868655,0.969411,0.966819,0.422271,0.30848,0.565445,0.221219,0.35245,0.638538,0.406221,0.405399,0.445026,0.198282,0.182735,0.173446,0.813785,0.38865,0.816153,0.721591,0.466926,0.520361,0.0660655,0.444179,0.165116,0.310705,0.000834346,0.594909,0.322472,0.741677,0.649844,0.967979,0.0978295,0.109122,0.534997,0.294639,0.231013,0.474225,0.750889,0.419863,0.0764419,0.783068,0.685829,0.82506,0.865636,0.0634688,0.255645,0.13395,0.469314,0.0606951,0.00943816,0.186952,0.543363,0.799154,0.396262,0.230696,0.137254,0.508898,0.934327,0.211763,0.30536,0.601003,0.100021,0.197913,0.554296,0.506077,0.104178,0.931128,0.858101,0.525846,0.306167,0.753806,0.970351,0.602756,0.088571,0.559651,0.984945,0.0434231,0.246033,0.926026,0.175947,0.892541,0.808128,0.299661,0.477115,0.934378,0.897236,0.228289,0.946863,0.695654,0.821377,0.981114,0.49159,0.68534,0.534258,0.967834,0.651492,0.4783,0.4272,0.724631,0.386191,0.631822,0.0765229,0.520558,0.92867,0.191693,0.731499,0.302607,0.446601,0.402266,0.093981,0.113898,0.860774,0.894452,0.408265,0.470303,0.956969,0.287536,0.0868344,0.560242,0.278363,0.969017,0.430694,0.379921,0.908612,0.395741,0.769111,0.207588,0.301038,0.935054,0.868529,0.0847496,0.430308,0.0633205,0.37258,0.036427,0.186689,0.0655466,0.891346,0.304503,0.119806,0.260149,0.55578,0.116924,0.944393,0.421382,0.796648,0.562023,0.125879,0.0883912,0.581668,0.971948,0.837992,0.320609,0.163755,0.123694,0.429302,0.241315,0.329647,0.313945,0.60397,0.456535,0.325037,0.507171,0.396698,0.195514,0.815582,0.893088,0.418967,0.968589,0.473791,0.356519,0.527065,0.33293,0.955105,0.425895,0.319626,0.582859,0.549671,0.616171,0.72665,0.423478,0.90545,0.270521,0.285206,0.76874,0.627032,0.559526,0.803069,0.427338,0.986686,0.748548,0.735701,0.870361,0.472907,0.0849094,0.242251,0.444865,0.0136805,0.348485,0.689705,0.449454,0.239794,0.612301,0.767534,0.191595,0.345636,0.202094,0.280221,0.671602,0.994993,0.654022,0.0464428,0.114486,0.682375,0.0559356,0.782823,0.37533,0.430162,0.361711,0.115859,0.617416,0.0894797,0.0967016,0.319014,0.224718,0.805786,0.0638333,0.728899,0.77172,0.919732,0.321678,0.558236,0.961576,0.0202382,0.113762,0.882842,0.288449,0.630169,0.00763965,0.258411,0.454303,0.157817,0.198637,0.615378,0.645981,0.0943046,0.970496,0.887797,0.745477,0.553701,0.369443,0.241935,0.375715,0.0339382,0.52248,0.638442,0.666961,0.694247,0.357386,0.420947,0.756883,0.479227,0.3318,0.36125,0.0985548,0.679775,0.0143528,0.878817,0.695986,0.114578,0.171595,0.482472,0.257698,0.307127,0.196606,0.290792,0.936077,0.837655,0.95581,0.436703,0.974399,0.57097,0.0826548,0.66165,0.137968,0.832219,0.603863,0.172268,0.694444,0.752841,0.722822,0.709091,0.872584,0.497942,0.440568,0.146424,0.889508,0.136951,0.875933,0.376387,0.02807,0.302773,0.0575066,0.507341,0.206856,0.552927,0.379618,0.463756,0.561146,0.737582,0.737855,0.715185,0.543069,0.170039,0.230807,0.211365,0.546129,0.313132,0.839656,0.792772,0.316404,0.970583,0.599937,0.624782,0.744063,0.0881267,0.872849,0.499158,0.885032,0.947443,0.278646,0.771486,0.779406,0.871385,0.236339,0.473822,0.17348,0.0653554,0.193954,0.668369,0.353193,0.0985911,0.384506,0.018691,0.144094,0.165049,0.558257,0.0629579,0.154755,0.503158,0.547033,0.682176,0.80959,0.588415,0.948603,0.191734,0.0918192,0.336569,0.823297,0.49264,0.520646,0.921281,0.269199,0.63175,0.946044,0.72825,0.51507,0.859171,0.84872,0.796254,0.270982,0.18978,0.276755,0.983134,0.521067,0.324869,0.991136,0.625336,0.0810515,0.826805,0.416408,0.874578,0.344484,0.96607,0.0449412,0.57659,0.0152912,0.598177,0.0506756,0.674419,0.025739,0.95256,0.861443,0.766355,0.51785,0.59895,0.716954,0.431009,0.691945,0.662235,0.130919,0.0447075,0.440361,0.89854,0.0488632,0.466837,0.301633,0.234972,0.51053,0.38536,0.989688,0.12527,0.12642,0.476877,0.498654,0.776468,0.106511,0.221506,0.905823,0.451172,0.954145,0.416365,0.71159,0.493426,0.213998,0.764609,0.966941,0.502495,0.583201,0.121135,0.109888,0.832407,0.0894564,0.0559269,0.0568096,0.113827,0.358706,0.618241,0.049888,0.959838,0.981195,0.613338,0.0106361,0.125403,0.158064,0.381265,0.522531,0.545679,0.389304,0.253456,0.900524,0.697659,0.0181964,0.248907,0.418282,0.827608,0.944705,0.903009,0.0362728,0.815252,0.636247,0.793063,0.11144,0.313343,0.546743,0.969939,0.0561982,0.403771,0.617513,0.849015,0.858208,0.479943,0.215333,0.0423512,0.100329,0.766669,0.950617,0.292422,0.569792,0.254665,0.00518018,0.278042,0.241449,0.469802,0.281726,0.635141,0.848114,0.811475,0.242315,0.617345,0.758494,0.546919,0.153314,0.37368,0.650519,0.663371,0.44266,0.995872,0.22541,0.965255,0.531627,0.0228463,0.68593,0.468907,0.756972,0.419863,0.385426,0.627747,0.334339,0.404198,0.389347,0.764695,0.270423,0.939965,0.408444,0.721241,0.602685,0.402878,0.201606,0.038456,0.850872,0.540902,0.264122,0.205514,0.657618,0.204236,0.0946631,0.797391,0.379935,0.842623,0.421562,0.993349,0.482022,0.0587528,0.304379,0.084873,0.32307,0.634902,0.769617,0.265445,0.227963,0.842763,0.707065,0.96987,0.69916,0.456957,0.682085,0.0514868,0.649483,0.657253,0.312107,0.716717,0.295827,0.51539,0.952396,0.865666,0.705833,0.999378,0.822955,0.591628,0.582078,0.752125,0.533979,0.881956,0.13521,0.107852,0.167898,0.0918695,0.542916,0.857445,0.52268,0.3869,0.81614,0.469433,0.310469,0.948893,0.948223,0.506297,0.800962,0.206852,0.502445,0.430858,0.0878198,0.574306,0.0223826,0.742116,0.38729,0.379333,0.0927566,0.315181,0.911175,0.776643,0.592175,0.0783603,|0.643707,0.557823,0.715726,0.851724,0.382757,0.903081,0.888649,0.18927,0.239517,0.715597,0.268703,0.193216,0.402099,0.534106,0.482333,0.619091,0.972045,0.0872187,0.475016,0.180501,0.752849,0.528688,0.942163,0.91294,0.873223,0.932177,0.730874,0.63026,0.714346,0.475303,0.793202,0.636681,0.535164,0.44948,0.914432,0.293443,0.228932,0.148108,0.657286,0.225982,0.387908,0.625881,0.961365,0.761377,0.00906569,0.352021,0.358449,0.585026,0.0194329,0.969721,0.192608,0.0626641,0.679679,0.318366,0.932303,0.12961,0.96234,0.573343,0.248786,0.464794,0.0522768,0.36873,0.0795002,0.303989,0.546463,0.436595,0.358195,0.796995,0.86677,0.298548,0.716663,0.914481,0.273779,0.0405322,0.10585,0.274356,0.134918,0.0851506,0.318341,0.670173,0.177562,0.437497,0.295092,0.0321979,0.373597,0.354113,0.208104,0.81866,0.655233,0.0187909,0.191872,0.0342929,0.489052,0.15644,0.069203,0.0233877,0.389612,0.058925,0.50052,0.440309,0.460478,0.641859,0.0404108,0.0355276,0.627071,0.131395,0.592017,0.518833,0.484441,0.794257,0.828676,0.150389,0.0722216,0.634085,0.464549,0.234233,0.0700912,0.999871,0.282792,0.547897,0.465142,0.147271,0.348877,0.313718,0.0835833,0.6424,0.0616403,0.731583,0.435507,0.133184,0.00598705,0.622606,0.824342,0.182683,0.829667,0.651125,0.0163381,0.249021,0.276186,0.255778,0.956983,0.965059,0.827868,0.0684162,0.138882,0.489831,0.230112,0.977477,0.934854,0.536874,0.778119,0.234175,0.829515,0.937034,0.620673,0.0660807,0.0552288,0.759812,0.669895,0.839116,0.0575151,0.962777,0.191853,0.428281,0.79175,0.73427,0.748724,0.567581,0.539228,0.0566178,0.925454,0.513115,0.988696,0.858456,0.972553,0.835289,0.487877,0.0558717,0.730091,0.645397,0.322184,0.529108,0.113716,0.266524,0.300104,0.884978,0.400412,0.711892,0.29792,0.407963,0.155567,0.939007,0.991851,0.960212,0.986555,0.774987,0.776272,0.377368,0.740148,0.848529,0.463886,0.615079,0.510075,0.228336,0.779838,0.89809,0.0021897,0.647453,0.678651,0.743684,0.685837,0.399379,0.422229,0.411261,0.865169,0.0680952,0.410719,0.629668,0.147703,0.661024,0.886717,0.533044,0.686026,0.190908,0.869959,0.317229,0.0180323,0.201129,0.390028,0.124632,0.468481,0.10041,0.275699,0.668891,0.627805,0.701298,0.941875,0.707126,0.907079,0.00788814,0.242125,0.371394,0.505745,0.201626,0.288016,0.686646,0.0187495,0.962428,0.782015,0.407957,0.472597,0.803861,0.719175,0.130528,0.663558,0.360392,0.78169,0.0658584,0.150498,0.0185319,0.307008,0.244916,0.288595,0.0174584,0.431933,0.826096,0.174041,0.75736,0.591098,0.277979,0.995338,0.527103,0.549621,0.128698,0.0794583,0.0536445,0.90797,0.0852258,0.603384,0.397065,0.810871,0.0333024,0.486956,0.73552,0.275247,0.208252,0.423684,0.397742,0.480585,0.030812,0.0468978,0.376638,0.153773,0.853012,0.726882,0.393873,0.309047,0.878057,0.253988,0.760417,0.0271616,0.812264,0.828943,0.621101,0.547931,0.500095,0.691167,0.521844,0.476395,0.0739212,0.0968177,0.332911,0.801651,0.0720229,0.295771,0.119532,0.166937,0.535147,0.0244051,0.0601678,0.339164,0.679066,0.552426,0.916065,0.773508,0.735638,0.358893,0.112015,0.889264,0.958369,0.53258,0.246476,0.341935,0.555247,0.385424,0.030875,0.999436,0.697141,0.0178724,0.591507,0.343153,0.941366,0.331255,0.768209,0.341643,0.842325,0.0107405,0.955966,0.848645,0.723507,0.526325,0.799411,0.0292861,0.166609,0.71389,0.380667,0.765515,0.290258,0.133175,0.0416988,0.235085,0.966903,0.989073,0.29119,0.607421,0.902384,0.813146,0.977741,0.605879,0.648274,0.392236,0.438343,0.226174,0.673077,0.649754,0.621674,0.54447,0.202632,0.791845,0.751794,0.380297,0.471675,0.638693,0.89891,0.773834,0.665895,0.101247,0.364167,0.137679,0.130864,0.462585,0.900205,0.779182,0.920376,0.40091,0.239952,0.0126663,0.649751,0.91883,0.0361155,0.515824,0.896719,0.681422,0.0543575,0.774913,0.984883,0.763395,0.961817,0.360514,0.717379,0.185571,0.441737,0.647795,0.511493,0.169397,0.322222,0.119813,0.955782,0.947235,0.83032,0.803086,0.777508,0.499086,0.327052,0.864134,0.74471,0.608198,0.651247,0.775234,0.344005,0.376932,0.297943,0.00128931,0.860254,0.0143258,0.457528,0.947163,0.32094,0.041012,0.114538,0.555,0.536733,0.106622,0.1047,0.205534,0.718348,0.584601,0.481856,0.295531,0.7422,0.429971,0.119992,0.138299,0.677971,0.298663,0.00178671,0.310971,0.324391,0.214806,0.827597,0.0949336,0.20005,0.547222,0.65366,0.0961553,0.145178,0.217258,0.00507337,0.581012,0.279763,0.912151,0.818482,0.131167,0.69998,0.283587,0.484246,0.503265,0.307039,0.916994,0.966053,0.352325,0.53743,0.500579,0.115797,0.453281,0.635732,0.944876,0.73721,0.299588,0.41656,0.941033,0.695341,0.388596,0.63545,0.709806,0.574874,0.684093,0.667614,0.955989,0.706645,0.215979,0.382024,0.330749,0.881351,0.523866,0.0312829,0.268764,0.652627,0.867254,0.11832,0.62428,0.19757,0.617107,0.709947,0.982559,0.669662,0.0559536,0.235406,0.166836,0.0878621,0.349328,0.190166,0.778018,0.794792,0.433936,0.348228,0.930248,0.662496,0.424674,0.892608,0.125928,0.889907,0.327194,0.380082,0.426295,0.248389,0.27714,0.371299,0.456115,0.150405,0.199263,0.828803,0.747885,0.736871,0.445191,0.195332,0.840536,0.746531,0.165141,0.946226,0.7451,0.761191,0.619574,0.00888884,0.131623,0.197159,0.761619,0.542982,0.359387,0.950128,0.780159,0.433068,0.228904,0.324596,0.834947,0.266295,0.811761,0.444704,0.7749,0.942384,0.454815,0.615706,0.17004,0.122744,0.387311,0.411742,0.259042,0.0393527,0.501927,0.115225,0.760523,0.855722,0.908786,0.328596,0.674638,0.0882171,0.740297,0.832557,0.0630275,0.746755,0.471512,0.847183,0.0725167,0.563043,0.595673,0.306468,0.669272,0.287268,0.640214,0.0864204,0.65058,0.929827,0.152104,0.828457,0.0621033,0.400203,0.630243,0.753431,0.520128,0.704119,0.114578,0.656703,0.383166,0.0318329,0.843822,0.211675,0.34614,0.119008,0.622053,0.0213323,0.954618,0.694692,0.117176,0.81981,0.713262,0.99767,0.447359,0.0416213,0.77832,0.678019,0.468894,0.374566,0.889234,0.575853,0.0374328,0.685469,0.810472,0.324565,0.398253,0.750201,0.750413,0.103195,0.3021,0.197055,0.384542,0.115137,0.424753,0.900881,0.315571,0.951401,0.166555,0.0688648,0.450019,0.759076,0.491066,0.569565,0.944325,0.297801,0.68956,0.934618,0.511937,0.580768,0.475527,0.157191,0.931353,0.981523,0.91488,0.747528,0.374715,0.80401,0.140244,0.282312,0.897334,0.378033,0.321049,0.436896,0.199296,0.0509152,0.00972426,0.360196,0.850039,0.167978,0.380832,0.995902,0.702638,0.563892,0.203772,0.0189956,0.803506,0.911626,0.877813,0.834004,0.775042,0.00243682,0.251311,0.923189,0.925572,0.241381,0.173142,0.945343,0.986071,0.736903,0.816792,0.508025,0.985921,0.367741,0.295554,0.054562,0.0901859,0.916619,0.672677,0.241255,0.980676,0.482157,0.208532,0.113721,0.683764,0.714128,0.188497,0.298043,0.821597,0.175963,0.237366,0.671954,0.0732585,0.511743,0.00330198,0.848736,0.537524,0.944555,0.191727,0.379786,0.881054,0.214171,0.673723,0.192952,0.936117,0.733969,0.352582,0.725423,0.0493279,0.355064,0.848172,0.104963,0.747851,0.305555,0.760357,0.530388,0.817055,0.64601,0.0205531,0.113264,0.292833,0.19403,0.291196,0.753268,0.732285,0.132307,0.73159,0.856017,0.607515,0.911012,0.0580691,0.862756,0.657669,0.0628247,0.338453,0.247334,0.671741,0.568365,0.944672,0.753561,0.0904498,0.938409,0.914004,0.78298,0.9671,0.654262,0.107707,0.405467,0.891898,0.325092,0.513018,0.339747,0.7304,0.21743,0.86576,0.203915,0.0824158,0.683193,0.310739,0.871513,0.705882,0.548267,0.0843104,0.638438,0.545919,0.324298,0.251856,0.791701,0.171862,0.402951,0.220403,0.611175,0.0326281,0.639407,0.924929,0.508096,0.851421,0.590063,0.97,0.470843,0.611512,0.282539,0.782486,0.871746,0.813572,0.0378334,0.79434,0.0642968,0.95717,0.930046,0.0633129,0.409792,0.836373,0.974873,0.172742,0.0292926,0.782398,0.0370666,0.636669,0.925428,0.715105,0.413448,0.639572,0.775038,0.749239,0.234069,0.210875,0.725594,0.975835,0.498197,0.875291,0.995417,0.033657,0.989278,0.129305,0.681407,0.0972757,0.0123212,0.78989,0.464534,0.91825,0.11592,0.970479,0.0552541,0.0882913,0.617501,0.17992,0.249071,0.568313,0.593867,0.723751,0.909457,0.309744,0.74889,0.74395,0.236675,0.241845,0.796786,0.977293,0.496239,0.835118,0.769722,0.811074,0.95432,0.574646,0.644418,0.756865,0.720701,0.301695,0.500944,0.357501,0.0166987,0.122012,0.181265,0.904056,0.112762,0.620177,0.140382,0.701643,0.689691,0.349243,0.583085,0.98746,0.720805,0.603728,0.621812,0.0324699,0.0412165,0.122392,0.527776,0.264943,0.761788,0.831245,0.312193,0.375158,0.717066,0.951623,0.990465,0.687484,0.167272,0.992425,0.591699,0.570433,0.25248,0.514034,0.150887,0.779811,0.225155,0.422798,0.171674,0.947625,0.287242,0.654713,0.896252,0.145095,0.402899,0.689701,0.858591,0.893733,0.342229,0.787762,0.973809,0.379792,0.675216,0.887158,0.285818,0.412136,0.974392,0.344786,0.476417,0.316322,0.722539,0.468443,0.77573,0.444099,0.516496,0.258801,0.180688,0.998739,0.189688,0.622382,0.460228,0.156352,0.927393,0.958662,0.609981,0.899717,0.931956,0.0341206,0.524173,0.241975,0.792201,0.0156077,0.434532,0.118577,0.137315,0.825711,0.594365,0.0645229,0.0940698,0.0683005,0.484532,0.211023,0.191355,0.928163,0.284439,0.815689,0.0797932,0.280859,0.413765,0.942791,0.596159,0.566882,0.696662,0.202634,0.816784,0.155852,0.249384,0.202773,0.364663,0.448984,0.326947,0.372399,0.374222,0.217752,0.823228,0.234588,0.017511,|0.906147,0.839037,0.48804,0.655486,0.105502,0.443719,0.0571554,0.124962,0.289261,0.107834,0.522716,0.738678,0.854302,0.44069,0.53139,0.335271,0.689312,0.541495,0.0386246,0.427031,0.979642,0.745012,0.458579,0.529171,0.292321,0.791727,0.681072,0.586768,0.3443,0.661699,0.691016,0.949952,0.44207,0.514084,0.274698,0.865209,0.356874,0.742459,0.891511,0.950359,0.908412,0.345928,0.609443,0.483915,0.653946,0.616051,0.859276,0.0679743,0.408701,0.754573,0.925748,0.682345,0.225487,0.422932,0.771695,0.282415,0.523611,0.347051,0.52133,0.947564,0.305006,0.553288,0.358022,0.122058,0.602519,0.77285,0.858809,0.24325,0.159781,0.277248,0.350908,0.346317,0.445906,0.805494,0.289865,0.150137,0.890755,0.0420188,0.312334,0.728842,0.135085,0.280191,0.01148,0.81553,0.583433,0.594067,0.464388,0.0506634,0.333784,0.416222,0.948896,0.814525,0.684934,0.166548,0.421272,0.249076,0.693236,0.0251067,0.0966814,0.192985,0.0412344,0.807411,0.883005,0.518657,0.445023,0.261012,0.71338,0.640654,0.169213,0.0400637,0.27456,0.87574,0.501837,0.833362,0.71368,0.729552,0.946435,0.903417,0.332511,0.202346,0.939006,0.0487299,0.666735,0.215667,0.810921,0.444693,0.121847,0.938146,0.944452,0.813998,0.940586,0.881206,0.138222,0.70525,0.470412,0.712896,0.986581,0.62438,0.539927,0.533582,0.449366,0.726241,0.719839,0.477435,0.428181,0.165286,0.912049,0.821893,0.568832,0.909962,0.587361,0.867855,0.0693161,0.0160807,0.820866,0.342887,0.736751,0.38948,0.759408,0.107712,0.383787,0.20023,0.559512,0.795957,0.940643,0.991479,0.0543772,0.179371,0.74319,0.712143,0.00557345,0.849307,0.642096,0.738257,0.857291,0.726709,0.729287,0.727745,0.762797,0.241378,0.719285,0.273422,0.988114,0.937293,0.836544,0.58528,0.172401,0.134095,0.251709,0.114625,0.675077,0.176054,0.105952,0.00648564,0.271675,0.612367,0.0183047,0.128146,0.27621,0.291753,0.517618,0.773896,0.218186,0.155317,0.958893,0.435678,0.880988,0.542981,0.712022,0.0967985,0.456929,0.995326,0.303229,0.339906,0.211036,0.861423,0.845932,0.932849,0.927043,0.369755,0.32662,0.500917,0.544165,0.598818,0.846966,0.240857,0.916214,0.460593,0.94227,0.204517,0.546005,0.462649,0.974121,0.953038,0.545352,0.51131,0.208706,0.902947,0.551692,0.642172,0.200978,0.574026,0.723289,0.31049,0.852065,0.541916,0.341955,0.930328,0.637053,0.784735,0.131286,0.961623,0.88569,0.966956,0.0392954,0.902874,0.104852,0.264428,0.243086,0.587677,0.49247,0.0702248,0.970169,0.0496322,0.712702,0.897353,0.977958,0.695602,0.637043,0.891751,0.0635985,0.074838,0.518708,0.753511,0.568167,0.848895,0.539771,0.15619,0.933498,0.206185,0.705526,0.485684,0.895436,0.13466,0.731663,0.148365,0.221784,0.945536,0.623654,0.82954,0.295546,0.0662107,0.602831,0.178601,0.153803,0.109537,0.696523,0.748894,0.51279,0.279508,0.259493,0.637448,0.459456,0.79546,0.527302,0.447003,0.233709,0.0695315,0.0582379,0.0134689,0.419777,0.022429,0.385888,0.486933,0.837453,0.00303459,0.606798,0.480891,0.67774,0.946116,0.959215,0.899687,0.662911,0.368307,0.78136,0.124276,0.919525,0.269489,0.706264,0.656952,0.207386,0.170416,0.829084,0.768006,0.0104544,0.532735,0.0599656,0.95781,0.333033,0.397766,0.493897,0.0919471,0.83229,0.916257,0.0327099,0.837579,0.504321,0.828321,0.360952,0.238413,0.305161,0.41646,0.974888,0.333187,0.8483,0.804945,0.121457,0.836937,0.6488,0.191923,0.59271,0.439961,0.413642,0.0602621,0.213908,0.580935,0.551793,0.163694,0.235873,0.825525,0.0589116,0.47235,0.637677,0.683597,0.705631,0.806947,0.762833,0.472406,0.770999,0.277939,0.2464,0.0429783,0.669859,0.403187,0.331969,0.805471,0.360307,0.500634,0.34231,0.60589,0.461791,0.102331,0.2117,0.623325,0.0839013,0.817364,0.377277,0.315408,0.290703,0.443925,0.0942489,0.399023,0.785997,0.349554,0.670013,0.869165,0.322276,0.0128573,0.836403,0.169862,0.864683,0.0231903,0.428732,0.639001,0.339932,0.17523,0.953808,0.133849,0.00152564,0.902202,0.705759,0.193655,0.219797,0.180977,0.93747,0.610013,0.499349,0.446762,0.755644,0.376196,0.0350718,0.776654,0.824102,0.678151,0.35504,0.35193,0.537959,0.43172,0.293977,0.0446224,0.531747,0.641228,0.0678224,0.706505,0.17561,0.180911,0.303738,0.834061,0.153755,0.572019,0.136641,0.993182,0.0921959,0.532385,0.686699,0.996974,0.0998536,0.887841,0.41521,0.218381,0.693612,0.222289,0.378988,0.815684,0.679486,0.273327,0.861402,0.824273,0.641872,0.495109,0.979607,0.19071,0.649548,0.495905,0.0132479,0.489227,0.060345,0.102285,0.00887895,0.244145,0.701287,0.842775,0.252388,0.711673,0.527478,0.311659,0.300869,0.880574,0.55051,0.0674652,0.403242,0.121746,0.978573,0.184673,0.719776,0.506029,0.411036,0.313208,0.689699,0.559855,0.546271,0.955712,0.632921,0.859897,0.170137,0.217836,0.0743977,0.514017,0.000317514,0.270929,0.937717,0.0986047,0.920949,0.861831,0.1759,0.626372,0.589608,0.812812,0.73152,0.389715,0.725162,0.728224,0.902552,0.283086,0.648123,0.192635,0.889073,0.276372,0.559313,0.132886,0.401376,0.997556,0.381655,0.450563,0.734801,0.617425,0.174552,0.973514,0.706227,0.532136,0.371702,0.750355,0.73194,0.000838161,0.463069,0.575767,0.254595,0.509514,0.195084,0.531028,0.378617,0.918705,0.997282,0.906351,0.672099,0.450903,0.797529,0.698276,0.259951,0.738928,0.587984,0.488866,0.803296,0.434837,0.639069,0.841271,0.931477,0.322976,0.989131,0.848129,0.109623,0.328447,0.562851,0.669385,0.811086,0.3387,0.0353761,0.641655,0.928182,0.395981,0.289244,0.733045,0.98115,0.534904,0.27664,0.123045,0.837642,0.923597,0.603159,0.926595,0.18099,0.220607,0.384316,0.315825,0.365006,0.558273,0.356363,0.973614,0.788752,0.946539,0.0564529,0.249323,0.000819981,0.159362,0.454263,0.249555,0.195868,0.863414,0.344453,0.452793,0.303941,0.125061,0.474188,0.377563,0.932296,0.215425,0.578637,0.102925,0.53276,0.618905,0.999064,0.662034,0.806128,0.324827,0.784071,0.448802,0.325287,0.260248,0.4782,0.621049,0.227115,0.229677,0.439585,0.0960174,0.0915543,0.484631,0.394589,0.197328,0.794818,0.453403,0.931706,0.302327,0.167404,0.937309,0.849278,0.603833,0.902766,0.709889,0.213633,0.0748104,0.441349,0.646787,0.102085,0.0730855,0.790972,0.306114,0.12764,0.0104575,0.310669,0.868679,0.884349,0.724978,0.769899,0.678127,0.0560771,0.331891,0.386892,0.402242,0.639329,0.569316,0.694737,0.184386,0.533645,0.919619,0.296732,0.32778,0.529649,0.849087,0.20025,0.0322997,0.264873,0.935124,0.77732,0.700159,0.429434,0.484514,0.306457,0.98179,0.926128,0.829269,0.898659,0.735635,0.232212,0.833046,0.628367,0.247131,0.452738,0.24342,0.0182472,0.561027,0.411107,0.235579,0.296314,0.139781,0.88209,0.7599,0.669357,0.597612,0.158912,0.370854,0.738238,0.650208,0.530843,0.207146,0.595537,0.858853,0.700571,0.778119,0.54141,0.905617,0.654006,0.446737,0.807802,0.86319,0.337963,0.0296365,0.0502818,0.496539,0.337823,0.262321,0.256111,0.408971,0.584617,0.688218,0.357318,0.627065,0.450943,0.448341,0.503159,0.234639,0.827123,0.424074,0.881461,0.106762,0.564016,0.739129,0.842456,0.540635,0.807953,0.1431,0.766616,0.808683,0.442453,0.188725,0.108993,0.527119,0.64858,0.73379,0.00576121,0.93264,0.578538,0.345129,0.394637,0.158154,0.851607,0.982236,0.311448,0.405987,0.51589,0.13547,0.396287,0.531919,0.648158,0.960729,0.900341,0.684427,0.457129,0.822124,0.256445,0.646176,0.478681,0.872717,0.0220734,0.922612,0.531642,0.673315,0.840328,0.625932,0.765789,0.306686,0.0287259,0.668198,0.537804,0.120052,0.411217,0.336739,0.266627,0.645399,0.791458,0.29838,0.0988712,0.464783,0.0346228,0.554763,0.820831,0.0449216,0.119695,0.252531,0.865721,0.255589,0.232645,0.896186,0.381839,0.90342,0.337933,0.259255,0.219238,0.629624,0.894269,0.0905892,0.416542,0.829784,0.168535,0.164337,0.809825,0.679606,0.117867,0.697006,0.567577,0.767971,0.215025,0.481951,0.466706,0.732316,0.882557,0.815776,0.23638,0.864284,0.0473487,0.955942,0.843576,0.803837,0.42289,0.934261,0.349876,0.445527,0.301677,0.84766,0.647113,0.794501,0.0396242,0.911655,0.605932,0.385597,0.241222,0.981728,0.859157,0.679154,0.221157,0.806883,0.81851,0.347379,0.334958,0.608136,0.616193,0.232777,0.935213,0.0398596,0.380501,0.659382,0.604186,0.0723933,0.0238425,0.957104,0.288675,0.24007,0.714979,0.0570009,0.713603,0.720121,0.18361,0.980456,0.19844,0.366479,0.526247,0.453965,0.78848,0.232076,0.871729,0.413269,0.247789,0.963228,0.466019,0.66763,0.550274,0.0514166,0.391011,0.900579,0.167548,0.881502,0.147924,0.75014,0.224766,0.0138269,0.668094,0.231732,0.490534,0.274981,0.833423,0.955785,0.493124,0.810432,0.785811,0.0542865,0.71458,0.762391,0.546028,0.845271,0.667541,0.336235,0.547433,0.453702,0.633302,0.37079,0.85151,0.0441685,0.385763,0.0812784,0.40652,0.188265,0.0165532,0.771879,0.667593,0.609224,0.532335,0.356612,0.571822,0.684671,0.0455438,0.260805,0.581211,0.944358,0.163584,0.366733,0.012963,0.587097,0.413902,0.481029,0.119425,0.331443,0.771943,0.591145,0.054836,0.215018,0.520017,0.600179,0.899412,0.582286,0.420585,0.813358,0.983972,0.781865,0.156473,0.0649592,0.92971,0.868187,0.543054,0.536688,0.993262,0.295342,0.205645,0.770833,0.00997263,0.968499,0.758082,0.604927,0.219583,0.602426,0.259018,0.793236,0.782105,0.772626,0.356197,0.973063,0.794055,0.981046,0.860863,0.341349,0.700043,0.0400677,0.753033,0.908849,0.00322539,0.16761,0.104951,0.3727,0.137952,0.155056,0.977127,0.616531,|0.741682,0.124824,0.412241,0.745122,0.612978,0.649578,0.666991,0.0633799,0.155164,0.207614,0.836894,0.320244,0.0742379,0.854958,0.450148,0.392615,0.274064,0.133281,0.535557,0.907188,0.724913,0.704232,0.0319845,0.42874,0.259468,0.077602,0.68748,0.865145,0.955857,0.846365,0.395503,0.767034,0.759873,0.861257,0.398532,0.179779,0.154077,0.955242,0.601549,0.414086,0.417141,0.574635,0.490323,0.134863,0.7739,0.0844196,0.0497659,0.817532,0.788909,0.185466,0.913486,0.989223,0.111739,0.736093,0.845007,0.167176,0.40837,0.133595,0.695467,0.0798526,0.265185,0.197488,0.155989,0.0397758,0.529779,0.900635,0.643981,0.704841,0.419348,0.867492,0.672759,0.701762,0.696601,0.10789,0.483102,0.559829,0.959742,0.564738,0.146405,0.729392,0.913045,0.22217,0.58585,0.00284803,0.501073,0.651036,0.612553,0.660473,0.772008,0.192274,0.276788,0.717677,0.581671,0.63641,0.918889,0.579946,0.523208,0.890096,0.0890738,0.572875,0.356679,0.166773,0.76115,0.599653,0.630296,0.639092,0.136496,0.796549,0.429662,0.570614,0.0548234,0.266145,0.80404,0.716977,0.457104,0.713002,0.78368,0.56281,0.488386,0.703386,0.173491,0.726071,0.363385,0.154299,0.0686695,0.347883,0.674491,0.763532,0.605196,0.0162372,0.95277,0.982611,0.20392,0.4935,0.495957,0.0481145,0.638596,0.155481,0.873659,0.22272,0.906429,0.575138,0.5628,0.81828,0.267328,0.269619,0.613444,0.126715,0.781091,0.370953,0.0185633,0.301559,0.26248,0.234461,0.662323,0.512916,0.649793,0.044506,0.0330299,0.948309,0.196256,0.63336,0.944192,0.560892,0.754632,0.260999,0.825498,0.687579,0.160789,0.484405,0.109609,0.427557,0.441713,0.167833,0.0188972,0.101906,0.948677,0.892038,0.740653,0.176049,0.190814,0.828146,0.734571,0.672714,0.919093,0.691518,0.711155,0.339944,0.137262,0.956473,0.897296,0.412577,0.943209,0.833925,0.495768,0.645679,0.203964,0.00699866,0.126285,0.517133,0.908135,0.597632,0.236596,0.363321,0.902593,0.570312,0.866521,0.232148,0.376351,0.793398,0.0440426,0.211567,0.711225,0.92105,0.703365,0.915028,0.397949,0.5535,0.838726,0.547728,0.208146,0.564307,0.434679,0.577353,0.137278,0.75552,0.673181,0.255719,0.411368,0.100475,0.922076,0.471689,0.11835,0.247806,0.00781143,0.117575,0.516925,0.233581,0.60536,0.444851,0.240894,0.704182,0.0692329,0.959246,0.973599,0.135104,0.0526782,0.0592533,0.00240815,0.703497,0.296349,0.142509,0.449569,0.81314,0.474046,0.185841,0.31665,0.881756,0.188516,0.624931,0.0973173,0.826173,0.358896,0.459299,0.771357,0.807851,0.715365,0.766375,0.193423,0.371303,0.249999,0.596521,0.443237,0.987936,0.406915,0.925772,0.968227,0.469772,0.244675,0.350488,0.526301,0.277715,0.56549,0.920103,0.728617,0.761629,0.684548,0.90427,0.977151,0.0666184,0.643837,0.047875,0.191075,0.755382,0.0201141,0.518592,0.307264,0.495845,0.376076,0.851714,0.986802,0.280158,0.125511,0.570761,0.962833,0.0767632,0.295277,0.361476,0.383543,0.450076,0.409777,0.303434,0.669738,0.941504,0.494888,0.0362881,0.240561,0.212692,0.0832173,0.758868,0.090039,0.922924,0.112929,0.278577,0.0864557,0.307368,0.662683,0.907787,0.5404,0.714683,0.247964,0.137114,0.999257,0.32719,0.860993,0.0649493,0.134508,0.344273,0.71739,0.403131,0.919451,0.00685436,0.241683,0.964838,0.907189,0.994117,0.284528,0.0485552,0.18691,0.604758,0.936168,0.923523,0.0841041,0.555379,0.588896,0.696285,0.381455,0.424048,0.775451,0.140324,0.47998,0.839252,0.487861,0.570177,0.395485,0.555355,0.590729,0.0746784,0.505886,0.781493,0.833252,0.671346,0.968169,0.408159,0.516404,0.522196,0.264893,0.509928,0.509616,0.100771,0.314513,0.694203,0.428848,0.703194,0.752479,0.10476,0.715354,0.321364,0.370872,0.07488,0.816492,0.331882,0.495963,0.0438839,0.484325,0.69777,0.325973,0.724847,0.850491,0.077284,0.0901105,0.706801,0.241837,0.0553014,0.20307,0.323518,0.900986,0.542281,0.284592,0.880303,0.135479,0.0556286,0.279894,0.581786,0.736929,0.854989,0.00207406,0.429894,0.23504,0.750015,0.0523742,0.562642,0.248382,0.233412,0.184074,0.311244,0.307973,0.398363,0.0481034,0.710787,0.476566,0.387717,0.917939,0.896286,0.959493,0.284125,0.205845,0.521956,0.463183,0.857298,0.00906056,0.0376548,0.881299,0.761636,0.952896,0.0328218,0.142531,0.346623,0.0654005,0.765531,0.213983,0.400046,0.0795394,0.0812163,0.389204,0.284611,0.442164,0.408798,0.758531,0.391342,0.628006,0.011781,0.923155,0.601466,0.303286,0.816773,0.960588,0.412714,0.328443,0.362661,0.783312,0.0194858,0.617401,0.809372,0.0852975,0.285031,0.75173,0.809671,0.146638,0.616111,0.903947,0.39645,0.385757,0.278059,0.628052,0.899078,0.0990539,0.766104,0.187102,0.100116,0.103913,0.740923,0.423784,0.0311486,0.99099,0.594346,0.181913,0.595994,0.881791,0.771454,0.589046,0.163268,0.0695344,0.239657,0.745474,0.334695,0.0519012,0.20551,0.301106,0.155249,0.41653,0.878047,0.797044,0.285189,0.0113851,0.280464,0.592568,0.719467,0.155067,0.463685,0.775019,0.762144,0.601431,0.988077,0.144661,0.31304,0.523206,0.594339,0.471904,0.578181,0.0569773,0.890176,0.971189,0.56294,0.0273001,0.603084,0.734499,0.544034,0.0792707,0.833681,0.351639,0.227297,0.241871,0.698164,0.984729,0.958853,0.318003,0.218876,0.839009,0.0186057,0.296227,0.986296,0.134102,0.0747012,0.680095,0.841971,0.496842,0.668709,0.608269,0.846944,0.096656,0.123021,0.154664,0.657977,0.238787,0.770495,0.463933,0.349329,0.222873,0.96039,0.500348,0.132174,0.855666,0.251506,0.188646,0.316068,0.339755,0.8755,0.714238,0.455594,0.0950116,0.795783,0.305735,0.144941,0.330538,0.769859,0.114267,0.277374,0.632698,0.0203187,0.490419,0.424164,0.292826,0.775231,0.374803,0.0379596,0.78691,0.38804,0.783772,0.986414,0.666614,0.577588,0.530707,0.0037086,0.652363,0.90364,0.969353,0.539627,0.0963998,0.619691,0.462317,0.999922,0.491758,0.713267,0.631849,0.362554,0.650157,0.792811,0.962227,0.806953,0.151135,0.562959,0.615387,0.172466,0.462897,0.794747,0.661325,0.491959,0.371078,0.387886,0.935073,0.661822,0.959591,0.520159,0.878514,0.908185,0.487194,0.628751,0.821354,0.060819,0.898733,0.468184,0.468424,0.559136,0.0970979,0.665818,0.859452,0.750314,0.0502281,0.925708,0.925263,0.856628,0.300678,0.341568,0.885348,0.148313,0.457991,0.418992,0.869195,0.596734,0.434971,0.531498,0.257374,0.0343354,0.6,0.12799,0.503648,0.381815,0.370785,0.144551,0.104474,0.51521,0.0712374,0.0198786,0.215646,0.844309,0.452584,0.802985,0.527819,0.313337,0.468125,0.678359,0.290741,0.62974,0.892188,0.382397,0.706321,0.627734,0.920091,0.723912,0.00905859,0.507211,0.882075,0.867031,0.583291,0.930146,0.899241,0.936476,0.670542,0.247114,0.131406,0.362066,0.796398,0.234035,0.480205,0.721535,0.487514,0.825531,0.427214,0.56597,0.603744,0.276517,0.734269,0.102772,0.409763,0.276838,0.782755,0.851425,0.465059,0.534396,0.384902,0.0841445,0.735402,0.748786,0.844666,0.71299,0.753214,0.0045079,0.518862,0.216361,0.227229,0.727459,0.709364,0.314288,0.651113,0.561581,0.120912,0.189761,0.431405,0.108609,0.0164446,0.286076,0.818887,0.927571,0.195837,0.899621,0.940568,0.725496,0.184758,0.551547,0.277767,0.849529,0.121879,0.684696,0.0915636,0.819747,0.23544,0.331446,0.0649391,0.75931,0.263176,0.663207,0.570029,0.47422,0.62152,0.577175,0.670002,0.518425,0.0189441,0.743343,0.252624,0.877969,0.47197,0.979172,0.971262,0.599571,0.077321,0.238241,0.278759,0.602598,0.618027,0.855884,0.172399,0.790028,0.221383,0.875435,0.0903277,0.161345,0.596289,0.483099,0.91258,0.592252,0.871094,0.363067,0.0718271,0.242756,0.504243,0.961391,0.0677665,0.326487,0.987251,0.122934,0.75259,0.930174,0.69657,0.269366,0.976217,0.588044,0.0483148,0.931595,0.482866,0.886372,0.876375,0.772175,0.32214,0.503748,0.501886,0.580494,0.942524,0.706372,0.638285,0.683838,0.93764,0.692073,0.45947,0.0929272,0.0638845,0.285694,0.14918,0.391347,0.31188,0.0420704,0.293707,0.164233,0.614838,0.0854675,0.038447,0.949767,0.472925,0.441491,0.789683,0.470375,0.0722719,0.540124,0.649622,0.165764,0.0207618,0.69462,0.700044,0.790556,0.0397679,0.899144,0.0813849,0.822577,0.692496,0.066799,0.00639492,0.120787,0.679732,0.26041,0.679268,0.54289,0.587069,0.684041,0.638923,0.119687,0.0803408,0.505114,0.362806,0.465535,0.223088,0.879444,0.842916,0.78523,0.180038,0.54129,0.215588,0.619803,0.893371,0.615111,0.274656,0.227727,0.481006,0.710102,0.698836,0.19476,0.795444,0.701826,0.908724,0.0720633,0.873755,0.475044,0.069128,0.159983,0.769149,0.507775,0.0840001,0.268827,0.0167097,0.913912,0.594131,0.362873,0.39808,0.606919,0.295998,0.616377,0.282057,0.514236,0.168288,0.62902,0.359523,0.862948,0.320659,0.257356,0.299975,0.694521,0.747181,0.300276,0.0395362,0.594171,0.0868257,0.83649,0.780383,0.0171719,0.994638,0.240036,0.216531,0.35983,0.930948,0.84654,0.332293,0.35387,0.874237,0.14698,0.0136397,0.607612,0.317682,0.76046,0.879857,0.992674,0.0832008,0.541864,0.959835,0.0104972,0.650622,0.195961,0.873704,0.522258,0.321655,0.718912,0.519803,0.943455,0.943388,0.023185,0.759776,0.270838,0.293666,0.749256,0.0311792,0.0458332,0.000615954,0.489895,0.711283,0.204872,0.590434,0.03986,0.353687,0.621646,0.167907,0.978479,0.639922,0.291103,0.615974,0.135164,0.000470459,0.53419,0.80982,0.738844,0.764652,0.333794,0.824793,0.341539,0.893582,0.529907,0.964741,0.695969,0.0283634,0.924713,0.636574,0.586977,0.868716,0.0833902,0.334927,0.651551,0.937086,0.96088,0.478826,0.971179,0.29073,0.484002,|0.227534,0.204771,0.74283,0.0931843,0.0795082,0.373719,0.41267,0.561067,0.41809,0.197937,0.650758,0.0522804,0.796564,0.941637,0.113923,0.882747,0.794593,0.629298,0.00248188,0.570355,0.13089,0.442946,0.0470654,0.87967,0.156313,0.925115,0.230415,0.970848,0.977426,0.221329,0.224765,0.933355,0.0713015,0.512306,0.928684,0.550267,0.370118,0.953063,0.531568,0.9517,0.00395155,0.371069,0.733173,0.396678,0.709718,0.285484,0.729299,0.313459,0.749381,0.444434,0.684367,0.710923,0.199535,0.738433,0.875427,0.743023,0.355848,0.09952,0.924316,0.359312,0.387192,0.74913,0.847324,0.109652,0.323578,0.516867,0.718734,0.775942,0.103645,0.365258,0.873734,0.727191,0.85147,0.153666,0.797499,0.318761,0.42331,0.436523,0.701613,0.0996342,0.966693,0.265937,0.250875,0.0476416,0.595617,0.444822,0.467079,0.733643,0.772844,0.318479,0.854695,0.859231,0.844678,0.481382,0.293091,0.240606,0.240503,0.694787,0.196018,0.201305,0.744832,0.675089,0.94966,0.384842,0.0396691,0.186602,0.731817,0.197096,0.771356,0.324863,0.197334,0.759523,0.500741,0.760993,0.167247,0.246735,0.8438,0.6136,0.692097,0.844155,0.269685,0.38948,0.500275,0.886125,0.501771,0.146274,0.0279471,0.204851,0.194504,0.496961,0.329593,0.956825,0.759356,0.504669,0.318262,0.163365,0.103022,0.104024,0.327401,0.256676,0.763766,0.100478,0.563858,0.605657,0.65387,0.675213,0.550125,0.70458,0.585626,0.17948,0.651101,0.49211,0.379246,0.606933,0.940713,0.808366,0.272358,0.966141,0.549351,0.261214,0.080421,0.0819306,0.421715,0.304234,0.28165,0.945077,0.444542,0.0502154,0.215021,0.979486,0.289588,0.452737,0.199225,0.429538,0.179067,0.948395,0.240573,0.677701,0.0421587,0.229666,0.258143,0.514934,0.128169,0.177337,0.359784,0.878806,0.257917,0.780122,0.424235,0.946478,0.176819,0.197623,0.937998,0.19171,0.0581913,0.487707,0.454202,0.206277,0.260685,0.774608,0.962568,0.780285,0.605931,0.356895,0.280976,0.986301,0.341921,0.757163,0.822639,0.457329,0.944356,0.119212,0.847683,0.730645,0.974265,0.729854,0.525745,0.952554,0.4379,0.00241709,0.055926,0.391748,0.345433,0.356061,0.667394,0.63128,0.281722,0.197889,0.954831,0.404785,0.199552,0.554075,0.475532,0.117269,0.790322,0.983718,0.0835794,0.63591,0.0919831,0.30132,0.996063,0.263329,0.988219,0.353221,0.672582,0.735754,0.528541,0.361403,0.774965,0.0349841,0.502751,0.839521,0.678371,0.479375,0.389942,0.352208,0.686698,0.441701,0.0173433,0.815262,0.691097,0.0956622,0.906037,0.110479,0.390005,0.168469,0.00439513,0.3209,0.52151,0.144153,0.786214,0.447558,0.129672,0.105991,0.794374,0.53433,0.0201296,0.775527,0.0974838,0.689993,0.335201,0.561406,0.623818,0.311879,0.818468,0.613062,0.166319,0.00870812,0.544606,0.360666,0.573973,0.514827,0.895102,0.484682,0.846374,0.822907,0.445146,0.92194,0.905677,0.752254,0.414497,0.672868,0.248941,0.595355,0.506211,0.120131,0.567035,0.108413,0.543364,0.603758,0.361505,0.330307,0.986389,0.589919,0.375154,0.54486,0.253702,0.00738811,0.302557,0.588897,0.542967,0.298634,0.118138,0.14844,0.964015,0.318872,0.718868,0.92854,0.251582,0.429797,0.161177,0.311777,0.401567,0.448333,0.982798,0.170647,0.905875,0.992616,0.263621,0.584091,0.585679,0.471124,0.770859,0.912157,0.166776,0.832051,0.791227,0.440132,0.603523,0.178757,0.989507,0.786465,0.424078,0.830454,0.0909447,0.633143,0.188263,0.605957,0.617007,0.819265,0.0914159,0.464349,0.0582865,0.16453,0.97011,0.611526,0.00966036,0.576546,0.063961,0.0258618,0.712155,0.943384,0.691579,0.339522,0.729732,0.540303,0.722105,0.653489,0.910945,0.124924,0.151291,0.426508,0.864039,0.309341,0.399759,0.0273163,0.698795,0.0761688,0.847392,0.924602,0.251597,0.388597,0.35875,0.655742,0.32496,0.1019,0.890341,0.53682,0.627685,0.433122,0.201789,0.0048818,0.583286,0.94757,0.733509,0.746549,0.482444,0.98078,0.239877,0.998801,0.596153,0.129848,0.510256,0.871261,0.135723,0.874189,0.060948,0.456501,0.876169,0.603059,0.532928,0.19264,0.446233,0.0235779,0.902062,0.62096,0.587989,0.204432,0.81357,0.0224192,0.666224,0.378439,0.890586,0.0984587,0.991237,0.0490687,0.814553,0.483118,0.558111,0.711381,0.173301,0.211528,0.013475,0.311553,0.029072,0.536374,0.378369,0.165562,0.613059,0.843418,0.40067,0.182997,0.671144,0.249424,0.117624,0.746389,0.618117,0.87053,0.138465,0.230904,0.985823,0.929735,0.635194,0.172445,0.934826,0.198871,0.228561,0.501334,0.672436,0.7986,0.101381,0.617979,0.859495,0.436995,0.0117732,0.430152,0.169374,0.779127,0.641921,0.39225,0.836752,0.238824,0.660162,0.667632,0.652921,0.57836,0.303828,0.539999,0.417816,0.740507,0.176014,0.89065,0.796659,0.428964,0.644331,0.15109,0.341598,0.172739,0.00985873,0.650255,0.510002,0.282153,0.809236,0.124091,0.353732,0.466074,0.466011,0.159313,0.83235,0.660763,0.467464,0.53273,0.0624884,0.560218,0.655685,0.590639,0.27106,0.668547,0.314051,0.0921169,0.120179,0.422087,0.123959,0.935184,0.821346,0.58906,0.691005,0.678092,0.170605,0.599202,0.884897,0.806211,0.965629,0.535384,0.390157,0.0712053,0.381443,0.773974,0.302256,0.811759,0.29573,0.746039,0.0693048,0.619681,0.208668,0.219396,0.364912,0.831942,0.129968,0.937701,0.238704,0.456346,0.648625,0.417066,0.438519,0.119351,0.737485,0.91774,0.431414,0.814597,0.453091,0.691476,0.202316,0.177289,0.857933,0.613719,0.159676,0.742537,0.776797,0.36447,0.684669,0.170725,0.896668,0.918566,0.00693887,0.788378,0.679353,0.335683,0.22847,0.126736,0.0709066,0.435687,0.659003,0.900324,0.356504,0.83968,0.694507,0.640898,0.289575,0.0520662,0.26886,0.801851,0.501587,0.0408744,0.358764,0.991583,0.747717,0.431105,0.692966,0.75687,0.411721,0.945804,0.325439,0.685901,0.139444,0.145545,0.723312,0.537613,0.0635224,0.257152,0.951661,0.801229,0.894288,0.210787,0.125849,0.727697,0.455891,0.58413,0.0895704,0.751084,0.490066,0.0296178,0.660381,0.381467,0.698712,0.252744,0.364438,0.952087,0.689105,0.879709,0.998312,0.319971,0.328615,0.549001,0.853915,0.380402,0.666218,0.990879,0.380204,0.89965,0.561969,0.798159,0.674879,0.247688,0.940092,0.383044,0.451647,0.636829,0.360191,0.232121,0.397928,0.11889,0.347598,0.592598,0.313033,0.797917,0.65145,0.689678,0.813029,0.934631,0.798928,0.97753,0.352978,0.756517,0.231504,0.597173,0.922775,0.309851,0.862002,0.436714,0.994405,0.447496,0.615523,0.765757,0.534353,0.599867,0.68274,0.24271,0.586295,0.69506,0.44302,0.884078,0.263284,0.507263,0.948538,0.684432,0.735922,0.354391,0.684928,0.630147,0.570286,0.238767,0.876738,0.3523,0.288123,0.99837,0.852021,0.117635,0.301625,0.909518,0.205998,0.572293,0.19377,0.416453,0.998508,0.576266,0.37865,0.630961,0.803256,0.117823,0.577213,0.761935,0.804572,0.245868,0.0484855,0.393486,0.719465,0.730667,0.804356,0.870002,0.347563,0.709666,0.750441,0.584378,0.784351,0.735643,0.697443,0.437315,0.972348,0.612383,0.668648,0.489771,0.00160754,0.772834,0.251962,0.108273,0.795521,0.403987,0.34556,0.634386,0.753477,0.660652,0.577021,0.730032,0.336613,0.893598,0.400628,0.247,0.384998,0.954673,0.987325,0.429727,0.499819,0.863389,0.748628,0.879148,0.255521,0.150251,0.212014,0.349107,0.863003,0.354154,0.960271,0.573744,0.478088,0.414573,0.0838165,0.261693,0.855741,0.475533,0.85173,0.226928,0.428009,0.669098,0.370105,0.589343,0.413214,0.600808,0.529249,0.0840122,0.613689,0.0427251,0.333689,0.132335,0.976524,0.179033,0.0704314,0.026238,0.934563,0.0236355,0.150731,0.347107,0.647032,0.520046,0.946644,0.100079,0.961351,0.442912,0.800705,0.537076,0.771535,0.754087,0.863339,0.69477,0.157443,0.696664,0.395031,0.157262,0.502405,0.840378,0.0310291,0.217056,0.270529,0.853368,0.790872,0.288524,0.279519,0.60787,0.240674,0.835182,0.886379,0.421923,0.591912,0.621562,0.539049,0.33031,0.496557,0.236682,0.16687,0.915225,0.838217,0.988527,0.154924,0.0252505,0.0574729,0.947275,0.773942,0.299078,0.086951,0.529821,0.318946,0.129452,0.102892,0.819523,0.12548,0.442853,0.630373,0.429751,0.95994,0.239804,0.700694,0.0130212,0.185172,0.934486,0.371549,0.52585,0.588705,0.169585,0.867475,0.166237,0.0250537,0.377593,0.65929,0.54676,0.633751,0.155363,0.45792,0.811868,0.663027,0.074945,0.496596,0.647982,0.432741,0.773801,0.405447,0.0713122,0.270303,0.0787362,0.179704,0.808171,0.901464,0.978947,0.511823,0.251563,0.57651,0.334927,0.378005,0.930786,0.330225,0.628832,0.231453,0.242074,0.414962,0.283237,0.543479,0.166638,0.113492,0.31595,0.672346,0.320765,0.491841,0.587752,0.35986,0.826037,0.917739,0.34088,0.911799,0.402459,0.99999,0.65142,0.387818,0.732716,0.682511,0.661713,0.934204,0.934605,0.277898,0.415342,0.782321,0.706645,0.938517,0.404943,0.706675,0.493745,0.348787,0.9294,0.85589,0.114476,0.845344,0.577259,0.731967,0.236611,0.384573,0.96397,0.904261,0.650744,0.340532,0.524308,0.517641,0.298857,0.00867039,0.318561,0.631178,0.122912,0.13817,0.314935,0.38317,0.0451404,0.635037,0.322372,0.0815018,0.762741,0.0423967,0.21174,0.0413041,0.140255,0.147469,0.267187,0.0587075,0.164195,0.336783,0.31614,0.374174,0.948391,0.0923668,0.0395198,0.552419,0.211641,0.563121,0.331267,0.608381,0.210808,0.447503,0.150245,0.339215,0.83388,0.180518,0.582138,0.519999,0.787034,0.861528,0.18996,0.151262,0.983775,0.573801,0.462121,0.641838,0.803998,0.846896,0.0287519,0.727132,0.577394,0.449366,0.362924,0.717357,0.895417,0.419769,0.990844,0.684946,0.124109,|0.647653,0.357853,0.52484,0.484069,0.334116,0.401947,0.266748,0.778509,0.798201,0.180506,0.123202,0.239988,0.318265,0.444895,0.803903,0.901758,0.58181,0.319447,0.500027,0.583394,0.344592,0.645239,0.449089,0.414238,0.662534,0.684405,0.216077,0.197785,0.450229,0.262971,0.659685,0.971367,0.523433,0.743283,0.762257,0.46007,0.589299,0.323044,0.762828,0.135786,0.651069,0.516469,0.813631,0.97043,0.629278,0.953716,0.9243,0.796749,0.198684,0.254604,0.870738,0.974189,0.949047,0.848018,0.644327,0.365524,0.138335,0.393495,0.761836,0.204374,0.000900149,0.927242,0.560092,0.296418,0.536369,0.0371702,0.255047,0.389178,0.52849,0.24356,0.546012,0.124969,0.765122,0.230098,0.621083,0.720413,0.891838,0.466444,0.910603,0.33792,0.843732,0.0942792,0.99899,0.305511,0.145261,0.0256641,0.43058,0.76885,0.922701,0.0760597,0.6716,0.680665,0.437445,0.754794,0.946402,0.588977,0.113787,0.213065,0.488429,0.826462,0.365951,0.504868,0.121341,0.0302895,0.875648,0.0457786,0.208911,0.996616,0.264989,0.759603,0.642706,0.357108,0.438077,0.789332,0.0288032,0.310756,0.92596,0.521178,0.550211,0.691394,0.683586,0.367591,0.794736,0.683365,0.205214,0.0358593,0.0832825,0.005656,0.0369287,0.738863,0.245065,0.621792,0.505668,0.876158,0.774132,0.604461,0.0458967,0.168763,0.928125,0.30224,0.412305,0.538828,0.314674,0.00238752,0.975876,0.616585,0.299827,0.837451,0.384576,0.672747,0.837643,0.979377,0.287666,0.939711,0.405003,0.0283033,0.578971,0.685722,0.29677,0.395556,0.749481,0.87795,0.346966,0.574891,0.936899,0.279013,0.590097,0.661967,0.59071,0.897282,0.639404,0.19543,0.745917,0.494411,0.143911,0.357896,0.033284,0.80674,0.427523,0.91006,0.577858,0.285127,0.667103,0.0390745,0.713757,0.363852,0.33357,0.991048,0.712998,0.491495,0.812047,0.904941,0.033906,0.198966,0.24953,0.594028,0.788456,0.179585,0.529103,0.489098,0.0917595,0.633717,0.57425,0.896959,0.977592,0.624216,0.680512,0.549127,0.532285,0.325758,0.597784,0.0432555,0.00709289,0.849565,0.274929,0.066025,0.0482452,0.876422,0.6346,0.708344,0.66086,0.482921,0.00983143,0.454973,0.573083,0.636339,0.373307,0.117759,0.947938,0.0402027,0.878661,0.285255,0.463982,0.0393072,0.0304143,0.834973,0.752371,0.197914,0.941883,0.158873,0.0959048,0.947102,0.539815,0.724073,0.0327181,0.57065,0.252953,0.495832,0.557844,0.566274,0.313956,0.0352563,0.0854822,0.984944,0.0805889,0.634993,0.940364,0.254108,0.0333593,0.535732,0.0462805,0.478781,0.501715,0.193675,0.961705,0.326195,0.128587,0.292706,0.103882,0.174785,0.884775,0.790758,0.611855,0.987804,0.546458,0.0547629,0.00415111,0.210075,0.322686,0.113711,0.140159,0.463976,0.309531,0.621891,0.216333,0.696015,0.830658,0.482991,0.509679,0.389406,0.183466,0.11802,0.482608,0.195724,0.0584137,0.150063,0.857087,0.510638,0.44928,0.761443,0.168374,0.916433,0.48955,0.548021,0.578821,0.568801,0.681121,0.680545,0.650499,0.441313,0.183416,0.668295,0.708562,0.632219,0.92143,0.994385,0.905226,0.320378,0.0885162,0.634013,0.241402,0.493231,0.956128,0.441402,0.944023,0.531808,0.277991,0.648259,0.429735,0.790675,0.0975684,0.754168,0.473141,0.295437,0.598126,0.943066,0.611358,0.0750269,0.198318,0.832181,0.837292,0.651195,0.512346,0.806983,0.362357,0.797077,0.0993888,0.76548,0.40578,0.563885,0.825728,0.655534,0.879541,0.125112,0.459452,0.504003,0.970636,0.00210267,0.215295,0.638276,0.7313,0.211041,0.680686,0.202288,0.0882114,0.120058,0.782054,0.148879,0.529189,0.968078,0.342536,0.663268,0.0252182,0.788454,0.973656,0.252725,0.595988,0.536353,0.994581,0.715054,0.515701,0.741719,0.724245,0.0148526,0.255967,0.0812307,0.361065,0.627931,0.342573,0.469843,0.90407,0.336585,0.806837,0.560112,0.383187,0.293367,0.994513,0.394121,0.0418758,0.0687172,0.832819,0.184753,0.876215,0.973922,0.105592,0.926108,0.954594,0.472546,0.476189,0.03944,0.783679,0.883847,0.146669,0.644967,0.898784,0.803724,0.00136572,0.735468,0.978052,0.379338,0.142511,0.407317,0.629611,0.260783,0.335876,0.054015,0.918523,0.39427,0.928576,0.972406,0.847094,0.184131,0.262242,0.38242,0.259244,0.0589966,0.177575,0.31148,0.594569,0.373024,0.819248,0.47518,0.754056,0.490531,0.848349,0.299375,0.0378496,0.823884,0.638764,0.488336,0.843097,0.428419,0.339914,0.979175,0.419668,0.63037,0.359028,0.590486,0.496159,0.605719,0.0206594,0.610185,0.515988,0.0171278,0.702815,0.559398,0.5244,0.933173,0.911317,0.585592,0.441287,0.62303,0.508417,0.313507,0.337331,0.970257,0.829473,0.989236,0.630288,0.895393,0.820946,0.247524,0.235299,0.0297337,0.658933,0.671,0.236259,0.903079,0.520389,0.0308963,0.285673,0.474231,0.422835,0.982936,0.0152968,0.688982,0.0957234,0.815867,0.197951,0.974474,0.947589,0.164469,0.986976,0.588926,0.483005,0.205373,0.178688,0.0095616,0.171861,0.767948,0.101464,0.968446,0.407426,0.854067,0.0656131,0.710794,0.401421,0.435704,0.320683,0.253961,0.302523,0.242307,0.460717,0.809641,0.908639,0.598363,0.817088,0.00515616,0.372344,0.823929,0.842556,0.0827271,0.967517,0.544467,0.929011,0.210789,0.97078,0.639811,0.133055,0.158695,0.301956,0.216792,0.959448,0.0605941,0.899602,0.311675,0.0428125,0.596407,0.109589,0.454398,0.419821,0.782503,0.840034,0.294002,0.911637,0.865905,0.182427,0.202134,0.333427,0.750527,0.636194,0.634517,0.817327,0.487369,0.929158,0.496929,0.20073,0.700776,0.131881,0.344372,0.07572,0.432294,0.772879,0.728336,0.74274,0.968336,0.524196,0.772553,0.85438,0.515806,0.405042,0.917272,0.958052,0.889152,0.000654161,0.0506234,0.367382,0.323855,0.945275,0.45306,0.0542381,0.924634,0.815519,0.87645,0.834574,0.182879,0.635431,0.865376,0.0929754,0.240889,0.310731,0.708737,0.892748,0.594599,0.172055,0.441977,0.937155,0.45817,0.653969,0.528719,0.82042,0.30535,0.0116799,0.753675,0.239113,0.727519,0.601633,0.284841,0.160558,0.740925,0.638557,0.984326,0.419506,0.216919,0.61422,0.676601,0.183503,0.836499,0.453027,0.00809103,0.0637404,0.370514,0.0902727,0.464423,0.826075,0.248617,0.374622,0.163659,0.53454,0.339014,0.358276,0.730067,0.0511625,0.180486,0.236992,0.767885,0.116716,0.976131,0.0490808,0.156339,0.388411,0.821805,0.868627,0.631049,0.383101,0.727157,0.799519,0.31537,0.477448,0.77193,0.96513,0.251844,0.402793,0.655891,0.636893,0.582805,0.223304,0.196465,0.0775412,0.567943,0.138088,0.854708,0.448744,0.352865,0.810535,0.691833,0.274162,0.760306,0.682393,0.364267,0.565382,0.717047,0.989362,0.192612,0.0738807,0.623108,0.702027,0.537082,0.978409,0.232772,0.823263,0.570618,0.783191,0.91348,0.0767179,0.187707,0.187411,0.976746,0.575168,0.354179,0.0661787,0.257813,0.0822492,0.359747,0.80023,0.557332,0.488057,0.973714,0.603711,0.944791,0.30643,0.187104,0.250863,0.900817,0.260695,0.341801,0.362841,0.627542,0.239666,0.298519,0.933839,0.561169,0.642583,0.863334,0.716874,0.772418,0.67072,0.483777,0.52733,0.591185,0.245439,0.907711,0.35662,0.869877,0.931975,0.532899,0.531859,0.58928,0.0354033,0.32043,0.95513,0.743072,0.340823,0.707627,0.606776,0.822683,0.607843,0.926722,0.271776,0.804734,0.973958,0.236127,0.825759,0.762583,0.36608,0.867968,0.366831,0.784439,0.415283,0.250495,0.257268,0.589795,0.530066,0.848586,0.542469,0.0416034,0.599181,0.282124,0.540941,0.934677,0.646731,0.41729,0.341652,0.272221,0.981469,0.180392,0.845045,0.146702,0.743171,0.259202,0.0906387,0.2627,0.168788,0.0524872,0.176454,0.149548,0.72951,0.0078243,0.249762,0.941631,0.345157,0.527913,0.086589,0.0293208,0.148707,0.500444,0.394832,0.197634,0.236489,0.534986,0.937339,0.00809127,0.350707,0.278817,0.829386,0.793626,0.307067,0.821284,0.168063,0.789451,0.690195,0.950114,0.9909,0.541211,0.71969,0.0478314,0.0507579,0.0489821,0.789763,0.365042,0.375027,0.188845,0.625898,0.691925,0.268888,0.421146,0.517059,0.734238,0.177025,0.329669,0.161182,0.703159,0.727623,0.213226,0.847479,0.253838,0.595714,0.364693,0.542397,0.320773,0.811116,0.148611,0.189608,0.193534,0.932,0.0170493,0.255776,0.824077,0.508656,0.564877,0.197261,0.458754,0.951572,0.10485,0.112679,0.42905,0.0603203,0.706627,0.624974,0.244844,0.340565,0.203763,0.510298,0.343031,0.379977,0.874837,0.193399,0.346754,0.893484,0.686044,0.463873,0.950453,0.151372,0.297551,0.327963,0.439792,0.438369,0.17199,0.0641077,0.833992,0.633579,0.0881425,0.538776,0.294714,0.727884,0.468712,0.35817,0.12745,0.851262,0.396584,0.476967,0.582974,0.413347,0.192364,0.685608,0.865837,0.0642478,0.203602,0.517391,0.330181,0.786042,0.824751,0.0885298,0.836311,0.91019,0.268096,0.238742,0.0687926,0.319927,0.495429,0.76739,0.959528,0.371907,0.335638,0.768221,0.643702,0.366866,0.0344083,0.469521,0.326596,0.55612,0.690228,0.263424,0.766935,0.099669,0.662505,0.810506,0.882107,0.650893,0.199722,0.181092,0.447355,0.408721,0.0394853,0.723498,0.00253057,0.87035,0.114194,0.384274,0.206846,0.550167,0.624763,0.494989,0.450011,0.714773,0.728528,0.448547,0.276722,0.861672,0.532223,0.654075,0.0864416,0.174307,0.162297,0.989849,0.207405,0.651739,0.227179,0.505469,0.658831,0.535485,0.971824,0.659514,0.235591,0.202369,0.603822,0.318864,0.839281,0.677628,0.693664,0.301747,0.131273,0.140002,0.923695,0.996139,0.389094,0.575664,0.0791607,0.0877959,0.447645,0.970432,0.7694,0.474182,0.136518,0.704681,0.486452,0.573457,0.885317,0.301489,0.299285,0.115107,0.594703,0.665917,0.331965,0.0231772,0.162689,0.45051,0.903866,0.248716,0.0807149,|0.311121,0.610488,0.352053,0.722798,0.0826541,0.590831,0.786988,0.927393,0.675806,0.222119,0.592874,0.326202,0.478101,0.210333,0.901563,0.82401,0.795057,0.502289,0.128901,0.608738,0.507684,0.854335,0.524928,0.621446,0.648316,0.89491,0.286109,0.820179,0.677738,0.502651,0.723607,0.852102,0.712764,0.286397,0.48858,0.377984,0.0678582,0.467288,0.668911,0.713583,0.592804,0.662484,0.500084,0.325754,0.44285,0.92103,0.0811754,0.458338,0.244552,0.366404,0.970907,0.0565457,0.47423,0.702926,0.367108,0.598257,0.29469,0.913867,0.161354,0.983041,0.843505,0.396506,0.448718,0.590292,0.13871,0.0429406,0.876152,0.597898,0.697874,0.124017,0.516418,0.829856,0.205125,0.3043,0.523467,0.582775,0.842164,0.427361,0.0313491,0.0747432,0.58967,0.295838,0.522748,0.233177,0.293326,0.979979,0.942561,0.0844392,0.245564,0.35958,0.331122,0.255273,0.994002,0.764765,0.163302,0.991094,0.674653,0.253326,0.146833,0.712189,0.0195291,0.610865,0.0696989,0.328634,0.514053,0.281513,0.219751,0.0892119,0.506767,0.198935,0.135642,0.696171,0.183994,0.942216,0.301565,0.643929,0.662232,0.637402,0.679651,0.424123,0.604201,0.411209,0.411486,0.703278,0.396717,0.578254,0.181284,0.938075,0.299986,0.276942,0.169652,0.208013,0.0998302,0.0529009,0.883564,0.748385,0.294813,0.460627,0.444687,0.840042,0.283832,0.595615,0.426328,0.0258418,0.529229,0.442914,0.306755,0.701242,0.453327,0.621362,0.027267,0.570858,0.33052,0.438634,0.760825,0.148254,0.739221,0.335859,0.978298,0.297086,0.828085,0.888331,0.648118,0.0273274,0.857252,0.128099,0.817955,0.875761,0.104831,0.56956,0.341312,0.420058,0.886521,0.0485516,0.534502,0.0519035,0.548758,0.0856771,0.938021,0.341219,0.804457,0.565436,0.67039,0.958832,0.869473,0.12771,0.630181,0.370306,0.0664535,0.199607,0.874754,0.385761,0.813557,0.727846,0.412539,0.394908,0.577263,0.118369,0.63457,0.0730836,0.381068,0.887903,0.627552,0.555519,0.644922,0.366756,0.487695,0.0112585,0.583873,0.120602,0.97626,0.818695,0.586605,0.960728,0.643721,0.874176,0.456551,0.926743,0.548206,0.801301,0.267934,0.428106,0.471648,0.983883,0.0825625,0.222858,0.872605,0.536337,0.432492,0.881018,0.662894,0.338197,0.406829,0.585892,0.239586,0.0737873,0.232324,0.877063,0.926116,0.781842,0.0904458,0.986568,0.540598,0.888187,0.103055,0.433313,0.320543,0.679526,0.86763,0.0215256,0.020598,0.220749,0.355875,0.392184,0.817555,0.141016,0.987137,0.895335,0.454939,0.540838,0.0652428,0.451395,0.0531942,0.826398,0.832088,0.511149,0.697302,0.0227388,0.791099,0.42434,0.746129,0.994098,0.221563,0.771229,0.214054,0.570593,0.872634,0.848766,0.644967,0.365603,0.276969,0.574711,0.444991,0.46529,0.233144,0.85241,0.221404,0.868874,0.113659,0.943906,0.30512,0.235414,0.520309,0.734031,0.232248,0.79658,0.0847976,0.0433432,0.121063,0.0850919,0.0992841,0.361698,0.831042,0.542763,0.243753,0.59122,0.515973,0.780041,0.931034,0.5423,0.973858,0.89055,0.568578,0.764364,0.24624,0.709124,0.879634,0.070228,0.870796,0.205527,0.863885,0.266004,0.398249,0.618412,0.200034,0.148068,0.63627,0.594531,0.885256,0.734086,0.115167,0.396643,0.576298,0.346958,0.709757,0.18041,0.95387,0.0524104,0.643536,0.44318,0.386212,0.560215,0.931101,0.724362,0.59152,0.743558,0.906175,0.275345,0.328631,0.425228,0.554129,0.852456,0.00267732,0.463184,0.396568,0.444831,0.663576,0.161332,0.00953525,0.693339,0.522927,0.967762,0.118655,0.870495,0.0935538,0.21762,0.0760686,0.222359,0.14508,0.240484,0.866082,0.441842,0.536453,0.847925,0.960528,0.542903,0.260338,0.876444,0.597394,0.291449,0.765573,0.0339364,0.772509,0.51948,0.483059,0.606956,0.641822,0.755028,0.231684,0.236875,0.165459,0.341774,0.249657,0.970922,0.32076,0.241733,0.62724,0.317466,0.806871,0.176742,0.415236,0.255641,0.114829,0.281315,0.423063,0.397775,0.763567,0.902525,0.241943,0.0248361,0.710296,0.0959585,0.692379,0.85503,0.897515,0.88868,0.106881,0.0517832,0.752965,0.433867,0.736709,0.102826,0.497193,0.0261732,0.214709,0.879398,0.0897241,0.977156,0.0735828,0.940504,0.00153416,0.251434,0.869266,0.145219,0.149789,0.808719,0.847628,0.103199,0.234375,0.564696,0.620095,0.951999,0.284769,0.441714,0.208697,0.0827538,0.363533,0.326612,0.288718,0.243822,0.755439,0.569084,0.634543,0.266726,0.867431,0.999604,0.562275,0.659039,0.949689,0.58187,0.577576,0.616365,0.118103,0.199905,0.461889,0.122144,0.535892,0.607525,0.996079,0.350191,0.152516,0.193746,0.355289,0.417217,0.83509,0.767332,0.873613,0.298712,0.129143,0.17536,0.0521238,0.0730222,0.0512045,0.618231,0.25935,0.560903,0.982348,0.238381,0.472071,0.697737,0.445238,0.267957,0.453395,0.173833,0.976907,0.211805,0.300861,0.866889,0.743465,0.720581,0.72507,0.318188,0.389686,0.569475,0.988564,0.438259,0.452076,0.378767,0.0183342,0.706321,0.675916,0.877904,0.959841,0.746171,0.69812,0.371248,0.61754,0.430696,0.0208599,0.870904,0.499436,0.820827,0.781353,0.304374,0.292669,0.38016,0.062278,0.107031,0.638058,0.853469,0.983664,0.210548,0.358001,0.692646,0.934352,0.279831,0.505976,0.11703,0.393249,0.520116,0.0726371,0.936196,0.583447,0.548292,0.548705,0.7647,0.954477,0.747288,0.586873,0.0887737,0.994497,0.388087,0.976468,0.588051,0.459176,0.132322,0.834991,0.205708,0.785466,0.861664,0.678564,0.540353,0.448101,0.160794,0.574396,0.648655,0.862198,0.597802,0.767758,0.988216,0.0719022,0.209084,0.390427,0.570442,0.552733,0.876158,0.157071,0.0187896,0.786644,0.805832,0.450132,0.265956,0.466196,0.434225,0.776194,0.38893,0.0807087,0.012391,0.0586295,0.756842,0.441008,0.039968,0.75433,0.955583,0.947194,0.701002,0.661238,0.0451953,0.117435,0.357556,0.870913,0.274783,0.641696,0.588731,0.250607,0.68121,0.817657,0.552919,0.824293,0.581809,0.661851,0.470046,0.522138,0.441698,0.752429,0.92013,0.1999,0.968139,0.33607,0.664641,0.946187,0.287533,0.425071,0.841105,0.534999,0.799083,0.100167,0.0527664,0.593293,0.977872,0.402686,0.387724,0.615109,0.740239,0.326267,0.524252,0.360729,0.574425,0.615671,0.333477,0.685465,0.394026,0.33725,0.770576,0.290392,0.0733134,0.208151,0.17697,0.161096,0.9374,0.80404,0.243006,0.514293,0.688893,0.188247,0.58624,0.0641377,0.251918,0.345547,0.958811,0.295959,0.109272,0.0534074,0.884428,0.840047,0.756236,0.56051,0.614476,0.468101,0.860458,0.736636,0.701822,0.248948,0.143779,0.845672,0.207302,0.860998,0.690972,0.576629,0.242955,0.240993,0.958764,0.48657,0.00528419,0.072561,0.884703,0.782538,0.373182,0.609806,0.152968,0.708209,0.28772,0.237007,0.447436,0.51544,0.131925,0.520829,0.962174,0.97782,0.671856,0.816711,0.324412,0.53764,0.699097,0.228157,0.309124,0.236286,0.947141,0.0898887,0.226078,0.862403,0.673422,0.0618733,0.805451,0.910873,0.0525872,0.222541,0.528693,0.97383,0.485641,0.664739,0.833562,0.949053,0.907888,0.565573,0.491505,0.377491,0.0627675,0.531303,0.885146,0.57152,0.59964,0.720658,0.747706,0.927503,0.0901368,0.954348,0.179019,0.517536,0.57055,0.2096,0.598504,0.913068,0.779978,0.7531,0.196189,0.220603,0.344118,0.127284,0.89708,0.771744,0.50362,0.434568,0.598533,0.129068,0.385787,0.238167,0.0672725,0.258771,0.642352,0.806824,0.00914681,0.203179,0.880009,0.967982,0.508271,0.052773,0.111695,0.193574,0.860057,0.746132,0.273719,0.705697,0.424449,0.427559,0.837618,0.372665,0.881841,0.550088,0.691445,0.669406,0.878317,0.0535476,0.293637,0.656962,0.671371,0.432691,0.310653,0.957547,0.871991,0.444776,0.630965,0.381704,0.519606,0.712462,0.836034,0.56574,0.717206,0.966888,0.696081,0.218365,0.685879,0.330568,0.972567,0.362386,0.875195,0.297179,0.992095,0.392584,0.168076,0.24058,0.964822,0.76122,0.00497073,0.83732,0.300561,0.419348,0.147236,0.47952,0.547032,0.379385,0.00538915,0.117581,0.38345,0.902194,0.0242531,0.011685,0.786125,0.592023,0.44444,0.895491,0.369801,0.370128,0.507476,0.248339,0.0446837,0.703333,0.373777,0.0274678,0.580065,0.0832031,0.0287759,0.00381833,0.355653,0.253402,0.993826,0.854132,0.311442,0.290895,0.202537,0.285995,0.405372,0.611534,0.140622,0.848,0.220627,0.735136,0.839025,0.121479,0.50578,0.0206057,0.424752,0.366555,0.912272,0.583729,0.261797,0.88422,0.830129,0.408367,0.381097,0.475595,0.442645,0.652477,0.116232,0.370683,0.765144,0.385401,0.37532,0.541322,0.810201,0.809271,0.779268,0.434438,0.191952,0.767835,0.9252,0.0947533,0.607543,0.819206,0.531145,0.750422,0.674426,0.657375,0.35053,0.328495,0.831884,0.159869,0.192296,0.175404,0.289235,0.00115913,0.291556,0.084372,0.792361,0.149771,0.934263,0.876183,0.565691,0.242424,0.305084,0.0681983,0.913018,0.212882,0.945282,0.357223,0.701979,0.880056,0.357181,0.629056,0.569435,0.8161,0.709857,0.800839,0.0862612,0.645618,0.862626,0.567912,0.831943,0.119932,0.570666,0.712634,0.529846,0.228481,0.806275,0.271439,0.752748,0.846825,0.576641,0.273113,0.902816,0.502578,0.00593567,0.46146,0.998246,0.150185,0.308426,0.805009,0.451623,0.179107,0.268263,0.444217,0.000410199,0.0946561,0.575938,0.642868,0.854038,0.672343,0.0924909,0.285871,0.616624,0.909799,0.465636,0.666246,0.946802,0.126422,0.801396,0.224503,0.620535,0.3666,0.486863,0.0395096,0.290014,0.761616,0.182828,0.949697,0.467297,0.200116,0.733787,0.89788,0.777218,0.0324992,0.768234,0.480458,0.147712,0.543765,0.978586,0.988531,0.822603,0.931937,0.478599,0.548597,0.820771,0.795383,0.311522,0.0222607,0.376406,0.159458,0.697711,0.08595,0.387684,|0.796515,0.0163678,0.864812,0.0236629,0.163233,0.621401,0.258736,0.833132,0.641526,0.807939,0.979301,0.125253,0.142956,0.228875,0.260292,0.717572,0.883572,0.676806,0.376989,0.150652,0.256963,0.497157,0.264456,0.182151,0.687729,0.728457,0.957487,0.58058,0.0913529,0.295777,0.461527,0.400944,0.288553,0.0614734,0.493382,0.677739,0.120641,0.377688,0.0918015,0.926227,0.251964,0.439011,0.245993,0.00918192,0.345167,0.248537,0.00999153,0.603448,0.421497,0.710682,0.0261008,0.958335,0.586232,0.828859,0.302179,0.789962,0.87581,0.0506335,0.808975,0.476114,0.639426,0.47682,0.745124,0.0263677,0.963734,0.933488,0.4178,0.431133,0.919025,0.358194,0.795656,0.716086,0.726434,0.875494,0.00177181,0.866663,0.849764,0.108093,0.149158,0.456759,0.394196,0.82044,0.547549,0.553698,0.634396,0.411815,0.220773,0.269826,0.95435,0.7977,0.68853,0.507847,0.0574219,0.849583,0.885161,0.708502,0.560445,0.678018,0.607881,0.95226,0.569565,0.538851,0.271561,0.386705,0.586608,0.268228,0.803739,0.501843,0.21405,0.435288,0.557411,0.0955567,0.430633,0.104766,0.228152,0.774942,0.0675278,0.604978,0.925596,0.770613,0.194001,0.618679,0.0428945,0.483055,0.875874,0.33647,0.715893,0.729156,0.654974,0.983334,0.130704,0.966668,0.422303,0.282906,0.583973,0.594359,0.0673574,0.985621,0.953693,0.0469492,0.956574,0.68331,0.768277,0.436802,0.736525,0.127461,0.688992,0.0230476,0.674134,0.573504,0.878732,0.990264,0.709754,0.685272,0.180537,0.104893,0.416263,0.807396,0.952919,0.864715,0.823886,0.158894,0.977003,0.83141,0.161074,0.859246,0.373211,0.878573,0.127334,0.0860215,0.19199,0.443327,0.63014,0.384807,0.920152,0.472886,0.706408,0.182768,0.473246,0.615177,0.231736,0.239737,0.3357,0.849404,0.385903,0.20753,0.0809762,0.00446779,0.353384,0.574434,0.116666,0.122239,0.330925,0.221446,0.920634,0.529208,0.911566,0.0648285,0.646257,0.809191,0.457127,0.0184386,0.774236,0.477111,0.106423,0.424693,0.144433,0.943831,0.577514,0.0316077,0.427516,0.833674,0.454425,0.723617,0.788461,0.713097,0.158567,0.536257,0.225835,0.293157,0.604459,0.963403,0.161292,0.750764,0.346806,0.110917,0.855299,0.87528,0.428042,0.727314,0.00903916,0.928814,0.364631,0.343577,0.14114,0.413094,0.933647,0.824079,0.180446,0.105913,0.133982,0.140626,0.598696,0.33154,0.676089,0.557464,0.464649,0.951207,0.832107,0.273212,0.101447,0.576733,0.383928,0.699016,0.903961,0.806791,0.502693,0.461389,0.426577,0.677188,0.392611,0.748388,0.788057,0.0927297,0.830158,0.258696,0.387093,0.631815,0.393637,0.330722,0.0347552,0.727569,0.211342,0.219588,0.409092,0.601437,0.351783,0.214513,0.360546,0.402534,0.739587,0.0742999,0.847796,0.13048,0.499633,0.234879,0.550495,0.129552,0.9052,0.780918,0.454328,0.0122752,0.159661,0.953227,0.908388,0.542769,0.8278,0.0711301,0.963158,0.0140991,0.92212,0.662335,0.622726,0.338044,0.468812,0.226707,0.441724,0.960831,0.418184,0.797382,0.544325,0.456199,0.799701,0.558311,0.708285,0.480056,0.173158,0.955308,0.273629,0.635592,0.98934,0.788265,0.817899,0.60867,0.145389,0.507838,0.880368,0.270812,0.268336,0.179357,0.497439,0.263549,0.259448,0.888071,0.628441,0.208828,0.400608,0.163032,0.142422,0.309495,0.0427947,0.385804,0.443642,0.970413,0.324961,0.850418,0.406782,0.0513999,0.605762,0.0747202,0.576341,0.0737321,0.00696164,0.843279,0.471755,0.0855796,0.257058,0.967448,0.463436,0.137449,0.400431,0.734903,0.206839,0.880259,0.257505,0.383281,0.46741,0.956354,0.38809,0.104574,0.476891,0.748917,0.232519,0.453104,0.638923,0.309084,0.355896,0.477,0.111307,0.632122,0.798293,0.389665,0.359128,0.30421,0.305725,0.835927,0.0877691,0.612399,0.0400086,0.0200964,0.0281903,0.764415,0.905671,0.435852,0.795137,0.99938,0.294833,0.476415,0.230173,0.649075,0.273688,0.218024,0.72214,0.567144,0.261441,0.353397,0.880487,0.36415,0.644501,0.894561,0.938274,0.69313,0.386675,0.149313,0.658018,0.495795,0.6162,0.0309361,0.474851,0.607629,0.822661,0.674765,0.0637859,0.649713,0.699623,0.911571,0.889759,0.179157,0.658478,0.500826,0.0151463,0.298556,0.981571,0.329087,0.421027,0.385983,0.610895,0.0209425,0.333031,0.6903,0.514659,0.0028742,0.857202,0.248529,0.00177175,0.806147,0.0633564,0.765606,0.463984,0.887497,0.0527578,0.715017,0.484849,0.68883,0.103046,0.361373,0.97783,0.817998,0.795939,0.191106,0.347928,0.386024,0.883395,0.508682,0.463935,0.299375,0.415671,0.0397763,0.532971,0.428195,0.0208482,0.713468,0.434226,0.103564,0.180026,0.786183,0.172335,0.667254,0.0887511,0.0397905,0.0996397,0.991811,0.707399,0.858305,0.786066,0.611009,0.109056,0.49438,0.308472,0.274334,0.570056,0.249687,0.527902,0.275501,0.415929,0.201255,0.692458,0.242817,0.566014,0.151925,0.207826,0.9185,0.123056,0.569878,0.278332,0.647901,0.801617,0.0328455,0.598104,0.203036,0.432793,0.984299,0.606517,0.776246,0.624494,0.553523,0.85412,0.15478,0.229735,0.118148,0.0872403,0.612427,0.0113167,0.259542,0.201845,0.385217,0.49042,0.606572,0.838248,0.58656,0.60346,0.729628,0.794704,0.35407,0.411898,0.0607927,0.236414,0.85833,0.452331,0.73687,0.016822,0.974757,0.264603,0.33937,0.0306664,0.897891,0.264019,0.228016,0.710211,0.369247,0.785334,0.690044,0.392404,0.258178,0.0873976,0.202247,0.99604,0.445082,0.31785,0.88591,0.984501,0.316447,0.94071,0.38457,0.494993,0.837128,0.928642,0.660542,0.131545,0.126637,0.238032,0.0655368,0.214106,0.0619217,0.351555,0.429136,0.858638,0.694577,0.022014,0.094997,0.139039,0.209779,0.684652,0.701422,0.181994,0.561855,0.191625,0.646862,0.995506,0.818584,0.933032,0.544392,0.261497,0.56248,0.928023,0.084805,0.292608,0.473499,0.600982,0.304638,0.155875,0.360651,0.916167,0.601668,0.891739,0.544352,0.354972,0.964619,0.0375239,0.024131,0.82248,0.706381,0.86189,0.684054,0.211309,0.59206,0.41262,0.663045,0.00861204,0.334885,0.0191277,0.893249,0.420956,0.461874,0.0600814,0.358713,0.890258,0.956012,0.317617,0.169288,0.649119,0.371837,0.403436,0.862069,0.851631,0.848773,0.252295,0.130809,0.782075,0.181887,0.485339,0.0610638,0.272546,0.60513,0.897483,0.372464,0.665,0.901449,0.512083,0.708089,0.145087,0.808623,0.79882,0.349581,0.135722,0.156393,0.798128,0.216595,0.429567,0.125929,0.263372,0.029966,0.427514,0.939617,0.567603,0.960876,0.919602,0.5042,0.545776,0.50552,0.44634,0.411386,0.179177,0.433547,0.559674,0.536022,0.472701,0.66927,0.74557,0.908446,0.134079,0.628044,0.25127,0.996303,0.489369,0.913985,0.601364,0.770444,0.683344,0.0902579,0.628237,0.845555,0.148669,0.967024,0.183699,0.138415,0.812767,0.803562,0.594819,0.805985,0.536567,0.0952656,0.010802,0.696765,0.108772,0.923398,0.213539,0.0874672,0.380112,0.711698,0.253941,0.372606,0.647895,0.93006,0.967117,0.636952,0.231103,0.558494,0.0397453,0.906236,0.0556458,0.215528,0.630905,0.447684,0.390387,0.523503,0.844206,0.481641,0.233145,0.0530125,0.283854,0.406968,0.242454,0.752562,0.433887,0.51685,0.825753,0.286913,0.497019,0.521099,0.594012,0.773904,0.598785,0.42474,0.433202,0.157992,0.232573,0.520041,0.319054,0.53008,0.709238,0.561923,0.136964,0.292978,0.0285429,0.0573536,0.566035,0.522115,0.692171,0.477165,0.50739,0.818217,0.994883,0.764509,0.605808,0.943342,0.0343527,0.129785,0.808883,0.712128,0.531111,0.0660335,0.852717,0.332272,0.561843,0.0388283,0.328377,0.78198,0.220602,0.10691,0.878644,0.152256,0.554948,0.76352,0.496021,0.0775672,0.425151,0.354532,0.0877451,0.218706,0.520969,0.420932,0.398444,0.827503,0.151919,0.743981,0.490334,0.99885,0.681008,0.185869,0.533303,0.633767,0.658138,0.139124,0.695054,0.317457,0.21553,0.794675,0.495398,0.282221,0.103477,0.612976,0.458568,0.0157521,0.699644,0.443232,0.610586,0.631922,0.675926,0.906782,0.589848,0.29076,0.382276,0.123014,0.992017,0.797986,0.860332,0.0343541,0.0295973,0.813797,0.299611,0.138792,0.799418,0.446102,0.369803,0.864834,0.272645,0.390339,0.195204,0.503688,0.00674796,0.0188018,0.512905,0.857601,0.667044,0.112912,0.384122,0.222958,0.131583,0.330633,0.797243,0.79046,0.971519,0.287295,0.469573,0.756606,0.43753,0.394425,0.525839,0.779101,0.30755,0.857067,0.596738,0.323808,0.695923,0.156844,0.82306,0.166358,0.66916,0.523825,0.993382,0.440329,0.459676,0.643938,0.662967,0.00449765,0.204925,0.447424,0.438343,0.183028,0.44941,0.56162,0.921948,0.624042,0.567626,0.654286,0.939521,0.588545,0.0556971,0.931325,0.606428,0.729957,0.172197,0.782377,0.900696,0.548821,0.503309,0.0846069,0.410157,0.466075,0.489362,0.820916,0.315056,0.113369,0.561508,0.685524,0.0610973,0.0623378,0.665633,0.170302,0.297733,0.267746,0.44209,0.246551,0.555297,0.612726,0.858083,0.0184584,0.211813,0.962347,0.958384,0.310961,0.976949,0.709043,0.168458,0.712221,0.543461,0.318924,0.102078,0.175513,0.220308,0.0684347,0.0751653,0.269013,0.997016,0.141198,0.819441,0.570177,0.359577,0.451025,0.183416,0.056551,0.446224,0.158369,0.9678,0.923061,0.242012,0.926436,0.946581,0.628369,0.00905633,0.0812975,0.120971,0.545592,0.832622,0.310457,0.838336,0.0282214,0.677426,0.287956,0.124052,0.765407,0.513348,0.0628884,0.748151,0.978708,0.818233,0.646753,0.343457,0.490184,0.968374,0.954494,0.0227351,0.797288,0.268531,0.319064,0.254637,0.105425,0.274149,0.516021,0.214365,0.357034,0.800815,0.812705,0.9141,0.531694,0.200482,0.982154,0.80397,0.134224,0.240556,0.797592,0.4865,0.702193,0.823517,0.931282,0.837411,0.880134,0.892927,0.722521,|0.890535,0.729712,0.179497,0.133915,0.397486,0.399734,0.625034,0.015686,0.241704,0.558009,0.864885,0.655475,0.269487,0.964432,0.891212,0.969904,0.658389,0.0192364,0.290857,0.471461,0.790889,0.655629,0.250187,0.293688,0.276237,0.90612,0.0835689,0.335466,0.668474,0.949354,0.959539,0.188308,0.935617,0.472071,0.531978,0.0873302,0.138304,0.931552,0.817302,0.923149,0.694117,0.092949,0.0856016,0.200891,0.84574,0.772516,0.345521,0.860961,0.769211,0.363614,0.928177,0.53471,0.157963,0.811809,0.312341,0.803088,0.527497,0.565981,0.0121241,0.0314394,0.366309,0.688276,0.237713,0.539901,0.693945,0.645314,0.120207,0.94618,0.731179,0.648761,0.25032,0.127088,0.147276,0.882156,0.0359573,0.751352,0.468321,0.99082,0.986637,0.297916,0.436671,0.232738,0.189255,0.526355,0.102669,0.598963,0.72547,0.83466,0.29175,0.307323,0.469447,0.00751472,0.820031,0.0505792,0.575128,0.595227,0.77368,0.2388,0.049238,0.68773,0.419216,0.0303802,0.0589852,0.145241,0.43473,0.521315,0.0682865,0.528534,0.913666,0.685579,0.428511,0.906945,0.0976171,0.658356,0.8046,0.0758138,0.540541,0.851258,0.842352,0.0205294,0.631182,0.288753,0.39099,0.514632,0.891504,0.18406,0.366444,0.536284,0.468601,0.551919,0.981197,0.822053,0.860013,0.568112,0.563663,0.438204,0.0468619,0.639604,0.275034,0.604871,0.945341,0.842948,0.695676,0.0279588,0.146518,0.0408026,0.0657331,0.868898,0.986976,0.245674,0.225551,0.631323,0.145795,0.440184,0.33687,0.205218,0.494529,0.661489,0.65241,0.498316,0.406883,0.515562,0.710199,0.475906,0.013019,0.2404,0.0695809,0.968958,0.932428,0.00664884,0.339743,0.468697,0.611986,0.591768,0.248261,0.495141,0.977196,0.483745,0.9125,0.268747,0.249068,0.173772,0.56976,0.760613,0.0262949,0.857027,0.737572,0.247328,0.0948712,0.726058,0.190525,0.52714,0.234903,0.897821,0.924879,0.46658,0.670539,0.643053,0.714597,0.955095,0.521455,0.875888,0.377501,0.96532,0.179241,0.307009,0.0762046,0.913045,0.0055176,0.689043,0.797726,0.926849,0.911329,0.896331,0.230811,0.312969,0.062993,0.871076,0.826581,0.950634,0.0626059,0.092414,0.72803,0.364838,0.931134,0.304678,0.312162,0.652695,0.964803,0.679712,0.392918,0.115158,0.733017,0.0214479,0.203539,0.188144,0.327425,0.92497,0.59202,0.165279,0.296188,0.864593,0.402827,0.056006,0.644365,0.266444,0.408153,0.781506,0.274881,0.272512,0.21589,0.359215,0.565316,0.343142,0.16246,0.644044,0.437302,0.768062,0.333597,0.553847,0.23091,0.534245,0.996897,0.41784,0.371791,0.243041,0.392135,0.511957,0.6957,0.399178,0.104737,0.0828348,0.694186,0.84247,0.616508,0.576618,0.634568,0.957912,0.313404,0.448457,0.133695,0.826722,0.387203,0.918697,0.980619,0.919897,0.818859,0.922124,0.194923,0.854809,0.200746,0.217357,0.0346084,0.997002,0.936507,0.640744,0.983241,0.915326,0.918392,0.510405,0.577741,0.643114,0.198684,0.209921,0.95385,0.651909,0.0585276,0.774958,0.251379,0.250989,0.123585,0.431687,0.541537,0.0896128,0.363941,0.723161,0.229394,0.645632,0.733107,0.243389,0.107973,0.929214,0.75584,0.861856,0.380532,0.827845,0.800628,0.971596,0.458353,0.679631,0.408264,0.0936826,0.427993,0.146675,0.164114,0.559573,0.355139,0.0439518,0.670751,0.711272,0.325155,0.403923,0.694155,0.103798,0.0549656,0.053913,0.722362,0.744125,0.373158,0.251814,0.515802,0.198132,0.877786,0.597726,0.0929539,0.00985247,0.811423,0.419917,0.166628,0.79336,0.0659124,0.588088,0.681008,0.533942,0.909769,0.32797,0.0154951,0.47868,0.486002,0.114252,0.384472,0.386448,0.725577,0.461701,0.436554,0.447026,0.814466,0.791706,0.719829,0.122848,0.0695965,0.053614,0.855856,0.740481,0.368129,0.604333,0.042293,0.599306,0.033951,0.666162,0.443038,0.827899,0.514485,0.68815,0.639192,0.139445,0.617506,0.600412,0.281503,0.670434,0.7318,0.486205,0.106859,0.908399,0.800673,0.375539,0.949253,0.103322,0.893018,0.207923,0.167146,0.270222,0.811354,0.245546,0.274955,0.289826,0.321948,0.883767,0.0156183,0.222772,0.379997,0.224194,0.679653,0.132348,0.424596,0.131585,0.776764,0.0586157,0.0745953,0.480761,0.784689,0.284005,0.716172,0.58168,0.18869,0.851419,0.450443,0.934866,0.95443,0.0161492,0.954363,0.0619771,0.153262,0.326463,0.412743,0.2375,0.763614,0.718384,0.122915,0.168016,0.688895,0.716459,0.837352,0.533026,0.401454,0.208695,0.666226,0.32154,0.378859,0.957628,0.130596,0.510703,0.763476,0.150455,0.0156792,0.743362,0.0290091,0.200115,0.232753,0.844163,0.911303,0.241117,0.770745,0.736604,0.793184,0.802835,0.18021,0.4781,0.832908,0.782723,0.00351685,0.251656,0.0606533,0.40872,0.337277,0.915197,0.123062,0.642211,0.712623,0.0489915,0.696988,0.705397,0.463587,0.81591,0.635814,0.656363,0.72062,0.613667,0.895355,0.0263252,0.744159,0.950527,0.714576,0.543007,0.431958,0.416423,0.573319,0.0434275,0.478539,0.189125,0.380504,0.989489,0.0777735,0.50364,0.736562,0.13728,0.249916,0.17444,0.222037,0.307759,0.849161,0.304018,0.499708,0.598283,0.768976,0.390974,0.975758,0.770925,0.854428,0.857624,0.0524392,0.711975,0.89839,0.144752,0.35477,0.269968,0.791779,0.0980167,0.474016,0.14387,0.643844,0.606635,0.449162,0.304915,0.913705,0.00696504,0.74715,0.197389,0.114399,0.400169,0.257745,0.868132,0.988296,0.362461,0.0946884,0.977619,0.183953,0.382831,0.869314,0.733494,0.672068,0.240232,0.851345,0.595069,0.435133,0.647783,0.869284,0.589689,0.476553,0.179829,0.0904682,0.7391,0.629263,0.390842,0.509032,0.790869,0.156461,0.650031,0.533808,0.268646,0.713689,0.887388,0.243991,0.706747,0.151681,0.859785,0.234355,0.429222,0.864915,0.593323,0.162999,0.307273,0.549546,0.837867,0.910157,0.590202,0.142557,0.429727,0.474474,0.983597,0.352684,0.147898,0.428926,0.190481,0.7376,0.675591,0.606413,0.620999,0.42156,0.817427,0.621824,0.383649,0.409036,0.705474,0.440426,0.165996,0.364969,0.949489,0.262361,0.63021,0.0568823,0.188141,0.18824,0.0759738,0.116475,0.866357,0.186252,0.191823,0.805785,0.183874,0.93989,0.734138,0.407383,0.625655,0.933536,0.581864,0.722885,0.482954,0.594078,0.665857,0.343206,0.592158,0.293584,0.722431,0.608183,0.883588,0.523433,0.406787,0.265393,0.260084,0.0129361,0.353661,0.890816,0.586035,0.700356,0.950209,0.249535,0.0344732,0.359196,0.919371,0.981451,0.954857,0.709292,0.645836,0.209787,0.291389,0.909323,0.191098,0.368896,0.419581,0.726549,0.407134,0.681456,0.358039,0.505618,0.605484,0.438599,0.518155,0.442786,0.695769,0.659731,0.994468,0.0431936,0.815476,0.0117307,0.656304,0.881226,0.591652,0.594705,0.132142,0.271008,0.711553,0.319861,0.0117068,0.787386,0.099864,0.168258,0.624103,0.351483,0.644342,0.991884,0.497389,0.837698,0.150662,0.246422,0.288815,0.809653,0.487221,0.84604,0.982307,0.716052,0.999574,0.823936,0.317651,0.743141,0.434388,0.685123,0.273371,0.877846,0.827204,0.103847,0.454036,0.549531,0.902743,0.492564,0.0910181,0.984846,0.61203,0.947805,0.347754,0.992379,0.879966,0.937638,0.800034,0.813299,0.0453588,0.566365,0.259962,0.468468,0.728177,0.645097,0.429186,0.461804,0.859258,0.53643,0.509123,0.163523,0.102606,0.755016,0.0789819,0.134389,0.947153,0.192306,0.361232,0.520725,0.0925967,0.137019,0.693102,0.505288,0.668628,0.368846,0.421449,0.583442,0.504024,0.00689089,0.791766,0.75739,0.536097,0.576564,0.569017,0.575742,0.781128,0.318473,0.279895,0.0501377,0.399366,0.918675,0.470452,0.117869,0.112867,0.827802,0.401218,0.466514,0.263046,0.813836,0.272398,0.931105,0.926211,0.895108,0.48178,0.107682,0.572223,0.210187,0.243888,0.73061,0.924262,0.0698426,0.448728,0.823215,0.921882,0.139833,0.982236,0.492362,0.12569,0.401294,0.00871372,0.295239,0.575572,0.296466,0.848414,0.746543,0.218769,0.27967,0.688642,0.383446,0.63376,0.547385,0.185048,0.01248,0.0834205,0.11751,0.653085,0.271691,0.00231844,0.631289,0.00602239,0.178758,0.939482,0.0442725,0.944127,0.746036,0.375729,0.634642,0.295496,0.210831,0.385621,0.00552809,0.741543,0.993145,0.654263,0.985544,0.102935,0.653899,0.874524,0.21091,0.34245,0.940516,0.170567,0.174048,0.138045,0.453579,0.530499,0.206336,0.524662,0.565925,0.81262,0.596609,0.09082,0.687411,0.00226223,0.891599,0.672101,0.1998,0.16751,0.577049,0.326948,0.909068,0.155049,0.313683,0.690551,0.62743,0.194682,0.0247347,0.179103,0.915338,0.689809,0.586633,0.239141,0.280591,0.0495448,0.591502,0.697055,0.71871,0.0827617,0.236527,0.74497,0.247216,0.883659,0.323299,0.997416,0.865117,0.0666153,0.469013,0.770666,0.987925,0.136645,0.769859,0.521579,0.592831,0.610357,0.054193,0.442637,0.293401,0.29707,0.966805,0.666093,0.304075,0.265721,0.692832,0.713299,0.468086,0.531005,0.821804,0.1179,0.288077,0.978032,0.88114,0.0805598,0.427639,0.55365,0.518123,0.69427,0.596351,0.749712,0.833589,0.416391,0.0702902,0.430762,0.142844,0.356916,0.357486,0.905052,0.904293,0.773709,0.0982072,0.0143877,0.420282,0.994954,0.0723836,0.250068,0.256757,0.970812,0.709326,0.796465,0.00146985,0.283166,0.347894,0.483017,0.667661,0.301701,0.327818,0.970184,0.166715,0.983029,0.519368,0.238754,0.641489,0.343805,0.913643,0.178729,0.719422,0.913018,0.24058,0.33759,0.632595,0.429947,0.693678,0.452546,0.49276,0.597125,0.171179,0.275081,0.0445832,0.988112,0.749313,0.00549299,0.363279,0.603164,0.300878,0.0143352,0.373143,0.927989,0.610329,0.251249,0.0459678,0.453061,0.457238,0.108647,0.842166,0.703599,0.0709565,0.0246266,0.515734,0.15474,0.0240085,0.990097,0.791,0.165107,0.287185,0.663533,|0.420212,0.132665,0.539239,0.766788,0.563023,0.20899,0.429727,0.623109,0.964009,0.850155,0.0535812,0.525018,0.0745813,0.311628,0.938038,0.133948,0.520388,0.480102,0.350057,0.0876704,0.401948,0.149801,0.0105788,0.400725,0.0846657,0.639247,0.575009,0.953569,0.0243646,0.169084,0.460037,0.692153,0.608217,0.742409,0.104732,0.0111695,0.635569,0.812396,0.876865,0.778739,0.704477,0.317644,0.397498,0.907667,0.638085,0.577991,0.331375,0.851833,0.396863,0.0844545,0.502227,0.620103,0.722872,0.89375,0.67796,0.244747,0.978507,0.722534,0.210497,0.540853,0.5027,0.237701,0.406447,0.71033,0.991521,0.485072,0.597925,0.241207,0.36024,0.783614,0.721721,0.537195,0.614601,0.237638,0.270288,0.301144,0.466638,0.279131,0.993407,0.377475,0.277218,0.304301,0.933356,0.949698,0.543687,0.078231,0.801848,0.578727,0.406503,0.5383,0.0202299,0.748548,0.623287,0.955899,0.471701,0.815701,0.62465,0.218604,0.567893,0.320153,0.62528,0.618801,0.995885,0.862961,0.573245,0.575791,0.868341,0.133137,0.786724,0.1679,0.427234,0.391399,0.293319,0.135507,0.66125,0.533348,0.591797,0.217563,0.959601,0.777951,0.735078,0.342377,0.582225,0.846571,0.0616843,0.548067,0.654656,0.529462,0.578126,0.936617,0.0165361,0.36233,0.304585,0.0380134,0.0893425,0.985197,0.749619,0.286044,0.0411731,0.379361,0.148695,0.520724,0.193021,0.204943,0.62369,0.442542,0.481089,0.655669,0.443916,0.978567,0.47521,0.295492,0.0256386,0.84345,0.858478,0.161371,0.180112,0.15216,0.0787237,0.739505,0.348315,0.962314,0.225144,0.0324515,0.671192,0.601318,0.467422,0.0773988,0.629589,0.694538,0.466156,0.852088,0.245796,0.0694461,0.0196984,0.400565,0.229918,0.0936536,0.844718,0.609044,0.744309,0.606495,0.767737,0.652646,0.775468,0.0118393,0.395162,0.702226,0.460834,0.391687,0.828582,0.687947,0.0305135,0.627125,0.822255,0.189684,0.142202,0.343711,0.0899693,0.251219,0.402427,0.637119,0.732952,0.361228,0.967434,0.621766,0.314696,0.0469331,0.949276,0.175999,0.222901,0.441114,0.227925,0.16869,0.413814,0.632389,0.527017,0.0793372,0.8446,0.086938,0.330233,0.480427,0.230857,0.751601,0.139682,0.480697,0.73391,0.559509,0.411917,0.197191,0.9516,0.0254875,0.623596,0.0524577,0.0165893,0.126599,0.481818,0.738233,0.700586,0.286258,0.863466,0.599578,0.076838,0.795951,0.101084,0.481734,0.680837,0.311208,0.361762,0.181379,0.574835,0.687077,0.437081,0.849981,0.622027,0.736403,0.647022,0.942634,0.377198,0.35665,0.79711,0.648866,0.875033,0.30847,0.686244,0.517495,0.424132,0.456991,0.237,0.903298,0.250504,0.828722,0.0500752,0.663051,0.991921,0.264541,0.710517,0.0789562,0.163584,0.506315,0.191647,0.81692,0.379088,0.223623,0.345182,0.00288755,0.803765,0.382727,0.176557,0.353293,0.748082,0.34097,0.492123,0.39845,0.772617,0.987856,0.677624,0.27608,0.896401,0.494598,0.666552,0.750578,0.0443501,0.483954,0.465293,0.954747,0.289845,0.906346,0.526444,0.865966,0.675038,0.893607,0.433387,0.112029,0.385151,0.409183,0.38008,0.916638,0.940878,0.60455,0.574208,0.99324,0.767869,0.321369,0.119017,0.440633,0.396031,0.835624,0.309913,0.863043,0.55166,0.340815,0.537817,0.104247,0.293231,0.0340096,0.445588,0.767385,0.504482,0.733557,0.543132,0.801275,0.718064,0.265527,0.164887,0.199009,0.488895,0.257771,0.712564,0.343769,0.228769,0.12078,0.505969,0.191457,0.530046,0.468449,0.846891,0.981791,0.804061,0.395368,0.171141,0.719587,0.680648,0.206691,0.0538052,0.841049,0.10402,0.652654,0.329238,0.0105583,0.243414,0.977139,0.306955,0.206035,0.401014,0.215691,0.591273,0.61441,0.490246,0.0702688,0.620903,0.0860379,0.878438,0.427744,0.811807,0.224585,0.272816,0.534331,0.220952,0.953756,0.922795,0.56698,0.882798,0.893566,0.768561,0.269266,0.57383,0.0197632,0.23305,0.105772,0.769949,0.327138,0.469199,0.162492,0.0738605,0.113255,0.881945,0.0412737,0.631636,0.974885,0.739591,0.0844541,0.637862,0.864873,0.859704,0.537488,0.0294356,0.868144,0.0747467,0.776563,0.00909877,0.0438387,0.706032,0.783655,0.198011,0.944278,0.509715,0.186877,0.784789,0.929871,0.547171,0.300786,0.933093,0.574066,0.498963,0.182434,0.96436,0.475048,0.635524,0.426147,0.339115,0.157292,0.270141,0.164211,0.994781,0.364262,0.887621,0.100219,0.531079,0.352212,0.416838,0.380062,0.656022,0.169583,0.20514,0.808242,0.470029,0.769101,0.56106,0.544571,0.85855,0.883113,0.833551,0.724714,0.711583,0.376291,0.770968,0.259862,0.441531,0.90828,0.892304,0.444082,0.425987,0.224675,0.297327,0.176888,0.418129,0.00141203,0.0523621,0.619851,0.348174,0.478606,0.658182,0.460234,0.688667,0.235501,0.521775,0.389632,0.166639,0.50511,0.439326,0.837903,0.923141,0.434729,0.251085,0.935304,0.244093,0.356655,0.222973,0.941297,0.100234,0.905181,0.0951039,0.935092,0.799902,0.0124632,0.0329115,0.0392182,0.270138,0.114819,0.0259783,0.72562,0.862203,0.436047,0.312093,0.845607,0.287134,0.505628,0.900539,0.8486,0.206628,0.838325,0.91789,0.330762,0.817869,0.799298,0.786145,0.459836,0.531082,0.466893,0.684081,0.61501,0.376388,0.156276,0.410005,0.641445,0.426825,0.471035,0.778276,0.104185,0.868053,0.862801,0.455649,0.84581,0.0148472,0.65876,0.167544,0.923694,0.430709,0.411455,0.955077,0.755833,0.0184075,0.466636,0.908401,0.961133,0.858836,0.990356,0.63369,0.887764,0.116792,0.937733,0.621181,0.42405,0.537033,0.343566,0.370208,0.355504,0.0670921,0.0892614,0.794449,0.494106,0.366631,0.629964,0.315457,0.60887,0.637325,0.092485,0.0412319,0.148849,0.0431367,0.0103574,0.616109,0.442474,0.0953979,0.0333562,0.878088,0.0716138,0.956526,0.948471,0.362187,0.620881,0.183182,0.883346,0.169351,0.811483,0.190531,0.519874,0.725876,0.688132,0.935584,0.14032,0.96585,0.719777,0.922305,0.217936,0.117283,0.437417,0.89286,0.755955,0.23314,0.959804,0.937159,0.818663,0.14157,0.113093,0.933911,0.218779,0.392443,0.481536,0.809166,0.187851,0.668964,0.251803,0.577684,0.984671,0.619644,0.51505,0.490688,0.590249,0.188967,0.188957,0.79772,0.653869,0.825961,0.433137,0.368715,0.232872,0.721289,0.579125,0.275676,0.979906,0.415467,0.126176,0.772626,0.404799,0.525219,0.778681,0.370765,0.486184,0.389729,0.962515,0.0978936,0.965995,0.932391,0.740984,0.252337,0.734325,0.328204,0.04352,0.387729,0.161815,0.706087,0.766025,0.973816,0.143728,0.0884317,0.607001,0.777183,0.0386958,0.176065,0.582993,0.355329,0.398586,0.224151,0.0196124,0.315485,0.11377,0.0197126,0.289351,0.804833,0.475775,0.508931,0.697927,0.151556,0.710795,0.703378,0.243981,0.818743,0.460469,0.185539,0.980676,0.384338,0.295586,0.954178,0.690561,0.971243,0.675367,0.494436,0.499674,0.427477,0.44053,0.694553,0.955572,0.270038,0.117608,0.482342,0.940766,0.655552,0.0144078,0.861104,0.108404,0.402433,0.44803,0.467263,0.311051,0.383012,0.074941,0.98927,0.174863,0.439008,0.391329,0.831853,0.393717,0.876188,0.0279937,0.94248,0.464269,0.693724,0.747162,0.36912,0.960033,0.692747,0.619945,0.513778,0.371948,0.737569,0.386835,0.491237,0.292569,0.0121524,0.626949,0.362418,0.0989523,0.761974,0.831859,0.551089,0.212908,0.484161,0.147771,0.100042,0.622354,0.920018,0.274336,0.013645,0.797924,0.350917,0.32651,0.437088,0.236863,0.639777,0.452306,0.858662,0.837669,0.593166,0.781105,0.439615,0.0644649,0.0213914,0.804842,0.978245,0.882351,0.632668,0.312679,0.0515938,0.385206,0.427298,0.890841,0.933938,0.147711,0.136771,0.832003,0.68612,0.419491,0.32122,0.188323,0.44607,0.274062,0.52458,0.482351,0.400116,0.728017,0.741055,0.911798,0.324138,0.189815,0.543568,0.425773,0.309736,0.493095,0.778802,0.27265,0.201731,0.855407,0.778029,0.0315539,0.493478,0.248933,0.789521,0.797575,0.560785,0.520401,0.855058,0.479603,0.588544,0.303833,0.761131,0.901338,0.710797,0.680725,0.152776,0.469994,0.0144421,0.955876,0.920567,0.825042,0.263893,0.830339,0.486523,0.517761,0.551474,0.0278969,0.851606,0.966071,0.870001,0.902971,0.957592,0.829099,0.45372,0.977985,0.535867,0.650299,0.511253,0.717329,0.801648,0.263916,0.19709,0.886696,0.351793,0.308454,0.837369,0.473102,0.942124,0.260139,0.0132323,0.516157,0.0987061,0.264733,0.816925,0.618592,0.0142353,0.900382,0.479712,0.488383,0.541002,0.0945264,0.504717,0.981025,0.498807,0.936538,0.689068,0.806455,0.271514,0.830989,0.702174,0.302347,0.948066,0.939946,0.779876,0.980979,0.423354,0.190215,0.0835409,0.702951,0.249489,0.843419,0.49723,0.990979,0.0624092,0.466843,0.0518571,0.252138,0.790749,0.896134,0.694676,0.987147,0.674554,0.249177,0.963173,0.21708,0.910615,0.0649676,0.124214,0.193477,0.979283,0.707363,0.312854,0.0398402,0.955474,0.631155,0.181063,0.479743,0.868253,0.199744,0.146292,0.0991347,0.268276,0.219744,0.820398,0.383467,0.727197,0.0877368,0.549897,0.0177323,0.291224,0.549882,0.413327,0.982309,0.541045,0.198994,0.71029,0.712628,0.744163,0.628373,0.446678,0.101863,0.859443,0.803703,0.821796,0.153609,0.826687,0.856927,0.399288,0.656502,0.569382,0.857441,0.396587,0.87744,0.0285245,0.463914,0.354784,0.0856617,0.814927,0.739257,0.44692,0.762276,0.841404,0.115986,0.834154,0.768071,0.791737,0.839222,0.77469,0.32771,0.562309,0.801358,0.088296,0.193869,0.209825,0.677499,0.561014,0.586989,0.83373,0.403958,0.627271,0.587882,0.0349669,0.54187,0.828886,0.437138,0.969583,0.668003,0.900689,0.816714,0.971277,0.150465,0.604084,0.235966,0.33293,0.248798,0.489304,0.504778,0.0906962,0.931091,0.867643,0.307826,0.233837,0.979629,0.700852,0.156565,|0.698705,0.784384,0.471687,0.0913546,0.108694,0.904181,0.320707,0.315278,0.542818,0.786079,0.611409,0.129404,0.775091,0.691087,0.701695,0.556884,0.125335,0.269519,0.507232,0.976993,0.621768,0.905001,0.706107,0.0197197,0.85286,0.839688,0.548149,0.178367,0.947217,0.838505,0.969967,0.500315,0.532386,0.846046,0.68896,0.490973,0.297292,0.925783,0.15063,0.740388,0.209068,0.835687,0.987594,0.588582,0.819567,0.431842,0.805327,0.0904707,0.627491,0.956715,0.365074,0.559153,0.410938,0.184149,0.630333,0.0845432,0.541891,0.0366442,0.789596,0.748555,0.825097,0.198995,0.584746,0.152378,0.269461,0.572507,0.545162,0.0361398,0.929751,0.160468,0.899406,0.504645,0.675824,0.627661,0.482738,0.887547,0.220006,0.564841,0.719692,0.245616,0.879454,0.0191138,0.936156,0.186994,0.235378,0.583279,0.340581,0.727477,0.592068,0.320373,0.405893,0.643319,0.949692,0.421528,0.277095,0.967345,0.582176,0.0406133,0.222247,0.425841,0.497899,0.29007,0.99075,0.461478,0.794706,0.75319,0.638002,0.588684,0.375073,0.120916,0.811193,0.878707,0.636325,0.450409,0.0669565,0.54082,0.178799,0.405338,0.0713039,0.922968,0.523488,0.321713,0.297855,0.291592,0.988278,0.729373,0.516315,0.950265,0.65487,0.297186,0.0708666,0.464637,0.298529,0.0768356,0.688503,0.068606,0.231543,0.518036,0.609886,0.665578,0.0388969,0.934345,0.28295,0.176325,0.901767,0.771415,0.0470608,0.251923,0.300457,0.277169,0.674062,0.972676,0.448452,0.843147,0.759247,0.725315,0.0384874,0.351988,0.690156,0.871498,0.0775713,0.802238,0.403383,0.822038,0.0618318,0.390917,0.668838,0.893541,0.713235,0.779749,0.664238,0.36061,0.639851,0.918237,0.0953242,0.385275,0.961693,0.840568,0.982264,0.226912,0.0362856,0.517137,0.0894699,0.521946,0.697454,0.901115,0.384206,0.928528,0.954821,0.919249,0.885854,0.162733,0.835464,0.472717,0.66704,0.109485,0.564708,0.887386,0.0499376,0.0444933,0.344656,0.232407,0.458394,0.0521571,0.694088,0.793473,0.290124,0.520694,0.918586,0.255094,0.432748,0.0575483,0.852128,0.547275,0.143933,0.346696,0.537231,0.532112,0.0549496,0.0861286,0.871607,0.91991,0.0413778,0.811757,0.287262,0.293432,0.526197,0.626718,0.816595,0.257226,0.12023,0.430635,0.00630063,0.829042,0.522297,0.240429,0.635228,0.876391,0.561286,0.69883,0.0291442,0.304427,0.00813562,0.360241,0.584863,0.0928011,0.427239,0.451327,0.580562,0.798263,0.726411,0.680521,0.743188,0.60842,0.236869,0.994368,0.836878,0.345741,0.279595,0.481742,0.851031,0.721558,0.281453,0.650307,0.935337,0.57172,0.659931,0.35979,0.394896,0.976498,0.33039,0.337514,0.781861,0.0723106,0.339253,0.636361,0.883491,0.265432,0.496749,0.0566923,0.797421,0.44388,0.215917,0.269741,0.0809507,0.186444,0.798595,0.0193315,0.511199,0.478875,0.44777,0.985636,0.954241,0.578084,0.316224,0.149734,0.206329,0.337989,0.820788,0.627733,0.321457,0.700977,0.820472,0.280356,0.922541,0.383948,0.0744717,0.749469,0.53781,0.752283,0.23149,0.224862,0.196366,0.576203,0.04439,0.622314,0.869609,0.0831097,0.343679,0.490629,0.596188,0.40345,0.859693,0.973113,0.0317575,0.325936,0.278404,0.100504,0.00243366,0.185809,0.90802,0.43336,0.792198,0.294865,0.316949,0.408513,0.470789,0.873301,0.764857,0.117432,0.701655,0.680141,0.938252,0.610697,0.735528,0.253829,0.412578,0.0798036,0.52836,0.0206566,0.0647929,0.977801,0.407498,0.720296,0.181344,0.549967,0.533584,0.637751,0.376368,0.768692,0.545978,0.955579,0.814506,0.7574,0.477911,0.600113,0.860818,0.525435,0.654437,0.549683,0.953398,0.746786,0.849817,0.206382,0.526158,0.666839,0.463184,0.76002,0.682808,0.374029,0.817151,0.699953,0.0236892,0.651262,0.468754,0.158407,0.993477,0.335741,0.671709,0.790184,0.222508,0.73256,0.72774,0.254544,0.954064,0.316143,0.0309507,0.32704,0.53219,0.496242,0.405516,0.312335,0.0904187,0.869917,0.577802,0.350458,0.581021,0.217205,0.366423,0.533152,0.336185,0.0978872,0.116733,0.560252,0.210885,0.704143,0.724204,0.0290688,0.578508,0.855858,0.191371,0.847081,0.107077,0.775302,0.23419,0.610259,0.137944,0.793642,0.401095,0.207257,0.478048,0.325886,0.842271,0.376886,0.761352,0.0909472,0.44403,0.522427,0.978633,0.497492,0.651411,0.217175,0.0233927,0.00924563,0.979593,0.113491,0.508143,0.744639,0.812718,0.201591,0.37975,0.530825,0.980149,0.868555,0.852529,0.319074,0.618765,0.125012,0.849794,0.615927,0.626414,0.895506,0.605999,0.564677,0.928194,0.60682,0.471372,0.389092,0.714784,0.672731,0.723904,0.732577,0.337362,0.0912367,0.977419,0.936886,0.332713,0.030538,0.326643,0.473442,0.207529,0.172694,0.157735,0.449472,0.134362,0.456136,0.252309,0.464267,0.852116,0.287792,0.0755487,0.279518,0.89302,0.0180962,0.0135276,0.791339,0.178531,0.980666,0.0348496,0.826537,0.41452,0.56324,0.628266,0.526472,0.175328,0.416013,0.804964,0.0457305,0.223913,0.586265,0.733283,0.842904,0.453608,0.195843,0.512217,0.82412,0.0553942,0.422831,0.585942,0.0442862,0.699606,0.733567,0.391698,0.172154,0.0591074,0.620226,0.154116,0.0750296,0.135079,0.639529,0.0761833,0.958617,0.366237,0.557156,0.657655,0.055415,0.341215,0.732214,0.478492,0.172071,0.480314,0.219993,0.524034,0.494177,0.661316,0.716905,0.874192,0.850011,0.690664,0.74818,0.785191,0.462639,0.401074,0.784351,0.0761283,0.301319,0.421709,0.425022,0.79579,0.513991,0.739112,0.0461318,0.120206,0.142936,0.29426,0.131755,0.0628391,0.51085,0.636481,0.257095,0.283032,0.724185,0.680303,0.287306,0.709254,0.194963,0.394849,0.273443,0.742278,0.178977,0.159194,0.615717,0.648556,0.238887,0.369739,0.156375,0.56736,0.626811,0.346555,0.631837,0.974396,0.865945,0.776664,0.725345,0.532254,0.44473,0.765479,0.767276,0.104873,0.684849,0.69732,0.335024,0.625324,0.0284755,0.842751,0.537443,0.683266,0.997176,0.241064,0.496005,0.841043,0.774544,0.870281,0.691259,0.746666,0.917841,0.432908,0.613211,0.975878,0.465318,0.990478,0.084875,0.126385,0.972467,0.454543,0.923914,0.995092,0.511705,0.396549,0.262075,0.181683,0.584018,0.371956,0.198806,0.752299,0.888223,0.532371,0.812224,0.520952,0.583094,0.991142,0.830625,0.134031,0.752117,0.364725,0.869044,0.905344,0.117239,0.717687,0.126061,0.0354944,0.351136,0.0545478,0.738255,0.93015,0.845335,0.281944,0.32039,0.797357,0.824126,0.750224,0.366997,0.309723,0.579415,0.305966,0.073465,0.567556,0.0995731,0.111706,0.124956,0.468757,0.552602,0.589204,0.488691,0.374512,0.782565,0.140921,0.78785,0.743258,0.278571,0.886645,0.582703,0.982645,0.895792,0.921825,0.922877,0.104801,0.287509,0.401381,0.882088,0.807459,0.125369,0.824503,0.239474,0.473449,0.661227,0.0589364,0.0856276,0.636589,0.726086,0.270034,0.279073,0.718278,0.548637,0.231413,0.772896,0.984865,0.422007,0.636974,0.464306,0.32793,0.954714,0.29302,0.896396,0.853758,0.263376,0.939144,0.888535,0.682789,0.408482,0.548655,0.0952237,0.307253,0.126765,0.53078,0.7726,0.486797,0.0623316,0.914542,0.0908575,0.494698,0.36416,0.549159,0.646442,0.399802,0.71474,0.34035,0.486466,0.511055,0.107423,0.573967,0.167074,0.777606,0.591519,0.851653,0.424441,0.0967109,0.695038,0.492746,0.633024,0.556796,0.836703,0.768555,0.588322,0.130172,0.554366,0.224541,0.302782,0.488205,0.169314,0.568137,0.628733,0.7388,0.300935,0.0715007,0.106556,0.397359,0.930921,0.12811,0.161213,0.85782,0.534592,0.712789,0.373371,0.189117,0.0789418,0.692532,0.780798,0.655317,0.901424,0.520907,0.762274,0.472723,0.547375,0.521855,0.0674794,0.965655,0.406875,0.918764,0.704717,0.977001,0.699153,0.325032,0.706708,0.428413,0.424013,0.586946,0.435262,0.0122933,0.00539994,0.807033,0.760223,0.519478,0.646209,0.341977,0.515181,0.708401,0.575132,0.0893499,0.271044,0.69186,0.953973,0.167122,0.446202,0.0687151,0.061265,0.171777,0.431044,0.587919,0.39022,0.21373,0.0754562,0.671249,0.958255,0.204874,0.569644,0.0869938,0.756735,0.636706,0.975126,0.421892,0.386504,0.158119,0.264941,0.685435,0.109742,0.602044,0.328061,0.592445,0.725283,0.0973506,0.839512,0.180713,0.452096,0.808387,0.224904,0.0972423,0.16761,0.0470314,0.685087,0.863116,0.928972,0.667162,0.164836,0.464213,0.0104184,0.553475,0.493967,0.38464,0.957636,0.0608709,0.043064,0.468297,0.316461,0.862956,0.220721,0.429746,0.0306765,0.896904,0.0913765,0.247347,0.907949,0.191885,0.577613,0.0807441,0.936901,0.957022,0.645368,0.732514,0.985767,0.0335616,0.761252,0.0129442,0.87453,0.452662,0.753492,0.4502,0.355289,0.128795,0.077008,0.147579,0.0768499,0.748917,0.499536,0.221829,0.592588,0.357515,0.0111814,0.401266,0.924069,0.741459,0.568119,0.333292,0.63996,0.151374,0.64636,0.177554,0.652722,0.962218,0.337181,0.339941,0.769416,0.49737,0.428885,0.658535,0.28684,0.829561,0.446656,0.47891,0.162267,0.230359,0.151313,0.185005,0.269217,0.300318,0.0921863,0.33606,0.207846,0.107133,0.77678,0.570927,0.437862,0.247245,0.139745,0.876477,0.290192,0.225392,0.58304,0.906853,0.662704,0.383732,0.692363,0.143718,0.823796,0.907269,0.61802,0.658,0.531693,0.949322,0.086489,0.7494,0.917874,0.263854,0.154181,0.126902,0.338534,0.772036,0.482985,0.369607,0.152562,0.0892394,0.0972689,0.868724,0.432446,0.837184,0.533,0.7999,0.959851,0.285405,0.211651,0.350185,0.827328,0.79784,0.176651,0.558765,0.703589,0.833927,0.733503,0.460248,0.258748,0.42037,0.829647,0.426621,0.560082,0.741027,0.244618,0.792306,0.856784,0.307781,0.755565,0.809191,0.0724714,0.359483,0.0721288,0.830906,0.828679,0.399558,0.316136,0.390604,0.73509,|0.115975,0.37789,0.431493,0.383219,0.325723,0.822336,0.342562,0.0768117,0.613293,0.178632,0.734898,0.461211,0.489784,0.726547,0.194037,0.84702,0.477528,0.291835,0.247963,0.932094,0.0449623,0.855981,0.11908,0.333482,0.677949,0.0258357,0.763202,0.00304812,0.416191,0.573606,0.912555,0.285412,0.766703,0.5707,0.810895,0.11229,0.223834,0.586154,0.352434,0.0391368,0.737399,0.880185,0.258834,0.614595,0.903951,0.719453,0.0102119,0.461944,0.67993,0.982535,0.0500997,0.718354,0.0331064,0.277904,0.723938,0.106951,0.477771,0.0342144,0.183333,0.721913,0.0514101,0.645584,0.83376,0.173702,0.676216,0.967814,0.446345,0.114857,0.425005,0.370763,0.368996,0.526765,0.551115,0.34447,0.113939,0.69779,0.807103,0.908886,0.146384,0.704217,0.236485,0.06802,0.042281,0.169901,0.953089,0.68266,0.785295,0.500135,0.365149,0.300773,0.861337,0.0177635,0.42156,0.122355,0.280489,0.61322,0.531244,0.979758,0.504543,0.871765,0.314684,0.829269,0.601029,0.413386,0.99763,0.366991,0.213495,0.156571,0.239927,0.952024,0.751293,0.734071,0.314812,0.245523,0.178964,0.704685,0.0120221,0.453688,0.836522,0.219556,0.0865349,0.694792,0.0487368,0.199009,0.143083,0.893307,0.191865,0.45972,0.013987,0.545517,0.204606,0.377949,0.864185,0.455509,0.47722,0.348924,0.99869,0.0973163,0.353413,0.472886,0.237797,0.61322,0.159026,0.0838834,0.07782,0.62686,0.765256,0.619893,0.163341,0.0301272,0.556578,0.202417,0.764703,0.833041,0.79017,0.849009,0.355692,0.572761,0.248703,0.189228,0.295415,0.882979,0.248989,0.997723,0.0107622,0.575407,0.447942,0.716207,0.750134,0.624502,0.93757,0.484961,0.63388,0.647982,0.12352,0.998792,0.139394,0.815022,0.975157,0.153521,0.339723,0.512454,0.572487,0.94552,0.735005,0.114444,0.859174,0.448774,0.672241,0.74615,0.614637,0.587101,0.283941,0.80948,0.859161,0.916546,0.380722,0.12915,0.552285,0.191258,0.0128173,0.74293,0.603843,0.958715,0.560344,0.212369,0.0694042,0.628677,0.327781,0.395229,0.55016,0.733547,0.884215,0.80311,0.0764083,0.225511,0.493983,0.50317,0.183137,0.718689,0.652187,0.272732,0.589736,0.748543,0.173154,0.17589,0.428887,0.614727,0.690557,0.748358,0.316589,0.0312548,0.716752,0.0592346,0.486345,0.106681,0.309973,0.225222,0.372468,0.21727,0.223934,0.70211,0.404402,0.483289,0.787189,0.781515,0.972286,0.948097,0.189454,0.582369,6.62208e-05,0.719767,0.192874,0.175395,0.389055,0.197812,0.604289,0.547712,0.0492524,0.861016,0.431794,0.923887,0.0319362,0.822311,0.355917,0.952635,0.36438,0.207447,0.19778,0.394395,0.279299,0.998664,0.821644,0.34652,0.995936,0.737764,0.84168,0.273971,0.520256,0.497871,0.454292,0.533256,0.785204,0.868848,0.872099,0.609543,0.606765,0.0878431,0.693443,0.015292,0.861462,0.193517,0.0477116,0.225856,0.695317,0.90322,0.333317,0.245516,0.024637,0.619883,0.965433,0.494853,0.459616,0.435512,0.747605,0.499888,0.579094,0.185955,0.471816,0.0887823,0.264696,0.857401,0.385863,0.930257,0.451434,0.564792,0.604839,0.994835,0.397263,0.225997,0.441377,0.964096,0.384278,0.0569357,0.161518,0.946453,0.270565,0.365338,0.320027,0.514564,0.974143,0.206246,0.696391,0.219473,0.270289,0.571403,0.0386485,0.88909,0.8266,0.111166,0.341281,0.861815,0.204337,0.560443,0.882455,0.397586,0.0515504,0.475251,0.719975,0.480121,0.425995,0.12509,0.268149,0.609077,0.0548215,0.94079,0.598868,0.789443,0.127258,0.682179,0.836533,0.153201,0.254511,0.593989,0.0835154,0.602524,0.289341,0.852509,0.865946,0.919305,0.356537,0.302741,0.293955,0.925855,0.506669,0.300683,0.604845,0.420481,0.288788,0.963025,0.128332,0.618867,0.340201,0.893074,0.363796,0.790294,0.82161,0.774886,0.480128,0.725203,0.960294,0.477174,0.880891,0.360784,0.55361,0.317523,0.43699,0.625615,0.696624,0.889819,0.0140994,0.0528525,0.926793,0.704606,0.0278366,0.759134,0.917288,0.436949,0.763951,0.197175,0.17634,0.30481,0.786885,0.445655,0.783583,0.594668,0.329962,0.85554,0.839959,0.649999,0.29453,0.859502,0.847026,0.346755,0.689461,0.381236,0.453139,0.556164,0.977759,0.338685,0.341123,0.92251,0.050364,0.531234,0.00107527,0.0236714,0.550895,0.66451,0.517903,0.431014,0.381779,0.50509,0.508539,0.643089,0.11093,0.479486,0.080327,0.172233,0.296989,0.640073,0.300417,0.23048,0.852403,0.13699,0.261579,0.951126,0.467396,0.0327826,0.351475,0.123697,0.473178,0.837372,0.379695,0.56174,0.653166,0.924428,0.784396,0.0982312,0.438862,0.729085,0.530996,0.598176,0.0818782,0.463789,0.820978,0.631374,0.359229,0.917564,0.702985,0.334351,0.620265,0.00617474,0.910831,0.439237,0.219583,0.623747,0.0819041,0.723608,0.254977,0.455789,0.168161,0.265137,0.279109,0.0106392,0.841475,0.0800611,0.0233388,0.43029,0.509452,0.726845,0.550888,0.213743,0.0290337,0.689727,0.0341021,0.875132,0.323546,0.83944,0.131611,0.594662,0.913171,0.0479861,0.624185,0.492023,0.267452,0.253869,0.528162,0.676131,0.546653,0.617213,0.818093,0.954996,0.869021,0.456469,0.375878,0.416734,0.697873,0.209162,0.214173,0.390134,0.229746,0.99781,0.101658,0.102223,0.920358,0.749237,0.587563,0.0895493,0.92436,0.632022,0.841677,0.937126,0.415761,0.361992,0.9202,0.869069,0.377943,0.803069,0.803462,0.459465,0.446589,0.590882,0.979698,0.88304,0.886896,0.743104,0.276834,0.930962,0.547793,0.677735,0.919998,0.584078,0.696289,0.970843,0.397827,0.990592,0.919496,0.162395,0.426021,0.685264,0.842523,0.917486,0.774295,0.00578398,0.0855893,0.921849,0.655207,0.373731,0.491195,0.0751777,0.678507,0.713469,0.455957,0.579352,0.741298,0.958004,0.765512,0.180745,0.671253,0.727869,0.28396,0.131128,0.974791,0.165283,0.406618,0.221732,0.210058,0.290602,0.0835247,0.0516427,0.80563,0.918086,0.320552,0.485829,0.993059,0.884801,0.157821,0.446907,0.184683,0.667125,0.0594886,0.0214866,0.0366585,0.443711,0.956797,0.758438,0.529986,0.746282,0.475723,0.412463,0.567645,0.275277,0.497731,0.411794,0.0156322,0.685869,0.205824,0.273883,0.161006,0.48381,0.750942,0.604545,0.471652,0.708999,0.283984,0.72889,0.610548,0.82609,0.6808,0.955932,0.483657,0.703718,0.0694258,0.441293,0.546151,0.53697,0.927845,0.459122,0.0200603,0.220086,0.153987,0.0747828,0.281503,0.0472122,0.648108,0.942065,0.133262,0.86059,0.273258,0.961039,0.714807,0.0944788,0.555547,0.894055,0.603945,0.304238,0.98114,0.990814,0.263248,0.274562,0.59194,0.293975,0.253908,0.250089,0.834509,0.303303,0.928349,0.250114,0.591541,0.880997,0.226342,0.623468,0.894806,0.85999,0.292175,0.199729,0.761678,0.59615,0.680635,0.203992,0.553844,0.909417,0.166151,0.638803,0.223962,0.549275,0.696311,0.491576,0.867437,0.764854,0.627715,0.450962,0.956059,0.999674,0.681834,0.626903,0.120851,0.758599,0.812472,0.285733,0.978771,0.609106,0.385326,0.225334,0.782724,0.715267,0.588987,0.534008,0.237957,0.319123,0.168154,0.158565,0.356409,0.396128,0.349883,0.687921,0.0646107,0.079724,0.0779752,0.572271,0.317711,0.13432,0.489118,0.220305,0.922766,0.931901,0.737393,0.7172,0.217357,0.516163,0.480401,0.74615,0.991488,0.319075,0.952101,0.156006,0.476277,0.104454,0.406343,0.721774,0.840747,0.0289733,0.522601,0.388941,0.310454,0.956424,0.579592,0.522498,0.11406,0.347194,0.263482,0.971826,0.780102,0.468374,0.0795907,0.295344,0.279826,0.740632,0.699556,0.892302,0.0290056,0.0670277,0.741986,0.554414,0.472426,0.292826,0.24735,0.240587,0.888126,0.0338008,0.10856,0.238204,0.993338,0.160828,0.896635,0.748119,0.645234,0.870918,0.051954,0.7271,0.510384,0.271334,0.294405,0.507833,0.564835,0.160353,0.758816,0.381682,0.443456,0.123344,0.555461,0.735448,0.949939,0.415862,0.0864887,0.282756,0.210919,0.48373,0.260247,0.120323,0.0175076,0.682169,0.171744,0.563709,0.0216755,0.544254,0.397957,0.190902,0.429301,0.763791,0.59306,0.978558,0.466338,0.276768,0.556097,0.659169,0.768365,0.645719,0.251234,0.196272,0.842133,0.963952,0.057056,0.340108,0.202446,0.350991,0.403205,0.792056,0.548833,0.695755,0.333456,0.434718,0.354934,0.809012,0.0869993,0.742542,0.584875,0.542223,0.529904,0.748422,0.262917,0.862442,0.842395,0.368201,0.702742,0.211738,0.942668,0.519361,0.553914,0.241948,0.505121,0.00237894,0.875423,0.527294,0.139992,0.527673,0.184355,0.794056,0.841631,0.838012,0.259775,0.131615,0.352833,0.729896,0.0900226,0.2385,0.776924,0.145816,0.854218,0.401554,0.778129,0.215377,0.775922,0.834326,0.478021,0.718641,0.73306,0.363576,0.847865,0.396901,0.736735,0.404438,0.619535,0.973989,0.575743,0.109586,0.0663344,0.6109,0.0295768,0.49753,0.199869,0.962662,0.126668,0.214766,0.0568717,0.612086,0.251704,0.0964842,0.242016,0.926463,0.524434,0.87282,0.640127,0.791282,0.436674,0.14117,0.617518,0.0366367,0.418839,0.0906597,0.522009,0.658582,0.568491,0.786887,0.454451,0.0752453,0.948882,0.147978,0.539026,0.484646,0.935596,0.149665,0.734161,0.612669,0.221111,0.326461,0.692699,0.105647,0.953469,0.631993,0.208288,0.0746098,0.0535803,0.355879,0.153307,0.415232,0.358528,0.792578,0.422698,0.530367,0.27306,0.283374,0.011083,0.905015,0.568804,0.77777,0.901038,0.12543,0.368162,0.472787,0.226983,0.885359,0.807739,0.0700998,0.494326,0.851955,0.66898,0.899194,0.494727,0.0258695,0.707286,0.442039,0.702775,0.0272741,0.86612,0.291279,0.960896,0.540144,0.0418808,0.178331,0.857656,0.00491107,0.568663,0.92523,0.926428,0.435069,0.106751,0.422265,0.862448,0.435201,0.98704,0.084343,0.324392,0.703732,0.817444,0.619476,0.961627,0.28102,0.815388,0.394523,|0.0243931,0.0887238,0.332049,0.593147,0.599003,0.252321,0.743597,0.980648,0.23288,0.887639,0.59106,0.647677,0.484941,0.202713,0.0797389,0.633837,0.000217021,0.976022,0.274195,0.208334,0.582855,0.329367,0.62958,0.649978,0.344346,0.449067,0.134977,0.941378,0.0418893,0.272706,0.0150813,0.0129665,0.457147,0.200785,0.525678,0.596923,0.760565,0.16368,0.0241592,0.744826,0.104504,0.771029,0.325178,0.336537,0.922319,0.985561,0.986505,0.744166,0.901923,0.976614,0.554069,0.193243,0.395179,0.387835,0.407365,0.781363,0.298111,0.297309,0.855559,0.536616,0.425774,0.551324,0.584399,0.843526,0.543918,0.54697,0.266206,0.570748,0.472623,0.00996947,0.181803,0.687083,0.818246,0.870937,0.317081,0.258007,0.351918,0.16345,0.719135,0.653921,0.816836,0.353334,0.597518,0.644056,0.778241,0.471341,0.610345,0.790383,0.722436,0.896589,0.79801,0.711346,0.870799,0.666297,0.909378,0.240632,0.830909,0.601821,0.0314968,0.96374,0.273693,0.546224,0.265282,0.260912,0.485112,0.620155,0.593413,0.817262,0.146944,0.0035789,0.775541,0.525173,0.987741,0.627166,0.0442594,0.833597,0.320928,0.232796,0.870106,0.67345,0.0180965,0.746241,0.927895,0.962809,0.0165886,0.33311,0.0433226,0.91374,0.382393,0.980026,0.133785,0.765581,0.722451,0.435646,0.690428,0.919336,0.615587,0.243469,0.0656319,0.23194,0.144766,0.437038,0.127376,0.732778,0.41287,0.374531,0.986478,0.907232,0.0940807,0.640128,0.897078,0.77569,0.732675,0.220571,0.273521,0.0245258,0.919452,0.872031,0.229409,0.406192,0.397386,0.330376,0.87179,0.51542,0.539888,0.765321,0.893368,0.804244,0.748168,0.669358,0.204871,0.343821,0.120281,0.322234,0.800501,0.850879,0.568317,0.905297,0.91684,0.80835,0.979177,0.790742,0.15069,0.552677,0.250958,0.167815,0.301525,0.952656,0.762292,0.320124,0.796776,0.992103,0.717342,0.142393,0.65421,0.784055,0.106041,0.230732,0.00454617,0.387573,0.280186,0.948122,0.90939,0.98341,0.431522,0.655708,0.132311,0.248992,0.0372373,0.541096,0.138521,0.651609,0.446288,0.27271,0.100623,0.376163,0.0299102,0.669583,0.369935,0.666682,0.954582,0.353973,0.19878,0.61961,0.0548293,0.55648,0.641026,0.211798,0.73728,0.601976,0.575353,0.286617,0.160486,0.522708,0.841417,0.433845,0.897406,0.41165,0.832275,0.0417872,0.0593522,0.627575,0.675968,0.226748,0.603677,0.0159473,0.723851,0.146984,0.224738,0.435859,0.196653,0.220556,0.0984297,0.780937,0.0294845,0.894391,0.203973,0.582044,0.431218,0.80725,0.731043,0.730145,0.932154,0.247332,0.721703,0.912394,0.46476,0.6704,0.23181,0.589534,0.580641,0.115167,0.0979436,0.16649,0.237114,0.0568643,0.597516,0.693769,0.242681,0.402394,0.0160969,0.705393,0.179764,0.498807,0.526244,0.497031,0.746583,0.643293,0.202045,0.313099,0.881973,0.532241,0.73007,0.958465,0.61508,0.138846,0.708586,0.968744,0.590395,0.275946,0.381384,0.840517,0.116766,0.250836,0.401438,0.416163,0.254231,0.404219,0.0219337,0.455498,0.00234526,0.00818622,0.0198581,0.717036,0.808477,0.139418,0.197117,0.575755,0.191463,0.100362,0.10867,0.759072,0.720464,0.852908,0.383984,0.218627,0.491688,0.564628,0.00645882,0.398906,0.585183,0.788054,0.360363,0.595297,0.167418,0.0247813,0.776638,0.654172,0.49961,0.127242,0.726945,0.188634,0.556965,0.116879,0.477978,0.479815,0.340339,0.681685,0.581121,0.0631174,0.787357,0.436902,0.753781,0.0166392,0.567693,0.73756,0.313663,0.723775,0.358581,0.997817,0.870501,0.767404,0.568345,0.18821,0.495382,0.827289,0.737481,0.536734,0.907945,0.951482,0.0136479,0.0068661,0.799429,0.82085,0.5971,0.8969,0.402976,0.0534152,0.882535,0.849398,0.961893,0.673547,0.402163,0.401332,0.66664,0.73095,0.0607653,0.843458,0.391779,0.499559,0.680393,0.228386,0.291728,0.802887,0.997454,0.85556,0.470203,0.474623,0.123934,0.0385067,0.135689,0.439996,0.774902,0.295294,0.21963,0.690538,0.0583246,0.162255,0.951108,0.0297869,0.873859,0.844565,0.486082,0.68719,0.851078,0.628438,0.427948,0.439724,0.233071,0.339198,0.0458215,0.268234,0.585476,0.914543,0.565479,0.380153,0.997152,0.235243,0.350445,0.729348,0.446399,0.174261,0.375244,0.187199,0.627043,0.685248,0.448388,0.880693,0.379863,0.174568,0.458672,0.863353,0.16584,0.823154,0.775693,0.94529,0.0214139,0.91589,0.539992,0.0330409,0.675516,0.0780555,0.220928,0.76637,0.621413,0.533965,0.879204,0.37752,0.341697,0.098174,0.0533519,0.981156,0.0435454,0.867679,0.144501,0.895557,0.197401,0.971837,0.0683784,0.36051,0.0248794,0.11335,0.253035,0.488004,0.857679,0.178439,0.462926,0.163299,0.850668,0.779522,0.0789869,0.0315349,0.855882,0.962555,0.925644,0.573411,0.496358,0.764907,0.746253,0.971281,0.001212,0.224935,0.968369,0.414264,0.76218,0.0355701,0.798034,0.189194,0.620401,0.512219,0.0610052,0.350306,0.448922,0.947432,0.128308,0.649136,0.281448,0.466558,0.72666,0.570786,0.522088,0.450678,0.724033,0.519794,0.747461,0.824099,0.70684,0.801181,0.722383,0.627843,0.893526,0.611631,0.0312098,0.287719,0.535146,0.414182,0.694129,0.662055,0.539908,0.718491,0.797344,0.82843,0.330328,0.670943,0.427195,0.147291,0.519062,0.440999,0.389271,0.806249,0.422694,0.559212,0.732326,0.235267,0.0181109,0.533786,0.0728451,0.337358,0.716317,0.995564,0.812246,0.0635599,0.615782,0.440706,0.644995,0.684339,0.713733,0.878434,0.622615,0.307955,0.930588,0.590259,0.797532,0.266714,0.586532,0.59569,0.84719,0.766899,0.30788,0.554242,0.0407838,0.0847778,0.97362,0.791839,0.210798,0.451592,0.324398,0.00182104,0.157841,0.277668,0.0079723,0.316146,0.047973,0.947665,0.529139,0.840025,0.635375,0.395758,0.534755,0.711189,0.0482879,0.150655,0.933746,0.117405,0.962665,0.733097,0.18734,0.281273,0.376987,0.677427,0.879771,0.942144,0.653704,0.134125,0.538583,0.574662,0.799088,0.64366,0.786558,0.23795,0.74715,0.660737,0.643536,0.322319,0.449473,0.115841,0.589051,0.259084,0.386764,0.673631,0.817665,0.741997,0.28397,0.933009,0.554673,0.575035,0.587072,0.0483935,0.234312,0.639524,0.204595,0.0927623,0.544273,0.869187,0.883409,0.948416,0.631048,0.289181,0.954027,0.914543,0.472169,0.000216961,0.37037,0.788113,0.0342366,0.217284,0.99342,0.344616,0.564911,0.453915,0.0902684,0.44661,0.0460111,0.244009,0.869148,0.410401,0.531462,0.13444,0.570348,0.19731,0.637276,0.0917699,0.495229,0.699836,0.905019,0.0962742,0.611219,0.375323,0.223433,0.221428,0.994661,0.160833,0.070693,0.428476,0.106889,0.842385,0.695633,0.997774,0.742225,0.882811,0.716549,0.0580051,0.753678,0.706436,0.540377,0.129704,0.518893,0.444201,0.414948,0.806546,0.81639,0.386367,0.755059,0.213798,0.195127,0.229915,0.558017,0.244856,0.900394,0.14009,0.233572,0.760397,0.966908,0.072399,0.412184,0.608663,0.402562,0.0913244,0.00178158,0.558782,0.263777,0.633596,0.0886926,0.688987,0.350699,0.469095,0.729695,0.730303,0.99856,0.624359,0.719244,0.577116,0.23542,0.661066,0.768849,0.880583,0.934173,0.0936797,0.496922,0.187045,0.589612,0.118325,0.542479,0.021177,0.121492,0.521118,0.757448,0.0350007,0.20515,0.491067,0.171816,0.440788,0.825313,0.659702,0.734546,0.91179,0.294572,0.1862,0.68659,0.954532,0.28433,0.443243,0.301637,0.218427,0.482823,0.204635,0.938248,0.149681,0.628873,0.962499,0.912497,0.453762,0.157504,0.320697,0.912591,0.549901,0.188877,0.0253402,0.414081,0.0191752,0.777232,0.353537,0.201137,0.0740542,0.195559,0.781349,0.304469,0.776097,0.479543,0.657013,0.693245,0.989305,0.641522,0.615134,0.348955,0.387794,0.867986,0.488487,0.430366,0.312541,0.636389,0.713519,0.516128,0.312918,0.652592,0.241548,0.593064,0.636509,0.0441707,0.337969,0.203443,0.312168,0.542651,0.792297,0.212542,0.122259,0.236514,0.71544,0.379769,0.272603,0.859159,0.424076,0.430444,0.442105,0.908924,0.259841,0.863546,0.944524,0.729469,0.791745,0.228094,0.948879,0.601468,0.0180188,0.63048,0.591266,0.651222,0.441222,0.124985,0.811812,0.426519,0.0907118,0.766862,0.334382,0.371239,0.541057,0.444966,0.069241,0.771869,0.317088,0.471432,0.824311,0.233663,0.736316,0.06995,0.692045,0.0740336,0.475504,0.629649,0.478527,0.481301,0.772472,0.986846,0.997364,0.329627,0.803141,0.777706,0.669625,0.887963,0.533794,0.578291,0.941333,0.149818,0.263294,0.530704,0.407157,0.801578,0.67344,0.853554,0.0418137,0.541148,0.631079,0.00817788,0.226598,0.00834191,0.941628,0.80612,0.696502,0.546829,0.936401,0.298094,0.78959,0.407105,0.531683,0.502216,0.41322,0.152695,0.233841,0.148368,0.454054,0.117482,0.80453,0.824909,0.440434,0.881003,0.461398,0.603963,0.95125,0.413932,0.00384074,0.794474,0.0847429,0.0784464,0.994649,0.569173,0.129671,0.0925884,0.794856,0.46087,0.597553,0.700973,0.724327,0.523559,0.234495,0.888331,0.428799,0.504552,0.613903,0.0332029,0.341763,0.0211424,0.465423,0.164853,0.757837,0.517519,0.13283,0.469981,0.82993,0.194221,0.0443038,0.586413,0.083118,0.411665,0.0682997,0.911088,0.940921,0.40198,0.0123895,0.300494,0.0949841,0.355248,0.542359,0.98182,0.779218,0.441615,0.124733,0.692214,0.405772,0.508141,0.21081,0.26616,0.351284,0.619979,0.372228,0.453145,0.128614,0.767884,0.957556,0.699595,0.468352,0.026219,0.3589,0.18367,0.686073,0.89669,0.179841,0.848959,0.110316,0.698422,0.723242,0.591828,0.637157,0.622039,0.610608,0.0549062,0.271449,0.374785,0.105162,0.501144,0.895734,0.325267,0.868439,0.816298,0.831261,0.791677,0.756428,0.0551729,0.0883213,0.626413,0.485915,0.151611,0.215633,0.440249,0.0343726,0.903782,0.593976,0.825851,0.363977,0.668331,0.291473,|0.158655,0.758699,0.881691,0.58188,0.198975,0.607449,0.816169,0.585925,0.67225,0.966999,0.720451,0.643725,0.145136,0.650225,0.100973,0.939397,0.860193,0.835471,0.0736055,0.274217,0.684775,0.826695,0.751578,0.412152,0.187253,0.251247,0.926573,0.10052,0.45958,0.163352,0.604567,0.944101,0.2047,0.0559093,0.878101,0.831475,0.346364,0.850428,0.405922,0.785574,0.264845,0.337784,0.0130064,0.302336,0.0274082,0.476473,0.030879,0.575578,0.437038,0.430979,0.613284,0.927859,0.149349,0.832026,0.901438,0.519806,0.726329,0.731313,0.445988,0.292692,0.147834,0.481594,0.857899,0.42329,0.264358,0.39659,0.761425,0.140064,0.292084,0.129699,0.858387,0.234327,0.374874,0.424304,0.169044,0.808615,0.525697,0.963,0.748486,0.765913,0.367211,0.769372,0.778235,0.912877,0.72617,0.0684928,0.720965,0.445049,0.706042,0.389516,0.34105,0.563999,0.433869,0.951149,0.484985,0.973561,0.195682,0.684492,0.23903,0.0542208,0.707856,0.378325,0.308662,0.389634,0.880834,0.959739,0.917167,0.406038,0.893866,0.956884,0.822875,0.39388,0.69985,0.435999,0.428753,0.778299,0.271692,0.786078,0.841099,0.275043,0.552702,0.628643,0.1776,0.950472,0.345547,0.753524,0.487546,0.99595,0.658257,0.166305,0.474676,0.470605,0.906986,0.967843,0.68589,0.575273,0.66649,0.140986,0.346927,0.706716,0.0993853,0.207827,0.852153,0.695093,0.28478,0.738949,0.595846,0.64483,0.879448,0.970678,0.0578306,0.355105,0.517482,0.640986,0.965913,0.277738,0.687132,0.911657,0.0849177,0.364245,0.352346,0.501707,0.314828,0.41003,0.397347,0.709182,0.533823,0.642746,0.455761,0.5515,0.386395,0.799717,0.143282,0.054122,0.844919,0.681954,0.0215158,0.471495,0.3011,0.665056,0.0710909,0.786852,0.334191,0.406394,0.955726,0.254105,0.861418,0.75051,0.240672,0.71514,0.860033,0.819678,0.540817,0.718718,0.226901,0.625887,0.623621,0.745101,0.3396,0.721725,0.816557,0.71029,0.315259,0.148919,0.172779,0.928585,0.935476,0.131909,0.016537,0.870326,0.326506,0.157867,0.42686,0.206066,0.936495,0.0648433,0.156225,0.92866,0.994233,0.509252,0.531126,0.610748,0.839432,0.944024,0.155458,0.886629,0.878466,0.988489,0.140655,0.335517,0.727895,0.770895,0.863083,0.381204,0.425572,0.175391,0.37676,0.178673,0.725815,0.256995,0.512858,0.886228,0.796501,0.0143619,0.898486,0.828767,0.787528,0.518168,0.702431,0.318941,0.465349,0.343183,0.0177574,0.576786,0.210472,0.474832,0.896843,0.462088,0.0167327,0.755757,0.933871,0.0768697,0.840796,0.736536,0.862949,0.422308,0.336821,0.952284,0.540995,0.314466,0.28185,0.888187,0.478487,0.272216,0.249342,0.156425,0.0258579,0.628042,0.322324,0.56814,0.378759,0.719065,0.992253,0.383679,0.326396,0.0260352,0.450429,0.908975,0.400629,0.752478,0.723306,0.0251673,0.329952,0.837147,0.379061,0.628763,0.615358,0.865938,0.331556,0.705523,0.642129,0.318142,0.499776,0.906399,0.219327,0.518376,0.512959,0.740919,0.00386965,0.191294,0.0316493,0.173871,0.00775105,0.63344,0.160537,0.0849554,0.429082,0.131977,0.660251,0.974921,0.384829,0.159419,0.935728,0.431795,0.5,0.739511,0.220757,0.86551,0.937142,0.770745,0.980207,0.842258,0.789387,0.752297,0.025481,0.229565,0.237093,0.0618824,0.403207,0.942252,0.928009,0.231158,0.742025,0.128627,0.821637,0.637194,0.588731,0.850457,0.0934964,0.116816,0.476391,0.261205,0.189973,0.604163,0.518122,0.254364,0.282782,0.0409901,0.238542,0.439843,0.970921,0.674296,0.824343,0.669239,0.158113,0.318913,0.488858,0.189568,0.70441,0.850922,0.716459,0.315549,0.80461,0.513771,0.802005,0.487935,0.911031,0.306312,0.0409727,0.757294,0.34979,0.282801,0.634129,0.792912,0.859499,0.193604,0.199645,0.155035,0.313241,0.228942,0.69976,0.26484,0.902477,0.0665376,0.092708,0.798384,0.931399,0.890926,0.64938,0.261075,0.42418,0.0326546,0.0768687,0.740795,0.516214,0.682307,0.690914,0.293111,0.895356,0.911182,0.578022,0.00608528,0.466491,0.669165,0.236569,0.979699,0.0182731,0.836072,0.515743,0.758512,0.200717,0.252921,0.482775,0.899763,0.610561,0.381496,0.652423,0.265826,0.110759,0.240112,0.77677,0.922435,0.652675,0.702775,0.920568,0.387674,0.869233,0.565557,0.538325,0.897488,0.436025,0.885574,0.346572,0.0161386,0.354677,0.387044,0.454873,0.777396,0.921346,0.534722,0.912181,0.207293,0.740144,0.839049,0.172564,0.307369,0.334366,0.705802,0.961201,0.875404,0.538782,0.837699,0.948756,0.0549979,0.94107,0.222812,0.206262,0.0399913,0.88807,0.380973,0.326812,0.123796,0.218158,0.0839915,0.712169,0.241849,0.822539,0.271269,0.679837,0.272637,0.951919,0.939397,0.372448,0.922746,0.233836,0.36512,0.448698,0.725947,0.414571,0.504638,0.503375,0.109524,0.248027,0.152075,0.183792,0.7717,0.416252,0.0952076,0.507252,0.0840805,0.721635,0.415506,0.540667,0.223873,0.340749,0.106535,0.00851154,0.841333,0.599957,0.871104,0.323546,0.0914223,0.516952,0.682787,0.286656,0.264754,0.780953,0.128316,0.110316,0.103123,0.0863911,0.387833,0.433733,0.170263,0.810216,0.43923,0.154845,0.314968,0.670021,0.261872,0.723087,0.967133,0.133592,0.0250685,0.148034,0.552062,0.808691,0.0336627,0.558986,0.109544,0.816338,0.958052,0.0607426,0.25281,0.399546,0.790681,0.00831085,0.842027,0.275621,0.126939,0.831505,0.736284,0.365735,0.667711,0.810579,0.318659,0.0377609,0.523633,0.541936,0.56366,0.425626,0.857794,0.281962,0.810434,0.233457,0.449091,0.389959,0.463608,0.875794,0.650623,0.994137,0.201479,0.71632,0.798312,0.122236,0.606577,0.261955,0.2519,0.244031,0.104294,0.825489,0.44588,0.157942,0.0200984,0.790361,0.073825,0.0688384,0.57054,0.900014,0.935738,0.0427708,0.112209,0.89055,0.734278,0.911461,0.334889,0.360726,0.04149,0.875302,0.232518,0.912768,0.294105,0.0637811,0.426406,0.505539,0.576719,0.505916,0.285224,0.838275,0.13767,0.172283,0.499853,0.360305,0.554652,0.403127,0.824955,0.856117,0.988187,0.884734,0.53591,0.929317,0.143601,0.0758269,0.139123,0.158546,0.606427,0.876429,0.637063,0.508925,0.152518,0.638423,0.901596,0.754886,0.500157,0.622224,0.126992,0.89793,0.839259,0.640433,0.770526,0.675293,0.503236,0.708593,0.941564,0.55178,0.072263,0.0151204,0.946759,0.793558,0.802964,0.38559,0.684007,0.906372,0.505619,0.370298,0.281018,0.0772848,0.665772,0.665024,0.291701,0.133322,0.723089,0.790588,0.33152,0.0392546,0.397694,0.434997,0.491619,0.686032,0.824093,0.975392,0.474887,0.363978,0.73417,0.927882,0.46661,0.45664,0.564285,0.289371,0.341528,0.485507,0.846068,0.47604,0.183586,0.991054,0.280156,0.334244,0.249446,0.557111,0.912183,0.996743,0.451065,0.908581,0.76105,0.895174,0.793447,0.475478,0.782847,0.807261,0.296453,0.915076,0.0821311,0.31959,0.912122,0.158997,0.0864905,0.646357,0.722583,0.606918,0.838465,0.487001,0.576194,0.622222,0.278763,0.187684,0.572692,0.961479,0.764246,0.43294,0.972725,0.774813,0.669986,0.807609,0.752891,0.17229,0.997016,0.76869,0.187371,0.0237764,0.587523,0.341223,0.836455,0.389981,0.241939,0.107272,0.230786,0.546781,0.490504,0.189055,0.294911,0.337716,0.196846,0.704505,0.632272,0.0994296,0.123492,0.880293,0.296366,0.202718,0.50642,0.5364,0.655906,0.0840461,0.344769,0.359815,0.70665,0.280837,0.0483987,0.293953,0.811433,0.113776,0.253796,0.0639886,0.63821,0.52585,0.172903,0.411724,0.286881,0.318655,0.656727,0.167481,0.587697,0.920727,0.968855,0.818208,0.2805,0.700792,0.322676,0.612424,0.986758,0.85069,0.0477884,0.419637,0.308008,0.933296,0.842431,0.541733,0.49586,0.931723,0.642234,0.799871,0.156599,0.669432,0.415974,0.3598,0.959323,0.273683,0.227658,0.78974,0.673715,0.0967859,0.34886,0.0321286,0.758169,0.619595,0.0740135,0.245022,0.179679,0.779544,0.58182,0.67832,0.456711,0.975453,0.407654,0.424295,0.747304,0.101161,0.839609,0.756039,0.891929,0.377269,0.253533,0.490249,0.627306,0.605564,0.939185,0.95461,0.0283967,0.303303,0.030573,0.328894,0.679241,0.700117,0.608044,0.616751,0.209741,0.112115,0.830216,0.105075,0.309293,0.323011,0.017058,0.735168,0.900233,0.0578635,0.694957,0.248069,0.549605,0.000771999,0.860943,0.292945,0.25803,0.875431,0.966694,0.909381,0.687058,0.561457,0.0943426,0.353554,0.259713,0.464433,0.878578,0.365999,0.399603,0.129761,0.147429,0.809672,0.206828,0.638594,0.597879,0.0719154,0.678899,0.615823,0.56852,0.541337,0.932886,0.436727,0.956171,0.541124,0.0689087,0.742926,0.353633,0.623761,0.268275,0.949948,0.0819549,0.890258,0.611877,0.987028,0.980274,0.906654,0.891165,0.505487,0.960876,0.315239,0.223564,0.72618,0.36847,0.833094,0.390626,0.800345,0.156831,0.922539,0.68773,0.477645,0.581099,0.366318,0.882268,0.714558,0.599705,0.497859,0.393499,0.32837,0.391673,0.983081,0.46723,0.075504,0.543967,0.392438,0.394138,0.769464,0.0828761,0.191586,0.0680583,0.3061,0.124543,0.475103,0.0353251,0.890012,0.251815,0.281509,0.83011,0.764081,0.536113,0.254329,0.570513,0.997352,0.671736,0.75867,0.554624,0.835718,0.915607,0.699902,0.500075,0.960929,0.334619,0.371226,0.823145,0.569429,0.110722,0.0051223,0.359794,0.906354,0.917607,0.45418,0.59014,0.767941,0.409578,0.846878,0.0204352,0.191999,0.292406,0.309858,0.541818,0.932712,0.57343,0.326533,0.296149,0.868853,0.72754,0.740015,0.599734,0.157771,0.311264,0.886431,0.471841,0.316861,0.0195217,0.353335,0.726709,0.0331931,0.855774,0.580749,0.183183,0.182598,0.669031,0.886864,0.235599,0.128042,0.355075,0.240323,0.377014,0.964833,0.576154,0.597402,0.821412,0.643422,0.895956,0.584297,0.773758,|0.678366,0.483659,0.29125,0.0311094,0.0909134,0.450878,0.954523,0.247547,0.727945,0.823977,0.302392,0.0782861,0.082406,0.357855,0.870979,0.137176,0.478678,0.849115,0.214192,0.849223,0.204258,0.410514,0.455977,0.479443,0.251485,0.839621,0.418169,0.0763314,0.128774,0.700007,0.407061,0.30026,0.76072,0.46558,0.771287,0.78314,0.370042,0.245315,0.325471,0.141099,0.115841,0.429898,0.878392,0.187301,0.866855,0.18788,0.402597,0.0444079,0.654671,0.610604,0.250941,0.617339,0.211205,0.476587,0.387733,0.287636,0.471912,0.982009,0.908112,0.539196,0.547889,0.983483,0.430996,0.127131,0.379937,0.0759983,0.302692,0.504015,0.538474,0.877215,0.349805,0.891802,0.526901,0.411578,0.710186,0.925062,0.842889,0.243057,0.261093,0.782317,0.136862,0.398398,0.686658,0.16725,0.141158,0.699662,0.816198,0.797168,0.277161,0.0448151,0.32161,0.940704,0.217591,0.214997,0.545532,0.690142,0.847074,0.850051,0.274416,0.997439,0.068588,0.157811,0.627551,0.566385,0.47038,0.130656,0.815474,0.0554516,0.843328,0.290338,0.224254,0.905465,0.817515,0.705758,0.399749,0.555577,0.603547,0.304905,0.658027,0.993974,0.509948,0.293639,0.543193,0.0477155,0.309334,0.935918,0.0146963,0.599356,0.547369,0.334074,0.764686,0.941294,0.771544,0.235984,0.359492,0.294128,0.254129,0.287201,0.228372,0.982132,0.408695,0.723177,0.302705,0.683847,0.567927,0.452511,0.746082,0.972263,0.735875,0.448333,0.670767,0.810037,0.968879,0.230133,0.170488,0.322782,0.00555301,0.935118,0.162053,0.101542,0.976339,0.0220949,0.514473,0.58027,0.000811458,0.48053,0.201902,0.766468,0.55366,0.507149,0.738191,0.250021,0.960217,0.119442,0.957326,0.142671,0.632461,0.932488,0.696608,0.284802,0.321049,0.535566,0.228853,0.710707,0.0561532,0.106188,0.297519,0.204781,0.230848,0.327224,0.917019,0.280838,0.0380511,0.70266,0.627239,0.636226,0.547676,0.796507,0.815456,0.16042,0.40066,0.441015,0.306159,0.889515,0.848958,0.387863,0.178184,0.00256884,0.941166,0.587498,0.989687,0.435075,0.972074,0.866432,0.330874,0.644966,0.992149,0.0832226,0.382286,0.234773,0.338858,0.884073,0.175383,0.00388402,0.363666,0.705138,0.558375,0.799181,0.56011,0.0554042,0.387095,0.742909,0.259133,0.81833,0.0525448,0.249128,0.287832,0.114948,0.995658,0.864391,0.720833,0.314095,0.995385,0.993122,0.126712,0.860121,0.248175,0.00569022,0.934986,0.669243,0.400134,0.192526,0.734755,0.760673,0.822999,0.916495,0.460546,0.259019,0.308856,0.165735,0.146411,0.173427,0.901243,0.77026,0.228348,0.863859,0.542273,0.821068,0.9033,0.551261,0.0743603,0.000823498,0.602525,0.912095,0.930402,0.240728,0.293484,0.512256,0.404853,0.163531,0.833392,0.8227,0.900162,0.185734,0.00843638,0.216782,0.73005,0.786418,0.273059,0.304132,0.0607436,0.0968133,0.0277767,0.770213,0.190941,0.917959,0.419023,0.145455,0.0676258,0.29772,0.552883,0.169989,0.100782,0.17642,0.822699,0.28763,0.298992,0.300363,0.655534,0.386413,0.0826001,0.423094,0.154544,0.981505,0.976581,0.651794,0.647555,0.562711,0.790488,0.861022,0.171101,0.973087,0.181733,0.441634,0.25469,0.503603,0.372708,0.256181,0.751554,0.468033,0.550389,0.435447,0.646725,0.0928933,0.222893,0.982674,0.576058,0.521836,0.246859,0.0539727,0.42795,0.804693,0.697101,0.7597,0.215997,0.378881,0.582635,0.581306,0.192059,0.955477,0.714789,0.671659,0.0450516,0.01612,0.635934,0.0130726,0.331472,0.873389,0.769178,0.46509,0.536028,0.227332,0.213859,0.759966,0.0502583,0.899562,0.0911851,0.496097,0.393449,0.270599,0.668566,0.807728,0.275087,0.885838,0.59823,0.414154,0.118277,0.641446,0.666192,0.0762696,0.650923,0.689881,0.145729,0.49873,0.374045,0.073938,0.149341,0.292094,0.223971,0.0552166,0.661369,0.102865,0.19834,0.874603,0.247618,0.598484,0.167848,0.420389,0.444107,0.0663918,0.248292,0.615255,0.764016,0.0313576,0.863838,0.311123,0.038685,0.712881,0.155386,0.0467619,0.769062,0.0773662,0.627675,0.849335,0.64201,0.424488,0.280765,0.861155,0.158828,0.471657,0.768021,0.5002,0.857845,0.116472,0.421381,0.705699,0.736105,0.532689,0.45536,0.308125,0.239434,0.336663,0.75333,0.0398215,0.791216,0.367272,0.112327,0.259094,0.866567,0.221293,0.991039,0.491276,0.0341355,0.797336,0.946171,0.0427431,0.432221,0.654996,0.529759,0.589886,0.93164,0.0810943,0.609057,0.452723,0.71289,0.616051,0.406265,0.381492,0.899511,0.797686,0.604387,0.613737,0.351755,0.0548987,0.747752,0.226069,0.386783,0.451438,0.106068,0.258268,0.497662,0.253426,0.0471514,0.00973803,0.235548,0.285256,0.501016,0.217677,0.454619,0.253702,0.77325,0.731189,0.0580871,0.00804055,0.958751,0.292937,0.646426,0.776401,0.864078,0.38996,0.910907,0.069415,0.785754,0.839523,0.791176,0.382396,0.622554,0.467792,0.4998,0.62111,0.140796,0.841463,0.527518,0.677399,0.600927,0.722168,0.00429016,0.107226,0.160301,0.978722,0.423007,0.915978,0.799059,0.309295,0.10728,0.226712,0.570493,0.275266,0.42886,0.44079,0.403132,0.199779,0.446878,0.238756,0.381226,0.768426,0.742889,0.997083,0.950651,0.724028,0.220576,0.946876,0.92842,0.379395,0.40273,0.756491,0.998646,0.201413,0.783486,0.168217,0.629731,0.154834,0.125054,0.0975711,0.329301,0.659092,0.414224,0.55538,0.290499,0.0146526,0.762557,0.458651,0.270963,0.845703,0.1496,0.896898,0.17723,0.810421,0.0145237,0.889578,0.1188,0.729735,0.0652871,0.606214,0.812939,0.00759906,0.228709,0.0897737,0.432831,0.479498,0.732316,0.49793,0.246493,0.65355,0.725478,0.636543,0.223406,0.55109,0.265923,0.959722,0.85612,0.175771,0.178959,0.673599,0.648217,0.864234,0.458189,0.902526,0.0308378,0.712507,0.030335,0.610328,0.368048,0.285013,0.155693,0.169035,0.0732238,0.32011,0.181201,0.202146,0.751575,0.518074,0.64777,0.33529,0.819131,0.223437,0.681789,0.557199,0.843999,0.646718,0.0877581,0.763535,0.244832,0.217582,0.693378,0.467901,0.0870393,0.179051,0.31836,0.74181,0.295301,0.934839,0.447594,0.800473,0.520514,0.680014,0.714018,0.106895,0.255317,0.615605,0.25104,0.973069,0.765017,0.164517,0.805027,0.0323731,0.0170069,0.91052,0.860554,0.698264,0.375042,0.287224,0.0369241,0.22447,0.0213078,0.570334,0.367903,0.470059,0.778328,0.241085,0.0631982,0.334293,0.242444,0.583038,0.826955,0.288098,0.742076,0.202531,0.530586,0.745305,0.504694,0.284628,0.841076,0.596959,0.406452,0.864723,0.1962,0.221402,0.839664,0.314208,0.241088,0.662397,0.0145673,0.357431,0.378216,0.355547,0.476886,0.938508,0.200705,0.436663,0.053392,0.858854,0.987968,0.396197,0.174545,0.386877,0.863883,0.948595,0.134106,0.931782,0.111791,0.0328466,0.755754,0.413625,0.344018,0.917823,0.239861,0.101746,0.620543,0.283086,0.342592,0.430784,0.195831,0.962581,0.830645,0.168835,0.364589,0.683856,0.625929,0.20684,0.381394,0.682326,0.676676,0.866146,0.567043,0.654644,0.620917,0.0774555,0.653473,0.516511,0.415269,0.998882,0.630261,0.0792447,0.409738,0.820048,0.538532,0.244308,0.669109,0.343718,0.488982,0.12598,0.331638,0.857988,0.00657052,0.5431,0.383213,0.0469322,0.712296,0.719606,0.0133491,0.276842,0.605949,0.312426,0.669837,0.841032,0.454246,0.600409,0.365871,0.743475,0.783331,0.536928,0.368671,0.794835,0.854915,0.24457,0.0206203,0.0669578,0.374418,0.912981,0.515835,0.628327,0.691899,0.874308,0.43829,0.524095,0.225815,0.122313,0.460171,0.789167,0.896701,0.696288,0.548209,0.748287,0.707417,0.863803,0.277068,0.544592,0.266608,0.401034,0.326885,0.166474,0.599263,0.840247,0.688014,0.0277077,0.381474,0.371878,0.0294097,0.872851,0.0743461,0.0892282,0.0666858,0.635963,0.215755,0.369848,0.911929,0.00525731,0.129055,0.0773625,0.836921,0.763927,0.0114073,0.44669,0.0496408,0.252003,0.661129,0.372673,0.0701954,0.878135,0.502634,0.0800593,0.0422553,0.20937,0.0788606,0.735186,0.897449,0.864567,0.162296,0.984271,0.645189,0.231482,0.342062,0.830645,0.933704,0.215579,0.389496,0.306235,0.162572,0.422175,0.0155135,0.143237,0.675652,0.150119,0.00751287,0.221719,0.6044,0.0803856,0.810889,0.353137,0.611616,0.004067,0.79928,0.481117,0.005216,0.637044,0.43787,0.662967,0.373601,0.789608,0.399343,0.258595,0.440369,0.0331935,0.612652,0.747128,0.631343,0.578949,0.903556,0.850253,0.261688,0.344204,0.325342,0.180957,0.976009,0.267819,0.760226,0.705923,0.594059,0.137168,0.484557,0.33324,0.452106,0.666506,0.548756,0.428024,0.688104,0.173473,0.585138,0.631656,0.204438,0.685587,0.919863,0.715125,0.346392,0.213441,0.406067,0.0963848,0.308256,0.71725,0.83861,0.236416,0.14661,0.860899,0.736724,0.36064,0.990197,0.818138,0.0618504,0.31098,0.856254,0.412269,0.633884,0.254979,0.574663,0.581925,0.0403592,0.924363,0.374334,0.70588,0.454396,0.745652,0.0982714,0.235524,0.654338,0.393743,0.744786,0.501426,0.572965,0.236357,0.650485,0.83294,0.311693,0.860375,0.500862,0.453343,0.0673465,0.0877898,0.466991,0.266803,0.552963,0.943984,0.160363,0.387588,0.23374,0.633983,0.837027,0.928873,0.207471,0.569757,0.587059,0.0546389,0.293066,0.412063,0.63559,0.598646,0.305829,0.457494,0.141443,0.436292,0.29307,0.573715,0.707105,0.415466,0.401884,0.618005,0.0584005,0.753757,0.774243,0.656943,0.644119,0.090281,0.574724,0.733726,0.209203,0.106142,0.399264,0.284567,0.258967,0.736659,0.439946,0.701269,0.479135,0.840392,0.0500727,0.179633,0.00841391,0.623917,0.481404,0.881526,0.125774,0.940586,0.067991,0.160098,0.641773,0.25655,0.900699,0.516207,0.556111,0.726023,0.563859,0.811965,0.914094,0.586675,0.752255,0.539358,0.171372,0.246585,0.241214,0.529843,|0.990018,0.162268,0.94611,0.628182,0.600341,0.0550489,0.879062,0.262513,0.0455395,0.759141,0.202012,0.332644,0.165052,0.0765205,0.374576,0.387451,0.16588,0.711873,0.638572,0.340933,0.714395,0.00834346,0.415926,0.652538,0.889111,0.820141,0.47622,0.549014,0.541971,0.510601,0.884999,0.0396635,0.840028,0.728429,0.855709,0.758262,0.975187,0.807884,0.482376,0.77906,0.341143,0.940865,0.587005,0.611747,0.258757,0.275823,0.402508,0.142951,0.0272046,0.716671,0.213786,0.871454,0.364632,0.779068,0.162265,0.0917714,0.86769,0.415977,0.183041,0.97293,0.709949,0.505226,0.295154,0.961411,0.370968,0.491414,0.257755,0.0627457,0.937529,0.607731,0.974237,0.509387,0.964156,0.923013,0.53977,0.481615,0.511506,0.51233,0.0360093,0.521335,0.808709,0.785542,0.0793203,0.71821,0.758393,0.212304,0.243238,0.374673,0.297835,0.64191,0.467254,0.907803,0.839542,0.187794,0.191068,0.29241,0.596354,0.139312,0.970454,0.998255,0.0767202,0.944434,0.656115,0.614644,0.661248,0.61108,0.554987,0.242102,0.838173,0.785564,0.238037,0.585767,0.149449,0.844954,0.758811,0.590096,0.846445,0.882703,0.413005,0.912874,0.75748,0.0706561,0.0804406,0.0478809,0.817214,0.402318,0.361877,0.596029,0.70154,0.61864,0.555292,0.836082,0.380888,0.89705,0.323987,0.563584,0.970588,0.527981,0.174229,0.919163,0.759673,0.804162,0.467311,0.932341,0.624642,0.147117,0.082303,0.801736,0.132153,0.359074,0.762203,0.576238,0.457468,0.697246,0.555,0.913903,0.584147,0.0105643,0.798375,0.567868,0.576247,0.905387,0.323062,0.649248,0.303954,0.836874,0.962545,0.0296755,0.929456,0.549274,0.734647,0.807715,0.469123,0.307849,0.158526,0.271205,0.59888,0.00991994,0.804517,0.991151,0.658198,0.907716,0.543452,0.0282913,0.782301,0.698966,0.978491,0.29631,0.0911587,0.997073,0.831527,0.595876,0.349567,0.125113,0.417915,0.0830312,0.496193,0.215196,0.316168,0.968722,0.056971,0.192073,0.111636,0.0817403,0.703753,0.321561,0.447367,0.332622,0.229201,0.720389,0.84949,0.169277,0.168645,0.543759,0.910082,0.555028,0.635927,0.159817,0.855574,0.119425,0.638062,0.405805,0.934831,0.0442236,0.227128,0.0522349,0.72447,0.893097,0.41346,0.260556,0.204408,0.410548,0.27502,0.507697,0.00574172,0.216455,0.116209,0.998499,0.811472,0.163898,0.150449,0.75133,0.140953,0.505219,0.454392,0.795938,0.59358,0.494753,0.51486,0.595941,0.832723,0.52497,0.68774,0.27254,0.402297,0.0557274,0.701682,0.426908,0.812207,0.140977,0.954483,0.691812,0.0438254,0.370511,0.382168,0.900261,0.306919,0.151542,0.0851005,0.143317,0.0513206,0.731933,0.148463,0.0809054,0.816026,0.275857,0.841878,0.674636,0.000533819,0.541564,0.313061,0.153167,0.164364,0.14259,0.167928,0.139969,0.356606,0.0210472,0.92118,0.0101098,0.813858,0.101235,0.562873,0.352899,0.840003,0.41893,0.900601,0.104675,0.756367,0.811547,0.105143,0.87216,0.498151,0.131804,0.37057,0.72613,0.829362,0.683457,0.723331,0.746028,0.1831,0.712119,0.562243,0.661029,0.745665,0.734966,0.549688,0.0210665,0.272492,0.237667,0.526779,0.275031,0.904133,0.589501,0.110189,0.0269945,0.728146,0.182509,0.0255288,0.553823,0.230233,0.920705,0.0274265,0.487055,0.895198,0.670154,0.636899,0.91959,0.315144,0.294363,0.924017,0.433129,0.289195,0.44343,0.322736,0.340732,0.769174,0.876921,0.187313,0.395653,0.929386,0.0624672,0.474673,0.548119,0.88601,0.784174,0.742494,0.00718522,0.259427,0.427423,0.0125144,0.726936,0.750106,0.476614,0.69887,0.649672,0.469292,0.347186,0.892281,0.972288,0.606217,0.925606,0.0740435,0.873,0.536043,0.328336,0.185412,0.752611,0.456638,0.981495,0.889781,0.0369954,0.488684,0.404747,0.018144,0.0621767,0.909683,0.733442,0.372953,0.249846,0.747573,0.0840676,0.826608,0.0228237,0.240393,0.585238,0.268506,0.571164,0.936337,0.590514,0.32835,0.945619,0.12545,0.773626,0.647201,0.431969,0.28594,0.0831652,0.607033,0.706255,0.193562,0.420899,0.370208,0.185513,0.0820565,0.202705,0.262957,0.178243,0.228946,0.910382,0.915425,0.0528073,0.317972,0.952362,0.922976,0.791106,0.843964,0.873147,0.920258,0.322481,0.173316,0.143134,0.00406277,0.728902,0.412151,0.979545,0.799215,0.793835,0.204774,0.277168,0.994882,0.419136,0.0379504,0.335449,0.116315,0.443339,0.162563,0.622919,0.0979777,0.00852901,0.349564,0.0487974,0.264436,0.626416,0.984169,0.665828,0.151281,0.658141,0.514817,0.650285,0.155247,0.561463,0.110925,0.197005,0.669952,0.871195,0.529975,0.973932,0.075334,0.850471,0.761292,0.388263,0.313638,0.888827,0.328964,0.763676,0.567389,0.755125,0.0422528,0.885029,0.064595,0.918822,0.478512,0.421757,0.198591,0.836498,0.241662,0.255868,0.210208,0.0295516,0.555881,0.258359,0.0588098,0.159522,0.0775534,0.428094,0.683114,0.856493,0.588014,0.283674,0.549701,0.410169,0.470749,0.860762,0.773465,0.377428,0.380932,0.251614,0.45437,0.194439,0.956719,0.364296,0.980433,0.895976,0.621014,0.802384,0.132847,0.632544,0.839606,0.0314145,0.0274773,0.999523,0.0931256,0.85085,0.842772,0.498796,0.974519,0.473319,0.616418,0.804438,0.751377,0.0205951,0.39657,0.225578,0.974245,0.68681,0.818519,0.230002,0.174364,0.532952,0.410963,0.899561,0.485404,0.0526541,0.736547,0.127554,0.801551,0.522926,0.983844,0.601001,0.198579,0.635979,0.592009,0.180202,0.757517,0.77122,0.957244,0.883524,0.00620711,0.578283,0.235032,0.675816,0.377476,0.260988,0.818668,0.452226,0.918288,0.00540209,0.210792,0.111305,0.19158,0.518364,0.295565,0.626852,0.389723,0.428662,0.131434,0.0761632,0.309672,0.744429,0.417602,0.835158,0.295678,0.210612,0.345738,0.37696,0.793126,0.189518,0.761084,0.0200307,0.44547,0.054582,0.830904,0.401916,0.843491,0.910411,0.634179,0.869019,0.678944,0.543576,0.164981,0.270692,0.0103688,0.0908054,0.301945,0.839337,0.148736,0.869676,0.455085,0.463294,0.493205,0.216581,0.102955,0.80599,0.337624,0.27198,0.625159,0.543525,0.566561,0.34707,0.0150782,0.316122,0.488263,0.836906,0.0761652,0.711028,0.671594,0.875579,0.0181556,0.899662,0.451756,0.639661,0.836205,0.437473,0.819383,0.157723,0.178306,0.177093,0.984326,0.342367,0.674431,0.385788,0.0741354,0.016335,0.179364,0.742804,0.594373,0.275807,0.0815715,0.452814,0.796734,0.763805,0.461174,0.013001,0.363482,0.0439287,0.823127,0.310706,0.737235,0.749313,0.00495058,0.0978232,0.197685,0.213354,0.807084,0.938348,0.0182078,0.992491,0.724099,0.898697,0.432671,0.683011,0.0770261,0.998796,0.822693,0.1481,0.229339,0.576932,0.735082,0.466441,0.882786,0.53215,0.927481,0.268572,0.48675,0.385972,0.625773,0.0221975,0.566466,0.61686,0.340553,0.28654,0.224018,0.584741,0.58545,0.946767,0.945409,0.747718,0.729268,0.504299,0.75251,0.552222,0.183824,0.450045,0.965126,0.410798,0.389566,0.772326,0.657174,0.303504,0.801413,0.98596,0.624821,0.139606,0.666934,0.093679,0.473604,0.734594,0.213932,0.680869,0.434817,0.367286,0.332496,0.719118,0.136702,0.632153,0.356707,0.326145,0.701145,0.197364,0.0282946,0.517961,0.2012,0.400986,0.598122,0.0171173,0.542596,0.0209914,0.438182,0.498001,0.58553,0.0451655,0.132592,0.868691,0.739367,0.185956,0.841052,0.793463,0.638531,0.708561,0.389877,0.343767,0.0084613,0.9258,0.0537394,0.360232,0.878389,0.916055,0.967573,0.122826,0.531614,0.343047,0.600967,0.491389,0.430026,0.287161,0.0490056,0.674618,0.051291,0.0664962,0.746035,0.985674,0.487632,0.814486,0.49212,0.963266,0.826027,0.946855,0.173452,0.256452,0.773156,0.325477,0.822265,0.535995,0.380753,0.686214,0.178726,0.627189,0.0167328,0.881849,0.395143,0.409059,0.0905591,0.804141,0.312829,0.850538,0.711484,0.868563,0.123231,0.125808,0.173163,0.645947,0.258943,0.248778,0.448586,0.286856,0.46437,0.346315,0.743913,0.486113,0.918655,0.894418,0.232072,0.215312,0.868024,0.573204,0.534227,0.149277,0.548085,0.0462768,0.886823,0.78445,0.758979,0.726185,0.492896,0.432576,0.79302,0.789794,0.157276,0.69647,0.813925,0.938639,0.00775462,0.129848,0.0175167,0.394573,0.574898,0.463482,0.970021,0.212619,0.58973,0.436989,0.22608,0.448766,0.173375,0.868444,0.240571,0.428495,0.560389,0.273301,0.909881,0.545042,0.839246,0.592832,0.68416,0.450144,0.915124,0.0190478,0.677118,0.0689765,0.385269,0.313575,0.489455,0.333042,0.221845,0.522651,0.150121,0.178154,0.853705,0.982148,0.913052,0.249918,0.993521,0.0912482,0.83418,0.114181,0.650331,0.819478,0.32199,0.206922,0.281434,0.653893,0.658566,0.789548,0.776856,0.257958,0.42759,0.770986,0.579377,0.355067,0.324451,0.827029,0.756715,0.483324,0.870173,0.952649,0.911641,0.0844156,0.695595,0.472318,0.0533355,0.939405,0.573271,0.759937,0.0106044,0.166893,0.819602,0.53736,0.643107,0.842385,0.779421,0.196816,0.0658594,0.334221,0.165496,0.620463,0.566027,0.563492,0.703342,0.497552,0.314384,0.586015,0.802682,0.204753,0.725559,0.256502,0.242747,0.10053,0.778275,0.432605,0.12768,0.965807,0.897385,0.425234,0.732072,0.21453,0.204185,0.611155,0.88237,0.311675,0.235427,0.635892,0.380393,0.572664,0.621388,0.264857,0.979307,0.926137,0.445928,0.745603,0.583733,0.354139,0.98062,0.423668,0.387414,0.242668,0.521234,0.897797,0.108602,0.123954,0.488236,0.862612,0.257211,0.678351,0.318762,0.666075,0.271924,0.665297,0.884634,0.600278,0.27266,0.343736,0.387684,0.653673,0.691346,0.400563,0.716972,0.349238,0.936294,0.800369,0.433373,0.468993,0.641306,0.811047,0.994226,0.161538,0.486816,0.906072,0.400657,0.146406,0.311293,0.053799,0.546473,0.432963,0.849368,0.783462,0.272773,0.298724,0.579931,0.111785,|0.281757,0.631476,0.742056,0.619728,0.870576,0.0666614,0.338295,0.419175,0.516147,0.0920247,0.543233,0.143165,0.349745,0.199048,0.445875,0.97718,0.59965,0.61379,0.237992,0.953592,0.360305,0.810419,0.515111,0.208189,0.718834,0.354023,0.975848,0.614621,0.31912,0.267761,0.286562,0.978019,0.0435588,0.50084,0.806069,0.147209,0.85174,0.39739,0.494213,0.0332116,0.332276,0.75591,0.518083,0.637533,0.437256,0.625496,0.855023,0.0512818,0.6146,0.148581,0.657035,0.426972,0.380177,0.438437,0.263829,0.525343,0.98271,0.267527,0.962366,0.352165,0.489572,0.061322,0.651127,0.837812,0.149675,0.382796,0.571607,0.914413,0.32409,0.563214,0.152303,0.631266,0.402751,0.894691,0.0279824,0.735937,0.887933,0.018066,0.953616,0.390997,0.396758,0.384888,0.766136,0.199627,0.378593,0.603209,0.417216,0.939196,0.773994,0.875697,0.414573,0.804285,0.198523,0.729975,0.471456,0.248418,0.209437,0.377432,0.957033,0.555926,0.217905,0.98193,0.950714,0.205351,0.368823,0.909056,0.426716,0.721397,0.771397,0.115191,0.194814,0.39562,0.886763,0.929444,0.449335,0.6263,0.140591,0.917248,0.522717,0.120342,0.57483,0.50263,0.596983,0.0541503,0.494964,0.321139,0.409906,0.0854142,0.890133,0.426678,0.850326,0.210016,0.30402,0.933813,0.117169,0.446503,0.752572,0.973012,0.118222,0.903284,0.580051,0.582849,0.433648,0.185331,0.0629382,0.0580153,0.468605,0.150288,0.232036,0.765789,0.766312,0.481978,0.920978,0.653208,0.457561,0.166521,0.291017,0.659892,0.325437,0.721745,0.679342,0.61545,0.604036,0.867487,0.720705,0.85297,0.587636,0.768538,0.475182,0.428249,0.519595,0.0282016,0.552602,0.140892,0.104508,0.723877,0.955618,0.918643,0.0545972,0.331764,0.0438494,0.747652,0.945791,0.951502,0.660627,0.620091,0.722924,0.400348,0.147255,0.88078,0.556666,0.344856,0.713603,0.11033,0.60605,0.968169,0.665297,0.616866,0.575533,0.412632,0.76681,0.112041,0.62226,0.926124,0.782775,0.447179,0.905696,0.770442,0.150762,0.690882,0.854314,0.339106,0.349705,0.769395,0.268672,0.951252,0.10301,0.984853,0.135245,0.79782,0.383936,0.195747,0.348086,0.330677,0.130241,0.9323,0.840572,0.746773,0.428563,0.302589,0.80193,0.386356,0.523606,0.503783,0.906702,0.176477,0.236777,0.605157,0.0509989,0.067537,0.939975,0.966546,0.739684,0.383158,0.873777,0.792123,0.912284,0.424456,0.256998,0.839725,0.49939,0.404835,0.451956,0.413031,0.867866,0.542281,0.71162,0.451946,0.803599,0.522474,0.109365,0.638648,0.308986,0.190976,0.967951,0.911416,0.00858057,0.619795,0.507192,0.631255,0.529085,0.132748,0.306446,0.48528,0.31909,0.01642,0.741541,0.159752,0.963205,0.92568,0.939784,0.403444,0.614043,0.389477,0.552057,0.109696,0.637919,0.751215,0.724441,0.61407,0.415863,0.96479,0.898427,0.82272,0.898688,0.146032,0.0152317,0.256955,0.742323,0.685451,0.590237,0.887612,0.668336,0.479916,0.589063,0.221283,0.898479,0.40767,0.530868,0.14697,0.79292,0.969379,0.123408,0.270009,0.646964,0.306008,0.996525,0.833389,0.38522,0.118138,0.0553648,0.470272,0.413322,0.200821,0.459646,0.917017,0.172929,0.46779,0.177701,0.462696,0.969181,0.819537,0.870581,0.744535,0.81209,0.80243,0.115517,0.453969,0.184238,0.0388244,0.457211,0.938718,0.15208,0.938554,0.984805,0.991038,0.479554,0.358311,0.985744,0.233297,0.406756,0.924533,0.225465,0.578988,0.744712,0.67243,0.638983,0.201356,0.566087,0.143272,0.279745,0.256579,0.601235,0.232531,0.525556,0.00478345,0.845232,0.58743,0.473328,0.991608,0.0818093,0.633329,0.589229,0.210178,0.640464,0.062924,0.931652,0.502568,0.444177,0.23278,0.226592,0.022187,0.446642,0.990084,0.200561,0.327408,0.423256,0.943036,0.926228,0.674909,0.148736,0.722301,0.180606,0.72532,0.14884,0.370611,0.188854,0.292908,0.828397,0.568583,0.584568,0.325864,0.783615,0.844041,0.82239,0.90216,0.943771,0.968597,0.51589,0.0352166,0.349615,0.698333,0.617458,0.430681,0.0973966,0.398339,0.424379,0.516999,0.513057,0.820776,0.477105,0.931151,0.0153168,0.180873,0.71282,0.724778,0.386969,0.510819,0.14155,0.64586,0.901995,0.164511,0.0865837,0.213825,0.990549,0.93378,0.227559,0.812802,0.194235,0.248588,0.836157,0.0195144,0.931341,0.0840144,0.201812,0.194247,0.387563,0.867585,0.699462,0.0598178,0.0974022,0.66594,0.854409,0.266064,0.099344,0.985164,0.273763,0.611496,0.265357,0.545046,0.745945,0.45702,0.614113,0.847991,0.679051,0.955725,0.315415,0.686468,0.983153,0.0227475,0.67299,0.641904,0.561722,0.0568034,0.0136562,0.558789,0.235213,0.633046,0.523578,0.741195,0.60471,0.639905,0.402073,0.544958,0.897601,0.269316,0.437363,0.0602164,0.15375,0.980026,0.404926,0.588777,0.0299071,0.408673,0.778669,0.500881,0.0784039,0.238594,0.862055,0.145452,0.258795,0.156251,0.520073,0.698489,0.807978,0.440653,0.162621,0.719912,0.0954184,0.758467,0.711052,0.687441,0.728818,0.0633593,0.470417,0.186279,0.192718,0.99959,0.592754,0.778098,0.236964,0.565444,0.580422,0.89072,0.888411,0.354018,0.158585,0.84089,0.480438,0.380538,0.381477,0.265937,0.963893,0.642316,0.682852,0.67421,0.976655,0.0970938,0.865626,0.697579,0.791391,0.128186,0.529119,0.441112,0.723598,0.965701,0.193417,0.961626,0.951371,0.542065,0.938634,0.36113,0.765758,0.192157,0.555795,0.69773,0.723836,0.25004,0.891046,0.742465,0.601722,0.331941,0.860244,0.60583,0.654504,0.771773,0.280555,0.315952,0.705491,0.252712,0.961829,0.633796,0.244664,0.377882,0.380842,0.32293,0.294296,0.104368,0.0307326,0.36559,0.348613,0.440537,0.957885,0.51915,0.58918,0.61993,0.613522,0.199291,0.481215,0.362482,0.0764157,0.0334313,0.00113028,0.877278,0.656918,0.0191404,0.786429,0.87686,0.112925,0.388986,0.668724,0.947429,0.649034,0.752805,0.569146,0.62559,0.266285,0.224314,0.336235,0.0413008,0.951003,0.216896,0.179075,0.372581,0.268524,0.145414,0.866921,0.0118935,0.249567,0.721496,0.866712,0.312267,0.00211447,0.743075,0.570522,0.442902,0.183647,0.109168,0.349318,0.0679903,0.223244,0.182659,0.0199919,0.127618,0.738734,0.227951,0.474667,0.39487,0.269118,0.824095,0.762863,0.567052,0.0805708,0.549968,0.822075,0.272078,0.712096,0.914668,0.437156,0.779873,0.0261578,0.406834,0.421397,0.807927,0.540484,0.7026,0.755453,0.431565,0.970779,0.903411,0.957974,0.832368,0.790989,0.0881743,0.472734,0.428751,0.718251,0.659178,0.254101,0.70843,0.960394,0.371148,0.296922,0.324451,0.582896,0.380859,0.0553941,0.172605,0.198486,0.151447,0.08349,0.578254,0.157973,0.92292,0.334439,0.777325,0.805961,0.0707843,0.54785,0.277055,0.703494,0.924781,0.991887,0.688525,0.0514423,0.708112,0.489185,0.444127,0.217855,0.456124,0.739387,0.492499,0.472402,0.177862,0.0351198,0.207269,0.584113,0.461273,0.7635,0.11965,0.969901,0.17778,0.757628,0.135971,0.774566,0.115009,0.567279,0.145507,0.814933,0.328609,0.48337,0.837959,0.176573,0.399141,0.223397,0.640216,0.514019,0.0656061,0.12639,0.824861,0.520659,0.322038,0.404266,0.296583,0.669926,0.279824,0.298559,0.0827277,0.356428,0.000501573,0.819249,0.389987,0.775537,0.311036,0.728661,0.351182,0.943643,0.408526,0.527762,0.00367367,0.948793,0.00617337,0.473103,0.648951,0.319116,0.573538,0.661972,0.436168,0.0838278,0.436564,0.903504,0.0100997,0.0984516,0.315508,0.389821,0.460039,0.168644,0.701,0.738934,0.460374,0.453607,0.368293,0.797748,0.572128,0.227776,0.109896,0.969967,0.233674,0.911667,0.342147,0.549531,0.421812,0.88827,0.0237126,0.35247,0.37239,0.281001,0.930232,0.121952,0.114052,0.645128,0.823653,0.66934,0.940523,0.395223,0.339612,0.159979,0.637849,0.706896,0.122869,0.971118,0.158566,0.425962,0.350693,0.268919,0.405142,0.369981,0.470161,0.178544,0.734957,0.928103,0.904574,0.0192783,0.786796,0.802281,0.206112,0.809567,0.0608392,0.997835,0.0462491,0.154992,0.761115,0.391996,0.484783,0.148136,0.842935,0.721634,0.999391,0.873029,0.880036,0.46584,0.236875,0.945835,0.0391693,0.0909791,0.622554,0.752372,0.0935256,0.85551,0.740499,0.855006,0.956911,0.298072,0.829858,0.320085,0.305658,0.960751,0.384116,0.684409,0.606525,0.284344,0.171652,0.262743,0.338911,0.232393,0.306778,0.846096,0.0536333,0.0557857,0.907041,0.716316,0.309275,0.376679,0.81926,0.457896,0.0448886,0.343542,0.880847,0.344631,0.57409,0.491016,0.848056,0.830078,0.0496451,0.220327,0.393605,0.208349,0.676886,0.0284708,0.101008,0.217444,0.818874,0.17692,0.797554,0.950716,0.00706023,0.0588428,0.261614,0.97862,0.0563987,0.808321,0.0392775,0.359826,0.530916,0.557704,0.773181,0.296215,0.185606,0.0121474,0.830533,0.770328,0.254311,0.974749,0.643854,0.543855,0.860405,0.620043,0.115582,0.372523,0.507164,0.150788,0.239032,0.296675,0.161163,0.129122,0.498891,0.45136,0.157924,0.0665322,0.000109911,0.211445,0.831408,0.593486,0.62371,0.184138,0.549302,0.599158,0.873617,0.643434,0.659903,0.422381,0.795569,0.144655,0.00134319,0.939649,0.187828,0.690092,0.331204,0.261514,0.92515,0.61541,0.768129,0.650671,0.618851,0.00672352,0.721378,0.246888,0.234754,0.255161,0.353861,0.587589,0.680989,0.411356,0.347399,0.805962,0.0895773,0.830885,0.557072,0.720739,0.578919,0.23565,0.918337,0.945758,0.802461,0.58711,0.83356,0.588358,0.576925,0.411075,0.733252,0.622506,0.92462,0.0313925,0.697036,0.145143,0.17396,0.946894,0.0797291,0.943287,0.652515,0.559573,0.745587,0.89299,0.159496,0.251002,0.150212,0.849925,0.660458,0.53332,0.839563,0.871878,0.664575,0.713508,0.613879,0.537908,0.473717,0.62525,0.352467,0.222178,0.162831,|0.625692,0.938407,0.679442,0.384353,0.329577,0.761053,0.137831,0.662032,0.405752,0.58473,0.927876,0.749882,0.973597,0.873291,0.855254,0.264787,0.741989,0.177675,0.0229469,0.089071,0.837024,0.575134,0.635915,0.145031,0.837023,0.248905,0.675988,0.0965472,0.0601423,0.537593,0.158141,0.600683,0.264816,0.232376,0.898739,0.0691602,0.770468,0.434597,0.870039,0.652205,0.566233,0.028477,0.0167759,0.0884824,0.622794,0.908071,0.157987,0.00203127,0.367783,0.27159,0.18611,0.691705,0.633159,0.305592,0.789754,0.957485,0.63398,0.180871,0.490466,0.282176,0.390507,0.504346,0.984799,0.081663,0.176655,0.160479,0.342063,0.33822,0.985638,0.593994,0.968159,0.43297,0.305954,0.500544,0.348164,0.740018,0.360309,0.298168,0.373097,0.64051,0.884634,0.0656531,0.646867,0.903753,0.753526,0.244829,0.482147,0.447455,0.779467,0.559062,0.182671,0.897187,0.322801,0.403702,0.659859,0.773194,0.304217,0.167022,0.25246,0.498062,0.0852226,0.0545154,0.137888,0.829533,0.151438,0.435688,0.764949,0.267954,0.545995,0.316736,0.604223,0.161691,0.419431,0.898011,0.390705,0.878933,0.710564,0.0645602,0.516843,0.173655,0.162755,0.642295,0.940586,0.128628,0.454523,0.618215,0.128079,0.0394392,0.534363,0.0246748,0.589433,0.479419,0.207128,0.342908,0.459335,0.370615,0.00641322,0.323966,0.0253015,0.588409,0.390702,0.676285,0.419739,0.530067,0.830994,0.409898,0.00913888,0.368928,0.149808,0.855129,0.448022,0.912349,0.139298,0.139163,0.56823,0.438809,0.0854529,0.731555,0.827502,0.480106,0.174997,0.741306,0.42037,0.157106,0.367468,0.921876,0.531463,0.311172,0.562841,0.389605,0.850166,0.920262,0.444985,0.461738,0.362289,0.848033,0.84487,0.530355,0.00655055,0.488101,0.0637655,0.518925,0.946147,0.805121,0.26341,0.30134,0.785616,0.601367,0.36996,0.643857,0.878881,0.436058,0.468196,0.349945,0.592858,0.147728,0.213468,0.386934,0.960672,0.633135,0.340481,0.521186,0.2063,0.652228,0.822906,0.526995,0.889257,0.381763,0.161608,0.164265,0.381912,0.416869,0.730021,0.490369,0.0503036,0.114891,0.966999,0.394692,0.647086,0.189648,0.148782,0.798297,0.628185,0.185127,0.441782,0.679507,0.204853,0.7381,0.347735,0.0456484,0.652939,0.774206,0.791955,0.192859,0.820485,0.272212,0.419435,0.378393,0.937493,0.999575,0.536682,0.94501,0.825027,0.434112,0.0941542,0.686887,0.0371794,0.000134528,0.0938188,0.817155,0.331406,0.718195,0.898971,0.177633,0.210872,0.537721,0.337731,0.402952,0.0384668,0.379215,0.698364,0.103405,0.503973,0.580126,0.940744,0.633802,0.146132,0.636895,0.25303,0.955947,0.719607,0.509732,0.159759,0.19053,0.940574,0.812181,0.286358,0.380536,0.743467,0.534354,0.312392,0.237384,0.339428,0.342217,0.938812,0.311938,0.858201,0.454759,0.965497,0.466956,0.00042057,0.714194,0.580677,0.946675,0.0914718,0.0977167,0.834287,0.273401,0.878686,0.718752,0.32486,0.156711,0.910938,0.397168,0.945236,0.671646,0.806244,0.764952,0.081961,0.0132064,0.42349,0.843113,0.351018,0.526057,0.268636,0.0714848,0.769365,0.660401,0.990828,0.695365,0.114457,0.684625,0.999701,0.408524,0.135415,0.998023,0.404096,0.48606,0.337911,0.690812,0.205466,0.872554,0.841036,0.647207,0.622084,0.869167,0.382465,0.646287,0.309634,0.450194,0.449819,0.518259,0.109187,0.953238,0.836225,0.262083,0.266052,0.971154,0.450498,0.836836,0.899804,0.046084,0.159881,0.26821,0.954442,0.0765148,0.656673,0.800065,0.0686284,0.159168,0.286596,0.504828,0.395312,0.749775,0.440976,0.895113,0.755622,0.857199,0.761966,0.291469,0.737343,0.380508,0.0141391,0.604732,0.21547,0.0965261,0.500394,0.903556,0.561887,0.244287,0.222085,0.641331,0.602788,0.491108,0.096486,0.834341,0.905815,0.489262,0.00397515,0.233015,0.742672,0.113322,0.951497,0.331973,0.162628,0.83229,0.537456,0.0338767,0.820988,0.430467,0.297359,0.767717,0.709402,0.938106,0.323988,0.893729,0.570735,0.785616,0.580982,0.924633,0.160554,0.143752,0.415344,0.0975572,0.508471,0.990633,0.665714,0.320879,0.854692,0.421059,0.484169,0.954856,0.266378,0.272101,0.882854,0.471409,0.602128,0.262576,0.0710339,0.481732,0.761709,0.879384,0.213599,0.439098,0.862088,0.312374,0.0691664,0.686141,0.665449,0.637198,0.113792,0.53829,0.314348,0.41279,0.661149,0.244348,0.66369,0.483673,0.378486,0.366977,0.569201,0.876529,0.102261,0.782777,0.0498201,0.130798,0.289529,0.139408,0.327355,0.369966,0.250618,0.312972,0.868636,0.284015,0.862028,0.287691,0.200004,0.848799,0.799263,0.774679,0.73002,0.968791,0.649128,0.936103,0.480893,0.985949,0.484441,0.778258,0.986057,0.040525,0.626759,0.345953,0.43831,0.0789893,0.723863,0.392223,0.945042,0.791057,0.978238,0.706412,0.0460141,0.209429,0.557021,0.215414,0.356578,0.733569,0.919775,0.315698,0.600618,0.937158,0.0734236,0.190373,0.40428,0.128734,0.879451,0.00964117,0.522311,0.522967,0.501504,0.709564,0.947432,0.10997,0.557831,0.795046,0.514788,0.379368,0.998954,0.860488,0.597988,0.503052,0.98156,0.340512,0.349406,0.145488,0.590728,0.0344338,0.839949,0.975556,0.502518,0.495902,0.48373,0.733448,0.766412,0.456976,0.0773641,0.785708,0.26389,0.880878,0.421399,0.127231,0.666929,0.697153,0.579284,0.756041,0.317326,0.0719933,0.183406,0.488457,0.292182,0.386209,0.0352257,0.651672,0.447397,0.612185,0.0011003,0.77066,0.00496382,0.159908,0.612261,0.0194866,0.180118,0.831705,0.852014,0.739192,0.217673,0.141491,0.279597,0.221667,0.961341,0.182671,0.597248,0.941179,0.139868,0.805927,0.575297,0.328281,0.183541,0.116041,0.187838,0.268397,0.514489,0.527659,0.745952,0.751285,0.186369,0.592941,0.51144,0.820443,0.706418,0.110868,0.79736,0.329608,0.713267,0.320608,0.376671,0.698768,0.942081,0.986772,0.829413,0.690757,0.751843,0.495552,0.781392,0.252331,0.454454,0.200655,0.0889641,0.36567,0.18889,0.547561,0.419721,0.877409,0.944708,0.525542,0.00678009,0.646395,0.390893,0.313141,0.80068,0.961936,0.212654,0.0843396,0.134416,0.154709,0.939102,0.236423,0.761527,0.174768,0.691482,0.494586,0.615365,0.320521,0.219746,0.621807,0.404854,0.503828,0.497666,0.660886,0.795654,0.238908,0.618585,0.026909,0.496353,0.807437,0.153556,0.543574,0.0776431,0.357261,0.586132,0.674765,0.973105,0.716317,0.717795,0.779825,0.364849,0.312608,0.759259,0.034262,0.589503,0.810836,0.56207,0.410921,0.915087,0.00253528,0.00270563,0.0438935,0.237118,0.936339,0.491936,0.343918,0.619427,0.776288,0.411083,0.601187,0.881569,0.308069,0.282369,0.774495,0.125724,0.000556111,0.114361,0.704866,0.458488,0.218018,0.693299,0.90182,0.184658,0.415669,0.522177,0.408356,0.0636926,0.562332,0.882721,0.550163,0.603558,0.764544,0.494386,0.312667,0.453631,0.0128157,0.80554,0.989886,0.300904,0.16716,0.872413,0.677293,0.634792,0.157976,0.814643,0.467835,0.924237,0.87603,0.64498,0.393546,0.997699,0.969405,0.983114,0.761435,0.982114,0.0420855,0.00392151,0.438625,0.0239823,0.0150399,0.219289,0.147087,0.287603,0.600366,0.902252,0.815015,0.915945,0.801034,0.843921,0.555661,0.444898,0.121414,0.623135,0.987057,0.0958521,0.889826,0.296621,0.43967,0.278906,0.2048,0.230959,0.536891,0.729101,0.737785,0.976524,0.495539,0.765391,0.418624,0.464334,0.185641,0.687452,0.617198,0.488605,0.93826,0.422943,0.938748,0.356024,0.659353,0.185322,0.463825,0.00140047,0.654835,0.449101,0.987523,0.327674,0.117309,0.478446,0.0357642,0.020775,0.630461,0.320045,0.946824,0.372939,0.921116,0.131372,0.172582,0.881297,0.752005,0.269518,0.749415,0.718921,0.177911,0.0573633,0.402725,0.0889727,0.241509,0.423117,0.108075,0.978827,0.529521,0.928555,0.212793,0.829622,0.526822,0.0148038,0.836536,0.0147429,0.503854,0.882466,0.181118,0.510949,0.15943,0.382395,0.119739,0.657323,0.120232,0.862384,0.639655,0.754773,0.913424,0.241239,0.713205,0.787189,0.11451,0.0441905,0.344491,0.408484,0.951932,0.612314,0.209437,0.568194,0.866951,0.153852,0.874064,0.0400174,0.457908,0.331687,0.921704,0.605427,0.558802,0.771155,0.114818,0.747493,0.495472,0.330432,0.0426528,0.806767,0.366856,0.0389087,0.910396,0.654571,0.828103,0.730973,0.469315,0.182741,0.836492,0.538887,0.604545,0.913832,0.132927,0.947537,0.0900046,0.836822,0.278716,0.034277,0.415105,0.494445,0.0798855,0.830272,0.43995,0.575012,0.480479,0.729031,0.797981,0.345824,0.37067,0.465357,0.718453,0.668534,0.031487,0.601642,0.184594,0.92969,0.369395,0.178193,0.644542,0.866537,0.745519,0.405368,0.518118,0.314877,0.656648,0.567338,0.394277,0.422256,0.316658,0.218589,0.128503,0.0413872,0.572651,0.49575,0.00190377,0.0235161,0.571382,0.629032,0.610957,0.0427572,0.977088,0.800651,0.0509256,0.516289,0.305487,0.442618,0.601767,0.953188,0.963345,0.844436,0.632582,0.837321,0.550681,0.962876,0.960076,0.228361,0.932935,0.0273439,0.190323,0.284691,0.7264,0.72394,0.0938631,0.241177,0.950423,0.499478,0.83905,0.740795,0.400104,0.305194,0.246896,0.868648,0.480768,0.548448,0.0388436,0.497211,0.514183,0.322673,0.6588,0.749832,0.855899,0.868659,0.541163,0.581366,0.502167,0.849842,0.804916,0.932292,0.455493,0.837241,0.803999,0.233491,0.892713,0.49681,0.750498,0.333427,0.185853,0.612897,0.274529,0.986125,0.0573901,0.778139,0.177422,0.268101,0.947153,0.472753,0.373011,0.456987,0.842156,0.681165,0.868712,0.161387,0.719029,0.00510371,0.547664,0.527403,0.280331,0.103502,0.357208,0.919728,0.954352,0.153248,0.645476,0.895607,0.222195,0.239254,0.153883,0.734321,0.54574,0.265547,0.270555,0.808834,0.696676,0.819828,0.520257,0.778061,0.77373,0.550929,0.987038,|0.057865,0.63064,0.757069,0.120634,0.225386,0.715162,0.634236,0.711116,0.196626,0.91903,0.494557,0.222089,0.872112,0.00411624,0.402721,0.486679,0.553422,0.0122805,0.924722,0.700672,0.603282,0.00470114,0.29296,0.851059,0.0118254,0.867955,0.971403,0.640744,0.48399,0.256024,0.125711,0.00103492,0.747594,0.205204,0.692807,0.757978,0.161096,0.683534,0.990462,0.793199,0.440633,0.751813,0.231526,0.61964,0.889311,0.167801,0.645498,0.616621,0.843955,0.733869,0.39334,0.444005,0.617167,0.274791,0.589875,0.959165,0.0980704,0.424584,0.00478059,0.804416,0.529649,0.160213,0.653296,0.262984,0.989908,0.957132,0.995832,0.839288,0.936439,0.394243,0.191727,0.366646,0.13894,0.888211,0.247136,0.923438,0.844363,0.517007,0.827867,0.986148,0.82485,0.872234,0.207345,0.784928,0.176302,0.880579,0.274085,0.354419,0.829611,0.653906,0.807006,0.453016,0.656062,0.841459,0.379354,0.0920668,0.245691,0.171712,0.516635,0.208453,0.721134,0.0543013,0.106551,0.928198,0.154996,0.764694,0.199785,0.857721,0.79329,0.528568,0.92008,0.0810302,0.110425,0.656455,0.37608,0.935829,0.0767839,0.543945,0.675518,0.749902,0.997929,0.261021,0.530384,0.357301,0.156845,0.289402,0.0130287,0.524911,0.725359,0.136708,0.795449,0.145222,0.581852,0.10404,0.9175,0.488795,0.855797,0.0812194,0.187587,0.37994,0.626489,0.811781,0.560662,0.000263989,0.451068,0.791087,0.676026,0.128952,0.224932,0.957344,0.65526,0.070094,0.844412,0.773496,0.310085,0.317417,0.0336094,0.923195,0.571113,0.620822,0.687256,0.747309,0.112654,0.000604808,0.269858,0.221383,0.146577,0.294569,0.120037,0.39663,0.90263,0.125021,0.0780463,0.987449,0.991547,0.160248,0.38142,0.542055,0.459957,0.975094,0.71303,0.740561,0.10816,0.689175,0.0852855,0.14583,0.650262,0.43306,0.572608,0.751722,0.929891,0.1345,0.00407761,0.488053,0.883684,0.583874,0.00943238,0.478774,0.0494122,0.153857,0.677451,0.865144,0.568923,0.767204,0.647594,0.304758,0.867277,0.511936,0.50079,0.427112,0.927382,0.232239,0.152872,0.84713,0.881619,0.818883,0.87786,0.161062,0.937408,0.814672,0.464744,0.638453,0.242984,0.401626,0.955604,0.61328,0.776691,0.365103,0.847051,0.187705,0.0208539,0.671988,0.660011,0.299889,0.950625,0.104154,0.17279,0.685651,0.240694,0.182587,0.857239,0.629588,0.545172,0.0878146,0.332197,0.773715,0.882775,0.163906,0.551596,0.510234,0.598901,0.902594,0.27369,0.601674,0.651623,0.670515,0.209137,0.376602,0.514736,0.671805,0.876725,0.659657,0.857716,0.577035,0.440302,0.165151,0.143966,0.849511,0.919659,0.357681,0.446115,0.331979,0.357286,0.96854,0.0958697,0.18016,0.590089,0.812109,0.0838468,0.375521,0.482498,0.192319,0.0070715,0.695949,0.420545,0.561412,0.585048,0.906691,0.558425,0.130161,0.0232157,0.0692636,0.181636,0.250948,0.0958,0.50752,0.368499,0.263588,0.309532,0.408888,0.416574,0.185189,0.771759,0.177215,0.82292,0.568374,0.806224,0.363519,0.402616,0.776392,0.225785,0.208211,0.988613,0.252553,0.739179,0.816372,0.637014,0.238207,0.404545,0.853788,0.224158,0.337796,0.684067,0.666402,0.852017,0.169762,0.86829,0.645089,0.494171,0.803979,0.291978,0.615075,0.55658,0.592505,0.701581,0.847831,0.827959,0.477169,0.407194,0.3583,0.728983,0.34675,0.658945,0.995591,0.987848,0.191674,0.861826,0.693187,0.0953482,0.416259,0.405377,0.130072,0.17912,0.159884,0.76715,0.387912,0.587395,0.874762,0.287775,0.46239,0.814222,0.0398447,0.831659,0.128789,0.681626,0.449249,0.452112,0.858727,0.584385,0.346473,0.770396,0.126497,0.802152,0.538854,0.7122,0.28724,0.395133,0.310805,0.255733,0.219866,0.699262,0.175643,0.352793,0.141909,0.488924,0.89056,0.75983,0.246579,0.307,0.653952,0.413594,0.380818,0.498874,0.0020566,0.302792,0.781339,0.701259,0.239909,0.0364318,0.205663,0.203538,0.159175,0.313953,0.88804,0.0121478,0.651237,0.294727,0.0514819,0.104222,0.147989,0.398467,0.75351,0.640434,0.987395,0.156048,0.550829,0.377416,0.28954,0.474393,0.269788,0.858523,0.16873,0.121938,0.659828,0.0561861,0.0122442,0.0652769,0.716251,0.312255,0.797126,0.832316,0.561193,0.552269,0.861339,0.949438,0.299684,0.116933,0.583152,0.625772,0.784827,0.469042,0.163432,0.721464,0.683209,0.984502,0.410723,0.824067,0.554484,0.120657,0.216928,0.169332,0.897296,0.210001,0.811345,0.763703,0.595418,0.114105,0.793368,0.23231,0.230239,0.211394,0.154158,0.419674,0.329888,0.39104,0.0558785,0.742298,0.524205,0.29009,0.632319,0.563754,0.965193,0.271243,0.781706,0.714822,0.594607,0.763398,0.162977,0.24051,0.132804,0.360724,0.969927,0.936863,0.764183,0.744487,0.989639,0.072167,0.203687,0.00749636,0.332654,0.364322,0.721418,0.277822,0.722068,0.54135,0.521851,0.158478,0.343634,0.634215,0.881758,0.653674,0.377416,0.150907,0.314206,0.716667,0.0726671,0.36647,0.559484,0.878119,0.689564,0.178152,0.488371,0.840393,0.302333,0.633194,0.0324811,0.57007,0.544719,0.727421,0.296808,0.112296,0.743556,0.784279,0.767888,0.70131,0.471659,0.438686,0.163749,0.0203183,0.764294,0.00995427,0.947417,0.776834,0.0935659,0.491639,0.54227,0.59065,0.30869,0.351476,0.910426,0.993002,0.391578,0.449952,0.324604,0.77818,0.824407,0.871827,0.615564,0.374835,0.0850988,0.068657,0.355949,0.805321,0.809587,0.64353,0.290392,0.498942,0.695742,0.56509,0.965356,0.630181,0.0165352,0.452296,0.506083,0.584575,0.342207,0.997558,0.519577,0.299567,0.514092,0.936273,0.243908,0.951992,0.320024,0.944382,0.0474051,0.701467,0.418421,0.732026,0.662052,0.578723,0.0616661,0.99065,0.373079,0.743602,0.893819,0.445577,0.274739,0.555185,0.640834,0.0895213,0.418747,0.136499,0.523106,0.122496,0.685707,0.686667,0.853161,0.360869,0.972735,0.652756,0.355345,0.678281,0.598122,0.917225,0.591483,0.841053,0.495753,0.00608259,0.115001,0.211809,0.789247,0.578729,0.955106,0.944496,0.056637,0.141799,0.219675,0.0279987,0.306353,0.853235,0.299375,0.930585,0.287828,0.517282,0.919065,0.368538,0.402905,0.769756,0.248105,0.207758,0.707821,0.0807518,0.43178,0.368981,0.813695,0.346683,0.124403,0.155948,0.482041,0.463265,0.703617,0.104579,0.0331498,0.88082,0.631663,0.0498134,0.301731,0.650325,0.285228,0.223706,0.0249432,0.842888,0.634679,0.39425,0.390183,0.966626,0.86712,0.284936,0.307131,0.942362,0.515097,0.138576,0.563505,0.613641,0.50859,0.486839,0.530521,0.0985287,0.854367,0.647736,0.11811,0.610027,0.943725,0.298471,0.279733,0.536977,0.698508,0.403749,0.300076,0.371084,0.272816,0.624074,0.614255,0.198009,0.308973,0.396026,0.683656,0.623074,0.757022,0.761678,0.1701,0.947738,0.0357835,0.0641195,0.0921654,0.0637887,0.120116,0.798222,0.902575,0.0963554,0.0509026,0.704254,0.631783,0.576868,0.793138,0.153004,0.487707,0.0667631,0.686897,0.813364,0.651643,0.744994,0.896371,0.0982472,0.494253,0.897282,0.365724,0.242258,0.224973,0.234912,0.176103,0.253229,0.0211285,0.676306,0.470044,0.0896445,0.189463,0.232399,0.672785,0.914501,0.886335,0.895977,0.674799,0.121863,0.652931,0.236053,0.565174,0.326972,0.402569,0.0541448,0.276188,0.690016,0.713278,0.653377,0.305174,0.833297,0.848186,0.0381217,0.988576,0.287345,0.393073,0.254047,0.506372,0.277251,0.861929,0.885078,0.230069,0.669417,0.796543,0.633059,0.082481,0.906276,0.490859,0.623818,0.259842,0.834216,0.349694,0.163535,0.669857,0.455596,0.757084,0.390266,0.0724968,0.792335,0.59731,0.602229,0.587481,0.498429,0.665974,0.00759792,0.235759,0.159364,0.131108,0.92261,0.0104384,0.621788,0.679309,0.954753,0.497317,0.705904,0.562679,0.414091,0.596869,0.114505,0.74534,0.835939,0.274258,0.121336,0.616922,0.382944,0.831241,0.123993,0.434624,0.686426,0.342351,0.731803,0.456922,0.160391,0.503767,0.418562,0.125067,0.0279198,0.913893,0.46947,0.270565,0.541735,0.6652,0.210291,0.70316,0.739197,0.539509,0.868589,0.286374,0.91207,0.456455,0.75166,0.35753,0.454288,0.938101,0.686793,0.814499,0.39874,0.929674,0.907216,0.654804,0.48364,0.108615,0.579881,0.462959,0.116872,0.984977,0.369101,0.797835,0.0103408,0.970074,0.958553,0.438462,0.0945136,0.926429,0.374875,0.10306,0.76956,0.0934715,0.813014,0.862523,0.251517,0.0238023,0.00762653,0.686204,0.408335,0.333487,0.555247,0.169019,0.869681,0.646996,0.782839,0.837454,0.522483,0.60883,0.968158,0.126536,0.0120761,0.403382,0.997991,0.745186,0.836868,0.726925,0.454736,0.696849,0.960466,0.348384,0.857828,0.442746,0.385763,0.342049,0.553194,0.305847,0.195227,0.751466,0.990927,0.249837,0.437921,0.0803109,0.180662,0.130507,0.911529,0.0829861,0.77,0.174512,0.182027,0.433922,0.221262,0.578229,0.662375,0.827784,0.171489,0.182299,0.534425,0.101635,0.505979,0.482497,0.195576,0.658513,0.331469,0.962868,0.847419,0.993203,0.562275,0.947033,0.478959,0.141692,0.049055,0.104294,0.678386,0.327054,0.258545,0.633319,0.52806,0.185912,0.974994,0.969296,0.475099,0.611405,0.960945,0.0668607,0.604613,0.0518131,0.62299,0.457477,0.418926,0.848206,0.0966505,0.436197,0.988418,0.329314,0.00869709,0.84712,0.90887,0.281893,0.428671,0.968002,0.512,0.546152,0.257469,0.0662967,0.0845706,0.512904,0.551878,0.364078,0.713769,0.655775,0.550531,0.551492,0.16155,0.0199706,0.0766641,0.980383,0.421439,0.210331,0.86604,0.565243,0.257102,0.766229,0.771056,0.6693,0.888136,0.811868,0.284759,0.240929,0.51841,0.625961,0.22546,0.0455183,0.689451,0.15547,0.599963,0.642492,0.732342,0.0887462,0.328144,0.871071,0.223138,0.579975,0.80781,0.234685,0.278335,0.403587,0.0636614,0.940149,|0.274861,0.0953686,0.250323,0.940462,0.659153,0.642529,0.00149053,0.225295,0.291655,0.564045,0.648952,0.452584,0.741116,0.461038,0.686545,0.595944,0.534217,0.967971,0.815834,0.85342,0.0135404,0.923665,0.910119,0.44928,0.0590317,0.138674,0.242135,0.112081,0.113553,0.840973,0.150049,0.824356,0.45983,0.76771,0.244021,0.322349,0.292917,0.882263,0.77996,0.715837,0.142867,0.920057,0.15657,0.777017,0.570274,0.800931,0.197138,0.998979,0.384337,0.501811,0.246832,0.856629,0.94742,0.472292,0.36332,0.619964,0.437845,0.380646,0.397437,0.65575,0.200357,0.893183,0.590388,0.718311,0.502552,0.326304,0.271891,0.0625682,0.798976,0.370776,0.384364,0.328217,0.894478,0.835073,0.370081,0.0993398,0.289548,0.273425,0.102567,0.481549,0.265379,0.693725,0.0116534,0.872637,0.594771,0.597338,0.33667,0.242994,0.0692413,0.463689,0.206158,0.187002,0.221534,0.0816772,0.0843336,0.734445,0.0617725,0.512132,0.217631,0.560686,0.613097,0.0922734,0.912535,0.585503,0.729983,0.38203,0.999703,0.871458,0.383562,0.883961,0.825038,0.206869,0.314534,0.144501,0.00867009,0.361177,0.297615,0.732933,0.226562,0.718201,0.0808873,0.0346878,0.493153,0.950088,0.499273,0.758158,0.954169,0.485041,0.681485,0.657034,0.0646847,0.236385,0.333132,0.71163,0.367858,0.863965,0.953245,0.739797,0.969733,0.00902748,0.97973,0.0470308,0.585586,0.628381,0.455682,0.835456,0.754745,0.589359,0.63534,0.142974,0.63402,0.339273,0.0956278,0.501094,0.0493296,0.56476,0.963806,0.298728,0.541803,0.696649,0.506458,0.97349,0.344054,0.56607,0.482439,0.720841,0.55867,0.764729,0.486586,0.0660844,0.668953,0.910475,0.343168,0.926001,0.45514,0.173667,0.288403,0.0488973,0.146885,0.800921,0.395469,0.27,0.0751031,0.832425,0.647517,0.0291304,0.708608,0.0864605,0.466444,0.726977,0.257615,0.482654,0.15405,0.902794,0.22154,0.343917,0.97181,0.852642,0.63615,0.754561,0.412502,0.0933353,0.374673,0.897841,0.959806,0.495619,0.0562328,0.9298,0.508272,0.134126,0.358332,0.482101,0.292269,0.0372569,0.414643,0.6838,0.0963231,0.87658,0.965539,0.206235,0.237352,0.602509,0.689287,0.871121,0.030844,0.681045,0.116721,0.584201,0.0244782,0.138224,0.714989,0.775872,0.950399,0.476265,0.165445,0.94317,0.336093,0.62678,0.468144,0.710648,0.908127,0.249874,0.643407,0.244226,0.524432,0.899651,0.673002,0.400998,0.267452,0.369428,0.572102,0.469979,0.75229,0.0126302,0.143888,0.803366,0.934839,0.671071,0.702473,0.161099,0.714896,0.561291,0.419224,0.764496,0.839626,0.284516,0.865104,0.0439207,0.0412357,0.344822,0.464325,0.526194,0.707542,0.450697,0.130646,0.579381,0.248651,0.261567,0.452956,0.834604,0.736027,0.687433,0.617403,0.322011,0.787149,0.30008,0.70978,0.731138,0.524496,0.894375,0.403641,0.371264,0.869409,0.72195,0.232414,0.707477,0.158429,0.172499,0.308377,0.12828,0.229561,0.367941,0.698008,0.0154441,0.115749,0.926471,0.28348,0.804775,0.729994,0.572188,0.261261,0.0741039,0.961248,0.649135,0.96443,0.155935,0.812856,0.288615,0.651576,0.496523,0.175512,0.312213,0.933836,0.306402,0.186935,0.677524,0.465943,0.13301,0.655128,0.392886,0.431347,0.715986,0.476145,0.325864,0.214527,0.495911,0.182533,0.48328,0.748693,0.505622,0.481125,0.412702,0.666892,0.811764,0.0185826,0.437288,0.854462,0.891068,0.996654,0.179198,0.545649,0.687389,0.349492,0.104436,0.998984,0.702407,0.931393,0.912131,0.26336,0.105447,0.438468,0.41621,0.636506,0.464651,0.75493,0.0288173,0.886787,0.489799,0.811139,0.888125,0.103084,0.166712,0.174692,0.621374,0.83585,0.808479,0.455152,0.504688,0.667823,0.510278,0.157781,0.387373,0.85798,0.429345,0.564449,0.00634855,0.516455,0.374713,0.430753,0.196978,0.011014,0.936739,0.40499,0.0160538,0.0904969,0.404764,0.81144,0.238467,0.112079,0.0142447,0.965415,0.480339,0.0693994,0.503861,0.208723,0.944472,0.256317,0.572854,0.29291,0.739955,0.764401,0.85071,0.978422,0.241457,0.692568,0.861547,0.38714,0.912371,0.0455993,0.50328,0.716733,0.53453,0.720506,0.452349,0.0979512,0.334187,0.743373,0.916161,0.468182,0.917725,0.486062,0.287605,0.995781,0.447489,0.00219333,0.743573,0.588871,0.539042,0.686772,0.980776,0.612095,0.783599,0.514176,0.0899112,0.357817,0.305533,0.190161,0.114035,0.838305,0.622877,0.735011,0.15551,0.256699,0.0705892,0.656677,0.967712,0.424848,0.417997,0.412631,0.56245,0.60561,0.593515,0.757386,0.0834806,0.364318,0.829691,0.642722,0.25518,0.674792,0.62207,0.966943,0.748653,0.2945,0.00451398,0.153753,0.20595,0.683429,0.176532,0.717764,0.409145,0.0226881,0.4477,0.597733,0.666045,0.0782472,0.437888,0.800397,0.172907,0.981298,0.070621,0.195472,0.80039,0.716057,0.45142,0.773452,0.451964,0.559474,0.152801,0.48617,0.942904,0.0925354,0.148107,0.16662,0.00752491,0.103294,0.0846732,0.723425,0.100586,0.649972,0.469751,0.780086,0.776473,0.0966225,0.341332,0.353892,0.774715,0.136853,0.504328,0.229057,0.937606,0.590824,0.993998,0.814927,0.11087,0.672417,0.151189,0.718579,0.354084,0.528829,0.902248,0.747907,0.0317335,0.797805,0.107919,0.862851,0.581849,0.0304098,0.963324,0.934737,0.21483,0.449581,0.129494,0.410785,0.213163,0.939021,0.30651,0.477742,0.729774,0.567107,0.700277,0.10116,0.626817,0.676566,0.213713,0.314586,0.226907,0.631167,0.893206,0.984336,0.625733,0.220215,0.0449929,0.349873,0.13203,0.829123,0.941515,0.686204,0.101964,0.753739,0.733271,0.418281,0.975191,0.674571,0.176986,0.500238,0.585627,0.881698,0.0510033,0.435168,0.547183,0.00309289,0.896673,0.584657,0.0863045,0.634195,0.41863,0.334264,0.19175,0.756647,0.228647,0.789777,0.735537,0.0231547,0.141697,0.0283093,0.475293,0.994352,0.0406399,0.0722417,0.393271,0.864087,0.706544,0.662437,0.0965487,0.330452,0.88448,0.546686,0.724256,0.275003,0.347631,0.244465,0.0615858,0.639271,0.758653,0.741555,0.0372332,0.589297,0.942781,0.954162,0.437324,0.121095,0.976273,0.17989,0.131132,0.24367,0.957319,0.583686,0.566805,0.0101458,0.854304,0.733567,0.0112052,0.0335962,0.0626628,0.806346,0.730025,0.97187,0.927126,0.867105,0.387683,0.688292,0.314176,0.0360295,0.739213,0.413236,0.318246,0.0866024,0.335674,0.0528778,0.414252,0.947195,0.528653,0.207028,0.5822,0.215998,0.429006,0.811921,0.629707,0.99725,0.986034,0.153138,0.404831,0.0451463,0.539152,0.0917696,0.674751,0.273178,0.405752,0.437445,0.15111,0.770483,0.206293,0.939652,0.267897,0.889962,0.870862,0.316918,0.0462246,0.262867,0.904093,0.516823,0.0452386,0.888234,0.157191,0.0464614,0.758125,0.126055,0.401394,0.874337,0.79177,0.687947,0.158745,0.320719,0.992961,0.497817,0.360768,0.910534,0.259194,0.183618,0.557494,0.285373,0.67184,0.34008,0.442736,0.51573,0.190049,0.377004,0.961024,0.280731,0.983743,0.422357,0.205996,0.227022,0.982091,0.00414324,0.7524,0.697103,0.962634,0.272625,0.213639,0.747241,0.904942,0.680326,0.620855,0.329811,0.750678,0.319915,0.823522,0.615144,0.371032,0.755138,0.690711,0.69892,0.799493,0.203958,0.439984,0.0117046,0.763955,0.93504,0.0195603,0.710924,0.481275,0.235291,0.901328,0.95259,0.372868,0.548676,0.187554,0.19304,0.50486,0.760053,0.314132,0.994177,0.397442,0.381349,0.40285,0.356015,0.852975,0.217115,0.3293,0.244576,0.26934,0.595426,0.809162,0.7824,0.694871,0.560061,0.098581,0.296393,0.173033,0.00734687,0.69722,0.083482,0.183587,0.765408,0.351623,0.0826439,0.253855,0.315826,0.817311,0.676369,0.517509,0.416379,0.389104,0.801325,0.57002,0.833595,0.770627,0.218402,0.365305,0.476476,0.617215,0.250841,0.593426,0.40982,0.564004,0.744479,0.496528,0.398987,0.690616,0.893559,0.378199,0.0890931,0.0131427,0.619272,0.260395,0.488771,0.79312,0.0367873,0.536616,0.853698,0.130217,0.541296,0.0218068,0.460421,0.739624,0.698997,0.737184,0.221141,0.335907,0.265311,0.681341,0.802276,0.876937,0.255548,0.212412,0.820454,0.884607,0.084997,0.623885,0.842013,0.144738,0.278605,0.527091,0.499784,0.408779,0.828973,0.860983,0.752676,0.557188,0.917276,0.440609,0.625081,0.0702972,0.41356,0.713506,0.558948,0.591835,0.434507,0.296676,0.413073,0.154601,0.625696,0.0609169,0.957092,0.450648,0.758704,0.778848,0.562392,0.199135,0.646767,0.837342,0.643671,0.988827,0.693375,0.0687557,0.397067,0.408245,0.877678,0.0595073,0.656574,0.940656,0.114988,0.858101,0.300613,0.275946,0.949942,0.502708,0.750744,0.502621,0.187116,0.498446,0.374418,0.638326,0.700097,0.325152,0.360377,0.607254,0.324496,0.644628,0.726625,0.912018,0.0563929,0.806587,0.550532,0.272703,0.537048,0.84771,0.0484654,0.624666,0.474531,0.191302,0.795581,0.824535,0.949978,0.710557,0.479775,0.644635,0.402912,0.224797,0.390349,0.750088,0.555556,0.892664,0.235152,0.45312,0.336511,0.569311,0.551217,0.25696,0.407835,0.989257,0.0981241,0.436879,0.543064,0.976502,0.641645,0.595905,0.570058,0.583225,0.990086,0.125415,0.610236,0.939287,0.883494,0.999667,0.594727,0.491375,0.455904,0.588298,0.560474,0.0437151,0.813838,0.762851,0.72535,0.888235,0.171693,0.330519,0.597125,0.992875,0.416369,0.259834,0.630913,0.571113,0.652593,0.180419,0.0862346,0.0895962,0.792528,0.913864,0.200664,0.574572,0.931856,0.189384,0.703288,0.9168,0.325818,0.167007,0.799598,0.260124,0.306397,0.288734,0.97216,0.578081,0.53792,0.471434,0.846401,0.832,0.926355,0.0396965,0.677482,0.446716,0.214856,0.545446,0.100427,0.0952569,0.132506,0.420665,0.651064,0.965334,0.895247,0.150127,0.820249,0.635078,0.421408,0.405703,0.751851,0.0831642,0.377495,0.440155,|0.0687512,0.617643,0.668537,0.624794,0.329356,0.0244263,0.691566,0.884993,0.565798,0.449353,0.48394,0.934869,0.732073,0.958967,0.124569,0.191938,0.613092,0.173651,0.00599831,0.512696,0.559048,0.453165,0.83631,0.592112,0.875335,0.673226,0.128956,0.067397,0.244197,0.646978,0.480618,0.886662,0.469335,0.629496,0.458821,0.42249,0.41419,0.522555,0.653262,0.307912,0.787573,0.361914,0.539398,0.0743154,0.516174,0.374431,0.982755,0.219559,0.279631,0.658843,0.884779,0.485102,0.520988,0.108163,0.0449774,0.986903,0.300249,0.143531,0.922047,0.8453,0.753131,0.315201,0.418329,0.831656,0.315221,0.778553,0.444063,0.938329,0.843358,0.977961,0.402245,0.330573,0.886347,0.741898,0.281641,0.549859,0.85745,0.915225,0.603112,0.273513,0.82989,0.553101,0.14914,0.933417,0.27088,0.552048,0.293785,0.979367,0.227448,0.0759958,0.197671,0.889044,0.574171,0.962775,0.0510288,0.300813,0.800008,0.240239,0.258215,0.45767,0.446569,0.921868,0.437802,0.826371,0.777339,0.934689,0.284946,0.0155542,0.763877,0.998817,0.58714,0.443835,0.968545,0.451452,0.927566,0.0553957,0.319771,0.278406,0.674401,0.76173,0.828446,0.390734,0.869669,0.676747,0.0747336,0.748497,0.974969,0.148091,0.179003,0.149754,0.159158,0.580076,0.945734,0.337645,0.260912,0.74396,0.623637,0.00193143,0.294967,0.701651,0.96173,0.0708432,0.197057,0.103939,0.668089,0.499501,0.631864,0.818483,0.964626,0.211191,0.364346,0.588991,0.0414706,0.0412216,0.763979,0.957223,0.381705,0.325305,0.906576,0.772275,0.691108,0.926324,0.949185,0.966822,0.0124481,0.632505,0.315628,0.548569,0.233213,0.824935,0.541826,0.52983,0.00685328,0.0437092,0.644427,0.129724,0.63476,0.224006,0.686435,0.836758,0.942456,0.218718,0.919739,0.104067,0.506583,0.466576,0.817075,0.219646,0.172351,0.838175,0.374087,0.298325,0.229122,0.77882,0.931918,0.456866,0.377541,0.27809,0.249125,0.942242,0.755819,0.922986,0.488528,0.52762,0.49095,0.502237,0.284352,0.0692098,0.591007,0.673724,0.228241,0.00038451,0.875482,0.815316,0.604005,0.0337593,0.588823,0.265033,0.360412,0.910156,0.0384313,0.938955,0.228353,0.237195,0.413507,0.682447,0.71142,0.224359,0.990831,0.295268,0.587707,0.629712,0.825816,0.312884,0.270392,0.179475,0.0924615,0.570426,0.722442,0.2986,0.427845,0.339117,0.906141,0.160988,0.0422496,0.563257,0.330816,0.593444,0.365092,0.91242,0.340723,0.580581,0.50909,0.739421,0.0124854,0.645204,0.098415,0.729698,0.353245,0.897347,0.535598,0.154922,0.321738,0.0697324,0.202988,0.381567,0.973955,0.848041,0.3275,0.884965,0.74199,0.186887,0.151269,0.485732,0.795224,0.290927,0.383731,0.954607,0.865089,0.194601,0.33357,0.979152,0.15299,0.277187,0.702651,0.941433,0.258658,0.403257,0.727047,0.790749,0.213832,0.611677,0.350957,0.0355297,0.605971,0.677442,0.326146,0.135978,0.254652,0.638298,0.852006,0.495151,0.741,0.71499,0.165145,0.381565,0.451726,0.585206,0.655092,0.940434,0.0273222,0.832783,0.0729329,0.451829,0.557158,0.759464,0.0953988,0.174854,0.252541,0.831248,0.193904,0.823826,0.272477,0.0999981,0.245828,0.906337,0.522169,0.888129,0.968826,0.743027,0.582781,0.393875,0.667469,0.174661,0.534665,0.0601884,0.128799,0.854641,0.814161,0.750437,0.320227,0.590825,0.00307894,0.981297,0.142724,0.778701,0.0389788,0.624265,0.199428,0.0873833,0.723472,0.863157,0.520777,0.458934,0.451026,0.663357,0.155284,0.673514,0.729961,0.31274,0.608974,0.466438,0.885453,0.643849,0.0315886,0.791472,0.322883,0.804647,0.825676,0.545003,0.879134,0.560439,0.0507647,0.27278,0.859504,0.0595272,0.887996,0.994323,0.128565,0.286824,0.0551268,0.727399,0.564193,0.601849,0.544792,0.0305632,0.674217,0.0979213,0.163082,0.373938,0.163902,0.601529,0.556383,0.672278,0.578713,0.632452,0.51576,0.259737,0.759434,0.430257,0.801523,0.536899,0.911164,0.695362,0.921564,0.492881,0.909997,0.18304,0.331738,0.785047,0.112935,0.729542,0.219997,0.839592,0.878901,0.103713,0.996478,0.0995843,0.403141,0.124239,0.0254154,0.0529746,0.144643,0.0554502,0.16822,0.290949,0.530358,0.831483,0.263968,0.831882,0.973086,0.505891,0.746115,0.915882,0.0542645,0.141509,0.744889,0.625755,0.366499,0.513118,0.544002,0.327126,0.834556,0.227104,0.292507,0.719037,0.28907,0.0990535,0.508471,0.0982189,0.07338,0.0590275,0.604169,0.36272,0.413559,0.876472,0.337981,0.863677,0.672142,0.392587,0.802043,0.00185978,0.913493,0.0829449,0.390913,0.0349627,0.164312,0.867015,0.298281,0.870781,0.355203,0.745391,0.096347,0.684593,0.657307,0.981056,0.867283,0.555815,0.0345212,0.0514712,0.658181,0.334038,0.539283,0.693036,0.0286292,0.49556,0.167654,0.330149,0.256369,0.746638,0.740859,0.92748,0.952508,0.516659,0.26924,0.797542,0.982702,0.97166,0.726704,0.0481576,0.769206,0.392394,0.224878,0.968598,0.423434,0.0201951,0.866587,0.680141,0.810944,0.88969,0.649565,0.528152,0.361103,0.826035,0.37709,0.550438,0.402079,0.105876,0.330326,0.897864,0.585208,0.632793,0.913745,0.473542,0.17366,0.391225,0.0451373,0.686551,0.257647,0.455434,0.517714,0.254595,0.819427,0.612753,0.113795,0.12217,0.810002,0.430921,0.784369,0.916519,0.768151,0.839589,0.484257,0.570444,0.373242,0.810402,0.666811,0.378068,0.367929,0.357515,0.323647,0.231138,0.405046,0.890235,0.110527,0.508119,0.987229,0.602879,0.385845,0.619084,0.148759,0.0418639,0.445305,0.288322,0.496467,0.886595,0.99467,0.531531,0.738352,0.724293,0.186928,0.00412965,0.820456,0.519553,0.785647,0.402666,0.862161,0.588926,0.223424,0.982779,0.975838,0.4704,0.912619,0.575455,0.411038,0.767257,0.443816,0.943038,0.637799,0.229554,0.83992,0.910627,0.807531,0.954894,0.412241,0.384321,0.973901,0.0793045,0.451449,0.312131,0.00888938,0.198317,0.885195,0.465546,0.469164,0.362686,0.462773,0.0978372,0.568604,0.935647,0.624538,0.347856,0.704846,0.139963,0.457582,0.0685398,0.22999,0.320235,0.88237,0.531852,0.511141,0.770097,0.326314,0.394498,0.286586,0.314258,0.121998,0.224329,0.236727,0.0712403,0.215066,0.488872,0.555928,0.910022,0.191475,0.554663,0.775913,0.550295,0.204934,0.724073,0.694814,0.0458965,0.0940189,0.36758,0.841554,0.0227244,0.0738627,0.0353305,0.636237,0.801723,0.293449,0.381198,0.00187922,0.149933,0.855092,0.27652,0.0419891,0.907694,0.997742,0.726374,0.0412926,0.826156,0.137626,0.240179,0.712019,0.487116,0.232091,0.966347,0.978875,0.549493,0.253044,0.914036,0.959427,0.972715,0.661102,0.606925,0.44057,0.690572,0.465126,0.911025,0.570454,0.291389,0.351239,0.0978017,0.57461,0.870489,0.636336,0.0949785,0.921571,0.87113,0.817448,0.661796,0.511226,0.3987,0.961848,0.413734,0.165657,0.161459,0.398862,0.66615,0.911873,0.969066,0.696239,0.634034,0.527986,0.179001,0.589996,0.209533,0.337963,0.806552,0.175346,0.306929,0.0180752,0.361064,0.0493518,0.45919,0.351981,0.346924,0.364043,0.776114,0.273083,0.270956,0.906057,0.0099259,0.385901,0.493626,0.670868,0.923301,0.293786,0.945705,0.299483,0.961473,0.890436,0.11876,0.464868,0.957359,0.164275,0.0203992,0.561536,0.402272,0.535462,0.0642607,0.610739,0.798311,0.414249,0.755631,0.4465,0.304423,0.199252,0.570754,0.733615,0.421082,0.757446,0.662794,0.840711,0.419829,0.859003,0.35479,0.056318,0.839895,0.0785406,0.0953959,0.106432,0.190084,0.983459,0.273815,0.85713,0.214247,0.566128,0.33778,0.646108,0.799533,0.509457,0.630599,0.619242,0.31525,0.382298,0.793163,0.190631,0.65253,0.614018,0.506832,0.782198,0.922986,0.0701954,0.925032,0.177254,0.0355071,0.0335206,0.380705,0.339213,0.0465162,0.821401,0.399885,0.182616,0.343646,0.209112,0.108864,0.575608,0.607328,0.703433,0.947282,0.214767,0.177588,0.861292,0.632727,0.443294,0.995758,0.879973,0.768569,0.592452,0.334949,0.160763,0.125161,0.5575,0.297193,0.678631,0.290686,0.720764,0.465668,0.0696286,0.0764066,0.875728,0.0462379,0.143568,0.925493,0.432068,0.828252,0.147914,0.587303,0.197384,0.356137,0.00762421,0.626636,0.908687,0.921066,0.942729,0.769323,0.768063,0.875094,0.223191,0.911135,0.467425,0.73511,0.724372,0.735965,0.265976,0.511681,0.297947,0.619322,0.994028,0.606588,0.588488,0.697251,0.163329,0.513458,0.252409,0.252085,0.799389,0.397654,0.201399,0.89813,0.98724,0.785962,0.447126,0.296192,0.789687,0.537221,0.86564,0.0283681,0.628602,0.927015,0.334554,0.366577,0.150132,0.089104,0.955776,0.615884,0.51491,0.954472,0.229868,0.323254,0.529498,0.818088,0.982617,0.571973,0.368,0.669133,0.345358,0.229906,0.35395,0.777832,0.657889,0.0874466,0.754057,0.387452,0.957994,0.0945555,0.419156,0.86288,0.20143,0.0717583,0.909066,0.279593,0.7951,0.560494,0.263173,0.788973,0.299684,0.0441307,0.363589,0.337921,0.772188,0.243015,0.28237,0.312782,0.898435,0.226699,0.189931,0.82716,0.259002,0.251685,0.767071,0.330163,0.569846,0.492676,0.0552741,0.000339866,0.0369867,0.70232,0.618349,0.871126,0.895817,0.808161,0.415489,0.659014,0.795887,0.515262,0.410513,0.64487,0.350124,0.601106,0.354022,0.936491,0.547639,0.424511,0.628849,0.486796,0.825407,0.8413,0.868875,0.231235,0.320804,0.60295,0.760626,0.79357,0.0267031,0.510331,0.66395,0.476609,0.785446,0.710438,0.727656,0.697262,0.769003,0.594925,0.828428,0.19545,0.566513,0.8066,0.637252,0.814101,0.255791,0.471958,0.605499,0.0731733,0.827102,0.68775,0.0798365,0.942662,0.237255,0.72593,0.182576,0.67918,0.76498,0.272279,0.47921,0.756532,0.980515,0.678735,0.367211,0.515197,0.199668,0.0129271,0.722531,0.199408,0.872031,0.195739,0.647162,0.483898,|0.870673,0.232668,0.249462,0.575133,0.877121,0.987976,0.106917,0.552658,0.416536,0.758853,0.848163,0.605193,0.610838,0.679994,0.739463,0.754005,0.94693,0.71665,0.35893,0.942175,0.459404,0.747288,0.337914,0.950779,0.794414,0.0222375,0.0725522,0.10111,0.206204,0.615353,0.335651,0.588793,0.0207833,0.785258,0.16882,0.1185,0.668652,0.0945257,0.469076,0.527355,0.279402,0.725494,0.582973,0.106087,0.56982,0.417658,0.481683,0.449637,0.861763,0.948774,0.286263,0.642476,0.965361,0.597232,0.524808,0.159647,0.698323,0.122317,0.297522,0.0551006,0.169219,0.426299,0.996803,0.111957,0.409578,0.450264,0.363742,0.131497,0.65563,0.643514,0.707254,0.557272,0.094276,0.0195872,0.657719,0.981583,0.405463,0.220038,0.350958,0.688836,0.19221,0.992176,0.365913,0.812587,0.953066,0.667698,0.460712,0.325913,0.500835,0.650801,0.529663,0.927047,0.152982,0.847166,0.977392,0.866974,0.686441,0.834485,0.442115,0.855532,0.966487,0.572275,0.66726,0.486141,0.848171,0.452599,0.624397,0.27946,0.361062,0.610708,0.294385,0.663957,0.323295,0.782385,0.123275,0.746007,0.981143,0.0692898,0.792055,0.156832,0.0259326,0.486129,0.403925,0.255311,0.609613,0.221738,0.291957,0.397633,0.297192,0.49428,0.346,0.162591,0.991881,0.868235,0.623814,0.81993,0.952503,0.764523,0.986301,0.165406,0.39305,0.881457,0.632355,0.259312,0.291835,0.816501,0.141077,0.299466,0.320508,0.491697,0.165652,0.253923,0.66723,0.751294,0.545954,0.684362,0.152304,0.972487,0.330343,0.861389,0.997376,0.704681,0.196827,0.0554588,0.199645,0.123958,0.068943,0.126845,0.205433,0.134628,0.694909,0.528279,0.950477,0.339192,0.118634,0.580307,0.980697,0.431272,0.561684,0.0956136,0.919376,0.999502,0.80356,0.418426,0.144383,0.306675,0.674193,0.216557,0.381498,0.275229,0.335212,0.223485,0.0993174,0.581687,0.629252,0.474648,0.522986,0.885789,0.28588,0.468,0.568637,0.0174229,0.33141,0.0701582,0.545572,0.450445,0.860903,0.186829,0.614024,0.277775,0.403312,0.661017,0.0259555,0.556426,0.372685,0.552805,0.805673,0.312387,0.780705,0.828205,0.832506,0.80374,0.217692,0.19476,0.105572,0.597156,0.449032,0.425954,0.0108747,0.550061,0.0894942,0.81575,0.710586,0.658931,0.750645,0.886316,0.249509,0.259053,0.25885,0.784116,0.65665,0.846863,0.800179,0.259747,0.264222,0.0787407,0.929795,0.0833445,0.577177,0.140817,0.578352,0.134763,0.980494,0.569027,0.946301,0.651374,0.237173,0.504083,0.150476,0.878188,0.595443,0.599683,0.590874,0.0416846,0.813001,0.727751,0.662108,0.406345,0.735608,0.312847,0.828655,0.916357,0.952801,0.410927,0.563177,0.905061,0.172394,0.149954,0.831698,0.128745,0.65265,0.388609,0.0711041,0.149991,0.754659,0.209288,0.736334,0.486218,0.683355,0.362791,0.178689,0.887209,0.385468,0.484256,0.790189,0.676834,0.238394,0.199831,0.0642816,0.363909,0.335227,0.708304,0.819955,0.575014,0.881253,0.296139,0.983571,0.605069,0.939236,0.360975,0.057955,0.88961,0.425823,0.885855,0.29736,0.253173,0.276468,0.22914,0.0794415,0.331375,0.705282,0.432673,0.888405,0.483858,0.519571,0.599279,0.927877,0.246382,0.355169,0.317891,0.692805,0.937167,0.0724006,0.451558,0.117946,0.106143,0.737808,0.566739,0.700582,0.736583,0.962264,0.420399,0.448517,0.848935,0.24433,0.0930569,0.104437,0.320234,0.678583,0.959014,0.456864,0.924861,0.669485,0.309651,0.772747,0.753149,0.200869,0.944091,0.916144,0.704852,0.879198,0.0984721,0.407604,0.0373788,0.940792,0.434246,0.162452,0.926367,0.89818,0.902138,0.306183,0.177703,0.649895,0.425179,0.931067,0.938681,0.99931,0.22434,0.837921,0.598082,0.698606,0.67676,0.0464364,0.477527,0.908962,0.610136,0.834851,0.869274,0.840254,0.430886,0.337542,0.756848,0.826969,0.970124,0.959169,0.233717,0.294258,0.150455,0.0909137,0.24427,0.34913,0.948697,0.292901,0.359832,0.0721713,0.487941,0.533745,0.127039,0.508073,0.155024,0.717498,0.391098,0.722531,0.421302,0.588395,0.0555648,0.316072,0.726534,0.351657,0.621845,0.255855,0.800839,0.0712366,0.449709,0.835142,0.744972,0.265298,0.956086,0.585581,0.379049,0.0552796,0.951043,0.49382,0.605462,0.118739,0.594287,0.28195,0.176882,0.719147,0.726811,0.0608958,0.250527,0.594996,0.125764,0.357325,0.725275,0.0141281,0.675402,0.00273669,0.389311,0.449847,0.486759,0.287636,0.874923,0.22809,0.841368,0.700899,0.739895,0.543814,0.35096,0.02048,0.00519937,0.751471,0.534794,0.771906,0.667134,0.373035,0.964031,0.625126,0.0824934,0.0354978,0.624049,0.232923,0.504334,0.25428,0.362231,0.997383,0.525822,0.927427,0.753539,0.846836,0.454824,0.0846091,0.141542,0.667936,0.626663,0.489554,0.532676,0.306816,0.150005,0.485619,0.344542,0.413649,0.708198,0.622658,0.13434,0.202949,0.697957,0.227651,0.120288,0.188361,0.357712,0.0170346,0.197111,0.536509,0.234528,0.458553,0.223283,0.435701,0.798985,0.950012,0.924157,0.464105,0.693799,0.419457,0.690042,0.341016,0.023492,0.146676,0.892033,0.351014,0.964945,0.0291851,0.381822,0.730384,0.291661,0.537823,0.331833,0.846451,0.401938,0.622498,0.533306,0.36661,0.70341,0.546716,0.716909,0.0120513,0.963135,0.672846,0.00452626,0.348042,0.719915,0.750456,0.716962,0.044574,0.0501608,0.0137312,0.956824,0.0792794,0.748941,0.214727,0.742576,0.570753,0.739232,0.0844363,0.023378,0.81088,0.15711,0.624069,0.0268785,0.59368,0.970753,0.193982,0.0446919,0.697387,0.788238,0.184791,0.696128,0.271738,0.558363,0.541503,0.424681,0.588352,0.791656,0.167637,0.196862,0.487977,0.491411,0.388155,0.240166,0.984212,0.748587,0.412535,0.578737,0.725426,0.264158,0.854432,0.684834,0.638497,0.37083,0.686313,0.905757,0.971896,0.495846,0.0139815,0.457869,0.951936,0.954654,0.619811,0.36476,0.357679,0.370105,0.297174,0.061967,0.980564,0.167477,0.745575,0.649883,0.241281,0.36307,0.623918,0.91962,0.574037,0.338016,0.307426,0.931491,0.0353113,0.7422,0.464952,0.951323,0.379155,0.0440443,0.994353,0.215139,0.997509,0.0817662,0.835407,0.0936285,0.342886,0.760024,0.590905,0.542577,0.561654,0.181149,0.199645,0.930412,0.205224,0.902524,0.716436,0.499651,0.504912,0.959708,0.754913,0.606125,0.297254,0.867397,0.54839,0.898225,0.0479754,0.501233,0.797286,0.594826,0.884421,0.070397,0.120449,0.951551,0.0153965,0.652476,0.101716,0.575873,0.628527,0.00033325,0.327174,0.838108,0.531772,0.345424,0.348153,0.615841,0.723021,0.268613,0.300534,0.895989,0.273103,0.713574,0.462419,0.954983,0.572284,0.130393,0.156115,0.306564,0.754263,0.950676,0.984471,0.236056,0.724482,0.79482,0.658203,0.21861,0.320544,0.828276,0.543959,0.327903,0.851723,0.109252,0.0351802,0.27728,0.884657,0.440134,0.289451,0.0742229,0.173691,0.400358,0.575749,0.416419,0.309146,0.680186,0.269981,0.476552,0.369459,0.648201,0.203741,0.575191,0.265231,0.503284,0.925125,0.313968,0.839099,0.61938,0.162977,0.0611177,0.672682,0.544084,0.15386,0.510469,0.409308,0.367712,0.794197,0.931635,0.152417,0.619448,0.294542,0.33846,0.724348,0.145665,0.746596,0.157756,0.495375,0.841541,0.810914,0.71287,0.787908,0.934864,0.0986351,0.435181,0.399856,0.0208195,0.347819,0.150181,0.17251,0.486556,0.421086,0.204711,0.632338,0.711233,0.936026,0.543121,0.111327,0.867613,0.015182,0.50458,0.357657,0.0301486,0.230061,0.992915,0.97642,0.13115,0.889589,0.599693,0.256646,0.771224,0.398162,0.325644,0.606334,0.740461,0.340312,0.357668,0.979396,0.952349,0.415105,0.0401847,0.516101,0.696237,0.203596,0.410054,0.53427,0.73359,0.322768,0.434385,0.660346,0.377578,0.49438,0.338542,0.222734,0.862064,0.939991,0.289462,0.704013,0.0293846,0.845917,0.606961,0.20545,0.181115,0.534957,0.834989,0.218909,0.126225,0.589904,0.270417,0.00221765,0.894348,0.499432,0.873946,0.0950391,0.98604,0.32979,0.80541,0.60849,0.830693,0.983384,0.384125,0.895066,0.41117,0.154933,0.106854,0.0231006,0.426784,0.245804,0.129665,0.860141,0.457876,0.656303,0.655847,0.533625,0.0832496,0.543973,0.123397,0.896363,0.153353,0.400384,0.437495,0.588133,0.781029,0.0587531,0.877379,0.696019,0.169759,0.275534,0.793562,0.657726,0.542839,0.0845945,0.290668,0.12962,0.635777,0.382592,0.396994,0.854831,0.84386,0.408618,0.760544,0.509316,0.695647,0.656591,0.644186,0.113736,0.804892,0.256487,0.405718,0.947491,0.550277,0.13708,0.78289,0.379536,0.778877,0.826963,0.873858,0.909282,0.842912,0.847309,0.342112,0.588864,0.90423,0.725474,0.383031,0.56849,0.882479,0.629626,0.923323,0.02144,0.721556,0.503414,0.131111,0.811997,0.52262,0.298604,0.468842,0.921051,0.628226,0.161663,0.142951,0.8078,0.104636,0.814213,0.591744,0.834125,0.740722,0.210194,0.42352,0.0763865,0.566619,0.931165,0.626643,0.105617,0.450891,0.227564,0.497548,0.0737225,0.137874,0.429957,0.988426,0.896835,0.759375,0.863671,0.43447,0.580165,0.519742,0.00677305,0.738577,0.584842,0.0369109,0.562974,0.81113,0.0425257,0.335893,0.120491,0.239461,0.616316,0.275122,0.0369119,0.114467,0.185728,0.790272,0.157674,0.884532,0.50843,0.201766,0.205657,0.516599,0.808828,0.627367,0.0666988,0.0832108,0.928262,0.0694646,0.625941,0.723923,0.562192,0.911726,0.516083,0.199364,0.384427,0.00699574,0.584947,0.469575,0.523111,0.794314,0.680816,0.174608,0.140248,0.00272149,0.280835,0.191298,0.459298,0.508194,0.415438,0.294189,0.270408,0.721726,0.322711,0.209495,0.595568,0.416609,0.205816,0.511019,0.46441,0.268589,0.31329,0.475012,0.504786,0.345602,0.910315,0.414439,0.925372,0.253681,0.743576,0.514773,0.33602,0.643828,0.804974,0.239438,|0.966328,0.889804,0.36842,0.344893,0.280374,0.336043,0.330156,0.847308,0.427954,0.816819,0.503718,0.122482,0.531742,0.163914,0.789533,0.395375,0.0445096,0.714755,0.255302,0.72701,0.336848,0.829087,0.337462,0.905014,0.412866,0.873857,0.62632,0.816543,0.57002,0.0777343,0.39579,0.244679,0.954454,0.0842758,0.892931,0.308701,0.725897,0.350334,0.00318098,0.124436,0.997068,0.293266,0.314483,0.495991,0.633518,0.787488,0.917898,0.455619,0.624178,0.69915,0.4771,0.42729,0.971526,0.209423,0.0419185,0.371964,0.986079,0.954736,0.577069,0.0119794,0.807392,0.215683,0.00218201,0.158258,0.936098,0.919585,0.471916,0.555658,0.328709,0.0713726,0.938257,0.993739,0.909057,0.619306,0.321565,0.187995,0.0995904,0.032247,0.506659,0.792316,0.520259,0.479142,0.00362247,0.882363,0.139554,0.519635,0.104356,0.798718,0.184986,0.0582379,0.963448,0.0124202,0.948138,0.90522,0.671668,0.976595,0.307236,0.910832,0.327523,0.0999695,0.386735,0.11938,0.0962592,0.5812,0.567396,0.466467,0.692832,0.579436,0.273123,0.835917,0.510428,0.979502,0.714954,0.693177,0.501311,0.513556,0.310201,0.024339,0.0314842,0.500996,0.743933,0.408141,0.0493104,0.345233,0.829367,0.113907,0.489145,0.00627631,0.442674,0.626319,0.957428,0.996418,0.26093,0.643107,0.872155,0.650656,0.134252,0.900906,0.870413,0.723051,0.523233,0.776123,0.550665,0.835544,0.552296,0.174815,0.120652,0.22913,0.705647,0.636398,0.670732,0.816843,0.0345019,0.947708,0.709017,0.376943,0.781695,0.0388894,0.264227,0.903173,0.817224,0.0290276,0.955326,0.8695,0.71699,0.757422,0.543278,0.418918,0.739936,0.179069,0.802657,0.676918,0.79948,0.322007,0.662835,0.682986,0.135661,0.10882,0.845607,0.658991,0.954846,0.377913,0.364344,0.66101,0.463461,0.349289,0.348561,0.915916,0.0247307,0.298181,0.945966,0.809153,0.272198,0.41848,0.956446,0.413551,0.916312,0.307589,0.582145,0.654763,0.189433,0.482358,0.90779,0.120515,0.614029,0.250003,0.819713,0.872657,0.454487,0.134427,0.499185,0.98407,0.760917,0.751975,0.591311,0.34217,0.885768,0.567092,0.370792,0.471819,0.969018,0.195994,0.170759,0.825899,0.737083,0.929882,0.242809,0.804863,0.915207,0.182703,0.793207,0.0985862,0.720612,0.784613,0.0520992,0.665107,0.437261,0.543193,0.972374,0.283937,0.489637,0.62819,0.55348,0.432362,0.575344,0.87295,0.282882,0.00300771,0.291199,0.403768,0.494808,0.0707472,0.0670678,0.325945,0.115426,0.16389,0.366742,0.753564,0.0587969,0.230825,0.666398,0.51159,0.853581,0.851529,0.918433,0.898356,0.877215,0.00100899,0.450652,0.939364,0.654058,0.237503,0.222476,0.610617,0.146487,0.212282,0.182362,0.125448,0.303751,0.11759,0.697801,0.693606,0.513926,0.0845684,0.623977,0.160328,0.795162,0.467484,0.46971,0.588245,0.496955,0.634626,0.572845,0.0451694,0.468502,0.798481,0.934928,0.265457,0.00613892,0.997727,0.869117,0.0522547,0.202955,0.725707,0.891577,0.337999,0.322086,0.655953,0.62873,0.200661,0.852696,0.835868,0.675284,0.266182,0.910818,0.343698,0.881807,0.951883,0.0928876,0.955241,0.745742,0.550187,0.697329,0.498471,0.418072,0.756702,0.855307,0.23904,0.796126,0.139658,0.483864,0.737293,0.462212,0.455375,0.0749204,0.696379,0.729283,0.895722,0.121969,0.407894,0.130248,0.163073,0.30567,0.399412,0.671844,0.455648,0.618963,0.709918,0.333887,0.14662,0.141355,0.858038,0.539246,0.124108,0.729607,0.263964,0.289256,0.091684,0.155066,0.699872,0.747781,0.379681,0.230901,0.830312,0.35854,0.226266,0.446003,0.0666662,0.328479,0.59933,0.70742,0.240278,0.859251,0.261945,0.0240449,0.208057,0.831457,0.0460796,0.405599,0.840385,0.0315438,0.704293,0.207812,0.213452,0.755107,0.354953,0.890841,0.917872,0.965899,0.910676,0.812779,0.0426537,0.0501526,0.0192858,0.807499,0.391362,0.553998,0.299586,0.632884,0.683295,0.978402,0.978169,0.0167496,0.780281,0.351678,0.94745,0.639421,0.60389,0.766253,0.496465,0.455984,0.724634,0.35886,0.756859,0.389855,0.0294873,0.821708,0.525046,0.584664,0.601334,0.086976,0.530656,0.837921,0.710554,0.0594147,0.658049,0.183169,0.786002,0.894068,0.518001,0.869662,0.41076,0.441176,0.796568,0.478796,0.842259,0.819297,0.0317144,0.489547,0.590407,0.83289,0.980156,0.884735,0.477147,0.97743,0.571034,0.062748,0.0668066,0.332413,0.688308,0.468838,0.831874,0.148834,0.0149046,0.735155,0.861601,0.678981,0.410728,0.342639,0.439424,0.94171,0.607232,0.284302,0.89928,0.500391,0.353178,0.649759,0.113356,0.342487,0.135584,0.502317,0.760396,0.444864,0.628331,0.480179,0.97428,0.9727,0.818427,0.539222,0.241048,0.641866,0.592447,0.700404,0.0330948,0.756984,0.508286,0.835836,0.879448,0.860546,0.293405,0.237462,0.163574,0.56658,0.852856,0.350605,0.40749,0.148265,0.431853,0.710373,0.0144842,0.740144,0.0120568,0.724217,0.58969,0.826534,0.683855,0.692039,0.269957,0.723364,0.00655186,0.281636,0.254638,0.433058,0.596124,0.697094,0.496104,0.8468,0.975542,0.151413,0.0784807,0.290571,0.239341,0.337891,0.840127,0.770639,0.275308,0.426807,0.85788,0.623044,0.384857,0.777207,0.683754,0.353265,0.861431,0.0135857,0.330254,0.3992,0.277902,0.352077,0.884193,0.887217,0.500081,0.0132243,0.094244,0.652558,0.0731944,0.227506,0.530162,0.0392192,0.340662,0.984155,0.28445,0.0484357,0.565955,0.32397,0.533653,0.659027,0.995481,0.183768,0.210856,0.218754,0.555436,0.267696,0.129593,0.057558,0.812802,0.805218,0.315747,0.705209,0.491208,0.66366,0.575801,0.15549,0.76462,0.435088,0.921003,0.758039,0.0030098,0.783495,0.495923,0.216765,0.0446603,0.886187,0.260371,0.54033,0.290603,0.476675,0.436491,0.676332,0.859809,0.665042,0.24846,0.660143,0.00464016,0.528117,0.328607,0.717041,0.367136,0.130928,0.522211,0.947867,0.972461,0.256876,0.817196,0.659787,0.796254,0.876571,0.0454968,0.168006,0.218995,0.729972,0.534034,0.620051,0.259788,0.389525,0.411407,0.470668,0.303348,0.799955,0.106527,0.0935955,0.0010615,0.759221,0.699562,0.283671,0.611458,0.69678,0.79623,0.841073,0.676197,0.209546,0.4227,0.608699,0.537946,0.830264,0.460937,0.583848,0.75235,0.629291,0.175547,0.965878,0.768938,0.384522,0.301934,0.441752,0.58321,0.0914221,0.485302,0.684402,0.222658,0.171687,0.279252,0.140848,0.10448,0.243255,0.370137,0.924912,0.267018,0.579774,0.614244,0.161136,0.956022,0.282717,0.420128,0.106149,0.652148,0.519648,0.602226,0.512384,0.379478,0.763625,0.634473,0.103183,0.381554,0.716295,0.451619,0.260545,0.779109,0.553008,0.66345,0.767489,0.276719,0.842237,0.202481,0.647224,0.384522,0.405337,0.973877,0.075443,0.988171,0.922479,0.600581,0.788577,0.235085,0.399794,0.273856,0.284365,0.059499,0.669355,0.546938,0.74249,0.905412,0.753631,0.759029,0.371218,0.35656,0.82197,0.0518094,0.131683,0.410222,0.768404,0.328517,0.358414,0.739732,0.925073,0.799938,0.540689,0.214007,0.00667304,0.643426,0.881149,0.278834,0.328605,0.357275,0.512798,0.730739,0.015652,0.848809,0.500173,0.461537,0.0130827,0.813153,0.0237575,0.62388,0.203064,0.11745,0.737298,0.816481,0.815639,0.130574,0.550682,0.656105,0.00758255,0.925746,0.483443,0.067885,0.884119,0.821898,0.408855,0.967779,0.703629,0.331858,0.453788,0.88624,0.881615,0.811857,0.661739,0.068921,0.483101,0.8372,0.826262,0.584831,0.19696,0.461979,0.184873,0.29663,0.152497,0.121213,0.580072,0.544151,0.456237,0.283425,0.8133,0.635584,0.66135,0.231095,0.836786,0.111865,0.212397,0.684739,0.337046,0.884384,0.396887,0.714298,0.526461,0.820116,0.890868,0.645806,0.754926,0.875784,0.30451,0.116552,0.0729582,0.357825,0.636603,0.575958,0.766569,0.899733,0.914963,0.252435,0.311225,0.40267,0.644333,0.735019,0.495798,0.24522,0.39267,0.881284,0.895083,0.785332,0.794533,0.513658,0.670715,0.18229,0.077213,0.252673,0.654974,0.365095,0.147041,0.278746,0.25413,0.828103,0.690666,0.968193,0.7756,0.63618,0.303415,0.979726,0.365185,0.570794,0.208736,0.894187,0.49758,0.344115,0.160696,0.540069,0.209416,0.779898,0.811521,0.320823,0.624999,0.842355,0.576199,0.50925,0.70667,0.799059,0.603854,0.543886,0.809847,0.293415,0.801954,0.368335,0.948584,0.048191,0.258907,0.78212,0.896263,0.57912,0.440879,0.975292,0.766157,0.201753,0.354125,0.411118,0.579749,0.0912687,0.607308,0.552286,0.284529,0.555881,0.343934,0.697034,0.405775,0.554072,0.386915,0.792653,0.760798,0.808252,0.471959,0.667472,0.00323343,0.820935,0.948008,0.455348,0.804842,0.519861,0.960849,0.952781,0.049723,0.617591,0.900287,0.480926,0.833676,0.0161908,0.953045,0.463627,0.0166709,0.270055,0.38492,0.122348,0.672902,0.496775,0.154927,0.318027,0.512394,0.422643,0.423847,0.900885,0.62227,0.00598866,0.675752,0.219893,0.545991,0.770191,0.623521,0.591735,0.113752,0.898079,0.263277,0.139211,0.45699,0.190195,0.300795,0.1823,0.334622,0.130355,0.659726,0.768033,0.492448,0.826704,0.578155,0.47114,0.451178,0.72751,0.15104,0.320624,0.0965301,0.44337,0.223032,0.251157,0.125115,0.432082,0.709173,0.465874,0.257361,0.44432,0.0543435,0.686753,0.268618,0.107801,0.310309,0.064811,0.648467,0.912103,0.82901,0.545427,0.30314,0.436594,0.553671,0.581356,0.237284,0.614058,0.376983,0.733289,0.51191,0.452921,0.873745,0.711002,0.0984722,0.238469,0.248012,0.784189,0.0147036,0.0734979,0.167427,0.937563,0.230763,0.470607,0.725568,0.849684,0.110734,0.308158,0.138737,0.0999377,0.649974,0.0124637,0.960462,0.157279,0.608705,0.77663,0.522253,0.735033,0.798049,0.693907,0.00909537,0.0476059,0.826459,0.67387,0.149209,0.206053,|0.0175147,0.871854,0.711809,0.438034,0.19959,0.0473255,0.645473,0.704092,0.389443,0.989794,0.00153291,0.571862,0.732638,0.398661,0.506305,0.135243,0.693616,0.57314,0.049972,0.524336,0.097838,0.635063,0.0204426,0.699502,0.943145,0.856851,0.245967,0.13561,0.284514,0.851467,0.563269,0.351159,0.501659,0.491522,0.653721,0.146625,0.579537,0.455744,0.793956,0.599024,0.314862,0.142842,0.138294,0.557321,0.199647,0.212659,0.874593,0.250473,0.136795,0.401661,0.778558,0.092031,0.631261,0.952268,0.690575,0.282578,0.261678,0.774929,0.0956928,0.923097,0.209537,0.821084,0.0324822,0.483375,0.190339,0.0460411,0.970619,0.147408,0.257726,0.0985277,0.6598,0.00690538,0.050469,0.834354,0.544741,0.881012,0.325274,0.45542,0.111301,0.241029,0.365789,0.563358,0.766905,0.943184,0.545856,0.707311,0.182146,0.263284,0.0218989,0.699439,0.419457,0.288466,0.553382,0.931606,0.92669,0.209115,0.0201163,0.954521,0.843863,0.993878,0.715072,0.537139,0.295352,0.320368,0.1014,0.181839,0.00756711,0.0542106,0.680596,0.271205,0.183555,0.836087,0.0721602,0.553124,0.837385,0.478944,0.282315,0.201302,0.454985,0.168726,0.0545149,0.688768,0.42871,0.898629,0.460145,0.879342,0.915519,0.438982,0.610619,0.87243,0.908493,0.968925,0.164821,0.208029,0.920177,0.145858,0.870953,0.55791,0.439896,0.599541,0.632073,0.0791178,0.102777,0.0246044,0.0451065,0.104676,0.49039,0.0951747,0.0199499,0.067938,0.0323309,0.931936,0.0483691,0.657278,0.842579,0.553703,0.398604,0.400081,0.1203,0.812093,0.0960191,0.0371214,0.348117,0.881909,0.380992,0.60623,0.350712,0.925608,0.797425,0.355877,0.45462,0.136158,0.803653,0.973337,0.793421,0.808828,0.563749,0.272901,0.629596,0.0153939,0.268777,0.187827,0.974234,0.19705,0.6432,0.215173,0.142817,0.146952,0.244349,0.538816,0.162313,0.661648,0.276166,0.414651,0.280508,0.617464,0.403978,0.842647,0.444601,0.85436,0.5874,0.0739977,0.278774,0.179745,0.295918,0.918414,0.0677223,0.256148,0.0678015,0.541042,0.455697,0.0532052,0.535648,0.591864,0.813331,0.517016,0.156576,0.679864,0.853648,0.995384,0.523079,0.356217,0.164873,0.926137,0.511073,0.733821,0.862683,0.732267,0.383854,0.545349,0.58254,0.86453,0.84575,0.792101,0.225835,0.555578,0.0403682,0.114621,0.794474,0.694342,0.597849,0.894435,0.68138,0.6293,0.185073,0.0135951,0.772059,0.559934,0.322762,0.295355,0.152481,0.225611,0.329941,0.435863,0.00234032,0.989969,0.692813,0.0340772,0.187087,0.620093,0.730826,0.538192,0.272579,0.312485,0.256179,0.568178,0.458424,0.453941,0.559685,0.843416,0.826177,0.285833,0.910796,0.814354,0.0422299,0.964264,0.449924,0.457973,0.688858,0.558951,0.539152,0.0425327,0.993546,0.373506,0.223992,0.62864,0.462147,0.67537,0.976084,0.472251,0.876905,0.266221,0.417862,0.760927,0.675062,0.107178,0.0392982,0.636841,0.590877,0.113147,0.700379,0.239258,0.216287,0.213738,0.63997,0.160711,0.268522,0.925183,0.934158,0.0323891,0.472954,0.589092,0.287505,0.612696,0.446916,0.548716,0.738085,0.0490854,0.168472,0.908464,0.96895,0.541431,0.824946,0.437064,0.641039,0.88769,0.667028,0.830688,0.824799,0.778161,0.683283,0.231629,0.760118,0.161051,0.678575,0.898859,0.183121,0.624192,0.669407,0.648808,0.184415,0.951492,0.910641,0.392643,0.153145,0.244062,0.384381,0.728026,0.976443,0.163895,0.0490918,0.462768,0.0453464,0.160101,0.0238717,0.453659,0.515039,0.426497,0.203032,0.331581,0.771743,0.499512,0.800295,0.80214,0.608772,0.846606,0.522611,0.264297,0.314357,0.938645,0.911899,0.139969,0.393351,0.785958,0.0326891,0.778201,0.953722,0.765473,0.541966,0.986052,0.282391,0.81346,0.0134021,0.734921,0.779275,0.861533,0.827924,0.605312,0.223993,0.830949,0.709648,0.575022,0.0190755,0.32242,0.360304,0.689024,0.342493,0.731509,0.441892,0.460628,0.175551,0.85726,0.246685,0.52345,0.475773,0.0946563,0.763593,0.665236,0.105323,0.00612664,0.336056,0.277846,0.776002,0.572296,0.905176,0.423711,0.814606,0.18959,0.180637,0.0224099,0.867777,0.540141,0.581757,0.340372,0.923217,0.702287,0.733183,0.292326,0.912517,0.400721,0.260037,0.398964,0.415997,0.759766,0.699074,0.619687,0.716841,0.0782135,0.196329,0.696996,0.331319,0.346254,0.485566,0.372347,0.332307,0.480009,0.717731,0.478289,0.231954,0.347471,0.424801,0.0505,0.755459,0.731164,0.238925,0.249527,0.188333,0.0593625,0.158389,0.89799,0.317577,0.0758567,0.233725,0.851739,0.114998,0.943497,0.562594,0.0804191,0.741843,0.0699276,0.868651,0.0596195,0.513705,0.673193,0.980795,0.894084,0.0541698,0.511305,0.308048,0.941507,0.538069,0.0916634,0.847067,0.513207,0.343807,0.8015,0.291649,0.693684,0.254887,0.32462,0.275623,0.933969,0.433156,0.399179,0.721386,0.141813,0.102522,0.908934,0.659519,0.657715,0.525161,0.217646,0.0192662,0.316489,0.997299,0.380602,0.133397,0.395854,0.845437,0.0536622,0.790399,0.240762,0.0606768,0.324054,0.475675,0.625902,0.867315,0.0965127,0.420147,0.866503,0.877642,0.326546,0.69057,0.379418,0.495151,0.388703,0.301287,0.0563411,0.73648,0.985706,0.67918,0.192661,0.157782,0.935555,0.526285,0.317456,0.783869,0.47458,0.121492,0.00154132,0.857229,0.303668,0.518,0.79006,0.453893,0.97188,0.778716,0.160952,0.613475,0.498753,0.710859,0.839013,0.779963,0.733727,0.356365,0.335931,0.419503,0.445562,0.818959,0.925685,0.975034,0.46353,0.65016,0.27771,0.0598434,0.0281306,0.864262,0.95216,0.659887,0.409779,0.199514,0.97254,0.794338,0.972331,0.96273,0.1129,0.424588,0.990351,0.544496,0.54149,0.853022,0.447371,0.682117,0.211526,0.726668,0.720304,0.963926,0.368001,0.915015,0.0494419,0.289905,0.985706,0.611478,0.947689,0.790028,0.115887,0.348554,0.644084,0.154465,0.820626,0.646249,0.306099,0.348726,0.520815,0.0595521,0.906362,0.667825,0.425564,0.192251,0.34606,0.593139,0.540018,0.177394,0.208549,0.612717,0.0320032,0.353799,0.82266,0.7781,0.820083,0.371271,0.00242198,0.874911,0.954577,0.341959,0.560363,0.0901186,0.443248,0.412181,0.98545,0.473219,0.314187,0.422952,0.0142952,0.831142,0.273518,0.660849,0.611019,0.389027,0.340426,0.506505,0.75462,0.312856,0.104728,0.28871,0.252979,0.95855,0.9558,0.0746567,0.159213,0.995545,0.54807,0.260046,0.0336868,0.165992,0.630445,0.41832,0.0803475,0.997308,0.318242,0.716809,0.944242,0.317627,0.76417,0.373628,0.511818,0.474544,0.830849,0.5833,0.632028,0.680699,0.108137,0.174763,0.234951,0.356606,0.740339,0.986528,0.479311,0.800111,0.97701,0.643801,0.641174,0.339715,0.306668,0.345759,0.286579,0.584577,0.322006,0.136545,0.724998,0.527472,0.0710097,0.619243,0.128766,0.634903,0.640219,0.359427,0.761525,0.641537,0.223279,0.800452,0.755848,0.63538,0.856718,0.160916,0.0289102,0.408847,0.656475,0.236162,0.764075,0.54797,0.658664,0.46265,0.865368,0.942723,0.742682,0.250695,0.959197,0.977951,0.866464,0.573822,0.128431,0.427297,0.143568,0.871945,0.238873,0.888661,0.543888,0.478986,0.983248,0.966493,0.700811,0.3857,0.404536,0.603419,0.79779,0.591865,0.140988,0.475752,0.55836,0.790269,0.32531,0.241267,0.099582,0.240759,0.436326,0.683684,0.846829,0.986945,0.664243,0.0596316,0.74011,0.26164,0.251679,0.248369,0.816566,0.0543986,0.779891,0.00262147,0.053548,0.661608,0.212669,0.218052,0.0145462,0.288226,0.502183,0.846476,0.979915,0.241846,0.424756,0.492095,0.562554,0.0360939,0.421971,0.779132,0.0979363,0.164662,0.896911,0.814215,0.0823103,0.109023,0.565267,0.406185,0.974351,0.894398,0.89509,0.899801,0.299922,0.116075,0.91696,0.184756,0.278998,0.998978,0.735163,0.149987,0.820227,0.401434,0.747811,0.327891,0.417693,0.126676,0.591313,0.824392,0.411474,0.83843,0.329098,0.439901,0.259915,0.819689,0.655367,0.143498,0.971037,0.733473,0.304935,0.287483,0.482663,0.245905,0.73872,0.455428,0.347998,0.834149,0.327723,0.488314,0.283679,0.879038,0.652308,0.634792,0.592911,0.807566,0.188526,0.492948,0.239572,0.19623,0.300755,0.954055,0.351529,0.856367,0.569467,0.453112,0.131084,0.0226158,0.744281,0.867978,0.277335,0.345653,0.541222,0.0369279,0.564035,0.760416,0.0711698,0.269719,0.295104,0.0150148,0.645521,0.692829,0.849661,0.113369,0.763779,0.590473,0.910154,0.799367,0.773866,0.285588,0.236068,0.729284,0.258589,0.085606,0.914148,0.931838,0.446838,0.375766,0.155219,0.548902,0.460048,0.339161,0.361068,0.816893,0.442449,0.984744,0.228674,0.348124,0.181049,0.523824,0.799729,0.297342,0.986887,0.27897,0.593964,0.617872,0.151172,0.734709,0.830445,0.274197,0.0563025,0.0268109,0.411133,0.41407,0.944509,0.208336,0.83996,0.674604,0.306663,0.988153,0.835446,0.706759,0.517729,0.829952,0.406331,0.759882,0.528362,0.202375,0.961257,0.98294,0.0683562,0.500361,0.787501,0.142169,0.01144,0.852317,0.749769,0.583607,0.201824,0.291369,0.824359,0.465859,0.666571,0.897202,0.375398,0.444171,0.676656,0.710429,0.732321,0.226588,0.529584,0.0410695,0.683701,0.501038,0.823342,0.0897556,0.271669,0.724474,0.752804,0.857181,0.480874,0.326042,0.728411,0.638055,0.452581,0.298052,0.101329,0.814384,0.0196766,0.760939,0.677261,0.891695,0.372555,0.165848,0.88304,0.322705,0.404095,0.774945,0.884248,0.465239,0.42149,0.370592,0.691922,0.120457,0.285902,0.0391025,0.0896435,0.403373,0.564521,0.338733,0.116694,0.516795,0.278346,0.620947,0.0757499,0.572083,0.726144,0.1185,0.694853,0.575239,0.546034,0.662341,0.123011,0.806326,0.116552,0.544265,0.959995,0.477017,0.0761863,0.0304341,0.921391,0.876352,0.934849,0.70792,0.0394852,0.210815,0.952965,|0.772447,0.949195,0.308746,0.108764,0.0524874,0.791124,0.0837263,0.685412,0.867847,0.540007,0.804158,0.511359,0.624372,0.816869,0.522558,0.606434,0.246449,0.298068,0.54359,0.746702,0.966399,0.831646,0.308137,0.797797,0.838619,0.628925,0.0433201,0.0218807,0.830455,0.525421,0.798998,0.562766,0.259265,0.687938,0.939227,0.141019,0.396496,0.299217,0.119668,0.972257,0.435112,0.492779,0.701401,0.532728,0.749209,0.699938,0.110577,0.954838,0.377948,0.156543,0.681821,0.610457,0.943952,0.471506,0.628905,0.245695,0.695721,0.969648,0.483998,0.604488,0.922816,0.253044,0.0316834,0.142769,0.88936,0.715728,0.729964,0.643376,0.98754,0.818331,0.263585,0.493259,0.844087,0.807491,0.17753,0.547161,0.988793,0.372256,0.387962,0.514334,0.351384,0.5175,0.619375,0.139953,0.126233,0.435674,0.589092,0.165809,0.112035,0.922744,0.903664,0.62048,0.27484,0.764035,0.175309,0.849522,0.648477,0.821869,0.06567,0.970565,0.135349,0.0661893,0.70041,0.454017,0.0822855,0.857378,0.404334,0.349559,0.714899,0.540151,0.164055,0.073775,0.344023,0.719028,0.660667,0.979652,0.104025,0.457452,0.6713,0.567059,0.0464613,0.302445,0.332116,0.95889,0.219773,0.339983,0.546055,0.863117,0.800853,0.197889,0.237051,0.343211,0.706283,0.746993,0.417734,0.306064,0.891931,0.867205,0.503671,0.326544,0.587453,0.359672,0.81703,0.0830474,0.918646,0.426656,0.559183,0.472054,0.858213,0.0958444,0.849439,0.651989,0.10337,0.554025,0.704816,0.653116,0.553357,0.819823,0.744409,0.702282,0.0292851,0.0212866,0.272111,0.773447,0.558655,0.896201,0.419072,0.514154,0.451207,0.278491,0.780475,0.159905,0.993245,0.710895,0.527623,0.0131195,0.585048,0.0477446,0.545186,0.392648,0.864681,0.359513,0.814483,0.537527,0.9123,0.43543,0.350904,0.388353,0.880498,0.599442,0.595839,0.489794,0.896105,0.887194,0.245321,0.829335,0.6682,0.871713,0.93933,0.867482,0.769211,0.985292,0.280897,0.951386,0.5866,0.0173409,0.829388,0.223422,0.0196081,0.990538,0.123611,0.173557,0.379746,0.499967,0.71728,0.47395,0.602717,0.304336,0.975103,0.110881,0.0637608,0.589662,0.748689,0.11525,0.799531,0.292205,0.493637,0.518273,0.0888641,0.560088,0.259671,0.83839,0.80856,0.097447,0.509333,0.206352,0.989983,0.153808,0.0488502,0.298075,0.134296,0.924487,0.657972,0.887225,0.183774,0.387491,0.206407,0.686688,0.0291934,0.323613,0.269592,0.15718,0.788789,0.219902,0.400469,0.729753,0.67809,0.293351,0.37191,0.226543,0.444016,0.200632,0.70505,0.795156,0.45548,0.02533,0.059991,0.0924268,0.899855,0.297657,0.355721,0.162556,0.255611,0.421468,0.234474,0.923379,0.977693,0.368997,0.621987,0.852404,0.476755,0.668892,0.218946,0.277088,0.661435,0.717035,0.894275,0.782214,0.575624,0.432087,0.198442,0.405707,0.687562,0.855252,0.790735,0.399832,0.810424,0.00463623,0.987631,0.080686,0.655663,0.713608,0.173692,0.376086,0.957013,0.402151,0.230033,0.0610131,0.820271,0.269291,0.186917,0.0993245,0.760752,0.79151,0.460455,0.642845,0.633037,0.963638,0.143853,0.788693,0.660707,0.217552,0.526126,0.825702,0.121662,0.151042,0.969344,0.929723,0.515685,0.591281,0.0705631,0.239214,0.398418,0.335604,0.344635,0.174186,0.771015,0.602756,0.108606,0.0217916,0.239437,0.103082,0.699041,0.800756,0.0521696,0.321259,0.465102,0.674033,0.0252093,0.531719,0.629187,0.524203,0.010628,0.677433,0.852033,0.307412,0.934371,0.54297,0.261334,0.359791,0.129535,0.782689,0.185392,0.52642,0.12662,0.152567,0.655722,0.279209,0.172797,0.324121,0.886012,0.403344,0.885955,0.157804,0.258422,0.554401,0.105908,0.293487,0.254911,0.100752,0.840785,0.964039,0.791611,0.920511,0.0538058,0.565084,0.821156,0.916783,0.803772,0.647463,0.472307,0.556836,0.185117,0.0558571,0.0367604,0.198876,0.224392,0.315249,0.117933,0.137341,0.227848,0.5339,0.0201587,0.583187,0.162991,0.325262,0.82935,0.0380616,0.0455685,0.914108,0.0179765,0.860863,0.615982,0.862724,0.554174,0.513315,0.318149,0.981211,0.984773,0.526334,0.608355,0.349376,0.974883,0.588777,0.623097,0.313468,0.395796,0.424768,0.924632,0.542317,0.54954,0.792699,0.773067,0.66395,0.396395,0.942687,0.452104,0.997218,0.49812,0.36833,0.40027,0.681515,0.435226,0.947321,0.863565,0.886302,0.342547,0.278525,0.279408,0.553174,0.969583,0.0693088,0.017619,0.949649,0.492704,0.779456,0.592171,0.604576,0.36437,0.229769,0.872089,0.0316168,0.499307,0.751968,0.870395,0.73496,0.746308,0.0514287,0.181113,0.473869,0.751782,0.0859364,0.334852,0.870392,0.735833,0.997516,0.747628,0.478234,0.508496,0.711633,0.0762267,0.592875,0.436197,0.569622,0.262309,0.585208,0.57356,0.728903,0.312885,0.0126245,0.0984699,0.719799,0.56901,0.741225,0.356078,0.923643,0.915238,0.837415,0.150503,0.155743,0.154366,0.608271,0.0458389,0.782575,0.358569,0.464326,0.817891,0.550044,0.220904,0.299928,0.0287987,0.449683,0.0909125,0.54535,0.0861455,0.640499,0.499097,0.800704,0.869648,0.897395,0.799701,0.414171,0.338465,0.96796,0.799493,0.873568,0.799985,0.456973,0.151141,0.101202,0.107497,0.704091,0.894804,0.239833,0.911414,0.710498,0.878933,0.360063,0.221891,0.601686,0.0837423,0.667278,0.647123,0.0400925,0.698025,0.400632,0.274616,0.559016,0.64305,0.596939,0.577309,0.718147,0.21298,0.21507,0.541297,0.249284,0.885834,0.225412,0.171402,0.391947,0.32687,0.190141,0.807988,0.396123,0.798858,0.85429,0.204526,0.104048,0.342888,0.830126,0.745276,0.175477,0.138084,0.166475,0.273651,0.346747,0.527488,0.694016,0.186623,0.778579,0.770546,0.140751,0.224491,0.0346086,0.468179,0.740171,0.902782,0.738414,0.0874838,0.300842,0.261869,0.461257,0.348925,0.425916,8.63671e-05,0.225477,0.509628,0.873878,0.455277,0.972729,0.970474,0.742869,0.394557,0.723566,0.0421119,0.0848265,0.813053,0.01847,0.530803,0.923948,0.396831,0.0872797,0.0719239,0.98939,0.724867,0.300274,0.368437,0.980432,0.690783,0.804826,0.799783,0.483249,0.821798,0.16209,0.0376011,0.91415,0.30003,0.363509,0.891132,0.89992,0.738892,0.0185949,0.61179,0.909549,0.211506,0.729245,0.826424,0.472355,0.661813,0.494344,0.342836,0.36886,0.965504,0.406942,0.773469,0.160654,0.228151,0.864956,0.56379,0.377844,0.00926489,0.768953,0.975991,0.966752,0.373829,0.757857,0.428014,0.650973,0.945737,0.329871,0.759378,0.0179665,0.51049,0.811792,0.0371412,0.684187,0.813915,0.58244,0.873489,0.188248,0.888583,0.727075,0.290327,0.329725,0.567755,0.480458,0.378755,0.39285,0.563538,0.501435,0.45933,0.0510052,0.533056,0.72535,0.309678,0.970057,0.39782,0.838776,0.719355,0.0279871,0.174901,0.842079,0.545385,0.619877,0.0747737,0.435636,0.999017,0.975739,0.869514,0.215623,0.595102,0.273157,0.0542016,0.198188,0.0522186,0.161936,0.631131,0.430962,0.370553,0.959226,0.136351,0.259985,0.702558,0.156597,0.592117,0.569684,0.633143,0.363055,0.691197,0.0706322,0.513776,0.467471,0.473266,0.267271,0.354402,0.056422,0.214734,0.693427,0.0203618,0.726095,0.573263,0.530051,0.478357,0.769586,0.255323,0.83865,0.129545,0.759446,0.359985,0.51118,0.0971249,0.394224,0.771583,0.643898,0.232934,0.298275,0.140787,0.733702,0.987898,0.52366,0.421086,0.362213,0.420783,0.447592,0.982285,0.732789,0.52296,0.0969331,0.935989,0.0964809,0.447405,0.904017,0.212215,0.779668,0.624868,0.226518,0.595481,0.760096,0.306997,0.308608,0.530791,0.827417,0.298223,0.0467814,0.12581,0.810969,0.990199,0.39195,0.492858,0.64819,0.608921,0.388914,0.195856,0.69899,0.925547,0.25748,0.171857,0.162132,0.909719,0.697018,0.191427,0.486561,0.720542,0.543351,0.383805,0.95346,0.561053,0.69147,0.66392,0.0316747,0.148891,0.722373,0.654264,0.735838,0.361749,0.123145,0.892402,0.734081,0.788568,0.986862,0.636978,0.174303,0.232781,0.442587,0.575052,0.83251,0.0562642,0.130074,0.759587,0.522401,0.680517,0.082951,0.890865,0.716365,0.421851,0.480695,0.630745,0.629622,0.581057,0.790273,0.00625175,0.821393,0.791609,0.0781875,0.33408,0.762896,0.331494,0.0572338,0.40226,0.038499,0.957344,0.734371,0.479192,0.355325,0.119609,0.213046,0.954238,0.378476,0.609035,0.36871,0.0192189,0.622438,0.824305,0.0740181,0.1043,0.26799,0.325505,0.336563,0.654998,0.382056,0.408757,0.232732,0.564809,0.0672994,0.0986632,0.825847,0.959977,0.905873,0.0666199,0.370642,0.907522,0.336541,0.423481,0.457891,0.0483258,0.611749,0.00197601,0.186469,0.854656,0.377168,0.726374,0.139296,0.0425252,0.44639,0.0772933,0.894416,0.408878,0.2063,0.869881,0.643131,0.371633,0.317476,0.849284,0.14974,0.948185,0.497927,0.71966,0.463091,0.671244,0.927721,0.276677,0.438852,0.154361,0.290009,0.165771,0.572104,0.207456,0.563961,0.87388,0.410495,0.65836,0.984807,0.112627,0.253577,0.116629,0.103325,0.494954,0.115139,0.572854,0.170486,0.786793,0.0370362,0.0372761,0.256224,0.350219,0.672383,0.679213,0.724417,0.69216,0.949061,0.107562,0.577115,0.610077,0.752456,0.724473,0.229491,0.318266,0.605048,0.78649,0.282929,0.146781,0.586691,0.46422,0.903344,0.544127,0.538375,0.864649,0.636649,0.235621,0.338707,0.550538,0.545814,0.847383,0.646997,0.19756,0.799708,0.0913841,0.0714,0.585729,0.666385,0.13089,0.993947,0.632609,0.0873314,0.281496,0.0978197,0.498985,0.761761,0.38601,0.178079,0.804717,0.271942,0.349977,0.709743,0.455148,0.824641,0.608637,0.714779,0.279477,0.935902,0.33496,0.388724,0.999344,0.249741,0.616213,0.837322,0.80683,0.838679,0.907264,0.644783,0.176867,0.968563,0.964867,0.971972,0.309762,0.275016,0.127547,0.757041,0.380335,0.649057,|0.243816,0.180268,0.792655,0.642087,0.00958866,0.923748,0.307503,0.251565,0.339694,0.844894,0.674294,0.579523,0.940155,0.285237,0.713106,0.88212,0.908087,0.64015,0.773181,0.192737,0.312714,0.149373,0.726805,0.777359,0.538333,0.315842,0.823445,0.604403,0.827842,0.37346,0.673406,0.691973,0.270813,0.981423,0.338545,0.485689,0.959463,0.843101,0.959405,0.279225,0.130189,0.126418,0.193098,0.210108,0.852547,0.324559,0.368134,0.465505,0.0673935,0.961987,0.120162,0.956495,0.85532,0.352122,0.188853,0.509468,0.109107,0.96989,0.851137,0.32459,0.707166,0.447435,0.341124,0.740422,0.630337,0.196309,0.188454,0.669039,0.797366,0.358968,0.196965,0.143772,0.00205976,0.550202,0.151747,0.806563,0.774358,0.68465,0.736474,0.814593,0.417315,0.990821,0.176545,0.815929,0.159726,0.242668,0.393119,0.19912,0.194571,0.131988,0.606745,0.282776,0.620385,0.119272,0.000951946,0.398103,0.986884,0.993882,0.852102,0.233841,0.730125,0.631182,0.264525,0.179084,0.185439,0.988125,0.694292,0.42856,0.860956,0.92436,0.919274,0.797827,0.460543,0.850295,0.339173,0.291091,0.763827,0.19633,0.338224,0.461711,0.826099,0.758526,0.0868846,0.652767,0.0845178,0.00077033,0.937884,0.574822,0.123672,0.781888,0.39878,0.266077,0.179583,0.192613,0.594276,0.632067,0.159837,0.705914,0.604227,0.206781,0.202219,0.417705,0.825663,0.366266,0.736536,0.498627,0.673388,0.680644,0.677653,0.0554991,0.855723,0.215629,0.625438,0.528288,0.102598,0.717843,0.862403,0.29634,0.697339,0.811116,0.502265,0.0314029,0.273409,0.893537,0.687082,0.116863,0.614759,0.544343,0.208805,0.110469,0.41388,0.948033,0.101427,0.0722172,0.349576,0.396039,0.278603,0.298156,0.407429,0.333444,0.245815,0.290174,0.723779,0.585422,0.199881,0.325565,0.25065,0.113786,0.428972,0.133765,0.0841964,0.633864,0.161402,0.746058,0.439316,0.595273,0.396683,0.0285631,0.912133,0.080354,0.556878,0.297523,0.205909,0.407324,0.854445,0.952074,0.964108,0.828066,0.825605,0.642415,0.344765,0.936544,0.539126,0.749621,0.0179542,0.607453,0.522761,0.497045,0.0627427,0.418448,0.52501,0.936158,0.460896,0.86044,0.224636,0.152184,0.488834,0.00676733,0.386879,0.588219,0.375978,0.377603,0.422073,0.0874135,0.171384,0.492274,0.825106,0.303429,0.93332,0.649725,0.128969,0.419241,0.421009,0.471439,0.348046,0.482694,0.640842,0.460437,0.0807391,0.0218284,0.0738672,0.695668,0.306449,0.190489,0.00352663,0.310137,0.972485,0.15195,0.22339,0.49803,0.769267,0.683686,0.439501,0.903671,0.599195,0.733664,0.877931,0.597757,0.414689,0.722344,0.728732,0.0172718,0.738028,0.331893,0.827476,0.0733033,0.784249,0.465408,0.0860066,0.0600572,0.850568,0.873516,0.00057739,0.387655,0.0640457,0.213517,0.164184,0.120384,0.649693,0.273728,0.0302043,0.267693,0.556276,0.386363,0.390433,0.920616,0.428368,0.371075,0.787604,0.457419,0.113672,0.425292,0.429616,0.881581,0.915615,0.166208,0.286685,0.751557,0.964801,0.189919,0.918361,0.139841,0.250894,0.629179,0.634442,0.554972,0.0887536,0.236668,0.809584,0.0944173,0.801836,0.196232,0.590472,0.157734,0.503044,0.123421,0.922087,0.943786,0.600875,0.914477,0.939704,0.722118,0.340897,0.882295,0.230103,0.967741,0.810375,0.931058,0.4821,0.737136,0.220909,0.554827,0.470095,0.847814,0.0311124,0.525216,0.505927,0.613584,0.832285,0.53231,0.695082,0.375975,0.844311,0.520919,0.00394946,0.187746,0.716037,0.826706,0.0610788,0.434357,0.657232,0.717689,0.252392,0.924283,0.361248,0.562537,0.399023,0.0481582,0.219927,0.0213117,0.10172,0.219968,0.184529,0.339499,0.40683,0.138513,0.357737,0.386721,0.81988,0.799907,0.287659,0.179923,0.967209,0.528323,0.67447,0.910835,0.024659,0.716482,0.705119,0.975722,0.407096,0.560465,0.862729,0.76775,0.543947,0.312182,0.459648,0.529514,0.821462,0.794853,0.174039,0.622393,0.130761,0.896842,0.75182,0.865124,0.490899,0.598174,0.237873,0.196053,0.23712,0.220226,0.376159,0.949627,0.32931,0.894724,0.682769,0.517543,0.109698,0.729339,0.972105,0.551783,0.527996,0.227727,0.90864,0.0953955,0.584519,0.354237,0.153382,0.965958,0.428188,0.693137,0.208558,0.00711638,0.0287001,0.589313,0.786373,0.762064,0.0485895,0.515304,0.856109,0.677023,0.368131,0.516927,0.98739,0.662169,0.984367,0.773271,0.611417,0.979059,0.114571,0.576978,0.66039,0.810184,0.485954,0.397495,0.197689,0.373319,0.0775886,0.32574,0.938832,0.127981,0.105813,0.939274,0.164223,0.667892,0.467821,0.21041,0.42569,0.63379,0.00390702,0.232516,0.15838,0.00687623,0.486544,0.124955,0.402207,0.030988,0.645723,0.388326,0.289809,0.67261,0.11021,0.225525,0.833688,0.609168,0.596097,0.0299546,0.447824,0.0774508,0.733502,0.705178,0.111952,0.27152,0.700161,0.491033,0.197279,0.116998,0.517806,0.55473,0.28784,0.71357,0.747576,0.809296,0.982538,0.390683,0.90643,0.0747532,0.734223,0.0991962,0.193062,0.208745,0.338875,0.981903,0.934943,0.0393248,0.549494,0.364896,0.24421,0.133194,0.65035,0.314182,0.601639,0.255577,0.504643,0.837366,0.12704,0.73309,0.150993,0.901567,0.0685413,0.952461,0.00237763,0.857947,0.248624,0.641009,0.497343,0.867574,0.261785,0.558415,0.223964,0.713689,0.524501,0.172342,0.385952,0.0909966,0.133375,0.359212,0.284668,0.936814,0.0905064,0.894906,0.184669,0.986131,0.964932,0.239483,0.907286,0.025412,0.831713,0.847802,0.822361,0.791011,0.538101,0.0732985,0.45219,0.85199,0.472052,0.716275,0.514838,0.562426,0.540947,0.307189,0.463924,0.506367,0.980881,0.551572,0.0671822,0.450494,0.867593,0.886866,0.837852,0.382962,0.507281,0.517808,0.224278,0.0615061,0.146154,0.986885,0.882628,0.612484,0.38495,0.844293,0.051096,0.198865,0.0520008,0.612256,0.566758,0.508882,0.32869,0.536754,0.121848,0.245336,0.883976,0.543049,0.284699,0.126951,0.511195,0.666444,0.227586,0.527324,0.521698,0.789307,0.691318,0.959851,0.548584,0.381063,0.527511,0.701245,0.266546,0.798648,0.565412,0.402201,0.764838,0.144483,0.337756,0.657549,0.492245,0.981354,0.743738,0.561325,0.829712,0.539878,0.623102,0.0106029,0.494379,0.574478,0.581503,0.0811225,0.198893,0.240125,0.498743,0.78453,0.540138,0.899835,0.927585,0.472451,0.862463,0.000502706,0.910617,0.35422,0.722402,0.682428,0.865775,0.928218,0.147724,0.48412,0.214766,0.256909,0.662461,0.299361,0.772153,0.469788,0.245962,0.408646,0.245775,0.860291,0.477916,0.227987,0.869063,0.792188,0.946368,0.351609,0.174495,0.45427,0.869895,0.286175,0.849981,0.323207,0.615506,0.741131,0.705414,0.0661772,0.364871,0.270094,0.0390074,0.878093,0.0829682,0.766039,0.973513,0.396727,0.125426,0.620894,0.578842,0.74591,0.609422,0.273782,0.583394,0.845547,0.587018,0.412542,0.0396852,0.0483863,0.742388,0.294144,0.182973,0.398657,0.498954,0.181459,0.901939,0.667964,0.472473,0.445908,0.33635,0.167863,0.687337,0.942101,0.371674,0.882384,0.269103,0.844893,0.718567,0.0374138,0.290493,0.863767,0.722179,0.374971,0.149346,0.136931,0.0954219,0.243024,0.989199,0.802673,0.874181,0.465459,0.224614,0.795897,0.912428,0.760965,0.478112,0.84296,0.651631,0.774814,0.44387,0.311005,0.315662,0.121965,0.32543,0.355385,0.283454,0.64104,0.20438,0.515092,0.428429,0.922188,0.229341,0.130187,0.0544376,0.796235,0.936086,0.915709,0.0590283,0.54028,0.467324,0.128385,0.814311,0.334613,0.510166,0.804968,0.988734,0.956158,0.20923,0.470939,0.430422,0.252905,0.743729,0.00440532,0.270025,0.577164,0.406057,0.166767,0.500812,0.204739,0.853427,0.432737,0.514273,0.977532,0.811094,0.46298,0.0508476,0.737761,0.348093,0.566448,0.311748,0.281522,0.417266,0.166882,0.360418,0.355642,0.354326,0.693017,0.677244,0.869281,0.737042,0.834722,0.139041,0.84885,0.625371,0.57097,0.319282,0.600749,0.707506,0.402009,0.902969,0.436695,0.615557,0.29529,0.0387589,0.658607,0.741151,0.820099,0.285878,0.15937,0.159196,0.724873,0.290108,0.789298,0.663222,0.0682742,0.444665,0.5374,0.782933,0.1955,0.674072,0.315055,0.179905,0.996481,0.33113,0.410662,0.630005,0.912449,0.0714156,0.390651,0.536035,0.373089,0.413758,0.538645,0.347657,0.79651,0.0880709,0.595944,0.640691,0.827485,0.669333,0.308861,0.375278,0.511828,0.388857,0.505515,0.701036,0.599167,0.24826,0.98342,0.00378472,0.010454,0.726361,0.548985,0.223084,0.608572,0.600014,0.756829,0.372138,0.42937,0.210315,0.0764514,0.713459,0.108094,0.72409,0.969161,0.0315523,0.349193,0.651459,0.864634,0.580913,0.130707,0.222581,0.550176,0.182452,0.0794823,0.405629,0.581074,0.537084,0.693246,0.84246,0.735356,0.0266615,0.619373,0.0590755,0.20209,0.0952224,0.419751,0.349212,0.277261,0.599141,0.423055,0.0905322,0.871209,0.633836,0.169125,0.421612,0.371814,0.625021,0.548029,0.931213,0.62886,0.700417,0.55348,0.901407,0.205898,0.111351,0.848397,0.138767,0.845221,0.236021,0.979631,0.598818,0.508534,0.569929,0.736408,0.82699,0.0250905,0.518191,0.0692628,0.0971729,0.82108,0.321839,0.349114,0.811813,0.134819,0.985937,0.58353,0.630594,0.122095,0.511776,0.5861,0.423306,0.898314,0.424867,0.571267,0.0339622,0.375787,0.530016,0.0266262,0.220505,0.860655,0.34938,0.189367,0.36266,0.498568,0.651969,0.923963,0.301797,0.876813,0.084978,0.255401,0.474077,0.424448,0.691642,0.419133,0.634008,0.679022,0.145258,0.113668,0.506525,0.822868,0.648841,0.910737,0.434768,0.242401,0.947557,0.464383,0.271394,0.937943,0.671848,0.803673,0.00710875,0.223278,0.201035,0.251797,0.0949617,0.700614,0.934073,0.761843,0.0247723,0.622598,0.503131,0.264021,0.704688,0.0312878,0.0242287,0.373483,|0.83406,0.00606668,0.172572,0.663684,0.886523,0.291594,0.129147,0.559851,0.243871,0.394157,0.188557,0.326382,0.690523,0.301723,0.399752,0.791189,0.0309428,0.0318203,0.532446,0.0237554,0.0321726,0.38063,0.44429,0.727,0.219508,0.00418973,0.288577,0.0945731,0.606399,0.154581,0.00861049,0.68572,0.319079,0.494697,0.324874,0.825773,0.340294,0.937375,0.509627,0.63261,0.542478,0.744736,0.247513,0.990533,0.663529,0.445631,0.136377,0.0544616,0.383189,0.0812928,0.475502,0.578574,0.0884207,0.000130057,0.329893,0.876821,0.302345,0.624963,0.182146,0.689379,0.706454,0.775643,0.144161,0.751235,0.752982,0.114538,0.4058,0.631695,0.603676,0.150806,0.285739,0.317426,0.389434,0.267252,0.707728,0.674499,0.423398,0.104372,0.585386,0.789352,0.284198,0.368266,0.984049,0.0821623,0.481344,0.974782,0.749063,0.62005,0.0518475,0.783833,0.969739,0.294018,0.357526,0.925539,0.846232,0.020516,0.539975,0.306096,0.323869,0.438256,0.17817,0.381844,0.0753348,0.913883,0.674626,0.921669,0.580179,0.12518,0.430696,0.463009,0.674034,0.272152,0.466799,0.919716,0.130867,0.798174,0.25473,0.49142,0.651764,0.021238,0.704503,0.650404,0.0746166,0.0724679,0.820168,0.901059,0.405701,0.0944929,0.465006,0.602786,0.196028,0.478798,0.3178,0.842157,0.0163714,0.691222,0.0172403,0.918245,0.381361,0.220962,0.683413,0.548829,0.327731,0.956689,0.634005,0.228742,0.799054,0.237169,0.483153,0.0167823,0.80405,0.225645,0.116682,0.528463,0.0817762,0.10924,0.898476,0.987405,0.563844,0.939688,0.0284035,0.371122,0.486316,0.361749,0.531746,0.362911,0.389835,0.163037,0.597438,0.186555,0.0199274,0.0676629,0.446814,0.75818,0.783326,0.123448,0.600637,0.57609,0.292247,0.406874,0.656767,0.114729,0.205277,0.200946,0.527566,0.332793,0.721674,0.584697,0.825798,0.344669,0.573407,0.442199,0.198188,0.668641,0.857549,0.631449,0.741853,0.841295,0.0582494,0.230371,0.489771,0.480028,0.256183,0.617034,0.127823,0.523642,0.712235,0.541012,0.638974,0.794199,0.410303,0.321003,0.254647,0.865018,0.20626,0.965843,0.968301,0.105228,0.36047,0.106672,0.803071,0.989181,0.800848,0.225646,0.972311,0.917271,0.17054,0.586116,0.292401,0.643348,0.960773,0.610269,0.570041,0.145588,0.250277,0.279702,0.237376,0.700357,0.361132,0.49418,0.408659,0.305403,0.760274,0.820491,0.368276,0.455903,0.742271,0.832494,0.24247,0.889334,0.241719,0.0949916,0.758979,0.313266,0.835541,0.368493,0.656683,0.647373,0.528021,0.664245,0.197475,0.84461,0.700035,0.908694,0.360972,0.0968266,0.589642,0.879416,0.343439,0.70008,0.0837495,0.762235,0.229949,0.0634355,0.991046,0.200136,0.238174,0.915373,0.121973,0.78414,0.826994,0.0156305,0.284537,0.729113,0.411858,0.461326,0.375608,0.555009,0.402646,0.77633,0.471301,0.65537,0.746131,0.615064,0.442741,0.451583,0.919931,0.496971,0.29194,0.0019508,0.345008,0.787321,0.833619,0.659889,0.671029,0.0704362,0.212093,0.106683,0.255608,0.428667,0.635382,0.161342,0.853734,0.0686884,0.0567115,0.975168,0.906063,0.872634,0.642159,0.62142,0.290148,0.783754,0.0911908,0.427728,0.280577,0.384725,0.634163,0.761525,0.202928,0.678718,0.0515124,0.562681,0.0214186,0.294019,0.273671,0.0719225,0.930482,0.280836,0.088517,0.815885,0.0156893,0.353619,0.328985,0.890862,0.964527,0.43504,0.61557,0.312497,0.552144,0.53219,0.107856,0.125879,0.110594,0.690053,0.780778,0.00639284,0.849053,0.552291,0.0592093,0.517292,0.982405,0.595295,0.282279,0.379915,0.768573,0.562142,0.449877,0.0881951,0.359933,0.263572,0.992648,0.0209314,0.825681,0.450234,0.0680445,0.807871,0.35871,0.233854,0.914631,0.171746,0.154444,0.613986,0.0448866,0.826862,0.835676,0.922166,0.94816,0.860217,0.976987,0.499144,0.48448,0.989381,0.744575,0.625748,0.658527,0.0433965,0.445655,0.734134,0.107976,0.00939876,0.254364,0.367681,0.277903,0.564503,0.29327,0.457337,0.818031,0.492126,0.896254,0.0255004,0.119607,0.218546,0.329286,0.109713,0.999684,0.780493,0.844226,0.216361,0.850807,0.387844,0.0335171,0.59648,0.866117,0.947512,0.0327513,0.0609769,0.54212,0.707166,0.138003,0.394913,0.628559,0.893761,0.27374,0.505182,0.396675,0.538165,0.540893,0.106442,0.164721,0.665481,0.556297,0.417223,0.742344,0.498755,0.651653,0.47264,0.250632,0.603185,0.18554,0.296151,0.783703,0.340375,0.533201,0.257488,0.711097,0.202681,0.681304,0.0654924,0.52364,0.855339,0.330278,0.479318,0.90773,0.743674,0.165463,0.0756898,0.135702,0.916673,0.39735,0.273046,0.248077,0.367514,0.846489,0.999254,0.147987,0.122242,0.390543,0.683032,0.520459,0.0139527,0.187093,0.872761,0.733186,0.0552331,0.613783,0.90614,0.589462,0.817231,0.219191,0.364631,0.857026,0.462393,0.791009,0.0283253,0.859418,0.717979,0.410802,0.779292,0.640881,0.929835,0.286294,0.18776,0.235986,0.31188,0.641627,0.705839,0.574277,0.929059,0.0801674,0.879252,0.0924847,0.952355,0.537991,0.916017,0.283913,0.125357,0.10319,0.659445,0.538971,0.936175,0.861584,0.346975,0.479947,0.411172,0.467931,0.335008,0.18789,0.21839,0.480974,0.569203,0.605461,0.722206,0.199075,0.488462,0.0596906,0.380217,0.585429,0.642803,0.13302,0.762681,0.606093,0.25459,0.976645,0.473395,0.745836,0.0589455,0.272532,0.980304,0.481538,0.746077,0.946094,0.532261,0.577221,0.447255,0.290624,0.583107,0.666684,0.388349,0.593224,0.176111,0.67287,0.0791116,0.993968,0.0332001,0.683186,0.939506,0.749528,0.352046,0.371958,0.150254,0.833992,0.661952,0.172594,0.990195,0.821048,0.562226,0.916435,0.0387086,0.275677,0.444156,0.259468,0.717326,0.372582,0.485763,0.706924,0.165359,0.464559,0.967755,0.0498087,0.967038,0.824067,0.960697,0.241656,0.0941265,0.197897,0.436859,0.460441,0.0113856,0.379182,0.431237,0.954739,0.714823,0.607094,0.30243,0.951863,0.234096,0.280285,0.266077,0.163115,0.864197,0.422195,0.862048,0.599269,0.951367,0.290056,0.36523,0.886726,0.79234,0.485593,0.0119695,0.616667,0.397975,0.426734,0.0822712,0.868293,0.378179,0.221038,0.543942,0.449179,0.816695,0.753757,0.740284,0.859281,0.675192,0.946609,0.862211,0.386806,0.91358,0.23825,0.190731,0.4672,0.122759,0.787284,0.338618,0.0485499,0.818227,0.0453161,0.770885,0.503289,0.278066,0.982785,0.238881,0.818204,0.145016,0.361985,0.392718,0.464703,0.44853,0.167005,0.465805,0.951181,0.753996,0.79641,0.460084,0.840216,0.638117,0.343094,0.922251,0.0722619,0.32502,0.372554,0.151344,0.62595,0.473013,0.938761,0.0851185,0.221109,0.270248,0.359699,0.551147,0.879356,0.861709,0.778787,0.0651909,0.2812,0.197108,0.223806,0.611899,0.379986,0.494496,0.600085,0.684982,0.795264,0.0213929,0.701584,0.292381,0.59963,0.368785,0.920111,0.845716,0.849309,0.232308,0.522127,0.460626,0.120941,0.227345,0.302413,0.353653,0.132916,0.848399,0.720869,0.337729,0.923945,0.117945,0.639444,0.393096,0.804218,0.757708,0.294148,0.00220817,0.541129,0.412275,0.229778,0.43151,0.0557103,0.740608,0.474567,0.246467,0.383071,0.806991,0.919058,0.699685,0.799941,0.259804,0.266847,0.280722,0.493869,0.817993,0.621959,0.772717,0.470142,0.927435,0.763672,0.470437,0.854866,0.291139,0.157857,0.174857,0.428402,0.965423,0.416171,0.882771,0.105429,0.19049,0.599325,0.829408,0.458189,0.8964,0.0327688,0.55405,0.0261442,0.130594,0.098183,0.184104,0.501011,0.391591,0.964714,0.697083,0.144485,0.450818,0.343728,0.472073,0.714058,0.567966,0.80169,0.697742,0.371155,0.401969,0.654636,0.618251,0.95927,0.215054,0.41413,0.990122,0.581265,0.284001,0.0973963,0.727913,0.221247,0.504962,0.102135,0.193129,0.417496,0.374615,0.696094,0.415755,0.466609,0.0664963,0.196396,0.981478,0.803974,0.746294,0.781473,0.533704,0.196219,0.825942,0.757739,0.00211924,0.600418,0.374312,0.267802,0.03433,0.390195,0.206201,0.455743,0.42348,0.817011,0.902505,0.886175,0.361447,0.253457,0.0123571,0.0615242,0.252819,0.723109,0.337672,0.286728,0.975148,0.981576,0.323379,0.969529,0.30418,0.334139,0.438747,0.884298,0.70397,0.689217,0.643409,0.3779,0.186678,0.845775,0.856472,0.468812,0.906979,0.63926,0.0754052,0.599679,0.970501,0.699776,0.626,0.351126,0.950609,0.881095,0.723235,0.980607,0.756856,0.0767717,0.526657,0.588433,0.56194,0.158044,0.594413,0.734627,0.828893,0.457788,0.619254,0.326584,0.766037,0.698971,0.374643,0.780017,0.529984,0.95114,0.157363,0.904115,0.22314,0.141045,0.985989,0.0267034,0.194546,0.80928,0.796492,0.190757,0.54513,0.78643,0.961034,0.492543,0.515386,0.0762168,0.795182,0.0897568,0.905396,0.193165,0.8797,0.490287,0.932524,0.581789,0.966043,0.693515,0.554365,0.60332,0.61079,0.0918959,0.0369958,0.303161,0.577679,0.289959,0.716557,0.898215,0.704256,0.454976,0.955785,0.315062,0.800277,0.250766,0.50244,0.728176,0.10613,0.191275,0.896635,0.439477,0.601374,0.418996,0.436084,0.682882,0.872993,0.552506,0.636642,0.242247,0.656695,0.0476261,0.847379,0.0357304,0.566753,0.990513,0.357125,0.82422,0.339393,0.207459,0.369026,0.0971168,0.555964,0.968038,0.717623,0.0845929,0.796017,0.411063,0.316163,0.416559,0.148143,0.00720733,0.868471,0.194778,0.914725,0.437171,0.488265,0.857519,0.499039,0.553102,0.693956,0.171529,0.904278,0.422787,0.674704,0.629653,0.247225,0.0859231,0.595256,0.623745,0.470276,0.674589,0.0756519,0.548156,0.123475,0.743344,0.327343,0.698619,0.102535,0.712859,0.324511,0.719122,0.863378,0.59417,0.438416,0.80448,0.251356,0.77405,0.343269,0.39333,0.526901,0.031494,0.904923,0.552892,0.0808225,0.933671,0.0476556,0.980741,0.174417,0.562958,0.371292,|0.814563,0.208841,0.253916,0.386857,0.973669,0.229287,0.791169,0.736933,0.765404,0.51357,0.0962964,0.0639893,0.115729,0.476721,0.267482,0.205648,0.87228,0.494512,0.616862,0.476098,0.281543,0.25679,0.165677,0.0821601,0.964826,0.386209,0.878848,0.176905,0.143317,0.721614,0.717359,0.622849,0.0204228,0.239749,0.114588,0.200586,0.109883,0.000872791,0.30968,0.863285,0.0952138,0.647695,0.879951,0.231488,0.285698,0.216006,0.932366,0.220518,0.762306,0.540325,0.593126,0.109289,0.961742,0.627163,0.406715,0.141227,0.626771,0.412814,0.932426,0.362658,0.507827,0.794466,0.170256,0.041107,0.330483,0.121253,0.0988562,0.283071,0.470731,0.690612,0.665486,0.387848,0.0612206,0.684474,0.300995,0.708956,0.428252,0.470359,0.721123,0.643003,0.952059,0.774961,0.967518,0.787396,0.282029,0.158268,0.407168,0.784947,0.182422,0.830171,0.0700973,0.327669,0.0976581,0.346519,0.528238,0.581778,0.223815,0.802933,0.114482,0.670409,0.293271,0.0359624,0.297546,0.944687,0.205732,0.254016,0.65994,0.797733,0.959513,0.415705,0.490107,0.712711,0.785231,0.729869,0.209163,0.235593,0.560668,0.184298,0.370688,0.604029,0.846486,0.677781,0.692705,0.307114,0.349739,0.274373,0.0401904,0.280818,0.852856,0.766872,0.729651,0.169287,0.665497,0.0784662,0.35885,0.0328071,0.144174,0.848671,0.960304,0.421278,0.243344,0.275117,0.667296,0.119031,0.889826,0.835563,0.587091,0.0254877,0.325456,0.784894,0.646926,0.598227,0.7811,0.529723,0.810542,0.313995,0.0822802,0.858973,0.313859,0.116669,0.406558,0.085325,0.641611,0.311803,0.858512,0.957319,0.29519,0.274771,0.0781426,0.622366,0.97532,0.565331,0.693141,0.722475,0.17733,0.52176,0.197278,0.901302,0.162763,0.88688,0.204407,0.0544064,0.800362,0.9741,0.299795,0.671575,0.418212,0.0299697,0.325956,0.500384,0.804223,0.619323,0.314357,0.745313,0.425689,0.155345,0.776677,0.66561,0.682031,0.0535286,0.785226,0.993682,0.35902,0.697289,0.597769,0.908902,0.606164,0.369777,0.0504891,0.31464,0.453775,0.560585,0.0502329,0.657287,0.738957,0.487396,0.887321,0.586222,0.617958,0.913512,0.142862,0.994671,0.861088,0.645351,0.355871,0.488999,0.534894,0.680962,0.555095,0.461908,0.677515,0.317051,0.681001,0.392119,0.826745,0.213381,0.695929,0.504758,0.478188,0.73931,0.0683292,0.199114,0.546218,0.62357,0.807701,0.20826,0.0877742,0.63973,0.0528783,0.989554,0.952669,0.779946,0.704005,0.547607,0.391094,0.491289,0.637369,0.0255085,0.0298553,0.267876,0.197638,0.478059,0.586469,0.596334,0.307327,0.493751,0.87305,0.484206,0.0844078,0.00148594,0.156336,0.486819,0.185439,0.450651,0.738571,0.558059,0.211712,0.461372,0.937187,0.258999,0.995323,0.0944712,0.713753,0.0333361,0.453334,0.281732,0.027117,0.918009,0.790537,0.424834,0.611354,0.172702,0.254928,0.988072,0.380737,0.977119,0.704445,0.115676,0.394409,0.23443,0.988889,0.242756,0.924876,0.755061,0.413928,0.350881,0.684303,0.482357,0.729194,0.240842,0.0919245,0.7181,0.565532,0.848097,0.0701723,0.229779,0.650044,0.676899,0.0921319,0.423554,0.490029,0.793902,0.201478,0.271059,0.821766,0.95724,0.253291,0.937401,0.101553,0.372245,0.82932,0.967598,0.427124,0.398379,0.888144,0.803524,0.360783,0.597116,0.895277,0.0932491,0.08607,0.919344,0.89757,0.0301472,0.0753418,0.0946103,0.0894861,0.57883,0.216006,0.591073,0.633699,0.600437,0.359949,0.209066,0.209961,0.352285,0.102475,0.500563,0.835311,0.583654,0.30638,0.0831711,0.0350208,0.375013,0.709693,0.344291,0.425017,0.274858,0.386906,0.00485933,0.921085,0.508799,0.850851,0.377459,0.440878,0.525524,0.572309,0.739889,0.502372,0.74574,0.129083,0.883557,0.42479,0.310274,0.814329,0.553571,0.941095,0.902756,0.114732,0.747736,0.712231,0.080716,0.935423,0.11955,0.174217,0.987118,0.509465,0.569091,0.35917,0.543778,0.118067,0.782286,0.243745,0.855283,0.885573,0.121368,0.766792,0.730365,0.44044,0.763374,0.606973,0.739131,0.58852,0.0658025,0.0543755,0.517742,0.153654,0.0104669,0.5214,0.322322,0.32364,0.0440468,0.511096,0.197496,0.00341821,0.442782,0.0473114,0.526432,0.15512,0.998041,0.689624,0.912089,0.595211,0.86995,0.691259,0.20664,0.442751,0.335241,0.871227,0.736739,0.684177,0.353731,0.298035,0.103197,0.913588,0.959914,0.381071,0.425802,0.467145,0.880519,0.515103,0.460415,0.545191,0.422084,0.771339,0.0608127,0.297474,0.188039,0.585838,0.513939,0.215476,0.57028,0.991699,0.250882,0.696498,0.773939,0.185886,0.908168,0.306354,0.242182,0.943453,0.139324,0.924374,0.229167,0.382711,0.757951,0.234463,0.516796,0.789637,0.611499,0.208452,0.551958,0.493708,0.157517,0.430776,0.608563,0.960209,0.100437,0.839846,0.609838,0.301118,0.935878,0.0344864,0.313513,0.756013,0.709109,0.264807,0.860143,0.599534,0.975139,0.964694,0.409631,0.0107372,0.134936,0.294424,0.278876,0.0970156,0.908247,0.622341,0.522958,0.00832039,0.00891322,0.173917,0.544108,0.528475,0.93336,0.29543,0.39116,0.374011,0.365833,0.275062,0.147861,0.330017,0.56134,0.497693,0.733846,0.362556,0.342025,0.556175,0.670055,0.512833,0.228034,0.827974,0.88979,0.342462,0.273256,0.731539,0.53312,0.0703893,0.720493,0.43074,0.360623,0.820569,0.706303,0.483588,0.286389,0.570897,0.165494,0.290648,0.144081,0.00337124,0.142153,0.991101,0.976679,0.0452908,0.662975,0.709866,0.150705,0.862581,0.0911877,0.121358,0.388279,0.971478,0.732027,0.355471,0.454563,0.216024,0.00125057,0.242491,0.0688951,0.791095,0.739621,0.0993516,0.897948,0.793787,0.718988,0.843951,0.635189,0.0698659,0.343678,0.708642,0.377705,0.860118,0.594986,0.294677,0.864725,0.510823,0.0888265,0.42592,0.941173,0.672936,0.105375,0.27857,0.281833,0.818895,0.313323,0.652971,0.0306829,0.800984,0.767962,0.144854,0.669626,0.368574,0.970767,0.786436,0.670204,0.0844469,0.571373,0.412358,0.215819,0.248895,0.332071,0.624071,0.0481244,0.314286,0.517933,0.926311,0.747111,0.391687,0.675395,0.488852,0.599349,0.205484,0.356328,0.873,0.573111,0.944813,0.939717,0.253264,0.68795,0.387843,0.478645,0.57193,0.505308,0.491336,0.891297,0.359059,0.38212,0.518568,0.598894,0.637311,0.231457,0.998628,0.139285,0.955825,0.0460991,0.12788,0.680331,0.480684,0.562932,0.930269,0.609332,0.548339,0.108971,0.818174,0.225768,0.0804763,0.935157,0.994542,0.193371,0.502771,0.917901,0.870149,0.800879,0.851438,0.779741,0.309023,0.903877,0.843848,0.53349,0.209471,0.0989412,0.90252,0.971844,0.645569,0.449659,0.968763,0.379009,0.791499,0.585133,0.887577,0.21785,0.313462,0.693622,0.847636,0.666322,0.475411,0.53103,0.949854,0.161465,0.695222,0.687373,0.377946,0.569708,0.21059,0.537694,0.10781,0.294577,0.1869,0.0496067,0.225793,0.161922,0.451199,0.177636,0.382395,0.458257,0.840371,0.673135,0.274245,0.551874,0.281181,0.828015,0.00595587,0.551381,0.197855,0.384408,0.571959,0.660351,0.820999,0.0613259,0.228,0.997551,0.0693758,0.126221,0.60199,0.40407,0.747043,0.681284,0.832726,0.850384,0.532006,0.398505,0.324662,0.519351,0.146466,0.561499,0.902721,0.151132,0.275718,0.68427,0.931801,0.13981,0.339881,0.0726698,0.938248,0.602251,0.922039,0.00698578,0.26323,0.857034,0.316089,0.546994,0.445393,0.846549,0.270339,0.675154,0.647927,0.960109,0.43455,0.531316,0.0443009,0.711912,0.0681307,0.0791254,0.54486,0.7961,0.428894,0.0677379,0.592899,0.265198,0.729058,0.681766,0.496272,0.272849,0.0812132,0.897435,0.0763717,0.809536,0.121183,0.37533,0.559879,0.849903,0.243267,0.630485,0.720104,0.323609,0.236817,0.0673511,0.053077,0.117489,0.583752,0.0980822,0.20959,0.577809,0.186951,0.543632,0.277017,0.501073,0.489089,0.850531,0.335083,0.278334,0.210913,0.436764,0.293277,0.36434,0.512227,0.81721,0.15701,0.341667,0.179594,0.926267,0.829142,0.136038,0.574245,0.325695,0.909102,0.15566,0.824171,0.96236,0.422203,0.115875,0.0948954,0.438904,0.250533,0.259009,0.00178754,0.646642,0.528742,0.564248,0.00396287,0.379749,0.397454,0.0431323,0.0661591,0.234037,0.792007,0.157126,0.518358,0.889749,0.777356,0.738017,0.468488,0.321983,0.458529,0.878769,0.335686,0.509423,0.816953,0.178606,0.327218,0.609605,0.497413,0.686365,0.0709651,0.379348,0.32818,0.734315,0.27292,0.0639045,0.718769,0.523316,0.319911,0.964213,0.662445,0.888267,0.222795,0.117855,0.465191,0.0822744,0.284714,0.481598,0.0188888,0.665875,0.295568,0.701096,0.0718442,0.136146,0.644905,0.69434,0.449841,0.463482,0.000356376,0.168311,0.880673,0.750099,0.391216,0.9417,0.407184,0.404302,0.0482107,0.460507,0.179671,0.195571,0.392203,0.0725498,0.0778578,0.104967,0.222831,0.683607,0.73997,0.399211,0.556886,0.720374,0.419957,0.156103,0.612768,0.0842457,0.0747586,0.568316,0.309549,0.994021,0.645909,0.067115,0.876712,0.233586,0.151496,0.456251,0.666701,0.350258,0.602281,0.0422173,0.549026,0.457112,0.79477,0.151934,0.4048,0.846358,0.842747,0.975297,0.693618,0.247462,0.000557125,0.872421,0.655809,0.48228,0.79509,0.541807,0.619893,0.265241,0.740796,0.082942,0.519424,0.728735,0.298464,0.764673,0.677418,0.923481,0.316082,0.486379,0.485749,0.406005,0.494968,0.749903,0.316693,0.156601,0.131533,0.352641,0.0568128,0.623327,0.55696,0.173615,0.579737,0.641802,0.74633,0.457316,0.323612,0.821814,0.700867,0.786667,0.652183,0.919791,0.0032171,0.94228,0.612727,0.827201,0.245741,0.163868,0.860434,0.996247,0.191338,0.886415,0.372854,0.945453,0.595474,0.526177,0.657387,0.285432,0.826972,0.499016,0.802393,0.662092,0.703145,0.293418,0.661082,0.962319,0.406921,0.0610305,0.0588568,0.862394,|0.427706,0.28779,0.0746962,0.991016,0.0128775,0.545248,0.844985,0.0497479,0.693691,0.646081,0.378382,0.949311,0.147719,0.523584,0.432597,0.0641443,0.442337,0.862639,0.415745,0.571999,0.413801,0.632356,0.564771,0.0234119,0.57398,0.501748,0.305489,0.032044,0.342806,0.112568,0.456544,0.0293529,0.819332,0.0358102,0.930458,0.980196,0.480152,0.352925,0.395606,0.192804,0.921082,0.915683,0.733831,0.726847,0.185211,0.192018,0.104602,0.0474336,0.801435,0.0321533,0.820252,0.14477,0.839479,0.504247,0.845237,0.625313,0.154652,0.112827,0.771459,0.796645,0.199625,0.942061,0.617009,0.824674,0.745459,0.551927,0.898157,0.533731,0.799202,0.260731,0.302829,0.711022,0.936303,0.584597,0.431691,0.849929,0.962469,0.16805,0.0755381,0.122986,0.617221,0.00678563,0.968987,0.955621,0.888215,0.111012,0.444213,0.844391,0.829597,0.0799099,0.706411,0.490195,0.110637,0.494207,0.672269,0.153389,0.149355,0.70621,0.395805,0.351076,0.518338,0.720954,0.197028,0.811465,0.999991,0.953884,0.581614,0.871542,0.56147,0.331425,0.993309,0.479239,0.597883,0.761359,0.363987,0.2528,0.2602,0.419516,0.90716,0.513056,0.255804,0.551749,0.604066,0.736791,0.360144,0.76524,0.26246,0.00190085,0.372651,0.0748204,0.778059,0.0355985,0.283604,0.31065,0.28177,0.396164,0.802057,0.479533,0.117436,0.65727,0.550375,0.521802,0.22005,0.713556,0.611386,0.459141,0.628497,0.210373,0.666069,0.97599,0.488643,0.78975,0.779681,0.363607,0.762116,0.261221,0.773626,0.0433429,0.796232,0.189419,0.170133,0.983955,0.721326,0.714443,0.698335,0.640685,0.736964,0.277815,0.0284087,0.807435,0.0138543,0.0280323,0.81547,0.165009,0.607942,0.966855,0.669916,0.220576,0.980846,0.862098,0.0280007,0.467209,0.441375,0.491334,0.0576813,0.222674,0.952118,0.295535,0.970204,0.736166,0.258667,0.400207,0.111597,0.0599995,0.750694,0.870706,0.958039,0.873574,0.0884506,0.618532,0.655477,0.575625,0.721183,0.517617,0.563745,0.864932,0.402976,0.629627,0.416208,0.886015,0.0989106,0.292738,0.0386032,0.504059,0.210632,0.292174,0.849365,0.767204,0.722359,0.646672,0.623158,0.0388505,0.628755,0.0464879,0.706567,0.0466998,0.873399,0.387364,0.046223,0.247119,0.895901,0.661186,0.44553,0.312618,0.0262424,0.237095,0.283583,0.496275,0.73771,0.64312,0.333344,0.270749,0.384464,0.619705,0.729564,0.115389,0.638054,0.748194,0.895372,0.558125,0.00772083,0.777675,0.667263,0.84242,0.29449,0.526539,0.523693,0.532118,0.161509,0.0725589,0.639433,0.245128,0.644927,0.577424,0.994197,0.164345,0.848648,0.426801,0.72416,0.855453,0.328872,0.903236,0.717516,0.313502,0.000780165,0.113383,0.474467,0.393026,0.293767,0.591416,0.441499,0.50947,0.882956,0.381942,0.583857,0.332562,0.0400963,0.521996,0.763983,0.770469,0.895784,0.577948,0.578308,0.487981,0.0350665,0.525237,0.804231,0.865893,0.208766,0.58318,0.819911,0.575423,0.743011,0.53931,0.760497,0.578442,0.39956,0.858441,0.193061,0.202154,0.308636,0.592223,0.994372,0.884733,0.469236,0.4001,0.208142,0.787743,0.464042,0.157759,0.815132,0.656779,0.500457,0.69949,0.576941,0.641018,0.994772,0.353882,0.112118,0.112041,0.815782,0.580619,0.730255,0.893839,0.86949,0.24258,0.220459,0.866929,0.134911,0.471326,0.353984,0.46789,0.406028,0.520033,0.134256,0.686354,0.837318,0.671107,0.156391,0.0713296,0.0284137,0.686416,0.354118,0.967802,0.229027,0.632474,0.855261,0.0993975,0.810766,0.568977,0.357042,0.992278,0.134161,0.870128,0.848752,0.411076,0.499501,0.0315539,0.863028,0.994444,0.270225,0.384792,0.252918,0.0482662,0.562994,0.748608,0.423654,0.97859,0.968534,0.334328,0.186306,0.14583,0.145632,0.297956,0.994552,0.954571,0.278374,0.113351,0.0816789,0.754279,0.690518,0.240915,0.465956,0.63399,0.511075,0.305746,0.835014,0.818224,0.377402,0.956438,0.950348,0.663521,0.935882,0.678011,0.498512,0.0707799,0.483243,0.624869,0.384089,0.161868,0.143514,0.743893,0.844074,0.0359093,0.534819,0.387494,0.721305,0.445462,0.444156,0.147392,0.430063,0.708763,0.266721,0.31722,0.93676,0.256068,0.910099,0.238234,0.195469,0.618365,0.576657,0.873821,0.315322,0.678663,0.217338,0.371972,0.0304912,0.585004,0.200017,0.527708,0.895923,0.723333,0.377395,0.205528,0.957419,0.271015,0.703315,0.0985175,0.765272,0.325744,0.461945,0.0659049,0.64503,0.905571,0.628333,0.00751591,0.960237,0.408174,0.786533,0.443362,0.85663,0.649851,0.384835,0.338223,0.119112,0.363948,0.135368,0.852047,0.631736,0.142722,0.692627,0.630253,0.819328,0.730473,0.208296,0.822914,0.145624,0.159794,0.258494,0.36269,0.920265,0.285417,0.296911,0.102603,0.667809,0.479878,0.620601,0.483697,0.135592,0.10496,0.714787,0.171667,0.949162,0.351208,0.275633,0.758695,0.432133,0.696748,0.0445,0.372376,0.0363402,0.110717,0.355188,0.90052,0.350212,0.807897,0.353762,0.66778,0.0565825,0.313853,0.847791,0.26524,0.623296,0.0689059,0.73327,0.0927182,0.131618,0.905056,0.849323,0.946822,0.0394807,0.374796,0.685592,0.288259,0.359156,0.0600453,0.873137,0.618117,0.153146,0.0589341,0.773096,0.839088,0.888267,0.354428,0.336281,0.737033,0.24998,0.898705,0.959018,0.548718,0.961685,0.0228647,0.845444,0.0319251,0.346951,0.821165,0.871154,0.45889,0.157506,0.894045,0.675111,0.390933,0.331636,0.943599,0.0982108,0.270573,0.531222,0.665102,0.532552,0.357349,0.659605,0.837242,0.27481,0.665849,0.563385,0.971031,0.00607729,0.507203,0.390786,0.053595,0.785058,0.598072,0.0417819,0.892252,0.0999156,0.387409,0.740866,0.211368,0.849854,0.84029,0.867748,0.503722,0.135184,0.746955,0.510558,0.797739,0.72139,0.290432,0.67723,0.051931,0.24042,0.350175,0.619966,0.422536,0.722983,0.903461,0.793087,0.50585,0.717672,0.482282,0.790422,0.526193,0.124622,0.593328,0.522215,0.554363,0.00967646,0.259239,0.726012,0.824176,0.863098,0.667846,0.764719,0.110322,0.750521,0.252142,0.930752,0.238902,0.906166,0.659887,0.382318,0.506473,0.584774,0.453283,0.550762,0.154809,0.300974,0.401433,0.45079,0.0473555,0.297715,0.509532,0.246404,0.959199,0.645665,0.288759,0.15958,0.0293873,0.253065,0.0150702,0.131712,0.254332,0.682511,0.45959,0.392781,0.861981,0.276706,0.0254325,0.987608,0.599652,0.159087,0.572249,0.555463,0.0216688,0.212056,0.042087,0.0665009,0.145872,0.0645241,0.896626,0.714534,0.341119,0.578215,0.693639,0.827937,0.689383,0.625992,0.460532,0.56422,0.0864028,0.42811,0.0957452,0.261017,0.0167624,0.26708,0.633019,0.147756,0.477526,0.163261,0.499237,0.742019,0.55305,0.150963,0.779657,0.637276,0.333078,0.24059,0.235771,0.656375,0.127879,0.12471,0.445589,0.125148,0.783311,0.580654,0.387856,0.458884,0.505558,0.209337,0.97101,0.998012,0.978674,0.85618,0.912994,0.565105,0.813316,0.974025,0.255451,0.14488,0.623531,0.589542,0.609194,0.165695,0.490769,0.76718,0.868549,0.501744,0.244743,0.810727,0.430456,0.898618,0.624246,0.824268,0.310178,0.506447,0.38302,0.293874,0.0566213,0.0159868,0.703261,0.679525,0.449555,0.454462,0.4294,0.189907,0.574663,0.387087,0.840699,0.915792,0.321323,0.307632,0.628511,0.120673,0.493028,0.250982,0.919116,0.694716,0.939259,0.585766,0.0969993,0.603381,0.758816,0.356396,0.44607,0.938135,0.117748,0.450984,0.0761694,0.889094,0.930028,0.100288,0.620964,0.412086,0.698182,0.213359,0.493027,0.618949,0.174399,0.022445,0.489239,0.786835,0.0245776,0.982374,0.769578,0.122142,0.0125847,0.830385,0.64695,0.000978947,0.514389,0.458395,0.978282,0.0815682,0.650784,0.842922,0.524985,0.354492,0.494232,0.285826,0.664981,0.0316457,0.891004,0.291631,0.622815,0.633685,0.21246,0.372539,0.501869,0.0681565,0.38746,0.875809,0.0282586,0.989756,0.971748,0.542596,0.343554,0.0284959,0.639007,0.398531,0.914012,0.314939,0.398464,0.572691,0.124663,0.00587642,0.719408,0.947364,0.26305,0.415177,0.282563,0.568215,0.427696,0.359631,0.263623,0.194015,0.379864,0.469166,0.891842,0.997258,0.537843,0.790593,0.964436,0.341759,0.252001,0.637672,0.694709,0.561411,0.279783,0.0863125,0.10485,0.851335,0.837635,0.639723,0.649106,0.219437,0.972479,0.184758,0.514421,0.97875,0.72002,0.962188,0.179078,0.965244,0.512911,0.858041,0.824814,0.107727,0.0898204,0.278425,0.429851,0.324689,0.397457,0.498177,0.65274,0.520978,0.635704,0.0737332,0.533424,0.279701,0.68454,0.844168,0.323505,0.677092,0.582015,0.577655,0.964884,0.803507,0.302663,0.308266,0.875983,0.804715,0.503156,0.056954,0.498229,0.363483,0.397811,0.563253,0.145002,0.0671642,0.176371,0.828383,0.816129,0.037888,0.785643,0.314793,0.240872,0.505095,0.468288,0.618699,0.760723,0.180243,0.504298,0.11775,0.54736,0.00884414,0.718801,0.0590985,0.115181,0.320367,0.930222,0.0105051,0.688353,0.250785,0.43105,0.369467,0.843186,0.817209,0.53686,0.487281,0.366308,0.446642,0.700617,0.264126,0.808422,0.66631,0.365662,0.320333,0.181216,0.690354,0.450951,0.710286,0.198031,0.991188,0.337804,0.635626,0.609597,0.978299,0.0556954,0.535102,0.482936,0.671851,0.475545,0.237557,0.0398549,0.0139388,0.212838,0.844557,0.490419,0.90383,0.637751,0.477368,0.455386,0.15777,0.974088,0.775843,0.216537,0.698625,0.964432,0.432203,0.00225955,0.0378876,0.903799,0.957,0.923242,0.774488,0.0207207,0.988175,0.710978,0.691218,0.607412,0.397445,0.0133653,0.78555,0.376998,0.650789,0.653678,0.132051,0.832556,0.422487,0.306796,0.815371,0.0358468,0.498573,0.428411,0.72879,0.618752,0.650582,0.681374,0.100807,0.15832,0.744823,0.0261579,0.131179,0.0179116,0.464505,0.862151,0.664533,0.265422,0.266786,0.565127,|0.824732,0.350385,0.00697821,0.0421739,0.825133,0.312842,0.86878,0.72198,0.431414,0.424274,0.0355206,0.975749,0.802647,0.0337877,0.440057,0.561854,0.0144056,0.267389,0.605968,0.703687,0.711066,0.0647865,0.54724,0.202319,0.782584,0.590797,0.982217,0.118655,0.261891,0.230085,0.953048,0.829211,0.774265,0.457607,0.0875462,0.541725,0.423082,0.164429,0.344023,0.0349079,0.217904,0.76357,0.400463,0.559824,0.24273,0.932696,0.109463,0.62869,0.190502,0.142348,0.841971,0.412213,0.729896,0.200257,0.243432,0.659682,0.785196,0.165703,0.0210367,0.233821,0.560969,0.0398073,0.0906952,0.233244,0.123993,0.432556,0.025947,0.466558,0.436848,0.880106,0.360898,0.577282,0.799708,0.333077,0.131291,0.118423,0.50796,0.794169,0.395701,0.461908,0.948487,0.515156,0.576708,0.692493,0.410102,0.640383,0.535831,0.297646,0.034702,0.147208,0.357806,0.230109,0.148401,0.872744,0.630276,0.801434,0.939829,0.885967,0.62867,0.500585,0.963191,0.818779,0.772512,0.909922,0.120087,0.99336,0.899195,0.491491,0.193979,0.807831,0.26031,0.872454,0.21867,0.772233,0.88854,0.115081,0.155146,0.80877,0.485095,0.72152,0.260467,0.0829473,0.361935,0.237876,0.345132,0.898023,0.420961,0.91752,0.606173,0.683066,0.146193,0.20729,0.31347,0.394536,0.21509,0.949682,0.419218,0.620291,0.0765244,0.118699,0.317045,0.174156,0.195648,0.539738,0.908698,0.348159,0.626923,0.463126,0.335988,0.242781,0.123461,0.262876,0.800932,0.960595,0.450637,0.954174,0.83479,0.305974,0.693987,0.26714,0.198173,0.465073,0.103966,0.94933,0.0656247,0.862648,0.380638,0.918162,0.842643,0.553992,0.972739,0.924253,0.607137,0.263851,0.0993499,0.13387,0.869646,0.683018,0.358432,0.869269,0.214194,0.0569203,0.904327,0.706048,0.686536,0.161503,0.105135,0.932067,0.353537,0.551509,0.951423,0.49732,0.39216,0.0772343,0.337598,0.503647,0.837675,0.150132,0.952163,0.903692,0.72072,0.937277,0.244408,0.807864,0.877607,0.710642,0.215177,0.579444,0.561941,0.00826174,0.971164,0.810984,0.494308,0.173173,0.219921,0.312693,0.295869,0.354974,0.107356,0.553019,0.880166,0.715172,0.671761,0.145109,0.577062,0.938345,0.497824,0.963076,0.217725,0.0378857,0.0699849,0.0354233,0.623769,0.266012,0.0387357,0.988765,0.588464,0.246226,0.594827,0.177587,0.13071,0.783711,0.488099,0.87036,0.102467,0.127437,0.211801,0.724909,0.407521,0.471707,0.795123,0.514113,0.659432,0.277637,0.596411,0.0774425,0.770889,0.144235,0.785929,0.469977,0.333992,0.416232,0.817434,0.199423,0.649839,0.727303,0.978779,0.838339,0.582695,0.697531,0.537654,0.598645,0.661141,0.252108,0.360314,0.896914,0.0926718,0.616904,0.256603,0.619171,0.592219,0.521557,0.680582,0.325839,0.770761,0.518288,0.0951673,0.441871,0.791366,0.148173,0.229657,0.835806,0.380065,0.760033,0.617442,0.0369757,0.462595,0.373357,0.240019,0.502428,0.881235,0.143415,0.329185,0.291463,0.263137,0.879378,0.282209,0.188882,0.442461,0.504831,0.499553,0.0545498,0.529501,0.456736,0.895918,0.562788,0.206388,0.984812,0.209546,0.192915,0.590699,0.93585,0.179975,0.642194,0.646676,0.63774,0.390173,0.460012,0.347194,0.510683,0.0110427,0.940355,0.513762,0.160324,0.246949,0.652829,0.0724186,0.0847168,0.728067,0.899668,0.401183,0.142221,0.283762,0.553324,0.35996,0.672115,0.290158,0.596191,0.839746,0.555543,0.215266,0.945267,0.220286,0.687425,0.795105,0.861759,0.00815517,0.60589,0.583094,0.264087,0.050599,0.319666,0.897876,0.334794,0.0562141,0.221171,0.372263,0.875293,0.367163,0.566988,0.876147,0.233218,0.488634,0.195861,0.899771,0.360274,0.333757,0.0935925,0.872425,0.0374986,0.673982,0.819114,0.736007,0.988969,0.944818,0.0659623,0.0203123,0.170684,0.165954,0.0694677,0.536179,0.978196,0.872181,0.629117,0.906786,0.534846,0.984311,0.769199,0.6359,0.0650403,0.501558,0.888406,0.223884,0.946826,0.280787,0.420157,0.745889,0.805721,0.34121,0.592268,0.367161,0.196815,0.600597,0.541883,0.634322,0.730689,0.553243,0.332948,0.86111,0.0700662,0.68376,0.551907,0.603083,0.278201,0.0930796,0.989718,0.654498,0.699099,0.81473,0.859684,0.209748,0.988109,0.43081,0.0220346,0.197317,0.750989,0.340549,0.355281,0.0234988,0.501552,0.17433,0.461207,0.75915,0.451046,0.413102,0.727891,0.867087,0.474884,0.491371,0.170501,0.678601,0.966412,0.00910538,0.666191,0.807944,0.882124,0.740951,0.0204291,0.834797,0.938606,0.972291,0.802217,0.527003,0.871088,0.588825,0.715724,0.66957,0.615589,0.126379,0.957101,0.669694,0.991125,0.1144,0.153235,0.843989,0.481236,0.0424628,0.471445,0.79452,0.683147,0.530911,0.98235,0.836768,0.8909,0.97236,0.73328,0.737685,0.643971,0.168015,0.225224,0.742012,0.599627,0.154665,0.316978,0.155771,0.726526,0.465706,0.523019,0.572521,0.138652,0.873053,0.205814,0.435238,0.529721,0.104192,0.943035,0.213877,0.810487,0.686583,0.170666,0.714347,0.380002,0.654581,0.765431,0.150021,0.551892,0.322721,0.639177,0.698755,0.918322,0.760415,0.693415,0.269765,0.0492181,0.123848,0.936277,0.514451,0.0960442,0.0562838,0.412124,0.925791,0.723914,0.764101,0.794582,0.267436,0.313566,0.64703,0.817542,0.127932,0.543619,0.370088,0.296671,0.0260777,0.889371,0.23271,0.295907,0.038825,0.0138925,0.38391,0.652084,0.25708,0.517602,0.806263,0.258111,0.417772,0.0788722,0.159226,0.161132,0.813832,0.451145,0.115319,0.488582,0.715759,0.121136,0.63066,0.218077,0.715212,0.588397,0.564644,0.664909,0.0293068,0.936858,0.401221,0.636095,0.30455,0.975094,0.946865,0.872808,0.468534,0.119287,0.546174,0.0710977,0.33854,0.853595,0.358614,0.258734,0.753911,0.0648347,0.145072,0.197306,0.396262,0.208664,0.303585,0.219334,0.492259,0.381841,0.0559244,0.813645,0.832567,0.280054,0.359606,0.29562,0.515126,0.0101749,0.891034,0.312925,0.690624,0.741865,0.21165,0.314797,0.0750563,0.464495,0.525371,0.369916,0.951178,0.992042,0.76374,0.586033,0.586389,0.435261,0.910629,0.17672,0.0670401,0.448708,0.918261,0.92006,0.874179,0.152258,0.41676,0.196239,0.446251,0.00566,0.632089,0.946227,0.0383289,0.230958,0.803568,0.0578852,0.094837,0.308987,0.973697,0.222237,0.297467,0.929097,0.468515,0.412061,0.978555,0.329791,0.177098,0.581361,0.317254,0.995372,0.878716,0.971945,0.154826,0.871753,0.963919,0.325782,0.895861,0.388105,0.144974,0.721041,0.0947506,0.603209,0.960324,0.0358817,0.289599,0.00337994,0.921698,0.521112,0.845766,0.14354,0.512439,0.647958,0.198832,0.558587,0.441456,0.477348,0.181997,0.489807,0.667219,0.755907,0.477922,0.961114,0.493535,0.337265,0.293391,0.621169,0.229714,0.865143,0.675991,0.888889,0.29704,0.352384,0.687015,0.526507,0.614871,0.238911,0.652113,0.73514,0.74202,0.972537,0.303372,0.999858,0.206178,0.645366,0.884051,0.913353,0.179065,0.599095,0.800957,0.322819,0.770174,0.666233,0.608793,0.0496224,0.307867,0.228716,0.52301,0.613239,0.651964,0.782428,0.356158,0.827152,0.679419,0.883994,0.526243,0.340957,0.81879,0.186601,0.91869,0.680532,0.37529,0.657794,0.94211,0.275717,0.573578,0.50338,0.149113,0.878249,0.929433,0.196469,0.999758,0.64553,0.529434,0.0281435,0.945318,0.34739,0.0231704,0.31615,0.891304,0.820618,0.0344892,0.025758,0.707847,0.551836,0.312822,0.00976396,0.689888,0.935965,0.278919,0.653609,0.632396,0.0590918,0.909806,0.585696,0.908218,0.863298,0.795707,0.455982,0.521959,0.958391,0.311684,0.573043,0.418883,0.311353,0.183608,0.843265,0.900209,0.0524525,0.492027,0.0817475,0.876175,0.535678,0.936841,0.208262,0.951392,0.915876,0.340739,0.241138,0.0448306,0.985093,0.0846997,0.271654,0.690748,0.53237,0.680883,0.145795,0.961656,0.599717,0.972961,0.616763,0.121701,0.0787234,0.698221,0.252208,0.149206,0.195488,0.733767,0.346664,0.36188,0.671297,0.855046,0.0194104,0.627222,0.547655,0.521812,0.857644,0.16719,0.61161,0.331212,0.481191,0.862415,0.607171,0.797213,0.83956,0.397258,0.483929,0.831931,0.66305,0.53518,0.347724,0.823279,0.535699,0.6501,0.066825,0.482594,0.394777,0.792594,0.378792,0.843409,0.244471,0.411899,0.580571,0.0505252,0.201979,0.443612,0.43504,0.811361,0.0999998,0.3759,0.00420886,0.0343445,0.573357,0.272445,0.189959,0.456431,0.670752,0.531803,0.279785,0.229616,0.781414,0.746502,0.642035,0.383276,0.522108,0.742273,0.828107,0.0952107,0.526453,0.238438,0.209528,0.772176,0.748719,0.447194,0.602109,0.403255,0.702401,0.103739,0.425465,0.968389,0.889967,0.45442,0.945353,0.770597,0.813354,0.0383809,0.442883,0.718218,0.316461,0.546954,0.696655,0.483157,0.961613,0.322648,0.358843,0.973722,0.837723,0.91446,0.869799,0.693369,0.663202,0.442389,0.079576,0.242261,0.601807,0.237787,0.755076,0.26568,0.35431,0.793348,0.343436,0.997849,0.339528,0.161665,0.0836142,0.22814,0.804602,0.10329,0.276598,0.191489,0.533013,0.606581,0.511664,0.793437,0.554578,0.210347,0.953317,0.0941744,0.514225,0.784911,0.977566,0.873507,0.754348,0.0566515,0.521669,0.0832002,0.502517,0.47069,0.33885,0.91271,0.423701,0.586918,0.686628,0.559803,0.789143,0.810158,0.479588,0.9094,0.471812,0.856249,0.828171,0.42895,0.631556,0.565682,0.468856,0.427688,0.410663,0.960821,0.183164,0.54759,0.302994,0.400995,0.585432,0.740563,0.695603,0.0784562,0.484468,0.808558,0.304274,0.0149302,0.692179,0.590646,0.348843,0.599821,0.68538,0.161011,0.670721,0.270313,0.620145,0.408655,0.901172,0.794956,0.863851,0.879578,0.979832,0.108895,0.17565,0.856689,0.732902,0.312702,0.218556,0.397638,0.366379,0.359214,0.855788,0.0554227,0.378556,0.576531,0.477365,|0.775571,0.877963,0.601348,0.14971,0.302668,0.424994,0.985793,0.996939,0.812185,0.704362,0.319463,0.119771,0.807516,0.344342,0.0424393,0.724212,0.758668,0.143081,0.818655,0.295821,0.58196,0.547323,0.130628,0.309676,0.600434,0.104654,0.831304,0.785915,0.467681,0.0506287,0.6031,0.806333,0.942082,0.0351718,0.705379,0.123272,0.629637,0.941783,0.991962,0.0164363,0.342207,0.348085,0.68744,0.25614,0.450497,0.408533,0.666082,0.509729,0.361641,0.497695,0.666978,0.552748,0.362246,0.938608,0.383184,0.86231,0.876868,0.865484,0.461188,0.509337,0.984731,0.618402,0.41533,0.910801,0.181028,0.53426,0.318726,0.599994,0.948813,0.947868,0.840444,0.280814,0.136646,0.762723,0.031877,0.469625,0.575138,0.764752,0.0817163,0.518663,0.143791,0.539384,0.348995,0.146519,0.918154,0.953938,0.641862,0.451471,0.786912,0.765693,0.453201,0.624541,0.906398,0.605904,0.931465,0.158355,0.255968,0.989586,0.0579044,0.880927,0.175341,0.227465,0.98183,0.979646,0.562503,0.0522395,0.154566,0.119439,0.574964,0.921151,0.370083,0.382466,0.690583,0.101873,0.411389,0.170457,0.248652,0.587875,0.568795,0.447331,0.371666,0.120173,0.719005,0.2583,0.117186,0.522194,0.908629,0.102457,0.356244,0.390476,0.429887,0.482731,0.309736,0.993053,0.243029,0.795901,0.586306,0.410323,0.454456,0.758235,0.739116,0.667199,0.419607,0.0840885,0.919238,0.334242,0.412773,0.0056361,0.261633,0.256463,0.225453,0.315482,0.90324,0.614011,0.518834,0.476841,0.505765,0.823298,0.325766,0.26397,0.578835,0.114089,0.565934,0.890825,0.403723,0.861835,0.44095,0.148323,0.632206,0.599707,0.417579,0.265283,0.876961,0.332981,0.976779,0.269884,0.931226,0.504364,0.919368,0.588139,0.404181,0.74389,0.424509,0.635183,0.386514,0.0922603,0.511325,0.0248528,0.872046,0.275399,0.692824,0.0350364,0.45576,0.346574,0.873989,0.23147,0.195803,0.419723,0.831809,0.585822,0.628831,0.522615,0.981011,0.842383,0.969487,0.802162,0.444508,0.408984,0.193737,0.391807,0.38273,0.559804,0.629751,0.192108,0.539827,0.55794,0.436225,0.617271,0.8046,0.598652,0.440297,0.58138,0.945923,0.0896792,0.847351,0.129464,0.307435,0.781097,0.737701,0.18309,0.0192562,0.984629,0.920518,0.980152,0.616448,0.197857,0.211059,0.814487,0.485551,0.627337,0.452103,0.106496,0.215259,0.0727651,0.809847,0.14225,0.818285,0.905008,0.469674,0.208052,0.105962,0.674312,0.151589,0.173146,0.457257,0.733637,0.300451,0.603386,0.907053,0.207765,0.10732,0.342411,0.803277,0.614424,0.135995,0.143165,0.32577,0.850967,0.451288,0.516724,0.282091,0.721441,0.419234,0.400925,0.341136,0.089819,0.314823,0.0327468,0.646222,0.0526994,0.770132,0.00130969,0.365654,0.985967,0.365518,0.447283,0.965399,0.866173,0.482119,0.767871,0.81552,0.868218,0.717279,0.0330135,0.226687,0.81152,0.422689,0.930128,0.577914,0.93502,0.762029,0.809615,0.510249,0.446287,0.236499,0.76581,0.54303,0.109173,0.456717,0.0883005,0.848585,0.718065,0.837443,0.534394,0.551522,0.850867,0.560042,0.628769,0.896846,0.633815,0.903386,0.336765,0.309038,0.462002,0.641088,0.423396,0.0852947,0.149027,0.183264,0.740713,0.709938,0.192688,0.0385562,0.0311586,0.533613,0.790703,0.563771,0.565323,0.878001,0.2105,0.198342,0.661622,0.3835,0.367706,0.419792,0.049907,0.35334,0.36675,0.97291,0.256889,0.433544,0.3082,0.791774,0.174934,0.81735,0.579096,0.98879,0.211551,0.0508187,0.977709,0.397924,0.57092,0.779886,0.101469,0.284728,0.193156,0.451518,0.427988,0.113839,0.24635,0.0683613,0.616949,0.882725,0.332409,0.558069,0.835626,0.97878,0.0546914,0.63858,0.499288,0.811927,0.0869827,0.736673,0.952687,0.412642,0.615524,0.147677,0.689489,0.764903,0.711795,0.636525,0.785456,0.725663,0.836948,0.862001,0.0197912,0.763967,0.434836,0.064756,0.143412,0.5709,0.8255,0.286399,0.530393,0.0733838,0.232783,0.259328,0.289165,0.0350539,0.882463,0.216956,0.708589,0.195584,0.315285,0.632231,0.903699,0.698744,0.726763,0.381679,0.66189,0.928306,0.949103,0.755163,0.981307,0.0295937,0.980769,0.601859,0.376352,0.0649415,0.297695,0.155831,0.0400881,0.338253,0.667399,0.745662,0.749308,0.473206,0.21538,0.78849,0.959786,0.873688,0.125332,0.0482517,0.917532,0.916626,0.825149,0.399469,0.0461132,0.436911,0.9977,0.505279,0.29377,0.737106,0.0741857,0.356517,0.921888,0.911396,0.322762,0.414289,0.362694,0.220859,0.883242,0.280927,0.962045,0.10813,0.11927,0.819046,0.273716,0.895629,0.323167,0.554715,0.845268,0.318841,0.151412,0.184339,0.00126666,0.864317,0.0801073,0.281744,0.380068,0.809441,0.987322,0.376091,0.312849,0.0561959,0.274423,0.569767,0.108937,0.539855,0.0765842,0.971437,0.556449,0.899717,0.645426,0.592819,0.695595,0.590512,0.994259,0.858505,0.412212,0.599789,0.0443721,0.758344,0.0552392,0.955396,0.666632,0.513529,0.712715,0.454999,0.475399,0.330358,0.0483891,0.500107,0.357014,0.134396,0.693576,0.626499,0.101643,0.847982,0.0461184,0.527994,0.279093,0.732073,0.731664,0.147286,0.572422,0.952927,0.713825,0.940607,0.903303,0.279066,0.376344,0.140746,0.31741,0.356844,0.501067,0.262725,0.0280671,0.961996,0.131738,0.966361,0.614368,0.0682455,0.03144,0.582067,0.170928,0.409034,0.0063231,0.585981,0.661963,0.275421,0.000924945,0.128213,0.383656,0.361746,0.248926,0.376585,0.451765,0.862479,0.215482,0.768796,0.548319,0.425954,0.504914,0.70708,0.96377,0.740358,0.704427,0.715019,0.825939,0.762161,0.301995,0.581806,0.42807,0.658437,0.18094,0.812219,0.699075,0.709143,0.112956,0.140909,0.0681806,0.80358,0.291203,0.587821,0.453585,0.820054,0.666405,0.0938504,0.334584,0.939558,0.554471,0.661264,0.483122,0.518747,0.0154485,0.0355389,0.518062,0.151472,0.396586,0.931533,0.674638,0.873384,0.592398,0.312575,0.728101,0.275292,0.632133,0.955671,0.791009,0.888731,0.400356,0.288535,0.2236,0.763638,0.120487,0.10727,0.0774475,0.989744,0.332293,0.517222,0.442379,0.263833,0.135111,0.435642,0.661293,0.58126,0.765673,0.532988,0.556972,0.29241,0.779038,0.622789,0.389444,0.75494,0.354078,0.849906,0.117845,0.459696,0.627443,0.987453,0.653733,0.0396953,0.00926584,0.269316,0.53026,0.162088,0.581902,0.551726,0.597934,0.481777,0.246779,0.0519779,0.679866,0.0831196,0.952725,0.234874,0.0656934,0.0220253,0.245044,0.347835,0.566302,0.0364812,0.764805,0.462473,0.25242,0.991781,0.344006,0.311204,0.979924,0.249875,0.569398,0.245247,0.67768,0.17598,0.99334,0.748856,0.728038,0.64567,0.775187,0.535476,0.20186,0.329759,0.305661,0.433748,0.824748,0.328521,0.697803,0.395849,0.32477,0.730157,0.242137,0.967932,0.818109,0.0641109,0.141532,0.471267,0.503089,0.805894,0.713836,0.0185636,0.723888,0.385142,0.615637,0.125739,0.643319,0.55647,0.325016,0.93381,0.1634,0.135344,0.510823,0.899993,0.778283,0.901184,0.306135,0.677521,0.030304,0.0210961,0.299319,0.202,0.745391,0.159151,0.643259,0.781898,0.934737,0.32174,0.541138,0.390406,0.260725,0.901825,0.224248,0.0700452,0.898719,0.0996187,0.29967,0.0908547,0.782181,0.340643,0.192838,0.11287,0.000118554,0.654419,0.579156,0.670442,0.330699,0.884423,0.298777,0.0896285,0.24664,0.651067,0.674277,0.384253,0.459704,0.492373,0.243343,0.815931,0.143252,0.900019,0.33386,0.280754,0.981872,0.253363,0.905483,0.430714,0.49352,0.275385,0.21651,0.917123,0.834242,0.835152,0.665833,0.145319,0.103874,0.73503,0.48169,0.920773,0.57207,0.491396,0.17508,0.878472,0.773076,0.384573,0.272658,0.589052,0.669179,0.398755,0.906357,0.526623,0.773777,0.741699,0.433183,0.276156,0.528063,0.705355,0.830285,0.592907,0.305665,0.719137,0.950025,0.439732,0.859291,0.170721,0.463465,0.501402,0.354942,0.154077,0.884241,0.268594,0.0210415,0.890666,0.968592,0.638384,0.39665,0.592909,0.0856654,0.133396,0.899032,0.000800669,0.964155,0.48004,0.447148,0.733416,0.390714,0.61315,0.363877,0.755428,0.662704,0.513465,0.512671,0.393607,0.453038,0.811063,0.973395,0.846025,0.558061,0.599484,0.177717,0.873542,0.554755,0.955202,0.479393,0.774817,0.724756,0.498817,0.756108,0.942285,0.478063,0.317128,0.422083,0.737987,0.214828,0.447588,0.0645416,0.823594,0.70834,0.680728,0.942245,0.212266,0.282758,0.00735044,0.875148,0.975763,0.947784,0.420823,0.384603,0.39286,0.725035,0.0111719,0.904353,0.284857,0.183648,0.545414,0.805052,0.160639,0.502246,0.455283,0.625707,0.953891,0.813486,0.655612,0.613554,0.891743,0.107647,0.0880674,0.0694775,0.138762,0.748724,0.504417,0.724057,0.229635,0.718173,0.533514,0.572537,0.17741,0.436529,0.741153,0.0334144,0.670277,0.876752,0.878357,0.330865,0.272848,0.814587,0.0602427,0.454841,0.256187,0.0432215,0.338798,0.197545,0.992154,0.719946,0.517493,0.277875,0.996464,0.219449,0.370239,0.325131,0.279132,0.247329,0.53217,0.27374,0.931069,0.126456,0.0605001,0.951444,0.489866,0.178616,0.684837,0.204278,0.505163,0.726454,0.194803,0.240091,0.311584,0.951048,0.0140847,0.652029,0.968959,0.294944,0.498738,0.465446,0.191934,0.0981912,0.936236,0.506133,0.4384,0.968745,0.451488,0.00393087,0.413858,0.284741,0.396418,0.553836,0.483369,0.357266,0.517952,0.885099,0.664992,0.328647,0.370537,0.638236,0.304237,0.111405,0.393404,0.867186,0.576301,0.781373,0.482143,0.727032,0.451759,0.523205,0.958832,0.485686,0.925201,0.319688,0.482453,0.351187,0.986336,0.0894093,0.253986,0.0843281,0.213526,0.637995,0.484638,0.932677,0.373745,0.806889,0.525076,0.22108,0.408134,0.480233,0.730452,0.82147,0.383681,0.646026,0.47358,0.472361,0.652473,0.732265,|0.890723,0.267607,0.204348,0.386087,0.277589,0.882003,0.11829,0.442918,0.1537,0.0387365,0.048313,0.806573,0.155409,0.134893,0.209378,0.0637402,0.764901,0.785676,0.0974016,0.294531,0.00940675,0.218727,0.589453,0.099244,0.860632,0.523569,0.508315,0.414796,0.812968,0.626105,0.574813,0.531014,0.695187,0.514326,0.00950921,0.146598,0.573856,0.556884,0.110435,0.618969,0.40697,0.413386,0.849872,0.406897,0.865962,0.541228,0.778183,0.159472,0.534199,0.981841,0.115319,0.212779,0.408292,0.892081,0.613141,0.906806,0.865588,0.225413,0.948363,0.480705,0.415147,0.699941,0.899327,0.487145,0.874892,0.772372,0.824307,0.471383,0.922312,0.472855,0.313385,0.899393,0.462026,0.844105,0.564599,0.595257,0.966681,0.285225,0.722054,0.266806,0.408807,0.752744,0.44732,0.442906,0.0437673,0.299645,0.380892,0.432669,0.761235,0.840723,0.757537,0.924205,0.742891,0.844341,0.423443,0.22422,0.740812,0.686129,0.563258,0.894591,0.837974,0.533568,0.520525,0.205087,0.815641,0.161685,0.510941,0.946665,0.128818,0.441425,0.212138,0.754538,0.676767,0.00893664,0.337886,0.225036,0.133305,0.352231,0.134366,0.143901,0.0217861,0.61044,0.413066,0.631624,0.601403,0.627068,0.719833,0.711493,0.382951,0.680789,0.701715,0.210258,0.409273,0.902626,0.870003,0.684051,0.857296,0.292949,0.260475,0.447565,0.999119,0.194311,0.216705,0.24756,0.12378,0.961726,0.973658,0.738144,0.0873582,0.0786851,0.685918,0.452024,0.302728,0.608583,0.461085,0.8549,0.409873,0.845062,0.343571,0.878198,0.636993,0.555782,0.0403653,0.33665,0.78844,0.810695,0.240333,0.339401,0.255367,0.312519,0.866086,0.519495,0.752611,0.453835,0.0800817,0.127113,0.533066,0.0156825,0.97616,0.188568,0.970637,0.557148,0.201401,0.197707,0.635015,0.545025,0.853351,0.228153,0.0743304,0.0461554,0.379523,0.664827,0.364113,0.504918,0.752935,0.620858,0.748164,0.862742,0.388013,0.313962,0.0529617,0.0294692,0.421874,0.0260646,0.116394,0.984226,0.404859,0.965064,0.64559,0.983745,0.668384,0.207701,0.286251,0.210246,0.900064,0.435501,0.952202,0.881447,0.78197,0.26608,0.868114,0.480158,0.987007,0.5954,0.0553763,0.810743,0.757567,0.291151,0.556909,0.142465,0.0203486,0.932024,0.21451,0.149996,0.0334794,0.393324,0.0238439,0.631192,0.067319,0.376571,0.97302,0.00965846,0.653097,0.57147,0.593093,0.225409,0.933292,0.146751,0.947606,0.657329,0.379588,0.793716,0.834911,0.173393,0.146256,0.776584,0.75389,0.621835,0.957087,0.944284,0.279456,0.324493,0.0680313,0.670357,0.609094,0.11176,0.43129,0.416194,0.147949,0.369552,0.399345,0.478989,0.994698,0.28031,0.237641,0.653017,0.0791367,0.983029,0.885117,0.695314,0.995822,0.10647,0.905394,0.0868747,0.127113,0.763914,0.270194,0.392139,0.772413,0.552816,0.464346,0.84303,0.183057,0.483131,0.51592,0.0258667,0.774001,0.020048,0.587287,0.111482,0.666253,0.628815,0.467502,0.370234,0.543905,0.736735,0.163911,0.338743,0.519294,0.49618,0.0778999,0.844829,0.163052,0.118458,0.560335,0.434302,0.0599563,0.160789,0.803404,0.999845,0.917086,0.932078,0.244076,0.00134057,0.0154785,0.986039,0.352863,0.0317014,0.821184,0.925558,0.586234,0.571646,0.361489,0.701105,0.707074,0.979413,0.340734,0.100727,0.994718,0.491922,0.530565,0.468373,0.990802,0.867103,0.236622,0.431985,0.161992,0.867465,0.508658,0.887071,0.730651,0.351492,0.515331,0.539826,0.532517,0.724793,0.68208,0.0231209,0.282614,0.515993,0.591118,0.473998,0.148705,0.658562,0.02912,0.197363,0.242801,0.577458,0.6376,0.047005,0.491149,0.270109,0.894812,0.933708,0.830935,0.451995,0.986581,0.0973106,0.775861,0.434172,0.554563,0.675024,0.147429,0.858456,0.628972,0.691538,0.598363,0.0311891,0.638832,0.906684,0.0925263,0.150294,0.829403,0.380247,0.24107,0.725283,0.866646,0.739061,0.598657,0.160567,0.909723,0.288849,0.871126,0.684967,0.307742,0.0602984,0.042641,0.275041,0.177097,0.208883,0.442463,0.399602,0.790363,0.135675,0.907636,0.584235,0.246877,0.676384,0.839202,0.27208,0.246912,0.504066,0.0870981,0.32446,0.348863,0.153236,0.93866,0.760892,0.785137,0.065951,0.567788,0.671314,0.587527,0.69729,0.429148,0.758913,0.896905,0.0549717,0.960531,0.87756,0.464694,0.0798445,0.845595,0.739419,0.861398,0.456255,0.083008,0.230978,0.291039,0.70729,0.499519,0.948305,0.918737,0.231932,0.926549,0.144283,0.875021,0.429804,0.625586,0.428325,0.548966,0.573643,0.425873,0.251994,0.718556,0.395557,0.575056,0.77827,0.956295,0.736231,0.667156,0.20636,0.56752,0.269234,0.649073,0.872189,0.484284,0.405057,0.0237169,0.921305,0.55776,0.625646,0.7173,0.964551,0.807053,0.273614,0.289503,0.632709,0.770038,0.260834,0.70175,0.693543,0.484519,0.958604,0.626657,0.878671,0.228834,0.291869,0.342549,0.362639,0.958898,0.501051,0.67682,0.906652,0.359459,0.144186,0.263715,0.925359,0.51776,0.840481,0.0925223,0.0202036,0.927105,0.148586,0.196673,0.890845,0.674497,0.851453,0.158736,0.044573,0.296086,0.258031,0.17963,0.165789,0.683183,0.582628,0.0980155,0.217118,0.304187,0.954395,0.301204,0.149895,0.0951817,0.378999,0.655653,0.709409,0.152193,0.624735,0.849882,0.812672,0.426829,0.276318,0.211241,0.545713,0.43279,0.0727948,0.852853,0.803063,0.727614,0.0464092,0.172641,0.819285,0.015199,0.569229,0.895935,0.849881,0.298546,0.95915,0.0821674,0.661277,0.797989,0.483812,0.440641,0.643976,0.851841,0.713961,0.141078,0.769973,0.508707,0.164082,0.0893055,0.88454,0.578693,0.170592,0.763665,0.865691,0.733064,0.596901,0.625078,0.554104,0.854523,0.728614,0.733903,0.898465,0.677833,0.846595,0.285671,0.453856,0.406407,0.765374,0.408742,0.744056,0.295208,0.819792,0.583441,0.480497,0.428922,0.447937,0.0117795,0.257002,0.541559,0.585829,0.367137,0.969039,0.156332,0.265003,0.991671,0.429004,0.13268,0.00454032,0.698083,0.117683,0.0347236,0.279721,0.236479,0.0894953,0.343087,0.92194,0.99615,0.862029,0.889611,0.278021,0.262474,0.30912,0.86926,0.630425,0.71464,0.231249,0.149634,0.385772,0.00833327,0.49409,0.733862,0.693891,0.867081,0.111814,0.536058,0.0466384,0.0152057,0.629738,0.797476,0.0495186,0.537488,0.757971,0.711169,0.338446,0.419808,0.495745,0.252467,0.974632,0.422366,0.0361519,0.10839,0.187399,0.679524,0.15139,0.377846,0.492591,0.91987,0.550567,0.212513,0.772958,0.402359,0.854035,0.244525,0.933147,0.681236,0.754443,0.873296,0.779863,0.553214,0.556371,0.190366,0.502792,0.803935,0.0310892,0.467268,0.7343,0.192959,0.265986,0.786102,0.730005,0.185723,0.898092,0.290029,0.364905,0.0621553,0.554037,0.586731,0.0870347,0.0446822,0.112122,0.0121888,0.555376,0.541431,0.449495,0.441134,0.324237,0.392714,0.0358376,0.0565273,0.0178545,0.188353,0.55311,0.0628672,0.452679,0.516229,0.66225,0.857298,0.112789,0.685408,0.720883,0.156869,0.065829,0.908093,0.716142,0.219169,0.60966,0.794848,0.48196,0.541328,0.616749,0.104779,0.608354,0.991055,0.307036,0.171039,0.653777,0.306118,0.878202,0.838109,0.00889599,0.966589,0.527996,0.133894,0.15962,0.353521,0.571019,0.285157,0.559824,0.450538,0.867082,0.0120271,0.934917,0.0323032,0.385422,0.918683,0.677499,0.532727,0.207692,0.43814,0.700128,0.941395,0.470604,0.631449,0.269766,0.734619,0.76512,0.820731,0.206394,0.211345,0.969016,0.545279,0.740017,0.326381,0.298828,0.0349342,0.846406,0.50222,0.31089,0.146969,0.221434,0.731702,0.233632,0.0699952,0.526771,0.879831,0.771933,0.660889,0.499878,0.571164,0.472298,0.73873,0.0450726,0.584921,0.500228,0.825983,0.00223643,0.423115,0.0677938,0.72139,0.773498,0.993938,0.238318,0.922836,0.527147,0.671902,0.0661606,0.511517,0.676649,0.574068,0.328521,0.405348,0.0144212,0.995563,0.212477,0.420787,0.629462,0.096531,0.148402,0.153652,0.183233,0.976932,0.32971,0.545595,0.908529,0.747001,0.788329,0.460495,0.0764065,0.185435,0.7142,0.866308,0.498642,0.137296,0.99903,0.265032,0.543742,0.584772,0.746809,0.293034,0.041114,0.22157,0.170363,0.516767,0.385292,0.872236,0.698332,0.624852,0.973842,0.632734,0.66555,0.664489,0.15291,0.579519,0.96767,0.826873,0.133358,0.721128,0.561584,0.85561,0.321888,0.999644,0.218814,0.0895179,0.225386,0.973667,0.00915796,0.313126,0.872263,0.282512,0.0941229,0.0135804,0.442934,0.393856,0.943006,0.0192056,0.167971,0.687591,0.094923,0.98127,0.405759,0.369963,0.886552,0.293928,0.603167,0.80413,0.154491,0.0541924,0.300156,0.514458,0.842513,0.162625,0.856771,0.0308287,0.5393,0.329081,0.681847,0.504624,0.98496,0.599507,0.703887,0.671802,0.731912,0.156158,0.500786,0.742187,0.716595,0.491686,0.792277,0.107412,0.854841,0.028742,0.714544,0.0782804,0.811719,0.863306,0.082644,0.854269,0.0129309,0.91474,0.818724,0.623318,0.876863,0.604684,0.802772,0.864845,0.590797,0.10525,0.272407,0.00626296,0.987475,0.0227114,0.203046,0.436796,0.881012,0.294236,0.32476,0.873604,0.246854,0.0775341,0.0833699,0.147297,0.390456,0.289704,0.199368,0.532453,0.276299,0.285954,0.393364,0.780333,0.903031,0.578886,0.900984,0.105767,0.84083,0.560528,0.782222,0.821153,0.563459,0.479248,0.928241,0.666573,0.313126,0.320563,0.893557,0.97593,0.652043,0.448382,0.188936,0.647172,0.622913,0.548448,0.851418,0.81365,0.206589,0.61432,0.380805,0.778181,0.280373,0.373073,0.28161,0.995008,0.168826,0.488968,0.107114,0.723694,0.542485,0.330297,0.535776,0.416468,0.775374,0.458493,0.422444,0.18669,0.615511,0.18496,0.18795,0.639534,0.797068,0.749898,0.198642,0.643388,0.00697213,0.994759,0.110086,0.650693,0.197682,0.794142,0.0980036,|0.031017,0.876912,0.697332,0.238864,0.786635,0.0677804,0.429299,0.271628,0.531249,0.996071,0.50559,0.275966,0.668539,0.290553,0.803817,0.999207,0.656703,0.508933,0.871269,0.706058,0.7072,0.199361,0.884843,0.638696,0.243066,0.903576,0.0310783,0.331711,0.48498,0.533651,0.0433434,0.111721,0.643858,0.510661,0.400059,0.0579157,0.00717223,0.463409,0.663201,0.973756,0.705425,0.521713,0.58264,0.281916,0.620969,0.112451,0.451751,0.660506,0.251071,0.658347,0.935231,0.176843,0.0359235,0.306844,0.792195,0.908167,0.708219,0.755346,0.311907,0.48301,0.540282,0.133542,0.0439686,0.283338,0.694647,0.940592,0.431705,0.295905,0.937222,0.78418,0.670303,0.720047,0.79699,0.897005,0.298854,0.196009,0.605273,0.459429,0.831522,0.27471,0.463497,0.173309,0.962772,0.267739,0.387263,0.4864,0.347953,0.203084,0.423328,0.855802,0.979648,0.310193,0.426364,0.979787,0.629513,0.392738,0.302945,0.00290024,0.0265484,0.652641,0.616693,0.927987,0.395952,0.842414,0.0253395,0.524127,0.629126,0.0412667,0.0934554,0.312513,0.69964,0.163662,0.834139,0.0208561,0.360891,0.356516,0.674986,0.905513,0.52427,0.915613,0.710908,0.722512,0.274344,0.896008,0.511514,0.0262281,0.314605,0.558777,0.62576,0.91773,0.66415,0.742233,0.254406,0.641083,0.997096,0.376546,0.536346,0.618367,0.629211,0.810023,0.748219,0.619447,0.843662,0.418231,0.342974,0.970245,0.322107,0.130482,0.158509,0.358321,0.540439,0.88868,0.986031,0.176015,0.510213,0.191303,0.202674,0.593581,0.984642,0.183075,0.491335,0.373973,0.0135818,0.683235,0.717829,0.102478,0.848458,0.213529,0.201134,0.532575,0.104916,0.926113,0.320332,0.603868,0.103879,0.659307,0.451737,0.303571,0.281581,0.750067,0.155854,0.560709,0.960478,0.35303,0.438102,0.932303,0.076149,0.859506,0.630584,0.871825,0.685987,0.34142,0.236056,0.681765,0.480903,0.472997,0.165671,0.641152,0.516347,0.336488,0.088231,0.602544,0.872214,0.0698762,0.13712,0.984869,0.425634,0.845452,0.484191,0.234904,0.336382,0.654878,0.0187503,0.904459,0.478036,0.688776,0.844642,0.0762216,0.971073,0.463207,0.402574,0.436109,0.827426,0.520133,0.599834,0.215764,0.0515465,0.890195,0.0436351,0.370995,0.235748,0.783516,0.809931,0.0345532,0.0770791,0.962927,0.980051,0.401393,0.545802,0.283919,0.894246,0.197745,0.13877,0.520025,0.317047,0.704915,0.27468,0.75423,0.647395,0.228865,0.106442,0.952371,0.438096,0.334437,0.508001,0.00259602,0.350658,0.492866,0.0376643,0.473568,0.497838,0.496714,0.800227,0.130463,0.955074,0.636701,0.298099,0.642303,0.369429,0.392138,0.751396,0.806001,0.365835,0.478041,0.759013,0.667338,0.855776,0.92419,0.18921,0.873867,0.872697,0.0960274,0.997475,0.367413,0.921364,0.543906,0.0593306,0.342496,0.187503,0.759403,0.937215,0.601265,0.455771,0.587688,0.495303,0.884969,0.0315083,0.525283,0.319452,0.0834803,0.833619,0.342665,0.690732,0.376904,0.328313,0.0793667,0.385381,0.961938,0.856021,0.239881,0.191924,0.338338,0.311353,0.233021,0.701153,0.651189,0.858264,0.565479,0.38884,0.35265,0.29142,0.420721,0.900775,0.595098,0.791862,0.116437,0.141179,0.804599,0.23022,0.431705,0.863356,0.601634,0.943388,0.836755,0.246385,0.859624,0.358038,0.921074,0.142587,0.835918,0.13937,0.815706,0.780951,0.428687,0.174699,0.111355,0.906224,0.844338,0.431773,0.597868,0.875926,0.543131,0.447757,0.99756,0.765213,0.264713,0.931149,0.0452219,0.533187,0.534377,0.659692,0.756486,0.345037,0.170905,0.775762,0.330593,0.635153,0.51679,0.805529,0.121773,0.881714,0.897869,0.241737,0.766064,0.54861,0.726299,0.327365,0.236421,0.289965,0.110538,0.00866568,0.96268,0.373635,0.924955,0.799298,0.137293,0.760483,0.998711,0.751158,0.188069,0.128008,0.534296,0.0414965,0.794432,0.231064,0.174495,0.719973,0.471322,0.196403,0.589687,0.923985,0.516308,0.52042,0.110993,0.354257,0.863157,0.273819,0.877555,0.116189,0.698662,0.843337,0.817709,0.442459,0.307294,0.977167,0.712049,0.558715,0.590317,0.332629,0.357199,0.517118,0.831138,0.32752,0.332273,0.169911,0.00880188,0.839803,0.520027,0.881455,0.695518,0.00956655,0.238609,0.741663,0.544016,0.484871,0.902911,0.278086,0.442452,0.0988069,0.0247852,0.688996,0.763709,0.589165,0.697693,0.0624459,0.313376,0.197181,0.378264,0.616819,0.794582,0.825091,0.836293,0.797199,0.383734,0.729644,0.806369,0.8443,0.600758,0.950338,0.344021,0.127891,0.961525,0.599716,0.780183,0.998455,0.134336,0.844931,0.693963,0.676099,0.852717,0.327135,0.859448,0.87141,0.0406125,0.61178,0.877219,0.0836606,0.287742,0.539595,0.485762,0.276856,0.369788,0.993616,0.623327,0.272188,0.538468,0.046331,0.792673,0.719459,0.893864,0.397665,0.298755,0.568277,0.305997,0.58695,0.543387,0.0630363,0.38504,0.457857,0.73558,0.870325,0.198156,0.327205,0.6464,0.941444,0.774694,0.876633,0.612235,0.601159,0.977476,0.0262727,0.574244,0.374367,0.266711,0.233073,0.59716,0.35761,0.287805,0.107937,0.00892574,0.442145,0.490825,0.166237,0.041297,0.837982,0.62751,0.813729,0.370616,0.779579,0.522275,0.47214,0.437912,0.841446,0.209161,0.32951,0.308552,0.69645,0.462243,0.207671,0.808197,0.890523,0.570741,0.0051685,0.133222,0.295633,0.635049,0.182082,0.845565,0.348192,0.0304281,0.118431,0.578437,0.144076,0.407104,0.506109,0.440439,0.233825,0.248044,0.640563,0.890966,0.396766,0.81993,0.464626,0.198335,0.949692,0.336162,0.428776,0.802699,0.950543,0.498159,0.781092,0.189393,0.596268,0.256946,0.528482,0.790131,0.125345,0.226633,0.111646,0.797414,0.720338,0.85295,0.188192,0.73098,0.190758,0.709714,0.401712,0.0900691,0.037679,0.40105,0.651424,0.455287,0.43025,0.74085,0.557151,0.674609,0.0998264,0.556912,0.111859,0.0822572,0.447243,0.26837,0.458689,0.46206,0.314638,0.537941,0.696918,0.574792,0.0149049,0.677867,0.360535,0.189925,0.677523,0.668353,0.449513,0.881487,0.533429,0.588191,0.175361,0.24312,0.420665,0.0793685,0.588634,0.460435,0.494586,0.284917,0.681916,0.100683,0.785236,0.219886,0.141741,0.0914656,0.0856625,0.150069,0.181541,0.53064,0.823218,0.442753,0.297913,0.47075,0.0400573,0.552845,0.9698,0.395562,0.266053,0.732749,0.276903,0.401734,0.84224,0.0905219,0.259941,0.160768,0.339547,0.695521,0.952063,0.145944,0.29146,0.188931,0.774625,0.99778,0.052716,0.0702899,0.934041,0.566948,0.599313,0.287893,0.420383,0.0918298,0.796175,0.337234,0.989108,0.487903,0.136447,0.778352,0.713083,0.300735,0.559588,0.461063,0.80486,0.824694,0.224804,0.0536833,0.276068,0.270379,0.434364,0.7824,0.60087,0.286431,0.393045,0.39704,0.647571,0.0160823,0.804233,0.628624,0.337655,0.225863,0.776297,0.509086,0.880263,0.97997,0.463472,0.637563,0.562488,0.731545,0.622017,0.213946,0.248235,0.567206,0.868276,0.869069,0.185664,0.708801,0.12838,0.397547,0.242182,0.735497,0.440263,0.659765,0.703447,0.0484251,0.249847,0.621567,0.130285,0.122834,0.705694,0.046865,0.516568,0.674603,0.657731,0.143226,0.497333,0.655944,0.590868,0.37969,0.333099,0.45482,0.543549,0.0783311,0.692557,0.337574,0.178334,0.106475,0.262141,0.198021,0.553289,0.874427,0.456006,0.824918,0.723287,0.304825,0.00159049,0.946906,0.821322,0.210256,0.691556,0.584821,0.887866,0.425264,0.365864,0.651154,0.176081,0.132381,0.586853,0.767655,0.0033226,0.649786,0.344833,0.0862988,0.95811,0.126104,0.385485,0.0941758,0.161084,0.143723,0.130138,0.637595,0.841865,0.455335,0.153549,0.696846,0.24489,0.750412,0.719193,0.0149167,0.72353,0.711121,0.538107,0.53909,0.122144,0.57657,0.540515,0.199169,0.57966,0.815991,0.535422,0.648615,0.508677,0.236755,0.429421,0.954395,0.770509,0.569819,0.546163,0.366168,0.026294,0.723991,0.672309,0.0186669,0.0501421,0.158771,0.379048,0.419029,0.609184,0.704488,0.923626,0.106154,0.568963,0.789943,0.0923294,0.299472,0.437406,0.29907,0.923874,0.980303,0.0394345,0.376905,0.722826,0.55125,0.476808,0.192606,0.130666,0.171919,0.614762,0.118642,0.0373649,0.251886,0.268706,0.781305,0.0198678,0.883657,0.766397,0.102816,0.0959822,0.3821,0.592713,0.922319,0.15732,0.973952,0.408082,0.0682892,0.912004,0.326131,0.721186,0.99555,0.46335,0.591162,0.532778,0.235075,0.614706,0.0887465,0.539364,0.791565,0.540808,0.0765917,0.831863,0.490937,0.660918,0.708632,0.00552982,0.706347,0.686665,0.668117,0.596858,0.813921,0.691101,0.261962,0.377315,0.251107,0.331134,0.66779,0.485152,0.322243,0.503869,0.0560331,0.103935,0.0656736,0.924981,0.386268,0.73805,0.755208,0.224896,0.843329,0.348056,0.81561,0.279587,0.480154,0.986211,0.169076,0.246283,0.352287,0.617818,0.89653,0.194216,0.832053,0.70616,0.331402,0.433395,0.280658,0.330376,0.33039,0.519367,0.932686,0.226885,0.84852,0.492764,0.847022,0.0375156,0.874036,0.791482,0.603647,0.438119,0.577455,0.753234,0.51726,0.65651,0.685683,0.987601,0.408535,0.0929909,0.861567,0.575389,0.0963799,0.77781,0.521591,0.30074,0.948567,0.116587,0.823873,0.108155,0.513315,0.700774,0.552935,0.579781,0.948634,0.677011,0.73099,0.454684,0.639335,0.803054,0.959015,0.242324,0.785859,0.919618,0.298999,0.724579,0.756286,0.582442,0.928335,0.743533,0.602895,0.895688,0.74416,0.624218,0.969937,0.703165,0.918878,0.37515,0.804402,0.333733,0.905978,0.270417,0.401847,0.0411902,0.690621,0.124766,0.555418,0.395639,0.309223,0.150324,0.821617,0.0217558,0.154404,0.663154,0.316707,0.0781695,0.742453,0.322531,0.815502,0.76928,0.864302,0.653019,0.184262,0.483851,0.900988,0.509171,0.269371,0.619112,0.922707,0.769563,0.902977,|0.665264,0.0461957,0.795653,0.829536,0.382567,0.108083,0.881809,0.783157,0.711148,0.385839,0.251262,0.726774,0.256229,0.0105599,0.194806,0.544739,0.721715,0.301391,0.291562,0.616771,0.459732,0.559957,0.61424,0.0412965,0.245215,0.475003,0.883093,0.4838,0.729876,0.508829,0.0381153,0.417218,0.00535965,0.0171348,0.847289,0.778031,0.32859,0.374433,0.218132,0.92879,0.394632,0.721348,0.321032,0.747775,0.00336933,0.876058,0.346193,0.275192,0.635355,0.881666,0.207811,0.540131,0.950014,0.651386,0.674294,0.802015,0.971024,0.235305,0.963197,0.627426,0.680039,0.619521,0.880613,0.745497,0.830048,0.417703,0.755802,0.929511,0.773397,0.643556,0.0456158,0.475301,0.983025,0.692503,0.42962,0.701088,0.71671,0.356651,0.00570595,0.657047,0.497639,0.135897,0.0630395,0.253214,0.567677,0.401758,0.975513,0.863335,0.580265,0.0175463,0.463334,0.687942,0.325866,0.974288,0.284777,0.253802,0.149974,0.852351,0.196134,0.966139,0.474435,0.256287,0.181542,0.259404,0.0986941,0.643121,0.704746,0.489602,0.0108929,0.609136,0.0701715,0.728392,0.203889,0.0736924,0.560512,0.205668,0.0717192,0.38506,0.218701,0.620372,0.7611,0.0500586,0.846005,0.395784,0.255843,0.403052,0.715814,0.230057,0.680856,0.574336,0.329258,0.422163,0.592358,0.783111,0.571305,0.921394,0.711836,0.174038,0.79519,0.229678,0.329779,0.286107,0.397844,0.44052,0.0379676,0.399861,0.82937,0.778302,0.263722,0.778195,0.199078,0.636171,0.0079276,0.861274,0.811807,0.311576,0.834284,0.0785616,0.597893,0.906362,0.819903,0.644781,0.72374,0.30645,0.031925,0.0226787,0.0523575,0.630956,0.17259,0.905686,0.404621,0.024375,0.923636,0.230805,0.56694,0.60958,0.958249,0.934107,0.244098,0.497616,0.357936,0.472586,0.741272,0.508323,0.476285,0.0768619,0.729072,0.448159,0.475165,0.685302,0.463938,0.634978,0.590883,0.122278,0.577343,0.664586,0.352274,0.410945,0.957147,0.218367,0.757195,0.426382,0.139433,0.0557072,0.871247,0.641441,0.138511,0.346118,0.621212,0.0323302,0.607683,0.0676925,0.122177,0.0257882,0.465922,0.112779,0.818976,0.999714,0.131868,0.450073,0.854783,0.266104,0.864203,0.99046,0.697452,0.584833,0.0312769,0.614444,0.231339,0.05412,0.560917,0.905991,0.216656,0.109848,0.525468,0.730772,0.962558,0.298226,0.884869,0.449874,0.838754,0.00545919,0.604231,0.907717,0.622948,0.319313,0.782845,0.157422,0.407121,0.256896,0.81337,0.0462136,0.869282,0.781487,0.118803,0.679765,0.0846081,0.365001,0.947686,0.942501,0.376934,0.619837,0.984891,0.852727,0.748964,0.0528709,0.357208,0.397911,0.732395,0.984195,0.472981,0.852422,0.37462,0.359046,0.328784,0.425655,0.705304,0.710928,0.184388,0.933184,0.436664,0.893377,0.521465,0.830759,0.674845,0.218003,0.433901,0.520063,0.758484,0.402377,0.431555,0.889564,0.716338,0.0186714,0.167478,0.465488,0.519269,0.873589,0.737898,0.757769,0.296573,0.679669,0.571368,0.681608,0.840509,0.835842,0.224644,0.428096,0.251152,0.297491,0.264601,0.423273,0.943679,0.046063,0.481853,0.00836468,0.184457,0.534303,0.130366,0.397493,0.670579,0.579307,0.536278,0.315208,0.202256,0.719516,0.773519,0.0245405,0.936053,0.655276,0.0358916,0.878279,0.415955,0.162479,0.379869,0.766473,0.184068,0.788143,0.8848,0.562312,0.483864,0.979477,0.631146,0.0348082,0.264768,0.326927,0.0181187,0.554358,0.0650665,0.860557,0.34119,0.924251,0.205108,0.978616,0.060717,0.997993,0.183207,0.416499,0.508328,0.21115,0.27187,0.701575,0.786348,0.970352,0.862115,0.31577,0.873913,0.76397,0.434952,0.300452,0.0741343,0.69917,0.782404,0.927251,0.217571,0.233035,0.652881,0.496509,0.174652,0.776264,0.977688,0.612607,0.131104,0.246017,0.917316,0.0526568,0.696414,0.333275,0.969775,0.0873455,0.0773501,0.760886,0.254171,0.708163,0.683113,0.117979,0.141699,0.549784,0.479793,0.908824,0.785349,0.753558,0.290086,0.719646,0.956522,0.0889735,0.591919,0.189567,0.401776,0.286948,0.559861,0.274789,0.119762,0.244496,0.747922,0.85821,0.171731,0.153269,0.691434,0.391833,0.787987,0.528937,0.513529,0.54359,0.206843,0.986626,0.21508,0.0208423,0.934792,0.379513,0.772082,0.852665,0.388078,0.109728,0.121155,0.049163,0.687088,0.0667938,0.226313,0.863154,0.97463,0.188956,0.269945,0.97508,0.564716,0.117783,0.422731,0.35735,0.725266,0.650473,0.974092,0.830116,0.492087,0.919552,0.357679,0.646981,0.496694,0.308319,0.392972,0.890688,0.126386,0.662498,0.4994,0.826296,0.629964,0.764803,0.783158,0.244303,0.641503,0.643846,0.533094,0.383922,0.846022,0.488374,0.721628,0.402049,0.11423,0.0468498,0.688167,0.855758,0.98818,0.547194,0.041167,0.120448,0.154898,0.117029,0.375343,0.0628728,0.318651,0.171087,0.736014,0.778868,0.775748,0.0891535,0.281492,0.311212,0.628756,0.572517,0.662168,0.144369,0.275523,0.283228,0.687697,0.3908,0.166811,0.734771,0.610364,0.590935,0.474399,0.493135,0.670384,0.481187,0.758172,0.891784,0.86842,0.748554,0.0652905,0.98083,0.952573,0.563072,0.369192,0.128747,0.14085,0.997008,0.180007,0.962543,0.582538,0.419261,0.0513798,0.370737,0.695238,0.175794,0.20897,0.195527,0.886388,0.981143,0.268491,0.895121,0.901443,0.616081,0.363189,0.00903296,0.795215,0.368502,0.957769,0.905255,0.168258,0.855029,0.498543,0.467872,0.553369,0.989821,0.128784,0.64976,0.680362,0.171612,0.870345,0.313863,0.21514,0.037542,0.0050317,0.408045,0.586464,0.243482,0.932033,0.223443,0.808958,0.387518,0.504009,0.00479245,0.546677,0.480714,0.443029,0.539246,0.906307,0.9119,0.537349,0.460852,0.323017,0.120272,0.451186,0.861678,0.363915,0.307842,0.281758,0.405703,0.763607,0.753179,0.899262,0.938422,0.33187,0.984188,0.170337,0.0241389,0.634058,0.0789855,0.420253,0.34416,0.635806,0.776145,0.458018,0.96912,0.93778,0.679328,0.605938,0.379358,0.711081,0.281404,0.134334,0.733168,0.443015,0.464462,0.0933903,0.705547,0.860908,0.490874,0.467047,0.164013,0.273475,0.475486,0.448691,0.815295,0.142737,0.871282,0.326706,0.261752,0.0142258,0.585792,0.574931,0.944432,0.538802,0.853128,0.855786,0.259198,0.98533,0.440696,0.401461,0.726138,0.305539,0.563803,0.980666,0.538483,0.834664,0.650639,0.535863,0.275102,0.0760404,0.351715,0.765919,0.453456,0.0506317,0.416692,0.326873,0.771042,0.717396,0.272765,0.146341,0.912251,0.883852,0.294093,0.150104,0.961809,0.795551,0.296441,0.0455779,0.668457,0.146306,0.804177,0.405779,0.838742,0.739772,0.98865,0.985528,0.990192,0.458057,0.90942,0.342307,0.610273,0.611424,0.852014,0.723577,0.0809627,0.947048,0.655092,0.438947,0.115192,0.272663,0.208982,0.481036,0.754658,0.885202,0.0485817,0.833879,0.306278,0.130058,0.678744,0.531855,0.0921147,0.584135,0.0169739,0.836336,0.764581,0.633447,0.779982,0.14536,0.284724,0.0167153,0.345978,0.974922,0.00320816,0.0959832,0.499737,0.904475,0.361082,0.521141,0.274742,0.996404,0.488608,0.498888,0.522359,0.291751,0.95174,0.669179,0.658715,0.860545,0.57599,0.752396,0.227584,0.814097,0.291479,0.96429,0.108856,0.17417,0.804465,0.931976,0.149623,0.162262,0.0539478,0.556849,0.837542,0.660941,0.932881,0.842568,0.831932,0.641563,0.389915,0.291922,0.837771,0.668465,0.357813,0.709044,0.871331,0.507485,0.586947,0.671328,0.977155,0.806184,0.159995,0.672294,0.915497,0.492991,0.798602,0.237369,0.64504,0.0688227,0.184478,0.707392,0.448975,0.393464,0.043358,0.490033,0.888515,0.188134,0.30444,0.342546,0.69301,0.818868,0.967123,0.929907,0.671072,0.709813,0.516224,0.450783,0.406935,0.626615,0.258369,0.140072,0.436614,0.733576,0.255969,0.389724,0.932054,0.761256,0.00908756,0.921083,0.511257,0.375111,0.948767,0.448678,0.172769,0.729429,0.0643555,0.142927,0.953366,0.513022,0.404265,0.253864,0.793436,0.999744,0.417433,0.29104,0.00747263,0.505058,0.0626267,0.571505,0.0486035,0.315168,0.255067,0.513675,0.958649,0.932952,0.287913,0.857517,0.692943,0.159809,0.111653,0.574253,0.0711516,0.447834,0.626606,0.19031,0.356073,0.779136,0.0550979,0.802701,0.51706,0.349676,0.0269743,0.293867,0.714377,0.735663,0.0515178,0.0381898,0.235232,0.26898,0.654527,0.686515,0.68707,0.10552,0.613722,0.804452,0.704139,0.379164,0.351431,0.772563,0.200477,0.896493,0.992538,0.802267,0.546061,0.238063,0.328712,0.968828,0.866342,0.459143,0.42422,0.486745,0.759315,0.887418,0.656216,0.11776,0.884882,0.459028,0.63104,0.186392,0.770335,0.298384,0.861277,0.302674,0.803675,0.815164,0.159728,0.468693,0.566505,0.564586,0.241007,0.897104,0.935685,0.807863,0.605292,0.0218278,0.148319,0.398011,0.0923872,0.177489,0.405051,0.834239,0.384181,0.2298,0.954283,0.995542,0.111615,0.180078,0.154807,0.846288,0.789697,0.281701,0.195466,0.891388,0.264321,0.101748,0.690751,0.593362,0.013098,0.687246,0.341512,0.570336,0.212748,0.635042,0.0728239,0.410498,0.549956,0.23111,0.773125,0.39301,0.397764,0.0231939,0.470607,0.308185,0.572495,0.763788,0.786611,0.768288,0.225439,0.996875,0.214503,0.935484,0.645098,0.863504,0.524258,0.296342,0.89814,0.751658,0.513695,0.244193,0.0500868,0.570863,0.933751,0.145787,0.924765,0.734291,0.234246,0.61751,0.626042,0.805691,0.75071,0.228215,0.0997815,0.453146,0.295066,0.921649,0.639522,0.47188,0.665831,0.383015,0.865592,0.149272,0.607626,0.841241,0.113249,0.918351,0.450115,0.620087,0.831077,0.349257,0.284375,0.316849,0.700002,0.527671,0.977139,0.587831,0.694305,0.173448,0.140158,0.1916,0.826511,0.392558,0.727797,0.645486,0.0775765,0.0802258,0.462994,0.889674,0.182969,0.438636,0.108852,0.324555,0.667373,0.638305,0.731392,|0.906058,0.655096,0.168156,0.167931,0.88168,0.989126,0.787575,0.666952,0.428563,0.16442,0.256247,0.470255,0.583816,0.174976,0.395274,0.774718,0.331308,0.304708,0.890181,0.0844881,0.533665,0.116716,0.54317,0.482287,0.348374,0.0434734,0.75233,0.832438,0.442204,0.21018,0.23282,0.453726,0.653554,0.996234,0.0538194,0.760051,0.740135,0.721762,0.661555,0.257218,0.10274,0.328312,0.348041,0.239225,0.418577,0.210149,0.339938,0.244186,0.994569,0.962437,0.527485,0.544251,0.075122,0.582256,0.0936191,0.653969,0.836623,0.0276356,0.126503,0.515555,0.0649903,0.0713282,0.878565,0.172984,0.445866,0.341183,0.77433,0.269876,0.402262,0.571854,0.843365,0.347189,0.86646,0.583225,0.00162035,0.458692,0.813116,0.249067,0.130474,0.917053,0.0110995,0.693298,0.695556,0.033004,0.757271,0.649747,0.980926,0.74474,0.0779273,0.922359,0.250317,0.573705,0.950667,0.606923,0.566931,0.139907,0.794376,0.273747,0.0928564,0.316339,0.340246,0.327054,0.314765,0.272775,0.0017603,0.554999,0.387327,0.226603,0.694446,0.595872,0.58701,0.244768,0.204036,0.735155,0.48415,0.07372,0.714754,0.521327,0.769356,0.271037,0.83397,0.508597,0.770179,0.958931,0.42598,0.0148122,0.39154,0.715073,0.963499,0.973867,0.657445,0.815247,0.0877696,0.888063,0.72028,0.929474,0.646009,0.129271,0.118211,0.0174459,0.104526,0.0416339,0.527939,0.428874,0.913033,0.0482808,0.423253,0.860503,0.956818,0.777485,0.806003,0.702893,0.562408,0.896358,0.357857,0.305358,0.985232,0.323435,0.645295,0.760211,0.817928,0.914137,0.578949,0.32455,0.860025,0.53519,0.370414,0.284139,0.0935132,0.237798,0.750082,0.173294,0.879041,0.524481,0.443896,0.854514,0.918039,0.767816,0.525695,0.283401,0.478868,0.567663,0.684734,0.51993,0.561091,0.241613,0.136713,0.616458,0.96082,0.439071,0.360797,0.645465,0.923831,0.994799,0.911934,0.871429,0.183169,0.992463,0.290888,0.535253,0.427496,0.909353,0.596647,0.551981,9.20296e-05,0.770898,0.859751,0.501528,0.751943,0.210366,0.403668,0.420578,0.922172,0.734173,0.116265,0.312298,0.526039,0.0633265,0.195069,0.693945,0.234356,0.242904,0.88015,0.899341,0.512862,0.360142,0.494309,0.952999,0.588919,0.333849,0.0333062,0.204593,0.694043,0.438884,0.0419141,0.0503763,0.237692,0.388274,0.601376,0.62032,0.95613,0.461713,0.941787,0.800254,0.897135,0.115284,0.238616,0.590003,0.456452,0.282148,0.133079,0.127021,0.27424,0.21815,0.0289446,0.217436,0.874537,0.825361,0.75205,0.430755,0.164213,0.474849,0.768547,0.814024,0.724578,0.663064,0.959723,0.42989,0.124855,0.768804,0.215938,0.0490546,0.974769,0.228502,0.92126,0.608014,0.358494,0.846397,0.186324,0.164792,0.641265,0.133476,0.0986359,0.62647,0.710829,0.229772,0.891353,0.261169,0.307447,0.837456,0.58123,0.319614,0.434314,0.316829,0.504904,0.935668,0.411576,0.029366,0.336837,0.648768,0.926842,0.144443,0.920519,0.665363,0.0564283,0.946228,0.567896,0.647293,0.0740237,0.607399,0.184667,0.207159,0.778411,0.612645,0.920286,0.491768,0.753686,0.482557,0.106668,0.357714,0.247076,0.949175,0.986644,0.485403,0.215623,0.651735,0.163712,0.108736,0.0155966,0.432052,0.667587,0.649515,0.880933,0.215654,0.481291,0.907145,0.247624,0.277396,0.368261,0.0254648,0.0369881,0.0670843,0.00317377,0.951062,0.634628,0.903887,0.150287,0.174192,0.430306,0.253477,0.279302,0.535696,0.00493664,0.842875,0.642183,0.900041,0.931008,0.228211,0.396308,0.926166,0.576844,0.311973,0.131493,0.948291,0.977947,0.504103,0.398583,0.991893,0.344177,0.214643,0.969999,0.686106,0.167678,0.366981,0.603885,0.228841,0.923798,0.97314,0.58515,0.678417,0.493152,0.031436,0.119455,0.0944071,0.821635,0.296085,0.558158,0.264947,0.226474,0.42055,0.278408,0.273437,0.741927,0.481673,0.556041,0.820881,0.964515,0.187285,0.560763,0.074289,0.128741,0.951676,0.828985,0.20057,0.88935,0.409957,0.669146,0.547641,0.813053,0.940104,0.850652,0.612527,0.546783,0.189731,0.0878903,0.369461,0.97995,0.448902,0.0426079,0.568343,0.652778,0.668148,0.235999,0.428095,0.102549,0.567554,0.867119,0.421995,0.577404,0.556109,0.901958,0.449332,0.225166,0.0808672,0.0085479,0.131622,0.628806,0.391699,0.112597,0.989733,0.299185,0.431911,0.179931,0.650993,0.464946,0.554289,0.412471,0.973613,0.263564,0.703605,0.370236,0.0608728,0.84966,0.224061,0.484723,0.677732,0.522362,0.813723,0.09531,0.217997,0.230423,0.978724,0.508014,0.433678,0.288136,0.176674,0.122626,0.00264394,0.751856,0.73317,0.334953,0.88425,0.180234,0.792799,0.600833,0.28602,0.731071,0.0435239,0.510965,0.364182,0.513234,0.253093,0.835973,0.727474,0.645998,0.784335,0.364968,0.645545,0.603063,0.637188,0.968175,0.596508,0.592501,0.154386,0.989346,0.345962,0.409014,0.0567139,0.886383,0.725352,0.930015,0.912636,0.304142,0.782202,0.0028674,0.538115,0.868388,0.607654,0.814412,0.264067,0.914727,0.785723,0.828698,0.3295,0.929973,0.078419,0.724233,0.50056,0.0503898,0.757614,0.257477,0.483537,0.0695971,0.42611,0.998771,0.677965,0.887722,0.402985,0.940898,0.52804,0.808604,0.818703,0.650517,0.244003,0.219634,0.248231,0.158945,0.86225,0.382672,0.408652,0.992849,0.437971,0.261758,0.938271,0.957792,0.795616,0.53437,0.398854,0.388761,0.496193,0.947723,0.615699,0.891221,0.566524,0.781272,0.242814,0.573966,0.382966,0.954645,0.227948,0.999612,0.0312589,0.191976,0.481159,0.638291,0.447811,0.721491,0.743076,0.782487,0.280807,0.69969,0.228567,0.372334,0.43804,0.74353,0.212142,0.559727,0.595906,0.696612,0.239335,0.0488915,0.419922,0.31106,0.949431,0.588413,0.224263,0.755012,0.165989,0.600816,0.558923,0.737768,0.98112,0.376036,0.277616,0.28502,0.120952,0.0409203,0.766039,0.265845,0.693943,0.211199,0.607173,0.615807,0.518246,0.0750239,0.564699,0.248152,0.989023,0.926243,0.843857,0.624623,0.758528,0.978324,0.112029,0.547914,0.966264,0.901535,0.202124,0.792161,0.94777,0.675578,0.415175,0.947973,0.55851,0.707247,0.320976,0.510015,0.515048,0.947515,0.550486,0.0242509,0.230671,0.331657,0.842026,0.784096,0.55761,0.489782,0.888888,0.0792231,0.447836,0.307211,0.771275,0.103916,0.675146,0.051391,0.0496194,0.859071,0.37345,0.676494,0.22513,0.754522,0.54304,0.7229,0.926569,0.507451,0.608224,0.659008,0.451711,0.758161,0.737827,0.590507,0.315165,0.846894,0.0317227,0.1223,0.651391,0.676924,0.946073,0.92283,0.695214,0.102073,0.684579,0.0235382,0.982784,0.643205,0.657679,0.0822031,0.315044,0.670315,0.492732,0.0834277,0.0952175,0.760014,0.111137,0.389368,0.966723,0.0607488,0.472672,0.037401,0.00805908,0.420213,0.0951506,0.23631,0.236336,0.675189,0.686635,0.786974,0.913813,0.847555,0.264951,0.478469,0.794777,0.603544,0.341935,0.730925,0.518767,0.0693629,0.375826,0.945419,0.899437,0.896335,0.310782,0.404968,0.330742,0.578166,0.53157,0.198542,0.307889,0.61392,0.255334,0.872633,0.920805,0.916794,0.227473,0.115245,0.253422,0.959738,0.455806,0.425981,0.216688,0.308664,0.694706,0.506061,0.656664,0.383235,0.662628,0.515463,0.794672,0.434946,0.618338,0.480869,0.0748399,0.665309,0.763545,0.16708,0.868701,0.337023,0.539572,0.310031,0.435312,0.897979,0.263973,0.644524,0.883618,0.879415,0.363153,0.384562,0.88379,0.677958,0.456471,0.157797,0.874018,0.659887,0.770911,0.0203392,0.968698,0.136265,0.092932,0.805943,0.27515,0.481643,0.218961,0.359345,0.574371,0.616398,0.0630112,0.518908,0.192414,0.569121,0.370726,0.503637,0.275278,0.59465,0.556936,0.397539,0.061058,0.190597,0.0734483,0.884218,0.420883,0.863948,0.367158,0.868198,0.854839,0.168758,0.207803,0.866543,0.893046,0.293165,0.528938,0.54025,0.762709,0.562528,0.415657,0.270008,0.135655,0.555725,0.803394,0.233849,0.996192,0.630989,0.177276,0.459707,0.732771,0.460314,0.647554,0.586349,0.992292,0.0227038,0.576392,0.836497,0.761728,0.494096,0.751077,0.453694,0.712155,0.903178,0.100212,0.89031,0.116188,0.612904,0.639524,0.0866867,0.186627,0.71278,0.00786573,0.956549,0.324537,0.985074,0.290371,0.978055,0.00939929,0.151877,0.00784081,0.673858,0.0575722,0.885207,0.399456,0.70303,0.641174,0.291024,0.201241,0.806772,0.700227,0.0674096,0.394467,0.237487,0.169481,0.602283,0.669238,0.293302,0.324155,0.923193,0.903457,0.137506,0.40548,0.671993,0.441327,0.176298,0.600588,0.442485,0.682775,0.796015,0.731036,0.73724,0.996652,0.580476,0.908558,0.565029,0.110229,0.0586188,0.212556,0.124071,0.546757,0.422417,0.403317,0.880321,0.893975,0.126902,0.0418299,0.874875,0.553105,0.563717,0.786425,0.31813,0.214049,0.121258,0.0703573,0.318994,0.766801,0.0615351,0.402336,0.0784824,0.119263,0.633672,0.561099,0.401011,0.631045,0.437873,0.484652,0.479616,0.117016,0.951966,0.724889,0.225277,0.567038,0.984666,0.575347,0.555575,0.790405,0.216631,0.244941,0.978475,0.482944,0.311184,0.942721,0.0415255,0.530318,0.272604,0.329383,0.0201235,0.828191,0.082926,0.201039,0.88365,0.37512,0.133577,0.376971,0.817373,0.10322,0.632894,0.369992,0.385655,0.338594,0.953843,0.776076,0.0844128,0.150142,0.627169,0.430733,0.64548,0.511565,0.686108,0.584973,0.0022257,0.24818,0.708853,0.136491,0.639687,0.233114,0.424678,0.368072,0.709655,0.226002,0.0157598,0.687392,0.216222,0.102578,0.0237566,0.22167,0.259126,0.354144,0.568626,0.0448013,0.391883,0.0493617,0.0245476,0.937125,0.635847,0.314132,0.804965,0.555452,0.787038,0.987867,0.692828,0.469761,0.0992069,0.0565484,0.764578,0.531546,0.207178,0.263597,0.889806,0.844159,0.626031,0.604395,0.359253,0.324284,0.65645,0.489471,|0.124572,0.426027,0.466116,0.652802,0.207989,0.962503,0.764668,0.988501,0.362557,0.523595,0.381623,0.651149,0.079351,0.578273,0.496365,0.685974,0.42061,0.247251,0.165723,0.283634,0.497795,0.0193115,0.226766,0.273072,0.314808,0.125095,0.964671,0.737369,0.88622,0.897534,0.701797,0.554575,0.0964364,0.395018,0.419817,0.329029,0.292398,0.30557,0.997768,0.716213,0.848215,0.282271,0.902846,0.523902,0.038419,0.326005,0.544518,0.42897,0.73062,0.741751,0.242221,0.7384,0.895006,0.97716,0.158406,0.798568,0.0176795,0.202928,0.996762,0.0553792,0.66478,0.252284,0.791482,0.215333,0.0426312,0.603129,0.736777,0.760721,0.287827,0.633904,0.832217,0.545037,0.608895,0.416347,0.594032,0.0081653,0.196931,0.970234,0.823019,0.678151,0.0302135,0.259888,0.373135,0.414646,0.589036,0.392263,0.958085,0.745625,0.364,0.690195,0.618915,0.73364,0.477035,0.0934136,0.391011,0.845155,0.682399,0.339458,0.0384642,0.191848,0.733045,0.527194,0.333985,0.425204,0.038895,0.659099,0.310015,0.055321,0.84625,0.241022,0.553286,0.608198,0.93203,0.569339,0.331941,0.877268,0.119427,0.930495,0.733913,0.699856,0.0765716,0.258244,0.923198,0.678709,0.00127435,0.426439,0.892467,0.853252,0.15242,0.829447,0.780496,0.0125121,0.103864,0.962432,0.673583,0.303484,0.32788,0.319044,0.5887,0.439997,0.644243,0.456138,0.229938,0.664864,0.774956,0.283399,0.983814,0.204456,0.503739,0.426147,0.399604,0.0533636,0.238349,0.129736,0.713917,0.831021,0.922109,0.227731,0.00725949,0.497894,0.200298,0.726217,0.639747,0.243706,0.996249,0.595591,0.230668,0.755499,0.502503,0.713823,0.311864,0.524423,0.842734,0.756003,0.428139,0.80778,0.509018,0.309824,0.0888628,0.274089,0.330384,0.901992,0.141007,0.19388,0.704522,0.6794,0.874621,0.992638,0.299117,0.598368,0.0842535,0.338659,0.308751,0.917772,0.314046,0.69694,0.517914,0.492547,0.0635064,0.941585,0.311693,0.153283,0.392033,0.140903,0.77438,0.017457,0.717599,0.586431,0.51421,0.541104,0.147864,0.598144,0.858009,0.820347,0.854693,0.780708,0.451522,0.0941169,0.624069,0.19285,0.29519,0.660642,0.604799,0.727886,0.648849,0.493723,0.815717,0.192971,0.623269,0.924119,0.898415,0.963535,0.482523,0.485639,0.910046,0.836151,0.898334,0.300858,0.209665,0.23001,0.621335,0.414758,0.683903,0.887866,0.211681,0.0734404,0.627833,0.436676,0.214153,0.586726,0.0102456,0.0637314,0.205803,0.939111,0.525015,0.107422,0.451149,0.137362,0.992729,0.12203,0.495664,0.744418,0.473486,0.464772,0.756505,0.898349,0.499872,0.89941,0.881139,0.979188,0.877243,0.225052,0.147703,0.13878,0.933431,0.225208,0.952363,0.282159,0.422683,0.297066,0.111904,0.0361965,0.577354,0.432747,0.290444,0.684044,0.755318,0.879483,0.928346,0.666781,0.965573,0.826555,0.461472,0.157838,0.367118,0.335495,0.155232,0.589976,0.301133,0.101033,0.774298,0.292732,0.944724,0.274936,0.067306,0.594234,0.699122,0.464462,0.768764,0.118145,0.691996,0.846583,0.74351,0.947946,0.541675,0.243984,0.526796,0.315758,0.355935,0.755912,0.583698,0.851071,0.436219,0.132328,0.0910454,0.565518,0.85692,0.682033,0.469571,0.652751,0.924231,0.472351,0.934711,0.653852,0.874717,0.708606,0.26382,0.154515,0.695791,0.16626,0.129997,0.649339,0.757236,0.438436,0.952781,0.321145,0.773906,0.184676,0.279035,0.0178365,0.258083,0.274913,0.584357,0.116848,0.518125,0.895996,0.651996,0.81788,0.0665653,0.178686,0.713038,0.0715573,0.842098,0.401693,0.881537,0.896242,0.945563,0.627835,0.198523,0.121888,0.396202,0.0238543,0.370082,0.0782678,0.568307,0.80796,0.998193,0.450923,0.488946,0.633201,0.179262,0.763886,0.639867,0.144188,0.0576217,0.618684,0.498817,0.205049,0.176413,0.326841,0.678,0.126416,0.893027,0.337898,0.229059,0.987715,0.106525,0.51796,0.278537,0.745631,0.209009,0.384915,0.261978,0.731527,0.788665,0.399287,0.579413,0.939529,0.218196,0.261689,0.984788,0.00619835,0.842369,0.36439,0.181642,0.949812,0.980208,0.690235,0.72812,0.722128,0.0278137,0.869961,0.144376,0.147726,0.217577,0.929739,0.202375,0.694615,0.804056,0.528748,0.645505,0.808678,0.952135,0.778241,0.676939,0.0999511,0.596441,0.145029,0.939665,0.391994,0.676968,0.127047,0.107976,0.865932,0.405778,0.406605,0.110204,0.113721,0.238283,0.205525,0.0830439,0.864946,0.969488,0.277379,0.868138,0.108674,0.78161,0.780861,0.211656,0.983851,0.237326,0.400154,0.164285,0.388271,0.722076,0.712911,0.89683,0.0742315,0.473196,0.588727,0.999381,0.90174,0.362505,0.783837,0.825526,0.902346,0.986411,0.636424,0.36996,0.577414,0.265999,0.0688951,0.0255941,0.694158,0.56752,0.304496,0.990745,0.310676,0.193089,0.449643,0.740827,0.661442,0.3356,0.075896,0.144169,0.291975,0.369977,0.0293894,0.655633,0.229576,0.431715,0.164362,0.553425,0.531215,0.341561,0.143478,0.0603,0.135459,0.638567,0.461718,0.146441,0.0539082,0.72523,0.598221,0.681132,0.996313,0.894657,0.180261,0.0603571,0.719399,0.87504,0.95134,0.790073,0.245278,0.242976,0.137724,0.403962,0.799029,0.800657,0.259113,0.21342,0.716192,0.144403,0.772847,0.294636,0.195703,0.0298774,0.151769,0.20031,0.584274,0.327811,0.748146,0.740559,0.247079,0.501041,0.588643,0.289544,0.494423,0.095972,0.746984,0.00865382,0.103045,0.983744,0.737992,0.585925,0.300385,0.00989324,0.0989433,0.644576,0.159915,0.298177,0.3274,0.640014,0.720754,0.532911,0.5555,0.0955034,0.515755,0.341708,0.187629,0.96107,0.00164115,0.874346,0.689529,0.172253,0.309999,0.868859,0.66796,0.138704,0.622528,0.467551,0.478691,0.0565999,0.040561,0.914561,0.429389,0.785465,0.516217,0.83361,0.15915,0.149518,0.744303,0.661264,0.164604,0.537916,0.309859,0.0375754,0.563188,0.442001,0.21398,0.73863,0.728553,0.709701,0.194934,0.241564,0.485079,0.432263,0.482408,0.116409,0.478815,0.497808,0.165411,0.398599,0.642866,0.352385,0.18507,0.187155,0.218674,0.566949,0.173976,0.803186,0.731048,0.00548911,0.508507,0.454853,0.423032,0.422929,0.434522,0.691401,0.683029,0.78073,0.997411,0.421685,0.997808,0.750022,0.572462,0.0184261,0.894243,0.764747,0.102638,0.996001,0.585843,0.269528,0.761034,0.57581,0.883866,0.923686,0.916834,0.1602,0.32922,0.156853,0.640768,0.0702402,0.805606,0.89701,0.859798,0.111326,0.867455,0.783939,0.768672,0.777352,0.633516,0.161507,0.150678,0.846395,0.597528,0.540103,0.902015,0.0165185,0.454166,0.0919142,0.311427,0.0307913,0.165298,0.462041,0.408341,0.987361,0.960431,0.275461,0.308272,0.896139,0.470769,0.976381,0.948204,0.418815,0.478551,0.705658,0.804849,0.334377,0.202493,0.694231,0.112215,0.499862,0.754424,0.613293,0.620843,0.403882,0.717088,0.12123,0.545447,0.621106,0.860327,0.690964,0.611659,0.942442,0.890431,0.0529879,0.797822,0.395101,0.593706,0.018349,0.0422875,0.925843,0.566208,0.449036,0.429734,0.974132,0.323503,0.121225,0.432224,0.568307,0.0391148,0.993417,0.810437,0.445044,0.202541,0.53713,0.82537,0.0753501,0.90254,0.382314,0.567706,0.160712,0.0829273,0.339291,0.372513,0.715895,0.238772,0.442124,0.512598,0.89235,0.740883,0.584066,0.0552183,0.12573,0.556284,0.500676,0.472883,0.942526,0.0504463,0.169264,0.354762,0.297234,0.592073,0.0620279,0.549874,0.448178,0.990315,0.549043,0.972461,0.592404,0.000902414,0.493696,0.153937,0.0318299,0.740599,0.736037,0.535796,0.711868,0.432176,0.370106,0.587994,0.912593,0.930856,0.730173,0.963025,0.160553,0.335194,0.391736,0.900907,0.779388,0.394872,0.798312,0.521949,0.047833,0.533374,0.706856,0.532818,0.710882,0.811583,0.32779,0.376657,0.398255,0.855304,0.779824,0.502315,0.332138,0.116226,0.0952284,0.0455586,0.395774,0.994736,0.63763,0.683284,0.641279,0.694887,0.971564,0.819725,0.752245,0.0275705,0.260083,0.0729322,0.240968,0.391541,0.0656087,0.530394,0.433322,0.208521,0.369577,0.0439957,0.505431,0.102893,0.0323038,0.495884,0.205348,0.256591,0.454613,0.0641093,0.550575,0.0128412,0.338699,0.0556105,0.414433,0.194767,0.354172,0.720972,0.611967,0.747226,0.934419,0.652067,0.733141,0.333035,0.000461042,0.949309,0.0820955,0.347295,0.789664,0.653471,0.936,0.596007,0.227217,0.0438275,0.32384,0.198441,0.390325,0.409671,0.224829,0.653992,0.444614,0.595468,0.0221329,0.972833,0.854493,0.180111,0.235505,0.452161,0.638838,0.453968,0.652701,0.476615,0.0534942,0.556483,0.185651,0.321986,0.888418,0.657716,0.712071,0.694652,0.477279,0.590773,0.80551,0.754562,0.65858,0.344219,0.0714906,0.879669,0.120382,0.568288,0.261307,0.049432,0.748488,0.398186,0.490645,0.108865,0.372857,0.777209,0.91293,0.354816,0.676707,0.146264,0.901493,0.833172,0.49924,0.769358,0.0299901,0.862911,0.368604,0.21665,0.553992,0.374933,0.670696,0.214809,0.491428,0.56989,0.25305,0.613519,0.697897,0.421336,0.591364,0.298633,0.492446,0.112057,0.14314,0.443329,0.0772406,0.401414,0.105073,0.756122,0.61084,0.819274,0.657018,0.376189,0.107909,0.913779,0.763009,0.508907,0.344107,0.0225625,0.482864,0.0140268,0.626505,0.441962,0.0436267,0.751753,0.520081,0.356919,0.803321,0.712288,0.770123,0.149702,0.452778,0.780168,0.759981,0.760092,0.654221,0.837934,0.502745,0.95267,0.787741,0.586227,0.965989,0.847562,0.154026,0.25225,0.508989,0.33726,0.994907,0.731684,0.691411,0.911709,0.739998,0.264538,0.315164,0.290118,0.526606,0.488772,0.547174,0.711378,0.900725,0.369828,0.212204,0.614937,0.0661697,0.804803,0.809605,0.0298766,0.519982,0.320681,0.563889,0.824224,0.0690483,0.205978,0.337003,0.547681,0.607918,0.532894,0.630892,0.0247764,0.138928,0.538855,|0.138813,0.383892,0.789176,0.709825,0.752243,0.867487,0.577004,0.0581757,0.0445433,0.405249,0.0369317,0.14767,0.540362,0.521583,0.90278,0.401558,0.521523,0.983015,0.857331,0.710515,0.979673,0.293856,0.396836,0.0500953,0.87251,0.341774,0.706094,0.368126,0.997662,0.189919,0.305121,0.625877,0.678935,0.275695,0.786043,0.672447,0.0897744,0.95336,0.941423,0.779719,0.79215,0.910878,0.0414335,0.0104339,0.678592,0.356656,0.797659,0.845084,0.0570874,0.970698,0.165738,0.163241,0.454318,0.875833,0.76926,0.39037,0.256191,0.153023,0.554367,0.22474,0.719461,0.986151,0.763204,0.576108,0.11186,0.416184,0.335547,0.620196,0.887909,0.0127071,0.688953,0.739444,0.0725459,0.580905,0.789874,0.695093,0.518946,0.631287,0.0560917,0.543342,0.586844,0.996202,0.880165,0.458836,0.660076,0.929164,0.628873,0.153021,0.717238,0.201081,0.888949,0.697538,0.870306,0.732715,0.602883,0.732964,0.4753,0.275916,0.764114,0.0723807,0.205685,0.606774,0.648889,0.976421,0.603236,0.878819,0.82805,0.448513,0.507605,0.914587,0.167359,0.517303,0.248771,0.217363,0.899364,0.298667,0.512317,0.543136,0.21964,0.397478,0.342744,0.292045,0.746383,0.218877,0.710812,0.638523,0.540232,0.58749,0.7879,0.821441,0.665539,0.998347,0.0291828,0.490303,0.832293,0.645433,0.833832,0.508339,0.485093,0.366091,0.220014,0.167644,0.14509,0.589661,0.81467,0.685437,0.851648,0.863837,0.725277,0.0171538,0.929844,0.624462,0.888598,0.293972,0.609821,0.610362,0.945833,0.662572,0.820195,0.497019,0.0911362,0.014743,0.747343,0.370464,0.448092,0.475769,0.453443,0.50163,0.0341869,0.615994,0.281567,0.0494058,0.481664,0.630062,0.743877,0.822356,0.944006,0.812005,0.337252,0.646795,0.538085,0.15625,0.774433,0.297307,0.162791,0.937673,0.500007,0.623994,0.327626,0.487407,0.513035,0.0435842,0.312709,0.663438,0.53213,0.726119,0.252761,0.0602216,0.699753,0.971988,0.565043,0.876528,0.577956,0.0957881,0.0180119,0.834221,0.416034,0.934997,0.790104,0.060317,0.85067,0.996745,0.977823,0.787012,0.523462,0.199811,0.422829,0.70563,0.842963,0.585439,0.129493,0.9811,0.592119,0.667821,0.899904,0.746884,0.440279,0.205153,0.885262,0.460285,0.555338,0.266721,0.869744,0.443138,0.616392,0.390381,0.609806,0.655533,0.208568,0.369296,0.547564,0.498227,0.477018,0.0262175,0.482787,0.164241,0.950084,0.112076,0.988019,0.96292,0.816511,0.746786,0.907124,0.893566,0.443111,0.51653,0.170805,0.634765,0.485821,0.338541,0.321471,0.0185065,0.104034,0.0580276,0.291642,0.742965,0.0416189,0.673388,0.950588,0.823841,0.553659,0.783059,0.233692,0.124265,0.558488,0.875781,0.34299,0.831025,0.741927,0.224779,0.160411,0.10388,0.543649,0.0916862,0.940351,0.469625,0.26985,0.602697,0.382044,0.46647,0.801604,0.150791,0.238098,0.0852402,0.622405,0.570237,0.276115,0.977339,0.297688,0.280418,0.529841,0.744849,0.678629,0.170816,0.560168,0.072407,0.103454,0.623852,0.880458,0.654881,0.634721,0.290576,0.926569,0.141945,0.186096,0.657389,0.112425,0.199901,0.449608,0.676574,0.642838,0.0210646,0.306303,0.288368,0.285427,0.165797,0.189389,0.275012,0.152549,0.3341,0.0236814,0.00987214,0.370758,0.0509122,0.987523,0.0177814,0.72048,0.471064,0.29331,0.911601,0.216106,0.536155,0.111771,0.453016,0.40383,0.958792,0.335458,0.153104,0.0190201,0.346936,0.13496,0.542259,0.557055,0.501258,0.441176,0.487544,0.614978,0.222397,0.138771,0.403564,0.075134,0.844201,0.645674,0.265101,0.113912,0.0905779,0.320507,0.943397,0.284676,0.912862,0.564508,0.269121,0.238686,0.114319,0.868011,0.186042,0.347356,0.295957,0.860353,0.0366471,0.265337,0.853962,0.442296,0.303238,0.38384,0.840275,0.412778,0.143724,0.102627,0.580288,0.276191,0.941902,0.578006,0.340542,0.996813,0.847117,0.284677,0.225473,0.196794,0.488074,0.937405,0.137508,0.312336,0.371452,0.788077,0.531285,0.0903938,0.553769,0.139632,0.79214,0.350118,0.684653,0.303694,0.135705,0.490837,0.119021,0.393308,0.890308,0.687256,0.442441,0.458759,0.0852639,0.0564691,0.993834,0.575396,0.656516,0.182987,0.433058,0.253044,0.561209,0.337684,0.613702,0.510835,0.936746,0.586427,0.0809319,0.124688,0.480649,0.184249,0.804769,0.111065,0.194811,0.613863,0.341758,0.273524,0.335176,0.186799,0.35569,0.192106,0.17078,0.445387,0.294174,0.862179,0.273797,0.232243,0.00927716,0.974959,0.973438,0.491089,0.635028,0.0253736,0.105475,0.170022,0.633503,0.362746,0.477299,0.800972,0.0947567,0.92676,0.777027,0.306246,0.446156,0.905515,0.930642,0.238831,0.33887,0.168918,0.619438,0.872805,0.860721,0.821166,0.841571,0.958166,0.274408,0.434692,0.971514,0.405079,0.83753,0.660592,0.705876,0.887476,0.0512136,0.372801,0.748878,0.750488,0.695208,0.554541,0.625515,0.113267,0.966318,0.13585,0.365352,0.276388,0.688097,0.141047,0.424497,0.611757,0.263344,0.647179,0.325594,0.975009,0.503854,0.154513,0.178777,0.466493,0.868447,0.625266,0.108218,0.584678,0.120817,0.234001,0.528879,0.689581,0.575133,0.522662,0.430282,0.597443,0.900494,0.287898,0.683797,0.200861,0.506025,0.301573,0.241694,0.712584,0.894109,0.475434,0.225968,0.591945,0.905849,0.240961,0.831362,0.481109,0.482482,0.949245,0.115734,0.10262,0.282583,0.0788587,0.60045,0.279944,0.831236,0.297719,0.255365,0.491159,0.20957,0.0954795,0.191053,0.558919,0.635964,0.331697,0.655711,0.716588,0.451738,0.733081,0.0943956,0.572862,0.452936,0.78917,0.248097,0.834585,0.247875,0.575659,0.888316,0.0781,0.30962,0.900077,0.0862479,0.399571,0.408404,0.342375,0.322172,0.796923,0.957117,0.454061,0.226122,0.0801855,0.451075,0.232569,0.911575,0.629226,0.353264,0.741266,0.0884135,0.823692,0.074401,0.180017,0.635327,0.420403,0.537355,0.259637,0.0684265,0.234541,0.0201967,0.140953,0.554141,0.144723,0.123827,0.0757338,0.18238,0.303318,0.766942,0.573492,0.0747175,0.932378,0.366432,0.941604,0.483834,0.532271,0.801873,0.78561,0.413541,0.403041,0.434627,0.228583,0.562883,0.313953,0.789815,0.793385,0.45763,0.350273,0.718403,0.251097,0.532834,0.665872,0.915465,0.693816,0.282469,0.127088,0.576835,0.0796633,0.204489,0.62142,0.546236,0.737472,0.852277,0.488938,0.613516,0.504264,0.575075,0.580864,0.329911,0.759493,0.435596,0.577077,0.47295,0.261167,0.368485,0.556495,0.157408,0.784603,0.53924,0.638139,0.827004,0.152883,0.748544,0.482597,0.182816,0.208945,0.613675,0.945771,0.906768,0.0216182,0.122012,0.463339,0.21691,0.511106,0.0799564,0.272567,0.443589,0.459102,0.604251,0.364144,0.809575,0.842247,0.984744,0.487671,0.379223,0.112887,0.867797,0.778084,0.743796,0.371115,0.706494,0.333318,0.0850272,0.68549,0.670509,0.899027,0.815438,0.748899,0.620674,0.422431,0.477942,0.163701,0.0750305,0.622321,0.895215,0.858131,0.942072,0.959808,0.879381,0.522998,0.893967,0.174751,0.418275,0.767223,0.494134,0.211377,0.508689,0.0187787,0.185709,0.368908,0.343412,0.407426,0.0488095,0.211607,0.679283,0.453745,0.774884,0.911194,0.945686,0.0832021,0.60251,0.287704,0.891507,0.913454,0.680484,0.932003,0.534685,0.263846,0.610611,0.899295,0.684962,0.77183,0.86072,0.977695,0.499509,0.376056,0.714645,0.0966135,0.299196,0.848469,0.186907,0.337295,0.036629,0.918524,0.928676,0.138876,0.157516,0.885535,0.732472,0.656923,0.541872,0.247239,0.824657,0.626456,0.293222,0.38524,0.525106,0.875807,0.275712,0.515428,0.474027,0.938077,0.0732265,0.235091,0.0538362,0.586496,0.141246,0.856415,0.214052,0.372226,0.195786,0.760045,0.995504,0.278552,0.516256,0.334304,0.0248967,0.346938,0.798597,0.688263,0.560661,0.266836,0.554178,0.0566622,0.759443,0.39682,0.646965,0.568164,0.406549,0.375149,0.391749,0.264604,0.845955,0.150356,0.628849,0.411402,0.404341,0.518623,0.638878,0.901282,0.421859,0.609367,0.93606,0.952685,0.562069,0.144099,0.773076,0.656944,0.899291,0.229814,0.828598,0.393739,0.197107,0.833018,0.230731,0.509636,0.733432,0.109281,0.976145,0.525434,0.964147,0.732495,0.066458,0.0829387,0.41204,0.407241,0.0208969,0.612862,0.171752,0.96855,0.794917,0.19121,0.00578666,0.314945,0.141606,0.776213,0.951543,0.578534,0.718008,0.759779,0.191107,0.851683,0.817054,0.448314,0.168646,0.768111,0.898892,0.993344,0.749466,0.374893,0.272807,0.118653,0.624929,0.0254178,0.205849,0.221092,0.684592,0.763193,0.569138,0.142641,0.544407,0.0904609,0.330425,0.754689,0.475329,0.751075,0.78895,0.743717,0.533805,0.313472,0.769671,0.723117,0.9483,0.516502,0.187317,0.521843,0.788178,0.279801,0.620117,0.707609,0.679433,0.254439,0.587303,0.0105638,0.599938,0.622821,0.659959,0.0569322,0.549382,0.00349098,0.25147,0.377521,0.9617,0.110423,0.584634,0.813228,0.6393,0.497457,0.793944,0.533046,0.628499,0.420835,0.458299,0.16802,0.780778,0.0266603,0.515921,0.320241,0.654281,0.462014,0.634094,0.686501,0.940917,0.362656,0.726844,0.0535769,0.257527,0.295716,0.441526,0.382782,0.335799,0.492526,0.18507,0.0758287,0.749766,0.867334,0.912584,0.463765,0.319894,0.737049,0.0905334,0.381793,0.427975,0.407924,0.665954,0.660777,0.61143,0.990858,0.00302899,0.338785,0.554388,0.854141,0.606085,0.5642,0.961936,0.537623,0.704991,0.282457,0.826387,0.416768,0.381152,0.919172,0.382057,0.637599,0.912691,0.420758,0.719018,0.716419,0.273322,0.512216,0.576423,0.310891,0.0832825,0.851281,0.7729,0.104853,0.0513162,0.9461,0.331124,0.13683,0.285448,0.529693,0.0262778,0.394464,0.726571,0.577065,0.39676,0.675181,0.0915728,0.00918174,0.0164129,0.616732,0.198409,0.764462,0.76687,0.593781,0.865844,|0.46924,0.0431716,0.976847,0.262906,0.996163,0.232439,0.72358,0.621628,0.69745,0.12277,0.39569,0.130832,0.561806,0.689557,0.210656,0.254662,0.0599126,0.714935,0.847605,0.936583,0.595804,0.478606,0.53663,0.869822,0.182234,0.0293152,0.0314103,0.168439,0.713076,0.445956,0.736272,0.151492,0.797952,0.211267,0.880543,0.861059,0.951594,0.435115,0.784116,0.256492,0.934344,0.834117,0.558466,0.86264,0.441693,0.931175,0.932015,0.364144,0.432882,0.557315,0.189332,0.0269113,0.0915014,0.43146,0.619077,0.203012,0.351536,0.670272,0.975205,0.607649,0.15461,0.950697,0.682107,0.205677,0.449525,0.486296,0.659158,0.227224,0.615007,0.0699309,0.779054,0.816596,0.78134,0.627031,0.361979,0.74106,0.556814,0.759232,0.702802,0.501274,0.867195,0.0774,0.893166,0.732407,0.945118,0.033605,0.426823,0.976373,0.291333,0.921953,0.196048,0.513144,0.801891,0.435012,0.950095,0.341825,0.756924,0.915409,0.190378,0.0915554,0.507898,0.442951,0.0740896,0.428997,0.801063,0.772331,0.524235,0.753139,0.0717837,0.401884,0.431586,0.485675,0.133403,0.338373,0.286195,0.959623,0.663453,0.0883272,0.338834,0.432021,0.663117,0.350777,0.000884473,0.515866,0.588938,0.833779,0.474911,0.893639,0.146974,0.29538,0.616813,0.852681,0.514547,0.941052,0.996494,0.60292,0.738864,0.35436,0.627408,0.29744,0.0267438,0.545666,0.298373,0.173483,0.731109,0.0529218,0.74557,0.663565,0.916756,0.288744,0.647442,0.782643,0.290069,0.716637,0.394415,0.455604,0.461809,0.350582,0.521089,0.0358121,0.876553,0.749502,0.408728,0.672504,0.8215,0.0925584,0.447349,0.00566256,0.67527,0.290395,0.919846,0.101172,0.358531,0.0624,0.689601,0.018472,0.80322,0.928374,0.00600576,0.844524,0.0573221,0.289664,0.881421,0.709307,0.414886,0.656582,0.720538,0.838496,0.367924,0.513738,0.0964015,0.320987,0.0328269,0.519915,0.960141,0.902111,0.24742,0.0826334,0.145617,0.0948276,0.729232,0.520456,0.810566,0.1394,0.865077,0.494204,0.562656,0.82373,0.741339,0.210146,0.218604,0.509895,0.815446,0.345647,0.866645,0.97726,0.956271,0.147169,0.245018,0.475265,0.11331,0.33642,0.997022,0.754803,0.861295,0.419064,0.00116158,0.483418,0.0828679,0.738212,0.422095,0.498611,0.0808969,0.346487,0.789325,0.0616882,0.778484,0.12929,0.699802,0.0349143,0.965845,0.780539,0.649355,0.924878,0.837584,0.0793229,0.0301005,0.108786,0.972025,0.467072,0.358806,0.465055,0.789575,0.131453,0.818229,0.049024,0.199904,0.50588,0.649057,0.340708,0.258266,0.00630558,0.706234,0.461042,0.912279,0.566096,0.250186,0.692988,0.646451,0.826599,0.519573,0.56991,0.619189,0.817908,0.911038,0.219062,0.622424,0.316949,0.643368,0.165404,0.125067,0.884673,0.0186394,0.900503,0.195336,0.184206,0.267443,0.249292,0.0076915,0.17989,0.689122,0.840505,0.833598,0.187612,0.656648,0.859457,0.702486,0.830918,0.0636632,0.389659,0.660411,0.192331,0.797675,0.449741,0.708847,0.804098,0.460717,0.499414,0.949786,0.118616,0.631666,0.336611,0.847817,0.967138,0.282284,0.0198907,0.342984,0.897,0.600538,0.549904,0.615488,0.794761,0.077217,0.3789,0.209327,0.019195,0.411842,0.553074,0.843477,0.151299,0.532061,0.737079,0.0311021,0.472607,0.760913,0.928217,0.932652,0.218677,0.546814,0.144049,0.949428,0.927567,0.36906,0.203116,0.0695783,0.268592,0.000730693,0.481438,0.782035,0.246559,0.708548,0.586297,0.0324404,0.72834,0.528106,0.406925,0.935999,0.881672,0.170103,0.631542,0.552139,0.415107,0.0436807,0.460206,0.536598,0.566034,0.426533,0.794415,0.695869,0.654333,0.920632,0.198171,0.866524,0.823449,0.617099,0.404298,0.227663,0.295959,0.377574,0.996093,0.259554,0.58089,0.880537,0.941949,0.562452,0.115205,0.772485,0.463902,0.409419,0.100592,0.407797,0.433798,0.453993,0.559804,0.179774,0.104792,0.646087,0.935117,0.238675,0.237618,0.0126866,0.735,0.798129,0.33234,0.883726,0.47389,0.280472,0.859067,0.0404859,0.864111,0.487679,0.63131,0.503573,0.503817,0.0504417,0.185965,0.101126,0.533476,0.00744402,0.572314,0.590491,0.980514,0.032942,0.528204,0.6548,0.793527,0.104782,0.579382,0.574988,0.949583,0.393287,0.506525,0.88351,0.498207,0.0920431,0.372034,0.62213,0.00239003,0.547573,0.016373,0.113978,0.623407,0.532073,0.472278,0.783696,0.61746,0.952641,0.578543,0.104069,0.688003,0.518553,0.822185,0.360488,0.384785,0.730988,0.62901,0.120024,0.0392948,0.69142,0.298074,0.951159,0.998507,0.339891,0.793569,0.465989,0.750321,0.617427,0.0572398,0.597968,0.143224,0.261041,0.205655,0.982677,0.0355042,0.045716,0.673052,0.681449,0.0806279,0.568247,0.0913537,0.826676,0.0702948,0.716793,0.518513,0.611271,0.604812,0.909788,0.536682,0.231353,0.702108,0.0997537,0.765614,0.650645,0.53357,0.881514,0.407318,0.600347,0.916241,0.536044,0.890108,0.377596,0.660819,0.176056,0.966048,0.567219,0.625031,0.410588,0.355104,0.625821,0.615339,0.946806,0.463823,0.782513,0.201265,0.273574,0.705861,0.386261,0.716294,0.81688,0.339725,0.863134,0.948648,0.360678,0.932939,0.234835,0.927536,0.513117,0.902528,0.736359,0.468572,0.0221414,0.143732,0.743971,0.414896,0.425746,0.300641,0.436112,0.523775,0.491831,0.365949,0.173339,0.623764,0.131164,0.0303514,0.226362,0.646933,0.435388,0.37073,0.109023,0.406043,0.790048,0.15319,0.635859,0.206605,0.0369127,0.0189059,0.52813,0.887319,0.0566944,0.105657,0.193959,0.982412,0.672536,0.353772,0.955678,0.837034,0.337024,0.321723,0.421469,0.609887,0.830269,0.260476,0.594723,0.659744,0.90837,0.147949,0.277034,0.972288,0.391321,0.550931,0.232727,0.541927,0.378615,0.354466,0.640091,0.0503358,0.229287,0.523107,0.688915,0.615097,0.555504,0.383299,0.200977,0.717478,0.642011,0.00641936,0.709038,0.811067,0.0310816,0.563739,0.13051,0.378984,0.252521,0.374403,0.364674,0.841699,0.362891,0.746149,0.195825,0.841606,0.258686,0.82421,0.658872,0.888387,0.311435,0.246331,0.295838,0.427943,0.522427,0.120492,0.63705,0.643466,0.967427,0.992229,0.5696,0.573395,0.869338,0.521837,0.789618,0.167011,0.430544,0.341327,0.392151,0.662499,0.260599,0.330996,0.755083,0.725933,0.787444,0.547717,0.996154,0.989763,0.785055,0.791194,0.198093,0.798915,0.913015,0.950968,0.876616,0.017252,0.0587091,0.145354,0.506917,0.139709,0.921423,0.877572,0.0484403,0.583263,0.380095,0.0568587,0.830107,0.266864,0.603144,0.185818,0.349656,0.183144,0.224357,0.330873,0.860144,0.999336,0.553888,0.348803,0.0587916,0.0189492,0.604988,0.282304,0.0956956,0.344761,0.767587,0.0814524,0.863265,0.327,0.415141,0.224791,0.873522,0.577514,0.565358,0.918147,0.519375,0.208539,0.227089,0.012054,0.737757,0.616703,0.12525,0.738272,0.621551,0.336172,0.952223,0.101245,0.961253,0.528138,0.649838,0.675068,0.737373,0.242302,0.912569,0.313253,0.71517,0.345629,0.299666,0.097163,0.991351,0.876717,0.0427211,0.932903,0.741713,0.860137,0.473939,0.998412,0.556696,0.750641,0.305784,0.321889,0.689882,0.0670742,0.724543,0.916022,0.805084,0.559775,0.886482,0.488153,0.459129,0.682677,0.386778,0.708282,0.699709,0.799826,0.283375,0.822789,0.580177,0.703323,0.49518,0.323838,0.793147,0.0247253,0.210478,0.990287,0.33397,0.616331,0.516086,0.224924,0.362204,0.350702,0.108638,0.169527,0.736507,0.343233,0.819405,0.893447,0.55196,0.105887,0.817874,0.209392,0.225651,0.464645,0.663458,0.311312,0.423852,0.404602,0.963959,0.490906,0.812196,0.936145,0.509021,0.414231,0.366894,0.409363,0.13616,0.26296,0.889557,0.568251,0.4662,0.308385,0.999666,0.155475,0.736716,0.986492,0.766541,0.850634,0.631797,0.132123,0.986427,0.6604,0.806978,0.579661,0.532772,0.832785,0.383037,0.81861,0.648326,0.921098,0.296974,0.757006,0.329328,0.31659,0.482514,0.0979657,0.919044,0.628268,0.0402621,0.765462,0.536058,0.442643,0.991722,0.907658,0.197927,0.685616,0.909574,0.990939,0.263413,0.446606,0.671911,0.134123,0.951111,0.0677502,0.734727,0.737253,0.939444,0.469503,0.732456,0.844251,0.243734,0.889778,0.80789,0.215394,0.471841,0.523561,0.39378,0.309333,0.682528,0.51734,0.858669,0.222309,0.0988612,0.860699,0.435315,0.401183,0.0794519,0.44532,0.56116,0.189751,0.449751,0.362519,0.799972,0.901101,0.783319,0.933474,0.577831,0.0576667,0.829549,0.670528,0.202273,0.110879,0.042329,0.502319,0.696057,0.65399,0.162523,0.174821,0.775803,0.279724,0.720353,0.100976,0.791189,0.413146,0.731857,0.651957,0.555775,0.223233,0.127333,0.157626,0.722176,0.403915,0.29134,0.789667,0.169215,0.703739,0.037221,0.933871,0.938268,0.142474,0.908171,0.25737,0.612068,0.907498,0.780307,0.676333,0.436081,0.591247,0.271834,0.00386518,0.676721,0.785605,0.416045,0.771897,0.479576,0.522043,0.815939,0.712524,0.106095,0.566879,0.499624,0.248041,0.690058,0.197703,0.558378,0.262535,0.829679,0.143569,0.176384,0.753445,0.868329,0.686976,0.960529,0.343662,0.915002,0.580443,0.648865,0.712351,0.432981,0.0992329,0.462685,0.554307,0.986193,0.227488,0.734524,0.192187,0.824447,0.727462,0.825548,0.897206,0.818796,0.830251,0.301266,0.6692,0.866043,0.358752,0.246821,0.859072,0.651218,0.362394,0.147766,0.382372,0.766823,0.12914,0.744053,0.101497,0.350093,0.865366,0.0324227,0.674042,0.872011,0.451749,0.961422,0.686247,0.030857,0.801939,0.811272,0.512033,0.820383,0.62114,0.195493,0.645603,0.064208,0.72817,0.176736,0.140741,0.816316,0.705389,0.653729,0.833458,0.495277,0.0289821,0.871493,0.204805,0.380218,0.72675,0.914889,0.163961,0.854511,0.568183,0.561492,0.547674,0.284388,0.853698,0.392316,0.497067,0.0695658,0.77541,|0.132514,0.905549,0.0506455,0.602697,0.438842,0.917912,0.858013,0.86538,0.335542,0.771194,0.250929,0.206087,0.938454,0.646027,0.368027,0.438514,0.196584,0.336671,0.0111732,0.767907,0.585526,0.0506669,0.813253,0.812832,0.0958974,0.422054,0.537626,0.339647,0.187624,0.616593,0.350553,0.334327,0.901705,0.350909,0.873671,0.246882,0.0054906,0.276249,0.726891,0.621148,0.681235,0.58492,0.690848,0.580359,0.912456,0.616285,0.826352,0.528568,0.0304686,0.00877631,0.371277,0.529596,0.725732,0.0580246,0.668678,0.971906,0.408338,0.407093,0.573982,0.907053,0.671678,0.635032,0.461612,0.604004,0.183083,0.626062,0.232163,0.569161,0.574897,0.869976,0.396835,0.430363,0.223479,0.559674,0.960655,0.966213,0.527085,0.688038,0.0429876,0.421147,0.561016,0.201094,0.488728,0.13928,0.865781,0.96285,0.406133,0.975944,0.749291,0.349666,0.142493,0.499087,0.140094,0.486215,0.811726,0.586239,0.074522,0.90404,0.49431,0.450503,0.556204,0.427786,0.557221,0.121672,0.931598,0.937797,0.1395,0.169932,0.338545,0.655838,0.947712,0.394331,0.343007,0.888606,0.688984,0.982529,0.983004,0.0697243,0.563495,0.851474,0.833187,0.735444,0.194673,0.0226236,0.706358,0.296232,0.40743,0.772136,0.673648,0.442186,0.973736,0.898532,0.159919,0.245084,0.705162,0.632783,0.532399,0.281164,0.237513,0.154872,0.11879,0.543209,0.348177,0.560921,0.368018,0.258775,0.663172,0.637967,0.0740905,0.0805884,0.3822,0.12697,0.669141,0.890656,0.185061,0.882505,0.0972526,0.787598,0.793545,0.590836,0.424723,0.194738,0.267468,0.457104,0.608445,0.0664096,0.645506,0.751344,0.291404,0.59427,0.174146,0.555425,0.97709,0.200702,0.231159,0.075475,0.619974,0.858376,0.13887,0.455892,0.87794,0.179704,0.377181,0.317592,0.389201,0.158104,0.634369,0.641562,0.138138,0.448846,0.329712,0.395207,0.014121,0.826845,0.24865,0.00506794,0.779139,0.0629328,0.26676,0.103001,0.687408,0.864636,0.243542,0.849052,0.832798,0.68666,0.294118,0.744198,0.338926,0.593244,0.45743,0.788108,0.464341,0.00258565,0.822908,0.869073,0.428714,0.569744,0.835952,0.316901,0.14111,0.557956,0.0901647,0.984966,0.179668,0.236163,0.361014,0.0577027,0.543516,0.141548,0.80184,0.109111,0.209661,0.889875,0.200179,0.544059,0.756762,0.231711,0.211218,0.718677,0.775937,0.682366,0.780061,0.672948,0.660276,0.900758,0.159849,0.591714,0.535309,0.984629,0.51553,0.506209,0.985123,0.476923,0.300173,0.690654,0.432829,0.940354,0.44427,0.479535,0.466699,0.241329,0.198482,0.253901,0.305385,0.153492,0.73018,0.674907,0.918952,0.603914,0.412377,0.700515,0.059001,0.387666,0.826586,0.585321,0.63257,0.0679825,0.67718,0.604913,0.951437,0.696003,0.350716,0.947348,0.377914,0.410084,0.319478,0.809083,0.908612,0.906269,0.948734,0.648939,0.25693,0.296788,0.672215,0.155996,0.0531279,0.182882,0.573946,0.496725,0.346332,0.99668,0.234755,0.0697516,0.951846,0.77843,0.256052,0.805562,0.232891,0.59627,0.145306,0.957472,0.231699,0.261012,0.502971,0.544039,0.147311,0.548791,0.869215,0.938709,0.0095951,0.391413,0.314905,0.370155,0.892039,0.597044,0.240572,0.904808,0.0446795,0.380507,0.711051,0.0696509,0.434566,0.661149,0.358678,0.977957,0.558044,0.272359,0.136496,0.237125,0.499117,0.542563,0.956218,0.731456,0.441249,0.45048,0.671336,0.217147,0.0720263,0.168732,0.142823,0.63677,0.894076,0.454202,0.381432,0.57158,0.370402,0.894187,0.899461,0.826062,0.356845,0.524847,0.554657,0.353613,0.277582,0.587017,0.551716,0.39845,0.604906,0.226802,0.00171965,0.0299596,0.59396,0.383211,0.652231,0.413047,0.402721,0.799331,0.924668,0.661766,0.777621,0.919101,0.0475684,0.0209212,0.153911,0.690924,0.604106,0.291848,0.997126,0.282152,0.789385,0.694878,0.694163,0.322285,0.769847,0.638254,0.59572,0.478471,0.0766822,0.527924,0.936716,0.429929,0.400998,0.937169,0.877632,0.352615,0.0592973,0.554892,0.319753,0.540991,0.874846,0.486563,0.297737,0.781754,0.34725,0.478011,0.784821,0.578722,0.958917,0.508797,0.121791,0.776507,0.204917,0.886384,0.0636307,0.164727,0.755129,0.919229,0.916247,0.744411,0.168996,0.578036,0.646396,0.778457,0.124747,0.132945,0.526991,0.183979,0.962807,0.55165,0.294172,0.666113,0.567889,0.600527,0.714943,0.291069,0.335209,0.61568,0.0908391,0.523243,0.493572,0.223321,0.517671,0.381884,0.493453,0.785061,0.545951,0.206233,0.261395,0.288033,0.858927,0.130403,0.509664,0.587385,0.00939071,0.831915,0.130698,0.767043,0.358515,0.989655,0.535913,0.69448,0.419603,0.924153,0.748759,0.203225,0.98118,0.859559,0.746308,0.690941,0.798296,0.724591,0.0729913,0.712422,0.0885732,0.136416,0.707001,0.437604,0.69194,0.310418,0.910229,0.226415,0.846695,0.878917,0.434766,0.891774,0.712842,0.75316,0.939676,0.351522,0.130083,0.714338,0.918905,0.903029,0.989907,0.534877,0.397962,0.87818,0.229034,0.102746,0.638773,0.201249,0.522847,0.706993,0.372372,0.83835,0.83385,0.500542,0.794071,0.759936,0.69926,0.874738,0.683001,0.593288,0.122595,0.470429,0.911176,0.365124,0.694177,0.613839,0.465151,0.262766,0.0739866,0.323324,0.449276,0.317121,0.872079,0.48497,0.568814,0.386075,0.275791,0.963815,0.17378,0.493482,0.13028,0.955571,0.589971,0.946397,0.650026,0.361451,0.425441,0.805721,0.411868,0.576775,0.00385046,0.272294,0.408694,0.103652,0.94453,0.835719,0.244051,0.796876,0.42858,0.798388,0.159392,0.924253,0.966426,0.656073,0.282834,0.226989,0.686472,0.406493,0.399878,0.698827,0.0352377,0.489843,0.769877,0.30476,0.940173,0.946558,0.954457,0.31684,0.0847113,0.497529,0.493577,0.969731,0.576052,0.0972756,0.560806,0.00359994,0.731906,0.875416,0.980111,0.0320182,0.623811,0.221626,0.896585,0.551742,0.594481,0.901579,0.669715,0.847254,0.524055,0.231106,0.986932,0.679434,0.145274,0.785891,0.739279,0.24468,0.934088,0.16163,0.933707,0.746077,0.744413,0.3566,0.524036,0.880178,0.518928,0.321664,0.0173324,0.596893,0.113335,0.870817,0.57959,0.0563364,0.767342,0.274555,0.379666,0.855903,0.845411,0.892884,0.885751,0.491113,0.0688339,0.486886,0.829005,0.249247,0.185247,0.42718,0.639081,0.713173,0.0846603,0.6582,0.88427,0.895282,0.769751,0.271034,0.192211,0.731173,0.0498644,0.825155,0.481924,0.491794,0.322014,0.621382,0.0687334,0.140975,0.597076,0.636388,0.854503,0.597395,0.732492,0.0821236,0.658302,0.639513,0.0249718,0.320557,0.24854,0.192422,0.935191,0.387966,0.046095,0.403028,0.501175,0.01824,0.342074,0.537075,0.356773,0.309884,0.774225,0.360817,0.133608,0.0500126,0.550684,0.582726,0.213976,0.276356,0.0901911,0.363219,0.620019,0.33028,0.222307,0.371688,0.402881,0.873666,0.243235,0.909705,0.0880916,0.00808239,0.667622,0.815043,0.713171,0.605716,0.334936,0.366003,0.90058,0.223197,0.620258,0.450303,0.596789,0.893688,0.51378,0.744972,0.140044,0.568531,0.519497,0.169983,0.79917,0.803749,0.249257,0.0818104,0.140893,0.361896,0.55958,0.431489,0.771073,0.139615,0.637399,0.306004,0.985607,0.262236,0.800773,0.730436,0.0667063,0.614853,0.879342,0.39581,0.444629,0.337661,0.455998,0.28367,0.950137,0.771716,0.199025,0.432159,0.469618,0.115007,0.0845894,0.208651,0.0428522,0.203118,0.0477905,0.372265,0.552406,0.361744,0.110147,0.401083,0.336698,0.460646,0.588778,0.828142,0.910775,0.000369549,0.880821,0.162103,0.396205,0.639156,0.584333,0.982628,0.358292,0.0292302,0.328104,0.565638,0.113321,0.611752,0.599262,0.373951,0.173963,0.73013,0.0391285,0.970564,0.72614,0.0461684,0.62198,0.799044,0.445977,0.264026,0.931437,0.211334,0.542046,0.511074,0.553476,0.185698,0.0186647,0.747715,0.339074,0.47805,0.8527,0.865301,0.888366,0.45678,0.215475,0.718133,0.181592,0.23218,0.0593953,0.726439,0.82787,0.375834,0.0484151,0.838947,0.697193,0.305496,0.89039,0.377161,0.925524,0.588087,0.646132,0.627587,0.61806,0.407414,0.179661,0.577554,0.105845,0.318666,0.424769,0.356344,0.581491,0.395486,0.241867,0.479893,0.115625,0.785782,0.674798,0.854507,0.555844,0.581825,0.794193,0.298231,0.0777236,0.93159,0.78034,0.979212,0.997349,0.0550589,0.691569,0.935717,0.720174,0.673343,0.342696,0.856639,0.92436,0.60259,0.794585,0.893297,0.269696,0.698683,0.654038,0.265802,0.652479,0.725468,0.126186,0.947403,0.609895,0.324945,0.643554,0.863169,0.815077,0.625526,0.063707,0.557336,0.735915,0.310813,0.598116,0.426232,0.890136,0.83399,0.291134,0.959588,0.0650588,0.978662,0.636923,0.415981,0.152259,0.736893,0.491113,0.470099,0.0486317,0.650387,0.136084,0.963208,0.86635,0.69544,0.67563,0.986021,0.0313623,0.701989,0.366632,0.788117,0.42789,0.865663,0.660976,0.170342,0.574162,0.952571,0.598215,0.752121,0.770937,0.471098,0.195955,0.39774,0.398231,0.166431,0.167931,0.572313,0.348491,0.333027,0.232306,0.194978,0.0781853,0.721175,0.87068,0.192493,0.847834,0.252087,0.463866,0.57655,0.574957,0.453278,0.0612875,0.760312,0.850039,0.154249,0.374617,0.932792,0.355529,0.396598,0.289357,0.290537,0.507247,0.662107,0.968409,0.422249,0.174101,0.695837,0.319861,0.0830981,0.604403,0.308719,0.560642,0.802786,0.784416,0.209686,0.630345,0.843101,0.673284,0.99624,0.0757561,0.91937,0.433583,0.219428,0.809757,0.933767,0.119715,0.769834,0.358728,0.179731,0.486093,0.888239,0.194795,0.236851,0.47783,0.550058,0.734419,0.0477753,0.35992,0.877917,0.510341,0.162142,0.314827,0.16778,0.178144,0.760261,0.9068,0.163873,0.665993,0.444835,0.294572,0.0368887,0.369297,0.402642,0.369512,0.744497,0.830224,0.456462,0.637432,0.570561,0.0475348,0.441477,|0.884194,0.743781,0.996139,0.150487,0.209632,0.0659428,0.626259,0.070759,0.501134,0.453014,0.706385,0.517752,0.0461615,0.668951,0.423299,0.610414,0.968903,0.593531,0.0308712,0.618539,0.839107,0.74027,0.0334913,0.770734,0.109468,0.0856225,0.168164,0.195976,0.750821,0.893131,0.765694,0.345614,0.755848,0.864239,0.464792,0.953157,0.270519,0.932849,0.122016,0.74855,0.276721,0.875841,0.186494,0.644119,0.18269,0.447297,0.396602,0.750958,0.855952,0.0690216,0.00267285,0.602092,0.344828,0.689497,0.129056,0.308889,0.969585,0.198194,0.750147,0.625216,0.0995597,0.240753,0.844915,0.85082,0.208996,0.274706,0.0199854,0.27608,0.219629,0.373886,0.806727,0.0515531,0.312484,0.684535,0.437381,0.365749,0.0355133,0.52075,0.297859,0.04099,0.833933,0.335826,0.226973,0.988279,0.592587,0.893691,0.778202,0.81328,0.254155,0.151832,0.730396,0.496353,0.391249,0.12655,0.746329,0.0220064,0.579678,0.403042,0.322076,0.562085,0.432287,0.980097,0.702872,0.0184751,0.539574,0.421864,0.802533,0.817904,0.427511,0.22334,0.660024,0.761134,0.76931,0.220345,0.0874919,0.944328,0.368136,0.214017,0.939489,0.989741,0.826268,0.422599,0.528546,0.636578,0.190321,0.158022,0.576322,0.843834,0.549404,0.406744,0.0412476,0.214674,0.463758,0.3968,0.488367,0.765794,0.0118715,0.46014,0.180744,0.459036,0.278744,0.851804,0.931878,0.911492,0.306654,0.207488,0.10145,0.908016,0.0476075,0.567573,0.618218,0.345662,0.923974,0.454225,0.579647,0.720029,0.64684,0.486881,0.220224,0.760729,0.361501,0.208925,0.0518166,0.91972,0.310214,0.255739,0.421854,0.0431753,0.316333,0.485809,0.243377,0.770001,0.392867,0.285858,0.977565,0.742641,0.701138,0.976912,0.119231,0.601321,0.116628,0.928674,0.428068,0.819369,0.389298,0.160759,0.994391,0.812533,0.17109,0.901155,0.607873,0.775,0.701721,0.203006,0.538392,0.725719,0.165536,0.394863,0.692638,0.431705,0.879411,0.520641,0.425407,0.200076,0.130738,0.613047,0.919863,0.988864,0.6139,0.72223,0.600075,0.865536,0.414333,0.619834,0.137621,0.240906,0.312904,0.871478,0.867774,0.62948,0.599936,0.464876,0.888325,0.241372,0.249221,0.954792,0.283752,0.728957,0.859951,0.515041,0.614667,0.85365,0.147662,0.00398558,0.21998,0.218118,0.563367,0.355167,0.478956,0.89887,0.773787,0.335584,0.913616,0.683987,0.39486,0.138393,0.93672,0.878165,0.760681,0.400395,0.549977,0.0899746,0.835118,0.300694,0.572699,0.86332,0.144137,0.398107,0.177507,0.118652,0.227314,0.319359,0.26266,0.449826,0.382742,0.957781,0.970547,0.536364,0.665794,0.470891,0.922722,0.729266,0.587047,0.0407254,0.849342,0.223567,0.132034,0.107591,0.40665,0.215288,0.407761,0.759337,0.94611,0.124371,0.10761,0.133552,0.703265,0.590117,0.624052,0.630497,0.499724,0.870062,0.802372,0.102078,0.724826,0.673914,0.654497,0.350398,0.580341,0.801837,0.857698,0.429825,0.0270694,0.631338,0.771449,0.58433,0.821072,0.0823181,0.557511,0.406009,0.578358,0.189157,0.593615,0.875298,0.0480672,0.0741272,0.758532,0.439263,0.132658,0.838129,0.816959,0.880059,0.792671,0.146527,0.396883,0.657271,0.932369,0.963941,0.436134,0.572234,0.916613,0.93647,0.823449,0.127023,0.52832,0.988265,0.323249,0.565994,0.933719,0.897753,0.756024,0.463216,0.774043,0.861735,0.348552,0.632498,0.550437,0.982408,0.826812,0.907089,0.0165814,0.870488,0.310691,0.638309,0.180034,0.170302,0.667156,0.589916,0.495452,0.344989,0.972345,0.809407,0.585923,0.677322,0.957347,0.512798,0.764575,0.0489916,0.772462,0.768955,0.850452,0.127337,0.512338,0.867681,0.252499,0.130266,0.176276,0.590747,0.559743,0.625164,0.26459,0.706949,0.21442,0.805244,0.0619598,0.170137,0.0515905,0.0503542,0.524789,0.872586,0.838487,0.375462,0.225093,0.988462,0.817538,0.121412,0.14273,0.118728,0.864098,0.279112,0.784689,0.807964,0.0380182,0.193419,0.918409,0.43696,0.83869,0.0369232,0.456408,0.183684,0.715947,0.38377,0.378593,0.397759,0.247049,0.916422,0.318747,0.682666,0.182139,0.777729,0.37737,0.795652,0.516831,0.415313,0.502554,0.648669,0.531861,0.0573905,0.0617664,0.616567,0.816521,0.583405,0.12481,0.179882,0.962274,0.881644,0.0741999,0.136862,0.183349,0.258343,0.0385121,0.634604,0.763084,0.777773,0.27329,0.532346,0.541012,0.411881,0.104693,0.391701,0.859542,0.793532,0.727223,0.601569,0.140617,0.0114495,0.0281075,0.574204,0.027192,0.688496,0.400442,0.65927,0.393369,0.463346,0.68078,0.616817,0.100761,0.00458044,0.639557,0.0216676,0.941161,0.941073,0.461899,0.642142,0.328956,0.0383551,0.150361,0.95318,0.664669,0.346994,0.916408,0.683952,0.978009,0.11777,0.394501,0.413113,0.258443,0.344106,0.0897742,0.593403,0.168991,0.0420492,0.295164,0.784875,0.818417,0.811078,0.774347,0.279702,0.647987,0.334977,0.512583,0.919952,0.941812,0.996836,0.95342,0.242242,0.478405,0.020633,0.851122,0.690347,0.383384,0.676682,0.669243,0.311743,0.692567,0.567571,0.43038,0.832815,0.23133,0.121369,0.813975,0.631692,0.740403,0.484001,0.407899,0.749601,0.660255,0.663997,0.91912,0.473087,0.598286,0.383282,0.57768,0.927324,0.688602,0.249276,0.365309,0.7862,0.814318,0.473325,0.99329,0.2648,0.958984,0.50701,0.487105,0.121733,0.628695,0.360519,0.337003,0.488296,0.315347,0.694971,0.79456,0.657464,0.902192,0.117599,0.0354574,0.773732,0.564276,0.432498,0.273082,0.815847,0.111261,0.928089,0.850492,0.495241,0.205122,0.749186,0.0809418,0.071346,0.506665,0.821881,0.318944,0.844718,0.44478,0.909615,0.840384,0.574452,0.490007,0.658115,0.160972,0.78545,0.474996,0.856654,0.660564,0.346854,0.0802247,0.910227,0.778007,0.284605,0.372493,0.756133,0.11235,0.295397,0.152585,0.656145,0.841516,0.662349,0.302194,0.0115998,0.982576,0.0218567,0.658842,0.946744,0.740797,0.623955,0.922527,0.26169,0.815918,0.524739,0.0788422,0.719355,0.610014,0.735942,0.0121311,0.630246,0.194613,0.966641,0.976342,0.704938,0.342226,0.130174,0.477265,0.589975,0.415786,0.45756,0.938696,0.872866,0.969975,0.692829,0.850246,0.640035,0.944355,0.400911,0.147034,0.493822,0.260574,0.94381,0.339032,0.91339,0.904855,0.688595,0.320128,0.288285,0.439035,0.646076,0.258917,0.444891,0.663952,0.315229,0.947126,0.677131,0.568685,0.24223,0.865794,0.734801,0.162511,0.668292,0.0913368,0.256187,0.197377,0.569669,0.45989,0.586904,0.659889,0.244238,0.270617,0.90612,0.164097,0.451189,0.197022,0.642911,0.253246,0.897265,0.755404,0.0556087,0.540804,0.0217057,0.411427,0.607234,0.488567,0.594537,0.533239,0.717085,0.0427535,0.0519991,0.279677,0.128498,0.404488,0.0789814,0.184621,0.176984,0.517876,0.564634,0.472641,0.731012,0.907959,0.188542,0.736075,0.930383,0.431133,0.0695541,0.565898,0.168075,0.67951,0.271439,0.861341,0.157421,0.344754,0.894235,0.136931,0.809248,0.69607,0.620663,0.97037,0.886327,0.0389908,0.311186,0.885846,0.170478,0.0134838,0.746755,0.881651,0.712198,0.892832,0.612123,0.304447,0.162425,0.157038,0.104842,0.452563,0.603509,0.851903,0.900834,0.160726,0.294638,0.947046,0.152674,0.00874001,0.272805,0.47999,0.318327,0.00521415,0.0222067,0.471794,0.603877,0.140843,0.404407,0.466851,0.093509,0.405638,0.0501052,0.567829,0.331787,0.346634,0.426215,0.931313,0.607786,0.103541,0.875651,0.470012,0.449644,0.2493,0.755625,0.910134,0.355597,0.790339,0.542449,0.973161,0.681188,0.423563,0.582479,0.211829,0.472773,0.857868,0.165796,0.310039,0.0860459,0.617298,0.571816,0.137771,0.661456,0.424864,0.550958,0.304904,0.0902884,0.246719,0.485403,0.893024,0.680434,0.695336,0.727412,0.364455,0.968103,0.361925,0.647627,0.0525149,0.228001,0.00141472,0.0945669,0.942008,0.33849,0.787371,0.428925,0.990254,0.985342,0.719724,0.370722,0.00159842,0.202447,0.858765,0.0404431,0.707168,0.968477,0.849189,0.91328,0.911634,0.0997885,0.156072,0.276616,0.937024,0.21654,0.558879,0.18382,0.976345,0.130538,0.139834,0.82482,0.105025,0.703795,0.529572,0.177349,0.00674695,0.989907,0.648991,0.362582,0.20001,0.137445,0.237646,0.630583,0.337131,0.0225469,0.295938,0.572917,0.988143,0.496656,0.812556,0.881475,0.700963,0.1473,0.249134,0.0766276,0.963962,0.00415587,0.0771556,0.954219,0.366791,0.0150626,0.639848,0.796657,0.894638,0.734337,0.559972,0.82594,0.00474906,0.928652,0.462741,0.00433791,0.956179,0.653815,0.88015,0.395911,0.925518,0.910049,0.715529,0.753869,0.734436,0.65473,0.915624,0.52308,0.338065,0.422011,0.736175,0.0819969,0.98648,0.405181,0.416135,0.522663,0.920523,0.713798,0.67164,0.413034,0.132687,0.103886,0.360923,0.148535,0.315711,0.0883734,0.120811,0.404646,0.386313,0.0481709,0.385283,0.807528,0.274146,0.766035,0.75795,0.31575,0.336737,0.328463,0.268435,0.918879,0.180538,0.739333,0.474362,0.696649,0.303743,0.963688,0.900519,0.126624,0.0468426,0.680351,0.965594,0.99199,0.00565952,0.203549,0.598881,0.638009,0.182822,0.0627497,0.0776798,0.0962276,0.304294,0.120727,0.7988,0.246279,0.611278,0.153187,0.270844,0.978805,0.462619,0.747008,0.0450553,0.674162,0.626638,0.250339,0.258286,0.98336,0.379103,0.654432,0.226355,0.887538,0.93017,0.0493363,0.576451,0.80802,0.712869,0.413589,0.0113693,0.250843,0.684712,0.240745,0.997583,0.435773,0.0659066,0.722803,0.772385,0.103932,0.975568,0.747309,0.813598,0.754421,0.808881,0.278654,0.0402843,0.574307,0.808417,0.263819,0.261966,0.203124,0.449808,0.477326,0.779764,0.872186,0.587855,0.661647,0.694825,0.441712,0.530253,0.413845,0.468316,0.957333,0.342877,0.71387,0.934499,0.740366,0.268756,0.469453,0.240902,0.425045,|0.948757,0.922902,0.478172,0.517995,0.508006,0.00848657,0.209522,0.967816,0.538487,0.0453574,0.42034,0.967995,0.812744,0.231885,0.353973,0.591736,0.512955,0.249167,0.238668,0.505853,0.467024,0.0610277,0.737241,0.759529,0.0022434,0.727879,0.0259852,0.447742,0.0589966,0.607996,0.518764,0.89846,0.0600587,0.0678567,0.333161,0.697014,0.716343,0.0561663,0.920279,0.811771,0.14475,0.334633,0.790773,0.978562,0.561733,0.825779,0.590272,0.661615,0.650446,0.158684,0.126954,0.338005,0.650951,0.97682,0.866813,0.205299,0.934462,0.513521,0.478063,0.195849,0.136908,0.982717,0.667418,0.187221,0.516316,0.169896,0.59747,0.108774,0.585264,0.155041,0.55857,0.771283,0.850261,0.965729,0.98414,0.973454,0.813869,0.479658,0.0470344,0.0497416,0.101583,0.365194,0.668932,0.687717,0.0443749,0.224868,0.278541,0.457202,0.21233,0.265802,0.222421,0.366459,0.616792,0.409732,0.998525,0.562799,0.101132,0.984767,0.272998,0.11049,0.581245,0.0851436,0.0619249,0.315843,0.930851,0.690452,0.187519,0.138516,0.113328,0.00101233,0.260196,0.781669,0.944328,0.974527,0.594207,0.0500534,0.978353,0.560518,0.122853,0.932058,0.691525,0.00672656,0.476627,0.419657,0.1847,0.776503,0.0741571,0.289247,0.0977805,0.951711,0.147157,0.681826,0.526539,0.460196,0.0728724,0.366918,0.639694,0.127765,0.668709,0.161423,0.755869,0.861811,0.66503,0.0140043,0.122369,0.545961,0.977769,0.220767,0.825149,0.523912,0.609511,0.410523,0.952365,0.858499,0.699487,0.259247,0.681148,0.606769,0.251864,0.152657,0.902471,0.230888,0.150105,0.163759,0.830993,0.50942,0.74069,0.0708439,0.156057,0.137431,0.379528,0.849206,0.610004,0.506604,0.446311,0.423483,0.677728,0.557666,0.551243,0.177845,0.854381,0.754735,0.337789,0.662484,0.596584,0.788598,0.280742,0.953463,0.64723,0.829762,0.698063,0.783823,0.447476,0.871213,0.89957,0.177083,0.519488,0.98736,0.00266272,0.839382,0.482525,0.103059,0.0637222,0.378356,0.390044,0.0570739,0.832763,0.7585,0.139084,0.874135,0.386097,0.715188,0.812602,0.395937,0.401589,0.200015,0.792784,0.918824,0.803834,0.0889747,0.53012,0.0483178,0.838558,0.387106,0.304567,0.572298,0.625061,0.22418,0.75402,0.324032,0.362882,0.201977,0.368291,0.747955,0.642881,0.402864,0.331957,0.253014,0.865029,0.975661,0.057734,0.357082,0.765689,0.230121,0.458389,0.0578832,0.487756,0.35958,0.77914,0.294905,0.000139475,0.14608,0.139392,0.129564,0.568904,0.941034,0.356535,0.28288,0.819068,0.374115,0.827296,0.993523,0.897443,0.369037,0.851105,0.341579,0.490948,0.677667,0.600272,0.186923,0.596806,0.243178,0.445615,0.0182683,0.298049,0.293363,0.842265,0.952141,0.591864,0.0845852,0.390182,0.90934,0.258725,0.544096,0.34648,0.57043,0.0174858,0.43887,0.954391,0.924371,0.127568,0.380571,0.741527,0.1979,0.649418,0.511483,0.954827,0.693003,0.0314164,0.123733,0.0326199,0.374915,0.572449,0.271433,0.945504,0.544748,0.49766,0.126641,0.861606,0.94975,0.0678625,0.624058,0.583065,0.454286,0.86288,0.674115,0.802603,0.743658,0.375742,0.0844358,0.619771,0.452642,0.348407,0.553428,0.0202221,0.937984,0.88046,0.635886,0.196081,0.541328,0.865895,0.772324,0.339472,0.831231,0.379306,0.717228,0.981036,0.324307,0.308522,0.200768,0.67943,0.85373,0.85373,0.244992,0.0480608,0.903754,0.243798,0.647802,0.923991,0.391103,0.661226,0.491543,0.262,0.848945,0.0652483,0.257427,0.517384,0.67397,0.0178608,0.101196,0.720152,0.813966,0.732124,0.698063,0.519492,0.83592,0.452924,0.194087,0.318955,0.572971,0.482944,0.2125,0.251691,0.65381,0.278223,0.30204,0.394318,0.1849,0.401413,0.686526,0.315323,0.356209,0.987824,0.222538,0.936451,0.513711,2.08616e-05,0.751773,0.539641,0.143721,0.437617,0.942861,0.523726,0.289603,0.483186,0.690951,0.379321,0.879411,0.478997,0.53639,0.242607,0.340922,0.134155,0.345103,0.230318,0.801277,0.558432,0.839172,0.59734,0.0127293,0.385933,0.96623,0.796207,0.47126,0.00427657,0.907727,0.0600465,0.990336,0.75651,0.52938,0.173604,0.838695,0.73418,0.246891,0.356784,0.765648,0.232798,0.409855,0.554539,0.0401845,0.579522,0.466879,0.0609829,0.600337,0.324883,0.339677,0.03381,0.872389,0.096878,0.311929,0.957165,0.675603,0.752881,0.558118,0.706962,0.765919,0.211323,0.313464,0.207004,0.835837,0.669881,0.557032,0.582475,0.792924,0.277413,0.124147,0.0228985,0.88469,0.317684,0.308135,0.872214,0.624756,0.491973,0.307273,0.23763,0.100439,0.555691,0.693987,0.00936168,0.402196,0.555607,0.951623,0.306894,0.871801,0.0386783,0.355208,0.446948,0.81118,0.597902,0.156723,0.870658,0.853484,0.500581,0.212927,0.55106,0.223495,0.0693576,0.389638,0.860326,0.935951,0.550122,0.325201,0.569049,0.549357,0.63736,0.809721,0.959601,0.807846,0.433785,0.376614,0.206956,0.441466,0.827552,0.132274,0.777485,0.316548,0.226264,0.829058,0.19276,0.0794892,0.3846,0.255731,0.163858,0.0656437,0.596167,0.526132,0.0950719,0.0902969,0.46174,0.0075292,0.286253,0.484601,0.787224,0.530337,0.138161,0.204973,0.681532,0.738452,0.46983,0.771913,0.90152,0.436385,0.0250438,0.785654,0.146161,0.000998735,0.57078,0.199194,0.0850112,0.390519,0.641604,0.188518,0.655134,0.709702,0.45461,0.39914,0.903875,0.862349,0.817046,0.647655,0.101582,0.471979,0.0631858,0.886702,0.92865,0.732921,0.0502095,0.477567,0.563249,0.834859,0.383408,0.548553,0.879076,0.745218,0.869198,0.412715,0.826227,0.315467,0.634234,0.189142,0.486152,0.909658,0.569994,0.545452,0.642567,0.208499,0.915499,0.732032,0.625845,0.549384,0.482251,0.0281361,0.379188,0.375632,0.534415,0.711602,0.614753,0.692749,0.953428,0.403184,0.437755,0.331828,0.82119,0.867826,0.187482,0.865162,0.33145,0.238615,0.541386,0.495108,0.269877,0.857477,0.311922,0.692659,0.0698046,0.02227,0.103024,0.626696,0.285364,0.137361,0.866993,0.0964162,0.113004,0.507249,0.769574,0.0991633,0.100348,0.802199,0.688648,0.992618,0.963566,0.637318,0.0698017,0.269515,0.296406,0.755041,0.383377,0.352268,0.91611,0.251212,0.351888,0.858621,0.832051,0.628168,0.334369,0.218665,0.33084,0.549735,0.0291126,0.906084,0.295489,0.573413,0.155592,0.478874,0.907665,0.931037,0.876538,0.465029,0.35512,0.78222,0.0698292,0.250157,0.559885,0.984816,0.43956,0.695525,0.403416,0.605435,0.138013,0.0867233,0.200418,0.538598,0.883842,0.471491,0.692632,0.505289,0.797211,0.657598,0.726643,0.948491,0.0838477,0.640666,0.903838,0.484364,0.152398,0.265411,0.112297,0.168188,0.2476,0.691921,0.121657,0.00441486,0.946379,0.0835266,0.0570108,0.90324,0.246812,0.829046,0.48693,0.208156,0.321766,0.869972,0.219935,0.65258,0.0144007,0.93801,0.73204,0.948878,0.210721,0.834886,0.457173,0.673245,0.797644,0.742571,0.660522,0.149014,0.208812,0.19235,0.395438,0.135144,0.883685,0.704461,0.290247,0.840318,0.876029,0.490452,0.482802,0.0923917,0.194027,0.392259,0.330257,0.61005,0.882263,0.298808,0.269477,0.798662,0.687232,0.682343,0.399396,0.000191569,0.449389,0.262182,0.917333,0.430407,0.667389,0.466696,0.822554,0.553513,0.569912,0.706006,0.394002,0.109036,0.354406,0.503904,0.708564,0.962583,0.428702,0.54715,0.433306,0.129915,0.703822,0.407153,0.625811,0.547488,0.724019,0.495891,0.456349,0.875483,0.58028,0.38965,0.329609,0.728339,0.245746,0.356297,0.893011,0.908506,0.540948,0.373396,0.529109,0.0188915,0.105287,0.793216,0.572058,0.655194,0.783936,0.448617,0.154361,0.606076,0.356818,0.730573,0.0609579,0.809063,0.000432134,0.152746,0.112467,0.116611,0.636865,0.624429,0.472869,0.193142,0.457648,0.634425,0.54389,0.655528,0.35801,0.459322,0.3678,0.141361,0.123327,0.935832,0.227512,0.0901729,0.834464,0.00400668,0.200939,0.624557,0.860393,0.607008,0.536371,0.085756,0.730447,0.693504,0.92941,0.770118,0.116914,0.398014,0.444317,0.191655,0.0614006,0.57008,0.987395,0.532725,0.337653,0.517669,0.46625,0.248135,0.868572,0.961603,0.709951,0.833962,0.459077,0.242126,0.631619,0.805845,0.2894,0.17946,0.557256,0.591192,0.0516702,0.0585108,0.706273,0.764845,0.72016,0.851499,0.367051,0.36984,0.718751,0.941815,0.72304,0.556244,0.291575,0.15146,0.189741,0.621464,0.0520141,0.483791,0.639595,0.5471,0.599364,0.710291,0.812693,0.470914,0.999301,0.771388,0.156823,0.409132,0.612572,0.881315,0.119812,0.465857,0.398672,0.4396,0.775908,0.912015,0.396229,0.789594,0.321036,0.0956889,0.843892,0.361684,0.424059,0.315999,0.731397,0.751671,0.180456,0.983024,0.688705,0.582636,0.817333,0.198452,0.276785,0.876869,0.048362,0.262234,0.397357,0.590519,0.779935,0.570652,0.319346,0.585027,0.0685545,0.919799,0.312318,0.770572,0.265111,0.937746,0.566987,0.752882,0.818718,0.545106,0.755124,0.77658,0.335469,0.419353,0.00221431,0.216188,0.129392,0.054221,0.737364,0.919539,0.867518,0.651832,0.132064,0.734941,0.794032,0.426996,0.477826,0.633917,0.181644,0.418403,0.99132,0.911806,0.432725,0.627945,0.834844,0.535019,0.0654275,0.596529,0.528503,0.653576,0.555257,0.350258,0.456599,0.0422466,0.234174,0.341621,0.545985,0.0907784,0.756111,0.42454,0.725916,0.280109,0.510457,0.0382908,0.443333,0.80105,0.299712,0.0789872,0.307883,0.544021,0.162491,0.159848,0.169159,0.127973,0.75446,0.558759,0.13958,0.437873,0.542059,0.0369152,0.789179,0.645038,0.0274833,0.54654,0.134438,0.240773,0.788515,0.134104,0.611188,0.530094,0.850707,0.852925,0.924383,0.471449,0.862989,0.779086,0.128617,0.431451,0.603294,0.00279385,0.978507,0.968867,0.503859,0.949513,0.705289,0.28887,0.218674,0.389944,0.103663,0.101429,|0.101513,0.692611,0.20527,0.384956,0.168055,0.63171,0.526578,0.0984598,0.362834,0.589113,0.0565117,0.244961,0.34673,0.633763,0.72023,0.186911,0.811887,0.0237045,0.1197,0.947044,0.94079,0.00487101,0.517557,0.539356,0.109755,0.227632,0.713418,0.877593,0.82338,0.222551,0.980576,0.364008,0.768373,0.00621396,0.677958,0.357991,0.457865,0.209218,0.0211762,0.720665,0.568231,0.199748,0.336847,0.756088,0.409585,0.546322,0.204928,0.388817,0.186449,0.867008,0.333977,0.756447,0.48352,0.0700142,0.696218,0.736696,0.0604115,0.519376,0.95251,0.556561,0.286717,0.357927,0.967914,0.0693282,0.974674,0.942697,0.773968,0.818599,0.118841,0.169789,0.278313,0.0737273,0.979788,0.854353,0.101061,0.646346,0.538689,0.611326,0.513153,0.176419,0.486596,0.209784,0.104292,0.384191,0.511614,0.63613,0.494168,0.62992,0.877506,0.021194,0.248298,0.801361,0.391817,0.604922,0.684877,0.732215,0.77899,0.0578051,0.348137,0.118981,0.761,0.0673989,0.231237,0.911605,0.215589,0.293181,0.952709,0.408116,0.804804,0.226236,0.601766,0.939823,0.652954,0.958863,0.364538,0.615386,0.0170367,0.995201,0.491291,0.443822,0.727533,0.970379,0.821866,0.240582,0.291227,0.153509,0.406717,0.210116,0.421087,0.28465,0.262913,0.207014,0.745068,0.798232,0.24939,0.288917,0.470046,0.143456,0.28348,0.484253,0.235909,0.0509239,0.903977,0.305923,0.815256,0.951747,0.652609,0.960747,0.592536,0.30516,0.295801,0.502222,0.118099,0.0204133,0.727555,0.693983,0.498492,0.88388,0.150015,0.648521,0.91618,0.499013,0.245182,0.776021,0.668871,0.631804,0.567087,0.0726872,0.361221,0.824931,0.987037,0.746427,0.00305927,0.654709,0.321222,0.0057416,0.888998,0.795423,0.650024,0.65496,0.341004,0.71614,0.0342124,0.470802,0.388898,0.862424,0.170471,0.158011,0.705102,0.26647,0.308219,0.882844,0.418293,0.631281,0.182202,0.976813,0.379635,0.125695,0.459493,0.574752,0.114504,0.0582691,0.382279,0.321345,0.925859,0.953209,0.289836,0.285069,0.212451,0.23388,0.0185812,0.561937,0.618597,0.146632,0.649861,0.0217824,0.576655,0.936273,0.623653,0.537488,0.774809,0.138071,0.880022,0.664718,0.64452,0.508393,0.374905,0.88622,0.703834,0.202893,0.222253,0.533749,0.559764,0.902053,0.443622,0.0721795,0.772292,0.0765754,0.645533,0.628713,0.787414,0.120523,0.237356,0.376598,0.0935303,0.422098,0.893098,0.419985,0.807665,0.212301,0.919226,0.469887,0.111977,0.45618,0.379075,0.776692,0.133989,0.0479758,0.244576,0.0211303,0.13079,0.892511,0.274867,0.54772,0.870485,0.412091,0.833044,0.419774,0.0488802,0.256883,0.410829,0.0211821,0.19498,0.128999,0.755757,0.894409,0.712917,0.733422,0.717262,0.00309861,0.891127,0.527615,0.835152,0.985035,0.905008,0.655333,0.595629,0.122557,0.905896,0.154652,0.818127,0.759416,0.127455,0.296178,0.955402,0.788616,0.704664,0.353042,0.302059,0.454254,0.414066,0.964704,0.959235,0.898346,0.714433,0.257832,0.286747,0.143574,0.603375,0.898406,0.807772,0.444721,0.781082,0.0954033,0.480106,0.250961,0.405092,0.222678,0.138385,0.0721385,0.736969,0.198819,0.940714,0.244156,0.279231,0.702891,0.724676,0.0423208,0.840984,0.606142,0.522843,0.896181,0.423861,0.184279,0.586975,0.16991,0.780854,0.818001,0.0793088,0.278445,0.365141,0.0555596,0.196274,0.907566,0.884182,0.648082,0.980168,0.375992,0.153726,0.078781,0.473952,0.3487,0.517898,0.623656,0.476233,0.0935649,0.427927,0.809976,0.88426,0.286566,0.234771,0.300476,0.583335,0.617768,0.210088,0.692661,0.251501,0.996895,0.500851,0.172597,0.617377,0.364256,0.49644,0.664905,0.0523092,0.391789,0.515697,0.53601,0.992442,0.659412,0.0114529,0.473,0.992135,0.434739,0.0639436,0.967949,0.384092,0.469635,0.215907,0.342416,0.000169873,0.495407,0.811082,0.41535,0.184963,0.637812,0.744873,0.122152,0.0913282,0.371084,0.264728,0.270157,0.664155,0.850473,0.538791,0.40381,0.333291,0.811769,0.240603,0.253239,0.0285206,0.781701,0.620683,0.73074,0.184631,0.0498952,0.230461,0.564894,0.514104,0.841639,0.715773,0.806364,0.44722,0.326968,0.163449,0.813242,0.771989,0.795196,0.846271,0.528389,0.594903,0.8456,0.828651,0.956053,0.348694,0.193217,0.891602,0.560638,0.881381,0.736238,0.996884,0.975839,0.619994,0.656648,0.863782,0.997985,0.181914,0.862317,0.798949,0.0667073,0.0547035,0.327845,0.451984,0.170405,0.169032,0.638642,0.106043,0.885662,0.56633,0.627999,0.320989,0.381396,0.178812,0.890502,0.179999,0.164425,0.680528,0.770186,0.229297,0.850983,0.77137,0.0264455,0.506481,0.0513589,0.910079,0.597388,0.645643,0.582629,0.907997,0.256982,0.107088,0.913822,0.838563,0.767657,0.849492,0.878878,0.410525,0.246901,0.187153,0.972492,0.0105473,0.167302,0.81388,0.691397,0.548069,0.556026,0.00685138,0.224216,0.624106,0.303418,0.79792,0.178175,0.0635809,0.512282,0.36833,0.786958,0.116171,0.38978,0.319989,0.61361,0.163094,0.0688881,0.0553972,0.511725,0.667771,0.49797,0.434249,0.455076,0.655385,0.188982,0.276269,0.293336,0.992127,0.91664,0.932122,0.467658,0.748181,0.612528,0.0797547,0.361638,0.118407,0.925085,0.428002,0.857752,0.196808,0.417086,0.189869,0.657661,0.243314,0.875672,0.220758,0.453832,0.436083,0.467071,0.929738,0.134105,0.510931,0.320432,0.17776,0.969636,0.550791,0.539276,0.290682,0.413343,0.638729,0.621071,0.822348,0.970663,0.176548,0.263622,0.0348986,0.0898447,0.136026,0.482718,0.422924,0.576633,0.665959,0.936363,0.990844,0.913273,0.030637,0.921743,0.230237,0.312753,0.825079,0.344039,0.573494,0.965448,0.138981,0.668988,0.229179,0.0235943,0.837552,0.892527,0.953994,0.401489,0.14252,0.904394,0.773941,0.381673,0.734777,0.901569,0.277018,0.569488,0.706784,0.0915574,0.903521,0.223505,0.564072,0.684569,0.738333,0.0394534,0.519563,0.555814,0.482241,0.01353,0.819626,0.0134808,0.139739,0.812618,0.11937,0.0380261,0.876947,0.577984,0.639587,0.109961,0.499961,0.479158,0.145572,0.104217,0.93355,0.16447,0.251643,0.342313,0.854532,0.250608,0.19215,0.385039,0.426863,0.735585,0.828766,0.710841,0.555128,0.143709,0.845941,0.361867,0.0483533,0.93023,0.21064,0.817849,0.909629,0.280193,0.685648,0.760425,0.328554,0.916314,0.471915,0.759343,0.0839556,0.460623,0.62845,0.888272,0.498126,0.475033,0.549848,0.87172,0.121655,0.950175,0.262403,0.442461,0.624241,0.166897,0.305601,0.264154,0.493211,0.383326,0.329257,0.620749,0.427231,0.700399,0.759199,0.587685,0.932354,0.231402,0.541333,0.124216,0.847931,0.115272,0.399507,0.619096,0.840629,0.826791,0.148554,0.93811,0.546065,0.928363,0.921564,0.0128233,0.0490851,0.826731,0.834031,0.774615,0.209615,0.472262,0.658864,0.785852,0.947598,0.622065,0.177441,0.733487,0.690868,0.963149,0.402433,0.0793125,0.584356,0.676941,0.511259,0.29101,0.1634,0.815187,0.0848293,0.147106,0.836419,0.583245,0.0127767,0.10214,0.790889,0.81105,0.999743,0.594563,0.389157,0.561614,0.589489,0.668601,0.984776,0.253794,0.273456,0.948448,0.778727,0.00780815,0.451021,0.186033,0.704963,0.00423938,0.65645,0.344482,0.0867063,0.893246,0.211422,0.2394,0.0765803,0.457153,0.469032,0.476326,0.975479,0.616437,0.1866,0.733262,0.799063,0.335127,0.334367,0.825876,0.0338453,0.126776,0.718626,0.495219,0.252631,0.550783,0.933037,0.47211,0.934384,0.394167,0.231172,0.348896,0.998022,0.982624,0.36115,0.462922,0.950807,0.898618,0.236528,0.235168,0.806465,0.372293,0.0649294,0.25561,0.702591,0.487589,0.453053,0.98954,0.976163,0.680397,0.505902,0.902948,0.549606,0.628407,0.197374,0.724051,0.362436,0.78378,0.483319,0.562902,0.778435,0.190534,0.288781,0.653152,0.872998,0.509664,0.949825,0.852918,0.271565,0.11343,0.411169,0.306224,0.117598,0.267842,0.863894,0.755613,0.754076,0.892373,0.959503,0.175077,0.0163336,0.816706,0.126084,0.00571501,0.752383,0.908461,0.335296,0.191983,0.103622,0.171143,0.98537,0.510562,0.749499,0.647397,0.229061,0.238661,0.421275,0.934951,0.104902,0.986284,0.611978,0.379066,0.295694,0.155947,0.334246,0.904953,0.223356,0.567223,0.527817,0.240783,0.755171,0.69565,0.977442,0.795359,0.586656,0.914486,0.198435,0.443938,0.510774,0.467514,0.488803,0.933721,0.857349,0.0240777,0.0670438,0.237091,0.399748,0.141867,0.97727,0.807884,0.0154873,0.225869,0.114134,0.864411,0.0612446,0.0170762,0.930563,0.220583,0.424056,0.0518967,0.563968,0.94599,0.209686,0.812365,0.501377,0.580722,0.146382,0.735148,0.535971,0.163165,0.021621,0.239133,0.237885,0.601099,0.160533,0.320623,0.243822,0.0564072,0.814994,0.217473,0.367615,0.966718,0.562341,0.179348,0.187173,0.636692,0.910515,0.581033,0.249834,0.614048,0.461313,0.905002,0.372966,0.577204,0.219301,0.683559,0.314378,0.324356,0.254162,0.973177,0.0455338,0.442964,0.664549,0.475527,0.606243,0.147615,0.852954,0.451193,0.320669,0.562839,0.206224,0.924042,0.944493,0.650424,0.906658,0.473168,0.461763,0.000363052,0.693525,0.984802,0.131667,0.644308,0.258975,0.305282,0.109327,0.354306,0.366719,0.183184,0.163848,0.352907,0.0119984,0.244936,0.601704,0.921887,0.191938,0.276376,0.838297,0.598711,0.35009,0.192659,0.825461,0.0646318,0.106338,0.372482,0.0876983,0.29668,0.659969,0.539897,0.983191,0.171154,0.193107,0.755843,0.416713,0.393496,0.357202,0.825285,0.329345,0.835978,0.0534618,0.390624,0.899297,0.940148,0.477901,0.281911,0.0969266,0.509893,0.0120038,0.718528,0.570928,0.651943,0.319072,0.652717,0.272044,0.524338,0.419551,0.533652,0.959636,0.585981,0.204139,0.601008,0.984851,0.570477,0.785524,0.546043,0.72543,0.249189,0.943314,0.129336,|0.661715,0.160358,0.465942,0.138415,0.753913,0.304429,0.588186,0.869296,0.779437,0.742355,0.916939,0.144904,0.493271,0.133605,0.594232,0.869933,0.949631,0.851922,0.959061,0.490723,0.949433,0.43921,0.975508,0.847101,0.316558,0.669641,0.533116,0.136279,0.163615,0.568633,0.119551,0.868868,0.496078,0.24343,0.851807,0.360121,0.150121,0.90547,0.635981,0.630063,0.73172,0.625689,0.46657,0.791502,0.812132,0.4158,0.901443,0.292035,0.846036,0.67561,0.0563723,0.465216,0.522918,0.418005,0.0445348,0.4693,0.510228,0.365903,0.118233,0.660285,0.897687,0.0829216,0.709684,0.550645,0.840274,0.881404,0.754315,0.211647,0.0903742,0.641907,0.526826,0.773696,0.253823,0.433171,0.261517,0.808229,0.509982,0.776958,0.771702,0.493321,0.681931,0.0272367,0.101,0.791817,0.205235,0.400788,0.524786,0.877922,0.489441,0.110492,0.0895919,0.759277,0.613282,0.924157,0.150473,0.597228,0.548153,0.649832,0.450445,0.42507,0.735218,0.271432,0.655649,0.5815,0.233681,0.425059,0.351172,0.341503,0.311646,0.0304096,0.462131,0.715708,0.467392,0.388667,0.039998,0.516431,0.0669129,0.187234,0.912501,0.89718,0.393543,0.626203,0.712638,0.0813622,0.777183,0.662204,0.719637,0.785046,0.82459,0.347541,0.869516,0.241986,0.841081,0.06399,0.233293,0.871666,0.384574,0.966193,0.413056,0.240246,0.788218,0.184834,0.503717,0.339992,0.173743,0.519387,0.700296,0.432171,0.462719,0.525007,0.319187,0.609491,0.729923,0.316756,0.924691,0.13226,0.10528,0.8558,0.598709,0.986501,0.517821,0.986519,0.87738,0.772437,0.611037,0.804927,0.980144,0.190154,0.456723,0.62561,0.437936,0.982796,0.677749,0.122558,0.412585,0.105443,0.745908,0.703721,0.734537,0.291798,0.849482,0.694603,0.0415705,0.321565,0.453555,0.318001,0.471913,0.193983,0.0356542,0.472338,0.0884488,0.312498,0.516578,0.0608711,0.246468,0.755247,0.0969477,0.211673,0.400229,0.393577,0.833919,0.842317,0.319344,0.96801,0.232228,0.871477,0.401353,0.431979,0.226147,0.303165,0.839896,0.124056,0.907338,0.931289,0.699054,0.342111,0.573528,0.213613,0.145497,0.747256,0.14825,0.497834,0.693441,0.0594751,0.841678,0.751021,0.599662,0.83559,0.129493,0.527661,0.181713,0.0558301,0.45951,0.996999,0.168028,0.253597,0.322599,0.743082,0.219285,0.406105,0.0933326,0.61218,0.659919,0.743575,0.765702,0.851104,0.0616171,0.147145,0.954002,0.342651,0.878505,0.285892,0.679353,0.477711,0.873096,0.843521,0.165383,0.579925,0.348595,0.668199,0.0999143,0.235535,0.98735,0.722703,0.689144,0.572907,0.57653,0.0706658,0.487108,0.263696,0.847693,0.276586,0.70026,0.59137,0.431577,0.726124,0.564069,0.88561,0.935531,0.423772,0.483815,0.409008,0.295242,0.475181,0.546406,0.964243,0.880168,0.48601,0.777561,0.65738,0.909563,0.35338,0.083479,0.0303654,0.875968,0.116675,0.539884,0.493601,0.929761,0.527979,0.198704,0.584351,0.510456,0.524574,0.779337,0.490415,0.190241,0.734729,0.0411867,0.902916,0.806503,0.139536,0.444464,0.428446,0.666092,0.830468,0.282736,0.578734,0.687267,0.577802,0.942261,0.239789,0.241803,0.142566,0.725624,0.73911,0.104211,0.493033,0.0943915,0.730129,0.615054,0.569104,0.138156,0.075617,0.502796,0.711118,0.45589,0.165587,0.136046,0.269239,0.933403,0.0355467,0.753231,0.952397,0.124956,0.4393,0.184414,0.0878816,0.158568,0.74349,0.834229,0.906181,0.976184,0.353789,0.120976,0.725967,0.87167,0.21158,0.699599,0.025235,0.968042,0.265513,0.970145,0.640804,0.697911,0.489345,0.0213423,0.750506,0.275566,0.584848,0.865987,0.0531473,0.74062,0.622567,0.940438,0.765879,0.80212,0.37899,0.706503,0.858324,0.586431,0.335554,0.111371,0.786866,0.690555,0.456287,0.0880778,0.344444,0.686384,0.601728,0.444519,0.17004,0.0851164,0.596085,0.532328,0.213467,0.887954,0.0895311,0.0812654,0.218973,0.0214451,0.571119,0.670298,0.732722,0.899881,0.673412,0.159666,0.151354,0.313712,0.00753337,0.618997,0.837381,0.960319,0.0484285,0.301318,0.137947,0.997153,0.784043,0.594998,0.73682,0.501831,0.407529,0.113669,0.8544,0.747624,0.0288708,0.0152571,0.722486,0.138808,0.149138,0.558119,0.574524,0.931349,0.97502,0.829927,0.867048,0.166572,0.662977,0.584851,0.072212,0.530869,0.803584,0.159897,0.0567965,0.169583,0.695932,0.637409,0.585298,0.920176,0.832022,0.904741,0.085528,0.567108,0.260853,0.348931,0.623039,0.499467,0.248024,0.585397,0.938832,0.176132,0.181295,0.105733,0.571845,0.628533,0.923883,0.847691,0.359708,0.575441,0.0652385,0.0653616,0.643047,0.0219842,0.783611,0.829598,0.715746,0.153375,0.645418,0.675213,0.577808,0.0520326,0.0169811,0.174032,0.000596702,0.029071,0.576792,0.375288,0.301672,0.753017,0.132499,0.176658,0.0189377,0.679819,0.387745,0.178075,0.574849,0.312324,0.850277,0.831754,0.000167847,0.79301,0.935032,0.699531,0.543774,0.129472,0.247356,0.715504,0.302405,0.972348,0.0851273,0.861338,0.39603,0.427175,0.427477,0.635776,0.112971,0.806172,0.862825,0.864241,0.397972,0.516121,0.740761,0.30126,0.602726,0.822715,0.595728,0.885681,0.412143,0.231455,0.28671,0.488608,0.915641,0.102017,0.861451,0.179471,0.248138,0.853894,0.176895,0.636492,0.78458,0.226628,0.821676,0.0187097,0.799795,0.194821,0.877178,0.756588,0.520598,0.823011,0.168234,0.129608,0.899087,0.356853,0.610401,0.747327,0.222991,0.280212,0.515634,0.773582,0.623923,0.0216656,0.147139,0.750021,0.252832,0.433189,0.901488,0.550223,0.615744,0.56579,0.00106329,0.363539,0.511656,0.512247,0.447756,0.652297,0.0336349,0.340745,0.100487,0.690547,0.716415,0.704071,0.369408,0.929474,0.800645,0.915697,0.219038,0.932266,0.975981,0.583875,0.504966,0.492758,0.00134534,0.00666589,0.520496,0.720409,0.709701,0.346502,0.331805,0.938547,0.242839,0.24261,0.0305462,0.668498,0.71746,0.520956,0.588302,0.853165,0.194443,0.682274,0.961101,0.861572,0.542306,0.558072,0.348397,0.635378,0.468107,0.865784,0.00251526,0.188613,0.893933,0.340636,0.195745,0.815877,0.811447,0.52432,0.877429,0.965444,0.0412598,0.157184,0.224054,0.778621,0.260196,0.872607,0.236108,0.752439,0.803931,0.200658,0.972171,0.987178,0.463328,0.128739,0.866285,0.403977,0.133074,0.324916,0.346157,0.167556,0.690884,0.912715,0.102215,0.495003,0.853676,0.177496,0.197695,0.70463,0.460913,0.536212,0.0227907,0.607167,0.946471,0.701196,0.285089,0.994503,0.12322,0.546659,0.719425,0.284242,0.600745,0.776805,0.485413,0.856076,0.420117,0.611037,0.204546,0.731347,0.735979,0.583308,0.976577,0.690951,0.507875,0.0558502,0.659948,0.416604,0.695246,0.815352,0.96992,0.749694,0.790892,0.456623,0.265338,0.99723,0.345502,0.130558,0.610613,0.229411,0.712464,0.126302,0.32555,0.4627,0.262106,0.471059,0.889312,0.340457,0.303277,0.199951,0.222842,0.81849,0.0460362,0.898376,0.52262,0.277294,0.486475,0.466887,0.519842,0.601499,0.680847,0.0752108,0.961871,0.955962,0.858249,0.9046,0.733301,0.487466,0.699536,0.676305,0.655157,0.542025,0.355994,0.213861,0.614096,0.220645,0.671718,0.123457,0.670221,0.886862,0.944626,0.181923,0.872669,0.0134367,0.326554,0.449457,0.896699,0.417458,0.246647,0.798535,0.171187,0.887466,0.718389,0.115621,0.137059,0.161636,0.120019,0.112897,0.571941,0.415985,0.212746,0.0178329,0.914813,0.311443,0.513223,0.767886,0.546661,0.621595,0.981283,0.542783,0.137029,0.501776,0.373139,0.755157,0.657808,0.656755,0.242689,0.425253,0.692246,0.332526,0.434201,0.8879,0.554416,0.310916,0.353648,0.0348223,0.515504,0.444564,0.454269,0.431554,0.128744,0.910824,0.703802,0.628017,0.233672,0.54774,0.671127,0.863765,0.979606,0.854468,0.925453,0.0374864,0.379305,0.479073,0.630641,0.662756,0.423234,0.440332,0.647286,0.929407,0.0507869,0.670464,0.636249,0.111408,0.480995,0.652744,0.410337,0.0806296,0.900311,0.157998,0.990678,0.308165,0.197663,0.15933,0.816082,0.536659,0.829761,0.661719,0.444678,0.059075,0.682796,0.360954,0.627769,0.759125,0.287103,0.612755,0.198176,0.297932,0.415709,0.822922,0.43824,0.330995,0.584214,0.998967,0.558622,0.073341,0.548872,0.62786,0.602555,0.798636,0.259246,0.262727,0.417008,0.221433,0.0436652,0.763734,0.235729,0.970039,0.427435,0.406102,0.811559,0.668573,0.409865,0.446434,0.105046,0.0779698,0.462514,0.170815,0.685502,0.127477,0.89096,0.361391,0.83282,0.855111,0.617276,0.818574,0.544086,0.131941,0.38145,0.975791,0.263313,0.14736,0.868146,0.615184,0.480544,0.0189633,0.29415,0.617352,0.729624,0.37216,0.617914,0.242003,0.0499814,0.143314,0.0050419,0.817662,0.739721,0.26941,0.865085,0.313966,0.293538,0.920628,0.0651736,0.899765,0.321609,0.805404,0.360519,0.941561,0.093024,0.362738,0.266765,0.615526,0.484906,0.386899,0.0874193,0.568993,0.0560644,0.979836,0.99208,0.544293,0.572922,0.0888391,0.639758,0.628911,0.529885,0.861199,0.368565,0.754139,0.986746,0.0167896,0.830844,0.181428,0.124948,0.765966,0.982674,0.896871,0.705167,0.543575,0.691416,0.102561,0.0603145,0.784401,0.893822,0.709731,0.439293,0.828707,0.516248,0.163466,0.0670234,0.750637,0.572244,0.129231,0.507385,0.751469,0.00404018,0.244407,0.709819,0.70951,0.0235161,0.131852,0.831636,0.998792,0.733864,0.792922,0.850378,0.956033,0.271837,0.273708,0.754314,0.943045,0.822869,0.13249,0.722949,0.616323,0.941455,0.565212,0.317897,0.698535,0.730604,0.869065,0.282636,0.325497,0.221388,0.695146,0.381706,0.655809,0.858971,0.0465719,0.47253,0.683355,0.178517,0.538387,0.551041,0.903461,0.203097,0.952781,0.542741,0.563445,0.0441055,0.184392,0.474584,0.323036,0.20127,0.977628,0.847856,|0.500122,0.642266,0.771124,0.273017,0.527499,0.651781,0.301368,0.923376,0.754111,0.440161,0.505559,0.440165,0.916748,0.140119,0.515773,0.815853,0.842412,0.838056,0.184133,0.00845683,0.831559,0.896997,0.560898,0.0611001,0.309628,0.492002,0.496172,0.691126,0.86461,0.718172,0.835664,0.849206,0.467992,0.338847,0.638125,0.00185722,0.496351,0.309823,0.223777,0.316511,0.834851,0.721864,0.987601,0.302071,0.472099,0.10728,0.221137,0.00187379,0.196498,0.000601172,0.559416,0.759345,0.373958,0.932871,0.0525432,0.123504,0.325524,0.949011,0.538278,0.871046,0.269261,0.560772,0.982849,0.922068,0.756154,0.577189,0.472136,0.54648,0.458675,0.187459,0.980874,0.77419,0.383366,0.504452,0.968158,0.499189,0.0628464,0.759931,0.518296,0.157663,0.963946,0.157183,0.0622291,0.228141,0.895758,0.247411,0.229507,0.542258,0.457181,0.341886,0.0407839,0.0808505,0.94711,0.854081,0.803651,0.57225,0.889644,0.261821,0.394233,0.796918,0.124832,0.834011,0.215535,0.930981,0.824337,0.608885,0.857042,0.999314,0.0126905,0.469964,0.787953,0.519903,0.598975,0.532221,0.0512019,0.330664,0.161514,0.753627,0.936335,0.509688,0.0112752,0.491575,0.0324486,0.402912,0.428859,0.97524,0.809431,0.35535,0.589345,0.0296212,0.781886,0.793658,0.12985,0.318447,0.577545,0.605019,0.731818,0.412953,0.783495,0.422505,0.366896,0.203499,0.945414,0.306046,0.550852,0.37809,0.735678,0.813773,0.427321,0.370398,0.894056,0.586677,0.311941,0.697563,0.43752,0.562316,0.749986,0.85383,0.389135,0.305983,0.862424,0.343072,0.792035,0.80377,0.0569727,0.0581573,0.260485,0.0309236,0.246404,0.167752,0.561768,0.96772,0.815272,0.980155,0.693146,0.592157,0.28115,0.100257,0.213073,0.277562,0.867761,0.497586,0.133817,0.0141807,0.784976,0.904061,0.102764,0.270836,0.826549,0.493618,0.22598,0.518666,0.844925,0.896096,0.89283,0.269981,0.456108,0.0475478,0.81019,0.0681267,0.878342,0.812424,0.620708,0.311283,0.66689,0.375753,0.0703571,0.685001,0.147914,0.918252,0.456643,0.675359,0.899509,0.206668,0.779672,0.101925,0.18163,0.959733,0.463581,0.440077,0.270524,0.389253,0.124849,0.771196,0.575543,0.654179,0.329207,0.231873,0.35567,0.405588,0.388635,0.830356,0.735013,0.000204802,0.277304,0.454467,0.682287,0.367352,0.600011,0.284096,0.425441,0.778201,0.525143,0.94774,0.181029,0.620249,0.409718,0.400961,0.521231,0.3103,0.361046,0.678888,0.335468,0.635193,0.950884,0.200676,0.67591,0.305361,0.940491,0.293631,0.331958,0.906597,0.0602029,0.399492,0.0602105,0.093177,0.0717869,0.863756,0.206784,0.38902,0.987912,0.00107795,0.00515193,0.0407492,0.694528,0.29537,0.560832,0.221531,0.923231,0.242102,0.972671,0.501789,0.210394,0.47752,0.64576,0.711112,0.603413,0.0309108,0.605486,0.524379,0.55019,0.384477,0.249009,0.866141,0.901969,0.979643,0.459832,0.242376,0.313139,0.744695,0.829311,0.637125,0.728471,0.458928,0.553625,0.157318,0.132233,0.338891,0.960516,0.114668,0.272064,0.203381,0.690808,0.560811,0.240795,0.734931,0.230457,0.260047,0.245776,0.414126,0.411053,0.685724,0.131775,0.828209,0.55052,0.960952,0.893868,0.78152,0.223975,0.440466,0.481639,0.562413,0.784799,0.604886,0.406169,0.832235,0.432516,0.307513,0.445784,0.916471,0.669697,0.937533,0.889945,0.181124,0.740576,0.754083,0.839032,0.13622,0.447358,0.936911,0.398945,0.657286,0.609362,0.752754,0.514679,0.48315,0.425729,0.855769,0.127068,0.840474,0.516601,0.524897,0.219279,0.194877,0.938186,0.19941,0.998544,0.615967,0.228574,0.635485,0.256798,0.839543,0.464185,0.74137,0.970225,0.705225,0.803453,0.767885,0.768431,0.579771,0.155649,0.442215,0.949884,0.170008,0.522054,0.148109,0.0816779,0.528159,0.681018,0.0357884,0.749964,0.694118,0.762098,0.211133,0.179186,0.541648,0.353966,0.532368,0.283285,0.524934,0.0700611,0.782317,0.138439,0.845535,0.0094285,0.330064,0.540325,0.112868,0.174507,0.919895,0.916312,0.290509,0.633811,0.166868,0.495996,0.636545,0.155728,0.78741,0.233989,0.721648,0.301322,0.954881,0.449175,0.658001,0.814416,0.288729,0.149732,0.0395486,0.967227,0.990656,0.469809,0.0506439,0.755972,0.134238,0.977315,0.932288,0.896481,0.227776,0.970429,0.0686494,0.480149,0.172644,0.732357,0.124235,0.436153,0.662195,0.415589,0.0814592,0.561037,0.00572646,0.200938,0.603034,0.658734,0.75247,0.396698,0.1619,0.954026,0.227112,0.139689,0.235763,0.308259,0.883097,0.166845,0.934301,0.927031,0.952997,0.869229,0.834413,0.411754,0.336464,0.863209,0.178978,0.0347708,0.441849,0.790446,0.895355,0.0266268,0.704547,0.384143,0.90554,0.0455949,0.110014,0.0730119,0.627266,0.0533262,0.00797099,0.297416,0.949573,0.805205,0.673436,0.81352,0.270066,0.546519,0.891277,0.894335,0.471461,0.809515,0.484645,0.284381,0.148076,0.287543,0.496581,0.70886,0.694035,0.796908,0.296436,0.740008,0.0161298,0.34406,0.409375,0.783489,0.189114,0.462026,0.175945,0.948958,0.70221,0.964815,0.094291,0.859455,0.867327,0.0355902,0.25732,0.449481,0.818778,0.717256,0.976707,0.99763,0.692293,0.715761,0.309717,0.186145,0.0947334,0.688998,0.886007,0.483566,0.223607,0.83005,0.460898,0.349553,0.776169,0.0562329,0.936461,0.878697,0.556679,0.574754,0.316041,0.337465,0.493291,0.809436,0.982474,0.606027,0.877887,0.862866,0.322156,0.658906,0.96589,0.719347,0.320548,0.587403,0.0777147,0.443712,0.674277,0.552739,0.947911,0.0965862,0.449052,0.321465,0.232598,0.490888,0.0538772,0.952082,0.484489,0.300008,0.700232,0.0020889,0.515629,0.621578,0.293134,0.554868,0.060523,0.833977,0.362701,0.934689,0.492878,0.446223,0.289368,0.105171,0.12858,0.252476,0.961192,0.473722,0.860651,0.650688,0.333328,0.851984,0.709772,0.749226,0.745453,0.967508,0.628008,0.338305,0.3947,0.915285,0.801723,0.472163,0.788114,0.609707,0.355263,0.186294,0.317224,0.0653547,0.0191522,0.220356,0.943153,0.05246,0.192922,0.648312,0.895874,0.807908,0.803979,0.700173,0.857085,0.979838,0.71775,0.723585,0.693172,0.396972,0.791837,0.793594,0.710861,0.059374,0.31644,0.110434,0.591866,0.440531,0.915755,0.3078,0.937802,0.914903,0.440471,0.0690992,0.190268,0.365253,0.0789558,0.415923,0.303739,0.439458,0.530448,0.367624,0.678347,0.754423,0.790435,0.983513,0.689211,0.920427,0.0716612,0.760064,0.422221,0.444046,0.494955,0.562716,0.387143,0.837221,0.131476,0.182003,0.730207,0.460029,0.587848,0.279877,0.107653,0.0810131,0.465838,0.777487,0.817808,0.677695,0.188547,0.407836,0.774778,0.780089,0.847524,0.279607,0.509125,0.424205,0.956665,0.347481,0.203768,0.351261,0.255175,0.692356,0.0830158,0.624583,0.224301,0.188232,0.765704,0.574424,0.667942,0.553122,0.648445,0.408159,0.438211,0.584158,0.102683,0.270599,0.0212098,0.30805,0.815674,0.196916,0.434119,0.518351,0.0731041,0.423034,0.287164,0.767576,0.207724,0.0280979,0.150749,0.217783,0.139791,0.67789,0.244471,0.875274,0.0444622,0.491121,0.535911,0.402186,0.224904,0.214242,0.0334671,0.361587,0.6668,0.678018,0.399623,0.810407,0.844585,0.46105,0.451793,0.175588,0.719435,0.0394352,0.46978,0.346852,0.0443279,0.0526567,0.00416875,0.505497,0.526833,0.0354489,0.918664,0.818934,0.99469,0.103464,0.304744,0.9614,0.158417,0.912516,0.764777,0.538126,0.336634,0.872846,0.830909,0.213063,0.782273,0.311189,0.59519,0.705494,0.969169,0.97414,0.00719112,0.123219,0.565405,0.950475,0.604509,0.274132,0.959296,0.409225,0.935037,0.775496,0.910937,0.0267105,0.76093,0.333126,0.780804,0.0282568,0.285507,0.575095,0.243082,0.240034,0.839785,0.697967,0.747693,0.921897,0.554421,0.181212,0.543858,0.274802,0.0727201,0.727643,0.477237,0.988497,0.0947046,0.434023,0.969155,0.344303,0.130272,0.750934,0.59278,0.62177,0.104892,0.540693,0.158074,0.655173,0.618286,0.638002,0.671123,0.724328,0.718745,0.204128,0.94087,0.0607526,0.826115,0.922546,0.571943,0.244003,0.721792,0.0532208,0.762555,0.721806,0.145737,0.879988,0.298896,0.807775,0.279755,0.705457,0.415004,0.100691,0.0816689,0.612697,0.719081,0.864686,0.190966,0.844307,0.370422,0.704673,0.278035,0.942531,0.484801,0.495135,0.792832,0.67,0.751834,0.936743,0.90378,0.295853,0.933931,0.496456,0.818039,0.661242,0.221802,0.603763,0.935412,0.928228,0.816976,0.237728,0.67373,0.231695,0.244575,0.565904,0.855388,0.808218,0.0668744,0.923442,0.103083,0.668168,0.299906,0.667195,0.66164,0.618092,0.574532,0.150889,0.70527,0.512548,0.174672,0.47143,0.473979,0.0255294,0.0680614,0.681494,0.385565,0.584549,0.453936,0.795555,0.348754,0.90699,0.311631,0.197945,0.635111,0.736942,0.2934,0.459793,0.60481,0.795767,0.365511,0.469004,0.495679,0.746789,0.412064,0.0691876,0.586198,0.824054,0.140407,0.506747,0.724561,0.172451,0.312015,0.188836,0.760476,0.0850589,0.218662,0.875139,0.396677,0.676317,0.964678,0.0878257,0.231183,0.810531,0.699753,0.432419,0.730919,0.738151,0.838021,0.153865,0.843545,0.309848,0.525326,0.604439,0.544024,0.425073,0.871081,0.948051,0.974766,0.9721,0.362158,0.376484,0.0511243,0.095122,0.364215,0.0769038,0.0203984,0.725251,0.0456904,0.943118,0.0824363,0.790177,0.234197,0.450989,0.39531,0.951804,0.63585,0.152124,0.532574,0.00374925,0.629247,0.188641,0.456661,0.25374,0.790392,0.670532,0.160051,0.0123543,0.744744,0.765511,0.740867,0.70866,0.185462,0.284291,0.747514,0.176184,0.411211,0.746917,0.33554,0.543066,0.661428,0.174229,0.755054,0.417379,0.165235,0.789067,0.870387,0.0905741,0.225038,0.540586,0.638086,0.209483,0.83397,0.862645,0.675393,0.872937,0.995651,0.464373,0.215467,|0.900545,0.747169,0.389773,0.132446,0.620888,0.547695,0.0919732,0.819275,0.780236,0.425134,0.885243,0.402206,0.769696,0.182791,0.994651,0.701384,0.703243,0.613694,0.979225,0.0477037,0.0851484,0.895263,0.201322,0.758487,0.939056,0.789649,0.939795,0.448127,0.998358,0.0424768,0.0559617,0.478889,0.146832,0.806723,0.48725,0.430286,0.0874954,0.995503,0.722269,0.147396,0.525495,0.661517,0.00698513,0.519596,0.748928,0.611305,0.350526,0.780855,0.861754,0.0734431,0.821632,0.12622,0.928077,0.770583,0.91766,0.433333,0.674261,0.0601355,0.497987,0.223632,0.000655711,0.244658,0.60981,0.224348,0.092662,0.655935,0.644108,0.632105,0.424957,0.325353,0.754494,0.334557,0.926216,0.339869,0.612481,0.976373,0.456092,0.425333,0.677278,0.476721,0.126061,0.155218,0.679903,0.435713,0.0147789,0.389854,0.54245,0.532651,0.54494,0.909666,0.699938,0.348477,0.519568,0.388493,0.972898,0.341232,0.00159073,0.60854,0.479887,0.838562,0.0685547,0.124239,0.722082,0.0662206,0.802782,0.764111,0.0547648,0.175515,0.578623,0.591444,0.304411,0.978374,0.944246,0.0650483,0.517242,0.653734,0.444134,0.453558,0.913038,0.173682,0.134881,0.550757,0.733766,0.28098,0.107128,0.649153,0.385504,0.744218,0.2591,0.814071,0.0682397,0.376583,0.430075,0.567344,0.0855727,0.860955,0.453388,0.239021,0.899609,0.59666,0.362896,0.296744,0.344673,0.826554,0.58161,0.851924,0.793617,0.962572,0.169032,0.365831,0.545197,0.40131,0.62417,0.282631,0.519298,0.970242,0.734027,0.838555,0.81372,0.045247,0.0900844,0.745739,0.791392,0.816938,0.253174,0.498204,0.275505,0.0753121,0.339439,0.0158823,0.0253015,0.884506,0.378603,0.820748,0.339564,0.671067,0.193798,0.416166,0.507638,0.746776,0.574914,0.780517,0.251526,0.841815,0.148628,0.901492,0.248905,0.642848,0.981509,0.200644,0.233016,0.0516306,0.824706,0.345112,0.521359,0.35415,0.886036,0.157841,0.369647,0.652313,0.868955,0.361551,0.66234,0.928171,0.489248,0.986437,0.773832,0.323203,0.966085,0.576603,0.753395,0.636747,0.138003,0.721833,0.752897,0.67167,0.947392,0.23818,0.0869521,0.770723,0.927017,0.972705,0.238113,0.410683,0.977191,0.587984,0.60951,0.279246,0.00279564,0.162799,0.289881,0.154796,0.458007,0.228895,0.504523,0.0674182,0.154602,0.674249,0.775231,0.251461,0.273538,0.862678,0.340685,0.207964,0.257378,0.653798,0.36055,0.660965,0.155096,0.632165,0.682647,0.664013,0.490463,0.961165,0.701054,0.556457,0.0223224,0.633414,0.996851,0.795165,0.803713,0.511542,0.160111,0.369867,0.542396,0.695827,0.091424,0.888033,0.886253,0.995174,0.731914,0.0648444,0.817881,0.116238,0.96776,0.282437,0.876665,0.715785,0.862403,0.0110285,0.272829,0.402286,0.396171,0.544111,0.274731,0.583895,0.75494,0.429798,0.668355,0.37502,0.0783513,0.0800903,0.121967,0.854908,0.131328,0.674682,0.0207829,0.46831,0.655883,0.847666,0.362536,0.434685,0.318793,0.295865,0.314013,0.113981,0.0303873,0.559646,0.22712,0.637295,0.943113,0.13404,0.430866,0.111705,0.429598,0.866187,0.383568,0.330266,0.72835,0.687015,0.766046,0.523308,0.350967,0.0384266,0.201833,0.618778,0.71731,0.740612,0.657611,0.190333,0.694906,0.242901,0.0848003,0.467667,0.301584,0.163768,0.0549132,0.739339,0.695319,0.381602,0.733864,0.745198,0.845938,0.982823,0.394609,0.740727,0.360404,0.458512,0.494332,0.284175,0.00551099,0.793576,0.0406334,0.636321,0.762659,0.607591,0.925089,0.017623,0.04158,0.247394,0.981216,0.729157,0.693106,0.912454,0.866725,0.384647,0.0460002,0.41363,0.721699,0.0615567,0.714885,0.201128,0.289116,0.319998,0.774016,0.683491,0.134546,0.372836,0.425848,0.710094,0.832348,0.638702,0.341429,0.289963,0.35138,0.815811,0.822538,0.095199,0.196436,0.475784,0.685593,0.921863,0.260872,0.231881,0.188568,0.839198,0.193941,0.528874,0.145116,0.8983,0.778378,0.887686,0.972191,0.371218,0.449398,0.547823,0.313896,0.269894,0.714894,0.643595,0.743167,0.530682,0.168443,0.869403,0.0216655,0.715455,0.765148,0.215374,0.883618,0.590157,0.348678,0.345037,0.264368,0.991205,0.225677,0.148721,0.964199,0.697728,0.272186,0.0689523,0.44162,0.349673,0.500739,0.190233,0.304978,0.899463,0.866366,0.212952,0.915415,0.296037,0.739727,0.939286,0.360897,0.810309,0.484575,0.540014,0.0229653,0.0833645,0.542575,0.659775,0.680225,0.622317,0.65159,0.666624,0.337495,0.208172,0.157452,0.469987,0.527381,0.345305,0.733923,0.832891,0.858626,0.38006,0.292681,0.406398,0.288194,0.373462,0.872736,0.415501,0.0201526,0.757827,0.275404,0.487516,0.150005,0.08021,0.709108,0.482316,0.87896,0.00279135,0.287993,0.600694,0.379468,0.763033,0.125936,0.00167334,0.122786,0.609581,0.181423,0.369749,0.382992,0.825441,0.695768,0.954232,0.0305894,0.224453,0.889974,0.748235,0.171391,0.844341,0.27948,0.477668,0.450606,0.185536,0.00712103,0.145647,0.0185788,0.293315,0.573969,0.110172,0.834351,0.615408,0.715935,0.00965536,0.610846,0.462066,0.802966,0.606762,0.0644688,0.662134,0.43663,0.989047,0.455221,0.764351,0.24654,0.542529,0.514238,0.0547292,0.433469,0.138603,0.0544615,0.876766,0.638449,0.75187,0.546041,0.495913,0.977683,0.00742728,0.651394,0.261141,0.780761,0.709268,0.387506,0.148736,0.356203,0.359613,0.331208,0.869328,0.385297,0.702913,0.954132,0.0663268,0.668013,0.713354,0.716574,0.166954,0.691099,0.944528,0.618434,0.248817,0.963819,0.818659,0.0256953,0.0678812,0.258284,0.74929,0.924643,0.0831399,0.985511,0.686844,0.259441,0.0956045,0.951097,0.493097,0.730554,0.663754,0.017971,0.995452,0.479144,0.704615,0.919747,0.787914,0.709435,0.253093,0.367698,0.110953,0.319296,0.51432,0.391781,0.451232,0.253467,0.759618,0.472096,0.392227,0.68862,0.111963,0.596936,0.560942,0.433458,0.550681,0.322596,0.646624,0.390074,0.840979,0.305931,0.921646,0.649098,0.819904,0.37097,0.697941,0.148775,0.899472,0.886763,0.0594601,0.476874,0.882006,0.0897753,0.550916,0.822044,0.733787,0.917655,0.63337,0.588145,0.524791,0.0992189,0.970801,0.292959,0.49558,0.406304,0.611646,0.0319057,0.968716,0.695466,0.685093,0.170104,0.0216631,0.600891,0.383372,0.741611,0.854487,0.84237,0.524814,0.784791,0.789652,0.0958122,0.563202,0.978635,0.63928,0.861972,0.98674,0.754682,0.103065,0.660256,0.860786,0.397282,0.775619,0.814915,0.232114,0.995038,0.351218,0.596661,0.0251016,0.511401,0.205056,0.721343,0.0796432,0.991524,0.139722,0.313911,0.348573,0.464475,0.783887,0.321541,0.32961,0.80613,0.743157,0.908659,0.972292,0.139138,0.862263,0.207035,0.740151,0.429786,0.601335,0.739575,0.241373,0.255332,0.988361,0.502615,0.427627,0.903693,0.0199789,0.663875,0.729366,0.710404,0.635752,0.02722,0.156653,0.0291266,0.715959,0.25081,0.985777,0.536264,0.603321,0.0543481,0.65553,0.583834,0.463149,0.352571,0.0504374,0.00147706,0.984436,0.979556,0.872908,0.919382,0.178765,0.468299,0.936111,0.965308,0.564266,0.832065,0.253207,0.681206,0.849289,0.2467,0.096893,0.319752,0.904285,0.875683,0.50855,0.0328068,0.792751,0.0587713,0.805301,0.867849,0.240617,0.85368,0.791468,0.410565,0.412582,0.960012,0.222398,0.269423,0.551132,0.427074,0.512375,0.71921,0.61282,0.228597,0.872759,0.53604,0.363088,0.421433,0.24187,0.291486,0.0635322,0.4058,0.125552,0.29307,0.606201,0.573924,0.437051,0.0130513,0.144159,0.311682,0.123401,0.590553,0.682538,0.0537254,0.318027,0.951794,0.804282,0.166112,0.909494,0.591327,0.768399,0.29368,0.687956,0.110353,0.940313,0.235011,0.896014,0.162753,0.701154,0.454167,0.609822,0.853752,0.0980961,0.991128,0.16203,0.988322,0.0807539,0.722367,0.343431,0.996684,0.000346363,0.758278,0.849665,0.265908,0.356505,0.946699,0.336094,0.686661,0.94339,0.109706,0.45234,0.67237,0.683919,0.18015,0.327008,0.521502,0.366392,0.667083,0.440379,0.721776,0.779712,0.908651,0.455957,0.138714,0.0563411,0.530961,0.814419,0.0828897,0.56343,0.541545,0.722431,0.52819,0.0176564,0.150404,0.230863,0.692302,0.730631,0.93752,0.816956,0.146438,0.276726,0.858902,0.798595,0.462048,0.882044,0.439661,0.746292,0.317085,0.902135,0.159295,0.342356,0.308022,0.635876,0.867701,0.85221,0.87835,0.287431,0.391818,0.74505,0.783106,0.764777,0.188694,0.619794,0.0527588,0.0956826,0.734325,0.0880791,0.988818,0.797289,0.501115,0.345598,0.945999,0.709189,0.347692,0.465999,0.753667,0.82763,0.850204,0.462211,0.180353,0.561462,0.859591,0.353798,0.102321,0.135744,0.515688,0.381234,0.863271,0.19954,0.839102,0.287728,0.545716,0.773654,0.737999,0.735226,0.559845,0.00206208,0.633634,0.979889,0.0476246,0.196469,0.90701,0.165331,0.822677,0.925755,0.475203,0.837661,0.204896,0.44182,0.992638,0.0222397,0.922483,0.330753,0.130431,0.116061,0.769172,0.608148,0.933486,0.83283,0.927019,0.898693,0.802325,0.659752,0.961107,0.750025,0.851839,0.285833,0.056771,0.0447665,0.989185,0.684777,0.254672,0.211961,0.0982518,0.929136,0.495623,0.194819,0.725379,0.937998,0.134732,0.636216,0.682021,0.638232,0.267491,0.552828,0.625562,0.0222232,0.914055,0.353979,0.283379,0.684744,0.486094,0.732581,0.631234,0.616873,0.731167,0.455277,0.229155,0.681535,0.191691,0.822172,0.300253,0.399154,0.643281,0.500197,0.174169,0.470006,0.749647,0.939481,0.970021,0.229497,0.210363,0.965722,0.0734599,0.330495,0.614954,0.32929,0.435811,0.283465,0.622754,0.965922,0.992612,0.835099,0.378213,0.820103,0.662404,0.166631,0.409168,0.0125329,0.909859,0.71558,0.947773,0.312877,0.229337,0.498222,0.434211,0.490408,0.201081,0.912338,0.858998,0.625404,0.187441,0.0983045,0.0467554,0.446367,|0.517159,0.506139,0.49546,0.178677,0.926213,0.629946,0.125046,0.420061,0.228069,0.892942,0.414973,0.136937,0.202633,0.167827,0.629325,0.439584,0.111401,0.092634,0.256431,0.221329,0.449715,0.56282,0.769972,0.926496,0.759858,0.548726,0.283081,0.635136,0.531735,0.587639,0.718074,0.337763,0.491819,0.652444,0.3241,0.860545,0.380553,0.906352,0.975346,0.688787,0.515865,0.639202,0.635533,0.260125,0.855021,0.848305,0.368197,0.531428,0.736262,0.0337818,0.0732706,0.193337,0.830286,0.443963,0.909907,0.854342,0.710333,0.529601,0.881318,0.782953,0.240733,0.058232,0.0607277,0.190237,0.766385,0.178979,0.509682,0.51855,0.0185927,0.645338,0.633615,0.709626,0.656601,0.424867,0.519151,0.354362,0.258021,0.0195605,0.986719,0.383487,0.0322028,0.350334,0.709682,0.500741,0.665492,0.157133,0.16389,0.201293,0.00400084,0.345287,0.420473,0.93494,0.883192,0.382809,0.621421,0.580535,0.759941,0.940933,0.327855,0.282254,0.810853,0.510819,0.624578,0.486857,0.0912807,0.16679,0.13864,0.480336,0.718785,0.195728,0.864559,0.851499,0.844719,0.816007,0.247365,0.369117,0.137379,0.0509673,0.319744,0.880059,0.973875,0.441367,0.347644,0.155819,0.640449,0.606649,0.0295961,0.865158,0.697781,0.390793,0.134321,0.430902,0.392341,0.916808,0.211088,0.297738,0.765476,0.172129,0.880176,0.349987,0.999138,0.292399,0.400987,0.907252,0.67834,0.760256,0.525722,0.231821,0.727765,0.15157,0.677906,0.409982,0.803023,0.395611,0.872567,0.148113,0.765578,0.506577,0.351258,0.648327,0.115542,0.199079,0.134047,0.194768,0.744402,0.61922,0.179502,0.756072,0.27516,0.916802,0.871478,0.565017,0.376827,0.412423,0.99592,0.7189,0.284286,0.638253,0.077476,0.876196,0.801232,0.0271349,0.939419,0.407264,0.858061,0.795154,0.960328,0.400746,0.446548,0.603131,0.833428,0.209829,0.178186,0.0889499,0.202672,0.87732,0.65272,0.417174,0.545209,0.028019,0.492518,0.801259,0.210799,0.205487,0.185768,0.126426,0.970299,0.286547,0.932622,0.641946,0.297273,0.924663,0.311462,0.203052,0.578279,0.465351,0.554188,0.940573,0.558649,0.67502,0.482801,0.273559,0.42207,0.729113,0.57362,0.430452,0.701945,0.565167,0.246543,0.546161,0.88305,0.460652,0.718073,0.00441796,0.817948,0.775509,0.190581,0.64649,0.464293,0.205287,0.848612,0.938548,0.500194,0.623227,0.837723,0.668469,0.866234,0.807373,0.57429,0.491177,0.827344,0.421292,0.807829,0.345282,0.297767,0.704982,0.0810244,0.48497,0.0873667,0.363359,0.259678,0.864217,0.33632,0.440724,0.682667,0.973741,0.581834,0.979479,0.385368,0.942374,0.909728,0.423292,0.833125,0.872934,0.695662,0.434637,0.203084,0.391487,0.716685,0.903247,0.323961,0.644331,0.637128,0.175903,0.478703,0.547537,0.493306,0.93869,0.183457,0.594559,0.340611,0.543596,0.327176,0.756786,0.890572,0.467819,0.589489,0.914505,0.811834,0.221948,0.241387,0.793118,0.435692,0.0634708,0.815606,0.907071,0.924877,0.407786,0.698589,0.15692,0.0879786,0.679919,0.136889,0.984849,0.724883,0.0989597,0.724203,0.21818,0.995163,0.505434,0.262683,0.115827,0.0098964,0.503408,0.310444,0.66607,0.492859,0.16325,0.466677,0.328367,0.707729,0.694726,0.479626,0.0884669,0.11269,0.87867,0.807957,0.456725,0.127969,0.731015,0.619063,0.070034,0.996236,0.891966,0.310346,0.720625,0.372851,0.418696,0.590269,0.858033,0.452082,0.00917917,0.795357,0.764149,0.996119,0.347842,0.0329468,0.694176,0.316674,0.491041,0.743813,0.553423,0.125375,0.388706,0.337413,0.533055,0.260039,0.467736,0.820305,0.719028,0.710455,0.415169,0.148729,0.815215,0.0954185,0.740772,0.60038,0.815534,0.144014,0.684467,0.628054,0.839996,0.0785825,0.409007,0.639086,0.971966,0.725928,0.617209,0.911671,0.434068,0.229753,0.864756,0.654714,0.929152,0.906719,0.665782,0.167418,0.380062,0.0475997,0.790034,0.406128,0.614267,0.428655,0.559759,0.202668,0.347604,0.510922,0.151628,0.506548,0.262212,0.573336,0.0334367,0.143613,0.808816,0.676531,0.0392888,0.473517,0.16505,0.217552,0.0881046,0.420786,0.346297,0.62465,0.683304,0.631465,0.262023,0.563871,0.196856,0.860782,0.580883,0.968816,0.642382,0.164045,0.361983,0.769657,0.268229,0.957364,0.814231,0.215409,0.894126,0.747722,0.0387956,0.333397,0.56509,0.0387614,0.640746,0.852387,0.904961,0.542284,0.19046,0.313328,0.280258,0.174708,0.248978,0.148352,0.801207,0.133214,0.630873,0.4273,0.805076,0.484311,0.592342,0.140421,0.117774,0.208287,0.808798,0.160351,0.382411,0.11566,0.677487,0.348857,0.648897,0.410333,0.336982,0.0369406,0.37998,0.0178263,0.146249,0.765435,0.827539,0.221176,0.270971,0.817733,0.734498,0.705836,0.409932,0.886276,0.13375,0.860605,0.55754,0.285273,0.740381,0.247656,0.307161,0.482961,0.275935,0.270954,0.564717,0.590722,0.792194,0.840244,0.496636,0.417006,0.930684,0.470871,0.217403,0.673265,0.467649,0.141787,0.0389353,0.878966,0.815742,0.887289,0.82196,0.884483,0.697236,0.172908,0.453844,0.657336,0.076684,0.275473,0.568701,0.518911,0.185784,0.687419,0.841155,0.269242,0.446517,0.0733511,0.210711,0.281967,0.935817,0.681062,0.676749,0.529528,0.960698,0.90004,0.369362,0.264808,0.440351,0.810026,0.791973,0.116554,0.0688584,0.0940238,0.815635,0.865037,0.959696,0.611895,0.668096,0.783927,0.769404,0.243107,0.231551,0.278142,0.908633,0.571685,0.506427,0.405353,0.182423,0.751868,0.049314,0.7246,0.77451,0.467104,0.828765,0.730969,0.924159,0.371485,0.683139,0.765982,0.669629,0.0849934,0.75841,0.659412,0.620673,0.245484,0.0271645,0.117443,0.191399,0.206335,0.154588,0.66399,0.142811,0.113087,0.725953,0.897525,0.437997,0.74508,0.0599277,0.725783,0.229554,0.0104952,0.741942,0.0100441,0.414781,0.264435,0.235595,0.401415,0.0256528,0.758909,0.791866,0.282685,0.494728,0.844299,0.285077,0.217805,0.445021,0.437301,0.29534,0.797922,0.942997,0.688777,0.848323,0.417471,0.0665611,0.0347082,0.416423,0.792121,0.790547,0.281578,0.656544,0.60232,0.476175,0.318235,0.126597,0.682916,0.694919,0.185914,0.0324996,0.743417,0.110208,0.704076,0.955813,0.0424876,0.750981,0.24513,0.484411,0.523505,0.5524,0.458548,0.1301,0.515327,0.54294,0.354868,0.102869,0.137573,0.257999,0.0426348,0.893231,0.0882777,0.999669,0.827832,0.454319,0.437559,0.710667,0.382095,0.168097,0.647347,0.832755,0.221782,0.762023,0.607788,0.754426,0.665225,0.624541,0.616784,0.836591,0.147758,0.889959,0.0720873,0.195723,0.36193,0.903031,0.0784658,0.0865577,0.370732,0.277213,0.817715,0.344113,0.478657,0.103077,0.456995,0.81968,0.512341,0.737543,0.122778,0.874922,0.333219,0.132345,0.382004,0.0394897,0.820428,0.909695,0.686479,0.983343,0.487659,0.534577,0.656768,0.603861,0.700599,0.968567,0.404831,0.441521,0.048456,0.70254,0.0733731,0.621669,0.534287,0.22652,0.969431,0.968568,0.644529,0.708474,0.400492,0.609001,0.00539404,0.0464165,0.132156,0.658511,0.259309,0.706904,0.905988,0.482861,0.537143,0.767773,0.528783,0.925374,0.442242,0.0406098,0.940752,0.619455,0.760515,0.91779,0.607051,0.733876,0.0932894,0.785321,0.942055,0.984019,0.71504,0.266964,0.00519884,0.812306,0.371214,0.0687181,0.558677,0.317191,0.590697,0.593351,0.656332,0.419664,0.554738,0.912362,0.521379,0.947472,0.0755504,0.357068,0.890499,0.25557,0.501746,0.974695,0.837184,0.820317,0.594578,0.882127,0.202893,0.0212883,0.429121,0.448123,0.624019,0.364779,0.812684,0.99162,0.149134,0.354961,0.340633,0.543791,0.134318,0.708613,0.185152,0.751323,0.134407,0.785601,0.0666934,0.981331,0.355161,0.526869,0.699716,0.113837,0.419594,0.79152,0.00726229,0.8782,0.578253,0.512262,0.234162,0.901664,0.341643,0.971429,0.212717,0.878469,0.89501,0.896156,0.743251,0.108289,0.397959,0.482179,0.459976,0.320165,0.40516,0.928616,0.293624,0.384322,0.657854,0.851436,0.110447,0.309688,0.217938,0.147657,0.344895,0.204359,0.412748,0.729902,0.785183,0.683291,0.141752,0.618178,0.331948,0.370933,0.391127,0.563316,0.105765,0.826199,0.89651,0.259474,0.65379,0.540747,0.729792,0.0362569,0.595996,0.709963,0.590696,0.0509094,0.439993,0.00220191,0.767046,0.290087,0.495358,0.795481,0.510399,0.551239,0.521388,0.511225,0.90877,0.28042,0.604986,0.216859,0.0216046,0.902999,0.498829,0.905117,0.905258,0.613611,0.750837,0.568301,0.802383,0.570526,0.699421,0.334234,0.267176,0.112465,0.557827,0.02542,0.684235,0.681479,0.0435418,0.53369,0.301162,0.993586,0.281391,0.647882,0.259187,0.953753,0.361725,0.022021,0.105855,0.008187,0.05062,0.818331,0.862771,0.00817364,0.710421,0.472989,0.682459,0.148628,0.135726,0.469277,0.441873,0.269025,0.546239,0.637612,0.0410277,0.175311,0.234473,0.788003,0.402298,0.0838932,0.989136,0.845983,0.0677712,0.96503,0.371101,0.582176,0.560859,0.404695,0.633477,0.703791,0.687147,0.686153,0.874928,0.834041,0.0599115,0.982349,0.374271,0.699758,0.662666,0.297218,0.043442,0.636506,0.955524,0.987278,0.988152,0.139337,0.850412,0.143404,0.0332136,0.17447,0.0438876,0.526845,0.509146,0.667302,0.772977,0.221935,0.97739,0.418509,0.0818368,0.479043,0.239139,0.499496,0.411451,0.177129,0.620403,0.515119,0.351614,0.156961,0.0267418,0.715191,0.212466,0.943315,0.53102,0.88617,0.483154,0.48472,0.839909,0.869886,0.257009,0.302466,0.922928,0.371306,0.502492,0.743797,0.525674,0.516502,0.36786,0.960068,0.79043,0.546852,0.0243445,0.940937,0.0433464,0.0166811,0.39451,0.783524,0.525769,0.994502,0.162951,0.306558,0.598829,0.937823,0.911528,0.755003,0.59596,0.159124,0.828844,0.76337,0.260191,0.254812,0.950681,0.755779,|0.803003,0.262638,0.991007,0.0975806,0.942966,0.565164,0.726933,0.910401,0.898249,0.402982,0.0647584,0.304433,0.20837,0.822252,0.355163,0.369826,0.744155,0.540487,0.818813,0.732854,0.494502,0.657479,0.1551,0.919174,0.858714,0.441536,0.241833,0.0499225,0.332837,0.756067,0.49804,0.839708,0.670293,0.767335,0.79635,0.610609,0.85281,0.256385,0.185523,0.086798,0.575438,0.0215026,0.753017,0.831594,0.282914,0.489672,0.500591,0.0179891,0.00312388,0.800712,0.343538,0.00351429,0.594868,0.652947,0.774098,0.516906,0.57945,0.246734,0.989188,0.385532,0.7386,0.518505,0.0692184,0.157681,0.00653195,0.416677,0.758861,0.917884,0.114278,0.781493,0.916412,0.95492,0.679881,0.602198,0.422233,0.167273,0.54805,0.107917,0.807087,0.848676,0.1005,0.165196,0.707479,0.222204,0.746705,0.0650021,0.265689,0.186994,0.120022,0.63191,0.880798,0.73239,0.236641,0.90474,0.695709,0.292692,0.337848,0.101822,0.6882,0.976435,0.250228,0.578418,0.809946,0.346728,0.0888321,0.355061,0.892581,0.777109,0.910942,0.401516,0.710129,0.354747,0.804199,0.658966,0.802941,0.655856,0.635066,0.42488,0.225547,0.076848,0.607842,0.621938,0.621502,0.117158,0.422847,0.336671,0.551003,0.71533,0.60832,0.516033,0.0546371,0.144414,0.303511,0.14263,0.792241,0.450091,0.936442,0.915103,0.676485,0.249239,0.56764,0.256956,0.892624,0.465041,0.125345,0.111705,0.320656,0.0082956,0.273924,0.194116,0.759207,0.399454,0.778166,0.886531,0.831454,0.495777,0.771338,0.852439,0.280554,0.862085,0.440594,0.527824,0.716303,0.238011,0.746153,0.826323,0.472146,0.0942368,0.572886,0.332004,0.330543,0.530064,0.145668,0.69476,0.647799,0.918688,0.0783384,0.368791,0.7704,0.290668,0.218135,0.512766,0.599026,0.120079,0.188153,0.145798,0.365345,0.896685,0.528665,0.595425,0.152696,0.369507,0.26261,0.219105,0.663016,0.170252,0.340267,0.0627497,0.0584006,0.294768,0.116978,0.487114,0.479217,0.498141,0.878109,0.381316,0.148122,0.00962019,0.833938,0.554709,0.208644,0.808546,0.747735,0.292173,0.796796,0.84972,0.969414,0.404792,0.544351,0.0423356,0.955078,0.9078,0.543464,0.392712,0.0112748,0.954253,0.281205,0.497374,0.38306,0.077213,0.395978,0.782127,0.691987,0.418232,0.166903,0.748759,0.768329,0.143307,0.646575,0.724483,0.938042,0.341911,0.120562,0.980044,0.832501,0.932601,0.467652,0.522485,0.486967,0.461907,0.682088,0.560295,0.701685,0.955102,0.20838,0.386885,0.498018,0.0918176,0.899616,0.59928,0.74011,0.452138,0.948923,0.704937,0.154439,0.400186,0.995969,0.273811,0.360229,0.351513,0.42799,0.641537,0.194013,0.393171,0.882104,0.914695,0.163489,0.50263,0.278157,0.687879,0.704832,0.485781,0.623555,0.467312,0.698485,0.0389332,0.0419874,0.76223,0.251455,0.30865,0.485877,0.582087,0.418116,0.8167,0.894405,0.0765582,0.700753,0.305388,0.604416,0.718991,0.288057,0.378002,0.224695,0.0650738,0.0463622,0.613405,0.98789,0.472195,0.889077,0.436359,0.342303,0.776766,0.719528,0.817464,0.350477,0.36011,0.683467,0.683325,0.972911,0.0866876,0.371207,0.797992,0.232809,0.878232,0.474934,0.790169,0.96474,0.948014,0.44356,0.497265,0.222834,0.718082,0.00567615,0.546111,0.640523,0.572483,0.881891,0.293433,0.886088,0.24049,0.925498,0.339156,0.439574,0.668728,0.875148,0.502409,0.567266,0.508686,0.9411,0.960844,0.721863,0.974865,0.487349,0.192955,0.61959,0.836738,0.265198,0.828889,0.477134,0.876186,0.167365,0.626552,0.446107,0.78411,0.0302265,0.259222,0.65145,0.184212,0.0829927,0.782483,0.345451,0.298935,0.891091,0.749646,0.107377,0.517153,0.427648,0.253804,0.628513,0.774696,0.912151,0.346043,0.717485,0.730761,0.456546,0.852832,0.604606,0.629023,0.992026,0.350418,0.726373,0.229071,0.0286627,0.0750264,0.334704,0.452982,0.0919316,0.523772,0.0209335,0.558738,0.510749,0.0356501,0.342835,0.396069,0.0251905,0.397705,0.938833,0.200352,0.243801,0.463463,0.708111,0.648503,0.519421,0.676589,0.0788307,0.382362,0.428116,0.0242648,0.610396,0.973105,0.422976,0.705881,0.97731,0.0228603,0.842004,0.965487,0.952911,0.192082,0.786569,0.254859,0.369448,0.192336,0.17078,0.733656,0.574733,0.546259,0.571974,0.278046,0.909023,0.329409,0.328486,0.51964,0.193933,0.15853,0.296997,0.269145,0.928624,0.110366,0.058482,0.969604,0.0084976,0.0283752,0.76961,0.130266,0.751445,0.960845,0.653102,0.494996,0.734165,0.576753,0.685385,0.068829,0.836318,0.799994,0.424614,0.964607,0.306383,0.647468,0.445944,0.73434,0.273708,0.450964,0.617381,0.695211,0.97896,0.739769,0.750452,0.838833,0.72937,0.321551,0.617191,0.755594,0.024586,0.21517,0.109162,0.815033,0.590384,0.662422,0.336255,0.478527,0.484252,0.698727,0.154241,0.125358,0.297307,0.375442,0.919925,0.375929,0.909158,0.9446,0.565358,0.918938,0.154752,0.429852,0.0772386,0.443468,0.0900273,0.783589,0.376275,0.655205,0.946572,0.0801961,0.729151,0.821322,0.841004,0.253075,0.962587,0.232669,0.907253,0.943753,0.374896,0.938168,0.124687,0.937845,0.869663,0.22732,0.014386,0.37612,0.613094,0.819328,0.720982,0.138343,0.510342,0.560465,0.591145,0.33595,0.173475,0.781709,0.00710011,0.286597,0.40554,0.6463,0.999931,0.492659,0.827602,0.662347,0.377835,0.394116,0.98683,0.900047,0.076006,0.205029,0.963697,0.953838,0.588437,0.547455,0.633761,0.989153,0.0688199,0.746804,0.949675,0.68338,0.483653,0.65052,0.830486,0.366259,0.342086,0.937505,0.27649,0.924556,0.986621,0.932421,0.461412,0.166587,0.441798,0.146654,0.0372364,0.654513,0.567388,0.453588,0.437447,0.141809,0.562702,0.291371,0.730284,0.462232,0.668694,0.353455,0.0518755,0.527472,0.951837,0.680571,0.328902,0.535609,0.40786,0.388566,0.428777,0.631543,0.220817,0.928349,0.235192,0.000979006,0.876885,0.704166,0.532184,0.690471,0.127084,0.67252,0.803927,0.298078,0.267521,0.133324,0.908212,0.9608,0.944572,0.437596,0.730138,0.507657,0.683022,0.54969,0.881662,0.458571,0.407126,0.905414,0.538666,0.570584,0.740411,0.947062,0.652289,0.959642,0.887977,0.894933,0.537671,0.0675018,0.126778,0.0112255,0.439443,0.26777,0.865228,0.214703,0.70473,0.643245,0.84817,0.569128,0.537415,0.715918,0.258435,0.870271,0.858144,0.853069,0.896514,0.742682,0.74412,0.171793,0.656243,0.5972,0.579947,0.281029,0.383736,0.743179,0.043871,0.0971094,0.560309,0.715989,0.23367,0.43102,0.5456,0.636757,0.495798,0.160934,0.391348,0.508166,0.971163,0.761759,0.62502,0.0338381,0.666464,0.605416,0.0395995,0.151779,0.143288,0.422519,0.845783,0.686348,0.0861043,0.660795,0.974156,0.121411,0.86213,0.760696,0.972651,0.243584,0.532797,0.794886,0.683607,0.55735,0.804436,0.3751,0.246863,0.240266,0.544896,0.982693,0.515929,0.85477,0.329192,0.138841,0.0698643,0.289478,0.139795,0.98898,0.276752,0.30272,0.485229,0.580952,0.200111,0.311302,0.0503811,0.367653,0.859637,0.441136,0.892442,0.96317,0.0102373,0.957229,0.0925307,0.92801,0.634977,0.123363,0.849568,0.355119,0.315905,0.666522,0.0426894,0.255179,0.913261,0.107237,0.953731,0.83219,0.660356,0.331896,0.545313,0.90804,0.868161,0.66391,0.568274,0.320934,0.268885,0.421325,0.579982,0.120704,0.401569,0.141513,0.653834,0.544633,0.544329,0.982761,0.641586,0.141059,0.780515,0.161356,0.676586,0.324011,0.981538,0.210267,0.732684,0.36149,0.584945,0.955026,0.328616,0.141924,0.395147,0.120357,0.0829065,0.458544,0.138215,0.478556,0.0519835,0.935084,0.915694,0.419505,0.0859399,0.72329,0.654781,0.443466,0.235509,0.00584465,0.647602,0.434949,0.821467,0.0584061,0.622122,0.936387,0.374255,0.338036,0.235466,0.140598,0.0457526,0.63871,0.249331,0.898419,0.646562,0.216533,0.604311,0.918052,0.462648,0.268462,0.0116722,0.720144,0.812344,0.764515,0.940382,0.345919,0.63684,0.5327,0.43673,0.86762,0.570835,0.332721,0.588951,0.525483,0.770924,0.700925,0.57561,0.575972,0.867159,0.904872,0.610308,0.150953,0.0226568,0.105665,0.737858,0.715362,0.0881149,0.0334608,0.90336,0.344843,0.731182,0.644298,0.674514,0.354188,0.0963843,0.946446,0.17723,0.605082,0.112923,0.0292091,0.923521,0.515538,0.454186,0.7507,0.931311,0.382379,0.686038,0.239062,0.506594,0.618209,0.608554,0.792181,0.313249,0.82973,0.300725,0.360833,0.564032,0.489762,0.194057,0.438182,0.821996,0.0997088,0.831095,0.589098,0.0728389,0.372475,0.598168,0.484127,0.407333,0.415756,0.213876,0.348538,0.398572,0.951659,0.618754,0.395533,0.475671,0.589201,0.244511,0.380672,0.980339,0.760509,0.170891,0.647058,0.472655,0.637113,0.0303064,0.444569,0.0395931,0.0927241,0.262967,0.32001,0.412682,0.880886,0.957768,0.0238867,0.209467,0.8643,0.735587,0.54382,0.906882,0.222949,0.795638,0.900551,0.061258,0.247303,0.143117,0.996015,0.456666,0.278319,0.781589,0.200076,0.652696,0.306567,0.549919,0.435043,0.363799,0.258393,0.373344,0.807575,0.0704297,0.998753,0.745016,0.407692,0.885552,0.840584,0.712389,0.386868,0.0481194,0.235326,0.130013,0.16774,0.872953,0.669943,0.0337605,0.123874,0.39843,0.0471244,0.133471,0.274941,0.631091,0.469476,0.62342,0.74112,0.495554,0.932152,0.82492,0.347385,0.550197,0.713137,0.559041,0.429042,0.177152,0.977104,0.416702,0.285655,0.870478,0.628254,0.237946,0.585808,0.856525,0.550965,0.106357,0.732794,0.610442,0.920841,0.564257,0.556412,0.988883,0.00732309,0.966135,0.114907,0.510564,0.352646,0.393321,0.652779,0.347057,0.741829,0.166162,0.43658,0.0181323,0.709668,0.128887,0.607531,0.0191119,0.429555,0.600067,0.552687,0.317252,0.379713,0.046707,0.720972,0.735402,0.7062,|0.692324,0.21197,0.985183,0.617821,0.0288163,0.424145,0.418031,0.921853,0.104164,0.55976,0.524179,0.471112,0.762783,0.0962032,0.30656,0.932098,0.153372,0.241461,0.15157,0.728831,0.462744,0.553196,0.59484,0.0980588,0.631261,0.427993,0.126925,0.375848,0.840172,0.433837,0.0419358,0.742634,0.316742,0.18729,0.717259,0.805276,0.847479,0.502117,0.407266,0.699666,0.401895,0.80012,0.015319,0.603888,0.0474187,0.438278,0.488813,0.0466912,0.372668,0.0604002,0.708757,0.313113,0.595554,0.51788,0.332087,0.104438,0.409951,0.115616,0.259825,0.0302176,0.200092,0.728096,0.125428,0.109248,0.592233,0.896368,0.0311826,0.753039,0.476273,0.232928,0.642804,0.405733,0.568794,0.893574,0.507086,0.783087,0.0306912,0.89312,0.708312,0.271276,0.464408,0.314321,0.862463,0.425929,0.70543,0.0241336,0.659645,0.2134,0.093521,0.226445,0.651058,0.988666,0.766599,0.390447,0.78248,0.180811,0.892562,0.00783366,0.540959,0.839789,0.751841,0.145702,0.838969,0.631412,0.776027,0.184418,0.595812,0.355896,0.665482,0.656679,0.0924788,0.710521,0.547349,0.38375,0.522386,0.873359,0.544795,0.172969,0.762305,0.649116,0.552015,0.742446,0.0935825,0.845362,0.68882,0.115991,0.147855,0.647259,0.455115,0.982494,0.374152,0.291993,0.980655,0.51021,0.190038,0.835766,0.40066,0.70991,0.823038,0.145846,0.513209,0.299102,0.213484,0.177052,0.748161,0.727547,0.838221,0.912335,0.180852,0.173006,0.361417,0.841493,0.927485,0.947006,0.606589,0.601799,0.922539,0.191764,0.863967,0.498227,0.426991,0.891841,0.963114,0.516545,0.530879,0.0779554,0.630757,0.922242,0.83249,0.0808997,0.941449,0.367975,0.269207,0.706946,0.515823,0.499799,0.942497,0.620337,0.989837,0.4931,0.377609,0.750487,0.769424,0.00659704,0.711718,0.121817,0.0194317,0.00334394,0.603496,0.526623,0.318744,0.655812,0.669478,0.262224,0.716138,0.988798,0.292325,0.18892,0.993261,0.265951,0.530594,0.491028,0.688333,0.403413,0.221977,0.155738,0.994133,0.419489,0.309989,0.176539,0.943214,0.67882,0.200952,0.970716,0.302057,0.49928,0.629688,0.499179,0.376893,0.48959,0.750928,0.573312,0.730249,0.800187,0.620439,0.864874,0.998476,0.721534,0.827078,0.881483,0.288687,0.680856,0.571321,0.981943,0.194004,0.849943,0.885162,0.832651,0.401252,0.597575,0.336541,0.0728353,0.767681,0.71253,0.556918,0.788911,0.828227,0.904113,0.451566,0.792401,0.725948,0.190014,0.851521,0.448449,0.503124,0.820607,0.385037,0.0886647,0.970236,0.557131,0.153139,0.75178,0.249875,0.133674,0.93026,0.126325,0.833239,0.941381,0.0350572,0.16208,0.64083,0.0536107,0.454828,0.412354,0.879339,0.936387,0.483652,0.898318,0.417017,0.593509,0.829284,0.232953,0.385778,0.176146,0.735699,0.825007,0.466787,0.54971,0.359474,0.829313,0.208753,0.0877439,0.125527,0.351895,0.880687,0.88265,0.375583,0.924762,0.412491,0.218513,0.837882,0.651021,0.661048,0.208894,0.639763,0.357739,0.368656,0.969255,0.394389,0.670006,0.17735,0.486055,0.359179,0.47329,0.256766,0.188016,0.0956129,0.658139,0.628901,0.109929,0.862745,0.169085,0.130488,0.265508,0.507505,0.404303,0.782152,0.805866,0.261957,0.0160846,0.544078,0.403133,0.730764,0.177599,0.760119,0.0346596,0.24019,0.216738,0.369711,0.946033,0.645032,0.487613,0.381321,0.627176,0.290773,0.999981,0.604003,0.513402,0.326911,0.363286,0.379436,0.625172,0.677125,0.5798,0.770578,0.97553,0.315475,0.952241,0.327473,0.641992,0.406354,0.210731,0.935945,0.906631,0.936014,0.275036,0.379503,0.969797,0.784965,0.425185,0.369366,0.802949,0.260754,0.247906,0.171522,0.788004,0.83765,0.0823279,0.183185,0.414848,0.824398,0.338382,0.239457,0.884486,0.917186,0.946779,0.325362,0.575161,0.897536,0.927275,0.214314,0.612788,0.303643,0.362393,0.412473,0.0271903,0.402496,0.879733,0.669629,0.565398,0.117672,0.229888,0.746355,0.447679,0.257339,0.755598,0.642011,0.72191,0.640512,0.278544,0.232328,0.151173,0.159628,0.0761473,0.0867823,0.645446,0.89436,0.730601,0.102005,0.447954,0.95628,0.140885,0.182271,0.358577,0.629705,0.267268,0.225166,0.380564,0.554079,0.24955,0.816918,0.815855,0.496746,0.0609162,0.674889,0.650655,0.525455,0.989847,0.0507308,0.44936,0.68707,0.664146,0.697961,0.990375,0.856899,0.807951,0.371213,0.753094,0.883236,0.0816469,0.75028,0.377895,0.306669,0.580899,0.245142,0.359505,0.500661,0.186825,0.0914181,0.428446,0.904399,0.0432291,0.536832,0.46938,0.828671,0.936189,0.745447,0.0133061,0.134347,0.32481,0.801603,0.463538,0.902582,0.94059,0.982866,0.15897,0.890338,0.0471041,0.907612,0.876326,0.673732,0.985283,0.844795,0.133944,0.66455,0.444394,0.216011,0.27577,0.188723,0.713036,0.293595,0.775589,0.723073,0.603716,0.546964,0.811447,0.178616,0.214199,0.758,0.427133,0.951878,0.0957823,0.569775,0.895758,0.190699,0.402159,0.576862,0.0628845,0.253767,0.901656,0.987366,0.121843,0.20741,0.865546,0.841646,0.210297,0.732225,0.125022,0.783109,0.431206,0.418133,0.399008,0.52849,0.164268,0.0957467,0.971968,0.899753,0.656743,0.96159,0.846061,0.578688,0.558762,0.443169,0.781578,0.194684,0.640208,0.0945864,0.871683,0.979022,0.67106,0.386848,0.308306,0.0789073,0.448804,0.235236,0.422022,0.660516,0.0226833,0.223578,0.937291,0.503058,0.483703,0.720827,0.988188,0.494276,0.586564,0.235791,0.681518,0.516626,0.829833,0.320855,0.432192,0.130653,0.796581,0.629428,0.0486958,0.810931,0.12883,0.128213,0.965951,0.573166,0.0569831,0.235003,0.13433,0.715869,0.273612,0.172378,0.120947,0.662102,0.555122,0.973369,0.749896,0.909193,0.881905,0.196404,0.83862,0.558107,0.720514,0.124276,0.739065,0.240116,0.392091,0.213211,0.0614808,0.402888,0.193019,0.256431,0.758024,0.360221,0.852975,0.657819,0.322743,0.38074,0.948805,0.0561979,0.744252,0.884463,0.963497,0.903187,0.935938,0.761233,0.352063,0.677016,0.972317,0.268696,0.406735,0.977655,0.409464,0.944464,0.765521,0.280092,0.434845,0.637129,0.425747,0.549533,0.525819,0.924378,0.79054,0.875184,0.502555,0.305468,0.938678,0.223764,0.996034,0.616825,0.877357,0.418896,0.202298,0.753873,0.300381,0.575992,0.860844,0.724203,0.313307,0.69559,0.93061,0.80097,0.923434,0.741958,0.862889,0.761922,0.691953,0.557918,0.0323577,0.102174,0.485541,0.393203,0.0114834,0.340028,0.890243,0.562012,0.461083,0.821142,0.841094,0.39187,0.464498,0.390383,0.986023,0.989801,0.577684,0.691118,0.282476,0.347802,0.298328,0.876328,0.558327,0.0630124,0.428128,0.677807,0.924593,0.73707,0.940722,0.503534,0.0583558,0.37159,0.861263,0.592337,0.171726,0.542875,0.469281,0.560452,0.403947,0.616224,0.249364,0.0910346,0.331646,0.5695,0.466381,0.468229,0.255826,0.269473,0.245499,0.918919,0.748028,0.997547,0.773483,0.655924,0.37982,0.000462294,0.31659,0.0499735,0.82113,0.134559,0.450474,0.431679,0.768568,0.902956,0.863991,0.201928,0.0562997,0.482946,0.897014,0.110367,0.507714,0.289176,0.721025,0.760812,0.228626,0.809036,0.65718,0.190375,0.237364,0.772159,0.153664,0.00792438,0.916877,0.312277,0.777042,0.908696,0.774559,0.238968,0.101327,0.29228,0.0827371,0.766589,0.398546,0.704679,0.119547,0.896556,0.986313,0.801597,0.85886,0.0232743,0.843551,0.81141,0.413439,0.940611,0.651263,0.12455,0.895691,0.578941,0.164304,0.815083,0.908801,0.355845,0.213042,0.396327,0.52147,0.176249,0.893129,0.026936,0.210244,0.708577,0.635747,0.430961,0.371321,0.383684,0.17933,0.0194681,0.0558565,0.325839,0.49393,0.48186,0.654837,0.358658,0.523428,0.49775,0.887367,0.712763,0.784169,0.394041,0.623404,0.174814,0.897235,0.884573,0.17087,0.698091,0.407796,0.64784,0.7136,0.949215,0.252973,0.530748,0.426565,0.885911,0.854537,0.565793,0.41464,0.691619,0.941445,0.166287,0.802819,0.0918661,0.675869,0.739173,0.107297,0.409749,0.232481,0.493317,0.62426,0.686294,0.957057,0.649243,0.806853,0.239287,0.991436,0.0893086,0.0106722,0.00787038,0.743088,0.447657,0.158438,0.561663,0.805613,0.10359,0.872575,0.896362,0.71619,0.413731,0.477228,0.056067,0.314647,0.793398,0.560363,0.516093,0.792043,0.290842,0.629964,0.668912,0.262567,0.302715,0.1152,0.953552,0.38873,0.0703764,0.647469,0.620818,0.775144,0.768525,0.925475,0.0808171,0.262357,0.825215,0.762958,0.138209,0.826592,0.210733,0.178596,0.129435,0.388004,0.456354,0.814343,0.783253,0.435455,0.653736,0.908217,0.42414,0.510126,0.73184,0.59978,0.306415,0.442125,0.505696,0.0610832,0.687204,0.936475,0.887806,0.119507,0.537082,0.726873,0.431074,0.271896,0.715065,0.747886,0.98588,0.89684,0.061794,0.883358,0.976518,0.529248,0.609982,0.457385,0.793476,0.113207,0.0561115,0.401708,0.562212,0.603532,0.764219,0.660653,0.400145,0.856502,0.755838,0.800578,0.319431,0.15424,0.401442,0.999802,0.0185165,0.700911,0.515758,0.582475,0.530901,0.842005,0.263814,0.649149,0.460526,0.97234,0.324206,0.725155,0.0754718,0.00459659,0.78857,0.392461,0.196738,0.131687,0.67203,0.88454,0.95869,0.154875,0.0141374,0.959824,0.558458,0.0808501,0.895921,0.116957,0.584811,0.611323,0.970626,0.532178,0.686728,0.785074,0.87318,0.456655,0.642901,0.00868821,0.276705,0.425393,0.314444,0.902904,0.508207,0.0244533,0.421224,0.0676234,0.520856,0.30796,0.33591,0.52343,0.805641,0.314695,0.0528041,0.824502,0.85301,0.912052,0.201068,0.077595,0.430622,0.200799,0.591623,0.344429,0.0341018,0.294552,0.526438,0.580668,0.580382,0.0936564,0.535576,0.192006,0.863187,0.188539,0.591466,0.846712,0.967564,0.625451,0.56752,0.945346,0.969629,0.823722,0.298589,0.520091,|0.506955,0.734543,0.020934,0.0288967,0.786094,0.0713663,0.200123,0.885089,0.141275,0.737284,0.648508,0.543024,0.0883909,0.952329,0.528275,0.407651,0.330811,0.165309,0.0573803,0.58155,0.279584,0.360271,0.326859,0.432917,0.924455,0.469607,0.735696,0.200926,0.433087,0.0578324,0.43715,0.620413,0.596412,0.961855,0.599298,0.426363,0.379898,0.332137,0.534863,0.564841,0.736769,0.470439,0.388573,0.337649,0.820393,0.69848,0.517199,0.598503,0.61606,0.0760325,0.373032,0.134704,0.376857,0.578647,0.794152,0.275232,0.538885,0.955049,0.0085752,0.0799755,0.105384,0.946569,0.00960183,0.0246096,0.263453,0.361741,0.484183,0.221537,0.629272,0.146355,0.722205,0.916827,0.880116,0.470001,0.509412,0.798377,0.0845941,0.693181,0.362721,0.939743,0.225983,0.510976,0.779356,0.814091,0.149687,0.755242,0.957932,0.331568,0.547524,0.0552389,0.0448927,0.621679,0.511675,0.280548,0.119058,0.709014,0.176591,0.7426,0.398189,0.77521,0.790933,0.433933,0.813405,0.963668,0.230118,0.422405,0.525919,0.153817,0.0177141,0.54721,0.908934,0.62848,0.379416,0.108541,0.204428,0.502069,0.83506,0.418192,0.736662,0.232459,0.192498,0.58872,0.765948,0.366732,0.725345,0.604393,0.728355,0.925307,0.418757,0.279904,0.891581,0.918318,0.774034,0.925264,0.827312,0.521137,0.736703,0.225808,0.252802,0.598609,0.102633,0.476011,0.00754833,0.608958,0.971079,0.360717,0.997069,0.492199,0.571088,0.36312,0.462886,0.098317,0.219617,0.340169,0.212857,0.109956,0.520764,0.514051,0.80469,0.0888945,0.127926,0.461266,0.743881,0.215129,0.235969,0.547128,0.120427,0.480036,0.959723,0.0140474,0.173074,0.709774,0.116332,0.987203,0.817194,0.0283499,0.770964,0.191191,0.0744041,0.609986,0.570296,0.941987,0.544711,0.0787805,0.832159,0.814301,0.689211,0.891895,0.394803,0.109979,0.869429,0.773487,0.401634,0.671196,0.173537,0.503911,0.321369,0.175449,0.379117,0.157439,0.225174,0.939702,0.643475,0.840885,0.549567,0.887812,0.647098,0.355552,0.271154,0.224383,0.459917,0.45786,0.969573,0.175212,0.256862,0.674725,0.00356865,0.644392,0.546655,0.915758,0.248206,0.815988,0.918854,0.421771,0.236242,0.172644,0.587146,0.246679,0.00647807,0.832959,0.742265,0.668527,0.78249,0.419462,0.0349563,0.543968,0.147783,0.0880294,0.419864,0.369852,0.0230043,0.0285234,0.404742,0.440382,0.01269,0.525029,0.472027,0.357853,0.983232,0.806392,0.0672849,0.156996,0.90988,0.783466,0.873783,0.250723,0.378668,0.491819,0.0355396,0.514121,0.526944,0.920219,0.0248141,0.363935,0.0254353,0.482271,0.735534,0.565721,0.466815,0.257842,0.215259,0.750352,0.274721,0.539948,0.846447,0.295313,0.296543,0.812315,0.1061,0.413805,0.599976,0.343079,0.411088,0.145048,0.0997245,0.133253,0.76171,0.637024,0.664151,0.0260105,0.305808,0.663106,0.7395,0.562168,0.521087,0.64533,0.176118,0.762329,0.424211,0.621837,0.919534,0.267407,0.788803,0.426621,0.990618,0.21118,0.623973,0.183179,0.888743,0.00218475,0.838122,0.598024,0.470708,0.116329,0.876731,0.497878,0.562594,0.313521,0.656153,0.0123833,0.624435,0.163716,0.285581,0.575275,0.657628,0.0825559,0.690137,0.0838661,0.656484,0.207389,0.9413,0.993721,0.829665,0.572469,0.566345,0.257384,0.125181,0.502701,0.506046,0.937463,0.85092,0.222189,0.209967,0.297606,0.320776,0.144018,0.00755757,0.431528,0.410174,0.284942,0.571463,0.592145,0.2224,0.845389,0.0377584,0.714546,0.573514,0.256201,0.837027,0.519625,0.248605,0.500773,0.926333,0.99435,0.895899,0.430963,0.565915,0.751981,0.849948,0.765104,0.701674,0.358248,0.529639,0.602501,0.596581,0.690803,0.77678,0.936701,0.0967364,0.854263,0.576847,0.570316,0.986893,0.444228,0.806706,0.634859,0.8518,0.253842,0.565377,0.136063,0.542796,0.766852,0.895427,0.230749,0.428347,0.0502507,0.500639,0.993538,0.708582,0.43333,0.353086,0.704016,0.800743,0.157777,0.152929,0.978448,0.501195,0.905485,0.691179,0.931531,0.956175,0.0436503,0.17173,0.418733,0.701114,0.167995,0.92169,0.815553,0.155331,0.733368,0.277607,0.983064,0.533822,0.239987,0.278872,0.763504,0.935117,0.549659,0.588199,0.996571,0.956939,0.661821,0.71521,0.615816,0.14524,0.25385,0.906591,0.31429,0.0253191,0.699432,0.559705,0.505731,0.436134,0.365021,0.689227,0.195099,0.220505,0.337012,0.429742,0.604648,0.640354,0.933555,0.398211,0.427364,0.696437,0.674799,0.206632,0.274498,0.00266945,0.791374,0.648493,0.658987,0.757813,0.736088,0.0595627,0.829772,0.139705,0.121133,0.145901,0.0623052,0.281797,0.690038,0.148293,0.434143,0.0507936,0.407833,0.447303,0.396762,0.0415331,0.42367,0.995369,0.1445,0.427414,0.0721629,0.565471,0.300241,0.681314,0.938903,0.744612,0.521759,0.499285,0.813381,0.427745,0.122987,0.399048,0.54046,0.327279,0.0421721,0.154143,0.857315,0.448707,0.808936,0.674672,0.277867,0.613439,0.433243,0.114889,0.403567,0.221126,0.269783,0.10511,0.734792,0.742418,0.472748,0.972102,0.0292845,0.177061,0.420511,0.455035,0.228969,0.27107,0.243699,0.564141,0.767473,0.543769,0.615451,0.753992,0.138779,0.717094,0.310384,0.586947,0.525446,0.669775,0.377425,0.0942876,0.332261,0.280923,0.328233,0.442332,0.97129,0.252997,0.316641,0.209492,0.517665,0.705278,0.450059,0.778298,0.185691,0.598354,0.359999,0.250613,0.0535261,0.786733,0.385047,0.178864,0.313777,0.635385,0.914571,0.83518,0.583999,0.411195,0.857492,0.932819,0.841569,0.0121729,0.899874,0.143674,0.272864,0.0358127,0.487196,0.594246,0.874849,0.444861,0.051462,0.705266,0.0967752,0.673745,0.387986,0.623857,0.02879,0.750464,0.486776,0.217825,0.413787,0.35789,0.390151,0.616352,0.278882,0.494698,0.574716,0.244136,0.957984,0.973251,0.141947,0.0727239,0.83195,0.0258711,0.720383,0.63727,0.402547,0.321124,0.76739,0.409973,0.416742,0.266765,0.539613,0.55874,0.71678,0.779251,0.360895,0.732769,0.0121776,0.000350654,0.139004,0.0169508,0.521122,0.0980119,0.239669,0.951656,0.673997,0.76313,0.434096,0.187204,0.775604,0.861947,0.786867,0.204226,0.99275,0.417542,0.543309,0.764062,0.814381,0.226,0.712725,0.121021,0.36357,0.304334,0.597243,0.801351,0.450317,0.512573,0.092164,0.949061,0.499863,0.361654,0.776995,0.882693,0.44541,0.309302,0.388872,0.83487,0.49912,0.789641,0.501931,0.199108,0.218576,0.339234,0.597467,0.111345,0.0317852,0.474449,0.914937,0.0278971,0.821242,0.709541,0.108154,0.306161,0.986747,0.416197,0.00120562,0.697164,0.00777024,0.368014,0.860143,0.366743,0.515721,0.236876,0.598376,0.0891808,0.648793,0.292771,0.211246,0.839754,0.718224,0.167071,0.216287,0.459575,0.194986,0.185517,0.201585,0.411819,0.435057,0.647384,0.315198,0.557817,0.971179,0.486107,0.188455,0.828911,0.223373,0.200325,0.110117,0.900563,0.814729,0.416037,0.188258,0.571972,0.561435,0.405752,0.889189,0.433636,0.0136225,0.868519,0.518196,0.113432,0.726316,0.985919,0.146841,0.312387,0.52018,0.0261278,0.411557,0.867835,0.191727,0.320004,0.552346,0.300021,0.317981,0.209843,0.455952,0.316481,0.760427,0.177929,0.283641,0.870122,0.05996,0.651732,0.825727,0.518519,0.53655,0.0693653,0.432801,0.646529,0.512577,0.175393,0.539306,0.972834,0.231727,0.821159,0.938577,0.645529,0.59757,0.74463,0.951596,0.789297,0.619839,0.511777,0.214531,0.495996,0.299991,0.319154,0.587435,0.308054,0.53498,0.57362,0.999102,0.493104,0.28406,0.0760069,0.541964,0.545975,0.436274,0.348616,0.62869,0.973717,0.917216,0.145028,0.437607,0.574334,0.234222,0.39952,0.049986,0.0219732,0.40835,0.846937,0.36915,0.179374,0.943022,0.130543,0.292392,0.859572,0.218538,0.465582,0.130428,0.051824,0.805127,0.534898,0.537843,0.907653,0.743353,0.746389,0.854936,0.554357,0.0721518,0.867792,0.360422,0.651902,0.229073,0.175998,0.06805,0.753764,0.757479,0.90281,0.880112,0.220174,0.817272,0.717036,0.180073,0.410952,0.0948344,0.457465,0.600682,0.0173932,0.449553,0.507995,0.120403,0.348604,0.507469,0.86891,0.873036,0.716265,0.853449,0.821102,0.345217,0.401708,0.464123,0.672697,0.731066,0.913251,0.719071,0.303458,0.955414,0.549853,0.31062,0.935462,0.33097,0.572854,0.513755,0.137505,0.349958,0.48311,0.777646,0.272756,0.793931,0.0913214,0.676842,0.313647,0.918577,0.738643,0.69482,0.507919,0.0499513,0.040571,0.376001,0.397996,0.766854,0.286386,0.389837,0.998352,0.264992,0.110956,0.24914,0.753334,0.12241,0.983608,0.521459,0.553788,0.138225,0.498045,0.122822,0.382277,0.818609,0.927109,0.298887,0.603728,0.373022,0.348481,0.807091,0.40275,0.597069,0.32838,0.505738,0.187441,0.920123,0.619587,0.778711,0.72152,0.67947,0.844647,0.97049,0.986171,0.951903,0.907595,0.566616,0.674531,0.389808,0.766221,0.778798,0.848551,0.289642,0.719387,0.369155,0.236029,0.909178,0.216866,0.263051,0.819861,0.644246,0.472098,0.992758,0.722527,0.127214,0.352116,0.808863,0.420277,0.0913826,0.201961,0.992294,0.614356,0.144725,0.323549,0.659111,0.818314,0.497138,0.179136,0.177303,0.0774885,0.423663,0.886604,0.0874913,0.197839,0.245422,0.762316,0.57438,0.791908,0.197035,0.375055,0.895989,0.747605,0.143436,0.646099,0.120115,0.647479,0.769739,0.553543,0.988657,0.690749,0.846033,0.435355,0.39218,0.752241,0.986873,0.716611,0.902723,0.920158,0.878688,0.811174,0.472893,0.984468,0.823497,0.848384,0.375325,0.455015,0.488084,0.781834,0.696716,0.958355,0.382732,0.790305,0.301162,0.883864,0.515227,0.288642,0.301175,0.592858,0.00660962,0.222466,0.574018,0.240481,0.858499,0.477546,0.179958,0.766185,0.0571906,0.523131,0.221752,0.488129,0.78572,0.993514,0.535893,|0.334355,0.874159,0.0164914,0.668511,0.0912975,0.794992,0.0294253,0.0246415,0.181243,0.637371,0.451127,0.0327565,0.704705,0.990812,0.797456,0.666691,0.773812,0.0419962,0.6044,0.0430081,0.854644,0.651866,0.944422,0.0689899,0.867167,0.0439216,0.598199,0.484157,0.531761,0.345609,0.55807,0.298398,0.295444,0.284182,0.735527,0.288539,0.303832,0.140756,0.662829,0.54157,0.939573,0.16035,0.875945,0.249581,0.713161,0.330211,0.648557,0.366576,0.647817,0.629072,0.201492,0.368845,0.275894,0.32617,0.971374,0.0397604,0.550224,0.517267,0.763521,0.580208,0.927076,0.34367,0.659538,0.638234,0.240473,0.789764,0.863368,0.972729,0.138044,0.466797,0.149783,0.834907,0.584665,0.331502,0.726621,0.66751,0.517783,0.463718,0.513801,0.0232534,0.931901,0.12214,0.747741,0.966353,0.248566,0.171907,0.760295,0.593978,0.694196,0.136931,0.232042,0.591291,0.844312,0.681569,0.255268,0.961786,0.324564,0.260802,0.647716,0.0275821,0.088209,0.592205,0.0950296,0.147253,0.926631,0.389806,0.866489,0.55923,0.630511,0.994641,0.926966,0.216396,0.0868784,0.133861,0.142077,0.0529237,0.568743,0.483747,0.41411,0.838234,0.835344,0.974567,0.331518,0.23333,0.708454,0.23335,0.368841,0.50126,0.113779,0.0672753,0.988814,0.237597,0.576521,0.596885,0.416601,0.172378,0.9307,0.388303,0.53236,0.929227,0.558871,0.800796,0.623407,0.642223,0.0236257,0.0749184,0.367876,0.407485,0.768412,0.133085,0.544902,0.148838,0.253428,0.190189,0.762458,0.996548,0.726457,0.153704,0.41857,0.715713,0.269096,0.796407,0.429892,0.783021,0.33699,0.905474,0.147089,0.0134458,0.434319,0.547978,0.197359,0.48485,0.619601,0.06343,0.856282,0.164289,0.760321,0.887262,0.241987,0.144915,0.666403,0.659539,0.934281,0.580453,0.891535,0.0900047,0.986451,0.912674,0.972074,0.123995,0.270083,0.556188,0.805812,0.42947,0.900512,0.752161,0.943398,0.557831,0.305121,0.844489,0.172142,0.488054,0.056154,0.717234,0.00368249,0.423733,0.452948,0.858532,0.505397,0.699095,0.0886826,0.683912,0.331129,0.0478355,0.28229,0.428163,0.0786151,0.925595,0.716109,0.581302,0.950294,0.799793,0.498411,0.288559,0.354114,0.16948,0.644272,0.588865,0.150613,0.779389,0.980087,0.714246,0.769644,0.419224,0.726044,0.108321,0.71775,0.145022,0.328336,0.62895,0.0863298,0.390603,0.752167,0.920525,0.77656,0.743219,0.938515,0.332263,0.752411,0.518751,0.196056,0.597116,0.251785,0.224633,0.824804,0.826153,0.0664731,0.906224,0.353616,0.0610789,0.469421,0.377266,0.976854,0.606707,0.127979,0.246295,0.917722,0.715672,0.742191,0.852453,0.140488,0.800507,0.0567908,0.189205,0.188752,0.857085,0.602427,0.408017,0.601913,0.102079,0.327006,0.925308,0.163142,0.250833,0.973913,0.316133,0.245248,0.70434,0.868995,0.976553,0.256591,0.450578,0.40503,0.49231,0.953985,0.19313,0.248351,0.923246,0.853453,0.712549,0.566606,0.0539606,0.231063,0.857234,0.619583,0.850645,0.554585,0.817201,0.683421,0.64774,0.183577,0.302381,0.849477,0.764988,0.79451,0.871505,0.513345,0.789064,0.790122,0.634818,0.619581,0.705291,0.382502,0.719656,0.912254,0.794714,0.605071,0.627745,0.245876,0.12493,0.6566,0.668529,0.0647892,0.88234,0.475773,0.456386,0.30514,0.500448,0.628817,0.317415,0.579919,0.439273,0.0352135,0.12198,0.145246,0.38312,0.575416,0.38466,0.262682,0.421779,0.75327,0.617201,0.169885,0.707487,0.0923045,0.531395,0.719481,0.49849,0.325328,0.294618,0.61744,0.0445108,0.799028,0.8113,0.797408,0.880708,0.559623,0.423731,0.295846,0.462961,0.429167,0.50327,0.898262,0.577689,0.00589043,0.885457,0.124646,0.735558,0.388422,0.511994,0.792715,0.0159452,0.559582,0.331268,0.940261,0.833061,0.445869,0.942367,0.78326,0.455406,0.52251,0.390213,0.902899,0.239423,0.893661,0.573657,0.82924,0.796515,0.305897,0.295401,0.655759,0.26057,0.816613,0.544714,0.24393,0.220696,0.965768,0.904207,0.229289,0.876293,0.202068,0.0892859,0.492234,0.451268,0.615839,0.173191,0.499127,0.741164,0.718772,0.177792,0.054043,0.874776,0.823516,0.693298,0.00649911,0.808335,0.0341452,0.471485,0.320372,0.545109,0.0322382,0.209935,0.771206,0.154347,0.749708,0.795898,0.411479,0.400317,0.775295,0.393819,0.0344055,0.395275,0.253401,0.367507,0.0206667,0.475443,0.432168,0.0325249,0.579463,0.644607,0.822526,0.395301,0.721225,0.050036,0.591743,0.562273,0.428799,0.971404,0.774813,0.133762,0.65722,0.248702,0.483443,0.0711858,0.494341,0.656605,0.880191,0.181645,0.29699,0.0460294,0.780038,0.338828,0.373449,0.576773,0.41136,0.096506,0.809949,0.565896,0.170762,0.12889,0.276534,0.0425457,0.672772,0.842475,0.466288,0.405887,0.784759,0.526596,0.723028,0.833749,0.0579552,0.78003,0.577333,0.623824,0.957274,0.13282,0.679007,0.314979,0.0854735,0.695746,0.444094,0.990025,0.197567,0.536715,0.323456,0.450624,0.622576,0.385209,0.0517427,0.118214,0.0185857,0.71204,0.370802,0.471621,0.486022,0.0100845,0.808353,0.847648,0.588724,0.232973,0.508366,0.631223,0.860147,0.973464,0.667776,0.00173521,0.0830334,0.935835,0.821329,0.238474,0.210539,0.908035,0.0616125,0.127772,0.918872,0.767566,0.334126,0.52221,0.0986466,0.0665579,0.909428,0.650188,0.88835,0.26636,0.558288,0.173373,0.166256,0.689841,0.621996,0.826778,0.401259,0.101765,0.708595,0.209165,0.0722554,0.49122,0.660516,0.111226,0.170601,0.954407,0.447557,0.758577,0.945503,0.392653,0.126336,0.810793,0.282726,0.436261,0.112813,0.507082,0.0450084,0.58376,0.358959,0.614073,0.177651,0.762061,0.574074,0.892991,0.433573,0.676101,0.213878,0.47558,0.945423,0.850761,0.503862,0.0944861,0.252731,0.988593,0.315337,0.71385,0.122242,0.138838,0.877328,0.0122069,0.305862,0.910561,0.844137,0.617756,0.792317,0.156087,0.459227,0.858576,0.479885,0.759432,0.301828,0.331456,0.297152,0.463677,0.045638,0.85727,0.882706,0.0997278,0.401174,0.935272,0.223027,0.24822,0.932327,0.740223,0.0507678,0.412465,0.744315,0.795879,0.458388,0.0153484,0.362324,0.0522994,0.171546,0.328549,0.564993,0.528076,0.647924,0.333438,0.713458,0.557131,0.471957,0.146104,0.779518,0.753799,0.765668,0.686894,0.570946,0.407076,0.869843,0.0643835,0.124897,0.918182,0.477642,0.899919,0.798345,0.330883,0.147728,0.323816,0.965859,0.229425,0.63339,0.181686,0.871718,0.203924,0.57415,0.750028,0.715091,0.772963,0.908035,0.671127,0.144095,0.409073,0.97061,0.566521,0.987732,0.937708,0.310681,0.886002,0.216641,0.545172,0.326581,0.637494,0.753654,0.0184578,0.510485,0.926898,0.0441514,0.817752,0.484017,0.685723,0.920602,0.345222,0.375326,0.0193453,0.230743,0.480936,0.788278,0.250022,0.741152,0.055166,0.114498,0.585042,0.748851,0.46719,0.38818,0.712563,0.0473015,0.0673349,0.848972,0.988065,0.793315,0.352968,0.301941,0.970491,0.846685,0.691653,0.1884,0.572119,0.0154282,0.808456,0.169141,0.716231,0.761324,0.364584,0.262826,0.620676,0.556341,0.257666,0.793814,0.769998,0.821543,0.343781,0.674885,0.639287,0.556365,0.74545,0.520842,0.529606,0.00229579,0.490196,0.477437,0.574003,0.481672,0.535293,0.895049,0.501477,0.815453,0.919331,0.971023,0.6067,0.0509744,0.111362,0.958979,0.120408,0.236081,0.264128,0.376144,0.130435,0.144349,0.425596,0.381034,0.704032,0.260258,0.937339,0.998021,0.682283,0.631184,0.701007,0.828714,0.975124,0.311593,0.938758,0.261082,0.901023,0.49675,0.0389439,0.28321,0.500714,0.734554,0.237469,0.302401,0.616323,0.616317,0.0663541,0.0877272,0.476238,0.621558,0.648921,0.11946,0.628471,0.345742,0.324123,0.88846,0.19952,0.125675,0.484145,0.0385729,0.867597,0.281697,0.290398,0.703624,0.777963,0.339123,0.200023,0.394989,0.449464,0.57096,0.519765,0.716524,0.73195,0.457279,0.8852,0.490096,0.666786,0.47805,0.0667264,0.613759,0.905254,0.942447,0.101148,0.149158,0.647432,0.190924,0.827503,0.263345,0.694854,0.983387,0.224365,0.0437499,0.332819,0.190177,0.921435,0.283821,0.653346,0.370744,0.027748,0.626483,0.445088,0.657664,0.583372,0.0353869,0.499615,0.92423,0.756049,0.654612,0.627553,0.685312,0.534319,0.882649,0.716314,0.00679141,0.0668962,0.765241,0.267127,0.699052,0.0317202,0.669027,0.319171,0.263023,0.63278,0.511211,0.954499,0.649485,0.691114,0.122144,0.808568,0.909299,0.747905,0.301102,0.127954,0.804157,0.0598629,0.52513,0.383676,0.268486,0.171563,0.406976,0.190122,0.603688,0.0336873,0.993317,0.716579,0.0618283,0.559389,0.325664,0.0667458,0.306675,0.0518371,0.194875,0.00450218,0.592544,0.646843,0.186202,0.416193,0.325426,0.184479,0.192248,0.31705,0.020325,0.298567,0.130052,0.521948,0.453137,0.477908,0.549724,0.450378,0.558985,0.148726,0.758309,0.684454,0.559745,0.0822746,0.333113,0.689168,0.793941,0.336172,0.649631,0.290263,0.127884,0.846217,0.708709,0.776795,0.438466,0.966515,0.828796,0.522901,0.745374,0.878021,0.878127,0.686512,0.0868224,0.0375865,0.804046,0.659448,0.33102,0.741681,0.350558,0.568724,0.302098,0.980168,0.970502,0.103723,0.231779,0.242453,0.888181,0.76399,0.0770053,0.434384,0.20357,0.613579,0.378576,0.689422,0.54681,0.177305,0.0754235,0.856482,0.537762,0.290281,0.432287,0.347556,0.19577,0.287125,0.0936189,0.961979,0.855922,0.0554983,0.131865,0.0567893,0.209846,0.058056,0.415058,0.149836,0.515657,0.701601,0.452589,0.440217,0.658949,0.455629,0.661182,0.34556,0.935586,0.151298,0.822749,0.850833,0.0899385,0.815146,0.384563,0.960131,0.176672,0.303891,0.0162524,0.311306,0.624178,0.80408,0.569087,0.529655,0.140328,0.156021,0.959308,0.0626209,0.968197,0.62864,0.689078,0.366171,0.737606,0.569709,|0.0443683,0.753359,0.836636,0.243674,0.668921,0.899069,0.828446,0.0615499,0.513349,0.699608,0.236126,0.132267,0.97023,0.0660406,0.867216,0.0679141,0.371825,0.0977294,0.747742,0.147968,0.39642,0.930684,0.532238,0.910647,0.827179,0.678852,0.350382,0.520082,0.810096,0.75478,0.183933,0.890831,0.940034,0.185798,0.154309,0.276153,0.762268,0.881479,0.481862,0.771002,0.736246,0.659922,0.352773,0.0157686,0.753404,0.674269,0.554596,0.35121,0.751974,0.207494,0.843777,0.549978,0.0433157,0.204516,0.654608,0.436003,0.668104,0.228942,0.138312,0.790074,0.269937,0.363303,0.118647,0.00196946,0.651133,0.465981,0.412555,0.24554,0.0832024,0.453496,0.691469,0.334904,0.935174,0.781301,0.751662,0.985665,0.24741,0.961718,0.111315,0.221146,0.316258,0.913352,0.814005,0.806004,0.89927,0.186009,0.0531799,0.820368,0.658724,0.840941,0.717076,0.0718611,0.387627,0.380226,0.84545,0.183858,0.568305,0.890441,0.312232,0.725601,0.829707,0.730135,0.287321,0.510678,0.0948408,0.409039,0.123935,0.784813,0.782047,0.545852,0.535684,0.125856,0.609162,0.945412,0.551067,0.39624,0.579045,0.799173,0.239451,0.819166,0.179506,0.304708,0.646484,0.818452,0.840687,0.546215,0.228542,0.118846,0.800902,0.801585,0.308501,0.597357,0.0922711,0.217217,0.190009,0.794458,0.375414,0.264089,0.284322,0.0210161,0.225054,0.178403,0.388221,0.0365557,0.824636,0.0296908,0.300295,0.195503,0.118373,0.0398982,0.847753,0.355619,0.294933,0.70303,0.411497,0.528838,0.000292122,0.591506,0.241775,0.416949,0.776386,0.73994,0.658505,0.601144,0.0465617,0.0164968,0.803476,0.0503211,0.835192,0.78528,0.23311,0.256105,0.112668,0.452283,0.379581,0.166928,0.235529,0.561774,0.179901,0.459196,0.235877,0.613545,0.893016,0.461386,0.0617625,0.0519022,0.261773,0.603877,0.947227,0.0771302,0.788305,0.754123,0.0541442,0.663138,0.73552,0.972644,0.532023,0.130881,0.0830818,0.491157,0.0794792,0.80312,0.315408,0.981801,0.703636,0.44696,0.135971,0.348617,0.342518,0.202522,0.669593,0.0097689,0.830943,0.452726,0.984484,0.691864,0.87556,0.416683,0.0353595,0.830433,0.334894,0.63056,0.495909,0.0587057,0.831647,0.754952,0.285398,0.583505,0.643418,0.231087,0.659295,0.241786,0.389437,0.264906,0.612152,0.373449,0.882678,0.731169,0.412993,0.382704,0.303607,0.952467,0.992839,0.49982,0.562814,0.877469,0.482675,0.445305,0.102792,0.834214,0.471144,0.103926,0.601046,0.0574046,0.272918,0.652633,0.908862,0.0756314,0.0732268,0.674953,0.574094,0.407657,0.821337,0.355031,0.147812,0.0270479,0.330515,0.401202,0.832843,0.638559,0.950498,0.135116,0.734828,0.214949,0.602198,0.430413,0.164209,0.0914036,0.700795,0.621842,0.413461,0.722402,0.272612,0.524537,0.464743,0.596071,0.600587,0.796601,0.00177699,0.359956,0.571817,0.901581,0.570169,0.0094496,0.24375,0.638636,0.490558,0.435996,0.0910133,0.666449,0.642879,0.176994,0.504257,0.369373,0.80572,0.833281,0.565562,0.901046,0.876288,0.596405,0.465062,0.534955,0.493792,0.583023,0.616702,0.250368,0.260623,0.377167,0.585939,0.85496,0.315555,0.641197,0.715875,0.607921,0.867062,0.967573,0.0855184,0.427122,0.158606,0.331145,0.695176,0.93609,0.351664,0.67494,0.759943,0.319216,0.849257,0.738104,0.523599,0.646118,0.895366,0.0843655,0.28518,0.452098,0.87822,0.80117,0.00451118,0.614803,0.414753,0.401544,0.284884,0.489889,0.761609,0.852439,0.251692,0.969934,0.573793,0.0766515,0.238013,0.783489,0.304856,0.992842,0.0553358,0.823672,0.804495,0.902991,0.668054,0.401914,0.360012,0.477718,0.0945836,0.310758,0.599988,0.618726,0.920502,0.996392,0.228135,0.619972,0.549896,0.807687,0.992694,0.777037,0.28451,0.187053,0.416604,0.671269,0.0709241,0.153534,0.376292,0.270425,0.749387,0.43134,0.323358,0.59332,0.983095,0.79448,0.364467,0.613391,0.670906,0.920029,0.673408,0.632336,0.178895,0.162915,0.813186,0.316561,0.895563,0.268992,0.224515,0.610952,0.106117,0.427135,0.938613,0.244466,8.34465e-05,0.623292,0.193564,0.877664,0.0992847,0.281909,0.259178,0.145291,0.862641,0.716348,0.657983,0.214407,0.221878,0.452457,0.62848,0.52369,0.743371,0.638857,0.302557,0.94337,0.00732183,0.421619,0.199046,0.484966,0.483783,0.0609807,0.261495,0.270903,0.162127,0.177569,0.218887,0.308421,0.936633,0.635702,0.863842,0.230502,0.867482,0.423648,0.41089,0.194929,0.571515,0.913312,0.167958,0.81401,0.193288,0.455895,0.350788,0.48855,0.00703961,0.0502965,0.0682219,0.939406,0.997893,0.109927,0.522049,0.546591,0.384937,0.291986,0.794485,0.630606,0.69942,0.65661,0.331734,0.15655,0.860458,0.254402,0.792267,0.330331,0.408891,0.685799,0.201148,0.149786,0.269943,0.962889,0.645933,0.447125,0.16685,0.179929,0.493657,0.33903,0.129922,0.56092,0.788907,0.0123937,0.573074,0.106872,0.840759,0.307501,0.664063,0.240746,0.565895,0.288164,0.797813,0.790461,0.123639,0.801213,0.878865,0.809098,0.836595,0.53568,0.414647,0.396021,0.149655,0.64244,0.10782,0.761222,0.671859,0.476186,0.00850588,0.619065,0.629495,0.874429,0.44138,0.219395,0.127663,0.966794,0.27588,0.0612534,0.342129,0.257793,0.556817,0.129738,0.470124,0.775783,0.0976601,0.986874,0.433938,0.101919,0.830659,0.731278,0.127122,0.639767,0.356319,0.532849,0.429819,0.407905,0.0568818,0.244765,0.665911,0.460706,0.833799,0.295291,0.252691,0.313276,0.0429581,0.967686,0.832001,0.345383,0.952259,0.771589,0.23987,0.0781332,0.494581,0.520806,0.289721,0.0350951,0.662792,0.785719,0.750639,0.0475391,0.654643,0.247076,0.355801,0.567758,0.0581266,0.231641,0.580833,0.0661957,0.896543,0.913116,0.474288,0.580477,0.45427,0.365136,0.0366235,0.080135,0.468999,0.945653,0.851288,0.84239,0.364869,0.448288,0.888603,0.60701,0.48743,0.221441,0.771827,0.794828,0.832507,0.724985,0.329768,0.854571,0.109282,0.369803,0.92062,0.237172,0.51259,0.309768,0.669613,0.0946485,0.124333,0.210505,0.190291,0.0413139,0.759614,0.419101,0.582941,0.481801,0.490633,0.637328,0.467897,0.375258,0.312717,0.591059,0.712878,0.0764825,0.432758,0.777913,0.729138,0.17574,0.600391,0.34646,0.166118,0.215181,0.0109563,0.797829,0.946478,0.0299916,0.803897,0.589042,0.0551866,0.992146,0.273622,0.314617,0.661925,0.621915,0.796078,0.0841106,0.633215,0.929573,0.941168,0.23926,0.807278,0.10955,0.427392,0.767471,0.719267,0.664301,0.922689,0.504181,0.714306,0.843468,0.13364,0.640024,0.862452,0.221635,0.300336,0.986763,0.702822,0.953354,0.767129,0.656341,0.609265,0.364799,0.0812903,0.802317,0.833213,0.103966,0.412561,0.519118,0.0899228,0.678658,0.564584,0.194809,0.760914,0.391534,0.0582467,0.51074,0.655776,0.932559,0.4555,0.286429,0.46717,0.340762,0.0459604,0.884686,0.288055,0.743754,0.0371356,0.0200337,0.91686,0.63167,0.064353,0.258773,0.39294,0.259755,0.162451,0.342587,0.982708,0.0565552,0.7131,0.0250104,0.306885,0.646408,0.682995,0.17194,0.132538,0.325126,0.22929,0.905312,0.973535,0.412779,0.987047,0.0725128,0.666922,0.980086,0.705338,0.724386,0.330459,0.849284,0.122321,0.433829,0.950033,0.669202,0.201001,0.110339,0.89214,0.144132,0.280046,0.534925,0.792707,0.457297,0.586738,0.78441,0.780271,0.325758,0.475595,0.627239,0.732045,0.860409,0.71541,0.104847,0.973218,0.583146,0.60849,0.30614,0.841875,0.0196091,0.539849,0.24844,0.567517,0.458277,0.847328,0.637511,0.240598,0.387305,0.256037,0.427772,0.835844,0.200222,0.53208,0.0251867,0.127086,0.590316,0.71667,0.119222,0.604589,0.942643,0.41739,0.24311,0.662358,0.928694,0.0555841,0.511698,0.531857,0.770349,0.147555,0.0238715,0.774737,0.382238,0.242511,0.687623,0.219981,0.655041,0.802765,0.30428,0.627652,0.517057,0.782654,0.789283,0.757848,0.26773,0.878852,0.723152,0.544385,0.0675147,0.483679,0.986974,0.778381,0.552624,0.323406,0.848231,0.845017,0.0907975,0.0936653,0.330769,0.245988,0.551045,0.732914,0.771709,0.078425,0.355373,0.618339,0.899021,0.52552,0.361229,0.191242,0.920318,0.890527,0.851665,0.574013,0.22252,0.677083,0.352642,0.499213,0.0133966,0.0731502,0.64551,0.23741,0.538153,0.483433,0.191746,0.357669,0.368054,0.800713,0.52576,0.535767,0.263193,0.228492,0.858094,0.686711,0.078303,0.606287,0.32986,0.26681,0.948184,0.998554,0.634083,0.86841,0.768633,0.265321,0.163718,0.822601,0.690235,0.135147,0.656369,0.864602,0.475298,0.14443,0.0825496,0.61208,0.796374,0.304801,0.786114,0.397235,0.919185,0.273238,0.228267,0.651721,0.576535,0.0975158,0.500076,0.157331,0.466988,0.0775425,0.765072,0.153885,0.215527,0.526176,0.930185,0.928987,0.379128,0.647651,0.0381924,0.703303,0.461036,0.0901076,0.324124,0.0513446,0.0393106,0.274075,0.0326811,0.372549,0.348753,0.902446,0.794548,0.5102,0.094354,0.359554,0.219067,0.391616,0.590927,0.127349,0.778262,0.567814,0.177161,0.321918,0.435457,0.735297,0.507391,0.765243,0.056034,0.572575,0.536192,0.314733,0.944834,0.573155,0.633542,0.158614,0.679153,0.959567,0.620675,0.955847,0.215548,0.298713,0.0363839,0.370717,0.221817,0.680324,0.116917,0.981881,0.706315,0.306462,0.887126,0.0303026,0.581052,0.63258,0.271425,0.936483,0.994418,0.909572,0.219771,0.340858,0.556164,0.373053,0.435064,0.450092,0.623782,0.826569,0.493973,0.96408,0.187333,0.850723,0.647703,0.836831,0.95209,0.657537,0.365378,0.582192,0.194756,0.514004,0.536315,0.168233,0.706756,0.900524,0.680969,0.187217,0.454579,0.712091,0.202561,0.427189,0.264877,0.758127,0.255876,0.796116,0.113741,0.954311,0.739175,0.125508,0.835124,0.307594,0.900199,0.915847,0.901435,0.447592,0.971492,|0.121066,0.31732,0.833423,0.828914,0.0444353,0.617082,0.624654,0.217334,0.490825,0.402505,0.813425,0.554239,0.455223,0.363455,0.380295,0.174953,0.566411,0.297711,0.581607,0.914387,0.947326,0.829862,0.0397274,0.716818,0.818527,0.318185,0.0996616,0.538821,0.538058,0.517173,0.758561,0.301067,0.100172,0.779223,0.282185,0.552995,0.524159,0.786103,0.635322,0.196963,0.138888,0.86083,0.00472969,0.54052,0.769821,0.851929,0.309534,0.440582,0.00907713,0.808213,0.813357,0.442729,0.948668,0.650026,0.759326,0.209712,0.182893,0.625483,0.589611,0.675185,0.092443,0.584124,0.897162,0.253233,0.568726,0.654872,0.905539,0.974946,0.825778,0.121531,0.38045,0.210101,0.643217,0.0304108,0.757538,0.12167,0.900337,0.98529,0.817392,0.912167,0.632953,0.507165,0.673804,0.575757,0.0651827,0.636894,0.589376,0.0822367,0.577871,0.70265,0.82149,0.707354,0.921203,0.468682,0.91502,0.329267,0.112978,0.078749,0.84615,0.287422,0.735358,0.0785233,0.530379,0.828736,0.754917,0.877476,0.106095,0.654142,0.559298,0.68041,0.869238,0.660492,0.981059,0.0131595,0.645814,0.630493,0.828266,0.410266,0.437822,0.167754,0.713431,0.680165,0.93873,0.6888,0.395544,0.191444,0.88788,0.273583,0.380196,0.354552,0.76999,0.864463,0.229957,0.661784,0.682388,0.475644,0.67249,0.987723,0.397539,0.713778,0.356793,0.668938,0.977158,0.0357421,0.0226778,0.867684,0.748466,0.916669,0.616764,0.213628,0.376905,0.343936,0.159847,0.225309,0.178371,0.93501,0.0889255,0.165685,0.886992,0.123997,0.790367,0.842455,0.917762,0.5663,0.405962,0.573118,0.450089,0.573864,0.307985,0.537923,0.0988861,0.87721,0.385019,0.692589,0.182134,0.586226,0.183794,0.953577,0.11458,0.320344,0.303041,0.476091,0.632646,0.403112,0.169186,0.292829,0.333457,0.78327,0.353008,0.74235,0.781669,0.755714,0.405221,0.939224,0.704339,0.0601562,0.714783,0.129546,0.38157,0.606791,0.924228,0.805241,0.770714,0.92985,0.754142,0.0501456,0.0333787,0.254594,0.7521,0.851878,0.257968,0.68532,0.572044,0.125089,0.848294,0.960918,0.89928,0.961832,0.0549278,0.37459,0.215625,0.749657,0.602537,0.696326,0.968905,0.340608,0.606133,0.653371,0.0749222,0.099969,0.769264,0.524597,0.926282,0.84802,0.511577,0.0369244,0.197016,0.132196,0.22195,0.765683,0.948552,0.730377,0.292001,0.413281,0.263959,0.817894,0.197473,0.424952,0.797723,0.14972,0.162191,0.642408,0.241232,0.641788,0.620596,0.901105,0.915639,0.673651,0.442848,0.927379,0.196475,0.880841,0.989953,0.854152,0.859939,0.188255,0.588157,0.229335,0.651659,0.921002,0.678961,0.637889,0.0935113,0.932101,0.940577,0.635083,0.249173,0.411961,0.779665,0.581407,0.172073,0.978731,0.288306,0.120986,0.866817,0.559478,0.0528798,0.98264,0.14139,0.986028,0.667518,0.378027,0.857496,0.852039,0.85862,0.151074,0.00175291,0.498122,0.413753,0.446482,0.419161,0.283453,0.228317,0.378723,0.898525,0.275827,0.387897,0.9193,0.370735,0.482018,0.762237,0.730628,0.0826551,0.934399,0.688669,0.0529613,0.769473,0.709938,0.413476,0.926312,0.561104,0.544821,0.781576,0.444676,0.521178,0.344175,0.963977,0.449453,0.950078,0.07576,0.853693,0.0209131,0.720665,0.788135,0.350977,0.474888,0.0598497,0.3467,0.705947,0.25203,0.185442,0.804141,0.393806,0.0468789,0.21354,0.375753,0.382234,0.455445,0.565668,0.931768,0.291402,0.286811,0.567816,0.55951,0.0718425,0.41318,0.627755,0.0911072,0.544065,0.156554,0.386243,0.850997,0.413903,0.0903817,0.633763,0.0184011,0.709949,0.289578,0.135331,0.108471,0.391136,0.186124,0.912904,0.237073,0.511632,0.0735487,0.0302262,0.867485,0.797055,0.280799,0.820414,0.830354,0.3324,0.613597,0.617148,0.405158,0.771964,0.0850663,0.638503,0.564021,0.488231,0.760973,0.283619,0.786934,0.203152,0.0152467,0.162938,0.976542,0.364254,0.167852,0.601331,0.521398,0.0714543,0.155865,0.665497,0.907104,0.262642,0.707021,0.380946,0.117019,0.525559,0.286811,0.509042,0.111697,0.0185373,0.915515,0.603083,0.939074,0.526838,0.546194,0.37864,0.86778,0.912692,0.423901,0.409463,0.856262,0.0909436,0.291461,0.674706,0.515114,0.0838468,0.00435305,0.0153713,0.561516,0.68953,0.677592,0.467535,0.282142,0.994661,0.305911,0.829307,0.962178,0.503306,0.277865,0.82981,0.719846,0.0497655,0.111592,0.550085,0.38356,0.585241,0.0244568,0.0473071,0.575475,0.490251,0.290867,0.832031,0.653476,0.920205,0.311053,0.0648122,0.13598,0.441658,0.597208,0.0819646,0.0932149,0.905998,0.591564,0.992989,0.877776,0.136628,0.419879,0.465766,0.932476,0.405704,0.8604,0.283385,0.774192,0.679173,0.202232,0.828638,0.173009,0.712439,0.529406,0.552982,0.489309,0.134014,0.788537,0.382408,0.124798,0.574287,0.926921,0.966415,0.377544,0.171716,0.0273125,0.480814,0.894913,0.828444,0.830965,0.428064,0.199097,0.461169,0.937138,0.0817845,0.302829,0.401655,0.1902,0.338298,0.0411816,0.807157,0.980872,0.496034,0.419472,0.00853646,0.282406,0.248903,0.882454,0.443289,0.365471,0.755832,0.86448,0.279155,0.959142,0.439176,0.260715,0.00154853,0.262301,0.265095,0.795617,0.501513,0.319702,0.708714,0.711965,0.310329,0.252929,0.167289,0.00904357,0.28949,0.743532,0.0429428,0.170078,0.397101,0.744851,0.252447,0.0403231,0.587492,0.0493916,0.521907,0.901008,0.132008,0.146076,0.470373,0.303105,0.587979,0.828675,0.0914965,0.382149,0.545874,0.234853,0.7522,0.906638,0.813065,0.649487,0.489076,0.635024,0.552844,0.886268,0.102504,0.0905191,0.520053,0.801115,0.412828,0.467492,0.832413,0.124772,0.834326,0.770836,0.944921,0.596047,0.198342,0.176374,0.384523,0.912932,0.997126,0.950099,0.09737,0.941552,0.798934,0.0928548,0.939327,0.318619,0.433873,0.869032,0.72121,0.857715,0.759236,0.911969,0.27727,0.406258,0.296732,0.819638,0.567719,0.854601,0.0586954,0.102447,0.856554,0.240971,0.654769,0.481859,0.397361,0.767872,0.952592,0.435082,0.327,0.600252,0.699421,0.145786,0.924288,0.904371,0.586227,0.793071,0.153615,0.614175,0.226287,0.870552,0.47475,0.830467,0.789967,0.534314,0.179506,0.133552,0.00164241,0.432079,0.784411,0.366553,0.647526,0.126637,0.843205,0.0660535,0.770046,0.990198,0.914588,0.125506,0.571377,0.72772,0.818088,0.370363,0.988689,0.167362,0.188322,0.810962,0.136462,0.343457,0.178321,0.530775,0.0160036,0.529946,0.189493,0.783602,0.889674,0.883487,0.0683933,0.789607,0.610261,0.705885,0.194947,0.84759,0.538193,0.780932,0.0965372,0.439764,0.362653,0.676556,0.156598,0.891912,0.416232,0.241214,0.391245,0.903029,0.643088,0.394651,0.400567,0.436864,0.544793,0.0757858,0.144659,0.0536682,0.495633,0.525416,0.555866,0.543759,0.00921404,0.946376,0.885211,0.395624,0.987349,0.232451,0.624908,0.972164,0.256566,0.31016,0.932337,0.361986,0.659682,0.31509,0.277374,0.919209,0.497944,0.530324,0.932267,0.0545847,0.875743,0.808659,0.227433,0.979825,0.947131,0.113225,0.360181,0.270034,0.965243,0.399224,0.742236,0.88337,0.593831,0.821888,0.977327,0.971214,0.271796,0.757168,0.125737,0.990589,0.592857,0.0305053,0.172424,0.17289,0.831101,0.166542,0.633806,0.442154,0.057479,0.474059,0.536683,0.624441,0.488788,0.731683,0.671304,0.0599391,0.328529,0.528616,0.601191,0.393549,0.742907,0.338615,0.383349,0.30236,0.652727,0.00176209,0.806854,0.643594,0.175957,0.161343,0.454616,0.442809,0.633834,0.138129,0.413582,0.957047,0.644594,0.867804,0.317459,0.721887,0.680166,0.858875,0.101326,0.681537,0.798508,0.896294,0.364511,0.00601047,0.870678,0.686244,0.503859,0.471456,0.618636,0.632644,0.714875,0.121366,0.459699,0.825798,0.24215,0.992112,0.687898,0.538689,0.801521,0.686225,0.930391,0.546689,0.578601,0.212284,0.905542,0.754153,0.0173994,0.467403,0.420212,0.232921,0.500428,0.965276,0.730799,0.043607,0.336813,0.0852877,0.511516,0.998489,0.341431,0.452571,0.615745,0.530088,0.252654,0.394996,0.401906,0.954043,0.50656,0.770734,0.754731,0.22758,0.188652,0.996727,0.14076,0.479263,0.534301,0.330701,0.0402425,0.874901,0.741208,0.32977,0.931382,0.111077,0.64507,0.552033,0.422103,0.266664,0.0686087,0.559629,0.516005,0.814024,0.324813,0.83731,0.139691,0.493405,0.988363,0.30975,0.315249,0.773494,0.816239,0.542983,0.91354,0.0911725,0.964097,0.626318,0.669482,0.684884,0.0468774,0.0511097,0.0580502,0.967238,0.796741,0.949228,0.057817,0.346113,0.932152,0.900611,0.0394316,0.756323,0.682391,0.198995,0.120285,0.114099,0.54397,0.0232924,0.27104,0.343973,0.829693,0.47792,0.0271658,0.0118604,0.686735,0.728069,0.97243,0.443111,0.116095,0.965937,0.736643,0.602462,0.774239,0.693842,0.62425,0.464149,0.412518,0.601571,0.36629,0.878039,0.307825,0.816293,0.251601,0.719133,0.293537,0.588094,0.297355,0.126108,0.728923,0.748214,0.426893,0.0996215,0.667568,0.793611,0.957889,0.362493,0.424301,0.696913,0.792049,0.975224,0.0778992,0.492517,0.311655,0.768955,0.326786,0.565993,0.309564,0.867472,0.920626,0.889428,0.280319,0.361303,0.549715,0.6126,0.993058,0.269587,0.611151,0.152617,0.266728,0.656477,0.678884,0.635123,0.40139,0.824584,0.46672,0.149723,0.155008,0.420295,0.869132,0.943922,0.122129,0.809168,0.358919,0.714678,0.0315223,0.839238,0.757478,0.265343,0.690069,0.986449,0.132836,0.112316,0.491578,0.339339,0.840154,0.996523,0.74892,0.971177,0.962573,0.407897,0.413329,0.871064,0.125133,0.066896,0.963345,0.528588,0.826899,0.806638,0.346826,0.378673,0.339709,0.423733,0.859797,0.111526,0.274995,0.414935,0.229235,0.890014,0.728023,0.980531,0.259565,0.635909,0.210016,0.878703,0.937072,0.225373,0.9688,0.688689,|0.679714,0.5736,0.523964,0.399351,0.460516,0.585544,0.529448,0.0040195,0.0222119,0.443511,0.484447,0.950386,0.246802,0.0713928,0.321814,0.72502,0.091386,0.770257,0.337732,0.530997,0.567937,0.457867,0.917245,0.809896,0.0989253,0.691474,0.37751,0.481728,0.482097,0.244254,0.410845,0.11972,0.191545,0.320709,0.930812,0.358758,0.95792,0.517965,0.29403,0.878779,0.899663,0.51097,0.655116,0.391804,0.593788,0.268301,0.892114,0.0146693,0.213607,0.528204,0.280721,0.353205,0.152341,0.292566,0.980643,0.36245,0.607396,0.971165,0.725223,0.136713,0.629865,0.0657887,0.0639804,0.636169,0.652536,0.44125,0.940209,0.14678,0.613915,0.494265,0.706374,0.422454,0.615031,0.825014,0.298648,0.262594,0.273869,0.145702,0.352987,0.0180443,0.0199313,0.704138,0.218543,0.443636,0.425921,0.872658,0.331686,0.216829,0.463888,0.0946171,0.000432253,0.585598,0.127763,0.731306,0.198784,0.557288,0.561354,0.513965,0.478307,0.0344514,0.935472,0.474688,0.2431,0.472474,0.411993,0.213573,0.0854908,0.473078,0.49441,0.357609,0.418499,0.0441844,0.637722,0.25439,0.453705,0.00252843,0.228537,0.595125,0.301051,0.860949,0.146722,0.123852,0.791202,0.520741,0.61351,0.567418,0.215078,0.662677,0.428551,0.0943877,0.493484,0.237798,0.66744,0.263086,0.0920842,0.872592,0.374551,0.06551,0.117401,0.694171,0.364188,0.243108,0.147371,0.482256,0.258412,0.922396,0.0515552,0.00679272,0.29806,0.123348,0.652397,0.22229,0.149951,0.210274,0.7954,0.0690026,0.456,0.225452,0.967675,0.116241,0.333428,0.272295,0.0989916,0.000262797,0.583591,0.594869,0.143879,0.790171,0.272572,0.357497,0.508355,0.912937,0.861548,0.68331,0.0348405,0.812074,0.505705,0.540031,0.537207,0.416732,0.552142,0.454459,0.877256,0.640212,0.533788,0.043915,0.95115,0.0968162,0.954342,0.983473,0.793347,0.153992,0.611515,0.781147,0.296847,0.234874,0.0335624,0.57829,0.47952,0.141588,0.0921196,0.037223,0.619556,0.320207,0.334542,0.73182,0.842038,0.39497,0.502711,0.249061,0.670709,0.377681,0.957245,0.276496,0.6724,0.0490516,0.493233,0.278752,0.126902,0.272625,0.966977,0.157594,0.367563,0.0409082,0.46278,0.406324,0.456923,0.729002,0.673691,0.646332,0.326538,0.165094,0.969211,0.745366,0.224597,0.108423,0.771271,0.652476,0.563343,0.941686,0.215511,0.49963,0.736019,0.762174,0.13584,0.165845,0.0283172,0.0573776,0.70708,0.879607,0.563724,0.741596,0.954922,0.477955,0.939212,0.484295,0.129036,0.0104934,0.278736,0.4255,0.731074,0.246834,0.272621,0.488576,0.663209,0.205839,0.260529,0.353404,0.66469,0.956426,0.891343,0.757069,0.571952,0.146924,0.328165,0.33842,0.175665,0.149396,0.30449,0.946669,0.884351,0.830245,0.772697,0.625511,0.0701444,0.36062,0.177711,0.0550972,0.368173,0.329799,0.774087,0.430643,0.562221,0.338668,0.220019,0.789551,0.448449,0.496624,0.451129,0.00849104,0.180324,0.996607,0.0611675,0.439923,0.752988,0.581183,0.662955,0.578154,0.00858665,0.724105,0.869797,0.897652,0.229933,0.00970286,0.0287016,0.0885924,0.309691,0.243537,0.679719,0.931166,0.667277,0.859622,0.568477,0.873655,0.887706,0.969062,0.91857,0.0800924,0.189182,0.830648,0.90658,0.0656782,0.0874414,0.261636,0.0162385,0.699446,0.280041,0.463717,0.902524,0.66862,0.618371,0.223609,0.0503745,0.828247,0.0185994,0.960198,0.814317,0.921136,0.262519,0.959585,0.942077,0.868071,0.00594622,0.788372,0.376754,0.326401,0.959196,0.300311,0.923323,0.55463,0.930685,0.988416,0.365702,0.283196,0.673732,0.0305095,0.0484246,0.100907,0.483648,0.586141,0.866334,0.073204,0.226244,0.397368,0.310765,0.935436,0.062897,0.353198,0.879413,0.212216,0.7618,0.94284,0.0697718,0.823244,0.84292,0.224611,0.619127,0.704139,0.638303,0.969239,0.219821,0.447419,0.309025,0.834637,0.567075,0.659088,0.815115,0.458922,0.562793,0.941507,0.218195,0.209379,0.894225,0.909732,0.645493,0.111426,0.0348986,0.392645,0.0385033,0.188487,0.0966675,0.77631,0.0529358,0.250093,0.331358,0.0351481,0.175114,0.796087,0.0553568,0.596676,0.150605,0.0613232,0.804394,0.802771,0.168943,0.697055,0.94109,0.34377,0.714654,0.408516,0.61191,0.808572,0.151268,0.022864,0.475426,0.0922697,0.856204,0.693247,0.630552,0.232425,0.607426,0.239624,0.860993,0.670987,0.554774,0.649802,0.925331,0.276722,0.766862,0.0439742,0.677965,0.978232,0.696827,0.850008,0.964472,0.258437,0.61625,0.354546,0.255592,0.177531,0.11231,0.658728,0.564771,0.164273,0.0765861,0.600743,0.828201,0.889109,0.823113,0.117372,0.225446,0.16678,0.852374,0.790299,0.241763,0.848408,0.820077,0.525511,0.178094,0.206911,0.790891,0.194937,0.546829,0.884684,0.881558,0.890307,0.138499,0.0315997,0.739343,0.00809711,0.600412,0.665834,0.936679,0.731863,0.778017,0.378914,0.54821,0.161366,0.771287,0.474231,0.864496,0.275676,0.224091,0.973787,0.04689,0.477683,0.230938,0.454026,0.344631,0.160722,0.328685,0.345025,0.0390137,0.37934,0.328624,0.99315,0.627665,0.656925,0.152164,0.801907,0.860209,0.674363,0.447837,0.0395466,0.801161,0.481691,0.799391,0.506525,0.874267,0.345758,0.075556,0.963729,0.817538,0.3369,0.980662,0.441863,0.346998,0.9705,0.633308,0.344907,0.977391,0.808262,0.184332,0.0172246,0.33253,0.359437,0.106975,0.400806,0.716494,0.889591,0.294507,0.883204,0.0431793,0.37194,0.665286,0.949833,0.0184866,0.216824,0.578744,0.0524909,0.571366,0.69855,0.238939,0.449444,0.44837,0.112729,0.282169,0.614738,0.904201,0.771331,0.451894,0.198882,0.783319,0.431803,0.883806,0.904563,0.0148723,0.572635,0.56229,0.339704,0.570954,0.865247,0.306439,0.272163,0.622574,0.554808,0.98447,0.765679,0.155588,0.965123,0.702836,0.388277,0.790324,0.861734,0.906235,0.904968,0.920023,0.278466,0.190407,0.272328,0.623499,0.691665,0.18914,0.658926,0.381614,0.0654206,0.911071,0.655761,0.28626,0.940925,0.0226571,0.254432,0.0419061,0.067646,0.640337,0.596634,0.882972,0.497524,0.914741,0.010672,0.113599,0.490795,0.155405,0.191202,0.681947,0.167874,0.691162,0.92274,0.383384,0.613727,0.411863,0.786047,0.268363,0.356547,0.903791,0.824849,0.526258,0.422104,0.846108,0.824444,0.258269,0.633068,0.710291,0.373344,0.896347,0.944497,0.725907,0.737838,0.465662,0.472997,0.35369,0.0219747,0.375639,0.387705,0.780678,0.593938,0.58993,0.667399,0.739717,0.112276,0.551266,0.664378,0.782547,0.37503,0.230684,0.246033,0.271999,0.238803,0.290671,0.380989,0.394833,0.349299,0.874816,0.400226,0.535416,0.388295,0.735173,0.920405,0.915888,0.541871,0.626803,0.0834646,0.948596,0.491556,0.318745,0.44147,0.738091,0.146588,0.236893,0.868709,0.689995,0.377453,0.55033,0.325353,0.358243,0.265177,0.710699,0.773405,0.990435,0.173343,0.794406,0.459629,0.835127,0.815073,0.0783644,0.0545447,0.213881,0.204521,0.515499,0.272313,0.209639,0.131458,0.516597,0.110165,0.979939,0.492848,0.72877,0.341171,0.0200439,0.936341,0.442145,0.740572,0.429976,0.913371,0.448082,0.959731,0.172571,0.508093,0.285539,0.861934,0.622783,0.555073,0.551793,0.75353,0.452282,0.0910122,0.35733,0.878997,0.989201,0.157936,0.566595,0.521371,0.361096,0.67605,0.754093,0.382798,0.88434,0.985094,0.506505,0.349903,0.0934294,0.0745897,0.296674,0.1038,0.385256,0.323402,0.957323,0.70608,0.0441867,0.647805,0.931537,0.201309,0.93142,0.678629,0.89652,0.15463,0.333665,0.0800719,0.124255,0.428048,0.887782,0.51133,0.679469,0.397715,0.410876,0.328354,0.308398,0.303941,0.135153,0.297171,0.65467,0.380876,0.649753,0.134202,0.737338,0.332633,0.629778,0.594481,0.265711,0.960163,0.906663,0.903045,0.404803,0.156158,0.216512,0.0776621,0.599302,0.486389,0.13222,0.316795,0.389402,0.199814,0.425839,0.382082,0.982587,0.9113,0.194971,0.0297177,0.290115,0.397555,0.786132,0.371476,0.339149,0.43866,0.959093,0.652771,0.946985,0.65452,0.249409,0.826855,0.577538,0.954657,0.0200729,0.571403,0.821469,0.708748,0.445014,0.412002,0.321144,0.357111,0.804065,0.957624,0.978098,0.962299,0.737524,0.276662,0.805551,0.933621,0.201497,0.927109,0.679356,0.519536,0.146391,0.469186,0.436227,0.934698,0.253001,0.309769,0.796797,0.670088,0.669231,0.83324,0.9971,0.640908,0.319906,0.377606,0.695298,0.134727,0.834599,0.592549,0.358297,0.42506,0.506252,0.88679,0.608447,0.429668,0.177573,0.927884,0.00297719,0.797425,0.569181,0.615089,0.424402,0.758945,0.331939,0.656852,0.115447,0.93722,0.80456,0.400671,0.0561751,0.705227,0.109388,0.0997238,0.474319,0.68827,0.690028,0.178157,0.953454,0.45793,0.962769,0.912251,0.0955111,0.975293,0.872543,0.14225,0.655154,0.096275,0.767921,0.849972,0.238818,0.83536,0.586534,0.81491,0.565835,0.663748,0.174254,0.699974,0.0355484,0.133221,0.763598,0.594183,0.932938,0.496114,0.103422,0.354166,0.568456,0.337133,0.0166139,0.987448,0.520136,0.863318,0.488224,0.907648,0.40986,0.62986,0.157544,0.734356,0.376937,0.416079,0.698557,0.0938957,0.316287,0.812899,0.923257,0.15439,0.527086,0.519293,0.705373,0.751936,0.186134,0.614586,0.372674,0.664562,0.940019,0.958811,0.415929,0.863792,0.741944,0.176434,0.362413,0.313797,0.908164,0.26486,0.330112,0.603369,0.77981,0.678139,0.0124156,0.257333,0.699224,0.091974,0.636455,0.130632,0.510297,0.185444,0.0966911,0.343367,0.886756,0.198291,0.52003,0.516313,0.239837,0.886509,0.577776,0.715791,0.512427,0.47106,0.199468,0.618643,0.276506,0.0856676,0.401212,0.383254,0.862482,0.061994,0.418516,0.818491,0.72635,0.463363,0.714168,0.262274,0.778238,0.863849,0.63249,0.571956,0.498928,0.597117,0.678706,0.216899,|0.260609,0.619418,0.517101,0.0874094,0.314417,0.969102,0.184571,0.687607,0.947083,0.730516,0.96329,0.216769,0.154051,0.39437,0.751623,0.480014,0.199541,0.269008,0.244435,0.904941,0.0556114,0.723565,0.912126,0.667087,0.492015,0.0491592,0.279234,0.689675,0.478848,0.441534,0.116362,0.468802,0.390556,0.381095,0.222729,0.563776,0.821133,0.0305523,0.62933,0.268016,0.105925,0.362494,0.842972,0.0201598,0.888285,0.433814,0.351561,0.547499,0.638049,0.361898,0.790328,0.887832,0.261274,0.317882,0.35134,0.824933,0.71128,0.805151,0.216366,0.19681,0.596136,0.623128,0.350549,0.985887,0.751253,0.491606,0.256862,0.115522,0.815012,0.972859,0.272136,0.65568,0.569158,0.121982,0.225241,0.65051,0.851966,0.965532,0.798931,0.855511,0.628546,0.0788712,0.996589,0.684241,0.29254,0.640395,0.240306,0.0461549,0.907054,0.720721,0.596319,0.0383811,0.482107,0.846373,0.017229,0.117507,0.18009,0.288558,0.604519,0.475437,0.4573,0.993349,0.113159,0.83958,0.559535,0.981378,0.629266,0.782683,0.235072,0.446778,0.387647,0.0147496,0.240022,0.324339,0.346555,0.181933,0.512699,0.183468,0.834743,0.645346,0.286336,0.74812,0.315361,0.393248,0.00793576,0.925654,0.844725,0.470308,0.467935,0.040108,0.377999,0.938605,0.393463,0.245747,0.11867,0.919854,0.413239,0.967295,0.959764,0.798426,0.0780853,0.5819,0.36073,0.711754,0.750133,0.475613,0.518262,0.938889,0.52961,0.981358,0.409932,0.197056,0.534862,0.104758,0.443273,0.535954,0.81246,0.0297925,0.0795805,0.261463,0.0390096,0.608441,0.992441,0.102842,0.0873986,0.846615,0.356143,0.0267491,0.160023,0.309629,0.285774,0.00270277,0.783,0.56257,0.0156468,0.323155,0.346075,0.738367,0.0534745,0.65586,0.784395,0.455768,0.0760704,0.48553,0.994683,0.930175,0.550149,0.658583,0.540151,0.23313,0.432741,0.168876,0.346645,0.358761,0.350702,0.601238,0.549384,0.96485,0.290741,0.17868,0.5726,0.28218,0.67127,0.202538,0.550276,0.937028,0.640311,0.163676,0.235882,0.747287,0.232384,0.528494,0.0733061,0.811008,0.909118,0.157068,0.7905,0.213209,0.692286,0.957091,0.656192,0.446127,0.086069,0.954005,0.553577,0.214217,0.13765,0.17875,0.703987,0.320882,0.849974,0.240494,0.398677,0.64833,0.480473,0.0716947,0.418529,0.964465,0.647692,0.984789,0.377871,0.425783,0.682522,0.842573,0.839238,0.137235,0.102197,0.401685,0.686262,0.769594,0.503064,0.162613,0.102001,0.118643,0.634584,0.0419623,0.324307,0.709433,0.882555,0.866018,0.672679,0.133931,0.135873,0.75451,0.581919,0.514348,0.562211,0.993049,0.0195927,0.104336,0.422826,0.194811,0.934118,0.668241,0.607163,0.736119,0.211711,0.346082,0.927777,0.654967,0.392439,0.917575,0.43987,0.676588,0.390295,0.419506,0.229471,0.685003,0.995493,0.854116,0.756848,0.44437,0.891123,0.922525,0.731449,0.798523,0.0581411,0.828034,0.976963,0.446662,0.174321,0.896678,0.529639,0.738723,0.658663,0.0329776,0.195612,0.76482,0.499941,0.472926,0.759976,0.441642,0.304935,0.445298,0.584625,0.044036,0.24926,0.704753,0.495454,0.679311,0.045925,0.716193,0.0750792,0.243623,0.92319,0.424873,0.889026,0.79873,0.0932646,0.0215797,0.915185,0.118716,0.971774,0.547725,0.300838,0.120607,0.00698304,0.540183,0.961289,0.327404,0.79001,0.694147,0.0935101,0.698686,0.638752,0.0107937,0.0751733,0.29108,0.744252,0.2802,0.294581,0.753157,0.947477,0.792065,0.64077,0.402632,0.301022,0.725709,0.379769,0.159009,0.961367,0.390719,0.938844,0.055039,0.373195,0.464953,0.257024,0.564634,0.0175239,0.671866,0.0276923,0.315919,0.632054,0.211773,0.327379,0.320281,0.198584,0.790634,0.862484,0.548938,0.788906,0.458152,0.844725,0.88559,0.707665,0.146192,0.329062,0.0471538,0.951826,0.578986,0.731173,0.100789,0.689034,0.457521,0.675182,0.772639,0.241213,0.168838,0.556566,0.606476,0.632365,0.329325,0.268943,0.570892,0.605971,0.774845,0.745295,0.198537,0.387405,0.650368,0.637664,0.972384,0.880799,0.854052,0.724384,0.177315,0.263139,0.773516,0.274952,0.364106,0.86449,0.504434,0.401411,0.803206,0.0524729,0.77438,0.637007,0.453284,0.487577,0.260524,0.00201803,0.045318,0.6742,0.434994,0.306194,0.0611498,0.575898,0.650474,0.664722,0.426576,0.344357,0.269373,0.278687,0.130118,0.609416,0.806002,0.109646,0.491292,0.809826,0.25736,0.156147,0.981078,0.525183,0.767466,0.808422,0.791253,0.932513,0.277104,0.595676,0.897718,0.854813,0.763226,0.595248,0.491594,0.698585,0.7156,0.943704,0.98843,0.222839,0.265712,0.960887,0.805755,0.0713649,0.43137,0.570962,0.904202,0.784594,0.85832,0.711013,0.653685,0.640402,0.0262455,0.568033,0.288958,0.14919,0.586739,0.373984,0.521438,0.124985,0.444525,0.880566,0.659202,0.265087,0.430258,0.699922,0.682092,0.727359,0.537277,0.502884,0.849223,0.833054,0.67692,0.884932,0.466975,0.0851141,0.118644,0.701202,0.671341,0.990568,0.207136,0.506405,0.78065,0.705673,0.763064,0.753569,0.299856,0.0376847,0.27353,0.369413,0.899931,0.837836,0.894987,0.518432,0.202143,0.924725,0.431973,0.861861,0.463126,0.458032,0.545832,0.925037,0.736432,0.793539,0.857559,0.269136,0.420574,0.0554518,0.604322,0.342602,0.189061,0.915632,0.86368,0.0313536,0.428218,0.053774,0.318293,0.494053,0.769189,0.720539,0.504351,0.429987,0.696117,0.640833,0.358768,0.326646,0.584695,0.642535,0.698918,0.591192,0.993496,0.924218,0.216144,0.524508,0.726432,0.258595,0.23065,0.519985,0.885485,0.819803,0.267589,0.880728,0.112842,0.961535,0.715869,0.999196,0.0322499,0.390586,0.241028,0.645995,0.82425,0.648862,0.504163,0.441277,0.41207,0.828291,0.930501,0.503795,0.200099,0.516451,0.495808,0.563157,0.798394,0.977699,0.642931,0.788913,0.516434,0.097244,0.118203,0.202825,0.710798,0.670398,0.248385,0.0793673,0.88551,0.902394,0.189486,0.435677,0.831545,0.0328609,0.72392,0.987231,0.395508,0.851753,0.750435,0.0954161,0.657708,0.351118,0.773461,0.568094,0.693611,0.164466,0.802329,0.641924,0.649925,0.157514,0.202896,0.850386,0.668939,0.518399,0.424965,0.644295,0.572318,0.915862,0.565839,0.495167,0.771671,0.204925,0.323313,0.540183,0.80683,0.146004,0.28814,0.504692,0.542241,0.55972,0.617419,0.327428,0.102224,0.518234,0.557643,0.782804,0.212282,0.550858,0.125351,0.683953,0.642042,0.369663,0.361282,0.714205,0.340755,0.0714995,0.482762,0.937299,0.133376,0.147908,0.838621,0.26665,0.74879,0.393142,0.10223,0.577357,0.41649,0.495802,0.685135,0.420393,0.65378,0.157609,0.698344,0.617398,0.370549,0.880524,0.770782,0.22187,0.260004,0.94038,0.0741343,0.662427,0.689094,0.751061,0.18568,0.261687,0.421405,0.238469,0.644497,0.348926,0.584534,0.529648,0.491088,0.973315,0.555805,0.437879,0.976447,0.813136,0.0783646,0.0477731,0.763941,0.89166,0.116063,0.528237,0.561749,0.783978,0.69794,0.223984,0.343061,0.376178,0.0220807,0.149078,0.0145143,0.906625,0.74305,0.106101,0.934648,0.803924,0.000809252,0.59817,0.647456,0.808525,0.424147,0.680858,0.565933,0.0881665,0.837237,0.577792,0.490471,0.812153,0.0695856,0.214842,0.24255,0.966335,0.275908,0.171338,0.0316157,0.599644,0.237758,0.286608,0.190552,0.285804,0.406541,0.802359,0.926341,0.227791,0.71149,0.153718,0.0788203,0.209932,0.824609,0.923851,0.234504,0.385308,0.559676,0.627302,0.91012,0.252991,0.383708,0.952761,0.716323,0.10359,0.751818,0.896534,0.777865,0.795641,0.268278,0.337572,0.0239481,0.412926,0.326074,0.985533,0.968904,0.05019,0.927403,0.524574,0.653826,0.41036,0.417663,0.377806,0.873097,0.252225,0.0895662,0.566584,0.163778,0.0959436,0.620227,0.727508,0.367049,0.466482,0.868496,0.111188,0.509682,0.935303,0.938294,0.912741,0.293241,0.895988,0.532098,0.244455,0.923119,0.515778,0.0711701,0.528901,0.8345,0.842769,0.926963,0.284806,0.886851,0.0113293,0.094834,0.536642,0.536551,0.491929,0.664448,0.999658,0.164822,0.187974,0.0525293,0.48873,0.780578,0.538083,0.920274,0.818465,0.170268,0.857982,0.115731,0.205889,0.968659,0.748783,0.702279,0.60595,0.4203,0.723679,0.291375,0.477125,0.878729,0.861675,0.260645,0.814427,0.297689,0.972813,0.51918,0.279003,0.656162,0.934982,0.944978,0.0572808,0.910973,0.0718794,0.830699,0.10488,0.371496,0.280381,0.379726,0.286932,0.854666,0.356653,0.637838,0.578834,0.752602,0.833376,0.348496,0.288157,0.700395,0.997142,0.856875,0.62313,0.597278,0.196659,0.223574,0.136538,0.760464,0.737939,0.676962,0.283963,0.396992,0.358745,0.99588,0.181319,0.664029,0.0968816,0.280689,0.521229,0.598551,0.840327,0.431635,0.634451,0.14677,0.146357,0.433851,0.297831,0.513445,0.0629287,0.588395,0.625212,0.261333,0.731404,0.212096,0.19676,0.436628,0.351223,0.955122,0.126084,0.0242762,0.742031,0.0475445,0.782438,0.166791,0.165405,0.359176,0.219396,0.771834,0.188773,0.90934,0.580725,0.650296,0.744165,0.0319638,0.386099,0.858908,0.561784,0.357335,0.150285,0.777133,0.771314,0.399087,0.128163,0.498519,0.073281,0.213105,0.69089,0.878685,0.793002,0.703838,0.362821,0.265315,0.197583,0.888271,0.3461,0.913933,0.698692,0.600445,0.289687,0.725409,0.275338,0.0719869,0.373415,0.0121723,0.192988,0.331791,0.948384,0.263756,0.427693,0.522912,0.149162,0.809762,0.814136,0.320019,0.122348,0.0493146,0.795324,0.141575,0.136763,0.84199,0.355195,0.492504,0.631566,0.97991,0.617907,0.971316,0.962566,0.459593,0.455546,0.281823,0.241978,0.925277,0.483648,0.475622,0.352337,0.857507,0.157868,0.199972,0.470041,0.384801,0.680998,0.539072,0.952255,0.56032,0.956189,0.759814,0.457755,0.399308,0.0515512,0.470908,|0.849866,0.472565,0.932835,0.656028,0.384814,0.962273,0.276667,0.272996,0.758911,0.847218,0.890698,0.0607803,0.290757,0.51491,0.420467,0.745949,0.36457,0.48184,0.283807,0.464585,0.153641,0.53552,0.0088644,0.180329,0.94463,0.725359,0.424943,0.619172,0.833403,0.794297,0.946515,0.805353,0.940071,0.497656,0.170751,0.749394,0.75283,0.53188,0.439873,0.505179,0.0687569,0.780817,0.570881,0.0393507,0.899466,0.762962,0.31156,0.74065,0.537762,0.754663,0.423825,0.406721,0.696867,0.808476,0.108366,0.44158,0.315344,0.160303,0.421062,0.0647048,0.905917,0.886996,0.97512,0.60741,0.801874,0.174195,0.0904661,0.983423,0.833179,0.683048,0.430582,0.34242,0.880997,0.0808588,0.685664,0.660201,0.542743,0.471857,0.431965,0.0852146,0.0286393,0.0173317,0.441481,0.974108,0.556439,0.701126,0.590818,0.949669,0.777039,0.564165,0.40505,0.926146,0.624515,0.0670982,0.127852,0.741779,0.671006,0.725084,0.800743,0.65891,0.455047,0.721094,0.957679,0.610478,0.0614485,0.748464,0.437509,0.530195,0.392451,0.479183,0.996503,0.428378,0.0264293,0.142068,0.601573,0.86135,0.597829,0.239966,0.729854,0.223304,0.909696,0.893337,0.766288,0.27212,0.996771,0.559464,0.910293,0.461117,0.241323,0.889206,0.896116,0.964635,0.655909,0.457418,0.0263072,0.324424,0.0795144,0.247534,0.390112,0.0710685,0.556955,0.420816,0.950445,0.443547,0.600897,0.33439,0.024217,0.424718,0.0521701,0.434041,0.797397,0.957003,0.712763,0.130102,0.282712,0.188515,0.169634,0.610581,0.348672,0.656744,0.846083,0.0440409,0.414493,0.68031,0.647981,0.487104,0.207701,0.853077,0.910053,0.903541,0.90533,0.981338,0.784116,0.389845,0.10107,0.69649,0.242326,0.268234,0.266647,0.58756,0.342857,0.91166,0.82226,0.561311,0.897291,0.0152285,0.317849,0.148591,0.0724407,0.308968,0.374868,0.800905,0.646975,0.0722899,0.953796,0.239508,0.797339,0.532157,0.813853,0.58861,0.45894,0.069548,0.841736,0.498546,0.667664,0.419053,0.285554,0.817313,0.298211,0.598979,0.610005,0.222487,0.0251126,0.991219,0.784736,0.636136,0.863862,0.611509,0.535728,0.238163,0.415086,0.175768,0.96079,0.597108,0.670621,0.176976,0.12722,0.639061,0.355708,0.0419724,0.508418,0.620741,0.994509,0.850083,0.519589,0.342703,0.678211,0.105262,0.146626,0.541185,0.489423,0.782857,0.158817,0.869751,0.0708116,0.284211,0.996205,0.513153,0.44115,0.631697,0.954425,0.8117,0.587585,0.078723,0.490099,0.044866,0.7749,0.655318,0.0170951,0.157811,0.297035,0.409084,0.723416,0.777005,0.419718,0.522192,0.29049,0.469012,0.843123,0.317545,0.807846,0.114425,0.681447,0.236179,0.904243,0.213157,0.64399,0.385587,0.404407,0.385133,0.915266,0.983029,0.214899,0.290486,0.967363,0.793818,0.113232,0.908263,0.576645,0.222595,0.657591,0.449609,0.744328,0.299253,0.0368702,0.821294,0.0974729,0.247338,0.564053,0.661034,0.796132,0.549278,0.658339,0.347906,0.772074,0.316334,0.535931,0.805547,0.848341,0.458152,0.226728,0.636107,0.117509,0.336463,0.426768,0.790751,0.505578,0.622207,0.854226,0.123303,0.239916,0.337893,0.107947,0.992615,0.672651,0.634776,0.95978,0.588559,0.682501,0.780054,0.657491,0.615995,0.319876,0.705497,0.557129,0.709158,0.98357,0.842506,0.969624,0.478658,0.162922,0.907712,0.668022,0.114781,0.402286,0.993746,0.439606,0.968901,0.245656,0.435898,0.165427,0.139685,0.0949922,0.382725,0.943608,0.676688,0.426372,0.597455,0.153864,0.0225373,0.206913,0.764128,0.829715,0.975316,0.701846,0.838421,0.87891,0.182414,0.236258,0.870239,0.679727,0.232031,0.0244877,0.135849,0.892608,0.819933,0.225718,0.28167,0.087443,0.0214772,0.699946,0.98863,0.103815,0.90799,0.843644,0.836784,0.687528,0.221937,0.729311,0.561909,0.159053,0.737929,0.537593,0.36562,0.661452,0.750781,0.436841,0.235881,0.576121,0.166003,0.885116,0.512268,0.551767,0.940817,0.836866,0.604741,0.595535,0.76878,0.0897433,0.0903861,0.309978,0.843904,0.268974,0.093248,0.626058,0.517313,0.268401,0.585216,0.263781,0.956844,0.683416,0.99541,0.0442988,0.328343,0.224923,0.992319,0.790266,0.657433,0.745835,0.818849,0.0984402,0.103907,0.491174,0.0516024,0.122793,0.864729,0.865864,0.459206,0.879027,0.385818,0.681354,0.753253,0.88679,0.480792,0.621298,0.130273,0.752771,0.160146,0.3302,0.30559,0.0229573,0.802497,0.866897,0.85864,0.15392,0.878198,0.864477,0.0730817,0.568487,0.512749,0.531931,0.983161,0.853968,0.0906137,0.00334918,0.0888901,0.379552,0.645923,0.102364,0.78892,0.410824,0.783338,0.756925,0.297165,0.445555,0.546233,0.618472,0.380541,0.427282,0.843003,0.299915,0.70338,0.125847,0.812737,0.548784,0.850414,0.156107,0.11791,0.26654,0.710979,0.672952,0.243113,0.403199,0.755983,0.770097,0.43094,0.924043,0.0174753,0.819006,0.262401,0.108989,0.765957,0.194095,0.260047,0.965621,0.326193,0.880391,0.0965918,0.100389,0.853463,0.742601,0.607465,0.701208,0.0901933,0.227344,0.753451,0.395737,0.361427,0.484162,0.213443,0.501125,0.865487,0.651137,0.611535,0.809546,0.858551,0.283921,0.566686,0.883423,0.242001,0.555773,0.199415,0.411278,0.367296,0.519515,0.851759,0.637075,0.233107,0.922502,0.42721,0.271209,0.982387,0.394709,0.26441,0.229423,0.992996,0.664925,0.30785,0.930027,0.94974,0.471692,0.580272,0.902566,0.631354,0.622406,0.10816,0.466538,0.677958,0.43251,0.988814,0.897552,0.305296,0.527408,0.10732,0.0545059,0.179495,0.793232,0.959491,0.791407,0.422287,0.686705,0.863115,0.895925,0.978891,0.701785,0.413939,0.709918,0.422133,0.901724,0.854398,0.476979,0.555162,0.94956,0.343197,0.596235,0.49255,0.760562,0.361092,0.716947,0.464964,0.231367,0.655257,0.430209,0.83206,0.976726,0.16472,0.238558,0.647359,0.896065,0.72425,0.947153,0.516011,0.543917,0.408921,0.967475,0.491346,0.0757841,0.629209,0.488311,0.0161552,0.733342,0.311383,0.927167,0.488385,0.0582798,0.64759,0.822631,0.87338,0.280538,0.434856,0.398209,0.0268981,0.969909,0.228156,0.923392,0.782099,0.24916,0.950911,0.736266,0.409126,0.839995,0.867613,0.603709,0.341489,0.688161,0.429594,0.311325,0.0167991,0.450254,0.213405,0.244304,0.744732,0.797765,0.788879,0.778315,0.972833,0.711977,0.11641,0.681335,0.664056,0.456884,0.443537,0.169688,0.310751,0.385182,0.714438,0.174293,0.457853,0.985518,0.838901,0.487882,0.584244,0.313382,0.94855,0.94667,0.355594,0.183414,0.418807,0.49214,0.483783,0.441627,0.434862,0.319578,0.0883546,0.62837,0.695709,0.0867015,0.926798,0.313583,0.188616,0.342376,0.202941,0.713999,0.0481982,0.565735,0.0552819,0.240124,0.855977,0.269497,0.303395,0.227447,0.0429837,0.742214,0.942386,0.941807,0.143175,0.221012,0.54375,0.813201,0.264541,0.149232,0.143293,0.458606,0.688431,0.801529,0.12377,0.988953,0.343111,0.319606,0.525647,0.156918,0.84542,0.559784,0.836914,0.906815,0.0546461,0.524616,0.408273,0.251417,0.145802,0.718663,0.0441037,0.975526,0.0887641,0.327742,0.436178,0.415726,0.598673,0.429312,0.795012,0.574969,0.754024,0.56719,0.176444,0.47757,0.308413,0.387731,0.42211,0.810059,0.936174,0.86221,0.115268,0.219933,0.443061,0.428898,0.0380046,0.65152,0.166331,0.936334,0.219948,0.578811,0.963223,0.866816,0.837012,0.5392,0.653551,0.510014,0.286044,0.357358,0.205204,0.944752,0.73497,0.324337,0.837835,0.476586,0.227047,0.607621,0.0100979,0.498058,0.619648,0.3868,0.261456,0.325696,0.730235,0.551136,0.526999,0.566444,0.830168,0.0813283,0.47544,0.222821,0.534229,0.0742502,0.882741,0.664469,0.0913463,0.506558,0.119836,0.106622,0.612359,0.705768,0.634965,0.940093,0.976979,0.844161,0.399822,0.264989,0.101141,0.936448,0.997684,0.608341,0.461292,0.469896,0.556957,0.585296,0.376095,0.349024,0.956306,0.928508,0.637595,0.664838,0.455835,0.213119,0.54698,0.331822,0.551939,0.0843993,0.826511,0.405777,0.0590563,0.893454,0.586226,0.91178,0.101772,0.15926,0.139533,0.238529,0.712887,0.681834,0.313292,0.748788,0.548058,0.150632,0.507455,0.0456208,0.48553,0.0632967,0.333711,0.990666,0.326398,0.853323,0.354351,0.0328225,0.906585,0.642429,0.68391,0.700389,0.317983,0.352802,0.500266,0.402095,0.279878,0.657795,0.620552,0.542101,0.775867,0.587969,0.140038,0.179039,0.683453,0.948275,0.10022,0.317528,0.0332707,0.00177038,0.133542,0.908419,0.287409,0.274933,0.32567,0.128349,0.0470368,0.870345,0.171802,0.0272266,0.423921,0.737813,0.128242,0.432842,0.232185,0.728481,0.856416,0.576397,0.442952,0.534908,0.0374266,0.978066,0.585438,0.97819,0.752695,0.908351,0.450898,0.533823,0.483165,0.341651,0.599505,0.731547,0.837575,0.578064,0.359166,0.842681,0.0227044,0.625402,0.234655,0.0432046,0.730922,0.338266,0.489945,0.397303,0.28507,0.511417,0.989508,0.914378,0.245942,0.860905,0.180216,0.0404975,0.645645,0.438983,0.304819,0.549107,0.570315,0.0676196,0.627224,0.439934,0.564532,0.686581,0.368217,0.203813,0.556753,0.729397,0.699289,0.770367,0.575657,0.0495024,0.915488,0.900587,0.650279,0.383638,0.559211,0.023207,0.653788,0.4641,0.829694,0.873305,0.271504,0.863982,0.968008,0.587159,0.836305,0.94602,0.745651,0.457846,0.490169,0.989705,0.690032,0.451128,0.0379444,0.0733267,0.73945,0.360893,0.673804,0.0513775,0.284383,0.998985,0.0944513,0.598276,0.526609,0.490346,0.233443,0.528677,0.815734,0.218584,0.618026,0.999506,0.660102,0.273101,0.516836,0.797297,0.77709,0.473149,0.313394,0.227031,0.778749,0.456805,0.0953422,0.768288,0.545053,0.387035,0.953646,0.831089,0.578452,0.951286,0.983241,0.623388,0.239037,0.861314,0.352611,0.962917,0.643808,|0.817244,0.559075,0.280308,0.404283,0.525711,0.770636,0.6433,0.953812,0.00422257,0.904766,0.0589464,0.367691,0.927927,0.0111443,0.935054,0.940807,0.895878,0.635207,0.773274,0.517532,0.536547,0.97081,0.947372,0.99057,0.945989,0.721275,0.706172,0.561061,0.133746,0.739291,0.403307,0.944789,0.0519044,0.794757,0.987615,0.672495,0.80335,0.477672,0.426608,0.870362,0.188698,0.00200886,0.688347,0.799263,0.0385811,0.179039,0.191646,0.308197,0.702443,0.252679,0.163039,0.384543,0.641104,0.723987,0.692437,0.822884,0.368124,0.617109,0.529716,0.866565,0.51126,0.887398,0.23244,0.156065,0.13575,0.981882,0.88124,0.629301,0.192046,0.20391,0.853668,0.705038,0.741224,0.491772,0.883072,0.441989,0.661633,0.898018,0.41128,0.384205,0.681562,0.77117,0.696362,0.0380877,0.153003,0.512166,0.93952,0.189493,0.999777,0.355444,0.920338,0.0178935,0.31084,0.977464,0.552354,0.601032,0.583317,0.908731,0.0473872,0.186724,0.508709,0.465938,0.895261,0.667779,0.973171,0.200077,0.124871,0.880121,0.33335,0.222324,0.976817,0.573046,0.0261919,0.160131,0.477084,0.90929,0.801453,0.942325,0.44798,0.0281587,0.698716,0.363245,0.821474,0.123669,0.0751376,0.462672,0.131846,0.464073,0.848128,0.046478,0.508874,0.112887,0.132955,0.882357,0.335955,0.521562,0.208606,0.839921,0.450767,0.896343,0.276066,0.141194,0.615342,0.957636,0.902581,0.235026,0.368883,0.0709212,0.192157,0.240619,0.482686,0.377144,0.965297,0.907827,0.365456,0.393748,0.0786063,0.446487,0.907945,0.970169,0.336845,0.991742,0.820005,0.0876018,0.49961,0.593115,0.333584,0.476511,0.870918,0.544276,0.398041,0.688809,0.4245,0.247813,0.548211,0.651857,0.333814,0.81441,0.679991,0.508094,0.430136,0.220264,0.893477,0.579874,0.286437,0.497162,0.0732244,0.26878,0.408309,0.454515,0.209701,0.199751,0.865541,0.331831,0.181756,0.909558,0.916131,0.0419613,0.702792,0.0732414,0.32238,0.139706,0.0955982,0.556525,0.306199,0.755693,0.0383263,0.794948,0.144041,0.31714,0.743067,0.138821,0.804179,0.7748,0.366622,0.903758,0.605083,0.822875,0.321176,0.22232,0.716831,0.635839,0.672068,0.596844,0.47566,0.187125,0.563363,0.65157,0.144131,0.515708,0.475931,0.744796,0.596084,0.509599,0.982293,0.461055,0.48135,0.577449,0.760332,0.367442,0.506052,0.0513909,0.963613,0.607095,0.900742,0.63202,0.75749,0.504569,0.963058,0.502442,0.873351,0.908983,0.649641,0.691512,0.975149,0.155883,0.0888185,0.970297,0.121524,0.518647,0.218583,0.978867,0.235379,0.211231,0.473864,0.291829,0.364349,0.91418,0.527203,0.679079,0.552818,0.901838,0.525571,0.934014,0.90538,0.186625,0.695882,0.876859,0.275451,0.405773,0.811748,0.737458,0.699512,0.574205,0.63667,0.507702,0.152024,0.48233,0.959937,0.13144,0.990957,0.7298,0.966961,0.0540216,0.575628,0.397715,0.728375,0.0701755,0.513005,0.371154,0.939799,0.864967,0.656273,0.657144,0.176866,0.743487,0.777787,0.831143,0.515861,0.550689,0.986991,0.879879,0.819947,0.76812,0.0856957,0.911856,0.318343,0.748959,0.689126,0.823877,0.688419,0.698867,0.551011,0.796139,0.54328,0.609194,0.843048,0.498681,0.42786,0.168804,0.544913,0.562111,0.542018,0.00883842,0.918647,0.423909,0.0341018,0.103568,0.768238,0.722227,0.558759,0.262925,0.844374,0.977775,0.704748,0.225695,0.121053,0.666547,0.662799,0.954209,0.0890193,0.933066,0.0947375,0.429945,0.0279425,0.552509,0.141248,0.651486,0.0500315,0.885021,0.626543,0.499328,0.0651518,0.18651,0.367147,0.955323,0.317864,0.289697,0.0447711,0.310199,0.354487,0.192357,0.185625,0.0491875,0.117261,0.446387,0.65442,0.951569,0.967784,0.760903,0.976573,0.424951,0.712728,0.0737438,0.45107,0.938773,0.394073,0.0851113,0.346186,0.558338,0.270193,0.422343,0.770971,0.52303,0.712236,0.485166,0.135276,0.114756,0.758789,0.926014,0.296788,0.820557,0.340595,0.385843,0.00809276,0.632445,0.979885,0.146269,0.378664,0.933751,0.529444,0.829399,0.233719,0.547209,0.0132541,0.286239,0.489612,0.279989,0.173719,0.496979,0.70475,0.47305,0.437183,0.857287,0.812249,0.342263,0.620308,0.833621,0.581715,0.613226,0.721435,0.26991,0.927932,0.712632,0.357779,0.626335,0.893505,0.877766,0.509054,0.522606,0.126097,0.71743,0.294383,0.182012,0.251085,0.396522,0.714531,0.584172,0.532895,0.132381,0.870151,0.629626,0.232462,0.00766718,0.647312,0.21206,0.635966,0.553703,0.232584,0.062199,0.563232,0.21167,0.0188934,0.00419396,0.300808,0.0734597,0.852076,0.30329,0.198168,0.531615,0.439939,0.405163,0.0180246,0.140351,0.709393,0.00930548,0.32053,0.293698,0.65165,0.671872,0.431418,0.710522,0.953789,0.354051,0.672113,0.130474,0.635526,0.484362,0.0227805,0.776271,0.511498,0.530935,0.782099,0.314683,0.713608,0.463718,0.983739,0.898965,0.0517957,0.375696,0.248777,0.00259829,0.10119,0.105175,0.291363,0.308483,0.959764,0.0840865,0.440902,0.805854,0.709085,0.357663,0.581494,0.278989,0.532261,0.345626,0.531497,0.833102,0.653441,0.18782,0.872574,0.389372,0.0393087,0.408552,0.788052,0.755764,0.694554,0.59906,0.606772,0.988856,0.0440233,0.348438,0.0102944,0.814823,0.219384,0.837801,0.87381,0.383606,0.185127,0.734992,0.722271,0.747385,0.783643,0.429662,0.22367,0.54155,0.116639,0.737231,0.788946,0.0976297,0.654272,0.874146,0.0063684,0.993389,0.790653,0.90814,0.717196,0.87508,0.615135,0.272288,0.864659,0.646512,0.515375,0.0106304,0.0528334,0.755202,0.353922,0.365077,0.224442,0.679333,0.920342,0.496611,0.470381,0.0385407,0.215269,0.416338,0.995981,0.188343,0.601428,0.788107,0.85888,0.716837,0.622871,0.313181,0.603329,0.661715,0.0615345,0.663307,0.313258,0.233426,0.405903,0.844684,0.53762,0.100643,0.154096,0.395196,0.81547,0.836975,0.0363501,0.573088,0.529624,0.943918,0.91606,0.589713,0.617855,0.483384,0.354358,0.82826,0.0385994,0.212133,0.180083,0.0032987,0.537775,0.816281,0.247566,0.00361764,0.831086,0.628772,0.958953,0.707245,0.510001,0.778537,0.976135,0.890491,0.63745,0.14837,0.914174,0.142922,0.491587,0.596836,0.749728,0.400423,0.499111,0.187699,0.0522732,0.757871,0.727185,0.787441,0.139294,0.769732,0.736228,0.289308,0.617226,0.0989702,0.584714,0.927109,0.279855,0.979231,0.240742,0.37791,0.34017,0.508579,0.483313,0.887224,0.858789,0.735989,0.839157,0.861333,0.993883,0.0271025,0.592774,0.293231,0.482484,0.730399,0.162122,0.030775,0.128154,0.59056,0.12398,0.967215,0.822961,0.930193,0.0721214,0.896889,0.912247,0.916363,0.292171,0.569181,0.150197,0.46471,0.366432,0.262033,0.1718,0.0670967,0.997137,0.159138,0.346419,0.302797,0.569553,0.586885,0.852319,0.767344,0.52261,0.499431,0.557966,0.94186,0.277732,0.31124,0.533316,0.584036,0.822874,0.966496,0.872261,0.370606,0.76188,0.652315,0.250696,0.193864,0.84302,0.883334,0.936635,0.518537,0.650722,0.952515,0.711113,0.155501,0.167539,0.207823,0.695967,0.37755,0.129959,0.775592,0.68036,0.399348,0.03689,0.575014,0.0412884,0.492492,0.178473,0.858128,0.839219,0.291364,0.586904,0.916657,0.324515,0.448007,0.833967,0.569636,0.0814872,0.483329,0.978034,0.00185061,0.274785,0.237239,0.121948,0.415815,0.316541,0.198602,0.28532,0.292391,0.453157,0.567622,0.386167,0.0238662,0.304087,0.608986,0.485268,0.0599691,0.724313,0.0961047,0.0545926,0.704822,0.85536,0.00894606,0.553842,0.793382,0.56698,0.99389,0.240743,0.0652348,0.31703,0.745692,0.608898,0.735719,0.416862,0.399982,0.758225,0.514174,0.434757,0.292794,0.160013,0.177342,0.466897,0.386918,0.0337845,0.607421,0.735171,0.193964,0.939959,0.292214,0.737169,0.426899,0.267276,0.314534,0.30922,0.000797749,0.0594329,0.282108,0.175734,0.685157,0.522721,0.0845492,0.185928,0.121484,0.598273,0.164508,0.332877,0.406132,0.602562,0.478335,0.465989,0.493193,0.642391,0.568199,0.408951,0.728296,0.247846,0.477177,0.53552,0.202622,0.176529,0.101512,0.611853,0.310366,0.314389,0.724224,0.589182,0.398787,0.68912,0.171225,0.884275,0.473981,0.698629,0.393868,0.293731,0.441848,0.383576,0.358578,0.92275,0.770114,0.65011,0.451738,0.304799,0.0953622,0.483584,0.494148,0.449587,0.118386,0.925272,0.55796,0.85834,0.0613167,0.125253,0.692252,0.637346,0.530653,0.713246,0.794148,0.495856,0.241515,0.464634,0.985026,0.544673,0.518232,0.178207,0.0731861,0.976913,0.125986,0.334236,0.092376,0.206322,0.248563,0.514734,0.0119978,0.647601,0.0633149,0.153001,0.359623,0.550726,0.747007,0.781807,0.0767545,0.942867,0.332662,0.286888,0.184759,0.462654,0.056116,0.490598,0.522883,0.0934757,0.583584,0.651634,0.373462,0.571022,0.79617,0.832517,0.815693,0.359373,0.447329,0.130654,0.934063,0.252162,0.301729,0.333438,0.114912,0.0465601,0.33525,0.0383648,0.823302,0.018884,0.644948,0.144195,0.0154747,0.0834842,0.531698,0.813122,0.312466,0.881595,0.322342,0.239882,0.0904931,0.0300795,0.245461,0.655277,0.44936,0.0406979,0.316764,0.332659,0.0281678,0.0107023,0.336069,0.436377,0.25253,0.495681,0.325725,0.289044,0.484734,0.294632,0.888323,0.475254,0.709064,0.533187,0.548913,0.14822,0.0875984,0.286752,0.62305,0.709991,0.107528,0.688072,0.0368826,0.536477,0.391582,0.0287624,0.642389,0.960334,0.949926,0.774969,0.986353,0.923637,0.744019,0.839717,0.428154,0.80315,0.637002,0.490894,0.392952,0.658581,0.079251,0.550654,0.066013,0.909567,0.908664,0.528217,0.263563,0.827873,0.658397,0.416651,0.130776,0.363041,0.442344,0.0732523,0.809571,0.885001,0.813495,0.969973,0.218434,0.821834,0.215264,0.391387,0.105023,0.513101,0.755153,0.261043,0.664897,0.91483,0.18202,0.0200318,0.243919,|0.253387,0.459111,0.417105,0.185144,0.371024,0.1335,0.00774974,0.653943,0.139711,0.113246,0.405604,0.661714,0.784622,0.10487,0.728893,0.999673,0.0657302,0.580979,0.458302,0.863735,0.407897,0.117527,0.418664,0.704589,0.582065,0.0345487,0.14625,0.511939,0.913997,0.945151,0.201522,0.185895,0.302492,0.395814,0.618769,0.543699,0.978002,0.194675,0.430976,0.513283,0.366898,0.45714,0.765689,0.0551588,0.153218,0.51387,0.560122,0.23543,0.249589,0.83861,0.778234,0.270781,0.524015,0.946488,0.404468,0.447553,0.837105,0.690579,0.313549,0.440857,0.375722,0.28926,0.819694,0.621208,0.0649962,0.432671,0.386418,0.512436,0.305883,0.4696,0.686892,0.338383,0.156911,0.771341,0.286835,0.236852,0.134964,0.162193,0.498079,0.667008,0.8323,0.948944,0.675065,0.662642,0.337568,0.817903,0.871293,0.253246,0.609763,0.752114,0.325635,0.103821,0.664087,0.032881,0.613763,0.528926,0.799931,0.241099,0.680566,0.414754,0.835227,0.348434,0.337675,0.961675,0.688678,0.000231743,0.0321403,0.902516,0.503688,0.298066,0.794127,0.374377,0.17987,0.733117,0.0192465,0.40567,0.860655,0.143824,0.46143,0.483933,0.352911,0.776747,0.917147,0.996619,0.596719,0.772419,0.341107,0.952635,0.935137,0.201279,0.0778626,0.57205,0.352531,0.671574,0.366989,0.172861,0.864592,0.0996458,0.24381,0.359326,0.614275,0.188823,0.887012,0.180098,0.458468,0.178454,0.579207,0.933673,0.246107,0.538545,0.4877,0.434238,0.361567,0.417284,0.197221,0.364055,0.781837,0.728684,0.674823,0.636203,0.523695,0.395867,0.399117,0.619195,0.282526,0.0171075,0.0482718,0.342895,0.478058,0.263996,0.730396,0.110793,0.22507,0.167352,0.761706,0.245933,0.814561,0.617542,0.748468,0.331249,0.66322,0.0549833,0.731075,0.257169,0.941521,0.240012,0.480831,0.622558,0.290283,0.794412,0.368963,0.533448,0.848175,0.877654,0.916326,0.809198,0.380191,0.908744,0.518419,0.525275,0.708177,0.20087,0.199454,0.676745,0.523383,0.319319,0.78779,0.7733,0.199609,0.28298,0.305328,0.919014,0.830923,0.443655,0.414687,0.45809,0.950883,0.0306566,0.611761,0.649963,0.928262,0.408966,0.566584,0.352685,0.890337,0.170529,0.999459,0.913563,0.470988,0.925811,0.271304,0.970414,0.955999,0.850767,0.121647,0.443889,0.0157401,0.428878,0.285685,0.63689,0.446609,0.850577,0.953824,0.536359,0.730557,0.84577,0.516287,0.600882,0.765862,0.596403,0.936625,0.44308,0.140496,0.44022,0.652182,0.0541775,0.13335,0.958431,0.586075,0.227287,0.0391085,0.284648,0.485823,0.643298,0.821999,0.935291,0.380592,0.188074,0.013243,0.25574,0.48264,0.733638,0.964742,0.942042,0.535012,0.157577,0.126484,0.220684,0.600635,0.803909,0.011511,0.80826,0.840184,0.210085,0.952861,0.500979,0.945436,0.920114,0.390306,0.673617,0.356654,0.687869,0.807633,0.179647,0.986919,0.609249,0.307138,0.128521,0.771479,0.43899,0.278537,0.0336467,0.734125,0.718195,0.512053,0.841631,0.122883,0.267443,0.588794,0.361761,0.44615,0.184305,0.277418,0.150778,0.0291955,0.29032,0.284435,0.630772,0.508879,0.65264,0.716083,0.622175,0.784114,0.552932,0.515007,0.734804,0.55971,0.343509,0.791332,0.90379,0.218455,0.757444,0.343751,0.328319,0.714305,0.0843511,0.841438,0.180752,0.306098,0.690297,0.421534,0.824528,0.978699,0.186909,0.294436,0.698841,0.835032,0.375256,0.334255,0.828524,0.314917,0.00610751,0.353385,0.775379,0.186168,0.289118,0.687199,0.74465,0.180713,0.916924,0.174483,0.359976,0.208314,0.0576055,0.445945,0.872684,0.544321,0.231497,0.695421,0.588585,0.0524881,0.984475,0.148345,0.875808,0.67639,0.846886,0.0939372,0.772083,0.921014,0.871689,0.242734,0.687372,0.498303,0.621889,0.864362,0.399564,0.921511,0.0506405,0.897668,0.0980911,0.771435,0.541762,0.92217,0.159983,0.643871,0.538548,0.542665,0.187702,0.787965,0.0363875,0.710411,0.143556,0.679571,0.906126,0.0838249,0.0144562,0.271839,0.83095,0.0497645,0.79324,0.470645,0.343696,0.976642,0.795342,0.669036,0.081495,0.549982,0.401751,0.00196111,0.790821,0.680409,0.914173,0.538293,0.797776,0.12034,0.604902,0.36989,0.43658,0.260785,0.730738,0.290844,0.0204983,0.110121,0.484974,0.823574,0.830393,0.643289,0.568375,0.711339,0.716838,0.259912,0.270624,0.444302,0.800908,0.177456,0.126154,0.7367,0.122461,0.117884,0.680304,0.833757,0.019621,0.187725,0.482519,0.881009,0.510135,0.524795,0.126887,0.75704,0.400869,0.894933,0.208802,0.162956,0.0132295,0.141645,0.648881,0.0612085,0.176715,0.284723,0.862018,0.877937,0.928835,0.329608,0.850899,0.898521,0.770936,0.221115,0.93058,0.522593,0.105513,0.114229,0.652652,0.300828,0.417673,0.460458,0.978526,0.384895,0.12835,0.693677,0.534283,0.0174304,0.0652177,0.394686,0.934132,0.0304937,0.632026,0.146834,0.314138,0.359208,0.144723,0.588372,0.0239042,0.489941,0.110306,0.826532,0.774699,0.198102,0.174543,0.75109,0.530938,0.966893,0.845037,0.779916,0.45956,0.724535,0.702749,0.695749,0.140079,0.0196472,0.452524,0.152828,0.351425,0.92726,0.643423,0.189174,0.378437,0.350141,0.775717,0.164274,0.956694,0.237419,0.664794,0.80558,0.385266,0.172388,0.670781,0.489546,0.407142,0.430922,0.415001,0.0449166,0.990989,0.465806,0.9034,0.234032,0.233697,0.507607,0.326199,0.957887,0.450638,0.284307,0.35099,0.98433,0.853463,0.409169,0.65778,0.523229,0.610162,0.476087,0.459268,0.26621,0.0603536,0.682829,0.812225,0.0332235,0.0300987,0.969359,0.0182083,0.1195,0.614546,0.84485,0.735493,0.761228,0.562935,0.879255,0.0810339,0.170947,0.00124407,0.474809,0.831227,0.0961602,0.0866066,0.769134,0.677252,0.476319,0.0314214,0.869458,0.507394,0.755278,0.665502,0.851598,0.0896033,0.197969,0.0961066,0.408383,0.0840023,0.33117,0.726244,0.90435,0.326321,0.545657,0.138372,0.49491,0.856829,0.689302,0.0763391,0.290989,0.784983,0.368316,0.878302,0.115298,0.683512,0.583564,0.900343,0.772371,0.227564,0.53966,0.666751,0.619393,0.758289,0.735348,0.0176452,0.751672,0.547245,0.143087,0.211853,0.341341,0.679067,0.221366,0.989239,0.211257,0.796884,0.122834,0.0707005,0.735808,0.511813,0.31563,0.35275,0.222587,0.978655,0.149028,0.15073,0.943188,0.556853,0.299368,0.145026,0.765956,0.229764,0.346652,0.09535,0.274096,0.104088,0.982479,0.822969,0.931423,0.392471,0.608935,0.448201,0.219011,0.76123,0.052611,0.184259,0.872332,0.483233,0.820829,0.176164,0.644845,0.814187,0.05655,0.775016,0.979483,0.621498,0.0171162,0.398649,0.335989,0.272243,0.310793,0.519298,0.39648,0.516803,0.757811,0.41406,0.89392,0.0563753,0.438151,0.557487,0.885139,0.205825,0.207541,0.106104,0.591768,0.539984,0.668905,0.0757635,0.277226,0.126525,0.972016,0.981559,0.774298,0.118561,0.834199,0.620259,0.956684,0.428603,0.80265,0.49148,0.286201,0.269988,0.0264574,0.582508,0.715766,0.550272,0.251607,0.873136,0.0777298,0.882101,0.205864,0.831129,0.718776,0.114327,0.225243,0.242519,0.414063,0.223145,0.0897323,0.443474,0.430391,0.900245,0.123133,0.033338,0.653492,0.75441,0.751251,0.747796,0.0379485,0.15614,0.562402,0.00284946,0.944569,0.0122301,0.386941,0.372716,0.192779,0.936404,0.302745,0.480274,0.878597,0.836383,0.238627,0.347384,0.373541,0.112,0.289094,0.102647,0.723707,0.886516,0.468868,0.121547,0.889824,0.761982,0.934429,0.78504,0.838569,0.145258,0.404725,0.933282,0.114585,0.5801,0.0828239,0.195088,0.480085,0.89127,0.148115,0.452361,0.409475,0.0832761,0.290008,0.0731487,0.287133,0.531507,0.233529,0.261681,0.368939,0.770496,0.981745,0.12398,0.313911,0.841019,0.560001,0.0101369,0.212303,0.941145,0.298106,0.80537,0.752856,0.105242,0.503046,0.038483,0.0459092,0.995522,0.69676,0.181451,0.00881374,0.829003,0.698559,0.658011,0.507215,0.248187,0.966604,0.247263,0.397037,0.250823,0.0399687,0.236356,0.0490814,0.71135,0.345221,0.667511,0.880342,0.915811,0.657001,0.455613,0.535302,0.652328,0.0595042,0.965532,0.997966,0.143688,0.619337,0.0504768,0.629935,0.467593,0.637512,0.377663,0.607591,0.0646853,0.139555,0.561481,0.485555,0.123139,0.871114,0.101659,0.236117,0.169896,0.504059,0.690188,0.704021,0.288719,0.00929868,0.353957,0.0716986,0.02327,0.551475,0.251318,0.00169206,0.128083,0.905135,0.351241,0.749684,0.402581,0.664944,0.473923,0.957497,0.482994,0.282044,0.610411,0.884031,0.85919,0.374816,0.932282,0.254129,0.132418,0.466782,0.214227,0.967047,0.923972,0.203731,0.405423,0.157616,0.562266,0.681685,0.715177,0.248384,0.168662,0.453464,0.0630292,0.62595,0.228006,0.0573998,0.432833,0.727106,0.816231,0.824006,0.396627,0.371575,0.214721,0.101382,0.866638,0.722517,0.439845,0.857637,0.602274,0.0888311,0.544476,0.058023,0.119182,0.221572,0.848031,0.565018,0.26229,0.920203,0.555209,0.713062,0.539316,0.761849,0.498021,0.850274,0.313412,0.271803,0.402606,0.711127,0.966779,0.853853,0.681977,0.326019,0.835478,0.356046,0.355197,0.25822,0.245082,0.55743,0.63143,0.645424,0.641109,0.39713,0.431205,0.486237,0.179959,0.386765,0.815311,0.511194,0.615341,0.450808,0.379807,0.988809,0.298793,0.909805,0.616896,0.890085,0.946431,0.860672,0.339942,0.730155,0.842875,0.519596,0.971496,0.309181,0.265915,0.31609,0.0459465,0.272323,0.396478,0.620902,0.639473,0.631233,0.645688,0.26766,0.316085,0.183354,0.123226,0.121871,0.641257,0.0528158,0.505153,0.512091,0.904006,0.127077,0.0137581,0.0228763,0.0592576,0.096846,0.481907,0.8688,0.483,0.117699,0.0355698,0.00547522,0.553373,0.735578,0.55924,0.502266,0.022487,0.345674,0.410376,0.943159,0.56798,0.921547,0.586111,0.439822,0.414045,|0.0656588,0.477959,0.378007,0.970382,0.60518,0.0632303,0.904842,0.0940185,0.320166,0.673359,0.242549,0.511505,0.655589,0.230093,0.318437,0.353538,0.163754,0.162886,0.346823,0.354358,0.563266,0.856912,0.253207,0.797317,0.319288,0.526377,0.449833,0.564258,0.582869,0.557556,0.70351,0.487227,0.944544,0.830593,0.00862145,0.824368,0.732187,0.373156,0.830738,0.838047,0.140057,0.335523,0.40504,0.912822,0.269649,0.99003,0.407867,0.0227183,0.249732,0.174451,0.155418,0.592876,0.997718,0.876395,0.114755,0.697578,0.710451,0.0873834,0.411734,0.114196,0.691913,0.558393,0.825157,0.699749,0.661966,0.173999,0.353204,0.986034,0.477635,0.514239,0.636049,0.939447,0.409237,0.838233,0.791362,0.933528,0.101431,0.849962,0.204163,0.186491,0.159297,0.722791,0.795613,0.308265,0.825036,0.917376,0.518507,0.244822,0.726128,0.94839,0.520909,0.377886,0.0913401,0.515463,0.267972,0.294181,0.156285,0.798055,0.0192359,0.345366,0.933166,0.815414,0.3558,0.304894,0.0320123,0.895688,0.776562,0.954629,0.991533,0.834791,0.888081,0.164496,0.594675,0.241427,0.0379982,0.495313,0.181515,0.415786,0.133006,0.878274,0.805961,0.76464,0.289131,0.19071,0.783984,0.17608,0.528213,0.27729,0.938673,0.536803,0.397262,0.366552,0.810359,0.684119,0.231589,0.212205,0.329573,0.511605,0.95616,0.653567,0.0370257,0.983331,0.251183,0.7434,0.157933,0.0731391,0.644941,0.286048,0.711202,0.0516277,0.778993,0.900722,0.887004,0.639258,0.953254,0.733675,0.0504993,0.257225,0.129506,0.704512,0.911459,0.902547,0.949857,0.939171,0.563105,0.704793,0.471318,0.278406,0.640777,0.113066,0.0229893,0.297368,0.673695,0.709328,0.740571,0.801401,0.97976,0.57128,0.447675,0.298966,0.738145,0.318382,0.271027,0.860092,0.921435,0.028788,0.273271,0.186096,0.85794,0.764345,0.4552,0.979301,0.427419,0.906885,0.786218,0.76819,0.840621,0.254926,0.411678,0.142567,0.522925,0.866636,0.759871,0.323428,0.907983,0.813799,0.432817,0.0707527,0.0635812,0.6507,0.571594,0.760812,0.782775,0.467033,0.839216,0.527227,0.270375,0.133978,0.405327,0.311829,0.743748,0.99885,0.99479,0.614006,0.961556,0.143173,0.261987,0.937576,0.892983,0.432234,0.764135,0.578187,0.0728789,0.24415,0.625686,0.964586,0.957415,0.334547,0.248896,0.0293446,0.184009,0.964476,0.562438,0.398549,0.271235,0.107577,0.579399,0.182558,0.745769,0.496228,0.629138,0.104536,0.680933,0.175447,0.251483,0.607532,0.1277,0.347368,0.851534,0.0813525,0.33756,0.564766,0.616105,0.485525,0.877232,0.68037,0.155032,0.620366,0.297358,0.790123,0.375073,0.959147,0.96888,0.5665,0.834184,0.646282,0.951108,0.545279,0.691567,0.980095,0.935145,0.537362,0.271933,0.992148,0.123112,0.300133,0.524827,0.690764,0.130499,0.348476,0.811683,0.117188,0.0880393,0.873402,0.991479,0.545371,0.79573,0.0377308,0.610116,0.0283977,0.425147,0.595014,0.20806,0.777766,0.735032,0.908327,0.360393,0.738982,0.757188,0.425824,0.331053,0.130139,0.0783997,0.618784,0.772137,0.849762,0.502895,0.632794,0.20214,0.837439,0.824365,0.949124,0.826295,0.650321,0.355736,0.420774,0.206915,0.752335,0.387166,0.382076,0.479671,0.46565,0.653455,0.731583,0.0611776,0.212954,0.623401,0.016849,0.242848,0.247904,0.878204,0.892969,0.881093,0.886082,0.851914,0.00475067,0.397725,0.194498,0.123211,0.261178,0.775971,0.199832,0.545557,0.764443,0.976553,0.807429,0.0313913,0.20692,0.49531,0.93036,0.889937,0.118654,0.486416,0.246834,0.518886,0.72697,0.528169,0.267231,0.2794,0.915136,0.924793,0.565441,0.00395173,0.595717,0.396655,0.688397,0.987398,0.0601038,0.1753,0.966233,0.732111,0.106324,0.47457,0.184546,0.615408,0.970339,0.889596,0.715297,0.0663818,0.876442,0.72813,0.511049,0.258873,0.836232,0.468538,0.267582,0.349463,0.788691,0.257701,0.0213927,0.85009,0.767794,0.490547,0.182403,0.181977,0.555241,0.628458,0.46978,0.142107,0.943007,0.516615,0.00645471,0.401177,0.233956,0.901048,0.588629,0.553913,0.192666,0.595871,0.172223,0.8721,0.26048,0.288592,0.64143,0.182003,0.589668,0.904557,0.70791,0.161159,0.833527,0.647393,0.234459,0.627966,0.603415,0.492429,0.717351,0.415909,0.733941,0.814662,0.418017,0.431089,0.806283,0.726544,0.603015,0.485176,0.431983,0.736277,0.717038,0.297018,0.5106,0.993088,0.28766,0.50956,0.537254,0.88453,0.812907,0.0336062,0.498385,0.231131,0.600881,0.335147,0.313159,0.332435,0.802157,0.847324,0.935301,0.335159,0.224284,0.653604,0.337555,0.236703,0.711948,0.129596,0.123135,0.925915,0.396582,0.250448,0.0648339,0.209635,0.950639,0.707969,0.36823,0.997478,0.645871,0.710029,0.858744,0.961766,0.787008,0.941477,0.270238,0.154291,0.475901,0.585886,0.0102518,0.271314,0.864532,0.892478,0.881195,0.409409,0.929694,0.131668,0.65168,0.221313,0.0380674,0.0440009,0.577944,0.185519,0.51903,0.883623,0.0292423,0.14816,0.147305,0.792736,0.956449,0.0700129,0.795092,0.869325,0.910429,0.13951,0.0359552,0.125065,0.409949,0.176707,0.176601,0.61988,0.884584,0.33572,0.42658,0.741622,0.529846,0.974718,0.00852668,0.104144,0.217015,0.44861,0.164048,0.528422,0.365465,0.116252,0.813839,0.932056,0.792044,0.900272,0.4088,0.98357,0.510472,0.324355,0.818576,0.67751,0.133435,0.660872,0.831902,0.473415,0.819421,0.828732,0.311459,0.850292,0.917055,0.640538,0.170794,0.112426,0.361867,0.146565,0.480208,0.0356362,0.267564,0.392444,0.744221,0.29521,0.108092,0.0856969,0.712375,0.341798,0.389435,0.658516,0.0683003,0.314526,0.930537,0.0618405,0.994112,0.609079,0.0869532,0.357704,0.473389,0.765201,0.384218,0.639576,0.636039,0.155165,0.28621,0.458072,0.182456,0.686606,0.174716,0.726481,0.23388,0.768909,0.27919,0.872083,0.688909,0.190281,0.302334,0.0544441,0.119322,0.299225,0.528576,0.839559,0.0203424,0.905543,0.390673,0.747848,0.754859,0.958634,0.346804,0.652105,0.063479,0.560423,0.807022,0.0932219,0.235618,0.439887,0.978898,0.668501,0.988011,0.225431,0.420969,0.323428,0.588907,0.832743,0.55151,0.9056,0.829749,0.741811,0.457953,0.395856,0.650791,0.10859,0.199974,0.00575238,0.817397,0.484424,0.775835,0.0414479,0.553436,0.0364689,0.771163,0.956063,0.405586,0.670181,0.118057,0.723702,0.315435,0.574346,0.672275,0.17771,0.325646,0.0786837,0.646754,0.234822,0.955938,0.111229,0.248017,0.768209,0.172671,0.383966,0.477414,0.977445,0.116563,0.926535,0.675171,0.771767,0.193312,0.639359,0.880934,0.699736,0.363942,0.864333,0.0634719,0.535257,0.33886,0.984354,0.970072,0.323777,0.28784,0.761941,0.625148,0.334503,0.774627,0.147462,0.518484,0.237985,0.877017,0.0302325,0.900674,0.00402743,0.404682,0.232153,0.0894418,0.611511,0.0911785,0.549251,0.327181,0.325936,0.629591,0.980542,0.972042,0.662369,0.0724953,0.608744,0.878059,0.830483,0.713604,0.822245,0.778516,0.0660244,0.282647,0.998012,0.377296,0.275081,0.864086,0.664803,0.420647,0.0335308,0.23065,0.318854,0.419322,0.239644,0.159592,0.109653,0.539822,0.573892,0.879269,0.776182,0.990155,0.427464,0.897088,0.627029,0.90075,0.138529,0.544399,0.0831861,0.577426,0.128161,0.0519164,0.571085,0.192345,0.432672,0.963226,0.246123,0.564948,0.0827205,0.0508954,0.594651,0.921548,0.292877,0.775555,0.844312,0.441814,0.378974,0.341445,0.53241,0.784869,0.664676,0.47903,0.370808,0.118272,0.530818,0.0329763,0.696946,0.763734,0.153972,0.383141,0.835713,0.475187,0.131799,0.662424,0.969497,0.758501,0.604275,0.132397,0.86432,0.342383,0.0233268,0.865807,0.946656,0.523641,0.847666,0.571598,0.631877,0.178152,0.0641841,0.260817,0.949363,0.768221,0.397628,0.224008,0.477084,0.312824,0.110436,0.475313,0.267122,0.979699,0.543635,0.768903,0.384158,0.307945,0.74136,0.521894,0.995681,0.52311,0.976187,0.675879,0.00614619,0.490111,0.581587,0.217452,0.464921,0.99661,0.613185,0.674363,0.868459,0.389759,0.590017,0.922799,0.413829,0.464081,0.31372,0.589567,0.760188,0.274888,0.778463,0.11737,0.202313,0.431712,0.879746,0.118938,0.445803,0.103616,0.391143,0.297048,0.771032,0.845583,0.354436,0.236888,0.0368635,0.818699,0.822544,0.463494,0.370425,0.105061,0.830828,0.847861,0.108694,0.842859,0.140916,0.419046,0.956398,0.0340627,0.738546,0.456771,0.716128,0.252555,0.596696,0.571978,0.155434,0.386742,0.921658,0.85499,0.817353,0.118903,0.1283,0.550526,0.763773,0.991119,0.680171,0.713975,0.359656,0.663818,0.553848,0.293823,0.905136,0.143176,0.982094,0.992207,0.826772,0.679364,0.671656,0.873691,0.135941,0.547692,0.205769,0.724257,0.401067,0.417097,0.00503695,0.965503,0.386303,0.682391,0.0405815,0.754296,0.368395,0.722046,0.550982,0.281936,0.407438,0.133499,0.791989,0.428955,0.385945,0.223526,0.983047,0.199407,0.47672,0.353366,0.058318,0.966661,0.390944,0.930318,0.487706,0.886001,0.0784085,0.409589,0.0542629,0.987235,0.231704,0.389457,0.458868,0.277421,0.2908,0.305257,0.647129,0.643232,0.391543,0.0387813,0.501883,0.21558,0.119706,0.582559,0.443339,0.315194,0.709658,0.456686,0.305441,0.465807,0.376305,0.507806,0.487635,0.680607,0.0377852,0.676741,0.613822,0.38266,0.844188,0.990586,0.448842,0.48504,0.99116,0.758728,0.0301247,0.972136,0.793085,0.581493,0.244192,0.622931,0.00313979,0.228088,0.212232,0.761199,0.421531,0.770975,0.757343,0.173256,0.258773,0.340515,0.393534,0.337896,0.171215,0.464361,0.565048,0.525264,0.816874,0.626723,0.0348908,0.494706,0.343102,0.38434,0.0768205,0.71288,0.847248,0.794208,0.080361,0.42077,0.47069,0.360276,0.92906,0.42564,0.481156,0.567239,0.186325,0.677569,|0.0771155,0.826764,0.838021,0.069546,0.458736,0.89853,0.60278,0.765748,0.161823,0.368862,0.363283,0.698264,0.879554,0.295002,0.0255823,0.084366,0.50007,0.980576,0.226186,0.525196,0.551649,0.456492,0.463608,0.917478,0.300225,0.510916,0.974464,0.984454,0.242803,0.4296,0.514922,0.0380415,0.882887,0.959246,0.61493,0.91226,0.145921,0.622889,0.483897,0.957709,0.771613,0.410601,0.650136,0.725569,0.799201,0.423498,0.0159057,0.208048,0.959936,0.12296,0.160073,0.0195265,0.712867,0.0801703,0.434134,0.803578,0.709044,0.730749,0.918508,0.108007,0.0917641,0.391086,0.537568,0.921412,0.19902,0.437917,0.169938,0.122381,0.00458378,0.0762942,0.0465069,0.423121,0.517909,0.93982,0.132997,0.0561764,0.348531,0.0226912,0.475043,0.179107,0.0756262,0.0755223,0.180943,0.721345,0.513047,0.00439054,0.6395,0.880175,0.85304,0.483981,0.389227,0.39173,0.457186,0.391849,0.268404,0.657191,0.315858,0.203926,0.21124,0.205991,0.478869,0.578837,0.541773,0.682074,0.0699525,0.244808,0.156645,0.512072,0.905924,0.599002,0.743349,0.403089,0.351022,0.789296,0.757676,0.775603,0.647461,0.82209,0.517081,0.346113,0.535642,0.19319,0.0333005,0.510094,0.625454,0.500429,0.199698,0.469679,0.504959,0.469345,0.377654,0.15303,0.722806,0.803522,0.612879,0.304189,0.531282,0.608795,0.898089,0.444349,0.0870441,0.391184,0.988937,0.673631,0.461022,0.591063,0.817373,0.215384,0.974898,0.400976,0.798302,0.611294,0.42929,0.382467,0.371984,0.325163,0.0182669,0.598346,0.848591,0.12925,0.152297,0.35785,0.0388145,0.606303,0.239774,0.458664,0.425796,0.719758,0.445794,0.0474074,0.633774,0.104522,0.722576,0.190455,0.710419,0.807916,0.81687,0.505862,0.578446,0.671831,0.54317,0.514968,0.761661,0.174149,0.203092,0.331503,0.785903,0.733169,0.166781,0.981997,0.498798,0.0471144,0.870655,0.0419345,0.744678,0.294675,0.386837,0.106045,0.0984322,0.0647835,0.961939,0.0875965,0.394761,0.595766,0.4888,0.874568,0.0155268,0.653798,0.171341,0.00476211,0.618721,0.322257,0.421381,0.373347,0.622922,0.168272,0.595792,0.920031,0.996042,0.921242,0.962067,0.398364,0.346108,0.732092,0.778722,0.82275,0.330129,0.6797,0.855921,0.473873,0.881553,0.294287,0.469222,0.596482,0.999285,0.809504,0.0705761,0.775974,0.668498,0.858042,0.58518,0.750083,0.373597,0.0683544,0.173632,0.1037,0.363859,0.218756,0.169187,0.843425,0.390052,0.882557,0.291142,0.341432,0.372598,0.382523,0.394888,0.0783346,0.188223,0.817657,0.769829,0.270347,0.466497,0.600853,0.997319,0.94822,0.267797,0.541036,0.00912857,0.0423404,0.0267728,0.042712,0.539779,0.692589,0.757895,0.763183,0.462217,0.783171,0.184075,0.680977,0.81075,0.331289,0.734041,0.927724,0.293633,0.262188,0.835608,0.996612,0.368485,0.222645,0.262652,0.988009,0.901699,0.151184,0.736089,0.866512,0.585486,0.158043,0.0529044,0.875923,0.291768,0.877754,0.137099,0.199774,0.325504,0.554468,0.871688,0.827135,0.671986,0.792486,0.539475,0.0508735,0.7815,0.178726,0.373961,0.812034,0.214335,0.808507,0.374243,0.237108,0.190628,0.0661963,0.37198,0.934443,0.0377375,0.659361,0.707864,0.806586,0.557464,0.138188,0.958971,0.249494,0.228613,0.34288,0.333651,0.993908,0.517843,0.0391011,0.832328,0.587402,0.680882,0.704919,0.175523,0.275795,0.604455,0.0885379,0.200508,0.34846,0.615281,0.305612,0.052527,0.713126,0.513788,0.535193,0.1181,0.0500892,0.436915,0.190498,0.904087,0.822466,0.786616,0.0748114,0.739637,0.880884,0.170269,0.910018,0.487012,0.462319,0.0624828,0.167061,0.668253,0.178291,0.163769,0.861956,0.0979127,0.524008,0.532273,0.776864,0.240948,0.507699,0.875904,0.228675,0.803603,0.26178,0.583571,0.896719,0.0488655,0.876987,0.405504,0.701085,0.157023,0.773506,0.593251,0.420197,0.0679988,0.279001,0.367704,0.96757,0.594585,0.135718,0.73198,0.561432,0.861377,0.436966,0.620713,0.496122,0.704983,0.641898,0.184691,0.101136,0.0110375,0.427005,0.758062,0.738255,0.0986946,0.656971,0.825903,0.690449,0.0431887,0.460182,0.891496,0.990503,0.516747,0.797063,0.969472,0.0408159,0.496016,0.705811,0.331532,0.589088,0.0162297,0.254335,0.413993,0.284419,0.971059,0.140798,0.457835,0.496265,0.468282,0.0349208,0.254048,0.294666,0.83648,0.834723,0.611715,0.844704,0.760029,0.276974,0.17541,0.460889,0.450571,0.302254,0.856765,0.111828,0.821561,0.211962,0.695138,0.209344,0.702491,0.295606,0.896974,0.00261563,0.909092,0.808304,0.684157,0.0343646,0.607768,0.936487,0.498348,0.429007,0.0289007,0.372499,0.237528,0.14143,0.0612835,0.219923,0.96969,0.154007,0.106454,0.838055,0.658535,0.126875,0.578504,0.72546,0.833311,0.264146,0.854109,0.0317979,0.866453,0.365497,0.263009,0.978284,0.178957,0.931404,0.61641,0.339059,0.549358,0.0136529,0.559732,0.299464,0.00120407,0.57146,0.804877,0.79508,0.0194109,0.189766,0.127666,0.300517,0.289783,0.366773,0.309003,0.725711,0.923565,0.592753,0.276258,0.533988,0.51792,0.284858,0.936958,0.00769758,0.405452,0.427261,0.973834,0.473704,0.450954,0.880179,0.784681,0.768537,0.716735,0.515746,0.184497,0.197441,0.84761,0.0542212,0.579839,0.480418,0.809214,0.949471,0.728133,0.544361,0.555403,0.420244,0.0827894,0.483461,0.867059,0.32476,0.0471417,0.361758,0.531319,0.886715,0.662426,0.770706,0.171507,0.377614,0.155728,0.400003,0.765637,0.941771,0.482772,0.150666,0.22695,0.817666,0.00660181,0.848482,0.331826,0.420672,0.198373,0.777561,0.525363,0.109017,0.780203,0.0629069,0.765203,0.591999,0.209679,0.919216,0.344631,0.718435,0.025224,0.495299,0.959934,0.218967,0.203242,0.471723,0.730068,0.698632,0.0723705,0.253154,0.0759926,0.735334,0.388595,0.25063,0.671684,0.619553,0.88642,0.21563,0.389598,0.352739,0.447361,0.703689,0.0419106,0.831425,0.226794,0.983612,0.289059,0.27593,0.178049,0.795766,0.287188,0.773412,0.802813,0.822832,0.656589,0.755768,0.515337,0.140758,0.486462,0.386133,0.094405,0.320312,0.055059,0.90927,0.082093,0.0773359,0.924604,0.864061,0.584566,0.0736974,0.827841,0.659279,0.0319695,0.68567,0.44918,0.367778,0.940812,0.254997,0.689694,0.957345,0.181811,0.881285,0.753758,0.0304934,0.170765,0.155619,0.85192,0.300782,0.858741,0.00238234,0.723329,0.89469,0.573244,0.293385,0.103269,0.0504549,0.558877,0.444779,0.467926,0.234517,0.953121,0.0379724,0.242616,0.13595,0.595905,0.916193,0.969136,0.630772,0.646527,0.751284,0.0242814,0.707591,0.102325,0.465663,0.0468116,0.696065,0.841298,0.422391,0.0440509,0.547894,0.984046,0.572792,0.464847,0.370778,0.669563,0.958898,0.873377,0.388985,0.581223,0.582919,0.989425,0.37056,0.378462,0.308198,0.205949,0.931288,0.602475,0.205167,0.859291,0.230872,0.220753,0.837671,0.453812,0.704383,0.717683,0.468542,0.387824,0.681528,0.407745,0.88357,0.553551,0.414813,0.24327,0.649042,0.792107,0.193405,0.690944,0.0103015,0.574552,0.415833,0.935491,0.244345,0.256177,0.6704,0.628409,0.998529,0.785161,0.00813287,0.489339,0.694772,0.940182,0.395032,0.468004,0.460537,0.314824,0.4011,0.111193,0.340909,0.989733,0.925795,0.737406,0.658167,0.970666,0.362686,0.580858,0.765724,0.210429,0.796093,0.948545,0.37444,0.746657,0.0767705,0.187937,0.216493,0.325201,0.823168,0.74052,0.791645,0.729823,0.947976,0.543653,0.670856,0.985445,0.760312,0.0223677,0.631812,0.0274969,0.432047,0.170707,0.106724,0.744212,0.978704,0.966683,0.735853,0.38821,0.359102,0.700433,0.578402,0.75487,0.889313,0.316347,0.328286,0.737217,0.986728,0.539317,0.678461,0.494713,0.967995,0.165561,0.673365,0.250675,0.207261,0.0787675,0.871877,0.692287,0.641458,0.334957,0.257557,0.359919,0.225739,0.171631,0.091776,0.118297,0.540288,0.601542,0.130648,0.958862,0.0798866,0.978831,0.702194,0.0322888,0.930122,0.949831,0.0848348,0.343458,0.363914,0.552362,0.512609,0.323114,0.897369,0.377076,0.748827,0.155249,0.964606,0.471995,0.919923,0.140826,0.177788,0.472804,0.279534,0.651082,0.560925,0.153465,0.212631,0.0490097,0.664902,0.901837,0.255893,0.641276,0.185662,0.484311,0.443397,0.0826709,0.0684311,0.916403,0.94392,0.127983,0.697066,0.732434,0.418907,0.301185,0.69909,0.679246,0.863968,0.256768,0.90336,0.335433,0.207533,0.451266,0.595203,0.809795,0.57827,0.402013,0.83144,0.410292,0.305315,0.266974,0.52533,0.886856,0.410625,0.0305369,0.488616,0.832819,0.85821,0.676709,0.942836,0.164157,0.750813,0.550957,0.333856,0.937846,0.616385,0.0416756,0.221346,0.136878,0.456272,0.199601,0.932805,0.486294,0.720537,0.45573,0.670442,0.297118,0.41132,0.053014,0.632258,0.609795,0.20316,0.231432,0.604948,0.595505,0.462462,0.436258,0.902806,0.178316,0.516535,0.483205,0.825032,0.42245,0.199511,0.0631571,0.175567,0.433842,0.651637,0.776186,0.959302,0.806323,0.527935,0.902469,0.764959,0.715197,0.979649,0.189052,0.907313,0.727422,0.770025,0.765087,0.801575,0.231292,0.476686,0.840916,0.755692,0.51212,0.522878,0.708356,0.319346,0.943024,0.596069,0.358567,0.50927,0.131559,0.359918,0.939319,0.727206,0.90101,0.476244,0.0862543,0.0197452,0.990133,0.996369,0.440178,0.440808,0.324569,0.152345,0.336186,0.834386,0.98643,0.174477,0.868675,0.098707,0.750896,0.735842,0.791636,0.945571,0.0311759,0.00517517,0.00903177,0.897911,0.157332,0.808993,0.0183294,0.675047,0.660258,0.536365,0.949921,0.118931,0.839386,0.941779,0.340638,0.125573,0.709425,0.120579,0.63322,0.538616,0.855033,0.705354,0.190696,0.22957,0.388194,0.470203,0.809155,0.767494,0.148367,0.709683,0.886406,0.25443,0.958824,0.146442,0.90419,0.413088,0.965873,0.926597,|0.441224,0.740394,0.39975,0.989749,0.514415,0.449894,0.111625,0.392448,0.408552,0.596839,0.372868,0.142081,0.549779,0.0356622,0.99985,0.508907,0.929221,0.847235,0.258105,0.405272,0.594612,0.1652,0.106019,0.439389,0.212643,0.0488572,0.429875,0.168666,0.756251,0.0839034,0.907117,0.822626,0.501814,0.0428333,0.290518,0.159469,0.326196,0.201535,0.118823,0.275326,0.522073,0.131341,0.598023,0.844778,0.945673,0.771028,0.483151,0.141105,0.161384,0.265257,0.751033,0.966596,0.688193,0.46057,0.456254,0.0315361,0.605432,0.544998,0.544678,0.401849,0.550441,0.0109855,0.19821,0.479998,0.330992,0.202545,0.611572,0.109226,0.341748,0.444729,0.328791,0.232875,0.221177,0.606311,0.216283,0.9279,0.999549,0.328472,0.818397,0.916065,0.548471,0.758331,0.330239,0.476977,0.50721,0.899158,0.700259,0.388423,0.420948,0.603555,0.304377,0.0815108,0.298296,0.564223,0.969398,0.681944,0.9953,0.879962,0.211677,0.869436,0.517531,0.867933,0.918703,0.72832,0.426869,0.842099,0.774939,0.0362819,0.633989,0.160309,0.840319,0.125117,0.788811,0.82105,0.944294,0.609572,0.177396,0.986056,0.0417714,0.683719,0.095959,0.573187,0.645631,0.797275,0.816116,0.190805,0.275004,0.741468,0.242353,0.47891,0.702534,0.606867,0.601089,0.832889,0.320196,0.524526,0.837339,0.16973,0.493607,0.000202596,0.3387,0.353855,0.500713,0.92167,0.856309,0.400916,0.356989,0.33661,0.707662,0.794173,0.737285,0.975072,0.0963806,0.474837,0.722434,0.57811,0.729624,0.295297,0.808055,0.320824,0.947807,0.365307,0.34534,0.00844806,0.522235,0.514637,0.128502,0.178819,0.341756,0.0723527,0.259541,0.251395,0.457391,0.11457,0.0355572,0.73857,0.0346435,0.719927,0.370378,0.996908,0.593349,0.726942,0.473177,0.560111,0.770941,0.992962,0.0871153,0.237921,0.21739,0.449628,0.831311,0.142721,0.919341,0.886924,0.525806,0.473902,0.149108,0.481281,0.467725,0.83737,0.702071,0.972033,0.47431,0.127853,0.578891,0.794321,0.645471,0.028281,0.189968,0.526201,0.909151,0.966121,0.549825,0.981308,0.565417,0.467194,0.169626,0.729815,0.355969,0.61526,0.0129179,0.466772,0.857295,0.817532,0.397854,0.26655,0.429304,0.523101,0.740585,0.663486,0.718641,0.0358339,0.616419,0.0751513,0.161474,0.291744,0.446177,0.923222,0.24203,0.507725,0.381976,0.172131,0.306171,0.952542,0.766072,0.0936975,0.731921,0.459346,0.305051,0.109199,0.125674,0.723998,0.402399,0.947318,0.652384,0.979547,0.402448,0.788687,0.221983,0.279181,0.537252,0.375261,0.88445,0.220626,0.387653,0.270948,0.587693,0.955985,0.259449,0.279827,0.818288,0.580732,0.435975,0.185972,0.062597,0.4773,0.0105181,0.182676,0.912512,0.0487322,0.948722,0.843623,0.588377,0.114806,0.866246,0.770977,0.95862,0.729773,0.45764,0.827225,0.243637,0.902783,0.00358623,0.852921,0.550206,0.308927,0.589759,0.886562,0.545479,0.645414,0.447212,0.399736,0.460343,0.00647658,0.628223,0.757311,0.714923,0.761381,0.492146,0.479918,0.610315,0.907515,0.305608,0.0920234,0.931872,0.175952,0.245728,0.409102,0.305411,0.749361,0.269322,0.0280802,0.404567,0.196366,0.808179,0.39801,0.0657648,0.879881,0.159996,0.806538,0.268652,0.682795,0.0240282,0.0649309,0.896028,0.258793,0.109128,0.485134,0.0467995,0.377226,0.669423,0.494221,0.828596,0.730525,0.269289,0.6617,0.163436,0.261945,0.47405,0.630495,0.661398,0.902042,0.94737,0.0680886,0.0473749,0.136197,0.899094,0.551605,0.383759,0.207429,0.599929,0.737817,0.543246,0.731771,0.570116,0.200295,0.282638,0.889873,0.824259,0.738211,0.695474,0.631472,0.860902,0.557159,0.734121,0.871797,0.657085,0.205425,0.930725,0.70268,0.411736,0.102217,0.125049,0.165494,0.224474,0.628383,0.0552548,0.496968,0.92546,0.811982,0.690254,0.547302,0.114948,0.101429,0.999964,0.300505,0.655387,0.982044,0.941946,0.0466204,0.759906,0.175047,0.300845,0.207191,0.670461,0.9387,0.496735,0.239625,0.699167,0.0723829,0.276144,0.658404,0.848818,0.0796433,0.825901,0.575605,0.0404059,0.158632,0.0447611,0.295473,0.608148,0.0144897,0.99939,0.897124,0.303692,0.218654,0.977888,0.804439,0.700619,0.0785159,0.596206,0.0335918,0.240687,0.0563194,0.181132,0.659432,0.313597,0.000324011,0.0646104,0.409271,0.763133,0.575514,0.692922,0.124486,0.0131652,0.476195,0.977055,0.626423,0.859537,0.691732,0.75576,0.810623,0.935106,0.133972,0.810938,0.903365,0.400182,0.149543,0.626909,0.261065,0.595185,0.0361685,0.252202,0.625354,0.372085,0.918895,0.000515759,0.909206,0.0948895,0.14374,0.30151,0.995804,0.326238,0.273148,0.479819,0.253418,0.661056,0.433885,0.976464,0.299988,0.866309,0.198454,0.378277,0.560503,0.542562,0.0111813,0.451819,0.386991,0.000807583,0.399288,0.0771072,0.96822,0.669681,0.74249,0.868883,0.882741,0.601671,0.221872,0.432224,0.914754,0.309531,0.156466,0.642467,0.645284,0.0524504,0.302024,0.166893,0.612878,0.456339,0.324373,0.724028,0.474699,0.341847,0.511243,0.63879,0.676258,0.269782,0.622924,0.787023,0.999486,0.240851,0.739982,0.517456,0.446279,0.760682,0.54335,0.432891,0.341978,0.89805,0.768167,0.578226,0.183577,0.335213,0.389184,0.789596,0.282978,0.817227,0.638907,0.812491,0.688321,0.764198,0.911064,0.856002,0.745097,0.0647085,0.0419888,0.769849,0.770221,0.236129,0.952435,0.772215,0.544974,0.331702,0.906567,0.748944,0.681238,0.589146,0.139491,0.0744396,0.270119,0.135489,0.686374,0.315936,0.856217,0.0268626,0.0912436,0.878947,0.203748,0.797725,0.427864,0.457456,0.831331,0.0376189,0.573221,0.582597,0.551168,0.619706,0.0114805,0.493834,0.355769,0.34033,0.918705,0.499333,0.581011,0.347665,0.83206,0.789053,0.406726,0.443731,0.633293,0.549097,0.201605,0.543907,0.74046,0.611353,0.476608,0.0799497,0.424145,0.675916,0.0247642,0.822484,0.286583,0.76007,0.497818,0.440021,0.423303,0.154856,0.375539,0.660796,0.315604,0.751579,0.0969663,0.592577,0.0652567,0.690553,0.213979,0.774467,0.709997,0.95112,0.833808,0.932783,0.762035,0.0620664,0.0551655,0.488308,0.33867,0.382037,0.400221,0.751629,0.805169,0.87873,0.831461,0.831576,0.876158,0.850167,0.977003,0.79795,0.832103,0.825443,0.254386,0.663251,0.658805,0.307562,0.199108,0.369772,0.487187,0.124545,0.886238,0.884764,0.950819,0.9415,0.0132353,0.250038,0.420337,0.141135,0.14894,0.41186,0.747926,0.783525,0.121453,0.52185,0.224224,0.0574082,0.522433,0.50983,0.91252,0.554156,0.633584,0.760046,0.301921,0.604701,0.392479,0.578596,0.115287,0.0784602,0.336979,0.251444,0.892399,0.673148,0.551112,0.727984,0.324705,0.424846,0.159571,0.357166,0.0633552,0.803936,0.480317,0.838404,0.0414758,0.92095,0.878977,0.763489,0.440142,0.218009,0.265523,0.341176,0.975422,0.0386528,0.0870301,0.437512,0.633107,0.553542,0.0270355,0.0466214,0.552113,0.0628288,0.746691,0.795472,0.993486,0.720276,0.000760198,0.802216,0.925577,0.800084,0.197884,0.73116,0.313527,0.826272,0.952374,0.855735,0.705903,0.293987,0.831127,0.311891,0.64291,0.841856,0.936792,0.499262,0.347983,0.0912532,0.742436,0.961552,0.57929,0.648129,0.252413,0.17564,0.863045,0.636757,0.104357,0.727496,0.501656,0.268223,0.0355052,0.0909001,0.687265,0.480031,0.0623932,0.968216,0.884172,0.996849,0.527036,0.757614,0.0239624,0.555737,0.277939,0.634982,0.51547,0.346582,0.539484,0.647589,0.758905,0.705491,0.0798029,0.78363,0.315028,0.0943657,0.0293769,0.0676566,0.693262,0.467663,0.189247,0.717859,0.801329,0.239662,0.0536717,0.824886,0.488684,0.432647,0.340762,0.736888,0.676713,0.465193,0.217576,0.914773,0.557755,0.121978,0.96165,0.092398,0.319502,0.923362,0.525472,0.625096,0.92728,0.847838,0.960002,0.955809,0.314495,0.246052,0.0579314,0.144098,0.0257352,0.726619,0.227531,0.313314,0.810509,0.305431,0.642307,0.325811,0.828458,0.15256,0.551128,0.145453,0.182941,0.11801,0.497938,0.831548,0.340396,0.217497,0.323725,0.83286,0.152247,0.929375,0.503721,0.186087,5.78165e-05,0.0692879,0.90466,0.0923674,0.079998,0.876064,0.0881574,0.0986366,0.266877,0.203351,0.061568,0.845399,0.196341,0.932486,0.846009,0.362505,0.126911,0.313328,0.685324,0.0405456,0.109151,0.541771,0.279098,0.0555149,0.592897,0.240787,0.492086,0.0150472,0.109177,0.010116,0.595065,0.420176,0.0811948,0.277618,0.670975,0.186755,0.194873,0.22488,0.170783,0.513504,0.538555,0.0257512,0.344948,0.955619,0.543052,0.053746,0.809117,0.488196,0.570213,0.658765,0.723673,0.62239,0.222624,0.466645,0.266378,0.134007,0.226531,0.163771,0.0597991,0.850063,0.493044,0.331989,0.425855,0.180009,0.975462,0.275823,0.933326,0.710783,0.786274,0.423053,0.888739,0.249431,0.304585,0.325989,0.0495149,0.745864,0.362106,0.314873,0.512856,0.644925,0.0772135,0.357793,0.420208,0.191326,0.361729,0.913046,0.449686,0.889863,0.986676,0.038138,0.0610013,0.167803,0.706504,0.634146,0.323247,0.999908,0.977327,0.326668,0.489152,0.742849,0.923156,0.909542,0.183686,0.493232,0.160493,0.961886,0.328408,0.228794,0.865302,0.698568,0.660361,0.346869,0.906319,0.358076,0.643903,0.0178828,0.511965,0.16277,0.00718749,0.0554606,0.480027,0.803275,0.787137,0.309126,0.510341,0.0587519,0.0576932,0.23686,0.312046,0.860524,0.1174,0.882567,0.229985,0.971993,0.0655798,0.891554,0.3379,0.870322,0.00565165,0.860949,0.1368,0.845133,0.768839,0.679406,0.0449949,0.0606127,0.51037,0.925517,0.265271,0.156624,0.845439,0.953134,0.793036,0.447153,0.0300306,0.054697,0.838205,0.997332,0.643645,0.595087,0.323058,0.917845,0.0444713,0.667589,0.371316,0.189327,0.951579,0.0401679,0.0172253,0.135153,0.514233,0.379558,0.190348,0.115986,0.0359998,|0.454544,0.838952,0.464274,0.278333,0.415828,0.889614,0.259461,0.948332,0.138097,0.693381,0.476338,0.241368,0.424082,0.527422,0.35477,0.750083,0.718902,0.538582,0.0688321,0.628526,0.209541,0.447021,0.428499,0.861414,0.387428,0.524267,0.0475136,0.15677,0.63918,0.401906,0.34073,0.0419086,0.82154,0.526899,0.797246,0.11126,0.102297,0.715568,0.94995,0.750761,0.497023,0.405122,0.742191,0.0818213,0.295881,0.710642,0.954989,0.65654,0.523824,0.952522,0.123316,0.749929,0.834283,0.325511,0.514133,0.455085,0.677106,0.327534,0.148531,0.336815,0.800127,0.128971,0.870092,0.707523,0.615334,0.169458,0.707779,0.0926856,0.419695,0.88527,0.013605,0.410611,0.236112,0.360249,0.548388,0.589661,0.288545,0.165315,0.200848,0.961852,0.823113,0.416493,0.439757,0.0716701,0.0994082,0.09876,0.738156,0.779896,0.206474,0.131119,0.922213,0.0984653,0.758083,0.762462,0.552668,0.799888,0.734722,0.661994,0.398383,0.758807,0.762286,0.461717,0.0927336,0.95899,0.196507,0.129963,0.852246,0.232359,0.985086,0.143535,0.552516,0.169306,0.176921,0.0625929,0.157366,0.455347,0.772697,0.808333,0.443537,0.760276,0.347195,0.521901,0.915858,0.909884,0.535513,0.163631,0.183744,0.41627,0.471169,0.0784299,0.821726,0.937971,0.0575877,0.928664,0.847016,0.478257,0.626671,0.329991,0.892392,0.159645,0.472295,0.865984,0.495015,0.522387,0.18022,0.0440371,0.928518,0.565216,0.849671,0.522519,0.748755,0.960814,0.152148,0.18606,0.311117,0.0527248,0.0715488,0.658193,0.983156,0.893549,0.878708,0.601729,0.833623,0.840577,0.332093,0.566235,0.427892,0.0829195,0.228747,0.84072,0.664195,0.121938,0.424377,0.684037,0.505264,0.02911,0.174644,0.158936,0.0288408,0.751993,0.126969,0.835299,0.417161,0.477135,0.358428,0.377848,0.228267,0.0253433,0.715874,0.949565,0.117652,0.425496,0.436995,0.853101,0.596141,0.824999,0.818749,0.0907828,0.133218,0.389537,0.258407,0.0121985,0.159327,0.75781,0.941769,0.981479,0.89096,0.484213,0.872943,0.851172,0.749134,0.0518382,0.909069,0.102254,0.978969,0.552882,0.836087,0.132781,0.193649,0.7034,0.559766,0.314575,0.584538,0.0639089,0.147135,0.649965,0.746926,0.184391,0.102868,0.586005,0.0560694,0.141283,0.309644,0.165645,0.736253,0.155788,0.848281,0.263723,0.645841,0.93447,0.71601,0.931348,0.932171,0.753491,0.578624,0.455039,0.866736,0.96396,0.460946,0.0331795,0.09514,0.0618307,0.804465,0.354509,0.452999,0.673222,0.821968,0.436133,0.413573,0.454055,0.9715,0.743971,0.0380313,0.0852615,0.568311,0.637937,0.154868,0.174461,0.541981,0.389725,0.196587,0.924702,0.436765,0.888346,0.963134,0.691344,0.395162,0.394062,0.125817,0.227558,0.238028,0.636257,0.846327,0.503114,0.920069,0.0772557,0.521602,0.0643427,0.665653,0.526763,0.338025,0.428578,0.355852,0.524626,0.12232,0.154148,0.966687,0.459944,0.144748,0.29824,0.9164,0.791001,0.245245,0.585466,0.711539,0.444944,0.803567,0.451199,0.100264,0.945026,0.101195,0.0627521,0.251249,0.848142,0.912337,0.0226793,0.318808,0.341703,0.561533,0.592115,0.0589195,0.29843,0.741575,0.0643918,0.486464,0.486198,0.366912,0.958412,0.746051,0.929928,0.331121,0.92187,0.802703,0.62307,0.580939,0.0655431,0.822606,0.156353,0.0988063,0.587405,0.814,0.247003,0.757011,0.679369,0.492988,0.736313,0.657386,0.607407,0.563251,0.11286,0.606913,0.847974,0.152308,0.237156,0.444846,0.594352,0.437407,0.909829,0.34569,0.0710781,0.881126,0.195719,0.61795,0.420408,0.811036,0.339145,0.863087,0.091773,0.446074,0.0390189,0.887542,0.0848812,0.635361,0.110099,0.11797,0.385893,0.72656,0.800927,0.000686824,0.723812,0.379492,0.209944,0.543891,0.362235,0.551919,0.979009,0.862619,0.887006,0.880626,0.0223401,0.163733,0.67406,0.584983,0.373585,0.0363212,0.0541748,0.183855,0.646389,0.771408,0.3886,0.314295,0.704231,0.802934,0.36994,0.949327,0.30054,0.913227,0.213203,0.944545,0.224153,0.901403,0.239105,0.677601,0.140023,0.315361,0.511159,0.519113,0.729443,0.669301,0.390654,0.621498,0.85859,0.38051,0.0614641,0.397251,0.890323,0.135408,0.187083,0.98833,0.822175,0.944862,0.850919,0.323953,0.102544,0.425199,0.467212,0.374523,0.513996,0.162933,0.530334,0.612567,0.501036,0.0516551,0.992913,0.436478,0.61061,0.352677,0.0305234,0.414447,0.914847,0.180871,0.805907,0.290969,0.68251,0.636473,0.38338,0.610491,0.308393,0.65595,0.904183,0.232824,0.427655,0.109813,0.961966,0.0709187,0.212065,0.405446,0.917022,0.493357,0.486739,0.334895,0.33658,0.962099,0.775853,0.967139,0.296718,0.169387,0.625569,0.197083,0.975412,0.704667,0.449254,0.445491,0.603998,0.225252,0.498913,0.483139,0.328999,0.0720515,0.222895,0.644495,0.195938,0.302583,0.916869,0.195425,0.343718,0.940984,0.149393,0.768753,0.0413781,0.386851,0.701444,0.417606,0.884598,0.0401995,0.97051,0.50428,0.584559,0.872949,0.519059,0.787934,0.408871,0.607541,0.364256,0.0378307,0.667125,0.96595,0.967526,0.361671,0.566025,0.657429,0.0616975,0.837435,0.0250669,0.105191,0.412165,0.250963,0.945513,0.00489461,0.646492,0.797968,0.89604,0.169359,0.605102,0.998691,0.194105,0.580385,0.762208,0.261688,0.531068,0.255498,0.998955,0.57024,0.0193603,0.80507,0.566087,0.0879552,0.333692,0.101319,0.952871,0.118907,0.746338,0.296468,0.273032,0.935045,0.0028438,0.492856,0.540302,0.761362,0.776005,0.782456,0.863168,0.815333,0.950785,0.529396,0.91871,0.0133106,0.9496,0.441272,0.932573,0.511534,0.463638,0.851808,0.565451,0.578393,0.134642,0.874212,0.679177,0.0767401,0.572373,0.343438,0.898726,0.539048,0.606964,0.825381,0.360003,0.845169,0.945838,0.740611,0.534044,0.98179,0.966852,0.666218,0.411586,0.327243,0.17698,0.0987716,0.198334,0.593137,0.152301,0.814358,0.828175,0.328674,0.519888,0.853969,0.393177,0.464039,0.0961151,0.178214,0.601231,0.98189,0.7002,0.188695,0.786919,0.0182136,0.603626,0.925671,0.445584,0.565514,0.770365,0.265424,0.244824,0.127309,0.259055,0.646589,0.20551,0.979313,0.546656,0.0171325,0.964362,0.426487,0.499769,0.489885,0.914369,0.0920177,0.524423,0.0187058,0.474635,0.395382,0.908923,0.821311,0.729668,0.379652,0.500685,0.0465518,0.744271,0.308038,0.679346,0.130088,0.441658,0.442728,0.860525,0.471652,0.748876,0.493503,0.882432,0.771218,0.0510136,0.379691,0.442532,0.67476,0.206454,0.450724,0.954062,0.765088,0.0348876,0.992933,0.0854545,0.3305,0.130249,0.789926,0.982618,0.178726,0.926609,0.641795,0.845729,0.170265,0.691061,0.561728,0.414883,0.289519,0.365561,0.483993,0.0876402,0.375496,0.965931,0.590099,0.577646,0.644213,0.241476,0.046927,0.682615,0.196054,0.181883,0.749414,0.40951,0.130064,0.291953,0.591477,0.00204474,0.531231,0.689763,0.595665,0.144979,0.355817,0.160651,0.258162,0.467406,0.26725,0.698886,0.372915,0.00976557,0.68936,0.0656139,0.0113727,0.597662,0.198425,0.706622,0.559427,0.808186,0.184286,0.627328,0.275366,0.855609,0.225164,0.908814,0.955635,0.348723,0.459321,0.329167,0.176903,0.0959468,0.733863,0.414006,0.567751,0.856803,0.278293,0.65245,0.267359,0.448653,0.34972,0.694652,0.434887,0.411791,0.874712,0.235926,0.900303,0.0242363,0.181564,0.674037,0.0762995,0.45848,0.151,0.492535,0.176332,0.592274,0.489128,0.422466,0.148204,0.256599,0.391363,0.698129,0.642113,0.448339,0.40716,0.576933,0.0174266,0.863028,0.669056,0.236928,0.424137,0.507153,0.753408,0.516891,0.144635,0.00864172,0.101259,0.158707,0.755961,0.434793,0.470035,0.0467184,0.345743,0.0936683,0.735648,0.786161,0.0290549,0.759653,0.544244,0.269803,0.0612049,0.207075,0.0757856,0.751891,0.142533,0.999321,0.951608,0.617002,0.970907,0.196884,0.620669,0.590951,0.11157,0.890405,0.137821,0.586151,0.218313,0.509887,0.870648,0.322668,0.879964,0.401767,0.562425,0.926107,0.47672,0.202534,0.0121362,0.112014,0.607752,0.590661,0.142386,0.151765,0.942486,0.697132,0.721797,0.738497,0.604613,0.977056,0.634729,0.672311,0.170211,0.153458,0.47084,0.180366,0.948295,0.882869,0.51112,0.666843,0.38026,0.870097,0.832605,0.238692,0.878793,0.667101,0.637934,0.0321469,0.794208,0.269084,0.0855281,0.267513,0.16185,0.0262902,0.217766,0.0071978,0.264498,0.67009,0.63356,0.972863,0.844378,0.912712,0.159947,0.918337,0.0784562,0.46734,0.530344,0.108782,0.915287,0.573212,0.87881,0.617843,0.23087,0.882811,0.236789,0.509138,0.657161,0.541364,0.169404,0.361266,0.876669,0.996298,0.980208,0.965132,0.0355585,0.116882,0.0499623,0.637962,0.130709,0.929216,0.419279,0.555596,0.467602,0.325312,0.574,0.302306,0.562832,0.87035,0.586999,0.296363,0.32908,0.658881,0.410556,0.216928,0.437411,0.0531003,0.116509,0.824204,0.172221,0.494082,0.515825,0.0588629,0.448265,0.126709,0.376808,0.497667,0.0190985,0.768444,0.231087,0.79898,0.407173,0.29486,0.477325,0.276429,0.112213,0.601031,0.010412,0.343711,0.742532,0.0480136,0.361973,0.766543,0.627771,0.374712,0.0481046,0.973395,0.790815,0.920788,0.257709,0.0948833,0.505684,0.96772,0.530372,0.0789979,0.0880471,0.370926,0.345131,0.283304,0.0787396,0.690068,0.24436,0.419368,0.994288,0.00311232,0.505407,0.248233,0.848299,0.225484,0.908935,0.934745,0.978685,0.654769,0.172259,0.734666,0.976997,0.236302,0.456009,0.207503,0.347988,0.36404,0.386911,0.271896,0.596321,0.104382,0.80445,0.827733,0.163458,0.426012,0.178065,0.854456,0.738301,0.257326,0.0122953,0.944977,0.168828,0.408103,0.88806,0.699327,0.770878,0.499422,0.770734,0.931139,0.797108,0.694432,0.327248,0.728853,0.173719,0.960468,0.258217,0.667554,0.50499,0.901913,|0.804452,0.576634,0.446222,0.613773,0.55418,0.367868,0.590104,0.234432,0.919756,0.658316,0.233776,0.243743,0.199675,0.398474,0.188515,0.335247,0.152526,0.947207,0.91288,0.885678,0.630969,0.283779,0.703248,0.536196,0.0146745,0.520719,0.978468,0.441918,0.355097,0.991888,0.774758,0.647008,0.349896,0.836991,0.213954,0.864564,0.508294,0.627192,0.535152,0.495911,0.422535,0.113139,0.647617,0.556704,0.936537,0.575345,0.761087,0.563339,0.0211654,0.287322,0.0768518,0.424637,0.215765,0.57402,0.333219,0.272459,0.527841,0.194508,0.63641,0.564504,0.477882,0.745409,0.673007,0.203408,0.641572,0.942169,0.800681,0.359958,0.593328,0.495002,0.296925,0.668371,0.260399,0.203101,0.541779,0.47461,0.751304,0.8979,0.539632,0.569119,0.35739,0.340129,0.32407,0.466,0.841921,0.755482,0.521233,0.764244,0.334114,0.0811816,0.900346,0.0142467,0.161611,0.793421,0.738025,0.961653,0.670937,0.0350231,0.720446,0.476048,0.644439,0.416908,0.964824,0.681136,0.550633,0.41948,0.988034,0.483481,0.18415,0.380481,0.330421,0.442865,0.0446467,0.0342171,0.336651,0.943103,0.743982,0.809934,0.204826,0.920622,0.660904,0.662414,0.163723,0.260226,0.328627,0.0174025,0.473268,0.610394,0.0978855,0.864509,0.904947,0.789415,0.639213,0.687545,0.931816,0.999066,0.891165,0.970543,0.10144,0.901626,0.336742,0.699835,0.0710909,0.564712,0.399217,0.640697,0.240348,0.884238,0.0666337,0.519191,0.802188,0.219168,0.973477,0.720321,0.801907,0.465125,0.854824,0.000189722,0.00344872,0.022091,0.275254,0.117649,0.761425,0.876587,0.157334,0.450253,0.339723,0.922563,0.922651,0.231648,0.962037,0.373226,0.471299,0.242992,0.763315,0.31101,0.256328,0.838989,0.376464,0.687622,0.582795,0.628641,0.357336,0.992442,0.086899,0.645788,0.0057404,0.0537735,0.151246,0.208616,0.211827,0.782402,0.129006,0.729569,0.426238,0.0468788,0.159168,0.478747,0.618731,0.981934,0.213589,0.925643,0.0408969,0.991758,0.742233,0.472014,0.876124,0.256147,0.30867,0.764954,0.0128127,0.703545,0.685349,0.646709,0.430323,0.291421,0.166855,0.774899,0.988578,0.840952,0.535887,0.873316,0.268903,0.625823,0.800714,0.441818,0.319788,0.692918,0.667565,0.864033,0.256172,0.142745,0.0755762,0.456436,0.249087,0.60365,0.523408,0.551158,0.385547,0.839267,0.0602443,0.414214,0.242627,0.227168,0.106227,0.332691,0.229341,0.0311385,0.372875,0.715325,0.520627,0.156506,0.251508,0.111043,0.842532,0.0131582,0.282174,0.103986,0.88371,0.0796009,0.937559,0.927644,0.238481,0.465009,0.580852,0.593432,0.0140148,0.73964,0.739453,0.785034,0.0472907,0.544554,0.424634,0.398186,0.140296,0.680816,0.156068,0.791118,0.131002,0.462608,0.877388,0.347646,0.921373,0.330597,0.997718,0.488983,0.728899,0.109094,0.521061,0.754942,0.544564,0.142757,0.36466,0.673826,0.733683,0.10246,0.595911,0.402308,0.306353,0.577408,0.99376,0.612984,0.857644,0.211473,0.516385,0.378846,0.995299,0.824896,0.221931,0.128256,0.728757,0.47664,0.897255,0.537615,0.134642,0.829191,0.840929,0.877633,0.0868864,0.340986,0.649734,0.371674,0.633112,0.771215,0.815543,0.182618,0.47562,0.416191,0.194275,0.429845,0.979558,0.22526,0.721943,0.92074,0.151324,0.290811,0.997851,0.422931,0.331498,0.629244,0.96215,0.121416,0.386352,0.135524,0.921019,0.384805,0.163868,0.983078,0.0235311,0.75267,0.510911,0.936704,0.294716,0.818053,0.187005,0.556314,0.0277811,0.840287,0.302634,0.0723743,0.787789,0.172649,0.742592,0.955362,0.934681,0.0899713,0.197323,0.89418,0.359089,0.109982,0.274568,0.41581,0.0066033,0.276866,0.381461,0.116452,0.15679,0.238605,0.183038,0.52962,0.963314,0.602911,0.477669,0.510681,0.779249,0.0676296,0.842049,0.898848,0.0504534,0.482977,0.253186,0.276709,0.416398,0.367918,0.0460083,0.0772982,0.852087,0.649469,0.903068,0.86723,0.610089,0.219744,0.876098,0.691348,0.301003,0.523364,0.554713,0.652059,0.715273,0.940847,0.15882,0.398054,0.917339,0.501104,0.674074,0.483644,0.639491,0.42803,0.394367,0.930455,0.278957,0.203816,0.294855,0.0177223,0.218186,0.533365,0.568095,0.433907,0.00315171,0.661532,0.676758,0.451229,0.784082,0.740192,0.429857,0.967933,0.412232,0.132735,0.953447,0.653742,0.207158,0.44311,0.234283,0.436686,0.330082,0.363365,0.449112,0.244822,0.790952,0.414566,0.0965873,0.919791,0.206105,0.0733769,0.236003,0.218788,0.257914,0.800943,0.288421,0.924563,0.446786,0.0403712,0.742076,0.678294,0.114838,0.8213,0.133114,0.168364,0.323156,0.561668,0.685597,0.248115,0.646111,0.869268,0.660918,0.626469,0.375186,0.22288,0.15138,0.984322,0.217832,0.156559,0.898758,0.286295,0.304008,0.428214,0.404353,0.134656,0.230091,0.887771,0.71748,0.778242,0.107483,0.943328,0.913697,0.873112,0.159987,0.094304,0.504212,0.810981,0.45567,0.903101,0.330616,0.868517,0.514144,0.680214,0.22754,0.306684,0.107794,0.755617,0.393895,0.627094,0.0724783,0.538445,0.252853,0.299606,0.873722,0.548585,0.426069,0.889703,0.688397,0.912137,0.110056,0.791181,0.136526,0.305778,0.361935,0.521977,0.843464,0.933594,0.732162,0.969515,0.331521,0.238917,0.849051,0.156206,0.271174,0.857071,0.578433,0.614028,0.470813,0.514181,0.871081,0.754999,0.862774,0.000872374,0.419945,0.657679,0.542525,0.474356,0.706936,0.031928,0.386661,0.43898,0.453328,0.89486,0.658489,0.759871,0.988602,0.396331,0.815499,0.985079,0.958898,0.501558,0.760949,0.698204,0.463923,0.695292,0.0300099,0.510494,0.145422,0.405216,0.977162,0.540461,0.385665,0.407269,0.372968,0.524436,0.264704,0.434401,0.245748,0.465549,0.955522,0.71135,0.906139,0.273454,0.724987,0.44868,0.301831,0.546944,0.677247,0.698043,0.619042,0.484149,0.691957,0.925934,0.47301,0.559718,0.252702,0.249657,0.291884,0.0246137,0.599646,0.000186682,0.530346,0.235947,0.355886,0.414883,0.124636,0.0363443,0.447151,0.502564,0.186051,0.774423,0.685567,0.281122,0.980279,0.73351,0.314599,0.441248,0.518652,0.326992,0.129132,0.88045,0.431657,0.543138,0.0298784,0.99693,0.313702,0.824905,0.966329,0.646114,0.916425,0.145295,0.558787,0.311033,0.188445,0.962895,0.142953,0.0242269,0.698149,0.910498,0.41525,0.699378,0.721506,0.105399,0.253063,0.00666147,0.71095,0.0330206,0.379904,0.553474,0.363217,0.79111,0.52031,0.593867,0.458504,0.467666,0.72404,0.97007,0.639753,0.0657906,0.793486,0.835573,0.00318736,0.284437,0.571219,0.312142,0.198802,0.132607,0.486827,0.427791,0.382898,0.535884,0.879377,0.18601,0.640737,0.661974,0.391928,0.45654,0.904713,0.979077,0.808924,0.496944,0.131125,0.190371,0.0194012,0.160848,0.565882,0.299406,0.979834,0.439667,0.909378,0.720164,0.749263,0.905663,0.702892,0.100875,0.146354,0.30244,0.626896,0.116754,0.578173,0.988659,0.254824,0.185805,0.851019,0.618269,0.759538,0.279718,0.816026,0.0411728,0.322511,0.871112,0.191157,0.590955,0.333167,0.29832,0.830246,0.590584,0.298238,0.0555714,0.716918,0.950523,0.40972,0.850789,0.773802,0.54754,0.869503,0.138928,0.875971,0.0940275,0.0799107,0.23193,0.900644,0.928017,0.464405,0.859789,0.0793766,0.211089,0.63105,0.504749,0.0916541,0.134526,0.611453,0.309248,0.593995,0.0245661,0.299433,0.846738,0.821992,0.734846,0.109036,0.443865,0.558416,0.999784,0.28517,0.54464,0.141225,0.0783709,0.425959,0.288198,0.140873,0.296528,0.706372,0.583108,0.188687,0.207961,0.116933,0.427385,0.0066399,0.364799,0.350347,0.0271295,0.52767,0.154168,0.886787,0.462277,0.375435,0.61527,0.018715,0.846839,0.656065,0.655541,0.0944071,0.208801,0.775014,0.852423,0.104172,0.346814,0.435057,0.494689,0.0511924,0.0136628,0.137595,0.191138,0.63911,0.217898,0.928458,0.16755,0.53689,0.877367,0.588675,0.465583,0.454482,0.799913,0.205799,0.00066179,0.0904877,0.411034,0.0895318,0.356666,0.988626,0.71517,0.189189,0.00544339,0.379697,0.629305,0.0453129,0.434498,0.240103,0.203906,0.625245,0.234023,0.313859,0.601524,0.955826,0.5211,0.521014,0.966812,0.886082,0.740103,0.176084,0.706253,0.624736,0.0626162,0.425599,0.803205,0.900855,0.207367,0.855904,0.907747,0.311784,0.950366,0.0268898,0.220219,0.558872,0.56842,0.00551766,0.0830827,0.437826,0.241699,0.0295728,0.167813,0.650899,0.749973,0.200914,0.532507,0.792353,0.658469,0.837208,0.860516,0.469424,0.0315266,0.253214,0.26951,0.13954,0.497619,0.637562,0.826091,0.0672517,0.0960317,0.581263,0.741505,0.129522,0.910215,0.355605,0.774683,0.299305,0.329424,0.997518,0.386656,0.435305,0.0935569,0.751333,0.640878,0.332709,0.924271,0.30278,0.411096,0.130586,0.0337445,0.594395,0.519085,0.622353,0.396116,0.791607,0.168262,0.402304,0.41432,0.70762,0.945151,0.710412,0.606564,0.754546,0.645655,0.421208,0.566625,0.984752,0.797735,0.155243,0.186023,0.448341,0.0220625,0.0154596,0.0167009,0.0651422,0.765804,0.695369,0.16351,0.377158,0.530595,0.0160779,0.203046,0.616782,0.491113,0.432438,0.0936686,0.628038,0.503719,0.652511,0.826097,0.0609986,0.217928,0.157155,0.382612,0.0277421,0.795956,0.449103,0.593606,0.0142176,0.54298,0.743914,0.446399,0.0992911,0.142662,0.765586,0.618654,0.136381,0.512496,0.850842,0.104655,0.964325,0.0812524,0.965937,0.306486,0.30441,0.496382,0.378235,0.155936,0.00997227,0.908963,0.399914,0.49504,0.478746,0.569019,0.17493,0.720611,0.894694,0.873092,0.350237,0.897661,0.138988,0.821132,0.0524454,0.42007,0.283414,0.686733,0.204973,0.0954467,0.649543,0.422821,0.897409,0.796604,0.948129,0.472026,0.666995,0.104516,0.930956,0.995541,0.960193,0.99019,0.33056,0.406243,0.144875,0.228593,0.482697,0.145738,0.12168,0.49898,|0.118033,0.503355,0.969764,0.0886491,0.958576,0.546943,0.705694,0.966999,0.730893,0.17797,0.913036,0.350009,0.892613,0.768629,0.900065,0.0270446,0.519346,0.465237,0.31033,0.361371,0.158538,0.397156,0.183317,0.463412,0.500148,0.401327,0.368462,0.427071,0.258593,0.920269,0.0774045,0.561943,0.00110507,0.433906,0.769228,0.886349,0.530661,0.130311,0.557986,0.96113,0.240549,0.683655,0.92761,0.486483,0.876047,0.930873,0.111433,0.827899,0.714047,0.40817,0.253352,0.49665,0.11683,0.376277,0.375437,0.577928,0.0975385,0.259722,0.842345,0.596177,0.837853,0.994488,0.354157,0.104537,0.281288,0.656599,0.327618,0.106123,0.378187,0.781558,0.395905,0.48003,0.705014,0.18365,0.999899,0.374263,0.418994,0.693559,0.947158,0.0104787,0.373845,0.865757,0.254034,0.47797,0.248565,0.513446,0.802031,0.276615,0.697715,0.106506,0.76798,0.370742,0.0575676,0.0409896,0.779931,0.641351,0.538015,0.926509,0.624211,0.152407,0.26255,0.515708,0.642838,0.539325,0.717418,0.995046,0.816702,0.0833861,0.78105,0.503102,0.0184304,0.34033,0.139654,0.746386,0.567085,0.899345,0.291129,0.367251,0.785113,0.498328,0.913466,0.261714,0.678359,0.794929,0.438603,0.0885545,0.969576,0.384251,0.920232,0.145481,0.889697,0.729534,0.867434,0.0746445,0.601055,0.848674,0.439084,0.426256,0.57731,0.717356,0.897837,0.664798,0.589408,0.880209,0.740365,0.870863,0.17017,0.85211,0.269577,0.54362,0.450268,0.908836,0.74826,0.950724,0.726926,0.514018,0.439179,0.604011,0.0115117,0.188514,0.377338,0.687955,0.171266,0.214046,0.0594635,0.147827,0.0539147,0.202097,0.264736,0.191968,0.972238,0.0518579,0.494417,0.76371,0.646546,0.580229,0.126,0.936198,0.020508,0.469538,0.76411,0.0486323,0.233391,0.923526,0.836375,0.874071,0.312932,0.873294,0.985739,0.375013,0.721583,0.588886,0.29549,0.103374,0.842936,0.495807,0.701956,0.597116,0.708187,0.900337,0.783628,0.150171,0.134934,0.0888853,0.106738,0.967899,0.479123,0.843128,0.442926,0.0323796,0.34899,0.727091,0.836357,0.415299,0.720117,0.0851979,0.811236,0.26457,0.97409,0.560652,0.734931,0.49877,0.0745924,0.591925,0.316066,0.338408,0.310902,0.369766,0.00829774,0.472669,0.0178094,0.472658,0.648758,0.359877,0.346691,0.680945,0.328437,0.574597,0.166181,0.105556,0.00717479,0.648456,0.0900771,0.0660135,0.573379,0.294787,0.920898,0.298529,0.69964,0.435176,0.427439,0.115978,0.350952,0.89587,0.718979,0.896305,0.843393,0.90794,0.163402,0.0414557,0.92064,0.522906,0.667479,0.565196,0.472827,0.0201406,0.594977,0.51579,0.627637,0.122516,0.976688,0.692253,0.0938767,0.477953,0.218425,0.116665,0.496062,0.905087,0.360288,0.669938,0.134129,0.972466,0.270101,0.580514,0.0956961,0.951224,0.0727352,0.70656,0.0879878,0.341404,0.405209,0.899879,0.231777,0.717552,0.980536,0.0585332,0.532446,0.371824,0.539138,0.228286,0.142917,0.73622,0.777831,0.191084,0.708574,0.531298,0.384443,0.615533,0.668562,0.82295,0.366073,0.15318,0.0847046,0.0475134,0.740891,0.593695,0.181274,0.954809,0.702038,0.403676,0.137767,0.392307,0.712108,0.584904,0.487973,0.229951,0.483486,0.426296,0.278057,0.335384,0.681365,0.35872,0.613756,0.506991,0.209826,0.0105778,0.310843,0.146978,0.680573,0.657526,0.530419,0.0816875,0.594133,0.702178,0.160469,0.994792,0.922342,0.304233,0.551462,0.744734,0.331258,0.831727,0.0918658,0.982855,0.496135,0.0229606,0.941168,0.58299,0.306209,0.38796,0.782249,0.487659,0.37485,0.0719503,0.312247,0.0594082,0.489308,0.0885861,0.837119,0.131552,0.895115,0.737799,0.914217,0.459313,0.887597,0.0250341,0.401193,0.424055,0.0885673,0.0382707,0.194757,0.675263,0.118593,0.297223,0.472563,0.598105,0.492334,0.211483,0.195437,0.630668,0.154083,0.970495,0.974394,0.203363,0.489348,0.694443,0.659755,0.64805,0.648972,0.949357,0.853432,0.937258,0.492162,0.995862,0.465231,0.457584,0.95091,0.650756,0.431446,0.216015,0.894372,0.369401,0.846131,0.231664,0.677648,0.802626,0.690488,0.812977,0.0463099,0.433471,0.601635,0.709828,0.987294,0.238102,0.193779,0.757986,0.278924,0.582259,0.727004,0.433672,0.631697,0.54638,0.669004,0.0470929,0.175062,0.968026,0.520716,0.965077,0.455312,0.896529,0.549497,0.136849,0.579492,0.899665,0.499126,0.872465,0.672665,0.0624896,0.805365,0.950257,0.622016,0.783981,0.852263,0.344156,0.50711,0.612868,0.149105,0.879384,0.332962,0.698415,0.881208,0.78905,0.36623,0.959708,0.368634,0.648299,0.164938,0.596916,0.0990949,0.365777,0.680046,0.406861,0.311965,0.657661,0.572065,0.352568,0.784335,0.257294,0.938448,0.229249,0.0331023,0.819987,0.585057,0.996035,0.00825173,0.773196,0.536483,0.237229,0.318212,0.942571,0.170856,0.973515,0.793719,0.109055,0.333949,0.0791935,0.768632,0.0488769,0.0973272,0.546213,0.220672,0.402459,0.72835,0.906524,0.723871,0.932861,0.195055,0.150048,0.918925,0.152134,0.40698,0.408928,0.631546,0.41594,0.662085,0.734369,0.743495,0.221021,0.476616,0.405556,0.941225,0.83157,0.277757,0.179954,0.0370942,0.708643,0.577372,0.73318,0.411471,0.84188,0.181533,0.721277,0.914883,0.850574,0.131561,0.342455,0.381259,0.128011,0.441608,0.243267,0.0866027,0.0738279,0.439546,0.865912,0.424698,0.800752,0.684727,0.731717,0.876475,0.0972335,0.807394,0.826445,0.0700542,0.0868577,0.353121,0.462193,0.856423,0.182418,0.99945,0.426889,0.630584,0.877345,0.492661,0.856965,0.729224,0.127246,0.692123,0.262212,0.20149,0.193263,0.0782799,0.0703921,0.683613,0.222545,0.00201422,0.900231,0.867814,0.818601,0.0225525,0.62626,0.686887,0.437754,0.439815,0.988151,0.179804,0.339326,0.940715,0.216829,0.353227,0.640577,0.316572,0.200931,0.768203,0.668984,0.0675768,0.325467,0.551643,0.527045,0.11288,0.416982,0.0366886,0.880747,0.502651,0.190171,0.451278,0.43961,0.0238162,0.980005,0.0159217,0.588721,0.421898,0.64233,0.366573,0.550447,0.0856581,0.401621,0.37992,0.246625,0.807194,0.489409,0.0882491,0.947249,0.700147,0.23153,0.426976,0.976496,0.482717,0.736011,0.0588297,0.18709,0.784021,0.689665,0.731223,0.767847,0.530186,0.949398,0.181602,0.23914,0.793063,0.365264,0.197139,0.279492,0.279971,0.244232,0.789827,0.723389,0.197942,0.105481,0.698541,0.511758,0.955061,0.563985,0.99803,0.772809,0.901862,0.244456,0.108161,0.0802563,0.149426,0.965044,0.162679,0.863438,0.51131,0.0541598,0.720245,0.619852,0.205637,0.402281,0.0190779,0.201106,0.205456,0.0356387,0.942699,0.352025,0.950445,0.222606,0.360269,0.981334,0.958066,0.113676,0.556268,0.212356,0.311327,0.325243,0.384015,0.818402,0.189542,0.40536,0.51505,0.180467,0.662565,0.653713,0.0702246,0.311298,0.943046,0.753993,0.508457,0.264104,0.976077,0.400847,0.862148,0.995829,0.492368,0.743591,0.600837,0.697881,0.667112,0.756122,0.170653,0.49271,0.751255,0.396105,0.00749272,0.617455,0.828746,0.142384,0.222018,0.108137,0.983775,0.711825,0.253395,0.321137,0.0352649,0.339025,0.199325,0.676167,0.166088,0.504871,0.0567812,0.446437,0.14934,0.793292,0.563312,0.812751,0.421021,0.189929,0.773183,0.718576,0.798536,0.868102,0.303971,0.645907,0.217021,0.00513762,0.786917,0.347855,0.0716991,0.892715,0.0445727,0.789012,0.0804569,0.415144,0.962819,0.499305,0.583518,0.821515,0.242751,0.468165,0.0936503,0.570004,0.926998,0.98483,0.795497,0.047096,0.0175667,0.803239,0.867205,0.261951,0.247186,0.80198,0.593318,0.22703,0.885919,0.523543,0.308127,0.680025,0.771342,0.425214,0.243883,0.943072,0.775451,0.146511,0.240281,0.696659,0.289053,0.0422002,0.342976,0.825195,0.938453,0.318268,0.976027,0.311167,0.853575,0.565076,0.5867,0.69951,0.58305,0.446297,0.701277,0.169857,0.466325,0.780418,0.0565074,0.282151,0.334988,0.892972,0.917773,0.645379,0.24574,0.738932,0.884328,0.844048,0.893351,0.269122,0.124226,0.141017,0.0597311,0.994983,0.167796,0.162735,0.570428,0.887272,0.950682,0.598774,0.397062,0.191447,0.355942,0.551491,0.257084,0.768335,0.606993,0.4734,0.723934,0.281389,0.0858061,0.158142,0.366159,0.724969,0.634086,0.578907,0.554716,0.42672,0.891876,0.945078,0.959337,0.394424,0.489717,0.229292,0.0870653,0.679331,0.922555,0.270487,0.62772,0.794987,0.0112033,0.0119857,0.379443,0.588499,0.713648,0.683024,0.570308,0.439384,0.429765,0.680955,0.00958073,0.537372,0.174794,0.204536,0.717858,0.870213,0.433152,0.559662,0.825093,0.685801,0.819348,0.423743,0.960918,0.597076,0.0360228,0.706212,0.85574,0.359307,0.714527,0.556957,0.756055,0.0188091,0.792084,0.796019,0.620295,0.703376,0.460285,0.564879,0.670605,0.0483039,0.116226,0.77839,0.869185,0.937271,0.858591,0.544353,0.83431,0.17004,0.673763,0.805872,0.347715,0.154446,0.00169438,0.525728,0.108314,0.205444,0.413099,0.0907024,0.675901,0.570055,0.280695,0.931397,0.806793,0.00486875,0.789841,0.912264,0.877141,0.224306,0.776609,0.724249,0.873606,0.951688,0.140608,0.561224,0.00360048,0.732565,0.527174,0.277292,0.666668,0.034871,0.581597,0.0916477,0.27815,0.539724,0.588837,0.0969744,0.716373,0.951543,0.451669,0.729938,0.935429,0.612954,0.402233,0.402519,0.867728,0.98232,0.0792873,0.271738,0.136256,0.0242779,0.502832,0.683519,0.266008,0.67349,0.149349,0.394937,0.0614132,0.380803,0.61277,0.302168,0.0279957,0.244043,0.409583,0.278041,0.644305,0.622644,0.55789,0.353393,0.808605,0.749033,0.0520989,0.230029,0.152073,0.379264,0.654944,0.393128,0.192049,0.532682,0.691034,0.206951,0.506346,0.20464,0.768994,0.341778,0.107557,0.763382,0.223211,0.345098,0.29013,0.89077,0.767523,0.515994,0.72488,0.279937,0.431971,0.0887399,|0.517565,0.972322,0.350067,0.628363,0.0603617,0.0714476,0.55405,0.427406,0.82826,0.354006,0.0827416,0.279109,0.951055,0.865349,0.539959,0.970588,0.814815,0.333444,0.535826,0.763805,0.100395,0.517436,0.609386,0.31871,0.982275,0.803354,0.85324,0.35973,0.892487,0.355603,0.110136,0.728694,0.345743,0.709697,0.96207,0.230669,0.235995,0.290884,0.720246,0.320961,0.892209,0.571698,0.206679,0.600453,0.259248,0.942491,0.669706,0.629781,0.705526,0.807357,0.738478,0.350733,0.0900072,0.264067,0.219051,0.957261,0.950292,0.788278,0.352661,0.646593,0.372873,0.285369,0.131729,0.597231,0.904686,0.661574,0.36841,0.0964214,0.700539,0.848363,0.455671,0.595366,0.262006,0.572594,0.926027,0.0624823,0.995703,0.705103,0.135352,0.904837,0.284192,0.549004,0.308683,0.896396,0.592285,0.0954731,0.0962835,0.737305,0.531992,0.558209,0.414162,0.379532,0.133185,0.936234,0.121353,0.717444,0.78434,0.0413909,0.516413,0.768802,0.453876,0.489439,0.0596216,0.985366,0.0766363,0.263688,0.320765,0.553382,0.339375,0.856415,0.873477,0.202033,0.3449,0.145356,0.369081,0.143029,0.822197,0.597277,0.595167,0.883647,0.0999709,0.745065,0.362764,0.06208,0.40759,0.469058,0.567105,0.605385,0.339128,0.588818,0.673145,0.788517,0.47261,0.245717,0.908116,0.0456131,0.898756,0.501261,0.336012,0.835582,0.113438,0.118672,0.747593,0.297702,0.254208,0.520916,0.78011,0.107508,0.348056,0.414497,0.422096,0.76384,0.249288,0.464188,0.739954,0.174828,0.476329,0.91231,0.964137,0.489271,0.303246,0.0457278,0.0740106,0.875254,0.95978,0.734788,0.974476,0.16888,0.861476,0.832086,0.60582,0.214036,0.413044,0.488195,0.446257,0.774455,0.0438237,0.435585,0.965106,0.233969,0.578855,0.993568,0.231847,0.0983386,0.83651,0.102285,0.711106,0.90131,0.340377,0.760214,0.312139,0.134114,0.143296,0.651895,0.322226,0.079462,0.68884,0.351715,0.915944,0.983146,0.719987,0.658212,0.250404,0.236753,0.705573,0.421834,0.841739,0.569853,0.567699,0.575664,0.952445,0.162059,0.69034,0.786634,0.991009,0.878152,0.0875865,0.585477,0.866461,0.855557,0.03231,0.13431,0.940806,0.131881,0.341227,0.552935,0.50879,0.321143,0.245018,0.0925646,0.133608,0.18291,0.286259,0.871519,0.75897,0.572523,0.687864,0.676181,0.243737,0.543539,0.543567,0.136982,0.621554,0.74085,0.553818,0.613327,0.712409,0.728319,0.342814,0.513678,0.616261,0.804793,0.533515,0.93769,0.896763,0.50399,0.00538117,0.892917,0.436224,0.27897,0.67513,0.206554,0.567875,0.879664,0.640875,0.462918,0.125787,0.951278,0.631362,0.351168,0.917909,0.203744,0.917718,0.513594,0.439292,0.802019,0.836914,0.85819,0.188421,0.536193,0.0642857,0.690372,0.071967,0.908083,0.0616217,0.203086,0.0862272,0.368756,0.857732,0.931438,0.158139,0.398709,0.146814,0.093013,0.577788,0.870113,0.333266,0.761589,0.355581,0.0187038,0.389545,0.729577,0.458057,0.693497,0.138748,0.796624,0.887695,0.817376,0.485899,0.967261,0.220803,0.881464,0.0749364,0.00659317,0.331818,0.157153,0.416489,0.195044,0.577249,0.802264,0.517966,0.857754,0.155798,0.542692,0.949988,0.882625,0.856352,0.948287,0.334083,0.342163,0.180998,0.364242,0.0363843,0.245498,0.706359,0.761603,0.553875,0.744562,0.725389,0.417931,0.025066,0.364669,0.476147,0.0019995,0.39012,0.285104,0.26702,0.444367,0.614521,0.329274,0.388558,0.521061,0.294887,0.116291,0.393352,0.72428,0.664883,0.612697,0.588455,0.704467,0.28561,0.254481,0.557614,0.642016,0.699344,0.646244,0.0474112,0.819901,0.440105,0.196335,0.261815,0.958311,0.26369,0.724215,0.735156,0.799754,0.172271,0.608083,0.769222,0.896903,0.0359483,0.162473,0.731379,0.0131946,0.126649,0.771107,0.934285,0.651939,0.883312,0.380989,0.888912,0.36313,0.783488,0.892861,0.5054,0.66564,0.77297,0.53815,0.423669,0.179749,0.542219,0.436977,0.457814,0.101571,0.432558,0.842554,0.0116493,0.112168,0.897501,0.255832,0.321985,0.994668,0.433512,0.187559,0.621611,0.371418,0.851832,0.649395,0.116777,0.977337,0.535854,0.799281,0.51729,0.797306,0.448371,0.296275,0.559713,0.448478,0.186993,0.596638,0.489438,0.748113,0.416139,0.423864,0.432364,0.795228,0.382482,0.366229,0.333959,0.61966,0.326911,0.746383,0.0333616,0.404158,0.406661,0.931469,0.0317089,0.315541,0.136767,0.181001,0.487597,0.874,0.468394,0.896017,0.912992,0.650619,0.108682,0.978879,0.445421,0.752087,0.99195,0.597195,0.0617961,0.224198,0.666968,0.800691,0.85653,0.966918,0.138578,0.884161,0.492961,0.0827503,0.514088,0.932832,0.78554,0.0275997,0.874179,0.115198,0.686852,0.366414,0.408874,0.400653,0.827062,0.151936,0.727909,0.641158,0.337891,0.558491,0.78835,0.815092,0.337732,0.918916,0.763842,0.010126,0.322703,0.257702,0.386486,0.396051,0.363689,0.421914,0.396949,0.558987,0.147502,0.614274,0.0357285,0.217156,0.0751691,0.258585,0.0529761,0.590336,0.897349,0.867281,0.265901,0.532264,0.649665,0.692093,0.78843,0.950431,0.995417,0.535301,0.50754,0.57603,0.586415,0.395228,0.00887889,0.87858,0.735247,0.515393,0.0538464,0.804866,0.379266,0.583166,0.028637,0.68246,0.547685,0.107918,0.447935,0.640928,0.745699,0.32703,0.882537,0.77153,0.891289,0.299032,0.804266,0.346987,0.0964754,0.151007,0.40679,0.3844,0.610909,0.569915,0.71521,0.84479,0.297803,0.310454,0.561137,0.657186,0.148845,0.105963,0.288434,0.910781,0.258771,0.72985,0.0528362,0.475781,0.829396,0.957516,0.0903736,0.493039,0.87946,0.690186,0.0285482,0.758987,0.742011,0.957612,0.916957,0.95489,0.938425,0.384514,0.441156,0.474935,0.240718,0.285004,0.839664,0.585132,0.687006,0.439321,0.852029,0.2353,0.761681,0.0229982,0.739445,0.81823,0.191009,0.475466,0.483378,0.149756,0.0323985,0.896984,0.765839,0.531665,0.411659,0.809435,0.680747,0.0719027,0.721734,0.355338,0.209319,0.311683,0.396462,0.983625,0.192837,0.512262,0.849266,0.889402,0.406455,0.214714,0.0219105,0.57316,0.704363,0.394223,0.815005,0.48916,0.0578954,0.450233,0.0372283,0.813839,0.0400717,0.906802,0.873195,0.576128,0.775396,0.312203,0.292633,0.0564944,0.333493,0.236462,0.521303,0.914376,0.0389384,0.903465,0.445683,0.787728,0.528552,0.0188038,0.416955,0.26425,0.738061,0.196443,0.189776,0.918812,0.25188,0.572156,0.867882,0.201351,0.979709,0.934955,0.363558,0.0215847,0.300492,0.470749,0.985294,0.594461,0.728923,0.144642,0.955445,0.877435,0.936614,0.00541258,0.104389,0.449838,0.124885,0.839361,0.66972,0.817358,0.377207,0.418908,0.799409,0.30873,0.934065,0.884016,0.518582,0.864737,0.189306,0.042141,0.215757,0.0851399,0.0278384,0.35543,0.249167,0.843573,0.527724,0.00606602,0.711737,0.863524,0.0821237,0.52603,0.584715,0.118842,0.657755,0.11937,0.556154,0.81713,0.580175,0.383046,0.678214,0.873209,0.739084,0.173844,0.932025,0.150498,0.857399,0.124752,0.468824,0.868487,0.35335,0.910639,0.371345,0.596933,0.349905,0.297218,0.80806,0.729538,0.553036,0.500138,0.920465,0.433487,0.739685,0.301466,0.550236,0.537741,0.217212,0.275179,0.289247,0.984183,0.442985,0.225761,0.185888,0.855574,0.383197,0.92063,0.0679997,0.407636,0.411393,0.591367,0.0732245,0.311823,0.21197,0.0445642,0.560118,0.570759,0.444621,0.670461,0.918578,0.760845,0.785663,0.187555,0.891084,0.516561,0.566625,0.129147,0.628274,0.608668,0.764846,0.313092,0.678693,0.757389,0.269795,0.77927,0.65109,0.0667935,0.709707,0.877526,0.781023,0.99728,0.543671,0.964787,0.00922579,0.586316,0.927445,0.824589,0.526276,0.27367,0.00599027,0.607215,0.514137,0.953255,0.602283,0.806496,0.553714,0.842166,0.374034,0.215543,0.49639,0.0178843,0.585919,0.618291,0.188007,0.371486,0.757688,0.395734,0.314488,0.842041,0.869225,0.693863,0.171235,0.116298,0.369055,0.615788,0.925923,0.0450373,0.80611,0.0810124,0.78917,0.531326,0.781719,0.571467,0.881174,0.443075,0.318622,0.578606,0.877202,0.0244219,0.517109,0.967072,0.519412,0.325896,0.102609,0.097397,0.772797,0.323391,0.366555,0.0466862,0.125712,0.267871,0.778084,0.0468611,0.639432,0.652644,0.741388,0.604935,0.156185,0.148173,0.553547,0.461396,0.389075,0.784462,0.443123,0.103925,0.831797,0.227932,0.375661,0.0527129,0.546596,0.166436,0.0940675,0.402473,0.199293,0.860795,0.822981,0.248832,0.366854,0.531173,0.591294,0.691161,0.140269,0.34727,0.39731,0.382376,0.0592241,0.903141,0.247953,0.828265,0.835961,0.781107,0.943627,0.46222,0.57543,0.440947,0.463637,0.625928,0.752325,0.298212,0.616624,0.424711,0.316264,0.893248,0.383695,0.87244,0.819981,0.98296,0.165936,0.663317,0.110061,0.28732,0.56074,0.151119,0.602454,0.220029,0.345458,0.100167,0.495469,0.167825,0.141034,0.727427,0.49295,0.129036,0.661248,0.569399,0.42298,0.499895,0.786959,0.154329,0.453514,0.351501,0.72576,0.354512,0.552783,0.980077,0.438717,0.139468,0.257007,0.650806,0.916718,0.162962,0.0913302,0.856198,0.00406241,0.0858825,0.258873,0.0148315,0.919692,0.0912945,0.0211129,0.62554,0.956474,0.159178,0.97857,0.00135458,0.471897,0.887875,0.536232,0.120446,0.850398,0.726873,0.537968,0.823586,0.450358,0.726112,0.199793,0.837606,0.168347,0.929653,0.174416,0.393172,0.256208,0.439786,0.343273,0.000374019,0.47335,0.779009,0.0417038,0.703127,0.0150884,0.743102,0.182955,0.293568,0.0963207,0.339939,0.987378,0.963363,0.762191,0.898803,0.0251279,0.0286735,0.346546,0.444988,0.893611,0.178611,0.642459,0.3916,0.0284934,0.196935,0.845235,0.588191,0.955014,0.719994,0.00115061,0.490308,0.295354,0.619088,0.0992758,0.0892317,0.509848,0.407392,0.0699894,0.571109,0.333751,0.126542,|0.274279,0.601855,0.161717,0.355499,0.965566,0.947068,0.404483,0.852625,0.574506,0.0403527,0.217879,0.0860621,0.511676,0.362931,0.481084,0.199049,0.444439,0.198755,0.23351,0.83495,0.0446512,0.519171,0.4754,0.798296,0.27773,0.764411,0.189281,0.949423,0.943401,0.323762,0.468649,0.570121,0.642109,0.00180066,0.568337,0.669724,0.985814,0.650736,0.799808,0.700949,0.147269,0.281343,0.012027,0.859766,0.123545,0.157744,0.98468,0.512754,0.0550089,0.525531,0.313042,0.837122,0.82451,0.562679,0.0907046,0.119602,0.755159,0.0872535,0.0178084,0.352767,0.452898,0.605011,0.646834,0.43465,0.244663,0.203621,0.837468,0.78096,0.906159,0.326575,0.492309,0.314835,0.698694,0.945658,0.16283,0.115904,0.0283668,0.0253377,0.0844832,0.672376,0.796067,0.0463981,0.764648,0.437482,0.532419,0.254122,0.735283,0.683752,0.0985821,0.793487,0.674841,0.0891442,0.849102,0.231758,0.857838,0.610117,0.233354,0.439225,0.397594,0.255798,0.223616,0.207333,0.651388,0.637235,0.874908,0.418986,0.62752,0.078802,0.804712,0.788102,0.938552,0.801438,0.284144,0.694578,0.901732,0.642966,0.57783,0.681447,0.897043,0.822831,0.49009,0.813999,0.0398757,0.764844,0.0298514,0.272826,0.687794,0.095906,0.12384,0.0842395,0.617211,0.898005,0.713617,0.525926,0.0792122,0.0905079,0.542515,0.980743,0.771273,0.994087,0.104278,0.486069,0.22227,0.535986,0.376598,0.843726,0.615813,0.421019,0.766878,0.375722,0.287816,0.496833,0.630591,0.644432,0.332931,0.681655,0.261877,0.499395,0.169263,0.639322,0.85849,0.389182,0.929369,0.160153,0.238073,0.594189,0.809667,0.0410905,0.746793,0.896745,0.139486,0.475908,0.702926,0.653409,0.26622,0.0772983,0.5734,0.227661,0.979234,0.104023,0.323562,0.629525,0.869451,0.88686,0.43597,0.907895,0.259663,0.752865,0.262199,0.144616,0.937546,0.454864,0.339286,0.586357,0.23331,0.613556,0.507557,0.829702,0.438814,0.555535,0.335165,0.0453982,0.919217,0.208332,0.300921,0.953936,0.598617,0.545582,0.213157,0.040625,0.32903,0.745155,0.352512,0.482728,0.870781,0.183228,0.658051,0.716226,0.20826,0.877564,0.15284,0.731931,0.130313,0.942753,0.937076,0.952831,0.655348,0.293839,0.301416,0.747323,0.603587,0.128633,0.482614,0.35842,0.00994354,0.0630224,0.387376,0.798054,0.217994,0.0186144,0.579947,0.666841,0.791758,0.836624,0.122225,0.155645,0.606902,0.460774,0.226624,0.556532,0.252636,0.823164,0.0849732,0.289484,0.371491,0.240667,0.186381,0.548994,0.985832,0.933318,0.93539,0.803796,0.655634,0.077207,0.0324814,0.901308,0.969628,0.163123,0.87195,0.61672,0.251589,0.0928142,0.972962,0.456489,0.722554,0.138701,0.122102,0.440748,0.14108,0.763446,0.383346,0.202081,0.556731,0.0146158,0.767004,0.317253,0.549106,0.816429,0.0776944,0.633719,0.0867491,0.424547,0.795502,0.801315,0.0449331,0.527143,0.112479,0.94658,0.252997,0.832939,0.963495,0.373693,0.458768,0.516593,0.258501,0.852725,0.98347,0.328727,0.831781,0.159838,0.118321,0.884652,0.93598,0.84248,0.56933,0.964931,0.284571,0.239511,0.419189,0.0900862,0.716311,0.301351,0.580296,0.702765,0.424041,0.989123,0.568539,0.514677,0.800911,0.405537,0.25189,0.373437,0.372316,0.43276,0.511727,0.667241,0.274979,0.302308,0.30812,0.0795791,0.623116,0.320591,0.335019,0.978515,0.191841,0.32522,0.807641,0.184421,0.146799,0.518031,0.486688,0.198312,0.86466,0.416865,0.942646,0.288325,0.693792,0.150995,0.723539,0.336414,0.387708,0.519275,0.084977,0.0950782,0.709946,0.66684,0.6386,0.77949,0.134475,0.644025,0.28923,0.921984,0.324498,0.758301,0.700622,0.24878,0.644898,0.846646,0.742449,0.213964,0.807705,0.0754549,0.164214,0.77599,0.66537,0.736802,0.605356,0.172239,0.370838,0.300525,0.559533,0.785949,0.695295,0.616168,0.82232,0.979862,0.178458,0.150646,0.680058,0.0900943,0.0764369,0.610622,0.41835,0.796043,0.247576,0.0311741,0.951059,0.0512974,0.735052,0.581987,0.364392,0.983479,0.291956,0.76105,0.116718,0.684811,0.208001,0.477223,0.903417,0.913025,0.130857,0.854243,0.675253,0.263637,0.869668,0.289039,0.496942,0.940735,0.179526,0.985525,0.979565,0.566456,0.156117,0.627486,0.37016,0.220575,0.308144,0.019034,0.247172,0.726891,0.345923,0.413611,0.895818,0.0701529,0.431319,0.0102484,0.950224,0.487453,0.852882,0.943685,0.37515,0.565567,0.187799,0.909565,0.844411,0.0492607,0.48278,0.77228,0.323262,0.770252,0.411734,0.13122,0.683891,0.850403,0.23967,0.716281,0.88728,0.429975,0.404111,0.34315,0.337598,0.824305,0.222239,0.550978,0.628871,0.469489,0.209611,0.0506995,0.795221,0.367139,0.342405,0.0859241,0.745079,0.843864,0.932962,0.179185,0.131008,0.102425,0.118479,0.798964,0.16602,0.24513,0.361001,0.92211,0.707658,0.988317,0.831862,0.0951486,0.593725,0.521217,0.19399,0.513726,0.490108,0.304425,0.252177,0.391996,0.913896,0.90543,0.671829,0.0061717,0.913554,0.230244,0.342692,0.953637,0.277797,0.571674,0.60234,0.0636015,0.22953,0.412207,0.185674,0.513241,0.71673,0.543193,0.0699603,0.752031,0.916057,0.41877,0.697611,0.381844,0.717207,0.636676,0.302719,0.310381,0.450411,0.545728,0.417201,0.0466521,0.177135,0.0722564,0.903541,0.431954,0.521229,0.274341,0.187303,0.0701085,0.693742,0.857858,0.412354,0.184015,0.819713,0.181949,0.250812,0.55835,0.0305154,0.41144,0.758559,0.162478,0.535685,0.988005,0.710059,0.315656,0.543842,0.698854,0.580404,0.278736,0.416113,0.291018,0.410501,0.457428,0.351116,0.207727,0.90766,0.980001,0.634999,0.184108,0.145458,0.886906,0.502019,0.901295,0.765647,0.356635,0.137554,0.983167,0.472659,0.414013,0.304744,0.726604,0.912489,0.232675,0.599708,0.83812,0.111913,0.889574,0.277225,0.716891,0.477224,0.279525,0.212862,0.360102,0.546041,0.674792,0.779845,0.441089,0.729462,0.533804,0.432607,0.674753,0.4272,0.887229,0.709045,0.17528,0.113123,0.534968,0.813935,0.42186,0.344553,0.685243,0.189807,0.74064,0.559554,0.116287,0.895081,0.431437,0.0149983,0.117592,0.263815,0.419713,0.944866,0.345263,0.530599,0.663689,0.663001,0.896178,0.78449,0.187128,0.06343,0.08736,0.197327,0.41792,0.602951,0.378593,0.421998,0.707721,0.87268,0.867635,0.574899,0.729425,0.262389,0.430534,0.0900133,0.941188,0.624272,0.078983,0.565748,0.395219,0.546396,0.1439,0.611392,0.636573,0.485832,0.759782,0.976452,0.99579,0.372541,0.506567,0.901729,0.34108,0.133415,0.137566,0.242445,0.246552,0.687819,0.024089,0.627045,0.464968,0.404364,0.145828,0.483431,0.395088,0.187802,0.795474,0.473483,0.624175,0.0852348,0.102024,0.457103,0.997439,0.958211,0.657499,0.971545,0.992836,0.840283,0.318751,0.900974,0.87874,0.232834,0.432435,0.655419,0.0406079,0.211682,0.574105,0.165892,0.979524,0.732464,0.654383,0.998882,0.987626,0.56947,0.397911,0.902324,0.882968,0.0641193,0.0719875,0.911576,0.552884,0.141055,0.0620606,0.199419,0.669813,0.0409081,0.536181,0.172812,0.531621,0.850622,0.962115,0.347461,0.611389,0.185994,0.49723,0.0468283,0.913151,0.614746,0.146027,0.393871,0.627573,0.623005,0.0430772,0.68071,0.598161,0.529834,0.425147,0.707111,0.527742,0.387835,0.0405247,0.617239,0.862521,0.513151,0.982957,0.479027,0.68575,0.988423,0.278357,0.00436777,0.463193,0.700493,0.2136,0.401759,0.438857,0.261455,0.751496,0.721922,0.641313,0.146046,0.227335,0.723292,0.0459191,0.140041,0.776477,0.919236,0.39277,0.889055,0.357115,0.659462,0.74646,0.612302,0.392601,0.346637,0.0330217,0.518919,0.360463,0.4555,0.699667,0.295121,0.228945,0.0904496,0.938408,0.617119,0.964759,0.429151,0.370865,0.994276,0.145119,0.895357,0.789161,0.0393436,0.39038,0.952874,0.358183,0.893597,0.536409,0.738327,0.54714,0.521767,0.424917,0.799438,0.441025,0.646675,0.919138,0.477047,0.399271,0.96209,0.964158,0.625828,0.59095,0.0467821,0.606942,0.761961,0.307983,0.327772,0.38384,0.129687,0.587537,0.40988,0.916056,0.0565155,0.893527,0.297228,0.653023,0.552877,0.0879377,0.504553,0.830648,0.682763,0.0935013,0.100202,0.103645,0.743091,0.971639,0.902748,0.704931,0.0803983,0.86864,0.0329468,0.181075,0.320964,0.212584,0.746179,0.956143,0.79418,0.10474,0.696229,0.982062,0.0340258,0.680458,0.993074,0.0752947,0.687515,0.176418,0.73421,0.00632852,0.155269,0.798857,0.882362,0.964945,0.764478,0.650287,0.537685,0.642268,0.117675,0.870193,0.401752,0.539258,0.901108,0.0697154,0.205954,0.519424,0.717886,0.700012,0.546717,0.850022,0.535481,0.107504,0.897767,0.045269,0.996886,0.851209,0.0190263,0.472299,0.795514,0.91834,0.320491,0.492042,0.768192,0.791095,0.938367,0.311567,0.449362,0.945283,0.997403,0.925411,0.373806,0.407534,0.177257,0.781307,0.483188,0.621741,0.385706,0.0139772,0.114628,0.462359,0.123311,0.911763,0.302976,0.59403,0.249061,0.178091,0.590913,0.459905,0.978669,0.511464,0.455858,0.66698,0.963862,0.235049,0.932443,0.713064,0.234636,0.804091,0.274632,0.319492,0.225364,0.162924,0.65334,0.876867,0.834065,0.688381,0.327104,0.332593,0.852351,0.126545,0.506423,0.155762,0.0221058,0.248531,0.225324,0.146195,0.347641,0.289919,0.242289,0.838645,0.860224,0.390623,0.701733,0.102996,0.0850147,0.713049,0.0287652,0.87613,0.700255,0.586111,0.238818,0.871125,0.946102,0.812577,0.885493,0.0753331,0.282011,0.694735,0.821652,0.737693,0.265551,0.597727,0.0656939,0.207715,0.234746,0.77276,0.774423,0.525273,0.0666898,0.580118,0.664883,0.939935,0.538952,0.828341,0.618194,0.870111,0.609101,0.339279,0.403958,0.372547,0.869288,0.992762,0.0284042,0.291886,0.0892816,0.956989,0.504367,0.534156,|0.813746,0.0861356,0.854201,0.91562,0.619857,0.65843,0.71034,0.758384,0.606721,0.17426,0.756056,0.770674,0.846474,0.804627,0.46778,0.820673,0.657564,0.570843,0.0402963,0.963786,0.996487,0.0667651,0.423097,0.312328,0.796511,0.467781,0.0347877,0.489574,0.25984,0.527075,0.00923961,0.68256,0.401228,0.917561,0.643199,0.189689,0.520201,0.195684,0.997069,0.585188,0.590233,0.549888,0.86889,0.569072,0.629963,0.482176,0.123819,0.471111,0.349143,0.19612,0.968939,0.702712,0.561609,0.748525,0.13661,0.204767,0.947353,0.945569,0.241751,0.043888,0.128882,0.566017,0.346457,0.124429,0.1386,0.402905,0.623617,0.692416,0.943463,0.562562,0.0319074,0.0164022,0.124389,0.690132,0.801711,0.979954,0.531135,0.0447413,0.629964,0.944076,0.07251,0.180277,0.418721,0.332364,0.189856,0.222712,0.721756,0.933131,0.0820894,0.474666,0.444709,0.458546,0.95094,0.946517,0.540907,0.500712,0.170083,0.648205,0.87819,0.92041,0.828132,0.830513,0.485406,0.126039,0.533801,0.629395,0.14753,0.395493,0.507271,0.829821,0.567547,0.922999,0.747193,0.325837,0.188985,0.101453,0.660265,0.454892,0.797737,0.0747274,0.268657,0.49491,0.671265,0.978546,0.519938,0.822843,0.316734,0.592207,0.451117,0.308807,0.410624,0.226481,0.861872,0.814512,0.198024,0.492605,0.775708,0.634929,0.35358,0.0479709,0.863612,0.100653,0.416214,0.0886287,0.211302,0.393849,0.851987,0.401424,0.0883479,0.37097,0.76088,0.157774,0.682433,0.0121201,0.876036,0.243445,0.0445595,0.586407,0.840949,0.00673729,0.836257,0.0308535,0.080345,0.946287,0.933114,0.130609,0.578329,0.453464,0.715193,0.663712,0.752444,0.0928096,0.172195,0.886541,0.254005,0.00759161,0.0547033,0.314088,0.898987,0.50993,0.395695,0.169849,0.318421,0.322494,0.995324,0.658987,0.856834,0.0855951,0.240877,0.610238,0.936175,0.916532,0.573579,0.468647,0.113218,0.706966,0.219258,0.323752,0.630768,0.346135,0.156859,0.543944,0.945617,0.328971,0.456496,0.658501,0.298765,0.24041,0.306552,0.709391,0.0304784,0.914682,0.452843,0.646283,0.285392,0.804991,0.528851,0.996224,0.699727,0.27285,0.554377,0.298505,0.916956,0.847874,0.139314,0.963517,0.91375,0.136563,0.169264,0.56685,0.163198,0.251076,0.375611,0.511344,0.840175,0.0905622,0.889618,0.549243,0.479819,0.97739,0.120183,0.0439237,0.108506,0.880441,0.521839,0.56293,0.920845,0.799436,0.556353,0.802272,0.551106,0.306482,0.483134,0.730628,0.831885,0.463759,0.0958737,0.40307,0.592935,0.879792,0.66433,0.443315,0.194486,0.465614,0.03951,0.211072,0.424294,0.35909,0.661127,0.552746,0.10716,0.74678,0.423186,0.460089,0.788981,0.151173,0.369045,0.256132,0.273593,0.878134,0.139066,0.178409,0.780451,0.543085,0.411646,0.0787507,0.0906633,0.226533,0.158645,0.995877,0.0437767,0.962229,0.161534,0.714835,0.910303,0.922142,0.936184,0.684334,0.0485803,0.956956,0.82522,0.694571,0.357902,0.519432,0.987082,0.175961,0.456828,0.484493,0.698536,0.705256,0.752307,0.552898,0.684033,0.719418,0.830509,0.981482,0.474968,0.883714,0.503469,0.10439,0.298194,0.429385,0.259443,0.834777,0.617609,0.417195,0.675132,0.461966,0.244516,0.943581,0.426876,0.709391,0.708853,0.0214834,0.247783,0.737315,0.273225,0.769655,0.510527,0.852294,0.975826,0.731743,0.759471,0.579245,0.29092,0.943114,0.0269474,0.757616,0.558328,0.422699,0.0141049,0.466987,0.39963,0.869142,0.173448,0.396626,0.469996,0.938348,0.911061,0.174952,0.954788,0.404997,0.855138,0.757179,0.908507,0.758107,0.620245,0.640323,0.962765,0.0761173,0.0207662,0.636254,0.731369,0.830837,0.820791,0.240342,0.794718,0.199515,0.918567,0.231652,0.353891,0.645819,0.833806,0.890695,0.16454,0.480667,0.118718,0.00369722,0.374344,0.89678,0.383205,0.858282,0.734605,0.883414,0.921237,0.0230864,0.612005,0.469893,0.463482,0.0665084,0.978713,0.246204,0.0694606,0.350103,0.367153,0.99685,0.575776,0.671918,0.614574,0.515459,0.498545,0.568603,0.239164,0.453449,0.703565,0.253391,0.947101,0.572402,0.220248,0.112538,0.974709,0.454284,0.874406,0.983551,0.36533,0.979818,0.945384,0.999865,0.277448,0.39248,0.876223,0.422089,0.445254,0.296517,0.223533,0.768419,0.0915191,0.0926105,0.416082,0.806454,0.310669,0.150383,0.602177,0.0537201,0.459473,0.491538,0.32232,0.502843,0.893414,0.22815,0.0942894,0.376417,0.792781,0.679688,0.998152,0.771605,0.0618406,0.835514,0.981336,0.281685,0.40242,0.985903,0.850763,0.523633,0.387468,0.313655,0.950227,0.51127,0.9257,0.881455,0.635594,0.251604,0.361633,0.439761,0.47172,0.540233,0.704607,0.306098,0.0638346,0.150476,0.277929,0.516151,0.557108,0.271064,0.90498,0.54278,0.258148,0.617917,0.668415,0.918675,0.353795,0.614128,0.386975,0.0654078,0.0433797,0.219541,0.475783,0.0499898,0.399274,0.851,0.795201,0.217421,0.290101,0.848768,0.428277,0.703622,0.765275,0.69014,0.365156,0.197691,0.921278,0.216109,0.364042,0.769257,0.749956,0.729276,0.816067,0.00439346,0.395301,0.112094,0.0588613,0.994646,0.806074,0.618441,0.820485,0.695084,0.792131,0.111247,0.973939,0.996751,0.402871,0.230061,0.585955,0.406125,0.103637,0.405017,0.184654,0.514004,0.854525,0.551634,0.281808,0.276241,0.629839,0.978004,0.480685,0.0315539,0.884809,0.123593,0.503483,0.605487,0.305336,0.739508,0.822938,0.160784,0.254536,0.932634,0.174076,0.277214,0.25622,0.477631,0.659481,0.985569,0.961942,0.247756,0.208978,0.295485,0.717284,0.631038,0.274075,0.449777,0.874383,0.56522,0.328779,0.349221,0.770197,0.900698,0.998185,0.39216,0.167928,0.34919,0.620446,0.241184,0.326936,0.235295,0.14716,0.836955,0.31891,0.0274888,0.605794,0.0930645,0.576646,0.254045,0.949304,0.422178,0.408209,0.403259,0.247761,0.520155,0.463969,0.76503,0.794063,0.4926,0.639516,0.366871,0.0961722,0.229806,0.115219,0.823844,0.481771,0.270895,0.101261,0.9412,0.669975,0.698165,0.745433,0.941663,0.320657,0.293102,0.918312,0.165205,0.429776,0.290606,0.243432,0.541835,0.171655,0.959156,0.352235,0.743797,0.82847,0.891335,0.813961,0.50028,0.269801,0.835364,0.927227,0.846528,0.247299,0.626417,0.733925,0.756561,0.732621,0.0515605,0.557156,0.565322,0.196968,0.18162,0.741742,0.0542391,0.972257,0.696572,0.294934,0.0346416,0.131997,0.678459,0.0786523,0.157999,0.207109,0.0200262,0.870431,0.105798,0.0919509,0.248637,0.101894,0.705653,0.34355,0.0492552,0.846898,0.953058,0.453941,0.722239,0.527834,0.114008,0.773889,0.669492,0.716214,0.222538,0.698209,0.566873,0.517971,0.315618,0.0565851,0.637517,0.884819,0.581928,0.775081,0.893124,0.127838,0.741809,0.538673,0.497008,0.987405,0.145963,0.728691,0.946817,0.0135201,0.350617,0.625143,0.078356,0.929556,0.713005,0.291621,0.627486,0.993937,0.730344,0.468077,0.266163,0.48262,0.176685,0.10666,0.0476013,0.751165,0.0900264,0.202658,0.104772,0.649449,0.599407,0.176149,0.7771,0.685294,0.883801,0.87122,0.693879,0.455372,0.515267,0.0826544,0.302802,0.75,0.629061,0.947324,0.485973,0.874032,0.823501,0.852963,0.710763,0.88933,0.452261,0.781732,0.581731,0.747433,0.0334477,0.559301,0.413348,0.385077,0.203113,0.908803,0.287739,0.557763,0.718909,0.353167,0.849266,0.105862,0.477828,0.659648,0.396842,0.0115796,0.0432451,0.187747,0.0582253,0.420406,0.630698,0.908752,0.0858539,0.446254,0.260526,0.920437,0.0407721,0.312824,0.199983,0.0139355,0.184848,0.311038,0.908257,0.790888,0.696431,0.984799,0.470054,0.359008,0.655619,0.241819,0.208279,0.759074,0.661914,0.829042,0.620727,0.899581,0.157763,0.337773,0.58301,0.216451,0.430118,0.0250347,0.334115,0.105138,0.654589,0.474722,0.753247,0.343065,0.208912,0.456744,0.737369,0.192914,0.848223,0.487526,0.837625,0.623267,0.681781,0.0746919,0.908446,0.185069,0.100005,0.410194,0.564536,0.778376,0.0850032,0.468271,0.415569,0.0996709,0.284541,0.58302,0.984725,0.39222,0.389765,0.036938,0.636924,0.222729,0.0981715,0.215683,0.0597705,0.429393,0.0887946,0.665399,0.758243,0.807017,0.781778,0.415519,0.237177,0.212889,0.0422963,0.943921,0.218978,0.261812,0.69809,0.318114,0.814266,0.321234,0.793329,0.114197,0.778072,0.750448,0.879798,0.695412,0.859796,0.745409,0.979728,0.0608659,0.419809,0.317864,0.520617,0.102945,0.252893,0.873881,0.822509,0.686561,0.570169,0.158684,0.859481,0.217973,0.963678,0.122632,0.652488,0.407741,0.190673,0.942586,0.834912,0.6122,0.973685,0.84093,0.179569,0.158062,0.438891,0.93486,0.190258,0.188991,0.526749,0.0809737,0.335935,0.621913,0.790683,0.424608,0.566703,0.495877,0.968652,0.594208,0.626943,0.65066,0.252459,0.802856,0.959571,0.877382,0.232181,0.507133,0.417565,0.817743,0.627966,0.319019,0.198159,0.860538,0.370092,0.334572,0.871613,0.627531,0.423367,0.418911,0.651474,0.216528,0.0515802,0.749513,0.917997,0.658938,0.730381,0.0403722,0.238676,0.48776,0.114663,0.751838,0.374412,0.930516,0.232683,0.586689,0.0463605,0.1071,0.313295,0.0466688,0.798403,0.532361,0.214108,0.16466,0.558299,0.779474,0.493882,0.620901,0.1268,0.519396,0.883269,0.0119064,0.652435,0.325791,0.980321,0.762091,0.0178251,0.696353,0.544073,0.91667,0.313457,0.104491,0.762358,0.116655,0.457579,0.706518,0.0426153,0.137432,0.596108,0.482181,0.501131,0.664133,0.191261,0.235809,0.443168,0.777504,0.510758,0.0751253,0.274835,0.416795,0.239571,0.758682,0.586899,0.434387,0.00906807,0.460438,0.420513,0.745814,0.71331,0.167849,0.958826,0.991275,0.050929,0.604494,0.229035,0.383413,0.140659,0.32327,0.782715,0.524322,0.515531,0.331541,0.920452,0.680973,0.120547,0.115711,0.0485601,|0.569858,0.39823,0.119224,0.107971,0.56443,0.980238,0.425994,0.929,0.889835,0.500222,0.299962,0.839154,0.411218,0.753825,0.959083,0.0957038,0.649179,0.958542,0.319681,0.995582,0.498748,0.38867,0.390125,0.958659,0.858402,0.499835,0.694659,0.167114,0.758457,0.515189,0.791497,0.525773,0.637201,0.058251,0.681475,0.182676,0.89173,0.570544,0.458672,0.191073,0.401022,0.0859349,0.55564,0.709479,0.786707,0.260678,0.0298166,0.821329,0.457422,0.416001,0.84379,0.0940645,0.312753,0.20387,0.580782,0.386066,0.571824,0.0252704,0.516328,0.254889,0.288393,0.324692,0.272238,0.740662,0.469284,0.630545,0.952713,0.571996,0.977627,0.0990646,0.217283,0.886436,0.396165,0.301369,0.462289,0.58584,0.918207,0.021614,0.750157,0.323242,0.415346,0.215701,0.423218,0.98038,0.370044,0.542341,0.354366,0.878134,0.258481,0.128781,0.492864,0.70349,0.417065,0.0292773,0.439906,0.6728,0.115376,0.254732,0.75867,0.560527,0.411261,0.36246,0.480801,0.377514,0.399708,0.6591,0.196113,0.447996,0.123079,0.779799,0.0650607,0.621836,0.828694,0.109233,0.936586,0.487727,0.989615,0.814717,0.848179,0.150779,0.105555,0.822179,0.178727,0.596643,0.971715,0.65534,0.117536,0.557252,0.313389,0.699271,0.223069,0.498868,0.302906,0.35497,0.145293,0.449423,0.600057,0.231115,0.965451,0.580217,0.929959,0.625244,0.703739,0.715048,0.910701,0.498446,0.195485,0.211404,0.146764,0.0350451,0.0928408,0.394967,0.537369,0.233775,0.633355,0.158995,0.961648,0.918592,0.459481,0.928672,0.532683,0.271702,0.415478,0.11118,0.76022,0.561018,0.829191,0.236159,0.909243,0.688585,0.532261,0.778203,0.461934,0.636379,0.61737,0.53309,0.489055,0.0292106,0.446652,0.128328,0.726677,0.388915,0.00203747,0.854092,0.842257,0.588734,0.475809,0.413515,0.363836,0.576538,0.42934,0.565944,0.8404,0.384435,0.0922843,0.376708,0.85915,0.825518,0.639054,0.256055,0.55136,0.362664,0.377245,0.562931,0.279794,0.43739,0.0518459,0.810261,0.596375,0.440916,0.318487,0.224319,0.179593,0.346861,0.881085,0.482257,0.457942,0.243155,0.277851,0.721743,0.00815737,0.0256137,0.658753,0.301969,0.0840033,0.739878,0.168671,0.335122,0.59076,0.979724,0.761635,0.820298,0.055652,0.805044,0.731232,0.11373,0.975677,0.974084,0.320291,0.969832,0.548491,0.597049,0.167649,0.262249,0.440846,0.362752,0.778619,0.822339,0.31985,0.200143,0.00971591,0.308766,0.714967,0.9335,0.659759,0.0676221,0.486462,0.577367,0.164078,0.0711774,0.437056,0.805369,0.341536,0.674452,0.382079,0.5654,0.857526,0.51046,0.167388,0.262755,0.956149,0.307915,0.689071,0.0599978,0.721542,0.284911,0.343601,0.676715,0.98961,0.567645,0.46745,0.282522,0.640117,0.780829,0.300449,0.0636193,0.323824,0.590911,0.596069,0.605136,0.215751,0.55812,0.450557,0.776736,0.49004,0.630548,0.362956,0.405617,0.343155,0.892149,0.82545,0.431888,0.766143,0.00410563,0.480286,0.979223,0.135939,0.47496,0.412241,0.143271,0.917274,0.182227,0.590014,0.257973,0.83968,0.245937,0.99834,0.900441,0.113836,0.898989,0.404428,0.359096,0.365663,0.529047,0.0884978,0.353491,0.486352,0.471256,0.396592,0.993002,0.221345,0.321419,0.0194389,0.839064,0.509329,0.0131016,0.0270194,0.515111,0.380741,0.471621,0.756214,0.418442,0.716512,0.106437,0.993069,0.897581,0.039601,0.93732,0.443601,0.429506,0.304192,0.403103,0.574585,0.192085,0.533896,0.540555,0.657396,0.77404,0.365773,0.958832,0.0777925,0.988651,0.518399,0.390935,0.732313,0.12021,0.729384,0.692423,0.119327,0.0716397,0.980315,0.724996,0.639342,0.811581,0.919317,0.745852,0.370805,0.343094,0.27926,0.534241,0.241922,0.0603973,0.266675,0.0600954,0.0660485,0.747065,0.640885,0.671452,0.893654,0.417454,0.470861,0.339468,0.300607,0.43865,0.965599,0.280947,0.714609,0.0119821,0.704105,0.925035,0.642103,0.852949,0.730974,0.994192,0.953812,0.760458,0.340006,0.698672,0.030656,0.183168,0.244519,0.728872,0.971881,0.856574,0.513388,0.499861,0.353004,0.843649,0.781226,0.499135,0.201385,0.868459,0.775597,0.179957,0.414126,0.182291,0.259933,0.426027,0.339798,0.591932,0.753452,0.586837,0.999125,0.989037,0.648257,0.338453,0.187302,0.193911,0.860911,0.93783,0.531981,0.357245,0.167568,0.709458,0.515205,0.890096,0.0820357,0.938047,0.262306,0.488495,0.0863007,0.866034,0.989541,0.111933,0.178823,0.279101,0.0903582,0.19848,0.705928,0.227426,0.444307,0.123575,0.2214,0.46395,0.0493075,0.145007,0.283569,0.0550923,0.462658,0.954679,0.228747,0.905059,0.3988,0.5954,0.835098,0.299725,0.36436,0.611344,0.127146,0.595832,0.774141,0.214743,0.536653,0.865015,0.996533,0.805716,0.924804,0.730714,0.263522,0.61211,0.163508,0.226435,0.285148,0.88309,0.318257,0.7309,0.273903,0.736403,0.0936939,0.786879,0.360834,0.763482,0.437116,0.719338,0.878865,0.657985,0.859569,0.801683,0.770313,0.269438,0.712336,0.59291,0.176359,0.705947,0.24007,0.578832,0.413753,0.91128,0.87849,0.500434,0.940683,0.401239,0.399106,0.30193,0.536424,0.832107,0.069703,0.224815,0.482576,0.0250808,0.884754,0.915603,0.182731,0.446923,0.991046,0.546632,0.0112957,0.409293,0.962268,0.656894,0.393849,0.380682,0.73572,0.0662428,0.188902,0.32336,0.829471,0.879978,0.172194,0.612934,0.370853,0.702151,0.279088,0.332227,0.108551,0.185419,0.452353,0.0302027,0.999005,0.292692,0.878439,0.440776,0.823463,0.104914,0.484398,0.490836,0.332097,0.0663988,0.65229,0.565254,0.202039,0.466838,0.380714,0.157838,0.557652,0.632138,0.589069,0.450146,0.395909,0.454568,0.19312,0.412686,0.337591,0.475225,0.92627,0.152337,0.110551,0.469253,0.0969924,0.223715,0.646655,0.0830374,0.285274,0.0257475,0.276807,0.675466,0.00424564,0.0785848,0.401061,0.12556,0.218778,0.916901,0.908513,0.851249,0.590085,0.969042,0.075671,0.179887,0.936979,0.974644,0.800215,0.28974,0.700081,0.346983,0.7988,0.392961,0.0282446,0.568901,0.407737,0.576541,0.808274,0.315654,0.760965,0.342077,0.411191,0.760469,0.00412184,0.826412,0.409983,0.681868,0.459723,0.470597,0.763932,0.430863,0.519654,0.238185,0.513848,0.930015,0.973906,0.751212,0.119772,0.214848,0.502388,0.161534,0.522091,0.0422956,0.221187,0.465641,0.798918,0.724211,0.353527,0.667573,0.545726,0.329547,0.207161,0.0286211,0.185213,0.03316,0.2446,0.202085,0.828616,0.911651,0.224071,0.713677,0.604662,0.00416178,0.423635,0.933744,0.538377,0.222149,0.532049,0.786505,0.214442,0.978142,0.0637444,0.365957,0.91961,0.454377,0.0440126,0.37247,0.792017,0.271156,0.886471,0.69844,0.37829,0.784403,0.759708,0.836124,0.121608,0.950885,0.926271,0.0313395,0.422232,0.92609,0.690603,0.790647,0.767212,0.778482,0.414733,0.510485,0.273345,0.903388,0.945392,0.511322,0.60997,0.409565,0.66949,0.00838381,0.60081,0.308914,0.486926,0.0134296,0.658927,0.850704,0.295785,0.562426,0.937746,0.697685,0.455856,0.930315,0.378677,0.834942,0.935442,0.64343,0.480162,0.819624,0.371609,0.223672,0.41795,0.40833,0.974241,0.217844,0.669313,0.886777,0.836485,0.209121,0.198779,0.729647,0.96749,0.168931,0.115199,0.564432,0.718864,0.646272,6.68764e-05,0.217549,0.431954,0.249775,0.990995,0.444571,0.359373,0.759603,0.0797122,0.186633,0.301218,0.0428272,0.0539147,0.44998,0.516327,0.0337815,0.350415,0.947032,0.83923,0.278208,0.548626,0.670223,0.562577,0.626718,0.548566,0.346228,0.783167,0.584835,0.666789,0.0760766,0.0422079,0.150182,0.739609,0.585126,0.320563,0.091765,0.443956,0.235077,0.704702,0.629367,0.318079,0.654302,0.737413,0.365253,0.311352,0.840841,0.0359564,0.42121,0.170401,0.492028,0.767882,0.687149,0.330544,0.868137,0.70007,0.529446,0.56291,0.649264,0.0799748,0.956503,0.0629793,0.0463887,0.622487,0.98701,0.767154,0.581254,0.927362,0.168896,0.189154,0.298014,0.375133,0.299878,0.321308,0.418541,0.923082,0.433785,0.674231,0.797836,0.109224,0.836238,0.173185,0.907288,0.186076,0.243715,0.567735,0.896376,0.72755,0.945976,0.976925,0.206285,0.57042,0.385572,0.542666,0.283197,0.49545,0.340006,0.56161,0.364422,0.573429,0.470146,0.938169,0.256849,0.249301,0.959331,0.673029,0.545709,0.849408,0.237185,0.482448,0.601272,0.660977,0.261232,0.846583,0.0171279,0.369647,0.871974,0.399039,0.13737,0.470396,0.580249,0.172442,0.82672,0.241905,0.847208,0.262836,0.12065,0.0767468,0.13892,0.595709,0.370916,0.768314,0.0258777,0.199137,0.365109,0.876656,0.32375,0.833948,0.0526494,0.756954,0.711347,0.811985,0.77185,0.553066,0.00610751,0.221865,0.495731,0.0243056,0.577896,0.00796962,0.251393,0.0452926,0.817395,0.27517,0.290262,0.214852,0.0828108,0.284848,0.321848,0.867952,0.899463,0.361189,0.807317,0.475005,0.927906,0.248336,0.630295,0.500343,0.827648,0.815735,0.822228,0.156185,0.21628,0.457093,0.610752,0.509284,0.930251,0.533291,0.996137,0.579424,0.0132958,0.330532,0.0395061,0.0386508,0.651509,0.68793,0.586104,0.305467,0.122869,0.488329,0.622135,0.278495,0.0295436,0.402031,0.827133,0.501665,0.233306,0.980097,0.737798,0.489655,0.864348,0.771043,0.744389,0.40189,0.0655622,0.423484,0.921165,0.333488,0.903243,0.77351,0.698269,0.704691,0.706393,0.699978,0.250692,0.202122,0.378053,0.353654,0.661609,0.375837,0.419018,0.500927,0.951485,0.0171457,0.173255,0.617275,0.708973,0.198535,0.627972,0.111407,0.640616,0.132888,0.115117,0.747017,0.430372,0.526607,0.110918,0.895922,0.063346,0.688299,0.789912,0.770984,0.952832,0.286045,0.84339,0.0356537,0.587494,0.34597,0.408578,0.345204,0.0170634,0.265912,0.206575,0.705845,0.661277,0.678953,0.0639715,|0.568175,0.931226,0.358957,0.940625,0.793279,0.042321,0.0974867,0.770243,0.216403,0.0686694,0.618497,0.588811,0.180648,0.772037,0.83986,0.235479,0.0218942,0.287936,0.0732985,0.666824,0.535645,0.648226,0.404065,0.109989,0.949463,0.46398,0.803145,0.298239,0.771071,0.224132,0.897089,0.270207,0.054459,0.662813,0.0216023,0.581637,0.908782,0.163572,0.76765,0.76112,0.661162,0.428281,0.396354,0.722989,0.101084,0.625903,0.527943,0.658078,0.935599,0.268051,0.727692,0.416602,0.909754,0.928095,0.538832,0.539103,0.287772,0.119952,0.907447,0.388181,0.939546,0.275321,0.188354,0.748153,0.390363,0.148068,0.569308,0.616403,0.0410538,0.464154,0.271226,0.872191,0.379186,0.962192,0.127163,0.179912,0.0461429,0.370151,0.682974,0.552521,0.236323,0.928176,0.518122,0.307826,0.336031,0.208778,0.783272,0.332379,0.608549,0.91869,0.950866,0.435341,0.116736,0.0815768,0.795402,0.0556017,0.493413,0.958439,0.677452,0.597037,0.648561,0.0597436,0.224461,0.586905,0.71954,0.859035,0.576869,0.581808,0.803091,0.00241458,0.200748,0.548595,0.225259,0.317291,0.626444,0.191289,0.963629,0.848186,0.541713,0.390563,0.692558,0.694043,0.127617,0.0551723,0.521888,0.0361352,0.0432103,0.484063,0.529048,0.313702,0.0201253,0.221607,0.221916,0.935169,0.175826,0.36131,0.850612,0.743782,0.044818,0.670919,0.621666,0.553294,0.200492,0.769819,0.392217,0.268949,0.746205,0.761017,0.654976,0.595838,0.118876,0.551613,0.377057,0.316813,0.659995,0.221382,0.930317,0.707474,0.19223,0.416458,0.415358,0.574286,0.754084,0.807236,0.650788,0.470888,0.496779,0.927286,0.680899,0.025528,0.186999,0.322981,0.998135,0.292058,0.413806,0.0222488,0.281189,0.916418,0.322834,0.585974,0.0976298,0.122891,0.657344,0.152807,0.508279,0.00352871,0.864161,0.592759,0.996457,0.389199,0.996891,0.985222,0.0736813,0.122926,0.216988,0.50768,0.0584923,0.609472,0.124664,0.572315,0.350688,0.491362,0.426014,0.037522,0.572418,0.156616,0.4596,0.364383,0.267082,0.654971,0.492468,0.576091,0.895885,0.396912,0.0288951,0.0350969,0.461964,0.186635,0.120682,0.293795,0.0199383,0.301416,0.977534,0.709919,0.0122777,0.110279,0.0738125,0.750547,0.118328,0.947727,0.47712,0.323366,0.941577,0.576285,0.0642968,0.522876,0.0227314,0.554157,0.0520576,0.419898,0.0611668,0.185643,0.459745,0.532771,0.900494,0.572727,0.452525,0.802055,0.146939,0.357832,0.455902,0.373258,0.570149,0.915211,0.408247,0.638161,0.350849,0.409339,0.434718,0.305204,0.661579,0.0706101,0.326583,0.469356,0.959825,0.38649,0.588565,0.825268,0.257894,0.0348286,0.208808,0.242726,0.116264,0.57627,0.554339,0.0983377,0.435358,0.809943,0.927934,0.383163,0.313215,0.113072,0.698643,0.566971,0.494291,0.473426,0.145421,0.780645,0.429864,0.357472,0.38232,0.211977,0.579221,0.73262,0.212435,0.399342,0.307811,0.174414,0.148091,0.215379,0.290661,0.153754,0.48239,0.172176,0.216961,0.297865,0.532049,0.0901999,0.33058,0.944919,0.900976,0.34907,0.91186,0.427679,0.553771,0.241699,0.929051,0.659107,0.581265,0.826363,0.106707,0.874353,0.479761,0.278216,0.278402,0.70238,0.517047,0.125717,0.450277,0.156989,0.0388454,0.755721,0.80005,0.343047,0.142296,0.607408,0.55082,0.787822,0.58508,0.273323,0.317404,0.756051,0.963793,0.694817,0.461373,0.668483,0.690997,0.975711,0.964104,0.992875,0.0489898,0.633931,0.291057,0.971254,0.556453,0.202518,0.698418,0.779257,0.883502,0.0950295,0.525678,0.142817,0.502017,0.863302,0.733929,0.383527,0.904058,0.684314,0.661589,0.751993,0.580837,0.787802,0.192018,0.713263,0.706218,0.582877,0.109994,0.207239,0.122839,0.628728,0.349724,0.652988,0.513534,0.590971,0.680836,0.435181,0.453389,0.494539,0.0782883,0.735069,0.808248,0.479862,0.395006,0.467951,0.750837,0.24975,0.331133,0.682855,0.803107,0.606015,0.0679052,0.484414,0.786629,0.98971,0.261315,0.134522,0.255595,0.599417,0.232912,0.202817,0.338732,0.386469,0.000625551,0.842687,0.402735,0.0743591,0.254656,0.0275471,0.419388,0.356336,0.557804,0.606272,0.314169,0.834064,0.760879,0.480945,0.398704,0.85142,0.21091,0.0752797,0.0313494,0.86732,0.320503,0.564097,0.174175,0.472434,0.489173,0.46307,0.00223607,0.0432788,0.964743,0.663988,0.354614,0.587801,0.567769,0.652499,0.313678,0.218142,0.502814,0.712619,0.904994,0.87819,0.935005,0.809959,0.365619,0.0250685,0.525947,0.634162,0.614597,0.248883,0.876999,0.391912,0.626617,0.52233,0.258832,0.795559,0.777636,0.391116,0.13295,0.05595,0.646892,0.6499,0.18966,0.471786,0.538324,0.367221,0.107864,0.279304,0.665721,0.795709,0.0589153,0.910194,0.496656,0.185131,0.0545242,0.257738,0.0183637,0.530575,0.439486,0.732077,0.0372232,0.908108,0.784961,0.857596,0.160282,0.25294,0.547406,0.825743,0.933865,0.873927,0.990523,0.674533,0.835539,0.103806,0.311522,0.550041,0.84085,0.465229,0.0326167,0.591853,0.737339,0.951758,0.497707,0.32715,0.481361,0.970153,0.917183,0.965467,0.72079,0.963082,0.359567,0.765857,0.629365,0.151709,0.632471,0.403543,0.143341,0.986266,0.601381,0.367577,0.456145,0.498549,0.420755,0.410444,0.0985883,0.84765,0.637962,0.297428,0.684727,0.330474,0.658312,0.325846,0.961566,0.127046,0.59055,0.453971,0.876432,0.642029,0.988035,0.299303,0.841642,0.987654,0.286602,0.947871,0.0508316,0.980395,0.879268,0.00324827,0.245767,0.658746,0.028011,0.423466,0.744581,0.0880837,0.469568,0.524962,0.87959,0.645676,0.272065,0.508089,0.791592,0.66336,0.46611,0.284599,0.648003,0.511274,0.178684,0.392219,0.232335,0.772262,0.960608,0.668433,0.918033,0.937663,0.271625,0.740811,0.400001,0.924329,0.686115,0.562806,0.600671,0.94169,0.11087,0.36608,0.493175,0.76792,0.686664,0.268259,0.686586,0.916487,0.874089,0.994746,0.588218,0.44876,0.230329,0.629357,0.288244,0.350614,0.813237,0.224961,0.179012,0.524585,0.795808,0.997348,0.225914,0.95859,0.0396824,0.427373,0.498504,0.957558,0.750527,0.539827,0.599631,0.439558,0.5113,0.607065,0.665672,0.843881,0.695807,0.658803,0.176599,0.23238,0.280338,0.956919,0.711482,0.954963,0.240929,0.971584,0.361323,0.102493,0.704328,0.432101,0.424798,0.347791,0.0933774,0.922515,0.29912,0.508343,0.972619,0.886471,0.573205,0.941364,0.127073,0.759412,0.738683,0.0641477,0.125044,0.956715,0.97101,0.834808,0.712145,0.567984,0.865561,0.417332,0.664416,0.324328,0.271831,0.619462,0.417339,0.293981,0.363032,0.0186547,0.25202,0.534259,0.300036,0.635886,0.7439,0.411073,0.799028,0.646733,0.140848,0.723937,0.0888043,0.3124,0.802149,0.656949,0.196549,0.964671,0.281999,0.563617,0.145068,0.534039,0.0319397,0.763104,0.856676,0.0159346,0.653447,0.801427,0.611131,0.795069,0.720336,0.254507,0.313125,0.936809,0.574498,0.616304,0.994166,0.327584,0.603248,0.483259,0.266825,0.759649,0.0817943,0.579765,0.485175,0.756175,0.316087,0.654198,0.58257,0.827576,0.751155,0.167575,0.765448,0.907541,0.131007,0.97618,0.651767,0.134119,0.580394,0.746033,0.759587,0.178309,0.827431,0.0239709,0.888708,0.496501,0.428434,0.641591,0.55433,0.523827,0.283353,0.731289,0.0550967,0.33349,0.151661,0.886741,0.0424628,0.827656,0.715425,0.48261,0.837579,0.850128,0.46878,0.458307,0.215519,0.350284,0.877108,0.730143,0.0204504,0.609798,0.224083,0.684277,0.784122,0.248302,0.932499,0.0164639,0.623633,0.909635,0.915919,0.982924,0.488379,0.64381,0.324214,0.74654,0.976767,0.868952,0.119861,0.730887,0.187625,0.203964,0.657405,0.0968887,0.28713,0.217378,0.365671,0.642623,0.878054,0.163283,0.630172,0.104917,0.00442797,0.51163,0.0410604,0.810901,0.490042,0.333456,0.704675,0.0200619,0.208255,0.811046,0.954497,0.00127143,0.437542,0.837237,0.609505,0.307841,0.931867,0.0418475,0.856824,0.0112404,0.245561,0.479168,0.00882274,0.558874,0.0476038,0.388329,0.866291,0.983955,0.995078,0.708595,0.988295,0.692277,0.567765,0.973422,0.866384,0.560656,0.359767,0.0738811,0.940452,0.823599,0.233818,0.661804,0.271571,0.396402,0.770354,0.836959,0.0114163,0.350971,0.894843,0.0647804,0.796089,0.971961,0.924207,0.506309,0.377065,0.21737,0.760014,0.85868,0.944232,0.680867,0.378042,0.97082,0.311303,0.147911,0.0215843,0.833677,0.0325661,0.733084,0.720419,0.794825,0.0285348,0.274228,0.388394,0.365379,0.50899,0.998898,0.0632203,0.865482,0.950917,0.472736,0.119963,0.315541,0.806667,0.411426,0.726793,0.481551,0.381491,0.941999,0.549979,0.810905,0.694131,0.487991,0.800634,0.258162,0.861548,0.44709,0.492345,0.581043,0.142445,0.954665,0.10771,0.435872,0.913449,0.62836,0.979012,0.78949,0.0975994,0.1385,0.94978,0.172548,0.893986,0.698102,0.546971,0.538632,0.298109,0.0879155,0.320156,0.513082,0.241724,0.311683,0.243911,0.924075,0.19455,0.764828,0.279882,0.866169,0.577238,0.854769,0.446169,0.329397,0.353842,0.600016,0.604861,0.0931169,0.850537,0.290645,0.780044,0.871117,0.647509,0.119357,0.286308,0.516144,0.0997313,0.505009,0.286313,0.765528,0.368047,0.403227,0.663681,0.165989,0.224874,0.652852,0.257486,0.0878816,0.720401,0.584763,0.396233,0.946648,0.256995,6.31809e-06,0.752452,0.767731,0.184,0.785474,0.255055,0.381508,0.870913,0.117042,0.329556,0.184776,0.66554,0.707347,0.754207,0.906325,0.51045,0.646371,0.199768,0.926037,0.0645731,0.137491,0.632443,0.600322,0.617008,0.909508,0.179584,0.814155,0.957358,0.375416,0.284228,0.178897,0.317939,0.48114,0.785134,0.445314,0.326739,0.154352,0.416612,0.831422,0.697889,0.000979602,0.350179,0.370602,0.434772,0.225359,0.68878,0.472673,0.788329,0.00518405,0.273777,0.00114888,|0.701149,0.659199,0.742808,0.407372,0.481516,0.883508,0.648597,0.903055,0.612606,0.472631,0.664798,0.167229,0.632567,0.212198,0.492449,0.548121,0.630259,0.608601,0.763997,0.78188,0.72095,0.295604,0.51161,0.482078,0.0111925,0.0263345,0.0701779,0.575305,0.0588862,0.5682,0.426877,0.585497,0.194138,0.103726,0.269211,0.337054,0.61788,0.325455,0.868681,0.267038,0.143637,0.342981,0.558855,0.593178,0.482898,0.00464648,0.997798,0.0964947,0.105916,0.0142555,0.622971,0.772588,0.67254,0.798987,0.296531,0.76402,0.901979,0.650887,0.414046,0.0265313,0.377488,0.266595,0.563804,0.909049,0.614113,0.987615,0.603684,0.764997,0.993476,0.63941,0.713956,0.112496,0.0415716,0.133748,0.084578,0.567958,0.179018,0.107879,0.335305,0.569935,0.372893,0.20773,0.886398,0.309965,0.0451598,0.645267,0.158385,0.942178,0.826964,0.993204,0.901812,0.525109,0.764127,0.760405,0.28777,0.592167,0.470013,0.596083,0.39308,0.470054,0.287418,0.401559,0.26281,0.964823,0.0297064,0.651806,0.127192,0.0406868,0.266186,0.221747,0.413778,0.734178,0.270563,0.553361,0.0146785,0.691973,0.97279,0.723965,0.726027,0.0750991,0.319507,0.139498,0.402845,0.575186,0.303037,0.808335,0.488045,0.958228,0.642176,0.56339,0.819514,0.394787,0.786804,0.450011,0.688556,0.603541,0.665423,0.544474,0.92935,0.830361,0.17839,0.697733,0.310267,0.146025,0.593946,0.271841,0.88904,0.306634,0.486323,0.0391344,0.394425,0.814939,0.73287,0.247336,0.430015,0.195664,0.620309,0.952068,0.312466,0.101981,0.767866,0.286031,0.766315,0.462922,0.36325,0.205688,0.265112,0.316804,0.166616,0.786391,0.686054,0.322234,0.482264,0.63205,0.653212,0.342625,0.596659,0.0367168,0.756198,0.508387,0.0966558,0.476412,0.421829,0.187513,0.470389,0.534183,0.763556,0.759664,0.815353,0.410631,0.318574,0.73011,0.819903,0.170163,0.767911,0.801677,0.601544,0.607114,0.617662,0.0425441,0.981877,0.316891,0.946477,0.957712,0.665694,0.982519,0.437809,0.292025,0.279988,0.279531,0.91719,0.907347,0.335203,0.100747,0.203245,0.203109,0.475502,0.160858,0.0376749,0.31217,0.608932,0.516491,0.920846,0.769478,0.0429672,0.832578,0.550296,0.715641,0.429213,0.960504,0.893238,0.965057,0.0252295,0.157936,0.0169543,0.012437,0.978201,0.994547,0.660979,0.384954,0.492763,0.700119,0.491557,0.101004,0.21767,0.414886,0.0231982,0.205584,0.86205,0.173435,0.343918,0.737806,0.803325,0.338468,0.50327,0.0859088,0.808795,0.970351,0.106663,0.986709,0.973339,0.660413,0.251721,0.995863,0.869521,0.139843,0.817945,0.516287,0.951906,0.299853,0.543572,0.980755,0.939565,0.931328,0.109456,0.494488,0.459614,0.696946,0.362163,0.827916,0.399303,0.724803,0.0726342,0.85629,0.279073,0.182692,0.769636,0.55748,0.0860606,0.062893,0.979048,0.31746,0.009224,0.806153,0.202067,0.798844,0.271864,0.42422,0.986586,0.604495,0.602926,0.450356,0.473846,0.576215,0.017464,0.514558,0.132847,0.808798,0.323638,0.168431,0.198693,0.665946,0.875981,0.576476,0.0806968,0.522234,0.669748,0.360012,0.0238258,0.566292,0.389528,0.816974,0.474445,0.991212,0.411132,0.0469032,0.0531101,0.363503,0.339434,0.991722,0.596022,0.439223,0.983436,0.171658,0.278446,0.12118,0.988832,0.115374,0.925691,0.0536174,0.918804,0.0970978,0.135668,0.266157,0.664088,0.39729,0.502375,0.898598,0.911242,0.328708,0.13375,0.688656,0.35019,0.756309,0.0413557,0.0998441,0.36196,0.0224901,0.97845,0.163223,0.709112,0.662699,0.230891,0.471057,0.374108,0.0660164,0.374254,0.0272106,0.436676,0.887524,0.540707,0.474368,0.898825,0.156329,0.814373,0.856051,0.766538,0.689285,0.525293,0.520709,0.412593,0.661561,0.953299,0.38617,0.784552,0.731522,0.713161,0.860172,0.681489,0.415127,0.0997559,0.592944,0.854617,0.227191,0.359235,0.322802,0.460876,0.674329,0.933155,0.706499,0.408706,0.719926,0.589132,0.131035,0.656793,0.77074,0.580477,0.559883,0.432412,0.482661,0.481814,0.167749,0.298517,0.40932,0.680134,0.162833,0.692763,0.270934,0.139813,0.667402,0.274604,0.300773,0.219744,0.319189,0.16135,0.00738603,0.958706,0.201412,0.0376353,0.997198,0.485821,0.413426,0.193154,0.676375,0.280119,0.556658,0.553135,0.403881,0.734677,0.733533,0.466193,0.351484,0.518354,0.579199,0.180215,0.551492,0.70044,0.902738,0.490223,0.12438,0.337763,0.389323,0.811313,0.315908,0.899473,0.474895,0.537952,0.423244,0.119715,0.121562,0.221492,0.60026,0.228999,0.535676,0.702466,0.359069,0.57362,0.788063,0.643346,0.570932,0.920741,0.196212,0.338123,0.657813,0.450582,0.919075,0.789317,0.351066,0.23382,0.377995,0.383785,0.109359,0.303241,0.679274,0.456392,0.324078,0.651497,0.282365,0.0409355,0.986419,0.762892,0.0241689,0.678002,0.147363,0.174539,0.728265,0.0518641,0.56419,0.954997,0.736737,0.00354141,0.308684,0.284028,0.195634,0.386284,0.992031,0.277141,0.172659,0.894389,0.108956,0.607024,0.620921,0.978019,0.00440723,0.699692,0.983609,0.422291,0.637322,0.741664,0.40897,0.845866,0.331001,0.568772,0.796188,0.829759,0.0928419,0.276216,0.132361,0.79542,0.645577,0.727039,0.919742,0.367277,0.57866,0.48903,0.496388,0.918018,0.782733,0.656241,0.382793,0.532158,0.846739,0.823644,0.0159379,0.150858,0.421137,0.429606,0.956577,0.39235,0.116896,0.386429,0.0662109,0.959041,0.910886,0.269519,0.383045,0.874862,0.864249,0.616748,0.527562,0.256489,0.560815,0.712586,0.326359,0.578381,0.243321,0.729524,0.496226,0.41962,0.874671,0.536678,0.806432,0.648244,0.20624,0.187281,0.631032,0.561194,0.372626,0.211807,0.640063,0.0421693,0.200399,0.202192,0.948173,0.955649,0.227799,0.377729,0.508976,0.462426,0.549739,0.689795,0.290135,0.328274,0.875107,0.281335,0.711892,0.0842722,0.931664,0.446954,0.142091,0.198042,0.229724,0.628865,0.155961,0.553403,0.121862,0.500813,0.315692,0.973484,0.727974,0.832604,0.85618,0.529544,0.0564618,0.173915,0.240813,0.849122,0.884919,0.680396,0.728038,0.876873,0.9013,0.995438,0.174039,0.103843,0.8506,0.769493,0.324104,0.800366,0.434909,0.877111,0.183589,0.523344,0.473407,0.0923269,0.697961,0.270481,0.71712,0.949549,0.257945,0.197351,0.903532,0.801889,0.266753,0.0873298,0.863322,0.974792,0.677476,0.394853,0.402588,0.226204,0.00575387,0.664502,0.835825,0.450437,0.818072,0.12906,0.815634,0.380781,0.260749,0.628239,0.467917,0.745066,0.157328,0.986169,0.595384,0.126284,0.00695109,0.174292,0.0714372,0.798865,0.889744,0.72433,0.544038,0.146972,0.45442,0.175033,0.0564566,0.709565,0.636063,0.461731,0.299623,0.565684,0.827448,0.139634,0.836139,0.819296,0.394534,0.834774,0.345466,0.235663,0.2171,0.745492,0.212356,0.810499,0.239745,0.191709,0.780762,0.271271,0.923867,0.0351012,0.21596,0.947549,0.685287,0.21459,0.28597,0.649233,0.0137717,0.716167,0.896201,0.488084,0.8752,0.482566,0.142006,0.781921,0.702123,0.328813,0.756774,0.773838,0.696305,0.233043,0.0525215,0.6537,0.195261,0.637797,0.320042,0.389069,0.91241,0.536821,0.373042,0.498203,0.765689,0.760762,0.411542,0.178221,0.6151,0.757989,0.160375,0.909074,0.153907,0.790525,0.0944374,0.0515736,0.771902,0.822506,0.246173,0.751503,0.702449,0.733141,0.0320069,0.138512,0.0915227,0.333843,0.165581,0.823405,0.162667,0.623441,0.12537,0.495845,0.782173,0.697799,0.905284,0.325502,0.173081,0.38694,0.0998338,0.98386,0.246981,0.358563,0.0454979,0.326551,0.629809,0.797821,0.149171,0.712896,0.145442,0.820318,0.563284,0.137249,0.991635,0.653062,0.332357,0.572698,0.756341,0.888098,0.685946,0.291284,0.575657,0.318419,0.75261,0.134737,0.795345,0.813444,0.496785,0.157324,0.784825,0.353071,0.613634,0.921213,0.234147,0.785955,0.291666,0.0942473,0.118324,0.911375,0.170518,0.0275558,0.914499,0.772543,0.767514,0.729526,0.0541127,0.595611,0.763303,0.543159,0.037389,0.713483,0.475846,0.976246,0.343673,0.0655056,0.338704,0.843526,0.797437,0.956329,0.305951,0.807164,0.132867,0.34066,0.789503,0.976598,0.200566,0.245943,0.826572,0.73287,0.502178,0.486974,0.37784,0.0637096,0.614973,0.0220711,0.319009,0.840945,0.485533,0.0029791,0.764433,0.217277,0.788623,0.0377094,0.806528,0.00190604,0.625333,0.644112,0.657165,0.914592,0.275219,0.449146,0.0921176,0.442254,0.266652,0.879,0.104435,0.900343,0.718786,0.158706,0.553717,0.87447,0.597042,0.51812,0.861292,0.300871,0.420703,0.185804,0.853961,0.718125,0.535027,0.0776517,0.383747,0.968814,0.575559,0.343476,0.652295,0.54502,0.5837,0.311298,0.764764,0.0649396,0.495058,0.015432,0.267273,0.0783974,0.0693799,0.462841,0.576745,0.875966,0.263033,0.0712706,0.136224,0.0340587,0.938124,0.952584,0.233549,0.212803,0.706178,0.208696,0.808123,0.770516,0.686414,0.431878,0.952194,0.775499,0.67906,0.145966,0.868855,0.152607,0.893019,0.816348,0.675771,0.0945573,0.416046,0.913125,0.921797,0.586377,0.646024,0.352334,0.295177,0.72768,0.951824,0.989375,0.673751,0.767454,0.202259,0.727507,0.556602,0.612862,0.503382,0.839087,0.349349,0.2211,0.276973,0.355613,0.104746,0.682578,0.433113,0.313728,0.881243,0.274931,0.936416,0.909196,0.169881,0.019181,0.565375,0.418039,0.781376,0.520293,0.250193,0.0598073,0.230399,0.926451,0.100107,0.404595,0.735143,0.567302,0.862078,0.0839295,0.170672,0.702236,0.267521,0.72049,0.000926137,0.621099,0.98508,0.722234,0.98594,0.484874,0.133416,0.726523,0.829412,0.115186,0.489335,0.340069,0.281383,0.852954,0.837061,0.231664,0.318337,0.863258,0.169065,0.684303,0.325002,0.492753,0.222366,0.00259429,0.580447,0.209117,0.456364,0.27277,0.0634624,0.471997,0.993114,|0.868843,0.868547,0.283681,0.290215,0.405182,0.452093,0.389484,0.520345,0.477867,0.579048,0.796208,0.520693,0.34927,0.105756,0.709997,0.159645,0.94889,0.27493,0.674843,0.114684,0.200505,0.258812,0.339551,0.555075,0.124366,0.854595,0.291569,0.0609677,0.916989,0.754345,0.144233,0.108644,0.0226008,0.774897,0.513144,0.992765,0.402583,0.201782,0.352666,0.419563,0.00355852,0.678479,0.480775,0.754116,0.300071,0.998993,0.67545,0.0211978,0.863631,0.630922,0.48303,0.446359,0.938206,0.518819,0.440346,0.560121,0.256957,0.76435,0.453829,0.443313,0.375596,0.728663,0.0469133,0.887464,0.58533,0.00429624,0.0564089,0.269205,0.304631,0.503124,0.642852,0.986288,0.769661,0.883574,0.842263,0.203582,0.0526464,0.608905,0.982423,0.705667,0.82456,0.540781,0.916593,0.674511,0.656044,0.319918,0.323128,0.726541,0.0292118,0.149835,0.876837,0.15303,0.846294,0.795684,0.997354,0.776557,0.842116,0.917876,0.963482,0.324721,0.884827,0.0613491,0.794175,0.0244497,0.330081,0.149849,0.240386,0.323853,0.301928,0.0477582,0.669101,0.0410374,0.937862,0.423418,0.911135,0.816136,0.611636,0.158733,0.280176,0.297463,0.862327,0.71906,0.964796,0.812995,0.240721,0.625495,0.621,0.534384,0.449717,0.882502,0.223849,0.636956,0.668714,0.365425,0.752665,0.83944,0.714538,0.0988313,0.573976,0.702941,0.447201,0.791152,0.264974,0.188433,0.87445,0.745875,0.969246,0.698739,0.923773,0.974296,0.496172,0.157508,0.978723,0.316767,0.667424,0.232306,0.18154,0.436212,0.0690724,0.417426,0.844781,0.973737,0.588438,0.179364,0.0787839,0.0588134,0.61652,0.943972,0.906685,0.159595,0.149803,0.551497,0.468355,0.694577,0.172828,0.613721,0.819166,0.524862,0.73416,0.101881,0.252662,0.0524332,0.49674,0.100628,0.739273,0.138156,0.287675,0.617685,0.558565,0.400848,0.20193,0.450455,0.881432,0.148082,0.563394,0.655361,0.392083,0.847702,0.871956,0.390725,0.936125,0.289706,0.772893,0.304171,0.609761,0.837166,0.814462,0.35619,0.0524283,0.0494007,0.123797,0.49881,0.177316,0.196801,0.344227,0.304572,0.920424,0.977625,0.24522,0.154313,0.817709,0.473079,0.0788913,0.571488,0.622967,0.120106,0.0758318,0.158647,0.314236,0.446645,0.170751,0.528016,0.97859,0.686843,0.1134,0.158746,0.0541024,0.233563,0.502257,0.928519,0.269622,0.941252,0.043664,0.358378,0.614372,0.0664867,0.599915,0.011102,0.057376,0.0160581,0.585857,0.349572,0.85443,0.456635,0.657422,0.333314,0.965326,0.298516,0.179096,0.0845875,0.429244,0.693739,0.624256,0.11949,0.983389,0.837602,0.0456587,0.35365,0.200558,0.560235,0.185447,0.820399,0.466976,0.10275,0.253775,0.195674,0.363155,0.041769,0.130233,0.373004,0.11259,0.732287,0.289501,0.281073,0.532721,0.560204,0.0507327,0.317296,0.331727,0.542351,0.74601,0.970257,0.947491,0.223021,0.54569,0.201861,0.326296,0.793094,0.0540173,0.0418934,0.329946,0.491149,0.0538012,0.0180891,0.974254,0.575205,0.898269,0.65659,0.735232,0.0406629,0.273796,0.764298,0.171988,0.507351,0.664137,0.37029,0.627346,0.283942,0.0916461,0.695674,0.399635,0.972058,0.192163,0.722449,0.65112,0.0667511,0.865638,0.849701,0.82102,0.496977,0.639254,0.450719,0.843643,0.398446,0.887465,0.182913,0.443097,0.129116,0.84427,0.694629,0.340249,0.829005,0.166778,0.476153,0.341279,0.741463,0.18669,0.360964,0.873917,0.269942,0.926396,0.0865371,0.723526,0.356941,0.0160469,0.804436,0.543034,0.0769892,0.651894,0.0262631,0.813016,0.0567814,0.225396,0.481025,0.394352,0.819817,0.705861,0.499457,0.7289,0.717583,0.70958,0.335995,0.145677,0.625964,0.0119975,0.175446,0.531707,0.0797358,0.969935,0.135085,0.981804,0.699846,0.40378,0.378232,0.435693,0.522495,0.306377,0.135627,0.665797,0.64393,0.453974,0.0543543,0.846109,0.183287,0.271995,0.912984,0.815677,0.419751,0.70229,0.271368,0.673634,0.222465,0.25929,0.870477,0.860511,0.986895,0.234131,0.273953,0.141991,0.885365,0.307191,0.30827,0.295607,0.162396,0.086498,0.955519,0.077078,0.832127,0.105416,0.804,0.0611544,0.472621,0.517319,0.626677,0.112919,0.521206,0.850413,0.583297,0.75746,0.858598,0.910411,0.806369,0.0975465,0.932133,0.294054,0.136456,0.131771,0.697251,0.554855,0.120876,0.557262,0.0510221,0.853814,0.306852,0.956502,0.394667,0.512795,0.879589,0.692341,0.178808,0.281188,0.851549,0.676032,0.50638,0.980766,0.817134,0.701533,0.246296,0.574975,0.413515,0.826882,0.123859,0.947901,0.910738,0.68633,0.801776,0.126439,0.0954397,0.746949,0.660976,0.589002,0.93268,0.912979,0.712895,0.197813,0.650948,0.678641,0.618727,0.0506164,0.398456,0.335239,0.153871,0.957987,0.03309,0.269409,0.276638,0.0997228,0.297643,0.683766,0.836026,0.440418,0.924071,0.485407,0.0449957,0.58087,0.227986,0.0783831,0.396159,0.0535258,0.844267,0.769198,0.733149,0.981829,0.977965,0.115438,0.351538,0.493415,0.15749,0.0325145,0.748174,0.961486,0.961543,0.112523,0.218838,0.135811,0.942675,0.697792,0.184883,0.15867,0.752292,0.531614,0.451287,0.551021,0.202627,0.0491168,0.0503944,0.00350386,0.0255505,0.655177,0.870049,0.0207468,0.924298,0.637741,0.425978,0.763134,0.443445,0.831505,0.591516,0.110015,0.910099,0.331535,0.679758,0.197396,0.80928,0.554285,0.94625,0.740189,0.0526809,0.701084,0.69729,0.474389,0.211592,0.0158216,0.315706,0.295718,0.511125,0.0334787,0.674787,0.706864,0.387509,0.0651639,0.887779,0.0695256,0.753715,0.150718,0.830893,0.211949,0.614871,0.135788,0.690735,0.737571,0.163911,0.723437,0.366008,0.24655,0.826786,0.449701,0.69009,0.959538,0.240277,0.234851,0.186511,0.00532693,0.53919,0.796643,0.127874,0.0544834,0.0297624,0.708623,0.287894,0.910808,0.12493,0.335955,0.111868,0.861364,0.184866,0.330952,0.190014,0.597502,0.955453,0.333608,0.321115,0.83723,0.970226,0.41678,0.607898,0.0779607,0.00686574,0.552076,0.0590745,0.390712,0.360245,0.117332,0.9716,0.585453,0.553647,0.535333,0.870368,0.817396,0.378924,0.471318,0.738557,0.692354,0.0492275,0.142448,0.811992,0.18998,0.824804,0.0881169,0.88481,0.435333,0.0459059,0.777747,0.977997,0.611623,0.978921,0.0232652,0.250769,0.125462,0.54355,0.0645084,0.169371,0.748498,0.183518,0.713179,0.960699,0.265981,0.408916,0.820044,0.332704,0.846044,0.586079,0.961427,0.718438,0.0401488,0.206234,0.325742,0.117386,0.962375,0.445141,0.513856,0.0247656,0.324825,0.362286,0.928645,0.232303,0.197881,0.910154,0.211364,0.130029,0.258972,0.163599,0.190955,0.0619212,0.681514,0.703208,0.288551,0.167605,0.714643,0.877068,0.589645,0.954882,0.864619,0.749895,0.767871,0.152676,0.996357,0.879578,0.319855,0.111288,0.794257,0.79659,0.498886,0.170746,0.643539,0.452787,0.840063,0.368656,0.371743,0.210756,0.663643,0.892315,0.341716,0.0557505,0.883161,0.913685,0.745257,0.493619,0.221932,0.00133234,0.878282,0.943772,0.0387614,0.70779,0.357579,0.280939,0.0812698,0.14968,0.782082,0.760706,0.218214,0.553803,0.315083,0.939175,0.878959,0.940324,0.538713,0.767656,0.641478,0.952608,0.69403,0.889282,0.414882,0.939281,0.568752,0.606252,0.158418,0.611651,0.830577,0.745492,0.786297,0.620648,0.845023,0.071617,0.134915,0.703053,0.901819,0.939238,0.500315,0.300896,0.726695,0.906027,0.999181,0.019641,0.297693,0.725056,0.324386,0.218358,0.190368,0.816109,0.371484,0.961392,0.92892,0.538873,0.67926,0.651718,0.84064,0.960878,0.250276,0.0063861,0.85983,0.216881,0.900625,0.162909,0.851047,0.796138,0.489492,0.614888,0.881846,0.304055,0.726506,0.0769086,0.99455,0.644296,0.169119,0.288868,0.562893,0.283235,0.593467,0.893407,0.971227,0.84726,0.9607,0.789715,0.68154,0.105002,0.994842,0.889618,0.219718,0.998087,0.590669,0.429896,0.304766,0.344412,0.00683165,0.721777,0.587553,0.386925,0.832661,0.732029,0.505602,0.106512,0.116276,0.60946,0.54836,0.926273,0.732744,0.640195,0.745619,0.17035,0.325353,0.757016,0.0748466,0.4277,0.752581,0.173009,0.0421813,0.42165,0.729879,0.284928,0.185092,0.592788,0.683544,0.236302,0.088523,0.432648,0.162789,0.628763,0.957311,0.609971,0.560152,0.349472,0.0298004,0.572699,0.754611,0.367675,0.369838,0.65834,0.0585887,0.473195,0.362372,0.807154,0.0283132,0.375059,0.892413,0.258135,0.12899,0.952417,0.984118,0.548077,0.973933,0.709533,0.952259,0.491428,0.878302,0.288093,0.577208,0.37796,0.96096,0.279395,0.572523,0.125989,0.679554,0.131119,0.0320653,0.494165,0.342537,0.639644,0.349901,0.407685,0.531786,0.0132445,0.795562,0.658874,0.351759,0.745206,0.394212,0.669522,0.770366,0.768337,0.428333,0.496172,0.874002,0.14366,0.0050661,0.331013,0.674136,0.110082,0.195985,0.317215,0.741048,0.510785,0.0836622,0.158424,0.524331,0.626598,0.604468,0.386258,0.993812,0.909235,0.744764,0.231329,0.88639,0.245072,0.897676,0.841439,0.0555118,0.622998,0.775712,0.0181509,0.666016,0.49697,0.999672,0.198726,0.215431,0.41365,0.0826604,0.162566,0.990778,0.560013,0.786115,0.108099,0.806918,0.732896,0.101279,0.43717,0.52984,0.699656,0.354309,0.0451612,0.764762,0.640099,0.329081,0.879566,0.173006,0.987252,0.481092,0.0666798,0.446493,0.109764,0.394083,0.874294,0.815803,0.644045,0.880928,0.0301389,0.886463,0.203209,0.718357,0.448969,0.339503,0.0434922,0.0231375,0.800818,0.334369,0.674907,0.103557,0.102865,0.235644,0.803409,0.110092,0.799082,0.895297,0.532226,0.410818,0.605994,0.749402,0.994347,0.743174,0.236983,0.18132,0.882489,0.787413,0.134744,0.107053,0.863118,0.108951,0.117242,0.609419,0.538118,0.732125,0.201004,0.865186,0.81329,0.932592,0.605788,0.480922,0.285719,0.565419,0.366012,|0.212797,0.482611,0.770784,0.49374,0.3935,0.383604,0.538244,0.794804,0.98377,0.847435,0.454042,0.0459095,0.506924,0.338413,0.116753,0.147131,0.167146,0.197345,0.0421668,0.700668,0.74947,0.686077,0.0327463,0.851623,0.350401,0.040977,0.70959,0.501539,0.969535,0.355956,0.0407948,0.607106,0.248662,0.890968,0.542032,0.30155,0.419675,0.868749,0.722187,0.745313,0.418118,0.0499921,0.635579,0.889769,0.228932,0.197652,0.433012,0.69273,0.124358,0.445175,0.748882,0.533158,0.770886,0.533299,0.253058,0.522696,0.578961,0.294904,0.65297,0.603493,0.356003,0.953089,0.364085,0.114287,0.2596,0.758791,0.800009,0.456658,0.292363,0.740675,0.453262,0.371602,0.501372,0.300793,0.529689,0.749654,0.81076,0.839998,0.477534,0.578904,0.857665,0.920694,0.833334,0.20373,0.923023,0.829985,0.196785,0.254706,0.42014,0.242915,0.897014,0.0664515,0.424368,0.614211,0.136845,0.903905,0.46729,0.81667,0.288545,0.0220232,0.0272922,0.268337,0.700112,0.030334,0.726188,0.625002,0.151625,0.855776,0.727591,0.172636,0.0356135,0.765732,0.492551,0.238295,0.291808,0.936155,0.798392,0.48191,0.935636,0.2999,0.520458,0.512729,0.839874,0.19987,0.955833,0.980866,0.109543,0.859679,0.0700836,0.541531,0.857583,0.698744,0.647705,0.30903,0.59189,0.969467,0.447423,0.698137,0.358017,0.29891,0.842776,0.218446,0.128984,0.324508,0.140296,0.692154,0.575155,0.675821,0.105926,0.943845,0.0839362,0.629926,0.975624,0.582809,0.0252076,0.533511,0.451575,0.763766,0.494891,0.270977,0.915295,0.457251,0.176596,0.899913,0.829484,0.0565665,0.749217,0.293317,0.923315,0.500678,0.990121,0.42667,0.645769,0.660619,0.950813,0.786617,0.478322,0.27496,0.37054,0.40195,0.432832,0.836541,0.908951,0.481438,0.469896,0.0755798,0.884572,0.959513,0.255573,0.444636,0.638584,0.633885,0.170768,0.505841,0.764316,0.716042,0.949001,0.822223,0.852235,0.822201,0.865535,0.322812,0.37302,0.596797,0.313836,0.489302,0.923649,0.199534,0.775648,0.463716,0.915063,0.216857,0.805295,0.269239,0.528662,0.982572,0.0670305,0.614347,0.0752149,0.440331,0.246012,0.730848,0.999522,0.687464,0.751111,0.832653,0.456391,0.890804,0.710008,0.367738,0.489159,0.716777,0.980516,0.686505,0.776932,0.274346,0.4228,0.197943,0.984321,0.726784,0.287671,0.984086,0.519323,0.431519,0.244618,0.490175,0.607754,0.710666,0.468936,0.837222,0.559925,0.806016,0.319329,0.705366,0.820124,0.380156,0.561796,0.0114095,0.327478,0.872143,0.826291,0.955995,0.269197,0.437532,0.597053,0.287134,0.778089,0.489895,0.477807,0.55052,0.329495,0.0491159,0.662074,0.434832,0.185404,0.632812,0.99922,0.695365,0.156455,0.839784,0.45778,0.572289,0.208777,0.197959,0.620987,0.95812,0.858148,0.354114,0.750434,0.770431,0.68269,0.321316,0.779746,0.873121,0.0337901,0.524977,0.924564,0.495876,0.203694,0.0534921,0.197591,0.089112,0.241223,0.948828,0.0172541,0.262966,0.0981814,0.681732,0.40067,0.444349,0.260176,0.668128,0.0612721,0.248592,0.880997,0.178597,0.974599,0.758139,0.19924,0.245647,0.220073,0.701457,0.0590113,0.311356,0.59018,0.411708,0.182794,0.0689515,0.859551,0.64762,0.43557,0.449707,0.27771,0.177846,0.592373,0.151776,0.157041,0.646798,0.0867752,0.556944,0.614492,0.741514,0.000230908,0.357425,0.599905,0.014994,0.215845,0.726688,0.366857,0.617531,0.752786,0.743647,0.375414,0.0333004,0.64225,0.644247,0.794489,0.684818,0.0305422,0.466045,0.955408,0.481508,0.557292,0.407106,0.844943,0.676455,0.430484,0.568811,0.59645,0.487521,0.151356,0.834621,0.63042,0.502436,0.11634,0.921949,0.394303,0.0224432,0.410423,0.551054,0.204558,0.178485,0.987516,0.137209,0.991117,0.825398,0.847446,0.596245,0.685016,0.29799,0.454742,0.679847,0.113747,0.822066,0.647696,0.585088,0.526702,0.955337,0.40981,0.578268,0.424448,0.0962604,0.233704,0.70108,0.939705,0.186149,0.285837,0.0636665,0.377929,0.456853,0.703932,0.951641,0.57851,0.490432,0.0247554,0.191848,0.0581979,0.705056,0.889135,0.903026,0.650555,0.766596,0.808878,0.730304,0.670414,0.355467,0.612569,0.215703,0.568536,0.373123,0.330588,0.106833,0.385373,0.752957,0.597942,0.45259,0.726816,0.806509,0.839274,0.908291,0.918882,0.501129,0.344987,0.552299,0.183039,0.375203,0.77192,0.462315,0.49564,0.276279,0.571221,0.721679,0.746206,0.752036,0.989868,0.786677,0.813619,0.851458,0.00583923,0.0610469,0.11018,0.994715,0.68334,0.142798,0.0882344,0.981644,0.236819,0.429976,0.97592,0.250533,0.89351,0.732912,0.596816,0.948329,0.94702,0.317012,0.461427,0.429187,0.966781,0.469682,0.91164,0.776844,0.498915,0.478767,0.401608,0.521838,0.11322,0.27388,0.59369,0.690628,0.566038,0.636299,0.029379,0.671119,0.590771,0.144852,0.452526,0.296399,0.991356,0.657098,0.975471,0.203341,0.812665,0.902718,0.790245,0.0249313,0.264195,0.442343,0.802203,0.855361,0.343256,0.372646,0.30935,0.250819,0.583407,0.587678,0.610174,0.451209,0.45251,0.85952,0.943599,0.399116,0.769781,0.855981,0.514312,0.428707,0.864357,0.19713,0.89207,0.135333,0.488788,0.134355,0.7264,0.89374,0.0926688,0.502054,0.309234,0.151207,0.454921,0.956616,0.498041,0.401508,0.311161,0.734506,0.737051,0.915957,0.911014,0.874587,0.158224,0.395408,0.324617,0.663799,0.31295,0.835913,0.586459,0.900414,0.827756,0.0473986,0.895103,0.937798,0.0481138,0.0250331,0.877729,0.452507,0.0897668,0.926395,0.0958326,0.607685,0.63971,0.81263,0.560799,0.524983,0.132034,0.461907,0.21331,0.82252,0.946348,0.286805,0.0740359,0.415698,0.461533,0.0991126,0.0654336,0.895939,0.370919,0.124967,0.670706,0.609553,0.0980237,0.574455,0.193769,0.527283,0.595453,0.679356,0.942938,0.960231,0.187555,0.547156,0.63978,0.165947,0.0218159,0.983281,0.4063,0.825399,0.513646,0.283781,0.0838989,0.377688,0.549319,0.108423,0.223522,0.637492,0.799357,0.083767,0.20249,0.213946,0.722133,0.0653591,0.271188,0.791168,0.387495,0.273249,0.211749,0.70124,0.142724,0.0895225,0.0407156,0.682797,0.160751,0.115183,0.652943,0.975097,0.161412,0.85872,0.45149,0.245952,0.155158,0.622334,0.465379,0.413561,0.495369,0.261577,0.0368555,0.0331245,0.851559,0.423975,0.737367,0.0841338,0.230098,0.0212572,0.122623,0.0369419,0.632845,0.431046,0.7466,0.00198686,0.661898,0.0954311,0.739395,0.584586,0.95926,0.691814,0.721533,0.109462,0.634733,0.194456,0.537342,0.98764,0.701449,0.364606,0.119847,0.759154,0.714941,0.922877,0.414009,0.499845,0.0653963,0.760766,0.138353,0.728863,0.541935,0.433243,0.506484,0.869313,0.722625,0.847977,0.893219,0.563056,0.794063,0.771616,0.400056,0.0670153,0.349011,0.316588,0.150703,0.435294,0.381372,0.0925229,0.647619,0.163048,0.111903,0.904895,0.639252,0.977623,0.852529,0.10741,0.848172,0.92118,0.582406,0.187942,0.735174,0.88153,0.148887,0.291881,0.765263,0.978201,0.314691,0.976993,0.805221,0.986956,0.971195,0.648635,0.0997909,0.748329,0.417851,0.542366,0.664118,0.56778,0.889639,0.00441855,0.816677,0.229726,0.719686,0.312534,0.679705,0.963875,0.346717,0.997878,0.825891,0.743381,0.297129,0.968447,0.578922,0.734179,0.305295,0.410621,0.738393,0.278316,0.436238,0.774446,0.291641,0.972319,0.739195,0.806265,0.321102,0.0212817,0.149415,0.12318,0.609584,0.878908,0.150461,0.224147,0.749112,0.947534,0.683178,0.201579,0.645218,0.559112,0.626774,0.00883812,0.56215,0.413899,0.840511,0.0940463,0.0262021,0.0488496,0.994128,0.750118,0.383912,0.696977,0.837448,0.762403,0.474663,0.12618,0.94517,0.185283,0.963231,0.0783076,0.759185,0.0020951,0.458477,0.938159,0.405292,0.678726,0.415379,0.0911189,0.148009,0.296032,0.77627,0.261286,0.995204,0.341473,0.0547473,0.292887,0.84609,0.25253,0.742842,0.738705,0.883655,0.699034,0.471764,0.0899058,0.289446,0.665894,0.400275,0.980168,0.319311,0.486615,0.167575,0.115548,0.508297,0.376665,0.814577,0.536793,0.0400798,0.634766,0.411077,0.0790955,0.584298,0.459764,0.548792,0.41539,0.690252,0.818972,0.568945,0.00626343,0.767311,0.417719,0.616435,0.925932,0.520253,0.588089,0.627604,0.120934,0.504913,0.912985,0.584232,0.397396,0.439862,0.286863,0.0871023,0.38765,0.229734,0.430064,0.866133,0.192088,0.231771,0.68609,0.97096,0.0345485,0.444012,0.559174,0.28143,0.265965,0.145418,0.776669,0.739505,0.488894,0.0605153,0.383529,0.885674,0.939607,0.669947,0.398551,0.893504,0.327748,0.411564,0.978705,0.556862,0.151778,0.230475,0.941447,0.373216,0.834185,0.835079,0.0963609,0.560649,0.192777,0.543253,0.914412,0.845897,0.210055,0.126876,0.571061,0.749867,0.266711,0.556826,0.775123,0.987317,0.328193,0.812907,0.616319,0.84735,0.781218,0.515501,0.707871,0.865837,0.511074,0.823274,0.80531,0.0451078,0.0557434,0.215566,0.0657699,0.413266,0.372064,0.906677,0.364718,0.5546,0.59605,0.245393,0.160469,0.64909,0.241364,0.290112,0.638203,0.321483,0.486349,0.7626,0.538118,0.611576,0.235012,0.450664,0.62238,0.350846,0.958462,0.00473148,0.769604,0.510484,0.637122,0.217055,0.297711,0.393784,0.336401,0.908058,0.018469,0.863483,0.112747,0.983817,0.0949506,0.815116,0.32015,0.785855,0.360347,0.505337,0.332794,0.429898,0.0980731,0.564762,0.0611469,0.0264007,0.496882,0.362523,0.40257,0.94518,0.525524,0.0702593,0.859359,0.627894,0.518193,0.514714,0.0824094,0.398099,0.686473,0.606892,0.191262,0.0953062,0.813469,0.774084,0.200929,0.994682,0.443291,0.469104,0.122209,0.848724,0.974917,0.420124,0.247798,0.616744,0.071004,0.712224,0.0263728,0.896728,0.621987,0.0754831,0.577514,0.720039,0.482533,0.296232,0.491251,|0.434947,0.309498,0.352997,0.813444,0.544785,0.436914,0.291307,0.190596,0.0643705,0.763011,0.195256,0.998351,0.973784,0.0574781,0.716835,0.109218,0.124034,0.048273,0.444864,0.929937,0.0446877,0.419101,0.498842,0.639327,0.00243074,0.743073,0.203507,0.721859,0.0921149,0.829594,0.0438492,0.51763,0.753119,0.160575,0.918995,0.97681,0.606811,0.405973,0.0899388,0.935327,0.921394,0.465437,0.843282,0.534703,0.502903,0.712468,0.173029,0.636044,0.158831,0.324653,0.286912,0.351453,0.732662,0.867326,0.755601,0.666896,0.958856,0.0713032,0.917693,0.117255,0.952963,0.38301,0.81265,0.350145,0.41715,0.607493,0.630215,0.339814,0.777133,0.205481,0.565048,0.8628,0.356933,0.287248,0.630499,0.72232,0.224631,0.452524,0.156776,0.310561,0.761856,0.181226,0.406655,0.771863,0.066976,0.821678,0.954471,0.347633,0.767513,0.725034,0.460823,0.211956,0.225133,0.0517666,0.308438,0.105403,0.592743,0.623544,0.00281119,0.680361,0.195931,0.373227,0.869574,0.676174,0.248421,0.866508,0.170286,0.506374,0.854501,0.744962,0.857039,0.906817,0.0522195,0.799211,0.870984,0.786961,0.246425,0.643273,0.964679,0.404372,0.859666,0.667101,0.912064,0.775304,0.256064,0.783722,0.819481,0.911153,0.308171,0.810777,0.106907,0.531441,0.373487,0.0605977,0.199061,0.790335,0.593585,0.12416,0.689464,0.36788,0.784977,0.432145,0.908675,0.0113074,0.526793,0.993979,0.0955487,0.930154,0.118453,0.731486,0.0414433,0.734619,0.401096,0.516052,0.134317,0.76402,0.0250758,0.91359,0.782641,0.432334,0.438304,0.729667,0.647623,0.681018,0.882775,0.785672,0.907624,0.355247,0.61765,0.182474,0.523744,0.553228,0.403456,0.928892,0.105815,0.984896,0.315835,0.490865,0.305651,0.413776,0.623281,0.687087,0.679005,0.763874,0.471682,0.113042,0.973978,0.118867,0.116332,0.00694853,0.680634,0.768262,0.264443,0.755279,0.253681,0.963344,0.918363,0.363385,0.701994,0.0468067,0.298122,0.0453599,0.152881,0.241738,0.535013,0.701453,0.992075,0.941701,0.740268,0.870922,0.455478,0.295334,0.622025,0.385782,0.941563,0.947304,0.105694,0.21156,0.299316,0.0745953,0.373383,0.924604,0.605572,0.897412,0.32282,0.341317,0.259324,0.266627,0.26326,0.171314,0.200881,0.710446,0.545759,0.0752736,0.928135,0.389187,0.956564,0.720157,0.761294,0.334153,0.349586,0.119584,0.746379,0.878473,0.254301,0.54313,0.247641,0.445975,0.57495,0.850888,0.568272,0.198676,0.28534,0.759908,0.702508,0.428011,0.326724,0.949918,0.47905,0.741359,0.920243,0.00939918,0.773266,0.249197,0.154035,0.130016,0.795052,0.125654,0.015114,0.0191144,0.77443,0.607005,0.399102,0.371995,0.2965,0.408583,0.730781,0.510186,0.520453,0.25201,0.0736117,0.626599,0.528562,0.214522,0.586467,0.273519,0.387665,0.827506,0.613597,0.194868,0.317741,0.46925,0.698674,0.271748,0.942038,0.837741,0.292143,0.994766,0.714604,0.55406,0.572382,0.304563,0.0911857,0.263627,0.293457,0.961715,0.760036,0.991003,0.13671,0.42728,0.257772,0.577936,0.567631,0.930397,0.160705,0.707011,0.947746,0.877563,0.012615,0.177753,0.265547,0.34203,0.74297,0.593948,0.217109,0.74498,0.344612,0.93599,0.838469,0.633587,0.535451,0.97425,0.834266,0.0690036,0.185227,0.26403,0.471916,0.688388,0.412186,0.193702,0.429883,0.843516,0.883831,0.789971,0.248274,0.828291,0.809605,0.578917,0.118743,0.750678,0.800072,0.86893,0.402541,0.0679964,0.163108,0.225607,0.557311,0.656941,0.158492,0.0432408,0.493457,0.287437,0.568188,0.756171,0.830384,0.157669,0.442476,0.508284,0.140086,0.120847,0.682646,0.413811,0.829627,0.204831,0.97873,0.979916,0.408265,0.300885,0.22829,0.480939,0.83954,0.998026,0.697743,0.203203,0.371474,0.509106,0.889982,0.94649,0.706991,0.725523,0.969237,0.844817,0.323955,0.30455,0.825195,0.427819,0.368904,0.822839,0.319665,0.658058,0.989254,0.247747,0.651057,0.626242,0.358201,0.597792,0.60144,0.13102,0.66096,0.512894,0.749301,0.630991,0.684237,0.559519,0.143367,0.0148059,0.336467,0.478747,0.491379,0.0121955,0.0760634,0.907388,0.932263,0.265921,0.902378,0.785466,0.133985,0.696445,0.592203,0.0952647,0.672765,0.951084,0.742977,0.651314,0.823172,0.40445,0.471977,0.191231,0.0233947,0.415707,0.389257,0.839857,0.122061,0.144419,0.571489,0.889389,0.688773,0.555319,0.944816,0.180593,0.555426,0.34556,0.162861,0.287843,0.321463,0.533188,0.929509,0.131057,0.967604,0.789673,0.530008,0.877565,0.45445,0.412638,0.652752,0.387324,0.0101515,0.253638,0.0780423,0.096672,0.378542,0.760698,0.852207,0.523611,0.976425,0.411263,0.363607,0.749447,0.409805,0.28283,0.885243,0.870396,0.147549,0.108934,0.73022,0.249777,0.114371,0.740198,0.212573,0.159717,0.846139,0.205207,0.497228,0.170336,0.444013,0.058126,0.18568,0.354942,0.116818,0.0156444,0.288429,0.969664,0.185034,0.947425,0.196522,0.601409,0.972412,0.535294,0.0685602,0.827326,0.68746,0.507767,0.0593517,0.257768,0.454042,0.849233,0.548673,0.255629,0.743551,0.832002,0.0502178,0.870313,0.708589,0.531104,0.225314,0.352156,0.966735,0.725201,0.992999,0.0362,0.537124,0.30442,0.930997,0.0553239,0.413428,0.977467,0.60161,0.0181938,0.111759,0.100695,0.496667,0.187324,0.960628,0.993258,0.283678,0.435965,0.827874,0.238571,0.139631,0.505106,0.43508,0.017732,0.986987,0.87196,0.340328,0.0720799,0.247738,0.0446141,0.858002,0.375684,0.837367,0.08832,0.242575,0.292883,0.558688,0.290891,0.994297,0.171554,0.91252,0.593202,0.913004,0.178081,0.0643303,0.110423,0.656856,0.878262,0.845839,0.504257,0.620529,0.871914,0.758546,0.0563762,0.317586,0.492649,0.333788,0.0144466,0.80444,0.443564,0.637429,0.620815,0.389464,0.0187969,0.459,0.710468,0.970346,0.679372,0.494351,0.472944,0.108853,0.100974,0.453819,0.908239,0.821785,0.383525,0.27312,0.360723,0.481414,0.716131,0.571898,0.201257,0.812212,0.655412,0.832696,0.571101,0.342932,0.626827,0.875305,0.533176,0.877494,0.370836,0.203976,0.247253,0.236205,0.558964,0.480836,0.244095,0.479365,0.479148,0.902855,0.447942,0.228349,0.209381,0.0214256,0.631511,0.642745,0.841052,0.570121,0.509917,0.495829,0.936016,0.202831,0.060173,0.4696,0.997194,0.748324,0.44697,0.342337,0.561896,0.242774,0.796127,0.446958,0.326523,0.610962,0.847092,0.0634894,0.57362,0.939255,0.107138,0.350685,0.933115,0.360536,0.149811,0.968087,0.797721,0.727486,0.328092,0.821084,0.87506,0.309311,0.192161,0.62373,0.452556,0.335567,0.991438,0.504771,0.301551,0.598448,0.671401,0.215475,0.661325,0.971578,0.290328,0.398303,0.973898,0.720413,0.730852,0.1444,0.453245,0.510291,0.797149,0.736341,0.571184,0.464671,0.388798,0.978328,0.896467,0.151803,0.761482,0.318439,0.776456,0.628125,0.704742,0.0762643,0.0252352,0.295183,0.995926,0.624148,0.0549125,0.752635,0.883395,0.00234336,0.535491,0.703117,0.116613,0.727267,0.960488,0.411052,0.508254,0.267667,0.151892,0.765165,0.754641,0.861621,0.870018,0.602828,0.562065,0.15895,0.215855,0.28951,0.935082,0.155394,0.642533,0.75576,0.883647,0.779781,0.909595,0.941884,0.843302,0.557241,0.324538,0.578971,0.954937,0.980332,0.831611,0.0697248,0.0605919,0.598495,0.679751,0.601076,0.621725,0.776995,0.507796,0.534813,0.801255,0.960743,0.277833,0.795737,0.954219,0.149275,0.446031,0.857202,0.240832,0.855795,0.465446,0.962086,0.801828,0.277675,0.961717,0.95007,0.377316,0.577048,0.736099,0.403836,0.373152,0.294658,0.0379812,0.204135,0.470235,0.163954,0.621519,0.527196,0.851446,0.675349,0.514476,0.0177491,0.76932,0.17967,0.516671,0.589355,0.252098,0.00565743,0.686124,0.43851,0.276325,0.0567461,0.0465471,0.238015,0.307014,0.500089,0.733045,0.486224,0.0719384,0.23478,0.53027,0.020795,0.245234,0.107053,0.93169,0.202025,0.469305,0.2439,0.939665,0.0747405,0.627276,0.105898,0.873943,0.0698888,0.41618,0.651511,0.441747,0.316602,0.64926,0.745321,0.497574,0.725331,0.270521,0.885214,0.356099,0.72457,0.554386,0.0104154,0.814862,0.618127,0.303853,0.721291,0.380488,0.301403,0.303184,0.97512,0.330089,0.907027,0.539466,0.233292,0.409337,0.718635,0.607338,0.588922,0.246494,0.801367,0.627371,0.560558,0.412697,0.563364,0.572024,0.723817,0.44503,0.0625797,0.0416245,0.437528,0.196877,0.576926,0.20785,0.288383,0.778218,0.0626546,0.682094,0.888019,0.759369,0.0257072,0.918618,0.312376,0.263719,0.354596,0.663794,0.78302,0.728501,0.0775757,0.555391,0.262789,0.799211,0.549749,0.34489,0.81743,0.760986,0.707928,0.863124,0.74072,0.577767,0.12125,0.32859,0.0381007,0.462686,0.128099,0.892725,0.917619,0.672946,0.526876,0.102479,0.0555951,0.646479,0.0296788,0.0162036,0.201195,0.493473,0.372756,0.0376479,0.472936,0.839163,0.813987,0.683586,0.837516,0.631512,0.138155,0.52049,0.968606,0.432956,0.9825,0.419081,0.289904,0.0531034,0.137844,0.678865,0.858558,0.868814,0.886104,0.528545,0.310279,0.784007,0.97477,0.61855,0.74501,0.640401,0.64217,0.601291,0.899882,0.0188252,0.141401,0.968416,0.373536,0.479944,0.031679,0.168895,0.485387,0.610895,0.254419,0.604326,0.780825,0.65267,0.140139,0.898943,0.358224,0.292127,0.938841,0.767309,0.907308,0.247864,0.927096,0.281021,0.726962,0.577611,0.492408,0.435459,0.688589,0.910368,0.887131,0.0590728,0.964263,0.241172,0.137764,0.272254,0.964006,0.227231,0.745516,0.375938,0.657723,0.0175129,0.351019,0.572817,0.521482,0.471925,0.521504,0.150334,0.00108296,0.00393659,0.93389,0.3931,0.172299,0.971057,0.408111,0.693707,0.711818,0.474477,0.121906,0.200125,0.237233,0.27347,0.246183,0.91248,0.972062,0.985516,|0.242157,0.251189,0.187776,0.161235,0.834456,0.375498,0.568677,0.769,0.835433,0.881973,0.0852023,0.305966,0.638875,0.489799,0.825855,0.27325,0.681637,0.788427,0.673423,0.21379,0.582706,0.340221,0.758196,0.596594,0.3938,0.954701,0.526513,0.668865,0.547324,0.948838,0.976065,0.952725,0.403712,0.994019,0.448226,0.702905,0.589993,0.104167,0.819202,0.39321,0.747208,0.010316,0.400257,0.929996,0.948593,0.591541,0.897927,0.251343,0.232314,0.547691,0.692532,0.693705,0.878708,0.516774,0.802542,0.401195,0.537975,0.131774,0.343532,0.100636,0.623537,0.467696,0.778101,0.440723,0.745864,0.581808,0.303896,0.131383,0.964792,0.288811,0.863033,0.802294,0.202895,0.187453,0.306823,0.771276,0.977309,0.173662,0.39135,0.243217,0.561801,0.990248,0.577987,0.608974,0.272898,0.367954,0.474328,0.255562,0.480078,0.0373858,0.270801,0.725109,0.586996,0.46015,0.317341,0.899799,0.205015,0.592005,0.931189,0.397488,0.00270689,0.269405,0.85904,0.188922,0.599292,0.887901,0.304477,0.318543,0.0121712,0.125026,0.404513,0.780805,0.324702,0.874514,0.694218,0.10469,0.875259,0.172856,0.858381,0.979549,0.781835,0.877424,0.770568,0.667618,0.390391,0.862329,0.0750329,0.596064,0.0277982,0.440911,0.0938053,0.929152,0.603105,0.522159,0.668419,0.17083,0.794963,0.51355,0.123689,0.207207,0.828598,0.492182,0.135153,0.602282,0.883251,0.78146,0.891787,0.777164,0.856655,0.160226,0.902371,0.657062,0.866339,0.89787,0.00201529,0.400208,0.429588,0.560401,0.732014,0.648586,0.429191,0.788416,0.598383,0.0460932,0.500955,0.652068,0.341877,0.484849,0.421786,0.677484,0.39331,0.231766,0.467336,0.359774,0.702501,0.26982,0.271287,0.449341,0.529736,0.675887,0.408309,0.635169,0.145977,0.433476,0.728762,0.541068,0.345847,0.108169,0.967959,0.781172,0.781798,0.307569,0.291428,0.491595,0.133249,0.312473,0.585615,0.577169,0.123718,0.0660381,0.349558,0.856272,0.952925,0.495713,0.51828,0.225173,0.533208,0.0879987,0.619134,0.891359,0.303937,0.981301,0.412897,0.477577,0.838878,0.533574,0.626088,0.159854,0.563928,0.187752,0.308686,0.588399,0.72607,0.900838,0.419527,0.2122,0.870628,0.802275,0.349825,0.941987,0.909933,0.883736,0.740961,0.257571,0.420671,0.180111,0.925089,0.890099,0.151268,0.916483,0.20009,0.771825,0.688808,0.613031,0.847872,0.193231,0.28294,0.0657561,0.29419,0.849452,0.439271,0.671571,0.345281,0.260996,0.0232871,0.788881,0.648671,0.524647,0.514089,0.239695,0.0579874,0.810428,0.84543,0.0913326,0.947916,0.0128765,0.764523,0.165148,0.424294,0.409872,0.540916,0.949637,0.495347,0.620082,0.892721,0.099504,0.595381,0.319171,0.897335,0.0999029,0.348836,0.281457,0.848477,0.305084,0.136316,0.0790714,0.132338,0.936468,0.184676,0.264426,0.388606,0.894958,0.155009,0.105141,0.456398,0.0570143,0.537654,0.675779,0.715055,0.0416435,0.26454,0.981073,0.402872,0.278553,0.892702,0.945501,0.755015,0.544346,0.340434,0.59238,0.918103,0.216505,0.942848,0.98825,0.993256,0.846673,0.928539,0.146549,0.263408,0.98374,0.0952309,0.0328724,0.527445,0.274534,0.213399,0.939141,0.678311,0.393647,0.171777,0.296613,0.153371,0.542046,0.921473,0.679616,0.0819957,0.697731,0.651146,0.93702,0.711638,0.155316,0.276349,0.659362,0.000950038,0.0272176,0.147007,0.766652,0.26258,0.92439,0.123021,0.231577,0.20743,0.281176,0.196696,0.96166,0.816612,0.700535,0.0169867,0.970887,0.2585,0.755436,0.303138,0.863958,0.790193,0.689078,0.66257,0.451463,0.773338,0.11573,0.66311,0.56152,0.215904,0.13626,0.503888,0.680476,0.50589,0.99284,0.777518,0.487193,0.211328,0.475994,0.160174,0.621752,0.604194,0.947863,0.398643,0.763001,0.152756,0.258953,0.519887,0.227032,0.822905,0.174728,0.662155,0.0777043,0.290301,0.446505,0.982363,0.072212,0.230987,0.0820944,0.201089,0.570293,0.778514,0.450451,0.37802,0.712141,0.593537,0.610483,0.48035,0.937825,0.917617,0.707817,0.30377,0.21856,0.442779,0.259459,0.226154,0.395895,0.882492,0.601167,0.556325,0.135733,0.81441,0.591037,0.4051,0.527184,0.813384,0.271776,0.829632,0.218157,0.184329,0.639707,0.394861,0.732099,0.421414,0.355107,0.663634,0.923513,0.860237,0.0995906,0.985003,0.0788735,0.639546,0.0805304,0.231158,0.611161,0.405434,0.606386,0.895991,0.00339818,0.530095,0.661401,0.266273,0.578456,0.19729,0.353494,0.146282,0.510858,0.590502,0.851775,0.70785,0.712694,0.094611,0.135745,0.518252,0.763443,0.66899,0.366767,0.955861,0.204513,0.313687,0.89345,0.095145,0.802181,0.0707766,0.24606,0.677742,0.697545,0.284065,0.423647,0.220676,0.36324,0.853594,0.84822,0.91718,0.599205,0.784999,0.105172,0.541171,0.771003,0.0151411,0.33179,0.499264,0.863313,0.71468,0.222224,0.943083,0.45728,0.29296,0.691993,0.0831236,0.740892,0.735588,0.480978,0.992215,0.685633,0.49305,0.633981,0.163152,0.525399,0.364889,0.239781,0.252292,0.534602,0.155604,0.00560141,0.906214,0.302265,0.969279,0.416951,0.42057,0.946822,0.985752,0.598476,0.247682,0.93717,0.971069,0.993275,0.368692,0.766795,0.429085,0.176156,0.515131,0.220648,0.586374,0.110473,0.59142,0.297116,0.082081,0.843867,0.564052,0.726278,0.50874,0.440635,0.530407,0.658516,0.229848,0.273525,0.327973,0.313688,0.382994,0.344058,0.475388,0.0258768,0.978857,0.376252,0.530661,0.694262,0.0884774,0.891127,0.862353,0.510024,0.09895,0.227462,0.132657,0.865485,0.838062,0.958846,0.439041,0.576694,0.205674,0.441288,0.799873,0.704265,0.782702,0.100834,0.933926,0.0344707,0.489273,0.898479,0.380869,0.821138,0.937198,0.198452,0.773936,0.307191,0.97594,0.762406,0.263814,0.557929,0.0764323,0.269564,0.443933,0.665405,0.984377,0.97581,0.25952,0.880736,0.86286,0.27597,0.0193338,0.435107,0.429155,0.791845,0.220721,0.726179,0.693459,0.248391,0.444897,0.116235,0.957024,0.36739,0.391874,0.514299,0.502212,0.574662,0.688585,0.645101,0.530037,0.595788,0.104816,0.872984,0.134426,0.580898,0.622322,0.660032,0.334674,0.839516,0.747209,0.0482051,0.877085,0.539289,0.459845,0.209566,0.974844,0.957583,0.187315,0.638111,0.595052,0.566183,0.375045,0.852167,0.692695,0.225938,0.597711,0.771364,0.12956,0.783961,0.40634,0.0340253,0.792895,0.768807,0.324034,0.62764,0.928873,0.920543,0.799931,0.19769,0.400333,0.651246,0.407104,0.455294,0.351667,0.229877,0.776105,0.159462,0.53285,0.613211,0.67189,0.30587,0.145711,0.123424,0.993391,0.113494,0.521281,0.85488,0.0768818,0.542814,0.692577,0.268657,0.220009,0.691546,0.411134,0.0141627,0.737479,0.452291,0.365004,0.546973,0.807154,0.882174,0.651198,0.373825,0.395738,0.936786,0.992172,0.409194,0.605273,0.749706,0.952511,0.442932,0.637223,0.163868,0.351699,0.255093,0.858541,0.184241,0.115323,0.829556,0.466455,0.162116,0.427031,0.562681,0.815794,0.963945,0.674828,0.325349,0.578983,0.791044,0.435864,0.0584882,0.338882,0.808691,0.524797,0.522817,0.565429,0.550017,0.883995,0.349413,0.05174,0.408657,0.695772,0.222771,0.00265104,0.0965749,0.488624,0.328792,0.266349,0.925123,0.764711,0.131745,0.779396,0.824732,0.572954,0.108308,0.297977,0.941413,0.0195492,0.569968,0.729385,0.892408,0.809984,0.505168,0.175042,0.1033,0.998995,0.163766,0.117605,0.00860459,0.246713,0.645604,0.203957,0.54499,0.324852,0.76613,0.499413,0.35113,0.576232,0.62466,0.798908,0.599106,0.248465,0.382086,0.697859,0.774645,0.135823,0.813944,0.618185,0.679721,0.608351,0.24419,0.181333,0.308015,0.16158,0.998702,0.0184864,0.00503075,0.0207691,0.926721,0.559048,0.69075,0.653534,0.120774,0.851194,0.00062114,0.0413219,0.433839,0.50696,0.498441,0.164553,0.308856,0.865421,0.672497,0.418975,0.662183,0.0300234,0.394189,0.223837,0.856215,0.141301,0.52155,0.196276,0.266612,0.130506,0.631859,0.707921,0.913832,0.40372,0.481759,0.587237,0.23385,0.928397,0.522886,0.449188,0.015679,0.170458,0.270126,0.781887,0.251711,0.294757,0.968234,0.134538,0.93353,0.953324,0.353302,0.176918,0.148618,0.233564,0.0529127,0.481205,0.889882,0.966384,0.2829,0.268162,0.301754,0.827606,0.988841,0.864615,0.757932,0.478642,0.0851231,0.770111,0.891845,0.311935,0.219825,0.65941,0.00633794,0.708227,0.764338,0.42811,0.651954,0.731543,0.987465,0.0439874,0.401744,0.911064,0.805036,0.531322,0.368027,0.289513,0.274187,0.538485,0.0196739,0.192496,0.0189662,0.736445,0.474909,0.220302,0.418913,0.525412,0.165276,0.912194,0.709953,0.351178,0.398486,0.757839,0.191616,0.8132,0.530658,0.872234,0.199401,0.479645,0.633044,0.75006,0.758247,0.0633759,0.145404,0.515302,0.0498928,0.953859,0.588992,0.539047,0.959979,0.209419,0.742598,0.494603,0.7838,0.158638,0.174731,0.276514,0.11046,0.497385,0.722429,0.740022,0.63373,0.781864,0.893981,0.602115,0.251254,0.0308499,0.393251,0.474261,0.623213,0.347883,0.734913,0.955531,0.202766,0.799736,0.576162,0.46692,0.179222,0.352989,0.314667,0.273521,0.229392,0.704319,0.0202784,0.132691,0.118035,0.889878,0.29168,0.856347,0.716,0.949656,0.875147,0.13164,0.661189,0.294673,0.428516,0.825107,0.801107,0.609044,0.294763,0.250129,0.438314,0.672555,0.280669,0.822615,0.785222,0.750872,0.534356,0.294042,0.684111,0.300681,0.645781,0.8825,0.670477,0.869674,0.21707,0.749567,0.377109,0.0414268,0.0121883,0.635926,0.809629,0.992646,0.324038,0.659572,0.974543,0.680695,0.453394,0.308452,0.221433,0.571108,0.525029,0.600395,0.459772,0.940103,0.816765,0.881117,0.728503,0.330362,0.170492,0.682037,0.256524,0.60887,0.36612,0.583605,0.791886,0.515597,0.417226,|0.913781,0.554627,0.212195,0.764267,0.963767,0.86048,0.151038,0.308952,0.909376,0.510127,0.920976,0.269168,0.254021,0.104699,0.344693,0.0535001,0.021238,0.989806,0.58705,0.0260305,0.422004,0.907472,0.124171,0.280704,0.678541,0.792049,0.00433689,0.335836,0.179996,0.75795,0.891808,0.926065,0.197407,0.162986,0.873629,0.0494459,0.597799,0.612495,0.991915,0.921355,0.890473,0.0641325,0.837266,0.879966,0.549988,0.370055,0.0132454,0.561635,0.616296,0.835403,0.296076,0.549784,0.65158,0.715115,0.349275,0.0950991,0.151413,0.391822,0.87349,0.275499,0.695234,0.769672,0.245154,0.520344,0.191132,0.160381,0.887359,0.430281,0.349674,0.241778,0.759362,0.870038,0.061688,0.69916,0.409823,0.975441,0.376656,0.17466,0.70058,0.594955,0.0129748,0.00868851,0.601265,0.461597,0.580712,0.34773,0.209758,0.475055,0.740439,0.817358,0.632487,0.720865,0.281297,0.361917,0.497891,0.527557,0.701774,0.907498,0.742495,0.797391,0.320282,0.951122,0.717654,0.935605,0.644631,0.455755,0.842405,0.927491,0.947832,0.446586,0.318186,0.956028,0.679831,0.767402,0.747382,0.587655,0.057101,0.958961,0.93236,0.586346,0.186637,0.500823,0.22141,0.571995,0.573082,0.39386,0.333518,0.674583,0.00912297,0.371749,0.147495,0.528811,0.918125,0.155138,0.784152,0.406421,0.953513,0.172499,0.463678,0.658921,0.365084,0.920562,0.226605,0.616748,0.77682,0.35566,0.254007,0.0627204,0.750181,0.841382,0.0158918,0.783379,0.0355538,0.0203492,0.262362,0.830297,0.302735,0.777951,0.162485,0.179885,0.143413,0.032598,0.369956,0.220333,0.499316,0.577736,0.574374,0.00887954,0.262116,0.646421,0.0992416,0.637783,0.182458,0.117724,0.739708,0.530325,0.904913,0.319202,0.241357,0.296021,0.630893,0.45133,0.313694,0.51567,0.275181,0.841727,0.989235,0.137319,0.378766,0.260341,0.55561,0.543058,0.993514,0.647712,0.693496,0.666796,0.550864,0.00339419,0.302836,0.774129,0.986948,0.837955,0.990598,0.72233,0.162015,0.209071,0.294579,0.907506,0.819755,0.729574,0.695482,0.778419,0.290032,0.364613,0.384453,0.523246,0.827828,0.0574123,0.895087,0.281962,0.550882,0.873806,0.0594585,0.576311,0.525407,0.282845,0.0471771,0.656823,0.411681,0.426532,0.754345,0.539687,0.465478,0.232189,0.79345,0.814255,0.226108,0.592394,0.252691,0.568512,0.721021,0.474822,0.304498,0.468527,0.0802867,0.26934,0.0837539,0.610124,0.570281,0.871883,0.736921,0.173058,0.409761,0.259988,0.930842,0.364718,0.791606,0.312745,0.688218,0.413846,0.213487,0.179377,0.697283,0.407234,0.744409,0.405929,0.124268,0.205292,0.00565088,0.351959,0.22375,0.183014,0.803307,0.513071,0.41131,0.168979,0.111902,0.215849,0.0922357,0.317919,0.355778,0.579217,0.686401,0.45859,0.517467,0.517884,0.855895,0.535808,0.288567,0.639811,0.795874,0.138378,0.309794,0.97976,0.383381,0.243263,0.546012,0.655626,0.837951,0.90828,0.678845,0.539808,0.811972,0.216378,0.589722,0.17977,0.729202,0.422396,0.491463,0.167697,0.775027,0.783649,0.682769,0.24453,0.0359328,0.930087,0.721236,0.659786,0.572483,0.282071,0.78399,0.563835,0.629207,0.489827,0.86012,0.183004,0.792548,0.90316,0.117385,0.820351,0.857247,0.590629,0.71227,0.267225,0.885785,0.980007,0.191816,0.411487,0.861099,0.298152,0.530739,0.53853,0.807624,0.910936,0.749257,0.0893735,0.772187,0.805367,0.73989,0.13157,0.00798512,0.155792,0.504223,0.615487,0.762996,0.828294,0.747652,0.423485,0.837399,0.250256,0.495372,0.32698,0.412446,0.475305,0.122347,0.777634,0.314947,0.754108,0.647992,0.503406,0.693289,0.960369,0.0699605,0.145759,0.355238,0.0200815,0.545412,0.199629,0.197163,0.531509,0.033412,0.51776,0.922338,0.878777,0.956059,0.389177,0.720932,0.0207632,0.457534,0.793409,0.629478,0.733084,0.649231,0.151564,0.808888,0.53938,0.550614,0.514012,0.885065,0.283796,0.385767,0.746661,0.218147,0.917875,0.344785,0.468928,0.396,0.490363,0.374214,0.776798,0.279929,0.780311,0.335664,0.184134,0.869361,0.861318,0.185389,0.233754,0.302718,0.391182,0.7023,0.422518,0.423057,0.214244,0.267014,0.513524,0.405152,0.493085,0.985617,0.388717,0.103954,0.532517,0.0413768,0.336556,0.535356,0.0227347,0.77721,0.530329,0.646981,0.353562,0.706978,0.799187,0.401407,0.612889,0.653576,0.0763441,0.541219,0.480824,0.633511,0.884496,0.892228,0.636132,0.579047,0.989772,0.693343,0.188968,0.35298,0.487844,0.150825,0.989873,0.132691,0.228632,0.640541,0.979146,0.565409,0.963029,0.206653,0.741892,0.52248,0.293141,0.4522,0.151381,0.159378,0.587754,0.890172,0.967702,0.61154,0.522639,0.0162516,0.42445,0.92831,0.856661,0.365534,0.083632,0.316246,0.134469,0.282412,0.319486,0.500783,0.897909,0.150669,0.782284,0.317158,0.500798,0.162556,0.782307,0.420504,0.622485,0.579802,0.107254,0.315713,0.398483,0.46831,0.78935,0.847433,0.502633,0.0633513,0.961379,0.58389,0.326203,0.674648,0.213635,0.775546,0.154809,0.392257,0.996966,0.881617,0.125209,0.898441,0.795884,0.909035,0.859056,0.495984,0.462057,0.937522,0.600196,0.379582,0.951984,0.506969,0.640641,0.610091,0.343927,0.0320168,0.582745,0.646068,0.431253,0.0203966,0.719754,0.631913,0.198013,0.755633,0.494821,0.194011,0.479064,0.7227,0.85602,0.934683,0.0757756,0.0539013,0.477155,0.484702,0.847714,0.212283,0.97793,0.45114,0.703649,0.592279,0.0195273,0.143662,0.247054,0.464619,0.58099,0.348233,0.166748,0.844473,0.620646,0.335277,0.146993,0.920155,0.30789,0.71714,0.449463,0.0153064,0.733085,0.379524,0.243487,0.586367,0.417538,0.461373,0.278538,0.710441,0.856089,0.0341386,0.35668,0.622049,0.95163,0.351858,0.105025,0.206926,0.752188,0.468774,0.038681,0.937522,0.362239,0.0340438,0.820925,0.587191,0.412406,0.479122,0.958052,0.730738,0.830579,0.644139,0.212583,0.599825,0.189654,0.301665,0.844749,0.803689,0.620229,0.925461,0.125489,0.845052,0.146961,0.0624535,0.731826,0.726595,0.0975407,0.0715551,0.285649,0.102563,0.290305,0.325098,0.729992,0.0380923,0.902907,0.469435,0.663139,0.448383,0.458727,0.918411,0.7514,0.272723,0.0459875,0.678656,0.328599,0.230346,0.10412,0.35187,0.121006,0.645983,0.0883505,0.744073,0.255604,0.340251,0.828902,0.0744586,0.195489,0.613025,0.252211,0.609421,0.516211,0.798289,0.81633,0.642149,0.173268,0.118138,0.911526,0.387118,0.848126,0.911676,0.238582,0.0829314,0.379238,0.203399,0.754662,0.937556,0.548782,0.567426,0.765161,0.133459,0.701003,0.144307,0.627553,0.323035,0.596217,0.136697,0.229656,0.563074,0.330216,0.4589,0.0606773,0.175482,0.342523,0.502105,0.826831,0.464245,0.613696,0.0922109,0.540408,0.557733,0.212264,0.424724,0.923297,0.0855683,0.750354,0.263045,0.56603,0.478813,0.0359662,0.710803,0.439338,0.696232,0.736575,0.621084,0.936377,0.875609,0.801339,0.201095,0.348648,0.940752,0.910076,0.701454,0.723031,0.284367,0.478634,0.257403,0.68484,0.586028,0.040046,0.757883,0.688691,0.742154,0.806086,0.85649,0.478184,0.486812,0.869426,0.475261,0.76971,0.597292,0.10065,0.29726,0.705328,0.83221,0.272944,0.926148,0.614288,0.763577,0.326672,0.952676,0.704407,0.733514,0.595626,0.465093,0.541434,0.80479,0.313254,0.373895,0.603909,0.318721,0.106848,0.304847,0.276933,0.331241,0.40474,0.860196,0.587173,0.00361222,0.0073818,0.269211,0.684469,0.824368,0.100818,0.386175,0.450801,0.209681,0.555955,0.434065,0.62651,0.248463,0.492471,0.19659,0.366772,0.518444,0.0854885,0.12955,0.756235,0.896816,0.566616,0.680962,0.339955,0.931413,0.958134,0.53029,0.883986,0.616168,0.139279,0.911989,0.352986,0.480072,0.174569,0.633209,0.862944,0.694335,0.975074,0.107952,0.0894959,0.229749,0.993455,0.506538,0.840438,0.913984,0.212318,0.147876,0.471878,0.981051,0.748089,0.754494,0.810222,0.991888,0.0245205,0.886482,0.717726,0.721639,0.547534,0.707761,0.124565,0.75408,0.0527998,0.28484,0.254472,0.853026,0.0433953,0.326798,0.913095,0.123098,0.799783,0.114129,0.725881,0.268728,0.804241,0.336899,0.115089,0.788913,0.321981,0.381104,0.486479,0.39919,0.195718,0.129997,0.281758,0.369825,0.440985,0.00702512,0.380622,0.96988,0.313583,0.0506534,0.233002,0.560873,0.758923,0.387483,0.713363,0.576362,0.636792,0.705444,0.858425,0.751299,0.746997,0.401203,0.955957,0.945254,0.712866,0.0311553,0.227308,0.855904,0.305479,0.0858968,0.964061,0.0937623,0.28147,0.640451,0.727219,0.69743,0.734165,0.889398,0.359327,0.125085,0.464193,0.24563,0.688602,0.125104,0.972595,0.200019,0.107331,0.117228,0.103019,0.785432,0.644974,0.482025,0.953757,0.452518,0.69965,0.54432,0.243132,0.961936,0.899025,0.982755,0.562249,0.947601,0.00860131,0.583263,0.861773,0.148647,0.222047,0.794069,0.605198,0.800774,0.582697,0.340799,0.686642,0.0042159,0.953929,0.802702,0.273082,0.921741,0.140458,0.342238,0.332778,0.296006,0.0845152,0.546547,0.540567,0.406546,0.969517,0.405939,0.0307285,0.00299591,0.394199,0.620859,0.821606,0.872764,0.0825895,0.223195,0.0827026,0.415922,0.152828,0.316038,0.478335,0.573807,0.61056,0.405584,0.200062,0.885854,0.891938,0.911142,0.777463,0.959831,0.126498,0.207568,0.0192042,0.87031,0.289773,0.623722,0.567114,0.256488,0.467344,0.550008,0.216032,0.361828,0.932174,0.816341,0.288445,0.45464,0.572107,0.042632,0.953324,0.957487,0.712674,0.299708,0.547429,0.48639,0.973403,0.304164,0.666063,0.647659,0.434872,0.551803,0.467144,0.921875,0.0792326,0.288303,0.338818,0.912012,0.0315924,0.546065,0.501216,0.190493,0.772656,0.447237,0.900479,0.361087,0.175594,0.255729,0.563589,0.504374,0.498132,0.626619,0.0219971,|0.461592,0.608794,0.369966,0.590473,0.432734,0.151198,0.76586,0.530043,0.0692873,0.816316,0.582683,0.435276,0.257029,0.721073,0.808172,0.405766,0.786262,0.436855,0.507256,0.0192361,0.42731,0.236146,0.938187,0.224941,0.622141,0.946898,0.482498,0.795083,0.458766,0.401029,0.313068,0.695038,0.170314,0.240129,0.0225525,0.820151,0.210633,0.507574,0.41575,0.862004,0.735703,0.539641,0.0670291,0.087023,0.592818,0.196578,0.413675,0.636019,0.931823,0.726522,0.234504,0.180791,0.267994,0.829729,0.123365,0.964857,0.587831,0.713748,0.812594,0.638169,0.92068,0.367976,0.378075,0.778321,0.34293,0.056468,0.733291,0.946263,0.407221,0.287137,0.713447,0.404762,0.00742942,0.766462,0.746958,0.725172,0.542334,0.349744,0.0123174,0.0769159,0.0460219,0.198294,0.0972069,0.81055,0.580394,0.768641,0.152333,0.466105,0.929776,0.621761,0.80869,0.0772566,0.698486,0.16782,0.319341,0.485237,0.0592493,0.402753,0.159999,0.457805,0.264737,0.274896,0.234152,0.451852,0.82717,0.375555,0.576888,0.623033,0.490274,0.153951,0.11367,0.643621,0.0963486,0.179626,0.843037,0.310849,0.136413,0.339558,0.683126,0.789057,0.30925,0.465416,0.422594,0.692143,0.336302,0.351983,0.48485,0.994346,0.346389,0.609326,0.0127776,0.108034,0.228996,0.724244,0.94758,0.385724,0.0940461,0.372346,0.902903,0.395942,0.366465,0.04013,0.269508,0.270811,0.213129,0.250841,0.614166,0.756376,0.898089,0.424352,0.186691,0.137589,0.611612,0.128087,0.0384092,0.531296,0.92371,0.249851,0.580391,0.960112,0.531809,0.312454,0.772039,0.0606927,0.267764,0.53011,0.747154,0.114063,0.5813,0.483364,0.891827,0.595374,0.995686,0.314699,0.701609,0.959063,0.538468,0.883644,0.161312,0.0290187,0.741432,0.549052,0.221433,0.528994,0.339123,0.402325,0.269112,0.146145,0.757711,0.402736,0.0150039,0.524534,0.467781,0.995015,0.888545,0.705485,0.0629805,0.321473,0.974221,0.424342,0.108253,0.635985,0.485542,0.070425,0.0446463,0.914077,0.810903,0.213389,0.486997,0.0495651,0.703908,0.689063,0.296556,0.816523,0.0434049,0.759583,0.500608,0.18941,0.442867,0.250566,0.0518281,0.119169,0.0599545,0.62696,0.965342,0.0215157,0.796235,0.301993,0.520236,0.527937,0.190663,0.160289,0.595985,0.896385,0.00105023,0.639748,0.00577289,0.813507,0.0728645,0.314821,0.658722,0.500639,0.91462,0.852883,0.425522,0.576362,0.593994,0.233526,0.234809,0.22825,0.361238,0.471312,0.318966,0.324182,0.335951,0.75864,0.438798,0.616518,0.290805,0.935133,0.948771,0.412168,0.79792,0.517378,0.965061,0.724858,0.390918,0.289234,0.735952,0.16828,0.632699,0.264605,0.732462,0.473241,0.0495706,0.347974,0.797967,0.33305,0.248959,0.72567,0.810191,0.49089,0.00915658,0.458367,0.355585,0.390073,0.359869,0.110715,0.664876,0.0845676,0.996691,0.37719,0.80185,0.914262,0.845744,0.959037,0.729749,0.46531,0.653769,0.309715,0.923507,0.439296,0.446304,0.330673,0.116937,0.802704,0.88093,0.41033,0.555029,0.099628,0.627533,0.769609,0.58856,0.311705,0.262426,0.720445,0.562343,0.397636,0.329878,0.229397,0.566672,0.875283,0.199527,0.195888,0.190781,0.880703,0.856074,0.208414,0.279657,0.0589999,0.993686,0.427901,0.723451,0.0327435,0.91229,0.45299,0.227619,0.452645,0.458739,0.117839,0.228535,0.246549,0.11177,0.790955,0.0894151,0.121524,0.0724533,0.891067,0.656582,0.154386,0.0436078,0.999814,0.41889,0.679352,0.670625,0.217564,0.830383,0.0037685,0.287999,0.904473,0.152817,0.122523,0.745024,0.464813,0.729356,0.0885237,0.559002,0.389427,0.322688,0.161897,0.189788,0.948147,0.372879,0.664555,0.777522,0.244081,0.0484688,0.761019,0.721587,0.662268,0.118741,0.695515,0.984108,0.639182,0.0175541,0.16771,0.922104,0.494549,0.0466419,0.377645,0.333952,0.39706,0.318761,0.871946,0.955686,0.339957,0.0200006,0.848971,0.160251,0.533349,0.727438,0.559945,0.995875,0.261375,0.81255,0.726309,0.954005,0.628131,0.00282216,0.894191,0.961185,0.498077,0.187457,0.756142,0.790435,0.350896,0.872749,0.218598,0.546104,0.366997,0.154077,0.481837,0.718488,0.115522,0.39987,0.501503,0.827413,0.961844,0.760843,0.2998,0.778578,0.264897,0.939315,0.162511,0.695144,0.617446,0.374477,0.550968,0.74711,0.784799,0.252867,0.287633,0.229808,0.817347,0.206163,0.389672,0.00122911,0.990059,0.975501,0.394358,0.492929,0.984893,0.760235,0.550017,0.634569,0.194595,0.788458,0.757824,0.201251,0.599974,0.233279,0.0603303,0.0406862,0.895697,0.208125,0.299124,0.205384,0.477033,0.384309,0.32262,0.311269,0.192693,0.868145,0.780281,0.0805475,0.202856,0.534516,0.810995,0.525102,0.85169,0.491226,0.461166,0.044726,0.64002,0.672114,0.819781,0.858367,0.853937,0.93844,0.445557,0.540297,0.420248,0.74439,0.488864,0.580228,0.396055,0.268682,0.644892,0.830376,0.654853,0.997942,0.702362,0.0355781,0.849611,0.828517,0.265677,0.651585,0.574298,0.411439,0.56669,0.355369,0.311209,0.812051,0.662683,0.522933,0.569614,0.443629,0.13526,0.799817,0.499495,0.781677,0.0917701,0.799315,0.705098,0.196022,0.15454,0.50387,0.593754,0.401135,0.752191,0.567745,0.553592,0.761931,0.505878,0.298113,0.535426,0.955485,0.739228,0.531715,0.884246,0.801871,0.490536,0.994631,0.530317,0.383552,0.992614,0.938717,0.876019,0.249627,0.652195,0.694095,0.229487,0.173399,0.514551,0.873638,0.324814,0.742879,0.0273827,0.254272,0.373308,0.921202,0.998106,0.165705,0.659677,0.629322,0.456446,0.316704,0.169341,0.31527,0.799376,0.516726,0.634699,0.569075,0.244661,0.700103,0.212307,0.784143,0.158031,0.98927,0.746748,0.73946,0.71827,0.0907485,0.0641913,0.172378,0.180766,0.288146,0.572003,0.291599,0.239318,0.902754,0.0924968,0.0887408,0.669331,0.14848,0.536733,0.600168,0.687783,0.810569,0.569791,0.630634,0.965994,0.863504,0.335225,0.065305,0.328619,0.230063,0.511715,0.554076,0.509335,0.669813,0.902459,0.922038,0.409417,0.26052,0.845996,0.353859,0.985798,0.64065,0.972582,0.381542,0.61347,0.4645,0.00922579,0.35506,0.0650481,0.284478,0.334651,0.90884,0.882616,0.200583,0.85275,0.392364,0.88103,0.0365822,0.0692599,0.896044,0.849337,0.237422,0.817197,0.972288,0.333577,0.819393,0.370715,0.157901,0.956302,0.176113,0.785234,0.114105,0.596071,0.0519737,0.427237,0.267872,0.0898513,0.874523,0.705892,0.680289,0.335348,0.909199,0.289356,0.94808,0.0539601,0.871198,0.840955,0.460227,0.627845,0.528287,0.459305,0.359354,0.00306404,0.303199,0.114402,0.0187798,0.275391,0.97749,0.871411,0.436718,0.222524,0.678131,0.330478,0.929352,0.216635,0.0529463,0.98127,0.159607,0.661073,0.491301,0.230119,0.0987203,0.132239,0.311334,0.503427,0.469392,0.590759,0.801283,0.451838,0.804774,0.813244,0.903386,0.887946,0.741643,0.37098,0.830881,0.869936,0.0623718,0.460497,0.472925,0.453508,0.804437,0.879794,0.333194,0.859957,0.907628,0.96231,0.113852,0.306306,0.486783,0.243349,0.543814,0.681179,0.730067,0.694772,0.955951,0.336073,0.534082,0.81788,0.560097,0.208804,0.0597419,0.884168,0.179624,0.902379,0.341527,0.545187,0.579754,0.511136,0.833268,0.631845,0.878731,0.596594,0.812306,0.808021,0.314234,0.73876,0.182626,0.391024,0.288722,0.515823,0.233318,0.99226,0.555785,0.83291,0.0111626,0.678685,0.509963,0.248745,0.53262,0.66967,0.0184928,0.47867,0.533645,0.639054,0.643122,0.542401,0.67658,0.0499485,0.53732,0.535669,0.26277,0.713704,0.746763,0.406866,0.549582,0.697606,0.497517,0.847482,0.251448,0.0145914,0.553272,0.691258,0.908119,0.318713,0.744537,0.905853,0.360922,0.079502,0.942352,0.570462,0.413184,0.681057,0.094166,0.466522,0.563461,0.803861,0.959326,0.920717,0.237918,0.242858,0.0640764,0.291317,0.620447,0.752745,0.143345,0.659782,0.773178,0.836195,0.174492,0.505608,0.305152,0.669816,0.659607,0.883518,0.773049,0.594137,0.287016,0.839822,0.715178,0.998601,0.214364,0.377458,0.697617,0.793665,0.0942158,0.217454,0.844376,0.269668,0.639527,0.802619,0.427453,0.850968,0.585269,0.869593,0.232344,0.540386,0.796517,0.932829,0.589681,0.516722,0.133417,0.986641,0.183931,0.365975,0.104259,0.781354,0.247644,0.479301,0.848128,0.810388,0.42416,0.670975,0.223671,0.398815,0.046441,0.833237,0.276593,0.408601,0.279646,0.65004,0.735753,0.492522,0.329024,0.737867,0.0388646,0.628078,0.878235,0.43741,0.303009,0.728303,0.642558,0.314834,0.695199,0.0608515,0.705277,0.344652,0.275708,0.128686,0.0696827,0.276017,0.659503,0.0905142,0.442876,0.0551484,0.230167,0.112624,0.633204,0.690846,0.562694,0.528215,0.119733,0.354735,0.137606,0.00836551,0.985275,0.830099,0.754829,0.47896,0.170247,0.173089,0.364787,0.146308,0.241887,0.272714,0.668646,0.513773,0.140833,0.265283,0.503659,0.128254,0.0865709,0.306015,0.250998,0.406313,0.0257799,0.710191,0.817889,0.740158,0.0134771,0.0384447,0.293322,0.964821,0.0660754,0.275549,0.688585,0.294392,0.978201,0.00428581,0.812623,0.788832,0.463608,0.388208,0.712459,0.929037,0.703784,0.261107,0.186662,0.182633,0.837266,0.669381,0.653422,0.681118,0.343148,0.0296434,0.865779,0.805835,0.514463,0.425495,0.076095,0.864515,0.156384,0.405785,0.840675,0.970796,0.400095,0.0640736,0.0128052,0.858768,0.0171273,0.853233,0.826339,0.0744632,0.831089,0.196279,0.499777,0.200856,0.130552,0.819782,0.849845,0.812307,0.835976,0.799103,0.0960524,0.435327,0.535114,0.818791,0.812761,0.542371,0.291582,0.397577,0.529976,0.0684765,0.14225,0.0568036,0.704459,0.577236,0.710198,0.448596,0.589173,0.770366,0.214474,0.0833395,0.458442,0.202214,0.389993,0.775713,0.23056,0.517749,0.440785,0.817302,0.370768,0.620691,|0.34766,0.302011,0.704111,0.856846,0.173995,0.316001,0.00299853,0.226332,0.559781,0.301668,0.841692,0.580154,0.96324,0.807318,0.402465,0.0555351,0.211448,0.154276,0.377894,0.637599,0.206596,0.606994,0.896714,0.419016,0.797542,0.474557,0.699761,0.92801,0.188498,0.989122,0.980861,0.729175,0.468182,0.533893,0.703024,0.294108,0.98022,0.0774174,0.610473,0.628798,0.527511,0.981159,0.680838,0.206995,0.154116,0.85301,0.0976212,0.472681,0.451116,0.927759,0.297584,0.597983,0.210247,0.975809,0.748539,0.700904,0.566947,0.756116,0.874119,0.573513,0.285634,0.538159,0.0852624,0.0719424,0.537508,0.509159,0.0280223,0.953131,0.328282,0.630349,0.150674,0.940431,0.830156,0.0870827,0.253295,0.614602,0.647615,0.590823,0.141565,0.324415,0.255579,0.815394,0.0873398,0.712846,0.605958,0.780489,0.393858,0.382924,0.989884,0.0431672,0.936814,0.0919622,0.88254,0.120817,0.592484,0.979528,0.222741,0.827106,0.617259,0.043566,0.31909,0.874654,0.00646454,0.545986,0.437698,0.513344,0.763197,0.660893,0.234881,0.0220209,0.697362,0.830715,0.767118,0.367576,0.152769,0.603005,0.0357085,0.426813,0.679344,0.344802,0.486289,0.00471765,0.74296,0.955652,0.235989,0.827552,0.0549509,0.85526,0.0770553,0.179602,0.132756,0.80334,0.184647,0.29057,0.875669,0.453616,0.958443,0.0793241,0.531754,0.662244,0.431499,0.456719,0.594478,0.429872,0.808951,0.251937,0.622977,0.791445,0.48758,0.323982,0.0621031,0.45139,0.566603,0.243503,0.166141,0.796622,0.64997,0.126204,0.344672,0.546378,0.73087,0.842462,0.504968,0.490602,0.610536,0.663301,0.889866,0.667636,0.512563,0.971879,0.905311,0.0167799,0.718649,0.756351,0.135723,0.196044,0.109346,0.785715,0.710811,0.347587,0.361456,0.154379,0.776272,0.8783,0.49878,0.0494135,0.603856,0.31568,0.202582,0.773908,0.620488,0.127418,0.549026,0.197327,0.058941,0.103833,0.0774958,0.32626,0.592104,0.844549,0.614088,0.188832,0.19278,0.206104,0.57019,0.707233,0.326265,0.940005,0.180649,0.993425,0.873675,0.961839,0.250125,0.250073,0.0886373,0.492504,0.700334,0.11359,0.113722,0.695061,0.834992,0.480356,0.133418,0.481068,0.846653,0.525324,0.0135379,0.551667,0.116725,0.730819,0.411871,0.916258,0.598032,0.699276,0.731427,0.895714,0.520292,0.524338,0.678774,0.212872,0.735495,0.350988,0.154616,0.667013,0.676625,0.157024,0.907372,0.637198,0.223932,0.660418,0.475122,0.586505,0.862517,0.108988,0.506752,0.445006,0.914246,0.0479843,0.953899,0.677157,0.243151,0.135165,0.619161,0.967311,0.787302,0.0705734,0.0638629,0.313337,0.0139295,0.103685,0.152302,0.0958264,0.957202,0.17422,0.832436,0.528048,0.0119908,0.0790061,0.199199,0.49251,0.533473,0.932699,0.401261,0.12111,0.334576,0.347739,0.118713,0.108712,0.717938,0.204017,0.571783,0.0119085,0.748637,0.308607,0.869054,0.245146,0.542768,0.209781,0.841916,0.294902,0.282012,0.706946,0.168929,0.250482,0.293252,0.829245,0.441398,0.918757,0.86178,0.149738,0.725573,0.342641,0.580017,0.170924,0.496822,0.408487,0.292161,0.454691,0.775123,0.504787,0.971157,0.131746,0.772599,0.903229,0.957376,0.931703,0.927806,0.387882,0.918204,0.0535667,0.988332,0.148646,0.183634,0.389988,0.992507,0.12724,0.541049,0.0728877,0.661753,0.928536,0.192562,0.746562,0.308414,0.175534,0.938505,0.777866,0.0468228,0.999765,0.779425,0.772406,0.175148,0.848468,0.216469,0.554144,0.22996,0.506132,0.0930191,0.269574,0.919111,0.524272,0.663562,0.552122,0.386004,0.0352628,0.724963,0.143075,0.743396,0.979422,0.209576,0.972776,0.720265,0.971266,0.742467,0.78965,0.716017,0.971731,0.401305,0.252315,0.619768,0.675214,0.36257,0.576589,0.0305752,0.705664,0.228453,0.615293,0.56027,0.372156,0.201471,0.11577,0.218756,0.48604,0.0342835,0.242641,0.801733,0.818082,0.400534,0.0368628,0.605981,0.18035,0.568461,0.740486,0.509696,0.182123,0.0218751,0.118796,0.368206,0.0944514,0.33553,0.0999082,0.113838,0.648907,0.111291,0.327441,0.0288968,0.113344,0.338246,0.937226,0.779866,0.400053,0.538449,0.897063,0.782092,0.801591,0.11231,0.549848,0.305581,0.142199,0.935009,0.126489,0.967895,0.118625,0.68209,0.935396,0.798658,0.604628,0.885609,0.0479566,0.695152,0.462972,0.435716,0.810354,0.476455,0.932392,0.402589,0.548499,0.702185,0.735035,0.689929,0.775168,0.0506603,0.647163,0.293319,0.513252,0.989441,0.533545,0.592104,0.626166,0.507806,0.901885,0.801491,0.689381,0.468687,0.737965,0.995164,0.911784,0.120565,0.878826,0.570745,0.0722135,0.99789,0.698514,0.474477,0.155502,0.496929,0.890326,0.431369,0.402772,0.257224,0.0222747,0.703258,0.3711,0.585287,0.606745,0.574833,0.544579,0.938995,0.369423,0.0794608,0.123265,0.327274,0.364114,0.270764,0.373054,0.067423,0.735513,0.987755,0.838056,0.112167,0.060991,0.316191,0.744677,0.262034,0.684768,0.767741,0.589973,0.957428,0.843283,0.0919781,0.541824,0.590807,0.474624,0.13754,0.920829,0.664972,0.843799,0.182398,0.630485,0.572505,0.918428,0.060303,0.556132,0.225105,0.526575,0.824909,0.0651317,0.0737603,0.404257,0.453474,0.448747,0.0374197,0.222672,0.943411,0.694347,0.246781,0.0881319,0.637467,0.415731,0.802747,0.439394,0.66007,0.463391,0.541606,0.0770265,0.599499,0.11502,0.712108,0.642904,0.445263,0.1342,0.760107,0.4526,0.305673,0.94008,0.713305,0.421595,0.604934,0.820589,0.100497,0.0601095,0.787272,0.711865,0.693043,0.819763,0.369817,0.068129,0.102149,0.375663,0.30591,0.360492,0.77066,0.71572,0.510195,0.714631,0.0437362,0.842685,0.795742,0.247298,0.810218,0.8145,0.795836,0.695754,0.99722,0.623099,0.499805,0.13032,0.721169,0.959195,0.468609,0.326799,0.0502881,0.272744,0.055735,0.107871,0.314831,0.819839,0.185163,0.210056,0.632906,0.523605,0.294311,0.217832,0.675106,0.86452,0.610478,0.160108,0.295861,0.581322,0.241311,0.0766298,0.323099,0.00428355,0.30738,0.437147,0.449576,0.962682,0.107387,0.972605,0.026211,0.551797,0.292359,0.346314,0.548429,0.961621,0.106479,0.383927,0.59972,0.923548,0.195318,0.780187,0.593753,0.436756,0.128199,0.490467,0.747488,0.489543,0.711929,0.842472,0.446773,0.137638,0.178191,0.843807,0.128186,0.496678,0.259779,0.10183,0.453936,0.469474,0.105062,0.639309,0.8804,0.0572117,0.302871,0.464871,0.0828515,0.600974,0.0311767,0.0425988,0.498731,0.386795,0.468225,0.0160575,0.800432,0.494126,0.363441,0.984279,0.456357,0.890217,0.414261,0.702682,0.805578,0.498914,0.545023,0.143399,0.220996,0.0583559,0.108717,0.071766,0.617847,0.546106,0.0938692,0.463453,0.0512364,0.479763,0.946166,0.77966,0.377651,0.968458,0.601334,0.289765,0.951534,0.610909,0.23355,0.842928,0.996629,0.0513582,0.730514,0.900405,0.206343,0.769306,0.0784466,0.465392,0.962749,0.0654176,0.670122,0.0345826,0.630354,0.0164664,0.885826,0.069117,0.347044,0.794851,0.129674,0.118289,0.473053,0.0930686,0.772695,0.019187,0.0708821,0.76381,0.0339451,0.0657108,0.471095,0.741631,0.304312,0.234364,0.0866846,0.781024,0.217113,0.855541,0.0761806,0.627777,0.740389,0.946203,0.614809,0.4759,0.139773,0.110832,0.540248,0.265458,0.919849,0.582838,0.00325769,0.00574023,0.1838,0.555941,0.320771,0.501753,0.890318,0.0980964,0.766545,0.503399,0.371862,0.161157,0.672884,0.0343954,0.827229,0.813107,0.557319,0.685057,0.85284,0.15633,0.306442,0.610488,0.0372608,0.33795,0.520952,0.911217,0.329248,0.152491,0.84589,0.663779,0.119575,0.26818,0.661885,0.637219,0.460608,0.252726,0.450315,0.675958,0.927415,0.31934,0.54853,0.188605,0.478869,0.595715,0.614296,0.0285339,0.25796,0.788834,0.35024,0.250142,0.0154434,0.360299,0.974722,0.201269,0.599186,0.498698,0.734729,0.432629,0.339073,0.289181,0.152869,0.215659,0.623619,0.870095,0.0503485,0.605619,0.919641,0.975261,0.10531,0.482348,0.0704038,0.866425,0.180802,0.681892,0.849686,0.745869,0.948541,0.248198,0.107758,0.709138,0.207805,0.598103,0.199764,0.59607,0.491217,0.0820401,0.932022,0.32252,0.218201,0.762817,0.502827,0.643785,0.758259,0.769514,0.515212,0.0459458,0.0349676,0.447703,0.612014,0.532702,0.563533,0.916518,0.338475,0.637723,0.423985,0.897702,0.569754,0.226378,0.868519,0.83296,0.23508,0.0717502,0.770205,0.359691,0.584909,0.928026,0.677908,0.790273,0.675592,0.406194,0.443626,0.543206,0.977262,0.131473,0.316647,0.090326,0.366046,0.940915,0.237593,0.966999,0.491277,0.644918,0.385425,0.89613,0.170057,0.323467,0.182422,0.38684,0.260181,0.67225,0.797756,0.465366,0.187853,0.60242,0.0375407,0.599039,0.445403,0.295627,0.363433,0.0756658,0.0644491,0.789717,0.671908,0.882614,0.756961,0.0874218,0.288369,0.00236899,0.291509,0.766646,0.263003,0.218937,0.618383,0.0132691,0.868624,0.102621,0.245719,0.41764,0.187973,0.791606,0.126431,0.221613,0.751221,0.378343,0.597092,0.751103,0.0297689,0.801197,0.440473,0.663247,0.252319,0.229303,0.556121,0.367419,0.410433,0.803615,0.0636345,0.503891,0.87467,0.802309,0.117672,0.935643,0.120268,0.622088,0.259732,0.763721,0.757302,0.621718,0.24382,0.7806,0.830611,0.418186,0.76899,0.376869,0.401152,0.758353,0.289515,0.715411,0.920075,0.18958,0.485128,0.191033,0.307489,0.727874,0.780896,0.18271,0.439709,0.7827,0.362167,0.6213,0.695898,0.123389,0.7209,0.724776,0.0638479,0.0463398,0.737453,0.397387,0.59219,0.0483385,0.247374,0.918082,0.716465,0.625772,0.0852276,0.405969,0.889912,0.327007,0.114332,0.551341,0.657813,0.423161,0.792217,0.332805,0.330788,0.461619,0.891325,0.606492,0.229043,0.440426,0.449896,0.661132,0.066014,0.0793242,0.737561,0.0852852,0.634892,0.0801449,|0.369284,0.805489,0.851029,0.835297,0.275915,0.203406,0.887183,0.0171893,0.791383,0.222235,0.44369,0.0562832,0.954391,0.169734,0.356048,0.238806,0.150515,0.917357,0.560833,0.332554,0.545253,0.69127,0.501091,0.931711,0.922615,0.429605,0.563853,0.703669,0.061915,0.929423,0.130222,0.721819,0.988108,0.897545,0.537775,0.0412732,0.767594,0.391644,0.356597,0.813468,0.718612,0.591586,0.0212805,0.97563,0.957819,0.896349,0.828179,0.038789,0.374313,0.653315,0.118621,0.254116,0.200743,0.689871,0.296243,0.992269,0.152307,0.509247,0.396431,0.528838,0.230124,0.293285,0.569778,0.977162,0.104044,0.240925,0.164525,0.818425,0.578728,0.234625,0.401619,0.806937,0.64122,0.575874,0.503749,0.270186,0.43782,0.671472,0.342185,0.353352,0.104971,0.532608,0.120211,0.744863,0.884613,0.163136,0.353595,0.419779,0.0604111,0.179909,0.35111,0.481526,0.814485,0.289727,0.474101,0.0366883,0.576516,0.683457,0.878725,0.0286844,0.259993,0.415114,0.618507,0.291314,0.685284,0.787218,0.791618,0.2945,0.298815,0.204587,0.781703,0.110813,0.637126,0.0999825,0.856057,0.0163023,0.412971,0.375514,0.206315,0.670405,0.0565062,0.641377,0.587859,0.747535,0.160811,0.955855,0.357868,0.64083,0.469148,0.797187,0.103093,0.0558859,0.131333,0.561105,0.934859,0.632215,0.834356,0.374576,0.817088,0.23179,0.225669,0.00511736,0.160958,0.0795736,0.165157,0.331851,0.236317,0.324808,0.294298,0.780462,0.973523,0.49024,0.830707,0.348985,0.354321,0.779557,0.208995,0.109277,0.952242,0.759187,0.879716,0.199744,0.473292,0.574574,0.767303,0.221446,0.282451,0.5029,0.716376,0.865968,0.583196,0.247696,0.609089,0.544662,0.342697,0.0716983,0.526667,0.574751,0.3942,0.80778,0.200696,0.796306,0.0557055,0.237311,0.237961,0.570177,0.184144,0.947732,0.548876,0.226578,0.0969962,0.843181,0.982742,0.226249,0.773359,0.607943,0.216948,0.718234,0.69066,0.658801,0.0434141,0.157261,0.230909,0.263841,0.118843,0.161157,0.0257513,0.841344,0.367969,0.475826,0.205305,0.164968,0.148395,0.912307,0.346449,0.474789,0.0337263,0.322422,0.927043,0.903335,0.231966,0.754767,0.678561,0.101382,0.0144973,0.448229,0.917519,0.468834,0.446145,0.333274,0.857379,0.708721,0.611204,0.824769,0.6569,0.788397,0.491929,0.131621,0.952569,0.33871,0.402534,0.235353,0.35904,0.621076,0.821242,0.626573,0.35983,0.602275,0.747331,0.0269333,0.481093,0.570205,0.300903,0.523533,0.0702356,0.135527,0.199709,0.67406,0.616016,0.653417,0.714172,0.602053,0.132167,0.919666,0.735756,0.768183,0.049423,0.473441,0.762478,0.505362,0.0972775,0.43833,0.870633,0.16136,0.512391,0.108099,0.317857,0.170342,0.676356,0.130324,0.0860709,0.0442413,0.0235865,0.342885,0.670549,0.424122,0.908825,0.908114,0.433167,0.563625,0.362902,0.850896,0.366033,0.668205,0.0533488,0.569727,0.409591,0.796403,0.754979,0.334632,0.967672,0.988375,0.87742,0.922083,0.726509,0.0545743,0.917425,0.175797,0.42645,0.684359,0.464351,0.990869,0.270515,0.88858,0.231114,0.722569,0.287337,0.871611,0.391501,0.912674,0.182459,0.329388,0.271518,0.262964,0.196125,0.773616,0.686481,0.243936,0.347986,0.116188,0.189771,0.909603,0.535647,0.275084,0.977647,0.471077,0.716404,0.527993,0.193454,0.521866,0.65763,0.766827,0.480375,0.180656,0.0475654,0.720909,0.705243,0.480001,0.810174,0.839067,0.354971,0.215346,0.372111,0.632601,0.641797,0.0507337,0.243551,0.8612,0.0795585,0.555447,0.259122,0.29259,0.216723,0.866203,0.695731,0.428593,0.984586,0.290343,0.990476,0.447066,0.671375,0.938765,0.243866,0.635038,0.661708,0.369636,0.716258,0.959261,0.496363,0.486515,0.663352,0.708996,0.806521,0.232306,0.572579,0.472806,0.96851,0.667468,0.518712,0.315402,0.566945,0.231707,0.373425,0.636524,0.871985,0.27328,0.246282,0.878564,0.628551,0.909179,0.67481,0.662766,0.0530424,0.604309,0.0160116,0.931858,0.992117,0.332297,0.0104665,0.80262,0.859924,0.541543,0.456992,0.420886,0.243991,0.450009,0.747237,0.697409,0.857479,0.87983,0.345148,0.42751,0.696665,0.166702,0.86577,0.926848,0.141544,0.413963,0.394378,0.0818836,0.313198,0.594546,0.685956,0.355186,0.0461733,0.957547,0.802859,0.00257581,0.190801,0.43106,0.313945,0.990842,0.261007,0.174565,0.889142,0.707674,0.681231,0.666018,0.264669,0.855124,0.429424,0.71652,0.178681,0.622233,0.853419,0.103315,0.875644,0.181536,0.75059,0.0357547,0.40044,0.0857719,0.991733,0.99298,0.152378,0.543059,0.866384,0.506713,0.42915,0.847157,0.701194,0.476691,0.889935,0.376416,0.757863,0.392348,0.154411,0.770901,0.720154,0.800943,0.803695,0.311525,0.729023,0.672017,0.683476,0.420496,0.679119,0.247365,0.865937,0.989262,0.183065,0.491506,0.738907,0.892916,0.0737362,0.521274,0.726166,0.856929,0.897809,0.562135,0.25971,0.455052,0.289803,0.124072,0.661475,0.739646,0.415841,0.599114,0.696348,0.843672,0.39907,0.330359,0.355956,0.92081,0.393214,0.181977,0.805479,0.471232,0.893912,0.338792,0.0741132,0.61254,0.97744,0.674937,0.400851,0.664738,0.0241168,0.0275546,0.362328,0.401834,0.978288,0.566972,0.8454,0.846388,0.370064,0.201395,0.463425,0.20499,0.224651,0.540393,0.913632,0.773595,0.567561,0.221767,0.897189,0.791076,0.680552,0.350471,0.63702,0.476719,0.199032,0.687287,0.874283,0.748955,0.799078,0.855707,0.645673,0.707877,0.956202,0.44191,0.94977,0.386828,0.120366,0.79256,0.337875,0.244956,0.245903,0.0686029,0.388524,0.336097,0.571777,0.931136,0.968229,0.476849,0.920014,0.0326533,0.765611,0.0187978,0.337561,0.406587,0.736291,0.0855553,0.472518,0.233732,0.675287,0.451383,0.24786,0.337802,0.47327,0.62795,0.21414,0.818964,0.304805,0.178569,0.0126458,0.518937,0.000576794,0.154396,0.708703,0.66241,0.103213,0.434279,0.344463,0.428544,0.114683,0.381595,0.068868,0.884403,0.380055,0.592592,0.0274482,0.690206,0.150068,0.221698,0.334676,0.481575,0.632937,0.561992,0.560518,0.735978,0.987607,0.331869,0.178633,0.372048,0.10797,0.2153,0.903743,0.289557,0.752192,0.139115,0.111254,0.163224,0.886588,0.59274,0.985718,0.212607,0.702543,0.506847,0.502359,0.80689,0.328565,0.618841,0.827752,0.349117,0.354697,0.946475,0.974062,0.150424,0.989256,0.398001,0.445189,0.343125,0.387326,0.989595,0.925613,0.0397649,0.448418,0.641091,0.403053,0.0707343,0.598826,0.967933,0.270557,0.624005,0.0259668,0.675032,0.559146,0.838263,0.08321,0.111907,0.555646,0.183134,0.310823,0.338913,0.782721,0.203816,0.341681,0.0577673,0.799201,0.39607,0.0795072,0.857954,0.793364,0.472497,0.863401,0.280148,0.000162244,0.115464,0.642847,0.621058,0.441094,0.0803459,0.443212,0.341035,0.284037,0.687949,0.763674,0.835585,0.995286,0.618965,0.354941,0.771022,0.37229,0.179161,0.470682,0.702375,0.427018,0.0610387,0.873826,0.230566,0.29103,0.0349812,0.251451,0.130621,0.102882,0.96393,0.34748,0.251642,0.978232,0.0162105,0.712492,0.726287,0.179803,0.147482,0.963018,0.312748,0.438683,0.627763,0.708151,0.486928,0.12562,0.77245,0.93684,0.889796,0.392943,0.162016,0.0649135,0.633639,0.0894706,0.550534,0.117772,0.331374,0.866869,0.582314,0.265104,0.489911,0.787471,0.290302,0.897058,0.331246,0.735499,0.255764,0.573865,0.182947,0.313219,0.531101,0.923796,0.988803,0.361804,0.154645,0.972427,0.778241,0.956257,0.656155,0.82947,0.514734,0.344183,0.328094,0.0975566,0.298122,0.325936,0.330687,0.991837,0.505192,0.106973,0.882945,0.673922,0.761594,0.647267,0.906728,0.381482,0.217186,0.699612,0.502243,0.942469,0.198758,0.57003,0.216911,0.825221,0.484492,0.943412,0.686353,0.443788,0.150697,0.475863,0.373723,0.866802,0.0252194,0.116315,0.669433,0.915626,0.980705,0.594373,0.777906,0.321065,0.176838,0.137222,0.700227,0.699583,0.559506,0.732538,0.0298006,0.46028,0.104874,0.405037,0.196839,0.880619,0.538455,0.783601,0.25169,0.21932,0.322699,0.324886,0.287436,0.201039,0.4393,0.42924,0.185987,0.60719,0.505513,0.302871,0.543467,0.957625,0.321373,0.326,0.625899,0.781112,0.224976,0.714433,0.38387,0.305755,0.964084,0.823863,0.347036,0.186534,0.376604,0.409932,0.768663,0.976706,0.831845,0.182171,0.168632,0.861775,0.0614104,0.123649,0.128418,0.206972,0.670854,0.231646,0.147282,0.18114,0.23951,0.743944,0.896934,0.465299,0.307129,0.906729,0.532917,0.932552,0.273549,0.637467,0.207615,0.847507,0.591084,0.879418,0.865416,0.661778,0.291279,0.200656,0.809591,0.378341,0.275158,0.26947,0.255526,0.465362,0.742472,0.835008,0.465616,0.329045,0.23339,0.901867,0.852921,0.306184,0.150448,0.230267,0.876592,0.377265,0.699282,0.609027,0.681015,0.393551,0.289712,0.341668,0.679052,0.126122,0.981096,0.482376,0.299667,0.051911,0.759126,0.909828,0.507594,0.236083,0.414965,0.305201,0.045527,0.995215,0.691186,0.548775,0.693906,0.544824,0.622044,0.725065,0.863085,0.465391,0.342881,0.454129,0.32428,0.0991709,0.713319,0.654409,0.550001,0.815308,0.818613,0.226645,0.00291991,0.636065,0.166516,0.38361,0.683036,0.28447,0.0954865,0.205368,0.103427,0.288389,0.632475,0.0978369,0.45824,0.960915,0.741618,0.557812,0.0923866,0.364619,0.656742,0.671012,0.0700139,0.287831,0.954552,0.507792,0.6718,0.831321,0.938331,0.626165,0.277056,0.667271,0.81534,0.0929883,0.184496,0.470198,0.42239,0.785577,0.0755111,0.346853,0.0727538,0.14147,0.434317,0.252268,0.276271,0.395569,0.171178,0.738947,0.153042,0.604472,0.423388,0.332043,0.0861219,0.941717,0.817869,0.669202,0.316819,0.926378,0.434188,0.941539,0.209581,0.404431,0.249963,0.0186979,0.184539,0.318862,0.215717,|0.258688,0.975906,0.535532,0.861826,0.403099,0.767716,0.33935,0.872526,0.584104,0.631155,0.342833,0.235724,0.812001,0.453126,0.27366,0.62298,0.214735,0.651228,0.400255,0.716047,0.0539431,0.246756,0.477919,0.277022,0.88282,0.862723,0.270053,0.921092,0.788476,0.980152,0.257556,0.635305,0.369732,0.64449,0.0492278,0.720209,0.314083,0.455442,0.0491441,0.826598,0.384508,0.148833,0.0717109,0.543925,0.258365,0.019572,0.759158,0.126932,0.932755,0.521421,0.876122,0.0138487,0.21498,0.353922,0.365054,0.123058,0.868012,0.404492,0.82961,0.717295,0.738762,0.502276,0.703771,0.289268,0.995929,0.955707,0.00930482,0.179759,0.0729964,0.499504,0.645583,0.706882,0.990319,0.756766,0.574378,0.295573,0.302186,0.640567,0.0379124,0.00575346,0.298442,0.655593,0.446022,0.905304,0.401252,0.175388,0.217445,0.317788,0.511746,0.0705142,0.209286,0.876203,0.176654,0.739077,0.918209,0.762825,0.350436,0.781249,0.709604,0.322038,0.0730284,0.960313,0.20981,0.0308801,0.967147,0.515346,0.399427,0.797389,0.45691,0.288069,0.0603765,0.551544,0.448893,0.567072,0.412983,0.196509,0.326887,0.670091,0.597794,0.630478,0.238308,0.865124,0.820056,0.783004,0.375296,0.972132,0.255697,0.454205,0.209533,0.329626,0.898754,0.676999,0.450731,0.576123,0.729835,0.587509,0.396398,0.00571674,0.461866,0.374807,0.803525,0.722954,0.611083,0.0863659,0.823146,0.773305,0.215647,0.498399,0.929982,0.292465,0.887341,0.73566,0.45656,0.582943,0.578961,0.976606,0.126096,0.844419,0.206187,0.504354,0.50637,0.701637,0.219663,0.0343333,0.842413,0.510565,0.217286,0.44296,0.262605,0.754043,0.480079,0.950984,0.0105371,0.950868,0.927385,0.754479,0.0277105,0.399253,0.939457,0.486974,0.575164,0.336712,0.61672,0.277785,0.127444,0.207868,0.165318,0.844951,0.791299,0.438965,0.416255,0.894646,0.846024,0.304306,0.717797,0.88223,0.122483,0.585584,0.787089,0.412748,0.202605,0.247923,0.662476,0.481856,0.774901,0.247091,0.183636,0.533137,0.303672,0.136666,0.216046,0.452225,0.521606,0.156095,0.156036,0.45328,0.0749053,0.388084,0.258853,0.93466,0.991167,0.0148874,0.0127541,0.756588,0.873837,0.855956,0.124558,0.433764,0.679806,0.685063,0.61405,0.824871,0.435722,0.624468,0.239555,0.298514,0.551781,0.488787,0.932105,0.0739706,0.932636,0.328033,0.70984,0.453419,0.815073,0.137295,0.764498,0.184531,0.774739,0.613802,0.315515,0.835724,0.68339,0.29979,0.800682,0.0944887,0.923479,0.861226,0.139945,0.4451,0.296957,0.948648,0.201545,0.625937,0.835394,0.189196,0.174476,0.505191,0.197711,0.381335,0.766085,0.373901,0.230975,0.707484,0.323422,0.268504,0.807726,0.480651,0.311772,0.807635,0.0476862,0.97771,0.866858,0.233524,0.334556,0.366209,0.373025,0.720202,0.294761,0.26476,0.891129,0.874168,0.877616,0.683721,0.27594,0.141101,0.981968,0.764126,0.763994,0.825715,0.184324,0.715895,0.0514801,0.274862,0.547222,0.967471,0.301817,0.0720238,0.254857,0.865353,0.0858532,0.332156,0.100097,0.197607,0.407414,0.308352,0.392782,0.233994,0.870485,0.0233492,0.372488,0.926289,0.66576,0.927866,0.840508,0.428469,0.993565,0.316483,0.582908,0.49062,0.657606,0.841089,0.395258,0.963111,0.0103234,0.552271,0.825262,0.980843,0.300473,0.387202,0.864365,0.581694,0.507737,0.803565,0.754327,0.916715,0.432321,0.837737,0.597754,0.0807149,0.236492,0.514242,0.908793,0.226144,0.932657,0.799772,0.423115,0.144652,0.0980846,0.93714,0.265011,0.651899,0.475131,0.303049,0.385331,0.674544,0.983274,0.352484,0.275879,0.219388,0.00757641,0.242456,0.750765,0.910434,0.025404,0.539118,0.457031,0.436224,0.576947,0.47848,0.0567572,0.314765,0.882312,0.494933,0.0844857,0.629654,0.0875487,0.536585,0.425301,0.542326,0.304919,0.194106,0.603612,0.962959,0.60539,0.61763,0.18272,0.844312,0.161692,0.79209,0.747514,0.890334,0.0294998,0.703473,0.785287,0.561441,0.826033,0.891122,0.765605,0.64554,0.551629,0.95452,0.550236,0.30562,0.961316,0.937372,0.377987,0.92576,0.382483,0.841404,0.462715,0.794472,0.319017,0.846033,0.471356,0.21286,0.928312,0.20787,0.353787,0.589112,0.469048,0.19762,0.749667,0.0902619,0.0408062,0.715115,0.156423,0.183157,0.0766893,0.163155,0.83235,0.870919,0.0323232,0.110489,0.868663,0.98358,0.316395,0.473174,0.115505,0.325675,0.751483,0.307387,0.708866,0.475124,0.113526,0.613578,0.164093,0.240635,0.685063,0.135281,0.959607,0.820531,0.525456,0.799072,0.919247,0.476902,0.340595,0.62604,0.898614,0.81647,0.0411639,0.502102,0.0109363,0.957099,0.182488,0.648536,0.75517,0.185156,0.116958,0.744633,0.809991,0.203512,0.935589,0.830696,0.797943,0.967001,0.77919,0.538968,0.768045,0.345303,0.900229,0.816538,0.122329,0.440284,0.322186,0.207909,0.68559,0.731143,0.352423,0.320652,0.977877,0.328303,0.369075,0.125355,0.713073,0.784235,0.0860708,0.730071,0.157075,0.917703,0.691413,0.539877,0.926086,0.249822,0.702143,0.7685,0.799984,0.198892,0.928978,0.672088,0.404882,0.396847,0.823217,0.955466,0.310767,0.681399,0.139758,0.41301,0.461478,0.905745,0.381881,0.455326,0.537031,0.735729,0.708064,0.182243,0.555399,0.799581,0.0895118,0.215548,0.0680008,0.374474,0.87614,0.341854,0.691313,0.326939,0.331289,0.209817,0.00821435,0.511458,0.578953,0.249061,0.252387,0.987617,0.726587,0.909157,0.374617,0.520507,0.379735,0.805437,0.816413,0.234996,0.614559,0.381472,0.707039,0.206678,0.548223,0.100134,0.509311,0.928177,0.500828,0.322782,0.58935,0.738658,0.354636,0.503088,0.734571,0.816087,0.397756,0.664463,0.94202,0.0525378,0.406085,0.0879232,0.744341,0.427364,0.306714,0.739009,0.7262,0.266987,0.935214,0.0399482,0.729636,0.672987,0.561402,0.411887,0.28526,0.361065,0.162382,0.273148,0.0880044,0.786086,0.424323,0.628756,0.684344,0.147712,0.284793,0.841673,0.655539,0.188363,0.447905,0.902481,0.200344,0.228794,0.43734,0.591565,0.450439,0.571481,0.825538,0.359349,0.919489,0.915323,0.197814,0.912822,0.0533282,0.197979,0.517084,0.406364,0.10668,0.762944,0.132538,0.532983,0.211921,0.911462,0.312572,0.944326,0.479426,0.392066,0.26671,0.298328,0.507326,0.371605,0.560859,0.82602,0.231733,0.445305,0.165074,0.61807,0.335247,0.678326,0.43992,0.556535,0.193163,0.345797,0.0710741,0.829836,0.657613,0.947084,0.998774,0.563526,0.823199,0.183586,0.100156,0.123529,0.862592,0.564462,0.654873,0.0257975,0.408214,0.212844,0.263044,0.0907556,0.0467703,0.642815,0.727882,0.767705,0.540821,0.353352,0.385367,0.877754,0.386584,0.597523,0.431794,0.157051,0.362578,0.647828,0.942344,0.465019,0.049666,0.637545,0.364973,0.927909,0.678104,0.825031,0.929863,0.887346,0.734284,0.58885,0.0498745,0.82461,0.472116,0.396624,0.938789,0.304103,0.723964,0.932758,0.0158277,0.961862,0.259915,0.392913,0.839075,0.68754,0.983247,0.98122,0.172837,0.417029,0.835682,0.318578,0.466156,0.230553,0.246451,0.884689,0.183688,0.247851,0.184395,0.454962,0.681412,0.520258,0.132798,0.340427,0.770028,0.252674,0.0630981,0.0130708,0.213153,0.853573,0.983752,0.602245,0.942073,0.879892,0.829913,0.971829,0.0870389,0.791717,0.218248,0.894611,0.740497,0.1228,0.238275,0.981911,0.891039,0.468929,0.755075,0.773985,0.888618,0.561322,0.840129,0.833051,0.492971,0.482611,0.383372,0.416581,0.603153,0.0875548,0.137304,0.107458,0.262468,0.481876,0.39277,0.310297,0.235805,0.933925,0.793156,0.633447,0.869314,0.988897,0.666403,0.246868,0.16004,0.723533,0.628321,0.383394,0.0711359,0.279902,0.750308,0.718962,0.617313,0.766145,0.984219,0.435848,0.563131,0.473143,0.841215,0.925235,0.0852863,0.938362,0.824157,0.896893,0.604858,0.653668,0.690118,0.453259,0.282978,0.99163,0.0846795,0.0326564,0.741228,0.657306,0.909556,0.176553,0.739697,0.365753,0.804483,0.878991,0.990159,0.658823,0.885616,0.33801,0.203394,0.87219,0.774027,0.734391,0.464001,0.873285,0.332783,0.739529,0.810449,0.895009,0.639694,0.310903,0.700878,0.8729,0.345026,0.647328,0.869039,0.730744,0.220527,0.00723177,0.950583,0.7995,0.897603,0.320193,0.771851,0.459449,0.545447,0.0256023,0.328399,0.459587,0.359482,0.0861667,0.313648,0.218446,0.75646,0.444842,0.3859,0.651985,0.566043,0.223511,0.00947082,0.363782,0.676281,0.465999,0.816807,0.799409,0.22331,0.309102,0.913262,0.308304,0.331447,0.863226,0.708031,0.958017,0.612039,0.744895,0.961189,0.610041,0.517685,0.0276365,0.418039,0.38111,0.268765,0.623267,0.146675,0.212318,0.0438111,0.473151,0.695563,0.31667,0.687327,0.475142,0.594942,0.644249,0.860707,0.612177,0.893926,0.253283,0.0774147,0.348432,0.356892,0.925523,0.302407,0.247587,0.867445,0.890215,0.287815,0.728112,0.321681,0.29038,0.425511,0.264793,0.801428,0.178955,0.85307,0.0164704,0.513937,0.258758,0.347461,0.844472,0.848026,0.973626,0.395687,0.163361,0.855823,0.443594,0.745753,0.300572,0.733933,0.804091,0.179975,0.134084,0.661544,0.679434,0.287944,0.913459,0.184814,0.6342,0.587552,0.976641,0.585701,0.15788,0.338109,0.0120723,0.728794,0.972618,0.981895,0.0113314,0.880591,0.104738,0.303524,0.928184,0.971988,0.735439,0.669876,0.012915,0.286885,0.0288509,0.464201,0.190682,0.972013,0.291427,0.517476,0.0751646,0.67269,0.0833143,0.307745,0.968794,0.939302,0.637166,0.716521,0.763448,0.277593,0.937477,0.963639,0.375596,0.252531,0.53556,0.918208,0.58528,0.20452,0.43313,0.806806,0.315075,0.553431,0.235478,0.264808,0.399619,0.297965,0.643458,0.227624,0.0498678,0.973295,0.703335,0.320006,0.0599698,0.455459,0.976495,0.0361416,0.690564,0.31017,0.174516,|0.866074,0.976977,0.328213,0.186502,0.756153,0.983965,0.371563,0.750522,0.996664,0.110482,0.388096,0.757918,0.143387,0.973777,0.0834539,0.848548,0.402811,0.0733771,0.734647,0.543032,0.119508,0.312995,0.0795777,0.123372,0.244593,0.734509,0.260687,0.943501,0.486468,0.878904,0.0770373,0.261862,0.22086,0.49647,0.687735,0.206429,0.927469,0.603912,0.610053,0.136742,0.887983,0.819802,0.351724,0.755839,0.0776776,0.551817,0.782837,0.435289,0.71447,0.415051,0.0562929,0.868696,0.633168,0.670129,0.267383,0.908054,0.216223,0.227959,0.179268,0.269685,0.213103,0.513022,0.258942,0.848347,0.622072,0.314306,0.876704,0.998358,0.0192501,0.756024,0.103341,0.778792,0.175632,0.13607,0.729271,0.230449,0.439071,0.0245365,0.633694,0.754572,0.882401,0.0386965,0.626548,0.385482,0.949098,0.29059,0.685092,0.947147,0.757571,0.130215,0.0394112,0.345609,0.942293,0.844804,0.762752,0.285246,0.805131,0.147296,0.99138,0.512886,0.515924,0.742391,0.53146,0.952186,0.409292,0.257963,0.0742046,0.467777,0.183123,0.298074,0.189317,0.124367,0.471833,0.285231,0.139173,0.453742,0.263373,0.548849,0.292838,0.156483,0.49501,0.822043,0.797745,0.237847,0.79454,0.88537,0.226076,0.761094,0.650889,0.0832225,0.454031,0.773388,0.563955,0.76342,0.15728,0.654895,0.402334,0.277878,0.313947,0.759894,0.236976,0.175841,0.689368,0.235806,0.463631,0.0899612,0.828508,0.529319,0.0333499,0.123637,0.533441,0.59279,0.105903,0.715699,0.326416,0.696322,0.595526,0.428544,0.696045,0.889319,0.912414,0.470295,0.069634,0.506025,0.083554,0.473604,0.0459961,0.402986,0.68449,0.381244,0.684668,0.723389,0.108422,0.106633,0.642927,0.577306,0.790568,0.330503,0.567084,0.348327,0.964774,0.480646,0.225799,0.722783,0.313046,0.302958,0.516524,0.811907,0.921243,0.653031,0.409862,0.677756,0.465742,0.352032,0.670782,0.34051,0.189978,0.11437,0.55957,0.967772,0.202099,0.715998,0.0896617,0.768968,0.52878,0.870636,0.659138,0.500156,0.914049,0.532284,0.536608,0.0703878,0.882477,0.956679,0.860628,0.404613,0.783318,0.679128,0.662388,0.311072,0.699571,0.148508,0.443233,0.572159,0.287838,0.667849,0.416131,0.277532,0.573105,0.845027,0.460185,0.981347,0.0121501,0.643839,0.358831,0.723447,0.416265,0.262789,0.832506,0.961829,0.756501,0.89391,0.158555,0.445019,0.0440651,0.24143,0.40212,0.0708247,0.38824,0.644984,0.462784,0.0998624,0.0172414,0.186694,0.817404,0.521946,0.757562,0.437029,0.531235,0.819752,0.291691,0.23663,0.49778,0.32555,0.717388,0.114514,0.808703,0.147804,0.274414,0.615842,0.936406,0.733094,0.778375,0.536658,0.686102,0.356523,0.818667,0.693786,0.301306,0.699166,0.535515,0.703543,0.870395,0.956429,0.16153,0.635714,0.736388,0.999909,0.374128,0.167249,0.163825,0.732276,0.70381,0.571971,0.937051,0.84357,0.364286,0.276241,0.363976,0.544088,0.565727,0.179953,0.539991,0.178946,0.0785334,0.140049,0.425748,0.567788,0.897101,0.978305,0.107726,0.0722656,0.396657,0.579852,0.238561,0.191449,0.0567877,0.321468,0.28453,0.313087,0.453386,0.297642,0.568682,0.222934,0.0580476,0.424313,0.974261,0.0009951,0.707011,0.349683,0.555634,0.643466,0.87257,0.56409,0.0521113,0.0660436,0.662343,0.506811,0.316519,0.687845,0.26231,0.518935,0.612615,0.0916973,0.726023,0.185196,0.454652,0.29673,0.214184,0.943264,0.777662,0.950007,0.647474,0.33384,0.00869501,0.565918,0.856603,0.920757,0.472794,0.143502,0.0956025,0.0691101,0.417737,0.865728,0.00565594,0.89757,0.0679402,0.838572,0.716539,0.159785,0.589996,0.596709,0.921601,0.860988,0.327028,0.0802675,0.401353,0.479529,0.080838,0.40546,0.115155,0.609784,0.637062,0.724115,0.205104,0.634045,0.212003,0.49075,0.533903,0.176636,0.269979,0.565324,0.721823,0.08492,0.979771,0.196324,0.11967,0.750633,0.336325,0.285254,0.054463,0.336295,0.710023,0.711921,0.575362,0.593508,0.186918,0.286207,0.423825,0.895815,0.297142,0.558274,0.304806,0.119324,0.350398,0.0147158,0.47862,0.24482,0.00758797,0.181033,0.257749,0.626542,0.670622,0.617009,0.75516,0.976711,0.91574,0.372588,0.0141928,0.194133,0.310366,0.938484,0.196958,0.0394228,0.565718,0.283173,0.143642,0.60472,0.924783,0.134474,0.423893,0.534874,0.715452,0.87045,0.496675,0.544511,0.901125,0.994009,0.702207,0.102017,0.575563,0.267416,0.879715,0.0507163,0.10403,0.904475,0.210064,0.0674608,0.65438,0.0411254,0.778453,0.696752,0.269536,0.739474,0.60216,0.474273,0.373207,0.821595,0.694746,0.982564,0.876657,0.474225,0.46828,0.930463,0.037649,0.293781,0.639447,0.264054,0.934051,0.493262,0.488782,0.445331,0.562327,0.11622,0.700306,0.272005,0.539939,0.338026,0.872857,0.276422,0.883552,0.183847,0.607199,0.533675,0.857375,0.951449,0.988057,0.66366,0.0155913,0.720836,0.806332,0.764997,0.0249603,0.134949,0.918681,0.764889,0.582324,0.431113,0.108416,0.238872,0.522356,0.38304,0.672525,0.582723,0.653496,0.924583,0.554051,0.0808388,0.924414,0.516744,0.781232,0.441647,0.865342,0.329159,0.383613,0.733952,0.920681,0.254818,0.7133,0.352898,0.085608,0.628456,0.265321,0.217342,0.0901424,0.441952,0.28961,0.207361,0.163197,0.985851,0.347368,0.627573,0.979209,0.272054,0.905393,0.967436,0.649889,0.85729,0.360549,0.925588,0.66861,0.465192,0.780255,0.521389,0.681018,0.214918,0.821376,0.827086,0.372959,0.349509,0.96164,0.802354,0.202964,0.458949,0.562443,0.233184,0.160565,0.70852,0.49011,0.477304,0.394639,0.844192,0.333158,0.193372,0.310783,0.792833,0.785592,0.683062,0.0839477,0.946028,0.139019,0.0911359,0.522833,0.319541,0.901742,0.602528,0.574026,0.277642,0.0159129,0.372969,0.225795,0.639929,0.93602,0.162363,0.851575,0.940495,0.0302416,0.534724,0.477811,0.176337,0.170058,0.0413244,0.109102,0.660662,0.698869,0.802064,0.747162,0.62938,0.0382355,0.947225,0.540466,0.618231,0.520995,0.883487,0.923107,0.0893865,0.292251,0.313901,0.192189,0.748479,0.718316,0.979554,0.0828957,0.243242,0.482412,0.651374,0.628893,0.18782,0.526273,0.143589,0.91309,0.356736,0.0235667,0.807021,0.882146,0.426933,0.731942,0.90284,0.819019,0.38829,0.519644,0.0109462,0.098428,0.496583,0.894551,0.665557,0.149021,0.0681282,0.694947,0.313717,0.804013,0.055968,0.485858,0.196586,0.770273,0.844608,0.40541,0.255113,0.366247,0.304031,0.463453,0.773845,0.611451,0.224582,0.640394,0.350323,0.405556,0.11444,0.0658044,0.866425,0.571646,0.393001,0.115955,0.432951,0.724028,0.297561,0.581894,0.995754,0.508548,0.776329,0.30945,0.619204,0.903666,0.780202,0.294894,0.117983,0.0805187,0.50539,0.340091,0.949176,0.624159,0.422778,0.968209,0.353436,0.753932,0.238988,0.0638995,0.439176,0.898187,0.276154,0.733186,0.155868,0.464489,0.0111681,0.670421,0.702169,0.792023,0.0872113,0.420013,0.980683,0.0222315,0.273605,0.196154,0.0131665,0.110531,0.848339,0.743335,0.216051,0.678221,0.8155,0.378971,0.249701,0.549067,0.6087,0.198967,0.57464,0.825049,0.0852222,0.708094,0.990682,0.219822,0.394967,0.552821,0.192447,0.0155544,0.314483,0.119588,0.46715,0.59986,0.028941,0.449305,0.730087,0.781123,0.916288,0.346314,0.72406,0.0634059,0.138151,0.134573,0.804653,0.634211,0.19834,0.461793,0.832203,0.402291,0.465311,0.00833529,0.285537,0.761713,0.767016,0.365519,0.836069,0.783024,0.968434,0.940182,0.503786,0.196919,0.348867,0.757253,0.658847,0.752115,0.486352,0.968376,0.203054,0.244377,0.41155,0.136572,0.473325,0.993335,0.539292,0.536795,0.841112,0.954855,0.915118,0.35275,0.950426,0.0318474,0.00959027,0.952386,0.72982,0.0195056,0.503247,0.910567,0.405614,0.149345,0.608824,0.0526488,0.0140269,0.589191,0.934803,0.0904058,0.582928,0.11856,0.0150092,0.967056,0.200855,0.276819,0.16875,0.192376,0.0369657,0.366675,0.265761,0.0565199,0.11568,0.0521024,0.960701,0.110287,0.7365,0.055028,0.813814,0.832027,0.216147,0.17168,0.644686,0.763487,0.319826,0.59462,0.10525,0.794029,0.654711,0.481156,0.628256,0.95182,0.475171,0.366355,0.48946,0.346937,0.687086,0.0716897,0.582133,0.18864,0.246209,0.0477536,0.300987,0.00642818,0.832324,0.841304,0.892746,0.969999,0.941667,0.438154,0.65125,0.0167285,0.351873,0.548239,0.507042,0.531962,0.770192,0.51549,0.404262,0.0247668,0.356191,0.658443,0.600282,0.745709,0.235424,0.647057,0.683497,0.781699,0.894286,0.988233,0.0420592,0.225166,0.789294,0.851093,0.770585,0.816675,0.209207,0.789358,0.529707,0.00757241,0.120918,0.292072,0.722866,0.0296029,0.499724,0.751168,0.836048,0.0873623,0.502144,0.507469,0.59612,0.260775,0.816292,0.284791,0.641567,0.205915,0.76868,0.661697,0.420381,0.901891,0.766028,0.497986,0.364037,0.636935,0.676988,0.167156,0.894844,0.931699,0.598241,0.859641,0.313221,0.686695,0.573661,0.627505,0.23068,0.150392,0.279322,0.0327933,0.0921488,0.279745,0.485562,0.0347078,0.161467,0.326697,0.370495,0.736336,0.291434,0.739159,0.733008,0.96173,0.961884,0.265934,0.988527,0.57001,0.487403,0.986866,0.497071,0.953746,0.19844,0.877531,0.313139,0.0257334,0.80514,0.81884,0.422496,0.754284,0.0583717,0.777284,0.184661,0.36208,0.194996,0.171832,0.978615,0.474774,0.494235,0.703535,0.682895,0.268241,0.620818,0.569383,0.296469,0.349106,0.494842,0.159025,0.282984,0.337868,0.261834,0.108401,0.741317,0.278313,0.790746,0.974495,0.136307,0.080562,0.509037,0.755983,0.930717,0.542266,0.659303,0.574252,0.503326,0.666212,0.925879,0.567162,0.273405,0.234308,0.509857,0.13092,0.0908238,0.00342882,0.475953,0.63366,0.379657,0.302356,0.0942535,0.341554,0.567903,0.343722,0.754787,|0.981897,0.109995,0.177649,0.186498,0.707763,0.0909577,0.147768,0.380976,0.171477,0.736827,0.61554,0.598754,0.11238,0.0195798,0.327013,0.377025,0.189901,0.37087,0.981902,0.556797,0.630142,0.696543,0.0483927,0.572572,0.569898,0.496372,0.175089,0.588423,0.974085,0.485251,0.183388,0.901971,0.71013,0.0939565,0.357585,0.596296,0.562516,0.826342,0.542331,0.485058,0.156166,0.110819,0.30274,0.211142,0.133592,0.725896,0.973466,0.707099,0.313583,0.453169,0.479126,0.945088,0.894496,0.126814,0.91427,0.568521,0.513344,0.743054,0.527994,0.194187,0.211314,0.736317,0.0417472,0.223235,0.475883,0.213172,0.737071,0.175088,0.670331,0.250499,0.00130171,0.962531,0.661136,0.538516,0.818149,0.541877,0.619286,0.0490854,0.518701,0.801457,0.530663,0.866258,0.815863,0.643303,0.692268,0.564176,0.911363,0.508284,0.0660582,0.26778,0.182653,0.589278,0.927325,0.30021,0.907814,0.434053,0.696945,0.103341,0.0113204,0.545993,0.338845,0.452957,0.378569,0.543248,0.671644,0.413213,0.565383,0.700697,0.0515085,0.531031,0.503804,0.368647,0.0315502,0.306439,0.145874,0.073456,0.81931,0.642429,0.787235,0.905886,0.000607133,0.889625,0.574285,0.167319,0.352345,0.8566,0.827634,0.257827,0.446506,0.581121,0.815722,0.654243,0.0924199,0.598811,0.378721,0.628349,0.400523,0.396912,0.134515,0.78437,0.616938,0.916446,0.388047,0.828467,0.420392,0.00812298,0.304684,0.590715,0.665853,0.144962,0.579237,0.335825,0.874213,0.0844523,0.971816,0.119662,0.871276,0.352778,0.157796,0.898737,0.449429,0.684114,0.688166,0.377885,0.451497,0.534139,0.33661,0.38338,0.198725,0.315025,0.507133,0.636721,0.816787,0.100768,0.810462,0.165573,0.616849,0.203995,0.874013,0.831346,0.0079096,0.0203018,0.398019,0.707192,0.153276,0.313605,0.0924608,0.566667,0.0659069,0.737422,0.688268,0.220499,0.766175,0.701302,0.57542,0.32672,0.912484,0.875674,0.32025,0.082839,0.754826,0.597049,0.304782,0.0623376,0.590809,0.763551,0.741273,0.313829,0.131685,0.172751,0.937048,0.0448905,0.594128,0.769395,0.374218,0.578741,0.93163,0.982799,0.672741,0.949026,0.0276533,0.0050481,0.645597,0.508082,0.277305,0.0285166,0.516024,0.993517,0.777685,0.485244,0.57688,0.0868923,0.678248,0.825536,0.76591,0.525596,0.962008,0.0430355,0.875208,0.54337,0.0805202,0.820662,0.62952,0.0534099,0.035718,0.0435755,0.50666,0.122717,0.726377,0.680554,0.787212,0.562348,0.812206,0.978786,0.831304,0.53801,0.698311,0.184874,0.0571082,0.424294,0.939313,0.325775,0.136209,0.903174,0.950423,0.0606181,0.607312,0.360431,0.395891,0.693401,0.225006,0.181627,0.888266,0.411745,0.701035,0.866618,0.445105,0.439452,0.859975,0.323541,0.21235,0.85355,0.934114,0.508499,0.103572,0.365178,0.934051,0.132957,0.403156,0.778696,0.931932,0.820732,0.657954,0.0200366,0.933284,0.995728,0.607349,0.802687,0.462095,0.733278,0.338211,0.153942,0.343061,0.411259,0.993939,0.166319,0.71462,0.692484,0.543664,0.915621,0.0605795,0.0743225,0.274427,0.599555,0.796903,0.908032,0.823458,0.134929,0.616815,0.647495,0.430879,0.771184,0.0620034,0.311622,0.856709,0.941881,0.801456,0.511299,0.609792,0.0855375,0.65433,0.130912,0.0346764,0.664799,0.298689,0.785943,0.0589556,0.441081,0.647274,0.0926424,0.262246,0.71201,0.232502,0.208553,0.341776,0.28179,0.608736,0.805937,0.988282,0.34105,0.211563,0.972774,0.02366,0.276069,0.133375,0.327351,0.530233,0.363403,0.565849,0.193053,0.0831246,0.523851,0.315394,0.903648,0.691001,0.434221,0.0996675,0.434134,0.390235,0.88041,0.00935221,0.521792,0.0012719,0.980436,0.811287,0.0449664,0.229339,0.839521,0.524509,0.401807,0.950676,0.316024,0.0146492,0.214449,0.433341,0.475335,0.251047,0.058034,0.760843,0.176739,0.897437,0.716535,0.336457,0.26141,0.513947,0.0359799,0.11384,0.898075,0.589952,0.33852,0.451427,0.908501,0.0294947,0.252087,0.902,0.0521877,0.0914743,0.641705,0.392902,0.559639,0.780644,0.363574,0.338177,0.780977,0.0596215,0.207158,0.504214,0.197666,0.74128,0.732649,0.558306,0.264577,0.180334,0.819953,0.875587,0.657579,0.661965,0.834638,0.71172,0.250804,0.439457,0.0166765,0.809732,0.185941,0.0968361,0.945522,0.486513,0.704759,0.114203,0.810221,0.77361,0.882734,0.338302,0.497241,0.03413,0.25486,0.65972,0.589845,0.464623,0.366837,0.0807559,0.412252,0.487325,0.978921,0.395414,0.0230405,0.65468,0.588106,0.548711,0.242656,0.721426,0.746889,0.26322,0.579996,0.350247,0.735411,0.991494,0.584153,0.478955,0.751716,0.270244,0.629624,0.698133,0.496197,0.812025,0.650889,0.110738,0.775417,0.164729,0.389919,0.168461,0.332515,0.248003,0.548982,0.430086,0.429057,0.840427,0.938892,0.341234,0.837047,0.279967,0.765442,0.815871,0.358987,0.0340339,0.10101,0.271999,0.666147,0.831647,0.719641,0.419897,0.467921,0.794102,0.198604,0.514826,0.00581521,0.41727,0.78476,0.84394,0.912981,0.0132535,0.625528,0.691879,0.652048,0.149058,0.290139,0.787496,0.496455,0.536392,0.48144,0.854695,0.297735,0.102459,0.901179,0.952127,0.0731534,0.395187,0.684056,0.295808,0.844998,0.0229924,0.0779403,0.0886831,0.610035,0.98806,0.51113,0.983284,0.0298737,0.0436063,0.11435,0.371561,0.723099,0.692601,0.865916,0.912355,0.338883,0.80866,0.757131,0.956204,0.907402,0.28165,0.388185,0.168147,0.50808,0.777722,0.448509,0.797412,0.913862,0.57827,0.431157,0.544133,0.805928,0.970422,0.843091,0.426752,0.0991713,0.660613,0.566657,0.173588,0.51391,0.888331,0.455323,0.192649,0.331737,0.144272,0.282455,0.00361878,0.142798,0.972336,0.400155,0.448133,0.495116,0.409148,0.806659,0.920574,0.259513,0.622616,0.203116,0.897629,0.62521,0.563867,0.968286,0.131256,0.906275,0.305204,0.735231,0.24439,0.0830381,0.462725,0.909326,0.0823197,0.149487,0.179717,0.631532,0.831626,0.692977,0.935566,0.933991,0.39597,0.593888,0.628649,0.734154,0.315939,0.940965,0.0634792,0.0244526,0.826447,0.330354,0.0156041,0.925238,0.956502,0.638023,0.790011,0.528759,0.421694,0.475375,0.146041,0.63941,0.366645,0.596257,0.771021,0.915438,0.811429,0.140141,0.872423,0.708248,0.393352,0.853275,0.323445,0.298279,0.947511,0.387492,0.352007,0.611021,0.00853211,0.736892,0.665237,0.406228,0.493254,0.846937,0.732795,0.519975,0.813408,0.119713,0.20637,0.39115,0.666844,0.826073,0.69403,0.284109,0.700667,0.300452,0.485155,0.891006,0.664102,0.856757,0.899693,0.330895,0.366948,0.721574,0.827298,0.828624,0.326917,0.309337,0.99759,0.620004,0.279907,0.926345,0.618421,0.0203513,0.563731,0.791326,0.137839,0.709695,0.671435,0.177622,0.459741,0.666596,0.361733,0.488921,0.504416,0.802656,0.432835,0.599251,0.666146,0.830466,0.840249,0.74531,0.0961141,0.907522,0.704551,0.368223,0.110921,0.755685,0.211712,0.359587,0.0844758,0.0221882,0.779597,0.51967,0.245996,0.85653,0.773227,0.483385,0.0383071,0.96348,0.984489,0.839523,0.962127,0.639943,0.191317,0.177177,0.846967,0.614457,0.475922,0.103743,0.0805541,0.743896,0.339602,0.619874,0.904694,0.417011,0.410071,0.169585,0.39522,0.628426,0.0689463,0.498923,0.168922,0.762905,0.149731,0.735123,0.0613511,0.149774,0.387051,0.543782,0.990495,0.194672,0.0250639,0.878552,0.789253,0.315225,0.839417,0.855861,0.579821,0.391763,0.299451,0.876824,0.912406,0.681726,0.627125,0.641337,0.446331,0.815558,0.886356,0.31777,0.591798,0.783933,0.181317,0.488859,0.661622,0.238789,0.527144,0.287717,0.263303,0.551751,0.725257,0.373317,0.575806,0.58572,0.245043,0.942919,0.710403,0.163303,0.696983,0.993658,0.324076,0.831994,0.784631,0.14876,0.912691,0.291134,0.362244,0.879301,0.537129,0.190223,0.122568,0.29036,0.432061,0.876059,0.0301991,0.240696,0.16811,0.0434997,0.888478,0.62352,0.150971,0.193402,0.93782,0.595395,0.828131,0.704466,0.394911,0.299293,0.842105,0.730336,0.157644,0.383599,0.745659,0.166786,0.0474544,0.673662,0.963912,0.513377,0.890488,0.535664,0.032845,0.39649,0.230909,0.419908,0.327877,0.118781,0.00373316,0.692159,0.887764,0.830408,0.676912,0.202762,0.0210424,0.743092,0.611197,0.759662,0.301533,0.624301,0.326171,0.243467,0.495202,0.0397562,0.603388,0.57035,0.554381,0.0505418,0.245816,0.0134206,0.259143,0.799211,0.563036,0.700364,0.798606,0.722021,0.398731,0.959884,0.922609,0.421227,0.489433,0.650038,0.422764,0.227736,0.185813,0.720493,0.319841,0.795425,0.850426,0.633226,0.543106,0.210558,0.311001,0.189945,0.114448,0.414273,0.302987,0.783464,0.332575,0.817532,0.0643558,0.411909,0.833441,0.797654,0.800277,0.0279507,0.941507,0.0877223,0.117148,0.597695,0.974213,0.500627,0.676195,0.676581,0.388143,0.329207,0.25427,0.0999047,0.804913,0.208823,0.136854,0.0616065,0.25535,0.0386646,0.44399,0.414536,0.447855,0.474718,0.0359963,0.163074,0.899917,0.042013,0.55961,0.340558,0.792866,0.545965,0.268927,0.29622,0.156488,0.0170454,0.344666,0.205762,0.314594,0.822511,0.108046,0.254449,0.277744,0.908411,0.367885,0.91126,0.547594,0.309839,0.876591,0.284503,0.342012,0.788961,0.476983,0.491399,0.419698,0.543251,0.45249,0.0118409,0.917273,0.522676,0.857858,0.41439,0.807024,0.433835,0.206675,0.0825281,0.917254,0.765636,0.200453,0.494517,0.390186,0.438924,0.441327,0.999202,0.81437,0.639027,0.255295,0.342989,0.97973,0.378671,0.641945,0.142399,0.666133,0.233689,0.554993,0.696747,0.103907,0.685881,0.424173,0.255556,0.435125,0.179644,0.133129,0.736846,0.869345,0.386368,0.822908,0.856133,0.110105,0.957781,0.820837,0.269212,0.322143,0.30105,0.517976,0.106433,0.224217,0.822113,0.209621,0.896673,0.644611,0.0432563,|0.983434,0.012187,0.355876,0.0994407,0.383514,0.00532931,0.0729781,0.919609,0.72156,0.779161,0.719376,0.484195,0.53059,0.0590425,0.0503251,0.628748,0.378876,0.149872,0.228037,0.692766,0.642798,0.979267,0.963538,0.539812,0.648527,0.418321,0.437384,0.328393,0.655198,0.433945,0.378575,0.884425,0.196366,0.243921,0.79486,0.00887179,0.410225,0.702768,0.242058,0.56891,0.942245,0.533611,0.163606,0.49173,0.802717,0.853546,0.4017,0.939432,0.558971,0.246858,0.848904,0.532346,0.9501,0.544107,0.108871,0.707465,0.307116,0.131261,0.388172,0.00609684,0.0540263,0.211234,0.550056,0.532709,0.607721,0.958071,0.303069,0.86152,0.310158,0.228508,0.0593058,0.610847,0.305416,0.62138,0.712629,0.641367,0.214879,0.648634,0.472323,0.159197,0.8579,0.788152,0.966912,0.592824,0.0911863,0.360899,0.522045,0.659259,0.0733284,0.149762,0.976092,0.692246,0.0265867,0.342817,0.877027,0.442505,0.171817,0.28743,0.354215,0.0385065,0.130494,0.900432,0.771026,0.970534,0.0402849,0.141862,0.309134,0.739592,0.2229,0.735169,0.0481182,0.253491,0.446948,0.638796,0.665699,0.480841,0.530659,0.192905,0.471956,0.669376,0.318445,0.770493,0.767968,0.346187,0.127383,0.112774,0.0170059,0.686906,0.18079,0.250229,0.123626,0.544267,0.0577313,0.523326,0.804098,0.316415,0.612333,0.843136,0.851514,0.172236,0.37115,0.448084,0.284808,0.693562,0.321865,0.734585,0.00981575,0.645974,0.33396,0.00457454,0.33252,0.21544,0.991187,0.108363,0.711682,0.641085,0.178611,0.290857,0.688851,0.270778,0.785856,0.869347,0.784911,0.134174,0.979888,0.879196,0.209607,0.453763,0.247265,0.462621,0.0543537,0.844395,0.780071,0.247634,0.627916,0.916047,0.529029,0.174007,0.0664036,0.441928,0.524098,0.457403,0.965536,0.696378,0.952171,0.170631,0.183472,0.107016,0.870685,0.315799,0.0302032,0.759481,0.31413,0.126489,0.672298,0.557896,0.804842,0.799489,0.538605,0.390647,0.104435,0.788973,0.313837,0.0611938,0.613491,0.316706,0.412114,0.59013,0.774805,0.122926,0.733157,0.97465,0.211171,0.410018,0.262629,0.145467,0.0686446,0.123098,0.663085,0.15899,0.93429,0.71363,0.374526,0.453307,0.239624,0.141913,0.208737,0.802178,0.0867864,0.942544,0.382787,0.942152,0.381816,0.0129075,0.374617,0.228337,0.474197,0.094106,0.659443,0.195698,0.811967,0.233648,0.0417952,0.761315,0.141766,0.271604,0.198822,0.10116,0.00250071,0.884966,0.739263,0.400649,0.872867,0.90772,0.738199,0.528167,0.426527,0.00831759,0.893208,0.60606,0.0889817,0.734373,0.383466,0.145042,0.540672,0.310744,0.190263,0.0199102,0.0283742,0.666995,0.531989,0.839544,0.830717,0.618955,0.00414526,0.40119,0.308683,0.423796,0.481955,0.75031,0.780254,0.27541,0.713164,0.569654,0.213266,0.890304,0.548957,0.456571,0.759376,0.910727,0.575466,0.831082,0.803297,0.401582,0.492665,0.900965,0.492246,0.539113,0.750439,0.0804603,0.0597848,0.0511252,0.0241038,0.423073,0.226969,0.165285,0.759064,0.321653,0.0572476,0.48063,0.177539,0.51521,0.792302,0.272688,0.688298,0.600497,0.660499,0.557725,0.814839,0.716789,0.26728,0.125075,0.34689,0.732446,0.840454,0.0703756,0.256176,0.77193,0.306219,0.241549,0.955502,0.368406,0.557898,0.0379466,0.189668,0.55306,0.755198,0.471508,0.902363,0.38505,0.461432,0.27496,0.0124548,0.400634,0.315793,0.948803,0.244592,0.287219,0.627049,0.750493,0.469151,0.482802,0.0659651,0.783604,0.603225,0.374873,0.567126,0.437162,0.574295,0.143997,0.0846247,0.960786,0.564058,0.927776,0.943618,0.66553,0.438569,0.141396,0.818563,0.570149,0.822675,0.729753,0.541453,0.432859,0.768629,0.708159,0.794052,0.302733,0.959867,0.173432,0.950251,0.690248,0.251027,0.517084,0.259219,0.315177,0.110657,0.602304,0.0744227,0.726826,0.611751,0.851492,0.0349901,0.587083,0.348117,0.15068,0.293777,0.0633529,0.080188,0.854424,0.109564,0.0580885,0.690147,0.557394,0.586371,0.457502,0.552175,0.664277,0.962844,0.492731,0.261368,0.418458,0.712462,0.466913,0.931367,0.418004,0.403844,0.944667,0.525931,0.7933,0.553363,0.610079,0.308736,0.690276,0.593588,0.616899,0.566612,0.786297,0.767998,0.153208,0.0462863,0.194374,0.878458,0.101127,0.249699,0.311526,0.445491,0.245985,0.973797,0.745114,0.559745,0.667559,0.123544,0.793747,0.365599,0.119124,0.173998,0.87396,0.271186,0.660035,0.74443,0.621053,0.649044,0.0964626,0.705679,0.972032,0.438442,0.84802,0.753057,0.0885352,0.817339,0.221269,0.86893,0.409886,0.402313,0.957658,0.542238,0.696817,0.69581,0.874085,0.792441,0.150938,0.869042,0.821466,0.718377,0.0855498,0.231662,0.50111,0.223925,0.81885,0.70013,0.27591,0.753084,0.896995,0.201329,0.789954,0.295739,0.237658,0.736187,0.702159,0.789563,0.757027,0.297611,0.60784,0.827356,0.238573,0.363241,0.00780404,0.889899,0.303071,0.549326,0.513899,0.0134135,0.352739,0.907829,0.200848,0.737091,0.676064,0.209447,0.0769256,0.54882,0.467178,0.508031,0.55927,0.168215,0.154079,0.375261,0.707021,0.236847,0.139935,0.591408,0.0182306,0.652215,0.773161,0.813902,0.145896,0.699898,0.483199,0.968446,0.357565,0.0480304,0.594859,0.803073,0.586718,0.192534,0.246971,0.543082,0.683343,0.00313318,0.632596,0.510265,0.626419,0.307123,0.634086,0.445747,0.416311,0.0169366,0.606737,0.396459,0.661322,0.308819,0.671276,0.637955,0.739108,0.137852,0.422331,0.725467,0.108901,0.258654,0.458958,0.514378,0.824587,0.490882,0.617648,0.389985,0.557148,0.235775,0.347748,0.361325,0.370333,0.127807,0.722203,0.7419,0.596012,0.270277,0.0260014,0.985206,0.443008,0.65602,0.275781,0.0717849,0.921119,0.664465,0.121611,0.131317,0.894399,0.671063,0.113823,0.595212,0.518756,0.947338,0.244785,0.380148,0.0414903,0.364851,0.997087,0.972526,0.552958,0.0287996,0.537182,0.817004,0.981727,0.2152,0.605984,0.292395,0.935149,0.686033,0.785724,0.831286,0.976763,0.712555,0.144577,0.282216,0.714292,0.320707,0.468077,0.949123,0.790895,0.968256,0.549177,0.136321,0.81705,0.288677,0.768186,0.584307,0.715367,0.424921,0.326672,0.850708,0.23647,0.0412438,0.713746,0.71302,0.568218,0.985753,0.257969,0.670251,0.472428,0.948238,0.00850934,0.222551,0.813418,0.641658,0.609469,0.52139,0.893653,0.633653,0.108016,0.267322,0.401826,0.946321,0.169925,0.85083,0.302224,0.220173,0.0403609,0.515961,0.953357,0.130931,0.436592,0.288119,0.918035,0.790797,0.572853,0.749738,0.965768,0.166025,0.275272,0.388342,0.473006,0.365997,0.815374,0.703787,0.375805,0.487734,0.109735,0.793131,0.978662,0.266005,0.738926,0.0362644,0.35013,0.829816,0.357112,0.948694,0.559754,0.363124,0.645056,0.115114,0.00207192,0.27202,0.385132,0.233493,0.689728,0.185957,0.0142829,0.57814,0.718627,0.254956,0.304379,0.0569668,0.440324,0.819315,0.00517309,0.860821,0.163682,0.326234,0.567689,0.479288,0.433813,0.540566,0.260721,0.156764,0.161492,0.820069,0.908377,0.624982,0.468649,0.58852,0.783421,0.217725,0.602251,0.272338,0.678045,0.645599,0.750908,0.786206,0.932931,0.0222839,0.791921,0.03028,0.716793,0.291346,0.0580528,0.595913,0.262006,0.883031,0.699366,0.496516,0.171331,0.621169,0.911691,0.775681,0.0966873,0.925521,0.770188,0.772644,0.881358,0.662284,0.651833,0.365061,0.145954,0.824024,0.215042,0.593702,0.972915,0.672932,0.868476,0.787403,0.59316,0.052583,0.420097,0.477462,0.117359,0.321148,0.877458,0.0640444,0.406846,0.541739,0.320801,0.00765103,0.16029,0.38683,0.32717,0.882939,0.000580013,0.524773,0.685104,0.162006,0.0957063,0.507488,0.539373,0.281473,0.606439,0.752683,0.76779,0.692523,0.631859,0.0674513,0.313615,0.692037,0.802544,0.602057,0.347541,0.450198,0.449337,0.915107,0.0353889,0.672043,0.678265,0.862908,0.134486,0.523938,0.0470959,0.841911,0.117229,0.519836,0.260554,0.616445,0.639758,0.122869,0.427401,0.729717,0.324936,0.272327,0.537877,0.259679,0.339791,0.114086,0.26587,0.170359,0.579667,0.648945,0.546128,0.766922,0.305946,0.207551,0.00883061,0.525527,0.675612,0.712109,0.842839,0.8359,0.542741,0.827265,0.160218,0.169327,0.589926,0.355325,0.499192,0.374393,0.437084,0.0323386,0.913035,0.986272,0.968504,0.175949,0.0451902,0.236949,0.624849,0.109061,0.772663,0.461405,0.822508,0.056687,0.649875,0.0106161,0.750179,0.0252901,0.642664,0.888141,0.397504,0.446686,0.764368,0.14328,0.865047,0.534069,0.998743,0.816071,0.591749,0.080041,0.347364,0.0767687,0.309228,0.406059,0.798363,0.560387,0.138074,0.868418,0.238076,0.185655,0.215133,0.215536,0.444352,0.9919,0.397087,0.383354,0.212433,0.231281,0.846562,0.583842,0.669939,0.0871036,0.866304,0.0652667,0.358419,0.735148,0.613488,0.153657,0.395536,0.201058,0.797252,0.57582,0.444428,0.763148,0.546007,0.0345908,0.993321,0.351793,0.199843,0.376577,0.753649,0.491657,0.379689,0.899804,0.96121,0.27881,0.98739,0.893544,0.78188,0.331867,0.114361,0.378236,0.715159,0.518727,0.0931719,0.146757,0.310187,0.819557,0.504957,0.455615,0.105891,0.335259,0.332287,0.0788031,0.512398,0.328739,0.404511,0.869313,0.0205421,0.991486,0.398365,0.751999,0.00103849,0.561836,0.371025,0.843967,0.161578,0.376645,0.995296,0.321723,0.397504,0.879512,0.0284458,0.572671,0.056134,0.794727,0.078206,0.240925,0.17846,0.682986,0.907997,0.294661,0.0652496,0.277828,0.274349,0.80441,0.569533,0.398149,0.308295,0.740708,0.0848293,0.758147,0.470482,0.525539,0.906222,0.898222,0.59024,0.981693,0.721783,0.150056,0.795615,0.906314,0.292075,0.0128875,0.866457,0.897741,0.438538,0.966099,0.70184,0.0660715,0.765598,0.800125,0.181683,0.834909,0.889726,0.226368,0.797072,0.320171,0.0915533,|0.357546,0.254833,0.83473,0.514402,0.193425,0.110019,0.236047,0.439834,0.29963,0.356326,0.00522834,0.69747,0.33293,0.0757384,0.245385,0.479513,0.103466,0.323435,0.466089,0.460681,0.553054,0.63033,0.61942,0.733551,0.807765,0.263133,0.19369,0.738344,0.561936,0.625928,0.70478,0.358166,0.623926,0.686123,0.329828,0.721581,0.852083,0.631181,0.847448,0.256502,0.420104,0.687318,0.944079,0.870764,0.701563,0.453909,0.530642,0.0649577,0.615321,0.174933,0.931906,0.0105321,0.770806,0.54746,0.380813,0.445365,0.390551,0.646584,0.341871,0.896893,0.151593,0.138032,0.558096,0.126049,0.106284,0.39897,0.0231809,0.868827,0.952405,0.713378,0.521597,0.505002,0.778264,0.966286,0.110556,0.465833,0.115074,0.38132,0.345973,0.931505,0.0572251,0.00746298,0.0204198,0.542157,0.938938,0.134973,0.166719,0.591573,0.875317,0.606249,0.991713,0.758835,0.365296,0.0932885,0.356762,0.648054,0.242256,0.648551,0.441906,0.679976,0.659014,0.505887,0.434922,0.643349,0.13092,0.855054,0.713217,0.662928,0.426367,0.479405,0.706273,0.752275,0.555459,0.35778,0.802379,0.377608,0.320476,0.083182,0.160455,0.29729,0.014494,0.108468,0.972468,0.286204,0.535261,0.565261,0.103578,0.87698,0.545553,0.324624,0.992194,0.639276,0.457241,0.120845,0.014877,0.0935135,0.241895,0.620262,0.799806,0.510714,0.394452,0.217397,0.273382,0.109631,0.271388,0.356831,0.119469,0.410149,0.997801,0.155827,0.0926046,0.0168013,0.804431,0.128464,0.440958,0.230907,0.0536217,0.0794458,0.809591,0.287751,0.0752901,0.637508,0.590353,0.96709,0.0047695,0.35025,0.38194,0.402911,0.834637,0.146783,0.966283,0.034355,0.164207,0.0361235,0.654571,0.615084,0.29583,0.250785,0.205802,0.35173,0.407575,0.456841,0.750256,0.191421,0.160094,0.45734,0.216812,0.0305735,0.453903,0.408764,0.859164,0.493416,0.612515,0.0815794,0.775035,0.0500466,0.754102,0.566986,0.415631,0.131763,0.626657,0.0133737,0.149468,0.457693,0.959662,0.269993,0.435238,0.383541,0.575086,0.948154,0.925363,0.123208,0.741807,0.247708,0.416203,0.973666,0.834313,0.65048,0.655996,0.735435,0.412563,0.161485,0.732069,0.146943,0.0537239,0.844273,0.0985069,0.972639,0.286053,0.459685,0.569132,0.956236,0.284046,0.490253,0.765532,0.826898,0.833346,0.101246,0.909933,0.772412,0.58373,0.46518,0.53477,0.0185134,0.0553146,0.79887,0.480868,0.418879,0.179062,0.871342,0.334853,0.733293,0.859505,0.321608,0.328272,0.638073,0.455453,0.107624,0.945815,0.167801,0.745475,0.830177,0.921411,0.0269974,0.80599,0.118515,0.592117,0.617323,0.892038,0.304594,0.965847,0.114554,0.64973,0.456408,0.0857948,0.31344,0.889962,0.672945,0.983059,0.814686,0.780688,0.817798,0.707064,0.920304,0.788684,0.312493,0.825671,0.114893,0.130074,0.561682,0.617836,0.265608,0.145507,0.67325,0.768532,0.372508,0.0170515,0.0656334,0.639773,0.854616,0.519452,0.87556,0.142963,0.960959,0.678068,0.720864,0.35377,0.257477,0.0497522,0.618207,0.145662,0.709022,0.291289,0.941949,0.389962,0.644704,0.777743,0.0662102,0.595314,0.397644,0.528402,0.729839,0.332113,0.548672,0.638965,0.732894,0.344609,0.00291866,0.531252,0.560819,0.236233,0.951871,0.757292,0.493972,0.777873,0.507769,0.173258,0.868401,0.716882,0.170184,0.958422,0.385553,0.591513,0.508236,0.564517,0.981279,0.451022,0.398868,0.729585,0.36283,0.153693,0.16435,0.795609,0.808526,0.40179,0.447114,0.198762,0.796399,0.732615,0.636331,0.396873,0.74146,0.954561,0.95818,0.259252,0.860848,0.484177,0.822805,0.952736,0.168537,0.302438,0.340514,0.457351,0.428863,0.039237,0.42422,0.113231,0.580169,0.114485,0.103802,0.591115,0.510498,0.0959117,0.502879,0.974119,0.135475,0.776369,0.505085,0.359062,0.255078,0.754318,0.361103,0.279433,0.0992718,0.530694,0.419873,0.950073,0.858134,0.225852,0.382077,0.708388,0.486895,0.925507,0.00784051,0.512011,0.884304,0.055483,0.871115,0.81178,0.711764,0.890817,0.932101,0.421085,0.65064,0.854592,0.34254,0.409846,0.128354,0.84086,0.581771,0.582792,0.851214,0.199549,0.372902,0.670828,0.0196789,0.64138,0.659672,0.478283,0.0725833,0.203813,0.658787,0.824532,0.615336,0.0984223,0.973058,0.340464,0.976293,0.239736,0.514434,0.193207,0.90107,0.626266,0.782967,0.550399,0.686215,0.0764112,0.976218,0.208846,0.856614,0.752799,0.113021,0.102983,0.929328,0.126677,0.589164,0.46448,0.37705,0.957791,0.580721,0.214473,0.963081,0.0459211,0.40997,0.313248,0.269166,0.289426,0.0296246,0.742999,0.0578862,0.747758,0.580321,0.628161,0.274445,0.341378,0.283077,0.0142538,0.764352,0.658639,0.780213,0.605959,0.685347,0.452865,0.439142,0.76642,0.674954,0.135368,0.402181,0.337159,0.818059,0.672719,0.276598,0.558447,0.860402,0.737771,0.7713,0.354274,0.75345,0.674235,0.31513,0.708948,0.721703,0.428109,0.0556015,0.69985,0.301775,0.676477,0.103605,0.40523,0.230629,0.742897,0.279806,0.306525,0.200617,0.140645,0.553218,0.320978,0.205989,0.575639,0.957596,0.399707,0.917485,0.114337,0.0987213,0.467824,0.966157,0.590256,0.397783,0.939724,0.246562,0.127434,0.247271,0.233807,0.617809,0.712436,0.0426791,0.332399,0.992516,0.194387,0.324763,0.915899,0.869094,0.125237,0.0764993,0.106257,0.784891,0.254612,0.329959,0.260157,0.634585,0.960986,0.738744,0.424284,0.0936149,0.492225,0.219588,0.221307,0.0331274,0.872238,0.0327246,0.00654012,0.39389,0.152058,0.440863,0.241616,0.861014,0.478572,0.370216,0.646714,0.664148,0.800729,0.851798,0.945723,0.496412,0.00538623,0.479833,0.758781,0.849973,0.446806,0.766069,0.382074,0.560669,0.855232,0.549298,0.649164,0.548001,0.410298,0.705955,0.216553,0.393404,0.288768,0.126804,0.366729,0.644524,0.762679,0.393727,0.0425859,0.0731165,0.933694,0.371813,0.0683864,0.867939,0.307312,0.838676,0.965933,0.591726,0.287073,0.232489,0.657327,0.124046,0.638152,0.51178,0.750171,0.774193,0.459458,0.61896,0.667188,0.000594497,0.270042,0.666319,0.481093,0.46531,0.33006,0.298292,0.0193185,0.300707,0.691317,0.289692,0.679519,0.54215,0.803648,0.383628,0.817656,0.0950983,0.132177,0.762599,0.247531,0.973724,0.528741,0.174506,0.471454,0.797935,0.0612799,0.947612,0.296758,0.244915,0.952172,0.425982,0.358615,0.885138,0.539576,0.257223,0.425623,0.52538,0.355405,0.541784,0.302637,0.296663,0.157314,0.0131032,0.625633,0.877658,0.458418,0.452739,0.82527,0.895809,0.483958,0.447983,0.554607,0.833795,0.542663,0.744447,0.323504,0.436752,0.904469,0.381572,0.553182,0.915414,0.889156,0.279499,0.337039,0.127615,0.47291,0.732271,0.182904,0.197398,0.904669,0.535548,0.972346,0.929014,0.776081,0.374864,0.534852,0.0556,0.584437,0.787635,0.967692,0.902215,0.989371,0.570615,0.956281,0.664151,0.568516,0.0629239,0.917631,0.104431,0.0277316,0.0542149,0.865993,0.676646,0.693452,0.616347,0.115917,0.844189,0.916114,0.898444,0.117907,0.887684,0.754442,0.456526,0.572894,0.816993,0.275906,0.0569558,0.519954,0.552682,0.117063,0.632075,0.286081,0.534054,0.627104,0.861524,0.318543,0.342676,0.141947,0.894327,0.955669,0.471387,0.847376,0.596774,0.909951,0.0693097,0.588565,0.913467,0.867129,0.201687,0.629999,0.187001,0.121267,0.75252,0.685119,0.766039,0.645941,0.881244,0.213861,0.0570243,0.865684,0.777961,0.563235,0.697937,0.211544,0.94289,0.726458,0.204017,0.252095,0.048319,0.506485,0.678575,0.0192975,0.483068,0.215998,0.207772,0.71962,0.746164,0.11923,0.821912,0.813007,0.951538,0.0629241,0.394499,0.844503,0.125252,0.0494905,0.965921,0.850113,0.616872,0.420564,0.871159,0.59243,0.820097,0.711833,0.995546,0.206443,0.276226,0.33466,0.0359335,0.106678,0.779902,0.719591,0.0661861,0.313947,0.0146473,0.407397,0.100134,0.241913,0.6322,0.242517,0.0436606,0.372753,0.635228,0.417389,0.480988,0.0329111,0.967684,0.580884,0.227241,0.495592,0.212806,0.116006,0.264834,0.750091,0.142208,0.744856,0.16097,0.327047,0.264848,0.194737,0.2954,0.413888,0.658436,0.64272,0.486171,0.139474,0.0697894,0.550635,0.0509667,0.772473,0.790363,0.177985,0.0491176,0.549124,0.808161,0.201808,0.131094,0.0833448,0.849213,0.502255,0.732778,0.364744,0.91099,0.418199,0.505917,0.178232,0.451825,0.870459,0.432718,0.767324,0.157567,0.382822,0.00944316,0.103787,0.821057,0.241834,0.483452,0.188243,0.890767,0.956606,0.233521,0.426762,0.806303,0.324239,0.541792,0.472387,0.926593,0.363275,0.528394,0.156631,0.147835,0.0844735,0.380471,0.856824,0.599331,0.654899,0.505926,0.172401,0.445794,0.995904,0.892625,0.193018,0.329331,0.876275,0.135328,0.129409,0.821652,0.172789,0.666215,0.620589,0.812648,0.737359,0.861058,0.175388,0.681009,0.981711,0.829406,0.922869,0.664496,0.13145,0.165822,0.638234,0.0486647,0.220408,0.983687,0.392284,0.0234928,0.0677546,0.361288,0.821822,0.991706,0.333022,0.623835,0.45113,0.0547341,0.793769,0.234633,0.205803,0.809239,0.333439,0.317608,0.764792,0.0644047,0.206753,0.238855,0.881434,0.9294,0.750045,0.659118,0.30542,0.122505,0.685087,0.202007,0.68582,0.647967,0.015219,0.0739626,0.842765,0.870116,0.4612,0.828492,0.860533,0.663387,0.459734,0.885286,0.199874,0.279004,0.755015,0.220024,0.143743,0.716141,0.676209,0.239708,0.932799,0.489825,0.648145,0.598355,0.221575,0.632839,0.331537,0.165443,0.808833,0.84948,0.814995,0.407699,0.371356,0.00458318,0.0531735,0.911058,0.29755,0.197825,0.483545,0.395602,0.421143,0.675019,0.945095,0.221805,0.137851,0.174172,0.85154,0.346096,0.400891,0.410276,0.0905144,0.913129,0.996636,0.32293,0.141022,0.558977,0.371973,0.130223,0.347422,0.663517,|0.520725,0.486644,0.162268,0.363165,0.998575,0.167436,0.14022,0.966687,0.370778,0.730799,0.59252,0.128869,0.049327,0.553996,0.717284,0.24879,0.0508898,0.58713,0.522822,0.486213,0.0985212,0.34143,0.214496,0.0555673,0.869595,0.990377,0.75225,0.798033,0.713701,0.431833,0.623163,0.944052,0.0443282,0.546939,0.569243,0.462885,0.837875,0.646405,0.303814,0.985414,0.141041,0.980223,0.715675,0.985357,0.32041,0.462936,0.963504,0.906099,0.632703,0.625351,0.0298766,0.186029,0.246379,0.386386,0.869818,0.282111,0.609565,0.634139,0.885723,0.148858,0.995911,0.721142,0.34827,0.892591,0.934557,0.622072,0.512479,0.526753,0.541212,0.06405,0.0347462,0.0179654,0.225138,0.844988,0.419361,0.151546,0.0754737,0.859542,0.276015,0.406983,0.340197,0.775468,0.479957,0.313354,0.294757,0.206372,0.548359,0.0643917,0.543591,0.538016,0.664824,0.181726,0.374674,0.518701,0.755086,0.198078,0.100049,0.317001,0.439754,0.053739,0.313775,0.179095,0.775116,0.289851,0.971808,0.370522,0.610467,0.0681386,0.239152,0.371457,0.792603,0.25961,0.309533,0.253168,0.911104,0.512475,0.685963,0.583987,0.431692,0.501568,0.488914,0.0638202,0.224843,0.938667,0.927628,0.71255,0.813826,0.70713,0.108991,0.370142,0.426303,0.530582,0.526993,0.551157,0.614701,0.0856071,0.675807,0.193788,0.882042,0.558375,0.780284,0.978924,0.806904,0.743434,0.630955,0.332875,0.180829,0.825347,0.150446,0.264096,0.0783568,0.376631,0.0588941,0.468772,0.660998,0.984443,0.510948,0.840643,0.256462,0.540767,0.861068,0.451616,0.384762,0.0252176,0.257607,0.155029,0.11147,0.421776,0.316862,0.288827,0.474548,0.83688,0.010276,0.429424,0.46609,0.538321,0.939865,0.0950712,0.368222,0.381617,0.15543,0.749618,0.368905,0.230592,0.508585,0.531009,0.0408965,0.852119,0.398163,0.215339,0.276245,0.573026,0.00620127,0.892107,0.544521,0.44528,0.467995,0.903018,0.458084,0.274208,0.514086,0.784981,0.29132,0.47064,0.821737,0.996393,0.744516,0.906512,0.477747,0.717033,0.301375,0.641593,0.152242,0.989001,0.117521,0.756223,0.92387,0.827844,0.187068,0.36875,0.493968,0.896737,0.144686,0.165756,0.618656,0.338387,0.508119,0.963373,0.818756,0.929053,0.0730176,0.94678,0.265246,0.708192,0.00659865,0.00421482,0.358256,0.842238,0.0784132,0.600278,0.967229,0.851674,0.959544,0.695495,0.926863,0.525724,0.96006,0.528443,0.938253,0.930032,0.768327,0.618426,0.563791,0.556985,0.877785,0.862721,0.00748074,0.0364823,0.562461,0.67685,0.617173,0.282611,0.130432,0.601547,0.223025,0.890775,0.851932,0.924515,0.187089,0.0769343,0.256577,0.156443,0.682744,0.554256,0.867038,0.45811,0.805897,0.911514,0.765882,0.487806,0.773946,0.109781,0.215236,0.422733,0.00516754,0.618085,0.432856,0.723193,0.80129,0.759785,0.903364,0.639774,0.283303,0.379289,0.800306,0.836233,0.00689518,0.436679,0.74215,0.664115,0.357167,0.701376,0.577054,0.482078,0.534971,0.246792,0.692051,0.967625,0.0322856,0.233048,0.0369391,0.437939,0.409108,0.272466,0.726846,0.315754,0.310141,0.449572,0.266368,0.466548,0.140753,0.976161,0.0790137,0.96615,0.420077,0.271691,0.951843,0.536614,0.483898,0.198814,0.154632,0.823332,0.0741348,0.176453,0.203718,0.867686,0.535858,0.450742,0.78255,0.395262,0.368979,0.0883067,0.639578,0.958954,0.171424,0.0115104,0.00481308,0.711376,0.947684,0.458574,0.565583,0.180911,0.0291231,0.817676,0.598804,0.588299,0.128316,0.74081,0.0375245,0.33084,0.323156,0.352723,0.717941,0.55426,0.139319,0.34743,0.236758,0.981444,0.615756,0.940343,0.164651,0.692531,0.289882,0.662179,0.751249,0.499412,0.697351,0.608577,0.926646,0.147461,0.540407,0.955284,0.377928,0.061635,0.954104,0.539446,0.144924,0.609466,0.527595,0.69891,0.204323,0.841601,0.95903,0.793362,0.0955906,0.432839,0.528956,0.397076,0.41478,0.371348,0.790456,0.953359,0.688891,0.856711,0.136568,0.17516,0.282671,0.699224,0.000820279,0.527379,0.527848,0.906812,0.756538,0.790722,0.598141,0.762053,0.765985,0.0844861,0.203393,0.760236,0.30172,0.949248,0.49572,0.163915,0.129306,0.916281,0.528164,0.118336,0.587582,0.113124,0.478618,0.962191,0.771864,0.721861,0.224433,0.31677,0.829252,0.758675,0.601487,0.755288,0.538679,0.708213,0.136466,0.793999,0.678945,0.183332,0.374654,0.501708,0.0826083,0.685582,0.07361,0.266778,0.577106,0.689688,0.628516,0.204114,0.27087,0.552904,0.94452,0.033859,0.564815,0.469095,0.319938,0.548374,0.282153,0.875477,0.18425,0.556113,0.756315,0.626127,0.645999,0.567819,0.104433,0.999736,0.294135,0.470011,0.754284,0.369801,0.570862,0.910582,0.109159,0.675136,0.258172,0.77951,0.962762,0.428592,0.0202822,0.971486,0.972044,0.0461709,0.708107,0.601694,0.294896,0.52885,0.823584,0.957039,0.890519,0.0374818,0.496672,0.425975,0.618793,0.094229,0.0176339,0.414838,0.503271,0.685635,0.479705,0.788305,0.35065,0.144641,0.812944,0.397061,0.196318,0.941486,0.869658,0.355219,0.385027,0.49809,0.623316,0.694049,0.0749868,0.27162,0.52564,0.421372,0.453997,0.53768,0.91234,0.644474,0.301792,0.222642,0.289011,0.965003,0.19045,0.185386,0.671823,0.945219,0.523949,0.449479,0.423833,0.546181,0.300918,0.691239,0.803676,0.703394,0.793336,0.787162,0.396365,0.851182,0.209447,0.555934,0.519257,0.825358,0.975159,0.00445789,0.764912,0.547097,0.0113043,0.207657,0.940216,0.706893,0.493615,0.0937131,0.478155,0.674972,0.743038,0.394541,0.746441,0.0209631,0.9142,0.342291,0.378316,0.632005,0.365309,0.568675,0.63127,0.744347,0.839628,0.505354,0.223252,0.751372,0.702512,0.107509,0.969829,0.110723,0.791691,0.905352,0.360547,0.274401,0.0955399,0.318175,0.230493,0.630372,0.484858,0.265572,0.275743,0.354823,0.973905,0.0166906,0.963315,0.367127,0.130616,0.0354568,0.659289,0.0467175,0.882035,0.822733,0.401696,0.00904995,0.986034,0.963582,0.263912,0.66253,0.855537,0.820938,0.889374,0.364268,0.808025,0.133379,0.397614,0.865749,0.126087,0.483457,0.527636,0.46623,0.190705,0.553374,0.887818,0.457468,0.75213,0.58509,0.0673447,0.582309,0.249706,0.265475,0.301353,0.99993,0.599652,0.496154,0.784967,0.499612,0.04917,0.173365,0.159797,0.716836,0.471314,0.605582,0.133855,0.49692,0.445357,0.20634,0.736636,0.607202,0.393482,0.967085,0.918782,0.0364503,0.0930709,0.75026,0.371419,0.432477,0.575029,0.703891,0.829377,0.235262,0.852071,0.974354,0.552337,0.0719538,0.395923,0.133185,0.0473711,0.781882,0.773092,0.067524,0.681628,0.673508,0.138367,0.810393,0.483605,0.742824,0.990818,0.528837,0.973437,0.216532,0.119061,0.351177,0.145392,0.260902,0.081751,0.970477,0.421932,0.747757,0.274311,0.362253,0.725612,0.818319,0.102892,0.621779,0.0461053,0.333823,0.229859,0.238635,0.994977,0.498711,0.771697,0.191812,0.178973,0.423401,0.376555,0.931518,0.83245,0.64921,0.196777,0.463574,0.175907,0.27993,0.904783,0.839934,0.863583,0.532922,0.973217,0.898519,0.324372,0.673416,0.398462,0.429462,0.877869,0.0592439,0.477422,0.954835,0.399771,0.596805,0.537585,0.877312,0.21892,0.253298,0.81855,0.65112,0.946666,0.842105,0.859594,0.0211008,0.395585,0.548386,0.656113,0.00216115,0.757326,0.995929,0.777134,0.441004,0.502069,0.494501,0.115949,0.388366,0.73769,0.70673,0.965736,0.513782,0.86389,0.88804,0.35874,0.675892,0.251947,0.583337,0.807907,0.188171,0.223812,0.00488186,0.611037,0.440077,0.166345,0.559729,0.863836,0.272546,0.914647,0.00491953,0.165246,0.148873,0.952849,0.702288,0.559793,0.427216,0.678631,0.0828947,0.5571,0.427949,0.695978,0.809779,0.211299,0.0236455,0.697784,0.737822,0.680181,0.462384,0.375009,0.605084,0.227313,0.226209,0.060329,0.375005,0.579427,0.0108059,0.255032,0.322357,0.617855,0.026246,0.871374,0.173995,0.121614,0.880425,0.932226,0.544245,0.919833,0.697726,0.174351,0.0100172,0.849574,0.796971,0.226421,0.996211,0.486691,0.388593,0.23023,0.0916332,0.541071,0.865559,0.832463,0.366763,0.557171,0.980401,0.196465,0.900946,0.227567,0.180427,0.800755,0.535167,0.0249294,0.274813,0.0881882,0.235934,0.662966,0.345842,0.0415385,0.0714377,0.469238,0.0719844,0.097316,0.731195,0.467536,0.464766,0.605085,0.237591,0.801878,0.942246,0.310948,0.636533,0.972478,0.750561,0.0139835,0.47328,0.256756,0.131374,0.980722,0.216585,0.60806,0.973189,0.0514249,0.225959,0.772088,0.140347,0.465744,0.385387,0.425776,0.188878,0.129069,0.658467,0.303296,0.291682,0.293224,0.0792311,0.758963,0.372946,0.100797,0.361917,0.580184,0.381759,0.879562,0.732142,0.316203,0.325633,0.694291,0.341172,0.937361,0.12161,0.329217,0.412159,0.166336,0.363256,0.268103,0.486703,0.414289,0.978846,0.657973,0.469178,0.67741,0.801937,0.0392025,0.346874,0.501285,0.716819,0.661503,0.64911,0.744301,0.752876,0.181218,0.595333,0.248045,0.69301,0.548018,0.519087,0.773002,0.0482656,0.296386,0.413418,0.875741,0.119384,0.604331,0.837216,0.0695327,0.621028,0.373649,0.450222,0.643081,0.609459,0.28681,0.981938,0.28745,0.471103,0.638646,0.416028,0.580998,0.978364,0.45737,0.417346,0.763888,0.700066,0.223877,0.19341,0.976083,0.451733,0.0154285,0.0403232,0.110379,0.591251,0.257927,0.003124,0.405063,0.05972,0.791096,0.481954,0.928835,0.00695825,0.00733787,0.698135,0.539691,0.372258,0.312403,0.228092,0.647792,0.144332,0.129718,0.635789,0.197127,0.395163,0.389303,0.438326,0.348834,0.499995,0.530192,0.639659,0.42312,0.823264,0.815939,0.5382,0.905698,0.592339,0.173256,0.554025,0.646025,0.462444,0.536341,0.312448,0.111225,0.326083,0.553734,0.661767,0.00569743,0.920684,0.440088,0.101662,|0.82327,0.255577,0.529686,0.199332,0.0818503,0.709323,0.475121,0.164403,0.822085,0.83889,0.938417,0.978931,0.988931,0.385432,0.618622,0.961299,0.290377,0.688829,0.661215,0.789294,0.519647,0.343248,0.991677,0.713426,0.957685,0.528213,0.452867,0.610012,0.808486,0.872154,0.652322,0.478154,0.79959,0.516305,0.949555,0.864306,0.486153,0.963167,0.849721,0.501843,0.184419,0.389218,0.346405,0.885847,0.160723,0.406013,0.91637,0.299842,0.74814,0.397609,0.872496,0.39642,0.919656,0.721386,0.931024,0.41227,0.511406,0.0369514,0.852043,0.91477,0.373402,0.387753,0.980205,0.0229131,0.436721,0.026503,0.586393,0.628719,0.73183,0.139968,0.255135,0.855317,0.221476,0.888513,0.0214434,0.338724,0.783051,0.928177,0.370138,0.971505,0.197146,0.329706,0.818937,0.56758,0.00316352,0.221633,0.927408,0.601961,0.0299917,0.517112,0.584635,0.143793,0.599183,0.587125,0.359454,0.213293,0.791859,0.0411745,0.0866466,0.313762,0.230919,0.0198906,0.773223,0.645918,0.884206,0.936977,0.0680329,0.803008,0.633723,0.74062,0.252394,0.380727,0.641584,0.715613,0.156842,0.560673,0.768133,0.97753,0.707329,0.834347,0.179422,0.0396251,0.999623,0.291456,0.863642,0.801854,0.142842,0.013145,0.386554,0.659682,0.600524,0.963265,0.273364,0.882427,0.559965,0.686042,0.619919,0.394167,0.0772181,0.628329,0.185963,0.503366,0.34331,0.256769,0.307037,0.863766,0.0372173,0.0305947,0.373394,0.194575,0.336777,0.39289,0.423156,0.854922,0.0488836,0.658212,0.36856,0.523209,0.18436,0.147436,0.359793,0.0742365,0.691346,0.380125,0.859724,0.453738,0.502845,0.424589,0.538261,0.959226,0.405629,0.647118,0.215504,0.969477,0.928745,0.211776,0.514084,0.334845,0.453811,0.56246,0.975922,0.28027,0.4334,0.828595,0.349537,0.570154,0.88493,0.531714,0.323317,0.444327,0.932075,0.259414,0.566012,0.216004,0.0773667,0.626238,0.563392,0.36097,0.545718,0.590379,0.369881,0.826706,0.2796,0.373845,0.841653,0.873175,0.969217,0.475619,0.557032,0.515187,0.897864,0.692193,0.103248,0.488956,0.356057,0.104303,0.93802,0.991576,0.944753,0.523911,0.797016,0.959693,0.615539,0.348837,0.597003,0.757608,0.833603,0.00923961,0.337961,0.745945,0.853498,0.367045,0.343197,0.168908,0.680545,0.233304,0.00227505,0.711977,0.331324,0.574824,0.855144,0.679083,0.426597,0.841617,0.294715,0.230698,0.351524,0.812213,0.90828,0.650893,0.362785,0.942344,0.301028,0.738038,0.0347641,0.0243818,0.923293,0.496729,0.231868,0.641854,0.368159,0.257741,0.17198,0.946059,0.775917,0.951769,0.831408,0.920315,0.358398,0.23833,0.124974,0.18202,0.0358448,0.603376,0.861362,0.402609,0.81219,0.571395,0.964267,0.123857,0.492759,0.227926,0.403219,0.432138,0.112722,0.0069803,0.351587,0.464641,0.927998,0.251623,0.98641,0.38432,0.114545,0.293921,0.375849,0.714224,0.48436,0.254288,0.962214,0.941394,0.780562,0.756082,0.663488,0.647246,0.666419,0.946134,0.84319,0.611049,0.709655,0.625855,0.827975,0.48208,0.690988,0.465156,0.978283,0.2254,0.830591,0.880276,0.0148277,0.829054,0.518243,0.85735,0.582035,0.765035,0.558463,0.187282,0.948033,0.796635,0.855781,0.717164,0.201748,0.219823,0.281998,0.137009,0.127088,0.132104,0.997112,0.103155,0.943169,0.764182,0.241028,0.0874145,0.549183,0.610819,0.492673,0.108587,0.67121,0.993129,0.401634,0.738709,0.760991,0.669813,0.989092,0.207693,0.854121,0.571808,0.236044,0.856744,0.472412,0.489446,0.286916,0.73281,0.779891,0.435625,0.119304,0.592066,0.51596,0.809106,0.0581932,0.11117,0.615374,0.500361,0.937782,0.146067,0.990078,0.248453,0.67988,0.14635,0.360763,0.594161,0.53183,0.123828,0.700566,0.616982,0.494755,0.171999,0.727511,0.181118,0.868986,0.388629,0.687431,0.954984,0.157872,0.0130154,0.0130721,0.850825,0.185765,0.118528,0.761204,0.868745,0.311071,0.232426,0.772055,0.840484,0.887303,0.91531,0.783364,0.545529,0.647662,0.449085,0.998051,0.768769,0.502019,0.395387,0.46896,0.225708,0.842484,0.879265,0.606955,0.152204,0.695002,0.920735,0.656814,0.770909,0.654041,0.472516,0.931978,0.388957,0.00796539,0.543404,0.52194,0.120383,0.350909,0.0872682,0.869992,0.056509,0.714929,0.669206,0.919156,0.813695,0.584303,0.90713,0.839473,0.435118,0.979119,0.802455,0.393945,0.957737,0.40081,0.42975,0.212679,0.485934,0.476968,0.111201,0.786395,0.574358,0.360083,0.376293,0.571228,0.621869,0.0687599,0.167935,0.388394,0.191349,0.159756,0.422768,0.238823,0.865125,0.325543,0.776196,0.619279,0.55346,0.150454,0.80806,0.910412,0.0931411,0.954581,0.222064,0.680566,0.0908955,0.819176,0.114533,0.601941,0.569681,0.71303,0.214013,0.672786,0.254753,0.994535,0.73218,0.809273,0.164499,0.145653,0.17478,0.675127,0.79512,0.325373,0.264861,0.199336,0.412776,0.606108,0.123682,0.097587,0.270388,0.567465,0.843303,0.912838,0.472897,0.772447,0.642954,0.640709,0.551109,0.93647,0.198582,0.805795,0.985792,0.39324,0.740819,0.258625,0.725597,0.852946,0.400283,0.65535,0.216472,0.578702,0.170071,0.972676,0.494978,0.923634,0.98662,0.750394,0.751343,0.87899,0.424565,0.316613,0.0504675,0.433021,0.588462,0.622963,0.95578,0.0116943,0.731483,0.938772,0.33154,0.875801,0.556917,0.444873,0.694923,0.0855144,0.487032,0.0474141,0.636116,0.343939,0.161155,0.661844,0.423112,0.483615,0.124393,0.888926,0.425881,0.210673,0.194789,0.387851,0.279348,0.402421,0.984156,0.458656,0.832711,0.620791,0.700253,0.569838,0.764742,0.25598,0.658377,0.744345,0.756477,0.976303,0.418601,0.0451385,0.469487,0.884625,0.452053,0.661194,0.0245554,0.783547,0.995473,0.580141,0.554234,0.432645,0.842366,0.278149,0.841834,0.16807,0.693647,0.162185,0.517558,0.930782,0.797237,0.352018,0.706216,0.117426,0.278619,0.135908,0.372167,0.783146,0.830578,0.604462,0.298203,0.250774,0.503552,0.471076,0.0894166,0.724035,0.428129,0.0293261,0.151254,0.868559,0.0394445,0.451616,0.578774,0.122095,0.159984,0.356247,0.612191,0.691425,0.993008,0.126129,0.366948,0.247468,0.763897,0.263106,0.908928,0.501898,0.828361,0.834551,0.258861,0.20162,0.985529,0.651416,0.153943,0.879288,0.731981,0.154232,0.806348,0.437076,0.714008,0.500962,0.754517,0.194422,0.770217,0.659873,0.706686,0.156561,0.15916,0.62778,0.143048,0.472083,0.00493878,0.908666,0.645277,0.219636,0.452783,0.269973,0.646892,0.855544,0.910767,0.618691,0.435708,0.604338,0.110377,0.117558,0.900457,0.434334,0.332429,0.852917,0.112777,0.250528,0.536646,0.0569948,0.893494,0.0383751,0.973726,0.0361379,0.183379,0.536911,0.555288,0.968557,0.0190931,0.496363,0.581637,0.366063,0.320884,0.654052,0.891052,0.538656,0.310198,0.945617,0.116941,0.344781,0.355965,0.547256,0.855097,0.822721,0.823897,0.903138,0.202312,0.62929,0.249026,0.236906,0.439189,0.371782,0.354332,0.452781,0.433256,0.359608,0.556581,0.770045,0.84521,0.826377,0.507423,0.984619,0.551084,0.0207646,0.89073,0.904453,0.796288,0.555081,0.52234,0.862278,0.9413,0.174543,0.569174,0.285695,0.880782,0.398732,0.859822,0.747458,0.300688,0.0424484,0.880152,0.0335079,0.449305,0.201078,0.677953,0.00191087,0.492748,0.383843,0.908584,0.377678,0.432879,0.597551,0.440713,0.505821,0.580444,0.641047,0.279321,0.0202284,0.158349,0.3932,0.158336,0.759051,0.914639,0.00899297,0.942565,0.667727,0.44021,0.767342,0.319746,0.778263,0.396159,0.163259,0.485567,0.284885,0.24165,0.253896,0.797017,0.82203,0.147253,0.507033,0.754929,0.544199,0.809754,0.684304,0.480465,0.0963198,0.0168999,0.400465,0.575179,0.178786,0.822315,0.197271,0.848324,0.714128,0.677472,0.187273,0.510054,0.991729,0.806076,0.486545,0.482199,0.868302,0.656795,0.75054,0.901902,0.529917,0.557968,0.784887,0.318423,0.42861,0.296233,0.0538148,0.803842,0.386472,0.0374582,0.341813,0.414573,0.685485,0.548979,0.783499,0.882175,0.806059,0.56982,0.157141,0.485461,0.0170364,0.555571,0.604316,0.432612,0.0758917,0.324481,0.807664,0.502074,0.992983,0.584653,0.406045,0.0492609,0.787596,0.962427,0.99953,0.646857,0.510784,0.318789,0.0232038,0.230484,0.842403,0.50375,0.705368,0.668402,0.602083,0.932076,0.942574,0.58393,0.0285453,0.385526,0.291618,0.867267,0.530111,0.0732068,0.720022,0.670421,0.709274,0.153908,0.199427,0.0930015,0.284557,0.504833,0.469208,0.882619,0.535333,0.590871,0.0545449,0.505163,0.813737,0.00332755,0.525118,0.843331,0.396975,0.865868,0.427816,0.427591,0.469938,0.584052,0.395579,0.889215,0.787832,0.457456,0.480896,0.0247291,0.776131,0.244862,0.548006,0.60595,0.427793,0.0790469,0.371948,0.391337,0.247165,0.199719,0.48818,0.402813,0.907175,0.335685,0.677156,0.418369,0.472019,0.694425,0.226474,0.524063,0.0184821,0.323735,0.955812,0.439558,0.120381,0.376589,0.885714,0.646616,0.511583,0.800833,0.96952,0.688338,0.441063,0.148117,0.298303,0.0477028,0.74223,0.676096,0.45448,0.396725,0.435103,0.123336,0.53744,0.157567,0.510016,0.174538,0.99541,0.439984,0.378149,0.614228,0.809339,0.318197,0.43674,0.439448,0.508288,0.59936,0.167941,0.5943,0.155499,0.0954616,0.000958264,0.395021,0.799313,0.183285,0.874318,0.143929,0.0238892,0.175477,0.611566,0.385275,0.138598,0.749423,0.0551323,0.204276,0.897938,0.214159,0.41542,0.769322,0.0329686,0.76627,0.891579,0.293555,0.410261,0.615693,0.235486,0.858779,0.0568203,0.813092,0.263299,0.0556011,0.864927,0.148582,0.855453,0.718368,0.843641,0.555466,0.093077,0.307818,0.10929,0.121255,0.823707,0.246791,0.807702,0.280109,0.00444442,0.118781,0.297301,0.832845,0.626341,0.371956,0.331493,0.829089,|0.627339,0.695344,0.655564,0.915983,0.610865,0.624923,0.245036,0.489096,0.807268,0.153955,0.357939,0.842925,0.925661,0.80155,0.746272,0.718308,0.998621,0.881345,0.754358,0.118015,0.572833,0.515525,0.912204,0.547888,0.77089,0.769599,0.877128,0.0201964,0.946133,0.795048,0.724095,0.606695,0.93934,0.805119,0.643882,0.779868,0.190395,0.0617825,0.228254,0.864858,0.0930539,0.584317,0.226312,0.297324,0.309501,0.909663,0.949614,0.0411544,0.253468,0.625746,0.613923,0.35745,0.577929,0.757926,0.465365,0.255891,0.77189,0.411603,0.120858,0.73913,0.148356,0.924309,0.323499,0.0954434,0.501924,0.327944,0.572975,0.229692,0.628175,0.890137,0.969746,0.502634,0.387544,0.113915,0.936271,0.933651,0.58374,0.537759,0.172241,0.33112,0.8674,0.741253,0.208294,0.168529,0.937133,0.27173,0.896466,0.81428,0.734316,0.270008,0.694257,0.281971,0.863627,0.891789,0.621415,0.764861,0.722831,0.0181559,0.018102,0.804921,0.0748823,0.565317,0.50674,0.715247,0.460437,0.965348,0.25862,0.508576,0.848259,0.948488,0.205339,0.219966,0.0539582,0.0126907,0.212347,0.257048,0.0327486,0.775982,0.194196,0.770889,0.305646,0.436921,0.0102571,0.835763,0.101879,0.778583,0.174775,0.422014,0.882812,0.0295735,0.549535,0.302724,0.846768,0.999882,0.963307,0.62483,0.52798,0.0748007,0.794656,0.495052,0.901638,0.980279,0.0589746,0.188065,0.913033,0.12534,0.555096,0.0874418,0.295739,0.582909,0.607575,0.827064,0.755265,0.513808,0.987408,0.450084,0.608215,0.727747,0.971065,0.655762,0.655428,0.299097,0.965457,0.576387,0.938806,0.53173,0.0310279,0.42657,0.227783,0.768731,0.184971,0.461726,0.504126,0.903045,0.372491,0.207331,0.528894,0.034945,0.289956,0.887609,0.587987,0.285548,0.3277,0.594494,0.93872,0.270095,0.835542,0.313727,0.453663,0.0512118,0.902193,0.417627,0.223824,0.290924,0.134227,0.653638,0.250556,0.734295,0.81106,0.825727,0.753309,0.448518,0.963183,0.438873,0.690475,0.923706,0.980455,0.294525,0.836503,0.413244,0.189704,0.950689,0.0883608,0.509215,0.10042,0.713673,0.157793,0.122695,0.725653,0.883356,0.737498,0.803584,0.1314,0.926886,0.106637,0.156739,0.0475996,0.261919,0.58165,0.0374737,0.994928,0.91654,0.653916,0.467896,0.455601,0.19936,0.320936,0.974414,0.670387,0.793054,0.80508,0.515527,0.783671,0.546943,0.0533586,0.0926775,0.246461,0.31494,0.929681,0.632816,0.817953,0.853798,0.902149,0.217266,0.534951,0.828055,0.249891,0.104255,0.848219,0.577856,0.384019,0.501069,0.527114,0.349622,0.301413,0.204611,0.821193,0.620674,0.435344,0.747861,0.283104,0.882972,0.636017,0.14473,0.398096,0.61493,0.714624,0.329157,0.965325,0.397008,0.465666,0.543242,0.0573698,0.407104,0.191736,0.551813,0.656592,0.694688,0.639514,0.657675,0.535316,0.759958,0.456907,0.699666,0.365464,0.63506,0.882289,0.738864,0.99154,0.214313,0.672661,0.572008,0.239425,0.474044,0.162354,0.945102,0.847589,0.400741,0.490721,0.649331,0.0941865,0.953639,0.297574,0.778285,0.436513,0.330908,0.104117,0.521428,0.143992,0.430008,0.258926,0.564743,0.0062899,0.432843,0.147733,0.229724,0.419181,0.219137,0.545781,0.796968,0.523546,0.924288,0.0238349,0.842554,0.231798,0.25078,0.681386,0.570306,0.521329,0.936365,0.599713,0.533932,0.82567,0.272742,0.0680116,0.953168,0.577125,0.375377,0.589255,0.671435,0.87148,0.683791,0.20771,0.00990367,0.629546,0.874417,0.381976,0.0117798,0.219874,0.243659,0.212094,0.170452,0.34977,0.960952,0.817843,0.137188,0.534369,0.838114,0.735038,0.530924,0.451979,0.120602,0.247806,0.720119,0.21369,0.287454,0.104137,0.478576,0.468177,0.109015,0.216949,0.379659,0.841778,0.677176,0.0153255,0.395026,0.876863,0.296575,0.250283,0.416256,0.564648,0.492951,0.372857,0.290884,0.665729,0.704182,0.874166,0.545663,0.789288,0.730849,0.367734,0.540497,0.436433,0.949474,0.404778,0.998891,0.250355,0.177883,0.699837,0.741277,0.901274,0.352023,0.826682,0.402399,0.959286,0.0689892,0.909922,0.364256,0.0334244,0.641095,0.101825,0.0070743,0.345957,0.239761,0.197539,0.629462,0.649968,0.295498,0.297038,0.185789,0.231457,0.864792,0.0398986,0.376497,0.139539,0.71964,0.563845,0.59475,0.856221,0.73611,0.10825,0.370153,0.4792,0.431245,0.332363,0.565332,0.0627149,0.141895,0.967475,0.7537,0.89794,0.568338,0.924418,0.187134,0.993409,0.735579,0.247703,0.875261,0.98452,0.560594,0.204747,0.561943,0.821372,0.317343,0.395883,0.319131,0.549219,0.890822,0.199662,0.952882,0.384001,0.659421,0.00834143,0.315364,0.389738,0.342917,0.304426,0.673358,0.633529,0.223118,0.0268172,0.623858,0.92957,0.598871,0.85561,0.58874,0.0375604,0.485205,0.261056,0.107928,0.656565,0.834196,0.0120268,0.483687,0.325903,0.834211,0.461874,0.848671,0.689612,0.118815,0.902767,0.88123,0.282733,0.13733,0.203061,0.334434,0.693524,0.448767,0.878995,0.857354,0.869719,0.916177,0.569037,0.411204,0.379053,0.217857,0.891342,0.19992,0.95314,0.400818,0.8623,0.40353,0.647772,0.446072,0.897593,0.295471,0.465758,0.174306,0.538668,0.315829,0.597796,0.87389,0.0414925,0.340562,0.12642,0.775854,0.204053,0.349144,0.268218,0.776853,0.0384369,0.649796,0.775721,0.938121,0.855045,0.815517,0.081858,0.186081,0.603539,0.149593,0.272715,0.418569,0.574842,0.172958,0.0982581,0.655058,0.720333,0.911011,0.0778232,0.896782,0.238088,0.7466,0.567532,0.903066,0.491282,0.971685,0.617159,0.119731,0.671766,0.223602,0.369987,0.441746,0.720846,0.660837,0.112692,0.898456,0.867137,0.168527,0.937236,0.370883,0.332108,0.260436,0.606655,0.556758,0.197081,0.994411,0.0954539,0.0126446,0.915812,0.0709479,0.0916724,0.388116,0.393734,0.290238,0.397377,0.754829,0.401739,0.229866,0.588224,0.334305,0.754671,0.985048,0.0281926,0.880774,0.384527,0.803406,0.944394,0.463245,0.32455,0.679006,0.294749,0.771949,0.960957,0.035767,0.65779,0.103846,0.459684,0.245164,0.233183,0.849944,0.560478,0.350477,0.497485,0.855836,0.654135,0.306597,0.756062,0.255094,0.136399,0.836785,0.225451,0.706226,0.966844,0.886652,0.191898,0.243407,0.388518,0.268579,0.711081,0.113396,0.557694,0.216023,0.814136,0.517678,0.289471,0.92357,0.4463,0.896181,0.640693,0.0166625,0.864602,0.0191835,0.139202,0.336332,0.602971,0.73396,0.155392,0.647723,0.814747,0.285991,0.930902,0.405072,0.458913,0.135825,0.787959,0.458094,0.679031,0.142331,0.960271,0.297171,0.208407,0.969225,0.256159,0.986004,0.122461,0.452704,0.639726,0.642745,0.360236,0.130182,0.932508,0.212745,0.402243,0.446886,0.592704,0.0190536,0.0189153,0.862941,0.442278,0.630379,0.594301,0.331805,0.135312,0.73241,0.432024,0.580003,0.306164,0.498282,0.941544,0.116657,0.990084,0.140783,0.121769,0.989983,0.350926,0.240162,0.403114,0.387732,0.747538,0.846022,0.0386384,0.968902,0.0607669,0.701486,0.195704,0.592949,0.793692,0.466216,0.361258,0.979301,0.606059,0.73389,0.130047,0.826194,0.784385,0.483725,0.628737,0.960885,0.675191,0.381738,0.973033,0.245075,0.858281,0.780023,0.702364,0.127819,0.675242,0.726563,0.577713,0.652383,0.392455,0.117566,0.73299,0.232328,0.538015,0.634439,0.225409,0.935777,0.929224,0.787738,0.698096,0.0734132,0.490445,0.564327,0.507059,0.486147,0.697326,0.792214,0.765393,0.122664,0.763611,0.998496,0.449133,0.290505,0.282063,0.32939,0.197494,0.626176,0.590804,0.753551,0.604849,0.96693,0.615362,0.898009,0.395024,0.926061,0.811877,0.424463,0.996346,0.582653,0.782105,0.256608,0.815062,0.646965,0.618429,0.174682,0.320321,0.518578,0.335468,0.880671,0.559585,0.605791,0.0935988,0.356518,0.142326,0.799945,0.66425,0.463794,0.51615,0.732446,0.734708,0.56793,0.156246,0.8692,0.478829,0.499152,0.16409,0.379245,0.592047,0.792717,0.295506,0.238732,0.808657,0.554508,0.0683843,0.240627,0.891723,0.797832,0.423864,0.731464,0.683423,0.943641,0.433915,0.606504,0.135271,0.691077,0.873119,0.390441,0.64396,0.830222,0.873207,0.739501,0.259428,0.624751,0.938941,0.95734,0.151166,0.363167,0.963447,0.243543,0.093389,0.888373,0.429662,0.453047,0.297604,0.887512,0.767615,0.704304,0.704397,0.57688,0.0420836,0.566746,0.0212873,0.696724,0.17333,0.834889,0.0336716,0.713806,0.395995,0.694006,0.0577224,0.275067,0.715522,0.131106,0.837899,0.483484,0.759779,0.352854,0.300992,0.590243,0.496278,0.450831,0.528207,0.720469,0.408673,0.811475,0.332828,0.602166,0.612695,0.376597,0.0200557,0.277167,0.357571,0.589369,0.872312,0.820194,0.807024,0.254567,0.970578,0.346323,0.585461,0.431679,0.159685,0.342966,0.992973,0.504434,0.873857,0.696362,0.0368037,0.862039,0.493644,0.587795,0.418011,0.0451071,0.0621995,0.956284,0.639579,0.591386,0.272632,0.804907,0.778972,0.642818,0.985201,0.297822,0.495789,0.168875,0.750971,0.501789,0.192761,0.722053,0.58212,0.495509,0.709927,0.692349,0.802246,0.233603,0.612783,0.628215,0.530623,0.456285,0.992578,0.821945,0.187802,0.229794,0.916249,0.139228,0.469798,0.745924,0.332852,0.769673,0.111835,0.692241,0.901253,0.173855,0.320112,0.0698877,0.912526,0.977168,0.881864,0.298109,0.451056,0.807015,0.0395581,0.936062,0.613433,0.476804,0.695651,0.310708,0.488279,0.641987,0.144861,0.59732,0.953707,0.232327,0.224889,0.840954,0.274072,0.691313,0.757698,0.917885,0.369101,0.954627,0.226153,0.773993,0.544014,0.330162,0.455039,0.576717,0.595011,0.000622988,0.172897,0.119572,0.102381,0.902063,0.636081,0.820648,0.415637,0.991574,0.588538,0.488159,0.45186,0.754245,0.806748,0.339851,0.889182,0.501556,0.0783356,0.592009,0.50883,0.766142,|0.589467,0.163496,0.725613,0.580543,0.486059,0.788145,0.7011,0.56251,0.55978,0.865778,0.904217,0.421922,0.722638,0.229433,0.654406,0.197574,0.719615,0.909093,0.803337,0.0250472,0.335383,0.869654,0.270064,0.236926,0.568593,0.310882,0.382645,0.943416,0.135444,0.531849,0.379353,0.676171,0.997711,0.0526993,0.481842,0.210055,0.930556,0.171838,0.983673,0.402796,0.283894,0.0552802,0.540708,0.311861,0.135861,0.923013,0.254169,0.496663,0.733594,0.585328,0.435048,0.413808,0.423255,0.73052,0.322799,0.570679,0.847114,0.858658,0.970894,0.788424,0.646011,0.724451,0.881726,0.772077,0.975132,0.148376,0.49332,0.757966,0.251074,0.838578,0.734373,0.855382,0.759359,0.513711,0.36045,0.887412,0.825723,0.0863667,0.640929,0.751211,0.179851,0.674014,0.19461,0.170621,0.378242,0.71968,0.218569,0.944045,0.0870343,0.701765,0.975351,0.387308,0.0438232,0.615477,0.759044,0.880453,0.023764,0.965759,0.679218,0.324466,0.942211,0.619105,0.808131,0.572894,0.943263,0.218536,0.0103881,0.764482,0.23347,0.774274,0.38809,0.820563,0.799048,0.0650539,0.422303,0.20585,0.989631,0.189845,0.445747,0.213205,0.166385,0.588007,0.52352,0.470244,0.648219,0.467526,0.109712,0.0178959,0.675142,0.611611,0.282344,0.348716,0.0289795,0.950059,0.712143,0.571877,0.774005,0.414517,0.0119645,0.387644,0.489211,0.694896,0.363932,0.848319,0.441817,0.591892,0.489401,0.189855,0.00681996,0.937046,0.574647,0.324984,0.903935,0.993799,0.593974,0.91861,0.844667,0.258782,0.652754,0.992936,0.489999,0.678854,0.272465,0.128853,0.0341563,0.565413,0.8207,0.686172,0.144243,0.782567,0.403716,0.814995,0.762197,0.178972,0.236276,0.45106,0.326629,0.675678,0.43325,0.837725,0.85186,0.519439,0.561117,0.954811,0.61538,0.219191,0.172084,0.192958,0.589321,0.542409,0.387062,0.272575,0.167437,0.155892,0.131127,0.999057,0.413031,0.4416,0.351515,0.694635,0.222337,0.456685,0.243988,0.792376,0.837141,0.949884,0.516405,0.147239,0.756273,0.951342,0.156447,0.777732,0.907674,0.167164,0.265994,0.428583,0.0103952,0.841747,0.294123,0.52526,0.671742,0.324446,0.455069,0.979638,0.476009,0.43302,0.388235,0.128305,0.464626,0.681905,0.64419,0.455901,0.929061,0.635706,0.821378,0.673639,0.36314,0.748678,0.373864,0.545248,0.543053,0.859438,0.554248,0.435397,0.132266,0.934145,0.0211685,0.128769,0.401398,0.285922,0.800944,0.107566,0.922519,0.790819,0.582773,0.541883,0.458161,0.0599135,0.63733,0.319587,0.809859,0.433109,0.516101,0.211919,0.149551,0.558564,0.989089,0.789307,0.0332088,0.816912,0.987528,0.452297,0.417764,0.973104,0.791465,0.703179,0.86729,0.79999,0.344264,0.924733,0.284784,0.794282,0.795309,0.376875,0.731944,0.244832,0.600774,0.105145,0.705783,0.77436,0.397038,0.137993,0.341495,0.390993,0.960379,0.63389,0.308562,0.863659,0.780982,0.270197,0.133741,0.318253,0.179491,0.731217,0.891018,0.519677,0.297145,0.3109,0.130875,0.0740068,0.661521,0.0539027,0.724359,0.248378,0.427585,0.544975,0.114193,0.329377,0.470068,0.944982,0.92729,0.744793,0.469008,0.506706,0.154635,0.879715,0.82506,0.0846317,0.989205,0.424053,0.726162,0.453006,0.176279,0.673726,0.83315,0.64968,0.873278,0.458795,0.912766,0.903985,0.938353,0.125715,0.578854,0.323335,0.670448,0.886322,0.0542697,0.136248,0.400658,0.684348,0.226784,0.355548,0.111618,0.131819,0.501951,0.29728,0.461101,0.516982,0.937993,0.49212,0.824907,0.412885,0.0360126,0.527497,0.665355,0.951866,0.576678,0.316489,0.481604,0.351123,0.143745,0.326218,0.0304987,0.677876,0.732903,0.521584,0.637962,0.775017,0.775437,0.568591,0.295144,0.562836,0.585268,0.517829,0.191417,0.122764,0.543063,0.467297,0.161828,0.00383288,0.908506,0.556413,0.124771,0.421335,0.145277,0.499826,0.209866,0.161053,0.404502,0.227122,0.545725,0.510194,0.324927,0.464599,0.0175356,0.492939,0.514208,0.741824,0.832134,0.36199,0.477098,0.402444,0.67565,0.63066,0.561654,0.791655,0.25778,0.30931,0.0874503,0.102611,0.94405,0.770109,0.465861,0.16729,0.490826,0.382151,0.728045,0.121738,0.478932,0.806237,0.720195,0.227477,0.994175,0.271716,0.169555,0.818906,0.332829,0.519946,0.606309,0.563375,0.232242,0.318448,0.349608,0.0517394,0.833953,0.367546,0.332792,0.563401,0.630045,0.420962,0.35079,0.361457,0.227314,0.123139,0.731463,0.961449,0.839909,0.217443,0.967143,0.0291926,0.432733,0.101312,0.778533,0.538126,0.896948,0.00845468,0.792846,0.599688,0.321492,0.369303,0.946217,0.686762,0.866055,0.808747,0.348892,0.616936,0.209712,0.440372,0.837606,0.505494,0.425921,0.4085,0.225157,0.0557194,0.256232,0.605016,0.426567,0.697292,0.923838,0.14466,0.581091,0.231207,0.897138,0.735644,0.980696,0.120546,0.00126529,0.628769,0.737255,0.27124,0.256309,0.0328606,0.493285,0.769148,0.909496,0.498444,0.621294,0.248836,0.315557,0.0834891,0.0411363,0.571059,0.199981,0.239824,0.362644,0.0365231,0.400462,0.394129,0.0173844,0.813627,0.429765,0.395923,0.654346,0.727137,0.996542,0.826334,0.763263,0.66118,0.719677,0.171037,0.0675502,0.434608,0.677005,0.944011,0.65947,0.287178,0.970347,0.149148,0.117031,0.553544,0.494805,0.204898,0.782504,0.246226,0.34316,0.727921,0.259892,0.15831,0.882268,0.62909,0.65121,0.785055,0.908554,0.64126,0.799195,0.815095,0.8358,0.649723,0.757633,0.777271,0.111183,0.0192947,0.0980774,0.992164,0.42679,0.0265775,0.763311,0.516109,0.606721,0.302354,0.856726,0.464854,0.203595,0.0378308,0.789721,0.620037,0.0421366,0.730302,0.688485,0.306438,0.00608295,0.280479,0.24134,0.181028,0.632482,0.655328,0.505641,0.311844,0.00120205,0.179634,0.282173,0.343294,0.536402,0.426543,0.18751,0.100439,0.135887,0.87761,0.00493616,0.98439,0.00832087,0.226166,0.192229,0.107549,0.615081,0.0315881,0.793266,0.63868,0.199119,0.996884,0.0169469,0.914764,0.0400947,0.654064,0.242603,0.479859,0.101977,0.402497,0.203399,0.147252,0.584536,0.262239,0.831876,0.726148,0.345151,0.927959,0.484628,0.972286,0.323816,0.179519,0.767638,0.845366,0.355112,0.115203,0.567162,0.489792,0.969976,0.228991,0.56069,0.785181,0.621197,0.3543,0.505802,0.707186,0.860169,0.408505,0.587648,0.798995,0.163207,0.444701,0.962978,0.729302,0.343686,0.937518,0.490007,0.353435,0.210278,0.663335,0.603039,0.797895,0.421427,0.877255,0.336188,0.493151,0.360954,0.883527,0.18129,0.728012,0.459626,0.00314611,0.840308,0.710105,0.268468,0.389634,0.00661337,0.574709,0.490277,0.785056,0.530606,0.515263,0.586563,0.886397,0.915755,0.76512,0.820136,0.605946,0.0722305,0.735088,0.712214,0.397463,0.992153,0.0738942,0.878431,0.187519,0.780523,0.650626,0.890765,0.287618,0.512247,0.772207,0.971566,0.0936716,0.254597,0.731306,0.334731,0.549538,0.697089,0.734057,0.566261,0.530339,0.85234,0.913493,0.278234,0.528845,0.60192,0.767013,0.885018,0.657874,0.325927,0.436211,0.438058,0.291361,0.773746,0.738858,0.113347,0.468643,0.298262,0.968675,0.657237,0.891818,0.733595,0.585029,0.95212,0.836917,0.300931,0.47161,0.663317,0.149453,0.319124,0.984215,0.511641,0.536021,0.841464,0.0673634,0.115595,0.284675,0.831822,0.88707,0.475914,0.383,0.0739008,0.234674,0.150881,0.503057,0.474363,0.365553,0.87108,0.349934,0.547392,0.0321253,0.885071,0.814508,0.956627,0.989391,0.215125,0.931285,0.127205,0.630396,0.35793,0.181334,0.893648,0.36595,0.717654,0.609759,0.488565,0.351398,0.945043,0.340676,0.529719,0.195596,0.588248,0.872296,0.860441,0.04481,0.38802,0.433938,0.0154063,0.730452,0.383872,0.761405,0.185088,0.527507,0.750344,0.129197,0.665533,0.792306,0.931882,0.512931,0.834073,0.99532,0.541207,0.322717,0.264412,0.592197,0.344728,0.73306,0.93825,0.333113,0.109866,0.335296,0.993385,0.0347182,0.0220418,0.778375,0.755521,0.259934,0.735846,0.350246,0.807169,0.0795853,0.800304,0.122169,0.708366,0.047091,0.733879,0.370649,0.0604861,0.616091,0.543297,0.0310332,0.476529,0.24805,0.874787,0.301872,0.539468,0.856033,0.150871,0.581613,0.374101,0.816459,0.634414,0.724565,0.387747,0.869902,0.0773863,0.134758,0.504723,0.126076,0.970062,0.462227,0.330712,0.788306,0.234667,0.263839,0.967594,0.390389,0.291848,0.419437,0.486917,0.271208,0.516564,0.67611,0.741631,0.531346,0.448997,0.970662,0.767939,0.323353,0.91307,0.707062,0.360916,0.262088,0.224328,0.967284,0.390431,0.905182,0.541551,0.397267,0.184063,0.478208,0.0508859,0.188699,0.447953,0.189806,0.813463,0.256401,0.123216,0.312746,0.424895,0.569368,0.484176,0.593265,0.855114,0.0830688,0.815667,0.985401,0.440619,0.0634367,0.661916,0.484207,0.662194,0.600303,0.624604,0.118513,0.324738,0.895261,0.713185,0.329188,0.53001,0.32414,0.133756,0.311077,0.847167,0.526731,0.391938,0.650919,0.106015,0.939157,0.413731,0.591518,0.56564,0.195904,0.0222597,0.568115,0.341631,0.758201,0.549882,0.643466,0.859831,0.657559,0.554821,0.727387,0.194078,0.539096,0.574701,0.0680291,0.984047,0.873377,0.866322,0.828947,0.987543,0.228953,0.629188,0.652536,0.10151,0.754441,0.66379,0.601393,0.632786,0.341916,0.595602,0.159002,0.491534,0.300154,0.480049,0.52183,0.827369,0.224435,0.188344,0.311724,0.142862,0.317955,0.623382,0.248676,0.661895,0.909937,0.767943,0.3075,0.83793,0.317696,0.333157,0.033547,0.295442,0.697929,0.909722,0.425102,0.533751,0.765165,0.903249,0.84306,0.342497,0.550298,0.604936,0.8296,0.234492,0.448861,0.417148,0.416906,0.660059,0.900282,0.262656,0.580223,0.367527,0.651737,0.625288,0.330546,0.121406,0.0630462,0.690986,0.319861,|0.91014,0.493336,0.0596431,0.434201,0.65464,0.0107207,0.444481,0.0493521,0.6977,0.873416,0.898326,0.820613,0.581381,0.0907857,0.232707,0.904083,0.725559,0.61382,0.310223,0.0594496,0.71119,0.0890468,0.9318,0.443158,0.0811933,0.336078,0.497552,0.0811825,0.549684,0.251079,0.86411,0.395475,0.382424,0.66683,0.118965,0.716848,0.683136,0.015043,0.119041,0.538622,0.585972,0.708775,0.583014,0.89101,0.505118,0.442383,0.129446,0.840046,0.42453,0.553027,0.364907,0.405464,0.570631,0.293283,0.81258,0.713506,0.469569,0.126206,0.361303,0.51884,0.566875,0.328739,0.832671,0.764623,0.0310557,0.618516,0.049054,0.211301,0.0555626,0.826029,0.98916,0.0617245,0.157015,0.728864,0.786857,0.693202,0.0596954,0.631584,0.682429,0.731633,0.60152,0.325369,0.310612,0.662317,0.820665,0.170749,0.906108,0.582107,0.584794,0.301896,0.82348,0.463639,0.682664,0.622833,0.662474,0.730043,0.94069,0.515643,0.277313,0.841194,0.0126497,0.67077,0.777945,0.36548,0.47439,0.126301,0.989219,0.801806,0.913979,0.354776,0.439273,0.971152,0.407364,0.111674,0.385796,0.653469,0.84197,0.0344566,0.034569,0.545699,0.464329,0.292014,0.708969,0.928103,0.408332,0.540514,0.359454,0.408349,0.294347,0.539246,0.299776,0.170165,0.379447,0.926212,0.792233,0.933591,0.525989,0.998715,0.58037,0.903719,0.773137,0.12756,0.429643,0.907971,0.493342,0.231679,0.254335,0.981466,0.738914,0.694971,0.969579,0.596185,0.538529,0.165521,0.722062,0.397544,0.808549,0.802444,0.618149,0.647366,0.406938,0.653708,0.663592,0.277466,0.0378568,0.634748,0.727581,0.272638,0.256868,0.0956727,0.415662,0.811758,0.534858,0.761619,0.802336,0.490572,0.78433,0.498538,0.167571,0.160214,0.899639,0.823422,0.413143,0.888791,0.406912,0.0608612,0.614605,0.930465,0.52697,0.548413,0.503509,0.700903,0.989608,0.680844,0.877319,0.287718,0.787283,0.119594,0.258775,0.250882,0.591863,0.780944,0.466207,0.876134,0.0152587,0.868795,0.170279,0.947453,0.00149447,0.317974,0.478202,0.156281,0.7169,0.611025,0.582836,0.644325,0.21852,0.579585,0.628254,0.801226,0.0423273,0.998747,0.659301,0.493187,0.207242,0.344724,0.209952,0.537403,0.523665,0.396245,0.89984,0.337642,0.620402,0.765346,0.865731,0.256209,0.425232,0.928838,0.903371,0.841734,0.0315491,0.323878,0.748854,0.257261,0.23739,0.361295,0.455073,0.887158,0.357525,0.325504,0.42164,0.644144,0.498745,0.410768,0.505701,0.91174,0.773431,0.724397,0.843865,0.524172,0.370246,0.60901,0.123947,0.275432,0.903757,0.751696,0.710068,0.484704,0.982867,0.112279,0.237883,0.389964,0.712979,0.201238,0.503965,0.154572,0.62475,0.883417,0.739522,0.244958,0.13928,0.868896,0.132181,0.969204,0.437594,0.0980943,0.10895,0.935728,0.537505,0.873396,0.561181,0.663474,0.955439,0.0595678,0.787994,0.684385,0.49985,0.997969,0.499108,0.0474254,0.413053,0.510908,0.641385,0.460774,0.91837,0.520657,0.604107,0.00265974,0.460827,0.868392,0.675916,0.0308585,0.998626,0.924977,0.735211,0.797154,0.34895,0.957203,0.111717,0.756987,0.943799,0.232902,0.923108,0.00785315,0.553564,0.469866,0.169224,0.248308,0.671622,0.946763,0.811152,0.655796,0.950162,0.474684,0.560414,0.485733,0.914797,0.922835,0.241427,0.734273,0.631343,0.0272547,0.520333,0.318643,0.725485,0.0897643,0.367595,0.197947,0.624761,0.0410902,0.717044,0.408052,0.918181,0.977338,0.795019,0.765853,0.620556,0.370845,0.423113,0.874291,0.273647,0.371368,0.899503,0.284087,0.0336403,0.366403,0.932678,0.616902,0.648253,0.917406,0.354933,0.43829,0.96857,0.477182,0.88687,0.350645,0.288499,0.579324,0.773788,0.95783,0.841107,0.00413984,0.823504,0.983771,0.172542,0.727958,0.0466704,0.0653343,0.121411,0.374138,0.22673,0.939952,0.208592,0.990326,0.181661,0.931445,0.282469,0.22312,0.398917,0.161997,0.317883,0.00700402,0.751409,0.11325,0.242059,0.067398,0.190517,0.871107,0.117221,0.945264,0.23541,0.564157,0.532737,0.0594056,0.519004,0.715744,0.51226,0.940482,0.306291,0.224405,0.0440746,0.875614,0.549817,0.653291,0.844539,0.13846,0.978308,0.00430381,0.221408,0.413862,0.399015,0.758885,0.974172,0.383802,0.705798,0.741264,0.13486,0.857041,0.589778,0.613893,0.783762,0.254198,0.497282,0.128042,0.464718,0.166207,0.890021,0.354293,0.886132,0.0611295,0.98009,0.15775,0.664909,0.056528,0.80378,0.856275,0.0490959,0.0677542,0.789149,0.136256,0.986452,0.24274,0.447226,0.589791,0.601224,0.240969,0.837486,0.825029,0.814353,0.345293,0.939197,0.159338,0.953001,0.345504,0.556624,0.0853611,0.99048,0.220905,0.56174,0.216885,0.0836354,0.0605733,0.599382,0.839988,0.270674,0.93043,0.227839,0.857317,0.136189,0.306659,0.147362,0.309208,0.0232328,0.0719725,0.322861,0.55719,0.835082,0.738499,0.640024,0.730578,0.372349,0.472198,0.116147,0.334327,0.0586203,0.257019,0.0563754,0.0449345,0.554979,0.728006,0.87784,0.275815,0.527419,0.216284,0.694635,0.130884,0.728897,0.962266,0.403544,0.192836,0.804073,0.987359,0.0334529,0.220208,0.653648,0.510869,0.526722,0.355328,0.552355,0.157626,0.352145,0.793203,0.620855,0.529644,0.516545,0.250573,0.0928478,0.119031,0.351084,0.506788,0.352966,0.359245,0.165021,0.0248829,0.563939,0.195919,0.694236,0.686133,0.121242,0.121982,0.348479,0.355394,0.325793,0.397455,0.889411,0.592265,0.225397,0.801453,0.892054,0.901417,0.493602,0.351199,0.434775,0.980006,0.828999,0.429851,0.228104,0.1146,0.671182,0.445886,0.181771,0.168238,0.969347,0.227843,0.884935,0.542975,0.503332,0.00871813,0.856777,0.181638,0.0131952,0.117356,0.594494,0.211652,0.890277,0.0380441,0.630696,0.769284,0.994925,0.545767,0.725753,0.398856,0.480498,0.48278,0.765809,0.665133,0.099776,0.581915,0.279644,0.418676,0.271661,0.394313,0.0245601,0.676568,0.205777,0.691928,0.628027,0.508491,0.852044,0.0633413,0.496547,0.528857,0.305785,0.874743,0.94928,0.441316,0.271807,0.339311,0.319289,0.676039,0.124562,0.364134,0.00626624,0.333408,0.314281,0.301713,0.830929,0.200549,0.272289,0.456548,0.593956,0.403239,0.661251,0.120455,0.915813,0.416353,0.923075,0.256999,0.21553,0.267174,0.698987,0.757233,0.031341,0.544339,0.638788,0.241183,0.933953,0.0728892,0.351612,0.825344,0.735286,0.911875,0.518083,0.0401059,0.292953,0.921274,0.916759,0.874117,0.526959,0.819897,0.632966,0.436533,0.43274,0.805909,0.635202,0.42217,0.0157179,0.0373617,0.735979,0.612805,0.835966,0.270773,0.841616,0.880558,0.621762,0.460427,0.0049867,0.73687,0.237816,0.677764,0.823645,0.118001,0.425847,0.0570475,0.191819,0.19502,0.500308,0.288414,0.920273,0.00258213,0.0635399,0.378502,0.191575,0.443826,0.383973,0.444166,0.28548,0.61248,0.291735,0.812462,0.809837,0.92527,0.963621,0.471844,0.681078,0.990016,0.745226,0.315223,0.420379,0.613105,0.590921,0.52717,0.555879,0.570936,0.914018,0.50595,0.468417,0.249622,0.909914,0.815275,0.387841,0.551177,0.986676,0.648797,0.414163,0.912192,0.470388,0.456643,0.335797,0.331295,0.923728,0.999019,0.392919,0.747505,0.699525,0.798035,0.234506,0.282019,0.94548,0.602128,0.187974,0.62319,0.871357,0.870683,0.656942,0.142885,0.484383,0.620145,0.252516,0.0822285,0.898203,0.600354,0.845982,0.355978,0.897194,0.664029,0.426273,0.571753,0.138067,0.443465,0.722363,0.0926014,0.377467,0.040606,0.114207,0.604196,0.29589,0.00546449,0.852839,0.555248,0.708096,0.0659124,0.663871,0.112625,0.25045,0.224871,0.960984,0.387744,0.656368,0.854862,0.0528642,0.153321,0.693657,0.959323,0.781829,0.105258,0.313582,0.348926,0.785764,0.668884,0.119195,0.0115363,0.130496,0.0288305,0.429894,0.162414,0.529391,0.190118,0.614336,0.164545,0.291695,0.785394,0.915721,0.658566,0.470003,0.0905771,0.492279,0.90015,0.584887,0.298604,0.191515,0.0720527,0.120502,0.479292,0.837838,0.379982,0.3481,0.639249,0.473673,0.72117,0.56489,0.329269,0.31583,0.850629,0.572072,0.360066,0.336732,0.550117,0.247228,0.0549038,0.981026,0.654238,0.548345,0.130075,0.872664,0.871062,0.47857,0.254317,0.581164,0.745535,0.784114,0.0155979,0.714659,0.352823,0.702239,0.645102,0.871908,0.996265,0.035819,0.0311689,0.150718,0.500178,0.564134,0.940986,0.963215,0.0547659,0.25274,0.992799,0.65373,0.600772,0.460032,0.58988,0.990598,0.422037,0.339001,0.202656,0.813397,0.618788,0.250138,0.58149,0.932469,0.0867859,0.903378,0.45786,0.621154,0.510454,0.648341,0.273656,0.386373,0.108958,0.795371,0.403019,0.648181,0.804617,0.680347,0.176095,0.890254,0.590916,0.926209,0.241277,0.978013,0.757095,0.00813919,0.0932397,0.326356,0.249202,0.658166,0.909944,0.178622,0.59228,0.911694,0.956034,0.701128,0.925978,0.329559,0.0134467,0.138075,0.0225587,0.142857,0.394608,0.895317,0.551449,0.88398,0.500842,0.270174,0.892696,0.634735,0.387599,0.0323184,0.990782,0.849603,0.742571,0.288526,0.816726,0.00586474,0.766586,0.563603,0.0617875,0.39193,0.0630306,0.140803,0.310672,0.720921,0.596473,0.538198,0.76146,0.949833,0.423195,0.542067,0.298397,0.747596,0.291941,0.0417401,0.211354,0.683852,0.201825,0.670085,0.23499,0.632466,0.0189131,0.0756206,0.83104,0.346235,0.291698,0.173421,0.0021171,0.397172,0.833424,0.537503,0.949194,0.703589,0.27709,0.839662,0.958816,0.107041,0.176775,0.122986,0.928791,0.343625,0.571116,0.699613,0.152403,0.5765,0.640274,0.921923,0.504513,0.293441,0.637194,0.472331,0.612382,0.924999,0.443227,0.793193,0.657885,0.344075,0.692332,0.184603,0.0841235,0.312663,0.0761731,0.407225,0.0506144,0.677281,0.796126,0.390583,0.604134,0.973828,0.319608,0.842928,0.710737,|0.600316,0.577712,0.658545,0.249138,0.687159,0.719436,0.138227,0.0797123,0.929229,0.275565,0.950945,0.521686,0.661778,0.760742,0.258216,0.207869,0.272664,0.713305,0.222152,0.685296,0.821384,0.65926,0.0851564,0.0502317,0.184011,0.632566,0.220413,0.731347,0.382298,0.779377,0.127961,0.227033,0.0665625,0.208786,0.943666,0.181199,0.222633,0.155644,0.143104,0.172893,0.873197,0.0289097,0.086952,0.4957,0.607647,0.755766,0.193705,0.351763,0.192055,0.490888,0.29117,0.794645,0.0114962,0.43252,0.232448,0.63665,0.741441,0.273048,0.000171065,0.713342,0.183931,0.986024,0.421553,0.17977,0.370424,0.503081,0.369672,0.175315,0.458965,0.0708568,0.385871,0.157682,0.793801,0.607399,0.335393,0.262006,0.405213,0.324278,0.0376105,0.201086,0.573451,0.616219,0.560403,0.651221,0.494757,0.525961,0.518122,0.676378,0.894332,0.0672123,0.674399,0.00772125,0.360025,0.0964535,0.134567,0.569354,0.124209,0.501359,0.575594,0.251074,0.0612786,0.501491,0.280811,0.33081,0.542002,0.334531,0.616878,0.0776974,0.448503,0.373055,0.516537,0.123877,0.451333,0.344275,0.413722,0.0884486,0.613519,0.673007,0.0712683,0.663365,0.439217,0.949008,0.653015,0.276364,0.268761,0.159777,0.920754,0.712594,0.979383,0.8652,0.108136,0.160619,0.989908,0.988385,0.508133,0.300871,0.99889,0.550053,0.876752,0.676532,0.830161,0.343983,0.457385,0.345271,0.357734,0.094821,0.112881,0.828785,0.19642,0.985543,0.0767453,0.929142,0.0650138,0.483669,0.0573201,0.204989,0.122482,0.0120162,0.711139,0.292404,0.0609426,0.233572,0.399838,0.533629,0.200897,0.861238,0.168433,0.273633,0.738555,0.283931,0.219567,0.246968,0.90459,0.797313,0.905042,0.468793,0.542231,0.637328,0.119422,0.179119,0.167415,0.565562,0.197979,0.996608,0.136853,0.152788,0.678671,0.0227343,0.951527,0.216497,0.0677891,0.0813383,0.333686,0.773805,0.268476,0.763765,0.892057,0.833425,0.628099,0.71631,0.442518,0.26228,0.82368,0.60796,0.722421,0.346614,0.923558,0.449157,0.244271,0.0437407,0.974943,0.647478,0.957401,0.640178,0.579872,0.795248,0.433889,0.783478,0.0978459,0.382649,0.424893,0.240712,0.510247,0.98423,0.69507,0.938737,0.934844,0.81304,0.514551,0.963281,0.322885,0.780918,0.356701,0.0352607,0.563821,0.750817,0.45298,0.0477144,0.515278,0.459134,0.371671,0.409434,0.695459,0.0778686,0.0367832,0.622271,0.279579,0.686028,0.00308603,0.452797,0.193097,0.18939,0.963993,0.290636,0.6075,0.0403445,0.811173,0.712873,0.932162,0.417882,0.452039,0.344512,0.157672,0.808521,0.979631,0.408175,0.114203,0.0163217,0.0913916,0.676098,0.466298,0.87626,0.445477,0.897453,0.815651,0.322354,0.2654,0.13983,0.266852,0.59181,0.885698,0.141295,0.0108598,0.986775,0.0459159,0.196977,0.196258,0.0614581,0.257816,0.486155,0.682288,0.401499,0.294488,0.670286,0.682144,0.260866,0.553757,0.18864,0.388273,0.402561,0.915275,0.579946,0.3931,0.121973,0.520922,0.791119,0.343197,0.933451,0.226867,0.844927,0.5671,0.185825,0.383657,0.664925,0.530994,0.733366,0.75709,0.582825,0.213629,0.728286,0.562085,0.462556,0.742048,0.368423,0.110208,0.409332,0.789268,0.171442,0.902494,0.764895,0.455817,0.129224,0.577404,0.226362,0.279035,0.891437,0.937441,0.790003,0.704954,0.18878,0.0351005,0.250887,0.571331,0.283751,0.131773,0.398495,0.818922,0.11944,0.931498,0.961265,0.542341,0.667682,0.884118,0.93538,0.0597902,0.0436184,0.994629,0.703471,0.909982,0.342336,0.927925,0.051879,0.506846,0.883396,0.185953,0.298654,0.204024,0.0925179,0.096531,0.797209,0.0162511,0.425593,0.984041,0.67649,0.973812,0.772025,0.515152,0.569263,0.342531,0.69054,0.882115,0.972349,0.442493,0.605048,0.541321,0.718106,0.167619,0.485249,0.0308482,0.394528,0.524136,0.104145,0.416526,0.576183,0.264392,0.770087,0.574213,0.640747,0.351616,0.355927,0.902828,0.997038,0.900602,0.309587,0.382283,0.670789,0.689629,0.173312,0.832631,0.966148,0.351829,0.0251305,0.368019,0.2914,0.628257,0.248811,0.861834,0.0621583,0.347131,0.68477,0.457564,0.328088,0.0238744,0.359716,0.75843,0.553914,0.635123,0.663233,0.161533,0.95066,0.819024,0.925219,0.39151,0.334357,0.772358,0.149899,0.605211,0.695105,0.849834,0.878654,0.49375,0.0733752,0.898687,0.196063,0.841606,0.610767,0.369898,0.271876,0.724087,0.725861,0.77373,0.615292,0.904383,0.56622,0.131524,0.0527053,0.511994,0.268392,0.248799,0.425571,0.579391,0.519653,0.520241,0.799254,0.639439,0.329091,0.808986,0.75933,0.700084,0.258761,0.777749,0.586535,0.102177,0.971393,0.187136,0.588554,0.361905,0.416908,0.434964,0.960864,0.123846,0.621511,0.762408,0.0169242,0.727547,0.887538,0.869319,0.56865,0.0634385,0.163297,0.554362,0.58792,0.242178,0.727348,0.537379,0.935058,0.991356,0.704021,0.772951,0.809623,0.401439,0.236098,0.0998768,0.68322,0.381869,0.509568,0.368898,0.739696,0.625117,0.632937,0.159561,0.381934,0.868734,0.365468,0.113331,0.0938422,0.478075,0.30173,0.241031,0.771062,0.102725,0.199225,0.296227,0.814899,0.988559,0.701398,0.162771,0.841171,0.352953,0.0411854,0.502805,0.853522,0.0436912,0.944461,0.0710759,0.837755,0.973568,0.108116,0.770387,0.892197,0.344589,0.717939,0.253131,0.281885,0.667697,0.744177,0.0837476,0.478995,0.0406441,0.800733,0.212457,0.808371,0.739527,0.549273,0.705401,0.404911,0.913575,0.43937,0.708832,0.580213,0.764757,0.530725,0.58897,0.569859,0.967129,0.834372,0.264893,0.50664,0.973353,0.88664,0.85939,0.593761,0.723101,0.592215,0.878956,0.387048,0.707557,0.170852,0.469335,0.766228,0.0767646,0.300385,0.106474,0.303866,0.414225,0.704771,0.548197,0.11892,0.193595,0.122806,0.791744,0.664921,0.752746,0.813563,0.937922,0.132193,0.860928,0.427409,0.61806,0.405327,0.0258101,0.15621,0.585244,0.682168,0.570887,0.00803983,0.394605,0.792226,0.458649,0.138038,0.811593,0.474965,0.234536,0.227454,0.206071,0.821503,0.845239,0.357873,0.166734,0.981571,0.246405,0.555702,0.637855,0.402315,0.0171826,0.305258,0.529906,0.133492,0.973023,0.0497345,0.683815,0.391089,0.691189,0.493549,0.519972,0.565981,0.20911,0.127019,0.932134,0.612354,0.600849,0.788465,0.937663,0.580419,0.390353,0.563166,0.453586,0.361537,0.642257,0.150091,0.887467,0.643635,0.747435,0.480619,0.443751,0.374134,0.182195,0.608036,0.17221,0.510972,0.492839,0.154121,0.551431,0.845779,0.66596,0.482319,0.71737,0.323276,0.945075,0.869778,0.134576,0.642574,0.948361,0.301806,0.0760975,0.405226,0.113294,0.499733,0.172708,0.390336,0.334366,0.42498,0.738117,0.677509,0.614005,0.00670975,0.739034,0.275534,0.110353,0.69362,0.571848,0.999411,0.403933,0.596643,0.217562,0.546155,0.168101,0.262441,0.850513,0.750974,0.819199,0.457647,0.901787,0.579945,0.698545,0.297414,0.488036,0.121543,0.870891,0.379496,0.52198,0.906627,0.605952,0.00595492,0.615568,0.925689,0.258052,0.958237,0.120454,0.308618,0.342611,0.5603,0.234895,0.0905991,0.504875,0.468388,0.503429,0.833885,0.561928,0.84283,0.353111,0.316255,0.176106,0.198259,0.75217,0.479558,0.150745,0.967313,0.406802,0.811108,0.724208,0.732473,0.0311162,0.685444,0.233696,0.84429,0.727026,0.538934,0.395308,0.930248,0.239631,0.248468,0.277634,0.292479,0.210107,0.256468,0.407871,0.363881,0.710463,0.813992,0.740865,0.138587,0.201463,0.0821375,0.944359,0.366944,0.0206643,0.96395,0.275614,0.42791,0.0749215,0.890569,0.50376,0.0211562,0.171666,0.773909,0.0540447,0.593845,0.473592,0.361719,0.406703,0.552622,0.895344,0.80895,0.62508,0.554183,0.319273,0.63119,0.25754,0.457668,0.199439,0.635154,0.863454,0.0881553,0.212405,0.73002,0.584366,0.188483,0.697364,0.644821,0.918391,0.75286,0.454451,0.37757,0.931031,0.0873522,0.746347,0.193056,0.0624484,0.256696,0.246792,0.4924,0.57691,0.126245,0.976686,0.206485,0.894678,0.542107,0.0762977,0.609292,0.0375371,0.45218,0.948947,0.413326,0.770313,0.10194,0.632737,0.122723,0.610284,0.683006,0.218963,0.101936,0.796064,0.67419,0.616816,0.502806,0.546807,0.125228,0.247357,0.99897,0.597984,0.719084,0.655994,0.984481,0.118227,0.865577,0.456215,0.267604,0.271114,0.69713,0.0797966,0.0604439,0.455772,0.0130458,0.127241,0.917149,0.336172,0.945519,0.464369,0.486354,0.928113,0.60565,0.726605,0.984006,0.0464898,0.826602,0.445749,0.710208,0.394897,0.602236,0.669737,0.097692,0.637034,0.856365,0.880409,0.515756,0.189342,0.28643,0.386619,0.713526,0.153284,0.360576,0.372575,0.763154,0.500906,0.726204,0.513344,0.272471,0.764383,0.646031,0.479216,0.112812,0.0918949,0.194431,0.227876,0.150791,0.685402,0.403604,0.969802,0.439852,0.848966,0.137506,0.834616,0.989604,0.396888,0.148338,0.82799,0.581814,0.413294,0.983098,0.753945,0.220957,0.201217,0.859754,0.297542,0.318819,0.821409,0.820396,0.146929,0.546982,0.449283,0.753061,0.363274,0.49697,0.158826,0.588512,0.796127,0.624606,0.66692,0.990244,0.355241,0.81899,0.385505,0.373076,0.397595,0.425751,0.357544,0.368873,0.661885,0.469685,0.963152,0.814537,0.00733113,0.420626,0.0441856,0.00589538,0.740981,0.00455743,0.376182,0.255268,0.974394,0.069743,0.629241,0.25396,0.859003,0.37662,0.0653748,0.297319,0.809394,0.567155,0.471823,0.986965,0.188332,0.347701,0.742439,0.17397,0.634644,0.303457,0.865247,0.0804099,0.351279,0.503389,0.905629,0.198821,0.580064,0.511791,0.962339,0.31493,0.0138714,0.426982,0.519735,0.454142,0.866513,0.186576,0.657511,0.385034,0.393265,0.313671,0.0902172,0.774804,0.123969,0.205787,0.580402,0.229868,0.789407,0.682337,0.591415,0.937295,0.816837,0.299785,|0.975174,0.32083,0.799214,0.0891834,0.89452,0.509043,0.733062,0.963269,0.441974,0.12452,0.652762,0.0522077,0.146565,0.0321188,0.091841,0.99114,0.921711,0.663824,0.726592,0.172005,0.0836793,0.23837,0.996777,0.499397,0.945146,0.742595,0.995227,0.0448385,0.891209,0.875361,0.41722,0.114832,0.012778,0.195997,0.143428,0.0440921,0.31478,0.690207,0.954544,0.0737811,0.301595,0.299808,0.678519,0.93639,0.584678,0.264974,0.465636,0.658605,0.395165,0.183147,0.608441,0.757011,0.450358,0.518019,0.57428,0.333554,0.317094,0.302372,0.643441,0.28061,0.165146,0.854447,0.565255,0.522098,0.141104,0.407988,0.499329,0.751522,0.424094,0.975981,0.116573,0.0694429,0.983739,0.83173,0.0358991,0.678486,0.835127,0.691814,0.245981,0.24828,0.199373,0.0607519,0.579988,0.147135,0.254665,0.592441,0.940699,0.190994,0.994131,0.856618,0.439197,0.68867,0.759726,0.240476,0.144891,0.663221,0.555652,0.781195,0.248927,0.301875,0.35093,0.920369,0.21453,0.529756,0.795723,0.803128,0.204894,0.526445,0.534685,0.0128023,0.172503,0.846014,0.0691707,0.534773,0.182232,0.261412,0.43697,0.496731,0.541656,0.611891,0.30436,0.376891,0.0113693,0.102139,0.657456,0.301096,0.259789,0.504527,0.491235,0.780173,0.322528,0.461527,0.338672,0.378752,0.659469,0.948635,0.1834,0.406682,0.463082,0.55437,0.0580794,0.0272204,0.9808,0.211866,0.644618,0.364078,0.666678,0.109065,0.765214,0.505112,0.528712,0.291524,0.521317,0.308058,0.423311,0.23856,0.0245561,0.75144,0.303425,0.156207,0.528439,0.447501,0.0196857,0.607282,0.0810831,0.368762,0.505785,0.127094,0.439773,0.885893,0.925102,0.313938,0.437828,0.873895,0.381114,0.185845,0.937737,0.943032,0.97203,0.440268,0.166788,0.968017,0.4095,0.71361,0.904786,0.0614778,0.672385,0.927925,0.714597,0.0461369,0.642876,0.3925,0.0147008,0.740135,0.11075,0.155015,0.669688,0.0850927,0.931621,0.050182,0.446311,0.0201573,0.708596,0.00962543,0.477861,0.686354,0.935038,0.825657,0.0889493,0.546474,0.103845,0.216802,0.806218,0.20506,0.95455,0.938641,0.5728,0.402697,0.0588406,0.231504,0.650968,0.823659,0.773881,0.821883,0.362487,0.58183,0.247746,0.410351,0.787083,0.00196189,0.141838,0.569627,0.209684,0.125387,0.294009,0.0252707,0.157675,0.156398,0.952706,0.898415,0.918759,0.719103,0.0361319,0.767508,0.385001,0.485791,0.482624,0.125743,0.816871,0.968791,0.592637,0.8016,0.997691,0.214397,0.913071,0.667549,0.272846,0.863454,0.146313,0.746787,0.362131,0.636426,0.460262,0.281688,0.127011,0.539827,0.818417,0.665483,0.257805,0.262971,0.152603,0.997394,0.864299,0.792872,0.500479,0.541762,0.782773,0.796157,0.256941,0.271207,0.234548,0.736509,0.705643,0.24189,0.487794,0.0246334,0.870297,0.729913,0.855883,0.27989,0.000166237,0.161944,0.16555,0.0177404,0.484113,0.0690415,0.59588,0.877936,0.544557,0.789567,0.88326,0.752944,0.258586,0.633331,0.889554,0.419797,0.290474,0.791789,0.935784,0.923822,0.145943,0.0522094,0.815658,0.779972,0.34672,0.876877,0.280838,0.945358,0.755844,0.122758,0.439674,0.068029,0.739268,0.740588,0.101374,0.504574,0.854631,0.112425,0.414686,0.456757,0.0548924,0.945801,0.449816,0.373098,0.268668,0.967996,0.173792,0.313188,0.619931,0.502793,0.0452093,0.358,0.867266,0.0225148,0.783572,0.901169,0.995158,0.484075,0.772149,0.872033,0.149044,0.850442,0.506865,0.725731,0.060659,0.522088,0.583629,0.681486,0.865535,0.31395,0.577164,0.168709,0.814616,0.268875,0.144453,0.0962808,0.567076,0.261182,0.840579,0.56014,0.793066,0.380006,0.141994,0.970407,0.00878811,0.653697,0.811529,0.241209,0.299605,0.829874,0.484258,0.234955,0.286358,0.998578,0.237257,0.783413,0.26568,0.965212,0.793153,0.575609,0.963527,0.584146,0.849604,0.685867,0.457655,0.677001,0.106231,0.940021,0.0547817,0.557747,0.0207456,0.429066,0.241124,0.130598,0.125818,0.337022,0.153657,0.921034,0.982412,0.641435,0.782779,0.408741,0.951547,0.827471,0.251012,0.00216037,0.907776,0.42706,0.123276,0.355931,0.347007,0.152398,0.675159,0.117695,0.307424,0.299548,0.462474,0.81193,0.197685,0.458376,0.778981,0.947925,0.408902,0.168763,0.260569,0.29607,0.79781,0.206757,0.357135,0.200436,0.231447,0.60398,0.347402,0.838219,0.67795,0.959782,0.504701,0.897462,0.40208,0.686397,0.189275,0.483584,0.103401,0.220264,0.262219,0.444842,0.617704,0.893207,0.590636,0.359657,0.267331,0.957768,0.440102,0.926144,0.510808,0.60334,0.139117,0.114224,0.0471993,0.564247,0.770545,0.910258,0.529024,0.987262,0.620979,0.708525,0.412948,0.519789,0.631894,0.974214,0.190144,0.196275,0.536493,0.940927,0.988992,0.829883,0.827993,0.607278,0.404579,0.996747,0.976378,0.760867,0.452478,0.0848089,0.00415123,0.696706,0.383087,0.250142,0.18185,0.193681,0.383197,0.223138,0.398148,0.19058,0.0775219,0.148065,0.322318,0.0856768,0.0496885,0.616771,0.708744,0.272042,0.0338964,0.329002,0.62461,0.570192,0.138569,0.0508229,0.0124534,0.630432,0.310485,0.164088,0.125887,0.240797,0.135944,0.832011,0.0521394,0.209825,0.462024,0.282647,0.549738,0.758007,0.0318521,0.167895,0.602899,0.687949,0.478723,0.858905,0.605371,0.100633,0.424512,0.460575,0.143201,0.366971,0.4674,0.970088,0.878291,0.623555,0.33109,0.0112797,0.382832,0.493461,0.859072,0.775797,0.973071,0.142383,0.503393,0.919369,0.312239,0.00904292,0.828417,0.775629,0.227691,0.177621,0.264078,0.206404,0.0312068,0.396732,0.484771,0.755959,0.650577,0.251112,0.789702,0.487651,0.686328,0.51472,0.646969,0.226936,0.716854,0.316848,0.207963,0.209345,0.723078,0.0908123,0.735911,0.925979,0.318207,0.911151,0.00594574,0.5842,0.418933,0.688153,0.404416,0.149329,0.226865,0.157982,0.723785,0.118538,0.50417,0.747821,0.646698,0.214927,0.272536,0.0923554,0.949176,0.332558,0.00201118,0.65883,0.542309,0.486997,0.415725,0.854499,0.68682,0.169291,0.624118,0.550913,0.879373,0.671233,0.958465,0.764553,0.482985,0.754966,0.748548,0.418352,0.567331,0.0732761,0.0414997,0.921843,0.767358,0.532929,0.899306,0.480063,0.816953,0.900679,0.718481,0.572462,0.763696,0.368222,0.894287,0.153869,0.976648,0.024454,0.973982,0.328337,0.289953,0.152612,0.394479,0.574558,0.28341,0.983631,0.726428,0.468833,0.485567,0.829016,0.328626,0.054135,0.106074,0.84918,0.845487,0.026744,0.227325,0.302359,0.258539,0.988812,0.233022,0.649576,0.600031,0.407937,0.182522,0.590978,0.321791,0.313415,0.208084,0.580662,0.944791,0.980618,0.887317,0.520639,0.11514,0.936759,0.877914,0.779126,0.210506,0.747914,0.111825,0.950786,0.230242,0.121344,0.547434,0.467247,0.18686,0.704999,0.996218,0.133918,0.316722,0.0213469,0.478415,0.853897,0.563475,0.365085,0.181977,0.0328597,0.0513421,0.149613,0.856061,0.143022,0.346348,0.935732,0.00118053,0.273606,0.200761,0.633497,0.471915,0.727756,0.726141,0.511247,0.746047,0.202372,0.399904,0.140364,0.189892,0.74483,0.618262,0.466295,0.0780887,0.224381,0.993191,0.287682,0.87116,0.476028,0.276145,0.90132,0.451821,0.370971,0.653049,0.770132,0.703185,0.842906,0.697777,0.280834,0.457797,0.441488,0.428972,0.109233,0.707142,0.17255,0.771319,0.665138,0.991149,0.931314,0.110803,0.364318,0.773316,0.678205,0.537341,0.965966,0.528029,0.299528,0.867792,0.681537,0.779451,0.203119,0.221309,0.397512,0.659057,0.645847,0.977976,0.146077,0.915952,0.716461,0.890237,0.446918,0.70714,0.781999,0.385152,0.230246,0.663561,0.132106,0.278797,0.506664,0.994077,0.907155,0.526158,0.584879,0.0761805,0.341073,0.059625,0.914707,0.0639054,0.260722,0.0920705,0.422177,0.697352,0.226758,0.332665,0.984799,0.841338,0.364444,0.646513,0.283243,0.977076,0.452322,0.526227,0.126823,0.572559,0.603396,0.431261,0.354789,0.116614,0.233432,0.759827,0.405351,0.18958,0.794825,0.44642,0.338493,0.619056,0.214754,0.115527,0.223311,0.436602,0.260439,0.616065,0.441175,0.527085,0.17093,0.0625939,0.318421,0.738779,0.140715,0.150976,0.832547,0.919475,0.632563,0.336281,0.507772,0.777837,0.783649,0.571476,0.709179,0.274791,0.544298,0.338508,0.462715,0.568435,0.131975,0.081568,0.206917,0.955608,0.338457,0.280399,0.194308,0.369921,0.649072,0.0154578,0.732428,0.877321,0.584798,0.752943,0.688372,0.549295,0.0738951,0.212582,0.647002,0.762501,0.016996,0.285417,0.446488,0.805048,0.741318,0.176198,0.763338,0.994891,0.489138,0.613656,0.78032,0.907365,0.900232,0.382938,0.249773,0.0721874,0.589194,0.997751,0.116154,0.985294,0.31471,0.558709,0.804928,0.270162,0.564082,0.402675,0.551923,0.651436,0.308821,0.383828,0.0453862,0.417442,0.0717561,0.489288,0.290242,0.912933,0.935237,0.867634,0.564134,0.519594,0.233782,0.0855311,0.0335184,0.273552,0.0930812,0.710348,0.401163,0.899836,0.525065,0.864087,0.721967,0.115891,0.835951,0.246649,0.640836,0.923676,0.733747,0.473161,0.118396,0.447343,0.380184,0.482005,0.628051,0.151889,0.921728,0.471014,0.52031,0.787267,0.0964127,0.559177,0.379095,0.571432,0.228035,0.368719,0.106814,0.830082,0.467163,0.147142,0.845153,0.131368,0.479612,0.208922,0.261652,0.712803,0.744023,0.29173,0.339505,0.762362,0.148179,0.82317,0.435177,0.108387,0.357751,0.794004,0.352893,0.380701,0.927444,0.298644,0.706726,0.430022,0.882812,0.630897,0.345715,0.211372,0.909569,0.732782,0.14479,0.948271,0.660477,0.677992,0.798536,0.786699,0.314032,0.495372,0.926629,0.282123,0.337196,0.621931,0.812689,0.644179,0.722855,0.372014,0.409488,0.881094,0.469029,0.702057,0.613098,0.517607,0.308376,0.497359,0.689784,0.789497,0.25516,0.190934,0.300358,|0.488151,0.353734,0.204047,0.165458,0.394641,0.130579,0.54313,0.987862,0.834015,0.148581,0.849661,0.724142,0.2125,0.602205,0.012127,0.64902,0.74783,0.837043,0.065882,0.819192,0.536795,0.618014,0.845706,0.537826,0.0400055,0.0527544,0.891632,0.716113,0.493311,0.247419,0.916101,0.564848,0.864968,0.624383,0.616041,0.88558,0.380899,0.34911,0.574358,0.800128,0.866807,0.0374894,0.116406,0.690018,0.659861,0.105515,0.309709,0.3336,0.216972,0.52431,0.579475,0.556423,0.233746,0.448261,0.751408,0.6574,0.143019,0.279374,0.0427415,0.452921,0.529423,0.791064,0.97805,0.277578,0.156608,0.642431,0.457872,0.289077,0.880355,0.8964,0.59905,0.856772,0.668908,0.654196,0.751595,0.746026,0.107377,0.886621,0.0087527,0.780142,0.708681,0.922543,0.658366,0.269013,0.648728,0.200336,0.957523,0.0590653,0.021426,0.20266,0.1171,0.12851,0.550181,0.231898,0.873624,0.301226,0.246747,0.14084,0.0892268,0.950447,0.591614,0.59516,0.916787,0.717781,0.656315,0.504119,0.171198,0.791249,0.575926,0.760061,0.739482,0.419008,0.982922,0.241192,0.279097,0.0174953,0.240439,0.914575,0.48137,0.580923,0.786254,0.881178,0.0888029,0.629016,0.538948,0.807706,0.3282,0.24716,0.611808,0.00015372,0.91814,0.61676,0.421677,0.948319,0.69622,0.981301,0.184883,0.344433,0.481533,0.360611,0.878639,0.28369,0.611586,0.383264,0.73257,0.615581,0.463275,0.3642,0.422382,0.391485,0.332229,0.631116,0.513795,0.229273,0.52175,0.838515,0.963096,0.189249,0.725389,0.00311548,0.798518,0.236254,0.572867,0.461725,0.0124798,0.701539,0.158979,0.820981,0.812918,0.191663,0.292595,0.428504,0.221883,0.788494,0.0316471,0.760775,0.0203478,0.101092,0.834533,0.0153666,0.392879,0.638374,0.109039,0.816457,0.429528,0.654071,0.145963,0.400482,0.326001,0.112236,0.972925,0.601112,0.152918,0.603742,0.586804,0.00665444,0.825115,0.988558,0.613153,0.453131,0.372496,0.713921,0.217577,0.35912,0.207582,0.356548,0.791976,0.482584,0.878991,0.715157,0.227124,0.907797,0.493858,0.808533,0.224116,0.536644,0.408184,0.745129,0.947205,0.365539,0.340282,0.90827,0.871131,0.428581,0.442573,0.999625,0.404056,0.502465,0.399582,0.876169,0.379035,0.718751,0.0330629,0.673186,0.196115,0.289038,0.0927833,0.219743,0.678926,0.684781,0.441304,0.577691,0.862772,0.528545,0.812575,0.0121823,0.353083,0.786539,0.0873007,0.0484781,0.0195462,0.268937,0.615181,0.503286,0.723522,0.615919,0.770319,0.7216,0.622815,0.741594,0.22728,0.163658,0.0259598,0.886646,0.398283,0.241548,0.212169,0.690222,0.632409,0.138843,0.993806,0.209256,0.332679,0.511992,0.997229,0.812605,0.826617,0.662746,0.753573,0.517991,0.899145,0.145548,0.0879606,0.253055,0.263396,0.867445,0.589916,0.247684,0.649227,0.503802,0.437787,0.210384,0.64314,0.445406,0.394915,0.816717,0.428801,0.275357,0.58048,0.777677,0.622762,0.0824913,0.366694,0.665964,0.879139,0.879777,0.58848,0.862177,0.273042,0.866921,0.664547,0.752352,0.506062,0.483894,0.716205,0.278217,0.890157,0.791331,0.89776,0.781253,0.904264,0.416866,0.0303025,0.258951,0.661393,0.36051,0.516153,0.0795098,0.72218,0.923964,0.655757,0.696368,0.369583,0.585221,0.030416,0.616901,0.178183,0.998426,0.642476,0.612098,0.323443,0.691383,0.77699,0.578887,0.399735,0.270019,0.753836,0.751465,0.0182938,0.0959586,0.258979,0.847819,0.619428,0.0822983,0.621502,0.872568,0.152899,0.383525,0.699967,0.554133,0.761748,0.738612,0.261449,0.532487,0.134223,0.0684054,0.39522,0.362426,0.459757,0.348556,0.29888,0.688231,0.834128,0.468086,0.872578,0.223042,0.750681,0.304479,0.278953,0.640301,0.32426,0.711644,0.841825,0.0366493,0.90553,0.922433,0.843361,0.506363,0.678788,0.500991,0.721335,0.161876,0.322676,0.217917,0.0823982,0.836522,0.283307,0.93169,0.803329,0.23357,0.00234914,0.743026,0.136956,0.670395,0.935932,0.505007,0.217716,0.261025,0.897501,0.561955,0.989071,0.913947,0.588597,0.493694,0.174746,0.655078,0.775628,0.303051,0.622026,0.869955,0.30316,0.64208,0.503037,0.199652,0.0328634,0.320632,0.0832894,0.946644,0.619457,0.357707,0.400637,0.539848,0.459873,0.745765,0.734454,0.520975,0.0295982,0.509922,0.0412025,0.742868,0.73197,0.361019,0.715839,0.753475,0.585613,0.363433,0.753922,0.0367348,0.867152,0.781912,0.981274,0.981072,0.150316,0.514341,0.0764002,0.0613067,0.497379,0.139532,0.386059,0.777205,0.566352,0.260395,0.159584,0.706553,0.163193,0.441006,0.30342,0.895613,0.790804,0.057807,0.564516,0.0228044,0.313565,0.318353,0.687704,0.61872,0.514847,0.54513,0.741012,0.512387,0.320351,0.634181,0.873242,0.867562,0.261019,0.676892,0.241585,0.0555472,0.415812,0.956191,0.566779,0.549699,0.85988,0.835639,0.277625,0.373034,0.239115,0.742467,0.43077,0.912944,0.874291,0.885202,0.942862,0.919374,0.33591,0.690311,0.806733,0.220966,0.863347,0.754135,0.542886,0.262849,0.261866,0.381343,0.960896,0.264907,0.9692,0.528975,0.793232,0.357316,0.429782,0.397399,0.933983,0.181559,0.32067,0.182607,0.219698,0.566264,0.890865,0.598664,0.226863,0.835311,0.0115977,0.329734,0.554594,0.7416,0.0218391,0.182043,0.882027,0.694711,0.333861,0.407431,0.352912,0.344168,0.80232,0.858007,0.99562,0.97932,0.288262,0.0521401,0.412054,0.123323,0.00757742,0.518205,0.727628,0.180506,0.0220624,0.458321,0.464896,0.362662,0.488281,0.890106,0.908007,0.100874,0.747757,0.622229,0.993039,0.787903,0.541124,0.878595,0.771402,0.808337,0.604841,0.881064,0.728889,0.693391,0.164936,0.569263,0.516642,0.254996,0.802436,0.852583,0.0503405,0.427613,0.754333,0.0716245,0.279068,0.581934,0.703286,0.372841,0.907628,0.333285,0.626207,0.406299,0.553386,0.948981,0.725986,0.300476,0.969209,0.037172,0.00170434,0.983267,0.19865,0.743815,0.673493,0.234306,0.00145847,0.00969112,0.194667,0.674449,0.788943,0.805911,0.478106,0.811212,0.970687,0.313356,0.775763,0.638553,0.429117,0.241835,0.0605444,0.334117,0.979169,0.942318,0.528275,0.999973,0.25587,0.623784,0.698642,0.605572,0.0158535,0.790633,0.45657,0.213557,0.664907,0.351564,0.211488,0.660366,0.277694,0.018603,0.274155,0.182758,0.856426,0.187025,0.586889,0.615228,0.298625,0.078109,0.402213,0.989866,0.0450252,0.0612398,0.548185,0.884069,0.500614,0.788339,0.600605,0.0585054,0.0239403,0.899605,0.83635,0.0687732,0.61948,0.812394,0.860529,0.604901,0.44817,0.42138,0.135346,0.60247,0.882152,0.595171,0.459808,0.0166814,0.946919,0.175661,0.919275,0.977844,0.166364,0.578852,0.938899,0.189927,0.724702,0.250874,0.202556,0.919684,0.572427,0.855145,0.1684,0.999783,0.555482,0.542971,0.13866,0.739831,0.938348,0.707761,0.904897,0.99627,0.950856,0.262543,0.187097,0.486075,0.0783169,0.0165198,0.14917,0.649435,0.636099,0.407662,0.991169,0.454159,0.996719,0.942122,0.137749,0.253237,0.0371665,0.702104,0.039158,0.74198,0.31483,0.0261303,0.645901,0.474515,0.879979,0.780953,0.998459,0.680042,0.605305,0.307724,0.234808,0.504305,0.901164,0.425793,0.998915,0.801294,0.932526,0.785219,0.29,0.921627,0.0725042,0.74046,0.374196,0.752099,0.277556,0.977191,0.38899,0.611618,0.645698,0.653328,0.210783,0.999463,0.864259,0.881995,0.92626,0.450116,0.0502122,0.0255819,0.0475954,0.333343,0.777978,0.346402,0.496645,0.198067,0.942269,0.11585,0.343997,0.710098,0.721168,0.884273,0.171844,0.16892,0.197045,0.763657,0.345874,0.371587,0.374846,0.959592,0.619573,0.0915224,0.272709,0.726281,0.427884,0.423087,0.715953,0.251397,0.834393,0.965915,0.256753,0.364889,0.324345,0.348946,0.174678,0.729032,0.102831,0.743713,0.994298,0.891503,0.190638,0.407262,0.847184,0.313102,0.915562,0.449329,0.548663,0.000539482,0.22975,0.561172,0.81476,0.498847,0.865981,0.688289,0.343125,0.374711,0.594254,0.987957,0.920819,0.766012,0.12238,0.793012,0.711164,0.371327,0.944674,0.559857,0.60731,0.277254,0.900428,0.486765,0.460696,0.748882,0.910951,0.736865,0.470404,0.235675,0.0619518,0.229026,0.420049,0.672889,0.121747,0.340391,0.0121303,0.562864,0.399394,0.992188,0.301285,0.377105,0.753322,0.172691,0.490461,0.0082708,0.175752,0.0757251,0.918451,0.160042,0.492712,0.532202,0.237795,0.916646,0.860893,0.342921,0.145903,0.309051,0.414453,0.403538,0.444596,0.878549,0.210022,0.145933,0.113108,0.824869,0.159851,0.161283,0.704538,0.956786,0.253348,0.56529,0.806708,0.594622,0.865818,0.0716405,0.841595,0.0955372,0.0860589,0.470517,0.517612,0.942633,0.110592,0.493186,0.0917546,0.758221,0.561222,0.0912687,0.913172,0.814537,0.930438,0.708244,0.076718,0.464409,0.728839,0.406631,0.341234,0.880544,0.307135,0.264743,0.529743,0.564619,0.661113,0.929301,0.933818,0.922017,0.62141,0.395904,0.264038,0.120664,0.00488591,0.374984,0.245729,0.989,0.329252,0.828096,0.205028,0.0352892,0.85241,0.170049,0.237251,0.899941,0.00126845,0.225266,0.21995,0.745312,0.737429,0.367036,0.916956,0.0400338,0.518651,0.893805,0.800597,0.823262,0.608342,0.961059,0.336142,0.730264,0.319889,0.405592,0.831303,0.16786,0.69983,0.21747,0.298168,0.550047,0.276914,0.783519,0.285836,0.148586,0.336997,0.094607,0.535303,0.522029,0.109895,0.0219545,0.474401,0.431945,0.346558,0.833753,0.0530771,0.202926,0.0102343,0.939669,0.128066,0.332902,0.0264706,0.419235,0.194757,0.503547,0.106734,0.943796,0.638208,0.723455,0.857791,0.963732,0.30418,0.714094,0.161604,0.734971,0.59808,0.696336,0.90743,0.220433,0.90338,0.850142,0.116168,0.0496414,0.735959,0.869762,0.130109,0.798125,0.747795,0.649907,0.521373,0.404514,0.179508,0.845495,|0.0217913,0.25209,0.413678,0.643969,0.791122,0.286047,0.384945,0.900535,0.860556,0.140043,0.733729,0.469134,0.155897,0.42707,0.732009,0.0810804,0.173022,0.0208546,0.380805,0.288107,0.361055,0.12999,0.383732,0.993333,0.47743,0.0909489,0.158448,0.0900305,0.0718824,0.846733,0.820648,0.368867,0.694909,0.368754,0.14973,0.964827,0.658561,0.262813,0.711227,0.0979361,0.514039,0.86609,0.763622,0.416176,0.275586,0.407762,0.06232,0.778647,0.178991,0.35552,0.0573199,0.704031,0.669477,0.763395,0.722893,0.572258,0.771457,0.906047,0.534565,0.349043,0.86258,0.629971,0.266164,0.493663,0.438142,0.703696,0.877645,0.352929,0.0121009,0.947016,0.500624,0.117271,0.334656,0.93278,0.173926,0.647241,0.835511,0.702321,0.36371,0.916287,0.341394,0.273137,0.272041,0.163107,0.0444575,0.542281,0.58121,0.512602,0.478637,0.369575,0.715598,0.833865,0.666608,0.580198,0.0874064,0.263195,0.287812,0.754017,0.982557,0.520824,0.165913,0.604525,0.444125,0.981037,0.588978,0.898998,0.476918,0.111284,0.311709,0.779003,0.737375,0.49804,0.277692,0.622162,0.139643,0.2477,0.944176,0.618724,0.747172,0.67861,0.430543,0.2661,0.197635,0.762767,0.894068,0.15644,0.752407,0.350976,0.794396,0.663072,0.317853,0.377369,0.992438,0.721101,0.175927,0.0348213,0.0253864,0.366469,0.481141,0.192366,0.712997,0.689889,0.68781,0.88711,0.260766,0.942765,0.606989,0.450736,0.625961,0.472018,0.703784,0.715069,0.176227,0.163383,0.599904,0.581207,0.470087,0.313557,0.0891247,0.276705,0.957859,0.245371,0.369598,0.438488,0.479884,0.681234,0.107254,0.144576,0.561927,0.553365,0.129162,0.508764,0.633832,0.825331,0.22897,0.925899,0.396751,0.41248,0.475767,0.514462,0.650875,0.40821,0.878546,0.342688,0.690665,0.332863,0.589894,0.871877,0.494378,0.312127,0.540401,0.247312,0.62481,0.955701,0.283941,0.271756,0.277792,0.355956,0.0506163,0.0330925,0.533877,0.761362,0.510952,0.369392,0.889476,0.50902,0.160722,0.844113,0.00722384,0.294241,0.158387,0.183205,0.263831,0.727541,0.380211,0.739618,0.479481,0.240413,0.213602,0.49046,0.355287,0.500748,0.560478,0.582677,0.88063,0.364981,0.859729,0.619871,0.027488,0.591604,0.564873,0.296515,0.68931,0.985853,0.963668,0.491538,0.0222497,0.870121,0.180586,0.195843,0.956914,0.601756,0.966829,0.175458,0.831926,0.463078,0.575633,0.675497,0.0692216,0.542826,0.290178,0.590937,0.878339,0.738674,0.196259,0.969817,0.859113,0.660283,0.0112515,0.876621,0.888971,0.0146958,0.259166,0.575218,0.270976,0.189418,0.579922,0.242693,0.604838,0.166485,0.511406,0.152004,0.639058,0.476565,0.305226,0.194825,0.862116,0.422231,0.207333,0.161441,0.399175,0.786462,0.229798,0.226027,0.870064,0.69218,0.375393,0.164121,0.107103,0.424583,0.214714,0.990766,0.839521,0.809495,0.748103,0.70629,0.713692,0.495093,0.378849,0.930786,0.702693,0.77131,0.955909,0.496252,0.442727,0.823953,0.658607,0.672385,0.637197,0.98592,0.031436,0.0132331,0.391876,0.261539,0.909617,0.85075,0.727618,0.929552,0.469325,0.740104,0.065467,0.0188687,0.869342,0.160234,0.572026,0.686825,0.603379,0.136172,0.796939,0.728487,0.566917,0.361919,0.749906,0.884544,0.623107,0.077679,0.504568,0.138888,0.279428,0.70653,0.57666,0.547311,0.60511,0.648438,0.255775,0.0788897,0.536404,0.586004,0.861155,0.347487,0.942922,0.597931,0.597774,0.088626,0.638746,0.0569575,0.849892,0.78398,0.879863,0.23607,0.704967,0.581585,0.890077,0.192166,0.826549,0.870931,0.604273,0.836889,0.153212,0.612647,0.703522,0.811719,0.622743,0.673078,0.798723,0.884658,0.76319,0.3474,0.427389,0.461687,0.866775,0.120023,0.566728,0.537021,0.15978,0.342889,0.102986,0.823061,0.540109,0.221533,0.443282,0.269606,0.404093,0.837678,0.841652,0.31751,0.333478,0.772151,0.94897,0.848687,0.00298089,0.549006,0.0297144,0.540836,0.103255,0.854689,0.383186,0.71787,0.137601,0.882619,0.384234,0.318949,0.51176,0.225639,0.821625,0.972242,0.750384,0.0571812,0.0180368,0.076878,0.901776,0.577806,0.30242,0.20375,0.259625,0.762517,0.985084,0.401731,0.344604,0.816173,0.067657,0.878793,0.572563,0.351478,0.694532,0.409161,0.408995,0.117882,0.245376,0.774092,0.634541,0.647633,0.844808,0.730509,0.297046,0.219422,0.723309,0.661745,0.730941,0.0942745,0.901077,0.640765,0.360341,0.733992,0.479423,0.853264,0.123802,0.777461,0.0147691,0.65218,0.406075,0.628374,0.0739691,0.841873,0.499704,0.363704,0.301426,0.723067,0.208423,0.105522,0.978834,0.845849,0.0912138,0.50343,0.432686,0.504658,0.308905,0.127377,0.949379,0.916171,0.158605,0.0212978,0.829577,0.813903,0.0727068,0.364781,0.836514,0.607375,0.563126,0.0816696,0.240398,0.203638,0.186282,0.0264076,0.464404,0.661317,0.939931,0.295101,0.861317,0.370151,0.513255,0.604713,0.987653,0.96346,0.994004,0.629813,0.58512,0.206695,0.182927,0.0133818,0.0660003,0.569914,0.0252134,0.0732374,0.934695,0.614159,0.440386,0.0192934,0.176871,0.184898,0.210212,0.0860218,0.230171,0.104381,0.530503,0.712906,0.0730479,0.329835,0.0485688,0.225868,0.734571,0.694274,0.228071,0.964831,0.546026,0.371588,0.907537,0.910484,0.0568696,0.155219,0.181509,0.46856,0.966648,0.930151,0.522358,0.529565,0.8967,0.422901,0.257721,0.704987,0.046958,0.304105,0.572505,0.0853182,0.770528,0.253381,0.419655,0.134779,0.809496,0.983369,0.0610263,0.356206,0.445873,0.220504,0.0505027,0.95328,0.828861,0.207131,0.597503,0.787899,0.173197,0.552606,0.652689,0.0886706,0.631891,0.870552,0.581996,0.443663,0.334832,0.480675,0.383512,0.00633007,0.0510667,0.652112,0.144133,0.524233,0.118417,0.992929,0.946905,0.36584,0.0580449,0.74883,0.242295,0.956591,0.108659,0.17698,0.359633,0.652422,0.835743,0.214673,0.656702,0.250539,0.0484867,0.978644,0.970408,0.134123,0.280917,0.00527185,0.523567,0.187311,0.905017,0.499868,0.596373,0.531263,0.921142,0.290578,0.0449319,0.480606,0.854435,0.714498,0.43434,0.139302,0.790893,0.0586583,0.504057,0.304289,0.921119,0.955811,0.494876,0.0209765,0.28072,0.941509,0.885888,0.0568393,0.369553,0.928234,0.211634,0.220798,0.24297,0.761251,0.353971,0.492593,0.76325,0.933829,0.293595,0.757951,0.828148,0.00558835,0.227047,0.442534,0.20232,0.529338,0.528414,0.0655674,0.277746,0.277224,0.0593795,0.933384,0.843721,0.2436,0.719365,0.834675,0.937169,0.687315,0.697538,0.00516397,0.793995,0.687531,0.112977,0.176582,0.536929,0.0813759,0.485751,0.427646,0.227867,0.163539,0.0904752,0.601359,0.0441234,0.388106,0.895182,0.562384,0.098749,0.911382,0.351718,0.80705,0.626951,0.321032,0.502499,0.158739,0.518002,0.496518,0.286478,0.019986,0.651197,0.547785,0.0487038,0.749427,0.679753,0.537009,0.0425178,0.269038,0.331103,0.567162,0.290935,0.684024,0.555756,0.38737,0.483936,0.969771,0.845897,0.73328,0.92549,0.109182,0.281028,0.600948,0.5287,0.629336,0.56204,0.0369297,0.375023,0.0813646,0.179556,0.029336,0.669619,0.194218,0.879827,0.495625,0.591527,0.542882,0.72886,0.694392,0.130817,0.439375,0.734199,0.697376,0.181874,0.410164,0.38579,0.939997,0.756784,0.164076,0.921703,0.233244,0.718676,0.568357,0.00157148,0.0410267,0.154079,0.337315,0.130695,0.0599852,0.91231,0.686878,0.30933,0.333799,0.609658,0.856497,0.300227,0.145571,0.0724775,0.310259,0.0743169,0.819748,0.642782,0.499053,0.96458,0.543281,0.418909,0.673102,0.66327,0.0214117,0.244805,0.659137,0.204142,0.99189,0.705268,0.00600082,0.0732797,0.720854,0.565762,0.871613,0.156111,0.0404707,0.339471,0.25895,0.330692,0.908314,0.0977939,0.48222,0.798538,0.820275,0.0505643,0.329303,0.175731,0.791027,0.885896,0.0980558,0.177055,0.180889,0.97144,0.508517,0.683119,0.0462701,0.625086,0.544599,0.624211,0.273172,0.336201,0.862205,0.429203,0.605825,0.88151,0.663544,0.449333,0.0495407,0.223205,0.704338,0.101641,0.873479,0.139535,0.413472,0.474235,0.43093,0.549498,0.458951,0.36058,0.805751,0.0557348,0.763957,0.266048,0.451334,0.0151604,0.744781,0.548924,0.00657463,0.510677,0.737985,0.181249,0.767446,0.73267,0.121592,0.864728,0.488248,0.0358728,0.477741,0.338605,0.799847,0.955659,0.415722,0.444169,0.155707,0.517238,0.767114,0.214064,0.669747,0.157825,0.489394,0.361702,0.281063,0.197543,0.566654,0.0843065,0.340187,0.376376,0.602311,0.886998,0.841468,0.768112,0.239398,0.727686,0.636091,0.0650978,0.148137,0.808859,0.146784,0.933572,0.895613,0.107774,0.617581,0.639905,0.336305,0.0527686,0.335783,0.00418538,0.556055,0.895988,0.360064,0.42345,0.574971,0.619136,0.404834,0.860023,0.840968,0.575711,0.161466,0.767424,0.0711973,0.982963,0.970072,0.675086,0.159422,0.480799,0.659367,0.0930719,0.0764219,0.17641,0.177441,0.60729,0.738338,0.443182,0.975247,0.823919,0.998158,0.481163,0.715382,0.782928,0.40093,0.739967,0.0300841,0.1919,0.688372,0.476978,0.304727,0.403156,0.423488,0.427591,0.515061,0.2141,0.324158,0.893923,0.388623,0.060223,0.983565,0.554154,0.108335,0.0546328,0.97397,0.107274,0.285119,0.0662976,0.857141,0.68275,0.936094,0.514351,0.461284,0.520803,0.525112,0.266627,0.267416,0.821397,0.0405033,0.353262,0.6642,0.197984,0.0311102,0.150168,0.76214,0.0613983,0.559998,0.332097,0.432223,0.225761,0.745176,0.213179,0.859959,0.471719,0.561609,0.88915,0.943777,0.807589,0.625912,0.915848,0.337825,0.970013,0.651367,0.841924,0.991287,0.808079,0.619145,0.0134629,0.255439,0.693995,0.00544804,0.242053,0.0236557,0.951172,0.817132,0.0746598,0.465684,0.22232,0.84094,0.805411,0.397841,0.833456,0.189468,0.979345,0.509958,0.953577,0.407755,|0.975864,0.782203,0.00513268,0.95488,0.666759,0.0641314,0.144859,0.512852,0.420511,0.165687,0.83704,0.544426,0.142178,0.591075,0.222234,0.14556,0.888915,0.240425,0.760375,0.763051,0.928568,0.192175,0.377679,0.405463,0.587162,0.579463,0.588922,0.136926,0.82755,0.98719,0.780369,0.491747,0.278834,0.257354,0.782752,0.14823,0.716244,0.0150602,0.647837,0.526452,0.601419,0.290558,0.349409,0.423966,0.110659,0.0530403,0.606338,0.170988,0.0271029,0.747545,0.307773,0.609945,0.162888,0.242,0.465109,0.667984,0.510907,0.369904,0.0356143,0.158777,0.980729,0.1982,0.0271737,0.825252,0.73441,0.65536,0.574947,0.424624,0.952236,0.647986,0.146464,0.646127,0.942966,0.371831,0.558873,0.730714,0.298178,0.249634,0.921179,0.803737,0.485477,0.51875,0.488535,0.367978,0.834954,0.0416092,0.690792,0.468772,0.344914,0.795827,0.507627,0.0217651,0.364599,0.159442,0.43658,0.0813909,0.396675,0.6651,0.843604,0.72698,0.0845775,0.706596,0.905533,0.768356,0.587372,0.877433,0.785631,0.301347,0.996951,0.906974,0.128587,0.51955,0.896269,0.195882,0.798097,0.351384,0.944954,0.130685,0.789221,0.652288,0.908661,0.738723,0.390898,0.211954,0.244108,0.752098,0.246196,0.428642,0.809351,0.608089,0.522878,0.187,0.177654,0.46913,0.505535,0.1129,0.590927,0.248352,0.605835,0.0049122,0.434102,0.67475,0.214184,0.471046,0.955343,0.0604608,0.215105,0.228003,0.521733,0.529826,0.630294,0.548733,0.533885,0.382003,0.932989,0.834689,0.898441,0.663907,0.443874,0.540371,0.651191,0.663563,0.742284,0.187202,0.405402,0.885371,0.391048,0.42714,0.341973,0.9871,0.323011,0.694958,0.946792,0.153674,0.222231,0.967008,0.544209,0.784493,0.223575,0.609558,0.72699,0.286653,0.0958217,0.281066,0.725914,0.607611,0.125897,0.764353,0.478341,0.150522,0.858631,0.338951,0.58962,0.952979,0.948007,0.594328,0.183769,0.84907,0.338859,0.719523,0.767948,0.811477,0.145866,0.0106829,0.868566,0.096861,0.0745021,0.732352,0.594627,0.326884,0.730054,0.182635,0.517644,0.221285,0.57386,0.34631,0.8508,0.761532,0.757414,0.629672,0.380438,0.634305,0.740317,0.0673628,0.00909179,0.896665,0.224845,0.489564,0.715277,0.612145,0.0175734,0.883708,0.09939,0.245698,0.134116,0.123624,0.750034,0.471277,0.634999,0.435559,0.516079,0.306706,0.911619,0.966909,0.970437,0.373312,0.321892,0.896316,0.145423,0.682289,0.495829,0.623418,0.702057,0.666415,0.947691,0.819372,0.241773,0.588978,0.721965,0.0949737,0.0783854,0.963753,0.49321,0.0198779,0.859808,0.0953403,0.991265,0.970431,0.472738,0.00476915,0.720988,0.378976,0.650379,0.776803,0.0931266,0.960821,0.362018,0.490574,0.85158,0.12304,0.511465,0.976857,0.783376,0.293527,0.55631,0.401711,0.675199,0.493431,0.130492,0.307086,0.92802,0.859713,0.994251,0.0154733,0.387364,0.677823,0.481335,0.955137,0.0811618,0.363727,0.803028,0.665638,0.424755,0.843556,0.538981,0.0804171,0.468293,0.349348,0.901055,0.201284,0.348978,0.257795,0.195336,0.767285,0.808732,0.169757,0.818047,0.666778,0.678515,0.975589,0.836405,0.0433053,0.358971,0.681518,0.562002,0.0872406,0.237892,0.00854373,0.033235,0.104313,0.353338,0.735626,0.503622,0.40588,0.140862,0.78188,0.537733,0.132343,0.0309887,0.472077,0.290421,0.373691,0.634097,0.179452,0.169034,0.536401,0.463897,0.77173,0.67539,0.375161,0.475987,0.0259868,0.674987,0.919586,0.551522,0.222692,0.0152017,0.625952,0.744157,0.0193928,0.885843,0.242569,0.00162822,0.721231,0.578294,0.0467289,0.448167,0.770703,0.131908,0.757078,0.849298,0.184649,0.743795,0.082448,0.243084,0.00956643,0.557012,0.522036,0.163385,0.635773,0.204811,0.816009,0.972083,0.302674,0.349123,0.862552,0.173005,0.177727,0.904535,0.870026,0.488967,0.143361,0.054671,0.546716,0.693001,0.945183,0.894655,0.900559,0.340801,0.0765755,0.579648,0.577493,0.783139,0.501224,0.472181,0.395501,0.341524,0.236475,0.41054,0.690109,0.525551,0.226158,0.388388,0.595336,0.199891,0.970156,0.101542,0.410697,0.764473,0.320994,0.242671,0.88049,0.0696271,0.867346,0.513513,0.903207,0.765755,0.477189,0.478612,0.387402,0.929114,0.175649,0.99619,0.619648,0.208478,0.205547,0.571173,0.926802,0.231887,0.427048,0.92416,0.0918205,0.7509,0.739043,0.400707,0.736874,0.741116,0.390693,0.0958533,0.379236,0.184525,0.957715,0.222287,0.61764,0.354208,0.257893,0.162908,0.747869,0.727766,0.709229,0.425578,0.0620058,0.636715,0.113711,0.413952,0.0333458,0.908175,0.399824,0.738664,0.308595,0.065083,0.587175,0.777861,0.838104,0.928092,0.957449,0.656727,0.521073,0.729246,0.560474,0.365308,0.797402,0.192098,0.591697,0.293511,0.0962867,0.32398,0.766172,0.751935,0.186244,0.436039,0.985187,0.318117,0.716313,0.698451,0.837168,0.426134,0.059087,0.662578,0.860021,0.884972,0.645903,0.753108,0.436556,0.332004,0.698873,0.466082,0.746539,0.152973,0.901516,0.041679,0.69726,0.599603,0.690817,0.486328,0.0281379,0.186736,0.615353,0.44367,0.369759,0.857382,0.506471,0.110656,0.695527,0.915602,0.941841,0.0401693,0.541635,0.591012,0.999582,0.874657,0.538625,0.46772,0.925641,0.561539,0.390126,0.198114,0.67356,0.0300645,0.0835956,0.690036,0.624347,0.766157,0.583664,0.467932,0.583913,0.230694,0.819667,0.0549206,0.0702725,0.862864,0.375981,0.690695,0.908362,0.403465,0.623076,0.950806,0.397441,0.47491,0.644098,0.217742,0.626849,0.809752,0.250172,0.849062,0.980005,0.00168127,0.868341,0.157556,0.750841,0.564766,0.162155,0.955674,0.826735,0.621011,0.638364,0.11191,0.0125515,0.222662,0.137145,0.262041,0.547556,0.433712,0.189652,0.617624,0.942903,0.645425,0.909872,0.482025,0.573734,0.251581,0.232851,0.20206,0.967341,0.775405,0.724743,0.676973,0.367924,0.0354257,0.16936,0.595628,0.279711,0.0159984,0.624553,0.592112,0.766884,0.911218,0.2892,0.676127,0.608471,0.249644,0.216531,0.678505,0.389159,0.73262,0.308424,0.881075,0.723616,0.373058,0.632737,0.867748,0.522947,0.258144,0.296205,0.332039,0.811173,0.893672,0.266032,0.269616,0.37424,0.140597,0.984111,0.390638,0.458915,0.935697,0.669297,0.0605251,0.977719,0.590378,0.237312,0.596936,0.832283,0.411603,0.657874,0.295521,0.426412,0.800372,0.334487,0.760539,0.154452,0.761513,0.558564,0.40163,0.21266,0.245278,0.128045,0.510623,0.927758,0.912174,0.840044,0.56291,0.0890504,0.933435,0.065643,0.975497,0.0626937,0.328904,0.0741622,0.968685,0.628154,0.611461,0.764375,0.656018,0.534725,0.20435,0.922871,0.297812,0.556255,0.669475,0.828849,0.87243,0.564505,0.856179,0.250072,0.146775,0.346041,0.110506,0.582126,0.09641,0.507481,0.0901784,0.415804,0.317179,0.141821,0.77822,0.223385,0.296201,0.35595,0.346721,0.946175,0.648436,0.838925,0.506168,0.118323,0.922072,0.698697,0.67987,0.713333,0.876599,0.70374,0.111942,0.578004,0.552119,0.15369,0.75092,0.0815467,0.766114,0.874948,0.865139,0.769502,0.545355,0.631367,0.528338,0.117847,0.306839,0.8502,0.659108,0.0711093,0.0416244,0.729646,0.0180347,0.545897,0.412872,0.879178,0.83698,0.651473,0.78397,0.428641,0.826293,0.113408,0.283663,0.677736,0.450467,0.978314,0.947438,0.909741,0.107159,0.7719,0.0718488,0.787071,0.361387,0.210274,0.590181,0.932929,0.636493,0.501392,0.767974,0.413148,0.924993,0.58711,0.151864,0.772553,0.352611,0.00901616,0.460666,0.0429745,0.387084,0.752992,0.927451,0.283387,0.49861,0.839176,0.0403637,0.0838968,0.72742,0.503554,0.801091,0.746201,0.533304,0.576893,0.867296,0.815397,0.71648,0.535688,0.173438,0.548589,0.284301,0.987404,0.574394,0.570012,0.53486,0.641511,0.0607921,0.063006,0.914066,0.595533,0.391816,0.585398,0.0636812,0.807802,0.0776545,0.683919,0.331251,0.128877,0.0747299,0.582942,0.208188,0.615431,0.378319,0.349835,0.965141,0.442236,0.503335,0.988831,0.682658,0.310818,0.289729,0.687493,0.43104,0.932382,0.64611,0.786622,0.768797,0.690627,0.985549,0.029546,0.230204,0.712365,0.364006,0.738296,0.355501,0.393491,0.48142,0.433111,0.526448,0.998125,0.638965,0.27001,0.723432,0.301331,0.379158,0.37231,0.731903,0.249317,0.16518,0.00487459,0.547189,0.5228,0.555029,0.816993,0.505884,0.542401,0.0292531,0.409709,0.460682,0.716762,0.191174,0.996857,0.235355,0.64917,0.847827,0.2904,0.597777,0.732217,0.000427485,0.8856,0.426872,0.537453,0.422976,0.346494,0.979216,0.277705,0.216496,0.0642732,0.118988,0.850456,0.538682,0.561842,0.813148,0.475426,0.956257,0.0726212,0.226426,0.218669,0.292015,0.137717,0.13574,0.733089,0.460282,0.684858,0.453213,0.147902,0.0456648,0.644838,0.497518,0.423706,0.94463,0.685032,0.258312,0.885671,0.973611,0.215079,0.400044,0.111262,0.434898,0.372419,0.912252,0.711259,0.785983,0.688864,0.937297,0.820076,0.280856,0.1102,0.306193,0.342333,0.267835,0.4491,0.24708,0.514541,0.833968,0.310194,0.355654,0.0220156,0.505443,0.774166,0.00184476,0.845443,0.645083,0.195436,0.208239,0.230055,0.412826,0.786207,0.189838,0.494875,0.798084,0.150341,0.125311,0.283487,0.715141,0.593022,0.527009,0.58098,0.486734,0.445712,0.406018,0.899761,0.777846,0.0108256,0.172983,0.750593,0.0311337,0.62734,0.888242,0.369229,0.0425297,0.192101,0.353871,0.22634,0.506953,0.468579,0.175152,0.229423,0.264678,0.202989,0.777736,0.228063,0.728804,0.106167,0.652934,0.830162,0.119321,0.226454,0.541755,0.179102,0.0357518,0.423259,0.31909,0.401627,0.495251,0.801017,0.856081,0.950191,0.744654,0.29756,0.528802,0.768972,0.214247,0.231732,0.643041,0.718403,0.437341,0.988155,0.663308,0.730031,0.402606,0.579187,0.694385,0.445385,|0.700711,0.203971,0.579624,0.770418,0.797346,0.811941,0.593096,0.82477,0.35587,0.0200977,0.237851,0.270463,0.39633,0.695018,0.237659,0.94115,0.121929,0.577118,0.507776,0.372277,0.259626,0.31255,0.961988,0.554639,0.440443,0.933649,0.32425,0.826784,0.094225,0.929158,0.7193,0.130248,0.679972,0.0405266,0.986192,0.144997,0.532553,0.0611059,0.920337,0.719187,0.740733,0.231597,0.738048,0.636415,0.380447,0.618406,0.100352,0.527257,0.512851,0.496844,0.0757011,0.966391,0.440795,0.723755,0.135377,0.285609,0.232017,0.892231,0.28098,0.0114581,0.127137,0.448417,0.821753,0.69142,0.624174,0.511055,0.0994545,0.736062,0.110327,0.225634,0.143775,0.266266,0.879953,0.962909,0.822142,0.790616,0.747024,0.25599,0.128593,0.952119,0.595837,0.293317,0.508666,0.148968,0.91406,0.679169,0.505829,0.139489,0.801029,0.521635,0.274787,0.0701752,0.568465,0.16697,0.710781,0.464709,0.992007,0.0296868,0.608735,0.807625,0.345663,0.711025,0.352506,0.279247,0.107876,0.67624,0.96784,0.248289,0.87339,0.182641,0.677359,0.317533,0.952643,0.157437,0.0192748,0.00703883,0.353701,0.862929,0.683168,0.928829,0.194818,0.202024,0.206758,0.483972,0.322341,0.763861,0.543299,0.241075,0.210168,0.888474,0.514927,0.943564,0.621527,0.506989,0.628996,0.67014,0.959044,0.489686,0.819189,0.173783,0.171378,0.385935,0.82825,0.434951,0.972124,0.00219756,0.796409,0.323989,0.733471,0.0897083,0.136162,0.150759,0.469818,0.165077,0.802736,0.92592,0.546279,0.594883,0.729934,0.685905,0.427096,0.216932,0.450383,0.305909,0.708685,0.246931,0.751929,0.630949,0.980153,0.353889,0.297387,0.996766,0.721453,0.267989,0.820728,0.272836,0.180535,0.872571,0.561807,0.680076,0.0760247,0.291068,0.986113,0.869885,0.86305,0.462002,0.538214,0.451225,0.171304,0.293155,0.776082,0.711583,0.944196,0.114614,0.670757,0.189219,0.370883,0.252743,0.626685,0.62216,0.569334,0.778324,0.854984,0.310703,0.820652,0.860452,0.783204,0.711512,0.906848,0.805302,0.599967,0.531673,0.867044,0.685865,0.198039,0.620314,0.8128,0.0847891,0.765826,0.915542,0.916303,0.315657,0.581697,0.0683466,0.636779,0.363002,0.205454,0.199495,0.295404,0.688052,0.868863,0.673922,0.210651,0.22166,0.216309,0.930237,0.953339,0.113228,0.15933,0.700478,0.240097,0.562043,0.769868,0.57575,0.0574596,0.322136,0.993507,0.231641,0.857601,0.786871,0.969219,0.674248,0.254604,0.574865,0.0718184,0.296164,0.740525,0.262146,0.945492,0.602256,0.83603,0.928922,0.371119,0.0391952,0.535002,0.651879,0.0498071,0.901228,0.708162,0.233717,0.533541,0.373874,0.88595,0.70716,0.539225,0.0157002,0.923118,0.500866,0.631607,0.0158113,0.294088,0.561856,0.047528,0.363891,0.935398,0.158735,0.886943,0.890043,0.304731,0.737499,0.790677,0.0868039,0.799162,0.0376139,0.900341,0.489339,0.574304,0.244501,0.965083,0.258047,0.403421,0.942854,0.441529,0.543915,0.520943,0.355777,0.974458,0.456785,0.394636,0.698793,0.288687,0.48023,0.510138,0.171404,0.0583602,0.410875,0.384234,0.650836,0.921836,0.935444,0.38046,0.595866,0.151919,0.201322,0.583684,0.274102,0.451159,0.480808,0.60277,0.880195,0.200769,0.736263,0.0750503,0.750646,0.637646,0.361985,0.141314,0.810423,0.481806,0.66632,0.165062,0.762694,0.653875,0.588857,0.739749,0.05987,0.962763,0.134066,0.95126,0.478784,0.644581,0.325693,0.00134671,0.844012,0.505816,0.945939,0.111295,0.603609,0.932831,0.466918,0.144973,0.999141,0.507977,0.494839,0.96265,0.786158,0.469358,0.0993503,0.272623,0.327196,0.32423,0.288629,0.783937,0.386937,0.289927,0.416761,0.551826,0.325204,0.790359,0.168757,0.63204,0.856272,0.576687,0.987191,0.910097,0.0662404,0.815691,0.990439,0.856785,0.407539,0.785863,0.368728,0.25575,0.197359,0.489634,0.214216,0.931297,0.195278,0.0861362,0.486657,0.128386,0.262064,0.555116,0.451554,0.147393,0.982813,0.665291,0.473876,0.683792,0.41875,0.918948,0.726296,0.298027,0.697879,0.139243,0.881369,0.175142,0.0520716,0.164414,0.890166,0.951691,0.266037,0.956307,0.735221,0.721523,0.546361,0.90108,0.218159,0.979811,0.774567,0.559127,0.529014,0.495285,0.456515,0.0608907,0.3091,0.476414,0.864068,0.331617,0.723294,0.162445,0.0134703,0.654193,0.842653,0.998343,0.117545,0.429664,0.0984151,0.221871,0.77687,0.326343,0.85177,0.177222,0.0775795,0.995998,0.580212,0.304577,0.063387,0.115291,0.177349,0.503164,0.774837,0.0498704,0.46935,0.78386,0.582053,0.899268,0.888175,0.499307,0.485209,0.651494,0.446347,0.225284,0.0286354,0.169314,0.300511,0.958328,0.649498,0.702911,0.10695,0.512929,0.737239,0.93889,0.186692,0.0904654,0.213627,0.807312,0.818082,0.469211,0.447903,0.43749,0.7218,0.538247,0.737959,0.756038,0.103507,0.953208,0.39315,0.805877,0.0210901,0.136465,0.626044,0.825368,0.100163,0.350428,0.113514,0.28299,0.884845,0.792995,0.980926,0.67494,0.45283,0.94656,0.583843,0.264292,0.104365,0.236232,0.0264344,0.774808,0.943045,0.513787,0.976621,0.435942,0.943967,0.892924,0.95791,0.704192,0.0239201,0.860654,0.657361,0.273796,0.303688,0.502897,0.177712,0.985187,0.00325966,0.0662137,0.0913941,0.331323,0.648901,0.493352,0.101957,0.618336,0.606708,0.767677,0.196844,0.126371,0.258777,0.0800303,0.987863,0.807131,0.846679,0.512176,0.882055,0.718605,0.508023,0.310548,0.736857,0.0665326,0.709077,0.998907,0.289089,0.860277,0.497238,0.310468,0.958273,0.65606,0.288623,0.0786557,0.948122,0.350065,0.51081,0.121483,0.825664,0.210266,0.246531,0.852595,0.632184,0.704718,0.480314,0.00231785,0.768329,0.168424,0.661842,0.130862,0.420092,0.645802,0.797469,0.611397,0.132238,0.516517,0.132283,0.619204,0.615903,0.237839,0.239247,0.943891,0.342515,0.277129,0.362247,0.869455,0.8474,0.482056,0.894744,0.536825,0.213648,0.764954,0.540259,0.967818,0.789311,0.915085,0.216466,0.116128,0.0666382,0.298579,0.985023,0.293626,0.884502,0.587143,0.0750352,0.743326,0.834634,0.988248,0.205753,0.558316,0.821031,0.808935,0.0238288,0.187981,0.750191,0.289669,0.714594,0.0238487,0.917165,0.514754,0.597424,0.406667,0.834528,0.00908178,0.355784,0.782064,0.285746,0.239057,0.720147,0.818133,0.848938,0.687523,0.530039,0.129767,0.449462,0.28758,0.0624759,0.39687,0.934186,0.298262,0.884497,0.640899,0.748827,0.210281,0.520533,0.456229,0.719004,0.122686,0.0826049,0.700973,0.268472,0.256056,0.998414,0.0437865,0.307327,0.64786,0.963744,0.000292182,0.023637,0.445408,0.272811,0.0677599,0.856905,0.0612006,0.0939152,0.120369,0.425596,0.999806,0.861477,0.449836,0.167015,0.200542,0.341317,0.635478,0.729286,0.695144,0.625886,0.372944,0.962788,0.333187,0.978629,0.493176,0.340289,0.670732,0.388663,0.0667272,0.144398,0.764131,0.384133,0.0449129,0.0215223,0.500611,0.369525,0.081677,0.628095,0.56606,0.832565,0.888625,0.245377,0.777668,0.427634,0.661413,0.144981,0.841215,0.450604,0.798075,0.958928,0.675258,0.433598,0.877012,0.0662516,0.407477,0.858794,0.402577,0.0820913,0.567673,0.929469,0.390566,0.526435,0.289338,0.0249181,0.63962,0.863605,0.790013,0.257979,0.291838,0.310169,0.847532,0.974624,0.241471,0.276667,0.998452,0.887003,0.602579,0.474293,0.809762,0.893056,0.253744,0.271788,0.722134,0.304771,0.122947,0.972908,0.361097,0.827629,0.473319,0.942404,0.000580728,0.144266,0.826706,0.0458985,0.0475453,0.488363,0.630378,0.930362,0.964877,0.565111,0.626196,0.641625,0.769488,0.22679,0.856612,0.713651,0.5971,0.308813,0.183463,0.739515,0.54755,0.60511,0.994326,0.613894,0.278284,0.0389129,0.31554,0.553321,0.862803,0.615318,0.660914,0.831331,0.783275,0.105534,0.843435,0.107951,0.996715,0.500788,0.311453,0.506156,0.851213,0.504179,0.907146,0.403253,0.880951,0.275856,0.305218,0.967044,0.31375,0.94115,0.443725,0.10139,0.331655,0.929888,0.28027,0.42262,0.152847,0.56537,0.447489,0.0271671,0.547072,0.642842,0.409158,0.976281,0.508046,0.820214,0.848031,0.239705,0.446911,0.167652,0.133425,0.595047,0.138446,0.26179,0.171475,0.380359,0.504299,0.583484,0.248785,0.505077,0.808382,0.809202,0.24019,6.65784e-05,0.635896,0.600103,0.45716,0.907348,0.44532,0.53046,0.598992,0.722503,0.638591,0.397214,0.19257,0.664403,0.83669,0.487509,0.662058,0.0689248,0.769375,0.740337,0.342945,0.741714,0.779536,0.703853,0.302563,0.717891,0.390689,0.0230844,0.240451,0.268421,0.211878,0.959146,0.888422,0.406165,0.0829424,0.694094,0.717084,0.945541,0.373292,0.0257969,0.084523,0.904214,0.726314,0.913243,0.0301201,0.955174,0.490775,0.321431,0.636039,0.262351,0.617085,0.151806,0.503192,0.467163,0.876819,0.642094,0.983972,0.895187,0.667411,0.696721,0.728739,0.853968,0.16185,0.182762,0.465073,0.820502,0.535544,0.921658,0.0825819,0.20559,0.181287,0.670392,0.947081,0.580275,0.258714,0.0785679,0.356129,0.222918,0.46228,0.419262,0.510293,0.878393,0.786568,0.0904418,0.53923,0.666743,0.65388,0.162872,0.525122,0.953768,0.43993,0.31167,0.215388,0.0877548,0.395311,0.0142689,0.631323,0.114918,0.224115,0.0264399,0.765579,0.0604553,0.205263,0.464384,0.930816,0.132552,0.29613,0.297871,0.611585,0.722812,0.42079,0.590804,0.0660234,0.986086,0.684136,0.146281,0.807619,0.554511,0.666937,0.754626,0.359819,0.415462,0.880614,0.960136,0.224798,0.242861,0.622478,0.813542,0.144939,0.566132,0.672466,0.373554,0.0307997,0.91925,0.519278,0.698949,0.204383,0.401636,0.279252,0.066725,0.905321,0.752554,0.474827,0.12445,0.564689,0.667119,0.188951,0.649254,0.0636541,0.417778,0.134953,0.739933,0.216644,0.488286,0.0255864,0.0445344,|0.64984,0.984129,0.376492,0.916166,0.599738,0.511781,0.0528207,0.469229,0.145615,0.253629,0.210923,0.630689,0.0416515,0.0465729,0.389728,0.343992,0.402828,0.881262,0.71396,0.833364,0.341305,0.259719,0.438701,0.500483,0.247696,0.829668,0.643731,0.865246,0.720202,0.785579,0.859105,0.104768,0.666506,0.381918,0.526451,0.0573488,0.0145829,0.747233,0.549775,0.287768,0.408015,0.0553761,0.215322,0.275699,0.848083,0.716314,0.604531,0.767195,0.439027,0.468864,0.87548,0.0728052,0.69617,0.247619,0.0339107,0.920793,0.0227257,0.148561,0.529031,0.359766,0.264206,0.268516,0.529439,0.86518,0.922313,0.647479,0.371114,0.480823,0.463618,0.245458,0.0363169,0.432575,0.208644,0.512,0.802995,0.281085,0.304982,0.0701193,0.662148,0.838268,0.865958,0.639603,0.164612,0.931021,0.335293,0.475476,0.0580019,0.910029,0.515617,0.252255,0.078716,0.692089,0.652048,0.677294,0.827616,0.344677,0.836996,0.584523,0.0414051,0.475946,0.304423,0.890906,0.0964793,0.125601,0.117954,0.825945,0.330696,0.236815,0.919405,0.91443,0.284196,0.0623698,0.585917,0.383837,0.624526,0.678026,0.44889,0.957572,0.980749,0.883476,0.868941,0.453532,0.583637,0.745386,0.359256,0.0223698,0.389699,0.555615,0.541777,0.748813,0.436645,0.296966,0.202265,0.415841,0.856379,0.206296,0.949993,0.577673,0.191613,0.134312,0.50965,0.686591,0.689233,0.420713,0.152516,0.75831,0.234623,0.779424,0.992174,0.949661,0.472373,0.542888,0.334245,0.217579,0.513631,0.346693,0.455778,0.595486,0.117612,0.524517,0.546352,0.703339,0.130486,0.477062,0.787653,0.819364,0.220162,0.914975,0.681493,0.0230454,0.73477,0.658911,0.388363,0.685771,0.544326,0.602387,0.606467,0.724808,0.0339635,0.979309,0.265705,0.212114,0.77894,0.0911732,0.852923,0.677429,0.602789,0.0147256,0.468887,0.856774,0.553178,0.010639,0.497032,0.810683,0.01072,0.717632,0.180901,0.0527918,0.055829,0.834738,0.659904,0.124257,0.655866,0.0827548,0.978145,0.358631,0.963742,0.48831,0.494248,0.890752,0.575711,0.768042,0.552356,0.896604,0.82384,0.075952,0.132974,0.266476,0.92346,0.0520436,0.694519,0.147527,0.272651,0.394279,0.825401,0.783901,0.0234831,0.539865,0.289265,0.654727,0.0139377,0.75192,0.428959,0.544579,0.41018,0.61139,0.330929,0.940332,0.8718,0.000329077,0.516394,0.947211,0.686093,0.145484,0.787245,0.848653,0.178636,0.373743,0.602944,0.589511,0.586981,0.0477776,0.00478381,0.993718,0.45214,0.00712281,0.215259,0.685819,0.871604,0.207373,0.69887,0.439659,0.812342,0.183403,0.487327,0.576649,0.996722,0.784342,0.399613,0.770574,0.409571,0.299025,0.90455,0.744957,0.858898,0.919363,0.515363,0.370632,0.54314,0.211648,0.754225,0.103209,0.777105,0.0568134,0.0160856,0.36571,0.858707,0.0627165,0.485439,0.645838,0.069291,0.721922,0.0180402,0.576714,0.575249,0.521201,0.492186,0.144879,0.17564,0.417561,0.510123,0.613055,0.812766,0.563335,0.674297,0.111978,0.934152,0.125259,0.82217,0.216782,0.453154,0.486099,0.315061,0.216646,0.888175,0.525011,0.250372,0.131891,0.19401,0.981511,0.366815,0.960604,0.202832,0.415873,0.988899,0.247346,0.903466,0.136184,0.861067,0.0702187,0.681949,0.870428,0.67483,0.480929,0.572379,0.808182,0.0091325,0.792888,0.136557,0.839332,0.624928,0.232621,0.170558,0.601892,0.287295,0.430555,0.0371731,0.631412,0.967685,0.0848365,0.300179,0.276534,0.579515,0.26438,0.129104,0.239323,0.588183,0.925252,0.567996,0.653704,0.671323,0.382629,0.729012,0.596998,0.988911,0.879579,0.626132,0.712892,0.166946,0.0121171,0.707043,0.0484638,0.582543,0.33574,0.458458,0.103339,0.785962,0.507073,0.617009,0.938094,0.852334,0.733201,0.285529,0.750012,0.85612,0.254208,0.687716,0.365227,0.659499,0.318676,0.816857,0.287461,0.538485,0.761402,0.453527,0.0565526,0.451592,0.26363,0.994314,0.764048,0.80434,0.0765873,0.413806,0.307659,0.185455,0.154708,0.580083,0.114024,0.143953,0.471415,0.647191,0.239771,0.389125,0.998908,0.613852,0.520008,0.0333456,0.717279,0.163191,0.548739,0.145958,0.922932,0.357871,0.392048,0.594875,0.57004,0.0246536,0.800457,0.399399,0.677295,0.998312,0.800444,0.618263,0.437735,0.277176,0.0740702,0.69425,0.0115647,0.59732,0.0748408,0.0561479,0.141539,0.202578,0.0166429,0.626091,0.669969,0.944653,0.957169,0.746903,0.791634,0.560552,0.905046,0.0736685,0.460142,0.497358,0.949823,0.897887,0.642219,0.803333,0.293522,0.938388,0.967503,0.511388,0.849718,0.0447291,0.796999,0.228753,0.666728,0.13108,0.901726,0.85103,0.765269,0.352134,0.376974,0.943669,0.318017,0.392421,0.794868,0.961839,0.248135,0.133374,0.603002,0.0441609,0.879595,0.50064,0.724753,0.964143,0.479992,0.867977,0.183967,0.522921,0.551579,0.141276,0.410988,0.9388,0.674877,0.924322,0.078675,0.122493,0.341409,0.701726,0.899998,0.149486,0.381662,0.873975,0.372371,0.685136,0.515449,0.46921,0.866827,0.899717,0.614743,0.621394,0.0767183,0.939377,0.412978,0.591415,0.936841,0.72872,0.962641,0.297958,0.642282,0.536862,0.978347,0.021078,0.63115,0.596663,0.439195,0.256184,0.815547,0.0845388,0.305332,0.343518,0.761086,0.327514,0.977857,0.0397928,0.540145,0.00943184,0.629715,0.749028,0.226014,0.640498,0.366701,0.548288,0.74313,0.597026,0.173058,0.208754,0.376757,0.6408,0.165812,0.842053,0.428429,0.477558,0.652605,0.119246,0.687417,0.838285,0.363656,0.193793,0.101052,0.865773,0.279965,0.50425,0.328207,0.395715,0.571607,0.970154,0.869705,0.564434,0.867216,0.586956,0.295521,0.301589,0.465472,0.964866,0.250988,0.0290223,0.285846,0.43108,0.870631,0.131689,0.204682,0.231803,0.534487,0.0339785,0.965011,0.781513,0.153882,0.447296,0.934138,0.208294,0.766481,0.179947,0.488483,0.325109,0.0641853,0.186435,0.429442,0.264877,0.171022,0.453793,0.544576,0.554304,0.372704,0.75053,0.449092,0.0996909,0.256166,0.0255878,0.952414,0.365369,0.755333,0.610279,0.401171,0.668408,0.49539,0.714508,0.00486851,0.0312195,0.314083,0.707238,0.590399,0.377575,0.767411,0.102471,0.683207,0.00420052,0.18494,0.209173,0.873339,0.24747,0.542204,0.044961,0.478561,0.000987649,0.409992,0.910884,0.19935,0.764854,0.172647,0.20016,0.0826163,0.402507,0.876384,0.38579,0.013976,0.717037,0.144979,0.339286,0.668598,0.795828,0.852723,0.83598,0.596078,0.38997,0.0639481,0.569986,0.528449,0.429269,0.479028,0.887429,0.613741,0.843997,0.163686,0.404572,0.306411,0.0103526,0.308502,0.832845,0.968559,0.477834,0.565051,0.914352,0.913118,0.615733,0.660532,0.512638,0.851283,0.216229,0.78456,0.247586,0.314304,0.766584,0.582374,0.832455,0.836429,0.854006,0.495729,0.808665,0.926422,0.924789,0.259352,0.594009,0.136824,0.239484,0.662826,0.356699,0.644713,0.632297,0.246594,0.168052,0.869706,0.498637,0.0436433,0.595492,0.603676,0.11377,0.223524,0.96722,0.651724,0.54389,0.140952,0.480006,0.52285,0.614763,0.955337,0.503235,0.794032,0.0708513,0.452219,0.144155,0.773747,0.795602,0.521146,0.079544,0.315284,0.240366,0.588464,0.398272,0.109423,0.237827,0.594895,0.724078,0.144685,0.897828,0.689946,0.212623,0.790434,0.594009,0.606027,0.0448871,0.8488,0.598144,0.618968,0.717377,0.752213,0.408197,0.275774,0.778041,0.505399,0.487673,0.878452,0.507375,0.80784,0.213491,0.0165593,0.755792,0.602009,0.084331,0.799207,0.026335,0.3755,0.224001,0.91245,0.553939,0.944087,0.159167,0.955891,0.878287,0.0407554,0.860249,0.624275,0.909422,0.824858,0.249161,0.389629,0.0027867,0.0524638,0.461103,0.643105,0.958834,0.434736,0.0746419,0.542562,0.495308,0.695654,0.593472,0.961142,0.477848,0.724546,0.446569,0.139001,0.288308,0.909104,0.815689,0.756746,0.865757,0.710762,0.873044,0.170703,0.0717996,0.00420761,0.842539,0.719361,0.788336,0.359533,0.239179,0.710261,0.964092,0.334882,0.700117,0.137116,0.830081,0.712,0.0451775,0.610536,0.12632,0.0714021,0.846275,0.123601,0.0173817,0.206242,0.771115,0.831803,0.234183,0.995568,0.163784,0.296884,0.560139,0.160692,0.984519,0.836877,0.794032,0.995733,0.133152,0.00448078,0.163974,0.234826,0.141908,0.483103,0.256708,0.61552,0.369681,0.860743,0.950302,0.829828,0.140037,0.23235,0.212884,0.0354272,0.447711,0.230398,0.00488573,0.277414,0.94903,0.774365,0.281991,0.302047,0.693523,0.849386,0.36956,0.624438,0.115327,0.0835537,0.985472,0.73227,0.662352,0.149911,0.135181,0.380135,0.645554,0.021014,0.214759,0.92739,0.103226,0.0575956,0.00267678,0.783829,0.447689,0.387461,0.272503,0.699934,0.84409,0.081526,0.561064,0.239815,0.871353,0.344716,0.634601,0.0773616,0.344604,0.344444,0.328565,0.936641,0.315509,0.336153,0.739473,0.91165,0.848492,0.459665,0.164456,0.324449,0.0765138,0.48821,0.877173,0.745975,0.706112,0.27889,0.284408,0.709339,0.562677,0.061404,0.86544,0.916604,0.715195,0.252272,0.739817,0.141221,0.992727,0.0360892,0.402143,0.361305,0.0887828,0.12442,0.879001,0.328116,0.810089,0.8042,0.372974,0.245697,0.332614,0.301094,0.474389,0.265244,0.749195,0.734284,0.157747,0.102944,0.859826,0.0227969,0.22873,0.252239,0.0542718,0.83057,0.8314,0.987727,0.360787,0.0622031,0.174685,0.789654,0.886221,0.611306,0.5936,0.14815,0.569195,0.522697,0.260928,0.842537,0.841802,0.213854,0.305928,0.585738,0.475511,0.187379,0.219521,0.4523,0.232872,0.912069,0.245971,0.463953,0.618243,0.505545,0.763753,0.493557,0.558414,0.429938,0.185676,0.813635,0.430211,0.364834,0.944021,0.885482,0.982071,0.738308,0.153605,0.461103,0.97182,0.846683,0.917619,0.950777,0.89522,0.337259,0.846144,0.376953,0.0296515,0.932567,0.166378,0.132965,|0.535909,0.172438,0.993214,0.228687,0.765485,0.974278,0.363167,0.255708,0.781759,0.140852,0.650436,0.293559,0.984355,0.721441,0.158084,0.781968,0.502762,0.770893,0.63481,0.495906,0.343008,0.0369309,0.211215,0.23699,0.886268,0.652096,0.474618,0.811852,0.120244,0.753083,0.989416,0.494227,0.847138,0.140822,0.769797,0.626846,0.611636,0.205344,0.594068,0.351171,0.213172,0.150919,0.622108,0.87421,0.220943,0.0872042,0.850592,0.0292842,0.448879,0.924965,0.349987,0.413552,0.398546,0.561999,0.0325819,0.113273,0.939641,0.602752,0.678387,0.398259,0.441671,0.213942,0.55385,0.586829,0.480993,0.690099,0.216063,0.749866,0.846884,0.0432978,0.69151,0.383096,0.0573434,0.718924,0.190345,0.339366,0.606757,0.419533,0.287108,0.349485,0.620244,0.387374,0.476288,0.53489,0.636703,0.0446829,0.620276,0.964661,0.360939,0.264059,0.888404,0.654756,0.536401,0.0876191,0.965268,0.300396,0.736201,0.0989468,0.874126,0.71313,0.795006,0.92052,0.393986,0.0929863,0.77161,0.848759,0.00857526,0.216781,0.519646,0.838614,0.631572,0.185733,0.201555,0.628089,0.245831,0.278244,0.147785,0.820283,0.0363806,0.705107,0.349975,0.0882092,0.648273,0.750896,0.388149,0.694134,0.565634,0.0618157,0.957676,0.191243,0.604348,0.19779,0.592402,0.569526,0.514768,0.671327,0.441669,0.112406,0.948689,0.688586,0.872891,0.104708,0.968528,0.663529,0.838536,0.428406,0.274917,0.120898,0.720667,0.528452,0.115225,0.457404,0.301567,0.980569,0.383663,0.569888,0.819733,0.271194,0.352785,0.725817,0.373434,0.0786928,0.55936,0.988228,0.628253,0.844709,0.899706,0.175186,0.841138,0.108862,0.355688,0.38281,0.218486,0.719093,0.316611,0.348442,0.892158,0.871109,0.801672,0.495547,0.181516,0.554481,0.0499998,0.0501491,0.559749,0.388939,0.274904,0.122943,0.121861,0.78914,0.371,0.284753,0.434281,0.326506,0.0679037,0.866683,0.589786,0.395663,0.889808,0.0881164,0.556709,0.806185,0.403914,0.536798,0.44343,0.287232,0.487187,0.220881,0.578142,0.224824,0.725141,0.32014,0.419859,0.869376,0.676604,0.591658,0.565472,0.538511,0.39039,0.380886,0.990474,0.929827,0.0917999,0.487441,0.29692,0.502212,0.936267,0.0580505,0.0915415,0.872022,0.558223,0.893018,0.478069,0.545576,0.124183,0.983216,0.556439,0.496347,0.144133,0.622424,0.687141,0.0838157,0.999574,0.914801,0.72292,0.401405,0.358694,0.427223,0.806244,0.966551,0.785726,0.8649,0.126301,0.519046,0.345883,0.775464,0.80911,0.106654,0.239268,0.239778,0.113165,0.413458,0.742727,0.318102,0.775997,0.317192,0.454981,0.804202,0.62971,0.0301815,0.0263971,0.112674,0.347227,0.494858,0.657915,0.881306,0.940599,0.369932,0.176422,0.670175,0.4029,0.0845787,0.848433,0.186092,0.430903,0.342143,0.673644,0.225089,0.388014,0.265974,0.543537,0.757169,0.283343,0.852065,0.657201,0.948263,0.986574,0.895177,0.104892,0.757941,0.821145,0.249804,0.370532,0.384029,0.193255,0.209219,0.707023,0.325639,0.905702,0.856911,0.340462,0.148999,0.363175,0.0823533,0.584573,0.236137,0.475949,0.96354,0.739148,0.348823,0.0848055,0.0661551,0.450863,0.128502,0.124412,0.424782,0.270883,0.34258,0.449964,0.574348,0.353316,0.505812,0.470788,0.342426,0.944634,0.293877,0.313752,0.0316584,0.802656,0.282594,0.00137943,0.458265,0.438518,0.104145,0.0244055,0.962458,0.319609,0.36682,0.632811,0.969329,0.676251,0.245275,0.976708,0.294155,0.254728,0.916704,0.962245,0.40628,0.335698,0.187002,0.826234,0.372138,0.164767,0.0116041,0.486396,0.221416,0.716564,0.393058,0.342731,0.393862,0.450393,0.533631,0.264673,0.430723,0.63045,0.875327,0.971178,0.502047,0.329071,0.274321,0.580488,0.703341,0.162801,0.202552,0.282305,0.116327,0.565975,0.525111,0.331502,0.770179,0.679955,0.46617,0.779405,0.829463,0.0877226,0.37601,0.245067,0.58092,0.492822,0.578048,0.306526,0.687498,0.567603,0.874439,0.46406,0.020556,0.256173,0.78581,0.779487,0.300804,0.162917,0.834911,0.515568,0.388248,0.249994,0.880148,0.709322,0.327556,0.509574,0.233307,0.447124,0.67966,0.166727,0.12872,0.193534,0.0328943,0.713119,0.0201502,0.815289,0.452803,0.914761,0.161739,0.477769,0.302035,0.203503,0.593473,0.467315,0.884304,0.828876,0.313966,0.509653,0.10222,0.276301,0.03267,0.812253,0.133478,0.852582,0.413874,0.291152,0.505196,0.140892,0.893323,0.780522,0.80821,0.0228397,0.887084,0.949336,0.120198,0.593204,0.712413,0.843145,0.928115,0.852886,0.143601,0.570076,0.555354,0.67355,0.454037,0.10741,0.903637,0.0160584,0.929794,0.911105,0.578155,0.217384,0.913774,0.339218,0.337922,0.495768,0.272236,0.830359,0.321234,0.0460275,0.508998,0.874362,0.998097,0.863628,0.414428,0.872065,0.805539,0.0192195,0.282351,0.941728,0.591731,0.0263973,0.0805443,0.122801,0.743707,0.976447,0.939901,0.715352,0.0144681,0.587926,0.903809,0.876488,0.249068,0.672683,0.573889,0.244385,0.402089,0.0255572,0.00310636,0.747672,0.505645,0.196873,0.170988,0.700361,0.234441,0.976682,0.592579,0.826865,0.534492,0.584987,0.832374,0.105103,0.578878,0.818242,0.403959,0.585862,0.395423,0.322368,0.823229,0.436482,0.243397,0.267855,0.818944,0.395423,0.210811,0.701491,0.896059,0.00874078,0.825904,0.777261,0.817014,0.907238,0.532707,0.994867,0.853329,0.953068,0.349644,0.547448,0.351046,0.950035,0.657428,0.127478,0.954937,0.933749,0.7101,0.218493,0.342793,0.00219208,0.583736,0.558344,0.502837,0.258454,0.608409,0.80288,0.265606,0.00322843,0.868846,0.519235,0.643392,0.390372,0.054151,0.0884733,0.775916,0.774567,0.431474,0.099668,0.596564,0.546299,0.658501,0.887612,0.581927,0.0398061,0.315386,0.54443,0.030625,0.502049,0.446436,0.635765,0.934007,0.774716,0.36635,0.784926,0.517287,0.530845,0.698138,0.138061,0.878152,0.55853,0.168131,0.584519,0.507909,0.516195,0.148017,0.704205,0.492008,0.419263,0.0735002,0.334614,0.921663,0.793018,0.113321,0.844636,0.835939,0.822103,0.782604,0.814886,0.97988,0.338992,0.157477,0.449861,0.808361,0.265833,0.600822,0.242682,0.335016,0.496726,0.376396,0.27082,0.145864,0.834873,0.463273,0.0114508,0.432575,0.433829,0.929989,0.191675,0.917058,0.11517,0.36287,0.802222,0.389562,0.454591,0.809049,0.26241,0.244484,0.76519,0.576729,0.383125,0.0610806,0.798245,0.100528,0.506512,0.751475,0.0765463,0.782437,0.237889,0.203165,0.955395,0.610241,0.655332,0.756907,0.942456,0.625343,0.0942994,0.000823557,0.366688,0.904183,0.882004,0.403587,0.803174,0.70625,0.9292,0.240103,0.652989,0.468374,0.0227849,0.0872498,0.704157,0.682468,0.292157,0.159142,0.709154,0.93211,0.777888,0.0760615,0.761045,0.319558,0.207507,0.712624,0.905435,0.891614,0.684138,0.00302094,0.932911,0.0128572,0.134875,0.641802,0.679167,0.975712,0.461799,0.877923,0.186259,0.653236,0.545029,0.939818,0.769653,0.0353983,0.377928,0.46105,0.703153,0.824146,0.0328329,0.236491,0.94274,0.664181,0.328869,0.376821,0.231171,0.236931,0.0970784,0.254713,0.408282,0.00474417,0.554861,0.191547,0.480112,0.082144,0.110621,0.191063,0.80996,0.291468,0.834552,0.746067,0.565939,0.826515,0.270766,0.0266471,0.957078,0.475937,0.437127,0.449891,0.016576,0.176011,0.28608,0.915563,0.702066,0.287752,0.221937,0.537737,0.839078,0.739288,0.0816633,0.31537,0.710955,0.23498,0.15093,0.680131,0.33119,0.026934,0.815839,0.477597,0.394227,0.447208,0.277899,0.980087,0.440994,0.914217,0.0184458,0.18627,0.554787,0.901943,0.0459809,0.0973203,0.133834,0.0584051,0.981692,0.888272,0.516489,0.844405,0.667376,0.900706,0.913412,0.708264,0.768323,0.333089,0.279815,0.487519,0.140351,0.877564,0.449139,0.453087,0.824724,0.893808,0.412559,0.143197,0.248131,0.33993,0.19125,0.301725,0.825075,0.416468,0.99173,0.710742,0.0518507,0.718442,0.510567,0.99359,0.24887,0.674312,0.947573,0.379536,0.263998,0.323369,0.308171,0.488245,0.0447432,0.223609,0.619328,0.39698,0.627969,0.219518,0.118994,0.901236,0.00848466,0.0548908,0.928525,0.63307,0.992718,0.755976,0.582591,0.425627,0.828376,0.966859,0.19201,0.790217,0.0666927,0.905467,0.413237,0.409289,0.502966,0.596833,0.179864,0.726351,0.482919,0.187678,0.763885,0.379651,0.801109,0.142971,0.604664,0.461885,0.688673,0.503289,0.110746,0.784938,0.39265,0.301724,0.429108,0.234865,0.25613,0.691757,0.138946,0.355585,0.722314,0.287371,0.657523,0.963355,0.826863,0.0717778,0.993991,0.345423,0.187718,0.867287,0.522717,0.0297492,0.730962,0.827665,0.88009,0.553264,0.917091,0.468672,0.0869874,0.801654,0.113008,0.716307,0.482676,0.321108,0.473872,0.124468,0.478033,0.328039,0.321868,0.216345,0.926504,0.627147,0.226526,0.22766,0.736528,0.960535,0.259455,0.338246,0.664546,0.0557986,0.703107,0.180868,0.919066,0.0127611,0.967537,0.0297604,0.251385,0.00424945,0.702514,0.984151,0.1691,0.93619,0.433682,0.506757,0.557993,0.765488,0.612613,0.218287,0.384344,0.274715,0.723192,0.566332,0.883327,0.598973,0.378975,0.232674,0.936597,0.753415,0.8204,0.62698,0.910509,0.272454,0.234106,0.769194,0.916615,0.968971,0.844105,0.294448,0.401005,0.0279244,0.406362,0.909654,0.803897,0.0707266,0.064416,0.9874,0.970128,0.288349,0.644402,0.0384184,0.824534,0.949149,0.731977,0.14696,0.900711,0.715803,0.482877,0.357586,0.46124,0.948663,0.746666,0.437155,0.501466,0.572923,0.261587,0.213935,0.91663,0.787819,0.286375,0.538279,0.00434577,0.186292,0.71699,0.193227,0.637452,0.376287,0.255685,0.236932,0.0134556,0.452094,0.740581,0.757512,0.0132154,0.352776,0.8334,0.476853,0.0998278,0.414205,0.817139,0.224312,0.339082,0.221584,0.194984,0.259362,|0.627824,0.890982,0.882576,0.718328,0.307453,0.641637,0.233986,0.782022,0.852406,0.71807,0.363373,0.160669,0.937757,0.30414,0.597028,0.211705,0.840447,0.748522,0.519505,0.749161,0.686556,0.384233,0.530052,0.712518,0.24815,0.356088,0.131123,0.287067,0.459411,0.809849,0.29516,0.792279,0.615612,0.417767,0.10292,0.706286,0.906858,0.369998,0.289549,0.293543,0.206933,0.921955,0.245073,0.844047,0.176929,0.872851,0.149026,0.465145,0.291829,0.108719,0.0681435,0.66409,0.442404,0.0174098,0.869847,0.870706,0.687225,0.708084,0.40225,0.130971,0.955054,0.738032,0.762611,0.98866,0.24179,0.731849,0.794515,0.442692,0.294863,0.0809822,0.0601388,0.26486,0.800283,0.376158,0.0179222,0.393871,0.155691,0.209917,0.149854,0.750615,0.849792,0.331631,0.726402,0.0711564,0.135033,0.830468,0.123465,0.0427806,0.783136,0.705752,0.13754,0.0551295,0.885234,0.7472,0.210932,0.65503,0.151738,0.993516,0.1295,0.609388,0.450487,0.851149,0.644117,0.288287,0.191288,0.462278,0.762571,0.450379,0.246403,0.369543,0.853775,0.479969,0.955322,0.068437,0.602361,0.601796,0.520063,0.752763,0.986258,0.590379,0.0851905,0.376956,0.953284,0.432838,0.951991,0.346027,0.0815682,0.490294,0.848013,0.658128,0.752165,0.408988,0.87055,0.693574,0.379779,0.305315,0.548767,0.257947,0.494648,0.464511,0.869269,0.00987726,0.907775,0.0872601,0.640912,0.754226,0.70424,0.167414,0.584254,0.798703,0.598467,0.797524,0.44399,0.159422,0.839468,0.766265,0.644844,0.238014,0.114376,0.592169,0.717207,0.42875,0.122949,0.924847,0.822578,0.416266,0.190091,0.457252,0.903842,0.94369,0.604278,0.772581,0.872821,0.0485444,0.346883,0.903164,0.606165,0.0903111,0.473542,0.738441,0.164602,0.661867,0.738752,0.213692,0.664852,0.54292,0.406135,0.329836,0.876864,0.693286,0.131229,0.704384,0.680802,0.0948614,0.178063,0.0706034,0.247263,0.304352,0.396422,0.73924,0.627405,0.296422,0.749053,0.782467,0.584431,0.639262,0.0734954,0.841083,0.883306,0.619332,0.635806,0.318966,0.309154,0.307525,0.355623,0.56907,0.0687363,0.0834643,0.626115,0.801461,0.633558,0.355933,0.0463541,0.774614,0.122194,0.891416,0.0446858,0.17712,0.144242,0.481191,0.14344,0.803054,0.772064,0.576682,0.934844,0.572951,0.867437,0.640123,0.209573,0.746738,0.164636,0.877117,0.684328,0.469228,0.255739,0.90548,0.391035,0.968605,0.543456,0.273863,0.196296,0.78663,0.139663,0.847973,0.500376,0.857625,0.210543,0.995031,0.823869,0.503711,0.84486,0.121536,0.250662,0.857356,0.145639,0.971146,0.847078,0.390462,0.529303,0.776564,0.624163,0.36579,0.646166,0.428923,0.566556,0.6064,0.587969,0.801619,0.723587,0.991987,0.116003,0.352542,0.0506181,0.874462,0.368625,0.913964,0.158263,0.994409,0.416119,0.896877,0.55827,0.685301,0.321664,0.92909,0.462449,0.655888,0.934395,0.583516,0.0744749,0.534849,0.243911,0.744161,0.100771,0.75743,0.720388,0.0981076,0.687084,0.166059,0.896152,0.387374,0.711673,0.0360755,0.576438,0.752806,0.386688,0.817468,0.467987,0.533471,0.0376083,0.880893,0.501254,0.169024,0.794819,0.436251,0.431743,0.84586,0.168829,0.493507,0.794233,0.261849,0.0451712,0.30534,0.381553,0.50293,0.12938,0.926076,0.96663,0.80087,0.159423,0.851757,0.81518,0.553293,0.774872,0.954995,0.312845,0.220321,0.885047,0.668904,0.24016,0.419906,0.334067,0.536217,0.711529,0.752706,0.386127,0.038517,0.220306,0.855457,0.316964,0.454601,0.677598,0.118936,0.0766893,0.694272,0.536224,0.442904,0.063334,0.222521,0.0607402,0.383468,0.857128,0.257115,0.775788,0.769929,0.919973,0.574669,0.974092,0.987465,0.494411,0.152132,0.182094,0.54191,0.478777,0.874047,0.287537,0.543057,0.358709,0.00772065,0.598542,0.864702,0.587887,0.951814,0.381743,0.0163798,0.581131,0.370161,0.983,0.650152,0.173346,0.529238,0.349813,0.0296772,0.276788,0.935887,0.0228969,0.230246,0.221492,0.519038,0.014668,0.0838575,0.36197,0.760633,0.691491,0.908044,0.130437,0.366283,0.164399,0.290018,0.575851,0.188038,0.708533,0.371771,0.413834,0.0480718,0.29777,0.00465816,0.248676,0.397782,0.400724,0.304226,0.834633,0.930697,0.0223763,0.600742,0.592536,0.614972,0.331285,0.841572,0.519793,0.332636,0.530939,0.572387,0.4861,0.317767,0.930146,0.214616,0.105696,0.443859,0.294997,0.894642,0.782809,0.833244,0.896927,0.985053,0.473135,0.199932,0.72568,0.599591,0.276099,0.327622,0.499815,0.262232,0.698138,0.263022,0.831351,0.764829,0.0166605,0.0198824,0.818969,0.000328779,0.106739,0.432031,0.33341,0.0987284,0.163053,0.885415,0.296567,0.341759,0.517212,0.492533,0.812752,0.34964,0.672195,0.139447,0.662006,0.393731,0.583512,0.940674,0.621746,0.438292,0.489873,0.512397,0.298882,0.17469,0.764262,0.951499,0.698374,0.2123,0.989509,0.523753,0.260907,0.421706,0.349712,0.768137,0.742592,0.55008,0.581222,0.424055,0.12168,0.94027,0.522963,0.628018,0.137952,0.0507119,0.387416,0.732506,0.138052,0.77351,0.233232,0.90532,0.0251051,0.0133179,0.315733,0.452926,0.817611,0.732762,0.635622,0.833551,0.230343,0.493399,0.469228,0.479154,0.659939,0.132314,0.483821,0.827564,0.55775,0.794634,0.204604,0.762124,0.496692,0.116106,0.771903,0.817133,0.660793,0.388191,0.156569,0.23594,0.591785,0.0432373,0.319151,0.552802,0.47725,0.72218,0.0684533,0.373661,0.753831,0.307251,0.154726,0.153118,0.848531,0.558012,0.392545,0.171927,0.233397,0.289867,0.886908,0.262548,0.000397086,0.643751,0.0133539,0.926949,0.698871,0.871981,0.422141,0.655703,0.117733,0.611312,0.318571,0.280493,0.389393,0.279675,0.116243,0.170554,0.906751,0.098095,0.0591859,0.186419,0.80079,0.43341,0.861196,0.142503,0.207136,0.484547,0.0773904,0.954026,0.774753,0.596912,0.756467,0.608025,0.516197,0.753338,0.00342083,0.961336,0.251342,0.835514,0.906841,0.839501,0.361687,0.219626,0.267009,0.384474,0.722044,0.533906,0.569303,0.817301,0.353259,0.448864,0.401054,0.488299,0.383168,0.498236,0.32953,0.105652,0.0295473,0.62184,0.953488,0.865237,0.732515,0.72906,0.90905,0.061936,0.120438,0.758075,0.162956,0.99632,0.90913,0.553954,0.112167,0.935721,0.588538,0.981868,0.228357,0.207322,0.0743384,0.292093,0.754323,0.225203,0.640824,0.918921,0.287185,0.956746,0.437038,0.119239,0.430881,0.575737,0.23138,0.592721,0.394621,0.863826,0.194252,0.255006,0.983203,0.897317,0.419064,0.981179,0.866273,0.971111,0.0180161,0.0921719,0.418092,0.932303,0.969145,0.987086,0.018512,0.922765,0.486907,0.331587,0.831298,0.560472,0.25259,0.767788,0.420445,0.875503,0.391069,0.99411,0.275276,0.681458,0.840035,0.76636,0.0898181,0.739803,0.333158,0.305659,0.284646,0.45276,0.328985,0.67896,0.0859194,0.120965,0.271182,0.170751,0.914349,0.587208,0.138537,0.746019,0.145225,0.737681,0.950942,0.96161,0.0183098,0.71098,0.951368,0.582141,0.478655,0.462227,0.00935942,0.429713,0.767257,0.0715134,0.289284,0.626225,0.891483,0.537426,0.550551,0.531625,0.145341,0.76573,0.437351,0.351339,0.941986,0.398724,0.328764,0.234024,0.742205,0.929219,0.649397,0.624618,0.918742,0.55411,0.765411,0.883301,0.908375,0.515136,0.703097,0.611873,0.0645837,0.712548,0.493668,0.667356,0.748218,0.246015,0.433856,0.0133424,0.800484,0.477927,0.00528365,0.841151,0.304492,0.588942,0.0613267,0.182451,0.679677,0.710213,0.913834,0.943515,0.0395489,0.3209,0.964941,0.0203795,0.453477,0.182265,0.597424,0.381983,0.354919,0.147993,0.611067,0.925569,0.512495,0.969276,0.502685,0.704792,0.473178,0.732388,0.458111,0.284611,0.47995,0.880407,0.821323,0.469738,0.570728,0.521016,0.535977,0.869301,0.502052,0.372217,0.779086,0.623957,0.368602,0.541278,0.822091,0.6482,0.784557,0.734661,0.516252,0.508292,0.74143,0.318164,0.735747,0.912132,0.0927274,0.256495,0.551146,0.633057,0.899223,0.24851,0.76856,0.0514013,0.571808,0.216842,0.382644,0.867194,0.884967,0.389566,0.503042,0.817921,0.299189,0.405786,0.908917,0.661411,0.505299,0.853018,0.479183,0.585492,0.538772,0.665556,0.864479,0.433201,0.727333,0.733825,0.276478,0.701155,0.99225,0.109634,0.931607,0.14239,0.117428,0.260107,0.486567,0.989328,0.187212,0.838947,0.525105,0.382529,0.704534,0.575805,0.981775,0.895527,0.0567674,0.359212,0.130217,0.932304,0.771658,0.547969,0.964152,0.245121,0.0903656,0.36572,0.272897,0.763617,0.84075,0.783875,0.146235,0.460612,0.438185,0.382363,0.680933,0.485947,0.335085,0.927058,0.889537,0.185239,0.361159,0.0649311,0.204592,0.0994038,0.852604,0.0748157,0.477438,0.0586553,0.623637,0.0782391,0.528489,0.109205,0.678973,0.0241271,0.340007,0.325036,0.968968,0.460174,0.83289,0.502563,0.963111,0.837529,0.116359,0.891753,0.843932,0.535786,0.984043,0.0376727,0.805337,0.550816,0.834247,0.714506,0.0796455,0.852694,0.903259,0.593421,0.769044,0.302806,0.6267,0.375981,0.939742,0.96276,0.884086,0.910955,0.936951,0.0907556,0.798964,0.919365,0.33,0.551644,0.975923,0.68718,0.698904,0.322887,0.669539,0.286989,0.843546,0.302406,0.582721,0.976715,0.963383,0.270347,0.117312,0.593208,0.325175,0.764906,0.679528,0.40118,0.563843,0.445701,0.987421,0.219589,0.811577,0.430134,0.0068717,0.469809,0.855415,0.391708,0.618729,0.474856,0.334798,0.811113,0.452931,0.331383,0.143398,0.495864,0.632952,0.0665967,0.0617081,0.0741245,0.855507,0.583068,0.771036,0.514525,0.755974,0.228457,0.928948,0.398598,0.733554,0.76226,0.456022,0.885971,0.834524,0.496745,0.720419,0.295674,0.597232,0.168578,0.154483,0.684595,0.340584,0.0811501,0.354734,0.606148,0.277911,0.115651,0.0391459,0.0040139,|0.814691,0.350938,0.784077,0.813029,0.118704,0.375974,0.115987,0.0427127,0.960452,0.35159,0.877929,0.0104513,0.576242,0.139754,0.0195565,0.537409,0.656182,0.439887,0.166263,0.381363,0.352678,0.0458916,0.976091,0.408438,0.0945399,0.309187,0.0295773,0.515117,0.0692362,0.498518,0.274218,0.466096,0.990083,0.223929,0.967664,0.863875,0.465383,0.64138,0.00397319,0.0281032,0.0503539,0.56193,0.679059,0.115647,0.563982,0.160796,0.965425,0.791665,0.832065,0.520563,0.604042,0.377336,0.385627,0.703821,0.248487,0.530893,0.123172,0.708472,0.244803,0.724752,0.246024,0.357768,0.967007,0.0797306,0.311941,0.988784,0.482681,0.221918,0.816494,0.640039,0.208233,0.0822719,0.909245,0.862139,0.362595,0.976998,0.0758469,0.357477,0.450538,0.599799,0.866234,0.092173,0.187564,0.790615,0.00883925,0.519844,0.315372,0.0281043,0.28148,0.360049,0.981902,0.522095,0.590959,0.183521,0.319428,0.996867,0.191851,0.518399,0.15851,0.483858,0.98144,0.33073,0.62869,0.855046,0.135639,0.510738,0.718127,0.784507,0.420244,0.60496,0.336816,0.431067,0.721822,0.00800633,0.819361,0.800585,0.98945,0.682662,0.489759,0.335323,0.820378,0.748203,0.960399,0.50227,0.15511,0.052622,0.739077,0.47593,0.788752,0.745509,0.806637,0.718041,0.759368,0.942863,0.188548,0.983514,0.635973,0.379685,0.464833,0.260232,0.464675,0.679864,0.18746,0.848296,0.939246,0.634715,0.407315,0.0718648,0.605428,0.471023,0.383643,0.732513,0.660781,0.920847,0.592353,0.273524,0.583072,0.363715,0.47738,0.747709,0.563724,0.504413,0.347747,0.560721,0.480224,0.140896,0.103558,0.368286,0.760311,0.520319,0.315086,0.982737,0.694306,0.400075,0.66792,0.274418,0.734071,0.402831,0.807981,0.760488,0.788899,0.269498,0.238811,0.798519,0.860188,0.682455,0.0258127,0.38754,0.733977,0.0785164,0.607291,0.372576,0.374983,0.48025,0.40298,0.37837,0.813473,0.192955,0.315928,0.152956,0.87687,0.57384,0.289831,0.052909,0.497084,0.00877249,0.398751,0.554169,0.262695,0.196715,0.00653476,0.935186,0.112431,0.0894812,0.776386,0.859132,0.272133,0.976601,0.846395,0.235197,0.657531,0.394155,0.154163,0.221139,0.696056,0.391797,0.919217,0.0862473,0.979182,0.525519,0.199464,0.13318,0.0656868,0.861424,0.0324401,0.251903,0.484947,0.925974,0.65067,0.634907,0.185457,0.164515,0.124876,0.0536619,0.0444933,0.660131,0.779409,0.605437,0.735572,0.597057,0.556171,0.800446,0.747453,0.953063,0.681675,0.473473,0.694034,0.584807,0.654321,0.261751,0.506194,0.456176,0.247345,0.867526,0.349169,0.542807,0.147931,0.311717,0.318507,0.851583,0.0637181,0.777763,0.033684,0.258337,0.690581,0.369014,0.710893,0.171054,0.533618,0.142723,0.418453,0.230892,0.118628,0.795265,0.493568,0.036244,0.0304627,0.811441,0.813977,0.0315173,0.686613,0.440215,0.533687,0.28135,0.2307,0.964334,0.238009,0.99343,0.981324,0.575382,0.767061,0.323165,0.250582,0.837004,0.279716,0.967802,0.100958,0.362874,0.595434,0.046058,0.289759,0.666117,0.498842,0.362934,0.0953963,0.951944,0.305633,0.263632,0.928526,0.99296,0.131562,0.198729,0.150913,0.332393,0.14489,0.627291,0.94223,0.43858,0.273296,0.36995,0.0996529,0.309239,0.655538,0.409389,0.360962,0.80135,0.392719,0.8681,0.123292,0.36735,0.120573,0.331898,0.367094,0.203598,0.786667,0.412507,0.938515,0.0347362,0.909291,0.520126,0.914443,0.725361,0.842446,0.156886,0.552323,0.917938,0.0696135,0.298738,0.710149,0.184287,0.44556,0.108669,0.0152061,0.341159,0.409899,0.482973,0.32548,0.23246,0.520054,0.722741,0.447951,0.169895,0.0969748,0.246054,0.26075,0.650518,0.618777,0.133593,0.0278051,0.628942,0.249517,0.66685,0.46089,0.407599,0.975184,0.43297,0.0244523,0.0411112,0.455303,0.0154567,0.318124,0.0406303,0.727694,0.899688,0.219901,0.325933,0.443588,0.757336,0.692502,0.154528,0.0983164,0.509323,0.0128087,0.569437,0.952041,0.7929,0.43602,0.926612,0.464583,0.419604,0.0405529,0.635045,0.445766,0.121695,0.960885,0.177697,0.605897,0.925119,0.547645,0.115734,0.947648,0.339068,0.38651,0.515943,0.576208,0.419804,0.408693,0.694804,0.455397,0.936709,0.697709,0.753454,0.707948,0.690624,0.72994,0.9921,0.779213,0.478438,0.620624,0.106572,0.643765,0.819144,0.66651,0.596284,0.869714,0.709346,0.693762,0.989049,0.170981,0.544061,0.192331,0.820951,0.353369,0.343522,0.787551,0.276134,0.765987,0.0180489,0.236922,0.178178,0.600903,0.645739,0.0726227,0.937236,0.995138,0.126782,0.42969,0.249771,0.163192,0.636967,0.10976,0.953682,0.735318,0.93013,0.322973,0.18968,0.666874,0.925003,0.466664,0.166828,0.664227,0.954584,0.0528471,0.727254,0.233261,0.162157,0.205529,0.188466,0.824463,0.133669,0.736997,0.58538,0.877959,0.185215,0.304397,0.341108,0.527447,0.220495,0.254538,0.247955,0.161956,0.545468,0.289027,0.100378,0.812344,0.901713,0.0519201,0.998888,0.760647,0.864294,0.773351,0.10145,0.856955,0.28588,0.57505,0.560139,0.766733,0.00233763,0.434948,0.55972,0.486912,0.0914936,0.753082,0.0159869,0.86318,0.944199,0.506697,0.0233291,0.970304,0.664508,0.894442,0.0702938,0.500565,0.77396,0.821079,0.470791,0.546071,0.844043,0.866745,0.824316,0.81723,0.842902,0.29619,0.307679,0.296283,0.844329,0.369723,0.138392,0.843441,0.774046,0.239765,0.0958743,0.108981,0.430944,0.119804,0.31357,0.24679,0.864439,0.0251834,0.263497,0.56796,0.604629,0.362506,0.551253,0.0528294,0.690365,0.82863,0.21884,0.524914,0.104277,0.739299,0.732703,0.622171,0.248261,0.947487,0.634073,0.436486,0.858997,0.336326,0.130723,0.994595,0.975991,0.485488,0.955094,0.853798,0.668111,0.883361,0.786676,0.678815,0.696516,0.0550525,0.855861,0.352801,0.298002,0.0465553,0.848318,0.726096,0.323728,0.00811201,0.740128,0.0204468,0.0762635,0.551076,0.0486061,0.00579733,0.433353,0.860081,0.431101,0.576532,0.399064,0.275096,0.730384,0.396606,0.292591,0.655866,0.253736,0.703351,0.0733262,0.666919,0.459299,0.335408,0.342563,0.948794,0.290035,0.992882,0.107124,0.736084,0.223709,0.35352,0.383545,0.44817,0.574546,0.284385,0.241783,0.542897,0.696758,0.145883,0.452879,0.745892,0.905975,0.736557,0.838064,0.62107,0.982123,0.0712229,0.625619,0.38546,0.192792,0.676268,0.254433,0.868027,0.917264,0.784219,0.040433,0.342878,0.0794743,0.212904,0.915986,0.625638,0.768601,0.629044,0.4913,0.622919,0.986214,0.249967,0.684086,0.34021,0.73049,0.492596,0.183357,0.0921134,0.7156,0.272392,0.308366,0.828691,0.742994,0.849179,0.765496,0.679554,0.47747,0.127296,0.398001,0.916064,0.838292,0.438068,0.536579,0.808685,0.310644,0.266757,0.795933,0.846064,0.578804,0.499479,0.844108,0.364311,0.94008,0.119212,0.670781,0.408807,0.44842,0.143061,0.744366,0.627752,0.492961,0.24006,0.505901,0.221381,0.255674,0.858998,0.98648,0.61556,0.23748,0.703272,0.232171,0.527763,0.165337,0.562199,0.0951475,0.40145,0.844161,0.117813,0.0301388,0.090549,0.501774,0.914941,0.36802,0.515061,0.354681,0.30675,0.0923567,0.615482,0.623193,0.360324,0.190962,0.053095,0.670118,0.768121,0.404966,0.192324,0.970159,0.680235,0.147336,0.0409691,0.313824,0.445343,0.656191,0.127861,0.869178,0.179738,0.656295,0.142221,0.128034,0.457604,0.197035,0.127437,0.142703,0.858823,0.213953,0.144565,0.695238,0.444885,0.241608,0.283475,0.0573127,0.898846,0.102143,0.422136,0.542319,0.473624,0.104772,0.48602,0.288356,0.576355,0.0588656,0.717096,0.0722706,0.936966,0.903092,0.730505,0.891247,0.161172,0.699159,0.0983332,0.817195,0.121896,0.953227,0.188647,0.261271,0.0830343,0.922601,0.268731,0.260127,0.937431,0.42186,0.341197,0.896565,0.00250113,0.894258,0.850519,0.0501699,0.278673,0.629248,0.901298,0.506439,0.0910862,0.632818,0.675202,0.687889,0.346426,0.0657381,0.138036,0.846961,0.901367,0.684492,0.466278,0.909904,0.827192,0.643049,0.719734,0.208558,0.0546761,0.0663391,0.991164,0.588772,0.667033,0.129455,0.398379,0.637859,0.823632,0.720272,0.203427,0.712313,0.356392,0.23157,0.546201,0.187951,0.919249,0.761101,0.355852,0.296553,0.743371,0.934041,0.178596,0.0988232,0.909805,0.100284,0.979326,0.863675,0.354081,0.359565,0.785237,0.0207516,0.540874,0.828386,0.298717,0.186056,0.687982,0.420021,0.199763,0.857299,0.291428,0.155592,0.470684,0.867986,0.106024,0.107172,0.307759,0.754222,0.392907,0.340588,0.51202,0.474413,0.522442,0.71638,0.00190133,0.125625,0.417366,0.933536,0.848767,0.153745,0.409793,0.105931,0.204143,0.0622281,0.29322,0.0300633,0.133932,0.967016,0.806449,0.116272,0.95198,0.0504941,0.491256,0.418806,0.756477,0.478299,0.829523,0.164997,0.0625218,0.344263,0.314033,0.123156,0.949715,0.478078,0.0197768,0.610016,0.855882,0.714101,0.669031,0.217629,0.949779,0.537235,0.92009,0.85923,0.196264,0.617999,0.147794,0.795337,0.523498,0.0867386,0.120182,0.196255,0.474836,0.88586,0.299573,0.824439,0.950005,0.391444,0.3956,0.54327,0.00285602,0.0713034,0.849044,0.848575,0.0185826,0.534231,0.877441,0.358104,0.829011,0.419275,0.873113,0.685202,0.466349,0.599829,0.963878,0.497069,0.59087,0.0892336,0.57273,0.438048,0.627347,0.684741,0.584245,0.508726,0.190259,0.75539,0.693698,0.120566,0.595818,0.37154,0.501748,0.948646,0.996699,0.623307,0.756248,0.284814,0.386892,0.129568,0.779322,0.922736,0.625445,0.769426,0.781246,0.377485,0.99847,0.961007,0.223692,0.610015,0.406056,0.833804,0.632497,0.48483,0.638917,0.899858,0.929722,0.155775,0.79662,0.636826,0.169295,0.927,0.801754,0.886724,0.1676,0.612079,0.442094,0.986743,0.730761,0.472866,0.999327,0.344626,|0.0183501,0.88261,0.157566,0.67358,0.220918,0.70935,0.544532,0.0159045,0.99628,0.713976,0.0688553,0.767527,0.581831,0.820623,0.669521,0.879821,0.242663,0.862038,0.335232,0.576161,0.970727,0.715736,0.0919173,0.587752,0.231401,0.240416,0.247357,0.153172,0.217671,0.123847,0.11167,0.1444,0.334989,0.157457,0.773143,0.370268,0.279002,0.532958,0.628023,0.279971,0.934082,0.889439,0.132027,0.815562,0.624095,0.501938,0.254525,0.377757,0.713076,0.527402,0.98652,0.573,0.878436,0.37792,0.0249957,0.532253,0.207524,0.664418,0.277352,0.3938,0.398489,0.19246,0.169353,0.800573,0.368734,0.68461,0.740275,0.458197,0.373062,0.869172,0.410955,0.243968,0.775573,0.0545712,0.92667,0.281023,0.323434,0.5322,0.691776,0.66814,0.485357,0.883901,0.295675,0.711995,0.446798,0.0374802,0.0165998,0.859103,0.226782,0.278007,0.347875,0.773747,0.481774,0.648992,0.762679,0.319009,0.0696895,0.970763,0.52268,0.880336,0.99504,0.195373,0.439057,0.653752,0.412891,0.189324,0.473192,0.65503,0.0877689,0.110882,0.678434,0.436456,0.74716,0.919873,0.725368,0.922435,0.701041,0.492224,0.276386,0.993505,0.545473,0.237252,0.639824,0.920447,0.897947,0.339518,0.764496,0.582148,0.310348,0.10326,0.446975,0.995882,0.459952,0.558734,0.842512,0.752613,0.0531345,0.299819,0.294822,0.0459241,0.86593,0.768485,0.0334778,0.0386233,0.629731,0.82655,0.981712,0.105039,0.410743,0.529723,0.693914,0.362048,0.322901,0.74731,0.356387,0.970773,0.33515,0.0783592,0.681161,0.68756,0.929842,0.129447,0.927744,0.899833,0.798767,0.514672,0.875823,0.810261,0.0557646,0.507339,0.759609,0.970738,0.968417,0.0240741,0.85695,0.541212,0.846135,0.302473,0.456843,0.306072,0.92245,0.633763,0.651711,0.797193,0.622928,0.156384,0.873903,0.562966,0.842782,0.698287,0.495977,0.0684618,0.713478,0.117996,0.60296,0.66404,0.900919,0.541158,0.948666,0.554475,0.699486,0.863212,0.294317,0.639323,0.523976,0.940796,0.780728,0.969363,0.62581,0.671743,0.563076,0.350878,0.379782,0.604087,0.194048,0.307604,0.830531,0.379945,0.430602,0.811727,0.0880845,0.610736,0.0669108,0.5025,0.067603,0.744342,0.22466,0.896934,0.311687,0.633053,0.927512,0.246472,0.707253,0.402242,0.133567,0.148349,0.0384092,0.316029,0.682813,0.856043,0.944365,0.0903019,0.635907,0.750402,0.102964,0.343894,0.0527334,0.865049,0.0157264,0.312291,0.849476,0.9392,0.0863911,0.0564077,0.63318,0.274735,0.269238,0.40274,0.0059014,0.154083,0.724278,0.993815,0.476491,0.839848,0.0846156,0.961217,0.109566,0.198899,0.96987,0.873603,0.502268,0.194699,0.814389,0.778667,0.0132778,0.105927,0.843492,0.864507,0.289291,0.599644,0.71461,0.778334,0.611115,0.0181992,0.962116,0.446035,0.144141,0.824898,0.224282,0.032132,0.46121,0.601684,0.140719,0.526533,0.955273,0.272722,0.849757,0.524443,0.79739,0.0500904,0.422532,0.667289,0.417253,0.0488278,0.621249,0.761116,0.606016,0.963604,0.920478,0.0240179,0.438935,0.805947,0.734677,0.820822,0.735017,0.909606,0.0273265,0.373431,0.673806,0.299366,0.818856,0.174708,0.0132925,0.453811,0.354805,0.396747,0.22393,0.957995,0.147165,0.324705,0.525846,0.878025,0.641414,0.300078,0.877924,0.788483,0.51119,0.0882523,0.479237,0.217413,0.338047,0.636842,0.229306,0.0637299,0.371972,0.699322,0.0314198,0.859404,0.106117,0.883358,0.0975802,0.692553,0.000532687,0.906421,0.0498191,0.352282,0.634088,0.0825661,0.638781,0.235168,0.324358,0.626069,0.606274,0.81338,0.109913,0.791183,0.392967,0.927567,0.184256,0.0979722,0.353172,0.0286704,0.752303,0.676552,0.28205,0.0462968,0.733332,0.4431,0.117204,0.346961,0.132329,0.696333,0.026048,0.66041,0.915179,0.0732411,0.960673,0.783861,0.0501001,0.835339,0.758843,0.300507,0.142192,0.359708,0.43026,0.698054,0.571737,0.943653,0.670933,0.555898,0.717314,0.944956,0.933433,0.246796,0.187123,0.523305,0.679863,0.714087,0.112718,0.376292,0.177544,0.0779732,0.417365,0.117942,0.128401,0.0144411,0.926567,0.492918,0.761256,0.369162,0.808217,0.065905,0.312764,0.637767,0.886116,0.911209,0.803267,0.770825,0.809145,0.218851,0.611784,0.0503843,0.615503,0.0315174,0.161184,0.128183,0.025673,0.689404,0.599104,0.525586,0.933971,0.687671,0.826089,0.905414,0.281874,0.454275,0.842057,0.603927,0.212972,0.838334,0.351893,0.640964,0.664353,0.910523,0.988836,0.409153,0.642673,0.0189581,0.0172237,0.615549,0.925782,0.774916,0.621832,0.638722,0.61387,0.0143377,0.575497,0.170559,0.543589,0.317911,0.346854,0.122786,0.900577,0.188335,0.128173,0.20418,0.276084,0.00341928,0.785704,0.0252377,0.494937,0.0853468,0.826434,0.927317,0.293853,0.419142,0.712224,0.697607,0.143421,0.972693,0.687285,0.95666,0.806506,0.931303,0.132839,0.772123,0.0189659,0.981593,0.901427,0.877923,0.406695,0.672691,0.730837,0.295279,0.275099,0.744312,0.695455,0.570746,0.310604,0.559811,0.672713,0.195389,0.4078,0.365207,0.793874,0.191052,0.094061,0.644793,0.824601,0.108076,0.11011,0.327418,0.318121,0.620825,0.721659,0.886751,0.471962,0.120221,0.359486,0.950455,0.384799,0.0497517,0.888023,0.0679255,0.211202,0.520999,0.644396,0.0680097,0.391565,0.165049,0.0121659,0.297124,0.364588,0.132224,0.248375,0.12382,0.509706,0.0365883,0.923819,0.743882,0.689475,0.94639,0.0728754,0.93742,0.185372,0.534444,0.421321,0.24091,0.147375,0.718846,0.469424,0.447114,0.263814,0.546498,0.839895,0.0562423,0.257158,0.354383,0.416664,0.598004,0.547411,0.779067,0.300076,0.044771,0.0799888,0.385234,0.0980261,0.447793,0.328861,0.996477,0.985344,0.784048,0.310191,0.351905,0.445564,0.713081,0.353662,0.43804,0.908196,0.531005,0.349911,0.26686,0.620327,0.366045,0.571065,0.217918,0.0612242,0.723059,0.935031,0.97935,0.622147,0.195273,0.113305,0.705331,0.533359,0.161361,0.154976,0.883145,0.683008,0.646628,0.836845,0.496619,0.0240578,0.401443,0.380942,0.589963,0.557796,0.135543,0.314375,0.154317,0.909422,0.256623,0.572463,0.578734,0.726591,0.755018,0.865717,0.851424,0.332622,0.33418,0.99602,0.584443,0.687147,0.209549,0.347526,0.265817,0.343063,0.499309,0.656859,0.808499,0.0449996,0.860564,0.107341,0.121906,0.864917,0.950709,0.386841,0.716235,0.832581,0.924858,0.943949,0.637475,0.501691,0.118746,0.361053,0.0671047,0.29894,0.640351,0.227802,0.629041,0.826914,0.514696,0.276098,0.93621,0.697131,0.6905,0.368639,0.747236,0.280336,0.725152,0.651443,0.031984,0.784709,0.228442,0.934626,0.0456217,0.415062,0.54687,0.809958,0.746144,0.0796853,0.884777,0.719757,0.6447,0.530397,0.26313,0.177841,0.84365,0.0625094,0.3336,0.103932,0.5658,0.900548,0.964805,0.0126255,0.300436,0.22772,0.440098,0.96113,0.407001,0.881648,0.65365,0.342448,0.117831,0.0214794,0.572019,0.798244,0.95647,0.718852,0.587863,0.848204,0.622531,0.760201,0.86738,0.0926051,0.523592,0.0835438,0.491024,0.101672,0.419332,0.174266,0.416961,0.438291,0.145372,0.132637,0.408587,0.0227194,0.544129,0.292786,0.884073,0.749369,0.784976,0.579022,0.610844,0.737604,0.730471,0.262873,0.400512,0.579503,0.924391,0.49051,0.93713,0.615526,0.504794,0.901159,0.555973,0.911319,0.959854,0.436261,0.132576,0.207808,0.850696,0.0363955,0.829826,0.804997,0.364778,0.346389,0.203818,0.0114821,0.148985,0.0297548,0.910062,0.24312,0.116485,0.887931,0.07103,0.989213,0.381234,0.0913804,0.52482,0.461172,0.0308012,0.957114,0.483344,0.629239,0.896507,0.726613,0.992757,0.474985,0.229674,0.278748,0.527074,0.732186,0.34437,0.386181,0.370384,0.642802,0.155552,0.936443,0.410664,0.480824,0.439798,0.989731,0.0775205,0.361107,0.364695,0.742332,0.0924357,0.555759,0.183504,0.714374,0.439021,0.794699,0.658004,0.193674,0.722527,0.446318,0.754261,0.247483,0.916989,0.0011012,0.693605,0.109976,0.219618,0.199963,0.0171395,0.262261,0.28442,0.749013,0.79673,0.781259,0.808739,0.0698782,0.00115067,0.565081,0.558593,0.80033,0.228557,0.387761,0.358289,0.807244,0.433159,0.984754,0.863181,0.677528,0.969871,0.984091,0.655833,0.72251,0.424451,0.920561,0.889022,0.175852,0.523759,0.546657,0.406785,0.27097,0.592176,0.263193,0.805832,0.258987,0.699295,0.934791,0.663216,0.148551,0.0208259,0.612805,0.411775,0.654354,0.371748,0.601393,0.268,0.731438,0.439364,0.0376233,0.126129,0.119731,0.896523,0.330489,0.85859,0.440634,0.976437,0.496281,0.769754,0.687588,0.699236,0.22308,0.892671,0.497119,0.360064,0.56205,0.830732,0.384303,0.000701547,0.796817,0.340917,0.220682,0.572987,0.256002,0.864158,0.730574,0.214652,0.130913,0.916355,0.61925,0.975897,0.905221,0.173005,0.745666,0.469655,0.379714,0.514724,0.576538,0.751284,0.996859,0.192801,0.0406703,0.430351,0.189536,0.279757,0.195243,0.011739,0.805597,0.880482,0.914315,0.397568,0.648518,0.715652,0.891625,0.777071,0.383348,0.217303,0.245645,0.224489,0.672596,0.223729,0.852913,0.899865,0.833084,0.170208,0.986291,0.294058,0.137508,0.495054,0.143949,0.201263,0.518067,0.204108,0.512456,0.68263,0.0725818,0.742943,0.137116,0.485681,0.760008,0.297047,0.676444,0.360128,0.726848,0.460065,0.171019,0.222296,0.480008,0.802679,0.94629,0.199531,0.33562,0.00921428,0.601877,0.306906,0.130577,0.654901,0.344137,0.299567,0.825455,0.225821,0.599778,0.0590704,0.667697,0.389539,0.661141,0.854578,0.631725,0.185217,0.778298,0.779834,0.397444,0.729945,0.159303,0.221159,0.293768,0.598268,0.507188,0.656682,0.178316,0.0835407,0.426845,0.877857,0.709622,0.64737,0.735443,0.406648,0.354504,0.869876,0.298459,0.722802,0.440623,0.414298,0.800914,0.636871,|0.714889,0.539974,0.163555,0.833382,0.742875,0.978394,0.816667,0.311083,0.346875,0.266704,0.254552,0.449946,0.142832,0.425501,0.521707,0.263935,0.600757,0.818037,0.647968,0.304572,0.514225,0.956836,0.130675,0.0679489,0.288693,0.910719,0.371761,0.519114,0.0977785,0.726529,0.642972,0.890014,0.290907,0.508386,0.916271,0.938287,0.69448,0.527255,0.167345,0.350834,0.987429,0.194893,0.703262,0.870692,0.436102,0.782511,0.700764,0.0700036,0.552355,0.158926,0.158219,0.701483,0.658809,0.910958,0.610687,0.813607,0.32139,0.127381,0.738936,0.781192,0.908313,0.451034,0.638559,0.17527,0.0898542,0.694928,0.286861,0.365019,0.108436,0.0865604,0.623091,0.124907,0.314027,0.858094,0.141057,0.344705,0.946743,0.00601542,0.000721753,0.59309,0.647954,0.506237,0.0119396,0.252925,0.311447,0.417395,0.828636,0.281547,0.669315,0.255215,0.536387,0.132593,0.457927,0.0854118,0.53394,0.494978,0.768227,0.47882,0.726196,0.805064,0.0332818,0.797549,0.576975,0.4281,0.394909,0.395306,0.898642,0.297429,0.802662,0.404635,0.481453,0.00793809,0.589367,0.685744,0.395994,0.856359,0.00926536,0.530788,0.177283,0.132059,0.231958,0.685688,0.0397006,0.210978,0.257751,0.448831,0.567588,0.166435,0.543462,0.907166,0.265036,0.634709,0.13338,0.973971,0.798193,0.147872,0.691882,0.473653,0.0178012,0.251063,0.655677,0.716248,0.938253,0.508191,0.565509,0.688318,0.627393,0.0638067,0.962302,0.587097,0.275113,0.345546,0.0526611,0.728861,0.338643,0.644264,0.00976455,0.892223,0.461887,0.939919,0.715091,0.5626,0.797666,0.812134,0.152764,0.394042,0.824766,0.98326,0.780614,0.776654,0.683367,0.137354,0.988974,0.157774,0.777113,0.143174,0.542455,0.635825,0.744785,0.591336,0.0768373,0.0135058,0.357732,0.760624,0.955955,0.155135,0.723374,0.250711,0.645222,0.213577,0.858264,0.799608,0.889511,0.516479,0.162798,0.903927,0.364832,0.735099,0.625051,0.31686,0.13754,0.339732,0.892652,0.692033,0.807953,0.504684,0.763918,0.869525,0.090994,0.861434,0.0263814,0.422616,0.748286,0.491213,0.571146,0.564905,0.660898,0.658696,0.455395,0.886593,0.724557,0.929132,0.636426,0.190936,0.200202,0.264953,0.888215,0.32599,0.467509,0.302161,0.954934,0.267647,0.432153,0.920834,0.0325746,0.760858,0.759952,0.374166,0.849663,0.381847,0.728598,0.935801,0.485933,0.872603,0.930026,0.314639,0.00352675,0.274858,0.286523,0.615346,0.623471,0.679957,0.738989,0.999359,0.929316,0.557331,0.0503812,0.0761116,0.541918,0.925342,0.975441,0.221111,0.225986,0.657157,0.153157,0.280695,0.73464,0.944628,0.338458,0.377832,0.148975,0.368504,0.91533,0.90369,0.307724,0.48402,0.89511,0.921252,0.95025,0.2418,0.368522,0.948833,0.0697397,0.49401,0.0269825,0.96342,0.0464562,0.662114,0.0808635,0.0116578,0.428658,0.463343,0.787416,0.843458,0.254235,0.1126,0.209838,0.833762,0.534122,0.378614,0.228665,0.0125961,0.649821,0.405132,0.0531541,0.655814,0.926994,0.919754,0.2785,0.0471101,0.787171,0.597632,0.933546,0.889337,0.0982206,0.120824,0.813749,0.465052,0.867531,0.44748,0.242576,0.0527008,0.66955,0.918368,0.257975,0.609466,0.595342,0.908907,0.126765,0.601445,0.283085,0.175348,0.628083,0.396388,0.84506,0.62254,0.120229,0.171268,0.913786,0.335064,0.315413,0.955149,0.581745,0.590534,0.942353,0.804181,0.232618,0.413446,0.0989536,0.274259,0.319431,0.615465,0.408141,0.695255,0.30146,0.496558,0.650604,0.666266,0.169726,0.0551772,0.281867,0.920254,0.591226,0.39048,0.903189,0.757063,0.279158,0.0559181,0.382959,0.140669,0.222596,0.498921,0.35341,0.418043,0.741433,0.517971,0.633412,0.401234,0.40408,0.000421524,0.0543365,0.0727612,0.346854,0.701228,0.908256,0.286439,0.094657,0.650065,0.981091,0.970635,0.194316,0.665012,0.827123,0.813852,0.910649,0.580857,0.322604,0.758748,0.0606854,0.154459,0.407149,0.271159,0.857641,0.841644,0.0237374,0.383883,0.233377,0.622957,0.608803,0.627136,0.0438796,0.50564,0.572303,0.276151,0.849426,0.148798,0.538555,0.197064,0.204082,0.473679,0.937227,0.95028,0.208521,0.168952,0.616509,0.463438,0.403773,0.215269,0.299225,0.459775,0.618396,0.513638,0.976887,0.953948,0.17296,0.359818,0.164652,0.670479,0.386751,0.467637,0.0355943,0.822475,0.394735,0.103593,0.321719,0.127433,0.389415,0.218123,0.347438,0.939932,0.124738,0.552409,0.796461,0.614394,0.172131,0.589778,0.987283,0.840374,0.162317,0.897418,0.711608,0.403396,0.478468,0.547511,0.0133488,0.857746,0.129348,0.775166,0.334674,0.776331,0.132945,0.937172,0.939108,0.877127,0.533766,0.84471,0.808684,0.34494,0.779563,0.133634,0.886712,0.322598,0.58276,0.185518,0.970884,0.185334,0.453312,0.906814,0.144289,0.739264,0.0579123,0.0439814,0.321308,0.102718,0.942546,0.425245,0.369933,0.770886,0.00260878,0.18553,0.307816,0.832766,0.127338,0.827702,0.996469,0.717538,0.927912,0.812506,0.953682,0.220483,0.629224,0.970982,0.883371,0.277137,0.198696,0.953059,0.221251,0.222106,0.227567,0.31106,0.644655,0.454357,0.784828,0.797895,0.802521,0.582297,0.924049,0.116381,0.0297641,0.620942,0.745245,0.0476182,0.78647,0.668485,0.716491,0.824066,0.0303322,0.677972,0.60858,0.866228,0.0653488,0.105228,0.539558,0.030279,0.777311,0.766484,0.373442,0.936352,0.655624,0.817329,0.173199,0.626379,0.55418,0.692323,0.302845,0.96542,0.384831,0.925229,0.0304735,0.113485,0.663519,0.989014,0.715536,0.397374,0.894789,0.816936,0.262298,0.396299,0.935652,0.824755,0.770687,0.767927,0.744483,0.789091,0.337961,0.877857,0.599671,0.144793,0.823398,0.459802,0.113919,0.278183,0.466633,0.320043,0.265324,0.928251,0.780449,0.500222,0.619264,0.670278,0.205617,0.356277,0.875604,0.274421,0.790574,0.776327,0.136686,0.841734,0.180849,0.749638,0.970261,0.848049,0.853995,0.144432,0.0529319,0.454213,0.776096,0.689266,0.0139517,0.681565,0.208686,0.164371,0.839003,0.00843221,0.135796,0.557852,0.293649,0.259821,0.135097,0.0445022,0.896824,0.38655,0.973572,0.246695,0.20776,0.384089,0.154738,0.542613,0.128805,0.54429,0.218275,0.0790026,0.280702,0.400237,0.399495,0.13756,0.913337,0.439016,0.886146,0.294437,0.732636,0.498561,0.394109,0.950909,0.157959,0.455248,0.19313,0.732579,0.0128175,0.597554,0.717089,0.0931278,0.923143,0.374366,0.53669,0.175583,0.977178,0.395793,0.778939,0.248512,0.00620264,0.726877,0.352547,0.674919,0.2451,0.952311,0.0319412,0.940444,0.653081,0.2238,0.17452,0.843436,0.391772,0.76849,0.31256,0.404001,0.637366,0.189233,0.618461,0.0486336,0.422213,0.124991,0.329331,0.0719019,0.478451,0.657672,0.571449,0.166615,0.857226,0.383516,0.35332,0.702767,0.602761,0.308325,0.166505,0.741553,0.596121,0.0246098,0.256038,0.170735,0.568971,0.632283,0.301629,0.413517,0.347507,0.187712,0.241778,0.688014,0.101147,0.4947,0.900991,0.119435,0.135906,0.631396,0.858649,0.753678,0.561823,0.194518,0.103421,0.885651,0.923359,0.423423,0.0562295,0.534644,0.0482224,0.325505,0.979413,0.566073,0.409466,0.596003,0.958092,0.352429,0.92474,0.860341,0.55922,0.424004,0.491342,0.64864,0.742512,0.0145239,0.34847,0.788647,0.602329,0.0541599,0.181286,0.456789,0.227533,0.0231224,0.564795,0.239635,0.234044,0.18801,0.865119,0.712439,0.151566,0.739979,0.131354,0.47129,0.231348,0.510918,0.257541,0.4996,0.689389,0.491198,0.738506,0.778097,0.347206,0.884671,0.535832,0.944629,0.463552,0.657985,0.862891,0.270608,0.0457197,0.00329286,0.352146,0.94966,0.147299,0.936073,0.512131,0.331959,0.617036,0.213075,0.419719,0.242474,0.701959,0.681803,0.0379681,0.199553,0.547792,0.158017,0.891868,0.136374,0.129464,0.765558,0.216565,0.480298,0.646718,0.905353,0.19903,0.457286,0.350422,0.663415,0.336665,0.115203,0.326371,0.461387,0.37679,0.386602,0.197625,0.00819188,0.373733,0.821962,0.515646,0.641534,0.999797,0.221148,0.757505,0.590003,0.914685,0.966469,0.402282,0.386282,0.653373,0.921565,0.739331,0.0812265,0.240246,0.886811,0.178344,0.916524,0.203193,0.736709,0.581937,0.463868,0.960645,0.929115,0.327257,0.663701,0.961818,0.174857,0.697486,0.770445,0.236121,0.291603,0.55317,0.181834,0.914892,0.353626,0.463758,0.165007,0.958568,0.211977,0.630489,0.510487,0.350729,0.0914786,0.828268,0.316603,0.0248886,0.758193,0.719763,0.35623,0.132361,0.335335,0.583306,0.443645,0.138775,0.856735,0.870866,0.539378,0.67142,0.463669,0.59321,0.426468,0.435048,0.797734,0.226634,0.210376,0.775384,0.976085,0.953385,0.860206,0.501991,0.352569,0.151589,0.867361,0.868408,0.926344,0.245127,0.137985,0.2849,0.462401,0.701453,0.121212,0.920537,0.315927,0.644465,0.819138,0.433992,0.863509,0.0730336,0.0103968,0.487107,0.814714,0.346613,0.575973,0.945556,0.489556,0.315552,0.832992,0.919094,0.742482,0.16921,0.808571,0.623065,0.807483,0.153546,0.95884,0.436789,0.466053,0.772092,0.970427,0.417134,0.807851,0.797166,0.465562,0.873203,0.558927,0.31668,0.795953,0.445235,0.176005,0.764816,0.00553447,0.142052,0.202657,0.17479,0.997314,0.253729,0.828346,0.482527,0.321308,0.929834,0.582941,0.802825,0.759511,0.364362,0.224916,0.739834,0.226877,0.792964,0.999544,0.393431,0.869622,0.453902,0.464112,0.261894,0.3434,0.561343,0.882345,0.573828,0.79904,0.52613,0.937351,0.462813,0.820418,0.904274,0.776794,0.925462,0.198582,0.652003,0.184683,0.912391,0.573053,0.837349,0.06595,0.578439,0.369828,0.293605,0.67542,0.520109,0.798163,0.219432,0.567036,0.335227,0.338719,0.580377,0.783826,0.836143,0.398854,0.58982,0.2214,0.708481,0.959333,0.0557658,0.348889,0.373896,0.522071,|0.567794,0.223535,0.834345,0.303907,0.432085,0.517561,0.380006,0.562812,0.623556,0.921658,0.678953,0.970155,0.617546,0.955121,0.834321,0.18853,0.191977,0.777804,0.919751,0.133626,0.410917,0.452618,0.141908,0.598955,0.514573,0.592511,0.830727,0.720051,0.571191,0.729161,0.536543,0.802029,0.0102105,0.193587,0.336508,0.620501,0.218343,0.231484,0.503041,0.266537,0.28352,0.447285,0.697884,0.353689,0.647051,0.959769,0.588091,0.653772,0.881742,0.375626,0.870901,0.428839,0.521848,0.704655,0.0702922,0.737507,0.945373,0.945164,0.321795,0.83999,0.184079,0.399972,0.34292,0.612402,0.275703,0.707408,0.767378,0.541523,0.333384,0.670548,0.360291,0.540338,0.50982,0.822223,0.619671,0.0854903,0.317347,0.111853,0.876996,0.456596,0.787279,0.752525,0.353548,0.24747,0.357285,0.848,0.0767031,0.968934,0.0343118,0.238674,0.845056,0.267819,0.297257,0.0655618,0.82069,0.911739,0.446749,0.197777,0.083068,0.0245441,0.630872,0.517167,0.793617,0.0635768,0.446964,0.516209,0.917628,0.8117,0.387915,0.800706,0.841661,0.723662,0.0483536,0.357389,0.12254,0.0819864,0.339742,0.464025,0.952731,0.10556,0.303137,0.410644,0.575797,0.262535,0.00278294,0.104376,0.920601,0.268782,0.911997,0.252785,0.683533,0.253821,0.374489,0.61123,0.563805,0.771292,0.201193,0.908654,0.494012,0.367485,0.762659,0.177731,0.283282,0.151899,0.78523,0.521923,0.0550544,0.398532,0.809873,0.103898,0.206873,0.665021,0.445156,0.51027,0.680674,0.047363,0.722031,0.19098,0.629118,0.586215,0.737198,0.204051,0.321512,0.764267,0.717392,0.295713,0.624916,0.0350743,0.332773,0.149415,0.201876,0.833935,0.761604,0.16143,0.182708,0.307192,0.882192,0.0356429,0.555234,0.812101,0.34973,0.200617,0.72308,0.205162,0.615233,0.380441,0.506025,0.151125,0.00920039,0.69396,0.542005,0.675244,0.0593415,0.729094,0.375229,0.682103,0.585298,0.290439,0.592938,0.0105443,0.825105,0.755853,0.396477,0.508936,0.650912,0.796867,0.0185825,0.693906,0.581563,0.60093,0.0610879,0.141205,0.555934,0.39599,0.876099,0.0323292,0.420263,0.622396,0.657375,0.304038,0.38033,0.502403,0.371462,0.0540145,0.57736,0.765651,0.866774,0.413288,0.083891,0.436273,0.314467,0.0411009,0.280244,0.263778,0.425039,0.562693,0.392928,0.240407,0.680081,0.432484,0.110656,0.0582318,0.193651,0.738595,0.732137,0.0878627,0.128014,0.934094,0.199089,0.5703,0.931625,0.63389,0.75443,0.162094,0.952167,0.064648,0.26464,0.921033,0.801647,0.446578,0.0707361,0.111858,0.848787,0.513949,0.765391,0.826329,0.940364,0.757188,0.393853,0.33882,0.941595,0.793962,0.732302,0.702341,0.439658,0.670226,0.482756,0.766363,0.836536,0.726306,0.458541,0.762418,0.721201,0.201777,0.740955,0.783636,0.865117,0.314425,0.12642,0.248277,0.549787,0.770872,0.434557,0.199502,0.661404,0.452037,0.00586015,0.20154,0.284003,0.396101,0.049161,0.71295,0.76482,0.446353,0.0402082,0.0832302,0.717092,0.147791,0.929485,0.659673,0.772922,0.62783,0.743514,0.536897,0.990243,0.381834,0.0151038,0.595516,0.486488,0.601722,0.922204,0.593766,0.231556,0.936108,0.307598,0.902893,0.21936,0.914505,0.93142,0.746939,0.0291658,0.116577,0.82037,0.273025,0.766344,0.799583,0.144996,0.834774,0.744859,0.32499,0.00219774,0.154087,0.604865,0.474036,0.000169396,0.558221,0.403026,0.819831,0.991726,0.329313,0.683726,0.0125511,0.743856,0.459147,0.653976,0.651359,0.50411,0.901569,0.797732,0.720166,0.0817918,0.461781,0.63684,0.324649,0.165389,0.0387399,0.0391115,0.749243,0.50662,0.697968,0.631507,0.248933,0.201774,0.672794,0.788565,0.500535,0.0175814,0.992997,0.309899,0.851737,0.10416,0.15698,0.968231,0.481745,0.773243,0.522202,0.00543779,0.0396013,0.491327,0.820426,0.750304,0.411091,0.0265204,0.233621,0.399609,0.963902,0.82504,0.684816,0.553798,0.795519,0.0663289,0.768991,0.544629,0.696746,0.788143,0.902173,0.516753,0.804681,0.437211,0.159405,0.792986,0.984987,0.840255,0.406032,0.41691,0.0313083,0.848964,0.860236,0.657586,0.0575131,0.650279,0.327801,0.819213,0.0996613,0.983764,0.629764,0.675391,0.719329,0.148738,0.650243,0.273064,0.549349,0.443404,0.846406,0.809763,0.680222,0.139292,0.666033,0.551371,0.944318,0.122894,0.598304,0.50294,0.00194651,0.779928,0.453468,0.207544,0.810787,0.772423,0.642693,0.907111,0.931252,0.82435,0.713027,0.164126,0.38194,0.594991,0.184022,0.770842,0.00617844,0.835054,0.605283,0.179789,0.863773,0.911028,0.771384,0.823542,0.890573,0.713326,0.34029,0.416974,0.0783607,0.816725,0.826796,0.195528,0.355885,0.304875,0.831097,0.135257,0.12309,0.37252,0.897639,0.938894,0.980556,0.432152,0.581677,0.526351,0.933534,0.6798,0.853568,0.849044,0.196253,0.5631,0.905426,0.766475,0.683897,0.180152,0.392181,0.490843,0.850362,0.0981007,0.173515,0.827801,0.312917,0.104021,0.786216,0.623579,0.356408,0.404112,0.00624651,0.632119,0.453946,0.861606,0.791921,0.427942,0.222064,0.612019,0.398497,0.0466298,0.718051,0.925725,0.237794,0.547827,0.365119,0.0284976,0.981197,0.0230186,0.753208,0.105331,0.134615,0.5353,0.33509,0.169974,0.495161,0.287278,0.183423,0.127896,0.405347,0.871605,0.394934,0.984459,0.74636,0.714845,0.159441,0.997198,0.209678,0.435555,0.666751,0.142666,0.630404,0.944748,0.485286,0.600635,0.318237,0.311253,0.149452,0.713245,0.962404,0.0395221,0.446614,0.0541116,0.849118,0.453426,0.671153,0.68115,0.641193,0.755179,0.544614,0.0911518,0.877392,0.417773,0.756752,0.293666,0.966694,0.320192,0.295292,0.260887,0.490582,0.433007,0.0610337,0.398741,0.974398,0.800702,0.478439,0.339143,0.806352,0.230886,0.699963,0.244708,0.778004,0.764379,0.866091,0.875853,0.851145,0.943895,0.00623411,0.724119,0.932984,0.678929,0.863895,0.235557,0.277954,0.508231,0.579028,0.71137,0.933122,0.962587,0.0979426,0.503464,0.123873,0.693264,0.132037,0.817878,0.35356,0.39639,0.52092,0.0891707,0.802952,0.912076,0.846513,0.651904,0.836939,0.739141,0.87961,0.632269,0.901017,0.420404,0.165957,0.20148,0.539002,0.595934,0.00868171,0.0513735,0.017204,0.673,0.0216717,0.291112,0.145764,0.994899,0.10293,0.131415,0.336346,0.0123339,0.352142,0.153439,0.402657,0.868914,0.835064,0.415526,0.156237,0.0014227,0.842678,0.0129757,0.897903,0.902946,0.604834,0.733402,0.412439,0.903106,0.270805,0.256864,0.243336,0.511954,0.878469,0.0360759,0.528143,0.918575,0.272006,0.31263,0.186411,0.105751,0.663289,0.794082,0.40471,0.434476,0.768403,0.277189,0.694163,0.058194,0.0612128,0.994246,0.982627,0.443963,0.711013,0.256082,0.525903,0.044741,0.0585037,0.949235,0.694961,0.978752,0.205752,0.910449,0.458207,0.805196,0.18897,0.634824,0.972789,0.74397,0.723431,0.186814,0.0721306,0.736549,0.649081,0.0190423,0.448018,0.910074,0.804033,0.284803,0.255687,0.66644,0.229733,0.653154,0.426221,0.496751,0.734253,0.336503,0.696579,0.501072,0.337809,0.749589,0.734182,0.284633,0.381552,0.971248,0.291923,0.0988026,0.737464,0.127574,0.850515,0.175322,0.864347,0.309997,0.93522,0.0218542,0.970197,0.568416,0.421035,0.203629,0.554683,0.314779,0.691466,0.464189,0.181373,0.260263,0.820354,0.373576,0.0186295,0.74634,0.188427,0.535913,0.713804,0.948328,0.548463,0.384516,0.817948,0.067943,0.848376,0.330448,0.670578,0.995602,0.0940837,0.672916,0.377778,0.611833,0.753787,0.138634,0.457468,0.493627,0.147531,0.71096,0.814728,0.72249,0.680282,0.982944,0.599348,0.151328,0.793235,0.42079,0.106011,0.593498,0.139985,0.365291,0.484831,0.621748,0.604642,0.97812,0.511446,0.923909,0.780727,0.998409,0.112188,0.79411,0.432141,0.99879,0.750307,0.737033,0.278569,0.470642,0.973247,0.228625,0.642786,0.726619,0.376408,0.479367,0.736661,0.917,0.905347,0.91234,0.891054,0.391172,0.301245,0.968353,0.594361,0.663183,0.0501051,0.379395,0.283046,0.780739,0.342728,0.602602,0.679637,0.208264,0.364107,0.675723,0.786238,0.476826,0.13849,0.650537,0.953396,0.110247,0.267348,0.682426,0.611585,0.733934,0.863306,0.993683,0.570581,0.0142896,0.926094,0.891493,0.841237,0.531446,0.789373,0.104518,0.0985721,0.153849,0.465411,0.581044,0.842341,0.141419,0.0840027,0.654328,0.0216596,0.593884,0.481034,0.646839,0.270499,0.495041,0.147122,0.46958,0.0320343,0.105936,0.212793,0.206282,0.554418,0.669156,0.379938,0.471391,0.337935,0.212247,0.53471,0.216814,0.531303,0.145932,0.290596,0.304757,0.792054,0.789327,0.594945,0.073648,0.487522,0.991217,0.382307,0.89511,0.43354,0.25962,0.295633,0.569745,0.707507,0.270898,0.494016,0.887762,0.504412,0.808169,0.754443,0.938777,0.170465,0.685224,0.141675,0.423337,0.908837,0.50066,0.878398,0.737364,0.236285,0.476111,0.798457,0.472199,0.0510811,0.35665,0.528185,0.734767,0.250745,0.261457,0.286622,0.161424,0.0966291,0.108783,0.90977,0.33876,0.941278,0.0868006,0.354979,0.349254,0.244155,0.861462,0.938211,0.813134,0.207078,0.52433,0.308068,0.934181,0.339004,0.0140898,0.552515,0.796252,0.195136,0.889534,0.128377,0.0560455,0.174694,0.698588,0.425432,0.29723,0.0640056,0.481291,0.576679,0.0253095,0.474812,0.149149,0.427173,0.327542,0.722351,0.680783,0.0295675,0.807651,0.38174,0.595011,0.100999,0.834484,0.304292,0.589663,0.141751,0.623002,0.816364,0.310212,0.731009,0.896792,0.681293,0.570934,0.431261,0.31413,0.00402606,0.14087,0.723787,0.384337,0.808098,0.103925,0.461775,0.705905,0.257948,0.0790699,0.370078,0.816319,0.862005,0.981157,0.540194,0.882338,0.545767,0.680561,0.430823,0.814698,0.408669,0.465304,0.940625,0.470157,0.675683,0.371254,0.789695,|0.805171,0.0421612,0.64517,0.312764,0.228544,0.428544,0.832831,0.851547,0.431346,0.0705839,0.508771,0.171543,0.205002,0.155172,0.297123,0.635792,0.84659,0.0432929,0.0847401,0.291652,0.92639,0.707032,0.788493,0.421492,0.431402,0.0872624,0.11851,0.73022,0.929323,0.43873,0.755865,0.592277,0.354857,0.627368,0.468695,0.970063,0.123388,0.176938,0.33525,0.0284215,0.660855,0.96113,0.168816,0.486735,0.882734,0.415242,0.335444,0.102956,0.427473,0.370814,0.634827,0.100895,0.748258,0.0521336,0.352412,0.758669,0.126499,0.987808,0.535622,0.785838,0.108144,0.372903,0.85152,0.976573,0.531641,0.709121,0.473383,0.850619,0.314922,0.405979,0.0690022,0.975294,0.526314,0.0762658,0.167748,0.496884,0.862012,0.831734,0.0879125,0.344062,0.852556,0.791137,0.139807,0.692985,0.146514,0.467809,0.349589,0.798495,0.673759,0.035454,0.473976,0.136221,0.80299,0.916236,0.599379,0.92919,0.122717,0.828448,0.990872,0.0680266,0.548553,0.932775,0.148624,0.458823,0.0398255,0.886157,0.256072,0.842958,0.728673,0.0130098,0.255607,0.455301,0.130179,0.351623,0.86498,0.935901,0.511195,0.926509,0.519487,0.131502,0.0526864,0.807113,0.0274075,0.80609,0.698709,0.380152,0.805539,0.0707524,0.123114,0.763789,0.206707,0.865726,0.501094,0.798916,0.114236,0.402909,0.914139,0.219978,0.80891,0.391682,0.180475,0.451915,0.575896,0.890707,0.665988,0.861658,0.0525244,0.582127,0.325835,0.106055,0.0268636,0.304565,0.536893,0.972498,0.430552,0.316045,0.616841,0.287882,0.239855,0.348441,0.985867,0.154081,0.279524,0.0964987,0.614555,0.734446,0.386207,0.496182,0.292998,0.18524,0.275201,0.414393,0.251058,0.713283,0.25554,0.123245,0.731965,0.843226,0.100807,0.86232,0.717084,0.903443,0.467939,0.162398,0.28663,0.514207,0.780819,0.15087,0.591635,0.587803,0.516111,0.206133,0.0981236,0.573415,0.0751771,0.055797,0.449408,0.477811,0.742514,0.47585,0.423406,0.299936,0.568207,0.73077,0.207337,0.353422,0.951546,0.832717,0.321677,0.75743,0.59093,0.690786,0.388844,0.666603,0.964438,0.442848,0.713983,0.0349533,0.633048,0.798525,0.489271,0.828757,0.946275,0.0108979,0.354959,0.388271,0.0357514,0.406587,0.4816,0.343765,0.486656,0.968585,0.49175,0.093928,0.916316,0.482225,0.58534,0.806062,0.867666,0.676749,0.439984,0.629245,0.87838,0.0292644,0.287826,0.567503,0.283543,0.716829,0.431362,0.998345,0.887573,0.572648,0.0600635,0.903984,0.265586,0.253927,0.975361,0.0736308,0.568511,0.0981722,0.110205,0.628393,0.943587,0.484104,0.170649,0.734517,0.742553,0.514222,0.890697,0.127374,0.579795,0.152449,0.389222,0.700686,0.775018,0.443254,0.768166,0.622813,0.84297,0.332907,0.58799,0.300824,0.833756,0.99136,0.0699662,0.827139,0.0516471,0.294055,0.695339,0.689972,0.292106,0.280696,0.289137,0.2109,0.277584,0.996112,0.907063,0.759954,0.0809973,0.246846,0.591138,0.581254,0.259736,0.841129,0.591157,0.407477,0.546236,0.269285,0.752748,0.914626,0.528226,0.596791,0.18834,0.0194161,0.345274,0.756298,0.221326,0.0690317,0.213697,0.565752,0.449837,0.0206253,0.726529,0.632808,0.0175903,0.546519,0.392755,0.919521,0.895887,0.0909778,0.790556,0.463336,0.475421,0.41812,0.535349,0.885816,0.83635,0.978361,0.282935,0.8927,0.95727,0.507411,0.615792,0.129893,0.90067,0.914063,0.408467,0.184985,0.7052,0.19517,0.832749,0.945633,0.659164,0.394883,0.209064,0.531233,0.905066,0.21794,0.111499,0.945662,0.525367,0.496846,0.0478551,0.314326,0.450437,0.358072,0.95887,0.353867,0.4593,0.242357,0.748598,0.0892887,0.21911,0.112723,0.416489,0.503477,0.491471,0.622189,0.395443,0.215896,0.867222,0.954457,0.567242,0.996148,0.788265,0.637896,0.629731,0.293357,0.748285,0.979641,0.957595,0.934688,0.454727,0.854636,0.412618,0.891676,0.655496,0.390824,0.483342,0.868114,0.0131661,0.464789,0.295117,0.929944,0.392009,0.661031,0.344391,0.0107189,0.462351,0.851863,0.00830835,0.488068,0.517468,0.0186639,0.570145,0.486512,0.0715143,0.247518,0.623705,0.806598,0.453937,0.428198,0.556477,0.535191,0.698018,0.132239,0.879809,0.509025,0.370945,0.598269,0.342492,0.81364,0.422039,0.411178,0.820966,0.0934091,0.558979,0.988688,0.987444,0.296254,0.856315,0.0619149,0.49399,0.453699,0.441724,0.151051,0.170914,0.57049,0.375314,0.858247,0.71644,0.052922,0.233264,0.763309,0.911545,0.802203,0.334047,0.811837,0.900367,0.344372,0.370015,0.658037,0.509664,0.258216,0.608738,0.154836,0.195947,0.277712,0.413902,0.387261,0.687827,0.50606,0.286644,0.451204,0.610435,0.577053,0.466825,0.473124,0.698193,0.213128,0.86582,0.585326,0.0678335,0.430613,0.569389,0.00241923,0.0169971,0.38159,0.503828,0.0509784,0.532101,0.936815,0.16298,0.682472,0.451059,0.378171,0.349171,0.517719,0.61187,0.373684,0.0450453,0.624686,0.228296,0.0199422,0.554785,0.0535787,0.681434,0.706787,0.247897,0.589224,0.33441,0.912994,0.375227,0.984313,0.463631,0.0685453,0.838311,0.299584,0.657022,0.342673,0.585871,0.216154,0.141901,0.543749,0.757941,0.361388,0.169599,0.598487,0.109653,0.131537,0.190413,0.148775,0.849441,0.0304304,0.252462,0.112272,0.0350692,0.744385,0.74951,0.796188,0.406396,0.126522,0.593229,0.856715,0.831635,0.630551,0.667579,0.434346,0.88664,0.643659,0.836548,0.74917,0.529819,0.804482,0.662001,0.823641,0.686323,0.0890123,0.35449,0.159286,0.443945,0.0256482,0.597741,0.752351,0.0259405,0.282253,0.990369,0.414502,0.283689,0.656609,0.30597,0.093074,0.530758,0.782063,0.436685,0.965411,0.286961,0.325677,0.173832,0.600899,0.825354,0.628278,0.965689,0.277844,0.568094,0.151543,0.500431,0.53689,0.0134707,0.685348,0.549063,0.180372,0.623468,0.495144,0.579838,0.427165,0.185581,0.981852,0.834125,0.876673,0.470787,0.924572,0.0115057,0.287603,0.840905,0.195961,0.809239,0.166948,0.139628,0.564625,0.540098,0.446576,0.647617,0.778088,0.912479,0.36995,0.631848,0.814919,0.0641543,0.192462,0.611638,0.399027,0.0205107,0.862208,0.701521,0.712126,0.0440796,0.780242,0.978832,0.457393,0.010875,0.0997373,0.410406,0.202222,0.183689,0.377174,0.996012,0.10902,0.250683,0.983787,0.672838,0.432323,0.723324,0.471538,0.720328,0.724804,0.512831,0.928644,0.354617,0.506094,0.836868,0.0744219,0.139968,0.993267,0.294606,0.0951172,0.173361,0.754514,0.0899501,0.972623,0.480846,0.498013,0.712659,0.283522,0.160573,0.129767,0.235554,0.51066,0.287872,0.780144,0.390392,0.865749,0.773272,0.718798,0.000897706,0.578479,0.215099,0.317589,0.547215,0.261892,0.184311,0.627357,0.894837,0.304263,0.569189,0.474864,0.044498,0.187694,0.245774,0.603458,0.369122,0.548542,0.631451,0.631238,0.319017,0.337294,0.0526132,0.256361,0.143406,0.613113,0.236868,0.314836,0.205524,0.913409,0.254679,0.492791,0.459179,0.338471,0.573696,0.644855,0.587245,0.378297,0.641999,0.0615749,0.548962,0.865656,0.501708,0.750611,0.829678,0.693412,0.792318,0.599876,0.832482,0.175542,0.735284,0.996278,0.732009,0.75554,0.0962221,0.905376,0.932652,0.00402391,0.519132,0.570643,0.393916,0.508541,0.260339,0.160473,0.984241,0.179474,0.633917,0.701344,0.806825,0.389803,0.234718,0.471729,0.251663,0.67122,0.300912,0.125169,0.0243441,0.169728,0.807551,0.0757022,0.611957,0.744071,0.90002,0.190827,0.659549,0.784775,0.417535,0.141673,0.0113066,0.816429,0.471387,0.45848,0.268666,0.532603,0.891235,0.920451,0.176143,0.915266,0.0182742,0.618541,0.287799,0.372981,0.0328352,0.67556,0.894391,0.234463,0.110757,0.379971,0.439138,0.531445,0.415853,0.43605,0.720139,0.789019,0.548726,0.781624,0.147124,0.416937,0.615769,0.189182,0.653304,0.0564238,0.212325,0.993494,0.00605786,0.0338961,0.051515,0.687128,0.942948,0.813072,0.0628975,0.0509154,0.465422,0.716839,0.471132,0.0656413,0.373287,0.808328,0.526567,0.30602,0.252788,0.755207,0.112622,0.439555,0.733818,0.52566,0.0848112,0.745322,0.885011,0.0148293,0.287273,0.722463,0.806644,0.374311,0.326625,0.393665,0.379199,0.44623,0.0793268,0.176015,0.025973,0.934734,0.658566,0.954514,0.667048,0.800823,0.872404,0.960502,0.351434,0.315706,0.561008,0.184702,0.565928,0.922436,0.788946,0.826319,0.39074,0.52303,0.178783,0.895441,0.968089,0.921708,0.427888,0.117162,0.474647,0.669702,0.0818164,0.0539361,0.65746,0.915007,0.744349,0.844165,0.0907196,0.465806,0.493711,0.865426,0.81357,0.724406,0.781748,0.401832,0.829742,0.432244,0.535364,0.83347,0.694862,0.605069,0.396554,0.876229,0.819777,0.620063,0.372386,0.381791,0.121677,0.432053,0.40188,0.690028,0.27956,0.563219,0.860649,0.538986,0.973474,0.0199167,0.328026,0.0376486,0.117324,0.0035345,0.907169,0.880091,0.971483,0.204303,0.625738,0.475991,0.971141,0.290769,0.219252,0.307382,0.0819586,0.381875,0.403161,0.5188,0.438068,0.852198,0.371601,0.714174,0.0418264,0.611043,0.391901,0.999916,0.430119,0.650096,0.969087,0.675146,0.17184,0.427789,0.823126,0.888958,0.690561,0.424692,0.255499,0.0843686,0.142232,0.575495,0.0322765,0.727507,0.289909,0.555308,0.522308,0.654169,0.556133,0.962915,0.511745,0.3111,0.730138,0.912677,0.849845,0.142465,0.689307,0.879311,0.525256,0.102576,0.630986,0.374563,0.433928,0.99483,0.15881,0.204648,0.642963,0.818072,0.531158,0.853288,0.356754,0.46945,0.521372,0.901429,0.235578,0.52076,0.972332,0.123443,0.345408,0.848601,0.366191,0.0838501,0.599957,0.884955,0.940782,0.685987,0.99785,0.620189,0.820952,0.273423,0.501473,0.697924,0.799875,0.251055,0.730625,0.146492,0.615247,0.27065,0.952361,0.0326331,0.916122,0.524985,0.0646413,0.0114347,0.896364,0.23137,|0.963042,0.183743,0.69859,0.137402,0.166462,0.53462,0.407991,0.162624,0.663177,0.307575,0.456161,0.193867,0.285063,0.503664,0.838007,0.94151,0.00468034,0.164426,0.302775,0.479068,0.188882,0.9201,0.287306,0.634889,0.159823,0.470574,0.231175,0.56994,0.911657,0.356212,0.356413,0.818642,0.227612,0.90662,0.850001,0.411267,0.23663,0.0458458,0.192328,0.290203,0.237624,0.134924,0.254118,0.0713238,0.31629,0.303694,0.370533,0.868583,0.528578,0.137898,0.810488,0.415189,0.102697,0.25799,0.263697,0.255011,0.542333,0.196141,0.26691,0.335483,0.683447,0.442291,0.980045,0.649614,0.0718785,0.718137,0.805772,0.731554,0.666848,0.0578219,0.879461,0.373147,0.181962,0.841287,0.0665464,0.557425,0.535896,0.572329,0.854763,0.000540912,0.12408,0.145907,0.375669,0.0710666,0.00936282,0.20564,0.280845,0.603818,0.767773,0.512672,0.278931,0.709112,0.227275,0.0705905,0.202996,0.719269,0.766446,0.929738,0.21663,0.578581,0.688306,0.625254,0.304152,0.121802,0.870856,0.63929,0.166969,0.769494,0.616035,0.345867,0.14422,0.635446,0.501048,0.15175,0.276614,0.321121,0.483302,0.982805,0.202098,0.877983,0.737981,0.189434,0.97599,0.48353,0.982441,0.641664,0.409557,0.333527,0.876906,0.594835,0.763005,0.328998,0.933382,0.706003,0.280681,0.696161,0.670684,0.814571,0.543864,0.29495,0.85696,0.0942242,0.97904,0.88506,0.558033,0.502209,0.917832,0.440069,0.741566,0.795119,0.845862,0.570214,0.992581,0.979323,0.110937,0.43726,0.0921941,0.667992,0.515141,0.0793487,0.528587,0.472181,0.14105,0.275855,0.367235,0.969398,0.663836,0.0172622,0.8702,0.855922,0.569752,0.6533,0.309829,0.106679,0.777885,0.821258,0.980958,0.170061,0.599868,0.368654,0.144447,0.366957,0.85481,0.172698,0.829022,0.98129,0.689129,0.945527,0.942427,0.714498,0.0485203,0.12208,0.334472,0.404329,0.433219,0.0286929,0.207246,0.27214,0.452239,0.817539,0.0297207,0.105012,0.00838965,0.872948,0.469789,0.423147,0.350994,0.194021,0.49814,0.21028,0.971544,0.656061,0.23326,0.070388,0.548942,0.825973,0.962329,0.715383,0.0544615,0.908949,0.955311,0.811794,0.0743079,0.51011,0.633579,0.889162,0.990833,0.953852,0.937671,0.751994,0.329252,0.805066,0.868574,0.737979,0.471255,0.955409,0.496742,0.780698,0.112231,0.826243,0.501491,0.945086,0.861129,0.531905,0.72748,0.318907,0.940736,0.34121,0.300401,0.07506,0.463218,0.108327,0.534968,0.962471,0.0797682,0.465063,0.086695,0.53021,0.780909,0.307296,0.816564,0.934873,0.963859,0.151979,0.891577,0.132467,0.245617,0.298803,0.165354,0.763057,0.0255366,0.181957,0.681645,0.129133,0.823335,0.698945,0.679265,0.143937,0.806821,0.286642,0.907308,0.676812,0.0236551,0.878328,0.681258,0.596789,0.5282,0.927197,0.0120305,0.219728,0.0913504,0.788695,0.390925,0.458961,0.411357,0.45548,0.027068,0.78389,0.691335,0.100814,0.686163,0.262012,0.917493,0.300535,0.100606,0.556871,0.844613,0.654811,0.340259,0.604429,0.952921,0.247201,0.546202,0.867567,0.112176,0.635065,0.625986,0.477221,0.751314,0.901981,0.64064,0.562871,0.744972,0.26232,0.206027,0.669119,0.968913,0.252379,0.887791,0.415172,0.506562,0.338679,0.288675,0.859579,0.514795,0.514485,0.960817,0.690903,0.658126,0.772535,0.402706,0.882311,0.476817,0.294198,0.839247,0.0946726,0.504313,0.319393,0.625196,0.136055,0.841583,0.319498,0.0360885,0.513883,0.644849,0.0950662,0.71352,0.0925893,0.171285,0.963744,0.400881,0.368786,0.442813,0.46108,0.168764,0.136757,0.201596,0.790741,0.734088,0.0577398,0.399432,0.0272921,0.668757,0.354335,0.75202,0.965125,0.650212,0.33214,0.517353,0.683203,0.0921063,0.48032,0.0529119,0.279948,0.944433,0.00439197,0.962917,0.490476,0.110753,0.93707,0.0246662,0.882136,0.605075,0.513994,0.911039,0.31192,0.335777,0.107992,0.601329,0.326065,0.0994329,0.74146,0.20674,0.579267,0.509096,0.314064,0.292871,0.563241,0.492287,0.903101,0.737667,0.766274,0.0479836,0.199255,0.122256,0.857733,0.425756,0.372298,0.952107,0.0975617,0.887932,0.649122,0.750419,0.662449,0.664973,0.665361,0.0615574,0.834562,0.139635,0.342223,0.6052,0.497761,0.278582,0.181527,0.154584,0.027034,0.710443,0.79975,0.265242,0.030966,0.610079,0.891423,0.206168,0.535575,0.723423,0.881419,0.209349,0.331103,0.416358,0.3952,0.850589,0.50098,0.485956,0.187772,0.33882,0.506645,0.822369,0.925625,0.494157,0.344315,0.120792,0.509564,0.679091,0.613324,0.360501,0.308903,0.26501,0.0029133,0.54337,0.483603,0.712709,0.570619,0.018173,0.287266,0.909137,0.565951,0.858626,0.100573,0.735335,0.265932,0.999719,0.549339,0.811023,0.775607,0.328863,0.14478,0.308233,0.85134,0.342063,0.226118,0.103655,0.721166,0.815095,0.500532,0.695448,0.932482,0.281286,0.85899,0.7434,0.180771,0.155629,0.725418,0.9798,0.35634,0.804814,0.783681,0.920492,0.0707797,0.0742388,0.525967,0.399544,0.0754872,0.331344,0.976798,0.454319,0.258123,0.00684935,0.526481,0.74887,0.0406957,0.0603437,0.464752,0.606912,0.880491,0.497885,0.227352,0.187121,0.463897,0.24122,0.628904,0.768627,0.670538,0.0828604,0.205048,0.614511,0.580433,0.10791,0.322016,0.918522,0.779342,0.0757685,0.742974,0.323682,0.109275,0.980375,0.653894,0.692855,0.994854,0.497839,0.449192,0.572538,0.962996,0.204794,0.403212,0.0698837,0.554335,0.81515,0.658158,0.799909,0.439704,0.92612,0.228,0.908706,0.297768,0.472545,0.45278,0.614325,0.740856,0.434772,0.0190665,0.704248,0.623146,0.197909,0.87636,0.0337644,0.090816,0.0375314,0.638163,0.0852351,0.361133,0.6003,0.116799,0.679381,0.563166,0.37326,0.45489,0.884052,0.495802,0.986321,0.0335237,0.883775,0.976142,0.446153,0.512995,0.377679,0.10636,0.297162,0.493502,0.545405,0.4259,0.821298,0.0304212,0.047543,0.732455,0.146176,0.43623,0.553468,0.561613,0.297542,0.428523,0.445454,0.942583,0.29311,0.522608,0.75224,0.773109,0.198499,0.0351207,0.838165,0.054327,0.967178,0.953617,0.295995,0.279226,0.466762,0.404567,0.367797,0.636476,0.844098,0.61435,0.45792,0.336484,0.70387,0.513938,0.347907,0.0101517,0.921048,0.806836,0.882724,0.354731,0.728936,0.793321,0.749718,0.559268,0.567657,0.883208,0.143104,0.611321,0.638759,0.190519,0.455002,0.973007,0.66363,0.895836,0.905535,0.32078,0.899194,0.30459,0.977936,0.67947,0.300873,0.645701,0.161295,0.412544,0.496922,0.340151,0.848165,0.245731,0.0989968,0.527458,0.688884,0.261504,0.705441,0.586651,0.77861,0.826755,0.273156,0.440517,0.143353,0.385024,0.43228,0.365852,0.0632619,0.334092,0.514725,0.0265479,0.641073,0.682717,0.860966,0.0455835,0.250386,0.552058,0.883413,0.258131,0.0611406,0.948747,0.165231,0.793056,0.783751,0.821506,0.660068,0.207322,0.487484,0.0269807,0.435696,0.482548,0.314818,0.0644984,0.827077,0.670579,0.0624961,0.467548,0.787821,0.0748162,0.403199,0.529955,0.0296921,0.156933,0.0037446,0.259905,0.793893,0.814748,0.0406042,0.342098,0.599691,0.500151,0.288322,0.647736,0.352682,0.497945,0.433674,0.13386,0.362011,0.288315,0.858072,0.717338,0.413211,0.946396,0.624308,0.873072,0.893395,0.739799,0.656911,0.480883,0.836565,0.294153,0.957588,0.0913067,0.0456203,0.486192,0.706159,0.539888,0.397977,0.348307,0.793607,0.890064,0.44759,0.308639,0.915888,0.308608,0.285406,0.100212,0.279709,0.795569,0.28647,0.598039,0.118657,0.435967,0.980985,0.596087,0.613926,0.208298,0.285042,0.279727,0.128108,0.739301,0.232485,0.684766,0.511201,0.745586,0.15288,0.116457,0.878615,0.388013,0.729188,0.78791,0.575722,0.00115645,0.91651,0.297713,0.38609,0.478973,0.152562,0.724575,0.104644,0.284003,0.783924,0.601665,0.501001,0.792178,0.88572,0.531576,0.300105,0.152056,0.153007,0.0474131,0.985039,0.875915,0.409274,0.558857,0.918213,0.588378,0.11677,0.713366,0.72781,0.660618,0.605207,0.256251,0.664283,0.716893,0.421715,0.572753,0.860605,0.00501508,0.568006,0.861732,0.102967,0.13187,0.0312763,0.299713,0.93015,0.0416706,0.551558,0.430094,0.173343,0.847361,0.505992,0.178858,0.462174,0.673899,0.285601,0.101751,0.803003,0.6832,0.578217,0.821167,0.572932,0.497307,0.940436,0.386435,0.841152,0.0137414,0.934842,0.0351133,0.557515,0.0164425,0.266843,0.556492,0.213729,0.00603545,0.157248,0.0844467,0.423538,0.299641,0.187369,0.0857127,0.498883,0.0158133,0.828541,0.600946,0.359874,0.66686,0.667241,0.118744,0.72716,0.147323,0.422861,0.887788,0.753646,0.666658,0.760955,0.769659,0.639069,0.620047,0.19004,0.137023,0.368403,0.925557,0.999405,0.822478,0.981292,0.616055,0.817266,0.267452,0.120229,0.91365,0.239631,0.302821,0.510437,0.971841,0.713751,0.810129,0.345955,0.492395,0.462549,0.40636,0.6319,0.208089,0.523716,0.717394,0.649252,0.347851,0.879015,0.305457,0.752805,0.603461,0.507948,0.421928,0.0338695,0.344078,0.279601,0.51159,0.978703,0.607188,0.359728,0.126202,0.414102,0.394156,0.260025,0.524206,0.396926,0.57878,0.874832,0.280006,0.208999,0.484597,0.47075,0.153791,0.656561,0.208854,0.835795,0.567219,0.900908,0.135765,0.247436,0.878177,0.141131,0.892599,0.583401,0.163665,0.94426,0.670591,0.399617,0.580912,0.560251,0.729036,0.2058,0.458444,0.71673,0.0236973,0.572663,0.918031,0.163997,0.969872,0.210031,0.783626,0.107251,0.046266,0.627364,0.412434,0.109829,0.813002,0.431008,0.55584,0.370418,0.768138,0.465506,0.844195,0.21614,0.41556,0.0823748,0.476729,0.861226,0.57584,0.172419,0.0638342,0.172141,0.501399,0.241626,0.83531,0.0421798,0.619429,0.787961,0.706486,0.819907,0.27584,0.185039,0.857075,0.870806,0.976458,|0.506638,0.513819,0.335788,0.35359,0.962149,0.381425,0.230747,0.164882,0.181197,0.662624,0.553932,0.532992,0.28421,0.0621843,0.0468465,0.227461,0.748377,0.659909,0.898946,0.103564,0.54982,0.346071,0.972712,0.0327405,0.692693,0.674948,0.0943234,0.306344,0.762782,0.549513,0.453325,0.80449,0.544182,0.837334,0.477508,0.106907,0.602028,0.425977,0.879586,0.259659,0.728984,0.0530387,0.835047,0.366512,0.253702,0.775699,0.411634,0.698888,0.990208,0.584354,0.503144,0.327879,0.497966,0.956257,0.90423,0.704447,0.279163,0.627248,0.272328,0.876486,0.196968,0.666533,0.875188,0.723408,0.264147,0.262181,0.901084,0.487063,0.186997,0.595102,0.575285,0.32525,0.528317,0.982459,0.181877,0.608273,0.555966,0.974795,0.188893,0.983196,0.146872,0.106679,0.441135,0.545639,0.766376,0.264989,0.95449,0.999522,0.745069,0.588244,0.51149,0.124442,0.383174,0.43309,0.442239,0.928769,0.665318,0.501417,0.4316,0.999493,0.961742,0.341659,0.624015,0.859123,0.151785,0.694855,0.0342754,0.579144,0.111673,0.31909,0.766451,0.256072,0.640891,0.389177,0.160636,0.329174,0.468435,0.526019,0.0665362,0.47422,0.880661,0.326896,0.827991,0.655365,0.725109,0.726267,0.398701,0.493736,0.320115,0.485481,0.472968,0.0331466,0.212862,0.348568,0.449557,0.258951,0.93721,0.146545,0.039225,0.574198,0.944786,0.0606662,0.79629,0.662386,0.0316305,0.808947,0.426129,0.22409,0.0233181,0.0683706,0.154973,0.94544,0.717514,0.614314,0.0947594,0.320989,0.83383,0.678475,0.676306,0.757276,0.708203,0.459906,0.0240182,0.204865,0.579682,0.638282,0.640296,0.942423,0.537552,0.0637417,0.699034,0.160423,0.993248,0.686172,0.486644,0.72499,0.555601,0.0751923,0.933176,0.723366,0.320755,0.0201493,0.159334,0.0690207,0.705239,0.592479,0.368718,0.953779,0.850923,0.812446,0.265567,0.644047,0.85599,0.428081,0.00801504,0.0810229,0.992773,0.429185,0.0776908,0.986179,0.790217,0.118359,0.925019,0.965498,0.546402,0.0623768,0.992894,0.07728,0.522737,0.212844,0.450899,0.18036,0.617198,0.261689,0.981512,0.00145018,0.456679,0.194883,0.481988,0.285887,0.856875,0.186845,0.149434,0.514982,0.302299,0.174747,0.551184,0.317719,0.125825,0.232369,0.949485,0.69789,0.851885,0.470168,0.468281,0.885702,0.805898,0.14844,0.504463,0.471528,0.487698,0.342461,0.17269,0.196831,0.288123,0.472237,0.330041,0.260419,0.426829,0.341541,0.990782,0.252707,0.642975,0.755082,0.138429,0.799734,0.119884,0.490301,0.445356,0.329706,0.968691,0.693887,0.818746,0.944332,0.959569,0.707036,0.230055,0.280456,0.583093,0.676043,0.485304,0.965272,0.48126,0.409037,0.9849,0.744152,0.980273,0.372648,0.267946,0.0277413,0.692075,0.150902,0.75144,0.319072,0.275661,0.339029,0.543142,0.794756,0.813757,0.532583,0.985794,0.193233,0.230588,0.502768,0.325469,0.496512,0.732546,0.366981,0.830718,0.778283,0.261253,0.937892,0.48542,0.515964,0.12929,0.0725372,0.461475,0.478566,0.359001,0.946709,0.0217899,0.952295,0.714295,0.484607,0.476703,0.554522,0.576527,0.653915,0.442797,0.677455,0.771102,0.714236,0.42855,0.388551,0.156675,0.0916104,0.654385,0.268398,0.998472,0.466426,0.774866,0.409375,0.0373374,0.324322,0.0721689,0.209091,0.247021,0.435126,0.101819,0.0393701,0.811786,0.449204,0.0218191,0.289864,0.60762,0.535921,0.498796,0.420077,0.339783,0.399792,0.988966,0.468588,0.205332,0.29954,0.805605,0.668573,0.490044,0.163019,0.0214899,0.714747,0.916283,0.165494,0.0143552,0.761112,0.397229,0.775349,0.326783,0.680293,0.737932,0.435404,0.528118,0.426017,0.288147,0.638553,0.394199,0.80127,0.178553,0.0308445,0.381689,0.976581,0.872124,0.103788,0.861027,0.0162383,0.189292,0.891038,0.402107,0.125375,0.11369,0.891561,0.247004,0.476605,0.775142,0.619371,0.414245,0.315572,0.524257,0.672161,0.458377,0.392255,0.136964,0.624072,0.133128,0.413192,0.642504,0.716313,0.922563,0.981555,0.377168,0.951189,0.111963,0.11755,0.491623,0.0479423,0.868073,0.0889048,0.85976,0.194457,0.300928,0.653896,0.278098,0.0891277,0.309502,0.339372,0.222937,0.821701,0.425945,0.831485,0.752045,0.174187,0.544924,0.829658,0.729268,0.383285,0.713515,0.0908946,0.935375,0.749461,0.674563,0.644987,0.260944,0.569944,0.49297,0.46053,0.499884,0.59152,0.907932,0.645495,0.223398,0.348016,0.055725,0.0467079,0.232821,0.803429,0.835642,0.658263,0.527007,0.0220101,0.939365,0.898213,0.918554,0.449367,0.596865,0.12252,0.742016,0.710985,0.337819,0.13857,0.375699,0.741225,0.102303,0.154991,0.450441,0.834548,0.222923,0.443144,0.267138,0.209249,0.0168563,0.587252,0.924209,0.0156517,0.656278,0.570957,0.582512,0.929588,0.427362,0.956372,0.267592,0.520168,0.290431,0.655084,0.752649,0.418828,0.256154,0.646161,0.709855,0.099482,0.663899,0.00174624,0.348443,0.60859,0.831579,0.939597,0.820282,0.340215,0.646936,0.955764,0.179669,0.355921,0.419489,0.537929,0.142872,0.715335,0.0160281,0.11957,0.760918,0.141773,0.846258,0.405687,0.123477,0.428307,0.387341,0.580627,0.975026,0.454826,0.412244,0.781021,0.540791,0.878102,0.187701,0.767794,0.191921,0.0545899,0.642146,0.746126,0.847616,0.359818,0.820462,0.755658,0.196799,0.608431,0.871663,0.934282,0.943583,0.359874,0.524818,0.67193,0.281274,0.446328,0.639542,0.66532,0.139248,0.526186,0.368859,0.733872,0.705971,0.575742,0.26523,0.690445,0.575809,0.271314,0.700555,0.309912,0.418518,0.833347,0.0432965,0.273933,0.685264,0.646111,0.959714,0.284984,0.367102,0.33975,0.647918,0.781538,0.357964,0.958134,0.436159,0.370124,0.654513,0.533634,0.151469,0.967927,0.400527,0.95235,0.970027,0.504107,0.160554,0.859892,0.267315,0.246475,0.671175,0.129184,0.21288,0.650539,0.902578,0.312291,0.365987,0.789476,0.387702,0.130377,0.836972,0.0456114,0.761617,0.0160096,0.613159,0.064751,0.259816,0.50105,0.612206,0.0158702,0.0820627,0.823315,0.0191224,0.177983,0.568885,0.835364,0.0277745,0.00515258,0.673799,0.801087,0.959711,0.0752458,0.563446,0.245001,0.0789385,0.159625,0.186127,0.197533,0.890171,0.248743,0.111661,0.14815,0.681525,0.713942,0.316216,0.0761703,0.942849,0.738951,0.231518,0.888338,0.929832,0.597797,0.3489,0.564051,0.53266,0.196079,0.196843,0.659702,0.612052,0.38079,0.483383,0.233715,0.35088,0.833831,0.462063,0.126642,0.860792,0.269205,0.521931,0.657612,0.6269,0.9711,0.784952,0.271855,0.17072,0.422124,0.841309,0.599872,0.352903,0.205981,0.371866,0.299438,0.25863,0.321115,0.855198,0.106943,0.363563,0.317036,0.890281,0.414067,0.900639,0.106605,0.0113137,0.874797,0.717431,0.189218,0.242103,0.572477,0.382368,0.982181,0.507742,0.658134,0.395081,0.917512,0.643376,0.862177,0.599115,0.635009,0.150024,0.713916,0.224901,0.669432,0.075414,0.50243,0.354435,0.218759,0.393797,0.782821,0.430209,0.361005,0.0608259,0.848139,0.419838,0.22301,0.254219,0.166946,0.181586,0.438228,0.93968,0.34548,0.267812,0.369258,0.833298,0.942685,0.208842,0.407525,0.32042,0.882537,0.0111087,0.109451,0.0696784,0.327381,0.251333,0.485403,0.414027,0.174904,0.302297,0.322011,0.313368,0.224156,0.914616,0.694205,0.27573,0.646981,0.606698,0.502038,0.85566,0.475798,0.308525,0.76219,0.467879,0.0197595,0.707627,0.712798,0.540351,0.50046,0.402698,0.638683,0.906364,0.241698,0.22909,0.515216,0.841877,0.33379,0.834668,0.591325,0.361396,0.324601,0.890866,0.343447,0.940004,0.325085,0.225337,0.400361,0.0386561,0.14705,0.125193,0.269656,0.702658,0.654203,0.862397,0.0661367,0.112757,0.734763,0.454792,0.0713567,0.73976,0.957305,0.631875,0.940589,0.320078,0.370304,0.462891,0.434297,0.339811,0.397286,0.716991,0.874675,0.846181,0.124619,0.379786,0.946278,0.967113,0.356071,0.981843,0.601944,0.859916,0.179262,0.460277,0.18938,0.604687,0.706697,0.56822,0.922067,0.934253,0.0695032,0.452773,0.283607,0.0731122,0.529426,0.0655816,0.202178,0.642402,0.764031,0.653724,0.799558,0.937766,0.204297,0.867306,0.107871,0.810359,0.34677,0.943465,0.824217,0.476079,0.0706418,0.360867,0.425758,0.225202,0.479151,0.00694776,0.758005,0.130098,0.135225,0.562206,0.298692,0.636073,0.283187,0.165961,0.891191,0.956698,0.30737,0.996774,0.805206,0.591199,0.0545048,0.137327,0.692973,0.973109,0.250714,0.138009,0.33064,0.27852,0.327562,0.30304,0.555726,0.0310345,0.846872,0.0812091,0.657595,0.235489,0.0484415,0.326389,0.584762,0.62578,0.543783,0.890785,0.891204,0.679068,0.196688,0.447169,0.719197,0.291075,0.753669,0.700242,0.180626,0.0738374,0.760526,0.987652,0.447193,0.255788,0.178748,0.699545,0.528445,0.351337,0.464446,0.395219,0.262264,0.805624,0.634652,0.0422466,0.650156,0.667822,0.664963,0.69907,0.548614,0.368865,0.111176,0.908684,0.962249,0.820023,0.995476,0.0810475,0.224721,0.485717,0.824871,0.372059,0.874994,0.616779,0.505462,0.358517,0.713495,0.926782,0.877397,0.316506,0.593607,0.178802,0.57773,0.217843,0.293575,0.743808,0.245959,0.713287,0.281468,0.0530485,0.470312,0.145359,0.647911,0.119602,0.578819,0.947761,0.600139,0.969195,0.759287,0.788231,0.447379,0.586264,0.802246,0.499346,0.355123,0.420531,0.432758,0.233273,0.979925,0.185221,0.823405,0.895901,0.523486,0.945703,0.792465,0.745858,0.00201243,0.349773,0.0366109,0.714677,0.975156,0.422931,0.898333,0.219526,0.332119,0.328494,0.045912,0.815078,0.686377,0.765939,0.201044,0.738637,0.520931,0.106992,0.0830249,0.952632,0.217555,0.196532,0.456039,0.920516,0.388677,0.774877,0.244596,0.917825,0.089977,0.710769,0.868513,0.433048,0.685393,0.42908,0.0113401,0.265437,0.364586,|0.0464746,0.693105,0.414474,0.661506,0.190616,0.339235,0.0296337,0.760242,0.141242,0.268331,0.642955,0.894549,0.131624,0.60833,0.188305,0.563296,0.166977,0.81422,0.880956,0.74117,0.114039,0.0984403,0.389979,0.132341,0.0598158,0.457884,0.8159,0.723176,0.529853,0.20821,0.119236,0.185255,0.686718,0.823948,0.703963,0.0907926,0.746411,0.996231,0.719517,0.669585,0.893593,0.273386,0.682841,0.59575,0.891191,0.141848,0.0158171,0.193116,0.253001,0.190619,0.982291,0.303324,0.936714,0.908273,0.816849,0.126544,0.679436,0.51084,0.368231,0.763744,0.796735,0.294449,0.459906,0.865347,0.145605,0.968575,0.497796,0.843887,0.0764595,0.457474,0.657494,0.0123216,0.871953,0.53519,0.0793266,0.669392,0.112045,0.010391,0.375624,0.676161,0.256292,0.961264,0.125142,0.418255,0.426581,0.533955,0.889919,0.450167,0.486988,0.668459,0.369653,0.783716,0.787584,0.980337,0.123254,0.827994,0.712748,0.657613,0.301353,0.926029,0.0688574,0.637311,0.0398182,0.145868,0.366496,0.251708,0.514678,0.593866,0.84721,0.761146,0.430208,0.755024,0.765291,0.720113,0.450881,0.00449914,0.674884,0.196941,0.966055,0.647858,0.826376,0.191078,0.227021,0.175695,0.73867,0.615777,0.00984991,0.871751,0.908797,0.580179,0.740038,0.54643,0.0894691,0.153677,0.165946,0.431764,0.0923359,0.533625,0.458862,0.00853622,0.975801,0.675064,0.203852,0.509457,0.972872,0.0487903,0.0992255,0.013075,0.858651,0.270748,0.0374109,0.476074,0.384591,0.651774,0.698177,0.853173,0.971961,0.88491,0.705463,0.166481,0.45857,0.467195,0.42429,0.404471,0.800656,0.110957,0.525082,0.314988,0.967617,0.92114,0.381557,0.27822,0.424534,0.748006,0.510783,0.527888,0.956369,0.795526,0.363263,0.50165,0.33779,0.661409,0.675832,0.182893,0.314933,0.100271,0.158156,0.142175,0.0147764,0.374679,0.761304,0.325704,0.751423,0.585249,0.401475,0.190346,0.588706,0.797642,0.430375,0.254634,0.139709,0.733771,0.948394,0.861507,0.0680044,0.3505,0.0803266,0.640811,0.602409,0.991709,0.763126,0.559018,0.835488,0.214538,0.285113,0.665064,0.465741,0.0751137,0.770864,0.652819,0.279251,0.616833,0.549287,0.750083,0.533549,0.74414,0.689366,0.252546,0.664161,0.20486,0.864213,0.86963,0.93673,0.276297,0.89741,0.473722,0.593714,0.382387,0.741796,0.818172,0.709567,0.792706,0.578033,0.602309,0.0881842,0.933778,0.267965,0.315802,0.790839,0.681205,0.499353,0.711784,0.630073,0.844897,0.227565,0.517759,0.169576,0.929439,0.0899821,0.949969,0.420848,0.800996,0.802418,0.743372,0.165399,0.804608,0.90477,0.521348,0.201837,0.432976,0.2615,0.488115,0.458178,0.214908,0.35779,0.786892,0.756761,0.692032,0.788196,0.167249,0.0780516,0.748633,0.863233,0.202406,0.401068,0.00623912,0.131939,0.6443,0.117201,0.181921,0.582755,0.812585,0.976198,0.589999,0.352874,0.240042,0.404188,0.0842719,0.489273,0.47439,0.183418,0.564646,0.500883,0.0423812,0.555641,0.764681,0.0791266,0.770723,0.871847,0.951886,0.851063,0.679851,0.555264,0.0599332,0.867183,0.454843,0.178037,0.471738,0.27061,0.320552,0.636829,0.0473904,0.405623,0.648502,0.804785,0.0473028,0.263598,0.161143,0.465005,0.683428,0.884597,0.386351,0.627843,0.643722,0.85403,0.700962,0.259221,0.370759,0.212088,0.452817,0.417325,0.660644,0.566267,0.524749,0.922155,0.511816,0.566807,0.71865,0.579159,0.9581,0.798526,0.0866179,0.503177,0.149219,0.27497,0.361881,0.581646,0.807871,0.764236,0.575119,0.0322205,0.876382,0.342574,0.180824,0.705782,0.446431,0.874576,0.944696,0.278977,0.683138,0.927154,0.138196,0.960885,0.587471,0.385977,0.353712,0.890175,0.442317,0.601209,0.989167,0.648018,0.233612,0.149099,0.487145,0.29567,0.809734,0.902571,0.773451,0.30703,0.496627,0.440577,0.284984,0.142141,0.47405,0.742446,0.59572,0.82619,0.915144,0.981998,0.671945,0.446156,0.134099,0.836058,0.988608,0.314297,0.957832,0.0294706,0.0878922,0.331274,0.697569,0.648376,0.992381,0.416787,0.571114,0.974657,0.393817,0.684144,0.0841043,0.27547,0.0186272,0.61824,0.474292,0.856597,0.0921376,0.615389,0.0642502,0.794287,0.00396556,0.0357414,0.773922,0.464571,0.679476,0.934073,0.172903,0.911229,0.124282,0.670998,0.969156,0.022191,0.258299,0.720184,0.170488,0.60828,0.292495,0.895103,0.376429,0.0810443,0.363543,0.452441,0.0196048,0.0299382,0.113916,0.269695,0.677213,0.0600471,0.33344,0.933477,0.0960131,0.878376,0.156848,0.0150653,0.790584,0.736846,0.705867,0.776955,0.798624,0.0720601,0.569646,0.138623,0.338185,0.811335,0.409238,0.155367,0.675753,0.771061,0.287132,0.131891,0.618451,0.466382,0.849901,0.926373,0.162297,0.176405,0.898755,0.514759,0.843531,0.396585,0.677737,0.591773,0.424561,0.893683,0.861815,0.46204,0.0315911,0.834055,0.18023,0.736625,0.0276236,0.940175,0.0193985,0.760925,0.571551,0.974502,0.902125,0.000602841,0.212807,0.838703,0.548948,0.558918,0.0795388,0.603791,0.945869,0.952521,0.571078,0.0983753,0.447765,0.810801,0.141921,0.985723,0.994845,0.947152,0.272762,0.0456576,0.370118,0.8747,0.184184,0.972165,0.072723,0.305709,0.703495,0.888792,0.603121,0.280994,0.362346,0.617459,0.93296,0.0703784,0.961903,0.558663,0.88786,0.446892,0.877748,0.936627,0.981762,0.415245,0.272503,0.873847,0.532264,0.575214,0.183731,0.804637,0.772543,0.320218,0.670045,0.662288,0.796921,0.978619,0.680468,0.38638,0.686678,0.391577,0.874005,0.22945,0.483101,0.0735256,0.523936,0.0839632,0.348854,0.628172,0.830367,0.0244384,0.479923,0.152243,0.163781,0.815995,0.222595,0.25414,0.17349,0.810497,0.943991,0.422671,0.251621,0.493324,0.333435,0.0525573,0.0426008,0.0118338,0.0305454,0.929929,0.758361,0.573501,0.783868,0.877236,0.569528,0.855793,0.10767,0.491831,0.414187,0.245717,0.98999,0.285252,0.59878,0.892803,0.643419,0.196206,0.558952,0.978645,0.690156,0.285033,0.215498,0.912608,0.973336,0.695433,0.171064,0.414126,0.719053,0.000995815,0.0997865,0.738793,0.338296,0.399223,0.149752,0.222972,0.882153,0.201052,0.247131,0.974159,0.117683,0.525617,0.642253,0.972147,0.305489,0.235524,0.106744,0.633928,0.130294,0.993054,0.376478,0.212591,0.900217,0.956367,0.963238,0.146473,0.913769,0.133578,0.379093,0.194247,0.138366,0.381005,0.311888,0.893229,0.628973,0.137452,0.260907,0.116138,0.600078,0.25697,0.119513,0.899987,0.904949,0.751916,0.382634,0.480937,0.101993,0.958085,0.426365,0.974174,0.450187,0.556376,0.90194,0.119702,0.280106,0.682749,0.0150827,0.0963776,0.780028,0.060603,0.615646,0.83791,0.462162,0.400005,0.444594,0.441834,0.0928836,0.0879565,0.489551,0.871079,0.20045,0.811348,0.823008,0.527598,0.0946711,0.340961,0.944381,0.772554,0.570923,0.107072,0.711587,0.0420644,0.583669,0.0340076,0.151779,0.646053,0.218286,0.428267,0.538891,0.842029,0.706911,0.748077,0.0322974,0.0519335,0.327274,0.283268,0.909088,0.247281,0.590299,0.380336,0.784675,0.638305,0.284203,0.750766,0.758249,0.828337,0.809955,0.374803,0.40121,0.424323,0.965033,0.134811,0.220525,0.111361,0.991887,0.770059,0.873024,0.22573,0.761547,0.707376,0.374812,0.675426,0.105944,0.795988,0.911085,0.339616,0.112413,0.782155,0.026619,0.560678,0.284297,0.663148,0.267206,0.4409,0.201392,0.655458,0.161844,0.414753,0.146883,0.174556,0.43565,0.1498,0.107294,0.166934,0.25765,0.504262,0.20543,0.684616,0.0240723,0.371104,0.763412,0.439067,0.940743,0.552278,0.683458,0.267811,0.481287,0.852989,0.428877,0.390235,0.171362,0.348145,0.23943,0.656821,0.120028,0.430932,0.238217,0.7684,0.802949,0.450869,0.574176,0.794669,0.649021,0.726661,0.832292,0.174637,0.1153,0.242084,0.52109,0.27675,0.0750535,0.294568,0.0264887,0.608837,0.989511,0.833233,0.740068,0.302851,0.251748,0.877406,0.717669,0.735864,0.831767,0.30786,0.254029,0.767104,0.0644473,0.412249,0.543407,0.731716,0.169322,0.677111,0.878955,0.191134,0.234738,0.555929,0.952691,0.815505,0.639867,0.397006,0.990966,0.0638486,0.351795,0.488375,0.205924,0.389214,0.657617,0.847041,0.377908,0.592851,0.48895,0.943069,0.571347,0.842917,0.566569,0.541881,0.945562,0.425268,0.87212,0.917262,0.969302,0.389807,0.995342,0.885501,0.425292,0.438163,0.306814,0.812219,0.404079,0.987298,0.319531,0.783693,0.98105,0.0213987,0.880954,0.00711399,0.38288,0.496535,0.173824,0.0194143,0.35902,0.0992382,0.689522,0.638016,0.549065,0.383283,0.183961,0.576547,0.264698,0.301839,0.48045,0.980406,0.846204,0.64861,0.736805,0.458485,0.497886,0.535259,0.594543,0.66415,0.130396,0.684123,0.706219,0.438738,0.787181,0.716709,0.734495,0.510781,0.965069,0.749669,0.400244,0.679744,0.199428,0.30198,0.573095,0.825448,0.737613,0.47267,0.546717,0.924104,0.363109,0.544174,0.38642,0.435963,0.876662,0.329048,0.275072,0.654002,0.944846,0.842356,0.594351,0.883764,0.290811,0.42166,0.726677,0.260947,0.77421,0.677388,0.683125,0.590879,0.547098,0.816536,0.00979149,0.774233,0.492617,0.425965,0.58735,0.811742,0.743901,0.927822,0.676909,0.826847,0.366889,0.195837,0.946175,0.278079,0.831262,0.311185,0.0412777,0.675079,0.324783,0.795169,0.34744,0.782159,0.288068,0.363811,0.0622738,0.0287355,0.0633878,0.136662,0.131283,0.344985,0.236472,0.197409,0.794316,0.376656,0.167881,0.664323,0.167057,0.587865,0.370679,0.52386,0.21636,0.36701,0.206708,0.799345,0.202112,0.0308771,0.950693,0.530779,0.214426,0.223924,0.542326,0.903018,0.207329,0.91784,0.513561,0.813274,0.347039,0.470644,0.975792,0.626574,0.781952,0.0965652,0.827165,0.105529,0.2021,0.0354887,0.490302,0.760963,0.479022,0.553191,0.498507,|0.180007,0.750083,0.197379,0.634216,0.965422,0.797896,0.378888,0.152166,0.331761,0.446657,0.76767,0.207178,0.545878,0.626318,0.959911,0.328631,0.228661,0.170549,0.0351582,0.127353,0.632426,0.043593,0.76012,0.92412,0.33248,0.206636,0.615474,0.940341,0.841351,0.67606,0.626469,0.739053,0.824636,0.0537009,0.576927,0.608806,0.517021,0.839476,0.056101,0.718019,0.426875,0.0567918,0.62698,0.120708,0.346326,0.816083,0.947574,0.103707,0.734948,0.244,0.399134,0.0861245,0.87903,0.557843,0.302791,0.340677,0.274769,0.694076,0.709246,0.632273,0.667131,0.332261,0.129454,0.291787,0.692518,0.304967,0.951182,0.302952,0.84993,0.71385,0.243281,0.447115,0.169532,0.290087,0.76755,0.485108,0.154793,0.185308,0.755995,0.233633,0.80042,0.793292,0.177703,0.363837,0.807492,0.816296,0.648535,0.439406,0.831783,0.463801,0.457456,0.513583,0.228742,0.320758,0.417689,0.825673,0.094669,0.573281,0.293961,0.711392,0.287424,0.321549,0.8162,0.130909,0.695362,0.866179,0.63773,0.0316301,0.210519,0.918823,0.347832,0.243956,0.831056,0.124219,0.218284,0.692367,0.812605,0.588904,0.533122,0.412127,0.782736,0.745683,0.526953,0.998625,0.84938,0.436664,0.35429,0.765119,0.586405,0.0687817,0.989758,0.906953,0.934832,0.377557,0.62901,0.821542,0.324363,0.999195,0.887797,0.0502191,0.225165,0.380599,0.590162,0.728188,0.536489,0.608127,0.868887,0.358667,0.361326,0.161853,0.836998,0.553885,0.382456,0.0303138,0.309025,0.888315,0.039439,0.242809,0.701335,0.0357186,0.600751,0.251866,0.61514,0.509549,0.431692,0.0282515,0.235799,0.679843,0.539551,0.848154,0.0932171,0.960298,0.784726,0.509047,0.698698,0.603912,0.838293,0.753793,0.195984,0.611156,0.854879,0.847186,0.373095,0.31395,0.774523,0.783054,0.365051,0.501356,0.893359,0.0544748,0.740149,0.405655,0.704559,0.456209,0.303914,0.49162,0.542939,0.558926,0.0977476,0.416862,0.188027,0.944249,0.53364,0.759419,0.796767,0.675895,0.0806797,0.494741,0.17217,0.254373,0.413019,0.495265,0.214311,0.319956,0.393207,0.09262,0.185223,0.218111,0.780489,0.370054,0.337777,0.654232,0.609168,0.403531,0.659165,0.72907,0.529177,0.454197,0.900895,0.353204,0.154894,0.555024,0.456556,0.908383,0.940662,0.846723,0.785141,0.0954412,0.230944,0.808026,0.459935,0.627316,0.816507,0.47739,0.661082,0.270864,0.7576,0.696042,0.950894,0.979306,0.663436,0.526142,0.729773,0.224813,0.842655,0.00335157,0.245657,0.0365798,0.473698,0.0585824,0.269354,0.354402,0.886411,0.343769,0.17723,0.777858,0.730731,0.863849,0.754715,0.570916,0.976331,0.24746,0.170395,0.811868,0.190106,0.163979,0.730509,0.411979,0.908875,0.778167,0.587886,0.569881,0.938385,0.61051,0.0972458,0.188846,0.367283,0.681303,0.869741,0.239823,0.392542,0.92938,0.864167,0.745062,0.56378,0.544374,0.406922,0.223871,0.111765,0.438721,0.434572,0.679222,0.77814,0.904979,0.964125,0.240522,0.368343,0.245256,0.00851369,0.415556,0.31352,0.629379,0.503295,0.111274,0.351602,0.609512,0.961928,0.458786,0.695496,0.756686,0.325489,0.369393,0.508251,0.935481,0.496064,0.99718,0.879213,0.756004,0.692345,0.2687,0.300248,0.343255,0.316581,0.667016,0.0986083,0.851569,0.122904,0.765366,0.223774,0.769493,0.198446,0.582343,0.221264,0.213927,0.694496,0.056979,0.51844,0.351675,0.257238,0.292793,0.757432,0.0710714,0.718981,0.444087,0.986965,0.454534,0.35866,0.853776,0.739769,0.436887,0.792883,0.155434,0.829113,0.966892,0.827814,0.842365,0.271006,0.769901,0.788166,0.566875,0.800246,0.0463787,0.686708,0.297345,0.760999,0.0596648,0.657444,0.933332,0.998923,0.269857,0.288105,0.934926,0.921618,0.921105,0.207673,0.256594,0.487159,0.0050078,0.0384642,0.722839,0.290514,0.649823,0.934077,0.557612,0.806022,0.665467,0.129699,0.858308,0.914308,0.890268,0.225361,0.739558,0.411714,0.0327837,0.015393,0.534621,0.299688,0.12759,0.713835,0.691256,0.824017,0.843238,0.0921602,0.363981,0.408674,0.264511,0.463961,0.24259,0.283834,0.00132376,0.255227,0.816238,0.627024,0.137973,0.582674,0.643894,0.889715,0.672135,0.683118,0.882682,0.236254,0.715547,0.34255,0.514255,0.0907134,0.193087,0.798764,0.360611,0.435148,0.854131,0.850843,0.0760037,0.912715,0.609233,0.140952,0.984536,0.0775514,0.892234,0.143869,0.719508,0.119773,0.928783,0.71805,0.352225,0.153557,0.61939,0.126841,0.463117,0.977724,0.810561,0.0679541,0.30515,0.484753,0.955539,0.709106,0.414993,0.609183,0.689359,0.473001,0.653591,0.728909,0.167981,0.371247,0.132994,0.298678,0.162562,0.0566119,0.692755,0.353864,0.165448,0.0764745,0.668338,0.289851,0.00085777,0.0568922,0.146184,0.70073,0.538703,0.809888,0.278507,0.547267,0.85089,0.443991,0.0226698,0.155858,0.240277,0.551485,0.779688,0.959549,0.493994,0.962377,0.196663,0.118053,0.76507,0.093687,0.781797,0.606918,0.959339,0.0537087,0.463447,0.458979,0.32243,0.539352,0.591424,0.600434,0.93137,0.128383,0.700333,0.00755954,0.0581551,0.869876,0.76074,0.878446,0.932359,0.676798,0.941827,0.847917,0.521512,0.292612,0.753744,0.317879,0.903022,0.474938,0.197759,0.226142,0.481714,0.630825,0.359171,0.115807,0.218701,0.601686,0.357808,0.534689,0.660439,0.935738,0.571489,0.660308,0.776854,0.455567,0.853983,0.315512,0.765176,0.138957,0.238908,0.835972,0.0557247,0.742918,0.0294474,0.522747,0.394661,0.353794,0.0236933,0.198916,0.138519,0.37054,0.179694,0.103432,0.538258,0.0377805,0.845123,0.17728,0.0335891,0.607839,0.990781,0.359037,0.561305,0.620649,0.724905,0.863489,0.969263,0.729617,0.723279,0.492902,0.106543,0.891565,0.462207,0.0197868,0.468847,0.0732211,0.0353344,0.978752,0.365797,0.00628972,0.710751,0.774891,0.238715,0.240534,0.247811,0.579967,0.698296,0.79948,0.11862,0.977219,0.221364,0.72031,0.0684019,0.636067,0.0273702,0.291719,0.345137,0.650397,0.671117,0.512828,0.855914,0.0291233,0.50739,0.543266,0.223584,0.150752,0.601922,0.0914023,0.131222,0.687617,0.32106,0.292033,0.856201,0.160849,0.715207,0.836907,0.637709,0.983493,0.464077,0.857302,0.113678,0.922786,0.824838,0.0854701,0.503903,0.985665,0.44097,0.939413,0.642324,0.165345,0.385124,0.506641,0.766721,0.512757,0.588851,0.16526,0.0537955,0.528575,0.0775752,0.602581,0.12301,0.903727,0.689646,0.0989816,0.917156,0.366122,0.132889,0.562894,0.0615368,0.0889292,0.289951,0.574631,0.395522,0.701346,0.187813,0.90672,0.399586,0.169105,0.645556,0.103406,0.561173,0.28822,0.193399,0.382782,0.509938,0.90773,0.441338,0.936047,0.682419,0.129601,0.606275,0.977529,0.690125,0.441961,0.558495,0.95369,0.11836,0.973388,0.849768,0.592656,0.92304,0.505388,0.932282,0.253853,0.65511,0.606698,0.924965,0.933618,0.872477,0.116631,5.60284e-05,0.646637,0.376962,0.64159,0.180747,0.127703,0.232796,0.604216,0.609637,0.0837812,0.0526702,0.403337,0.797151,0.498039,0.604738,0.312637,0.291984,0.561756,0.502618,0.660263,0.640214,0.190664,0.946132,0.389122,0.313953,0.180279,0.523135,0.685569,0.664716,0.817931,0.259829,0.507752,0.45963,0.706074,0.555512,0.127073,0.740428,0.46169,0.563448,0.950417,0.848368,0.174135,0.577704,0.634875,0.557109,0.458113,0.2116,0.114732,0.113803,0.568704,0.34746,0.452055,0.178219,0.0195276,0.877556,0.409186,0.875166,0.439671,0.302258,0.0113525,0.564954,0.383154,0.965505,0.685422,0.0654813,0.436929,0.496222,0.883085,0.451536,0.998419,0.0600361,0.123661,0.901519,0.116529,0.854377,0.824516,0.811703,0.568154,0.459681,0.160579,0.78618,0.639465,0.212701,0.610379,0.126729,0.878899,0.416185,0.348916,0.525148,0.24473,0.369915,0.330743,0.957206,0.435705,0.769701,0.229146,0.79341,0.532504,0.129852,0.907182,0.223342,0.449343,0.651302,0.554812,0.596105,0.82948,0.837033,0.287246,0.563733,0.48281,0.940147,0.0152407,0.581211,0.900686,0.568004,0.408965,0.880584,0.487207,0.231759,0.313959,0.494407,0.397845,0.300172,0.174189,0.971765,0.374899,0.30313,0.0192012,0.115137,0.98698,0.132658,0.489084,0.258519,0.786756,0.883602,0.291144,0.678932,0.237908,0.354364,0.0389417,0.92249,0.234836,0.396369,0.90931,0.42828,0.330897,0.231852,0.630386,0.771882,0.586673,0.844531,0.25668,0.601536,0.268805,0.836259,0.935019,0.161486,0.471574,0.814839,0.817528,0.215911,0.100246,0.416015,0.241501,0.832934,0.450977,0.242758,0.0922128,0.538152,0.0867743,0.986716,0.889951,0.614684,0.738872,0.625942,0.816276,0.187508,0.971591,0.598511,0.227791,0.551539,0.0544168,0.790869,0.391682,0.583336,0.858081,0.299165,0.821534,0.460502,0.890308,0.223234,0.718355,0.346016,0.583362,0.161622,0.702975,0.325353,0.629886,0.357983,0.217709,0.789979,0.840437,0.487149,0.371984,0.598293,0.520893,0.615671,0.35824,0.645777,0.547822,0.204493,0.165202,0.910244,0.0706193,0.157625,0.436436,0.749627,0.269244,0.418846,0.865229,0.666106,0.738021,0.164366,0.104853,0.0496089,0.96761,0.71867,0.34551,0.0566292,0.92141,0.520579,0.381654,0.904855,0.283362,0.654458,0.639273,0.448525,0.258152,0.0873178,0.867683,0.684673,0.0771529,0.234118,0.0640913,0.987731,0.140382,0.808893,0.780663,0.255117,0.0285934,0.0545326,0.627068,0.0933536,0.272877,0.300212,0.754552,0.135357,0.912376,0.456152,0.393306,0.026857,0.32325,0.477215,0.143043,0.599502,0.267232,0.543968,0.945633,0.341063,0.738489,0.12858,0.67285,0.792131,0.23924,0.944525,0.952475,0.789226,0.424364,0.948114,0.365893,0.83216,0.0983775,0.58564,0.0849131,0.832796,0.0192789,0.795817,0.345083,0.836537,0.704257,0.86893,0.106262,0.388689,0.515981,0.124,0.335258,0.894353,|0.599536,0.867904,0.247768,0.323147,0.315443,0.43928,0.485262,0.215432,0.858218,0.977904,0.598795,0.527015,0.0502691,0.464182,0.359039,0.28174,0.631612,0.409156,0.254502,0.536905,0.522798,0.238103,0.836702,0.870971,0.746822,0.906808,0.725837,0.343417,0.0470647,0.186507,0.483171,0.677974,0.250655,0.684752,0.288079,0.709303,0.999945,0.486645,0.434615,0.367451,0.524487,0.711817,0.341079,0.294673,0.892744,0.187323,0.354411,0.0598519,0.0329541,0.413808,0.98637,0.836558,0.091269,0.0563328,0.120651,0.507792,0.554081,0.861228,0.88181,0.622807,0.644519,0.337924,0.505503,0.21808,0.821852,0.41911,0.396844,0.0622895,0.343678,0.0103329,0.105622,0.59139,0.589362,0.96724,0.708277,0.668865,0.883569,0.818104,0.946136,0.220139,0.726637,0.917548,0.229228,0.366017,0.714198,0.981589,0.913698,0.506859,0.297031,0.630268,0.938137,0.885098,0.588401,0.130982,0.19827,0.126759,0.257666,0.840854,0.372645,0.760257,0.663697,0.655404,0.826356,0.946408,0.00391358,0.186714,0.349432,0.8322,0.726895,0.708446,0.330269,0.260501,0.468095,0.413058,0.165103,0.470695,0.292663,0.599165,0.2216,0.0643132,0.827914,0.116487,0.288587,0.942585,0.176116,0.464166,0.157551,0.317457,0.895987,0.977226,0.278026,0.155517,0.667258,0.441303,0.800307,0.322314,0.0329733,0.273055,0.331287,0.184125,0.0777274,0.410177,0.258959,0.00509876,0.229432,0.814671,0.0364414,0.254821,0.107192,0.378587,0.703347,0.338052,0.510528,0.977149,0.947952,0.415188,0.313886,0.380354,0.150291,0.326283,0.342898,0.573623,0.486139,0.860361,0.0654206,0.891578,0.620441,0.700264,0.773763,0.425718,0.248254,0.46639,0.562502,0.933143,0.00143915,0.645927,0.664239,0.984951,0.387027,0.494909,0.85454,0.525859,0.674769,0.907806,0.26048,0.490097,0.286543,0.561354,0.343699,0.493543,0.860453,0.471509,0.519639,0.857427,0.3507,0.980109,0.874083,0.439584,0.187452,0.520996,0.94971,0.498234,0.381207,0.131695,0.368584,0.933044,0.12385,0.795022,0.918572,0.476398,0.278895,0.638653,0.718125,0.887016,0.153435,0.428542,0.69399,0.779102,0.597357,0.734477,0.787723,0.716524,0.326619,0.778163,0.359416,0.063522,0.799249,0.408085,0.547122,0.424078,0.51936,0.322771,0.626633,0.656775,0.88187,0.15331,0.619494,0.591134,0.660172,0.0994093,0.569851,0.376789,0.949,0.0251641,0.308409,0.377912,0.508027,0.615509,0.487419,0.749781,0.90975,0.0978457,0.276135,0.969807,0.948111,0.030919,0.25904,0.431442,0.12508,0.974468,0.564884,0.650197,0.815256,0.578203,0.660407,0.590333,0.951269,0.56912,0.407705,0.0555135,0.785215,0.858827,0.279628,0.347838,0.0213345,0.0552472,0.325843,0.510968,0.394503,0.70226,0.963411,0.295111,0.595925,0.113492,0.532654,0.701866,0.29198,0.344421,0.373861,0.306595,0.0924456,0.561307,0.10122,0.51006,0.189999,0.382819,0.602103,0.494858,0.761708,0.606002,0.980593,0.924715,0.324059,0.481638,0.244925,0.32477,0.156142,0.550411,0.442868,0.829445,0.956401,0.549631,0.543858,0.263571,0.653947,0.620006,0.606687,0.782927,0.358818,0.0315655,0.201248,0.0506089,0.0503057,0.113647,0.236471,0.306208,0.992604,0.785941,0.507899,0.0918872,0.772905,0.0808592,0.0734664,0.709011,0.857541,0.450741,0.0662537,0.97563,0.368246,0.520721,0.993798,0.192628,0.311069,0.931384,0.250796,0.0405946,0.230415,0.453357,0.511382,0.489557,0.382827,0.582689,0.682778,0.066743,0.680263,0.00667,0.287337,0.320819,0.654915,0.687142,0.855332,0.977876,0.344231,0.600641,0.847755,0.941712,0.787172,0.0267846,0.979372,0.0995721,0.84187,0.842795,0.99657,0.386988,0.927027,0.936556,0.843673,0.930661,0.730514,0.697841,0.149266,0.985994,0.527602,0.312392,0.245303,0.684851,0.0483838,0.2835,0.226914,0.449229,0.970696,0.780122,0.835884,0.398214,0.40226,0.181809,0.262498,0.223711,0.28877,0.837482,0.537143,0.226994,0.433728,0.605486,0.593775,0.855794,0.184768,0.905646,0.517767,0.327095,0.873575,0.260473,0.597983,0.566451,0.356119,0.558396,0.41008,0.922485,0.0528872,0.461719,0.352202,0.695567,0.466209,0.270426,0.847919,0.559905,0.205194,0.0132659,0.718563,0.106405,0.450589,0.571108,0.357288,0.135876,0.19197,0.684664,0.65571,0.437064,0.698398,0.410899,0.88196,0.71162,0.723969,0.715894,0.634321,0.563466,0.392181,0.464718,0.323182,0.20762,0.678942,0.690628,0.435519,0.866651,0.872409,0.426052,0.401813,0.437586,0.942212,0.458132,0.49707,0.1788,0.565751,0.178662,0.0379062,0.288693,0.779612,0.287656,0.818541,0.32563,0.462108,0.302313,0.167175,0.906778,0.650621,0.214246,0.120749,0.160733,0.142774,0.842706,0.491881,0.553585,0.725723,0.708342,0.837219,0.688049,0.35795,0.643426,0.892279,0.480896,0.584372,0.659334,0.612099,0.807799,0.249292,0.751966,0.0518478,0.923922,0.74013,0.807657,0.0127099,0.926165,0.739517,0.737201,0.174275,0.120706,0.422916,0.586443,0.712804,0.845578,0.241461,0.149039,0.952017,0.469541,0.633278,0.537272,0.942839,0.6324,0.0229102,0.577973,0.274647,0.524625,0.417384,0.920017,0.343095,0.505972,0.154646,0.0544043,0.430011,0.550523,0.660035,0.545014,0.562626,0.32532,0.252888,0.662921,0.707072,0.88475,0.614182,0.470641,0.380299,0.658808,0.874441,0.1864,0.531834,0.885837,0.12545,0.883592,0.944472,0.31713,0.412181,0.376979,0.510706,0.143699,0.760572,0.490234,0.488311,0.0423599,0.185167,0.303514,0.745021,0.159825,0.871051,0.152151,0.303707,0.424002,0.399598,0.124924,0.949568,0.557369,0.95662,0.130516,0.893998,0.752283,0.495131,0.0150598,0.378949,0.777772,0.774763,0.672209,0.645308,0.391151,0.365095,0.246523,0.189902,0.0941759,0.935271,0.619314,0.481544,0.529558,0.065487,0.46134,0.0530941,0.210837,0.189369,0.363967,0.609497,0.38009,0.390986,0.0754241,0.0832765,0.869151,0.511107,0.753334,0.326778,0.822265,0.822257,0.452067,0.683882,0.149498,0.512083,0.571367,0.408252,0.760308,0.0357167,0.152421,0.56306,0.632784,0.925162,0.663496,0.104162,0.259749,0.497988,0.897186,0.288442,0.665622,0.239061,0.967924,0.610044,0.552361,0.28399,0.719042,0.468275,0.982768,0.618253,0.942553,0.853723,0.20586,0.20286,0.165775,0.913676,0.726437,0.0425296,0.0876963,0.358223,0.994616,0.0273805,0.761834,0.820176,0.598764,0.546399,0.263896,0.282407,0.0977362,0.0482258,0.801376,0.154712,0.212375,0.85905,0.359839,0.985524,0.0871745,0.683616,0.155154,0.62971,0.54045,0.174489,0.222348,0.0473712,0.74027,0.314262,0.667165,0.524033,0.82242,0.902779,0.00413209,0.180811,0.914798,0.102359,0.225625,0.168206,0.038267,0.382529,0.378879,0.473756,0.53436,0.0125547,0.535769,0.0790796,0.0620483,0.792451,0.240146,0.0779251,0.132933,0.724841,0.427452,0.754798,0.776432,0.68694,0.590418,0.298987,0.960934,0.784288,0.622208,0.3707,0.519914,0.689896,0.704338,0.0133736,0.263921,0.628811,0.310658,0.81844,0.354101,0.502352,0.748498,0.0999206,0.476474,0.235311,0.188386,0.591011,0.611272,0.791705,0.707982,0.805895,0.882287,0.882802,0.782657,0.960235,0.642064,0.665904,0.569634,0.898169,0.606318,0.503769,0.793035,0.7637,0.0209312,0.750538,0.369259,0.360451,0.724812,0.728006,0.876364,0.987579,0.574437,0.283467,0.367765,0.701696,0.276623,0.348241,0.205922,0.799346,0.233303,0.33801,0.463697,0.836495,0.193796,0.412944,0.876329,0.493869,0.0427789,0.905914,0.45177,0.395543,0.528868,0.0069294,0.953422,0.481573,0.0836273,0.517042,0.478464,0.658221,0.656283,0.414489,0.933024,0.788414,0.55592,0.777192,0.264231,0.539575,0.0984383,0.284213,0.654186,0.692016,0.888116,0.141639,0.887474,0.872335,0.175481,0.191823,0.620445,0.482621,0.725059,0.596911,0.900947,0.243543,0.40397,0.526873,0.389311,0.670864,0.846378,0.374228,0.286425,0.740957,0.973523,0.175444,0.810382,0.415289,0.655625,0.17058,0.17111,0.2444,0.994108,0.812657,0.0619574,0.0812819,0.708839,0.470457,0.953804,0.571255,0.448629,0.905975,0.0756561,0.605748,0.822316,0.31971,0.422393,0.00642705,0.357282,0.632925,0.755669,0.0751476,0.500705,0.895374,0.848135,0.139049,0.273712,0.331691,0.82839,0.2365,0.0349342,0.739925,0.388227,0.543243,0.0188718,0.657501,0.942864,0.521321,0.525563,0.326165,0.421094,0.654899,0.556498,0.611944,0.833143,0.623986,0.289017,0.629815,0.600008,0.780471,0.759867,0.0920717,0.40291,0.23954,0.901502,0.13778,0.770135,0.767095,0.615258,0.119125,0.312819,0.299468,0.427545,0.825238,0.0712337,0.95996,0.330968,0.175234,0.682742,0.756379,0.844826,0.548634,0.421234,0.703642,0.851437,0.638822,0.717501,0.626675,0.318569,0.063347,0.0235977,0.0412628,0.969901,0.826825,0.448218,0.139904,0.445078,0.168602,0.660568,0.888851,0.0239161,0.637149,0.170773,0.54975,0.433576,0.992621,0.940791,0.994207,0.286682,0.400555,0.0370467,0.0160567,0.775209,0.501421,0.452363,0.946049,0.359749,0.739562,0.470075,0.18567,0.197011,0.219287,0.948327,0.138298,0.511401,0.977866,0.328954,0.625419,0.26247,0.606224,0.258551,0.969198,0.500941,0.86192,0.060595,0.632705,0.0380948,0.443078,0.861983,0.788226,0.835725,0.408402,0.298793,0.565677,0.0351388,0.235952,0.780515,0.638829,0.653001,0.503063,0.861068,0.223428,0.263265,0.948766,0.0799056,0.823125,0.353832,0.047493,0.786259,0.987714,0.907822,0.726669,0.466336,0.00232244,0.525169,0.402374,0.750882,0.964478,0.297723,0.931202,0.692238,0.813632,0.979486,0.99782,0.976675,0.644199,0.137305,0.00743854,0.748614,0.815013,0.689733,0.408543,0.71641,0.0637926,0.852382,0.876666,0.170033,0.108116,0.611819,0.744482,0.872569,0.507018,0.225248,0.180147,0.781022,0.869119,0.762804,0.809276,0.258308,|0.00289309,0.523085,0.00575018,0.856124,0.641206,0.747669,0.149858,0.470285,0.190292,0.573801,0.0834275,0.251894,0.856166,0.188699,0.581905,0.932047,0.321082,0.106216,0.480993,0.363455,0.48412,0.599675,0.0593353,0.895639,0.413543,0.944391,0.775796,0.612369,0.434077,0.130336,0.565815,0.259794,0.60925,0.911192,0.469053,0.125448,0.50476,0.428518,0.74728,0.583371,0.380507,0.495372,0.356326,0.295054,0.573107,0.0769071,0.438214,0.0394155,0.441003,0.49443,0.713948,0.156052,0.0632998,0.191356,0.914454,0.0482029,0.451258,0.917218,0.342282,0.760069,0.659339,0.137243,0.948655,0.899148,0.19134,0.491474,0.5107,0.522337,0.145377,0.536449,0.341439,0.44407,0.598834,0.120003,0.717808,0.685677,0.260816,0.211461,0.727111,0.41996,0.782287,0.776671,0.3539,0.98552,0.290025,0.138422,0.874133,0.781375,0.0793976,0.45006,0.941025,0.764346,0.648374,0.42586,0.275368,0.324867,0.196378,0.406587,0.979681,0.701629,0.637826,0.338179,0.870751,0.340587,0.91542,0.0354353,0.017657,0.937178,0.15998,0.423033,0.977545,0.859201,0.387884,0.950979,0.92181,0.178383,0.156668,0.617401,0.758267,0.477497,0.22057,0.29623,0.0214926,0.286802,0.24516,0.799623,0.643298,0.48006,0.907796,0.523105,0.0746214,0.722946,0.923609,0.918126,0.166809,0.709933,0.755062,0.0859632,0.54542,0.41059,0.692013,0.95354,0.288682,0.42053,0.0750408,0.618179,0.697017,0.719935,0.584033,0.757615,0.705178,0.649749,0.391566,0.269014,0.393107,0.811817,0.0760214,0.794035,0.929209,0.2167,0.58802,0.447379,0.996359,0.833165,0.97562,0.125864,0.753561,0.7063,0.616816,0.465126,0.5521,0.974648,0.0522162,0.827678,0.820118,0.784963,0.987443,0.125766,0.318421,0.989059,0.3907,0.85619,0.0271814,0.740312,0.748226,0.465787,0.184159,0.0725856,0.261388,0.649086,0.827491,0.11158,0.925652,0.0438541,0.0373595,0.788694,0.163719,0.584717,0.626986,0.640398,0.174075,0.463592,0.228726,0.51157,0.988519,0.805722,0.186375,0.410608,0.0840372,0.898103,0.166233,0.971504,0.370505,0.255637,0.832871,0.613212,0.984414,0.525354,0.263448,0.987477,0.772025,0.164537,0.744914,0.595676,0.707033,0.119927,0.625773,0.956678,0.451258,0.553252,0.229642,0.632157,0.319303,0.222676,0.185254,0.587388,0.706049,0.951045,0.794295,0.445557,0.923572,0.035376,0.281295,0.674649,0.985677,0.383885,0.450803,0.563656,0.294186,0.422919,0.137112,0.62734,0.0618187,0.992601,0.474397,0.178465,0.0305173,0.827285,0.393562,0.137251,0.35296,0.452105,0.461861,0.249562,0.124431,0.416102,0.353424,0.0385624,0.915329,0.875653,0.983709,0.0540909,0.00804067,0.108378,0.458576,0.998023,0.0206696,0.611802,0.133089,0.249873,0.430316,0.253467,0.781713,0.174586,0.261901,0.315066,0.647502,0.985389,0.176469,0.418308,0.417192,0.0338115,0.607505,0.0624123,0.510386,0.0705287,0.964315,0.263694,0.845302,0.0377129,0.198093,0.644536,0.0664437,0.0456337,0.669407,0.335539,0.528551,0.668874,0.531911,0.116306,0.813571,0.548199,0.856907,0.877481,0.623574,0.425257,0.432754,0.261882,0.799866,0.0544496,0.161377,0.255988,0.514916,0.104514,0.196923,0.203218,0.285435,0.49592,0.505544,0.576972,0.537439,0.707118,0.418692,0.970707,0.380742,0.0304336,0.767745,0.600182,0.914568,0.577818,0.241284,0.238322,0.987299,0.181002,0.113819,0.397762,0.194434,0.567437,0.527811,0.791426,0.161711,0.605631,0.270321,0.444799,0.511824,0.687279,0.0154176,0.153334,0.154817,0.268698,0.938151,0.736577,0.513681,0.844037,0.638699,0.0988643,0.317396,0.987351,0.613608,0.879244,0.65488,0.319196,0.662626,0.30739,0.76636,0.758884,0.683188,0.43914,0.133255,0.27118,0.0653237,0.425027,0.431174,0.350552,0.115471,0.600948,0.501897,0.955492,0.429128,0.872182,0.427042,0.999084,0.338751,0.0514641,0.168652,0.862356,0.364746,0.549155,0.468945,0.206393,0.128622,0.0161744,0.745917,0.442313,0.340211,0.427508,0.809618,0.0434133,0.166388,0.919806,0.451035,0.203755,0.39378,0.207443,0.417296,0.822584,0.660847,0.37264,0.15696,0.5778,0.211913,0.0914357,0.166867,0.80713,0.241794,0.613538,0.247208,0.204411,0.887794,0.179116,0.759005,0.513097,0.492056,0.151345,0.0774454,0.329904,0.0847713,0.073227,0.0226527,0.0131367,0.48221,0.77928,0.742956,0.129402,0.076663,0.500022,0.694509,0.153305,0.431921,0.637602,0.346244,0.266894,0.508443,0.599558,0.860236,0.499399,0.785848,0.643788,0.268586,0.47303,0.967707,0.162432,0.965662,0.113669,0.110436,0.409862,0.208162,0.64549,0.483937,0.0620871,0.516056,0.357099,0.895778,0.214189,0.774125,0.470416,0.224142,0.0631499,0.587432,0.293253,0.266166,0.213629,0.999483,0.833534,0.203365,0.281756,0.523742,0.348529,0.508368,0.228717,0.090876,0.634485,0.954129,0.306465,0.477379,0.276109,0.062719,0.480121,0.332165,0.550839,0.587132,0.409232,0.882985,0.567149,0.748498,0.217616,0.845886,0.405817,0.188846,0.510651,0.857897,0.130297,0.323621,0.424851,0.484757,0.586661,0.861581,0.0875877,0.118079,0.00227243,0.105266,0.979411,0.499761,0.486132,0.730532,0.295761,0.895236,0.934655,0.772632,0.51939,0.969136,0.940912,0.0694068,0.266507,0.787815,0.84723,0.319024,0.771903,0.347431,0.0858621,0.228423,0.311051,0.891286,0.978914,0.514525,0.419134,0.309887,0.719055,0.412266,0.388024,0.862392,0.502922,0.614374,0.66344,0.0201407,0.798082,0.942623,0.262394,0.501809,0.00779927,0.442659,0.262431,0.748278,0.752819,0.745045,0.308355,0.0721785,0.177437,0.300144,0.234811,0.556541,0.68722,0.191811,0.911804,0.439433,0.201058,0.303976,0.28747,0.85852,0.286959,0.114262,0.415446,0.323288,0.935417,0.854779,0.692342,0.788116,0.52737,0.168649,0.977926,0.146835,0.368267,0.818761,0.126496,0.588155,0.459382,0.7552,0.135848,0.431688,0.926055,0.358032,0.535341,0.235354,0.571853,0.530842,0.88411,0.0627875,0.83235,0.673658,0.716269,0.0589555,0.441039,0.166293,0.0757405,0.363271,0.780408,0.239839,0.666995,0.15234,0.133696,0.193716,0.92575,0.16029,0.142651,0.302007,0.369975,0.600477,0.349216,0.0101637,0.801348,0.747069,0.887514,0.507316,0.57451,0.160006,0.557078,0.774802,0.302563,0.885,0.871909,0.706045,0.649924,0.28586,0.690899,0.968291,0.992208,0.60198,0.819554,0.150986,0.21592,0.321377,0.270405,0.151585,0.457244,0.525768,0.34207,0.184352,0.207895,0.651784,0.0446376,0.406376,0.0889809,0.545894,0.058426,0.744922,0.874422,0.979726,0.557515,0.737031,0.590958,0.140069,0.496532,0.0599238,0.299955,0.723744,0.695804,0.75645,0.850594,0.88074,0.161682,0.690653,0.551504,0.195508,0.379661,0.778812,0.111895,0.285686,0.929389,0.834338,0.657351,0.169699,0.376492,0.143655,0.0125557,0.818281,0.833563,0.36008,0.0857685,0.298864,0.19389,0.3292,0.0480973,0.375501,0.207459,0.871567,0.897052,0.424444,0.898234,0.853408,0.0243939,0.743508,0.412261,0.0489083,0.481586,0.662209,0.0889792,0.994904,0.258383,0.985881,0.729846,0.0678622,0.876961,0.366104,0.0317426,0.438511,0.671464,0.803275,0.678611,0.837353,0.695542,0.896329,0.259029,0.817493,0.82703,0.758993,0.762621,0.7066,0.229854,0.339187,0.742125,0.306862,0.906416,0.51056,0.586125,0.824059,0.255849,0.871198,0.426274,0.964545,0.343867,0.741995,0.664789,0.499628,0.39323,0.114146,0.90959,0.422421,0.255326,0.468836,0.306294,0.84542,0.362883,0.576345,0.78131,0.527302,0.67458,0.466927,0.342784,0.992364,0.737039,0.71375,0.481391,0.264915,0.207488,0.584131,0.737346,0.841474,0.479983,0.881247,0.550578,0.83072,0.165132,0.906134,0.361582,0.99873,0.571006,0.913062,0.169844,0.061165,0.574112,0.0208958,0.875059,0.111916,0.563465,0.289572,0.404795,0.866019,0.819902,0.346726,0.412566,0.613285,0.594606,0.551077,0.472563,0.437657,0.873172,0.110951,0.0803859,0.378745,0.0461674,0.972719,0.293509,0.994676,0.142382,0.0359643,0.383333,0.91979,0.491093,0.502668,0.903096,0.711288,0.436802,0.562747,0.276607,0.204659,0.108948,0.790902,0.162138,0.27185,0.622812,0.758057,0.987365,0.0872523,0.667087,0.5766,0.506643,0.826932,0.818653,0.940183,0.402806,0.0479699,0.854519,0.371194,0.09624,0.0379155,0.660222,0.950394,0.333005,0.0159817,0.509225,0.973168,0.245264,0.0123802,0.142082,0.76037,0.38021,0.193387,0.172334,0.235738,0.745924,0.961323,0.901587,0.100991,0.174387,0.435266,0.358218,0.251748,0.639928,0.728065,0.890485,0.608298,0.350613,0.447096,0.221446,0.213335,0.363588,0.873986,0.426892,0.643119,0.688306,0.785759,0.282753,0.734832,0.52307,0.122704,0.6801,0.0397408,0.238315,0.969997,0.978307,0.0687057,0.72684,0.80321,0.903391,0.0884487,0.621356,0.91279,0.83876,0.788239,0.444286,0.475903,0.73681,0.155523,0.285311,0.731719,0.378868,0.189751,0.955712,0.427932,0.491361,0.645954,0.571575,0.148093,0.508912,0.919749,0.183756,0.939196,0.369472,0.955644,0.620812,0.278495,0.752545,0.840129,0.657887,0.580027,0.436176,0.114482,0.572165,0.895562,0.873423,0.674554,0.112073,0.209185,0.0885087,0.949037,0.647184,0.583542,0.65219,0.45472,0.328037,0.849778,0.389191,0.907646,0.856087,0.942856,0.507889,0.916914,0.589548,0.599011,0.476237,0.993011,0.342571,0.427867,0.420888,0.820473,0.623971,0.138685,0.84067,0.16017,0.224045,0.211955,0.793477,0.467499,0.206459,0.193711,0.167625,0.412472,0.891794,0.0839537,0.434447,0.481052,0.614623,0.0675551,0.452501,0.124849,0.404707,0.652453,0.538029,0.0133365,0.882799,0.203224,0.744136,0.477096,0.0329563,0.612058,0.282375,0.146388,0.110146,0.879401,0.87903,0.182171,0.481961,0.312313,0.241831,0.159079,0.376495,0.00185788,0.329959,0.156647,0.384256,|0.552857,0.608931,0.0131868,0.497454,0.906404,0.537289,0.943262,0.242999,0.33419,0.781015,0.00861955,0.551874,0.721845,0.662878,0.577856,0.828664,0.978866,0.399127,0.626494,0.844264,0.445442,0.877133,0.907579,0.804001,0.585567,0.910256,0.878998,0.254348,0.302181,0.778181,0.820036,0.106984,0.243635,0.363179,0.541766,0.358806,0.884045,0.141385,0.783372,0.877117,0.103837,0.424482,0.913384,0.438185,0.522108,0.948673,0.703706,0.738983,0.00679588,0.96106,0.84791,0.56506,0.713482,0.0517723,0.309211,0.58121,0.149867,0.499675,0.578301,0.52032,0.621211,0.423954,0.437717,0.172406,0.134165,0.238316,0.900749,0.466277,0.0199063,0.243345,0.487052,0.844832,0.90292,0.50637,0.887344,0.00707197,0.467893,0.148879,0.776724,0.371665,0.639775,0.641546,0.512893,0.752482,0.604876,0.651849,0.565512,0.81499,0.75453,0.452982,0.0669344,0.497481,0.733313,0.385124,0.807558,0.981126,0.678561,0.569182,0.549652,0.515629,0.494124,0.00331104,0.943535,0.813883,0.12356,0.840369,0.579972,0.898191,0.924412,0.655386,0.950443,0.915794,0.84913,0.688147,0.895348,0.998535,0.610718,0.483758,0.376481,0.410158,0.586158,0.420084,0.386186,0.235449,0.171843,0.12722,0.917186,0.441832,0.620076,0.138313,0.970706,0.366896,0.243691,0.817633,0.819175,0.163167,0.816896,0.669274,0.331337,0.55215,0.604665,0.150813,0.457498,0.439432,0.165947,0.869827,0.603861,0.919533,0.962101,0.805829,0.837553,0.256838,0.498178,0.473936,0.653498,0.606554,0.541316,0.151073,0.366809,0.142887,0.138267,0.235494,0.947054,0.150647,0.734097,0.0474977,0.400746,0.459761,0.825497,0.206394,0.658582,0.259767,0.53824,0.489357,0.108083,0.989765,0.164192,0.0512299,0.497329,0.726027,0.965535,0.886368,0.768224,0.588521,0.981215,0.979018,0.0947736,0.916264,0.566328,0.81559,0.671321,0.457428,0.453521,0.507414,0.31006,0.31366,0.156993,0.868966,0.354903,0.781902,0.199734,0.201507,0.855261,0.109777,0.379138,0.947983,0.481011,0.66544,0.585735,0.871535,0.668643,0.394138,0.594807,0.434786,0.206811,0.743435,0.893089,0.207033,0.878585,0.263554,0.196284,0.438179,0.445227,0.118654,0.609747,0.427573,0.452225,0.453653,0.437165,0.643693,0.908062,0.63259,0.59313,0.79654,0.0320508,0.339057,0.86049,0.541625,0.213767,0.0310495,0.887767,0.157465,0.190722,0.0543631,0.250523,0.0947502,0.229864,0.0518801,0.919019,0.960714,0.104468,0.115444,0.750921,0.407556,0.456031,0.549799,0.170716,0.74688,0.380641,0.62796,0.195673,0.876728,0.117205,0.397192,0.205243,0.120947,0.0318614,0.300712,0.978015,0.628687,0.0201115,0.469839,0.880687,0.865118,0.324074,0.948789,0.201125,0.297102,0.950062,0.157339,0.36409,0.665748,0.233029,0.728708,0.00197506,0.0997513,0.75188,0.72497,0.537743,0.636595,0.275053,0.61789,0.948379,0.324355,0.82327,0.834418,0.217931,0.491364,0.99983,0.956278,0.505152,0.389413,0.239034,0.902482,0.448833,0.597891,0.651702,0.260023,0.915919,0.394292,0.503793,0.746171,0.337813,0.0958824,0.416467,0.694623,0.238139,0.971879,0.565396,0.3449,0.683784,0.160431,0.769459,0.240438,0.208329,0.308352,0.0963796,0.170111,0.819145,0.911699,0.741182,0.872034,0.270203,0.894602,0.516068,0.267081,0.37549,0.754975,0.475901,0.108137,0.998913,0.609473,0.668599,0.94445,0.55834,0.0467611,0.85801,0.583459,0.177375,0.519809,0.0177534,0.141875,0.397566,0.938558,0.579128,0.809599,0.364814,0.69189,0.518692,0.581193,0.423242,0.585616,0.498855,0.37168,0.118639,0.868156,0.59604,0.0193056,0.664338,0.264736,0.200706,0.0557841,0.795688,0.623029,0.988619,0.812698,0.0642828,0.739054,0.280652,0.903471,0.811708,0.0250204,0.895174,0.102914,0.592607,0.767286,0.304501,0.404114,0.676598,0.970177,0.279073,0.171089,0.725693,0.93477,0.544349,0.617667,0.184441,0.703521,0.637636,0.654475,0.117173,0.0356081,0.426814,0.625388,0.168465,0.550114,0.199995,0.0150989,0.492656,0.513213,0.491294,0.385238,0.839395,0.814203,0.203962,0.919653,0.0717741,0.916331,0.283383,0.430771,0.344792,0.48312,0.311783,0.997317,0.225674,0.233698,0.532431,0.473375,0.951462,0.90598,0.693549,0.17375,0.460364,0.181148,0.0362242,0.954057,0.871379,0.753415,0.607315,0.00422555,0.76743,0.0490055,0.644886,0.748289,0.288828,0.603332,0.999358,0.443931,0.109281,0.572137,0.473143,0.719341,0.580367,0.944728,0.735915,0.599862,0.514345,0.613987,0.0847631,0.367531,0.395192,0.166862,0.77202,0.640358,0.46522,0.654996,0.361148,0.0553545,0.867707,0.0487524,0.366352,0.781063,0.583007,0.703848,0.704905,0.484017,0.054499,0.469058,0.172981,0.244977,0.322571,0.124696,0.250751,0.229383,0.63619,0.142705,0.8894,0.424601,0.814034,0.713902,0.863,0.601981,0.12307,0.17109,0.0545466,0.0865144,0.778137,0.819364,0.311579,0.207927,0.801711,0.713196,0.607755,0.55607,0.158276,0.149869,0.65303,0.104317,0.515523,0.870299,0.987665,0.598156,0.306336,0.578617,0.855873,0.396401,0.292737,0.833849,0.887966,0.560644,0.521942,0.856556,0.147262,0.0856587,0.149768,0.490674,0.621135,0.92223,0.298894,0.244946,0.342839,0.250444,0.608397,0.270535,0.853107,0.0457791,0.567415,0.0920002,0.907472,0.00144529,0.300017,0.490666,0.625333,0.870562,0.501111,0.0645658,0.726839,0.884227,0.0592755,0.659477,0.776175,0.420555,0.426087,0.440886,0.220322,0.478931,0.0178249,0.603572,0.26664,0.454816,0.62791,0.0273809,0.216247,0.102348,0.324114,0.430791,0.365563,0.804456,0.406839,0.257545,0.154152,0.933811,0.37761,0.355867,0.587412,0.949151,0.642387,0.61878,0.433533,0.794862,0.403948,0.0813313,0.0414596,0.00170588,0.103458,0.453811,0.688887,0.450108,0.155547,0.978916,0.161337,0.0698707,0.226698,0.685409,0.0319818,0.0634487,0.154003,0.357335,0.382595,0.292239,0.628475,0.214742,0.455658,0.366271,0.271928,0.144822,0.410612,0.513755,0.0629124,0.799519,0.0826519,0.506615,0.402832,0.195287,0.927316,0.497675,0.797426,0.834719,0.424232,0.98507,0.775744,0.484613,0.934393,0.113819,0.0773844,0.844487,0.377173,0.0967155,0.882936,0.81161,0.129628,0.0754418,0.703662,0.699252,0.989477,0.565322,0.1809,0.0878519,0.0370579,0.608113,0.792111,0.607774,0.801322,0.330992,0.570662,0.781718,0.847744,0.210187,0.0624797,0.871052,0.978122,0.513809,0.946799,0.511938,0.33811,0.336333,0.553234,0.695929,0.605253,0.162898,0.20405,0.718959,0.303459,0.960608,0.0364851,0.269766,0.100097,0.590245,0.959379,0.630377,0.642415,0.355977,0.323383,0.38112,0.376581,0.555281,0.728781,0.601895,0.78812,0.202801,0.52293,0.962816,0.616515,0.0581448,0.671849,0.16138,0.91091,0.474759,0.87755,0.459035,0.595137,0.347159,0.0994551,0.770562,0.00625896,0.265842,0.252624,0.652403,0.401712,0.821721,0.399668,0.869059,0.911226,0.895442,0.290639,0.254722,0.394756,0.740302,0.916652,0.424064,0.651781,0.776353,0.843182,0.457919,0.271381,0.0989679,0.994694,0.420322,0.469512,0.200572,0.4246,0.0853261,0.472734,0.204319,0.69225,0.273472,0.718709,0.730761,0.206706,0.701668,0.876875,0.520029,0.653946,0.0925996,0.831823,0.327961,0.465891,0.460261,0.628165,0.464534,0.158296,0.549782,0.864985,0.284292,0.243306,0.616953,0.773386,0.730806,0.454269,0.0692651,0.917997,0.764486,0.923847,0.199401,0.101575,0.350726,0.230673,0.900253,0.222703,0.394219,0.149308,0.839087,0.508391,0.769754,0.323013,0.0901318,0.434784,0.877808,0.466044,0.320038,0.605303,0.945678,0.454701,0.114904,0.786817,0.00597447,0.928726,0.747759,0.181682,0.779366,7.12872e-05,0.604577,0.290493,0.477904,0.369133,0.854448,0.775121,0.017199,0.792412,0.680858,0.205777,0.0452165,0.722291,0.239194,0.481858,0.694162,0.885832,0.661295,0.44434,0.269603,0.98137,0.28803,0.166856,0.831471,0.467997,0.00549734,0.352757,0.625926,0.660725,0.752159,0.200101,0.619892,0.512977,0.243552,0.112764,0.483686,0.772941,0.101908,0.205708,0.733896,0.944892,0.525723,0.0164821,0.928334,0.865648,0.919128,0.478593,0.459101,0.524812,0.152839,0.386569,0.231152,0.21942,0.156921,0.516477,0.618594,0.54798,0.533072,0.861638,0.140637,0.257796,0.697781,0.56399,0.899004,0.837536,0.290246,0.15367,0.19171,0.605593,0.555733,0.795666,0.89243,0.993382,0.949517,0.305784,0.112093,0.556024,0.0810369,0.512798,0.129332,0.446345,0.248424,0.702028,0.120828,0.326026,0.172965,0.321606,0.164742,0.251871,0.879566,0.0489519,0.17645,0.985125,0.309302,0.194968,0.555773,0.917834,0.609738,0.479297,0.852545,0.777199,0.290123,0.00533038,0.591148,0.054322,0.400481,0.788996,0.988883,0.088974,0.678617,0.238981,0.559398,0.371554,0.320498,0.137702,0.781561,0.476964,0.251789,0.373339,0.0487707,0.631475,0.290369,0.393912,0.766186,0.433296,0.131604,0.318659,0.524268,0.229539,0.531285,0.421972,0.85794,0.250704,0.430396,0.348435,0.246221,0.405157,0.633999,0.524576,0.16911,0.439422,0.711039,0.493518,0.158411,0.706764,0.483202,0.242661,0.636535,0.0939315,0.235867,0.299993,0.281791,0.247765,0.887552,0.599141,0.927969,0.180487,0.341306,0.45303,0.155274,0.715477,0.176698,0.882597,0.63512,0.834964,0.93309,0.443275,0.131587,0.972719,0.143452,0.523494,0.398976,0.935344,0.625077,0.309646,0.712891,0.788486,0.897921,0.679751,0.0938859,0.781101,0.92153,0.243095,0.947157,0.938575,0.179268,0.442611,0.0289865,0.495454,0.789619,0.781479,0.351937,0.857398,0.894836,0.271791,0.281095,0.0834506,0.533754,0.130028,0.620617,0.00507116,0.00190526,0.986419,0.602137,0.455843,0.59893,0.260993,0.978609,0.239847,0.0447539,0.656226,0.394827,0.0883802,0.892407,0.322457,0.466464,0.619387,0.892652,0.647235,0.0847601,|0.542172,0.317846,0.892991,0.256643,0.659996,0.0016306,0.997478,0.538053,0.0233861,0.71545,0.0168349,0.170618,0.718675,0.75769,0.546231,0.694769,0.422736,0.487571,0.976557,0.325517,0.967877,0.106393,0.791538,0.946775,0.47068,0.978661,0.985799,0.109733,0.859305,0.888327,0.797797,0.850634,0.338751,0.480731,0.559017,0.41942,0.561599,0.612001,0.302367,0.0143528,0.0418546,0.458445,0.215466,0.412814,0.518945,0.00184757,0.393596,0.667388,0.94603,0.3005,0.735441,0.946969,0.427316,0.28528,0.827865,0.975205,0.714721,0.337603,0.420276,0.455253,0.858542,0.277032,0.622036,0.797081,0.972082,0.384541,0.390573,0.351268,0.684853,0.672321,0.371231,0.373443,0.312091,0.771577,0.326998,0.150602,0.613952,0.327817,0.0491071,0.163619,0.378943,0.448795,0.357579,0.592662,0.603979,0.881784,0.120643,0.358849,0.410763,0.131695,0.448695,0.0252996,0.634051,0.209961,0.97576,0.640257,0.333094,0.191519,0.97705,0.122321,0.69103,0.453707,0.0999755,0.654363,0.335825,0.479269,0.00645703,0.774022,0.362062,0.606671,0.481193,0.26258,0.715388,0.565694,0.0710002,0.259065,0.316203,0.630539,0.691341,0.507181,0.573497,0.0473647,0.204067,0.475788,0.555423,0.0973725,0.189821,0.910653,0.400713,0.652841,0.489942,0.763954,0.975187,0.371066,0.260257,0.0211434,0.37424,0.498384,0.468588,0.848603,0.543968,0.641229,0.51861,0.396144,0.653874,0.405557,0.773511,0.29969,0.0722228,0.0173936,0.347353,0.873331,0.445526,0.902529,0.367093,0.135305,0.171605,0.211398,0.693368,0.78328,0.980691,0.155949,0.509876,0.719822,0.80305,0.558386,0.0840352,0.180415,0.488222,0.442605,0.477641,0.657843,0.157316,0.959425,0.556921,0.0766158,0.250926,0.165003,0.605246,0.877318,0.24056,0.776669,0.0539843,0.728862,0.249865,0.126337,0.844287,0.34378,0.0876286,0.442575,0.641955,0.743361,0.0120261,0.826219,0.355831,0.152435,0.0939657,0.763,0.138471,0.359878,0.288399,0.93392,0.0980287,0.616527,0.444743,0.173184,0.082972,0.423513,0.731916,0.99781,0.60134,0.0692368,0.292171,0.464511,0.806043,0.800763,0.446676,0.834735,0.497689,0.612491,0.611363,0.475649,0.954986,0.784922,0.268358,0.0823682,0.356113,0.228979,0.999435,0.468724,0.64669,0.113847,0.656774,0.92059,0.0551329,0.93884,0.205397,0.247593,0.0443885,0.149889,0.279595,0.0303983,0.0741955,0.45273,0.4494,0.910383,0.867213,0.0885183,0.897278,0.261128,0.533236,0.68858,0.0372284,0.423001,0.217587,0.0868354,0.852247,0.369119,0.613156,0.2874,0.0311649,0.961442,0.456521,0.436539,0.12554,0.59186,0.487394,0.105774,0.351831,0.381743,0.921229,0.665475,0.936603,0.0954512,0.96546,0.405931,0.883375,0.780957,0.597968,0.68499,0.989537,0.0418333,0.256175,0.499717,0.745829,0.775003,0.201205,0.821704,0.151397,0.201893,0.921998,0.588036,0.025326,0.500409,0.718391,0.157723,0.099021,0.705766,0.0869861,0.326169,0.293583,0.503724,0.316322,0.292854,0.0746508,0.378629,0.319707,0.642181,0.188309,0.616806,0.725609,0.0915764,0.226393,0.515524,0.508901,0.2276,0.925676,0.595829,0.672568,0.0334301,0.110161,0.71918,0.486396,0.398625,0.175008,0.722054,0.309093,0.0329714,0.800365,0.564189,0.955771,0.746743,0.1446,0.433063,0.44607,0.837648,0.0710936,0.967246,0.865393,0.425902,0.679618,0.813388,0.990573,0.476657,0.10779,0.910685,0.656292,0.541237,0.721373,0.314245,0.772777,0.318214,0.904622,0.238009,0.732691,0.300844,0.854494,0.663329,0.150909,0.508479,0.42306,0.19166,0.131562,0.638509,0.868692,0.275589,0.0177531,0.89046,0.728618,0.580015,0.354987,0.63825,0.417035,0.0599433,0.0347461,0.460183,0.953907,0.600768,0.344749,0.0858835,0.048947,0.356112,0.88904,0.264219,0.042731,0.415381,0.641485,0.202822,0.489721,0.555545,0.219743,0.579042,0.822315,0.0308228,0.717377,0.516626,0.572123,0.860611,0.599341,0.822608,0.430787,0.812726,0.128888,0.939001,0.343953,0.0168066,0.48573,0.750795,0.365358,0.626079,0.670921,0.984586,0.426638,0.330964,0.703453,0.638657,0.935023,0.512785,0.00959229,0.767809,0.0251877,0.22368,0.196808,0.230773,0.551151,0.297271,0.572164,0.911764,0.209604,0.410031,0.580157,0.533636,0.0607116,0.331682,0.916633,0.654668,0.474804,0.454921,0.755688,0.153989,0.0862846,0.40578,0.102379,0.4429,0.473614,0.578504,0.953576,0.815507,0.966676,0.539666,0.613186,0.875814,0.730456,0.261566,0.935645,0.973031,0.692092,0.652738,0.763092,0.0452272,0.626821,0.570997,0.152225,0.526353,0.35289,0.0536941,0.446506,0.184589,0.705164,0.99812,0.443796,0.505352,0.253783,0.492429,0.488329,0.358654,0.982998,0.741957,0.777585,0.997821,0.266714,0.656064,0.80454,0.588288,0.628334,0.384024,0.54699,0.479406,0.79989,0.999289,0.831995,0.177363,0.572485,0.83154,0.421534,0.139151,0.198784,0.906698,0.173911,0.319982,0.230544,0.555922,0.999384,0.0628604,0.851315,0.249269,0.37637,0.0791493,0.620063,0.039282,0.259605,0.240596,0.414923,0.565154,0.245169,0.813635,0.452941,0.260178,0.369897,0.511768,0.460027,0.39921,0.612686,0.63201,0.771562,0.249285,0.341728,0.280575,0.0424583,0.668606,0.557039,0.897302,0.402568,0.419762,0.999016,0.305436,0.143652,0.574238,0.468286,0.103829,0.538668,0.273792,0.203363,0.158062,0.328045,0.0884238,0.650159,0.930324,0.977117,0.158324,0.800152,0.644451,0.702759,0.309828,0.511742,0.389193,0.681932,0.251405,0.659708,0.323355,0.266749,0.967264,0.754367,0.260663,0.812788,0.1654,0.787073,0.397132,0.588714,0.46343,0.399597,0.627595,0.202585,0.991656,0.514183,0.289618,0.574123,0.108862,0.188193,0.0721648,0.435299,0.198042,0.587285,0.3152,0.614718,0.47725,0.262473,0.0442891,0.72867,0.48735,0.282826,0.29423,0.190763,0.87453,0.374139,0.586772,0.87447,0.280352,0.425089,0.384827,0.880276,0.8043,0.180994,0.738668,0.787745,0.986627,0.170613,0.145482,0.326589,0.269549,0.413817,0.64302,0.980278,0.68418,0.830517,0.67772,0.978689,0.478247,0.836563,0.932794,0.319413,0.260189,0.893788,0.38218,0.743932,0.100504,0.0133341,0.377019,0.791669,0.836852,0.0144156,0.676101,0.864439,0.609117,0.496793,0.401237,0.614284,0.997692,0.541542,0.863481,0.416835,0.767585,0.215745,0.421051,0.795481,0.0213699,0.0713739,0.987891,0.219206,0.145564,0.224564,0.674316,0.590566,0.0104538,0.00602424,0.315557,0.380187,0.997118,0.582886,0.403455,0.0886936,0.0307082,0.577484,0.426976,0.992569,0.0782665,0.677421,0.876491,0.310453,0.9877,0.098121,0.609904,0.936286,0.275628,0.0391051,0.630947,0.00349545,0.153321,0.650344,0.183027,0.579935,0.783828,0.686556,0.194552,0.013719,0.642826,0.856813,0.0185793,0.23963,0.66772,0.549705,0.103038,0.829894,0.874602,0.142235,0.0411261,0.89617,0.190618,0.494006,0.759094,0.892866,0.0254241,0.696173,0.4231,0.847891,0.787957,0.477443,0.336468,0.333719,0.553125,0.972028,0.991912,0.479298,0.952088,0.985776,0.974104,0.782018,0.122652,0.348764,0.982934,0.167047,0.625452,0.192364,0.217845,0.290326,0.140468,0.358527,0.712071,0.947358,0.716318,0.748912,0.501842,0.253833,0.973705,0.842844,0.670787,0.818659,0.429819,0.074935,0.316738,0.214506,0.707409,0.197628,0.478103,0.32833,0.159375,0.0500395,0.316738,0.86686,0.39922,0.600916,0.547063,0.281769,0.559092,0.886011,0.181117,0.715408,0.647711,0.0700833,0.0771233,0.925348,0.764937,0.235969,0.826326,0.46241,0.304154,0.0369852,0.245565,0.785991,0.168728,0.00181925,0.625045,0.0435511,0.96456,0.527207,0.731359,0.790632,0.572972,0.727371,0.840658,0.36007,0.169871,0.258569,0.753038,0.194295,0.86417,0.289322,0.931069,0.408926,0.312195,0.144598,0.913265,0.181469,0.576579,0.192862,0.479607,0.675778,0.443742,0.101095,0.389456,0.58285,0.994242,0.235513,0.785455,0.904783,0.0351582,0.0934392,0.327179,0.970029,0.833955,0.317645,0.562526,0.635839,0.154473,0.548645,0.186455,0.276072,0.335525,0.750112,0.686704,0.297465,0.808326,0.822083,0.655274,0.367938,0.661984,0.373144,0.526085,0.172429,0.718541,0.0927714,0.500197,0.588926,0.26995,0.620142,0.968872,0.34737,0.171267,0.0472243,0.769624,0.0200543,0.402571,0.0999869,0.961117,0.21513,0.0524172,0.325325,0.93691,0.889452,0.681141,0.251891,0.333507,0.110643,0.682914,0.679333,0.201449,0.175338,0.935504,0.287696,0.13815,0.809956,0.516407,0.0178518,0.666707,0.0956302,0.963604,0.804679,0.338006,0.331046,0.421465,0.73577,0.997127,0.201145,0.247254,0.906132,0.821988,0.254128,0.940202,0.746675,0.22067,0.317856,0.633398,0.700036,0.257476,0.739918,0.184406,0.821561,0.150793,0.520425,0.272907,0.598841,0.0246834,0.640521,0.602073,0.276888,0.515151,0.370015,0.678161,0.741475,0.754964,0.500677,0.635996,0.00613886,0.321262,0.653002,0.403886,0.302777,0.0716816,0.225378,0.0303536,0.656393,0.495729,0.587923,0.278031,0.960055,0.527818,0.336303,0.595608,0.962702,0.187884,0.771957,0.209356,0.332888,0.025956,0.339185,0.107208,0.900381,0.460235,0.827065,0.208575,0.523713,0.432999,0.894551,0.294754,0.415051,0.372402,0.589732,0.588674,0.286416,0.623452,0.919049,0.494737,0.115123,0.384196,0.788794,0.0164711,0.269835,0.809174,0.0647801,0.491064,0.477118,0.0174981,0.267794,0.407248,0.093954,0.283093,0.151825,0.739238,0.761804,0.349307,0.0981186,0.462864,0.535658,0.526542,0.769811,0.586408,0.105335,0.376243,0.130214,0.0416219,0.177354,0.835173,0.572475,0.684348,0.146214,0.308369,0.410268,0.961855,0.702436,0.135578,0.074347,0.900799,0.634717,0.0475677,0.983289,0.575847,0.890144,0.464931,0.72481,0.185871,0.357641,0.284405,0.0250296,0.939605,0.526412,0.2496,0.716502,0.549074,0.951384,0.440916,|0.0689986,0.169215,0.192654,0.0362566,0.262774,0.740277,0.0124023,0.194693,0.649015,0.577545,0.217555,0.175096,0.588635,0.652072,0.403739,0.998585,0.402187,0.501108,0.604704,0.0521504,0.539696,0.937332,0.658422,0.216888,0.369617,0.639216,0.270038,0.625777,0.839102,0.150963,0.34705,0.132995,0.0883195,0.667766,0.59787,0.596999,0.873629,0.882761,0.884292,0.882288,0.611801,0.982533,0.0936576,0.426281,0.835405,0.625062,0.928954,0.0747725,0.366807,0.837636,0.229636,0.672452,0.282709,0.277133,0.848129,0.844561,0.425676,0.853446,0.249518,0.406965,0.946327,0.338553,0.931087,0.678644,0.124152,0.461134,0.649652,0.0218413,0.842365,0.746405,0.228008,0.843346,0.247679,0.707132,0.364451,0.173753,0.993234,0.183085,0.462943,0.629693,0.980987,0.787723,0.981326,0.705899,0.0812913,0.707228,0.354606,0.383574,0.645725,0.9417,0.775733,0.684463,0.513166,0.432027,0.761967,0.36805,0.708652,0.575865,0.483231,0.85643,0.971302,0.495295,0.687409,0.180329,0.360267,0.603089,0.0619662,0.299486,0.80368,0.985963,0.727399,0.100654,0.113544,0.233878,0.787414,0.872493,0.671194,0.330862,0.993225,0.32998,0.945958,0.742871,0.346767,0.57006,0.719682,0.212555,0.952161,0.562575,0.92291,0.0730902,0.938574,0.817519,0.28337,0.552162,0.755961,0.290304,0.758333,0.0564144,0.674307,0.492038,0.52113,0.951306,0.543995,0.63672,0.683201,0.900742,0.812736,0.0734562,0.245042,0.00829536,0.340579,0.316293,0.0378482,0.243164,0.967683,0.853217,0.985329,0.365286,0.325772,0.437846,0.184287,0.761776,0.976146,0.862018,0.843567,0.38715,0.243026,0.54991,0.875076,0.0102584,0.52482,0.0857173,0.789836,0.385706,0.206222,0.0293676,0.228249,0.264375,0.23481,0.155053,0.464612,0.399642,0.155742,0.849756,0.856019,0.182554,0.501467,0.68129,0.314464,0.488593,0.658826,0.759185,0.584267,0.618957,0.55504,0.720929,0.901987,0.388531,0.948394,0.331635,0.0181361,0.520566,0.345455,0.462873,0.895603,0.753254,0.00597274,0.474532,0.956517,0.827265,0.094667,0.00607872,0.71426,0.688702,0.898367,0.636682,0.0971875,0.369983,0.485741,0.13868,0.758011,0.378953,0.463197,0.722105,0.279814,0.0268939,0.391865,0.0724978,0.577016,0.564348,0.505085,0.770383,0.994871,0.606234,0.524768,0.193922,0.783664,0.396016,0.775991,0.851011,0.259458,0.0411473,0.611781,0.958321,0.717399,0.151672,0.173423,0.253596,0.928979,0.616637,0.68342,0.386726,0.858359,0.121656,0.0610436,0.0369002,0.530841,0.374178,0.598265,0.338715,0.622121,0.102747,0.92272,0.942614,0.596077,0.426205,0.656428,0.941436,0.290211,0.751369,0.838294,0.797811,0.476668,0.816808,0.158581,0.94601,0.144401,0.832337,0.509086,0.62656,0.963117,0.0522972,0.453741,0.264852,0.694578,0.492006,0.346328,0.970924,0.274705,0.956027,0.0171564,0.935239,0.343809,0.427124,0.851218,0.1829,0.0874171,0.539912,0.35813,0.0852488,0.89831,0.926198,0.55838,0.486259,0.548371,0.19116,0.351312,0.487391,0.0813115,0.62376,0.73997,0.49698,0.0630274,0.621579,0.950612,0.868036,0.288188,0.198517,0.418224,0.933736,0.552327,0.776645,0.14657,0.864712,0.823366,0.908673,0.626427,0.39981,0.448611,0.662278,0.8466,0.915522,0.130448,0.756324,0.0429003,0.229825,0.600668,0.394361,0.837675,0.937795,0.259597,0.556985,0.226905,0.607761,0.962328,0.165821,0.651487,0.331391,0.253134,0.469739,0.425743,0.588584,0.996867,0.0374088,0.0927677,0.229514,0.462432,0.703639,0.397032,0.644105,0.830587,0.733479,0.414935,0.314253,0.700907,0.954645,0.665783,0.803406,0.146626,0.329456,0.975775,0.659124,0.766821,0.271058,0.0267701,0.0826212,0.124399,0.475532,0.714632,0.607351,0.330753,0.659851,0.611668,0.594278,0.0273605,0.0969677,0.902039,0.852257,0.259829,0.660767,0.661868,0.390342,0.980718,0.378207,0.519512,0.589308,0.691269,0.895373,0.49873,0.791486,0.300684,0.562022,0.679857,0.136415,0.92451,0.979141,0.338378,0.453746,0.709217,0.0563577,0.471831,0.148327,0.959029,0.298486,0.226731,0.888321,0.170002,0.89347,0.857812,0.682274,0.716957,0.755491,0.707116,0.509987,0.620214,0.501483,0.762408,0.202589,0.308626,0.733169,0.133141,0.478825,0.165728,0.213655,0.574182,0.0939801,0.0501254,0.186187,0.838582,0.811588,0.188305,0.909867,0.0343075,0.346197,0.79444,0.630111,0.21671,0.458697,0.580447,0.172991,0.632845,0.507332,0.532316,0.0913748,0.367179,0.285863,0.0262163,0.20866,0.52874,0.683488,0.204373,0.215267,0.287035,0.795919,0.309579,0.943687,0.342445,0.0693725,0.624146,0.00173843,0.261132,0.405379,0.215541,0.355679,0.49195,0.584921,0.790154,0.497238,0.370493,0.471074,0.850508,0.876347,0.487803,0.641313,0.933261,0.39241,0.813802,0.670855,0.127945,0.331398,0.0509225,0.216813,0.493233,0.700777,0.429269,0.0340424,0.124307,0.748929,0.738146,0.602833,0.570233,0.872855,0.740293,0.526153,0.00257897,0.310605,0.507261,0.79368,0.870566,0.0582412,0.617564,0.853483,0.803996,0.653844,0.916314,0.140742,0.188559,0.185906,0.112539,0.142476,0.718324,0.745623,0.208453,0.656661,0.469016,0.724552,0.822639,0.131328,0.29254,0.999364,0.962196,0.563151,0.637101,0.00469142,0.76515,0.0899486,0.28064,0.576098,0.594525,0.823622,0.35122,0.511905,0.654214,0.61154,0.146041,0.371213,0.875217,0.462725,0.765698,0.932645,0.587163,0.599782,0.379366,0.591988,0.4492,0.164395,0.454812,0.978438,0.984926,0.647166,0.881123,0.276302,0.366745,0.298711,0.0528657,0.227478,0.403218,0.435531,0.566524,0.241169,0.202742,0.599987,0.0848197,0.229653,0.0659428,0.528909,0.486835,0.692174,0.00305694,0.145551,0.659069,0.126024,0.597319,0.597294,0.676867,0.735786,0.0668413,0.45602,0.616953,0.695113,0.642435,0.814628,0.62255,0.0997186,0.606609,0.654703,0.334486,0.163415,0.180495,0.196446,0.557894,0.422519,0.594919,0.356755,0.746427,0.455499,0.983613,0.143473,0.960106,0.13461,0.424607,0.880618,0.179431,0.418513,0.676586,0.44945,0.768065,0.121182,0.580845,0.316649,0.0465816,0.673432,0.645671,0.665843,0.59206,0.545481,0.575699,0.10674,0.123733,0.231182,0.647164,0.734304,0.845624,0.705866,0.193569,0.393093,0.944315,0.30285,0.457036,0.629886,0.735833,0.192678,0.265881,0.025581,0.0362005,0.337242,0.222795,0.126988,0.940051,0.125953,0.403136,0.791593,0.227673,0.628888,0.812288,0.250083,0.163571,0.837049,0.00554025,0.315108,0.994902,0.183283,0.0130152,0.182341,0.201585,0.226865,0.835175,0.259663,0.0107704,0.139696,0.0625001,0.306337,0.479741,0.350452,0.688828,0.670531,0.0930256,0.51235,0.0958066,0.905906,0.0423617,0.779854,0.730968,0.624174,0.871011,0.790084,0.360039,0.182286,0.00901514,0.979797,0.491616,0.731579,0.631077,0.474158,0.943496,0.704831,0.860879,0.0353929,0.187504,0.765518,0.98555,0.679035,0.895536,0.460248,0.569296,0.991953,0.667209,0.497197,0.154291,0.519978,0.285592,0.237752,0.800708,0.723137,0.0894891,0.579156,0.512737,0.346665,0.719773,0.372187,0.943801,0.34109,0.95725,0.762727,0.763249,0.511116,0.0646937,0.851631,0.212928,0.44332,0.0157943,0.0199112,0.821407,0.557167,0.274678,0.483583,0.108312,0.0158485,0.298373,0.250369,0.152804,0.0705627,0.377145,0.509467,0.247097,0.465637,0.243184,0.891033,0.585545,0.833692,0.116797,0.323984,0.268408,0.801344,0.746503,0.909673,0.366497,0.672997,0.609965,0.186292,0.927156,0.584983,0.659481,0.327435,0.18804,0.729681,0.703995,0.483664,0.510337,0.0167686,0.970685,0.443545,0.416105,0.187656,0.084154,0.252357,0.826297,0.625355,0.113073,0.803964,0.170061,0.801896,0.653695,0.19688,0.992468,0.858443,0.628646,0.0929673,0.138636,0.352031,0.366121,0.8394,0.862443,0.175598,0.17714,0.250992,0.10105,0.151362,0.904667,0.818456,0.892995,0.255086,0.161073,0.368539,0.317449,0.236201,0.743918,0.688305,0.255639,0.0736862,0.469452,0.274985,0.27898,0.754058,0.319198,0.765703,0.8691,0.73612,0.120622,0.584716,0.207019,0.50688,0.201739,0.2576,0.886223,0.119547,0.710212,0.072701,0.440309,0.367198,0.797753,0.906478,0.623067,0.653305,0.21269,0.908507,0.236124,0.423183,0.818457,0.769928,0.860288,0.765225,0.922423,0.91172,0.419342,0.518412,0.758413,0.361039,0.693951,0.532582,0.132326,0.0911457,0.424425,0.491136,0.163451,0.420318,0.745809,0.745493,0.594511,0.527305,0.654038,0.889095,0.195535,0.586568,0.197791,0.849638,0.0432015,0.0511839,0.210459,0.409754,0.920921,0.257694,0.919724,0.266913,0.285374,0.486623,0.29171,0.00603586,0.943799,0.323364,0.419159,0.127011,0.765703,0.625695,0.62809,0.8832,0.295144,0.768112,0.545999,0.568762,0.30294,0.399725,0.695969,0.780746,0.828464,0.222329,0.504911,0.276316,0.0563223,0.0714609,0.467324,0.0195885,0.58148,0.950789,0.142152,0.580002,0.607816,0.702361,0.736161,0.582585,0.309605,0.47722,0.996494,0.317316,0.168234,0.724908,0.0685309,0.414496,0.78404,0.093412,0.18128,0.0310367,0.54272,0.266109,0.376042,0.338146,0.562177,0.42812,0.0281371,0.178887,0.111985,0.125441,0.16139,0.170015,0.868085,0.67849,0.569024,0.355879,0.118581,0.576068,0.428171,0.157059,0.733201,0.246188,0.538898,0.831285,0.706376,0.542596,0.921884,0.0342135,0.633493,0.242964,0.945009,0.860127,0.937956,0.521414,0.203735,0.789767,0.231761,0.670851,0.662087,0.18246,0.73974,0.164302,0.913463,0.952154,0.757105,0.843002,0.792093,0.206113,0.386696,0.324674,0.429687,0.416419,0.664648,0.974958,0.255344,0.281408,0.370422,0.915624,0.917877,0.846767,0.976353,0.480617,0.518682,0.00756758,0.276042,0.299384,0.0520561,0.509582,0.400557,0.97243,0.742453,0.188046,0.820242,0.704836,0.73052,0.624339,0.445419,0.714562,|0.19957,0.335524,0.762622,0.0642757,0.656516,0.554121,0.0711111,0.869476,0.822004,0.36784,0.540553,0.240536,0.220538,0.790643,0.874823,0.886037,0.679784,0.81574,0.236239,0.797127,0.30269,0.736322,0.481386,0.759639,0.780506,0.656899,0.98925,0.676864,0.450886,0.618707,0.424329,0.555305,0.630832,0.338184,0.335854,0.802691,0.393358,0.292002,0.104629,0.258837,0.395936,0.962354,0.645819,0.0481356,0.820474,0.941927,0.675918,0.884973,0.384826,0.700742,0.202875,0.0536557,0.298981,0.815783,0.417297,0.825215,0.743554,0.593424,0.450359,0.618539,0.532089,0.977021,0.176419,0.681928,0.810184,0.341332,0.679214,0.103752,0.805352,0.0736839,0.786426,0.471685,0.164484,0.954241,0.795394,0.911993,0.86179,0.872506,0.00335211,0.652882,0.0780588,0.97543,0.232217,0.31555,0.331949,0.12282,0.236542,0.341452,0.341462,0.385259,0.58206,0.879979,0.866681,0.525851,0.727813,0.803419,0.575163,0.537759,0.158479,0.25999,0.624379,0.636862,0.0743189,0.188699,0.957632,0.754473,0.884202,0.267284,0.155351,0.0976834,0.668196,0.638995,0.436525,0.343878,0.0607961,0.311336,0.86817,0.801967,0.546551,0.735684,0.701142,0.598174,0.877973,0.320373,0.0392491,0.649089,0.0456643,0.615393,0.444722,0.78324,0.553152,0.739136,0.534784,0.00260341,0.253588,0.635785,0.543071,0.559693,0.462428,0.10713,0.262984,0.696607,0.54714,0.74113,0.424072,0.965265,0.593049,0.56942,0.48877,0.22911,0.9406,0.105561,0.915443,0.990835,0.693525,0.795627,0.0950859,0.451423,0.15502,0.767661,0.482503,0.181112,0.797231,0.617999,0.260124,0.164127,0.289286,0.638235,0.689984,0.7181,0.959849,0.897572,0.162125,0.386742,0.757863,0.212525,0.149211,0.0380159,0.483468,0.597902,0.371545,0.0919036,0.619708,0.933248,0.595278,0.856977,0.21269,0.758134,0.872808,0.200874,0.982829,0.572544,0.99031,0.00513244,0.339629,0.638808,0.991199,0.113379,0.421169,0.185132,0.196398,0.38246,0.0750235,0.544143,0.748907,0.71817,0.741914,0.623008,0.604598,0.651138,0.117175,0.0197875,0.563838,0.226667,0.206791,0.708611,0.550875,0.695181,0.774939,0.388517,0.778604,0.394193,0.414347,0.463075,0.992037,0.15064,0.543787,0.358791,0.766373,0.270116,0.664061,0.286898,0.603301,0.157293,0.0453722,0.110556,0.817969,0.477286,0.995208,0.902998,0.0363382,0.505601,0.821104,0.610211,0.662305,0.217987,0.992477,0.629421,0.427063,0.910312,0.392689,0.450713,0.892827,0.190402,0.66215,0.146049,0.467728,0.210131,0.982754,0.505022,0.77498,0.951284,0.932186,0.101496,0.373501,0.534013,0.798745,0.801196,0.111935,0.0194104,0.900306,0.229063,0.869456,0.678713,0.452757,0.213969,0.7578,0.792688,0.072235,0.0783893,0.390851,0.974089,0.105513,0.00063467,0.708473,0.149846,0.545051,0.65335,0.219438,0.191558,0.461635,0.287702,0.252987,0.465243,0.714913,0.128282,0.793872,0.637444,0.435116,0.482279,0.45056,0.743865,0.677032,0.569291,0.0565578,0.0717548,0.564493,0.321231,0.599991,0.331182,0.438274,0.766376,0.838796,0.16036,0.330284,0.918342,0.046095,0.259537,0.949188,0.0368736,0.232906,0.943054,0.0475951,0.0132394,0.801329,0.291287,0.510204,0.23845,0.914613,0.095753,0.344147,0.422037,0.714774,0.493009,0.967701,0.494371,0.991799,0.411911,0.114703,0.236239,0.961175,0.188898,0.835063,0.393712,0.163936,0.836756,0.2798,0.48501,0.708072,0.102213,0.372428,0.690042,0.0833765,0.940122,0.293362,0.252286,0.481457,0.727054,0.644121,0.0402392,0.156681,0.47115,0.775818,0.667947,0.273898,0.146863,0.841577,0.170387,0.0183979,0.346757,0.893743,0.846061,0.190886,0.655138,0.592929,0.121692,0.471244,0.877635,0.650809,0.936814,0.131812,0.436162,0.0481021,0.914116,0.374288,0.515875,0.613232,0.272496,0.607421,0.63638,0.44769,0.827537,0.1275,0.574377,0.528847,0.672855,0.650739,0.267294,0.548464,0.483367,0.747916,0.436984,0.918243,0.273097,0.954821,0.244088,0.0542312,0.150969,0.535881,0.402139,0.184013,0.326062,0.776725,0.246958,0.306034,0.853361,0.164997,0.405227,0.449327,0.847535,0.499644,0.163728,0.839009,0.328751,0.647345,0.436598,0.635471,0.260556,0.31985,0.365956,0.795141,0.829258,0.662212,0.757167,0.631154,0.615458,0.382828,0.178628,0.649427,0.145684,0.0493069,0.836893,0.22721,0.0844812,0.239749,0.70499,0.633199,0.368372,0.865718,0.0350958,0.0982333,0.0079385,0.969465,0.188349,0.184177,0.878606,0.294782,0.447763,0.14596,0.343919,0.336963,0.897994,0.790766,0.817806,0.0923045,0.53789,0.279994,0.994413,0.349441,0.563653,0.560756,0.706962,0.643443,0.837962,0.622429,0.359705,0.462506,0.34149,0.888954,0.528147,0.169891,0.0770444,0.485627,0.0309066,0.348587,0.439093,0.775254,0.743756,0.206161,0.434017,0.720303,0.701742,0.683804,0.616326,0.638678,0.226011,0.557355,0.10225,0.0294371,0.804795,0.479259,0.984988,0.806612,0.613308,0.23749,0.770826,0.347313,0.584262,0.77316,0.232039,0.411865,0.0466538,0.737445,0.287296,0.532694,0.350912,0.0419457,0.539175,0.905197,0.523278,0.154086,0.260754,0.797579,0.559729,0.0373381,0.774285,0.112019,0.00862938,0.550085,0.800198,0.0239825,0.147499,0.10123,0.00759739,0.384979,0.250439,0.568826,0.563885,0.932493,0.340569,0.741456,0.792973,0.257887,0.627276,0.696793,0.538007,0.757892,0.273078,0.0514458,0.710571,0.0863785,0.617357,0.256007,0.41562,0.0265307,0.743637,0.0278353,0.536005,0.930374,0.609575,0.882072,0.360949,0.264068,0.022526,0.234613,0.236066,0.469825,0.634058,0.250848,0.929698,0.195102,0.135544,0.367208,0.306351,0.975398,0.497025,0.0752818,0.186089,0.116985,0.188853,0.962365,0.0928532,0.281325,0.521362,0.0831273,0.902622,0.289577,0.249166,0.0749576,0.304655,0.909181,0.786217,0.702404,0.624831,0.233193,0.936956,0.388288,0.545942,0.238294,0.904956,0.771871,0.417847,0.135632,0.45557,0.526625,0.518934,0.320812,0.0753088,0.33615,0.060666,0.638994,0.570247,0.326999,0.811471,0.139541,0.977205,0.783085,0.440179,0.746993,0.0963736,0.583908,0.97078,0.146699,0.166475,0.511157,0.185958,0.385771,0.604101,0.274426,0.149138,0.434995,0.357579,0.4211,0.923585,0.597989,0.86895,0.856312,0.174877,0.218961,0.867068,0.867505,0.991454,0.102575,0.33975,0.136876,0.304291,0.193988,0.528321,0.781669,0.998955,0.884388,0.0674376,0.851811,0.749154,0.239688,0.0789751,0.113169,0.715222,0.817747,0.459686,0.564429,0.725709,0.975384,0.585748,0.0188911,0.314137,0.225241,0.361344,0.333058,0.204601,0.856854,0.953849,0.250886,0.8792,0.417776,0.196141,0.164423,0.547066,0.0844783,0.955964,0.243223,0.467749,0.549583,0.798849,0.168547,0.0287732,0.299372,0.645224,0.814054,0.403403,0.653889,0.637678,0.866747,0.110587,0.096793,0.09049,0.983771,0.777176,0.227719,0.396813,0.0794797,0.454812,0.112257,0.630769,0.816823,0.428351,0.494977,0.531575,0.964977,0.24879,0.73133,0.619309,0.348677,0.989084,0.444816,0.955121,0.471568,0.817178,0.651025,0.542047,0.258512,0.858829,0.103632,0.739961,0.225061,0.0503912,0.509446,0.109921,0.403058,0.716716,0.814875,0.834445,0.614376,0.260083,0.264884,0.410297,0.564352,0.0859379,0.8636,0.974041,0.0827612,0.904414,0.692083,0.703854,0.536367,0.897487,0.335683,0.632721,0.721355,0.235224,0.912546,0.698772,0.542303,0.101442,0.283102,0.709655,0.203765,0.790897,0.495903,0.784602,0.0424039,0.875594,0.800928,0.467762,0.107455,0.0880051,0.134102,0.208539,0.878338,0.390432,0.0341558,0.712741,0.10085,0.385781,0.529323,0.312506,0.504433,0.421501,0.145739,0.101663,0.115495,0.524221,0.194374,0.868993,0.773244,0.593052,0.550832,0.319902,0.285604,0.929754,0.531316,0.801755,0.509681,0.469766,0.487283,0.810929,0.520289,0.393394,0.949136,0.599905,0.177548,0.167037,0.0403693,0.0215156,0.991862,0.387908,0.28326,0.0435726,0.750034,0.683754,0.877078,0.430164,0.845861,0.190808,0.942379,0.210469,0.303674,0.449793,0.0689633,0.0393595,0.968646,0.857853,0.456192,0.218791,0.140496,0.941116,0.836078,0.166019,0.345801,0.962239,0.70271,0.687539,0.969762,0.814083,0.645064,0.323873,0.938712,0.124127,0.432863,0.303154,0.556002,0.994773,0.622237,0.0465719,0.440826,0.391668,0.527893,0.486375,0.181966,0.933095,0.357759,0.605579,0.0590302,0.930362,0.4866,0.297387,0.679325,0.301583,0.984781,0.409381,0.86886,0.998992,0.200594,0.24717,0.675431,0.766232,0.951978,0.875592,0.900711,0.104046,0.327046,0.0468458,0.102824,0.738481,0.092354,0.81369,0.891215,0.978875,0.844038,0.630522,0.0547264,0.0806956,0.829869,0.134082,0.393536,0.3319,0.4267,0.347594,0.325484,0.49552,0.912207,0.211777,0.448695,0.126214,0.592195,0.610012,0.942369,0.396113,0.0696099,0.958019,0.510262,0.13374,0.980278,0.976575,0.761564,0.668648,0.371313,0.666611,0.395645,0.417534,0.164876,0.656594,0.228693,0.2311,0.340686,0.328666,0.0534371,0.501837,0.333569,0.872479,0.258827,0.952868,0.862609,0.256417,0.522115,0.694273,0.420162,0.113752,0.965819,0.906212,0.235151,0.889335,0.486894,0.644033,0.0302336,0.872785,0.931329,0.215685,0.311397,0.338814,0.300077,0.20195,0.607194,0.212691,0.433924,0.0491415,0.556977,0.102121,0.51962,0.342069,0.890019,0.35128,0.479123,0.226484,0.505798,0.962701,0.0395315,0.672991,0.184111,0.144679,0.155555,0.833738,0.653011,0.276086,0.617219,0.271692,0.0381635,0.285182,0.981041,0.504419,0.816306,0.130279,0.800374,0.514495,0.950616,0.793166,0.533939,0.56252,0.0690057,0.226968,0.902886,0.42902,0.509559,0.611869,0.964256,0.0800062,0.827176,0.531163,0.0345584,0.432047,0.164792,0.530787,0.680933,0.54406,0.625693,0.272186,0.559429,0.391973,0.626647,0.682529,|0.797134,0.536095,0.509506,0.548503,0.336823,0.421244,0.640561,0.515142,0.936803,0.293728,0.348681,0.572001,0.655766,0.360367,0.468308,0.161137,0.330885,0.333873,0.0605122,0.956862,0.904011,0.839534,0.783358,0.964481,0.103563,0.777902,0.632501,0.754174,0.692586,0.519272,0.22189,0.818564,0.484835,0.562186,0.805188,0.477561,0.958335,0.0484254,0.499537,0.729865,0.829024,0.623869,0.249161,0.915722,0.677108,0.363651,0.789105,0.00753272,0.464448,0.62687,0.14252,0.629647,0.114935,0.365668,0.778019,0.457576,0.133598,0.733756,0.794258,0.607625,0.615294,0.191385,0.361027,0.688299,0.0522395,0.46356,0.329039,0.272816,0.00311351,0.851768,0.480805,0.72744,0.762084,0.855256,0.595914,0.723902,0.54972,0.39245,0.317616,0.291205,0.456778,0.369844,0.169855,0.370168,0.995616,0.665719,0.803206,0.611651,0.706635,0.199399,0.917892,0.760619,0.271813,0.243477,0.676876,0.111879,0.278894,0.0264015,0.202756,0.182365,0.114602,0.188159,0.958091,0.509768,0.907552,0.023427,0.676604,0.982794,0.880425,0.0399632,0.489489,0.403938,0.423315,0.123646,0.286474,0.152604,0.283979,0.759903,0.742851,0.302421,0.734697,0.0617846,0.0695539,0.657056,0.844836,0.028255,0.163553,0.397612,0.397334,0.0217516,0.715936,0.658705,0.122832,0.810794,0.782525,0.620112,0.891463,0.926964,0.433691,0.0459965,0.261168,0.273115,0.523784,0.578384,0.952517,0.318854,0.251451,0.421722,0.0951968,0.852511,0.844791,0.596871,0.304977,0.97031,0.89163,0.888311,0.728968,0.48939,0.0257927,0.513992,0.0841612,0.225593,0.460723,0.572762,0.262993,0.00221229,0.587311,0.994167,0.478952,0.444584,0.699235,0.0873052,0.895529,0.901191,0.972522,0.732808,0.95158,0.979996,0.33759,0.858588,0.67813,0.965824,0.0613111,0.768675,0.716579,0.655863,0.681515,0.393169,0.456508,0.941851,0.315838,0.827191,0.904712,0.622912,0.220417,0.16286,0.724049,0.379425,0.132964,0.888249,0.544407,0.495576,0.248499,0.71258,0.657048,0.416452,0.866861,0.425779,0.346257,0.899493,0.391442,0.47175,0.364256,0.811318,0.462456,0.290168,0.426327,0.822218,0.376732,0.432127,0.733873,0.244676,0.994087,0.943979,0.944757,0.599637,0.582787,0.560124,0.966725,0.0952232,0.18575,0.321907,0.931665,0.642157,0.674891,0.364223,0.428133,0.433045,0.418574,0.886876,0.610013,0.115828,0.691903,0.345911,0.840244,0.667306,0.137545,0.246704,0.842587,0.25384,0.0162022,0.209307,0.450382,0.160896,0.33555,0.727318,0.325296,0.0488523,0.161816,0.315539,0.283576,0.0104418,0.689649,0.171611,0.164758,0.782166,0.00129008,0.992432,0.296153,0.728338,0.501876,0.234451,0.511075,0.0833681,0.92182,0.830194,0.955087,0.957491,0.699202,0.0305281,0.985285,0.173968,0.50167,0.931631,0.854822,0.175314,0.391234,0.0858964,0.893905,0.61195,0.787469,0.292194,0.834597,0.0100355,0.760746,0.529955,0.308437,0.0449017,0.15638,0.939397,0.89125,0.8496,0.422603,0.0478138,0.582541,0.515014,0.158756,0.830282,0.0162995,0.641081,0.613395,0.922265,0.761239,0.310595,0.969986,0.132751,0.419213,0.318714,0.844966,0.0968649,0.249565,0.506812,0.338864,0.999122,0.302425,0.54975,0.35763,0.426638,0.607705,0.900141,0.518028,0.9745,0.508587,0.737016,0.624164,0.395726,0.926222,0.690455,0.0459632,0.662198,0.187212,0.473372,0.313958,0.745238,0.814799,0.502457,0.471796,0.342864,0.704469,0.604066,0.730551,0.562167,0.596965,0.795789,0.581138,0.781125,0.896514,0.0801536,0.862585,0.866722,0.249907,0.64348,0.951628,0.1027,0.897767,0.209123,0.588748,0.462892,0.871371,0.688988,0.797046,0.157099,0.88209,0.547751,0.854483,0.188042,0.0649815,0.184092,0.128661,0.70175,0.43317,0.685286,0.0516772,0.681795,0.785507,0.359339,0.955476,0.746253,0.675892,0.459024,0.53467,0.410775,0.259222,0.217491,0.14636,0.919091,0.704726,0.0313412,0.995177,0.875023,0.43423,0.826764,0.744288,0.147924,0.736952,0.213072,0.813909,0.899692,0.637052,0.895345,0.989016,0.155692,0.67164,0.999967,0.957996,0.419638,0.999858,0.890584,0.328132,0.379841,0.738593,0.440097,0.999596,0.893604,0.700367,0.190038,0.358509,0.793866,0.718467,0.288275,0.909884,0.29109,0.566401,0.483149,0.139108,0.433585,0.564759,0.277421,0.462042,0.758255,0.125323,0.563842,0.0113869,0.354608,0.796981,0.0643151,0.621688,0.618997,0.773202,0.833131,0.0380363,0.914686,0.349166,0.532295,0.361118,0.887216,0.160762,0.259007,0.532729,0.248854,0.117244,0.346998,0.624988,0.609541,0.646754,0.192669,0.584001,0.94511,0.260077,0.898766,0.798425,0.820765,0.840248,0.738133,0.317985,0.0198197,0.467318,0.351008,0.460242,0.15124,0.999293,0.138344,0.270459,0.824368,0.383579,0.861636,0.861694,0.195007,0.198525,0.616758,0.447182,0.553287,0.511435,0.22482,0.951315,0.471169,0.136905,0.369355,0.764605,0.567769,0.633922,0.430815,0.845741,0.108246,0.192798,0.0998,0.331266,0.938286,0.369351,0.763776,0.128825,0.731111,0.399407,0.834629,0.859446,0.124756,0.900544,0.787439,0.559338,0.907994,0.692974,0.510101,0.0866908,0.432416,0.303824,0.698629,0.682062,0.428159,0.193658,0.0961621,0.507487,0.199405,0.142262,0.43395,0.946094,0.0269869,0.780396,0.328897,0.201839,0.636428,0.787569,0.392272,0.957184,0.388915,0.523628,0.785791,0.661493,0.502574,0.187019,0.769315,0.127097,0.278893,0.460056,0.299794,0.480834,0.358756,0.61492,0.637468,0.523622,0.103075,0.613259,0.810892,0.203164,0.610637,0.48466,0.644769,0.0384181,0.501492,0.0868351,0.7241,0.929174,0.456326,0.541665,0.786913,0.990328,0.0814285,0.490762,0.949264,0.874106,0.535241,0.135602,0.570818,0.706011,0.851348,0.996924,0.367257,0.353549,0.925075,0.575311,0.616894,0.116664,0.0246155,0.830006,0.594301,0.984438,0.633187,0.659995,0.0877758,0.495168,0.00945032,0.439942,0.930959,0.638091,0.541695,0.829015,0.832695,0.723787,0.765421,0.117296,0.963716,0.825054,0.612589,0.71572,0.995201,0.940305,0.662695,0.798798,0.392561,0.25217,0.160564,0.42967,0.304377,0.255146,0.692383,0.967605,0.171729,0.0173019,0.813707,0.0394577,0.949713,0.0496731,0.775324,0.753072,0.471582,0.44036,0.698434,0.108545,0.743717,0.441746,0.661292,0.203477,0.831619,0.68411,0.0645775,0.484779,0.992343,0.834053,0.52749,0.929599,0.0305695,0.21335,0.0187995,0.667661,0.873061,0.583139,0.183051,0.472046,0.162513,0.984759,0.165867,0.685149,0.178596,0.548334,0.296389,0.704798,0.765408,0.667772,0.41757,0.83026,0.537569,0.749126,0.0462448,0.213867,0.524623,0.126509,0.0610735,0.197057,0.337619,0.578097,0.167783,0.498667,0.491318,0.135572,0.0661936,0.805897,0.213919,0.23761,0.724401,0.310268,0.153719,0.403854,0.0366414,0.336821,0.399298,0.662646,0.997134,0.201805,0.386338,0.289578,0.434588,0.685795,0.780538,0.708896,0.435478,0.786406,0.00853127,0.777479,0.304352,0.119997,0.816552,0.332215,0.0711358,0.320407,0.285057,0.678918,0.766679,0.688193,0.950552,0.122467,0.155497,0.0968021,0.724932,0.0417061,0.250565,0.450424,0.582998,0.843579,0.476547,0.92655,0.233714,0.113195,0.313585,0.12556,0.0550601,0.27134,0.165636,0.472251,0.599741,0.363602,0.97674,0.244238,0.183612,0.0881295,0.486523,0.987162,0.19265,0.208757,0.734547,0.21597,0.290439,0.685421,0.458491,0.915467,0.356628,0.586445,0.328627,0.469378,0.144192,0.756732,0.0218818,0.285627,0.811725,0.959335,0.166981,0.219628,0.618403,0.619347,0.826605,0.771193,0.399197,0.271151,0.541759,0.219309,0.74708,0.379522,0.92753,0.472413,0.855135,0.66912,0.912321,0.670004,0.860176,0.797968,0.829446,0.38598,0.118344,0.450935,0.777592,0.965488,0.87012,0.365341,0.668473,0.308512,0.749909,0.4907,0.342594,0.596473,0.677695,0.83645,0.512725,0.642965,0.489918,0.529088,0.198708,0.174705,0.333569,0.592629,0.446458,0.295789,0.309647,0.736093,0.161471,0.631258,0.498391,0.0849771,0.385169,0.0672975,0.362323,0.275183,0.341466,0.807167,0.298172,0.0222933,0.398665,0.0139465,0.876616,0.412097,0.648112,0.762801,0.597955,0.917364,0.432416,0.399085,0.242666,0.633643,0.537483,0.480887,0.416057,0.850108,0.0620468,0.377736,0.544466,0.791735,0.293401,0.760169,0.348852,0.152985,0.0788013,0.747753,0.173159,0.0580341,0.185819,0.271937,0.332487,0.51354,0.867405,0.968481,0.391877,0.645054,0.967688,0.271337,0.914384,0.731718,0.0112892,0.0365363,0.603696,0.468864,0.353383,0.888679,0.267685,0.773186,0.917372,0.402035,0.203939,0.656182,0.0590404,0.63966,0.838848,0.346354,0.664391,0.557529,0.266141,0.544985,0.533297,0.0892702,0.709467,0.0159923,0.462014,0.275818,0.113428,0.788911,0.170366,0.96553,0.0786949,0.336758,0.388372,0.247957,0.648906,0.440517,0.562055,0.953755,0.861745,0.562721,0.888093,0.705579,0.41162,0.670255,0.42821,0.113435,0.313581,0.759611,0.775099,0.372626,0.270889,0.604512,0.47683,0.718896,0.583236,0.194561,0.0630305,0.97939,0.0711024,0.813787,0.0904925,0.692757,0.760848,0.959313,0.976236,0.071286,0.238139,0.830044,0.287149,0.466863,0.713038,0.831941,0.723388,0.319388,0.966569,0.00850499,0.261086,0.509361,0.272649,0.419029,0.789325,0.595036,0.807804,0.165629,0.099792,0.79994,0.955781,0.140294,0.213911,0.344149,0.634994,0.216268,0.640917,0.414749,0.198548,0.121811,0.176002,0.430011,0.959907,0.579834,0.13565,0.0404216,0.679275,0.489073,0.966006,0.91012,0.216709,0.836316,0.877487,0.144048,0.305741,0.141183,0.577555,0.658862,0.54305,0.22938,0.572742,0.132203,0.768845,0.963162,0.86967,0.935144,0.264761,0.386348,0.0409279,0.816799,0.774646,0.322826,0.0513123,0.642439,0.929889,0.411914,0.0694761,0.535316,0.110824,0.283976,0.137836,|0.716455,0.791773,0.57861,0.462839,0.643404,0.0485268,0.109894,0.733385,0.182965,0.527728,0.218999,0.567175,0.0748418,0.231534,0.327738,0.654165,0.893037,0.0738636,0.247155,0.953632,0.979675,0.908686,0.696626,0.888329,0.765333,0.34488,0.559591,0.552652,0.991336,0.452246,0.380374,0.973293,0.51116,0.870701,0.98986,0.994824,0.512283,0.0636401,0.215719,0.809331,0.805664,0.49291,0.338097,0.366008,0.519193,0.680022,0.527947,0.383049,0.872082,0.149015,0.406712,0.739928,0.975418,0.134194,0.138442,0.0934783,0.743216,0.577542,0.295873,0.223307,0.750369,0.239058,0.0971248,0.66347,0.584993,0.951612,0.0372438,0.614792,0.641665,0.316567,0.79729,0.634987,0.00849199,0.0536528,0.36892,0.917411,0.133258,0.575709,0.545596,0.721213,0.511493,0.0359212,0.99048,0.897624,0.00757027,0.00655943,0.784812,0.624251,0.916172,0.504756,0.572214,0.585149,0.0764014,0.0342265,0.597739,0.129356,0.923849,0.952386,0.83059,0.362664,0.212567,0.756181,0.0870509,0.0183477,0.26847,0.961027,0.999969,0.115585,0.262534,0.978572,0.148377,0.354699,0.256009,0.0810817,0.722122,0.775063,0.129957,0.708016,0.928063,0.424222,0.786472,0.467714,0.264523,0.26698,0.956608,0.578446,0.462718,0.990605,0.839305,0.552361,0.261162,0.814187,0.0901508,0.5703,0.49793,0.532349,0.509799,0.537671,0.842675,0.386473,0.91352,0.517535,0.248855,0.575292,0.658636,0.305488,0.104989,0.710388,0.426011,0.211227,0.852597,0.378337,0.785934,0.74185,0.550157,0.313148,0.441321,0.18151,0.0335509,0.914499,0.806417,0.297836,0.673093,0.716202,0.754662,0.408167,0.486953,0.981721,0.486981,0.952735,0.708141,0.23987,0.0252663,0.0560151,0.300748,0.682066,0.522378,0.420797,0.355211,0.80706,0.0645136,0.822493,0.657886,0.554338,0.246036,0.77185,0.6772,0.424541,0.794845,0.576513,0.649962,0.976678,0.760914,0.568613,0.000522673,0.481743,0.977752,0.51939,0.107513,0.495349,0.472837,0.915271,0.0743977,0.233307,0.965408,0.0113125,0.296875,0.894234,0.660625,0.698959,0.463428,0.932653,0.0684499,0.630872,0.166073,0.157903,0.605115,0.701737,0.388152,0.37993,0.325452,0.185079,0.565747,0.178932,0.644851,0.135189,0.9068,0.822499,0.926722,0.0907741,0.809698,0.326709,0.408458,0.994092,0.120732,0.468434,0.360392,0.447145,0.24551,0.911193,0.546872,0.711944,0.625726,0.584126,0.393557,0.0997031,0.151598,0.219102,0.581814,0.0822755,0.349242,0.273444,0.558096,0.198103,0.869217,0.432156,0.146684,0.518002,0.214517,0.510215,0.157714,0.756173,0.353454,0.984713,0.855199,0.937318,0.950533,0.0978196,0.728818,0.882678,0.470371,0.0560079,0.183324,0.598012,0.00671637,0.255147,0.760786,0.614578,0.779225,0.661947,0.0277784,0.539388,0.761034,0.968147,0.269613,0.76286,0.42228,0.945521,0.339147,0.811988,0.369911,0.469695,0.00576115,0.793041,0.470745,0.743224,0.336138,0.710255,0.777516,0.38411,0.73803,0.0823968,0.74854,0.19173,0.622931,0.231178,0.976645,0.359999,0.797538,0.570408,0.169934,0.776043,0.558617,0.520318,0.1173,0.936925,0.196766,0.508914,0.207413,0.464799,0.28755,0.998629,0.116012,0.0680143,0.724302,0.920996,0.0573731,0.93651,0.898505,0.348873,0.685323,0.330708,0.545743,0.0999641,0.485284,0.0974573,0.651716,0.0755686,0.411783,0.284938,0.216236,0.829195,0.61127,0.0658327,0.375408,0.364238,0.599044,0.700856,0.172355,0.768512,0.881317,0.700589,0.421837,0.204251,0.274432,0.0299457,0.717175,0.455589,0.320308,0.494552,0.938194,0.279208,0.182898,0.972946,0.925727,0.551375,0.471168,0.741588,0.464528,0.113664,0.259915,0.346665,0.335793,0.15721,0.879651,0.0860559,0.463602,0.463853,0.386338,0.351125,0.90706,0.832506,0.475334,0.890556,0.429104,0.216217,0.171912,0.894177,0.389479,0.499085,0.930949,0.909914,0.479346,0.897828,0.750396,0.827078,0.637683,0.0515128,0.511062,0.910322,0.298172,0.499486,0.075253,0.456548,0.212696,0.89435,0.715633,0.935027,0.700508,0.25916,0.580024,0.982392,0.736194,0.154693,0.143787,0.922414,0.958444,0.774373,0.988729,0.2,0.41146,0.792232,0.753698,0.632355,0.723885,0.821395,0.218859,0.926483,0.241652,0.718669,0.703659,0.646738,0.803732,0.890409,0.958945,0.979082,0.937404,0.161181,0.725705,0.717449,0.811011,0.101985,0.494223,0.250728,0.895327,0.057856,0.155087,0.977995,0.741169,0.634017,0.921566,0.957008,0.0573029,0.941404,0.195988,0.173213,0.644245,0.320186,0.186543,0.542854,0.384475,0.240097,0.795558,0.768912,0.342192,0.325123,0.810529,0.350447,0.892486,0.173331,0.595491,0.772901,0.240031,0.00284886,0.714911,0.601678,0.0151027,0.169146,0.768141,0.185831,0.617263,0.757248,0.559325,0.115595,0.343226,0.787769,0.319791,0.511947,0.407724,0.117591,0.635609,0.759217,0.756106,0.294916,0.00881809,0.243136,0.640039,0.541644,0.807417,0.225659,0.166982,0.192925,0.765711,0.959885,0.553283,0.244605,0.63831,0.0485682,0.965906,0.0343451,0.280632,0.822402,0.821389,0.313903,0.618578,0.833556,0.219703,0.0270007,0.0130744,0.49898,0.821238,0.916601,0.281794,0.846994,0.0961997,0.586537,0.265623,0.123497,0.254064,0.87521,0.101746,0.698892,0.336066,0.697049,0.860304,0.624105,0.950085,0.857547,0.523116,0.279717,0.329327,0.200154,0.510241,0.708267,0.31366,0.86067,0.182454,0.504838,0.771284,0.699742,0.469439,0.894521,0.235665,0.191152,0.965877,0.0166362,0.434971,0.824953,0.476182,0.342353,0.744482,0.916217,0.665584,0.534732,0.422828,0.137824,0.353638,0.985829,0.181742,0.929089,0.731393,0.910502,0.66539,0.557255,0.790834,0.215322,0.597433,0.307166,0.988081,0.582974,0.979816,0.170184,0.100764,0.167262,0.201593,0.389342,0.189902,0.0525408,0.593344,0.573489,0.585416,0.437875,0.584475,0.329305,0.696584,0.339544,0.761658,0.926994,0.143966,0.272401,0.32034,0.758583,0.911705,0.73585,0.478318,0.427477,0.14698,0.457245,0.0476568,0.353925,0.550803,0.282981,0.415132,0.514915,0.268992,0.897661,0.24443,0.571745,0.63659,0.320297,0.402715,0.784706,0.201754,0.845669,0.354437,0.948563,0.796424,0.727925,0.607917,0.0433303,0.740628,0.344423,0.0641035,0.854753,0.0754606,0.174526,0.548233,0.716544,0.136269,0.456178,0.827467,0.342399,0.832131,0.151378,0.870353,0.339631,0.821175,0.149926,0.676949,0.0300784,0.654781,0.926563,0.516221,0.00219363,0.722748,0.214236,0.0902818,0.767508,0.960881,0.936816,0.647325,0.216653,0.492122,0.422582,0.453857,0.0270607,0.990347,0.515499,0.190304,0.329607,0.486691,0.69061,0.621845,0.205202,0.536797,0.0730094,0.613466,0.235478,0.0638977,0.288684,0.808203,0.16705,0.440608,0.629073,0.681428,0.306033,0.274645,0.400435,0.116342,0.357963,0.243063,0.901617,0.657334,0.919502,0.381147,0.292873,0.932273,0.32474,0.850118,0.990874,0.722818,0.452211,0.649391,0.137082,0.116607,0.933866,0.143834,0.612285,0.400991,0.703148,0.553593,0.704013,0.71123,0.259205,0.516497,0.239666,0.328096,0.973785,0.928019,0.836813,0.442761,0.658388,0.452916,0.402396,0.716772,0.100043,0.309803,0.0296465,0.951081,0.483843,0.0465745,0.733635,0.290698,0.738379,0.7515,0.856863,0.00371104,0.129809,0.531216,0.348347,0.98257,0.25404,0.0568034,0.451054,0.37623,0.469923,0.714862,0.241347,0.827819,0.0460531,0.030679,0.878108,0.978955,0.405666,0.107466,0.420637,0.721593,0.845402,0.709866,0.959343,0.953267,0.900908,0.140152,0.365409,0.789648,0.426253,0.710661,0.279385,0.612613,0.245766,0.358495,0.203158,0.793133,0.542302,0.257304,0.645087,0.151946,0.744633,0.0330403,0.435853,0.828012,0.80701,0.824419,0.375578,0.770692,0.62773,0.198867,0.0592542,0.360326,0.978116,0.983745,0.529034,0.217524,0.576932,0.583025,0.975898,0.533348,0.0186054,0.728301,0.572301,0.424774,0.234442,0.100407,0.449931,0.163017,0.686248,0.90516,0.350967,0.973492,0.129055,0.799045,0.69337,0.400283,0.759313,0.526124,0.0565121,0.780007,0.570661,0.485116,0.153546,0.0604056,0.649432,0.38278,0.739482,0.554602,0.251534,0.972784,0.199883,0.808037,0.405165,0.534811,0.676533,0.949453,0.400507,0.804229,0.849593,0.6318,0.415077,0.145234,0.0972707,0.206831,0.564383,0.148498,0.340857,0.622284,0.19786,0.49138,0.617921,0.260166,0.038696,0.542879,0.566719,0.305947,0.0487517,0.0195361,0.540013,0.65897,0.281558,0.27007,0.126339,0.670015,0.647072,0.063467,0.347492,0.0942791,0.48445,0.885048,0.105435,0.0744733,0.95522,0.935204,0.159611,0.128147,0.0437956,0.489667,0.956676,0.398991,0.0968779,0.528384,0.402541,0.471206,0.591074,0.680013,0.761508,0.725707,0.339891,0.273112,0.316917,0.361016,0.947025,0.0890329,0.0745656,0.657432,0.0249403,0.487533,0.509135,0.417338,0.233367,0.0492037,0.0172438,0.230131,0.40764,0.334499,0.680571,0.951994,0.0346279,0.815905,0.09363,0.988629,0.827239,0.194254,0.850573,0.083192,0.588803,0.0914636,0.183154,0.508533,0.312267,0.768881,0.394843,0.704812,0.966103,0.00867277,0.400216,0.251697,0.881159,0.560944,0.181669,0.134714,0.0599132,0.914305,0.514246,0.680944,0.404207,0.599775,0.900601,0.845187,0.482181,0.425901,0.35005,0.0584733,0.0125474,0.82278,0.30587,0.859239,0.583119,0.61578,0.84658,0.523598,0.504914,0.484512,0.188632,0.13828,0.399009,0.492385,0.957431,0.141988,0.967481,0.517187,0.521338,0.402851,0.312279,0.0466532,0.38703,0.722965,0.960553,0.740334,0.539656,0.679925,0.260929,0.408868,0.636054,0.113349,0.0887163,0.328452,0.268978,0.108799,0.805677,0.216925,0.0803319,0.855323,0.450694,0.720456,0.976157,0.513088,0.0285523,0.383875,0.701328,0.775984,0.251904,0.10728,0.805661,0.956763,0.833097,0.789115,0.85258,0.856022,0.0314931,0.443879,0.710691,|0.997511,0.088782,0.300957,0.284218,0.257993,0.450044,0.0667868,0.710092,0.486651,0.311962,0.806731,0.197853,0.197793,0.351977,0.518963,0.468623,0.304193,0.0264394,0.538614,0.163983,0.269891,0.353063,0.604315,0.994796,0.309855,0.14877,0.866773,0.303203,0.753648,0.98329,0.955499,0.0375059,0.962974,0.0352566,0.447419,0.975723,0.322997,0.851647,0.467911,0.392695,0.620205,0.389502,0.463483,0.855112,0.0721453,0.433323,0.114556,0.622701,0.843169,0.890513,0.49219,0.127167,0.34837,0.371161,0.408801,0.986581,0.454399,0.245917,0.621913,0.953144,0.0120854,0.0171751,0.40174,0.714821,0.531041,0.449253,0.128687,0.594514,0.215097,0.0880479,0.0827541,0.530164,0.756821,0.916633,0.159685,0.0589239,0.101404,0.0294947,0.601114,0.13694,0.483237,0.401964,0.921849,0.756568,0.898834,0.536338,0.406073,0.00306875,0.285259,0.203886,0.707464,0.451394,0.444473,0.861954,0.691307,0.576358,0.190821,0.626213,0.84678,0.223399,0.315776,0.50994,0.0568072,0.189628,0.594475,0.249193,0.304965,0.202575,0.0240007,0.537138,0.310265,0.296784,0.705341,0.219986,0.932024,0.769155,0.974021,0.463824,0.0300319,0.660342,0.0913339,0.668693,0.798788,0.71205,0.847117,0.12262,0.367048,0.903435,0.728137,0.106845,0.304141,0.781178,0.060909,0.589477,0.662674,0.919255,0.261205,0.522144,0.702509,0.901353,0.597792,0.558991,0.766422,0.0882223,0.613898,0.516811,0.581414,0.864172,0.176105,0.415277,0.713198,0.317142,0.0112225,0.791391,0.449398,0.279624,0.539529,0.0114388,0.83494,0.253301,0.601534,0.566703,0.863844,0.848289,0.615043,0.668937,0.708553,0.628382,0.759295,0.281989,0.642484,0.413854,0.46405,0.165457,0.811915,0.765743,0.962171,0.0549618,0.0473922,0.524172,0.513154,0.762736,0.524289,0.735974,0.640643,0.987554,0.906389,0.0417581,0.816179,0.482102,0.207582,0.377287,0.433375,0.991027,0.536159,0.212384,0.0319546,0.715076,0.243758,0.41692,0.646718,0.0617986,0.0958361,0.613119,0.308354,0.624279,0.146261,0.591639,0.604635,0.115087,0.724181,0.795337,0.523286,0.767299,0.861134,0.102036,0.752877,0.444163,0.152805,0.282936,0.824311,0.5808,0.444758,0.727403,0.739238,0.0113577,0.59864,0.776191,0.522818,0.194077,0.66109,0.467748,0.218935,0.210133,0.00355649,0.648206,0.0393262,0.537484,0.524362,0.576617,0.505666,0.783403,0.568037,0.532079,0.753992,0.77082,0.516578,0.77575,0.32501,0.179873,0.0406415,0.770729,0.0920518,0.878839,0.675638,0.487475,0.593031,0.594313,0.655427,0.577103,0.0049569,0.883223,0.81136,0.823666,0.336479,0.767431,0.952338,0.503158,0.858684,0.302515,0.857977,0.851534,0.406139,0.417034,0.0849016,0.602544,0.432651,0.438999,0.142956,0.573743,0.469277,0.391062,0.202391,0.388033,0.112649,0.598301,0.238682,0.313346,0.207225,0.501332,0.125355,0.123951,0.0448797,0.114999,0.355556,0.72783,0.127437,0.119491,0.129001,0.561292,0.650601,0.623766,0.0627963,0.816633,0.912413,0.234565,0.73695,0.262182,0.34573,0.921208,0.230078,0.519349,0.371488,0.831225,0.353671,0.935215,0.953769,0.737817,0.257273,0.86847,0.749782,0.173687,0.190361,0.949261,0.655019,0.494384,0.829555,0.641094,0.324461,0.290766,0.210296,0.16579,0.388714,0.794755,0.680721,0.907681,0.428203,0.144329,0.48873,0.811557,0.553932,0.881624,0.0632347,0.976671,0.119088,0.889011,0.083443,0.052448,0.733275,0.0024991,0.122602,0.378325,0.802647,0.322549,0.721824,0.027716,0.800957,0.282589,0.736144,0.228463,0.548515,0.518134,0.65082,0.467061,0.48265,0.641337,0.658318,0.551513,0.153773,0.151658,0.359367,0.166453,0.364321,0.264642,0.00734061,0.513631,0.379231,0.834386,0.922953,0.768247,0.540201,0.555892,0.899214,0.582411,0.862321,0.129338,0.585479,0.543165,0.658766,0.708197,0.998839,0.710968,0.891089,0.707436,0.237373,0.273201,0.955087,0.509077,0.519428,0.719991,0.294736,0.748069,0.969218,0.495357,0.410697,0.0601007,0.39897,0.742545,0.549905,0.105522,0.903816,0.688444,0.851393,0.726939,0.703299,0.604447,0.244318,0.116961,0.39432,0.591382,0.660927,0.136096,0.997401,0.0372705,0.302419,0.340449,0.14908,0.393376,0.235034,0.434828,0.66458,0.657673,0.431318,0.622674,0.430821,0.672281,0.477859,0.0919147,0.609423,0.617656,0.283343,0.841728,0.145267,0.868361,0.286336,0.4299,0.236636,0.505653,0.528059,0.0842428,0.602732,0.359382,0.075615,0.823547,0.275149,0.276026,0.238061,0.912314,0.217131,0.133706,0.928126,0.638709,0.882654,0.609408,0.343199,0.080483,0.842344,0.575928,0.310783,0.578297,0.190668,0.74921,0.47719,0.950569,0.224171,0.719135,0.867271,0.349871,0.510954,0.282031,0.0442129,0.756009,0.861651,0.739176,0.816129,0.895032,0.948136,0.277868,0.544072,0.363703,0.19821,0.830665,0.690217,0.501271,0.272759,0.69564,0.42884,0.181433,0.298827,0.373923,0.272172,0.116833,0.997161,0.902597,0.943446,0.611633,0.848642,0.877564,0.824185,0.739706,0.236153,0.920665,0.43585,0.813429,0.113,0.431792,0.582369,0.288207,0.178501,0.519078,0.489256,0.947499,0.481825,0.915437,0.409689,0.554685,0.818165,0.418184,0.49481,0.860616,0.999403,0.826565,0.169512,0.3981,0.302529,0.82116,0.10177,0.72792,0.945887,0.892921,0.0794308,0.1091,0.865974,0.900839,0.645851,0.00916833,0.624205,0.164149,0.700558,0.901054,0.214534,0.875361,0.481916,0.880336,0.369708,0.881534,0.64563,0.893762,0.302128,0.0327497,0.701804,0.593955,0.567395,0.684701,0.357569,0.985203,0.426411,0.957642,0.249559,0.744522,0.164184,0.80777,0.563645,0.74749,0.28936,0.85579,0.714155,0.359446,0.687223,0.0544254,0.865485,0.435527,0.816415,0.143372,0.882827,0.0846272,0.734426,0.544579,0.231473,0.38912,0.326956,0.596757,0.199342,0.83386,0.347015,0.0259703,0.114327,0.617376,0.340313,0.282835,0.00178581,0.827537,0.56796,0.301367,0.682432,0.745662,0.931581,0.0591832,0.698456,0.954384,0.636571,0.031841,0.374706,0.40705,0.884823,0.718374,0.214267,0.849244,0.473972,0.00467086,0.827122,0.283738,0.24229,0.98547,0.810558,0.705474,0.994238,0.0802945,0.721691,0.783,0.165519,0.6376,0.896932,0.632372,0.00943601,0.811091,0.714335,0.220506,0.225163,0.99375,0.640824,0.289696,0.351326,0.367302,0.613097,0.377387,0.256136,0.542228,0.417686,0.801684,0.615299,0.376915,0.967982,0.115496,0.677271,0.295437,0.821217,0.00261569,0.879812,0.622499,0.181373,0.743173,0.995018,0.802305,0.291073,0.0428393,0.760561,0.154306,0.263826,0.98486,0.232563,0.45084,0.434295,0.660006,0.506575,0.187879,0.908623,0.11276,0.0453427,0.6609,0.727919,0.434176,0.669252,0.659391,0.713081,0.642983,0.445888,0.492927,0.30497,0.348098,0.5333,0.625394,0.968853,0.485365,0.330872,0.754432,0.428547,0.319667,0.647654,0.0854405,0.616882,0.892622,0.33931,0.383801,0.350849,0.182631,0.667058,0.444309,0.636873,0.339636,0.709511,0.0351968,0.51447,0.172892,0.62204,0.324217,0.180319,0.99521,0.7289,0.551157,0.156327,0.239863,0.450433,0.931252,0.650068,0.942554,0.916902,0.323862,0.400929,0.755139,0.150629,0.935414,0.224405,0.95878,0.247917,0.544657,0.728578,0.0654252,0.0374339,0.671256,0.639238,0.545323,0.626289,0.603332,0.594702,0.944955,0.992032,0.10866,0.545987,0.282659,0.477423,0.512996,0.246029,0.684442,0.668323,0.252289,0.169817,0.00943232,0.288433,0.2459,0.344973,0.178173,0.0559486,0.123474,0.820567,0.264019,0.475682,0.303183,0.804113,0.0266489,0.342835,0.119826,0.301894,0.178494,0.0604567,0.881201,0.45709,0.88497,0.913615,0.226646,0.968634,0.95958,0.527529,0.821901,0.105941,0.419556,0.532314,0.98659,0.153696,0.408225,0.854652,0.873219,0.466721,0.499086,0.963347,0.96335,0.702688,0.179117,0.103171,0.39286,0.233636,0.440989,0.257729,0.039683,0.320023,0.374639,0.423589,0.654395,0.553764,0.881842,0.829682,0.873985,0.867872,0.618328,0.306166,0.779333,0.243658,0.599544,0.495798,0.445022,0.814697,0.272276,0.820844,0.933119,0.881751,0.941235,0.657444,0.499606,0.981226,0.583508,0.593283,0.512072,0.570278,0.76123,0.470169,0.0454024,0.890395,0.680742,0.135452,0.00180155,0.419041,0.527949,0.623739,0.668199,0.286795,0.88704,0.798921,0.404845,0.00493562,0.98689,0.968584,0.554737,0.121687,0.644292,0.896266,0.768924,0.263757,0.676265,0.0591533,0.128159,0.568476,0.872979,0.0788854,0.691728,0.640996,0.716559,0.944389,0.755516,0.854689,0.392672,0.695175,0.47782,0.143926,0.94041,0.726839,0.815977,0.45144,0.387437,0.754209,0.966269,0.439573,0.728115,0.844615,0.230951,0.89843,0.857776,0.776352,0.55051,0.740076,0.550751,0.34339,0.357469,0.921976,0.981951,0.35946,0.123887,0.851936,0.58353,0.647951,0.941624,0.618018,0.159451,0.389137,0.908394,0.257303,0.758542,0.00422096,0.820563,0.00416684,0.525986,0.0167624,0.445241,0.311171,0.0129556,0.517319,0.589334,0.266424,0.680064,0.831396,0.347038,0.395043,0.510722,0.891091,0.668043,0.189711,0.887534,0.126378,0.344831,0.0119067,0.354709,0.310229,0.527884,0.182378,0.810678,0.385934,0.732144,0.64073,0.563284,0.88863,0.659611,0.948304,0.858605,0.221444,0.349377,0.716217,0.0877539,0.485131,0.133564,0.432716,0.463985,0.249462,0.824095,0.855445,0.122211,0.327814,0.474168,0.93015,0.874281,0.617911,0.370813,0.879253,0.437086,0.518616,0.391156,0.272031,0.382256,0.129733,0.811526,0.455017,0.27871,0.0340406,0.37368,0.992635,0.326564,0.876201,0.449901,0.438091,0.856884,0.150162,0.900724,0.220131,0.970854,0.522567,0.184609,0.885467,0.0347473,0.647475,0.819645,0.370692,0.439769,0.609529,0.55265,0.688929,0.483783,0.170697,0.663913,0.595832,0.693087,0.678651,0.70465,|0.999559,0.688114,0.843802,0.223406,0.536427,0.836373,0.266572,0.884146,0.432634,0.847256,0.366567,0.127888,0.919708,0.0122836,0.639766,0.126033,0.0300941,0.716836,0.238549,0.973488,0.753985,0.545312,0.0896124,0.530372,0.178578,0.07235,0.9279,0.599184,0.719119,0.617647,0.321085,0.765209,0.137848,0.118005,0.922111,0.527892,0.534538,0.504299,0.742679,0.562709,0.454631,0.87726,0.403351,0.0256342,0.0362555,0.891392,0.786508,0.22308,0.0417108,0.196879,0.0884211,0.987662,0.079506,0.0115532,0.849372,0.56624,0.768794,0.429282,0.997758,0.937465,0.961715,0.900232,0.14576,0.329134,0.727872,0.0963947,0.661704,0.692992,0.434895,0.433015,0.450043,0.212249,0.150215,0.0326319,0.131275,0.69097,0.848091,0.513823,0.180205,0.30435,0.168701,0.537609,0.149617,0.556311,0.095883,0.760286,0.565194,0.919919,0.780465,0.592021,0.69206,0.00284904,0.561468,0.56955,0.110375,0.931291,0.800157,0.608235,0.495928,0.597958,0.0628291,0.500521,0.518225,0.956331,0.402251,0.118473,0.626908,0.562347,0.660353,0.417982,0.939386,0.194898,0.37543,0.67284,0.0442557,0.280197,0.92961,0.606552,0.368011,0.637083,0.242831,0.617856,0.010293,0.9209,0.975193,0.61351,0.195665,0.429743,0.657713,0.665956,0.714891,0.500182,0.743475,0.14319,0.582543,0.4749,0.805363,0.668949,0.419037,0.936645,0.220694,0.994502,0.763315,0.336902,0.938115,0.123137,0.453968,0.598203,0.514905,0.0885185,0.962992,0.771708,0.462842,0.691677,0.938783,0.948013,0.0176059,0.329007,0.399706,0.451176,0.229536,0.759923,0.54195,0.0622836,0.483565,0.0348396,0.644762,0.960172,0.0457663,0.262676,0.914291,0.861379,0.278457,0.00758165,0.149833,0.616085,0.597148,0.40261,0.817231,0.141716,0.951218,0.965602,0.211654,0.698953,0.642157,0.340788,0.47078,0.110169,0.418896,0.176726,0.12871,0.579802,0.233083,0.66174,0.383456,0.929443,0.827287,0.453152,0.227878,0.0984967,0.457548,0.084897,0.0664684,0.150814,0.82932,0.477354,0.857413,0.964803,0.0979762,0.400221,0.853611,0.750881,0.609457,0.129039,0.0280674,0.350426,0.43231,0.212865,0.00691819,0.5017,0.897179,0.0914177,0.0765819,0.144133,0.542723,0.114216,0.24005,0.625769,0.166427,0.610815,0.225589,0.336346,0.248883,0.958085,0.186362,0.400986,0.747264,0.941507,0.867776,0.275257,0.1295,0.963853,0.081275,0.558815,0.43023,0.281818,0.311306,0.498505,0.000977874,0.953172,0.426598,0.067799,0.119327,0.246546,0.850932,0.782196,0.494446,0.521801,0.957489,0.319713,0.801404,0.658642,0.03929,0.711215,0.470767,0.381767,0.711625,0.589589,0.180442,0.666029,0.291959,0.674705,0.497578,0.429175,0.787824,0.104895,0.634534,0.111925,0.232074,0.173641,0.922405,0.292908,0.9997,0.535871,0.989523,0.440569,0.855278,0.228105,0.203766,0.400288,0.994318,0.256087,0.0507543,0.681747,0.577408,0.439086,0.597435,0.46146,0.412319,0.587467,0.924459,0.329802,0.962563,0.358901,0.356025,0.398563,0.872809,0.562591,0.119525,0.299893,0.310924,0.201901,0.247276,0.193766,0.997271,0.0321786,0.935214,0.365265,0.298739,0.497377,0.414474,0.0792935,0.889084,0.00159156,0.685514,0.516889,0.629934,0.863764,0.897326,0.298286,0.69865,0.863655,0.658398,0.48446,0.861441,0.794981,0.776162,0.169055,0.794342,0.699881,0.690112,0.131804,0.986797,0.984573,0.706631,0.240076,0.836799,0.401065,0.250426,0.414426,0.0808676,0.475066,0.0497196,0.463139,0.495428,0.653116,0.542243,0.905586,0.574641,0.452381,0.696399,0.866351,0.758086,0.82592,0.0723751,0.43511,0.107726,0.0554768,0.843834,0.450881,0.601591,0.735139,0.646771,0.380187,0.22491,0.706645,0.941533,0.524765,0.26254,0.475142,0.918602,0.994024,0.930975,0.99034,0.840576,0.23818,0.0443864,0.591074,0.817348,0.254456,0.425171,0.611349,0.0410151,0.157477,0.12121,0.261254,0.781184,0.352787,0.796718,0.200123,0.291251,0.713171,0.316111,0.527158,0.0801792,0.0429073,0.221112,0.697362,0.644715,0.672442,0.88779,0.179518,0.753104,0.985249,0.192306,0.980465,0.976724,0.0106139,0.0406318,0.489712,0.226566,0.336739,0.691773,0.713511,0.0117755,0.346885,0.0961195,0.331574,0.0823232,0.348117,0.998008,0.534832,0.789879,0.187771,0.37348,0.0247856,0.0356102,0.27248,0.772288,0.488272,0.537872,0.419011,0.820211,0.553965,0.831549,0.422047,0.722726,0.583078,0.984647,0.271766,0.0337067,0.0618626,0.965905,0.510968,0.709814,0.363535,0.262646,0.508663,0.676352,0.265626,0.441184,0.849771,0.710645,0.122226,0.670171,0.362962,0.883209,0.815316,0.172034,0.250805,0.290246,0.621998,0.64592,0.255525,0.770312,0.0333441,0.233542,0.887123,0.0462383,0.407868,0.865576,0.539964,0.502822,0.579714,0.281222,0.40203,0.713721,0.699041,0.78485,0.523419,0.936933,0.00492483,0.139041,0.295885,0.556354,0.956368,0.270103,0.922115,0.123108,0.167475,0.354075,0.141604,0.0676585,0.151731,0.136097,0.258823,0.37127,0.346112,0.294881,0.941966,0.469122,0.222143,0.805529,0.327104,0.347592,0.218297,0.229084,0.65079,0.971973,0.0337605,0.169885,0.367981,0.0299444,0.563106,0.676046,0.388658,0.604159,0.0756647,0.0868825,0.020687,0.300017,0.847638,0.0245869,0.716492,0.267844,0.564587,0.470556,0.550127,0.309518,0.13746,0.475224,0.188554,0.237889,0.763408,0.185955,0.404797,0.13574,0.69422,0.472466,0.974832,0.791487,0.227477,0.474913,0.876526,0.826677,0.100172,0.162088,0.407415,0.167204,0.336056,0.608012,0.974557,0.7639,0.484863,0.564355,0.473727,0.393009,0.129562,0.0885989,0.456195,0.355426,0.540354,0.953846,0.670774,0.785758,0.43725,0.804648,0.669638,0.181843,0.738815,0.193071,0.306725,0.439492,0.984392,0.396256,0.723068,0.820172,0.917131,0.513372,0.623374,0.596537,0.0386969,0.945194,0.357012,0.484178,0.0990095,0.0804152,0.398307,0.781499,0.444736,0.658626,0.823083,0.400657,0.702124,0.283113,0.497656,0.562195,0.155644,0.636432,0.710633,0.172614,0.918834,0.346898,0.315345,0.903226,0.683608,0.333795,0.00513053,0.412404,0.982551,0.508464,0.507998,0.814955,0.388616,0.0945687,0.0600687,0.0905865,0.590703,0.0988012,0.922821,0.659421,0.904903,0.889204,0.511293,0.617203,0.0658891,0.744745,0.617202,0.610494,0.507082,0.426427,0.0257145,0.661281,0.130191,0.144158,0.490063,0.601408,0.27261,0.767134,0.26328,0.178705,0.254301,0.341973,0.594812,0.554506,0.071677,0.90098,0.28991,0.874187,0.981296,0.460703,0.174306,0.249244,0.645677,0.827045,0.321755,0.154198,0.528453,0.279326,0.363777,0.688885,0.385986,0.939546,0.22807,0.707462,0.480018,0.209203,0.886243,0.287162,0.304614,0.393743,0.506943,0.770129,0.500811,0.713237,0.324693,0.323702,0.917521,0.965097,0.75588,0.804943,0.67873,0.129223,0.0608247,0.723117,0.573042,0.593896,0.27463,0.251656,0.475049,0.958,0.379599,0.512089,0.957178,0.955807,0.10982,0.210949,0.520206,0.584442,0.239927,0.163306,0.625035,0.896039,0.136934,0.968671,0.572568,0.435265,0.575381,0.410681,0.664331,0.506366,0.935159,0.939037,0.61699,0.814848,0.410562,0.396058,0.283824,0.416911,0.377109,0.502677,0.368515,0.834846,0.680384,0.154224,0.142898,0.803345,0.556632,0.0192961,0.477911,0.52169,0.331689,0.902851,0.228706,0.802817,0.782096,0.363879,0.911635,0.281834,0.150324,0.0623077,0.236955,0.748551,0.0424763,0.494056,0.234144,0.740617,0.483414,0.0405169,0.484253,0.369911,0.829523,0.39924,0.679889,0.814592,0.905073,0.870783,0.35325,0.0188839,0.495213,0.715885,0.341061,0.0441434,0.428068,0.252703,0.53008,0.976778,0.702212,0.0813573,0.0629799,0.0457014,0.845584,0.0284185,0.725798,0.180806,0.635018,0.508953,0.0231327,0.811309,0.183898,0.0853755,0.135942,0.011766,0.457181,0.474823,0.756176,0.705925,0.126405,0.0788044,0.780371,0.945623,0.269613,0.809212,0.361671,0.506009,0.547985,0.496006,0.21034,0.708826,0.927038,0.226696,0.419097,0.949673,0.130691,0.0524568,0.864546,0.334648,0.651865,0.547099,0.714844,0.779092,0.652509,0.850039,0.319177,0.528199,0.123166,0.156494,0.68676,0.013518,0.488494,0.95254,0.233779,0.407807,0.00686854,0.425611,0.595394,0.151069,0.738135,0.701827,0.14713,0.983595,0.973275,0.35153,0.762453,0.863372,0.117689,0.295972,0.376819,0.738661,0.900975,0.780202,0.694875,0.506535,0.756613,0.493956,0.575045,0.968393,0.796733,0.452111,0.0580025,0.144468,0.286159,0.643472,0.930366,0.248187,0.1384,0.323718,0.164714,0.733644,0.649556,0.57557,0.796171,0.926344,0.0267406,0.560111,0.359612,0.686468,0.781391,0.327872,0.0614193,0.614636,0.12069,0.506077,0.732855,0.211558,0.659714,0.43257,0.616549,0.711016,0.382429,0.527327,0.947691,0.272678,0.0412619,0.853633,0.488845,0.237627,0.995787,0.568208,0.767283,0.577923,0.126864,0.118116,0.978958,0.140785,0.369124,0.722018,0.270405,0.417708,0.368951,0.4107,0.720135,0.471062,0.476421,0.136054,0.67314,0.863662,0.897568,0.0566448,0.110853,0.883777,0.269595,0.377326,0.636063,0.00432497,0.840855,0.304076,0.566984,0.189362,0.413282,0.58941,0.803295,0.743405,0.988438,0.155429,0.716043,0.495653,0.0580899,0.824657,0.114351,0.916615,0.514501,0.667737,0.594555,0.246702,0.951697,0.331505,0.668478,0.669261,0.857359,0.285083,0.117829,0.663389,0.996145,0.835503,0.92815,0.960251,0.0281745,0.78096,0.336226,0.57061,0.416651,0.479897,0.741396,0.169242,0.690134,0.899861,0.334223,0.831244,0.309594,0.4162,0.927397,0.0115896,0.236981,0.326177,0.128666,0.385844,0.366648,0.284401,0.775437,0.124997,0.309059,0.842794,0.693745,0.40832,0.797047,0.14251,0.92849,0.886354,0.580969,0.167013,0.398304,0.194608,0.887343,0.677378,0.721524,0.299833,0.682207,0.0792176,0.975286,|0.619219,0.902308,0.572299,0.25691,0.350025,0.37569,0.857715,0.346608,0.676202,0.402534,0.489824,0.885423,0.0551261,0.969883,0.00302511,0.0407356,0.54442,0.367353,0.816915,0.608099,0.6114,0.562984,0.0652128,0.287501,0.341616,0.632303,0.905559,0.237421,0.287412,0.794567,0.307425,0.653257,0.4687,0.766236,0.945327,0.769651,0.155073,0.923551,0.144503,0.0741401,0.707465,0.933237,0.176996,0.134038,0.224954,0.841224,0.609274,0.203749,0.539408,0.756604,0.0512514,0.555577,0.700177,0.507067,0.934279,0.47903,0.532311,0.176585,0.639152,0.509159,0.792157,0.326932,0.0601291,0.448017,0.432126,0.227275,0.68587,0.737597,0.960764,0.0570146,0.441047,0.476559,0.327158,0.599463,0.437022,0.765343,0.341978,0.251524,0.399118,0.827689,0.0647299,0.0547613,0.102051,0.839223,0.37615,0.167658,0.433772,0.528263,0.236842,0.847591,0.851086,0.551844,0.0847179,0.0715137,0.397114,0.522514,0.854006,0.870757,0.291075,0.12869,0.910222,0.680696,0.68679,0.765074,0.331809,0.0259253,0.883226,0.902893,0.932862,0.160539,0.690962,0.198057,0.389524,0.0674285,0.015902,0.412876,0.928894,0.571446,0.667854,0.780155,0.206132,0.487348,0.807268,0.55038,0.407065,0.0106423,0.653347,0.587768,0.974454,0.420279,0.676811,0.191033,0.0172775,0.326472,0.452761,0.43605,0.761644,0.43782,0.318443,0.665007,0.145514,0.17166,0.152059,0.490307,0.527723,0.407162,0.905879,0.266273,0.797299,0.895271,0.0656143,0.245153,0.686456,0.822151,0.7563,0.714969,0.940072,0.564741,0.917966,0.322031,0.114495,0.00118595,0.0726975,0.532536,0.727,0.867271,0.755174,0.499189,0.431524,0.403515,0.547263,0.495983,0.166821,0.927412,0.999218,0.00137055,0.869681,0.991243,0.119958,0.436643,0.0351076,0.356013,0.811357,0.303282,0.633036,0.341108,0.285658,0.45124,0.657806,0.294903,0.0859457,0.623656,0.446271,0.436886,0.470541,0.108629,0.244187,0.909171,0.484202,0.462509,0.918914,0.375792,0.263749,0.796649,0.466048,0.0264313,0.0948215,0.833486,0.990138,0.304123,0.116926,0.986104,0.101959,0.437098,0.401706,0.0850077,0.42294,0.637774,0.19021,0.686429,0.121919,0.627074,0.994975,0.350242,0.352182,0.17604,0.419658,0.375737,0.735473,0.231712,0.379366,0.645532,0.899459,0.43541,0.453965,0.852651,0.0118868,0.685085,0.170025,0.585906,0.776259,0.238121,0.480679,0.225393,0.76854,0.616375,0.399324,0.430213,0.30538,0.570064,0.411498,0.285806,0.422995,0.322311,0.60894,0.665888,0.330572,0.834822,0.711262,0.960532,0.756858,0.0217713,0.663936,0.828695,0.517683,0.611128,0.385165,0.638251,0.801919,0.0457544,0.339846,0.778625,0.158992,0.953259,0.716922,0.570317,0.152124,0.255159,0.132383,0.87382,0.768381,0.279239,0.553253,0.753742,0.175812,0.0897741,0.906988,0.317135,0.178269,0.843037,0.4291,0.84861,0.377793,0.362548,0.962684,0.282983,0.503179,0.453676,0.912434,0.371402,0.0737517,0.174478,0.00331032,0.423977,0.764632,0.109414,0.453557,0.910622,0.457171,0.767936,0.0825494,0.0413617,0.402606,0.427609,0.711809,0.468773,0.200451,0.42197,0.807027,0.99377,0.906285,0.108419,0.785654,0.812352,0.33732,0.303349,0.992047,0.526789,0.500163,0.0552894,0.862995,0.545219,0.311434,0.908482,0.857903,0.768047,0.0753691,0.256524,0.131197,0.297391,0.423701,0.181466,0.860935,0.0356563,0.553775,0.889463,0.297969,0.586455,0.486983,0.175052,0.295465,0.224289,0.644833,0.427453,0.433413,0.115002,0.590727,0.836928,0.524939,0.571099,0.00737983,0.842725,0.585216,0.706866,0.126628,0.69999,0.97843,0.357768,0.97584,0.0246659,0.808436,0.369376,0.963608,0.477743,0.0550383,0.20429,0.215257,0.287439,0.939462,0.902814,0.990404,0.55276,0.948748,0.76314,0.0993604,0.00405771,0.595248,0.623617,0.935179,0.453992,0.629865,0.660187,0.239716,0.786672,0.0823178,0.904497,0.484911,0.859905,0.299094,0.723653,0.0498367,0.129834,0.723364,0.741886,0.857732,0.635454,0.410058,0.531474,0.158458,0.175789,0.223632,0.186324,0.0820376,0.50295,0.608615,0.0783101,0.770704,0.293356,0.0476676,0.75721,0.953564,0.682744,0.893449,0.312853,0.715427,0.16587,0.869899,0.159333,0.463608,0.649144,0.417093,0.047501,0.471138,0.108894,0.65607,0.441906,0.0588537,0.0880587,0.819228,0.70305,0.264953,0.641158,0.758748,0.530984,0.330403,0.269267,0.487989,0.685659,0.67382,0.220613,0.689004,0.24092,0.128158,0.204508,0.385662,0.177572,0.232625,0.347762,0.197061,0.651285,0.339656,0.596285,0.580481,0.42408,0.330433,0.574906,0.917225,0.188223,0.952326,0.259279,0.861457,0.716537,0.1401,0.379559,0.652669,0.103187,0.372692,0.318079,0.725433,0.554636,0.279129,0.0726103,0.667898,0.992193,0.712302,0.221118,0.629329,0.0460118,0.724883,0.424766,0.587874,0.777805,0.606922,0.117718,0.803154,0.410626,0.372899,0.640157,0.0271246,0.875725,0.0105439,0.777839,0.0126393,0.324194,0.095168,0.217669,0.446246,0.695192,0.144864,0.477674,0.506842,0.126015,0.816913,0.145306,0.272918,0.554369,0.366687,0.406407,0.241513,0.51106,0.0886568,0.720241,0.679948,0.300493,0.466876,0.975184,0.192734,0.250563,0.0518743,0.880537,0.829586,0.546619,0.428437,0.350674,0.0404264,0.398451,0.604742,0.771017,0.0885563,0.756797,0.831904,0.471114,0.562077,0.80065,0.0878908,0.594434,0.19317,0.00350946,0.127096,0.299364,0.806275,0.826083,0.810607,0.781865,0.277977,0.565103,0.947267,0.900337,0.0463206,0.187359,0.764314,0.446804,0.972952,0.417906,0.687403,0.547709,0.337933,0.163677,0.703258,0.101616,0.964892,0.862173,0.992135,0.55334,0.737173,0.89117,0.314076,0.784627,0.450106,0.225091,0.936028,0.721074,0.725742,0.638364,0.36817,0.347827,0.652456,0.0800157,0.99325,0.230129,0.468831,0.234402,0.631796,0.201552,0.455331,0.997561,0.51109,0.297571,0.961051,0.299156,0.848187,0.708693,0.647911,0.511031,0.0582545,0.489934,0.27846,0.0977125,0.726025,0.700133,0.114311,0.55139,0.417617,0.237291,0.732528,0.522623,0.145538,0.673469,0.170038,0.18482,0.74501,0.471345,0.153554,0.481545,0.345359,0.80569,0.119137,0.499988,0.00397199,0.457226,0.277402,0.596197,0.557489,0.270279,0.81922,0.215987,0.302833,0.0574182,0.110702,0.538388,0.63407,0.249514,0.437323,0.234768,0.43395,0.291102,0.853687,0.952956,0.848947,0.016688,0.232028,0.641136,0.2858,0.442082,0.566135,0.690831,0.763085,0.617582,0.473469,0.608661,0.373819,0.263402,0.497247,0.156873,0.180329,0.780011,0.358304,0.741525,0.937271,0.343278,0.298311,0.336658,0.0537784,0.400775,0.80071,0.186683,0.229207,0.540317,0.386045,0.449873,0.725769,0.36808,0.454069,0.463917,0.193272,0.707433,0.855524,0.711385,0.374791,0.723636,0.750025,0.287296,0.204364,0.305276,0.683779,0.270307,0.803325,0.745226,0.158566,0.931043,0.547469,0.117782,0.339445,0.996473,0.330608,0.787013,0.965801,0.2426,0.387529,0.600598,0.389577,0.965149,0.606725,0.153643,0.41255,0.892462,0.847596,0.266292,0.617728,0.593124,0.913638,0.686252,0.270602,0.364106,0.833982,0.568817,0.717741,0.839221,0.0165563,0.0933042,0.583768,0.34331,0.308666,0.814911,0.263163,0.133348,0.661177,0.87236,0.859571,0.987329,0.858763,0.387846,0.885589,0.0939872,0.296815,0.306918,0.926139,0.543032,0.20152,0.271619,0.650202,0.668,0.887638,0.434664,0.606143,0.694258,0.35113,0.323704,0.619059,0.467537,0.0210955,0.68818,0.937073,0.668493,0.484477,0.667677,0.293767,0.0707723,0.876772,0.0552966,0.883161,0.502757,0.0726041,0.921053,0.0649939,0.151195,0.0496897,0.324213,0.0837394,0.0860029,0.800799,0.459289,0.474646,0.545035,0.875983,0.0102794,0.235403,0.412696,0.868774,0.0147806,0.608046,0.795967,0.451781,0.694019,0.0996028,0.557554,0.012625,0.00208461,0.0824208,0.455313,0.820655,0.767844,0.110665,0.603348,0.179832,0.634474,0.691611,0.499312,0.861586,0.891167,0.996212,0.318987,0.441063,0.846486,0.947421,0.777255,0.755288,0.0259073,0.0503567,0.589059,0.41497,0.154455,0.890581,0.0741141,0.241285,0.456109,0.0324548,0.900815,0.897254,0.285571,0.906941,0.180664,0.261996,0.606693,0.377494,0.840361,0.148658,0.50307,0.698603,0.556684,0.327258,0.82586,0.40221,0.584272,0.203336,0.880964,0.662238,0.302005,0.374772,0.00876331,0.0212243,0.901846,0.322061,0.528156,0.812869,0.976884,0.437456,0.835285,0.476971,0.365137,0.00138199,0.19061,0.512507,0.503096,0.758499,0.505686,0.262717,0.757458,0.33995,0.382861,0.117246,0.0680698,0.812046,0.202934,0.874544,0.044113,0.877904,0.189953,0.311786,0.766618,0.102216,0.571792,0.608051,0.885821,0.741955,0.265575,0.485176,0.780586,0.653033,0.811578,0.479433,0.662392,0.0381984,0.61862,0.492688,0.223398,0.766378,0.784461,0.121914,0.761495,0.344726,0.106566,0.193055,0.753145,0.559466,0.00445759,0.187022,0.827859,0.282614,0.233552,0.430883,0.487867,0.983609,0.59447,0.0623111,0.45798,0.932048,0.700961,0.252315,0.183314,0.238128,0.228213,0.691652,0.455844,0.598488,0.432318,0.889638,0.390609,0.984078,0.352111,0.165542,0.7418,0.741001,0.368354,0.157699,0.759484,0.646824,0.96101,0.841472,0.441892,0.520482,0.874665,0.105771,0.975529,0.482076,0.052007,0.578417,0.591726,0.733543,0.674164,0.783728,0.44868,0.207371,0.836032,0.766596,0.302771,0.217598,0.273378,0.643062,0.870715,0.76507,0.985464,0.193349,0.901268,0.550516,0.949419,0.425306,0.741929,0.546399,0.164464,0.754854,0.360166,0.39977,0.0863987,0.176021,0.156811,0.727245,0.402412,0.45531,0.537924,0.227535,0.199707,0.974995,0.750392,0.226685,0.572359,0.949475,0.325829,0.89941,0.26838,0.453531,0.803054,0.694271,0.404382,0.312298,0.483327,0.628962,0.835189,0.325865,0.514403,|0.0837206,0.785703,0.0787441,0.72614,0.619039,0.443482,0.584825,0.854924,0.646161,0.361075,0.609006,0.571449,0.736508,0.265247,0.195796,0.824469,0.967503,0.193246,0.20849,0.275331,0.578047,0.522782,0.0647807,0.459769,0.507738,0.420741,0.89328,0.985409,0.191666,0.29347,0.966965,0.94095,0.428006,0.215371,0.648757,0.327184,0.0804828,0.806903,0.834071,0.0858576,0.807327,0.51534,0.769781,0.364593,0.0705071,0.868494,0.389221,0.0971622,0.207178,0.5914,0.938825,0.156944,0.405609,0.816645,0.115871,0.147007,0.219444,0.909853,0.815818,0.385404,0.142597,0.260459,0.270402,0.421301,0.69503,0.447793,0.659329,0.470364,0.0950609,0.535337,0.76655,0.144378,0.337751,0.519253,0.816667,0.730717,0.0458417,0.206241,0.659198,0.68743,0.630897,0.103475,0.741446,0.526505,0.674242,0.994417,0.771679,0.801064,0.450884,0.945811,0.0672771,0.367383,0.52763,0.74961,0.0157336,0.726225,0.97443,0.418248,0.643034,0.504931,0.52469,0.979499,0.390683,0.140307,0.396395,0.278438,0.0921878,0.680565,0.300681,0.537983,0.802484,0.259462,0.542108,0.0699309,0.303582,0.719087,0.170263,0.578306,0.380007,0.431333,0.716338,0.608007,0.31262,0.308774,0.771299,0.675766,0.595417,0.166695,0.277891,0.226983,0.998749,0.940757,0.177385,0.703275,0.837178,0.79708,0.0476862,0.807739,0.449803,0.951995,0.48026,0.219953,0.343588,0.502204,0.878367,0.416676,0.810635,0.417594,0.199943,0.891816,0.475332,0.955831,0.27828,0.556476,0.282813,0.0175959,0.754854,0.214603,0.660027,0.275649,0.342796,0.131161,0.46861,0.859982,0.150745,0.412359,0.714236,0.808692,0.48885,0.99792,0.865567,0.288088,0.0354059,0.113648,0.742744,0.0735893,0.536089,0.865896,0.498442,0.548476,0.12899,0.196922,0.669059,0.484192,0.282177,0.152037,0.535861,0.219964,0.117864,0.807298,0.785413,0.460156,0.994204,0.702726,0.683804,0.830881,0.98828,0.0635627,0.104964,0.154344,0.411852,0.266049,0.847691,0.0824674,0.250549,0.0399122,0.786865,0.0428758,0.314706,0.654311,0.508366,0.0435615,0.34727,0.593774,0.655355,0.449709,0.298042,0.43094,0.853353,0.237764,0.524908,0.924123,0.225703,0.189126,0.882261,0.0460216,0.544687,0.241385,0.132206,0.286629,0.593692,0.339471,0.69342,0.015796,0.90446,0.873145,0.962886,0.802749,0.0577344,0.651646,0.637352,0.793989,0.637788,0.492735,0.750857,0.913973,0.62618,0.703763,0.0994079,0.503927,0.533127,0.768867,0.162633,0.201004,0.0999821,0.610816,0.142402,0.713313,0.208208,0.458942,0.902103,0.673993,0.964436,0.954879,0.909237,0.635967,0.837961,0.884318,0.79346,0.363304,0.617136,0.144787,0.559212,0.369239,0.483623,0.790723,0.947709,0.733246,0.290149,0.258195,0.404388,0.988555,0.660599,0.867337,0.880991,0.28028,0.130288,0.562916,0.936399,0.0450343,0.250858,0.616392,0.707533,0.422474,0.787764,0.727911,0.51089,0.983621,0.110664,0.768303,0.725261,0.771608,0.814278,0.833104,0.903069,0.849843,0.588941,0.745145,0.756729,0.355833,0.634579,0.117977,0.248548,0.395008,0.111284,0.0794651,0.109653,0.22137,0.38035,0.22949,0.562752,0.359559,0.0317143,0.323066,0.684936,0.865486,0.180776,0.502227,0.190491,0.716833,0.0250185,0.800937,0.602206,0.874261,0.553962,0.534203,0.880041,0.188775,0.0671619,0.428401,0.0656403,0.87665,0.482039,0.57286,0.739307,0.388352,0.92377,0.62233,0.236238,0.542298,0.238628,0.261129,0.426925,0.77742,0.667453,0.19695,0.233582,0.47475,0.722167,0.543135,0.204862,0.753922,0.798332,0.142175,0.616261,0.114572,0.88217,0.277941,0.736512,0.30575,0.401487,0.794872,0.169334,0.334337,0.858567,0.511604,0.125855,0.741291,0.495041,0.316156,0.931299,0.133531,0.393426,0.0478493,0.508921,0.700159,0.690241,0.592598,0.631717,0.827062,0.443466,0.0405095,0.0639619,0.752612,0.0552786,0.575402,0.270041,0.506799,0.96703,0.642951,0.498311,0.888714,0.172155,0.451311,0.0218354,0.743535,0.347454,0.0310829,0.558506,0.498249,0.911676,0.180783,0.297281,0.870712,0.340035,0.757563,0.968235,0.50432,0.0280397,0.537699,0.0467044,0.327188,0.610292,0.996572,0.979918,0.889789,0.0896851,0.258478,0.629273,0.173609,0.740643,0.818791,0.492137,0.567452,0.329449,0.622973,0.514377,0.0564114,0.195938,0.938941,0.431177,0.345616,0.131946,0.137256,0.472328,0.728119,0.301499,0.587615,0.703081,0.368989,0.996832,0.30927,0.814199,0.0436481,0.329511,0.105842,0.851535,0.362859,0.418693,0.670752,0.659295,0.955541,0.723228,0.892414,0.830737,0.382855,0.222493,0.883703,0.555933,0.756001,0.30462,0.98029,0.0509387,0.231705,0.497436,0.020439,0.528113,0.586029,0.576224,0.224304,0.110206,0.387409,0.369231,0.285873,6.00815e-05,0.741347,0.441903,0.307603,0.701682,0.61189,0.769149,0.0879082,0.0429507,0.994367,0.14833,0.621276,0.798177,0.130585,0.536511,0.340429,0.273743,0.438285,0.496999,0.407318,0.963987,0.798598,0.37451,0.423436,0.669292,0.447883,0.442028,0.760464,0.795805,0.0183648,0.202235,0.460513,0.0797346,0.543343,0.758909,0.94595,0.508723,0.202823,0.468738,0.700985,0.399228,0.280893,0.9114,0.349122,0.345996,0.971918,0.61188,0.662884,0.222547,0.725356,0.245283,0.133859,0.557244,0.318592,0.603824,0.294646,0.789655,0.275792,0.959582,0.794028,0.141838,0.898699,0.164042,0.973992,0.212801,0.041294,0.872428,0.218438,0.391076,0.567429,0.5606,0.583325,0.691503,0.420692,0.0343603,0.724861,0.437317,0.633448,0.0717257,0.745216,0.699471,0.71287,0.0239161,0.352893,0.937583,0.665313,0.389179,0.751233,0.338579,0.0226918,0.32261,0.783051,0.657998,0.949565,0.892523,0.74777,0.845133,0.485896,0.909218,0.545048,0.883941,0.371335,0.484768,0.801127,0.715425,0.674235,0.611173,0.459158,0.107091,0.754894,0.93672,0.596639,0.882385,0.342514,0.385142,0.602035,0.027786,0.807866,0.410668,0.166523,0.488444,0.305043,0.272562,0.115056,0.941339,0.320611,0.501468,0.461243,0.932416,0.767725,0.406846,0.203601,0.145549,0.59469,0.483633,0.502071,0.926252,0.105492,0.708579,0.631236,0.479062,0.0904731,0.876275,0.789592,0.105239,0.670063,0.913731,0.778017,0.16283,0.160812,0.0793523,0.270664,0.511002,0.0241316,0.882234,0.591377,0.986654,0.525875,0.895197,0.381967,0.0588704,0.39309,0.953781,0.183204,0.0201109,0.254042,0.521164,0.553685,0.0647736,0.124543,0.50479,0.900828,0.878019,0.347555,0.258404,0.21762,0.454093,0.292717,0.393731,0.372615,0.534426,0.855287,0.271806,0.382667,0.63,0.231326,0.183034,0.77187,0.382448,0.0740321,0.77866,0.978147,0.743956,0.933578,0.779552,0.0755156,0.545547,0.948018,0.977756,0.681922,0.713774,0.763786,0.0718002,0.536081,0.657014,0.59953,0.659456,0.555125,0.965253,0.22824,0.618809,0.814543,0.853755,0.70235,0.838212,0.354496,0.528281,0.11662,0.519971,0.353639,0.826797,0.863989,0.169833,0.624475,0.982274,0.872389,0.538624,0.476967,0.78245,0.706338,0.560765,0.323142,0.812087,0.212746,0.580527,0.225314,0.798799,0.414813,0.907742,0.612005,0.658902,0.513575,0.134725,0.510352,0.518864,0.0204095,0.172052,0.904383,0.130964,0.818192,0.672327,0.779739,0.828785,0.51585,0.448599,0.0807446,0.0717698,0.333205,0.542037,0.0893172,0.715915,0.0652255,0.785031,0.358751,0.651893,0.510381,0.236014,0.996559,0.299729,0.526186,0.121566,0.154824,0.946625,0.472718,0.204495,0.644177,0.624348,0.905732,0.587246,0.752308,0.375911,0.783342,0.113641,0.121651,0.530976,0.433693,0.94686,0.0478898,0.540552,0.101904,0.613263,0.505969,0.386567,0.318447,0.95934,0.310979,0.640888,0.79777,0.283694,0.982767,0.410257,0.834723,0.676866,0.0454391,0.158061,0.119428,0.53079,0.96605,0.519292,0.306972,0.377184,0.140145,0.859114,0.396447,0.229283,0.129002,0.655689,0.803717,0.933209,0.161599,0.236644,0.967959,0.697157,0.366995,0.0413899,0.667549,0.12995,0.301921,0.352886,0.528427,0.114204,0.857823,0.266223,0.641233,0.407465,0.921791,0.370823,0.397427,0.232954,0.10977,0.58348,0.727734,0.879647,0.840452,0.157254,0.339542,0.999115,0.112253,0.241208,0.567857,0.900872,0.172691,0.355946,0.265074,0.204388,0.827945,0.347708,0.746877,0.551688,0.709244,0.700612,0.155396,0.228564,0.158102,0.01042,0.573721,0.608325,0.389582,0.19841,0.793907,0.161736,0.91972,0.013367,0.483963,0.130548,0.663569,0.245588,0.249019,0.23285,0.92096,0.216004,0.557294,0.108803,0.506001,0.298437,0.334019,0.75624,0.859208,0.0572677,0.243611,0.54008,0.318764,0.108851,0.984216,0.675002,0.544625,0.930722,0.68289,0.704193,0.503679,0.000303149,0.832792,0.147751,0.529343,0.35643,0.0731834,0.968094,0.294065,0.970951,0.48688,0.875848,0.982342,0.783038,0.682446,0.374463,0.111196,0.902392,0.749947,0.689108,0.286679,0.943496,0.683503,0.43559,0.929961,0.938879,0.374633,0.613191,0.137528,0.463014,0.59447,0.199019,0.523767,0.586557,0.0183696,0.378239,0.232728,0.741608,0.297126,0.57452,0.0181046,0.112675,0.555045,0.359033,0.556362,0.921923,0.129849,0.689591,0.554775,0.220069,0.392923,0.0808281,0.953486,0.742214,0.403095,0.176274,0.468214,0.563132,0.962312,0.470882,0.230592,0.69076,0.39083,0.784877,0.50498,0.3915,0.54453,0.389948,0.756387,0.187484,0.0800014,0.738887,0.278604,0.200269,0.870371,0.900339,0.572866,0.57892,0.714094,0.764542,0.390507,0.393554,0.624664,0.0296466,0.140293,0.198106,0.456286,0.732418,0.659849,0.369762,0.606716,0.684038,0.217325,0.995726,0.658205,0.0323396,0.628951,0.919564,0.49042,0.00892323,0.628614,0.714601,0.558426,0.439699,0.990413,0.654133,0.892153,0.876109,0.171155,0.667464,0.478922,0.483066,0.109387,0.837174,0.202093,0.397194,0.981869,|0.940868,0.97036,0.247367,0.0213975,0.664858,0.359352,0.522619,0.872626,0.502389,0.413305,0.854338,0.336329,0.0568909,0.455301,0.686175,0.580479,0.881375,0.645646,0.0251309,0.657367,0.927566,0.338183,0.104494,0.475911,0.881883,0.333128,0.562102,0.69659,0.4935,0.960439,0.810197,0.569209,0.14955,0.162413,0.933335,0.214784,0.30983,0.157981,0.193681,0.84463,0.516022,0.453196,0.428371,0.214386,0.84355,0.336978,0.49923,0.122216,0.595849,0.874661,0.312637,0.22356,0.663168,0.537668,0.734315,0.444941,0.222253,0.189013,0.443056,0.319449,0.0967194,0.497957,0.387322,0.703784,0.761552,0.851589,0.842217,0.0603648,0.143807,0.184133,0.689214,0.547304,0.532844,0.897689,0.322102,0.411436,0.207832,0.441546,0.601433,0.258161,0.378341,0.373416,0.738363,0.315224,0.416768,0.212913,0.120467,0.526298,0.813234,0.770116,0.241696,0.579603,0.15819,0.158325,0.65381,0.333905,0.614525,0.678082,0.864082,0.668727,0.126885,0.506499,0.0881492,0.239079,0.852159,0.701009,0.369538,0.66725,0.83931,0.875545,0.973711,0.635355,0.57442,0.33596,0.918199,0.418286,0.484214,0.694089,0.900794,0.105344,0.710473,0.785724,0.49763,0.0245783,0.626281,0.438545,0.633135,0.19738,0.522633,0.929707,0.378891,0.226419,0.855008,0.0326439,0.430078,0.158404,0.831323,0.198576,0.343079,0.84556,0.262725,0.993082,0.148549,0.186445,0.948404,0.374675,0.507877,0.452821,0.0449172,0.296059,0.283431,0.34503,0.35554,0.402375,0.717424,0.406405,0.165702,0.759671,0.136182,0.351225,0.581051,0.17782,0.896256,0.218381,0.18549,0.445717,0.517992,0.178745,0.750413,0.481303,0.137847,0.527016,0.290835,0.72426,0.502228,0.694921,0.16261,0.3408,0.0101732,0.538666,0.030103,0.771717,0.948481,0.156973,0.74368,0.668108,0.639985,0.112999,0.765272,0.0293437,0.976817,0.180428,0.645769,0.229185,0.265825,0.393542,0.738643,0.14846,0.617217,0.84562,0.451337,0.812223,0.305125,0.117296,0.798341,0.665712,0.677502,0.929052,0.836241,0.344703,0.705638,0.38604,0.131189,0.719929,0.157734,0.121547,0.750659,0.810408,0.440697,0.169035,0.000585318,0.312166,0.118543,0.591652,0.102594,0.793804,0.552636,0.0783166,0.720703,0.275939,0.653812,0.493193,0.341981,0.490161,0.979393,0.99213,0.698553,0.900506,0.923452,0.0862415,0.931667,0.549235,0.539535,0.431575,0.355506,0.559707,0.0572965,0.617762,0.429029,0.820882,0.983566,0.508461,0.626337,0.679631,0.937613,0.296659,0.339543,0.827621,0.669593,0.111718,0.55456,0.357096,0.352593,0.951607,0.333073,0.916297,0.263384,0.828111,0.910831,0.0788996,0.820783,0.193256,0.946013,0.299895,0.399496,0.881605,0.714463,0.514132,0.230969,0.141072,0.444395,0.711962,0.78535,0.500341,0.114776,0.341764,0.112881,0.541683,0.394772,0.283112,0.405057,0.932499,0.104738,0.750979,0.914805,0.612798,0.00457686,0.902076,0.582962,0.35005,0.69447,0.780656,0.219202,0.757652,0.128297,0.32268,0.271218,0.103727,0.226363,0.537506,0.663843,0.21321,0.00339454,0.40731,0.0277137,0.171687,0.582678,0.844833,0.642633,0.116101,0.0841317,0.659187,0.99428,0.444718,0.0396829,0.453416,0.493958,0.98271,0.939354,0.421227,0.941042,0.480703,0.463539,0.825215,0.288412,0.177084,0.58531,0.688141,0.33493,0.0134053,0.203467,0.538046,0.409378,0.665833,0.371449,0.799426,0.848374,0.288157,0.494912,0.39269,0.712387,0.659779,0.986838,0.471005,0.678037,0.042704,0.012933,0.177789,0.195479,0.754507,0.651272,0.138687,0.458253,0.686682,0.513633,0.0981525,0.389445,0.110586,0.289915,0.514058,0.221189,0.437629,0.37122,0.165664,0.212259,0.0859548,0.180029,0.506733,0.400633,0.83795,0.25183,0.858391,0.643648,0.498385,0.182793,0.0383096,0.707524,0.292316,0.327456,0.574911,0.159276,0.0303698,0.780163,0.383152,0.237889,0.329959,0.343148,0.689445,0.842759,0.398683,0.0722034,0.885514,0.70918,0.0600012,0.426693,0.952721,0.309778,0.54127,0.957644,0.650398,0.262627,0.514488,0.321702,0.813125,0.115451,0.762154,0.366641,0.143269,0.685427,0.843623,0.103374,0.962152,0.851524,0.300016,0.785104,0.221184,0.275543,0.963072,0.849197,0.844144,0.701371,0.396768,0.469453,0.664737,0.687818,0.370357,0.0852146,0.489385,0.770253,0.65872,0.909591,0.818767,0.487198,0.88554,0.615871,0.085126,0.70008,0.613344,0.161479,0.761427,0.792509,0.23938,0.167132,0.218652,0.923887,0.7918,0.932503,0.825012,0.953399,0.769033,0.77259,0.184486,0.660605,0.839686,0.67671,0.403051,0.815812,0.103865,0.0191835,0.610444,0.907836,0.887555,0.565574,0.403106,0.473003,0.710551,0.0022245,0.986952,0.0935554,0.236938,0.697686,0.976176,0.134372,0.7262,0.00874734,0.439412,0.227152,0.331878,0.966415,0.0513203,0.0151043,0.452642,0.726711,0.546292,0.949695,0.503453,0.835524,0.0624858,0.325993,0.108842,0.365917,0.62465,0.730787,0.680833,0.250266,0.291406,0.373591,0.239751,0.0360347,0.581734,0.402546,0.824824,0.0981531,0.494151,0.668281,0.972803,0.358951,0.148583,0.121604,0.696695,0.116212,0.746339,0.154,0.917236,0.28254,0.97875,0.254726,0.0383747,0.164727,0.421966,0.686886,0.363379,0.302483,0.612506,0.366694,0.0964199,0.436316,0.12861,0.280028,0.715828,0.88978,0.492572,0.280152,0.398398,0.639579,0.922511,0.22082,0.695087,0.57298,0.166603,0.328596,0.940798,0.070313,0.46246,0.826067,0.0488067,0.164062,0.310395,0.972805,0.103107,0.175636,0.688543,0.327679,0.885452,0.241618,0.378351,0.909228,0.697322,0.467746,0.708396,0.897626,0.520325,0.246048,0.673715,0.835098,0.549193,0.825822,0.277429,0.663305,0.247294,0.44252,0.344801,0.788038,0.92164,0.483139,0.111367,0.252166,0.0450577,0.975101,0.529734,0.0310932,0.851619,0.256432,0.110436,0.296404,0.181037,0.996829,0.857691,0.647666,0.554229,0.685711,0.90108,0.276923,0.724131,0.375589,0.314952,0.363235,0.0436188,0.179918,0.0737826,0.466653,0.857492,0.0645643,0.843284,0.535601,0.257525,0.451023,0.603413,0.735656,0.220197,0.612074,0.572575,0.0420066,0.0354717,0.254833,0.729774,0.686435,0.13286,0.702137,0.717526,0.767641,0.525931,0.380917,0.320008,0.535895,0.325591,0.599485,0.728212,0.28449,0.229044,0.822535,0.895128,0.588757,0.88413,0.631412,0.937177,0.934632,0.667005,0.600014,0.902759,0.957679,0.189437,0.46795,0.727114,0.367346,0.182394,0.84321,0.887373,0.465146,0.0250444,0.402749,0.408249,0.751581,0.540392,0.95616,0.340789,0.737175,0.904239,0.927822,0.398698,0.126962,0.189646,0.466054,0.758358,0.39417,0.344513,0.34373,0.425037,0.484728,0.916748,0.967878,0.357525,0.464111,0.9392,0.839216,0.365587,0.430817,0.620123,0.856782,0.598846,0.895294,0.0594691,0.505461,0.00552434,0.275532,0.937161,0.388956,0.0097664,0.865167,0.982676,0.389071,0.0281539,0.963485,0.0693054,0.322537,0.552197,0.32977,0.685072,0.057623,0.914069,0.595153,0.504133,0.472243,0.700606,0.0355288,0.95686,0.559363,0.0477961,0.538464,0.844785,0.235264,0.998841,0.659886,0.433043,0.662267,0.527894,0.891525,0.0597872,0.475119,0.646217,0.0441684,0.0388592,0.764551,0.506628,0.445016,0.0132151,0.911673,0.194102,0.0236025,0.823339,0.595147,0.156604,0.351706,0.454413,0.28992,0.858476,0.0858836,0.519792,0.354516,0.587432,0.853541,0.0291029,0.920453,0.909833,0.740898,0.348271,0.985239,0.23829,0.527298,0.985605,0.102269,0.20064,0.445536,0.323293,0.047052,0.769696,0.0626473,0.810462,0.243256,0.791736,0.277799,0.226998,0.283851,0.12808,0.135418,0.894022,0.431985,0.292039,0.940441,0.0573422,0.446893,0.345738,0.506035,0.766029,0.991593,0.2822,0.242723,0.0937915,0.317735,0.315938,0.754126,0.268332,0.325354,0.265508,0.431369,0.813403,0.776057,0.563518,0.358545,0.589451,0.705013,0.695078,0.817241,0.366361,0.0975527,0.00102341,0.550655,0.660564,0.373917,0.0684104,0.580574,0.142531,0.410385,0.105385,0.52541,0.440205,0.874637,0.4455,0.323185,0.571302,0.712955,0.26347,0.509734,0.479815,0.756457,0.0351034,0.170231,0.799416,0.281318,0.852796,0.536822,0.391534,0.0491347,0.916439,0.118259,0.619477,0.441764,0.591717,0.549654,0.345661,0.573368,0.0380215,0.27657,0.850926,0.661675,0.35487,0.368844,0.24448,0.748863,0.132153,0.263328,0.735322,0.418974,0.421349,0.318235,0.307379,0.101984,0.0036459,0.429128,0.768857,0.462894,0.792839,0.772607,0.722597,0.489723,0.61106,0.896775,0.66303,0.937542,0.255724,0.81487,0.225189,0.913895,0.403746,0.266149,0.228375,0.361227,0.472882,0.62665,0.673115,0.652626,0.354529,0.322609,0.750094,0.136226,0.225712,0.341671,0.0398394,0.338651,0.434488,0.597593,0.0883273,0.701182,0.393089,0.0148576,0.579742,0.960599,0.833899,0.174087,0.184188,0.74619,0.0934585,0.486162,0.793737,0.60168,0.134492,0.566338,0.122249,0.345554,0.453311,0.343576,0.762673,0.751498,0.313853,0.906179,0.539699,0.0276679,0.846604,0.329662,0.290712,0.282831,0.638819,0.586832,0.499752,0.920387,0.497171,0.145861,0.122354,0.00542682,0.675454,0.725819,0.391952,0.707938,0.401636,0.84907,0.484946,0.795818,0.894029,0.813947,0.8564,0.636198,0.889378,0.34004,0.517601,0.187033,0.264751,0.164264,0.769439,0.901307,0.369334,0.663743,0.818431,0.0395746,0.528213,0.72517,0.67883,0.685421,0.497026,0.679423,0.787713,0.315496,0.763454,0.207471,0.824403,0.538791,0.214929,0.138002,0.444612,0.455559,0.570239,0.107033,0.868745,0.368562,0.0949462,0.710926,0.496914,0.440173,0.677514,0.556859,0.886666,0.352269,0.744245,0.513548,0.232707,0.833967,0.113675,0.913549,0.875598,0.438307,0.0120023,0.381,0.573348,0.0937803,0.53196,0.577102,0.0218695,0.336443,0.501701,0.771775,0.98966,|0.533584,0.800084,0.16136,0.534105,0.798871,0.503447,0.200252,0.968252,0.430215,0.231265,0.155533,0.229336,0.158015,0.579432,0.0728253,0.898858,0.553365,0.648155,0.340132,0.901401,0.424552,0.143644,0.489687,0.709935,0.365683,0.056555,0.851028,0.695354,0.344592,0.565285,0.905461,0.739783,0.478521,0.781912,0.314264,0.66884,0.160371,0.370655,0.902399,0.513018,0.0199863,0.852476,0.444643,0.388173,0.579802,0.0606591,0.876476,0.634183,0.326445,0.235738,0.401101,0.542212,0.0287278,0.882747,0.225377,0.68423,0.666823,0.268089,0.34629,0.058114,0.3587,0.747172,0.0288306,0.303257,0.161094,0.495604,0.120918,0.512919,0.762345,0.74015,0.551555,0.45575,0.612622,0.66061,0.445936,0.608338,0.212415,0.431138,0.0383942,0.514087,0.271094,0.522404,0.417916,0.602641,0.297221,0.570739,0.2543,0.113081,0.145282,0.829705,0.701071,0.946334,0.835337,0.875936,0.671665,0.47972,0.686346,0.661449,0.413599,0.808908,0.687047,0.685045,0.831655,0.715829,0.218851,0.866509,0.258628,0.0423517,0.288574,0.871154,0.771788,0.17645,0.297526,0.175755,0.312002,0.580365,0.956355,0.713092,0.984655,0.901761,0.971115,0.87853,0.830911,0.0460204,0.112437,0.382214,0.300246,0.910948,0.865912,0.760884,0.556739,0.986806,0.635087,0.320404,0.751318,0.251215,0.0803297,0.856072,0.90571,0.0607746,0.892416,0.303319,0.58171,0.989555,0.820926,0.813653,0.0650428,0.771327,0.129119,0.151035,0.857406,0.377759,0.728189,0.365796,0.114566,0.832398,0.0510847,0.758407,0.503873,0.929031,0.0194132,0.340331,0.422693,0.689925,0.180987,0.670212,0.152244,0.922933,0.702196,0.643032,0.348509,0.668741,0.0506557,0.734613,0.105088,0.687109,0.273783,0.223195,0.0892269,0.906584,0.315369,0.7771,0.342227,0.0694128,0.025944,0.72772,0.0733376,0.510979,0.362557,0.278613,0.416253,0.882171,0.404916,0.411819,0.567767,0.985904,0.338175,0.105624,0.689235,0.661901,0.286763,0.832863,0.00104243,0.212612,0.523275,0.108744,0.201471,0.38634,0.559114,0.381568,0.693675,0.0866058,0.379666,0.915835,0.48955,0.720135,0.0818279,0.799723,0.698637,0.281601,0.875326,0.275373,0.639874,0.434144,0.979309,0.226308,0.86371,0.888937,0.582334,0.509366,0.331447,0.699784,0.431137,0.431596,0.439399,0.551106,0.212315,0.564805,0.859886,0.00516242,0.326966,0.727904,0.303701,0.512249,0.411085,0.823293,0.629369,0.979391,0.518319,0.0713773,0.862539,0.401114,0.535913,0.200947,0.774024,0.606079,0.167277,0.427904,0.32707,0.499689,0.0074451,0.846471,0.985537,0.756915,0.399873,0.87148,0.264626,0.681504,0.937224,0.472741,0.864999,0.207222,0.475917,0.899691,0.720036,0.5548,0.458981,0.131095,0.522864,0.15309,0.332963,0.670103,0.857208,0.739399,0.599225,0.0544127,0.609422,0.789321,0.550923,0.0586011,0.475352,0.700157,0.114376,0.231917,0.0886907,0.129523,0.454608,0.290318,0.236375,0.101609,0.614826,0.0781121,0.717943,0.0298878,0.733251,0.0784988,0.956788,0.153127,0.439629,0.700235,0.913802,0.756519,0.391492,0.0299621,0.536935,0.613424,0.263068,0.501693,0.61361,0.92124,0.436681,0.277463,0.917937,0.18002,0.414507,0.523305,0.0157763,0.0989807,0.566822,0.681506,0.474889,0.0483148,0.129105,0.0131172,0.996429,0.0471515,0.0595298,0.5472,0.935281,0.268191,0.589152,0.691833,0.410412,0.0220445,0.192313,0.966609,0.851573,0.394898,0.708922,0.903766,0.939102,0.106438,0.140009,0.483665,0.782512,0.292003,0.660518,0.0981069,0.190375,0.774172,0.663723,0.34693,0.876104,0.261028,0.0170931,0.444112,0.188154,0.760211,0.353979,0.822772,0.190459,0.0339606,0.881206,0.612081,0.371676,0.134872,0.36233,0.0594019,0.341807,0.67885,0.534682,0.351879,0.572097,0.107443,0.317258,0.392397,0.804842,0.784341,0.120837,0.450162,0.322894,0.765969,0.846751,0.743226,0.0896016,0.567726,0.880157,0.497784,0.813742,0.644122,0.558297,0.780754,0.385279,0.0513788,0.976966,0.172487,0.645781,0.602613,0.78335,0.375053,0.49888,0.0049324,0.300487,0.926824,0.968835,0.0585526,0.114009,0.407047,0.910871,0.951421,0.114844,0.468472,0.644702,0.588655,0.659512,0.0882583,0.726633,0.491365,0.0493663,0.917387,0.069972,0.387605,0.240825,0.0729366,0.982856,0.859253,0.782012,0.560693,0.431678,0.106195,0.0139199,0.0428642,0.69643,0.807855,0.579973,0.941823,0.932418,0.666362,0.813305,0.424096,0.338076,0.569811,0.451119,0.0845312,0.171454,0.61762,0.543834,0.572984,0.3579,0.833016,0.218445,0.7173,0.481838,0.734137,0.247979,0.116294,0.567047,0.61011,0.840345,0.576572,0.159953,0.362479,0.673395,0.574557,0.936467,0.120213,0.484669,0.467431,0.0531927,0.706861,0.073517,0.0390695,0.0578078,0.427514,0.811071,0.0622228,0.910682,0.33645,0.0584013,0.929082,0.844928,0.63668,0.361024,0.0399071,0.200688,0.529313,0.573225,0.73296,0.984123,0.865734,0.869132,0.174133,0.880793,0.475349,0.946318,0.17713,0.527031,0.805546,0.744812,0.00203103,0.460213,0.36259,0.161511,0.95698,0.783386,0.11041,0.0880212,0.0348371,0.241916,0.510643,0.697794,0.927458,0.0804921,0.18517,0.451198,0.805529,0.846946,0.950246,0.583749,0.711136,0.437541,0.433673,0.71322,0.218951,0.671236,0.527066,0.17703,0.27658,0.135719,0.213276,0.381016,0.340747,0.598502,0.26702,0.3234,0.150055,0.113192,0.189044,0.794843,0.247685,0.962476,0.866562,0.80267,0.897911,0.319264,0.522818,0.30799,0.598397,0.249566,0.930922,0.46867,0.75541,0.832563,0.744164,0.755366,0.918394,0.0675391,0.998806,0.0998504,0.107342,0.089533,0.754488,0.700021,0.813543,0.903905,0.275666,0.56028,0.960984,0.935922,0.871122,0.367266,0.588456,0.804995,0.433838,0.66397,0.567085,0.673634,0.0140643,0.99525,0.135334,0.480388,0.698823,0.297552,0.556158,0.13444,0.898154,0.619128,0.640099,0.140282,0.569701,0.36599,0.240365,0.759002,0.727716,0.586322,0.215116,0.628746,0.139064,0.76972,0.720032,0.509634,0.435687,0.38042,0.332349,0.397652,0.0720666,0.140545,0.817856,0.655956,0.959127,0.0415477,0.855277,0.882022,0.0870324,0.162499,0.738267,0.0282372,0.921944,0.88794,0.685326,0.439038,0.659445,0.243225,0.879573,0.572666,0.469762,0.616749,0.144421,0.823506,0.752466,0.599863,0.0270587,0.490878,0.0969275,0.983429,0.560409,0.0974481,0.0577902,0.278471,0.234596,0.135559,0.867865,0.418259,0.19333,0.487787,0.523661,0.0839655,0.568549,0.53889,0.280484,0.228125,0.572508,0.928299,0.10694,0.877598,0.185734,0.102695,0.0510492,0.607192,0.669411,0.331784,0.934669,0.310566,0.859136,0.763512,0.755542,0.309357,0.239775,0.758397,0.583227,0.835182,0.108438,0.210573,0.166892,0.149115,0.693649,0.000771523,0.774873,0.197383,0.656459,0.29477,0.161447,0.690063,0.583452,0.102499,0.530195,0.383654,0.707249,0.744368,0.428386,0.866744,0.725733,0.945115,0.0132264,0.989927,0.240611,0.165025,0.234753,0.745874,0.000721991,0.237951,0.620353,0.583559,0.149681,0.534014,0.352462,0.213443,0.590361,0.769035,0.197058,0.59982,0.641719,0.892655,0.0735533,0.939428,0.916573,0.336869,0.198118,0.132683,0.817837,0.113314,0.0275933,0.787467,0.883416,0.0260041,0.473227,0.753922,0.336019,0.370327,0.267506,0.187356,0.657802,0.702517,0.73959,0.117936,0.491252,0.560983,0.884515,0.51749,0.544337,0.991844,0.526389,0.948428,0.46363,0.0285172,0.834757,0.593601,0.555658,0.228852,0.565119,0.703421,0.34517,0.866691,0.888887,0.664982,0.139196,0.480777,0.357006,0.320377,0.55042,0.796146,0.452454,0.403811,0.41587,0.179213,0.187659,0.463767,0.843894,0.387578,0.423524,0.352667,0.853831,0.205222,0.130747,0.728481,0.433431,0.626077,0.792857,0.0466551,0.728132,0.502098,0.809923,0.643125,0.507771,0.95715,0.607254,0.831831,0.767353,0.824447,0.901318,0.913192,0.668863,0.160283,0.151587,0.438228,0.484904,0.356109,0.829851,0.91453,0.266592,0.136215,0.636427,0.563796,0.43583,0.875203,0.503775,0.0866042,0.544551,0.789778,0.166972,0.835121,0.179059,0.689811,0.383166,0.333485,0.123404,0.349295,0.0529444,0.113031,0.437778,0.244409,0.726434,0.854011,0.827183,0.528817,0.451492,0.635906,0.497834,0.0300315,0.449497,0.248469,0.0226535,0.964028,0.712301,0.462102,0.859448,0.118078,0.777043,0.334281,0.792225,0.38703,0.833766,0.163915,0.173734,0.281412,0.963737,0.0528531,0.487294,0.853736,0.154194,0.53199,0.219719,0.245513,0.00481284,0.181269,0.190984,0.351691,0.164151,0.905908,0.700102,0.905955,0.585434,0.636567,0.859647,0.479302,0.0845438,0.00507915,0.476237,0.113798,0.988949,0.0235316,0.221011,0.947066,0.588481,0.724361,0.149365,0.289185,0.106251,0.856429,0.509469,0.858363,0.440283,0.928466,0.420474,0.902825,0.157423,0.631828,0.191352,0.496146,0.620103,0.384383,0.389968,0.930025,0.186433,0.224203,0.475382,0.587915,0.960306,0.876549,0.942974,0.344944,0.0834913,0.325443,0.184271,0.749457,0.0692058,0.769305,0.740581,0.770097,0.557662,0.451311,0.0476513,0.0486236,0.0662986,0.132826,0.798975,0.0233135,0.891795,0.467537,0.824736,0.254269,0.0673095,0.189111,0.15429,0.790257,0.819571,0.227136,0.0164304,0.577215,0.161885,0.129622,0.777945,0.797106,0.526433,0.521735,0.324796,0.650482,0.811339,0.534893,0.0575736,0.287139,0.23655,0.597887,0.358332,0.828812,0.144309,0.201964,0.38192,0.0163014,0.664706,0.362542,0.316407,0.114931,0.730827,0.126426,0.892203,0.462135,0.0110515,0.453871,0.721527,0.354272,0.950994,0.148492,0.415079,0.401011,0.594611,0.0221046,0.526118,0.416733,0.0124432,0.161742,0.710811,0.816028,0.834602,0.132778,0.59637,0.0647326,0.816649,0.00192803,0.252548,0.579598,0.0305014,0.399155,0.795741,0.742272,0.697589,0.227888,0.624729,0.750141,0.389135,|0.120141,0.492247,0.086992,0.452142,0.568211,0.732832,0.136317,0.8025,0.340198,0.164352,0.200055,0.598267,0.558574,0.0196881,0.964769,0.774272,0.0346885,0.214833,0.565418,0.942822,0.498879,0.823907,0.528594,0.224893,0.752256,0.16591,0.309711,0.4046,0.125343,0.679637,0.178712,0.266021,0.264206,0.0449094,0.223589,0.642865,0.9748,0.685984,0.3994,0.457862,0.862621,0.158691,0.236475,0.741108,0.141962,0.906591,0.662258,0.0571584,0.365486,0.132964,0.955128,0.62715,0.185416,0.546712,0.628542,0.977552,0.887668,0.321522,0.553462,0.765855,0.563525,0.741863,0.902509,0.450555,0.589332,0.777859,0.869271,0.490236,0.150403,0.767945,0.759433,0.528056,0.389527,0.525118,0.259576,0.304945,0.364419,0.532895,0.307003,0.0786481,0.803426,0.788826,0.860779,0.653346,0.531909,0.183897,0.309205,0.278229,0.901897,0.263551,0.184112,0.600091,0.652942,0.511997,0.73906,0.197691,0.380659,0.481128,0.944626,0.700513,0.565746,0.462979,0.202138,0.133974,0.484676,0.977219,0.264567,0.329861,0.660717,0.144695,0.483665,0.939514,0.273845,0.817875,0.78125,0.146076,0.844182,0.922874,0.672506,0.877619,0.351159,0.788957,0.0118944,0.0222956,0.379757,0.426959,0.266338,0.0349697,0.196548,0.82827,0.263389,0.545875,0.679599,0.669621,0.697454,0.253066,0.713438,0.769817,0.54066,0.459507,0.220719,0.305449,0.102331,0.328754,0.828591,0.643444,0.836074,0.61015,0.915376,0.571903,0.787592,0.731995,0.394992,0.889959,0.560231,0.561387,0.904909,0.563205,0.292392,0.52023,0.0417243,0.921114,0.377104,0.756761,0.706667,0.249199,0.300075,0.184675,0.0513087,0.76688,0.846348,0.894529,0.0712582,0.824692,0.0969254,0.252056,0.112115,0.471474,0.400997,0.196572,0.904185,0.926201,0.40023,0.265515,0.534331,0.37693,0.0323596,0.274479,0.879154,0.106913,0.4358,0.437565,0.270741,0.764474,0.803014,0.61858,0.898247,0.306414,0.244348,0.546865,0.575813,0.129211,0.285768,0.862663,0.0203214,0.446723,0.530105,0.867313,0.216773,0.0597173,0.217489,0.589252,0.650667,0.896041,0.179978,0.605629,0.768728,0.0414338,0.0215216,0.120611,0.538973,0.403498,0.232969,0.118211,0.203713,0.94236,0.738015,0.742861,0.477364,0.58876,0.208764,0.448554,0.293408,0.0386914,0.158723,0.798885,0.426374,0.788691,0.621782,0.244579,0.506895,0.701607,0.130303,0.965366,0.237887,0.889538,0.485997,0.0300301,0.0794123,0.816099,0.319516,0.371354,0.514834,0.0768215,0.642742,0.0761663,0.121386,0.545692,0.655341,0.882085,0.825078,0.0873279,0.628122,0.405543,0.380254,0.318445,0.254785,0.0494562,0.613933,0.068397,0.589926,0.93022,0.187997,0.868422,0.996217,0.637685,0.897173,0.239279,0.871091,0.00710762,0.277031,0.24224,0.801918,0.709717,0.182089,0.756812,0.290124,0.233316,0.0136816,0.728525,0.0377206,0.743799,0.265874,0.634182,0.401091,0.866178,0.870135,0.231874,0.0960395,0.16384,0.918383,0.65379,0.44235,0.35906,0.911313,0.331291,0.587192,0.617279,0.731468,0.475049,0.192703,0.490759,0.568869,0.098528,0.941536,0.290894,0.404185,0.529436,0.321913,0.0270338,0.415672,0.0272871,0.331474,0.722421,0.29566,0.162837,0.802734,0.529338,0.844224,0.669481,0.165565,0.108275,0.160386,0.950588,0.254294,0.963328,0.285346,0.840745,0.235128,0.162763,0.564675,0.563275,0.755422,0.283369,0.169855,0.832268,0.40056,0.271921,0.0687838,0.0495769,0.631021,0.277346,0.684597,0.513742,0.220885,0.239999,0.314741,0.207839,0.76761,0.693987,0.368549,0.163984,0.103872,0.459099,0.60974,0.467616,0.531061,0.814179,0.147865,0.226549,0.51279,0.150307,0.151235,0.603842,0.859597,0.985909,0.914564,0.727106,0.542297,0.792945,0.238461,0.812571,0.136399,0.803826,0.889498,0.324556,0.332113,0.494262,0.241161,0.330057,0.65606,0.881531,0.830753,0.044385,0.738728,0.135065,0.0118313,0.266523,0.138505,0.435674,0.154129,0.494462,0.81535,0.518615,0.127151,0.782709,0.0137339,0.627962,0.807873,0.781273,0.570672,0.725199,0.889604,0.97363,0.0452246,0.156422,0.607866,0.05721,0.582991,0.0444977,0.821281,0.222333,0.901364,0.586872,0.839771,0.257624,0.218036,0.42271,0.902696,0.293856,0.483194,0.60402,0.708708,0.327747,0.778045,0.306335,0.861893,0.584227,0.348612,0.445507,0.647449,0.42408,0.32944,0.459551,0.500734,0.881281,0.446343,0.374021,0.846074,0.250503,0.939577,0.105993,0.968045,0.590301,0.970845,0.197731,0.0910252,0.184097,0.102936,0.345355,0.287799,0.743851,0.638754,0.409279,0.731737,0.308949,0.854953,0.131019,0.855027,0.728877,0.799652,0.843529,0.153701,0.582489,0.467899,0.104325,0.94744,0.466202,0.0695227,0.82178,0.137492,0.407515,0.594359,0.10319,0.728892,0.180347,0.754063,0.262173,0.955613,0.899805,0.583673,0.837011,0.28676,0.48139,0.751827,0.332414,0.21475,0.637303,0.0182537,0.3264,0.772341,0.511979,0.292795,0.184868,0.345788,0.277191,0.0733285,0.848583,0.456565,0.530021,0.502722,0.654013,0.1689,0.645691,0.30151,0.388155,0.929363,0.379441,0.472454,0.892173,0.436791,0.450517,0.0171057,0.997567,0.76484,0.931698,0.609785,0.970428,0.576512,0.673565,0.403927,0.00153399,0.466496,0.103022,0.508789,0.945989,0.417761,0.388266,0.211729,0.79226,0.80128,0.673784,0.878229,0.653657,0.071785,0.331635,0.608963,0.607915,0.73702,0.22796,0.219206,0.762564,0.249935,0.725664,0.885254,0.72304,0.384641,0.478498,0.740241,0.5318,0.304565,0.331225,0.0551695,0.696062,0.853856,0.557166,0.217769,0.965715,0.156808,0.957634,0.640443,0.0858029,0.96162,0.97343,0.29697,0.93443,0.194385,0.997243,0.548019,0.285822,0.285775,0.0407519,0.116582,0.461869,0.000281692,0.196594,0.711698,0.458159,0.309746,0.194437,0.390096,0.505133,0.305158,0.0568692,0.913468,0.462863,0.900816,0.709282,0.811264,0.245756,0.634083,0.64752,0.69418,0.243317,0.446276,0.134724,0.200208,0.262225,0.0454894,0.948726,0.861383,0.0367865,0.423563,0.657268,0.816743,0.531372,0.355885,0.846133,0.422722,0.844979,0.262936,0.336237,0.520217,0.46833,0.559199,0.309509,0.397802,0.9242,0.893158,0.176846,0.823384,0.0316469,0.47408,0.340508,0.0116247,0.561417,0.141359,0.811577,0.105929,0.537932,0.411039,0.154836,0.612225,0.173989,0.357107,0.616839,0.697894,0.175533,0.586315,0.247072,0.961461,0.0201147,0.789195,0.990218,0.896165,0.324,0.383769,0.244791,0.0123838,0.269707,0.00579548,0.744119,0.718454,0.53795,0.675479,0.239287,0.383173,0.981977,0.424048,0.409914,0.899224,0.0127648,0.747792,0.729527,0.40507,0.546264,0.635383,0.385591,0.704369,0.975182,0.701011,0.997449,0.784897,0.948438,0.894346,0.798449,0.63149,0.549036,0.829443,0.936386,0.0383192,0.542203,0.290041,0.138369,0.338767,0.944859,0.164699,0.0642334,0.949181,0.384508,0.226546,0.187786,0.57027,0.0152001,0.427938,0.952335,0.993957,0.898552,0.152898,0.334749,0.748966,0.735976,0.157626,0.479917,0.460604,0.0897344,0.115819,0.747287,0.790792,0.725023,0.138575,0.346167,0.266012,0.639482,0.221789,0.454404,0.104707,0.01661,0.692328,0.0203163,0.661783,0.481035,0.692165,0.253132,0.137062,0.552344,0.589576,0.891635,0.0737566,0.514112,0.630041,0.80135,0.326625,0.362902,0.679047,0.745482,0.731003,0.00289428,0.679658,0.820051,0.438136,0.944301,0.340282,0.128969,0.346519,0.553042,0.257609,0.402103,0.0963874,0.819681,0.603953,0.171154,0.987743,0.268937,0.92811,0.634994,0.617252,0.171071,0.54862,0.748219,0.0266626,0.524367,0.454426,0.773219,0.167736,0.206155,0.292081,0.905737,0.854589,0.15848,0.0704847,0.2064,0.717912,0.794049,0.504462,0.921376,0.886006,0.605686,0.867679,0.379671,0.725709,0.716898,0.860148,0.206586,0.520053,0.389499,0.930873,0.0282893,0.633898,0.429201,0.847743,0.343591,0.0590241,0.0797443,0.287054,0.194508,0.128201,0.523559,0.477704,0.999803,0.674506,0.273568,0.15125,0.0449785,0.583345,0.57373,0.936095,0.598037,0.986843,0.0655568,0.0727669,0.0288554,0.856484,0.990948,0.00112212,0.750416,0.368886,0.0274399,0.875977,0.516365,0.661612,0.885739,0.0327163,0.165237,0.913803,0.336707,0.352777,0.977225,0.554721,0.357972,0.514496,0.873622,0.432682,0.940027,0.658297,0.36234,0.158864,0.799403,0.680511,0.0188189,0.810146,0.958105,0.710247,0.883615,0.417931,0.00345647,0.596563,0.811272,0.84655,0.163614,0.587964,0.980693,0.920965,0.474701,0.60314,0.729861,0.59299,0.00287175,0.553992,0.731945,0.859797,0.88498,0.720921,0.197221,0.646253,0.162018,0.952624,0.746635,0.779615,0.0637228,0.0041557,0.283076,0.915742,0.813157,0.88141,0.828749,0.451699,0.770417,0.046322,0.559285,0.24183,0.107926,0.295865,0.41015,0.165013,0.0690877,0.617743,0.399403,0.88714,0.410513,0.970241,0.756266,0.250428,0.303288,0.411688,0.0391157,0.813825,0.0462884,0.656183,0.185186,0.9988,0.221677,0.980251,0.514026,0.750288,0.238554,0.584736,0.23212,0.555633,0.570883,0.0649191,0.185327,0.0734367,0.0468348,0.23482,0.616178,0.505446,0.889372,0.280895,0.32184,0.603644,0.297296,0.962835,0.729429,0.909727,0.481945,0.719053,0.156614,0.154129,0.713208,0.41899,0.215779,0.681599,0.273636,0.868037,0.0848058,0.261614,0.397289,0.635758,0.475777,0.129306,0.783366,0.630289,0.827737,0.333712,0.592837,0.33131,0.811969,0.163941,0.594641,0.107111,0.539259,0.185856,0.192754,0.297944,0.906992,0.0251585,0.159279,0.91252,0.319208,0.823357,0.0705402,0.737662,0.987767,0.926965,0.273932,0.309172,0.237266,0.960912,0.701616,0.304952,0.0649946,0.339246,0.57006,0.0381756,0.390137,0.587867,0.176978,0.0513463,0.318211,0.989783,0.0940778,0.0670238,0.497221,0.733092,0.949943,0.702988,0.574748,0.832107,0.874168,|0.52568,0.828753,0.567833,0.720566,0.43052,0.895131,0.951567,0.593371,0.779154,0.478995,0.704077,0.825876,0.0601013,0.652955,0.121312,0.627236,0.61154,0.047112,0.586399,0.307817,0.902933,0.0126095,0.834229,0.578797,0.151367,0.510831,0.348011,0.412583,0.542974,0.391778,0.161946,0.168092,0.723437,0.537927,0.840735,0.304591,0.531739,0.00464767,0.374543,0.620508,0.787445,0.481699,0.163899,0.166878,0.0479206,0.351496,0.925693,0.415412,0.853355,0.097334,0.34968,0.145424,0.40878,0.272398,0.0343122,0.81497,0.168941,0.391303,0.477034,0.232851,0.361953,0.138398,0.339792,0.962689,0.69874,0.268205,0.421568,0.0343834,0.905831,0.93594,0.00915802,0.919318,0.0956604,0.907164,0.411994,0.344894,0.975966,0.890984,0.2871,0.758422,0.32815,0.734544,0.333372,0.83366,0.334877,0.243613,0.631526,0.517764,0.733874,0.807799,0.722971,0.661479,0.80813,0.00509268,0.219987,0.488852,0.733015,0.989969,0.735971,0.818648,0.34454,0.432705,0.468607,0.675934,0.592281,0.810977,0.0846236,0.547835,0.769674,0.325767,0.505298,0.506455,0.12727,0.729929,0.524646,0.722378,0.415952,0.997689,0.937489,0.144609,0.974845,0.610054,0.982101,0.453231,0.933792,0.584852,0.7145,0.473685,0.463942,0.652897,0.936187,0.124599,0.669231,0.440174,0.974474,0.0397648,0.708335,0.580748,0.156827,0.403521,0.410957,0.570114,0.148218,0.101616,0.953832,0.656338,0.420556,0.752871,0.00962567,0.990885,0.769911,0.496767,0.536284,0.511187,0.0689192,0.00109899,0.973049,0.808664,0.0730034,0.167805,0.358175,0.532763,0.754165,0.724677,0.90832,0.260205,0.442645,0.358888,0.417766,0.640259,0.614764,0.133151,0.802031,0.70253,0.00992912,0.951473,0.198752,0.532197,0.297368,0.114063,0.516605,0.756886,0.146118,0.328584,0.134189,0.18104,0.493147,0.733024,0.303827,0.32743,0.559123,0.0545225,0.0766833,0.155858,0.163227,0.309295,0.336823,0.17907,0.97918,0.756734,0.141112,0.860549,0.116756,0.383678,0.290434,0.631861,0.679575,0.670569,0.433915,0.0214383,0.665114,0.264723,0.923827,0.541277,0.402005,0.711413,0.118874,0.645916,0.281908,0.7331,0.145546,0.691614,0.939089,0.484359,0.971835,0.741485,0.771112,0.75541,0.82173,0.416034,0.577454,0.471154,0.83986,0.533214,0.875958,0.412803,0.493428,0.223879,0.665522,0.684206,0.737193,0.7932,0.136547,0.605751,0.401323,0.987123,0.305284,0.645656,0.247092,0.457152,0.0675302,0.229353,0.0397663,0.885866,0.2653,0.130904,0.875103,0.507956,0.50556,0.1731,0.907923,0.606308,0.658546,0.180094,0.745055,0.143561,0.704185,0.798494,0.556191,0.803518,0.0854297,0.876746,0.0610021,0.268267,0.204826,0.721428,0.935674,0.71132,0.956105,0.615978,0.224015,0.148958,0.990454,0.445364,0.668911,0.381589,0.706889,0.913363,0.709191,0.119187,0.297021,0.498061,0.509122,0.412182,0.345766,0.472293,0.399304,0.355367,0.0967467,0.215986,0.776506,0.514526,0.0238069,0.435946,0.0293322,0.182973,0.272177,0.909857,0.406553,0.869614,0.655432,0.522046,0.10979,0.403322,0.28085,0.589148,0.610036,0.974447,0.0829822,0.397885,0.546481,0.885912,0.00801426,0.512946,0.815156,0.524554,0.730017,0.287943,0.477579,0.423437,0.313899,0.0583496,0.381184,0.454318,0.0852537,0.798706,0.292324,0.283824,0.649901,0.562558,0.215118,0.809103,0.347126,0.539635,0.0572582,0.843449,0.411037,0.61635,0.5445,0.556158,0.304843,0.70461,0.0527755,0.300074,0.779946,0.881839,0.119004,0.647505,0.494293,0.137388,0.766806,0.602463,0.0057928,0.869231,0.509085,0.906095,0.000297964,0.579489,0.647599,0.20024,0.851107,0.427109,0.5611,0.556458,0.989079,0.821372,0.485828,0.765078,0.715338,0.614813,0.320204,0.802472,0.539346,0.932526,0.909656,0.289717,0.028471,0.790687,0.936769,0.862141,0.0569492,0.40817,0.872009,0.399723,0.736418,0.651279,0.0221614,0.794123,0.8938,0.376884,0.356501,0.693386,0.961775,0.375119,0.158554,0.154282,0.573996,0.0722526,0.217406,0.666726,0.552925,0.165431,0.981662,0.52542,0.87995,0.654601,0.0623058,0.977103,0.102275,0.976362,0.685369,0.945142,0.228078,0.346007,0.548678,0.285713,0.215665,0.699666,0.804781,0.999569,0.717317,0.217276,0.554029,0.599817,0.37073,0.883173,0.619303,0.276866,0.0657024,0.536129,0.328059,0.7421,0.0513296,0.152037,0.795823,0.0289234,0.676174,0.127142,0.306942,0.673917,0.198898,0.860975,0.505919,0.547932,0.698006,0.315125,0.695161,0.773858,0.99623,0.269146,0.704897,0.348692,0.786822,0.246774,0.680386,0.129128,0.860715,0.0341361,0.269679,0.481653,0.526686,0.261451,0.553366,0.0341578,0.710164,0.205591,0.252985,0.284764,0.459982,0.859729,0.17643,0.928773,0.612237,0.907486,0.759194,0.427283,0.969369,0.427929,0.718101,0.465649,0.63124,0.526692,0.547944,0.45763,0.873272,0.148994,0.893523,0.45439,0.672009,0.61354,0.958332,0.306283,0.356454,0.747613,0.625123,0.248043,0.616489,0.789583,0.0157566,0.760363,0.0280939,0.411663,0.513067,0.2473,0.855546,0.0693052,0.70934,0.752144,0.30393,0.705338,0.164941,0.676359,0.0686551,0.877436,0.301984,0.67293,0.0201837,0.329573,0.347136,0.341424,0.910458,0.608922,0.818615,0.161251,0.33641,0.602699,0.506325,0.803145,0.266844,0.243015,0.612092,0.433587,0.608862,0.514404,0.872475,0.501458,0.708956,0.60551,0.336602,0.422836,0.935655,0.867,0.275732,0.591624,0.048916,0.254514,0.706684,0.180587,0.469592,0.689688,0.394003,0.121043,0.876106,0.578803,0.0252976,0.716901,0.414642,0.691109,0.752747,0.563919,0.310004,0.800514,0.961232,0.353834,0.848719,0.63718,0.428957,0.571401,0.213165,0.24435,0.992154,0.749892,0.290893,0.93975,0.309733,0.94424,0.752804,0.950587,0.00299251,0.167461,0.81183,0.689958,0.0865634,0.427961,0.875169,0.811277,0.556264,0.529975,0.186052,0.940112,0.774696,0.569533,0.973248,0.281274,0.570557,0.0765517,0.345035,0.965688,0.833485,0.228465,0.316328,0.102763,0.932981,0.125852,0.0668335,0.108239,0.0822966,0.878537,0.0420094,0.782837,0.129749,0.283171,0.033485,0.247573,0.0827904,0.632614,0.270648,0.437504,0.761006,0.703626,0.238762,0.467555,0.628433,0.984413,0.886806,0.410664,0.873842,0.0955085,0.862584,0.675449,0.332627,0.00354379,0.252969,0.769575,0.827304,0.748816,0.88255,0.54938,0.913078,0.775585,0.0641658,0.897922,0.906761,0.149457,0.940428,0.110933,0.586541,0.405528,0.538462,0.114958,0.914004,0.333366,0.137439,0.283993,0.819622,0.684323,0.799318,0.973439,0.908385,0.657879,0.858865,0.57043,0.37657,0.721916,0.18969,0.834616,0.767459,0.227745,0.580258,0.424166,0.683697,0.756462,0.31978,0.411115,0.847502,0.0734899,0.702682,0.988608,0.313612,0.295013,0.604642,0.891617,0.351937,0.639577,0.979913,0.198979,0.976779,0.616313,0.200957,0.204209,0.115872,0.564239,0.398087,0.21842,0.698663,0.225418,0.23351,0.829014,0.865965,0.0270983,0.507925,0.606661,0.285135,0.396997,0.572237,0.275975,0.311318,0.909579,0.715652,0.46284,0.574555,0.654369,0.310183,0.661526,0.343353,0.414467,0.443783,0.179673,0.15591,0.264953,0.523354,0.173996,0.388234,0.173824,0.635297,0.184449,0.932228,0.59347,0.670993,0.291639,0.919198,0.578856,0.0073604,0.893063,0.584031,0.549165,0.175354,0.844145,0.443486,0.787228,0.0390665,0.55719,0.832489,0.086432,0.6295,0.554046,0.445655,0.666185,0.718311,0.76715,0.665258,0.794306,0.620194,0.694013,0.925593,0.940634,0.334044,0.272552,0.37792,0.600581,0.563398,0.39326,0.0481287,0.297908,0.411761,0.886055,0.382343,0.34538,0.169789,0.623179,0.274275,0.277458,0.872503,0.561087,0.852568,0.663668,0.645066,0.714676,0.0484894,0.617483,0.122287,0.808398,0.421281,0.880792,0.239114,0.316626,0.658082,0.0130822,0.97082,0.49769,0.392647,0.719213,0.745359,0.433979,0.39743,0.964156,0.66958,0.176529,0.243541,0.889879,0.200243,0.326346,0.577322,0.978801,0.235329,0.00505435,0.819405,0.236108,0.0340829,0.879493,0.771866,0.651113,0.892264,0.165313,0.563739,0.283496,0.0452886,0.983082,0.595286,0.858404,0.531416,0.656467,0.314898,0.348735,0.378804,0.120088,0.366987,0.401724,0.391264,0.264286,0.944194,0.861445,0.383055,0.573175,0.954564,0.734344,0.961632,0.403246,0.315602,0.317981,0.383142,0.665318,0.873918,0.182976,0.994474,0.579329,0.610067,0.56739,0.906517,0.912123,0.726551,0.912822,0.915759,0.675038,0.558761,0.0526821,0.185828,0.691097,0.00498241,0.841945,0.0426711,0.577982,0.473714,0.415151,0.130307,0.399159,0.0438543,0.285765,0.849274,0.0466918,0.658405,0.812289,0.811676,0.479682,0.218302,0.622492,0.189428,0.0664615,0.640141,0.712484,0.276403,0.582025,0.936843,0.455778,0.551875,0.00799513,0.754633,0.40733,0.42956,0.37153,0.763982,0.315973,0.440766,0.653893,0.700551,0.266216,0.428912,0.412869,0.726704,0.142903,0.215708,0.73897,0.625061,0.893912,0.0122261,0.216062,0.999778,0.530622,0.816778,0.159861,0.732052,0.0261875,0.198195,0.498435,0.0403585,0.628451,0.179614,0.22667,0.118225,0.255065,0.251083,0.509122,0.917021,0.0587327,0.989339,0.633193,0.643459,0.567627,0.73817,0.172288,0.458557,0.751342,0.924565,0.215258,0.215185,0.0303257,0.781976,0.964022,0.529546,0.174764,0.205925,0.857398,0.864508,0.51472,0.90378,0.881315,0.80106,0.709876,0.39037,0.728769,0.228818,0.234155,0.378323,0.793546,0.866547,0.830635,0.866584,0.584154,0.0777047,0.0975132,0.427339,0.101127,0.882972,0.654047,0.461053,0.830794,0.894749,0.558551,0.640834,0.199129,0.173484,0.691567,0.0673672,0.478553,0.491176,0.77917,0.406271,0.379887,0.444134,0.343819,0.568947,0.660023,0.434028,0.454367,0.441068,0.15325,0.8667,0.275236,0.053695,0.346019,|0.777719,0.837399,0.43736,0.226835,0.987456,0.418351,0.671282,0.332036,0.209521,0.0924321,0.149757,0.841763,0.19648,0.133099,0.123326,0.895926,0.805335,0.593562,0.488053,0.868385,0.133961,0.858512,0.882303,0.595381,0.350534,0.472839,0.0425611,0.148238,0.633864,0.299827,0.302132,0.309396,0.38468,0.831808,0.0907876,0.714434,0.493931,0.344318,0.285764,0.776466,0.292415,0.104227,0.034783,0.444512,0.736828,0.330474,0.963821,0.327278,0.0316102,0.926721,0.629578,0.125492,0.53351,0.0598859,0.724933,0.428876,0.228171,0.540364,0.13844,0.704656,0.28326,0.149482,0.14102,0.0821511,0.604509,0.991918,0.238764,0.962226,0.567444,0.582322,0.470467,0.809022,0.672729,0.144772,0.438736,0.851858,0.504399,0.677863,0.442454,0.369463,0.198514,0.17479,0.579674,0.603551,0.78779,0.422404,0.226848,0.383868,0.606177,0.859974,0.37408,0.211914,0.666737,0.102476,0.567848,0.170296,0.598343,0.680766,0.758867,0.416855,0.0599756,0.688814,0.291151,0.466428,0.258949,0.71358,0.301912,0.726413,0.782479,0.0530198,0.9875,0.0317506,0.206954,0.420685,0.120223,0.492533,0.742843,0.577113,0.471252,0.920339,0.104136,0.0539368,0.00167525,0.789063,0.474561,0.800073,0.370509,0.990148,0.640369,0.338709,0.358789,0.181985,0.751672,0.687265,0.87313,0.733765,0.643341,0.422606,0.133201,0.823663,0.341747,0.114463,0.997,0.703853,0.481091,0.521855,0.922889,0.234465,0.721093,0.181796,0.896778,0.394777,0.963038,0.43011,0.244293,0.699882,0.624364,0.0545915,0.310802,0.560755,0.891995,0.667329,0.803229,0.447881,0.599718,0.34508,0.257562,0.348912,0.74411,0.0810881,0.369906,0.403227,0.182103,0.930282,0.502778,0.481935,0.68067,0.0529066,0.660359,0.467607,0.859745,0.463454,0.63212,0.758887,0.897557,0.708356,0.924229,0.942511,0.543929,0.563023,0.865243,0.443996,0.454367,0.858852,0.735087,0.74839,0.26052,0.461251,0.73662,0.525959,0.29109,0.21461,0.486079,0.516535,0.845772,0.350114,0.184609,0.464857,0.942062,0.595064,0.870406,0.15885,0.564263,0.0717145,0.703758,0.321506,0.273861,0.990425,0.254311,0.427116,0.527286,0.768817,0.212233,0.556433,0.546999,0.539415,0.192839,0.679686,0.863245,0.53586,0.185937,0.308427,0.323658,0.323199,0.875066,0.203255,0.678557,0.614623,0.846948,0.0462307,0.885499,0.812676,0.255689,0.468442,0.165873,0.00173938,0.996161,0.404031,0.546688,0.742692,0.431678,0.75388,0.415682,0.300802,0.790553,0.601831,0.24713,0.186114,0.920879,0.815059,0.511416,0.199986,0.243048,0.446353,0.39107,0.697236,0.511019,0.0605022,0.789324,0.179753,0.0267961,0.700168,0.851391,0.182854,0.721534,0.313318,0.839291,0.657552,0.619608,0.654437,0.0437021,0.180258,0.342189,0.679011,0.165548,0.821327,0.518814,0.418433,0.519386,0.401969,0.447477,0.940311,0.19229,0.753787,0.996312,0.354265,0.268244,0.194836,0.0511001,0.0301045,0.483742,0.266392,0.205697,0.50223,0.824534,0.210363,0.133799,0.739412,0.216722,0.438601,0.272113,0.59499,0.812369,0.112398,0.933112,0.0589526,0.455242,0.650031,0.425956,0.251928,0.656378,0.66235,0.283643,0.886424,0.883248,0.0715315,0.465823,0.13781,0.709318,0.045723,0.755883,0.996904,0.136275,0.156857,0.397174,0.868582,0.167587,0.47506,0.758613,0.875811,0.428321,0.487623,0.915515,0.116282,0.709452,0.856199,0.501313,0.191032,0.539651,0.79634,0.244232,0.52912,0.887557,0.343477,0.645242,0.710831,0.0813272,0.604684,0.678839,0.437967,0.707853,0.849242,0.11001,0.7231,0.234537,0.856212,0.643194,0.128043,0.45222,0.664878,0.00704068,0.0677326,0.343207,0.202123,0.092122,0.017535,0.252275,0.800951,0.204346,0.220772,0.358825,0.797302,0.65531,0.728569,0.307355,0.39766,0.655964,0.189424,0.818067,0.989458,0.570688,0.900124,0.411773,0.730281,0.984419,0.362074,0.451772,0.315124,0.841098,0.765651,0.749694,0.979103,0.226601,0.321251,0.727722,0.0934772,0.409843,0.18504,0.675124,0.167625,0.948989,0.953269,0.42195,0.487661,0.73982,0.0723346,0.419364,0.372532,0.172931,0.686024,0.742425,0.0330917,0.505224,0.496338,0.0641779,0.952936,0.904287,0.887373,0.660409,0.618146,0.75996,0.646656,0.483274,0.469433,0.0799266,0.717572,0.20528,0.511318,0.428447,0.994658,0.263829,0.510252,0.991173,0.176963,0.898643,0.372621,0.284535,0.0653279,0.715858,0.847522,0.285002,0.21695,0.0320572,0.840002,0.168274,0.0354607,0.37628,0.345142,0.0242279,0.203827,0.909291,0.997406,0.834611,0.307713,0.698512,0.735371,0.929759,0.552404,0.784862,0.383796,0.420057,0.15133,0.796771,0.206149,0.889265,0.344587,0.291836,0.199725,0.446944,0.182368,0.182316,0.333415,0.551791,0.19777,0.726841,0.0157087,0.174782,0.998641,0.927527,0.790129,0.0526211,0.0454168,0.433516,0.637157,0.387684,0.563628,0.445426,0.779379,0.39985,0.485054,0.85645,0.739535,0.780308,0.343246,0.387688,0.776918,0.644699,0.669929,0.327645,0.0311189,0.514535,0.867738,0.969613,0.396329,0.889277,0.751037,0.141391,0.994174,0.315524,0.93008,0.219405,0.139781,0.147965,0.980274,0.283572,0.0600926,0.62586,0.355255,0.302668,0.298174,0.481193,0.780366,0.374244,0.320278,0.575916,0.420968,0.605962,0.869815,0.0738617,0.322466,0.690316,0.962283,0.322726,0.554973,0.71721,0.556007,0.297791,0.577626,0.523047,0.127026,0.621335,0.420019,0.967414,0.999793,0.639112,0.684687,0.930293,0.509317,0.328904,0.934872,0.98223,0.164721,0.728338,0.621257,0.389965,0.726012,0.918114,0.63775,0.932447,0.167943,0.670238,0.176268,0.986919,0.492395,0.846066,0.44674,0.5871,0.216992,0.802638,0.333585,0.0152625,0.0986159,0.357809,0.867726,0.162057,0.995269,0.246875,0.786532,0.929312,0.710446,0.963487,0.806024,0.460976,0.613747,0.418673,0.173851,0.146,0.645101,0.314447,0.33254,0.809403,0.15646,0.950756,0.183009,0.0526714,0.395891,0.961222,0.337843,0.323913,0.0661633,0.835166,0.487128,0.444685,0.80411,0.31607,0.42512,0.895693,0.941918,0.977815,0.381266,0.726879,0.196163,0.858438,0.780987,0.384324,0.342857,0.899455,0.543678,0.43652,0.915732,0.719675,0.323075,0.903079,0.154357,0.833686,0.788776,0.860443,0.0837774,0.0457082,0.200367,0.853693,0.860416,0.699492,0.499189,0.98844,0.780723,0.184674,0.886078,0.203067,0.912141,0.500206,0.374436,0.932017,0.844211,0.263702,0.431359,0.567306,0.940245,0.629669,0.278583,0.117696,0.882091,0.0303576,0.671513,0.685695,0.766388,0.179498,0.682531,0.17156,0.734254,0.729612,0.485747,0.635842,0.56667,0.409751,0.837646,0.827185,0.089685,0.480827,0.0857481,0.919479,0.977244,0.0388549,0.986146,0.222522,0.268202,0.329218,0.920939,0.659465,0.463504,0.0744928,0.258567,0.843974,0.815708,0.134247,0.931221,0.667828,0.633929,0.163046,0.84388,0.757037,0.871972,0.813421,0.801337,0.640666,0.130702,0.212701,0.380249,0.711326,0.957177,0.945962,0.414398,0.862515,0.995469,0.360978,0.438415,0.798931,0.33749,0.455717,0.0340377,0.846148,0.517899,0.857656,0.942493,0.190591,0.186591,0.779999,0.671148,0.573676,0.335218,0.0996671,0.0127301,0.510101,0.27109,0.629416,0.410711,0.110932,0.824587,0.502744,0.88294,0.659186,0.221401,0.464098,0.437388,0.825733,0.698292,0.260531,0.637016,0.290105,0.701067,0.146276,0.420238,0.9387,0.942474,0.733978,0.639969,0.787018,0.0535535,0.29934,0.970578,0.560421,0.524259,0.601318,0.871389,0.294951,0.678451,0.46941,0.896902,0.196299,0.175611,0.874302,0.0842447,0.219654,0.236791,0.594793,0.940019,0.320633,0.737676,0.515641,0.8764,0.212802,0.23553,0.702633,0.494446,0.34431,0.437102,0.947528,0.896593,0.245645,0.0638856,0.0180866,0.718362,0.606211,0.442199,0.288242,0.917695,0.511977,0.917239,0.746989,0.974217,0.926099,0.600503,0.421042,0.57204,0.136335,0.219583,0.619869,0.599004,0.179873,0.0876251,0.945247,0.218912,0.457604,0.914346,0.924195,0.11502,0.918726,0.679732,0.727824,0.133439,0.280889,0.783677,0.200886,0.469351,0.804843,0.54033,0.380101,0.265361,0.177199,0.7867,0.0321525,0.137224,0.729275,0.275305,0.373897,0.690845,0.47983,0.849674,0.0355745,0.0964193,0.0218849,0.319349,0.65775,0.861829,0.221282,0.74876,0.398169,0.730136,0.98682,0.626548,0.991894,0.807085,0.0519822,0.462669,0.640144,0.031586,0.542319,0.457329,0.556048,0.666332,0.874289,0.103936,0.323442,0.464762,0.241078,0.0950536,0.563424,0.192888,0.231374,0.1948,0.94021,0.914782,0.266352,0.216161,0.901588,0.166383,0.0689511,0.21252,0.218665,0.651852,0.516082,0.288962,0.926201,0.389479,0.320799,0.474939,0.966713,0.468834,0.201317,0.498688,0.647553,0.14766,0.324727,0.00629783,0.535725,0.344395,0.350812,0.98675,0.597245,0.724601,0.899821,0.911722,0.393476,0.0717517,0.827627,0.0642961,0.206149,0.843568,0.945021,0.342855,0.036036,0.0428877,0.734782,0.630919,0.743699,0.87794,0.249869,0.340844,0.621426,0.983373,0.897671,0.373107,0.318093,0.157142,0.756873,0.278746,0.512651,0.0837941,0.711397,0.258104,0.241328,0.569218,0.662611,0.893564,0.859244,0.505621,0.256358,0.591516,0.66926,0.438033,0.775521,0.984503,0.257326,0.690292,0.440952,0.648835,0.850834,0.380634,0.227215,0.676933,0.74081,0.838384,0.2728,0.186548,0.927291,0.951716,0.201391,0.295752,0.558543,0.226027,0.214175,0.816619,0.916435,0.954041,0.341603,0.796744,0.545812,0.276479,0.12593,0.542624,0.690306,0.157034,0.990635,0.635562,0.747377,0.166535,0.596317,0.0237942,0.862031,0.43156,0.266544,0.24849,0.941076,0.957757,0.310851,0.477985,0.674839,0.0724617,0.238897,0.921185,0.514165,0.667383,0.956683,0.073245,0.903051,0.677194,0.0927465,0.0243977,0.504657,0.960048,|0.975292,0.191968,0.0303397,0.0721306,0.234308,0.271031,0.75068,0.618147,0.770691,0.494034,0.974492,0.291721,0.457964,0.206586,0.811349,0.789855,0.689605,0.392884,0.921119,0.561231,0.478092,0.530527,0.392965,0.51359,0.719879,0.34953,0.619411,0.13135,0.749991,0.586377,0.283664,0.890709,0.99348,0.0275008,0.608583,0.509198,0.550792,0.847533,0.699696,0.783215,0.895066,0.010113,0.963154,0.883703,0.0984718,0.928037,0.531716,0.840422,0.713362,0.0124502,0.335968,0.262657,0.263541,0.303925,0.823473,0.771413,0.811839,0.299918,0.0898173,0.0704295,0.182416,0.138209,0.0857553,0.095144,0.601083,0.263102,0.391235,0.808574,0.483389,0.628738,0.287922,0.296803,0.82542,0.115524,0.103616,0.189456,0.257743,0.0866595,0.361845,0.855353,0.153422,0.591701,0.231283,0.659651,0.592849,0.415618,0.666451,0.183914,0.540561,0.135502,0.255047,0.146153,0.109777,0.0938714,0.939275,0.739169,0.138483,0.959164,0.421415,0.490489,0.377076,0.331619,0.592124,0.366216,0.966025,0.87703,0.977247,0.152956,0.610505,0.0523,0.668286,0.948689,0.19912,0.162586,0.83268,0.274693,0.0841353,0.151067,0.313048,0.20765,0.278334,0.187916,0.389151,0.400461,0.444985,0.0285504,0.998075,0.106768,0.297732,0.755322,0.0778846,0.423114,0.405498,0.872773,0.479222,0.127509,0.265202,0.741802,0.969198,0.0485533,0.174152,0.905099,0.418631,0.316558,0.83492,0.279787,0.261313,0.859701,0.329356,0.427687,0.308532,0.715225,0.602899,0.152192,0.449649,0.280102,0.155819,0.295388,0.03095,0.0305149,0.407396,0.863342,0.610412,0.38208,0.564948,0.368576,0.273759,0.658876,0.305388,0.78169,0.0858287,0.269552,0.3457,0.925901,0.490293,0.820848,0.405937,0.119341,0.960272,0.717643,0.777655,0.424044,0.0508046,0.395411,0.0689834,0.619243,0.996045,0.386676,0.966376,0.0400292,0.38696,0.891125,0.655761,0.0266182,0.599168,0.141527,0.0684481,0.990687,0.835388,0.0632203,0.220999,0.933562,0.158955,0.708108,0.228361,0.697716,0.639305,0.807541,0.96527,0.863547,0.915416,0.568158,0.971808,0.0854461,0.253583,0.921169,0.0267347,0.593291,0.359242,0.919029,0.577586,0.546604,0.689666,0.765468,0.935622,0.842623,0.448754,0.727725,0.693274,0.359238,0.550634,0.0347312,0.586209,0.614646,0.425263,0.976435,0.216774,0.494826,0.135031,0.930974,0.713298,0.743427,0.750124,0.382232,0.0891874,0.65416,0.425854,0.902759,0.0522568,0.065429,0.382625,0.488942,0.224984,0.740489,0.393334,0.174727,0.339161,0.236582,0.636729,0.91643,0.867203,0.81906,0.806884,0.0260792,0.621714,0.245914,0.0620514,0.864453,0.094017,0.168173,0.808835,0.210171,0.912567,0.967795,0.820476,0.16816,0.0630064,0.652183,0.151019,0.0751869,0.636213,0.626232,0.721741,0.0432998,0.48326,0.381069,0.222549,0.108156,0.984161,0.409607,0.112501,0.779669,0.505122,0.997341,0.0273743,0.263012,0.11858,0.377015,0.145894,0.973546,0.953418,0.813619,0.800125,0.625016,0.737312,0.494981,0.92968,0.945013,0.0391912,0.294147,0.697261,0.254154,0.342965,0.521898,0.0607824,0.393829,0.737718,0.198913,0.142753,0.0360852,0.884659,0.271916,0.106308,0.0320993,0.735135,0.118319,0.925476,0.815409,0.0240551,0.741644,0.961496,0.842221,0.862584,0.941438,0.16918,0.491611,0.481299,0.419744,0.496434,0.661795,0.355151,0.75622,0.901092,0.260975,0.985538,0.958429,0.384291,0.27336,0.00428468,0.123978,0.492922,0.877184,0.340305,0.88885,0.319911,0.619767,0.409833,0.0766115,0.668238,0.855589,0.143779,0.161943,0.676816,0.197681,0.761492,0.977558,0.748942,0.673942,0.486681,0.2724,0.269602,0.474253,0.737356,0.29612,0.84692,0.53586,0.279423,0.655403,0.603798,0.129216,0.0830789,0.150925,0.563161,0.234128,0.787973,0.473375,0.440555,0.63713,0.965271,0.757886,0.572447,0.432314,0.72759,0.476479,0.691538,0.0308266,0.690297,0.912123,0.0662485,0.848288,0.464696,0.136247,0.982772,0.107965,0.0575501,0.380165,0.827635,0.695486,0.72922,0.774199,0.77272,0.657373,0.570281,0.968979,0.601853,0.496432,0.994845,0.656018,0.177024,0.458603,0.311711,0.242099,0.505756,0.41264,0.224452,0.93832,0.444568,0.660582,0.561925,0.333772,0.872068,0.00565475,0.346594,0.845292,0.830897,0.714329,0.449019,0.376633,0.167372,0.134432,0.953629,0.987704,0.106642,0.455271,0.179504,0.306949,0.442036,0.766525,0.200146,0.244204,0.896485,0.112876,0.98312,0.850319,0.546258,0.496803,0.573788,0.752999,0.288897,0.735713,0.894597,0.170695,0.979247,0.0580012,0.475564,0.0797992,0.149908,0.302413,0.686222,0.0268169,0.351099,0.710387,0.585851,0.404511,0.437761,0.903637,0.25487,0.799409,0.724196,0.961763,0.550998,0.67079,0.0652452,0.0587238,0.98574,0.226799,0.681742,0.0767726,0.941178,0.977425,0.411037,0.715108,0.48184,0.534152,0.968785,0.604568,0.962309,0.247671,0.433556,0.958291,0.323808,0.383177,0.241564,0.591636,0.495481,0.516906,0.522895,0.783544,0.883764,0.915564,0.442408,0.903348,0.456558,0.770994,0.079354,0.189502,0.0956235,0.0725169,0.646824,0.906468,0.0131776,0.332761,0.0567348,0.0771414,0.717003,0.566481,0.297984,0.744622,0.762897,0.497933,0.9066,0.123684,0.118544,0.556035,0.514394,0.528215,0.0418096,0.336128,0.893666,0.72642,0.902684,0.69154,0.158404,0.810847,0.624967,0.44867,0.428139,0.424885,0.11956,0.5335,0.920089,0.406749,0.95789,0.840707,0.576188,0.163713,0.0817891,0.734404,0.221882,0.541338,0.276183,0.534797,0.752189,0.415296,0.531537,0.449528,0.678164,0.155149,0.673334,0.42007,0.431152,0.399053,0.0909652,0.862243,0.0687984,0.894317,0.298101,0.0792627,0.749218,0.399761,0.446163,0.164769,0.399208,0.591582,0.557498,0.352809,0.685667,0.0560957,0.96539,0.658757,0.25547,0.653195,0.300204,0.169653,0.123739,0.731825,0.687476,0.531214,0.168081,0.17385,0.153368,0.61948,0.527136,0.645851,0.50999,0.781273,0.717451,0.911732,0.333596,0.719775,0.681965,0.93462,0.011726,0.0784162,0.678049,0.723014,0.490942,0.517597,0.00258505,0.576086,0.00950968,0.204003,0.142563,0.0559633,0.537364,0.528464,0.709864,0.625019,0.444001,0.711595,0.340126,0.177577,0.386486,0.979308,0.327135,0.680408,0.993496,0.0655892,0.20266,0.267724,0.466179,0.824412,0.673066,0.42151,0.822461,0.675289,0.642697,0.0623931,0.306431,0.71848,0.674418,0.519117,0.906495,0.723577,0.399859,0.297356,0.620911,0.286961,0.563156,0.405274,0.42489,0.422481,0.115978,0.240206,0.477402,0.393447,0.0942799,0.376924,0.0609574,0.724691,0.644311,0.342257,0.339428,0.184559,0.834674,0.387179,0.823507,0.179385,0.944632,0.799752,0.595544,0.635731,0.144605,0.893857,0.231926,0.0054388,0.94361,0.250087,0.609907,0.291521,0.86058,0.838493,0.294331,0.316883,0.81302,0.983343,0.700412,0.606934,0.253168,0.843525,0.485418,0.595207,0.208101,0.767509,0.28577,0.609963,0.806757,0.181364,0.0445879,0.964215,0.445971,0.996606,0.233861,0.224019,0.0494206,0.529294,0.561928,0.599374,0.554513,0.430027,0.482857,0.951273,0.288984,0.371569,0.579378,0.254201,0.402867,0.62563,0.0278606,0.939966,0.998879,0.517675,0.948142,0.393117,0.460213,0.923955,0.25724,0.0472863,0.275509,0.266918,0.307624,0.933243,0.110546,0.723087,0.266055,0.103345,0.818106,0.425057,0.922598,0.23128,0.60526,0.718622,0.330352,0.0692756,0.415877,0.31556,0.406686,0.182892,0.936433,0.338665,0.597885,0.530768,0.162377,0.650751,0.635904,0.586685,0.655895,0.426439,0.112369,0.131584,0.557973,0.221455,0.605586,0.240479,0.0696872,0.0357804,0.497275,0.21443,0.425719,0.473791,0.960742,0.99629,0.975844,0.0283363,0.517287,0.244122,0.312426,0.785597,0.635641,0.1141,0.562293,0.700802,0.525374,0.861702,0.638453,0.0154508,0.801587,0.483655,0.566129,0.184276,0.948555,0.854386,0.491491,0.0348587,0.475359,0.67784,0.0603421,0.559119,0.806646,0.899103,0.746086,0.799202,0.824264,0.00666076,0.861992,0.747963,0.0983692,0.156584,0.499385,0.754776,0.480404,0.989348,0.0900376,0.582973,0.237925,0.0663541,0.537966,0.467754,0.654915,0.92622,0.801988,0.199329,0.488456,0.853199,0.136496,0.302485,0.0520315,0.683149,0.25683,0.9481,0.853057,0.267544,0.648353,0.475593,0.0528371,0.807443,0.659618,0.0838104,0.386035,0.544058,0.326878,0.11309,0.570666,0.808007,0.810283,0.633029,0.253637,0.0864816,0.0463092,0.911993,0.670005,0.923094,0.343107,0.0615972,0.794378,0.585079,0.784409,0.90504,0.891319,0.780967,0.780817,0.660661,0.603734,0.00237226,0.248018,0.902773,0.61669,0.130753,0.382722,0.931356,0.829336,0.995343,0.601366,0.704638,0.449532,0.728865,0.442277,0.813476,0.957451,0.631477,0.219398,0.166702,0.599253,0.55254,0.769983,0.467491,0.479552,0.401121,0.689027,0.984706,0.352252,0.215036,0.602551,0.79932,0.105006,0.736491,0.997051,0.356848,0.724477,0.551673,0.62617,0.355977,0.892999,0.754424,0.935341,0.995575,0.982823,0.813099,0.480853,0.474002,0.523535,0.881815,0.450804,0.550107,0.160568,0.584294,0.445226,0.730704,0.600385,0.0108331,0.177576,0.0858248,0.565421,0.595843,0.929151,0.610295,0.51953,0.481366,0.267455,0.763799,0.533275,0.433664,0.992498,0.257803,0.276942,0.100002,0.678916,0.985232,0.0631312,0.749517,0.562626,0.830326,0.976842,0.840538,0.239414,0.867618,0.973275,0.0321321,0.372767,0.866253,0.0880567,0.0169958,0.99114,0.306319,0.0761422,0.924007,0.661559,0.225554,0.453176,0.40802,0.681563,0.469931,0.334662,0.65741,0.594447,0.938732,0.739212,0.681868,0.895841,0.614592,0.414705,0.0956381,0.93743,0.506736,0.39746,0.450876,0.67706,0.174967,0.803889,0.445207,0.15561,0.837906,0.697762,0.174549,0.450927,0.12394,0.307391,0.441121,0.397746,0.0188012,|0.919519,0.150028,0.0131061,0.354181,0.850097,0.23519,0.678983,0.356346,0.362924,0.651563,0.177508,0.534051,0.262815,0.232316,0.742652,0.625195,0.0411938,0.508771,0.509391,0.185375,0.0335562,0.156878,0.395331,0.617484,0.616413,0.68817,0.489026,0.132965,0.994826,0.793261,0.623708,0.466483,0.2273,0.407977,0.295619,0.838911,0.848538,0.449347,0.772819,0.997538,0.0265898,0.288094,0.230854,0.191183,0.608015,0.0045324,0.551736,0.608098,0.509012,0.422567,0.849421,0.959487,0.690849,0.574067,0.730373,0.241091,0.406422,0.634296,0.156855,0.673953,0.211676,0.283555,0.81913,0.517926,0.965104,0.594589,0.702467,0.716469,0.634523,0.0130826,0.026355,0.997815,0.528155,0.329357,0.79602,0.643194,0.679534,0.762056,0.426207,0.365063,0.432104,0.799931,0.785504,0.455461,0.398019,0.116445,0.0111793,0.218637,0.00362533,0.72492,0.699216,0.527045,0.827029,0.841083,0.478195,0.57854,0.341749,0.286697,0.223908,0.66849,0.502456,0.351254,0.707185,0.428711,0.938618,0.823865,0.429497,0.904017,0.213817,0.0435336,0.140262,0.902367,0.697881,0.57469,0.644235,0.654765,0.944279,0.149027,0.54873,0.592329,0.040528,0.0724284,0.0178553,0.955038,0.553603,0.266565,0.589576,0.792381,0.137401,0.329795,0.335015,0.92464,0.257141,0.666427,0.298717,0.412188,0.336526,0.721622,0.387603,0.960546,0.590356,0.223,0.606784,0.843878,0.74895,0.93445,0.977629,0.124157,0.868811,0.148243,0.114371,0.263467,0.716781,0.248529,0.228967,0.10603,0.656294,0.171111,0.867863,0.569464,0.805221,0.496188,0.325766,0.183163,0.88613,0.67014,0.864883,0.204298,0.402203,0.983729,0.0609697,0.481037,0.544523,0.873678,0.764812,0.958021,0.48293,0.939564,0.962477,0.383751,0.409108,0.444736,0.828866,0.7414,0.333948,0.0356195,0.793065,0.796681,0.195453,0.723278,0.179652,0.301501,0.386632,0.41757,0.111933,0.941364,0.991258,0.448131,0.972914,0.835434,0.788498,0.380433,0.874134,0.223094,0.165913,0.564244,0.386462,0.735013,0.551361,0.842934,0.753469,0.0778713,0.0745465,0.289214,0.149641,0.860969,0.10398,0.0408881,0.812837,0.146511,0.416303,0.135846,0.550511,0.601045,0.205936,0.142092,0.579016,0.927834,0.229852,0.182008,0.977339,0.382412,0.777058,0.481843,0.793591,0.808499,0.253994,0.29571,0.263959,0.429064,0.564303,0.445738,0.611447,0.554469,0.759669,0.787012,0.888731,0.822338,0.405819,0.891917,0.129335,0.48699,0.829576,0.698251,0.0705692,0.0692624,0.248795,0.659859,0.108967,0.118567,0.0388993,0.482699,0.273213,0.520778,0.15332,0.922267,0.559438,0.805004,0.84834,0.499535,0.280075,0.300502,0.587863,0.754947,0.847658,0.572076,0.824858,0.351666,0.694917,0.884856,0.482994,0.823338,0.317192,0.230614,0.380423,0.604265,0.958504,0.987524,0.210148,0.33735,0.064683,0.105807,0.0334463,0.693896,0.162459,0.492096,0.235223,0.403332,0.678177,0.986708,0.920708,0.749171,0.87844,0.0674977,0.548089,0.0247717,0.492021,0.496444,0.0203356,0.399466,0.0822175,0.88393,0.598624,0.907865,0.180722,0.143687,0.515225,0.0375383,0.838481,0.64254,0.139042,0.541348,0.315527,0.0423352,0.569069,0.864502,0.635789,0.686633,0.431517,0.93588,0.525173,0.751659,0.50216,0.361458,0.92949,0.712607,0.207728,0.576777,0.901399,0.678064,0.23804,0.0164315,0.0513369,0.681822,0.0653359,0.139753,0.628671,0.134284,0.326862,0.960845,0.27459,0.256841,0.645579,0.16572,0.503139,0.390322,0.935867,0.0146992,0.140427,0.0409877,0.409445,0.150715,0.173244,0.26241,0.249984,0.429674,0.0925997,0.695056,0.906539,0.321168,0.606754,0.504783,0.354678,0.0455224,0.425463,0.496767,0.926348,0.243965,0.125755,0.515917,0.545131,0.162136,0.088303,0.409427,0.638067,0.0776379,0.00101984,0.725679,0.272496,0.571269,0.423788,0.425918,0.447108,0.451109,0.397075,0.769371,0.448509,0.994173,0.329174,0.91094,0.46124,0.459859,0.626918,0.462488,0.919894,0.566786,0.54534,0.795687,0.356217,0.538353,0.494882,0.312078,0.263829,0.934412,0.795901,0.949649,0.315723,0.113883,0.709944,0.424096,0.274832,0.74911,0.610204,0.297987,0.466444,0.457388,0.651755,0.453856,0.140963,0.824654,0.492074,0.810127,0.0737867,0.556868,0.712017,0.44708,0.381607,0.0701664,0.331115,0.164458,0.0713474,0.0461593,0.805304,0.491821,0.156837,0.156489,0.134861,0.749975,0.575735,0.655762,0.172046,0.927252,0.426203,0.412009,0.885126,0.851347,0.82498,0.428577,0.0664017,0.577706,0.500987,0.905869,0.886085,0.312171,0.0123016,0.965052,0.424337,0.654093,0.760101,0.688793,0.246214,0.736805,0.205723,0.471236,0.903151,0.0219753,0.809677,0.625855,0.402448,0.312754,0.851497,0.648428,0.712851,0.338145,0.283076,0.123688,0.743037,0.202707,0.632913,0.154125,0.744718,0.448255,0.214353,0.876022,0.555753,0.938856,0.932532,0.542605,0.820195,0.888684,0.300758,0.191647,0.258199,0.67252,0.992074,0.179916,0.342259,0.269651,0.323489,0.332468,0.932741,0.695501,0.0591258,0.902605,0.0693375,0.184531,0.888397,0.835709,0.704043,0.457735,0.145702,0.251086,0.206268,0.65763,0.156238,0.760265,0.329213,0.895303,0.985257,0.259087,0.503852,0.970114,0.528605,0.339696,0.0371469,0.166601,0.615064,0.793534,0.866898,0.483401,0.752513,0.556471,0.342586,0.129329,0.137186,0.965867,0.838184,0.200186,0.924235,0.812485,0.540276,0.283343,0.275891,0.753058,0.405459,0.0355134,0.519963,0.981248,0.512083,0.193799,0.144916,0.573667,0.3136,0.782231,0.323272,0.33965,0.205727,0.219051,0.907167,0.56313,0.963189,0.945989,0.191756,0.410065,0.236832,0.990627,0.616887,0.0390173,0.51878,0.878857,0.191404,0.407306,0.106726,0.348237,0.2911,0.997946,0.581696,0.823587,0.262797,0.241845,0.0763413,0.386654,0.757104,0.423243,0.874427,0.217401,0.241168,0.459736,0.582724,0.851139,0.90639,0.912633,0.786714,0.574987,0.990324,0.650642,0.7588,0.247786,0.242389,0.582157,0.0475038,0.277864,0.922137,0.571066,0.00249749,0.0339099,0.507764,0.729173,0.0295483,0.905256,0.280674,0.467625,0.272816,0.833882,0.510665,0.300356,0.728893,0.0801374,0.260734,0.551211,0.687239,0.996269,0.298353,0.351403,0.847446,0.277415,0.277094,0.790886,0.123325,0.866114,0.673924,0.124278,0.139124,0.0709201,0.250873,0.450713,0.193537,0.92129,0.321846,0.0893739,0.0408261,0.0837816,0.0673825,0.492778,0.336019,0.19788,0.438506,0.710854,0.368968,0.919553,0.52292,0.353293,0.430279,0.218552,0.649064,0.681675,0.573128,0.454704,0.245143,0.688187,0.779173,0.495799,0.180108,0.438197,0.0637282,0.17292,0.974541,0.922787,0.534891,0.587252,0.36884,0.915384,0.407708,0.0367985,0.751104,0.422538,0.0613546,0.0698704,0.64609,0.299474,0.341583,0.00365287,0.682711,0.301682,0.923667,0.677075,0.282787,0.577672,0.29584,0.991236,0.155058,0.0677816,0.752136,0.172462,0.258868,0.812616,0.977377,0.803644,0.01385,0.859202,0.643413,0.197538,0.447823,0.405374,0.393753,0.403546,0.519004,0.946671,0.117134,0.193028,0.21996,0.497996,0.673876,0.849686,0.0181904,0.253479,0.569417,0.89472,0.589427,0.672275,0.774346,0.661625,0.939686,0.535593,0.944693,0.932516,0.443501,0.00620079,0.0400097,0.102077,0.191713,0.80151,0.578751,0.763786,0.00126326,0.923239,0.423852,0.340949,0.600289,0.52999,0.92003,0.406442,0.249773,0.448479,0.549334,0.966151,0.65187,0.505098,0.552459,0.198832,0.78604,0.49138,0.27828,0.324119,0.0545252,0.741174,0.657904,0.746343,0.738743,0.571958,0.253523,0.254592,0.690637,0.676004,0.44152,0.692592,0.0994852,0.541604,0.584668,0.539743,0.145304,0.686232,0.371749,0.477189,0.146333,0.38062,0.593156,0.974123,0.869506,0.509453,0.658868,0.268542,0.739532,0.242508,0.496197,0.855656,0.325954,0.122081,0.378839,0.71251,0.804199,0.388975,0.154538,0.32032,0.349412,0.381443,0.327221,0.715965,0.55543,0.0856238,0.297298,0.537272,0.835181,0.808447,0.516408,0.119002,0.701554,0.807096,0.54013,0.889746,0.440715,0.255548,0.344774,0.0833889,0.0365772,0.518478,0.356199,0.395289,0.266754,0.404066,0.569302,0.890055,0.867176,0.845467,0.801424,0.332956,0.861407,0.869812,0.906566,0.920605,0.984898,0.347327,0.326101,0.53793,0.00228518,0.584248,0.91791,0.622667,0.117032,0.186965,0.220458,0.966368,0.588315,0.478625,0.667703,0.0088625,0.616623,0.496821,0.0387627,0.782408,0.625254,0.570543,0.570931,0.893301,0.822987,0.0753316,0.183971,0.202033,0.0153782,0.668389,0.958383,0.483498,0.641162,0.81526,0.38798,0.472788,0.684249,0.756415,0.865733,0.986805,0.747395,0.48691,0.594825,0.883467,0.323216,0.172549,0.760328,0.585391,0.803525,0.748078,0.77768,0.235829,0.829631,0.0294155,0.812321,0.17457,0.970857,0.159567,0.440004,0.83332,0.526464,0.051796,0.102668,0.197012,0.0263772,0.199082,0.616039,0.212183,0.222981,0.677918,0.671066,0.443503,0.123793,0.542759,0.408661,0.570444,0.484895,0.423516,0.747671,0.751657,0.503233,0.718545,0.752168,0.25314,0.537962,0.934111,0.336827,0.79209,0.663515,0.851335,0.298017,0.593043,0.398857,0.981431,0.959208,0.524289,0.125735,0.548566,0.92111,0.582127,0.608741,0.513509,0.501564,0.448908,0.891671,0.811618,0.695775,0.836714,0.101609,0.137221,0.68712,0.89667,0.583221,0.894763,0.395205,0.738499,0.85309,0.427187,0.904127,0.548922,0.431338,0.992893,0.220061,0.717091,0.960034,0.142623,0.891585,0.452802,0.685539,0.934399,0.160306,0.926743,0.685451,0.888752,0.745672,0.956665,0.471002,0.634592,0.68949,0.594622,0.775238,0.247555,0.929321,0.0534978,0.32581,0.953437,0.443119,0.617478,0.604244,0.114844,0.1904,0.124164,0.859376,0.0567202,0.506095,0.58885,0.57703,0.948491,0.156698,0.186294,|0.951327,0.081494,0.249725,0.0356681,0.314223,0.332081,0.746871,0.0566246,0.0464451,0.206377,0.607471,0.696154,0.32422,0.922212,0.0199383,0.877495,0.771664,0.658468,0.58285,0.0423465,0.489654,0.71028,0.052043,0.565386,0.974763,0.540381,0.807436,0.324304,0.143802,0.323868,0.84079,0.861924,0.0848959,0.592559,0.587888,0.845714,0.81252,0.649125,0.693654,0.434095,0.280154,0.539319,0.638678,0.732539,0.83915,0.955937,0.527142,0.425022,0.681802,0.467561,0.534641,0.643356,0.927105,0.254286,0.416905,0.471636,0.155541,0.834236,0.0941736,0.402195,0.922701,0.580716,0.365944,0.387864,0.524989,0.360385,0.832372,0.120763,0.147166,0.0444645,0.990249,0.206743,0.0536948,0.281371,0.420216,0.781965,0.187833,0.418165,0.360884,0.246721,0.837334,0.824619,0.169134,0.612353,0.797358,0.0607868,0.89341,0.104159,0.860453,0.964183,0.158534,0.0773256,0.0326999,0.124638,0.508154,0.358078,0.0200096,0.990496,0.620415,0.763876,0.278414,0.638784,0.610322,0.536518,0.762044,0.214816,0.258207,0.0210457,0.635644,0.535073,0.633565,0.732449,0.277314,0.67318,0.420597,0.936874,0.277044,0.193649,0.421939,0.892629,0.481075,0.955867,0.89365,0.688583,0.0966901,0.356622,0.954203,0.235459,0.345843,0.440446,0.484699,0.372575,0.134729,0.529769,0.209659,0.0100642,0.116872,0.385888,0.557141,0.0902854,0.107397,0.801362,0.512871,0.0544813,0.329837,0.968925,0.0735403,0.200187,0.468773,0.456977,0.187693,0.580739,0.589733,0.106466,0.833736,0.699337,0.883541,0.543056,0.608716,0.898243,0.980667,0.0762595,0.691284,0.912399,0.109267,0.497543,0.891938,0.942132,0.535445,0.862434,0.00301206,0.500857,0.543005,0.827124,0.401437,0.666126,0.337393,0.725154,0.756058,0.435325,0.0407726,0.234567,0.605597,0.627482,0.954245,0.693638,0.705066,0.808288,0.73437,0.795958,0.472995,0.879928,0.671824,0.522979,0.0316168,0.13912,0.255232,0.969624,0.51822,0.207153,0.235659,0.0475417,0.260063,0.201149,0.284983,0.377719,0.569995,0.90132,0.328259,0.0355212,0.0538878,0.308362,0.758054,0.0187683,0.423872,0.0379087,0.391232,0.179772,0.550347,0.156004,0.935744,0.925793,0.276824,0.736508,0.296616,0.111112,0.397375,0.669684,0.231888,0.908798,0.976278,0.775078,0.166993,0.461961,0.0159112,0.929501,0.799899,0.359652,0.576267,0.691487,0.594972,0.57782,0.918384,0.669488,0.891561,0.635269,0.569989,0.0402994,0.825508,0.52172,0.667029,0.950176,0.345811,0.327741,0.137023,0.364065,0.51332,0.107936,0.342037,0.963058,0.655964,0.110831,0.76944,0.136998,0.482389,0.160423,0.658991,0.153511,0.0443261,0.216006,0.748137,0.109977,0.533208,0.751743,0.949508,0.684116,0.936808,0.937479,0.300923,0.614838,0.295683,0.729305,0.282912,0.219105,0.9596,0.567995,0.432964,0.877066,0.350369,0.870639,0.376843,0.334103,0.716573,0.958121,0.66947,0.653761,0.711816,0.931013,0.886763,0.11968,0.899176,0.357224,0.975797,0.632736,0.275746,0.468958,0.000711501,0.572479,0.897676,0.374396,0.277951,0.910571,0.269639,0.494972,0.17249,0.84406,0.842671,0.36625,0.436589,0.256009,0.698,0.212456,0.651262,0.0695731,0.818884,0.229846,0.9817,0.963282,0.544391,0.740354,0.281885,0.905092,0.781325,0.101253,0.0867139,0.506489,0.266614,0.53948,0.685547,0.475143,0.468611,0.766702,0.851486,0.815509,0.990411,0.0774361,0.810878,0.0239205,0.474802,0.722865,0.418365,0.225635,0.747664,0.662227,0.0654361,0.501275,0.789633,0.488823,0.402268,0.438245,0.480686,0.872777,0.333913,0.392398,0.628708,0.233077,0.0541787,0.886746,0.883363,0.010517,0.97128,0.915307,0.0719308,0.424284,0.932916,0.890306,0.972631,0.239788,0.490671,0.518002,0.180689,0.44924,0.398194,0.337208,0.447193,0.904069,0.452823,0.988315,0.598235,0.380803,0.485188,0.366611,0.553438,0.931764,0.680313,0.98023,0.0727838,0.0794692,0.694693,0.579491,0.41855,0.864251,0.704433,0.877968,0.95623,0.00618935,0.918864,0.55543,0.840977,0.950296,0.9607,0.227127,0.43927,0.655749,0.614463,0.701798,0.590597,0.535739,0.432743,0.208612,0.927864,0.584605,0.403071,0.143923,0.797672,0.544361,0.184493,0.562596,0.116921,0.925366,0.27018,0.0206934,0.471673,0.93409,0.164688,0.2456,0.516021,0.283189,0.896408,0.404947,0.311273,0.773573,0.118707,0.565208,0.139209,0.840134,0.0136628,0.118723,0.193106,0.142802,0.284219,0.0475507,0.97304,0.708399,0.304309,0.732314,0.647435,0.241865,0.317687,0.588525,0.771144,0.304932,0.732024,0.427522,0.893822,0.0928694,0.606085,0.610495,0.50193,0.737569,0.475602,0.172312,0.859476,0.388092,0.300095,0.710722,0.591088,0.623467,0.486847,0.370325,0.330089,0.0620176,0.952571,0.52453,0.135302,0.623105,0.220801,0.157292,0.101098,0.733159,0.266266,0.951215,0.768074,0.467098,0.918631,0.635377,0.0412147,0.602054,0.648386,0.326316,0.39623,0.708609,0.382615,0.107415,0.088192,0.264025,0.505587,0.939773,0.393893,0.0910757,0.453385,0.488494,0.300487,0.208462,0.440771,0.35205,0.0707068,0.484647,0.577146,0.997268,0.556086,0.0562662,0.515483,0.649831,0.205964,0.73942,0.547215,0.846472,0.433222,0.264082,0.113753,0.897469,0.135238,0.969996,0.354875,0.813976,0.256024,0.756906,0.864267,0.803716,0.178991,0.232037,0.850052,0.853981,0.645255,0.249541,0.254542,0.628236,0.68742,0.0687101,0.978465,0.909568,0.933911,0.671844,0.409995,0.734598,0.907025,0.675478,0.958424,0.212188,0.622885,0.956928,0.684677,0.980278,0.531063,0.352552,0.262874,0.903925,0.36802,0.0786038,0.306866,0.178721,0.505355,0.782663,0.0345882,0.748931,0.657724,0.217779,0.129037,0.208061,0.686593,0.515539,0.375307,0.595792,0.64382,0.328999,0.239008,0.138878,0.641741,0.680881,0.159531,0.388436,0.872829,0.357075,0.0776062,0.692411,0.588956,0.986746,0.891635,0.492179,0.329787,0.540951,0.846246,0.0448306,0.85796,0.633128,0.919975,0.969288,0.635517,0.0456027,0.140457,0.11994,0.875538,0.0364436,0.0787068,0.825419,0.00173551,0.388354,0.799874,0.923865,0.275911,0.268482,0.571885,0.394898,0.777911,0.606098,0.041787,0.594593,0.297787,0.780115,0.860031,0.0685193,0.727132,0.587836,0.0761347,0.216489,0.0279896,0.225077,0.138786,0.298319,0.793872,0.339663,0.315848,0.909909,0.372314,0.078084,0.257361,0.0173416,0.506209,0.22318,0.900286,0.627096,0.0386046,0.830116,0.316987,0.50567,0.842185,0.727215,0.424311,0.925711,0.0948014,0.448686,0.374414,0.272267,0.367296,0.731194,0.904855,0.0628106,0.335156,0.846832,0.270185,0.994136,0.511371,0.935823,0.280357,0.715442,0.229671,0.752668,0.465665,0.028873,0.0306939,0.784345,0.302137,0.959752,0.853565,0.977621,0.415343,0.47623,0.0207677,0.594836,0.825327,0.497122,0.599127,0.651127,0.246398,0.591334,0.0951165,0.438137,0.898909,0.911956,0.301468,0.375601,0.369418,0.914919,0.35753,0.778454,0.859588,0.00101143,0.068572,0.831366,0.724165,0.95121,0.339766,0.147361,0.657899,0.442839,0.836595,0.433147,0.224471,0.374778,0.675355,0.329832,0.943678,0.561524,0.200024,0.612964,0.734559,0.0153635,0.433298,0.319986,0.577765,0.194595,0.893676,0.552812,0.298811,0.0659614,0.799917,0.896413,0.410914,0.955512,0.310086,0.438055,0.552917,0.762216,0.530135,0.654216,0.514394,0.656848,0.491288,0.321255,0.875832,0.519292,0.232038,0.188039,0.920412,0.849712,0.932926,0.301797,0.229984,0.175536,0.41097,0.825049,0.0182313,0.759485,0.352715,0.941514,0.517536,0.129988,0.764623,0.703536,0.83386,0.98132,0.899565,0.812858,0.0744373,0.379374,0.43692,0.802396,0.669219,0.402647,0.68101,0.402689,0.101982,0.41437,0.330623,0.300717,0.0243415,0.916608,0.339104,0.343265,0.917138,0.844009,0.238315,0.532842,0.201231,0.469707,0.358036,0.247503,0.154572,0.45459,0.955777,0.473144,0.401697,0.675195,0.826317,0.897187,0.646477,0.423111,0.134887,0.824073,0.814254,0.705301,0.16175,0.142172,0.905294,0.604634,0.586986,0.674343,0.343889,0.327191,0.156576,0.075328,0.831203,0.726147,0.338741,0.338867,0.217328,0.0290859,0.893854,0.565119,0.798071,0.0122278,0.0755902,0.812973,0.152093,0.00261885,0.212379,0.256853,0.187096,0.229315,0.372893,0.0991049,0.276976,0.39222,0.104745,0.650498,0.938705,0.479471,0.823957,0.726891,0.859277,0.97633,0.892022,0.820031,0.961156,0.782618,0.0663734,0.744111,0.713163,0.168602,0.993041,0.800139,0.785859,0.176213,0.227446,0.288176,0.985429,0.821367,0.26574,0.270292,0.725074,0.228574,0.277968,0.244712,0.0949507,0.750611,0.0459865,0.1839,0.291848,0.433722,0.525293,0.318683,0.344044,0.988914,0.0523562,0.121593,0.119764,0.0446553,0.37341,0.886125,0.642948,0.0758283,0.46127,0.669678,0.737614,0.0708741,0.587231,0.573479,0.643075,0.463194,0.827348,0.230242,0.409949,0.185302,0.646034,0.301723,0.286588,0.0521276,0.738698,0.411226,0.917728,0.0217336,0.473404,0.141466,0.832479,0.444035,0.112646,0.00863498,0.282913,0.524903,0.677459,0.989086,0.66267,0.795372,0.134804,0.213978,0.762119,0.575293,0.54573,0.418146,0.158532,0.28044,0.0498115,0.0475389,0.189116,0.479432,0.539291,0.674002,0.0363654,0.481094,0.203971,0.582252,0.87328,0.684859,0.579576,0.736017,0.524615,0.931163,0.722824,0.118723,0.953504,0.690348,0.603762,0.0858135,0.686883,0.0644456,0.561908,0.765265,0.0549424,0.0716274,0.283829,0.827295,0.181208,0.408154,0.9846,0.594504,0.0915074,0.373284,0.0678539,0.350508,0.0814909,0.662419,0.234092,0.913647,0.310545,0.737808,0.596292,0.844528,0.584943,0.613568,0.66015,0.977332,0.416905,0.962897,0.319719,0.119507,0.248321,0.740942,0.00400972,0.376389,0.700175,0.461952,0.184298,0.852308,0.338065,0.127959,0.170768,0.887503,0.318923,0.820444,|0.58736,0.231437,0.696102,0.238903,0.840997,0.19034,0.274909,0.576626,0.982341,0.238477,0.181649,0.906895,0.179376,0.232145,0.79748,0.68476,0.394526,0.781951,0.321779,0.0273335,0.707558,0.0321631,0.0809851,0.911263,0.393501,0.241618,0.183802,0.760264,0.891874,0.895224,0.242908,0.930955,0.492738,0.523946,0.974819,0.195986,0.239232,0.00593591,0.953456,0.911204,0.331379,0.00673813,0.590369,0.916443,0.46319,0.0272231,0.805109,0.2819,0.388862,0.241635,0.353417,0.215915,0.422344,0.136277,0.104683,0.258644,0.291369,0.668046,0.203993,0.623281,0.704194,0.984865,0.528379,0.795588,0.19015,0.223378,0.432919,0.185663,0.00839543,0.045529,0.00364721,0.878532,0.263028,0.69216,0.573831,0.623777,0.388293,0.695832,0.0207615,0.0282952,0.796541,0.573141,0.17999,0.634819,0.783387,0.805346,0.568982,0.294514,0.299946,0.319118,0.173935,0.978832,0.392427,0.363956,0.361724,0.642233,0.666789,0.536364,0.709652,0.543918,0.83134,0.7688,0.412051,0.365063,0.685768,0.496035,0.747463,0.0455735,0.229119,0.973585,0.639007,0.458338,0.0800897,0.195815,0.686322,0.118492,0.0145351,0.0174412,0.662029,0.999836,0.73042,0.412291,0.479562,0.721037,0.728231,0.409121,0.224991,0.69109,0.952796,0.00301576,0.94156,0.68142,0.138784,0.137877,0.56827,0.929229,0.559877,0.656754,0.470868,0.740106,0.112781,0.489857,0.348836,0.933449,0.267398,0.709876,0.623885,0.364735,0.143159,0.554977,0.546583,0.532813,0.251382,0.666809,0.8138,0.091425,0.807786,0.629234,0.686379,0.602051,0.762643,0.759881,0.805757,0.681639,0.315852,0.813375,0.409428,0.19231,0.13176,0.0510764,0.928173,0.103437,0.837254,0.853114,0.868629,0.413548,0.381548,0.832035,0.787434,0.416044,0.145059,0.311141,0.316204,0.564559,0.557094,0.55165,0.594275,0.196026,0.724027,0.402955,0.363553,0.297253,0.247237,0.556665,0.345876,0.207918,0.656887,0.614921,0.769376,0.140134,0.192221,0.317943,0.602765,0.0802063,0.554725,0.933097,0.455633,0.5547,0.345138,0.421103,0.80178,0.957515,0.786285,0.722394,0.109484,0.657876,0.752065,0.0114565,0.208967,0.841205,0.0370313,0.543503,0.277304,0.0584935,0.0222359,0.0118198,0.263827,0.710983,0.170404,0.772589,0.667427,0.455895,0.58594,0.43441,0.740828,0.637384,0.685069,0.697742,0.108804,0.10395,0.73575,0.0303281,0.259301,0.186928,0.876143,0.0930861,0.164325,0.995483,0.487397,0.454488,0.0356476,0.0135698,0.652956,0.205518,0.109692,0.0736958,0.86601,0.991256,0.559244,0.673767,0.628953,0.366164,0.15577,0.199077,0.108277,0.498723,0.880697,0.580654,0.256619,0.222717,0.590193,0.711399,0.680191,0.807269,0.602742,0.116454,0.985386,0.899521,0.731673,0.598172,0.179249,0.666677,0.636055,0.546684,0.855647,0.637029,0.55841,0.151278,0.483503,0.0391787,0.362004,0.341404,0.621854,0.880866,0.618566,0.445487,0.0788204,0.8454,0.404892,0.286085,0.837487,0.576346,0.831199,0.39552,0.848439,0.288498,0.512331,0.930675,0.76683,0.244009,0.970962,0.551284,0.720059,0.0577171,0.793663,0.334385,0.143659,0.0299599,0.930655,0.239403,0.0223248,0.862344,0.808062,0.820011,0.186077,0.442182,0.966119,0.836405,0.962509,0.182541,0.657587,0.457837,0.731921,0.855531,0.836479,0.345573,0.979874,0.23225,0.641842,0.967771,0.798917,0.430168,0.85613,0.88606,0.670857,0.542603,0.421255,0.07137,0.645414,0.358681,0.326528,0.0745962,0.880911,0.342209,0.737385,0.462178,0.886316,0.0693796,0.665527,0.606144,0.378789,0.537983,0.805401,0.55945,0.159488,0.222339,0.549284,0.350944,0.653105,0.64486,0.363271,0.343582,0.684853,0.984041,0.540346,0.0812057,0.0827659,0.0436456,0.308613,0.596269,0.903334,0.915277,0.429843,0.0584053,0.649448,0.174933,0.0803242,0.459018,0.786615,0.834005,0.297835,0.333301,0.546421,0.847709,0.742726,0.564253,0.0985476,0.382523,0.683003,0.535461,0.398134,0.630675,0.790096,0.673553,0.350791,0.35654,0.162774,0.485085,0.296567,0.971054,0.551412,0.368079,0.352204,0.639695,0.382968,0.76169,0.812703,0.1084,0.270066,0.583106,0.903352,0.772356,0.826748,0.839929,0.762375,0.864302,0.482847,0.0709424,0.570364,0.695335,0.553946,0.506319,0.00734663,0.530124,0.428457,0.278945,0.40361,0.165164,0.834252,0.470088,0.188149,0.215556,0.155522,0.430908,0.0254384,0.817844,0.566027,0.7906,0.919184,0.0961396,0.518877,0.123538,0.980224,0.429584,0.845766,0.466681,0.975391,0.111806,0.98828,0.805744,0.435162,0.700954,0.107867,0.942689,0.623482,0.727927,0.227724,0.482212,0.850738,0.342716,0.876963,0.676385,0.389649,0.941549,0.862295,0.867706,0.0445972,0.991685,0.74356,0.535792,0.356206,0.218846,0.290885,0.458711,0.139359,0.214227,0.53324,0.332794,0.385521,0.362436,0.782402,0.347502,0.478507,0.43207,0.791909,0.0284687,0.797241,0.648471,0.812218,0.599657,0.318879,0.527478,0.0088706,0.724813,0.714496,0.447804,0.937551,0.314386,0.506904,0.225473,0.252898,0.624042,0.333742,0.964483,0.499523,0.603493,0.848698,0.41347,0.0766453,0.480795,0.957201,0.914357,0.10608,0.367695,0.239442,0.770371,0.919276,0.0224454,0.826941,0.652055,0.254665,0.752629,0.00727558,0.0478165,0.559774,0.491017,0.443746,0.665425,0.590037,0.856928,0.497789,0.431127,0.312228,0.625623,0.110135,0.36193,0.228252,0.528748,0.965856,0.101745,0.873624,0.715819,0.407578,0.0360469,0.00454313,0.83524,0.258121,0.254156,0.0109209,0.280739,0.532855,0.63767,0.91983,0.384985,0.735909,0.455889,0.842113,0.459501,0.283397,0.299003,0.256675,0.650929,0.285769,0.782952,0.830284,0.96253,0.715382,0.000721395,0.881761,0.356557,0.466463,0.577765,0.403181,0.548356,0.0631268,0.667717,0.463647,0.766299,0.728786,0.10604,0.310036,0.850268,0.2885,0.462718,0.73987,0.0528436,0.877325,0.845082,0.77295,0.591379,0.28884,0.0299909,0.971116,0.512599,0.96317,0.582629,0.588056,0.712349,0.980362,0.459451,0.150519,0.158112,0.698699,0.912834,0.318322,0.806463,0.113034,0.769245,0.394968,0.680438,0.153248,0.105644,0.378826,0.528782,0.67997,0.393346,0.0037064,0.738731,0.388312,0.280513,0.388265,0.85141,0.39694,0.198863,0.953735,0.879125,0.790962,0.516705,0.646084,0.6722,0.28894,0.424879,0.982086,0.889448,0.698086,0.874109,0.179697,0.596906,0.149038,0.24238,0.942405,0.513544,0.528232,0.864086,0.709226,0.3005,0.759609,0.00155538,0.925852,0.775687,0.538625,0.580097,0.881595,0.176296,0.751622,0.890706,0.799136,0.542928,0.331573,0.00475347,0.456893,0.809328,0.0337839,0.85098,0.0926295,0.0144734,0.940203,0.626478,0.86526,0.514062,0.235059,0.267216,0.0705725,0.887574,0.332857,0.552891,0.00943869,0.459407,0.92678,0.989602,0.29518,0.632522,0.0926877,0.424841,0.844598,0.870706,0.128302,0.806901,0.115353,0.590441,0.900883,0.773574,0.1189,0.782054,0.514959,0.240658,0.428385,0.448944,0.718499,0.129955,0.949306,0.148991,0.181545,0.18367,0.713147,0.264575,0.00849646,0.890448,0.707202,0.21885,0.437371,0.794681,0.282527,0.833732,0.330453,0.625756,0.56587,0.773739,0.554729,0.0408424,0.370721,0.841118,0.482208,0.664801,0.820838,0.791557,0.827615,0.911288,0.377697,0.22193,0.0544779,0.816072,0.0929585,0.2031,0.504449,0.177685,0.43499,0.457859,0.973969,0.987264,0.667865,0.329844,0.48515,0.368379,0.746783,0.579627,0.828786,0.520531,0.242465,0.986379,0.539156,0.707241,0.298066,0.795513,0.547727,0.333332,0.121896,0.404194,0.117268,0.0618981,0.921982,0.187741,0.521876,0.630632,0.769863,0.654883,0.25621,0.589127,0.219856,0.522103,0.556747,0.550755,0.693947,0.804949,0.022948,0.784204,0.564334,0.476175,0.780847,0.992149,0.392165,0.0885359,0.997123,0.859156,0.839361,0.450489,0.0919234,0.863105,0.597383,0.813226,0.21946,0.677622,0.606728,0.184813,0.538419,0.928706,0.112916,0.858542,0.0218953,0.861065,0.180593,0.0690526,0.557476,0.66625,0.981181,0.52891,0.304416,0.61289,0.478859,0.926133,0.473029,0.570464,0.320896,0.168842,0.816292,0.386441,0.278671,0.851382,0.542019,0.32691,0.960572,0.158969,0.634683,0.973525,0.205738,0.564561,0.166148,0.761842,0.0905548,0.341258,0.776524,0.218991,0.938261,0.532946,0.956792,0.718821,0.508235,0.748994,0.529223,0.650338,0.00895774,0.0501804,0.447572,0.109535,0.959676,0.466515,0.0856451,0.490535,0.561186,0.768007,0.43224,0.0440731,0.532918,0.465236,0.184445,0.2428,0.379386,0.949931,0.536864,0.958172,0.0567517,0.878717,0.758172,0.70662,0.667072,0.330919,0.629883,0.176518,0.841779,0.694726,0.801255,0.112268,0.237022,0.554099,0.234354,0.0646564,0.618236,0.496332,0.0572866,0.548881,0.364892,0.626431,0.297614,0.502999,0.335551,0.786695,0.866719,0.707146,0.351506,0.360902,0.890032,0.867183,0.169056,0.707016,0.927971,0.907795,0.725422,0.794228,0.0209641,0.853498,0.912954,0.969103,0.0944328,0.124002,0.0707574,0.321302,0.546809,0.0474327,0.714201,0.466173,0.207779,0.989695,0.393739,0.0813805,0.0735119,0.598889,0.152625,0.542172,0.36259,0.244764,0.520641,0.448996,0.966852,0.179467,0.943006,0.934704,0.926385,0.130291,0.977892,0.956018,0.556138,0.7317,0.497188,0.0638039,0.549826,0.891656,0.427027,0.0223386,0.0917263,0.447637,0.594441,0.686787,0.547709,0.215582,0.583335,0.776951,0.544914,0.499525,0.50572,0.188031,0.526248,0.833731,0.447107,0.142933,0.934428,0.239197,0.899826,0.425001,0.924952,0.448842,0.966433,0.702175,0.193242,0.845129,0.761624,0.667754,0.0602038,0.664316,0.883151,0.0363996,0.872358,0.301365,0.677128,0.28165,0.609873,0.140145,0.0915409,0.137771,0.180647,0.0988296,0.974475,0.0397524,0.557564,0.573918,0.05317,0.340092,0.92649,0.733273,0.720493,0.559256,|0.318494,0.110554,0.719064,0.752462,0.51379,0.0111238,0.415521,0.688979,0.873589,0.0599017,0.0653755,0.196734,0.669369,0.544951,0.6535,0.650045,0.68096,0.643823,0.915548,0.180317,0.233003,0.15966,0.693453,0.378829,0.895768,0.200336,0.135528,0.83279,0.163843,0.412708,0.402312,0.397488,0.345919,0.236986,0.797937,0.4428,0.0491154,0.250117,0.153878,0.552412,0.397418,0.766301,0.571364,0.477944,0.482993,0.901831,0.245577,0.745189,0.617516,0.468849,0.452348,0.32531,0.800377,0.00364935,0.812272,0.91337,0.330303,0.59493,0.797789,0.665146,0.364025,0.375694,0.861371,0.91925,0.818655,0.987695,0.854362,0.325615,0.641029,0.0163755,0.723127,0.705679,0.928761,0.561165,0.856913,0.163206,0.482813,0.0814581,0.367343,0.400503,0.151296,0.929023,0.597156,0.355989,0.819224,0.280919,0.398009,0.602487,0.373755,0.607443,0.872822,0.935609,0.655385,0.990235,0.894877,0.342237,0.0723979,0.520116,0.204273,0.135459,0.883246,0.162306,0.709954,0.646704,0.271583,0.74123,0.34754,0.388518,0.776513,0.0172926,0.162095,0.904325,0.550007,0.762286,0.852045,0.911539,0.179197,0.632509,0.0798004,0.67709,0.924201,0.793978,0.703616,0.029214,0.625454,0.434398,0.759373,0.439104,0.715391,0.313795,0.944567,0.657608,0.453837,0.894859,0.445951,0.131558,0.833892,0.82146,0.00599551,0.311446,0.497392,0.513062,0.568077,0.979619,0.577828,0.398529,0.933433,0.480333,0.677208,0.935547,0.754897,0.279768,0.287357,0.86153,0.443041,0.0123587,0.313785,0.141786,0.799989,0.0487157,0.363099,0.363135,0.923294,0.0662454,0.593267,0.612756,0.718711,0.383431,0.407641,0.647144,0.301954,0.402723,0.0918549,0.000426471,0.00067234,0.474309,0.668104,0.362704,0.57167,0.0223551,0.73015,0.774401,0.680617,0.690616,0.311365,0.871731,0.425756,0.756874,0.550217,0.634564,0.0414288,0.518508,0.213004,0.960433,0.799388,0.325611,0.683192,0.645494,0.121187,0.590024,0.628045,0.172949,0.943606,0.0951661,0.141073,0.191452,0.451285,0.920869,0.333505,0.115441,0.38664,0.252393,0.589537,0.841097,0.944732,0.42753,0.558313,0.540808,0.31539,0.874518,0.795764,0.117389,0.940881,0.129499,0.510733,0.187666,0.248713,0.294772,0.253972,0.533855,0.939089,0.0116259,0.186335,0.846508,0.189603,0.831137,0.717816,0.582328,0.772147,0.34946,0.498472,0.143138,0.306574,0.836991,0.0835837,0.607841,0.957134,0.532298,0.861827,0.774431,0.506954,0.794976,0.619996,0.709485,0.354445,0.662013,0.750844,0.0357171,0.150074,0.998029,0.404853,0.661216,0.157029,0.602294,0.638806,0.892619,0.884788,0.996573,0.745523,0.51607,0.750221,0.285917,0.0791783,0.0833485,0.566806,0.706044,0.746983,0.460727,0.827055,0.151118,0.404063,0.663703,0.384504,0.123444,0.879794,0.873329,0.929608,0.735492,0.499777,0.388488,0.962248,0.925138,0.580718,0.551758,0.602421,0.603086,0.157058,0.911364,0.165445,0.830956,0.951535,0.505051,0.749946,0.822655,0.352751,0.856655,0.699688,0.682448,0.97504,0.511467,0.87754,0.391583,0.752733,0.0774426,0.755995,0.844232,0.199029,0.59918,0.145467,0.971251,0.315798,0.148383,0.279611,0.491927,0.61058,0.453673,0.304043,0.617255,0.919256,0.721727,0.123632,0.620991,0.674786,0.758394,0.483897,0.214273,0.909668,0.983719,0.496387,0.598625,0.656344,0.620724,0.294312,0.643169,0.476174,0.395078,0.688306,0.688532,0.934179,0.104211,0.635243,0.849212,0.555882,0.661116,0.587792,0.738333,0.37373,0.262851,0.552272,0.338746,0.211507,0.987108,0.206759,0.821489,0.46122,0.602588,0.845957,0.0832747,0.206547,0.511295,0.190459,0.468272,0.66864,0.576601,0.366855,0.416065,0.90382,0.0243836,0.083048,0.454254,0.738227,0.0751235,0.0516851,0.883165,0.595141,0.836535,0.381279,0.712647,0.15875,0.392991,0.0665058,0.247394,0.993258,0.880405,0.756427,0.305457,0.101324,0.870269,0.238738,0.394532,0.944825,0.262637,0.720566,0.408054,0.492906,0.446314,0.710768,0.665397,0.0118825,0.478339,0.539704,0.748643,0.823353,0.23799,0.998711,0.930568,0.453491,0.433018,0.607672,0.68201,0.925976,0.375967,0.737452,0.454848,0.0456413,0.998961,0.347185,0.105387,0.0986074,0.410566,0.389411,0.0861668,0.1783,0.238239,0.602931,0.337889,0.135388,0.626068,0.00338858,0.793689,0.575815,0.474565,0.73038,0.537843,0.952927,0.784125,0.595742,0.897455,0.636043,0.214158,0.64924,0.442831,0.119044,0.435006,0.880187,0.657986,0.764591,0.277708,0.651662,0.849576,0.811592,0.757678,0.401379,0.412679,0.555572,0.452069,0.935426,0.383104,0.27401,0.651121,0.275638,0.993453,0.923808,0.495684,0.531812,0.746479,0.471506,0.493591,0.365836,0.808751,0.307666,0.0650422,0.25459,0.198472,0.925019,0.290528,0.772334,0.422209,0.459579,0.0601185,0.573134,0.790901,0.254158,0.928167,0.116492,0.643397,0.503005,0.178576,0.73012,0.494793,0.339524,0.196454,0.581592,0.0739393,0.36742,0.774992,0.579756,0.966196,0.680574,0.590587,0.00653696,0.789886,0.232793,0.0266199,0.800529,0.321236,0.955462,0.526983,0.695676,0.935005,0.0691381,0.97664,0.422666,0.694542,0.498973,0.556104,0.557184,0.755394,0.935974,0.920163,0.668,0.323243,0.167256,0.133101,0.962329,0.879988,0.0436969,0.0816149,0.361822,0.259061,0.648626,0.626898,0.20208,0.142045,0.479099,0.377068,0.225704,0.641727,0.0321187,0.0305578,0.312519,0.438487,0.591657,0.959995,0.08762,0.888626,0.501696,0.853728,0.533887,0.615123,0.153438,0.0508644,0.975305,0.681526,0.358799,0.812025,0.130705,0.341471,0.288161,0.151505,0.515668,0.484543,0.633358,0.0503554,0.72925,0.682103,0.883997,0.0283909,0.142194,0.0302345,0.968324,0.573927,0.834698,0.106974,0.702391,0.320286,0.77529,0.0332216,0.844341,0.34503,0.993659,0.283211,0.527341,0.266517,0.222822,0.986848,0.554469,0.744416,0.760112,0.416225,0.127365,0.58436,0.831599,0.0237195,0.405453,0.97094,0.751425,0.591509,0.0849679,0.157475,0.481016,0.111136,0.191351,0.677713,0.512851,0.510768,0.639061,0.173522,0.269832,0.589207,0.630409,0.875524,0.6634,0.199321,0.2031,0.849793,0.881666,0.434092,0.532978,0.226851,0.997895,0.110545,0.823188,0.872312,0.374278,0.444955,0.4727,0.823399,0.0692794,0.736902,0.829461,0.276314,0.744587,0.256788,0.480861,0.562716,0.328201,0.823156,0.553917,0.408629,0.402259,0.239895,0.613079,0.28114,0.422732,0.486801,0.806697,0.219464,0.683497,0.602097,0.256302,0.584768,0.435442,0.0843046,0.655897,0.260922,0.487158,0.728627,0.293415,0.97676,0.474756,0.866527,0.938007,0.716158,0.320954,0.0726727,0.307066,0.229227,0.593515,0.926359,0.410591,0.568733,0.0718495,0.131845,0.10952,0.361769,0.472873,0.761145,0.288764,0.378525,0.801459,0.668287,0.44714,0.290757,0.566584,0.865985,0.232249,0.0504643,0.238949,0.829474,0.82623,0.727564,0.0239493,0.866087,0.308846,0.713638,0.0282027,0.000925958,0.420954,0.369777,0.181612,0.142022,0.160204,0.114112,0.655102,0.0307521,0.793103,0.648982,0.845737,0.00550264,0.668468,0.408468,0.526737,0.188,0.146812,0.791882,0.831064,0.837119,0.195825,0.227121,0.163228,0.0829182,0.328602,0.552304,0.405976,0.888546,0.0808344,0.201015,0.458612,0.919444,0.620396,0.817203,0.362804,0.485862,0.528739,0.699822,0.521319,0.739073,0.091038,0.85566,0.994281,0.47684,0.424985,0.70639,0.55251,0.918304,0.347022,0.77336,0.33925,0.0512835,0.218646,0.873604,0.0285498,0.866361,0.891855,0.710617,0.341406,0.918996,0.678213,0.164472,0.6205,0.878849,0.387031,0.707734,0.14397,0.751454,0.791274,0.848384,0.978185,0.270769,0.3322,0.0181159,0.627775,0.165758,0.850377,0.201866,0.4872,0.889583,0.181824,0.0305999,0.414581,0.716245,0.0122872,0.786189,0.879079,0.845137,0.260127,0.68613,0.322695,0.0596392,0.93165,0.286421,0.615681,0.518714,0.668755,0.960818,0.801628,0.324409,0.710718,0.341076,0.653151,0.688768,0.590384,0.681561,0.606643,0.544601,0.935783,0.417637,0.736409,0.0598926,0.984589,0.0238199,0.923428,0.229418,0.221679,0.0335503,0.299321,0.217326,0.301403,0.0528986,0.322124,0.0473999,0.836701,0.174192,0.652619,0.949478,0.161999,0.587573,0.462808,0.405818,0.174499,0.170543,0.140701,0.880161,0.110063,0.985407,0.469794,0.666081,0.698388,0.0518061,0.61513,0.232454,0.84096,0.103232,0.64134,0.259228,0.620219,0.64288,0.0750965,0.0986049,0.173451,0.190634,0.409648,0.508986,0.0332948,0.858656,0.952705,0.595822,0.576343,0.369259,0.336391,0.171963,0.866351,0.881946,0.0885253,0.514962,0.106503,0.543863,0.172025,0.745441,0.339531,0.00894994,0.354462,0.960683,0.626233,0.223981,0.696747,0.13181,0.605008,0.5564,0.182352,0.512204,0.431185,0.18861,0.198189,0.429507,0.464837,0.488551,0.330391,0.375344,0.418789,0.613115,0.489848,0.972872,0.509859,0.0647668,0.798239,0.381115,0.50678,0.238337,0.28168,0.751177,0.891078,0.0542646,0.955804,0.92338,0.394528,0.337593,0.560687,0.103901,0.0245893,0.543812,0.0693127,0.277444,0.930144,0.164713,0.0361063,0.0779815,0.302957,0.300496,0.277327,0.916329,0.916197,0.0826022,0.484264,0.0275881,0.899124,0.354804,0.344505,0.837785,0.998948,0.839655,0.565327,0.28899,0.567901,0.146743,0.438253,0.623802,0.282154,0.586,0.996877,0.162309,0.548411,0.970779,0.286155,0.818597,0.38414,0.361319,0.33073,0.997422,0.796163,0.152039,0.0746477,0.685279,0.885469,0.575436,0.66398,0.0181097,0.982927,0.184502,0.398102,0.849331,0.334218,0.162656,0.375035,0.642194,0.676773,0.00849468,0.685172,0.912009,0.955045,0.999368,0.342923,0.641621,0.726341,0.307808,0.922074,0.551638,0.94608,0.350429,0.637919,0.202297,0.369247,0.352427,0.481186,0.985324,0.651801,0.722916,0.544411,0.417165,|0.0509825,0.796658,0.0654629,0.38665,0.728127,0.360616,0.464839,0.765113,0.961502,0.72707,0.982673,0.269401,0.475788,0.0411654,0.685532,0.708141,0.0670685,0.203533,0.382946,0.847086,0.474892,0.878929,0.291517,0.923982,0.380752,0.713424,0.279643,0.399237,0.152446,0.564648,0.803502,0.239167,0.160984,0.887348,0.645408,0.764107,0.496762,0.156978,0.525487,0.761352,0.838676,0.942354,0.946593,0.540557,0.180202,0.253117,0.790626,0.990335,0.202963,0.887021,0.395181,0.0285659,0.76813,0.535245,0.708649,0.8767,0.529763,0.0258929,0.526816,0.0472569,0.366354,0.814366,0.98165,0.921662,0.035212,0.293628,0.680652,0.979243,0.796893,0.442949,0.33267,0.0145104,0.0344126,0.630664,0.810531,0.346691,0.377207,0.598274,0.879758,0.739155,0.91885,0.189273,0.583654,0.362977,0.180591,0.0427508,0.436787,0.630979,0.0854952,0.437249,0.741724,0.0705409,0.799451,0.633931,0.275843,0.252303,0.542491,0.0965976,0.675454,0.39839,0.842555,0.860776,0.660646,0.622037,0.91418,0.584252,0.0356048,0.707252,0.703243,0.0824893,0.726009,0.934712,0.59784,0.426941,0.598402,0.0826863,0.671941,0.561922,0.796448,0.711351,0.94509,0.861571,0.0426989,0.381828,0.558059,0.998177,0.46108,0.926341,0.92259,0.587965,0.3621,0.613305,0.295202,0.353848,0.808609,0.126133,0.251442,0.434611,0.603076,0.0528523,0.858591,0.558758,0.71348,0.556264,0.403606,0.00552964,0.28175,0.620378,0.262926,0.534116,0.837054,0.112014,0.204817,0.367876,0.749081,0.284141,0.963826,0.550666,0.878333,0.662881,0.292985,0.505279,0.235799,0.990856,0.709454,0.4635,0.412228,0.741485,0.651814,0.491889,0.985682,0.604973,0.0904398,0.152449,0.745575,0.824602,0.854001,0.278114,0.203049,0.924696,0.687119,0.556037,0.03979,0.239013,0.906563,0.199344,0.931226,0.891959,0.274442,0.13235,0.815211,0.303318,0.115725,0.4759,0.14858,0.891052,0.617394,0.882315,0.755315,0.661768,0.865951,0.0773255,0.657361,0.270159,0.345854,0.21257,0.384187,0.854251,0.183245,0.185537,0.841518,0.516686,0.227085,0.569437,0.526781,0.0542267,0.909794,0.298251,0.880944,0.23375,0.723305,0.508038,0.71312,0.652875,0.994228,0.845726,0.0482545,0.534869,0.40055,0.857925,0.527449,0.356008,0.106725,0.558815,0.196576,0.558921,0.676109,0.785201,0.13048,0.668167,0.414705,0.880348,0.0438982,0.919227,0.755292,0.389686,0.366935,0.724768,0.211925,0.357023,0.767286,0.0986839,0.392787,0.449361,0.817743,0.404207,0.671596,0.581045,0.123102,0.000307798,0.973296,0.21134,0.736753,0.0104417,0.307822,0.388727,0.475198,0.0681559,0.794151,0.473576,0.0105326,0.384077,0.440234,0.670459,0.857523,0.0535158,0.533009,0.0405332,0.986981,0.85422,0.51685,0.635862,0.176325,0.499266,0.613878,0.0637568,0.160421,0.354964,0.556416,0.773637,0.202034,0.32138,0.0676402,0.700595,0.878358,0.934098,0.307948,0.466818,0.476469,0.689663,0.268132,0.521628,0.835049,0.773349,0.423779,0.644311,0.277439,0.212545,0.726634,0.151075,0.426018,0.675731,0.442837,0.524285,0.359424,0.147073,0.724245,0.869396,0.568215,0.457421,0.0919513,0.326867,0.339318,0.520968,0.26287,0.49437,0.771394,0.830127,0.418157,0.256433,0.431909,0.470723,0.919263,0.374838,0.980818,0.766684,0.753955,0.192111,0.202171,0.596378,0.625599,0.428076,0.857406,0.888889,0.0513825,0.404529,0.098926,0.0656177,0.779722,0.00912875,0.776113,0.78684,0.774188,0.773433,0.906536,0.542191,0.351904,0.795065,0.708931,0.174487,0.0657946,0.753594,0.553642,0.878336,0.917331,0.302921,0.776824,0.828233,0.919709,0.273372,0.0731269,0.576648,0.816348,0.195766,0.93008,0.449751,0.162722,0.224489,0.0576015,0.15191,0.209755,0.123973,0.777014,0.815265,0.815934,0.899821,0.931007,0.173456,0.598058,0.216619,0.127259,0.129905,0.695704,0.532684,0.794731,0.223465,0.849262,0.768665,0.90111,0.121182,0.238937,0.871795,0.780512,0.107238,0.691645,0.17859,0.414103,0.439806,0.0948543,0.767905,0.706948,0.421267,0.474659,0.258914,0.907367,0.819072,0.162208,0.769472,0.44826,0.749042,0.747533,0.206202,0.368874,0.571522,0.395846,0.630144,0.225471,0.633633,0.0630772,0.174974,0.526754,0.122209,0.382569,0.965602,0.0950506,0.689779,0.0920143,0.918954,0.400101,0.274841,0.598772,0.0832954,0.701902,0.237093,0.000509202,0.417495,0.604453,0.0681063,0.276737,0.632279,0.108502,0.088286,0.511641,0.501536,0.00191671,0.290841,0.909499,0.605083,0.518529,0.628783,0.690663,0.319848,0.15846,0.35118,0.85797,0.950786,0.151187,0.602545,0.802851,0.689222,0.598271,0.38512,0.919768,0.546994,0.309369,0.973497,0.975496,0.513242,0.106562,0.808414,0.284217,0.804301,0.597445,0.350727,0.437468,0.270924,0.139307,0.829024,0.969151,0.872657,0.571317,0.650909,0.703522,0.861359,0.816855,0.921071,0.283822,0.670421,0.411525,0.0126455,0.0621964,0.489866,0.506956,0.331623,0.30432,0.989754,0.854872,0.8461,0.219953,0.926557,0.28475,0.771724,0.487004,0.167318,0.162721,0.921981,0.514421,0.352481,0.509782,0.123865,0.870655,0.779322,0.414413,0.75822,0.430493,0.933382,0.574525,0.356163,0.647477,0.000718713,0.0901666,0.849633,0.754462,0.899714,0.681545,0.660074,0.161249,0.91437,0.544476,0.31657,0.955477,0.598214,0.914161,0.208908,0.981535,0.702798,0.526325,0.967333,0.874097,0.544776,0.413124,0.208684,0.424485,0.860167,0.325984,0.580495,0.691049,0.58116,0.602695,0.880413,0.604013,0.38485,0.108222,0.359948,0.679298,0.954703,0.618524,0.737392,0.0491256,0.116166,0.637878,0.593538,0.53212,0.255419,0.456639,0.00945228,0.0701367,0.242634,0.147825,0.305509,0.839287,0.760314,0.115689,0.418548,0.62696,0.141477,0.74021,0.448742,0.977128,0.908823,0.831354,0.661543,0.806842,0.439043,0.311038,0.899506,0.24084,0.866352,0.429036,0.257345,0.821552,0.285525,0.748783,0.51805,0.842744,0.571238,0.259512,0.439361,0.381623,0.215711,0.202748,0.0769681,0.573375,0.186224,0.12939,0.0627347,0.0254236,0.193245,0.67974,0.230298,0.602201,0.599522,0.774435,0.0372843,0.291053,0.316542,0.244152,0.803871,0.927853,0.545369,0.277798,0.0606736,0.068967,0.602079,0.103679,0.673885,0.0405633,0.482073,0.531115,0.0887606,0.620231,0.199437,0.432467,0.777237,0.451034,0.16026,0.176167,0.602921,0.385623,0.560399,0.230171,0.614958,0.720822,0.263669,0.491258,0.18442,0.694154,0.0394852,0.295612,0.290012,0.483423,0.696375,0.206804,0.999876,0.916962,0.276389,0.851235,0.0445115,0.419177,0.693172,0.352331,0.452501,0.66449,0.302877,0.737809,0.368913,0.372131,0.838446,0.867657,0.0911726,0.793345,0.561679,0.385127,0.16818,0.942699,0.485466,0.698462,0.857584,0.267082,0.180094,0.460363,0.583691,0.319644,0.878111,0.137315,0.722521,0.482093,0.314109,0.727987,0.230446,0.468664,0.921524,0.0143129,0.0839032,0.756892,0.967968,0.86487,0.357842,0.445388,0.263507,0.046931,0.878025,0.793625,0.436867,0.967393,0.245693,0.746356,0.548334,0.0777389,0.435564,0.880549,0.639954,0.24495,0.949642,0.941951,0.926705,0.957898,0.246607,0.978875,0.212732,0.914469,0.669821,0.928937,0.62618,0.915671,0.140822,0.963735,0.72813,0.684167,0.100348,0.473506,0.625956,0.0801145,0.885529,0.417155,0.327397,0.493222,0.429318,0.638728,0.43218,0.184498,0.311273,0.312538,0.541061,0.254257,0.120871,0.647758,0.638011,0.490658,0.791642,0.280706,0.0753313,0.2206,0.388463,0.252724,0.503183,0.418764,0.424123,0.0336493,0.491356,0.903268,0.134405,0.632399,0.649746,0.422374,0.945568,0.913684,0.216901,0.725271,0.818872,0.930508,0.0883662,0.0515295,0.536258,0.156357,0.717444,0.436653,0.456861,0.543704,0.728055,0.217388,0.835419,0.254543,0.21282,0.900287,0.593865,0.229651,0.314605,0.829418,0.783976,0.707966,0.913347,0.378906,0.725478,0.395926,0.735134,0.584438,0.202988,0.595874,0.139264,0.278364,0.118532,0.882707,0.410503,0.776818,0.82563,0.0562473,0.17235,0.463947,0.829966,0.973142,0.0633371,0.86843,0.669278,0.0581651,0.127291,0.25977,0.0403507,0.703395,0.227429,0.266239,0.0606482,0.939781,0.28796,0.0528615,0.455601,0.376609,0.813885,0.295368,0.194814,0.958576,0.235265,0.155762,0.890958,0.925161,0.437607,0.645928,0.563122,0.693749,0.022994,0.4469,0.826704,0.963435,0.00593394,0.49423,0.662827,0.439767,0.874479,0.334724,0.594406,0.353173,0.0851674,0.806638,0.235042,0.516593,0.00795358,0.294397,0.142117,0.645453,0.0261982,0.611459,0.108554,0.338254,0.149547,0.993859,0.592662,0.271309,0.700354,0.709377,0.758678,0.465071,0.629356,0.702344,0.643987,0.848987,0.99642,0.646755,0.75479,0.309443,0.300718,0.11094,0.930645,0.855383,0.337135,0.459071,0.859531,0.0586583,0.0107638,0.342063,0.35604,0.996623,0.841945,0.131977,0.764117,0.344834,0.704752,0.668837,0.818142,0.507589,0.410546,0.439443,0.984995,0.49534,0.134484,0.0769981,0.0509937,0.642278,0.859235,0.424261,0.538949,0.00671053,0.278611,0.322887,0.743062,0.0238332,0.334583,0.963176,0.745725,0.56791,0.268365,0.10301,0.645553,0.55883,0.0632349,0.840502,0.115437,0.54642,0.487416,0.255108,0.209662,0.196992,0.826998,0.220162,0.417317,0.297046,0.785589,0.558784,0.566575,0.203377,0.912718,0.0619092,0.685641,0.977076,0.811582,0.986557,0.522631,0.807222,0.334694,0.79767,0.435025,0.241159,0.371314,0.0906773,0.125482,0.835979,0.861813,0.0954936,0.219837,0.767363,0.695032,0.178383,0.749794,0.166528,0.22547,0.629511,0.0360548,0.286592,0.214045,0.863416,0.281238,0.0579698,0.819804,0.663169,0.432786,0.68455,0.443787,0.603859,0.649209,0.69335,0.241437,0.304667,0.928056,0.809938,0.208754,0.529817,0.849183,0.0075435,0.956713,0.2858,0.506273,|0.878067,0.869433,0.692495,0.571872,0.911105,0.45634,0.947437,0.980796,0.499665,0.633806,0.830704,0.557853,0.448664,0.0965506,0.291626,0.441057,0.914454,0.981692,0.87523,0.54342,0.0541307,0.248895,0.148821,0.537483,0.328941,0.0620964,0.55315,0.128756,0.328693,0.663327,0.970594,0.245835,0.631789,0.853215,0.145276,0.949585,0.161888,0.722467,0.172926,0.583229,0.494835,0.883972,0.984015,0.799572,0.774489,0.321194,0.575698,0.371208,0.140914,0.912167,0.768788,0.263169,0.36866,0.731138,0.382413,0.337113,0.370259,0.985116,0.0502517,0.15558,0.684104,0.578433,0.988216,0.316354,0.839348,0.481182,0.276571,0.322295,0.396433,0.3572,0.106061,0.253346,0.334678,0.987041,0.400626,0.969876,0.527963,0.222691,0.0842091,0.177698,0.549259,0.850937,0.52688,0.602147,0.618059,0.746035,0.0828009,0.829485,0.282226,0.731254,0.791478,0.00790703,0.10525,0.825357,0.375145,0.451196,0.332549,0.961606,0.0921731,0.38089,0.793364,0.869741,0.468242,0.814577,0.967987,0.0108761,0.865834,0.844229,0.629985,0.855861,0.09779,0.876008,0.436496,0.96779,0.523022,0.901947,0.916742,0.729945,0.0825589,0.821816,0.347747,0.016005,0.166627,0.881882,0.803843,0.85643,0.0419321,0.714432,0.618324,0.738875,0.728745,0.355559,0.749029,0.773847,0.907209,0.720791,0.532549,0.276939,0.409648,0.858581,0.583629,0.374133,0.350285,0.401191,0.0126517,0.609227,0.601331,0.0503283,0.338289,0.773086,0.310278,0.418263,0.587399,0.507466,0.517768,0.335136,0.542363,0.394814,0.0655178,0.484763,0.858878,0.282,0.702424,0.733711,0.21198,0.470813,0.700521,0.749838,0.179043,0.0582846,0.93366,0.191496,0.721891,0.508683,0.0425549,0.468044,0.412969,0.891809,0.53782,0.745275,0.56553,0.709985,0.332146,0.471196,0.856397,0.942136,0.311262,0.0546632,0.807391,0.0886338,0.946538,0.804974,0.183958,0.331205,0.881886,0.471958,0.942347,0.396218,0.828906,0.391617,0.400788,0.11059,0.42872,0.465631,0.00923127,0.596779,0.60441,0.645762,0.902837,0.512318,0.673284,0.68677,0.692544,0.233332,0.374105,0.805592,0.0505006,0.591314,0.917775,0.196103,0.526924,0.164349,0.964714,0.296173,0.315448,0.924698,0.816702,0.573172,0.0653033,0.453619,0.871688,0.904533,0.206266,0.356213,0.257285,0.202949,0.411855,0.10811,0.0170526,0.408464,0.570782,0.376886,0.880092,0.0508329,0.580793,0.480458,0.885834,0.86925,0.128015,0.378125,0.803866,0.255377,0.0192693,0.129965,0.947332,0.313149,0.075484,0.806339,0.545478,0.514983,0.92644,0.11947,0.62619,0.489118,0.959601,0.397902,0.150439,0.0631616,0.099779,0.357425,0.302681,0.0337856,0.119096,0.873798,0.959742,0.514124,0.172559,0.831179,0.0339826,0.152946,0.572287,0.848575,0.211899,0.808302,0.509532,0.0699623,0.225037,0.893896,0.708453,0.539104,0.253441,0.417282,0.756929,0.0562713,0.909931,0.991345,0.0415087,0.564719,0.962082,0.433084,0.0840313,0.295699,0.644216,0.30699,0.966158,0.782427,0.996323,0.61202,0.756005,0.394568,0.91814,0.381059,0.322048,0.450022,0.842577,0.986909,0.670307,0.548776,0.0499365,0.791771,0.573113,0.694503,0.00180107,0.33112,0.876788,0.837245,0.723318,0.328063,0.559275,0.538869,0.826851,0.841946,0.37764,0.395753,0.280719,0.134734,0.316218,0.322157,0.894952,0.57183,0.388921,0.963391,0.311396,0.672393,0.497038,0.00875276,0.778444,0.485632,0.549416,0.858215,0.592083,0.0890649,0.0520512,0.186984,0.816116,0.597632,0.804687,0.180747,0.635531,0.818806,0.569027,0.00145602,0.737708,0.799249,0.637311,0.787332,0.932272,0.325277,0.689672,0.4636,0.286247,0.909795,0.805355,0.384147,0.903542,0.86728,0.967341,0.262172,0.749094,0.145494,0.586131,0.27609,0.196062,0.471817,0.60431,0.0968504,0.619657,0.307942,0.731831,0.441398,0.272886,0.918011,0.632935,0.645058,0.914985,0.68841,0.701,0.0610454,0.257049,0.286748,0.259677,0.774958,0.867462,0.515917,0.945958,0.771577,0.0595282,0.989092,0.102135,0.210816,0.183727,0.977682,0.888117,0.377408,0.829159,0.453947,0.0981779,0.655937,0.830888,0.0174314,0.77698,0.311576,0.948933,0.688012,0.700185,0.317962,0.806784,0.788033,0.576357,0.859749,0.648038,0.738099,0.103949,0.868896,0.759405,0.748022,0.715383,0.514993,0.388014,0.271517,0.578551,0.231305,0.70247,0.921854,0.407919,0.788234,0.782579,0.974792,0.0460169,0.433287,0.587986,0.252717,0.439606,0.666859,0.0945435,0.816942,0.224122,0.482964,0.822707,0.587127,0.924664,0.46116,0.972308,0.741996,0.314088,0.513081,0.154456,0.662653,0.929086,0.976854,0.831028,0.100741,0.675753,0.0407498,0.812059,0.397715,0.286128,0.22311,0.052865,0.0350151,0.0446314,0.0588883,0.749817,0.440547,0.468977,0.356939,0.946241,0.163281,0.852979,0.552416,0.513644,0.0216714,0.191674,0.398452,0.912818,0.264595,0.504101,0.0674348,0.712421,0.117469,0.56924,0.297261,0.750631,0.106328,0.496351,0.615275,0.545021,0.316693,0.72141,0.165143,0.41619,0.248659,0.267671,0.440938,0.331023,0.0377212,0.395649,0.728752,0.622022,0.977992,0.170189,0.536042,0.426032,0.524241,0.774522,0.0961412,0.197516,0.00166589,0.000569999,0.571128,0.970152,0.468665,0.119366,0.104142,0.48738,0.995278,0.951647,0.845857,0.272297,0.0766516,0.971428,0.392093,0.837974,0.540049,0.857636,0.1671,0.863379,0.444037,0.539897,0.469814,0.0124547,0.213072,0.960876,0.0369434,0.477716,0.067301,0.872151,0.933594,0.0835665,0.564877,0.0148779,0.691068,0.94457,0.642419,0.236866,0.598754,0.295384,0.535004,0.39637,0.851388,0.506165,0.986574,0.727877,0.600169,0.527274,0.26777,0.764329,0.300252,0.113258,0.374902,0.608234,0.492206,0.270428,0.545589,0.497979,0.699773,0.26531,0.122089,0.0389187,0.764505,0.96275,0.116221,0.190582,0.665952,0.830924,0.0386986,0.726421,0.783725,0.605737,0.472331,0.549487,0.225497,0.234166,0.0343754,0.920712,0.858958,0.659529,0.924835,0.943588,0.85164,0.724535,0.771093,0.592239,0.597117,0.817655,0.976949,0.872298,0.184021,0.786254,0.265294,0.673289,0.248344,0.409751,0.749409,0.0571597,0.416899,0.610743,0.894766,0.783712,0.570678,0.877419,0.0376683,0.0128607,0.0887534,0.881054,0.805998,0.0970781,0.117216,0.659599,0.25733,0.262004,0.107988,0.607328,0.727685,0.21959,0.170588,0.498773,0.695884,0.168542,0.37081,0.994755,0.514722,0.514634,0.881544,0.267071,0.342838,0.252548,0.552386,0.147817,0.689774,0.0115257,0.155716,0.104698,0.833746,0.132375,0.0289671,0.293602,0.91169,0.703606,0.377634,0.409525,0.335122,0.687237,0.184017,0.503074,0.0545933,0.0908877,0.608154,0.161557,0.739899,0.0242576,0.234314,0.59884,0.264332,0.971314,0.146728,0.135347,0.0112595,0.757525,0.595676,0.499023,0.797535,0.156792,0.435367,0.0996066,0.238256,0.75695,0.771715,0.479409,0.892813,0.349606,0.585758,0.0560755,0.418414,0.224654,0.111185,0.512523,0.308051,0.46139,0.719398,0.519274,0.266107,0.966197,0.540239,0.474415,0.646699,0.124769,0.0642259,0.639508,0.205283,0.814831,0.769221,0.983811,0.891136,0.235263,0.55436,0.888205,0.832189,0.649591,0.0397555,0.56642,0.610189,0.105912,0.458714,0.240866,0.440884,0.194907,0.429221,0.0443957,0.680829,0.955512,0.937111,0.887925,0.933227,0.0204527,0.843491,0.741022,0.754618,0.297532,0.671343,0.922409,0.345668,0.214184,0.683279,0.694664,0.712878,0.0873823,0.55608,0.119032,0.710752,0.545049,0.0641174,0.151702,0.911734,0.819634,0.784668,0.145939,0.843097,0.755013,0.278206,0.313905,0.469937,0.35324,0.193222,0.845419,0.800026,0.310382,0.314894,0.663036,0.864182,0.0721738,0.508528,0.905215,0.668827,0.0917057,0.486835,0.387117,0.0734223,0.751158,0.775066,0.210122,0.231222,0.619376,0.91764,0.203806,0.0480364,0.237838,0.456707,0.184574,0.219667,0.048188,0.92974,0.607291,0.0668857,0.996063,0.34183,0.550322,0.789868,0.973955,0.17815,0.478801,0.119106,0.610611,0.790449,0.600292,0.0905269,0.0782592,0.798658,0.365118,0.108099,0.228259,0.866275,0.543747,0.310359,0.994849,0.463121,0.737208,0.295872,0.439256,0.0534477,0.887185,0.0103902,0.0761138,0.389691,0.442263,0.165752,0.737563,0.519125,0.298661,0.99467,0.0595549,0.776187,0.0332513,0.686468,0.209729,0.865452,0.719269,0.531859,0.31203,0.769301,0.259217,0.260385,0.860335,0.340608,0.226889,0.919924,0.690738,0.335967,0.0143329,0.669408,0.642478,0.683933,0.425614,0.711451,0.308757,0.396523,0.958693,0.944998,0.510123,0.582122,0.35681,0.854834,0.632511,0.495266,0.874779,0.413435,0.867841,0.64328,0.838353,0.831347,0.584128,0.30902,0.179073,0.463163,0.189382,0.827498,0.225674,0.841295,0.708766,0.123848,0.592776,0.987746,0.277453,0.704479,0.139531,0.253114,0.64153,0.78812,0.076211,0.927172,0.950839,0.704319,0.855661,0.461761,0.180004,0.254771,0.111359,0.111793,0.143565,0.0555435,0.300829,0.716539,0.79902,0.493608,0.72979,0.111443,0.984374,0.515751,0.767994,0.933151,0.66927,0.00901538,0.118604,0.232682,0.127201,0.875654,0.884741,0.18729,0.28188,0.67794,0.481343,0.472107,0.98517,0.321955,0.952672,0.855479,0.730944,0.00450224,0.579912,0.488264,0.717356,0.649117,0.85056,0.816499,0.791079,0.556021,0.327367,0.332347,0.856181,0.692055,0.793999,0.0771537,0.929531,0.313518,0.671167,0.738307,0.936309,0.239169,0.756675,0.520684,0.519255,0.966162,0.317508,0.2146,0.840307,0.621526,0.735182,0.711863,0.726551,0.744445,0.410857,0.312628,0.999224,0.357381,0.297927,0.995937,0.868253,0.047245,0.568625,0.0497739,0.43468,0.805388,0.660966,0.249676,0.0113847,0.0683408,0.392009,0.385303,0.258586,0.333536,0.914625,0.624388,0.547046,0.322978,0.558186,0.782266,0.885665,0.450173,0.0883334,0.449878,|0.870482,0.211093,0.095929,0.670571,0.265951,0.945133,0.118504,0.199766,0.0928367,0.617447,0.544879,0.998982,0.398651,0.716412,0.326988,0.655188,0.258081,0.767007,0.273997,0.788061,0.415875,0.0874009,0.043046,0.597827,0.812902,0.704616,0.276582,0.939082,0.665601,0.721098,0.240615,0.150836,0.169544,0.789716,0.432788,0.595313,0.764153,0.57404,0.785436,0.51119,0.206383,0.298472,0.153437,0.110322,0.60129,0.493972,0.243758,0.363244,0.42777,0.112877,0.325226,0.63157,0.506817,0.951281,0.232326,0.878761,0.859384,0.523641,0.318998,0.407227,0.444526,0.192977,0.543588,0.527123,0.177623,0.727215,0.079549,0.35866,0.0133359,0.942015,0.158097,0.467491,0.853605,0.514824,0.362915,0.159103,0.853421,0.0835407,0.277141,0.0927952,0.120576,0.507308,0.950533,0.860765,0.696732,0.468143,0.657968,0.622544,0.494441,0.0393981,0.0464811,0.406918,0.598619,0.880536,0.224332,0.540873,0.935278,0.162928,0.364864,0.282988,0.0604571,0.503749,0.327883,0.71198,0.152447,0.610681,0.264885,0.868792,0.124973,0.150373,0.438015,0.830592,0.470591,0.232032,0.199956,0.339801,0.204734,0.0871447,0.547817,0.136342,0.563034,0.234307,0.0112863,0.202056,0.164834,0.902644,0.729176,0.666929,0.823801,0.154844,0.459282,0.788076,0.87671,0.329316,0.52902,0.762501,0.30773,0.508379,0.210138,0.84944,0.91009,0.870786,0.319445,0.665459,0.518716,0.594039,0.980281,0.146634,0.397601,0.00476509,0.439312,0.0467609,0.0891008,0.785582,0.67838,0.452491,0.873287,0.294113,0.626578,0.188834,0.530617,0.387142,0.950696,0.425493,0.738925,0.325742,0.179068,0.077508,0.97279,0.252339,0.942271,0.903768,0.23973,0.0804228,0.255554,0.909013,0.341657,0.423522,0.620683,0.184812,0.793968,0.761761,0.745761,0.284816,0.919608,0.111847,0.794291,0.502022,0.454745,0.779313,0.850572,0.141415,0.907458,0.121824,0.688068,0.60339,0.259737,0.62998,0.453384,0.472767,0.0424251,0.223237,0.446551,0.397464,0.569735,0.0585968,0.292034,0.557993,0.33628,0.67385,0.280464,0.69476,0.674245,0.333407,0.31265,0.470285,0.89274,0.915093,0.494106,0.182288,0.886706,0.152176,0.574826,0.94678,0.540836,0.764064,0.623228,0.088949,0.716601,0.0563442,0.762614,0.150586,0.6594,0.79041,0.570293,0.565063,0.778248,0.736376,0.855342,0.485448,0.354675,0.569874,0.272854,0.650464,0.857217,0.975023,0.292509,0.0625107,0.310463,0.584332,0.188298,0.510393,0.493113,0.171431,0.38927,0.764443,0.88634,0.74985,0.172957,0.651466,0.521984,0.260453,0.695578,0.160223,0.549338,0.205074,0.397283,0.659188,0.324121,0.243988,0.99819,0.972273,0.69148,0.318265,0.500415,0.919869,0.521379,0.683159,0.143896,0.489456,0.528868,0.182024,0.383094,0.887265,0.0367984,0.52181,0.634761,0.340081,0.825952,0.281282,0.0792054,0.788876,0.251254,0.618868,0.397244,0.287407,0.776472,0.345315,0.878948,0.295498,0.748546,0.397343,0.968065,0.752048,0.339296,0.815104,0.889565,0.115079,0.241272,0.931182,0.362325,0.627497,0.0547777,0.355497,0.636159,0.294486,0.854295,0.898568,0.191648,0.122927,0.0862076,0.179932,0.0904022,0.47467,0.0111451,0.580382,0.567906,0.869807,0.597495,0.160102,0.322247,0.300206,0.355819,0.237026,0.345914,0.756099,0.703173,0.642706,0.170259,0.847121,0.959074,0.357615,0.870056,0.612242,0.287158,0.707607,0.401592,0.922259,0.264053,0.0837137,0.587985,0.620102,0.761815,0.582474,0.715354,0.41425,0.432574,0.742803,0.64148,0.232832,0.902785,0.879045,0.136735,0.657539,0.878255,0.184439,0.706347,0.899727,0.185102,0.224436,0.569169,0.24786,0.201111,0.126503,0.512386,0.89511,0.181357,0.647936,0.406482,0.108695,0.852147,0.279614,0.353253,0.119708,0.6426,0.0985352,0.915287,0.982212,0.23088,0.699936,0.488021,0.963873,0.0296903,0.104616,0.496481,0.0520748,0.201338,0.748562,0.736533,0.485143,0.38149,0.732911,0.793518,0.340334,0.966243,0.724416,0.251363,0.023598,0.859706,0.11382,0.362609,0.680666,0.651959,0.176995,0.15873,0.521086,0.968745,0.197394,0.899706,0.0154955,0.267126,0.0830778,0.0960829,0.0488761,0.138595,0.874335,0.539725,0.709582,0.661069,0.0686177,0.063677,0.0189561,0.0935361,0.542758,0.818738,0.423235,0.335034,0.0489148,0.256614,0.120258,0.186001,0.833348,0.945415,0.141644,0.665477,0.212121,0.215928,0.565211,0.25361,0.743283,0.737947,0.445075,0.215765,0.290903,0.678429,0.650879,0.62346,0.983968,0.097276,0.75082,0.454078,0.348004,0.534591,0.140927,0.857688,0.516765,0.348773,0.172329,0.194201,0.957848,0.254783,0.0138594,0.749664,0.45648,0.0292156,0.0492725,0.0956007,0.40684,0.958977,0.0517412,0.328626,0.00124305,0.420772,0.941213,0.355133,0.788859,0.675265,0.947011,0.0427382,0.0209219,0.8132,0.860919,0.683401,0.313445,0.754114,0.851241,0.503552,0.61437,0.819953,0.448204,0.77214,0.0756922,0.602325,0.685425,0.754358,0.121483,0.53298,0.751395,0.0494513,0.253838,0.018701,0.596706,0.651524,0.0833248,0.532276,0.461452,0.313131,0.32498,0.520766,0.724342,0.830334,0.330672,0.547339,0.174249,0.26246,0.1544,0.861217,0.934726,0.337838,0.92221,0.731787,0.529592,0.747183,0.322552,0.210103,0.724341,0.304035,0.922818,0.951162,0.904453,0.465682,0.258266,0.340966,0.0977571,0.763631,0.657355,0.794768,0.630232,0.878869,0.970417,0.399711,0.261435,0.484606,0.191524,0.4969,0.68007,0.90708,0.630061,0.342715,0.844055,0.872627,0.405781,0.602236,0.864062,0.430049,0.0904442,0.699332,0.769446,0.0214341,0.186256,0.416894,0.613329,0.195626,0.327615,0.700551,0.0565095,0.807706,0.892312,0.569524,0.700107,0.69681,0.272038,0.787321,0.347601,0.117268,0.152907,0.501285,0.49871,0.0620515,0.433071,0.0639134,0.9898,0.102769,0.473439,0.0482225,0.613149,0.393982,0.81706,0.698861,0.479365,0.579429,0.547872,0.248465,0.946668,0.482504,0.366988,0.466756,0.816503,0.801366,0.475983,0.756693,0.826923,0.336219,0.496867,0.869924,0.937478,0.557314,0.353826,0.702133,0.433776,0.986681,0.471559,0.0856465,0.341356,0.467283,0.520889,0.163704,0.467844,0.598871,0.609211,0.566123,0.300045,0.315183,0.922502,0.941417,0.231847,0.148194,0.851522,0.775608,0.562799,0.633321,0.258194,0.242946,0.0316594,0.00264728,0.696847,0.647464,0.128477,0.960246,0.774261,0.511146,0.323743,0.61787,0.112435,0.825239,0.322627,0.749778,0.415661,0.955196,0.31701,0.806043,0.725541,0.925351,0.0378875,0.895757,0.294762,0.977493,0.320425,0.428785,0.883902,0.137444,0.543445,0.892028,0.483974,0.0999644,0.998026,0.703089,0.735575,0.332507,0.862118,0.297513,0.306293,0.647259,0.538162,0.792405,0.972926,0.356175,0.668874,0.890247,0.772522,0.898458,0.377106,0.85948,0.69314,0.0198373,0.393706,0.619719,0.634021,0.403999,0.912167,0.274053,0.35614,0.565412,0.185453,0.636113,0.369468,0.269386,0.0560912,0.881372,0.921945,0.576845,0.654947,0.860901,0.124908,0.130115,0.919745,0.670816,0.574459,0.116828,0.373619,0.599039,0.916427,0.879763,0.959131,0.574388,0.809911,0.558002,0.259928,0.346146,0.0184535,0.959107,0.534881,0.467094,0.867097,0.766266,0.557957,0.751024,0.0924941,0.881963,0.930603,0.0932733,0.637543,0.455766,0.562544,0.756153,0.109172,0.22303,0.258885,0.247006,0.349207,0.330617,0.131741,0.722878,0.303452,0.409199,0.397849,0.146485,0.619468,0.102726,0.948514,0.0385049,0.112671,0.965938,0.950227,0.66948,0.704199,0.996244,0.617984,0.924178,0.994485,0.0316256,0.726286,0.533841,0.865602,0.959998,0.348555,0.752615,0.721112,0.716666,0.215202,0.742041,0.753929,0.111129,0.729431,0.0560412,0.64393,0.708273,0.816846,0.458572,0.612172,0.358834,0.830467,0.294569,0.397166,0.81632,0.527249,0.774472,0.979191,0.692901,0.618747,0.723901,0.61266,0.294214,0.665837,0.462172,0.360665,0.510629,0.237578,0.0606143,0.351669,0.372492,0.562293,0.465686,0.280716,0.294174,0.540645,0.727573,0.880662,0.651923,0.085041,0.695737,0.150088,0.958361,0.487701,0.0088253,0.331268,0.90511,0.507989,0.861636,0.0236472,0.444535,0.745778,0.798071,0.571978,0.456084,0.00989264,0.837568,0.0313346,0.879163,0.697846,0.149307,0.994299,0.615785,0.0377916,0.246854,0.894534,0.320775,0.704728,0.891547,0.0746641,0.250318,0.150065,0.548063,0.730037,0.438054,0.373994,0.623502,0.81527,0.957203,0.88451,0.857305,0.381624,0.331495,0.832446,0.0115185,0.907122,0.749147,0.00465834,0.266055,0.367476,0.427663,0.22918,0.373025,0.978408,0.31679,0.969139,0.269859,0.550281,0.353524,0.463466,0.651604,0.752056,0.902163,0.378269,0.56986,0.692746,0.197836,0.93226,0.652914,0.119866,0.193299,0.0427644,0.15216,0.889819,0.470066,0.839595,0.721277,0.373874,0.365051,0.403508,0.379843,0.913123,0.577407,0.433004,0.713859,0.0249774,0.854744,0.321357,0.913894,0.668961,0.93208,0.752497,0.992942,0.0743522,0.0474097,0.365649,0.799328,0.458886,0.133474,0.939729,0.784196,0.508612,0.788162,0.0165486,0.771844,0.786672,0.2435,0.0475643,0.685022,0.632542,0.980594,0.846746,0.124228,0.423744,0.694242,0.0353808,0.390947,0.294872,0.982482,0.699542,0.847425,0.116864,0.656493,0.0190948,0.0917678,0.83202,0.0814239,0.0308628,0.45813,0.965663,0.754159,0.863894,0.556129,0.761549,0.348626,0.795887,0.419475,0.652834,0.0629492,0.424327,0.0999168,0.811544,0.944698,0.177492,0.483108,0.108417,0.376082,0.607818,0.116436,0.286099,0.013862,0.714223,0.251751,0.889207,0.276251,0.205625,0.48286,0.304672,0.256086,0.724683,0.185534,0.0561695,0.693118,0.263295,0.894775,0.602307,0.380903,0.475668,0.0127664,0.19883,0.622386,0.560406,0.552568,0.244254,0.427113,0.547272,0.0603462,0.9697,0.693628,0.227779,|0.202676,0.638462,0.491782,0.481776,0.912265,0.0927297,0.294521,0.033122,0.954758,0.464105,0.99274,0.733415,0.4263,0.279293,0.894188,0.368177,0.205085,0.638048,0.918981,0.901251,0.500326,0.216827,0.619044,0.478645,0.315025,0.763142,0.65497,0.182842,0.867949,0.252165,0.134532,0.560813,0.280887,0.559694,0.800783,0.527639,0.731158,0.0879891,0.500556,0.699028,0.0557772,0.475633,0.192458,0.700111,0.178861,0.997939,0.991693,0.324484,0.699659,0.924746,0.273529,0.426058,0.457981,0.839069,0.446043,0.986659,0.522937,0.83284,0.546991,0.5786,0.518655,0.446889,0.542532,0.200509,0.916018,0.0977578,0.728973,0.369591,0.698258,0.972644,0.277613,0.234518,0.775515,0.717957,0.000689924,0.422951,0.0295459,0.0935292,0.975363,0.109619,0.676306,0.975546,0.73456,0.509661,0.714048,0.438739,0.151933,0.894204,0.667045,0.829261,0.102849,0.402283,0.420955,0.943404,0.0955936,0.0539635,0.550389,0.851503,0.245856,0.674071,0.186272,0.761354,0.616224,0.417304,0.0777636,0.921193,0.792431,0.833846,0.623872,0.139229,0.341899,0.648159,0.837738,0.561782,0.431804,0.772281,0.415596,0.669182,0.240853,0.975006,0.411207,0.685246,0.0525893,0.732093,0.580684,0.754085,0.371031,0.67969,0.494204,0.0703595,0.422447,0.0829026,0.486099,0.585197,0.525727,0.483543,0.150555,0.642324,0.702429,0.661335,0.600875,0.00803924,0.773327,0.82009,0.129103,0.0134627,0.439925,0.0388796,0.952795,0.319008,0.89751,0.0898809,0.908521,0.263427,0.687793,0.941882,0.536527,0.531115,0.492274,0.452264,0.948306,0.915345,0.701006,0.16119,0.722567,0.28441,0.975574,0.238408,0.965387,0.972016,0.683621,0.115679,0.00307715,0.433062,0.0506242,0.492762,0.602081,0.99932,0.055612,0.110353,0.022145,0.0505793,0.653158,0.767977,0.340071,0.798619,0.127,0.86192,0.43985,0.980267,0.240017,0.566932,0.205774,0.354271,0.748653,0.298214,0.607392,0.0402701,0.776073,0.633419,0.559988,0.84151,0.33167,0.958949,0.380559,0.169364,0.790121,0.526387,0.816248,0.107319,0.967942,0.0205697,0.846562,0.65456,0.600983,0.119921,0.231735,0.332689,0.264643,0.0525914,0.789297,0.221173,0.317154,0.52833,0.25105,0.00930417,0.886422,0.61451,0.787983,0.231329,0.387892,0.323499,0.215427,0.561464,0.564931,0.0596175,0.309135,0.0486345,0.0232624,0.540938,0.422374,0.697726,0.343768,0.93526,0.631144,0.355605,0.554845,0.766738,0.153867,0.44898,0.0391348,0.0885175,0.136586,0.613952,0.654332,0.655902,0.627832,0.795867,0.292411,0.36198,0.309039,0.90465,0.364702,0.239482,0.189625,0.52882,0.394361,0.447636,0.673302,0.91851,0.368568,0.852493,0.48365,0.330082,0.194236,0.171763,0.607273,0.535079,0.589157,0.651781,0.249158,0.394929,0.063201,0.579529,0.285584,0.574327,0.669339,0.333715,0.887015,0.307854,0.132659,0.676324,0.7394,0.253646,0.456613,0.729112,0.987385,0.62592,0.308305,0.712712,0.999252,0.890618,0.0703828,0.498232,0.905118,0.603806,0.893103,0.196112,0.963881,0.31241,0.25728,0.834597,0.115296,0.984451,0.847841,0.98231,0.482985,0.349817,0.901945,0.162852,0.0734046,0.509616,0.261521,0.84622,0.778878,0.0434803,0.827431,0.528143,0.405701,0.705239,0.384946,0.659895,0.634897,0.0526873,0.469736,0.738778,0.302365,0.744686,0.656761,0.490473,0.340362,0.727387,0.954339,0.709961,0.719448,0.765192,0.13894,0.698816,0.516892,0.869088,0.870794,0.764846,0.284596,0.830663,0.513494,0.058216,0.13735,0.480828,0.575965,0.192263,0.852553,0.63906,0.887132,0.0184613,0.862859,0.909218,0.9498,0.808083,0.0665849,0.718894,0.779097,0.789899,0.542445,0.430714,0.581285,0.516312,0.376093,0.332421,0.54719,0.643113,0.766306,0.834288,0.477191,0.532893,0.687948,0.0615678,0.19868,0.0976637,0.716919,0.888528,0.361629,0.725123,0.274908,0.0970852,0.640362,0.0337311,0.60846,0.892817,0.289898,0.11386,0.431082,0.932224,0.90686,0.601415,0.235341,0.925073,0.0896425,0.350264,0.0756837,0.444941,0.280233,0.1522,0.247807,0.720832,0.445642,0.802508,0.544525,0.609925,0.57386,0.603805,0.976429,0.205771,0.370278,0.632657,0.42075,0.69969,0.924576,0.701553,0.162492,0.0664325,0.956861,0.0647818,0.860774,0.520053,0.678499,0.243215,0.764673,0.17934,0.146788,0.730358,0.99547,0.214356,0.188971,0.659655,0.852889,0.825085,0.901661,0.0513031,0.41851,0.975007,0.425731,0.709946,0.589033,0.146467,0.660653,0.81825,0.554982,0.799529,0.566397,0.117708,0.495114,0.188249,0.782137,0.954675,0.954363,0.747996,0.210493,0.78249,0.518122,0.0176712,0.754741,0.126994,0.786036,0.296137,0.436513,0.371829,0.513218,0.443889,0.401869,0.1024,0.584275,0.339704,0.433691,0.398874,0.453394,0.335258,0.0582582,0.950607,0.648471,0.883615,0.795442,0.519701,0.666213,0.882098,0.347639,0.422949,0.387724,0.293428,0.201066,0.157586,0.861309,0.0092572,0.977978,0.489592,0.177144,0.053504,0.34768,0.147483,0.180985,0.259211,0.361402,0.120275,0.656113,0.200975,0.386191,0.216938,0.294766,0.700255,0.116843,0.674378,0.913306,0.301366,0.817034,0.924819,0.970549,0.329767,0.0867819,0.941891,0.136609,0.156376,0.815138,0.939114,0.854499,0.706163,0.249124,0.888069,0.619214,0.946229,0.325137,0.0794951,0.641877,0.762361,0.538718,0.148721,0.042496,0.548517,0.164254,0.72121,0.227182,0.172964,0.120206,0.692202,0.948133,0.126162,0.903205,0.975363,0.0740755,0.796303,0.0964483,0.413097,0.684808,0.850272,0.652177,0.963304,0.525671,0.623952,0.251271,0.480671,0.878407,0.535212,0.472939,0.172241,0.0955797,0.37702,0.315309,0.247836,0.241756,0.689033,0.352889,0.0981373,0.510864,0.280575,0.456123,0.810732,0.619906,0.158983,0.977248,0.957397,0.983136,0.421483,0.409873,0.977521,0.36545,0.426118,0.120784,0.584064,0.167065,0.743597,0.865764,0.190023,0.133497,0.913786,0.803795,0.393704,0.371068,0.845368,0.0446842,0.431842,0.560722,0.572752,0.634675,0.868588,0.0781973,0.960472,0.714022,0.031635,0.247356,0.172439,0.863227,0.415139,0.445832,0.240903,0.533457,0.677245,0.53115,0.395742,0.761824,0.417032,0.101364,0.943159,0.0888181,0.371035,0.0117729,0.139956,0.369857,0.625341,0.389206,0.0717051,0.799131,0.390461,0.201335,0.20069,0.539531,0.994654,0.54524,0.185344,0.0953941,0.127596,0.673967,0.782047,0.0687671,0.966368,0.204107,0.538298,0.485705,0.772115,0.368503,0.894522,0.818881,0.608246,0.123819,0.284819,0.591505,0.808549,0.0832555,0.639767,0.697421,0.798937,0.716546,0.211849,0.758693,0.946798,0.893832,0.46138,0.0969536,0.986046,0.931351,0.164593,0.903225,0.782395,0.0407922,0.938566,0.331614,0.523138,0.307631,0.624376,0.452726,0.963743,0.907764,0.636891,0.0556394,0.288903,0.245247,0.32346,0.0203611,0.0788025,0.572804,0.173637,0.0558853,0.737022,0.539403,0.0835209,0.878505,0.209463,0.67467,0.514652,0.466979,0.663296,0.822065,0.65642,0.592197,0.647955,0.262626,0.524138,0.791847,0.650038,0.0662334,0.252677,0.0592355,0.411966,0.821032,0.397518,0.949806,0.3678,0.674028,0.578386,0.494682,0.365107,0.888463,0.0809886,0.745528,0.937067,0.163368,0.661604,0.951408,0.852175,0.621435,0.0737031,0.581932,0.774641,0.370589,0.611091,0.0524077,0.614087,0.404349,0.70148,0.868379,0.0268818,0.987733,0.981079,0.915366,0.405631,0.423879,0.713516,0.550447,0.876928,0.6757,0.502228,0.474608,0.283492,0.278772,0.446926,0.855912,0.899235,0.298124,0.79754,0.694117,0.650951,0.628105,0.654127,0.729664,0.618318,0.851166,0.170236,0.172117,0.867488,0.87305,0.199962,0.254049,0.45806,0.980455,0.474968,0.492675,0.441305,0.507697,0.469611,0.891313,0.342136,0.406533,0.688474,0.901944,0.516042,0.49025,0.522595,0.264599,0.716464,0.285561,0.147421,0.983894,0.0681249,0.103466,0.322552,0.833986,0.101544,0.980097,0.924762,0.704167,0.75276,0.258825,0.28896,0.275629,0.938795,0.141718,0.686906,0.766803,0.564444,0.55644,0.892463,0.204392,0.10677,0.175362,0.599132,0.759607,0.680885,0.721242,0.0397366,0.0252396,0.29039,0.145086,0.388434,0.914317,0.105145,0.924526,0.686594,0.739512,0.0234186,0.251116,0.793987,0.0985969,0.190988,0.555326,0.857728,0.293397,0.217975,0.214599,0.362336,0.389919,0.209089,0.425111,0.670679,0.947558,0.215214,0.492976,0.0118988,0.16616,0.948653,0.484477,0.839057,0.297711,0.905335,0.23687,0.747366,0.0279937,0.214612,0.479036,0.75133,0.598335,0.540568,0.831947,0.866643,0.00427181,0.837353,0.144668,0.843129,0.562413,0.604131,0.63477,0.844806,0.932491,0.779838,0.1379,0.0218358,0.233759,0.704899,0.469055,0.699473,0.429537,0.139794,0.86749,0.891378,0.0473936,0.254333,0.930728,0.375401,0.732328,0.657407,0.2253,0.238888,0.00641608,0.317275,0.378517,0.834189,0.56846,0.930914,0.0782949,0.49964,0.834533,0.400145,0.931646,0.218069,0.056107,0.00973064,0.199479,0.497961,0.362817,0.955624,0.674051,0.378316,0.819919,0.878717,0.139014,0.113984,0.170995,0.966104,0.0647664,0.468259,0.395181,0.189246,0.169832,0.50418,0.397535,0.860311,0.72525,0.0146563,0.7915,0.150394,0.387072,0.564428,0.833651,0.541183,0.909839,0.926926,0.360364,0.181015,0.21675,0.829124,0.204151,0.117472,0.254381,0.989125,0.977112,0.831066,0.685296,0.317975,0.733405,0.0711508,0.218934,0.513968,0.098834,0.749805,0.936463,0.0961767,0.225592,0.745133,0.408107,0.0688266,0.970113,0.836112,0.850781,0.134868,0.627583,0.950925,0.908146,0.370283,0.080036,0.285673,0.947186,0.56378,0.36591,0.0827004,0.195818,0.800067,0.872748,0.823421,0.723504,0.0416007,0.815956,0.0708694,0.595604,0.578113,0.186077,0.730191,0.434028,0.0861423,0.283702,0.365238,0.728741,0.133323,0.957665,0.323124,|0.845067,0.634691,0.0735536,0.630031,0.764493,0.56465,0.648573,0.295782,0.912369,0.281528,0.49667,0.369248,0.844704,0.392347,0.862701,0.365933,0.547697,0.758379,0.183931,0.270176,0.388196,0.197777,0.468067,0.243235,0.503732,0.0460829,0.645251,0.194326,0.419969,0.952428,0.525644,0.0753261,0.48244,0.99623,0.210698,0.708932,0.901351,0.346435,0.405778,0.847858,0.694957,0.716278,0.764624,0.780353,0.673599,0.645537,0.487462,0.220616,0.41728,0.874917,0.741478,0.314877,0.415655,0.353977,0.574285,0.105816,0.100097,0.863686,0.430365,0.061574,0.759266,0.537203,0.320564,0.470008,0.429135,0.822822,0.207824,0.9888,0.919768,0.350397,0.86088,0.461405,0.122163,0.984546,0.539619,0.0791603,0.496757,0.39405,0.627458,0.228545,0.997652,0.064081,0.506073,0.0974422,0.0483518,0.390077,0.983802,0.919479,0.358609,0.0767331,0.65137,0.691051,0.948558,0.382894,0.969949,0.551708,0.87605,0.282753,0.457402,0.32971,0.675035,0.608517,0.498489,0.197663,0.975037,0.702537,0.772318,0.984105,0.503504,0.627973,0.889791,0.480026,0.721529,0.0155016,0.847322,0.261185,0.915074,0.233673,0.315475,0.118466,0.316771,0.556184,0.786519,0.153171,0.615787,0.131835,0.793266,0.0666586,0.223279,0.448663,0.43009,0.0520388,0.363016,0.745345,0.726705,0.792586,0.345979,0.588392,0.0428358,0.163669,0.603788,0.0818374,0.717956,0.527906,0.28994,0.017068,0.707697,0.584718,0.406887,0.901894,0.131459,0.169229,0.796655,0.687639,0.470348,0.988466,0.449102,0.414618,0.374622,0.530941,0.973443,0.10371,0.319779,0.518388,0.646128,0.149607,0.287502,0.932565,0.53059,0.637814,0.856046,0.0990911,0.900747,0.793537,0.138852,0.279411,0.622999,0.0972164,0.478389,0.236016,0.974893,0.942891,0.720883,0.168887,0.557898,0.0533347,0.0211943,0.763963,0.58948,0.677389,0.595935,0.198638,0.0260842,0.909654,0.443335,0.372748,0.220606,0.668596,0.786746,0.298129,0.307141,0.684214,0.666416,0.308087,0.832933,0.842204,0.328265,0.152709,0.785451,0.741219,0.95379,0.898515,0.439543,0.44669,0.586491,0.710416,0.586856,0.0354041,0.583929,0.0351134,0.0522105,0.986633,0.876839,0.928049,0.769155,0.135268,0.555808,0.882029,0.0416839,0.0188147,0.450938,0.170169,0.783955,0.733687,0.744552,0.263378,0.871728,0.166755,0.614424,0.967206,0.341715,0.696689,0.0614241,0.395932,0.8508,0.795332,0.875505,0.789343,0.772195,0.149589,0.653447,0.0297731,0.359065,0.0435846,0.588941,0.129275,0.424603,0.0733438,0.0898419,0.861026,0.370044,0.0697965,0.816997,0.0726048,0.971259,0.985712,0.727686,0.199697,0.480136,0.870075,0.295107,0.860832,0.205102,0.153447,0.401478,0.459768,0.549077,0.493285,0.880264,0.496777,0.0805972,0.988811,0.955276,0.790545,0.889838,0.885125,0.683087,0.114875,0.857267,0.0405664,0.709956,0.209918,0.992465,0.0900909,0.416597,0.827341,0.750467,0.68078,0.344176,0.510846,0.340719,0.0317375,0.696602,0.733611,0.801994,0.203382,0.202761,0.986037,0.302968,0.112893,0.369583,0.0712283,0.936905,0.886838,0.82622,0.777149,0.384219,0.928935,0.236294,0.67063,0.940121,0.952263,0.265138,0.544114,0.483234,0.655694,0.268589,0.859075,0.75746,0.22434,0.687109,0.705259,0.089535,0.557844,0.451935,0.89889,0.604294,0.0998458,0.53376,0.352359,0.995045,0.669101,0.909083,0.383229,0.0359842,0.418598,0.0607633,0.073948,0.221826,0.539138,0.811184,0.51033,0.989384,0.815168,0.558122,0.282541,0.141908,0.288864,0.981484,0.861426,0.468757,0.34135,0.852956,0.00947559,0.94254,0.975873,0.899515,0.882775,0.502647,0.894042,0.208131,0.865333,0.110614,0.163897,0.359771,0.846552,0.347574,0.0568729,0.613246,0.785987,0.477891,0.223103,0.392635,0.859692,0.689957,0.658951,0.812812,0.0985373,0.298271,0.585923,0.859507,0.0261506,0.68482,0.615698,0.592932,0.659919,0.725284,0.465856,0.988411,0.329413,0.342924,0.452068,0.105033,0.776453,0.196788,0.858604,0.636684,0.026243,0.859498,0.220952,0.82813,0.0900964,0.119528,0.370042,0.263458,0.244317,0.0264296,0.657516,0.801283,0.954047,0.232027,0.223889,0.854745,0.391367,0.429146,0.224281,0.779664,0.62494,0.817698,0.61982,0.741878,0.625053,0.899231,0.245671,0.999719,0.632694,0.027247,0.855767,0.566669,0.861598,0.373068,0.380044,0.432176,0.638373,0.209792,0.272964,0.0128616,0.327499,0.818738,0.355939,0.39979,0.839465,0.243974,0.425068,0.0664682,0.424648,0.788954,0.0425923,0.22833,0.907401,0.984546,0.307316,0.707029,0.0366822,0.711642,0.15776,0.440389,0.500944,0.60475,0.355953,0.331573,0.126121,0.357679,0.159997,0.16533,0.216668,0.0737592,0.69206,0.611483,0.397024,0.352387,0.827069,0.22076,0.409942,0.0913868,0.372158,0.358708,0.197578,0.291346,0.38998,0.935912,0.46906,0.874552,0.713285,0.965599,0.939514,0.685166,0.256516,0.917686,0.806682,0.849228,0.798545,0.770328,0.385282,0.296732,0.26775,0.339747,0.567972,0.454742,0.709498,0.210858,0.869471,0.93696,0.840892,0.630264,0.0518293,0.381265,0.674511,0.461044,0.952804,0.827295,0.287212,0.0269869,0.908226,0.979594,0.0134982,0.463122,0.0983617,0.957967,0.997429,0.0486284,0.0196221,0.841984,0.863103,0.407778,0.237836,0.143408,0.104995,0.87854,0.0454127,0.21403,0.816004,0.552218,0.329304,0.92882,0.886036,0.987566,0.654267,0.210252,0.337635,0.821477,0.689099,0.815943,0.759591,0.231453,0.475361,0.56858,0.72859,0.0855147,0.416754,0.444323,0.914672,0.104812,0.945444,0.503517,0.966716,0.688305,0.925362,0.597352,0.0925426,0.439859,0.317863,0.690738,0.0354651,0.522106,0.492638,0.814734,0.71633,0.1388,0.868623,0.436192,0.394541,0.742963,0.663738,0.659148,0.252612,0.40283,0.334304,0.0745424,0.904191,0.792178,0.250182,0.766321,0.129383,0.907784,0.35024,0.992704,0.955267,0.103777,0.532922,0.141661,0.431045,0.00155818,0.142862,0.325362,0.719677,0.0981416,0.403642,0.795487,0.886466,0.299138,0.692448,0.972493,0.559275,0.208964,0.240927,0.688535,0.485373,0.797843,0.763258,0.957705,0.506394,0.00465107,0.135815,0.683194,0.426314,0.792006,0.448786,0.701207,0.463702,0.346,0.0947642,0.505106,0.28549,0.103368,0.892411,0.791438,0.572258,0.553686,0.237188,0.297791,0.301601,0.18678,0.541431,0.0446068,0.039198,0.376844,0.735741,0.579305,0.834198,0.490878,0.880411,0.953271,0.0177686,0.888621,0.266075,0.63259,0.516431,0.0856004,0.139843,0.797746,0.711402,0.649639,0.554013,0.880164,0.799624,0.721167,0.0164636,0.0700061,0.611769,0.854743,0.658286,0.437802,0.772101,0.835226,0.1492,0.662137,0.395822,0.654553,0.642833,0.590298,0.285881,0.190347,0.299137,0.984719,0.555847,0.534587,0.446818,0.634713,0.900097,0.546076,0.33147,0.885314,0.912545,0.525008,0.716103,0.245178,0.182298,0.372792,0.181424,0.702097,0.0154943,0.816602,0.210322,0.746489,0.174967,0.0746355,0.0694941,0.534219,0.606891,0.930171,0.773706,0.723819,0.763987,0.302878,0.53441,0.511018,0.930604,0.524424,0.835412,0.805227,0.493206,0.0335652,0.492409,0.653386,0.851667,0.883148,0.60251,0.652398,0.235963,0.962628,0.425164,0.253021,0.150298,0.422778,0.547096,0.225034,0.24726,0.893044,0.467747,0.592929,0.710375,0.529591,0.382401,0.0936464,0.105402,0.423295,0.763219,0.773021,0.439492,0.557952,0.988904,0.641617,0.416769,0.0316184,0.191227,0.204568,0.650337,0.386346,0.497641,0.288419,0.573537,0.684034,0.402631,0.913663,0.454833,0.520248,0.0317024,0.11208,0.567768,0.953269,0.593313,0.102214,0.922428,0.445756,0.988615,0.753568,0.28865,0.849371,0.104221,0.418767,0.206841,0.248385,0.0118667,0.989649,0.508007,0.567372,0.125961,0.046084,0.277938,0.453405,0.100479,0.967758,0.512943,0.544122,0.479448,0.91989,0.480737,0.71626,0.059379,0.86359,0.580723,0.284734,0.249131,0.605473,0.823303,0.792865,0.542086,0.196799,0.631586,0.566529,0.399189,0.713999,0.50967,0.171157,0.614383,0.536165,0.345968,0.599936,0.682537,0.671952,0.870373,0.198816,0.237856,0.235806,0.564816,0.495497,0.293393,0.863248,0.625794,0.515334,0.906566,0.718618,0.0619385,0.993354,0.0742804,0.762798,0.700736,0.412653,0.39983,0.0813565,0.295483,0.397036,0.16138,0.0647703,0.813403,0.10899,0.0997722,0.786757,0.0851472,0.639475,0.100126,0.166276,0.551789,0.484084,0.635436,0.333997,0.014251,0.0152785,0.290322,0.0403962,0.93395,0.516185,0.29645,0.215895,0.332552,0.05635,0.918845,0.253947,0.455834,0.662635,0.606902,0.715335,0.340571,0.239579,0.660665,0.0339286,0.336805,0.92687,0.890157,0.183377,0.888473,0.60442,0.29916,0.449687,0.471033,0.991769,0.491865,0.139253,0.914391,0.312776,0.197981,0.924919,0.544977,0.00306356,0.879609,0.88965,0.713392,0.659244,0.0509099,0.974088,0.730611,0.643348,0.0860848,0.896308,0.290368,0.723792,0.70539,0.711683,0.300667,0.0459211,0.315045,0.532697,0.978015,0.305242,0.0157834,0.198886,0.839884,0.354704,0.756965,0.639847,0.580257,0.8776,0.0462738,0.129063,0.850378,0.261147,0.714738,0.731902,0.76629,0.965804,0.877494,0.370052,0.69372,0.622137,0.661582,0.374038,0.28711,0.710502,0.927129,0.647123,0.376008,0.681169,0.911622,0.158348,0.476898,0.585272,0.0571333,0.251127,0.0526851,0.204368,0.997518,0.0725538,0.633507,0.961178,0.0244455,0.495475,0.468564,0.88899,0.384492,0.00464165,0.923004,0.0447431,0.654257,0.595405,0.138236,0.829718,0.20017,0.930218,0.737783,0.474659,0.518604,0.951447,0.967896,0.739739,0.97496,0.399808,0.105868,0.22321,0.72343,0.980232,0.423091,0.819508,0.123437,0.219984,0.160853,0.0672325,0.832317,0.249192,0.00905526,0.470088,0.143077,0.502779,0.911023,0.224348,0.710646,0.945517,0.498725,0.0164513,0.837019,|0.323964,0.909939,0.528678,0.180605,0.173002,0.20575,0.196687,0.276603,0.17687,0.379003,0.263886,0.175262,0.806092,0.0210622,0.55765,0.289156,0.741219,0.803398,0.581177,0.435704,0.595734,0.543363,0.121286,0.826435,0.329869,0.502369,0.809138,0.244218,0.349388,0.635413,0.555813,0.414431,0.356868,0.571462,0.335596,0.448354,0.263988,0.952965,0.52337,0.0803001,0.996455,0.482829,0.929713,0.436497,0.470786,0.122644,0.701902,0.131213,0.932955,0.222287,0.339857,0.0142002,0.167462,0.480006,0.760674,0.145751,0.307126,0.29587,0.31389,0.0583856,0.954035,0.00428843,0.0908526,0.975223,0.544515,0.223398,0.28551,0.62812,0.971353,0.504268,0.766219,0.60701,0.374584,0.386777,0.792395,0.515647,0.318008,0.505693,0.582625,0.821843,0.998371,0.193854,0.524846,0.42054,0.23757,0.708264,0.206082,0.026211,0.133712,0.495644,0.892538,0.463588,0.579487,0.663427,0.0757017,0.509136,0.481179,0.285443,0.695538,0.335684,0.749404,0.756481,0.685526,0.904382,0.068622,0.609152,0.491098,0.458713,0.17891,0.711644,0.360158,0.562012,0.711761,0.517016,0.35786,0.729296,0.249422,0.230079,0.749218,0.0336385,0.119289,0.534797,0.408813,0.232369,0.186318,0.305215,0.66265,0.624331,0.542628,0.380947,0.693639,0.979805,0.181476,0.839019,0.00189197,0.67195,0.584839,0.322554,0.927256,0.327551,0.156569,0.0192834,0.198225,0.568094,0.297344,0.550841,0.222598,0.881221,0.0774394,0.397153,0.722405,0.148948,0.537623,0.415298,0.569527,0.405529,0.284059,0.243333,0.752592,0.0470214,0.839107,0.559636,0.0293335,0.032946,0.91807,0.819919,0.678281,0.536868,0.162205,0.947831,0.802689,0.165395,0.854007,0.111603,0.820358,0.48965,0.447591,0.951867,0.479185,0.603945,0.111696,0.086667,0.779597,0.896456,0.050903,0.712164,0.847655,0.586414,0.384038,0.911158,0.117197,0.269643,0.0604903,0.236002,0.82489,0.289142,0.660811,0.994288,0.0768335,0.792929,0.882471,0.84771,0.52139,0.314238,0.481648,0.326849,0.345496,0.373583,0.846385,0.837778,0.485648,0.997804,0.956513,0.738113,0.716609,0.30795,0.519996,0.639012,0.174473,0.632887,0.41609,0.673908,0.575092,0.554153,0.329586,0.74581,0.886909,0.212674,0.338978,0.883457,0.118273,0.196937,0.541806,0.451108,0.210229,0.319589,0.475505,0.125551,0.805574,0.423325,0.37851,0.107216,0.940096,0.159017,0.515932,0.321484,0.225784,0.728213,0.399656,0.512442,0.675262,0.0101322,0.70513,0.0771868,0.929466,0.148154,0.334993,0.204536,0.0653589,0.621193,0.0357728,0.903181,0.285247,0.974855,0.398873,0.517157,0.161225,0.699846,0.426479,0.630627,0.764299,0.978214,0.983257,0.314334,0.836136,0.224568,0.396456,0.907126,0.157072,0.408287,0.914585,0.076009,0.892681,0.115195,0.24037,0.0420535,0.608922,0.12144,0.043419,0.546698,0.133166,0.498416,0.281705,0.476129,0.792402,0.49831,0.335731,0.631667,0.510544,0.569679,0.94039,0.533072,0.220617,0.443228,0.451055,0.431844,0.745732,0.714539,0.179477,0.351298,0.371452,0.763861,0.353147,0.411112,0.657689,0.203361,0.0963975,0.3632,0.92278,0.412322,0.466204,0.730317,0.945498,0.503103,0.447876,0.266898,0.623853,0.629174,0.431268,0.480067,0.16803,0.328358,0.678764,0.00445175,0.939599,0.252395,0.392642,0.551887,0.536609,0.356535,0.317147,0.584508,0.717809,0.770061,0.934252,0.102625,0.487606,0.546059,0.749757,0.342474,0.294303,0.997196,0.977463,0.937148,0.301327,0.403937,0.314416,0.151275,0.97185,0.589422,0.765877,0.19918,0.69896,0.424489,0.120732,0.653073,0.341222,0.164701,0.969157,0.66137,0.553761,0.509701,0.210163,0.301953,0.787795,0.324068,0.876007,0.453783,0.308019,0.370052,0.927538,0.0423185,0.197086,0.300106,0.16511,0.567386,0.988066,0.290651,0.672768,0.154314,0.758723,0.776071,0.506541,0.0123696,0.79088,0.0475205,0.831531,0.00486034,0.638838,0.770061,0.478262,0.205339,0.030112,0.279084,0.676158,0.197387,0.675488,0.415459,0.379979,0.302543,0.538759,0.690842,0.76778,0.0786869,0.0690463,0.797549,0.0736638,0.0737116,0.801227,0.381431,0.537979,0.750302,0.656998,0.0383533,0.279272,0.899962,0.38289,0.0400903,0.18591,0.224407,0.471282,0.753195,0.912107,0.23154,0.220894,0.699278,0.237825,0.465309,0.478174,0.516406,0.670119,0.0157415,0.600408,0.200014,0.101799,0.432241,0.825518,0.119841,0.611896,0.7404,0.35854,0.569468,0.024096,0.178033,0.520489,0.939801,0.651542,0.205163,0.40973,0.784378,0.106339,0.883632,0.379193,0.19294,0.793978,0.57761,0.994624,0.595362,0.815665,0.765379,0.620776,0.230012,0.758406,0.240581,0.697804,0.266429,0.738827,0.585606,0.166007,0.0494747,0.871029,0.248933,0.722033,0.946747,0.174383,0.0388358,0.550995,0.584011,0.26256,0.845255,0.702589,0.611822,0.222603,0.135667,0.420354,0.843553,0.621571,0.520797,0.788798,0.686356,0.920595,0.973336,0.496528,0.587294,0.33024,0.058934,0.407601,0.97748,0.729928,0.227195,0.170721,0.156101,0.946545,0.13645,0.66893,0.210551,0.368565,0.670175,0.949634,0.152165,0.612993,0.681532,0.138453,0.582578,0.953323,0.939915,0.505051,0.712949,0.299617,0.723669,0.409886,0.993798,0.67818,0.814684,0.569555,0.867828,0.684363,0.224308,0.166333,0.230316,0.431836,0.113665,0.0968859,0.434774,0.648187,0.585809,0.640533,0.198492,0.821183,0.273111,0.943144,0.303957,0.302108,0.691017,0.141915,0.155518,0.0486031,0.912679,0.109273,0.545962,0.78176,0.73841,0.0144728,0.144157,0.710949,0.501326,0.859574,0.941784,0.694265,0.354943,0.919717,0.800027,0.471962,0.872027,0.0175422,0.425408,0.0286542,0.948543,0.350046,0.878643,0.906885,0.185625,0.745896,0.871142,0.774741,0.195325,0.334668,0.720435,0.998553,0.00410092,0.305916,0.452638,0.111845,0.425413,0.645648,0.967642,0.477298,0.948232,0.302661,0.744452,0.592162,0.0405655,0.129286,0.770116,0.939584,0.181255,0.363798,0.120678,0.760804,0.506371,0.431414,0.0524483,0.778788,0.330164,0.77061,0.357131,0.380178,0.979122,0.722276,0.82374,0.609525,0.105234,0.934007,0.241542,0.0435064,0.188673,0.911259,0.886772,0.352259,0.819883,0.42312,0.530267,0.37618,0.0881081,0.988054,0.317489,0.323297,0.745614,0.499923,0.733031,0.0269784,0.269946,0.39225,0.124225,0.611637,0.94545,0.646781,0.65621,0.699652,0.701982,0.0930042,0.629332,0.591278,0.0776665,0.59195,0.81275,0.226067,0.532817,0.29608,0.295131,0.785511,0.0489112,0.674695,0.247524,0.29463,0.134264,0.270999,0.0818805,0.494645,0.638751,0.802071,0.325493,0.0168999,0.0543767,0.8766,0.135569,0.217864,0.0610149,0.401954,0.09474,0.578495,0.141403,0.550903,0.299953,0.0735577,0.121504,0.336178,0.270323,0.448139,0.033175,0.127553,0.882678,0.11866,0.719233,0.845538,0.940605,0.63309,0.877823,0.350555,0.516333,0.863161,0.841906,0.0746832,0.381225,0.996121,0.730119,0.139785,0.892415,0.788579,0.39986,0.898108,0.580654,0.0253813,0.423109,0.054336,0.338482,0.987251,0.289291,0.199039,0.150278,0.240316,0.806349,0.507942,0.26127,0.764623,0.738672,0.966433,0.559336,0.713942,0.575403,0.918438,0.611673,0.663692,0.83524,0.165388,0.919479,0.276563,0.746813,0.882374,0.937474,0.301602,0.466942,0.962743,0.854341,0.555158,0.795546,0.897668,0.303242,0.2188,0.0235277,0.722117,0.820619,0.348703,0.337222,0.140896,0.791836,0.199804,0.56171,0.199766,0.0823042,0.970144,0.0507467,0.199195,0.695608,0.620678,0.967938,0.628787,0.135667,0.0642721,0.266306,0.205109,0.769273,0.0203431,0.051945,0.0677585,0.188015,0.545507,0.158656,0.606148,0.847892,0.152466,0.158879,0.7717,0.13089,0.129991,0.918238,0.693014,0.735725,0.980524,0.963996,0.369694,0.990762,0.0509962,0.470306,0.175441,0.748901,0.770822,0.372946,0.786366,0.8678,0.66235,0.375175,0.208101,0.550959,0.64169,0.882131,0.868237,0.871361,0.688152,0.305967,0.144371,0.69003,0.923491,0.534392,0.0167454,0.406052,0.502514,0.149021,0.654566,0.807842,0.570877,0.153634,0.294822,0.264426,0.818112,0.604966,0.363341,0.70713,0.0185488,0.711379,0.0344335,0.148118,0.561737,0.812865,0.476747,0.37918,0.097392,0.374645,0.290281,0.233694,0.493225,0.876831,0.339566,0.307127,0.77432,0.00224805,0.113075,0.916984,0.93219,0.71644,0.431608,0.885628,0.984819,0.27129,0.97873,0.0801468,0.676884,0.950126,0.978689,0.860941,0.992653,0.260649,0.71997,0.932428,0.0288939,0.272063,0.0156354,0.418155,0.531692,0.999638,0.0826259,0.754212,0.0837488,0.000830054,0.851615,0.581755,0.219226,0.521251,0.315465,0.0849605,0.0426209,0.0074178,0.419063,0.377835,0.606862,0.676255,0.939231,0.0275424,0.994939,0.390384,0.176512,0.91902,0.590179,0.196857,0.943103,0.319072,0.695293,0.407016,0.758599,0.409062,0.874765,0.0634984,0.331261,0.507111,0.560609,0.079592,0.35633,0.766048,0.414216,0.503907,0.734256,0.175873,0.190509,0.00606245,0.821632,0.361585,0.9064,0.800377,0.413986,0.455401,0.718571,0.442865,0.211282,0.277642,0.75468,0.755442,0.264592,0.606774,0.145758,0.483102,0.993311,0.0715672,0.83454,0.442472,0.867515,0.290626,0.699545,0.828213,0.444228,0.668124,0.484286,0.622786,0.3341,0.929213,0.805489,0.623937,0.34086,0.225029,0.0750166,0.203724,0.775763,0.911115,0.761029,0.966487,0.679404,0.208869,0.608635,0.418886,0.348123,0.949411,0.752919,0.803257,0.140277,0.259959,0.570782,0.860647,0.20783,0.603231,0.276361,0.335104,0.0232874,0.388654,0.649058,0.505109,0.876677,0.494385,0.315979,0.441445,0.443217,0.418268,0.0749738,0.607892,0.782894,0.426549,0.29794,0.346888,0.8947,0.935156,0.337173,0.313166,0.224008,0.817229,0.0811452,0.67741,0.949025,0.345535,0.0420775,0.311269,0.719014,0.431336,|0.507958,0.110887,0.740705,0.142681,0.544673,0.562852,0.400935,0.153474,0.850463,0.670666,0.0135012,0.639107,0.566087,0.384422,0.86658,0.293801,0.0107132,0.82773,0.234123,0.29609,0.224576,0.476503,0.517646,0.669694,0.909815,0.809682,0.49915,0.484249,0.412008,0.0747963,0.786134,0.69874,0.868477,0.517595,0.262944,0.575232,0.121962,0.554221,0.947497,0.41449,0.393688,0.479289,0.489903,0.0436428,0.673038,0.508181,0.876122,0.371758,0.529332,0.245585,0.431615,0.492595,0.773478,0.383673,0.858862,0.322501,0.223111,0.584041,0.939066,0.072682,0.286077,0.459018,0.730039,0.372651,0.22169,0.0320778,0.0694596,0.0554832,0.849297,0.0639378,0.0608266,0.149503,0.968914,0.466296,0.418611,0.378694,0.916156,0.0410473,0.92803,0.425022,0.837716,0.333935,0.0284814,0.0111098,0.782485,0.331331,0.797628,0.470141,0.657355,0.736856,0.222255,0.126911,0.973974,0.527791,0.581552,0.6617,0.260483,0.059696,0.129956,0.697279,0.331103,0.159967,0.943498,0.463265,0.487757,0.300914,0.715286,0.883472,0.227801,0.674132,0.556562,0.222345,0.360839,0.860587,0.0773195,0.0483235,0.833,0.320715,0.369253,0.37737,0.459639,0.415702,0.329934,0.968227,0.339373,0.239454,0.482784,0.0948497,0.742617,0.645196,0.923167,0.0776696,0.216029,0.345617,0.362529,0.438585,0.174354,0.477435,0.856622,0.306972,0.728172,0.20933,0.0174325,0.733364,0.551126,0.989394,0.750855,0.238521,0.631698,0.603566,0.436582,0.873393,0.623192,0.00580567,0.985851,0.833929,0.405041,0.405702,0.1708,0.0419799,0.166174,0.430146,0.566045,0.911766,0.43652,0.835519,0.821634,0.563169,0.342063,0.982579,0.897425,0.570447,0.168326,0.78004,0.362232,0.356698,0.0921574,0.26526,0.607308,0.925328,0.486068,0.0430996,0.0887904,0.126799,0.865562,0.538424,0.716982,0.55849,0.611396,0.116351,0.257098,0.385134,0.484719,0.625567,0.591986,0.243828,0.522632,0.795869,0.78607,0.318594,0.0835339,0.328021,0.971504,0.825668,0.412278,0.248776,0.325434,0.0280692,0.702996,0.0180879,0.119921,0.197713,0.597161,0.175484,0.850173,0.499966,0.365506,0.176832,0.166651,0.246131,0.718808,0.269474,0.495233,0.375284,0.967768,0.396067,0.827426,0.413473,0.772732,0.714035,0.0320992,0.585014,0.250265,0.724379,0.467344,0.731268,0.0824673,0.18698,0.508766,0.0315232,0.115541,0.0570574,0.617871,0.931119,0.490645,0.784483,0.584513,0.806383,0.163025,0.56088,0.0759418,0.385439,0.334812,0.10091,0.851016,0.73467,0.703232,0.420522,0.130256,0.365765,0.212788,0.00433677,0.0911406,0.123706,0.95756,0.25583,0.199065,0.251545,0.0324243,0.172006,0.48851,0.709287,0.436763,0.445812,0.777694,0.107364,0.679074,0.839945,0.269052,0.51865,0.41712,0.703839,0.682331,0.213791,0.576328,0.652097,0.729529,0.0932471,0.525744,0.543067,0.603402,0.748366,0.712538,0.900443,0.981006,0.634471,0.341519,0.0164671,0.790174,0.549481,0.499327,0.707141,0.659964,0.117921,0.709583,0.0974277,0.50213,0.578975,0.698088,0.670257,0.871878,0.0593998,0.805882,0.66373,0.949557,0.211395,0.31629,0.436707,0.731765,0.303622,0.764648,0.236456,0.160784,0.768388,0.770043,0.586232,0.205708,0.950137,0.72868,0.561369,0.434717,0.476939,0.602434,0.163835,0.241645,0.436111,0.993347,0.875435,0.0555409,0.391349,0.17104,0.588673,0.886585,0.710573,0.184031,0.0870606,0.745181,0.910873,0.851249,0.795373,0.597344,0.518564,0.627104,0.0234011,0.241659,0.380653,0.477986,0.826773,0.198124,0.612921,0.654972,0.513642,0.95036,0.655535,0.183293,0.970909,0.644397,0.480973,0.0345279,0.282653,0.260931,0.540664,0.749231,0.230779,0.080169,0.844459,0.644995,0.690288,0.458271,0.0517331,0.544532,0.0108181,0.569404,0.489536,0.241638,0.872637,0.512517,0.642343,0.53786,0.13345,0.780107,0.524487,0.899747,0.371308,0.10921,0.632891,0.0644956,0.797264,0.904176,0.770696,0.78536,0.529036,0.0634181,0.0329866,0.253951,0.429408,0.853465,0.661366,0.0978885,0.84968,0.215135,0.232092,0.598496,0.0307595,0.146073,0.835049,0.969808,0.981595,0.614563,0.219249,0.51179,0.0635223,0.962672,0.622386,0.299684,0.088106,0.984826,0.874962,0.175068,0.680023,0.0203102,0.654158,0.478674,0.166507,0.52619,0.35582,0.604829,0.780546,0.836804,0.577773,0.0517997,0.431263,0.91274,0.0975977,0.0968236,0.134371,0.247048,0.128313,0.983189,0.183666,0.138222,0.430988,0.547626,0.777163,0.48245,0.150439,0.250471,0.567222,0.298746,0.369268,0.533683,0.0702263,0.870719,0.639878,0.699755,0.224883,0.521861,0.266236,0.67144,0.786089,0.187202,0.380029,0.306831,0.167892,0.977973,0.663441,0.781169,0.0339591,0.135879,0.828932,0.506499,0.420711,0.179556,0.667599,0.0987399,0.233127,0.914599,0.315492,0.297156,0.567821,0.486168,0.469996,0.741283,0.221264,0.789891,0.0938459,0.335271,0.844522,0.318709,0.895246,0.0499119,0.179987,0.222122,0.251626,0.966269,0.417337,0.186699,0.834142,0.875718,0.333882,0.147195,0.11463,0.728579,0.509107,0.124962,0.0809092,0.958086,0.438973,0.31065,0.685476,0.117095,0.498724,0.0319219,0.76057,0.43221,0.748163,0.287552,0.423505,0.99796,0.889055,0.935057,0.561309,0.79923,0.75988,0.188225,0.951944,0.295611,0.109707,0.543993,0.46626,0.266555,0.338344,0.32847,0.996275,0.0710532,0.347651,0.556559,0.575302,0.553225,0.89308,0.0531359,0.0100172,0.230244,0.066178,0.352269,0.00656182,0.165389,0.576603,0.910242,0.698958,0.258648,0.275491,0.357535,0.311983,0.317261,0.237262,0.493853,0.99,0.21147,0.128945,0.064971,0.342797,0.957391,0.205696,0.191597,0.858307,0.331035,0.692632,0.203874,0.64188,0.669452,0.338503,0.435961,0.680022,0.228242,0.907501,0.195247,0.320028,0.242488,0.612434,0.271969,0.691163,0.0689803,0.475109,0.8468,0.916904,0.633926,0.260504,0.947158,0.0801414,0.0607304,0.491158,0.899455,0.469434,0.971307,0.198105,0.293688,0.264615,0.239588,0.317532,0.988188,0.0417311,0.584126,0.707986,0.97524,0.427605,0.837132,0.669455,0.915886,0.298892,0.856977,0.240328,0.523452,0.885168,0.121244,0.955752,0.716639,0.389373,0.59954,0.770863,0.519899,0.561987,0.508243,0.853116,0.740525,0.182698,0.745809,0.726053,0.106436,0.453712,0.109732,0.594615,0.812521,0.621896,0.150499,0.0467651,0.546593,0.157496,0.365125,0.778092,0.477502,0.299982,0.0857502,0.0164408,0.937897,0.2817,0.660502,0.567949,0.289746,0.903661,0.00303143,0.371479,0.00486028,0.17884,0.921538,0.664717,0.917037,0.788205,0.329316,0.155946,0.843839,0.146183,0.29613,0.115255,0.206288,0.595148,0.688682,0.470869,0.766848,0.450805,0.150884,0.296665,0.356024,0.321424,0.272056,0.693393,0.369615,0.0447776,0.93603,0.0895424,0.165227,0.42912,0.849285,0.434927,0.887692,0.622767,0.861164,0.0949642,0.222676,0.672374,0.099836,0.939793,0.233874,0.293544,0.0341573,0.882859,0.776594,0.256132,0.287426,0.560357,0.163599,0.788427,0.985333,0.953913,0.706136,0.80246,0.0919179,0.178126,0.405871,0.873958,0.467174,0.662019,0.855608,0.995652,0.717066,0.509234,0.0126674,0.178525,0.42599,0.343494,0.532946,0.366455,0.0810419,0.450045,0.531166,0.873964,0.141779,0.415649,0.341845,0.722619,0.336652,0.134193,0.324298,0.403588,0.715131,0.506826,0.61634,0.738791,0.478925,0.12418,0.274804,0.639587,0.950293,0.306094,0.285508,0.264342,0.895005,0.576146,0.193261,0.798956,0.56457,0.727971,0.692331,0.444891,0.000397146,0.18036,0.366664,0.255398,0.266271,0.00195026,0.326229,0.199784,0.146386,0.265434,0.244832,0.947427,0.748645,0.702451,0.737529,0.929852,0.00800943,0.351328,0.659397,0.639638,0.0566726,0.55497,0.627036,0.299281,0.390315,0.0276397,0.925923,0.816133,0.73002,0.1002,0.541003,0.145891,0.217936,0.516235,0.661509,0.812935,0.534591,0.0190884,0.934847,0.431965,0.166172,0.227898,0.795917,0.946616,0.443208,0.964686,0.844564,0.896675,0.132583,0.954684,0.391394,0.442901,0.253626,0.304447,0.229924,0.058605,0.547086,0.194048,0.69442,0.407257,0.114552,0.493634,0.0380521,0.588214,0.0892635,0.291773,0.110677,0.197407,0.520133,0.743618,0.717495,0.911307,0.811071,0.76997,0.268544,0.603692,0.963977,0.293942,0.593205,0.0985821,0.510486,0.451278,0.309335,0.782788,0.624528,0.475122,0.629407,0.895879,0.245403,0.981402,0.235474,0.20922,0.604007,0.282087,0.750237,0.619243,0.0359136,0.54819,0.515388,0.524225,0.935237,0.107927,0.293028,0.594616,0.127268,0.598172,0.16896,0.743692,0.366992,0.125821,0.471743,0.575519,0.664709,0.582198,0.664563,0.811695,0.909789,0.111487,0.805244,0.383861,0.879086,0.751566,0.00937289,0.202481,0.53723,0.0750437,0.00620419,0.94745,0.104145,0.194204,0.807138,0.705829,0.351048,0.336639,0.935827,0.730694,0.523154,0.245077,0.728921,0.997326,0.791037,0.9321,0.738158,0.442968,0.543848,0.195086,0.198035,0.144534,0.219337,0.876054,0.080201,0.104696,0.0903226,0.880067,0.377762,0.67827,0.286948,0.804978,0.0079093,0.547566,0.475953,0.683851,0.163638,0.605194,0.3884,0.267649,0.371265,0.552508,0.701685,0.0765712,0.970507,0.194431,0.927379,0.629646,0.788757,0.239784,0.852862,0.0289319,0.203508,0.412153,0.644234,0.24377,0.00787538,0.936147,0.344079,0.602061,0.580922,0.423001,0.488941,0.625662,0.762556,0.224799,0.121848,0.920067,0.867081,0.891496,0.0695083,0.828154,0.541595,0.878287,0.000350237,0.16161,0.976696,0.0242931,0.485558,0.327509,0.895573,0.604503,0.181311,0.756171,0.998883,0.386379,0.976637,0.13789,0.277103,0.338211,0.16299,0.342112,0.517138,0.333721,0.356847,0.342675,0.0381123,0.567635,0.080878,0.96078,0.178386,0.592865,0.188475,0.339909,0.343979,0.910389,0.821883,0.407076,0.684981,0.518858,|0.89074,0.825728,0.977169,0.956363,0.555899,0.629895,0.275554,0.950841,0.123152,0.862098,0.456921,0.792282,0.00856334,0.929972,0.940136,0.601719,0.936486,0.974144,0.660892,0.0244646,0.272285,0.736113,0.271337,0.898181,0.805144,0.444586,0.0397304,0.905021,0.858621,0.326451,0.0701974,0.952913,0.585535,0.444164,0.115356,0.89135,0.184088,0.697025,0.493816,0.835821,0.748437,0.538347,0.361722,0.715904,0.376927,0.320289,0.483148,0.848911,0.580316,0.00372231,0.268212,0.495888,0.878691,0.941262,0.972262,0.522339,0.954668,0.0511943,0.286518,0.953345,0.810254,0.227452,0.73085,0.305583,0.564183,0.927504,0.30039,0.41617,0.379329,0.881791,0.490915,0.763695,0.755092,0.245758,0.00237322,0.0261039,0.764619,0.538178,0.368661,0.514944,0.698792,0.494907,0.0410761,0.883777,0.370467,0.605036,0.436207,0.0867567,0.723891,0.921455,0.122271,0.526444,0.4787,0.472984,0.856376,0.607522,0.323138,0.836058,0.953118,0.0429336,0.532754,0.944752,0.0449718,0.0230535,0.810329,0.567876,0.0570922,0.857742,0.743625,0.603099,0.944629,0.0961768,0.0339173,0.895926,0.849602,0.823306,0.926981,0.131408,0.965671,0.609466,0.890392,0.597872,0.116854,0.488093,0.198244,0.649014,0.799265,0.8289,0.372127,0.361742,0.679344,0.0874027,0.062813,0.0716342,0.834722,0.558228,0.0752087,0.370942,0.666209,0.465884,0.958173,0.764954,0.0655018,0.955939,0.222104,0.111648,0.596704,0.91111,0.999782,0.0109769,0.407546,0.562155,0.215565,0.687834,0.365643,0.467434,0.187006,0.276899,0.125685,0.471577,0.0843785,0.38509,0.162058,0.283632,0.515152,0.355665,0.844949,0.251767,0.191086,0.47251,0.142282,0.739364,0.799668,0.733677,0.196147,0.77564,0.738547,0.596021,0.286445,0.553121,0.193714,0.799192,0.0552433,0.575634,0.886842,0.456282,0.510954,0.43004,0.0358856,0.317304,0.889672,0.079268,0.867033,0.228574,0.354605,0.130685,0.396928,0.294191,0.58689,0.513231,0.344912,0.732791,0.76003,0.264151,0.788896,0.849643,0.194429,0.191499,0.586971,0.383126,0.581876,0.6955,0.0331796,0.239407,0.192292,0.179883,0.322759,0.852248,0.695984,0.548381,0.150034,0.599366,0.803634,0.657637,0.964038,0.2538,0.88418,0.0959303,0.73751,0.164385,0.603218,0.294143,0.27474,0.833447,0.532825,0.835744,0.822689,0.846425,0.356111,0.683222,0.81559,0.60442,0.838692,0.577386,0.842769,0.187313,0.303917,0.760498,0.524956,0.227115,0.707291,0.152556,0.166755,0.739185,0.607021,0.0758918,0.916042,0.793075,0.647925,0.851595,0.387412,0.102441,0.44199,0.600399,0.516467,0.430571,0.850118,0.255002,0.0782481,0.177596,0.419385,0.817065,0.567583,0.762693,0.150157,0.370677,0.178055,0.161786,0.560177,0.641013,0.40869,0.882562,0.295144,0.221604,0.818268,0.130723,0.93169,0.324249,0.572794,0.456939,0.764778,0.316515,0.0857884,0.190414,0.808541,0.0445583,0.70424,0.799631,0.630117,0.159518,0.14305,0.114923,0.506747,0.469614,0.913714,0.153315,0.483448,0.886965,0.569853,0.438995,0.73687,0.283187,0.788945,0.921744,0.527389,0.895723,0.664655,0.741414,0.698427,0.655303,0.548792,0.0872635,0.216859,0.0563984,0.67834,0.0716999,0.332688,0.801721,0.180954,0.038907,0.0606391,0.866459,0.360678,0.0998264,0.35192,0.24567,0.371802,0.478278,0.163043,0.0934685,0.0809234,0.288958,0.341976,0.551186,0.362258,0.35341,0.573588,0.346514,0.23144,0.388393,0.944653,0.0403445,0.0686768,0.114374,0.326069,0.055334,0.770622,0.78271,0.825411,0.885425,0.801005,0.71226,0.984012,0.0291342,0.748461,0.311171,0.769023,0.787871,0.0397934,0.547991,0.854106,0.258551,0.781742,0.345966,0.246921,0.687938,0.493935,0.229369,0.570296,0.468801,0.765268,0.541147,0.205262,0.678608,0.9379,0.297033,0.836145,0.251932,0.68116,0.180737,0.786894,0.476956,0.568587,0.189008,0.849635,0.245664,0.509759,0.670967,0.558437,0.396913,0.602856,0.252161,0.11905,0.47615,0.754136,0.753788,0.350629,0.362537,0.265906,0.492406,0.474342,0.850793,0.14862,0.440834,0.599062,0.678084,0.585374,0.362087,0.618167,0.188277,0.0271577,0.699528,0.578896,0.051958,0.212271,0.485896,0.492206,0.0952929,0.644011,0.266936,0.148993,0.863767,0.865385,0.242435,0.721207,0.178719,0.142561,0.860109,0.180982,0.0657951,0.292747,0.200497,0.93862,0.483266,0.215242,0.642115,0.035418,0.589396,0.576502,0.384571,0.523179,0.164235,0.860173,0.202057,0.18858,0.403754,0.989733,0.489996,0.388779,0.374965,0.569503,0.588708,0.827962,0.544609,0.704759,0.697475,0.558371,0.388755,0.369542,0.860906,0.426471,0.080754,0.13449,0.356641,0.916395,0.432548,0.248612,0.00226444,0.428536,0.558573,0.589424,0.934005,0.614116,0.321234,0.245149,0.465032,0.659157,0.92266,0.693216,0.832096,0.208128,0.330409,0.514681,0.833179,0.252192,0.697414,0.019851,0.694565,0.158022,0.109031,0.501984,0.837637,0.931887,0.119363,0.753993,0.24192,0.861095,0.299367,0.917073,0.33387,0.144349,0.609187,0.368542,0.0997838,0.536715,0.307589,0.0491875,0.0966792,0.00688505,0.551554,0.67057,0.391698,0.592005,0.174854,0.132569,0.292063,0.158414,0.668875,0.665696,0.311294,0.665611,0.0591186,0.322081,0.371552,0.527099,0.518509,0.569734,0.70752,0.878104,0.0205835,0.363056,0.145545,0.943815,0.742461,0.358033,0.977631,0.881885,0.0313125,0.792741,0.809259,0.470096,0.824891,0.398134,0.316896,0.294095,0.48227,0.28084,0.0841753,0.61005,0.532735,0.57054,0.0869393,0.0198278,0.284737,0.343656,0.846895,0.597441,0.430086,0.477962,0.470519,0.0897157,0.57913,0.259942,0.877485,0.269598,0.174556,0.510066,0.252701,0.490895,0.565477,0.417586,0.0591012,0.876297,0.420446,0.290175,0.229812,0.831567,0.423927,0.865501,0.438924,0.511277,0.824954,0.04146,0.0984772,0.207509,0.537806,0.00677538,0.874923,0.228302,0.489218,0.0915387,0.98488,0.869714,0.104421,0.322643,0.954111,0.185378,0.640461,0.956504,0.0273436,0.146108,0.416619,0.311591,0.128749,0.477021,0.512909,0.903948,0.409428,0.290308,0.411111,0.0668032,0.837551,0.85642,0.84136,0.899504,0.977132,0.924543,0.0152382,0.64198,0.194572,0.655733,0.23115,0.396765,0.102204,0.247735,0.32092,0.408483,0.230389,0.521443,0.131978,0.67719,0.582645,0.604628,0.23952,0.779159,0.776605,0.0145406,0.74222,0.696554,0.929371,0.445456,0.534982,0.528886,0.816278,0.533305,0.187436,0.223854,0.519414,0.923415,0.239158,0.411068,0.94569,0.953978,0.647368,0.373512,0.808826,0.541738,0.342359,0.63166,0.379553,0.818588,0.197901,0.844024,0.0870007,0.00962299,0.335099,0.545457,0.226774,0.558903,0.924587,0.793572,0.426054,0.46169,0.339229,0.236654,0.780175,0.283981,0.268308,0.890146,0.378965,0.262026,0.312414,0.667645,0.0331364,0.0103068,0.81534,0.946151,0.497634,0.435127,0.300614,0.186052,0.4996,0.705641,0.800231,0.907778,0.313895,0.775758,0.337114,0.651495,0.303718,0.954698,0.574512,0.416566,0.726514,0.141782,0.805441,0.763782,0.288521,0.36361,0.768376,0.370599,0.824161,0.545735,0.257646,0.0259452,0.924957,0.0467338,0.138159,0.336141,0.217592,0.724485,0.692494,0.0404237,0.261888,0.359924,0.907921,0.297321,0.472179,0.930286,0.994183,0.334677,0.0483227,0.771638,0.817662,0.783604,0.885145,0.320475,0.227749,0.819988,0.647776,0.343333,0.859622,0.475822,0.0931643,0.884377,0.595078,0.614159,0.546965,0.620319,0.885063,0.81008,0.608381,0.935586,0.957687,0.694336,0.195397,0.452658,0.286186,0.929699,0.788406,0.310078,0.417809,0.463798,0.81068,0.0626405,0.0947999,0.0862413,0.336227,0.0267798,0.523272,0.330505,0.279778,0.155317,0.824638,0.325581,0.821697,0.249931,0.436752,0.295642,0.946848,0.409907,0.768274,0.829396,0.664697,0.424233,0.505237,0.0318234,0.375406,0.753124,0.274795,0.644382,0.056281,0.858242,0.910405,0.790155,0.204527,0.0325286,0.373411,0.373558,0.87877,0.124613,0.657015,0.998549,0.907131,0.841976,0.367994,0.584395,0.81218,0.572501,0.500727,0.99614,0.237147,0.0550359,0.458731,0.809143,0.915516,0.573119,0.8601,0.794517,0.126776,0.633888,0.0188487,0.274853,0.239079,0.533282,0.897832,0.325395,0.118331,0.896437,0.397312,0.259947,0.968682,0.589594,0.346668,0.452488,0.436223,0.515066,0.942997,0.862467,0.560209,0.875185,0.175878,0.929781,0.795446,0.494969,0.881591,0.798784,0.928044,0.28122,0.437188,0.0279608,0.923322,0.360701,0.674589,0.96389,0.686582,0.904189,0.929668,0.595671,0.562868,0.0708709,0.703435,0.472859,0.919054,0.691854,0.746008,0.79125,0.246223,0.119473,0.632334,0.350311,0.913455,0.633611,0.634916,0.522472,0.458499,0.565842,0.653185,0.634534,0.957549,0.186423,0.145436,0.229001,0.782403,0.147017,0.523103,0.129419,0.347861,0.0310839,0.672813,0.50681,0.0847656,0.0266938,0.282987,0.511295,0.147165,0.550873,0.812401,0.756071,0.138031,0.537432,0.0421206,0.606275,0.65711,0.509184,0.0560618,0.00370538,0.205736,0.536052,0.745466,0.0616646,0.127592,0.976876,0.346674,0.373489,0.0360213,0.714154,0.13599,0.17277,0.866392,0.0805317,0.996409,0.291803,0.243415,0.186949,0.89667,0.399321,0.787347,0.627917,0.430334,0.621943,0.336795,0.442746,0.6356,0.502693,0.421664,0.111214,0.270502,0.295244,0.665966,0.802017,0.767697,0.838233,0.385325,0.701575,0.128426,0.767081,0.636344,0.821841,0.0695941,0.116741,0.204709,0.454598,0.576427,0.80285,0.982134,0.245569,0.292443,0.531449,0.161466,0.825853,0.534977,0.199276,0.187405,0.27364,0.693238,0.565453,0.70675,0.962134,0.782072,0.739567,0.972158,0.415221,0.445759,0.283328,0.594122,0.506779,0.933267,0.325483,0.77429,0.964624,0.20975,0.145939,0.807404,0.113476,0.493995,0.531504,0.107246,0.88288,0.951609,|0.333512,0.285128,0.465504,0.48509,0.913842,0.268082,0.896792,0.416092,0.641671,0.029332,0.0854397,0.377432,0.96825,0.317632,0.404282,0.372725,0.00953215,0.429172,0.157892,0.390215,0.987763,0.216541,0.724348,0.05305,0.126586,0.0364656,0.42235,0.0186681,0.366684,0.789065,0.546171,0.668686,0.801545,0.961422,0.402294,0.807099,0.0562907,0.513732,0.188726,0.424181,0.397155,0.524035,0.516257,0.450902,0.990926,0.188506,0.611206,0.728795,0.206075,0.787745,0.320905,0.977629,0.489558,0.922829,0.973919,0.14031,0.969,0.790708,0.13718,0.372002,0.647203,0.533513,0.673615,0.479283,0.164043,0.25304,0.745545,0.304052,0.997054,0.929765,0.3422,0.0171646,0.104355,0.366988,0.283853,0.503641,0.399043,0.961282,0.132981,0.563198,0.694294,0.603164,0.838034,0.845346,0.419773,0.68226,0.884854,0.039468,0.405358,0.106858,0.692961,0.683526,0.549092,0.737413,0.502019,0.784689,0.979899,0.88925,0.577022,0.903825,0.117085,0.194202,0.706904,0.417601,0.289918,0.304131,0.952194,0.605417,0.77529,0.402883,0.206576,0.665486,0.878798,0.822865,0.114243,0.0380968,0.625526,0.970974,0.272265,0.316772,0.0409137,0.0359331,0.551775,0.84454,0.321975,0.968215,0.729852,0.505754,0.989846,0.0670364,0.688106,0.334269,0.188054,0.998364,0.0398261,0.11125,0.443993,0.816776,0.804985,0.230038,0.176673,0.296632,0.0923504,0.986473,0.0760347,0.154054,0.586992,0.588304,0.125254,0.862568,0.74638,0.655396,0.849486,0.960544,0.41859,0.996345,0.504125,0.631918,0.25698,0.524618,0.727666,0.240414,0.199264,0.865038,0.905585,0.66179,0.27897,0.321505,0.398873,0.170994,0.349886,0.693113,0.72702,0.916001,0.594719,0.24112,0.782679,0.481375,0.147572,0.412253,0.209026,0.421611,0.546974,0.818158,0.287439,0.972784,0.27931,0.639071,0.826488,0.840736,0.237158,0.42521,0.401632,0.561643,0.555958,0.690448,0.300002,0.817991,0.197842,0.174298,0.780993,0.316237,0.919768,0.395789,0.515823,0.746268,0.127609,0.482642,0.898537,0.200838,0.0822595,0.62226,0.286783,0.0465623,0.617708,0.3709,0.425141,0.63635,0.721586,0.888471,0.496856,0.565089,0.806049,0.80986,0.549392,0.533655,0.818087,0.518325,0.579432,0.909575,0.576881,0.953236,0.576514,0.771759,0.172668,0.287766,0.206817,0.0965357,0.73132,0.37434,0.695672,0.551001,0.256715,0.795784,0.522844,0.315288,0.0812147,0.316622,0.561222,0.721134,0.940392,0.945475,0.032739,0.69677,0.367405,0.681683,0.733103,0.862076,0.849214,0.860096,0.314594,0.575542,0.636789,0.667237,0.941301,0.25566,0.120957,0.320776,0.96189,0.218756,0.504373,0.857884,0.771666,0.931928,0.752087,0.322801,0.480078,0.519401,0.959244,0.401519,0.897507,0.540883,0.41105,0.839519,0.246043,0.982648,0.193166,0.120208,0.678822,0.891308,0.338429,0.407779,0.0663904,0.329839,0.36699,0.50555,0.53336,0.683498,0.360735,0.200305,0.950231,0.193814,0.842299,0.188506,0.354165,0.0399555,0.622018,0.767663,0.0962841,0.092361,0.0255179,0.484463,0.886692,0.629572,0.206132,0.790395,0.187275,0.669085,0.3994,0.232908,0.315529,0.443133,0.359106,0.226644,0.857818,0.348678,0.746177,0.285008,0.27239,0.586936,0.813137,0.914963,0.67597,0.367744,0.67369,0.22853,0.190456,0.36544,0.356851,0.790182,0.148015,0.0833188,0.227554,0.0395707,0.909218,0.103342,0.895192,0.466379,0.208515,0.454858,0.313392,0.989781,0.59303,0.946476,0.0159379,0.974111,0.246901,0.468587,0.393903,0.946674,0.663648,0.287537,0.0041858,0.802857,0.361889,0.146038,0.0578018,0.567203,0.727656,0.957035,0.447781,0.857976,0.765574,0.824395,0.472989,0.287021,0.0838741,0.602042,0.0956785,0.00412136,0.984373,0.264664,0.100541,0.622363,0.060471,0.745936,0.167785,0.546541,0.360698,0.380792,0.940551,0.973012,0.984183,0.861048,0.240625,0.536984,0.695127,0.4148,0.0782951,0.794571,0.448198,0.738409,0.401779,0.991007,0.138533,0.710062,0.244483,0.638749,0.360019,0.465036,0.469268,0.993616,0.271538,0.158601,0.0779518,0.806308,0.0297648,0.828633,0.438604,0.159932,0.259385,0.784152,0.914483,0.33786,0.0842474,0.391695,0.964347,0.230494,0.143238,0.01535,0.899874,0.657623,0.872991,0.302522,0.670154,0.693881,0.732246,0.71022,0.387958,0.910648,0.854874,0.260501,0.0929409,0.624851,0.260604,0.284668,0.850365,0.435758,0.265767,0.566044,0.784311,0.979065,0.108641,0.782333,0.509388,0.16542,0.377591,0.593467,0.550059,0.747327,0.430824,0.798285,0.101504,0.739714,0.127593,0.421581,0.129531,0.808365,0.63102,0.518916,0.0384302,0.217633,0.648871,0.543822,0.0927669,0.120252,0.363294,0.152702,0.215649,0.049826,0.286051,0.834182,0.998887,0.984564,0.55304,0.714813,0.0961925,0.432357,0.316095,0.21949,0.0354818,0.0350498,0.402692,0.992342,0.579315,0.50831,0.223678,0.197759,0.151489,0.292098,0.854486,0.4626,0.770914,0.348509,0.913885,0.703062,0.401105,0.290813,0.610062,0.0770315,0.752403,0.42414,0.610006,0.842288,0.500771,0.249347,0.166144,0.473002,0.523105,0.414838,0.765318,0.248385,0.761687,0.121851,0.770259,0.84127,0.53779,0.772602,0.913882,0.227686,0.749651,0.193644,0.278925,0.74105,0.537689,0.561109,0.0326965,0.211489,0.809452,0.190801,0.852315,0.121965,0.062028,0.316454,0.565502,0.849863,0.0135682,0.400739,0.391335,0.0571448,0.303225,0.493961,0.348033,0.712515,0.275469,0.810587,0.595963,0.57252,0.216436,0.204045,0.533865,0.802602,0.612171,0.639293,0.863348,0.847019,0.924408,0.770789,0.598092,0.511799,0.641777,0.558268,0.415017,0.422058,0.917552,0.322668,0.509681,0.837848,0.806012,0.321484,0.2411,0.489471,0.89821,0.182263,0.559853,0.628159,0.604278,0.481707,0.960829,0.474489,0.826611,0.472949,0.898423,0.219928,0.725003,0.837984,0.391588,0.11038,0.266044,0.959232,0.294476,0.530732,0.271548,0.460221,0.440246,0.0288491,0.228398,0.886656,0.168069,0.358284,0.998924,0.713298,0.894736,0.81224,0.431014,0.901742,0.870813,0.580203,0.494702,0.890352,0.936794,0.290895,0.428553,0.224784,0.763256,0.827045,0.0707082,0.0669988,0.415455,0.725212,0.460457,0.302619,0.847155,0.14581,0.116806,0.871853,0.313715,0.96051,0.307616,0.191404,0.106915,0.729567,0.374036,0.959483,0.00656348,0.962726,0.239988,0.604333,0.323368,0.510065,0.715352,0.105668,0.149702,0.373811,0.66088,0.820094,0.323285,0.00768119,0.846759,0.0167486,0.899269,0.585115,0.643382,0.74399,0.763525,0.00513077,0.724867,0.610144,0.661727,0.158301,0.465646,0.843925,0.388355,0.148761,0.313758,0.223349,0.627539,0.925495,0.0201733,0.869221,0.123043,0.844219,0.340307,0.298115,0.278579,0.666873,0.14541,0.230848,0.547202,0.941645,0.0730278,0.328024,0.0681685,0.338421,0.22662,0.998737,0.524831,0.862733,0.0755029,0.689807,0.05672,0.411702,0.919713,0.0820943,0.220743,0.0269262,0.52374,0.86262,0.856368,0.48493,0.28372,0.527104,0.724462,0.87106,0.370995,0.37377,0.130854,0.991029,0.62842,0.020911,0.883784,0.591259,0.0523461,0.49046,0.454637,0.133241,0.378731,0.691324,0.115767,0.728109,0.852629,0.0608604,0.713637,0.0433719,0.233472,0.682286,0.200144,0.127022,0.989913,0.107261,0.0668098,0.0500812,0.111119,0.702881,0.532866,0.411524,0.151811,0.765149,0.0365012,0.595837,0.0207394,0.427981,0.304361,0.00489026,0.160877,0.560746,0.385634,0.604213,0.200001,0.0198259,0.301734,0.153796,0.557387,0.948668,0.95507,0.589068,0.0193502,0.136279,0.920775,0.590115,0.976793,0.951301,0.447634,0.907441,0.242942,0.169675,0.957742,0.977216,0.694551,0.932488,0.554913,0.783507,0.444337,0.117866,0.671508,0.618464,0.610293,0.0464932,0.0918055,0.000752509,0.155106,0.462712,0.467029,0.813915,0.380876,0.584563,0.255526,0.486429,0.523328,0.99808,0.34499,0.700043,0.283026,0.947,0.940667,0.326147,0.108576,0.666291,0.0688123,0.977803,0.0525534,0.245154,0.286439,0.845565,0.322138,0.0262254,0.0480225,0.485123,0.704177,0.115279,0.435902,0.204822,0.973226,0.0100187,0.883953,0.410253,0.478846,0.270563,0.619429,0.271167,0.310097,0.370365,0.115522,0.629072,0.628843,0.76497,0.329791,0.683332,0.880438,0.600541,0.622682,0.51403,0.800812,0.972931,0.878984,0.346323,0.622177,0.458926,0.0245445,0.196948,0.583309,0.674644,0.770172,0.523417,0.885229,0.775509,0.832196,0.455276,0.654453,0.239512,0.767419,0.867063,0.612154,0.875506,0.321253,0.0693139,0.763926,0.148225,0.587888,0.827929,0.885342,0.198789,0.883156,0.123976,0.110402,0.101454,0.531921,0.395077,0.386328,0.364501,0.394121,0.799167,0.916124,0.386068,0.131396,0.746202,0.720863,0.265454,0.109969,0.398539,0.198002,0.0663922,0.197858,0.0558807,0.567098,0.050031,0.152141,0.746019,0.281835,0.587224,0.66934,0.384019,0.8095,0.558371,0.920419,0.0800282,0.629583,0.00882006,0.150525,0.664859,0.0141088,0.288006,0.799161,0.406747,0.78458,0.289753,0.21009,0.419577,0.359448,0.252353,0.863183,0.735409,0.41717,0.5638,0.987741,0.290495,0.910884,0.0729914,0.260334,0.109575,0.113814,0.118996,0.186552,0.652107,0.633025,0.658783,0.908916,0.47754,0.246265,0.272709,0.48073,0.0857841,0.503233,0.872169,0.331717,0.852243,0.948404,0.180089,0.784231,0.893537,0.456103,0.978071,0.0629786,0.66048,0.194986,0.312589,0.552662,0.587955,0.809122,0.0930919,0.535793,0.385334,0.115647,0.139466,0.807458,0.925724,0.644913,0.960005,0.162076,0.643077,0.0420288,0.991331,0.270468,0.998302,0.838182,0.528612,0.271568,0.207197,0.799678,0.201165,0.36023,0.206897,0.0236198,0.00820619,0.029026,0.915103,0.80393,0.17131,0.597987,0.311197,0.996824,0.345442,0.198418,0.107539,0.54252,0.234472,0.743753,0.823074,0.471371,0.500577,|0.881787,0.17253,0.708252,0.290066,0.0781369,0.844697,0.709882,0.383611,0.570916,0.524563,0.818517,0.0747602,0.668566,0.286541,0.687313,0.611252,0.696728,0.0569912,0.312702,0.42132,0.155333,0.543193,0.570728,0.135839,0.431812,0.714985,0.119857,0.365509,0.202112,0.948282,0.33035,0.485151,0.82847,0.635052,0.369156,0.0808893,0.787968,0.207331,0.0780216,0.725608,0.265507,0.0106589,0.0928773,0.410807,0.949379,0.805422,0.185284,0.386952,0.457057,0.0647264,0.596741,0.964051,0.712986,0.259519,0.267143,0.680589,0.275366,0.89574,0.00775498,0.892408,0.837288,0.624769,0.105789,0.0859472,0.499707,0.612714,0.197303,0.842946,0.41883,0.199908,0.523644,0.00791752,0.54497,0.153578,0.12454,0.328627,0.652423,0.347233,0.311799,0.0828757,0.266295,0.619392,0.102452,0.0252883,0.0678168,0.707322,0.914467,0.719743,0.138667,0.311869,0.621473,0.599653,0.730434,0.0993918,0.941635,0.957673,0.153721,0.0407394,0.226834,0.285237,0.784948,0.0498845,0.49539,0.945564,0.156154,0.736289,0.63121,0.645302,0.170369,0.205006,0.540598,0.63279,0.777465,0.142219,0.189273,0.0582691,0.969534,0.712488,0.299586,0.791922,0.416748,0.388178,0.755602,0.0942002,0.417382,0.678635,0.663402,0.905189,0.687634,0.0224474,0.311135,0.119305,0.363173,0.352733,0.66321,0.501881,0.040482,0.0825185,0.0398845,0.483387,0.514406,0.911298,0.349319,0.262008,0.733786,0.919076,0.893321,0.674032,0.911349,0.601923,0.4484,0.332893,0.167658,0.21273,0.00636071,0.062431,0.751215,0.264269,0.754522,0.381441,0.118345,0.723839,0.286303,0.970501,0.25533,0.669957,0.713335,0.664906,0.0951628,0.321471,0.549604,0.977979,0.794241,0.5863,0.400581,0.807559,0.79223,0.125194,0.79911,0.967287,0.511391,0.344327,0.68005,0.458283,0.632122,0.929433,0.499953,0.56723,0.125251,0.83595,0.468511,0.743101,0.0568849,0.756407,0.648837,0.826993,0.090663,0.417076,0.610119,0.122552,0.834547,0.870632,0.899405,0.60508,0.805954,0.488916,0.573736,0.793254,0.501986,0.574448,0.735063,0.17303,0.247756,0.0175707,0.227988,0.894914,0.215582,0.772426,0.725391,0.137607,0.885709,0.154757,0.38471,0.00625736,0.831497,0.661582,0.636976,0.679017,0.346997,0.557116,0.313514,0.119066,0.467782,0.0397057,0.229621,0.642031,0.283639,0.456255,0.507072,0.0773115,0.00945407,0.336732,0.512437,0.703891,0.384634,0.69406,0.762424,0.852281,0.629196,0.15434,0.553955,0.362173,0.8524,0.195366,0.486179,0.757872,0.824772,0.710669,0.000548542,0.673786,0.52651,0.232551,0.63173,0.285509,0.974794,0.437442,0.0834007,0.22607,0.377417,0.444227,0.455043,0.374047,0.0551904,0.80148,0.906761,0.893258,0.125415,0.889401,0.859923,0.620439,0.998745,0.865983,0.032597,0.943637,0.0150282,0.579822,0.699431,0.0891875,0.323407,0.122092,0.573841,0.810842,0.240331,0.59647,0.349998,0.1959,0.10968,0.930551,0.899172,0.91516,0.867261,0.718409,0.720976,0.746766,0.465762,0.383834,0.213496,0.0261848,0.523013,0.675088,0.482954,0.989363,0.318485,0.275751,0.258028,0.810935,0.285477,0.829419,0.28926,0.93528,0.645686,0.422563,0.483505,0.903166,0.526226,0.226226,0.575831,0.808905,0.0882285,0.158452,0.841686,0.859873,0.171391,0.0838698,0.499723,0.889245,0.711971,0.32409,0.384312,0.0906666,0.655332,0.816247,0.731042,0.905564,0.636985,0.924094,0.355331,0.236678,0.0164817,0.427815,0.483243,0.810104,0.588695,0.63998,0.702354,0.727785,0.103098,0.938443,0.170241,0.456611,0.25679,0.488787,0.130815,0.386603,0.837009,0.932094,0.345402,0.0448002,0.91219,0.360568,0.918151,0.00170201,0.301184,0.311242,0.759731,0.336607,0.808949,0.320329,0.914073,0.407255,0.761792,0.155451,0.135504,0.831934,0.611492,0.462504,0.954262,0.243033,0.559086,0.0975074,0.843192,0.349604,0.849849,0.914602,0.7155,0.971287,0.876219,0.40648,0.954417,0.415276,0.821067,0.936241,0.526568,0.405377,0.831845,0.355472,0.805585,0.592095,0.0633194,0.576591,0.736144,0.488873,0.641313,0.979482,0.379519,0.451928,0.297359,0.618669,0.078167,0.939958,0.899274,0.486614,0.649378,0.214281,0.469891,0.711603,0.751777,0.585626,0.308143,0.998737,0.910788,0.288214,0.91465,0.679178,0.9725,0.250365,0.716613,0.187793,0.73615,0.812177,0.704573,0.397675,0.830935,0.476784,0.766284,0.995097,0.318474,0.649883,0.600838,0.751879,0.818827,0.869312,0.754868,0.886314,0.388273,0.764669,0.777035,0.832573,0.802658,0.676214,0.462171,0.434479,0.881886,0.330119,0.898018,0.284539,0.832826,0.120244,0.853697,0.794605,0.90935,0.716127,0.843122,0.00284725,0.54414,0.53929,0.57434,0.553474,0.0801975,0.0367227,0.637138,0.24761,0.173727,0.955944,0.649776,0.146877,0.706118,0.0742632,0.396446,0.500505,0.779407,0.388397,0.969173,0.220803,0.303159,0.948621,0.380737,0.0339739,0.899649,0.942745,0.524196,0.456853,0.0420113,0.860271,0.40289,0.184533,0.753639,0.953391,0.86776,0.477383,0.0618429,0.0232231,0.307163,0.0305122,0.442626,0.198781,0.834231,0.60084,0.928594,0.411805,0.204433,0.98168,0.857177,0.0242806,0.177519,0.459379,0.658154,0.335632,0.781438,0.0206741,0.693267,0.731336,0.342142,0.984536,0.889173,0.60201,0.18293,0.682386,0.523624,0.794919,0.516709,0.963115,0.0839604,0.361554,0.0996828,0.526985,0.259327,0.471483,0.197766,0.580023,0.00458378,0.42696,0.322308,0.788088,0.928391,0.931447,0.353683,0.578353,0.624119,0.585119,0.162347,0.489339,0.50183,0.292681,0.442307,0.327524,0.217395,0.689722,0.896361,0.0423636,0.390554,0.567804,0.0871839,0.160077,0.158582,0.441172,0.93846,0.372379,0.69471,0.774227,0.204119,0.214771,0.511731,0.00843638,0.204323,0.260939,0.482728,0.768632,0.379408,0.35957,0.972459,0.108189,0.00616664,0.484163,0.278376,0.236316,0.38287,0.680019,0.503525,0.490347,0.474626,0.557465,0.373359,0.443906,0.626395,0.739359,0.745739,0.99215,0.564115,0.270961,0.288625,0.749227,0.70783,0.39246,0.12105,0.404383,0.851831,0.857222,0.166084,0.23024,0.602216,0.56358,0.927627,0.40258,0.427139,0.143214,0.768363,0.664666,0.393671,0.494372,0.825579,0.60211,0.560674,0.447422,0.709392,0.519227,0.456683,0.178795,0.628427,0.372564,0.975437,0.56325,0.783703,0.0760359,0.47975,0.348045,0.115625,0.876918,0.722957,0.0525848,0.779669,0.293,0.788084,0.376554,0.162826,0.830223,0.48817,0.87257,0.0425518,0.256588,0.815834,0.296271,0.239848,0.28868,0.263658,0.906844,0.34382,0.247917,0.929472,0.308404,0.72287,0.373041,0.468664,0.0543938,0.723866,0.796734,0.0819293,0.953438,0.094662,0.579624,0.16926,0.595119,0.542545,0.378091,0.205724,0.153025,0.333428,0.972935,0.224077,0.0846944,0.11803,0.671259,0.383178,0.819001,0.841935,0.0658638,0.278545,0.776906,0.99101,0.993179,0.1991,0.519258,0.648415,0.270208,0.754208,0.296173,0.375793,0.120133,0.059458,0.585243,0.426987,0.933415,0.378658,0.34747,0.985804,0.319957,0.871876,0.183946,0.928175,0.0642348,0.088532,0.47582,0.681312,0.389476,0.183879,0.968697,0.434815,0.447965,0.76903,0.461383,0.825485,0.985529,0.636423,0.77588,0.776664,0.168487,0.0336426,0.694845,0.268812,0.586682,0.935309,0.38354,0.940534,0.22798,0.297096,0.855649,0.170326,0.766526,0.637154,0.203086,0.529211,0.739106,0.82131,0.86366,0.560425,0.762049,0.73115,0.347144,0.845279,0.461927,0.693196,0.391098,0.611091,0.419177,0.404707,0.635922,0.00341511,0.774696,0.89728,0.880798,0.60304,0.661577,0.537077,0.47844,0.848166,0.919419,0.436035,0.468664,0.941859,0.579886,0.579862,0.833641,0.116582,0.958303,0.321182,0.940255,0.518126,0.462093,0.191847,0.222354,0.624472,0.362093,0.169483,0.100418,0.90039,0.794858,0.378655,0.223363,0.0022521,0.379288,0.227222,0.0216558,0.982263,0.672187,0.327662,0.532916,0.586582,0.949996,0.375803,0.368701,0.825382,0.831498,0.640162,0.980813,0.220512,0.288218,0.854087,0.369057,0.631538,0.684796,0.196805,0.450284,0.0721114,0.0877841,0.0150841,0.126852,0.253786,0.508684,0.00442511,0.391228,0.867861,0.53691,0.335419,0.147154,0.683834,0.14354,0.64601,0.178697,0.832841,0.31169,0.288223,0.524634,0.852064,0.737274,0.573613,0.110612,0.596934,0.0219628,0.191161,0.761611,0.369256,0.90737,0.295858,0.540404,0.794532,0.441157,0.957034,0.880118,0.284008,0.594456,0.313557,0.655441,0.934414,0.478612,0.359465,0.421784,0.921333,0.451351,0.381055,0.790758,0.235178,0.559332,0.194105,0.633991,0.505659,0.901078,0.61511,0.89494,0.291366,0.115144,0.816353,0.383563,0.27442,0.0426698,0.879788,0.225194,0.838502,0.702345,0.143275,0.920097,0.657634,0.429922,0.909634,0.398364,0.378923,0.375081,0.0222781,0.25281,0.730377,0.337366,0.432006,0.485824,0.265319,0.840421,0.853275,0.510304,0.477187,0.703416,0.809771,0.990685,0.6645,0.301376,0.830355,0.746682,0.0255539,0.691228,0.173571,0.751107,0.631298,0.351662,0.925052,0.965336,0.179952,0.588981,0.792687,0.435522,0.119989,0.454503,0.981178,0.912913,0.778621,0.69231,0.361285,0.203157,0.372073,0.665376,0.480603,0.338507,0.560375,0.518028,0.870639,0.0609973,0.133722,0.591763,0.226515,0.263462,0.214252,0.37942,0.719573,0.668757,0.998689,0.51454,0.376404,0.327886,0.984775,0.375136,0.154109,0.109177,0.199294,0.223009,0.277034,0.857593,0.604094,0.248451,0.70541,0.47386,0.236119,0.283961,0.296748,0.821064,0.635386,0.322685,0.146218,0.469992,0.547549,0.84161,0.291854,0.816208,0.553186,0.412358,0.680324,0.0792428,0.758127,0.685956,0.824393,0.150721,0.949164,0.737213,0.0946315,0.809556,0.469835,0.304926,0.131826,0.564506,0.547743,0.904444,0.0779347,0.195402,0.0574524,0.986295,|0.0752701,0.0267079,0.295606,0.537169,0.194679,0.312469,0.0214457,0.363531,0.998412,0.114482,0.147117,0.71301,0.743342,0.504398,0.430774,0.524527,0.109366,0.0620871,0.224366,0.803392,0.302839,0.0951347,0.479941,0.571515,0.223948,0.509202,0.807166,0.16556,0.0686265,0.418747,0.629033,0.847775,0.378842,0.0303432,0.113109,0.433293,0.138408,0.76007,0.801886,0.45871,0.716204,0.0701382,0.34768,0.283203,0.517015,0.962183,0.159894,0.331116,0.3145,0.0457522,0.521897,0.249698,0.587706,0.198627,0.507001,0.709252,0.620717,0.381774,0.772483,0.431733,0.750665,0.791466,0.853555,0.210995,0.0617723,0.222359,0.535811,0.749205,0.873918,0.877782,0.399018,0.063273,0.0578984,0.520679,0.779935,0.206132,0.37314,0.305147,0.806523,0.935165,0.62441,0.595936,0.432704,0.192055,0.771267,0.716407,0.72444,0.12619,0.9441,0.701478,0.0859489,0.923381,0.344669,0.370882,0.939466,0.52549,0.486472,0.457928,0.646726,0.356685,0.137268,0.414526,0.393241,0.77182,0.443053,0.793632,0.439824,0.780592,0.582263,0.618042,0.38951,0.715747,0.660736,0.995078,0.894668,0.740563,0.6213,0.230608,0.575392,0.573871,0.149275,0.708264,0.986828,0.799305,0.53252,0.75995,0.454016,0.0619391,0.95464,0.488949,0.299154,0.216223,0.234118,0.248399,0.619388,0.388342,0.386916,0.0589315,0.620009,0.649507,0.506473,0.262348,0.389389,0.684569,0.0284438,0.38818,0.992377,0.285732,0.651607,0.565166,0.0727746,0.860562,0.121643,0.362529,0.366055,0.156606,0.926012,0.135303,0.868027,0.842057,0.206225,0.516336,0.237917,0.367525,0.379426,0.250338,0.108722,0.755726,0.934745,0.38845,0.240606,0.686681,0.201176,0.638554,0.623197,0.666668,0.123551,0.753868,0.836924,0.540653,0.0292155,0.85659,0.648185,0.642532,0.697841,0.913239,0.709526,0.576543,0.982072,0.565007,0.135935,0.424483,0.532977,0.238095,0.583897,0.759342,0.019369,0.838883,0.324334,0.836744,0.238036,0.127376,0.870932,0.0682452,0.709318,0.052088,0.230314,0.104527,0.897369,0.925256,0.991246,0.000441432,0.666261,0.184208,0.0536125,0.124747,0.516707,0.10676,0.402932,0.0118927,0.743281,0.738281,0.217079,0.296017,0.60334,0.666636,0.535808,0.868108,0.0369123,0.416478,0.345493,0.750815,0.350223,0.0971459,0.0904225,0.490869,0.779833,0.499734,0.245596,0.743329,0.876927,0.107147,0.981086,0.205834,0.404861,0.961759,0.725752,0.759146,0.194081,0.93048,0.0719965,0.517412,0.226321,0.661099,0.896794,0.0823779,0.51056,0.674588,0.464461,0.192026,0.0746601,0.889329,0.37801,0.365962,0.391152,0.854294,0.66163,0.986353,0.214919,0.107345,0.680906,0.655554,0.163156,0.136194,0.71648,0.352074,0.692706,0.708829,0.306355,0.354478,0.0229771,0.142969,0.285836,0.156229,0.355109,0.780709,0.281891,0.17101,0.420491,0.678511,0.230633,0.145328,0.13667,0.870795,0.617798,0.804424,0.675474,0.58539,0.789706,0.990857,0.694707,0.228058,0.939773,0.597775,0.665114,0.337941,0.0406426,0.529724,0.587169,0.634996,0.367485,0.923612,0.0178016,0.85273,0.958992,0.330815,0.273117,0.287519,0.789342,0.673651,0.680433,0.998117,0.31777,0.739788,0.0314288,0.61392,0.446993,0.406879,0.0519072,0.236008,0.696978,0.791824,0.337343,0.220276,0.455782,0.0163826,0.246545,0.391401,0.895637,0.311701,0.118966,0.544226,0.383971,0.39446,0.10672,0.575776,0.575582,0.764611,0.0610737,0.943456,0.846669,0.13477,0.248214,0.957341,0.280184,0.247831,0.764506,0.910049,0.597239,0.492462,0.0317789,0.419738,0.699194,0.951828,0.0762327,0.424034,0.706974,0.439899,0.281315,0.733144,0.318411,0.375382,0.963389,0.574718,0.871085,0.55719,0.845784,0.286401,0.534534,0.409196,0.751653,0.960274,0.0104834,0.192432,0.291879,0.410254,0.177609,0.72147,0.00504184,0.177596,0.368274,0.926688,0.836578,0.907351,0.530362,0.132153,0.785831,0.437634,0.144573,0.579664,0.917122,0.709205,0.681064,0.0727924,0.73242,0.805427,0.715931,0.0589873,0.663336,0.480289,0.022506,0.0671523,0.833574,0.671991,0.148662,0.284599,0.205581,0.285673,0.322542,0.746776,0.119908,0.357962,0.0546635,0.592269,0.177272,0.680542,0.293361,0.563257,0.202916,0.742383,0.327867,0.698084,0.513884,0.136914,0.969332,0.707338,0.323459,0.752026,0.621373,0.887233,0.00795239,0.846065,0.227259,0.768495,0.338052,0.242979,0.492474,0.976082,0.326487,0.682448,0.738858,0.424013,0.349278,0.507262,0.361829,0.203648,0.182913,0.969804,0.304017,0.606659,0.810916,0.857556,0.413089,0.641183,0.854985,0.9135,0.15723,0.944184,0.91816,0.907537,0.471085,0.199902,0.562248,0.704835,0.788277,0.314541,0.747327,0.347606,0.917003,0.573648,0.495799,0.986982,0.987045,0.925765,0.626099,0.0497927,0.960119,0.017905,0.742767,0.445968,0.0171464,0.15652,0.504726,0.979053,0.0236465,0.414623,0.0271956,0.950458,0.370515,0.495291,0.895605,0.251764,0.591904,0.153962,0.616827,0.350881,0.74804,0.84844,0.659941,0.207794,0.553889,0.137454,0.308796,0.951087,0.681381,0.602584,0.140603,0.0471153,0.284713,0.375664,0.931236,0.782881,0.479384,0.945697,0.20673,0.273337,0.119475,0.550781,0.491689,0.108816,0.368295,0.371519,0.242541,0.0312057,0.363404,0.393421,0.633993,0.216492,0.556225,0.625183,0.238454,0.676088,0.906853,0.851022,0.991594,0.143112,0.864787,0.365489,0.880382,0.052892,0.0450479,0.985442,0.104646,0.969464,0.479474,0.825733,0.944502,0.539496,0.165543,0.346075,0.820955,0.202924,0.504364,0.248262,0.196051,0.279388,0.587305,0.96798,0.279327,0.848868,0.770718,0.788861,0.625732,0.505548,0.790462,0.0319938,0.206481,0.886821,0.568172,0.337186,0.990712,0.922951,0.0827262,0.0680903,0.88217,0.0640928,0.824382,0.92114,0.203328,0.132028,0.553132,0.107326,0.00475514,0.349867,0.990344,0.417718,0.823516,0.411,0.743376,0.367293,0.64963,0.356768,0.994493,0.545177,0.226778,0.435709,0.178057,0.30849,0.117889,0.219741,0.254862,0.74302,0.351425,0.842455,0.641339,0.267608,0.378382,0.703767,0.161385,0.563425,0.46773,0.810413,0.718566,0.166133,0.98313,0.31883,0.916598,0.381327,0.407024,0.944211,0.515149,0.72239,0.547518,0.680705,0.443207,0.106806,0.565525,0.0627919,0.473392,0.447578,0.414352,0.390664,0.765511,0.620364,0.681219,0.9748,0.877305,0.92743,0.085963,0.214141,0.980207,0.995112,0.500748,0.833937,0.524506,0.535352,0.85913,0.652797,0.48375,0.853789,0.706335,0.902621,0.394564,0.989075,0.183672,0.426627,0.20119,0.708282,0.715439,0.167384,0.394611,0.4726,0.701627,0.949871,0.46223,0.275181,0.815331,0.472908,0.052218,0.549666,0.766713,0.742663,0.170781,0.259644,0.325926,0.33717,0.569228,0.149963,0.294627,0.17063,0.421391,0.122248,0.452954,0.359133,0.301902,0.823863,0.642994,0.290864,0.438069,0.802909,0.714807,0.0699546,0.902405,0.772333,0.529905,0.851357,0.799666,0.253777,0.251791,0.0923985,0.360053,0.293456,0.424087,0.842119,0.229102,0.693046,0.369921,0.636263,0.110424,0.925033,0.0284313,0.347227,0.11305,0.336124,0.2322,0.986419,0.875404,0.85077,0.197061,0.256122,0.745011,0.435869,0.68022,0.699091,0.865417,0.941851,0.0161548,0.810266,0.080249,0.0784082,0.961433,0.931409,0.788699,0.695309,0.106367,0.266001,0.280691,0.841678,0.665738,0.776071,0.377003,0.97119,0.111219,0.693126,0.525351,0.924111,0.0613344,0.412931,0.661975,0.20807,0.655076,0.532156,0.177066,0.932266,0.0214138,0.0156445,0.630862,0.798138,0.750253,0.393183,0.570178,0.948776,0.951891,0.873544,0.513518,0.071261,0.142142,0.942348,0.22648,0.632617,0.391086,0.595131,0.370278,0.930013,0.44363,0.231217,0.0295781,0.59359,0.331327,0.0662846,0.36585,0.826713,0.0159186,0.646775,0.198698,0.59639,0.645642,0.500548,0.776258,0.436898,0.150663,0.961786,0.378042,0.989405,0.736426,0.414637,0.968435,0.0378608,0.811406,0.385292,0.432737,0.538984,0.620575,0.509814,0.483573,0.173527,0.685653,0.510191,0.0478917,0.796066,0.0554249,0.255353,0.895739,0.62126,0.908839,0.235152,0.755722,0.884983,0.643629,0.758651,0.634591,0.379211,0.808315,0.814531,0.570652,0.613347,0.946286,0.200255,0.57739,0.340824,0.615129,0.0321173,0.1003,0.84035,0.0701791,0.62473,0.814484,0.581672,0.824807,0.064682,0.349899,0.623804,0.727221,0.312256,0.581991,0.205138,0.679573,0.654396,0.493126,0.506152,0.315801,0.77012,0.179407,0.508428,0.169867,0.741435,0.15936,0.703094,0.538291,0.244939,0.333656,0.723876,0.0251461,0.811997,0.583991,0.28813,0.588554,0.252335,0.41925,0.740362,0.0588341,0.870856,0.269561,0.977747,0.379123,0.0525151,0.831274,0.533854,0.67249,0.845327,0.849741,0.157801,0.936057,0.601347,0.428744,0.893458,0.447155,0.0457693,0.0376662,0.315002,0.600026,0.32941,0.111452,0.202287,0.408805,0.496675,0.509514,0.172883,0.64571,0.192205,0.677032,0.3394,0.273907,0.416155,0.0422658,0.621,0.00311148,0.973253,0.189829,0.561999,0.615465,0.822269,0.154264,0.699722,0.537968,0.517651,0.682219,0.833232,0.866986,0.161998,0.858994,0.917761,0.0186489,0.37807,0.0071736,0.544039,0.968962,0.752998,0.979163,0.538708,0.28918,0.121213,0.391546,0.305966,0.09999,0.139138,0.562742,0.876979,0.439623,0.942719,0.486672,0.0531666,0.5376,0.417449,0.245602,0.553922,0.548903,0.535467,0.223,0.547046,0.212842,0.239377,0.472941,0.70009,0.252821,0.458406,0.299967,0.932387,0.470402,0.184752,0.946394,0.657003,0.224123,0.988477,0.48524,0.962546,0.355612,0.36806,0.476889,0.103813,0.504004,0.686817,0.569775,0.587649,0.371024,0.808462,0.166178,0.554393,0.257108,0.999139,0.786591,0.912143,0.765015,0.684346,0.730787,0.733468,0.5008,0.899461,0.798784,0.321628,|0.948787,0.969842,0.74929,0.613217,0.111668,0.146707,0.836055,0.0842666,0.614253,0.454501,0.155053,0.818928,0.719299,0.283873,0.84091,0.687922,0.0372443,0.838376,0.0814888,0.446738,0.241062,0.594622,0.45262,0.696371,0.514894,0.29016,0.651117,0.897782,0.56108,0.570144,0.346325,0.974206,0.919516,0.945027,0.617073,0.177479,0.517106,0.849918,0.897851,0.475088,0.556941,0.609818,0.238434,0.459547,0.211365,0.318807,0.53313,0.327443,0.800739,0.403572,0.553549,0.839833,0.347955,0.552604,0.251965,0.779929,0.58426,0.965717,0.119211,0.468142,0.555139,0.369331,0.561257,0.198626,0.416454,0.622271,0.534861,0.833518,0.509033,0.326646,0.540298,0.0129237,0.637984,0.167607,0.0542926,0.985846,0.387001,0.893711,0.19095,0.271546,0.946291,0.635638,0.690364,0.699592,0.145737,0.853095,0.852179,0.543181,0.717142,0.962582,0.737516,0.815397,0.665355,0.927812,0.999328,0.789327,0.481646,0.747228,0.649164,0.770094,0.797957,0.687628,0.291292,0.294569,0.930692,0.613641,0.722275,0.689361,0.248323,0.471676,0.909812,0.785022,0.326106,0.457372,0.60293,0.508533,0.193787,0.863613,0.642492,0.175709,0.941881,0.745212,0.0942117,0.578692,0.213822,0.7658,0.49385,0.226306,0.0523098,0.525347,0.256353,0.828248,0.159917,0.765669,0.252527,0.262813,0.397278,0.797784,0.775794,0.391609,0.826143,0.906437,0.239693,0.813978,0.528943,0.276033,0.282557,0.655042,0.0325714,0.747823,0.456342,0.199875,0.942152,0.411846,0.777315,0.517742,0.618283,0.611598,0.376321,0.298506,0.170119,0.0853637,0.953597,0.389113,0.835111,0.525588,0.636114,0.0430216,0.415325,0.499484,0.995147,0.157838,0.688251,0.369202,0.61286,0.0199222,0.716769,0.0470525,0.526209,0.978657,0.973405,0.230486,0.0422396,0.417992,0.60396,0.913603,0.835726,0.178939,0.0622374,0.258048,0.648194,0.0925571,0.846811,0.307647,0.134709,0.0442557,0.295414,0.0665396,0.484712,0.249199,0.852638,0.969872,0.6444,0.283838,0.300315,0.618122,0.806514,0.0956445,0.731229,0.810337,0.3193,0.319279,0.418032,0.989957,0.0327297,0.73111,0.309017,0.625374,0.241818,0.971163,0.720047,0.962566,0.177568,0.955889,0.653159,0.198011,0.660224,0.584922,0.418439,0.981598,0.50448,0.163026,0.645525,0.873281,0.733392,0.570063,0.859791,0.06339,0.952466,0.774512,0.359063,0.0460159,0.20201,0.913452,0.037782,0.330319,0.303024,0.0452614,0.986948,0.632044,0.854229,0.871566,0.643448,0.917787,0.958057,0.223799,0.00486422,0.99054,0.428485,0.783986,0.724752,0.923305,0.565641,0.317748,0.344568,0.741001,0.418826,0.162634,0.905259,0.921691,0.915713,0.774301,0.779514,0.106566,0.0968192,0.136111,0.644476,0.0627178,0.199801,0.611543,0.452982,0.825345,0.79702,0.11639,0.856561,0.930223,0.458293,0.406556,0.121933,0.264683,0.818453,0.910511,0.800899,0.483487,0.555117,0.351475,0.0225485,0.235224,0.96228,0.228378,0.139617,0.507255,0.431363,0.697209,0.0316978,0.263138,0.225437,0.349371,0.68267,0.570176,0.36316,0.870098,0.0166748,0.9791,0.854219,0.448263,0.0806832,0.0945641,0.975457,0.157486,0.876999,0.322315,0.717565,0.686141,0.567583,0.108892,0.0474347,0.0173904,0.793554,0.637152,0.198073,0.767349,0.430385,0.310903,0.669641,0.24982,0.405312,0.725803,0.437133,0.205704,0.43421,0.827623,0.407111,0.412485,0.393321,0.180332,0.264892,0.47028,0.542593,0.538884,0.119449,0.933832,0.940495,0.106358,0.534526,0.308721,0.891886,0.222382,0.618783,0.641408,0.950685,0.0588315,0.0108305,0.682959,0.590766,0.835378,0.983448,0.497694,0.950951,0.203524,0.353953,0.161793,0.518337,0.657227,0.56024,0.654894,0.943759,0.900953,0.930226,0.768068,0.249957,0.194283,0.758958,0.500139,0.739085,0.753257,0.703882,0.966265,0.117067,0.316436,0.121714,0.758465,0.311638,0.42788,0.366928,0.949013,0.464279,0.101942,0.251724,0.351912,0.34299,0.805308,0.95992,0.133725,0.510965,0.52726,0.170495,0.685103,0.63917,0.755221,0.255032,0.0972216,0.736541,0.387342,0.863839,0.802191,0.344532,0.745651,0.647595,0.131425,0.873216,0.527675,0.652868,0.460089,0.190335,0.581725,0.688785,0.947926,0.708622,0.590574,0.239775,0.504854,0.427616,0.946828,0.131532,0.80088,0.285479,0.653557,0.931743,0.28352,0.158395,0.354333,0.0758502,0.680082,0.793224,0.96169,0.509704,0.479565,0.775582,0.657392,0.178735,0.318936,0.360527,0.801832,0.467236,0.768184,0.844954,0.540971,0.343443,0.821537,0.51341,0.473657,0.309568,0.69216,0.624408,0.104278,0.167965,0.183399,0.531563,0.349445,0.365891,0.461296,0.672275,0.548926,0.20653,0.333966,0.929251,0.346486,0.0193543,0.556617,0.605051,0.036082,0.838325,0.169982,0.966436,0.982591,0.271271,0.21787,0.900602,0.163925,0.212551,0.140913,0.616736,0.307955,0.18146,0.879535,0.277236,0.248894,0.255667,0.773878,0.0211617,0.710662,0.696244,0.788983,0.456798,0.239388,0.778919,0.916106,0.213342,0.908709,0.403609,0.282134,0.175124,0.502087,0.406694,0.969741,0.217607,0.0571874,0.466226,0.80195,0.563572,0.817322,0.0746898,0.435244,0.887223,0.856193,0.56892,0.712718,0.375368,0.948305,0.992472,0.0121124,0.0346142,0.657033,0.444495,0.206065,0.74709,0.154017,0.787782,0.93522,0.506645,0.2225,0.78518,0.379781,0.943866,0.792858,0.0150228,0.0312204,0.0385919,0.999299,0.819157,0.252603,0.398344,0.941116,0.906283,0.0848141,0.303127,0.285847,0.244949,0.465637,0.864034,0.96715,0.200908,0.00265992,0.231268,0.81524,0.931132,0.0921111,0.678868,0.342746,0.0637125,0.416282,0.852416,0.452946,0.413351,0.992625,0.666142,0.230205,0.26456,0.766775,0.794848,0.0375268,0.282451,0.434723,0.998767,0.091266,0.07718,0.205675,0.45831,0.755999,0.91716,0.949957,0.326512,0.0111449,0.924497,0.0975859,0.579649,0.135254,0.748773,0.852344,0.880367,0.221205,0.382459,0.721858,0.496323,0.559319,0.725645,0.468959,0.770802,0.122782,0.0433471,0.175945,0.403908,0.328832,0.000591993,0.564025,0.180166,0.33717,0.627629,0.499952,0.177518,0.57454,0.98092,0.0712559,0.704967,0.0154471,0.807712,0.426963,0.795264,0.625436,0.847966,0.350516,0.298071,0.0633335,0.658376,0.409909,0.66903,0.13058,0.652594,0.52929,0.758397,0.393559,0.844013,0.936281,0.558603,0.138196,0.620129,0.92495,0.20158,0.24604,0.9288,0.269532,0.905067,0.406747,0.832525,0.249924,0.386479,0.855697,0.240615,0.808174,0.849678,0.575437,0.183882,0.794659,0.607164,0.441413,0.178198,0.376989,0.397844,0.973274,0.376009,0.395038,0.259193,0.925187,0.960638,0.660943,0.87797,0.315661,0.685365,0.185156,0.88958,0.475025,0.738086,0.210844,0.489415,0.883646,0.0301355,0.528399,0.70574,0.863173,0.239489,0.190216,0.628818,0.256487,0.281152,0.623986,0.529225,0.881144,0.0410248,0.483261,0.857758,0.0208215,0.0415011,0.357056,0.322776,0.160798,0.153341,0.839174,0.331861,0.639518,0.739719,0.854235,0.980243,0.934909,0.94702,0.254671,0.897215,0.528154,0.187534,0.298036,0.170006,0.0640945,0.772725,0.793734,0.777065,0.197414,0.86766,0.783079,0.292681,0.834066,0.0637985,0.826873,0.702618,0.154379,0.456267,0.243742,0.300146,0.693583,0.291919,0.357835,0.307965,0.397287,0.17061,0.490477,0.509344,0.250419,0.0627632,0.418587,0.393635,0.476656,0.766794,0.0578669,0.606034,0.871923,0.405739,0.810704,0.794774,0.358056,0.939951,0.580039,0.505123,0.0847389,0.0354339,0.415093,0.757888,0.328218,0.989367,0.145548,0.119045,0.199807,0.964017,0.233317,0.5659,0.372968,0.806846,0.141148,0.408914,0.517677,0.282417,0.409241,0.918752,0.813769,0.739638,0.550582,0.703934,0.695453,0.810303,0.827788,0.0757419,0.511486,0.602719,0.0216628,0.854558,0.589139,0.535134,0.138905,0.513141,0.553881,0.721329,0.677284,0.751911,0.187161,0.545132,0.239747,0.749172,0.412866,0.387248,0.268039,0.204165,0.965508,0.855381,0.905069,0.078257,0.749235,0.811282,0.191598,0.580702,0.551228,0.716325,0.199158,0.954088,0.966239,0.493219,0.844699,0.562501,0.775793,0.154135,0.864056,0.0244015,0.389285,0.344926,0.432008,0.256621,0.591438,0.938506,0.524457,0.153831,0.450892,0.0203221,0.492555,0.38029,0.852036,0.191798,0.973917,0.4165,0.521521,0.492504,0.428871,0.0184782,0.932604,0.629854,0.215562,0.411327,0.888385,0.312205,0.714995,0.893048,0.55616,0.490243,0.672612,0.322711,0.915945,0.105494,0.993008,0.010586,0.419255,0.168151,0.515161,0.11403,0.908004,0.679435,0.889075,0.61771,0.420257,0.276618,0.357758,0.340476,0.59142,0.753233,0.43469,0.26412,0.204891,0.173673,0.0748313,0.392002,0.73976,0.454914,0.00638103,0.883,0.754733,0.665234,0.743065,0.338222,0.286702,0.0554296,0.368984,0.169893,0.163037,0.265406,0.625004,0.193338,0.475677,0.384721,0.610474,0.762672,0.627311,0.710326,0.429346,0.942789,0.0600954,0.581556,0.733927,0.112405,0.542149,0.645275,0.623272,0.281023,0.353345,0.757364,0.622229,0.192985,0.182042,0.918982,0.734503,0.579339,0.722574,0.729118,0.162242,0.203938,0.389367,0.896654,0.691168,0.689699,0.542346,0.430303,0.436034,0.371396,0.746961,0.16084,0.945147,0.952575,0.294509,0.391649,0.853929,0.700449,0.279731,0.954943,0.000752032,0.774768,0.371386,0.558634,0.602852,0.273673,0.396748,0.153814,0.394396,0.0222684,0.475204,0.39839,0.926173,0.843248,0.995358,0.516417,0.788573,0.178276,0.0458161,0.443599,0.799604,0.137167,0.191825,0.398262,0.176931,0.470997,0.186235,0.659233,0.0916291,0.040854,0.328389,0.342886,0.690691,0.026621,0.311592,0.001764,0.77369,0.51906,0.68141,0.825651,0.460015,0.666643,0.462576,0.945459,0.0672216,0.484967,0.970749,0.943337,0.72385,0.347247,0.683028,0.945875,0.203687,|0.475367,0.725028,0.0740464,0.310525,0.800524,0.959027,0.566811,0.334008,0.848824,0.0922093,0.855117,0.429379,0.7201,0.908979,0.84317,0.577217,0.0485657,0.983377,0.841732,0.195624,0.200516,0.399134,0.939528,0.181715,0.598512,0.315339,0.789368,0.137007,0.142148,0.415372,0.249697,0.569551,0.497311,0.0290666,0.0101579,0.673813,0.184798,0.657624,0.151967,0.646201,0.270377,0.4285,0.32595,0.917965,0.536773,0.620314,0.205448,0.321479,0.0145526,0.925418,0.278064,0.157582,0.193494,0.553634,0.469494,0.442349,0.811212,0.122684,0.0978446,0.884197,0.702752,0.68589,0.295721,0.510184,0.699562,0.329328,0.0342118,0.176103,0.063485,0.870262,0.119016,0.607337,0.626218,0.3901,0.309601,0.313793,0.348776,0.349427,0.210085,0.756678,0.104931,0.885594,0.0978252,0.472938,0.0313802,0.834131,0.088793,0.377796,0.237168,0.0325187,0.819861,0.778535,0.0707639,0.159801,0.516602,0.933913,0.947325,0.0679635,0.134239,0.367805,0.162265,0.636726,0.940143,0.116693,0.702778,0.826285,0.240184,0.366322,0.0662974,0.0174742,0.551911,0.85994,0.963561,0.0751579,0.710298,0.8627,0.052471,0.101401,0.743423,0.13958,0.472722,0.551939,0.836739,0.0261724,0.316201,0.450566,0.121175,0.185627,0.0775499,0.557014,0.370278,0.216009,0.635088,0.00841898,0.635252,0.399331,0.179215,0.528855,0.320851,0.673162,0.658372,0.428547,0.646557,0.714206,0.638179,0.584932,0.593633,0.653209,0.838071,0.765295,0.540718,0.35649,0.882832,0.843608,0.636733,0.713724,0.0487853,0.579058,0.603153,0.921074,0.465341,0.113762,0.7959,0.576031,0.935946,0.779738,0.953896,0.551522,0.99998,0.238661,0.819568,0.3773,0.72153,0.990119,0.851045,0.66138,0.539547,0.813818,0.734295,0.549891,0.805233,0.828087,0.641129,0.203557,0.122758,0.917375,0.310973,0.555719,0.0994633,0.664178,0.775197,0.589932,0.770977,0.631446,0.083062,0.644009,0.525345,0.229242,0.779901,0.581439,0.96814,0.0955935,0.0505489,0.0152726,0.705178,0.605704,0.107403,0.70261,0.718422,0.740129,0.672241,0.808847,0.690579,0.248242,0.179424,0.236728,0.853427,0.315307,0.268427,0.303657,0.60562,0.735787,0.817125,0.0172821,0.218099,0.319839,0.910897,0.643587,0.242576,0.472242,0.600091,0.605905,0.854454,0.0589659,0.422606,0.785832,0.0258339,0.755249,0.624185,0.26992,0.911128,0.6228,0.574743,0.338277,0.281257,0.812976,0.0141945,0.0844803,0.00442958,0.397058,0.886944,0.0975656,0.502614,0.713145,0.210889,0.600785,0.0779234,0.756726,0.606022,0.696823,0.495796,0.815739,0.221638,0.263706,0.330937,0.269299,0.311977,0.298016,0.617839,0.0651562,0.856148,0.500817,0.23751,0.845637,0.622854,0.308396,0.793634,0.605396,0.540835,0.0991629,0.263455,0.462866,0.991063,0.91159,0.202171,0.860142,0.38557,0.692858,0.0551158,0.867779,0.688307,0.0255143,0.683313,0.337963,0.742574,0.332108,0.391963,0.438476,0.566417,0.353012,0.966314,0.297657,0.542382,0.334128,0.214359,0.331004,0.0986142,0.3212,0.661141,0.117794,0.253795,0.836447,0.665462,0.202653,0.888404,0.0324659,0.0692979,0.841061,0.394745,0.918062,0.301555,0.586814,0.0126718,0.246988,0.945598,0.197638,0.172535,0.491448,0.583543,0.163866,0.195815,0.957575,0.439174,0.903738,0.355945,0.503411,0.948771,0.322238,0.746102,0.434967,0.835157,0.599414,0.527287,0.384164,0.457346,0.767736,0.90309,0.433469,0.846722,0.876826,0.135078,0.60814,0.254477,0.328498,0.0859752,0.307199,0.866925,0.376875,0.448849,0.104337,0.606419,0.373271,0.941344,0.38474,0.512488,0.383347,0.863809,0.866854,0.98564,0.257046,0.615571,0.100187,0.114875,0.857754,0.982727,0.507799,0.905934,0.600724,0.894896,0.458857,0.573096,0.901439,0.670036,0.410713,0.757463,0.848801,0.872688,0.609176,0.549688,0.0357559,0.0703701,0.887429,0.564164,0.0597289,0.614238,0.831788,0.33041,0.808016,0.120154,0.238313,0.378757,0.0693194,0.642427,0.638321,0.884683,0.451209,0.584439,0.869806,0.301707,0.676386,0.0661639,0.420923,0.556543,0.475218,0.814438,0.699921,0.854909,0.0507368,0.37904,0.862151,0.616556,0.102957,0.710832,0.862325,0.300714,0.637094,0.975084,0.121443,0.896441,0.929277,0.713527,0.944867,0.842057,0.900979,0.643789,0.100269,0.562952,0.448043,0.882666,0.912168,0.864868,0.438343,0.318043,0.258086,0.582908,0.0384375,0.255608,0.631353,0.246737,0.984858,0.0769219,0.0276285,0.296392,0.384913,0.730517,0.063545,0.54954,0.121881,0.16693,0.152577,0.15529,0.901364,0.68924,0.69919,0.849276,0.734267,0.472775,0.0468521,0.255155,0.391514,0.00163728,0.601694,0.662707,0.619061,0.157392,0.044949,0.409806,0.493773,0.56356,0.262285,0.407121,0.796416,0.590039,0.498467,0.872811,0.549217,0.227796,0.346854,0.118376,0.650689,0.489188,0.497395,0.599469,0.802804,0.672289,0.253492,0.414874,0.862067,0.459245,0.829063,0.110123,0.366539,0.643055,0.583878,0.404392,0.910767,0.688555,0.522588,0.91801,0.795814,0.722064,0.0120231,0.932176,0.4371,0.883129,0.335613,0.191851,0.398961,0.628667,0.777719,0.13781,0.946156,0.267109,0.81378,0.581182,0.866246,0.262006,0.565773,0.150978,0.677567,0.804735,0.654044,0.226108,0.767034,0.288707,0.529591,0.600185,0.842128,0.205408,0.392607,0.564462,0.985101,0.527768,0.736075,0.97849,0.313626,0.602063,0.59546,0.748664,0.925576,0.848614,0.959541,0.448938,0.943749,0.525892,0.820344,0.646168,0.242217,0.187837,0.299173,0.120232,0.522511,0.190416,0.937421,0.388698,0.200188,0.592111,0.248224,0.95957,0.0612438,0.719266,0.963954,0.542123,0.340854,0.939169,0.321159,0.906492,0.0249446,0.516747,0.747985,0.481864,0.463341,0.817678,0.825993,0.0206811,0.685809,0.269113,0.738661,0.780048,0.656271,0.417946,0.936549,0.865162,0.023323,0.131094,0.19257,0.155468,0.298199,0.726375,0.403754,0.880086,0.0705265,0.863781,0.00831932,0.993115,0.353923,0.895014,0.176143,0.904703,0.777568,0.825731,0.429569,0.698594,0.0793119,0.596142,0.221889,0.881807,0.123194,0.809339,0.197285,0.695174,0.70298,0.900994,0.556241,0.210399,0.141978,0.333825,0.0424064,0.0478336,0.678959,0.595855,0.13891,0.941705,0.301529,0.835956,0.0697126,0.117038,0.54764,0.0041244,0.144,0.207741,0.847675,0.689073,0.990365,0.52134,0.814522,0.0421438,0.899317,0.0287536,0.624934,0.376134,0.363033,0.933272,0.601149,0.760972,0.713382,0.868516,0.115119,0.99955,0.74438,0.0873173,0.389542,0.987027,0.347275,0.22306,0.0816315,0.73802,0.0587983,0.909471,0.998616,0.499096,0.689473,0.345641,0.900022,0.483431,0.676616,0.674859,0.458557,0.551802,0.613434,0.925533,0.479657,0.362521,0.55097,0.309633,0.956429,0.343123,0.318594,0.174549,0.710642,0.227183,0.775956,0.837851,0.858519,0.584368,0.644786,0.352223,0.236722,0.535342,0.052147,0.165129,0.552672,0.639018,0.993421,0.906244,0.101196,0.487689,0.194277,0.817927,0.702768,0.877077,0.852898,0.422884,0.509405,0.115879,0.456588,0.992101,0.611223,0.101894,0.45451,0.159655,0.456661,0.698533,0.23991,0.447162,0.368945,0.732198,0.532459,0.904833,0.168455,0.638184,0.130947,0.269678,0.83534,0.369375,0.972287,0.938264,0.225281,0.532392,0.159148,0.15463,0.411717,0.314506,0.417489,0.916053,0.91451,0.255042,0.728697,0.481093,0.806838,0.307192,0.209831,0.387735,0.980689,0.889347,0.558756,0.331784,0.367247,0.825472,0.0697877,0.373687,0.161748,0.188665,0.91871,0.874536,0.733819,0.542609,0.583354,0.688807,0.173792,0.371494,0.796108,0.687374,0.415922,0.496681,0.188118,0.951325,0.0634071,0.801195,0.238342,0.434391,0.43913,0.462846,0.4461,0.00011766,0.321939,0.412225,0.864277,0.450474,0.382945,0.530712,0.219906,0.208695,0.641588,0.482824,0.0191683,0.136967,0.905603,0.672477,0.335897,0.780681,0.251798,0.260004,0.475579,0.385561,0.16624,0.99704,0.984085,0.846554,0.654646,0.706425,0.63983,0.91928,0.601738,0.828035,0.785515,0.808421,0.790223,0.00810492,0.48412,0.491509,0.236499,0.0373813,0.0242047,0.239494,0.00572562,0.554392,0.12552,0.494871,0.357575,0.140766,0.196789,0.648218,0.551953,0.675103,0.080741,0.764884,0.760791,0.51209,0.328233,0.760434,0.0580918,0.863939,0.216122,0.889151,0.637634,0.0432523,0.421173,0.786642,0.451667,0.466474,0.231301,0.199194,0.459326,0.473206,0.652674,0.594381,0.537644,0.525436,0.35606,0.882472,0.608217,0.572663,0.220451,0.494539,0.0671916,0.669408,0.410471,0.346356,0.56894,0.975829,0.213038,0.532228,0.454661,0.834877,0.354361,0.790733,0.972605,0.755061,0.921066,0.200616,0.632083,0.344417,0.890647,0.720514,0.721583,0.507407,0.785718,0.790581,0.177338,0.583297,0.955973,0.267475,0.630785,0.274512,0.516546,0.245893,0.0574562,0.0345941,0.123273,0.011288,0.70954,0.406116,0.116455,0.698036,0.976923,0.332331,0.361919,0.0250489,0.334981,0.794871,0.336036,0.699671,0.250853,0.549952,0.51399,0.40503,0.959996,0.772238,0.201105,0.363433,0.0922282,0.781334,0.902858,0.981072,0.365167,0.245338,0.667037,0.705209,0.12847,0.120942,0.595308,0.305476,0.876554,0.811832,0.843839,0.241506,0.168342,0.0402108,0.248902,0.27242,0.182699,0.594557,0.882289,0.22761,0.338443,0.154724,0.607598,0.217407,0.648458,0.700472,0.823524,0.357447,0.244655,0.395772,0.735104,0.526216,0.927951,0.945517,0.713635,0.690208,0.230487,0.066523,0.323867,0.115988,0.987575,0.98157,0.834547,0.526619,0.694837,0.350884,0.476541,0.991378,0.409143,0.907588,0.856609,0.406469,0.947753,0.346417,0.424794,0.0772499,0.494411,0.454678,0.539345,0.234349,0.908429,0.633514,0.920731,0.586241,0.0355702,0.00831902,0.814347,0.4209,0.613069,0.0815371,0.254668,0.737369,0.708031,0.0467007,0.512097,|0.246887,0.118249,0.797736,0.362479,0.145665,0.774311,0.750671,0.932774,0.0902508,0.22884,0.95445,0.541172,0.00173169,0.874138,0.0591218,0.192271,0.275287,0.109609,0.325521,0.846112,0.992585,0.581022,0.0427104,0.248184,0.164154,0.888081,0.991345,0.776308,0.815654,0.786073,0.651789,0.913466,0.324291,0.483511,0.918883,0.120227,0.628532,0.834112,0.201036,0.608283,0.308444,0.492619,0.418299,0.189823,0.25403,0.838534,0.432067,0.486341,0.595866,0.496491,0.0222228,0.98755,0.112677,0.745165,0.368679,0.95075,0.504571,0.804429,0.832919,0.669305,0.837779,0.967683,0.689662,0.00776231,0.260724,0.447529,0.607953,0.991998,0.234246,0.749376,0.671645,0.295586,0.746149,0.578745,0.69435,0.152991,0.32819,0.946591,0.326346,0.827526,0.64571,0.79206,0.388878,0.490991,0.471298,0.831282,0.114121,0.646618,0.0320565,0.290658,0.17176,0.873813,0.147197,0.279335,0.0497568,0.263027,0.0434448,0.511259,0.964746,0.449667,0.257514,0.974704,0.978866,0.274161,0.524289,0.325131,0.937414,0.972347,0.086143,0.797528,0.0496643,0.389366,0.227248,0.467507,0.0763753,0.821764,0.933336,0.342414,0.231818,0.0774063,0.580598,0.195031,0.18696,0.720594,0.919688,0.682218,0.105956,0.637599,0.404847,0.61465,0.633808,0.730441,0.369901,0.665306,0.125583,0.743952,0.132132,0.588574,0.191355,0.384798,0.587336,0.441651,0.939344,0.866973,0.763741,0.648762,0.1208,0.805211,0.950676,0.0934147,0.486335,0.918664,0.637356,0.200542,0.063896,0.315223,0.368419,0.816682,0.698727,0.539431,0.598058,0.422253,0.231325,0.483579,0.160244,0.848733,0.00236326,0.361122,0.669266,0.807885,0.0555475,0.502641,0.350949,0.604006,0.690504,0.249319,0.530052,0.185152,0.538055,0.158441,0.608537,0.730607,0.392164,0.0445342,0.681235,0.651063,0.990131,0.207418,0.346102,0.544366,0.880257,0.659625,0.582305,0.399051,0.358798,0.932007,0.855603,0.867656,0.10407,0.279956,0.642343,0.618873,0.339335,0.622504,0.739647,0.139588,0.382003,0.311836,0.904275,0.453836,0.115778,0.435861,0.161259,0.00754803,0.462212,0.347893,0.460373,0.552289,0.70405,0.550808,0.950629,0.25181,0.963192,0.887442,0.299496,0.0308308,0.683577,0.755388,0.808133,0.0881329,0.669185,0.803872,0.504561,0.146668,0.255725,0.339499,0.422035,0.298305,0.126714,0.66101,0.320969,0.633225,0.284572,0.852346,0.182091,0.254515,0.992952,0.151159,0.589723,0.652534,0.260032,0.778323,0.432515,0.901353,0.477292,0.247549,0.821725,0.633156,0.505721,0.98972,0.926856,0.2903,0.635178,0.438428,0.727322,0.189343,0.517625,0.459501,0.519222,0.364489,0.162211,0.235922,0.738663,0.174592,0.53042,0.431505,0.354772,0.811375,0.031343,0.510544,0.59104,0.354843,0.28782,0.248472,0.991632,0.0205687,0.791795,0.627298,0.890796,0.317199,0.799113,0.866333,0.350742,0.299744,0.133904,0.781111,0.293083,0.376759,0.186175,0.290811,0.209233,0.388874,0.165665,0.0937393,0.523617,0.715065,0.50767,0.355475,0.756648,0.276398,0.223742,0.23973,0.188486,0.741165,0.590595,0.059963,0.0396128,0.691808,0.725753,0.659843,0.0158488,0.593954,0.27761,0.338636,0.758591,0.138255,0.136353,0.0749123,0.117275,0.375153,0.723621,0.462427,0.67653,0.694129,0.304302,0.644088,0.443144,0.129704,0.891073,0.299135,0.819389,0.651058,0.764191,0.910484,0.00937074,0.665624,0.254872,0.0205548,0.373748,0.724322,0.567973,0.386554,0.610523,0.901511,0.289629,0.393631,0.54709,0.817598,0.418103,0.724905,0.664946,0.872243,0.800523,0.00331426,0.644894,0.159882,0.448784,0.657951,0.996694,0.107632,0.606239,0.551099,0.985981,0.183618,0.850193,0.354702,0.88369,0.54263,0.390784,0.432378,0.467306,0.289791,0.713142,0.33512,0.617649,0.967146,0.415641,0.307494,0.14661,0.165795,0.918585,0.709953,0.0346186,0.808696,0.915212,0.841345,0.581254,0.579538,0.68226,0.664132,0.868041,0.728742,0.177804,0.00249302,0.365364,0.628838,0.413625,0.421378,0.983236,0.609003,0.553217,0.55185,0.591871,0.498187,0.970781,0.179565,0.825906,0.268903,0.120854,0.867449,0.09125,0.889559,0.73939,0.378257,0.932927,0.350191,0.868734,0.261282,0.57259,0.569627,0.762277,0.927516,0.426653,0.123348,0.933876,0.68251,0.927674,0.0804589,0.179566,0.956383,0.00191694,0.397776,0.281801,0.127341,0.614161,0.549139,0.349801,0.411954,0.368137,0.548244,0.46507,0.052499,0.878446,0.0149725,0.337538,0.44431,0.266801,0.803442,0.322264,0.632579,0.126058,0.190993,0.48311,0.373896,0.779048,0.996733,0.778856,0.315781,0.145383,0.54566,0.479899,0.521591,0.748744,0.692347,0.00232142,0.939515,0.810744,0.833712,0.144726,0.756254,0.62921,0.718323,0.399413,0.775968,0.475911,0.933022,0.431943,0.777211,0.860563,0.152198,0.833236,0.275383,0.283552,0.531058,0.177944,0.695211,0.723257,0.456565,0.181144,0.262603,0.0925958,0.324945,0.441029,0.867277,0.875829,0.549067,0.406912,0.0727283,0.667785,0.854184,0.745762,0.483561,0.276554,0.722329,0.0592366,0.29982,0.365819,0.504297,0.0456415,0.00949699,0.339777,0.464416,0.103086,0.121791,0.834654,0.758794,0.443167,0.864602,0.870125,0.608222,0.469348,0.840007,0.125446,0.0321707,0.0802605,0.867843,0.889777,0.916091,0.568264,0.0630892,0.410704,0.440013,0.525116,0.0273079,0.58718,0.982005,0.648052,0.742247,0.457865,0.114255,0.673474,0.779425,0.616712,0.191871,0.989076,0.40733,0.332755,0.939489,0.663295,0.117958,0.343136,0.0465997,0.772993,0.491331,0.314756,0.644727,0.154579,0.359255,0.943233,0.551317,0.139973,0.45154,0.635358,0.312953,0.308635,0.318088,0.919091,0.805885,0.453981,0.811255,0.0763183,0.400564,0.604866,0.9874,0.0127574,0.40276,0.311581,0.0172525,0.178348,0.35833,0.568209,0.46384,0.687618,0.566871,0.433822,0.56178,0.436509,0.871763,0.777037,0.344266,0.4105,0.586727,0.714661,0.00934374,0.61746,0.613995,0.27602,0.19328,0.377738,0.726367,0.226035,0.976771,0.943693,0.52438,0.524594,0.749783,0.534253,0.495352,0.993696,0.952042,0.897737,0.512721,0.451635,0.573046,0.828071,0.866446,0.885545,0.872733,0.623913,0.195824,0.434201,0.367913,0.181729,0.272814,0.340778,0.808524,0.33856,0.555066,0.459671,0.0711139,0.449366,0.984948,0.449466,0.322289,0.246937,0.780422,0.896495,0.278601,0.465073,0.780137,0.373964,0.315221,0.992531,0.680784,0.650589,0.691574,0.286104,0.475641,0.863131,0.237781,0.270681,0.639691,0.954203,0.579928,0.0932003,0.85145,0.293118,0.601492,0.0770122,0.582705,0.651799,0.0183339,0.707165,0.404615,0.222391,0.320586,0.854106,0.034182,0.61668,0.24798,0.461387,0.165578,0.0129876,0.495713,0.933897,0.887742,0.287693,0.823195,0.490676,0.96584,0.987306,0.416504,0.93286,0.475316,0.129479,0.469129,0.822354,0.401637,0.030353,0.863506,0.26014,0.753777,0.555065,0.87277,0.108087,0.973132,0.827981,0.917715,0.794948,0.252714,0.578941,0.992482,0.0265349,0.753279,0.473589,0.321978,0.132127,0.743622,0.750292,0.90043,0.00964767,0.773416,0.790826,0.667123,0.024284,0.818083,0.809722,0.536592,0.362146,0.863356,0.678423,0.381049,0.0639608,0.684675,0.626256,0.894008,0.309418,0.113051,0.774616,0.765275,0.954312,0.671493,0.2302,0.207777,0.017621,0.421851,0.273375,0.753721,0.599443,0.752961,0.23083,0.285428,0.927618,0.165476,0.364231,0.131242,0.653229,0.423617,0.191418,0.0795109,0.258886,0.125492,0.366507,0.417756,0.650198,0.00576103,0.582521,0.7421,0.112246,0.303726,0.90169,0.779311,0.159601,0.635662,0.768905,0.599472,0.292564,0.0228397,0.133086,0.486124,0.374854,0.93483,0.0137918,0.116544,0.728922,0.769309,0.197137,0.00359887,0.223536,0.915752,0.0334047,0.230348,0.223224,0.969165,0.435529,0.872432,0.880175,0.0961972,0.934384,0.0451766,0.329909,0.585653,0.477263,0.953063,0.288121,0.832935,0.693988,0.487198,0.0958444,0.672574,0.124147,0.281282,0.0123561,0.535634,0.654572,0.345624,0.751142,0.279316,0.676815,0.377925,0.127033,0.278968,0.929464,0.256887,0.461347,0.181253,0.240453,0.867867,0.308019,0.381714,0.544886,0.755933,0.492872,0.341479,0.464556,0.721862,0.487051,0.209711,0.270189,0.244768,0.911759,0.746067,0.90842,0.467918,0.59472,0.184542,0.82606,0.5502,0.923793,0.807105,0.242506,0.462616,0.467559,0.644499,0.641743,0.932607,0.599414,0.834562,0.165547,0.89338,0.41693,0.330398,0.597481,0.872606,0.644946,0.144565,0.859129,0.943735,0.322967,0.576263,0.513599,0.1126,0.874658,0.810706,0.799012,0.826621,0.485311,0.0939854,0.367053,0.605798,0.715535,0.839935,0.551764,0.508225,0.580584,0.54354,0.264931,0.512506,0.100791,0.557042,0.744214,0.256254,0.455992,0.719641,0.357675,0.10015,0.768465,0.178934,0.663089,0.6647,0.859167,0.372293,0.536119,0.885853,0.719316,0.654444,0.62076,0.554792,0.656509,0.0747545,0.411384,0.722613,0.329666,0.59489,0.305294,0.518517,0.74716,0.959182,0.514431,0.834142,0.165253,0.263097,0.380925,0.129001,0.583824,0.974766,0.755415,0.448408,0.706749,0.793831,0.935784,0.779095,0.520986,0.800794,0.352369,0.880075,0.766033,0.214522,0.0128382,0.477305,0.343277,0.0100603,0.20631,0.891426,0.391936,0.774206,0.83083,0.74177,0.0690135,0.00792301,0.113956,0.320403,0.582386,0.809772,0.516943,0.0239658,0.0781075,0.384627,0.626369,0.424574,0.370997,0.900298,0.329774,0.307096,0.376793,0.953011,0.512909,0.585355,0.376378,0.82745,0.177628,0.373022,0.147852,0.957819,0.292902,0.120002,0.739039,0.958706,0.372917,0.859193,0.926862,0.440994,0.386764,0.705885,0.561064,0.0843504,0.737639,0.922253,0.591065,0.898692,0.764567,0.574184,0.104736,0.125171,0.0957393,0.0478049,0.259971,0.301652,0.596047,0.00649017,|0.959943,0.473048,0.555832,0.655574,0.102261,0.0307738,0.471856,0.272633,0.148474,0.261179,0.489522,0.261148,0.399174,0.978529,0.192625,0.993857,0.871692,0.745048,0.798403,0.017045,0.196861,0.526089,0.222456,0.21988,0.429111,0.85315,0.761202,0.777959,0.829726,0.0388041,0.465999,0.0723293,0.227554,0.062555,0.239905,0.363547,0.944603,0.904387,0.807943,0.650182,0.185876,0.221392,0.378619,0.113835,0.429624,0.104049,0.138629,0.698726,0.959665,0.544843,0.0468287,0.0783385,0.599061,0.728359,0.532682,0.430232,0.545411,0.0663744,0.540895,0.139401,0.624563,0.557102,0.504589,0.551702,0.450889,0.521167,0.0357158,0.131851,0.511126,0.439421,0.576028,0.52307,0.219203,0.213923,0.778878,0.435875,0.947918,0.513474,0.0169818,0.646468,0.947746,0.0784785,0.798951,0.0592105,0.452079,0.552106,0.881904,0.961452,0.791937,0.569009,0.0789199,0.988826,0.839469,0.669901,0.473604,0.442085,0.811642,0.351343,0.507855,0.553101,0.473514,0.453507,0.998735,0.391299,0.432417,0.76598,0.140756,0.884362,0.795276,0.674535,0.186489,0.33344,0.91872,0.191938,0.714222,0.335102,0.676796,0.816617,0.597845,0.31615,0.0613575,0.569782,0.494683,0.931112,0.53979,0.734144,0.843568,0.742685,0.783602,0.0773147,0.261726,0.793424,0.628051,0.776723,0.957618,0.0890468,0.0185057,0.15211,0.355673,0.786347,0.573099,0.849678,0.544755,0.413814,0.169421,0.0552042,0.961134,0.87165,0.225497,0.406499,0.00479436,0.359728,0.218088,0.638369,0.238064,0.257322,0.156995,0.37068,0.94954,0.558643,0.922752,0.55324,0.0964571,0.89952,0.032822,0.279604,0.935596,0.0724315,0.018025,0.119818,0.118345,0.993303,0.062063,0.329454,0.0628231,0.45513,0.471667,0.965627,0.00956178,0.43506,0.651418,0.911275,0.160147,0.687876,0.515609,0.243466,0.0463695,0.496041,0.755968,0.527688,0.115278,0.0678046,0.288518,0.0149653,0.74232,0.899719,0.0728536,0.207809,0.825809,0.302039,0.734477,0.192513,0.0203636,0.538875,0.479063,0.710279,0.416342,0.182486,0.279872,0.669442,0.422852,0.220724,0.649049,0.516342,0.619715,0.937944,0.258697,0.216389,0.870245,0.649961,0.753904,0.74719,0.0811741,0.54429,0.63471,0.0156217,0.323525,0.0669755,0.116029,0.00208575,0.0798806,0.929531,0.936042,0.900317,0.513992,0.8019,0.353823,0.218672,0.476567,0.163106,0.338444,0.9518,0.601333,0.174412,0.307774,0.311392,0.330004,0.187021,0.620349,0.24065,0.722068,0.622014,0.346184,0.952966,0.0290185,0.624758,0.743943,0.0703063,0.787606,0.672372,0.612606,0.18833,0.176981,0.767792,0.0937253,0.0612481,0.367358,0.276344,0.917286,0.784005,0.245105,0.434875,0.884571,0.452667,0.433431,0.288712,0.3856,0.549554,0.39994,0.729546,0.417407,0.383674,0.730436,0.310548,0.85189,0.998053,0.963385,0.49666,0.654773,0.154244,0.412284,0.228415,0.246102,0.953364,0.376763,0.770339,0.293508,0.433819,0.318371,0.916587,0.902547,0.78878,0.181943,0.261306,0.553467,0.36851,0.970696,0.743115,0.19967,0.675571,0.942511,0.136824,0.282246,0.530105,0.186169,0.0195671,0.87304,0.90743,0.423055,0.424377,0.970005,0.0302932,0.511841,0.562325,0.91993,0.511148,0.984851,0.75684,0.256651,0.460725,0.724312,0.729662,0.530491,0.95224,0.808223,0.836741,0.849946,0.213342,0.95642,0.821175,0.184112,0.575802,0.446707,0.66338,0.491358,0.246358,0.866228,0.372101,0.101833,0.78296,0.993343,0.772353,0.637693,0.789621,0.370228,0.513173,0.288351,0.167841,0.546293,0.679051,0.900651,0.0482946,0.788702,0.436336,0.139908,0.599329,0.319582,0.307577,0.808925,0.350599,0.0163594,0.823134,0.529076,0.991775,0.921314,0.349474,0.501467,0.242363,0.621956,0.467127,0.225424,0.75561,0.710214,0.847331,0.199529,0.973864,0.923699,0.836042,0.263032,0.969977,0.822686,0.973684,0.990363,0.626745,0.607483,0.728605,0.791692,0.0691547,0.444894,0.31181,0.365671,0.60105,0.418967,0.600927,0.94016,0.9809,0.708721,0.167859,0.777505,0.860887,0.226605,0.538792,0.333156,0.232961,0.0620498,0.256306,0.75773,0.34579,0.372132,0.0816514,0.746128,0.979267,0.606724,0.293162,0.0560552,0.64711,0.231029,0.0507941,0.41582,0.0558674,0.436223,0.909853,0.627422,0.00220215,0.925968,0.633609,0.173988,0.840738,0.648923,0.185327,0.603766,0.225399,0.291613,0.383059,0.782035,0.0301717,0.445536,0.657895,0.139931,0.764333,0.830999,0.411854,0.602257,0.779803,0.686063,0.791501,0.740553,0.583286,0.434696,0.403954,0.24593,0.538508,0.194784,0.106882,0.520462,0.46539,0.730329,0.131569,0.278967,0.0583836,0.256471,0.246442,0.422031,0.877133,0.685068,0.864866,0.361473,0.917289,0.0279538,0.696508,0.543695,0.58379,0.496803,0.352575,0.733384,0.383387,0.858654,0.823275,0.984916,0.0289691,0.309816,0.449041,0.877974,0.76287,0.410594,0.0603356,0.402783,0.350384,0.462138,0.922207,0.407306,0.234102,0.561845,0.281004,0.869135,0.682697,0.871468,0.367471,0.824131,0.181214,0.850667,0.375975,0.565998,0.376661,0.450878,0.677105,0.431322,0.338932,0.30111,0.373399,0.789605,0.642392,0.51152,0.307667,0.688368,0.273027,0.577948,0.83864,0.782326,0.841652,0.0677882,0.765878,0.344825,0.174806,0.19925,0.803223,0.915646,0.685085,0.601683,0.406084,0.960243,0.502193,0.877537,0.460632,0.221294,0.182641,0.209789,0.617822,0.341894,0.537097,0.900386,0.621308,0.221904,0.909137,0.327699,0.846443,0.726642,0.646352,0.44318,0.664735,0.804512,0.632734,0.594174,0.827544,0.919348,0.32815,0.00641304,0.2977,0.641256,0.784153,0.0574724,0.69029,0.871278,0.0055902,0.87193,0.442057,0.0234779,0.319011,0.446913,0.106052,0.596343,0.465744,0.0608069,0.519932,0.372615,0.628415,0.330822,0.669637,0.927372,0.261831,0.0782973,0.195328,0.475327,0.753902,0.959438,0.791656,0.495814,0.939271,0.866032,0.544352,0.494855,0.987658,0.711501,0.860077,0.149681,0.357692,0.154084,0.769963,0.159867,0.0906571,0.907824,0.761825,0.161541,0.910622,0.338967,0.553976,0.546127,0.133738,0.534028,0.503701,0.543765,0.40756,0.109727,0.420033,0.345168,0.445378,0.955498,0.224826,0.342755,0.501459,0.622787,0.0521351,0.786216,0.439862,0.895959,0.275473,0.232768,0.800476,0.164044,0.300796,0.329768,0.508226,0.70818,0.734305,0.805489,0.655423,0.185739,0.930144,0.538088,0.586566,0.981619,0.126392,0.988828,0.110262,0.210955,0.513137,0.294125,0.250491,0.520898,0.577598,0.778619,0.262857,0.992117,0.292566,0.803103,0.595935,0.924513,0.545485,0.519634,0.556073,0.931061,0.510066,0.4212,0.496415,0.858715,0.241527,0.551026,0.309144,0.829024,0.230023,0.168346,0.342093,0.907633,0.0978267,0.667484,0.0873458,0.0982595,0.832772,0.935621,0.381103,0.985639,0.201893,0.464304,0.187911,0.736935,0.586486,0.924775,0.5676,0.515811,0.18237,0.187704,0.578562,0.269519,0.917904,0.0378298,0.665659,0.286945,0.581723,0.487894,0.477759,0.691614,0.920293,0.0624527,0.785486,0.881791,0.266589,0.0522696,0.401482,0.24738,0.0374404,0.584009,0.161589,0.942969,0.552573,0.963344,0.337299,0.772392,0.64401,0.999641,0.493178,0.733289,0.54691,0.862886,0.789174,0.58573,0.19053,0.954347,0.230115,0.189627,0.572123,0.871571,0.180153,0.4618,0.204217,0.539549,0.403818,0.00205332,0.708136,0.441474,0.783109,0.460334,0.432611,0.951627,0.719001,0.704824,0.945817,0.937621,0.0929943,0.0104663,0.240877,0.53656,0.861597,0.36741,0.332805,0.860159,0.727767,0.570504,0.759598,0.346716,0.587717,0.757486,0.194924,0.731278,0.540445,0.821687,0.502897,0.00280493,0.824243,0.714225,0.381516,0.090059,0.113157,0.15433,0.309926,0.236511,0.329822,0.649767,0.690428,0.777279,0.675444,0.642723,0.130273,0.0573963,0.89965,0.504836,0.892681,0.244084,0.504715,0.354197,0.89488,0.320051,0.458961,0.987615,0.785731,0.241866,0.795907,0.13354,0.490629,0.844849,0.222361,0.564607,0.456813,0.359477,0.885819,0.576695,0.384411,0.830039,0.273038,0.310962,0.890524,0.0959666,0.353885,0.481389,0.894224,0.798133,0.889578,0.853862,0.23574,0.615587,0.404801,0.119403,0.876079,0.944247,0.184259,0.0216336,0.64387,0.468652,0.787219,0.19223,0.717636,0.0521162,0.621513,0.900543,0.977107,0.573913,0.844175,0.191639,0.952374,0.944841,0.576477,0.644494,0.365185,0.462072,0.237497,0.537233,0.239655,0.683371,0.181524,0.991125,0.0930013,0.22137,0.72185,0.208818,0.284646,0.89245,0.136729,0.980603,0.866691,0.190045,0.385154,0.38801,0.430308,0.914805,0.00481898,0.403844,0.779545,0.380816,0.308666,0.620818,0.736405,0.108298,0.785996,0.723632,0.207983,0.415967,0.195814,0.466884,0.460096,0.734864,0.584171,0.996881,0.0326617,0.435449,0.678017,0.578152,0.441677,0.313624,0.0131239,0.646669,0.41686,0.62445,0.52896,0.211371,0.806425,0.707834,0.789264,0.375247,0.515701,0.73338,0.887925,0.257027,0.467662,0.557585,0.406184,0.398418,0.502064,0.781889,0.402019,0.536801,0.553893,0.983669,0.750393,0.0753123,0.345108,0.932709,0.285324,0.386041,0.566491,0.315794,0.462063,0.115529,0.680425,0.477775,0.740674,0.676702,0.365635,0.685881,0.876894,0.136593,0.386687,0.457899,0.534763,0.608616,0.179083,0.985188,0.233075,0.296741,0.854887,0.0386308,0.116353,0.756283,0.415959,0.499717,0.0254489,0.377867,0.407472,0.770388,0.35075,0.727434,0.865279,0.948725,0.849794,0.262976,0.807763,0.553355,0.467021,0.120314,0.939235,0.561741,0.542553,0.0253851,0.344647,0.76324,0.466799,0.71601,0.289086,0.611106,0.218375,0.987551,0.228206,0.77199,0.00619608,0.255242,0.764552,0.36118,0.0228907,0.0847389,0.804444,0.505025,0.142727,0.00860447,0.222528,0.30447,0.928157,0.520433,0.61933,0.859951,0.823961,0.214199,0.794881,|0.0896173,0.244904,0.319832,0.0411514,0.419883,0.178732,0.76943,0.119656,0.0902714,0.408899,0.881473,0.983527,0.176664,0.652114,0.952485,0.124169,0.0759406,0.00992495,0.761931,0.634508,0.619637,0.206432,0.876231,0.893607,0.878005,0.344245,0.461767,0.541067,0.13418,0.492049,0.914379,0.474107,0.951131,0.311328,0.746815,0.0884584,0.0369253,0.458644,0.625547,0.837468,0.755001,0.946489,0.121843,0.232457,0.5815,0.635521,0.237102,0.141757,0.689602,0.674569,0.840881,0.37235,0.628036,0.374707,0.669477,0.313526,0.0205252,0.409749,0.95359,0.724559,0.82509,0.238621,0.492903,0.0303874,0.879668,0.294429,0.709175,0.807478,0.654696,0.851415,0.770151,0.0213667,0.604503,0.266871,0.513052,0.507287,0.213326,0.0332663,0.181967,0.526765,0.0197973,0.556607,0.674088,0.0867985,0.0178791,0.779448,0.601082,0.20469,0.721357,0.259622,0.536824,0.011699,0.88401,0.39382,0.0538937,0.883906,0.826967,0.783897,0.044826,0.492127,0.973761,0.854672,0.841812,0.655107,0.197407,0.966402,0.407172,0.390735,0.782838,0.022791,0.787644,0.544601,0.907,0.488155,0.672459,0.817891,0.632714,0.579694,0.404329,0.059186,0.94125,0.99676,0.915149,0.466237,0.0222151,0.308004,0.765803,0.771834,0.270449,0.841089,0.816253,0.28973,0.58839,0.541807,0.677456,0.57095,0.370452,0.000604033,0.011201,0.89366,0.569548,0.801113,0.704371,0.581685,0.7757,0.914415,0.461459,0.244099,0.586486,0.670809,0.826688,0.743624,0.839269,0.965146,0.644236,0.0585173,0.173665,0.2607,0.300892,0.924653,0.760126,0.823831,0.764705,0.331816,0.861881,0.191665,0.533171,0.347328,0.385725,0.585867,0.0279378,0.833504,0.6997,1.07884e-05,0.317124,0.95979,0.956452,0.260825,0.287787,0.596333,0.688456,0.30863,0.372816,0.539568,0.843889,0.708416,0.867018,0.747522,0.627709,0.127499,0.996526,0.0162401,0.541042,0.611124,0.545764,0.180927,0.0134708,0.157401,0.445503,0.598706,0.94605,0.567386,0.486125,0.693536,0.0693947,0.602056,0.905267,0.756955,0.209697,0.979524,0.284333,0.145746,0.986635,0.0592495,0.417142,0.972675,0.80183,0.921977,0.323814,0.937255,0.884165,0.209288,0.959016,0.763542,0.593033,0.567427,0.0699371,0.428622,0.404937,0.779127,0.224663,0.776333,0.701667,0.926557,0.116076,0.947681,0.253488,0.133402,0.997134,0.157998,0.30218,0.541832,0.319292,0.674565,0.361657,0.828254,0.215191,0.0145346,0.828679,0.398896,0.938535,0.906047,0.523041,0.468426,0.718152,0.618616,0.993098,0.692151,0.71301,0.787671,0.205638,0.49368,0.92602,0.819652,0.841667,0.56539,0.378985,0.349698,0.760982,0.899913,0.0804982,0.63594,0.423104,0.36577,0.818587,0.93022,0.384651,0.827852,0.529197,0.320724,0.445399,0.951511,0.485385,0.0287409,0.604118,0.307438,0.428582,0.941526,0.696253,0.748864,0.295738,0.255776,0.824758,0.772094,0.964411,0.708271,0.407344,0.160077,0.15949,0.214271,0.396199,0.220852,0.239533,0.915572,0.0290047,0.794176,0.359082,0.58262,0.00964838,0.620927,0.684597,0.754728,0.377618,0.533769,0.980294,0.872509,0.119786,0.0756741,0.74294,0.806303,0.692494,0.00567257,0.400186,0.12189,0.40751,0.561234,0.647047,0.461773,0.910029,0.486865,0.511641,0.831975,0.266727,0.0228283,0.180137,0.486771,0.786756,0.723108,0.0801987,0.434218,0.528776,0.511915,0.892222,0.982134,0.922557,0.547834,0.589611,0.635328,0.252559,0.54549,0.748022,0.0511112,0.780654,0.900174,0.162078,0.309822,0.967923,0.765551,0.411071,0.95324,0.489737,0.99456,0.612017,0.194959,0.47702,0.748456,0.736936,0.359687,0.197807,0.785783,0.694445,0.503085,0.166004,0.807966,0.259556,0.440624,0.962779,0.0273296,0.129087,0.872974,0.723015,0.162916,0.505536,0.380793,0.528534,0.0518315,0.415066,0.393891,0.623547,0.142361,0.435487,0.080385,0.711992,0.432844,0.0563965,0.13482,0.129932,0.128032,0.623744,0.0808156,0.339709,0.89199,0.199886,0.776725,0.24701,0.750971,0.722638,0.608423,0.587716,0.885297,0.514956,0.778481,0.0725499,0.250463,0.760812,0.451726,0.431885,0.445656,0.129002,0.848573,0.885593,0.948754,0.879021,0.461822,0.700065,0.101903,0.228918,0.850666,0.00258803,0.619153,0.75371,0.278176,0.0407352,0.740889,0.488005,0.97809,0.443591,0.978321,0.0379095,0.14581,0.623033,0.970804,0.215834,0.0168196,0.0101271,0.109946,0.162468,0.0335552,0.80587,0.929638,0.784059,0.792313,0.854925,0.991298,0.344189,0.16732,0.0833681,0.540862,0.360143,0.406907,0.0170756,0.110299,0.643595,0.808677,0.818854,0.237502,0.308962,0.792547,0.232508,0.810784,0.860771,0.114217,0.245274,0.0452115,0.525508,0.80938,0.634261,0.44955,0.578174,0.791389,0.512222,0.120268,0.0510908,0.56573,0.242926,0.834679,0.557872,0.00455719,0.323439,0.328639,0.656757,0.0793496,0.736007,0.173204,0.978126,0.724281,0.645531,0.812468,0.0293453,0.921061,0.362559,0.00956059,0.864175,0.194102,0.491677,0.0792199,0.391175,0.33891,0.802668,0.426332,0.806514,0.56517,0.691749,0.71236,0.798088,0.466475,0.625708,0.673038,0.136388,0.511173,0.556815,0.565707,0.105966,0.171544,0.119509,0.0353471,0.630552,0.480771,0.622883,0.740451,0.878991,0.122744,0.225511,0.782889,0.0980428,0.637784,0.559567,0.912663,0.857043,0.687243,0.137389,0.0637583,0.266622,0.390067,0.830737,0.229499,0.591871,0.752585,0.0676883,0.599581,0.585167,0.438591,0.036445,0.842458,0.616047,0.710236,0.290748,0.423133,0.480855,0.380196,0.0313988,0.602123,0.492837,0.554225,0.650112,0.110828,0.484828,0.79287,0.959855,0.938131,0.881037,0.914611,0.64929,0.711734,0.189421,0.211588,0.254007,0.181439,0.473606,0.487017,0.111251,0.87882,0.154808,0.0617732,0.885794,0.111599,0.999393,0.775187,0.988356,0.600862,0.581404,0.799876,0.079973,0.507415,0.698246,0.152369,0.85427,0.752543,0.63772,0.952878,0.214109,0.606059,0.206822,0.317393,0.832781,0.411344,0.376619,0.862605,0.322908,0.0439937,0.24292,0.819992,0.946799,0.143152,0.460329,0.681153,0.8512,0.868319,0.343934,0.405244,0.837348,0.715655,0.760322,0.505341,0.383429,0.226928,0.721009,0.438395,0.514272,0.897292,0.154251,0.82431,0.138929,0.647459,0.283518,0.16485,0.930233,0.722629,0.0861449,0.608917,0.385848,0.135139,0.56772,0.909401,0.653031,0.777964,0.256128,0.272565,0.390082,0.498991,0.221364,0.755532,0.958805,0.300527,0.0415996,0.488432,0.20595,0.551608,0.375282,0.409836,0.613365,0.527785,0.82925,0.104021,0.0372521,0.468352,0.885095,0.890568,0.980283,0.0201065,0.0378294,0.00952256,0.43011,0.23935,0.898663,0.643664,0.534222,0.956988,0.850125,0.856446,0.678266,0.676807,0.468772,0.804016,0.0296564,0.693599,0.344761,0.583509,0.254762,0.319424,0.248254,0.244478,0.678177,0.89476,0.592396,0.462181,0.874048,0.124602,0.383422,0.273411,0.950621,0.316165,0.87343,0.714738,0.585401,0.918136,0.287803,0.542781,0.187267,0.597406,0.594388,0.983599,0.280085,0.330135,0.583154,0.966431,0.124831,0.229043,0.407191,0.00795627,0.918566,0.0998393,0.0698004,0.379134,0.151495,0.0731815,0.979778,0.874195,0.670463,0.556189,0.338015,0.0477895,0.956944,0.977755,0.854804,0.492362,0.931849,0.60416,0.398395,0.971927,0.824362,0.905603,0.527233,0.148313,0.253909,0.679678,0.594715,0.166458,0.563458,0.596207,0.935454,0.385892,0.846934,0.330918,0.714771,0.272074,0.231023,0.0691963,0.246811,0.76925,0.746382,0.211875,0.659819,0.818017,0.00448072,0.499222,0.340094,0.452317,0.00345486,0.245729,0.345276,0.848568,0.082249,0.539887,0.547564,0.324963,0.3087,0.643269,0.124938,0.704813,0.298648,0.175572,0.0396727,0.587612,0.792094,0.681069,0.525118,0.966192,0.775641,0.512324,0.839518,0.0931316,0.875609,0.59839,0.0859157,0.11841,0.833882,0.397195,0.387623,0.261881,0.945349,0.777674,0.932536,0.94322,0.767406,0.748582,0.976159,0.862267,0.913207,0.140118,0.677249,0.0977601,0.178149,0.00666976,0.875725,0.329129,0.921014,0.909934,0.491979,0.805594,0.163563,0.713258,0.576349,0.208684,0.150299,0.663038,0.107742,0.442385,0.210053,0.667863,0.226961,0.246827,0.95845,0.819377,0.661043,0.0693935,0.0292185,0.165364,0.524211,0.155876,0.426955,0.657395,0.141188,0.806055,0.762763,0.577451,0.714445,0.758773,0.630274,0.875515,0.520564,0.0838092,0.622265,0.337274,0.287133,0.520623,0.468718,0.381512,0.227344,0.816018,0.605491,0.884848,0.842856,0.383633,0.0855225,0.487309,0.234972,0.366545,0.295544,0.683455,0.651812,0.652923,0.130598,0.780813,0.71107,0.418815,0.36788,0.923269,0.436296,0.51958,0.22991,0.00558031,0.72328,0.586665,0.974858,0.19023,0.779608,0.26238,0.451809,0.255374,0.0123872,0.679983,0.793692,0.826223,0.785333,0.0767556,0.103664,0.984436,0.241135,0.885774,0.531927,0.770376,0.311866,0.957619,0.110178,0.102264,0.269236,0.174226,0.657451,0.169408,0.892311,0.680436,0.94333,0.550033,0.671274,0.92745,0.469107,0.454269,0.595247,0.940231,0.93251,0.62773,0.888567,0.478313,0.73788,0.441774,0.625057,0.599051,0.236023,0.736822,0.963855,0.159174,0.748374,0.20284,0.276375,0.537088,0.726216,0.834813,0.35757,0.95141,0.818893,0.691476,0.377306,0.476306,0.999387,0.481244,0.358704,0.818585,0.922745,0.525384,0.582153,0.817179,0.476353,0.514079,0.731731,0.954399,0.940745,0.0954825,0.364341,0.397386,0.444557,0.590876,0.150423,0.963552,0.350371,0.153732,0.960773,0.208027,0.918659,0.682726,0.319356,0.62056,0.694068,0.730303,0.525754,0.48422,0.291599,0.341269,0.76502,0.137709,0.844328,0.531153,0.292744,0.555531,0.274473,0.675725,0.65215,0.00078541,0.174975,0.207043,0.899608,0.662656,0.00939602,0.967524,0.408019,0.828605,0.635796,0.562926,0.807109,0.564139,|0.833957,0.470876,0.602476,0.559168,0.394417,0.562982,0.908212,0.934906,0.426154,0.150903,0.326075,0.5453,0.356931,0.144698,0.425663,0.826303,0.0340924,0.702035,0.521446,0.0885413,0.855197,0.0509185,0.646926,0.0201932,0.494258,0.564159,0.356096,0.4091,0.0358464,0.142054,0.409106,0.33417,0.918281,0.875483,0.902304,0.453643,0.679868,0.807299,0.421014,0.251304,0.963324,0.1548,0.78866,0.923395,0.0102212,0.816708,0.667004,0.217276,0.0240434,0.585626,0.797487,0.0123364,0.410802,0.248379,0.741396,0.458439,0.684844,0.330306,0.647451,0.798077,0.93126,0.35995,0.23745,0.886699,0.691491,0.918969,0.405599,0.946409,0.983406,0.629367,0.860997,0.347479,0.388831,0.417959,0.518123,0.545553,0.409745,0.607459,0.534335,0.55514,0.948055,0.217864,0.515449,0.327987,0.721197,0.915087,0.482821,0.565996,0.441413,0.331191,0.653516,0.812061,0.0349242,0.250658,0.417655,0.464024,0.72909,0.717171,0.411308,0.282765,0.523853,0.56816,0.569512,0.540227,0.541232,0.629542,0.300034,0.0951601,0.0886562,0.473108,0.713211,0.455357,0.0199985,0.317185,0.813914,0.676714,0.5929,0.193747,0.825856,0.973524,0.127086,0.319944,0.749059,0.0309278,0.987057,0.479128,0.625566,0.181419,0.391465,0.27304,0.491724,0.802876,0.880673,0.385808,0.322768,0.335766,0.997607,0.388369,0.171472,0.460584,0.111846,0.345826,0.187597,0.422106,0.320063,0.0204488,0.702469,0.60383,0.172229,0.991537,0.414036,0.968507,0.0704179,0.124067,0.851702,0.769525,0.645659,0.014815,0.426625,0.593479,0.602069,0.43514,0.456611,0.225471,0.0240376,0.340525,0.399032,0.0330803,0.39964,0.104051,0.790649,0.277658,0.476273,0.251485,0.83836,0.907523,0.0460406,0.794663,0.309591,0.102392,0.431805,0.438329,0.626993,0.607004,0.652414,0.411481,0.215687,0.322424,0.965456,0.707601,0.415894,0.511578,0.199079,0.0934526,0.448825,0.132376,0.574244,0.391691,0.428706,0.375202,0.931686,0.452168,0.564652,0.808056,0.854507,0.0989506,0.617825,0.547882,0.0734599,0.0375385,0.699621,0.790403,0.235894,0.835292,0.995053,0.728991,0.537486,0.273012,0.10652,0.940375,0.0508205,0.799671,0.345216,0.0626094,0.211081,0.358327,0.557662,0.972034,0.900606,0.299822,0.780974,0.400515,0.540906,0.646624,0.656165,0.165793,0.868979,0.553991,0.144218,0.539003,0.0282211,0.635371,0.915596,0.826118,0.651182,0.858929,0.278231,0.588127,0.11434,0.743577,0.0352817,0.536803,0.457365,0.916336,0.10746,0.15052,0.974308,0.461717,0.269467,0.744084,0.601692,0.449161,0.400065,0.232289,0.329309,0.849978,0.073878,0.171755,0.550248,0.790586,0.36716,0.471198,0.653353,0.756145,0.283156,0.791124,0.833364,0.99099,0.638195,0.496769,0.720562,0.330867,0.0106617,0.592801,0.462385,0.316379,0.901593,0.331748,0.71283,0.459689,0.251444,0.868683,0.539824,0.559071,0.0332341,0.226359,0.335295,0.476799,0.554751,0.845531,0.575568,0.224247,0.312794,0.43651,0.604445,0.238425,0.610095,0.354716,0.316963,0.240561,0.13592,0.615894,0.281767,0.0323996,0.661004,0.16771,0.792674,0.427998,0.99172,0.322388,0.91475,0.417053,0.980068,0.17391,0.648997,0.14324,0.604294,0.0649868,0.375658,0.686063,0.312184,0.0703601,0.397481,0.999042,0.309688,0.53528,0.552975,0.116325,0.838891,0.718255,0.547809,0.538468,0.644783,0.421916,0.843396,0.455283,0.879398,0.102392,0.677268,0.940708,0.991756,0.570402,0.317424,0.166752,0.113082,0.613064,0.782282,0.687351,0.0623863,0.442869,0.525539,0.280588,0.4837,0.906583,0.421723,0.861479,0.545521,0.23136,0.849846,0.638047,0.484897,0.427703,0.939716,0.546557,0.172084,0.350797,0.0138443,0.830088,0.264831,0.177216,0.945509,0.304987,0.91025,0.810377,0.824505,0.711029,0.461942,0.48533,0.907957,0.138193,0.525936,0.944093,0.288794,0.698457,0.242583,0.71294,0.769187,0.818494,0.00628281,0.503462,0.228122,0.201134,0.431358,0.524199,0.791375,0.152345,0.445437,0.277224,0.135128,0.8575,0.256575,0.19335,0.985105,0.0227432,0.367267,0.106725,0.10631,0.226569,0.741188,0.326406,0.841933,0.821607,0.969236,0.302688,0.126959,0.572109,0.386037,0.800296,0.730845,0.682364,0.352444,0.328044,0.601121,0.2116,0.653072,0.940348,0.141645,0.214863,0.139904,0.104205,0.583583,0.335545,0.986047,0.391286,0.0590879,0.999333,0.552323,0.597726,0.592142,0.340117,0.46917,0.250085,0.748794,0.060145,0.256137,0.48608,0.972393,0.362229,0.618368,0.199843,0.732496,0.521726,0.428656,0.168558,0.990222,0.293159,0.161525,0.126738,0.993929,0.465235,0.0889137,0.357653,0.1239,0.37146,0.171327,0.145669,0.328772,0.320404,0.219674,0.247048,0.948985,0.194496,0.0424982,0.746117,0.236498,0.717418,0.751073,0.740192,0.752908,0.104005,0.336027,0.720561,0.314251,0.336532,0.355116,0.616391,0.0667179,0.699797,0.0274159,0.873426,0.218233,0.946742,0.265541,0.284526,0.657536,0.659321,0.305407,0.1867,0.164481,0.697973,0.963958,0.374185,0.842442,0.0246055,0.933098,0.535891,0.760804,0.308354,0.518995,0.168229,0.320006,0.685678,0.0551605,0.181939,0.064165,0.00954163,0.0532376,0.924474,0.289994,0.944184,0.726931,0.733744,0.655466,0.874432,0.874454,0.458413,0.58574,0.93768,0.283656,0.199707,0.0661539,0.382473,0.721811,0.494387,0.324494,0.696489,0.197079,0.935832,0.338655,0.895098,0.0676811,0.981928,0.240198,0.141228,0.478518,0.0735785,0.204065,0.00785339,0.246592,0.433206,0.0877894,0.46357,0.748554,0.290627,0.385302,0.957595,0.31371,0.556618,0.315433,0.219913,0.868342,0.792815,0.933457,0.460424,0.786387,0.0294657,0.053454,0.753647,0.261425,0.876079,0.540324,0.487731,0.510798,0.766318,0.809285,0.183002,0.959345,0.92222,0.14247,0.527164,0.222548,0.634252,0.454832,0.229592,0.301888,0.320395,0.778323,0.35676,0.545203,0.244745,0.0452856,0.701645,0.348297,0.35956,0.332832,0.636138,0.924674,0.49453,0.212231,0.522107,0.886962,0.810293,0.511997,0.365876,0.942696,0.217913,0.624405,0.733562,0.460247,0.305271,0.27915,0.706556,0.701079,0.56007,0.199299,0.752568,0.498091,0.886338,0.917205,0.963395,0.107314,0.587321,0.814086,0.663751,0.177933,0.392738,0.727494,0.937821,0.507235,0.339383,0.553899,0.662556,0.00843245,0.167818,0.211604,0.823127,0.723487,0.480696,0.479208,0.498195,0.666605,0.500694,0.263046,0.173331,0.491093,0.443033,0.0959764,0.407034,0.834939,0.460111,0.39575,0.931601,0.795049,0.799234,0.61976,0.788168,0.941976,0.883297,0.57545,0.0215065,0.17571,0.0367179,0.847507,0.215851,0.825751,0.0480453,0.31657,0.631028,0.648062,0.169304,0.892775,0.551008,0.890999,0.242912,0.611691,0.813496,0.258825,0.599388,0.984413,0.629333,0.227207,0.54488,0.437765,0.653355,0.639304,0.128772,0.192328,0.267517,0.0568206,0.603036,0.216913,0.153412,0.589383,0.398583,0.716234,0.839218,0.93389,0.976117,0.458418,0.568078,0.191472,0.613874,0.474756,0.26537,0.839355,0.286451,0.811157,0.61361,0.826455,0.481151,0.245615,0.364806,0.728218,0.280685,0.0509972,0.620986,0.285247,0.287242,0.641126,0.236153,0.750479,0.637485,0.701063,0.789259,0.283515,0.258664,0.707289,0.736225,0.808456,0.819919,0.83837,0.463902,0.448812,0.349165,0.924844,0.566486,0.769557,0.104946,0.568714,0.0582281,0.419814,0.965302,0.0920244,0.052237,0.551441,0.442415,0.668853,0.909108,0.0244987,0.503832,0.745632,0.515153,0.936015,0.995928,0.987532,0.906454,0.0986952,0.534023,0.144269,0.799925,0.643463,0.545691,0.888034,0.977404,0.239511,0.370385,0.29403,0.488153,0.467702,0.133638,0.750094,0.579068,0.777155,0.232564,0.851674,0.910737,0.667409,0.188001,0.500739,0.282537,0.436181,0.367109,0.96768,0.489945,0.781074,0.726679,0.262547,0.651391,0.524641,0.0957294,0.208789,0.116275,0.265773,0.956276,0.893266,0.0676211,0.324947,0.901734,0.280577,0.218859,0.762332,0.556272,0.838794,0.124095,0.332413,0.876189,0.357679,0.611072,0.747525,0.533095,0.533446,0.811025,0.981434,0.366414,0.695375,0.933005,0.00063926,0.822085,0.179645,0.921325,0.403339,0.891105,0.549607,0.0733622,0.484813,0.146852,0.234585,0.282062,0.683495,0.320614,0.407155,0.915191,0.121083,0.184719,0.153325,0.747391,0.0336428,0.986054,0.602286,0.0818002,0.0301983,0.494237,0.211931,0.995407,0.468535,0.191754,0.920546,0.699308,0.254229,0.658092,0.209168,0.621996,0.758468,0.742928,0.200724,0.0318303,0.472118,0.32335,0.251534,0.334622,0.438268,0.753564,0.516593,0.766873,0.52662,0.607901,0.53863,0.0590484,0.645251,0.469117,0.108653,0.983908,0.69448,0.716763,0.348878,0.825025,0.30908,0.483222,0.550288,0.704138,0.526233,0.53854,0.474603,0.0944471,0.610952,0.892132,0.684746,0.591807,0.827413,0.106702,0.405061,0.119828,0.699751,0.383403,0.755875,0.365195,0.139716,0.9889,0.840585,0.871473,0.214719,0.718662,0.724135,0.594037,0.0747148,0.0670986,0.571824,0.368293,0.437034,0.521877,0.704871,0.0540661,0.593691,0.154257,0.111021,0.55034,0.00476873,0.808848,0.292188,0.872054,0.677941,0.321627,0.782878,0.236069,0.866835,0.596106,0.740819,0.386795,0.995217,0.725367,0.808087,0.459475,0.274798,0.320304,0.574539,0.236807,0.590059,0.985082,0.843001,0.390179,0.927713,0.621233,0.926974,0.270855,0.191783,0.779069,0.494093,0.151554,0.394945,0.10236,0.1266,0.797182,0.529076,0.798176,0.988467,0.0130929,0.664365,0.198575,0.331634,0.95663,0.396771,0.207926,0.0304746,0.85918,0.214708,0.428213,0.882696,0.447662,0.195678,0.647379,0.000532508,0.828822,0.768812,0.250488,0.521726,0.669264,0.837922,0.223913,0.747454,0.803209,0.418373,0.542427,0.342687,0.846264,0.390026,0.249925,0.178092,0.544666,0.430551,0.993027,|0.541149,0.391319,0.2121,0.827664,0.434109,0.164876,0.0663618,0.333855,0.985222,0.05626,0.154254,0.699806,0.346024,0.870295,0.659271,0.249522,0.0313268,0.269585,0.127632,0.983852,0.754295,0.638989,0.171264,0.812115,0.687477,0.766395,0.0127413,0.307756,0.798656,0.408801,0.0695223,0.113963,0.857975,0.144283,0.928039,0.0077613,0.232468,0.0394307,0.980632,0.527971,0.0159343,0.495841,0.155942,0.42488,0.00219619,0.279753,0.581476,0.910489,0.917245,0.0538557,0.0845073,0.562233,0.755373,0.778674,0.139425,0.968279,0.433065,0.17183,0.00811177,0.304847,0.587578,0.72952,0.828784,0.19679,0.451973,0.0304132,0.209735,0.819341,0.314149,0.920405,0.912648,0.0479777,0.221049,0.946555,0.18963,0.525095,0.161098,0.213684,0.628545,0.165685,0.677372,0.326333,0.328519,0.489354,0.572064,0.558897,0.49601,0.815396,0.8748,0.698342,0.506738,0.262948,0.383666,0.934778,0.445474,0.786617,0.505126,0.79463,0.321191,0.881947,0.807386,0.853097,0.43231,0.086061,0.543395,0.139871,0.765294,0.511395,0.554406,0.402058,0.94095,0.661521,0.575078,0.924445,0.463289,0.279573,0.835643,0.651628,0.10718,0.355007,0.373855,0.62638,0.433181,0.169734,0.722686,0.531971,0.965703,0.874412,0.844474,0.834218,0.86903,0.749581,0.236515,0.556912,0.179479,0.577899,0.913729,0.540496,0.0687699,0.57892,0.0566493,0.486477,0.204833,0.402564,0.35121,0.812172,0.174264,0.246454,0.840461,0.401278,0.057797,0.794368,0.976941,0.4703,0.590455,0.0244013,0.543415,0.762784,0.779047,0.613684,0.309529,0.470878,0.0623991,0.0230742,0.00024128,0.841341,0.19814,0.741207,0.806113,0.297853,0.312664,0.635116,0.609711,0.838895,0.707916,0.0690767,0.766727,0.538375,0.574598,0.96492,0.973251,0.827425,0.0355571,0.257577,0.987013,0.0703793,0.29513,0.799298,0.908303,0.191531,0.723466,0.970842,0.424632,0.0258532,0.736501,0.0183232,0.330407,0.859258,0.390258,0.651086,0.815679,0.915415,0.211322,0.514136,0.900534,0.772805,0.553643,0.0551403,0.448307,0.0846381,0.755844,0.931088,0.000152528,0.267165,0.568089,0.362544,0.43522,0.641507,0.698888,0.431357,0.258133,0.412716,0.29246,0.685257,0.865486,0.121543,0.887798,0.895995,0.850833,0.0448996,0.791091,0.359393,0.739431,0.226778,0.695136,0.573601,0.260701,0.266201,0.416152,0.869758,0.981447,0.877764,0.330291,0.610729,0.0642481,0.229577,0.759628,0.736052,0.96352,0.326828,0.941369,0.9323,0.0310231,0.790389,0.813285,0.0403222,0.178647,0.549276,0.0278102,0.755214,0.0649239,0.29423,0.0972181,0.952413,0.156591,0.148467,0.936173,0.00866938,0.814941,0.2383,0.277559,0.0887669,0.592183,0.642353,0.7119,0.264099,0.446709,0.356618,0.622877,0.0134702,0.33182,0.0248899,0.735729,0.342919,0.873331,0.908174,0.252697,0.8199,0.556277,0.447767,0.497595,0.834765,0.946469,0.511423,0.139614,0.114688,0.392764,0.280721,0.807229,0.630505,0.891944,0.823514,0.750658,0.521118,0.962143,0.236649,0.409068,0.495834,0.501601,0.441417,0.320878,0.958284,0.45282,0.269796,0.425347,0.394708,0.313584,0.355883,0.616131,0.425127,0.65687,0.447507,0.773666,0.649459,0.117698,0.483112,0.952754,0.841974,0.520637,0.0164127,0.75262,0.0921116,0.571745,0.141093,0.323893,0.131603,0.351971,0.324177,0.577208,0.493329,0.564766,0.258293,0.0648491,0.973707,0.535272,0.496502,0.498582,0.190933,0.970251,0.335751,0.307726,0.621901,0.363583,0.865195,0.886204,0.497735,0.427444,0.906133,0.833541,0.746141,0.470471,0.892753,0.401128,0.666841,0.49443,0.447114,0.897318,0.987321,0.137384,0.281644,0.355734,0.444297,0.0368478,0.254198,0.52741,0.744573,0.0363914,0.627374,0.152524,0.342453,0.124783,0.630931,0.480865,0.280608,0.98111,0.584036,0.778125,0.518873,0.601425,0.803875,0.94135,0.634627,0.163139,0.252541,0.895846,0.816589,0.606436,0.554917,0.239063,0.0496776,0.543793,0.188739,0.944034,0.680088,0.598365,0.391847,0.300164,0.0471978,0.389866,0.684487,0.943921,0.762328,0.984753,0.365565,0.0637603,0.440693,0.684895,0.808348,0.281868,0.889375,0.784102,0.709271,0.620497,0.583109,0.610647,0.979346,0.181997,0.0375584,0.637409,0.178913,0.0299747,0.446316,0.575864,0.336406,0.0425108,0.0932148,0.884757,0.293881,0.33971,0.269229,0.895589,0.970172,0.0669529,0.907013,0.1665,0.909588,0.327215,0.817903,0.821667,0.764698,0.454094,0.0261678,0.086746,0.309186,0.843403,0.979622,0.263515,0.443739,0.469725,0.310969,0.411313,0.911599,0.573696,0.616314,0.104119,0.808077,0.145972,0.249705,0.248377,0.927726,0.441267,0.435394,0.268087,0.473666,0.537107,0.105716,0.978164,0.356999,0.425933,0.87668,0.650895,0.329455,0.343679,0.335624,0.256037,0.126219,0.938259,0.0886461,0.507256,0.671187,0.86211,0.3372,0.00629365,0.497996,0.68511,0.902754,0.212826,0.0542843,0.502763,0.324964,0.0659411,0.718311,0.893713,0.430907,0.9187,0.865624,0.665056,0.474845,0.722863,0.931413,0.66062,0.507173,0.829866,0.79969,0.0120327,0.231342,0.92812,0.926806,0.519726,0.528824,0.0196065,0.66626,0.241846,0.970798,0.231874,0.0357433,0.411508,0.270964,0.483991,0.604522,0.0414492,0.766501,0.712648,0.415505,0.751424,0.627044,0.847375,0.64846,0.29968,0.214786,0.429468,0.617944,0.0626854,0.260219,0.706042,0.338806,0.157026,0.254659,0.827751,0.946424,0.407924,0.76632,0.287786,0.57754,0.0714238,0.757323,0.819885,0.478705,0.550138,0.372719,0.613587,0.433068,0.721079,0.202121,0.903241,0.233175,0.762322,0.914326,0.700325,0.18263,0.313662,0.534769,0.796206,0.674774,0.786512,0.941006,0.661847,0.782986,0.177226,0.851775,0.512161,0.240516,0.410169,0.281516,0.565623,0.877383,0.125013,0.695951,0.622522,0.818521,0.588861,0.804856,0.393385,0.333049,0.81072,0.953756,0.581434,0.388104,0.936418,0.583655,0.123292,0.546982,0.276623,0.462381,0.206092,0.452523,0.755835,0.716389,0.641208,0.518569,0.636036,0.24021,0.591694,0.586668,0.634747,0.302676,0.811746,0.441289,0.41451,0.224457,0.90963,0.269008,0.533343,0.546225,0.0015685,0.0412237,0.935616,0.753351,0.126448,0.248778,0.0831921,0.575206,0.445995,0.799684,0.640567,0.734963,0.166264,0.993444,0.886757,0.134294,0.744718,0.722443,0.271048,0.138089,0.00524342,0.859973,0.352245,0.174875,0.0323296,0.609359,0.286771,0.584789,0.424972,0.351591,0.0231913,0.677794,0.271119,0.155852,0.461295,0.481358,0.112308,0.0378105,0.470231,0.505154,0.409218,0.374472,0.0826209,0.0485916,0.366816,0.0288283,0.41432,0.563039,0.0270884,0.567145,0.224968,0.692207,0.850719,0.988485,0.588618,0.236646,0.53182,0.431205,0.967852,0.91797,0.0269263,0.0768138,0.545066,0.429327,0.447296,0.472174,0.0771077,0.392677,0.0764459,0.168087,0.990219,0.215497,0.142811,0.273382,0.624496,0.180902,0.613887,0.886621,0.158118,0.478331,0.340649,0.255368,0.98252,0.415762,0.555871,0.842559,0.288418,0.588819,0.807768,0.533014,0.29257,0.244653,0.373665,0.11275,0.283458,0.448321,0.52911,0.871855,0.609503,0.280203,0.203101,0.987359,0.409661,0.50204,0.558331,0.211282,0.117763,0.171,0.966765,0.839863,0.104876,0.56881,0.640948,0.0274101,0.706006,0.534546,0.493555,0.598428,0.135183,0.237988,0.515578,0.103143,0.515464,0.451129,0.943616,0.440873,0.966462,0.201173,0.23291,0.149337,0.042954,0.192818,0.241866,0.500656,0.216331,0.150404,0.721638,0.0347589,0.980752,0.07942,0.586099,0.987193,0.970569,0.307413,0.851431,0.813415,0.919656,0.261894,0.770343,0.896107,0.464687,0.42512,0.458726,0.115404,0.00232738,0.617589,0.886052,0.574552,0.479589,0.995332,0.963987,0.0812364,0.828907,0.638361,0.764356,0.0500929,0.081369,0.427225,0.834248,0.42261,0.796583,0.543833,0.887115,0.564745,0.931925,0.809544,0.511877,0.39264,0.726482,0.76784,0.562959,0.980263,0.289216,0.251846,0.72743,0.280387,0.376024,0.270332,0.0437923,0.447159,0.455687,0.274366,0.848084,0.248262,0.456659,0.70785,0.60685,0.51514,0.816535,0.216561,0.0511308,0.240471,0.111373,0.0970433,0.853103,0.615294,0.00863963,0.918949,0.80506,0.303474,0.940356,0.285535,0.695061,0.625748,0.751661,0.775083,0.516661,0.387238,0.710256,0.933797,0.756968,0.42894,0.483659,0.836253,0.488803,0.192017,0.912677,0.679482,0.121208,0.192107,0.258239,0.215491,0.286426,0.465642,0.679816,0.0350309,0.00833052,0.263999,0.816552,0.0899687,0.155161,0.0543897,0.52912,0.617568,0.650683,0.279716,0.840656,0.849573,0.964007,0.816896,0.520048,0.774258,0.329458,0.0986919,0.662839,0.425901,0.972826,0.624113,0.42731,0.0293772,0.239248,0.0989082,0.962581,0.498788,0.839771,0.304546,0.000186682,0.337753,0.39157,0.810834,0.582324,0.193642,0.81464,0.882739,0.278816,0.985079,0.986423,0.506301,0.153822,0.897387,0.928612,0.182475,0.379969,0.486225,0.821868,0.237105,0.295645,0.319055,0.913975,0.137053,0.949225,0.575246,0.738593,0.909647,0.24659,0.319491,0.988339,0.784846,0.316964,0.658526,0.387994,0.811183,0.170485,0.339408,0.90571,0.0966544,0.0166152,0.555045,0.522369,0.0909523,0.721445,0.414153,0.422933,0.613334,0.609552,0.658105,0.764671,0.07597,0.539461,0.39163,0.0579634,0.27511,0.426392,0.195657,0.717189,0.418815,0.448581,0.640671,0.924492,0.167337,0.50823,0.560226,0.690241,0.251435,0.325167,0.582691,0.585102,0.168174,0.0453355,0.13907,0.907744,0.0653022,0.599047,0.088522,0.691458,0.737456,0.760089,0.381352,0.0294492,0.412789,0.0611981,0.624295,0.206087,0.521682,0.926077,0.618744,0.242168,0.754158,0.645795,0.478704,0.175274,0.0735376,0.744528,0.589308,0.586452,0.81064,0.537238,0.921496,0.873891,0.839267,0.632407,0.226779,0.299917,0.188415,0.473792,0.280141,|0.0263486,0.149731,0.152709,0.0680988,0.677111,0.182496,0.500735,0.0155283,0.60263,0.952777,0.766417,0.383336,0.499635,0.435898,0.281395,0.505127,0.819559,0.98537,0.931046,0.19718,0.202397,0.573932,0.0929439,0.664212,0.664946,0.404277,0.893887,0.161755,0.520447,0.680069,0.312282,0.00683486,0.926791,0.29247,0.665081,0.227022,0.745831,0.791122,0.274489,0.395315,0.839456,0.538373,0.0135057,0.867877,0.591628,0.974531,0.202553,0.397572,0.732476,0.825628,0.227456,0.123769,0.481768,0.259016,0.942745,0.608184,0.509429,0.90301,0.312559,0.277423,0.463129,0.0752773,0.749146,0.293592,0.446642,0.472952,0.980218,0.648145,0.603259,0.198254,0.637127,0.0330005,0.126399,0.859838,0.881817,0.939039,0.54634,0.767201,0.925883,0.203718,0.480311,0.68119,0.152914,0.365077,0.417472,0.859738,0.590809,0.495781,0.506299,0.525837,0.496935,0.430864,0.505117,0.881803,0.934973,0.682074,0.0566439,0.0154685,0.613589,0.240378,0.713251,0.158091,0.406617,0.976898,0.189052,0.473342,0.839692,0.981515,0.939077,0.424674,0.068081,0.604625,0.456472,0.795577,0.0395464,0.577905,0.196033,0.64336,0.183033,0.94272,0.337699,0.135644,0.731417,0.957134,0.186345,0.562628,0.154385,0.253961,0.493803,0.566411,0.638103,0.811214,0.00403392,0.442073,0.855313,0.098347,0.563107,0.83924,0.508262,0.910071,0.765773,0.151627,0.0758229,0.539748,0.321102,0.995664,0.804216,0.728646,0.856675,0.883998,0.0913673,0.0945951,0.0711673,0.368341,0.407958,0.00166678,0.127405,0.0630662,0.344989,0.138903,0.212377,0.968693,0.943755,0.239913,0.0275614,0.753523,0.227759,0.3523,0.351636,0.361451,0.920289,0.495375,0.640268,0.763132,0.479196,0.91523,0.977519,0.0415704,0.679753,0.556168,0.356901,0.391924,0.348778,0.0412634,0.722447,0.691063,0.172951,0.445066,0.961133,0.174925,0.153924,0.216369,0.80862,0.447427,0.290171,0.818738,0.0237186,0.136091,0.350016,0.993784,0.868569,0.89951,0.393005,0.163024,0.718071,0.982234,0.968484,0.669984,0.596068,0.579324,0.300558,0.704755,0.519472,0.0409258,0.497269,0.682076,0.846112,0.776886,0.950789,0.83211,0.888196,0.223956,0.243824,0.796808,0.23922,0.247493,0.1152,0.85434,0.609624,0.0573117,0.148267,0.925786,0.512377,0.914077,0.526978,0.906921,0.169988,0.110231,0.0623991,0.820943,0.813911,0.921303,0.130826,0.594939,0.705544,0.385047,0.949939,0.870597,0.0908815,0.807702,0.783081,0.690117,0.0490748,0.772817,0.627578,0.324266,0.843331,0.674663,0.697811,0.165635,0.651096,0.82593,0.114015,0.34154,0.277206,0.0727028,0.093089,0.836942,0.191291,0.00817788,0.246533,0.116449,0.768664,0.552373,0.728065,0.213973,0.995828,0.272362,0.286109,0.225071,0.896506,0.11737,0.127394,0.830263,0.920741,0.0551004,0.757979,0.697578,0.22936,0.726887,0.849013,0.600281,0.580953,0.150027,0.104342,0.0409213,0.610506,0.22209,0.589643,0.582502,0.151839,0.597451,0.252156,0.263475,0.384853,0.720388,0.117451,0.616911,0.0144393,0.962211,0.521842,0.521944,0.251175,0.827835,0.638085,0.713892,0.350661,0.476847,0.775969,0.254736,0.517951,0.157014,0.569886,0.123415,0.759849,0.348324,0.285719,0.181679,0.210019,0.556823,0.0646318,0.090266,0.794453,0.16134,0.255221,0.623542,0.978235,0.226961,0.441558,0.683417,0.723005,0.907709,0.0858479,0.991612,0.724355,0.00784868,0.805194,0.388776,0.926113,0.674683,0.0677564,0.35829,0.281824,0.268165,0.974376,0.518606,0.59443,0.624736,0.583263,0.59423,0.593267,0.58209,0.962077,0.117777,0.988623,0.367096,0.976824,0.544619,0.813516,0.910242,0.00146168,0.91191,0.543016,0.863071,0.462755,0.741922,0.0462038,0.0815606,0.297175,0.768679,0.752385,0.613782,0.671606,0.840572,0.728188,0.509405,0.663006,0.0563174,0.333092,0.533209,0.088038,0.154718,0.0711603,0.319379,0.378883,0.50613,0.294739,0.483796,0.403351,0.217667,0.603691,0.166009,0.342366,0.398666,0.725519,0.722402,0.687312,0.752388,0.320879,0.851223,0.17411,0.390014,0.496523,0.640097,0.51363,0.0217636,0.769382,0.988398,0.358003,0.0125022,0.404378,0.1769,0.504693,0.935629,0.768684,0.202782,0.969173,0.759089,0.97181,0.422268,0.590225,0.986919,0.120998,0.217403,0.761633,0.0821026,0.562782,0.851338,0.341302,0.882416,0.378724,0.759378,0.0891024,0.379428,0.265669,0.538181,0.237002,0.580096,0.612868,0.462195,0.853323,0.251296,0.953299,0.733127,0.642497,0.71187,0.258325,0.505317,0.931341,0.966613,0.428147,0.363478,0.700453,0.0181289,0.266578,0.22318,0.701051,0.367423,0.221797,0.550998,0.755457,0.053279,0.492275,0.365764,0.394713,0.244677,0.987275,0.545724,0.0417905,0.970632,0.299011,0.393127,0.724567,0.35658,0.787995,0.26192,0.407422,0.195429,0.86129,0.269018,0.857567,0.982037,0.612078,0.589549,0.890531,0.648795,0.976627,0.413838,0.627514,0.1743,0.625442,0.259719,0.427601,0.356823,0.783896,0.800087,0.682587,0.613949,0.0829933,0.662545,0.125758,0.378582,0.208366,0.641684,0.709825,0.472914,0.595695,0.370731,0.86617,0.0492312,0.734831,0.764086,0.411602,0.27763,0.27001,0.811395,0.163655,0.0762926,0.445104,0.420723,0.158543,0.59811,0.110481,0.429843,0.988007,0.387831,0.740485,0.221127,0.966769,0.994837,0.66677,0.638629,0.00280029,0.820816,0.261374,0.0437629,0.951829,0.146896,0.824155,0.829399,0.973541,0.99499,0.337949,0.153374,0.998686,0.920538,0.0916523,0.700433,0.00993145,0.699341,0.849946,0.178887,0.651663,0.892097,0.888808,0.861114,0.737488,0.299582,0.980191,0.645618,0.24256,0.109118,0.533045,0.242399,0.523178,0.446015,0.12287,0.0848758,0.997364,0.658392,0.90229,0.581192,0.816651,0.168638,0.264945,0.408768,0.10861,0.20319,0.492042,0.59319,0.830154,0.770239,0.334734,0.101818,0.322601,0.0598466,0.198524,0.202284,0.0420004,0.857477,0.561949,0.638314,0.893167,0.187818,0.951947,0.369776,0.302962,0.445453,0.0690067,0.588097,0.698476,0.929836,0.105438,0.757684,0.168448,0.384779,0.556471,0.953585,0.424272,0.364927,0.346945,0.756495,0.407773,0.334673,0.297747,0.0514321,0.029296,0.408744,0.739695,0.588838,0.720097,0.953547,0.741132,0.927218,0.451546,0.554484,0.541461,0.0653191,0.445083,0.691792,0.532063,0.894275,0.928555,0.618518,0.423592,0.781554,0.122658,0.773891,0.148112,0.552112,0.347695,0.184966,0.329704,0.0546581,0.10075,0.769497,0.699426,0.561367,0.0439823,0.922415,0.600558,0.424877,0.30454,0.166803,0.560894,0.867887,0.2875,0.242249,0.788707,0.974922,0.393904,0.497966,0.0271956,0.756204,0.923099,0.868736,0.320594,0.156953,0.632334,0.324874,0.0785115,0.735123,0.744994,0.71077,0.0165067,0.103618,0.390817,0.275427,0.97123,0.903671,0.745495,0.0236169,0.290592,0.311,0.538068,0.820761,0.585699,0.816909,0.685936,0.943664,0.0928474,0.581592,0.179006,0.943029,0.309389,0.947326,0.583198,0.423001,0.303868,0.0274432,0.743776,0.835141,0.154561,0.0849825,0.1172,0.753673,0.597512,0.48077,0.476165,0.138664,0.843032,0.301725,0.372698,0.677595,0.800649,0.702107,0.768643,0.916852,0.275518,0.288232,0.786482,0.157127,0.64479,0.846964,0.136201,0.287763,0.929122,0.241865,0.013541,0.240309,0.625433,0.978566,0.9099,0.54134,0.974618,0.375099,0.985439,0.0174441,0.545984,0.985898,0.343433,0.975409,0.0766503,0.13588,0.155706,0.523918,0.213801,0.0383927,0.990917,0.729838,0.130392,0.590705,0.113258,0.740542,0.47943,0.78056,0.428801,0.48621,0.308639,0.0821392,0.304706,0.67861,0.356663,0.761066,0.6846,0.86009,0.251738,0.298057,0.797951,0.815297,0.289674,0.467789,0.151396,0.973222,0.632998,0.86009,0.145144,0.529792,0.870593,0.417631,0.259479,0.404156,0.934127,0.931189,0.648215,0.619075,0.675659,0.853239,0.584345,0.160897,0.476301,0.144152,0.121653,0.288307,0.0171334,0.317018,0.988608,0.621967,0.814857,0.416796,0.560427,0.762022,0.0714459,0.578922,0.13106,0.498729,0.348893,0.629112,0.417693,0.344881,0.177429,0.214693,0.0564871,0.320104,0.178749,0.507015,0.704429,0.905672,0.309052,0.907416,0.733855,0.933613,0.316458,0.2217,0.441658,0.977749,0.862472,0.0268404,0.638089,0.264665,0.791841,0.884347,0.10536,0.753642,0.86609,0.337455,0.301235,0.881146,0.441553,0.722669,0.0341942,0.938795,0.735893,0.378639,0.643039,0.0759189,0.180561,0.896595,0.0489882,0.340424,0.178494,0.675889,0.352985,0.349721,0.651197,0.431105,0.496753,0.959974,0.632644,0.747497,0.382577,0.1695,0.664555,0.880081,0.516112,0.618051,0.721046,0.642124,0.720631,0.538579,0.539176,0.0177258,0.902427,0.0965247,0.59532,0.902383,0.547891,0.038805,0.594871,0.212047,0.783862,0.869007,0.57596,0.0457554,0.972847,0.77975,0.38295,0.964688,0.323098,0.121461,0.886694,0.656402,0.465001,0.575217,0.564114,0.987291,0.0196296,0.517206,0.687126,0.11797,0.898085,0.452975,0.626839,0.662939,0.374658,0.338927,0.0148127,0.448317,0.690818,0.263342,0.41742,0.554604,0.118542,0.162463,0.0623295,0.701967,0.220524,0.668656,0.326149,0.919957,0.265323,0.404876,0.805932,0.306605,0.466404,0.25275,0.0159887,0.313303,0.133493,0.556327,0.255473,0.228387,0.857638,0.293854,0.823321,0.824348,0.620385,0.537098,0.071869,0.432894,0.496808,0.869924,0.616578,0.252828,0.754263,0.434399,0.890947,0.178991,0.725997,0.552943,0.577303,0.191566,0.183461,0.6816,0.45863,0.677233,0.88265,0.357975,0.0131219,0.966905,0.347829,0.171664,0.712246,0.408856,0.956985,0.16327,0.53383,0.240102,0.232073,0.473492,0.184878,0.300108,0.649786,0.629363,0.503552,0.960058,0.166416,0.190247,0.96052,0.861977,0.706728,0.560476,0.258562,0.155119,0.665534,0.709146,0.00511307,0.989191,0.0918126,0.806959,|0.833248,0.637122,0.648596,0.561841,0.25678,0.53766,0.265904,0.137995,0.622983,0.23496,0.417074,0.420311,0.473492,0.154128,0.543974,0.506408,0.299508,0.775832,0.975745,0.322927,0.896559,0.364099,0.523926,0.92624,0.899654,0.279338,0.263158,0.247823,0.732772,0.580271,0.877751,0.235712,0.232505,0.839111,0.534894,0.418026,0.380851,0.857562,0.954353,0.31093,0.277199,0.64163,0.913127,0.328938,0.436338,0.333208,0.0713115,0.321112,0.565583,0.542571,0.986601,0.829842,0.955847,0.400516,0.888268,0.146023,0.83287,0.704964,0.691284,0.845066,0.941043,0.59083,0.561662,0.968257,0.315926,0.910588,0.373206,0.22684,0.0327101,0.2963,0.492493,0.237846,0.2468,0.268924,0.681014,0.766723,0.510146,0.54888,0.961799,0.50552,0.766689,0.904242,0.991757,0.00855839,0.00716746,0.0777489,0.505643,0.423537,0.447363,0.396305,0.203278,0.0441972,0.437638,0.0167239,0.99512,0.336671,0.687538,0.775439,0.398405,0.145223,0.49936,0.576161,0.452064,0.937366,0.082404,0.916977,0.183477,0.308194,0.54391,0.8537,0.870656,0.912636,0.0177187,0.237391,0.81961,0.38352,0.262501,0.431508,0.691154,0.0029552,0.42847,0.194634,0.345229,0.505773,0.201859,0.239943,0.973307,0.68552,0.0611952,0.925927,0.467962,0.441135,0.886505,0.206762,0.939107,0.0619404,0.394786,0.956379,0.833136,0.799192,0.0238379,0.282203,0.786116,0.977721,0.265016,0.231768,0.713819,0.380319,0.864316,0.687402,0.63026,0.537825,0.355652,0.421501,0.0321874,0.488937,0.562522,0.0940135,0.722384,0.4847,0.893236,0.00795215,0.924144,0.0375043,0.604735,0.309069,0.0667616,0.150021,0.975387,0.19168,0.342245,0.619249,0.195095,0.791198,0.0212767,0.284052,0.30033,0.0373068,0.525188,0.75223,0.48105,0.670733,0.786307,0.321101,0.203277,0.822812,0.320543,0.278788,0.0633349,0.984933,0.939748,0.582484,0.319322,0.2375,0.438711,0.385725,0.690448,0.495796,0.486476,0.973729,0.529791,0.18174,0.540032,0.984694,0.770827,0.239076,0.47744,0.866572,0.37547,0.366536,0.128416,0.853837,0.658181,0.263784,0.721322,0.927519,0.887396,0.213985,0.927143,0.364173,0.630996,0.245945,0.136696,0.37916,0.573941,0.429372,0.748959,0.102299,0.86394,0.194054,0.078069,0.83069,0.0884743,0.834585,0.847996,0.291161,0.937733,0.775173,0.926095,0.36848,0.235596,0.83063,0.205642,0.600204,0.450769,0.830661,0.0884473,0.542871,0.557363,0.784965,0.424812,0.0833762,0.522078,0.896928,0.222524,0.37985,0.13899,0.472501,0.169307,0.166446,0.0688876,0.835695,0.401505,0.403316,0.00720459,0.665604,0.33661,0.259572,0.275027,0.588558,0.317155,0.998015,0.831353,0.0775545,0.514565,0.966312,0.790057,0.15463,0.676443,0.10056,0.104609,0.296986,0.861903,0.132031,0.310564,0.74969,0.739661,0.719206,0.233253,0.797662,0.808758,0.787117,0.617218,0.432472,0.703408,0.684078,0.665905,0.418378,0.220513,0.253619,0.98903,0.903186,0.205746,0.351039,0.754666,0.796025,0.902556,0.607728,0.109768,0.85941,0.19077,0.886955,0.892944,0.139334,0.945627,0.227463,0.596021,0.571354,0.992101,0.493306,0.100923,0.0544472,0.729857,0.113799,0.123063,0.306809,0.451401,0.873003,0.682951,0.53403,0.185524,0.397879,0.535965,0.366963,0.847411,0.0783719,0.706101,0.814248,0.783787,0.993722,0.0159075,0.127599,0.473216,0.861225,0.873174,0.0961823,0.530877,0.647416,0.195176,0.0422691,0.010901,0.27866,0.198725,0.518249,0.610404,0.879313,0.626005,0.548902,0.322691,0.279137,0.0388879,0.644857,0.094207,0.00807041,0.328025,0.279497,0.507166,0.703482,0.278184,0.952337,0.032338,0.282408,0.878549,0.280453,0.815421,0.61604,0.766058,0.977786,0.141202,0.243322,0.13351,0.0256183,0.53361,0.680936,0.637875,0.814569,0.0114726,0.286434,0.802488,0.586065,0.637943,0.420464,0.0370611,0.637917,0.877773,0.452496,0.779701,0.925989,0.300251,0.0972503,0.133055,0.0248258,0.517018,0.301712,0.980373,0.622374,0.356427,0.188061,0.279792,0.519642,0.613094,0.772103,0.555553,0.909284,0.120118,0.936694,0.222635,0.392958,0.130402,0.858148,0.512557,0.377237,0.612339,0.502999,0.857201,0.138252,0.726332,0.802111,0.223261,0.995485,0.795178,0.274275,0.621074,0.564475,0.640579,0.155039,0.159892,0.143066,0.950756,0.317301,0.0842413,0.705491,0.261287,0.851679,0.930351,0.135404,0.755881,0.303066,0.598677,0.191408,0.570551,0.256875,0.796462,0.145384,0.428018,0.851835,0.503824,0.246224,0.499436,0.311002,0.790057,0.886209,0.51845,0.487658,0.131677,0.629631,0.361908,0.873254,0.708129,0.0722985,0.701684,0.939328,0.502679,0.713847,0.209696,0.765717,0.908676,0.802882,0.607975,0.59605,0.415325,0.801058,0.310948,0.7667,0.28275,0.752827,0.817679,0.470069,0.493427,0.383157,0.448542,0.754345,0.703566,0.469452,0.423568,0.194582,0.831934,0.303752,0.610492,0.613546,0.62394,0.560834,0.172589,0.678526,0.796872,0.909978,0.0910785,0.170332,0.790048,0.258639,0.998503,0.960289,0.617294,0.124622,0.986169,0.0413853,0.487177,0.698022,0.137827,0.697253,0.778484,0.779303,0.0293944,0.9156,0.592781,0.88387,0.212951,0.511054,0.0537696,0.742418,0.178636,0.9217,0.825969,0.563995,0.598956,0.826918,0.128006,0.533907,0.954337,0.966759,0.233756,0.074609,0.645907,0.88464,0.806729,0.485886,0.341295,0.721953,0.694205,0.266156,0.461756,0.503705,0.287689,0.754759,0.596066,0.191281,0.794285,0.937121,0.725023,0.620138,0.765663,0.662585,0.474918,0.588295,0.0357273,0.383897,0.905663,0.942375,0.734899,0.31028,0.460642,0.163042,0.803529,0.634866,0.773657,0.308838,0.750042,0.190024,0.951772,0.203108,0.125017,0.235231,0.463166,0.115064,0.748661,0.59827,0.62729,0.990853,0.556266,0.417653,0.634502,0.92506,0.781478,0.163652,0.396788,0.90754,0.195286,0.0604242,0.00872546,0.15124,0.0455401,0.648304,0.658525,0.228901,0.895276,0.118558,0.780431,0.120184,0.449713,0.888173,0.643484,0.661862,0.563256,0.449476,0.0490409,0.3118,0.508151,0.495918,0.850174,0.0991521,0.786507,0.8103,0.754057,0.315454,0.58729,0.258318,0.168296,0.559866,0.956741,0.726726,0.348928,0.481661,0.976097,0.355192,0.666552,0.97431,0.962813,0.819986,0.199317,0.909314,0.317715,0.136984,0.370203,0.315948,0.52709,0.722953,0.0236065,0.36085,0.672999,0.57731,0.77763,0.0657253,0.280067,0.990764,0.482441,0.414011,0.834845,0.522052,0.394689,0.45704,0.337198,0.545115,0.887232,0.801812,0.504638,0.152078,0.632454,0.655696,0.551702,0.370246,0.732539,0.691007,0.463173,0.705464,0.515719,0.444305,0.206696,0.935597,0.299031,0.187787,0.283963,0.942743,0.0701436,0.558393,0.17406,0.261667,0.427885,0.933864,0.328211,0.0614257,0.399494,0.474645,0.370955,0.138304,0.686611,0.224791,0.868134,0.751274,0.0210401,0.624307,0.689958,0.269478,0.496909,0.118473,0.437405,0.876207,0.298299,0.513078,0.642347,0.200991,0.747308,0.243157,0.836699,0.0741107,0.398332,0.00106704,0.318047,0.882767,0.49304,0.291306,0.0430676,0.133082,0.948146,0.984038,0.909269,0.307674,0.221893,0.0350052,0.712359,0.113672,0.933186,0.249799,0.776012,0.0400923,0.174211,0.0213482,0.384808,0.396325,0.269558,0.356022,0.822756,0.888388,0.681237,0.311254,0.700364,0.0953128,0.585145,0.360942,0.0707251,0.322843,0.457326,0.778653,0.578402,0.872374,0.572924,0.330724,0.908628,0.862518,0.691873,0.494008,0.543991,0.59868,0.914951,0.487612,0.856958,0.567298,0.828934,0.00436813,0.120184,0.834359,0.62779,0.656068,0.942537,0.159252,0.464663,0.629212,0.532533,0.307438,0.527709,0.0671751,0.222466,0.160399,0.913943,0.173826,0.626643,0.814013,0.812169,0.0540503,0.129841,0.678214,0.334472,0.387516,0.929205,0.663269,0.750996,0.156754,0.782567,0.95365,0.726979,0.151801,0.382839,0.383328,0.785587,0.312999,0.600173,0.654812,0.933006,0.439611,0.16646,0.866603,0.708566,0.453798,0.742995,0.738945,0.850375,0.869357,0.582246,0.693785,0.278496,0.44647,0.342481,0.541842,0.0208893,0.811507,0.543241,0.0247404,0.0783029,0.336235,0.738012,0.864307,0.528905,0.551814,0.775462,0.176365,0.520306,0.355714,0.954372,0.497619,0.244689,0.225614,0.180848,0.14106,0.0185535,0.290313,0.996566,0.176972,0.117468,0.342628,0.21166,0.540405,0.476107,0.451706,0.191935,0.0176308,0.357789,0.817133,0.592999,0.374651,0.427904,0.72816,0.962477,0.891989,0.667636,0.799737,0.950264,0.246945,0.686777,0.934032,0.540328,0.319916,0.0332439,0.665762,0.537208,0.474197,0.807662,0.987618,0.43031,0.958147,0.96708,0.742127,0.528563,0.74028,0.260251,0.0897461,0.219344,0.933015,0.511995,0.378966,0.449317,0.337893,0.242444,0.0926231,0.252668,0.403635,0.274069,0.394244,0.792977,0.531395,0.96352,0.513128,0.317731,0.963875,0.804268,0.159851,0.280925,0.359431,0.746807,0.196986,0.034833,0.461232,0.239641,0.158272,0.581743,0.767049,0.48005,0.44679,0.813515,0.158388,0.0673818,0.399454,0.682169,0.786549,0.0520456,0.837257,0.492771,0.895121,0.416096,0.222398,0.962079,0.55722,0.108214,0.582898,0.709364,0.471242,0.465345,0.615028,0.0509425,0.405541,0.0680656,0.59026,0.0300677,0.47811,0.026013,0.103845,0.191369,0.45544,0.281068,0.184222,0.300304,0.261162,0.716999,0.868612,0.880002,0.385828,0.806786,0.131199,0.688154,0.117517,0.311478,0.388256,0.702477,0.376752,0.834249,0.982586,0.66801,0.559839,0.759205,0.0460519,0.0778905,0.312063,0.148454,0.685209,0.226479,0.691481,0.62884,0.154302,0.911092,0.419875,0.765979,0.768439,0.378013,0.792289,0.982402,0.365072,0.702197,0.793994,0.22639,0.722067,0.819471,0.347665,0.271107,0.419843,0.228896,0.737123,0.353205,0.19941,0.82108,0.112999,0.456437,0.0291197,|0.0349215,0.108023,0.439913,0.888055,0.244081,0.488432,0.748998,0.535728,0.328966,0.578294,0.168439,0.284426,0.381581,0.465645,0.906732,0.371344,0.350143,0.597848,0.769122,0.443287,0.0913332,0.129294,0.204983,0.221527,0.649587,0.435455,0.737049,0.111605,0.302796,0.438194,0.912723,0.0897323,0.494016,0.34406,0.285423,0.570159,0.311485,0.0355145,0.557497,0.471362,0.28833,0.206791,0.548264,0.98578,0.460835,0.217139,0.686424,0.344931,0.82745,0.804646,0.900892,0.806221,0.397202,0.127688,0.218788,0.389462,0.204433,0.898116,0.107587,0.723483,0.0365301,0.573739,0.398701,0.331463,0.117249,0.698499,0.219527,0.594419,0.471994,0.489562,0.645716,0.335251,0.148274,0.0349641,0.0807197,0.228071,0.169575,0.327285,0.462013,0.611133,0.0553575,0.575299,0.397995,0.939505,0.310397,0.644263,0.922326,0.15748,0.893741,0.412194,0.651955,0.0784819,0.0431356,0.220574,0.426558,0.322946,0.114888,0.891164,0.430579,0.529573,0.796255,0.377733,0.884568,0.0453128,0.16687,0.160081,0.578263,0.503661,0.928573,0.767675,0.163147,0.880985,0.716186,0.981785,0.307975,0.665253,0.166894,0.481479,0.131731,0.946147,0.369185,0.0130345,0.795559,0.883405,0.367184,0.0300843,0.691127,0.655292,0.593794,0.805344,0.153995,0.197676,0.00781864,0.145704,0.65175,0.539855,0.474829,0.66907,0.524254,0.618886,0.400802,0.862221,0.552814,0.465248,0.155142,0.659547,0.985412,0.68373,0.358107,0.804008,0.716767,0.278017,0.484762,0.855266,0.667852,0.0835608,0.402944,0.504609,0.0602401,0.392149,0.258483,0.581264,0.086244,0.0242567,0.586909,0.456635,0.989569,0.143129,0.434502,0.655918,0.0107251,0.731675,0.347888,0.132078,0.562369,0.694417,0.88092,0.627028,0.682159,0.69293,0.558282,0.619226,0.839423,0.65315,0.366819,0.524494,0.94323,0.0332565,0.587442,0.0858734,0.851379,0.435929,0.312777,0.161332,0.586513,0.339077,0.615108,0.0733739,0.809518,0.420211,0.779956,0.156179,0.507394,0.774967,0.506951,0.878313,0.896998,0.5661,0.899212,0.519404,0.789366,0.857524,0.494304,0.590093,0.976458,0.325408,0.579005,0.570131,0.239261,0.569011,0.490969,0.109929,0.575657,0.177151,0.905981,0.983757,0.78734,0.429417,0.724556,0.652294,0.845878,0.794271,0.757879,0.751394,0.152653,0.959127,0.545199,0.839931,0.759422,0.369272,0.773188,0.698503,0.672333,0.831667,0.95412,0.857591,0.516264,0.344474,0.904101,0.533485,0.921424,0.141026,0.155473,0.957886,0.33782,0.381311,0.597023,0.483066,0.876167,0.590192,0.971013,0.801984,0.667708,0.882216,0.554743,0.71241,0.169716,0.435623,0.184028,0.26787,0.130043,0.933359,0.379194,0.464633,0.770461,0.288303,0.362139,0.64351,0.995987,0.342851,0.724518,0.445782,0.401343,0.458832,0.860727,0.975707,0.323557,0.987601,0.745211,0.00415188,0.0485815,0.741106,0.449793,0.279233,0.298872,0.143984,0.141602,0.411543,0.455778,0.107656,0.82711,0.559249,0.81705,0.220736,0.169159,0.942559,0.454827,0.0647131,0.608783,0.740782,0.385401,0.893789,0.667154,0.552514,0.929613,0.483324,0.67648,0.585928,0.257083,0.385481,0.306252,0.449309,0.737109,0.678245,0.773973,0.830217,0.0899851,0.054931,0.522556,0.202386,0.168288,0.59761,0.269603,0.284869,0.75841,0.565634,0.25838,0.915142,0.952521,0.182656,0.697278,0.876145,0.860779,0.147089,0.693328,0.565381,0.0164109,0.744811,0.236479,0.863158,0.704374,0.677664,0.776335,0.0188699,0.320006,0.174883,0.170123,0.131587,0.24179,0.967456,0.534302,0.82931,0.144442,0.948626,0.90152,0.469518,0.610653,0.193482,0.298812,0.744429,0.504675,0.564377,0.920959,0.447113,0.061944,0.393674,0.068041,0.917525,0.791189,0.630654,0.901471,0.977877,0.675387,0.495875,0.509731,0.866434,0.300487,0.950938,0.667339,0.0501449,0.452005,0.0849743,0.617314,0.37078,0.077342,0.613664,0.355031,0.100837,0.11102,0.232659,0.209914,0.627155,0.607321,0.289153,0.0234902,0.18097,0.353245,0.354924,0.215723,0.324059,0.395212,0.830886,0.450779,0.54803,0.955841,0.82001,0.263024,0.637875,0.807271,0.00458473,0.0899628,0.835503,0.865347,0.239933,0.057175,0.143063,0.99509,0.425727,0.83046,0.506662,0.267148,0.359067,0.279723,0.721499,0.996117,0.510099,0.215929,0.614538,0.511681,0.132979,0.831303,0.151375,0.994648,0.820576,0.208046,0.778246,0.0903372,0.454515,0.0593672,0.132554,0.184693,0.171211,0.54893,0.368226,0.0926433,0.157541,0.788965,0.0237859,0.178809,0.865895,0.847116,0.861572,0.654315,0.303087,0.844419,0.199361,0.494961,0.0890403,0.0034861,0.616746,0.194957,0.624023,0.344159,0.150914,0.865845,0.748132,0.553036,0.53516,0.087241,0.455472,0.210535,0.765444,0.0433766,0.892398,0.502992,0.501957,0.417769,0.810573,0.51961,0.702815,0.61523,0.133352,0.790675,0.37343,0.401478,0.239084,0.878971,0.749127,0.414122,0.766064,0.228215,0.562164,0.565117,0.967588,0.309815,0.559227,0.251324,0.949415,0.739594,0.0404773,0.156302,0.536629,0.681272,0.378512,0.452426,0.51545,0.825913,0.475182,0.307586,0.524986,0.709208,0.631291,0.626631,0.411709,0.545914,0.687746,0.928945,0.88311,0.596709,0.734183,0.809156,0.913658,0.0742492,0.549083,0.822014,0.220087,0.257409,0.358224,0.770209,0.92025,0.150068,0.779211,0.999123,0.617801,0.572772,0.301986,0.918559,0.830163,0.964497,0.1293,0.268642,0.197177,0.292933,0.715735,0.986321,0.893124,0.547805,0.442382,0.624464,0.772391,0.582841,0.113679,0.52841,0.205673,0.0371411,0.0853513,0.527644,0.351819,0.88356,0.751878,0.874231,0.672363,0.343212,0.405846,0.283266,0.717769,0.81638,0.462286,0.622107,0.682741,0.00911397,0.830499,0.932669,0.94455,0.595225,0.0867031,0.141384,0.514305,0.98887,0.830311,0.98185,0.163406,0.541453,0.0993205,0.762929,0.931873,0.109823,0.531697,0.652847,0.409043,0.0647067,0.715802,0.435812,0.274864,0.467273,0.217041,0.972394,0.963788,0.834489,0.302965,0.515762,0.857718,0.130877,0.620692,0.473463,0.197113,0.820755,0.780859,0.974187,0.740501,0.257589,0.587561,0.120936,0.725269,0.0918476,0.82645,0.168971,0.442543,0.793711,0.848533,0.0870627,0.563937,0.199559,0.422017,0.488741,0.146492,0.378655,0.606168,0.104666,0.626224,0.588927,0.412559,0.291648,0.8076,0.909007,0.441739,0.857846,0.175609,0.982709,0.880219,0.0760438,0.489614,0.736189,0.786991,0.582405,0.00988179,0.231093,0.85025,0.579833,0.4394,0.540232,0.989204,0.199984,0.582954,0.116064,0.281371,0.0732096,0.598518,0.554972,0.331636,0.95044,0.0480307,0.62493,0.189279,0.0460026,0.572464,0.68961,0.222044,0.488966,0.31452,0.327022,0.0146616,0.291115,0.333746,0.436098,0.92105,0.56723,0.313932,0.964959,0.433609,0.467681,0.194701,0.203282,0.658767,0.716838,0.438119,0.858782,0.610956,0.0676328,0.126087,0.164027,0.850242,0.169531,0.802111,0.871289,0.214612,0.88504,0.797531,0.322284,0.199698,0.171818,0.127794,0.285574,0.63173,0.636837,0.918092,0.220068,0.998388,0.237184,0.514249,0.112079,0.931213,0.0594898,0.144153,0.507492,0.901202,0.494871,0.192945,0.706493,0.198015,0.956119,0.430683,0.326848,0.275182,0.883193,0.288217,0.23856,0.772961,0.0469013,0.917012,0.457311,0.720378,0.521233,0.480725,0.515905,0.350865,0.45779,0.422109,0.756837,0.439843,0.321477,0.694473,0.314301,0.223667,0.990635,0.792868,0.904134,0.987591,0.197523,0.739893,0.972331,0.0187842,0.448466,0.221197,0.220116,0.585906,0.260642,0.98678,0.184077,0.131729,0.399471,0.398316,0.170185,0.498345,0.772177,0.64216,0.0481908,0.00817287,0.0439122,0.139848,0.403698,0.0659447,0.0288802,0.0781438,0.458682,0.340493,0.315541,0.836101,0.177996,0.77548,0.112128,0.693233,0.676514,0.788826,0.68797,0.74849,0.458893,0.318393,0.269345,0.7209,0.888336,0.353731,0.0605649,0.694518,0.882495,0.00790989,0.539097,0.983123,0.475897,0.312113,0.155535,0.683946,0.212902,0.274629,0.611763,0.351632,0.678722,0.882779,0.76436,0.973155,0.986402,0.565653,0.463623,0.404833,0.956838,0.887239,0.406927,0.505532,0.758835,0.602634,0.981108,0.224983,0.257211,0.453738,0.739428,0.525315,0.887406,0.505655,0.904531,0.76711,0.594901,0.578784,0.0136552,0.146422,0.919264,0.470628,0.227182,0.337564,0.500186,0.942644,0.316986,0.872038,0.92725,0.302194,0.277254,0.330232,0.15371,0.259568,0.660066,0.34821,0.717165,0.60779,0.104209,0.452258,0.265926,0.995286,0.435191,0.114533,0.45422,0.948496,0.318355,0.466126,0.438098,0.134435,0.60378,0.400179,0.0355709,0.230066,0.0322628,0.227127,0.0398512,0.940135,0.962888,0.0460466,0.10737,0.678464,0.974579,0.65697,0.781388,0.0672935,0.527711,0.16287,0.250743,0.69455,0.398512,0.696631,0.401133,0.838461,0.52375,0.915132,0.252292,0.269853,0.659377,0.378722,0.862443,0.561153,0.717997,0.978448,0.531593,0.586546,0.312626,0.0441718,0.878526,0.64706,0.782436,0.433718,0.983356,0.0554236,0.25593,0.872362,0.882814,0.640099,0.195272,0.0543722,0.769135,0.300594,0.381021,0.521378,0.570306,0.563513,0.266001,0.363132,0.740583,0.0298364,0.960425,0.454832,0.0765646,0.632354,0.937273,0.763622,0.135519,0.432673,0.81648,0.574833,0.00570792,0.519958,0.849452,0.585018,0.648594,0.303443,0.0577763,0.167738,0.180298,0.428693,0.311559,0.107556,0.403721,0.859611,0.81472,0.0203594,0.00438911,0.0506118,0.490928,0.681918,0.492687,0.189294,0.0536062,0.302301,0.274694,0.739559,0.622182,0.587733,0.208513,0.575399,0.47496,0.168124,0.302237,0.006392,0.428836,0.605265,0.392814,0.254608,0.411472,0.902152,0.0385948,0.260747,0.505337,0.315485,0.323574,0.518751,0.353104,0.0203625,0.047169,0.434864,0.248232,0.273965,0.86891,0.030265,0.768027,0.852898,|0.409041,0.360833,0.758394,0.0705247,0.54305,0.8697,0.799411,0.222865,0.559037,0.41677,0.314111,0.653481,0.618738,0.94975,0.295439,0.982626,0.195321,0.431452,0.593867,0.828729,0.828693,0.946293,0.354501,0.845303,0.467479,0.803165,0.739936,0.0803775,0.109034,0.0853815,0.452585,0.647793,0.767894,0.595634,0.382544,0.745005,0.615745,0.363745,0.0866604,0.712691,0.513514,0.725588,0.909414,0.130974,0.967284,0.438895,0.764186,0.826746,0.076584,0.737408,0.445467,0.901785,0.621291,0.715031,0.61388,0.204815,0.300958,0.929067,0.841466,0.411142,0.107588,0.999657,0.624429,0.4283,0.867836,0.932761,0.317946,0.417529,0.743238,0.114422,0.418182,0.044625,0.0426553,0.209985,0.374875,0.800056,0.230575,0.980786,0.661428,0.411336,0.505893,0.648896,0.588657,0.0943042,0.619853,0.108885,0.179633,0.563429,0.109373,0.475717,0.986913,0.382076,0.252286,0.917994,0.660263,0.746306,0.568179,0.76744,0.765916,0.580571,0.637936,0.6442,0.320187,0.653397,0.687387,0.540079,0.14509,0.510371,0.709601,0.608468,0.270136,0.360653,0.413488,0.0297026,0.378621,0.0802532,0.984122,0.203995,0.821346,0.676037,0.998234,0.413896,0.182668,0.517223,0.903037,0.276271,0.595082,0.133664,0.982486,0.919121,0.934196,0.495321,0.556302,0.184824,0.973479,0.227155,0.243062,0.1169,0.550231,0.252705,0.753605,0.366593,0.343018,0.346172,0.252678,0.621058,0.471877,0.206635,0.836129,0.480206,0.391947,0.172281,0.903786,0.897893,0.275073,0.497061,0.989477,0.0551735,0.866893,0.974838,0.637539,0.063012,0.484352,0.385612,0.868254,0.247665,0.982596,0.246593,0.299258,0.616087,0.120649,0.813977,0.847798,0.851513,0.861324,0.531316,0.420174,0.254821,0.351857,0.246401,0.0109566,0.423706,0.774584,0.290086,0.888531,0.929807,0.462906,0.230779,0.316144,0.75903,0.686805,0.0401411,0.312835,0.513581,0.511098,0.584639,0.730151,0.823749,0.173181,0.133687,0.490994,0.865088,0.634169,0.284096,0.808094,0.929407,0.179695,0.0202846,0.596498,0.147901,0.557963,0.356477,0.250392,0.215082,0.606498,0.108279,0.38597,0.87983,0.890339,0.728147,0.785838,0.966012,0.405061,0.373858,0.893296,0.976755,0.336633,0.50129,0.381702,0.660906,0.590091,0.825326,0.579721,0.247861,0.710351,0.589629,0.349847,0.107341,0.868156,0.668885,0.244314,0.477735,0.0640126,0.667017,0.875613,0.435074,0.861847,0.988931,0.0426325,0.00724429,0.942373,0.847237,0.236886,0.402483,0.760387,0.240479,0.100271,0.651444,0.745805,0.746145,0.562525,0.229605,0.950023,0.270842,0.115321,0.361353,0.834651,0.72866,0.559026,0.195516,0.933457,0.630422,0.62653,0.381769,0.581385,0.320141,0.623593,0.722304,0.713648,0.221883,0.0653294,0.74035,0.964531,0.252983,0.130405,0.0996953,0.140833,0.169656,0.252325,0.0673078,0.0341202,0.5261,0.958067,0.114906,0.836785,0.0322826,0.441462,0.612671,0.39032,0.53254,0.599219,0.483834,0.666677,0.221868,0.306564,0.110029,0.196052,0.21223,0.276459,0.12111,0.127664,0.0621729,0.270687,0.382699,0.875921,0.035291,0.946085,0.589852,0.783526,0.143822,0.458534,0.739198,0.0341804,0.0938456,0.591703,0.457318,0.541547,0.531312,0.954395,0.558519,0.848635,0.786011,0.940124,0.350839,0.365326,0.923555,0.660918,0.94916,0.845472,0.20238,0.435815,0.32242,0.371329,0.869352,0.889675,0.382409,0.565353,0.151251,0.203833,0.553266,0.084169,0.703244,0.45703,0.914579,0.151407,0.6776,0.559837,0.454286,0.488062,0.0770712,0.357892,0.52512,0.569639,0.142978,0.578633,0.0631987,0.0568713,0.737461,0.209952,0.796024,0.637309,0.688315,0.131274,0.613367,0.817818,0.661776,0.620227,0.599954,0.601403,0.781406,0.602537,0.971873,0.00671905,0.177945,0.0868094,0.147136,0.172699,0.20372,0.183875,0.965049,0.198751,0.379305,0.712928,0.586035,0.753319,0.951391,0.700239,0.405663,0.799929,0.238707,0.159763,0.276615,0.695129,0.90029,0.783135,0.927873,0.643584,0.51777,0.0963081,0.607059,0.826038,0.578518,0.361065,0.3682,0.070222,0.665912,0.474497,0.906628,0.615057,0.92464,0.281324,0.715721,0.102908,0.0652412,0.95393,0.524935,0.695786,0.913196,0.862948,0.648711,0.945719,0.679734,0.984598,0.569259,0.440529,0.65328,0.956697,0.273953,0.894669,0.746282,0.979502,0.535393,0.987316,0.137409,0.564517,0.362088,0.950822,0.649099,0.257387,0.252064,0.888949,0.725532,0.0124905,0.882044,0.465476,0.732938,0.430175,0.506558,0.36973,0.276632,0.3472,0.821656,0.987587,0.877978,0.211156,0.889545,0.768748,0.631513,0.336715,0.811466,0.295604,0.868222,0.00786555,0.834428,0.236872,0.813448,0.308764,0.569146,0.721373,0.394263,0.203778,0.283305,0.962416,0.942406,0.941941,0.116218,0.0285719,0.421849,0.857418,0.221219,0.761754,0.635548,0.537703,0.282637,0.713626,0.391924,0.273703,0.611775,0.917856,0.80589,0.86545,0.101722,0.503402,0.761535,0.829907,0.163375,0.51284,0.912081,0.49658,0.804566,0.749329,0.348438,0.0746759,0.891492,0.652794,0.375575,0.546655,0.115192,0.0227272,0.319022,0.987444,0.686064,0.823709,0.883915,0.55085,0.462136,0.73352,0.655962,0.385543,0.326191,0.335822,0.652328,0.483592,0.715126,0.922313,0.0721234,0.760681,0.502039,0.211982,0.475516,0.753045,0.555624,0.457125,0.784918,0.503581,0.788525,0.234837,0.859823,0.933445,0.0123087,0.579287,0.359264,0.839002,0.261861,0.524691,0.378272,0.842393,0.927046,0.263327,0.630643,0.621105,0.246072,0.574871,0.01687,0.734281,0.448428,0.179345,0.0166495,0.705425,0.901752,0.580384,0.809032,0.224158,0.994412,0.25046,0.634955,0.655887,0.555221,0.0195006,0.955808,0.101786,0.381414,0.99516,0.935882,0.130344,0.911838,0.237487,0.633359,0.666574,0.194268,0.107759,0.655751,0.762294,0.153985,0.662734,0.857849,0.920614,0.633614,0.628666,0.911849,0.31543,0.171447,0.678339,0.553603,0.980749,0.811545,0.253443,0.339371,0.641407,0.775414,0.666647,0.479387,0.828183,0.189364,0.705635,0.571277,0.754954,0.0101824,0.363376,0.821811,0.433556,0.0804392,0.675348,0.580895,0.339135,0.0813297,0.158559,0.237714,0.0293275,0.444971,0.495865,0.796539,0.0825296,0.910003,0.935196,0.0311281,0.257381,0.916192,0.661516,0.416294,0.121276,0.0910483,0.249032,0.39722,0.272362,0.484336,0.499371,0.0461314,0.832486,0.99639,0.472745,0.110809,0.212731,0.0261328,0.828342,0.923794,0.0411642,0.450454,0.0398669,0.349501,0.884622,0.448614,0.920707,0.551398,0.389996,0.238574,0.997163,0.968928,0.947468,0.404297,0.0976863,0.81445,0.73518,0.0417329,0.164682,0.881317,0.0802369,0.251356,0.414083,0.654333,0.962713,0.341485,0.239938,0.547486,0.411051,0.81879,0.0100387,0.944174,0.241318,0.348495,0.365681,0.757011,0.543002,0.997491,0.148619,0.951748,0.886366,0.355639,0.0442184,0.881748,0.451373,0.0276728,0.958342,0.00398391,0.931991,0.309357,0.75812,0.856288,0.0181695,0.263948,0.393414,0.327843,0.616653,0.615916,0.783197,0.0664665,0.299928,0.152887,0.483017,0.714428,0.31358,0.619479,0.409721,0.612585,0.159462,0.775291,0.0227155,0.117496,0.669397,0.0353872,0.991036,0.572233,0.434007,0.690055,0.06315,0.171389,0.550496,0.740534,0.546089,0.157663,0.992505,0.131856,0.21433,0.617488,0.878817,0.991842,0.331621,0.282911,0.462515,0.695402,0.255695,0.0438886,0.407987,0.0630616,0.741936,0.932277,0.636913,0.239759,0.0761946,0.594438,0.458482,0.676236,0.283401,0.586293,0.402908,0.916161,0.0949675,0.0657606,0.898021,0.466043,0.101472,0.229505,0.021096,0.808931,0.452813,0.381465,0.0584651,0.346777,0.37075,0.0574963,0.376676,0.929724,0.33669,0.714677,0.676208,0.882955,0.779353,0.204337,0.628501,0.239908,0.688011,0.898244,0.31658,0.0795783,0.266209,0.890015,0.0504154,0.708049,0.528089,0.590773,0.0767073,0.98248,0.986153,0.470522,0.259732,0.709145,0.141865,0.947068,0.00492799,0.996346,0.750866,0.205951,0.291687,0.216015,0.786964,0.734087,0.295049,0.0353305,0.504017,0.357792,0.453296,0.445208,0.527239,0.976749,0.778867,0.180434,0.769487,0.833659,0.829,0.568232,0.290753,0.682911,0.186004,0.163592,0.334178,0.908786,0.599495,0.385844,0.187216,0.585872,0.501913,0.722455,0.61192,0.20917,0.268312,0.0230998,0.739971,0.229058,0.725091,0.123172,0.720676,0.971222,0.526763,0.0783111,0.592446,0.962168,0.490368,0.528731,0.478208,0.909301,0.188406,0.928804,0.361665,0.398257,0.883469,0.248477,0.0957511,0.446238,0.730342,0.0379012,0.623468,0.366701,0.0181829,0.462173,0.17159,0.208864,0.355765,0.125208,0.0912027,0.809838,0.348799,0.862185,0.8063,0.955856,0.194227,0.889065,0.244694,0.17534,0.0382746,0.539756,0.537679,0.965841,0.0359833,0.587352,0.808325,0.628794,0.784651,0.519433,0.21575,0.404181,0.612444,0.908987,0.783945,0.456246,0.398515,0.0070588,0.331497,0.494998,0.708411,0.438065,0.68792,0.869353,0.27792,0.667116,0.20505,0.480384,0.371264,0.15799,0.182049,0.526488,0.972596,0.149596,0.482311,0.509807,0.721627,0.103119,0.752527,0.727039,0.975113,0.932894,0.90875,0.798831,0.169824,0.545942,0.527831,0.915729,0.846218,0.114515,0.603492,0.449257,0.911373,0.897033,0.378974,0.121322,0.129641,0.0757071,0.403669,0.36675,0.52236,0.728652,0.541042,0.201275,0.256037,0.247058,0.0717584,0.249334,0.539494,0.29354,0.0613244,0.774858,0.794085,0.32771,0.257992,0.620535,0.844184,0.59418,0.548505,0.740683,0.199164,0.149205,0.904797,0.909746,0.798554,0.607063,0.676861,0.0803816,0.590461,0.509116,0.812793,0.413976,0.33958,0.786107,0.258094,0.499621,0.972876,0.110314,0.00588483,0.943559,0.922264,0.927222,0.816912,0.851703,0.50197,0.111038,0.784417,0.130979,0.312356,0.858634,0.347479,0.618548,|0.752871,0.740615,0.550436,0.456541,0.25584,0.971465,0.91264,0.836833,0.339789,0.836207,0.465445,0.853414,0.433859,0.553154,0.477338,0.36838,0.329826,0.613829,0.105169,0.360396,0.183573,0.272149,0.74832,0.190433,0.565244,0.641011,0.0303978,0.51289,0.198717,0.0413166,0.592681,0.856659,0.982567,0.212879,0.800156,0.0102007,0.859672,0.160885,0.901134,0.21408,0.173252,0.567242,0.501144,0.484908,0.170776,0.560752,0.174145,0.993132,0.0861627,0.799951,0.626763,0.228389,0.819266,0.00668609,0.326141,0.989435,0.804949,0.240485,0.734229,0.557282,0.279075,0.221153,0.834754,0.974359,0.973228,0.475392,0.703192,0.363424,0.50535,0.763684,0.652347,0.752864,0.970747,0.966307,0.0206581,0.626709,0.17279,0.000522971,0.0971841,0.826094,0.167165,0.700541,0.178416,0.719244,0.508595,0.128184,0.671895,0.950778,0.372386,0.896086,0.234086,0.5293,0.333601,0.796788,0.500532,0.268636,0.153989,0.176776,0.0870335,0.328721,0.553978,0.00752461,0.364192,0.794665,0.764061,0.658537,0.835967,0.764407,0.34353,0.415091,0.316985,0.6623,0.421068,0.699081,0.046553,0.257994,0.0123712,0.0611852,0.116919,0.453408,0.0294674,0.578486,0.66883,0.966462,0.621249,0.411759,0.161586,0.371966,0.017132,0.0980382,0.286124,0.899395,0.15777,0.0583106,0.752712,0.114687,0.13131,0.621551,0.132457,0.134518,0.225777,0.403801,0.130311,0.150399,0.304771,0.36007,0.602042,0.686231,0.45907,0.356738,0.596348,0.945316,0.680746,0.00224656,0.0151945,0.413334,0.720084,0.167983,0.513258,0.253538,0.815005,0.640211,0.0209903,0.646858,0.236245,0.616637,0.744538,0.580666,0.786651,0.334257,0.0293236,0.940209,0.94973,0.693834,0.920305,0.0546046,0.508388,0.239926,0.0826439,0.0515447,0.225926,0.494231,0.769249,0.621688,0.266413,0.678263,0.45382,0.713591,0.411761,0.48289,0.976595,0.768483,0.866296,0.0452648,0.447179,0.10381,0.511352,0.730622,0.0653191,0.4618,0.271178,0.0324135,0.0756012,0.562819,0.258215,0.440001,0.527393,0.495412,0.592418,0.665004,0.714015,0.344201,0.163219,0.523564,0.0729009,0.477218,0.773876,0.0591157,0.653677,0.00667721,0.83831,0.344705,0.717123,0.652537,0.491952,0.250427,0.17214,0.977938,0.544562,0.130863,0.17101,0.556453,0.751885,0.0687268,0.871742,0.643479,0.387656,0.913428,0.478858,0.241425,0.651046,0.29519,0.45923,0.274478,0.962957,0.508688,0.233064,0.96042,0.820032,0.934076,0.680512,0.595719,0.0204164,0.681353,0.86388,0.677562,0.595653,0.202196,0.822528,0.139342,0.757071,0.482759,0.397855,0.266469,0.140941,0.611428,0.605927,0.743913,0.2157,0.343481,0.288652,0.621791,0.210094,0.0478545,0.639981,0.152473,0.129312,0.389598,0.63323,0.96406,0.651396,0.210142,0.829078,0.974151,0.487327,0.00756001,0.0268134,0.918991,0.0588414,0.644303,0.300592,0.692646,0.995971,0.852195,0.993938,0.0731913,0.953359,0.771221,0.22136,0.245959,0.396038,0.483746,0.871024,0.612443,0.266587,0.31998,0.963907,0.211654,0.231158,0.608019,0.732069,0.0702185,0.0518725,0.131584,0.103554,0.299678,0.762013,0.941416,0.481486,0.13303,0.386897,0.896072,0.32378,0.579709,0.603813,0.731608,0.675733,0.0699195,0.569441,0.315573,0.425435,0.708675,0.0183597,0.288016,0.0140791,0.520252,0.255253,0.404295,0.20965,0.73049,0.508694,0.990119,0.897977,0.510726,0.0279876,0.234028,0.72502,0.874791,0.528779,0.881354,0.540746,0.749835,0.713745,0.1611,0.0422089,0.34727,0.435435,0.832417,0.906768,0.61211,0.231812,0.885204,0.232003,0.72439,0.0208737,0.500268,0.13677,0.800094,0.216012,0.25147,0.607593,0.223104,0.12355,0.300192,0.650476,0.701856,0.633349,0.789799,0.613698,0.21134,0.976549,0.897353,0.858619,0.51945,0.143273,0.257158,0.650782,0.290208,0.100133,0.534377,0.725862,0.492847,0.566148,0.19546,0.536768,0.964596,0.610199,0.682832,0.256011,0.142961,0.383827,0.63342,0.48559,0.146709,0.826061,0.381834,0.638389,0.520737,0.0762061,0.184827,0.407068,0.361901,0.549034,0.0633003,0.458703,0.265625,0.894424,0.905263,0.691775,0.566744,0.108299,0.145732,0.65639,0.802216,0.607091,0.852436,0.788345,0.465881,0.644409,0.612652,0.597512,0.244236,0.250106,0.398739,0.759673,0.904317,0.259115,0.953509,0.728068,0.686211,0.0126117,0.100589,0.749973,0.418556,0.179996,0.205282,0.925743,0.513398,0.624437,0.971606,0.322808,0.446421,0.62997,0.206773,0.489252,0.635785,0.140703,0.594588,0.154319,0.332008,0.593773,0.459763,0.759999,0.58761,0.639272,0.2891,0.0388122,0.780009,0.894951,0.131704,0.906878,0.389561,0.593043,0.0965598,0.835491,0.212986,0.916288,0.476846,0.442349,0.837137,0.945677,0.420164,0.639341,0.794003,0.639292,0.945954,0.847814,0.106337,0.268058,0.545045,0.878116,0.424375,0.732338,0.409622,0.229427,0.324726,0.220679,0.178675,0.106736,0.321674,0.629353,0.475431,0.13674,0.384441,0.595658,0.122743,0.970937,0.877161,0.570713,0.639079,0.380773,0.242705,0.0456124,0.26026,0.131962,0.104784,0.656977,0.759566,0.749603,0.999545,0.0817282,0.311663,0.497297,0.33119,0.769936,0.594698,0.34164,0.870684,0.363167,0.79519,0.474538,0.615015,0.240487,0.790807,0.578576,0.683761,0.194932,0.169932,0.201394,0.903616,0.906729,0.960546,0.983703,0.590875,0.54296,0.630553,0.425894,0.372081,0.690239,0.935611,0.518565,0.810193,0.481668,0.833162,0.360103,0.740442,0.837464,0.262381,0.0863987,0.73157,0.476307,0.335843,0.219266,0.211308,0.517088,0.314512,0.0468004,0.85814,0.187779,0.213085,0.759119,0.185949,0.353119,0.940981,0.489089,0.476702,0.91926,0.403844,0.160479,0.453766,0.840245,0.62425,0.637194,0.0327714,0.299832,0.967166,0.423623,0.395336,0.626086,0.810579,0.52607,0.968981,0.684239,0.722131,0.778296,0.837081,0.931183,0.728289,0.457533,0.931373,0.357198,0.226976,0.350997,0.116239,0.138595,0.982535,0.939125,0.374948,0.968017,0.370355,0.425281,0.966719,0.154809,0.130113,0.852356,0.474069,0.217306,0.160401,0.833284,0.0484192,0.524843,0.0644513,0.590635,0.856603,0.948037,0.634172,0.758682,0.840545,0.310264,0.400751,0.0237168,0.283375,0.387499,0.644308,0.782921,0.957491,0.525088,0.504967,0.369537,0.536375,0.568351,0.247048,0.00374728,0.266638,0.258623,0.150584,0.822796,0.874158,0.861839,0.354399,0.129923,0.847588,0.830588,0.707438,0.37738,0.324232,0.447974,0.16296,0.467103,0.391901,0.522419,0.154589,0.38136,0.530197,0.625408,0.228728,0.857485,0.698445,0.856281,0.732442,0.981533,0.265095,0.438202,0.1844,0.723446,0.762328,0.566443,0.40682,0.394062,0.959719,0.258266,0.251083,0.213316,0.580628,0.125704,0.877776,0.782203,0.525899,0.717622,0.449567,0.00383765,0.728098,0.816449,0.0690934,0.213317,0.242492,0.686957,0.463933,0.676005,0.96383,0.38915,0.288265,0.808456,0.932351,0.0795899,0.776407,0.756883,0.58118,0.566095,0.176609,0.304496,0.0455466,0.300627,0.960387,0.185654,0.348851,0.723843,0.180029,0.548642,0.91162,0.248269,0.0939685,0.0691748,0.390682,0.97955,0.805602,0.534406,0.747626,0.523606,0.0245878,0.789428,0.577345,0.650151,0.99359,0.184072,0.444292,0.250367,0.866631,0.443125,0.884107,0.977813,0.216769,0.0801672,0.0106292,0.721445,0.412177,0.960638,0.0960144,0.105514,0.708924,0.485551,0.676765,0.977763,0.0416701,0.501125,0.490597,0.496703,0.280089,0.672914,0.465586,0.308631,0.396017,0.0738461,0.36337,0.995747,0.190604,0.185542,0.230611,0.241177,0.522009,0.0939656,0.54292,0.205013,0.281781,0.922834,0.88152,0.640238,0.40963,0.378293,0.337265,0.502867,0.723717,0.242554,0.252249,0.548753,0.273449,0.518953,0.354596,0.800278,0.489775,0.909514,0.524228,0.774294,0.0330713,0.759006,0.0962601,0.75925,0.451076,0.864852,0.872571,0.100509,0.220513,0.700853,0.000420272,0.100688,0.0671318,0.729167,0.361773,0.603289,0.340495,0.308034,0.448623,0.390326,0.444654,0.321034,0.775774,0.484213,0.701733,0.788055,0.0265028,0.490445,0.858725,0.675651,0.402461,0.775022,0.108674,0.0668606,0.0252053,0.295408,0.298811,0.266504,0.218952,0.79703,0.351148,0.0453002,0.191396,0.650628,0.567146,0.115661,0.696259,0.766328,0.129216,0.408187,0.424331,0.930742,0.280378,0.930545,0.200387,0.205142,0.546731,0.088833,0.494974,0.97957,0.997969,0.66788,0.937864,0.341899,0.920453,0.275081,0.105572,0.252945,0.900562,0.881403,0.744817,0.31071,0.079932,0.919545,0.334527,0.210548,0.688708,0.644179,0.516372,0.822136,0.552736,0.603601,0.694859,0.987403,0.469991,0.0199595,0.679218,0.996436,0.84609,0.612536,0.492527,0.885297,0.791852,0.961242,0.309252,0.623164,0.673541,0.643295,0.728707,0.833537,0.940114,0.73904,0.885839,0.702667,0.193281,0.810163,0.137071,0.639288,0.101536,0.608146,0.155835,0.926274,0.0931855,0.504644,0.0239161,0.820513,0.99016,0.93985,0.568557,0.0264578,0.902956,0.239904,0.829489,0.469934,0.223912,0.311044,0.935727,0.237995,0.301106,0.234194,0.566448,0.317523,0.483705,0.342813,0.0468561,0.331238,0.776704,0.367487,0.930424,0.165652,0.27055,0.435858,0.284633,0.847132,0.76235,0.102143,0.120034,0.647045,0.0256323,0.977169,0.395565,0.281604,0.194681,0.315692,0.495694,0.825276,0.805419,0.636691,0.732888,0.49483,0.0635151,0.0197341,0.195397,0.794775,0.977626,0.425406,0.087059,0.306286,0.960944,0.301761,0.298015,0.463329,0.541218,0.627078,0.226603,0.644505,0.157382,0.910669,0.499688,0.673688,0.799071,0.657684,0.975804,0.174296,0.871638,0.950462,0.824178,0.904152,0.205325,0.708043,0.595535,0.0721884,0.108108,0.502949,0.0695132,0.286895,0.507594,0.406264,0.466874,0.869068,0.0846833,0.0527094,0.461171,0.216444,0.0831012,0.017262,0.9168,|0.585222,0.636657,0.897395,0.317876,0.133541,0.918618,0.0478876,0.271573,0.725368,0.55355,0.883724,0.21283,0.449239,0.111838,0.0346644,0.354042,0.316183,0.691197,0.302559,0.716027,0.0841996,0.427337,0.789748,0.161716,0.97344,0.117539,0.872709,0.490284,0.248858,0.760678,0.886014,0.654974,0.930818,0.225629,0.953148,0.404114,0.148402,0.468904,0.19364,0.525499,0.596512,0.480128,0.463164,0.979606,0.219659,0.776852,0.284461,0.451398,0.829258,0.917224,0.366674,0.173612,0.643198,0.720496,0.303873,0.133808,0.61388,0.755674,0.617612,0.384198,0.11944,0.177366,0.511375,0.353186,0.490188,0.609241,0.84339,0.769014,0.11862,0.142047,0.18821,0.174342,0.459644,0.420208,0.297043,0.557146,0.7671,0.66623,0.0197939,0.942674,0.619782,0.865363,0.159605,0.72102,0.438315,0.679753,0.721067,0.633258,0.345844,0.365276,0.424135,0.897072,0.455708,0.666832,0.610529,0.0233039,0.688251,0.116758,0.901994,0.299358,0.175221,0.251605,0.42227,0.0117521,0.921062,0.122163,0.0775081,0.153937,0.111392,0.0721411,0.759855,0.890743,0.177483,0.713823,0.852062,0.830818,0.952836,0.760545,0.980407,0.356963,0.407081,0.14859,0.56313,0.370566,0.264518,0.589322,0.310151,0.00625521,0.686407,0.900895,0.551316,0.754923,0.896525,0.647683,0.312322,0.180749,0.49648,0.818134,0.602256,0.822629,0.758987,0.35046,0.556054,0.613927,0.15617,0.191204,0.0949027,0.901092,0.241078,0.851287,0.399729,0.360448,0.722124,0.998927,0.315666,0.324882,0.0659608,0.541138,0.208093,0.0647584,0.293349,0.65779,0.664199,0.476583,0.856821,0.530417,0.924047,0.35976,0.578123,0.795635,0.42023,0.986708,0.114401,0.827126,0.572744,0.0205032,0.329665,0.0890393,0.187225,0.950998,0.0746558,0.94725,0.438728,0.799991,0.692499,0.467385,0.156675,0.358742,0.400175,0.643115,0.95561,0.875649,0.299698,0.415898,0.382054,0.799296,0.385292,0.947765,0.213638,0.800971,0.753594,0.632734,0.665136,0.0171711,0.0462583,0.796663,0.787874,0.610501,0.847847,0.439756,0.43534,0.531896,0.437527,0.682008,0.0708303,0.396975,0.0631581,0.361248,0.764135,0.508475,0.771412,0.904608,0.491438,0.635203,0.397158,0.146002,0.755733,0.528152,0.474398,0.903275,0.365396,0.215311,0.138878,0.776122,0.0690755,0.738718,0.882796,0.935939,0.508858,0.793729,0.629807,0.604029,0.57153,0.469081,0.124884,0.459819,0.00105542,0.859363,0.246498,0.395779,0.221346,0.436278,0.928234,0.820679,0.173772,0.55369,0.826631,0.011732,0.453658,0.911707,0.311321,0.0960569,0.405036,0.523216,0.934641,0.449682,0.298032,0.446408,0.433045,0.489049,0.0597081,0.937518,0.744523,0.204883,0.180369,0.772061,0.395977,0.0840755,0.492877,0.291005,0.411545,0.615494,0.923321,0.213931,0.665256,0.946039,0.0466086,0.169833,0.730425,0.940214,0.70135,0.324261,0.730149,0.229489,0.943127,0.160466,0.173465,0.0189397,0.987845,0.720711,0.0498807,0.131071,0.842736,0.649982,0.496452,0.437125,0.018324,0.155135,0.17456,0.144951,0.0143805,0.803875,0.0453011,0.626666,0.40024,0.273137,0.0863853,0.967997,0.0256171,0.457603,0.0279599,0.372437,0.568889,0.0898729,0.0111306,0.284788,0.154654,0.000751138,0.197242,0.270621,0.183926,0.151703,0.535424,0.982279,0.315214,0.97166,0.129719,0.956127,0.224466,0.0414698,0.759378,0.0196314,0.0476236,0.51801,0.15495,0.713726,0.359604,0.979642,0.566147,0.09637,0.402101,0.0389026,0.0785783,0.910837,0.851477,0.271818,0.813729,0.854185,0.497357,0.747695,0.418207,0.448849,0.0249604,0.55882,0.197151,0.178236,0.669129,0.439051,0.351806,0.965583,0.0779273,0.0209021,0.669434,0.475733,0.901419,0.616384,0.253129,0.501397,0.728193,0.364704,0.120381,0.367359,0.267901,0.605641,0.124722,0.0227103,0.450868,0.00211519,0.910263,0.774265,0.999868,0.258773,0.745632,0.365069,0.398323,0.387423,0.901802,0.801488,0.731988,0.973409,0.755196,0.885476,0.425079,0.959695,0.174939,0.247624,0.510796,0.389532,0.425866,0.289959,0.175108,0.382084,0.265647,0.806521,0.37595,0.213353,0.255753,0.408174,0.879471,0.913231,0.296753,0.295027,0.677389,0.72992,0.133731,0.944349,0.809266,0.445677,0.323709,0.751028,0.864991,0.475588,0.828923,0.181916,0.561682,0.424432,0.827284,0.668865,0.303842,0.509255,0.933052,0.906926,0.17635,0.821521,0.889459,0.0953063,0.177648,0.438031,0.508226,0.852057,0.891488,0.383947,0.14223,0.0238782,0.521994,0.315483,0.100839,0.0989693,0.963601,0.892061,0.779748,0.193286,0.314583,0.0681748,0.941989,0.114274,0.0768346,0.791409,0.284298,0.378955,0.313404,0.565872,0.307364,0.936611,0.890295,0.38638,0.530587,0.452804,0.239634,0.797415,0.242053,0.85298,0.390453,0.152042,0.810824,0.665816,0.00156558,0.428287,0.266729,0.954216,0.248932,0.556325,0.813094,0.0643663,0.40124,0.144724,0.692881,0.176051,0.00794822,0.118048,0.0456063,0.308104,0.297783,0.521889,0.432296,0.670845,0.163935,0.439573,0.796637,0.535924,0.709363,0.681269,0.680783,0.726935,0.564452,0.616136,0.564097,0.888139,0.947675,0.574543,0.636906,0.42659,0.945766,0.69621,0.309058,0.227896,0.764157,0.0437716,0.432848,0.925394,0.318549,0.563167,0.575917,0.612123,0.750151,0.387837,0.43596,0.193812,0.561031,0.973143,0.569241,0.902881,0.50572,0.20072,0.588975,0.188353,0.633125,0.950675,0.543031,0.17654,0.106617,0.645175,0.0700399,0.18414,0.856432,0.0585944,0.0713988,0.838329,0.685873,0.919578,0.224546,0.101622,0.869508,0.592692,0.961653,0.706583,0.37803,0.624269,0.873118,0.631809,0.556309,0.178806,0.118782,0.35632,0.690407,0.609344,0.12593,0.00708359,0.838882,0.563675,0.656227,0.345226,0.499698,0.795587,0.521852,0.197717,0.269792,0.0731199,0.684932,0.670577,0.893862,0.463038,0.781376,0.857484,0.908629,0.436474,0.54634,0.177598,0.380321,0.682871,0.344655,0.216661,0.740471,0.540987,0.636315,0.87294,0.0303808,0.171861,0.716458,0.671818,0.539248,0.0685443,0.240719,0.641992,0.665683,0.665467,0.335258,0.554223,0.288362,0.945874,0.285512,0.377903,0.962926,0.249518,0.607255,0.67725,0.763683,0.595247,0.133376,0.563227,0.287912,0.663989,0.625676,0.439944,0.152382,0.00254595,0.638794,0.349985,0.371895,0.242547,0.982612,0.916081,0.469866,0.0816243,0.539735,0.316705,0.0811625,0.0404053,0.518033,0.996247,0.578245,0.106318,0.768933,0.779597,0.150248,0.0224489,0.181088,0.741855,0.523755,0.146677,0.917421,0.346632,0.616286,0.244798,0.99766,0.121509,0.42008,0.128711,0.70868,0.080488,0.322978,0.454509,0.872212,0.917193,0.456086,0.73613,0.802075,0.513929,0.132371,0.580851,0.505619,0.596049,0.309347,0.675211,0.399335,0.79215,0.943762,0.064292,0.752729,0.715642,0.866696,0.448427,0.961908,0.568595,0.516242,0.74454,0.662169,0.245461,0.0403209,0.256098,0.663442,0.0150191,0.709071,0.858516,0.086129,0.341959,0.963746,0.581826,0.22221,0.479336,0.808977,0.855152,0.660639,0.4084,0.344054,0.566885,0.795939,0.736094,0.892134,0.265772,0.960188,0.95902,0.49036,0.135222,0.541716,0.801091,0.234413,0.117053,0.843998,0.510829,0.408552,0.593345,0.92526,0.461114,0.806552,0.51544,0.243171,0.609195,0.20354,0.88267,0.0561305,0.923526,0.480216,0.951281,0.604139,0.858164,0.877161,0.104326,0.840036,0.160562,0.744208,0.138839,0.969414,0.0466103,0.74098,0.513891,0.783414,0.135431,0.950264,0.556813,0.864148,0.135747,0.250887,0.18657,0.65722,0.0364172,0.35942,0.812118,0.740124,0.162975,0.175667,0.866246,0.437048,0.433694,0.337917,0.567739,0.975136,0.836599,0.490328,0.358136,0.299413,0.445487,0.235123,0.466558,0.77777,0.893387,0.68545,0.872097,0.578563,0.770424,0.452685,0.225444,0.112544,0.0159756,0.515067,0.946306,0.828687,0.0888285,0.973713,0.21422,0.62658,0.10198,0.345636,0.2046,0.943682,0.206834,0.666704,0.623699,0.188948,0.700781,0.964654,0.502599,0.26758,0.373415,0.647101,0.188944,0.0387263,0.59794,0.823238,0.404456,0.930375,0.434069,0.592486,0.276817,0.124332,0.035564,0.471578,0.457415,0.107951,0.581993,0.774494,0.366389,0.391412,0.0919752,0.177072,0.292578,0.227247,0.387511,0.91751,0.112791,0.951401,0.447917,0.939111,0.834188,0.158713,0.856341,0.816462,0.431742,0.217309,0.654313,0.258067,0.667742,0.314924,0.882165,0.17116,0.263165,0.873899,0.556951,0.927071,0.161713,0.130345,0.302012,0.864977,0.210563,0.135445,0.980231,0.4439,0.781418,0.186423,0.15453,0.648275,0.0607978,0.501226,0.0564981,0.863848,0.963198,0.723673,0.916245,0.0758712,0.77822,0.119722,0.436331,0.582718,0.376644,0.141922,0.349415,0.760875,0.124192,0.370991,0.478883,0.986778,0.891919,0.427485,0.809026,0.957692,0.197424,0.180407,0.342095,0.867293,0.317161,0.466058,0.507874,0.202608,0.4079,0.0662526,0.238716,0.396603,0.706111,0.765417,0.333109,0.0421482,0.588898,0.440077,0.490729,0.894144,0.034797,0.877245,0.857383,0.0290744,0.103591,0.205604,0.742436,0.711881,0.832537,0.278369,0.603468,0.000464499,0.197478,0.838469,0.273011,0.76033,0.618949,0.492678,0.356706,0.113245,0.0985535,0.668231,0.354315,0.448345,0.65429,0.226043,0.427058,0.033769,0.834317,0.386817,0.899224,0.379464,0.431252,0.891527,0.324139,0.981934,0.100705,0.471072,0.622015,0.550404,0.960179,0.746804,0.0413605,0.457936,0.400234,0.474649,0.661194,0.406082,0.243012,0.708343,0.923048,0.121851,0.965544,0.662099,0.503088,0.0268278,0.140415,0.70281,0.559219,0.699119,0.799501,0.0740488,0.86706,0.383787,0.0676657,0.371039,0.78755,0.798184,0.325408,0.0987959,0.612277,0.246648,0.0397683,0.827676,0.428564,0.990149,0.988332,0.210999,0.168535,0.749964,0.212019,0.527862,0.954437,0.127424,0.17298,|0.111532,0.14666,0.914481,0.0967164,0.707045,0.627027,0.417927,0.153335,0.0584068,0.973509,0.0419831,0.183858,0.955022,0.235442,0.543071,0.963308,0.466511,0.270143,0.479544,0.92259,0.816342,0.331053,0.273379,0.761209,0.605835,0.853215,0.191776,0.31886,0.105531,0.581052,0.226221,0.862318,0.79909,0.565776,0.563512,0.951262,0.114709,0.175986,0.857336,0.253243,0.0214762,0.205921,0.966784,0.197233,0.520706,0.554793,0.389014,0.421387,0.665538,0.562526,0.471012,0.613976,0.930904,0.952151,0.086158,0.566269,0.894187,0.801073,0.627702,0.692099,0.558763,0.698726,0.61409,0.749872,0.729953,0.706614,0.662343,0.588427,0.091866,0.889147,0.505999,0.524852,0.72407,0.618905,0.0494816,0.69252,0.634698,0.281462,0.819919,0.874368,0.254668,0.624902,0.209247,0.185471,0.311584,0.49337,0.114132,0.836406,0.342311,0.834801,0.120949,0.682393,0.0021717,0.50606,0.359056,0.188598,0.68299,0.546096,0.362887,0.415142,0.420768,0.239664,0.159438,0.00947261,0.730337,0.111453,0.925683,0.665132,0.303819,0.154873,0.0211791,0.112393,0.0863465,0.233772,0.999245,0.435777,0.292221,0.960488,0.638606,0.674416,0.0928043,0.973082,0.545916,0.724698,0.132134,0.855493,0.843344,0.472636,0.437841,0.305165,0.923641,0.25316,0.646681,0.424142,0.39037,0.853897,0.720347,0.905497,0.141198,0.645519,0.0329545,0.680169,0.4618,0.978884,0.815691,0.469674,0.143825,0.80876,0.0796787,0.580024,0.500415,0.974614,0.18741,0.0839365,0.0923287,0.0358592,0.0018453,0.0067246,0.258624,0.776845,0.302502,0.835093,0.858024,0.363926,0.659383,0.185781,0.189309,0.733495,0.622159,0.0558915,0.156993,0.822032,0.255555,0.115267,0.840706,0.0770454,0.785849,0.350534,0.851917,0.0302448,0.0686646,0.0743315,0.895005,0.492439,0.807036,0.32439,0.145624,0.843698,0.416014,0.631417,0.556907,0.537663,0.94661,0.578981,0.710719,0.746621,0.392475,0.519562,0.48924,0.9694,0.788997,0.891734,0.387871,0.420377,0.680187,0.317075,0.34789,0.0242748,0.428329,0.481734,0.591571,0.268551,0.122925,0.495486,0.29283,0.531697,0.44593,0.726334,0.82529,0.0847411,0.69939,0.83752,0.152488,0.807095,0.0596188,0.962711,0.909657,0.107967,0.00434464,0.557393,0.796491,0.225093,0.762982,0.558103,0.560156,0.346326,0.64862,0.752175,0.478223,0.870894,0.947181,0.542338,0.680051,0.52706,0.74516,0.868684,0.577245,0.330377,0.383601,0.127856,0.123193,0.872971,0.0571975,0.512647,0.812312,0.350607,0.677352,0.0432265,0.162799,0.760597,0.436464,0.902812,0.671595,0.743688,0.159812,0.441466,0.571332,0.184798,0.557911,0.921679,0.222892,0.366503,0.0975292,0.706663,0.675861,0.382185,0.00801802,0.198624,0.441168,0.885432,0.569854,0.78955,0.805288,0.509186,0.179903,0.802412,0.45442,0.583388,0.287403,0.308085,0.181303,0.0103912,0.767744,0.367562,0.901938,0.571735,0.735754,0.984112,0.0595731,0.895787,0.544846,0.901309,0.180676,0.0660605,0.919011,0.00789797,0.576849,0.190143,0.893247,0.989758,0.318948,0.361589,0.54965,0.126797,0.256051,0.211864,0.459756,0.111537,0.17295,0.128209,0.869766,0.330465,0.669242,0.291466,0.691807,0.960236,0.896329,0.789651,0.692479,0.643518,0.0590093,0.747115,0.802667,0.33308,0.883593,0.254345,0.400206,0.102932,0.991793,0.542422,0.0911405,0.00432336,0.0140335,0.31227,0.241454,0.633919,0.992614,0.326506,0.91865,0.0241226,0.981595,0.938713,0.256704,0.212793,0.520777,0.290259,0.455103,0.207198,0.386197,0.283077,0.711716,0.030148,0.725935,0.544255,0.391503,0.354876,0.20723,0.682223,0.861065,0.399314,0.516987,0.136679,0.742727,0.389547,0.643748,0.497423,0.786741,0.378176,0.75632,0.959131,0.859284,0.925701,0.825701,0.936502,0.912917,0.530625,0.0822495,0.196588,0.266348,0.415318,0.637172,0.198818,0.981995,0.978902,0.18674,0.871877,0.583242,0.697566,0.692104,0.798658,0.538148,0.266005,0.114201,0.511142,0.612122,0.238053,0.311618,0.664288,0.852888,0.315494,0.189347,0.326508,0.1403,0.329897,0.533109,0.586638,0.671547,0.378565,0.525141,0.764233,0.669817,0.0453684,0.420906,0.105782,0.135104,0.267207,0.67763,0.0143607,0.228702,0.827963,0.451502,0.422111,0.919863,0.890173,0.310032,0.862929,0.952785,0.0552343,0.438993,0.0240571,0.101556,0.777116,0.108234,0.0735118,0.66967,0.723678,0.911287,0.834581,0.750202,0.134365,0.222186,0.609142,0.0101576,0.505851,0.635551,0.760059,0.535904,0.266329,0.246608,0.429522,0.832728,0.207182,0.121233,0.423053,0.936669,0.608208,0.189588,0.641385,0.217515,0.697266,0.851939,0.679196,0.24619,0.99097,0.354276,0.89876,0.408362,0.0930604,0.597665,0.0506948,0.982752,0.0303127,0.369169,0.837271,0.735687,0.936425,0.908294,0.663813,0.908459,0.467753,0.875929,0.532696,0.642048,0.775528,0.821263,0.686339,0.274092,0.104229,0.98591,0.345001,0.882407,0.422376,0.0679581,0.731156,0.947547,0.349746,0.730895,0.518738,0.374199,0.491203,0.306161,0.373742,0.0083819,0.213276,0.0612002,0.753603,0.509902,0.618964,0.827455,0.983396,0.280446,0.889789,0.0926659,0.665672,0.584893,0.95328,0.23047,0.85724,0.389451,0.786901,0.219014,0.387199,0.851957,0.747183,0.543938,0.433962,0.131491,0.70635,0.323687,0.802471,0.0708325,0.236327,0.0966558,0.293064,0.222016,0.43288,0.730289,0.89451,0.606422,0.0417596,0.545821,0.0811051,0.976387,0.613247,0.506102,0.0127921,0.178803,0.773913,0.611795,0.000522912,0.667516,0.58978,0.0740117,0.74684,0.456117,0.185181,0.00110036,0.56271,0.132971,0.0334514,0.366385,0.231907,0.691331,0.172383,0.869774,0.217333,0.411734,0.154708,0.21388,0.337187,0.177176,0.468284,0.867688,0.0386109,0.7392,0.743863,0.200452,0.427621,0.693671,0.993497,0.344468,0.548838,0.613291,0.466271,0.105087,0.594794,0.107902,0.625677,0.616691,0.720484,0.798113,0.296235,0.251015,0.799261,0.868775,0.259631,0.829451,0.112981,0.588427,0.519009,0.784953,0.607701,0.44041,0.172617,0.043099,0.338748,0.528402,0.57065,0.96056,0.405359,0.539631,0.474895,0.228584,0.0305175,0.285888,0.00809395,0.223323,0.991716,0.137684,0.816283,0.694917,0.611744,0.207867,0.0650281,0.227114,0.525838,0.0136066,0.166823,0.367424,0.253346,0.936872,0.533588,0.425776,0.126242,0.838281,0.525247,0.462515,0.151797,0.92586,0.321057,0.890449,0.619987,0.0540833,0.0888277,0.105381,0.00258964,0.580955,0.651089,0.930875,0.879592,0.653995,0.0661396,0.193901,0.545682,0.929539,0.612929,0.942181,0.293409,0.909502,0.622138,0.16412,0.886822,0.899161,0.205811,0.0319151,0.297102,0.937746,0.539414,0.416379,0.801337,0.702986,0.799072,0.31087,0.264083,0.404471,0.0957966,0.40898,0.878431,0.0483183,0.491108,0.954362,0.872595,0.596864,0.397589,0.0361543,0.331957,0.0535079,0.0190123,0.777327,0.322242,0.724422,0.980709,0.729801,0.748423,0.191361,0.955507,0.217862,0.180296,0.03038,0.718943,0.926102,0.651047,0.790995,0.64401,0.884553,0.143024,0.872737,0.438849,0.0908046,0.393074,0.385614,0.745955,0.360602,0.15183,0.134274,0.679694,0.935782,0.607764,0.77871,0.806064,0.655508,0.109227,0.691905,0.918772,0.374816,0.0263415,0.663542,0.807639,0.759273,0.549546,0.780542,0.984732,0.0501882,0.816693,0.873887,0.697278,0.300564,0.103522,0.158075,0.163929,0.700949,0.437205,0.833224,0.975054,0.376198,0.451734,0.378425,0.995389,0.596737,0.670356,0.931149,0.164444,0.502396,0.92698,0.116202,0.231978,0.840348,0.981435,0.132409,0.179401,0.269877,0.477251,0.423789,0.442605,0.170275,0.818576,0.579196,0.801528,0.454409,0.582645,0.588257,0.341177,0.251882,0.458949,0.0800563,0.501599,0.133205,0.465879,0.891618,0.952529,0.73829,0.833914,0.643185,0.0683064,0.312542,0.515002,0.614091,0.544102,0.494996,0.87506,0.367554,0.776323,0.163349,0.489528,0.681555,0.137337,0.272714,0.103026,0.833653,0.587294,0.838252,0.920915,0.750587,0.18541,0.752452,0.843754,0.114133,0.082274,0.581073,0.386884,0.875484,0.522689,0.202591,0.367324,0.461571,0.372146,0.700248,0.88651,0.91085,0.85199,0.622697,0.591034,0.114597,0.776539,0.866178,0.840384,0.124332,0.613847,0.632061,0.395317,0.453788,0.336412,0.964201,0.555655,0.804112,0.8699,0.696693,0.285533,0.836582,0.395489,0.912158,0.0928798,0.334371,0.209132,0.56998,0.584153,0.496342,0.954117,0.638324,0.191509,0.457776,0.158265,0.47362,0.866749,0.799581,0.416473,0.909428,0.128779,0.835935,0.527884,0.0715774,0.403859,0.166564,0.683244,0.550897,0.853807,0.119875,0.575165,0.810736,0.349333,0.375395,0.313912,0.368516,0.865886,0.975107,0.465704,0.679632,0.453477,0.903276,0.32764,0.135482,0.244808,0.0211911,0.805761,0.843133,0.581666,0.909549,0.345735,0.306038,0.317176,0.445677,0.479673,0.435668,0.128218,0.716641,0.545759,0.483204,0.153895,0.974049,0.215359,0.844247,0.183323,0.582229,0.8024,0.174548,0.56207,0.955344,0.473009,0.573292,0.986306,0.303743,0.187541,0.665482,0.562554,0.742763,0.207118,0.735388,0.245566,0.0696504,0.760196,0.801152,0.949176,0.479318,0.619202,0.269494,0.793075,0.0945669,0.956604,0.715249,0.593487,0.867923,0.782707,0.63173,0.780198,0.0979666,0.566988,0.190956,0.912008,0.182985,0.834413,0.424842,0.259982,0.768491,0.520775,0.970116,0.404265,0.829227,0.315165,0.180189,0.60947,0.851334,0.441087,0.381323,0.193963,0.588408,0.709111,0.408562,0.755681,0.0336102,0.29198,0.794223,0.770701,0.269947,0.70448,0.187281,0.705633,0.65457,0.203119,0.186579,0.0313665,0.874702,0.32816,0.150239,0.434866,0.822933,0.604405,0.177051,0.987403,0.550504,0.487907,0.350617,0.774141,0.217503,0.748047,0.150664,0.229649,0.166856,0.22873,0.539902,0.517628,|0.59486,0.475944,0.0324656,0.89651,0.0478255,0.196972,0.0515897,0.555145,0.761055,0.255082,0.0609277,0.897796,0.561285,0.110023,0.835558,0.807035,0.0129691,0.855483,0.682185,0.175172,0.965215,0.109168,0.858269,0.475012,0.307265,0.408911,0.171909,0.874521,0.192544,0.977945,0.0126734,0.409463,0.323024,0.410693,0.377516,0.580075,0.201542,0.842617,0.344814,0.596479,0.29114,0.675188,0.045595,0.0213247,0.931551,0.77728,0.0905425,0.388926,0.870895,0.57348,0.601961,0.588516,0.959212,0.635352,0.388026,0.445877,0.359447,0.618854,0.660365,0.826973,0.293956,0.573597,0.0657109,0.842867,0.311661,0.232738,0.110758,0.278875,0.0799046,0.50165,0.0586597,0.612951,0.63056,0.697664,0.779253,0.467534,0.592871,0.926196,0.215786,0.477237,0.357016,0.37284,0.0590068,0.802621,0.237187,0.734267,0.87034,0.836406,0.899191,0.449201,0.677893,0.905173,0.692289,0.0741943,0.897796,0.771991,0.679541,0.820675,0.408514,0.686639,0.172773,0.749463,0.302935,0.444078,0.0961755,0.777704,0.55995,0.816445,0.209331,0.239275,0.787902,0.317857,0.551615,0.302127,0.777395,0.341216,0.465289,0.881532,0.0873696,0.388561,0.364596,0.499934,0.316321,0.506815,0.96474,0.971386,0.76578,0.164389,0.544431,0.919485,0.893836,0.159433,0.469568,0.353547,0.361011,0.807648,0.381771,0.884199,0.384358,0.531095,0.748721,0.242778,0.995837,0.916258,0.527712,0.842949,0.93936,0.509256,0.0632905,0.0148306,0.763174,0.873343,0.912061,0.745935,0.34856,0.35761,0.173037,0.0444131,0.805076,0.00624722,0.0203271,0.909512,0.916853,0.523512,0.0200455,0.445554,0.950673,0.85867,0.913127,0.0060541,0.768049,0.047183,0.0916204,0.177453,0.325519,0.706533,0.932626,0.265958,0.883364,0.247862,0.98226,0.190243,0.898746,0.560425,0.755859,0.268765,0.176411,0.576254,0.711467,0.490143,0.0204934,0.441605,0.181688,0.0662972,0.568015,0.657461,0.641622,0.763261,0.764757,0.301736,0.336272,0.572119,0.711681,0.13932,0.734782,0.454049,0.958833,0.768416,0.9094,0.0834563,0.0503718,0.125642,0.460636,0.755508,0.843263,0.280323,0.497201,0.868814,0.166949,0.230072,0.236421,0.979699,0.473812,0.473666,0.141668,0.850709,0.215124,0.543722,0.0783005,0.368422,0.752321,0.563854,0.691898,0.939104,0.265918,0.880518,0.387846,0.393537,0.00694174,0.935419,0.672646,0.71888,0.885239,0.78735,0.159041,0.319425,0.597512,0.135038,0.420758,0.922086,0.756622,0.627049,0.417375,0.325642,0.493283,0.659532,0.749473,0.959381,0.220048,0.676779,0.543127,0.613364,0.569538,0.630201,0.383168,0.137295,0.675558,0.0216931,0.0907245,0.28887,0.725443,0.881772,0.292821,0.271836,0.222424,0.246558,0.783168,0.843549,0.973246,0.798836,0.109434,0.991568,0.472158,0.505618,0.398061,0.339842,0.352457,0.934674,0.156683,0.564612,0.0115621,0.0209594,0.0866584,0.331858,0.750792,0.509948,0.680224,0.353917,0.0590653,0.297593,0.345327,0.333061,0.759544,0.0644981,0.118836,0.70188,0.675339,0.585975,0.619044,0.659156,0.518031,0.481108,0.954676,0.484557,0.422311,0.827446,0.904169,0.786945,0.155255,0.217674,0.741606,0.149867,0.692668,0.524501,0.370725,0.39485,0.868703,0.422807,0.94378,0.529854,0.530759,0.759928,0.781871,0.606194,0.24614,0.0912898,0.552838,0.000772357,0.447989,0.752553,0.409682,0.499507,0.678762,0.490527,0.400887,0.936377,0.692769,0.86691,0.262984,0.673953,0.0657499,0.581381,0.273363,0.214099,0.499422,0.905678,0.243345,0.174871,0.884594,0.547402,0.626098,0.873939,0.25662,0.724052,0.403144,0.748278,0.843532,0.113248,0.542409,0.782291,0.422009,0.363413,0.134768,0.00656712,0.623886,0.730749,0.286301,0.916479,0.53043,0.889428,0.635925,0.656711,0.135372,0.858876,0.024913,0.971088,0.331168,0.149262,0.442634,0.959487,0.765756,0.184993,0.409491,0.719756,0.134492,0.0971345,0.710428,0.933334,0.204032,0.329705,0.906916,0.791909,0.0331472,0.179281,0.145162,0.384305,0.205406,0.242806,0.0816962,0.702879,0.743619,0.113217,0.368356,0.714013,0.518207,0.608147,0.534689,0.834561,0.227984,0.970498,0.804005,0.370108,0.126773,0.865924,0.591577,0.118995,0.200301,0.395582,0.664101,0.888976,0.967233,0.44355,0.202091,0.307665,0.662671,0.913237,0.584352,0.225568,0.25482,0.532375,0.779328,0.275783,0.0127896,0.476847,0.635247,0.0852089,0.923748,0.288173,0.673241,0.0082491,0.191168,0.773391,0.871668,0.460005,0.00189257,0.290121,0.943593,0.504797,0.398249,0.0932271,0.0115338,0.8974,0.312796,0.223643,0.727392,0.680521,0.144018,0.218613,0.992761,0.0455073,0.188302,0.654132,0.858883,0.229926,0.219215,0.352998,0.055871,0.845791,0.0089398,0.575828,0.991697,0.803077,0.990443,0.955019,0.528518,0.74166,0.0483037,0.350432,0.141947,0.515825,0.624812,0.0366881,0.218897,0.581792,0.958131,0.252244,0.560296,0.769582,0.717725,0.331623,0.0778555,0.752825,0.498557,0.348841,0.892165,0.100596,0.0120262,0.291249,0.145577,0.72433,0.940965,0.720433,0.879154,0.893892,0.650908,0.819623,0.727166,0.873853,0.344209,0.826999,0.899264,0.759049,0.386527,0.0494263,0.410648,0.912131,0.217806,0.678815,0.521053,0.613756,0.98481,0.296638,0.131485,0.476606,0.0343837,0.792543,0.120294,0.498825,0.751626,0.815917,0.591849,0.164393,0.751015,0.401627,0.458934,0.301911,0.3265,0.856943,0.888612,0.37402,0.55065,0.319353,0.876571,0.571869,0.800456,0.412345,0.306256,0.393948,0.645176,0.859755,0.802536,0.215976,0.17521,0.765664,0.167082,0.28394,0.322686,0.886417,0.40258,0.823635,0.46861,0.438749,0.978494,0.821385,0.0410559,0.555385,0.135075,0.993256,0.16085,0.938455,0.841946,0.906008,0.216923,0.578045,0.659729,0.32319,0.916171,0.413266,0.103858,0.518013,0.63668,0.878919,0.538547,0.6595,0.0144526,0.180279,0.540725,0.526654,0.338413,0.725803,0.55783,0.24431,0.652935,0.965007,0.463274,0.340046,0.0685659,0.57895,0.962672,0.365759,0.598177,0.257611,0.757883,0.606921,0.828364,0.771089,0.444445,0.456351,0.850942,0.337113,0.52738,0.270758,0.992159,0.313314,0.779452,0.685582,0.256425,0.805447,0.0611479,0.797151,0.251589,0.0760684,0.376079,0.140167,0.674711,0.731243,0.0196568,0.436364,0.422827,0.545278,0.534827,0.611274,0.379607,0.35418,0.917838,0.747867,0.337777,0.396903,0.995703,0.390452,0.511375,0.413838,0.473286,0.191515,0.878425,0.571838,0.110702,0.537967,0.0974404,0.430791,0.753031,0.498906,0.653239,0.338352,0.854623,0.733805,0.208254,0.851501,0.749164,0.288368,0.719172,0.973086,0.104377,0.811806,0.687246,0.791172,0.527015,0.472415,0.839442,0.900801,0.0802011,0.904882,0.0215982,0.630913,0.702897,0.195315,0.679932,0.230534,0.567339,0.455058,0.109133,0.557824,0.961026,0.158473,0.887398,0.597681,0.214713,0.499297,0.303447,0.477425,0.468622,0.725955,0.4566,0.379523,0.450853,0.235419,0.375578,0.670237,0.0292972,0.683726,0.16889,0.121455,0.979934,0.0288837,0.852778,0.892202,0.503569,0.962762,0.898752,0.0673615,0.98587,0.934619,0.00250006,0.632626,0.670941,0.367658,0.784652,0.913638,0.907328,0.0973095,0.708512,0.534347,0.570268,0.0823653,0.887821,0.618347,0.789071,0.00816482,0.317253,0.975823,0.141549,0.941226,0.405828,0.760892,0.51024,0.431059,0.472275,0.903477,0.192287,0.362621,0.045729,0.626883,0.985442,0.00256741,0.678133,0.0352061,0.54697,0.709582,0.823334,0.42126,0.0136698,0.205137,0.979078,0.656125,0.804493,0.740438,0.31938,0.457669,0.128463,0.772398,0.184296,0.0349714,0.314752,0.651548,0.528345,0.566907,0.335819,0.374756,0.020642,0.533243,0.783074,0.409948,0.161611,0.294281,0.95054,0.388805,0.449516,0.84691,0.946692,0.0627709,0.345557,0.0508242,0.0330119,0.77374,0.87464,0.39049,0.373365,0.767443,0.525784,0.44114,0.736833,0.655434,0.378505,0.634773,0.631872,0.646831,0.176345,0.569963,0.68156,0.334842,0.956593,0.262141,0.695401,0.556942,0.74297,0.903369,0.796753,0.798089,0.500899,0.0802653,0.9562,0.702647,0.260446,0.826684,0.92801,0.278313,0.96204,0.51493,0.341509,0.700363,0.501297,0.242295,0.344672,0.61595,0.335185,0.289717,0.0727995,0.256149,0.384399,0.617171,0.707692,0.531192,0.562004,0.341243,0.306427,0.821326,0.225571,0.755777,0.98844,0.252242,0.0873372,0.392973,0.314402,0.0747212,0.117027,0.0569153,0.787493,0.740544,0.477101,0.65591,0.559903,0.823347,0.109,0.825107,0.408384,0.892401,0.700896,0.385235,0.286696,0.572274,0.000167251,0.833578,0.724503,0.561764,0.307252,0.0909165,0.663217,0.815825,0.662941,0.278396,0.739707,0.238534,0.987195,0.160458,0.534469,0.885325,0.618383,0.636838,0.32661,0.389242,0.40836,0.359419,0.101058,0.127882,0.203783,0.383408,0.922813,0.0280422,0.536252,0.768962,0.170004,0.294722,0.876102,0.42432,0.724431,0.695601,0.872953,0.305182,0.0349401,0.599782,0.682643,0.754907,0.531471,0.21076,0.50804,0.766185,0.0810221,0.625788,0.368433,0.0749581,0.486342,0.0985967,0.684717,0.68009,0.96742,0.643778,0.676806,0.537291,0.905156,0.753751,0.576555,0.145548,0.486812,0.413471,0.745465,0.386438,0.808527,0.417639,0.327034,0.420131,0.746648,0.628105,0.468605,0.180192,0.599482,0.0171494,0.0829955,0.85324,0.858423,0.281924,0.407066,0.506153,0.156732,0.211592,0.83175,0.594138,0.902525,0.621541,0.151429,0.510521,0.415035,0.756118,0.893131,0.330166,0.956035,0.403994,0.350315,0.179402,0.52686,0.664188,0.482372,0.989164,0.49561,0.472905,0.344734,0.378016,0.609817,0.771914,0.253581,0.246471,0.641778,0.0662659,0.078786,0.754514,0.191958,0.4425,0.86925,0.324213,0.863308,0.873309,0.182606,0.253959,0.122436,0.0556977,0.0298703,0.922346,0.645828,0.482684,0.208945,0.563954,|0.570049,0.765695,0.104185,0.996089,0.550121,0.0274619,0.122031,0.592373,0.681595,0.110566,0.352665,0.948428,0.329969,0.761753,0.623746,0.970874,0.722577,0.806166,0.560824,0.191569,0.759219,0.192453,0.0797746,0.767004,0.339559,0.940135,0.787103,0.934185,0.694148,0.466102,0.0696134,0.348692,0.257961,0.690514,0.156991,0.0592554,0.590302,0.0988625,0.203344,0.734259,0.272225,0.650369,0.764686,0.673636,0.903384,0.589174,0.0521641,0.587523,0.435035,0.128822,0.3159,0.645121,0.122241,0.143442,0.48023,0.0238493,0.186967,0.571883,0.453199,0.348401,0.767955,0.405993,0.160202,0.802498,0.391613,0.556687,0.188379,0.122479,0.505336,0.851728,0.349593,0.918118,0.0743676,0.0325626,0.701072,0.0174958,0.329297,0.217697,0.732121,0.53049,0.84379,0.448134,0.16862,0.684946,0.597473,0.135861,0.518836,0.182764,0.700996,0.0409595,0.424659,0.657422,0.610578,0.854631,0.20901,0.0962381,0.541186,0.913715,0.448892,0.245165,0.343571,0.824807,0.665538,0.0763155,0.558354,0.121023,0.0917733,0.440445,0.0423365,0.884107,0.658324,0.573196,0.762074,0.370884,0.102451,0.463056,0.662443,0.769906,0.521592,0.00250691,0.527381,0.574572,0.237536,0.756712,0.852754,0.344547,0.548562,0.248803,0.462188,0.920661,0.789438,0.908015,0.422175,0.303847,0.0755044,0.352116,0.602014,0.0932284,0.519483,0.197842,0.97656,0.0654583,0.232823,0.422972,0.43341,0.705337,0.416383,0.861106,0.586,0.252354,0.585297,0.414592,0.922358,0.026915,0.496459,0.39268,0.090054,0.16841,0.164479,0.532731,0.0361634,0.0775569,0.768135,0.689714,0.398601,0.036227,0.259822,0.0160337,0.732951,0.330405,0.997982,0.190091,0.214518,0.663674,0.854497,0.724348,0.0519088,0.13836,0.0860655,0.601242,0.481533,0.22991,0.97646,0.554538,0.28202,0.947932,0.269597,0.666028,0.403997,0.278474,0.746296,0.0452831,0.0483184,0.695497,0.218818,0.139596,0.117698,0.838763,0.91484,0.727884,0.944114,0.984146,0.0201423,0.182729,0.140178,0.339374,0.292117,0.899757,0.724277,0.335242,0.520542,0.97419,0.420069,0.24626,0.174553,0.781704,0.812099,0.0889652,0.398691,0.801194,0.388144,0.907886,0.535462,0.355364,0.497076,0.296382,0.795381,0.939438,0.167479,0.470809,0.544895,0.404213,0.851297,0.833142,0.166599,0.167287,0.160931,0.249346,0.903223,0.903098,0.0747883,0.524798,0.605761,0.229352,0.660568,0.805864,0.088123,0.654074,0.270822,0.613469,0.419233,0.945712,0.79995,0.615658,0.163389,0.201475,0.375585,0.548772,0.0526394,0.299877,0.592933,0.846408,0.427454,0.573517,0.571975,0.957564,0.0861029,0.102854,0.911696,0.908459,0.782534,0.626512,0.185674,0.0417209,0.808183,0.98536,0.177387,0.358875,0.0845286,0.767729,0.01497,0.741349,0.377595,0.871037,0.0525357,0.716819,0.474011,0.143705,0.355366,0.385108,0.034433,0.522792,0.0973167,0.348256,0.70805,0.0528243,0.775321,0.244574,0.975289,0.925197,0.568155,0.0295722,0.729125,0.0902925,0.255906,0.565643,0.877033,0.186082,0.112158,0.745517,0.944851,0.228251,0.307297,0.938459,0.960275,0.291189,0.558933,0.348681,0.663812,0.440779,0.523543,0.195451,0.994585,0.812656,0.123292,0.560798,0.399945,0.989306,0.857369,0.446649,0.55596,0.38307,0.435322,0.299402,0.603477,0.275655,0.897589,0.239067,0.484403,0.323173,0.62819,0.730821,0.00608653,0.491014,0.287078,0.358974,0.677247,0.515662,0.0745904,0.828979,0.0440939,0.336515,0.320559,0.134686,0.910566,0.725486,0.101988,0.531626,0.125635,0.344193,0.619899,0.0746203,0.663129,0.346219,0.44853,0.745072,0.340389,0.480048,0.191092,0.642955,0.545631,0.530578,0.813481,0.907878,0.893948,0.822562,0.647541,0.978328,0.195319,0.77708,0.220369,0.586837,0.238949,0.190062,0.0642602,0.215055,0.387592,0.451128,0.245331,0.801811,0.867293,0.352276,0.8747,0.446457,0.604071,0.771386,0.898456,0.0271968,0.636476,0.40892,0.141837,0.501956,0.973928,0.54192,0.695627,0.705307,0.341231,0.463229,0.329546,0.382863,0.0113965,0.205468,0.388438,0.877541,0.537321,0.547461,0.941046,0.683845,0.0954857,0.950832,0.448164,0.0344475,0.78503,0.129509,0.540862,0.529864,0.493736,0.685048,0.610862,0.809047,0.526681,0.892363,0.203428,0.799266,0.65494,0.0504533,0.272262,0.812409,0.0372474,0.564485,0.693884,0.420585,0.854768,0.603494,0.947549,0.705721,0.620706,0.654135,0.507339,0.221821,0.0543221,0.0169637,0.89532,0.710424,0.948116,0.577342,0.0382414,0.961559,0.590941,0.504884,0.882993,0.936381,0.452899,0.237589,0.103476,0.549467,0.478994,0.878157,0.748649,0.534147,0.985364,0.292378,0.704912,0.115512,0.650485,0.0928329,0.678572,0.490613,0.0986148,0.660355,0.776637,0.545106,0.472032,0.747235,0.419,0.499875,0.917557,0.193405,0.182156,0.751838,0.56977,0.467822,0.0551691,0.298469,0.465178,0.934286,0.0681769,0.546549,0.149686,0.871486,0.371783,0.56943,0.647781,0.870878,0.991375,0.835516,0.168028,0.838692,0.826635,0.76656,0.774999,0.318711,0.084078,0.91052,0.797211,0.794496,0.249201,0.477773,0.0898665,0.853915,0.65917,0.0618827,0.533062,0.79232,0.0923662,0.281235,0.480865,0.823737,0.0508116,0.492551,0.85154,0.750998,0.574842,0.517417,0.771088,0.627409,0.113891,0.654606,0.766024,0.451225,0.975041,0.0600157,0.474319,0.634959,0.396137,0.942847,0.263094,0.469418,0.199364,0.315178,0.619917,0.598312,0.870706,0.18174,0.48006,0.893584,0.861185,0.272231,0.356654,0.390786,0.131074,0.755405,0.133393,0.960497,0.774917,0.987422,0.479684,0.615374,0.518149,0.0865436,0.748589,0.302688,0.684253,0.0609307,0.755445,0.529164,0.787624,0.834694,0.59139,0.685406,0.0917138,0.299517,0.701174,0.0128275,0.153487,0.975139,0.160322,0.131066,0.330884,0.958307,0.650285,0.199536,0.589466,0.387306,0.0803384,0.787081,0.434201,0.119295,0.202639,0.777247,0.480042,0.83801,0.513719,0.597349,0.687056,0.587625,0.0793193,0.607924,0.343533,0.0684696,0.454562,0.907792,0.4961,0.700687,0.368851,0.30647,0.533081,0.102765,0.971058,0.0697892,0.616287,0.805858,0.893398,0.605307,0.812254,0.73086,0.498434,0.27013,0.327101,0.568168,0.119056,0.898502,0.696349,0.472046,0.390868,0.487182,0.748234,0.760518,0.270347,0.305838,0.940048,0.283344,0.652206,0.307515,0.440826,0.809911,0.076823,0.747995,0.313694,0.894674,0.54207,0.998709,0.00200808,0.504686,0.830455,0.42349,0.930582,0.393415,0.205253,0.214308,0.679467,0.0812354,0.834557,0.315874,0.109111,0.628987,0.740057,0.435236,0.330357,0.10023,0.585574,0.810595,0.00454295,0.218968,0.437343,0.72733,0.652069,0.511632,0.0927396,0.441141,0.957384,0.395381,0.88326,0.228824,0.381256,0.260822,0.997154,0.263101,0.984649,0.856294,0.539157,0.856721,0.542701,0.24172,0.602426,0.770353,0.353193,0.406791,0.199364,0.6508,0.838338,0.733083,0.747937,0.402034,0.246459,0.27509,0.29235,0.338108,0.850427,0.231736,0.979769,0.652268,0.861687,0.273489,0.194691,0.901686,0.60104,0.229859,0.929796,0.56647,0.900993,0.159675,0.910882,0.803743,0.86627,0.758849,0.897429,0.57202,0.0870025,0.530225,0.417391,0.674392,0.039227,0.975929,0.382526,0.730346,0.0636775,0.539585,0.698751,0.696755,0.828486,0.491449,0.512843,0.897677,0.989252,0.985176,0.915666,0.261972,0.888425,0.581963,0.399411,0.66806,0.304606,0.238764,0.991373,0.309181,0.302235,0.777133,0.263015,0.000887752,0.61509,0.254245,0.670168,0.577671,0.119923,0.276102,0.610099,0.422168,0.187772,0.899248,0.431605,0.759532,0.656722,0.371988,0.979619,0.842991,0.0110665,0.664867,0.92172,0.881329,0.40093,0.0567348,0.709265,0.20832,0.860229,0.0485763,0.272323,0.346271,0.581772,0.955834,0.312517,0.293217,0.640701,0.390474,0.0135593,0.852111,0.479053,0.02152,0.718122,0.871665,0.464638,0.724317,0.105028,0.735018,0.715639,0.356054,0.490358,0.344493,0.232488,0.266416,0.0573938,0.959486,0.352728,0.354857,0.371173,0.61255,0.363255,0.321243,0.708987,0.481917,0.0289963,0.814828,0.621225,0.210125,0.929029,0.473346,0.624381,0.922016,0.116671,0.0480118,0.944355,0.257627,0.445699,0.546845,0.353827,0.895172,0.114275,0.877224,0.772366,0.797603,0.584946,0.41917,0.0607657,0.751925,0.3298,0.523709,0.628974,0.813756,0.852003,0.567281,0.750649,0.818501,0.771028,0.937871,0.931232,0.0464364,0.479356,0.658805,0.680811,0.779397,0.296235,0.282192,0.255463,0.0323257,0.846606,0.614855,0.561377,0.880709,0.237165,0.278877,0.750162,0.312036,0.495749,0.202282,0.819332,0.880259,0.497486,0.0985449,0.539543,0.0825397,0.210106,0.849038,0.229241,0.690826,0.96252,0.717786,0.655619,0.923217,0.310654,0.65874,0.817158,0.968793,0.156688,0.0834062,0.998659,0.829689,0.345887,0.82695,0.532155,0.220706,0.93669,0.639917,0.420873,0.450615,0.981664,0.881445,0.698797,0.991033,0.00598735,0.207039,0.459198,0.399446,0.716062,0.353956,0.996185,0.944092,0.596243,0.913933,0.0752923,0.164262,0.395656,0.0380554,0.875357,0.611613,0.847104,0.859431,0.545054,0.554403,0.726598,0.871976,0.277532,0.294044,0.151215,0.176019,0.0550125,0.154798,0.106368,0.241603,0.32665,0.670968,0.570957,0.0921742,0.860808,0.82762,0.433257,0.152219,0.922491,0.286563,0.96436,0.32551,0.962724,0.00216508,0.682773,0.153951,0.811273,0.0448977,0.8367,0.949084,0.191427,0.286753,0.814046,0.0742288,0.941372,0.75602,0.832092,0.436186,0.780957,0.865495,0.749963,0.229599,0.352095,0.242759,0.913081,0.57402,0.925029,0.493304,0.70604,0.878988,0.252511,0.469799,0.722692,0.988583,0.885412,0.73036,0.414183,0.797016,0.218001,0.0169421,0.41667,0.159653,0.721341,0.508402,0.176828,0.0482014,0.573668,0.680678,0.0150929,0.802867,0.590018,0.210857,|0.370372,0.604297,0.730102,0.368911,0.359721,0.0993409,0.0527627,0.234246,0.0362585,0.859127,0.359296,0.525213,0.195782,0.143836,0.714723,0.0759035,0.515798,0.979319,0.369646,0.746707,0.0284681,0.425061,0.609281,0.164131,0.405476,0.254866,0.631169,0.54128,0.403325,0.12628,0.852697,0.982587,0.380963,0.70177,0.817406,0.959898,0.100179,0.713961,0.160157,0.280586,0.0207406,0.851951,0.0970688,0.659014,0.640311,0.537893,0.316195,0.286005,0.764454,0.98184,0.738439,0.347036,0.809943,0.151983,0.520343,0.685988,0.023899,0.236676,0.731699,0.417685,0.242109,0.771887,0.615719,0.574566,0.480364,0.157419,0.708783,0.586349,0.320767,0.778686,0.981273,0.0457541,0.624329,0.524097,0.379669,0.553137,0.845883,0.660961,0.0987052,0.845623,0.192101,0.612446,0.314156,0.858841,0.808677,0.44814,0.352565,0.362063,0.131407,0.234572,0.849302,0.760239,0.521358,0.483482,0.504962,0.919531,0.684428,0.958768,0.269844,0.316819,0.798139,0.1813,0.448872,0.29533,0.432085,0.56757,0.0561554,0.730471,0.236388,0.0782877,0.231842,0.82006,0.438086,0.351189,0.391152,0.638305,0.412747,0.0635733,0.834059,0.511976,0.253573,0.910008,0.957513,0.977497,0.555562,0.772245,0.790726,0.218277,0.628315,0.825871,0.588142,0.537616,0.654621,0.889103,0.833576,0.474242,0.231133,0.454318,0.0361182,0.488748,0.000705361,0.530441,0.333682,0.763438,0.122336,0.174471,0.503357,0.734165,0.6184,0.445287,0.510506,0.794529,0.499351,0.230272,0.856409,0.918549,0.268177,0.259464,0.137997,0.856591,0.950371,0.284875,0.36687,0.482289,0.118768,0.508644,0.749943,0.543673,0.109395,0.449603,0.838222,0.0223791,0.880674,0.234918,0.905228,0.829105,0.553416,0.910162,0.959661,0.812453,0.644857,0.163704,0.252168,0.13971,0.874038,0.951788,0.0632975,0.0237059,0.654465,0.576015,0.247388,0.698783,0.16082,0.785775,0.25136,0.602119,0.596079,0.799455,0.342525,0.0239108,0.97693,0.843894,0.289955,0.59397,0.00411224,0.137514,0.85811,0.499591,0.925422,0.36941,0.156473,0.174546,0.964263,0.746755,0.28034,0.106083,0.0549197,0.390403,0.569593,0.0913271,0.920646,0.889451,0.781886,0.711173,0.940489,0.726708,0.0737931,0.66232,0.890053,0.117424,0.95146,0.445506,0.590669,0.923852,0.9984,0.164977,0.118363,0.988849,0.989673,0.035957,0.968509,0.188926,0.953384,0.00664127,0.721241,0.503631,0.871121,0.93457,0.126419,0.731321,0.696397,0.793535,0.854361,0.182669,0.0249239,0.872433,0.756298,0.00985205,0.282746,0.103287,0.20989,0.751462,0.416817,0.958661,0.859716,0.156851,0.394556,0.598132,0.137303,0.911638,0.328911,0.715919,0.801726,0.94265,0.236785,0.686408,0.94128,0.451949,0.19025,0.910941,0.603941,0.177855,0.901647,0.272548,0.897343,0.697943,0.237476,0.631397,0.600019,0.376189,0.69155,0.818192,0.0894158,0.405276,0.148004,0.380526,0.724879,0.92085,0.278335,0.191919,0.981918,0.72814,0.227344,0.56267,0.945315,0.759276,0.591836,0.860743,0.701601,0.980998,0.768982,0.967384,0.98948,0.0336886,0.955159,0.125106,0.481054,0.254784,0.246046,0.850996,0.359616,0.489454,0.357454,0.785325,0.0203881,0.31587,0.559402,0.429452,0.78804,0.542409,0.541404,0.695041,0.0514901,0.714565,0.0268303,0.77034,0.441466,0.418086,0.855814,0.751977,0.120334,0.480798,0.920875,0.123228,0.0553629,0.427607,0.919213,0.30956,0.803199,0.643181,0.204066,0.500509,0.775657,0.00738508,0.456159,0.966558,0.593097,0.959521,0.275683,0.594658,0.656234,0.468115,0.638999,0.993869,0.39903,0.802549,0.0467113,0.807881,0.998382,0.684431,0.183539,0.198299,0.0617774,0.208577,0.0484241,0.602758,0.583409,0.285247,0.692031,0.458483,0.068285,0.874856,0.986614,0.532512,0.0780901,0.326756,0.939898,0.357885,0.875433,0.683536,0.567977,0.963225,0.200805,0.672809,0.818159,0.282903,0.206966,0.180592,0.470663,0.615498,0.394585,0.858547,0.929918,0.0408925,0.190179,0.309987,0.2376,0.381371,0.491562,0.209982,0.695698,0.439295,0.623042,0.570148,0.741629,0.204015,0.479358,0.391614,0.343947,0.144623,0.89938,0.232909,0.0307993,0.537998,0.368657,0.936095,0.40207,0.0784169,0.263466,0.707532,0.191816,0.0373138,0.447251,0.454609,0.191149,0.346285,0.94844,0.421753,0.265826,0.759433,0.706022,0.870926,0.325224,0.756238,0.11315,0.0349613,0.486265,0.371659,0.884432,0.203312,0.909268,0.0196438,0.124243,0.582259,0.843936,0.157238,0.782259,0.262385,0.121116,0.877079,0.566409,0.0808184,0.282682,0.500676,0.035691,0.633385,0.934113,0.579904,0.746368,0.986691,0.0460885,0.98832,0.737479,0.553849,0.0656883,0.865873,0.993223,0.998748,0.310017,0.831113,0.517899,0.872791,0.435688,0.148467,0.0137588,0.740074,0.907524,0.811332,0.468878,0.84361,0.631343,0.771531,0.469254,0.363871,0.186796,0.384348,0.120625,0.301217,0.737241,0.648261,0.00449425,0.336941,0.216076,0.811134,0.803133,0.290963,0.91168,0.261766,0.635397,0.431424,0.0920274,0.0198631,0.733277,0.0130346,0.150267,0.448886,0.0270978,0.592187,0.666223,0.681497,0.875959,0.284966,0.908567,0.846357,0.14216,0.994821,0.919117,0.922384,0.406939,0.605061,0.0297304,0.550292,0.413504,0.121207,0.342,0.915591,0.130598,0.566013,0.969295,0.563314,0.756397,0.888479,0.582235,0.671133,0.467822,0.938557,0.523709,0.977693,0.474531,0.291251,0.130767,0.91319,0.0812107,0.923207,0.726565,0.935595,0.500556,0.138464,0.314661,0.512877,0.833946,0.754201,0.409092,0.875138,0.435226,0.953951,0.679614,0.691354,0.365897,0.205559,0.955328,0.102209,0.149515,0.292135,0.736148,0.883542,0.315529,0.320528,0.0339162,0.244269,0.984723,0.450166,0.178883,0.934878,0.620096,0.599032,0.98279,0.519174,0.170677,0.776407,0.465529,0.0239563,0.178572,0.751137,0.951265,0.404167,0.71324,0.0751767,0.0216981,0.188967,0.00801444,0.503607,0.195205,0.0405724,0.565459,0.349572,0.988056,0.353497,0.884277,0.149972,0.42864,0.390766,0.280061,0.596532,0.608685,0.708288,0.330173,0.508876,0.924453,0.115408,0.921712,0.0816849,0.0570849,0.415637,0.409456,0.494267,0.734435,0.471885,0.86415,0.387918,0.585076,0.402229,0.5717,0.316547,0.303544,0.919832,0.0350393,0.60433,0.708218,0.512448,0.721586,0.177333,0.862857,0.416439,0.404699,0.483214,0.719569,0.475407,0.842349,0.286527,0.103533,0.702466,0.353153,0.0450687,0.436095,0.986673,0.425158,0.682786,0.0433056,0.327155,0.173722,0.564506,0.352612,0.352087,0.442144,0.692336,0.173709,0.0737114,0.769847,0.419932,0.838595,0.807225,0.175435,0.779513,0.981623,0.631561,0.880327,0.159847,0.756202,0.766181,0.273649,0.000254333,0.925555,0.889965,0.32099,0.0902579,0.62222,0.225954,0.727103,0.0354788,0.0235066,0.381793,0.159965,0.73677,0.0143355,0.109839,0.433667,0.663175,0.262346,0.374441,0.624185,0.102965,0.456602,0.227609,0.415979,0.800471,0.488884,0.331767,0.84736,0.14232,0.287342,0.575337,0.679129,0.884649,0.60811,0.32454,0.688478,0.643575,0.5499,0.536126,0.421277,0.81276,0.668088,0.0419461,0.893353,0.842414,0.424625,0.898688,0.0304514,0.642238,0.545059,0.113996,0.901476,0.627398,0.68598,0.455177,0.626198,0.625423,0.400074,0.286308,0.965512,0.944803,0.0410577,0.993813,0.14038,0.279499,0.0923893,0.258236,0.237084,0.355067,0.182491,0.509876,0.625268,0.801377,0.518056,0.0985715,0.839844,0.689911,0.0249831,0.658783,0.964968,0.785905,0.269016,0.340017,0.662843,0.0439506,0.750243,0.815884,0.0551505,0.894858,0.393359,0.248267,0.908621,0.685356,0.304893,0.411437,0.712248,0.51667,0.654798,0.580916,0.743601,0.604792,0.704098,0.410866,0.935493,0.781979,0.252128,0.30528,0.3117,0.273687,0.938829,0.216256,0.92074,0.249475,0.8528,0.47613,0.56149,0.616971,0.317326,0.979976,0.544382,0.918456,0.232647,0.684058,0.663132,0.811671,0.84044,0.708076,0.409741,0.12411,0.57613,0.0624309,0.0188032,0.958483,0.771664,0.142532,0.747748,0.129797,0.809785,0.109375,0.493642,0.900487,0.301603,0.984643,0.734858,0.841116,0.149777,0.645586,0.778372,0.318722,0.596783,0.865586,0.137343,0.533494,0.0305744,0.0995888,0.00506151,0.592212,0.178007,0.223584,0.786194,0.42843,0.894822,0.294265,0.292131,0.029768,0.242669,0.643684,0.159183,0.958699,0.757948,0.608216,0.405668,0.941298,0.612211,0.154091,0.302464,0.421152,0.860119,0.568893,0.298973,0.362396,0.962849,0.0608078,0.128825,0.750557,0.981249,0.494575,0.599256,0.559752,0.192765,0.0196971,0.845114,0.305054,0.541897,0.61164,0.00199801,0.38211,0.763216,0.0712622,0.315773,0.356068,0.32405,0.231134,0.40198,0.518178,0.966226,0.240724,0.643906,0.000505984,0.57852,0.364116,0.88332,0.548543,0.982467,0.762787,0.770133,0.0923086,0.41591,0.901169,0.30658,0.733044,0.673811,0.867736,0.392289,0.45831,0.449255,0.0777736,0.33396,0.057703,0.0474229,0.53764,0.213154,0.166831,0.0798028,0.542623,0.00390351,0.979203,0.0826219,0.537237,0.773998,0.86691,0.778822,0.15952,0.543205,0.585569,0.327149,0.610582,0.850038,0.196305,0.679336,0.402452,0.225368,0.144566,0.939664,0.897429,0.836258,0.917106,0.995426,0.395587,0.967814,0.449287,0.0552768,0.0885634,0.66143,0.18942,0.87693,0.53041,0.927762,0.984553,0.843026,0.244883,0.319769,0.759263,0.841638,0.4443,0.967688,0.0572845,0.531359,0.219853,0.263716,0.746606,0.143737,0.615782,0.675436,0.896372,0.965703,0.897188,0.443314,0.361851,0.20335,0.826458,0.40526,0.0675343,0.951925,0.721219,0.958818,0.652208,0.970398,0.539036,0.690923,0.00892365,0.0560292,0.781208,0.972864,0.467283,0.89844,0.662748,0.981228,0.595183,0.302984,0.729328,0.422778,0.458945,0.750505,0.373033,0.667478,0.149895,0.478154,0.281706,|0.512647,0.558862,0.372337,0.0731742,0.760696,0.947212,0.127344,0.791039,0.159005,0.800486,0.626929,0.531169,0.321346,0.160283,0.155712,0.842086,0.823137,0.95789,0.58779,0.99962,0.691091,0.780152,0.811684,0.98366,0.748898,0.762083,0.62511,0.419086,0.137267,0.146197,0.81451,0.363585,0.134863,0.136606,0.708576,0.557181,0.228896,0.0990453,0.210723,0.555513,0.27529,0.892514,0.594914,0.0760361,0.919806,0.0784596,0.684908,0.393173,0.956988,0.221907,0.651097,0.595404,0.905997,0.684728,0.517058,0.81725,0.930003,0.169718,0.696849,0.504968,0.498029,0.554248,0.671145,0.090898,0.67833,0.838146,0.335105,0.281333,0.347745,0.211146,0.0340285,0.346392,0.63777,0.673685,0.701505,0.231536,0.258568,0.735866,0.0322369,0.841925,0.0352342,0.677086,0.559832,0.0768969,0.187998,0.214415,0.770998,0.307829,0.70448,0.575609,0.784842,0.351587,0.926745,0.696415,0.389796,0.253285,0.155808,0.73278,0.911355,0.28637,0.592029,0.863557,0.284605,0.250168,0.795439,0.952425,0.585724,0.173132,0.692266,0.130224,0.809527,0.619446,0.907631,0.548898,0.551214,0.992727,0.868604,0.38976,0.539236,0.908282,0.181974,0.32632,0.257565,0.369195,0.469891,0.660962,0.586773,0.883921,0.900725,0.267411,0.676058,0.129824,0.516339,0.0947579,0.976243,0.153873,0.547815,0.972551,0.356324,0.909621,0.775263,0.394336,0.886194,0.315167,0.0117142,0.895779,0.549295,0.631217,0.353431,0.335246,0.439691,0.758127,0.796466,0.954083,0.152033,0.208871,0.0392125,0.749965,0.315572,0.217018,0.591087,0.189852,0.89559,0.702417,0.475108,0.158986,0.503616,0.0808151,0.322794,0.748618,0.615457,0.486819,0.201857,0.0180188,0.353178,0.875753,0.717492,0.974975,0.458496,0.388661,0.35641,0.892158,0.405612,0.67351,0.0849301,0.183219,0.962035,0.295085,0.792453,0.976263,0.104859,0.578599,0.232426,0.583556,0.197906,0.567823,0.221698,0.136267,0.0605456,0.635292,0.558016,0.915309,0.346315,0.192462,0.378946,0.466653,0.813446,0.448654,0.377445,0.461114,0.658074,0.0897961,0.426735,0.421804,0.926051,0.597742,0.558445,0.950275,0.438247,0.361047,0.307842,0.490753,0.849725,0.407029,0.502826,0.901488,0.877215,0.00973642,0.803461,0.0678693,0.509484,0.75011,0.18525,0.170067,0.513293,0.63276,0.630442,0.190487,0.801596,0.94036,0.781161,0.449007,0.231245,0.0608931,0.0457174,0.26422,0.801135,0.856459,0.900582,0.86104,0.0998586,0.254001,0.162152,0.496228,0.95129,0.460671,0.696056,0.422742,0.77083,0.332929,0.596173,0.653267,0.267871,0.251252,0.0766323,0.819028,0.615257,0.384933,0.157676,0.796851,0.219752,0.924976,0.467128,0.78712,0.649629,0.187525,0.382327,0.927417,0.492181,0.459977,0.304319,0.86618,0.58591,0.890068,0.462107,0.192761,0.300862,0.708193,0.332631,0.708644,0.216133,0.159919,0.364128,0.132416,0.465897,0.583825,0.475637,0.862556,0.101494,0.365544,0.233249,0.855075,0.204539,0.268603,0.779543,0.398948,0.696915,0.428455,0.172523,0.883975,0.648957,0.162344,0.450495,0.582192,0.844256,0.73798,0.833127,0.696795,0.268256,0.612605,0.800792,0.832397,0.206951,0.282578,0.0175721,0.97029,0.189713,0.0195985,0.162994,0.870764,0.452207,0.957954,0.373169,0.844574,0.241034,0.520246,0.692603,0.604193,0.00514758,0.43983,0.183668,0.868786,0.904175,0.607416,0.757062,0.588625,0.769031,0.785455,0.332626,0.785171,0.198828,0.0702306,0.0657514,0.336451,0.0143008,0.0215154,0.486138,0.315309,0.0521515,0.123718,0.901733,0.862014,0.904791,0.909941,0.605461,0.0848764,0.0916008,0.349566,0.531182,0.219177,0.795414,0.750393,0.135714,0.494827,0.675048,0.493778,0.722069,0.977583,0.9769,0.910194,0.87005,0.87247,0.400486,0.200787,0.419617,0.474785,0.479607,0.639651,0.959491,0.639547,0.988453,0.689864,0.345947,0.636835,0.282593,0.82789,0.209671,0.300633,0.974839,0.511526,0.900871,0.839295,0.683417,0.603445,0.996512,0.426498,0.139788,0.397827,0.98189,0.996481,0.934477,0.0142987,0.775754,0.283901,0.943873,0.920753,0.736945,0.940142,0.596923,0.404673,0.925293,0.235148,0.375166,0.453792,0.916376,0.192585,0.114979,0.936418,0.310217,0.562549,0.714357,0.74316,0.321859,0.953562,0.048479,0.658314,0.589194,0.75661,0.6499,0.175888,0.969807,0.798051,0.527245,0.660373,0.439103,0.555991,0.7587,0.565895,0.170145,0.470298,0.266083,0.926614,0.773844,0.740982,0.0365022,0.0874617,0.198604,0.677319,0.0471596,0.197672,0.0626777,0.668045,0.250874,0.396105,0.224326,0.57448,0.499395,0.586179,0.950834,0.532879,0.533072,0.112773,0.768311,0.795697,0.666084,0.826904,0.196151,0.919354,0.682751,0.284218,0.84126,0.371462,0.119432,0.0725628,0.712897,0.0375064,0.866143,0.440761,0.495584,0.768603,0.0120797,0.900715,0.0314191,0.474801,0.280071,0.0670289,0.439539,0.0482609,0.215017,0.617426,0.800586,0.60233,0.445421,0.424294,0.283905,0.263914,0.966045,0.329685,0.641338,0.158985,0.685045,0.0702073,0.0617306,0.533647,0.832291,0.330401,0.00303024,0.200794,0.513258,0.819053,0.556835,0.886786,0.29515,0.726958,0.984007,0.164778,0.173125,0.977782,0.048412,0.605402,0.0444592,0.210288,0.40746,0.51544,0.388035,0.352146,0.00655824,0.429884,0.798636,0.652852,0.665296,0.904588,0.941937,0.370204,0.451982,0.13006,0.327493,0.556462,0.886751,0.460214,0.868202,0.667845,0.0352743,0.766007,0.540638,0.671286,0.226895,0.643418,0.774553,0.346258,0.789469,0.455189,0.242748,0.203551,0.814431,0.474444,0.228875,0.673631,0.45708,0.789028,0.455096,0.299117,0.821794,0.317492,0.933759,0.626956,0.798812,0.854523,0.2167,0.927099,0.919458,0.282055,0.207869,0.838623,0.271412,0.203057,0.484532,0.0762925,0.184742,0.937603,0.900092,0.324575,0.606952,0.618089,0.130008,0.386855,0.902532,0.0878073,0.492192,0.323902,0.781662,0.858695,0.319156,0.554841,0.506734,0.351393,0.57499,0.574296,0.198059,0.573177,0.268542,0.970373,0.482983,0.826951,0.538065,0.110505,0.527428,0.234806,0.0734969,0.000927627,0.941069,0.628701,0.835872,0.415887,0.400249,0.176637,0.395606,0.0896443,0.406385,0.32943,0.594885,0.817629,0.354281,0.292108,0.956897,0.44001,0.626748,0.00619477,0.0987256,0.470499,0.538677,0.426202,0.114434,0.46612,0.0437288,0.750101,0.0210353,0.405121,0.619216,0.809454,0.357514,0.3313,0.374008,0.511481,0.127904,0.504318,0.0820324,0.573402,0.589105,0.663501,0.162215,0.825086,0.39251,0.916499,0.848875,0.46031,0.368666,0.00728714,0.148968,0.441392,0.374122,0.93499,0.12392,0.563746,0.0402524,0.728859,0.328679,0.636618,0.726442,0.365973,0.168819,0.750592,0.814475,0.0423594,0.804969,0.539164,0.840785,0.0328003,0.278855,0.446638,0.898725,0.675241,0.250924,0.124947,0.0724218,0.535053,0.989515,0.5371,0.576372,0.961831,0.899257,0.133801,0.472461,0.740167,0.822959,0.634371,0.308,0.0217472,0.878248,0.183972,0.116577,0.876105,0.832999,0.907094,0.342668,0.524697,0.0593068,0.804169,0.677405,0.667957,0.851696,0.922518,0.440946,0.920835,0.25862,0.425842,0.424726,0.563201,0.0257322,0.649505,0.170329,0.019434,0.679933,0.66889,0.86524,0.633989,0.676534,0.144037,0.0882689,0.0335655,0.578657,0.969037,0.345866,0.759449,0.682896,0.91069,0.945899,0.647558,0.4347,0.347934,0.572906,0.53581,0.536864,0.934366,0.511206,0.634404,0.129204,0.774342,0.655735,0.804587,0.0544312,0.396532,0.138103,0.737918,0.0432906,0.698611,0.459699,0.546601,0.387007,0.161733,0.930376,0.179196,0.693982,0.753404,0.515838,0.356184,0.403813,0.256918,0.675841,0.255369,0.356725,0.675755,0.357722,0.0839251,0.751268,0.12652,0.284691,0.895216,0.489899,0.749355,0.569869,0.742059,0.339845,0.0402733,0.425361,0.55443,0.298178,0.240675,0.623567,0.701388,0.15109,0.0414512,0.826562,0.640079,0.701316,0.239612,0.46788,0.19201,0.609951,0.429729,0.74905,0.396426,0.860133,0.477046,0.139469,0.228977,0.922378,0.391935,0.657957,0.366296,0.475943,0.644462,0.200136,0.759147,0.93407,0.143843,0.426226,0.360841,0.435584,0.467581,0.841031,0.452419,0.543213,0.242963,0.575231,0.131407,0.733419,0.578159,0.515992,0.31763,0.744657,0.154071,0.850784,0.617863,0.0838573,0.322977,0.456538,0.186149,0.717617,0.26748,0.711185,0.584803,0.356805,0.553947,0.786412,0.325556,0.931569,0.904178,0.852933,0.0265515,0.846504,0.538302,0.118312,0.639613,0.4408,0.566836,0.703161,0.173561,0.62131,0.670854,0.844838,0.319779,0.399319,0.49914,0.138879,0.788197,0.473987,0.0151352,0.495571,0.943705,0.623368,0.463272,0.758092,0.360309,0.766635,0.120412,0.556173,0.500375,0.212007,0.325749,0.0199361,0.0990037,0.923953,0.696662,0.804443,0.668936,0.529948,0.959775,0.211346,0.874379,0.819076,0.839959,0.260849,0.913389,0.734653,0.982911,0.356744,0.806481,0.113485,0.381179,0.949784,0.78593,0.439188,0.747101,0.341766,0.0863198,0.865158,0.940837,0.253911,0.706726,0.691321,0.813279,0.103431,0.633322,0.644901,0.145759,0.619295,0.477568,0.527294,0.868351,0.698403,0.614958,0.74675,0.700761,0.314378,0.0669618,0.22412,0.998976,0.809942,0.50251,0.105548,0.892775,0.648039,0.682575,0.12202,0.723682,0.0662189,0.211675,0.149465,0.467198,0.912023,0.558768,0.217347,0.954515,0.533478,0.216866,0.667019,0.152452,0.758427,0.00167561,0.808856,0.65168,0.189076,0.204112,0.906031,0.351562,0.464551,0.0761682,0.890796,0.204374,0.293461,0.104116,0.482306,0.470826,0.82895,0.400713,0.698284,0.52084,0.515581,0.357024,0.542224,0.935064,0.912903,0.825426,0.634506,0.746585,0.210384,0.736389,0.83939,0.97154,0.328041,0.14135,0.291855,0.626616,0.7168,0.482206,0.328743,0.136208,0.486193,0.226122,|0.581709,0.62104,0.371878,0.82629,0.887863,0.654699,0.832858,0.512693,0.315842,0.195811,0.20478,0.814335,0.12344,0.0033927,0.96309,0.695709,0.0772084,0.407143,0.044125,0.299993,0.533482,0.13412,0.120431,0.476082,0.844625,0.74558,0.811642,0.204216,0.679727,0.437788,0.489162,0.796242,0.0032118,0.966435,0.627341,0.876485,0.244868,0.620959,0.748974,0.311874,0.979902,0.421783,0.141684,0.692273,0.587153,0.441919,0.440419,0.815444,0.669587,0.889711,0.652515,0.0244523,0.238628,0.636065,0.0605285,0.884314,0.60171,0.66157,0.739952,0.0970361,0.673791,0.850592,0.247959,0.0222068,0.183388,0.142377,0.159588,0.753921,0.90084,0.925364,0.632877,0.178929,0.990683,0.301308,0.551405,0.589211,0.962108,0.659363,0.372029,0.310958,0.482639,0.10854,0.55514,0.217143,0.355909,0.951912,0.63987,0.458661,0.931644,0.560801,0.123823,0.971261,0.620478,0.080494,0.600605,0.106793,0.155947,0.963608,0.282641,0.218912,0.25054,0.240608,0.986789,0.606008,0.67496,0.182432,0.0583009,0.539942,0.356918,0.520012,0.713063,0.280537,0.683889,0.429113,0.958994,0.630292,0.736645,0.688387,0.587622,0.0750981,0.281236,0.254589,0.958904,0.869305,0.708904,0.118082,0.169629,0.437373,0.887502,0.240823,0.0943617,0.156287,0.506504,0.274754,0.280664,0.934626,0.302253,0.871612,0.568653,0.493666,0.500093,0.306015,0.895506,0.545121,0.851614,0.762635,0.852984,0.786252,0.638056,0.933531,0.738822,0.763252,0.909364,0.279968,0.598337,0.65798,0.4831,0.825384,0.339164,0.854944,0.52248,0.198313,0.026924,0.941295,0.753252,0.278219,0.625886,0.176001,0.874223,0.0417787,0.0999993,0.0662663,0.603618,0.869531,0.733348,0.290452,0.698754,0.306435,0.103797,0.891395,0.625688,0.322593,0.321204,0.0850991,0.747178,0.85179,0.804003,0.620933,0.881642,0.556148,0.664161,0.144895,0.576582,0.966081,0.152288,0.751063,0.730824,0.235088,0.387227,0.718284,0.965634,0.890815,0.0273977,0.465607,0.432669,0.177232,0.641106,0.226212,0.140475,0.394371,0.1989,0.196342,0.531176,0.641426,0.91105,0.601626,0.0314041,0.328831,0.539228,0.300977,0.771621,0.7381,0.668222,0.226802,0.528152,0.955345,0.44064,0.434284,0.472709,0.998174,0.436403,0.183034,0.464698,0.496019,0.771433,0.911136,0.69856,0.635651,0.811238,0.245427,0.0119927,0.374898,0.599298,0.883449,0.289577,0.58812,0.99495,0.400198,0.920289,0.941155,0.806188,0.0113402,0.647096,0.319453,0.66705,0.801692,0.156966,0.66378,0.367518,0.727826,0.674783,0.0721846,0.22725,0.410003,0.673933,0.762044,0.518055,0.0488466,0.308309,0.444169,0.766564,0.939022,0.0309519,0.842545,0.665152,0.486305,0.314433,0.926723,0.365264,0.991034,0.112754,0.0822796,0.755152,0.523458,0.70588,0.131372,0.97071,0.942378,0.552725,0.69907,0.00525528,0.582946,0.542185,0.940418,0.485987,0.529294,0.358665,0.838823,0.431517,0.00982505,0.303589,0.880087,0.772183,0.865507,0.695515,0.95602,0.480039,0.114324,0.698029,0.296118,0.358426,0.504293,0.729938,0.927798,0.597677,0.927119,0.970641,0.693148,0.61257,0.77173,0.0296274,0.816207,0.701794,0.176901,0.0692619,0.959849,0.848866,0.457344,0.188705,0.93978,0.502874,0.945012,0.742683,0.480359,0.0585086,0.988885,0.66077,0.0435257,0.534942,0.953474,0.407434,0.681229,0.237409,0.709937,0.804399,0.16001,0.704688,0.779712,0.295202,0.175435,0.469829,0.645823,0.0394055,0.39547,0.197712,0.722138,0.852015,0.13276,0.504671,0.439073,0.416185,0.609827,0.881362,0.920072,0.680601,0.372429,0.377421,0.407252,0.954308,0.727274,0.279301,0.396475,0.976711,0.604537,0.149863,0.717972,0.148194,0.510628,0.958502,0.652645,0.616639,0.781585,0.902178,0.784274,0.0914353,0.357444,0.878628,0.556907,0.478922,0.250544,0.528744,0.791215,0.283279,0.937807,0.380672,0.0869297,0.15873,0.510195,0.928937,0.718855,0.590236,0.115678,0.126312,0.0886563,0.940449,0.34873,0.9969,0.262508,0.628248,0.626683,0.425183,0.145673,0.366581,0.906391,0.219843,0.668361,0.980215,0.660955,0.11413,0.76046,0.437329,0.565735,0.210416,0.545602,0.805891,0.286918,0.365807,0.789031,0.432889,0.195923,0.240837,0.0945297,0.602137,0.487052,0.639229,0.253163,0.248891,0.553303,0.242379,0.0526741,0.904105,0.860992,0.67215,0.879776,0.528744,0.45307,0.857104,0.288823,0.184209,0.528938,0.276665,0.807424,0.33205,0.750396,0.469353,0.0998251,0.716841,0.560401,0.1023,0.654286,0.748219,0.942514,0.657133,0.223711,0.336859,0.29919,0.640957,0.478799,0.436583,0.510563,0.0360705,0.460847,0.31172,0.452307,0.453625,0.719567,0.241487,0.241549,0.924555,0.20777,0.396596,0.995346,0.021323,0.903992,0.452311,0.909453,0.143554,0.895269,0.919781,0.611054,0.414068,0.31107,0.233865,0.569294,0.964222,0.263499,0.043937,0.632854,0.897575,0.881208,0.226163,0.17103,0.766072,0.456336,0.846337,0.76866,0.926434,0.207645,0.256554,0.118743,0.34822,0.0486088,0.535785,0.678824,0.261588,0.179963,0.368132,0.978547,0.478128,0.192305,0.220237,0.274718,0.971263,0.926998,0.423359,0.548002,0.349974,0.116653,0.0928212,0.169981,0.542729,0.851947,0.528489,0.27615,0.431371,0.771157,0.461366,0.931484,0.996328,0.0680126,0.432258,0.423156,0.419689,0.319404,0.59176,0.521878,0.544351,0.621495,0.646006,0.376575,0.601339,0.416134,0.355111,0.477455,0.56239,0.689073,0.299303,0.84825,0.861415,0.796732,0.794784,0.3478,0.404888,0.7489,0.72464,0.695606,0.288253,0.841268,0.519923,0.153673,0.993955,0.436832,0.449112,0.440014,0.532636,0.0595354,0.0707399,0.745734,0.577153,0.966423,0.577649,0.433729,0.299033,0.176358,0.752993,0.600568,0.701345,0.797338,0.184479,0.663609,0.907398,0.511937,0.194862,0.939852,0.431963,0.0509588,0.983915,0.422327,0.971979,0.517241,0.204076,0.51014,0.76592,0.980147,0.179895,0.54844,0.973887,0.734003,0.655021,0.538124,0.808342,0.790734,0.0255855,0.778715,0.534778,0.396214,0.487431,0.678137,0.164835,0.746494,0.0876432,0.100287,0.951809,0.808977,0.606582,0.564807,0.832257,0.282742,0.775014,0.848206,0.376666,0.611516,0.455093,0.914953,0.18081,0.441711,0.0788901,0.866049,0.978821,0.0137225,0.201071,0.675398,0.215413,0.644093,0.221516,0.848222,0.904849,0.652523,0.785149,0.0410907,0.573511,0.684559,0.22562,0.67032,0.821831,0.953093,0.0404353,0.178568,0.0748968,0.634799,0.047251,0.0028258,0.75354,0.978511,0.0498536,0.208149,0.190582,0.238422,0.0708197,0.28313,0.187379,0.660825,0.249453,0.124158,0.279142,0.532996,0.609663,0.148151,0.658314,0.15964,0.496086,0.859098,0.153647,0.891751,0.129225,0.45945,0.108733,0.516106,0.58464,0.318764,0.185405,0.249605,0.591921,0.588238,0.728757,0.385691,0.523344,0.0515478,0.977437,0.841467,0.665501,0.655783,0.340033,0.168982,0.283157,0.336244,0.706612,0.665048,0.682934,0.793841,0.907659,0.791324,0.697479,0.072435,0.821911,0.57327,0.0513414,0.777988,0.241958,0.283383,0.338297,0.0540427,0.607048,0.602899,0.532057,0.519952,0.960509,0.719504,0.737397,0.990595,0.944542,0.229201,0.847976,0.036877,0.878279,0.990459,0.613417,0.0545343,0.0134656,0.891157,0.125542,0.190311,0.0758609,0.0360565,0.748493,0.435528,0.24912,0.97431,0.977564,0.300289,0.813547,0.964113,0.813361,0.975145,0.278416,0.806733,0.595527,0.446547,0.988716,0.159442,0.76334,0.190304,0.72615,0.990515,0.125397,0.211762,0.672399,0.918443,0.0115787,0.769458,0.378409,0.674282,0.869771,0.0686752,0.549256,0.318152,0.127651,0.761735,0.427722,0.64143,0.788309,0.262724,0.23963,0.802111,0.359175,0.301915,0.697941,0.853692,0.732014,0.798895,0.0810071,0.371842,0.550813,0.471555,0.463205,0.519827,0.179641,0.286401,0.401515,0.284057,0.953598,0.462419,0.177637,0.653493,0.112831,0.232268,0.123381,0.624638,0.456149,0.175664,0.895319,0.421043,0.61855,0.645462,0.582562,0.558178,0.401948,0.877199,0.953279,0.850668,0.351064,0.078644,0.212548,0.245044,0.729153,0.901029,0.0158526,0.832273,0.340101,0.879142,0.140815,0.605511,0.411686,0.703417,0.939411,0.878462,0.702097,0.180458,0.573685,0.255717,0.165723,0.377723,0.683645,0.556228,0.261593,0.783222,0.512871,0.694642,0.159134,0.810885,0.128109,0.598529,0.611847,0.305146,0.638536,0.934124,0.954588,0.895131,0.460757,0.12211,0.695858,0.58033,0.526982,0.0524417,0.514261,0.217196,0.798085,0.680925,0.731422,0.1623,0.761726,0.258883,0.210996,0.452884,0.726772,0.00450975,0.593833,0.543136,0.815893,0.589489,0.979477,0.353107,0.519484,0.745617,0.69361,0.745619,0.517819,0.20928,0.442367,0.0310081,0.26332,0.504399,0.541126,0.652224,0.622372,0.268123,0.675633,0.0482439,0.741084,0.234066,0.874354,0.195489,0.141585,0.207265,0.409293,0.0411435,0.956328,0.342245,0.648598,0.164326,0.58941,0.0600545,0.916411,0.244537,0.921535,0.198416,0.0204314,0.180473,0.392179,0.561662,0.174857,0.912815,0.30261,0.242678,0.0684215,0.550544,0.21845,0.661874,0.980183,0.624208,0.568791,0.549725,0.679357,0.113373,0.0356181,0.195777,0.854632,0.0389238,0.637095,0.39136,0.977306,0.821018,0.824548,0.879363,0.983756,0.261095,0.598117,0.0484983,0.589609,0.809947,0.357336,0.622374,0.0263794,0.966296,0.878904,0.401639,0.147945,0.307946,0.142584,0.272469,0.316789,0.666155,0.870641,0.811815,0.568386,0.510867,0.073859,0.487755,0.206722,0.95896,0.909493,0.588087,0.716663,0.5717,0.983068,0.950169,0.0629749,0.660545,0.758994,0.525677,0.509678,0.710615,0.722975,0.309166,0.654251,0.586184,0.291253,0.409079,0.346514,0.656141,0.5439,0.691403,0.698209,0.691994,0.351785,0.375469,0.530017,0.0660843,0.533427,0.914693,|0.897741,0.0598183,0.752499,0.192485,0.292295,0.296584,0.4669,0.154009,0.187869,0.299156,0.863042,0.0161918,0.972582,0.109864,0.886099,0.179138,0.997832,0.888753,0.819516,0.711598,0.586782,0.940265,0.861871,0.371784,0.782241,0.499224,0.61511,0.167284,0.788117,0.222561,0.528285,0.735584,0.362143,0.819161,0.583513,0.104502,0.773237,0.417634,0.356757,0.252173,0.385734,0.264547,0.506521,0.409202,0.740696,0.833917,0.862767,0.802017,0.228346,0.256916,0.851652,0.93381,0.539091,0.950681,0.800428,0.114123,0.41704,0.140823,0.152656,0.777309,0.163383,0.0288369,0.944451,0.986095,0.785413,0.931858,0.384377,0.384117,0.933066,0.566539,0.302662,0.473629,0.235974,0.20227,0.804408,0.452232,0.670372,0.407834,0.768987,0.0443937,0.342279,0.139888,0.53925,0.904309,0.647876,0.97973,0.290515,0.925467,0.0402008,0.166669,0.905436,0.980038,0.823412,0.0415177,0.472942,0.108573,0.340507,0.0562424,0.305416,0.108325,0.336466,0.348262,0.012741,0.295446,0.196524,0.24826,0.00931334,0.394578,0.572354,0.7958,0.620202,0.356788,0.151621,0.826092,0.981599,0.359324,0.689425,0.00632584,0.97569,0.39474,0.906744,0.275491,0.455862,0.10561,0.893253,0.800119,0.277674,0.352742,0.599844,0.532507,0.917031,0.182296,0.736507,0.448346,0.987089,0.27137,0.759187,0.0192435,0.254443,0.331842,0.853778,0.671834,0.745908,0.590801,0.820248,0.891509,0.00705367,0.885271,0.337293,0.702427,0.303913,0.284048,0.118728,0.916569,0.790976,0.254941,0.657469,0.246173,0.577908,0.266471,0.773214,0.87654,0.671824,0.799268,0.777328,0.80137,0.728122,0.558949,0.510632,0.741638,0.566854,0.323511,0.992552,0.744714,0.987049,0.525301,0.176635,0.849205,0.770218,0.824662,0.898086,0.237736,0.667714,0.669916,0.804382,0.749469,0.874876,0.422732,0.465558,0.251596,0.459516,0.345763,0.636082,0.64847,0.695109,0.617247,0.706436,0.897364,0.453284,0.427493,0.10504,0.660173,0.348021,0.361842,0.180702,0.0752108,0.146729,0.437145,0.130613,0.688209,0.452047,0.373658,0.717128,0.579755,0.540291,0.677955,0.571507,0.278719,0.968399,0.996854,0.401172,0.260558,0.193975,0.493846,0.113151,0.00852805,0.685311,0.735312,0.737285,0.309301,0.780807,0.948943,0.154494,0.304404,0.873785,0.654849,0.146278,0.0319124,0.488478,0.701873,0.107894,0.718446,0.336608,0.416379,0.752957,0.615166,0.784488,0.377548,0.0918998,0.575106,0.292016,0.201602,0.63282,0.0621855,0.112546,0.167064,0.191692,0.1525,0.945389,0.457482,0.927877,0.345392,0.871813,0.320907,0.878405,0.380518,0.714166,0.755039,0.0916161,0.48669,0.16147,0.632674,0.0808169,0.135219,0.0817444,0.690113,0.118064,0.0826465,0.413308,0.620786,0.673824,0.372717,0.786043,0.940639,0.641156,0.838039,0.180225,0.352217,0.553866,0.186094,0.771033,0.400037,0.250063,0.780489,0.0681799,0.641062,0.625499,0.184498,0.842928,0.533307,0.558738,0.216187,0.948755,0.796497,0.151757,0.659426,0.531471,0.64156,0.164795,0.859451,0.99058,0.175153,0.439367,0.0797768,0.384976,0.6342,0.648029,0.348582,0.59188,0.746658,0.433421,0.0834625,0.749241,0.196333,0.73204,0.922285,0.793224,0.453096,0.27295,0.963322,0.991857,0.812661,0.784842,0.574688,0.847002,0.801186,0.872386,0.962408,0.636311,0.371345,0.280361,0.905537,0.423437,0.200635,0.174545,0.588852,0.120096,0.630697,0.311191,0.201584,0.121288,0.364331,0.553409,0.420905,0.870328,0.698956,0.159121,0.236311,0.288227,0.138099,0.611014,0.835327,0.776793,0.189535,0.566354,0.156465,0.553369,0.614891,0.989884,0.719125,0.953675,0.605078,0.10822,0.252063,0.501179,0.470972,0.627186,0.158318,0.651958,0.129617,0.0114776,0.64925,0.319557,0.483322,0.169935,0.76365,0.698789,0.0815963,0.023074,0.934142,0.888228,0.328661,0.607805,0.194644,0.349725,0.245781,0.452029,0.547134,0.336267,0.0921485,0.535285,0.156946,0.861616,0.686465,0.0761392,0.32201,0.37812,0.921219,0.487978,0.61272,0.219299,0.0167178,0.0250974,0.407145,0.395621,0.776279,0.987262,0.880213,0.904003,0.977443,0.0202311,0.653738,0.61415,0.391123,0.475911,0.193958,0.852855,0.301577,0.400513,0.60774,0.432711,0.407976,0.121918,0.538036,0.134496,0.647959,0.898725,0.0331756,0.0474872,0.856491,0.095495,0.87019,0.510315,0.53073,0.389945,0.455653,0.477831,0.209336,0.122237,0.285821,0.537414,0.948739,0.596955,0.773078,0.33743,0.675672,0.828256,0.876282,0.509564,0.852421,0.319838,0.490149,0.257546,0.310448,0.0847682,0.117156,0.968165,0.857687,0.782035,0.90836,0.0602724,0.151585,0.108016,0.196112,0.375862,0.764243,0.0886092,0.564065,0.332834,0.803083,0.886641,0.938751,0.670998,0.464297,0.239536,0.0372192,0.196358,0.762454,0.287122,0.701492,0.544245,0.808782,0.131698,0.954128,0.283486,0.161885,0.478617,0.400581,0.843148,0.946963,0.761787,0.844874,0.521722,0.601559,0.912264,0.227083,0.229756,0.532851,0.6885,0.132612,0.811276,0.480439,0.305597,0.0326325,0.667393,0.421019,0.969068,0.583161,0.392682,0.906076,0.279401,0.786592,0.186071,0.979292,0.357107,0.53854,0.327313,0.846637,0.542027,0.316247,0.682561,0.505223,0.202312,0.133815,0.757077,0.218869,0.776728,0.495199,0.230673,0.294854,0.801669,0.276032,0.160511,0.150369,0.201994,0.0545753,0.618712,0.602549,0.448454,0.331481,0.677536,0.110395,0.598105,0.685145,0.217988,0.477538,0.112488,0.275187,0.341372,0.654407,0.937994,0.728684,0.207608,0.449169,0.823022,0.380726,0.0981098,0.860063,0.251005,0.748288,0.706326,0.505677,0.0478544,0.0570461,0.28413,0.85933,0.706249,0.0137467,0.953051,0.0271228,0.83415,0.379436,0.295789,0.744458,0.171891,0.767445,0.730934,0.815874,0.973085,0.84462,0.0706482,0.0124624,0.588564,0.270419,0.809073,0.31573,0.625569,0.708688,0.860975,0.568465,0.248339,0.721618,0.236418,0.858777,0.193905,0.571991,0.273743,0.0313528,0.486148,0.58958,0.294926,0.232883,0.697139,0.188051,0.29731,0.906316,0.539916,0.71106,0.21825,0.197887,0.570363,0.0279734,0.381189,0.362793,0.983038,0.689361,0.0651162,0.368467,0.353937,0.71672,0.895951,0.268336,0.145582,0.0694558,0.910154,0.653584,0.720629,0.590625,0.227333,0.282833,0.466926,0.159288,0.481217,0.860078,0.584668,0.223793,0.897335,0.500622,0.580633,0.705292,0.76137,0.918347,0.33519,0.732085,0.8735,0.41092,0.704388,0.925005,0.507402,0.368795,0.907927,0.945287,0.514337,0.572505,0.388918,0.843657,0.613916,0.449567,0.271878,0.88464,0.584139,0.315673,0.299053,0.763239,0.885584,0.67596,0.547054,0.575438,0.609221,0.7294,0.104417,0.534738,0.626673,0.807849,0.217741,0.244779,0.591283,0.0650662,0.386469,0.0261987,0.146401,0.780419,0.739955,0.394212,0.755622,0.667996,0.590458,0.628014,0.0200244,0.637053,0.822857,0.219602,0.295247,0.466608,0.746786,0.175125,0.137479,0.423754,0.336598,0.190948,0.758841,0.0874078,0.121488,0.393776,0.616086,0.790803,0.762034,0.676526,0.925564,0.125613,0.383997,0.300365,0.263611,0.527385,0.0487934,0.0678794,0.154914,0.299516,0.630474,0.516357,0.865356,0.382951,0.496533,0.684037,0.109407,0.296419,0.635809,0.225441,0.851974,0.503546,0.423863,0.462527,0.690625,0.370329,0.00656915,0.190775,0.133843,0.213295,0.702907,0.942001,0.689092,0.899204,0.136634,0.547207,0.575528,0.101296,0.665759,0.457555,0.103178,0.738527,0.644372,0.153279,0.878983,0.134071,0.405924,0.495754,0.702557,0.902916,0.289914,0.221972,0.490173,0.800905,0.497866,0.267435,0.604811,0.854767,0.129471,0.766778,0.872128,0.115082,0.852969,0.457948,0.641049,0.0171806,0.325119,0.0277703,0.72091,0.685908,0.975741,0.220396,0.757713,0.305717,0.265398,0.151028,0.153849,0.968189,0.278263,0.360797,0.295319,0.174736,0.745904,0.798548,0.989872,0.555116,0.548886,0.691747,0.83925,0.460122,0.89064,0.996454,0.606838,0.00138289,0.0208261,0.0410784,0.947286,0.937607,0.0885256,0.664866,0.366812,0.945896,0.599826,0.536321,0.935066,0.257018,0.0225335,0.812594,0.166515,0.401404,0.866718,0.717998,0.0663661,0.077317,0.627692,0.715277,0.203559,0.667314,0.554523,0.13268,0.025497,0.397691,0.0546405,0.382329,0.389172,0.785295,0.702854,0.84252,0.816471,0.200473,0.684728,0.634467,0.47553,0.306156,0.830581,0.777031,0.0387969,0.645399,0.91016,0.180601,0.227257,0.422838,0.906835,0.289954,0.887229,0.791914,0.416574,0.281012,0.0913455,0.938757,0.925989,0.246839,0.595673,0.821625,0.891695,0.762791,0.0508026,0.842277,0.513265,0.802298,0.995066,0.982137,0.708699,0.434145,0.81183,0.878443,0.434768,0.237235,0.878744,0.582309,0.264644,0.463398,0.074443,0.0925854,0.12133,0.603435,0.482749,0.206465,0.212787,0.51514,0.217863,0.0904934,0.0991507,0.231758,0.641607,0.47876,0.667793,0.633593,0.459962,0.883592,0.359347,0.15582,0.0924984,0.456187,0.970736,0.491073,0.295334,0.92788,0.0364511,0.638715,0.276676,0.796761,0.353055,0.336367,0.882279,0.710771,0.0942976,0.0764587,0.727247,0.426113,0.973901,0.971858,0.541888,0.0636131,0.803062,0.61496,0.36013,0.58947,0.0462162,0.274267,0.548475,0.726457,0.028484,0.350001,0.939862,0.708058,0.593086,0.442483,0.161861,0.721538,0.416234,0.448457,0.918753,0.830539,0.320044,0.317274,0.042473,0.326058,0.519327,0.855745,0.221315,0.966711,0.783763,0.45371,0.235315,0.0324796,0.865109,0.497605,0.876568,0.238444,0.757164,0.632262,0.449954,0.211921,0.700287,0.127235,0.278041,0.99532,0.473454,0.340955,0.451744,0.418951,0.214017,0.429262,0.923872,0.0739053,0.919325,0.659646,0.69482,0.0864786,0.135836,0.975366,0.72791,0.239569,0.946952,0.43258,0.320945,0.821951,0.414681,0.0475931,0.837819,0.631319,|0.969381,0.0210724,0.448287,0.7714,0.837564,0.636279,0.517855,0.448522,0.630167,0.276541,0.210625,0.0484939,0.240721,0.807284,0.740958,0.274498,0.976786,0.943522,0.733818,0.86979,0.209132,0.878351,0.808092,0.999716,0.35894,0.837844,0.244573,0.641502,0.151789,0.890002,0.036062,0.303376,0.593424,0.993638,0.20288,0.450636,0.528913,0.151732,0.464569,0.117238,0.505904,0.612784,0.00710338,0.774658,0.0505651,0.167073,0.442107,0.13989,0.671816,0.520086,0.373071,0.66193,0.196014,0.152924,0.85207,0.397157,0.844763,0.200483,0.0758571,0.451885,0.941062,0.262061,0.596838,0.47364,0.201222,0.0635688,0.825827,0.816616,0.103679,0.0885267,0.223487,0.919556,0.0701261,0.358971,0.980389,0.461903,0.111842,0.895229,0.0808492,0.0432984,0.172864,0.83431,0.156387,0.340058,0.624684,0.283348,0.407684,0.750761,0.875464,0.70225,0.385966,0.584538,0.73782,0.777406,0.790973,0.483764,0.867383,0.442132,0.915298,0.0823623,0.528141,0.246087,0.908644,0.200344,0.770762,0.202427,0.063196,0.131321,0.596022,0.794096,0.323283,0.806608,0.857027,0.223898,0.9595,0.485311,0.114341,0.408873,0.423543,0.182764,0.24827,0.769186,0.346394,0.0760497,0.298561,0.275778,0.753291,0.748959,0.632891,0.720981,0.923671,0.919031,0.609032,0.586258,0.927252,0.737106,0.151757,0.864315,0.0350336,0.875191,0.465226,0.708541,0.816107,0.73499,0.377977,0.940161,0.372936,0.826565,0.694798,0.580727,0.0440934,0.391415,0.229356,0.833061,0.677664,0.913184,0.649077,0.110205,0.135837,0.938645,0.564507,0.568176,0.229243,0.697569,0.307721,0.923664,0.135288,0.710263,0.5811,0.388052,0.103741,0.807081,0.733183,0.191731,0.187476,0.389582,0.948745,0.00130719,0.110463,0.829242,0.663009,0.888017,0.308028,0.866144,0.0187757,0.412617,0.171505,0.357871,0.138497,0.579929,0.0148054,0.459894,0.922092,0.297096,0.576464,0.988366,0.343485,0.906574,0.983379,0.217948,0.0639825,0.135407,0.992912,0.310016,0.678456,0.998054,0.652946,0.858858,0.809659,0.198909,0.829118,0.982381,0.730123,0.17721,0.945227,0.876053,0.681228,0.130685,0.13041,0.0696588,0.557699,0.282369,0.404476,0.735184,0.766017,0.618544,0.423509,0.151893,0.516223,0.669573,0.399915,0.859988,0.107031,0.388853,0.418559,0.457842,0.839983,0.945363,0.218447,0.98114,0.702171,0.187654,0.814333,0.925294,0.147043,0.609759,0.789193,0.309928,0.609311,0.411477,0.881119,0.0962735,0.0403575,0.419321,0.790937,0.593029,0.580053,0.18987,0.600061,0.60137,0.292225,0.15921,0.723514,0.648901,0.533187,0.539101,0.694118,0.588025,0.375296,0.970357,0.340891,0.570143,0.923027,0.825541,0.233992,0.261295,0.99451,0.743662,0.705389,0.119364,0.308975,0.458225,0.0104492,0.37216,0.201165,0.0186309,0.436527,0.140985,0.0546675,0.511615,0.945633,0.426691,0.317114,0.758861,0.270977,0.110214,0.597779,0.32742,0.0634657,0.497767,0.15448,0.000848234,0.0790958,0.0302043,0.302319,0.167069,0.805413,0.864088,0.269285,0.397367,0.950281,0.772948,0.903208,0.889054,0.339604,0.307748,0.0687633,0.757268,0.989765,0.687291,0.818715,0.0202339,0.359309,0.506002,0.852722,0.86195,0.998001,0.606967,0.491154,0.0276667,0.0119815,0.0211716,0.810664,0.514102,0.0915595,0.0528291,0.766355,0.876474,0.540443,0.632774,0.533823,0.715729,0.118825,0.560498,0.0670688,0.964549,0.476221,0.508536,0.381805,0.443364,0.759042,0.34079,0.610801,0.649779,0.647595,0.876344,0.381164,0.834602,0.322637,0.185295,0.613797,0.816142,0.69885,0.0691156,0.0758411,0.224201,0.166409,0.135412,0.697263,0.689964,0.597448,0.55937,0.254842,0.840028,0.717415,0.496413,0.826517,0.715989,0.627026,0.7004,0.00916147,0.741064,0.202477,0.0984842,0.72492,0.966936,0.252065,0.401104,0.833715,0.900648,0.03774,0.631305,0.879438,0.89622,0.0388902,0.11798,0.200918,0.917313,0.514831,0.867065,0.850164,0.993878,0.459337,0.652258,0.909708,0.0174832,0.848958,0.59009,0.700995,0.886846,0.148034,0.563647,0.100935,0.942125,0.400987,0.906202,0.709676,0.172839,0.387614,0.292812,0.639876,0.224809,0.382208,0.754386,0.767906,0.624678,0.781738,0.182987,0.178348,0.605237,0.0179328,0.650069,0.328294,0.233938,0.351581,0.504375,0.177577,0.796667,0.253808,0.472979,0.151249,0.37022,0.234347,0.395486,0.593976,0.543863,0.939273,0.297688,0.0592643,0.348733,0.592683,0.172012,0.932882,0.740448,0.72064,0.830207,0.443928,0.639457,0.603731,0.353242,0.297653,0.600389,0.959029,0.134561,0.658499,0.184799,0.490742,0.0676274,0.889997,0.99319,0.36418,0.594817,0.144194,0.142253,0.486011,0.841152,0.226195,0.535182,0.826258,0.226396,0.399784,0.286254,0.32474,0.756233,0.226468,0.0920792,0.681114,0.430352,0.701038,0.26163,0.970311,0.213976,0.0285842,0.114626,0.144395,0.210856,0.267726,0.0298576,0.144533,0.588694,0.514012,0.67749,0.963877,0.714206,0.687423,0.912873,0.776549,0.737415,0.317817,0.683236,0.750485,0.423037,0.541056,0.790501,0.931273,0.838756,0.993019,0.530602,0.591586,0.519615,0.0871099,0.400694,0.93444,0.413947,0.639621,0.0879851,0.86268,0.909829,0.34785,0.759171,0.41855,0.877036,0.637136,0.541616,0.642341,0.15283,0.873416,0.0802848,0.146737,0.226834,0.566376,0.067009,0.846044,0.0149794,0.968857,0.841729,0.964213,0.600217,0.263918,0.114946,0.988682,0.526533,0.391485,0.930202,0.598413,0.195183,0.328921,0.620056,0.698225,0.285612,0.683268,0.0967311,0.183396,0.0984681,0.664345,0.688255,0.251043,0.193436,0.910029,0.849146,0.892241,0.052559,0.63603,0.522331,0.160376,0.712765,0.0286511,0.121463,0.878447,0.523941,0.640345,0.454832,0.795761,0.94021,0.570764,0.325018,0.570804,0.109769,0.204992,0.955676,0.0162229,0.123055,0.319403,0.831019,0.496357,0.63937,0.0858448,0.000930905,0.561807,0.012685,0.496882,0.00568157,0.651378,0.310529,0.905751,0.620217,0.550797,0.201867,0.273488,0.350164,0.637774,0.234409,0.0416456,0.0784033,0.847771,0.626563,0.338337,0.611926,0.00408447,0.462841,0.646503,0.741942,0.35204,0.587253,0.87486,0.704289,0.798299,0.752162,0.206578,0.495263,0.17462,0.570843,0.193086,0.0823244,0.940206,0.472971,0.19335,0.410755,0.796267,0.43982,0.404338,0.947349,0.0898721,0.93123,0.323716,0.322095,0.789405,0.817484,0.985579,0.61099,0.891778,0.97677,0.349561,0.506165,0.572679,0.447046,0.647769,0.904298,0.238865,0.920006,0.80273,0.411753,0.387651,0.757244,0.932021,0.549365,0.101825,0.835227,0.698389,0.035626,0.36076,0.740925,0.0929656,0.961779,0.312979,0.476669,0.925936,0.122595,0.161779,0.834414,0.258573,0.303853,0.72961,0.457448,0.33734,0.40439,0.615649,0.0362438,0.458422,0.0630097,0.44883,0.75589,0.237094,0.706722,0.469165,0.321586,0.803235,0.916574,0.767321,0.121827,0.186965,0.814497,0.495825,0.610602,0.478653,0.346678,0.0346797,0.216303,0.623303,0.988878,0.30094,0.993501,0.766658,0.154363,0.34477,0.983979,0.669251,0.784337,0.679175,0.0937037,0.661541,0.270342,0.906832,0.261812,0.878646,0.0712875,0.187122,0.176671,0.522842,0.957642,0.983355,0.511408,0.71132,0.640316,0.739354,0.212557,0.788198,0.866798,0.383225,0.259545,0.63315,0.397215,0.282638,0.963029,0.827022,0.208897,0.341784,0.332547,0.285759,0.441707,0.29537,0.97949,0.480771,0.766075,0.252374,0.105197,0.921656,0.635577,0.310478,0.850335,0.266114,0.104273,0.272248,0.373564,0.295556,0.153809,0.724809,0.193061,0.76875,0.884785,0.743025,0.695097,0.364038,0.663962,0.397772,0.108202,0.528284,0.79423,0.0843786,0.672081,0.831786,0.363632,0.302799,0.283235,0.428576,0.156106,0.447322,0.844396,0.250574,0.723849,0.144375,0.029097,0.813662,0.350197,0.861729,0.589032,0.955061,0.40604,0.132053,0.358585,0.906587,0.0310276,0.783607,0.0880662,0.254993,0.51619,0.136583,0.527224,0.419938,0.998141,0.712675,0.396734,0.443783,0.388846,0.299822,0.253917,0.711345,0.119664,0.0796673,0.690352,0.660601,0.884586,0.0166192,0.620479,0.963628,0.415269,0.293161,0.826971,0.977969,0.0232447,0.797253,0.862301,0.627352,0.994368,0.00345838,0.707375,0.532261,0.472862,0.683377,0.829651,0.394718,0.171327,0.711522,0.83877,0.7149,0.0907432,0.868505,0.323214,0.480972,0.0412014,0.28888,0.0687561,0.045454,0.0465263,0.62342,0.0694349,0.286271,0.0414425,0.575919,0.445378,0.339464,0.440954,0.0304679,0.944786,0.0236844,0.81887,0.622337,0.91944,0.83469,0.284464,0.143273,0.274349,0.0148709,0.172236,0.00673419,0.421261,0.757601,0.917549,0.0725191,0.784802,0.696126,0.280959,0.125138,0.0675294,0.947251,0.893034,0.767424,0.93839,0.232124,0.643917,0.75117,0.443841,0.391353,0.687367,0.965273,0.326563,0.472917,0.943926,0.987013,0.931754,0.248321,0.404214,0.582037,0.681476,0.382927,0.0264812,0.212295,0.0160112,0.207527,0.920612,0.675045,0.0438237,0.718788,0.466608,0.569933,0.478669,0.691704,0.701692,0.737298,0.377335,0.220413,0.388128,0.358006,0.449505,0.571284,0.435027,0.0197583,0.925874,0.161938,0.848053,0.436296,0.831645,0.651414,0.518793,0.140594,0.643887,0.15221,0.65893,0.998822,0.775126,0.36462,0.0579689,0.0273973,0.67577,0.268377,0.759924,0.334506,0.724654,0.367975,0.39744,0.208431,0.97062,0.867888,0.0640417,0.0950422,0.407979,0.923657,0.66621,0.855729,0.895744,0.988982,0.87142,0.704974,0.496018,0.984841,0.634149,0.764391,0.0646458,0.915465,0.307732,0.261875,0.312319,0.380681,0.514201,0.465924,0.865886,0.266712,0.276665,0.871974,0.878288,0.881827,0.53219,0.043349,0.265354,0.900634,0.814196,0.358988,0.551121,0.575718,0.976304,0.122423,0.862244,0.0254597,0.577582,0.502051,0.941817,0.208548,0.193084,0.121795,0.393572,|0.0299773,0.431985,0.83508,0.532277,0.1254,0.268669,0.723149,0.090003,0.931269,0.950167,0.969382,0.303184,0.338709,0.9234,0.923471,0.365362,0.475512,0.847359,0.236075,0.50725,0.596943,0.815428,0.730509,0.176267,0.578993,0.0384485,0.0703502,0.606861,0.140188,0.665439,0.653179,0.582449,0.956994,0.506147,0.728266,0.560542,0.344732,0.857863,0.572635,0.0596638,0.536853,0.0843544,0.841014,0.31568,0.377714,0.929869,0.729271,0.169878,0.325264,0.228144,0.928507,0.405657,0.174359,0.805961,0.0118568,0.121144,0.516308,0.95626,0.584625,0.828112,0.207926,0.311646,0.695917,0.144652,0.940424,0.886745,0.872168,0.118056,0.779179,0.210625,0.0539492,0.682244,0.442789,0.934167,0.427379,0.292226,0.0459343,0.659029,0.258891,0.446688,0.0501777,0.608441,0.800751,0.0288076,0.502249,0.133041,0.64512,0.846288,0.666043,0.424009,0.347245,0.452383,0.818129,0.323695,0.999358,0.75095,0.414801,0.35524,0.902965,0.884058,0.479255,0.269621,0.431725,0.250345,0.895872,0.200072,0.724575,0.443578,0.839398,0.980264,0.420159,0.0239118,0.560692,0.860474,0.111052,0.586044,0.197177,0.0132435,0.44621,0.932191,0.868762,0.181408,0.0564591,0.465261,0.257021,0.384243,0.995687,0.677539,0.425421,0.490195,0.459813,0.299855,0.0715123,0.627168,0.85922,0.738248,0.769123,0.673845,0.989651,0.272555,0.563738,0.760972,0.745395,0.793365,0.829291,0.789683,0.744589,0.111032,0.325884,0.075733,0.890849,0.701928,0.539576,0.0939545,0.670493,0.31456,0.800346,0.657711,0.245031,0.762224,0.130216,0.713312,0.304613,0.779999,0.733309,0.94834,0.0589672,0.509962,0.677148,0.21491,0.504207,0.199989,0.409268,0.499245,0.608664,0.797672,0.899267,0.257366,0.468313,0.829216,0.973868,0.28807,0.199797,0.138982,0.537473,0.0173951,0.0683122,0.308032,0.396928,0.831084,0.537632,0.208147,0.514509,0.941738,0.889553,0.389415,0.685299,0.654279,0.0272145,0.022346,0.416344,0.794425,0.457357,0.810707,0.465123,0.729257,0.418244,0.624039,0.620553,0.151708,0.421198,0.352395,0.456516,0.365032,0.723005,0.593768,0.764106,0.476048,0.305856,0.465944,0.73124,0.285333,0.521257,0.396682,0.779758,0.483573,0.533129,0.974181,0.203262,0.00680059,0.619533,0.283772,0.446631,0.448546,0.226663,0.900596,0.65019,0.92972,0.370135,0.134461,0.719054,0.0821012,0.950648,0.686542,0.89036,0.068935,0.745498,0.661778,0.752069,0.108208,0.185979,0.808093,0.167952,0.983275,0.207691,0.482657,0.959415,0.472521,0.683424,0.915878,0.110139,0.266175,0.0679747,0.0544355,0.784244,0.344789,0.297566,0.746151,0.451148,0.755119,0.170766,0.0241739,0.496277,0.0399266,0.707487,0.764911,0.907414,0.448622,0.179748,0.582983,0.744378,0.927829,0.876712,0.69145,0.246555,0.301125,0.584682,0.720056,0.423018,0.987274,0.17505,0.521827,0.8392,0.0512013,0.196802,0.305483,0.719814,0.0639854,0.036595,0.126657,0.627084,0.0198908,0.710838,0.798096,0.238702,0.381285,0.810008,0.0269624,0.100619,0.0406836,0.398926,0.306346,0.924177,0.340354,0.243517,0.152871,0.824303,0.849289,0.564502,0.246616,0.00238442,0.357682,0.327088,0.150921,0.265268,0.646243,0.949295,0.626356,0.731952,0.380223,0.788233,0.613069,0.586461,0.290298,0.751384,0.105238,0.841912,0.162752,0.981925,0.963888,0.1582,0.359248,0.600114,0.850293,0.681679,0.441058,0.401415,0.568572,0.435518,0.772441,0.679302,0.862842,0.317792,0.642422,0.816981,0.328738,0.502465,0.0851904,0.183036,0.400446,0.885478,0.846307,0.268458,0.623254,0.897625,0.517567,0.467253,0.370734,0.053537,0.260686,0.0671689,0.12229,0.909987,0.722581,0.0223734,0.981739,0.146574,0.879622,0.440799,0.0824457,0.581225,0.44927,0.187987,0.125899,0.464044,0.324255,0.211217,0.588261,0.703098,0.998004,0.0183023,0.765149,0.58826,0.385337,0.85498,0.0862005,0.84591,0.709096,0.674069,0.148956,0.0709107,0.829816,0.728232,0.206615,0.450016,0.869636,0.582146,0.377205,0.16975,0.872903,0.806682,0.814605,0.220306,0.119139,0.747334,0.268127,0.753756,0.732699,0.365161,0.240732,0.883021,0.850912,0.664296,0.870587,0.347695,0.380022,0.559018,0.668028,0.494528,0.960134,0.482938,0.529473,0.248121,0.73738,0.428322,0.721903,0.389422,0.64009,0.585975,0.448392,0.538584,0.76431,0.924079,0.996733,0.0911502,0.858447,0.577012,0.000610054,0.235025,0.248367,0.77583,0.0545174,0.672762,0.0564716,0.216815,0.445499,0.446354,0.30299,0.411789,0.794269,0.974215,0.410795,0.984545,0.974548,0.606057,0.367568,0.770402,0.771115,0.166443,0.693667,0.27999,0.00326377,0.200958,0.542322,0.932588,0.50983,0.294471,0.200989,0.33532,0.919871,0.0568983,0.168948,0.906541,0.336278,0.54858,0.995073,0.754826,0.971877,0.587657,0.0295884,0.833751,0.65145,0.394835,0.204534,0.0987246,0.480466,0.87511,0.794742,0.177253,0.286652,0.746575,0.0722618,0.151335,0.044214,0.510624,0.643462,0.00470495,0.82303,0.642218,0.998252,0.884581,0.57552,0.180553,0.419105,0.475565,0.635116,0.242092,0.957042,0.64966,0.68918,0.959219,0.0279837,0.0506859,0.587606,0.27821,0.0358631,0.696037,0.847384,0.730944,0.758183,0.89409,0.50755,0.462977,0.142273,0.325418,0.435113,0.223703,0.161972,0.247407,0.745763,0.626756,0.26992,0.214551,0.573103,0.405052,0.903123,0.00902861,0.420294,0.036157,0.0618483,0.980394,0.179162,0.0696488,0.764091,0.227211,0.305214,0.740334,0.0640533,0.202149,0.522835,0.962745,0.305596,0.233084,0.703737,0.834793,0.688368,0.373519,0.859203,0.762379,0.0197299,0.372921,0.830603,0.168174,0.407573,0.989506,0.510417,0.663511,0.905144,0.100407,0.0592451,0.679482,0.507305,0.299323,0.803252,0.187469,0.207981,0.75114,0.111543,0.371158,0.119169,0.0789005,0.730238,0.952694,0.947697,0.367516,0.461109,0.701986,0.694918,0.404621,0.409478,0.729457,0.76331,0.748211,0.781359,0.275981,0.401022,0.456099,0.363488,0.289992,0.0971374,0.980497,0.24729,0.446791,0.0218519,0.18241,0.922541,0.533257,0.822985,0.790824,0.886995,0.351353,0.0596166,0.925287,0.340603,0.0884317,0.0445289,0.661698,0.105412,0.810673,0.797827,0.966442,0.611822,0.206046,0.326479,0.444372,0.502486,0.825981,0.101126,0.275029,0.264225,0.242694,0.76767,0.909307,0.356269,0.0819638,0.0734177,0.734542,0.51466,0.292806,0.204766,0.0821567,0.695701,0.075086,0.269628,0.0731803,0.328117,0.429444,0.55949,0.970202,0.638305,0.269775,0.0773628,0.833367,0.542688,0.209829,0.701129,0.217875,0.543006,0.429916,0.113258,0.197399,0.208009,0.772679,0.99942,0.499555,0.768311,0.992049,0.326798,0.924739,0.948114,0.228587,0.107983,0.0403008,0.847661,0.899744,0.674589,0.59655,0.202192,0.382091,0.232523,0.444817,0.365235,0.56622,0.0183493,0.695502,0.0108258,0.86701,0.790266,0.188683,0.221032,0.524236,0.220798,0.552777,0.849057,0.321586,0.714504,0.193678,0.160902,0.171049,0.0232064,0.675256,0.249238,0.0108973,0.986662,0.0323251,0.43476,0.112277,0.3623,0.00213397,0.837333,0.36953,0.235062,0.997193,0.0420543,0.907435,0.951464,0.402986,0.400112,0.316376,0.634596,0.21602,0.463913,0.944963,0.435173,0.660393,0.0871272,0.911793,0.149197,0.724296,0.773893,0.274078,0.215631,0.805439,0.962929,0.125713,0.0728435,0.451584,0.473385,0.487061,0.0786437,0.0849053,0.39891,0.860036,0.566272,0.701879,0.142944,0.671199,0.530956,0.722431,0.638924,0.466542,0.128883,0.48593,0.260646,0.449861,0.81317,0.342413,0.14917,0.685155,0.953081,0.429217,0.632723,0.877936,0.721838,0.392259,0.0696199,0.069473,0.675554,0.0874351,0.882836,0.584844,0.205805,0.553404,0.463334,0.198957,0.912353,0.782675,0.336811,0.808539,0.716939,0.338039,0.0150205,0.0271512,0.93223,0.256737,0.570896,0.123152,0.641536,0.391961,0.709412,0.198844,0.831761,0.343668,0.316461,0.681855,0.781933,0.86343,0.834496,0.704409,0.957841,0.170906,0.423785,0.852778,0.800259,0.487894,0.488686,0.446666,0.0900672,0.331469,0.0184572,0.933717,0.770746,0.472149,0.698456,0.443031,0.596612,0.689971,0.679193,0.87963,0.44087,0.063693,0.932256,0.934563,0.996652,0.0722181,0.442577,0.166363,0.510501,0.365987,0.743669,0.181262,0.305889,0.294504,0.354028,0.393208,0.811172,0.502036,0.0667762,0.1983,0.569012,0.00164664,0.152796,0.426279,0.664954,0.671145,0.843581,0.0894777,0.105139,0.144399,0.739835,0.129053,0.123729,0.778446,0.104884,0.885133,0.784735,0.00566471,0.0874938,0.480737,0.260374,0.54367,0.191679,0.0101097,0.825253,0.383696,0.28543,0.581258,0.450248,0.733141,0.493143,0.805966,0.666548,0.331843,0.600195,0.192383,0.110542,0.791875,0.126108,0.33978,0.57274,0.27474,0.240254,0.607441,0.728989,0.250635,0.249333,0.742789,0.840818,0.681781,0.504913,0.443732,0.549608,0.550431,0.590475,0.154195,0.380322,0.393778,0.862486,0.0606868,0.46865,0.0276881,0.900274,0.491541,0.39902,0.985388,0.28089,0.524756,0.819419,0.243245,0.494003,0.172463,0.0261347,0.574846,0.305112,0.299002,0.874687,0.507722,0.946822,0.663119,0.62431,0.592779,0.822061,0.824612,0.953411,0.219446,0.924766,0.601496,0.993288,0.55155,0.423112,0.789307,0.926897,0.0487459,0.125628,0.74177,0.284737,0.766715,0.642254,0.419823,0.397244,0.250615,0.52155,0.913848,0.27987,0.14861,0.713318,0.00740713,0.280249,0.55224,0.537939,0.701645,0.935667,0.301628,0.474751,0.93659,0.939456,0.784254,0.755907,0.974543,0.502322,0.276623,0.735263,0.736389,0.164907,0.516153,0.909195,0.367769,0.65756,0.803002,0.583821,0.669901,0.96566,0.515871,0.861349,0.679095,0.886146,0.557985,0.076434,0.748962,0.503886,0.756476,0.836883,0.965839,0.186549,0.976562,0.847505,0.752839,0.860333,0.857826,0.172418,|0.700116,0.156643,0.0394262,0.299156,0.35783,0.174065,0.11904,0.193957,0.802345,0.557885,0.847099,0.0812274,0.861678,0.140457,0.256942,0.0293309,0.28475,0.289934,0.991573,0.401894,0.987471,0.901814,0.960176,0.869236,0.712844,0.333538,0.730651,0.871677,0.63872,0.783887,0.309231,0.941015,0.392306,0.981036,0.46917,0.218124,0.950308,0.938945,0.754509,0.307063,0.286022,0.352011,0.843031,0.73424,0.577312,0.345561,0.0120776,0.34527,0.890128,0.743027,0.558018,0.46097,0.893369,0.370859,0.579378,0.661514,0.208676,0.252123,0.404366,0.170089,0.770305,0.796038,0.772627,0.457241,0.488043,0.411439,0.864488,0.705243,0.656648,0.295882,0.0130005,0.917757,0.511159,0.755072,0.117387,0.543101,0.452576,0.123286,0.0494612,0.100459,0.863813,0.642859,0.469195,0.272035,0.134001,0.970839,0.0917261,0.749585,0.319541,0.0494295,0.792954,0.388832,0.0423589,0.0229783,0.589069,0.670947,0.238152,0.220486,0.290804,0.298602,0.386679,0.637899,0.168944,0.025558,0.821972,0.281798,0.341009,0.537062,0.162156,0.637007,0.543761,0.72797,0.386108,0.208991,0.377608,0.201009,0.728031,0.81914,0.131577,0.0740584,0.0106879,0.811237,0.148133,0.524857,0.511296,0.754817,0.941181,0.411359,0.0931271,0.168347,0.356768,0.546677,0.0182758,0.229692,0.975575,0.40402,0.378643,0.642934,0.0923985,0.853693,0.084556,0.733175,0.676817,0.37066,0.235789,0.920762,0.744594,0.321645,0.213809,0.478497,0.815299,0.0957005,0.537304,0.370843,0.356734,0.282186,0.531398,0.903778,0.595218,0.244487,0.921944,0.0251668,0.775746,0.684191,0.632639,0.908168,0.811888,0.464721,0.748702,0.494721,0.404947,0.615196,0.450413,0.902528,0.610803,0.24844,0.613854,0.712663,0.0950126,0.0634431,0.410805,0.221844,0.0401937,0.905765,0.00242931,0.808951,0.130679,0.241817,0.618011,0.812131,0.553481,0.831784,0.127076,0.715921,0.104753,0.365107,0.244394,0.586532,0.309307,0.22848,0.40514,0.345419,0.0675345,0.283567,0.176479,0.151982,0.845336,0.959434,0.640902,0.687895,0.651936,0.260081,0.252836,0.554386,0.051167,0.348801,0.551744,0.306565,0.0890873,0.644331,0.245135,0.787265,0.972303,0.321608,0.381596,0.606995,0.611982,0.505703,0.116837,0.562637,0.89923,0.239909,0.0664972,0.706405,0.690242,0.535654,0.256038,0.427908,0.00994545,0.287766,0.0584952,0.973449,0.119743,0.927223,0.785609,0.0338658,0.992275,0.890106,0.73945,0.101876,0.810437,0.677987,0.192458,0.812274,0.166936,0.378227,0.70606,0.109083,0.11266,0.214637,0.684529,0.906914,0.723436,0.633331,0.271036,0.789893,0.087283,0.672267,0.745732,0.718039,0.192728,0.535808,0.106692,0.542506,0.23946,0.719471,0.603051,0.0713224,0.26783,0.911203,0.889269,0.0867417,0.356658,0.318285,0.564131,0.134564,0.295401,0.0944456,0.616032,0.00952959,0.0824032,0.500256,0.173496,0.40598,0.0618722,0.457445,0.923662,0.566351,0.837874,0.735012,0.209912,0.735795,0.971143,0.823217,0.394473,0.279562,0.0241035,0.394611,0.687262,0.210407,0.716907,0.818635,0.233489,0.710159,0.935025,0.285421,0.517242,0.83401,0.120421,0.148946,0.540995,0.73751,0.408884,0.585085,0.523935,0.755041,0.0863571,0.0126303,0.162841,0.32633,0.411312,0.833595,0.220584,0.760316,0.748116,0.83906,0.231023,0.397585,0.0740263,0.283758,0.776366,0.763874,0.89596,0.684356,0.679889,0.917079,0.636575,0.0128657,0.772543,0.529703,0.402292,0.0990563,0.761718,0.334099,0.179292,0.887197,0.361504,0.723202,0.98262,0.0932618,0.492747,0.74222,0.525524,0.367306,0.194487,0.890887,0.508981,0.601001,0.359569,0.214438,0.866278,0.952267,0.112309,0.169167,0.00386542,0.323312,0.354762,0.153984,0.569551,0.199555,0.61902,0.568139,0.219542,0.856271,0.783681,0.639088,0.750173,0.8028,0.469175,0.679436,0.331255,0.277642,0.742334,0.931806,0.115221,0.231888,0.580372,0.520001,0.489508,0.763074,0.350263,0.00055927,0.974047,0.150301,0.610063,0.664574,0.436841,0.990721,0.160278,0.861728,0.493372,0.851877,0.180008,0.542341,0.485687,0.191392,0.728369,0.00784326,0.645558,0.0265875,0.14701,0.679042,0.654569,0.13671,0.403665,0.253793,0.392918,0.474137,0.714156,0.187104,0.589374,0.133262,0.56209,0.614426,0.93985,0.682141,0.0981053,0.939672,0.671029,0.702455,0.173864,0.0591527,0.931314,0.85877,0.400605,0.873877,0.567518,0.544665,0.721951,0.20741,0.622667,0.126771,0.516172,0.903562,0.109422,0.586341,0.703942,0.676841,0.634558,0.60074,0.517712,0.232309,0.795448,0.463537,0.870793,0.00610685,0.411727,0.351925,0.549867,0.0321618,0.60428,0.365273,0.617425,0.834291,0.947848,0.763736,0.675184,0.656867,0.939272,0.516567,0.679155,0.406251,0.753692,0.216072,0.0339931,0.620981,0.928397,0.939112,0.804063,0.144281,0.845244,0.641743,0.930319,0.912568,0.668511,0.471778,0.495914,0.196412,0.577866,0.0449244,0.407228,0.0348958,0.290313,0.403781,0.36725,0.407205,0.334304,0.965313,0.989238,0.762335,0.561834,0.217491,0.0418917,0.189717,0.539765,0.481289,0.115063,0.530994,0.722391,0.179805,0.599823,0.895922,0.951075,0.931303,0.681043,0.952791,0.262171,0.853241,0.813837,0.0362267,0.299518,0.731121,0.248901,0.0295315,0.521179,0.455785,0.838865,0.833777,0.594466,0.0170896,0.888872,0.610744,0.747285,0.946304,0.769423,0.995199,0.488215,0.927986,0.408869,0.986625,0.137638,0.689058,0.676671,0.4336,0.632131,0.67627,0.651664,0.470176,0.935572,0.341285,0.0396411,0.432958,0.032259,0.144914,0.424389,0.548911,0.856436,0.310344,0.338256,0.204485,0.860562,0.359077,0.671296,0.303803,0.111956,0.275496,0.000184357,0.203206,0.412396,0.742433,0.567861,0.523161,0.358821,0.237142,0.390189,0.857234,0.604717,0.0106974,0.220935,0.358985,0.63912,0.703177,0.861809,0.730458,0.358256,0.109812,0.819983,0.257069,0.953978,0.503605,0.415753,0.769058,0.823061,0.148866,0.368704,0.582319,0.138719,0.740504,0.825656,0.508978,0.0324221,0.927389,0.335743,0.619567,0.953873,0.639616,0.157647,0.37581,0.266223,0.407022,0.356031,0.354487,0.336716,0.193878,0.229995,0.808897,0.773872,0.672188,0.0651557,0.935215,0.943108,0.150247,0.877976,0.666652,0.895727,0.106813,0.628775,0.0430013,0.209019,0.759063,0.799348,0.0478713,0.1123,0.626179,0.127895,0.97285,0.931941,0.176499,0.213374,0.570333,0.0733705,0.0131455,0.606592,0.831653,0.331021,0.908546,0.0665318,0.164861,0.219007,0.477558,0.515162,0.731696,0.302334,0.719804,0.865,0.472147,0.0213004,0.0177969,0.842557,0.825303,0.522675,0.170802,0.109442,0.39343,0.389723,0.328873,0.388757,0.875158,0.523762,0.921538,0.189643,0.540605,0.785851,0.116238,0.132904,0.637248,0.075142,0.745498,0.74699,0.0902477,0.0765952,0.074286,0.39821,0.972348,0.202656,0.10319,0.929008,0.0410194,0.177785,0.966581,0.988202,0.368404,0.968045,0.477459,0.366114,0.994848,0.64318,0.598044,0.575718,0.997195,0.5693,0.630275,0.595823,0.418494,0.02942,0.591119,0.048506,0.374143,0.463951,0.865673,0.132833,0.371067,0.068212,0.673063,0.692939,0.181363,0.598489,0.0152928,0.926722,0.827057,0.109177,0.97252,0.291791,0.0671293,0.154508,0.251759,0.650876,0.385498,0.626652,0.340233,0.725749,0.528998,0.0772371,0.928939,0.317379,0.35619,0.104651,0.958505,0.587491,0.842991,0.730352,0.187304,0.123274,0.444589,0.0321875,0.319368,0.30809,0.849653,0.110094,0.0854364,0.265568,0.857141,0.18017,0.124014,0.0981678,0.935427,0.925338,0.595501,0.862192,0.779817,0.352714,0.022725,0.980988,0.454715,0.740966,0.785922,0.12716,0.568742,0.166799,0.900871,0.296037,0.315514,0.666395,0.120293,0.39999,0.570135,0.108883,0.29684,0.573616,0.315536,0.394532,0.657347,0.875175,0.712337,0.533163,0.332479,0.968988,0.783977,0.510563,0.725848,0.672532,0.192343,0.629123,0.360701,0.967187,0.879041,0.0193624,0.733488,0.889372,0.520035,0.890056,0.608782,0.111952,0.854643,0.0640413,0.599104,0.408469,0.329922,0.718425,0.740361,0.572008,0.693805,0.386875,0.315216,0.874721,0.952195,0.152093,0.372844,0.807243,0.829569,0.874038,0.261142,0.672523,0.201195,0.232839,0.623648,0.0744778,0.210792,0.164132,0.722272,0.626385,0.823879,0.448224,0.954226,0.222436,0.874423,0.568439,0.418222,0.578888,0.25622,0.750051,0.0652137,0.539823,0.54218,0.264049,0.93001,0.491432,0.618334,0.696902,0.345277,0.68598,0.423655,0.766692,0.521699,0.775533,0.554144,0.404409,0.289998,0.525541,0.829444,0.450276,0.928846,0.442143,0.548476,0.326729,0.798048,0.786267,0.765369,0.83138,0.238551,0.78106,0.923589,0.722504,0.776474,0.338016,0.650389,0.704043,0.187272,0.744218,0.516302,0.647896,0.281455,0.306698,0.185277,0.295385,0.469043,0.349537,0.293285,0.354582,0.334143,0.841554,0.194946,0.463452,0.887236,0.284096,0.445513,0.778469,0.0194796,0.887539,0.260553,0.655369,0.665042,0.655833,0.221164,0.813354,0.529185,0.717941,0.254618,0.885208,0.00649428,0.772776,0.530643,0.557374,0.0205923,0.567181,0.573824,0.485146,0.264147,0.133393,0.186377,0.621451,0.404484,0.290692,0.728094,0.94776,0.0887706,0.402342,0.0986331,0.490857,0.616634,0.782193,0.590956,0.155556,0.619303,0.402019,0.288223,0.973323,0.891342,0.781989,0.443981,0.377784,0.985015,0.938567,0.673958,0.571123,0.39579,0.946009,0.966582,0.257392,0.0304744,0.411053,0.499208,0.0086844,0.496975,0.542112,0.473308,0.937532,0.920411,0.542044,0.36057,0.702982,0.592933,0.755529,0.789473,0.0834664,0.34611,0.529767,0.938432,0.783845,0.0940328,0.514234,0.758649,0.642926,0.988684,0.0869007,0.0354165,0.595922,0.374909,0.329351,0.955606,0.525243,0.934609,0.36803,0.453232,0.387987,0.819759,0.643171,0.0558402,0.437841,0.319448,|0.962579,0.838273,0.695626,0.766731,0.348302,0.642639,0.968119,0.783646,0.738959,0.881079,0.106773,0.740694,0.415819,0.03207,0.754526,0.637883,0.695356,0.595703,0.0735465,0.623716,0.667879,0.0817759,0.705761,0.351601,0.109484,0.908951,0.0949054,0.859963,0.0653778,0.556931,0.634261,0.995945,0.018407,0.124235,0.278181,0.637361,0.692374,0.0979981,0.424216,0.501869,0.4782,0.521639,0.285791,0.299063,0.093828,0.0985241,0.188487,0.546252,0.0891865,0.794765,0.0583596,0.70464,0.511036,0.315042,0.513784,0.0833932,0.8969,0.248917,0.345464,0.145682,0.189169,0.391435,0.853289,0.794303,0.0841686,0.24396,0.647485,0.463545,0.791143,0.382074,0.00430334,0.603942,0.319044,0.144432,0.568713,0.463338,0.201342,0.170944,0.384218,0.84353,0.0135262,0.925774,0.119154,0.313762,0.774944,0.608959,0.349571,0.695901,0.438161,0.455618,0.228322,0.739709,0.887449,0.0268018,0.0851011,0.922301,0.0644218,0.570973,0.220884,0.840901,0.781689,0.290398,0.0709541,0.830231,0.0541899,0.822874,0.911261,0.199273,0.705203,0.103505,0.548143,0.657793,0.129673,0.299267,0.356478,0.650685,0.393123,0.592029,0.68564,0.0675315,0.289626,0.0586292,0.122857,0.658192,0.257869,0.576666,0.335358,0.167966,0.155879,0.263015,0.215665,0.200667,0.437944,0.859755,0.391526,0.769998,0.752616,0.560086,0.608647,0.589919,0.856625,0.946418,0.324046,0.975377,0.395517,0.753399,0.0309699,0.722231,0.400364,0.726167,0.328284,0.0574791,0.571913,0.202873,0.191626,0.275666,0.995148,0.41233,0.731378,0.736275,0.235204,0.348281,0.825673,0.962912,0.21361,0.469326,0.693854,0.208657,0.746945,0.718899,0.00541407,0.138204,0.615493,0.618529,0.61633,0.102482,0.770903,0.226916,0.335933,0.221468,0.456967,0.56097,0.249575,0.164145,0.919002,0.240788,0.413247,0.944681,0.369259,0.27838,0.184897,0.799145,0.174317,0.725944,0.990459,0.0150081,0.172001,0.331254,0.869802,0.181976,0.159884,0.5305,0.158646,0.88477,0.658301,0.155013,0.742429,0.882912,0.249223,0.433841,0.929784,0.489248,0.722026,0.462957,0.853653,0.314374,0.535038,0.237499,0.464949,0.372752,0.0810599,0.420229,0.264123,0.243304,0.855971,0.273221,0.672682,0.363409,0.320702,0.30287,0.831473,0.264961,0.648907,0.754413,0.384603,0.187839,0.0829317,0.515605,0.121901,0.76543,0.233724,0.614004,0.778087,0.139378,0.413018,0.225889,0.085635,0.533386,0.965598,0.587044,0.781142,0.947007,0.338863,0.967193,0.0635818,0.898955,0.955253,0.000161588,0.402645,0.1271,0.766447,0.637151,0.833764,0.703323,0.264754,0.808597,0.852858,0.0872397,0.636039,0.388783,0.593781,0.808344,0.257051,0.355631,0.0551016,0.561602,0.0830003,0.643077,0.589877,0.907909,0.115999,0.604282,0.18561,0.909513,0.297561,0.270733,0.943576,0.0485139,0.253615,0.322769,0.837395,0.794846,0.804281,0.287307,0.667577,0.0443997,0.993127,0.965241,0.453065,0.0837719,0.969829,0.151936,0.174765,0.386002,0.115699,0.680081,0.231079,0.538742,0.180164,0.0310805,0.511832,0.384673,0.416846,0.499692,0.920659,0.00382245,0.0465996,0.181988,0.0479169,0.449527,0.151452,0.0488212,0.0195794,0.301352,0.599444,0.508686,0.480369,0.250202,0.0628797,0.941837,0.690283,0.424499,0.185978,0.263004,0.344487,0.302203,0.230674,0.687172,0.663837,0.7566,0.0853391,0.397636,0.962001,0.428429,0.600278,0.587089,0.150843,0.310234,0.373397,0.763337,0.246214,0.697113,0.478992,0.722065,0.14608,0.145457,0.815017,0.335529,0.92491,0.90327,0.806236,0.718697,0.86925,0.678429,0.0263884,0.597725,0.938245,0.175717,0.644159,0.345295,0.478923,0.830197,0.412641,0.760606,0.072337,0.701577,0.606383,0.877426,0.174662,0.142918,0.993214,0.377873,0.418831,0.866361,0.121112,0.0427731,0.881148,0.887351,0.0435441,0.691768,0.397598,0.244342,0.586486,0.495825,0.847595,0.231293,0.712027,0.870553,0.467592,0.555645,0.466539,0.0962758,0.976199,0.434138,0.927557,0.58128,0.0866934,0.891963,0.908849,0.110868,0.0172864,0.251788,0.525609,0.94625,0.740995,0.188338,0.761793,0.23852,0.14096,0.0715672,0.481965,0.291164,0.567961,0.349881,0.227749,0.0830779,0.909076,0.962887,0.335178,0.481047,0.138944,0.242531,0.249961,0.662403,0.747196,0.160334,0.990902,0.147082,0.266921,0.597555,0.931727,0.987586,0.184006,0.649802,0.478217,0.924703,0.928875,0.810706,0.835175,0.88541,0.842905,0.596083,0.271002,0.0701315,0.538238,0.683265,0.973216,0.331076,0.979058,0.928823,0.0307598,0.0215769,0.117697,0.457432,0.365162,0.424559,0.181177,0.153109,0.67462,0.492162,0.497764,0.108848,0.708063,0.214382,0.0922826,0.853863,0.833902,0.169465,0.948456,0.68148,0.663085,0.968011,0.730212,0.72834,0.171301,0.117148,0.895253,0.996173,0.437224,0.092415,0.18518,0.360641,0.782152,0.232943,0.452833,0.361377,0.677132,0.941345,0.952553,0.369306,0.422363,0.31614,0.493687,0.574381,0.278294,0.449748,0.349786,0.418631,0.935393,0.198661,0.908073,0.406325,0.0883064,0.32501,0.0705394,0.506755,0.0985255,0.340288,0.904077,0.265274,0.238494,0.551934,0.99293,0.827502,0.603284,0.288965,0.655455,0.179251,0.27279,0.392863,0.505482,0.591648,0.610874,0.0371588,0.942205,0.315589,0.484243,0.935094,0.151956,0.0610246,0.961217,0.144536,0.730093,0.544363,0.470446,0.139776,0.741883,0.601026,0.490365,0.725321,0.875829,0.0531224,0.719215,0.199016,0.27751,0.173566,0.409529,0.769059,0.130697,0.828875,0.73914,0.219275,0.00805831,0.34934,0.495875,0.388675,0.436459,0.901095,0.119119,0.196714,0.167408,0.787152,0.613649,0.720518,0.36356,0.0922311,0.171232,0.249707,0.462172,0.0424096,0.152343,0.587781,0.101501,0.763592,0.0672879,0.0336772,0.961711,0.975852,0.110474,0.693075,0.446788,0.97917,0.511232,0.246419,0.00558794,0.418753,0.161752,0.949564,0.930115,0.533222,0.168262,0.817618,0.130961,0.397966,0.900575,0.559354,0.865033,0.828738,0.340252,0.563935,0.585023,0.0724062,0.143342,0.367445,0.740623,0.8841,0.881327,0.361452,0.86334,0.509515,0.221855,0.150394,0.600509,0.367455,0.854788,0.325375,0.99672,0.189947,0.862426,0.127275,0.138867,0.55054,0.593029,0.129252,0.544644,0.639071,0.115101,0.605863,0.843192,0.328023,0.215839,0.483954,0.233798,0.223515,0.728548,0.193686,0.467424,0.105197,0.926361,0.751616,0.971349,0.746117,0.740815,0.627243,0.478227,0.202519,0.59848,0.185535,0.851114,0.15921,0.868407,0.0665967,0.880958,0.271873,0.854764,0.819225,0.421791,0.660932,0.223626,0.452879,0.883663,0.107218,0.0714666,0.184453,0.0946002,0.720255,0.582077,0.806914,0.963211,0.11148,0.683739,0.414732,0.846409,0.958917,0.0136048,0.188076,0.334293,0.906115,0.622945,0.247685,0.960288,0.570575,0.749581,0.935899,0.128117,0.219564,0.697462,0.845441,0.105512,0.748423,0.535991,0.807196,0.643574,0.931097,0.521831,0.639597,0.68376,0.296262,0.388398,0.515522,0.774878,0.379407,0.736023,0.167925,0.490508,0.373803,0.0378929,0.122102,0.0301263,0.502676,0.381533,0.526504,0.17364,0.00670791,0.0864163,0.410101,0.0779507,0.854325,0.594431,0.226,0.808436,0.842578,0.930347,0.28095,0.114303,0.256916,0.759141,0.85537,0.291639,0.959153,0.93681,0.322944,0.252504,0.491632,0.950763,0.478189,0.835586,0.867699,0.813579,0.271233,0.458031,0.0689793,0.281335,0.817054,0.212444,0.942855,0.424195,0.035113,0.634593,0.871838,0.740665,0.540779,0.307743,0.751423,0.615856,0.22667,0.51788,0.463491,0.0327856,0.116553,0.387236,0.452881,0.533767,0.395219,0.274775,0.790385,0.556194,0.721599,0.110843,0.438535,0.194254,0.00302929,0.688717,0.930445,0.692545,0.803702,0.200153,0.909722,0.304378,0.582727,0.00278097,0.0311058,0.357784,0.911905,0.235599,0.0105018,0.421473,0.648727,0.563819,0.41321,0.945537,0.0397744,0.991095,0.505155,0.272132,0.319036,0.668448,0.96038,0.88124,0.417827,0.794672,0.595589,0.0376989,0.722624,0.173735,0.931296,0.85151,0.905437,0.159995,0.171624,0.183995,0.496101,0.428713,0.862503,0.31645,0.62979,0.188057,0.394722,0.102306,0.70225,0.654004,0.933237,0.329236,0.316387,0.234661,0.550978,0.706401,0.467754,0.302804,0.575676,0.451769,0.73168,0.788777,0.219875,0.594229,0.48407,0.635157,0.308006,0.459552,0.282897,0.312872,0.536274,0.163985,0.985918,0.239117,0.459945,0.968458,0.22926,0.666996,0.929693,0.780689,0.473421,0.619368,0.0966263,0.391793,0.0692282,0.994628,0.248981,0.835756,0.00394726,0.935082,0.256877,0.606263,0.441783,0.401365,0.836578,0.510052,0.127758,0.294587,0.919759,0.88334,0.931821,0.819775,0.26362,0.988848,0.13633,0.14776,0.903791,0.986969,0.326576,0.952366,0.56769,0.80545,0.00414485,0.933708,0.792665,0.233207,0.395925,0.463743,0.867624,0.0642018,0.772618,0.885988,0.887287,0.811047,0.016526,0.430011,0.620294,0.918455,0.556578,0.637958,0.543315,0.835174,0.662908,0.00683481,0.927457,0.117291,0.461121,0.320694,0.117909,0.477756,0.658775,0.28211,0.18178,0.244082,0.350241,0.145598,0.906863,0.67355,0.71895,0.198656,0.989002,0.0990299,0.0900043,0.593561,0.165867,0.0378125,0.615458,0.213721,0.994666,0.205607,0.617243,0.820415,0.97718,0.00550574,0.493192,0.459592,0.110538,0.616042,0.212994,0.997055,0.386099,0.926629,0.420874,0.99211,0.769816,0.392667,0.290426,0.620274,0.953477,0.98102,0.72759,0.673948,0.920364,0.254482,0.754079,0.636684,0.918369,0.512985,0.649049,0.625909,0.377063,0.203752,0.178662,0.992717,0.228767,0.493325,0.592432,0.678609,0.549493,0.691691,0.340367,0.163136,0.319585,0.230137,0.467104,0.479726,0.18575,0.421429,0.145924,0.93526,0.409946,0.955392,0.408405,0.753111,0.578707,0.619633,0.468715,0.804639,0.667054,|0.221677,0.648976,0.0216306,0.703001,0.811393,0.272996,0.105027,0.280051,0.948303,0.0515141,0.318636,0.238873,0.515271,0.545651,0.768385,0.36593,0.895221,0.109104,0.809489,0.423797,0.505889,0.87989,0.553723,0.678037,0.45459,0.415234,0.0302772,0.694363,0.45476,0.0655872,0.627674,0.812762,0.421041,0.981577,0.151448,0.910408,0.253287,0.850186,0.467391,0.186174,0.880451,0.721874,0.502437,0.887659,0.958131,0.6867,0.599564,0.0223697,0.347805,0.70287,0.718862,0.204353,0.231192,0.947845,0.156279,0.670805,0.49899,0.16468,0.548077,0.527883,0.0269768,0.877371,0.296104,0.00230777,0.330175,0.815259,0.863653,0.182362,0.0585805,0.778685,0.45774,0.52992,0.484171,0.716167,0.753635,0.366165,0.12982,0.890129,0.954522,0.607965,0.764518,0.734811,0.165519,0.0934126,0.57419,0.718322,0.970783,0.12009,0.310737,0.705267,0.727326,0.915613,0.144103,0.807477,0.906139,0.445972,0.970061,0.641066,0.584546,0.833424,0.0746779,0.558075,0.286877,0.471135,0.680581,0.964324,0.354078,0.337329,0.611258,0.726129,0.69894,0.423903,0.876476,0.0560824,0.110535,0.485881,0.601281,0.306901,0.776425,0.0807039,0.541351,0.968767,0.278605,0.593118,0.729251,0.663459,0.251895,0.115252,0.730586,0.493479,0.17303,0.811581,0.054708,0.131307,0.447771,0.927359,0.497253,0.105729,0.456836,0.424527,0.0346241,0.534585,0.43048,0.146421,0.517765,0.993257,0.233456,0.899759,0.722505,0.250619,0.784888,0.585115,0.179048,0.300185,0.0148636,0.81448,0.33195,0.907803,0.385493,0.86722,0.683637,0.942871,0.447097,0.424876,0.794468,0.28548,0.939077,0.519816,0.417512,0.0695049,0.366683,0.729045,0.0899762,0.251735,0.780311,0.430287,0.649826,0.482792,0.312867,0.814907,0.03049,0.189764,0.0108961,0.656782,0.872654,0.217477,0.674838,0.420822,0.871845,0.743487,0.0703719,0.855615,0.597789,0.239199,0.281807,0.466117,0.370883,0.214033,0.272798,0.196537,0.949742,0.513718,0.715042,0.876131,0.429014,0.0563744,0.0242488,0.703579,0.385571,0.437459,0.504574,0.288294,0.621048,0.887315,0.909742,0.603767,0.234295,0.0322685,0.218252,0.624395,0.861312,0.516959,0.877811,0.0940531,0.237741,0.589674,0.308389,0.533152,0.299549,0.123621,0.818201,0.7467,0.307493,0.279097,0.328149,0.444561,0.680561,0.666901,0.224919,0.571094,0.706405,0.573797,0.959328,0.234916,0.739527,0.490546,0.567552,0.237029,0.111717,0.0415379,0.153749,0.75257,0.262399,0.886368,0.749819,0.996249,0.882231,0.29454,0.488525,0.967171,0.288549,0.328397,0.578899,0.66217,0.670325,0.219223,0.135779,0.425006,0.936264,0.246799,0.203778,0.719101,0.87395,0.170503,0.746961,0.187224,0.406428,0.825823,0.0377617,0.705184,0.227705,0.545195,0.634461,0.456331,0.220493,0.205791,0.260719,0.016556,0.474579,0.82218,0.672299,0.161456,0.450053,0.170051,0.503879,0.792672,0.482327,0.388972,0.166741,0.0549659,0.881852,0.865573,0.81289,0.330889,0.898098,0.455692,0.447436,0.180463,0.866416,0.449861,0.617918,0.802112,0.37139,0.689682,0.798354,0.0782475,0.749444,0.855504,0.815002,0.48757,0.827164,0.701321,0.971011,0.662193,0.027217,0.375531,0.673604,0.0750543,0.630622,0.379883,0.831372,0.397938,0.427418,0.322773,0.372674,0.317517,0.0640403,0.510549,0.147684,0.952983,0.754695,0.834444,0.557811,0.740801,0.186572,0.863549,0.994466,0.557325,0.594175,0.652255,0.694232,0.929836,0.258071,0.767127,0.764937,0.48429,0.728109,0.366915,0.764141,0.594595,0.540603,0.162736,0.263175,0.823832,0.240438,0.772748,0.455483,0.671689,0.261689,0.586283,0.848795,0.902363,0.552136,0.283981,0.322079,0.549431,0.947472,0.307303,0.236828,0.639941,0.281164,0.501297,0.846278,0.65536,0.919077,0.415156,0.62993,0.690471,0.823507,0.18516,0.643009,0.45872,0.249204,0.866651,0.102382,0.243032,0.698395,0.900684,0.270373,0.348544,0.4625,0.786115,0.837536,0.785423,0.557501,0.181361,0.888974,0.149814,0.847141,0.522454,0.334163,0.259778,0.924679,0.659368,0.613934,0.945455,0.341181,0.336462,0.646039,0.207507,0.685117,0.32539,0.37098,0.0609924,0.0623388,0.792079,0.505208,0.236508,0.169733,0.748974,0.954042,0.509528,0.875584,0.0929881,0.433303,0.184931,0.56973,0.619881,0.886757,0.677995,0.277818,0.796343,0.677784,0.732423,0.591683,0.93948,0.0685313,0.641304,0.979482,0.307045,0.424531,0.471718,0.795677,0.251882,0.985137,0.555428,0.199083,0.750946,0.998276,0.903034,0.164384,0.0562276,0.433628,0.17087,0.701279,0.217772,0.992135,0.132867,0.534019,0.927372,0.747605,0.445634,0.0441025,0.751322,0.498702,0.397314,0.974772,0.712851,0.00574458,0.181008,0.284924,0.753809,0.979073,0.434403,0.235387,0.917672,0.805372,0.933533,0.791437,0.299643,0.303087,0.0199602,0.18657,0.563925,0.887012,0.883286,0.766023,0.11682,0.989456,0.650554,0.132099,0.215462,0.795431,0.974625,0.0489174,0.83061,0.0824583,0.0502615,0.716228,0.431373,0.109461,0.514763,0.73641,0.116442,0.704685,0.772417,0.121608,0.19155,0.957338,0.0380754,0.253965,0.0761215,0.894558,0.576134,0.940045,0.760517,0.0950006,0.698185,0.712296,0.347417,0.709093,0.889844,0.575677,0.91686,0.0178365,0.211287,0.298618,0.806366,0.995668,0.6142,0.566283,0.694965,0.511944,0.924878,0.810907,0.0513898,0.173444,0.188034,0.123715,0.186274,0.128616,0.767704,0.68872,0.497095,0.406689,0.930449,0.64015,0.316193,0.878478,0.724811,0.261714,0.0949665,0.337198,0.451927,0.0438633,0.549652,0.593502,0.784485,0.751396,0.80509,0.253802,0.960495,0.965983,0.316719,0.908145,0.783425,0.258058,0.739004,0.596099,0.398496,0.156722,0.444717,0.108061,0.406379,0.0216711,0.923553,0.181621,0.46791,0.850627,0.65885,0.605654,0.925563,0.216106,0.62298,0.624664,0.551425,0.0101519,0.509699,0.761688,0.0761549,0.560181,0.939089,0.328295,0.41027,0.98559,0.474959,0.689857,0.984552,0.804593,0.72694,0.201898,0.0714183,0.053603,0.670525,0.13945,0.646645,0.886572,0.862925,0.264414,0.641912,0.776376,0.045009,0.745373,0.615813,0.0146863,0.916231,0.683043,0.316586,0.206282,0.675124,0.0955064,0.443316,0.934075,0.160474,0.846887,0.000530005,0.514553,0.302307,0.00676292,0.163464,0.14341,0.171542,0.0646914,0.0737238,0.102768,0.16514,0.574252,0.0952968,0.933776,0.657603,0.224075,0.587526,0.00816184,0.848709,0.393979,0.928093,0.998627,0.872937,0.922022,0.545639,0.220687,0.476484,0.0801889,0.480713,0.0433756,0.739976,0.666596,0.0708641,0.936901,0.403298,0.632851,0.923613,0.429435,0.773506,0.228766,0.662876,0.481012,0.673296,0.847479,0.459001,0.813755,0.104032,0.57639,0.915077,0.516891,0.27631,0.624392,0.0883499,0.242303,0.795426,0.955669,0.348125,0.0937827,0.96134,0.343176,0.613356,0.101147,0.514826,0.293587,0.572838,0.130526,0.774957,0.885951,0.199938,0.722162,0.851665,0.93179,0.71065,0.163576,0.804526,0.392116,0.515236,0.516496,0.976717,0.458554,0.688138,0.573748,0.565602,0.0474002,0.941655,0.147208,0.930506,0.845525,0.162932,0.565796,0.776415,0.464984,0.772154,0.439907,0.317485,0.00835812,0.158572,0.577823,0.674632,0.737946,0.393001,0.962986,0.523396,0.531169,0.410455,0.389257,0.947034,0.525966,0.673304,0.283314,0.652681,0.296044,0.816898,0.65894,0.106228,0.334229,0.0973332,0.597314,0.171585,0.414207,0.479694,0.885651,0.807589,0.338426,0.244527,0.0989637,0.43932,0.253288,0.148371,0.17593,0.405152,0.131173,0.829468,0.486764,0.987062,0.482729,0.320979,0.822809,0.568849,0.700589,0.788394,0.816695,0.558747,0.769923,0.601083,0.453905,0.315779,0.0230658,0.813238,0.937455,0.389351,0.866249,0.439239,0.248564,0.120641,0.513022,0.530981,0.7995,0.943201,0.181923,0.211799,0.649447,0.147417,0.338802,0.060513,0.35073,0.610022,0.96588,0.35318,0.818917,0.847957,0.0296485,0.407997,0.502592,0.30666,0.0988325,0.0582915,0.387342,0.503472,0.567399,0.128186,0.600595,0.681078,0.136537,0.463184,0.0371802,0.613324,0.366969,0.273771,0.166753,0.787203,0.730176,0.765525,0.681318,0.510142,0.556747,0.623301,0.137565,0.637917,0.37183,0.35897,0.464324,0.446619,0.699531,0.517263,0.527969,0.532248,0.841736,0.749495,0.872603,0.0962517,0.79719,0.468973,0.477033,0.142342,0.235367,0.119102,0.363204,0.826417,0.676763,0.5707,0.994336,0.735231,0.123911,0.213916,0.402801,0.956715,0.726115,0.384577,0.627057,0.984106,0.809018,0.829762,0.835028,0.639471,0.957624,0.509567,0.191607,0.407229,0.212856,0.00869596,0.898493,0.0735857,0.376163,0.713165,0.880367,0.509292,0.888465,0.987439,0.301193,0.0829535,0.825645,0.358639,0.555875,0.150903,0.459033,0.369674,0.866759,0.185614,0.60945,0.887472,0.594282,0.497248,0.301176,0.146953,0.00133187,0.975852,0.702459,0.319449,0.707061,0.972093,0.821483,0.214717,0.894445,0.564808,0.157442,0.945328,0.971295,0.278185,0.487045,0.512211,0.282675,0.523449,0.453327,0.0562213,0.235533,0.965307,0.0968289,0.497639,0.48439,0.921211,0.908316,0.540496,0.139132,0.613004,0.656128,0.644688,0.756391,0.328257,0.117009,0.825133,0.365675,0.507655,0.60418,0.349701,0.496701,0.621844,0.943317,0.346431,0.710674,0.017462,0.913363,0.127206,0.452349,0.936204,0.330938,0.925557,0.727256,0.554327,0.21145,0.387338,0.551352,0.0409742,0.212484,0.824676,0.104544,0.214944,0.348043,0.663051,0.741686,0.7379,0.550049,0.910913,0.329032,0.788848,0.0390332,0.663954,0.346013,0.138969,0.820471,0.140034,0.198113,0.0945561,0.920581,0.315958,0.455641,0.822729,0.0335634,0.360301,0.776814,0.260901,0.788988,0.566319,0.519526,0.866481,0.532223,0.86595,0.0223001,0.0514036,0.32279,0.687942,0.918747,0.414768,0.180716,0.599111,|0.968128,0.338145,0.224933,0.963711,0.458418,0.475043,0.19742,0.417589,0.415154,0.669666,0.0974152,0.0719016,0.641761,0.524636,0.781404,0.726249,0.737483,0.706714,0.747981,0.119609,0.583568,0.0629839,0.933722,0.399292,0.923917,0.570431,0.863325,0.948401,0.366118,0.0658078,0.109996,0.110021,0.776276,0.955628,0.39051,0.790178,0.383532,0.000434339,0.292741,0.187364,0.98134,0.417133,0.918812,0.0397013,0.961271,0.512397,0.765925,0.926453,0.421211,0.410192,0.529075,0.434056,0.118979,0.953391,0.794976,0.792578,0.494639,0.092416,0.664435,0.844592,0.0813259,0.139235,0.694311,0.417923,0.0826045,0.700258,0.767163,0.0853015,0.027769,0.76565,0.421387,0.654443,0.0135452,0.401031,0.669227,0.0256112,0.128919,0.650777,0.420466,0.945573,0.281801,0.741579,0.291023,0.303313,0.833324,0.120136,0.959964,0.750455,0.143604,0.765972,0.681181,0.330643,0.01115,0.216745,0.472916,0.253708,0.538219,0.356809,0.940653,0.0242029,0.793525,0.45005,0.0249325,0.193337,0.079627,0.363667,0.0939102,0.623863,0.097241,0.850346,0.987941,0.485736,0.0272459,0.0260001,0.308891,0.183563,0.46982,0.450904,0.512339,0.259989,0.473603,0.444554,0.766241,0.876362,0.110476,0.77893,0.0236642,0.843036,0.836932,0.708142,0.348706,0.608443,0.437782,0.762603,0.145108,0.922853,0.947715,0.721488,0.650608,0.220015,0.489257,0.123278,0.718177,0.124714,0.615678,0.641789,0.224403,0.542851,0.75562,0.334086,0.921584,0.909132,0.653714,0.971927,0.526144,0.639989,0.989286,0.294011,0.104481,0.247872,0.606034,0.988909,0.438343,0.931108,0.997769,0.761658,0.576698,0.525795,0.230045,0.477857,0.346124,0.4368,0.814415,0.333888,0.119314,0.000166535,0.0551622,0.204745,0.671616,0.276384,0.732912,0.410068,0.413431,0.0803565,0.476276,0.779777,0.0356752,0.447751,0.0577317,0.423589,0.20256,0.550471,0.576283,0.217317,0.78893,0.227949,0.544004,0.153933,0.482563,0.498319,0.911478,0.556335,0.17402,0.925887,0.061133,0.681313,0.0447044,0.955905,0.219473,0.355573,0.168157,0.334748,0.451512,0.631089,0.644262,0.962406,0.358458,0.0247505,0.895582,0.777445,0.463103,0.962789,0.889994,0.380049,0.864928,0.166175,0.644096,0.104514,0.924202,0.0789887,0.0071876,0.278782,0.108554,0.851012,0.287584,0.102815,0.823889,0.047901,0.827766,0.747073,0.471909,0.719669,0.555229,0.215824,0.739647,0.693023,0.447794,0.777261,0.14743,0.584106,0.975529,0.283252,0.848205,0.897271,0.174025,0.723418,0.0484726,0.921154,0.656133,0.36076,0.442392,0.521698,0.85073,0.69363,0.561138,0.343397,0.611641,0.22187,0.353857,0.489989,0.316773,0.321952,0.527283,0.50309,0.874322,0.459642,0.210917,0.571093,0.611192,0.290831,0.152696,0.249784,0.899146,0.248737,0.00721228,0.945465,0.926507,0.144542,0.873473,0.599216,0.955875,0.754428,0.348594,0.121066,0.722582,0.0252005,0.545563,0.735756,0.62257,0.513944,0.0484176,0.90838,0.206493,0.119274,0.272926,0.0387534,0.771298,0.049418,0.0320897,0.24311,0.0172119,0.488793,0.100904,0.501682,0.107489,0.0557529,0.0712588,0.59867,0.0010854,0.333213,0.733602,0.467206,0.408037,0.638532,0.0276293,0.045745,0.380542,0.657951,0.99163,0.358896,0.656125,0.80093,0.489233,0.357519,0.282747,0.668869,0.44793,0.813545,0.762192,0.721871,0.379716,0.432896,0.0938429,0.748107,0.345633,0.608796,0.0747352,0.361889,0.349569,0.450808,0.868786,0.97051,0.834405,0.324287,0.0273685,0.344948,0.75392,0.966996,0.505083,0.724668,0.97908,0.813987,0.819942,0.641271,0.150986,0.411696,0.309264,0.412085,0.786409,0.050653,0.111466,0.0463213,0.776788,0.754722,0.167851,0.300417,0.428846,0.805204,0.940161,0.0695054,0.275691,0.761482,0.408081,0.189363,0.5177,0.616242,0.659535,0.0530687,0.33356,0.79546,0.418589,0.122268,0.405442,0.728571,0.126694,0.750545,0.0710859,0.311066,0.326028,0.603729,0.480684,0.953677,0.928884,0.993923,0.674008,0.177588,0.940383,0.685438,0.585663,0.0676611,0.123914,0.051524,0.383576,0.451384,0.287559,0.35589,0.080604,0.923353,0.377149,0.306201,0.240466,0.95013,0.315916,0.473263,0.180775,0.886237,0.360208,0.52002,0.764845,0.56199,0.145259,0.512372,0.582975,0.20463,0.0688429,0.459495,0.657184,0.795924,0.725109,0.0969655,0.734522,0.495108,0.271295,0.657052,0.36191,0.326022,0.230957,0.818044,0.710669,0.74146,0.855352,0.0969223,0.219411,0.213093,0.946239,0.826678,0.725488,0.259914,0.512797,0.735931,0.117882,0.400383,0.207767,0.482931,0.0638129,0.649639,0.747137,0.556822,0.979012,0.532002,0.994932,0.115858,0.407658,0.98904,0.592537,0.261993,0.157098,0.923138,0.455824,0.394711,0.507362,0.058844,0.57979,0.274915,0.370695,0.299256,0.246342,0.799202,0.0552834,0.28691,0.0519366,0.572086,0.696256,0.0813455,0.735755,0.171948,0.011553,0.371922,0.96104,0.485673,0.277209,0.953274,0.175658,0.0906131,0.912469,0.939988,0.849928,0.986311,0.498284,0.202165,0.661208,0.0939196,0.355738,0.785199,0.824243,0.59216,0.247337,0.774176,0.679699,0.962631,0.87083,0.572922,0.439789,0.00360316,0.538811,0.110518,0.365388,0.58119,0.671217,0.285762,0.255561,0.397813,0.867641,0.421101,0.98698,0.550981,0.549897,0.7458,0.860567,0.116311,0.346722,0.154303,0.975034,0.218801,0.229851,0.992326,0.467407,0.91423,0.262912,0.180077,0.858498,0.109994,0.37828,0.852442,0.379742,0.833371,0.38604,0.788037,0.498027,0.0914395,0.379169,0.651041,0.88438,0.0439852,0.0429311,0.595239,0.857619,0.316941,0.957563,0.252195,0.189226,0.205749,0.73634,0.357113,0.678121,0.220334,0.432144,0.850105,0.273457,0.090205,0.717116,0.172344,0.714448,0.185647,0.544688,0.789534,0.874943,0.682205,0.461601,0.633693,0.650975,0.210024,0.987909,0.510009,0.222093,0.240669,0.337817,0.997141,0.0679523,0.163209,0.750482,0.427686,0.343661,0.589477,0.576707,0.714298,0.276244,0.965989,0.605004,0.187713,0.922533,0.166879,0.311788,0.424552,0.0313083,0.476439,0.654712,0.290575,0.88678,0.810583,0.617098,0.401361,0.939461,0.627544,0.427366,0.920659,0.584082,0.887097,0.86178,0.59696,0.147001,0.950963,0.522545,0.0332711,0.0165649,0.188897,0.5884,0.291116,0.887397,0.1187,0.0806268,0.558911,0.0396469,0.163457,0.115944,0.313501,0.747681,0.229546,0.890453,0.843153,0.54751,0.365301,0.327688,0.601428,0.160134,0.351546,0.0765275,0.183283,0.751962,0.521576,0.887375,0.00158685,0.590092,0.494566,0.428739,0.329075,0.291185,0.384938,0.500621,0.571988,0.145006,0.0746593,0.148225,0.419911,0.681518,0.811659,0.680859,0.935458,0.0902216,0.501532,0.845155,0.854093,0.802357,0.298653,0.182508,0.30438,0.172345,0.0690009,0.533179,0.0358279,0.0870769,0.894418,0.214494,0.750077,0.713909,0.707312,0.595373,0.395535,0.735865,0.641222,0.918906,0.516742,0.244743,0.323885,0.660906,0.877042,0.828741,0.339829,0.381598,0.785628,0.242603,0.0483438,0.272085,0.09231,0.255897,0.94987,0.683498,0.81295,0.0354733,0.871886,0.729086,0.195492,0.488371,0.759992,0.793769,0.611467,0.978018,0.391758,0.956214,0.0178507,0.955196,0.950764,0.107241,0.651329,0.912379,0.131805,0.807688,0.415112,0.281514,0.7012,0.699877,0.684716,0.636669,0.646778,0.685146,0.839582,0.749195,0.364007,0.258509,0.165237,0.724057,0.546064,0.619546,0.27326,0.0754564,0.486381,0.386554,0.994954,0.130899,0.907337,0.438638,0.250229,0.834385,0.664546,0.142683,0.108597,0.649324,0.651168,0.664462,0.393613,0.760643,0.435959,0.322968,0.119602,0.303405,0.203022,0.737313,0.000837862,0.297695,0.0463549,0.589425,0.876266,0.502219,0.832626,0.314274,0.35592,0.66157,0.844803,0.472568,0.445917,0.401232,0.552412,0.292227,0.889983,0.228018,0.147945,0.91946,0.760464,0.986913,0.293191,0.0955164,0.562287,0.487145,0.841792,0.179489,0.55912,0.849211,0.842969,0.812886,0.65559,0.297446,0.180534,0.0373723,0.411031,0.242338,0.543115,0.285727,0.681457,0.630265,0.569511,0.307803,0.467879,0.866197,0.819801,0.314892,0.610574,0.413457,0.615659,0.424874,0.178956,0.195783,0.766975,0.52816,0.21596,0.556369,0.372842,0.763017,0.702873,0.923665,0.909926,0.800501,0.860433,0.378455,0.403917,0.0123729,0.646987,0.654664,0.513785,0.953841,0.927972,0.155503,0.0118968,0.638203,0.640872,0.72917,0.987629,0.943189,0.472663,0.540991,0.198418,0.680909,0.772236,0.0225888,0.754808,0.108151,0.700453,0.308412,0.902341,0.340966,0.0285064,0.667845,0.398433,0.441972,0.974529,0.862217,0.520787,0.833816,0.862573,0.155166,0.239887,0.173391,0.329644,0.454669,0.509194,0.292431,0.561784,0.202951,0.83212,0.49413,0.973324,0.7694,0.270168,0.0742305,0.755808,0.341251,0.238188,0.773348,0.731868,0.261201,0.128864,0.509311,0.902533,0.824247,0.671175,0.915493,0.698168,0.578991,0.603909,0.317375,0.0968408,0.572773,0.931019,0.654271,0.951827,0.517201,0.826056,0.136453,0.0315655,0.664769,0.657011,0.594993,0.62556,0.837479,0.259457,0.30773,0.0112594,0.287427,0.0292915,0.209818,0.469945,0.0370718,0.394917,0.728622,0.257365,0.424334,0.871,0.409733,0.165163,0.552495,0.339171,0.964748,0.515844,0.0450212,0.204988,0.674783,0.252578,0.812844,0.826975,0.899797,0.495067,0.0969718,0.0705861,0.854196,0.741988,0.799535,0.796359,0.484092,0.201006,0.861789,0.890718,0.493864,0.626998,0.869857,0.183609,0.513272,0.959721,0.24312,0.611488,0.339678,0.00645185,0.918128,0.394873,0.883029,0.767032,0.407565,0.0258808,0.693249,0.0275742,0.44057,0.224124,0.790293,0.0804371,0.264498,0.183253,0.0632988,0.880391,0.423824,0.495205,0.100786,0.127543,0.753011,0.0477621,0.256377,0.779859,0.618715,0.161591,0.627743,0.0571279,0.425302,0.801539,|0.984288,0.735458,0.372224,0.471685,0.701452,0.712336,0.662267,0.170884,0.107588,0.802665,0.28657,0.803359,0.373126,0.835349,0.15391,0.358007,0.690838,0.636482,0.397474,0.809003,0.56778,0.375524,0.59491,0.738648,0.846699,0.637728,0.8403,0.623509,0.352966,0.348947,0.790155,0.549145,0.0404558,0.487266,0.78888,0.0256623,0.581326,0.0303922,0.915699,0.757462,0.282179,0.684074,0.354441,0.107283,0.160198,0.743744,0.829391,0.42399,0.872459,0.184179,0.454744,0.961446,0.292327,0.200189,0.355535,0.755621,0.588879,0.751303,0.641097,0.966479,0.735359,0.846741,0.0463847,0.682892,0.140465,0.220479,0.587012,0.490154,0.466336,0.753071,0.652124,0.164927,0.432134,0.467356,0.229696,0.0615541,0.507955,0.53932,0.922208,0.0374483,0.557251,0.615764,0.169819,0.335642,0.86187,0.876622,0.842906,0.690086,0.239654,0.268402,0.919279,0.480959,0.8523,0.128751,0.674228,0.908803,0.925214,0.979271,0.967395,0.578041,0.337259,0.343635,0.264882,0.159621,0.431755,0.927123,0.220718,0.680201,0.449299,0.21507,0.785625,0.0195794,0.408544,0.284929,0.945037,0.592554,0.602764,0.769619,0.497826,0.25309,0.235288,0.237258,0.167502,0.962533,0.218319,0.905652,0.70531,0.684163,0.943521,0.438497,0.0673219,0.674783,0.242856,0.547182,0.371954,0.27057,0.36985,0.987251,0.87409,0.979106,0.678833,0.827206,0.734687,0.625167,0.319847,0.555111,0.43075,0.600944,0.480812,0.711897,0.146781,0.173356,0.766532,0.171743,0.305058,0.862517,0.766182,0.870927,0.629546,0.764907,0.934354,0.538134,0.290616,0.398376,0.0490588,0.489455,0.556137,0.367169,0.118672,0.231157,0.150936,0.261589,0.925221,0.583615,0.941217,0.941823,0.752727,0.985537,0.0528275,0.377339,0.728671,0.995283,0.0673766,0.0552354,0.611909,0.398275,0.0290589,0.394446,0.669953,0.10572,0.988463,0.23756,0.891022,0.932048,0.687682,0.740894,0.649277,0.210631,0.0689735,0.688056,0.216656,0.975777,0.727778,0.890918,0.788068,0.752832,0.122156,0.302626,0.458682,0.431029,0.976745,0.590963,0.296785,0.0648175,0.555564,0.49421,0.149931,0.0087347,0.670918,0.946269,0.0552351,0.0242829,0.95288,0.570268,0.0168849,0.690881,0.906764,0.942384,0.435546,0.141308,0.944433,0.500763,0.977774,0.538549,0.47161,0.448397,0.475738,0.952465,0.503743,0.552466,0.899501,0.83205,0.771538,0.587482,0.703706,0.918045,0.5551,0.651305,0.238829,0.359337,0.682059,0.459475,0.823724,0.490251,0.250726,0.816341,0.110002,0.77836,0.0226858,0.601246,0.327407,0.172199,0.401924,0.551291,0.986384,0.609068,0.589849,0.461009,0.0357942,0.867443,0.612518,0.751271,0.16028,0.272747,0.335842,0.503791,0.624606,0.811839,0.262147,0.247978,0.116899,0.301545,0.807362,0.422803,0.91906,0.0991423,0.946493,0.940669,0.48388,0.442911,0.974446,0.665637,0.105546,0.18851,0.311725,0.94324,0.534037,0.168999,0.365808,0.0869373,0.00478524,0.387427,0.598568,0.321134,0.00903434,0.955085,0.0153723,0.463181,0.388494,0.818489,0.71998,0.814071,0.694986,0.294576,0.562659,0.363467,0.81329,0.53936,0.10571,0.218505,0.394087,0.0806529,0.704578,0.543904,0.80406,0.344283,0.920135,0.876717,0.202479,0.114531,0.866042,0.996685,0.840094,0.24428,0.405795,0.63656,0.121035,0.0210694,0.809214,0.61623,0.5753,0.0565698,0.254917,0.907917,0.0807849,0.612247,0.823551,0.188927,0.428489,0.869617,0.895598,0.604851,0.690047,0.363903,0.889097,0.373418,0.503275,0.853385,0.384241,0.462625,0.735706,0.203923,0.890689,0.169161,0.560565,0.0623294,0.952133,0.230692,0.432263,0.342206,0.771585,0.089018,0.836445,0.34492,0.235541,0.948522,0.940638,0.0985261,0.127584,0.881224,0.739212,0.848581,0.993507,0.763607,0.0572277,0.132268,0.544453,0.812071,0.579194,0.860644,0.829983,0.525303,0.164718,0.773662,0.867729,0.588147,0.489969,0.263639,0.0150515,0.846187,0.838613,0.566349,0.238195,0.869213,0.0916826,0.175451,0.42661,0.333936,0.459658,0.244224,0.92279,0.577777,0.906139,0.137262,0.993294,0.975672,0.764921,0.838647,0.58189,0.0810084,0.0759749,0.992681,0.316427,0.0323527,0.285007,0.127725,0.890261,0.0601303,0.327364,0.145152,0.914695,0.621729,0.864425,0.0628988,0.266907,0.016141,0.74044,0.148676,0.972866,0.214088,0.583468,0.918034,0.379018,0.28862,0.0716542,0.793509,0.545739,0.719965,0.101381,0.127776,0.467049,0.916675,0.045486,0.0396997,0.656206,0.55521,0.799528,0.743355,0.47931,0.936279,0.96594,0.280388,0.669299,0.928824,0.39001,0.362205,0.6577,0.0362348,0.838784,0.637513,0.799575,0.764961,0.920066,0.0290968,0.334538,0.637476,0.557544,0.871882,0.367896,0.335173,0.961746,0.0385866,0.500513,0.302802,0.124851,0.0704616,0.391297,0.0243274,0.391151,0.797938,0.548584,0.849268,0.304955,0.425659,0.33053,0.844672,0.210231,0.234286,0.550913,0.170308,0.473779,0.699994,0.682907,0.784289,0.120035,0.265377,0.090214,0.311651,0.00711149,0.24877,0.273347,0.0680192,0.054309,0.2158,0.0723771,0.491152,0.490089,0.370395,0.466499,0.539388,0.53185,0.253349,0.210994,0.83299,0.469938,0.0196133,0.153119,0.482395,0.333985,0.326702,0.9159,0.755245,0.922381,0.316254,0.803479,0.339628,0.238544,0.294538,0.425394,0.384959,0.649461,0.565916,0.443118,0.52157,0.987484,0.35341,0.671031,0.610886,0.015728,0.528154,0.2487,0.854694,0.793628,0.731372,0.866395,0.807057,0.0107373,0.248483,0.0102585,0.294593,0.324004,0.546175,0.394203,0.441072,0.00592762,0.314222,0.238079,0.0658442,0.403664,0.164881,0.960659,0.444141,0.19356,0.840016,0.326663,0.326141,0.585485,0.254528,0.0879295,0.506151,0.815793,0.164068,0.492726,0.686601,0.128294,0.748165,0.743638,0.216695,0.117558,0.429166,0.850429,0.867906,0.402431,0.871194,0.0485617,0.898282,0.898941,0.831456,0.948754,0.910538,0.0902401,0.176721,0.367535,0.503228,0.923369,0.0444881,0.0153416,0.54182,0.00256652,0.646111,0.0243417,0.254881,0.0523874,0.312642,0.256493,0.797495,0.684849,0.0761325,0.51789,0.019426,0.619209,0.331898,0.0348732,0.947678,0.606062,0.76443,0.763645,0.213138,0.430078,0.891796,0.363822,0.788265,0.258044,0.970642,0.993086,0.713511,0.839727,0.356582,0.788064,0.462793,0.251986,0.494757,0.249631,0.404784,0.744452,0.354733,0.218083,0.0720884,0.904087,0.1115,0.616967,0.394049,0.639149,0.602469,0.736399,0.865934,0.387868,0.336182,0.83382,0.53725,0.242741,0.984356,0.881215,0.614979,0.933071,0.602144,0.814418,0.234052,0.492615,0.767762,0.0482125,0.901523,0.699899,0.135545,0.970875,0.754216,0.154144,0.563677,0.147413,0.548287,0.994755,0.112892,0.357115,0.53193,0.712038,0.937826,0.958731,0.758692,0.932165,0.467199,0.865404,0.857584,0.446916,0.400176,0.805596,0.837604,0.398388,0.518481,0.453414,0.241871,0.527588,0.65985,0.121317,0.860851,0.209459,0.958875,0.0307397,0.243893,0.471876,0.151447,0.569833,0.288101,0.726864,0.575591,0.385691,0.842991,0.436274,0.0959229,0.037202,0.332161,0.799966,0.466533,0.883465,0.236132,0.588308,0.873642,0.812174,0.0618408,0.339118,0.925542,0.595306,0.0319338,0.626988,0.301136,0.759939,0.134579,0.809581,0.00741655,0.103582,0.545286,0.957522,0.956331,0.182674,0.110501,0.967587,0.28043,0.287488,0.400734,0.292487,0.54537,0.861866,0.171103,0.555798,0.862801,0.826037,0.37559,0.480897,0.900847,0.391672,0.380526,0.928374,0.344528,0.620299,0.680264,0.491554,0.39832,0.322747,0.575298,0.822725,0.290768,0.0245773,0.858308,0.750706,0.0941438,0.475937,0.240891,0.291978,0.967587,0.724761,0.898071,0.730143,0.765658,0.107796,0.97753,0.963229,0.955342,0.796242,0.351535,0.419323,0.287671,0.477302,0.119194,0.610267,0.750745,0.597462,0.329509,0.959679,0.290588,0.724355,0.413369,0.519719,0.317924,0.474727,0.783244,0.145763,0.406116,0.931848,0.348277,0.267273,0.771768,0.352151,0.810399,0.444708,0.455402,0.648645,0.999353,0.270631,0.860488,0.384735,0.538719,0.907681,0.039547,0.676403,0.327378,0.975802,0.98922,0.594327,0.315244,0.393488,0.273417,0.0948437,0.354881,0.87065,0.686098,0.904144,0.139918,0.61753,0.932185,0.638349,0.539364,0.934526,0.797487,0.837097,0.242126,0.689365,0.986189,0.883501,0.989289,0.671524,0.896983,0.735504,0.387829,0.569184,0.180476,0.827679,0.194323,0.481798,0.507182,0.63083,0.169501,0.789692,0.479008,0.671019,0.935496,0.115116,0.216576,0.352169,0.844834,0.7404,0.221603,0.0327547,0.875218,0.30856,0.752374,0.53022,0.0588785,0.866039,0.698567,0.0400439,0.0277417,0.385544,0.543754,0.615357,0.141508,0.696631,0.665517,0.637368,0.32325,0.669151,0.332508,0.456031,0.424571,0.236403,0.897476,0.785044,0.125367,0.0797969,0.536539,0.479864,0.674399,0.630083,0.255748,0.945066,0.0270349,0.771051,0.818181,0.649077,0.633741,0.904368,0.939312,0.158491,0.37272,0.838303,0.00942099,0.983411,0.201997,0.453011,0.335282,0.0995297,0.349907,0.400932,0.426913,0.175877,0.580471,0.15487,0.0521761,0.511911,0.905901,0.626769,0.166141,0.325239,0.815881,0.588832,0.0296261,0.0315043,0.644083,0.249129,0.670092,0.0256788,0.0339835,0.195288,0.665404,0.938859,0.422031,0.255988,0.0810679,0.981751,0.883857,0.702899,0.199467,0.456326,0.601254,0.209808,0.828904,0.84624,0.112984,0.778423,0.0324994,0.920015,0.397772,0.714066,0.388501,0.754876,0.50358,0.360523,0.820687,0.424098,0.616103,0.619267,0.936402,0.409534,0.506073,0.372448,0.564823,0.253437,0.903083,0.26865,0.714492,0.88207,0.83053,0.466678,0.624245,0.380353,0.233331,0.776535,0.915816,0.60745,0.398135,0.671556,0.988062,0.788889,0.842152,0.516805,0.482011,0.308154,0.538934,0.522372,0.357198,0.890938,0.252036,|0.759558,0.164957,0.777231,0.161804,0.204979,0.892125,0.0506967,0.0336919,0.187491,0.4447,0.29652,0.424616,0.899446,0.444064,0.183448,0.693097,0.30552,0.233611,0.821328,0.0781636,0.825868,0.2251,0.718789,0.23871,0.313336,0.895316,0.292753,0.577659,0.242336,0.536395,0.930227,0.519565,0.403824,0.112441,0.890651,0.134331,0.961007,0.635778,0.454977,0.0585028,0.525276,0.387384,0.5471,0.435363,0.461539,0.75878,0.196929,0.198506,0.997202,0.812002,0.653862,0.353387,0.31046,0.0395084,0.670036,0.758098,0.490653,0.78347,0.718555,0.573019,0.567453,0.748951,0.692881,0.293795,0.892059,0.588108,0.821256,0.497721,0.233098,0.119894,0.87,0.491567,0.136149,0.0140853,0.23175,0.183621,0.269939,0.661791,0.291456,0.58671,0.869953,0.134171,0.628638,0.308385,0.753403,0.801387,0.0731655,0.536275,0.73105,0.195952,0.449522,0.400082,0.0259503,0.376602,0.102673,0.666174,0.809258,0.999543,0.664889,0.856216,0.175565,0.770352,0.806973,0.605423,0.562517,0.142626,0.852944,0.323448,0.358525,0.574871,0.368125,0.0310491,0.547551,0.785477,0.797514,0.0980307,0.626397,0.827699,0.486018,0.129984,0.483344,0.737864,0.241281,0.975569,0.997773,0.120721,0.719621,0.243659,0.212974,0.431597,0.451255,0.548108,0.874677,0.895222,0.139981,0.503194,0.821591,0.226742,0.232547,0.631917,0.245015,0.210837,0.335131,0.928064,0.337174,0.525604,0.757138,0.525357,0.700968,0.735826,0.924103,0.249424,0.75145,0.565367,0.70868,0.884906,0.0644259,0.34938,0.858182,0.819999,0.946069,0.340369,0.690748,0.894681,0.656886,0.236478,0.583615,0.96199,0.797198,0.95987,0.337338,0.701181,0.944966,0.398093,0.853894,0.993961,0.303771,0.487134,0.419488,0.597476,0.242641,0.139198,0.979301,0.654007,0.149202,0.972968,0.181623,0.969961,0.677815,0.55231,0.0657727,0.510596,0.174107,0.92734,0.452505,0.537293,0.187534,0.132873,0.434323,0.105306,0.702352,0.840813,0.893427,0.503613,0.21114,0.0431475,0.0943193,0.491407,0.0920066,0.184846,0.508344,0.542624,0.707529,0.05391,0.203688,0.885269,0.393306,0.79466,0.597587,0.0155881,0.29403,0.780567,0.0649168,0.125277,0.150554,0.802915,0.0545329,0.978015,0.0649639,0.0111908,0.421276,0.770792,0.412797,0.315517,0.0265649,0.206494,0.755143,0.513218,0.992478,0.711075,0.557072,0.988158,0.906448,0.130428,0.1178,0.935024,0.353745,0.497699,0.831803,0.110577,0.125238,0.413368,0.763072,0.109165,0.383628,0.121884,0.702241,0.991802,0.776425,0.081055,0.977303,0.733387,0.132016,0.0359892,0.401747,0.368832,0.267823,0.257424,0.0848054,0.817993,0.832123,0.796273,0.80568,0.938331,0.515559,0.635033,0.206477,0.697389,0.585007,0.857891,0.536682,0.0179055,0.156139,0.214126,0.280394,0.80494,0.452423,0.501,0.663269,0.799354,0.837778,0.277105,0.316246,0.218265,0.601169,0.93431,0.767774,0.224083,0.358928,0.453884,0.325521,0.974739,0.632326,0.421427,0.438434,0.0549887,0.63894,0.709685,0.239287,0.548719,0.0978345,0.972667,0.4148,0.717147,0.346336,0.479939,0.503602,0.885981,0.496105,0.763169,0.291274,0.207291,0.24787,0.15443,0.682386,0.224999,0.860939,0.227266,0.724259,0.273692,0.600572,0.325275,0.972876,0.645065,0.907998,0.766891,0.174393,0.589445,0.640443,0.0605447,0.000439405,0.970101,0.582869,0.654243,0.533962,0.377489,0.96851,0.827647,0.752865,0.21551,0.0352316,0.247106,0.722288,0.685479,0.924219,0.137843,0.415526,0.985162,0.687464,0.854072,0.760963,0.614382,0.0506163,0.384107,0.481579,0.0310361,0.813147,0.976173,0.872031,0.884826,0.116268,0.819494,0.375415,0.504964,0.436478,0.60736,0.704382,0.115382,0.5473,0.879757,0.355097,0.686391,0.730663,0.737029,0.408847,0.675699,0.38334,0.00921446,0.20012,0.531341,0.424328,0.292424,0.759303,0.0241975,0.797592,0.455247,0.796608,0.292892,0.454815,0.265368,0.586019,0.498719,0.362133,0.506989,0.566352,0.0576094,0.206727,0.999518,0.469864,0.864014,0.351533,0.742475,0.438659,0.943185,0.989731,0.548233,0.153565,0.696892,0.879353,0.202533,0.627082,0.353357,0.768304,0.456304,0.276313,0.40292,0.379904,0.527719,0.771973,0.976511,0.461083,0.809348,0.672196,0.642491,0.137935,0.53641,0.42713,0.174757,0.114012,0.621364,0.625035,0.776723,0.427908,0.725748,0.00994235,0.582401,0.258492,0.265215,0.17273,0.896485,0.547913,0.308187,0.113398,0.628989,0.52588,0.88829,0.172322,0.3572,0.999588,0.989906,0.883625,0.218425,0.737172,0.637423,0.0418835,0.49131,0.485347,0.733569,0.230444,0.152795,0.322208,0.466281,0.577808,0.263333,0.591922,0.990606,0.127434,0.135729,0.164396,0.28677,0.847679,0.0232226,0.128342,0.480134,0.0170252,0.824994,0.171887,0.0890795,0.654274,0.299891,0.815448,0.78803,0.604781,0.837009,0.241248,0.528552,0.739789,0.165888,0.689116,0.300191,0.791844,0.548578,0.283553,0.523877,0.435361,0.485741,0.61753,0.95509,0.680905,0.295824,0.512731,0.940253,0.693543,0.695264,0.88661,0.443746,0.254532,0.402802,0.0845305,0.253057,0.254615,0.507635,0.69086,0.119035,0.683402,0.266752,0.423828,0.956033,0.153258,0.442792,0.358534,0.246275,0.805732,0.466228,0.850594,0.976177,0.570377,0.369285,0.173346,0.458287,0.905762,0.0947955,0.273297,0.376957,0.220417,0.653996,0.403134,0.914697,0.688041,0.567912,0.405451,0.330983,0.60396,0.678872,0.260762,0.925217,0.367377,0.350197,0.0718787,0.145227,0.143669,0.0882966,0.64654,0.654305,0.613394,0.572098,0.165838,0.0916805,0.0103129,0.198066,0.96529,0.0538885,0.521923,0.499874,0.946423,0.936813,0.974094,0.678407,0.421615,0.568477,0.573429,0.259651,0.227363,0.306503,0.231893,0.680865,0.794609,0.142203,0.533277,0.231827,0.698826,0.393019,0.0734705,0.746386,0.82013,0.333578,0.929352,0.0226753,0.0759475,0.942901,0.910897,0.763202,0.472445,0.922977,0.608106,0.71959,0.257315,0.148525,0.402263,0.493497,0.887307,0.547485,0.866668,0.32294,0.579793,0.883361,0.399195,0.0310073,0.769142,0.227351,0.160597,0.224071,0.704037,0.77609,0.472681,0.837487,0.745936,0.00892878,0.933679,0.695969,0.99867,0.269657,0.850672,0.692549,0.636324,0.692332,0.260149,0.842751,0.32632,0.323337,0.45659,0.147202,0.913787,0.98182,0.401646,0.4481,0.776486,0.946514,0.282358,0.467398,0.886161,0.701083,0.274398,0.0832493,0.0777106,0.0907902,0.190917,0.353969,0.400303,0.567138,0.456786,0.467742,0.141878,0.142239,0.972183,0.699533,0.788764,0.506888,0.683608,0.608522,0.657688,0.508743,0.777448,0.882983,0.526502,0.812383,0.519259,0.529621,0.272285,0.133018,0.305887,0.0332024,0.579494,0.140089,0.793244,0.0456169,0.0948672,0.312632,0.891096,0.392583,0.841536,0.392036,0.967259,0.0664363,0.22184,0.413143,0.69073,0.809433,0.833871,0.0318397,0.825564,0.760779,0.814432,0.598694,0.587092,0.04477,0.572555,0.808768,0.00406921,0.143918,0.723734,0.950223,0.387715,0.217423,0.236298,0.791126,0.65479,0.0118529,0.421254,0.776534,0.377594,0.425485,0.0923163,0.64135,0.352002,0.799748,0.261328,0.231188,0.177685,0.628415,0.558728,0.449755,0.894547,0.267562,0.718013,0.911067,0.421354,0.169508,0.448155,0.80798,0.522884,0.141319,0.538939,0.69838,0.880849,0.422052,0.657599,0.134188,0.857477,0.489743,0.29904,0.747327,0.465391,0.273449,0.0685766,0.0798469,0.790101,0.601511,0.839492,0.592511,0.650159,0.795308,0.0247629,0.95591,0.573078,0.480585,0.381677,0.0825971,0.444195,0.636621,0.88199,0.0163347,0.850416,0.264125,0.929727,0.627264,0.414998,0.318789,0.407456,0.209949,0.906352,0.811702,0.750975,0.797825,0.848338,0.221885,0.281603,0.386042,0.613561,0.760774,0.824226,0.858079,0.186746,0.921883,0.0973376,0.806996,0.801053,0.434938,0.0291699,0.383834,0.292308,0.74034,0.935117,0.143795,0.486235,0.777084,0.81127,0.793345,0.982276,0.384571,0.835176,0.540246,0.960685,0.671436,0.0523479,0.587932,0.035107,0.995074,0.652169,0.224912,0.643671,0.861758,0.260426,0.700851,0.932999,0.169103,0.716368,0.682468,0.765647,0.33162,0.378503,0.757352,0.272823,0.470533,0.335769,0.70426,0.556349,0.633864,0.98711,0.35515,0.601309,0.79745,0.269235,0.450377,0.211123,0.339576,0.463381,0.145525,0.0840345,0.155272,0.181318,0.858589,0.235169,0.0134026,0.828457,0.811876,0.56147,0.82881,0.373195,0.463087,0.92824,0.756321,0.925197,0.143141,0.759312,0.556066,0.77098,0.343969,0.742361,0.677286,0.258005,0.904296,0.563254,0.857609,0.625957,0.381951,0.675013,0.0999748,0.961411,0.530595,0.972226,0.46656,0.50986,0.0460931,0.637428,0.863063,0.0909439,0.139625,0.471543,0.51458,0.0251567,0.532287,0.609697,0.411314,0.421076,0.366981,0.0553182,0.493788,0.22691,0.0965614,0.0646347,0.604021,0.103418,0.257556,0.605347,0.147349,0.372303,0.828139,0.754205,0.99963,0.159936,0.730964,0.750024,0.792109,0.737619,0.811516,0.383178,0.205508,0.238028,0.143908,0.751225,0.628073,0.17592,0.138388,0.196772,0.519599,0.42723,0.863233,0.488449,0.54059,0.670192,0.636026,0.595504,0.586859,0.541435,0.667908,0.0969917,0.00989449,0.688981,0.709921,0.089962,0.163886,0.232543,0.138431,0.139507,0.0108289,0.217567,0.503899,0.512459,0.851702,0.377894,0.880955,0.414216,0.794319,0.662606,0.969092,0.625478,0.766851,0.888512,0.356377,0.389051,0.56592,0.609272,0.916176,0.421475,0.464524,0.376701,0.757193,0.727278,0.472351,0.0525227,0.717105,0.668523,0.364142,0.898737,0.608254,0.383951,0.4497,0.982749,0.44867,0.901588,0.606648,0.70644,0.942581,0.663513,0.599225,0.944965,0.674035,0.131603,0.411067,0.308407,0.99264,0.0212827,0.98797,0.802586,0.0658676,0.00541961,0.317168,0.875606,0.256878,|0.393187,0.598517,0.20461,0.78231,0.852101,0.994205,0.617847,0.177823,0.0272003,0.939405,0.96447,0.448065,0.971171,0.972697,0.999858,0.662097,0.778771,0.0712625,0.25436,0.854653,0.322875,0.245432,0.340708,0.753241,0.677706,0.304972,0.176058,0.310354,0.0514234,0.537008,0.8048,0.573749,0.936538,0.467761,0.536753,0.285462,0.668474,0.904408,0.646142,0.378532,0.696958,0.546914,0.546952,0.737693,0.202736,0.338345,0.307543,0.685748,0.344998,0.384253,0.177055,0.928352,0.521036,0.28744,0.528967,0.291489,0.72125,0.849868,0.189597,0.286545,0.328306,0.817125,0.698923,0.98565,0.998884,0.974394,0.744527,0.469416,0.0072946,0.817223,0.601658,0.817614,0.187092,0.86908,0.645273,0.79011,0.722722,0.388434,0.950604,0.284388,0.419176,0.208966,0.924621,0.0614542,0.705319,0.685534,0.704247,0.0560758,0.0074138,0.439763,0.419179,0.815683,0.447217,0.415907,0.50013,0.419681,0.0397016,0.795586,0.214827,0.839136,0.816066,0.959017,0.801684,0.976909,0.0716605,0.652026,0.0389004,0.827569,0.362486,0.649935,0.875316,0.197335,0.961587,0.108543,0.938676,0.426306,0.879915,0.0391918,0.584066,0.948437,0.0292871,0.547556,0.627943,0.936424,0.889562,0.398983,0.715019,0.200947,0.78746,0.387814,0.689858,0.738917,0.566604,0.934934,0.94603,0.730335,0.822576,0.473753,0.694383,0.506914,0.812816,0.0383418,0.387093,0.65744,0.0313126,0.495869,0.40645,0.236163,0.790217,0.189164,0.283562,0.49894,0.567825,0.788754,0.466413,0.816458,0.844475,0.83568,0.423886,0.00841284,0.748179,0.894037,0.128885,0.0318106,0.194383,0.346347,0.933747,0.142789,0.00688905,0.390164,0.0835748,0.485414,0.10362,0.0962384,0.943483,0.182718,0.304569,0.125179,0.997931,0.624601,0.360184,0.56797,0.785638,0.0510429,0.57773,0.077634,0.628728,0.165286,0.0327686,0.295069,0.959631,0.758559,0.111367,0.368181,0.858628,0.496069,0.971283,0.664509,0.789508,0.363257,0.299567,0.808091,0.651299,0.51602,0.0750006,0.522483,0.228153,0.00235373,0.0425872,0.0367973,0.292604,0.0460162,0.60548,0.602534,0.0359948,0.13189,0.279647,0.882155,0.828424,0.202475,0.918676,0.527075,0.752735,0.199452,0.0355877,0.401339,0.849469,0.798029,0.125947,0.816706,0.47571,0.42635,0.783744,0.618436,0.402781,0.334302,0.584416,0.600274,0.948182,0.311074,0.304833,0.320852,0.24936,0.116735,0.729783,0.998212,0.761208,0.955003,0.841314,0.979467,0.024814,0.714723,0.522961,0.957179,0.759344,0.49693,0.326863,0.126762,0.528651,0.988582,0.834196,0.525371,0.758754,0.779441,0.901568,0.901562,0.206322,0.380484,0.0782661,0.709903,0.977261,0.238609,0.852946,0.559745,0.0406659,0.242135,0.463773,0.143166,0.542032,0.727277,0.793742,0.509997,0.46968,0.561721,0.274872,0.191388,0.434486,0.953202,0.34978,0.568193,0.692097,0.474377,0.252125,0.225024,0.447272,0.0777786,0.783418,0.0400194,0.413309,0.629249,0.500269,0.883144,0.153699,0.837153,0.144303,0.198798,0.282058,0.308177,0.966577,0.640335,0.353584,0.254733,0.301515,0.258821,0.34359,0.739714,0.0598301,0.947801,0.563163,0.945235,0.748918,0.42952,0.933354,0.100621,0.069686,0.917383,0.123742,0.176469,0.24624,0.0726689,0.426628,0.812388,0.0890879,0.974933,0.472277,0.68006,0.0999865,0.103398,0.411261,0.158222,0.814206,0.610027,0.71279,0.599844,0.551869,0.789849,0.468404,0.117623,0.904467,0.850295,0.681248,0.536764,0.241664,0.482607,0.981155,0.0110043,0.202593,0.540417,0.701441,0.0673727,0.602117,0.678364,0.794963,0.0792051,0.490716,0.970704,0.257184,0.0151745,0.0553417,0.881434,0.704203,0.768356,0.275736,0.489401,0.587377,0.445801,0.147863,0.859344,0.258677,0.210238,0.146968,0.493859,0.16215,0.195359,0.789775,0.366573,0.601619,0.978052,0.55322,0.123255,0.380232,0.00544095,0.302634,0.557494,0.388405,0.261597,0.600193,0.633819,0.323846,0.577326,0.696847,0.0268429,0.0077796,0.891608,0.0949396,0.58775,0.733025,0.708542,0.0770695,0.528474,0.520856,0.359069,0.75875,0.202612,0.988344,0.464674,0.690175,0.581368,0.475338,0.88383,0.775412,0.113979,0.645174,0.503287,0.372099,0.0339683,0.660543,0.521679,0.390836,0.24826,0.772852,0.575075,0.263367,0.106892,0.62773,0.304261,0.430706,0.847148,0.669386,0.792246,0.85382,0.396914,0.450315,0.628263,0.62183,0.0432231,0.420521,0.953029,0.913732,0.146607,0.635108,0.413057,0.132422,0.340765,0.159407,0.130027,0.852549,0.968181,0.858816,0.964488,0.124391,0.0555038,0.185855,0.769739,0.505548,0.569414,0.682201,0.128497,0.307885,0.747096,0.873514,0.371784,0.58735,0.924788,0.254189,0.473695,0.452195,0.474902,0.739736,0.000741601,0.992566,0.103121,0.638971,0.85629,0.27795,0.113338,0.00447327,0.519451,0.0881895,0.888686,0.460736,0.0805072,0.509869,0.832574,0.20705,0.616123,0.896975,0.73961,0.694952,0.135016,0.672004,0.00821048,0.713715,0.513679,0.880219,0.611619,0.48248,0.437104,0.185091,0.323912,0.247472,0.433835,0.204576,0.341398,0.532019,0.671001,0.131511,0.586477,0.123242,0.637445,0.334835,0.248897,0.335672,0.841294,0.87651,0.699338,0.8992,0.861116,0.444902,0.322645,0.227884,0.951409,0.895169,0.262533,0.69172,0.254487,0.922294,0.219972,0.612606,0.728566,0.228249,0.985972,0.710465,0.933355,0.407339,0.247961,0.636122,0.406028,0.605517,0.528186,0.619793,0.120503,0.304632,0.0713153,0.44703,0.612871,0.793774,0.0499004,0.851836,0.899595,0.742967,0.282796,0.567338,0.173839,0.00962991,0.742014,0.139157,0.504152,0.800472,0.739636,0.135654,0.0144604,0.287007,0.508403,0.104698,0.614772,0.30841,0.100239,0.345999,0.792648,0.947252,0.626571,0.732049,0.494123,0.851769,0.195342,0.53948,0.25167,0.969154,0.633624,0.864734,0.182792,0.455809,0.168938,0.245684,0.385006,0.643757,0.0311537,0.633878,0.0345296,0.0901042,0.494151,0.196564,0.0248183,0.363006,0.552133,0.99044,0.168083,0.699458,0.618448,0.837977,0.92486,0.36962,0.628302,0.748533,0.861229,0.436141,0.743868,0.0401713,0.495659,0.127854,0.200538,0.0168729,0.343811,0.0873585,0.782312,0.396517,0.874469,0.486194,0.492489,0.893681,0.503837,0.127115,0.6078,0.261791,0.0241159,0.69533,0.430589,0.597446,0.75928,0.381736,0.667995,0.679314,0.0735562,0.713327,0.499687,0.431242,0.715986,0.294675,0.0682861,0.104282,0.613048,0.137845,0.837861,0.590946,0.14902,0.289911,0.119176,0.173016,0.197923,0.437176,0.604993,0.869063,0.22322,0.646877,0.992899,0.309614,0.0460898,0.958035,0.916704,0.700351,0.868073,0.671277,0.115483,0.58814,0.215479,0.579831,0.724086,0.586408,0.673202,0.770194,0.670717,0.275197,0.676975,0.059589,0.688295,0.189126,0.233237,0.684775,0.871243,0.0650368,0.996634,0.867364,0.885742,0.764989,0.254185,0.957975,0.834608,0.661367,0.0115608,0.244602,0.103464,0.692693,0.259411,0.445136,0.737112,0.542816,0.765861,0.380791,0.479761,0.558276,0.658417,0.16375,0.151758,0.0946193,0.821307,0.67786,0.440327,0.754295,0.10194,0.919606,0.69384,0.954134,0.723352,0.843626,0.793941,0.0450783,0.18867,0.270895,0.383887,0.823161,0.19803,0.448314,0.326851,0.637209,0.455339,0.222758,0.299486,0.939107,0.214364,0.423482,0.129249,0.0679247,0.67609,0.708096,0.382663,0.934709,0.663096,0.771462,0.718784,0.753376,0.917879,0.196521,0.690707,0.0655486,0.658391,0.715026,0.699835,0.804924,0.285074,0.115065,0.780496,0.455141,0.680182,0.938157,0.668291,0.2748,0.741003,0.919702,0.145819,0.0374956,0.731116,0.74168,0.647795,0.641934,0.651627,0.366902,0.0147541,0.180763,0.673072,0.227407,0.702371,0.139383,0.987604,0.93807,0.510282,0.948217,0.0564453,0.278318,0.543252,0.32655,0.942495,0.9934,0.0533247,0.22071,0.0438617,0.934617,0.78349,0.0338787,0.106158,0.819295,0.156118,0.526961,0.320432,0.792533,0.520335,0.42637,0.497656,0.433188,0.301624,0.407885,0.989335,0.0686318,0.262047,0.103689,0.642283,0.445508,0.568639,0.417182,0.385518,0.0520993,0.43305,0.430021,0.809922,0.28923,0.119196,0.872714,0.00314206,0.281067,0.00525266,0.16381,0.792969,0.916569,0.496627,0.323099,0.673919,0.728154,0.591,0.71535,0.493361,0.978874,0.939281,0.710529,0.669002,0.814695,0.416742,0.323252,0.722382,0.328218,0.724191,0.611614,0.381925,0.615292,0.728786,0.503066,0.426591,0.564517,0.37861,0.726858,0.0229229,0.926861,0.973286,0.173324,0.0622242,0.101858,0.49172,0.51399,0.678475,0.633911,0.578179,0.649309,0.537183,0.235868,0.0219244,0.314286,0.34605,0.718452,0.778674,0.170194,0.701318,0.237707,0.769107,0.327159,0.750372,0.274372,0.865047,0.0150481,0.650615,0.739911,0.85355,0.0935328,0.630737,0.287573,0.986301,0.0541129,0.882809,0.588839,0.768706,0.134912,0.0982055,0.411655,0.557452,0.583939,0.418172,0.304903,0.37633,0.718708,0.21844,0.020719,0.377832,0.453579,0.442685,0.093659,0.930409,0.938832,0.945466,0.417913,0.0019334,0.361499,0.0831237,0.497638,0.950247,0.237797,0.256981,0.561937,0.716392,0.720294,0.221703,0.090099,0.975549,0.742746,0.89384,0.188527,0.659338,0.962025,0.59898,0.984196,0.380045,0.114679,0.622342,0.652074,0.272455,0.0313987,0.798493,0.713609,0.265053,0.117798,0.995681,0.0288092,0.409821,0.911642,0.960802,0.468764,0.279399,0.607938,0.65551,0.41106,0.797589,0.236095,0.835171,0.600396,0.659292,0.759707,0.144149,0.242957,0.931804,0.281581,0.735687,0.303566,0.839912,0.948199,0.826286,0.0630739,0.115634,0.684479,0.206311,0.260264,0.811263,0.0275863,0.627377,0.258511,0.56481,0.462104,0.889504,0.143855,0.382025,0.484667,0.527776,0.824331,0.163315,0.485554,0.750962,0.626083,0.792442,0.960935,0.978772,0.578513,0.79013,0.568782,0.240821,|0.336468,0.979662,0.934373,0.179942,0.391679,0.0911416,0.861821,0.724647,0.877949,0.450199,0.123923,0.91108,0.576376,0.291103,0.751103,0.413464,0.430622,0.631868,0.664271,0.354366,0.757867,0.0039472,0.370967,0.532783,0.570588,0.494017,0.817748,0.26851,0.802653,0.452004,0.971245,0.368306,0.609381,0.122399,0.519488,0.930459,0.396542,0.329288,0.0720092,0.306124,0.948013,0.241997,0.575021,0.591831,0.265134,0.576793,0.852806,0.560536,0.603337,0.748842,0.185508,0.216835,0.955089,0.951673,0.21392,0.311351,0.384289,0.904253,0.416679,0.910789,0.77403,0.660403,0.975108,0.108716,0.29949,0.248254,0.624576,0.426385,0.233744,0.5654,0.642623,0.623048,0.628655,0.180678,0.0702467,0.890181,0.929214,0.580304,0.707588,0.484109,0.785327,0.430144,0.344729,0.840314,0.0719513,0.341427,0.394794,0.911758,0.906878,0.306468,0.247935,0.743113,0.765099,0.455425,0.680658,0.994251,0.823208,0.535826,0.574972,0.327081,0.678334,0.274616,0.591032,0.137625,0.161799,0.30367,0.518546,0.949899,0.883927,0.419844,0.285994,0.471215,0.375008,0.827263,0.57565,0.075941,0.58524,0.411727,0.209583,0.421791,0.482954,0.698236,0.526859,0.272544,0.122319,0.837488,0.727682,0.5649,0.75821,0.917056,0.218928,0.245342,0.684007,0.916599,0.567467,0.690083,0.0180355,0.364213,0.0293981,0.551355,0.476498,0.0635716,0.250833,0.672302,0.649509,0.339517,0.22949,0.133328,0.694924,0.717637,0.0711873,0.521698,0.395748,0.146184,0.620316,0.234923,0.869738,0.234519,0.708304,0.849358,0.65935,0.303387,0.0649633,0.18822,0.58222,0.058171,0.417251,0.677474,0.821385,0.314717,0.532892,0.429733,0.375092,0.336547,0.278765,0.446584,0.536534,0.955131,0.388235,0.807503,0.471611,0.642523,0.531936,0.588605,0.197467,0.60217,0.700239,0.993598,0.926006,0.0571508,0.441696,0.0199604,0.234497,0.508392,0.884884,0.15947,0.331427,0.752697,0.45502,0.952305,0.957655,0.0125947,0.0364347,0.628496,0.0562329,0.293867,0.0208382,0.375843,0.660486,0.317179,0.725367,0.324906,0.948337,0.545311,0.510514,0.226017,0.123708,0.566958,0.974769,0.306575,0.479357,0.541275,0.130508,0.300641,0.168739,0.783235,0.0661628,0.0950281,0.795465,0.279696,0.834995,0.898445,0.296047,0.623164,0.327729,0.921933,0.312982,0.015561,0.563069,0.178652,0.181492,0.897596,0.75587,0.956188,0.890817,0.935134,0.976469,0.278772,0.288008,0.0386024,0.311054,0.923576,0.111218,0.0650353,0.692057,0.480641,0.70285,0.938521,0.588418,0.567861,0.426617,0.167364,0.681294,0.980376,0.841019,0.986546,0.473092,0.822227,0.326342,0.0800097,0.925138,0.102217,0.542956,0.119246,0.613346,0.781954,0.366651,0.896801,0.831885,0.715937,0.680571,0.747258,0.267111,0.659424,0.742921,0.109606,0.00163579,0.510504,0.80958,0.667005,0.609186,0.037056,0.762842,0.162492,0.964182,0.79049,0.325671,0.586575,0.286304,0.159322,0.670582,0.412222,0.485959,0.146439,0.860648,0.453386,0.70996,0.396562,0.522243,0.457196,0.872387,0.971009,0.31253,0.453923,0.597979,0.674877,0.064176,0.00527406,0.823616,0.501839,0.690749,0.503887,0.966961,0.169391,0.0583411,0.208971,0.940923,0.418943,0.481725,0.517053,0.561898,0.596612,0.909187,0.924789,0.0345293,0.693687,0.105011,0.332865,0.389363,0.427391,0.7529,0.964396,0.662924,0.845883,0.699775,0.0615301,0.340691,0.0125998,0.647797,0.738629,0.602332,0.6761,0.925271,0.604345,0.190555,0.757633,0.304935,0.911816,0.537448,0.732254,0.0659932,0.768647,0.288643,0.660055,0.605869,0.941557,0.781531,0.619167,0.850709,0.49081,0.557164,0.675766,0.776095,0.248609,0.697501,0.876926,0.437122,0.855715,0.505333,0.326301,0.655665,0.819863,0.190531,0.713672,0.888877,0.391274,0.572937,0.585946,0.263362,0.413967,0.696752,0.607139,0.798772,0.917672,0.277693,0.931196,0.762906,0.391883,0.970408,0.713785,0.638113,0.899257,0.860961,0.776617,0.385159,0.248487,0.334767,0.733597,0.19171,0.17312,0.158528,0.0379692,0.322457,0.480482,0.283967,0.13344,0.258058,0.243571,0.897485,0.784929,0.742742,0.0650331,0.336506,0.0604933,0.570056,0.649977,0.18834,0.35844,0.556592,0.0435618,0.152374,0.367555,0.565028,0.552511,0.645463,0.922914,0.0640975,0.713361,0.352218,0.441343,0.892039,0.181837,0.213461,0.169221,0.302475,0.347125,0.601309,0.923106,0.152504,0.50932,0.064886,0.0262053,0.0603546,0.576728,0.325719,0.468841,0.848542,0.168818,0.962049,0.533137,0.116745,0.295353,0.581705,0.476369,0.358729,0.927199,0.428822,0.854461,0.912279,0.00839239,0.477889,0.952258,0.931602,0.364656,0.983284,0.261436,0.910011,0.0922492,0.638704,0.126837,0.176534,0.0599285,0.394136,0.748468,0.657835,0.472923,0.0684507,0.56481,0.195856,0.915295,0.358031,0.400863,0.180331,0.868119,0.337278,0.394529,0.844771,0.0890313,0.646143,0.883351,0.661963,0.360803,0.613436,0.310072,0.292353,0.15397,0.465404,0.942416,0.944064,0.528662,0.226703,0.945538,0.362868,0.923142,0.364608,0.819815,0.389961,0.410935,0.0860621,0.90074,0.442953,0.788969,0.659915,0.0580605,0.403587,0.711653,0.984555,0.186655,0.86567,0.593296,0.428726,0.749913,0.603021,0.25985,0.383186,0.249104,0.464756,0.360201,0.320144,0.31055,0.699627,0.600736,0.0526554,0.879478,0.478372,0.467114,0.896319,0.698546,0.752433,0.448405,0.12303,0.805077,0.877785,0.861667,0.957438,0.410784,0.431729,0.20283,0.215784,0.672988,0.785284,0.849557,0.517405,0.471842,0.581517,0.714485,0.122999,0.303003,0.862704,0.726602,0.767141,0.434463,0.229792,0.275509,0.749529,0.255572,0.623366,0.357802,0.206061,0.681668,0.202391,0.295539,0.58009,0.622279,0.63663,0.189024,0.897217,0.362728,0.00659698,0.204938,0.17031,0.777263,0.158724,0.347954,0.389138,0.276984,0.480053,0.902607,0.284409,0.558227,0.516992,0.882466,0.191569,0.789967,0.17759,0.688703,0.0632665,0.449024,0.821194,0.925054,0.538891,0.694803,0.567668,0.117131,0.411937,0.246677,0.250893,0.750135,0.203983,0.397985,0.831707,0.817048,0.313746,0.805424,0.133905,0.0382768,0.752683,0.486209,0.15468,0.381865,0.492291,0.338909,0.0946479,0.530551,0.315046,0.386524,0.29359,0.909987,0.180176,0.411701,0.41939,0.281241,0.135319,0.496512,0.843376,0.725157,0.546148,0.590113,0.800898,0.127361,0.779021,0.95995,0.581021,0.0929286,0.840074,0.130278,0.700262,0.98325,0.757683,0.872891,0.652923,0.838728,0.0350013,0.149479,0.33964,0.344439,0.590933,0.0838705,0.558875,0.739276,0.280271,0.120299,0.970486,0.706727,0.71759,0.300821,0.716076,0.543952,0.964201,0.629595,0.636082,0.670622,0.936647,0.522617,0.224217,0.131317,0.743825,0.119069,0.567509,0.354485,0.433463,0.0515902,0.520412,0.53847,0.699074,0.912335,0.396107,0.353433,0.236006,0.297004,0.477076,0.690183,0.315334,0.769101,0.282547,0.0696527,0.377524,0.898572,0.00692296,0.877871,0.373509,0.902213,0.261159,0.611598,0.937085,0.771721,0.0847654,0.985534,0.658697,0.411365,0.632418,0.506014,0.0430894,0.406906,0.673026,0.930729,0.278082,0.74604,0.5509,0.11265,0.196948,0.429632,0.937591,0.00509614,0.066753,0.615425,0.569372,0.368761,0.185667,0.402399,0.64074,0.714978,0.792489,0.8772,0.309257,0.710592,0.368337,0.11216,0.17056,0.109662,0.781944,0.947059,0.880913,0.0295737,0.576787,0.359607,0.658975,0.43002,0.450601,0.0556664,0.595315,0.578537,0.829781,0.402373,0.581608,0.355224,0.959958,0.684252,0.779145,0.441877,0.623783,0.114169,0.291719,0.959534,0.469141,0.170393,0.908511,0.867113,0.763084,0.108429,0.0863479,0.643156,0.127791,0.996966,0.276119,0.602189,0.768018,0.196108,0.738648,0.41801,0.868026,0.694864,0.347653,0.650246,0.121494,0.11862,0.947054,0.516336,0.155056,0.178439,0.393885,0.64833,0.835701,0.089031,0.76397,0.00568587,0.290278,0.933479,0.625329,0.39387,0.446319,0.367225,0.673646,0.722572,0.318928,0.839802,0.217425,0.237803,0.336232,0.616164,0.711142,0.892169,0.0267754,0.772317,0.286546,0.180664,0.481575,0.90174,0.409995,0.314581,0.854721,0.254966,0.448238,0.994196,0.704006,0.467618,0.420654,0.0339515,0.963989,0.236265,0.503653,0.589284,0.969583,0.385773,0.699894,0.837287,0.0759507,0.597655,0.622869,0.581552,0.831139,0.552958,0.944676,0.623374,0.010354,0.69271,0.938652,0.3548,0.292386,0.902014,0.816244,0.471609,0.131109,0.837646,0.959857,0.13123,0.282941,0.0579534,0.457568,0.285697,0.436063,0.810436,0.449907,0.579448,0.321656,0.072103,0.733752,0.634733,0.774098,0.179373,0.666115,0.71438,0.171785,0.885557,0.788743,0.25476,0.382141,0.448171,0.0267783,0.530121,0.559087,0.349191,0.468678,0.527084,0.637105,0.54851,0.0579035,0.0425137,0.831237,0.813969,0.536414,0.139437,0.492114,0.940363,0.0942624,0.819097,0.943696,0.725495,0.303289,0.448807,0.193002,0.824027,0.485281,0.325955,0.302524,0.580409,0.589619,0.139539,0.372458,0.538151,0.350074,0.367721,0.734728,0.529899,0.163817,0.00702119,0.865742,0.540384,0.559696,0.723138,0.881381,0.866547,0.580941,0.272001,0.132705,0.266231,0.865823,0.102735,0.433814,0.144446,0.216769,0.171348,0.602534,0.521216,0.166214,0.593099,0.289002,0.197978,0.185182,0.325429,0.563252,0.194644,0.668603,0.792546,0.675093,0.939246,0.0897671,0.483916,0.763099,0.511038,0.733893,0.510227,0.863459,0.620846,0.581436,0.186063,0.921124,0.490304,0.68069,0.559401,0.119115,0.43805,0.888069,0.482252,0.508768,0.28155,0.583535,0.552113,0.387538,0.762277,0.586912,0.868763,0.640811,0.801355,0.575055,0.484604,0.877547,0.111748,0.840735,0.0871998,0.292819,0.567399,0.5274,0.576631,0.160221,0.268735,0.511162,0.529938,0.6418,0.684585,|0.846578,0.754253,0.933251,0.31133,0.104475,0.827908,0.278563,0.944548,0.383416,0.345514,0.46719,0.507044,0.282462,0.705264,0.584994,0.408288,0.986714,0.894408,0.194048,0.454702,0.240109,0.182325,0.786531,0.745146,0.179433,0.794524,0.143385,0.376556,0.443978,0.753788,0.423084,0.338016,0.416292,0.894956,0.794077,0.00792098,0.249082,0.343099,0.809097,0.503764,0.762264,0.493037,0.167501,0.429656,0.0262424,0.978006,0.473731,0.540046,0.539743,0.834044,0.792833,0.527205,0.807457,0.526887,0.807108,0.676416,0.694077,0.635342,0.0632997,0.250708,0.185866,0.608079,0.208301,0.0243792,0.551585,0.104806,0.951859,0.408717,0.633541,0.783113,0.231628,0.22651,0.883572,0.513543,0.550591,0.977207,0.27209,0.00646728,0.583264,0.362587,0.692028,0.426278,0.871307,0.0422362,0.791332,0.91592,0.288029,0.695,0.688923,0.62655,0.580578,0.884937,0.632127,0.694508,0.60449,0.0166676,0.845552,0.272324,0.419743,0.278532,0.167765,0.245781,0.0526386,0.255473,0.34727,0.361334,0.892014,0.34626,0.56281,0.556158,0.900928,0.66974,0.126837,0.995831,0.626305,0.627774,0.827942,0.0263239,0.723463,0.243277,0.691088,0.0283563,0.8495,0.576713,0.741778,0.347088,0.413818,0.745698,0.87616,0.0552452,0.912442,0.438283,0.427812,0.228788,0.527688,0.720763,0.485949,0.806165,0.308327,0.0986665,0.473163,0.521399,0.766324,0.690338,0.305182,0.0556574,0.889366,0.338358,0.16005,0.121407,0.553597,0.514505,0.533396,0.735439,0.617531,0.943844,0.312379,0.197112,0.0437858,0.208387,0.253679,0.960038,0.438334,0.0561894,0.935363,0.832994,0.911871,0.476573,0.536876,0.586117,0.563859,0.599537,0.0199037,0.511418,0.379637,0.277917,0.0820582,0.494842,0.496957,0.761775,0.883252,0.621103,0.248758,0.63362,0.766506,0.509538,0.0714961,0.955886,0.269574,0.208119,0.884826,0.822527,0.303654,0.90683,0.717585,0.169223,0.908995,0.609107,0.921363,0.227278,0.643834,0.647855,0.821841,0.563469,0.185929,0.66785,0.314824,0.281939,0.839875,0.547617,0.25065,0.487975,0.934186,0.416817,0.81297,0.625184,0.925704,0.175215,0.807889,0.0302165,0.346497,0.943143,0.182626,0.800431,0.98572,0.770742,0.495531,0.0388794,0.323855,0.458498,0.651843,0.620663,0.475999,0.186602,0.232565,0.163342,0.450409,0.247148,0.669432,0.850523,0.857215,0.603463,0.105313,0.23847,0.105957,0.382095,0.0573329,0.866542,0.575472,0.148885,0.773658,0.787769,0.362,0.595952,0.374807,0.621597,0.0813483,0.0355085,0.71915,0.292924,0.780041,0.386664,0.324087,0.738786,0.92132,0.501168,0.0968807,0.225104,0.955692,0.558651,0.870253,0.836388,0.711515,0.181215,0.775726,0.574002,0.917027,0.804009,0.521213,0.312667,0.866032,0.18701,0.961156,0.565201,0.434672,0.818992,0.29815,0.497468,0.771135,0.00487608,0.66766,0.666155,0.270976,0.842277,0.595149,0.718801,0.764666,0.943056,0.524417,0.464375,0.395899,0.38608,0.0347655,0.822251,0.0782755,0.436442,0.316319,0.568276,0.232126,0.141862,0.403455,0.94533,0.38125,0.0126178,0.772732,0.494509,0.770264,0.0950723,0.826957,0.657307,0.0255547,0.613461,0.396402,0.655752,0.887739,0.0593278,0.11405,0.206828,0.608862,0.351622,0.73079,0.146455,0.279641,0.477049,0.825063,0.222054,0.0951952,0.564294,0.0530813,0.884167,0.0900087,0.247237,0.910255,0.034331,0.848255,0.149617,0.597401,0.258858,0.594171,0.839655,0.277641,0.838437,0.616737,0.935955,0.948147,0.648245,0.137057,0.584691,0.225528,0.133996,0.00632751,0.234155,0.47608,0.683088,0.729787,0.721728,0.334081,0.486222,0.0888596,0.944383,0.235023,0.0491096,0.508369,0.343195,0.383324,0.917711,0.389189,0.848914,0.390997,0.134743,0.60113,0.381532,0.84045,0.44313,0.165459,0.695115,0.897913,0.474339,0.321056,0.267533,0.684712,0.914855,0.966324,0.594913,0.516283,0.449422,0.35867,0.409835,0.857654,0.813469,0.63651,0.429392,0.686618,0.0289087,0.0975746,0.516718,0.74328,0.0419296,0.191503,0.911634,0.323759,0.192096,0.839262,0.0448325,0.723077,0.47509,0.792021,0.838247,0.527576,0.255597,0.791615,0.0511019,0.880472,0.15002,0.781315,0.404282,0.214523,0.861003,0.787231,0.696745,0.0975016,0.313361,0.0126866,0.73136,0.78527,0.411337,0.245102,0.380701,0.169001,0.696571,0.980406,0.983084,0.582278,0.829664,0.0569937,0.446429,0.74846,0.0206951,0.190783,0.738336,0.43193,0.956948,0.159385,0.249634,0.288009,0.534254,0.209213,0.20637,0.233133,0.881805,0.866821,0.0282559,0.776233,0.685539,0.549139,0.349304,0.962123,0.23455,0.708061,0.218244,0.710076,0.79342,0.49227,0.838514,0.789289,0.954197,0.129313,0.60688,0.84644,0.971463,0.762491,0.130216,0.901651,0.487745,0.992271,0.361154,0.893509,0.177012,0.194962,0.82321,0.220126,0.646477,0.868419,0.776999,0.0661757,0.974217,0.285708,0.828974,0.791753,0.589014,0.487359,0.650783,0.216287,0.766206,0.45622,0.624583,0.0506274,0.76938,0.98076,0.0560936,0.616711,0.984374,0.664847,0.0906396,0.598728,0.04991,0.230014,0.679869,0.0809053,0.19251,0.0122138,0.438723,0.610683,0.276663,0.709687,0.961091,0.142829,0.962097,0.87526,0.0338817,0.42817,0.66439,0.942477,0.254341,0.569869,0.181699,0.522746,0.960416,0.187022,0.945719,0.0214376,0.727805,0.608478,0.766649,0.328399,0.27487,0.554843,0.706881,0.569463,0.020541,0.54329,0.456627,0.384614,0.579899,0.670673,0.930853,0.988421,0.710695,0.055661,0.480989,0.00582474,0.293705,0.157534,0.0186237,0.743776,0.876929,0.991541,0.0648854,0.266348,0.13868,0.847246,0.175424,0.607301,0.379901,0.854011,0.651362,0.739795,0.994058,0.475117,0.901095,0.33056,0.978186,0.61087,0.526411,0.608827,0.287497,0.762485,0.0737942,0.834797,0.428087,0.305281,0.664986,0.278097,0.133975,0.128946,0.711796,0.257767,0.861238,0.825406,0.936996,0.492989,0.667667,0.466793,0.0735896,0.793204,0.908897,0.906167,0.405095,0.200461,0.938648,0.706414,0.695544,0.228419,0.887671,0.891932,0.0779017,0.844084,0.879895,0.668101,0.760423,0.0531502,0.893155,0.0994953,0.241034,0.939231,0.327111,0.726754,0.480476,0.186573,0.0858808,0.775347,0.0141909,0.807375,0.716095,0.565339,0.364558,0.145371,0.872306,0.40288,0.615669,0.919637,0.503522,0.0104831,0.546956,0.567271,0.546225,0.0342891,0.336089,0.809364,0.456692,0.599955,0.0954888,0.415642,0.724113,0.455052,0.303224,0.891386,0.798966,0.483419,0.931619,0.427541,0.0229284,0.0565829,0.482645,0.845575,0.344898,0.419669,0.000852585,0.126475,0.425366,0.0913896,0.986466,0.924248,0.783809,0.302682,0.34623,0.937858,0.520458,0.3635,0.588624,0.209887,0.408933,0.58201,0.61098,0.397547,0.0553403,0.501506,0.462398,0.247599,0.193082,0.153167,0.977005,0.899797,0.314286,0.840699,0.303625,0.739386,0.172473,0.608453,0.508633,0.129,0.727197,0.121534,0.731961,0.221256,0.197803,0.283276,0.54499,0.13202,0.261514,0.289474,0.564979,0.393324,0.862636,0.220736,0.77911,0.355841,0.757542,0.126951,0.536479,0.964062,0.356823,0.842995,0.166388,0.281426,0.470593,0.242018,0.742607,0.0295263,0.807228,0.874886,0.0206461,0.951892,0.950019,0.667753,0.991597,0.578705,0.786962,0.575119,0.650628,0.43055,0.934636,0.673776,0.299067,0.764107,0.887506,0.75437,0.748283,0.537613,0.644164,0.163934,0.328192,0.688117,0.14581,0.266912,0.776619,0.118139,0.512679,0.910858,0.339285,0.649846,0.609261,0.243207,0.251132,0.114169,0.542699,0.774071,0.0656794,0.473408,0.0307138,0.270778,0.466817,0.00628901,0.283732,0.165513,0.557035,0.684909,0.720743,0.884674,0.464381,0.177868,0.576904,0.236084,0.744741,0.0544569,0.464464,0.465297,0.0980502,0.895291,0.551894,0.345341,0.607289,0.394063,0.687985,0.145186,0.900858,0.898803,0.931047,0.216701,0.0872882,0.453785,0.41559,0.797907,0.41256,0.210037,0.214453,0.550475,0.4071,0.758085,0.53027,0.914479,0.764451,0.719144,0.804037,0.654694,0.607446,0.539299,0.378969,0.0145565,0.0334972,0.370933,0.730556,0.894273,0.199929,0.989846,0.617282,0.781248,0.554945,0.889027,0.00773102,0.0156115,0.683102,0.330597,0.349509,0.0356941,0.176984,0.249406,0.448596,0.668705,0.0167817,0.461675,0.305884,0.0184547,0.459515,0.697037,0.615749,0.348712,0.46475,0.828273,0.305881,0.481906,0.948988,0.0151243,0.753182,0.839907,0.406703,0.616434,0.452282,0.12817,0.811743,0.0271966,0.234731,0.899843,0.559271,0.339576,0.615785,0.597713,0.167676,0.748055,0.0736665,0.38058,0.913736,0.400932,0.642745,0.480621,0.533661,0.493108,0.519873,0.963224,0.607534,0.542575,0.0646312,0.86128,0.363996,0.347314,0.555413,0.808186,0.591204,0.605703,0.353435,0.37759,0.532448,0.790787,0.561455,0.795008,0.367224,0.656946,0.770441,0.678246,0.786155,0.0882812,0.263126,0.358951,0.634954,0.0713558,0.510017,0.448704,0.458172,0.744981,0.303196,0.139111,0.45824,0.751708,0.334749,0.604122,0.710743,0.818658,0.324615,0.844585,0.831251,0.26772,0.615606,0.430461,0.695262,0.860741,0.955806,0.628847,0.698477,0.353498,0.606434,0.715507,0.305319,0.477784,0.935599,0.481905,0.232393,0.342715,0.177785,0.774356,0.161597,0.648656,0.705182,0.896741,0.968735,0.329635,0.85828,0.0324213,0.204156,0.496749,0.633914,0.813034,0.831906,0.557299,0.547332,0.307478,0.16899,0.116042,0.604048,0.0803946,0.336404,0.425198,0.787065,0.0275899,0.938924,0.242256,0.577589,0.0740764,0.73306,0.586316,0.633116,0.233278,0.654522,0.282584,0.870297,0.739346,0.19655,0.467234,0.63332,0.943255,0.967882,0.0302498,0.780423,0.0255197,0.2716,0.511505,0.365778,0.0139891,0.338881,0.0536126,0.974309,0.476966,0.636348,0.557451,0.0276324,0.605147,0.235536,0.0811433,0.901618,0.940615,0.253933,|0.783187,0.271739,0.990778,0.330227,0.636213,0.976455,0.595722,0.39436,0.397212,0.521399,0.896375,0.366662,0.0528474,0.977234,0.742417,0.950335,0.544114,0.156872,0.162163,0.00277615,0.394353,0.170179,0.723419,0.686684,0.116882,0.454962,0.966884,0.175413,0.655358,0.651713,0.824977,0.544123,0.397436,0.643087,0.23392,0.640004,0.64195,0.5916,0.807945,0.542774,0.210515,0.319604,0.777387,0.527055,0.376176,0.0195388,0.446256,0.780628,0.667429,0.391143,0.282363,0.218562,0.355892,0.146861,0.144985,0.942102,0.186824,0.166736,0.931661,0.556514,0.491836,0.775555,0.0499045,0.666207,0.922358,0.757672,0.642107,0.0905501,0.447975,0.44825,0.964768,0.136295,0.588219,0.344685,0.767584,0.410977,0.88507,0.438218,0.165826,0.344017,0.912472,0.00915551,0.517187,0.0552974,0.117215,0.464365,0.319345,0.0819145,0.40867,0.462905,0.905718,0.544518,0.715389,0.691079,0.835944,0.408113,0.634434,0.708721,0.421813,0.148842,0.924108,0.0575747,0.831004,0.992211,0.755768,0.517652,0.801046,0.680759,0.974263,0.405543,0.719729,0.0272597,0.897661,0.956862,0.0213922,0.978299,0.552052,0.505178,0.68385,0.695336,0.71765,0.942622,0.652191,0.786643,0.743271,0.974633,0.783566,0.214434,0.0337602,0.288973,0.813603,0.547827,0.496256,0.470666,0.882539,0.749328,0.946903,0.6217,0.0142143,0.220606,0.0197714,0.734016,0.159964,0.56866,0.60923,0.342517,0.968056,0.3305,0.903641,0.736033,0.267444,0.696329,0.214144,0.548925,0.201994,0.799628,0.739839,0.143861,0.193574,0.596298,0.973968,0.851049,0.340313,0.715804,0.515745,0.516238,0.570448,0.479154,0.458063,0.582207,0.640315,0.259582,0.781914,0.844156,0.457653,0.0942459,0.638619,0.703474,0.810155,0.262595,0.697302,0.330163,0.301845,0.304019,0.505686,0.951249,0.943044,0.0640895,0.35723,0.0713497,0.895899,0.65218,0.823824,0.80403,0.589914,0.701246,0.380842,0.780793,0.512836,0.484362,0.650608,0.0655258,0.568664,0.137297,0.884556,0.03166,0.141011,0.557482,0.761085,0.70682,0.575477,0.538538,0.457951,0.388733,0.308174,0.635846,0.0278113,0.626216,0.15966,0.007056,0.795521,0.23708,0.115468,0.607363,0.73494,0.576435,0.927386,0.707636,0.500302,0.963718,0.118734,0.608659,0.894879,0.81213,0.634912,0.753778,0.757201,0.164706,0.903058,0.515332,0.882692,0.489178,0.961257,0.379722,0.820553,0.0188105,0.327183,0.313731,0.885127,0.072326,0.778617,0.269479,0.106925,0.956812,0.869431,0.18954,0.118613,0.843408,0.402573,0.373874,0.164461,0.100884,0.946204,0.487161,0.277362,0.968373,0.479391,0.429536,0.0815113,0.336064,0.203145,0.486514,0.304504,0.413554,0.94244,0.381226,0.776318,0.633313,0.386625,0.638181,0.287535,0.305724,0.608917,0.102324,0.927866,0.115308,0.551563,0.993357,0.875978,0.0768093,0.639414,0.190911,0.281711,0.179467,0.328682,0.765143,0.316173,0.492576,0.0706192,0.951713,0.611223,0.201326,0.425949,0.480066,0.597904,0.385227,0.690132,0.583539,0.957479,0.216284,0.685388,0.411935,0.835334,0.814917,0.583422,0.478502,0.604579,0.238985,0.140132,0.278996,0.888666,0.591446,0.64889,0.252768,0.351475,0.914027,0.0553746,0.198933,0.0861579,0.944089,0.219824,0.441681,0.591749,0.473199,0.0202946,0.0407403,0.920786,0.248805,0.641742,0.94585,0.770062,0.173853,0.123119,0.0927128,0.960651,0.28752,0.849127,0.682427,0.423654,0.185528,0.291941,0.822654,0.387318,0.71512,0.233062,0.874916,0.419273,0.0910369,0.7972,0.530832,0.97261,0.0971329,0.144422,0.671049,0.775043,0.662451,0.712403,0.0856895,0.634431,0.244808,0.643967,0.444295,0.330052,0.9645,0.195746,0.897873,0.444927,0.180129,0.11899,0.912972,0.30601,0.437204,0.52831,0.505777,0.295942,0.923063,0.312006,0.657771,0.400849,0.724162,0.45526,0.0309942,0.781017,0.244345,0.151175,0.719605,0.984249,0.299965,0.102731,0.292214,0.577321,0.576975,0.618281,0.224649,0.837111,0.94234,0.016527,0.836182,0.914052,0.505181,0.128117,0.436803,0.979496,0.352184,0.42394,0.759133,0.148189,0.556722,0.523901,0.129562,0.458782,0.494096,0.0586436,0.942892,0.348713,0.258282,0.875299,0.732141,0.648029,0.38855,0.779607,0.918785,0.182326,0.304191,0.944391,0.579911,0.909669,0.679584,0.243302,0.9211,0.843151,0.99255,0.224632,0.328113,0.712099,0.143658,0.449271,0.920886,0.112163,0.212323,0.940975,0.403678,0.78059,0.451609,0.0636598,0.759897,0.661425,0.257424,0.0285946,0.198694,0.245711,0.588144,0.683501,0.541366,0.530573,0.169384,0.397914,0.593791,0.752391,0.995942,0.276362,0.910874,0.464536,0.252401,0.80664,0.56315,0.441903,0.971222,0.256819,0.721476,0.57826,0.553082,0.800597,0.888556,0.686517,0.114163,0.990848,0.0907177,0.903117,0.765215,0.651978,0.836703,0.424956,0.294031,0.580337,0.915387,0.844581,0.105624,0.506297,0.950944,0.925799,0.97143,0.937827,0.720658,0.903515,0.859724,0.602799,0.0919766,0.26229,0.407444,0.386721,0.441541,0.188731,0.0616508,0.289097,0.17307,0.168585,0.601823,0.726837,0.796011,0.53673,0.761267,0.756347,0.351162,0.681865,0.467785,0.333619,0.566568,0.833314,0.381648,0.526483,0.352582,0.365427,0.799174,0.808746,0.697228,0.506016,0.00788987,0.575088,0.650454,0.0763313,0.972217,0.323423,0.602696,0.588234,0.141764,0.279787,0.425446,0.423514,0.139726,0.190237,0.245004,0.10937,0.0674954,0.387911,0.5107,0.176816,0.158814,0.749533,0.245403,0.872104,0.0304883,0.0759133,0.322695,0.898476,0.414842,0.0102294,0.86014,0.457321,0.533533,0.385557,0.345809,0.201464,0.0100577,0.667515,0.124601,0.474965,0.618258,0.846003,0.453081,0.236555,0.434249,0.0787396,0.982579,0.469828,0.510906,0.413904,0.611836,0.470131,0.0116467,0.398199,0.533345,0.405755,0.91659,0.322462,0.722251,0.70059,0.245079,0.853895,0.359838,0.546249,0.19909,0.499415,0.0274401,0.498203,0.0590191,0.348906,0.278646,0.570921,0.826218,0.0630202,0.770547,0.962354,0.273476,0.452058,0.00604272,0.407938,0.333292,0.424435,0.525103,0.933671,0.911523,0.495278,0.914384,0.487893,0.0877646,0.932315,0.699102,0.91328,0.515125,0.700925,0.390342,0.0111401,0.202918,0.516815,0.684703,0.500785,0.1441,0.987279,0.105221,0.0796626,0.217654,0.861293,0.429402,0.889796,0.837911,0.334109,0.584905,0.818993,0.37094,0.866832,0.230239,0.215886,0.12264,0.231675,0.716856,0.589403,0.897629,0.862666,0.404136,0.161528,0.687624,0.895591,0.268186,0.795735,0.874378,0.410971,0.931721,0.0451531,0.363114,0.0386209,0.269714,0.324726,0.70967,0.250779,0.0688151,0.995171,0.408836,0.0101646,0.0697173,0.61764,0.595737,0.17137,0.00795346,0.0631587,0.142923,0.876184,0.285421,0.129084,0.664418,0.407664,0.444757,0.569936,0.413411,0.333929,0.885952,0.707007,0.621929,0.861313,0.838644,0.778581,0.540558,0.902263,0.971351,0.354486,0.943268,0.788874,0.422776,0.998962,0.349907,0.632472,0.811738,0.921998,0.138455,0.371186,0.742992,0.750197,0.779382,0.429563,0.85537,0.974477,0.987222,0.963669,0.426022,0.466823,0.208298,0.187586,0.474124,0.64803,0.400745,0.379702,0.143843,0.765793,0.23143,0.85966,0.157757,0.315907,0.955141,0.921455,0.57593,0.505049,0.501837,0.540392,0.8162,0.0845544,0.648555,0.674214,0.272416,0.289718,0.351304,0.144261,0.677378,0.0429249,0.388208,0.566161,0.543554,0.90076,0.765426,0.0964327,0.619603,0.947874,0.907043,0.890717,0.703458,0.515241,0.0898482,0.466898,0.698114,0.404142,0.0160836,0.79257,0.920159,0.299411,0.675718,0.989293,0.0792201,0.180603,0.395321,0.249796,0.994771,0.0718977,0.0119224,0.29695,0.166811,0.462877,0.036574,0.94394,0.558724,0.970175,0.000530899,0.262936,0.693516,0.0787613,0.441743,0.00859952,0.270225,0.379703,0.0103453,0.441006,0.237941,0.460377,0.301304,0.214167,0.107881,0.920007,0.547064,0.207258,0.526002,0.190308,0.470448,0.721192,0.656876,0.51845,0.872747,0.817652,0.234856,0.530984,0.299076,0.0385814,0.076171,0.940841,0.632164,0.700028,0.254714,0.12976,0.565963,0.0726861,0.394055,0.162417,0.259554,0.195911,0.0668902,0.796392,0.488316,0.18513,0.629045,0.481855,0.337529,0.711988,0.433502,0.633314,0.184727,0.507945,0.286947,0.193152,0.713358,0.413144,0.467253,0.59323,0.347343,0.945942,0.686522,0.702949,0.0310196,0.179024,0.235975,0.976879,0.827344,0.265185,0.434382,0.710691,0.375471,0.894019,0.0699102,0.930443,0.48377,0.275479,0.366079,0.174847,0.944939,0.208456,0.0817622,0.827763,0.516796,0.30399,0.764694,0.429137,0.661204,0.68336,0.350577,0.477517,0.850301,0.307909,0.511298,0.554738,0.725159,0.872085,0.858375,0.281383,0.0164213,0.763717,0.266882,0.60766,0.600795,0.234492,0.193649,0.155116,0.739714,0.181435,0.71112,0.197318,0.638578,0.238755,0.479944,0.70539,0.295943,0.727391,0.546249,0.981415,0.335325,0.969388,0.908102,0.291671,0.264011,0.782095,0.32399,0.717595,0.865622,0.528011,0.69476,0.709645,0.442459,0.967829,0.945813,0.40431,0.345423,0.923445,0.346347,0.534281,0.533602,0.00779295,0.898312,0.701717,0.870052,0.476014,0.453821,0.178477,0.433129,0.930593,0.790476,0.618479,0.134373,0.227124,0.791693,0.127989,0.316507,0.18574,0.320415,0.64515,0.939802,0.970717,0.89079,0.436583,0.832715,0.728482,0.200929,0.174381,0.51993,0.856625,0.909659,0.752714,0.941117,0.740605,0.27444,0.126052,0.310702,0.997382,0.484176,0.676403,0.724758,0.476808,0.802275,0.257601,0.946148,0.157961,0.574452,0.762767,0.388409,0.0846887,0.722116,0.532015,0.298762,0.646047,0.128479,0.00613374,0.813465,0.976341,0.566297,0.641284,0.2889,0.372211,0.755503,0.852178,0.324656,0.460399,0.517478,0.347575,0.402562,0.023461,0.0597634,|0.829904,0.480103,0.662947,0.185977,0.946852,0.95397,0.115866,0.734279,0.108433,0.0560195,0.241904,0.856923,0.929144,0.338759,0.626852,0.552083,0.257755,0.255706,0.452725,0.672875,0.914001,0.192851,0.94725,0.583121,0.741511,0.544957,0.43211,0.210716,0.637505,0.753424,0.786001,0.679594,0.763412,0.788069,0.671713,0.598989,0.121119,0.770533,0.33692,0.571973,0.961972,0.937682,0.286812,0.321101,0.31877,0.0969648,0.993621,0.211262,0.813609,0.32817,0.943083,0.274682,0.0947174,0.205761,0.0657427,0.803569,0.4308,0.584518,0.0784198,0.381438,0.494252,0.104684,0.639848,0.88574,0.947533,0.51938,0.888013,0.527874,0.467929,0.999823,0.014387,0.726695,0.685286,0.763353,0.222279,0.698751,0.557963,0.111308,0.0726675,0.0539132,0.0206649,0.511849,0.603853,0.572582,0.715068,0.735294,0.000309587,0.984978,0.571717,0.148457,0.985622,0.48587,0.841637,0.677682,0.296576,0.500268,0.188791,0.485852,0.483289,0.0767661,0.0441703,0.478699,0.991933,0.658363,0.768416,0.421789,0.327782,0.0684452,0.0455036,0.475074,0.644755,0.423018,0.783127,0.917592,0.801259,0.0656517,0.662959,0.984437,0.466388,0.885225,0.557506,0.091424,0.699362,0.94474,0.491009,0.480704,0.503709,0.162372,0.187474,0.0151684,0.580681,0.228434,0.111787,0.1182,0.0568193,0.370612,0.815505,0.491523,0.839252,0.877295,0.143501,0.479665,0.0133884,0.661856,0.664852,0.438341,0.906581,0.991033,0.342613,0.604115,0.467602,0.0405558,0.738861,0.147415,0.760561,0.125531,0.887654,0.77071,0.267959,0.927676,0.00889069,0.367386,0.876897,0.20145,0.440658,0.847322,0.133111,0.628078,0.133921,0.616765,0.276184,0.93224,0.540648,0.903984,0.462176,0.809353,0.604749,0.883271,0.188535,0.931466,0.532836,0.55099,0.24549,0.0672269,0.411779,0.0726069,0.886827,0.665735,0.375876,0.365141,0.279816,0.622756,0.675597,0.576988,0.0179094,0.851315,0.667981,0.159556,0.716385,0.734084,0.727347,0.566969,0.534536,0.693156,0.996937,0.0580046,0.36615,0.659391,0.869428,0.453449,0.117391,0.596779,0.550139,0.945452,0.353062,0.814447,0.0579112,0.394704,0.0929308,0.0732399,0.801425,0.883951,0.462563,0.470451,0.933525,0.735989,0.744316,0.046995,0.665334,0.724033,0.41397,0.301011,0.798351,0.779574,0.0274178,0.739016,0.00329912,0.650752,0.772241,0.645639,0.598155,0.638175,0.00923783,0.633585,0.559787,0.450223,0.461438,0.452668,0.733966,0.505713,0.922613,0.964836,0.917275,0.912602,0.818108,0.38553,0.155784,0.0997352,0.34431,0.277277,0.0419396,0.754439,0.750297,0.412285,0.669607,0.0084188,0.502842,0.33126,0.19738,0.531343,0.195367,0.697625,0.425477,0.160239,0.419871,0.42366,0.0685981,0.201234,0.636903,0.419858,0.773337,0.924915,0.0743501,0.0305178,0.727684,0.460179,0.603024,0.857898,0.947079,0.204327,0.0532527,0.334959,0.388744,0.672763,0.991445,0.197245,0.080406,0.155214,0.0681482,0.584315,0.403955,0.754497,0.80194,0.69147,0.472227,0.651129,0.486801,0.835923,0.565465,0.690124,0.95124,0.728338,0.843033,0.0774896,0.99805,0.877799,0.853994,0.392316,0.149693,0.119402,0.383176,0.0944808,0.325249,0.971154,0.966651,0.131327,0.300659,0.245599,0.123527,0.58161,0.780199,0.759587,0.30927,0.83613,0.322566,0.183092,0.70924,0.592119,0.335477,0.654256,0.911615,0.715937,0.141823,0.287355,0.928044,0.00215143,0.904079,0.547637,0.497932,0.510164,0.69846,0.597034,0.347096,0.435773,0.608524,0.3688,0.968808,0.255629,0.875924,0.700681,0.530534,0.860998,0.73233,0.947182,0.208339,0.0805159,0.981805,0.0808612,0.720708,0.92234,0.586052,0.660533,0.259885,0.743239,0.424098,0.295497,0.333722,0.17387,0.735883,0.382389,0.380059,0.49237,0.803983,0.740877,0.874317,0.484008,0.549154,0.421645,0.70365,0.602192,0.533305,0.0169033,0.272871,0.956451,0.503949,0.908004,0.683566,0.312854,0.114863,0.343949,0.103794,0.832589,0.351509,0.0688329,0.831613,0.659712,0.249798,0.212392,0.603243,0.852685,0.587859,0.19052,0.0474972,0.0594239,0.583203,0.904138,0.547795,0.286267,0.784951,0.0494332,0.36824,0.0971075,0.760822,0.132845,0.963912,0.971327,0.586017,0.516603,0.889623,0.431788,0.217653,0.600222,0.774127,0.366936,0.410165,0.59738,0.976723,0.250001,0.303734,0.10824,0.657597,0.876733,0.162821,0.153738,0.470871,0.0727827,0.964639,0.106113,0.638541,0.230877,0.986193,0.665884,0.158872,0.127236,0.368107,0.881747,0.270626,0.0627705,0.287075,0.438684,0.0125932,0.511904,0.63943,0.81538,0.387213,0.561773,0.7274,0.143938,0.322986,0.341923,0.189066,0.575131,0.731986,0.490869,0.379285,0.571297,0.504319,0.802482,0.429619,0.207781,0.150326,0.948933,0.559381,0.983122,0.983603,0.766948,0.380521,0.121272,0.318739,0.27373,0.871746,0.494266,0.192102,0.748747,0.572181,0.226309,0.501001,0.671087,0.745448,0.766518,0.310773,0.418799,0.451966,0.359872,0.223392,0.98955,0.0631894,0.614167,0.854037,0.42013,0.130743,0.966469,0.0706022,0.693071,0.519349,0.153325,0.485411,0.368196,0.881859,0.103604,0.910551,0.356044,0.559351,0.878124,0.306504,0.845727,0.680045,0.0438604,0.393124,0.572137,0.715966,0.660885,0.14934,0.947531,0.650897,0.370794,0.956354,0.540121,0.589251,0.840277,0.505663,0.98481,0.0742667,0.642658,0.826562,0.651605,0.912442,0.725248,0.0773982,0.382416,0.601359,0.250405,0.515281,0.377697,0.997881,0.290527,0.541386,0.308053,0.303699,0.699918,0.178167,0.636087,0.785017,0.833063,0.015168,0.477647,0.556438,0.97928,0.45752,0.193014,0.0863951,0.950374,0.236791,0.840201,0.218192,0.269183,0.501156,0.479692,0.878943,0.691648,0.211689,0.520484,0.625123,0.276913,0.640912,0.00933558,0.718339,0.942143,0.0282333,0.350895,0.539863,0.135906,0.835737,0.226442,0.332174,0.158062,0.992257,0.162583,0.034807,0.940628,0.782022,0.551892,0.304361,0.374183,0.0983449,0.715969,0.447902,0.75648,0.86475,0.787931,0.695834,0.693612,0.126994,0.480549,0.987254,0.29542,0.640194,0.37074,0.170417,0.966782,0.268872,0.0445424,0.45757,0.298927,0.93618,0.503666,0.269543,0.95568,0.0266418,0.856347,0.0994323,0.835171,0.794368,0.344172,0.470367,0.757048,0.920059,0.487178,0.430318,0.313964,0.275391,0.327161,0.386198,0.521267,0.603524,0.0161664,0.36907,0.93732,0.756621,0.36038,0.0780842,0.0549026,0.200908,0.712294,0.0706095,0.517996,0.461403,0.157281,0.405269,0.0430021,0.186912,0.813633,0.374048,0.780086,0.504482,0.0855834,0.602077,0.545146,0.986234,0.33283,0.0735857,0.155,0.859557,0.0442147,0.486031,0.572979,0.189655,0.420876,0.367609,0.383959,0.163861,0.512501,0.295638,0.53902,0.122656,0.513172,0.429019,0.604879,0.104886,0.116837,0.690783,0.601476,0.653371,0.762654,0.652253,0.828613,0.965183,0.826222,0.319922,0.721937,0.622173,0.586567,0.869733,0.357547,0.995061,0.143569,0.483361,0.81525,0.00736386,0.40889,0.625186,0.896194,0.568787,0.711853,0.10555,0.667081,0.0549853,0.36976,0.339423,0.183664,0.238924,0.137083,0.364908,0.510317,0.171169,0.292296,0.40027,0.021103,0.736172,0.646109,0.821154,0.586616,0.742161,0.362418,0.431087,0.21446,0.0440032,0.00312912,0.27774,0.978154,0.565489,0.0206623,0.133766,0.922588,0.333291,0.619555,0.914149,0.500523,0.313397,0.824893,0.386942,0.95774,0.0199957,0.441307,0.989229,0.422389,0.825504,0.560237,0.509603,0.681557,0.0704841,0.312804,0.659796,0.911632,0.173795,0.52491,0.757416,0.110607,0.30862,0.318971,0.499305,0.319234,0.795511,0.751982,0.788033,0.542364,0.514889,0.328464,0.56655,0.0223321,0.369975,0.597074,0.0205618,0.578718,0.196054,0.191251,0.731316,0.730625,0.652101,0.975133,0.773087,0.63483,0.110334,0.84244,0.215958,0.95563,0.421074,0.254335,0.2748,0.954814,0.263712,0.609707,0.519456,0.0287763,0.537943,0.980062,0.135597,0.121945,0.960259,0.864983,0.32612,0.67268,0.284538,0.937447,0.0611246,0.565503,0.953502,0.302112,0.79305,0.911618,0.806806,0.99806,0.91595,0.424277,0.146396,0.80126,0.437656,0.0575162,0.825764,0.0360367,0.718852,0.654029,0.414528,0.297594,0.363071,0.745469,0.87421,0.715803,0.922161,0.839065,0.62922,0.999238,0.727945,0.384298,0.325951,0.807419,0.995668,0.358327,0.301609,0.919089,0.102931,0.852238,0.50401,0.694621,0.603807,0.028281,0.29424,0.300564,0.303178,0.243731,0.306405,0.265143,0.788579,0.633769,0.447708,0.895426,0.298234,0.983575,0.15866,0.941662,0.960178,0.580308,0.385819,0.409067,0.93254,0.54511,0.661249,0.193847,0.904146,0.558096,0.637037,0.37787,0.798029,0.491291,0.625704,0.714109,0.646271,0.552816,0.288396,0.288889,0.915682,0.830055,0.281725,0.437821,0.800039,0.943231,0.412531,0.21726,0.965757,0.482278,0.883624,0.399362,0.594497,0.385474,0.475013,0.652569,0.0474387,0.738997,0.45051,0.214122,0.647895,0.499275,0.0817598,0.728724,0.747099,0.771241,0.157214,0.228695,0.0469258,0.731218,0.0307985,0.622445,0.326603,0.339753,0.869662,0.516561,0.95008,0.66826,0.81969,0.185613,0.234463,0.118156,0.743403,0.113033,0.385047,0.0950028,0.163616,0.8658,0.315013,0.967926,0.265755,0.544203,0.369701,0.219383,0.0589266,0.738075,0.833097,0.586755,0.860027,0.446024,0.559149,0.732379,0.671106,0.656056,0.277193,0.612565,0.445745,0.240036,0.804622,0.452168,0.227949,0.213536,0.870708,0.644155,0.175767,0.260637,0.042836,0.101528,0.447182,0.850204,0.263106,0.513829,0.435215,0.496026,0.289613,0.870404,0.26981,0.903147,0.753937,0.667937,0.158718,0.878176,0.111225,0.506693,0.325074,0.996161,0.37641,0.531873,0.46498,0.293812,0.538077,0.533986,0.525462,0.536892,0.0276771,0.676787,0.847896,0.187427,0.477867,0.0198085,|0.806762,0.698724,0.999467,0.284245,0.527407,0.410879,0.0812745,0.6802,0.817236,0.743468,0.704974,0.872981,0.652103,0.833288,0.0228743,0.398846,0.684771,0.643861,0.957182,0.526951,0.91573,0.41357,0.126726,0.354367,0.57732,0.304868,0.709178,0.992107,0.752405,0.289061,0.905088,0.16962,0.341489,0.347517,0.0623096,0.487181,0.11761,0.422494,0.446721,0.767576,0.960322,0.927519,0.853839,0.815733,0.997362,0.658742,0.357211,0.916086,0.955928,0.0226519,0.0281312,0.896516,0.523427,0.729621,0.162359,0.0977411,0.347811,0.084277,0.2494,0.948739,0.838839,0.23164,0.829907,0.353149,0.352164,0.382398,0.734997,0.612823,0.00052321,0.281333,0.787239,0.92892,0.903244,0.761933,0.0414394,0.452307,0.837599,0.170888,0.37654,0.945768,0.778318,0.60596,0.446445,0.988717,0.509157,0.0385273,0.599098,0.441465,0.777991,0.462778,0.415667,0.912282,0.562239,0.941649,0.971793,0.249044,0.972214,0.758615,0.123702,0.251752,0.121012,0.109721,0.961837,0.890273,0.48091,0.924779,0.864766,0.853628,0.838394,0.766988,0.391132,0.784241,0.558717,0.0553246,0.306065,0.273672,0.140309,0.718763,0.157285,0.355252,0.361157,0.978669,0.513523,0.317766,0.370946,0.75145,0.637635,0.321728,0.26786,0.855858,0.0303788,0.511019,0.320495,0.654525,0.628138,0.907962,0.973028,0.447627,0.971842,0.319922,0.826191,0.349406,0.720266,0.181676,0.859689,0.610765,0.191537,0.632869,0.134486,0.960359,0.0409878,0.657377,0.308173,0.706427,0.0768051,0.189,0.90034,0.102588,0.0264966,0.218591,0.95498,0.431246,0.472718,0.537134,0.840089,0.9029,0.23043,0.547702,0.814923,0.474309,0.584981,0.44058,0.408389,0.0947244,0.273015,0.249123,0.542909,0.174383,0.010194,0.925153,0.456545,0.397254,0.587578,0.946888,0.958244,0.980973,0.548085,0.621909,0.264039,0.765373,0.389994,0.187416,0.751959,0.723539,0.111068,0.33968,0.937974,0.335041,0.217607,0.869631,0.710428,0.153488,0.969734,0.159686,0.442834,0.736672,0.0341845,0.659713,0.240304,0.701626,0.917781,0.951259,0.691698,0.426767,0.90346,0.9114,0.796556,0.762688,0.870034,0.43714,0.594144,0.00736308,0.963425,0.169685,0.888362,0.153376,0.920912,0.827709,0.832444,0.282326,0.585743,0.381109,0.355972,0.152794,0.65532,0.0653425,0.505828,0.0817097,0.929429,0.242916,0.525079,0.0169463,0.708467,0.0851611,0.741826,0.689365,0.770539,0.59215,0.333924,0.916484,0.95527,0.97373,0.632175,0.406726,0.311658,0.334167,0.961997,0.695742,0.534882,0.435313,0.384749,0.0760161,0.523677,0.841793,0.662144,0.851667,0.355392,0.950363,0.977111,0.201205,0.097089,0.534979,0.493449,0.97779,0.402207,0.636701,0.800951,0.415905,0.245615,0.650103,0.260615,0.306379,0.283913,0.148924,0.222654,0.805188,0.253462,0.273334,0.0764009,0.574575,0.433523,0.939431,0.181708,0.825946,0.774277,0.217976,0.392057,0.434698,0.708204,0.823967,0.126844,0.346989,0.10952,0.586528,0.0545401,0.513988,0.972846,0.83849,0.477285,0.510244,0.874327,0.516188,0.598824,0.0857704,0.128091,0.95972,0.922901,0.249172,0.318635,0.369648,0.41409,0.19973,0.215566,0.505303,0.196793,0.311148,0.841971,0.673418,0.127187,0.808374,0.988044,0.200438,0.252262,0.136681,0.737289,0.0128597,0.977974,0.2831,0.470974,0.410038,0.539715,0.158578,0.877647,0.353613,0.856919,0.643415,0.544138,0.0240929,0.968481,0.0671922,0.880878,0.219943,0.507049,0.270146,0.121866,0.408013,0.251487,0.484075,0.958281,0.773586,0.454534,0.847804,0.735141,0.972779,0.404844,0.132626,0.799145,0.462319,0.774998,0.727879,0.0978501,0.386629,0.444161,0.764933,0.477407,0.188599,0.0276209,0.810102,0.0625373,0.659245,0.00115323,0.146187,0.733833,0.050694,0.974583,0.779772,0.218434,0.287397,0.586405,0.623642,0.529189,0.932144,0.804205,0.827903,0.28047,0.0315392,0.236751,0.152553,0.505257,0.24368,0.51294,0.936407,0.805397,0.1469,0.325959,0.215835,0.630924,0.0381165,0.898917,0.434191,0.0217013,0.249271,0.0943857,0.083178,0.142699,0.306756,0.0950413,0.506124,0.133899,0.513593,0.579053,0.506072,0.0168211,0.917501,0.953543,0.611255,0.932845,0.0332831,0.83012,0.913886,0.539365,0.718481,0.671179,0.97973,0.150905,0.126117,0.56694,0.790801,0.951558,0.375837,0.677727,0.83571,0.577178,0.388047,0.00670505,0.319294,0.397484,0.0248988,0.628426,0.311448,0.861929,0.295613,0.473118,0.86501,0.948382,0.383367,0.229846,0.0850115,0.772918,0.697848,0.0614415,0.368347,0.281294,0.138826,0.282201,0.0993975,0.603489,0.570361,0.318751,0.0798522,0.564238,0.253486,0.907019,0.912494,0.0966809,0.669026,0.764376,0.974614,0.0812567,0.661483,0.568676,0.00126356,0.958275,0.570576,0.626938,0.0227962,0.994726,0.8505,0.0135678,0.466585,0.740399,0.156946,0.260474,0.424351,0.44275,0.682535,0.471706,0.0671541,0.560751,0.952536,0.0886903,0.681282,0.644494,0.524173,0.259312,0.50499,0.889519,0.212887,0.552457,0.824273,0.686737,0.424906,0.115072,0.745931,0.0351217,0.976894,0.208311,0.884818,0.426953,0.801017,0.117769,0.318059,0.456927,0.333838,0.849223,0.543412,0.222351,0.537474,0.520613,0.0877358,0.000951588,0.688488,0.385571,0.322141,0.365185,0.432734,0.283735,0.0336351,0.319262,0.963578,0.909469,0.961249,0.393184,0.403932,0.331515,0.538942,0.919,0.86398,0.679462,0.491961,0.408691,0.505267,0.565693,0.460088,0.551828,0.566582,0.167354,0.294312,0.417604,0.824802,0.403704,0.206674,0.611391,0.621981,0.531269,0.0917331,0.0996658,0.861126,0.191758,0.127167,0.635704,0.208851,0.396698,0.546217,0.598103,0.445871,0.297397,0.627943,0.0696121,0.640411,0.259873,0.547634,0.764433,0.363129,0.522121,0.375052,0.672419,0.847192,0.924735,0.0740108,0.426445,0.159369,0.923202,0.816513,0.781017,0.331237,0.558715,0.46268,0.071655,0.352885,0.100948,0.692019,0.00813925,0.622567,0.872349,0.821612,0.840712,0.534144,0.0669775,0.639343,0.907704,0.211671,0.579873,0.625454,0.734715,0.301492,0.951028,0.972229,0.73421,0.671174,0.858626,0.0778378,0.370731,0.215692,0.598405,0.717209,0.069508,0.828508,0.730158,0.480292,0.328696,0.516254,0.591832,0.545105,0.452863,0.376737,0.522648,0.477598,0.520967,0.473999,0.276116,0.839782,0.977709,0.906603,0.952422,0.074131,0.571958,0.756202,0.610055,0.735703,0.837967,0.126823,0.626052,0.391653,0.0746078,0.101242,0.62016,0.307139,0.0266672,0.284733,0.0745756,0.812981,0.918504,0.978421,0.29287,0.801729,0.978114,0.164765,0.744865,0.116741,0.113506,0.846809,0.714074,0.563846,0.178052,0.505519,0.41678,0.93973,0.902497,0.855162,0.148084,0.810083,0.474652,0.348357,0.818115,0.840441,0.539781,0.00950366,0.250419,0.885421,0.661661,0.000971258,0.446048,0.691133,0.143852,0.511042,0.777622,0.132393,0.573354,0.704552,0.974429,0.290219,0.00335288,0.608019,0.998853,0.37483,0.371949,0.708519,0.312251,0.263093,0.158323,0.495348,0.619955,0.956804,0.534438,0.411871,0.479161,0.0879503,0.712826,0.0131757,0.411295,0.679322,0.0367489,0.960423,0.330423,0.142669,0.77389,0.791345,0.676731,0.985327,0.581284,0.0437938,0.0638418,0.506512,0.0353299,0.0461797,0.180432,0.204794,0.902936,0.11637,0.243505,0.534909,0.421136,0.291859,0.922214,0.600624,0.0625772,0.877017,0.163295,0.265893,0.800228,0.0135543,0.985619,0.896796,0.167873,0.556541,0.951531,0.626912,0.0195886,0.236208,0.86245,0.846171,0.94317,0.722787,0.741462,0.356772,0.384505,0.127193,0.642477,0.0274602,0.145919,0.561635,0.057081,0.885434,0.466935,0.320974,0.517755,0.0908006,0.849859,0.771364,0.778851,0.446199,0.495635,0.971152,0.188197,0.244479,0.88164,0.280474,0.251398,0.879903,0.613626,0.43057,0.516779,0.33288,0.515941,0.713644,0.408756,0.0904103,0.0241898,0.0582451,0.97727,0.452497,0.481138,0.991013,0.364487,0.244099,0.724487,0.623364,0.0638338,0.656686,0.740524,0.175309,0.248326,0.22228,0.853158,0.356472,0.179542,0.537053,0.0819759,0.275765,0.20254,0.919526,0.825744,0.930306,0.349615,0.0441802,0.770613,0.310883,0.409901,0.366718,0.298537,0.517595,0.497209,0.272486,0.412077,0.624694,0.858079,0.553306,0.115559,0.552606,0.820714,0.398612,0.634304,0.67164,0.830671,0.801979,0.827307,0.592361,0.308923,0.663017,0.540284,0.28152,0.22992,0.263243,0.847346,0.274985,0.700571,0.256112,0.666695,0.387751,0.118269,0.116027,0.194431,0.899975,0.29743,0.492282,0.117118,0.341667,0.985036,0.380628,0.224641,0.148103,0.832837,0.692002,0.0388641,0.216616,0.893591,0.790555,0.287965,0.416689,0.7015,0.0833142,0.332587,0.676192,0.0869859,0.96415,0.994671,0.686376,0.243546,0.153318,0.00101936,0.130588,0.861975,0.463961,0.466148,0.120606,0.735727,0.299704,0.74044,0.193938,0.77974,0.117432,0.812527,0.484818,0.549159,0.715432,0.0737168,0.425422,0.762261,0.936996,0.902924,0.642289,0.82645,0.762907,0.52028,0.295155,0.0981759,0.337433,0.835053,0.946817,0.878142,0.529149,0.760372,0.0536712,0.753024,0.781056,0.510902,0.872428,0.487517,0.105493,0.248292,0.809432,0.550629,0.126761,0.0486463,0.560749,0.798018,0.316534,0.433889,0.979687,0.391493,0.44316,0.87174,0.808996,0.26216,0.397086,0.256469,0.199319,0.130475,0.374851,0.370054,0.305602,0.190542,0.137613,0.928768,0.128075,0.860291,0.987529,0.484904,0.785772,0.838036,0.407182,0.748321,0.664742,0.932241,0.479463,0.75373,0.467696,0.941572,0.000479937,0.165087,0.579849,0.814105,0.47593,0.387654,0.0826431,0.431627,0.41486,0.0815606,0.0741539,0.954218,0.628223,0.482912,0.539247,0.891196,0.379995,0.282201,0.2639,0.800654,0.928494,0.697839,0.0591977,0.520766,0.596618,0.140808,0.7749,0.096833,0.186421,0.226939,0.395152,|0.978474,0.668642,0.77281,0.0149907,0.377161,0.373095,0.163867,0.0340726,0.43589,0.0621452,0.174963,0.319325,0.025744,0.0145891,0.435656,0.398987,0.700536,0.333096,0.2369,0.152721,0.0906312,0.525675,0.225007,0.976354,0.666918,0.196821,0.624951,0.199815,0.120385,0.505956,0.822578,0.454921,0.509271,0.227952,0.917585,0.304554,0.500848,0.241155,0.115004,0.725226,0.957459,0.114432,0.368226,0.972619,0.358361,0.954246,0.859774,0.361573,0.0149328,0.122242,0.797301,0.299224,0.0280252,0.206444,0.587063,0.835435,0.728133,0.258829,0.310553,0.14949,0.245055,0.0236183,0.9439,0.47088,0.174894,0.138528,0.650303,0.0691869,0.610226,0.614299,0.859013,0.379073,0.912546,0.32386,0.953348,0.632018,0.965518,0.758842,0.927201,0.477155,0.225632,0.524614,0.934469,0.99524,0.845423,0.451643,0.851128,0.68889,0.373921,0.304226,0.884566,0.112724,0.950276,0.439931,0.575575,0.489786,0.713422,0.788523,0.768442,0.251293,0.650134,0.412938,0.519585,0.624265,0.147912,0.216004,0.22216,0.911185,0.501308,0.0365672,0.190133,0.667418,0.0225824,0.417845,0.138803,0.695358,0.959435,0.439241,0.638481,0.379874,0.63323,0.0609124,0.953205,0.224315,0.376168,0.165005,0.314906,0.997909,0.751114,0.840679,0.258741,0.992056,0.00131381,0.447886,0.0221349,0.553093,0.953745,0.0823501,0.529488,0.47275,0.412099,0.600803,0.680101,0.376307,0.979348,0.621346,0.61393,0.913331,0.111375,0.851389,0.444688,0.959848,0.964352,0.0194974,0.653642,0.406711,0.233497,0.692927,0.291698,0.250657,0.403253,0.663307,0.712824,0.811104,0.946764,0.267967,0.954927,0.509682,0.494057,0.848912,0.64193,0.395125,0.518378,0.938263,0.490981,0.560348,0.160623,0.621098,0.435268,0.445686,0.0898324,0.425352,0.928172,0.593983,0.51516,0.457306,0.154104,0.119342,0.0637392,0.455694,0.403831,0.377662,0.472791,0.644065,0.579409,0.597573,0.174452,0.303586,0.138731,0.788902,0.513846,0.364682,0.723293,0.190135,0.883737,0.585823,0.0417427,0.930602,0.832119,0.146826,0.0272494,0.709806,0.913685,0.930928,0.337281,0.182438,0.46308,0.801718,0.0382658,0.583765,0.927204,0.287301,0.482331,0.317948,0.446102,0.216873,0.801469,0.583151,0.317013,0.0304302,0.32,0.0438401,0.415116,0.460118,0.781504,0.393462,0.305306,0.623897,0.281214,0.54924,0.994884,0.11743,0.736486,0.929678,0.872458,0.641807,0.0625281,0.339681,0.290895,0.585845,0.924726,0.398468,0.988259,0.0829462,0.554358,0.401173,0.0634199,0.200231,0.206938,0.740731,0.446491,0.86537,0.741331,0.417314,0.952173,0.208046,0.601914,0.587129,0.916374,0.043589,0.394996,0.918476,0.271657,0.972628,0.961861,0.73951,0.766294,0.194073,0.123922,0.814519,0.625771,0.0706221,0.915704,0.876904,0.284357,0.879776,0.674292,0.268869,0.587608,0.0119747,0.532931,0.755495,0.672569,0.859391,0.161514,0.77318,0.0907537,0.604712,0.628196,0.860188,0.543927,0.076771,0.077271,0.656355,0.156003,0.863431,0.739088,0.735568,0.265333,0.63195,0.263505,0.936065,0.676013,0.414976,0.976782,0.902994,0.772767,0.324015,0.0516662,0.869614,0.122186,0.058819,0.422914,0.720995,0.455983,0.459718,0.970199,0.829082,0.427158,0.41949,0.278843,0.317974,0.60316,0.738723,0.118325,0.580466,0.640499,0.821734,0.879935,0.936872,0.0764365,0.827247,0.145662,0.260449,0.658525,0.0123342,0.626181,0.942801,0.992296,0.862959,0.130468,0.0656135,0.554506,0.00920874,0.608018,0.663737,0.803371,0.483359,0.797961,0.730421,0.839636,0.74754,0.479147,0.906038,0.456865,0.578088,0.832511,0.797942,0.467549,0.765606,0.795085,0.51165,0.684423,0.527228,0.95385,0.678702,0.634109,0.248729,0.144408,0.853792,0.989945,0.875847,0.590278,0.704091,0.601707,0.741374,0.157254,0.0184464,0.562193,0.0759944,0.231515,0.510472,0.235945,0.385794,0.596882,0.904991,0.876374,0.698391,0.827172,0.397359,0.807175,0.0173989,0.942988,0.907486,0.749247,0.692094,0.134175,0.532574,0.810768,0.830038,0.336556,0.309153,0.965953,0.58162,0.940504,0.424639,0.760182,0.917062,0.769544,0.439407,0.662086,0.655174,0.845377,0.722992,0.971921,0.971281,0.0260295,0.899676,0.52176,0.664964,0.482675,0.737025,0.19744,0.790932,0.988783,0.0681267,0.785348,0.954423,0.0501772,0.347029,0.52217,0.5819,0.839315,0.421966,0.35633,0.172267,0.34052,0.699657,0.798738,0.180075,0.873044,0.8867,0.248524,0.391204,0.375868,0.849916,0.480414,0.727607,0.494871,0.938478,0.914492,0.55674,0.639358,0.793035,0.112496,0.432813,0.923757,0.870074,0.6395,0.602596,0.435812,0.494935,0.390449,0.0793409,0.530778,0.969272,0.153253,0.0387248,0.0321658,0.5388,0.265572,0.290428,0.42793,0.663256,0.756212,0.488674,0.911923,0.159813,0.812013,0.985042,0.930314,0.825263,0.663863,0.563777,0.334071,0.913245,0.109429,0.758308,0.921602,0.3385,0.709627,0.0298532,0.69139,0.232159,0.527694,0.938947,0.511361,0.121265,0.940032,0.54895,0.764716,0.716278,0.72243,0.383124,0.756494,0.83405,0.242728,0.736278,0.782864,0.661011,0.47504,0.733272,0.288925,0.445009,0.784897,0.525457,0.40094,0.0607079,0.132038,0.426161,0.836718,0.551554,0.783091,0.507742,0.0198306,0.68328,0.680527,0.112573,0.716567,0.933365,0.422659,0.698075,0.79672,0.534386,0.565449,0.680972,0.926926,0.328119,0.949653,0.405328,0.0331134,0.460841,0.168476,0.335848,0.0418691,0.462556,0.960037,0.583938,0.289515,0.858067,0.922605,0.0701467,0.296645,0.134225,0.859376,0.272806,0.605564,0.889122,0.883254,0.273554,0.210309,0.986303,0.677364,0.117227,0.671908,0.655173,0.0771931,0.816689,0.822124,0.60168,0.91014,0.462501,0.975615,0.361432,0.881453,0.762241,0.688271,0.906816,0.928268,0.684339,0.823111,0.826465,0.616256,0.828607,0.0849756,0.686776,0.840175,0.665087,0.844803,0.590898,0.783271,0.911132,0.604823,0.210843,0.329802,0.0343077,0.0283059,0.303163,0.0167246,0.156243,0.905581,0.18808,0.0492759,0.375157,0.396092,0.21462,0.472422,0.818172,0.336113,0.945639,0.602214,0.691956,0.17103,0.870769,0.268021,0.728925,0.614464,0.526667,0.919693,0.520344,0.183552,0.469156,0.641054,0.261639,0.355638,0.30043,0.792637,0.500386,0.686363,0.0765329,0.183365,0.391541,0.074963,0.871653,0.348172,0.67001,0.0626262,0.142726,0.621324,0.0609992,0.559719,0.450041,0.159013,0.518274,0.653887,0.819571,0.383662,0.574802,0.556673,0.588797,0.481899,0.19062,0.683869,0.450935,0.962632,0.319162,0.184338,0.759358,0.856171,0.0177621,0.0211705,0.0970885,0.94818,0.0661547,0.0801607,0.280264,0.765804,0.801481,0.286196,0.219847,0.121209,0.235042,0.839699,0.235882,0.934902,0.487985,0.554765,0.701097,0.887955,0.489564,0.0571191,0.458134,0.685291,0.269025,0.960116,0.913062,0.690887,0.512996,0.380249,0.694934,0.489982,0.703505,0.63221,0.295255,0.503818,0.20016,0.180223,0.740872,0.151627,0.046207,0.0641075,0.154849,0.46713,0.948641,0.153567,0.27727,0.752391,0.668243,0.0769676,0.464165,0.944946,0.28539,0.439005,0.961788,0.80781,0.491549,0.226007,0.167106,0.475348,0.250852,0.426625,0.584671,0.431058,0.966942,0.630665,0.277677,0.585191,0.497742,0.120798,0.0973482,0.432866,0.926145,0.272336,0.53423,0.347795,0.703783,0.540326,0.668114,0.151882,0.513756,0.524769,0.864953,0.0339213,0.137646,0.733318,0.375951,0.910604,0.505253,0.347525,0.338838,0.348446,0.863186,0.573243,0.729472,0.895123,0.922777,0.554927,0.471595,0.229367,0.140973,0.181425,0.235549,0.667213,0.945285,0.679997,0.565823,0.407806,0.878984,0.32504,0.205125,0.483559,0.550756,0.374981,0.0457249,0.986971,0.657884,0.10306,0.128019,0.711185,0.395516,0.307745,0.609862,0.350066,0.579692,0.987181,0.851345,0.149706,0.541562,0.335741,0.0312899,0.96667,0.582518,0.785329,0.131006,0.829161,0.460457,0.390487,0.837897,0.795524,0.956037,0.1373,0.585124,0.310924,0.667112,0.352065,0.505299,0.855608,0.073776,0.696203,0.795312,0.0264306,0.961822,0.522569,0.0222088,0.306064,0.903605,0.757419,0.788956,0.870161,0.713033,0.474167,0.0703749,0.991492,0.0397685,0.908095,0.325025,0.241414,0.165733,0.947311,0.851354,0.858839,0.767087,0.116767,0.697805,0.894485,0.156154,0.0504562,0.825486,0.910758,0.813826,0.482235,0.539474,0.812397,0.84662,0.573896,0.264916,0.525208,0.647351,0.852117,0.770533,0.70087,0.225607,0.140863,0.249885,0.829297,0.091339,0.401759,0.264774,0.63383,0.172366,0.953162,0.0790133,0.838205,0.99665,0.117812,0.177151,0.449886,0.728134,0.701495,0.48502,0.375165,0.362217,0.729325,0.99203,0.990088,0.0813534,0.100876,0.195947,0.977107,0.507915,0.798252,0.904818,0.784199,0.00941992,0.318636,0.664168,0.455969,0.814366,0.547682,0.152903,0.526364,0.242301,0.544475,0.572412,0.55243,0.232698,0.94462,0.856085,0.423643,0.239999,0.993181,0.521679,0.0559314,0.455082,0.884028,0.414435,0.359336,0.563104,0.669665,0.939145,0.171476,0.671586,0.11006,0.35885,0.0508776,0.423278,0.0408084,0.748171,0.146427,0.236444,0.353779,0.780613,0.925675,0.0908902,0.186392,0.234749,0.657922,0.468489,0.978269,0.844677,0.609454,0.223564,0.751331,0.947042,0.693105,0.384008,0.701059,0.554074,0.93702,0.746832,0.535924,0.327036,0.551934,0.672128,0.605278,0.287381,0.114365,0.306692,0.188733,0.640327,0.738866,0.461404,0.17059,0.223394,0.169025,0.454877,0.473933,0.443039,0.662938,0.289164,0.0780908,0.212612,0.296123,0.280174,0.237788,0.748414,0.652977,0.302006,0.971779,0.645063,0.49222,0.136041,0.406568,0.332262,0.904881,0.241867,0.775526,0.108713,0.182319,0.362526,0.466392,0.835667,0.839633,0.0918543,0.271693,0.156545,0.922417,0.547737,0.142061,0.8892,|0.539436,0.831201,0.699405,0.959366,0.0454512,0.806702,0.846984,0.353171,0.251164,0.112899,0.945655,0.3533,0.135718,0.396459,0.812282,0.671324,0.315531,0.529084,0.125622,0.929958,0.72118,0.471057,0.545515,0.693597,0.657209,0.463773,0.918931,0.536789,0.457756,0.523397,0.201499,0.368148,0.126375,0.71445,0.734877,0.460645,0.628673,0.461951,0.951587,0.71732,0.0504193,0.392759,0.617339,0.784249,0.352456,0.179629,0.704364,0.869643,0.872226,0.628828,0.467254,0.542019,0.45739,0.956927,0.517025,0.811678,0.788973,0.69912,0.210857,0.362047,0.963577,0.217478,0.932981,0.562468,0.127285,0.625245,0.873475,0.57823,0.00994128,0.137948,0.781195,0.239441,0.124998,0.983387,0.330528,0.691329,0.417746,0.999054,0.758099,0.423254,0.350824,0.701139,0.481917,0.5441,0.202381,0.581333,0.569268,0.700467,0.581868,0.226712,0.00377947,0.817742,0.921679,0.128822,0.602105,0.702291,0.132098,0.340984,0.757021,0.320413,0.609745,0.0792404,0.359743,0.160901,0.615489,0.516592,0.263619,0.582146,0.854604,0.267282,0.179831,0.349362,0.517985,0.80785,0.0836822,0.0589893,0.531789,0.716744,0.556802,0.862705,0.608718,0.550788,0.139038,0.994815,0.0620548,0.732218,0.415544,0.804726,0.049284,0.133093,0.751424,0.521045,0.415313,0.181235,0.576184,0.953539,0.204098,0.0927098,0.576237,0.523697,0.544087,0.704405,0.00605345,0.465791,0.0344915,0.0528995,0.117049,0.198642,0.031896,0.538628,0.151186,0.78236,0.515097,0.844131,0.451139,0.54042,0.3762,0.934192,0.794027,0.657005,0.136769,0.02643,0.755586,0.883993,0.110593,0.882647,0.489319,0.802906,0.437252,0.157121,0.606171,0.289068,0.51357,0.86969,0.990016,0.803068,0.288799,0.161667,0.157862,0.580674,0.560774,0.618635,0.692733,0.408662,0.89592,0.406963,0.632386,0.137594,0.0640058,0.237204,0.534981,0.154655,0.790028,0.452857,0.255702,0.327303,0.459597,0.0686346,0.138959,0.114719,0.254121,0.511451,0.962148,0.274357,0.50473,0.732828,0.961538,0.586194,0.272913,0.613635,0.480117,0.642228,0.899005,0.252088,0.958849,0.27892,0.0426632,0.0713363,0.220941,0.978511,0.331386,0.15881,0.13244,0.588105,0.845012,0.720237,0.428179,0.167781,0.0601167,0.861884,0.163925,0.532228,0.656964,0.649778,0.414511,0.275895,0.857695,0.908333,0.336021,0.711011,0.0613165,0.471569,0.494936,0.899572,0.936073,0.974939,0.749519,0.849716,0.866545,0.19012,0.106307,0.832966,0.0320129,0.265203,0.404459,0.668007,0.840492,0.811031,0.0319768,0.344266,0.165223,0.656761,0.515955,0.719849,0.468812,0.973039,0.478914,0.334954,0.0712094,0.0146899,0.959826,0.0842611,0.342004,0.960652,0.219004,0.860154,0.661764,0.114173,0.380397,0.801022,0.462337,0.0377986,0.673346,0.238343,0.0480457,0.886341,0.923065,0.680344,0.901992,0.657813,0.326191,0.199315,0.703656,0.670483,0.569867,0.338945,0.315753,0.21986,0.164604,0.1074,0.324325,0.923758,0.545395,0.838336,0.917882,0.0465552,0.410023,0.663752,0.350032,0.72427,0.466297,0.972517,0.93885,0.318686,0.989645,0.0624043,0.376869,0.30413,0.083787,0.583607,0.444086,0.76654,0.622984,0.337599,0.00211602,0.989839,0.53755,0.284513,0.45911,0.34073,0.628847,0.134248,0.352355,0.13313,0.504622,0.450121,0.376139,0.576075,0.538368,0.673182,0.736744,0.467308,0.366807,0.662274,0.353748,0.824076,0.108143,0.979662,0.0796424,0.323599,0.650458,0.777684,0.807529,0.0869787,0.213028,0.275934,0.0749624,0.118386,0.44778,0.66673,0.282857,0.195783,0.998548,0.872567,0.163008,0.245601,0.292689,0.792555,0.267378,0.990142,0.595089,0.473426,0.274708,0.937121,0.779467,0.492506,0.689807,0.392841,0.0350619,0.186851,0.363073,0.731799,0.353663,0.0597475,0.0885363,0.253522,0.525115,0.959854,0.329913,0.590069,0.542328,0.381728,0.59551,0.944853,0.551529,0.231588,0.982768,0.32809,0.524458,0.156975,0.22053,0.348489,0.147796,0.0682628,0.675082,0.216675,0.236228,0.738876,0.922874,0.443853,0.706853,0.0539459,0.697662,0.056906,0.525814,0.354574,0.830376,0.290718,0.652688,0.979439,0.12297,0.701423,0.665063,0.361593,0.713893,0.149271,0.477176,0.426369,0.753724,0.605041,0.384528,0.522732,0.490257,0.450826,0.597146,0.137222,0.950907,0.220257,0.767636,0.356993,0.0513718,0.889308,0.715406,0.147404,0.608761,0.950599,0.973399,0.461653,0.00429273,0.580334,0.659245,0.0313766,0.981232,0.892178,0.875749,0.24764,0.566899,0.785305,0.910405,0.850127,0.285979,0.00232363,0.868203,0.104251,0.981289,0.529046,0.765593,0.819667,0.693654,0.343245,0.919955,0.436517,0.527794,0.83686,0.527247,0.913456,0.907526,0.0271643,0.528914,0.42359,0.924287,0.60221,0.700151,0.295453,0.0776985,0.713412,0.437836,0.129606,0.44196,0.391859,0.162441,0.748849,0.648866,0.309065,0.624619,0.165207,0.795252,0.778532,0.41731,0.101757,0.75312,0.95939,0.602521,0.0174592,0.145751,0.739712,0.505089,0.388021,0.120688,0.0725402,0.982301,0.0423446,0.404439,0.0588297,0.98243,0.425903,0.108123,0.794651,0.69909,0.96308,0.43906,0.198213,0.194488,0.299482,0.146568,0.549524,0.699449,0.333424,0.326009,0.468522,0.683098,0.995758,0.917401,0.776409,0.434847,0.843067,0.772653,0.309954,0.294749,0.351719,0.10795,0.127087,0.78458,0.760847,0.977376,0.606502,0.587406,0.621823,0.622144,0.229966,0.971528,0.164733,0.969664,0.494964,0.660899,0.0292861,0.646293,0.764846,0.561753,0.501187,0.889454,0.799456,0.9616,0.0303902,0.172781,0.578047,0.87908,0.0127175,0.791334,0.424137,0.988252,0.254769,0.665229,0.653629,0.0591863,0.40049,0.233551,0.983535,0.582941,0.755217,0.824873,0.733079,0.271927,0.579205,0.556968,0.566861,0.949212,0.645824,0.856967,0.8634,0.837638,0.23499,0.60949,0.120867,0.54044,0.323003,0.219774,0.00574392,0.264571,0.553878,0.970819,0.900332,0.404282,0.748061,0.917633,0.164736,0.420555,0.21494,0.586037,0.0407031,0.472089,0.338442,0.350614,0.26907,0.388486,0.962256,0.543709,0.79104,0.905084,0.992382,0.327671,0.68927,0.393767,0.768426,0.440051,0.00317472,0.250556,0.7962,0.177984,0.269368,0.566852,0.382635,0.546033,0.931457,0.620455,0.705013,0.0124153,0.900612,0.365992,0.594155,0.899186,0.369351,0.231605,0.328268,0.989329,0.0328703,0.364818,0.153759,0.0111842,0.557551,0.743334,0.12462,0.564839,0.65764,0.287061,0.0984302,0.0421656,0.684483,0.807153,0.891447,0.840817,0.364669,0.765905,0.177548,0.0619922,0.375804,0.529752,0.979789,0.849634,0.938232,0.0530093,0.238443,0.7256,0.153604,0.0673169,0.639365,0.906287,0.809834,0.392541,0.257797,0.472295,0.975818,0.206997,0.811541,0.994676,0.0149948,0.627251,0.0349926,0.220888,0.529207,0.254836,0.116141,0.776045,0.0207475,0.695074,0.174621,0.529857,0.95542,0.31547,0.416094,0.869565,0.447794,0.113303,0.168287,0.61929,0.178825,0.295399,0.86625,0.0758185,0.358209,0.572806,0.359091,0.423284,0.943744,0.469471,0.707052,0.0715138,0.86044,0.18249,0.978248,0.773861,0.402252,0.210109,0.88188,0.509185,0.879192,0.0268,0.513613,0.203989,0.133161,0.0973681,0.20516,0.671835,0.302029,0.211102,0.94123,0.440037,0.192985,0.943843,0.47715,0.189219,0.936656,0.952117,0.662969,0.523719,0.72362,0.976812,0.867255,0.9179,0.720172,0.800284,0.368201,0.876758,0.675955,0.868563,0.607559,0.0161698,0.127243,0.992318,0.795302,0.901033,0.56587,0.0257814,0.313786,0.395783,0.476793,0.657465,0.606945,0.749741,0.530624,0.432421,0.255298,0.200543,0.225965,0.314705,0.196357,0.629276,0.900873,0.70514,0.427455,0.970446,0.293861,0.086596,0.879903,0.22679,0.989785,0.904287,0.916083,0.37043,0.413778,0.673843,0.779074,0.927591,0.082979,0.195559,0.847319,0.0595278,0.378017,0.794915,0.195805,0.372864,0.973665,0.859375,0.0785567,0.967696,0.0206316,0.811188,0.0823131,0.146818,0.911214,0.345263,0.463123,0.832839,0.819556,0.573401,0.0442374,0.777431,0.0789769,0.395997,0.683658,0.690366,0.78465,0.959746,0.45331,0.892999,0.869073,0.0283675,0.863487,0.0177655,0.607411,0.884871,0.0517423,0.73576,0.848637,0.859518,0.888165,0.186497,0.928584,0.488359,0.72949,0.896107,0.933089,0.0122538,0.905378,0.540616,0.2632,0.756015,0.963162,0.644073,0.913351,0.223695,0.757531,0.933942,0.681231,0.784845,0.795577,0.471727,0.802964,0.919886,0.40185,0.0737814,0.0887075,0.576405,0.778557,0.835314,0.0439662,0.87712,0.343824,0.251127,0.139961,0.735534,0.794741,0.0767633,0.275786,0.715405,0.711779,0.323877,0.307367,0.0290692,0.245136,0.763626,0.997143,0.380787,0.980828,0.0659723,0.452568,0.932352,0.411389,0.337354,0.0267604,0.768544,0.570489,0.574568,0.182917,0.0664085,0.632114,0.255159,0.0465327,0.163432,0.120281,0.870918,0.397669,0.213501,0.956477,0.36785,0.675698,0.814559,0.167543,0.299193,0.462145,0.389432,0.0919685,0.334847,0.702204,0.0784997,0.450604,0.681296,0.0802283,0.681445,0.421046,0.737487,0.894347,0.20251,0.141268,0.706323,0.664012,0.564497,0.872291,0.434921,0.802701,0.70526,0.553848,0.519988,0.313427,0.925101,0.165347,0.577043,0.171126,0.407495,0.0547138,0.890101,0.407087,0.658036,0.288684,0.253834,0.218079,0.860068,0.322689,0.964203,0.573504,0.688389,0.115143,0.138224,0.545872,0.370067,0.444889,0.379578,0.347693,0.720649,0.218529,0.875317,0.356989,0.428226,0.471004,0.631232,0.492071,0.753911,0.460446,0.212119,0.742534,0.331062,0.567918,0.153952,0.727603,0.908523,0.936937,0.534201,0.37011,0.670679,0.467522,0.666487,0.611872,0.880731,0.352349,0.199396,0.510187,0.0812246,0.445346,0.228895,0.325098,0.0551606,0.306307,0.341854,0.794448,0.316791,0.490252,0.528958,0.374556,0.952237,0.148226,|0.620893,0.799241,0.440629,0.995065,0.464803,0.287852,0.687215,0.986505,0.0977707,0.124046,0.948664,0.918964,0.349625,0.979888,0.0725657,0.462136,0.227392,0.208389,0.686887,0.315329,0.623219,0.184028,0.214113,0.429075,0.0367744,0.292725,0.239006,0.744058,0.585715,0.853874,0.0708786,0.157016,0.521159,0.401495,0.468349,0.525113,0.623012,0.264999,0.825811,0.968554,0.0210604,0.016353,0.54704,0.756834,0.698241,0.583892,0.809355,0.157078,0.165045,0.954724,0.0807009,0.952674,0.370924,0.480369,0.895757,0.245087,0.504266,0.861423,0.940385,0.336825,0.0486298,0.755532,0.0371612,0.286665,0.527074,0.716717,0.0376123,0.46958,0.662794,0.71699,0.394964,0.4514,0.046766,0.421718,0.240542,0.538214,0.0897835,0.140668,0.597477,0.8369,0.119075,0.833468,0.896536,0.976251,0.0656568,0.934698,0.748917,0.337579,0.436046,0.376574,0.411214,0.246587,0.220213,0.302662,0.837749,0.951781,0.133363,0.538004,0.721476,0.998331,0.66449,0.548563,0.169428,0.799761,0.07141,0.285793,0.616925,0.097916,0.806463,0.340287,0.135536,0.265395,0.625705,0.28493,0.600201,0.739913,0.895548,0.917501,0.0297518,0.585349,0.766255,0.212215,0.723506,0.121693,0.511697,0.326728,0.522755,0.650707,0.714772,0.736869,0.104539,0.347615,0.0340438,0.117258,0.556282,0.792227,0.201781,0.953154,0.0637519,0.0912671,0.0831383,0.609161,0.727699,0.138913,0.637688,0.885787,0.522371,0.547858,0.507907,0.666798,0.575668,0.800946,0.114442,0.985756,0.988271,0.147319,0.987387,0.995182,0.639973,0.238265,0.142589,0.0786545,0.233932,0.847232,0.293878,0.0295233,0.690165,0.153099,0.453567,0.746273,0.0956891,0.296814,0.023725,0.438256,0.245527,0.678508,0.99705,0.758303,0.783783,0.386878,0.296089,0.909432,0.80081,0.255476,0.633281,0.793023,0.879503,0.838259,0.509947,0.79696,0.205944,0.681271,0.472396,0.211251,0.948778,0.768846,0.529075,0.438491,0.782501,0.177249,0.217398,0.371722,0.226608,0.347103,0.952676,0.943124,0.83828,0.909827,0.78056,0.797794,0.240459,0.924306,0.346358,0.107806,0.341464,0.67958,0.198054,0.41948,0.407689,0.588477,0.669853,0.826175,0.469675,0.666699,0.515495,0.899492,0.0327274,0.39119,0.609714,0.235165,0.606161,0.0109887,0.19465,0.0908038,0.255411,0.547911,0.707718,0.00622243,0.0698639,0.184136,0.604482,0.127177,0.496639,0.869851,0.552589,0.570605,0.642425,0.470148,0.133464,0.368967,0.248539,0.593533,0.649765,0.0830921,0.00741267,0.510661,0.636389,0.0457833,0.758344,0.352214,0.272267,0.0168317,0.520944,0.362061,0.160256,0.827557,0.881274,0.884526,0.187865,0.479768,0.7721,0.237849,0.700958,0.647214,0.993259,0.32064,0.609642,0.810232,0.0777328,0.66346,0.873783,0.230375,0.879466,0.539822,0.690657,0.896063,0.815427,0.0470177,0.674897,0.0792073,0.30249,0.660347,0.932991,0.50342,0.454229,0.659087,0.782935,0.529678,0.139171,0.028485,0.633611,0.62558,0.410795,0.405355,0.494864,0.206805,0.513667,0.270018,0.585163,0.393079,0.278423,0.598487,0.51981,0.236971,0.642781,0.69786,0.00445724,0.0302072,0.537423,0.394962,0.375329,0.276458,0.370609,0.636178,0.963643,0.969185,0.697569,0.186367,0.567387,0.609119,0.654879,0.637928,0.23781,0.203331,0.810637,0.62576,0.293268,0.301364,0.719844,0.24366,0.689709,0.968194,0.869606,0.824235,0.632709,0.409888,0.588143,0.97603,0.376363,0.713008,0.0204838,0.560434,0.0561487,0.895878,0.734983,0.514188,0.950231,0.365015,0.417125,0.581662,0.838153,0.477006,0.818155,0.770474,0.728514,0.185152,0.388678,0.202703,0.159693,0.349132,0.823184,0.94244,0.199052,0.734158,0.882136,0.282426,0.347273,0.561529,0.0149053,0.132405,0.525849,0.659088,0.522652,0.465119,0.657619,0.68928,0.870681,0.117387,0.764534,0.744654,0.0852926,0.248931,0.828897,0.783372,0.606491,0.753002,0.180055,0.475775,0.179433,0.621166,0.28622,0.210013,0.0433561,0.201438,0.921709,0.629631,0.166521,0.938552,0.813384,0.578689,0.609921,0.089996,0.345879,0.993121,0.939154,0.501612,0.880879,0.295394,0.729225,0.013432,0.430086,0.319478,0.204626,0.110845,0.485669,0.115309,0.753547,0.278639,0.65111,0.650465,0.296582,0.340475,0.0953449,0.111771,0.147226,0.63509,0.421755,0.93712,0.263815,0.888054,0.150937,0.216158,0.924786,0.783387,0.670038,0.728736,0.586193,0.565934,0.152858,0.5927,0.648865,0.330286,0.569014,0.799488,0.510282,0.728965,0.894677,0.936531,0.243415,0.923571,0.525007,0.322153,0.309003,0.925226,0.309863,0.669773,0.474779,0.0400127,0.00582528,0.820124,0.00791872,0.389692,0.900773,0.861612,0.710094,0.294511,0.710605,0.628715,0.916875,0.520037,0.00835049,0.657426,0.661481,0.436039,0.570798,0.499116,0.246707,0.791235,0.626665,0.407375,0.236482,0.70473,0.32003,0.0570514,0.306508,0.86569,0.212,0.081016,0.849178,0.354752,0.816411,0.0278005,0.0711623,0.225164,0.153092,0.0369717,0.320598,0.789224,0.858922,0.807773,0.988051,0.243271,0.173694,0.0638306,0.953288,0.462071,0.669185,0.451902,0.76706,0.527555,0.876288,0.729358,0.720222,0.844045,0.104966,0.364518,0.768517,0.96848,0.681266,0.0740989,0.88751,0.173655,0.417797,0.869762,0.170097,0.0790893,0.0304681,0.462721,0.792123,0.538313,0.0098083,0.41677,0.540133,0.722733,0.973825,0.0910358,0.192478,0.679526,0.639381,0.134757,0.893215,0.196291,0.0813469,0.748112,0.796427,0.747326,0.973835,0.658837,0.125633,0.0587191,0.054992,0.494409,0.633605,0.855143,0.407652,0.673458,0.141072,0.178891,0.569827,0.767352,0.345671,0.546135,0.441517,0.728512,0.846002,0.44794,0.820813,0.544746,0.569897,0.0662684,0.258918,0.351611,0.883732,0.620001,0.23401,0.0988492,0.811836,0.986817,0.21767,0.306812,0.45852,0.918878,0.967978,0.772728,0.518944,0.440211,0.342625,0.0947877,0.438792,0.912815,0.260757,0.673133,0.817431,0.416488,0.628804,0.242955,0.802615,0.173431,0.783258,0.593403,0.222361,0.600109,0.421846,0.604846,0.133587,0.504638,0.646548,0.972489,0.814158,0.326532,0.335023,0.128622,0.864835,0.985189,0.936009,0.00520223,0.213033,0.113042,0.890535,0.71851,0.366423,0.0791281,0.484158,0.201602,0.474135,0.0762209,0.606578,0.288072,0.917601,0.354927,0.220845,0.418161,0.489774,0.752525,0.624383,0.0310989,0.117284,0.702918,0.976242,0.000816286,0.666646,0.102803,0.123281,0.598231,0.261041,0.87438,0.335996,0.403382,0.243039,0.291504,0.898965,0.639921,0.0839642,0.234771,0.378358,0.720633,0.824123,0.442557,0.9855,0.0480592,0.116912,0.781444,0.14417,0.674252,0.731884,0.880045,0.895875,0.902147,0.461824,0.13354,0.107991,0.111756,0.370016,0.10682,0.527923,0.898867,0.637396,0.64999,0.310741,0.401941,0.567506,0.249296,0.122719,0.0308908,0.939576,0.796815,0.551308,0.45943,0.741513,0.0305582,0.872534,0.0136008,0.0985327,0.851826,0.128618,0.34127,0.176069,0.480494,0.408707,0.341838,0.397864,0.690955,0.0175015,0.3678,0.884394,0.167705,0.455576,0.299929,0.993424,0.358861,0.947804,0.0450048,0.296247,0.930275,0.157948,0.601947,0.468861,0.280623,0.708933,0.816898,0.738515,0.682201,0.938028,0.768432,0.230761,0.596379,0.281727,0.994373,0.584421,0.359141,0.100296,0.806183,0.163253,0.309606,0.205514,0.407805,0.778071,0.822765,0.854635,0.741161,0.99018,0.62981,0.816714,0.907433,0.914148,0.454176,0.933453,0.304881,0.436776,0.450471,0.764762,0.488373,0.035463,0.615196,0.761403,0.21094,0.358896,0.601921,0.110304,0.353969,0.95118,0.559157,0.665009,0.714012,0.796797,0.68016,0.13721,0.631452,0.359027,0.62921,0.425469,0.717351,0.745809,0.953482,0.236405,0.632658,0.739906,0.0790745,0.123461,0.400536,0.621657,0.494735,0.883897,0.382262,0.111976,0.712909,0.53124,0.319341,0.00749826,0.239339,0.863383,0.674487,0.786566,0.668215,0.532885,0.51235,0.483573,0.87235,0.31069,0.246443,0.402973,0.233888,0.719707,0.744138,0.0176998,0.916956,0.255757,0.731899,0.404314,0.991276,0.0968313,0.913578,0.331029,0.941136,0.855504,0.0714747,0.183782,0.865866,0.76155,0.790542,0.524595,0.0342059,0.808357,0.418263,0.761976,0.260073,0.31929,0.661093,0.574517,0.447886,0.841995,0.02689,0.914664,0.547965,0.0853969,0.20212,0.933277,0.651431,0.204151,0.872142,0.036862,0.818358,0.921566,0.919955,0.494972,0.995243,0.95858,0.609258,0.99517,0.310574,0.362293,0.137077,0.840988,0.046158,0.307507,0.905328,0.904242,0.442554,0.272264,0.330387,0.640726,0.978456,0.0723186,0.0444147,0.237061,0.428978,0.253089,0.70559,0.801017,0.827226,0.461144,0.180015,0.365301,0.502235,0.438748,0.89846,0.470859,0.252556,0.931066,0.742981,0.821395,0.17355,0.957027,0.236931,0.436125,0.514632,0.773493,0.74087,0.943117,0.0466239,0.31419,0.690174,0.113872,0.58342,0.40053,0.572915,0.409498,0.877631,0.097872,0.500772,0.620293,0.737099,0.0782323,0.134731,0.137768,0.880065,0.513562,0.579211,0.366461,0.532603,0.797292,0.696269,0.748553,0.262516,0.999465,0.0823386,0.757485,0.234976,0.11307,0.193031,0.00965106,0.725925,0.860387,0.112333,0.397717,0.874471,0.736077,0.714047,0.327792,0.233825,0.905988,0.247254,0.672311,0.491106,0.486423,0.896902,0.238763,0.868446,0.904732,0.0249277,0.871919,0.677061,0.372962,0.0104603,0.918412,0.885172,0.914123,0.566351,0.758594,0.519407,0.301642,7.82013e-05,0.929984,0.970168,0.980587,0.917728,0.864118,0.860318,0.22165,0.853103,0.18436,0.188961,0.0463172,0.995923,0.615299,0.467249,0.495403,0.538204,0.208004,0.00602162,0.815191,0.791119,0.942415,0.836071,0.805252,0.0592462,0.219377,0.770441,0.935304,0.931216,0.993729,0.868155,0.402578,0.145249,0.587335,0.909062,0.51489,0.78849,0.293766,0.968285,|0.932904,0.463943,0.776037,0.583407,0.248412,0.864824,0.630167,0.0750737,0.588984,0.176054,0.175399,0.925896,0.985793,0.977134,0.627783,0.966969,0.671426,0.882147,0.627117,0.419883,0.477395,0.3856,0.0915534,0.955889,0.77011,0.636293,0.226033,0.776035,0.258898,0.827397,0.439422,0.762119,0.150868,0.790013,0.752948,0.448513,0.429772,0.111346,0.547559,0.855967,0.719459,0.27971,0.313827,0.830363,0.0942746,0.79115,0.230043,0.026449,0.533512,0.547718,0.128237,0.439489,0.376292,0.149082,0.369047,0.0219983,0.526642,0.210889,0.409719,0.548657,0.567425,0.191348,0.65156,0.794427,0.0647527,0.643352,0.857763,0.820591,0.694594,0.947489,0.963416,0.615213,0.12432,0.8458,0.454781,0.953528,0.366063,0.738084,0.48668,0.714514,0.94395,0.512854,0.760412,0.554051,0.311392,0.690485,0.311462,0.221614,0.874732,0.955053,0.627351,0.672752,0.886621,0.754091,0.488695,0.185535,0.957876,0.0353062,0.885322,0.626657,0.328145,0.51566,0.199409,0.474123,0.541373,0.141752,0.109371,0.329616,0.671189,0.290907,0.356493,0.275795,0.0195852,0.675542,0.100822,0.344272,0.704956,0.694394,0.327564,0.515888,0.924159,0.594406,0.260171,0.244878,0.200786,0.569676,0.321642,0.844132,0.508146,0.394587,0.584788,0.634696,0.979067,0.864678,0.358865,0.308172,0.949512,0.623714,0.724501,0.885181,0.506325,0.420244,0.23459,0.127215,0.0531513,0.435037,0.360425,0.116862,0.48483,0.445786,0.100578,0.560841,0.177104,0.7952,0.578934,0.241907,0.910166,0.363383,0.661936,0.756026,0.459423,0.901663,0.443599,0.398674,0.491847,0.222743,0.218417,0.81759,0.194255,0.957615,0.104734,0.31635,0.485374,0.304854,0.567107,0.219897,0.721473,0.0853796,0.339635,0.253431,0.000133336,0.216682,0.610471,0.536533,0.993707,0.512768,0.72844,0.486469,0.238177,0.81225,0.381897,0.576387,0.00206304,0.53945,0.0717135,0.106428,0.435548,0.730359,0.847506,0.0116459,0.647676,0.587008,0.895721,0.794793,0.349291,0.352711,0.505102,0.515946,0.96997,0.45921,0.37369,0.12148,0.670469,0.393421,0.315464,0.751496,0.484549,0.162278,0.176802,0.360497,0.16124,0.411999,0.377554,0.228295,0.145417,0.621299,0.69275,0.841398,0.300674,0.601909,0.791028,0.760202,0.263702,0.664653,0.726808,0.763854,0.782687,0.376694,0.4175,0.797919,0.052667,0.46606,0.38209,0.639909,0.200109,0.154215,0.411571,0.185073,0.41781,0.869731,0.341653,0.68521,0.724535,0.920953,0.00314993,0.29597,0.748122,0.43167,0.872819,0.933227,0.417992,0.605088,0.560436,0.546301,0.882454,0.585199,0.232614,0.803037,0.678295,0.987975,0.538354,0.125407,0.643026,0.000367284,0.152663,0.970886,0.197693,0.539017,0.49912,0.478469,0.878777,0.324314,0.0146534,0.30712,0.076834,0.227746,0.0339516,0.839024,0.221331,0.935026,0.502137,0.780693,0.702894,0.716017,0.753971,0.720032,0.356268,0.77428,0.201824,0.571952,0.905724,0.0190687,0.170023,0.744959,0.603138,0.4256,0.497176,0.0607801,0.708619,0.689256,0.272837,0.0639777,0.616204,0.786447,0.606191,0.49495,0.60038,0.798427,0.177511,0.754252,0.628767,0.966425,0.412966,0.745753,0.989085,0.00384849,0.654331,0.149972,0.688557,0.853383,0.231352,0.623388,0.888143,0.00598705,0.968741,0.780364,0.392894,0.261247,0.0532384,0.661922,0.571093,0.625429,0.472115,0.164538,0.532755,0.272179,0.0321155,0.0147046,0.163553,0.58851,0.996993,0.493922,0.16729,0.395939,0.119546,0.0897459,0.39961,0.650817,0.693552,0.135587,0.046959,0.815439,0.156795,0.902647,0.736262,0.196313,0.621197,0.958458,0.926761,0.453188,0.475456,0.221694,0.99161,0.349076,0.628868,0.0115559,0.186989,0.755046,0.264555,0.766375,0.327804,0.226597,0.447659,0.708035,0.158469,0.599397,0.354251,0.585652,0.872297,0.539761,0.86876,0.9696,0.282729,0.459513,0.473113,0.192692,0.617095,0.583076,0.433004,0.602479,0.198613,0.875105,0.85433,0.524204,0.321249,0.707977,0.104372,0.356291,0.221321,0.0859194,0.735025,0.209704,0.807706,0.764006,0.174237,0.724058,0.657454,0.022131,0.654923,0.0667119,0.757465,0.168243,0.0900978,0.952627,0.337226,0.557345,0.2452,0.170481,0.451351,0.0839137,0.268467,0.6285,0.268801,0.978996,0.190587,0.964514,0.794884,0.485737,0.683873,0.10515,0.42991,0.579036,0.694912,0.416036,0.390041,0.568875,0.914462,0.403661,0.53536,0.0461697,0.709858,0.120083,0.644646,0.0504909,0.464142,0.671541,0.364174,0.0691125,0.732356,0.0722924,0.618729,0.146639,0.33123,0.898711,0.127788,0.953354,0.9761,0.868007,0.575427,0.0156629,0.160609,0.111936,0.0189911,0.821593,0.490714,0.0438268,0.083512,0.512636,0.13374,0.535621,0.180299,0.800534,0.0362123,0.535083,0.961183,0.0351194,0.330021,0.40665,0.148318,0.918101,0.0812854,0.117169,0.87763,0.347885,0.272881,0.284136,0.790247,0.409358,0.114747,0.59334,0.0196998,0.163746,0.635176,0.0453079,0.369534,0.642555,0.972377,0.249271,0.00805068,0.978803,0.496182,0.997559,0.423791,0.126445,0.658574,0.210727,0.140444,0.180475,0.242524,0.50146,0.847979,0.53553,0.742303,0.0980526,0.462208,0.790927,0.441409,0.515046,0.441453,0.0782163,0.26419,0.561075,0.194735,0.842068,0.818034,0.12992,0.597084,0.188127,0.688442,0.682178,0.738123,0.953337,0.842402,0.264606,0.281654,0.820937,0.530044,0.312376,0.301763,0.172852,0.241292,0.735322,0.0443475,0.466926,0.853163,0.86444,0.678758,0.564281,0.82091,0.714449,0.700495,0.941254,0.993216,0.307612,0.692974,0.968705,0.989346,0.274569,0.699489,0.124776,0.0310465,0.585274,0.292869,0.379758,0.171127,0.292926,0.0293754,0.208218,0.711539,0.391318,0.745286,0.838499,0.512043,0.522794,0.98552,0.0435134,0.900158,0.267869,0.946519,0.700803,0.598286,0.692543,0.839942,0.0559445,0.365171,0.490381,0.21892,0.907594,0.475393,0.18162,0.88503,0.634361,0.849765,0.809282,0.440813,0.517431,0.236571,0.49345,0.749504,0.972331,0.970887,0.610518,0.538443,0.408534,0.521042,0.33139,0.658789,0.335111,0.161487,0.326258,0.73495,0.165299,0.876152,0.820535,0.433731,0.325041,0.614986,0.62127,0.535377,0.536414,0.476716,0.685844,0.279877,0.0257925,0.0578318,0.866421,0.890275,0.319627,0.346962,0.457998,0.35177,0.470815,0.289616,0.25134,0.859377,0.578659,0.420425,0.493295,0.483021,0.556372,0.20246,0.86731,0.299973,0.353041,0.798491,0.983684,0.0898555,0.256175,0.977571,0.905537,0.390222,0.877586,0.559996,0.65631,0.0148311,0.0280908,0.0231183,0.316671,0.596791,0.780566,0.38019,0.720976,0.925513,0.298909,0.829338,0.633752,0.65488,0.94187,0.832928,0.575398,0.462923,0.140315,0.615526,0.745992,0.125925,0.466986,0.466757,0.800842,0.662522,0.618299,0.542823,0.74168,0.0505199,0.441918,0.429164,0.322636,0.244883,0.389677,0.733436,0.194997,0.630944,0.0775059,0.782672,0.112488,0.208793,0.276614,0.066473,0.712524,0.434764,0.99992,0.872906,0.80758,0.829801,0.750879,0.0848185,0.00514036,0.507464,0.477509,0.215419,0.914542,0.0205713,0.245176,0.843794,0.278977,0.368526,0.899901,0.702761,0.324922,0.199567,0.103239,0.162374,0.00134939,0.661926,0.93882,0.608332,0.114578,0.978276,0.112101,0.218435,0.70261,0.133606,0.504679,0.345035,0.381569,0.982911,0.454807,0.575653,0.135438,0.52004,0.868739,0.106974,0.112215,0.994795,0.556039,0.950077,0.713028,0.928932,0.593638,0.99993,0.463055,0.697667,0.151338,0.807368,0.903739,0.0811113,0.0885518,0.969793,0.140778,0.371607,0.0914488,0.954096,0.294584,0.99384,0.778402,0.405477,0.677516,0.847221,0.48402,0.56776,0.970963,0.167219,0.579964,0.707897,0.779005,0.0779087,0.578694,0.460616,0.148029,0.417687,0.237012,0.998159,0.0176901,0.0634713,0.792887,0.332611,0.715767,0.34563,0.402723,0.546571,0.148554,0.49433,0.180902,0.796697,0.0523539,0.00205326,0.965809,0.880524,0.323524,0.0555819,0.979641,0.302558,0.681849,0.540233,0.300144,0.905927,0.895383,0.464855,0.645664,0.925929,0.100496,0.692539,0.00669712,0.1973,0.263245,0.50025,0.873109,0.392218,0.244342,0.338131,0.145913,0.743947,0.634674,0.57024,0.403225,0.794946,0.658778,0.576349,0.851132,0.419032,0.270979,0.076317,0.599946,0.717028,0.46534,0.465465,0.206962,0.567322,0.497881,0.579082,0.677844,0.347578,0.00417042,0.99156,0.28677,0.842262,0.940776,0.688497,0.803956,0.962706,0.896269,0.603986,0.437979,0.147868,0.177944,0.396578,0.0463318,0.639218,0.630308,0.981314,0.673852,0.462805,0.490588,0.201389,0.190974,0.391986,0.819002,0.105409,0.416432,0.11393,0.0576812,0.540568,0.231685,0.498561,0.437994,0.334587,0.413802,0.720724,0.671249,0.48106,0.843602,0.718342,0.183594,0.403038,0.638001,0.766395,0.905489,0.0452149,0.0238386,0.0747052,0.156829,0.219812,0.334602,0.618047,0.989793,0.613551,0.859353,0.181842,0.847161,0.230522,0.675819,0.548529,0.162332,0.00539988,0.0055989,0.841609,0.194166,0.705877,0.922227,0.590687,0.119355,0.799047,0.665657,0.531099,0.331412,0.353072,0.327914,0.25074,0.166113,0.573909,0.15411,0.950929,0.928272,0.565436,0.583875,0.0991534,0.579346,0.460389,0.665697,0.91921,0.0915747,0.899095,0.785172,0.876856,0.0586303,0.0497317,0.119628,0.642267,0.0358968,0.765975,0.601275,0.455644,0.194198,0.738616,0.123254,0.0173336,0.849857,0.915642,0.225108,0.145581,0.650335,0.220665,0.863843,0.459475,0.405453,0.203691,0.432182,0.990759,0.4596,0.674815,0.539546,0.143268,0.0908509,0.571481,0.727522,0.225944,0.616586,0.8538,0.0283282,0.945154,0.802928,0.304172,0.389809,0.889528,0.74413,0.772638,0.504765,0.191469,0.0803924,0.292509,0.87918,0.727786,0.589426,0.341025,0.209278,0.411188,0.298838,0.458805,0.860187,0.815875,0.932615,|0.531435,0.598467,0.236834,0.340734,0.665509,0.331619,0.208849,0.542947,0.296838,0.0217937,0.052211,0.462327,0.571741,0.227655,0.946711,0.0708583,0.224666,0.0480018,0.817981,0.241859,0.0072999,0.125186,0.471356,0.17553,0.763601,0.907362,0.0024808,0.0945409,0.906573,0.120674,0.545584,0.0892992,0.27876,0.210045,0.581789,0.227303,0.682841,0.646995,0.0788324,0.194239,0.249966,0.1943,0.0743746,0.311263,0.093799,0.795249,0.62346,0.714075,0.563834,0.994175,0.739766,0.219141,0.758114,0.396678,0.209013,0.000317216,0.966628,0.223458,0.552277,0.389085,0.186694,0.42307,0.946817,0.20385,0.398099,0.609981,0.0888625,0.0979292,0.0665362,0.971911,0.00676757,0.544296,0.204568,0.0675237,0.783793,0.302498,0.103139,0.133579,0.477488,0.0595841,0.598407,0.89282,0.0512536,0.868998,0.922269,0.145602,0.344217,0.633389,0.817978,0.464134,0.866363,0.81978,0.770967,0.784947,0.16922,0.951127,0.980468,0.589493,0.50927,0.656146,0.871981,0.989232,0.374625,0.498028,0.379248,0.532645,0.738591,0.255897,0.631867,0.233327,0.955651,0.470962,0.868245,0.791773,0.552306,0.72044,0.609707,0.729422,0.112657,0.19104,0.824434,0.842863,0.077161,0.55691,0.536274,0.507939,0.362719,0.934603,0.59506,0.410742,0.552527,0.461441,0.746586,0.604649,0.168103,0.983293,0.113547,0.753426,0.736177,0.42521,0.660637,0.399111,0.386998,0.30235,0.38708,0.526479,0.143752,0.0792297,0.783876,0.856026,0.251309,0.653908,0.925267,0.0418419,0.54459,0.806091,0.34074,0.0199605,0.0133214,0.757467,0.0146345,0.364106,0.926503,0.0483683,0.750324,0.381584,0.21055,0.268899,0.453468,0.958895,0.144121,0.572924,0.767787,0.743792,0.632395,0.310821,0.613717,0.517492,0.826765,0.890886,0.809802,0.376005,0.0688655,0.447612,0.97762,0.593596,0.27745,0.545497,0.98779,0.088167,0.404081,0.0685286,0.404153,0.285746,0.378818,0.421148,0.735873,0.418773,0.870105,0.607878,0.442944,0.505327,0.797922,0.806395,0.0335208,0.252965,0.728957,0.0358426,0.602692,0.0785914,0.316669,0.505132,0.0645045,0.346757,0.250259,0.235489,0.657516,0.114577,0.430764,0.340111,0.148149,0.26913,0.589412,0.872192,0.0764126,0.800679,0.359739,0.456084,0.476663,0.0987608,0.196317,0.810877,0.965852,0.535547,0.341834,0.92806,0.214169,0.670206,0.890496,0.519677,0.506717,0.306427,0.683264,0.743464,0.20727,0.566381,0.962506,0.328855,0.698843,0.884843,0.877374,0.246079,0.388232,0.623255,0.0207393,0.22078,0.358505,0.639409,0.603791,0.557719,0.109673,0.169502,0.391063,0.485784,0.0782519,0.225035,0.0447148,0.309132,0.362835,0.457756,0.72192,0.334894,0.444579,0.627474,0.319691,0.709543,0.482799,0.486708,0.808187,0.87649,0.254301,0.906763,0.0889912,0.221384,0.415016,0.181261,0.441849,0.519945,0.609888,0.102313,0.680504,0.113393,0.524018,0.25746,0.679209,0.296122,0.140697,0.979411,0.737075,0.0634199,0.806459,0.651423,0.476318,0.71048,0.250131,0.729301,0.84439,0.467892,0.226615,0.080504,0.495253,0.339677,0.559347,0.291924,0.245957,0.551601,0.567839,0.636663,0.366737,0.823928,0.656463,0.283179,0.51208,0.805861,0.185923,0.504172,0.711803,0.667519,0.447369,0.715714,0.864833,0.939118,0.104638,0.0152955,0.862795,0.397473,0.70706,0.265351,0.456047,0.592719,0.247922,0.0804511,0.187903,0.695553,0.338536,0.879921,0.985677,0.375353,0.277536,0.130547,0.175017,0.0687043,0.308841,0.5351,0.901208,0.544387,0.973845,0.74793,0.748148,0.127209,0.281391,0.0710287,0.475283,0.0282254,0.382289,0.956219,0.293344,0.570575,0.672156,0.513046,0.326071,0.992976,0.924488,0.741713,0.409859,0.25597,0.913875,0.53526,0.499527,0.651569,0.350686,0.781963,0.621879,0.145224,0.0336921,0.980697,0.842358,0.162311,0.0306535,0.990316,0.281595,0.376469,0.829027,0.749073,0.315612,0.91963,0.935643,0.769571,0.989893,0.690211,0.786584,0.112531,0.372161,0.00859487,0.243157,0.14699,0.947445,0.363937,0.452519,0.579215,0.694824,0.801671,0.890265,0.172011,0.839014,0.583072,0.0848071,0.430426,0.505236,0.134356,0.96255,0.812172,0.679941,0.464011,0.506254,0.267217,0.329366,0.458127,0.440728,0.107891,0.233198,0.596262,0.924246,0.363935,0.404622,0.0379156,0.538937,0.224961,0.863406,0.090799,0.0492923,0.750415,0.0934508,0.284398,0.287313,0.36276,0.0954489,0.66226,0.0721595,0.7526,0.034265,0.746257,0.186157,0.187697,0.870641,0.677709,0.658776,0.822304,0.143087,0.496521,0.446912,0.677451,0.0888996,0.675509,0.84468,0.108506,0.0316793,0.421629,0.11863,0.570907,0.97593,0.843203,0.704087,0.688366,0.765004,0.397322,0.555698,0.19581,0.882383,0.976167,0.47352,0.114825,0.424653,0.332652,0.645226,0.0805833,0.0237359,0.325147,0.520878,0.121046,0.457037,0.63517,0.431682,0.134972,0.232191,0.38658,0.270442,0.842798,0.622888,0.864037,0.0191934,0.369716,0.164151,0.284846,0.528339,0.719616,0.196021,0.949742,0.293864,0.6223,0.598291,0.246737,0.0773754,0.517951,0.925164,0.874969,0.27753,0.486989,0.116778,0.366715,0.15051,0.755197,0.676212,0.890939,0.447197,0.868761,0.43912,0.665535,0.627694,0.547061,0.302365,0.360132,0.48946,0.32181,0.357765,0.219053,0.226203,0.143721,0.529294,0.635187,0.568353,0.60819,0.26893,0.492195,0.242645,0.219405,0.617673,0.872349,0.765637,0.613089,0.0265943,0.810946,0.626918,0.719675,0.220996,0.102684,0.179393,0.509889,0.189879,0.268963,0.444671,0.146445,0.941005,0.631458,0.622243,0.6933,0.931035,0.765024,0.333703,0.937666,0.139696,0.630348,0.159522,0.398336,0.619531,0.57362,0.782397,0.280235,0.463025,0.0681241,0.686735,0.908775,0.138522,0.930829,0.403238,0.63001,0.188938,0.57409,0.0749424,0.273374,0.68894,0.67052,0.959723,0.0969173,0.832466,0.638736,0.44433,0.199305,0.812185,0.966608,0.125683,0.635307,0.923145,0.875303,0.528143,0.399374,0.314682,0.0338204,0.659263,0.355485,0.421962,0.950244,0.54718,0.905254,0.264039,0.584317,0.700168,0.677855,0.476271,0.532297,0.599607,0.517275,0.813782,0.552225,0.363407,0.373823,0.369531,0.0212219,0.894439,0.352826,0.331844,0.377856,0.399035,0.376562,0.438642,0.450872,0.489752,0.813234,0.868188,0.395339,0.423189,0.250776,0.383704,0.190769,0.455491,0.611383,0.694996,0.343493,0.897627,0.0992257,0.589375,0.364461,0.673024,0.871112,0.848535,0.386459,0.218802,0.927972,0.549541,0.366928,0.389259,0.860497,0.78456,0.858459,0.432722,0.215697,0.147793,0.0677851,0.754102,0.924712,0.904341,0.82022,0.553301,0.0835686,0.807866,0.692992,0.202031,0.927141,0.301587,0.343875,0.338679,0.12663,0.814126,0.150042,0.349,0.785578,0.76494,0.448336,0.454753,0.314559,0.821426,0.966618,0.316117,0.0384465,0.557302,0.299217,0.706144,0.659612,0.653248,0.561854,0.766905,0.641011,0.241105,0.946904,0.598245,0.134292,0.804689,0.160571,0.579293,0.80173,0.222116,0.87706,0.240914,0.203526,0.77484,0.0356485,0.521902,0.0863311,0.0852956,0.533264,0.885382,0.768904,0.911672,0.214327,0.95187,0.724988,0.972114,0.161788,0.92094,0.400954,0.794404,0.626065,0.179903,0.577436,0.100243,0.336509,0.45303,0.12977,0.260645,0.935824,0.781854,0.719658,0.0952415,0.732563,0.197259,0.400945,0.756548,0.11839,0.853398,0.703695,0.675044,0.168027,0.0669079,0.161693,0.955599,0.189601,0.224433,0.315324,0.974832,0.512311,0.47112,0.591749,0.424975,0.944166,0.493186,0.167329,0.177563,0.656556,0.108162,0.187172,0.639675,0.393632,0.0245965,0.617131,0.102153,0.595875,0.621196,0.916847,0.0252891,0.663464,0.957923,0.129201,0.692336,0.276812,0.342966,0.321163,0.804598,0.783958,0.554104,0.711242,0.795451,0.678161,0.505225,0.129136,0.121479,0.123415,0.612952,0.51875,0.893486,0.588029,0.479316,0.535018,0.975182,0.0618951,0.51881,0.263796,0.464486,0.964689,0.282012,0.171983,0.00154984,0.453154,0.734432,0.010735,0.9227,0.208232,0.488648,0.357293,0.676967,0.259232,0.757066,0.0436746,0.860137,0.666233,0.142441,0.12489,0.224493,0.00102443,0.786883,0.597896,0.979796,0.0616335,0.486935,0.459358,0.729853,0.918037,0.12953,0.00660634,0.859235,0.923406,0.188135,0.689894,0.437685,0.0814356,0.106008,0.155188,0.106971,0.965502,0.859832,0.256695,0.856248,0.919744,0.191852,0.627896,0.474012,0.955225,0.235313,0.203492,0.0792444,0.474717,0.619065,0.0388864,0.0113501,0.139992,0.629878,0.623626,0.969148,0.263621,0.558987,0.789801,0.677284,0.456224,0.542609,0.547817,0.346463,0.555091,0.0895765,0.920732,0.0575399,0.235137,0.511249,0.232717,0.112313,0.541982,0.421846,0.0321314,0.292597,0.794083,0.827666,0.451444,0.0577171,0.930784,0.281094,0.544832,0.186421,0.36818,0.228216,0.0117314,0.478871,0.106444,0.590591,0.854507,0.895862,0.689414,0.00458038,0.886658,0.581506,0.0436193,0.0938143,0.990456,0.484901,0.146192,0.0855346,0.906937,0.74541,0.493687,0.555029,0.285315,0.967246,0.035781,0.208808,0.570448,0.428243,0.447388,0.565677,0.878778,0.296261,0.0599092,0.948527,0.239819,0.45277,0.857194,0.613017,0.0838709,0.217777,0.219565,0.45224,0.189432,0.0889472,0.340099,0.392619,0.22863,0.640494,0.946888,0.493903,0.720166,0.175821,0.437943,0.837151,0.70637,0.604895,0.849278,0.249581,0.0569348,0.0830534,0.348763,0.894575,0.551351,0.105349,0.0519451,0.531198,0.745045,0.420726,0.259396,0.735545,0.229503,0.775104,0.616534,0.502587,0.147528,0.175119,0.553625,0.353793,0.186829,0.805042,0.219315,0.341606,0.0455874,0.453592,0.982706,0.961931,0.124275,0.457228,0.161466,0.255507,0.0881301,0.208083,0.807433,0.356323,0.763462,0.112666,0.228174,0.92246,0.310125,0.647111,0.478355,0.0267293,0.607757,0.59817,0.309327,|0.222391,0.171108,0.507076,0.716153,0.875125,0.551715,0.591222,0.323444,0.165223,0.673314,0.0742936,0.182751,0.941556,0.407988,0.860667,0.161066,0.283167,0.165873,0.773206,0.00251967,0.332517,0.456502,0.818202,0.513077,0.137125,0.149878,0.934436,0.156807,0.407951,0.949501,0.0065183,0.396567,0.947881,0.985763,0.267214,0.263122,0.0134516,0.482526,0.757338,0.828007,0.209724,0.0818538,0.467062,0.61607,0.669336,0.919918,0.26586,0.881107,0.510829,0.591807,0.157771,0.522581,0.47673,0.46718,0.710823,0.446615,0.501442,0.637657,0.976966,0.22594,0.958295,0.786691,0.837009,0.671807,0.368405,0.837464,0.670732,0.592527,0.315883,0.57079,0.615135,0.395891,0.119098,0.403387,0.935234,0.532925,0.482731,0.753339,0.649697,0.202019,0.662011,0.127321,0.377564,0.791234,0.156761,0.834797,0.117629,0.532852,0.956723,0.0972292,0.981297,0.188142,0.744142,0.0836477,0.610384,0.386162,0.553014,0.228837,0.941043,0.954645,0.624839,0.559576,0.65446,0.109134,0.667984,0.0218789,0.695279,0.859812,0.28048,0.970489,0.392712,0.120443,0.666904,0.630131,0.228892,0.271831,0.907595,0.65648,0.469759,0.508341,0.017237,0.0761617,0.544035,0.859925,0.319012,0.584734,0.20702,0.921778,0.889841,0.529478,0.31161,0.641616,0.504529,0.338625,0.74714,0.205977,0.998689,0.30068,0.873331,0.521051,0.207003,0.360148,0.385097,0.867041,0.578996,0.233083,0.711149,0.0456421,0.802174,0.164105,0.833403,0.554166,0.197823,0.513994,0.266336,0.665146,0.753825,0.833071,0.545926,0.237702,0.628498,0.443272,0.422121,0.83428,0.113711,0.231276,0.109724,0.330071,0.268485,0.263275,0.447281,0.627024,0.0532399,0.239644,0.781847,0.146137,0.320268,0.856144,0.446244,0.830383,0.657788,0.693344,0.520986,0.290954,0.195027,0.596802,0.185891,0.17688,0.704237,0.465214,0.987245,0.440678,0.357233,0.957643,0.333475,0.741378,0.670123,0.103491,0.7123,0.784237,0.657255,0.22657,0.35736,0.703754,0.824132,0.719287,0.484384,0.851016,0.797997,0.377124,0.836983,0.012927,0.334051,0.365885,0.0082469,0.0802674,0.826824,0.271533,0.563229,0.419801,0.458907,0.00247687,0.82156,0.361745,0.144344,0.518405,0.945278,0.158818,0.791947,0.684215,0.604866,0.103859,0.478864,0.512911,0.462349,0.949614,0.748403,0.942407,0.997438,0.0675716,0.0737818,0.519831,0.13876,0.878152,0.431735,0.239725,0.90292,0.207291,0.0498466,0.851638,0.34321,0.410901,0.487541,0.535896,0.702367,0.956773,0.778079,0.385245,0.569758,0.272477,0.78705,0.711868,0.00855953,0.0453951,0.121669,0.769607,0.195982,0.0675927,0.285523,0.340028,0.0281095,0.0770792,0.696931,0.996933,0.470926,0.44668,0.429712,0.776841,0.693441,0.0549173,0.382672,0.765142,0.00220084,0.23475,0.0504541,0.60664,0.72632,0.375234,0.80332,0.824213,0.807397,0.704635,0.230034,0.122335,0.041795,0.696723,0.601695,0.600389,0.687148,0.878315,0.143248,0.410797,0.697964,0.619335,0.720349,0.338812,0.687293,0.613186,0.153011,0.670758,0.557189,0.078631,0.729013,0.776302,0.623699,0.848021,0.606094,0.892253,0.647038,0.145279,0.796689,0.687427,0.442183,0.663239,0.600237,0.579624,0.422616,0.980412,0.801954,0.533946,0.677258,0.535583,0.323768,0.124944,0.978703,0.987935,0.952881,0.873833,0.925411,0.728003,0.218017,0.584874,0.98813,0.528902,0.270956,0.927171,0.384577,0.292161,0.387592,0.0554796,0.487836,0.281436,0.867778,0.0643929,0.792309,0.765194,0.454181,0.457788,0.215573,0.763926,0.559453,0.538077,0.66952,0.236269,0.744594,0.744343,0.222834,0.056711,0.399244,0.851707,0.605964,0.78893,0.24623,0.303062,0.365575,0.761491,0.118996,0.136809,0.275511,0.964047,0.804539,0.0273052,0.153662,0.378033,0.989114,0.0610254,0.664752,0.711558,0.131368,0.568024,0.34887,0.60412,0.0824025,0.579239,0.989384,0.445437,0.233354,0.833951,0.95911,0.925786,0.568482,0.857404,0.0376152,0.311937,0.541674,0.425572,0.0181856,0.491186,0.0101081,0.635201,0.048017,0.192755,0.0593265,0.230527,0.78926,0.829688,0.123533,0.46977,0.845459,0.693511,0.384781,0.727922,0.833438,0.128181,0.57205,0.0531706,0.41713,0.611099,0.171815,0.649002,0.573645,0.781157,0.54872,0.319784,0.194287,0.850788,0.0257899,0.767661,0.325145,0.316393,0.612971,0.0667056,0.604109,0.714601,0.16807,0.013932,0.166064,0.84655,0.275677,0.673182,0.709163,0.617315,0.343614,0.186014,0.718805,0.640427,0.183523,0.418183,0.217171,0.443091,0.0988116,0.775568,0.0197392,0.780267,0.415163,0.800023,0.00689125,0.225585,0.255441,0.691434,0.38042,0.807165,0.904325,0.40261,0.841605,0.733346,0.242358,0.385838,0.0564241,0.182025,0.810438,0.602737,0.855856,0.466293,0.93922,0.785748,0.464923,0.411106,0.757016,0.194234,0.923431,0.372079,0.592243,0.117953,0.402861,0.625711,0.629336,0.706055,0.99569,0.678775,0.322382,0.712064,0.971891,0.849676,0.644161,0.235328,0.31354,0.681338,0.465,0.671517,0.764296,0.588212,0.581992,0.335028,0.168463,0.574537,0.195446,0.316635,0.285411,0.339902,0.330036,0.804325,0.499588,0.431092,0.780607,0.638026,0.851193,0.216898,0.741218,0.0576575,0.78749,0.745177,0.870664,0.865618,0.895645,0.177612,0.313823,0.190437,0.150018,0.290033,0.553473,0.600403,0.76128,0.59106,0.203965,0.771653,0.371048,0.0693558,0.365672,0.0894054,0.195613,0.115372,0.909995,0.478302,0.97761,0.459569,0.0487749,0.882948,0.543508,0.22979,0.712697,0.479203,0.30691,0.884221,0.942331,0.113582,0.664316,0.940599,0.037286,0.805442,0.32367,0.612514,0.0335361,0.114824,0.709884,0.452884,0.854658,0.102455,0.299516,0.522612,0.526184,0.643183,0.596064,0.418125,0.734799,0.938679,0.86604,0.024235,0.449729,0.363757,0.861651,0.0874783,0.977519,0.591049,0.540545,0.332006,0.159613,0.954552,0.831452,0.258467,0.234812,0.794732,0.688918,0.306915,0.12299,0.155723,0.634033,0.733346,0.380129,0.60906,0.657704,0.5189,0.317918,0.484716,0.581181,0.0853237,0.230654,0.237888,0.583494,0.429445,0.168093,0.620267,0.493919,0.974165,0.654822,0.375537,0.475373,0.320161,0.186859,0.63505,0.103231,0.455541,0.889042,0.970863,0.183619,0.930066,0.752371,0.364311,0.948764,0.777455,0.390727,0.653117,0.360019,0.142086,0.442447,0.139628,0.777175,0.722461,0.77208,0.35875,0.209602,0.469758,0.644575,0.213412,0.305076,0.367954,0.344147,0.36262,0.663315,0.226437,0.236191,0.537468,0.113742,0.75856,0.114384,0.155917,0.472022,0.234309,0.555247,0.0891974,0.853004,0.504772,0.738045,0.189846,0.534576,0.455405,0.0704678,0.27645,0.0348852,0.580549,0.611827,0.668832,0.402622,0.43053,0.905682,0.0623142,0.0612644,0.260277,0.0384592,0.375285,0.830462,0.473144,0.443114,0.0101333,0.37491,0.482246,0.118812,0.752252,0.984601,0.149541,0.702469,0.413104,0.803162,0.634386,0.752473,0.338486,0.729178,0.607114,0.0992111,0.359596,0.583459,0.730285,0.0604109,0.813077,0.0193529,0.0502691,0.41959,0.486724,0.0946568,0.228769,0.174975,0.47115,0.868706,0.972859,0.249129,0.798518,0.809202,0.235238,0.886474,0.398224,0.891641,0.533306,0.477684,0.0686369,0.060519,0.435141,0.425759,0.607743,0.945186,0.256171,0.189347,0.411646,0.281321,0.16067,0.0981932,0.514911,0.0518739,0.610884,0.67999,0.656629,0.897918,0.575427,0.744807,0.617884,0.645696,0.232542,0.601236,0.874691,0.169829,0.0949851,0.896848,0.207513,0.968039,0.661612,0.090844,0.252539,0.328496,0.185565,0.0294213,0.250739,0.723231,0.804149,0.962477,0.0397186,0.884276,0.387327,0.0115363,0.616014,0.720997,0.605052,0.792131,0.210295,0.489887,0.737384,0.80301,0.36254,0.602932,0.0846842,0.506514,0.123777,0.16614,0.728765,0.281949,0.704602,0.114157,0.864617,0.979593,0.426104,0.586527,0.0840338,0.457729,0.966684,0.457462,0.789276,0.00674921,0.450781,0.738634,0.707713,0.419962,0.734693,0.494273,0.916414,0.68879,0.632126,0.447208,0.957325,0.0636141,0.254688,0.446714,0.378982,0.469516,0.728389,0.83752,0.951634,0.0646878,0.24813,0.180622,0.963707,0.283079,0.0484961,0.56782,0.378001,0.319809,0.292239,0.424993,0.363542,0.977914,0.677728,0.901638,0.382801,0.084306,0.176127,0.591712,0.896619,0.341196,0.525207,0.934221,0.462355,0.29265,0.194474,0.341015,0.165378,0.0377048,0.863365,0.640523,0.920781,0.286002,0.194403,0.947397,0.314436,0.85662,0.635018,0.527959,0.625253,0.382921,0.00782663,0.667232,0.714537,0.554462,0.0587059,0.473698,0.438998,0.12321,0.170161,0.0374286,0.832277,0.5211,0.735903,0.259286,0.120193,0.9343,0.0765669,0.0423421,0.321311,0.956137,0.562824,0.0559371,0.219283,0.173083,0.372219,0.482516,0.692094,0.574153,0.0857422,0.493263,0.842219,0.579103,0.672294,0.494463,0.650158,0.467931,0.734967,0.21957,0.835027,0.0783298,0.147757,0.625526,0.5487,0.97922,0.209431,0.609366,0.902526,0.167056,0.88642,0.0222358,0.778543,0.162257,0.706659,0.578444,0.767836,0.64451,0.839431,0.924836,0.307932,0.100538,0.550961,0.121508,0.0545924,0.649343,0.327917,0.774249,0.189657,0.383753,0.50502,0.0227501,0.0418041,0.452175,0.848547,0.7495,0.200489,0.248594,0.921708,0.320812,0.743986,0.591161,0.116533,0.892523,0.947044,0.411467,0.735525,0.241671,0.313648,0.86694,0.201412,0.353246,0.693462,0.711916,0.100252,0.278515,0.876092,0.826535,0.248181,0.217622,0.644,0.964356,0.00138217,0.416873,0.329942,0.989218,0.165124,0.622101,0.362799,0.0118908,0.802374,0.477908,0.0528085,0.469269,0.159012,0.290665,0.408997,0.728417,0.338249,0.232756,0.840692,0.616381,0.666319,0.767135,0.0943108,0.593563,0.919399,0.870868,0.829267,0.236881,0.754352,0.759149,0.205066,0.61934,0.362138,0.826302,0.449505,|0.610798,0.39787,0.0506892,0.439598,0.212014,0.108604,0.180918,0.281332,0.272868,0.236568,0.184289,0.442103,0.829812,0.233265,0.348717,0.76369,0.874992,0.59153,0.0674859,0.936912,0.244748,0.855995,0.0160822,0.0192414,0.228279,0.524056,0.978502,0.300954,0.0375264,0.19473,0.663198,0.615466,0.068335,0.587302,0.574426,0.545159,0.677745,0.397254,0.531062,0.180215,0.290032,0.866172,0.886652,0.311816,0.734648,0.273572,0.476861,0.120435,0.760974,0.0755127,0.518632,0.215733,0.251579,0.356912,0.691509,0.510332,0.0750324,0.132914,0.183633,0.709218,0.69216,0.281552,0.245153,0.548899,0.281922,0.897023,0.526946,0.845016,0.915186,0.288231,0.866287,0.787331,0.193307,0.434451,0.872248,0.762612,0.320967,0.613531,0.77304,0.601298,0.74528,0.619752,0.707143,0.595682,0.327371,0.585912,0.00435519,0.388831,0.729303,0.704022,0.067714,0.578105,0.169526,0.788025,0.696744,0.52428,0.999012,0.483344,0.532545,0.525205,0.507727,0.580127,0.590132,0.855631,0.782303,0.278243,0.790953,0.795777,0.112896,0.75545,0.893053,0.948568,0.138973,0.177487,0.572851,0.135749,0.59772,0.0265895,0.302504,0.0227485,0.525513,0.156499,0.482873,0.837449,0.0263984,0.246479,0.608817,0.131279,0.52685,0.938039,0.511879,0.931129,0.376211,0.846141,0.665956,0.486084,0.874991,0.0160474,0.331709,0.562038,0.826122,0.540203,0.442845,0.717482,0.194112,0.767444,0.6746,0.428506,0.451086,0.999286,0.201204,0.970613,0.213196,0.8086,0.859364,0.986947,0.591238,0.749329,0.150518,0.255547,0.521136,0.460134,0.332588,0.157747,0.598199,0.959791,0.565869,0.0754408,0.929723,0.0965158,0.485102,0.711154,0.640713,0.244216,0.1274,0.984268,0.890952,0.779509,0.0420932,0.288763,0.0495662,0.911421,0.328285,0.380366,0.91277,0.332774,0.30108,0.226038,0.980144,0.545643,0.254605,0.214276,0.44318,0.120381,0.353481,0.159982,0.835908,0.389934,0.582786,0.833333,0.813238,0.651937,0.559967,0.988091,0.128388,0.736486,0.651465,0.0964069,0.0426326,0.66989,0.890586,0.543375,0.816763,0.41905,0.6032,0.0692598,0.406797,0.877281,0.698748,0.0537915,0.518521,0.738306,0.30414,0.168482,0.84636,0.0271919,0.256196,0.150568,0.929706,0.417125,0.989517,0.355047,0.919134,0.301439,0.337449,0.799767,0.723338,0.91068,0.112269,0.149001,0.906366,0.858026,0.42019,0.646376,0.485207,0.0844299,0.466575,0.00347322,0.883331,0.818346,0.138529,0.767318,0.892259,0.136658,0.164043,0.688105,0.9148,0.28986,0.352642,0.190796,0.211513,0.441168,0.0518081,0.302794,0.992038,0.00521612,0.567453,0.812301,0.780406,0.281111,0.571415,0.844767,0.0906702,0.179032,0.504809,0.914298,0.841551,0.346237,0.182777,0.129174,0.192786,0.182364,0.164647,0.215534,0.0676609,0.565859,0.797742,0.316397,0.333309,0.721903,0.518487,0.737199,0.51366,0.930019,0.295637,0.50628,0.889236,0.230818,0.295529,0.318856,0.0122617,0.17751,0.0151092,0.584252,0.62048,0.0863096,0.259261,0.478875,0.97852,0.240494,0.4284,0.112285,0.617077,0.570619,0.511369,0.221026,0.601143,0.991167,0.279674,0.0531074,0.381726,0.759243,0.988744,0.34318,0.205964,0.556475,0.630567,0.904101,0.129212,0.962721,0.306092,0.721976,0.802852,0.393496,0.134956,0.422229,0.287546,0.525524,0.62063,0.431705,0.651518,0.220367,0.277424,0.322806,0.589026,0.678097,0.342198,0.380283,0.788384,0.448311,0.8711,0.210463,0.0138586,0.177938,0.191903,0.449561,0.327624,0.552231,0.282558,0.968187,0.861378,0.919955,0.802173,0.876687,0.942453,0.0249203,0.957789,0.629444,0.068509,0.740365,0.974457,0.855812,0.296467,0.400519,0.343192,0.556512,0.447991,0.186192,0.0444872,0.520068,0.0996711,0.987856,0.0715969,0.37598,0.0532588,0.596081,0.473588,0.925062,0.857363,0.24444,0.78041,0.784169,0.305257,0.329427,0.231181,0.832809,0.0469863,0.623474,0.720591,0.842733,0.526367,0.322685,0.70645,0.578291,0.209613,0.462306,0.621325,0.57203,0.998612,0.856382,0.859281,0.625194,0.767105,0.687594,0.806473,0.779975,0.800877,0.570006,0.886058,0.0999655,0.532712,0.465047,0.541894,0.441246,0.913342,0.820831,0.648367,0.39762,0.14295,0.422241,0.599416,0.216468,0.58315,0.195085,0.975997,0.180747,0.875751,0.497579,0.692641,0.988146,0.567388,0.285839,0.596446,0.864682,0.4029,0.510351,0.250169,0.917372,0.829953,0.0261717,0.464219,0.277944,0.336735,0.457204,0.130824,0.613054,0.571155,0.342795,0.235939,0.610482,0.779341,0.0833435,0.375021,0.44458,0.565887,0.827644,0.424808,0.386516,0.243727,0.486516,0.0857041,0.804162,0.364145,0.308836,0.615822,0.507297,0.266503,0.288818,0.212124,0.269467,0.852781,0.517176,0.794175,0.894711,0.803913,0.453353,0.699738,0.23919,0.561016,0.277254,0.572287,0.215519,0.823013,0.473858,0.907048,0.748701,0.0954093,0.424276,0.0649195,0.0599558,0.641013,0.5161,0.219025,0.752469,0.320374,0.132101,0.804215,0.296361,0.985854,0.365281,0.995661,0.747087,0.993334,0.660403,0.0209008,0.494069,0.921087,0.374366,0.225169,0.197103,0.159591,0.939237,0.792413,0.798599,0.265707,0.706455,0.924267,0.957043,0.868113,0.359686,0.520217,0.453441,0.507171,0.209531,0.738189,0.848775,0.217269,0.0429429,0.227425,0.493978,0.274113,0.778728,0.0502964,0.578122,0.273459,0.751463,0.882948,0.72085,0.573575,0.136125,0.0143408,0.642498,0.0654736,0.494204,0.656885,0.875774,0.26308,0.637492,0.320924,0.95798,0.0116355,0.200666,0.164601,0.443569,0.108712,0.901015,0.0987425,0.228738,0.426069,0.774906,0.922503,0.429239,0.557093,0.355717,0.326205,0.993293,0.467599,0.985714,0.550554,0.611253,0.666279,0.340356,0.66617,0.980064,0.987727,0.249446,0.0503479,0.52893,0.345174,0.701524,0.759352,0.245687,0.0721633,0.300804,0.704423,0.168677,0.1766,0.991143,0.597909,0.419403,0.660586,0.534674,0.945225,0.569959,0.817157,0.77746,0.926902,0.548651,0.345788,0.947695,0.442633,0.908162,0.357773,0.356969,0.250298,0.268631,0.546926,0.812493,0.34205,0.351681,0.94612,0.633182,0.137312,0.298642,0.161459,0.467165,0.595292,0.512787,0.0882892,0.394345,0.797706,0.682779,0.243845,0.30293,0.748131,0.0694356,0.794977,0.96017,0.932213,0.471076,0.585928,0.219201,0.23843,0.186011,0.0917227,0.218347,0.0173412,0.302276,0.624665,0.95707,0.369771,0.115659,0.0636418,0.921373,0.316642,0.329196,0.629003,0.320577,0.752268,0.455529,0.636635,0.749663,0.217735,0.441816,0.0384394,0.697225,0.0144755,0.163286,0.32439,0.782489,0.556347,0.0531494,0.580975,0.389709,0.397179,0.647109,0.844151,0.845059,0.881315,0.697503,0.247985,0.360812,0.45726,0.676422,0.558095,0.99793,0.31079,0.636824,0.464435,0.183378,0.150745,0.00359911,0.357056,0.892589,0.655866,0.614472,0.599735,0.759985,0.473442,0.199797,0.24876,0.209912,0.322648,0.261836,0.695306,0.788054,0.101927,0.881816,0.912167,0.940875,0.16883,0.932296,0.675365,0.584047,0.860471,0.669519,0.615509,0.788981,0.0120758,0.373512,0.940432,0.909928,0.452893,0.326173,0.961742,0.822228,0.0666887,0.190572,0.828002,0.745696,0.442385,0.936157,0.712657,0.363164,0.208774,0.45838,0.407946,0.680542,0.812305,0.393183,0.993192,0.356224,0.479934,0.0547386,0.939713,0.609429,0.658775,0.88234,0.436719,0.641728,0.78531,0.685717,0.286716,0.214861,0.317379,0.804091,0.910655,0.891691,0.457714,0.595539,0.472766,0.168929,0.420783,0.72631,0.508022,0.49057,0.519459,0.0774761,0.541702,0.374908,0.844934,0.404203,0.202372,0.69859,0.131704,0.0290565,0.238782,0.341853,0.748543,0.271738,0.594727,0.820215,0.438906,0.0294018,0.0204347,0.53435,0.518151,0.839221,0.693778,0.886265,0.516125,0.980746,0.99325,0.451084,0.73869,0.12207,0.333307,0.728687,0.374763,0.11463,0.758543,0.889901,0.42959,0.450391,0.556469,0.633076,0.805285,0.900064,0.344241,0.049073,0.20027,0.20187,0.810621,0.397801,0.516044,0.290605,0.0231069,0.534762,0.398007,0.731407,0.639932,0.108833,0.592195,0.0225438,0.864517,0.282377,0.384043,0.0654796,0.360099,0.482796,0.956274,0.000289679,0.867404,0.933345,0.142954,0.421719,0.217987,0.767532,0.555434,0.0192789,0.547136,0.0583779,0.126865,0.0830563,0.712939,0.458561,0.395962,0.441688,0.0230522,0.184106,0.626364,0.263541,0.677607,0.237743,0.0765364,0.559278,0.433188,0.998798,0.476765,0.731667,0.13055,0.997893,0.486932,0.901955,0.0804434,0.39336,0.478425,0.929519,0.414577,0.320944,0.833722,0.562118,0.831756,0.549535,0.854396,0.543101,0.806045,0.417686,0.49876,0.104029,0.954387,0.457589,0.344513,0.91667,0.239802,0.392066,0.328983,0.624907,0.169239,0.56256,0.42925,0.935468,0.927466,0.771535,0.614913,0.851075,0.286884,0.696612,0.848549,0.565814,0.508468,0.0513818,0.478761,0.416694,0.326644,0.0802463,0.97627,0.676911,0.725403,0.0119187,0.542743,0.693426,0.782277,0.707601,0.339467,0.967585,0.647789,0.407293,0.0271397,0.68069,0.664317,0.552632,0.44851,0.603966,0.780707,0.120962,0.221577,0.826175,0.258529,0.428974,0.508626,0.687134,0.944332,0.597335,0.947228,0.0808974,0.00581551,0.221111,0.239477,0.435448,0.436455,0.738205,0.0235413,0.137255,0.0249589,0.0979384,0.0449166,0.0704364,0.468718,0.694181,0.940788,0.102421,0.586416,0.865449,0.974707,0.441365,0.99746,0.516272,0.732753,0.298658,0.594249,0.704201,0.741923,0.424492,0.082046,0.20455,0.122707,0.190028,0.559364,0.846879,0.57384,0.800075,0.270062,0.205332,0.748948,0.973776,0.418644,0.146075,0.0833541,0.00615436,0.17561,0.238995,0.557986,0.894744,0.169136,0.773973,0.676116,0.898579,0.848238,0.514165,0.136389,0.895304,0.691738,0.159404,0.707771,0.762255,0.23132,0.063232,0.732446,0.913397,|0.257772,0.525537,0.760122,0.818382,0.751421,0.48266,0.558413,0.797718,0.744043,0.674958,0.707645,0.807048,0.704639,0.514898,0.949418,0.191516,0.627359,0.503716,0.00407189,0.5563,0.994093,0.650508,0.782825,0.214189,0.120849,0.241133,0.614914,0.1099,0.416113,0.384471,0.1826,0.935494,0.266593,0.0245006,0.121504,0.531532,0.0855759,0.723384,0.893864,0.545374,0.707529,0.798927,0.862558,0.238011,0.185314,0.331639,0.807485,0.120467,0.272936,0.218701,0.287331,0.836754,0.156733,0.0473208,0.886685,0.586616,0.833114,0.536331,0.0104881,0.883239,0.227018,0.149386,0.176672,0.188148,0.0326996,0.614615,0.563492,0.858953,0.27321,0.987925,0.386913,0.561515,0.361324,0.458717,0.518174,0.568291,0.386461,0.92894,0.933958,0.357291,0.0799087,0.536001,0.362053,0.0707134,0.596799,0.36656,0.954099,0.999806,0.684166,0.501622,0.248926,0.196239,0.197329,0.367794,0.804511,0.636374,0.168082,0.215833,0.0897295,0.292795,0.879149,0.97886,0.272241,0.624165,0.30304,0.859422,0.43697,0.919446,0.331935,0.999546,0.822161,0.314467,0.0252686,0.495589,0.0598623,0.00603926,0.635975,0.709681,0.725922,0.84615,0.959149,0.160985,0.819795,0.932706,0.0395804,0.89946,0.0491968,0.46469,0.0304379,0.675406,0.656457,0.921281,0.875436,0.152928,0.358647,0.534895,0.385755,0.281877,0.892003,0.81522,0.562911,0.43104,0.542113,0.671049,0.949983,0.614858,0.985615,0.0109591,0.924872,0.771715,0.792882,0.338981,0.520705,0.313539,0.772162,0.172017,0.982483,0.870541,0.910709,0.735825,0.769845,0.749718,0.565416,0.532643,0.692711,0.408368,0.299691,0.252774,0.741892,0.0385746,0.372702,0.77126,0.862936,0.827537,0.995995,0.964922,0.541442,0.5353,0.0834239,0.580389,0.868561,0.506964,0.718214,0.86751,0.467861,0.402932,0.982515,0.0719761,0.375207,0.700013,0.298375,0.900022,0.87248,0.527963,0.607914,0.700393,0.771098,0.501722,0.678006,0.0930454,0.731096,0.460947,0.347944,0.075542,0.546544,0.661064,0.602058,0.246122,0.369932,0.963413,0.687616,0.748861,0.228371,0.995476,0.906577,0.948769,0.973031,0.684413,0.269109,0.803167,0.802944,0.716971,0.498749,0.85844,0.609129,0.28081,0.548465,0.482588,0.953515,0.834086,0.0940737,0.381639,0.286181,0.579622,0.353689,0.557672,0.0818506,0.989901,0.279025,0.867029,0.713883,0.93396,0.684478,0.34222,0.165635,0.364568,0.722376,0.562838,0.337619,0.398449,0.825164,0.520735,0.369396,0.920164,0.910008,0.364674,0.957177,0.672177,0.251419,0.179445,0.782655,0.685398,0.296456,0.677916,0.34527,0.502678,0.777562,0.549258,0.238142,0.801538,0.299904,0.389678,0.31628,0.479084,0.436693,0.7107,0.657663,0.0642766,0.113811,0.890887,0.308063,0.869556,0.62132,0.761564,0.736595,0.766517,0.710384,0.536564,0.793618,0.759368,0.626901,0.352824,0.7632,0.7116,0.0924875,0.765013,0.764072,0.666686,0.422696,0.447422,0.612455,0.771004,0.508572,0.497911,0.58701,0.35068,0.237387,0.726165,0.23818,0.737251,0.302388,0.772609,0.404327,0.699045,0.0619597,0.18291,0.410942,0.125178,0.0484767,0.300251,0.262881,0.542105,0.43856,0.672501,0.891463,0.848063,0.858272,0.797926,0.191544,0.59939,0.662026,0.649337,0.871048,0.0593773,0.0394437,0.437227,0.540119,0.803104,0.776035,0.053544,0.346367,0.643535,0.757016,0.305795,0.499197,0.126999,0.0352775,0.61524,0.105497,0.746514,0.111102,0.120984,0.443513,0.483503,0.348891,0.945994,0.45373,0.0756498,0.786095,0.255206,0.441123,0.77758,0.68075,0.268836,0.0572037,0.138772,0.951389,0.610771,0.598576,0.00693536,0.528585,0.465417,0.395473,0.448209,0.057502,0.335299,0.543963,0.365669,0.429885,0.989612,0.258431,0.964806,0.331564,0.79982,0.11473,0.102614,0.433592,0.00758404,0.840748,0.0569782,0.108981,0.829452,0.293417,0.616815,0.28135,0.455208,0.830302,0.55332,0.880669,0.755919,0.749671,0.110439,0.479144,0.618911,0.76511,0.491555,0.328368,0.461166,0.0462542,0.073122,0.206632,0.00811994,0.0508328,0.409942,0.31553,0.995193,0.0555897,0.524681,0.169444,0.735034,0.425258,0.46846,0.699326,0.106304,0.134512,0.781712,0.829896,0.670386,0.460925,0.508202,0.787545,0.694703,0.598963,0.231041,0.766217,0.482926,0.460927,0.878584,0.687923,0.637131,0.758177,0.478404,0.0664388,0.0371391,0.207323,0.754254,0.0380464,0.576551,0.653193,0.589492,0.805616,0.887093,0.513247,0.42942,0.124143,0.502947,0.834584,0.242768,0.921833,0.119645,0.148362,0.396923,0.392604,0.699395,0.911473,0.646612,0.596859,0.342564,0.558674,0.68756,0.902627,0.687291,0.0430554,0.775669,0.582951,0.103152,0.934606,0.701295,0.683538,0.863809,0.118456,0.392456,0.500045,0.712378,0.251655,0.0914896,0.632311,0.00401586,0.73349,0.861395,0.614487,0.506305,0.88644,0.916576,0.772675,0.441428,0.454831,0.0935924,0.129356,0.0715205,0.0827638,0.624699,0.780593,0.16844,0.0327313,0.947554,0.488288,0.443453,0.875649,0.437736,0.359905,0.685077,0.0905421,0.46048,0.230382,0.481876,0.58285,0.819262,0.943005,0.787379,0.038318,0.74629,0.120762,0.373513,0.730651,0.365082,0.890204,0.0220287,0.12374,0.0111693,0.530645,0.996082,0.218367,0.774795,0.628532,0.10247,0.445578,0.215684,0.0624937,0.289237,0.710506,0.361669,0.5491,0.949019,0.184229,0.285979,0.528797,0.498572,0.887876,0.199699,0.68487,0.645989,0.247771,0.853325,0.579713,0.998468,0.817993,0.123971,0.975608,0.74187,0.929761,0.577496,0.634344,0.154242,0.666154,0.334364,0.847783,0.0580636,0.319402,0.0288956,0.75926,0.126029,0.216682,0.695378,0.0563846,0.678649,0.461244,0.259694,0.967408,0.284331,0.213427,0.997231,0.551544,0.475888,0.396119,0.987954,0.172326,0.868863,0.743424,0.0652433,0.944594,0.373183,0.691002,0.947902,0.397918,0.40269,0.901105,0.293655,0.975246,0.66015,0.780779,0.0880184,0.819641,0.45137,0.0878485,0.662515,0.973171,0.369336,0.554412,0.180909,0.755449,0.55594,0.137318,0.0852593,0.641089,0.821879,0.000602782,0.666962,0.915076,0.045765,0.330932,0.893203,0.57164,0.399488,0.172688,0.506831,0.0927645,0.258145,0.921322,0.563579,0.85157,0.0273669,0.717504,0.0972775,0.103038,0.137096,0.952296,0.996061,0.219835,0.259349,0.337846,0.631031,0.953351,0.823476,0.359098,0.549422,0.352804,0.838999,0.106488,0.744344,0.412532,0.418284,0.458732,0.729457,0.508274,0.709493,0.592146,0.502966,0.0516642,0.33757,0.291288,0.196879,0.19686,0.137701,0.924904,0.497471,0.0167375,0.228782,0.608306,0.524127,0.120627,0.799965,0.476552,0.894247,0.188771,0.366395,0.486643,0.362772,0.226127,0.124341,0.453048,0.70898,0.964069,0.620092,0.122779,0.0351369,0.216421,0.266677,0.130546,0.901432,0.46412,0.497152,0.305351,0.605124,0.38223,0.356884,0.422053,0.170494,0.395761,0.486789,0.688728,0.359203,0.333142,0.957221,0.157557,0.251826,0.110955,0.252417,0.951052,0.412471,0.138483,0.271691,0.988509,0.222286,0.198043,0.541958,0.334006,0.613883,0.198729,0.819358,0.766151,0.871031,0.378544,0.347548,0.512043,0.854483,0.441491,0.187195,0.310396,0.979512,0.14833,0.749201,0.199557,0.148683,0.687582,0.785258,0.848765,0.423472,0.907393,0.66624,0.0027768,0.591172,0.593589,0.317591,0.750073,0.977195,0.62884,0.489359,0.356837,0.0516468,0.408799,0.398751,0.862138,0.32998,0.648228,0.252161,0.878326,0.183641,0.923396,0.356627,0.505336,0.0227891,0.458735,0.379127,0.391982,0.111171,0.247133,0.685353,0.627091,0.942215,0.199847,0.329745,0.223702,0.451574,0.806705,0.296829,0.880389,0.472604,0.775727,0.468723,0.294313,0.206836,0.64601,0.964942,0.36107,0.932197,0.158486,0.896352,0.803905,0.523611,0.26147,0.432914,0.905956,0.9589,0.945574,0.689283,0.580482,0.41858,0.481185,0.982355,0.62754,0.557973,0.821338,0.203406,0.698779,0.508637,0.521511,0.140053,0.60099,0.662129,0.229393,0.866077,0.509839,0.28861,0.346721,0.520816,0.389359,0.358655,0.950468,0.996549,0.216513,0.943564,0.170218,0.15642,0.654917,0.0607027,0.609013,0.0915897,0.577307,0.216373,0.375877,0.557172,0.520658,0.492659,0.302472,0.283376,0.482781,0.931951,0.834435,0.187414,0.208644,0.559365,0.549413,0.713803,0.174437,0.624389,0.909215,0.281018,0.46332,0.129635,0.605659,0.257277,0.0508764,0.521613,0.760518,0.595051,0.202541,0.578261,0.659345,0.892923,0.873205,0.949752,0.544667,0.211674,0.912953,0.676346,0.955554,0.683049,0.164059,0.972928,0.860325,0.395794,0.14205,0.167172,0.0476352,0.747981,0.193905,0.690038,0.110088,0.202258,0.813975,0.113804,0.776679,0.636839,0.41575,0.429373,0.774078,0.754257,0.407198,0.0064162,0.21192,0.237243,0.984402,0.124164,0.88204,0.663306,0.378545,0.196698,0.748804,0.25984,0.580177,0.290613,0.381066,0.658852,0.065053,0.879657,0.192535,0.556124,0.344135,0.919414,0.484944,0.146078,0.214729,0.490848,0.961846,0.202488,0.00572258,0.632747,0.23916,0.0433789,0.487293,0.462499,0.895859,0.565749,0.560611,0.689598,0.299659,0.679638,0.307301,0.156859,0.764801,0.13852,0.571591,0.272983,0.0739647,0.172726,0.882566,0.5161,0.625794,0.728398,0.328722,0.479562,0.598171,0.425056,0.29289,0.416424,0.960829,0.213797,0.1804,0.877544,0.169234,0.353793,0.647973,0.880596,0.156863,0.645321,0.0881839,0.789171,0.231183,0.52478,0.536633,0.0285065,0.450898,0.375143,0.787036,0.204558,0.123697,0.587433,0.787143,0.191359,0.767967,0.934408,0.593076,0.257067,0.192307,0.128516,0.595756,0.157078,0.0504689,0.381944,0.369783,0.207937,0.711062,0.140093,0.806927,0.793996,0.415101,0.685275,0.653151,0.0476804,0.291406,0.855348,0.220098,0.128037,0.0603113,0.898288,0.313035,0.394501,0.153606,0.72308,|0.653297,0.519286,0.854261,0.369592,0.926326,0.0271888,0.182544,0.0390111,0.456164,0.300248,0.575621,0.94697,0.0594031,0.587408,0.212677,0.576481,0.370486,0.333315,0.908767,0.338081,0.61663,0.348492,0.699507,0.754135,0.716233,0.0496663,0.571648,0.815402,0.886821,0.0802097,0.00800341,0.243654,0.416335,0.59327,0.797216,0.268012,0.396345,0.243709,0.349303,0.305539,0.071763,0.564158,0.0815811,0.598961,0.155624,0.874721,0.296131,0.490158,0.434401,0.517821,0.802334,0.0489827,0.30465,0.631486,0.583552,0.776866,0.0517214,0.053756,0.25208,0.680437,0.956379,0.399049,0.573678,0.837033,0.832521,0.282931,0.545207,0.716674,0.761979,0.50544,0.632856,0.175544,0.150417,0.00269043,0.253196,0.389935,0.1993,0.298565,0.865761,0.110779,0.719808,0.390147,0.925273,0.486313,0.952079,0.338802,0.822365,0.840106,0.521628,0.156054,0.561423,0.788064,0.850424,0.593434,0.344742,0.910165,0.93501,0.29577,0.814575,0.989583,0.168689,0.709085,0.656854,0.834228,0.899975,0.722989,0.99019,0.0129768,0.398733,0.183081,0.442719,0.647233,0.0236594,0.561405,0.648673,0.571926,0.948663,0.827926,0.239015,0.439867,0.323205,0.126774,0.132995,0.232943,0.140732,0.537453,0.895981,0.461233,0.146706,0.175578,0.440188,0.954936,0.25738,0.185649,0.38982,0.420792,0.0642034,0.0228016,0.611289,0.726311,0.0169926,0.881611,0.802425,0.706031,0.573029,0.603693,0.653259,0.757021,0.668095,0.122866,0.604375,0.591708,0.40794,0.234651,0.948813,0.820741,0.825446,0.917722,0.735566,0.123909,0.989459,0.443576,0.111334,0.285922,0.264628,0.966565,0.10746,0.995678,0.645759,0.492931,0.143697,0.328978,0.00230831,0.661169,0.231825,0.967079,0.732685,0.982246,0.276349,0.62587,0.766686,0.791058,0.369729,0.458694,0.39384,0.402068,0.193899,0.186967,0.285963,0.988437,0.684492,0.896367,0.792101,0.280919,0.392495,0.521679,0.384672,0.0968171,0.292541,0.408328,0.178087,0.649042,0.504489,0.340696,0.465195,0.793469,0.156757,0.990071,0.0245212,0.209743,0.184853,0.825482,0.622248,0.657619,0.149846,0.269217,0.445998,0.0949906,0.124242,0.726553,0.949565,0.426263,0.925137,0.384058,0.528537,0.654591,0.889741,0.76737,0.870186,0.985186,0.80537,0.305544,0.858284,0.422301,0.352801,0.919396,0.773631,0.467378,0.270285,0.273884,0.774162,0.86619,0.204786,0.881165,0.313612,0.372059,0.983432,0.166566,0.853638,0.763171,0.928402,0.409269,0.960268,0.383158,0.438491,0.601664,0.636025,0.811473,0.678143,0.928109,0.076367,0.388143,0.0735968,0.678504,0.258234,0.285093,0.502153,0.216567,0.355053,0.970417,0.288399,0.0531866,0.904152,0.983432,0.984497,0.26703,0.119664,0.36282,0.544282,0.72914,0.0220404,0.27518,0.740066,0.7251,0.445835,0.541838,0.0235962,0.605921,0.141362,0.512942,0.579598,0.533455,0.670948,0.632777,0.105044,0.131877,0.477854,0.781801,0.325611,0.408376,0.149959,0.274388,0.405033,0.412088,0.336421,0.657801,0.612454,0.73061,0.0457574,0.184244,0.805395,0.898064,0.374131,0.866923,0.99532,0.990197,0.556807,0.178676,0.667937,0.782572,0.371462,0.709741,0.490523,0.334163,0.0293763,0.907814,0.689592,0.332532,0.501833,0.570042,0.0910606,0.940081,0.0499474,0.243008,0.428629,0.250371,0.98567,0.298238,0.520432,0.443816,0.33833,0.693866,0.868469,0.756016,0.732053,0.830272,0.694232,0.0354041,0.562397,0.682917,0.738885,0.158442,0.796144,0.686829,0.385802,0.710293,0.918999,0.613262,0.764154,0.450271,0.200976,0.599122,0.599792,0.639629,0.374346,0.537826,0.243396,0.884291,0.578892,0.636921,0.000276506,0.770109,0.151249,0.26706,0.339069,0.375845,0.289583,0.055132,0.919362,0.905492,0.0209882,0.947295,0.836805,0.541329,0.607294,0.847411,0.284754,0.151138,0.453472,0.181213,0.206789,0.225967,0.407651,0.677535,0.0300714,0.458407,0.888414,0.511564,0.0130986,0.626006,0.00584793,0.0769396,0.218769,0.769089,0.832226,0.0830398,0.690942,0.168181,0.460283,0.473397,0.795673,0.0811877,0.945992,0.985868,0.280891,0.702893,0.438869,0.888546,0.441976,0.967336,0.589694,0.315972,0.24169,0.425543,0.54163,0.1799,0.501866,0.345845,0.451153,0.82185,0.805916,0.535054,0.0770499,0.753323,0.993652,0.397487,0.561,0.750229,0.685212,0.274219,0.824537,0.452006,0.781816,0.567526,0.337899,0.410839,0.981779,0.686877,0.706497,0.295949,0.803107,0.968936,0.647039,0.459744,0.149065,0.980009,0.34656,0.759761,0.257751,0.905639,0.771867,0.509559,0.941851,0.410983,0.960935,0.353337,0.622033,0.215444,0.887177,0.17249,0.877719,0.256265,0.880038,0.69659,0.446348,0.958899,0.0013898,0.538517,0.273595,0.300093,0.285771,0.291816,0.820151,0.986932,0.224655,0.0704838,0.926727,0.543514,0.967471,0.126694,0.660665,0.233862,0.987713,0.779194,0.995405,0.542773,0.229827,0.509844,0.0333775,0.832398,0.625368,0.643352,0.278753,0.954661,0.338142,0.44423,0.579237,0.00825286,0.478195,0.66031,0.580667,0.487876,0.918839,0.173312,0.041273,0.878339,0.113377,0.290412,0.703059,0.929128,0.811382,0.487672,0.0565485,0.580646,0.658602,0.467912,0.539415,0.0758557,0.574784,0.388067,0.705959,0.964371,0.63543,0.838798,0.0948511,0.218579,0.225556,0.355009,0.587384,0.0367591,0.908915,0.376708,0.622648,0.523965,0.516652,0.605633,0.299872,0.660401,0.0258418,0.345579,0.256881,0.581352,0.22522,0.575206,0.733369,0.246852,0.997804,0.900478,0.174702,0.646571,0.597682,0.280656,0.133913,0.93826,0.360379,0.833592,0.216785,0.517368,0.819969,0.0279752,0.0757321,0.61446,0.0290733,0.758432,0.780117,0.890282,0.219627,0.672344,0.637545,0.904846,0.794755,0.254997,0.28663,0.0165008,0.0839702,0.128163,0.889602,0.664841,0.0386455,0.963575,0.878246,0.0309439,0.00597346,0.903839,0.286298,0.838241,0.505723,0.107467,0.826772,0.326704,0.627248,0.110231,0.359253,0.763471,0.10165,0.919789,0.818831,0.183596,0.601497,0.328886,0.313271,0.580381,0.939022,0.653411,0.532173,0.896696,0.64205,0.104184,0.604386,0.556307,0.925758,0.654019,0.322912,0.721473,0.811998,0.37242,0.81599,0.955358,0.0192848,0.303142,0.28991,0.593546,0.331118,0.450811,0.466123,0.436106,0.78479,0.154105,0.023879,0.860199,0.274737,0.67144,0.359568,0.52146,0.252062,0.201653,0.050127,0.864618,0.342624,0.73933,0.0685075,0.649939,0.936933,0.380066,0.217936,0.308373,0.489747,0.143287,0.877178,0.206723,0.19102,0.799979,0.289819,0.631451,0.21766,0.964551,0.957772,0.445516,0.649076,0.89886,4.17233e-06,0.398966,0.707539,0.0526135,0.0776438,0.193674,0.91039,0.644939,0.210159,0.952266,0.110976,0.135031,0.333793,0.656546,0.571701,0.493704,0.650125,0.570247,0.236033,0.0362196,0.861468,0.325438,0.242537,0.0549016,0.979791,0.185179,0.445445,0.784734,0.10873,0.5365,0.704741,0.079956,0.658999,0.687073,0.730436,0.93469,0.360859,0.963063,0.331722,0.257697,0.704169,0.926732,0.802428,0.69018,0.674879,0.816518,0.638669,0.56485,0.116171,0.649875,0.605435,0.095884,0.633264,0.748386,0.108241,0.725124,0.0708396,0.047214,0.838695,0.636388,0.204186,0.161725,0.719932,0.788368,0.368323,0.692254,0.420111,0.292229,0.408338,0.834276,0.0488799,0.299022,0.146671,0.580582,0.33942,0.365694,0.147942,0.432395,0.888054,0.27144,0.864381,0.335912,0.260731,0.566575,0.107246,0.318026,0.635537,0.379168,0.212711,0.451673,0.449846,0.688996,0.156051,0.694651,0.318363,0.395919,0.694504,0.910082,0.365844,0.912641,0.766508,0.302729,0.469769,0.35823,0.653208,0.0134824,0.0990334,0.330669,0.998686,0.589484,0.144376,0.861618,0.389424,0.363967,0.827779,0.920965,0.979909,0.803418,0.594872,0.706886,0.466865,0.2352,0.175884,0.968344,0.0577061,0.0527064,0.4214,0.734057,0.634486,0.178436,0.293796,0.677197,0.566858,0.635556,0.534459,0.38804,0.0559298,0.882533,0.62914,0.356206,0.597241,0.718493,0.679696,0.619798,0.220966,0.158291,0.610199,0.178839,0.0156252,0.0869915,0.460196,0.176141,0.728557,0.11399,0.208473,0.480718,0.997445,0.65023,0.0446189,0.346666,0.900523,0.310564,0.103178,0.992738,0.685653,0.344213,0.985025,0.670806,0.0281324,0.613883,0.275512,0.0586751,0.314732,0.0182196,0.554769,0.873449,0.101149,0.822217,0.700721,0.47394,0.953236,0.68867,0.702585,0.100413,0.5715,0.269026,0.866982,0.942793,0.153615,0.83461,0.0905043,0.451609,0.791384,0.521825,0.513774,0.696286,0.965019,0.931187,0.3578,0.898948,0.108976,0.196008,0.417867,0.107597,0.445587,0.64215,0.488614,0.198625,0.40827,0.811846,0.128124,0.197054,0.761436,0.351909,0.783993,0.685586,0.448038,0.969718,0.382238,0.32648,0.309697,0.374151,0.552638,0.0018875,0.785666,0.200412,0.0682548,0.435543,0.846637,0.155215,0.989779,0.539677,0.719226,0.365603,0.0122032,0.101116,0.233533,0.490063,0.201145,0.646377,0.137682,0.065163,0.907946,0.82834,0.36262,0.731452,0.607562,0.283853,0.469324,0.787379,0.625505,0.0360942,0.669655,0.114942,0.142843,0.398608,0.695758,0.189378,0.902404,0.383116,0.237975,0.816104,0.785524,0.813314,0.455528,0.427278,0.3939,0.881093,0.158685,0.793594,0.344961,0.853714,0.870448,0.247781,0.809098,0.886134,0.779827,0.662866,0.713054,0.641259,0.36558,0.0253977,0.68305,0.158276,0.401364,0.424455,0.141232,0.963632,0.784825,0.953421,0.791585,0.112163,0.0321703,0.797292,0.53272,0.617085,0.478449,0.129791,0.909018,0.363409,0.152345,0.815506,0.788063,0.032232,0.52876,0.946505,0.591169,0.932391,0.282853,0.557209,0.698633,0.389819,0.752895,0.713457,0.616477,0.494923,0.980416,0.0474068,0.971893,0.685427,0.383536,0.649013,0.0474569,0.402196,0.710012,0.101891,0.545385,0.572962,0.657044,0.677013,|0.566694,0.374363,0.910252,0.312111,0.995539,0.937081,0.651905,0.0207761,0.488003,0.733011,0.345721,0.574764,0.387331,0.786448,0.776203,0.905575,0.620698,0.928652,0.587466,0.289037,0.71124,0.960414,0.327951,0.197814,0.757583,0.869104,0.862985,0.0869532,0.842668,0.620857,0.252608,0.205611,0.493169,0.401395,0.659534,0.388253,0.38355,0.97706,0.292203,0.25698,0.941848,0.687598,0.253625,0.688235,0.317252,0.431771,0.582903,0.261809,0.37278,0.147294,0.780593,0.180695,0.444776,0.345036,0.505518,0.481954,0.421073,0.944828,0.561231,0.655917,0.866798,0.431529,0.0549098,0.430689,0.989993,0.346784,0.745402,0.67893,0.871632,0.981783,0.550989,0.094444,0.738606,0.227342,0.441324,0.348309,0.915988,0.147272,0.0603616,0.957475,0.523272,0.0023852,0.664323,0.321944,0.141519,0.0843785,0.258639,0.387694,0.211928,0.852877,0.109115,0.323323,0.660945,0.347994,0.959994,0.565094,0.118848,0.451484,0.849101,0.750389,0.213491,0.670279,0.588969,0.523486,0.131226,0.329478,0.629474,0.975098,0.954324,0.936959,0.699562,0.69879,0.191658,0.960971,0.886411,0.471698,0.866036,0.93145,0.80985,0.235238,0.0266848,0.932093,0.343522,0.447419,0.888478,0.787895,0.597431,0.795257,0.162093,0.477174,0.569509,0.617711,0.0627016,0.161118,0.357985,0.0585061,0.355953,0.120251,0.337649,0.294187,0.687769,0.309926,0.825103,0.769729,0.942982,0.552753,0.722967,0.813432,0.616315,0.492179,0.308671,0.972077,0.10674,0.0477673,0.113671,0.535786,0.0942216,0.583347,0.100757,0.140891,0.0267123,0.988585,0.246049,0.081969,0.542298,0.0390025,0.767839,0.563502,0.226632,0.0509071,0.083595,0.922388,0.969509,0.538489,0.639901,0.454949,0.696452,0.955836,0.337184,0.802518,0.462678,0.0286339,0.60872,0.425119,0.466422,0.800465,0.589867,0.920052,0.171157,0.755007,0.815757,0.678164,0.771494,0.101357,0.784746,0.893455,0.453418,0.815177,0.661435,0.278071,0.935081,0.139053,0.468731,0.508096,0.0295823,0.00421572,0.0139034,0.949125,0.635859,0.896851,0.44964,0.151862,0.534639,0.74391,0.681248,0.141592,0.8972,0.981806,0.872437,0.564944,0.637414,0.495272,0.78081,0.239891,0.470311,0.392993,0.544405,0.680365,0.0609593,0.334446,0.197392,0.0468797,0.0468976,0.627284,0.656232,0.7995,0.826725,0.168058,0.916414,0.124339,0.973195,0.953608,0.241142,0.0417786,0.793812,0.273825,0.0200418,0.215748,0.0050208,0.2039,0.167617,0.607183,0.915367,0.611661,0.909556,0.0097512,0.684132,0.630606,0.269923,0.0668857,0.304318,0.95613,0.806889,0.0533655,0.564294,0.980088,0.835642,0.428305,0.68718,0.519931,0.312658,0.508726,0.783134,0.918533,0.88025,0.835959,0.35488,0.730803,0.553445,0.780905,0.928692,0.366555,0.177789,0.201995,0.90946,0.54827,0.948491,0.790119,0.797931,0.555899,0.0531133,0.34439,0.193287,0.065829,0.414968,0.669562,0.0821747,0.658336,0.530812,0.307278,0.275276,0.359106,0.221576,0.218702,0.938214,0.329336,0.0656679,0.581124,0.927307,0.777379,0.673694,0.472464,0.753184,0.708271,0.00734466,0.0418947,0.641489,0.96812,0.195841,0.138014,0.145492,0.627861,0.251644,0.373856,0.338114,0.696195,0.357637,0.78118,0.748612,0.374424,0.186353,0.572857,0.923975,0.636377,0.278891,0.677586,0.107869,0.654711,0.903457,0.638118,0.488322,0.723966,0.293599,0.456331,0.632901,0.110106,0.735633,0.686379,0.728681,0.0377018,0.500705,0.504875,0.221814,0.955774,0.76975,0.114852,0.0794721,0.979587,0.921927,0.558781,0.579828,0.925377,0.904958,0.689827,0.22554,0.302768,0.0889314,0.897349,0.867148,0.462277,0.804747,0.301418,0.686638,0.00448537,0.000178635,0.874973,0.35346,0.410887,0.888542,0.285534,0.200269,0.419914,0.170453,0.238848,0.735651,0.614989,0.163657,0.433687,0.739396,0.0973624,0.362722,0.27327,0.578577,0.310526,0.392742,0.0871136,0.875488,0.435651,0.44898,0.114613,0.169053,0.218377,0.714806,0.497481,0.875066,0.167595,0.953008,0.0372351,0.515421,0.176968,0.286025,0.663778,0.7952,0.0303285,0.949591,0.76398,0.982021,0.660411,0.523885,0.17458,0.739596,0.727555,0.305764,0.667976,0.653205,0.146847,0.139555,0.751646,0.789545,0.55604,0.615091,0.572731,0.771133,0.618011,0.310721,0.741064,0.196484,0.217133,0.598299,0.656368,0.168233,0.912487,0.185054,0.803135,0.334221,0.383964,0.854664,0.559872,0.536435,0.765889,0.904724,0.953807,0.706266,0.0293934,0.446751,0.688186,0.595643,0.386471,0.281495,0.27059,0.658394,0.404539,0.122728,0.847289,0.0946447,0.687796,0.872256,0.331509,0.393498,0.31396,0.704528,0.812165,0.452873,0.832522,0.293524,0.662755,0.664307,0.526734,0.428667,0.0862807,0.15801,0.918234,0.501097,0.534367,0.628975,0.0670018,0.970173,0.82244,0.18484,0.418703,0.192756,0.264315,0.25609,0.448497,0.169832,0.981627,0.979168,0.206587,0.751183,0.798245,0.895105,0.746395,0.183285,0.190267,0.683817,0.0146099,0.531803,0.652285,0.870631,0.0634523,0.529875,0.376824,0.517384,0.631615,0.578617,0.625516,0.420617,0.449108,0.0868769,0.774063,0.0819564,0.856631,0.658577,0.382339,0.863326,0.493821,0.363701,0.799489,0.0506898,0.36894,0.0458962,0.0328192,0.931752,0.206962,0.596675,0.0272947,0.785107,0.930395,0.859701,0.00514805,0.883175,0.0486596,0.120051,0.907704,0.0798199,0.706551,0.829574,0.682864,0.590125,0.853986,0.626375,0.164802,0.236115,0.712043,0.85441,0.265316,0.0473968,0.497307,0.30829,0.300165,0.787838,0.513731,0.787372,0.117148,0.746636,0.249878,0.167152,0.974993,0.763253,0.284393,0.814886,0.789686,0.188367,0.562366,0.27461,0.360699,0.353914,0.380664,0.40886,0.834495,0.445358,0.0465282,0.607338,0.269087,0.00420445,0.706632,0.2144,0.957075,0.170556,0.28736,0.90583,0.943194,0.101895,0.632809,0.0278854,0.563609,0.320862,0.887793,0.675238,0.465823,0.998608,0.472108,0.136719,0.880731,0.695706,0.638768,0.771567,0.172878,0.606755,0.375784,0.531352,0.409217,0.351526,0.274167,0.210173,0.745986,0.829944,0.00706387,0.780575,0.210175,0.122769,0.783387,0.555862,0.303437,0.666518,0.701126,0.897705,0.109728,0.020506,0.561044,0.823191,0.151959,0.369106,0.0429323,0.33691,0.0442846,0.427922,0.136713,0.320165,0.321448,0.311336,0.572061,0.563295,0.69438,0.689122,0.55846,0.447249,0.450518,0.80992,0.353078,0.127456,0.988164,0.38725,0.263228,0.501942,0.826802,0.708819,0.0247168,0.539461,0.880153,0.330802,0.851538,0.158695,0.719238,0.150454,0.485169,0.185333,0.00785172,0.0479903,0.507698,0.52318,0.847195,0.351904,0.544107,0.15165,0.889091,0.725682,0.571118,0.234536,0.401542,0.515862,0.395314,0.869885,0.0121934,0.353177,0.849497,0.944999,0.561679,0.170247,0.768361,0.661172,0.673258,0.0233698,0.292399,0.780003,0.291497,0.271088,0.254988,0.266383,0.130701,0.552628,0.14189,0.713103,0.222057,0.690241,0.363143,0.865636,0.0457415,0.467385,0.111124,0.20115,0.104168,0.0436426,0.860741,0.508375,0.80919,0.685245,0.706176,0.353514,0.262206,0.270357,0.751582,0.903697,0.863654,0.0617874,0.956078,0.110496,0.602709,0.0666632,0.51166,0.757005,0.63673,0.463664,0.993309,0.686858,0.309337,0.972289,0.0180808,0.239197,0.887538,0.47055,0.828241,0.226983,0.856792,0.0139206,0.160794,0.348832,0.753946,0.347041,0.0522982,0.412542,0.581272,0.324503,0.952266,0.335959,0.957709,0.496113,0.605682,0.0416411,0.459234,0.625014,0.37377,0.848452,0.69399,0.918289,0.294724,0.669501,0.964213,0.237685,0.16549,0.428893,0.416275,0.951676,0.956536,0.0190121,0.750181,0.427507,0.296468,0.945208,0.794249,0.0275323,0.692129,0.0476384,0.375294,0.0263289,0.593467,0.441998,0.629699,0.487157,0.697395,0.67443,0.0530895,0.31776,0.148586,0.099595,0.51347,0.0242278,0.188279,0.464047,0.93041,0.485363,0.691148,0.27519,0.777925,0.984098,0.928949,0.494089,0.0274677,0.180052,0.0171263,0.515843,0.576375,0.522201,0.248658,0.769623,0.736006,0.363284,0.997676,0.811168,0.470101,0.885822,0.920675,0.911986,0.566467,0.314153,0.236439,0.990696,0.269102,0.929035,0.0140224,0.3739,0.431893,0.267156,0.565082,0.774764,0.298895,0.229197,0.402533,0.80556,0.865315,0.173843,0.814818,0.51185,0.253136,0.604706,0.117935,0.0518486,0.849498,0.105998,0.235599,0.576822,0.761703,0.674127,0.97788,0.660671,0.930275,0.230195,0.442577,0.197074,0.116089,0.00441092,0.611405,0.316297,0.331456,0.919036,0.619893,0.167412,0.439496,0.63655,0.303123,0.0783224,0.33284,0.232315,0.731642,0.0486221,0.960419,0.878311,0.869099,0.19243,0.0998839,0.444935,0.16909,0.806848,0.768411,0.249647,0.813235,0.0100105,0.0378147,0.703068,0.733912,0.784956,0.990729,0.822419,0.264658,0.787853,0.362359,0.782533,0.488322,0.808205,0.616783,0.0231982,0.436801,0.319181,0.6835,0.248027,0.45535,0.71071,0.431021,0.907149,0.190449,0.73595,0.410072,0.822808,0.251142,0.978657,0.979888,0.325507,0.318907,0.399187,0.904056,0.882132,0.448764,0.667915,0.489557,0.268931,0.0830708,0.991165,0.126315,0.644031,0.0200477,0.509863,0.753082,0.903716,0.0530246,0.283327,0.402399,0.508744,0.286126,0.854237,0.2174,0.616853,0.282211,0.7667,0.547171,0.298888,0.856155,0.39492,0.37901,0.382375,0.507661,0.82987,0.262786,0.651821,0.209312,0.446074,0.570231,0.156551,0.274453,0.511756,0.138745,0.488954,0.576542,0.560728,0.0717497,0.590997,0.84305,0.859193,0.0858592,0.0810902,0.513172,0.623537,0.605447,0.433613,0.749956,0.498729,0.140872,0.457994,0.151144,0.424526,0.866259,0.932206,0.913986,0.0339987,0.820295,0.140883,0.9451,0.373257,0.638898,0.0360162,0.930541,0.596984,0.60487,0.0831465,0.7934,0.705118,0.0690172,0.000970006,0.903604,0.690016,0.720481,|0.827711,0.988936,0.62579,0.237366,0.205671,0.135687,0.241911,0.352556,0.154859,0.455103,0.783511,0.378233,0.853387,0.00105101,0.187156,0.483868,0.484066,0.283488,0.0851064,0.362674,0.248676,0.544603,0.832718,0.475699,0.871185,0.607407,0.726161,0.47951,0.978469,0.286832,0.0892743,0.562502,0.683326,0.673521,0.487481,0.866264,0.818742,0.224485,0.676942,0.720794,0.838257,0.45244,0.0210538,0.0358772,0.550135,0.0274318,0.336933,0.430826,0.942029,0.00458539,0.30045,0.519437,0.234268,0.905522,0.569946,0.944536,0.164116,0.0759831,0.709844,0.484273,0.338352,0.553207,0.914905,0.904625,0.293401,0.181869,0.539459,0.164533,0.184809,0.67909,0.574331,0.656937,0.644842,0.234855,0.316304,0.821447,0.82504,0.693581,0.643168,0.967787,0.931745,0.872751,0.940047,0.990031,0.715397,0.188672,0.555568,0.567291,0.443492,0.896284,0.357458,0.516355,0.79646,0.856714,0.209269,0.258561,0.362604,0.412212,0.684592,0.659393,0.534545,0.440773,0.984894,0.730154,0.950945,0.225644,0.689909,0.340395,0.409537,0.246974,0.958446,0.0184191,0.0209309,0.611104,0.714882,0.00278825,0.364052,0.0307009,0.962224,0.330612,0.000779033,0.698311,0.0198008,0.19178,0.498025,0.145505,0.358251,0.407603,0.108016,0.512398,0.552066,0.626521,0.279015,0.448084,0.721612,0.753306,0.914795,0.450806,0.848777,0.0703045,0.134908,0.669682,0.978571,0.275743,0.106539,0.64669,0.388062,0.315542,0.095429,0.577919,0.804887,0.212271,0.527782,0.185617,0.737788,0.795727,0.251818,0.00293356,0.301619,0.418491,0.430158,0.92369,0.665398,0.98446,0.293865,0.209268,0.221038,0.139811,0.52683,0.172525,0.201955,0.837176,0.218007,0.231874,0.0432715,0.194379,0.281616,0.511633,0.862788,0.397492,0.267518,0.153482,0.562006,0.0382752,0.392277,0.258301,0.616021,0.526569,0.277048,0.546084,0.120076,0.278677,0.243506,0.520575,0.306969,0.959268,0.332746,0.923353,0.725278,0.17277,0.765658,0.211093,0.990892,0.465262,0.134406,0.51339,0.258988,0.599246,0.0261009,0.870666,0.509786,0.559741,0.985914,0.0971847,0.64944,0.527631,0.948324,0.275444,0.625008,0.0872937,0.587692,0.0485023,0.168676,0.321068,0.970015,0.791377,0.100832,0.686909,0.54033,0.894262,0.75579,0.175613,0.623469,0.194172,0.806961,0.573562,0.462251,0.804994,0.88233,0.900148,0.883738,0.755311,0.824002,0.566922,0.333301,0.376777,0.882383,0.368797,0.0157941,0.801357,0.917888,0.675002,0.802001,0.638327,0.179635,0.557779,0.366463,0.476123,0.242475,0.0783967,0.748966,0.987476,0.0294416,0.419139,0.533187,0.580488,0.415268,0.69272,0.081207,0.518581,0.648363,0.218128,0.933217,0.00821602,0.819384,0.698766,0.254854,0.153709,0.945327,0.909803,0.189109,0.648802,0.654895,0.894022,0.893766,0.578246,0.919901,0.000667632,0.838095,0.849244,0.550034,0.688587,0.639047,0.0920661,0.779172,0.854089,0.10893,0.799015,0.987183,0.0674047,0.823101,0.460362,0.813472,0.808352,0.95313,0.11422,0.260247,0.203471,0.958868,0.0459869,0.2356,0.23462,0.836103,0.048321,0.218245,0.329494,0.0865355,0.550669,0.205126,0.384066,0.729543,0.893909,0.513636,0.247709,0.446696,0.488209,0.945961,0.291538,0.645652,0.567782,0.0903326,0.819421,0.668572,0.82957,0.933469,0.0424482,0.803067,0.123027,0.187846,0.418932,0.00895101,0.823595,0.428421,0.663897,0.551459,0.838571,0.936571,0.311534,0.327582,0.0698673,0.684613,0.120615,0.552717,0.162889,0.370705,0.327707,0.653012,0.265503,0.956491,0.0458589,0.963286,0.197769,0.369478,0.0579448,0.586606,0.972724,0.100897,0.179159,0.858025,0.496155,0.765146,0.0550677,0.598359,0.0280007,0.287605,0.853282,0.122181,0.756506,0.0236718,0.871235,0.795796,0.384859,0.710844,0.700479,0.667139,0.271655,0.613462,0.0491596,0.560983,0.315076,0.288789,0.480002,0.167225,0.568413,0.801454,0.262871,0.36857,0.0339646,0.681446,0.950293,0.764334,0.578653,0.516743,0.471609,0.464575,0.972518,0.834761,0.47021,0.97913,0.382369,0.0703998,0.126055,0.792537,0.727676,0.567726,0.506831,0.963227,0.480948,0.162342,0.868354,0.373055,0.713526,0.123515,0.97172,0.122495,0.0490917,0.336155,0.0554082,0.365102,0.772418,0.60942,0.76015,0.80604,0.489815,0.938579,0.702677,0.0305789,0.0407518,0.277748,0.430067,0.939336,0.68017,0.498652,0.638214,0.34569,0.767178,0.618502,0.872592,0.193086,0.863129,0.206873,0.213987,0.595149,0.541025,0.950513,0.224898,0.0248854,0.356652,0.345438,0.513844,0.956442,0.775729,0.0370269,0.280831,0.79273,0.73446,0.156201,0.258418,0.567886,0.0835342,0.824749,0.408807,0.901862,0.340967,0.791971,0.419326,0.164905,0.205153,0.925924,0.883044,0.453064,0.994774,0.818605,0.300187,0.769427,0.265822,0.342225,0.516275,0.872098,0.846561,0.536814,0.134796,0.0195939,0.248589,0.351455,0.321279,0.859927,0.123432,0.702548,0.328259,0.77158,0.584814,0.137276,0.154626,0.812402,0.332596,0.134774,0.33749,0.0238112,0.635528,0.105958,0.336181,0.0572915,0.343897,0.512923,0.925074,0.077051,0.131688,0.137691,0.41801,0.459086,0.0548137,0.807691,0.3771,0.67892,0.379703,0.802055,0.847051,0.853898,0.612339,0.837793,0.0186803,0.784714,0.612566,0.919024,0.455395,0.913676,0.367261,0.175151,0.273434,0.300471,0.605263,0.445072,0.593845,0.19365,0.722265,0.106808,0.0662652,0.0896561,0.892182,0.767258,0.96049,0.80218,0.000304163,0.0776024,0.970422,0.208097,0.232171,0.6462,0.0331542,0.953183,0.469675,0.812397,0.549066,0.120371,0.359552,0.271752,0.394114,0.318674,0.0155455,0.68309,0.0395511,0.764287,0.704026,0.477108,0.707449,0.763775,0.184268,0.641572,0.826668,0.471162,0.918912,0.954613,0.0480678,0.00190377,0.735554,0.755059,0.374348,0.138159,0.522885,0.255474,0.876358,0.711265,0.636995,0.780497,0.943597,0.647877,0.329683,0.751292,0.736115,0.0584702,0.817721,0.0566156,0.958618,0.806569,0.120221,0.932184,0.225818,0.466043,0.961474,0.585503,0.690397,0.480024,0.306045,0.746318,0.636391,0.135215,0.551513,0.440916,0.529827,0.97792,0.909461,0.979805,0.309032,0.712977,0.764717,0.332824,0.822191,0.72796,0.625942,0.936851,0.32121,0.0399403,0.70387,0.535695,0.442693,0.318654,0.736654,0.590023,0.196753,0.398673,0.0912452,0.574254,0.264882,0.141398,0.254837,0.786533,0.330375,0.647483,0.993633,0.150221,0.0536484,0.2221,0.541545,0.777827,0.0140095,0.622152,0.576585,0.496926,0.343885,0.407418,0.833206,0.921537,0.792132,0.257767,0.907128,0.247169,0.653123,0.0433542,0.205693,0.20791,0.644988,0.138023,0.685189,0.526493,0.422939,0.854362,0.190969,0.823226,0.847296,0.0324233,0.724023,0.655442,0.147316,0.916369,0.534279,0.493864,0.0318986,0.48715,0.933199,0.518411,0.519802,0.898031,0.164701,0.0170929,0.526928,0.98029,0.117181,0.77492,0.683423,0.603169,0.798717,0.491156,0.993557,0.687359,0.683011,0.157873,0.231529,0.317078,0.86025,0.286379,0.161994,0.344749,0.817185,0.393403,0.328505,0.127094,0.0763237,0.732549,0.723805,0.616855,0.045274,0.375255,0.591706,0.267169,0.216139,0.348248,0.327543,0.877919,0.497599,0.109657,0.769381,0.892278,0.429488,0.262765,0.840914,0.728514,0.610852,0.209272,0.447305,0.743904,0.3451,0.576504,0.854649,0.507476,0.358654,0.442751,0.0679253,0.247273,0.896051,0.266261,0.626837,0.110324,0.130888,0.515712,0.503235,0.586676,0.18374,0.560228,0.0439448,0.365444,0.880453,0.0802468,0.866888,0.233843,0.359602,0.509679,0.290403,0.885037,0.966287,0.0681776,0.800767,0.162054,0.282439,0.0763372,0.718216,0.268713,0.553287,0.552229,0.5686,0.217009,0.279839,0.22646,0.835196,0.380244,0.977662,0.684487,0.90987,0.401693,0.191887,0.639985,0.377058,0.951385,0.454256,0.194776,0.477538,0.261939,0.434614,0.907747,0.874052,0.322263,0.00224209,0.0611326,0.595481,0.627573,0.11422,0.359075,0.237818,0.172523,0.309134,0.152151,0.855202,0.810422,0.169095,0.934167,0.210957,0.86755,0.656891,0.641578,0.598876,0.381803,0.850734,0.231479,0.197858,0.499424,0.251061,0.631009,0.445014,0.4096,0.304623,0.299877,0.475304,0.246394,0.569204,0.479708,0.0362507,0.034925,0.957246,0.8149,0.798174,0.89871,0.9342,0.676899,0.754438,0.908107,0.936382,0.0551605,0.38405,0.856105,0.328665,0.982528,0.97144,0.814854,0.447131,0.748902,0.407593,0.871321,0.617898,0.52388,0.539145,0.299409,0.0308682,0.22438,0.834362,0.0879571,0.0761658,0.577638,0.52243,0.277679,0.345748,0.799555,0.714001,0.673956,0.35361,0.204875,0.378749,0.382917,0.708255,0.339406,0.705874,0.673087,0.697858,0.483453,0.508848,0.192199,0.868885,0.739905,0.608892,0.725389,0.951236,0.233227,0.970586,0.771393,0.525848,0.15307,0.15283,0.836893,0.24147,0.49146,0.36385,0.323624,0.580375,0.192041,0.678701,0.345769,0.0705606,0.742856,0.830813,0.622955,0.270553,0.062577,0.69655,0.626906,0.977702,0.170398,0.231122,0.46539,0.403157,0.638607,0.740135,0.533768,0.0786808,0.962614,0.391892,0.680027,0.336531,0.943151,0.89829,0.0654278,0.132112,0.190194,0.437546,0.376009,0.822682,0.0371056,0.502192,0.0493203,0.889427,0.638065,0.890912,0.931523,0.373357,0.810672,0.823489,0.378489,0.294623,0.25309,0.15396,0.966725,0.0149839,0.257124,0.944936,0.209093,0.234066,0.72801,0.528945,0.511776,0.794723,0.920288,0.93847,0.670631,0.241504,0.588962,0.632697,0.0586072,0.406986,0.0116829,0.923666,0.8007,0.106936,0.649252,0.291169,0.662131,0.723382,0.973167,0.769519,0.481082,0.784392,0.579435,0.826101,0.77668,0.045339,0.269867,0.443241,0.386193,0.314394,0.969093,0.5669,0.435095,0.658145,0.535553,0.799565,0.495088,0.667704,0.896336,0.768061,0.15616,0.318151,0.28424,0.19856,|0.310944,0.541894,0.845867,0.303334,0.947361,0.626418,0.0461902,0.609378,0.901701,0.704622,0.563025,0.555778,0.093005,0.812034,0.0372503,0.711553,0.174899,0.459832,0.0994674,0.864446,0.815352,0.354084,0.610827,0.621344,0.0479621,0.805029,0.26183,0.569816,0.918737,0.966419,0.521227,0.986159,0.0115176,0.21502,0.194977,0.347298,0.268727,0.376881,0.681359,0.376304,0.191778,0.94303,0.023828,0.473793,0.307006,0.804429,0.969246,0.220425,0.200777,0.500216,0.942537,0.848146,0.194972,0.437727,0.449067,0.835702,0.645508,0.862783,0.893153,0.0952916,0.906307,0.591111,0.315851,0.881946,0.394731,0.329864,0.386,0.562537,0.477331,0.507876,0.94474,0.253768,0.653042,0.755522,0.829006,0.0540536,0.813905,0.524538,0.732498,0.0372193,0.0945962,0.212713,0.319934,0.302325,0.054615,0.595912,0.215718,0.735071,0.469836,0.670033,0.985097,0.713138,0.55853,0.46922,0.467318,0.492683,0.344918,0.659837,0.826157,0.487626,0.402581,0.469716,0.24808,0.394739,0.278867,0.633842,0.937294,0.394991,0.674742,0.726641,0.141669,0.867453,0.614307,0.201798,0.88333,0.123299,0.190556,0.933134,0.91481,0.10385,0.0882361,0.281082,0.865713,0.0484493,0.319792,0.181565,0.95449,0.3875,0.19442,0.301578,0.0485495,0.741644,0.692283,0.177899,0.362568,0.759377,0.779764,0.146486,0.363594,0.317032,0.499719,0.901723,0.803727,0.517927,0.23756,0.53022,0.944004,0.932998,0.00278878,0.640341,0.774548,0.189189,0.653347,0.457112,0.369446,0.26803,0.205335,0.696641,0.326882,0.924331,0.710626,0.611984,0.876306,0.92751,0.0760426,0.751653,0.648406,0.734823,0.75998,0.415838,0.216659,0.0870632,0.811942,0.86977,0.0593465,0.932931,0.665771,0.948042,0.12456,0.085397,0.443572,0.982822,0.473353,0.424311,0.803839,0.478342,0.657676,0.349026,0.987529,0.653081,0.832459,0.61224,0.876953,0.0523961,0.811423,0.820819,0.69051,0.65065,0.716095,0.591934,0.216799,0.240915,0.60452,0.475242,0.251166,0.877747,0.295608,0.256256,0.588143,0.245146,0.144163,0.0894057,0.180061,0.722184,0.18728,0.0699816,0.0409601,0.387946,0.629249,0.127675,0.734951,0.177182,0.515768,0.533701,0.950517,0.569688,0.128513,0.683895,0.6048,0.283937,0.799062,0.406931,0.712501,0.975321,0.875483,0.909386,0.473665,0.212737,0.540681,0.258996,0.417735,0.122025,0.257885,0.764506,0.605605,0.0738827,0.0736771,0.142961,0.728286,0.940526,0.656993,0.82154,0.841514,0.352612,0.274481,0.174742,0.825474,0.933517,0.811987,0.954783,0.522288,0.879538,0.834884,0.797647,0.518513,0.948442,0.102016,0.191938,0.114232,0.0228081,0.244946,0.256031,0.833059,0.874936,0.986581,0.280974,0.360216,0.228944,0.847334,0.846818,0.201872,0.978423,0.368906,0.830264,0.0932577,0.218839,0.872679,0.312497,0.333174,0.538948,0.899441,0.131031,0.675773,0.520173,0.177161,0.151895,0.174961,0.740419,0.537612,0.464804,0.811439,0.592175,0.170003,0.26248,0.497075,0.739075,0.4798,0.789734,0.717009,0.920716,0.337643,0.931811,0.487099,0.793652,0.409885,0.721443,0.0261923,0.931206,0.135766,0.261758,0.70491,0.308324,0.520109,0.376521,0.993847,0.0433573,0.847064,0.435684,0.667714,0.778,0.0856085,0.549338,0.254609,0.34545,0.764817,0.240944,0.160955,0.717849,0.292124,0.372608,0.868009,0.887559,0.917427,0.900358,0.357915,0.476296,0.346842,0.771616,0.518995,0.859883,0.557604,0.0297847,0.394094,0.74591,0.482733,0.446909,0.304208,0.635621,0.78251,0.523797,0.0343138,0.488365,0.405455,0.793206,0.776245,0.840743,0.48892,0.00936675,0.507779,0.594402,0.328862,0.501775,0.820255,0.801157,0.00220692,0.808609,0.520019,0.809645,0.0575955,0.57795,0.8185,0.120342,0.0467041,0.781641,0.535065,0.468418,0.640362,0.0244874,0.0690829,0.685145,0.748977,0.290908,0.886695,0.758725,0.962048,0.421853,0.397519,0.0679224,0.000651181,0.826367,0.61494,0.371689,0.0134961,0.161799,0.974124,0.62939,0.100631,0.789984,0.481723,0.928667,0.952146,0.365311,0.531962,0.878914,0.40498,0.462259,0.0184258,0.503254,0.429944,0.21909,0.316414,0.322944,0.546048,0.129817,0.529385,0.259638,0.427757,0.981762,0.781418,0.0993187,0.388972,0.455497,0.99336,0.875691,0.433123,0.362095,0.651961,0.813193,0.671632,0.102779,0.941555,0.541601,0.160301,0.160743,0.551923,0.673832,0.949765,0.204577,0.995525,0.189911,0.801881,0.517294,0.336074,0.886426,0.455938,0.332585,0.471871,0.90575,0.977883,0.0338037,0.428366,0.0276712,0.71239,0.466919,0.22248,0.891906,0.979584,0.380139,0.628846,0.449141,0.403682,0.254832,0.715344,0.784877,0.194981,0.609604,0.555031,0.16234,0.80507,0.581702,0.00699216,0.116703,0.445462,0.0854358,0.748065,0.25629,0.608002,0.782165,0.765562,0.277916,0.898081,0.667879,0.268269,0.973041,0.398809,0.367055,0.447647,0.853673,0.961672,0.285331,0.926347,0.0293484,0.256825,0.287953,0.567958,0.0748199,0.320283,0.558364,0.0439323,0.638827,0.449486,0.618337,0.00304514,0.0623914,0.877702,0.392588,0.858649,0.109796,0.803986,0.631395,0.442911,0.821037,0.151231,0.646329,0.578709,0.0413382,0.554227,0.652907,0.5162,0.649135,0.182057,0.53659,0.168842,0.332783,0.73903,0.33294,0.450451,0.442496,0.281475,0.829427,0.317017,0.32321,0.174473,0.35757,0.0334919,0.195669,0.907914,0.577157,0.678373,0.182987,0.373775,0.392124,0.132113,0.651615,0.616031,0.181073,0.0265002,0.434753,0.193713,0.389636,0.0848843,0.69396,0.28867,0.374021,0.915959,0.585045,0.429674,0.433628,0.615799,0.916898,0.350326,0.778848,0.13878,0.686111,0.234701,0.49117,0.339024,0.98914,0.585714,0.694767,0.822746,0.330297,0.0322941,0.513139,0.331206,0.827363,0.418574,0.0513347,0.868028,0.994595,0.5229,0.310159,0.283024,0.149128,0.0485121,0.0920087,0.96759,0.659455,0.555233,0.0394658,0.678322,0.38392,0.774799,0.476139,0.160432,0.891213,0.661781,0.99689,0.424384,0.464239,0.13934,0.654676,0.359351,0.20444,0.00920814,0.819979,0.807811,0.0653635,0.122792,0.448691,0.0554442,0.615537,0.903123,0.695165,0.592992,0.805198,0.742779,0.0954155,0.368251,0.57684,0.5391,0.131922,0.877294,0.260788,0.0225459,0.447956,0.388426,0.116207,0.0143539,0.559062,0.318905,0.819633,0.546561,0.388744,0.190823,0.333783,0.588532,0.396926,0.174473,0.656237,0.822101,0.543054,0.548103,0.776253,0.612932,0.784754,0.769793,0.489389,0.375489,0.294196,0.733209,0.378787,0.744645,0.959555,0.0893903,0.168462,0.405775,0.288501,0.781223,0.761073,0.700976,0.809712,0.562804,0.0174508,0.20272,0.760037,0.712177,0.00861633,0.480626,0.80698,0.817722,0.753415,0.228513,0.407908,0.207811,0.228323,0.968074,0.0344791,0.88988,0.0794752,0.893591,0.081188,0.0746171,0.0677298,0.910949,0.423061,0.846457,0.903694,0.0831478,0.177633,0.896679,0.780834,0.865939,0.983632,0.727162,0.301876,0.686575,0.427624,0.300808,0.305815,0.511122,0.254391,0.578258,0.815184,0.176488,0.441266,0.230036,0.923829,0.713771,0.828333,0.249544,0.267124,0.781638,0.714472,0.40402,0.573895,0.971713,0.321503,0.88877,0.785659,0.332631,0.652735,0.0782014,0.985046,0.613273,0.427289,0.865352,0.319109,0.711713,0.0775406,0.542125,0.998708,0.163889,0.81476,0.327242,0.88992,0.994852,0.236347,0.40238,0.78057,0.928661,0.276926,0.257065,0.24577,0.289484,0.87218,0.439519,0.457804,0.170054,0.548804,0.90809,0.962525,0.0215788,0.14819,0.344245,0.492401,0.228168,0.0814878,0.829027,0.868849,0.268676,0.703654,0.913125,0.208501,0.273401,0.985548,0.366377,0.304932,0.746261,0.143562,0.427246,0.246762,0.282764,0.225709,0.996534,0.479255,0.707658,0.868622,0.671702,0.848559,0.219167,0.673498,0.109652,0.563604,0.649539,0.504692,0.712524,0.662085,0.249998,0.298041,0.112665,0.798765,0.268446,0.449954,0.617417,0.753593,0.91301,0.0936915,0.508741,0.441288,0.840513,0.630209,0.785231,0.501385,0.219158,0.904593,0.590884,0.0702155,0.72498,0.29571,0.431299,0.172579,0.290672,0.472113,0.240832,0.972338,0.190328,0.274525,0.35897,0.274227,0.696761,0.512591,0.844892,0.263162,0.216406,0.289582,0.313249,0.606936,0.656756,0.0687743,0.881321,0.0124313,0.870189,0.712696,0.490764,0.979726,0.449207,0.665169,0.945928,0.384007,0.708611,0.836042,0.625746,0.216435,0.677916,0.873726,0.801778,0.65256,0.0203878,0.413723,0.506829,0.462319,0.788599,0.93229,0.11317,0.348637,0.110294,0.757765,0.688558,0.701441,0.807213,0.116109,0.557611,0.779855,0.720631,0.604555,0.612459,0.077611,0.277534,0.623628,0.443539,0.167226,0.00768977,0.504255,0.0878868,0.485506,0.738971,0.600916,0.113119,0.790491,0.156519,0.174599,0.224887,0.890868,0.985841,0.9447,0.0507955,0.236065,0.556525,0.0220659,0.951873,0.804045,0.726607,0.77647,0.716605,0.479973,0.210707,0.431689,0.6222,0.42634,0.569144,0.883602,0.471701,0.0388171,0.0790825,0.13724,0.138482,0.674002,0.0603673,0.948419,0.0692696,0.632998,0.901478,0.753807,0.838129,0.0556602,0.0456933,0.519658,0.382953,0.679147,0.493139,0.235064,0.636737,0.329104,0.707973,0.854918,0.348036,0.59384,0.273965,0.261317,0.340435,0.917913,0.231388,0.77621,0.129303,0.599301,0.281194,0.398381,0.31681,0.44373,0.718084,0.973779,0.385701,0.833592,0.0274818,0.677432,0.460455,0.265985,0.425798,0.597817,0.94801,0.16734,0.200442,0.266785,0.32233,0.313851,0.756999,0.0484458,0.85411,0.577918,0.768427,0.577444,0.910691,0.786319,0.0578735,0.273921,0.0928408,0.166108,0.588332,0.0291649,0.0199367,0.553612,0.728908,0.300612,0.517841,0.799577,0.362881,0.84024,0.203758,0.978687,0.695034,0.773631,0.755124,0.89132,0.00751287,0.946186,0.177857,0.223016,0.819789,0.733808,|0.711225,0.13224,0.561107,0.274576,0.671502,0.460153,0.856323,0.446815,0.639359,0.16329,0.0669225,0.4613,0.0372059,0.543166,0.196885,0.171142,0.0566778,0.0989227,0.05841,0.422397,0.000933588,0.765922,0.306399,0.467559,0.15066,0.882915,0.734816,0.931957,0.167982,0.516143,0.772537,0.613114,0.633191,0.12832,0.765457,0.138659,0.673726,0.287896,0.384888,0.540969,0.756412,0.131775,0.56968,0.182634,0.00117159,0.381837,0.950063,0.0908719,0.0947797,0.583903,0.21619,0.445801,0.154693,0.958824,0.919176,0.220376,0.20529,0.330348,0.87744,0.411493,0.715698,0.971402,0.649697,0.937469,0.829987,0.361627,0.139159,0.764969,0.185712,0.483551,0.670719,0.881169,0.871604,0.507995,0.692962,0.894223,0.28056,0.74908,0.881839,0.0406818,0.523413,0.526299,0.540493,0.397831,0.0816846,0.103394,0.991484,0.287726,0.964066,0.455148,0.315608,0.547089,0.423167,0.102378,0.21021,0.220971,0.397392,0.776126,0.798566,0.499577,0.686374,0.0846717,0.457604,0.34003,0.147887,0.715571,0.498517,0.37555,0.44918,0.0150407,0.589869,0.504515,0.681281,0.900821,0.842722,0.279573,0.927712,0.280439,0.399786,0.674235,0.348788,0.986752,0.489781,0.675145,0.846448,0.901878,0.928407,0.131624,0.886942,0.179807,0.245086,0.259449,0.724405,0.481713,0.531893,0.748191,0.557045,0.428417,0.960217,0.718874,0.310232,0.76156,0.0379824,0.894994,0.571489,0.533564,0.953881,0.828005,0.755554,0.204023,0.152111,0.0154288,0.886613,0.843251,0.103617,0.926252,0.58645,0.725379,0.432615,0.325948,0.893639,0.821869,0.550185,0.874862,0.299225,0.474588,0.754746,0.227356,0.808472,0.266318,0.894762,0.876935,0.495817,0.229958,0.316389,0.284023,0.846876,0.966716,0.976301,0.531481,0.0150137,0.794591,0.183633,0.305277,0.337399,0.554274,0.0245566,0.344862,0.244578,0.867291,0.846099,0.240439,0.0543222,0.163887,0.457668,0.552609,0.207172,0.471649,0.504556,0.0989572,0.668883,0.413796,0.42945,0.600538,0.772291,0.585971,0.682823,0.485301,0.231448,0.646602,0.795737,0.177416,0.208077,0.336529,0.688189,0.508579,0.26572,0.0477291,0.419926,0.576164,0.505422,0.575723,0.38763,0.298376,0.347001,0.0625097,0.944292,0.864199,0.618328,0.938535,0.168826,0.259314,0.383853,0.453576,0.646301,0.676591,0.341674,0.982751,0.642743,0.330365,0.42614,0.13769,0.0540053,0.863713,0.024789,0.0228336,0.48608,0.577645,0.707287,0.675203,0.571568,0.250109,0.455763,0.554382,0.454772,0.748684,0.415759,0.053268,0.565377,0.437786,0.209783,0.92066,0.624533,0.535036,0.191823,0.50028,0.620201,0.489236,0.0963355,0.218167,0.135198,0.415192,0.830394,0.75915,0.803873,0.108307,0.681103,0.456405,0.998728,0.0676621,0.244265,0.855479,0.731039,0.628567,0.567648,0.45362,0.92456,0.411271,0.705882,0.276951,0.575915,0.154262,0.738829,0.0713648,0.716683,0.351528,0.474256,0.687487,0.189648,0.134525,0.100139,0.738258,0.828425,0.624453,0.251367,0.674991,0.800997,0.148041,0.217827,0.225638,0.870516,0.573212,0.996174,0.0416691,0.644066,0.147332,0.85987,0.915852,0.459934,0.314559,0.997249,0.896887,0.226546,0.530311,0.0270948,0.346069,0.375296,0.353543,0.00409651,0.330897,0.217618,0.243709,0.483883,0.676525,0.81971,0.345245,0.155132,0.747896,0.337545,0.416363,0.334802,0.257079,0.872089,0.561743,0.566124,0.0285224,0.00862575,0.0759878,0.702695,0.755941,0.8964,0.664785,0.743444,0.0802156,0.48145,0.123953,0.0067929,0.522641,0.604674,0.646435,0.0611247,0.17217,0.109744,0.714799,0.0884882,0.910372,0.66196,0.534878,0.719179,0.0661309,0.536773,0.157972,0.412694,0.00754732,0.731649,0.0537894,0.189183,0.404292,0.682882,0.40824,0.210406,0.638995,0.922369,0.99651,0.0755698,0.821109,0.734299,0.976001,0.0533121,0.507675,0.980734,0.97931,0.158852,0.47745,0.167985,0.88124,0.694423,0.20238,0.490298,0.362742,0.46121,0.335793,0.33593,0.750276,0.156613,0.528974,0.277178,0.698349,0.35121,0.50416,0.290573,0.653478,0.556697,0.0269819,0.612865,0.0594267,0.014617,0.27432,0.735401,0.721427,0.270401,0.345271,0.488316,0.615336,0.776649,0.135816,0.38887,0.228823,0.229518,0.877155,0.601929,0.87656,0.729637,0.248033,0.0254093,0.159065,0.613732,0.992165,0.716967,0.0816037,0.0442227,0.704107,0.0346284,0.790716,0.760846,0.330128,0.178592,0.278763,0.660857,0.872358,0.236468,0.55513,0.575328,0.811712,0.412084,0.906219,0.0911919,0.237604,0.817315,0.547097,0.480239,0.363929,0.998071,0.503557,0.483288,0.598405,0.0429237,0.880874,0.635924,0.86583,0.785854,0.80338,0.190856,0.919365,0.721699,0.401664,0.122551,0.0954553,0.250088,0.999335,0.598654,0.686962,0.718566,0.66368,0.676487,0.400703,0.742376,0.695382,0.451814,0.426109,0.233336,0.142815,0.100216,0.322702,0.832878,0.0523052,0.96366,0.0930836,0.687323,0.615325,0.581207,0.912902,0.579276,0.881086,0.747248,0.572346,0.0194969,0.755128,0.488634,0.649047,0.923565,0.268998,0.439843,0.729285,0.268708,0.985254,0.659384,0.496506,0.877512,0.0722452,0.813391,0.0936601,0.717642,0.601531,0.7307,0.215675,0.573356,0.85817,0.968841,0.504046,0.503918,0.875235,0.179962,0.45717,0.975523,0.813435,0.289034,0.513349,0.0100845,0.754037,0.398591,0.334309,0.733321,0.18493,0.245367,0.759072,0.0835589,0.0489922,0.176275,0.749151,0.721475,0.869337,0.694087,0.968141,0.48043,0.0484593,0.803155,0.481895,0.584241,0.661272,0.466916,0.239445,0.735576,0.108806,0.901824,0.256854,0.509966,0.209432,0.43865,0.82105,0.389695,0.236064,0.756761,0.176951,0.727396,0.230234,0.41692,0.825335,0.281687,0.0935572,0.523395,0.20958,0.339222,0.355682,0.0220645,0.545305,0.456829,0.838683,0.742012,0.0181991,0.840809,0.376581,0.0899001,0.639101,0.698321,0.0906004,0.0615087,0.528627,0.462557,0.874856,0.095561,0.339198,0.539845,0.369675,0.552788,0.937384,0.731175,0.00891256,0.58757,0.962383,0.54608,0.820194,0.796343,0.0723803,0.496067,0.801954,0.997203,0.482808,0.711347,0.0947577,0.0676687,0.967665,0.968378,0.901625,0.170859,0.916496,0.0502636,0.462961,0.128624,0.311635,0.870466,0.173551,0.21624,0.623189,0.150922,0.540315,0.384679,0.412568,0.111638,0.845147,0.548515,0.558493,0.58163,0.386307,0.003304,0.725865,0.0711242,0.212317,0.0229711,0.0407897,0.733227,0.211326,0.0385965,0.286531,0.14931,0.497418,0.443189,0.95422,0.654168,0.750809,0.112474,0.0464643,0.921983,0.246083,0.161654,0.0214891,0.970133,0.161968,0.245538,0.740511,0.385693,0.708891,0.913031,0.823071,0.518935,0.918263,0.164826,0.782682,0.631326,0.175927,0.791221,0.884824,0.750194,0.583366,0.462416,0.811521,0.16343,0.352593,0.495389,0.752428,0.443728,0.126409,0.900021,0.786575,0.575723,0.937866,0.30089,0.425302,0.93924,0.0901139,0.805062,0.740514,0.338544,0.643418,0.825789,0.628794,0.0915243,0.632835,0.953558,0.297894,0.592502,0.687337,0.689011,0.651469,0.274777,0.528644,0.986885,0.110245,0.501498,0.741124,0.809457,0.641332,0.0639496,0.923509,0.614496,0.240895,0.382973,0.270502,0.754686,0.220358,0.287481,0.68518,0.523635,0.378095,0.453001,0.0359114,0.966794,0.533798,0.466766,0.0988892,0.87883,0.723742,0.893237,0.696567,0.328628,0.362432,0.559519,0.261223,0.597812,0.482456,0.194744,0.0492061,0.0421956,0.752693,0.789637,0.655181,0.597543,0.0159574,0.883625,0.699836,0.83248,0.0220353,0.966644,0.550336,0.175133,0.54314,0.140782,0.672504,0.0136973,0.682074,0.641927,0.461089,0.354271,0.362436,0.576677,0.360894,0.763014,0.307384,0.220311,0.897276,0.6883,0.357351,0.968476,0.702905,0.997376,0.166027,0.151781,0.354495,0.877137,0.328203,0.281882,0.41476,0.759174,0.191182,0.403855,0.0277103,0.597382,0.417594,0.831418,0.934423,0.69187,0.625499,0.424874,0.471542,0.973138,0.0246884,0.339793,0.920157,0.688842,0.197728,0.475475,0.538932,0.836024,0.0553982,0.509845,0.178031,0.760345,0.446984,0.424239,0.701372,0.792815,0.670278,0.0104781,0.250745,0.983242,0.342704,0.992985,0.796563,0.905178,0.571794,0.0906438,0.932499,0.643461,0.815088,0.088559,0.0854341,0.606902,0.072833,0.334658,0.157917,0.222629,0.84607,0.0112612,0.422293,0.207781,0.244368,0.821417,0.213769,0.191415,0.347308,0.44751,0.31928,0.614448,0.748391,0.201654,0.227019,0.7534,0.109503,0.566756,0.996397,0.017257,0.722358,0.860232,0.652586,0.0182921,0.146763,0.590367,0.949394,0.534786,0.71562,0.711576,0.961073,0.32282,0.998151,0.293872,0.667001,0.4502,0.344803,0.701355,0.242198,0.547387,0.66211,0.802031,0.449899,0.361496,0.0957188,0.664951,0.556791,0.16111,0.868119,0.0401201,0.655014,0.951712,0.996901,0.188124,0.626962,0.172788,0.0970326,0.943885,0.0575277,0.75241,0.528904,0.985428,0.00203121,0.831272,0.0187443,0.965789,0.0146443,0.588302,0.990155,0.883248,0.350873,0.803675,0.873174,0.50488,0.231956,0.0722544,0.155195,0.494799,0.702491,0.0362573,0.717634,0.0590839,0.567204,0.905177,0.607429,0.256439,0.833867,0.0224544,0.199968,0.399391,0.0695204,0.493591,0.162383,0.147342,0.0344753,0.0863008,0.283075,0.689299,0.163098,0.692739,0.342977,0.766634,0.143777,0.0737978,0.382553,0.179183,0.628225,0.354598,0.8223,0.381763,0.139307,0.0999538,0.493162,0.989424,0.601456,0.993979,0.297989,0.396743,0.426044,0.328495,0.792273,0.246468,0.844093,0.240298,0.71599,0.629409,0.230623,0.408121,0.442793,0.836798,0.39066,0.519645,0.951062,0.90857,0.307061,0.190686,0.862522,0.114816,0.419191,0.651542,0.121715,0.977981,0.529696,0.170849,0.247494,0.577582,0.769937,0.760352,0.245359,0.021306,0.607223,0.510173,0.575116,0.441066,0.567303,0.401827,0.55024,0.233923,0.409644,|0.0329998,0.609035,0.114588,0.0327771,0.802874,0.818295,0.903879,0.951674,0.755965,0.971323,0.212287,0.718884,0.952006,0.508046,0.234271,0.63936,0.227368,0.864199,0.408789,0.255753,0.954782,0.982927,0.707803,0.794768,0.715625,0.448917,0.903284,0.262114,0.332769,0.414107,0.748801,0.236059,0.813929,0.280906,0.522808,0.543756,0.0674538,0.468642,0.261741,0.511014,0.737206,0.397718,0.931579,0.275576,0.722584,0.0119308,0.191859,0.572255,0.341968,0.393781,0.854546,0.102514,0.691693,0.826709,0.320239,0.501764,0.402374,0.0728804,0.865628,0.500191,0.458447,0.599011,0.332695,0.21359,0.937545,0.842363,0.587572,0.15964,0.794222,0.683808,0.230469,0.768546,0.986352,0.27346,0.200198,0.674542,0.354843,0.416571,0.904463,0.521707,0.104928,0.150931,0.131164,0.502723,0.816787,0.940983,0.98432,0.770823,0.316466,0.950579,0.529551,0.806924,0.363457,0.298591,0.805551,0.914842,0.24893,0.324816,0.444297,0.67462,0.518424,0.822476,0.46344,0.929813,0.173694,0.381536,0.678071,0.446094,0.0849037,0.345002,0.544494,0.324843,0.796404,0.663171,0.280006,0.115516,0.0958408,0.811433,0.758565,0.388015,0.443258,0.948906,0.460012,0.616269,0.887082,0.387839,0.440525,0.61561,0.219636,0.855697,0.35658,0.479625,0.0494384,0.062339,0.841589,0.324238,0.447559,0.980307,0.560116,0.0651969,0.150339,0.20643,0.0392627,0.79981,0.769049,0.861064,0.123856,0.617321,0.353952,0.899717,0.71101,0.48916,0.514072,0.754696,0.618524,0.636193,0.393807,0.774521,0.527297,0.671069,0.398888,0.482928,0.0631743,0.826933,0.641653,0.435526,0.715534,0.0735885,0.640756,0.793237,0.636303,0.00911438,0.582978,0.124518,0.118945,0.00369406,0.29655,0.929864,0.557562,0.750667,0.89108,0.194755,0.572083,0.766645,0.89797,0.668436,0.990597,0.0891885,0.0858831,0.361138,0.439314,0.454895,0.576873,0.379695,0.167451,0.0639446,0.409689,0.220051,0.729221,0.73601,0.519807,0.719776,0.969245,0.22601,0.572517,0.595459,0.137213,0.974966,0.336022,0.372054,0.254067,0.990282,0.642816,0.115965,0.809588,0.503148,0.41434,0.022581,0.073055,0.678427,0.997283,0.524811,0.375249,0.108494,0.211721,0.12673,0.362658,0.917586,0.275842,0.336305,0.693184,0.658699,0.0685265,0.363451,0.256699,0.807217,0.452736,0.652489,0.245216,0.866615,0.732185,0.956979,0.312289,0.560081,0.806854,0.317224,0.884856,0.966118,0.660171,0.798921,0.35705,0.456734,0.936262,0.136461,0.0866849,0.370804,0.170834,0.613415,0.709395,0.0970712,0.357906,0.800767,0.56877,0.865553,0.126557,0.834201,0.955489,0.179558,0.125218,0.941172,0.787532,0.0190839,0.784096,0.781539,0.10333,0.234586,0.393469,0.636186,0.669878,0.773088,0.475335,0.391073,0.301445,0.276693,0.816302,0.571429,0.702581,0.706737,0.266475,0.469458,0.095226,0.570218,0.635675,0.358356,0.110268,0.400406,0.302433,0.0866135,0.459171,0.550181,0.344802,0.811422,0.0429317,0.185874,0.324113,0.180182,0.432315,0.194756,0.75303,0.923062,0.878416,0.269334,0.581881,0.551873,0.257433,0.247606,0.0515288,0.875448,0.60214,0.984559,0.61185,0.237196,0.764835,0.418205,0.18778,0.986679,0.303575,0.92664,0.991967,0.339393,0.30237,0.318383,0.90447,0.663536,0.331219,0.757237,0.952893,0.909643,0.253857,0.528544,0.761324,0.693173,0.4237,0.42505,0.155961,0.610496,0.210818,0.523188,0.240043,0.495392,0.289039,0.377999,0.520683,0.459434,0.463174,0.55201,0.743331,0.44237,0.501441,0.669762,0.831358,0.0196424,0.180246,0.380872,0.22894,0.388157,0.972369,0.249882,0.247026,0.907535,0.485947,0.654168,0.547543,0.248453,0.256042,0.243864,0.82061,0.148891,0.973983,0.341942,0.0763581,0.509702,0.425751,0.290525,0.948252,0.79116,0.152026,0.33322,0.0116547,0.0453162,0.0626065,0.405007,0.559596,0.782983,0.965684,0.16526,0.571162,0.758857,0.634344,0.668067,0.815982,0.984214,0.489475,0.343952,0.850505,0.61317,0.804849,0.764787,0.941833,0.707412,0.306859,0.404347,0.524624,0.853418,0.591349,0.86555,0.96792,0.647383,0.723527,0.983366,0.176779,0.100104,0.0840685,0.991304,0.688739,0.515528,0.184946,0.673339,0.737279,0.59008,0.915316,0.903445,0.9487,0.26025,0.566102,0.671698,0.0720078,0.156058,0.659369,0.161179,0.916193,0.445805,0.533752,0.729598,0.152226,0.144105,0.880355,0.746567,0.50315,0.179478,0.145561,0.445786,0.157788,0.822204,0.597608,0.257071,0.97333,0.983433,0.721818,0.272372,0.0484986,0.725847,0.513029,0.0907844,0.603315,0.135793,0.583098,0.930055,0.574462,0.79819,0.519653,0.176037,0.589256,0.590238,0.425436,0.181392,0.468403,0.389908,0.995561,0.772391,0.956486,0.857909,0.461529,0.404991,0.205056,0.431466,0.294204,0.649695,0.0452636,0.742406,0.0595342,0.222287,0.0568087,0.268543,0.934675,0.873238,0.0035376,0.351227,0.918156,0.259491,0.451475,0.326833,0.627887,0.754722,0.0980372,0.305434,0.0850697,0.389969,0.890791,0.0119513,0.987973,0.249621,0.223361,0.957482,0.342378,0.166948,0.315175,0.191978,0.00891739,0.0999774,0.661919,0.783208,0.931046,0.768233,0.0692586,0.611017,0.505098,0.514827,0.810239,0.860462,0.527493,0.834444,0.0208926,0.567776,0.932642,0.745424,0.636764,0.605276,0.865824,0.090672,0.263063,0.255619,0.690206,0.115982,0.637018,0.577173,0.577719,0.495147,0.518814,0.406531,0.333732,0.367651,0.296603,0.193686,0.0209012,0.0230391,0.196605,0.743738,0.143117,0.481241,0.993882,0.737719,0.951511,0.84165,0.885659,0.705732,0.565007,0.930402,0.602052,0.18847,0.0400805,0.208388,0.00399125,0.0214382,0.163126,0.668934,0.269154,0.483114,0.227245,0.833909,0.110323,0.439131,0.350956,0.606146,0.34367,0.200414,0.16914,0.354343,0.541675,0.172822,0.718722,0.456651,0.59059,0.205851,0.775122,0.710988,0.0223963,0.958974,0.143828,0.379417,0.155873,0.232524,0.250614,0.353351,0.115399,0.558945,0.20681,0.850617,0.375388,0.693677,0.543171,0.178309,0.778205,0.699857,0.329197,0.924991,0.357127,0.427049,0.488565,0.714034,0.570828,0.671487,0.137757,0.448727,0.490145,0.150563,0.976669,0.143129,0.886534,0.959618,0.936687,0.67026,0.740653,0.558208,0.522456,0.851757,0.734124,0.188719,0.726892,0.776329,0.0988548,0.391926,0.842702,0.544266,0.95555,0.045621,0.557154,0.425707,0.0346155,0.90726,0.977036,0.99774,0.139682,0.91608,0.48429,0.0964976,0.641003,0.875199,0.0328429,0.508904,0.698893,0.0577189,0.28395,0.99624,0.653618,0.217025,0.966372,0.436708,0.808998,0.25221,0.465562,0.816916,0.223195,0.185573,0.472152,0.248564,0.489966,0.447769,0.0226853,0.510304,0.603072,0.137148,0.620821,0.186899,0.180055,0.576483,0.613611,0.548009,0.687982,0.897475,0.597596,0.699199,0.377064,0.576847,0.388008,0.769151,0.764879,0.887783,0.650933,0.489812,0.166697,0.04448,0.162116,0.993615,0.670155,0.248514,0.0372332,0.818791,0.976448,0.0800799,0.487524,0.0588314,0.698035,0.877962,0.662894,0.0886879,0.573265,0.419015,0.861723,0.720159,0.258915,0.0691831,0.283827,0.422955,0.89652,0.635354,0.0523878,0.95676,0.375583,0.82031,0.945355,0.0277326,0.463746,0.997325,0.294964,0.218713,0.402122,0.913505,0.283698,0.489082,0.791523,0.161281,0.286089,0.990723,0.635579,0.971765,0.218262,0.677919,0.9839,0.626827,0.81402,0.354644,0.127744,0.427773,0.488365,0.368544,0.977169,0.974146,0.356977,0.493097,0.529646,0.608753,0.909002,0.212025,0.140657,0.376589,0.708087,0.173357,0.663638,0.176143,0.878223,0.711456,0.257166,0.327585,0.799073,0.380424,0.157915,0.056631,0.341216,0.337389,0.304463,0.130086,0.331924,0.699187,0.317048,0.680069,0.407875,0.452767,0.853774,0.920261,0.0490932,0.0357192,0.75571,0.910386,0.00553918,0.596871,0.776612,0.0129968,0.23107,0.732691,0.443227,0.831173,0.152116,0.318794,0.590374,0.598351,0.496257,0.785837,0.0723388,0.531901,0.90467,0.44604,0.0531462,0.955992,0.894317,0.732687,0.290542,0.267866,0.33936,0.979277,0.0145607,0.225334,0.566984,0.149751,0.968285,0.767953,0.83978,0.671452,0.242106,0.764207,0.79958,0.547592,0.491631,0.025857,0.431956,0.939935,0.474964,0.329081,0.706922,0.624515,0.816674,0.370803,0.521459,0.665704,0.611583,0.610903,0.678102,0.340276,0.0514835,0.825894,0.0113238,0.306359,0.951158,0.739431,0.144812,0.806421,0.804228,0.0611116,0.300839,0.801498,0.452831,0.0299143,0.7858,0.0813061,0.757092,0.144695,0.238908,0.827457,0.437229,0.744877,0.585274,0.895172,0.307531,0.582685,0.833362,0.378062,0.641728,0.131247,0.188338,0.965826,0.472186,0.615353,0.498751,0.189979,0.941748,0.506642,0.318805,0.757507,0.77877,0.890742,0.830855,0.351076,0.796257,0.135219,0.630352,0.751486,0.501717,0.342598,0.144271,0.476426,0.227271,0.914357,0.924489,0.44128,0.145014,0.101266,0.499764,0.176745,0.686644,0.456065,0.10835,0.0768496,0.179832,0.34753,0.629537,0.0702827,0.973805,0.543873,0.2151,0.583054,0.840469,0.923875,0.800626,0.987666,0.366598,0.717579,0.798091,0.776044,0.533969,0.215644,0.317836,0.770427,0.0769449,0.741527,0.67452,0.266824,0.0439118,0.539411,0.398218,0.549963,0.0732794,0.665926,0.645617,0.743392,0.0186399,0.18131,0.242742,0.70702,0.94815,0.226129,0.19661,0.0969617,0.703689,0.0852904,0.530564,0.927189,0.0592511,0.703784,0.375549,0.794557,0.594511,0.307994,0.84647,0.211779,0.0323961,0.0216826,0.46883,0.172089,0.90817,0.291016,0.328999,0.987752,0.779542,0.111612,0.446997,0.85134,0.747774,0.916201,0.443867,0.847325,0.626351,0.350265,0.734675,0.573702,0.485003,0.487352,0.373584,0.793756,0.939237,0.302536,0.722222,0.84509,0.832919,0.900237,0.901062,0.779859,0.566978,0.918606,0.256142,0.895634,|0.579642,0.234039,0.947399,0.420463,0.968135,0.41471,0.334534,0.334504,0.722448,0.869351,0.446905,0.18783,0.980464,0.381283,0.570411,0.674164,0.271465,0.532484,0.170812,0.141928,0.134058,0.649388,0.450445,0.582948,0.658476,0.594697,0.886613,0.126304,0.860966,0.158195,0.796708,0.546736,0.781424,0.858675,0.134866,0.851525,0.958301,0.78278,0.846127,0.667194,0.414004,0.104905,0.0325146,0.491462,0.468178,0.588809,0.00657219,0.498893,0.834013,0.0290546,0.745127,0.00638831,0.376368,0.323174,0.43581,0.146469,0.612274,0.687734,0.356131,0.543796,0.965031,0.35094,0.977482,0.55978,0.352739,0.162069,0.147891,0.150561,0.537853,0.0998998,0.900683,0.664049,0.466799,0.0485386,0.481568,0.519361,0.0919809,0.371599,0.144887,0.946923,0.635452,0.774836,0.145069,0.826044,0.750227,0.18053,0.255799,0.615687,0.0941991,0.445224,0.805342,0.44416,0.492974,0.699509,0.189553,0.152239,0.687887,0.770715,0.373154,0.0822152,0.212918,0.056473,0.701957,0.792364,0.0820817,0.087677,0.0993605,0.142963,0.464493,0.117917,0.284588,0.214176,0.950903,0.272689,0.217276,0.82501,0.876903,0.592564,0.965801,0.988918,0.172827,0.0209938,0.756214,0.191779,0.518621,0.840489,0.725784,0.273309,0.352884,0.804526,0.53178,0.599313,0.223554,0.235817,0.529073,0.138958,0.44173,0.228271,0.548786,0.762176,0.510737,0.23559,0.190436,0.255359,0.463749,0.801384,0.349115,0.782138,0.189003,0.84251,0.961422,0.424946,0.942346,0.0688695,0.0461215,0.22606,0.878744,0.187094,0.456664,0.16957,0.450699,0.200584,0.192376,0.459484,0.326364,0.433094,0.739082,0.164741,0.169246,0.990002,0.0500606,0.216221,0.0377976,0.115626,0.174566,0.250796,0.639437,0.572484,0.349713,0.0458703,0.0213166,0.127209,0.425855,0.0294421,0.269779,0.559991,0.991385,0.98989,0.212403,0.3143,0.178947,0.402893,0.809211,0.907951,0.228528,0.450773,0.327365,0.120049,0.13536,0.677201,0.307648,0.155849,0.682699,0.349298,0.765986,0.449855,0.779206,0.585015,0.545387,0.710531,0.278379,0.685426,0.832841,0.254592,0.275251,0.978853,0.339418,0.672311,0.516275,0.544879,0.632049,0.664694,0.0678045,0.744672,0.773125,0.519586,0.316972,0.107795,0.126715,0.341952,0.350713,0.342497,0.0830044,0.807753,0.201384,0.187169,0.221294,0.430617,0.10348,0.143799,0.53666,0.908744,0.224393,0.172464,0.731741,0.492689,0.275641,0.180818,0.225279,0.195663,0.0932738,0.745949,0.360983,0.502951,0.173498,0.0543185,0.484475,0.758788,0.0379089,0.24833,0.890239,0.13353,0.127953,0.161061,0.11507,0.603458,0.18361,0.990371,0.596275,0.210057,0.534323,0.769942,0.858321,0.87277,0.265371,0.166098,0.432581,0.609778,0.674442,0.50824,0.4977,0.2661,0.631909,0.0143982,0.592584,0.491422,0.446908,0.915118,0.277363,0.959307,0.885291,0.810915,0.775747,0.557373,0.00991917,0.200159,0.0700895,0.918137,0.836862,0.112656,0.0654479,0.0979648,0.955346,0.654835,0.990402,0.343694,0.31422,0.91692,0.980604,0.381327,0.711014,0.905169,0.829332,0.664356,0.667144,0.600977,0.521033,0.287095,0.690062,0.556901,0.52838,0.23411,0.563851,0.678497,0.423986,0.0714012,0.224475,0.522152,0.952513,0.297835,0.352954,0.670512,0.769989,0.648084,0.333921,0.0775586,0.781256,0.27055,0.333156,0.244647,0.283173,0.853469,0.852311,0.150341,0.375236,0.531198,0.831706,0.575717,0.868151,0.324697,0.394123,0.303689,0.499501,0.74561,0.0528624,0.390842,0.98653,0.0250303,0.865408,0.0364416,0.182284,0.986858,0.040144,0.458708,0.813344,0.420995,0.570193,0.616136,0.671706,0.82939,0.192384,0.48639,0.282922,0.327602,0.147306,0.445982,0.751206,0.325081,0.546763,0.463103,0.94914,0.475285,0.967353,0.323116,0.47303,0.422087,0.089727,0.57097,0.239782,0.956362,0.694114,0.553035,0.0192022,0.21411,0.371803,0.457492,0.199288,0.899185,0.359344,0.442651,0.405293,0.904993,0.831662,0.00443876,0.781312,0.346542,0.177702,0.846778,0.275438,0.548959,0.0786115,0.571919,0.64198,0.0277177,0.794967,0.992887,0.105293,0.421688,0.32918,0.43373,0.65446,0.123425,0.763483,0.746916,0.612236,0.363557,0.129619,0.167435,0.478127,0.240165,0.501226,0.0432972,0.145843,0.880647,0.0623391,0.511302,0.596149,0.0122949,0.403296,0.368778,0.970149,0.563944,0.237785,0.336154,0.0295403,0.956845,0.148316,0.880459,0.917229,0.956533,0.221533,0.140645,0.503107,0.127541,0.210591,0.00306433,0.825683,0.0382978,0.182314,0.144027,0.206256,0.0456092,0.351525,0.269234,0.653513,0.585332,0.832466,0.432103,0.681698,0.570705,0.261603,0.215352,0.373921,0.0748556,0.998146,0.483794,0.777619,0.657305,0.892811,0.0414375,0.733764,0.176986,0.944516,0.904644,0.404549,0.661307,0.247747,0.932615,0.0904146,0.962128,0.37604,0.793378,0.147779,0.565062,0.275687,0.781857,0.159425,0.449655,0.472842,0.0164578,0.436587,0.495676,0.116766,0.871065,0.512789,0.342938,0.385863,0.861637,0.165858,0.713171,0.403439,0.510546,0.358304,0.54403,0.327787,0.29681,0.473981,0.614887,0.872682,0.981581,0.425343,0.339332,0.789161,0.117128,0.788627,0.415868,0.770667,0.803415,0.50939,0.179712,0.555872,0.578048,0.300174,0.596743,0.902531,0.028326,0.973307,0.0942822,0.407534,0.019637,0.73681,0.280044,0.210609,0.928793,0.524513,0.48289,0.390388,0.29583,0.12768,0.632158,0.141731,0.9291,0.85802,0.119994,0.445974,0.395294,0.990884,0.373509,0.0492545,0.834643,0.958249,0.423811,0.738992,0.658379,0.242248,0.694068,0.0410537,0.412877,0.364685,0.728664,0.80031,0.480801,0.0317968,0.759934,0.404214,0.12553,0.205187,0.818759,0.194955,0.886612,0.335714,0.624657,0.787634,0.524769,0.351909,0.05923,0.0624761,0.17161,0.811563,0.948751,0.442135,0.938338,0.144498,0.309153,0.461818,0.516072,0.223961,0.651249,0.654769,0.642076,0.778511,0.900118,0.586896,0.0134298,0.564548,0.954319,0.0794531,0.485399,0.240514,0.123533,0.528161,0.655167,0.759679,0.0268989,0.100709,0.451875,0.945142,0.809,0.47463,0.663243,0.526961,0.0819485,0.750795,0.580685,0.310628,0.25329,0.945088,0.523624,0.161354,0.799624,0.218938,0.660617,0.261161,0.538231,0.826849,0.489015,0.0614902,0.467226,0.48059,0.400689,0.444676,0.585413,0.378697,0.338464,0.166969,0.849518,0.0399327,0.488487,0.506822,0.629661,0.0708405,0.59775,0.434958,0.268068,0.185699,0.0626257,0.571104,0.0248254,0.080743,0.388554,0.0173801,0.638133,0.26985,0.462623,0.406141,0.536488,0.57715,0.641916,0.861897,0.794163,0.670501,0.0603601,0.63311,0.601171,0.701798,0.498559,0.986261,0.993695,0.725165,0.0960493,0.228101,0.890785,0.206342,0.865927,0.730662,0.586042,0.500163,0.450077,0.191481,0.933227,0.608542,0.0267895,0.845647,0.606511,0.415074,0.596069,0.135443,0.725447,0.611952,0.203453,0.258723,0.177094,0.901479,0.700109,0.913745,0.682986,0.0933647,0.0813034,0.144802,0.108279,0.205143,0.922434,0.907265,0.93981,0.0566177,0.482871,0.411619,0.208495,0.406261,0.173164,0.532188,0.707742,0.597104,0.378128,0.552462,0.724207,0.292433,0.14525,0.848238,0.336427,0.269474,0.439036,0.910464,0.270396,0.549409,0.453476,0.759483,0.0753734,0.367393,0.552383,0.485793,0.0394917,0.21255,0.634005,0.0863792,0.297527,0.298274,0.32706,0.112409,0.0484604,0.86658,0.593701,0.652504,0.069814,0.579755,0.11918,0.324414,0.912086,0.723769,0.496936,0.694793,0.822367,0.289896,0.847856,0.584828,0.405391,0.5095,0.858987,0.947389,0.0537773,0.115742,0.538137,0.866015,0.322511,0.406646,0.650774,0.411678,0.630413,0.0370116,0.18176,0.913415,0.49065,0.809071,0.531948,0.0759665,0.900298,0.318594,0.499629,0.725809,0.741823,0.139215,0.998827,0.168156,0.117105,0.165791,0.446646,0.64378,0.191841,0.353859,0.0360646,0.657976,0.769122,0.968073,0.0794248,0.0119714,0.847111,0.853091,0.774712,0.172626,0.186645,0.856351,0.71686,0.329427,0.222335,0.526915,0.771717,0.629273,0.939489,0.982471,0.821956,0.376351,0.96328,0.0570348,0.977349,0.950164,0.748927,0.759392,0.522374,0.880634,0.220903,0.676255,0.408592,0.658263,0.342676,0.95744,0.724324,0.506592,0.511534,0.236491,0.276041,0.672289,0.348906,0.164316,0.0239778,0.0570884,0.655071,0.00705111,0.564951,0.509932,0.440215,0.184026,0.99055,0.798621,0.358533,0.801668,0.962663,0.334658,0.833312,0.581772,0.502234,0.487961,0.879943,0.937138,0.183558,0.739395,0.293174,0.209577,0.854731,0.913258,0.748593,0.910717,0.367342,0.265951,0.802379,0.35119,0.770276,0.678402,0.734242,0.850515,0.871615,0.0610168,0.687577,0.585557,0.172949,0.765612,0.557134,0.713577,0.869282,0.28256,0.248132,0.872825,0.276974,0.527034,0.281597,0.631194,0.0102837,0.543897,0.567356,0.70022,0.535287,0.31826,0.484357,0.495314,0.868485,0.352876,0.759683,0.90951,0.308494,0.413801,0.528234,0.267796,0.910142,0.182678,0.261144,0.858091,0.288736,0.81331,0.668372,0.743329,0.132621,0.985722,0.134627,0.980697,0.0950905,0.929352,0.724299,0.590861,0.474066,0.786979,0.763717,0.355768,0.742374,0.619554,0.146778,0.12979,0.823851,0.102818,0.232298,0.770329,0.0559514,0.256486,0.59107,0.422239,0.658448,0.635864,0.302807,0.970536,0.779263,0.700765,0.464077,0.479502,0.987815,0.213948,0.710137,0.0710536,0.241373,0.992535,0.462991,0.378062,0.804674,0.54705,0.708512,0.263641,0.164277,0.56511,0.620094,0.619253,0.988892,0.571739,0.628758,0.357492,0.972304,0.000571847,0.510881,0.837692,0.414998,0.995015,0.603165,0.83548,0.111418,0.916158,0.0705005,0.434151,0.420343,0.0021714,0.836357,0.909681,0.268987,0.398049,0.929132,0.332302,0.318334,0.306278,0.748008,0.962526,0.549867,0.721875,0.967156,0.918056,0.51084,|0.482773,0.44267,0.504255,0.0121182,0.638529,0.266144,0.632389,0.213298,0.204955,0.502231,0.598207,0.917484,0.918937,0.580492,0.651359,0.509051,0.713798,0.621017,0.941622,0.709544,0.701813,0.942726,0.378249,0.53573,0.709659,0.335397,0.858884,0.76859,0.0446165,0.22763,0.0028125,0.05836,0.178277,0.0350913,0.493735,0.653347,0.699027,0.33508,0.0676417,0.215056,0.585907,0.229682,0.854279,0.731029,0.800403,0.148772,0.712132,0.241509,0.151243,0.468644,0.116828,0.718315,0.331203,0.19784,0.135534,0.0438895,0.115494,0.618987,0.971961,0.0178782,0.647692,0.977864,0.707466,0.689331,0.899953,0.945505,0.129569,0.254189,0.507881,0.314045,0.246809,0.497966,0.277864,0.97496,0.750211,0.875978,0.815991,0.379083,0.866631,0.623223,0.444071,0.201541,0.302929,0.738405,0.851632,0.289025,0.974326,0.465328,0.317078,0.0910258,0.455961,0.670933,0.30886,0.0646259,0.69809,0.439093,0.34168,0.243217,0.980498,0.517891,0.514788,0.0321265,0.753274,0.424728,0.349338,0.549759,0.754909,0.871771,0.00846273,0.346777,0.900813,0.741784,0.165225,0.482172,0.462705,0.0635876,0.160912,0.577892,0.331039,0.73482,0.445977,0.97386,0.186733,0.826564,0.934922,0.451128,0.733897,0.0445127,0.101594,0.258097,0.999875,0.820472,0.391283,0.973288,0.551885,0.327405,0.5807,0.117296,0.809777,0.255007,0.921543,0.625425,0.727265,0.871369,0.496376,0.276555,0.0818442,0.50756,0.184259,0.359988,0.554616,0.223163,0.758286,0.839153,0.474164,0.938539,0.0424573,0.850203,0.916074,0.342473,0.655168,0.590989,0.791668,0.202697,0.586388,0.282454,0.371596,0.551114,0.436176,0.986828,0.384901,0.186204,0.00731713,0.858284,0.774584,0.475268,0.602569,0.843034,0.210512,0.614604,0.134641,0.641883,0.820273,0.716441,0.290866,0.464857,0.967915,0.0389487,0.445605,0.0983554,0.804695,0.436946,0.619885,0.587978,0.862404,0.433283,0.0740423,0.669442,0.796209,0.070272,0.947584,0.466723,0.693132,0.209234,0.367179,0.0594472,0.645292,0.887212,0.294351,0.344155,0.0180932,0.494078,0.907585,0.984834,0.973842,0.547051,0.919447,0.934434,0.28856,0.190032,0.070911,0.374111,0.334947,0.880871,0.80312,0.127532,0.177858,0.927752,0.275196,0.100851,0.474347,0.015722,0.726399,0.850256,0.381061,0.47432,0.380294,0.179908,0.117774,0.648342,0.124379,0.740057,0.568407,0.591691,0.535566,0.706777,0.730681,0.207222,0.949153,0.89286,0.568083,0.6017,0.030332,0.732482,0.436278,0.99199,0.989763,0.157634,0.518204,0.0122138,0.559221,0.14378,0.546553,0.0307156,0.782589,0.865088,0.0610148,0.182465,0.687047,0.706331,0.397847,0.792898,0.619112,0.147995,0.898678,0.980043,0.0414337,0.225922,0.908717,0.654154,0.141955,0.342677,0.733195,0.789807,0.0456116,0.853947,0.907472,0.854709,0.115442,0.293774,0.256336,0.0509658,0.436635,0.610282,0.0908029,0.633818,0.559022,0.61645,0.0295462,0.356045,0.229524,0.491198,0.669816,0.359174,0.00183517,0.278642,0.727923,0.73323,0.812858,0.313834,0.267571,0.950416,0.513991,0.462681,0.11885,0.666738,0.235027,0.904653,0.15682,0.197634,0.905669,0.189378,0.127329,0.897525,0.910872,0.202625,0.227944,0.557151,0.593125,0.559378,0.0429791,0.00254261,0.370383,0.451499,0.639571,0.0343905,0.274336,0.35195,0.0578249,0.518756,0.517591,0.0447855,7.88569e-05,0.10817,0.655544,0.746647,0.899151,0.205671,0.750557,0.835692,0.508258,0.0709521,0.0672534,0.103271,0.692914,0.153826,0.833343,0.101438,0.853015,0.243157,0.441384,0.304523,0.161315,0.725085,0.122174,0.514311,0.33765,0.456653,0.369397,0.938882,0.732054,0.840023,0.0560626,0.177093,0.985517,0.420464,0.405515,0.809145,0.550988,0.335666,0.202906,0.664928,0.0614685,0.695837,0.654871,0.720826,0.215943,0.223165,0.694135,0.99474,0.886598,0.827429,0.671752,0.734644,0.680127,0.706507,0.993937,0.764562,0.525083,0.987844,0.0161719,0.742155,0.153213,0.635902,0.105391,0.392501,0.977633,0.556663,0.107543,0.448416,0.32544,0.251031,0.895949,0.697145,0.728806,0.651844,0.240939,0.466716,0.563189,0.57693,0.99468,0.812421,0.865787,0.297558,0.981577,0.0643645,0.340054,0.0545838,0.0215253,0.864967,0.802419,0.0031963,0.921744,0.430543,0.45088,0.947312,0.399957,0.617192,0.868478,0.944281,0.974112,0.370308,0.940899,0.804551,0.874358,0.496555,0.469889,0.971218,0.268048,0.678467,0.642755,0.780811,0.0493392,0.486617,0.997062,0.922985,0.15773,0.00841439,0.7285,0.811156,0.547898,0.0670723,0.810744,0.158742,0.391358,0.264635,0.753089,0.0757182,0.394499,0.364796,0.359784,0.775533,0.728641,0.00666547,0.493573,0.935649,0.835935,0.761293,0.634771,0.210922,0.0331545,0.0708356,0.851236,0.879852,0.683797,0.76262,0.190911,0.14361,0.338708,0.398762,0.2315,0.0405206,0.0106124,0.773139,0.678388,0.101365,0.0663639,0.036549,0.402527,0.923451,0.486748,0.196247,0.0594457,0.891243,0.600236,0.370841,0.813578,0.174485,0.0690309,0.977432,0.384602,0.18126,0.309201,0.718334,0.355752,0.116799,0.884721,0.135467,0.839341,0.6292,0.26731,0.257627,0.138098,0.548015,0.700783,0.589332,0.619144,0.801639,0.233786,0.688828,0.510696,0.715654,0.994148,0.46207,0.292586,0.629219,0.00935727,0.0129671,0.114764,0.905731,0.721843,0.886351,0.280437,0.775543,0.854665,0.965426,0.189253,0.123111,0.772247,0.634411,0.786161,0.364353,0.862583,0.700747,0.537616,0.589043,0.877984,0.381271,0.17588,0.444863,0.521817,0.609743,0.121436,0.826858,0.0446351,0.399037,0.313719,0.32715,0.983363,0.454352,0.361564,0.0987036,0.152035,0.0719231,0.495643,0.197412,0.79081,0.535582,0.0687685,0.78532,0.850773,0.227456,0.444357,0.710453,0.869249,0.857407,0.640941,0.295183,0.939096,0.843395,0.294963,0.198223,0.0617313,0.978169,0.664092,0.0700899,0.691475,0.236562,0.459607,0.336799,0.68454,0.669977,0.564686,0.234612,0.202407,0.324944,0.18145,0.941908,0.757545,0.296575,0.418994,0.975307,0.955338,0.365643,0.774704,0.650364,0.385358,0.925184,0.929915,0.477588,0.461913,0.654282,0.310338,0.0389923,0.279898,0.587372,0.898898,0.498217,0.597372,0.126509,0.270592,0.017082,0.101908,0.354697,0.488966,0.69465,0.7606,0.265208,0.995751,0.117174,0.9805,0.241779,0.658818,0.849741,0.737412,0.346819,0.955715,0.250623,0.640912,0.519052,0.230035,0.69494,0.188445,0.650594,0.537743,0.53027,0.892363,0.747433,0.0923845,0.270798,0.822516,0.657938,0.456905,0.94562,0.786599,0.529037,0.0576089,0.291901,0.287844,0.778377,0.219361,0.534152,0.49587,0.244059,0.940542,0.657335,0.845963,0.565503,0.784323,0.144422,0.907971,0.887449,0.202462,0.65555,0.0801775,0.648492,0.785737,0.751347,0.92409,0.868344,0.78728,0.275675,0.216258,0.82537,0.69299,0.276364,0.956514,0.716453,0.0215471,0.963948,0.657469,0.806856,0.926572,0.00743014,0.510286,0.816817,0.305587,0.498247,0.89899,0.478164,0.552101,0.989325,0.90737,0.458688,0.205248,0.286335,0.223568,0.36915,0.847184,0.227828,0.285619,0.70655,0.788541,0.991183,0.0052793,0.36384,0.803266,0.192994,0.899898,0.0619404,0.637719,0.0299559,0.8879,0.616799,0.154154,0.241867,0.445454,0.0932158,0.391025,0.479142,0.289536,0.825443,0.130758,0.88357,0.331862,0.903972,0.400478,0.818321,0.579425,0.349767,0.645388,0.129031,0.726296,0.395397,0.127602,0.172181,0.725939,0.800663,0.358598,0.690176,0.555798,0.626191,0.883822,0.48333,0.590248,0.496911,0.525354,0.166783,0.234663,0.475618,0.945665,0.490797,0.846117,0.263764,0.284921,0.0694786,0.0843278,0.661881,0.24731,0.0886567,0.920263,0.929088,0.709856,0.385358,0.867159,0.143047,0.984007,0.280928,0.912645,0.338514,0.312909,0.90864,0.496444,0.638222,0.763711,0.768915,0.300199,0.847739,0.0260879,0.567611,0.622331,0.738902,0.742506,0.732727,0.0549358,0.680385,0.997657,0.36296,0.996227,0.88103,0.2373,0.234092,0.0839819,0.00443196,0.649421,0.21137,0.888864,0.00731498,0.163906,0.20295,0.294702,0.281933,0.711976,0.26851,0.749765,0.76328,0.201622,0.507829,0.746632,0.229578,0.802451,0.802212,0.886761,0.743036,0.0181009,0.232275,0.256203,0.61039,0.298907,0.285326,0.895156,0.420959,0.366351,0.199601,0.88105,0.786023,0.915091,0.235048,0.661575,0.139753,0.970286,0.550705,0.19698,0.529083,0.194689,0.611161,0.640734,0.769137,0.482155,0.925814,0.930329,0.135254,0.0585823,0.158498,0.371629,0.401996,0.292983,0.84241,0.328293,0.482657,0.556302,0.734825,0.909798,0.865968,0.730927,0.363913,0.538947,0.619312,0.925224,0.150653,0.641352,0.894724,0.897311,0.607149,0.0946404,0.674033,0.604622,0.538696,0.601376,0.325009,0.0200936,0.54263,0.35564,0.984563,0.0331595,0.229649,0.576399,0.815288,0.562115,0.355175,0.483558,0.617438,0.0162183,0.827387,0.540743,0.0279477,0.6295,0.152573,0.526611,0.853378,0.316042,0.712029,0.133044,0.510736,0.747798,0.187292,0.283596,0.398517,0.557201,0.682473,0.088599,0.343514,0.666984,0.411054,0.107235,0.405081,0.24759,0.169769,0.761404,0.237191,0.473528,0.381323,0.403424,0.612996,0.329373,0.923288,0.819921,0.696676,0.91778,0.791777,0.3397,0.78328,0.843138,0.0328038,0.832718,0.159637,0.489926,0.238686,0.769508,0.620482,0.219568,0.572651,0.4794,0.160854,0.317173,0.635679,0.271861,0.448763,0.939193,0.433905,0.664436,0.355145,0.461102,0.454017,0.882326,0.0469395,0.621757,0.0121282,0.928317,0.738689,0.24534,0.0124465,0.502914,0.472268,0.120908,0.181888,0.332342,0.576238,0.0645114,0.0615885,0.988141,0.788966,0.876018,0.290575,0.0125997,0.0581555,0.795583,0.641371,0.489817,0.156952,0.377326,0.385201,0.757219,0.385082,0.506801,0.507135,0.62516,0.139387,0.702946,0.592402,|0.721076,0.0127749,0.0446194,0.706073,0.7677,0.428173,0.780778,0.485708,0.218144,0.177818,0.744525,0.163748,0.583865,0.413098,0.704644,0.642189,0.100096,0.975348,0.222451,0.8107,0.698738,0.876108,0.756302,0.202464,0.717502,0.847774,0.278278,0.00497699,0.0140843,0.252798,0.961948,0.23343,0.429473,0.814557,0.790726,0.388298,0.654119,0.705195,0.450625,0.976695,0.780409,0.585356,0.345674,0.210502,0.574278,0.771796,0.503537,0.206755,0.620435,0.92855,0.905671,0.870555,0.824962,0.296447,0.868978,0.309881,0.646561,0.130262,0.508336,0.873746,0.997488,0.823121,0.339887,0.209495,0.239999,0.701771,0.851222,0.97124,0.0741683,0.563866,0.900961,0.675666,0.452311,0.266344,0.486786,0.911656,0.758206,0.29755,0.24915,0.498805,0.943096,0.427006,0.552997,0.202152,0.810115,0.332829,0.0627972,0.918091,0.0269762,0.839988,0.766789,0.950777,0.193062,0.661516,0.519609,0.134963,0.340373,0.193984,0.923915,0.179838,0.127775,0.49339,0.796404,0.207021,0.336239,0.936437,0.0359543,0.459398,0.749946,0.218593,0.161487,0.0296312,0.682115,0.439111,0.487516,0.164982,0.561348,0.467852,0.087689,0.374689,0.327053,0.277108,0.178575,0.831837,0.640686,0.63029,0.221958,0.74286,0.847928,0.829978,0.222817,0.136564,0.736988,0.191354,0.666493,0.994975,0.623484,0.375629,0.59324,0.0271672,0.259242,0.909756,0.0567819,0.00854528,0.0913066,0.772919,0.89468,0.0595905,0.65063,0.0171721,0.34868,0.857781,0.575356,0.727715,0.397515,0.304806,0.208036,0.305376,0.191918,0.411821,0.437902,0.185687,0.27622,0.324768,0.781488,0.546676,0.199668,0.739405,0.785602,0.0954688,0.0895496,0.659866,0.990647,0.178843,0.471208,0.782181,0.781684,0.105123,0.816756,0.0270891,0.888422,0.437511,0.869568,0.133458,0.0231306,0.0783022,0.511404,0.575263,0.240069,0.723739,0.891661,0.522034,0.125123,0.480762,0.939747,0.790146,0.487421,0.933902,0.669765,0.958363,0.407809,0.836216,0.330227,0.335029,0.973577,0.300026,0.0555739,0.00861096,0.550471,0.171727,0.282765,0.929708,0.1738,0.160507,0.829541,0.245102,0.183721,0.138948,0.929112,0.0943491,0.378862,0.784911,0.369997,0.379068,0.694055,0.937789,0.00856918,0.832424,0.627117,0.345623,0.907578,0.00920159,0.893382,0.230117,0.333058,0.442741,0.754393,0.657245,0.49313,0.940359,0.0562338,0.833419,0.0394107,0.976068,0.474035,0.372691,0.626304,0.650537,0.528953,0.689056,0.381053,0.490041,0.120629,0.134316,0.14532,0.497713,0.692755,0.794601,0.16436,0.509098,0.102951,0.246915,0.0504146,0.267842,0.997226,0.218901,0.178943,0.124765,0.337907,0.298018,0.939333,0.660028,0.241947,0.571611,0.0709855,0.467547,0.0152406,0.129133,0.630921,0.884798,0.00153595,0.859451,0.0621014,0.0237483,0.388008,0.594995,0.679231,0.0317495,0.935225,0.590648,0.346159,0.954677,0.373601,0.213239,0.479,0.550961,0.954958,0.167263,0.378187,0.0436193,0.395359,0.199491,0.222446,0.303347,0.804737,0.876074,0.390491,0.721483,0.744522,0.718404,0.0744764,0.232673,0.749598,0.997109,0.737689,0.11294,0.7426,0.280539,0.0622303,0.652855,0.0257283,0.695157,0.352796,0.689622,0.97469,0.720732,0.124327,0.736846,0.442176,0.673286,0.37505,0.321731,0.381302,0.905902,0.0544708,0.972239,0.271563,0.812007,0.622401,0.0251793,0.396012,0.882118,0.785655,0.968708,0.3348,0.528193,0.221136,0.683548,0.321354,0.126133,0.704158,0.0480336,0.0381052,0.956608,0.260163,0.660421,0.647178,0.67538,0.9638,0.135877,0.0758004,0.605566,0.60971,0.606328,0.137348,0.281518,0.903243,0.0800633,0.0457822,0.625047,0.751612,0.314921,0.0832955,0.887296,0.800418,0.840268,0.338279,0.252594,0.371476,0.358975,0.945655,0.861487,0.88313,0.0457342,0.3726,0.672886,0.708074,0.997112,0.698253,0.104242,0.237787,0.416445,0.0811505,0.777594,0.944158,0.507493,0.410205,0.162287,0.45231,0.63826,0.814498,0.320777,0.645868,0.0172722,0.643467,0.875681,0.346764,0.509785,0.030252,0.418121,0.795271,0.616018,0.118329,0.884711,0.649252,0.852257,0.628223,0.44832,0.512083,0.961583,0.272279,0.274991,0.420923,0.983477,0.339894,0.335103,0.053296,0.979262,0.584399,0.23181,0.169512,0.874538,0.912663,0.49564,0.987952,0.579315,0.143895,0.686508,0.544685,0.589008,0.819328,0.822514,0.812408,0.136521,0.837865,0.102864,0.98155,0.0828733,0.00252604,0.0974398,0.819905,0.462099,0.901291,0.412232,0.0592474,0.249676,0.257723,0.198234,0.442742,0.441121,0.464901,0.413764,0.97409,0.469117,0.508251,0.935342,0.575071,0.963876,0.899633,0.583412,0.243367,0.962173,0.832216,0.527925,0.915247,0.418074,0.590979,0.77498,0.369559,0.399703,0.415815,0.984904,0.445452,0.463389,0.858708,0.0141659,0.740426,0.153081,0.396172,0.776582,0.0484243,0.0450117,0.684345,0.500828,0.337725,0.210785,0.245021,0.451474,0.977858,0.377801,0.0107336,0.318499,0.0952999,0.00962549,0.274998,0.510408,0.121345,0.0233366,0.769298,0.0267594,0.0914717,0.596579,0.22796,0.814185,0.631177,0.315515,0.221554,0.487805,0.336163,0.230207,0.158267,0.544381,0.459983,0.417032,0.119404,0.0678293,0.560466,0.136861,0.25195,0.0152744,0.436315,0.8021,0.702784,0.506293,0.197988,0.455655,0.486951,0.568187,0.485699,0.0767601,0.032385,0.454983,0.97886,0.963404,0.181153,0.515901,0.0874359,0.00883329,0.433877,0.217597,0.326449,0.368893,0.452931,0.52623,0.634255,0.311458,0.427215,0.251194,0.16781,0.369446,0.298712,0.459897,0.697822,0.14445,0.915856,0.652644,0.981564,0.728028,0.0766432,0.934155,0.0686117,0.916982,0.658005,0.867307,0.676728,0.682856,0.70017,0.0399284,0.531236,0.346223,0.362631,0.345043,0.334223,0.740043,0.197216,0.480796,0.365265,0.415697,0.268865,0.812239,0.75373,0.889312,0.911071,0.167555,0.48053,0.833426,0.50719,0.98643,0.283777,0.449768,0.818059,0.854501,0.553634,0.178252,0.0473011,0.114684,0.988346,0.0690562,0.139834,0.402729,0.477553,0.941687,0.0504414,0.0513009,0.446896,0.179111,0.675162,0.754886,0.00584048,0.120366,0.448435,0.595993,0.976356,0.498885,0.903987,0.708755,0.318958,0.141901,0.376344,0.176765,0.622487,0.527768,0.953553,0.371262,0.71333,0.559202,0.114043,0.181484,0.326937,0.369479,0.221254,0.189397,0.951625,0.146552,0.667226,0.00202525,0.54464,0.709428,0.236132,0.214429,0.7716,0.769431,0.624457,0.94174,0.766088,0.415981,0.377429,0.927751,0.467469,0.560452,0.92939,0.357312,0.174175,0.360956,0.680677,0.0820578,0.665412,0.73432,0.69002,0.723869,0.628009,0.600029,0.356713,0.484375,0.641782,0.168638,0.060345,0.664297,0.972215,0.583557,0.167459,0.614418,0.796542,0.551306,0.281206,0.760155,0.114883,0.61286,0.66907,0.417795,0.453209,0.640897,0.243086,0.824091,0.700711,0.502746,0.473747,0.207325,0.205328,0.584194,0.19318,0.217822,0.968925,0.780406,0.391673,0.538846,0.922304,0.611195,0.100469,0.746816,0.586373,0.908341,0.168746,0.431085,0.439031,0.803578,0.251968,0.440255,0.218238,0.672105,0.90656,0.693115,0.87279,0.626425,0.550253,0.830077,0.57171,0.761583,0.58734,0.352116,0.958552,0.175322,0.816373,0.509442,0.680088,0.772699,0.998858,0.0573348,0.217589,0.746856,0.981288,0.202401,0.112004,0.645657,0.25757,0.544532,0.937286,0.619489,0.728369,0.0104536,0.238281,0.89655,0.436559,0.158221,0.665688,0.212539,0.986398,0.826379,0.506588,0.332628,0.913523,0.265027,0.50492,0.321652,0.492484,0.986436,0.858371,0.93897,0.11435,0.523807,0.395644,0.869924,0.565152,0.104804,0.860483,0.289739,0.523012,0.215213,0.617933,0.902499,0.921371,0.467538,0.580712,0.0478253,0.994434,0.542097,0.982582,0.392981,0.682063,0.628862,0.441452,0.262031,0.933553,0.815729,0.856646,0.969939,0.649782,0.33555,0.804827,0.984079,0.538687,0.599955,0.693583,0.53193,0.495337,0.888714,0.730153,0.733114,0.474791,0.198255,0.185102,0.357363,0.0562999,0.923085,0.882035,0.340572,0.539628,0.369694,0.020938,0.334611,0.166571,0.858649,0.391224,0.566356,0.754821,0.636925,0.548267,0.956767,0.676094,0.450037,0.555595,0.626131,0.171844,0.82278,0.374453,0.174156,0.174531,0.223042,0.679016,0.170522,0.314952,0.734443,0.357762,0.630669,0.867107,0.224659,0.798459,0.252512,0.476388,0.584042,0.696981,0.0841224,0.359019,0.738535,0.228553,0.533998,0.0102471,0.0460723,0.124359,0.288508,0.241241,0.435655,0.452063,0.0281244,0.533537,0.408373,0.188476,0.726392,0.582737,0.0666681,0.0288072,0.377249,0.94324,0.949561,0.783959,0.65012,0.593101,0.675824,0.215752,0.785443,0.351848,0.371053,0.977949,0.732417,0.603352,0.165559,0.429441,0.867107,0.730237,0.826223,0.311206,0.51766,0.4965,0.545805,0.685305,0.426946,0.88512,0.816562,0.372968,0.547393,0.842803,0.152082,0.359689,0.06501,0.181462,0.659965,0.98745,0.0151725,0.426132,0.437417,0.836172,0.159659,0.872271,0.0427917,0.380445,0.947084,0.141241,0.486218,0.791178,0.950047,0.0026862,0.990221,0.0514681,0.752379,0.104542,0.380718,0.913438,0.909155,0.331205,0.377465,0.00883579,0.775402,0.158419,0.0438691,0.149291,0.890358,0.0671969,0.958795,0.699121,0.33316,0.489815,0.247748,0.767429,0.673389,0.985236,0.430665,0.369354,0.985578,0.806697,0.502924,0.505425,0.802193,0.946098,0.139806,0.94011,0.0281454,0.576813,0.247318,0.936981,0.19754,0.457147,0.976063,0.634706,0.190576,0.466335,0.284341,0.463009,0.178823,0.124463,0.0566146,0.114712,0.234385,0.0894618,0.583092,0.632331,0.111615,0.657834,0.485964,0.43499,0.0448362,0.395463,0.432298,0.956322,0.337226,0.423634,0.298251,0.35715,0.55414,0.179299,0.241901,0.857419,0.912723,0.248727,0.083703,0.0169847,0.770367,0.687224,0.3704,0.222538,0.445633,|0.949489,0.606182,0.0855901,0.767958,0.69771,0.296524,0.916766,0.10657,0.195704,0.0528573,0.275199,0.0456886,0.243697,0.0726394,0.0432892,0.329709,0.31089,0.964748,0.0345305,0.466476,0.045203,0.252817,0.304444,0.266234,0.406091,0.472479,0.912892,0.280362,0.494744,0.321779,0.0702428,0.568628,0.615177,0.319437,0.671713,0.35949,0.232627,0.723579,0.101919,0.773648,0.0014509,0.221019,0.569422,0.340458,0.430212,0.414575,0.487386,0.0359643,0.453443,0.35253,0.945309,0.477968,0.798492,0.961031,0.833553,0.815418,0.844747,0.281327,0.474784,0.478258,0.721864,0.533278,0.069313,0.7734,0.799738,0.76333,0.993268,0.474584,0.58277,0.59998,0.557659,0.727339,0.347451,0.109043,0.40171,0.741031,0.0859018,0.337819,0.617772,0.927783,0.0047546,0.537921,0.944632,0.77729,0.852888,0.451228,0.197029,0.895416,0.124906,0.580104,0.849435,0.121292,0.987394,0.475549,0.931255,0.808429,0.295305,0.136929,0.00655633,0.289629,0.316744,0.00767195,0.96955,0.761236,0.471854,0.747157,0.0219671,0.676113,0.238199,0.257926,0.359833,0.240401,0.093253,0.808267,0.140411,0.169556,0.353742,0.72986,0.564819,0.740097,0.566947,0.892816,0.155191,0.238511,0.559554,0.198593,0.118988,0.74248,0.3168,0.924444,0.474501,0.184562,0.453106,0.438232,0.127139,0.991615,0.184891,0.99945,0.876894,0.538353,0.169034,0.334774,0.862342,0.270972,0.0351823,0.561585,0.718564,0.384106,0.560198,0.716638,0.911805,0.0864938,0.458667,0.025571,0.238917,0.918997,0.419201,0.302479,0.00778586,0.615197,0.923112,0.352485,0.247665,0.712596,0.297348,0.680017,0.542286,0.452482,0.14219,0.439954,0.718473,0.415453,0.849216,0.568111,0.0484703,0.938348,0.217131,0.763336,0.936361,0.66275,0.195181,0.17768,0.15265,0.422353,0.59394,0.601589,0.724401,0.832238,0.921948,0.561083,0.793926,0.707988,0.403355,0.99399,0.619494,0.892742,0.981403,0.343746,0.0740424,0.0344136,0.602921,0.513856,0.178057,0.371766,0.881784,0.0743819,0.507491,0.37702,0.350579,0.813831,0.231138,0.432536,0.980436,0.111311,0.55306,0.45412,0.8405,0.953765,0.433751,0.729919,0.79906,0.426711,0.418598,0.709136,0.414603,0.196049,0.6234,0.887871,0.335677,0.0947536,0.535654,0.278931,0.767382,0.25698,0.932701,0.908592,0.23524,0.455671,0.933365,0.891914,0.590143,0.878443,0.448899,0.559646,0.779054,0.489355,0.593947,0.568046,0.0238979,0.979133,0.91794,0.788409,0.626199,0.151281,0.375955,0.588093,0.82497,0.372359,0.700697,0.526394,0.82525,0.0387467,0.887733,0.0594428,0.966108,0.878234,0.750054,0.450644,0.625064,0.373773,0.840904,0.544434,0.25645,0.0323614,0.441963,0.789166,0.842435,0.249814,0.719374,0.0793214,0.142441,0.549525,0.709679,0.726697,0.715287,0.979279,0.668535,0.127182,0.270253,0.976398,0.621451,0.872729,0.943666,0.120419,0.91494,0.343056,0.831924,0.659862,0.418622,0.0760296,0.809283,0.793685,0.106609,0.468323,0.305396,0.886446,0.639386,0.0764252,0.981708,0.71042,0.815668,0.486986,0.571454,0.811429,0.747403,0.610046,0.147645,0.58674,0.893243,0.251519,0.0657291,0.702699,0.329129,0.272288,0.607989,0.58692,0.645295,0.0439157,0.584644,0.0589981,0.485822,0.152995,0.804033,0.674906,0.580402,0.356228,0.364506,0.358636,0.739096,0.718962,0.985789,0.120758,0.191236,0.657715,0.151073,0.589206,0.076676,0.831186,0.438702,0.174031,0.0955517,0.150983,0.975593,0.878147,0.606647,0.183648,0.210496,0.745609,0.452431,0.0756333,0.240927,0.686403,0.0333927,0.59146,0.880558,0.743831,0.142994,0.39892,0.361665,0.256028,0.57526,0.0971535,0.755733,0.255573,0.0463732,0.0786365,0.146189,0.936252,0.977204,0.860459,0.261173,0.601414,0.783708,0.723553,0.577813,0.589489,0.949118,0.583275,0.608691,0.910863,0.91576,0.73313,0.0940767,0.115564,0.160134,0.107288,0.263497,0.411726,0.21383,0.205282,0.104242,0.443104,0.267962,0.672828,0.452581,0.988866,0.519211,0.515195,0.729593,0.506407,0.160689,0.684709,0.252429,0.963838,0.535989,0.668333,0.413558,0.658761,0.738132,0.941595,0.0110563,0.0932193,0.306331,0.237538,0.288804,0.96083,0.420329,0.21348,0.986101,0.929101,0.336415,0.255173,0.0347905,0.318327,0.216653,0.650275,0.333148,0.53177,0.736608,0.871156,0.624775,0.900182,0.737885,0.205659,0.383919,0.0564425,0.183708,0.675826,0.00311089,0.556394,0.134636,0.512913,0.690091,0.0893102,0.992773,0.158531,0.717729,0.682576,0.351437,0.938059,0.603188,0.0142069,0.160643,0.436202,0.715506,0.886769,0.489179,0.995304,0.829678,0.581673,0.284354,0.902427,0.419967,0.39038,0.177649,0.968926,0.0553449,0.221383,0.521217,0.0428913,0.691694,0.693578,0.927,0.292521,0.480043,0.503719,0.555388,0.34006,0.595839,0.0475791,0.0529617,0.884207,0.381427,0.628358,0.748094,0.545742,0.930165,0.35189,0.464368,0.347901,0.978892,0.598154,0.056443,0.425591,0.615085,0.650026,0.104773,0.575396,0.832946,0.4047,0.319454,0.962417,0.239344,0.767114,0.0198069,0.480866,0.693226,0.507528,0.516891,0.427289,0.523126,0.87813,0.677751,0.651814,0.846581,0.0859612,0.288636,0.851119,0.229616,0.549401,0.83949,0.530899,0.3112,0.491324,0.256066,0.104788,0.417375,0.78962,0.564117,0.892049,0.167548,0.756488,0.226231,0.833245,0.276016,0.676926,0.922247,0.945166,0.0992451,0.915749,0.300565,0.59288,0.324391,0.790214,0.0592086,0.419997,0.266071,0.204563,0.514647,0.828427,0.930059,0.20949,0.538885,0.979134,0.883981,0.236032,0.946192,0.892793,0.46426,0.268546,0.989125,0.372891,0.669628,0.422875,0.149195,0.144292,0.192697,0.59301,0.546098,0.850801,0.52437,0.826095,0.706218,0.61786,0.467751,0.361203,0.382541,0.515335,0.615168,0.776259,0.663405,0.148315,0.0727612,0.0581161,0.906805,0.252046,0.0496019,0.569138,0.908774,0.924164,0.795231,0.758605,0.978524,0.641825,0.569276,0.746927,0.858369,0.268572,0.486695,0.165698,0.760458,0.941585,0.0124587,0.256991,0.0701474,0.0365326,0.0253834,0.682278,0.416808,0.764205,0.664252,0.98729,0.149331,0.449288,0.954908,0.949437,0.462441,0.0158551,0.852371,0.768486,0.796766,0.993344,0.784483,0.542856,0.930958,0.901979,0.299558,0.89298,0.696441,0.695024,0.717692,0.18793,0.618417,0.542581,0.000731409,0.890187,0.253631,0.374139,0.210057,0.727881,0.505448,0.516325,0.407451,0.700639,0.195537,0.156002,0.996709,0.218495,0.281693,0.344914,0.577479,0.976488,0.284424,0.532588,0.723726,0.346758,0.329345,0.857378,0.668124,0.00981361,0.489439,0.0573528,0.515418,0.902829,0.409381,0.862691,0.542809,0.127979,0.0365717,0.0753609,0.82085,0.793808,0.129478,0.120018,0.623028,0.534558,0.97397,0.271057,0.191607,0.66027,0.431915,0.727942,0.321607,0.198464,0.769903,0.348987,0.423071,0.240101,0.66158,0.46703,0.278813,0.507124,0.643743,0.747482,0.762628,0.500941,0.53794,0.83204,0.757368,0.741699,0.200864,0.446379,0.433329,0.455493,0.410684,0.901326,0.989755,0.23034,0.351053,0.528089,0.973394,0.516228,0.0346834,0.860328,0.747947,0.48877,0.393409,0.750136,0.680047,0.792975,0.205724,0.552082,0.380239,0.649006,0.803586,0.362743,0.0224305,0.159379,0.239146,0.476871,0.140379,0.936105,0.240921,0.6018,0.091494,0.707164,0.817951,0.403881,0.0626902,0.860039,0.971668,0.681649,0.802757,0.314002,0.0681403,0.849418,0.469677,0.562143,0.787985,0.551779,0.732637,0.345917,0.442294,0.0237275,0.0104149,0.846732,0.516187,0.869709,0.475292,0.0760019,0.157994,0.882502,0.731027,0.240548,0.0895824,0.638885,0.146047,0.240272,0.704109,0.890987,0.128315,0.189259,0.349575,0.557878,0.101629,0.466127,0.113,0.76348,0.105977,0.917063,0.137704,0.542125,0.983444,0.626759,0.505699,0.308283,0.724441,0.134247,0.795998,0.440716,0.0992346,0.454928,0.412221,0.509795,0.00612736,0.874364,0.429282,0.384135,0.541651,0.832883,0.204478,0.32456,0.77763,0.474113,0.954858,0.634833,0.487748,0.863156,0.845895,0.17165,0.904725,0.326368,0.100584,0.721299,0.878594,0.121557,0.392046,0.0178133,0.401357,0.0631592,0.542574,0.0748343,0.436388,0.197616,0.197199,0.159421,0.472867,0.53662,0.442221,0.205517,0.545492,0.307729,0.436356,0.364798,0.241312,0.767942,0.43422,0.123109,0.928304,0.988518,0.536233,0.559823,0.434229,0.123341,0.482158,0.627827,0.493217,0.962807,0.391938,0.683784,0.592547,0.788488,0.136625,0.745451,0.269787,0.928657,0.0929144,0.323275,0.85287,0.501537,0.0157583,0.0919412,0.226867,0.475733,0.87175,0.0474581,0.798198,0.585383,0.00682658,0.145239,0.0515739,0.0671849,0.545652,0.0180799,0.383697,0.725065,0.168725,0.581804,0.469317,0.14461,0.666873,0.301843,0.662887,0.137285,0.0361377,0.579854,0.109716,0.0105012,0.374644,0.168204,0.469771,0.780958,0.991297,0.107949,0.435828,0.412637,0.729544,0.615226,0.312703,0.955674,0.686971,0.533297,0.399285,0.357774,0.182309,0.480692,0.541033,0.613237,0.28154,0.729274,0.603642,0.533883,0.877407,0.505949,0.278281,0.917517,0.363259,0.548899,0.191221,0.0792511,0.826268,0.249651,0.154331,0.527856,0.0111764,0.14069,0.849425,0.0295873,0.119751,0.992035,0.184073,0.0393732,0.801165,0.7673,0.243442,0.219868,0.834901,0.611956,0.818661,0.450532,0.761118,0.319232,0.658428,0.327154,0.860183,0.0664897,0.265172,0.652758,0.865999,0.31449,0.314655,0.699832,0.763251,0.183619,0.593132,0.749861,0.600652,0.834579,0.295726,0.605442,0.0497393,0.643409,0.0404986,0.00448799,0.373816,0.863535,0.236523,0.240382,0.328165,0.697944,0.0567039,0.748677,0.942282,0.601731,0.684843,0.143649,0.0986513,0.563162,0.132427,0.800151,0.38994,0.432267,0.271475,0.432313,0.190858,0.316489,0.229248,0.34076,0.420184,0.247381,|0.732556,0.175533,0.278975,0.125875,0.838358,0.254826,0.16484,0.63696,0.745259,0.612332,0.535785,0.878282,0.652121,0.535108,0.0774111,0.364289,0.886872,0.807498,0.207554,0.568565,0.398567,0.35531,0.0531256,0.0875188,0.0760478,0.30041,0.16721,0.912764,0.834943,0.796321,0.820826,0.0205904,0.0114936,0.782765,0.765606,0.365429,0.453682,0.794689,0.52505,0.301657,0.477387,0.0776781,0.56232,0.980533,0.809067,0.086324,0.370742,0.958492,0.907835,0.997463,0.0131206,0.627968,0.645325,0.914107,0.574877,0.111489,0.772912,0.866553,0.233127,0.964515,0.461429,0.476684,0.0158273,0.488287,0.518657,0.271496,0.177366,0.354193,0.02556,0.64492,0.781554,0.197226,0.425126,0.334805,0.842554,0.581355,0.870237,0.268355,0.620832,0.435969,0.430134,0.237974,0.343904,0.74984,0.305462,0.293402,0.101186,0.893447,0.192392,0.45131,0.00655818,0.411213,0.870905,0.225597,0.500793,0.80748,0.13006,0.502708,0.909333,0.724209,0.48965,0.451605,0.784459,0.17158,0.0421298,0.807118,0.482082,0.405515,0.659627,0.884336,0.333653,0.290306,0.754134,0.569275,0.351042,0.789213,0.0229123,0.474594,0.862918,0.715506,0.83839,0.407442,0.812613,0.66223,0.215341,0.67747,0.303255,0.354423,0.222326,0.899804,0.0381062,0.91179,0.778342,0.693042,0.0432527,0.440527,0.635271,0.569548,0.750656,0.80925,0.0511967,0.636258,0.309699,0.273058,0.626481,0.785592,0.14129,0.690323,0.768295,0.204411,0.955547,0.556715,0.674584,0.481448,0.839511,0.515069,0.811739,0.111351,0.634481,0.362649,0.352232,0.319537,0.449392,0.522534,0.15282,0.24516,0.851029,0.402941,0.684316,0.468044,0.263466,0.476925,0.378807,0.965902,0.943225,0.0441114,0.865617,0.380168,0.766876,0.869382,0.815108,0.858916,0.995384,0.344495,0.885548,0.133169,0.673766,0.590196,0.0727994,0.218564,0.537744,0.621029,0.269459,0.0875469,0.623035,0.484911,0.845604,0.588869,0.612246,0.094373,0.292657,0.0749379,0.480941,0.94442,0.538408,0.943605,0.608798,0.210067,0.929666,0.653216,0.295362,0.8037,0.987399,0.240458,0.208512,0.11596,0.994137,0.629799,0.00570631,0.535311,0.223611,0.336167,0.846799,0.52771,0.698837,0.644303,0.868584,0.627362,0.589235,0.862692,0.683298,0.464855,0.793805,0.826951,0.0189736,0.718033,0.749912,0.0546359,0.692197,0.64987,0.0357012,0.0232706,0.998835,0.821048,0.208237,0.371781,0.00532138,0.397977,0.00586814,0.0994555,0.448868,0.987953,0.757024,0.0439933,0.310449,0.445101,0.881326,0.555842,0.124243,0.757872,0.177557,0.807453,0.302014,0.0617717,0.726163,0.415197,0.210996,0.0590736,0.918259,0.0111369,0.20049,0.792341,0.645333,0.566037,0.108804,0.69931,0.329368,0.344674,0.426331,0.410222,0.0847896,0.165648,0.106924,0.828729,0.0630636,0.803283,0.0491722,0.436142,0.0176297,0.761687,0.365824,0.460533,0.545225,0.479121,0.500455,0.210583,0.10647,0.489518,0.801925,0.724398,0.386892,0.581018,0.536291,0.969848,0.782644,0.581242,0.649588,0.86185,0.136453,0.425566,0.0349947,0.527396,0.819481,0.703695,0.67266,0.841142,0.0993622,0.792972,0.683174,0.914487,0.162809,0.244158,0.615803,0.390089,0.68873,0.455584,0.601803,0.614354,0.080293,0.612292,0.625575,0.716672,0.780477,0.92295,0.652158,0.798011,0.753968,0.710293,0.854309,0.98996,0.38599,0.285867,0.362366,0.871512,0.751589,0.0544678,0.744071,0.270281,0.643119,0.554294,0.0258895,0.894388,0.0338966,0.216027,0.282704,0.819532,0.0788603,0.433272,0.286378,0.14692,0.877683,0.945077,0.460516,0.5355,0.828194,0.949141,0.0175858,0.97392,0.0546534,0.365892,0.688164,0.265529,0.41229,0.279624,0.951158,0.214064,0.857969,0.487524,0.292752,0.0290586,0.943653,0.0953694,0.0886989,0.0712802,0.914083,0.369133,0.239997,0.350073,0.887918,0.048079,0.436401,0.515692,0.66795,0.784535,0.582394,0.539587,0.289167,0.0185201,0.516631,0.63043,0.0226377,0.299712,0.991002,0.628844,0.0690907,0.26114,0.317797,0.240192,0.623973,0.83789,0.593274,0.346408,0.991522,0.467761,0.756994,0.565236,0.928493,0.904446,0.106464,0.562409,0.434322,0.979921,0.597061,0.953725,0.620395,0.244465,0.738003,0.436911,0.850468,0.20885,0.884511,0.30357,0.743493,0.82995,0.227586,0.937948,0.429836,0.198169,0.839912,0.602964,0.980404,0.183833,0.201339,0.684507,0.529508,0.230076,0.667702,0.946835,0.0724213,0.58618,0.689417,0.772368,0.483855,0.0148195,0.587912,0.780652,0.148995,0.448792,0.975239,0.899554,0.405338,0.357574,0.602979,0.0101051,0.948865,0.711097,0.569839,0.578203,0.876688,0.758588,0.984199,0.876342,0.988171,0.91651,0.539955,0.177807,0.645705,0.00564516,0.0221817,0.0923842,0.609617,0.824977,0.151167,0.675334,0.281604,0.0165634,0.0822224,0.320681,0.142389,0.992103,0.827473,0.978327,0.775157,0.434537,0.718006,0.766496,0.794599,0.125574,0.689871,0.0447202,0.252775,0.686053,0.107722,0.890416,0.631384,0.305708,0.812297,0.633728,0.709914,0.26761,0.77883,0.0622851,0.131386,0.59893,0.141485,0.900842,0.472146,0.280422,0.895981,0.485731,0.488355,0.0691473,0.763277,0.771164,0.73088,0.367195,0.070155,0.92651,0.71081,0.42204,0.3649,0.717022,0.947869,0.454945,0.87021,0.00786048,0.516931,0.223897,0.0978165,0.113771,0.467759,0.319804,0.8762,0.809297,0.648929,0.493058,0.887677,0.784539,0.161433,0.0231128,0.0101063,0.826972,0.571742,0.64661,0.595706,0.886807,0.373663,0.131867,0.683147,0.219692,0.547647,0.0423787,0.841642,0.849986,0.323923,0.739609,0.538245,0.00745058,0.066731,0.487325,0.0101708,0.998779,0.954836,0.893965,0.902659,0.503678,0.471003,0.450933,0.437626,0.579998,0.203403,0.559848,0.161434,0.346551,0.783825,0.032037,0.372004,0.204999,0.139469,0.689732,0.496071,0.720339,0.337481,0.795358,0.168026,0.581286,0.571695,0.150644,0.702291,0.881712,0.808404,0.553417,0.477351,0.0501409,0.65935,0.339294,0.150922,0.756284,0.526348,0.960201,0.226098,0.691776,0.75048,0.238787,0.443196,0.449947,0.659332,0.735549,0.904256,0.997664,0.357196,0.580873,0.895046,0.37104,0.0306,0.225142,0.308679,0.564248,0.968716,0.915527,0.973582,0.555155,0.286538,0.167714,0.372608,0.125871,0.185358,0.414832,0.584928,0.269215,0.849223,0.253952,0.0280439,0.0307879,0.840275,0.710192,0.032335,0.604918,0.722566,0.571615,0.910313,0.666347,0.265035,0.555504,0.458831,0.179622,0.0601822,0.781421,0.660195,0.938779,0.243369,0.746821,0.67602,0.983856,0.353903,0.499968,0.219915,0.905931,0.227134,0.500874,0.236353,0.398801,0.966522,0.76416,0.910333,0.596874,0.291398,0.340644,0.346202,0.469974,0.33622,0.858641,0.347181,0.246284,0.550431,0.0244577,0.0547596,0.175792,0.635619,0.151114,0.21769,0.102841,0.734056,0.408734,0.734263,0.264804,0.107107,0.673157,0.186231,0.556151,0.696192,0.998727,0.208294,0.864528,0.544611,0.243528,0.745905,0.154008,0.466493,0.972478,0.461998,0.70163,0.918706,0.660187,0.868071,0.345646,0.909405,0.924162,0.247658,0.612705,0.289447,0.906576,0.0390618,0.741437,0.692636,0.673316,0.676839,0.611964,0.831328,0.735658,0.0834709,0.323795,0.586253,0.862914,0.61461,0.187133,0.395462,0.600915,0.506439,0.211712,0.219184,0.633368,0.201315,0.917514,0.787143,0.119207,0.559215,0.350185,0.916578,0.471371,0.974184,0.0851765,0.687183,0.810836,0.19027,0.0572663,0.0679431,0.186461,0.516306,0.22688,0.692193,0.432617,0.460842,0.50484,0.229578,0.245798,0.556346,0.382779,0.744127,0.243362,0.443664,0.947646,0.913544,0.835738,0.891037,0.420036,0.454462,0.234226,0.717261,0.247825,0.372193,0.411436,0.496163,0.714968,0.243417,0.984568,0.20011,0.479092,0.748769,0.0181413,0.48092,0.853341,0.700868,0.796161,0.800677,0.362549,0.899031,0.280707,0.845389,0.390627,0.369741,0.238232,0.95851,0.68143,0.132798,0.823363,0.616714,0.549035,0.580656,0.306118,0.892038,0.668936,0.389008,0.00804156,0.858011,0.968825,0.775559,0.121793,0.112837,0.0268466,0.157304,0.372507,0.487474,0.846145,0.554816,0.281591,0.48401,0.302731,0.041295,0.574469,0.576894,0.638914,0.849845,0.283154,0.986355,0.4322,0.218454,0.786652,0.21759,0.491799,0.29962,0.938451,0.220471,0.763299,0.758592,0.283811,0.103361,0.285807,0.783331,0.773946,0.852027,0.769637,0.604958,0.596864,0.110719,0.0343868,0.762583,0.984127,0.897868,0.763941,0.0990531,0.835751,0.528332,0.580109,0.857323,0.835595,0.243208,0.983088,0.573628,0.27776,0.903176,0.109372,0.154354,0.702306,0.613798,0.148136,0.981065,0.651756,0.225487,0.967772,0.138102,0.551724,0.337316,0.238537,0.792114,0.0870212,0.13063,0.793823,0.716993,0.197024,0.289107,0.0872834,0.671604,0.085493,0.547576,0.697844,0.124525,0.722315,0.413728,0.98856,0.0953448,0.264306,0.119144,0.353149,0.455997,0.199879,0.369217,0.212493,0.851363,0.562971,0.781775,0.808581,0.293114,0.330897,0.848457,0.0374686,0.636026,0.609563,0.265125,0.0228931,0.232195,0.678305,0.168548,0.452793,0.647033,0.286379,0.07219,0.552076,0.220502,0.291499,0.220374,0.613456,0.0137604,0.176272,0.874665,0.843345,0.751417,0.199281,0.669457,0.592372,0.445589,0.201928,0.843708,0.999776,0.785123,0.189613,0.169973,0.733952,0.64797,0.218371,0.147503,0.722598,0.789069,0.762795,0.471974,0.83484,0.720237,0.87568,0.476932,0.431822,0.449668,0.196229,0.229672,0.0593633,0.845843,0.890843,0.708834,0.83382,0.5915,0.876131,0.360025,0.0394844,0.140232,0.446229,0.465832,0.79183,0.797888,0.00861114,0.854281,0.0738698,0.70932,0.0796934,0.988477,0.897758,0.15466,0.103644,0.567772,0.163645,0.525204,0.303767,0.0757172,0.840036,0.776019,0.347447,0.199637,0.624119,0.609525,0.408082,0.689936,0.70813,|0.379129,0.573686,0.0744129,0.915885,0.798179,0.523825,0.513921,0.584586,0.182083,0.665646,0.687616,0.312982,0.210517,0.4264,0.6685,0.497742,0.0349679,0.874147,0.0995608,0.0223507,0.928675,0.267773,0.884072,0.298755,0.241883,0.501304,0.950138,0.495332,0.503248,0.949426,0.765779,0.137758,0.226326,0.698875,0.335319,0.620101,0.555219,0.0748576,0.117022,0.155969,0.903705,0.176929,0.795799,0.997348,0.294147,0.871112,0.48758,0.957704,0.00403994,0.608118,0.504178,0.293676,0.30766,0.577365,0.408239,0.815509,0.280764,0.335266,0.389891,0.593777,0.158571,0.0357794,0.35221,0.922998,0.0861592,0.434941,0.161171,0.0915272,0.782033,0.24693,0.44662,0.602756,0.816359,0.768029,0.75458,0.535507,0.741451,0.859805,0.595007,0.272785,0.616928,0.922178,0.482831,0.611042,0.591901,0.769947,0.29801,0.382573,0.994073,0.421284,0.0706838,0.020444,0.775437,0.308531,0.705637,0.129342,0.367483,0.486463,0.668577,0.316302,0.200021,0.233181,0.432478,0.478305,0.751731,0.147421,0.583155,0.68938,0.270718,0.702151,0.965955,0.995009,0.709106,0.9499,0.241788,0.732006,0.381531,0.567581,0.342196,0.642979,0.643513,0.488413,0.169769,0.844836,0.0819709,0.0342838,0.555958,0.971624,0.230739,0.431365,0.272279,0.732321,0.303427,0.629848,0.665837,0.308868,0.688685,0.44575,0.52231,0.176403,0.458047,0.176277,0.564733,0.451791,0.910815,0.944351,0.440579,0.644552,0.0682887,0.834273,0.190271,0.997124,0.01921,0.949155,0.169784,0.000402153,0.176838,0.34145,0.443346,0.1124,0.523743,0.527095,0.647344,0.463884,0.437715,0.646693,0.468366,0.315885,0.902513,0.883616,0.757478,0.912307,0.061731,0.768802,0.257023,0.743963,0.450812,0.766961,0.937307,0.368353,0.148622,0.284728,0.113454,0.849814,0.80708,0.0781724,0.628124,0.406489,0.282124,0.491264,0.185092,0.989832,0.924974,0.683935,0.0932659,0.802521,0.26675,0.91181,0.0988677,0.667809,0.973946,0.346547,0.556355,0.943764,0.191572,0.848772,0.23873,0.189734,0.508989,0.736069,0.346191,0.0253011,0.913232,0.492996,0.866213,0.353007,0.643186,0.353196,0.42783,0.770768,0.195493,0.429682,0.311351,0.394369,0.766176,0.909249,0.660636,0.336447,0.0839245,0.194063,0.0401801,0.751356,0.45616,0.0550308,0.419109,0.417877,0.850503,0.532438,0.00241035,0.889067,0.0342436,0.705675,0.342806,0.2287,0.0900179,0.414684,0.462344,0.662444,0.975557,0.879995,0.0161885,0.524046,0.691716,0.74682,0.400933,0.953906,0.569559,0.00458461,0.0199492,0.941548,0.231332,0.178388,0.826417,0.965551,0.543314,0.324951,0.224876,0.459507,0.0327811,0.148254,0.00186658,0.487302,0.959826,0.875907,0.238083,0.804247,0.878004,0.677118,0.425599,0.550679,0.856141,0.0350102,0.397622,0.863717,0.952364,0.348475,0.188403,0.798497,0.205478,0.346408,0.296071,0.764982,0.475296,0.852401,0.390894,0.342002,0.130857,0.734435,0.425938,0.0693018,0.504001,0.927858,0.895293,0.487118,0.070995,0.828651,0.389439,0.8023,0.235245,0.958266,0.500286,0.049884,0.131101,0.0217983,0.914638,0.207355,0.597242,0.140873,0.445489,0.337101,0.332932,0.0947638,0.413255,0.342266,0.625845,0.817698,0.481698,0.699922,0.490716,0.724282,0.963041,0.0375623,0.394552,0.485855,0.212473,0.401621,0.228612,0.41946,0.852438,0.600165,0.997041,0.54255,0.731448,0.177788,0.70683,0.533706,0.017871,0.774146,0.590739,0.367893,0.370396,0.0775474,0.0636072,0.396219,0.341961,0.826186,0.373173,0.98669,0.00560385,0.395475,0.267027,0.0261201,0.635529,0.897428,0.615441,0.966651,0.570098,0.19039,0.751232,0.968584,0.0150629,0.445858,0.0934772,0.446943,0.309238,0.445529,0.108812,0.853898,0.849405,0.0606655,0.575116,0.0572257,0.199337,0.0905026,0.643751,0.260951,0.196636,0.390945,0.196867,0.321226,0.332589,0.626549,0.541583,0.295709,0.833518,0.0456845,0.980178,0.255309,0.14731,0.174355,0.819987,0.146823,0.576531,0.120424,0.828164,0.279914,0.392382,0.52849,0.623257,0.738117,0.80456,0.609735,0.58141,0.95773,0.540395,0.250729,0.501942,0.761026,0.178996,0.869289,0.317232,0.124943,0.849706,0.434958,0.153663,0.63048,0.503272,0.304979,0.33606,0.769015,0.845205,0.188866,0.83024,0.301001,0.25029,0.103884,0.593796,0.634077,0.458709,0.996032,0.189277,0.120255,0.268768,0.033161,0.562815,0.498037,0.309678,0.281266,0.142752,0.370958,0.897503,0.897609,0.352662,0.069397,0.439125,0.0527451,0.592812,0.471028,0.838825,0.890935,0.522479,0.917535,0.237906,0.398682,0.985264,0.635448,0.181987,0.383592,0.508796,0.727703,0.0470082,0.0615852,0.433476,0.386841,0.753971,0.465451,0.458041,0.453618,0.96905,0.0892045,0.905217,0.77848,0.28974,0.71868,0.235692,0.059227,0.422373,0.385951,0.494381,0.826688,0.587574,0.365382,0.980364,0.0554724,0.532353,0.293557,0.0707559,0.321689,0.0669702,0.56577,0.825952,0.232096,0.20032,0.0200403,0.626724,0.131971,0.448563,0.0234918,0.451914,0.709257,0.189054,0.563442,0.843454,0.917889,0.600656,0.627871,0.111199,0.392504,0.646212,0.839334,0.53651,0.229045,0.896665,0.19877,0.227921,0.853974,0.929275,0.830503,0.0403721,0.739834,0.845683,0.00679809,0.902249,0.685398,0.96426,0.576484,0.500803,0.170762,0.731527,0.365842,0.559479,0.398253,0.529801,0.233547,0.306281,0.192851,0.591965,0.734906,0.39402,0.255266,0.141593,0.729028,0.815153,0.964847,0.311971,0.108631,0.478554,0.555549,0.395227,0.0255527,0.0402007,0.273731,0.907824,0.743071,0.213946,0.0859889,0.00901997,0.88728,0.951576,0.663976,0.640076,0.668831,0.380814,0.242935,0.824711,0.0641142,0.591776,0.65275,0.859994,0.384245,0.577725,0.0828882,0.859329,0.0127251,0.196813,0.159122,0.520087,0.0190963,0.93559,0.995113,0.58979,0.803086,0.440585,0.186735,0.630001,0.822105,0.155874,0.379999,0.485822,0.947129,0.908687,0.0374444,0.851018,0.195881,0.827415,0.573823,0.129273,0.271236,0.0274589,0.0517043,0.718238,0.210738,0.10134,0.387074,0.0747954,0.314101,0.657849,0.170545,0.0111029,0.137752,0.271501,0.641678,0.614485,0.277326,0.60914,0.682679,0.420369,0.36937,0.955458,0.482297,0.258646,0.84767,0.944991,0.503263,0.944268,0.729517,0.927118,0.143944,0.535893,0.853859,0.0785529,0.256358,0.0464735,0.845751,0.741839,0.798693,0.0106423,0.97448,0.79515,0.27768,0.543123,0.00190789,0.578221,0.662688,0.122714,0.675677,0.203279,0.698543,0.117252,0.258132,0.230226,0.0642574,0.7536,0.868684,0.230449,0.0766626,0.477029,0.835141,0.366835,0.466865,0.542277,0.841712,0.149136,0.266506,0.173408,0.558481,0.131217,0.740198,0.638478,0.00581044,0.0722383,0.582175,0.529101,0.851235,0.963227,0.511631,0.401106,0.726954,0.691999,0.50661,0.621883,0.532168,0.0558388,0.953964,0.660709,0.308724,0.225333,0.645608,0.829234,0.173372,0.00358915,0.256249,0.417122,0.102359,0.182173,0.775942,0.809423,0.570132,0.167936,0.161855,0.873081,0.0537187,0.317886,0.480623,0.295585,0.91235,0.993133,0.92312,0.670213,0.969636,0.126543,0.51082,0.0236515,0.306693,0.547733,0.335797,0.912532,0.846227,0.108995,0.703013,0.862631,0.0361717,0.932533,0.505062,0.791584,0.564919,0.397233,0.728764,0.140397,0.277107,0.686576,0.0437721,0.0777757,0.826272,0.961518,0.259174,0.293808,0.865566,0.542501,0.403406,0.384647,0.602754,0.482733,0.747596,0.314103,0.265748,0.0597062,0.93114,0.590516,0.911757,0.595481,0.158569,0.151909,0.607718,0.942023,0.939805,0.235037,0.106497,0.823702,0.10916,0.8894,0.0275761,0.605742,0.421449,0.530215,0.527854,0.255992,0.0994047,0.97366,0.460623,0.265059,0.510817,0.577573,0.902181,0.799338,0.433625,0.125826,0.291008,0.372865,0.253344,0.170394,0.488541,0.379325,0.221893,0.782498,0.852167,0.591274,0.255991,0.575288,0.379055,0.415463,0.968366,0.416332,0.356271,0.703573,0.0399324,0.853745,0.893338,0.811853,0.464168,0.419403,0.568309,0.666987,0.574675,0.167833,0.907963,0.336135,0.886009,0.813392,0.573589,0.351711,0.750778,0.724911,0.475063,0.913596,0.312649,0.84369,0.893679,0.617396,0.503565,0.647349,0.779881,0.802301,0.00645971,0.100166,0.675474,0.817138,0.684471,0.584409,0.459419,0.894196,0.347488,0.887566,0.580075,0.43754,0.897017,0.88169,0.675401,0.499376,0.534451,0.099786,0.720749,0.478162,0.985741,0.098381,0.606674,0.702604,0.317467,0.0851361,0.911212,0.992258,0.206501,0.318785,0.0349965,0.18772,0.565318,0.75021,0.388182,0.258876,0.531882,0.220708,0.00638241,0.103446,0.359018,0.432561,0.279494,0.880632,0.84012,0.964393,0.0887725,0.599765,0.105559,0.0707446,0.0984893,0.709061,0.365628,0.256725,0.14588,0.111306,0.54033,0.266752,0.226502,0.0557454,0.9024,0.904031,0.912058,0.160031,0.609327,0.406381,0.135214,0.025521,0.0911444,0.890757,0.332727,0.279478,0.825626,0.4308,0.263723,0.0679821,0.596795,0.252177,0.757649,0.679182,0.0825302,0.732444,0.222227,0.97196,0.598494,0.0799267,0.237984,0.968215,0.200467,0.20687,0.90248,0.654829,0.644387,0.774772,0.799836,0.0735052,0.187715,0.87156,0.112498,0.919193,0.567425,0.171264,0.618747,0.782852,0.877069,0.560992,0.196801,0.431654,0.856739,0.862255,0.681383,0.0834502,0.196546,0.461427,0.732583,0.33347,0.489973,0.88023,0.422341,0.169111,0.190433,0.958829,0.153769,0.0279206,0.275016,0.319207,0.838009,0.281449,0.808801,0.0292225,0.0535094,0.890081,0.653399,0.4701,0.355157,0.668583,0.601962,0.0633122,0.661923,0.0553599,0.401606,0.820078,0.902811,0.876092,0.135291,0.320746,0.0818657,0.692107,0.27788,0.282102,0.102163,0.601345,0.305217,0.801746,0.248286,0.145869,0.296235,0.545102,0.989526,0.534043,0.84405,0.193513,0.36552,0.992876,0.948412,0.543564,0.21152,|0.832045,0.361836,0.680125,0.10942,0.391366,0.908004,0.483172,0.832431,0.863506,0.209359,0.348351,0.231065,0.85641,0.631077,0.619691,0.868996,0.773516,0.497832,0.944303,0.347446,0.506334,0.403922,0.226284,0.0136106,0.222425,0.146208,0.167476,0.694549,0.187722,0.831331,0.796893,0.642202,0.209052,0.508646,0.546086,0.74268,0.109443,0.0484664,0.050445,0.954442,0.809372,0.544192,0.461101,0.180098,0.427259,0.773808,0.0279338,0.0380652,0.330773,0.598353,0.317165,0.563904,0.222742,0.490499,0.842689,0.600882,0.166557,0.123371,0.648435,0.0986756,0.224561,0.597317,0.385115,0.602695,0.776932,0.0547432,0.190747,0.0161555,0.407068,0.620834,0.0573337,0.199169,0.092725,0.808091,0.500095,0.130877,0.161247,0.485655,0.425128,0.921259,0.440155,0.448589,0.808913,0.307069,0.161854,0.0934421,0.75259,0.188604,0.394429,0.24041,0.030957,0.249226,0.68975,0.138703,0.468074,0.595427,0.28631,0.068397,0.634776,0.731675,0.81633,0.68639,0.0919642,0.0157222,0.80433,0.252133,0.53806,0.288425,0.617331,0.921869,0.272595,0.162448,0.746692,0.257925,0.981299,0.772056,0.403334,0.551628,0.817575,0.712114,0.111024,0.124342,0.275152,0.15631,0.753204,0.280423,0.537735,0.957697,0.0243235,0.829173,0.425836,0.0877717,0.767898,0.41764,0.0338322,0.105339,0.656838,0.365805,0.272535,0.556064,0.409872,0.0266336,0.620959,0.12356,0.147341,0.493764,0.332493,0.786353,0.227928,0.276084,0.208299,0.715255,0.00167823,0.901006,0.803265,0.805016,0.139833,0.243874,0.723771,0.137991,0.809836,0.467364,0.979096,0.0399054,0.001966,0.577131,0.967066,0.560779,0.0385621,0.534188,0.259913,0.440204,0.0669215,0.325079,0.113814,0.484318,0.505244,0.86529,0.302612,0.453516,0.670119,0.983407,0.326179,0.0903753,0.193435,0.73058,0.206796,0.0668091,0.654063,0.769878,0.401601,0.87383,0.0589216,0.661479,0.628825,0.420337,0.498906,0.245835,0.885121,0.195253,0.925257,0.0870128,0.925312,0.488915,0.805111,0.32129,0.929646,0.564615,0.0925946,0.119087,0.800912,0.765551,0.99499,0.407831,0.257675,0.889758,0.828386,0.69132,0.911532,0.466386,0.333933,0.974912,0.179712,0.778754,0.146337,0.583047,0.708351,0.849368,0.978835,0.823481,0.535486,0.142379,0.00558561,0.604791,0.895121,0.779768,0.0808629,0.864917,0.990722,0.563582,0.526702,0.228791,0.974228,0.322589,0.051439,0.942965,0.902153,0.284626,0.293383,0.845969,0.946171,0.956813,0.847431,0.85361,0.701939,0.653141,0.126307,0.850674,0.409765,0.637644,0.642564,0.120501,0.190666,0.354876,0.607159,0.964213,0.671477,0.301113,0.847383,0.686641,0.350071,0.044027,0.667809,0.929913,0.279103,0.792539,0.52685,0.0633367,0.621233,0.0239081,0.405478,0.228641,0.714405,0.346431,0.113904,0.558453,0.673611,0.55687,0.194444,0.399907,0.589693,0.304064,0.910352,0.155786,0.672388,0.528786,0.71193,0.437104,0.70536,0.84577,0.4439,0.741816,0.96175,0.0593368,0.604778,0.580268,0.829479,0.978488,0.569467,0.9258,0.125379,0.585427,0.320061,0.94413,0.152572,0.329097,0.720148,0.23694,0.942499,0.76856,0.655575,0.301224,0.717142,0.406809,0.143637,0.551011,0.760379,0.729336,0.041414,0.997763,0.133977,0.740482,0.014568,0.861244,0.222972,0.17633,0.0787421,0.726422,0.888874,0.0838992,0.492911,0.563953,0.672834,0.840491,0.876227,0.437309,0.196232,0.238155,0.732312,0.804224,0.529065,0.817637,0.24049,0.305707,0.745132,0.825093,0.471049,0.30115,0.679108,0.67071,0.715212,0.501498,0.430481,0.805947,0.888137,0.60692,0.898268,0.0829066,0.0374577,0.538452,0.648534,0.270583,0.349262,0.626798,0.806352,0.374851,0.299702,0.818516,0.637718,0.507324,0.388086,0.482938,0.784634,0.662832,0.270168,0.334571,0.80881,0.625476,0.16745,0.752802,0.224018,0.807489,0.869847,0.0457685,0.111276,0.923713,0.71011,0.238506,0.6277,0.591262,0.0463688,0.870604,0.665079,0.04488,0.544715,0.361197,0.644643,0.347786,0.422897,0.471569,0.656325,0.260898,0.330626,0.0544307,0.183607,0.576755,0.597647,0.113848,0.739562,0.660227,0.294787,0.60672,0.19095,0.0781775,0.646178,0.847523,0.53039,0.362992,0.432027,0.330376,0.321917,0.359115,0.478889,0.731781,0.130619,0.4152,0.0823464,0.315889,0.0288777,0.157716,0.274997,0.92333,0.661835,0.892887,0.155199,0.943958,0.0591038,0.242757,0.60954,0.831162,0.320392,0.87231,0.276738,0.388036,0.634979,0.873498,0.511713,0.0642871,0.803973,0.911644,0.953779,0.756702,0.0577518,0.102598,0.655267,0.968247,0.741725,0.408814,0.63332,0.114339,0.773317,0.905594,0.0221295,0.440313,0.915444,0.471611,0.684494,0.102598,0.0770453,0.716488,0.324836,0.785881,0.473072,0.565254,0.639179,0.13142,0.996237,0.39867,0.516205,0.585236,0.711376,0.30373,0.230639,0.907707,0.132632,0.704089,0.825149,0.755215,0.313781,0.401382,0.903408,0.413461,0.660959,0.893904,0.114462,0.269727,0.755673,0.927444,0.0678036,0.0997795,0.708847,0.330042,0.976968,0.717471,0.74814,0.305456,0.394505,0.630554,0.690444,0.232383,0.479031,0.490033,0.0852908,0.207431,0.632698,0.196339,0.626741,0.0835018,0.160324,0.391718,0.996975,0.991239,0.0894194,0.439182,0.878828,0.0995919,0.16238,0.805093,0.913628,0.903327,0.817736,0.0317627,0.552061,0.768617,0.813691,0.930559,0.639718,0.0154957,0.967572,0.387394,0.732103,0.790008,0.886214,0.384715,0.360036,0.879623,0.646039,0.547778,0.984167,0.0934632,0.94157,0.614663,0.979527,0.0511951,0.0753917,0.288313,0.776003,0.829845,0.3876,0.584505,0.227086,0.50125,0.458504,0.660143,0.266043,0.729908,0.310715,0.103132,0.669068,0.308413,0.837738,0.832549,0.526036,0.646157,0.224768,0.933462,0.963752,0.649995,0.840724,0.759407,0.338542,0.445861,0.423145,0.0182672,0.811841,0.613559,0.454468,0.0540028,0.612033,0.632502,0.913226,0.395122,0.999252,0.586487,0.436758,0.798284,0.887783,0.942786,0.952678,0.887078,0.785592,0.964079,0.245895,0.944955,0.722355,0.346249,0.129512,0.220719,0.774824,0.643062,0.696606,0.917641,0.69829,0.26226,0.109435,0.749372,0.41003,0.631513,0.462489,0.189497,0.427116,0.835775,0.0258785,0.700649,0.603981,0.261637,0.981086,0.633611,0.978859,0.244052,0.923251,0.1547,0.303416,0.488997,0.641626,0.0802649,0.0611033,0.442463,0.675872,0.673234,0.0355986,0.902691,0.344984,0.91144,0.33247,0.968928,0.106489,0.285978,0.188985,0.462596,0.818784,0.726971,0.23039,0.330364,0.324657,0.836455,0.509898,0.170651,0.66207,0.0143316,0.700504,0.792892,0.653944,0.344513,0.544497,0.665297,0.591299,0.775384,0.300869,0.539317,0.0234508,0.62246,0.293963,0.800311,0.264291,0.988389,0.943235,0.782161,0.750483,0.431739,0.168193,0.889241,0.973952,0.931211,0.979558,0.494696,0.615247,0.74016,0.265817,0.318897,0.497589,0.572482,0.200149,0.383165,0.258076,0.28705,0.759806,0.8092,0.188633,0.135463,0.705873,0.766162,0.254023,0.967398,0.113633,0.914348,0.992935,0.0506857,0.891716,0.0186564,0.99924,0.937246,0.505313,0.311526,0.799357,0.0542637,0.0790352,0.108761,0.981141,0.41979,0.161333,0.492131,0.161625,0.531147,0.194248,0.051366,0.499449,0.478454,0.825083,0.374246,0.345473,0.0157812,0.281489,0.344954,0.063144,0.053207,0.469152,0.603851,0.877461,0.482735,0.192239,0.607269,0.528073,0.611555,0.54014,0.21006,0.244788,0.895601,0.817805,0.17374,0.141833,0.303804,0.74508,0.911104,0.759515,0.12402,0.844103,0.419963,0.46119,0.5059,0.949394,0.485405,0.189328,0.618341,0.272228,0.386588,0.880708,0.179744,0.133275,0.556424,0.597593,0.515531,0.518931,0.750117,0.759895,0.0381618,0.772619,0.978797,0.642124,0.462953,0.0257539,0.814897,0.276244,0.00766319,0.217607,0.836422,0.819898,0.922346,0.265197,0.97325,0.601739,0.369006,0.818758,0.130118,0.156051,0.408547,0.606464,0.547325,0.0240635,0.484527,0.883141,0.0580154,0.239129,0.272249,0.475762,0.571847,0.281079,0.678989,0.664962,0.529463,0.720768,0.891147,0.791273,0.0732499,0.0800105,0.177128,0.567839,0.0980794,0.975117,0.472502,0.687184,0.171759,0.281723,0.084331,0.875545,0.644915,0.514015,0.57823,0.608323,0.826438,0.279745,0.107258,0.338208,0.71275,0.289763,0.484034,0.513412,0.709787,0.403238,0.777422,0.416732,0.863544,0.273484,0.755713,0.853124,0.125486,0.736161,0.939606,0.381143,0.419647,0.732397,0.0345069,0.00229061,0.557679,0.121441,0.0634922,0.64977,0.0301129,0.433126,0.540384,0.71317,0.93642,0.165298,0.462828,0.142821,0.365969,0.074055,0.167933,0.602934,0.883476,0.363518,0.706914,0.675297,0.217238,0.421502,0.35848,0.693579,0.966026,0.940538,0.516935,0.93397,0.173209,0.654916,0.490901,0.0324979,0.837429,0.538454,0.280046,0.112453,0.234703,0.579437,0.903738,0.746585,0.273506,0.371867,0.192082,0.94694,0.14706,0.856343,0.640384,0.542295,0.839737,0.548872,0.359101,0.0421888,0.734268,0.24241,0.509016,0.882896,0.908104,0.265586,0.563398,0.904977,0.0543228,0.108996,0.304786,0.405885,0.245761,0.715999,0.732794,0.818735,0.133611,0.819383,0.745099,0.715705,0.821609,0.467658,0.394164,0.741913,0.0354604,0.0955408,0.762724,0.812239,0.280215,0.476391,0.756993,0.175728,0.904637,0.350256,0.592014,0.929718,0.813098,0.750106,0.244275,0.432659,0.668248,0.224728,0.742219,0.703262,0.484621,0.860341,0.669561,0.39262,0.562132,0.378259,0.156464,0.597334,0.890728,0.23996,0.540416,0.895684,0.990444,0.659368,0.446319,0.215472,0.751058,0.190664,0.597069,0.7502,0.65823,0.19741,0.719964,0.896482,0.100967,0.990027,0.432532,0.179969,0.600078,0.41912,0.432023,0.570812,0.570056,0.729603,0.859508,0.987406,0.753011,0.425756,0.738786,0.198633,0.438998,|0.445489,0.542897,0.275611,0.799107,0.415679,0.0867614,0.266333,0.0405488,0.350284,0.395315,0.309534,0.677303,0.0304524,0.82795,0.694619,0.419358,0.530591,0.93566,0.836963,0.549184,0.995995,0.852642,0.49944,0.0643088,0.275184,0.519461,0.16432,0.0851824,0.350034,0.890992,0.482859,0.764678,0.621032,0.532212,0.802083,0.299991,0.280724,0.501977,0.582034,0.922579,0.523283,0.148165,0.870276,0.709528,0.837301,0.417745,0.861233,0.200874,0.192328,0.134198,0.608345,0.80699,0.389844,0.868022,0.469859,0.428244,0.895357,0.07374,0.178456,0.349239,0.413975,0.0762236,0.63467,0.60777,0.182844,0.724247,0.411138,0.947268,0.577081,0.572131,0.734047,0.777478,0.262306,0.276051,0.225788,0.490374,0.669427,0.776987,0.327962,0.650461,0.143559,0.903949,0.173456,0.136401,0.100085,0.0225444,0.102852,0.921457,0.40696,0.493065,0.905947,0.604442,0.544818,0.433749,0.192086,0.913476,0.508388,0.60525,0.257744,0.967543,0.422597,0.995353,0.177598,0.959668,0.700083,0.169131,0.529884,0.0516713,0.858131,0.955364,0.763315,0.975892,0.965618,0.697149,0.442024,0.591784,0.915096,0.122854,0.189198,0.0670772,0.486796,0.0312219,0.225097,0.806221,0.169075,0.345738,0.499345,0.181419,0.892739,0.330052,0.272113,0.578995,0.188631,0.951814,0.713279,0.488348,0.196813,0.912538,0.0807894,0.925472,0.57516,0.919085,0.286521,0.379219,0.769047,0.557226,0.816824,0.94918,0.377029,0.196732,0.333928,0.69237,0.983966,0.504706,0.243624,0.707503,0.428803,0.142833,0.0140948,0.84766,0.426236,0.304749,0.0119289,0.252787,0.697611,0.723767,0.509541,0.583235,0.449048,0.144019,0.154301,0.367211,0.771091,0.280512,0.527249,0.909624,0.440412,0.412594,0.828751,0.199428,0.720499,0.96969,0.906145,0.0793538,0.949833,0.516804,0.940812,0.543978,0.624104,0.712517,0.390544,0.0885099,0.969649,0.452973,0.919667,0.84918,0.340544,0.972195,0.862762,0.744806,0.147021,0.264905,0.0519584,0.831611,0.999562,0.543075,0.364172,0.44712,0.755308,0.333168,0.611772,0.234683,0.866626,0.887857,0.585639,0.428312,0.965692,0.405728,0.329778,0.881361,0.515142,0.530743,0.0820082,0.237731,0.0688477,0.751382,0.997529,0.20172,0.184635,0.502023,0.683724,0.569327,0.216424,0.670014,0.434648,0.267972,0.239653,0.0226812,0.873673,0.522906,0.286059,0.653156,0.972463,0.420853,0.646597,0.35213,0.396504,0.678185,0.620604,0.737833,0.466737,0.25219,0.146359,0.557313,0.0444968,0.912977,0.457914,0.20109,0.660543,0.5433,0.718857,0.130281,0.728323,0.813678,0.684784,0.898878,0.776859,0.299531,0.498336,0.132905,0.557271,0.281337,0.54766,0.116033,0.465142,0.525258,0.601615,0.526793,0.690161,0.155991,0.90029,0.746463,0.206292,0.993438,0.171822,0.0017674,0.513263,0.163515,0.469816,0.00747764,0.876863,0.739945,0.563286,0.774268,0.432422,0.0696574,0.826534,0.2165,0.486695,0.902183,0.297696,0.86186,0.840881,0.276685,0.483697,0.894823,0.0130364,0.518266,0.2368,0.601558,0.965064,0.830894,0.30586,0.199911,0.549728,0.522826,0.501113,0.226296,0.508684,0.260842,0.0695802,0.999901,0.71326,0.518724,0.240386,0.913305,0.256999,0.103211,0.890357,0.582497,0.220318,0.165002,0.838352,0.405293,0.642682,0.533967,0.769457,0.651312,0.213338,0.815623,0.816703,0.944662,0.510022,0.97548,0.0679748,0.613302,0.571478,0.887258,0.704653,0.650095,0.34781,0.346006,0.917666,0.697035,0.886671,0.00514007,0.280824,0.558312,0.354903,0.733046,0.707487,0.061789,0.435226,0.465346,0.743005,0.801154,0.781675,0.507151,0.802871,0.188539,0.133695,0.826627,0.200882,0.983684,0.738117,0.303384,0.389813,0.940437,0.886116,0.776322,0.0433753,0.632003,0.468026,0.607879,0.415354,0.741701,0.978864,0.705101,0.805377,0.0159233,0.408269,0.502638,0.604807,0.625727,0.896715,0.669863,0.117048,0.891193,0.36886,0.694129,0.984421,0.82116,0.14647,0.974575,0.855507,0.239572,0.833814,0.246982,0.351487,0.030156,0.593983,0.639245,0.918368,0.0779353,0.687748,0.656025,0.546909,0.00518191,0.94192,0.114247,0.609473,0.169003,0.215186,0.17582,0.0743433,0.692291,0.0404686,0.531412,0.071534,0.963623,0.877607,0.698683,0.417498,0.049498,0.961113,0.592457,0.655455,0.906789,0.42595,0.990458,0.563999,0.00232255,0.305865,0.380087,0.998601,0.952981,0.579144,0.213146,0.732358,0.289379,0.244752,0.0640942,0.937443,0.85298,0.148368,0.0452445,0.643701,0.31172,0.369155,0.599028,0.117406,0.519116,0.674558,0.015195,0.410207,0.962861,0.310267,0.647283,0.508966,0.0814374,0.254521,0.480554,0.485582,0.914196,0.764068,0.0828443,0.337191,0.759546,0.840976,0.99286,0.502059,0.0223907,0.609867,0.900107,0.554253,0.363865,0.538703,0.805784,0.956633,0.698389,0.264248,0.901185,0.448503,0.108208,0.666888,0.590098,0.725112,0.726765,0.851207,0.268483,0.465548,0.0527356,0.0290222,0.705616,0.582856,0.383656,0.408202,0.634002,0.403237,0.398935,0.696788,0.534607,0.333712,0.491887,0.54761,0.0966074,0.433361,0.598617,0.909518,0.684703,0.958913,0.662296,0.782799,0.0575485,0.590419,0.86361,0.587772,0.493854,0.501623,0.859604,0.128731,0.848268,0.756452,0.200401,0.868815,0.0852572,0.205605,0.214364,0.344651,0.150273,0.909278,0.0383813,0.211784,0.875798,0.301033,0.0642309,0.0468512,0.373967,0.303475,0.504842,0.711027,0.220023,0.908274,0.24572,0.87034,0.907102,0.279529,0.184476,0.21723,0.87778,0.00819224,0.277205,0.175727,0.0455465,0.108794,0.559811,0.281752,0.383033,0.766914,0.460069,0.0657161,0.489517,0.939888,0.544475,0.892777,0.436707,0.94568,0.198916,0.650635,0.339995,0.29648,0.617932,0.121159,0.221156,0.877466,0.231562,0.935707,0.758262,0.693134,0.272963,0.827161,0.509257,0.982272,0.761949,0.264012,0.911034,0.238665,0.659354,0.785461,0.420634,0.146998,0.301648,0.353302,0.721161,0.662031,0.559693,0.798835,0.971391,0.00560778,0.45858,0.0728169,0.608214,0.0361759,0.330704,0.387595,0.301186,0.735545,0.872989,0.231575,0.361378,0.163533,0.470951,0.764482,0.0302085,0.490073,0.855756,0.267421,0.962275,0.60462,0.205274,0.0874677,0.353416,0.234156,0.166815,0.785633,0.649618,0.165931,0.715392,0.330773,0.0698225,0.360798,0.58477,0.463164,0.295059,0.0571429,0.591283,0.962343,0.847561,0.803147,0.966894,0.925649,0.152168,0.242571,0.916943,0.994149,0.331795,0.915202,0.228967,0.855565,0.227782,0.120197,0.836599,0.335718,0.088802,0.475174,0.859346,0.525367,0.0709636,0.1907,0.501334,0.564083,0.448613,0.789908,0.671944,0.679569,0.0303357,0.0288917,0.400472,0.47994,0.992788,0.498554,0.802282,0.78407,0.328246,0.828888,0.967609,0.385234,0.430791,0.795836,0.999302,0.5578,0.0537408,0.454017,0.394847,0.660363,0.457748,0.221314,0.124511,0.975712,0.107381,0.379104,0.306503,0.80333,0.399242,0.99658,0.887705,0.487045,0.856958,0.0362412,0.216044,0.650382,0.245182,0.946493,0.742425,0.734192,0.959071,0.230293,0.231031,0.177552,0.713114,0.276764,0.995318,0.300817,0.348163,0.221834,0.130683,0.18542,0.0654375,0.776014,0.482589,0.941186,0.957401,0.866076,0.283594,0.893058,0.294877,0.761752,0.0591085,0.950729,0.00138658,0.98921,0.515292,0.707858,0.842927,0.167188,0.692995,0.441165,0.865381,0.253977,0.691542,0.599406,0.660038,0.65611,0.513077,0.833979,0.432968,0.380675,0.869333,0.756434,0.894201,0.744372,0.717206,0.269647,0.162583,0.91308,0.840039,0.375004,0.255709,0.545548,0.237686,0.564431,0.391159,0.688909,0.246522,0.233839,0.794722,0.778806,0.669638,0.427234,0.254968,0.343726,0.286048,0.792582,0.712773,0.204947,0.221703,0.575693,0.779529,0.207115,0.0808968,0.164276,0.380792,0.31936,0.174409,0.677858,0.776657,0.292211,0.644779,0.00391477,0.889995,0.261067,0.534558,0.861456,0.427225,0.873606,0.312595,0.391753,0.429541,0.726419,0.305325,0.635393,0.421282,0.857798,0.160166,0.971016,0.523418,0.810101,0.452826,0.379828,0.342059,0.237283,0.929629,0.121207,0.851933,0.56173,0.643912,0.533987,0.23773,0.0497983,0.632856,0.608118,0.679985,0.34803,0.33187,0.542592,0.613186,0.533668,0.94623,0.98562,0.291396,0.136903,0.331909,0.957626,0.65421,0.967245,0.552074,0.223336,0.687312,0.340409,0.5238,0.830236,0.552735,0.316318,0.332323,0.719425,0.506403,0.980648,0.00598407,0.437492,0.663635,0.963404,0.258001,0.181899,0.0795674,0.604513,0.620283,0.273124,0.325959,0.0243396,0.168874,0.728601,0.666041,0.0769064,0.842437,0.0985863,0.684367,0.0519386,0.507892,0.563621,0.276502,0.279257,0.652834,0.729666,0.696767,0.962037,0.536587,0.152085,0.953581,0.858153,0.928939,0.969262,0.570488,0.696483,0.521411,0.230196,0.431364,0.640807,0.419916,0.0278425,0.164912,0.786272,0.705503,0.416592,0.816691,0.154143,0.426158,0.991138,0.917278,0.884735,0.0785248,0.907353,0.530145,0.576634,0.85889,0.524406,0.100878,0.592992,0.393007,0.374825,0.68385,0.776979,0.827648,0.739852,0.0608825,0.208239,0.405509,0.00949639,0.851981,0.14434,0.187677,0.29132,0.432194,0.162991,0.407216,0.199633,0.398804,0.801896,0.421806,0.511284,0.259433,0.415991,0.0181917,0.581793,0.294443,0.984819,0.321246,0.27468,0.698058,0.345163,0.313102,0.916332,0.182091,0.118265,0.553168,0.00611013,0.960757,0.927465,0.366286,0.364699,0.0563937,0.0548192,0.162768,0.46836,0.448801,0.980397,0.199291,0.468133,0.842509,0.935682,0.231955,0.349772,0.757284,0.42013,0.315957,0.860299,0.387101,0.828315,0.306741,0.0590467,0.3471,0.730104,0.829681,0.904375,0.0440618,0.0804211,0.871295,0.894148,0.338967,0.776783,0.396793,0.133881,0.564988,0.947052,0.20182,0.449769,0.918659,0.277055,0.0610572,0.824054,0.498489,|0.965995,0.702347,0.434215,0.289058,0.253978,0.818605,0.389172,0.871921,0.395445,0.916737,0.874472,0.115553,0.789409,0.572306,0.0834297,0.616352,0.536307,0.0427722,0.42862,0.432871,0.609454,0.898326,0.868289,0.629434,0.641039,0.994848,0.117076,0.000215232,0.220549,0.545386,0.967543,0.393365,0.414404,0.67229,0.957695,0.318066,0.432786,0.130398,0.0948736,0.597401,0.0844555,0.036062,0.970189,0.0940755,0.212963,0.826189,0.0378476,0.034201,0.666806,0.296928,0.580792,0.485309,0.271158,0.585975,0.605719,0.226083,0.640428,0.401208,0.46841,0.245695,0.413945,0.460575,0.692985,0.276734,0.613517,0.0565634,0.43168,0.881698,0.154617,0.308888,0.739032,0.859947,0.373998,0.927718,0.764149,0.0668768,0.900316,0.00246799,0.074121,0.722889,0.192638,0.290869,0.548711,0.455956,0.322347,0.311268,0.346366,0.420088,0.234308,0.98864,0.516202,0.845668,0.899402,0.0553624,0.8217,0.408333,0.914062,0.869225,0.622628,0.707896,0.488388,0.469879,0.755511,0.908494,0.653818,0.887525,0.379011,0.539474,0.376053,0.617813,0.132204,0.300451,0.327539,0.489214,0.923596,0.728478,0.0713903,0.22156,0.0568624,0.291596,0.242323,0.729742,0.523247,0.479242,0.567286,0.82631,0.188604,0.13389,0.364819,0.874806,0.802058,0.730208,0.33982,0.130226,0.401192,0.132894,0.256977,0.819188,0.163598,0.207701,0.0630946,0.439654,0.33167,0.239128,0.657778,0.606209,0.24779,0.674711,0.685331,0.894567,0.779561,0.0314758,0.439298,0.0877595,0.854582,0.400885,0.753753,0.990644,0.305112,0.82087,0.478875,0.354875,0.256327,0.489348,0.259947,0.236377,0.311225,0.986293,0.398062,0.0552317,0.614131,0.370137,0.497947,0.15142,0.0775332,0.293355,0.636546,0.824777,0.420058,0.561158,0.505795,0.909328,0.969802,0.608721,0.409925,0.392774,0.156679,0.268921,0.617971,0.903976,0.498763,0.560766,0.631662,0.581111,0.138782,0.58699,0.732786,0.977308,0.552098,0.318473,0.859483,0.644878,0.217672,0.369374,0.363892,0.160784,0.622866,0.164904,0.196169,0.927696,0.0783436,0.429898,0.7715,0.824106,0.865729,0.094959,0.539969,0.694541,0.663727,0.959976,0.310068,0.100342,0.19496,0.782601,0.962,0.838145,0.448169,0.0163205,0.0238143,0.275736,0.502276,0.368748,0.443449,0.584846,0.892542,0.444144,0.0136738,0.209204,0.401802,0.615866,0.464645,0.934518,0.183991,0.080043,0.571702,0.528859,0.381396,0.125214,0.490818,0.872818,0.733482,0.00136209,0.854964,0.97872,0.262113,0.0331756,0.334418,0.0810896,0.0349183,0.507379,0.360859,0.782719,0.529552,0.775674,0.722994,0.144213,0.835728,0.967751,0.714929,0.246779,0.233887,0.224325,0.866661,0.574038,0.636018,0.343701,0.538874,0.8413,0.46608,0.123993,0.893434,0.924892,0.631358,0.19856,0.890543,0.0312531,0.35458,0.568429,0.461357,0.549546,0.824796,0.936917,0.685696,0.104155,0.615166,0.524009,0.19176,0.946074,0.263711,0.574495,0.157438,0.706681,0.749009,0.38176,0.0100973,0.670044,0.835585,0.0146456,0.698438,0.329537,0.956131,0.00137842,0.334244,0.353009,0.765363,0.800386,0.307574,0.813826,0.636735,0.737647,0.255596,0.852148,0.156188,0.283966,0.644543,0.996696,0.473005,0.348695,0.495778,0.602681,0.583094,0.947684,0.943409,0.691276,0.776927,0.630258,0.213768,0.976022,0.538025,0.57554,0.162294,0.281815,0.971832,0.361516,0.326415,0.747172,0.878648,0.800765,0.846542,0.9127,0.771616,0.791788,0.658864,0.251584,0.703009,0.500343,0.029807,0.606629,0.145301,0.0878604,0.276599,0.921993,0.563162,0.120262,0.367368,0.751341,0.615314,0.873634,0.711015,0.177009,0.196164,0.20602,0.387569,0.569173,0.342843,0.391377,0.332151,0.810504,0.371199,0.610961,0.45535,0.93672,0.100055,0.896217,0.904801,0.368712,0.0582138,0.285515,0.123756,0.347188,0.816225,0.659851,0.814711,0.222884,0.683803,0.277285,0.630209,0.368494,0.933138,0.009646,0.607701,0.357406,0.207081,0.857387,0.438204,0.654553,0.679668,0.943361,0.786215,0.870503,0.658099,0.294976,0.75015,0.651202,0.799612,0.0122318,0.458961,0.543053,0.545326,0.823769,0.260246,0.868515,0.396113,0.0111248,0.630711,0.338325,0.882276,0.0413583,0.874602,0.666933,0.11411,0.147839,0.89436,0.122773,0.299268,0.274355,0.0393238,0.986862,0.797697,0.0357436,0.540568,0.889348,0.204012,0.898086,0.576209,0.199504,0.994207,0.122865,0.653824,0.77242,0.191782,0.614481,0.790241,0.374688,0.4048,0.794914,0.287839,0.194524,0.106952,0.966866,0.289784,0.471951,0.635278,0.204265,0.753743,0.420385,0.0494347,0.555548,0.969105,0.737438,0.270351,0.866533,0.0285876,0.742247,0.583475,0.931598,0.941191,0.84971,0.811278,0.577318,0.84161,0.918206,0.49297,0.333085,0.471527,0.819881,0.38815,0.0271034,0.965517,0.896341,0.322922,0.685549,0.455216,0.327764,0.185309,0.856468,0.176498,0.840177,0.510989,0.999377,0.390105,0.277676,0.478877,0.351145,0.781904,0.65554,0.925335,0.839281,0.78244,0.0945395,0.644393,0.182943,0.182672,0.321519,0.318049,0.445002,0.662397,0.92591,0.0455694,0.360916,0.29304,0.650456,0.825031,0.814606,0.375916,0.0694932,0.171889,0.0881518,0.177611,0.0815417,0.615372,0.996765,0.248532,0.470259,0.908299,0.951352,0.614487,0.0997571,0.596838,0.580214,0.18887,0.0674445,0.582959,0.946964,0.176799,0.726572,0.0312114,0.595392,0.322399,0.393436,0.698927,0.922625,0.703378,0.0853815,0.775183,0.522982,0.44653,0.312241,0.520178,0.977745,0.193961,0.800061,0.129274,0.160478,0.852521,0.938833,0.490115,0.775847,0.401381,0.535782,0.444167,0.0823666,0.93032,0.781491,0.0522771,0.561077,0.162356,0.467909,0.467681,0.507019,0.0178743,0.705222,0.325009,0.42142,0.9176,0.507969,0.330736,0.183433,0.3617,0.773574,0.689105,0.314355,0.282866,0.714579,0.24144,0.361803,0.992888,0.0621387,0.942192,0.81866,0.97237,0.0341026,0.0214739,0.315781,0.734346,0.675021,0.878317,0.328013,0.981767,0.477963,0.276101,0.123489,0.99131,0.633147,0.401606,0.677138,0.249374,0.68211,0.780026,0.987963,0.628283,0.26272,0.0624838,0.358082,0.588303,0.750524,0.4368,0.769294,0.711156,0.420054,0.0925144,0.688795,0.376673,0.57414,0.618088,0.703408,0.474373,0.354346,0.232434,0.487631,0.567626,0.178335,0.533965,0.117088,0.943918,0.735889,0.909336,0.44004,0.437914,0.964309,0.253943,0.368116,0.321247,0.0766697,0.941899,0.433601,0.423547,0.893157,0.63032,0.345338,0.729172,0.391119,0.856382,0.038129,0.0284072,0.604276,0.856716,0.0402479,0.242984,0.372683,0.964869,0.480607,0.096392,0.82581,0.793386,0.147137,0.221413,0.526854,0.0327343,0.411685,0.0722135,0.473304,0.070043,0.523313,0.592356,0.757979,0.347575,0.691881,0.0693444,0.00933623,0.981677,0.389205,0.0504937,0.420879,0.638031,0.33535,0.863698,0.122823,0.619961,0.804861,0.777325,0.737711,0.899706,0.327219,0.0429322,0.182934,0.824538,0.752547,0.667126,0.364421,0.727648,0.169919,0.0303892,0.591166,0.392304,0.132015,0.361266,0.258612,0.357225,0.700316,0.0777847,0.385353,0.957091,0.380376,0.143208,0.853707,0.0600022,0.42648,0.821987,0.671168,0.330202,0.494885,0.447854,0.369051,0.193537,0.65876,0.0497508,0.468343,0.422082,0.761766,0.98499,0.670624,0.930064,0.620152,0.865937,0.599254,0.119966,0.212467,0.770057,0.515506,0.0875934,0.255107,0.751316,0.187061,0.27915,0.614696,0.553047,0.827076,0.51322,0.486649,0.14286,0.862295,0.275411,0.553354,0.656059,0.7688,0.718228,0.614407,0.112014,0.248653,0.737194,0.866775,0.895444,0.915779,0.988821,0.492222,0.393526,0.00291634,0.464727,0.864699,0.696604,0.893311,0.666761,0.116876,0.390082,0.820253,0.447468,0.898889,0.539431,0.495378,0.10616,0.567636,0.940037,0.380989,0.192861,0.228959,0.701309,0.514708,0.80875,0.0400597,0.497201,0.877678,0.641774,0.643706,0.225929,0.319337,0.790128,0.586462,0.772282,0.892764,0.633684,0.87796,0.340877,0.355614,0.493182,0.743416,0.648328,0.0893226,0.948961,0.750794,0.627759,0.568085,0.086842,0.605525,0.248191,0.639919,0.917053,0.793476,0.0882925,0.0238627,0.664696,0.291118,0.737002,0.501953,0.482064,0.67865,0.32508,0.204494,0.812436,0.244075,0.0609449,0.175713,0.925309,0.768042,0.0981298,0.328781,0.876664,0.84806,0.488495,0.465332,0.356695,0.39108,0.687424,0.0260616,0.101957,0.744896,0.103495,0.0248128,0.00503558,0.358827,0.084256,0.421883,0.513306,0.47344,0.42802,0.0700919,0.0699332,0.682999,0.170539,0.319493,0.643921,0.189716,0.103786,0.39198,0.382428,0.418952,0.0891781,0.389655,0.413431,0.0222753,0.028258,0.667522,0.582305,0.751962,0.848647,0.126925,0.518647,0.71786,0.0831518,0.407372,0.882456,0.841201,0.261592,0.0725522,0.30262,0.916803,0.256964,0.722418,0.209385,0.439588,0.923201,0.596189,0.984366,0.332808,0.211091,0.231673,0.466066,0.0801846,0.147085,0.486831,0.890859,0.851849,0.621226,0.695532,0.867709,0.788,0.359138,0.467979,0.0175917,0.438342,0.492103,0.273534,0.869203,0.538408,0.573584,0.045053,0.759951,0.791942,0.279852,0.488779,0.44355,0.807481,0.131638,0.36616,0.616239,0.540309,0.752168,0.909922,0.940901,0.596033,0.824807,0.821592,0.103492,0.851517,0.187212,0.136613,0.648697,0.875711,0.139259,0.384896,0.833815,0.256132,0.12574,0.660472,0.677328,0.488481,0.477604,0.5561,0.0744786,0.214601,0.590774,0.229265,0.787854,0.810469,0.107008,0.969249,0.883846,0.174818,0.846747,0.586359,0.186831,0.954167,0.0264472,0.0366262,0.517697,0.469929,0.922985,0.174412,0.551152,0.222272,0.445577,0.368068,0.734499,0.481296,0.481779,0.188969,0.835359,0.178882,0.846879,0.975921,0.596935,0.379436,0.847899,0.966072,0.499324,0.649693,0.00176311,0.764872,0.128415,0.289304,|0.127703,0.804823,0.0727348,0.874183,0.798222,0.806921,0.358075,0.100037,0.52385,0.478325,0.476192,0.918481,0.755333,0.562363,0.19536,0.469808,0.165823,0.689889,0.920618,0.301353,0.0253508,0.0177076,0.332651,0.462565,0.637811,0.460053,0.0184878,0.145076,0.230529,0.567393,0.696815,0.940843,0.521778,0.985596,0.686316,0.92579,0.758044,0.365688,0.660682,0.859812,0.251574,0.468682,0.0355185,0.0852858,0.00863302,0.380474,0.436576,0.698735,0.150568,0.134884,0.808874,0.0619789,0.242427,0.311766,0.00182402,0.227043,0.596286,0.350276,0.593003,0.170669,0.479759,0.471494,0.462091,0.488999,0.104349,0.460981,0.719776,0.979843,0.13669,0.167474,0.786738,0.168256,0.870217,0.795352,0.854059,0.277903,0.324277,0.22024,0.539355,0.610206,0.750599,0.672728,0.799493,0.675386,0.150498,0.343692,0.646522,0.925956,0.824244,0.294577,0.806846,0.571161,0.103866,0.683419,0.0866451,0.831354,0.134288,0.569756,0.270564,0.254913,0.354861,0.970363,0.347792,0.422567,0.190241,0.557366,0.644535,0.107135,0.128072,0.0180507,0.761144,0.464803,0.567458,0.767448,0.652141,0.830931,0.37643,0.273308,0.921125,0.90995,0.479314,0.631585,0.558831,0.382615,0.0325624,0.0349521,0.0308976,0.983055,0.562045,0.861595,0.537546,0.944448,0.0881533,0.190004,0.608374,0.638359,0.430134,0.439354,0.839362,0.797456,0.0114992,0.982494,0.626202,0.556056,0.915373,0.853893,0.874037,0.795018,0.445226,0.0529323,0.0293797,0.708488,0.733171,0.545224,0.822499,0.481757,0.966402,0.156977,0.0880741,0.606462,0.258193,0.1237,0.7022,0.0251096,0.871237,0.778958,0.194098,0.311503,0.757757,0.248216,0.565539,0.216147,0.763394,0.399044,0.330256,0.505103,0.29476,0.668829,0.658026,0.0663999,0.56596,0.064506,0.318848,0.0312531,0.996131,0.54447,0.64118,0.486363,0.472099,0.244176,0.906046,0.256635,0.118506,0.797141,0.975021,0.351317,0.929356,0.188496,0.36495,0.345341,0.344247,0.0319623,0.391959,0.680163,0.698671,0.845354,0.512145,0.71106,0.237435,0.821062,0.516436,0.0606296,0.165094,0.239339,0.962015,0.722464,0.0273228,0.865786,0.208414,0.736927,0.129407,0.911592,0.19295,0.373345,0.403639,0.52972,0.117694,0.982621,0.461079,0.855968,0.724234,0.769977,0.762044,0.65029,0.823206,0.179494,0.199229,0.351393,0.746989,0.836265,0.401444,0.469328,0.140253,0.0178455,0.978776,0.367127,0.594003,0.759391,0.722228,0.24881,0.265015,0.459285,0.0853862,0.763694,0.322587,0.000126481,0.254819,0.0836934,0.270441,0.416618,0.0470973,0.200493,0.535522,0.980007,0.122167,0.559745,0.706868,0.884748,0.46967,0.628329,0.419078,0.570918,0.950989,0.280479,0.180452,0.478906,0.494172,0.584212,0.62297,0.778236,0.697972,0.662614,0.358169,0.902103,0.590611,0.995561,0.56792,0.688062,0.902212,0.601174,0.211868,0.882164,0.440924,0.0331336,0.398524,0.608963,0.694776,0.904673,0.902176,0.293974,0.728326,0.181645,0.707809,0.81892,0.140649,0.26861,0.172304,0.298903,0.98189,0.210823,0.937858,0.381855,0.698575,0.255944,0.0201284,0.0585583,0.94319,0.916779,0.435916,0.513153,0.642673,0.16261,0.767262,0.341006,0.0617576,0.0377504,0.891994,0.815112,0.566376,0.049996,0.456916,0.0169678,0.368591,0.529175,0.926639,0.726629,0.251917,0.564747,0.390698,0.592505,0.258022,0.707955,0.911391,0.685774,0.484952,0.0498893,0.535468,0.0167419,0.38144,0.714873,0.375657,0.250794,0.822015,0.334489,0.465973,0.543828,0.600264,0.923529,0.909419,0.890071,0.397463,0.981033,0.430101,0.214503,0.835327,0.0870349,0.120297,0.63664,0.956543,0.59824,0.73047,0.0502273,0.307371,0.0332246,0.620298,0.473622,0.169789,0.505706,0.279062,0.0596941,0.247199,0.494189,0.958528,0.850777,0.74151,0.568588,0.231237,0.672544,0.913998,0.154997,0.759186,0.245989,0.107414,0.00798959,0.959029,0.25789,0.772001,0.362626,0.824362,0.370138,0.436343,0.526548,0.429806,0.788168,0.499424,0.0744125,0.742977,0.129154,0.464277,0.203138,0.67413,0.187077,0.223814,0.273837,0.376295,0.0879596,0.742554,0.0476112,0.692713,0.673541,0.260156,0.575428,0.140827,0.703703,0.921529,0.346109,0.0325875,0.779852,0.71167,0.439004,0.466493,0.19565,0.100946,0.274354,0.539426,0.809797,0.647726,0.727646,0.0468985,0.617995,0.760164,0.69228,0.900994,0.33127,0.862968,0.768196,0.544305,0.499346,0.698423,0.109216,0.449804,0.0742024,0.000613093,0.709943,0.926445,0.40247,0.0306376,0.278799,0.0706761,0.392498,0.406531,0.38979,0.451808,0.111995,0.439111,0.391612,0.93598,0.294806,0.268343,0.722316,0.806093,0.580706,0.544172,0.249239,0.634786,0.861693,0.286516,1.00136e-05,0.359996,0.931614,0.901758,0.221571,0.648001,0.688055,0.300901,0.47436,0.384147,0.23699,0.622587,0.702332,0.81366,0.289982,0.933153,0.417887,0.76858,0.605445,0.874689,0.764851,0.437159,0.525565,0.665296,0.658216,0.858515,0.523846,0.909911,0.025282,0.909855,0.872748,0.231479,0.657916,0.36973,0.911469,0.111909,0.631609,0.166806,0.964747,0.816816,0.924313,0.177073,0.729581,0.172405,0.374155,0.344761,0.173099,0.468539,0.140557,0.644587,0.444116,0.676553,0.543296,0.48295,0.294606,0.225158,0.613251,0.330454,0.594529,0.0243832,0.429749,0.940567,0.266023,0.784012,0.561798,0.820321,0.786612,0.32143,0.946997,0.0441359,0.9286,0.97264,0.409495,0.39199,0.783655,0.226526,0.334583,0.127603,0.805018,0.356029,0.765815,0.0609306,0.765978,0.827719,0.814846,0.433873,0.162725,0.709797,0.96879,0.614274,0.430213,0.243838,0.187704,0.140561,0.214276,0.683982,0.417002,0.295072,0.61077,0.275215,0.474234,0.882624,0.733167,0.163617,0.0142544,0.792597,0.159124,0.224708,0.0301049,0.971461,0.317869,0.000972927,0.815366,0.912434,0.774156,0.362739,0.131991,0.860058,0.810386,0.0896265,0.333171,0.434314,0.0427244,0.300257,0.146792,0.539633,0.425724,0.138935,0.457744,0.682952,0.948276,0.214855,0.917252,0.0241485,0.457483,0.325658,0.0613766,0.648786,0.16649,0.495777,0.774477,0.922435,0.585593,0.669892,0.127684,0.972767,0.886182,0.491132,0.754072,0.344111,0.748551,0.725246,0.0251875,0.215236,0.478239,0.328281,0.422376,0.358084,0.176179,0.933323,0.53259,0.958066,0.0185197,0.705326,0.0544976,0.0710249,0.0166793,0.222678,0.971694,0.476708,0.108789,0.313969,0.513549,0.391258,0.319456,0.196206,0.366359,0.918905,0.0698013,0.144343,0.0292538,0.112327,0.902798,0.222348,0.103557,0.197429,0.753394,0.0397195,0.0956759,0.898099,0.510891,0.293413,0.132456,0.875246,0.000518322,0.177098,0.780271,0.0166393,0.0400622,0.441827,0.549531,0.975123,0.130805,0.251234,0.290793,0.175472,0.958881,0.120541,0.755564,0.31062,0.0110191,0.810511,0.234993,0.688269,0.588507,0.460276,0.208073,0.11096,0.738197,0.366598,0.780033,0.72426,0.277423,0.684603,0.754868,0.869759,0.528281,0.721991,0.0639979,0.349709,0.782514,0.782033,0.00557715,0.259029,0.496202,0.841146,0.0949313,0.118065,0.369029,0.456618,0.93603,0.562498,0.337349,0.661692,0.918064,0.987003,0.733089,0.812819,0.770494,0.484171,0.830596,0.95951,0.629424,0.93005,0.192112,0.0718436,0.132626,0.125004,0.956082,0.0939487,0.0878172,0.139348,0.744637,0.364884,0.76004,0.0702717,0.859609,0.413078,0.0658886,0.985276,0.665882,0.27706,0.943727,0.627449,0.6264,0.672783,0.608024,0.170121,0.289764,0.667749,0.298581,0.769697,0.162482,0.627888,0.512842,0.214172,0.695508,0.118254,0.225004,0.41183,0.760215,0.289877,0.771113,0.46095,0.640065,0.715995,0.076228,0.0641245,0.807258,0.27931,0.384276,0.249076,0.605138,0.452715,0.820037,0.133791,0.284653,0.31129,0.78459,0.810847,0.862244,0.121414,0.120406,0.195895,0.207665,0.510377,0.530951,0.223478,0.345269,0.476092,0.581944,0.381394,0.630177,0.770926,0.0804023,0.959581,0.0651483,0.103941,0.588221,0.979245,0.698744,0.902138,0.650948,0.715418,0.883815,0.755692,0.748457,0.451733,0.5911,0.94366,0.0152751,0.455992,0.108257,0.00587511,0.360447,0.239811,0.672083,0.842469,0.881243,0.629875,0.169151,0.0229098,0.741149,0.674471,0.0179719,0.0661806,0.838656,0.163885,0.346548,0.97674,0.443156,0.599131,0.280175,0.681177,0.427835,0.366573,0.775374,0.16297,0.370474,0.327548,0.0582286,0.524159,0.920377,0.386992,0.903869,0.811195,0.0651329,0.466416,0.312086,0.867243,0.219202,0.462557,0.343787,0.344636,0.307131,0.746618,0.318579,0.667241,0.541796,0.53272,0.362425,0.238709,0.977641,0.00992876,0.458267,0.213998,0.511938,0.378498,0.200288,0.413794,0.877415,0.547748,0.3406,0.184532,0.0209562,0.13008,0.0749018,0.625441,0.881357,0.835602,0.213671,0.0686579,0.933575,0.265726,0.59841,0.539026,0.348384,0.477079,0.522166,0.0217371,0.650624,0.47518,0.930526,0.10232,0.924372,0.443624,0.575266,0.878227,0.341071,0.601838,0.225335,0.755969,0.969031,0.0711993,0.723598,0.801317,0.25063,0.200188,0.154635,0.350507,0.212476,0.563521,0.896793,0.00808197,0.894498,0.271531,0.807142,0.0161018,0.661962,0.433876,0.772371,0.453363,0.935066,0.489137,0.106919,0.949012,0.492832,0.775737,0.556807,0.492393,0.527578,0.682641,0.978344,0.829773,0.645949,0.960157,0.581394,0.865352,0.308989,0.34157,0.404043,0.279422,0.695382,0.950676,0.615387,0.651839,0.107478,0.482015,0.104679,0.127251,0.912503,0.866399,0.590012,0.00770515,0.404026,0.801105,0.959061,0.143699,0.981295,0.830551,0.118617,0.0325133,0.8821,0.717361,0.129675,0.522037,0.614503,0.185617,0.12567,0.87857,0.966046,0.0563773,0.305278,0.268258,0.434802,0.309253,0.663084,0.762352,0.508402,0.921723,0.942939,0.50875,0.229976,0.765646,0.247024,0.620879,0.542092,0.885908,0.464827,0.661724,0.839909,0.634558,0.348951,|0.321998,0.637697,0.752755,0.845706,0.431286,0.46665,0.276234,0.876394,0.0885126,0.924063,0.726976,0.779556,0.488994,0.618282,0.291739,0.712632,0.894034,0.320952,0.232092,0.759784,0.196216,0.322301,0.969138,0.720687,0.171207,0.38813,0.0644385,0.319043,0.606947,0.919238,0.92205,0.160896,0.714299,0.00343364,0.626822,0.529082,0.418823,0.309156,0.643365,0.201578,0.17752,0.10559,0.11308,0.305178,0.944008,0.959577,0.334906,0.311837,0.0544479,0.778804,0.960246,0.19282,0.60326,0.0293207,0.0765726,0.423105,0.41404,0.855102,0.101464,0.835975,0.746626,0.972209,0.189583,0.692866,0.386887,0.706059,0.337977,0.375919,0.518689,0.371487,0.0621455,0.452273,0.894148,0.441397,0.231912,0.000907958,0.503754,0.647882,0.697308,0.55657,0.244502,0.984928,0.193263,0.619821,0.10064,0.132553,0.531476,0.403033,0.880729,0.374953,0.490793,0.135268,0.5421,0.651765,0.242114,0.92381,0.0145873,0.491614,0.45914,0.9453,0.289176,0.196843,0.111623,0.150577,0.480536,0.827461,0.0528611,0.334432,0.613483,0.569026,0.313071,0.390441,0.395685,0.606781,0.630408,0.384003,0.21388,0.653953,0.00166345,0.175933,0.111263,0.894518,0.928062,0.945278,0.0230227,0.778006,0.281372,0.30734,0.484431,0.501442,0.173892,0.508876,0.217891,0.533035,0.848963,0.0718951,0.424553,0.051801,0.299237,0.496529,0.275752,0.0243374,0.272517,0.0946994,0.375788,0.721456,0.0901589,0.0748938,0.144889,0.818078,0.285448,0.473755,0.158155,0.0235633,0.587657,0.176142,0.0859164,0.622621,0.993089,0.796969,0.519033,0.901722,0.124852,0.202081,0.759625,0.376622,0.53562,0.418372,0.694897,0.506406,0.652151,0.321827,0.0475387,0.98006,0.57432,0.707573,0.983611,0.761182,0.214575,0.40728,0.857818,0.989096,0.32863,0.458498,0.975226,0.398127,0.781455,0.266596,0.344349,0.411437,0.0655682,0.610913,0.419096,0.28062,0.04071,0.0199253,0.638718,0.0420322,0.778282,0.611775,0.608791,0.997533,0.539085,0.041668,0.00949222,0.594451,0.1643,0.400448,0.689501,0.721652,0.0530086,0.525422,0.493449,0.0859752,0.868637,0.367349,0.694637,0.713979,0.671039,0.887584,0.679234,0.458886,0.577474,0.988766,0.608749,0.528199,0.775999,0.316788,0.882275,0.446134,0.632332,0.2626,0.196987,0.739603,0.00115919,0.163157,0.715397,0.47698,0.55586,0.849931,0.952434,0.1214,0.651899,0.503355,0.743458,0.974194,0.593558,0.964048,0.296224,0.77049,0.493568,0.207954,0.412066,0.754158,0.532202,0.94628,0.576183,0.919406,0.101244,0.935812,0.0226689,0.52503,0.848598,0.61663,0.595356,0.618996,0.635554,0.025894,0.869705,0.74647,0.344369,0.439965,0.365448,0.940055,0.611585,0.0559417,0.532959,0.205774,0.590568,0.103704,0.904529,0.436013,0.989224,0.59355,0.46892,0.857453,0.289308,0.176868,0.172251,0.997808,0.257676,0.442878,0.538784,0.21612,0.490283,0.263645,0.973599,0.477662,0.311343,0.218182,0.474103,0.421189,0.784493,0.0228675,0.334976,0.326479,0.182156,0.429121,0.120493,0.3788,0.898852,0.0979525,0.875348,0.958203,0.140367,0.532232,0.841138,0.896696,0.693991,0.27791,0.782595,0.223289,0.816792,0.587228,0.797379,0.246086,0.12243,0.191311,0.0918972,0.882527,0.118858,0.596738,0.41494,0.894771,0.772268,0.66227,0.049521,0.703008,0.80518,0.6924,0.470249,0.88982,0.304193,0.97567,0.980988,0.162134,0.411977,0.743349,0.232122,0.922181,0.342583,0.0793532,0.118999,0.841708,0.740058,0.924903,0.320478,0.955759,0.948831,0.24848,0.360736,0.691387,0.571752,0.905243,0.364204,0.0958243,0.0604655,0.438866,0.603596,0.018182,0.601648,0.694853,0.306432,0.818552,0.93131,0.38499,0.202571,0.890219,0.0722133,0.177208,0.400176,0.651098,0.701244,0.786775,0.769778,0.195449,0.294748,0.193536,0.94906,0.0694329,0.910566,0.273027,0.709543,0.305339,0.404495,0.906523,0.213547,0.635705,0.707161,0.993053,0.625515,0.739554,0.907321,0.880025,0.892139,0.661586,0.532761,0.216314,0.288818,0.639365,0.795609,0.592408,0.228175,0.734256,0.452792,0.796155,0.704066,0.41374,0.272236,0.376406,0.423077,0.302287,0.651232,0.557984,0.632466,0.941718,0.285446,0.964837,0.654796,0.542781,0.431825,0.564888,0.94852,0.357347,0.421879,0.0414188,0.821852,0.0956948,0.849311,0.418642,0.635555,0.819296,0.791921,0.903621,0.255352,0.0779509,0.394324,0.0122684,0.0855607,0.369629,0.57793,0.839693,0.990523,0.0669352,0.543898,0.992705,0.935719,0.13748,0.935368,0.835997,0.223735,0.0855557,0.585545,0.342868,0.492456,0.245885,0.748435,0.332764,0.827123,0.848166,0.947056,0.971836,0.70046,0.379474,0.484221,0.709736,0.538826,0.491711,0.531855,0.481252,0.780064,0.119241,0.821671,0.516951,0.677253,0.319841,0.17312,0.995712,0.0191228,0.32234,0.651693,0.831961,0.226003,0.925699,0.800754,0.900253,0.401785,0.136945,0.614897,0.135805,0.534876,0.435319,0.394965,0.653992,0.339682,0.0791761,0.756824,0.907116,0.367321,0.900398,0.168082,0.540072,0.542179,0.931968,0.439072,0.9895,0.518848,0.258338,0.585947,0.0941315,0.535967,0.999004,0.932981,0.209722,0.512186,0.271656,0.0932137,0.999251,0.962575,0.185673,0.168743,0.652626,0.405878,0.094116,0.479953,0.96452,0.864492,0.206004,0.0697557,0.555727,0.0513805,0.315077,0.363484,0.315444,0.594417,0.605829,0.674626,0.352635,0.938281,0.955304,0.11291,0.982612,0.220998,0.217252,0.878147,0.115517,0.0868365,0.242519,0.677176,0.0473903,0.42944,0.818301,0.506886,0.135947,0.320328,0.0286765,0.395343,0.618364,0.605736,0.539747,0.387944,0.0749546,0.519588,0.108393,0.548593,0.166479,0.923835,0.857906,0.826882,0.117654,0.747073,0.126775,0.40085,0.979183,0.816471,0.383811,0.695536,0.517237,0.468833,0.94351,0.794138,0.0776808,0.999166,0.0891461,0.991088,0.221084,0.431965,0.188724,0.155446,0.697634,0.798479,0.868091,0.206556,0.769874,0.40678,0.663847,0.179037,0.719682,0.670344,0.296926,0.34975,0.294838,0.459225,0.146977,0.574283,0.813361,0.568268,0.202623,0.840953,0.544755,0.0153442,0.336183,0.661905,0.813941,0.80365,0.416372,0.894246,0.226133,0.738253,0.155447,0.228731,0.0765082,0.643588,0.924023,0.373665,0.252587,0.191231,0.528238,0.546359,0.171317,0.742642,0.0517449,0.45253,0.0294564,0.868069,0.687697,0.20608,0.623762,0.78602,0.883856,0.0609791,0.628157,0.972804,0.131625,0.57369,0.317075,0.326698,0.601887,0.49863,0.045869,0.595598,0.52997,0.432463,0.602468,0.791675,0.793474,0.022687,0.45478,0.12543,0.982671,0.809673,0.192777,0.877534,0.727877,0.0159565,0.822843,0.576963,0.379382,0.893434,0.175784,0.559844,0.692708,0.99248,0.0278324,0.0464703,0.501303,0.623683,0.324351,0.85502,0.390786,0.0941278,0.21149,0.872533,0.786513,0.0239215,0.96956,0.292261,0.909624,0.771021,0.31334,0.911084,0.367406,0.20654,0.230422,0.0386485,0.664411,0.842587,0.905875,0.532466,0.807646,0.475712,0.959591,0.000744879,0.0513109,0.694667,0.7379,0.0573457,0.574787,0.49074,0.78363,0.0462161,0.482682,0.263284,0.674876,0.435387,0.850989,0.301184,0.536068,0.0755109,0.814474,0.699532,0.00716144,0.992998,0.375338,0.661348,0.509045,0.83665,0.641783,0.66778,0.93903,0.0840495,0.808401,0.372384,0.348982,0.598357,0.0999455,0.83866,0.0227502,0.900873,0.827761,0.802325,0.194705,0.477531,0.964536,0.145965,0.440894,0.212901,0.746965,0.406625,0.558988,0.475114,0.623795,0.252648,0.925571,0.327639,0.519609,0.284977,0.821675,0.610975,0.883802,0.00268841,0.98114,0.915382,0.82761,0.514325,0.0181918,0.604656,0.618014,0.767135,0.756679,0.0526563,0.140701,0.199503,0.889927,0.916105,0.0762478,0.291355,0.881224,0.497548,0.86837,0.191978,0.902434,0.0909386,0.272801,0.944048,0.563358,0.590644,0.194606,0.858078,0.352578,0.729705,0.983444,0.558991,0.713383,0.039345,0.283906,0.942981,0.244942,0.0991503,0.299862,0.474128,0.0585202,0.404101,0.703925,0.666976,0.0350137,0.748021,0.656089,0.364042,0.701509,0.737487,0.548885,0.897611,0.67027,0.155201,0.835328,0.34458,0.842401,0.639765,0.843126,0.96963,0.893507,0.687067,0.934157,0.626028,0.020209,0.467683,0.734508,0.777433,0.146628,0.439804,0.857872,0.122512,0.092311,0.321541,0.386035,0.594242,0.731645,0.276839,0.72599,0.388214,0.999887,0.465286,0.0484714,0.629844,0.775901,0.601699,0.73124,0.634819,0.71054,0.755937,0.999391,0.648949,0.00152087,0.143692,0.153325,0.134524,0.309112,0.991009,0.331995,0.155784,0.822388,0.500641,0.0966287,0.402116,0.541226,0.973559,0.356408,0.758672,0.295333,0.163122,0.524178,0.33846,0.380515,0.750825,0.598994,0.723045,0.525753,0.975667,0.219505,0.0553176,0.96086,0.946817,0.868342,0.262996,0.27879,0.332177,0.765613,0.624943,0.0703875,0.767532,0.722068,0.15978,0.942991,0.542574,0.734785,0.219526,0.838865,0.953603,0.174693,0.245214,0.531635,0.213108,0.876749,0.497726,0.790174,0.906461,0.257123,0.394269,0.772041,0.568059,0.606276,0.864745,0.694786,0.745505,0.389811,0.350277,0.693789,0.0915158,0.136266,0.581057,0.5448,0.939539,0.231378,0.758817,0.67218,0.874963,0.83227,0.472863,0.92657,0.297091,0.970848,0.180777,0.449528,0.295408,0.946455,0.803158,0.265628,0.416398,0.138972,0.678997,0.77871,0.260313,0.769867,0.963525,0.879194,0.736594,0.127093,0.11433,0.624445,0.540807,0.254862,0.301731,0.678327,0.335005,0.837669,0.207888,0.628526,0.885071,0.296906,0.641856,0.747404,0.833426,0.530666,0.163063,0.660379,0.249348,0.763936,0.779535,0.2459,0.926002,0.308652,0.968756,0.0522174,0.517016,0.995139,0.363844,0.860999,0.869417,0.972177,0.0144221,0.178732,0.646617,0.269136,0.162784,0.236503,0.538915,0.675627,0.161432,0.177635,|0.600132,0.064109,0.763681,0.252705,0.165752,0.276228,0.0253163,0.220874,0.823281,0.66839,0.723735,0.837027,0.463384,0.632607,0.377795,0.096283,0.300574,0.890461,0.0649073,0.743923,0.194918,0.836091,0.229392,0.5516,0.00183028,0.44575,0.163385,0.217943,0.0794671,0.717301,0.686874,0.147998,0.321597,0.321355,0.00165492,0.477812,0.819484,0.772606,0.848901,0.694929,0.408143,0.325807,0.422378,0.344389,0.523345,0.850112,0.237368,0.925745,0.962992,0.00268894,0.763884,0.642931,0.504721,0.851189,0.845939,0.245248,0.569555,0.661944,0.747065,0.656495,0.793494,0.496462,0.808544,0.25388,0.155963,0.850005,0.924257,0.466365,0.433691,0.790276,0.00610048,0.123633,0.954994,0.905541,0.325314,0.906585,0.72504,0.078768,0.573982,0.494825,0.12738,0.761528,0.0250303,0.976386,0.964567,0.630487,0.253363,0.75917,0.161499,0.222832,0.995775,0.79233,0.89459,0.0050503,0.0435496,0.817262,0.805419,0.088476,0.900472,0.0302932,0.206933,0.134683,0.784092,0.0515451,0.0641539,0.624941,0.831554,0.713889,0.515841,0.192991,0.152515,0.713559,0.372736,0.447988,0.831748,0.605335,0.799794,0.705972,0.626836,0.846472,0.994443,0.624648,0.416663,0.827136,0.31698,0.342625,0.156035,0.441631,0.420306,0.573224,0.734218,0.728492,0.87519,0.855858,0.765252,0.703306,0.465972,0.110883,0.718202,0.470759,0.377134,0.810774,0.120627,0.659286,0.303587,0.116421,0.120242,0.881021,0.380972,0.65416,0.433817,0.87482,0.043737,0.384527,0.530034,0.237585,0.843298,0.158394,0.71523,0.318879,0.24518,0.411193,0.952569,0.882536,0.16458,0.308052,0.196058,0.360296,0.83997,0.895897,0.450617,0.691161,0.433955,0.660521,0.965618,0.96486,0.758593,0.524901,0.865973,0.631907,0.170163,0.811385,0.873595,0.542751,0.119815,0.370072,0.417183,0.747171,0.400736,0.00809491,0.616878,0.9616,0.0728864,0.346133,0.781113,0.720003,0.305363,0.0817933,0.901799,0.400728,0.949531,0.00441122,0.221261,0.786706,0.94544,0.0662934,0.26252,0.527839,0.913426,0.377633,0.738262,0.843556,0.838944,0.112121,0.597548,0.584004,0.540109,0.417429,0.148439,0.685887,0.921525,0.460667,0.670822,0.659534,0.999005,0.633282,0.793336,0.314605,0.624721,0.618904,0.64165,0.954532,0.25573,0.345186,0.601861,0.710133,0.804061,0.485421,0.258465,0.871041,0.529843,0.590442,0.332276,0.209929,0.713638,0.347481,0.149256,0.365354,0.86096,0.429517,0.502518,0.771852,0.741791,0.517132,0.776419,0.477377,0.269834,0.0621235,0.236456,0.394789,0.535304,0.673333,0.183302,0.751131,0.377681,0.89495,0.303162,0.0719801,0.93414,0.972495,0.055519,0.174862,0.886356,0.55507,0.220825,0.461741,0.505953,0.53697,0.0837914,0.137364,0.56957,0.544901,0.551674,0.784977,0.776154,0.0680215,0.541124,0.293238,0.56471,0.386322,0.313407,0.72457,0.867415,0.948245,0.944727,0.14072,0.0988344,0.986664,0.971761,0.50286,0.943561,0.306908,0.21176,0.89283,0.164371,0.705216,0.417641,0.46071,0.315798,0.324213,0.0945896,0.574685,0.313806,0.595718,0.176047,0.718635,0.344891,0.358952,0.341592,0.605668,0.904583,0.283402,0.383148,0.830531,0.185234,0.249605,0.948225,0.56808,0.606838,0.664637,0.0133301,0.495529,0.189644,0.619508,0.479813,0.0955156,0.802018,0.165579,0.852184,0.0916477,0.865597,0.913095,0.705473,0.359044,0.0984377,0.254104,0.638745,0.467799,0.476246,0.218609,0.206538,0.282771,0.549086,0.0826116,0.11676,0.182364,0.563541,0.768036,0.92912,0.848895,0.68066,0.544894,0.902869,0.01135,0.625112,0.141651,0.632733,0.0652342,0.310649,0.545296,0.845814,0.233689,0.0321196,0.700506,0.287126,0.54149,0.544197,0.123269,0.795714,0.547647,0.565323,0.517804,0.389028,0.125138,0.226596,0.973209,0.0198151,0.873966,0.0700287,0.556827,0.361166,0.968581,0.362577,0.429708,0.295775,0.542617,0.521866,0.528208,0.889305,0.447007,0.426201,0.352156,0.524991,0.268076,0.379107,0.797658,0.414973,0.00500482,0.165285,0.447568,0.934555,0.435014,0.866693,0.983835,0.413679,0.161743,0.256707,0.568765,0.251992,0.627252,0.176849,0.585662,0.435761,0.357838,0.998338,0.970121,0.129576,0.220671,0.112714,0.658847,0.401166,0.175421,0.545547,0.673414,0.853821,0.901797,0.665216,0.0461411,0.975338,0.448094,0.568456,0.757697,0.203443,0.156376,0.0407031,0.977292,0.894796,0.100475,0.994621,0.319202,0.315283,0.775489,0.232266,0.445828,0.462343,0.876177,0.727969,0.792471,0.377167,0.493578,0.66715,0.944242,0.901865,0.959845,0.145493,0.897567,0.239532,0.453957,0.212026,0.205001,0.66623,0.409859,0.660282,0.22076,0.986005,0.151634,0.487717,0.157463,0.306018,0.181196,0.577674,0.256075,0.790179,0.100676,0.854513,0.608997,0.357866,0.216225,0.518158,0.40657,0.666999,0.324523,0.652939,0.928358,0.717538,0.178702,0.0843044,0.0366006,0.29646,0.952531,0.0646214,0.972801,0.893399,0.828674,0.0550197,0.33589,0.0967138,0.453379,0.879086,0.219116,0.172818,0.723296,0.155211,0.224229,0.569384,0.944074,0.878299,0.0949798,0.688928,0.301887,0.34734,0.983727,0.755509,0.742508,0.453853,0.0417573,0.742349,0.197214,0.989714,0.0871903,0.849676,0.580036,0.545721,0.835134,0.723476,0.357287,0.463885,0.978938,0.482435,0.309233,0.60214,0.22358,0.862125,0.929,0.430691,0.181238,0.808302,0.139881,0.498582,0.393734,0.655536,0.0706168,0.560439,0.406349,0.883655,0.54131,0.48478,0.0542468,0.761373,0.825808,0.149565,0.298956,0.0326927,0.728068,0.614403,0.602561,0.037407,0.0730664,0.187382,0.392791,0.142397,0.911071,0.797602,0.903147,0.536266,0.806277,0.428237,0.697908,0.974785,0.152744,0.645301,0.0461537,0.882311,0.657647,0.734343,0.132863,0.821179,0.25342,0.263431,0.515862,0.794849,0.224503,0.684532,0.716153,0.465752,0.55508,0.424846,0.647764,0.401163,0.856376,0.321815,0.405035,0.117185,0.902002,0.23167,0.147969,0.629299,0.809283,0.450131,0.0629389,0.948583,0.339859,0.783656,0.475556,0.705293,0.81841,0.946313,0.558888,0.872028,0.0854713,0.572361,0.797402,0.936818,0.497302,0.36664,0.225763,0.773444,0.742522,0.298679,0.08382,0.346244,0.296501,0.225618,0.266923,0.0830758,0.584236,0.0715995,0.553266,0.218512,0.287539,0.15336,0.757327,0.373542,0.561988,0.417148,0.997321,0.930066,0.268203,0.761205,0.984745,0.680244,0.357986,0.00533068,0.0359952,0.452376,0.923574,0.0629596,0.881835,0.481598,0.988867,0.760434,0.946691,0.0993164,0.865393,0.712912,0.28442,0.0145669,0.662855,0.723736,0.0141555,0.215647,0.0659565,0.297127,0.14585,0.206269,0.0747047,0.839031,0.00910193,0.805553,0.097159,0.799683,0.41362,0.41481,0.427652,0.566181,0.281089,0.527336,0.0157303,0.107222,0.192694,0.832292,0.879397,0.41873,0.0756294,0.503136,0.520056,0.212726,0.697971,0.143031,0.261262,0.740101,0.277269,0.332095,0.93149,0.042089,0.502286,0.521636,0.6468,0.927627,0.328305,0.552239,0.423826,0.989855,0.189306,0.541298,0.0643833,0.6614,0.942082,0.972091,0.119964,0.87167,0.890543,0.335982,0.180223,0.801183,0.0994332,0.412754,0.503315,0.151432,0.325232,0.264384,0.464945,0.744152,0.408557,0.34319,0.597079,0.474286,0.898452,0.53052,0.45003,0.505923,0.78088,0.503439,0.254536,0.307488,0.758416,0.292715,0.625562,0.529862,0.916719,0.937917,0.862156,0.634987,0.306004,0.91672,0.123332,0.112601,0.680244,0.0896937,0.468894,0.906312,0.748974,0.324451,0.499669,0.210897,0.799164,0.703404,0.19172,0.00116807,0.347073,0.386014,0.896268,0.898661,0.895415,0.635953,0.72644,0.699417,0.875492,0.84409,0.454144,0.180163,0.00113463,0.334712,0.314732,0.882827,0.779771,0.266788,0.886556,0.694463,0.56444,0.112392,0.0360036,0.232739,0.701185,0.230306,0.646206,0.0437134,0.28543,0.834263,0.214844,0.828502,0.183956,0.986537,0.383697,0.00523925,0.664606,0.939685,0.63169,0.496237,0.135469,0.291461,0.420412,0.918102,0.128645,0.690078,0.53922,0.943238,0.673956,0.204189,0.827168,0.118805,0.361934,0.471602,0.220734,0.0266337,0.131341,0.360151,0.819025,0.0335531,0.971252,0.65486,0.210763,0.252222,0.192426,0.931378,0.582457,0.504463,0.605897,0.880796,0.14567,0.322544,0.22664,0.327995,0.0523149,0.672066,0.486785,0.210487,0.0223737,0.428773,0.642368,0.523934,0.377585,0.146007,0.814808,0.636074,0.123708,0.246004,0.712776,0.196649,0.141613,0.759967,0.0962282,0.511842,0.29556,0.374459,0.282367,0.612765,0.495009,0.0601352,0.524398,0.687951,0.0776108,0.269086,0.0236134,0.0203208,0.136619,0.803794,0.743632,0.256976,0.810169,0.274091,0.399077,0.885028,0.365883,0.160881,0.627757,0.774315,0.642211,0.0110456,0.29236,0.789925,0.0774207,0.227106,0.507686,0.216044,0.931669,0.418189,0.983835,0.442876,0.333873,0.449897,0.293951,0.206808,0.799573,0.0176985,0.305733,0.571965,0.484445,0.489347,0.22038,0.0708285,0.726675,0.0682184,0.137059,0.323362,0.250999,0.420452,0.0638304,0.493274,0.757083,0.338121,0.486609,0.426958,0.790417,0.485663,0.425407,0.174173,0.850934,0.515334,0.731899,0.0854649,0.530148,0.354006,0.109426,0.91714,0.171506,0.44894,0.431542,0.916112,0.154074,0.291116,0.602011,0.000193894,0.261005,0.710094,0.488144,0.342625,0.0364255,0.0802424,0.411276,0.293532,0.400409,0.47613,0.631343,0.290113,0.947413,0.842384,0.20357,0.364411,0.785144,0.896853,0.944469,0.663543,0.189632,0.61081,0.0427225,0.20209,0.630333,0.243033,0.566631,0.636875,0.916401,0.05981,0.294302,0.200989,0.559128,0.276901,0.420882,0.0876416,0.567649,0.214297,0.00830877,0.091583,0.357314,0.290156,0.022965,0.601235,0.809672,0.581416,0.958952,0.40321,0.302809,0.490392,0.472554,0.401587,0.910933,0.0221817,0.746895,0.517482,0.344035,|0.727526,0.295548,0.817245,0.962461,0.996195,0.474183,0.428574,0.946397,0.194594,0.987661,0.179324,0.833222,0.433534,0.476024,0.280766,0.740376,0.0835331,0.740408,0.879929,0.207634,0.612267,0.422387,0.966409,0.107835,0.909187,0.473214,0.938628,0.271312,0.590169,0.292485,0.688466,0.584825,0.282326,0.363777,0.69804,0.0555259,0.48293,0.856182,0.0169454,0.112172,0.374986,0.498749,0.154119,0.397485,0.996088,0.25057,0.966974,0.715587,0.9264,0.594151,0.652632,0.535065,0.255549,0.215778,0.518042,0.337979,0.378123,0.454135,0.765628,0.588413,0.548267,0.908476,0.257554,0.860879,0.89666,0.580188,0.614466,0.338774,0.946759,0.0998111,0.0314518,0.451327,0.723859,0.692405,0.617964,0.456697,0.593726,0.997171,0.79578,0.600039,0.284339,0.715195,0.424764,0.853549,0.0535401,0.963338,0.675961,0.44046,0.577653,0.370067,0.45846,0.529438,0.810722,0.476704,0.399974,0.700109,0.174179,0.279958,0.0776839,0.610616,0.587354,0.814435,0.0280314,0.247017,0.287318,0.197991,0.384607,0.320392,0.0264173,0.0453414,0.668464,0.642178,0.350779,0.246923,0.398717,0.731466,0.741526,0.931143,0.942214,0.985403,0.952648,0.111349,0.949086,0.574497,0.0261329,0.0608512,0.436835,0.838688,0.339667,0.508255,0.322042,0.831572,0.340578,0.33123,0.953668,0.629814,0.662827,0.152615,0.122024,0.0712025,0.203524,0.572893,0.326978,0.525236,0.655545,0.582157,0.672312,0.33055,0.0688977,0.402243,0.69203,0.0254069,0.611503,0.757311,0.7689,0.911685,0.475121,0.851204,0.106158,0.864149,0.664822,0.251743,0.136377,0.419529,0.966769,0.145933,0.693613,0.68251,0.861792,0.366814,0.913978,0.797548,0.949648,0.430155,0.724962,0.736098,0.53207,0.519374,0.603319,0.831979,0.675443,0.489759,0.863822,0.715185,0.133422,0.846079,0.418196,0.919986,0.580357,0.943662,0.921443,0.673346,0.699759,0.533131,0.635904,0.247583,0.468691,0.61581,0.00356025,0.274666,0.94378,0.715336,0.883937,0.0188167,0.946009,0.748164,0.977269,0.108473,0.112788,0.985167,0.37556,0.573599,0.218231,0.436366,0.969743,0.14968,0.590467,0.223721,0.148624,0.0604416,0.767954,0.539207,0.0812508,0.119613,0.421362,0.328748,0.560046,0.98871,0.779123,0.368335,0.151053,0.405309,0.521206,0.945121,0.452481,0.0273573,0.914583,0.247764,0.273189,0.71524,0.337674,0.31198,0.373159,0.877936,0.694014,0.287973,0.632409,0.0535808,0.663603,0.428365,0.102404,0.203846,0.0779713,0.100917,0.0367727,0.754562,0.0479378,0.324905,0.200379,0.0200295,0.854478,0.7548,0.873731,0.874569,0.616064,0.30461,0.877319,0.291249,0.237765,0.853829,0.89763,0.290342,0.775866,0.541219,0.758111,0.8294,0.00614387,0.911432,0.142274,0.533773,0.0657037,0.73917,0.880309,0.180899,0.470719,0.622051,0.3288,0.210041,0.613903,0.0567001,0.219178,0.349365,0.064264,0.569848,0.826101,0.316188,0.173005,0.999125,0.94019,0.925945,0.614122,0.727774,0.434091,0.757576,0.2176,0.0812989,0.769424,0.746684,0.582526,0.31323,0.160718,0.764662,0.945859,0.385682,0.494652,0.066909,0.44361,0.842217,0.312016,0.17406,0.216588,0.6779,0.0189931,0.248383,0.913276,0.490582,0.350714,0.564737,0.78615,0.664965,0.563802,0.464344,0.70385,0.571316,0.0157246,0.122303,0.746706,0.309051,0.462061,0.143888,0.000437438,0.290407,0.522818,0.861876,0.00358486,0.430373,0.00108451,0.0402665,0.968325,0.161843,0.150814,0.913911,0.803199,0.821758,0.394952,0.363824,0.337537,0.618483,0.00505161,0.800708,0.601553,0.844655,0.504231,0.465613,0.0669969,0.04143,0.660612,0.617555,0.563412,0.469083,0.986606,0.0210094,0.674985,0.377636,0.163373,0.869579,0.973288,0.169016,0.375252,0.352517,0.775722,0.469949,0.333031,0.556165,0.116567,0.494958,0.265517,0.385419,0.563314,0.158215,0.410617,0.506463,0.683766,0.305182,0.716977,0.923298,0.476249,0.19596,0.00582385,0.0572596,0.5402,0.57208,0.648131,0.956695,0.527207,0.995622,0.0314168,0.0948427,0.507915,0.482019,0.212991,0.923646,0.922877,0.449129,0.875687,0.0650859,0.330544,0.910705,0.773095,0.512542,0.79312,0.74167,0.906765,0.619093,0.858396,0.810292,0.768364,0.676648,0.442659,0.697692,0.387854,0.610525,0.785308,0.989918,0.713177,0.0729402,0.156972,0.363342,0.133408,0.581901,0.249197,0.867636,0.160387,0.655643,0.422319,0.415465,0.0982239,0.703519,0.401089,0.982737,0.242057,0.397392,0.184736,0.111499,0.795616,0.190377,0.492131,0.817977,0.416909,0.748662,0.861342,0.465143,0.585048,0.00159019,0.674598,0.487428,0.531819,0.753651,0.828231,0.590298,0.0720725,0.00273603,0.105391,0.777535,0.557769,0.404079,0.82098,0.23502,0.117695,0.668084,0.504064,0.991081,0.174756,0.473947,0.399432,0.536776,0.312474,0.397523,0.694839,0.43839,0.168557,0.172996,0.565426,0.978207,0.563329,0.331867,0.744257,0.464357,0.644158,0.32255,0.834301,0.813579,0.939447,0.155652,0.748097,0.765504,0.298974,0.583186,0.755919,0.808685,0.625476,0.052521,0.48688,0.784655,0.397625,0.715993,0.179245,0.623003,0.677987,0.0912334,0.423979,0.27765,0.664155,0.346329,0.328927,0.61699,0.884004,0.236491,0.318358,0.427521,0.278804,0.33558,0.327187,0.986563,0.779304,0.592964,0.348747,0.85074,0.33089,0.111856,0.19903,0.202522,0.54054,0.801812,0.489294,0.569437,0.733803,0.208656,0.132185,0.975936,0.00964218,0.250575,0.916158,0.451428,0.542848,0.125344,0.946911,0.455999,0.585468,0.558571,0.651067,0.541172,0.809284,0.419418,0.865229,0.411482,0.87628,0.00513625,0.791814,0.965711,0.341157,0.0527381,0.559229,0.446402,0.159349,0.685315,0.601252,0.180013,0.927242,0.848694,0.369326,0.932714,0.974185,0.404392,0.992896,0.756139,0.41107,0.0455883,0.0512013,0.280897,0.137361,0.803303,0.435497,0.121113,0.833599,0.0499724,0.226263,0.450394,0.47236,0.555895,0.40749,0.764833,0.90423,0.258965,0.434427,0.325645,0.843785,0.475915,0.553178,0.18561,0.836547,0.723893,0.639836,0.424028,0.607102,0.903541,0.111854,0.414405,0.628405,0.758947,0.390729,0.316118,0.776528,0.415133,0.0482594,0.871532,0.074313,0.855469,0.741506,0.912653,0.467751,0.364081,0.609355,0.102884,0.0630481,0.623378,0.755587,0.164457,0.757594,0.464089,0.12926,0.156557,0.0679165,0.72857,0.544321,0.836173,0.117705,0.248014,0.0346594,0.219529,0.0304268,0.627174,0.577911,0.761383,0.791356,0.544045,0.497983,0.263987,0.247981,0.613575,0.730213,0.223109,0.656122,0.709647,0.718056,0.00707799,0.441474,0.566767,0.784975,0.545534,0.110349,0.236436,0.698085,0.367894,0.660967,0.805815,0.996434,0.869779,0.149799,0.45903,0.0114126,0.211585,0.968746,0.478293,0.204788,0.703029,0.435548,0.0817528,0.480054,0.595558,0.98165,0.545439,0.628367,0.280612,0.88646,0.450763,0.354614,0.488625,0.453777,0.80673,0.710999,0.34591,0.0486456,0.209656,0.780337,0.219927,0.191171,0.236988,0.412268,0.196471,0.613084,0.177896,0.385207,0.00679666,0.0243201,0.738803,0.0534617,0.716978,0.390521,0.868355,0.582249,0.64439,0.371249,0.180178,0.631816,0.0503015,0.996461,0.297651,0.308318,0.276689,0.93493,0.16968,0.893584,0.778404,0.0518532,0.530644,0.460049,0.174638,0.467625,0.154866,0.484845,0.835751,0.306768,0.424501,0.919631,0.194661,0.239805,0.0812038,0.675302,0.0848553,0.682446,0.932334,0.341213,0.719163,0.236269,0.301734,0.604794,0.856471,0.74333,0.14864,0.0597342,0.301275,0.95207,0.169049,0.600522,0.872214,0.401417,0.248079,0.323945,0.806379,0.955816,0.125336,0.868074,0.181152,0.0308809,0.796993,0.854162,0.825408,0.569209,0.415448,0.501168,0.966985,0.397619,0.05425,0.401246,0.894846,0.792682,0.136756,0.585493,0.133485,0.663447,0.952879,0.117548,0.782275,0.432688,0.654114,0.309295,0.42736,0.122409,0.382463,0.365364,0.0810927,0.48822,0.109901,0.601044,0.685243,0.726247,0.764198,0.16269,0.781464,0.869327,0.0828758,0.625906,0.0975904,0.374124,0.330709,0.909373,0.829184,0.253902,0.0477481,0.682106,0.199752,0.868445,0.272743,0.119502,0.393951,0.58358,0.85662,0.759632,0.159687,0.174653,0.133829,0.303405,0.556246,0.974491,0.935122,0.103109,0.495686,0.60222,0.118954,0.450741,0.545934,0.0755259,0.791567,0.143132,0.969203,0.306864,0.482008,0.798753,0.384395,0.594471,0.764298,0.774552,0.401177,0.536467,0.713573,0.0630631,0.370459,0.512433,0.41534,0.621393,0.913466,0.825263,0.903354,0.198383,0.516184,0.916922,0.212493,0.535435,0.297246,0.969984,0.728369,0.601843,0.62534,0.811446,0.549866,0.447693,0.372381,0.918972,0.548933,0.18728,0.634204,0.203869,0.70297,0.949542,0.0237697,0.859998,0.883001,0.239475,0.00182128,0.178061,0.308296,0.0160757,0.514494,0.479558,0.893635,0.501223,0.9809,0.77811,0.536238,0.639107,0.349526,0.1501,0.0442686,0.014811,0.62824,0.234792,0.845854,0.536857,0.146659,0.766211,0.153574,0.625111,0.855031,0.347853,0.0619296,0.688195,0.359426,0.449391,0.955406,0.752215,0.629621,0.711272,0.120382,0.0183634,0.806023,0.232437,0.973523,0.587237,0.506241,0.9346,0.155582,0.0315707,0.982013,0.495797,0.313894,0.363017,0.803881,0.280885,0.983261,0.966778,0.749426,0.80467,0.854673,0.264066,0.227174,0.357467,0.158521,0.253702,0.0121373,0.521699,0.710809,0.362307,0.317695,0.68308,0.770961,0.701842,0.225657,0.0644662,0.40609,0.439939,0.337478,0.934701,0.727822,0.80568,0.510289,0.160352,0.936254,0.10431,0.0344285,0.845978,0.240384,0.0830477,0.658836,0.492337,0.276486,0.785432,0.472453,0.204615,0.448938,0.887699,0.103842,0.589357,0.108498,0.309555,0.588709,0.430685,0.0479326,0.657166,0.0799737,0.254885,0.596155,0.404757,0.458853,0.551641,0.569163,0.938423,0.59846,0.750473,0.844171,|0.656462,0.361394,0.242053,0.419252,0.649464,0.665235,0.934422,0.434385,0.424259,0.609114,0.887315,0.404218,0.662209,0.881668,0.234462,0.310353,0.119981,0.488843,0.646684,0.648273,0.422583,0.000227809,0.125023,0.410862,0.128534,0.45658,0.0342279,0.721789,0.0244989,0.155357,0.586906,0.97174,0.00711042,0.721545,0.82087,0.0525563,0.775778,0.703987,0.702688,0.149544,0.120597,0.158576,0.97315,0.0133336,0.550613,0.0542034,0.820722,0.950974,0.913327,0.473372,0.772985,0.405279,0.257065,0.154097,0.994412,0.979265,0.152262,0.573151,0.960295,0.0541214,0.86451,0.63366,0.849172,0.238358,0.420912,0.813683,0.401338,0.15479,0.797595,0.925095,0.981922,0.393412,0.620955,0.581359,0.694846,0.169254,0.574563,0.931824,0.0409472,0.641213,0.586139,0.172739,0.816612,0.258763,0.802381,0.696665,0.628207,0.829229,0.505658,0.405344,0.761558,0.117331,0.089713,0.0250711,0.26483,0.930719,0.405212,0.98263,0.723182,0.918548,0.986077,0.0713218,0.692772,0.148533,0.55996,0.229829,0.123902,0.933117,0.00598013,0.859498,0.00773472,0.969637,0.444102,0.0483007,0.337173,0.343536,0.269943,0.772956,0.201804,0.810389,0.623004,0.126494,0.400095,0.451329,0.410174,0.360076,0.756653,0.341872,0.109443,0.0204881,0.962712,0.269861,0.810585,0.769304,0.0743877,0.773117,0.166807,0.909633,0.253325,0.276907,0.0111673,0.991812,0.0136819,0.597817,0.12977,0.857545,0.791494,0.600152,0.564996,0.992057,0.84838,0.216526,0.734081,0.685083,0.591979,0.0184887,0.414013,0.119178,0.757448,0.992203,0.0726791,0.0843545,0.852948,0.214662,0.70355,0.142787,0.193913,0.663468,0.93954,0.706731,0.465423,0.158527,0.275076,0.533469,0.63287,0.155752,0.86262,0.49761,0.290332,0.173492,0.696804,0.652554,0.537768,0.617757,0.202982,0.0234992,0.416074,0.744984,0.749308,0.0184633,0.0710789,0.605846,0.602978,0.0905395,0.191266,0.811098,0.190864,0.85407,0.562106,0.216921,0.712655,0.456049,0.948821,0.583808,0.200617,0.809835,0.260091,0.863607,0.177727,0.644903,0.347184,0.734754,0.98215,0.154703,0.385457,0.214208,0.857753,0.37485,0.223989,0.89424,0.311886,0.168968,0.744137,0.938666,0.223143,0.302565,0.39891,0.950852,0.28001,0.0888896,0.271713,0.363539,0.168244,0.649923,0.589875,0.693658,0.0401704,0.629816,0.496612,0.72974,0.0826362,0.370622,0.126476,0.635975,0.521887,0.392983,0.972922,0.334451,0.472795,0.023986,0.913194,0.258751,0.10003,0.494326,0.207295,0.781266,0.806149,0.796324,0.885607,0.809961,0.985704,0.258484,0.741484,0.644677,0.731903,0.686681,0.785498,0.535264,0.33946,0.888076,0.339226,0.0508837,0.955581,0.460052,0.0435942,0.747412,0.188219,0.306601,0.305265,0.836956,0.767329,0.540101,0.477218,0.0981843,0.575493,0.983663,0.961203,0.68351,0.131877,0.446247,0.969762,0.30933,0.560825,0.776369,0.781046,0.0317684,0.488954,0.522726,0.108961,0.305968,0.14836,0.166195,0.812768,0.61342,0.793306,0.977208,0.307835,0.269779,0.160568,0.507638,0.374434,0.707812,0.11811,0.0376742,0.176317,0.598995,0.625929,0.30531,0.290673,0.358075,0.292235,0.34852,0.780306,0.0235254,0.79097,0.523457,0.904681,0.0169704,0.589908,0.380305,0.622562,0.867739,0.78271,0.510759,0.124839,0.0465273,0.635365,0.530739,0.522602,0.573033,0.0874975,0.724423,0.684483,0.969748,0.154843,0.501964,0.0726492,0.569681,0.904724,0.82075,0.844553,0.701623,0.267249,0.434235,0.69211,0.7778,0.506239,0.573216,0.646453,0.852121,0.155586,0.8611,0.594762,0.0870035,0.757765,0.089383,0.712747,0.498733,0.850723,0.529581,0.094906,0.209905,0.756122,0.796749,0.954552,0.474815,0.363448,0.50767,0.579351,0.75571,0.202493,0.819702,0.822011,0.871455,0.341754,0.599927,0.517259,0.921955,0.689932,0.19955,0.295832,0.517409,0.860787,0.365387,0.758035,0.222883,0.37831,0.985829,0.890739,0.697953,0.25815,0.473642,0.86393,0.00987065,0.502879,0.0677133,0.690294,0.799567,0.663974,0.104899,0.515171,0.514859,0.221752,0.129168,0.88062,0.78479,0.589925,0.0777359,0.558754,0.667052,0.207923,0.489294,0.942521,0.681468,0.492668,0.0253454,0.29197,0.938114,0.570005,0.274577,0.150846,0.688301,0.928788,0.833691,0.243769,0.728169,0.738732,0.0248674,0.366025,0.830195,0.105154,0.229777,0.0467501,0.850265,0.585283,0.698351,0.482955,0.0495899,0.858299,0.446156,0.454198,0.987288,0.833673,0.131425,0.203183,0.883186,0.0368846,0.197384,0.438201,0.00164801,0.68343,0.358321,0.581569,0.300394,0.530411,0.571205,0.792093,0.167935,0.610535,0.128965,0.347938,0.613396,0.768565,0.0855953,0.97353,0.85565,0.439029,0.318281,0.941224,0.747853,0.126168,0.450175,0.896247,0.936941,0.126989,0.841462,0.896078,0.401213,0.479716,0.733514,0.179847,0.997381,0.619974,0.919372,0.301723,0.542911,0.953023,0.453688,0.354632,0.618889,0.123927,0.0686916,0.289614,0.947886,0.797737,0.844409,0.670321,0.780408,0.810298,0.581846,0.0233826,0.0760555,0.845956,0.48486,0.13669,0.821717,0.452111,0.0421409,0.396563,0.695358,0.310473,0.0678621,0.642611,0.935698,0.653717,0.420859,0.750602,0.297605,0.902001,0.464433,0.83028,0.716046,0.184003,0.525586,0.719739,0.950265,0.478784,0.038386,0.864513,0.782348,0.312589,0.945129,0.138238,0.652408,0.218934,0.382328,0.0807198,0.811817,0.199038,0.794803,0.740171,0.819087,0.877149,0.745321,0.423531,0.502829,0.520354,0.414205,0.997125,0.843586,0.507192,0.12628,0.672082,0.597046,0.874139,0.683109,0.623675,0.863697,0.172479,0.514351,0.904455,0.480122,0.307145,0.300526,0.874594,0.644228,0.125505,0.739008,0.517212,0.837583,0.386642,0.841531,0.735566,0.286822,0.295482,0.100187,0.521718,0.574643,0.646033,0.935056,0.305397,0.944542,0.373046,0.558182,0.399626,0.625781,0.226354,0.2415,0.952665,0.373375,0.995706,0.231858,0.941525,0.704896,0.101167,0.489834,0.0904131,0.200125,0.303666,0.0572941,0.710097,0.945751,0.922746,0.484295,0.426412,0.643521,0.0768853,0.578901,0.626866,0.799348,0.188365,0.0378283,0.0732155,0.455197,0.592272,0.670166,0.558714,0.751727,0.177848,0.187888,0.449316,0.145479,0.81434,0.983644,0.194082,0.864631,0.0958267,0.345795,0.946213,0.430727,0.856055,0.777788,0.853929,0.688941,0.95895,0.565734,0.343589,0.0824724,0.28453,0.191295,0.803014,0.694853,0.382527,0.0402332,0.0658901,0.640157,0.63074,0.809755,0.319875,0.604463,0.273308,0.0779526,0.0131748,0.933656,0.0871743,0.10775,0.334523,0.330077,0.542479,0.327066,0.764052,0.177031,0.630606,0.302814,0.0296493,0.815797,0.641375,0.923534,0.0207198,0.172268,0.181477,0.270059,0.936379,0.420994,0.621378,0.0840469,0.179566,0.996716,0.882817,0.29897,0.0508148,0.0151259,0.311742,0.292955,0.495106,0.713683,0.214938,0.96115,0.417555,0.917113,0.148355,0.510951,0.52703,0.401019,0.022765,0.532218,0.0407453,0.501274,0.426443,0.171388,0.38382,0.508089,0.0438659,0.712033,0.399064,0.631804,0.413691,0.836389,0.450812,0.234764,0.642188,0.868496,0.272023,0.98314,0.621522,0.820147,0.0485839,0.754082,0.0647264,0.304639,0.800759,0.223312,0.893376,0.865522,0.422161,0.622419,0.432034,0.152046,0.189651,0.887469,0.688909,0.571087,0.350951,0.535747,0.51109,0.577454,0.0637614,0.992004,0.7998,0.153157,0.863914,0.291417,0.639752,0.0487783,0.658907,0.0927842,0.111848,0.748422,0.782343,0.176773,0.613661,0.702782,0.207405,0.330392,0.941268,0.85591,0.222727,0.473938,0.0327466,0.0511252,0.571438,0.0277308,0.711963,0.295057,0.855587,0.37924,0.423883,0.0342158,0.832376,0.345222,0.421304,0.507112,0.921777,0.112952,0.576899,0.389742,0.923649,0.665074,0.135472,0.976594,0.823832,0.96483,0.983415,0.998104,0.474728,0.523449,0.694853,0.768402,0.87834,0.388552,0.325832,0.1078,0.886455,0.520374,0.990278,0.163749,0.382113,0.793156,0.234281,0.692403,0.0165312,0.395913,0.484873,0.328782,0.402425,0.109376,0.931382,0.829061,0.0605149,0.911156,0.131783,0.236456,0.0591925,0.0403788,0.113534,0.461701,0.939938,0.517379,0.95675,0.541279,0.216154,0.341782,0.715275,0.770794,0.876019,0.653273,0.364028,0.139727,0.451315,0.514068,0.409212,0.769286,0.65292,0.719212,0.411212,0.464475,0.510089,0.153129,0.0994436,0.64582,0.776953,0.122039,0.74174,0.151517,0.861155,0.360302,0.742477,0.591555,0.0611339,0.807199,0.814107,0.747296,0.00621241,0.571457,0.720514,0.0114431,0.929419,0.79551,0.0581104,0.31222,0.298012,0.26534,0.914581,0.598144,0.676719,0.170559,0.0287077,0.885485,0.488872,0.041352,0.504902,0.0106332,0.440094,0.47543,0.853458,0.172923,0.525889,0.193966,0.623966,0.73338,0.616551,0.08281,0.958322,0.223975,0.258671,0.484805,0.777112,0.869168,0.597071,0.149642,0.160726,0.79609,0.377238,0.692614,0.0191388,0.606731,0.425142,0.424247,0.292725,0.180553,0.915907,0.234869,0.113177,0.0295178,0.914149,0.627486,0.211458,0.0153558,0.515182,0.0309163,0.131807,0.359455,0.902022,0.775633,0.90321,0.23594,0.0814481,0.165952,0.862555,0.494597,0.464317,0.48263,0.906815,0.284138,0.272646,0.980246,0.328637,0.949474,0.343856,0.776819,0.699597,0.684031,0.288476,0.252327,0.13485,0.335228,0.346383,0.423626,0.631155,0.543327,0.283841,0.587186,0.699865,0.46708,0.330281,0.280567,0.551907,0.170363,0.0559831,0.282944,0.0378368,0.4131,0.635974,0.836534,0.813089,0.865055,0.811377,0.946257,0.747051,0.940595,0.727505,0.921139,0.340627,0.504,0.996854,0.171841,0.245314,0.289278,0.451281,0.757078,0.176451,0.358585,0.99694,0.978067,0.700984,0.179098,0.584437,0.243754,0.810401,0.0869442,0.731843,0.774868,0.129412,0.0473663,0.786174,0.2476,0.684953,0.531052,0.932789,0.79915,|0.0877461,0.999278,0.467502,0.646845,0.650222,0.0476019,0.578544,0.646575,0.251172,0.55668,0.889592,0.182433,0.374562,0.183897,0.585062,0.799732,0.555189,0.504728,0.809806,0.79793,0.857882,0.700767,0.7873,0.466359,0.534824,0.324276,0.0131249,0.619068,0.00869334,0.509309,0.638674,0.0086661,0.318085,0.488885,0.205455,0.925021,0.382453,0.670123,0.482233,0.298222,0.0831994,0.64981,0.565465,0.294744,0.439578,0.0945623,0.0632501,0.054171,0.0788236,0.645999,0.138709,0.308646,0.437032,0.247787,0.951214,0.0986142,0.986699,0.850321,0.496765,0.537048,0.393215,0.497639,0.168329,0.386954,0.694727,0.359395,0.744535,0.235666,0.373158,0.930153,0.810226,0.185891,0.904807,0.282317,0.379449,0.102662,0.0401258,0.210952,0.193804,0.345439,0.321516,0.0113729,0.86505,0.368942,0.0432382,0.245605,0.647108,0.107548,0.710703,0.636008,0.933629,0.573329,0.755774,0.00408077,0.212467,0.45591,0.782751,0.0621386,0.247426,0.317139,0.752964,0.634636,0.788734,0.540821,0.0838923,0.0041697,0.632741,0.179178,0.410772,0.356678,0.688975,0.593049,0.441527,0.108115,0.681263,0.968305,0.200917,0.447362,0.71483,0.373829,0.395396,0.162701,0.0514431,0.999159,0.459897,0.733294,0.87134,0.249238,0.0453657,0.63962,0.163643,0.322002,0.095944,0.0924771,0.642059,0.943277,0.56097,0.0863466,0.693488,0.789142,0.334262,0.466453,0.56067,0.379856,0.504892,0.883329,0.459632,0.0281385,0.0825762,0.460977,0.44995,0.215831,0.330603,0.0656135,0.459466,0.106359,0.141094,0.934442,0.142442,0.727113,0.697902,0.121266,0.934266,0.0465846,0.371791,0.116276,0.01767,0.399399,0.669551,0.414559,0.868353,0.743344,0.848768,0.76113,0.18474,0.396617,0.332362,0.675455,0.302879,0.660407,0.945579,0.255394,0.453306,0.469682,0.308736,0.0666876,0.605392,0.117356,0.231262,0.912428,0.624462,0.983446,0.850825,0.377029,0.973737,0.820862,0.844707,0.817251,0.564346,0.676927,0.102005,0.534846,0.51584,0.806109,0.471854,0.513481,0.0837765,0.0336581,0.659172,0.707028,0.599168,0.377585,0.639819,0.0365225,0.841033,0.47576,0.924869,0.914756,0.391691,0.972338,0.453191,0.937263,0.0273226,0.947922,0.315495,0.486442,0.312137,0.131204,0.88649,0.218924,0.767803,0.875438,0.0273041,0.502071,0.275539,0.887609,0.00413871,0.784856,0.382374,0.256204,0.608567,0.478761,0.0455748,0.796144,0.556733,0.372865,0.592116,0.0936287,0.473749,0.0730098,0.0815502,0.819647,0.3662,0.5774,0.711798,0.293244,0.955277,0.968165,0.447769,0.42181,0.395452,0.433273,0.0123975,0.648215,0.651536,0.0177208,0.0519429,0.727623,0.868171,0.987841,0.122572,0.661336,0.0909773,0.495866,0.811251,0.145636,0.77266,0.530591,0.924782,0.61087,0.344361,0.0741037,0.705254,0.53536,0.844687,0.836596,0.31091,0.782836,0.490473,0.572215,0.673274,0.617391,0.18624,0.0525467,0.840697,0.182199,0.137329,0.883831,0.788755,0.59052,0.844103,0.970846,0.920431,0.991088,0.699339,0.208913,0.390652,0.598782,0.883978,0.650682,0.234183,0.230118,0.611897,0.979536,0.886187,0.840147,0.608187,0.977045,0.9392,0.789158,0.228672,0.621118,0.985994,0.573431,0.197574,0.227472,0.256041,0.811773,0.233523,0.357498,0.63668,0.770214,0.784429,0.297125,0.162313,0.962962,0.593936,0.78945,0.60482,0.463717,0.349186,0.915399,0.00434172,0.371005,0.53786,0.450923,0.663559,0.00403208,0.96468,0.150753,0.444568,0.00806141,0.88276,0.521927,0.838801,0.486274,0.935094,0.271467,0.334361,0.602472,0.56562,0.701664,0.252153,0.509452,0.650692,0.452107,0.299577,0.513349,0.235072,0.501355,0.79895,0.209479,0.313306,0.47285,0.733247,0.410359,0.486938,0.438465,0.553198,0.717595,0.879482,0.443101,0.257801,0.904693,0.37472,0.96431,0.638299,0.275599,0.0305271,0.153994,0.554455,0.858319,0.953258,0.648276,0.0734364,0.968188,0.583037,0.336874,0.345826,0.365277,0.760688,0.101521,0.214344,0.273585,0.875218,0.485536,0.399301,0.996182,0.0362116,0.060975,0.907495,0.10007,0.929029,0.988876,0.815298,0.195225,0.459103,0.736131,0.891972,0.118912,0.860921,0.899011,0.135452,0.589878,0.00921357,0.330111,0.174938,0.287924,0.159396,0.163914,0.817642,0.884121,0.553014,0.223313,0.465721,0.294316,0.839525,0.473114,0.991088,0.691471,0.620893,0.0347093,0.652314,0.147911,0.428359,0.141035,0.886451,0.780051,0.398514,0.0487267,0.0665464,0.188657,0.467323,0.839516,0.611513,0.603572,0.229544,0.511677,0.621908,0.134992,0.952027,0.0941753,0.418304,0.484895,0.862221,0.625855,0.360935,0.279118,0.171257,0.573866,0.672932,0.798885,0.47507,0.401807,0.106229,0.233309,0.307348,0.355714,0.14656,0.719842,0.725674,0.638823,0.200926,0.143728,0.115161,0.617082,0.00155658,0.391319,0.166343,0.380357,0.156,0.996703,0.0594682,0.856127,0.101628,0.956443,0.781708,0.852863,0.286565,0.372299,0.664505,0.646969,0.686663,0.395055,0.0614707,0.147005,0.802022,0.246373,0.309734,0.0111918,0.728357,0.511879,0.657979,0.519587,0.986578,0.0481976,0.929237,0.817646,0.0163397,0.320412,0.28373,0.640832,0.60225,0.841655,0.916484,0.799508,0.795023,0.956843,0.342282,0.0575798,0.64528,0.480606,0.843188,0.261555,0.125231,0.191772,0.502203,0.624815,0.289509,0.459138,0.560388,0.386818,0.559635,0.774208,0.407519,0.893941,0.108136,0.137914,0.110129,0.0987283,0.412407,0.854407,0.411621,0.569391,0.411417,0.894648,0.681728,0.681381,0.344086,0.29492,0.750018,0.09426,0.870282,0.603795,0.0598385,0.840944,0.137776,0.408086,0.961686,0.62836,0.460106,0.332564,0.930622,0.813811,0.497594,0.461807,0.679991,0.476433,0.392741,0.48743,0.80408,0.235839,0.351772,0.895009,0.0771028,0.259518,0.207754,0.976911,0.876079,0.0119303,0.250108,0.339901,0.280078,0.915477,0.910664,0.34856,0.924392,0.449002,0.646205,0.370466,0.0612831,0.574102,0.329147,0.121344,0.864502,0.0170369,0.526738,0.960967,0.458084,0.97021,0.0954549,0.66731,0.0380073,0.975739,0.661862,0.148269,0.887207,0.123588,0.576988,0.162639,0.0821738,0.634897,0.160125,0.453622,0.138539,0.775773,0.523504,0.744185,0.21918,0.97504,0.475797,0.276394,0.475461,0.812496,0.661377,0.0909965,0.113777,0.900329,0.029502,0.622004,0.388966,0.569185,0.0821214,0.315026,0.271094,0.840035,0.839715,0.100422,0.859369,0.960776,0.102958,0.853765,0.912542,0.827155,0.838428,0.116485,0.87714,0.83325,0.723005,0.207537,0.787902,0.395747,0.311269,0.544967,0.0871455,0.767869,0.481095,0.843053,0.479129,0.602335,0.0303797,0.932702,0.315408,0.514458,0.114201,0.505211,0.365449,0.373004,0.230928,0.738119,0.429423,0.315997,0.0234859,0.135181,0.717909,0.60219,0.256984,0.682373,0.794553,0.419688,0.0875133,0.913534,0.425588,0.984534,0.644964,0.5962,0.103674,0.941634,0.97516,0.914355,0.727652,0.997878,0.915463,0.0198172,0.877651,0.239209,0.391614,0.984587,0.0372269,0.208007,0.0102847,0.0897399,0.0101103,0.818852,0.582302,0.844369,0.374281,0.364179,0.938312,0.929379,0.114031,0.646044,0.32489,0.587434,0.750153,0.39693,0.915991,0.695981,0.641428,0.110399,0.54619,0.784398,0.656036,0.586365,0.680379,0.511064,0.989436,0.800301,0.597436,0.680111,0.721337,0.333568,0.248931,0.942671,0.816987,0.816066,0.883174,0.692611,0.673657,0.704584,0.728423,0.439014,0.479783,0.502169,0.655682,0.073085,0.230586,0.915129,0.837731,0.728522,0.734357,0.89228,0.542869,0.187281,0.921142,0.245047,0.573531,0.378331,0.181284,0.99981,0.903573,0.0814807,0.712835,0.100204,0.678816,0.518924,0.57497,0.964254,0.907706,0.389671,0.0143088,0.805506,0.408351,0.805376,0.162151,0.943194,0.153119,0.268658,0.976799,0.532302,0.626298,0.103066,0.515707,0.905161,0.733311,0.415227,0.24921,0.100763,0.714342,0.190727,0.641834,0.127826,0.421022,0.649931,0.289898,0.0617719,0.0450883,0.0268371,0.118365,0.756964,0.638441,0.845517,0.281014,0.856719,0.145771,0.859066,0.973342,0.161077,0.714402,0.284767,0.327766,0.0092625,0.111322,0.259194,0.365536,0.249115,0.333989,0.722765,0.863655,0.905186,0.0513811,0.826101,0.0735449,0.331888,0.433348,0.531592,0.442086,0.398709,0.260461,0.928558,0.920449,0.630515,0.630368,0.971302,0.101856,0.00862068,0.979494,0.0443911,0.552897,0.859697,0.364952,0.700512,0.448859,0.377864,0.842655,0.39702,0.905717,0.220802,0.882587,0.382427,0.423524,0.65815,0.38595,0.684121,0.723847,0.749929,0.685008,0.925769,0.471759,0.994731,0.347914,0.923653,0.976187,0.109998,0.734976,0.808236,0.660819,0.7105,0.723326,0.728057,0.00410229,0.723158,0.532933,0.0133784,0.369409,0.561826,0.748345,0.751383,0.973547,0.442548,0.535873,0.284418,0.674477,0.860667,0.182191,0.959619,0.117458,0.512177,0.564736,0.597232,0.27238,0.300823,0.639485,0.56354,0.522176,0.875215,0.627018,0.334859,0.126517,0.514243,0.535567,0.0547095,0.707558,0.54755,0.213198,0.602252,0.29541,0.143365,0.252339,0.623335,0.115334,0.359598,0.72833,0.807505,0.146521,0.268219,0.534853,0.337678,0.167131,0.996692,0.189671,0.530394,0.191997,0.132234,0.647251,0.750003,0.825098,0.467982,0.27008,0.698465,0.83176,0.726587,0.172816,0.21264,0.499674,0.774303,0.798335,0.186009,0.0728479,0.955487,0.462619,0.123484,0.608202,0.073664,0.587969,0.160872,0.192222,0.625061,0.710479,0.959868,0.479251,0.0521136,0.915674,0.0801432,0.617623,0.804431,0.990802,0.0941775,0.253323,0.971344,0.651507,0.467068,0.395055,0.988812,0.109209,0.432777,0.387679,0.281804,0.909075,0.0649706,0.424602,0.623943,0.109315,0.409164,0.829172,0.403454,0.37692,0.614351,0.413211,0.981842,0.404656,0.170352,0.570777,0.610462,0.660495,0.0205985,0.0521864,0.14651,0.198939,0.248089,|0.487352,0.145905,0.758602,0.635909,0.655251,0.636448,0.320955,0.976921,0.567794,0.45382,0.142703,0.116022,0.709834,0.00700998,0.671143,0.530981,0.0709529,0.531275,0.32487,0.438504,0.847239,0.667752,0.493503,0.471638,0.522348,0.291126,0.309779,0.909819,0.463573,0.112712,0.388253,0.104635,0.320792,0.625306,0.638657,0.60178,0.541604,0.172652,0.726763,0.636499,0.389092,0.442252,0.496506,0.911069,0.243467,0.679635,0.28023,0.308671,0.64251,0.332727,0.900856,0.0908517,0.437917,0.296677,0.429731,0.962411,0.78404,0.218715,0.282068,0.36261,0.348706,0.176419,0.165503,0.399362,0.123475,0.443324,0.770851,0.48782,0.493688,0.364916,0.51608,0.486908,0.798454,0.713699,0.681105,0.408086,0.559847,0.35833,0.847747,0.381419,0.329678,0.772403,0.795087,0.362256,0.202967,0.798937,0.225762,0.670739,0.987635,0.408129,0.437853,0.668028,0.797087,0.934862,0.47655,0.491098,0.410602,0.132857,0.494228,0.776803,0.523109,0.332369,0.591048,0.0909843,0.571112,0.00913668,0.568353,0.00916082,0.258665,0.782318,0.635219,0.285506,0.018348,0.361749,0.0809377,0.563474,0.862557,0.185569,0.935716,0.105071,0.56533,0.713848,0.602683,0.514769,0.0643355,0.110476,0.410704,0.0548348,0.027443,0.86219,0.977594,0.0463513,0.460349,0.535512,0.481522,0.331398,0.510775,0.275875,0.429727,0.134519,0.825745,0.275651,0.410832,0.900218,0.154304,0.188338,0.719567,0.016691,0.499323,0.638071,0.311332,0.78249,0.385879,0.313504,0.118929,0.0707592,0.623443,0.195678,0.727046,0.928571,0.0529418,0.529933,0.501746,0.796892,0.784034,0.58711,0.956151,0.723383,0.0339655,0.624577,0.786126,0.212708,0.794745,0.100454,0.539491,0.166891,0.475733,0.0430887,0.810258,0.326541,0.870718,0.308975,0.245336,0.85962,0.0774193,0.0848982,0.699134,0.729894,0.820185,0.104228,0.309977,0.569085,0.3132,0.723909,0.775636,0.794705,0.0686236,0.0549478,0.952026,0.902612,0.963209,0.691492,0.938176,0.399959,0.357237,0.24034,0.472278,0.960436,0.848096,0.97208,0.699853,0.239681,0.183419,0.656617,0.0390672,0.759264,0.20887,0.450945,0.0689281,0.659346,0.364668,0.851021,0.986192,0.466198,0.470271,0.649381,0.7261,0.342866,0.264807,0.686989,0.554922,0.252306,0.151215,0.434416,0.000829577,0.0502059,0.397948,0.285195,0.955339,0.840616,0.988817,0.112358,0.13121,0.220504,0.542831,0.545813,0.661135,0.832396,0.535311,0.256446,0.66753,0.711734,0.559363,0.508763,0.42163,0.869012,0.870456,0.964076,0.0706028,0.461329,0.845597,0.316965,0.264461,0.809052,0.391463,0.561225,0.46793,0.668653,0.584551,0.956518,0.700355,0.990637,0.18377,0.25758,0.915402,0.135641,0.0976161,0.872852,0.541694,0.99274,0.0513855,0.0724958,0.964805,0.00867939,0.0282534,0.714511,0.580346,0.397884,0.940889,0.122965,0.0711172,0.100396,0.803023,0.153673,0.695325,0.537609,0.724632,0.74183,0.385911,0.722232,0.814409,0.800152,0.372493,0.0160705,0.52555,0.764874,0.201885,0.10746,0.341676,0.69912,0.645949,0.898168,0.644253,0.14529,0.141157,0.722205,0.830429,0.750566,0.709593,0.47825,0.340545,0.0654017,0.692523,0.704282,0.974488,0.416625,0.416705,0.0814737,0.65934,0.0753311,0.705136,0.287653,0.987544,0.994985,0.0565668,0.0174491,0.661191,0.571541,0.735481,0.173873,0.891857,0.377804,0.762517,0.498078,0.859835,0.994147,0.247906,0.354452,0.22173,0.708299,0.518243,0.258048,0.0218846,0.7962,0.560712,0.270405,0.925898,0.913553,0.636595,0.692307,0.340898,0.55333,0.172942,0.224459,0.716059,0.520256,0.704054,0.850804,0.0505091,0.558683,0.617038,0.216266,0.659047,0.00649548,0.64935,0.086543,0.740883,0.235311,0.117913,0.374365,0.369657,0.787554,0.597663,0.81225,0.391812,0.32361,0.0793063,0.00233376,0.0398782,0.887664,0.513197,0.310713,0.902808,0.549662,0.592225,0.490738,0.578702,0.127489,0.496896,0.172712,0.383294,0.524154,0.0984002,0.0605981,0.762818,0.0945517,0.913955,0.0618705,0.474923,0.808488,0.299172,0.769861,0.723373,0.924044,0.470966,0.866528,0.290115,0.112803,0.171439,0.862847,0.91299,0.878018,0.224959,0.462843,0.606869,0.103607,0.0613708,0.633701,0.39862,0.652801,0.797273,0.818478,0.511965,0.583844,0.936106,0.0977603,0.765856,0.584747,0.718014,0.661814,0.638549,0.571644,0.0665478,0.435332,0.729018,0.582642,0.0801303,0.770404,0.694338,0.64615,0.509318,0.556511,0.900081,0.168341,0.552389,0.818088,0.629643,0.37799,0.891941,0.279279,0.0805821,0.162092,0.663566,0.737318,0.235713,0.628271,0.526479,0.280995,0.33808,0.530409,0.0497946,0.0191213,0.236264,0.785807,0.75162,0.983834,0.175596,0.296521,0.937444,0.388675,0.126724,0.263453,0.946805,0.517223,0.847475,0.221387,0.156873,0.306017,0.988964,0.0909706,0.854352,0.278196,0.882662,0.25753,0.479379,0.887286,0.253776,0.211058,0.593432,0.862344,0.186589,0.72595,0.00798374,0.942398,0.0848699,0.978852,0.720903,0.438772,0.00570393,0.814174,0.0491587,0.890516,0.733811,0.691378,0.117643,0.403422,0.570198,0.00681251,0.672613,0.953763,0.713936,0.792343,0.855103,0.606143,0.0139754,0.866067,0.718153,0.297681,0.0454015,0.219547,0.50015,0.589104,0.723934,0.145365,0.00543141,0.104557,0.830852,0.174455,0.729397,0.988171,0.416218,0.701597,0.86944,0.941624,0.0398644,0.44805,0.682142,0.726457,0.302538,0.2387,0.238059,0.337359,0.291055,0.24105,0.287085,0.167343,0.252304,0.844462,0.455814,0.676746,0.676089,0.0505635,0.0796718,0.286707,0.244414,0.28779,0.225641,0.502596,0.961478,0.801298,0.561543,0.649905,0.422983,0.0702754,0.46367,0.58457,0.133239,0.299379,0.0359886,0.791121,0.250879,0.576289,0.247385,0.0273491,0.0787355,0.488955,0.599231,0.377589,0.54374,0.949944,0.263782,0.914134,0.304131,0.722522,0.0267678,0.104778,0.658388,0.785619,0.393747,0.309761,0.848658,0.664914,0.994517,0.280775,0.607396,0.290387,0.575874,0.125015,0.117704,0.43099,0.904748,0.110752,0.385439,0.923666,0.441866,0.855277,0.206663,0.935154,0.74853,0.717042,0.194938,0.229802,0.746258,0.915822,0.249524,0.495276,0.362196,0.691352,0.458824,0.982101,0.515432,0.99927,0.597155,0.784373,0.552314,0.566499,0.920414,0.111539,0.708138,0.238364,0.854757,0.605646,0.887147,0.397334,0.089887,0.361477,0.480641,0.0601995,0.129288,0.710016,0.729554,0.183724,0.882607,0.51565,0.93605,0.737843,0.186402,0.147564,0.67188,0.00317311,0.958564,0.777902,0.454707,0.805338,0.597988,0.0930133,0.326928,0.88034,0.861862,0.286598,0.977645,0.411339,0.585313,0.245348,0.0883349,0.636712,0.634465,0.71553,0.11467,0.231183,0.0350853,0.784405,0.962209,0.387528,0.13999,0.530783,0.885466,0.129259,0.221045,0.723661,0.478215,0.0953063,0.555917,0.813776,0.268662,0.851075,0.514185,0.722314,0.747736,0.0477798,0.173156,0.701167,0.892275,0.797954,0.108272,0.781796,0.819093,0.855428,0.80323,0.883166,0.597245,0.0700874,0.605081,0.695592,0.607662,0.934073,0.756664,0.272567,0.361024,0.0525675,0.931867,0.247233,0.596084,0.885551,0.18387,0.494121,0.587964,0.0966623,0.0589408,0.467182,0.301918,0.388389,0.18455,0.873992,0.757326,0.607998,0.0290318,0.167935,0.571504,0.211662,0.923927,0.993913,0.445991,0.561124,0.758707,0.919098,0.928517,0.353425,0.681935,0.661917,0.654042,0.697258,0.0572866,0.865312,0.440398,0.605217,0.886117,0.795809,0.0449783,0.285263,0.47686,0.223275,0.999128,0.0626613,0.0930402,0.500185,0.846766,0.448821,0.389659,0.425855,0.256878,0.0874193,0.626012,0.223968,0.306779,0.583006,0.567445,0.519913,0.066202,0.782415,0.560044,0.25368,0.390029,0.593045,0.0335169,0.202179,0.100038,0.0505365,0.703373,0.17868,0.786916,0.647764,0.296733,0.206353,0.92191,0.431004,0.689441,0.126066,0.565308,0.215807,0.339724,0.64295,0.295848,0.671655,0.622023,0.213877,0.205611,0.847208,0.137109,0.391265,0.198233,0.0481972,0.174918,0.949041,0.52043,0.350011,0.213994,0.423163,0.835399,0.781745,0.549084,0.438982,0.900149,0.31457,0.975481,0.864269,0.86061,0.743256,0.433475,0.636259,0.0219013,0.227171,0.932778,0.981334,0.117025,0.599048,0.000199556,0.367603,0.68026,0.531273,0.504726,0.265087,0.374257,0.491402,0.0254169,0.628467,0.785798,0.457384,0.790316,0.544341,0.853855,0.250691,0.442697,0.485607,0.277429,0.608961,0.945981,0.488219,0.658407,0.528882,0.235523,0.111265,0.371431,0.0710766,0.939488,0.0345153,0.136972,0.345903,0.6893,0.585027,0.111774,0.109947,0.416998,0.481906,0.964644,0.861684,0.651698,0.534267,0.361748,0.910279,0.209422,0.231749,0.703298,0.340521,0.653271,0.255186,0.976831,0.747896,0.518593,0.019814,0.6434,0.332401,0.717724,0.246122,0.106494,0.199194,0.613479,0.447446,0.00845766,0.0225243,0.52278,0.948422,0.925254,0.877198,0.852765,0.232669,0.743599,0.203849,0.920156,0.0993317,0.315495,0.609108,0.799459,0.375172,0.259275,0.169138,0.31368,0.437929,0.673497,0.249744,0.0732585,0.386622,0.0647827,0.644609,0.35978,0.351266,0.884396,0.326519,0.344289,0.447135,0.637143,0.749782,0.30127,0.676798,0.231895,0.41671,0.792283,0.416056,0.107063,0.599581,0.344446,0.416187,0.405024,0.199439,0.587974,0.821764,0.508071,0.346781,0.505283,0.216322,0.129905,0.175009,0.727894,0.704979,0.879938,0.399951,0.386454,0.782613,0.11958,0.49636,0.406974,0.291722,0.109479,0.0372666,0.732377,0.511215,0.709051,0.566791,0.998626,0.160439,0.648471,0.132041,0.888599,0.265306,0.33945,0.782521,0.261962,0.69324,0.507802,0.99709,0.335719,0.715909,0.790432,0.541325,0.514638,0.96356,0.793708,0.191296,0.603535,0.424938,0.292507,0.23342,0.228294,0.886962,0.857619,0.0534908,0.48354,0.329422,0.752469,0.583673,|0.620207,0.571713,0.289696,0.635446,0.958721,0.837026,0.862733,0.189396,0.918191,0.0236682,0.337078,0.245933,0.654241,0.625232,0.200569,0.329206,0.406879,0.148995,0.264456,0.135377,0.0984286,0.628007,0.535518,0.396861,0.537949,0.92918,0.675379,0.923103,0.194667,0.773664,0.218285,0.975582,0.382668,0.821985,0.737983,0.854128,0.0562019,0.677626,0.955326,0.41491,0.643903,0.770975,0.180668,0.145483,0.777623,0.146314,0.030713,0.918798,0.90672,0.36971,0.716577,0.624053,0.24095,0.539036,0.715956,0.0493877,0.472869,0.58767,0.902842,0.0974867,0.584237,0.773155,0.433404,0.107202,0.160846,0.211596,0.787061,0.451073,0.128515,0.0742565,0.354581,0.673293,0.33166,0.859759,0.468145,0.0153348,0.331266,0.666462,0.207848,0.343592,0.549578,0.782224,0.167996,0.406426,0.328821,0.716819,0.756023,0.775322,0.362653,0.221333,0.905415,0.682642,0.586213,0.310716,0.0839672,0.516749,0.467019,0.988988,0.092829,0.860346,0.433501,0.257907,0.533233,0.0359303,0.115504,0.674199,0.411279,0.502252,0.0754443,0.814853,0.409752,0.0986899,0.943462,0.331149,0.603075,0.54764,0.481422,0.468344,0.828035,0.672265,0.593518,0.695914,0.886127,0.891675,0.220108,0.18022,0.723018,0.202126,0.336277,0.483226,0.250616,0.680618,0.0537357,0.620993,0.786412,0.513024,0.934209,0.514383,0.515717,0.998776,0.0423184,0.668308,0.41257,0.735106,0.977018,0.783831,0.538277,0.354263,0.954724,0.805141,0.879514,0.977806,0.293945,0.611588,0.281207,0.652747,0.0905883,0.87803,0.626343,0.952375,0.0399005,0.940184,0.173026,0.568168,0.461897,0.383518,0.242611,0.242015,0.124008,0.378377,0.432441,0.131325,0.785811,0.66827,0.720272,0.440665,0.554763,0.566648,0.743219,0.31158,0.76035,0.927773,0.769322,0.240591,0.0658907,0.338757,0.380439,0.122698,0.838912,0.169792,0.417767,0.863581,0.579609,0.184999,0.982173,0.181202,0.856013,0.453054,0.463303,0.935083,0.264855,0.179341,0.946478,0.660782,0.596611,0.920758,0.147963,0.495683,0.651113,0.227757,0.544549,0.909056,0.504581,0.0727997,0.37178,0.627234,0.322402,0.570572,0.793172,0.965452,0.811939,0.446201,0.992891,0.959704,0.449297,0.0763551,0.138007,0.685041,0.583814,0.742822,0.746936,0.00472432,0.650642,0.0688426,0.991975,0.590994,0.9318,0.248067,0.516307,0.206357,0.981917,0.509237,0.906536,0.498378,0.88802,0.851052,0.35743,0.302459,0.970034,0.820336,0.420711,0.465264,0.0583398,0.79392,0.75661,0.417878,0.665984,0.380613,0.196679,0.339114,0.492423,0.463409,0.498388,0.734334,0.841917,0.675951,0.61913,0.717708,0.478384,0.945098,0.251146,0.912631,0.602292,0.0844102,0.176653,0.380095,0.0275046,0.365507,0.188897,0.248593,0.0145097,0.716478,0.447233,0.783215,0.768347,0.784389,0.318919,0.210755,0.829495,0.685452,0.0676026,0.0914153,0.907209,0.947749,0.871952,0.41332,0.736829,0.971659,0.09332,0.80585,0.649525,0.421795,0.696495,0.894466,0.841256,0.627078,0.785212,0.0582093,0.286581,0.0760936,0.870402,0.0495708,0.702634,0.918239,0.873317,0.648113,0.944846,0.245378,0.565868,0.430267,0.378116,0.709896,0.932634,0.217179,0.647905,0.331941,0.719119,0.273633,0.767975,0.713425,0.572965,0.957578,0.776517,0.739758,0.489863,0.78385,0.498537,0.292069,0.266548,0.260846,0.845535,0.426435,0.0365385,0.920461,0.514707,0.993128,0.933864,0.569252,0.59566,0.41813,0.095973,0.596707,0.127476,0.732074,0.80226,0.948897,0.761527,0.230956,0.815766,0.992125,0.567653,0.841428,0.470135,0.695004,0.742348,0.947892,0.410438,0.663639,0.89323,0.492435,0.274717,0.461666,0.0126222,0.732962,0.921454,0.715827,0.935906,0.749695,0.450509,0.784862,0.683246,0.356294,0.424564,0.805283,0.387262,0.0272875,0.929491,0.490431,0.316728,0.0197116,0.313664,0.626949,0.552379,0.989268,0.450508,0.658432,0.853765,0.121692,0.0945334,0.639355,0.178825,0.977478,0.238973,0.357145,0.737036,0.450891,0.870351,0.726562,0.42481,0.456524,0.147016,0.826758,0.208944,0.642695,0.72273,0.0170954,0.836054,0.628461,0.700668,0.460563,0.797246,0.270651,0.547424,0.389978,0.640463,0.614625,0.562114,0.131861,0.169065,0.256591,0.274178,0.432609,0.87845,0.801886,0.779667,0.481681,0.789824,0.580511,0.0599486,0.023038,0.178123,0.599965,0.563195,0.11021,0.617875,0.804758,0.978744,0.00973886,0.17458,0.442398,0.861096,0.183617,0.724577,0.718694,0.116279,0.849338,0.717082,0.126237,0.995552,0.146877,0.975574,0.438811,0.60445,0.783879,0.907719,0.290525,0.28723,0.585667,0.868799,0.794735,0.0835031,0.845159,0.284611,0.428375,0.916664,0.603437,0.67749,0.0541335,0.53996,0.910835,0.276321,0.513183,0.962387,0.711866,0.331304,0.0728921,0.436579,0.600369,0.0695443,0.455394,0.895128,0.253783,0.67653,0.275554,0.71961,0.668008,0.304251,0.138738,0.242267,0.721881,0.00403064,0.598811,0.791806,0.0153219,0.264116,0.67953,0.810841,0.117916,0.406776,0.273694,0.864418,0.848223,0.317835,0.735711,0.264375,0.293594,0.461772,0.0243524,0.496306,0.47799,0.820044,0.651551,0.983707,0.523922,0.564512,0.475087,0.51658,0.0644249,0.0787107,0.67211,0.212112,0.654072,0.373291,0.719317,0.922922,0.938319,0.0301236,0.820391,0.430783,0.736704,0.0833325,0.689773,0.541812,0.222907,0.2764,0.285451,0.544193,0.258495,0.408557,0.844127,0.595653,0.257595,0.297783,0.30218,0.623333,0.589419,0.0113307,0.742677,0.322582,0.335026,0.224421,0.756773,0.838976,0.389904,0.972739,0.0807828,0.731332,0.96461,0.890291,0.960966,0.0506784,0.151016,0.0344949,0.980089,0.0267953,0.274817,0.665182,0.58433,0.242642,0.122245,0.279778,0.155657,0.690163,0.0584927,0.459375,0.120904,0.529218,0.856526,0.910466,0.672607,0.993695,0.124445,0.933827,0.0413403,0.323064,0.907843,0.0289922,0.0639945,0.552365,0.766523,0.00996423,0.93488,0.403119,0.19967,0.552913,0.188526,0.266005,0.653939,0.79749,0.740433,0.705774,0.503728,0.315127,0.971752,0.685971,0.486529,0.873573,0.967654,0.0144045,0.305703,0.669427,0.577962,0.866838,0.235965,0.864093,0.433312,0.56342,0.966387,0.7899,0.107415,0.785869,0.804695,0.185007,0.0749221,0.989778,0.0127389,0.160109,0.89469,0.0454386,0.664444,0.119908,0.398933,0.305461,0.97421,0.192696,0.903243,0.737085,0.985721,0.614981,0.84828,0.505849,0.483551,0.703256,0.926564,0.965739,0.2624,0.90396,0.493727,0.963658,0.478557,0.542284,0.611015,0.548393,0.992334,0.987985,0.0657291,0.55671,0.812013,0.270579,0.497161,0.798784,0.0462074,0.95804,0.18429,0.59695,0.629436,0.290434,0.271645,0.990336,0.486722,0.369247,0.116962,0.797844,0.708586,0.558451,0.708925,0.525136,0.660274,0.339565,0.337717,0.609641,0.571027,0.450766,0.21916,0.359843,0.387832,0.0499274,0.607015,0.370789,0.865344,0.302712,0.217083,0.673776,0.0937248,0.0914983,0.788045,0.991197,0.955291,0.193569,0.560934,0.669684,0.0790064,0.334045,0.843945,0.223347,0.733526,0.773201,0.794845,0.860307,0.465917,0.25036,0.140992,0.784342,0.0231083,0.304565,0.850009,0.679337,0.905665,0.685178,0.113024,0.228059,0.0105754,0.151354,0.467686,0.980723,0.983096,0.927202,0.530107,0.283099,0.228009,0.640439,0.299596,0.458498,0.333123,0.264089,0.702205,0.551405,0.93341,0.965792,0.648354,0.74562,0.150774,0.573929,0.659731,0.973892,0.116721,0.531101,0.469577,0.495482,0.468318,0.867567,0.208731,0.80525,0.853987,0.746825,0.67744,0.493229,0.759053,0.804882,0.7154,0.10555,0.493541,0.0171719,0.331525,0.209853,0.503377,0.0912773,0.263305,0.53161,0.556668,0.269517,0.3432,0.503667,0.486463,0.561407,0.281718,0.792642,0.511576,0.257566,0.659859,0.742174,0.177838,0.348323,0.739095,0.4839,0.699976,0.241548,0.638632,0.904087,0.956592,0.940658,0.553211,0.607671,0.949807,0.767565,0.567844,0.327143,0.681521,0.544954,0.584825,0.313408,0.0664927,0.575419,0.55811,0.707118,0.366291,0.185823,0.641538,0.0457629,0.675316,0.335109,0.753938,0.74873,0.212674,0.37817,0.894355,0.472046,0.771279,0.18673,0.463195,0.421962,0.752628,0.877087,0.486685,0.373205,0.502855,0.126118,0.133545,0.986719,0.0763573,0.791683,0.645318,0.280213,0.643706,0.0950152,0.99565,0.704494,0.682624,0.450377,0.468722,0.637886,0.440809,0.505158,0.193462,0.958642,0.458898,0.109817,0.734441,0.116847,0.876319,0.201197,0.945144,0.421143,0.681013,0.58002,0.320052,0.887055,0.469544,0.851773,0.192969,0.294313,0.0605479,0.504678,0.463815,0.538903,0.409117,0.842738,0.519572,0.932803,0.348245,0.0370688,0.666053,0.801321,0.496273,0.159111,0.954636,0.490888,0.289979,0.900834,0.5903,0.558758,0.888381,0.584142,0.710855,0.800754,0.041333,0.807778,0.799894,0.0686389,0.0436178,0.334758,0.812007,0.893889,0.962171,0.283371,0.485773,0.262391,0.989067,0.917903,0.807878,0.668904,0.537268,0.70197,0.388429,0.387403,0.982773,0.689843,0.675952,0.530418,0.552311,0.719682,0.041267,0.185888,0.651906,0.728494,0.773448,0.253912,0.769555,0.98651,0.728153,0.733041,0.978673,0.0248153,0.387594,0.150327,0.702344,0.219581,0.686852,0.918099,0.307346,0.661087,0.546656,0.331651,0.11203,0.727704,0.99867,0.772983,0.0524199,0.61023,0.0969688,0.294149,0.34397,0.00999141,0.111214,0.384948,0.487281,0.781422,0.00384992,0.0247088,0.129159,0.136819,0.37287,0.203225,0.296523,0.740816,0.297826,0.370835,0.922094,0.764854,0.305014,0.997059,0.478806,0.0114819,0.0817276,0.403216,0.708173,0.672476,0.708523,0.627238,0.49999,0.252925,0.103552,0.628775,0.95903,0.283881,0.650427,0.466416,0.552257,0.884163,0.891137,0.112062,0.953962,0.136793,0.919035,0.933252,0.345917,0.760448,0.94013,0.764007,0.742999,|0.345074,0.259364,0.893161,0.043873,0.122324,0.0769973,0.591355,0.994938,0.0617936,0.183674,0.33034,0.223093,0.375864,0.0855146,0.610512,0.0960509,0.763171,0.358924,0.0442354,0.816918,0.464663,0.784138,0.301713,0.0639439,0.590036,0.453036,0.285956,0.305055,0.320249,0.0517657,0.943701,0.180276,0.235242,0.813836,0.684466,0.818708,0.921019,0.830137,0.614771,0.667129,0.201193,0.146284,0.369256,0.311623,0.16598,0.312818,0.958657,0.677543,0.136793,0.835214,0.812873,0.991305,0.65388,0.845754,0.63803,0.209117,0.958355,0.336264,0.69561,0.206427,0.977376,0.0391517,0.376848,0.955484,0.119563,0.456544,0.752722,0.882106,0.89669,0.846677,0.349805,0.290204,0.308939,0.520724,0.496014,0.950237,0.156301,0.652331,0.463038,0.575173,0.476682,0.363031,0.611116,0.84117,0.680265,0.529428,0.0291678,0.141399,0.349571,0.748636,0.644901,0.786398,0.98746,0.571227,0.241983,0.540663,0.767257,0.502764,0.53424,0.931685,0.691264,0.420959,0.351439,0.146629,0.892885,0.639934,0.522903,0.590378,0.20795,0.165562,0.76851,0.0648361,0.0771844,0.077305,0.0705688,0.0955673,0.162032,0.607466,0.97597,0.50886,0.48538,0.398233,0.375048,0.684683,0.61093,0.632655,0.118105,0.722816,0.957549,0.887148,0.997209,0.299205,0.600658,0.360751,0.257874,0.570713,0.946201,0.39855,0.150862,0.39616,0.707615,0.658569,0.0519401,0.954836,0.937969,0.466187,0.633111,0.114182,0.618572,0.704127,0.895752,0.598445,0.296475,0.933735,0.881111,0.307384,0.828476,0.159841,0.763026,0.89061,0.425732,0.197293,0.324863,0.855489,0.500176,0.18569,0.0747332,0.393339,0.606106,0.460581,0.505903,0.971038,0.396116,0.389567,0.636419,0.94003,0.283299,0.483403,0.643839,0.792217,0.670785,0.149786,0.0195942,0.774936,0.699111,0.643572,0.38873,0.871395,0.874924,0.20875,0.14601,0.874008,0.599552,0.290827,0.912953,0.579947,0.776278,0.71231,0.340758,0.217728,0.412826,0.366745,0.916702,0.936292,0.623733,0.891892,0.756521,0.562819,0.982732,0.848858,0.220872,0.701938,0.145392,0.959613,0.0503055,0.54223,0.355327,0.394891,0.517966,0.298435,0.997694,0.754068,0.255612,0.816682,0.106371,0.580275,0.384813,0.257892,0.485458,0.598782,0.13143,0.202889,0.796749,0.0527757,0.924015,0.872402,0.543025,0.257779,0.892235,0.586576,0.157772,0.156314,0.366263,0.85472,0.634101,0.0438913,0.00317502,0.978379,0.849314,0.467338,0.398678,0.644788,0.595363,0.104011,0.779414,0.712574,0.0791211,0.6572,0.813281,0.612159,0.517532,0.112404,0.582475,0.038519,0.688124,0.409941,0.528241,0.637684,0.895249,0.0984416,0.588191,0.998,0.171941,0.20161,0.114131,0.577196,0.473793,0.536492,0.0660182,0.956767,0.225062,0.552818,0.89607,0.906108,0.0123538,0.412003,0.596441,0.646138,0.89082,0.975806,0.458563,0.753733,0.725661,0.937474,0.190894,0.728974,0.989437,0.507879,0.590856,0.375162,0.232717,0.442082,0.365216,0.0765492,0.410065,0.711151,0.599334,0.623047,0.439085,0.172051,0.0334978,0.773968,0.00477409,0.494816,0.896009,0.285516,0.759955,0.0839594,0.437213,0.0635669,0.108258,0.0580999,0.0271477,0.82892,0.865965,0.217984,0.428782,0.662881,0.338476,0.999378,0.17082,0.760488,0.807356,0.447368,0.976843,0.693509,0.145086,0.0786937,0.562184,0.107038,0.528224,0.0732391,0.539279,0.139335,0.798102,0.963664,0.701702,0.490471,0.147924,0.632053,0.392235,0.713638,0.423925,0.728718,0.8591,0.80863,0.916231,0.961315,0.241031,0.370458,0.757517,0.660325,0.53041,0.524608,0.175898,0.505533,0.373789,0.0203915,0.738952,0.285475,0.317953,0.279569,0.235219,0.0215054,0.874668,0.0781711,0.3546,0.657999,0.194123,0.519134,0.59361,0.442758,0.909981,0.756739,0.89523,0.333342,0.705548,0.774433,0.286422,0.191413,0.930094,0.9165,0.432297,0.198134,0.733976,0.288271,0.257492,0.697594,0.244748,0.0701153,0.712821,0.595498,0.958149,0.965953,0.484133,0.906053,0.910655,0.948498,0.0772092,0.411616,0.194344,0.96473,0.169955,0.141903,0.124322,0.909388,0.618778,0.920723,0.734796,0.277045,0.949684,0.473845,0.684699,0.815105,0.643236,0.407019,0.352954,0.750196,0.80995,0.695072,0.163309,0.220059,0.281548,0.0602877,0.90975,0.0208358,0.606093,0.115747,0.67419,0.199003,0.822457,0.704163,0.591079,0.783705,0.981497,0.221314,0.572042,0.903445,0.00366497,0.25993,0.803817,0.149708,0.87011,0.013233,0.619643,0.586482,0.230165,0.0617822,0.091282,0.310043,0.246672,0.0470513,0.462481,0.829518,0.849629,0.515748,0.436575,0.38047,0.308503,0.565575,0.675068,0.439511,0.992015,0.360627,0.752363,0.775131,0.115587,0.617835,0.354467,0.221717,0.240763,0.507725,0.41862,0.113725,0.230726,0.194876,0.0668167,0.729802,0.490842,0.0404582,0.278801,0.250763,0.264355,0.698122,0.577133,0.980218,0.91208,0.350532,0.613179,0.831387,0.44159,0.110998,0.400058,0.957893,0.889819,0.857758,0.420012,0.0575604,0.627732,0.484242,0.0883719,0.156593,0.740226,0.0975533,0.919386,0.0874289,0.484632,0.514002,0.865349,0.252347,0.717173,0.333316,0.69244,0.927265,0.184792,0.157614,0.538367,0.672415,0.759052,0.455073,0.594951,0.700925,0.346345,0.223852,0.0301336,0.264051,0.00405914,0.138146,0.0717835,0.898966,0.849789,0.239186,0.495134,0.69773,0.551385,0.485625,0.574554,0.608919,0.179133,0.584975,0.569584,0.639712,0.800744,0.642476,0.5641,0.739317,0.915895,0.249953,0.328031,0.878887,0.421262,0.115663,0.281292,0.154854,0.231387,0.902301,0.360762,0.873529,0.0414819,0.787099,0.792106,0.0192639,0.663594,0.591292,0.681741,0.634929,0.358511,0.449361,0.0575113,0.825701,0.73173,0.186906,0.312132,0.464661,0.618077,0.343225,0.149061,0.318168,0.702182,0.10714,0.568778,0.324883,0.731179,0.157409,0.315246,0.0213431,0.839214,0.224886,0.610138,0.220061,0.277291,0.323954,0.633519,0.462414,0.73565,0.985346,0.173287,0.330421,0.785132,0.467597,0.88313,0.933845,0.0387228,0.885526,0.134392,0.233974,0.420088,0.382939,0.523456,0.641583,0.916625,0.311333,0.577944,0.877648,0.428171,0.613118,0.649793,0.378156,0.629856,0.575089,0.128202,0.63084,0.759618,0.0108086,0.969512,0.773529,0.408886,0.0352551,0.953213,0.369605,0.427975,0.248051,0.809025,0.779728,0.860689,0.497313,0.804416,0.907916,0.201558,0.794071,0.445846,0.888881,0.564088,0.592935,0.00512928,0.81773,0.562105,0.221589,0.773522,0.551258,0.158807,0.17591,0.869116,0.390406,0.712321,0.207908,0.675241,0.383672,0.0655751,0.869426,0.874278,0.501252,0.699486,0.983021,0.0568118,0.689222,0.317484,0.892303,0.00132656,0.651646,0.603711,0.798162,0.610708,0.599528,0.786449,0.859563,0.170534,0.175163,0.582018,0.502798,0.398447,0.113043,0.134757,0.868553,0.264707,0.45255,0.429712,0.467695,0.366612,0.29955,0.475629,0.750679,0.435864,0.517281,0.499658,0.235378,0.444512,0.74129,0.957041,0.666592,0.553381,0.373412,0.918587,0.536308,0.959341,0.926203,0.453811,0.468743,0.235819,0.527826,0.929323,0.923582,0.266029,0.91076,0.24232,0.0341722,0.224436,0.407894,0.79244,0.575696,0.864537,0.0248587,0.549936,0.546683,0.172556,0.582653,0.0489265,0.592637,0.300571,0.590358,0.697413,0.358816,0.204034,0.137327,0.9252,0.515159,0.469305,0.55511,0.764335,0.991023,0.186543,0.553843,0.967668,0.134845,0.509927,0.810533,0.371925,0.021146,0.314839,0.400864,0.0296019,0.77609,0.675731,0.36517,0.950664,0.529007,0.817965,0.0575239,0.851257,0.711911,0.558937,0.819226,0.493231,0.159822,0.939527,0.247142,0.195016,0.123234,0.79191,0.0371264,0.917752,0.37521,0.556362,0.941455,0.0360947,0.647348,0.0286247,0.0999157,0.484328,0.689023,0.893695,0.349549,0.941515,0.770076,0.854739,0.967725,0.299247,0.932293,0.857778,0.670222,0.736544,0.893999,0.612108,0.272605,0.0490599,0.195301,0.318207,0.743049,0.160126,0.979946,0.683549,0.389054,0.683931,0.0390771,0.971208,0.103979,0.956681,0.592547,0.196453,0.811445,0.0286173,0.749689,0.927879,0.206325,0.72229,0.438456,0.588718,0.221786,0.619481,0.454454,0.0806251,0.709532,0.532046,0.814012,0.129162,0.0710794,0.299263,0.468072,0.0265117,0.915642,0.00128186,0.625726,0.536007,0.544692,0.735209,0.791115,0.901723,0.147204,0.381996,0.309699,0.372464,0.707034,0.102402,0.678927,0.449568,0.0132183,0.24763,0.722277,0.407488,0.561644,0.310122,0.951393,0.853376,0.0248323,0.684618,0.249155,0.745253,0.381188,0.166053,0.251502,0.373291,0.74096,0.0352443,0.801607,0.544905,0.225681,0.918784,0.357817,0.067118,0.638595,0.923474,0.463208,0.867043,0.443925,0.372812,0.954501,0.797637,0.815307,0.457125,0.933346,0.307916,0.74624,0.3246,0.875001,0.386701,0.646416,0.70857,0.898264,0.831653,0.187289,0.304777,0.828927,0.841822,0.0626099,0.615388,0.323419,0.383907,0.295126,0.981681,0.348323,0.887984,0.577599,0.279226,0.360798,0.219322,0.415555,0.625423,0.647715,0.506125,0.889038,0.852236,0.527376,0.844439,0.713143,0.959406,0.000655711,0.709547,0.538899,0.961948,0.618637,0.508696,0.238226,0.678423,0.516458,0.597376,0.322185,0.158833,0.667865,0.4279,0.666324,0.508011,0.554193,0.148537,0.890383,0.808786,0.361114,0.649415,0.99707,0.433153,0.0185157,0.157734,0.0959636,0.352932,0.915768,0.894207,0.318517,0.112046,0.233214,0.654277,0.487118,0.775157,0.681181,0.63415,0.430745,0.744194,0.739993,0.712773,0.136384,0.171924,0.429319,0.249944,0.0533209,0.614631,0.681534,0.109336,0.804197,0.979633,0.964794,0.0358158,0.839783,0.369671,0.732443,0.656769,0.649666,0.755397,0.439141,0.510498,0.744835,0.750279,0.825398,0.771557,0.0241949,0.771527,0.445617,0.614248,0.286182,0.182669,0.929348,0.454916,0.126165,|0.69053,0.403197,0.630185,0.316636,0.317551,0.314096,0.957536,0.534856,0.487306,0.848873,0.724733,0.366316,0.165515,0.129716,0.288298,0.772551,0.334424,0.283165,0.894083,0.684519,0.882273,0.896439,0.532173,0.58249,0.174733,0.731271,0.848673,0.538486,0.385797,0.605656,0.59023,0.332136,0.343312,0.221941,0.692969,0.225311,0.0502549,0.614539,0.341608,0.681829,0.255488,0.226839,0.509088,0.618325,0.220243,0.409953,0.786219,0.0831476,0.636218,0.050896,0.520119,0.734746,0.55109,0.980524,0.843444,0.334031,0.446158,0.322374,0.207936,0.294901,0.855593,0.116635,0.313735,0.816265,0.185274,0.0858684,0.0215167,0.778514,0.0045718,0.61237,0.884492,0.942169,0.654342,0.186402,0.254845,0.62174,0.152219,0.958827,0.339972,0.0308286,0.979833,0.589343,0.971717,0.908533,0.716363,0.155622,0.529321,0.64407,0.811902,0.812851,0.992541,0.0654176,0.285678,0.269932,0.984308,0.264626,0.505945,0.358633,0.54695,0.118336,0.453826,0.0383925,0.200334,0.432309,0.132967,0.650743,0.178399,0.658151,0.576004,0.491254,0.789772,0.595811,0.589087,0.105788,0.301126,0.305223,0.0509644,0.22859,0.944466,0.53172,0.438148,0.412272,0.70663,0.135111,0.558387,0.431012,0.395029,0.433028,0.961293,0.680144,0.0762642,0.476687,0.896527,0.943273,0.735717,0.541346,0.832447,0.526219,0.281873,0.451094,0.892128,0.407238,0.468405,0.482905,0.551718,0.0319682,0.329601,0.280816,0.589035,0.337713,0.913251,0.0214066,0.716585,0.758621,0.0553863,0.777784,0.64691,0.597169,0.500831,0.70578,0.582252,0.0198109,0.403347,0.960877,0.87752,0.495984,0.433036,0.539222,0.483363,0.557556,0.980146,0.78659,0.194711,0.746065,0.507036,0.0783019,0.00832862,0.0189037,0.873629,0.506862,0.167053,0.22405,0.140451,0.629694,0.173805,0.552904,0.85033,0.475229,0.844037,0.231109,0.230624,0.99654,0.818941,0.128422,0.678037,0.179013,0.552194,0.78257,0.47254,0.875032,0.18027,0.157911,0.997618,0.784358,0.748318,0.374043,0.515681,0.0513765,0.123179,0.00706035,0.10981,0.114423,0.975769,0.251432,0.821083,0.238691,0.733593,0.195556,0.812688,0.218159,0.688715,0.385899,0.138404,0.848467,0.695438,0.188548,0.59858,0.985041,0.632371,0.260835,0.963019,0.375853,0.971521,0.270664,0.595259,0.922109,0.863946,0.558859,0.685047,0.664067,0.537127,0.788244,0.848106,0.522894,0.717706,0.846712,0.277269,0.840445,0.0427393,0.897334,0.555225,0.136191,0.420431,0.526694,0.444412,0.198886,0.806749,0.818538,0.515796,0.160639,0.812244,0.156395,0.546754,0.876633,0.26665,0.652144,0.2249,0.00762689,0.747031,0.696787,0.0761359,0.784726,0.707794,0.404459,0.811892,0.00707525,0.390943,0.500027,0.237924,0.932979,0.0959406,0.899974,0.434209,0.433486,0.0611554,0.629366,0.970193,0.304754,0.774864,0.791042,0.0109938,0.188486,0.754201,0.356919,0.562989,0.0677291,0.465045,0.762664,0.139821,0.242377,0.530846,0.047454,0.975061,0.101113,0.713791,0.818171,0.0592584,0.828465,0.209876,0.985217,0.758524,0.578834,0.21079,0.809981,0.517732,0.313285,0.629471,0.891353,0.217504,0.457388,0.239811,0.632871,0.153024,0.279615,0.380171,0.214276,0.584387,0.784753,0.267363,0.49643,0.894168,0.923206,0.824909,0.707165,0.894383,0.0646729,0.265153,0.669307,0.708907,0.300215,0.297683,0.562916,0.589165,0.669564,0.125007,0.905247,0.578536,0.0957763,0.389997,0.508412,0.654935,0.674966,0.367678,0.283774,0.587465,0.277356,0.791067,0.58384,0.265754,0.412248,0.60788,0.975677,0.353715,0.243093,0.609705,0.360994,0.8627,0.517158,0.347743,0.499564,0.21811,0.198165,0.0450536,0.132632,0.141423,0.87306,0.851062,0.331321,0.149235,0.101636,0.543514,0.434935,0.12351,0.939571,0.00163162,0.25714,0.520065,0.76286,0.783245,0.960265,0.260566,0.203088,0.169729,0.826576,0.502925,0.0279331,0.267951,0.214693,0.377624,0.078316,0.77714,0.712122,0.324115,0.969784,0.833408,0.511707,0.720641,0.288228,0.147742,0.581666,0.620974,0.500574,0.595577,0.530704,0.360185,0.608369,0.566171,0.556183,0.69648,0.340165,0.910644,0.540977,0.00190037,0.27544,0.765566,0.791025,0.928613,0.849673,0.271308,0.644315,0.855797,0.598931,0.927982,0.773119,0.554076,0.446137,0.781233,0.164453,0.869793,0.956738,0.430071,0.523209,0.356369,0.14728,0.957214,0.996594,0.84828,0.00300819,0.230984,0.0317109,0.703703,0.425622,0.831697,0.571318,0.665473,0.276263,0.209996,0.930292,0.185195,0.917985,0.576626,0.0727623,0.356421,0.672931,0.00202209,0.943753,0.895046,0.491123,0.449325,0.794819,0.310709,0.945636,0.534543,0.413525,0.213839,0.958524,0.241187,0.288888,0.87991,0.436228,0.990429,0.200404,0.440437,0.492606,0.889077,0.0876286,0.583892,0.40006,0.251443,0.338654,0.655021,0.379301,0.245845,0.593781,0.486184,0.670809,0.64194,0.538688,0.137499,0.190592,0.0649495,0.915004,0.358672,0.873449,0.596539,0.518761,0.510661,0.703425,0.766686,0.400722,0.242212,0.716409,0.262487,0.12045,0.159911,0.656639,0.0304956,0.553819,0.946581,0.523805,0.639487,0.0425972,0.415191,0.942874,0.295442,0.447744,0.384141,0.580999,0.0775236,0.647584,0.70518,0.871318,0.965128,0.751705,0.889002,0.604806,0.219087,0.421103,0.15973,0.512889,0.874337,0.447005,0.137177,0.96669,0.830567,0.37711,0.0886714,0.842325,0.42458,0.826647,0.817191,0.703754,0.596313,0.596241,0.944283,0.780121,0.740207,0.156452,0.531294,0.1423,0.433357,0.181189,0.915893,0.959999,0.595883,0.3981,0.100037,0.117233,0.714935,0.0924121,0.918738,0.113197,0.941131,0.0768312,0.854552,0.74537,0.511898,0.503126,0.538553,0.97217,0.516205,0.162891,0.963843,0.285288,0.0174873,0.0623952,0.623916,0.462065,0.178183,0.822905,0.811683,0.294255,0.262094,0.432406,0.261324,0.95475,0.469711,0.332486,0.446063,0.159283,0.0324117,0.643241,0.875522,0.389583,0.0613906,0.902833,0.432243,0.595995,0.0664411,0.192921,0.0742641,0.324943,0.576572,0.278629,0.185207,0.777957,0.678549,0.953935,0.0391857,0.356352,0.140413,0.423021,0.228833,0.197402,0.342021,0.807257,0.860908,0.838982,0.347554,0.798962,0.269947,0.133788,0.258794,0.687657,0.165202,0.748719,0.102028,0.020265,0.0759367,0.754817,0.982018,0.133024,0.0415459,0.694438,0.496272,0.730653,0.194116,0.0852872,0.857694,0.598064,0.760053,0.735653,0.986096,0.0550577,0.137265,0.916129,0.223941,0.78824,0.899938,0.430896,0.459875,0.413772,0.896329,0.415313,0.0568902,0.346619,0.879903,0.878664,0.810906,0.354539,0.71162,0.0185192,0.677154,0.615161,0.887781,0.971674,0.744416,0.384088,0.135539,0.510938,0.393119,0.347043,0.0630276,0.170834,0.0973646,0.52345,0.805335,0.396688,0.551421,0.650672,0.281385,0.315006,0.654701,0.598898,0.133857,0.193177,0.436156,0.11292,0.720897,0.314903,0.587663,0.616334,0.536929,0.909911,0.927909,0.394486,0.462556,0.91762,0.1114,0.6028,0.239156,0.279403,0.928936,0.269738,0.915009,0.151628,0.247471,0.601639,0.436637,0.173114,0.742275,0.401098,0.205976,0.720399,0.793845,0.781269,0.897744,0.313646,0.448954,0.0875812,0.844831,0.585119,0.406432,0.412454,0.658948,0.764204,0.912617,0.913596,0.324866,0.593463,0.211638,0.111255,0.541142,0.40499,0.871507,0.969511,0.417657,0.743535,0.170706,0.598668,0.549379,0.708229,0.631661,0.26618,0.742121,0.88697,0.0249016,0.300325,0.730947,0.873904,0.374031,0.713656,0.20834,0.54941,0.968904,0.862181,0.766605,0.91387,0.977996,0.743471,0.99701,0.42011,0.389863,0.0276425,0.51591,0.203001,0.242236,0.246345,0.318442,0.0956739,0.702516,0.310649,0.671489,0.235175,0.449957,0.403612,0.738511,0.639208,0.235011,0.274023,0.821253,0.0990893,0.216079,0.537961,0.903887,0.804722,0.324724,0.7727,0.109377,0.655055,0.762415,0.282639,0.974088,0.818217,0.558149,0.97187,0.725293,0.354058,0.54349,0.0284394,0.938931,0.263602,0.86732,0.104251,0.672362,0.259206,0.38294,0.609153,0.223047,0.923102,0.685797,0.502788,0.579423,0.175201,0.943011,0.652849,0.287129,0.0223572,0.354036,0.974048,0.416182,0.916592,0.902401,0.855327,0.0489337,0.229112,0.748813,0.218359,0.744344,0.432219,0.125747,0.0752572,0.216944,0.469587,0.38022,0.797657,0.3476,0.415078,0.769909,0.770325,0.9236,0.683443,0.808029,0.736661,0.881801,0.237806,0.228869,0.963558,0.456271,0.286857,0.284951,0.73422,0.122938,0.614691,0.899228,0.87941,0.85788,0.463176,0.22342,0.274244,0.309893,0.333419,0.606487,0.70347,0.978508,0.770841,0.994599,0.77699,0.778845,0.778994,0.790176,0.422643,0.546102,0.33849,0.407646,0.0924032,0.197058,0.202788,0.497766,0.65112,0.592827,0.605018,0.801753,0.260451,0.495637,0.998997,0.753744,0.330952,0.333533,0.149347,0.308984,0.780667,0.255136,0.898065,0.214668,0.315834,0.743712,0.388399,0.922739,0.292644,0.352855,0.0393366,0.155782,0.00144804,0.882165,0.695765,0.53363,0.835585,0.4413,0.551068,0.0836901,0.220722,0.137559,0.179772,0.0989801,0.861232,0.815279,0.626023,0.164495,0.210298,0.998341,0.586534,0.0416462,0.00684881,0.425179,0.657087,0.224871,0.0476049,0.800476,0.316995,0.105277,0.991383,0.481509,0.546061,0.448218,0.597828,0.759325,0.515876,0.678735,0.548206,0.235822,0.501412,0.112335,0.799339,0.48024,0.0128875,0.772428,0.0245814,0.936744,0.824171,0.150583,0.849231,0.175462,0.573859,0.447937,0.7255,0.286691,0.470639,0.38124,0.138406,0.587135,0.956132,0.908683,0.154245,0.154218,0.318989,0.65218,0.223833,0.171923,0.250361,0.0506907,0.565794,0.557974,0.351426,0.518956,0.412705,0.94151,0.694163,0.516427,0.176703,0.279279,0.559753,0.938011,0.856136,0.033126,0.96958,0.448046,0.776837,0.558779,0.703138,|0.677926,0.221518,0.530962,0.154095,0.576773,0.179544,0.179278,0.440579,0.651929,0.588794,0.906208,0.813111,0.549561,0.675878,0.477306,0.437228,0.30725,0.222402,0.847654,0.0904294,0.582986,0.803325,0.8941,0.0814688,0.506233,0.694921,0.494148,0.346293,0.298121,0.633398,0.807172,0.174897,0.0715322,0.640893,0.00510573,0.732667,0.801727,0.261733,0.283757,0.643653,0.849741,0.716457,0.981965,0.207483,0.180345,0.747309,0.42576,0.778132,0.814332,0.998245,0.511985,0.0301806,0.660813,0.51085,0.15114,0.531417,0.0112324,0.133439,0.771547,0.398406,0.359014,0.407037,0.146176,0.385734,0.529797,0.51859,0.116629,0.597016,0.464274,0.953404,0.280259,0.616816,0.467724,0.687195,0.455852,0.882142,0.828539,0.973679,0.510325,0.491106,0.939877,0.413073,0.253612,0.205037,0.773036,0.0203396,0.150012,0.0403656,0.80665,0.441669,0.24867,0.496465,0.650497,0.280666,0.313534,0.734916,0.0377052,0.910426,0.0402895,0.606956,0.718835,0.847151,0.564685,0.705867,0.508144,0.605526,0.204889,0.978374,0.135347,0.533856,0.125938,0.459064,0.176117,0.8193,0.963595,0.305415,0.234558,0.124624,0.647801,0.228147,0.362007,0.923687,0.143888,0.160319,0.83339,0.602367,0.0970797,0.283645,0.223511,0.646472,0.927165,0.21449,0.620585,0.085005,0.0090239,0.625956,0.569915,0.877066,0.262417,0.0353191,0.920318,0.152113,0.840232,0.538416,0.00760788,0.521403,0.85525,0.312321,0.419879,0.178754,0.154194,0.876464,0.122412,0.19255,0.517225,0.0993593,0.342533,0.995201,0.920477,0.601417,0.838816,0.0340951,0.060288,0.66978,0.756747,0.985735,0.244899,0.201535,0.223423,0.997859,0.301941,0.381657,0.231673,0.75903,0.00312108,0.0586014,0.65642,0.12096,0.265362,0.954539,0.216947,0.30128,0.98282,0.15055,0.893747,0.347392,0.127645,0.381497,0.708366,0.607252,0.712586,0.708165,0.324862,0.2669,0.900648,0.412377,0.835954,0.0376878,0.819875,0.0357368,0.150494,0.626136,0.211143,0.638865,0.273477,0.743447,0.20171,0.465627,0.678946,0.682983,0.770455,0.348216,0.347992,0.704191,0.383018,0.651037,0.536902,0.321211,0.639034,0.615744,0.797208,0.351497,0.569931,0.485649,0.0125911,0.112957,0.389033,0.351389,0.0598723,0.808778,0.708465,0.132207,0.723252,0.653348,0.766087,0.841611,0.719,0.892419,0.771345,0.466484,0.459814,0.78508,0.171354,0.711172,0.441989,0.311125,0.341029,0.0214929,0.698145,0.56987,0.912839,0.119822,0.396646,0.158784,0.189099,0.872169,0.872895,0.340734,0.452765,0.282251,0.0896107,0.89975,0.398233,0.253929,0.16192,0.0466659,0.460591,0.148244,0.693204,0.57534,0.0874992,0.937911,0.32757,0.593023,0.113046,0.712171,0.3522,0.364475,0.633489,0.337974,0.990096,0.694419,0.224956,0.85794,0.742966,0.907314,0.713779,0.871755,0.508176,0.308792,0.100196,0.42814,0.903233,0.264014,0.46391,0.0589409,0.61216,0.0977829,0.640755,0.497608,0.946977,0.990141,0.515906,0.938839,0.868415,0.189993,0.700584,0.397516,0.839074,0.933895,0.389073,0.72448,0.767487,0.605782,0.0399328,0.0370215,0.797073,0.510616,0.251277,0.332041,0.956059,0.113404,0.0529212,0.114592,0.413618,0.778009,0.70088,0.527205,0.333575,0.462565,0.426002,0.543249,0.902843,0.181329,0.316956,0.42904,0.452353,0.368358,0.297535,0.245223,0.826376,0.526001,0.328829,0.0143034,0.498739,0.299045,0.387572,0.935559,0.250893,0.197026,0.299239,0.293695,0.655169,0.0652761,0.433729,0.414975,0.145081,0.90611,0.507134,0.151761,0.742689,0.721723,0.660544,0.0797915,0.00566685,0.75207,0.0429034,0.895518,0.058499,0.154779,0.585129,0.883641,0.651598,0.703716,0.508954,0.485682,0.466577,0.293223,0.861619,0.978892,0.405705,0.549673,0.0174591,0.13694,0.884636,0.404045,0.311091,0.256422,0.420308,0.0148816,0.517474,0.145036,0.146789,0.329001,0.152511,0.723032,0.599721,0.840591,0.0796609,0.588557,0.688488,0.392568,0.987302,0.97878,0.268943,0.421843,0.0566965,0.879724,0.233417,0.600318,0.534298,0.0275208,0.497035,0.429957,0.901553,0.302075,0.398837,0.611855,0.758772,0.868547,0.799375,0.0570109,0.65828,0.830245,0.506515,0.788465,0.693458,0.918219,0.00887758,0.393468,0.831256,0.168236,0.58323,0.0974765,0.143959,0.385543,0.275947,0.432934,0.701593,0.985509,0.466933,0.951433,0.343468,0.397459,0.265161,0.206185,0.359802,0.560829,0.0566825,0.33894,0.115048,0.727752,0.455228,0.973376,0.15838,0.974599,0.88169,0.0542083,0.805767,0.00922406,0.38582,0.857019,0.0431862,0.820481,0.0096826,0.451353,0.741133,0.725536,0.260051,0.371231,0.998758,0.527655,0.700215,0.231771,0.509825,0.204218,0.666796,0.1775,0.757127,0.608614,0.219206,0.79227,0.256172,0.376626,0.898808,0.938299,0.911694,0.317132,0.148582,0.0968213,0.132881,0.188992,0.261229,0.599114,0.73646,0.10674,0.34926,0.6359,0.70899,0.477179,0.874033,0.73465,0.533246,0.319459,0.551915,0.3105,0.884988,0.524276,0.351459,0.581564,0.376929,0.106875,0.570017,0.171651,0.428065,0.00663382,0.0937811,0.582783,0.284758,0.15347,0.969733,0.904588,0.169546,0.885019,0.949003,0.739914,0.755548,0.455166,0.434635,0.358107,0.4687,0.796428,0.686553,0.656032,0.0292198,0.658606,0.586326,0.338852,0.134905,0.494368,0.97209,0.47634,0.964392,0.132578,0.101374,0.0642681,0.70294,0.936263,0.543749,0.241228,0.912151,0.146741,0.684342,0.231123,0.982754,0.156089,0.344028,0.119957,0.343171,0.657124,0.609466,0.0896789,0.932926,0.524111,0.0080201,0.916981,0.873778,0.0163916,0.604062,0.551068,0.221848,0.566839,0.177443,0.893673,0.380007,0.228452,0.679142,0.941418,0.234635,0.0038479,0.292751,0.684203,0.241472,0.735392,0.191986,0.431321,0.95032,0.656239,0.142327,0.77253,0.308721,0.53244,0.26973,0.651552,0.0841878,0.528273,0.658441,0.212249,0.0880758,0.733921,0.433652,0.384961,0.260815,0.755415,0.678993,0.489824,0.850595,0.630909,0.800841,0.738084,0.229841,0.395179,0.971102,0.305171,0.677126,0.0665724,0.301146,0.392368,0.287244,0.0173078,0.97621,0.262177,0.322689,0.963717,0.814312,0.435636,0.826238,0.472354,0.629664,0.866999,0.160288,0.270375,0.228868,0.485997,0.788592,0.410478,0.469331,0.934803,0.521344,0.0199046,0.327505,0.496989,0.195608,0.354568,0.723885,0.0678594,0.510006,0.13079,0.540882,0.991002,0.0232351,0.166705,0.812077,0.955104,0.0874897,0.830885,0.793406,0.831964,0.980021,0.0609102,0.795683,0.676235,0.43096,0.853022,0.357252,0.341894,0.172774,0.598704,0.429561,0.103555,0.404547,0.291405,0.477422,0.285262,0.943803,0.225067,0.962728,0.848063,0.830122,0.897143,0.242627,0.651095,0.940344,0.846139,0.486064,0.745865,0.96893,0.977454,0.0661747,0.032865,0.235829,0.912827,0.986547,0.84941,0.94157,0.642012,0.121307,0.210382,0.448851,0.301602,0.371356,0.465461,0.273394,0.410845,0.0675374,0.739749,0.550992,0.378131,0.546455,0.232197,0.381411,0.678162,0.369052,0.609361,0.522619,0.343689,0.987599,0.359433,0.80058,0.728731,0.426876,0.234807,0.548602,0.742914,0.950792,0.444893,0.616246,0.153701,0.456752,0.366742,0.924858,0.0438802,0.675186,0.00928158,0.84535,0.772677,0.61905,0.783893,0.971632,0.0420851,0.353702,0.980339,0.701977,0.024227,0.0337268,0.652197,0.383216,0.54007,0.254761,0.612928,0.424212,0.234079,0.258785,0.728901,0.808993,0.218042,0.981955,0.7515,0.483776,0.73132,0.516845,0.503093,0.895979,0.66365,0.375778,0.669135,0.863868,0.721534,0.248318,0.717024,0.553623,0.423417,0.329559,0.623638,0.239437,0.487688,0.0987712,0.120146,0.854281,0.795515,0.339939,0.136652,0.051499,0.507052,0.790829,0.195426,0.399175,0.201743,0.252159,0.486432,0.948169,0.384438,0.454481,0.523578,0.608209,0.190784,0.231691,0.777744,0.299292,0.414844,0.594311,0.294526,0.450493,0.368456,0.238095,0.0169083,0.159599,0.474783,0.652671,0.91012,0.939539,0.969218,0.316741,0.763273,0.466143,0.510191,0.630859,0.254818,0.918316,0.136372,0.437759,0.848671,0.971977,0.708187,0.69986,0.104702,0.871084,0.503133,0.688738,0.240348,0.526828,0.941509,0.927024,0.900254,0.152472,0.781126,0.605223,0.57233,0.746867,0.972598,0.181786,0.420698,0.669077,0.557001,0.604919,0.152625,0.0312651,0.0937774,0.57928,0.850369,0.308228,0.853435,0.896908,0.486198,0.769038,0.353371,0.0856019,0.791234,0.00575858,0.885287,0.793556,0.0135079,0.300037,0.843043,0.323734,0.718529,0.195433,0.270324,0.453432,0.936635,0.674187,0.367728,0.995064,0.823577,0.0773352,0.954999,0.558777,0.429066,0.895561,0.8514,0.287778,0.261104,0.66999,0.653157,0.988073,0.22781,0.0331194,0.748995,0.797894,0.867297,0.615758,0.253222,0.874202,0.686772,0.160091,0.432452,0.597479,0.727761,0.387172,0.272556,0.872966,0.517606,0.987393,0.927825,0.818631,0.671254,0.918783,0.27971,0.953282,0.312268,0.203186,0.165686,0.922546,0.611475,0.530272,0.676464,0.591631,0.744769,0.180887,0.105176,0.602252,0.168823,0.803584,0.399229,0.00341922,0.390599,0.287982,0.803686,0.388078,0.276646,0.858537,0.206912,0.744872,0.52515,0.465334,0.897433,0.678754,0.443152,0.288149,0.0611219,0.970585,0.717316,0.626332,0.11808,0.123544,0.355311,0.445096,0.121115,0.531605,0.63329,0.716169,0.987755,0.750116,0.279859,0.821424,0.996694,0.998931,0.969238,0.936472,0.714287,0.639836,0.827964,0.390041,0.0717042,0.904602,0.561675,0.94317,0.653445,0.287826,0.741081,0.349275,0.324625,0.402226,0.745574,0.257997,0.378253,0.862046,0.738562,0.230062,0.422521,0.00401479,0.66882,0.565374,0.607309,0.834939,0.577399,0.170798,0.861867,0.351983,0.680153,0.48758,0.426337,0.144775,0.516096,0.18669,0.0718278,0.105318,0.586269,0.444675,0.130194,|0.0389749,0.62128,0.59144,0.877888,0.920576,0.856583,0.167211,0.495647,0.415787,0.131576,0.405022,0.529856,0.634943,0.904756,0.0288355,0.399818,0.680959,0.030943,0.295363,0.777978,0.0362025,0.510238,0.922974,0.483613,0.201578,0.469333,0.70879,0.627198,0.403977,0.808818,0.442245,0.768722,0.565468,0.14258,0.211294,0.828653,0.750935,0.612221,0.135692,0.114058,0.510315,0.799081,0.754398,0.329154,0.543848,0.861564,0.487951,0.550628,0.315531,0.110436,0.125753,0.800219,0.273476,0.997433,0.300139,0.744076,0.942263,0.198794,0.342707,0.0535806,0.491082,0.994635,0.779519,0.616471,0.324508,0.95104,0.0907359,0.740342,0.996406,0.555984,0.472313,0.884164,0.319908,0.767632,0.678574,0.882327,0.24396,0.792367,0.0480725,0.541059,0.644384,0.401499,0.918867,0.652034,0.172387,0.259494,0.712609,0.508727,0.253226,0.173908,0.195393,0.455583,0.362473,0.324141,0.356161,0.670082,0.0417359,0.536456,0.320085,0.651506,0.0172002,0.618254,0.831216,0.64934,0.333062,0.217503,0.308553,0.769123,0.759578,0.670524,0.351089,0.967774,0.211155,0.907058,0.222754,0.589995,0.360125,0.960398,0.164976,0.533342,0.416514,0.549163,0.4949,0.770613,0.469803,0.428501,0.858841,0.285953,0.615835,0.642556,0.154959,0.267945,0.648596,0.456051,0.142966,0.24816,0.340026,0.488674,0.918406,0.128749,0.470862,0.975152,0.413529,0.832131,0.891365,0.239641,0.701363,0.23147,0.627598,0.353831,0.499725,0.334447,0.270718,0.230643,0.562296,0.526404,0.695438,0.9592,0.352732,0.140836,0.672527,0.755425,0.764851,0.241383,0.123018,0.842498,0.23376,0.971203,0.176322,0.321224,0.896999,0.26335,0.819243,0.510154,0.222415,0.0564625,0.286622,0.110508,0.509378,0.678569,0.988524,0.912216,0.965285,0.00511515,0.24032,0.905595,0.638834,0.453071,0.544843,0.0063107,0.577039,0.0664387,0.0476201,0.897653,0.787492,0.132874,0.830258,0.693101,0.911392,0.928268,0.431102,0.151249,0.964805,0.692396,0.666023,0.770987,0.380065,0.654548,0.408241,0.771488,0.126298,0.740439,0.618053,0.997594,0.174968,0.495226,0.855352,0.856308,0.837214,0.632103,0.467666,0.707683,0.162121,0.577631,0.797375,0.713633,0.905032,0.348468,0.563864,0.585961,0.807192,0.02494,0.570031,0.400418,0.868329,0.692777,0.841606,0.585581,0.180761,0.840465,0.69358,0.132359,0.243955,0.963366,0.476052,0.0364129,0.860245,0.380925,0.728077,0.697586,0.676976,0.402348,0.824274,0.687072,0.532698,0.92434,0.988395,0.386176,0.201613,0.0120627,0.227057,0.292592,0.740769,0.758173,0.308139,0.0639825,0.962093,0.764559,0.102524,0.738873,0.522815,0.0125811,0.546077,0.679879,0.306875,0.778006,0.915519,0.0104886,0.0619318,0.919527,0.17737,0.190018,0.686292,0.406336,0.628626,0.315387,0.613397,0.217579,0.519185,0.621264,0.107859,0.707994,0.571586,0.89878,0.303311,0.277081,0.564195,0.166984,0.0693231,0.492664,0.543987,0.585916,0.795741,0.355711,0.978797,0.991767,0.414337,0.896672,0.734961,0.543721,0.135195,0.292544,0.711513,0.603841,0.0698223,0.7864,0.185716,0.883112,0.0431064,0.494296,0.918826,0.0026077,0.762337,0.764788,0.451349,0.75866,0.355585,0.708524,0.147591,0.321011,0.670942,0.914095,0.441996,0.833519,0.143937,0.0864003,0.888864,0.767812,0.520031,0.102838,0.491088,0.729904,0.212654,0.0250701,0.206422,0.123118,0.168896,0.627118,0.0421842,0.166069,0.941306,0.0262803,0.00412482,0.00175357,0.705607,0.394709,0.85296,0.301901,0.414331,0.255712,0.630069,0.194677,0.913893,0.0960079,0.676892,0.103601,0.956553,0.232264,0.356149,0.768395,0.939971,0.91013,0.150951,0.464865,0.431678,0.591254,0.854876,0.0210624,0.0454829,0.421912,0.220867,0.293361,0.353732,0.118154,0.0990235,0.717723,0.979561,0.535972,0.863441,0.632314,0.235249,0.979281,0.836246,0.662775,0.837362,0.448817,0.973616,0.936481,0.170384,0.201109,0.296,0.767264,0.304902,0.164401,0.0927128,0.392957,0.0524197,0.27582,0.205039,0.356532,0.617054,0.206482,0.860596,0.318486,0.705775,0.13023,0.250982,0.0807629,0.441231,0.956479,0.388566,0.375372,0.697947,0.246751,0.6773,0.0324041,0.220305,0.712091,0.0490154,0.684248,0.809546,0.260818,0.818793,0.805652,0.537616,0.75606,0.935347,0.918304,0.776902,0.449606,0.840954,0.825082,0.653458,0.51054,0.0681536,0.265236,0.4174,0.466343,0.966756,0.574703,0.372954,0.402745,0.148726,0.050555,0.42073,0.302991,0.276003,0.816725,0.985554,0.710427,0.778284,0.848591,0.091558,0.483413,0.952104,0.376621,0.587798,0.57093,0.759551,0.310564,0.662779,0.81055,0.201214,0.655083,0.890219,0.453051,0.854874,0.160711,0.60377,0.403654,0.16092,0.887067,0.109835,0.2094,0.902949,0.205455,0.00601906,0.818397,0.309993,0.474951,0.180861,0.37177,0.00382817,0.188609,0.0924407,0.228999,0.877431,0.0663685,0.357576,0.908318,0.664997,0.502132,0.631289,0.0381927,0.932196,0.210112,0.525716,0.865749,0.0523757,0.813827,0.30805,0.32392,0.537872,0.672114,0.259399,0.784817,0.437598,0.268982,0.608431,0.210945,0.469137,0.773206,0.604092,0.332779,0.426316,0.411321,0.646048,0.857268,0.351306,0.933669,0.201206,0.191575,0.30852,0.713626,0.194949,0.955209,0.876615,0.900612,0.172368,0.791548,0.0871646,0.552422,0.300105,0.284961,0.717752,0.661162,0.0146686,0.187419,0.218744,0.761389,0.622905,0.252151,0.056669,0.579325,0.548623,0.911656,0.0505512,0.856415,0.922854,0.847246,0.166412,0.830831,0.974478,0.397859,0.605702,0.2256,0.794011,0.298132,0.650082,0.697889,0.637116,0.870302,0.616811,0.249501,0.694051,0.625794,0.855843,0.904288,0.0159448,0.208351,0.956693,0.225343,0.141491,0.843854,0.0436056,0.872748,0.26017,0.742789,0.872328,0.212184,0.416809,0.626463,0.907871,0.649886,0.674489,0.913933,0.359893,0.681353,0.63111,0.363677,0.707128,0.240883,0.830863,0.0954333,0.912266,0.643679,0.294424,0.174696,0.42312,0.890756,0.167992,0.723117,0.678607,0.329363,0.774468,0.324576,0.186097,0.228569,0.242798,0.0716838,0.570771,0.122219,0.219049,0.302978,0.26685,0.184101,0.616406,0.52313,0.843111,0.704521,0.109624,0.0708733,0.972868,0.721123,0.935974,0.368085,0.388955,0.954424,0.657913,0.091565,0.624575,0.142497,0.248882,0.965896,0.767358,0.58737,0.686273,0.323215,0.0695224,0.244308,0.0780401,0.253189,0.308646,0.545102,0.239852,0.0614675,0.857823,0.843667,0.907205,0.918605,0.130309,0.0576935,0.108461,0.739358,0.113502,0.565959,0.593405,0.498385,0.84622,0.631162,0.634798,0.0788516,0.741182,0.539435,0.748357,0.808077,0.757419,0.827983,0.765518,0.517453,0.915843,0.948142,0.180758,0.850243,0.85261,0.569765,0.66974,0.848353,0.857844,0.76971,0.21664,0.240181,0.161044,0.896987,0.180585,0.542538,0.547368,0.459598,0.575286,0.367109,0.811518,0.975355,0.25645,0.644609,0.596855,0.136354,0.721443,0.22486,0.697443,0.545746,0.041568,0.268065,0.32102,0.965927,0.65919,0.221788,0.982274,0.87881,0.240591,0.433615,0.719189,0.439926,0.585462,0.16854,0.660471,0.356363,0.114206,0.229793,0.320338,0.977189,0.906452,0.481936,0.962169,0.942542,0.793778,0.19475,0.0781197,0.112252,0.429402,0.253169,0.322636,0.584077,0.223586,0.51172,0.706269,0.545073,0.532141,0.0721405,0.124473,0.0959496,0.98409,0.781602,0.403687,0.662679,0.630626,0.211758,0.254258,0.33361,0.0751303,0.0796847,0.428335,0.344217,0.126102,0.55086,0.506842,0.932985,0.138537,0.49976,0.407279,0.659762,0.265955,0.0368919,0.74943,0.0493559,0.994705,0.845427,0.885382,0.684249,0.0627549,0.708436,0.137015,0.122749,0.405386,0.198011,0.31831,0.108122,0.0429004,0.482563,0.848142,0.816358,0.9257,0.0563241,0.18148,0.647364,0.0792962,0.751954,0.761858,0.00753373,0.915805,0.829087,0.484102,0.752142,0.414107,0.976141,0.561046,0.724742,0.913266,0.382576,0.17812,0.0907497,0.147099,0.665127,0.864384,0.982925,0.720045,0.555494,0.262956,0.836386,0.745833,0.162005,0.347259,0.848815,0.829336,0.47345,0.294308,0.142615,0.142559,0.135837,0.651551,0.24399,0.31522,0.342697,0.792005,0.403253,0.036609,0.284894,0.685527,0.286835,0.744551,0.00960577,0.817944,0.117119,0.537554,0.441231,0.796848,0.997312,0.0656736,0.0753356,0.471804,0.857912,0.668148,0.934162,0.981187,0.875177,0.381536,0.720472,0.06235,0.740946,0.165498,0.685461,0.62491,0.495891,0.884316,0.621477,0.436763,0.64364,0.023011,0.733083,0.00498539,0.137917,0.394468,0.69716,0.343465,0.189751,0.756001,0.682044,0.783974,0.686272,0.439902,0.00770968,0.431575,0.838192,0.882713,0.172393,0.810064,0.974368,0.926618,0.732455,0.0390776,0.177806,0.998858,0.0130779,0.0274014,0.447185,0.769991,0.375435,0.435098,0.936576,0.340327,0.873601,0.0438269,0.727319,0.911955,0.566809,0.971293,0.393547,0.587049,0.29048,0.139212,0.687757,0.469605,0.885429,0.927213,0.857347,0.0855358,0.486678,0.313338,0.543464,0.058379,0.299645,0.112212,0.240774,0.0439238,0.993216,0.248106,0.923122,0.408084,0.0710276,0.204402,0.469895,0.141381,0.460182,0.553526,0.913118,0.975178,0.262978,0.819942,0.444972,0.931953,0.502215,0.981624,0.297041,0.23523,0.775316,0.537229,0.852451,0.866838,0.640372,0.768062,0.629863,0.81398,0.492571,0.783363,0.222566,0.579395,0.963878,0.976436,0.9705,0.828211,0.744771,0.294145,0.64906,0.284289,0.931226,0.905808,0.561012,0.144366,0.551712,0.130336,0.83797,0.730536,0.567265,0.847743,0.480087,0.84312,0.449975,0.507799,0.608987,0.74064,0.3847,0.300161,0.167857,0.0638207,0.18547,0.291437,0.242828,0.739868,0.919524,0.386997,0.900796,0.978597,0.842201,0.737058,0.816987,0.574544,0.982421,0.608026,0.452521,0.333671,0.553333,|0.941362,0.927901,0.00889587,0.271424,0.620702,0.789078,0.286573,0.92846,0.629229,0.415256,0.220206,0.112008,0.658136,0.956253,0.817469,0.379613,0.482545,0.149154,0.230961,0.778083,0.274568,0.830571,0.688381,0.469561,0.176519,0.266144,0.668729,0.8289,0.0748416,0.503442,0.588783,0.77059,0.503619,0.662116,0.664956,0.856437,0.679675,0.40284,0.0468844,0.245412,0.212954,0.282062,0.159774,0.158719,0.824744,0.345884,0.695434,0.906496,0.2797,0.143489,0.183801,0.0493368,0.224967,0.101416,0.755369,0.0557629,0.489933,0.422948,0.80744,0.560289,0.080191,0.277899,0.345142,0.872218,0.169389,0.897525,0.195686,0.204907,0.71599,0.668301,0.747661,0.352863,0.619668,0.997026,0.847051,0.153632,0.415097,0.769638,0.0483299,0.579235,0.544393,0.0310817,0.87381,0.116639,0.830301,0.404945,0.466749,0.181617,0.315345,0.699195,0.838132,0.330872,0.97877,0.218253,0.999452,0.942821,0.527158,0.479172,0.162351,0.24856,0.0401068,0.905466,0.497744,0.432289,0.369352,0.569799,0.629167,0.70344,0.806117,0.357302,0.396168,0.195545,0.690774,0.741309,0.984684,0.586191,0.46686,0.100132,0.676315,0.965981,0.0170253,0.772392,0.254824,0.950494,0.302269,0.979123,0.153445,0.789039,0.175472,0.653783,0.416159,0.0489398,0.810753,0.985272,0.491603,0.712274,0.973337,0.633956,0.424236,0.287483,0.0524834,0.761594,0.740795,0.550184,0.246198,0.153075,0.233665,0.866659,0.884292,0.18631,0.701954,0.553554,0.324139,0.80802,0.65673,0.621596,0.657142,0.136189,0.62431,0.532866,0.857904,0.521301,0.199965,0.468915,0.322351,0.998732,0.867982,0.804296,0.486624,0.738769,0.409278,0.270199,0.379726,0.359988,0.246209,0.110758,0.0955345,0.981564,0.696701,0.329147,0.596272,0.48851,0.559156,0.150595,0.111477,0.584667,0.767955,0.655955,0.41987,0.993937,0.341507,0.359863,0.589491,0.973749,0.940106,0.141575,0.575481,0.986871,0.0394617,0.967735,0.351555,0.814463,0.165364,0.892388,0.197161,0.860551,0.985553,0.160628,0.412388,0.718843,0.606039,0.539138,0.0480145,0.161698,0.578523,0.25132,0.124062,0.0653343,0.171874,0.976057,0.252133,0.571099,0.292073,0.641902,0.67528,0.795611,0.788149,0.517959,0.454848,0.381128,0.304951,0.0886455,0.452298,0.467263,0.846957,0.831229,0.962793,0.332211,0.52807,0.290019,0.358568,0.762583,0.0755228,0.311014,0.798967,0.726838,0.809424,0.469548,0.187595,0.97106,0.0241358,0.538681,0.796082,0.936323,0.700815,0.141793,0.559849,0.417889,0.0870013,0.198701,0.512251,0.306301,0.187073,0.343376,0.819431,0.671974,0.66674,0.125641,0.579294,0.38794,0.842487,0.13452,0.879796,0.201744,0.446937,0.155518,0.0532786,0.454297,0.35328,0.78789,0.382885,0.353458,0.592396,0.296376,0.123378,0.841809,0.864599,0.338082,0.886121,0.124719,0.129578,0.264763,0.146285,0.666108,0.251968,0.372544,0.361362,0.412696,0.7482,0.0202235,0.478253,0.527043,0.135723,0.417211,0.928136,0.399124,0.0427209,0.668904,0.214016,0.392721,0.12699,0.953519,0.958596,0.260663,0.961565,0.0108083,0.958156,0.302791,0.255121,0.834484,0.424848,0.0965376,0.0640894,0.151109,0.437447,0.716691,0.548223,0.686586,0.599212,0.872343,0.826637,0.887787,0.0881672,0.922291,0.366845,0.3102,0.82814,0.225848,0.500268,0.0063684,0.948283,0.443048,0.54435,0.386936,0.585907,0.748452,0.302335,0.7682,0.957006,0.0613642,0.104679,0.591923,0.314458,0.781536,0.735729,0.812034,0.380179,0.685361,0.0741268,0.824042,0.938777,0.683697,0.448239,0.791365,0.0791065,0.391141,0.764632,0.777837,0.981882,0.38545,0.641131,0.545697,0.856917,0.486639,0.606637,0.121884,0.736974,0.659041,0.86084,0.947023,0.423798,0.285523,0.169776,0.867857,0.987558,0.992522,0.947179,0.236076,0.0159183,0.781056,0.591083,0.700478,0.383688,0.679758,0.882595,0.736327,0.583488,0.521983,0.0297832,0.769499,0.301586,0.591802,0.337389,0.458182,0.986846,0.355148,0.71071,0.55061,0.348018,0.819144,0.663156,0.684823,0.0263869,0.962564,0.31978,0.622818,0.811179,0.89287,0.114375,0.674655,0.150517,0.605896,0.319116,0.933948,0.776182,0.711403,0.405463,0.245562,0.891002,0.562944,0.909541,0.659784,0.432911,0.888508,0.0328678,0.701883,0.127622,0.636633,0.701842,0.094526,0.243988,0.523869,0.351146,0.0767345,0.82297,0.46695,0.261324,0.0573625,0.551646,0.0698882,0.481424,0.68124,0.923038,0.734942,0.15281,0.690463,0.440931,0.0146388,0.89563,0.945843,0.34573,0.161952,0.241898,0.380125,0.265889,0.975646,0.0220556,0.626787,0.0543134,0.595401,0.214113,0.0637836,0.190236,0.657757,0.316173,0.123405,0.470144,0.46521,0.220979,0.469536,0.928273,0.218069,0.667432,0.346431,0.453048,0.0989276,0.654396,0.309442,0.455812,0.716008,0.916444,0.467063,0.466268,0.236067,0.379267,0.552317,0.0733595,0.530359,0.13213,0.683468,0.207465,0.275864,0.709992,0.840831,0.417322,0.782855,0.443961,0.460477,0.38016,0.492847,0.0468023,0.653833,0.637388,0.376798,0.088979,0.890993,0.812733,0.0789144,0.84972,0.165949,0.116954,0.373004,0.457873,0.504966,0.950272,0.717978,0.906855,0.865813,0.428161,0.332787,0.975106,0.189628,0.721298,0.241979,0.00902188,0.75808,0.782346,0.391099,0.903318,0.388271,0.143482,0.220555,0.140725,0.626905,0.955104,0.73625,0.897021,0.902947,0.629827,0.454843,0.269793,0.370468,0.945397,0.543874,0.288654,0.424839,0.789458,0.806222,0.846118,0.916155,0.291717,0.635399,0.0588618,0.817617,0.43665,0.416259,0.618322,0.368855,0.641615,0.351207,0.479884,0.113516,0.436989,0.939811,0.917861,0.693061,0.476603,0.566953,0.52608,0.797101,0.944199,0.78351,0.406968,0.225746,0.856747,0.534499,0.623623,0.143664,0.504288,0.0818681,0.154063,0.739497,0.726572,0.261465,0.118963,0.870183,0.89921,0.940324,0.243117,0.376799,0.0894554,0.970094,0.960279,0.147933,0.421686,0.000209928,0.256208,0.622726,0.821417,0.941909,0.713131,0.344586,0.244965,0.0813957,0.547057,0.4456,0.0455809,0.0619099,0.577344,0.377418,0.00987798,0.801248,0.510082,0.725564,0.806027,0.644351,0.508846,0.850753,0.975167,0.310137,0.224343,0.0102236,0.28166,0.992822,0.336502,0.96798,0.65209,0.231575,0.140778,0.164881,0.280272,0.00103068,0.268083,0.675641,0.550224,0.325065,0.544178,0.523734,0.676854,0.173296,0.271811,0.146589,0.793201,0.239899,0.767635,0.234722,0.083452,0.15101,0.274036,0.13969,0.525293,0.869232,0.890754,0.703831,0.687509,0.413931,0.561784,0.476347,0.660685,0.768824,0.383942,0.910903,0.256372,0.245407,0.553084,0.851544,0.119103,0.543522,0.0736126,0.773827,0.257883,0.912834,0.414377,0.653273,0.954321,0.365414,0.574327,0.223282,0.85377,0.111213,0.860039,0.775688,0.00997633,0.448417,0.654404,0.100873,0.968712,0.489499,0.305076,0.703914,0.702032,0.191319,0.674836,0.914047,0.458066,0.218304,0.92351,0.643934,0.534144,0.790307,0.399724,0.651951,0.702984,0.857302,0.0977709,0.161266,0.266616,0.908207,0.360927,0.0411558,0.169911,0.121548,0.893716,0.422148,0.131913,0.601178,0.284913,0.415745,0.652005,0.651684,0.298263,0.0933901,0.608593,0.85935,0.708154,0.695027,0.46233,0.844746,0.65453,0.637573,0.550536,0.940549,0.202,0.394166,0.907683,0.270094,0.49916,0.607399,0.227381,0.309044,0.790801,0.0216244,0.745787,0.585415,0.0540515,0.065344,0.11722,0.430418,0.713898,0.00288844,0.514306,0.82109,0.624064,0.772775,0.177438,0.561058,0.189161,0.0958315,0.95929,0.72357,0.986717,0.424995,0.641469,0.803049,0.343771,0.215284,0.476356,0.308743,0.299924,0.691604,0.187638,0.693899,0.570168,0.973838,0.819214,0.933464,0.171446,0.685492,0.606014,0.0395947,0.758606,0.148755,0.848439,0.93872,0.549484,0.119621,0.797028,0.622259,0.576694,0.839725,0.116732,0.386614,0.890971,0.0456796,0.095555,0.922206,0.641278,0.893882,0.80572,0.00488389,0.118254,0.755264,0.183878,0.314091,0.403826,0.835693,0.408199,0.566553,0.964298,0.282825,0.494206,0.105631,0.537559,0.978397,0.793799,0.366884,0.836118,0.0403835,0.478341,0.634968,0.277848,0.838128,0.683759,0.621892,0.253907,0.565461,0.905719,0.302274,0.0373107,0.862592,0.916608,0.0775984,0.911084,0.299413,0.776778,0.550607,0.470733,0.24423,0.775447,0.0227528,0.698359,0.137587,0.371306,0.938868,0.438596,0.87978,0.558967,0.46867,0.294649,0.279423,0.0829509,0.439834,0.557143,0.842891,0.575169,0.889061,0.527009,0.779562,0.114177,0.776253,0.313684,0.771077,0.978417,0.405727,0.268907,0.338027,0.526998,0.000984251,0.296849,0.105634,0.170466,0.555682,0.128059,0.557851,0.915355,0.109835,0.907253,0.86865,0.740003,0.485804,0.78285,0.393366,0.578654,0.205066,0.42155,0.483235,0.506431,0.689676,0.92691,0.458165,0.433809,0.870458,0.602983,0.791974,0.238293,0.874476,0.117416,0.429526,0.416211,0.451606,0.554635,0.890162,0.0558159,0.0482361,0.630357,0.256134,0.335159,0.394692,0.959449,0.570975,0.890357,0.169406,0.961124,0.450339,0.591846,0.476438,0.401471,0.805274,0.489337,0.976038,0.0287508,0.436403,0.221759,0.104292,0.401599,0.319806,0.754304,0.786143,0.309433,0.782961,0.865144,0.533019,0.998296,0.781308,0.538651,0.970726,0.324537,0.590386,0.622103,0.188947,0.080814,0.473365,0.815951,0.339655,0.554449,0.643631,0.942104,0.651072,0.573067,0.0765366,0.310704,0.253891,0.5065,0.793989,0.881547,0.345771,0.154675,0.970914,0.533971,0.486252,0.46966,0.501568,0.130055,0.402253,0.669977,0.0545217,0.795947,0.73771,0.119164,0.174104,0.33764,0.0684514,0.375154,0.244858,0.761608,0.158661,0.867904,0.861731,0.469114,0.424703,0.892235,0.94345,0.447105,0.813007,0.708923,0.306252,0.177113,0.657034,0.563399,0.24059,|0.910393,0.423168,0.589676,0.00433362,0.527328,0.127539,0.994533,0.406744,0.713681,0.33212,0.824993,0.952407,0.538759,0.126397,0.653234,0.68352,0.187389,0.652278,0.562766,0.899902,0.74,0.899154,0.522109,0.183256,0.197359,0.159275,0.765978,0.554429,0.44605,0.567189,0.780331,0.783224,0.114907,0.922695,0.0802323,0.908392,0.680739,0.152369,0.75819,0.938894,0.902604,0.667143,0.588276,0.38989,0.723065,0.694669,0.602942,0.481323,0.97303,0.0476494,0.773341,0.176534,0.881984,0.125172,0.852116,0.827539,0.671933,0.470884,0.31865,0.708213,0.985617,0.307995,0.9326,0.618182,0.361597,0.346066,0.804281,0.149016,0.721298,0.319965,0.2398,0.303492,0.650139,0.538316,0.616246,0.555099,0.935403,0.000962079,0.10994,0.449794,0.745709,0.134964,0.984232,0.916069,0.381816,0.275692,0.21406,0.708682,0.32739,0.884713,0.52059,0.289107,0.272642,0.00343281,0.626246,0.00304544,0.302996,0.582631,0.644818,0.992045,0.774389,0.39767,0.353485,0.329771,0.324811,0.7641,0.374432,0.718125,0.477132,0.52802,0.388411,0.180045,0.682671,0.51683,0.546893,0.668334,0.0983074,0.93477,0.483583,0.83612,0.120148,0.638732,0.200981,0.427088,0.979548,0.778958,0.521858,0.701588,0.548289,0.597302,0.616617,0.354466,0.329378,0.871239,0.89732,0.855649,0.768083,0.705567,0.930248,0.105547,0.0446327,0.463287,0.66595,0.857038,0.91811,0.261991,0.247998,0.710668,0.131086,0.523532,0.625559,0.357553,0.813558,0.47185,0.664659,0.112078,0.00391567,0.130658,0.203883,0.459768,0.00107962,0.973358,0.821862,0.690619,0.0757759,0.479571,0.752721,0.758571,0.571117,0.213749,0.623374,0.624389,0.104217,0.472058,0.30454,0.8756,0.514456,0.879896,0.0484681,0.525092,0.586517,0.602463,0.0373061,0.795923,0.0599782,0.58295,0.564097,0.553263,0.747196,0.823926,0.313605,0.148873,0.87917,0.3482,0.436161,0.248556,0.44367,0.733389,0.168284,0.302638,0.314205,0.385742,0.730172,0.212846,0.718672,0.791696,0.678845,0.780403,0.0280333,0.224371,0.433666,0.503461,0.0244954,0.821592,0.989163,0.0293803,0.388254,0.542298,0.658745,0.487066,0.703185,0.996917,0.181628,0.870641,0.585918,0.22606,0.774353,0.581912,0.165487,0.0751004,0.0298436,0.0790642,0.74461,0.545543,0.886971,0.114465,0.800373,0.523051,0.43473,0.0763092,0.0321202,0.0547243,0.196623,0.889882,0.135053,0.39491,0.65811,0.833987,0.771638,0.480802,0.782881,0.409515,0.963862,0.873238,0.586011,0.307093,0.606695,0.872744,0.105396,0.721071,0.117897,0.545328,0.0516684,0.419275,0.791939,0.724836,0.202714,0.0219123,0.140669,0.374267,0.453883,0.0977619,0.0995921,0.831491,0.93427,0.837221,0.984134,0.646509,0.900829,0.411495,0.128219,0.923254,0.109597,0.334849,0.755772,0.146784,0.608545,0.0528695,0.348794,0.0941511,0.323067,0.294067,0.578057,0.0675331,0.227166,0.137196,0.9539,0.343417,0.739209,0.269111,0.345472,0.466076,0.424702,0.846925,0.241681,0.445504,0.0866762,0.160603,0.441351,0.32717,0.371579,0.815412,0.747854,0.988033,0.304056,0.62653,0.216503,0.872999,0.04846,0.386052,0.0938789,0.258782,0.731162,0.0683432,0.226602,0.354452,0.152988,0.59077,0.504642,0.372429,0.992105,0.656375,0.698094,0.98776,0.357821,0.933458,0.0151118,0.103429,0.309939,0.410588,0.859372,0.317565,0.50301,0.0189339,0.0064612,0.171235,0.425449,0.768608,0.111878,0.332688,0.744448,0.962979,0.52633,0.59674,0.310006,0.335363,0.78584,0.785585,0.323668,0.51322,0.0258648,0.916817,0.285615,0.751698,0.260337,0.98305,0.394827,0.513371,0.590296,0.689011,0.814115,0.576787,0.0575557,0.595909,0.606984,0.689634,0.536226,0.366379,0.225549,0.75427,0.466767,0.319146,0.69362,0.11149,0.41469,0.731623,0.0538686,0.948434,0.144632,0.881174,0.621199,0.438496,0.307944,0.722386,0.256776,0.116262,0.521728,0.232641,0.724496,0.86309,0.649735,0.0883829,0.235213,0.186957,0.402563,0.138828,0.938756,0.133313,0.160779,0.275808,0.596146,0.625365,0.72326,0.826773,0.524122,0.68565,0.738333,0.310861,0.243805,0.667202,0.591232,0.143402,0.815888,0.0107911,0.628988,0.913122,0.25424,0.862053,0.171483,0.67169,0.468401,0.218599,0.321697,0.826426,0.861698,0.422262,0.0481792,0.896835,0.334693,0.288328,0.817452,0.0125456,0.238151,0.362929,0.995126,0.78782,0.000209391,0.0608,0.0535585,0.838441,0.761241,0.0429029,0.0813885,0.746122,0.92925,0.383533,0.989032,0.421181,0.791562,0.0146427,0.983638,0.953442,0.656811,0.737333,0.800739,0.520372,0.140104,0.142681,0.775001,0.938263,0.19484,0.0557722,0.253954,0.0273308,0.388698,0.599882,0.325971,0.130421,0.915412,0.652959,0.572863,0.147229,0.235098,0.45501,0.38053,0.997451,0.888988,0.230362,0.616912,0.901932,0.779854,0.804839,0.806924,0.0415077,0.246607,0.599041,0.481948,0.8976,0.695357,0.494234,0.696777,0.4616,0.0146304,0.252565,0.59971,0.94296,0.744122,0.069276,0.166495,0.941759,0.501632,0.36202,0.0327227,0.378466,0.987457,0.768394,0.502549,0.266628,0.627894,0.961671,0.118559,0.43238,0.784254,0.466956,0.201427,0.346308,0.70053,0.16674,0.951864,0.817406,0.320981,0.791421,0.506594,0.561863,0.0617678,0.605718,0.301264,0.263179,0.514138,0.120532,0.278678,0.600683,0.067398,0.526553,0.498836,0.397506,0.0758469,0.514096,0.54439,0.877876,0.324209,0.109684,0.924048,0.331591,0.999509,0.238777,0.724897,0.649728,0.0155252,0.919896,0.319615,0.271397,0.370645,0.820441,0.319364,0.206788,0.597216,0.700987,0.0434526,0.0305593,0.0883746,0.517214,0.360008,0.577835,0.528487,0.288693,0.115838,0.778845,0.888324,0.205364,0.532661,0.0548913,0.757193,0.267384,0.325146,0.537001,0.71261,0.882525,0.0544516,0.715584,0.0649309,0.210233,0.314686,0.640055,0.0626926,0.831808,0.481404,0.728798,0.85243,0.996684,0.313401,0.853095,0.794209,0.517471,0.399965,0.925724,0.67622,0.823584,0.125613,0.245806,0.262662,0.0456269,0.84934,0.167363,0.622984,0.352082,0.191752,0.396856,0.31881,0.188625,0.614178,0.593298,0.996918,0.927429,0.59398,0.900361,0.0787034,0.0182485,0.118683,0.185908,0.917196,0.989663,0.646615,0.348304,0.0839754,0.792352,0.971231,0.708059,0.669657,0.524426,0.492758,0.0545708,0.251724,0.0530808,0.218855,0.992861,0.184897,0.324173,0.703309,0.244056,0.864257,0.695997,0.777211,0.505058,0.0192718,0.309843,0.713667,0.221641,0.16461,0.929725,0.922525,0.257097,0.823596,0.337704,0.180916,0.790479,0.313135,0.646921,0.807916,0.113561,0.578507,0.565421,0.0843312,0.281937,0.538911,0.858917,0.673591,0.720042,0.599182,0.589942,0.195953,0.598706,0.988754,0.631507,0.104228,0.0118522,0.00125396,0.399724,0.475781,0.755062,0.832,0.157126,0.0682935,0.885505,0.34673,0.601055,0.257075,0.756561,0.264002,0.967295,0.0324828,0.566742,0.256556,0.294773,0.839586,0.56293,0.0777097,0.605682,0.884365,0.11296,0.549424,0.338934,0.1688,0.632686,0.960743,0.831256,0.403577,0.581083,0.505828,0.85451,0.501018,0.339061,0.596034,0.0807051,0.884867,0.125462,0.933064,0.872456,0.296762,0.527202,0.165252,0.53205,0.733557,0.645759,0.247061,0.344988,0.854979,0.652896,0.693667,0.441664,0.510085,0.557063,0.400281,0.24562,0.129414,0.775992,0.522317,0.25695,0.654772,0.0822129,0.75337,0.343588,0.0951485,0.859414,0.680589,0.834968,0.35099,0.362464,0.600196,0.739396,0.550977,0.659995,0.823474,0.100919,0.807721,0.546898,0.00181788,0.247385,0.155926,0.521789,0.285511,0.218356,0.6776,0.217138,0.0141832,0.768808,0.0960925,0.76039,0.242466,0.0759907,0.443344,0.0920463,0.442217,0.0376426,0.0295952,0.260469,0.0886135,0.460003,0.857527,0.432177,0.969082,0.330932,0.351803,0.282284,0.369846,0.30375,0.903239,0.963907,0.943598,0.200123,0.229289,0.762967,0.98588,0.256353,0.430506,0.575645,0.717573,0.90377,0.308692,0.389338,0.494043,0.54594,0.978434,0.321254,0.864623,0.116312,0.822047,0.390175,0.702311,0.644369,0.365884,0.931485,0.971076,0.726358,0.854813,0.0420848,0.763494,0.199003,0.662723,0.263292,0.606554,0.359424,0.487692,0.325531,0.819415,0.51607,0.317204,0.38262,0.242815,0.783489,0.803656,0.518163,0.534631,0.255947,0.787118,0.249796,0.488249,0.510182,0.900762,0.545154,0.584549,0.164647,0.157287,0.658599,0.901771,0.150458,0.114243,0.988554,0.562178,0.568444,0.394875,0.64105,0.844931,0.865407,0.366397,0.0893315,0.488958,0.359461,0.272366,0.731977,0.336306,0.47686,0.774815,0.773923,0.626495,0.960729,0.744977,0.425818,0.00426346,0.644662,0.926031,0.221526,0.368836,0.151402,0.739012,0.844001,0.448194,0.718554,0.768883,0.136229,0.606472,0.684104,0.637328,0.281628,0.361861,0.492454,0.644704,0.969302,0.0277697,0.0370651,0.438769,0.118147,0.154067,0.400756,0.304404,0.564582,0.0765441,0.11979,0.471543,0.50933,0.589526,0.130469,0.256422,0.132158,0.0878558,0.166218,0.911301,0.245355,0.416576,0.896397,0.295493,0.415594,0.0787224,0.442477,0.946602,0.107954,0.149334,0.710493,0.113867,0.138846,0.441983,0.266964,0.446373,0.492501,0.269523,0.304817,0.298688,0.925688,0.713448,0.00960308,0.431,0.226305,0.00379044,0.45497,0.615171,0.0315453,0.447895,0.0637909,0.0457326,0.23284,0.683347,0.595143,0.42028,0.263265,0.0253229,0.986094,0.825645,0.0556286,0.00417489,0.323069,0.271809,0.465296,0.141815,0.51715,0.712214,0.267806,0.113885,0.577579,0.207684,0.119197,0.486382,0.232875,0.402907,0.488886,0.45912,0.619154,0.74268,0.48417,0.345671,0.848945,0.902835,0.0402645,0.731933,0.842367,0.9807,0.340476,0.973125,0.0372611,0.992069,0.878661,0.4556,0.330773,0.621297,0.0862061,0.0939077,0.924771,0.877505,0.568601,0.461097,0.310595,|0.0614875,0.515238,0.44693,0.197599,0.540644,0.938277,0.915366,0.195029,0.83026,0.0511146,0.895638,0.776395,0.808813,0.112703,0.131795,0.559572,0.0921037,0.963656,0.340988,0.369611,0.698786,0.43186,0.0690542,0.72982,0.368635,0.405191,0.716553,0.0076896,0.992789,0.962962,0.089035,0.360164,0.398491,0.217503,0.554956,0.133486,0.870574,0.985012,0.129069,0.238111,0.484163,0.775749,0.0689445,0.834715,0.547321,0.96861,0.446694,0.965822,0.342713,0.573883,0.859562,0.597694,0.116081,0.626393,0.55728,0.322796,0.574838,0.859604,0.338034,0.00346643,0.529968,0.826845,0.254958,0.529162,0.913387,0.141835,0.723481,0.471201,0.950081,0.8489,0.2304,0.709815,0.125023,0.304556,0.575917,0.0346064,0.739169,0.542625,0.576943,0.470504,0.223987,0.809205,0.0255881,0.250736,0.597044,0.954944,0.768875,0.826568,0.615628,0.418622,0.628135,0.730016,0.346571,0.573483,0.307746,0.546943,0.686705,0.951815,0.611276,0.351978,0.57419,0.264118,0.721456,0.239913,0.399257,0.41192,0.332859,0.77296,0.7659,0.910634,0.992357,0.566081,0.0900483,0.950715,0.804264,0.313473,0.90669,0.337338,0.945263,0.738536,0.734297,0.602361,0.396854,0.484648,0.493036,0.877104,0.667812,0.74391,0.0874811,0.454725,0.0883945,0.144172,0.991279,0.132807,0.745913,0.228805,0.851082,0.642196,0.715799,0.4905,0.801255,0.98102,0.0513268,0.207319,0.950245,0.770368,0.00887448,0.60979,0.565685,0.808776,0.0419866,0.398519,0.443131,0.965994,0.860849,0.495412,0.967463,0.318031,0.362182,0.330246,0.644167,0.361243,0.113174,0.774862,0.75548,0.118361,0.817384,0.638526,0.777194,0.443063,0.929227,0.176748,0.353002,0.0817225,0.0911545,0.568679,0.817371,0.0656646,0.784272,0.516626,0.436383,0.719568,0.862162,0.932379,0.67808,0.529544,0.504272,0.407458,0.792587,0.153299,0.768053,0.512894,0.618237,0.966982,0.637694,0.682362,0.927254,0.834906,0.109412,0.799001,0.86326,0.400101,0.405536,0.421255,0.323533,0.88011,0.673431,0.317071,0.361341,0.846413,0.218205,0.255904,0.736166,0.248288,0.246412,0.631164,0.907047,0.326196,0.311128,0.970581,0.850093,0.999546,0.0768601,0.418955,0.215456,0.111337,0.945371,0.881857,0.00269127,0.306569,0.519608,0.613285,0.811009,0.47676,0.530227,0.0386291,0.880158,0.339091,0.796027,0.153881,0.151965,0.783166,0.0831695,0.474506,0.398256,0.970384,0.645447,0.306038,0.241561,0.954928,0.461939,0.0864805,0.953597,0.511222,0.0977774,0.255974,0.524599,0.437272,0.327719,0.174498,0.354893,0.513639,0.623439,0.334786,0.270963,0.827105,0.57811,0.630842,0.967453,0.24794,0.11985,0.980787,0.318772,0.675157,0.181209,0.990653,0.848367,0.447609,0.751576,0.591511,0.734896,0.305831,0.795984,0.845869,0.638643,0.221815,0.0057407,0.812525,0.282744,0.927936,0.256541,0.57046,0.866329,0.43798,0.0711828,0.342136,0.465333,0.0266177,0.163488,0.946831,0.565837,0.000435293,0.0835574,0.404111,0.116757,0.405618,0.565667,0.109756,0.00524837,0.0036844,0.502589,0.195666,0.433157,0.872641,0.570625,0.657394,0.297007,0.00277662,0.869424,0.915396,0.191316,0.15357,0.679492,0.122314,0.324012,0.207656,0.346723,0.277041,0.1542,0.419867,0.567274,0.38035,0.574683,0.465587,0.0806208,0.52881,0.145698,0.286872,0.860408,0.248901,0.744301,0.353198,0.810864,0.42056,0.382551,0.475578,0.731405,0.391169,0.135821,0.961675,0.942926,0.593289,0.908898,0.718817,0.618134,0.292005,0.074782,0.807829,0.310044,0.310597,0.939464,0.949904,0.417101,0.111138,0.373407,0.239339,0.272283,0.534399,0.313221,0.538106,0.0757185,0.776136,0.30253,0.918274,0.115143,0.146896,0.558035,0.90234,0.850114,0.812207,0.373091,0.139681,0.574843,0.364392,0.945213,0.0215642,0.414446,0.455751,0.593911,0.363868,0.931927,0.247861,0.955197,0.901869,0.189086,0.849107,0.128329,0.829221,0.791173,0.428913,0.794466,0.99642,0.313189,0.0925954,0.517097,0.159649,0.188989,0.721554,0.978549,0.283471,0.923056,0.927862,0.181066,0.630102,0.586896,0.519818,0.350005,0.371688,0.598759,0.948339,0.405822,0.268799,0.529162,0.254108,0.280627,0.0488737,0.405386,0.854698,0.143273,0.40897,0.649816,0.754953,0.452512,0.929931,0.40744,0.957675,0.332289,0.867198,0.916297,0.071985,0.917838,0.10249,0.576213,0.658744,0.928894,0.034889,0.973627,0.222099,0.839536,0.937545,0.111084,0.169704,0.0584579,0.0651771,0.40643,0.143393,0.828932,0.723107,0.284022,0.986891,0.374614,0.352347,0.87683,0.893621,0.305012,0.171066,0.162791,0.947163,0.624164,0.22482,0.65668,0.859641,0.485535,0.783842,0.145705,0.499591,0.909145,0.0470593,0.906786,0.416018,0.0563443,0.214494,0.0124086,0.179268,0.930719,0.163372,0.534608,0.949174,0.96785,0.596439,0.434848,0.57698,0.246548,0.42468,0.103904,0.0682433,0.509156,0.963318,0.118827,0.211113,0.953985,0.637679,0.570239,0.780253,0.268724,0.842692,0.867091,0.598552,0.863319,0.00984526,0.00852358,0.712402,0.367935,0.554221,0.55881,0.620398,0.767857,0.744761,0.538484,0.911,0.0707393,0.4899,0.283993,0.483857,0.348057,0.55871,0.559975,0.196562,0.964898,0.294571,0.605635,0.28062,0.914845,0.911343,0.482018,0.873672,0.0658026,0.5159,0.963562,0.63059,0.0223091,0.382705,0.613545,0.0816559,0.685992,0.622084,0.824892,0.336566,0.751007,0.46628,0.580513,0.00736165,0.495575,0.942553,0.0964216,0.258657,0.326637,0.713041,0.265959,0.771005,0.1378,0.725052,0.477488,0.991041,0.684501,0.843818,0.96136,0.735195,0.501319,0.522753,0.963726,0.845949,0.411105,0.450978,0.440306,0.429137,0.279698,0.708777,0.901444,0.85777,0.039475,0.416208,0.310263,0.342487,0.514618,0.997983,0.214624,0.536872,0.730098,0.48542,0.00559276,0.981747,0.302629,0.709597,0.408077,0.692997,0.294933,0.290145,0.224215,0.859647,0.636109,0.657344,0.108798,0.957497,0.99976,0.691152,0.23383,0.9285,0.208034,0.545027,0.176514,0.731467,0.927348,0.0680437,0.390548,0.826416,0.331338,0.870489,0.766358,0.51848,0.565224,0.0777614,0.859861,0.859232,0.289884,0.382779,0.945068,0.922908,0.86225,0.574794,0.103224,0.9771,0.789985,4.45247e-05,0.00273657,0.856288,0.778472,0.868647,0.657191,0.609336,0.942766,0.281224,0.705661,0.224946,0.848983,0.551175,0.309692,0.234406,0.235961,0.790065,0.157462,0.512142,0.166471,0.312473,0.713401,0.640801,0.905562,0.645953,0.664619,0.685936,0.24617,0.211324,0.927323,0.257702,0.200547,0.878464,0.0924219,0.732784,0.398175,0.45048,0.83548,0.0801483,0.750474,0.235279,0.214076,0.174934,0.512555,0.3358,0.98068,0.134665,0.587151,0.221632,0.529324,0.528014,0.354983,0.821225,0.729752,0.502006,0.138383,0.642365,0.808658,0.977877,0.0496411,0.915794,0.197631,0.240799,0.102167,0.711026,0.997414,0.747104,0.889524,0.123776,0.0525653,0.532986,0.707115,0.855104,0.223353,0.0696377,0.187949,0.182304,0.277746,0.178085,0.380174,0.234605,0.275367,0.0324213,0.954512,0.212676,0.564485,0.764243,0.530338,0.658362,0.815249,0.751936,0.148531,0.735952,0.736938,0.346393,0.554412,0.232828,0.765332,0.777928,0.472503,0.0953934,0.40761,0.619381,0.666903,0.592351,0.893278,0.57226,0.962312,0.854726,0.830129,0.433005,0.37063,0.373962,0.675202,0.179472,0.0927815,0.649171,0.590117,0.263412,0.0782168,0.693538,0.113489,0.952662,0.641249,0.913205,0.999415,0.962642,0.404287,0.633523,0.164805,0.860553,0.528258,0.521611,0.583913,0.974404,0.682428,0.603186,0.447384,0.108741,0.164525,0.423231,0.983968,0.505798,0.16238,0.967703,0.198527,0.0185297,0.956504,0.307174,0.803044,0.260304,0.671168,0.270475,0.933827,0.6067,0.709584,0.931287,0.169006,0.17278,0.204495,0.64282,0.541363,0.795472,0.0409833,0.667624,0.613573,0.0650514,0.80058,0.760326,0.0275691,0.247892,0.635244,0.551947,0.852202,0.481994,0.286103,0.135198,0.362063,0.557201,0.869437,0.662301,0.439794,0.589068,0.424893,0.141352,0.242851,0.457772,0.258218,0.608199,0.779016,0.624104,0.59384,0.666624,0.702824,0.355528,0.651421,0.372252,0.464147,0.229679,0.704985,0.789636,0.549997,0.460169,0.783907,0.538,0.481727,0.240304,0.15884,0.861135,0.170654,0.0911452,0.548044,0.105052,0.65405,0.424206,0.368051,0.0349044,0.19844,0.884123,0.47196,0.185999,0.0369231,0.306064,0.315439,0.98753,0.520386,0.29904,0.915203,0.5694,0.706326,0.74754,0.321975,0.522197,0.189039,0.645048,0.197426,0.398684,0.377348,0.181118,0.475397,0.623356,0.879757,0.846266,0.417839,0.954349,0.0678086,0.667812,0.878139,0.210679,0.450953,0.981736,0.169925,0.805044,0.369865,0.375196,0.0461724,0.782441,0.830701,0.227232,0.349402,0.776714,0.547625,0.0409869,0.41576,0.762263,0.693723,0.565903,0.220484,0.358922,0.962208,0.163222,0.958907,0.664278,0.510101,0.804023,0.69659,0.23157,0.571352,0.685271,0.478504,0.969132,0.775138,0.637691,0.243228,0.128764,0.278766,0.619881,0.019475,0.731034,0.887829,0.753137,0.426172,0.470023,0.53959,0.363444,0.79257,0.732656,0.522124,0.533244,0.531942,0.718015,0.0740081,0.99477,0.796738,0.778346,0.842633,0.389991,0.55433,0.874515,0.939237,0.723797,0.0754779,0.446923,0.0637805,0.440002,0.22849,0.575164,0.453126,0.554586,0.717426,0.826888,0.199744,0.837428,0.675541,0.419233,0.868137,0.367539,0.936941,0.753353,0.93974,0.795677,0.474195,0.371356,0.134564,0.511676,0.630818,0.926098,0.719053,0.594153,0.45917,0.153667,0.922293,0.124597,0.286857,0.52185,0.185336,0.661048,0.684744,0.127231,0.960572,0.443678,0.3023,0.822181,0.321861,0.622997,0.954439,0.671578,0.944754,0.030573,0.995462,0.509722,0.873539,0.561436,0.0762916,0.596718,0.890354,0.818013,|0.948177,0.901281,0.355639,0.635909,0.665962,0.773812,0.418069,0.377582,0.804981,0.541348,0.388815,0.610169,0.263659,0.67007,0.898135,0.737194,0.548755,0.648733,0.985651,0.153247,0.814831,0.59431,0.0327216,0.867902,0.519278,0.928554,0.481715,0.0685791,0.989608,0.864121,0.724005,0.792791,0.0834182,0.882358,0.0255214,0.215687,0.9559,0.224719,0.620222,0.941915,0.457198,0.462761,0.542129,0.553579,0.51913,0.590137,0.501565,0.950822,0.654806,0.257544,0.139252,0.956579,0.875518,0.276231,0.353601,0.681441,0.055007,0.337442,0.15062,0.327924,0.721067,0.178274,0.958509,0.993309,0.4405,0.873336,0.675253,0.0939739,0.26234,0.220897,0.12493,0.854843,0.388981,0.565036,0.30499,0.315344,0.289523,0.268933,0.396543,0.98963,0.0789124,0.643863,0.298849,0.08949,0.418558,0.654007,0.432778,0.154709,0.104769,0.328,0.0382795,0.858509,0.660944,0.67242,0.361492,0.0519308,0.736912,0.535901,0.314867,0.224262,0.586292,0.952191,0.711289,0.192914,0.16589,0.0144683,0.96308,0.93988,0.21677,0.326453,0.773508,0.105254,0.913555,0.739315,0.33991,0.773513,0.389333,0.283732,0.0483626,0.0793688,0.227425,0.10262,0.343973,0.34816,0.903018,0.167544,0.251103,0.506936,0.839502,0.0385731,0.326959,0.816095,0.549264,0.995656,0.086219,0.695516,0.512643,0.0936375,0.0399536,0.38805,0.41971,0.0541939,0.327038,0.297273,0.896957,0.0267892,0.817614,0.418382,0.0962439,0.524841,0.630757,0.320201,0.65733,0.602816,0.713307,0.202806,0.0154179,0.989091,0.901868,0.529991,0.282673,0.0434558,0.0831417,0.955421,0.439234,0.676008,0.516256,0.374266,0.680753,0.747559,0.992149,0.227797,0.119874,0.567765,0.626095,0.580574,0.945856,0.360305,0.513662,0.538957,0.504823,0.260213,0.972146,0.237827,0.944539,0.184113,0.395303,0.466475,0.673638,0.235734,0.0104511,0.632983,0.978135,0.554521,0.480524,0.0134007,0.326551,0.746779,0.494393,0.0923454,0.561923,0.546819,0.705547,0.0850967,0.54006,0.0683429,0.0543621,0.353498,0.679883,0.095077,0.432492,0.680732,0.0509171,0.0276307,0.7696,0.776815,0.562685,0.16611,0.664837,0.0218231,0.0588185,0.54272,0.612723,0.249906,0.889516,0.711677,0.69841,0.152318,0.387795,0.425238,0.670281,0.724234,0.932497,0.118427,0.423702,0.819205,0.353447,0.322111,0.387172,0.938263,0.432469,0.443598,0.903408,0.0190716,0.169024,0.0139894,0.511,0.601098,0.937264,0.206601,0.499959,0.918028,0.630613,0.418742,0.422764,0.961258,0.145817,0.411344,0.707023,0.148536,0.158438,0.272447,0.95592,0.565148,0.0681064,0.213568,0.507545,0.940741,0.167202,0.351295,0.951587,0.321542,0.117181,0.724786,0.539499,0.706413,0.177847,0.426384,0.785738,0.811488,0.0724233,0.919432,0.882429,0.83203,0.892576,0.263529,0.768238,0.430851,0.190549,0.213115,0.792465,0.717519,0.305861,0.459915,0.817242,0.806603,0.304919,0.898505,0.696315,0.545299,0.574155,0.335094,0.893882,0.763706,0.562186,0.612639,0.0722604,0.380341,0.250418,0.734811,0.00436896,0.335242,0.391324,0.541035,0.504824,0.30119,0.312401,0.888557,0.67523,0.365991,0.996221,0.180642,0.933017,0.500602,0.327402,0.0127219,0.508703,0.33248,0.878904,0.851927,0.736378,0.700103,0.833048,0.550587,0.775327,0.715325,0.340384,0.00683481,0.0481164,0.811016,0.526126,0.446227,0.248211,0.856207,0.134225,0.16185,0.195599,0.527081,0.214162,0.765429,0.0911333,0.383261,0.977665,0.688221,0.317712,0.144068,0.980523,0.670697,0.711994,0.422024,0.881618,0.190134,0.95148,0.199795,0.260551,0.730565,0.0643018,0.204398,0.646507,0.526466,0.552351,0.109533,0.363653,0.357492,0.718341,0.677639,0.476899,0.493854,0.56267,0.713828,0.108103,0.887,0.635279,0.0414225,0.964479,0.494616,0.616714,0.87717,0.582237,0.167509,0.0827018,0.673859,0.809729,0.391633,0.672893,0.825788,0.329904,0.41538,0.0580572,0.251128,0.307322,0.401998,0.64131,0.278155,0.471215,0.996879,0.440621,0.747374,0.508491,0.653883,0.757463,0.819281,0.478284,0.727226,0.561552,0.723403,0.744681,0.32998,0.965553,0.410602,0.00116324,0.397645,0.44479,0.736035,0.094022,0.896292,0.0520148,0.335046,0.994427,0.811989,0.0604464,0.387572,0.320081,0.112099,0.982757,0.314653,0.317873,0.954927,0.765644,0.741237,0.225204,0.261604,0.21928,0.82128,0.42794,0.327499,0.98983,0.163325,0.317922,0.533278,0.216846,0.677723,0.628259,0.918079,0.951141,0.564226,0.540827,0.113203,0.929091,0.629959,0.306746,0.169875,0.663331,0.0773675,0.964061,0.363676,0.197279,0.665612,0.0627698,0.433842,0.333411,0.708774,0.219723,0.832746,0.523259,0.245112,0.338191,0.49162,0.738952,0.387173,0.728968,0.652325,0.633559,0.880633,0.262838,0.0112342,0.562729,0.471377,0.926549,0.960398,0.328154,0.247954,0.826044,0.550292,0.0615041,0.348117,0.690354,0.0802174,0.188295,0.360037,0.910629,0.252232,0.0707165,0.601841,0.0843151,0.271926,0.114918,0.434717,0.784932,0.0795565,0.702311,0.914301,0.347435,0.937013,0.411106,0.0698215,0.132662,0.368988,0.9064,0.903952,0.593619,0.185649,0.933381,0.341345,0.569491,0.992211,0.908249,0.827313,0.0336901,0.915622,0.645248,0.662729,0.0100525,0.56624,0.375807,0.490564,0.978072,0.478505,0.535076,0.613059,0.59338,0.321963,0.993088,0.014412,0.885902,0.803407,0.439818,0.422647,0.255038,0.821566,0.583364,0.13558,0.850798,0.0254992,0.820679,0.117026,0.483908,0.724491,0.599125,0.789023,0.267163,0.429047,0.625982,0.413993,0.594092,0.65221,0.0338999,0.127026,0.160343,0.00108588,0.0691375,0.0151451,0.202788,0.892281,0.105737,0.27318,0.541458,0.163052,0.937933,0.55573,0.877359,0.376067,0.159271,0.276111,0.164437,0.516517,0.304389,0.0710346,0.463507,0.591505,0.0298649,0.0922915,0.0784143,0.300973,0.401411,0.449716,0.519108,0.247603,0.0152201,0.873652,0.764181,0.789861,0.238948,0.260081,0.455054,0.146997,0.767733,0.118322,0.56699,0.508037,0.043008,0.694584,0.831556,0.00186026,0.25601,0.608613,0.498113,0.0374581,0.482438,0.126917,0.841803,0.840354,0.701352,0.627323,0.325807,0.461845,0.417576,0.900698,0.795745,0.63431,0.652369,0.389036,0.570957,0.988813,0.513057,0.696043,0.419105,0.276344,0.226847,0.320603,0.825678,0.0104594,0.0714754,0.845857,0.563278,0.603809,0.596284,0.356347,0.897873,0.28704,0.480774,0.876465,0.508232,0.687645,0.237015,0.97598,0.465867,0.251306,0.242096,0.773538,0.186664,0.74959,0.148076,0.717606,0.778656,0.555704,0.396378,0.426243,0.926782,0.19032,0.301998,0.693886,0.625061,0.369486,0.980409,0.120118,0.483873,0.440167,0.649483,0.836875,0.404338,0.103284,0.885193,0.22246,0.974492,0.384967,0.107163,0.253071,0.560909,0.570462,0.790313,0.079464,0.68982,0.134966,0.304811,0.337759,0.957249,0.96774,0.779346,0.455544,0.695712,0.0734027,0.14531,0.587232,0.174108,0.759183,0.284356,0.851353,0.297885,0.522555,0.930578,0.920147,0.413109,0.134625,0.239732,0.497076,0.115337,0.443325,0.549107,0.0265986,0.982315,0.749816,0.170256,0.22274,0.905576,0.0881724,0.904957,0.746858,0.591586,0.333964,0.696131,0.721722,0.448476,0.707222,0.243127,0.252998,0.305322,0.980743,0.553396,0.342288,0.44179,0.780936,0.211887,0.751922,0.954036,0.573977,0.912985,0.674742,0.861905,0.266637,0.819419,0.288308,0.976142,0.599041,0.82678,0.686656,0.679908,0.393828,0.20924,0.583636,0.0231214,0.494026,0.821802,0.880102,0.758911,0.659838,0.802724,0.452043,0.450154,0.294162,0.398819,0.140903,0.353773,0.2456,0.55878,0.895395,0.784032,0.87028,0.555587,0.432031,0.575032,0.872381,0.547822,0.969774,0.407439,0.992662,0.725202,0.642703,0.923786,0.947283,0.512065,0.0571151,0.9054,0.792785,0.0887159,0.817303,0.391518,0.142115,0.882591,0.0282958,0.99411,0.150658,0.202034,0.162979,0.941232,0.944704,0.19054,0.324051,0.883742,0.684387,0.942614,0.115665,0.593783,0.259515,0.528423,0.476312,0.467737,0.199049,0.804553,0.644279,0.457973,0.229833,0.601634,0.286435,0.129644,0.740474,0.167185,0.794629,0.201708,0.440418,0.10568,0.688384,0.696453,0.557052,0.128379,0.313491,0.309177,0.271142,0.354299,0.49777,0.123321,0.932098,0.489537,0.256268,0.145772,0.169893,0.971275,0.195122,0.879905,0.303308,0.685937,0.575327,0.796851,0.22073,0.748806,0.188724,0.794769,0.7497,0.791063,0.155032,0.0676091,0.87286,0.437198,0.139024,0.268857,0.652407,0.811704,0.71838,0.93859,0.313337,0.880644,0.81602,0.19963,0.763367,0.312789,0.334616,0.674677,0.929016,0.638109,0.0531368,0.579888,0.863412,0.66059,0.745896,0.833324,0.512248,0.88792,0.868967,0.0120938,0.94844,0.666263,0.858979,0.944016,0.803301,0.655988,0.245614,0.450997,0.972075,0.675761,0.506476,0.870223,0.259762,0.682954,0.12072,0.266279,0.0639703,0.718884,0.660411,0.223958,0.686549,0.630256,0.14713,0.606525,0.0515328,0.0109462,0.563161,0.29238,0.290034,0.146075,0.529307,0.474412,0.217481,0.191597,0.741072,0.287838,0.321945,0.694116,0.438077,0.299602,0.729303,0.835971,0.641739,0.549121,0.586565,0.334765,0.393027,0.0553256,0.455194,0.887565,0.303708,0.953677,0.853217,0.353652,0.406715,0.309034,0.0374663,0.0304688,0.345518,0.316751,0.936743,0.490584,0.138657,0.0816228,0.466672,0.237279,0.640219,0.299888,0.067153,0.188194,0.167293,0.105758,0.345731,0.1306,0.171403,0.641769,0.117411,0.0124726,0.326937,0.287311,0.262651,0.334725,0.801849,0.362808,0.182201,0.92504,0.148454,0.0498111,0.758063,0.0508826,0.756617,0.698558,0.113005,0.0541849,0.737345,0.943465,0.692523,0.268923,0.625912,0.67118,0.829713,0.317571,0.102408,0.99546,0.185518,0.410733,0.437521,0.348888,0.502469,0.336735,0.253737,|0.759158,0.606962,0.950742,0.38816,0.851438,0.872613,0.141416,0.834278,0.513515,0.454448,0.637045,0.968906,0.112015,0.469439,0.81474,0.91096,0.119102,0.603768,0.463553,0.613862,0.46663,0.44696,0.741773,0.470936,0.0066061,0.960713,0.488344,0.0631738,0.523981,0.980046,0.388106,0.126222,0.218254,0.642013,0.0985289,0.341444,0.190076,0.537751,0.577032,0.646683,0.286005,0.485859,0.315343,0.60454,0.414223,0.143244,0.394332,0.123901,0.0538487,0.45442,0.904235,0.530955,0.389349,0.450414,0.108586,0.55744,0.996671,0.966497,0.0971669,0.359223,0.896331,0.242899,0.00811243,0.572994,0.880369,0.966694,0.821797,0.169505,0.544219,0.752495,0.986021,0.334491,0.789348,0.528221,0.0362545,0.27258,0.808675,0.797391,0.613257,0.215218,0.497727,0.0882557,0.465937,0.856639,0.716481,0.4654,0.476177,0.00724566,0.163678,0.647749,0.0998902,0.612684,0.809872,0.31837,0.375665,0.304343,0.319806,0.923096,0.462226,0.098027,0.419551,0.36941,0.765111,0.208381,0.905848,0.743224,0.504822,0.00719684,0.398771,0.413336,0.206057,0.564011,0.0560421,0.710136,0.716734,0.542107,0.547902,0.402238,0.92575,0.482003,0.58682,0.445751,0.972508,0.230788,0.54619,0.541616,0.986465,0.344242,0.025965,0.993599,0.700382,0.89579,0.856133,0.0114446,0.69709,0.0933236,0.306918,0.614823,0.808021,0.59838,0.0827029,0.664263,0.0717586,0.718296,0.802447,0.934606,0.445032,0.578736,0.644524,0.0554903,0.137287,0.620705,0.477999,0.582028,0.141336,0.293724,0.412696,0.790417,0.018616,0.584467,0.22583,0.167499,0.523071,0.0297817,0.960029,0.584122,0.7529,0.534459,0.510516,0.771974,0.724581,0.586891,0.821671,0.208961,0.355664,0.762904,0.359598,0.865125,0.55889,0.356849,0.862037,0.619727,0.703633,0.0520803,0.078208,0.518274,0.273372,0.744563,0.0289559,0.610904,0.852923,0.77372,0.980679,0.0392659,0.325697,0.730239,0.2146,0.222965,0.246571,0.66508,0.39169,0.539296,0.0929907,0.00213033,0.588183,0.0959243,0.378357,0.229481,0.0766262,0.22963,0.206995,0.662033,0.0318453,0.180368,0.165639,0.754872,0.260342,0.211544,0.678779,0.507119,0.805126,0.552835,0.728009,0.646867,0.0401842,0.878723,0.339888,0.530965,0.347913,0.0606525,0.590859,0.860763,0.376934,0.253953,0.213601,0.476919,0.54087,0.907844,0.0070672,0.302663,0.988708,0.244344,0.817874,0.0862899,0.449501,0.411136,0.0648239,0.384492,0.263333,0.725013,0.587894,0.324962,0.988848,0.347733,0.692923,0.890805,0.588192,0.350891,0.493035,0.011116,0.684965,0.0490212,0.922162,0.535834,0.989732,0.731194,0.0246679,0.241123,0.810548,0.811998,0.245784,0.529801,0.180891,0.874387,0.279699,0.577593,0.574239,0.419716,0.28618,0.177797,0.330151,0.858149,0.717375,0.682533,0.65867,0.306333,0.261455,0.319845,0.288542,0.666593,0.0935915,0.398283,0.60812,0.837802,0.581408,0.839984,0.699867,0.399176,0.849839,0.634044,0.0999637,0.0063737,0.167377,0.466815,0.747015,0.525178,0.944428,0.947799,0.39883,0.00334603,0.152974,0.768778,0.669582,0.557024,0.886969,0.297982,0.390948,0.965502,0.152789,0.701957,0.96179,0.0691822,0.825581,0.976328,0.613665,0.526921,0.931879,0.427181,0.0479538,0.971226,0.402856,0.88161,0.50109,0.590252,0.176823,0.182943,0.832575,0.555376,0.485531,0.922151,0.936199,0.112646,0.230612,0.222932,0.867114,0.544538,0.468907,0.238166,0.180294,0.887742,0.844606,0.029741,0.442319,0.518386,0.514677,0.0710189,0.00129575,0.0735624,0.560487,0.727326,0.964277,0.00519288,0.615322,0.36587,0.739198,0.742355,0.83014,0.583865,0.248748,0.817171,0.6621,0.960697,0.717775,0.950734,0.124643,0.369203,0.142157,0.536956,0.973278,0.92049,0.472872,0.752539,0.870597,0.523451,0.757302,0.035603,0.0747845,0.839324,0.525672,0.951486,0.462243,0.0935501,0.0315237,0.247911,0.77318,0.127352,0.447698,0.823318,0.817912,0.120346,0.509019,0.313035,0.202031,0.587901,0.293824,0.209542,0.0664242,0.775118,0.43541,0.434302,0.269332,0.654119,0.669328,0.605247,0.497218,0.0788237,0.261857,0.513762,0.0294818,0.0133094,0.281117,0.948053,0.619696,0.907897,0.647855,0.0404192,0.50795,0.519841,0.498498,0.376567,0.454143,0.161612,0.908128,0.771157,0.348619,0.466332,0.250508,0.942105,0.983359,0.691408,0.394223,0.478049,0.910068,0.156804,0.519438,0.0927628,0.593541,0.853298,0.816918,0.841003,0.0450665,0.138863,0.714334,0.295794,0.634579,0.347744,0.123873,0.797953,0.318281,0.544265,0.365279,0.885137,0.901262,0.669486,0.0127063,0.43423,0.54374,0.627662,0.448104,0.0512242,0.360277,0.161284,0.260234,0.508301,0.0255435,0.0551906,0.590629,0.821288,0.374672,0.525806,0.595217,0.486459,0.520699,0.583373,0.0029965,0.142043,0.87364,0.313708,0.929313,0.859846,0.23615,0.590763,0.357485,0.384021,0.935758,0.649285,0.149539,0.384616,0.378655,0.153978,0.857806,0.348723,0.915034,0.856966,0.620586,0.586774,0.165641,0.809771,0.789948,0.23598,0.77672,0.864425,0.8044,0.338189,0.0138742,0.112975,0.414332,0.884779,0.29787,0.0145724,0.904686,0.681043,0.665253,0.719379,0.18705,0.226016,0.326971,0.644341,0.500176,0.911328,0.443472,0.308087,0.890177,0.316425,0.849115,0.747607,0.918542,0.123814,0.53864,0.924411,0.990042,0.643557,0.624579,0.855974,0.638367,0.886662,0.495247,0.0144593,0.867569,0.0451614,0.548203,0.382298,0.729719,0.36687,0.856904,0.998864,0.73652,0.995261,0.0368629,0.873097,0.122627,0.884956,0.0693044,0.0372037,0.791513,0.773056,0.566808,0.0635104,0.847735,0.324378,0.615116,0.757687,0.575363,0.981701,0.875657,0.849252,0.0833279,0.979646,0.263362,0.831223,0.849291,0.657203,0.106086,0.655746,0.581914,0.176278,0.0337511,0.538817,0.210169,0.28524,0.309396,0.545111,0.282922,0.226239,0.200118,0.825051,0.0821123,0.64323,0.573005,0.391166,0.629876,0.572458,0.586072,0.535929,0.749301,0.86635,0.662792,0.494114,0.751493,0.252414,0.524536,0.465208,0.763382,0.0652149,0.259116,0.178181,0.307186,0.122456,0.530302,0.690667,0.678955,0.566502,0.397274,0.948097,0.675699,0.34876,0.809162,0.79274,0.522784,0.427818,0.355867,0.539842,0.17245,0.488489,0.463711,0.308233,0.858213,0.921375,0.228176,0.054602,0.800501,0.257847,0.353577,0.586289,0.68894,0.693588,0.578007,0.88834,0.492411,0.789623,0.361485,0.504495,0.279862,0.723919,0.767353,0.341804,0.900025,0.530257,0.571638,0.35917,0.859424,0.282877,0.279183,0.602233,0.988289,0.191251,0.511542,0.803054,0.990613,0.468098,0.965308,0.780367,0.658356,0.308333,0.163709,0.91671,0.215454,0.194715,0.312935,0.0442387,0.133406,0.514178,0.426602,0.20999,0.764369,0.814116,0.127533,0.0269375,0.871053,0.917145,0.78569,0.424338,0.0579417,0.849601,0.911418,0.410614,0.246375,0.918064,0.868507,0.554329,0.458871,0.386257,0.297662,0.192199,0.36939,0.78688,0.930332,0.138555,0.747689,0.376314,0.805376,0.785211,0.67054,0.807041,0.263048,0.733468,0.378692,0.239801,0.0803182,0.564761,0.71869,0.0620819,0.466588,0.788137,0.463488,0.750223,0.523491,0.391141,0.513811,0.225886,0.722395,0.730852,0.8565,0.706384,0.301799,0.788454,0.028059,0.922175,0.1306,0.627873,0.697371,0.311454,0.0139345,0.0214296,0.432516,0.232426,0.513805,0.0308316,0.503406,0.586966,0.1774,0.217842,0.513757,0.585943,0.195271,0.645124,0.873253,0.225395,0.153609,0.426884,0.581131,0.972164,0.755997,0.451947,0.242725,0.590449,0.538713,0.165113,0.182485,0.813204,0.951632,0.282531,0.527555,0.239034,0.0721893,0.805144,0.345712,0.407976,0.162204,0.639175,0.101318,0.960456,0.790403,0.930156,0.598395,0.267717,0.0030933,0.472708,0.820681,0.643383,0.173458,0.493826,0.395261,0.00136501,0.346841,0.859632,0.602492,0.290702,0.726722,0.815247,0.311466,0.361685,0.281767,0.00790191,0.140757,0.0670478,0.873389,0.889049,0.864323,0.660271,0.00534433,0.953814,0.0577921,0.480249,0.0977095,0.451844,0.700826,0.405477,0.834945,0.52314,0.255032,0.560417,0.401761,0.59213,0.544377,0.690878,0.380191,0.213299,0.15914,0.0926654,0.453487,0.493899,0.599852,0.0198854,0.610742,0.976184,0.57298,0.435048,0.867195,0.231275,0.516762,0.757218,0.611005,0.460893,0.824732,0.222252,0.207677,0.0515668,0.315485,0.905636,0.0417722,0.773818,0.179621,0.686467,0.344264,0.964935,0.659635,0.167896,0.424587,0.00212264,0.101973,0.304785,0.251488,0.434577,0.0818346,0.333401,0.712451,0.622301,0.268912,0.948866,0.34231,0.568396,0.75048,0.12996,0.253384,0.35703,0.149003,0.323594,0.233319,0.753374,0.341065,0.999722,0.194644,0.192221,0.528024,0.918655,0.798667,0.792895,0.911021,0.203383,0.313769,0.261646,0.53577,0.327984,0.855132,0.159303,0.646548,0.668905,0.676756,0.394622,0.519995,0.71518,0.818295,0.825734,0.86198,0.0898781,0.688759,0.580518,0.388159,0.6173,0.132505,0.338714,0.285674,0.597606,0.748607,0.558349,0.37784,0.335367,0.26161,0.141452,0.976529,0.992647,0.171328,0.463896,0.78519,0.38872,0.479874,0.296633,0.683148,0.386124,0.27161,0.879425,0.919443,0.100084,0.0462639,0.998653,0.983728,0.862895,0.259488,0.597804,0.68257,0.921259,0.898888,0.691207,0.196751,0.495931,0.141867,0.442639,0.552287,0.353516,0.807245,0.0943876,0.380641,0.887521,0.0499847,0.833836,0.125675,0.64246,0.430471,0.384291,0.0981644,0.225852,0.754404,0.864948,0.65799,0.269569,0.924327,0.0133419,0.472352,0.173557,0.274765,0.32475,0.980259,0.772407,0.00566071,0.496514,0.0540071,0.0327826,0.938981,0.900137,0.174726,0.87494,0.147091,0.594886,0.940978,0.414601,0.599497,0.957405,0.551556,0.847793,0.536973,0.837948,0.645238,0.747017,0.941266,0.240971,0.605117,0.621278,0.545028,0.895695,|0.771372,0.430693,0.328402,0.804905,0.0481806,0.860277,0.943464,0.215078,0.80029,0.432112,0.93975,0.781876,0.271659,0.612743,0.497849,0.905679,0.953958,0.917728,0.928263,0.916829,0.969973,0.387266,0.347681,0.558152,0.666748,0.797465,0.244837,0.424565,0.4015,0.776702,0.24524,0.274082,0.346189,0.117781,0.13024,0.843792,0.462368,0.437356,0.334675,0.119926,0.92547,0.117008,0.452294,0.193832,0.0811138,0.955206,0.172849,0.422426,0.267436,0.921324,0.954734,0.713458,0.216458,0.493533,0.516381,0.273589,0.0643441,0.509061,0.00752676,0.301035,0.505057,0.9994,0.678186,0.496284,0.787893,0.428708,0.722292,0.0326262,0.889391,0.419298,0.859011,0.38316,0.771868,0.439908,0.270283,0.645226,0.0429493,0.135157,0.645509,0.0738429,0.599521,0.355528,0.167557,0.375552,0.0275251,0.376481,0.559211,0.613956,0.918532,0.862899,0.571656,0.768353,0.263109,0.180496,0.278536,0.101692,0.489443,0.0937596,0.0866456,0.438422,0.841788,0.774188,0.101422,0.514971,0.904533,0.00737154,0.0179807,0.167272,0.164218,0.00557595,0.244537,0.617117,0.417565,0.417609,0.439066,0.122757,0.322262,0.44859,0.76541,0.292436,0.928429,0.792889,0.0737979,0.0876241,0.829054,0.126619,0.847386,0.750001,0.125543,0.969064,0.724802,0.223309,0.629248,0.190264,0.910327,0.836168,0.782114,0.179038,0.0822589,0.939794,0.345934,0.11196,0.638025,0.684034,0.726758,0.475812,0.278353,0.520647,0.246398,0.254502,0.219711,0.454947,0.0932724,0.198172,0.33489,0.110747,0.469592,0.397462,0.117886,0.909555,0.360393,0.862762,0.756547,0.922841,0.605592,0.468608,0.0484113,0.197441,0.762301,0.754576,0.584635,0.934542,0.932175,0.959948,0.0201748,0.156959,0.101434,0.461106,0.917765,0.424615,0.0761538,0.206802,0.204712,0.406622,0.842174,0.390569,0.0274416,0.234747,0.26143,0.505617,0.592487,0.306427,0.195686,0.960564,0.653089,0.0258096,0.638133,0.582762,0.805147,0.0253195,0.723258,0.0839457,0.431751,0.512189,0.336494,0.0659292,0.106977,0.234369,0.0570965,0.0494598,0.205551,0.57103,0.672866,0.476997,0.465865,0.514751,0.702787,0.770149,0.813928,0.746434,0.611226,0.541274,0.78781,0.625184,0.661535,0.924853,0.139191,0.357275,0.400774,0.0258237,0.332764,0.91434,0.141675,0.113127,0.900984,0.343269,0.839457,0.778604,0.947761,0.223555,0.446959,0.429967,0.406626,0.147734,0.865733,0.701487,0.463042,0.107896,0.919857,0.308273,0.101755,0.0980784,0.389278,0.294058,0.0426188,0.970652,0.278305,0.296482,0.128454,0.711807,0.340149,0.137852,0.396582,0.406219,0.155861,0.881099,0.976204,0.948126,0.79465,0.021859,0.541056,0.0711157,0.187183,0.561546,0.596905,0.582589,0.746884,0.767125,0.0378146,0.932002,0.625545,0.667119,0.214746,0.156049,0.232418,0.890991,0.406319,0.252541,0.120832,0.922315,0.0692816,0.39536,0.782571,0.454544,0.561996,0.873908,0.334834,0.141731,0.532226,0.101754,0.258969,0.951485,0.266442,0.618943,0.183309,0.65162,0.532315,0.247858,0.605232,0.546824,0.746823,0.00732511,0.507793,0.613121,0.548575,0.149298,0.480607,0.534565,0.186369,0.110003,0.551205,0.0628616,0.0336878,0.254328,0.954664,0.494742,0.463223,0.243006,0.991363,0.172789,0.509001,0.0832943,0.527779,0.154483,0.337116,0.724822,0.567373,0.848678,0.555793,0.338033,0.354062,0.50985,0.892086,0.584834,0.408461,0.515079,0.763005,0.977028,0.129616,0.653903,0.793763,0.557726,0.115156,0.478742,0.757299,0.466715,0.420354,0.42592,0.430896,0.100928,0.294862,0.521581,0.560128,0.0053913,0.503631,0.230979,0.868956,0.341166,0.113123,0.365047,0.994039,0.0603703,0.0415747,0.697183,0.157759,0.156103,0.102815,0.802543,0.875607,0.113175,0.604241,0.366076,0.982405,0.0652878,0.893025,0.444581,0.249059,0.881092,0.593206,0.781207,0.615737,0.229703,0.229434,0.625659,0.756113,0.918841,0.256932,0.668138,0.357397,0.443529,0.957111,0.306376,0.556583,0.873926,0.482279,0.476213,0.00580883,0.382868,0.853075,0.942305,0.786955,0.420021,0.91958,0.795955,0.682672,0.694615,0.914266,0.00934744,0.027868,0.0380374,0.315184,0.684712,0.436937,0.551653,0.953321,0.186418,0.0406184,0.132634,0.540307,0.621442,0.65248,0.699827,0.63178,0.287903,0.0332454,0.804165,0.967681,0.945031,0.530204,0.402402,0.860343,0.0619476,0.922935,0.794499,0.748789,0.756181,0.854899,0.923271,0.946768,0.823026,0.950417,0.125184,0.994314,0.698355,0.020227,0.505287,0.432696,0.852961,0.147123,0.256804,0.425211,0.318596,0.86932,0.810838,0.952995,0.401938,0.73583,0.112452,0.942846,0.64817,0.17887,0.851817,0.715099,0.39978,0.224853,0.161009,0.168511,0.609858,0.163746,0.951884,0.775469,0.235462,0.847609,0.380821,0.229551,0.974209,0.281513,0.064885,0.156953,0.999994,0.991401,0.843387,0.712477,0.607239,0.315918,0.65033,0.20512,0.822333,0.468405,0.426164,0.245447,0.659629,0.580384,0.328197,0.474482,0.877539,0.241815,0.199873,0.0692333,0.511782,0.175354,0.639995,0.869616,0.95498,0.612795,0.180812,0.47296,0.0967442,0.44908,0.0880323,0.20978,0.428984,0.282743,0.981129,0.232956,0.151407,0.247601,0.684689,0.554837,0.892136,0.619586,0.663113,0.754601,0.1386,0.200993,0.388111,0.559858,0.413429,0.55163,0.261528,0.453519,0.594486,0.258047,0.36601,0.0166573,0.489866,0.397704,0.423243,0.419619,0.712216,0.184266,0.899049,0.328687,0.631925,0.578047,0.706105,0.612979,0.409497,0.391664,0.524326,0.459649,0.210599,0.316392,0.708161,0.845643,0.215501,0.850784,0.246147,0.483968,0.932101,0.582744,0.944524,0.36077,0.624032,0.121838,0.330899,0.794812,0.533,0.386716,0.347884,0.915146,0.816428,0.88975,0.116089,0.644523,0.634519,0.305154,0.384977,0.0146971,0.498304,0.931182,0.576882,0.0713192,0.744568,0.198872,0.682016,0.591889,0.623456,0.789996,0.218619,0.745141,0.541227,0.281403,0.336665,0.722726,0.775879,0.788253,0.714934,0.884173,0.740733,0.821884,0.0823781,0.680377,0.0634954,0.903497,0.335495,0.989461,0.570084,0.122942,0.909696,0.494646,0.224471,0.450867,0.329472,0.668225,0.993886,0.376536,0.199067,0.928556,0.725488,0.504036,0.99421,0.697507,0.616024,0.866174,0.277497,0.329992,0.614742,0.502967,0.625028,0.213108,0.927132,0.475754,0.491908,0.493052,0.788998,0.30342,0.109031,0.550258,0.170448,0.58266,0.506555,0.294741,0.990256,0.605427,0.514578,0.543896,0.532505,0.470002,0.665942,0.386624,0.741424,0.107023,0.952967,0.995871,0.107076,0.57328,0.217998,0.457688,0.566295,0.241892,0.281171,0.00924695,0.23277,0.246287,0.792872,0.624923,0.17784,0.825016,0.545451,0.856365,0.824238,0.787704,0.315959,0.0786167,0.974964,0.857957,0.419531,0.936837,0.427968,0.0929643,0.267518,0.53046,0.10589,0.0693995,0.615784,0.707061,0.0581127,0.305414,0.256313,0.60199,0.427215,0.930557,0.128293,0.849537,0.914675,0.272292,0.189941,0.0479697,0.475205,0.869058,0.486785,0.613008,0.108005,0.279413,0.6653,0.198313,0.456812,0.553726,0.665923,0.818651,0.365184,0.479275,0.486549,0.969667,0.883939,0.0266861,0.605156,0.36043,0.793885,0.506138,0.325349,0.418177,0.0583465,0.00365937,0.769222,0.129657,0.726011,0.683835,0.0827654,0.900706,0.800165,0.94175,0.20151,0.640075,0.26543,0.549449,0.625763,0.153307,0.511309,0.966834,0.657076,0.797928,0.96281,0.355072,0.598204,0.647957,0.146018,0.783251,0.184645,0.217696,0.547224,0.744343,0.955423,0.901097,0.980133,0.0985307,0.181965,0.699071,0.513628,0.00219929,0.414483,0.65299,0.0844923,0.279621,0.032092,0.757022,0.656689,0.717439,0.354667,0.228014,0.99076,0.607938,0.0883394,0.755467,0.730712,0.105706,0.853829,0.73026,0.477648,0.694876,0.212963,0.193739,0.972603,0.116324,0.315944,0.00460792,0.193074,0.288589,0.814156,0.0618698,0.152594,0.9863,0.772179,0.604103,0.608812,0.150376,0.819232,0.678543,0.35157,0.500744,0.0080294,0.378706,0.00612503,0.50273,0.994819,0.685661,0.618711,0.251376,0.752709,0.634209,0.414417,0.496184,0.53848,0.33101,0.58693,0.026861,0.13446,0.713088,0.801665,0.220488,0.337655,0.662421,0.192039,0.711061,0.69392,0.497986,0.326937,0.650012,0.941257,0.835826,0.480125,0.44319,0.313021,0.782314,0.824462,0.566095,0.895365,0.96818,0.386038,0.904641,0.87258,0.658446,0.549167,0.0956314,0.622982,0.334811,0.579963,0.913802,0.0812979,0.0871247,0.992166,0.0592811,0.401381,0.856562,0.344552,0.260856,0.511653,0.152065,0.168326,0.738324,0.232033,0.35192,0.342512,0.2438,0.651001,0.0924913,0.367734,0.466524,0.618687,0.127878,0.343559,0.853438,0.071461,0.294666,0.0227839,0.819011,0.650777,0.0372747,0.686393,0.553412,0.736999,0.14487,0.999192,0.759174,0.816598,0.310475,0.929031,0.247663,0.747272,0.504918,0.550623,0.474249,0.46209,0.572868,0.433634,0.0862487,0.230261,0.643907,0.70369,0.718727,0.343472,0.799145,0.421433,0.753075,0.176794,0.213332,0.394815,0.983808,0.562967,0.537663,0.712328,0.635973,0.847712,0.974577,0.745806,0.486124,0.0438164,0.572647,0.782631,0.999456,0.904544,0.438474,0.106502,0.32535,0.716321,0.837853,0.280687,0.375638,0.0186968,0.432931,0.582138,0.0898899,0.534252,0.513834,0.701852,0.678523,0.0160731,0.694711,0.361683,0.173199,0.406985,0.483583,0.748686,0.907272,0.963827,0.420814,0.404317,0.771115,0.991316,0.424631,0.159658,0.649689,0.15999,0.0702378,0.248459,0.0945922,0.561414,0.675343,0.44564,0.631212,0.696998,0.0623305,0.578595,0.216589,0.116932,0.311714,0.732071,0.832203,0.957892,0.945266,0.623121,0.594155,0.199964,0.471964,0.282747,0.274956,0.347382,0.210309,0.210163,0.988261,0.824427,0.0180262,0.342227,0.521596,0.87096,0.913771,0.525282,0.643289,0.519623,|0.491658,0.84519,0.470517,0.901186,0.690867,0.994343,0.877095,0.572025,0.415252,0.161606,0.954628,0.784513,0.450221,0.684736,0.610891,0.573967,0.853135,0.744532,0.271581,0.941676,0.0627093,0.742513,0.840074,0.392325,0.884775,0.196647,0.709064,0.0142131,0.827483,0.157939,0.462002,0.270419,0.459775,0.193706,0.87447,0.187312,0.457452,0.422038,0.0155745,0.372232,0.875342,0.698885,0.184478,0.32609,0.448722,0.147117,0.00331974,0.979717,0.438773,0.141046,0.175692,0.967566,0.5727,0.613532,0.0873094,0.572421,0.506309,0.104226,0.950697,0.615877,0.741063,0.913277,0.121863,0.698052,0.897617,0.685589,0.0627154,0.484133,0.358798,0.983128,0.809054,0.153356,0.0835955,0.562552,0.736537,0.542095,0.0646219,0.243356,0.227619,0.304497,0.751775,0.347803,0.789768,0.517424,0.624188,0.476528,0.265583,0.149217,0.0920413,0.55764,0.629065,0.952443,0.988559,0.46326,0.00671095,0.211478,0.197017,0.902615,0.69814,0.129798,0.727156,0.523802,0.921411,0.897916,0.22699,0.627657,0.271926,0.248291,0.127847,0.708999,0.283332,0.0838103,0.284852,0.107687,0.270896,0.279919,0.477038,0.153534,0.968088,0.20774,0.274293,0.55878,0.232408,0.75111,0.0535625,0.65494,0.30917,0.932412,0.851244,0.076476,0.054023,0.911298,0.252979,0.706038,0.485991,0.540047,0.425589,0.681368,0.0208037,0.147393,0.048914,0.996694,0.455375,0.149961,0.835992,0.753035,0.821119,0.405757,0.385122,0.256735,0.975425,0.588933,0.518493,0.968843,0.0859589,0.850416,0.326088,0.598972,0.0593269,0.479021,0.570295,0.163162,0.244829,0.162621,0.732445,0.0641373,0.560273,0.747072,0.349284,0.221803,0.00317746,0.980683,0.843208,0.906952,0.546386,0.314933,0.0686336,0.353348,0.180958,0.177784,0.833005,0.471209,0.715236,0.0850149,0.699734,0.0616217,0.1841,0.670062,0.981606,0.168017,0.177396,0.35632,0.672403,0.0688923,0.279275,0.699,0.623147,0.86173,0.472184,0.0103539,0.438369,0.158037,0.0796113,0.314375,0.991032,0.398048,0.663343,0.393897,0.0942851,0.12037,0.644889,0.391571,0.77831,0.546148,0.952711,0.633255,0.957916,0.411666,0.102305,0.191428,0.467243,0.485414,0.149319,0.745486,0.756796,0.870105,0.411996,0.210695,0.568026,0.576852,0.781201,0.259536,0.0979142,0.712613,0.0596485,0.277499,0.399231,0.383096,0.744693,0.600792,0.66476,0.16481,0.0272346,0.874841,0.162455,0.486804,0.237724,0.180179,0.955882,0.0970468,0.122614,0.618605,0.795817,0.340065,0.595244,0.150054,0.158177,0.627922,0.718824,0.358685,0.478473,0.183693,0.401995,0.208192,0.845706,0.127791,0.617281,0.999421,0.873401,0.917804,0.360794,0.248626,0.458987,0.513892,0.0829693,0.0834738,0.595569,0.516023,0.629735,0.517034,0.220891,0.571572,0.241758,0.221982,0.969217,0.849269,0.1535,0.810273,0.651471,0.360112,0.653176,0.549912,0.649415,0.153024,0.616191,0.259806,0.632996,0.389306,0.615259,0.470126,0.00635052,0.109045,0.966302,0.890378,0.133857,0.540467,0.605683,0.992431,0.583337,0.599465,0.783254,0.519047,0.808595,0.825808,0.384776,0.413743,0.681598,0.701987,0.159404,0.825472,0.143205,0.243812,0.606135,0.503597,0.0626034,0.0395355,0.653634,0.792455,0.845909,0.777746,0.85011,0.473481,0.466357,0.45842,0.967317,0.559661,0.486523,0.465549,0.0353363,0.0321609,0.893559,0.484273,0.877492,0.257545,0.456864,0.184529,0.687226,0.149591,0.157569,0.163167,0.981716,0.159868,0.239425,0.0401686,0.720504,0.608037,0.867246,0.601114,0.603558,0.91116,0.297224,0.542632,0.702013,0.177819,0.26239,0.28035,0.115307,0.0761147,0.30538,0.62746,0.526866,0.593232,0.0564685,0.378142,0.646278,0.395626,0.979337,0.868069,0.832446,0.121439,0.5513,0.855438,0.808372,0.557758,0.648235,0.807261,0.497129,0.6211,0.049226,0.271533,0.109777,0.840084,0.234714,0.13439,0.719689,0.427402,0.429355,0.310707,0.436324,0.657194,0.748871,0.141028,0.858116,0.216686,0.0925625,0.554583,0.219771,0.138,0.818724,0.573788,0.0351925,0.552952,0.508513,0.0446501,0.137325,0.355989,0.391487,0.574526,0.914158,0.398655,0.444591,0.807253,0.163094,0.846959,0.434066,0.0876477,0.7216,0.51452,0.684366,0.840275,0.0727066,0.738842,0.682248,0.702413,0.302795,0.806264,0.91923,0.980969,0.249912,0.89907,0.456312,0.672465,0.0692816,0.221644,0.490296,0.852401,0.459946,0.597795,0.605233,0.605081,0.87807,0.206046,0.603016,0.939054,0.142312,0.414442,0.883553,0.578673,0.247743,0.508188,0.834949,0.82573,0.314792,0.792895,0.561463,0.600247,0.834912,0.356872,0.489578,0.112029,0.727814,0.307981,0.013083,0.474371,0.351883,0.420794,0.77002,0.845513,0.815591,0.846974,0.48099,0.105699,0.557338,0.464596,0.716542,0.524416,0.332929,0.446703,0.901796,0.300484,0.785683,0.440449,0.370336,0.27718,0.447261,0.119009,0.420247,0.982346,0.959052,0.991299,0.51287,0.978469,0.270058,0.795117,0.490383,0.975206,0.460668,0.441239,0.393475,0.741445,0.794406,0.250878,0.650171,0.0512704,0.33152,0.0711591,0.547517,0.999777,0.929518,0.180217,0.000362754,0.571266,0.972598,0.247581,0.398674,0.765217,0.191763,0.640427,0.1721,0.323125,0.46439,0.108379,0.426838,0.0990072,0.704781,0.0551211,0.878953,0.568996,0.199742,0.310954,0.00696236,0.179731,0.911268,0.629126,0.693334,0.230658,0.726192,0.999255,0.301474,0.594188,0.522245,0.652326,0.189697,0.132732,0.745253,0.134512,0.538902,0.140907,0.71724,0.803115,0.047211,0.784574,0.508032,0.965265,0.280034,0.83399,0.237071,0.691528,0.390938,0.529138,0.0662272,0.639443,0.520367,0.777546,0.701525,0.619421,0.0122957,0.56128,0.698955,0.678563,0.177402,0.388989,0.0998681,0.275712,0.491379,0.927971,0.0485912,0.792649,0.67038,0.0389143,0.397493,0.750353,0.630608,0.666598,0.287703,0.336173,0.995223,0.133285,0.796213,0.780426,0.465633,0.184594,0.976804,0.0324031,0.599677,0.907766,0.795069,0.1971,0.8132,0.179218,0.718054,0.716691,0.765082,0.274646,0.700259,0.0916762,0.468334,0.306775,0.243655,0.573855,0.310624,0.513657,0.425167,0.135538,0.937143,0.165049,0.90977,0.929349,0.0236045,0.758677,0.716938,0.571028,0.45103,0.00822121,0.408218,0.185755,0.289383,0.616134,0.0718055,0.268999,0.453618,0.0961739,0.119351,0.000839055,0.389163,0.493077,0.0949196,0.47638,0.226707,0.172406,0.778867,0.835216,0.617272,0.981506,0.729659,0.219316,0.586302,0.91984,0.506504,0.546264,0.932451,0.467883,0.663859,0.533217,0.961696,0.798309,0.651142,0.566459,0.534032,0.687654,0.332178,0.566498,0.622031,0.0292653,0.999096,0.869604,0.658987,0.909834,0.320295,0.338677,0.589554,0.2121,0.701403,0.465711,0.67501,0.221028,0.584087,0.609641,0.679501,0.955356,0.459899,0.757545,0.550114,0.528557,0.455635,0.311016,0.210256,0.857114,0.881501,0.393289,0.142347,0.141817,0.129364,0.596058,0.594234,0.523392,0.242978,0.79374,0.367893,0.553181,0.826865,0.107171,0.257268,0.0888585,0.546002,0.375932,0.61866,0.22926,0.420198,0.466956,0.530276,0.788899,0.423635,0.464318,0.383187,0.431991,0.912379,0.37291,0.888297,0.452888,0.628736,0.943139,0.756525,0.0334848,0.179758,0.468167,0.00722063,0.463209,0.549672,0.289218,0.775653,0.233429,0.271958,0.974649,0.305611,0.670467,0.784405,0.0705686,0.197771,0.87058,0.958634,0.366585,0.720439,0.771333,0.0175394,0.070073,0.233519,0.0178326,0.404885,0.636158,0.00549245,0.584537,0.0693647,0.50384,0.52064,0.383537,0.603923,0.457993,0.633496,0.443295,0.253647,0.942193,0.607124,0.579198,0.882909,0.594621,0.304794,0.807916,0.372469,0.228519,0.508533,0.345316,0.383659,0.447514,0.464064,0.33294,0.897229,0.0861985,0.135939,0.461049,0.867316,0.808797,0.0260434,0.631289,0.121726,0.340242,0.108855,0.725317,0.979983,0.228677,0.208667,0.820996,0.93703,0.195018,0.535194,0.195171,0.266283,0.481722,0.00949109,0.533873,0.00989574,0.885835,0.714805,0.0308622,0.857025,0.156477,0.504307,0.870272,0.501429,0.139492,0.699939,0.761493,0.891203,0.00876933,0.566455,0.472136,0.282967,0.331879,0.876256,0.533767,0.615887,0.0518844,0.830724,0.425028,0.89989,0.516605,0.17922,0.110415,0.925598,0.199682,0.324014,0.886294,0.879605,0.838616,0.172512,0.529754,0.986577,0.922301,0.0560937,0.57309,0.26555,0.315868,0.851729,0.257211,0.418795,0.868934,0.910759,0.8671,0.567235,0.860803,0.587894,0.873911,0.0300153,0.977328,0.759595,0.565124,0.0401346,0.238962,0.552811,0.49287,0.250978,0.142843,0.883855,0.955525,0.900948,0.385475,0.568126,0.700248,0.544076,0.0325762,0.844351,0.0483849,0.139822,0.396731,0.437138,0.220571,0.0455448,0.403869,0.456934,0.936575,0.443755,0.984497,0.397228,0.848686,0.505089,0.593638,0.657906,0.00261247,0.80207,0.359362,0.062456,0.095282,0.732895,0.862654,0.515921,0.193414,0.273185,0.490202,0.0730309,0.442119,0.661008,0.030409,0.657204,0.0346586,0.469935,0.341057,0.790743,0.99353,0.00534058,0.206738,0.791638,0.28279,0.00304395,0.566884,0.876852,0.660773,0.43533,0.830421,0.347675,0.70287,0.168074,0.561518,0.1783,0.638183,0.317771,0.0385304,0.70554,0.508856,0.676432,0.0330666,0.559626,0.216597,0.179179,0.0622392,0.271014,0.604618,0.591298,0.460786,0.669664,0.38046,0.559054,0.0457737,0.983544,0.591914,0.272591,0.116361,0.890615,0.884563,0.4067,0.595793,0.595528,0.945216,0.758124,0.300508,0.58845,0.603617,0.384941,0.171883,0.292878,0.691841,0.717364,0.607865,0.909064,0.489329,0.154517,0.313515,0.356089,0.793125,0.252503,0.577397,0.801121,0.699313,0.900727,0.588192,0.683433,0.79186,0.0274996,0.334683,0.20993,0.356124,0.248746,0.802496,0.269565,0.23435,0.976621,0.464173,0.225732,0.233072,0.490751,0.396071,|0.867641,0.567624,0.346445,0.458454,0.368594,0.158225,0.166981,0.280209,0.282245,0.438523,0.970342,0.205644,0.408679,0.637283,0.222885,0.0687442,0.769573,0.227587,0.303291,0.273131,0.700051,0.498106,0.213298,0.218767,0.32022,0.41727,0.385175,0.628842,0.801786,0.811988,0.992468,0.131074,0.192186,0.886478,0.42602,0.707874,0.636045,0.168095,0.42914,0.744307,0.727966,0.727094,0.881275,0.400359,0.887771,0.661217,0.294198,0.739108,0.164558,0.18014,0.0735162,0.279783,0.597367,0.567208,0.09396,0.196353,0.61565,0.856034,0.258602,0.679216,0.852919,0.497361,0.913677,0.300656,0.677183,0.957404,0.437526,0.651793,0.343194,0.28182,0.0251905,0.513238,0.730928,0.333068,0.380389,0.337441,0.774553,0.391281,0.239369,0.902563,0.517223,0.818809,0.862525,0.441323,0.0954477,0.635924,0.949398,0.421542,0.17572,0.415719,0.231461,0.726606,0.0320913,0.0899547,0.32159,0.125378,0.944296,0.53017,0.643799,0.244758,0.676129,0.611472,0.03847,0.6616,0.351764,0.288159,0.659945,0.667731,0.786801,0.85919,0.155997,0.541249,0.0646964,0.628852,0.72933,0.904031,0.430987,0.77433,0.67219,0.466163,0.0710763,0.714788,0.274996,0.429345,0.124515,0.104771,0.853913,0.598936,0.147554,0.847283,0.309143,0.7196,0.341118,0.518951,0.148455,0.389242,0.144531,0.661867,0.683947,0.847065,0.178556,0.362471,0.252563,0.152385,0.0383497,0.775767,0.777634,0.95886,0.572215,0.31454,0.966715,0.166471,0.739099,0.0845932,0.583187,0.56087,0.703634,0.520482,0.217027,0.522357,0.72384,0.0102993,0.231195,0.177197,0.720728,0.873653,0.734382,0.881092,0.672621,0.837212,0.820055,0.4533,0.473411,0.456241,0.857433,0.417021,0.0845214,0.697319,0.0969995,0.357503,0.540652,0.63903,0.635662,0.261484,0.232979,0.281461,0.324551,0.570305,0.912618,0.573234,0.883069,0.973784,0.468988,0.218168,0.138865,0.362383,0.745183,0.316345,0.609976,0.592228,0.0208498,0.436395,0.93921,0.965332,0.898017,0.101241,0.0528264,0.688236,0.972692,0.372843,0.61127,0.732412,0.565293,0.0304001,0.992006,0.486217,0.595786,0.306013,0.017961,0.929348,0.0395698,0.296359,0.671443,0.27346,0.755848,0.823379,0.0515857,0.54163,0.881947,0.130357,0.756907,0.0549414,0.949715,0.968662,0.720056,0.0425283,0.629455,0.7809,0.495854,0.703753,0.141426,0.263106,0.809679,0.663804,0.448178,0.74769,0.392525,0.63909,0.690562,0.0942996,0.173237,0.498095,0.420369,0.60879,0.664715,0.518234,0.960921,0.544548,0.550133,0.0324146,0.611734,0.661592,0.0452547,0.37763,0.856599,0.188972,0.783351,0.687749,0.446951,0.877458,0.368352,0.188049,0.892147,0.27356,0.841668,0.30299,0.753339,0.559865,0.0543989,0.927695,0.242093,0.0747653,0.404646,0.995065,0.968709,0.500779,0.323241,0.926531,0.580783,0.213812,0.363943,0.931294,0.961568,0.295856,0.196277,0.559525,0.406246,0.595284,0.144761,0.283813,0.256517,0.116764,0.700001,0.699068,0.0636538,0.7404,0.572809,0.863518,0.953184,0.461079,0.0757791,0.634293,0.634846,0.638598,0.694704,0.956368,0.0209563,0.888465,0.996175,0.0610694,0.498116,0.585922,0.817151,0.141835,0.532701,0.513337,0.0214185,0.271414,0.57571,0.293523,0.456053,0.603943,0.897671,0.367327,0.00814337,0.462669,0.230374,0.708079,0.823391,0.350189,0.947787,0.0896417,0.51923,0.295267,0.381377,0.463116,0.553066,0.583618,0.308404,0.54856,0.837243,0.65172,0.822461,0.355922,0.879757,0.649634,0.505371,0.286747,0.691674,0.607479,0.375442,0.972295,0.609789,0.42871,0.70028,0.321505,0.751368,0.782521,0.677322,0.304075,0.596015,0.994728,0.220845,0.143345,0.767151,0.874661,0.381521,0.19604,0.0858178,0.842104,0.933507,0.161487,0.884053,0.519766,0.988472,0.293637,0.470471,0.913872,0.232159,0.274764,0.180287,0.542694,0.748402,0.601181,0.170319,0.691944,0.837473,0.580237,0.0979721,0.33177,0.517058,0.55654,0.972829,0.50235,0.760342,0.081386,0.860415,0.20748,0.0396284,0.669289,0.395265,0.636703,0.325803,0.542973,0.744194,0.334014,0.53476,0.922098,0.830045,0.227464,0.429452,0.492206,0.235115,0.864735,0.685747,0.941461,0.243746,0.26357,0.866576,0.630327,0.162935,0.007182,0.520068,0.876721,0.060837,0.970968,0.190278,0.906716,0.120873,0.839583,0.438092,0.709296,0.411937,0.0665132,0.579023,0.787492,0.914276,0.37978,0.292118,0.553494,0.867378,0.448185,0.957351,0.800554,0.524318,0.690547,0.384619,0.137285,0.810436,0.310072,0.0215394,0.244986,0.898276,0.12988,0.510873,0.375943,0.823459,0.199258,0.323789,0.14551,0.547988,0.347384,0.782534,0.328872,0.626074,0.277069,0.672534,0.558481,0.842024,0.562216,0.231702,0.944295,0.456927,0.186007,0.100437,0.383895,0.912922,0.464568,0.971438,0.769052,0.11491,0.858322,0.02592,0.416192,0.87509,0.713487,0.660472,0.408584,0.939998,0.14828,0.212891,0.844217,0.609607,0.814689,0.118914,0.239989,0.978574,0.105711,0.361862,0.208243,0.374482,0.727155,0.209084,0.0831773,0.0301489,0.653973,0.07393,0.879536,0.763942,0.229208,0.711323,0.131018,0.66116,0.38247,0.114507,0.426929,0.740048,0.272309,0.810506,0.493995,0.500705,0.574015,0.979985,0.3456,0.0472422,0.818768,0.199724,0.633232,0.573056,0.779174,0.598937,0.623898,0.999902,0.221475,0.248938,0.166409,0.482288,0.28271,0.673765,0.323526,0.648376,0.74654,0.749511,0.236005,0.324011,0.536905,0.980661,0.131425,0.875115,0.637313,0.7751,0.855422,0.180891,0.98695,0.107403,0.515987,0.406174,0.433874,0.0482038,0.381407,0.887807,0.684176,0.287225,0.452673,0.794086,0.24594,0.818629,0.315215,0.434754,0.0458717,0.175157,0.831418,0.0469132,0.578209,0.250858,0.270171,0.383383,0.0956918,0.0202082,0.666684,0.264937,0.656874,0.92812,0.615551,0.224341,0.3908,0.00342709,0.447023,0.603727,0.358421,0.208399,0.905623,0.345038,0.202447,0.853656,0.739162,0.0601259,0.511068,0.0830792,0.880603,0.900489,0.0465221,0.358909,0.0292062,0.937603,0.117823,0.15487,0.626479,0.894968,0.644328,0.933548,0.39698,0.686978,0.50418,0.629194,0.986471,0.903088,0.128161,0.602997,0.0660005,0.0464917,0.505183,0.489754,0.987476,0.544337,0.0192932,0.144099,0.991477,0.685358,0.428049,0.430098,0.276978,0.103157,0.644075,0.996589,0.804241,0.775331,0.672465,0.134035,0.358028,0.900249,0.0578009,0.437564,0.333495,0.51804,0.111608,0.339776,0.713576,0.761148,0.455494,0.901467,0.305577,0.112873,0.622913,0.261785,0.0145476,0.71925,0.799588,0.883467,0.775276,0.167332,0.599924,0.213797,0.917882,0.128446,0.871042,0.996457,0.481549,0.929991,0.164848,0.108233,0.42123,0.074919,0.419097,0.422307,0.8053,0.981152,0.131405,0.482802,0.148383,0.21744,0.875537,0.249166,0.579995,0.699871,0.873471,0.0465876,0.295944,0.874241,0.228752,0.566001,0.411049,0.556981,0.61561,0.39073,0.759777,0.89898,0.0381634,0.140512,0.654035,0.0612791,0.684828,0.443556,0.0209957,0.936415,0.982316,0.729853,0.158258,0.944712,0.56672,0.694897,0.184282,0.539168,0.595396,0.152016,0.0199429,0.900704,0.0891752,0.617482,0.768876,0.0455387,0.909874,0.971178,0.119433,0.552108,0.0452627,0.115193,0.0818902,0.0986028,0.476921,0.923902,0.975484,0.491452,0.451594,0.433873,0.348541,0.545761,0.268,0.856164,0.33904,0.148126,0.677968,0.746681,0.546346,0.447092,0.0506949,0.365654,0.602373,0.901986,0.446451,0.0964921,0.583868,0.476311,0.429294,0.112883,0.266794,0.97543,0.591932,0.360745,0.103183,0.848762,0.927463,0.202943,0.87719,0.689207,0.724104,0.249788,0.835126,0.243928,0.559889,0.394035,0.417857,0.565458,0.627225,0.119919,0.71678,0.214207,0.836303,0.670393,0.003133,0.748287,0.318552,0.789418,0.64434,0.444305,0.201816,0.123354,0.768187,0.818684,0.483526,0.596969,0.786209,0.415909,0.665515,0.886663,0.617349,0.971359,0.235951,0.533344,0.715506,0.0253602,0.370689,0.657114,0.985142,0.53789,0.254289,0.283136,0.227021,0.56767,0.792101,0.500639,0.676095,0.652019,0.62673,0.282724,0.254966,0.370824,0.782559,0.865944,0.0890311,0.884925,0.815836,0.228857,0.843864,0.174887,0.435515,0.77524,0.392812,0.682491,0.0496637,0.0855545,0.122797,0.0642401,0.656872,0.418551,0.794154,0.169579,0.74881,0.123931,0.372556,0.0152788,0.677035,0.664154,0.872111,0.987519,0.373682,0.0188007,0.0660362,0.20161,0.324023,0.0708788,0.178505,0.518545,0.0954297,0.0408242,0.32228,0.907371,0.384611,0.84702,0.298681,0.184453,0.0661888,0.610374,0.511649,0.990559,0.286215,0.0387445,0.379694,0.543307,0.824729,0.0489221,0.933852,0.675663,0.9108,0.666425,0.71369,0.366454,0.312774,0.120518,0.48377,0.908844,0.837204,0.417784,0.10598,0.33587,0.724197,0.759202,0.760754,0.980328,0.174672,0.263403,0.0357144,0.993282,0.699537,0.522206,0.697416,0.715755,0.791695,0.821385,0.35772,0.703813,0.287634,0.412207,0.784813,0.238712,0.285466,0.0978178,0.35009,0.755495,0.461665,0.726969,0.35438,0.36899,0.436193,0.970267,0.038783,0.452121,0.963588,0.893354,0.851294,0.668594,0.842634,0.894482,0.175034,0.0547454,0.454318,0.656465,0.763179,0.187618,0.84304,0.888812,0.626883,0.444983,0.566658,0.86751,0.895349,0.501907,0.434622,0.566658,0.976013,0.775162,0.629451,0.792006,0.360669,0.153949,0.0540471,0.942521,0.79788,0.317017,0.116157,0.408475,0.390729,0.515871,0.147499,0.456113,0.192489,0.285706,0.770133,0.633369,0.515072,0.940718,0.00511038,0.332685,0.604297,0.946353,0.414456,0.563056,0.720839,0.270457,0.251093,0.15247,0.0971975,0.26969,0.334458,0.853544,0.82374,0.103361,0.495128,0.16883,0.106155,0.881478,0.796741,0.0209658,0.764448,0.33155,0.157309,0.975538,0.496565,0.936709,0.926784,|0.875848,0.150617,0.551446,0.0860386,0.553863,0.286677,0.3202,0.047947,0.948392,0.37251,0.949527,0.988058,0.098461,0.236799,0.104515,0.107964,0.70449,0.885691,0.165342,0.261722,0.34245,0.978457,0.793109,0.583749,0.501192,0.0451502,0.873587,0.704283,0.415644,0.0430409,0.0914323,0.398834,0.0568886,0.79425,0.824789,0.426455,0.131253,0.51236,0.589307,0.137578,0.00831318,0.470103,0.0287646,0.314459,0.904299,0.01717,0.129952,0.316505,0.361248,0.92461,0.9863,0.19029,0.496573,0.437275,0.849015,0.698732,0.322676,0.40234,0.666076,0.245966,0.0329626,0.801717,0.447167,0.287031,0.584969,0.598608,0.283827,0.632613,0.141347,0.877374,0.570591,0.094502,0.582697,0.137847,0.575528,0.826188,0.43221,0.660637,0.48107,0.0569711,0.815891,0.915796,0.661041,0.291928,0.0345954,0.319205,0.519228,0.0191585,0.300601,0.136614,0.65525,0.828707,0.138228,0.254151,0.033705,0.300928,0.689096,0.358108,0.770743,0.541805,0.407984,0.955243,0.623433,0.153299,0.0997092,0.50785,0.614139,0.962443,0.961318,0.730305,0.51794,0.781687,0.829225,0.130153,0.895096,0.5643,0.780296,0.84285,0.6038,0.868503,0.206913,0.946544,0.396921,0.541683,0.400278,0.590132,0.503308,0.509531,0.355328,0.446439,0.422629,0.71174,0.705614,0.591214,0.517671,0.742539,0.839829,0.447641,0.611073,0.541344,0.309878,0.0747171,0.847427,0.638044,0.413647,0.0259796,0.355174,0.96159,0.605848,0.792141,0.637246,0.435594,0.173257,0.722669,0.659759,0.394781,0.801772,0.596255,0.498728,0.575876,0.67571,0.74715,0.631084,0.494631,0.400015,0.940478,0.1934,0.932185,0.240177,0.465938,0.514677,0.753162,0.0638351,0.615247,0.0701999,0.180078,0.587833,0.374773,0.385826,0.88189,0.823556,0.786069,0.88761,0.377549,0.23664,0.0421625,0.148263,0.573605,0.856752,0.220158,0.756995,0.594369,0.502208,0.084214,0.268853,0.679896,0.707721,0.801368,0.601447,0.292369,0.770292,0.35807,0.540575,0.671904,0.269953,0.478984,0.463976,0.370029,0.404787,0.75862,0.132753,0.0270677,0.32647,0.993415,0.951581,0.82881,0.657154,0.437513,0.988983,0.755008,0.0813306,0.694824,0.381219,0.905749,0.843851,0.627096,0.608326,0.885277,0.830202,0.674056,0.166351,0.629412,0.0678785,0.790156,0.415071,0.98861,0.249461,0.618083,0.755611,0.18811,0.740649,0.700108,0.765399,0.486122,0.905542,0.82963,0.172064,0.49893,0.807067,0.146345,0.488828,0.594244,0.801274,0.568912,0.893064,0.60357,0.693127,0.0130799,0.925099,0.531847,0.931378,0.681657,0.108278,0.310811,0.900139,0.353582,0.405481,0.654466,0.262571,0.338745,0.524576,0.917432,0.462178,0.87317,0.922076,0.815071,0.152744,0.345439,0.36404,0.688184,0.523057,0.472252,0.763017,0.380533,0.494074,0.923537,0.140113,0.437159,0.0438566,0.780372,0.370318,0.896559,0.0541817,0.441706,0.60025,0.0396672,0.882927,0.319496,0.208453,0.116765,0.86285,0.895389,0.16953,0.0555471,0.468188,0.697987,0.724624,0.502757,0.734633,0.432372,0.00322986,0.281485,0.415102,0.964514,0.494204,0.554063,0.572171,0.633486,0.529586,0.0986206,0.918655,0.415189,0.705076,0.998532,0.178414,0.34327,0.509403,0.62533,0.568987,0.0823229,0.982168,0.946963,0.844294,0.208497,0.648905,0.101723,0.277662,0.861937,0.572514,0.0894793,0.591606,0.150206,0.127415,0.332937,0.00514418,0.430378,0.0400754,0.413684,0.959202,0.928511,0.575956,0.440682,0.033755,0.0856145,0.464179,0.00125891,0.519005,0.108771,0.0186157,0.374323,0.382752,0.784384,0.0146571,0.473537,0.469499,0.679292,0.315011,0.1949,0.927189,0.990485,0.652561,0.787542,0.331881,0.896721,0.947903,0.815687,0.29091,0.180393,0.611225,0.506732,0.640752,0.707052,0.832444,0.219322,0.466814,0.470435,0.479869,0.0525412,0.988575,0.572809,0.891341,0.545126,0.37907,0.0414997,0.593163,0.19443,0.816696,0.616157,0.563903,0.571467,0.662539,0.372252,0.222878,0.925871,0.468782,0.157896,0.378292,0.927934,0.968993,0.922385,0.198486,0.268882,0.197345,0.897289,0.34393,0.625273,0.0427645,0.168923,0.769406,0.543129,0.260484,0.218857,0.782486,0.910856,0.341082,0.612807,0.929192,0.783296,0.653161,0.273092,0.735846,0.805851,0.727565,0.77995,0.132786,0.908567,0.0165697,0.090389,0.381543,0.713306,0.871534,0.454803,0.216579,0.149971,0.655686,0.638919,0.0624127,0.986541,0.500535,0.995251,0.472181,0.249655,0.208447,0.449417,0.100927,0.524894,0.412076,0.408049,0.811516,0.818431,0.695407,0.890951,0.593351,0.617661,0.0556085,0.601651,0.851829,0.198777,0.0273278,0.525867,0.56906,0.49949,0.0911328,0.264146,0.357973,0.791646,0.849132,0.24563,0.130246,0.132002,0.196685,0.339635,0.298382,0.366492,0.745637,0.18669,0.913937,0.32339,0.552328,0.615099,0.445843,0.470587,0.107448,0.884446,0.927717,0.24061,0.474257,0.315231,0.588496,0.852055,0.915433,0.168564,0.836076,0.312959,0.786844,0.963054,0.44622,0.0298653,0.0999552,0.453309,0.173925,0.861861,0.383308,0.590225,0.811865,0.854157,0.443917,0.442146,0.846325,0.0243618,0.84824,0.3066,0.788155,0.489266,0.327645,0.547279,0.543999,0.875492,0.679425,0.0401827,0.993516,0.822538,0.668535,0.661738,0.489567,0.0349904,0.770598,0.935517,0.935186,0.467802,0.620347,0.171557,0.295056,0.95582,0.410998,0.891658,0.142792,0.422504,0.297939,0.317643,0.83919,0.480517,0.157216,0.02751,0.0981746,0.698917,0.177061,0.588094,0.993736,0.387269,0.343071,0.540309,0.301286,0.010399,0.310455,0.394493,0.17815,0.902701,0.915514,0.154162,0.418148,0.618378,0.477846,0.0224936,0.258177,0.353595,0.265973,0.600397,0.0807069,0.718721,0.626862,0.833132,0.158836,0.203128,0.492009,0.0852324,0.12578,0.583592,0.959692,0.806798,0.24168,0.298047,0.469481,0.649118,0.56779,0.823901,0.409816,0.866821,0.815743,0.34343,0.539854,0.0177842,0.229034,0.0893913,0.957341,0.135998,0.706588,0.814024,0.765294,0.089565,0.150686,0.170653,0.776365,0.997035,0.0502846,0.831842,0.78752,0.0921986,0.903776,0.377429,0.149933,0.177957,0.620203,0.0990479,0.226562,0.396902,0.647407,0.251107,0.883299,0.886007,0.650429,0.815047,0.876768,0.477392,0.662173,0.0199898,0.212136,0.420676,0.0619381,0.976687,0.647409,0.56389,0.24345,0.203634,0.10327,0.180679,0.726342,0.120289,0.6212,0.858775,0.563781,0.609657,0.560513,0.352141,0.281678,0.406177,0.500941,0.930738,0.973079,0.475888,0.232469,0.767979,0.838359,0.701041,0.00918859,0.645316,0.474741,0.69081,0.775091,0.633769,0.620277,0.359331,0.123069,0.936552,0.113658,0.423571,0.645715,0.87345,0.829732,0.950962,0.982323,0.572627,0.904719,0.0936351,0.272207,0.614637,0.142887,0.985822,0.864572,0.687124,0.758489,0.123739,0.946346,0.100336,0.845665,0.548019,0.474106,0.102789,0.948636,0.202531,0.227926,0.991553,0.00902981,0.662174,0.61731,0.761635,0.175873,0.174719,0.220195,0.547712,0.226234,0.450401,0.856505,0.444838,0.378768,0.338647,0.979099,0.176367,0.545618,0.067949,0.817817,0.24271,0.125868,0.0138069,0.373124,0.870702,0.563528,0.780332,0.912873,0.0577393,0.854444,0.649327,0.484268,0.00739735,0.438488,0.654108,0.917096,0.322296,0.729554,0.985849,0.161813,0.956189,0.432413,0.160093,0.616999,0.661734,0.859656,0.720226,0.803175,0.0019384,0.160319,0.480279,0.24455,0.315322,0.547663,0.794792,0.0754145,0.344972,0.164621,0.815932,0.960052,0.56827,0.496076,0.99175,0.279929,0.873632,0.85038,0.479608,0.369603,0.113105,0.345114,0.610726,0.526515,0.382062,0.510262,0.429756,0.435235,0.793024,0.0459837,0.641664,0.647621,0.0681564,0.898184,0.159333,0.826378,0.60127,0.907935,0.0950927,0.519858,0.603004,0.479328,0.937547,0.801213,0.429982,0.430087,0.831398,0.00955117,0.0531971,0.962219,0.315904,0.333466,0.906781,0.468149,0.361452,0.255288,0.303837,0.822399,0.407255,0.726621,0.41583,0.639656,0.449177,0.221911,0.323298,0.434979,0.243146,0.849902,0.21688,0.400956,0.806781,0.885478,0.761791,0.0897149,0.241378,0.585035,0.502264,0.913286,0.810567,0.179168,0.643162,0.30972,0.925308,0.223479,0.897751,0.293698,0.0699861,0.470002,0.0939102,0.205288,0.0342213,0.172322,0.363739,0.0182559,0.314289,0.558141,0.986841,0.580553,0.187183,0.0517011,0.200321,0.245866,0.154678,0.0741595,0.520854,0.166596,0.393793,0.764598,0.163782,0.486429,0.912106,0.485016,0.477365,0.884761,0.414026,0.25003,0.634663,0.636542,0.017474,0.905185,0.227158,0.427976,0.405114,0.424547,0.715743,0.412929,0.648057,0.971986,0.197248,0.650367,0.380086,0.410961,0.331459,0.52991,0.103438,0.202967,0.761514,0.248172,0.495426,0.693392,0.818412,0.268494,0.00710553,0.445417,0.835378,0.85763,0.431513,0.160617,0.196738,0.634947,0.505509,0.0684639,0.255565,0.634339,0.593674,0.993507,0.571157,0.466605,0.700407,0.0827968,0.294386,0.591187,0.640436,0.473597,0.0610777,0.579857,0.375898,0.0727657,0.62246,0.127699,0.0615037,0.359338,0.604729,0.989577,0.476438,0.760932,0.075914,0.712447,0.583793,0.397407,0.982585,0.659805,0.351593,0.0448276,0.00709832,0.978193,0.250177,0.351781,0.805522,0.953263,0.814247,0.153629,0.857579,0.996944,0.136163,0.843649,0.685191,0.928891,0.365456,0.690428,0.704433,0.413803,0.28235,0.498645,0.2204,0.938833,0.746212,0.337591,0.925066,0.717007,0.68227,0.108614,0.369161,0.633971,0.22303,0.182119,0.940173,0.767448,0.0700648,0.723174,0.983951,0.57896,0.356556,0.720929,0.400113,0.270438,0.899371,0.0666168,0.810624,0.791063,0.430665,0.590175,0.173215,0.930891,0.107364,0.138377,0.562718,0.877348,0.971557,0.333195,0.446577,0.593508,0.0275347,0.633642,0.707343,0.363586,0.606173,0.841259,0.684744,0.303316,0.993148,|0.398094,0.240788,0.527543,0.581941,0.222531,0.591381,0.229658,0.932277,0.8273,0.581235,0.438824,0.0883361,0.328606,0.308047,0.731935,0.43395,0.933515,0.388209,0.259739,0.633874,0.103687,0.540231,0.9744,0.00826305,0.917303,0.678481,0.406945,0.522782,0.678713,0.639298,0.167367,0.747377,0.643401,0.684191,0.340874,0.385136,0.348513,0.633729,0.212466,0.806954,0.214188,0.906412,0.183464,0.949676,0.732172,0.857939,0.436428,0.308323,0.163731,0.100251,0.668495,0.500082,0.122245,0.721341,0.880506,0.964539,0.0226989,0.981913,0.324641,0.842315,0.120323,0.0570704,0.196175,0.505344,0.382413,0.29617,0.847079,0.892349,0.848371,0.608534,0.912433,0.774654,0.481085,0.933043,0.050393,0.808698,0.860058,0.444883,0.482888,0.121429,0.36149,0.267692,0.997601,0.39106,0.185372,0.0584934,0.0508131,0.224186,0.362654,0.920216,0.80131,0.343838,0.905978,0.943197,0.0388235,0.888934,0.83296,0.874013,0.0285501,0.0816818,0.375237,0.935294,0.263867,0.632314,0.606738,0.327474,0.957329,0.110733,0.210238,0.311345,0.699334,0.610355,0.307303,0.252022,0.354589,0.0791761,0.0783912,0.262025,0.684166,0.534746,0.781502,0.247694,0.797032,0.0471761,0.635204,0.0822743,0.342269,0.373769,0.553424,0.958356,0.700382,0.656764,0.205146,0.781367,0.608581,0.219581,0.236373,0.479526,0.989225,0.548356,0.727361,0.779275,0.865516,0.961537,0.657431,0.908078,0.512682,0.145591,0.43653,0.880591,0.256846,0.81813,0.128147,0.96404,0.810167,0.754375,0.698066,0.656713,0.00526452,0.287593,0.0586477,0.547795,0.0414026,0.609571,0.82905,0.37036,0.0796212,0.861059,0.708002,0.810193,0.358796,0.380995,0.45076,0.188343,0.723087,0.722887,0.0890281,0.0026508,0.947915,0.762818,0.699354,0.749481,0.744134,0.796171,0.870533,0.805297,0.408323,0.0487517,0.894395,0.507231,4.9293e-05,0.668801,0.910184,0.333133,0.746602,0.280548,0.626622,0.695442,0.879059,0.837623,0.849309,0.215326,0.769217,0.0118849,0.663921,0.842351,0.126167,0.360684,0.692601,0.0194286,0.706316,0.302585,0.705463,0.404344,0.814823,0.584304,0.209337,0.122015,0.206511,0.48936,0.867534,0.173148,0.516164,0.976127,0.0185015,0.312362,0.0878685,0.979918,0.626457,0.159577,0.288252,0.430088,0.546094,0.0459282,0.0991924,0.466078,0.289975,0.514816,0.00866354,0.458502,0.599159,0.830641,0.723914,0.370179,0.377236,0.985525,0.806056,0.419339,0.7261,0.943025,0.497177,0.372264,0.65538,0.223497,0.547338,0.389405,0.2443,0.232255,0.848026,0.838281,0.881887,0.976634,0.916045,0.193101,0.240081,0.508683,0.323107,0.114185,0.521913,0.000440955,0.171459,0.621116,0.833122,0.946142,0.541086,0.74546,0.723832,0.13669,0.480682,0.121207,0.730228,0.709755,0.935673,0.144683,0.209051,0.0899901,0.779988,0.371346,0.727782,0.24343,0.603638,0.399856,0.492464,0.37857,0.0277448,0.789941,0.29044,0.749043,0.545416,0.736848,0.884315,0.971187,0.99552,0.85858,0.0280776,0.933232,0.151838,0.352412,0.462492,0.210097,0.696284,0.411044,0.247225,0.643307,0.340502,0.232135,0.85101,0.482369,0.873462,0.166741,0.355719,0.712822,0.685733,0.822278,0.966454,0.793516,0.198196,0.782293,0.89625,0.746287,0.580284,0.589521,0.962166,0.984254,0.927952,0.171063,0.0616801,0.702514,0.363378,0.150521,0.0875176,0.841266,0.959949,0.858506,0.908369,0.710945,0.507105,0.358132,0.59432,0.269747,0.900814,0.00396955,0.223641,0.457315,0.388009,0.645959,0.793157,0.729114,0.140717,0.220328,0.974959,0.710572,0.783743,0.0476111,0.89219,0.404834,0.375425,0.215088,0.93155,0.486265,0.953362,0.355694,0.74403,0.827174,0.524417,0.995669,0.717363,0.655336,0.563639,0.0175336,0.231107,0.490934,0.478239,0.651202,0.514711,0.291668,0.127672,0.181765,0.474567,0.956141,0.267803,0.673013,0.203989,0.836169,0.136975,0.661074,0.267907,0.557371,0.641411,0.953876,0.252493,0.731134,0.584385,0.00761259,0.118165,0.707647,0.355503,0.478451,0.0586803,0.45469,0.858532,0.675937,0.759093,0.0282106,0.278767,0.811306,0.116541,0.761149,0.0686012,0.102152,0.768521,0.745417,0.793789,0.777648,0.452085,0.750584,0.173692,0.227301,0.279772,0.0961919,0.0157982,0.919222,0.518245,0.874362,0.171288,0.801319,0.472413,0.55945,0.985316,0.217055,0.588992,0.525109,0.883536,0.787099,0.319703,0.798701,0.323938,0.822883,0.677021,0.542817,0.723383,0.478893,0.631319,0.505293,0.934199,0.159758,0.609062,0.354077,0.866112,0.507487,0.569422,0.653111,0.916938,0.889712,0.711848,0.556308,0.485029,0.671855,0.620343,0.836083,0.241885,0.840104,0.335586,0.44921,0.572507,0.888759,0.529376,0.794193,0.796409,0.612147,0.888987,0.670445,0.944486,0.0525209,0.103973,0.988837,0.279322,0.198128,0.582424,0.165138,0.178058,0.0424641,0.201667,0.0495613,0.129246,0.0888393,0.985415,0.326336,0.999133,0.753274,0.60536,0.612053,0.278325,0.626799,0.919938,0.713118,0.28459,0.682403,0.410911,0.473917,0.950961,0.207222,0.507467,0.219859,0.635409,0.59777,0.0130344,0.0679799,0.217067,0.0978515,0.0481268,0.672132,0.0318399,0.922116,0.917339,0.402361,0.191241,0.508531,0.17201,0.359501,0.369798,0.162195,0.406996,0.609679,0.884145,0.751376,0.301309,0.593987,0.498668,0.940446,0.531379,0.887341,0.198435,0.80707,0.736883,0.742425,0.421905,0.770416,0.454453,0.451264,0.552171,0.142757,0.521918,0.939866,0.274911,0.522533,0.164529,0.574134,0.229262,0.56629,0.629319,0.0473269,0.709225,0.317059,0.851082,0.0482187,0.22,0.896508,0.406161,0.883021,0.939515,0.0103763,0.915032,0.650412,0.128981,0.549655,0.846975,0.00502557,0.791246,0.303933,0.432035,0.986754,0.135035,0.840884,0.430937,0.680353,0.706484,0.0359223,0.212315,0.0508742,0.253634,0.900417,0.19255,0.536472,0.659108,0.994886,0.836336,0.682856,0.613195,0.186201,0.503819,0.199198,0.20484,0.175845,0.0398848,0.937315,0.553271,0.693915,0.92393,0.806281,0.00134957,0.590855,0.132055,0.819167,0.816722,0.303903,0.403617,0.111313,0.215479,0.960005,0.343558,0.15145,0.0223753,0.312083,0.47929,0.44709,0.262804,0.924424,0.451281,0.292061,0.574252,0.464513,0.0241039,0.0767987,0.951635,0.428754,0.993629,0.78553,0.0863011,0.624444,0.543088,0.363622,0.493773,0.35647,0.1803,0.101995,0.834892,0.385519,0.675911,0.168241,0.527118,0.823947,0.923227,0.225949,0.642025,0.937328,0.498444,0.510402,0.0386222,0.434905,0.721315,0.632981,0.872082,0.229739,0.185369,0.172411,0.145609,0.222446,0.0447643,0.473849,0.554026,0.998881,0.0228492,0.0625308,0.954685,0.4255,0.859769,0.364676,0.589681,0.590353,0.621535,0.0276489,0.853222,0.729334,0.866808,0.414346,0.15272,0.19393,0.285438,0.818531,0.638711,0.145702,0.577724,0.944314,0.951489,0.201166,0.867848,0.51103,0.236167,0.389213,0.119303,0.612581,0.811974,0.889681,0.464654,0.00895989,0.359807,0.466355,0.751761,0.279357,0.305365,0.896476,0.205264,0.603834,0.715816,0.199505,0.652971,0.181301,0.948913,0.526533,0.65609,0.983245,0.982936,0.883265,0.0816086,0.339837,0.493327,0.877868,0.0388821,0.342082,0.980645,0.585323,0.211123,0.941592,0.0324184,0.831963,0.747699,0.462794,0.452546,0.831516,0.609576,0.0348658,0.527005,0.580727,0.861131,0.174203,0.607209,0.598745,0.182978,0.636907,0.665201,0.986604,0.0487958,0.558828,0.810694,0.275865,0.500123,0.132555,0.791614,0.855531,0.654895,0.442296,0.961798,0.748375,0.0946398,0.529673,0.558699,0.0907298,0.432252,0.9566,0.835639,0.142672,0.797071,0.949206,0.517929,0.522517,0.441714,0.818794,0.35516,0.2663,0.774979,0.47016,0.470338,0.937726,0.221509,0.277596,0.0837591,0.814811,0.364232,0.280358,0.862039,0.952995,0.895019,0.721974,0.48777,0.146345,0.526173,0.65559,0.771344,0.263655,0.214914,0.695212,0.560921,0.53259,0.810749,0.192686,0.0573447,0.0587353,0.439619,0.0841371,0.836926,0.627457,0.789726,0.769768,0.230562,0.627987,0.182053,0.690434,0.810576,0.739197,0.343632,0.769605,0.695315,0.942776,0.662903,0.502814,0.503103,0.0168949,0.298029,0.858721,0.534239,0.694231,0.330249,0.855474,0.117256,0.594988,0.674707,0.687572,0.260753,0.151278,0.750723,0.810676,0.820477,0.579267,0.616879,0.99948,0.356263,0.240958,0.478514,0.223257,0.773272,0.293588,0.460062,0.351141,0.901451,0.208647,0.356096,0.782181,0.686049,0.545456,0.728839,0.180896,0.445811,0.240342,0.264454,0.652581,0.129045,0.702301,0.752202,0.728763,0.2052,0.626458,0.161356,0.637843,0.876314,0.586486,0.269254,0.092801,0.221484,0.0485057,0.397653,0.770425,0.91739,0.614219,0.215221,0.619978,0.275768,0.944315,0.245106,0.883985,0.374596,0.0390022,0.871842,0.508057,0.667764,0.483136,0.669154,0.469134,0.53096,0.0257612,0.349428,0.816119,0.668649,0.277804,0.505437,0.827419,0.11987,0.984893,0.554721,0.415986,0.00437617,0.886286,0.266999,0.678375,0.634888,0.915208,0.983666,0.0620261,0.0932067,0.577805,0.837186,0.51411,0.86246,0.607852,0.736548,0.449043,0.245125,0.723172,0.629382,0.132455,0.0561736,0.692324,0.158459,0.497993,0.42444,0.911816,0.375319,0.570698,0.447484,0.409415,0.858143,0.104409,0.498755,0.942733,0.16121,0.363045,0.736326,0.14701,0.114776,0.157534,0.0403187,0.229816,0.0365484,0.495444,0.519405,0.89795,0.894096,0.618466,0.498616,0.283546,0.15105,0.0938395,0.606339,0.79689,0.295796,0.384194,0.228836,0.229107,0.1445,0.639002,0.157904,0.534635,0.161751,0.593313,0.301625,0.508753,0.853768,0.403392,0.959048,0.0205325,0.746112,0.310927,0.639267,0.659267,0.316958,0.790949,0.758942,0.905318,0.327185,0.135375,0.597225,0.52838,0.421346,0.081388,0.240667,0.486144,0.0561181,0.0519851,0.21741,0.128436,|0.675596,0.562995,0.282388,0.90512,0.426513,0.729203,0.270699,0.811352,0.125088,0.445451,0.204882,0.173587,0.368465,0.880676,0.297911,0.706163,0.152098,0.220859,0.912496,0.725412,0.706506,0.364051,0.7199,0.760952,0.393981,0.204241,0.820875,0.78296,0.540944,0.0437474,0.110855,0.00461781,0.269563,0.021496,0.976062,0.268972,0.183649,0.582939,0.745221,0.103215,0.113454,0.576525,0.107195,0.0820392,0.930411,0.0447597,0.862191,0.213511,0.963121,0.758764,0.249863,0.646294,0.910097,0.678065,0.714589,0.801856,0.347629,0.584418,0.53974,0.0742612,0.830324,0.293288,0.66199,0.728093,0.497512,0.407843,0.43434,0.662359,0.879435,0.0189067,0.275166,0.955536,0.290468,0.647918,0.731683,0.0782034,0.905246,0.0681867,0.562155,0.893749,0.0377873,0.815595,0.778628,0.221094,0.220552,0.495241,0.4495,0.716706,0.269161,0.807382,0.0862731,0.604151,0.543586,0.458222,0.368323,0.92013,0.953929,0.740513,0.377267,0.356403,0.0846617,0.721175,0.347838,0.632407,0.746664,0.817376,0.254706,0.837391,0.403556,0.817534,0.0846531,0.0669675,0.290926,0.34583,0.294929,0.907502,0.0833902,0.577761,0.970404,0.389372,0.328821,0.249123,0.860353,0.685302,0.653607,0.165918,0.386562,0.578876,0.902523,0.393141,0.697477,0.466862,0.894146,0.95955,0.163194,0.277577,0.3975,0.295053,0.947561,0.395934,0.732542,0.6971,0.0195309,0.0260852,0.0575013,0.878602,0.419121,0.936161,0.949648,0.779481,0.787131,0.647739,0.380662,0.0887746,0.465685,0.760647,0.215592,0.477762,0.000141263,0.915008,0.0507594,0.106314,0.80594,0.0847212,0.131074,0.102155,0.587669,0.38472,0.856843,0.0448973,0.688713,0.41412,0.459392,0.569035,0.865471,0.885703,0.737244,0.136477,0.371688,0.673127,0.891428,0.863246,0.540249,0.856988,0.508557,0.370215,0.538326,0.315351,0.802933,0.567162,0.563394,0.173646,0.45601,0.0310564,0.962282,0.678323,0.786066,0.00277722,0.946795,0.700157,0.58818,0.651948,0.75266,0.947248,0.49478,0.598717,0.450226,0.979704,0.726343,0.93882,0.296619,0.160192,0.800444,0.14145,0.0364084,0.895771,0.971695,0.591539,0.439265,0.494599,0.907876,0.480402,0.324336,0.127609,0.0843918,0.21434,0.778294,0.355039,0.764943,0.0748404,0.664634,0.41779,0.150671,0.151702,0.296684,0.51529,0.503346,0.649582,0.450035,0.876796,0.0493385,0.647255,0.373414,0.209529,0.806203,0.843207,0.800507,0.875314,0.806353,0.216214,0.275498,0.108886,0.430912,0.145476,0.177672,0.811899,0.0310309,0.363309,0.445329,0.282912,0.447776,0.811969,0.809905,0.468662,0.703781,0.758351,0.334608,0.560478,0.797488,0.136455,0.321305,0.948597,0.52774,0.885949,0.259033,0.254809,0.295744,0.530649,0.806774,0.752101,0.168676,0.693891,0.609676,0.0620315,0.127324,0.694583,0.908714,0.901911,0.356407,0.737238,0.848521,0.612051,0.825032,0.0765558,0.376172,0.0984116,0.870984,0.217063,0.255363,0.0664908,0.430146,0.0987439,0.219483,0.510956,0.917968,0.869856,0.0091148,0.434091,0.482199,0.158937,0.137887,0.84989,0.956023,0.0094102,0.831861,0.445325,0.364719,0.684411,0.810342,0.544555,0.908127,0.299219,0.63535,0.58749,0.925107,0.164882,0.170735,0.149236,0.669509,0.909161,0.740856,0.605347,0.127545,0.167684,0.890567,0.779528,0.353373,0.426838,0.845248,0.569633,0.888894,0.476177,0.535381,0.507077,0.373646,0.585749,0.553234,0.534938,0.516805,0.204784,0.458586,0.441445,0.928989,0.588336,0.266254,0.852062,0.336763,0.0585199,0.215984,0.72308,0.564419,0.400258,0.920005,0.57483,0.171076,0.747821,0.504684,0.458062,0.273629,0.261175,0.617471,0.227433,0.125792,0.988914,0.368433,0.69463,0.740175,0.704072,0.642152,0.432008,0.258071,0.116349,0.525584,0.561182,0.850949,0.0771883,0.555448,0.0446597,0.768516,0.444751,0.970056,0.324879,0.18708,0.683086,0.7679,0.514848,0.968494,0.858121,0.494096,0.997529,0.852514,0.0439276,0.438228,0.495498,0.562269,0.991487,0.846615,0.988794,0.00556511,0.460942,0.150683,0.674118,0.457298,0.741233,0.267919,0.452831,0.93197,0.725356,0.904151,0.954051,0.020828,0.433355,0.723474,0.829742,0.530194,0.792411,0.859504,0.752365,0.775315,0.30555,0.800669,0.162713,0.00890356,0.497083,0.84235,0.46541,0.0751901,0.0560632,0.241827,0.475582,0.785449,0.252418,0.895044,0.922602,0.559246,0.805393,0.301588,0.233297,0.058655,0.320821,0.624529,0.476199,0.666842,0.447309,0.633424,0.0493786,0.397598,0.193419,0.958179,0.261178,0.961767,0.74282,0.780325,0.834053,0.946865,0.417738,0.600859,0.148063,0.176452,0.786513,0.169722,0.737979,0.192631,0.945114,0.122866,0.963591,0.174165,0.130967,0.908906,0.414621,0.0429901,0.617075,0.300911,0.491958,0.566431,0.365488,0.60695,0.0168435,0.663627,0.185856,0.100581,0.78422,0.433641,0.911243,0.062387,0.0455138,0.625881,0.919462,0.420225,0.151417,0.18206,0.134025,0.09139,0.347318,0.88219,0.44,0.0549806,0.175171,0.0980762,0.343245,0.0518997,0.75465,0.963475,0.977864,0.329607,0.327809,0.668458,0.585776,0.0031023,0.622069,0.468303,0.557122,0.82809,0.649608,0.194475,0.389165,0.216752,0.730353,0.684077,0.133881,0.0583463,0.248696,0.805716,0.320134,0.176963,0.0621378,0.123509,0.358256,0.197357,0.700066,0.19854,0.802436,0.403038,0.98184,0.438589,0.861322,0.389147,0.164168,0.239679,0.215427,0.139823,0.658206,0.0707952,0.85872,0.609798,0.317975,0.0924017,0.629402,0.34709,0.963967,0.109358,0.475181,0.295829,0.274481,0.275219,0.114411,0.706406,0.00601226,0.725229,0.604919,0.0930714,0.683951,0.0231726,0.978143,0.629092,0.678008,0.467762,0.889923,0.353031,0.913342,0.277978,0.538166,0.858218,0.733676,0.0989674,0.947327,0.381966,0.405659,0.898945,0.887625,0.227562,0.97759,0.80968,0.0265561,0.0484959,0.784788,0.832769,0.0333125,0.650705,0.00529414,0.234434,0.0501056,0.27689,0.91907,0.15977,0.197351,0.826466,0.827193,0.863632,0.295573,0.252319,0.639623,0.197742,0.741156,0.0960786,0.88994,0.776873,0.437615,0.672686,0.186481,0.626524,0.834179,0.688582,0.81237,0.64437,0.32107,0.700339,0.889437,0.815546,0.62414,0.0877601,0.744602,0.536644,0.204836,0.100407,0.986082,0.917413,0.373513,0.868575,0.472119,0.607611,0.450129,0.664744,0.828986,0.0944918,0.0223526,0.289473,0.867727,0.56417,0.46539,0.499195,0.702459,0.452495,0.344668,0.727097,0.237157,0.588226,0.589563,0.551095,0.511531,0.150838,0.750283,0.173933,0.815515,0.126101,0.356628,0.605894,0.0890237,0.843011,0.94102,0.250433,0.222238,0.695135,0.517536,0.973333,0.271188,0.724543,0.889369,0.300798,0.476707,0.675434,0.70166,0.712309,0.137198,0.750773,0.6017,0.4558,0.788975,0.18369,0.566025,0.270241,0.692435,0.831842,0.384752,0.926903,0.981865,0.785689,0.855566,0.0882825,0.0389035,0.0815676,0.52813,0.71865,0.113194,0.708669,0.355108,0.565952,0.857499,0.891003,0.229755,0.379834,0.0315138,0.976377,0.985239,0.695685,0.227199,0.620305,0.738843,0.569827,0.497366,0.509235,0.461058,0.776687,0.922017,0.401713,0.157489,0.418038,0.649237,0.594864,0.940379,0.300038,0.741082,0.11463,0.730271,0.59175,0.345317,0.220853,0.167848,0.620516,0.586549,0.292204,0.136268,0.69713,0.521732,0.936339,0.879062,0.961549,0.327179,0.603413,0.417493,0.58555,0.650964,0.278234,0.637257,0.627346,0.204558,0.174043,0.430364,0.111561,0.514015,0.792664,0.60032,0.348845,0.222744,0.919616,0.473992,0.0188525,0.31176,0.55632,0.804986,0.548489,0.601826,0.7801,0.950066,0.165181,0.83222,0.305106,0.0901454,0.121188,0.103588,0.993024,0.861161,0.774568,0.928279,0.664319,0.124267,0.573557,0.603652,0.922662,0.785413,0.00391525,0.547925,0.360736,0.81514,0.256559,0.311379,0.22799,0.767163,0.0884455,0.0775027,0.611337,0.64841,0.222629,0.130469,0.381843,0.4099,0.997291,0.230097,0.596346,0.474138,0.961348,0.330183,0.754659,0.994196,0.858645,0.107309,0.987425,0.771378,0.753285,0.0553148,0.754175,0.897696,0.833955,0.187204,0.728236,0.162371,0.749733,0.0901267,0.674943,0.696033,0.118826,0.693601,0.197211,0.635529,0.689218,0.177514,0.20977,0.489663,0.498057,0.0864067,0.839076,0.550057,0.148001,0.0339689,0.90473,0.764729,0.685111,0.852315,0.0229527,0.115852,0.516479,0.584825,0.843926,0.403137,0.733031,0.433157,0.0845557,0.878105,0.973631,0.0220767,0.161731,0.0333298,0.286894,0.354956,0.736463,0.620309,0.893115,0.395882,0.392419,0.945991,0.784963,0.481864,0.76205,0.37815,0.993102,0.441829,0.924427,0.924562,0.990127,0.455878,0.176753,0.617158,0.908006,0.269191,0.549127,0.491239,0.678474,0.247392,0.034148,0.462232,0.957656,0.677718,0.867451,0.694682,0.907453,0.165586,0.339613,0.0422332,0.971389,0.666888,0.468216,0.447621,0.0375844,0.579579,0.170153,0.355312,0.0125303,0.821112,0.514718,0.0857293,0.881378,0.069356,0.0414266,0.673059,0.89224,0.409795,0.89674,0.48845,0.32481,0.582618,0.481566,0.0433165,0.103635,0.829442,0.130317,0.510894,0.645001,0.827752,0.784137,0.510009,0.902284,0.344588,0.224949,0.175129,0.849062,0.23367,0.129233,0.132918,0.0858288,0.997609,0.226078,0.936219,0.62132,0.657088,0.137571,0.881285,0.792155,0.287585,0.374671,0.936258,0.976895,0.137389,0.571087,0.780418,0.449352,0.86737,0.222609,0.0775654,0.598384,0.902943,0.705499,0.334287,0.463971,0.735693,0.922395,0.421941,0.366546,0.271961,0.245405,0.79681,0.945254,0.493526,0.822758,0.29898,0.765227,0.104465,0.930062,0.776155,0.0599878,0.649241,0.399478,0.784841,0.506429,0.0325241,0.283565,0.222751,0.3036,0.36383,0.671846,0.276642,0.936353,0.753654,0.248928,0.709373,0.454411,0.211499,0.627731,0.0894548,0.6632,0.64123,|0.372417,0.1933,0.680128,0.785613,0.853438,0.578375,0.539583,0.893794,0.173954,0.253978,0.877843,0.760123,0.660065,0.261229,0.447037,0.0431511,0.827091,0.301184,0.453461,0.104648,0.346427,0.0192605,0.556103,0.0885518,0.722399,0.420389,0.420941,0.415944,0.0198469,0.894764,0.907562,0.459509,0.526251,0.728125,0.995229,0.964562,0.391133,0.161538,0.943882,0.635009,0.398403,0.348731,0.879086,0.51235,0.479769,0.610626,0.237497,0.441547,0.735773,0.67645,0.0953452,0.839742,0.788836,0.281324,0.734807,0.735015,0.379862,0.317085,0.703485,0.148379,0.626432,0.369559,0.255944,0.222191,0.443623,0.494659,0.177085,0.502759,0.99414,0.90304,0.318757,0.791415,0.912689,0.113597,0.944891,0.582684,0.338277,0.862782,0.3264,0.171165,0.848381,0.797725,0.483597,0.226118,0.201605,0.284238,0.776796,0.750178,0.537722,0.0346577,0.363224,0.338763,0.104198,0.905343,0.346169,0.211945,0.576909,0.795223,0.976774,0.479817,0.750671,0.0738624,0.757103,0.0511144,0.860384,0.161016,0.57518,0.359704,0.22273,0.94092,0.252493,0.133607,0.140579,0.545553,0.896293,0.754833,0.246588,0.466045,0.736846,0.292006,0.546851,0.432836,0.867066,0.836866,0.711027,0.55509,0.380025,0.13764,0.628927,0.568854,0.942334,0.497964,0.441978,0.0943291,0.204637,0.611234,0.859691,0.251948,0.0874817,0.0442261,0.999115,0.365418,0.437043,0.995308,0.677936,0.879567,0.46264,0.736783,0.893202,0.548839,0.645865,0.37318,0.386755,0.327638,0.597665,0.367996,0.356749,0.0578555,0.730235,0.969466,0.444757,0.244727,0.667182,0.738073,0.0722427,0.954909,0.871381,0.0456138,0.352057,0.0037142,0.53477,0.38495,0.427695,0.0363513,0.0275952,0.0841749,0.582723,0.784885,0.757732,0.247045,0.142005,0.653004,0.976998,0.420161,0.803506,0.16915,0.519859,0.731675,0.951601,0.527482,0.185149,0.132718,0.542487,0.983722,0.451908,0.699321,0.774458,0.784497,0.054613,0.971556,0.539583,0.679723,0.705571,0.497268,0.978286,0.850399,0.405579,0.512014,0.557719,0.466533,0.895001,0.530726,0.576371,0.956995,0.438829,0.433938,0.814836,0.67893,0.881996,0.285427,0.49753,0.154274,0.792199,0.78774,0.656122,0.366441,0.834739,0.471016,0.516417,0.778018,0.223827,0.288576,0.133944,0.108704,0.490149,0.354436,0.602628,0.898151,0.21464,0.94024,0.0208556,0.296279,0.668207,0.623165,0.40651,0.695971,0.478538,0.977199,0.870883,0.697339,0.124385,0.937398,0.380232,0.657969,0.338635,0.113848,0.332181,0.444845,0.663356,0.949726,0.0709125,0.404132,0.900625,0.201881,0.595807,0.735907,0.906932,0.197865,0.285835,0.416071,0.868154,0.286108,0.545764,0.506549,0.804232,0.63172,0.585085,0.63077,0.98036,0.859767,0.898805,0.697516,0.630459,0.731927,0.804029,0.95335,0.594427,0.180598,0.702171,0.506728,0.963644,0.64584,0.762491,0.532156,0.0552257,0.0118876,0.819545,0.405423,0.639478,0.867501,0.347654,0.0709263,0.233726,0.024835,0.0250555,0.0392892,0.914206,0.23986,0.835947,0.071583,0.57437,0.850778,0.566916,0.167182,0.898918,0.234126,0.0220314,0.314256,0.0950577,0.192711,0.298429,0.662064,0.0320207,0.593453,0.586437,0.855318,0.174259,0.490913,0.916039,0.0972528,0.433145,0.387417,0.236751,0.0950371,0.829766,0.288216,0.269467,0.448787,0.45907,0.414076,0.348092,0.0352187,0.730707,0.89936,0.512847,0.149252,0.253178,0.703284,0.135888,0.245137,0.778369,0.0961432,0.356186,0.845496,0.0124354,0.965203,0.0323603,0.728057,0.898427,0.623974,0.0690182,0.9014,0.23304,0.00699818,0.066695,0.602844,0.196477,0.507649,0.466034,0.131872,0.238914,0.239094,0.141611,0.64459,0.830597,0.672276,0.624553,0.857745,0.935033,0.510758,0.694882,0.294498,0.834976,0.168881,0.367817,0.98345,0.724461,0.837482,0.0376227,0.777562,0.0237894,0.949894,0.208038,0.665063,0.858095,0.07854,0.141544,0.388358,0.135759,0.741444,0.460875,0.547451,0.478285,0.306051,0.478666,0.535556,0.908337,0.162999,0.522142,0.259663,0.635901,0.437973,0.90321,0.912304,0.761323,0.781745,0.624276,0.494893,0.954894,0.169318,0.100454,0.0513773,0.632733,0.21401,0.800158,0.874856,0.0428545,0.140143,0.270843,0.184335,0.0418185,0.3252,0.761397,0.806491,0.956055,0.935898,0.317212,0.502925,0.643965,0.321503,0.0854731,0.0107801,0.404714,0.250367,0.779931,0.430111,0.544824,0.976223,0.966991,0.282277,0.41872,0.315654,0.121052,0.422467,0.213944,0.334725,0.601952,0.574516,0.915365,0.0132027,0.744923,0.516828,0.142199,0.275659,0.41226,0.886047,0.202398,0.79873,0.349848,0.289214,0.426548,0.105186,0.843177,0.37332,0.17386,0.461373,0.839931,0.686735,0.240627,0.0755814,0.0770261,0.783505,0.19828,0.154739,0.148769,0.950345,0.762055,0.362388,0.253482,0.552687,0.841514,0.472789,0.432718,0.0462847,0.690585,0.64862,0.72802,0.311871,0.726447,0.6405,0.64681,0.858839,0.305699,0.405113,0.294152,0.857328,0.851589,0.403137,0.0825751,0.58949,0.379741,0.745323,0.291495,0.830601,0.732777,0.942537,0.777731,0.541595,0.75439,0.898333,0.914182,0.573171,0.629844,0.242326,0.938334,0.937783,0.816907,0.897863,0.144166,0.240909,0.855588,0.133659,0.678964,0.152966,0.661894,0.0248367,0.329761,0.376749,0.284119,0.604578,0.83863,0.115789,0.0525286,0.182806,0.176882,0.980921,0.714213,0.298833,0.392373,0.202452,0.801852,0.500059,0.747115,0.727301,0.552115,0.413262,0.289968,0.957274,0.547766,0.764035,0.669657,0.592087,0.65558,0.0509732,0.593685,0.809641,0.11131,0.933217,0.374992,0.37633,0.585284,0.100567,0.662782,0.568891,0.115267,0.635323,0.32881,0.907872,0.533674,0.980322,0.911494,0.0754852,0.815106,0.201144,0.479846,0.258052,0.151436,0.879162,0.238752,0.115464,0.488794,0.906245,0.358659,0.202547,0.945764,0.266156,0.804262,0.0112801,0.727387,0.759128,0.55646,0.0826451,0.554021,0.447901,0.765025,0.850786,0.410264,0.085923,0.296536,0.087024,0.295851,0.50301,0.601462,0.341802,0.163879,0.631545,0.0104377,0.342389,0.789883,0.679935,0.329165,0.42348,0.256821,0.263898,0.292442,0.330338,0.118944,0.607187,0.860439,0.86163,0.289941,0.861094,0.176125,0.707333,0.885208,0.953129,0.430982,0.314086,0.220822,0.192441,0.126086,0.214819,0.849488,0.231954,0.674538,0.218517,0.0463947,0.101548,0.233818,0.762353,0.937375,0.49851,0.452144,0.16327,0.362674,0.604489,0.137533,0.351495,0.225316,0.124238,0.890262,0.761924,0.607622,0.945841,0.449258,0.705953,0.0276366,0.898113,0.690298,0.624257,0.323109,0.0191042,0.937168,0.670501,0.329884,0.764975,0.659166,0.812573,0.216212,0.150683,0.526713,0.732591,0.971732,0.818565,0.603385,0.224582,0.543407,0.156128,0.441514,0.694242,0.846606,0.674113,0.206741,0.463503,0.784029,0.692419,0.327468,0.691002,0.393047,0.804137,0.908046,0.127742,0.759464,0.0482352,0.194681,0.210282,0.163108,0.598384,0.393302,0.394859,0.803781,0.140809,0.123143,0.64476,0.99388,0.528625,0.0558203,0.363773,0.571191,0.763347,0.389821,0.901954,0.426711,0.415668,0.136925,0.403915,0.5321,0.254179,0.397099,0.0870664,0.996328,0.732519,0.953501,0.994812,0.676167,0.0151595,0.961232,0.537823,0.059516,0.108624,0.873896,0.0177982,0.925234,0.222883,0.00038296,0.722056,0.735368,0.881735,0.639642,0.961177,0.302214,0.278704,0.0841999,0.0323568,0.113141,0.0747273,0.353214,0.0274092,0.96366,0.323941,0.753783,0.172121,0.0600058,0.356662,0.607963,0.599676,0.313029,0.461307,0.597898,0.81938,0.422076,0.369777,0.941515,0.485479,0.54783,0.620084,0.28134,0.982688,0.802423,0.540628,0.0716019,0.161866,0.578198,0.0564864,0.10841,0.221043,0.201384,0.390913,0.339683,0.193192,0.762484,0.423681,0.019867,0.0661989,0.270116,0.112144,0.261074,0.852566,0.689661,0.877038,0.950687,0.583933,0.7931,0.541209,0.309474,0.745723,0.950079,0.848847,0.908737,0.260953,0.538162,0.362475,0.2577,0.337562,0.914842,0.605745,0.836089,0.260343,0.879427,0.996882,0.0443084,0.858942,0.667185,0.272223,0.548824,0.135579,0.568416,0.12556,0.91442,0.325472,0.670594,0.459447,0.424489,0.456538,0.900115,0.89428,0.321276,0.486057,0.763558,0.728702,0.12072,0.554618,0.909246,0.409815,0.899932,0.9305,0.623806,0.679487,0.176454,0.529477,0.639943,0.854199,0.308661,0.761811,0.669891,0.988584,0.407076,0.146242,0.410868,0.833523,0.331819,0.185532,0.00295025,0.0270447,0.700906,0.057668,0.994615,0.106921,0.477318,0.878059,0.138906,0.0690241,0.431828,0.774797,0.937665,0.373427,0.738827,0.694291,0.794842,0.630654,0.704478,0.253858,0.607287,0.94866,0.108197,0.599318,0.473261,0.126952,0.917328,0.773887,0.869285,0.27579,0.519578,0.87105,0.963371,0.119893,0.72675,0.259564,0.958519,0.0887284,0.293127,0.56246,0.276129,0.795966,0.75528,0.844661,0.397598,0.876836,0.73683,0.285815,0.4365,0.147075,0.671361,0.324993,0.0962387,0.076225,0.475475,0.224458,0.732095,0.382138,0.943912,0.272951,0.698536,0.502789,0.880085,0.891775,0.0373049,0.106373,0.808941,0.31261,0.160888,0.937258,0.344581,0.40537,0.075494,0.041885,0.956444,0.126437,0.524159,0.816863,0.417171,0.680857,0.73658,0.460867,0.177213,0.243029,0.868021,0.953743,0.775632,0.618354,0.643956,0.293967,0.253929,0.672891,0.668329,0.271508,0.0594952,0.138349,0.8768,0.937273,0.851373,0.28116,0.144589,0.569005,0.657204,0.0496414,0.971406,0.39708,0.310182,0.359721,0.358921,0.437191,0.521914,0.378672,0.6534,0.406092,0.601451,0.78453,0.275104,0.162248,0.532853,0.974521,0.621457,0.958165,0.245106,0.790628,0.0543821,0.811485,0.132921,0.289358,0.26462,0.171907,0.912576,0.889344,0.13767,0.436981,0.773768,0.21277,0.87088,0.391516,|0.266169,0.207075,0.151704,0.158281,0.935226,0.0729315,0.540236,0.32885,0.236144,0.486524,0.053651,0.223454,0.675115,0.498723,0.556239,0.968767,0.0092482,0.99715,0.936598,0.805739,0.743347,0.737777,0.238312,0.149171,0.73702,0.445234,0.907074,0.863879,0.934535,0.688383,0.934808,0.462582,0.933841,0.494972,0.665507,0.117858,0.421139,0.267858,0.717222,0.290413,0.515772,0.629242,0.894525,0.540996,0.323658,0.703781,0.839556,0.188588,0.52101,0.210035,0.398132,0.429496,0.466902,0.683373,0.340396,0.713654,0.846428,0.136266,0.798462,0.0514816,0.185591,0.639192,0.290551,0.99698,0.127778,0.166432,0.871628,0.382451,0.308503,0.739773,0.578312,0.243833,0.647678,0.820262,0.0541733,0.220982,0.0320294,0.118667,0.311816,0.385924,0.425521,0.545647,0.141596,0.651071,0.252024,0.10615,0.653902,0.810075,0.432522,0.086392,0.994747,0.168654,0.828226,0.997693,0.487386,0.0511861,0.0774259,0.856406,0.602768,0.888359,0.652151,0.995121,0.144651,0.0189553,0.65329,0.874452,0.00738525,0.507795,0.311282,0.925666,0.155966,0.795287,0.821731,0.72918,0.728826,0.334804,0.512405,0.952854,0.20361,0.313638,0.764944,0.581162,0.946517,0.237671,0.145309,0.770621,0.471097,0.322492,0.676798,0.89416,0.0861701,0.199451,0.386051,0.393093,0.622948,0.633017,0.495699,0.0925435,0.869585,0.874521,0.178737,0.403664,0.537139,0.305728,0.703971,0.263506,0.449961,0.866905,0.901014,0.666821,0.907458,0.110848,0.571636,0.353168,0.978251,0.521239,0.0562015,0.149616,0.955305,0.51972,0.495004,0.962342,0.718205,0.784948,0.808596,0.178005,0.831589,0.595682,0.80506,0.803621,0.961877,0.0138605,0.380819,0.529421,0.71238,0.827111,0.080066,0.139398,0.150094,0.319206,0.84564,0.363334,0.441402,0.496294,0.677289,0.0538113,0.899843,0.509033,0.141777,0.268219,0.85505,0.244211,0.991864,0.267856,0.949941,0.305779,0.938211,0.605524,0.187707,0.284464,0.296774,0.54356,0.194645,0.545107,0.0782704,0.225605,0.816704,0.40633,0.870699,0.206515,0.0707886,0.26043,0.774027,0.453926,0.687741,0.588643,0.0914841,0.258458,0.508628,0.354903,0.752569,0.956551,0.835369,0.462419,0.714507,0.449,0.980491,0.697826,0.855823,0.347088,0.383599,0.182729,0.585617,0.0539689,0.690907,0.440331,0.362729,0.58357,0.478085,0.697085,0.365908,0.808801,0.924126,0.160747,0.28062,0.0240372,0.409288,0.815021,0.119538,0.879925,0.955373,0.288367,0.662749,0.336443,0.618153,0.43376,0.860653,0.988525,0.0715031,0.209514,0.202968,0.152752,0.970658,0.456077,0.949412,0.210791,0.412004,0.515199,0.709889,0.837777,0.773432,0.218291,0.191438,0.824774,0.395813,0.616674,0.631801,0.0684519,0.214109,0.360929,0.392862,0.363953,0.0141014,0.715714,0.808692,0.424608,0.300279,0.660175,0.612772,0.996695,0.750166,0.51358,0.357061,0.504965,0.969817,0.36858,0.837362,0.834572,0.230001,0.847987,0.733107,0.640913,0.556355,0.780988,0.902816,0.311905,0.585758,0.379149,0.815223,0.776876,0.569277,0.922175,0.685505,0.0974277,0.66022,0.737311,0.382952,0.749335,0.813252,0.432965,0.684851,0.245134,0.661172,0.209172,0.0533174,0.200504,0.591356,0.357182,0.512231,0.67379,0.493778,0.732473,0.114868,0.654277,0.6344,0.890274,0.0200551,0.71046,0.114317,0.714816,0.82655,0.147618,0.585849,0.862862,0.83734,0.320182,0.459713,0.706245,0.744501,0.647227,0.977649,0.0573518,0.310626,0.837158,0.330831,0.903582,0.716456,0.599954,0.947802,0.582846,0.176406,0.114665,0.420034,0.73811,0.554164,0.588545,0.753489,0.484125,0.0930372,0.422342,0.368989,0.785021,0.667959,0.285166,0.201734,0.33519,0.553154,0.685779,0.0146205,0.355405,0.993962,0.947442,0.194927,0.969106,0.270951,0.245658,0.208443,0.0662227,0.425792,0.892573,0.612789,0.14827,0.496836,0.177206,0.897251,0.563817,0.402982,0.675696,0.430212,0.158355,0.435748,0.893647,0.127977,0.189515,0.154,0.184361,0.502375,0.0388701,0.995021,0.359387,0.47327,0.870532,0.114923,0.122558,0.355959,0.291903,0.979657,0.302417,0.470805,0.31268,0.634722,0.611948,0.908386,0.565083,0.452446,0.97048,0.183913,0.92141,0.536497,0.813427,0.28211,0.867339,0.0512517,0.0535851,0.195984,0.147625,0.0517535,0.487578,0.0901907,0.30942,0.755733,0.223464,0.554743,0.555349,0.844337,0.072058,0.173424,0.198572,0.0759556,0.856872,0.569319,0.797808,0.230808,0.599988,0.200866,0.112857,0.911385,0.61919,0.818167,0.649551,0.881733,0.288234,0.981032,0.37319,0.461392,0.594919,0.944878,0.58511,0.0598197,0.503037,0.786652,0.239219,0.535161,0.780819,0.363532,0.289669,0.897073,0.393227,0.570232,0.213359,0.527374,0.557179,0.414868,0.0368024,0.83932,0.804302,0.804777,0.215639,0.647636,0.66998,0.437381,0.00263363,0.397414,0.979333,0.597909,0.742239,0.0839095,0.00635618,0.961443,0.070258,0.380702,0.268922,0.593374,0.71543,0.820678,0.141945,0.191713,0.406051,0.78166,0.76601,0.910504,0.66741,0.897451,0.34511,0.316269,0.726283,0.548402,0.985783,0.421898,0.653376,0.624995,0.52593,0.136769,0.957373,0.0764557,0.822394,0.109562,0.124685,0.424829,0.0991282,0.340381,0.125817,0.14432,0.226836,0.729783,0.523753,0.0266825,0.0766479,0.679002,0.627799,0.261039,0.524987,0.482128,0.65273,0.642366,0.496111,0.487042,0.599693,0.387362,0.49265,0.0959693,0.363516,0.859174,0.000338197,0.0344409,0.742538,0.843127,0.548696,0.344534,0.0849318,0.136888,0.116617,0.849409,0.27253,0.54823,0.303621,0.309983,0.211078,0.676145,0.971158,0.0655465,0.196966,0.83707,0.793417,0.530121,0.226731,0.454849,0.748552,0.706825,0.686415,0.0702309,0.00412989,0.616409,0.0687417,0.418289,0.674913,0.10064,0.252932,0.250441,0.959497,0.253166,0.155239,0.500752,0.0463927,0.380716,0.574034,0.621788,0.488762,0.659203,0.500083,0.339895,0.206323,0.964144,0.32441,0.522929,0.0230262,0.941162,0.537785,0.592592,0.977007,0.958335,0.158418,0.118214,0.569476,0.723737,0.239163,0.843852,0.550532,0.655269,0.47786,0.509256,0.444172,0.712036,0.745825,0.330119,0.950925,0.992928,0.799009,0.967494,0.82516,0.45675,0.280126,0.706358,0.188536,0.773973,0.546598,0.464363,0.684921,0.697494,0.355708,0.979111,0.413824,0.507377,0.199354,0.544652,0.824144,0.469078,0.522934,0.641244,0.234233,0.238484,0.343692,0.645432,0.440403,0.166552,0.367163,0.693708,0.993016,0.512545,0.423692,0.173926,0.394527,0.370392,0.804663,0.981286,0.997432,0.391934,0.388826,0.164054,0.906481,0.204601,0.885332,0.661746,0.938151,0.319139,0.280287,0.652773,0.806286,0.926122,0.127635,0.227694,0.998277,0.0816907,0.857971,0.588433,0.983084,0.662231,0.0294811,0.575864,0.482545,0.967375,0.559593,0.303379,0.382308,0.142869,0.979073,0.819282,0.714122,0.629933,0.866286,0.0850877,0.934679,0.119113,0.631393,0.536708,0.943618,0.638548,0.944621,0.563597,0.488285,0.401883,0.0624114,0.779312,0.194469,0.926204,0.577548,0.43932,0.417047,0.360165,0.109034,0.829197,0.390838,0.0509297,0.375623,0.1041,0.908283,0.390934,0.0278084,0.768658,0.199146,0.667085,0.864006,0.455965,0.454742,0.157827,0.862695,0.442989,0.633755,0.36091,0.686472,0.143408,0.0452189,0.292388,0.13748,0.103812,0.958428,0.0473725,0.321053,0.420689,0.0731094,0.597177,0.383543,0.0396351,0.308331,0.21397,0.379449,0.477428,0.833918,0.218418,0.762343,0.298127,0.854788,0.108601,0.417576,0.766797,0.31131,0.0145265,0.0756822,0.944228,0.691936,0.702388,0.430692,0.312622,0.0643039,0.129473,0.205319,0.210394,0.158696,0.0752937,0.152649,0.233463,0.395601,0.491853,0.146263,0.391642,0.68486,0.741786,0.66648,0.974264,0.923141,0.000174344,0.035378,0.86635,0.405133,0.113821,0.264488,0.861375,0.234182,0.585536,0.408114,0.595365,0.0937061,0.372956,0.558888,0.831118,0.290895,0.182956,0.55211,0.580006,0.185818,0.4242,0.866869,0.999111,0.282135,0.893614,0.437969,0.904507,0.280293,0.539699,0.353355,0.583504,0.287994,0.744581,0.149359,0.857297,0.0702012,0.599443,0.613372,0.469492,0.064005,0.500861,0.722077,0.580355,0.959309,0.785447,0.240213,0.0820953,0.834743,0.0354142,0.518439,0.0627484,0.324191,0.0554823,0.367137,0.239465,0.770873,0.209982,0.699457,0.369855,0.434322,0.0698746,0.196229,0.761314,0.602584,0.806726,0.751851,0.594057,0.125898,0.754711,0.342868,0.366638,0.6423,0.478078,0.422067,0.551126,0.270677,0.211003,0.974185,0.850085,0.605771,0.438683,0.194104,0.57707,0.410576,0.231983,0.76684,0.192786,0.808192,0.701311,0.387907,0.933356,0.881395,0.759505,0.162251,0.648541,0.879458,0.722273,0.275657,0.740106,0.595338,0.534383,0.113438,0.498911,0.721414,0.792738,0.163487,0.455229,0.0257839,0.883044,0.25469,0.446469,0.0679003,0.288933,0.111822,0.156232,0.719217,0.356443,0.0738816,0.404606,0.114079,0.261727,0.989061,0.763224,0.1454,0.00502181,0.214584,0.511893,0.084745,0.0305462,0.242042,0.67353,0.724482,0.822635,0.891117,0.208315,0.0106183,0.622118,0.847247,0.979022,0.878157,0.395147,0.659674,0.680208,0.819221,0.354289,0.0820409,0.931887,0.368084,0.0763411,0.759918,0.60551,0.0082255,0.611051,0.427738,0.162665,0.676673,0.210318,0.553662,0.277964,0.208975,0.489886,0.010132,0.47112,0.158056,0.507239,0.267303,0.326353,0.996946,0.357861,0.862605,0.735932,0.748586,0.579763,0.52179,0.163703,0.350081,0.620918,0.850059,0.442327,0.581957,0.417758,0.983998,0.431973,0.648107,0.26243,0.665179,0.172656,0.551748,0.228467,0.794103,0.898584,0.659026,0.671417,0.843764,0.98161,0.36753,0.29738,0.774371,0.936809,0.748738,0.654518,0.767892,0.897333,0.174944,0.652325,0.264243,0.235093,0.909737,0.680223,0.148393,|0.862113,0.814202,0.434538,0.845755,0.208606,0.748911,0.377925,0.547213,0.319495,0.419108,0.190028,0.573509,0.858218,0.708505,0.572973,0.861294,0.978805,0.167475,0.481071,0.0531368,0.0883408,0.382332,0.266152,0.880374,0.890184,0.117642,0.34099,0.284198,0.366609,0.3608,0.747287,0.782236,0.170181,0.326863,0.485328,0.992657,0.963853,0.0113473,0.0299405,0.81412,0.359862,0.979809,0.451305,0.400884,0.778625,0.663403,0.288771,0.0584831,0.192807,0.832596,0.640181,0.0505337,0.562296,0.816063,0.384334,0.338525,0.117971,0.678218,0.437031,0.608334,0.791602,0.355663,0.0431591,0.262195,0.9615,0.900587,0.706074,0.318887,0.768946,0.183296,0.692481,0.410826,0.877908,0.0987716,0.807462,0.470269,0.380142,0.987713,0.821198,0.149969,0.382841,0.281468,0.723641,0.772456,0.288172,0.319827,0.903261,0.906867,0.768479,0.549466,0.483084,0.509853,0.845425,0.429869,0.174574,0.481332,0.158786,0.368852,0.437332,0.435437,0.692158,0.743954,0.225117,0.218219,0.0152342,0.178111,0.795434,0.348995,0.487082,0.70903,0.185699,0.987555,0.622777,0.943647,0.204321,0.345946,0.779253,0.683994,0.215397,0.185438,0.412485,0.184257,0.714714,0.484058,0.171942,0.123094,0.709729,0.306879,0.705772,0.137482,0.949728,0.954819,0.173673,0.957613,0.858325,0.296841,0.767818,0.116531,0.68575,0.817123,0.490443,0.175982,0.0899912,0.54222,0.583967,0.563111,0.587107,0.363989,0.709929,0.725432,0.719572,0.252546,0.95303,0.50721,0.944901,0.0177066,0.295269,0.216526,0.857751,0.713655,0.812099,0.0724019,0.971286,0.862999,0.701949,0.082158,0.186616,0.343146,0.601254,0.294543,0.581922,0.310439,0.266789,0.778684,0.953869,0.529176,0.419979,0.690936,0.0230299,0.692366,0.450945,0.903006,0.0247753,0.798865,0.285161,0.647949,0.522622,0.0855584,0.375593,0.332803,0.653822,0.782741,0.287858,0.514164,0.307038,0.46795,0.883974,0.927497,0.646662,0.997507,0.214134,0.0809294,0.84986,0.784341,0.646871,0.134497,0.437757,0.430239,0.855438,0.499662,0.423794,0.163954,0.960894,0.955368,0.249416,0.919577,0.657983,0.640848,0.456897,0.49284,0.774325,0.485205,0.858582,0.864576,0.535384,0.157094,0.590193,0.81423,0.104789,0.48455,0.406341,0.997273,0.264073,0.828396,0.675162,0.741349,0.31852,0.937226,0.867072,0.30998,0.219439,0.809167,0.899057,0.712314,0.100508,0.726733,0.325136,0.767294,0.164679,0.176627,0.693545,0.170996,0.22407,0.374896,0.988097,0.927573,0.771959,0.805635,0.471734,0.428512,0.373597,0.751656,0.29372,0.436852,0.826356,0.563977,0.510431,0.372528,0.265812,0.889987,0.249822,0.347067,0.536153,0.787822,0.760774,0.23977,0.63539,0.20533,0.276347,0.0496201,0.845554,0.747081,0.978688,0.305855,0.287643,0.0352074,0.852184,0.783122,0.326325,0.378882,0.535735,0.700052,0.693659,0.27125,0.0300397,0.423397,0.860089,0.742882,0.491481,0.558928,0.675219,0.379534,0.45547,0.283757,0.0341886,0.668715,0.00694704,0.58096,0.162,0.384653,0.163001,0.217941,0.695951,0.828389,0.546661,0.394712,0.836385,0.0834517,0.994861,0.710639,0.432602,0.227696,0.158745,0.850644,0.0809886,0.0624769,0.630414,0.517928,0.60388,0.0343717,0.594781,0.235707,0.50948,0.215014,0.380569,0.315373,0.688608,0.102174,0.720004,0.581195,0.121631,0.962059,0.786833,0.235049,0.784836,0.802973,0.677442,0.394141,0.742964,0.112863,0.403409,0.75051,0.988191,0.814721,0.0928814,0.626487,0.349932,0.212119,0.0436205,0.237838,0.264693,0.162183,0.621744,0.783409,0.275795,0.0879208,0.403916,0.0231368,0.987793,0.821528,0.846007,0.481433,0.747428,0.722779,0.524386,0.0484927,0.492137,0.411116,0.371283,0.555539,0.295774,0.879251,0.998145,0.172561,0.143847,0.47332,0.555756,0.26175,0.834668,0.107747,0.767759,0.793304,0.71029,0.349218,0.524624,0.774664,0.236002,0.406746,0.168977,0.52405,0.393682,0.0840733,0.723032,0.177343,0.789241,0.929545,0.874575,0.656296,0.589256,0.0168012,0.54005,0.206743,0.617145,0.305624,0.299138,0.57204,0.0913723,0.681325,0.803389,0.0416545,0.269179,0.964985,0.855862,0.502388,0.811025,0.635277,0.293421,0.09444,0.893028,0.100834,0.516996,0.470916,0.426181,0.413237,0.384564,0.60281,0.254214,0.909608,0.936738,0.779158,0.836415,0.985148,0.639416,0.466074,0.708478,0.0609517,0.12991,0.470141,0.017122,0.674669,0.152947,0.415602,0.753892,0.0657117,0.0338924,0.980293,0.908899,0.0715438,0.691019,0.164757,0.587094,0.150481,0.228019,0.155181,0.307247,0.323486,0.335874,0.984054,0.19371,0.0531026,0.55759,0.41612,0.216945,0.927877,0.234245,0.970962,0.880017,0.987327,0.392807,0.855554,0.424741,0.203581,0.816418,0.415062,0.439663,0.321498,0.037502,0.168764,0.0519949,0.518293,0.0693408,0.205973,0.826447,0.876233,0.931426,0.392107,0.246919,0.704902,0.319658,0.984164,0.923693,0.928535,0.0603096,0.787865,0.355359,0.577807,0.92145,0.298528,0.393792,0.432964,0.967915,0.445981,0.058706,0.564312,0.165115,0.81041,0.828523,0.963851,0.933823,0.184383,0.971019,0.359648,0.901038,0.855205,0.145465,0.941678,0.425079,0.913377,0.169889,0.319024,0.479525,0.714596,0.990681,0.17136,0.333502,0.466811,0.751177,0.85564,0.220726,0.836913,0.0140479,0.396833,0.447697,0.935074,0.730141,0.222385,0.898734,0.627795,0.415714,0.652566,0.000967145,0.687141,0.236509,0.185304,0.305869,0.932446,0.296693,0.415263,0.205817,0.520629,0.998551,0.400781,0.394955,0.243826,0.927971,0.0697699,0.670822,0.0826561,0.0320218,0.61482,0.749074,0.36717,0.905017,0.0246115,0.556737,0.220419,0.239294,0.538988,0.291519,0.0708414,0.767962,0.308155,0.624238,0.484273,0.808905,0.916279,0.364299,0.453453,0.79789,0.925566,0.991745,0.986167,0.127604,0.109757,0.669819,0.919795,0.372488,0.1709,0.49004,0.468105,0.459804,0.693706,0.0358092,0.148784,0.785039,0.630403,0.97926,0.957095,0.582442,0.325431,0.290566,0.497258,0.763335,0.51296,0.233532,0.257393,0.384009,0.9979,0.661487,0.253245,0.84205,0.717101,0.392407,0.744254,0.443818,0.772619,0.96213,0.805676,0.0491652,0.667995,0.498609,0.11853,0.604092,0.0709384,0.344466,0.28897,0.225479,0.435333,0.595154,0.693942,0.914397,0.0355837,0.330095,0.654076,0.523139,0.582472,0.37542,0.354259,0.894473,0.636078,0.669441,0.956379,0.235216,0.898917,0.95848,0.454829,0.466726,0.187533,0.327891,0.773123,0.8476,0.082249,0.690711,0.311729,0.266322,0.559965,0.542634,0.014109,0.243177,0.681223,0.417901,0.946595,0.134694,0.0548045,0.753672,0.506763,0.734093,0.54149,0.217354,0.118053,0.692043,0.867882,0.346482,0.635964,0.520399,0.174666,0.788198,0.941945,0.60847,0.0890332,0.20559,0.947315,0.0689161,0.447511,0.106416,0.23174,0.329078,0.426103,0.604054,0.859548,0.555938,0.879387,0.291013,0.814632,0.540141,0.537091,0.555029,0.987453,0.210519,0.30916,0.42836,0.280141,0.704771,0.629313,0.113914,0.830394,0.306703,0.325033,0.111298,0.361661,0.458018,0.0700437,0.499461,0.236418,0.116281,0.510266,0.555023,0.981519,0.361943,0.698735,0.0663708,0.440428,0.121735,0.887355,0.760907,0.570446,0.364929,0.0214061,0.419536,0.473413,0.191306,0.801686,0.937808,0.00080806,0.392554,0.511616,0.454338,0.206403,0.223716,0.64649,0.293407,0.205619,0.899094,0.462545,0.928338,0.0818011,0.0149649,0.208028,0.0612308,0.574733,0.124582,0.60063,0.124085,0.84647,0.768992,0.811584,0.637894,0.0291536,0.849486,0.592634,0.0706639,0.875289,0.390044,0.297421,0.0141377,0.91287,0.415946,0.125482,0.692514,0.825332,0.633793,0.228707,0.943565,0.0912511,0.0122181,0.920887,0.358384,0.249198,0.0474993,0.86598,0.961807,0.344715,0.384572,0.236614,0.0824248,0.749948,0.537545,0.780503,0.339265,0.274546,0.378185,0.288033,0.333001,0.423917,0.544288,0.269839,0.280788,0.762719,0.0715901,0.292368,0.505814,0.066533,0.39276,0.538698,0.642857,0.107188,0.440546,0.125226,0.888756,0.270362,0.221251,0.105758,0.855888,0.592713,0.355024,0.628513,0.217513,0.592495,0.228395,0.436758,0.271352,0.289897,0.360717,0.0528032,0.62263,0.997167,0.859561,0.197581,0.83043,0.34906,0.338937,0.323307,0.0107398,0.882182,0.615055,0.578989,0.413421,0.920511,0.911945,0.0258803,0.304858,0.783762,0.670581,0.991553,0.330145,0.0638555,0.253105,0.885323,0.475673,0.479454,0.274918,0.324044,0.249916,0.5884,0.551617,0.941042,0.847865,0.0567634,0.913026,0.532039,0.84101,0.0168693,0.427019,0.166284,0.959627,0.432241,0.660988,0.168447,0.90405,0.40452,0.16446,0.471334,0.928166,0.191811,0.728754,0.113942,0.270936,0.325426,0.347077,0.517291,0.904588,0.0260682,0.881604,0.4905,0.782108,0.057004,0.573409,0.445251,0.0485987,0.661191,0.0920293,0.0187379,0.183281,0.664195,0.13042,0.0558175,0.93092,0.849426,0.2626,0.0176499,0.307306,0.892457,0.639963,0.211829,0.1694,0.0235013,0.294852,0.391955,0.963366,0.761575,0.995468,0.0441312,0.58065,0.561779,0.332934,0.170969,0.509815,0.519614,0.426283,0.93506,0.398772,0.565213,0.605352,0.984785,0.699249,0.25639,0.0948899,0.527503,0.136471,0.274564,0.343789,0.687011,0.766519,0.744227,0.23641,0.405006,0.120306,0.0468492,0.474173,0.819454,0.579245,0.0151805,0.149127,0.815374,0.360541,0.467974,0.279553,0.880627,0.30593,0.961652,0.637944,0.671247,0.136435,0.544212,0.336724,0.666157,0.82914,0.741814,0.46729,0.33337,0.725817,0.716698,0.76132,0.210124,0.841967,0.849025,0.830729,0.40096,0.297698,0.904162,0.27758,0.840229,0.928983,0.499776,0.957607,0.367989,0.714504,0.378023,0.873418,0.911647,0.0953321,0.925518,0.271068,0.656579,0.517147,0.45196,0.86008,0.623467,0.519622,0.681239,|0.700804,0.855753,0.790285,0.476604,0.821837,0.0660895,0.138748,0.963243,0.382984,0.624605,0.323466,0.670296,0.965169,0.682449,0.214821,0.773911,0.246448,0.833484,0.919227,0.310037,0.636033,0.118903,0.17516,0.589084,0.682317,0.583152,0.547956,0.406356,0.709441,0.632171,0.0918193,0.293003,0.0247306,0.0816848,0.273268,0.586643,0.0317903,0.598058,0.892781,0.547457,0.133278,0.448696,0.645405,0.424711,0.919304,0.640618,0.403112,0.555338,0.836223,0.93385,0.32562,0.923327,0.396178,0.872308,0.558545,0.0905063,0.323593,0.857039,0.360777,0.0236034,0.760485,0.490316,0.235548,0.826241,0.741619,0.322803,0.887551,0.291529,0.535135,0.0146808,0.0777053,0.821174,0.0163986,0.638711,0.223083,0.82826,0.431978,0.979123,0.112005,0.964339,0.356409,0.172808,0.683055,0.594292,0.944954,0.348758,0.392856,0.778156,0.849729,0.913818,0.610052,0.245861,0.567512,0.610071,0.287551,0.428344,0.253176,0.386395,0.221951,0.531799,0.783956,0.735112,0.494574,0.0835218,0.625551,0.684298,0.58432,0.245832,0.334532,0.780289,0.117656,0.357261,0.834698,0.878974,0.442512,0.245214,0.281989,0.525446,0.810161,0.660379,0.185246,0.0727794,0.397836,0.9858,0.811439,0.888425,0.290575,0.598513,0.348716,0.800817,0.904581,0.877862,0.458747,0.253261,0.273678,0.210676,0.882104,0.204443,0.0950561,0.158082,0.917058,0.20801,0.366311,0.763482,0.323004,0.0862713,0.580622,0.867688,0.739218,0.0695457,0.91891,0.071323,0.253537,0.378168,0.0931913,0.0458449,0.381105,0.653748,0.274406,0.515426,0.565051,0.927318,0.438973,0.542619,0.389979,0.834522,0.334638,0.499287,0.0805307,0.48962,0.687726,0.278493,0.256272,0.599839,0.440066,0.058248,0.0826297,0.905293,0.47188,0.264694,0.919579,0.267657,0.211023,0.337531,0.184981,0.674667,0.927916,0.373672,0.899393,0.341958,0.863424,0.969663,0.347151,0.831074,0.846244,0.982248,0.404402,0.775394,0.716903,0.511773,0.843563,0.576632,0.464402,0.960485,0.953916,0.981452,0.037842,0.936851,0.0491365,0.421788,0.958834,0.718796,0.333074,0.00769544,0.48945,0.307287,0.976395,0.514909,0.16553,0.76029,0.662539,0.333502,0.214797,0.584634,0.400946,0.558286,0.787046,0.626768,0.327784,0.40703,0.113057,0.461307,0.959927,0.499272,0.0793263,0.288018,0.101894,0.747709,0.219772,0.867713,0.0092063,0.127322,0.886629,0.715021,0.618304,0.951573,0.333167,0.9321,0.352864,0.0973431,0.26078,0.0121511,0.87209,0.924269,0.419814,0.576419,0.0872248,0.858666,0.293358,0.0845333,0.334433,0.690082,0.964143,0.742522,0.151471,0.31733,0.0811998,0.811018,0.167988,0.274867,0.962806,0.432513,0.961114,0.868731,0.0836879,0.462519,0.671702,0.336546,0.335963,0.427796,0.527277,0.848303,0.470643,0.308353,0.43736,0.0168333,0.785067,0.823421,0.82121,0.0191306,0.890617,0.44244,0.498988,0.906208,0.865064,0.245148,0.18498,0.8316,0.226084,0.419143,0.0316182,0.317435,0.262879,0.344371,0.469378,0.193992,0.470992,0.17397,0.508153,0.975517,0.163485,0.338447,0.603578,0.554847,0.265361,0.396925,0.139067,0.733143,0.899536,0.810791,0.766765,0.918488,0.811104,0.997722,0.810405,0.924283,0.556915,0.920919,0.0670232,0.940243,0.354775,0.902817,0.50769,0.564036,0.470946,0.0435542,0.00736398,0.111868,0.144374,0.449861,0.483497,0.660662,0.423521,0.90274,0.0707025,0.0989767,0.143746,0.0240303,0.585847,0.519676,0.461284,0.0441739,0.836957,0.31688,0.682525,0.294982,0.191967,0.244435,0.187061,0.130814,0.201678,0.783227,0.860277,0.388507,0.545384,0.0464994,0.596474,0.53557,0.444667,0.394926,0.802005,0.436405,0.786729,0.426785,0.315154,0.207113,0.799922,0.879455,0.653155,0.419767,0.326846,0.789052,0.864005,0.743067,0.829148,0.458298,0.400998,0.160711,0.869155,0.155319,0.603685,0.956902,0.782708,0.417419,0.437442,0.99391,0.19268,0.990718,0.588291,0.470952,0.468926,0.815734,0.103806,0.415558,0.135022,0.588586,0.393118,0.375769,0.427492,0.0601493,0.0504279,0.849872,0.622067,0.356791,0.901991,0.0137738,0.0322102,0.676509,0.473373,0.458401,0.741878,0.76398,0.0994613,0.404183,0.0366491,0.6304,0.78949,0.852076,0.338828,0.785552,0.634794,0.809459,0.155893,0.293862,0.404761,0.242396,0.962696,0.131846,0.145493,0.157198,0.290762,0.257194,0.817975,0.874379,0.420723,0.754772,0.416094,0.709703,0.130856,0.40564,0.774413,0.430648,0.364626,0.904574,0.0809767,0.966398,0.720618,0.964785,0.270395,0.218681,0.144847,0.351681,0.14191,0.343339,0.1613,0.241282,0.0777978,0.392057,0.0220529,0.00485694,0.422694,0.365719,0.617561,0.479467,0.0930519,0.0425135,0.656931,0.198202,0.295508,0.902033,0.780881,0.488245,0.680192,0.905976,0.543053,0.118809,0.471624,0.483087,0.29635,0.107309,0.973273,0.695093,0.673771,0.849107,0.259664,0.716514,0.45615,0.979859,0.702007,0.976665,0.88602,0.629747,0.267524,0.357482,0.231469,0.834342,0.199176,0.351948,0.987793,0.877739,0.954287,0.468651,0.86211,0.85672,0.747516,0.120899,0.997478,0.13065,0.371703,0.576719,0.221778,0.0920965,0.33453,0.489537,0.180109,0.728269,0.62808,0.744709,0.854634,0.304415,0.718357,0.466941,0.260226,0.580296,0.132381,0.717226,0.286256,0.561443,0.411724,0.271671,0.572163,0.901055,0.512672,0.849633,0.513248,0.603511,0.265933,0.0727856,0.527709,0.215377,0.525814,0.825347,0.487213,0.118813,0.247891,0.387861,0.585717,0.787368,0.528021,0.589127,0.77162,0.61357,0.672825,0.473584,0.127362,0.322242,0.515303,0.970153,0.810074,0.87961,0.774705,0.208477,0.736566,0.133857,0.524477,0.828693,0.413668,0.938718,0.98714,0.432128,0.528834,0.234844,0.0178063,0.901164,0.234663,0.956169,0.975601,0.981533,0.558856,0.627171,0.812443,0.23857,0.489553,0.00986779,0.890711,0.69,0.230266,0.767851,0.295069,0.738583,0.274852,0.305071,0.235978,0.570257,0.203854,0.475508,0.0417553,0.503431,0.953835,0.998549,0.815197,0.183912,0.237875,0.13592,0.120841,0.77496,0.978311,0.0508834,0.235882,0.139264,0.536236,0.528087,0.181319,0.0692291,0.065616,0.165513,0.210712,0.448279,0.222864,0.859623,0.477394,0.416487,0.476577,0.668524,0.561501,0.981936,0.958029,0.651534,0.616018,0.0216628,0.693653,0.737371,0.747097,0.408116,0.0811583,0.130395,0.370926,0.88011,0.859678,0.803563,0.07963,0.550369,0.342775,0.424485,0.322074,0.708754,0.085391,0.65199,0.821329,0.797807,0.759891,0.980024,0.838014,0.184777,0.640076,0.610156,0.739322,0.393053,0.910965,0.658486,0.394719,0.81594,0.48153,0.294451,0.251689,0.842883,0.276067,0.832584,0.813301,0.527502,0.404223,0.812708,0.828934,0.0661756,0.553216,0.229428,0.273185,0.687452,0.430569,0.861194,0.904686,0.637949,0.306968,0.882239,0.482601,0.337302,0.139377,0.126678,0.0517145,0.633463,0.843993,0.572235,0.8807,0.00166905,0.0892102,0.453655,0.314933,0.400542,0.717499,0.315975,0.66388,0.9635,0.890763,0.538463,0.742773,0.441358,0.860169,0.592157,0.391704,0.585025,0.0479665,0.882802,0.300865,0.488531,0.0675896,0.769727,0.813397,0.908347,0.919811,0.791829,0.765396,0.928603,0.325612,0.587554,0.0447636,0.963956,0.230506,0.71777,0.237025,0.919565,0.684301,0.440804,0.719154,0.216198,0.487053,0.88366,0.827109,0.860408,0.354386,0.341248,0.926993,0.569502,0.799728,0.0405522,0.398817,0.0309495,0.0506533,0.124253,0.429922,0.352157,0.434103,0.41717,0.494667,0.909416,0.265128,0.130612,0.062084,0.734237,0.442035,0.436097,0.471739,0.905133,0.516643,0.539261,0.30838,0.437725,0.483369,0.984399,0.788664,0.381335,0.379216,0.615518,0.123593,0.22606,0.796819,0.695734,0.395428,0.272328,0.965435,0.498165,0.492812,0.0461285,0.300184,0.949004,0.489901,0.108491,0.253022,0.934514,0.982875,0.111647,0.706827,0.570814,0.210384,0.119703,0.45261,0.630233,0.968248,0.544065,0.230309,0.257483,0.689383,0.0644616,0.00589865,0.681128,0.52135,0.219263,0.465411,0.488731,0.628397,0.197645,0.515172,0.827452,0.982881,0.550399,0.247522,0.455113,0.602975,0.0957676,0.758236,0.690022,0.197307,0.0964398,0.0153973,0.583797,0.82085,0.146656,0.373617,0.603523,0.507067,0.318451,0.42733,0.527728,0.676408,0.982231,0.894687,0.0313329,0.0487688,0.154109,0.559985,0.769595,0.00493509,0.947807,0.886753,0.54513,0.135236,0.441435,0.940037,0.646052,0.209985,0.312415,0.552985,0.557243,0.39215,0.310849,0.803169,0.153138,0.547567,0.422446,0.620325,0.741,0.30561,0.894611,0.63383,0.317485,0.967008,0.114002,0.158155,0.674472,0.561489,0.365139,0.552665,0.392047,0.5284,0.220567,0.679912,0.237146,0.480474,0.0229291,0.863877,0.647591,0.232337,0.867219,0.315203,0.448078,0.902223,0.518047,0.496591,0.559062,0.601393,0.947897,0.58878,0.841588,0.685241,0.025538,0.16981,0.407337,0.312421,0.215955,0.757696,0.833459,0.166058,0.270236,0.999874,0.787168,0.696988,0.309396,0.810678,0.69713,0.0522314,0.551192,0.545108,0.569414,0.171751,0.000972986,0.71724,0.434676,0.976074,0.599348,0.449551,0.282034,0.427549,0.234225,0.439989,0.299051,0.436003,0.223982,0.00261539,0.0328127,0.251967,0.571963,0.256357,0.462537,0.8732,0.0153503,0.971658,0.928829,0.567693,0.347538,0.944248,0.104076,0.239886,0.390208,0.965929,0.92558,0.947643,0.893145,0.0072518,0.488102,0.996546,0.0299849,0.442528,0.886434,0.395782,0.324819,0.143637,0.831238,0.0504803,0.826976,0.634983,0.889203,0.271499,0.597943,0.00287396,0.63,0.969517,0.738266,0.8186,0.474629,0.548825,0.806211,0.783433,0.887679,0.778387,0.159161,0.75083,0.344452,0.996901,0.58641,0.425803,0.110017,0.987755,0.311242,0.641614,0.626201,0.631468,0.640905,0.0345777,0.464701,0.774349,0.878353,|0.247835,0.684607,0.192709,0.657599,0.166629,0.00305587,0.410147,0.161715,0.881037,0.872794,0.903364,0.161658,0.372234,0.719427,0.466179,0.0973984,0.987342,0.787392,0.589405,0.152464,0.206499,0.373631,0.169202,0.643286,0.228018,0.433524,0.0664936,0.786445,0.20069,0.738179,0.792235,0.986036,0.302658,0.299763,0.699401,0.116008,0.198782,0.332226,0.0491357,0.172696,0.0872719,0.284932,0.300641,0.879132,0.780542,0.865708,0.0778697,0.734211,0.765093,0.963392,0.754464,0.695079,0.582819,0.873217,0.543221,0.595596,0.959872,0.817059,0.830993,0.798205,0.695222,0.380812,0.934141,0.00703883,0.777593,0.103496,0.40873,0.865273,0.411555,0.36847,0.83679,0.93213,0.772969,0.115828,0.695097,0.552147,0.418783,0.922125,0.34858,0.00757295,0.643421,0.915132,0.84335,0.980704,0.0227956,0.0313419,0.482691,0.00554329,0.971748,0.564278,0.843626,0.0038895,0.168965,0.64325,0.478489,0.587115,0.67307,0.761344,0.551697,0.734209,0.74372,0.637355,0.175068,0.142889,0.447497,0.482719,0.150663,0.0166098,0.408319,0.0975802,0.595843,0.59501,0.408942,0.245744,0.181453,0.430773,0.919405,0.841273,0.120192,0.896038,0.252803,0.503356,0.0681624,0.588008,0.0533031,0.151183,0.284012,0.562129,0.405632,0.12646,0.294095,0.377929,0.807822,0.785556,0.234123,0.98899,0.660242,0.88586,0.530959,0.180996,0.964273,0.828553,0.19328,0.643022,0.922079,0.824994,0.390774,0.978293,0.0241874,0.524924,0.396159,0.89747,0.914012,0.0223725,0.504461,0.435365,0.00685936,0.256501,0.650797,0.89108,0.930218,0.549266,0.819406,0.43268,0.068244,0.772365,0.43443,0.000334382,0.768857,0.491096,0.893461,0.743293,0.0629283,0.587512,0.94275,0.0484131,0.170275,0.90587,0.967162,0.0499131,0.683109,0.210667,0.657068,0.20748,0.244822,0.978193,0.858559,0.623692,0.114372,0.364503,0.804363,0.0814349,0.739318,0.433917,0.6756,0.996826,0.757012,0.00122213,0.297898,0.928902,0.264666,0.234249,0.210908,0.666034,0.186333,0.935475,0.709033,0.379547,0.0897804,0.671764,0.105181,0.380113,0.548316,0.794694,0.609754,0.718239,0.452564,0.410606,0.339554,0.183097,0.101339,0.729376,0.302244,0.13321,0.466388,0.647857,0.508687,0.706518,0.733873,0.465669,0.507988,0.251277,0.984632,0.00352561,0.899936,0.369721,0.856066,0.228393,0.821224,0.812987,0.731009,0.911118,0.271343,0.594332,0.109004,0.168074,0.835467,0.899488,0.0360386,0.495364,0.0294045,0.785143,0.646935,0.883577,0.442888,0.199132,0.792293,0.805372,0.722714,0.983604,0.665319,0.682661,0.107508,0.0154293,0.211172,0.618599,0.97393,0.137191,0.384952,0.52576,0.191776,0.299021,0.474279,0.534033,0.647203,0.941692,0.64163,0.167279,0.758759,0.0421153,0.311915,0.668462,0.097578,0.195309,0.31853,0.879781,0.580608,0.898493,0.0547038,0.495552,0.568697,0.727579,0.187272,0.650097,0.0671376,0.929833,0.0163592,0.591001,0.943636,0.814003,0.479403,0.476619,0.530555,0.603753,0.0437573,0.0714762,0.53925,0.386598,0.0159776,0.39427,0.300745,0.772906,0.645461,0.581059,0.0041948,0.463619,0.28621,0.397444,0.360822,0.877075,0.806166,0.355356,0.902798,0.138857,0.0527627,0.54445,0.824235,0.530988,0.522068,0.726664,0.63189,0.0964628,0.64305,0.790284,0.647203,0.0593017,0.0988674,0.632152,0.683062,0.519338,0.271777,0.671639,0.956576,0.850458,0.264887,0.376883,0.492411,0.363609,0.263339,0.731695,0.789211,0.547959,0.815092,0.226018,0.202807,0.739551,0.539555,0.124028,0.623703,0.783331,0.471353,0.0064826,0.682491,0.387236,0.204983,0.0683063,0.0251644,0.0904462,0.672972,0.205532,0.707882,0.415436,0.359091,0.926669,0.256321,0.027347,0.13944,0.716173,0.597154,0.464047,0.259673,0.41264,0.192339,0.917009,0.903584,0.00975007,0.354974,0.224741,0.3701,0.135644,0.279587,0.876423,0.609818,0.376569,0.554095,0.906096,0.663567,0.460367,0.600321,0.918608,0.0471267,0.50296,0.394738,0.577201,0.637192,0.394709,0.716775,0.267525,0.270679,0.319911,0.123685,0.443157,0.932704,0.77002,0.982342,0.594715,0.483883,0.105195,0.618589,0.926372,0.735111,0.0942997,0.573736,0.0403488,0.491851,0.625292,0.00422871,0.251583,0.892505,0.0983756,0.385028,0.501125,0.83699,0.710373,0.423763,0.43564,0.914745,0.105197,0.984501,0.62916,0.81742,0.691732,0.169977,0.692679,0.950495,0.0975628,0.19115,0.885121,0.943945,0.824198,0.97665,0.506009,0.005606,0.396482,0.654111,0.321606,0.331235,0.912783,0.320544,0.967619,0.457476,0.648272,0.341341,0.333481,0.914632,0.929788,0.216738,0.106324,0.907276,0.245233,0.679985,0.278435,0.983869,0.87064,0.637936,0.190942,0.636888,0.87205,0.519252,0.332176,0.0568732,0.347889,0.303127,0.419754,0.313755,0.118599,0.0714432,0.929243,0.981715,0.297629,0.625368,0.262035,0.35147,0.24703,0.084164,0.651103,0.0448047,0.42817,0.738063,0.754507,0.685744,0.325441,0.658709,0.841674,0.802695,0.907031,0.397916,0.316515,0.681272,0.440794,0.398923,0.578534,0.904292,0.536411,0.907156,0.324568,0.506296,0.234189,0.050783,0.858852,0.656842,0.10058,0.426029,0.306542,0.437088,0.935328,0.747855,0.176401,0.755029,0.0446576,0.485027,0.811185,0.598652,0.0520661,0.615506,0.103162,0.96493,0.200163,0.646513,0.0885435,0.59593,0.877403,0.0589612,0.251253,0.18869,0.100374,0.819681,0.907691,0.362468,0.957579,0.747501,0.443616,0.264984,0.402151,0.125811,0.91031,0.374169,0.416503,0.502323,0.215313,0.758153,0.0117393,0.594132,0.0215942,0.30835,0.712635,0.655847,0.504692,0.635971,0.779889,0.473641,0.154361,0.59911,0.960506,0.445428,0.950644,0.945361,0.299278,0.809375,0.126647,0.59406,0.881388,0.819373,0.899456,0.0848057,0.89668,0.0116349,0.566356,0.0238588,0.464559,0.985824,0.309628,0.457201,0.444543,0.624493,0.995861,0.478916,0.124553,0.703459,0.725402,0.91557,0.0321854,0.320733,0.688325,0.999411,0.395949,0.413283,0.0962614,0.380006,0.885559,0.477573,0.807635,0.0665269,0.614668,0.832767,0.505609,0.899564,0.996821,0.540565,0.888782,0.173851,0.891927,0.807754,0.164492,0.533096,0.387772,0.451949,0.49016,0.516453,0.689262,0.747985,0.971168,0.350688,0.364917,0.409977,0.00993848,0.767995,0.711568,0.867167,0.171376,0.557507,0.716137,0.494074,0.157048,0.73733,0.429299,0.871271,0.00790673,0.198825,0.714852,0.199303,0.370228,0.913442,0.459367,0.0567846,0.395926,0.0223408,0.475747,0.546682,0.27984,0.123116,0.0930342,0.868223,0.20359,0.0253217,0.406622,0.397976,0.0371101,0.291254,0.696379,0.154815,0.732765,0.0246483,0.187093,0.75386,0.70603,0.855633,0.999225,0.0575539,0.260951,0.440168,0.613471,0.92848,0.970307,0.579678,0.856293,0.412772,0.320703,0.629772,0.140359,0.571524,0.576509,0.574443,0.296047,0.680709,0.970872,0.963514,0.711631,0.368958,0.118668,0.0856553,0.934524,0.629032,0.0588282,0.888402,0.749997,0.937108,0.489026,0.0556239,0.0855125,0.774673,0.48719,0.451536,0.396316,0.0267876,0.0291301,0.547179,0.219358,0.832799,0.80992,0.366908,0.501584,0.488316,0.445235,0.0601678,0.654079,0.58497,0.100324,0.00946754,0.915201,0.215301,0.581846,0.20178,0.980062,0.379662,0.832282,0.18113,0.565687,0.91243,0.294779,0.910169,0.81993,0.615156,0.231203,0.35175,0.24789,0.861539,0.185958,0.10737,0.845482,0.862059,0.345282,0.138057,0.360912,0.591548,0.734152,0.469713,0.591486,0.477462,0.59267,0.90822,0.303629,0.66833,0.336179,0.840498,0.921143,0.658224,0.082746,0.604826,0.786181,0.718845,0.0842752,0.747985,0.252444,0.488618,0.650917,0.958593,0.110705,0.701374,0.357166,0.0265441,0.862087,0.538671,0.376239,0.534254,0.606717,0.0701424,0.844251,0.0975547,0.964067,0.415656,0.109362,0.819394,0.110051,0.234718,0.282517,0.746587,0.967889,0.972067,0.838297,0.60424,0.475954,0.933152,0.593032,0.572317,0.318463,0.382779,0.208434,0.0802978,0.28996,0.131866,0.290944,0.688892,0.940311,0.818978,0.633752,0.110595,0.0517297,0.84204,0.889686,0.84192,0.501669,0.135778,0.770535,0.681878,0.9981,0.434824,0.656941,0.909989,0.962991,0.795145,0.899563,0.539607,0.362126,0.251427,0.0568089,0.327832,0.843953,0.808114,0.810064,0.320012,0.581835,0.909522,0.0222507,0.793097,0.688103,0.674534,0.216372,0.316196,0.280117,0.621358,0.0441811,0.275071,0.386773,0.844914,0.594086,0.933476,0.33624,0.889833,0.117307,0.273478,0.849919,0.89789,0.0118722,0.294555,0.0878129,0.736416,0.0690897,0.644863,0.91625,0.504945,0.277421,0.38166,0.0331842,0.749165,0.982421,0.347607,0.140871,0.224472,0.29054,0.379764,0.742138,0.812482,0.968626,0.953247,0.45877,0.427351,0.431323,0.969001,0.675816,0.0732601,0.361223,0.439236,0.0119369,0.882005,0.541725,0.732397,0.419887,0.227257,0.476719,0.400788,0.709776,0.34184,0.792159,0.430937,0.674751,0.892665,0.433176,0.570719,0.291497,0.907672,0.291673,0.795902,0.584364,0.362927,0.0464343,0.274059,0.778853,0.19007,0.359064,0.32747,0.760203,0.801415,0.540678,0.48715,0.66393,0.562025,0.71449,0.493247,0.89487,0.545583,0.890441,0.409414,0.832705,0.235147,0.777014,0.527185,0.450312,0.572802,0.0806105,0.645279,0.329618,0.745108,0.503815,0.935225,0.87413,0.633845,0.315531,0.172413,0.0735149,0.121018,0.0237702,0.86653,0.114315,0.862818,0.442803,0.219013,0.208046,0.991355,0.483122,0.645188,0.583419,0.133203,0.846734,0.48409,0.414198,0.984761,0.637251,0.942954,0.725292,0.291013,0.918058,0.66925,0.634177,0.139243,0.48921,0.0330791,0.910022,0.326247,0.707355,0.0370019,0.661465,0.375884,0.354881,0.610472,0.866207,0.449959,0.939583,0.114906,0.674602,0.0658237,0.233271,0.691188,0.775453,0.266753,0.710507,0.83643,0.480319,0.931795,0.389826,|0.285887,0.927895,0.116176,0.607704,0.577984,0.872302,0.051745,0.273337,0.632674,0.255199,0.7198,0.812469,0.280895,0.649585,0.219724,0.83646,0.625577,0.454067,0.0293273,0.493774,0.356425,0.749941,0.72075,0.749511,0.161779,0.332083,0.889083,0.857319,0.390006,0.395452,0.495292,0.377639,0.981242,0.572835,0.705406,0.552733,0.0515025,0.402676,0.344624,0.766954,0.954028,0.409928,0.642579,0.835319,0.752096,0.849167,0.783853,0.919331,0.0661672,0.90611,0.750425,0.567587,0.912169,0.56447,0.0880858,0.166048,0.846017,0.283837,0.0964811,0.616474,0.139902,0.613477,0.585514,0.735294,0.429858,0.362407,0.445098,0.494961,0.760817,0.134242,0.57892,0.564281,0.463282,0.43698,0.585079,0.878906,0.539835,0.683627,0.597432,0.821216,0.382077,0.00591928,0.973839,0.510996,0.219773,0.665095,0.612065,0.0898578,0.772107,0.393373,0.318863,0.475791,0.0546899,0.829849,0.67956,0.327505,0.288028,0.868035,0.331047,0.869951,0.801984,0.434448,0.513092,0.171641,0.981748,0.466925,0.0906833,0.0980544,0.485002,0.25005,0.0929375,0.179302,0.430577,0.174016,0.72282,0.224041,0.497961,0.71304,0.0979161,0.159136,0.907597,0.186003,0.829522,0.135301,0.26727,0.234204,0.0747252,0.728891,0.150535,0.0878453,0.352591,0.355168,0.238914,0.275362,0.960897,0.41838,0.86123,0.543015,0.511348,0.219123,0.7759,0.214509,0.867388,0.175687,0.492518,0.502141,0.893159,0.359739,0.142025,0.776495,0.696198,0.915184,0.818832,0.598767,0.725828,0.960769,0.77479,0.00578004,0.109235,0.769311,0.512563,0.658985,0.800576,0.250055,0.678973,0.74173,0.828671,0.0583273,0.2782,0.270503,0.559109,0.950107,0.645496,0.0727346,0.654232,0.357805,0.289606,0.0855609,0.0737627,0.606798,0.67135,0.305825,0.0849586,0.433718,0.852645,0.629099,0.785831,0.617232,0.0707986,0.414007,0.483369,0.834932,0.991467,0.717364,0.115454,0.894886,0.315854,0.249428,0.0365275,0.9988,0.612067,0.646557,0.339954,0.110432,0.895292,0.201385,0.668347,0.277453,0.464745,0.695927,0.479645,0.449046,0.862928,0.422225,0.807377,0.960839,0.172962,0.912636,0.502377,0.996204,0.464265,0.727137,0.386406,0.466503,0.560133,0.799905,0.615993,0.700013,0.618027,0.322711,0.312295,0.656437,0.0833473,0.136827,0.0522573,0.320383,0.393649,0.861158,0.71493,0.240946,0.353767,0.872042,0.815309,0.887682,0.282929,0.102951,0.64473,0.0753824,0.417323,0.0454272,0.925683,0.23903,0.231259,0.28499,0.429406,0.356721,0.146295,0.604074,0.025095,0.905745,0.60771,0.102065,0.855962,0.0550027,0.604934,0.590433,0.359057,0.689278,0.221024,0.340545,0.725247,0.0541995,0.12326,0.482583,0.42296,0.488686,0.00449705,0.993124,0.813921,0.313305,0.0413731,0.237115,0.259915,0.743886,0.780496,0.113203,0.541107,0.840576,0.544153,0.755362,0.455928,0.0274371,0.869505,0.44487,0.960497,0.421944,0.0231369,0.554805,0.697593,0.633514,0.898439,0.0424587,0.68325,0.796322,0.207395,0.353938,0.0347515,0.979716,0.832449,0.807519,0.599992,0.308453,0.112155,0.0354375,0.712052,0.258151,0.450976,0.0265338,0.0118833,0.0929229,0.769292,0.769658,0.79915,0.718123,0.547157,0.278035,0.955894,0.545871,0.802486,0.121732,0.15588,0.839919,0.662746,0.193948,0.977711,0.855108,0.898527,0.964427,0.484539,0.758576,0.649432,0.130445,0.160196,0.959107,0.120645,0.960422,0.178236,0.986494,0.927347,0.786596,0.938025,0.374186,0.950066,0.729265,0.709956,0.481862,0.996642,0.138736,0.301622,0.29265,0.261933,0.209887,0.756062,0.0263762,0.39382,0.433696,0.269286,0.849227,0.869755,0.112483,0.226014,0.962542,0.358418,0.886313,0.794316,0.849373,0.609381,0.573101,0.00701869,0.797082,0.443421,0.457266,0.371693,0.0618043,0.0813864,0.811035,0.493068,0.0240374,0.8001,0.740299,0.475062,0.689507,0.53149,0.358991,0.490693,0.0407735,0.902813,0.726942,0.612573,0.644018,0.202278,0.686492,0.372664,0.643551,0.500299,0.915926,0.445257,0.948325,0.500964,0.288067,0.562867,0.383248,0.172552,0.329947,0.631323,0.969951,0.719854,0.693125,0.337353,0.632936,0.707152,0.72658,0.7417,0.516233,0.473064,0.847263,0.41417,0.102221,0.134931,0.0261242,0.668353,0.386624,0.53035,0.155254,0.177115,0.864166,0.655235,0.245939,0.774961,0.518522,0.199372,0.459204,0.480115,0.302596,0.92967,0.312437,0.3048,0.707566,0.14241,0.430999,0.5239,0.298435,0.952068,0.903724,0.345344,0.238273,0.669037,0.194224,0.627874,0.340602,0.760146,0.201648,0.406386,0.638453,0.143194,0.993586,0.686227,0.6427,0.359221,0.0666059,0.635248,0.441142,0.840641,0.314516,0.269887,0.911602,0.156368,0.41731,0.899956,0.842427,0.62625,0.21688,0.600581,0.77503,0.255133,0.00208938,0.625609,0.386879,0.861057,0.167408,0.541359,0.749296,0.201024,0.316475,0.6414,0.228547,0.987915,0.0648379,0.480624,0.546215,0.268543,0.224325,0.941145,0.61348,0.551868,0.981831,0.31048,0.696507,0.266182,0.95472,0.526859,0.320639,0.519254,0.71846,0.944608,0.821733,0.187749,0.639312,0.395484,0.960308,0.743398,0.147109,0.398985,0.578635,0.354356,0.486064,0.245986,0.705644,0.412175,0.139732,0.353388,0.122048,0.0701863,0.403264,0.726801,0.141925,0.656862,0.407026,0.635863,0.0946252,0.0243089,0.0553467,0.247664,0.808132,0.258789,0.136868,0.692414,0.317264,0.205772,0.902862,0.196504,0.646741,0.728093,0.30168,0.197748,0.389174,0.204531,0.877616,0.448787,0.223212,0.42337,0.23923,0.730432,0.24219,0.340578,0.731699,0.173829,0.149935,0.265051,0.855154,0.603033,0.0769448,0.87587,0.000915945,0.33894,0.722248,0.644619,0.47966,0.317515,0.0478153,0.766447,0.633352,0.427451,0.890768,0.228803,0.595627,0.808756,0.661557,0.798296,0.903637,0.793396,0.0343184,0.881946,0.384162,0.563894,0.987018,0.714761,0.82508,0.397507,0.574813,0.229904,0.947201,0.67163,0.601225,0.162295,0.0948986,0.794616,0.543557,0.824229,0.0875365,0.551755,0.420657,0.235608,0.384229,0.388227,0.436966,0.583229,0.475311,0.0281729,0.324373,0.629442,0.659076,0.347309,0.604855,0.461403,0.426038,0.936193,0.887146,0.0294484,0.671466,0.924386,0.181337,0.949591,0.433107,0.484146,0.101682,0.992595,0.956258,0.46336,0.0120569,0.39194,0.824001,0.0943414,0.654206,0.24963,0.683644,0.0772107,0.0296254,0.12393,0.620666,0.828552,0.76832,0.111601,0.257549,0.320977,0.644002,0.300826,0.430963,0.756932,0.404969,0.186303,0.00355875,0.867387,0.729701,0.121738,0.723966,0.0278013,0.263031,0.774223,0.696682,0.406942,0.0485353,0.263016,0.43953,0.986173,0.544612,0.562884,0.92299,0.58826,0.690834,0.868205,0.718954,0.799839,0.671616,0.750107,0.687344,0.972019,0.604646,0.853277,0.0452392,0.0811462,0.83254,0.641144,0.957423,0.846296,0.700388,0.955152,0.506683,0.73295,0.0752607,0.30327,0.158636,0.48349,0.228348,0.817748,0.813282,0.871408,0.243987,0.957534,0.277415,0.438565,0.958317,0.546012,0.840666,0.643636,0.00546384,0.957994,0.0255362,0.715269,0.227127,0.0332878,0.537,0.463591,0.460741,0.17623,0.715708,0.412147,0.0941499,0.968795,0.981751,0.286849,0.143266,0.109285,0.445976,0.66123,0.452886,0.757616,0.639394,0.554703,0.28254,0.58975,0.75365,0.734499,0.456746,0.882726,0.0189113,0.680499,0.207115,0.685673,0.291178,0.625065,0.474353,0.615022,0.0431644,0.76159,0.085724,0.234129,0.989478,0.277761,0.46852,0.346446,0.451671,0.913932,0.885893,0.309643,0.175975,0.210065,0.319643,0.110619,0.204036,0.368797,0.0902473,0.565264,0.334157,0.601869,0.391693,0.0727404,0.844666,0.456291,0.0795853,0.824523,0.467706,0.649346,0.265721,0.746759,0.0152957,0.206288,0.780815,0.573757,0.0392768,0.285795,0.763247,0.328999,0.299888,0.93172,0.107561,0.383461,0.264574,0.467211,0.309309,0.665242,0.765919,0.130192,0.464433,0.0457106,0.339821,0.551444,0.10682,0.484984,0.521211,0.388487,0.523309,0.430646,0.569379,0.263561,0.383019,0.955591,0.723069,0.0550253,0.719469,0.463254,0.827712,0.950621,0.341485,0.778067,0.265115,0.0161714,0.745279,0.40659,0.496856,0.614576,0.373699,0.950734,0.212824,0.141096,0.858249,0.0226375,0.319556,0.409071,0.0480706,0.0970629,0.509231,0.407088,0.109059,0.164751,0.655764,0.848358,0.16988,0.514906,0.0356727,0.68016,0.164259,0.256932,0.295534,0.320759,0.235516,0.640771,0.722289,0.526063,0.546676,0.979451,0.754981,0.512564,0.137905,0.418274,0.404847,0.570746,0.0611688,0.890143,0.621509,0.34436,0.617228,0.740607,0.582602,0.329877,0.0192024,0.185411,0.807004,0.500192,0.615627,0.0795896,0.777024,0.236431,0.534414,0.771826,0.41215,0.628776,0.767682,0.273119,0.874346,0.0980602,0.995408,0.441297,0.207682,0.230744,0.124957,0.381058,0.726644,0.95074,0.853396,0.457221,0.383938,0.830614,0.452283,0.191332,0.868607,0.829866,0.761002,0.384634,0.451332,0.829333,0.176258,0.469906,0.719309,0.912869,0.936634,0.39583,0.563855,0.211182,0.248488,0.118416,0.97454,0.957107,0.937935,0.691294,0.020465,0.438558,0.362414,0.0312505,0.0165603,0.0248999,0.872611,0.41924,0.5193,0.877954,0.548659,0.801094,0.960881,0.852646,0.0743731,0.466022,0.146261,0.757012,0.155088,0.857746,0.644919,0.176088,0.676014,0.393753,0.196201,0.714135,0.996786,0.0584471,0.703454,0.286694,0.23851,0.0871423,0.0670772,0.979783,0.981593,0.741026,0.688586,0.500391,0.422487,0.127668,0.113705,0.58413,0.592761,0.82035,0.389744,0.0434202,0.635246,0.336447,0.479125,0.218251,0.177976,0.198914,0.0923844,0.784144,0.523271,0.108088,0.41236,0.636656,0.613552,0.286022,0.576897,0.61016,0.193944,0.701805,0.379604,0.13203,0.355258,0.676215,0.353686,0.478101,0.781,0.496096,0.592395,0.594139,0.589814,|0.883718,0.81414,0.132129,0.0208335,0.450917,0.516783,0.195629,0.509752,0.511805,0.113286,0.756908,0.155438,0.254189,0.552459,0.40855,0.477766,0.982897,0.279703,0.54284,0.299901,0.802753,0.598789,0.695454,0.831267,0.170731,0.341189,0.823043,0.187864,0.790349,0.366775,0.991342,0.794346,0.230191,0.258615,0.45819,0.659536,0.997757,0.687586,0.982137,0.320085,0.765953,0.820542,0.0218618,0.360595,0.346279,0.243832,0.740123,0.239026,0.361571,0.0855402,0.158762,0.424239,0.73722,0.658388,0.356847,0.704291,0.101014,0.089641,0.942848,0.321591,0.503262,0.626537,0.115035,0.634174,0.733098,0.13546,0.61394,0.902042,0.628324,0.796473,0.86221,0.00962555,0.524671,0.347507,0.313194,0.308891,0.48905,0.513084,0.688921,0.424468,0.992103,0.4074,0.0412921,0.511435,0.677851,0.634198,0.355571,0.682605,0.547501,0.629482,0.519333,0.350255,0.26514,0.024962,0.943257,0.0402709,0.712839,0.123698,0.284737,0.0802947,0.0448654,0.0292143,0.140739,0.880983,0.584257,0.401825,0.904269,0.417819,0.251,0.344555,0.617885,0.519106,0.731266,0.170102,0.875661,0.960674,0.646941,0.598687,0.737145,0.583903,0.362422,0.826743,0.0715043,0.620511,0.0397012,0.952381,0.388722,0.999847,0.313925,0.431534,0.225546,0.959742,0.682343,0.237154,0.455268,0.384925,0.268669,0.338927,0.104152,0.160451,0.143975,0.505241,0.585147,0.917868,0.906472,0.924796,0.335093,0.742634,0.548312,0.666591,0.733802,0.392815,0.808913,0.971158,0.12217,0.82408,0.37378,0.353729,0.770119,0.709629,0.488497,0.169775,0.830428,0.142978,0.356131,0.857727,0.277448,0.322878,0.849102,0.716104,0.318852,0.533733,0.420175,0.115942,0.307296,0.609146,0.0292544,0.434834,0.356069,0.106122,0.358582,0.727757,0.143288,0.417827,0.346135,0.426851,0.199483,0.117683,0.327014,0.197495,0.0388307,0.517212,0.697613,0.149725,0.499157,0.252462,0.695189,0.0342844,0.677254,0.675941,0.638142,0.822251,0.0297883,0.315402,0.3126,0.0829173,0.14094,0.480256,0.984,0.555568,0.226093,0.138088,0.365458,0.0680525,0.508177,0.816291,0.0569654,0.191007,0.818961,0.294724,0.367231,0.385196,0.035405,0.813873,0.0642383,0.152995,0.722807,0.980054,0.82712,0.166992,0.305869,0.234346,0.537784,0.614417,0.524308,0.100917,0.435336,0.717842,0.316461,0.700281,0.691693,0.699814,0.528641,0.221753,0.543347,0.619879,0.754443,0.503874,0.290419,0.123924,0.54374,0.71263,0.780696,0.301892,0.636691,0.0181233,0.413129,0.765025,0.493983,0.00244659,0.821135,0.709451,0.0301248,0.63934,0.585616,0.770522,0.445991,0.353068,0.579582,0.178785,0.553304,0.777056,0.921655,0.129402,0.940628,0.839524,0.816281,0.923224,0.364786,0.0491394,0.501242,0.060876,0.823397,0.501507,0.939075,0.781164,0.800914,0.669285,0.893819,0.138861,0.561648,0.809417,0.174004,0.631937,0.416992,0.435404,0.133314,0.760542,0.39083,0.625751,0.0288452,0.997239,0.94676,0.306191,0.93872,0.253927,0.710987,0.694193,0.593632,0.0629246,0.864199,0.43056,0.273457,0.0492582,0.110443,0.734413,0.280307,0.724214,0.578992,0.160963,0.444178,0.270549,0.981552,0.917893,0.473632,0.788097,0.456711,0.115206,0.35054,0.781625,0.348691,0.928005,0.892559,0.434689,0.136542,0.420076,0.971118,0.649695,0.782523,0.743816,0.193531,0.79425,0.328364,0.276449,0.0815756,0.853917,0.813812,0.327557,0.629259,0.227933,0.802971,0.659324,0.257057,0.783971,0.299072,0.767068,0.21085,0.369219,0.940282,0.565495,0.645878,0.0270543,0.0815788,0.609526,0.482224,0.733111,0.894996,0.161636,0.659108,0.544637,0.675927,0.756854,0.945035,0.431506,0.441257,0.590801,0.909424,0.698767,0.99358,0.208828,0.897407,0.720666,0.208412,0.280155,0.79903,0.0134315,0.306131,0.954428,0.77753,0.556844,0.0310768,0.1501,0.453231,0.391163,0.250339,0.699099,0.550104,0.749811,0.32409,0.567047,0.12019,0.426697,0.34088,0.0725487,0.69495,0.980711,0.782731,0.266265,0.386011,0.340005,0.301339,0.706149,0.151844,0.567371,0.388352,0.244713,0.0608697,0.0176476,0.225885,0.62082,0.973492,0.236476,0.581247,0.639445,0.807832,0.695529,0.472542,0.0737417,0.0119702,0.432155,0.975719,0.284691,0.0380408,0.653863,0.590489,0.747633,0.675976,0.00645983,0.695363,0.452126,0.942451,0.170159,0.0431341,0.0383514,0.823301,0.894867,0.739793,0.143779,0.377832,0.379968,0.920103,0.346879,0.693509,0.333488,0.617599,0.0703239,0.237371,0.585336,0.200357,0.573358,0.739111,0.483911,0.0830613,0.585506,0.918498,0.793375,0.658485,0.138223,0.133462,0.738277,0.0996353,0.451063,0.558119,0.598828,0.139451,0.837871,0.720693,0.141729,0.366424,0.279627,0.277973,0.926589,0.491464,0.0164705,0.244116,0.383951,0.453658,0.106093,0.271355,0.669439,0.784934,0.0180591,0.668588,0.770821,0.894484,0.612289,0.532033,0.281565,0.813709,0.575557,0.30142,0.778863,0.391917,0.110514,0.169802,0.795252,0.0211508,0.719861,0.691567,0.502713,0.00511479,0.35246,0.084852,0.618454,0.501343,0.930466,0.0488247,0.889849,0.683797,0.523021,0.537239,0.0883718,0.400731,0.40845,0.488469,0.136867,0.236695,0.515763,0.481291,0.216255,0.298893,0.733935,0.808424,0.900801,0.279462,0.154777,0.851097,0.842587,0.195376,0.744934,0.492563,0.972242,0.0625205,0.951048,0.812567,0.766169,0.0209659,0.168038,0.648305,0.875706,0.759614,0.199589,0.965015,0.411111,0.32324,0.855087,0.623699,0.838074,0.622062,0.370715,0.163274,0.45877,0.778433,0.358963,0.637251,0.785024,0.890414,0.453973,0.971659,0.554367,0.483428,0.832398,0.319723,0.915865,0.274553,0.798936,0.0821152,0.494821,0.392493,0.136458,0.161888,0.189109,0.910866,0.991146,0.82425,0.437541,0.743665,0.735542,0.68405,0.808387,0.0284098,0.832045,0.0782436,0.198119,0.141295,0.662372,0.392241,0.124957,0.386163,0.832722,0.761692,0.927382,0.191366,0.619405,0.336266,0.00347757,0.983386,0.345348,0.620244,0.344388,0.0473374,0.908729,0.144472,0.9837,0.0854703,0.306434,0.0935349,0.627009,0.300577,0.895148,0.506039,0.187374,0.690787,0.724153,0.718269,0.0875714,0.686957,0.714685,0.340909,0.353528,0.243497,0.969498,0.0255372,0.17976,0.584066,0.372694,0.627643,0.81179,0.104526,0.588511,0.351166,0.746741,0.871965,0.222861,0.982497,0.0596983,0.186472,0.848847,0.321535,0.120996,0.0938893,0.514451,0.699427,0.448485,0.629309,0.649459,0.0989478,0.513261,0.658751,0.987507,0.465471,0.297389,0.0120928,0.0156689,0.241961,0.658043,0.825612,0.491401,0.884117,0.752274,0.977933,0.958767,0.0379357,0.901089,0.150761,0.734217,0.648238,0.560014,0.0770261,0.01517,0.664251,0.599832,0.920128,0.441961,0.544977,0.441518,0.952905,0.457591,0.232284,0.628422,0.699234,0.0593114,0.0103357,0.342878,0.797463,0.229147,0.436292,0.707896,0.583268,0.385165,0.474449,0.895149,0.753309,0.000840425,0.0190061,0.782439,0.72333,0.0360128,0.490743,0.933262,0.43954,0.267766,0.290901,0.558834,0.846517,0.543396,0.688699,0.452643,0.990301,0.82564,0.389656,0.293667,0.35807,0.825107,0.0982848,0.82314,0.32637,0.856401,0.245057,0.0949015,0.57097,0.833682,0.428486,0.628661,0.397117,0.386886,0.507597,0.834396,0.253618,0.359752,0.427404,0.916651,0.616166,0.132534,0.314617,0.986749,0.934415,0.159153,0.698697,0.813481,0.34041,0.683711,0.842921,0.545289,0.872825,0.242768,0.122974,0.351641,0.305409,0.619331,0.23033,0.65557,0.0429527,0.458281,0.290537,0.290826,0.972484,0.906609,0.964709,0.289097,0.107107,0.908371,0.784083,0.613791,0.945414,0.386153,0.747286,0.977604,0.587215,0.970276,0.787506,0.764781,0.916612,0.257017,0.126298,0.889395,0.188039,0.0628717,0.660011,0.118074,0.0810916,0.82123,0.181201,0.388709,0.967049,0.152757,0.208742,0.978995,0.627779,0.628104,0.689544,0.649012,0.476452,0.682497,0.849314,0.205886,0.341939,0.262109,0.960907,0.801276,0.88427,0.0715344,0.491248,0.742311,0.425257,0.500901,0.214365,0.876356,0.618257,0.280723,0.764128,0.940619,0.736598,0.469541,0.158556,0.423228,0.298524,0.832639,0.345892,0.185918,0.0147852,0.683443,0.400449,0.150766,0.615809,0.921318,0.332528,0.320446,0.107453,0.392233,0.817792,0.910493,0.459295,0.257327,0.859606,0.480548,0.0316187,0.0998374,0.111293,0.975608,0.945099,0.89414,0.979393,0.0537748,0.444907,0.591816,0.242293,0.309649,0.668593,0.36061,0.159945,0.298339,0.958363,0.589602,0.635974,0.811594,0.592602,0.217692,0.0762531,0.55234,0.231472,0.80943,0.386857,0.108127,0.386446,0.926424,0.752057,0.865007,0.438682,0.207013,0.923048,0.879284,0.38807,0.541794,0.504198,0.794323,0.395124,0.79911,0.766131,0.0541914,0.67648,0.19392,0.802458,0.00471646,0.00282758,0.495358,0.899154,0.724447,0.49124,0.652496,0.0624779,0.767281,0.557821,0.196136,0.669098,0.0955505,0.358853,0.182884,0.182456,0.179536,0.906786,0.847206,0.188166,0.82177,0.819,0.711516,0.266282,0.87002,0.324429,0.0347334,0.747123,0.313797,0.977376,0.197939,0.296849,0.13964,0.953551,0.0606828,0.725423,0.548929,0.474698,0.694063,0.541712,0.514807,0.59942,0.514458,0.256788,0.991622,0.924041,0.128137,0.390571,0.303286,0.931138,0.182969,0.839741,0.231586,0.983138,0.271925,0.699757,0.222725,0.549716,0.1644,0.796391,0.616279,0.961674,0.149671,0.392308,0.655741,0.0651665,0.369931,0.921684,0.174946,0.405632,0.245356,0.848827,0.454046,0.444192,0.801598,0.0444262,0.58427,0.39058,0.459074,0.129027,0.416209,0.756374,0.057802,0.0863026,0.216216,0.962627,0.494863,0.455608,0.802479,0.359296,0.584042,0.433206,0.371026,0.117364,0.718245,0.0957525,0.856991,0.0804371,0.325395,0.768086,0.412842,0.717211,0.495928,0.00967914,0.441629,0.592421,0.763988,|0.131631,0.920926,0.400768,0.853898,0.608844,0.0721677,0.927527,0.0296091,0.769694,0.669985,0.0688521,0.474481,0.0391198,0.729329,0.547974,0.800735,0.00583744,0.818799,0.617826,0.767602,0.163186,0.0127791,0.441056,0.932273,0.0781818,0.0443289,0.692586,0.349246,0.198198,0.986603,0.237056,0.669902,0.537481,0.620719,0.643712,0.500723,0.192398,0.466032,0.776003,0.717976,0.111494,0.367458,0.831246,0.430031,0.0426695,0.924307,0.7128,0.400011,0.478299,0.904567,0.969367,0.461842,0.894054,0.360652,0.5207,0.368891,0.831817,0.348601,0.772064,0.305419,0.0463971,0.744625,0.839207,0.761608,0.670363,0.880383,0.351301,0.214908,0.697202,0.0141532,0.365772,0.745314,0.447165,0.87216,0.187314,0.313049,0.665977,0.791126,0.153877,0.865406,0.747359,0.441284,0.509795,0.313351,0.880617,0.325625,0.275424,0.325854,0.211523,0.406405,0.884192,0.541309,0.511494,0.570349,0.142501,0.761669,0.0357653,0.814572,0.00184453,0.271544,0.573025,0.989615,0.898333,0.913919,0.217806,0.260246,0.209798,0.259845,0.975903,0.299104,0.727166,0.537425,0.0320803,0.566873,0.454143,0.488718,0.354439,0.232862,0.760679,0.795501,0.307491,0.34892,0.711532,0.847382,0.889493,0.702981,0.347027,0.661022,0.484854,0.224925,0.393108,0.264249,0.835578,0.288483,0.169659,0.186936,0.787223,0.631444,0.732415,0.541946,0.181121,0.698491,0.567778,0.348593,0.243285,0.0847,0.189612,0.817879,0.479817,0.525526,0.0694253,0.481341,0.604314,0.969531,0.821875,0.854999,0.140998,0.812046,0.555831,0.616137,0.924072,0.118119,0.527153,0.0420727,0.597325,0.373051,0.0701504,0.00405043,0.352543,0.0799375,0.60121,0.357501,0.0926892,0.792831,0.11998,0.61287,0.335784,0.00324416,0.519783,0.214682,0.11118,0.469549,0.327315,0.501631,0.682261,0.399924,0.455783,0.34485,0.121989,0.312952,0.443691,0.379949,0.710704,0.0127148,0.385006,0.289731,0.956269,0.593368,0.201249,0.743251,0.934215,0.536991,0.271329,0.641857,0.444159,0.588559,0.186633,0.346728,0.728211,0.146219,0.347071,0.150688,0.0524386,0.780539,0.47,0.905682,0.496063,0.538697,0.0043748,0.436748,0.543752,0.502742,0.0131614,0.0583254,0.256277,0.174664,0.479631,0.34604,0.188047,0.625777,0.472534,0.88843,0.503894,0.359806,0.37454,0.797386,0.644864,0.81182,0.633005,0.177333,0.525036,0.631223,0.920689,0.691507,0.757124,0.415122,0.358128,0.288986,0.315111,0.601413,0.728852,0.0464363,0.974466,0.647511,0.383703,0.780189,0.0884483,0.98181,0.224451,0.062205,0.896367,0.22152,0.349031,0.335676,0.76369,0.0683696,0.69778,0.104826,0.0664595,0.783727,0.742224,0.249425,0.946568,0.81301,0.375133,0.281197,0.227571,0.0444774,0.206228,0.71071,0.547519,0.587938,0.565356,0.852825,0.456875,0.416306,0.427878,0.830447,0.0493189,0.195271,0.389702,0.16441,0.0662774,0.178423,0.35358,0.511448,0.888996,0.825445,0.47136,0.677838,0.394274,0.92476,0.832789,0.201326,0.995212,0.590251,0.519533,0.416738,0.0851018,0.596624,0.233936,0.820495,0.636592,0.0389148,0.26983,0.768873,0.908324,0.833444,0.662973,0.534446,0.946672,0.220639,0.538422,0.215572,0.735885,0.0508868,0.381633,0.900799,0.974417,0.508503,0.302748,0.836098,0.279148,0.37266,0.367282,0.584905,0.889901,0.12231,0.698003,0.999588,0.57932,0.701389,0.0532916,0.419883,0.877175,0.976601,0.47486,0.50747,0.420064,0.662413,0.484473,0.836825,0.669153,0.290658,0.177001,0.946191,0.655158,0.534159,0.793305,0.824472,0.609537,0.375372,0.634382,0.231307,0.599269,0.720381,0.464283,0.0763526,0.0539671,0.0323442,0.651446,0.267638,0.371172,0.596162,0.992176,0.854288,0.899112,0.745985,0.922622,0.276439,0.679558,0.902587,0.43037,0.789483,0.550303,0.344331,0.119998,0.522995,0.613794,0.913229,0.0795713,0.497619,0.0859817,0.555326,0.0407559,0.330358,0.535256,0.465552,0.532191,0.116324,0.626011,0.0964263,0.03875,0.532777,0.987025,0.000237763,0.799581,0.769182,0.415771,0.386265,0.966628,0.357143,0.113533,0.973976,0.698926,0.905604,0.97891,0.984481,0.139358,0.962584,0.666568,0.922245,0.403859,0.570009,0.169631,0.64025,0.828499,0.142826,0.942556,0.98169,0.866167,0.930396,0.656354,0.553948,0.427743,0.89524,0.666328,0.393203,0.675848,0.958724,0.325664,0.513257,0.48741,0.470717,0.44727,0.663099,0.995952,0.359241,0.198074,0.783019,0.0926045,0.380584,0.659218,0.228877,0.440004,0.59474,0.903441,0.718862,0.0868526,0.406695,0.654225,0.105611,0.0428578,0.714491,0.356738,0.361413,0.236861,0.34105,0.28406,0.269345,0.253165,0.798807,0.770626,0.255203,0.579381,0.385525,0.410641,0.857416,0.759656,0.624164,0.486769,0.606126,0.611869,0.0987475,0.104634,0.990157,0.312291,0.0335885,0.707282,0.162109,0.219616,0.0118513,0.929774,0.812966,0.576898,0.379867,0.549002,0.30052,0.152112,0.243688,0.876932,0.342468,0.743814,0.549373,0.731487,0.524455,0.128486,0.350851,0.86605,0.736888,0.786547,0.0317811,0.246443,0.121389,0.202038,0.775668,0.299232,0.0879831,0.389508,0.409132,0.162081,0.181831,0.0807058,0.757096,0.273511,0.994912,0.337542,0.986471,0.164597,0.836289,0.354715,0.701321,0.504404,0.134279,0.0169899,0.136016,0.592654,0.0545765,0.219065,0.814841,0.346723,0.9344,0.215226,0.81879,0.495495,0.574938,0.0494838,0.857824,0.0947061,0.564645,0.886387,0.848522,0.296103,0.0563037,0.338441,0.555619,0.785651,0.964083,0.173893,0.124301,0.901859,0.519479,0.123777,0.169727,0.207721,0.685269,0.418183,0.164248,0.0788333,0.379624,0.0805717,0.641668,0.7305,0.870017,0.0775424,0.69963,0.0602912,0.116533,0.375775,0.390826,0.0564916,0.486412,0.990581,0.0763708,0.470154,0.0456055,0.0697471,0.555028,0.189828,0.55647,0.499574,0.914524,0.621211,0.66068,0.104442,0.185559,0.269758,0.525136,0.657048,0.542066,0.171175,0.38372,0.237162,0.249109,0.895841,0.161763,0.676158,0.862003,0.915025,0.987054,0.921366,0.231072,0.737539,0.882207,0.869293,0.576347,0.935405,0.063061,0.846611,0.882582,0.789131,0.162454,0.548877,0.781209,0.391321,0.38307,0.0664593,0.385434,0.540178,0.596413,0.912009,0.953265,0.497087,0.0110592,0.415053,0.238864,0.594904,0.85662,0.328657,0.68069,0.0446481,0.212509,0.867045,0.481294,0.47922,0.518089,0.773829,0.178381,0.920059,0.320627,0.0444458,0.39087,0.529229,0.630996,0.935927,0.769936,0.30691,0.888499,0.789585,0.397792,0.866492,0.180611,0.206336,0.110324,0.284149,0.0194455,0.250533,0.0823287,0.105856,0.70413,0.335306,0.432087,0.685062,0.524515,0.727342,0.198807,0.560371,0.862839,0.553462,0.261321,0.144279,0.472786,0.958132,0.329887,0.235463,0.457463,0.112293,0.72407,0.601616,0.144018,0.737647,0.0421075,0.828107,0.637904,0.344384,0.629315,0.623156,0.11105,0.413827,0.927704,0.230222,0.4895,0.454369,0.537094,0.887091,0.218896,0.19122,0.0293174,0.191819,0.0711353,0.808272,0.509272,0.32665,0.308661,0.86477,0.806658,0.15051,0.277199,0.870932,0.971636,0.318811,0.976345,0.344988,0.164828,0.955561,0.217414,0.388681,0.47803,0.605497,0.229644,0.571719,0.11769,0.749055,0.557378,0.984138,0.318452,0.511732,0.320542,0.112637,0.698637,0.456929,0.97538,0.641689,0.283322,0.962692,0.52548,0.832453,0.919251,0.844953,0.145967,0.00808465,0.79698,0.900182,0.730405,0.385086,0.467171,0.164806,0.72463,0.208579,0.375613,0.502947,0.0123121,0.440157,0.906031,0.702048,0.70857,0.349718,0.718645,0.0393653,0.278891,0.577837,0.330571,0.27207,0.678024,0.254556,0.509727,0.792145,0.456185,0.333162,0.334299,0.659527,0.808906,0.752927,0.252597,0.514345,0.512746,0.619069,0.0787924,0.940104,0.537659,0.811987,0.277739,0.18033,0.84459,0.124017,0.434811,0.917582,0.609077,0.644901,0.880227,0.920325,0.357861,0.303907,0.543844,0.0968816,0.508632,0.628752,0.46844,0.493972,0.104331,0.0635971,0.653542,0.713872,0.633479,0.597927,0.193828,0.318152,0.44753,0.907796,0.830648,0.528278,0.403446,0.634652,0.587456,0.800088,0.121316,0.114174,0.480364,0.411059,0.212812,0.783861,0.181756,0.535418,0.671529,0.977531,0.694234,0.187072,0.555792,0.42928,0.161814,0.702381,0.285532,0.10005,0.754579,0.0767612,0.937497,0.512611,0.380884,0.633595,0.975633,0.728581,0.392729,0.866819,0.0907256,0.75172,0.0996211,0.182966,0.936422,0.479936,0.327655,0.709197,0.291587,0.894163,0.60973,0.279965,0.75479,0.00725931,0.991451,0.588735,0.519789,0.634039,0.801327,0.288758,0.615798,0.104153,0.365801,0.747229,0.382658,0.418258,0.547549,0.874753,0.181331,0.309885,0.316999,0.270858,0.407561,0.505957,0.407448,0.250239,0.4308,0.320872,0.243364,0.921307,0.855662,0.688108,0.783375,0.28101,0.982397,0.74295,0.127819,0.550166,0.958049,0.533279,0.801741,0.012277,0.114141,0.216093,0.610835,0.428104,0.746083,0.692672,0.28034,0.535631,0.785904,0.395477,0.414613,0.139904,0.204386,0.0274958,0.497567,0.587877,0.988621,0.219697,0.958642,0.210259,0.572011,0.694347,0.0935363,0.773022,0.455055,0.747318,0.0810452,0.312793,0.941626,0.191429,0.649528,0.215651,0.430399,0.796531,0.775387,0.483856,0.0938523,0.424355,0.718699,0.993317,0.174931,0.234984,0.403844,0.301994,0.590657,0.134996,0.0198149,0.138181,0.550485,0.347366,0.286135,0.312932,0.196622,0.0972874,0.839504,0.822941,0.730963,0.31327,0.412242,0.435885,0.85576,0.229899,0.68274,0.676254,0.387306,0.229617,0.204712,0.959561,0.471466,0.110771,0.836579,0.798827,0.979156,0.991866,0.779993,0.925668,0.405421,0.930688,0.904703,0.56222,0.790168,0.585788,0.234816,0.452304,0.686615,0.97457,0.996489,0.851242,0.393631,0.109738,0.436121,0.0336992,0.347094,0.631754,0.755744,|0.64339,0.107645,0.579434,0.809142,0.380468,0.0509365,0.716265,0.0653954,0.501109,0.402452,0.822016,0.691363,0.481332,0.947926,0.164701,0.691868,0.392986,0.551351,0.0830055,0.369727,0.213611,0.800927,0.943183,0.905593,0.367253,0.684296,0.49658,0.850874,0.399304,0.117139,0.0870121,0.379305,0.480878,0.814426,0.960265,0.310184,0.57328,0.344763,0.806338,0.263224,0.937049,0.668248,0.143221,0.722786,0.287542,0.216386,0.994973,0.44445,0.680054,0.114442,0.409556,0.8078,0.849096,0.916818,0.681621,0.737262,0.242179,0.424995,0.0612,0.623674,0.231502,0.0962792,0.356701,0.218601,0.744908,0.0552931,0.464785,0.846426,0.867633,0.137593,0.0872375,0.237584,0.51936,0.670716,0.407113,0.686279,0.563228,0.135381,0.0370243,0.917947,0.615655,0.101002,0.0950894,0.262479,0.545878,0.0902379,0.884105,0.913751,0.956555,0.624658,0.372831,0.431616,0.888492,0.556636,0.218275,0.259327,0.572962,0.209451,0.104331,0.0463919,0.84465,0.310394,0.860068,0.221911,0.0161361,0.823784,0.43361,0.153111,0.952534,0.525327,0.921201,0.647929,0.662845,0.979933,0.432704,0.214994,0.960109,0.722161,0.793245,0.365719,0.255337,0.979271,0.710787,0.104225,0.301655,0.836581,0.603709,0.870941,0.210741,0.823871,0.216799,0.352667,0.802835,0.559067,0.271479,0.645408,0.308857,0.746813,0.526956,0.792849,0.536712,0.704829,0.243128,0.406159,0.258851,0.669469,0.371968,0.208754,0.71137,0.824211,0.940272,0.0115715,0.040621,0.122389,0.833469,0.792849,0.145548,0.392342,0.143092,0.662452,0.388632,0.204861,0.98192,0.454574,0.64172,0.113849,0.73539,0.757736,0.338973,0.852958,0.699913,0.0356663,0.0807435,0.0597603,0.646816,0.306676,0.296087,0.0866109,0.531109,0.35902,0.0995379,0.0650313,0.817983,0.520474,0.830981,0.696314,0.826941,0.971943,0.542159,0.716033,0.340576,0.0369427,0.736815,0.882806,0.273449,0.0182917,0.300623,0.0227682,0.917931,0.308825,0.0540239,0.363389,0.460967,0.271603,0.496981,0.1569,0.771849,0.0331038,0.207286,0.417449,0.394381,0.451872,0.873179,0.200535,0.200892,0.606715,0.970849,0.965779,0.559106,0.639381,0.975129,0.743679,0.888716,0.478287,0.329099,0.189833,0.981824,0.42549,0.210191,0.537944,0.774364,0.503554,0.368527,0.922862,0.80484,0.450344,0.52499,0.357934,0.73188,0.9138,0.213643,0.0180783,0.00913304,0.792613,0.0916584,0.500898,0.625775,0.860397,0.477475,0.718756,0.409513,0.569516,0.2767,0.888749,0.386266,0.477132,0.959693,0.863609,0.267478,0.0945181,0.445744,0.500691,0.254727,0.927364,0.587372,0.0556085,0.235941,0.624612,0.4564,0.0239661,0.956562,0.663309,0.701745,0.130199,0.847347,0.706985,0.99118,0.791643,0.80313,0.0792002,0.543423,0.86177,0.495205,0.0878205,0.732364,0.172997,0.940959,0.973412,0.952042,0.465438,0.0616599,0.863313,0.881892,0.780324,0.68237,0.380943,0.207502,0.978627,0.550908,0.37046,0.891181,0.261804,0.507599,0.0733477,0.657681,0.423757,0.49489,0.167264,0.288471,0.407437,0.323354,0.258557,0.440978,0.39498,0.560302,0.837613,0.523182,0.695697,0.462037,0.415207,0.780292,0.733661,0.107519,0.0277012,0.9762,0.171857,0.721009,0.535505,0.559386,0.502829,0.343608,0.982801,0.201902,0.143817,0.44631,0.921561,0.565441,0.0629029,0.0033406,0.106378,0.93222,0.915652,0.543789,0.294112,0.264809,0.525112,0.844131,0.291692,0.702412,0.248457,0.733305,0.49683,0.27204,0.460595,0.602739,0.631918,0.683046,0.131555,0.264553,0.0570059,0.491508,0.874141,0.234035,0.965539,0.421544,0.706284,0.25075,0.570747,0.692459,0.203055,0.348176,0.307196,0.244212,0.892865,0.259442,0.430515,0.952094,0.338399,0.773887,0.844396,0.190062,0.599655,0.0467112,0.606853,0.115684,0.727249,0.054785,0.870606,0.463723,0.606063,0.21544,0.192376,0.219418,0.68144,0.55202,0.349554,0.294707,0.927036,0.196585,0.0772378,0.311738,0.0598636,0.564715,0.906203,0.725288,0.319422,0.622036,0.261977,0.20331,0.327309,0.871628,0.777386,0.422177,0.786681,0.0449675,0.488167,0.581852,0.296195,0.798623,0.965846,0.0139408,0.307551,0.256202,0.695356,0.262166,0.977714,0.0122741,0.157001,0.644498,0.8094,0.494384,0.7018,0.377208,0.576456,0.348486,0.0662834,0.314603,0.419566,0.273332,0.435852,0.933138,0.36624,0.421743,0.463555,0.703164,0.258976,0.915922,0.951551,0.103738,0.916521,0.529137,0.288377,0.642936,0.639649,0.670046,0.483494,0.321859,0.680836,0.867772,0.77511,0.254332,0.67142,0.965824,0.56063,0.776572,0.0105286,0.993492,0.239733,0.693689,0.910313,0.606095,0.118336,0.218325,0.996013,0.301133,0.284361,0.476339,0.604409,0.296452,0.485821,0.797147,0.592539,0.246026,0.0963584,0.444609,0.50304,0.442337,0.412244,0.447409,0.856688,0.244147,0.69043,0.062821,0.963082,0.813594,0.109472,0.910272,0.551581,0.00130409,0.792151,0.235821,0.851462,0.212967,0.0615907,0.7182,0.0248935,0.576995,0.115744,0.519685,0.0280013,0.688616,0.570457,0.246144,0.645229,0.316352,0.499481,0.240522,0.992642,0.646429,0.670677,0.317975,0.757626,0.0702929,0.151617,0.248974,0.668693,0.061029,0.26776,0.460115,0.214877,0.435933,0.0217249,0.261693,0.0381992,0.145764,0.654799,0.967147,0.185273,0.616632,0.959099,0.385022,0.249732,0.760111,0.966207,0.0980395,0.331071,0.212,0.0443219,0.0476548,0.125668,0.526399,0.5206,0.101754,0.331039,0.993428,0.677777,0.686558,0.26062,0.507983,0.0699257,0.92616,0.565216,0.012473,0.563348,0.784126,0.338409,0.337437,0.569274,0.686745,0.779398,0.864957,0.0133432,0.119135,0.634735,0.0930799,0.48177,0.190496,0.222485,0.0436999,0.869459,0.809618,0.376237,0.441295,0.896741,0.263262,0.507099,0.390446,0.486754,0.177864,0.257949,0.0720076,0.218237,0.0255979,0.308163,0.476633,0.199866,0.71778,0.930602,0.193688,0.176714,0.360145,0.0129392,0.182158,0.629155,0.239973,0.587505,0.210512,0.30636,0.938846,0.190148,0.271707,0.316014,0.891501,0.317056,0.278777,0.115267,0.653878,0.269002,0.171538,0.0151803,0.748856,0.285683,0.0682222,0.451894,0.589532,0.654754,0.45052,0.879551,0.353847,0.18273,0.831917,0.153284,0.161917,0.436476,0.703479,0.715629,0.918754,0.827524,0.985087,0.951838,0.76728,0.640014,0.960828,0.0425342,0.882881,0.122232,0.0383716,0.145283,0.937783,0.763156,0.864662,0.765624,0.68157,0.594375,0.259256,0.586309,0.559654,0.085276,0.458165,0.585734,0.28447,0.0306937,0.627009,0.789899,0.378158,0.610911,0.728141,0.0810476,0.571592,0.109061,0.360049,0.81414,0.956437,0.200468,0.150996,0.52588,0.186485,0.712347,0.90015,0.728968,0.750878,0.49611,0.838598,0.78744,0.463621,0.191806,0.239843,0.551138,0.378632,0.280718,0.943206,0.375881,0.324685,0.625937,0.933589,0.389137,0.615984,0.65438,0.745167,0.479827,0.993146,0.176522,0.115475,0.868591,0.719602,0.467123,0.0134658,0.149647,0.0926591,0.945794,0.226105,0.737038,0.19632,0.133354,0.738964,0.59514,0.779917,0.489683,0.400781,0.785061,0.209118,0.966851,0.55057,0.564108,0.568617,0.533071,0.330909,0.933147,0.585896,0.958138,0.308948,0.374574,0.00968874,0.609564,0.856818,0.834626,0.350501,0.184748,0.939278,0.300584,0.205612,0.0105972,0.263753,0.974188,0.106412,0.243957,0.41057,0.194956,0.849175,0.686807,0.20294,0.489479,0.744899,0.490058,0.024453,0.188703,0.185951,0.10674,0.481814,0.999588,0.0969412,0.275528,0.613035,0.935247,0.372984,0.171887,0.566447,0.22077,0.151395,0.147512,0.825604,0.431505,0.23695,0.0578986,0.992706,0.0445505,0.924916,0.417685,0.340889,0.801062,0.423502,0.307567,0.900275,0.851719,0.728817,0.0190735,0.63653,0.533941,0.446316,0.671186,0.797177,0.139092,0.881782,0.895831,0.20307,0.833098,0.930169,0.051628,0.713369,0.774691,0.782208,0.0754962,0.0247834,0.900418,0.0969957,0.0421694,0.528107,0.858666,0.504523,0.121444,0.151945,0.720805,0.968365,0.332602,0.677398,0.978642,0.40935,0.921111,0.661234,0.539313,0.705018,0.967469,0.631127,0.605955,0.571207,0.305689,0.730419,0.563029,0.432178,0.316968,0.677849,0.821941,0.789581,0.746339,0.612382,0.318521,0.178526,0.211223,0.0702028,0.0160472,0.34219,0.881879,0.00484949,0.0138595,0.695359,0.680693,0.859379,0.928386,0.123432,0.897351,0.107795,0.0430989,0.833274,0.436333,0.404207,0.385795,0.597258,0.362312,0.749488,0.911009,0.751209,0.642031,0.0152792,0.435458,0.420936,0.596923,0.239051,0.47041,0.740464,0.177761,0.789274,0.829669,0.298863,0.380213,0.116878,0.182181,0.491354,0.297528,0.815199,0.899978,0.574757,0.282668,0.225984,0.133576,0.879236,0.208615,0.8479,0.403288,0.396726,0.170466,0.193679,0.704773,0.101047,0.56193,0.355071,0.232258,0.100384,0.378234,0.167967,0.810624,0.523351,0.0936689,0.417812,0.164201,0.157925,0.455028,0.0829213,0.98465,0.41541,0.331727,0.696146,0.281347,0.80323,0.776624,0.415879,0.552913,0.765367,0.870911,0.348222,0.664815,0.031026,0.0646092,0.678543,0.698013,0.421343,0.563402,0.247186,0.0709262,0.991223,0.647637,0.17267,0.529755,0.206957,0.580062,0.682264,0.926663,0.292586,0.638535,0.592565,0.674595,0.571837,0.728976,0.331291,0.390086,0.910749,0.577345,0.842048,0.568579,0.970755,0.634792,0.319553,0.371757,0.986508,0.807921,0.843709,0.980657,0.786432,0.76614,0.843662,0.173122,0.35781,0.665342,0.73859,0.37792,0.716736,0.686482,0.118616,0.189235,0.493043,0.03972,0.629432,0.931564,0.348661,0.134859,0.0485704,0.94969,0.535049,0.590115,0.126047,0.255694,0.983768,0.14313,0.987903,0.967544,0.846045,0.779261,0.873301,0.621416,0.187624,0.287866,0.748725,0.870088,0.918196,0.855193,0.889033,0.575784,0.496606,0.34174,0.125976,0.0544723,|0.023307,0.467096,0.145376,0.268858,0.0548083,0.655413,0.23016,0.363812,0.0119979,0.820982,0.546452,0.42053,0.351536,0.758834,0.565519,0.657975,0.00344759,0.646188,0.675273,0.247872,0.241296,0.85797,0.485535,0.413279,0.337139,0.690723,0.120086,0.801614,0.381916,0.322681,0.437028,0.919856,0.0373623,0.206098,0.0456023,0.682127,0.248584,0.653655,0.0967744,0.171314,0.411573,0.914435,0.228772,0.807797,0.751564,0.579724,0.715351,0.732292,0.740883,0.279453,0.841813,0.152424,0.594655,0.615304,0.808468,0.129141,0.268746,0.951557,0.305369,0.474456,0.137426,0.820922,0.155835,0.716804,0.690513,0.189352,0.822274,0.699905,0.679416,0.336136,0.644704,0.0746691,0.422418,0.580948,0.20601,0.0729702,0.597358,0.737384,0.474386,0.0126175,0.647798,0.971655,0.125183,0.167627,0.465854,0.0454106,0.0852126,0.0300805,0.192889,0.384343,0.944507,0.95672,0.323213,0.700396,0.354614,0.771175,0.97356,0.460075,0.310174,0.228257,0.505888,0.717783,0.163652,0.307861,0.566091,0.0580822,0.0475786,0.778327,0.21257,0.124925,0.288178,0.888698,0.647948,0.738808,0.875759,0.298457,0.847281,0.388525,0.937379,0.413726,0.260173,0.0321199,0.97884,0.554095,0.676338,0.176608,0.439166,0.39149,0.787852,0.775243,0.596774,0.147528,0.174919,0.0522553,0.767107,0.399525,0.514193,0.835035,0.382872,0.250848,0.671363,0.712452,0.631408,0.609304,0.663533,0.365381,0.674834,0.867594,0.524036,0.971639,0.775757,0.606186,0.334404,0.732269,0.578517,0.725499,0.254953,0.710513,0.388674,0.446053,0.118409,0.871579,0.0903016,0.946967,0.0391549,0.53147,0.963228,0.759116,0.914411,0.680255,0.333325,0.615739,0.792542,0.376097,0.0529203,0.126879,0.289043,0.762034,0.98444,0.361966,0.592696,0.451181,0.910785,0.305188,0.962404,0.0818703,0.311809,0.265933,0.216392,0.174167,0.404679,0.99316,0.319376,0.151794,0.656906,0.211229,0.990298,0.353821,0.714703,0.667053,0.993106,0.761803,0.717787,0.0145917,0.513418,0.319814,0.857942,0.00787288,0.846198,0.609968,0.870424,0.660365,0.234369,0.950176,0.764472,0.706758,0.232096,0.600523,0.61969,0.542067,0.227325,0.696842,0.814068,0.817607,0.656685,0.0740163,0.662837,0.256487,0.191969,0.421326,0.827447,0.583521,0.528852,0.408346,0.683645,0.225777,0.311363,0.237829,0.902904,0.867422,0.830607,0.803079,0.275565,0.438908,0.181564,0.554346,0.347278,0.521752,0.051542,0.599647,0.669157,0.175448,0.216396,0.468504,0.797984,0.861306,0.864338,0.518703,0.558057,0.576384,0.341249,0.722651,0.012026,0.465149,0.621107,0.377011,0.652606,0.031645,0.663847,0.771651,0.497531,0.124966,0.491674,0.644965,0.847727,0.915451,0.20846,0.386446,0.581972,0.774284,0.955683,0.0763596,0.790574,0.555892,0.662231,0.110153,0.717003,0.52928,0.621617,0.599395,0.944502,0.642086,0.435863,0.736169,0.536373,0.82527,0.528674,0.113816,0.786399,0.87716,0.053612,0.317109,0.0127614,0.485276,0.559148,0.805789,0.354981,0.790766,0.50071,0.326817,0.548826,0.620743,0.689238,0.616252,0.1926,0.489757,0.751107,0.612297,0.897321,0.801702,0.784258,0.330101,0.931332,0.42631,0.388007,0.244403,0.651981,0.343839,0.902325,0.600987,0.744591,0.515385,0.897169,0.42083,0.457138,0.892228,0.152673,0.936135,0.511728,0.584852,0.517677,0.78851,0.161663,0.819766,0.441321,0.0121782,0.975402,0.768566,0.762902,0.461858,0.831434,0.40374,0.502349,0.208553,0.487222,0.571198,0.956256,0.169995,0.166954,0.0290401,0.27536,0.511885,0.191356,0.63125,0.244914,0.0568737,0.777413,0.092047,0.571615,0.992905,0.667501,0.781516,0.32101,0.00652373,0.117634,0.443895,0.387466,0.664004,0.512473,0.985608,0.548254,0.359167,0.294716,0.850755,0.523884,0.871864,0.559726,0.875943,0.699364,0.727176,0.201159,0.748804,0.199009,0.487093,0.729201,0.0540096,0.950976,0.770117,0.885159,0.248395,0.408939,0.938587,0.736735,0.701692,0.170533,0.759492,0.484918,0.182208,0.312781,0.957945,0.875886,0.124227,0.992818,0.317189,0.446451,0.959126,0.170166,0.946471,0.530819,0.732335,0.319644,0.745882,0.345284,0.814019,0.767931,0.254708,0.505159,0.146125,0.521164,0.98702,0.887981,0.937617,0.389296,0.701221,0.440896,0.845748,0.910197,0.796765,0.263415,0.260249,0.804796,0.665708,0.701215,0.915973,0.81646,0.323461,0.142517,0.450846,0.861529,0.898925,0.0407293,0.458929,0.396803,0.0869231,0.33221,0.227624,0.548798,0.277579,0.0725646,0.18792,0.443389,0.598208,0.115431,0.682904,0.723389,0.430333,0.373712,0.780753,0.463732,0.718372,0.40286,0.822498,0.466272,0.841419,0.704097,0.0362812,0.749295,0.420612,0.648741,0.976584,0.864961,0.0506403,0.293343,0.13779,0.473894,0.850808,0.894869,0.807434,0.618477,0.654902,0.0529461,0.668959,0.28234,0.706643,0.951685,0.014771,0.975594,0.154888,0.422414,0.237994,0.826029,0.539895,0.82282,0.833507,0.013075,0.494872,0.214017,0.961561,0.621995,0.211238,0.409606,0.846131,0.900335,0.322396,0.985072,0.512233,0.311221,0.459707,0.26099,0.402721,0.300332,0.90872,0.471486,0.605088,0.880837,0.495649,0.173054,0.0188826,0.273628,0.333235,0.50418,0.768895,0.584027,0.780599,0.928167,0.531591,0.314633,0.293659,0.793953,0.0674576,0.216102,0.185423,0.762103,0.42037,0.934075,0.375393,0.160631,0.95437,0.347676,0.265102,0.732912,0.335275,0.319794,0.192713,0.570728,0.115956,0.318346,0.114477,0.392238,0.0979238,0.495983,0.95483,0.496021,0.598409,0.976003,0.420263,0.545895,0.677899,0.349269,0.0405731,0.60029,0.205027,0.115308,0.410751,0.608962,0.223414,0.012094,0.0464692,0.934751,0.0706002,0.871524,0.555498,0.614046,0.79065,0.364524,0.449776,0.482444,0.568032,0.295227,0.013303,0.124479,0.206306,0.338181,0.629084,0.397882,0.0280417,0.0941712,0.368145,0.211173,0.044654,0.76677,0.262906,0.173362,0.0729559,0.120166,0.916192,0.71074,0.467167,0.538204,0.714804,0.12649,0.979525,0.67628,0.607787,0.0145783,0.0558028,0.648725,0.559065,0.460395,0.907947,0.20527,0.319783,0.868069,0.0535241,0.685613,0.688155,0.0465069,0.866209,0.683878,0.404938,0.785198,0.0179167,0.477497,0.207042,0.289985,0.129784,0.245053,0.192798,0.777361,0.344608,0.143453,0.457342,0.375822,0.906923,0.547331,0.402102,0.819768,0.735522,0.333044,0.130857,0.786677,0.377734,0.119858,0.973477,0.926208,0.218724,0.131388,0.798729,0.213261,0.0793992,0.223953,0.659336,0.133279,0.700233,0.296143,0.340953,0.203249,0.919732,0.174478,0.400779,0.058103,0.655965,8.37445e-05,0.299089,0.860214,0.334909,0.963343,0.251235,0.53345,0.242629,0.593296,0.30972,0.0314829,0.157558,0.825461,0.0190651,0.905691,0.379844,0.289639,0.402468,0.706595,0.680914,0.163539,0.514524,0.858454,0.13903,0.504185,0.418527,0.829695,0.30875,0.86048,0.813776,0.951221,0.124889,0.311326,0.722611,0.740398,0.190348,0.35601,0.710124,0.964698,0.291073,0.573636,0.0749066,0.945817,0.972854,0.253089,0.306466,0.159205,0.680067,0.482609,0.498106,0.750741,0.119192,0.459732,0.0134301,0.703134,0.756047,0.924244,0.0164318,0.339439,0.236666,0.672334,0.243772,0.843421,0.254827,0.733336,0.908839,0.104679,0.434597,0.269526,0.880335,0.383968,0.16801,0.421065,0.396191,0.389603,0.775931,0.237747,0.197633,0.356151,0.721029,0.355628,0.403329,0.288173,0.417303,0.353455,0.283714,0.744475,0.153232,0.0197635,0.201948,0.0826924,0.787562,0.230575,0.442222,0.697318,0.220359,0.173068,0.462353,0.466292,0.754354,0.353158,0.160547,0.9767,0.542017,0.418125,0.975934,0.630779,0.759213,0.523929,0.844772,0.346008,0.71769,0.920022,0.606455,0.705386,0.77766,0.165439,0.487914,0.799041,0.526802,0.962576,0.26533,0.579203,0.0633241,0.515678,0.987866,0.238593,0.713958,0.449355,0.748019,0.378234,0.453345,0.374423,0.972135,0.22192,0.39256,0.794732,0.32719,0.448639,0.105353,0.683184,0.127062,0.721951,0.359319,0.568689,0.487112,0.770281,0.887337,0.608811,0.236483,0.877804,0.236428,0.450449,0.950894,0.247972,0.693505,0.91662,0.493271,0.714328,0.160232,0.4099,0.274232,0.388023,0.55772,0.29256,0.145001,0.642278,0.985396,0.285539,0.382952,0.43268,0.139021,0.717446,0.301787,0.942148,0.423907,0.973608,0.167955,0.415417,0.481012,0.479749,0.39786,0.995543,0.0911463,0.39092,0.303478,0.751036,0.14863,0.636593,0.898616,0.265036,0.163496,0.630448,0.668738,0.368375,0.500373,0.941218,0.712401,0.369113,0.526775,0.453396,0.419781,0.991033,0.13294,0.594878,0.29454,0.0423954,0.816796,0.48932,0.265618,0.916691,0.844191,0.611649,0.395186,0.152844,0.865209,0.634072,0.601444,0.721187,0.00346917,0.45877,0.0704655,0.325243,0.581838,0.115148,0.12113,0.412821,0.99246,0.190292,0.589708,0.70583,0.511608,0.257743,0.82243,0.29149,0.533245,0.465339,0.457688,0.223896,0.194152,0.258648,0.491144,0.267966,0.688588,0.964973,0.242621,0.421653,0.145496,0.7673,0.375603,0.863239,0.411613,0.935443,0.364227,0.031321,0.374121,0.811846,0.482885,0.550035,0.0362532,0.515234,0.510564,0.754527,0.237562,0.77824,0.896111,0.529148,0.864299,0.827598,0.282823,0.407523,0.658579,0.287992,0.0373759,0.418309,0.0798573,0.873507,0.378282,0.846854,0.222228,0.300282,0.942432,0.0136307,0.245791,0.138396,0.99521,0.962681,0.826782,0.432094,0.575792,0.530406,0.368412,0.486629,0.0305969,0.115374,0.365648,0.883757,0.586516,0.850361,0.378772,0.707162,0.627225,0.62009,0.407663,0.637672,0.823845,0.961721,0.145084,0.451238,0.0579571,0.498626,0.684932,0.545557,0.0739889,0.25911,0.444152,0.654943,0.48163,0.342553,0.778099,0.460558,0.774824,0.61611,0.828611,0.0896201,0.745165,0.507228,0.253324,|0.791352,0.130112,0.894566,0.0645747,0.0873492,0.0445312,0.528224,0.923541,0.468566,0.402864,0.0908734,0.374679,0.409317,0.837294,0.358116,0.00420749,0.372114,0.742638,0.271406,0.00609541,0.185845,0.892231,0.212476,0.12961,0.547999,0.492139,0.0418644,0.889356,0.493977,0.517358,0.279047,0.107916,0.557153,0.53216,0.111474,0.836755,0.50488,0.941294,0.840987,0.266133,0.675108,0.145438,0.190365,0.610385,0.694989,0.492589,0.0266111,0.55799,0.238565,0.107059,0.337138,0.0502504,0.97212,0.570978,0.703004,0.716251,0.720932,0.898138,0.47094,0.429034,0.14664,0.0953439,0.555673,0.24742,0.595162,0.476732,0.493289,0.0732158,0.185322,0.148553,0.439662,0.830637,0.252156,0.0247688,0.453331,0.790424,0.545172,0.374979,0.45406,0.579129,0.230065,0.911553,0.495764,0.244996,0.803639,0.553683,0.422132,0.790342,0.802599,0.277243,0.757029,0.428118,0.698973,0.637761,0.116565,0.848943,0.498469,0.401188,0.489749,0.734789,0.433045,0.233366,0.959555,0.555651,0.914672,0.477424,0.253739,0.498058,0.423715,0.195706,0.957587,0.0515742,0.602143,0.633309,0.982601,0.497914,0.634881,0.404945,0.673118,0.897349,0.0915304,0.615534,0.175742,0.928425,0.628289,0.172645,0.84544,0.935043,0.0314164,0.365143,0.565175,0.36603,0.68417,0.120631,0.449215,0.851582,0.324877,0.503873,0.53124,0.0449473,0.848267,0.207937,0.768359,0.489611,0.455559,0.288656,0.915014,0.13334,0.942619,0.593426,0.0535057,0.522136,0.582439,0.468922,0.712472,0.638931,0.995219,0.861115,0.162677,0.105096,0.930571,0.666603,0.00127524,0.0873968,0.364083,0.470391,0.572436,0.205717,0.802488,0.0253391,0.304435,0.79689,0.408772,0.222439,0.266741,0.266804,0.277748,0.324073,0.980893,0.859545,0.434534,0.406715,0.574324,0.166867,0.684795,0.137007,0.35895,0.854751,0.538851,0.00357735,0.715453,0.961316,0.833778,0.132003,0.701753,0.712074,0.582499,0.478397,0.561284,0.969402,0.444826,0.828505,0.429984,0.477926,0.913981,0.302018,0.33603,0.126164,0.945183,0.180181,0.755749,0.496857,0.801417,0.427537,0.358972,0.0843484,0.799766,0.73398,0.488654,0.443446,0.117937,0.181771,0.320625,0.605553,0.229405,0.982338,0.443164,0.889547,0.295931,0.851865,0.953029,0.017712,0.902198,0.935126,0.936701,0.768964,0.220972,0.239049,0.90913,0.544115,0.483213,0.569521,0.580929,0.271867,0.551716,0.843977,0.129653,0.25417,0.712533,0.285415,0.696058,0.407958,0.597094,0.33462,0.110812,0.68895,0.202324,0.725492,0.96414,0.703754,0.806642,0.67396,0.773933,0.500509,0.205965,0.388955,0.0185445,0.204744,0.383064,0.241868,0.894489,0.847388,0.000407398,0.731883,0.913893,0.781296,0.538629,0.990618,0.578959,0.0842543,0.580298,0.886504,0.797588,0.0841247,0.378817,0.212026,0.628646,0.491569,0.653667,0.450178,0.162305,0.683484,0.278226,0.765547,0.38302,0.697835,0.954741,0.765554,0.777423,0.829076,0.700463,0.213656,0.174095,0.0609617,0.555555,0.313429,0.349836,0.654375,0.485445,0.511137,0.707531,0.815014,0.281375,0.727958,0.151715,0.287471,0.376151,0.539271,0.520122,0.898777,0.919553,0.22921,0.538544,0.642029,0.127015,0.00946391,0.776648,0.336896,0.0694183,0.0246372,0.234654,0.545153,0.768928,0.929568,0.476483,0.93268,0.115864,0.494634,0.890132,0.531369,0.247969,0.238815,0.694542,0.469466,0.160067,0.723753,0.736185,0.978071,0.785603,0.603621,0.451221,0.405852,0.792949,0.604068,0.437006,0.189104,0.541954,0.659688,0.235507,0.943217,0.128431,0.53404,0.8463,0.532838,0.128961,0.956336,0.00759745,0.460471,0.630463,0.738905,0.107224,0.330644,0.619124,0.710618,0.435216,0.881107,0.0842079,0.722137,0.71518,0.771141,0.281767,0.527248,0.44982,0.846899,0.95366,0.687424,0.220262,0.61876,0.887471,0.831798,0.254162,0.942733,0.287117,0.0255969,0.961251,0.211889,0.172167,0.696004,0.921158,0.390587,0.276026,0.0721771,0.62359,0.771703,0.0766978,0.523104,0.0172746,0.650291,0.462721,0.435276,0.300332,0.783597,0.958895,0.0551733,0.503624,0.0838234,0.0281962,0.522402,0.336089,0.984429,0.851892,0.309778,0.0266533,0.194301,0.407956,0.936842,0.982703,0.131394,0.504118,0.804835,0.778862,0.344773,0.860195,0.176389,0.110976,0.840841,0.79261,0.473535,0.158529,0.72943,0.0591819,0.360501,0.0380099,0.717339,0.94871,0.902687,0.888958,0.888792,0.743623,0.893711,0.263609,0.0397688,0.467278,0.851604,0.873571,0.0277804,0.200982,0.0757232,0.799862,0.886249,0.626268,0.795617,0.372597,0.779603,0.659318,0.502563,0.481192,0.480278,0.00963211,0.383374,0.196501,0.0170145,0.709093,0.0652486,0.770968,0.815814,0.965406,0.231131,0.869741,0.638613,0.704457,0.874074,0.224925,0.24591,0.141238,0.538591,0.125137,0.682978,0.414235,0.055518,0.155131,0.607548,0.950756,0.126101,0.290535,0.919331,0.432119,0.213427,0.954146,0.146326,0.290447,0.745356,0.184301,0.00257421,0.00196958,0.460799,0.732548,0.103232,0.775296,0.600031,0.557286,0.348378,0.570006,0.776344,0.731136,0.526446,0.258042,0.556019,0.391273,0.857106,0.0951638,0.135163,0.662108,0.300748,0.11908,0.67052,0.457662,0.5524,0.731384,0.97312,0.585078,0.881572,0.83649,0.126975,0.235657,0.124679,0.633095,0.188231,0.00985044,0.80253,0.532464,0.856525,0.507942,0.755392,0.84283,0.0287623,0.0656812,0.504275,0.28231,0.00266433,0.179667,0.129298,0.334643,0.316642,0.428081,0.809467,0.727091,0.635783,0.366493,0.209812,0.139923,0.63807,0.588815,0.0673963,0.906466,0.881328,0.247292,0.758224,0.354923,0.657305,0.975543,0.0366657,0.523799,0.930623,0.674723,0.401733,0.81244,0.635118,0.983355,0.853443,0.120044,0.196063,0.358169,0.581967,0.728007,0.816323,0.584893,0.735876,0.638047,0.0778015,0.0851303,0.529505,0.498712,0.43167,0.803041,0.375512,0.797071,0.520052,0.57047,0.9603,0.0519468,0.542778,0.235701,0.741743,0.168492,0.951881,0.467604,0.409886,0.379675,0.426342,0.107603,0.234989,0.527479,0.598633,0.238493,0.810156,0.984097,0.239216,0.907007,0.889569,0.654603,0.778549,0.0637863,0.293626,0.0793676,0.337802,0.227386,0.446769,0.931786,0.489275,0.192382,0.129359,0.0334949,0.903609,0.73555,0.577543,0.950958,0.442712,0.0657419,0.685049,0.344146,0.441788,0.0874237,0.836239,0.374824,0.833815,0.370416,0.640017,0.195354,0.421313,0.178216,0.182979,0.535881,0.783572,0.314734,0.620444,0.415449,0.785408,0.063369,0.600408,0.869925,0.175257,0.526067,0.524745,0.190135,0.237854,0.763445,0.861361,0.190375,0.188202,0.793792,0.933366,0.41506,0.973967,0.0203963,0.71851,0.778387,0.965024,0.64709,0.0648616,0.273252,0.723657,0.616585,0.278418,0.768396,0.303501,0.0659301,0.489313,0.557058,0.441099,0.808294,0.204949,0.55303,0.907817,0.745997,0.568386,0.81748,0.599485,0.155633,0.883595,0.876236,0.467785,0.548659,0.276288,0.417578,0.076588,0.681366,0.0270919,0.692704,0.550321,0.219026,0.366648,0.151608,0.144447,0.975385,0.519205,0.815493,0.412263,0.606136,0.0465987,0.833194,0.29569,0.239324,0.946031,0.374844,0.0765354,0.293764,0.39676,0.408949,0.317715,0.822952,0.049005,0.259747,0.109158,0.87221,0.47333,0.910106,0.839498,0.821951,0.149227,0.170534,0.773165,0.923637,0.347533,0.756478,0.223821,0.712827,0.043205,0.295783,0.780356,0.103383,0.906935,0.450247,0.0439903,0.369558,0.883986,0.274049,0.803483,0.520105,0.385628,0.282832,0.751777,0.603509,0.870605,0.05742,0.751663,0.646963,0.501979,0.164565,0.805404,0.669279,0.573778,0.157452,0.301718,0.437412,0.280483,0.30967,0.471417,0.490389,0.461515,0.355666,0.442518,0.209063,0.624009,0.284862,0.632315,0.906203,0.143999,0.0584812,0.198085,0.303145,0.705929,0.552827,0.921511,0.67851,0.323214,0.672939,0.378726,0.824062,0.254648,0.0949488,0.314686,0.40669,0.657294,0.70508,0.820475,0.224574,0.732574,0.923254,0.602983,0.79651,0.40685,0.673915,0.0829024,0.607014,0.582639,0.584539,0.978473,0.00734979,0.734354,0.484389,0.207204,0.0482647,0.156189,0.276246,0.588968,0.620723,0.363273,0.28541,0.90974,0.171207,0.262736,0.326629,0.036831,0.873768,0.784864,0.998772,0.39232,0.953778,0.120126,0.916479,0.963359,0.617669,0.53262,0.430229,0.146522,0.559183,0.490184,0.378231,0.103929,0.888978,0.85654,0.883372,0.115984,0.0887983,0.740878,0.0316944,0.35071,0.136778,0.835992,0.621703,0.478642,0.0599514,0.703157,0.0793022,0.521957,0.520377,0.887385,0.867005,0.44641,0.831572,0.352972,0.424539,0.161612,0.35415,0.203232,0.61357,0.232908,0.776866,0.576948,0.799185,0.173168,0.447393,0.274813,0.565948,0.04899,0.946623,0.11363,0.937213,0.555333,0.247961,0.0210052,0.715976,0.687649,0.931855,0.949418,0.162097,0.169437,0.0785578,0.409508,0.556462,0.0565407,0.633928,0.712316,0.608131,0.217858,0.301488,0.849621,0.0202233,0.221781,0.76122,0.887142,0.516665,0.705868,0.630068,0.55275,0.333941,0.157425,0.422879,0.733581,0.665028,0.798525,0.33586,0.0321863,0.13402,0.141895,0.387101,0.188729,0.821052,0.562025,0.373222,0.267228,0.907416,0.642458,0.252073,0.792201,0.30394,0.154803,0.478104,0.464197,0.678491,0.564468,0.916029,0.166363,0.00424999,0.991843,0.232708,0.725907,0.14347,0.557712,0.960342,0.989555,0.0604065,0.448133,0.161436,0.892531,0.215511,0.772796,0.0773945,0.178367,0.247508,0.510888,0.609386,0.108785,0.190934,0.163508,0.20267,0.436101,0.449826,0.689395,0.589481,0.713602,0.33249,0.816442,0.497606,0.0353769,0.51979,0.326513,0.622676,0.0698037,0.0737789,0.250838,0.99486,0.677758,0.214233,0.257829,0.804628,0.40584,0.956558,0.520482,0.497716,0.680546,0.928529,0.669583,0.809033,0.451318,0.0439655,0.785819,0.959603,0.916619,|0.885828,0.325706,0.792084,0.949876,0.0937679,0.108,0.870895,0.283752,0.935539,0.347978,0.341888,0.0241166,0.849434,0.950429,0.681305,0.290333,0.464296,0.547148,0.578825,0.344374,0.828687,0.836261,0.224629,0.912767,0.417328,0.589473,0.202666,0.84222,0.558016,0.890473,0.407284,0.247503,0.635837,0.601256,0.120624,0.64204,0.092083,0.20156,0.11086,0.329662,0.787206,0.348311,0.0974859,0.0395205,0.97421,0.728225,0.777877,0.725792,0.156309,0.561955,0.470319,0.0320451,0.943721,0.258511,0.0145056,0.25527,0.660229,0.360827,0.883081,0.944002,0.375266,0.095543,0.512698,0.289629,0.865334,0.328392,0.209882,0.496794,0.986145,0.28936,0.214082,0.346518,0.802246,0.921601,0.311807,0.0762241,0.848901,0.085301,0.876788,0.778295,0.418752,0.939916,0.390601,0.16391,0.812945,0.198525,0.118796,0.114035,0.352699,0.060917,0.124051,0.929094,0.770934,0.704331,0.515631,0.776358,0.257276,0.653367,0.449385,0.742845,0.67637,0.286434,0.775654,0.133493,0.0645089,0.346027,0.116233,0.673253,0.671117,0.0839093,0.428181,0.625286,0.822463,0.877183,0.0789281,0.580015,0.837522,0.562102,0.978261,0.890589,0.73593,0.403157,0.523102,0.20561,0.125351,0.381506,0.753098,0.207633,0.202383,0.414395,0.552366,0.903197,0.182948,0.978204,0.61147,0.485639,0.328846,0.16498,0.43942,0.875665,0.497664,0.905025,0.63436,0.331578,0.568491,0.194572,0.955822,0.787654,0.72748,0.119928,0.379105,0.846611,0.788438,0.249555,0.360936,0.506474,0.713864,0.318609,0.134257,0.30145,0.480961,0.883645,0.982758,0.782465,0.70711,0.726831,0.99103,0.887428,0.296401,0.152299,0.652129,0.578908,0.57361,0.821722,0.823494,0.865402,0.665678,0.293727,0.510631,0.386764,0.728512,0.933372,0.131145,0.32069,0.937055,0.231992,0.512604,0.253186,0.81762,0.855598,0.837456,0.379546,0.0554995,0.0597944,0.8637,0.312078,0.631748,0.402304,0.453435,0.133736,0.586422,0.574782,0.194111,0.191459,0.0399888,0.0602748,0.582235,0.717332,0.0753057,0.0299149,0.772665,0.148974,0.0220684,0.216809,0.755651,0.779529,0.0655939,0.662421,0.432339,0.17893,0.170909,0.807559,0.390733,0.832001,0.946604,0.154615,0.278571,0.257102,0.890439,0.576153,0.929436,0.691328,0.604327,0.468915,0.178958,0.164262,0.322911,0.0736986,0.598839,0.0433542,0.455002,0.873484,0.877433,0.466847,0.252201,0.805252,0.0865172,0.828863,0.718039,0.892537,0.456137,0.895184,0.758272,0.233119,0.161319,0.295458,0.559908,0.221541,0.61455,0.500574,0.854632,0.136215,0.483002,0.310661,0.747853,0.0647935,0.160462,0.136284,0.733119,0.902579,0.250685,0.377449,0.766932,0.300445,0.75287,0.403861,0.152099,0.960407,0.18755,0.929307,0.769575,0.111988,0.144245,0.825767,0.785325,0.705371,0.451294,0.585722,0.215639,0.55024,0.625124,0.0056783,0.895844,0.701634,0.056016,0.914501,0.600871,0.295256,0.197517,0.835748,0.917148,0.836869,0.513625,0.750535,0.471301,0.747091,0.393274,0.675695,0.350434,0.221354,0.552136,0.00345087,0.185444,0.267567,0.635999,0.195073,0.21225,0.407323,0.0969073,0.254229,0.218551,0.413485,0.540917,0.236522,0.541227,0.342867,0.260088,0.0433002,0.73352,0.523872,0.105656,0.215609,0.851844,0.85354,0.962623,0.266038,0.155231,0.486762,0.404965,0.0381115,0.653301,0.290156,0.233326,0.240623,0.815313,0.347365,0.228981,0.789987,0.833819,0.128458,0.171501,0.244282,0.865783,0.742941,0.577489,0.930836,0.0967577,0.437501,0.169173,0.543172,0.406505,0.156122,0.767147,0.600873,0.873734,0.0819121,0.741281,0.26143,0.408939,0.256153,0.770595,0.141602,0.13932,0.46577,0.483637,0.260614,0.415613,0.100321,0.511523,0.2352,0.685929,0.947455,0.4285,0.127676,0.581476,0.415956,0.207694,0.315793,0.479117,0.876099,0.307437,0.782331,0.667458,0.174266,0.989896,0.517335,0.726652,0.222025,0.0951066,0.949651,0.116544,0.0846739,0.547508,0.652165,0.991459,0.145072,0.961268,0.0363236,0.245983,0.272309,0.775964,0.560658,0.7741,0.716653,0.997203,0.786326,0.874853,0.348977,0.125923,0.311253,0.123709,0.139341,0.335581,0.114196,0.921726,0.0211108,0.956194,0.266779,0.556961,0.895832,0.771958,0.812181,0.737022,0.833969,0.392784,0.535418,0.0304512,0.354315,0.548506,0.885527,0.044218,0.51847,0.638828,0.945194,0.543714,0.583907,0.612683,0.864058,0.403173,0.021373,0.223358,0.157206,0.101887,0.982775,0.983076,0.247487,0.306997,0.858087,0.181271,0.62088,0.395445,0.971466,0.398536,0.720516,0.640507,0.77979,0.916582,0.000467718,0.521146,0.943475,0.81998,0.867765,0.687881,0.485119,0.1343,0.276691,0.131609,0.893517,0.664947,0.322794,0.64991,0.955558,0.371427,0.15961,0.966189,0.928733,0.575994,0.219996,0.439772,0.821375,0.0833317,0.721341,0.928253,0.238815,0.426296,0.735496,0.648699,0.935916,0.0619695,0.598513,0.150874,0.498037,0.26311,0.511824,0.476578,0.107309,0.0190278,0.0973793,0.404128,0.560826,0.773934,0.145625,0.783963,0.232231,0.348404,0.488325,0.803998,0.137595,0.260393,0.317028,0.262329,0.211647,0.128157,0.710289,0.0440511,0.790651,0.184634,0.393066,0.100082,0.786973,0.153446,0.548238,0.502009,0.0778155,0.0284996,0.373653,0.687848,0.767209,0.760131,0.280456,0.592678,0.636941,0.685953,0.906447,0.410424,0.906243,0.259796,0.0931944,0.101145,0.02547,0.737119,0.384627,0.533446,0.374833,0.0752156,0.905355,0.628457,0.277205,0.31327,0.489478,0.358185,0.55396,0.922125,0.819462,0.418532,0.337405,0.755088,0.530768,0.385673,0.0735723,0.284913,0.95228,0.267076,0.185976,0.526371,0.732938,0.754845,0.470413,0.215581,0.963166,0.368758,0.166061,0.604156,0.788141,0.945812,0.725181,0.818694,0.893271,0.754227,0.45582,0.276141,0.990703,0.567235,0.83469,0.160734,0.29688,0.369684,0.556993,0.777874,0.348896,0.735209,0.00643021,0.107806,0.651065,0.704581,0.218475,0.546519,0.121238,0.670015,0.558748,0.0513364,0.660681,0.305531,0.447582,0.913634,0.671148,0.392573,0.370525,0.853282,0.186329,0.470583,0.953105,0.264156,0.680306,0.52208,0.52386,0.131358,0.296357,0.0337802,0.191619,0.952074,0.0533289,0.102827,0.468664,0.688964,0.721821,0.00819546,0.382342,0.709367,0.152479,0.233334,0.665075,0.271915,0.314167,0.773981,0.437386,0.39275,0.0684195,0.988234,0.168467,0.282286,0.275606,0.92355,0.665668,0.166846,0.38963,0.215631,0.2627,0.342322,0.195077,0.66506,0.573562,0.968018,0.455324,0.669448,0.162394,0.683218,0.273973,0.339198,0.762407,0.486318,0.542019,0.889538,0.529019,0.649063,0.530972,0.298867,0.601029,0.519149,0.481697,0.675812,0.198162,0.32902,0.743402,0.682404,0.826808,0.117322,0.343969,0.225763,0.997741,0.0550004,0.100793,0.902663,0.287549,0.674934,0.599749,0.401802,0.298734,0.812773,0.847263,0.532094,0.904885,0.483948,0.726323,0.0390937,0.869247,0.0457131,0.432755,0.581845,0.20961,0.951991,0.0113714,0.689262,0.691921,0.259952,0.743898,0.943241,0.759966,0.321201,0.666845,0.218335,0.822455,0.577964,0.961091,0.555498,0.872148,0.167063,0.74086,0.21331,0.722302,0.55137,0.652376,0.552945,0.983831,0.864728,0.121875,0.811288,0.0421163,0.944194,0.296503,0.761803,0.944057,0.609481,0.766092,0.262831,0.469734,0.734437,0.0214169,0.685304,0.0191992,0.623404,0.691257,0.813821,0.955427,0.253835,0.453093,0.153465,0.736845,0.907161,0.544829,0.730494,0.276322,0.803389,0.492396,0.19494,0.533196,0.453761,0.112392,0.445771,0.277665,0.95086,0.97949,0.803862,0.028715,0.0113557,0.909802,0.760132,0.349575,0.62284,0.804753,0.832171,0.962451,0.150004,0.261701,0.0876867,0.921449,0.85363,0.352352,0.807586,0.181908,0.923831,0.867513,0.529137,0.0280977,0.306468,0.849562,0.598755,0.896513,0.270505,0.226414,0.811426,0.0420673,0.151416,0.0421088,0.554937,0.350674,0.853437,0.213843,0.114625,0.932873,0.303464,0.13717,0.590697,0.343586,0.195381,0.369909,0.105268,0.794774,0.530678,0.360462,0.0976402,0.806021,0.650176,0.00168937,0.259175,0.16003,0.137227,0.288997,0.96608,0.734697,0.316567,0.204219,0.235307,0.306952,0.944816,0.783056,0.825056,0.507854,0.257669,0.721651,0.0937837,0.39512,0.0841038,0.915169,0.28325,0.213337,0.447678,0.269726,0.971021,0.525556,0.44478,0.930696,0.437943,0.41045,0.32554,0.919419,0.0672659,0.68548,0.81976,0.758599,0.446878,0.184367,0.560089,0.555032,0.580696,0.0868318,0.33214,0.741747,0.272611,0.939517,0.479207,0.383415,0.531369,0.0448673,0.0416321,0.0990667,0.357457,0.412132,0.63965,0.702663,0.997049,0.284975,0.696662,0.391047,0.680009,0.51624,0.478977,0.614214,0.404139,0.0532869,0.379553,0.0284724,0.482946,0.897353,0.974466,0.890315,0.497053,0.841092,0.484088,0.0927386,0.584016,0.568588,0.00356197,0.297256,0.283986,0.617406,0.858647,0.231101,0.479808,0.945195,0.228938,0.948372,0.0890953,0.898809,0.198793,0.683647,0.960017,0.309311,0.945992,0.329266,0.373363,0.726084,0.831448,0.708746,0.101615,0.719404,0.412634,0.487487,0.76603,0.145122,0.249843,0.0601911,0.351553,0.82925,0.894426,0.531158,0.958476,0.829014,0.777916,0.60732,0.0105283,0.915034,0.850625,0.593913,0.911544,0.50735,0.580608,0.228871,0.637022,0.0477431,0.0626415,0.656095,0.511791,0.952432,0.5339,0.895268,0.495337,0.940848,0.00235015,0.242169,0.17362,0.774059,0.761405,0.954766,0.671247,0.911153,0.972773,0.980609,0.371466,0.271274,0.567924,0.317646,0.529226,0.785708,0.116264,0.296921,0.837997,0.0179722,0.672654,0.603203,0.677168,0.922104,0.910591,0.55077,0.26021,0.735756,0.730237,0.756997,0.796135,0.208254,0.84042,0.662002,0.966391,0.919741,0.870173,0.320758,0.133363,0.994047,0.721366,0.225752,|0.950042,0.175946,0.535853,0.552109,0.854603,0.756049,0.479637,0.117058,0.959479,0.819007,0.360081,0.634912,0.649147,0.322646,0.860991,0.542628,0.331053,0.701334,0.813485,0.190097,0.0528217,0.913005,0.611369,0.758063,0.150592,0.776404,0.844803,0.108488,0.860276,0.769615,0.110508,0.942817,0.502374,0.860569,0.683866,0.0433933,0.522838,0.227547,0.0895528,0.915839,0.594953,0.277372,0.802156,0.800932,0.384023,0.237372,0.960751,0.826415,0.121597,0.918318,0.439487,0.183769,0.654912,0.668977,0.120764,0.680713,0.267372,0.112485,0.26755,0.00267118,0.72384,0.313888,0.637557,0.3089,0.181485,0.582801,0.0387118,0.147973,0.972118,0.656631,0.546451,0.00301009,0.245285,0.959736,0.164574,0.508582,0.482948,0.687462,0.117815,0.00944287,0.0356618,0.80893,0.467203,0.415332,0.128596,0.652136,0.8632,0.359181,0.00449282,0.609188,0.559115,0.552947,0.401836,0.999939,0.352973,0.0487625,0.90777,0.234953,0.158509,0.891715,0.0430242,0.68616,0.292273,0.507706,0.393644,0.105317,0.499024,0.481795,0.581654,0.41655,0.220003,0.431212,0.759202,0.27374,0.887086,0.124027,0.936665,0.938081,0.00783074,0.67349,0.584578,0.230243,0.978304,0.0615321,0.319125,0.0935154,0.231135,0.357329,0.423288,0.446234,0.186751,0.582446,0.464564,0.23477,0.240448,0.529163,0.967692,0.187958,0.816218,0.294701,0.61319,0.332933,0.904588,0.0913682,0.238235,0.910688,0.592633,0.949478,0.977349,0.865346,0.867105,0.0879359,0.67575,0.354143,0.584188,0.581164,0.999181,0.163243,0.303881,0.800913,0.804686,0.0568995,0.720056,0.403849,0.797041,0.88242,0.783637,0.721844,0.504433,0.673492,0.749819,0.404904,0.534016,0.826593,0.553817,0.727537,0.258694,0.736689,0.98764,0.73747,0.299414,0.367326,0.704968,0.53009,0.0093348,0.19554,0.62489,0.257606,0.139571,0.797183,0.475677,0.46376,0.787511,0.614473,0.750631,0.0756242,0.19402,0.107986,0.377333,0.0117402,0.814611,0.532815,0.995155,0.0615163,0.170527,0.968161,0.511382,0.675708,0.703495,0.602396,0.888404,0.0334988,0.335237,0.0135154,0.422248,0.892412,0.236938,0.41647,0.429104,0.31793,0.528086,0.781364,0.32603,0.855005,0.647475,0.5803,0.936145,0.0928814,0.0657722,0.0706679,0.20753,0.0494072,0.14075,0.940305,0.764502,0.083759,0.80152,0.0809897,0.268494,0.412393,0.337773,0.789089,0.696186,0.0516419,0.160796,0.303227,0.925261,0.234092,0.574807,0.542125,0.978468,0.242979,0.558764,0.283794,0.208426,0.410927,0.0410571,0.986868,0.478298,0.735661,0.311214,0.652922,0.261218,0.782775,0.140377,0.976361,0.462615,0.448485,0.704764,0.133925,0.177189,0.00718093,0.960537,0.271377,0.625007,0.737324,0.0809291,0.263615,0.281956,0.837927,0.667878,0.570146,0.160835,0.650581,0.958974,0.114956,0.825912,0.904695,0.703057,0.00984365,0.327479,0.460533,0.596668,0.863323,0.211991,0.86592,0.819982,0.049508,0.835581,0.471269,0.286432,0.207154,0.402999,0.172191,0.912358,0.991363,0.936876,0.551239,0.927153,0.494659,0.246255,0.359261,0.128284,0.166916,0.327968,0.386151,0.79957,0.676795,0.559436,0.0839071,0.215034,0.813885,0.847232,0.761254,0.723067,0.961844,0.50829,0.723857,0.101135,0.94671,0.646705,0.264761,0.204447,0.640219,0.504802,0.389264,0.137244,0.0467899,0.0785261,0.920147,0.162576,0.890601,0.563577,0.845307,0.201535,0.389009,0.579388,0.772048,0.209877,0.678028,0.184918,0.35932,0.451553,0.162069,0.375067,0.110161,0.062565,0.419093,0.735192,0.283496,0.69266,0.890873,0.159236,0.135707,0.982588,0.600831,0.188225,0.916382,0.616817,0.992007,0.158569,0.220572,0.284817,0.637373,0.138345,0.744987,0.685893,0.385546,0.114732,0.0433388,0.532938,0.361243,0.0130274,0.365989,0.617176,0.880148,0.0449069,0.866473,0.768323,0.673039,0.518098,0.0348966,0.994654,0.517672,0.760605,0.28677,0.0721719,0.684438,0.044358,0.510484,0.410558,0.445947,0.186889,0.486908,0.26191,0.275428,0.46709,0.890558,0.744814,0.770282,0.364483,0.733265,0.650867,0.255278,0.553432,0.822751,0.806091,0.580688,0.960342,0.293702,0.0844296,0.623968,0.473037,0.755969,0.842156,0.000388563,0.416549,0.460748,0.900794,0.688088,0.976101,0.574278,0.521669,0.755271,0.134339,0.807511,0.468516,0.849598,0.190545,0.970329,0.312388,0.453787,0.547024,0.634661,0.309515,0.152233,0.707728,0.986878,0.84909,0.258661,0.766845,0.664391,0.700589,0.307475,0.405218,0.69316,0.1702,0.932603,0.575812,0.00381309,0.713505,0.403131,0.486841,0.550617,0.236902,0.545477,0.796991,0.563755,0.254469,0.332843,0.931699,0.37209,0.934849,0.179553,0.703432,0.717326,0.872902,0.47566,0.834091,0.688553,0.254852,0.466258,0.838678,0.98699,0.788094,0.0506736,0.45951,0.67497,0.942777,0.624053,0.481098,0.675039,0.598377,0.954863,0.0353354,0.505383,0.303046,0.139742,0.251487,0.70179,0.198887,0.882239,0.892967,0.788197,0.76127,0.17859,0.861311,0.142497,0.419103,0.239089,0.221865,0.792953,0.695975,0.594053,0.186103,0.790022,0.540545,0.987516,0.365528,0.0738264,0.893496,0.362396,0.244892,0.504395,0.240328,0.343163,0.0774195,0.790889,0.00336266,0.896724,0.473505,0.925743,0.247122,0.553703,0.0614082,0.233454,0.684986,0.818411,0.159278,0.330803,0.573667,0.576666,0.314472,0.844478,0.281898,0.938912,0.212504,0.499799,0.378152,0.126031,0.820215,0.724335,0.142408,0.833182,0.184422,0.641979,0.935801,0.516463,0.40833,0.69066,0.0221797,0.901509,0.89597,0.523268,0.796432,0.238333,0.372751,0.119905,0.826423,0.568827,0.250492,0.0872141,0.845085,0.19784,0.79366,0.180363,0.840256,0.750576,0.228466,0.686584,0.046045,0.492384,0.0592493,0.312652,0.801438,0.193103,0.952002,0.748129,0.677468,0.749601,0.370536,0.453021,0.0120848,0.784566,0.0989067,0.720579,0.335451,0.456654,0.943523,0.40175,0.278222,0.16545,0.0583298,0.0072906,0.219753,0.0284168,0.38585,0.764126,0.905686,0.0512,0.982612,0.0172188,0.112868,0.488611,0.0655615,0.347838,0.795455,0.800664,0.200329,0.763794,0.83315,0.631911,0.205587,0.980331,0.395036,0.9771,0.714486,0.140317,0.172162,0.18835,0.0488707,0.768748,0.326023,0.387497,0.348152,0.224304,0.817084,0.564969,0.585553,0.462787,0.876369,0.442247,0.0146034,0.224265,0.562583,0.0498868,0.461324,0.675975,0.194529,0.653058,0.132008,0.918494,0.653873,0.190407,0.917135,0.366935,0.195032,0.620013,0.0592195,0.950741,0.618347,0.370963,0.306609,0.0755641,0.26705,0.694667,0.199963,0.175479,0.830268,0.228763,0.595253,0.996049,0.0028128,0.733281,0.728705,0.155128,0.730901,0.910517,0.865484,0.377105,0.0308805,0.583831,0.290759,0.509551,0.0263785,0.801774,0.87626,0.335936,0.0821647,0.650823,0.903708,0.104708,0.647285,0.776909,0.200896,0.0776625,0.490038,0.839143,0.295458,0.501707,0.519285,0.802634,0.646424,0.180197,0.0401073,0.712807,0.8507,0.406465,0.47417,0.0695258,0.0246766,0.34016,0.256197,0.986336,0.0677443,0.0670614,0.956814,0.117385,0.746029,0.96259,0.534961,0.659433,0.171017,0.7502,0.152931,0.766532,0.838408,0.238952,0.867949,0.441161,0.623728,0.141599,0.169607,0.64732,0.564638,0.333625,0.482888,0.386998,0.484178,0.159973,0.124529,0.770449,0.0619488,0.829574,0.28255,0.435477,0.957013,0.0276746,0.275094,0.518817,0.309756,0.0481563,0.549524,0.329209,0.718432,0.724518,0.853722,0.79771,0.907796,0.138894,0.921644,0.166896,0.113271,0.198421,0.329509,0.384401,0.982784,0.542754,0.607144,0.889633,0.727878,0.977566,0.087305,0.243295,0.337229,0.421352,0.934694,0.172134,0.564261,0.614618,0.721081,0.623582,0.363679,0.919936,0.733091,0.613719,0.239337,0.00851959,0.865282,0.537454,0.969019,0.620752,0.423281,0.546103,0.623695,0.817336,0.792293,0.631738,0.0125376,0.390888,0.214735,0.0833201,0.510393,0.49657,0.443706,0.549353,0.50521,0.736263,0.0775765,0.552483,0.212379,0.656576,0.239005,0.854908,0.20602,0.407266,0.597396,0.250476,0.103885,0.703308,0.28068,0.873427,0.0460328,0.627215,0.790909,0.444298,0.612172,0.877082,0.476567,0.0556347,0.513768,0.582378,0.175679,0.792801,0.61661,0.440223,0.892208,0.426211,0.372501,0.365673,0.310018,0.744208,0.634943,0.626569,0.514815,0.0237299,0.210851,0.344728,0.0455427,0.585745,0.244022,0.521904,0.571619,0.651473,0.538305,0.766003,0.495407,0.120524,0.629424,0.354056,0.690527,0.753141,0.852662,0.622726,0.758359,0.245083,0.552154,0.478095,0.92732,0.640429,0.24246,0.367424,0.575899,0.0927342,0.472336,0.716431,0.960474,0.294169,0.470892,0.0029664,0.953189,0.684591,0.80865,0.203725,0.939916,0.022836,0.606547,0.948668,0.14964,0.579692,0.984446,0.857493,0.765529,0.570219,0.517672,0.767744,0.22427,0.586894,0.44371,0.597232,0.690646,0.167588,0.542766,0.941305,0.154681,0.516639,0.718222,0.983044,0.636006,0.391359,0.788956,0.453153,0.75503,0.964057,0.203143,0.822747,0.938474,0.515514,0.243172,0.189738,0.899286,0.0151016,0.464293,0.798268,0.975253,0.741715,0.33086,0.94603,0.431403,0.8926,0.454293,0.836684,0.316417,0.543888,0.805349,0.854013,0.191955,0.113182,0.399867,0.332836,0.666549,0.123864,0.150559,0.761781,0.853292,0.874544,0.492094,0.555516,0.960854,0.796472,0.533592,0.418499,0.449077,0.186782,0.346946,0.75881,0.775099,0.450362,0.697576,0.0238712,0.893202,0.256388,0.0166161,0.717783,0.0345472,0.103023,0.00940746,0.534122,0.137805,0.986378,0.690705,0.233328,0.0569494,0.779975,0.365427,0.407508,0.0114579,0.302909,0.869397,0.873515,0.169137,0.857787,0.8472,0.991671,0.0923308,0.996815,0.746032,0.360337,0.548583,0.189426,0.343777,0.615443,0.709233,0.116362,0.365429,0.776464,0.72671,0.988524,0.776934,0.373331,|0.258826,0.172641,0.861545,0.0458848,0.901837,0.252065,0.28815,0.136062,0.527816,0.494336,0.475812,0.761478,0.326748,0.358059,0.541837,0.0902145,0.755012,0.236342,0.235982,0.85767,0.2232,0.899187,0.213149,0.879217,0.60387,0.671709,0.349698,0.221974,0.982265,0.682489,0.0342266,0.194495,0.637104,0.88564,0.0677995,0.246278,0.365458,0.398449,0.372029,0.416854,0.48398,0.1448,0.0442762,0.457863,0.698803,0.586367,0.496894,0.248534,0.593439,0.677246,0.149286,0.386713,0.0784329,0.847542,0.69761,0.548252,0.594595,0.842521,0.180263,0.0497486,0.338102,0.732747,0.585222,0.41894,0.620794,0.37879,0.575639,0.401341,0.510328,0.474044,0.283447,0.0544043,0.610812,0.0698046,0.672328,0.903172,0.375833,0.758746,0.947558,0.384872,0.090816,0.0514529,0.87873,0.114273,0.667686,0.401741,0.190374,0.926866,0.612554,0.738253,0.597089,0.108197,0.55429,0.420347,0.776288,0.835999,0.179311,0.973743,0.0963556,0.635145,0.00414956,0.922362,0.60366,0.0527864,0.332754,0.572475,0.335857,0.872857,0.819445,0.469665,0.052694,0.708091,0.699641,0.20018,0.69486,0.419392,0.57959,0.587133,0.12296,0.682033,0.452261,0.895052,0.240759,0.0947307,0.854337,0.390759,0.753397,0.708575,0.869571,0.183522,0.205469,0.619991,0.127101,0.896412,0.499148,0.693343,0.347655,0.112705,0.982593,0.236865,0.602929,0.962579,0.557238,0.733945,0.556823,0.32754,0.635614,0.736716,0.809602,0.304693,0.490977,0.640009,0.779091,0.586237,0.570608,0.869617,0.843399,0.413123,0.165308,0.0363844,0.311027,0.45026,0.465631,0.539176,0.488796,0.674268,0.116144,0.82619,0.0312687,0.630367,0.190931,0.7426,0.597785,0.930749,0.419617,0.938411,0.563926,0.822456,0.0949416,0.580983,0.133686,0.424084,0.510348,0.803418,0.909294,0.991558,0.584416,0.410937,0.645759,0.0312887,0.203907,0.466246,0.429283,0.371902,0.253068,0.478537,0.91087,0.189275,0.0379955,0.408659,0.0843256,0.357619,0.0521962,0.0455631,0.125535,0.174183,0.735322,0.846965,0.79737,0.00281346,0.15147,0.207577,0.746446,0.52099,0.229916,0.373771,0.118976,0.75503,0.405221,0.720685,0.294816,0.582342,0.38297,0.632876,0.637247,0.80539,0.285296,0.472374,0.0153815,0.946223,0.736061,0.836828,0.990841,0.821122,0.0264372,0.500277,0.533061,0.0151536,0.271391,0.23182,0.631787,0.709206,0.674278,0.381312,0.144597,0.815118,0.662162,0.646436,0.133705,0.729424,0.886115,0.701791,0.361104,0.787031,0.927491,0.0422288,0.750437,0.831125,0.631113,0.312613,0.598693,0.692678,0.118557,0.46339,0.392172,0.178118,0.518804,0.216057,0.806814,0.827303,0.607956,0.360271,0.648731,0.778975,0.776677,0.314872,0.147028,0.787608,0.367485,0.00318027,0.0899979,0.172145,0.988712,0.982935,0.771097,0.513336,0.790191,0.907611,0.622395,0.420366,0.76867,0.750551,0.669879,0.942936,0.248697,0.12394,0.162439,0.383488,0.709243,0.5297,0.6757,0.110225,0.969418,0.623878,0.498193,0.0923065,0.337745,0.340028,0.183086,0.348439,0.275859,0.251546,0.722831,0.737862,0.596196,0.781507,0.0932835,0.407063,0.46999,0.795131,0.695391,0.134036,0.538735,0.640798,0.986262,0.468056,0.894793,0.179787,0.11969,0.216245,0.976792,0.631437,0.93189,0.698536,0.342434,0.781977,0.951378,0.303575,0.594555,0.843039,0.185421,0.779121,0.384833,0.087334,0.611481,0.49335,0.581376,0.650817,0.582058,0.675859,0.018696,0.512874,0.964423,0.139543,0.264748,0.259936,0.069667,0.851728,0.893133,0.993957,0.782208,0.710099,0.987501,0.751494,0.378467,0.748996,0.534884,0.611128,0.879935,0.709351,0.485109,0.886086,0.159388,0.853492,0.242527,0.750085,0.339782,0.0945052,0.270608,0.321397,0.895342,0.867485,0.809101,0.644213,0.590902,0.273961,0.908877,0.838409,0.134852,0.521247,0.803727,0.791075,0.714223,0.265815,0.997661,0.27723,0.498243,0.533656,0.0450566,0.332687,0.565951,0.276212,0.0586379,0.178126,0.375858,0.526968,0.158333,0.830132,0.971056,0.209408,0.210988,0.361185,0.506725,0.0260023,0.405661,0.920661,0.315169,0.586897,0.725324,0.624146,0.476627,0.549418,0.325136,0.326353,0.400589,0.572324,0.259366,0.184322,0.326075,0.746549,0.033917,0.666661,0.903844,0.705917,0.217006,0.892593,0.520623,0.783325,0.378032,0.671749,0.0799412,0.275198,0.553333,0.262176,0.103142,0.511742,0.618657,0.254983,0.923024,0.00510567,0.549724,0.432172,0.440526,0.103165,0.263956,0.213913,0.722546,0.0231305,0.417455,0.658913,0.675385,0.75236,0.254877,0.770059,0.537776,0.991322,0.822754,0.454928,0.928593,0.987096,0.692676,0.48229,0.426166,0.554388,0.236603,0.433691,0.532044,0.28449,0.0016858,0.353593,0.204252,0.411195,0.207969,0.371457,0.585834,0.390697,0.598654,0.776771,0.394784,0.138002,0.187199,0.110598,0.125502,0.928883,0.509881,0.709375,0.95572,0.573725,0.309518,0.000622749,0.745162,0.433512,0.249813,0.200691,0.960892,0.604362,0.278639,0.152891,0.355441,0.351389,0.511113,0.121951,0.347463,0.6587,0.451014,0.499237,0.316515,0.62396,0.343142,0.772988,0.159021,0.0714962,0.210998,0.185566,0.27239,0.829341,0.7289,0.361956,0.254358,0.689219,0.781652,0.297062,0.0606483,0.935669,0.504044,0.448683,0.602116,0.375707,0.994921,0.353625,0.0463143,0.860119,0.327802,0.109789,0.249803,0.764453,0.547996,0.650049,0.922935,0.379943,0.899251,0.89143,0.634519,0.410751,0.755886,0.740767,0.529173,0.823016,0.249632,0.905233,0.886539,0.348724,0.935741,0.749623,0.909303,0.920115,0.362969,0.299461,0.588631,0.505381,0.715071,0.813323,0.615671,0.482028,0.148504,0.35895,0.895939,0.608215,0.315916,0.220287,0.441776,0.310841,0.344702,0.57929,0.111582,0.241901,0.308412,0.430821,0.824934,0.243118,0.543482,0.746344,0.0199291,0.404068,0.628405,0.728051,0.460147,0.503747,0.309393,0.711859,0.0991245,0.150595,0.223561,0.509903,0.99218,0.120599,0.231409,0.417505,0.34072,0.456249,0.445364,0.495103,0.654419,0.120651,0.565812,0.882319,0.894476,0.384756,0.53458,0.910835,0.00772297,0.455598,0.0888118,0.828026,0.00684619,0.981661,0.48135,0.625563,0.964682,0.157365,0.707619,0.866645,0.538541,0.403754,0.861838,0.0483505,0.744099,0.814902,0.812554,0.657575,0.889065,0.664146,0.709375,0.635011,0.298832,0.433584,0.200083,0.755304,0.470919,0.811076,0.499141,0.933029,0.805573,0.459587,0.625426,0.960759,0.130509,0.898367,0.566866,0.875717,0.012614,0.847096,0.762199,0.0116759,0.36718,0.619753,0.167117,0.0791674,0.0971565,0.931377,0.558323,0.582531,0.333316,0.895485,0.877724,0.787203,0.865722,0.135338,0.34577,0.562381,0.653024,0.389674,0.0813505,0.951128,0.860373,0.508347,0.435998,0.152636,0.728491,0.260862,0.643317,0.687741,0.879973,0.150485,0.11282,0.728811,0.530635,0.899645,0.78195,0.314768,0.224983,0.795738,0.382238,0.681651,0.582398,0.423846,0.118582,0.507144,0.654575,0.362262,0.738997,0.236722,0.16849,0.481019,0.483835,0.188417,0.574844,0.825255,0.757727,0.0201665,0.218835,0.116282,0.543651,0.0396373,0.211942,0.988614,0.956314,0.157609,0.646331,0.207587,0.760222,0.418382,0.543712,0.405747,0.580072,0.305985,0.301842,0.363869,0.724828,0.871676,0.383864,0.9376,0.566523,0.178053,0.00958806,0.992429,0.0143911,0.961982,0.478524,0.575016,0.847545,0.555923,0.835129,0.120135,0.693183,0.757139,0.689734,0.424818,0.483007,0.176742,0.497391,0.568051,0.0389694,0.614959,0.726871,0.612991,0.61527,0.615065,0.726415,0.656724,0.348046,0.294117,0.511069,0.368993,0.636347,0.475316,0.4482,0.00342894,0.334232,0.0241659,0.187207,0.85526,0.962563,0.943612,0.772571,0.78741,0.571894,0.629047,0.305885,0.19587,0.430804,0.582203,0.703429,0.0479441,0.184006,0.916624,0.140871,0.225818,0.724211,0.897218,0.502922,0.5461,0.891971,0.502907,0.869059,0.766532,0.0570303,0.677151,0.127571,0.108261,0.557155,0.865604,0.819953,0.711902,0.835998,0.244767,0.114193,0.778202,0.26684,0.272251,0.463161,0.572245,0.0467045,0.80669,0.0441939,0.445394,0.158768,0.570484,0.351186,0.394065,0.476096,0.0175006,0.81799,0.631263,0.232784,0.299768,0.556166,0.923315,0.0255459,0.432257,0.228306,0.821049,0.1288,0.875435,0.328298,0.75859,0.803646,0.937566,0.876032,0.287666,0.34049,0.898307,0.671207,0.772716,0.862171,0.713663,0.665446,0.762691,0.285623,0.3498,0.775005,0.237467,0.0593638,0.0852507,0.553777,0.649533,0.304399,0.589457,0.308473,0.247482,0.525463,0.677481,0.663063,0.159237,0.552424,0.610763,0.31646,0.32186,0.274341,0.0523461,0.214836,0.0147082,0.701216,0.476892,0.546414,0.563123,0.0431607,0.198921,0.283847,0.958201,0.991823,0.173487,0.532399,0.605136,0.124816,0.455758,0.958631,0.344224,0.819619,0.850798,0.611598,0.878267,0.925918,0.160309,0.548321,0.237078,0.507927,0.774344,0.29274,0.205714,0.0291021,0.510199,0.657914,0.198532,0.349839,0.323362,0.0469597,0.141571,0.258478,0.0613631,0.221872,0.357637,0.550266,0.82877,0.590677,0.536606,0.907358,0.560571,0.000281811,0.47652,0.608164,0.992289,0.644313,0.17597,0.878278,0.0148879,0.358966,0.0130131,0.143145,0.216733,0.362621,0.997381,0.549972,0.554768,0.586556,0.482957,0.205143,0.643802,0.0193087,0.192235,0.188183,0.252148,0.0993676,0.542401,0.501912,0.299157,0.0600922,0.429469,0.226069,0.31488,0.257893,0.589558,0.399146,0.020634,0.387434,0.978099,0.766579,0.673689,0.268495,0.0927486,0.71322,0.344622,0.869447,0.763917,0.671173,0.924263,0.910231,0.48956,0.0260991,0.602021,0.545488,0.84574,0.338716,0.951905,0.930743,0.999194,0.654506,0.360284,0.960954,0.436554,0.638513,0.157058,0.458253,0.648658,0.444952,0.0846711,0.121583,0.412963,0.57521,0.377558,|0.15457,0.588513,0.946717,0.682206,0.927226,0.3621,0.829667,0.330933,0.127796,0.131525,0.180832,0.00545919,0.439813,0.0245807,0.060169,0.0939655,0.284052,0.451498,0.350546,0.859886,0.163849,0.193012,0.157679,0.517382,0.757415,0.0936345,0.834947,0.774864,0.322314,0.462118,0.0994804,0.659418,0.932556,0.777468,0.827499,0.071395,0.119413,0.329926,0.945032,0.00990754,0.973787,0.587897,0.968486,0.683738,0.83526,0.640092,0.548129,0.218255,0.820981,0.44377,0.682466,0.830108,0.214505,0.435757,0.161427,0.268825,0.325516,0.888249,0.980988,0.657635,0.951071,0.265515,0.0395471,0.622739,0.519842,0.127108,0.752886,0.538757,0.833134,0.0599778,0.0732427,0.811061,0.460184,0.29513,0.863932,0.250482,0.588687,0.909586,0.0748771,0.485781,0.669388,0.353602,0.471567,0.734496,0.307404,0.464106,0.150491,0.592997,0.339377,0.0521055,0.984525,0.844087,0.485211,0.101313,0.442653,0.826663,0.375545,0.94072,0.327662,0.796742,0.365672,0.828842,0.787312,0.581123,0.346552,0.336491,0.352928,0.988131,0.134841,0.426561,0.250708,0.185156,0.943803,0.907344,0.178909,0.0606753,0.881417,0.301028,0.744545,0.322677,0.81867,0.637867,0.583454,0.161553,0.875681,0.51643,0.728312,0.775797,0.795278,0.0620903,0.0938284,0.306684,0.986986,0.207097,0.0794325,0.187238,0.516688,0.957477,0.259997,0.890403,0.543036,0.127028,0.427889,0.689394,0.175185,0.631909,0.961148,0.146112,0.465898,0.0478373,0.188035,0.780127,0.438993,0.3664,0.305466,0.0669352,0.0773906,0.407657,0.378528,0.525737,0.387696,0.459339,0.10111,0.611844,0.89322,0.69473,0.325874,0.374823,0.599509,0.894611,0.509455,0.784066,0.249781,0.486746,0.327195,0.920146,0.632848,0.38043,0.733182,0.353652,0.440931,0.0728462,0.295469,0.577708,0.281025,0.696616,0.507043,0.444996,0.144608,0.333786,0.78976,0.651872,0.915055,0.237172,0.664374,0.44809,0.274474,0.167054,0.894085,0.134062,0.161989,0.221288,0.404574,0.17353,0.164163,0.426384,0.643773,0.354154,0.33548,0.248438,0.661032,0.479449,0.598002,0.861516,0.681058,0.489454,0.358216,0.595706,0.0375648,0.209551,0.541197,0.0312025,0.00758553,0.443571,0.496134,0.54179,0.586367,0.598748,0.641693,0.869466,0.528899,0.569225,0.106377,0.979135,0.217518,0.364187,0.410261,0.649238,0.961665,0.218894,0.351161,0.547616,0.694153,0.198294,0.312513,0.251231,0.754885,0.339718,0.471398,0.543637,0.878061,0.986901,0.682217,0.781415,0.836934,0.971663,0.598843,0.833415,0.0987076,0.639198,0.193511,0.0306875,0.346761,0.994123,0.609611,0.291183,0.128139,0.997103,0.53831,0.735247,0.34955,0.760278,0.378221,0.133619,0.351796,0.364017,0.400897,0.245463,0.683166,0.0105315,0.0776731,0.785616,0.16192,0.862012,0.0709448,0.489331,0.814426,0.619199,0.0655704,0.783007,0.404628,0.998822,0.362619,0.0110619,0.462811,0.777268,0.822277,0.637228,0.979021,0.959651,0.199706,0.193739,0.281757,0.102832,0.130446,0.957629,0.06222,0.37903,0.66112,0.469807,0.883276,0.0207138,0.308163,0.0847256,0.033644,0.610866,0.233554,0.727377,0.0510401,0.0747349,0.70772,0.521136,0.825669,0.108303,0.908946,0.702468,0.550297,0.432335,0.89289,0.43971,0.464106,0.109229,0.806046,0.744173,0.322319,0.933362,0.776464,0.988696,0.0529866,0.982804,0.563602,0.882365,0.142231,0.767777,0.258635,0.860338,0.971717,0.543456,0.917878,0.684027,0.756118,0.0788147,0.347644,0.485159,0.562525,0.730088,0.594242,0.961359,0.76982,0.627223,0.987053,0.436854,0.395844,0.499468,0.884617,0.187684,0.277229,0.48458,0.891643,0.592305,0.320922,0.00472265,0.842617,0.127998,0.904315,0.718539,0.139078,0.0012688,0.309714,0.0295846,0.837968,0.65726,0.00264466,0.844266,0.419986,0.904094,0.642597,0.831523,0.929075,0.789723,0.150085,0.244025,0.759673,0.371869,0.429906,0.758299,0.29572,0.863509,0.950658,0.149448,0.383217,0.068028,0.42279,0.0530608,0.943061,0.116232,0.303742,0.592187,0.60821,0.0980959,0.665754,0.642962,0.594881,0.339338,0.577888,0.329462,0.693602,0.76923,0.237,0.34294,0.00082767,0.317817,0.0373797,0.00524139,0.729556,0.82788,0.375502,0.629692,0.990564,0.637458,0.899175,0.218953,0.257261,0.0514929,0.330081,0.82506,0.672809,0.189847,0.626676,0.412523,0.590608,0.237894,0.356017,0.47224,0.836399,0.277758,0.705834,0.925457,0.258612,0.647834,0.12363,0.930988,0.971637,0.985504,0.29285,0.735989,0.844177,0.254919,0.914339,0.483726,0.199169,0.925899,0.516862,0.289647,0.269989,0.393636,0.483248,0.556446,0.0962251,0.638261,0.639429,0.800192,0.873972,0.953408,0.540656,0.0863658,0.39285,0.294064,0.48213,0.763234,0.507743,0.613826,0.912715,0.914358,0.927254,0.0175404,0.763343,0.462702,0.331668,0.537583,0.0901546,0.08474,0.763667,0.895198,0.0566295,0.662353,0.248759,0.432417,0.697388,0.279464,0.805338,0.583736,0.128581,0.730273,0.0401139,0.0875515,0.31499,0.52966,0.370775,0.375831,0.482309,0.920427,0.871149,0.396525,0.898188,0.106245,0.638525,0.387089,0.874292,0.329444,0.68281,0.472593,0.562989,0.244435,0.464996,0.842058,0.466756,0.893391,0.975684,0.44445,0.291067,0.0581256,0.800998,0.556619,0.679418,0.356093,0.814864,0.326826,0.256082,0.766289,0.525659,0.32839,0.74102,0.744008,0.140552,0.0437006,0.698005,0.368004,0.796633,0.357673,0.310537,0.686881,0.920461,0.18822,0.834448,0.135165,0.684862,0.672413,0.724596,0.4452,0.895162,0.902094,0.572772,0.52323,0.219758,0.828656,0.366399,0.766929,0.984101,0.833667,0.502428,0.979324,0.487007,0.015142,0.398936,0.310755,0.464993,0.3737,0.0963159,0.132253,0.424744,0.266755,0.234963,0.518851,0.834804,0.444128,0.499884,0.63064,0.0983458,0.0894918,0.259017,0.479746,0.346874,0.484695,0.573784,0.616275,0.462404,0.371464,0.26099,0.960146,0.787105,0.872654,0.2693,0.578711,0.924805,0.65611,0.0983675,0.414481,0.839883,0.153266,0.838133,0.58145,0.602758,0.95921,0.296775,0.574557,0.455555,0.855694,0.945411,0.0884898,0.491748,0.267113,0.641543,0.679561,0.971365,0.214555,0.433751,0.061125,0.377475,0.724289,0.77871,0.0861047,0.171506,0.64025,0.382585,0.627707,0.470098,0.291171,0.326705,0.682958,0.421956,0.593463,0.0880926,0.278614,0.441296,0.670839,0.0955586,0.528884,0.0960878,0.951034,0.937757,0.366478,0.659808,0.161253,0.937151,0.609407,0.94667,0.596961,0.639834,0.993404,0.59775,0.849714,0.357035,0.940044,0.359277,0.449019,0.035626,0.997943,0.509444,0.296452,0.962243,0.633575,0.541585,0.50414,0.373937,0.477506,0.989223,0.625475,0.200825,0.299053,0.256066,0.467711,0.148081,0.962933,0.914498,0.378036,0.296559,0.403983,0.329989,0.248172,0.859597,0.194166,0.045846,0.368666,0.0878637,0.0767061,0.939198,0.693259,0.750226,0.977533,0.764845,0.14039,0.923196,0.796661,0.511005,0.182503,0.147397,0.899886,0.969316,0.244622,0.335414,0.448528,0.322891,0.600039,0.771933,0.0434225,0.0728872,0.980793,0.0353116,0.293899,0.371003,0.96103,0.727683,0.511666,0.324514,0.0626332,0.800865,0.542411,0.91987,0.55466,0.0776849,0.987649,0.130764,0.999841,0.657224,0.727587,0.768109,0.222583,0.766205,0.878857,0.701079,0.723413,0.592455,0.930795,0.331068,0.426745,0.871942,0.27004,0.689074,0.555751,0.809095,0.922204,0.900978,0.0813023,0.409714,0.62089,0.378699,0.85234,0.385573,0.260793,0.345499,0.9274,0.301193,0.609553,0.746725,0.339133,0.875165,0.0792007,0.23714,0.613992,0.295099,0.543027,0.981848,0.291812,0.864962,0.528873,0.0643817,0.364762,0.775286,0.640383,0.139146,0.654156,0.942442,0.829082,0.565276,0.930335,0.539095,0.428656,0.918173,0.880436,0.903723,0.393977,0.563251,0.360287,0.523449,0.0275103,0.416194,0.764827,0.764557,0.734286,0.465663,0.827666,0.413833,0.833487,0.300276,0.292211,0.568222,0.473579,0.83573,0.0494098,0.173945,0.733773,0.225253,0.210134,0.261922,0.955383,0.707793,0.796726,0.0537813,0.284711,0.392803,0.66243,0.988142,0.105051,0.77764,0.926967,0.869828,0.434351,0.971443,0.460711,0.125129,0.149943,0.138182,0.8456,0.931089,0.708826,0.598931,0.0210844,0.0289091,0.0162289,0.346032,0.244911,0.240213,0.0616269,0.239939,0.291678,0.0847254,0.17378,0.686896,0.979056,0.802816,0.637364,0.609816,0.812315,0.273632,0.796169,0.482948,0.129114,0.414764,0.73484,0.311709,0.944679,0.33771,0.340956,0.898595,0.544791,0.00127274,0.448698,0.0383179,0.936443,0.31127,0.0450449,0.908718,0.41087,0.471952,0.69571,0.408503,0.993046,0.251779,0.93806,0.270922,0.82525,0.899515,0.0608042,0.942169,0.455774,0.776505,0.155894,0.799168,0.30149,0.24948,0.549486,0.425757,0.239353,0.930885,0.15075,0.522592,0.758016,0.402222,0.248295,0.408994,0.237728,0.301932,0.718627,0.890963,0.233932,0.810167,0.257929,0.372063,0.563552,0.603242,0.940174,0.631667,0.320548,0.29927,0.955647,0.671937,0.511972,0.970045,0.224425,0.125952,0.606252,0.328336,0.615225,0.107656,0.805009,0.539471,0.374572,0.285832,0.904065,0.658513,0.291381,0.00383538,0.507069,0.432006,0.0712479,0.220066,0.511582,0.898618,0.23653,0.0984857,0.381913,0.905597,0.686407,0.149628,0.0666232,0.716026,0.685192,0.576258,0.776403,0.277513,0.188864,0.165311,0.115577,0.571032,0.12917,0.132654,0.336899,0.157378,0.800752,0.219018,0.602866,0.377311,0.892489,0.440762,0.434371,0.494436,0.97364,0.284355,0.0116237,0.295813,0.777912,0.451441,0.280666,0.800097,0.832358,0.13051,0.660116,0.226197,0.605565,0.96465,0.782052,0.230641,0.840211,0.38104,0.235442,0.412988,0.366068,0.794633,0.718599,0.416133,0.212255,0.413373,0.137017,0.557812,0.574165,0.0343994,0.693684,0.258614,0.368484,|0.558913,0.327794,0.0339109,0.679176,0.544627,0.170753,0.15784,0.380652,0.270886,0.534733,0.198415,0.233527,0.647453,0.839782,0.86152,0.635786,0.560935,0.128406,0.225026,0.809262,0.710686,0.0135741,0.124898,0.940388,0.12025,0.245749,0.167695,0.532225,0.00163704,0.386401,0.962497,0.563176,0.464814,0.278806,0.0933916,0.048112,0.703185,0.804356,0.236987,0.235615,0.220098,0.795063,0.0916046,0.242462,0.41641,0.322768,0.627704,0.869948,0.546755,0.71801,0.874199,0.893802,0.822951,0.0293844,0.664601,0.460915,0.382961,0.820701,0.063046,0.668596,0.318648,0.047183,0.0544174,0.520201,0.871532,0.480635,0.794304,0.256937,0.133258,0.227942,0.902502,0.895416,0.157136,0.85611,0.995777,0.901283,0.975276,0.536909,0.530577,0.535053,0.00393814,0.866864,0.682401,0.0474913,0.426347,0.217047,0.4202,0.900965,0.184384,0.68396,0.681056,0.423346,0.407411,0.340588,0.654417,0.0680099,0.326303,0.580957,0.950646,0.914371,0.103588,0.470799,0.331597,0.613338,0.296111,0.617044,0.538184,0.140253,0.00075525,0.564284,0.896151,0.0436772,0.598329,0.324093,0.813806,0.0506355,0.546278,0.221997,0.717721,0.360938,0.568414,0.40537,0.398646,0.949503,0.538342,0.41679,0.385729,0.92041,0.449346,0.298158,0.370374,0.206974,0.267367,0.557744,0.835,0.802784,0.149079,0.706156,0.770691,0.322748,0.839715,0.491745,0.367229,0.081881,0.923186,0.25701,0.757267,0.632113,0.562705,0.704983,0.563298,0.610707,0.141396,0.931994,0.453012,0.687855,0.104804,0.874619,0.550593,0.336061,0.911324,0.0341001,0.975869,0.0977578,0.524816,0.600051,0.703993,0.0228197,0.47129,0.98151,0.27914,0.0571131,0.043572,0.657288,0.679644,0.455341,0.379653,0.402505,0.577134,0.780075,0.732937,0.0603567,0.925365,0.517634,0.54718,0.422283,0.497287,0.820755,0.920919,0.821599,0.206371,0.00538647,0.0703342,0.673235,0.0411556,0.691618,0.604015,0.0169223,0.782967,0.588821,0.284427,0.965653,0.335738,0.300135,0.238423,0.159585,0.955453,0.125505,0.857192,0.533498,0.07089,0.416572,0.301751,0.380438,0.330174,0.138108,0.843419,0.177685,0.820085,0.0577354,0.552767,0.0998025,0.122327,0.0475007,0.366533,0.680618,0.890835,0.985399,0.788689,0.36782,0.0332825,0.440177,0.54,0.679584,0.730154,0.983452,0.486905,0.825952,0.368782,0.294596,0.720108,0.880842,0.519789,0.769759,0.897116,0.632658,0.0504654,0.581712,0.0312144,0.797621,0.768368,0.0758656,0.358245,0.667311,0.604376,0.601348,0.853404,0.500775,0.082449,0.309406,0.463944,0.99495,0.308752,0.110099,0.904066,0.320401,0.0993308,0.872697,0.996087,0.794294,0.656718,0.0850688,0.301416,0.660349,0.483454,0.28302,0.842366,0.0219858,0.17609,0.606318,0.056289,0.434673,0.835563,0.879774,0.174967,0.270238,0.956778,0.358719,0.214694,0.447238,0.230312,0.92169,0.808879,0.156996,0.182101,0.386675,0.368941,0.771974,0.966804,0.166245,0.40953,0.300289,0.838583,0.476943,0.580767,0.280283,0.370691,0.0657266,0.33446,0.507055,0.714962,0.987881,0.106523,0.404804,0.773564,0.555697,0.229725,0.911548,0.567482,0.615604,0.691543,0.150225,0.41792,0.499829,0.856979,0.487868,0.946732,0.432968,0.239651,0.817526,0.642297,0.230777,0.853604,0.0964856,0.480765,0.214773,0.191203,0.0937476,0.418678,0.797516,0.0341291,0.532467,0.380422,0.749337,0.712039,0.991676,0.292952,0.71517,0.124888,0.817509,0.958699,0.0499187,0.846877,0.888561,0.0810801,0.334267,0.123257,0.559569,0.0623921,0.504337,0.229721,0.474994,0.662816,0.635389,0.348974,0.096917,0.558532,0.682163,0.819193,0.451641,0.182421,0.857731,0.564421,0.279788,0.549446,0.37645,0.876099,0.639286,0.742651,0.0925509,0.0963345,0.414694,0.633399,0.477417,0.836323,0.465756,0.0754182,0.0952873,0.00776386,0.427199,0.532824,0.268131,0.34067,0.753114,0.491168,0.824382,0.585711,0.891191,0.902568,0.271353,0.636355,0.891341,0.625799,0.448436,0.24967,0.0550512,0.908671,0.0794747,0.823094,0.0322961,0.372008,0.421972,0.357944,0.441502,0.907013,0.864345,0.472145,0.777326,0.0590106,0.22727,0.712776,0.588315,0.0146853,0.964887,0.137185,0.0382824,0.198101,0.40923,0.822182,0.00521773,0.0996166,0.553299,0.995829,0.0935195,0.372864,0.720261,0.566869,0.557733,0.310524,0.742932,0.108486,0.0667751,0.0832883,0.201418,0.95899,0.00233692,0.994248,0.142518,0.640497,0.587115,0.467044,0.142175,0.172369,0.670178,0.664824,0.154142,0.54243,0.519782,0.531816,0.659116,0.368311,0.377381,0.704964,0.501577,0.0130648,0.518179,0.660974,0.673977,0.428312,0.376893,0.493173,0.229213,0.418154,0.863419,0.725271,0.355249,0.677486,0.904603,0.35193,0.44005,0.175426,0.184303,0.610582,0.363062,0.575217,0.399768,0.337403,0.773007,0.114744,0.255641,0.265501,0.10139,0.276318,0.889502,0.96722,0.459719,0.111893,0.193023,0.974047,0.446376,0.983089,0.899357,0.401008,0.608901,0.0415969,0.374093,0.800228,0.697093,0.707229,0.0636511,0.926233,0.495967,0.0950898,0.996254,0.495848,0.86162,0.063144,0.754877,0.300099,0.95921,0.885721,0.385458,0.921546,0.597599,0.352638,0.530996,0.572942,0.293999,0.411661,0.987152,0.991655,0.562286,0.501259,0.234269,0.383624,0.911084,0.305997,0.765046,0.160484,0.425071,0.11819,0.564967,0.727074,0.86788,0.481408,0.506632,0.2785,0.553537,0.903253,0.466799,0.584677,0.842024,0.753958,0.785562,0.926296,0.250665,0.557085,0.406055,0.899456,0.544464,0.748575,0.748843,0.539397,0.308531,0.122606,0.270959,0.572796,0.545201,0.870039,0.400213,0.165063,0.670633,0.921296,0.432326,0.365578,0.0915883,0.786561,0.541454,0.827987,0.340566,0.407274,0.171426,0.757518,0.358504,0.559687,0.51099,0.563311,0.146813,0.0296686,0.0799891,0.836209,0.863608,0.268352,0.599147,0.360628,0.81605,0.500751,0.116689,0.713913,0.186911,0.681668,0.782035,0.115209,0.115409,0.0651296,0.235669,0.956211,0.996015,0.0109405,0.496828,0.686247,0.874331,0.52581,0.922195,0.384134,0.0376391,0.131413,0.805372,0.616512,0.161892,0.0959345,0.664316,0.515837,0.488248,0.790889,0.316575,0.112653,0.389785,0.613162,0.356443,0.452616,0.634133,0.190395,0.442002,0.875826,0.465697,0.489515,0.311818,0.493493,0.757907,0.0244563,0.956221,0.285756,0.557467,0.880481,0.0567833,0.390265,0.38945,0.172248,0.492297,0.51484,0.606951,0.34708,0.580078,0.13355,0.626102,0.791594,0.495032,0.563188,0.985151,0.0829217,0.282335,0.352272,0.464306,0.496774,0.558262,0.821017,0.188376,0.676243,0.150853,0.648446,0.885772,0.92861,0.188131,0.510264,0.143092,0.689489,0.68273,0.523864,0.367833,0.77887,0.0993507,0.675497,0.670058,0.333453,0.499331,0.964711,0.348176,0.585365,0.852745,0.793143,0.516781,0.0587137,0.366025,0.736075,0.936502,0.118916,0.195414,0.321502,0.478459,0.62456,0.593372,0.871952,0.402596,0.584321,0.279323,0.964148,0.968182,0.85692,0.0876852,0.576688,0.604708,0.466106,0.957282,0.759164,0.501455,0.0625932,0.0440794,0.194681,0.17765,0.39299,0.499819,0.190435,0.33177,0.442292,0.271048,0.476112,0.747645,0.366899,0.416851,0.27033,0.90514,0.655718,0.0272974,0.669095,0.152056,0.059204,0.796004,0.919108,0.323464,0.955716,0.672966,0.816532,0.106461,0.0821248,0.176624,0.202943,0.544924,0.282916,0.630736,0.534852,0.533377,0.361116,0.75434,0.737795,0.490013,0.450397,0.154567,0.0388781,0.487569,0.836668,0.92398,0.805515,0.45958,0.11357,0.622345,0.512284,0.391476,0.615159,0.414731,0.313198,0.444276,0.30263,0.66482,0.919847,0.861067,0.0858789,0.16152,0.656897,0.678395,0.0210627,0.777056,0.280245,0.971549,0.587733,0.518921,0.0847522,0.22858,0.916057,0.579801,0.162429,0.676463,0.673794,0.134655,0.0774776,0.613044,0.0943426,0.41926,0.310028,0.268766,0.85611,0.364589,0.0385041,0.312181,0.332822,0.13722,0.777353,0.0643714,0.488537,0.740421,0.122701,0.930351,0.0525663,0.390236,0.408458,0.606211,0.096914,0.562405,0.193317,0.508673,0.720607,0.854995,0.994928,0.520166,0.576072,0.428292,0.120129,0.692584,0.422984,0.655874,0.409468,0.44278,0.684779,0.466287,0.934768,0.999768,0.0425418,0.216749,0.355473,0.792353,0.600262,0.462839,0.537201,0.258336,0.0169558,0.57229,0.864271,0.296254,0.4987,0.938282,0.366868,0.269921,0.00854635,0.73194,0.872511,0.587034,0.427291,0.159026,0.853732,0.137828,0.225989,0.679345,0.677861,0.822316,0.346558,0.786538,0.308347,0.592795,0.333707,0.0698789,0.150707,0.708889,0.000119865,0.775846,0.0842151,0.516389,0.280061,0.727336,0.0900292,0.519765,0.235493,0.0379014,0.649747,0.356692,0.996684,0.856989,0.621307,0.986459,0.0217274,0.940915,0.898031,0.615591,0.61477,0.104295,0.367076,0.329205,0.94089,0.69283,0.06843,0.315095,0.523388,0.72454,0.276459,0.846735,0.749179,0.58795,0.719998,0.911158,0.531229,0.95443,0.16868,0.782232,0.00403827,0.261838,0.374077,0.643299,0.0591593,0.55972,0.431548,0.222098,0.912636,0.592764,0.488618,0.289816,0.864592,0.831986,0.335388,0.731042,0.187699,0.414381,0.785579,0.881729,0.721325,0.586745,0.0956193,0.672378,0.280253,0.303361,0.0538794,0.355716,0.952922,0.0378088,0.12539,0.46316,0.254233,0.802933,0.13727,0.695213,0.778244,0.972883,0.0714142,0.274437,0.903369,0.914132,0.808442,0.258986,0.0606427,0.814371,0.758248,0.944227,0.393102,0.876781,0.548304,0.435375,0.364537,0.486026,0.957893,0.498698,0.739754,0.05351,0.424446,0.291901,0.708551,0.116391,0.797232,0.741481,0.575776,0.275112,0.445805,0.573613,0.31058,0.290921,0.0515933,0.422242,0.273263,0.46438,0.540274,0.234098,0.996399,0.948645,0.480935,0.458726,0.120502,0.92989,0.487028,0.410681,0.206545,0.44721,0.123132,0.509607,|0.889478,0.721346,0.79282,0.797445,0.899852,0.508584,0.977045,0.371713,0.76272,0.297918,0.984201,0.37038,0.12922,0.344201,0.207938,0.784769,0.557234,0.635931,0.4893,0.0219906,0.484905,0.299154,0.191664,0.214181,0.435146,0.730443,0.485206,0.402786,0.453294,0.112895,0.182086,0.869653,0.966183,0.719392,0.0344319,0.767254,0.532033,0.256042,0.969903,0.0672637,0.172202,0.971044,0.693269,0.92222,0.755318,0.374708,0.92707,0.576674,0.215144,0.687023,0.991479,0.193258,0.381457,0.755594,0.764488,0.65491,0.838715,0.384044,0.327872,0.702626,0.112178,0.298624,0.414301,0.157553,0.407482,0.992018,0.270163,0.197879,0.57471,0.906081,0.551727,0.758983,0.340307,0.398536,0.474406,0.165083,0.300954,0.454676,0.251065,0.867904,0.0317346,0.524648,0.458662,0.00918525,0.144407,0.936255,0.453378,0.199919,0.259887,0.0445595,0.107172,0.296677,0.902562,0.502586,0.893798,0.950724,0.973942,0.154248,0.837524,0.580472,0.181475,0.769288,0.91318,0.78734,0.395288,0.106634,0.176548,0.920373,0.08865,0.0542139,0.405531,0.509869,0.857917,0.820253,0.655555,0.279517,0.24435,0.264121,0.506166,0.941572,0.877188,0.0641288,0.389357,0.995738,0.955193,0.29635,0.068129,0.628323,0.120664,0.0740449,0.115201,0.651306,0.176737,0.858844,0.386887,0.405818,0.310564,0.743961,0.206113,0.0517241,0.178291,0.0416676,0.180004,0.836885,0.249654,0.382975,0.136704,0.823237,0.0344056,0.943683,0.665348,0.749483,0.529316,0.363161,0.417691,0.625648,0.551935,0.788963,0.917665,0.738182,0.710173,0.347199,0.642852,0.85891,0.510034,0.471657,0.969341,0.234697,0.249219,0.107192,0.226927,0.186265,0.907971,0.114647,0.672983,0.198807,0.708222,0.594507,0.534185,0.666362,0.050754,0.922665,0.610772,0.938554,0.915494,0.65641,0.646109,0.768778,0.986403,0.74601,0.764075,0.14122,0.35472,0.744379,0.167931,0.949918,0.0112102,0.16842,0.333256,0.860964,0.39728,0.886809,0.668234,0.356927,0.188095,0.0519992,0.460778,0.0109573,0.159613,0.294212,0.945962,0.902778,0.834532,0.591605,0.385865,0.731131,0.193976,0.591691,0.354555,0.949969,0.30118,0.554709,0.315763,0.663548,0.19682,0.83128,0.98646,0.478079,0.223814,0.417448,0.204012,0.967211,0.295176,0.658501,0.861102,0.348525,0.301653,0.277254,0.46049,0.119988,0.734892,0.428831,0.727892,0.0559974,0.471337,0.907124,0.772611,0.306196,0.794163,0.961167,0.240017,0.409645,0.908206,0.0448933,0.676379,0.000211418,0.176582,0.665359,0.4231,0.717639,0.698008,0.805936,0.615175,0.492245,0.722759,0.067668,0.960546,0.721443,0.525324,0.484911,0.825893,0.970909,0.316387,0.769801,0.397538,0.619393,0.0975578,0.85832,0.128089,0.692622,0.972491,0.767242,0.505979,0.101343,0.810322,0.779229,0.965392,0.938091,0.829603,0.615956,0.15017,0.974691,0.568449,0.13369,0.926866,0.76919,0.50106,0.623918,0.36241,0.300048,0.781752,0.742764,0.557259,0.446041,0.5925,0.48863,0.869715,0.360337,0.907432,0.390146,0.15021,0.899084,0.337691,0.311749,0.0636939,0.76563,0.628317,0.758678,0.461827,0.768876,0.193267,0.00109702,0.772967,0.114402,0.354176,0.112321,0.416726,0.651977,0.328096,0.809977,0.226301,0.874914,0.296101,0.0961261,0.176906,0.171186,0.51721,0.977723,0.738253,0.637899,0.639857,0.860348,0.330731,0.796259,0.13251,0.1989,0.406293,0.749945,0.160805,0.818105,0.525928,0.113686,0.170242,0.0565718,0.11017,0.468952,0.723983,0.39853,0.472911,0.894678,0.140384,0.936151,0.402942,0.769929,0.667937,0.22231,0.978461,0.586228,0.109485,0.825737,0.586294,0.663394,0.163933,0.69409,0.343213,0.285178,0.140319,0.828148,0.890032,0.535996,0.570727,0.123618,0.492827,0.604391,0.423919,0.0373714,0.439701,0.719635,0.462585,0.572311,0.0177577,0.404149,0.499107,0.879589,0.890683,0.34199,0.478583,0.4441,0.0747722,0.814676,0.529928,0.671783,0.309636,0.282883,0.641501,0.853018,0.0536918,0.0478752,0.726687,0.976624,0.13673,0.352314,0.183318,0.0596272,0.965877,0.595375,0.0193619,0.169657,0.0870802,0.164226,0.950007,0.777517,0.417769,0.381502,0.974132,0.277245,0.0853813,0.646439,0.573613,0.349048,0.632684,0.159505,0.139906,0.144577,0.367472,0.594014,0.693277,0.383016,0.592326,0.603087,0.0433322,0.811354,0.878127,0.0155616,0.705514,0.148191,0.990934,0.950017,0.681386,0.395757,0.768129,0.101221,0.531911,0.119483,0.137746,0.902022,0.666427,0.908042,0.968366,0.905215,0.43799,0.828364,0.0315229,0.848224,0.774112,0.27376,0.331311,0.431487,0.790529,0.908558,0.0532595,0.541856,0.217148,0.796099,0.44518,0.0425826,0.953117,0.971339,0.975277,0.45914,0.369616,0.762655,0.500363,0.238718,0.139609,0.258368,0.256062,0.570992,0.518353,0.850934,0.956778,0.858313,0.141787,0.228025,0.759926,0.412153,0.929964,0.903867,0.271058,0.536462,0.206367,0.246932,0.801533,0.759904,0.782478,0.749226,0.986261,0.169654,0.974993,0.109709,0.473763,0.776147,0.594766,0.891031,0.530739,0.070088,0.832744,0.598422,0.690101,0.504207,0.396265,0.719171,0.69602,0.0219176,0.34938,0.761575,0.536112,0.0653608,0.345536,0.934136,0.510206,0.772698,0.466519,0.862126,0.939913,0.845473,0.643434,0.487564,0.831842,0.949358,0.160658,0.981322,0.306871,0.749802,0.447547,0.0845055,0.0355901,0.736437,0.101297,0.777924,0.428635,0.809847,0.404816,0.438349,0.271994,0.504584,0.347641,0.632379,0.845765,0.831821,0.892471,0.226481,0.4464,0.132242,0.652435,0.754262,0.540919,0.926049,0.473245,0.422054,0.715495,0.191163,0.0866855,0.134864,0.982248,0.37618,0.21843,0.394862,0.714051,0.986314,0.078741,0.562351,0.987101,0.327888,0.518655,0.497644,0.523597,0.767073,0.789984,0.182716,0.709624,0.793173,0.346492,0.703182,0.673532,0.211645,0.365398,0.641507,0.607476,0.238177,0.835452,0.291335,0.0994377,0.285099,0.933463,0.577261,0.953426,0.0608723,0.0256836,0.386009,0.541254,0.0312044,0.583922,0.634857,0.357714,0.738899,0.0920225,0.213645,0.937716,0.500534,0.974304,0.149501,0.724005,0.629809,0.0674667,0.408077,0.221164,0.520712,0.966461,0.548973,0.419335,0.381509,0.377783,0.758649,0.58838,0.966726,0.234541,0.242088,0.459966,0.267878,0.078065,0.214623,0.578972,0.977531,0.68044,0.611585,0.932296,0.213928,0.613286,0.918967,0.857747,0.8213,0.730998,0.14475,0.231235,0.569746,0.95966,0.237268,0.71226,0.0746527,0.655911,0.324088,0.125842,0.63089,0.163243,0.834314,0.279101,0.435655,0.834396,0.166663,0.148212,0.149523,0.499511,0.938309,0.919683,0.292119,0.999417,0.0241937,0.442083,0.851003,0.853197,0.481356,0.188765,0.364942,0.898305,0.175011,0.59985,0.404436,0.408075,0.0642463,0.166134,0.811001,0.301933,0.834178,0.38381,0.767079,0.545322,0.488635,0.66765,0.986369,0.558211,0.199932,0.737915,0.843933,0.404613,0.502461,0.70214,0.212749,0.583886,0.816601,0.914342,0.00243318,0.553535,0.0237982,0.701602,0.550083,0.285157,0.315724,0.809003,0.251127,0.246327,0.0176457,0.241771,0.602322,0.937235,0.923522,0.182298,0.515662,0.497137,0.123611,0.93159,0.995031,0.672413,0.372587,0.271814,0.923094,0.875942,0.120744,0.684164,0.495908,0.994126,0.63347,0.279105,0.599515,0.99713,0.469512,0.849826,0.692435,0.611721,0.940357,0.68422,0.521848,0.0126308,0.404034,0.651401,0.955515,0.450844,0.180576,0.181748,0.659481,0.1885,0.735794,0.300736,0.44677,0.436271,0.892071,0.405368,0.263894,0.170398,0.0318794,0.766603,0.782272,0.684111,0.122349,0.46085,0.365535,0.106252,0.541063,0.186859,0.485452,0.685605,0.292459,0.0432107,0.20553,0.184417,0.853508,0.0192032,0.617015,0.56946,0.67208,0.828981,0.794434,0.380092,0.263967,0.86044,0.896158,0.113622,0.00825733,0.546979,0.710543,0.511473,0.439226,0.137881,0.0490545,0.323063,0.158285,0.264125,0.696602,0.127508,0.362025,0.807171,0.0756618,0.473402,0.877962,0.992976,0.434902,0.580289,0.337421,0.462614,0.457408,0.558765,0.591325,0.165226,0.875799,0.284077,0.274094,0.783584,0.734916,0.873542,0.187077,0.781444,0.444513,0.770433,0.716964,0.292758,0.638284,0.598414,0.937508,0.00505835,0.762878,0.208413,0.680421,0.895707,0.500538,0.102056,0.995192,0.0643026,0.789662,0.379595,0.536399,0.674951,0.100847,0.0951273,0.895394,0.671333,0.709112,0.965094,0.297501,0.897507,0.407696,0.126181,0.0841047,0.966863,0.393833,0.147346,0.477566,0.0924527,0.925095,0.119331,0.232452,0.881853,0.564818,0.549551,0.885174,0.0965306,0.674819,0.13687,0.617256,0.0687659,0.628858,0.840943,0.43262,0.0339832,0.344685,0.979181,0.178988,0.67563,0.617978,0.408345,0.806083,0.292911,0.978941,0.0930497,0.254561,0.517106,0.335932,0.163529,0.820323,0.280104,0.226473,0.967031,0.648582,0.238329,0.695427,0.435969,0.501506,0.157879,0.606197,0.292547,0.143058,0.131376,0.0747876,0.592582,0.63143,0.938819,0.929972,0.211878,0.338525,0.114483,0.153228,0.0476341,0.851744,0.469958,0.506812,0.0227554,0.566513,0.396401,0.716596,0.783105,0.368991,0.843699,0.524573,0.489043,0.195099,0.914271,0.135916,0.784646,0.0146849,0.323972,0.772637,0.645619,0.0267665,0.542441,0.0378714,0.984884,0.558906,0.484788,0.773752,0.303737,0.0272951,0.578568,0.529272,0.906447,0.495718,0.0464574,0.0541237,0.268573,0.842257,0.171255,0.432548,0.256215,0.767231,0.858508,0.607777,0.339756,0.148222,0.145499,0.508376,0.583721,0.143496,0.87034,0.0646356,0.400857,0.595699,0.387559,0.716018,0.871517,0.586468,0.544144,0.500832,0.626858,0.288003,0.380246,0.0441974,0.909143,0.465315,0.0966766,0.484567,0.688394,0.000136912,0.939163,0.48579,0.0732629,0.360065,0.963335,0.0943162,0.0302196,0.211626,0.267519,0.371159,|0.429763,0.400118,0.515905,0.882088,0.379556,0.207015,0.173167,0.423475,0.366453,0.262035,0.908084,0.255383,0.720651,0.498223,0.937214,0.567124,0.796563,0.829244,0.408575,0.579543,0.415638,0.397783,0.253839,0.967583,0.129571,0.305952,0.94395,0.303009,0.546296,0.107373,0.266177,0.121113,0.512641,0.1145,0.191994,0.829094,0.142203,0.832561,0.681228,0.0904615,0.42652,0.865767,0.307088,0.155853,0.992579,0.88658,0.886045,0.12423,0.497916,0.974058,0.172931,0.343924,0.6892,0.339293,0.450931,0.500163,0.831101,0.59303,0.129486,0.278491,0.374071,0.171724,0.478941,0.892382,0.519353,0.589434,0.0059042,0.391451,0.131011,0.00991923,0.711289,0.154567,0.744447,0.349979,0.609503,0.758713,0.0748257,0.211597,0.715248,0.413149,0.994987,0.474776,0.31523,0.523195,0.738001,0.58134,0.0230708,0.618524,0.172841,0.411984,0.306157,0.473014,0.49749,0.681468,0.635641,0.172544,0.605033,0.408709,0.311148,0.87936,0.422924,0.00165951,0.918378,0.65045,0.496077,0.225372,0.900995,0.926638,0.433079,0.405925,0.386917,0.778282,0.734294,0.201451,0.0846683,0.614176,0.663643,0.602392,0.128797,0.911813,0.253987,0.942829,0.668226,0.254747,0.720822,0.170281,0.13454,0.661848,0.823926,0.948928,0.280728,0.0490665,0.199887,0.110452,0.784147,0.694061,0.125988,0.715463,0.594292,0.528749,0.884311,0.0563245,0.305753,0.718039,0.41823,0.29071,0.63463,0.260466,0.285728,0.231508,0.615186,0.819184,0.547723,0.261273,0.95167,0.0618239,0.0182401,0.106682,0.987139,0.177395,0.40153,0.278064,0.754892,0.557934,0.211092,0.425156,0.817229,0.550857,0.98887,0.327068,0.641254,0.993946,0.981255,0.092281,0.104316,0.0569977,0.403866,0.201352,0.435674,0.575203,0.323097,0.144984,0.247562,0.166735,0.0894274,0.0685947,0.534629,0.7998,0.595741,0.202622,0.647076,0.233594,0.328061,0.888556,0.137363,0.80754,0.690431,0.6173,0.981721,0.00744164,0.843693,0.101279,0.142426,0.885547,0.950171,0.67411,0.647738,0.313727,0.156565,0.170301,0.755371,0.407339,0.700177,0.257667,0.892549,0.503073,0.976098,0.742616,0.52207,0.00963688,0.190607,0.381642,0.409665,0.447076,0.347496,0.768481,0.869508,0.765252,0.390804,0.692883,0.128483,0.427535,0.293846,0.75872,0.47181,0.397905,0.216311,0.437005,0.514381,0.832556,0.278623,0.676378,0.753395,0.81271,0.579547,0.32415,0.827586,0.209503,0.810217,0.138926,0.223143,0.794948,0.383138,0.299846,0.234104,0.418771,0.555198,0.198833,0.445591,0.94842,0.311496,0.572433,0.27848,0.258751,0.176799,0.0382084,0.412631,0.552728,0.948868,0.282676,0.054843,0.55327,0.959088,0.969137,0.488517,0.829093,0.683902,0.0219188,0.0347901,0.123869,0.330158,0.904518,0.374991,0.0331827,0.0365075,0.268699,0.847941,0.140787,0.154513,0.571396,0.0416851,0.829291,0.476055,0.980399,0.929893,0.905716,0.812318,0.585853,0.902993,0.364541,0.205419,0.236663,0.462926,0.623415,0.431351,0.352513,0.986813,0.38543,0.275612,0.485348,0.487412,0.314756,0.494731,0.100803,0.287201,0.083138,0.9398,0.759316,0.887183,0.446884,0.831611,0.949929,0.962865,0.848664,0.274352,0.635854,0.280553,0.917284,0.727974,0.0316306,0.962768,0.95876,0.208048,0.568615,0.336843,0.00363737,0.799557,0.814177,0.769624,0.215114,0.783315,0.691967,0.301232,0.891896,0.00524014,0.960714,0.40754,0.125336,0.909577,0.0920713,0.348339,0.745184,0.00921029,0.408318,0.673365,0.30541,0.320658,0.44563,0.366388,0.577254,0.359946,0.110153,0.0362782,0.530387,0.452372,0.535288,0.420777,0.319361,0.902663,0.141519,0.0793773,0.587441,0.0267019,0.841757,0.351064,0.874506,0.646117,0.490567,0.314038,0.457578,0.619877,0.853585,0.562129,0.0927427,0.74703,0.137944,0.30192,0.888734,0.959628,0.89447,0.837616,0.501883,0.324699,0.890772,0.820608,0.108076,0.0359002,0.00107753,0.700213,0.662295,0.451643,0.720313,0.667338,0.00181872,0.0524504,0.657673,0.0933961,0.690419,0.0642117,0.485614,0.117529,0.330232,0.83992,0.133936,0.220473,0.392994,0.50065,0.602622,0.64827,0.149864,0.549894,0.418117,0.437867,0.700535,0.0949025,0.234859,0.361197,0.84414,0.951138,0.350913,0.971682,0.548248,0.533095,0.912807,0.293535,0.196124,0.00657666,0.00137806,0.811151,0.950957,0.527313,0.26154,0.103917,0.704131,0.38563,0.685655,0.38123,0.238303,0.880943,0.46107,0.209344,0.666177,0.412766,0.0135616,0.941586,0.846977,0.304842,0.378145,0.681173,0.281195,0.792828,0.32949,0.836172,0.299229,0.426501,0.325516,0.145456,0.0254487,0.767459,0.617054,0.730473,0.629849,0.587717,0.426437,0.927683,0.00659764,0.677768,0.492199,0.122692,0.764603,0.623349,0.606652,0.294565,0.822831,0.782668,0.413593,0.272462,0.899856,0.0904096,0.947173,0.0341453,0.96972,0.864943,0.324673,0.612187,0.476246,0.393031,0.924095,0.358075,0.936681,0.561853,0.462733,0.147448,0.56532,0.558716,0.0717188,0.844656,0.401425,0.745634,0.556031,0.905556,0.613278,0.011029,0.414625,0.743208,0.766567,0.330629,0.477895,0.401002,0.809885,0.853388,0.872799,0.571634,0.415298,0.140702,0.419758,0.47002,0.524145,0.672495,0.108176,0.660166,0.334287,0.257946,0.104269,0.459022,0.802641,0.774638,0.554172,0.267099,0.464604,0.226227,0.214313,0.387894,0.360721,0.930175,0.182013,0.739117,0.544037,0.170858,0.735727,0.304431,0.698753,0.685114,0.676643,0.72358,0.165709,0.377447,0.0589744,0.881495,0.768048,0.215923,0.876469,0.728028,0.989235,0.985855,0.824347,0.930966,0.480842,0.0615857,0.216358,0.819758,0.685206,0.97094,0.142876,0.355047,0.640355,0.79996,0.576653,0.619987,0.216587,0.551053,0.84971,0.495867,0.859204,0.15353,0.71255,0.718363,0.405944,0.852133,0.0331783,0.254503,0.611088,0.958722,0.426633,0.785754,0.44935,0.933742,0.604017,0.229653,0.276443,0.813791,0.792203,0.690423,0.100541,0.498152,0.0887001,0.722761,0.681345,0.714719,0.0354271,0.0945846,0.181425,0.592716,0.428698,0.313335,0.647191,0.682596,0.752417,0.196903,0.0156323,0.321572,0.0210143,0.802382,0.735086,0.901406,0.816987,0.355412,0.182043,0.385108,0.678595,0.925904,0.0173364,0.728319,0.0701265,0.123989,0.454058,0.488788,0.381785,0.804772,0.369461,0.196542,0.994262,0.143108,0.201458,0.728931,0.224398,0.698834,0.838979,0.347566,0.879199,0.108277,0.969654,0.543321,0.274256,0.512142,0.245065,0.973695,0.80732,0.618509,0.017799,0.00431257,0.226574,0.655269,0.434615,0.854419,0.355476,0.657799,0.567982,0.419261,0.242782,0.933527,0.451875,0.672008,0.724854,0.266316,0.73607,0.164827,0.646406,0.722283,0.36199,0.375144,0.164147,0.142511,0.804948,0.590225,0.283241,0.923119,0.112933,0.77799,0.252432,0.341652,0.759973,0.836694,0.891963,0.994824,0.307117,0.866053,0.159379,0.201372,0.272216,0.683246,0.453842,0.826799,0.195029,0.692813,0.508824,0.507696,0.404889,0.394617,0.978172,0.718212,0.446191,0.317599,0.775782,0.211768,0.388497,0.771681,0.655146,0.763194,0.346313,0.94679,0.913078,0.0542104,0.803354,0.075911,0.667506,0.530774,0.53573,0.450683,0.325556,0.481035,0.702306,0.244425,0.209906,0.2386,0.661122,0.92544,0.116609,0.29699,0.506896,0.223391,0.865917,0.5477,0.949535,0.341465,0.993722,0.973183,0.882142,0.222118,0.0458459,0.276315,0.993794,0.1615,0.299064,0.781938,0.746483,0.309723,0.550177,0.561222,0.900136,0.796201,0.116612,0.519091,0.443706,0.97991,0.518908,0.377844,0.720657,0.680745,0.103535,0.161506,0.537412,0.88424,0.923546,0.425213,0.204142,0.802916,0.531081,0.831924,0.840085,0.225469,0.352463,0.188631,0.524592,0.947166,0.601569,0.107515,0.186249,0.242065,0.379495,0.133692,0.73035,0.142043,0.120918,0.394624,0.829838,0.266411,0.868433,0.699695,0.604163,0.27844,0.272034,0.138751,0.00482941,0.117635,0.931158,0.598941,0.282459,0.972715,0.0852903,0.842484,0.278252,0.767625,0.389681,0.57295,0.70177,0.560679,0.487185,0.839367,0.00863737,0.619674,0.785415,0.240954,0.453044,0.75231,0.367846,0.504526,0.603461,0.639438,0.81158,0.741115,0.962118,0.0336939,0.0907381,0.445344,0.0559891,0.431,0.418251,0.961538,0.86391,0.678464,0.0603278,0.621847,0.362872,0.764978,0.963651,0.829667,0.286217,0.12125,0.861462,0.0970255,0.679646,0.85025,0.238461,0.47398,0.296575,0.335132,0.430828,0.26267,0.566305,0.364349,0.580569,0.10626,0.147452,0.205601,0.878163,0.645165,0.367699,0.185514,0.206428,0.966715,0.00953287,0.18159,0.454866,0.998391,0.895614,0.188051,0.782767,0.335398,0.10658,0.982811,0.485163,0.841488,0.657669,0.712371,0.802666,0.581561,0.371357,0.572043,0.668964,0.75406,0.836533,0.460593,0.419654,0.485411,0.873704,0.0112754,0.52664,0.0192167,0.344275,0.190405,0.718749,0.948522,0.499509,0.401374,0.902305,0.864554,0.446049,0.738195,0.532745,0.0252276,0.384151,0.45544,0.731355,0.984266,0.0349021,0.167775,0.300294,0.11058,0.26079,0.631291,0.624692,0.40598,0.551955,0.0987183,0.926299,0.64961,0.782367,0.0962299,0.851538,0.771248,0.583566,0.295996,0.275222,0.342161,0.175473,0.140676,0.909283,0.398825,0.763342,0.867207,0.665308,0.811764,0.392333,0.604461,0.908868,0.39426,0.618718,0.918622,0.934301,0.625172,0.645063,0.440335,0.904844,0.989965,0.0298411,0.409033,0.710226,0.71238,0.418291,0.172544,0.761301,0.939247,0.59732,0.622317,0.759341,0.433719,0.25748,0.148974,0.448508,0.138277,0.203,0.295683,0.624768,0.740347,0.844461,0.014248,0.434661,0.755795,0.574097,0.753811,0.25111,0.606684,0.0768738,0.630771,0.986453,0.3509,0.672344,0.507591,0.0264228,0.38274,0.163064,0.35754,0.624465,0.441534,0.360138,0.924159,0.647325,0.109816,0.9643,|0.289438,0.122524,0.427189,0.327413,0.890214,0.59628,0.00273693,0.00346279,0.553286,0.0766668,0.642477,0.958483,0.346975,0.817466,0.493723,0.719342,0.759475,0.725972,0.19825,0.7345,0.295145,0.184714,0.206659,0.949124,0.597652,0.0540352,0.261717,0.121824,0.256805,0.924828,0.106288,0.733273,0.822941,0.322903,0.275723,0.0753678,0.262111,0.809689,0.473619,0.752762,0.100261,0.958162,0.444972,0.973424,0.328189,0.432363,0.289797,0.814479,0.190663,0.434647,0.67214,0.53446,0.126635,0.474177,0.23239,0.815776,0.0484988,0.00595224,0.544236,0.225454,0.193835,0.792315,0.666144,0.760861,0.960797,0.8411,0.0293228,0.463017,0.695413,0.843266,0.03884,0.536639,0.868066,0.592051,0.483815,0.813654,0.529529,0.922503,0.101609,0.970376,0.561791,0.292034,0.547263,0.528153,0.640011,0.728499,0.525721,0.752562,0.0307014,0.609621,0.755614,0.976699,0.128264,0.329189,0.423814,0.214633,0.983306,0.241522,0.751538,0.417375,0.746954,0.058462,0.555366,0.980977,0.699534,0.803882,0.863655,0.153496,0.424822,0.367522,0.433077,0.706337,0.949237,0.688455,0.738445,0.189816,0.453453,0.159709,0.211252,0.0309304,0.602716,0.142719,0.110487,0.567739,0.295783,0.702705,0.515473,0.31835,0.188868,0.373094,0.855859,0.45903,0.611987,0.276635,0.751922,0.612431,0.965213,0.651067,0.888667,0.715956,0.529284,0.508306,0.410799,0.909418,0.909167,0.918156,0.559818,0.391584,0.339098,0.161204,0.0604104,0.399731,0.676752,0.552039,0.565965,0.4217,0.701011,0.316796,0.0610543,0.0784211,0.318357,0.435861,0.222057,0.975825,0.817948,0.173294,0.557198,0.385257,0.18772,0.504228,0.100514,0.0362484,0.638129,0.492114,0.417716,0.277454,0.492328,0.177423,0.494171,0.398064,0.85557,0.022207,0.377764,0.314808,0.532575,0.813966,0.115869,0.854371,0.660919,0.134082,0.821058,0.864322,0.814795,0.99383,0.643838,0.672801,0.891326,0.264959,0.206832,0.293039,0.351696,0.539949,0.276872,0.212654,0.171773,0.425191,0.498571,0.436748,0.850406,0.38007,0.835368,0.864123,0.213764,0.265298,0.81803,0.884273,0.465908,0.533369,0.741099,0.710192,0.27768,0.108616,0.612755,0.645613,0.793035,0.933943,0.517512,0.766521,0.912021,0.427766,0.358106,0.133079,0.541541,0.507093,0.133214,0.122147,0.357759,0.599888,0.882661,0.622218,0.44334,0.266697,0.396319,0.0317553,0.660451,0.501342,0.179878,0.612933,0.605467,0.702759,0.443972,0.146978,0.550363,0.0833043,0.265869,0.79972,0.730853,0.281612,0.767104,0.631057,0.0137901,0.915985,0.885711,0.531994,0.0813049,0.0921885,0.0488275,0.843362,0.87268,0.362761,0.886445,0.419848,0.176235,0.573395,0.980555,0.335706,0.0338329,0.00813878,0.602933,0.0991342,0.18175,0.00657445,0.174322,0.0905926,0.847352,0.241634,0.409024,0.937496,0.402031,0.178606,0.315368,0.596131,0.167934,0.829778,0.440508,0.0632536,0.376329,0.551878,0.851533,0.0312589,0.317028,0.258854,0.839401,0.621672,0.306122,0.172942,0.477026,0.0814,0.170641,0.535535,0.76135,0.857571,0.874826,0.258465,0.942612,0.0674883,0.527652,0.702015,0.919871,0.901036,0.471341,0.187814,0.22345,0.858638,0.296089,0.0932811,0.820778,0.43403,0.603765,0.715576,0.693739,0.8689,0.729819,0.751906,0.895427,0.238385,0.573767,0.0835142,0.40309,0.852618,0.0961965,0.505328,0.861476,0.30452,0.697404,0.933575,0.883699,0.0619016,0.912563,0.40939,0.897759,0.997263,0.289984,0.94885,0.430906,0.123012,0.853431,0.211884,0.658519,0.0554135,0.16854,0.658592,0.458179,0.356812,0.156606,0.960599,0.0653449,0.792759,0.608609,0.218278,0.274674,0.812245,0.00733429,0.919201,0.370918,0.468486,0.659887,0.0678992,0.400195,0.857191,0.436256,0.608721,0.84161,0.357352,0.548094,0.175492,0.144811,0.268416,0.887775,0.86684,0.974039,0.943408,0.880975,0.674994,0.413715,0.998394,0.0189658,0.730524,0.793059,0.561885,0.209112,0.54154,0.111292,0.966482,0.856586,0.364265,0.176039,0.159245,0.566105,0.648321,0.271054,0.965182,0.750766,0.65222,0.928878,0.294925,0.218188,0.591164,0.0278788,0.532232,0.0514319,0.210889,0.011005,0.941108,0.0301835,0.588555,0.100527,0.0596103,0.154042,0.616819,0.984108,0.864467,0.5244,0.478953,0.511375,0.165236,0.663869,0.190733,0.323953,0.127204,0.691979,0.0764805,0.208541,0.900788,0.373824,0.605719,0.905636,0.80688,0.368641,0.757027,0.755277,0.825808,0.979056,0.145904,0.287905,0.405245,0.912161,0.302918,0.721276,0.589244,0.350998,0.577855,0.429898,0.953542,0.406195,0.28347,0.560777,0.978305,0.213542,0.653694,0.603702,0.35404,0.452374,0.438613,0.485069,0.748128,0.345346,0.367954,0.519011,0.19079,0.588589,0.707456,0.889241,0.32765,0.740683,0.202639,0.599206,0.338008,0.115908,0.818541,0.00427562,0.19026,0.258277,0.767964,0.732027,0.751088,0.867157,0.1991,0.679993,0.990345,0.177757,0.376648,0.808794,0.429572,0.0303042,0.0232933,0.281347,0.87876,0.909726,0.494629,0.0524931,0.84553,0.695494,0.994249,0.900878,0.693644,0.47966,0.325132,0.857403,0.828533,0.274509,0.392732,0.11139,0.206177,0.408665,0.602377,0.701943,0.0387152,0.504796,0.920941,0.266184,0.71775,0.617877,0.148776,0.495601,0.326502,0.920583,0.643191,0.0380944,0.287302,0.66236,0.294778,0.127442,0.857751,0.390439,0.800204,0.310087,0.521191,0.861503,0.898978,0.534978,0.0312858,0.193122,0.435505,0.211452,0.516963,0.846428,0.593739,0.358449,0.348764,0.375625,0.832496,0.643903,0.502799,0.879502,0.428483,0.313586,0.396668,0.663263,0.124845,0.193053,0.612725,0.241273,0.286512,0.377637,0.326583,0.395061,0.230024,0.927933,0.666071,0.605508,0.440196,0.878721,0.667777,0.571592,0.623928,0.236685,0.502651,0.718597,0.103107,0.54822,0.483352,0.555762,0.160256,0.718568,0.446032,0.617964,0.763634,0.538137,0.332325,0.55888,0.732807,0.552437,0.648652,0.218022,0.24548,0.984818,0.423766,0.66169,0.150562,0.576,0.664546,0.940943,0.936219,0.872243,0.988763,0.292121,0.226129,0.627573,0.594828,0.966941,0.462975,0.656744,0.770827,0.273041,0.516662,0.233701,0.856945,0.862766,0.924361,0.473471,0.696332,0.295069,0.873839,0.491763,0.277085,0.0460678,0.617047,0.413005,0.0847175,0.628417,0.638477,0.466287,0.84813,0.975766,0.362669,0.114655,0.479845,0.848758,0.195874,0.943753,0.0683978,0.38734,0.248528,0.447519,0.493521,0.730203,0.771732,0.0669754,0.443186,0.94284,0.582748,0.96118,0.504076,0.0546814,0.299963,0.655502,0.441861,0.574911,0.725321,0.489928,0.998665,0.217815,0.432636,0.185076,0.716347,0.373966,0.92442,0.105731,0.293163,0.753271,0.364064,0.270531,0.164919,0.0950024,0.0221332,0.0731034,0.909677,0.874907,0.702496,0.30693,0.233048,0.988284,0.557847,0.656483,0.279079,0.312558,0.910023,0.748082,0.328558,0.853465,0.220536,0.18968,0.560687,0.835371,0.2647,0.236515,0.0996971,0.134645,0.607528,0.945669,0.653217,0.825044,0.000375032,0.27894,0.0806629,0.605451,0.0273412,0.201361,0.857038,0.299124,0.145987,0.302926,0.648979,0.6049,0.173058,0.0637772,0.494836,0.476714,0.981329,0.680462,0.542603,0.92455,0.992252,0.376517,0.557691,0.461433,0.463331,0.0572621,0.192926,0.724301,0.0581338,0.269084,0.134951,0.635188,0.211835,0.180999,0.0332791,0.779322,0.974984,0.0670897,0.572426,0.802863,0.435275,0.0344674,0.537867,0.619266,0.868725,0.684214,0.851825,0.929372,0.398637,0.326822,0.133563,0.038738,0.700922,0.834873,0.663517,0.417137,0.47155,0.722022,0.861226,0.585812,0.419956,0.411379,0.00624645,0.751319,0.254913,0.337644,0.228444,0.794058,0.672586,0.652982,0.803342,0.192248,0.630933,0.0732731,0.39654,0.558087,0.743443,0.787374,0.995,0.405727,0.696578,0.555315,0.0367113,0.130094,0.728176,0.212946,0.833471,0.618406,0.531486,0.244059,0.0323659,0.484116,0.578872,0.540244,0.623827,0.221659,0.339496,0.239721,0.392002,0.843953,0.322492,0.478706,0.177314,0.754894,0.554262,0.756626,0.368092,0.0781733,0.0469863,0.546342,0.463511,0.192755,0.496167,0.742175,0.459098,0.555359,0.366672,0.846786,0.749354,0.968076,0.120721,0.54896,0.629605,0.931611,0.053129,0.0749817,0.0406994,0.417712,0.127515,0.462903,0.32834,0.677716,0.37469,0.827439,0.0544136,0.677829,0.0314351,0.841449,0.168486,0.677137,0.94863,0.559312,0.297525,0.762367,0.389611,0.258211,0.260836,0.00438696,0.911316,0.14422,0.569673,0.384517,0.67591,0.200358,0.804679,0.72825,0.99791,0.898782,0.437617,0.0886357,0.67691,0.875907,0.233586,0.447813,0.306935,0.760963,0.968691,0.493754,0.990287,0.176933,0.85071,0.315483,0.512521,0.219902,0.669531,0.812827,0.722181,0.641064,0.769175,0.936604,0.305472,0.159705,0.805984,0.381226,0.156367,0.533876,0.628103,0.654949,0.761475,0.282567,0.767812,0.356757,0.0852541,0.71798,0.566582,0.697566,0.11782,0.547239,0.934805,0.568567,0.891032,0.919089,0.739637,0.520079,0.679304,0.078588,0.0514176,0.979753,0.73864,0.826635,0.62758,0.649171,0.798226,0.256777,0.839408,0.59151,0.346601,0.933094,0.936341,0.576894,0.227619,0.504198,0.64749,0.286585,0.0712883,0.818283,0.615874,0.291322,0.124632,0.484071,0.668379,0.817706,0.15314,0.294606,0.40762,0.193204,0.920334,0.364762,0.778596,0.430537,0.399756,0.171793,0.590534,0.542122,0.0438446,0.0678394,0.251891,0.399738,0.960513,0.0310854,0.568824,0.736301,0.782433,0.576303,0.726537,0.880343,0.669231,0.447923,0.912766,0.0554917,0.410741,0.616001,0.669137,0.234553,0.909202,0.520164,0.703075,0.507675,0.770812,0.765504,0.720191,0.398909,0.740272,0.399683,0.366992,0.116279,0.549148,0.262713,0.123292,0.385233,0.576928,0.268121,0.334575,0.921649,0.428321,0.933257,0.78146,|0.520017,0.321773,0.0377231,0.796935,0.523917,0.0708085,0.138985,0.279134,0.338005,0.827064,0.0249529,0.19063,0.953589,0.0889892,0.030884,0.75361,0.927309,0.99146,0.384795,0.5066,0.0539251,0.313046,0.364849,0.383582,0.950372,0.753301,0.86074,0.980836,0.66143,0.284145,0.0182086,0.505408,0.419674,0.415416,0.484529,0.4302,0.756559,0.623988,0.809331,0.775623,0.0749178,0.347595,0.655621,0.645339,0.305597,0.641773,0.894626,0.198096,0.195754,0.44074,0.640419,0.743997,0.312054,0.884005,0.627135,0.733791,0.324456,0.0289486,0.319611,0.10237,0.292083,0.926542,0.247035,0.636709,0.64551,0.812822,0.617876,0.690686,0.814694,0.14833,0.770652,0.00657487,0.628153,0.826911,0.102994,0.231513,0.546124,0.664866,0.604258,0.993219,0.527682,0.213913,0.190702,0.0748516,0.290218,0.0192609,0.753814,0.100876,0.973066,0.536433,0.152634,0.369607,0.623387,0.723675,0.125283,0.496963,0.366397,0.591844,0.255194,0.350669,0.0651287,0.322128,0.774767,0.667627,0.244272,0.639854,0.987379,0.479791,0.0116973,0.00731385,0.418391,0.10944,0.715717,0.486569,0.459005,0.0861924,0.07823,0.449666,0.745627,0.620723,0.86344,0.152024,0.251119,0.345545,0.229866,0.96785,0.273695,0.532456,0.218389,0.673698,0.00662678,0.37795,0.128219,0.735598,0.913778,0.160093,0.0246547,0.992812,0.960326,0.118382,0.1116,0.579051,0.0307329,0.741524,0.0870823,0.137886,0.178925,0.604813,0.21091,0.0206643,0.560276,0.913373,0.189712,0.356489,0.769461,0.509431,0.735277,0.719817,0.884359,0.998693,0.269006,0.891539,0.477295,0.113167,0.738593,0.480424,0.0245964,0.456044,0.879194,0.0515475,0.679424,0.845239,0.806611,0.494894,0.525226,0.482223,0.595073,0.561446,0.0396892,0.189821,0.150467,0.305335,0.622654,0.438001,0.568063,0.449168,0.553232,0.752403,0.0153698,0.792384,0.748039,0.202931,0.712033,0.206085,0.182215,0.102098,0.321777,0.343545,0.934406,0.279734,0.895415,0.16856,0.0988154,0.00359821,0.821666,0.880457,0.444093,0.838534,0.332347,0.543438,0.430658,0.977354,0.511241,0.714027,0.593517,0.99922,0.62662,0.444165,0.74743,0.230526,0.702107,0.569204,0.476175,0.22431,0.363157,0.0777177,0.631818,0.0635757,0.346412,0.859169,0.498096,0.547432,0.270009,0.958954,0.690146,0.350565,0.532807,0.801176,0.77839,0.449528,0.0228214,0.707119,0.559913,0.214742,0.913925,0.947847,0.0821909,0.893343,0.980477,0.906072,0.307012,0.123122,0.876395,0.618819,0.630352,0.972101,0.971578,0.700679,0.238369,0.78675,0.547846,0.0957059,0.810277,0.358337,0.554946,0.793233,0.694919,0.972953,0.374379,0.676052,0.000867486,0.124857,0.660257,0.814367,0.556935,0.681803,0.0396172,0.975526,0.950251,0.792064,0.358778,0.00917041,0.699153,0.00299132,0.79511,0.165102,0.460637,0.771932,0.706774,0.582419,0.117736,0.65817,0.222056,0.46976,0.470996,0.802458,0.992939,0.909346,0.9891,0.0596777,0.797531,0.200012,0.845998,0.126374,0.966472,0.716419,0.966405,0.712699,0.316286,0.2769,0.121136,0.473792,0.454232,0.747103,0.427601,0.700028,0.0311069,0.0845644,0.792697,0.855407,0.82624,0.859591,0.0540722,0.117902,0.373542,0.0975816,0.0807262,0.454742,0.321153,0.694166,0.984135,0.373472,0.434975,0.232699,0.77358,0.226636,0.798897,0.762546,0.622501,0.302941,0.611132,0.00958711,0.606637,0.905171,0.878625,0.941784,0.183689,0.897111,0.444287,0.424644,0.831849,0.739306,0.397538,0.0978276,0.995927,0.0804222,0.0606803,0.578214,0.79239,0.974981,0.998807,0.497502,0.287244,0.618357,0.180004,0.416914,0.961652,0.77654,0.826132,0.887266,0.866173,0.932722,0.0299724,0.078145,0.612881,0.448331,0.965069,0.427212,0.874092,0.841914,0.133196,0.158581,0.29215,0.397662,0.938521,0.300994,0.751525,0.792909,0.89458,0.905429,0.102797,0.487236,0.142191,0.943415,0.289682,0.384562,0.0773907,0.254068,0.935776,0.823791,0.247745,0.220613,0.594815,0.451762,0.18105,0.209502,0.857203,0.97493,0.979078,0.252126,0.565561,0.906278,0.887007,0.491425,0.365379,0.543898,0.787777,0.254972,0.567519,0.420019,0.54121,0.300446,0.438149,0.631647,0.736053,0.341342,0.800767,0.37099,0.0765873,0.587325,0.312192,0.271657,0.594028,0.700579,0.0224991,0.877452,0.18998,0.746306,0.330408,0.380208,0.486666,0.38337,0.941363,0.674073,0.411741,0.638866,0.624631,0.00493473,0.236415,0.180484,0.775299,0.742723,0.928091,0.763719,0.31214,0.312979,0.303499,0.544582,0.533204,0.951505,0.827595,0.740397,0.756776,0.921368,0.200168,0.494942,0.267202,0.0706654,0.163971,0.253335,0.146705,0.537029,0.449032,0.748878,0.0810357,0.0186863,0.570387,0.212278,0.163706,0.619248,0.869593,0.252679,0.545412,0.953002,0.0289537,0.600371,0.244382,0.803643,0.686673,0.711244,0.445203,0.344635,0.443471,0.758291,0.88535,0.239537,0.0627136,0.211067,0.907829,0.273493,0.24577,0.783913,0.992839,0.653308,0.435325,0.0251153,0.236715,0.1225,0.184311,0.182636,0.139204,0.473919,0.489752,0.104856,0.0537723,0.873006,0.593483,0.85644,0.346838,0.405464,0.257928,0.557684,0.716503,0.0476125,0.247504,0.788551,0.728363,0.362529,0.30273,0.370587,0.852781,0.22425,0.595466,0.91008,0.168561,0.419399,0.329524,0.511346,0.365198,0.618448,0.723505,0.992496,0.368768,0.40362,0.336733,0.269865,0.692838,0.388362,0.470016,0.222233,0.435072,0.582936,0.306248,0.644665,0.380559,0.370561,0.358101,0.903438,0.410407,0.916481,0.274366,0.681351,0.458436,0.0882525,0.486161,0.796517,0.308376,0.876385,0.785734,0.975158,0.809444,0.327695,0.526555,0.271752,0.15762,0.656205,0.632889,0.756182,0.13192,0.308822,0.801973,0.926316,0.225715,0.0414286,0.0424564,0.441343,0.0465072,0.739074,0.976383,0.70153,0.787477,0.186168,0.335742,0.523274,0.602331,0.140265,0.723019,0.544337,0.240676,0.129926,0.895523,0.373274,0.673016,0.484062,0.183308,0.385055,0.250869,0.123202,0.203309,0.879036,0.390002,0.593266,0.660799,0.593427,0.665827,0.386888,0.208171,0.819528,0.645282,0.634397,0.0759395,0.276965,0.936063,0.408717,0.28607,0.113766,0.913091,0.428212,0.396519,0.608069,0.729829,0.688167,0.240834,0.422579,0.529448,0.606128,0.0538064,0.316844,0.206541,0.411073,0.893675,0.129926,0.195573,0.635284,0.658883,0.453692,0.834534,0.492122,0.120936,0.052207,0.818872,0.959194,0.624635,0.121218,0.107749,0.523286,0.120262,0.163705,0.420387,0.0599807,0.267014,0.172269,0.0222692,0.663214,0.908082,0.850679,0.723389,0.266676,0.0695531,0.584248,0.780183,0.566892,0.913681,0.673507,0.473614,0.347043,0.311999,0.0863524,0.794647,0.468497,0.81814,0.998097,0.29079,0.208694,0.329711,0.691319,0.342213,0.0130704,0.159869,0.226799,0.529769,0.381744,0.198743,0.477568,0.610187,0.534203,0.0215748,0.709751,0.181222,0.333044,0.922358,0.547757,0.364325,0.368267,0.603804,0.633661,0.155169,0.0642595,0.253806,0.211199,0.163049,0.640556,0.830971,0.894839,0.914219,0.686256,0.724105,0.592652,0.924704,0.285946,0.789761,0.363548,0.43962,0.342649,0.340877,0.603536,0.793197,0.46833,0.815043,0.581035,0.36698,0.352658,0.934142,0.293147,0.915422,0.722608,0.412895,0.0852528,0.349741,0.725377,0.63895,0.765375,0.122825,0.764013,0.423903,0.395976,0.160245,0.188752,0.178829,0.447154,0.293104,0.29786,0.0690773,0.479985,0.344703,0.130677,0.0481138,0.375356,0.322936,0.0928017,0.330856,0.730729,0.449166,0.690616,0.0494247,0.295493,0.166596,0.929428,0.609207,0.145729,0.907645,0.916881,0.896987,0.811573,0.589189,0.01035,0.0732028,0.282551,0.645988,0.899062,0.862848,0.99504,0.165444,0.629036,0.106858,0.465029,0.612901,0.99722,0.693966,0.717692,0.0613531,0.40084,0.557444,0.0996513,0.0475282,0.734289,0.874156,0.937643,0.756335,0.290348,0.398138,0.0808963,0.729626,0.218533,0.271644,0.135502,0.957422,0.444031,0.192408,0.575908,0.838251,0.478385,0.667849,0.876678,0.574784,0.982455,0.947173,0.719171,0.206052,0.987048,0.84893,0.336754,0.453335,0.165115,0.258546,0.763996,0.230115,0.886146,0.652929,0.553486,0.643646,0.262883,0.0534154,0.00230217,0.848207,0.621363,0.739874,0.169676,0.455237,0.6025,0.52654,0.881848,0.554528,0.168359,0.0217866,0.0208634,0.0272433,0.409158,0.565286,0.885747,0.231093,0.0495437,0.988009,0.77492,0.911427,0.59673,0.850331,0.792407,0.647346,0.957445,0.223873,0.500253,0.918503,0.75176,0.932723,0.152579,0.451369,0.543131,0.727858,0.401405,0.0787662,0.557824,0.960315,0.781256,0.661342,0.820869,0.116434,0.313258,0.732705,0.198351,0.024038,0.99096,0.602238,0.797566,0.593396,0.465152,0.127182,0.870001,0.759989,0.216162,0.493924,0.117438,0.87439,0.457172,0.665841,0.820445,0.154419,0.256207,0.00230944,0.322479,0.653607,0.333242,0.916137,0.502407,0.927869,0.21874,0.56155,0.838058,0.583058,0.405752,0.82135,0.0142032,0.782276,0.491365,0.0398812,0.800361,0.448031,0.597294,0.26235,0.792252,0.843811,0.64281,0.636006,0.457103,0.866842,0.404575,0.913304,0.494832,0.764579,0.102921,0.877035,0.841943,0.0259045,0.336457,0.533316,0.429753,0.966747,0.00188363,0.372953,0.218069,0.705737,0.128893,0.122873,0.0833372,0.397405,0.556976,0.539808,0.545998,0.510533,0.259582,0.495398,0.604025,0.555071,0.275075,0.721246,0.147541,0.277275,0.869077,0.593298,0.62455,0.772093,0.0466602,0.817486,0.469229,0.719536,0.206186,0.586834,0.540715,0.256432,0.164801,0.432799,0.0750401,0.799915,0.208294,0.339631,0.847099,0.454151,0.310442,0.430326,0.504566,0.574471,0.326708,0.928924,0.960909,0.924893,0.94254,0.457947,0.547494,0.661451,0.917759,0.28771,0.439457,0.669708,0.123477,0.303425,0.724254,0.433705,0.265087,0.777696,0.463799,|0.175584,0.21777,0.885647,0.860407,0.262685,0.0901563,0.377233,0.30421,0.622764,0.743146,0.460167,0.30893,0.521226,0.519837,0.0101817,0.551965,0.315844,0.287476,0.814828,0.899703,0.614357,0.955992,0.749923,0.208043,0.702286,0.42,0.513045,0.326914,0.443969,0.864497,0.984998,0.457737,0.101454,0.499483,0.229807,0.0017193,0.131887,0.560343,0.0566217,0.00942218,0.578084,0.529523,0.061941,0.569159,0.462387,0.17836,0.71799,0.67779,0.685208,0.918187,0.0630338,0.500797,0.74373,0.704365,0.955959,0.640911,0.0157181,0.419913,0.825086,0.670991,0.828302,0.858932,0.49366,0.640375,0.660024,0.928571,0.380975,0.504552,0.310101,0.792664,0.843629,0.816762,0.331925,0.88193,0.0370877,0.824627,0.930406,0.403814,0.910583,0.605539,0.175387,0.673575,0.870237,0.428347,0.103354,0.67412,0.440293,0.0718615,0.936497,0.409207,0.494362,0.61735,0.214634,0.879809,0.343201,0.727384,0.355962,0.823818,0.606347,0.521892,0.251054,0.138282,0.584907,0.215741,0.6591,0.222291,0.587088,0.360063,0.34112,0.393117,0.754484,0.390093,0.454897,0.808614,0.980048,0.928505,0.498854,0.230041,0.536726,0.297182,0.50064,0.0435933,0.413216,0.16127,0.71369,0.740698,0.415992,0.676661,0.699222,0.2171,0.454118,0.47924,0.146153,0.273965,0.382224,0.128081,0.818807,0.165045,0.197733,0.363111,0.817848,0.845906,0.237771,0.880444,0.488666,0.88446,0.0892603,0.792322,0.330152,0.0284087,0.0960608,0.54025,0.570545,0.442751,0.794309,0.300723,0.328927,0.684219,0.44338,0.509753,0.544438,0.592035,0.00903314,0.421393,0.66169,0.769104,0.30504,0.346468,0.820688,0.0573021,0.698383,0.972087,0.0647423,0.408126,0.590464,0.778968,0.068707,0.427548,0.429019,0.587648,0.509555,0.574852,0.193731,0.966291,0.715486,0.981105,0.250505,0.613757,0.272443,0.304533,0.0809599,0.596919,0.84128,0.071017,0.193475,0.0577492,0.411872,0.863743,0.936612,0.639764,0.439843,0.875914,0.955028,0.867404,0.419016,0.831299,0.906143,0.973467,0.209251,0.204256,0.806458,0.145765,0.0482989,0.042133,0.408657,0.876673,0.888002,0.767106,0.895516,0.818865,0.81292,0.070708,0.996513,0.120741,0.13862,0.44409,0.0874929,0.785257,0.063458,0.725757,0.356841,0.679836,0.17262,0.0582448,0.493591,0.941736,0.92135,0.426092,0.649801,0.860449,0.897572,0.875392,0.729563,0.570025,0.20267,0.21052,0.202151,0.293303,0.973563,0.0178798,0.638195,0.940278,0.698358,0.92385,0.608776,0.595915,0.112234,0.74597,0.888342,0.713208,0.830787,0.0997773,0.597599,0.534874,0.86509,0.353785,0.559149,0.724808,0.935768,0.344704,0.261838,0.0828913,0.547558,0.363605,0.989289,0.633023,0.659085,0.776208,0.256993,0.419421,0.0110183,0.66088,0.159959,0.311805,0.182712,0.805786,0.503627,0.0770809,0.276839,0.306267,0.816996,0.340851,0.759878,0.372197,0.208115,0.896487,0.0393052,0.821068,0.742837,0.114614,0.0199461,0.669858,0.0211071,0.338204,0.466483,0.421843,0.536016,0.430534,0.550154,0.927271,0.50129,0.492054,0.171865,0.730266,0.12174,0.615232,0.417238,0.4366,0.0516702,0.354956,0.0973464,0.827753,0.0450726,0.749708,0.511798,0.528302,0.802549,0.744712,0.00743204,0.920614,0.668277,0.248364,0.485765,0.00685531,0.469577,0.396847,0.0817055,0.533029,0.956716,0.616281,0.239561,0.434289,0.411173,0.952859,0.758546,0.831993,0.855252,0.772646,0.753071,0.315474,0.559194,0.71231,0.0176805,0.832061,0.930779,0.729991,0.59534,0.220425,0.116824,0.776303,0.732015,0.962313,0.543986,0.0670818,0.797264,0.246599,0.555614,0.753903,0.532028,0.243223,0.110343,0.83118,0.321055,0.502224,0.931519,0.323732,0.0625591,0.155684,0.182502,0.314886,0.124027,0.54364,0.102415,0.653594,0.0284318,0.434452,0.672521,0.36334,0.861065,0.357699,0.946258,0.171097,0.272413,0.897751,0.624755,0.19087,0.652841,0.431071,0.655667,0.794722,0.65486,0.0112564,0.723126,0.176053,0.8274,0.720114,0.477585,0.283657,0.847447,0.954619,0.799194,0.693041,0.853039,0.437697,0.315087,0.286333,0.803406,0.605231,0.013469,0.474664,0.272518,0.485222,0.482992,0.0701489,0.0728661,0.123255,0.950646,0.704769,0.103552,0.900013,0.461714,0.35206,0.420697,0.296252,0.824483,0.951914,0.0177731,0.553212,0.638583,0.361082,0.434911,0.65609,0.667197,0.12918,0.278177,0.465992,0.437422,0.484232,0.489153,0.905906,0.466397,0.410837,0.924431,0.603328,0.357596,0.493164,0.455251,0.26728,0.705889,0.22563,0.331711,0.212461,0.297909,0.904869,0.645592,0.32784,0.599003,0.839207,0.00365794,0.0512662,0.366958,0.0876971,0.114071,0.1433,0.245324,0.444198,0.836225,0.443706,0.862539,0.928964,0.0395465,0.343102,0.494132,0.591716,0.648959,0.181782,0.399063,0.300182,0.671479,0.248698,0.434701,0.338391,0.0633718,0.236835,0.208756,0.388695,0.06197,0.231849,0.606948,0.492436,0.642823,0.594108,0.906335,0.373281,0.641706,0.739018,0.50261,0.700049,0.766791,0.747501,0.790517,0.343071,0.741128,0.172369,0.17147,0.788489,0.965451,0.989105,0.895146,0.914707,0.948253,0.663792,0.418459,0.427315,0.512364,0.536355,0.591719,0.227415,0.128814,0.909284,0.810664,0.929412,0.398328,0.879582,0.435749,0.724158,0.838442,0.390213,0.432643,0.114597,0.73976,0.257058,0.950734,0.363663,0.932502,0.545172,0.217916,0.915926,0.772032,0.307743,0.797845,0.615205,0.0900654,0.381737,0.43123,0.766643,0.745148,0.234348,0.0534297,0.459621,0.487701,0.14502,0.635694,0.452417,0.0741783,0.941305,0.432085,0.0170496,0.566569,0.584214,0.843807,0.385602,0.199716,0.618764,0.0108334,0.812885,0.993759,0.791153,0.930529,0.171975,0.588989,0.206263,0.861883,0.585645,0.528196,0.107362,0.686101,0.244588,0.0971074,0.76755,0.965545,0.808764,0.158926,0.935275,0.37347,0.646493,0.533642,0.358103,0.845234,0.32103,0.305093,0.98552,0.113081,0.226356,0.250479,0.789716,0.678631,0.317942,0.455905,0.23,0.366361,0.812455,0.106979,0.00628877,0.690632,0.345847,0.957232,0.425831,0.219419,0.540352,0.147401,0.657514,0.372966,0.501707,0.561122,0.142162,0.404774,0.868739,0.22086,0.119374,0.367301,0.907139,0.729094,0.619978,0.237792,0.555485,0.799548,0.96318,0.0811269,0.570775,0.0557727,0.935035,0.69483,0.496489,0.440618,0.360256,0.49638,0.565392,0.666145,0.430742,0.352589,0.615757,0.229236,0.529169,0.718591,0.788176,0.654386,0.650767,0.995284,0.104154,0.931114,0.795836,0.58465,0.0502809,0.322464,0.297205,0.0853552,0.357814,0.881886,0.616321,0.165853,0.00767303,0.668982,0.189923,0.248829,0.417659,0.942828,0.9803,0.740935,0.542913,0.845943,0.0490423,0.034274,0.834736,0.779122,0.0690414,0.108986,0.0568705,0.167208,0.0794829,0.0407882,0.834395,0.978765,0.98284,0.537312,0.575388,0.341724,0.142028,0.19492,0.47803,0.194012,0.330289,0.463759,0.0175852,0.757528,0.28352,0.232883,0.193581,0.022904,0.291566,0.204995,0.313375,0.387052,0.182645,0.715581,0.359171,0.286856,0.35802,0.901998,0.87004,0.754107,0.616794,0.292136,0.238007,0.348333,0.834214,0.899959,0.673368,0.637713,0.912072,0.680998,0.945568,0.533053,0.857869,0.357225,0.444302,0.503714,0.965852,0.468881,0.0303146,0.693469,0.785447,0.338275,0.117793,0.474981,0.19923,0.211791,0.861116,0.0460476,0.581436,0.658948,0.259613,0.826593,0.891136,0.866569,0.131683,0.524305,0.372087,0.98521,0.365084,0.295745,0.783644,0.802598,0.605527,0.873463,0.988995,0.775097,0.485333,0.64088,0.407799,0.860956,0.605745,0.772699,0.294302,0.0161105,0.402449,0.736826,0.354772,0.334407,0.357107,0.226311,0.532453,0.982982,0.252516,0.68129,0.923782,0.542253,0.614716,0.513586,0.6023,0.0711889,0.336228,0.983964,0.298742,0.648935,0.707601,0.858149,0.110575,0.660223,0.559724,0.214293,0.0552929,0.483748,0.943339,0.534928,0.360217,0.804321,0.786355,0.457128,0.591911,0.5415,0.981846,0.751939,0.169424,0.625579,0.92016,0.586094,0.83588,0.262777,0.909106,0.368756,0.866112,0.727763,0.314011,0.646735,0.289318,0.330269,0.633657,0.605874,0.589272,0.283388,0.941909,0.069052,0.830782,0.951372,0.230644,0.243071,0.944306,0.588597,0.586886,0.496925,0.985942,0.166841,0.40558,0.391436,0.269414,0.538364,0.606666,0.72419,0.515815,0.558415,0.075939,0.810044,0.806471,0.836988,0.145368,0.00736088,0.280133,0.0395846,0.702083,0.168613,0.973577,0.530821,0.727899,0.378177,0.366235,0.475403,0.746334,0.919407,0.7585,0.905628,0.189303,0.0104616,0.110201,0.546053,0.834112,0.356288,0.193825,0.978169,0.456521,0.655186,0.84204,0.455038,0.504571,0.724303,0.266296,0.556824,0.357763,0.434444,0.646392,0.704442,0.729912,0.437594,0.568374,0.707379,0.190691,0.638438,0.140734,0.71176,0.340661,0.48664,0.435686,0.242452,0.296126,0.679838,0.0305887,0.765495,0.494518,0.709064,0.113226,0.0665275,0.886423,0.489752,0.854537,0.0621235,0.605468,0.839331,0.310374,0.410723,0.443185,0.417651,0.744472,0.433735,0.369054,0.201671,0.438151,0.96523,0.164325,0.439486,0.39493,0.996156,0.803081,0.541914,0.895757,0.0531846,0.821549,0.770875,0.720367,0.79648,0.551543,0.148769,0.0160192,0.359055,0.563101,0.367798,0.0884739,0.573526,0.634109,0.564576,0.466432,0.68684,0.382896,0.232749,0.344902,0.256512,0.198007,0.896108,0.589639,0.755336,0.404976,0.721566,0.00459689,0.469613,0.837952,0.616789,0.0229654,0.444827,0.0176713,0.0383751,0.133339,0.815998,0.9978,0.461038,0.661011,0.755835,0.620287,0.708719,0.681202,0.556384,0.346998,0.836358,0.952149,0.627627,0.781742,0.237095,0.038525,0.22705,0.00488919,0.95103,0.653503,0.635827,0.143943,0.660172,0.261679,0.74355,0.438093,0.315691,0.332933,0.157288,0.994806,|0.308362,0.630443,0.962851,0.424917,0.945634,0.51577,0.568338,0.850715,0.0946352,0.846589,0.51467,0.588517,0.833347,0.605392,0.332552,0.18794,0.34683,0.283443,0.107852,0.22525,0.784805,0.859289,0.166015,0.859244,0.714378,0.51817,0.0795739,0.536245,0.170711,0.723153,0.450677,0.643148,0.0135085,0.535664,0.582294,0.444496,0.288093,0.763346,0.90457,0.465286,0.225822,0.365666,0.854788,0.0166471,0.743192,0.539988,0.00784832,0.178142,0.369233,0.897229,0.44064,0.0282718,0.011991,0.279641,0.672576,0.964123,0.592069,0.950828,0.210042,0.779974,0.208318,0.107572,0.0570399,0.854689,0.88742,0.893417,0.294142,0.528794,0.752763,0.169576,0.41871,0.667044,0.727613,0.926489,0.450073,0.445762,0.294633,0.173204,0.470191,0.146521,0.00829339,0.000660121,0.0883399,0.6416,0.366082,0.990507,0.471484,0.961024,0.773807,0.572446,0.751124,0.727327,0.43662,0.22994,0.000893295,0.0779271,0.969898,0.400492,0.784789,0.179465,0.837969,0.559111,0.533996,0.083729,0.896462,0.0751471,0.652449,0.0274446,0.385031,0.53609,0.618657,0.534741,0.141674,0.154062,0.167738,0.680147,0.0876867,0.304518,0.353789,0.496917,0.766729,0.578481,0.757072,0.0399897,0.883651,0.278443,0.690982,0.131516,0.695386,0.0488921,0.0256741,0.790067,0.0217587,0.34944,0.195526,0.765146,0.427257,0.37518,0.406941,0.428069,0.42379,0.031828,0.090324,0.0620055,0.202438,0.0663962,0.189751,0.580506,0.94864,0.518492,0.375621,0.774471,0.173018,0.557577,0.788267,0.395551,0.822824,0.00205684,0.798569,0.408442,0.168782,0.649312,0.913712,0.156686,0.637408,0.758296,0.610247,0.662077,0.664075,0.4491,0.940496,0.468526,0.50217,0.348149,0.012904,0.649472,0.700346,0.102705,0.0302899,0.435343,0.332334,0.551684,0.0364766,0.861145,0.117991,0.874088,0.365212,0.643316,0.696068,0.571096,0.121,0.741361,0.242397,0.535682,0.494471,0.553976,0.646721,0.598735,0.445439,0.456922,0.813462,0.433316,0.775525,0.379707,0.170549,0.457978,0.986433,0.396091,0.348224,0.153642,0.281136,0.00453323,0.411976,0.593704,0.202143,0.439955,0.0160327,0.833817,0.086308,0.643604,0.530128,0.443326,0.0687469,0.734039,0.482342,0.472818,0.839707,0.694279,0.887732,0.245913,0.408993,0.84458,0.075399,0.166247,0.268048,0.29251,0.039802,0.287914,0.338768,0.701161,0.902826,0.102764,0.0836331,0.411121,0.957224,0.762074,0.525101,0.649402,0.407718,0.113058,0.313728,0.326779,0.152585,0.238357,0.74905,0.120733,0.885681,0.0212447,0.647214,0.0968315,0.260423,0.50544,0.481831,0.662441,0.667592,0.837458,0.0759111,0.950366,0.984396,0.0732877,0.909486,0.735127,0.00396603,0.779487,0.0579153,0.868907,0.0805352,0.386972,0.864927,0.219666,0.253753,0.981414,0.248335,0.413421,0.751652,0.36597,0.386126,0.754421,0.906069,0.890314,0.492102,0.996206,0.250833,0.135662,0.284636,0.121189,0.709173,0.0191327,0.520207,0.110871,0.629888,0.700502,0.394319,0.317915,0.908497,0.812936,0.992558,0.826998,0.963124,0.139358,0.497624,0.178804,0.503042,0.230512,0.157786,0.904582,0.739667,0.934896,0.820049,0.921128,0.850202,0.357055,0.77509,0.696268,0.198242,0.569842,0.7777,0.0267246,0.0561887,0.303562,0.416601,0.0818788,0.13313,0.833041,0.650415,0.0965745,0.689208,0.880673,0.0616678,0.431543,0.948256,0.241773,0.745703,0.0848933,0.233792,0.912265,0.155836,0.886237,0.805039,0.369082,0.659884,0.391753,0.827264,0.294947,0.980193,0.801604,0.301642,0.683044,0.864561,0.738481,0.158151,0.0500599,0.111137,0.980778,0.291049,0.889619,0.0927318,0.315688,0.384209,0.4587,0.657507,0.999278,0.224456,0.277275,0.262086,0.285697,0.991435,0.137671,0.34355,0.513957,0.0604758,0.632063,0.00438142,0.824768,0.812739,0.0150428,0.35723,0.101429,0.973925,0.882668,0.0898884,0.709917,0.903913,0.405042,0.170839,0.40927,0.68,0.376655,0.124232,0.510618,0.291904,0.878505,0.566561,0.102666,0.936849,0.325722,0.331017,0.789063,0.543924,0.477992,0.373887,0.0681137,0.762305,0.82589,0.987282,0.0397102,0.83058,0.216757,0.396533,0.881827,0.14995,0.164825,0.855152,0.704473,0.202897,0.85051,0.20102,0.395482,0.645511,0.672647,0.142241,0.157916,0.617701,0.974431,0.191769,0.125352,0.732525,0.264358,0.241794,0.450028,0.771204,0.11517,0.529419,0.363881,0.661238,0.540256,0.140343,0.686103,0.351729,0.778393,0.0956841,0.541288,0.272967,0.231082,0.788271,0.962373,0.533549,0.918043,0.759522,0.39442,0.232876,0.791134,0.454955,0.729352,0.00759375,0.579504,0.10198,0.680256,0.626184,0.485049,0.0654815,0.766096,0.261125,0.685013,0.921762,0.221465,0.0512168,0.833861,0.412012,0.548722,0.869775,0.849172,0.479929,0.621901,0.342162,0.7243,0.605666,0.656684,0.456507,0.306585,0.602776,0.190236,0.0299773,0.215652,0.330993,0.915846,0.668782,0.862573,0.720411,0.034137,0.252722,0.496038,0.977177,0.132121,0.791619,0.52541,0.51094,0.718776,0.73197,0.726859,0.344221,0.604483,0.0140721,0.492901,0.696574,0.812783,0.950521,0.954199,0.18407,0.563529,0.852435,0.0105564,0.826923,0.687378,0.53089,0.233134,0.208019,0.0571593,0.133797,0.131641,0.470727,0.522231,0.850723,0.0435189,0.908305,0.0990714,0.825294,0.793555,0.485289,0.273644,0.230997,0.931228,0.755455,0.144815,0.153204,0.219347,0.077893,0.699574,0.53652,0.668595,0.266662,0.182982,0.475599,0.722724,0.431848,0.905124,0.787142,0.620938,0.932787,0.274867,0.869581,0.141909,0.492522,0.133619,0.662209,0.244368,0.938869,0.365401,0.122574,0.949288,0.736592,0.620173,0.314409,0.307874,0.135216,0.215957,0.593101,0.733207,0.611569,0.14835,0.175427,0.721767,0.803961,0.47802,0.707535,0.839686,0.298056,0.432805,0.375523,0.174507,0.00369328,0.492877,0.507695,0.507085,0.310854,0.0581799,0.587456,0.89554,0.55158,0.17778,0.165133,0.393918,0.809274,0.0523864,0.854241,0.07878,0.248315,0.136685,0.770582,0.21902,0.0575777,0.293775,0.654778,0.713139,0.571144,0.12495,0.273559,0.733174,0.518564,0.455615,0.150073,0.857787,0.350843,0.839933,0.373565,0.479593,0.311023,0.141346,0.515365,0.22328,0.34284,0.212554,0.594086,0.505498,0.0109485,0.756997,0.964818,0.581832,0.212448,0.948226,0.833936,0.0828498,0.208285,0.976363,0.0931455,0.0189657,0.866197,0.492832,0.156834,0.923847,0.568234,0.0441853,0.368337,0.151168,0.227615,0.753929,0.631255,0.819347,0.516833,0.572314,0.125401,0.0435002,0.141379,0.227409,0.47394,0.9501,0.46115,0.076416,0.817959,0.0966615,0.801821,0.710635,0.178631,0.848649,0.281429,0.398372,0.170291,0.91401,0.38042,0.813292,0.141023,0.312935,0.809027,0.0539914,0.596756,0.916078,0.192052,0.50068,0.773704,0.261234,0.847622,0.617272,0.199249,0.499242,0.678423,0.237048,0.593917,0.986051,0.295573,0.236052,0.715817,0.873629,0.892925,0.597309,0.605255,0.0826929,0.767425,0.345882,0.598253,0.652546,0.594509,0.0927013,0.613772,0.670616,0.463557,0.744832,0.858874,0.283014,0.41041,0.838683,0.678538,0.106021,0.499697,0.0502521,0.482004,0.817759,0.696573,0.944739,0.161202,0.404093,0.659164,0.487333,0.528844,0.621766,0.565863,0.714663,0.986985,0.147806,0.898589,0.265857,0.0708685,0.930866,0.544855,0.521776,0.432648,0.951102,0.707565,0.111874,0.760559,0.735473,0.0412465,0.788054,0.225314,0.152129,0.850685,0.888565,0.433513,0.668151,0.715169,0.428688,0.16963,0.827314,0.685335,0.0907989,0.778641,0.127134,0.195981,0.0496932,0.585493,0.383506,0.248728,0.462349,0.445642,0.555011,0.555078,0.858664,0.0900694,0.109592,0.252632,0.283625,0.748217,0.71732,0.157357,0.503427,0.848673,0.292696,0.0257993,0.898632,0.714098,0.577774,0.782754,0.0158386,0.935822,0.946697,0.572427,0.780098,0.295241,0.0174133,0.0867205,0.405846,0.535066,0.0764966,0.805568,0.815867,0.232893,0.574219,0.895456,0.816375,0.385928,0.953391,0.389733,0.646416,0.673851,0.977646,0.636414,0.286208,0.314886,0.170486,0.0233967,0.980778,0.903848,0.117305,0.651112,0.384365,0.700043,0.676891,0.367259,0.662877,0.562795,0.465957,0.762163,0.302795,0.822309,0.473788,0.910149,0.530478,0.635851,0.264521,0.51348,0.53837,0.669584,0.148268,0.0661998,0.0839431,0.881288,0.71287,0.752382,0.37017,0.195437,0.0628375,0.432917,0.800424,0.585118,0.157287,0.627739,0.0214037,0.916627,0.188384,0.585924,0.0541258,0.879298,0.500782,0.936145,0.327604,0.373356,0.32837,0.840923,0.787203,0.430848,0.33371,0.00585061,0.641534,0.386763,0.41762,0.492441,0.00860482,0.0872012,0.84529,0.848616,0.722407,0.881072,0.549767,0.312999,0.102297,0.853514,0.606724,0.894277,0.651092,0.693475,0.230856,0.260899,0.156885,0.357604,0.998639,0.887969,0.193639,0.428867,0.407261,0.543352,0.600113,0.476024,0.732387,0.54615,0.712054,0.764983,0.146842,0.758792,0.491415,0.25185,0.405445,0.198357,0.204653,0.781851,0.26485,0.872837,0.141059,0.579037,0.100905,0.0843992,0.794323,0.188935,0.454994,0.514738,0.351585,0.106388,0.444072,0.612771,0.246688,0.384795,0.15208,0.932915,0.282224,0.573216,0.848734,0.0481408,0.868571,0.540128,0.610063,0.620148,0.98445,0.327242,0.486469,0.681472,0.110124,0.392586,0.402824,0.175896,0.591641,0.00996649,0.500919,0.0985895,0.888976,0.182864,0.0688819,0.216688,0.240158,0.028066,0.339368,0.352573,0.604172,0.694877,0.508613,0.103806,0.107713,0.650271,0.84,0.767102,0.373301,0.976169,0.842247,0.221323,0.250127,0.619883,0.534974,0.362307,0.810486,0.873468,0.958151,0.431716,0.48953,0.593612,0.0196855,0.551017,0.808135,0.643742,0.353135,0.547081,0.580623,0.340785,0.669694,0.629237,0.00393254,0.613112,0.446212,0.449429,0.681005,0.130267,0.0558746,0.427565,0.409147,|0.0798415,0.250891,0.616987,0.665669,0.533295,0.359036,0.0480888,0.901669,0.812334,0.374689,0.562392,0.877303,0.663989,0.610795,0.39034,0.513424,0.04031,0.566937,0.602579,0.407564,0.931105,0.0927802,0.235684,0.418943,0.359329,0.88887,0.367031,0.964341,0.547311,0.303591,0.470061,0.972309,0.696399,0.739121,0.16456,0.114829,0.375988,0.41775,0.561936,0.819938,0.7335,0.923581,0.954374,0.715086,0.949053,0.92264,0.690747,0.884291,0.561183,0.685362,0.994347,0.991312,0.866527,0.71366,0.355742,0.474028,0.967619,0.0937904,0.124436,0.709433,0.478411,0.354452,0.679924,0.861552,0.146547,0.803272,0.835435,0.269823,0.722268,0.465868,0.444041,0.118931,0.524628,0.291256,0.663441,0.341839,0.0540889,0.888905,0.06641,0.447334,0.822616,0.665242,0.404207,0.407426,0.494459,0.291532,0.439813,0.222039,0.560693,0.938844,0.968636,0.895554,0.180074,0.0663093,0.16507,0.710655,0.283016,0.318266,0.15188,0.593548,0.39207,0.627095,0.720261,0.883105,0.471479,0.842702,0.808505,0.431445,0.965199,0.706189,0.23381,0.7576,0.0599325,0.899639,0.888493,0.795331,0.652518,0.210069,0.118398,0.63027,0.76089,0.398964,0.545394,0.656942,0.270865,0.502537,0.0110468,0.0278379,0.417915,0.559423,0.938349,0.0885057,0.758822,0.483751,0.283806,0.482614,0.267394,0.667265,0.349064,0.232844,0.0299626,0.156868,0.367899,0.405826,0.29246,0.446239,0.591976,0.285823,0.72029,0.922296,0.0264133,0.251427,0.674183,0.627734,0.919077,0.232238,0.400701,0.272953,0.757329,0.537104,0.788376,0.00912935,0.774433,0.76585,0.111583,0.836192,0.745498,0.835995,0.516154,0.202308,0.323205,0.496963,0.968041,0.712148,0.662959,0.279068,0.297344,0.842942,0.0536509,0.363126,0.611557,0.0832937,0.279208,0.759369,0.660361,0.656404,0.539923,0.735258,0.818502,0.445082,0.481857,0.16033,0.762573,0.354668,0.742531,0.844298,0.295785,0.670367,0.441783,0.442262,0.945658,0.062116,0.474748,0.131279,0.359245,0.572857,0.759993,0.551989,0.311659,0.655756,0.783147,0.590121,0.853888,0.0104188,0.388748,0.24263,0.774301,0.957291,0.0166327,0.666864,0.691553,0.425839,0.99365,0.972292,0.0554497,0.266995,0.072816,0.0298769,0.79467,0.823169,0.867475,0.974081,0.781318,0.910344,0.754368,0.465967,0.536835,0.270169,0.24314,0.0434061,0.745382,0.377106,0.271335,0.342611,0.0824562,0.955019,0.137362,0.0428687,0.786415,0.610551,0.956522,0.0980078,0.343207,0.0295729,0.865457,0.0487253,0.578578,0.16466,0.114673,0.387132,0.0500551,0.473656,0.700091,0.373616,0.0667484,0.932779,0.654466,0.0549501,0.772103,0.111743,0.308211,0.656865,0.802698,0.913747,0.193905,0.42211,0.591955,0.691844,0.729294,0.59731,0.64027,0.483991,0.183341,0.970623,0.791483,0.915377,0.890569,0.00600308,0.833116,0.687664,0.278119,0.860825,0.38164,0.463022,0.557967,0.720673,0.983446,0.104502,0.309628,0.2559,0.238083,0.290702,0.440298,0.296777,0.644828,0.486834,0.182334,0.888306,0.823479,0.66959,0.965711,0.664995,0.281129,0.801373,0.0551187,0.683131,0.877812,0.152216,0.746272,0.0270835,0.602814,0.287599,0.287607,0.447468,0.972053,0.776415,0.881473,0.691371,0.15692,0.985949,0.0759108,0.626864,0.907742,0.63032,0.492367,0.107663,0.644631,0.506158,0.502372,0.890257,0.319263,0.720619,0.978658,0.995054,0.52448,0.246144,0.665415,0.698157,0.0191138,0.895802,0.0868566,0.771453,0.228003,0.222825,0.21389,0.092604,0.848661,0.483442,0.571164,0.979146,0.224561,0.697663,0.0579717,0.846329,0.451215,0.920337,0.966261,0.23485,0.647435,0.954497,0.502469,0.655076,0.156733,0.343332,0.489047,0.643349,0.0116017,0.210212,0.715505,0.363611,0.759346,0.955162,0.853583,0.51082,0.931923,0.735314,0.0120191,0.642056,0.637182,0.292651,0.10302,0.201276,0.271746,0.753868,0.0523584,0.971686,0.660979,0.169066,0.467989,0.144918,0.939551,0.885155,0.876296,0.469991,0.9324,0.539042,0.662509,0.734738,0.152885,0.843562,0.166858,0.168776,0.0166921,0.630589,0.513104,0.66389,0.5678,0.642076,0.55276,0.528745,0.427772,0.776945,0.46061,0.0326418,0.799203,0.257064,0.256485,0.906724,0.358309,0.654713,0.953967,0.93058,0.457573,0.052058,0.0271946,0.657129,0.9732,0.117628,0.457017,0.92157,0.242563,0.723939,0.834732,0.423546,0.602243,0.981011,0.650999,0.225243,0.410023,0.933042,0.997063,0.488734,0.955684,0.427898,0.344317,0.148856,0.472407,0.324825,0.65507,0.0661122,0.529748,0.527392,0.515447,0.447761,0.39292,0.870575,0.568314,0.832501,0.373926,0.537943,0.909744,0.990957,0.409904,0.136706,0.545705,0.458753,0.882494,0.119361,0.238056,0.285598,0.32667,0.190018,0.381338,0.15551,0.334846,0.307243,0.751872,0.0412076,0.401392,0.162168,0.212272,0.610366,0.989945,0.685531,0.345263,0.485094,0.762833,0.688477,0.488091,0.637154,0.229456,0.434091,0.814673,0.849723,0.289335,0.929773,0.946673,0.281017,0.358259,0.310932,0.0103155,0.644208,0.617013,0.903822,0.0584465,0.01193,0.538258,0.80508,0.685558,0.977754,0.72125,0.489455,0.525397,0.359443,0.573181,0.495379,0.367539,0.258646,0.197919,0.100076,0.262966,0.378392,0.578873,0.706657,0.654945,0.239523,0.611781,0.672384,0.829366,0.106297,0.796084,0.322597,0.0893962,0.730937,0.436888,0.930489,0.455287,0.3639,0.187944,0.995473,0.611303,0.120742,0.367923,0.0598644,0.063567,0.017505,0.126946,0.531755,0.139002,0.786821,0.93755,0.835034,0.581007,0.257814,0.157684,0.353558,0.348825,0.788894,0.498073,0.775313,0.841214,0.854889,0.750275,0.286087,0.290161,0.812396,0.888327,0.279242,0.439989,0.170172,0.59258,0.357972,0.174015,0.143622,0.93325,0.865439,0.478551,0.812168,0.349802,0.609826,0.710816,0.31452,0.18038,0.120627,0.638573,0.275516,0.821246,0.721498,0.181632,0.454516,0.835212,0.713824,0.0635817,0.0101364,0.593987,0.281086,0.787514,0.617707,0.128868,0.762996,0.0118932,0.498881,0.088223,0.479687,0.578521,0.901493,0.0641409,0.17496,0.186761,0.302688,0.924357,0.764432,0.482336,0.372704,0.885237,0.427008,0.480764,0.045301,0.0762252,0.191277,0.078044,0.0807615,0.832399,0.67173,0.951951,0.744119,0.845526,0.570747,0.589326,0.212987,0.555104,0.635029,0.232061,0.495657,0.158241,0.221315,0.690964,0.155847,0.761854,0.905574,0.491946,0.237893,0.856742,0.112249,0.844389,0.844146,0.498438,0.730691,0.439548,0.986348,0.647892,0.759645,0.567143,0.325792,0.886675,0.199747,0.80073,0.0991516,0.654559,0.260735,0.0215108,0.642282,0.0684396,0.637837,0.689415,0.452227,0.292432,0.380676,0.818221,0.0708603,0.537189,0.72125,0.779763,0.232689,0.783777,0.815949,0.0915851,0.633317,0.97737,0.545726,0.368819,0.245287,0.51531,0.0200949,0.870256,0.870241,0.74632,0.130656,0.788033,0.122799,0.783299,0.364236,0.903282,0.587294,0.218214,0.181078,0.284143,0.944061,0.758735,0.219472,0.690895,0.225242,0.855383,0.175141,0.448623,0.626159,0.46189,0.603364,0.0769176,0.637215,0.465106,0.721493,0.0819498,0.870258,0.682875,0.640738,0.65236,0.849468,0.216186,0.453995,0.212829,0.373131,0.410959,0.279119,0.914087,0.613238,0.755132,0.840676,0.578992,0.434907,0.353811,0.0583851,0.196015,0.370044,0.0852795,0.799157,0.0922089,0.584736,0.687705,0.480006,0.0225715,0.681891,0.363701,0.880238,0.462736,0.216938,0.764138,0.694244,0.622817,0.796342,0.658085,0.931343,0.684337,0.746949,0.829662,0.244297,0.579553,0.693974,0.757744,0.675425,0.236861,0.0900643,0.432998,0.505768,0.674327,0.34866,0.505195,0.925256,0.872442,0.204993,0.244619,0.600649,0.569633,0.752167,0.719659,0.744819,0.481317,0.334945,0.0211501,0.692307,0.381727,0.53984,0.850395,0.845975,0.159742,0.0325183,0.652131,0.471848,0.289868,0.589943,0.155813,0.183876,0.803949,0.846307,0.389198,0.586693,0.0760076,0.299179,0.690472,0.56,0.412851,0.796862,0.576082,0.540092,0.932008,0.831275,0.626973,0.596911,0.23471,0.464166,0.342452,0.715153,0.128308,0.51113,0.938771,0.801201,0.77444,0.81692,0.0723047,0.000468671,0.631079,0.124908,0.255566,0.313536,0.187106,0.266796,0.245591,0.63602,0.842306,0.258095,0.683648,0.756779,0.773472,0.874043,0.608771,0.636658,0.359239,0.935856,0.369606,0.315177,0.835062,0.771606,0.908835,0.771225,0.676233,0.281771,0.653488,0.778444,0.359242,0.894317,0.287237,0.749509,0.912891,0.65793,0.819481,0.958698,0.00123769,0.305824,0.871679,0.0450924,0.960353,0.761239,0.956949,0.091472,0.16438,0.619432,0.181788,0.219997,0.520639,0.483591,0.163706,0.591396,0.747245,0.609736,0.695588,0.535618,0.812898,0.221884,0.0882803,0.353212,0.097831,0.593438,0.665115,0.275649,0.355493,0.11782,0.27019,0.881884,0.486198,0.0697547,0.357831,0.420297,0.297511,0.108338,0.821138,0.242001,0.853907,0.0714096,0.954842,0.746659,0.330143,0.429556,0.267994,0.147313,0.361376,0.71813,0.524779,0.0103619,0.957082,0.386671,0.928878,0.983853,0.883644,0.843307,0.716701,0.377894,0.999924,0.194925,0.135387,0.903814,0.596132,0.0130391,0.505294,0.521907,0.88747,0.954933,0.515725,0.0230336,0.863314,0.289524,0.754445,0.386443,0.645282,0.0922846,0.279297,0.179822,0.854179,0.638657,0.937972,0.39865,0.739113,0.262536,0.242754,0.0191503,0.187537,0.909057,0.460342,0.495948,0.59657,0.559242,0.390549,0.418727,0.98202,0.0968064,0.246524,0.809899,0.630582,0.826606,0.089359,0.460217,0.477533,0.026935,0.210381,0.646322,0.237225,0.628747,0.954936,0.314586,0.396082,0.851548,0.376948,0.420859,0.41538,0.6484,0.62748,0.345775,0.652689,0.554816,0.88949,0.961903,0.141735,0.816044,0.71863,0.507001,0.703151,0.737694,0.18142,0.993617,0.0108877,0.447559,|0.845495,0.600997,0.429842,0.321177,0.743565,0.479465,0.813655,0.516443,0.809011,0.798774,0.49621,0.0628372,0.132049,0.28168,0.480935,0.404419,0.155127,0.0822923,0.382622,0.296889,0.914027,0.805161,0.964787,0.318818,0.800286,0.977019,0.333488,0.459612,0.550093,0.801937,0.142255,0.299904,0.0563899,0.703427,0.605778,0.379865,0.638375,0.868264,0.880341,0.892355,0.843148,0.0124611,0.972607,0.21479,0.433317,0.819074,0.892677,0.191374,0.267802,0.24778,0.905943,0.25353,0.320078,0.381528,0.285779,0.60213,0.0218802,0.104945,0.579284,0.460068,0.937925,0.420934,0.156104,0.118859,0.433843,0.29157,0.692506,0.211558,0.37865,0.689232,0.962386,0.0923893,0.252049,0.781717,0.0558515,0.68764,0.25226,0.0675583,0.55838,0.798877,0.404604,0.311911,0.106463,0.989611,0.0102261,0.0749997,0.178815,0.0623261,0.871952,0.603208,0.115591,0.10009,0.885475,0.42539,0.573423,0.992156,0.562648,0.041243,0.130133,0.815234,0.335654,0.876289,0.744107,0.192627,0.587805,0.521079,0.169265,0.263844,0.167766,0.211845,0.955047,0.305162,0.0286382,0.109059,0.751444,0.866753,0.93527,0.557086,0.490461,0.293417,0.806938,0.279551,0.860473,0.19143,0.522933,0.168105,0.927017,0.0575819,0.509489,0.662169,0.300693,0.0431849,0.072852,0.636173,0.528781,0.723211,0.815804,0.329597,0.94679,0.803676,0.107235,0.421068,0.391575,0.194928,0.389675,0.0991201,0.519353,0.762695,0.028022,0.105535,0.0138638,0.210824,0.485298,0.337755,0.267328,0.895081,0.882244,0.734356,0.792769,0.256494,0.831059,0.0114027,0.746236,0.917727,0.673761,0.461099,0.515752,0.446385,0.48391,0.230451,0.303587,0.936875,0.207591,0.198484,0.471188,0.204244,0.829146,0.702884,0.121751,0.585996,0.19215,0.856966,0.154993,0.835488,0.771206,0.517346,0.875673,0.604518,0.932598,0.347709,0.43748,0.136871,0.780919,0.576266,0.809803,0.260851,0.306298,0.357146,0.874247,0.379591,0.378895,0.261968,0.26196,0.0601303,0.0803848,0.526802,0.647767,0.077334,0.940989,0.272012,0.195685,0.43374,0.375172,0.624976,0.101539,0.371388,0.74801,0.819204,0.973017,0.875025,0.596236,0.0540957,0.234718,0.816127,0.754087,0.994106,0.0903212,0.865186,0.925726,0.920226,0.471197,0.341352,0.175926,0.331113,0.0549142,0.458269,0.929383,0.148094,0.722174,0.260048,0.378386,0.820697,0.827352,0.791332,0.946378,0.940061,0.44556,0.731646,0.956619,0.683556,0.273508,0.693816,0.00417483,0.895377,0.197016,0.0180829,0.0388001,0.110756,0.415116,0.489681,0.240378,0.08284,0.597632,0.216726,0.543688,0.284972,0.350168,0.687097,0.753074,0.108111,0.278623,0.390274,0.736978,0.529827,0.243774,0.27119,0.0299024,0.710536,0.860427,0.499774,0.389115,0.163895,0.238206,0.844323,0.0799056,0.446229,0.869661,0.226414,0.975491,0.343754,0.579241,0.909587,0.733387,0.345186,0.652125,0.800845,0.0858164,0.747521,0.642549,0.47033,0.297225,0.296533,0.0324565,0.686062,0.972965,0.482782,0.92659,0.319781,0.979596,0.639669,0.00365335,0.399297,0.765154,0.824464,0.65312,0.154058,0.982598,0.213554,0.563444,0.754751,0.445591,0.493003,0.74803,0.491092,0.670089,0.637468,0.327631,0.702465,0.584401,0.62772,0.446412,0.771689,0.445089,0.33931,0.499428,0.818365,0.321376,0.47676,0.437473,0.568792,0.035106,0.531309,0.833188,0.166602,0.0636641,0.470524,0.624713,0.27881,0.572473,0.0581773,0.254167,0.330622,0.540471,0.981042,0.285585,0.475256,0.335675,0.933935,0.537715,0.738812,0.258396,0.899566,0.384535,0.56156,0.226811,0.734483,0.318419,0.530703,0.44537,0.710671,0.90385,0.650415,0.997659,0.518777,0.880646,0.0770849,0.147486,0.917913,0.940729,0.227229,0.907723,0.607365,0.811701,0.0251074,0.966833,0.666621,0.863753,0.914595,0.663964,0.277292,0.476194,0.332598,0.495968,0.876853,0.90153,0.791085,0.709459,0.704051,0.497246,0.10177,0.125946,0.551266,0.102284,0.76027,0.792445,0.716231,0.765085,0.454838,0.670225,0.29594,0.667116,0.24072,0.372813,0.070681,0.229898,0.937149,0.486624,0.839479,0.807811,0.773398,0.0365984,0.610707,0.0694527,0.367995,0.949379,0.356127,0.975884,0.546789,0.0164988,0.301547,0.998706,0.098098,0.375405,0.203706,0.774906,0.956644,0.670775,0.963299,0.509275,0.20526,0.406791,0.73265,0.382462,0.657065,0.943274,0.274182,0.864142,0.523361,0.0286498,0.0858021,0.706513,0.407169,0.292591,0.411471,0.574127,0.67971,0.869949,0.844314,0.938835,0.143142,0.579722,0.618504,0.829697,0.971679,0.254823,0.806059,0.902084,0.58567,0.458392,0.882173,0.377401,0.765942,0.284088,0.42296,0.288312,0.783259,0.119576,0.291699,0.190507,0.613703,0.0497062,0.767874,0.340731,0.807822,0.161693,0.656645,0.110288,0.929127,0.715229,0.764855,0.61222,0.68368,0.920209,0.836143,0.508385,0.411091,0.386638,0.84868,0.759045,0.943903,0.477669,0.240035,0.234444,0.469009,0.156721,0.3923,0.778332,0.144143,0.548937,0.263312,0.665213,0.416309,0.0357867,0.564007,0.612174,0.00745887,0.784521,0.776307,0.434843,0.202067,0.744707,0.455027,0.915316,0.155494,0.21905,0.247126,0.269565,0.175636,0.102371,0.78639,0.850901,0.03733,0.162888,0.970113,0.762728,0.530649,0.155001,0.107255,0.0963931,0.851404,0.478701,0.332545,0.759827,0.773035,0.771078,0.584433,0.56354,0.234122,0.412996,0.829883,0.0221847,0.15544,0.668469,0.551133,0.871649,0.0341585,0.385023,0.851829,0.141848,0.448007,0.77559,0.671518,0.21911,0.653393,0.385822,0.948728,0.0422609,0.979643,0.0301443,0.404952,0.844337,0.641546,0.246287,0.78599,0.00850058,0.916865,0.49663,0.22466,0.144393,0.780994,0.199066,0.475222,0.285631,0.672058,0.213385,0.883433,0.163813,0.162618,0.533233,0.530004,0.968381,0.763729,0.0454102,0.756752,0.0769873,0.0865589,0.701076,0.237085,0.329821,0.265072,0.147815,0.388307,0.664501,0.494418,0.180528,0.914814,0.358224,0.698137,0.0165691,0.735559,0.393626,0.511545,0.43621,0.359384,0.490804,0.898576,0.0792575,0.180994,0.864645,0.987699,0.583511,0.235604,0.984613,0.386291,0.42537,0.412507,0.110944,0.502109,0.94974,0.977811,0.478993,0.323034,0.928142,0.0452304,0.693335,0.899211,0.474423,0.168603,0.992608,0.468161,0.70648,0.159022,0.212165,0.939949,0.842097,0.0423239,0.599528,0.473561,0.609087,0.37991,0.166816,0.815998,0.976491,0.665346,0.0772415,0.840293,0.546054,0.264423,0.130043,0.0561227,0.334432,0.967147,0.763958,0.996823,0.0147289,0.780877,0.245954,0.443585,0.789708,0.9714,0.515886,0.00610763,0.52923,0.21518,0.762724,0.116171,0.0942464,0.780946,0.072117,0.26554,0.724581,0.963379,0.173215,0.793707,0.442262,0.963625,0.149025,0.702705,0.137276,0.264417,0.61888,0.312626,0.380892,0.727509,0.0620817,0.726946,0.194523,0.219466,0.123637,0.769719,0.875709,0.468273,0.598711,0.256517,0.410672,0.690824,0.956527,0.713691,0.134871,0.0352736,0.364018,0.887022,0.49865,0.0665642,0.591601,0.330463,0.945026,0.964739,0.365746,0.330643,0.460259,0.0460212,0.43127,0.275932,0.950584,0.695683,0.294467,0.0573688,0.0462387,0.10321,0.263452,0.806989,0.902065,0.354655,0.939038,0.945457,0.963282,0.273857,0.310807,0.593144,0.907138,0.906914,0.40247,0.369517,0.966813,0.480671,0.248707,0.926532,0.479392,0.380847,0.338819,0.547913,0.465645,0.289264,0.699973,0.255523,0.800942,0.589077,0.828324,0.414488,0.782763,0.75008,0.217609,0.94926,0.629739,0.928036,0.620335,0.249116,0.454299,0.426783,0.486051,0.689978,0.4538,0.056923,0.439349,0.116965,0.140676,0.406028,0.351702,0.969643,0.668027,0.371133,0.566763,0.388631,0.763046,0.755892,0.423048,0.309204,0.613786,0.808179,0.950791,0.956913,0.864887,0.230009,0.2814,0.643054,0.282262,0.7447,0.717176,0.33966,0.619916,0.470311,0.598137,0.660824,0.24574,0.558073,0.54527,0.953166,0.625375,0.596144,0.208918,0.779917,0.933693,0.321198,0.484754,0.812606,0.537893,0.403962,0.955871,0.259668,0.36584,0.424235,0.598701,0.753611,0.251016,0.0837189,0.384365,0.190512,0.181332,0.714766,0.132059,0.406915,0.91669,0.834317,0.181251,0.375411,0.389206,0.653173,0.800695,0.993492,0.75885,0.168543,0.249607,0.0631729,0.775881,0.998761,0.625468,0.0535591,0.537257,0.513655,0.997578,0.503616,0.796428,0.933971,0.845076,0.720159,0.544658,0.635714,0.55132,0.368496,0.932088,0.36041,0.391077,0.546957,0.646376,0.273213,0.367949,0.577132,0.453907,0.0478101,0.735515,0.415865,0.592335,0.430074,0.256343,0.426704,0.29744,0.761045,0.842648,0.0453227,0.772183,0.100322,0.528051,0.455051,0.353302,0.828392,0.184923,0.55359,0.638461,0.925904,0.821367,0.536358,0.15867,0.85494,0.520068,0.89688,0.545418,0.572409,0.873206,0.873165,0.971609,0.847517,0.393968,0.325868,0.803939,0.0594677,0.327102,0.881664,0.860661,0.955988,0.695636,0.996453,0.820342,0.322293,0.23169,0.533762,0.460062,0.268692,0.112596,0.388698,0.28138,0.903885,0.716941,0.557171,0.380786,0.445386,0.553935,0.93056,0.031884,0.524951,0.271397,0.552784,0.854904,0.290468,0.936793,0.258347,0.515621,0.444459,0.258732,0.260938,0.882099,0.834871,0.905662,0.714946,0.250017,0.651331,0.961378,0.621347,0.672161,0.146464,0.284966,0.401325,0.527776,0.825734,0.842093,0.209134,0.643814,0.336835,0.075999,0.0302674,0.974369,0.671731,0.763327,0.686922,0.150056,0.886564,0.700031,0.144309,0.788604,0.216272,0.952452,0.877532,0.536451,0.559178,0.0809174,0.0267103,0.0539591,0.2489,0.252213,0.849989,0.749285,0.110673,0.915614,0.938115,0.369738,0.504879,0.661527,0.902701,0.586631,0.594487,0.283483,0.766446,0.23437,0.925872,0.149387,0.016082,0.606527,0.739078,0.434433,0.942322,|0.77609,0.39953,0.0874661,0.239652,0.901703,0.848417,0.245004,0.985282,0.727398,0.714122,0.21025,0.803139,0.903995,0.676434,0.935659,0.209173,0.0964673,0.835874,0.71429,0.166597,0.333971,0.52012,0.64487,0.168972,0.954914,0.824427,0.90703,0.00243628,0.546364,0.660383,0.146995,0.898009,0.168601,0.381497,0.521271,0.687009,0.0378804,0.102946,0.638986,0.179981,0.907784,0.089498,0.0994713,0.529365,0.484163,0.379473,0.110034,0.565895,0.258207,0.518328,0.711875,0.226065,0.505555,0.512876,0.400636,0.484975,0.829699,0.767285,0.489011,0.981423,0.668274,0.987823,0.432373,0.907533,0.995657,0.659464,0.252174,0.602642,0.304241,0.807764,0.120363,0.248108,0.0170736,0.229976,0.883147,0.183666,0.185162,0.156146,0.818924,0.0668829,0.226467,0.787433,0.51099,0.404585,0.881001,0.948682,0.434997,0.583982,0.131501,0.0652275,0.162778,0.636863,0.53529,0.945056,0.25917,0.452546,0.59608,0.553359,0.950627,0.249238,0.387345,0.13221,0.440633,0.0706217,0.0749528,0.877792,0.938672,0.730743,0.714785,0.487157,0.503593,0.894363,0.294116,0.116518,0.300043,0.140839,0.779483,0.321671,0.826575,0.686062,0.390932,0.035476,0.655504,0.447023,0.438725,0.162922,0.468511,0.357846,0.422554,0.107044,0.24854,0.0623049,0.827366,0.771862,0.152269,0.700336,0.172972,0.198438,0.190362,0.275614,0.361774,0.442633,0.461454,0.146002,0.722596,0.884435,0.256001,0.0472517,0.60279,0.0640522,0.485997,0.0359083,0.553034,0.887419,0.378638,0.490705,0.860453,0.523117,0.118163,0.0356222,0.693335,0.196813,0.730182,0.869696,0.540433,0.759324,0.703665,0.783307,0.955672,0.128715,0.790087,0.937752,0.488743,0.518767,0.232559,0.386664,0.253873,0.725707,0.349761,0.693304,0.549306,0.180379,0.929021,0.439498,0.974738,0.647508,0.463358,0.230393,0.42086,0.264987,0.793143,0.162237,0.338988,0.460045,0.610307,0.868178,0.831274,0.529124,0.488488,0.46382,0.477153,0.647588,0.321808,0.645674,0.508676,0.13394,0.941559,0.134483,0.0370487,0.318666,0.722172,0.391481,0.481575,0.616257,0.863122,0.526052,0.319832,0.636186,0.879194,0.606032,0.595578,0.334229,0.407971,0.430832,0.436272,0.211294,0.234164,0.606859,0.0505829,0.207715,0.785568,0.0700614,0.431057,0.116874,0.572496,0.923776,0.266712,0.0337812,0.924777,0.364422,0.43078,0.454644,0.611797,0.118108,0.399912,0.123349,0.824256,0.361386,0.31822,0.897043,0.266241,0.121298,0.973705,0.720235,0.105433,0.472383,0.598739,0.542593,0.708349,0.667797,0.837601,0.31841,0.11174,0.935797,0.797878,0.146535,0.429837,0.889843,0.23623,0.418088,0.595933,0.0806252,0.479931,0.663227,0.528724,0.0574975,0.595894,0.440232,0.237507,0.347824,0.685131,0.0785187,0.3881,0.446476,0.517062,0.100116,0.141149,0.89401,0.749097,0.842185,0.329622,0.00992018,0.33458,0.183173,0.419939,0.895598,0.949214,0.275099,0.376439,0.767265,0.792494,0.679831,0.221893,0.634935,0.532756,0.955717,0.120451,0.525848,0.617047,0.94175,0.328944,0.59459,0.518835,0.599424,0.94855,0.475274,0.732469,0.781691,0.692025,0.515548,0.908093,0.216787,0.93988,0.597844,0.924836,0.867127,0.927433,0.82378,0.948158,0.889549,0.615967,0.583341,0.133384,0.528079,0.197159,0.736978,0.0410116,0.980641,0.209923,0.63027,0.992494,0.45175,0.727736,0.748417,0.825179,0.780836,0.268148,0.20386,0.902965,0.671404,0.883017,0.747692,0.64235,0.205865,0.192991,0.277601,0.693357,0.245146,0.201387,0.281094,0.182318,0.682276,0.518946,0.525695,0.705844,0.876963,0.31118,0.348963,0.662668,0.629368,0.710762,0.478359,0.9535,0.862173,0.314458,0.32038,0.516155,0.950783,0.313657,0.134302,0.70732,0.594284,0.562476,0.674052,0.926134,0.627886,0.284548,0.407366,0.920901,0.680479,0.385555,0.675383,0.32098,0.0174291,0.39983,0.831709,0.301538,0.233393,0.362968,0.169672,0.0528024,0.240519,0.788398,0.66754,0.128822,0.308567,0.608352,0.588236,0.463455,0.166468,0.486263,0.70356,0.246212,0.446348,0.68855,0.267139,0.339583,0.665428,0.69132,0.35645,0.0620373,0.040452,0.672335,0.745645,0.00510412,0.372246,0.979336,0.158577,0.397309,0.922789,0.750919,0.476713,0.49274,0.276864,0.598702,0.35366,0.677078,0.67657,0.118014,0.949775,0.484269,0.623746,0.484549,0.744557,0.0512142,0.0153307,0.772517,0.704619,0.467445,0.436163,0.477409,0.584098,0.201381,0.355048,0.702815,0.401258,0.0595897,0.954814,0.262941,0.00680429,0.0589753,0.37062,0.932101,0.593746,0.339175,0.46316,0.180358,0.0159913,0.00280315,0.893757,0.258109,0.926715,0.0784963,0.500389,0.305983,0.164555,0.0999971,0.903981,0.833758,0.123064,0.570437,0.618327,0.189053,0.915747,0.619679,0.751112,0.958136,0.865067,0.52947,0.16374,0.981661,0.260544,0.539371,0.531902,0.0421826,0.710914,0.266801,0.47572,0.603757,0.943303,0.315449,0.19991,0.191943,0.833788,0.316115,0.79694,0.722153,0.93308,0.11536,0.666663,0.969405,0.360753,0.115824,0.487908,0.559853,0.0731802,0.541518,0.161067,0.621391,0.32708,0.29479,0.398461,0.234033,0.392692,0.452679,0.00775176,0.707878,0.155333,0.989139,0.58865,0.870097,0.0638875,0.610141,0.155533,0.747727,0.527495,0.812765,0.389117,0.903333,0.753709,0.629824,0.403852,0.497382,0.328863,0.962432,0.93239,0.583765,0.0956268,0.374623,0.126032,0.29359,0.905111,0.352811,0.177774,0.667752,0.101396,0.602948,0.870052,0.247054,0.286669,0.678002,0.0430026,0.193714,0.732963,0.385569,0.136331,0.130373,0.682165,0.105671,0.39747,0.886378,0.717372,0.320892,0.415143,0.380252,0.128052,0.155967,0.721105,0.514659,0.586358,0.410713,0.62524,0.0456616,0.928894,0.834053,0.105006,0.841929,0.0397359,0.800077,0.83186,0.16116,0.115854,0.93683,0.965371,0.979802,0.692323,0.522728,0.170449,0.608707,0.246555,0.474855,0.186935,0.0526092,0.103077,0.612744,0.829449,0.577128,0.271231,0.853041,0.486725,0.611483,0.690263,0.0227947,0.218034,0.833194,0.272422,0.127384,0.223181,0.640148,0.403939,0.574238,0.729783,0.405852,0.640339,0.079187,0.116277,0.829422,0.0596222,0.901491,0.809456,0.52487,0.500596,0.452024,0.527608,0.901782,0.645942,0.0594302,0.984982,0.727526,0.917447,0.818651,0.367854,0.404008,0.0920646,0.513458,0.284968,0.89361,0.616076,0.799579,0.0524394,0.894453,0.0144662,0.831088,0.118582,0.622442,0.0989958,0.903189,0.12341,0.125581,0.208676,0.778619,0.942804,0.402964,0.826467,0.810994,0.000602126,0.379834,0.70252,0.992821,0.780923,0.151799,0.774539,0.16011,0.59776,0.206307,0.24925,0.612967,0.499646,0.805869,0.95531,0.615766,0.902463,0.573358,0.240064,0.793131,0.4117,0.945786,0.309202,0.527985,0.624318,0.725093,0.191553,0.721016,0.383099,0.289724,0.827016,0.8833,0.598678,0.12715,0.632109,0.459543,0.327244,0.705568,0.274751,0.744664,0.390108,0.787458,0.272572,0.952645,0.250655,0.660937,0.323257,0.824577,0.899473,0.844172,0.804429,0.165365,0.0853317,0.879645,0.810003,0.0867685,0.138764,0.656377,0.19804,0.217593,0.618828,0.0497166,0.979634,0.155195,0.481477,0.397612,0.729317,0.369888,0.753865,0.53007,0.216872,0.517729,0.731463,0.524259,0.762953,0.122296,0.448156,0.676658,0.80555,0.877142,0.815206,0.871455,0.710982,0.46391,0.796903,0.508356,0.53204,0.550122,0.459436,0.658759,0.146047,0.0686177,0.22774,0.0854112,0.851774,0.786996,0.443303,0.533705,0.403626,0.0171065,0.586396,0.998074,0.570306,0.0522091,0.298297,0.100766,0.32734,0.45412,0.272709,0.731148,0.838041,0.620062,0.791907,0.0365196,0.0399294,0.802428,0.540798,0.323054,0.454454,0.608332,0.550782,0.106243,0.456776,0.614269,0.521153,0.379256,0.938842,0.130009,0.706792,0.526973,0.72146,0.317766,0.532866,0.161659,0.140532,0.565025,0.584295,0.247257,0.123277,0.336127,0.314171,0.167019,0.847783,0.237841,0.0947216,0.198894,0.538961,0.905467,0.33293,0.0375986,0.901089,0.632378,0.402547,0.790789,0.252235,0.502669,0.92404,0.319164,0.576694,0.816376,0.873291,0.351717,0.0357106,0.488048,0.860827,0.292711,0.00410205,0.799733,0.567726,0.502111,0.0706068,0.29059,0.92887,0.468679,0.766349,0.559446,0.642455,0.126238,0.902151,0.862735,0.203053,0.572758,0.725466,0.865088,0.594509,0.651503,0.873964,0.684269,0.0738799,0.248572,0.080699,0.251769,0.983925,0.472567,0.584525,0.0136411,0.0538695,0.255572,0.0671532,0.164656,0.553681,0.16558,0.504083,0.0617749,0.313239,0.091967,0.944721,0.572763,0.813162,0.863049,0.143118,0.815169,0.802025,0.424035,0.118192,0.124543,0.216789,0.914516,0.000446796,0.0436619,0.79,0.519001,0.459605,0.199879,0.316007,0.524782,0.884018,0.949163,0.821886,0.356552,0.00241423,0.658679,0.012414,0.150836,0.468246,0.757792,0.381214,0.458195,0.227187,0.585754,0.506475,0.28783,0.283019,0.84993,0.213348,0.0784595,0.204131,0.758264,0.752201,0.859368,0.701086,0.99628,0.0778378,0.337184,0.539609,0.157892,0.350806,0.250387,0.452729,0.484499,0.979852,0.345782,0.688916,0.797964,0.606818,0.991184,0.660795,0.559183,0.290431,0.483068,0.576651,0.177359,0.745493,0.677222,0.392263,0.747205,0.148398,0.512551,0.490618,0.44655,0.658101,0.525578,0.191105,0.67081,0.434202,0.627855,0.224087,0.0987577,0.674088,0.466247,0.8842,0.460646,0.239937,0.333228,0.629673,0.366179,0.914033,0.396097,0.318538,0.897998,0.874975,0.80174,0.876562,0.495611,0.596457,0.402558,0.61982,0.518159,0.334809,0.584511,0.115858,0.93329,0.286258,0.277748,0.0355443,0.732657,0.273647,0.224817,0.94563,0.551676,0.246269,0.758848,0.691364,0.0386347,0.56888,0.152218,0.49795,0.599687,0.235608,0.00677669,0.203717,0.765597,0.995677,0.992851,0.335015,|0.821934,0.380933,0.649117,0.636235,0.720813,0.630263,0.680486,0.464228,0.399389,0.797281,0.777148,0.111241,0.472052,0.997689,0.167915,0.83713,0.126927,0.047877,0.218901,0.0988523,0.224282,0.875949,0.36562,0.284712,0.53704,0.924647,0.589048,0.166386,0.87652,0.774814,0.954818,0.462454,0.446086,0.934744,0.755131,0.956311,0.25149,0.843557,0.485939,0.527528,0.0369582,0.433656,0.310859,0.644603,0.68351,0.380337,0.67878,0.99371,0.499752,0.642452,0.440488,0.597472,0.0337055,0.20429,0.559766,0.268131,0.308138,0.32241,0.460725,0.299794,0.481071,0.0554036,0.699986,0.546328,0.802728,0.183722,0.817338,0.187397,0.843105,0.6384,0.610576,0.789651,0.802072,0.909508,0.789629,0.717711,0.276119,0.552612,0.46933,0.149982,0.384639,0.584605,0.297346,0.235102,0.16812,0.963993,0.0730247,0.0210424,0.927063,0.275564,0.23304,0.932423,0.309704,0.63638,0.931187,0.340585,0.54364,0.635882,0.403423,0.836659,0.0424522,0.535701,0.561259,0.818145,0.891333,0.769005,0.705176,0.091942,0.504572,0.907538,0.851536,0.633244,0.401371,0.0917869,0.525173,0.39777,0.746448,0.362518,0.483514,0.13562,0.374796,0.991597,0.00657016,0.310575,0.52934,0.239943,0.967836,0.554993,0.0724031,0.0361242,0.514209,0.288172,0.43795,0.198568,0.372151,0.220588,0.748204,0.95385,0.116346,0.232525,0.770533,0.171404,0.8719,0.725984,0.721654,0.670971,0.884517,0.917917,0.49092,0.138541,0.04808,0.510204,0.367569,0.252609,0.580437,0.82068,0.391344,0.0616176,0.499672,0.370984,0.798337,0.467038,0.581194,0.107169,0.128722,0.560023,0.449779,0.0413223,0.627858,0.592691,0.364284,0.934967,0.275449,0.0604597,0.537685,0.16452,0.680952,0.729169,0.807191,0.324236,0.434395,0.0383157,0.436398,0.23757,0.524889,0.0297156,0.32652,0.582659,0.245217,0.562286,0.823947,0.0152041,0.642385,0.161377,0.670733,0.577191,0.684451,0.211576,0.14121,0.486642,0.447425,0.345508,0.202314,0.316584,0.076912,0.987011,0.875356,0.184146,0.351549,0.761182,0.340106,0.537136,0.683931,0.707553,0.526019,0.540227,0.586422,0.590317,0.13923,0.314005,0.603181,0.621904,0.532658,0.301264,0.207829,0.814333,0.34815,0.745366,0.726364,0.436364,0.489403,0.0654581,0.218881,0.177452,0.0236609,0.479105,0.731796,0.693525,0.318683,0.356806,0.763121,0.641806,0.78431,0.62877,0.453038,0.0789167,0.06328,0.061554,0.396145,0.39939,0.699693,0.908463,0.536793,0.108755,0.599682,0.506798,0.287414,0.151897,0.257179,0.486115,0.536307,0.223912,0.706778,0.830161,0.0638297,0.874985,0.880287,0.136488,0.875879,0.608552,0.562206,0.628466,0.449015,0.993549,0.56039,0.16777,0.478305,0.529845,0.732087,0.232171,0.509004,0.261484,0.91013,0.378181,0.0387422,0.418472,0.0559918,0.74611,0.426427,0.532252,0.0582539,0.397623,0.327814,0.54659,0.203713,0.821348,0.392758,0.428083,0.885264,0.669194,0.0783413,0.646284,0.138697,0.633987,0.614804,0.68638,0.605409,0.593653,0.0275114,0.00579005,0.989467,0.856042,0.174305,0.71202,0.470973,0.0182374,0.462687,0.17927,0.971727,0.553991,0.458126,0.22903,0.747912,0.388242,0.900534,0.690193,0.151578,0.707181,0.279662,0.0128834,0.951743,0.407296,0.45596,0.530278,0.598693,0.736058,0.815868,0.0917662,0.523483,0.391478,0.694549,0.65439,0.364609,0.702296,0.105937,0.38226,0.792172,0.0645598,0.838231,0.800918,0.557381,0.695646,0.557487,0.547705,0.243926,0.395208,0.0039072,0.00849873,0.424131,0.101058,0.74053,0.0103856,0.357344,0.0383269,0.276131,0.19297,0.962312,0.339567,0.40292,0.994678,0.718556,0.848797,0.959035,0.486663,0.169483,0.276718,0.87399,0.334967,0.849208,0.277851,0.0637209,0.333476,0.246207,0.440553,0.904321,0.294662,0.572107,0.746924,0.616154,0.0853843,0.50604,0.673822,0.456405,0.465078,0.955939,0.808762,0.0920626,0.647716,0.690244,0.256714,0.899082,0.544405,0.175191,0.0111291,0.798739,0.315983,0.522548,0.00211549,0.793454,0.713171,0.501185,0.262028,0.407818,0.448105,0.170728,0.430693,0.796473,0.790958,0.541278,0.350761,0.901786,0.581737,0.103266,0.662112,0.218911,0.161301,0.0914984,0.914214,0.431651,0.17079,0.622909,0.338413,0.0859585,0.217898,0.624737,0.101005,0.731959,0.788495,0.501909,0.591809,0.16975,0.304271,0.220682,0.141653,0.848483,0.911103,0.178954,0.915269,0.649797,0.190091,0.221447,0.434178,0.894417,0.754041,0.990438,0.107239,0.0816576,0.59097,0.781547,0.316883,0.286833,0.851412,0.973754,0.0546939,0.837278,0.34611,0.363933,0.0885833,0.100664,0.837901,0.226037,0.699208,0.803359,0.975788,0.528751,0.827885,0.747912,0.178577,0.762821,0.462103,0.0639521,0.580746,0.159535,0.0717015,0.962434,0.899222,0.659902,0.605729,0.395444,0.78192,0.833112,0.352489,0.446298,0.27064,0.501565,0.463553,0.355677,0.119867,0.642527,0.567605,0.271524,0.784043,0.83903,0.70737,0.666892,0.598524,0.381396,0.764853,0.370921,0.184862,0.530399,0.554111,0.251024,0.563295,0.264929,0.307011,0.446698,0.226754,0.763057,0.60676,0.813491,0.705943,0.0372734,0.742951,0.383146,0.456163,0.906519,0.817349,0.873115,0.610275,0.0182706,0.108491,0.0824231,0.0110333,0.635243,0.579248,0.0124164,0.294527,0.171405,0.930247,0.276336,0.456274,0.911207,0.582654,0.782971,0.302247,0.249203,0.0265372,0.79333,0.510923,0.237595,0.169529,0.940591,0.91263,0.471869,0.340195,0.559705,0.298539,0.416754,0.128396,0.850395,0.257159,0.22594,0.254603,0.960261,0.0519531,0.225813,0.401689,0.297185,0.0934003,0.108886,0.00104153,0.254861,0.984021,0.48482,0.0364016,0.916506,0.302067,0.714678,0.0288264,0.4677,0.927201,0.588239,0.282775,0.550168,0.647421,0.984064,0.231649,0.191265,0.946355,0.543611,0.738417,0.191036,0.382685,0.871361,0.409614,0.687868,0.46644,0.467431,0.0822051,0.66129,0.592965,0.0937448,0.632664,0.786986,0.0228795,0.793189,0.269582,0.349081,0.296205,0.350509,0.819859,0.311993,0.932794,0.878952,0.572872,0.819828,0.582888,0.475748,0.442972,0.895198,0.344039,0.992365,0.604438,0.369057,0.885497,0.234215,0.122782,0.847255,0.909333,0.585791,0.0278163,0.966486,0.376738,0.772218,0.936899,0.443594,0.375167,0.471066,0.277226,0.463292,0.762201,0.805858,0.329467,0.412999,0.664578,0.737255,0.497041,0.941682,0.466193,0.0753829,0.22613,0.114775,0.820063,0.74521,0.955583,0.654216,0.913007,0.499142,0.280277,0.680942,0.396733,0.0138455,0.420463,0.273951,0.768564,0.662038,0.895933,0.982545,0.248656,0.222104,0.950417,0.214147,0.992323,0.482097,0.763119,0.419762,0.968355,0.714209,0.0107307,0.148835,0.418958,0.000958622,0.361095,0.550113,0.371362,0.0492251,0.657853,0.529222,0.253245,0.632742,0.661393,0.983324,0.431182,0.835576,0.694448,0.33115,0.798992,0.0356447,0.9245,0.409016,0.44806,0.751596,0.484784,0.659734,0.985265,0.981098,0.918889,0.660165,0.397646,0.503853,0.994317,0.278311,0.00790805,0.0400974,0.706636,0.0863593,0.11104,0.912625,0.534531,0.917051,0.953093,0.198401,0.159907,0.141104,0.851802,0.892433,0.336431,0.281729,0.524109,0.939086,0.107774,0.905136,0.282312,0.947589,0.745123,0.671838,0.906759,0.436068,0.948047,0.151649,0.766366,0.159371,0.993263,0.479084,0.879247,0.290701,0.24829,0.655937,0.905857,0.0446578,0.0536082,0.418997,0.687915,0.676249,0.309514,0.442636,0.0386623,0.614549,0.00132543,0.105331,0.384746,0.752155,0.588825,0.21101,0.480252,0.209426,0.627706,0.736136,0.723337,0.161551,0.254331,0.317698,0.929278,0.511216,0.909638,0.86439,0.244993,0.786208,0.110977,0.667165,0.678184,0.208432,0.728007,0.927066,0.961371,0.127662,0.987797,0.747933,0.849538,0.616786,0.881685,0.822015,0.0174255,0.21932,0.492376,0.156721,0.0269213,0.222814,0.74456,0.765655,0.604151,0.700565,0.742704,0.885598,0.10368,0.625604,0.274321,0.791708,0.559103,0.505255,0.139419,0.336421,0.108401,0.269542,0.800051,0.262534,0.268035,0.0191261,0.219934,0.894152,0.87966,0.0611254,0.952705,0.939466,0.657365,0.329495,0.555833,0.731633,0.0895824,0.693964,0.884102,0.772216,0.944631,0.771874,0.639035,0.0182942,0.290992,0.263355,0.943332,0.140945,0.0746856,0.870187,0.904188,0.0443006,0.41412,0.640831,0.749159,0.707659,0.761086,0.9782,0.229558,0.361709,0.783075,0.543591,0.627342,0.457311,0.165721,0.313626,0.897101,0.334108,0.284522,0.908253,0.659312,0.217814,0.850115,0.221978,0.713553,0.156057,0.134348,0.586532,0.0653349,0.639774,0.590282,0.100132,0.844444,0.993433,0.84486,0.192538,0.876992,0.817177,0.600132,0.366323,0.775355,0.591223,0.936064,0.91638,0.641108,0.22915,0.196149,0.260817,0.403709,0.223083,0.193301,0.815762,0.0298184,0.952244,0.928593,0.546023,0.978055,0.232134,0.466958,0.682816,0.122995,0.689064,0.736445,0.277703,0.0839189,0.771284,0.182254,0.246654,0.480281,0.593842,0.678412,0.403435,0.334929,0.897958,0.5821,0.10233,0.529809,0.826818,0.341073,0.0943871,0.942258,0.267745,0.175836,0.605053,0.612335,0.802702,0.50377,0.014483,0.201999,0.451872,0.261907,0.804114,0.801128,0.542865,0.912777,0.461391,0.595567,0.14763,0.221792,0.739882,0.299155,0.350439,0.458568,0.874569,0.943108,0.366852,0.770803,0.281119,0.354021,0.584895,0.0669779,0.0407228,0.150228,0.683428,0.021699,0.0112711,0.960629,0.937929,0.709036,0.9653,0.753441,0.347981,0.264397,0.0620329,0.649094,0.224705,0.0549844,0.366472,0.748733,0.772094,0.795166,0.939613,0.967326,0.284808,0.520922,0.983049,0.250626,0.730133,0.303683,0.0502852,0.423249,0.854811,0.786094,0.0256457,0.935292,0.831086,0.502191,0.535196,0.135062,0.97136,0.47263,0.536902,0.523624,0.0482929,0.864321,0.0488738,0.815242,|0.280296,0.0498176,0.731506,0.151296,0.195505,0.933222,0.624107,0.132682,0.592215,0.555722,0.169208,0.424034,0.480179,0.21046,0.780834,0.536466,0.899737,0.989236,0.133247,0.123802,0.19767,0.822559,0.0893079,0.198651,0.730284,0.130963,0.398101,0.28181,0.449818,0.672318,0.589734,0.607272,0.513609,0.367584,0.157089,0.0943625,0.311746,0.710072,0.590126,0.508392,0.768133,0.130964,0.337115,0.805531,0.269817,0.835292,0.172346,0.87723,0.503631,0.214601,0.343658,0.511224,0.510735,0.0219797,0.342653,0.534064,0.979051,0.772584,0.966452,0.449416,0.23702,0.379842,0.0425329,0.33341,0.100993,0.397924,0.526797,0.23641,0.124214,0.139975,0.538806,0.19213,0.379844,0.955777,0.0999684,0.152793,0.825307,0.00490403,0.744766,0.520926,0.565831,0.881608,0.302712,0.28793,0.329059,0.187838,0.452443,0.585745,0.0330646,0.412978,0.121534,0.733278,0.513289,0.0161011,0.459417,0.313778,0.424753,0.598177,0.719882,0.565124,0.545851,0.600637,0.491214,0.821347,0.545888,0.821899,0.619094,0.868109,0.362509,0.123116,0.385403,0.700869,0.283733,0.801652,0.972869,0.0402873,0.712843,0.0561773,0.457151,0.559914,0.464827,0.852947,0.426681,0.992896,0.843547,0.71733,0.704981,0.960259,0.112284,0.886783,0.816165,0.112875,0.421721,0.858847,0.261864,0.106095,0.707562,0.219467,0.0769913,0.26613,0.998864,0.642995,0.661327,0.141448,0.985959,0.699813,0.562456,0.798952,0.89708,0.0357751,0.963621,0.289978,0.562152,0.0385384,0.0123581,0.0383506,0.193457,0.421213,0.1685,0.798831,0.59842,0.381738,0.291998,0.790996,0.381591,0.0136793,0.980015,0.994792,0.519191,0.176555,0.072122,0.510107,0.518336,0.494191,0.6501,0.569148,0.837439,0.912062,0.305749,0.761809,0.21696,0.903744,0.65381,0.023113,0.544824,0.0157194,0.497837,0.0444634,0.503222,0.187829,0.363638,0.297701,0.333184,0.716649,0.416331,0.144716,0.632874,0.594168,0.403729,0.724702,0.106495,0.857104,0.208191,0.423868,0.480834,0.467408,0.177434,0.702315,0.592825,0.657572,0.479737,0.901402,0.987986,0.87607,0.915153,0.444617,0.666065,0.190086,0.634959,0.803726,0.0320243,0.649697,0.417688,0.466705,0.186588,0.0893301,0.60323,0.870309,0.0561374,0.902351,0.223298,0.958229,0.526251,0.714534,0.262292,0.850613,0.747093,0.630779,0.845074,0.666602,0.353084,0.421616,0.542475,0.913552,0.885558,0.804989,0.566078,0.917636,0.112448,0.225504,0.892018,0.495675,0.524824,0.790359,0.440661,0.605714,0.761815,0.82139,0.898059,0.295497,0.924934,0.30619,0.70388,0.845131,0.22227,0.769207,0.25731,0.16366,0.194615,0.0916629,0.957179,0.392614,0.404522,0.891122,0.842192,0.709908,0.627085,0.346253,0.260306,0.602832,0.188976,0.592741,0.00125921,0.0726008,0.638663,0.115983,0.516182,0.815116,0.323079,0.796725,0.123029,0.708649,0.625161,0.575828,0.687485,0.08281,0.427146,0.349439,0.187655,0.698853,0.0864251,0.630764,0.252011,0.777479,0.142509,0.595772,0.636782,0.0262031,0.930246,0.50854,0.565866,0.329929,0.804339,0.703123,0.670538,0.400163,0.0858442,0.122887,0.832312,0.933904,0.897803,0.107556,0.324515,0.832413,0.563111,0.633799,0.525688,0.235007,0.099716,0.897804,0.14448,0.557049,0.558949,0.678784,0.709552,0.386698,0.869933,0.355252,0.8091,0.607074,0.372554,0.214801,0.633804,0.044315,0.342023,0.917105,0.539985,0.64255,0.492923,0.196947,0.978619,0.610393,0.0244836,0.316987,0.299094,0.816632,0.476057,0.110653,0.497121,0.924702,0.99929,0.907201,0.812988,0.221603,0.144969,0.00302821,0.627014,0.00386858,0.533347,0.10682,0.591789,0.163797,0.462147,0.574137,0.743855,0.27736,0.15292,0.0447664,0.852132,0.634768,0.691261,0.825037,0.295936,0.527991,0.0845729,0.25247,0.339724,0.266163,0.293179,0.162182,0.337524,0.244948,0.880504,0.259385,0.823268,0.0298662,0.615824,0.467785,0.114449,0.352882,0.513497,0.476404,0.0989269,0.330829,0.434631,0.980806,0.715961,0.396412,0.194385,0.42459,0.815617,0.835115,0.476317,0.4476,0.538173,0.721266,0.6859,0.647747,0.946928,0.0708032,0.968066,0.932591,0.42033,0.345668,0.434273,0.00181133,0.748098,0.438187,0.912295,0.851059,0.264538,0.393194,0.304278,0.16457,0.539329,0.0380214,0.373894,0.92621,0.343314,0.453425,0.153722,0.347651,0.964949,0.107904,0.747088,0.230487,0.226873,0.316805,0.593038,0.963707,0.532223,0.0883127,0.801805,0.053366,0.404028,0.238424,0.413019,0.724344,0.374029,0.695146,0.353313,0.107391,0.310324,0.684169,0.0617489,0.200588,0.440177,0.993161,0.279086,0.641779,0.420173,0.335114,0.718592,0.0203118,0.543255,0.551268,0.578565,0.059072,0.914418,0.202712,0.3926,0.394498,0.420634,0.26011,0.605651,0.0362388,0.378694,0.989428,0.663971,0.85683,0.347106,0.776888,0.40549,0.808421,0.0609471,0.0570133,0.509142,0.454174,0.276765,0.0985461,0.392792,0.148584,0.941168,0.359244,0.333312,0.4306,0.408831,0.820426,0.921355,0.951691,0.043654,0.0994912,0.872502,0.126091,0.623578,0.668884,0.314009,0.595485,0.387989,0.353207,0.0931999,0.753493,0.358282,0.713389,0.343664,0.808754,0.705497,0.0192584,0.764928,0.903462,0.847471,0.342263,0.781574,0.169714,0.869478,0.687729,0.405883,0.992212,0.749122,0.976705,0.123491,0.603201,0.795982,0.77039,0.328641,0.0257031,0.646241,0.716519,0.149186,0.0290875,0.109098,0.920757,0.320912,0.812785,0.368246,0.49062,0.490864,0.684986,0.391829,0.12758,0.298407,0.966149,0.802419,0.59714,0.00875098,0.304128,0.0163021,0.328603,0.567648,0.520764,0.0938119,0.863508,0.654627,0.878769,0.848934,0.970912,0.721189,0.890925,0.678581,0.9091,0.770502,0.799096,0.795408,0.962411,0.804737,0.602103,0.759606,0.828885,0.825235,0.575109,0.875996,0.761326,0.137973,0.567423,0.517766,0.0202109,0.14573,0.292625,0.0562711,0.781088,0.393477,0.0307677,0.163125,0.487994,0.193977,0.253634,0.622069,0.0964363,0.289384,0.817081,0.876155,0.355916,0.760362,0.709446,0.776363,0.161549,0.23332,0.841996,0.119872,0.246153,0.400384,0.835487,0.962248,0.568937,0.718215,0.320625,0.570769,0.894954,0.244042,0.291857,0.762787,0.217215,0.266315,0.772035,0.132868,0.288544,0.24445,0.000441611,0.0413148,0.282752,0.408483,0.431823,0.281385,0.63211,0.197093,0.0715459,0.161295,0.579682,0.712082,0.882135,0.64101,0.0803744,0.340465,0.732567,0.707109,0.873803,0.694606,0.377833,0.0725124,0.499953,0.365177,0.522583,0.00886756,0.273368,0.471905,0.656844,0.913809,0.0363373,0.939549,0.461421,0.964114,0.758627,0.649862,0.566021,0.993632,0.762483,0.619662,0.435305,0.274341,0.625655,0.49487,0.325948,0.791101,0.240184,0.716093,0.444446,0.279301,0.308336,0.448914,0.748973,0.680153,0.567896,0.69739,0.743789,0.561754,0.625648,0.539327,0.752237,0.123301,0.760125,0.612871,0.384535,0.812592,0.118288,0.542199,0.809559,0.147559,0.00966728,0.977416,0.850701,0.399142,0.485353,0.0833954,0.803299,0.304999,0.512851,0.199212,0.460444,0.171365,0.223062,0.592493,0.700128,0.341015,0.9318,0.74512,0.213203,0.983608,0.182454,0.198795,0.194195,0.674266,0.521038,0.0738749,0.842554,0.703042,0.637234,0.00400233,0.939878,0.314651,0.735242,0.22146,0.699216,0.825772,0.912959,0.108158,0.370865,0.111081,0.607944,0.435642,0.404694,0.487858,0.509916,0.655365,0.0692399,0.708378,0.727907,0.206671,0.710842,0.156929,0.858344,0.183472,0.285883,0.439032,0.81135,0.407191,0.267169,0.129806,0.00747555,0.481245,0.37498,0.12116,0.607454,0.222964,0.703539,0.84373,0.770393,0.738827,0.330448,0.581519,0.51613,0.34295,0.366103,0.785239,0.539548,0.501188,0.561525,0.438851,0.124833,0.452097,0.986,0.0436425,0.6847,0.121938,0.495285,0.674602,0.580791,0.771557,0.372468,0.565162,0.154247,0.188236,0.222421,0.140165,0.934463,0.988599,0.772995,0.195097,0.630441,0.497111,0.143107,0.651739,0.187142,0.838265,0.275995,0.523553,0.980877,0.536429,0.656163,0.28935,0.0254765,0.126989,0.697217,0.151277,0.392516,0.0229365,0.137118,0.579957,0.18966,0.727715,0.583094,0.864001,0.50864,0.870028,0.23374,0.807236,0.669451,0.000277996,0.32923,0.960901,0.494709,0.982566,0.6633,0.557707,0.0285813,0.853078,0.0651977,0.473155,0.982869,0.221995,0.91413,0.665984,0.805693,0.266839,0.443748,0.0400259,0.665357,0.0928825,0.594644,0.259924,0.0323188,0.947095,0.96926,0.916684,0.559271,0.416782,0.249423,0.786577,0.344348,0.907307,0.53875,0.320279,0.87219,0.992139,0.671984,0.94329,0.852341,0.317508,0.77329,0.361283,0.764022,0.913546,0.585718,0.185496,0.880816,0.787033,0.816856,0.0879967,0.148548,0.0872293,0.437293,0.297954,0.468867,0.637939,0.469011,0.248778,0.385191,0.95258,0.865877,0.0525541,0.372372,0.502289,0.0215419,0.660346,0.87365,0.249069,0.145678,0.671318,0.885122,0.0811541,0.108736,0.444049,0.374373,0.0978783,0.502155,0.193535,0.246749,0.794787,0.23881,0.90376,0.601717,0.180389,0.623454,0.319324,0.564947,0.420062,0.216627,0.159355,0.860376,0.884693,0.378077,0.897769,0.370188,0.143854,0.798707,0.183517,0.646089,0.759533,0.0234734,0.614073,0.455724,0.532742,0.547504,0.970685,0.167863,0.919063,0.270372,0.535376,0.115229,0.730922,0.339098,0.300822,0.297837,0.491269,0.368161,0.739848,0.805725,0.798499,0.126654,0.7715,0.826667,0.896525,0.183076,0.73629,0.681896,0.512899,0.242287,0.624762,0.469769,0.682214,0.572206,0.0205508,0.122283,0.377127,0.128318,0.913794,0.61644,0.215746,0.325849,0.214961,0.580532,0.591358,0.0313477,0.499109,0.00598937,0.541527,0.697285,0.426631,0.059354,0.900224,0.101778,0.498843,0.306963,0.695377,0.763104,0.270373,0.966529,0.0716622,0.128008,0.852912,0.437311,|0.431385,0.563704,0.532792,0.16663,0.00202292,0.972706,0.0249396,0.89325,0.560981,0.891298,0.315321,0.62832,0.185337,0.0408481,0.0839226,0.21755,0.430373,0.363253,0.974762,0.291837,0.300076,0.969794,0.752392,0.765767,0.138547,0.392847,0.379073,0.934558,0.581761,0.458169,0.555448,0.263276,0.156222,0.831166,0.567917,0.486831,0.991862,0.571172,0.830063,0.98525,0.854103,0.449234,0.731847,0.468563,0.315447,0.595377,0.444051,0.539002,0.717875,0.846257,0.399109,0.141342,0.254675,0.69569,0.988539,0.696512,0.305218,0.62187,0.0223128,0.201211,0.432607,0.177344,0.777904,0.240434,0.238856,0.445967,0.0439037,0.900581,0.973676,0.785778,0.669659,0.0414694,0.830339,0.0153515,0.247674,0.695458,0.565956,0.836228,0.786909,0.641384,0.919404,0.679542,0.30185,0.960732,0.366588,0.778262,0.513327,0.33527,0.553671,0.361491,0.835348,0.781994,0.309682,0.452979,0.570267,0.859616,0.164101,0.178043,0.1623,0.130894,0.103955,0.700101,0.230634,0.25752,0.0633811,0.206513,0.233988,0.885044,0.87653,0.663632,0.613634,0.650022,0.463299,0.729642,0.806805,0.938915,0.349132,0.260557,0.798614,0.405806,0.900436,0.881857,0.274626,0.0325876,0.423862,0.14932,0.227548,0.847357,0.903266,0.464905,0.560388,0.941668,0.871079,0.746217,0.876214,0.411805,0.795331,0.722815,0.716949,0.981051,0.998904,0.790205,0.29605,0.976368,0.899958,0.536398,0.165859,0.653971,0.468474,0.400336,0.966361,0.00453013,0.521678,0.0748581,0.891228,0.914101,0.19495,0.4273,0.631951,0.245082,0.349171,0.45011,0.834582,0.271074,0.60413,0.709159,0.334896,0.895377,0.963639,0.341945,0.156471,0.636922,0.858751,0.699976,0.579841,0.835958,0.671245,0.275785,0.900092,0.725963,0.881847,0.263401,0.64947,0.116457,0.172663,0.226245,0.552089,0.52456,0.29441,0.765698,0.407146,0.310543,0.195413,0.438407,0.874519,0.461454,0.040154,0.540238,0.144026,0.581672,0.212629,0.0533149,0.431172,0.267762,0.252339,0.246129,0.384016,0.374219,0.162184,0.256638,0.815228,0.667645,0.109253,0.760264,0.0575441,0.609694,0.151518,0.903446,0.656372,0.825585,0.762269,0.671298,0.248244,0.713627,0.444708,0.296303,0.0730273,0.650512,0.0342196,0.476752,0.193197,0.485341,0.559344,0.21092,0.609735,0.317867,0.986973,0.524598,0.0811263,0.266253,0.725028,0.96222,0.56299,0.465963,0.134633,0.681182,0.7454,0.346832,0.666359,0.185116,0.807641,0.675789,0.726131,0.747202,0.929944,0.841919,0.0927448,0.153723,0.828987,0.377156,0.350662,0.091483,0.683163,0.0489151,0.860501,0.76838,0.143611,0.982274,0.0729671,0.119922,0.343288,0.482989,0.963396,0.419514,0.258618,0.0304775,0.196177,0.22035,0.717386,0.462911,0.220659,0.458939,0.999376,0.339017,0.402999,0.875139,0.687345,0.22457,0.835185,0.49934,0.749199,0.186429,0.627432,0.441049,0.134115,0.110325,0.1115,0.767184,0.274307,0.757386,0.660208,0.0940073,0.0338331,0.746356,0.88414,0.546578,0.948085,0.693416,0.341961,0.766301,0.0430601,0.200587,0.24067,0.40939,0.0936456,0.196995,0.275986,0.705135,0.541741,0.797,0.488768,0.0770034,0.67188,0.338926,0.018405,0.442473,0.949036,0.0476299,0.130417,0.515013,0.515822,0.245315,0.712153,0.646447,0.983657,0.232279,0.890366,0.958443,0.0232897,0.371781,0.999506,0.899497,0.531353,0.0201409,0.222532,0.653534,0.373666,0.365987,0.269937,0.0132738,0.344037,0.869008,0.0274305,0.718488,0.332127,0.329028,0.0258734,0.863337,0.890904,0.271703,0.457934,0.157694,0.653234,0.012068,0.4582,0.679893,0.715016,0.854463,0.145044,0.939265,0.793447,0.221217,0.984185,0.547626,0.0193424,0.320881,0.931761,0.160833,0.275129,0.185846,0.845921,0.677979,0.240404,0.045258,0.894211,0.649738,0.963783,0.473224,0.670241,0.753014,0.513519,0.0980555,0.457422,0.407385,0.00189286,0.258734,0.387686,0.758789,0.27127,0.572036,0.0220331,0.709533,0.645181,0.691459,0.216184,0.553713,0.404777,0.121402,0.283741,0.764069,0.395183,0.935043,0.147551,0.659116,0.170967,0.26483,0.692762,0.829335,0.332975,0.280975,0.445026,0.860861,0.518413,0.779189,0.460884,0.0857268,0.251326,0.54965,0.50469,0.962202,0.923054,0.837348,0.326256,0.698869,0.515912,0.942683,0.171494,0.73194,0.0537408,0.245839,0.87647,0.191292,0.294347,0.909823,0.631909,0.450489,0.875772,0.00196165,0.30231,0.0447897,0.952824,0.259401,0.48175,0.188217,0.0423309,0.683138,0.84691,0.942969,0.334873,0.398567,0.508649,0.27263,0.768096,0.397846,0.518749,0.322545,0.642057,0.796122,0.770285,0.925356,0.319614,0.790706,0.106662,0.374179,0.453828,0.61279,0.671588,0.379687,0.553262,0.47689,0.428326,0.370076,0.584258,0.941093,0.725814,0.0666768,0.903535,0.483741,0.616296,0.931687,0.271144,0.326769,0.652397,0.777876,0.126596,0.644314,0.983436,0.906121,0.238482,0.277124,0.647541,0.934399,0.335181,0.314694,0.734219,0.607372,0.984542,0.330814,0.61543,0.646557,0.582411,0.373691,0.806172,0.566221,0.618487,0.755798,0.333317,0.285327,0.77287,0.726833,0.848034,0.895413,0.0612707,0.88852,0.567647,0.0877775,0.860751,0.472013,0.157618,0.695271,0.70303,0.623045,0.569536,0.819169,0.206089,0.207461,0.338806,0.776528,0.939668,0.238169,0.964142,0.0597028,0.205746,0.190437,0.131277,0.00323409,0.304111,0.15943,0.322369,0.453839,0.164158,0.648497,0.925619,0.427913,0.876507,0.778206,0.799146,0.562305,0.955822,0.0243124,0.811758,0.877951,0.316741,0.172418,0.141998,0.00261587,0.499125,0.145888,0.393741,0.119675,0.556722,0.0485197,0.159945,0.557527,0.618917,0.630871,0.471844,0.505293,0.754096,0.811748,0.350766,0.037252,0.0629402,0.857323,0.826696,0.389731,0.189796,0.759194,0.356928,0.828439,0.963631,0.513815,0.938451,0.952967,0.918001,0.886712,0.272625,0.691387,0.533931,0.631896,0.771254,0.629755,0.830525,0.449655,0.186259,0.291102,0.429789,0.29889,0.421735,0.650945,0.405287,0.205297,0.760387,0.749226,0.885223,0.558923,0.0135921,0.470436,0.771625,0.410204,0.136134,0.502826,0.80394,0.451526,0.572028,0.256649,0.454295,0.757331,0.235085,0.501435,0.966057,0.282549,0.43741,0.137652,0.725063,0.0386881,0.553928,0.41388,0.871641,0.891389,0.0917389,0.232766,0.758649,0.335343,0.841751,0.0866401,0.673618,0.0824108,0.0149705,0.350879,0.729791,0.532928,0.990077,0.165027,0.78269,0.730926,0.554216,0.584946,0.634233,0.351781,0.734326,0.0226998,0.0902596,0.899483,0.63196,0.62128,0.431648,0.945836,0.723807,0.420154,0.256749,0.619145,0.0894743,0.277465,0.563722,0.466162,0.639452,0.927911,0.470703,0.116116,0.582988,0.978127,0.945807,0.464006,0.220125,0.904154,0.250026,0.420865,0.0131831,0.977221,0.362278,0.388543,0.951228,0.451623,0.0154237,0.391639,0.620255,0.50037,0.586586,0.828263,0.203155,0.426163,0.238188,0.144596,0.0200796,0.363534,0.843363,0.957746,0.721867,0.422691,0.150552,0.210474,0.99468,0.942037,0.38958,0.315372,0.568602,0.130414,0.685355,0.210106,0.334412,0.362908,0.733029,0.413413,0.48068,0.257967,0.882448,0.257377,0.406,0.973172,0.0101658,0.320851,0.179371,0.973722,0.653295,0.89973,0.957572,0.275235,0.376458,0.797236,0.00966513,0.938921,0.316743,0.0658031,0.211627,0.346154,0.578642,0.336389,0.590997,0.410339,0.123574,0.324174,0.443403,0.36292,0.632506,0.919453,0.175619,0.325087,0.139791,0.189864,0.22543,0.768334,0.955717,0.578297,0.64582,0.10395,0.0856513,0.982553,0.594505,0.797382,0.991736,0.700292,0.568222,0.146154,0.250286,0.150258,0.740258,0.94459,0.234609,0.0757346,0.0160814,0.0177193,0.59315,0.923007,0.509337,0.888237,0.563793,0.0480813,0.0460739,0.211796,0.117856,0.189236,0.395791,0.44955,0.195523,0.505426,0.105233,0.580749,0.266038,0.155272,0.150579,0.911191,0.279632,0.527221,0.154167,0.973992,0.388457,0.821055,0.250859,0.886601,0.58157,0.744108,0.978206,0.251215,0.15274,0.18442,0.4786,0.287164,0.954192,0.510736,0.657053,0.237856,0.155391,0.301115,0.346801,0.778435,0.484906,0.387696,0.328726,0.610145,0.911262,0.879567,0.997736,0.106984,0.697603,0.980729,0.354374,0.939183,0.18752,0.804878,0.986963,0.5177,0.172432,0.777989,0.640962,0.780522,0.871403,0.270482,0.742453,0.178163,0.507988,0.894421,0.75938,0.0966927,0.987679,0.609409,0.199463,0.908479,0.707169,0.348397,0.719965,0.206331,0.968801,0.539403,0.899309,0.432886,0.258391,0.770559,0.836673,0.89015,0.993299,0.733181,0.497875,0.59202,0.671371,0.773089,0.86868,0.106791,0.123577,0.804593,0.0125355,0.129831,0.0623966,0.432615,0.859688,0.000949681,0.16924,0.519979,0.434251,0.539266,0.469432,0.719953,0.25787,0.310682,0.708177,0.286293,0.15671,0.781817,0.215944,0.651351,0.358203,0.200783,0.257756,0.672565,0.657674,0.0717845,0.0292111,0.643416,0.746572,0.851344,0.779854,0.0124177,0.115674,0.286594,0.589664,0.380265,0.769196,0.441044,0.340648,0.480593,0.296014,0.337244,0.348583,0.397058,0.936685,0.876465,0.900442,0.335685,0.0872048,0.405122,0.868057,0.199027,0.0796884,0.0200449,0.603079,0.703097,0.0388516,0.609268,0.603356,0.578797,0.4899,0.433135,0.672756,0.478318,0.974273,0.882521,0.396616,0.288504,0.683476,0.956565,0.548168,0.579409,0.826307,0.976291,0.443549,0.178541,0.35888,0.35064,0.143973,0.136967,0.750227,0.618493,0.241792,0.0963557,0.512658,0.845864,0.993247,0.0929936,0.982852,0.682269,0.524275,0.398337,0.200024,0.706648,0.577487,0.835265,0.530841,0.0326689,0.418738,0.360335,0.577834,0.585855,0.902049,0.718131,0.836105,0.663725,0.688122,0.66853,0.787574,0.95151,0.250768,0.408343,0.891808,0.182812,0.340533,0.519326,0.162483,0.782453,0.627379,0.862544,|0.660232,0.629173,0.887747,0.0504849,0.532035,0.632962,0.815647,0.751429,0.468258,0.341718,0.339547,0.579529,0.72073,0.0460901,0.732098,0.944146,0.737107,0.925718,0.94403,0.587589,0.522758,0.403794,0.275785,0.866339,0.778933,0.870277,0.650401,0.648137,0.854506,0.821757,0.883913,0.569286,0.873539,0.976756,0.158863,0.167206,0.0400645,0.0852567,0.483281,0.645939,0.388717,0.83004,0.248421,0.0827116,0.392102,0.425082,0.499426,0.181388,0.0828891,0.0287574,0.600194,0.0716961,0.815366,0.456143,0.780225,0.426787,0.511927,0.630063,0.0988786,0.331172,0.269027,0.943371,0.562487,0.634855,0.00762326,0.192412,0.927099,0.0971348,0.424916,0.339887,0.377011,0.738124,0.443043,0.478492,0.267271,0.169187,0.520861,0.510191,0.0723231,0.26876,0.683511,0.460661,0.552148,0.954817,0.132695,0.249906,0.909631,0.580469,0.244828,0.373029,0.107054,0.31728,0.569328,0.941804,0.887256,0.571204,0.109076,0.711148,0.23837,0.445365,0.956251,0.754685,0.90152,0.671033,0.70656,0.356095,0.235747,0.311677,0.618641,0.656305,0.153997,0.0200261,0.072574,0.512431,0.811916,0.122378,0.434008,0.0562363,0.40325,0.407774,0.586341,0.821823,0.850475,0.0458499,0.912131,0.127026,0.659375,0.913506,0.864913,0.859511,0.513609,0.73462,0.309375,0.527444,0.94748,0.752094,0.855556,0.0741897,0.925872,0.159797,0.385858,0.768384,0.533607,0.765413,0.962626,0.141986,0.613358,0.1635,0.371082,0.500683,0.154077,0.838494,0.884841,0.0785715,0.882773,0.107118,0.987196,0.493439,0.470217,0.42588,0.959418,0.599072,0.0888752,0.679859,0.443114,0.590392,0.22953,0.960635,0.106472,0.0622098,0.975648,0.0347099,0.728126,0.748884,0.548441,0.560789,0.370121,0.665242,0.31697,0.936386,0.0671399,0.289068,0.192488,0.563491,0.555017,0.593137,0.196192,0.314535,0.036332,0.0809789,0.554292,0.671702,0.085039,0.68977,0.735363,0.775089,0.255604,0.610119,0.153349,0.289888,0.939255,0.262413,0.841472,0.201961,0.714474,0.630551,0.36051,0.364885,0.891169,0.986392,0.379024,0.471318,0.608624,0.486581,0.17116,0.836738,0.909574,0.267339,0.455041,0.698625,0.645608,0.968839,0.853883,0.677769,0.974698,0.722471,0.879255,0.882729,0.85078,0.441811,0.947406,0.743361,0.529801,0.42467,0.530426,0.609732,0.0933417,0.296507,0.960753,0.486041,0.0590954,0.163782,0.278027,0.63983,0.144833,0.388573,0.782782,0.84506,0.0936422,0.316606,0.425197,0.0310592,0.0143514,0.177197,0.139353,0.349418,0.17461,0.817043,0.591025,0.491643,0.596331,0.610093,0.343903,0.661083,0.0267402,0.983115,0.947704,0.0679126,0.690241,0.519963,0.821104,0.110242,0.908024,0.772119,0.399821,0.435056,0.70467,0.645218,0.520593,0.875894,0.884211,0.414534,0.684813,0.00157303,0.250245,0.606021,0.846359,0.622463,0.384357,0.462084,0.0472271,0.213952,0.732402,0.877592,0.352328,0.448041,0.491089,0.93572,0.792153,0.442498,0.226173,0.89427,0.708624,0.054453,0.806384,0.00711948,0.168937,0.114714,0.110673,0.872988,0.322057,0.0250553,0.946773,0.904059,0.28308,0.373474,0.908671,0.262841,0.0573158,0.750227,0.182936,0.204366,0.702079,0.569735,0.92969,0.564067,0.224401,0.879486,0.0218332,0.354081,0.436214,0.964638,0.0709822,0.835947,0.340807,0.654567,0.248445,0.815099,0.314916,0.194254,0.916583,0.132109,0.794453,0.21672,0.854229,0.64799,0.0161323,0.05998,0.433845,0.383677,0.139457,0.460164,0.725308,0.717481,0.328689,0.116232,0.956183,0.802056,0.609258,0.149196,0.478186,0.411462,0.678719,0.0815033,0.313694,0.0791174,0.414626,0.503438,0.883912,0.744724,0.157053,0.472511,0.486272,0.168406,0.150256,0.380949,0.695937,0.174414,0.811653,0.3367,0.0334885,0.430413,0.974473,0.501974,0.698467,0.532915,0.0496396,0.556872,0.778631,0.81841,0.931477,0.331963,0.491261,0.295198,0.463014,0.92457,0.0814949,0.101379,0.959459,0.956845,0.360603,0.462354,0.599334,0.912497,0.760871,0.152897,0.236136,0.0264274,0.275628,0.175264,0.0273193,0.280793,0.649599,0.370454,0.0686031,0.592413,0.995597,0.0531899,0.444783,0.490498,0.99483,0.340866,0.374975,0.180808,0.821348,0.444376,0.422152,0.920057,0.0659181,0.30769,0.215058,0.862113,0.113878,0.939696,0.0473208,0.843985,0.658017,0.477419,0.777885,0.558173,0.225028,0.366979,0.0442613,0.553693,0.141421,0.507574,0.800704,0.0144019,0.537379,0.283034,0.242536,0.565395,0.0801737,0.0523509,0.798006,0.426476,0.541258,0.0180871,0.976833,0.822723,0.889311,0.197128,0.0506014,0.709707,0.697548,0.348752,0.772574,0.224575,0.414218,0.461354,0.0180755,0.0557804,0.412603,0.0736909,0.232047,0.720014,0.957512,0.726787,0.132698,0.455929,0.35636,0.101364,0.113399,0.5337,0.300652,0.303208,0.397125,0.637494,0.500607,0.112094,0.294024,0.404296,0.507038,0.0882683,0.0432206,0.933405,0.741169,0.846896,0.0846673,0.493139,0.38313,0.582476,0.418587,0.861535,0.267182,0.183881,0.876425,0.842933,0.36046,0.82358,0.932217,0.436907,0.100975,0.922014,0.958715,0.860138,0.636625,0.696586,0.142594,0.321655,0.563999,0.779584,0.110362,0.967412,0.779678,0.180465,0.161786,0.422243,0.0867927,0.771221,0.752012,0.450962,0.413666,0.572927,0.122608,0.410089,0.420358,0.653847,0.0519077,0.807955,0.296228,0.653407,0.870031,0.103611,0.681652,0.232068,0.255682,0.367581,0.732101,0.60103,0.278601,0.33448,0.354218,0.343655,0.128241,0.946144,0.445574,0.869781,0.0759597,0.548408,0.312497,0.546065,0.732467,0.379818,0.699668,0.435734,0.717088,0.0758151,0.799504,0.584402,0.674135,0.348201,0.956475,0.803784,0.224401,0.261207,0.783322,0.586162,0.680225,0.273931,0.543806,0.547258,0.0885178,0.993742,0.0161955,0.0213861,0.457054,0.309313,0.666149,0.325922,0.623493,0.788585,0.999179,0.607681,0.167145,0.401105,0.236189,0.241778,0.632174,0.23156,0.630502,0.870146,0.0147364,0.516322,0.70184,0.364366,0.699195,0.377011,0.502578,0.985599,0.0632656,0.472424,0.794492,0.850663,0.620927,0.465712,0.747487,0.590041,0.105349,0.13268,0.794012,0.608857,0.794871,0.212646,0.575777,0.556781,0.728175,0.703415,0.484518,0.0537238,0.467593,0.563172,0.439289,0.630265,0.542436,0.0187536,0.14775,0.262156,0.52818,0.0436475,0.16972,0.720147,0.883987,0.357369,0.0819186,0.297388,0.492556,0.143615,0.647832,0.898828,0.0242451,0.407029,0.312413,0.958032,0.559219,0.701172,0.695959,0.82384,0.0202089,0.186642,0.714087,0.978644,0.489757,0.964117,0.631081,0.48804,0.490632,0.656025,0.205598,0.210972,0.901223,0.568419,0.661097,0.196947,0.583836,0.0197138,0.0195476,0.559298,0.768378,0.957386,0.419599,0.581329,0.84362,0.64899,0.776739,0.58904,0.251087,0.314617,0.983549,0.950155,0.271907,0.00758165,0.629142,0.91372,0.362522,0.624281,0.0283281,0.856007,0.492017,0.0352786,0.806104,0.0854119,0.655838,0.47603,0.812903,0.407432,0.546108,0.300579,0.356718,0.727038,0.943933,0.234399,0.843811,0.0395619,0.877015,0.973851,0.647702,0.8107,0.214216,0.610139,0.678011,0.687491,0.93353,0.0909579,0.840121,0.814688,0.749612,0.0450169,0.136896,0.889333,0.658202,0.40712,0.492909,0.910896,0.631343,0.223442,0.666912,0.862984,0.678943,0.807388,0.69945,0.38319,0.335903,0.870704,0.0043022,0.518138,0.482609,0.0137228,0.318204,0.2448,0.0276651,0.35065,0.799105,0.285679,0.443566,0.0134906,0.770411,0.772932,0.354784,0.833047,0.0807413,0.945489,0.810036,0.903524,0.609018,0.0513722,0.131125,0.725252,0.000190258,0.793,0.2558,0.358335,0.613084,0.125542,0.100548,0.0877183,0.778324,0.560069,0.0144854,0.78684,0.022358,0.87188,0.156482,0.851036,0.442696,0.750785,0.199328,0.786425,0.450683,0.809743,0.933688,0.705493,0.207706,0.539399,0.434042,0.0679798,0.357666,0.806616,0.740117,0.326526,0.558714,0.342335,0.492782,0.795928,0.844447,0.401704,0.709088,0.16076,0.873331,0.764456,0.377471,0.548539,0.0794803,0.696756,0.927046,0.882526,0.370163,0.977176,0.547751,0.389317,0.603178,0.725969,0.930004,0.0140218,0.356088,0.553992,0.755795,0.0178899,0.886226,0.80909,0.346679,0.227633,0.0574328,0.366997,0.0392546,0.912969,0.36787,0.936505,0.281298,0.351014,0.662963,0.623407,0.307235,0.892386,0.324308,0.738138,0.0154474,0.792318,0.168709,0.818456,0.565947,0.337933,0.964315,0.0207759,0.853506,0.790333,0.580861,0.351728,0.171079,0.685956,0.989962,0.505899,0.382588,0.341859,0.845771,0.565293,0.497777,0.847137,0.258828,0.994499,0.144614,0.647204,0.580897,0.74165,0.779554,0.212443,0.784904,0.0729104,0.310006,0.411075,0.915004,0.981144,0.561993,0.0109257,0.962541,0.159447,0.743378,0.985326,0.30221,0.53475,0.262543,0.296472,0.167799,0.164462,0.316488,0.180728,0.314185,0.802483,0.744561,0.533585,0.593009,0.771189,0.101189,0.637977,0.578834,0.374731,0.00139511,0.0210082,0.204107,0.492957,0.102657,0.124115,0.863961,0.214325,0.996012,0.511319,0.282156,0.432287,0.0726947,0.385421,0.979869,0.708998,0.897421,0.997791,0.814587,0.277043,0.467393,0.386186,0.532623,0.00519353,0.632764,0.548851,0.435627,0.896352,0.175163,0.67781,0.857986,0.819723,0.0208728,0.507833,0.955571,0.761667,0.547995,0.186891,0.953725,0.317712,0.369946,0.617084,0.306333,0.952161,0.833609,0.927237,0.701685,0.165384,0.978377,0.133392,0.997926,0.524394,0.347866,0.595529,0.554176,0.0514361,0.288674,0.802191,0.784746,0.850243,0.780492,0.589437,0.263349,0.560332,0.216742,0.45945,0.364718,0.78484,0.93429,0.30456,0.4321,0.0239254,0.294317,0.207973,0.965206,0.806891,0.0770804,0.507313,0.131719,0.403297,0.69779,0.571702,0.151339,0.79062,0.885953,0.445707,0.992562,0.135722,0.272325,0.935873,0.105135,0.664378,0.449489,0.428101,|0.997151,0.319029,0.931428,0.35547,0.793656,0.628507,0.11507,0.874441,0.395673,0.740485,0.771067,0.996081,0.579074,0.227398,0.405549,0.210478,0.894682,0.780114,0.786844,0.146076,0.641292,0.366295,0.94784,0.787,0.657921,0.761245,0.927113,0.133798,0.291578,0.108647,0.825079,0.611532,0.105056,0.0377653,0.737232,0.470205,0.774823,0.440377,0.229288,0.44331,0.508886,0.140877,0.880087,0.848322,0.554006,0.687173,0.830675,0.163323,0.496598,0.0649863,0.0975301,0.28246,0.656406,0.258698,0.0730554,0.708613,0.617126,0.288371,0.0888873,0.532726,0.93921,0.726038,0.832904,0.457398,0.108955,0.952543,0.461614,0.952427,0.890897,0.881307,0.587752,0.480517,0.629807,0.859211,0.75693,0.817394,0.446713,0.807846,0.942624,0.36325,0.336509,0.488895,0.694286,0.951391,0.191207,0.92844,0.246943,0.391129,0.565767,0.158063,0.252969,0.921848,0.230226,0.98115,0.600109,0.226364,0.315973,0.59939,0.937226,0.819249,0.000417292,0.656932,0.497274,0.0918173,0.597567,0.758116,0.466496,0.58052,0.773236,0.847002,0.225574,0.611891,0.688626,0.120863,0.0873805,0.476212,0.162115,0.0084548,0.258887,0.576296,0.675574,0.0930426,0.900317,0.993529,0.578834,0.535951,0.53204,0.779181,0.473761,0.234979,0.659437,0.828256,0.4559,0.0179139,0.250056,0.515642,0.80645,0.198587,0.0450616,0.803509,0.267908,0.802376,0.637013,0.786866,0.721744,0.294053,0.976706,0.164202,0.250424,0.670201,0.897159,0.92979,0.00455737,0.846828,0.186617,0.457073,0.567742,0.752861,0.0364,0.240364,0.908126,0.391642,0.116286,0.0974786,0.737649,0.83579,0.219195,0.226096,0.992903,0.0735412,0.640973,0.0670673,0.551691,0.0990263,0.650462,0.174623,0.771389,0.3793,0.21302,0.0925236,0.441557,0.659552,0.0620362,0.982067,0.330445,0.753491,0.405804,0.280267,0.540488,0.801349,0.0621113,0.406196,0.785648,0.213559,0.792271,0.643831,0.336411,0.189993,0.631027,0.931025,0.0423602,0.495765,0.0565975,0.0442246,0.460631,0.996571,0.0725803,0.497905,0.270065,0.516048,0.470648,0.861903,0.408079,0.492735,0.473481,0.2034,0.401097,0.280021,0.367787,0.48756,0.247455,0.482444,0.66675,0.860953,0.210907,0.52015,0.50374,0.982749,0.298846,0.973079,0.377348,0.0737084,0.626862,0.204235,0.910718,0.686811,0.663264,0.278116,0.777061,0.0893493,0.0880987,0.064814,0.855543,0.493127,0.179943,0.342607,0.423446,0.0647816,0.187853,0.204531,0.0697336,0.705042,0.388951,0.88522,0.118662,0.726069,0.510038,0.646089,0.721381,0.228935,0.00657618,0.736479,0.229004,0.660732,0.974108,0.397183,0.443766,0.85667,0.130543,0.312996,0.780266,0.458549,0.209379,0.971277,0.412795,0.195354,0.0384541,0.576578,0.461304,0.902325,0.938597,0.751676,0.81443,0.241683,0.857896,0.551467,0.267297,0.64591,0.992391,0.61093,0.354714,0.919607,0.274271,0.00510484,0.062497,0.458191,0.415636,0.878279,0.786909,0.134197,0.284571,0.0596752,0.229089,0.535485,0.313841,0.499139,0.248998,0.513523,0.38144,0.280288,0.192914,0.933505,0.461971,0.540366,0.191034,0.127728,0.627224,0.217928,0.228921,0.981453,0.660656,0.182665,0.0933951,0.0206798,0.553863,0.322439,0.932692,0.717065,0.88307,0.413497,0.403885,0.261074,0.693701,0.394259,0.430839,0.583679,0.871429,0.309787,0.259917,0.375031,0.646557,0.437185,0.302806,0.419911,0.198926,0.502226,0.744928,0.233001,0.794183,0.142965,0.060309,0.964182,0.732775,0.688729,0.383195,0.148748,0.0193822,0.312552,0.57612,0.567666,0.833306,0.405733,0.739209,0.840932,0.737204,0.918323,0.254602,0.573985,0.446876,0.156284,0.230643,0.420617,0.259227,0.245662,0.437072,0.344256,0.468111,0.117881,0.359545,0.0310749,0.42804,0.709315,0.0189096,0.483441,0.679853,0.376934,0.485024,0.903654,0.200342,0.29401,0.521634,0.253255,0.574078,0.580631,0.111238,0.460497,0.28383,0.488359,0.579334,0.203163,0.673643,0.226272,0.694,0.49752,0.923928,0.834288,0.611411,0.882084,0.317469,0.573636,0.591792,0.49019,0.591138,0.41183,0.427826,0.461585,0.406265,0.455331,0.96395,0.28482,0.778952,0.676724,0.412273,0.156717,0.913151,0.609629,0.993919,0.319553,0.143558,0.265618,0.760556,0.622684,0.157591,0.601255,0.527839,0.30633,0.515428,0.684134,0.823914,0.218938,0.85894,0.861777,0.454326,0.935659,0.65988,0.615739,0.327566,0.932751,0.83579,0.0861306,0.837121,0.618218,0.376833,0.302365,0.728171,0.650784,0.101461,0.610084,0.0407161,0.574292,0.506486,0.162606,0.999109,0.280847,0.163698,0.387019,0.753548,0.697983,0.178917,0.306011,0.651108,0.639912,0.476898,0.478238,0.800228,0.189403,0.498574,0.467621,0.0767904,0.205607,0.749747,0.220083,0.839831,0.323183,0.948451,0.813653,0.73017,0.302155,0.444278,0.856021,0.00529635,0.913352,0.260072,0.37455,0.260728,0.454943,0.486041,0.267244,0.591055,0.478478,0.811826,0.0879228,0.418888,0.428404,0.701531,0.447862,0.115762,0.723439,0.153975,0.189608,0.172477,0.07688,0.432481,0.374265,0.414179,0.428797,0.888864,0.750711,0.926463,0.209163,0.221889,0.984294,0.753429,0.859031,0.235703,0.951855,0.528138,0.402446,0.225946,0.874483,0.375606,0.59461,0.0563124,0.385293,0.862049,0.420334,0.900801,0.928871,0.161809,0.606921,0.697686,0.437481,0.485065,0.777032,0.793811,0.770866,0.758522,0.268895,0.788771,0.407812,0.675395,0.505041,0.55113,0.823868,0.0730726,0.728361,0.742212,0.423154,0.101599,0.108063,0.493183,0.00470787,0.192275,0.897511,0.375036,0.300378,0.29388,0.975212,0.843195,0.240203,0.972211,0.399828,0.486094,0.524373,0.600835,0.351383,0.740429,0.138969,0.936368,0.783034,0.423287,0.691644,0.149622,0.977997,0.575733,0.333989,0.620807,0.844398,0.118788,0.0019837,0.295382,0.777275,0.955776,0.759498,0.734351,0.0832414,0.956655,0.391943,0.176937,0.730869,0.620268,0.266366,0.166256,0.619291,0.827793,0.0136876,0.86557,0.852174,0.537591,0.131613,0.209767,0.338088,0.0645629,0.278436,0.676135,0.174063,0.767464,0.668787,0.702233,0.346441,0.468506,0.541799,0.878991,0.600216,0.913256,0.948651,0.967399,0.36277,0.654812,0.13737,0.0102164,0.267473,0.929087,0.487928,0.0601251,0.0873716,0.433449,0.0780563,0.733092,0.766682,0.290076,0.526666,0.391981,0.0418627,0.115312,0.804969,0.515909,0.0186043,0.482087,0.126021,0.959988,0.250795,0.559746,0.621903,0.898213,0.431865,0.716881,0.251267,0.343539,0.609201,0.145957,0.255685,0.95155,0.898183,0.457651,0.810484,0.931506,0.115802,0.515448,0.193217,0.843326,0.841903,0.26111,0.761094,0.991938,0.0673736,0.919565,0.618318,0.777165,0.399183,0.790912,0.295099,0.409388,0.756189,0.456966,0.86783,0.0513976,0.179492,0.0399259,0.0416266,0.853196,0.715603,0.742336,0.963322,0.195316,0.03403,0.390778,0.662192,0.175158,0.631028,0.663611,0.699051,0.49129,0.877182,0.928715,0.0228549,0.387768,0.577734,0.643178,0.0267969,0.285801,0.376495,0.0446883,0.027993,0.689998,0.0475979,0.378323,0.576345,0.0660175,0.747364,0.218767,0.974424,0.169898,0.468626,0.148127,0.0552779,0.60257,0.57918,0.880844,0.850601,0.711651,0.478668,0.192119,0.172245,0.580659,0.153619,0.298124,0.116306,0.794387,0.944303,0.354976,0.369596,0.0663295,0.274515,0.115209,0.196462,0.50144,0.748143,0.694486,0.592702,0.733685,0.316715,0.150162,0.52468,0.817316,0.452646,0.532015,0.688819,0.096049,0.367047,0.908166,0.691556,0.438889,0.477505,0.98921,0.170507,0.240137,0.163292,0.00699067,0.701641,0.44768,0.194618,0.516752,0.559185,0.33587,0.436593,0.587109,0.84829,0.263819,0.346515,0.776468,0.537965,0.703788,0.598709,0.307467,0.578731,0.420539,0.0637177,0.85068,0.921703,0.30795,0.164803,0.997141,0.443203,0.132567,0.938734,0.402548,0.246903,0.826733,0.360015,0.709551,0.639225,0.285877,0.972983,0.286516,0.452153,0.868543,0.126886,0.951547,0.455647,0.829487,0.544903,0.0795873,0.155536,0.221466,0.356398,0.0595918,0.221518,0.537293,0.765903,0.976104,0.439207,0.326399,0.269076,0.361556,0.276588,0.532877,0.878983,0.98191,0.0415996,0.656389,0.376087,0.713127,0.473467,0.461481,0.955645,0.0157831,0.403642,0.464293,0.245963,0.8249,0.330621,0.538505,0.227687,0.885366,0.372719,0.402925,0.772513,0.492669,0.257175,0.451779,0.999484,0.501058,0.919654,0.219954,0.956467,0.607018,0.138401,0.710016,0.840571,0.649931,0.194206,0.115577,0.714179,0.257149,0.998484,0.708873,0.114048,0.0727512,0.504577,0.4272,0.258178,0.496409,0.118293,0.00052917,0.354307,0.992258,0.645939,0.498641,0.749603,0.94484,0.075608,0.968777,0.411528,0.564454,0.857378,0.304217,0.325761,0.352948,0.890369,0.0308992,0.905552,0.270425,0.743346,0.947467,0.729231,0.647664,0.515384,0.302272,0.225876,0.550409,0.70189,0.17491,0.955273,0.183361,0.391548,0.637381,0.964176,0.64016,0.477925,0.0382472,0.77834,0.65076,0.248017,0.554158,0.208273,0.651473,0.316485,0.236052,0.81287,0.0108564,0.845592,0.0488479,0.7433,0.18174,0.170693,0.515847,0.378369,0.70512,0.283895,0.692033,0.846484,0.767654,0.830461,0.675368,0.134297,0.874591,0.815623,0.373669,0.612761,0.137712,0.859873,0.765791,0.9533,0.981145,0.377377,0.544536,0.939829,0.944398,0.469611,0.628998,0.931475,0.229844,0.758231,0.0885399,0.122794,0.856988,0.112687,0.500306,0.862937,0.764884,0.414314,0.814248,0.80342,0.119401,0.237175,0.487723,0.713045,0.662636,0.122347,0.258864,0.291237,0.560978,0.374159,0.503879,0.319702,0.148232,0.382526,0.435406,0.192621,0.650649,0.273264,0.624035,0.943664,0.340891,0.130928,0.103489,0.0968249,0.906258,0.00333583,0.43096,0.655983,0.163834,0.900249,0.661894,0.180286,0.819285,0.894916,0.730456,0.272631,|0.516665,0.333418,0.659557,0.470627,0.807666,0.160627,0.183236,0.400467,0.487059,0.741434,0.881525,0.0510517,0.0472659,0.553805,0.132385,0.407667,0.493367,0.347049,0.333499,0.815039,0.117101,0.952892,0.87343,0.0723578,0.238637,0.556632,0.1126,0.634212,0.0599328,0.381379,0.292568,0.433826,0.575937,0.468653,0.761852,0.700296,0.549746,0.246358,0.381224,0.0700663,0.690137,0.173892,0.524389,0.705805,0.164951,0.41507,0.538226,0.65615,0.327353,0.0168177,0.42659,0.491512,0.466862,0.908647,0.728157,0.312701,0.0676492,0.168719,0.27821,0.164495,0.80084,0.771385,0.18501,0.748102,0.638589,0.630219,0.70287,0.928308,0.787841,0.5501,0.94956,0.336765,0.0106322,0.369347,0.121049,0.0802626,0.83645,0.858668,0.0676982,0.394786,0.630762,0.0411619,0.155519,0.300097,0.151483,0.202587,0.547987,0.163675,0.686767,0.231853,0.1477,0.97722,0.0829635,0.173627,0.0685269,0.3314,0.37235,0.293658,0.604573,0.426292,0.203733,0.419219,0.0534441,0.687383,0.457211,0.569396,0.230813,0.957955,0.558658,0.792371,0.827563,0.130181,0.125862,0.325478,0.466768,0.512488,0.328672,0.978654,0.466046,0.912014,0.996125,0.77952,0.638442,0.455973,0.23591,0.278114,0.896864,0.330049,0.313077,0.540933,0.705959,0.991032,0.898115,0.976699,0.888259,0.403161,0.0931457,0.393002,0.447779,0.882772,0.156992,0.0186943,0.836143,0.159168,0.00188231,0.97161,0.536296,0.827308,0.803991,0.282251,0.110916,0.597216,0.716008,0.371752,0.112377,0.108275,0.941638,0.396093,0.984663,0.17877,0.00894511,0.954941,0.978644,0.554275,0.679259,0.549832,0.593853,0.189132,0.515769,0.85145,0.257843,0.303672,0.602535,0.306113,0.673493,0.728414,0.238641,0.315281,0.673343,0.391542,0.824569,0.612167,0.194279,0.627111,0.502522,0.29362,0.643025,0.495382,0.859373,0.781614,0.171042,0.592756,0.753136,0.120915,0.0769776,0.592514,0.255003,0.769347,0.566247,0.964657,0.88875,0.397426,0.277884,0.0195321,0.161616,0.411381,0.650975,0.586944,0.336347,0.782451,0.145213,0.174538,0.279977,0.403005,0.60217,0.486645,0.432176,0.2156,0.994001,0.668232,0.374032,0.106727,0.669631,0.540822,0.876358,0.0524935,0.744127,0.0365734,0.819607,0.445429,0.809679,0.442061,0.512455,0.927997,0.384562,0.813199,0.245179,0.170943,0.785496,0.850755,0.0840918,0.88119,0.992334,0.838659,0.0610961,0.686377,0.78522,0.834417,0.231201,0.615277,0.889093,0.252989,0.625692,0.164772,0.610247,0.691292,0.526863,0.501373,0.77532,0.865517,0.67594,0.916344,0.0134258,0.186028,0.909048,0.871974,0.325298,0.364626,0.478954,0.516151,0.123185,0.395464,0.207883,0.159231,0.879074,0.443902,0.577172,0.580655,0.476487,0.344513,0.00592971,0.903658,0.806658,0.454828,0.16828,0.143372,0.250125,0.697817,0.316431,0.187131,0.148562,0.814826,0.949513,0.833281,0.282633,0.458325,0.171794,0.53222,0.00784582,0.0187819,0.20041,0.866447,0.844317,0.0597967,0.114044,0.771182,0.155725,0.449725,0.167928,0.472219,0.822548,0.0309545,0.291066,0.90348,0.0870768,0.870467,0.264915,0.711459,0.724826,0.751344,0.266513,0.580103,0.603011,0.518202,0.201928,0.977311,0.867994,0.901769,0.189409,0.758027,0.762382,0.561003,0.710804,0.558257,0.74185,0.044606,0.287075,0.697161,0.182793,0.856632,0.837803,0.266456,0.782789,0.482509,0.631575,0.744594,0.417425,0.903746,0.183224,0.738932,0.937183,0.494868,0.375515,0.786724,0.884001,0.898,0.683116,0.430793,0.226917,0.744185,0.812246,0.559761,0.607471,0.957551,0.21474,0.770954,0.529219,0.817811,0.244007,0.0728843,0.596044,0.307457,0.0886145,0.0235506,0.0752248,0.067078,0.951012,0.198443,0.809559,0.107871,0.941687,0.434772,0.477208,0.97311,0.680472,0.253661,0.731843,0.585067,0.56414,0.79434,0.659213,0.116515,0.92514,0.269146,0.367167,0.48163,0.461489,0.883946,0.429523,0.0803427,0.275747,0.913363,0.141647,0.411911,0.672925,0.987519,0.796996,0.521526,0.199975,0.998803,0.963616,0.442517,0.335016,0.0241656,0.446838,0.766574,0.808673,0.0861821,0.505877,0.0600877,0.669938,0.262344,0.00366718,0.981179,0.295385,0.399254,0.643866,0.723563,0.250458,0.281231,0.937482,0.197539,0.803555,0.90196,0.847479,0.399124,0.797847,0.255059,0.11549,0.305371,0.506815,0.785855,0.473925,0.758882,0.179223,0.846489,0.992179,0.926686,0.606446,0.506987,0.223586,0.277103,0.775132,0.543245,0.216327,0.777396,0.387941,0.241002,0.217978,0.50638,0.646802,0.798787,0.144104,0.498,0.393078,0.809746,0.189023,0.796916,0.237649,0.433887,0.158143,0.917461,0.0157109,0.265777,0.483154,0.699574,0.00749964,0.396873,0.873627,0.836293,0.561886,0.738059,0.723771,0.289078,0.6819,0.0132698,0.15762,0.266249,0.294827,0.0676475,0.297319,0.378542,0.375903,0.353931,0.845461,0.0173835,0.71981,0.66782,0.479503,0.0775667,0.363847,0.755812,0.950073,0.948502,0.00893927,0.0527141,0.350978,0.0524394,0.472788,0.162476,0.838932,0.560935,0.369551,0.932227,0.515661,0.00222284,0.633788,0.374095,0.924025,0.0450338,0.00847507,0.771388,0.0356573,0.231072,0.644832,0.697402,0.812328,0.255641,0.531204,0.0184116,0.728103,0.476237,0.927419,0.750909,0.479395,0.138685,0.748598,0.559548,0.857455,0.236584,0.440982,0.297826,0.511182,0.501884,0.0247766,0.131322,0.381637,0.739446,0.24931,0.423485,0.0883969,0.976229,0.977652,0.601088,0.0327846,0.727739,0.806009,0.839593,0.574236,0.13233,0.882259,0.862794,0.35668,0.97057,0.395283,0.632703,0.201437,0.698179,0.595047,0.491642,0.467577,0.906594,0.54079,0.530691,0.344655,0.0976756,0.504233,0.498698,0.462091,0.174246,0.213572,0.608155,0.404695,0.926727,0.0518051,0.610404,0.265075,0.705865,0.734077,0.583625,0.387747,0.653498,0.179283,0.712428,0.851391,0.0846522,0.480463,0.060235,0.14881,0.0507024,0.131358,0.467781,0.802413,0.470514,0.0725613,0.368024,0.817061,0.399419,0.783888,0.727492,0.643747,0.491983,0.358861,0.678754,0.334735,0.460051,0.00297952,0.162191,0.282829,0.315459,0.536069,0.54578,0.973557,0.0876047,0.213255,0.213584,0.763056,0.387777,0.870799,0.342574,0.788529,0.931175,0.375855,0.370338,0.855433,0.0406197,0.404715,0.3208,0.569699,0.796175,0.263091,0.798233,0.418713,0.150923,0.465243,0.265403,0.310293,0.643662,0.0778161,0.184816,0.190237,0.274587,0.880396,0.342968,0.0682487,0.552172,0.441792,0.461731,0.742582,0.175789,0.912894,0.983765,0.97931,0.822947,0.660462,0.273944,0.927963,0.764983,0.0673363,0.882882,0.87483,0.730649,0.136089,0.711936,0.28856,2.563e-05,0.498256,0.498674,0.773166,0.447517,0.300419,0.739053,0.944676,0.835444,0.514115,0.947878,0.199548,0.0709096,0.549367,0.301835,0.766836,0.146894,0.369422,0.791947,0.300823,0.478118,0.583543,0.408145,0.519362,0.0961493,0.179009,0.123106,0.330407,0.546822,0.467367,0.213472,0.931252,0.252227,0.469517,0.853826,0.601167,0.394685,0.840269,0.517009,0.831276,0.387667,0.0957767,0.631901,0.0105894,0.228231,0.234915,0.905191,0.895126,0.0021928,0.831575,0.239897,0.13351,0.734282,0.916668,0.31859,0.934019,0.524599,0.629379,0.413319,0.620883,0.221689,0.225747,0.591747,0.275325,0.383498,0.404786,0.810255,0.909784,0.472984,0.622064,0.450018,0.714661,0.150605,0.192014,0.853211,0.261854,0.0443319,0.993472,0.742653,0.816075,0.0554383,0.305208,0.741786,0.666236,0.924307,0.403861,0.817123,0.279672,0.476072,0.328751,0.573474,0.951957,0.970138,0.511246,0.389208,0.489533,0.929944,0.345568,0.119407,0.560706,0.257551,0.0371245,0.723802,0.631539,0.943234,0.198925,0.114588,0.0473188,0.0755691,0.848061,0.655772,0.155489,0.0182248,0.824911,0.32537,0.778808,0.433684,0.186648,0.243658,0.54767,0.0125378,0.644458,0.100568,0.1581,0.92215,0.104026,0.470855,0.755189,0.173604,0.0314548,0.821126,0.724809,0.914927,0.784543,0.86167,0.740429,0.68859,0.410591,0.305045,0.935778,0.949033,0.147679,0.497651,0.0739887,0.426197,0.289715,0.538537,0.386627,0.875014,0.718133,0.337086,0.377542,0.0207171,0.913754,0.0661294,0.877105,0.00763535,0.876119,0.421306,0.597756,0.423038,0.212197,0.373285,0.348108,0.866484,0.922156,0.171309,0.642484,0.873151,0.938303,0.508263,0.169713,0.84292,0.7198,0.330209,0.186869,0.449387,0.0379195,0.549339,0.871934,0.401331,0.793792,0.466261,0.622739,0.540652,0.977312,0.968831,0.351973,0.640589,0.174739,0.2731,0.966203,0.804989,0.609722,0.0633429,0.995564,0.932163,0.0451225,0.991492,0.313608,0.401114,0.840643,0.513233,0.689421,0.433357,0.618929,0.238221,0.893652,0.905627,0.444594,0.896086,0.0800471,0.274257,0.916718,0.276459,0.275378,0.211612,0.116401,0.463253,0.212428,0.38527,0.293925,0.987974,0.0273653,0.351196,0.00648463,0.772933,0.827784,0.40769,0.801676,0.387125,0.948658,0.430961,0.70503,0.909848,0.217023,0.433353,0.63842,0.638901,0.691941,0.820902,0.691337,0.292621,0.436044,0.557701,0.79869,0.689671,0.879936,0.0163428,0.991135,0.455539,0.0540099,0.647864,0.523377,0.959504,0.762793,0.177796,0.622125,0.531252,0.182159,0.965561,0.298005,0.337644,0.288375,0.833357,0.12293,0.599759,0.744381,0.099884,0.115905,0.620216,0.429016,0.888157,0.616264,0.455879,0.533957,0.715972,0.212522,0.753733,0.132207,0.36734,0.871704,0.958734,0.94751,0.328238,0.354127,0.526393,0.252873,0.18806,0.0519946,0.53871,0.781091,0.926791,0.957611,0.157164,0.699643,0.758393,0.248553,0.945335,0.675072,0.739891,0.360715,0.0518384,0.770647,0.30022,0.641165,0.330042,0.793932,0.503378,0.482582,0.142932,0.774544,0.477715,0.0537121,0.537153,0.42994,0.0761125,0.53819,0.613498,0.0675815,0.567447,0.458048,0.549328,0.183553,0.146866,|0.8915,0.0364037,0.175036,0.0854256,0.486397,0.665069,0.857132,0.575946,0.313617,0.419732,0.875194,0.790095,0.217267,0.0701491,0.872824,0.0874366,0.394007,0.39813,0.160521,0.116149,0.124385,0.525689,0.77903,0.566052,0.985995,0.603167,0.0358301,0.180312,0.499884,0.67076,0.387807,0.441111,0.19968,0.160984,0.832475,0.998215,0.166846,0.362598,0.189946,0.0381856,0.55849,0.473106,0.123161,0.355163,0.534886,0.507367,0.0688202,0.722038,0.634535,0.408767,0.377843,0.587172,0.143287,0.43257,0.0191553,0.0877748,0.572654,0.811626,0.949959,0.346802,0.321945,0.899235,0.905665,0.386263,0.919781,0.712523,0.0201178,0.379171,0.265302,0.0486422,0.874698,0.21734,0.678995,0.588839,0.171258,0.939008,0.767242,0.541106,0.306606,0.993335,0.855043,0.181363,0.336034,0.827318,0.32486,0.57833,0.385646,0.30248,0.804645,0.323593,0.19266,0.362125,0.540873,0.760593,0.12424,0.99371,0.698177,0.921734,0.998783,0.341532,0.930337,0.473773,0.427495,0.943879,0.838987,0.228578,0.00793207,0.948283,0.944286,0.829416,0.644708,0.0800762,0.101907,0.434209,0.709513,0.312423,0.289858,0.250668,0.554874,0.207319,0.243676,0.336074,0.769018,0.977357,0.39407,0.78741,0.382503,0.725596,0.484185,0.677009,0.959264,0.062275,0.759385,0.525226,0.802806,0.0132739,0.538202,0.648629,0.0362116,0.541876,0.707821,0.973887,0.021748,0.429543,0.292683,0.81504,0.782296,0.361966,0.897386,0.681908,0.24152,0.314434,0.661066,0.223847,0.517095,0.406079,0.0909334,0.566297,0.645481,0.972268,0.08247,0.891891,0.717289,0.0921463,0.701266,0.599628,0.508749,0.137036,0.863446,0.151737,0.197719,0.132221,0.200469,0.907259,0.302551,0.94699,0.0567693,0.19346,0.251706,0.663905,0.913864,0.485278,0.596182,0.954419,0.809288,0.685309,0.295987,0.617513,0.952243,0.465592,0.485373,0.363288,0.950828,0.820964,0.389612,0.854222,0.644391,0.554984,0.389243,0.984252,0.225646,0.897009,0.339411,0.0367842,0.560207,0.67406,0.750186,0.0961295,0.498757,0.0139657,0.108074,0.571917,0.769739,0.588511,0.45881,0.554126,0.0613499,0.726916,0.594383,0.474449,0.414264,0.602187,0.617329,0.562964,0.804833,0.0963135,0.0247283,0.484045,0.970953,0.903173,0.150704,0.230585,0.597104,0.101708,0.465995,0.468037,0.177227,0.847105,0.0498381,0.155541,0.0914817,0.872257,0.911627,0.148801,0.574201,0.483762,0.849019,0.201162,0.834424,0.848564,0.938013,0.480678,0.855317,0.301112,0.711119,0.299749,0.8659,0.865701,0.825109,0.257406,0.819941,0.128127,0.169608,0.354575,0.825881,0.618413,0.0293394,0.0299307,0.609933,0.625738,0.563152,0.338656,0.912136,0.333242,0.124922,0.470439,0.9922,0.731966,0.0247109,0.443609,0.0757111,0.402269,0.933461,0.43732,0.0559472,0.728094,0.958758,0.434151,0.974645,0.209063,0.858088,0.697184,0.360406,0.236785,0.946941,0.0590406,0.301263,0.896024,0.630413,0.061631,0.417933,0.487278,0.159478,0.544977,0.368128,0.551944,0.729103,0.0449401,0.975946,0.0437154,0.146477,0.867269,0.625906,0.690438,0.518719,0.812503,0.843657,0.295546,0.0561875,0.29007,0.201252,0.584974,0.285419,0.963131,0.385657,0.440953,0.322634,0.410671,0.0780861,0.398666,0.934812,0.0857558,0.731029,0.0734104,0.986323,0.0148582,0.392791,0.537552,0.113715,0.600545,0.92672,0.473246,0.745704,0.945298,0.0827829,0.319948,0.137611,0.859566,0.555288,0.362813,0.902185,0.278731,0.412349,0.482183,0.378304,0.817037,0.00252396,0.0766003,0.945718,0.387461,0.651945,0.845645,0.781503,0.0483637,0.401469,0.423705,0.264124,0.339349,0.948462,0.436431,0.759948,0.269045,0.165836,0.892061,0.670782,0.975945,0.662466,0.240867,0.80049,0.953023,0.071892,0.0404292,0.946213,0.234947,0.907687,0.642979,0.465641,0.311226,0.303624,0.98476,0.175916,0.0257782,0.727294,0.209296,0.358091,0.566232,0.513831,0.35984,0.131979,0.506733,0.498066,0.617316,0.257398,0.95932,0.36806,0.927621,0.410574,0.382146,0.381693,0.795483,0.385591,0.133731,0.823514,0.605655,0.243962,0.221038,0.94796,0.26328,0.474728,0.901865,0.272354,0.420184,0.191339,0.528495,0.48008,0.334221,0.390812,0.30376,0.93381,0.761176,0.3645,0.0181217,0.0391265,0.901134,0.0118671,0.682266,0.46555,0.60634,0.472149,0.864383,0.526033,0.604613,0.170084,0.284396,0.95212,0.308543,0.588021,0.0970375,0.461587,0.79441,0.146153,0.637051,0.0748531,0.330628,0.201514,0.688537,0.161776,0.457341,0.503672,0.775852,0.470487,0.160652,0.696664,0.864915,0.698655,0.137885,0.138161,0.423721,0.737158,0.501344,0.55261,0.79703,0.738725,0.975409,0.676083,0.647549,0.723042,0.931378,0.553523,0.124171,0.991696,0.19361,0.495539,0.0128099,0.882997,0.0636165,0.138892,0.893253,0.16373,0.721215,0.196468,0.57672,0.798034,0.0522958,0.476731,0.293302,0.593967,0.418692,0.118282,0.421667,0.639153,0.763238,0.890154,0.321845,0.101296,0.433298,0.224643,0.728411,0.178746,0.171316,0.908691,0.484107,0.486023,0.565376,0.783784,0.327821,0.442124,0.574851,0.813428,0.0718179,0.0525507,0.255573,0.712888,0.751646,0.781657,0.356723,0.485504,0.699944,0.939692,0.621543,0.701837,0.03473,0.60104,0.981866,0.75869,0.417033,0.525368,0.782734,0.238001,0.157474,0.607419,0.232716,0.79913,0.697286,0.442715,0.367573,0.204683,0.00170851,0.998533,0.871297,0.467858,0.674281,0.136508,0.46675,0.158715,0.924159,0.534583,0.665915,0.73723,0.595011,0.559529,0.152192,0.0733007,0.818202,0.738377,0.167648,0.206717,0.845103,0.766679,0.981662,0.664715,0.168972,0.326569,0.257624,0.410574,0.884702,0.0981323,0.939994,0.197812,0.91353,0.508414,0.885636,0.530943,0.0425907,0.377651,0.54321,0.165338,0.154529,0.336541,0.602264,0.210404,0.349531,0.868116,0.997953,0.45383,0.543559,0.524388,0.0711696,0.288525,0.943297,0.821897,0.0463975,0.492026,0.00272512,0.944737,0.393406,0.577981,0.37772,0.305675,0.20837,0.80002,0.142753,0.0979328,0.918865,0.139207,0.57354,0.0962207,0.289733,0.341628,0.954204,0.261429,0.298322,0.641679,0.381882,0.503296,0.227743,0.493383,0.25134,0.905332,0.694369,0.880202,0.0658168,0.840734,0.405617,0.698824,0.00526732,0.6858,0.906074,0.753073,0.648378,0.152683,0.372002,0.569613,0.281,0.775937,0.878994,0.680682,0.724396,0.69279,0.525169,0.434692,0.535652,0.440463,0.406901,0.341328,0.373401,0.301873,0.561327,0.833709,0.894748,0.127818,0.727052,0.991387,0.920895,0.508896,0.139055,0.69144,0.89966,0.133688,0.573633,0.685012,0.479041,0.385561,0.299739,0.596469,0.901468,0.237627,0.602453,0.193327,0.923142,0.865471,0.237905,0.637819,0.856154,0.121711,0.591088,0.162794,0.180312,0.928337,0.737394,0.807265,0.785325,0.419766,0.713057,0.605302,0.264363,0.968468,0.599389,0.957307,0.922099,0.900813,0.884203,0.0244607,0.0987613,0.879246,0.314092,0.868035,0.232147,0.310199,0.790378,0.554545,0.538612,0.322609,0.713544,0.484868,0.151936,0.559708,0.252557,0.753448,0.123862,0.527056,0.042702,0.00365782,0.466493,0.0495859,0.454301,0.0556319,0.00652468,0.39068,0.227652,0.253078,0.749895,0.327086,0.272969,0.151993,0.527436,0.857121,0.731852,0.288187,0.376784,0.806033,0.0659089,0.939934,0.856486,0.427245,0.616854,0.672837,0.571718,0.676301,0.945342,0.924058,0.996253,0.600381,0.509338,0.387798,0.960949,0.102414,0.375748,0.892944,0.281544,0.956395,0.762314,0.905298,0.792245,0.385124,0.371671,0.582647,0.400572,0.371491,0.718331,0.554542,0.893697,0.875008,0.908446,0.0899977,0.8745,0.430927,0.448065,0.35654,0.814352,0.883013,0.857077,0.960345,0.544293,0.918165,0.994439,0.287954,0.837906,0.877062,0.5896,0.287444,0.654731,0.748181,0.409169,0.875454,0.458053,0.964334,0.469716,0.60205,0.937105,0.396623,0.281979,0.471048,0.159872,0.554355,0.299407,0.995837,0.516571,0.726528,0.0777441,0.0347196,0.310003,0.214591,0.849345,0.177832,0.493644,0.624066,0.5734,0.036611,0.732435,0.894096,0.352283,0.869215,0.90502,0.565492,0.667248,0.680398,0.313719,0.405738,0.749306,0.756938,0.103317,0.167385,0.879954,0.695237,0.460631,0.724719,0.371969,0.173633,0.869362,0.590424,0.961445,0.979183,0.240403,0.91931,0.393396,0.912357,0.760845,0.0818583,0.660721,0.45821,0.127058,0.802414,0.617769,0.366407,0.303897,0.94551,0.607951,0.234869,0.955971,0.657579,0.93531,0.694773,0.674655,0.0855086,0.648148,0.89827,0.991552,0.819344,0.197716,0.217012,0.918879,0.308442,0.83875,0.160269,0.244341,0.0295121,0.415739,0.461284,0.680308,0.438264,0.352653,0.761348,0.382753,0.831757,0.36307,0.76631,0.356417,0.536362,0.890862,0.945433,0.119116,0.223355,0.789933,0.0949512,0.17116,0.218702,0.552594,0.574685,0.873169,0.629776,0.730821,0.898601,0.564941,0.0195863,0.273265,0.918519,0.97581,0.801268,0.111765,0.977682,0.576405,0.359033,0.745271,0.881155,0.765102,0.932156,0.84803,0.736363,0.43953,0.51369,0.122868,0.698621,0.738138,0.441123,0.751965,0.0193297,0.532553,0.0975755,0.515548,0.314713,0.846066,0.787002,0.0873153,0.176848,0.570344,0.773022,0.00313812,0.100609,0.458389,0.828763,0.165472,0.574627,0.773287,0.426612,0.733366,0.423576,0.166943,0.177943,0.319764,0.550001,0.0121146,0.868741,0.641733,0.0146101,0.501404,0.263624,0.734776,0.887013,0.661681,0.715513,0.667615,0.456873,0.94412,0.12337,0.314489,0.362083,0.508803,0.884101,0.325896,0.376182,0.341832,0.668634,0.351239,0.991678,0.663743,0.0324746,0.462482,0.654622,0.101284,0.0849468,0.0779074,0.953064,0.736031,0.885161,0.444174,0.241397,0.296486,0.235547,0.182215,0.915884,0.179262,0.125434,0.82022,0.844326,0.771281,0.120908,0.288964,0.359172,0.5655,|0.513554,0.283807,0.672083,0.633665,0.215461,0.754057,0.370117,0.83134,0.0090304,0.578463,0.774717,0.00637388,0.368408,0.716268,0.0862859,0.396006,0.0890718,0.350088,0.448321,0.385314,0.637739,0.87543,0.91693,0.540366,0.109481,0.566986,0.124624,0.396333,0.260603,0.513529,0.4896,0.241315,0.664592,0.713377,0.22833,0.474912,0.760145,0.734637,0.172906,0.213208,0.885451,0.0803868,0.70292,0.429222,0.0242692,0.540972,0.408212,0.562335,0.932933,0.448877,0.257288,0.460634,0.673559,0.485849,0.0333461,0.325557,0.618583,0.248247,0.819083,0.252803,0.882461,0.941465,0.19879,0.605766,0.238901,0.399722,0.56532,0.280036,0.0609933,0.2684,0.770179,0.176357,0.761481,0.626115,0.675254,0.721943,0.452205,0.752266,0.57788,0.670666,0.443006,0.76229,0.216357,0.569033,0.345747,0.200051,0.226119,0.242247,0.759846,0.725963,0.870202,0.382421,0.516037,0.652498,0.523694,0.00316399,0.680447,0.00567561,0.58214,0.789731,0.617674,0.520007,0.115158,0.876587,0.411823,0.462754,0.0958481,0.661533,0.586067,0.186064,0.40386,0.471952,0.739728,0.850878,0.909528,0.638803,0.665641,0.471744,0.483151,0.279101,0.511018,0.964819,0.725564,0.0812187,0.0199562,0.268315,0.697666,0.0738773,0.838491,0.668306,0.113547,0.412816,0.126726,0.285527,0.601009,0.0536661,0.559601,0.849005,0.835568,0.392533,0.086073,0.248983,0.396705,0.831487,0.480851,0.401199,0.424706,0.367625,0.202318,0.14508,0.771512,0.182076,0.765523,0.444055,0.946959,0.357597,0.218696,0.846444,0.440789,0.25171,0.384536,0.354797,0.450662,0.92432,0.598275,0.962452,0.462159,0.390283,0.180479,0.29985,0.244938,0.839207,0.538549,0.00718564,0.213438,0.961724,0.23673,0.439731,0.990305,0.173494,0.526385,0.12133,0.88942,0.874736,0.821288,0.59837,0.905687,0.76992,0.773521,0.67259,0.407012,0.940033,0.153449,0.575637,0.613953,0.9752,0.145562,0.877364,0.54689,0.4335,0.0499069,0.15915,0.341867,0.74082,0.00649112,0.211229,0.0469001,0.806822,0.897133,0.615144,0.0706139,0.82701,0.716733,0.931402,0.0553609,0.324516,0.823698,0.397261,0.350347,0.237978,0.323401,0.0172044,0.372526,0.868692,0.168303,0.533997,0.321996,0.365578,0.761534,0.314007,0.289867,0.411578,0.948217,0.349614,0.505496,0.298681,0.185394,0.85503,0.852445,0.764412,0.520483,0.401836,0.833255,0.32165,0.0264446,0.77128,0.842507,0.561809,0.249572,0.470696,0.900062,0.482809,0.0287895,0.0544872,0.859274,0.661533,0.120493,0.214878,0.0935508,0.774993,0.675358,0.00906718,0.830361,0.366261,0.713663,0.557015,0.262504,0.0940952,0.542561,0.921895,0.640619,0.157374,0.189682,0.425526,0.195296,0.149366,0.680763,0.608366,0.12628,0.949803,0.851913,0.6322,0.612116,0.322734,0.439871,0.997073,0.314731,0.288591,0.116057,0.781594,0.424347,0.936242,0.272471,0.209667,0.0143713,0.213261,0.661128,0.424591,0.877197,0.0750321,0.22705,0.484546,0.425499,0.790735,0.853094,0.116784,0.752678,0.514869,0.631461,0.41109,0.742757,0.423428,0.93747,0.677642,0.0553384,0.065733,0.489825,0.615836,0.620119,0.814874,0.384178,0.262914,0.526957,0.933094,0.162668,0.246699,0.296746,0.903267,0.638837,0.721618,0.0768371,0.555734,0.113458,0.0573113,0.510376,0.920374,0.629411,0.936875,0.225648,0.242943,0.682388,0.654441,0.617367,0.834197,0.288737,0.24072,0.408423,0.690969,0.6963,0.449429,0.571692,0.756585,0.150727,0.515417,0.499613,0.29752,0.293154,0.868646,0.818752,0.813398,0.106418,0.844283,0.595603,0.724505,0.784566,0.990757,0.0140851,0.917126,0.838007,0.53698,0.908435,0.89955,0.147949,0.16226,0.446364,0.762007,0.897527,0.00518775,0.855914,0.931781,0.0568151,0.269184,0.495165,0.50088,0.566476,0.770117,0.45589,0.924805,0.926268,0.784599,0.557903,0.22607,0.0454346,0.684838,0.445219,0.908826,0.826167,0.650966,0.17062,0.994246,0.421568,0.830186,0.733131,0.938005,0.148963,0.18581,0.499695,0.381288,0.0742548,0.784016,0.82561,0.214828,0.079863,0.231357,0.508569,0.963528,0.0230346,0.564968,0.053569,0.668881,0.341762,0.58198,0.930078,0.323477,0.436032,0.754632,0.140282,0.0798911,0.701121,0.806046,0.825439,0.585016,0.643499,0.405626,0.765777,0.812565,0.156519,0.456204,0.509891,0.608255,0.0504012,0.840892,0.861317,0.682707,0.493042,0.81448,0.490176,0.165765,0.0910622,0.769708,0.301358,0.757025,0.0849223,0.885131,0.427816,0.909694,0.859725,0.021138,0.579206,0.773299,0.0205684,0.590923,0.695377,0.376882,0.46321,0.753888,0.0536407,0.772669,0.0977963,0.548519,0.382371,0.968491,0.581977,0.46458,0.0389202,0.0861101,0.964661,0.129174,0.712027,0.224263,0.587211,0.371509,0.929842,0.971129,0.141395,0.0951967,0.240691,0.868692,0.983768,0.722059,0.435916,0.799592,0.821042,0.864901,0.0832136,0.110735,0.0405799,0.914978,0.195598,0.855499,0.517856,0.58525,0.688035,0.561658,0.571531,0.262918,0.622248,0.125952,0.899328,0.529615,0.874201,0.260232,0.681659,0.126282,0.657631,0.529371,0.380119,0.1039,0.46029,0.700964,0.424924,0.274794,0.461475,0.410904,0.641944,0.969608,0.56306,0.203848,0.301951,0.268996,0.976766,0.661063,0.777751,0.207521,0.756843,0.225363,0.595512,0.917028,0.515446,0.417993,0.521331,0.293751,0.86514,0.592141,0.886297,0.753107,0.0448453,0.0849935,0.210916,0.445273,0.877849,0.653487,0.598814,0.422185,0.410436,0.816365,0.900108,0.252986,0.116907,0.74411,0.620738,0.125285,0.00265759,0.874881,0.53748,0.220104,0.159758,0.610452,0.61782,0.0943058,0.244783,0.572999,0.0482544,0.56516,0.989315,0.413471,0.148304,0.728295,0.275094,0.625325,0.524575,0.448053,0.820492,0.605752,0.490444,0.755691,0.497393,0.826426,0.0105935,0.741237,0.09749,0.703828,0.662395,0.658498,0.0248401,0.819149,0.842345,0.891857,0.409914,0.831558,0.331747,0.0665424,0.15715,0.478052,0.151317,0.830696,0.0731081,0.387625,0.348427,0.0701956,0.128399,0.806738,0.958713,0.67285,0.782369,0.32462,0.753398,0.842808,0.877521,0.957033,0.942442,0.258406,0.598093,0.0212382,0.12781,0.759819,0.732046,0.134608,0.10274,0.264275,0.879198,0.527235,0.675342,0.135492,0.997891,0.213811,0.203705,0.900184,0.585484,0.507433,0.511147,0.61551,0.189082,0.385833,0.220882,0.394018,0.644616,0.202964,0.793482,0.695902,0.307675,0.0889567,0.819999,0.288464,0.207142,0.719263,0.77871,0.356415,0.448361,0.910976,0.38055,0.524096,0.132932,0.336926,0.735377,0.133419,0.619089,0.710372,0.591868,0.714664,0.012616,0.63963,0.529116,0.798364,0.176695,0.909978,0.879541,0.336966,0.437232,0.824219,0.134557,0.524351,0.736381,0.294723,0.153717,0.777826,0.536225,0.928668,0.696342,0.260829,0.348609,0.0984374,0.968047,0.0174412,0.797268,0.184817,0.6899,0.7965,0.884653,0.850775,0.815924,0.180846,0.546962,0.648925,0.0524668,0.361668,0.796751,0.582432,0.43673,0.426804,0.849787,0.799658,0.470711,0.223915,0.710441,0.301086,0.82385,0.908885,0.552254,0.243093,0.878649,0.914364,0.99719,0.514276,0.859457,0.878416,0.217314,0.178669,0.462607,0.332242,0.329407,0.592785,0.706762,0.72059,0.45796,0.97978,0.729938,0.307977,0.966375,0.423821,0.978705,0.202949,0.410209,0.163383,0.339656,0.501362,0.126892,0.219959,0.668085,0.70351,0.704391,0.548674,0.365049,0.0639372,0.318613,0.241129,0.823337,0.365801,0.49262,0.820691,0.96253,0.48475,0.319672,0.436334,0.668441,0.807576,0.904774,0.648757,0.962347,0.836027,0.924369,0.123255,0.261077,0.87691,0.195142,0.40299,0.0118787,0.731793,0.577369,0.762634,0.913181,0.88253,0.514951,0.720964,0.838396,0.819069,0.338615,0.694902,0.0842539,0.396513,0.0177482,0.662365,0.641148,0.887998,0.616015,0.584245,0.434264,0.26856,0.122709,0.889411,0.517253,0.0664939,0.032186,0.0629998,0.417619,0.715828,0.361759,0.65193,0.56224,0.44754,0.273629,0.129861,0.421264,0.112589,0.298847,0.14631,0.311943,0.990632,0.966682,0.164172,0.714088,0.510951,0.111688,0.928527,0.818215,0.607305,0.0544378,0.0826265,0.354103,0.979871,0.785173,0.78624,0.457902,0.652513,0.412314,0.995513,0.410895,0.281949,0.927662,0.724086,0.90471,0.362498,0.268958,0.387254,0.678155,0.928879,0.356722,0.898224,0.52835,0.930131,0.137866,0.348531,0.777246,0.355005,0.609613,0.255241,0.644748,0.319781,0.538437,0.305126,0.783101,0.677874,0.652997,0.303211,0.662189,0.766195,0.0540679,0.44634,0.621198,0.460484,0.348992,0.0321566,0.140852,0.200566,0.459249,0.616452,0.441633,0.506229,0.639857,0.79681,0.880341,0.461805,0.324475,0.477145,0.555627,0.30066,0.269736,0.8078,0.557391,0.232502,0.737883,0.696563,0.3216,0.0727172,0.190073,0.482229,0.14768,0.255768,0.0719142,0.716341,0.287965,0.432384,0.121686,0.306589,0.828065,0.878105,0.654108,0.103536,0.0319123,0.674784,0.959796,0.00366551,0.926754,0.54382,0.778307,0.210547,0.912838,0.0703178,0.897064,0.303891,0.287597,0.761123,0.400673,0.07825,0.1427,0.0889569,0.781681,0.601105,0.276268,0.040202,0.484122,0.141513,0.443098,0.0139746,0.0551091,0.024959,0.946137,0.518178,0.490381,0.624331,0.198636,0.406299,0.560066,0.247608,0.357199,0.122957,0.243294,0.549845,0.811618,0.409782,0.0305321,0.304153,0.890312,0.505185,0.344872,0.876683,0.541873,0.664835,0.276143,0.432636,0.895493,0.209729,0.467919,0.988388,0.252528,0.555303,0.994383,0.251281,0.246308,0.0323848,0.81681,0.529102,0.54484,0.263429,0.066712,0.47294,0.508852,0.570726,0.693484,0.232572,0.170656,0.686341,0.213599,0.0330395,0.68433,0.314117,0.0938022,0.863049,0.498447,0.378236,0.256744,0.913287,0.960529,0.423537,0.383964,0.0148964,0.992719,0.766354,0.563292,0.623722,|0.790554,0.980241,0.203843,0.210848,0.736391,0.346164,0.0858383,0.33393,0.854324,0.370956,0.438712,0.159328,0.840542,0.971543,0.0366969,0.601914,0.896528,0.947847,0.690039,0.395435,0.833136,0.397864,0.579865,0.620877,0.59253,0.946876,0.720291,0.782643,0.796384,0.791741,0.494782,0.486287,0.475639,0.645554,0.873761,0.271524,0.42243,0.135449,0.367461,0.517857,0.441532,0.129078,0.84103,0.0950356,0.638291,0.386687,0.783975,0.890012,0.193256,0.957688,0.676997,0.80291,0.236533,0.013163,0.609486,0.108119,0.888851,0.389355,0.35999,0.321748,0.572328,0.0225046,0.255088,0.683341,0.584908,0.343024,0.44089,0.0556667,0.354441,0.658505,0.656266,0.0891373,0.389955,0.897771,0.811632,0.420533,0.281491,0.515068,0.592945,0.835386,0.699296,0.865978,0.0485497,0.787896,0.0135716,0.255044,0.263117,0.90242,0.902983,0.3852,0.478315,0.607587,0.677586,0.210392,0.700977,0.829123,0.0897948,0.161523,0.677415,0.267373,0.232502,0.222073,0.638464,0.844864,0.323564,0.00552261,0.175726,0.0255135,0.895453,0.289132,0.475962,0.710823,0.0329606,0.548726,0.799369,0.106998,0.472206,0.12697,0.173944,0.825203,0.809801,0.584104,0.0329469,0.731839,0.573833,0.327442,0.231664,0.312736,0.19391,0.524017,0.335318,0.0951526,0.555887,0.624818,0.952464,0.0144308,0.978465,0.178477,0.507851,0.464996,0.817616,0.794192,0.934641,0.00654584,0.229903,0.526207,0.0961475,0.458985,0.850262,0.547045,0.654912,0.388404,0.117913,0.874515,0.190052,0.974613,0.718675,0.364825,0.465952,0.866652,0.463589,0.765691,0.835564,0.681011,0.644613,0.840628,0.924912,0.942197,0.215151,0.543674,0.109464,0.57503,0.889226,0.911878,0.691675,0.649016,0.00950295,0.225584,0.321018,0.994039,0.648961,0.630966,0.185503,0.0882753,0.266277,0.458266,0.562324,0.970988,0.900825,0.0580902,0.602435,0.32104,0.95258,0.769954,0.198173,0.00152057,0.414101,0.855944,0.546391,0.271106,0.702548,0.596783,0.59378,0.77393,0.123023,0.107035,0.28663,0.177881,0.46777,0.563637,0.225051,0.385112,0.242807,0.78181,0.664434,0.607337,0.461216,0.462256,0.197469,0.375003,0.833525,0.854642,0.632329,0.55214,0.939268,0.101927,0.0168422,0.724539,0.965425,0.437749,0.764051,0.509427,0.148032,0.449078,0.954281,0.6291,0.3045,0.401792,0.397058,0.398145,0.490638,0.701431,0.540183,0.294207,0.148731,0.0710927,0.71478,0.0329208,0.814181,0.200262,0.0351149,0.516912,0.623344,0.913665,0.704574,0.408857,0.423382,0.926223,0.70673,0.512317,0.0367864,0.730948,0.269129,0.505555,0.966601,0.763968,0.249342,0.27976,0.0269602,0.586104,0.219013,0.588803,0.226592,0.677482,0.476951,0.760488,0.730172,0.368687,0.726758,0.205158,0.240407,0.332274,0.902309,0.144998,0.732424,0.383649,0.128763,0.0947438,0.77143,0.461857,0.247737,0.630125,0.0283187,0.81104,0.922861,0.959047,0.186364,0.140628,0.195194,0.882129,0.631344,0.602635,0.286245,0.85566,0.964938,0.47376,0.763312,0.359942,0.33428,0.268891,0.97125,0.289946,0.979835,0.533383,0.749038,0.296913,0.395211,0.780959,0.544578,0.732019,0.320245,0.373118,0.571835,0.0587521,0.846828,0.56021,0.5769,0.655173,0.194019,0.969033,0.705391,0.739579,0.0783607,0.972927,0.621161,0.535977,0.622163,0.351614,0.310827,0.0438555,0.881137,0.460859,0.729463,0.882835,0.29171,0.239386,0.382224,0.815357,0.226078,0.594069,0.976652,0.970997,0.0481349,0.329326,0.742398,0.56369,0.670444,0.579449,0.456403,0.186602,0.345993,0.355184,0.0328674,0.0308594,0.265116,0.966226,0.943258,0.220845,0.77362,0.61082,0.135425,0.318284,0.457231,0.117236,0.0520228,0.124445,0.828722,0.303315,0.851442,0.124694,0.606037,0.811713,0.155353,0.774402,0.875705,0.242402,0.800634,0.598198,0.640975,0.185659,0.37241,0.213431,0.351564,0.467567,0.710303,0.453838,0.66277,0.691754,0.192579,0.282741,0.457579,0.782735,0.215703,0.292181,0.460885,0.678437,0.575979,0.648993,0.220617,0.735054,0.404015,0.166976,0.924773,0.665916,0.376163,0.40629,0.554739,0.396864,0.959223,0.348268,0.906928,0.427151,0.745824,0.806411,0.828338,0.31619,0.422867,0.0570371,0.465789,0.469422,0.415577,0.27582,0.690731,0.666314,0.0373072,0.53637,0.648905,0.997898,0.400901,0.810212,0.578064,0.00942659,0.924127,0.887293,0.926144,0.592765,0.73135,0.317603,0.931091,0.0417012,0.79025,0.923771,0.600564,0.73462,0.178542,0.84129,0.536441,0.238066,0.931526,0.490676,0.447131,0.510536,0.234168,0.0496839,0.869906,0.829353,0.86098,0.268658,0.0486569,0.905722,0.96114,0.504015,0.613616,0.892496,0.329565,0.472213,0.0343607,0.74864,0.692982,0.586337,0.119378,0.840511,0.466634,0.447347,0.310562,0.250398,0.609437,0.370947,0.385833,0.46588,0.300967,0.544557,0.791978,0.910107,0.518252,0.813505,0.130123,0.0593688,0.690153,0.436619,0.92163,0.653045,0.464846,0.0492405,0.192561,0.846818,0.989491,0.353166,0.99213,0.0567837,0.614642,0.118639,0.485716,0.122393,0.253648,0.412453,0.631855,0.479349,0.457914,0.632271,0.615685,0.342956,0.111162,0.40254,0.192646,0.0142837,0.723274,0.232677,0.86375,0.351059,0.801338,0.352281,0.035167,0.658671,0.520124,0.192781,0.937964,0.552949,0.813049,0.797088,0.53234,0.702484,0.454247,0.542956,0.60906,0.39865,0.44464,0.984552,0.778238,0.946863,0.795911,0.0221882,0.845068,0.444842,0.160846,0.875836,0.943251,0.75197,0.441274,0.0414199,0.845918,0.995325,0.00068146,0.79253,0.390938,0.478604,0.309061,0.869221,0.631345,0.616465,0.342243,0.566988,0.315439,0.362634,0.966299,0.689146,0.443199,0.388977,0.306829,0.387322,0.132981,0.307141,0.158078,0.704946,0.0218241,0.363359,0.602376,0.725412,0.987069,0.303783,0.695907,0.513242,0.223855,0.314834,0.526122,0.650376,0.806322,0.428468,0.433401,0.339914,0.991121,0.521917,0.59013,0.394959,0.652375,0.190474,0.346177,0.198161,0.315133,0.633254,0.99103,0.795753,0.573363,0.144544,0.395973,0.753579,0.239122,0.949627,0.418545,0.638249,0.769954,0.102933,0.775309,0.843059,0.101075,0.463168,0.38637,0.238341,0.127799,0.451212,0.529413,0.0549962,0.0699935,0.162159,0.735228,0.493595,0.579743,0.218134,0.432961,0.20878,0.294576,0.668614,0.427465,0.95276,0.0270711,0.352517,0.66871,0.167626,0.333618,0.970673,0.989317,0.462369,0.897456,0.983616,0.0754241,0.0868249,0.999826,0.101323,0.0788835,0.677866,0.447889,0.115044,0.720568,0.308061,0.691135,0.622304,0.242001,0.112288,0.618653,0.135252,0.665093,0.869773,0.647877,0.0164959,0.185964,0.842624,0.335566,0.99649,0.9185,0.973441,0.0107923,0.703623,0.270605,0.500139,0.675513,0.901665,0.0643817,0.265682,0.959947,0.907403,0.855411,0.780389,0.797616,0.965465,0.985781,0.98108,0.6838,0.176011,0.790871,0.160978,0.568961,0.599841,0.821427,0.899921,0.725665,0.253195,0.437251,0.0386876,0.628226,0.877852,0.489165,0.251857,0.478238,0.93236,0.423667,0.743451,0.982241,0.408711,0.166852,0.0511501,0.461167,0.181392,0.125759,0.426963,0.724497,0.467539,0.696436,0.67248,0.463239,0.894409,0.152316,0.842874,0.409816,0.00799054,0.580843,0.802914,0.0306029,0.393463,0.255003,0.291119,0.519497,0.326391,0.791441,0.881634,0.523742,0.835992,0.765923,0.627021,0.11213,0.311162,0.996608,0.00837958,0.249551,0.382889,0.238183,0.877527,0.442947,0.88079,0.442147,0.294499,0.0515819,0.926643,0.360394,0.936083,0.565903,0.390115,0.483959,0.519828,0.661726,0.214621,0.141036,0.159149,0.907485,0.509144,0.113571,0.612652,0.525641,0.425412,0.785945,0.0507631,0.196429,0.6741,0.763938,0.52103,0.204087,0.298684,0.582554,0.149897,0.581659,0.23813,0.244812,0.814357,0.781798,0.411622,0.636025,0.904476,0.481477,0.104714,0.624236,0.381095,0.357161,0.0250243,0.658483,0.40259,0.0574932,0.530638,0.350095,0.0931416,0.217957,0.559908,0.49563,0.283153,0.147061,0.962745,0.897553,0.615428,0.80133,0.985896,0.335146,0.143693,0.857347,0.709398,0.399989,0.666867,0.602786,0.721089,0.401927,0.399383,0.0680297,0.756686,0.513179,0.5237,0.734272,0.845819,0.931124,0.347233,0.0696346,0.217394,0.411709,0.0478471,0.807826,0.248464,0.198587,0.912703,0.100614,0.0702497,0.170076,0.180933,0.916617,0.9342,0.445863,0.283102,0.739849,0.25434,0.501022,0.45193,0.106848,0.599769,0.374442,0.615924,0.900379,0.143584,0.294017,0.128481,0.772104,0.46889,0.906861,0.45862,0.848383,0.745105,0.196096,0.815586,0.707622,0.746936,0.853256,0.218236,0.463824,0.22851,0.705766,0.929281,0.967502,0.36376,0.912767,0.234548,0.462282,0.406172,0.824188,0.792192,0.735327,0.652768,0.556366,0.629319,0.989972,0.678178,0.813916,0.534617,0.981326,0.131328,0.0321198,0.595448,0.308716,0.294163,0.204491,0.707338,0.256707,0.345108,0.406659,0.215391,0.153349,0.500645,0.278154,0.468529,0.43797,0.71332,0.985635,0.496704,0.0995091,0.482677,0.0315976,0.0600027,0.825602,0.785231,0.640427,0.378672,0.588482,0.54246,0.616171,0.726547,0.496237,0.943293,0.701288,0.203728,0.00182527,0.417141,0.49672,0.728283,0.613421,0.457781,0.472239,0.907664,0.865525,0.0963734,0.674319,0.438221,0.9472,0.377935,0.847395,0.933478,0.561141,0.312647,0.0546173,0.523078,0.496055,0.416779,0.444098,0.0140829,0.461971,0.987153,0.426828,0.807711,0.565334,0.244919,0.41743,0.685174,0.264705,0.610187,0.6561,0.045751,0.0547591,0.584334,0.0581117,0.156521,0.2413,0.630223,0.442781,0.275621,0.0448399,0.879589,0.493009,0.902846,0.269014,0.12637,0.808614,0.568725,0.552249,0.590696,0.0158371,0.877863,0.0897079,0.174758,0.398561,0.651536,0.0849609,0.255686,0.458797,0.167746,0.936135,0.00901222,0.921287,0.868071,|0.31913,0.62067,0.814381,0.35879,0.190112,0.882772,0.254986,0.986142,0.335964,0.814501,0.557002,0.960917,0.704029,0.835749,0.628864,0.591202,0.0468931,0.844976,0.10192,0.649567,0.245366,0.956981,0.392241,0.467283,0.89599,0.382997,0.501355,0.991655,0.623356,0.165139,0.744743,0.0876149,0.553132,0.975553,0.823326,0.658098,0.227719,0.132744,0.563713,0.205126,0.388425,0.55259,0.632963,0.0333394,0.363477,0.269973,0.996287,0.427538,0.441548,0.647997,0.556412,0.476284,0.632957,0.644872,0.511924,0.997252,0.953046,0.92075,0.338345,0.989821,0.407422,0.0592219,0.380491,0.949045,0.41628,0.0217578,0.943999,0.775774,0.464379,0.738359,0.64426,0.0100407,0.59791,0.954471,0.39556,0.569979,0.670487,0.562707,0.320897,0.164946,0.92611,0.942107,0.835708,0.0324709,0.758115,0.744758,0.699796,0.339273,0.156476,0.121977,0.815325,0.842332,0.390223,0.626977,0.0527439,0.457066,0.57396,0.785902,0.138332,0.91417,0.876945,0.265928,0.81553,0.618965,0.263683,0.612291,0.714562,0.710942,0.184878,0.515704,0.925966,0.931715,0.593103,0.629667,0.291692,0.276517,0.924384,0.975541,0.561918,0.776746,0.602983,0.992049,0.489383,0.346417,0.37294,0.589275,0.903718,0.634811,0.360358,0.196411,0.90251,0.167734,0.38288,0.0838076,0.933087,0.707808,0.451191,0.64226,0.845734,0.944204,0.0936101,0.981319,0.739578,0.0428801,0.820848,0.879547,0.781903,0.879761,0.208268,0.40418,0.224243,0.928745,0.608907,0.575252,0.0347824,0.291616,0.696681,0.342133,0.849141,0.956934,0.410952,0.238601,0.427632,0.678396,0.627705,0.0866711,0.470629,0.590144,0.387452,0.709499,0.546692,0.569149,0.453245,0.254479,0.170509,0.844679,0.33934,0.415707,0.454425,0.886858,0.413747,0.929199,0.0936013,0.504036,0.739389,0.211626,0.17247,0.621019,0.468183,0.140123,0.666502,0.775191,0.494966,0.655301,0.774177,0.269254,0.598779,0.979843,0.970231,0.983804,0.548995,0.303011,0.132239,0.401307,0.976356,0.739566,0.666274,0.332345,0.241543,0.234984,0.688051,0.458925,0.587704,0.840707,0.36252,0.927481,0.101399,0.417506,0.282952,0.481593,0.697341,0.533843,0.353313,0.00797433,0.587328,0.166003,0.469589,0.345982,0.443939,0.488653,0.0566624,0.653144,0.222524,0.401074,0.30081,0.756453,0.917099,0.827733,0.669029,0.409593,0.604532,0.911884,0.140043,0.702815,0.100169,0.0089131,0.507593,0.822773,0.422945,0.850385,0.466713,0.545257,0.198754,0.119106,0.0585016,0.452433,0.145053,0.0246423,0.280484,0.0574219,0.879058,0.109943,0.373743,0.733874,0.620248,0.751404,0.494915,0.0139599,0.55332,0.670478,0.963931,0.873586,0.819348,0.0356246,0.198483,0.512157,0.184314,0.111148,0.707314,0.257193,0.0253745,0.706809,0.43085,0.567776,0.809891,0.974833,0.739951,0.370574,0.254034,0.847531,0.487951,0.362151,0.890385,0.0527042,0.926811,0.769715,0.0268216,0.154591,0.857162,0.503708,0.21976,0.393506,0.335545,0.114999,0.475226,0.592557,0.173032,0.94808,0.306226,0.874156,0.360444,0.376534,0.90859,0.654743,0.0153481,0.51273,0.772954,0.181487,0.839545,0.76941,0.445325,0.557056,0.652789,0.468567,0.747314,0.000485718,0.271688,0.628498,0.156918,0.148961,0.758303,0.00860274,0.907121,0.312151,0.658355,0.262272,0.805352,0.77483,0.947368,0.348387,0.613862,0.812791,0.529553,0.764205,0.939773,0.481877,0.227206,0.57659,0.511809,0.554075,0.351754,0.353747,0.0246663,0.467677,0.982113,0.892526,0.645424,0.738984,0.41054,0.215449,0.53148,0.885509,0.00873977,0.722071,0.0682225,0.985512,0.138203,0.988888,0.643795,0.565517,0.125563,0.567716,0.135112,0.477851,0.687339,0.984389,0.528234,0.932127,0.200662,0.563042,0.119632,0.778948,0.623649,0.529494,0.35148,0.117246,0.0662482,0.418624,0.299234,0.948413,0.590647,0.766796,0.437787,0.961609,0.833527,0.0844374,0.303048,0.958611,0.519398,0.314591,0.034152,0.00282979,0.882738,0.178753,0.321738,0.585738,0.847993,0.567933,0.376584,0.971099,0.816804,0.590379,0.654162,0.37118,0.683339,0.192177,0.0631513,0.0601943,0.761762,0.668606,0.166211,0.299855,0.945492,0.987529,0.210147,0.785411,0.659771,0.757345,0.492342,0.428909,0.289067,0.990645,0.119764,0.510335,0.193648,0.160761,0.151312,0.510135,0.541217,0.149883,0.0589814,0.315872,0.257516,0.858258,0.173928,0.614848,0.176391,0.388387,0.791355,0.033688,0.740672,0.349616,0.365162,0.577769,0.156376,0.611964,0.826402,0.147842,0.983331,0.262623,0.250006,0.404246,0.902345,0.877036,0.211911,0.461794,0.366704,0.386317,0.102796,0.826124,0.910572,0.884354,0.854378,0.587632,0.685765,0.403776,0.35388,0.422359,0.530124,0.315841,0.516867,0.366883,0.252309,0.0993088,0.0527831,0.421695,0.0583392,0.409288,0.118838,0.940003,0.344859,0.400082,0.584019,0.338246,0.723235,0.282878,0.2001,0.179633,0.666763,0.00445324,0.984908,0.233111,0.506822,0.319078,0.929957,0.0316513,0.0810743,0.926939,0.108336,0.482217,0.604027,0.308227,0.766496,0.121292,0.744662,0.837181,0.85011,0.700859,0.416553,0.26709,0.607577,0.441671,0.271266,0.277183,0.18844,0.749482,0.976292,0.902556,0.952516,0.091489,0.552085,0.498479,0.430569,0.786041,0.736372,0.130667,0.851802,0.686252,0.26607,0.401013,0.164404,0.676429,0.686109,0.026595,0.452441,0.846807,0.478966,0.418617,0.920797,0.523252,0.476416,0.651772,0.324722,0.684076,0.639991,0.143184,0.244305,0.698167,0.492622,0.481154,0.938376,0.610682,0.09696,0.349103,0.0504937,0.825747,0.580139,0.908514,0.416491,0.993468,0.796364,0.525768,0.446854,0.0122889,0.575971,0.999791,0.425065,0.715243,0.319195,0.789127,0.352769,0.82679,0.733582,0.639245,0.530242,0.0731343,0.803797,0.673253,0.460374,0.817359,0.791983,0.321824,0.520479,0.891495,0.667537,0.742734,0.37803,0.533843,0.74914,0.977276,0.45845,0.95363,0.568617,0.41244,0.0475782,0.370265,0.653589,0.900746,0.653776,0.204319,0.266042,0.947929,0.384548,0.936779,0.0840338,0.133555,0.743897,0.138457,0.62183,0.806845,0.350391,0.280471,0.351186,0.679617,0.382702,0.684282,0.220201,0.28251,0.717566,0.241158,0.902831,0.340095,0.860483,0.618831,0.811593,0.17184,0.551691,0.995266,0.714336,0.710199,0.487537,0.106311,0.352628,0.584424,0.787672,0.805377,0.853994,0.451456,0.883191,0.274329,0.354875,0.440307,0.696722,0.881208,0.534318,0.533108,0.651485,0.718601,0.710288,0.485415,0.93781,0.252197,0.601661,0.173651,0.858762,0.859521,0.138615,0.140787,0.719557,0.593212,0.606053,0.222058,0.424366,0.716633,0.361128,0.192146,0.58765,0.533394,0.973758,0.169706,0.379363,0.39131,0.560337,0.426233,0.624303,0.179059,0.310571,0.927129,0.0536708,0.711857,0.562858,0.171996,0.442231,0.27869,0.0974972,0.0678058,0.61619,0.595174,0.942134,0.729752,0.612655,0.538166,0.152023,0.431282,0.522816,0.21624,0.763014,0.15915,0.536918,0.447978,0.58033,0.460926,0.30149,0.454818,0.436188,0.466753,0.894262,0.724534,0.900349,0.736082,0.877911,0.751803,0.541641,0.217304,0.312887,0.795745,0.937075,0.222763,0.965341,0.834201,0.919945,0.357438,0.64996,0.435851,0.675026,0.173714,0.500162,0.945781,0.957552,0.995263,0.441991,0.172496,0.679679,0.86105,0.488383,0.149333,0.576253,0.448182,0.881632,0.703784,0.124044,0.206994,0.0543616,0.00544012,0.803032,0.817076,0.925678,0.222344,0.0167682,0.048534,0.550103,0.664595,0.859648,0.428828,0.799572,0.570117,0.594091,0.362218,0.609335,0.802882,0.499173,0.93497,0.499877,0.526764,0.0578176,0.90109,0.14721,0.87798,0.0277463,0.445509,0.0648687,0.425525,0.288985,0.497924,0.226327,0.94144,0.377961,0.405704,0.9079,0.50631,0.935094,0.141281,0.927737,0.0697955,0.92004,0.377175,0.760382,0.959003,0.133624,0.387857,0.250546,0.96594,0.221043,0.799092,0.361087,0.30049,0.731219,0.29641,0.00796264,0.967614,0.972033,0.108926,0.38631,0.520018,0.824015,0.02894,0.577113,0.542701,0.699209,0.142026,0.235209,0.814096,0.760623,0.465973,0.307759,0.417613,0.934859,0.949201,0.398229,0.808618,0.547931,0.962425,0.610359,0.14018,0.489594,0.380878,0.247788,0.0446401,0.905864,0.263496,0.589617,0.516759,0.989203,0.621035,0.979915,0.525743,0.212672,0.139126,0.725121,0.0998697,0.956456,0.0719247,0.958412,0.796112,0.413324,0.205004,0.488327,0.625011,0.618079,0.875196,0.71483,0.447925,0.559373,0.609857,0.387444,0.0716887,0.31312,0.258124,0.523265,0.0213534,0.099049,0.0334141,0.486286,0.73722,0.324545,0.97452,0.951556,0.284222,0.199566,0.131951,0.304545,0.35367,0.245439,0.512743,0.616431,0.542969,0.372645,0.841802,0.9184,0.989843,0.217918,0.648244,0.619904,0.583842,0.969365,0.376399,0.497456,0.709945,0.329048,0.472422,0.737343,0.606361,0.182735,0.807932,0.0158387,0.274755,0.658334,0.721754,0.597738,0.512768,0.967055,0.90997,0.386773,0.622055,0.340762,0.136788,0.273491,0.0662411,0.105236,0.414331,0.20534,0.978682,0.0849802,0.411315,0.671958,0.179379,0.516381,0.448207,0.576236,0.438952,0.369249,0.677123,0.0871929,0.319377,0.0712163,0.767507,0.95092,0.411088,0.456986,0.129908,0.947178,0.00919431,0.454372,0.399211,0.901184,0.911038,0.362218,0.522201,0.371914,0.464335,0.662345,0.215219,0.531514,0.937866,0.290286,0.142481,0.100326,0.33811,0.293844,0.556354,0.164034,0.509095,0.982182,0.975725,0.464425,0.0221034,0.178154,0.0444173,0.497723,0.997084,0.580888,0.626435,0.561897,0.552453,0.851158,0.277971,0.353815,0.453882,0.251635,0.792428,0.142915,0.352607,0.31556,0.790852,0.974974,0.546471,0.525689,0.858859,0.714662,0.362154,0.273541,0.600241,0.49008,0.835771,0.481757,0.584688,0.380688,0.120319,0.740485,0.540805,|0.480169,0.123025,0.84257,0.732265,0.861316,0.962009,0.933048,0.187189,0.127732,0.707214,0.977375,0.546148,0.772779,0.96601,0.293134,0.0459238,0.984042,0.148553,0.754286,0.994716,0.74491,0.0545716,0.188835,0.548616,0.192107,0.270678,0.99351,0.847973,0.540116,0.520402,0.384546,0.757213,0.392333,0.253642,0.931482,0.162108,0.906263,0.867716,0.509579,0.768691,0.128123,0.886086,0.41518,0.0250089,0.744128,0.282721,0.799375,0.0839218,0.276714,0.876464,0.193625,0.663133,0.0491365,0.633693,0.465023,0.402574,0.375468,0.293627,0.322424,0.420465,0.783157,0.0387586,0.928928,0.0708154,0.333401,0.349521,0.404224,0.959,0.502911,0.304222,0.0877662,0.784526,0.118432,0.659875,0.759514,0.601801,0.321628,0.114995,0.108107,0.246676,0.991053,0.324606,0.519582,0.0326924,0.38553,0.54169,0.948815,0.54882,0.203122,0.543191,0.739084,0.191223,0.246321,0.317271,0.904806,0.275205,0.508788,0.230224,0.63649,0.777353,0.121105,0.953453,0.599064,0.519472,0.861833,0.783011,0.869621,0.340115,0.598292,0.453486,0.870518,0.32324,0.457696,0.199006,0.4235,0.245393,0.0701649,0.346936,0.923221,0.727448,0.122172,0.532107,0.728493,0.494099,0.570023,0.299649,0.954086,0.677652,0.574577,0.0631605,0.326968,0.364088,0.266191,0.364623,0.862468,0.164434,0.502414,0.160877,0.0114451,0.963249,0.701072,0.985577,0.994916,0.562055,0.414346,0.0163046,0.0107799,0.0264736,0.55936,0.269748,0.184921,0.631385,0.821478,0.485763,0.00118238,0.252033,0.581324,0.883164,0.916211,0.236678,0.804293,0.895299,0.738886,0.889382,0.589467,0.956814,0.855162,0.942282,0.597362,0.472145,0.954392,0.598328,0.00789088,0.613643,0.617028,0.304515,0.253735,0.507894,0.971589,0.217427,0.17867,0.150034,0.368236,0.898217,0.366856,0.703597,0.572025,0.454635,0.672055,0.374234,0.037686,0.480591,0.860434,0.174437,0.847416,0.877698,0.634993,0.118246,0.447288,0.880498,0.0268704,0.401658,0.588412,0.34167,0.00537384,0.0511173,0.0931995,0.0284383,0.483978,0.412644,0.815922,0.753167,0.967933,0.0611643,0.808312,0.108726,0.287288,0.841626,0.847066,0.912367,0.231473,0.224313,0.488247,0.154364,0.0122805,0.135998,0.0625109,0.100112,0.927532,0.0224457,0.991696,0.714866,0.127471,0.291068,0.190724,0.838626,0.65611,0.0629947,0.713609,0.630278,0.917105,0.777152,0.397978,0.663159,0.964192,0.958431,0.232767,0.430536,0.204911,0.493409,0.570674,0.626821,0.474853,0.787344,0.824524,0.172035,0.768624,0.888214,0.52659,0.425955,0.808536,0.745857,0.0949686,0.25432,0.262201,0.536607,0.739038,0.509146,0.134523,0.276614,0.873062,0.0716627,0.971641,0.522536,0.337777,0.77891,0.267824,0.303408,0.225847,0.241892,0.493347,0.852005,0.584632,0.505272,0.792685,0.0945413,0.12821,0.58334,0.328617,0.8119,0.405536,0.707032,0.497016,0.234966,0.241359,0.806856,0.71834,0.658545,0.40986,0.783953,0.4356,0.636073,0.602303,0.384634,0.0602362,0.366409,0.0978862,0.183581,0.55544,0.0118242,0.730596,0.668456,0.173564,0.00282323,0.372971,0.165977,0.782137,0.879511,0.210604,0.516977,0.25369,0.2641,0.5468,0.767177,0.00604045,0.529526,0.489287,0.428852,0.540026,0.560336,0.517085,0.21076,0.266864,0.23104,0.0784626,0.480864,0.485568,0.515304,0.519228,0.061184,0.299503,0.753015,0.926768,0.0698293,0.855254,0.241612,0.728259,0.56651,0.166737,0.719968,0.516319,0.494594,0.643727,0.453045,0.242055,0.320761,0.647541,0.992386,0.958092,0.067854,0.632554,0.450664,0.28671,0.775007,0.0185375,0.145974,0.318396,0.501072,0.922487,0.525555,0.707369,0.351873,0.642207,0.000623226,0.512374,0.926909,0.555194,0.801512,0.673188,0.706373,0.548212,0.362757,0.251201,0.632055,0.0487945,0.222146,0.632074,0.698876,0.918309,0.889134,0.655374,0.0323809,0.819683,0.806913,0.568135,0.152121,0.0866572,0.717276,0.763143,0.346528,0.709945,0.972998,0.00474995,0.734901,0.0294561,0.47878,0.371372,0.0596775,0.260182,0.40224,0.973504,0.411114,0.278881,0.592752,0.00917715,0.327054,0.297406,0.892855,0.187197,0.374433,0.720467,0.959699,0.82999,0.373792,0.391319,0.42138,0.336322,0.991318,0.0376402,0.476035,0.755833,0.424604,0.800574,0.499785,0.68216,0.625427,0.148854,0.0010494,0.141266,0.303985,0.325279,0.542353,0.617665,0.533754,0.965565,0.772305,0.878018,0.455937,0.434977,0.718645,0.576617,0.620213,0.80382,0.603077,0.00121075,0.895177,0.499761,0.528102,0.226651,0.811061,0.264689,0.307149,0.708133,0.38471,0.0844421,0.0216815,0.386711,0.382594,0.997531,0.870564,0.391068,0.123697,2.98023e-06,0.841902,0.18163,0.395088,0.762651,0.0340102,0.808742,0.27626,0.234783,0.0306532,0.327026,0.236496,0.764904,0.564572,0.756167,0.351577,0.0352539,0.0214018,0.774019,0.335489,0.872754,0.998202,0.0458304,0.899593,0.695615,0.764169,0.245645,0.601448,0.483511,0.732356,0.148596,0.125449,0.38494,0.206915,0.126628,0.457884,0.334224,0.258523,0.389612,0.264353,0.390827,0.567304,0.920505,0.76567,0.393634,0.38477,0.0170229,0.615009,0.688455,0.218196,0.484805,0.938431,0.177808,0.269454,0.30101,0.816738,0.201791,0.980513,0.87497,0.804609,0.928705,0.552834,0.179852,0.758576,0.948008,0.213056,0.403381,0.628212,0.0857947,0.0189375,0.897471,0.421199,0.0138032,0.801305,0.999441,0.272925,0.106326,0.840985,0.722221,0.684479,0.588304,0.825627,0.334393,0.754425,0.0516724,0.0250774,0.709366,0.759443,0.761643,0.744994,0.68011,0.747613,0.851264,0.468171,0.326784,0.263959,0.401638,0.701279,0.19832,0.440861,0.883357,0.842348,0.0565791,0.66066,0.267075,0.241339,0.194588,0.614261,0.813413,0.360181,0.969369,0.80498,0.865089,0.234616,0.270019,0.562961,0.0453641,0.288582,0.414714,0.272076,0.343161,0.737739,0.489643,0.142941,0.998222,0.0253605,0.395098,0.363382,0.191322,0.542452,0.424849,0.577266,0.234571,0.521839,0.608604,0.465247,0.317573,0.627051,0.960045,0.484166,0.718599,0.472178,0.444748,0.886618,0.924452,0.43035,0.205944,0.203203,0.240797,0.271617,0.737661,0.524516,0.265702,0.876874,0.0986966,0.554968,0.177795,0.345952,0.217439,0.201609,0.836544,0.605843,0.066707,0.696974,0.0625562,0.00793046,0.629982,0.702365,0.207243,0.664999,0.931688,0.905643,0.0316549,0.0805271,0.0951263,0.158547,0.736583,0.0283777,0.947278,0.175457,0.136172,0.382479,0.739141,0.873724,0.781293,0.0658078,0.1158,0.306536,0.876977,0.0736067,0.740195,0.968287,0.653522,0.25952,0.0281085,0.673899,0.346287,0.982046,0.97731,0.109668,0.0197084,0.373407,0.663935,0.170822,0.751244,0.0120026,0.70748,0.324093,0.00437832,0.556038,0.702636,0.0274132,0.973618,0.594439,0.59004,0.670223,0.886796,0.010429,0.794611,0.330393,0.317742,0.807625,0.23339,0.700231,0.549393,0.080166,0.605293,0.956184,0.295839,0.547365,0.555107,0.452077,0.863379,0.0666916,0.829766,0.82715,0.977821,0.0812274,0.18305,0.00890589,0.483964,0.00530082,0.392121,0.552882,0.421575,0.684473,0.73604,0.673211,0.887997,0.520677,0.231952,0.237439,0.306424,0.543189,0.879338,0.120707,0.477796,0.303175,0.396988,0.202118,0.828862,0.244524,0.921109,0.401662,0.425309,0.529816,0.631087,0.672858,0.869862,0.945543,0.371077,0.933485,0.487633,0.950019,0.284036,0.0556358,0.806033,0.0958008,0.736086,0.491234,0.0528506,0.715617,0.0209004,0.114219,0.697005,0.135854,0.605632,0.38238,0.149694,0.503981,0.706917,0.587409,0.187584,0.500011,0.186591,0.142027,0.161784,0.895006,0.206371,0.357416,0.123983,0.931538,0.963755,0.37242,0.781268,0.218689,0.391553,0.522756,0.171992,0.846086,0.302075,0.687388,0.839483,0.554018,0.491866,0.740269,0.381895,0.1624,0.328187,0.333356,0.802286,0.598693,0.104454,0.0617244,0.76886,0.122975,0.737593,0.627284,0.18488,0.888546,0.332271,0.0429896,0.512688,0.523124,0.246869,0.326934,0.577405,0.946398,0.323344,0.0406507,0.942602,0.287149,0.0304625,0.934614,0.519129,0.47384,0.648059,0.404977,0.461832,0.783717,0.982605,0.73924,0.317531,0.988682,0.77464,0.824401,0.221703,0.347535,0.222308,0.169088,0.971611,0.20203,0.731333,0.302522,0.749159,0.58851,0.513573,0.543342,0.667249,0.151686,0.767905,0.0364379,0.791243,0.86596,0.25536,0.0409834,0.0218886,0.496605,0.690133,0.858903,0.966232,0.569196,0.936764,0.410972,0.437537,0.342284,0.684458,0.232187,0.660731,0.0279054,0.631543,0.696788,0.335396,0.383839,0.976074,0.802844,0.266168,0.542472,0.132584,0.0597385,0.646197,0.479762,0.374648,0.343475,0.25685,0.82644,0.37018,0.158302,0.137084,0.75851,0.258705,0.653083,0.912614,0.25811,0.0889736,0.924036,0.893647,0.206184,0.856617,0.608835,0.445466,0.84006,0.670173,0.433039,0.132869,0.698344,0.435046,0.296213,0.421599,0.107001,0.797769,0.895982,0.0205781,0.257035,0.348128,0.310894,0.273663,0.425675,0.705878,0.14767,0.120419,0.299625,0.833778,0.692804,0.725993,0.857426,0.261693,0.16238,0.828586,0.400661,0.474148,0.174187,0.791263,0.674695,0.740152,0.757297,0.170664,0.102461,0.811297,0.443677,0.0902181,0.78945,0.507033,0.482708,0.992154,0.319055,0.220573,0.106562,0.664849,0.472298,0.778382,0.481622,0.968534,0.942984,0.859819,0.526756,0.476644,0.704962,0.642897,0.338716,0.422645,0.144795,0.794724,0.342467,0.0789046,0.488215,0.107217,0.998507,0.597757,0.350922,0.986339,0.034517,0.335137,0.510235,0.645121,0.0737966,0.900783,0.454233,0.358146,0.949204,0.695932,0.683235,0.95645,0.895918,0.141745,0.364361,0.610715,0.498526,0.969591,0.0283402,0.589677,0.119633,0.0572969,0.0924878,0.712139,0.587348,0.850936,0.0812516,0.830022,0.791956,0.592552,0.184425,0.553177,0.341831,0.85646,0.245672,0.537844,0.73092,|0.773205,0.49567,0.0497279,0.611137,0.183153,0.529933,0.796753,0.444731,0.120177,0.383733,0.179635,0.427428,0.996545,0.833106,0.69178,0.437907,0.616249,0.654361,0.0337123,0.570688,0.213495,0.22312,0.357593,0.409337,0.563551,0.243529,0.322728,0.813406,0.168029,0.32094,0.768156,0.52131,0.394513,0.477308,0.488649,0.869629,0.89822,0.70847,0.821169,0.455162,0.905023,0.247866,0.0295069,0.954821,0.166679,0.565754,0.828587,0.528933,0.965206,0.768335,0.321981,0.375481,0.0134057,0.0350485,0.19265,0.0466246,0.637755,0.0438157,0.657328,0.0290465,0.10354,0.226152,0.865885,0.27358,0.299636,0.801659,0.711346,0.732659,0.146726,0.544202,0.960816,0.188264,0.445091,0.996568,0.487662,0.235354,0.79294,0.531142,0.615467,0.64814,0.945121,0.34211,0.595085,0.279305,0.536713,0.880589,0.693583,0.381128,0.570878,0.921916,0.863642,0.812313,0.0778301,0.488251,0.63223,0.931065,0.0292085,0.417757,0.9923,0.987189,0.0555887,0.26053,0.0478011,0.979227,0.786981,0.986237,0.425832,0.220399,0.329252,0.96422,0.759374,0.973767,0.406233,0.654934,0.348076,0.536134,0.902803,0.571352,0.652826,0.0580088,0.861967,0.866283,0.133196,0.749938,0.855991,0.171946,0.17498,0.720743,0.518627,0.942664,0.205877,0.200708,0.820813,0.445306,0.655522,0.626939,0.28441,0.210628,0.581307,0.531575,0.0129158,0.740987,0.167536,0.286695,0.563689,0.946122,0.652474,0.542511,0.858817,0.0809696,0.257685,0.448793,0.00832701,0.869842,0.316979,0.466649,0.791031,0.195403,0.808206,0.917277,0.680635,0.366252,0.052343,0.566556,0.789003,0.167808,0.311263,0.625347,0.195063,0.942663,0.784117,0.77219,0.135553,0.188547,0.0155542,0.192125,0.349602,0.159845,0.651933,0.614272,0.885012,0.557896,0.52072,0.86114,0.798393,0.133232,0.305308,0.684967,0.514171,0.24209,0.913003,0.15352,0.0781268,0.0544744,0.442404,0.324391,0.166355,0.612326,0.12609,0.426106,0.445827,0.877237,0.105222,0.568214,0.441653,0.523319,0.860392,0.681658,0.214306,0.817917,0.532393,0.580573,0.437922,0.803689,0.237663,0.791636,0.670668,0.708627,0.0529775,0.899371,0.105105,0.92762,0.992057,0.958929,0.706215,0.822413,0.123585,0.295991,0.947691,0.710541,0.115687,0.485293,0.939918,0.892382,0.547054,0.950167,0.517419,0.476055,0.589396,0.556115,0.839328,0.450766,0.174152,0.323105,0.646599,0.221169,0.896434,0.567178,0.862811,0.368632,0.171814,0.218922,0.0189265,0.317903,0.455561,0.706534,0.0103615,0.652927,0.243471,0.384692,0.552205,0.7391,0.795981,0.788939,0.262113,0.819467,0.27448,0.0699323,0.193757,0.0983353,0.65439,0.961572,0.087986,0.905437,0.700315,0.918101,0.0914975,0.777002,0.190738,0.380424,0.00749099,0.936085,0.813253,0.898355,0.248303,0.690178,0.000616133,0.0772883,0.760363,0.426739,0.60422,0.82417,0.442026,0.992559,0.828167,0.210051,0.805642,0.810618,0.218158,0.790606,0.338048,0.181992,0.194592,0.941857,0.443869,0.301488,0.599843,0.433117,0.0262314,0.767641,0.249074,0.662285,0.269031,0.859236,0.656234,0.19505,0.823152,0.18131,0.234508,0.428355,0.538056,0.844195,0.394018,0.309614,0.197163,0.0665091,0.0263221,0.591402,0.0435422,0.0942385,0.43283,0.564647,0.906945,0.447815,0.433132,0.737924,0.894191,0.789848,0.92147,0.770722,0.0408059,0.998063,0.818317,0.863595,0.202914,0.651836,0.0284135,0.141812,0.0418269,0.415575,0.565738,0.840328,0.199816,0.902015,0.987174,0.451442,0.566172,0.610125,0.230556,0.344316,0.061233,0.238606,0.834115,0.407825,0.38921,0.695431,0.629717,0.709132,0.8693,0.0459011,0.962995,0.852611,0.166603,0.0910543,0.793152,0.0891258,0.199227,0.587717,0.396393,0.364376,0.775409,0.016495,0.683871,0.632291,0.216623,0.286889,0.611879,0.335814,0.577876,0.847756,0.191277,0.945562,0.136958,0.669882,0.204924,0.248687,0.0248945,0.98569,0.906379,0.624232,0.0166191,0.578089,0.827489,0.471288,0.24451,0.740243,0.670322,0.0811125,0.908107,0.452639,0.853569,0.00334805,0.0591052,0.571594,0.360165,0.51493,0.957697,0.810883,0.499329,0.873896,0.584608,0.437667,0.178224,0.175187,0.528941,0.167426,0.0633977,0.916472,0.313194,0.991278,0.999423,0.428842,0.368205,0.77749,0.286594,0.196473,0.979793,0.78262,0.56377,0.945517,0.428976,0.0224187,0.130351,0.0334341,0.184846,0.0494247,0.729664,0.900978,0.771165,0.415369,0.0272595,0.190669,0.628271,0.575013,0.701502,0.781538,0.233582,0.883011,0.502294,0.528349,0.532245,0.597321,0.578763,0.136831,0.31661,0.424786,0.447189,0.896229,0.657234,0.488373,0.546025,0.84039,0.297887,0.345733,0.687172,0.514384,0.55587,0.308405,0.403757,0.393535,0.453866,0.410679,0.120407,0.646978,0.393353,0.485365,0.338694,0.679724,0.217948,0.121296,0.661866,0.0526958,0.113117,0.279408,0.774993,0.582374,0.806066,0.437843,0.085516,0.960362,0.75967,0.978698,0.298926,0.391944,0.965084,0.289444,0.361966,0.531156,0.807741,0.481993,0.526442,0.422655,0.37278,0.502581,0.940063,0.208432,0.664269,0.161339,0.727233,0.458158,0.610337,0.894997,0.137516,0.72275,0.528578,0.396578,0.431418,0.302042,0.367787,0.993147,0.578661,0.463472,0.248248,0.712364,0.522686,0.526638,0.548747,0.968597,0.584007,0.00796378,0.146269,0.24085,0.331917,0.431203,0.822853,0.668239,0.245586,0.0594636,0.00326234,0.531211,0.0550874,0.844286,0.0577277,0.023239,0.0749763,0.619228,0.152403,0.459674,0.340837,0.740766,0.237557,0.0390284,0.776076,0.25851,0.448671,0.671908,0.301821,0.754383,0.450819,0.317548,0.566894,0.66619,0.527449,0.664898,0.361338,0.40742,0.203745,0.193937,0.434988,0.363768,0.668201,0.887701,0.508303,0.80265,0.945797,0.829788,0.317032,0.356605,0.574318,0.467284,0.145293,0.262519,0.0356622,0.0513213,0.632657,0.44523,0.625534,0.976153,0.64249,0.330946,0.869743,0.932439,0.759704,0.649718,0.415814,0.00548702,0.293375,0.149921,0.209658,0.630674,0.524675,0.632458,0.834581,0.592223,0.922928,0.815516,0.425795,0.808132,0.183007,0.239643,0.725343,0.18246,0.952857,0.0226818,0.0182101,0.593774,0.509363,0.874297,0.607565,0.801225,0.46034,0.948779,0.111509,0.491143,0.816935,0.612111,0.674309,0.327148,0.263089,0.493845,0.299096,0.378747,0.867274,0.863935,0.879489,0.550584,0.0201606,0.0772914,0.621482,0.972115,0.00574589,0.81738,0.202546,0.75721,0.524054,0.952194,0.248033,0.344984,0.732705,0.502274,0.803744,0.628465,0.873113,0.870677,0.337411,0.627064,0.292069,0.876818,0.420363,0.371846,0.0610261,0.58872,0.00846672,0.986016,0.747181,0.158199,0.00135756,0.805129,0.24119,0.532785,0.513287,0.74835,0.772907,0.238965,0.443879,0.324845,0.306499,0.255022,0.0124683,0.691478,0.275091,0.0272618,0.158927,0.345311,0.678405,0.315019,0.235513,0.266583,0.269385,0.376872,0.238363,0.255075,0.754794,0.468426,0.249869,0.689678,0.376932,0.124259,0.987632,0.00358713,0.0164044,0.528221,0.49062,0.689653,0.659352,0.131419,0.764729,0.0604375,0.802154,0.592429,0.845029,0.514683,0.75084,0.751808,0.497041,0.217166,0.296099,0.365325,0.0835202,0.714039,0.900617,0.0541846,0.169641,0.155904,0.281646,0.467277,0.989553,0.542176,0.86819,0.0618957,0.840923,0.284174,0.633026,0.848262,0.436242,0.881988,0.0345963,0.653229,0.31219,0.335582,0.68564,0.893328,0.134111,0.388485,0.485658,0.287311,0.742415,0.99483,0.486014,0.873202,0.711284,0.173956,0.102618,0.0205859,0.488211,0.56556,0.630671,0.937929,0.209963,0.180711,0.722147,0.275755,0.611781,0.371633,0.660301,0.248157,0.122907,0.649305,0.0975043,0.418857,0.965982,0.339792,0.00185686,0.082841,0.586662,0.927971,0.948347,0.870783,0.90839,0.133818,0.557971,0.753976,0.243704,0.103932,0.902368,0.111284,0.353808,0.749286,0.417012,0.450555,0.636962,0.859741,0.642629,0.999325,0.487413,0.00445986,0.0962535,0.368515,0.336643,0.664503,0.425875,0.512877,0.517676,0.167874,0.211524,0.354625,0.0570582,0.193735,0.64443,0.0186,0.786054,0.317167,0.700144,0.740392,0.584392,0.912533,0.630366,0.10208,0.518691,0.0479314,0.27153,0.254083,0.522087,0.837452,0.389487,0.641542,0.188853,0.795012,0.421013,0.331966,0.224005,0.974812,0.98412,0.188061,0.253033,0.271837,0.962031,0.400356,0.753735,0.614349,0.157514,0.774164,0.577535,0.843241,0.432361,0.628269,0.490736,0.095648,0.706402,0.34074,0.225508,0.393061,0.352163,0.612031,0.702342,0.749625,0.903861,0.417159,0.183431,0.0182567,0.222227,0.147518,0.476936,0.408337,0.737949,0.251015,0.0898129,0.358108,0.862822,0.649529,0.927408,0.642331,0.852476,0.566513,5.54323e-06,0.950513,0.851608,0.556125,0.526404,0.581963,0.0543804,0.771075,0.340159,0.524485,0.214041,0.413268,0.929228,0.848505,0.580817,0.520677,0.916376,0.978398,0.569946,0.94412,0.915338,0.449129,0.452009,0.795118,0.568989,0.928654,0.438503,0.674686,0.046302,0.881412,0.667568,0.615639,0.172175,0.517755,0.142294,0.83944,0.781304,0.175681,0.542917,0.537318,0.461714,0.676812,0.27206,0.891844,0.790693,0.579955,0.887399,0.427096,0.852711,0.70942,0.298898,0.22059,0.436934,0.586711,0.916591,0.74602,0.323357,0.703991,0.219024,0.773759,0.296648,0.481442,0.810446,0.71374,0.152353,0.245981,0.679116,0.509385,0.452051,0.0309091,0.590704,0.0644456,0.534277,0.721172,0.857421,0.0992221,0.864203,0.807388,0.508162,0.991927,0.880549,0.169382,0.897088,0.943263,0.834453,0.876052,0.83988,0.496873,0.375831,0.677714,0.497584,0.936317,0.422819,0.767615,0.666488,0.824837,0.212285,0.675224,0.876745,0.199884,0.991652,0.312469,0.622532,0.4241,0.755832,0.0207178,0.343847,0.126565,0.868533,0.428406,0.701789,0.165807,0.920117,0.356114,0.220892,0.530551,|0.459185,0.632644,0.635245,0.963962,0.526595,0.500983,0.835782,0.895687,0.258347,0.207914,0.646984,0.614466,0.547967,0.906365,0.416945,0.912439,0.96898,0.219007,0.00165546,0.913828,0.0267465,0.830251,0.1193,0.925135,0.261154,0.561921,0.962597,0.491075,0.180914,0.165212,0.181515,0.593815,0.461733,0.0174583,0.304359,0.963878,0.932545,0.108115,0.986267,0.864937,0.00845742,0.849989,0.61266,0.324704,0.684276,0.751165,0.692172,0.674075,0.717708,0.370805,0.516552,0.854741,0.787553,0.488425,0.663915,0.245139,0.274202,0.754946,0.765746,0.728129,0.118679,0.130742,0.992337,0.197516,0.45744,0.376776,0.121729,0.849829,0.347321,0.486172,0.746464,0.527446,0.187137,0.338617,0.76999,0.267525,0.293785,0.332,0.711521,0.838547,0.904681,0.194654,0.117786,0.203306,0.346197,0.243259,0.608793,0.188057,0.895106,0.111594,0.732482,0.848839,0.267839,0.358848,0.925126,0.0955071,0.876097,0.193465,0.380777,0.123727,0.382466,0.682102,0.682359,0.35658,0.456468,0.0899262,0.830152,0.158962,0.593549,0.252949,0.140261,0.716746,0.426705,0.265598,0.550284,0.614942,0.830856,0.0736973,0.291372,0.84827,0.188199,0.419428,0.765392,0.427617,0.225565,0.0809259,0.445502,0.589005,0.440719,0.375182,0.0232301,0.6901,0.0790798,0.349337,0.766017,0.0657856,0.459198,0.919808,0.866508,0.612937,0.563641,0.504833,0.234721,0.514471,0.687752,0.0483446,0.924163,0.871372,0.790405,0.494059,0.72546,0.737682,0.063579,0.145054,0.642278,0.44272,0.700968,0.854464,0.976116,0.734727,0.0370793,0.467954,0.801293,0.3776,0.207834,0.483525,0.196577,0.995769,0.167637,0.590716,0.472918,0.718469,0.245604,0.233335,0.708681,0.61324,0.743933,0.844358,0.349586,0.192654,0.425441,0.136141,0.995733,0.198934,0.703006,0.163507,0.299471,0.809555,0.829861,0.5518,0.503182,0.862974,0.408874,0.192369,0.84645,0.133966,0.989973,0.507756,0.778501,0.111783,0.479751,0.340852,0.900704,0.878689,0.50305,0.101704,0.44217,0.6693,0.517635,0.795004,0.494024,0.929948,0.364255,0.30588,0.538859,0.352851,0.481814,0.384354,0.755584,0.246467,0.754655,0.605973,0.805747,0.120063,0.315073,0.527609,0.496924,0.463048,0.0695696,0.448297,0.534815,0.993703,0.211354,0.743038,0.984165,0.232573,0.572751,0.271099,0.895319,0.345327,0.692529,0.677932,0.920337,0.25075,0.279742,0.694203,0.698174,0.930454,0.0680394,0.0340808,0.566203,0.801532,0.00627071,0.504023,0.658834,0.621313,0.912027,0.780633,0.975043,0.422316,0.882995,0.801231,0.398805,0.398056,0.545734,0.995996,0.509437,0.417745,0.370461,0.208358,0.157393,0.961051,0.695825,0.646626,0.334963,0.705554,0.650397,0.832372,0.29088,0.41221,0.235032,0.508381,0.411178,0.368399,0.888875,0.057759,0.309997,0.947778,0.444586,0.85383,0.634578,0.528,0.198544,0.323374,0.461044,0.252508,0.125096,0.477181,0.768441,0.198107,0.575724,0.73262,0.74213,0.998033,0.878597,0.280728,0.0608431,0.345064,0.224053,0.675538,0.226883,0.0222857,0.556532,0.658793,0.382019,0.319823,0.928513,0.975499,0.891792,0.125725,0.694446,0.123875,0.0943845,0.211324,0.735687,0.423843,0.920687,0.855032,0.416939,0.517915,0.203642,0.241494,0.301128,0.8217,0.35043,0.758378,0.658555,0.448586,0.380132,0.29925,0.228083,0.969074,0.936619,0.928533,0.323498,0.163313,0.544641,0.696685,0.934766,0.592173,0.303349,0.598704,0.576856,0.00562727,0.774678,0.255116,0.453543,0.2403,0.883432,0.0938985,0.114013,0.630291,0.236416,0.531841,0.278668,0.635995,0.425854,0.163075,0.395482,0.191534,0.611979,0.439321,0.416508,0.853047,0.397457,0.902141,0.84191,0.767857,0.528243,0.594261,0.298589,0.155272,0.656576,0.129106,0.0905308,0.586297,0.591048,0.997504,0.151165,0.949907,0.81971,0.303373,0.322522,0.501577,0.320719,0.609694,0.220128,0.35261,0.107278,0.66612,0.739364,0.845302,0.651725,0.108687,0.98743,0.322385,0.35193,0.142673,0.232627,0.688355,0.448107,0.858903,0.537429,0.770459,0.383668,0.223828,0.863282,0.78144,0.0408263,0.0997418,0.848914,0.166075,0.655291,0.542773,0.464362,0.602678,0.786555,0.588226,0.319094,0.563135,0.126136,0.846317,0.648429,0.721638,0.468605,0.571677,0.651772,0.320534,0.846579,0.127919,0.915137,0.519499,0.912558,0.0434931,0.839152,0.232629,0.782286,0.278887,0.0932281,0.602807,0.397468,0.00257456,0.102287,0.514455,0.580748,0.547202,0.796134,0.683944,0.999593,0.606694,0.629879,0.941044,0.00442302,0.00576299,0.0100718,0.793064,0.937668,0.436041,0.402805,0.413268,0.547786,0.909028,0.93123,0.229611,0.256172,0.60528,0.442359,0.956516,0.460506,0.583119,0.0366434,0.709011,0.0845021,0.11854,0.606614,0.932672,0.76705,0.961737,0.0375302,0.783477,0.482059,0.943102,0.450207,0.195161,0.956623,0.215955,0.848962,0.715239,0.489141,0.983725,0.776548,0.60114,0.853531,0.0813743,0.73638,0.0202475,0.632057,0.383821,0.759467,0.237399,0.74368,0.000883579,0.713813,0.878451,0.912601,0.7714,0.575866,0.888178,0.797726,0.205963,0.805609,0.496886,0.520812,0.782625,0.115735,0.40579,0.942071,0.0100837,0.594076,0.727135,0.550603,0.952947,0.827202,0.284032,0.692236,0.0568707,0.500374,0.80292,0.487186,0.742157,0.941176,0.0850608,0.669761,0.90663,0.328556,0.36919,0.982421,0.635793,0.34912,0.523251,0.0174716,0.511928,0.16216,0.0331886,0.0320535,0.766275,0.550417,0.787162,0.0119575,0.598764,0.444153,0.543072,0.6581,0.234056,0.196991,0.257493,0.561275,0.750504,0.155059,0.319693,0.477148,0.724963,0.670426,0.341593,0.725922,0.188345,0.321411,0.710078,0.163371,0.604748,0.63366,0.208191,0.46267,0.934128,0.333616,0.142154,0.286235,0.182565,0.735423,0.741485,0.0672212,0.630535,0.896596,0.345953,0.456743,0.950669,0.199041,0.780808,0.918541,0.757121,0.152112,0.85809,0.448017,0.661422,0.789611,0.733923,0.00750053,0.979264,0.441476,0.114127,0.00156873,0.820779,0.981916,0.2618,0.496205,0.568939,0.499315,0.705331,0.612867,0.0145547,0.537242,0.754867,0.339844,0.267618,0.369759,0.0495129,0.599758,0.937861,0.639059,0.857416,0.552209,0.653193,0.514749,0.0194368,0.0319975,0.344105,0.464091,0.930909,0.54878,0.245681,0.788255,0.246428,0.479882,0.165731,0.880132,0.0755544,0.225257,0.0183807,0.46941,0.56972,0.676761,0.87687,0.535956,0.979157,0.597711,0.149357,0.767989,0.60319,0.617201,0.0847111,0.381064,0.239084,0.267452,0.0805786,0.981004,0.70934,0.56419,0.916738,0.120183,0.283802,0.534904,0.330538,0.205592,0.952336,0.0644292,0.245044,0.0613438,0.542171,0.480955,0.482304,0.0284473,0.426414,0.606854,0.160515,0.949896,0.336294,0.39284,0.873019,0.994923,0.487224,0.852915,0.716331,0.943152,0.318705,0.0429602,0.169021,0.0545779,0.70188,0.700103,0.783821,0.597396,0.0785928,0.0501688,0.76243,0.553301,0.013572,0.317137,0.984643,0.745159,0.0706776,0.283479,0.212603,0.305451,0.83608,0.0400239,0.409211,0.35138,0.650583,0.725745,0.381039,0.629047,0.246932,0.139297,0.97294,0.122589,0.131082,0.821856,0.335196,0.61164,0.556344,0.624213,0.942324,0.640427,0.660428,0.496048,0.533439,0.824202,0.375439,0.68436,0.564319,0.206317,0.551858,0.324888,0.685541,0.0374489,0.13701,0.213158,0.85387,0.84296,0.781744,0.907389,0.59475,0.497437,0.297463,0.00265485,0.340927,0.114013,0.507067,0.504361,0.00644624,0.498402,0.664384,0.421847,0.348166,0.959492,0.396271,0.912842,0.704376,0.677594,0.872033,0.805089,0.897333,0.592592,0.871393,0.430059,0.121768,0.917081,0.870464,0.753329,0.356326,0.968732,0.308422,0.791243,0.883518,0.879812,0.852761,0.707526,0.322947,0.844635,0.275396,0.873675,0.376441,0.772793,0.31034,0.182001,0.0277371,0.026647,0.0962179,0.243251,0.383789,0.138375,0.0737398,0.569333,0.944515,0.423689,0.611024,0.748608,0.514469,0.40093,0.385494,0.910434,0.280341,0.249595,0.839539,0.599497,0.316533,0.695315,0.642304,0.439791,0.926043,0.980879,0.475058,0.457629,0.275918,0.867373,0.264582,0.345881,0.998306,0.0950621,0.819593,0.662129,0.28161,0.0628644,0.25843,0.0856662,0.993483,0.67149,0.571398,0.171222,0.602331,0.195222,0.598191,0.0433212,0.399928,0.805572,0.701895,0.982687,0.923799,0.586541,0.683274,0.987612,0.849059,0.910934,0.208092,0.659669,0.191156,0.427177,0.42582,0.913814,0.699553,0.582216,0.911427,0.359257,0.173461,0.481286,0.347908,0.850676,0.156095,0.740629,0.871301,0.516296,0.340522,0.943779,0.524392,0.216154,0.991432,0.662282,0.0834967,0.129759,0.618069,0.233246,0.475401,0.872808,0.549921,0.918372,0.898277,0.392931,0.68317,0.870439,0.418152,0.158268,0.0189559,0.432831,0.273649,0.303419,0.337575,0.432401,0.306297,0.264563,0.0759742,0.690594,0.608912,0.361832,0.644624,0.796436,0.111449,0.46812,0.302714,0.652093,0.375308,0.367142,0.797262,0.0941277,0.881481,0.922394,0.0125548,0.971326,0.518231,0.823649,0.331873,0.296345,0.13494,0.336956,0.679943,0.318317,0.880558,0.690499,0.778218,0.158385,0.0133215,0.358807,0.661412,0.814611,0.194488,0.499509,0.973116,0.453857,0.995488,0.275164,0.249386,0.784797,0.814079,0.0458272,0.994387,0.455748,0.888942,0.0176561,0.512888,0.619453,0.053676,0.683854,0.276518,0.911578,0.661259,0.312493,0.887836,0.620043,0.826519,0.0472183,0.326237,0.958476,0.930715,0.683953,0.513239,0.585963,0.420296,0.123783,0.657843,0.454931,0.596898,0.894312,0.992566,0.44781,0.850477,0.827295,0.535428,0.715465,0.306595,0.526709,0.158895,0.779099,0.0734223,0.721223,0.0956784,0.326122,0.657232,0.16448,0.348653,0.314216,0.922809,0.393418,0.63889,0.136035,0.601996,0.367226,0.068644,0.892515,0.767853,0.418776,0.432627,|0.511953,0.120974,0.760032,0.272402,0.522577,0.668069,0.947354,0.742717,0.138766,0.744118,0.700417,0.537429,0.584255,0.298333,0.636987,0.962088,0.98156,0.578805,0.399094,0.25484,0.912266,0.510847,0.767638,0.608475,0.837246,0.545368,0.754193,0.413127,0.0889122,0.421608,0.746839,0.782386,0.869341,0.645493,0.227073,0.516421,0.0789627,0.13312,0.421235,0.533882,0.440851,0.29765,0.623735,0.0937504,0.228636,0.595833,0.790161,0.132173,0.135926,0.659516,0.966521,0.3859,0.742282,0.357444,0.114791,0.246321,0.678767,0.294782,0.371633,0.912383,0.744352,0.370405,0.82553,0.990804,0.319907,0.125277,0.875797,0.747504,0.115304,0.509781,0.373741,0.49522,0.00681937,0.0830051,0.325579,0.312575,0.702194,0.444965,0.782899,0.212336,0.120952,0.358811,0.297719,0.359887,0.532031,0.470343,0.275398,0.968808,0.16878,0.98749,0.0352342,0.203236,0.465507,0.428734,0.877857,0.343245,0.311363,0.765361,0.796222,0.756198,0.103803,0.246329,0.0109222,0.540646,0.59907,0.962382,0.154718,0.1269,0.734109,0.416616,0.620303,0.949483,0.813459,0.720996,0.909262,0.503137,0.830482,0.0854322,0.342311,0.862423,0.912241,0.0512714,0.469552,0.574363,0.720915,0.180154,0.468617,0.466375,0.91986,0.800825,0.455918,0.179008,0.673768,0.0651716,0.393387,0.776936,0.583797,0.964851,0.575068,0.871718,0.507167,0.286125,0.572412,0.617209,0.671924,0.711167,0.63337,0.882542,0.590925,0.19066,0.997378,0.544965,0.947803,0.0898706,0.656298,0.817209,0.544765,0.358553,0.628163,0.153428,0.823733,0.103126,0.834467,0.352152,0.389279,0.19201,0.262573,0.0905783,0.0669059,0.405847,0.411924,0.265136,0.0741604,0.293819,0.162299,0.55287,0.898761,0.339603,0.554332,0.239826,0.721524,0.145321,0.526185,0.516359,0.841383,0.392874,0.708014,0.87852,0.0327436,0.847356,0.0708842,0.812184,0.854231,0.283723,0.883947,0.490806,0.425357,0.557464,0.795162,0.272559,0.761878,0.537903,0.425558,0.887877,0.426246,0.0999122,0.597778,0.228238,0.451035,0.435148,0.687441,0.451312,0.444848,0.252145,0.741688,0.322948,0.622346,0.390377,0.52804,0.368725,0.323423,0.229859,0.414505,0.682955,0.344052,0.312814,0.805738,0.945836,0.952874,0.85475,0.94661,0.484473,0.416106,0.125236,0.476386,0.199384,0.417426,0.0738339,0.504621,0.354637,0.807709,0.535233,0.781326,0.638902,0.29035,0.935884,0.783456,0.129116,0.337191,0.472966,0.101858,0.79709,0.844255,0.978649,0.205755,0.255149,0.146809,0.703901,0.617986,0.749269,0.566724,0.803534,0.251283,0.681672,0.312212,0.79127,0.921997,0.846677,0.516925,0.913206,0.274582,0.918469,0.550699,0.139128,0.656315,0.420474,0.804412,0.765729,0.530132,0.707237,0.583417,0.00517547,0.577088,0.658198,0.231689,0.0481694,0.333394,0.0219825,0.503412,0.452781,0.0520946,0.485018,0.933974,0.596975,0.923708,0.424069,0.113597,0.577198,0.41632,0.70414,0.876022,0.963755,0.337556,0.0650086,0.103381,0.579594,0.138323,0.396879,0.0339001,0.733116,0.364268,0.214328,0.967112,0.217732,0.469001,0.88982,0.707319,0.722193,0.231812,0.545202,0.626981,0.485987,0.816928,0.551295,0.373428,0.127611,0.0363857,0.687832,0.550457,0.355869,0.560067,0.102842,0.164743,0.35905,0.284861,0.446714,0.560605,0.696264,0.830641,0.637485,0.286011,0.166075,0.873099,0.62478,0.262104,0.656452,0.783682,0.383635,0.0691229,0.247886,0.952552,0.734939,0.980405,0.213554,0.612952,0.526813,0.124302,0.330351,0.586658,0.540171,0.540824,0.205266,0.133892,0.0136752,0.778211,0.788773,0.107392,0.607571,0.825339,0.214869,0.636023,0.211623,0.0733735,0.935542,0.321478,0.66963,0.377655,0.759086,0.0835996,0.479116,0.402788,0.748953,0.755485,0.406483,0.731653,0.646625,0.0141962,0.449146,0.846196,0.087737,0.464826,0.186833,0.812501,0.335073,0.106959,0.219367,0.60628,0.0124173,0.714331,0.554564,0.914696,0.785328,0.668817,0.0319939,0.965274,0.0228161,0.573083,0.670988,0.258817,0.154144,0.844325,0.669187,0.555328,0.592744,0.223803,0.211522,0.647509,0.639474,0.811878,0.0401317,0.589018,0.0982178,0.870767,0.374119,0.313885,0.234041,0.126284,0.808027,0.702481,0.211893,0.932191,0.670601,0.924916,0.757982,0.491525,0.637859,0.300274,0.778223,0.913971,0.440142,0.774153,0.614485,0.697404,0.49372,0.479752,0.638709,0.431426,0.864834,0.715401,0.130572,0.864352,0.813953,0.525237,0.480206,0.434145,0.999649,0.780259,0.520877,0.0196571,0.0437021,0.781992,0.0841449,0.32713,0.689468,0.98332,0.308002,0.466431,0.151124,0.375253,0.111734,0.254362,0.189085,0.697488,0.763084,0.573341,0.481408,0.38926,0.607502,0.46231,0.881453,0.910098,0.0841737,0.502468,0.262028,0.453407,0.878634,0.183327,0.681928,0.290271,0.346506,0.689552,0.240737,0.316679,0.494148,0.311221,0.679615,0.252308,0.826284,0.452305,0.625588,0.285513,0.497103,0.909514,0.710275,0.537183,0.245588,0.456293,0.716207,0.65662,0.133652,0.168301,0.313234,0.690752,0.354539,0.346558,0.0192211,0.732499,0.990968,0.691241,0.0958711,0.793141,0.995587,0.460128,0.232358,0.282025,0.433217,0.245759,0.64375,0.284883,0.104009,0.589211,0.670761,0.958864,0.450181,0.977339,0.815729,0.64729,0.0410699,0.799749,0.444456,0.13928,0.231362,0.549555,0.210511,0.526111,0.361525,0.614966,0.520405,0.579442,0.0820744,0.766077,0.2025,0.318042,0.709532,0.520043,0.853287,0.469251,0.963092,0.722179,0.61182,0.882852,0.439328,0.0639023,0.700141,0.663397,0.795352,0.422022,0.231569,0.244788,0.13374,0.0591576,0.919725,0.300974,0.626767,0.597196,0.560881,0.311063,0.479598,0.302024,0.254556,0.174813,0.619353,0.213861,0.324166,0.203899,0.811644,0.184347,0.900691,0.710397,0.003905,0.00800431,0.940004,0.810934,0.0374761,0.521897,0.172445,0.334592,0.621475,0.383599,0.23429,0.831747,0.405693,0.131534,0.920067,0.0401539,0.234099,0.702345,0.506581,0.227895,0.229959,0.426574,0.596773,0.475993,0.435747,0.346153,0.889583,0.510278,0.307206,0.421428,0.302482,0.103303,0.63353,0.67832,0.0933558,0.951268,0.935558,0.831448,0.950286,0.270326,0.410137,0.520308,0.154473,0.172021,0.237362,0.398608,0.442458,0.876921,0.0897766,0.305512,0.290184,0.362714,0.747685,0.972122,0.350278,0.615035,0.742247,0.644053,0.792613,0.547131,0.687774,0.985322,0.878563,0.25335,0.153226,0.552395,0.431066,0.414489,0.0126722,0.803573,0.231152,0.561419,0.238144,0.448861,0.115529,0.638395,0.979394,0.254078,0.760983,0.268414,0.654291,0.274769,0.354906,0.488063,0.330543,0.763953,0.837112,0.292655,0.527303,0.755169,0.632708,0.0964125,0.100978,0.39092,0.237874,0.435313,0.913301,0.589096,0.430858,0.914763,0.810512,0.541219,0.462932,0.456704,0.759065,0.851282,0.53474,0.285898,0.213974,0.601024,0.050859,0.684725,0.109383,0.13434,0.29626,0.910191,0.501069,0.0561045,0.354857,0.845355,0.313399,0.192323,0.310495,0.354773,0.333726,0.346731,0.728736,0.178221,0.446594,0.230616,0.625633,0.0693692,0.174221,0.938291,0.664666,0.545318,0.263821,0.65908,0.00410229,0.841736,0.996483,0.291984,0.170473,0.680919,0.266565,0.662937,0.768207,0.529814,0.227838,0.0513277,0.0646179,0.731226,0.322389,0.372117,0.0261022,0.526118,0.0904392,0.262204,0.357017,0.143268,0.187808,0.882542,0.946044,0.518689,0.0650452,0.979146,0.955353,0.848582,0.0425882,0.348861,0.885413,0.337161,0.378666,0.973703,0.339835,0.492968,0.735685,0.748733,0.046575,0.830605,0.102977,0.683412,0.882854,0.375673,0.504127,0.00693387,0.238403,0.842534,0.273292,0.473984,0.951646,0.8827,0.285433,0.939829,0.113658,0.777273,0.322441,0.262649,0.526967,0.252828,0.717881,0.565343,0.417629,0.789132,0.441101,0.203333,0.655119,0.717491,0.736212,0.467574,0.109073,0.429567,0.691747,0.571713,0.245719,0.876932,0.174655,0.214335,0.364395,0.194974,0.0339329,0.597035,0.686251,0.997909,0.289476,0.444992,0.769383,0.0903136,0.0840634,0.0650081,0.211631,0.17175,0.928948,0.712334,0.29177,0.338028,0.534368,0.898989,0.200892,0.524007,0.251069,0.269927,0.718679,0.926277,0.174262,0.85176,0.966288,0.155568,0.83683,0.153861,0.403519,0.211113,0.766801,0.972983,0.391653,0.445057,0.0200829,0.512932,0.169829,0.727997,0.100544,0.287356,0.632763,0.977727,0.507243,0.30028,0.558495,0.407168,0.550949,0.0575636,0.712992,0.0194901,0.297191,0.361167,0.678023,0.281058,0.923452,0.369496,0.417019,0.122354,0.134547,0.551065,0.276003,0.662483,0.512856,0.782579,0.713569,0.32638,0.813331,0.904398,0.72177,0.955004,0.882226,0.544725,0.80814,0.545629,0.669275,0.689878,0.64607,0.94164,0.835655,0.0626908,0.717442,0.864257,0.369633,0.927951,0.826416,0.668924,0.209027,0.406362,0.32499,0.916592,0.922452,0.434967,0.729297,0.972396,0.45764,0.794767,0.419883,0.917584,0.32076,0.0914276,0.250082,0.744884,0.100076,0.621258,0.648319,0.780097,0.0914649,0.65559,0.441372,0.424101,0.366973,0.565238,0.903306,0.696966,0.756192,0.694577,0.0209569,0.409669,0.44482,0.471015,0.0156164,0.568394,0.692267,0.853465,0.550203,0.0965915,0.745866,0.624082,0.961332,0.24906,0.573864,0.0293509,0.526087,0.937249,0.641869,0.690528,0.788486,0.836705,0.908349,0.806664,0.0810244,0.797344,0.130772,0.425173,0.399825,0.985101,0.167293,0.328494,0.038001,0.620453,0.299499,0.383951,0.636334,0.628241,0.817881,0.855404,0.63667,0.867847,0.279125,0.975687,0.902816,0.500095,0.745854,0.950502,0.552712,0.364742,0.19182,0.541648,0.926681,0.811873,0.834659,0.4003,0.466494,0.5005,0.752636,0.490026,0.939268,0.601746,0.763578,0.740254,0.683675,0.286756,0.844406,0.685696,0.503188,0.988505,0.422985,0.626396,0.602203,|0.290972,0.212209,0.431304,0.0380334,0.0905014,0.687755,0.405064,0.374556,0.277481,0.534766,0.62107,0.845822,0.227672,0.476995,0.164038,0.369774,0.627275,0.842594,0.127953,0.936303,0.334974,0.505344,0.336927,0.305211,0.974966,0.640621,0.305363,0.210073,0.689415,0.565332,0.651859,0.547226,0.65705,0.161037,0.440336,0.000459969,0.40015,0.671013,0.271582,0.480619,0.581693,0.722201,0.85556,0.675084,0.679274,0.318681,0.389197,0.303558,0.159655,0.930951,0.740723,0.427562,0.395268,0.958152,0.120724,0.237947,0.145101,0.055217,0.779656,0.945155,0.58899,0.574955,0.640808,0.281449,0.900008,0.266662,0.156079,0.555074,0.918975,0.271507,0.994682,0.588697,0.253629,0.813804,0.0452065,0.746349,0.595622,0.879811,0.277131,0.550306,0.76812,0.52884,0.279603,0.489336,0.631268,0.28191,0.928764,0.262031,0.281775,0.362564,0.301221,0.330343,0.380063,0.894135,0.263036,0.92207,0.669622,0.169765,0.70684,0.958935,0.73143,0.148448,0.396499,0.385939,0.343025,0.806679,0.185547,0.411577,0.121603,0.13617,0.559411,0.114885,0.32429,0.0793977,0.933409,0.563751,0.717515,0.935891,0.547518,0.447022,0.860805,0.57551,0.192808,0.0962432,0.142433,0.378589,0.168464,0.158693,0.160876,0.560785,0.743038,0.534784,0.435469,0.805592,0.145497,0.211644,0.11037,0.301017,0.0232263,0.294002,0.891374,0.331349,0.64107,0.240504,0.438212,0.826471,0.875758,0.771708,0.552148,0.400583,0.375929,0.758391,0.150319,0.881459,0.586865,0.655484,0.536132,0.681059,0.44069,0.796017,0.924897,0.0450831,0.775459,0.707654,0.551453,0.12257,0.133806,0.183198,0.994218,0.778548,0.297525,0.153939,0.388031,0.135035,0.846861,0.418642,0.871753,0.855031,0.50543,0.569134,0.699548,0.724512,0.1125,0.208836,0.59819,0.289939,0.991625,0.463322,0.0315893,0.194395,0.821291,0.302799,0.0192719,0.0377598,0.0160685,0.957522,0.623117,0.893645,0.416963,0.872707,0.282972,0.812414,0.932356,0.143666,0.146047,0.427121,0.6512,0.310682,0.353202,0.0249567,0.257586,0.133717,0.872784,0.564004,0.0957,0.716413,0.260749,0.267082,0.671838,0.212107,0.958162,0.50077,0.439478,0.239292,0.0712123,0.317425,0.196342,0.870752,0.75134,0.454437,0.998723,0.783551,0.208234,0.381653,0.463166,0.961083,0.460097,0.693,0.434496,0.231381,0.303832,0.276536,0.791258,0.918992,0.98024,0.719885,0.576786,0.0709273,0.339064,0.0106106,0.745641,0.522463,0.541,0.101019,0.453109,0.373987,0.498931,0.153434,0.0675866,0.600183,0.166929,0.837766,0.102766,0.897187,0.317308,0.667696,0.0545016,0.337087,0.749693,0.383216,0.82981,0.0163302,0.90211,0.411397,0.106693,0.486491,0.448759,0.893297,0.619634,0.908806,0.284742,0.187621,0.718987,0.0161232,0.444828,0.772762,0.401508,0.500161,0.488609,0.212217,0.43692,0.79925,0.95351,0.280173,0.542521,0.390215,0.686387,0.39741,0.48039,0.301267,0.820153,0.715091,0.0984777,0.856757,0.663776,0.729525,0.111198,0.592066,0.467714,0.720509,0.618176,0.330402,0.627572,0.979607,0.903524,0.521655,0.74454,0.774229,0.127783,0.616373,0.10628,0.803259,0.593391,0.512082,0.671002,0.358196,0.0188264,0.698534,0.337433,0.511983,0.184669,0.393341,0.659841,0.981798,0.791843,0.345393,0.14995,0.453229,0.0834439,0.514486,0.0706609,0.184827,0.806294,0.76242,0.433069,0.821669,0.434338,0.535356,0.320019,0.744835,0.295688,0.254854,0.313646,0.537206,0.955759,0.881093,0.272404,0.947461,0.428512,0.981203,0.203677,0.0235891,0.0700806,0.226393,0.443695,0.445864,0.0963348,0.124137,0.843352,0.341398,0.0341399,0.685544,0.252268,0.0811076,0.701384,0.889536,0.313306,0.461899,0.41942,0.32075,0.348354,0.953654,0.72773,0.983119,0.719995,0.665208,0.429227,0.0986882,0.147938,0.183036,0.87455,0.169548,0.960154,0.163882,0.652812,0.934369,0.773172,0.157738,0.763783,0.42291,0.760248,0.640881,0.673236,0.189801,0.28072,0.347246,0.955612,0.827974,0.0688497,0.323976,0.597224,0.510298,0.374703,0.994816,0.870977,0.211885,0.0355745,0.446276,0.22555,0.721747,0.537642,0.606205,0.924811,0.901667,0.509122,0.152642,0.961931,0.410877,0.297764,0.898539,0.535196,0.722951,0.587014,0.480325,0.87527,0.849837,0.637178,0.52599,0.365249,0.5657,0.104681,0.798444,0.232797,0.252407,0.728458,0.705089,0.265888,0.60197,0.270385,0.324976,0.711682,0.44347,0.693537,0.702064,0.735649,0.935747,0.142298,0.54339,0.656863,0.544903,0.366772,0.210842,0.805863,0.153918,0.15547,0.973189,0.870548,0.181099,0.286588,0.447772,0.840991,0.143962,0.958401,0.608617,0.620123,0.625742,0.942037,0.0243226,0.442975,0.545277,0.621186,0.102147,0.590826,0.376088,0.77239,0.393131,0.161655,0.475509,0.326158,0.99965,0.444208,0.949778,0.66712,0.981142,0.139661,0.696229,0.262228,0.0290977,0.918242,0.131616,0.443897,0.642625,0.186414,0.748185,0.130786,0.373311,0.15993,0.31153,0.988689,0.892399,0.436206,0.350524,0.115247,0.734229,0.183521,0.819534,0.570863,0.509739,0.204277,0.00618398,0.91429,0.373708,0.482133,0.75109,0.913718,0.412442,0.619869,0.62629,0.936447,0.478353,0.368269,0.7342,0.343277,0.97641,0.658365,0.286207,0.44733,0.307779,0.637436,0.651524,0.280638,0.730785,0.92785,0.790482,0.418027,0.3483,0.990396,0.642598,0.104928,0.0187224,0.922841,0.896645,0.101862,0.834434,0.622131,0.701242,0.175897,0.673335,0.294265,0.928495,0.0249981,0.0509752,0.422505,0.209339,0.101252,0.312464,0.190811,0.0352153,0.236615,0.0650515,0.236945,0.122809,0.870196,0.651097,0.696454,0.037336,0.388635,0.64588,0.238472,0.491849,0.454602,0.13305,0.323885,0.427996,0.225558,0.890633,0.00507087,0.502998,0.582149,0.159991,0.930359,0.636694,0.648487,0.257377,0.334831,0.204935,0.677459,0.144423,0.75039,0.444268,0.25232,0.853176,0.143616,0.791383,0.380336,0.504311,0.382239,0.191939,0.136463,0.0899349,0.873394,0.678681,0.310362,0.240164,0.719594,0.815917,0.164889,0.00154805,0.626222,0.28466,0.948321,0.64849,0.193897,0.522014,0.403688,0.33744,0.482797,0.67275,0.749869,0.672169,0.61217,0.63156,0.373146,0.487679,0.492317,0.145546,0.418754,0.349409,0.575617,0.392124,0.640173,0.245095,0.972591,0.420232,0.602392,0.235859,0.802599,0.386038,0.507847,0.744277,0.0259354,0.91221,0.27249,0.539317,0.767659,0.853592,0.511967,0.181955,0.594041,0.981824,0.103021,0.925706,0.213677,0.034229,0.770579,0.916171,0.964551,0.370294,0.0255286,0.465466,0.747279,0.846753,0.176365,0.306355,0.768505,0.46582,0.177989,0.66792,0.277978,0.478699,0.767498,0.548772,0.695702,0.140304,0.944696,0.206269,0.103218,0.102459,0.249615,0.0187732,0.440748,0.371642,0.0102661,0.682173,0.615638,0.237393,0.365012,0.359001,0.868897,0.372844,0.325366,0.461318,0.061088,0.783881,0.569504,0.0169618,0.599462,0.210452,0.0283509,0.573868,0.791169,0.276209,0.83718,0.137303,0.0481136,0.197015,0.604658,0.816892,0.258459,0.588285,0.305084,0.0673077,0.29038,0.11004,0.0278359,0.299406,0.361691,0.106754,0.154159,0.67284,0.483733,0.155548,0.214778,0.539928,0.979374,0.429585,0.895409,0.481427,0.146825,0.931095,0.508068,0.697852,0.0447906,0.854567,0.734836,0.0648366,0.414135,0.93631,0.11681,0.852469,0.512915,0.899772,0.621054,0.214559,0.437912,0.57654,0.0746321,0.43384,0.790291,0.18781,0.878546,0.615801,0.290951,0.866694,0.284374,0.0977204,0.564245,0.72571,0.069046,0.863975,0.933453,0.629688,0.490809,0.737502,0.895117,0.585236,0.162072,0.704621,0.528248,0.105007,0.757808,0.0627395,0.785482,0.212296,0.929254,0.143758,0.751776,0.0767069,0.605281,0.386659,0.627878,0.802807,0.0272396,0.876896,0.62135,0.167453,0.578525,0.176708,0.924146,0.584842,0.260999,0.41058,0.956769,0.74528,0.84401,0.974297,0.291905,0.196233,0.916408,0.281147,0.516771,0.816256,0.229823,0.0198818,0.867351,0.207992,0.392451,0.311647,0.771446,0.849118,0.523704,0.715948,0.703604,0.210468,0.408453,0.861097,0.202784,0.524078,0.131816,0.592639,0.583169,0.667097,0.100609,0.36866,0.363043,0.781081,0.131554,0.302327,0.258942,0.0249504,0.351286,0.840742,0.689174,0.261004,0.617227,0.975258,0.610722,0.848325,0.47184,0.863144,0.0214635,0.355386,0.820579,0.0766104,0.827589,0.844454,0.105458,0.45145,0.617116,0.200831,0.224098,0.960468,0.423073,0.360117,0.187409,0.489695,0.726619,0.397956,0.180763,0.804176,0.046988,0.964663,0.153779,0.359791,0.383559,0.488072,0.839728,0.974752,0.971895,0.848205,0.387692,0.0879382,0.682761,0.92037,0.261837,0.575632,0.310601,0.67757,0.86996,0.265918,0.97114,0.0526208,0.141095,0.497201,0.100271,0.542078,0.907009,0.0359337,0.631818,0.518379,0.311786,0.754376,0.427073,0.229756,0.163897,0.276591,0.0702248,0.99623,0.856062,0.227531,0.465765,0.992373,0.628015,0.33854,0.125893,0.590852,0.644921,0.217638,0.321544,0.189072,0.150874,0.784277,0.217316,0.26559,0.564736,0.839544,0.84815,0.374506,0.1169,0.801839,0.744574,0.460414,0.0043093,0.983234,0.379456,0.139365,0.173708,0.813019,0.276043,0.876053,0.544858,0.283755,0.713048,0.591234,0.367795,0.0646625,0.586564,0.215528,0.220345,0.642732,0.685127,0.671195,0.722076,0.443523,0.884492,0.457708,0.671405,0.31523,0.681982,0.949427,0.977241,0.79497,0.099624,0.530888,0.667466,0.709107,0.903177,0.507783,0.691556,0.952373,0.747763,0.920509,0.889457,0.223637,0.901508,0.755458,0.437892,0.365578,0.569661,0.0814799,0.969959,0.624884,0.45061,0.682829,0.722004,0.653655,0.465115,0.975159,0.0902439,0.52421,0.563948,0.659268,0.0278641,0.777873,0.902073,0.738497,0.928221,0.0200366,0.201585,0.28864,|0.0840008,0.859729,0.221641,0.664577,0.923154,0.265675,0.906303,0.924351,0.571325,0.618931,0.174406,0.165613,0.309446,0.667337,0.559747,0.367767,0.273988,0.809567,0.183742,0.575077,0.968279,0.811987,0.534267,0.0589138,0.832468,0.93826,0.521551,0.98609,0.377457,0.56401,0.772802,0.590441,0.250439,0.542808,0.660312,0.876935,0.972448,0.327194,0.437828,0.856859,0.88423,0.790299,0.82762,0.0943497,0.497884,0.646672,0.959291,0.00855297,0.24216,0.170138,0.329777,0.164412,0.283037,0.458409,0.513166,0.656202,0.0963119,0.86443,0.548161,0.34735,0.260395,0.518565,0.155989,0.521483,0.800453,0.882046,0.179842,0.441653,0.617096,0.350437,0.659433,0.945871,0.141405,0.151834,0.967668,0.225539,0.521628,0.236606,0.338681,0.148256,0.401965,0.494079,0.275362,0.665656,0.825524,0.0636389,0.298086,0.836769,0.592735,0.738737,0.772007,0.348536,0.808671,0.476016,0.79317,0.356035,0.692896,0.641964,0.866387,0.28606,0.625442,0.499993,0.494495,0.506175,0.57741,0.894255,0.500748,0.819538,0.119028,0.18806,0.893621,0.613264,0.157915,0.222371,0.357052,0.931363,0.864691,0.383183,0.321468,0.208533,0.806555,0.847776,0.489873,0.703792,0.53727,0.26734,0.626575,0.343641,0.911141,0.59256,0.754213,0.940002,0.488616,0.690628,0.86512,0.251314,0.0882689,0.00653249,0.382816,0.347478,0.791987,0.76652,0.583073,0.539101,0.98436,0.925611,0.166298,0.163424,0.69533,0.349224,0.269198,0.736479,0.356465,0.634929,0.486308,0.698491,0.872978,0.668359,0.32424,0.921645,0.297281,0.766728,0.451316,0.906485,0.919087,0.885044,0.955615,0.682287,0.484116,0.642433,0.152798,0.481576,0.855358,0.611971,0.697006,0.18254,0.664744,0.565484,0.225259,0.413154,0.0853487,0.0490621,0.338052,0.973883,0.796974,0.117204,0.924758,0.763407,0.811907,0.506898,0.438876,0.672227,0.00080806,0.581857,0.685735,0.26886,0.115642,0.139118,0.141165,0.694207,0.872221,0.35967,0.736029,0.778639,0.246365,0.197178,0.324692,0.0664942,0.223777,0.97612,0.252281,0.631521,0.0821435,0.313178,0.444214,0.928335,0.536708,0.367808,0.18148,0.45711,0.946131,0.49349,0.0637665,0.186699,0.51626,0.248136,0.284783,0.599098,0.178236,0.245869,0.141799,0.373279,0.306405,0.0625221,0.962017,0.129045,0.307965,0.743131,0.295954,0.768932,0.779088,0.595121,0.0285285,0.473762,0.705429,0.438122,0.456699,0.44039,0.482372,0.939228,0.599371,0.194882,0.897342,0.552026,0.541691,0.526663,0.7968,0.758977,0.123068,0.7319,0.741078,0.0544037,0.523523,0.48284,0.0998467,0.981731,0.595896,0.0206391,0.734008,0.371302,0.879529,0.474495,0.938535,0.777041,0.984912,0.748091,0.49367,0.374755,0.550629,0.300966,0.679127,0.861831,0.833327,0.662909,0.323936,0.91621,0.726241,0.364342,0.379492,0.27822,0.446055,0.790297,0.0210155,0.176516,0.286268,0.648041,0.269366,0.896817,0.517764,0.144721,0.711443,0.707307,0.287065,0.459212,0.408061,0.805143,0.208493,0.792276,0.943708,0.859161,0.0807139,0.795362,0.354674,0.415994,0.593531,0.0118163,0.129282,0.680441,0.388982,0.378984,0.47448,0.648179,0.160243,0.46405,0.919356,0.165491,0.0535293,0.502554,0.589514,0.125587,0.0286156,0.688324,0.349684,0.642571,0.540211,0.58792,0.0116519,0.225762,0.695491,0.951523,0.127596,0.302304,0.276213,0.0670166,0.272713,0.980328,0.359749,0.6911,0.807293,0.245125,0.102865,0.0130832,0.702413,0.0188553,0.151786,0.677596,0.00708544,0.84234,0.511494,0.660116,0.0268989,0.127126,0.391249,0.186561,0.637366,0.554535,0.302373,0.221916,0.675398,0.451028,0.306058,0.641302,0.104552,0.504978,0.616719,0.836277,0.886133,0.169673,0.464063,0.783875,0.595689,0.415435,0.118759,0.341765,0.709729,0.684787,0.459575,0.0783897,0.983615,0.371531,0.690669,0.239408,0.606013,0.879434,0.3933,0.57637,0.330348,0.0463606,0.804962,0.167211,0.198006,0.0341601,0.819932,0.462275,0.518814,0.366108,0.249037,0.912863,0.758586,0.954014,0.796511,0.241598,0.625398,0.882355,0.315281,0.916113,0.514302,0.2414,0.27621,0.509694,0.626506,0.348595,0.187127,0.257881,0.385452,0.145406,0.0811649,0.888135,0.010553,0.607152,0.924017,0.902267,0.270836,0.841767,0.706488,0.170846,0.713766,0.414021,0.921096,0.460258,0.098402,0.194623,0.521741,0.816334,0.0712893,0.861282,0.75626,0.332054,0.362584,0.450017,0.251937,0.899867,0.0109536,0.239787,0.0730184,0.0747484,0.304899,0.529529,0.760568,0.51484,0.477951,0.705298,0.997275,0.708466,0.671043,0.482305,0.949813,0.237136,0.120926,0.702349,0.797909,0.326164,0.897344,0.94491,0.49505,0.170412,0.531813,0.0583162,0.442357,0.92951,0.243571,0.150614,0.298634,0.083832,0.940851,0.216258,0.261625,0.94699,0.101358,0.283861,0.153138,0.295165,0.386958,0.0634549,0.686762,0.506708,0.253112,0.930331,0.793552,0.924383,0.335761,0.533948,0.0525388,0.573304,0.576008,0.174431,0.516701,0.148466,0.236212,0.346535,0.221651,0.108795,0.566429,0.643382,0.0156894,0.979588,0.0188454,0.354857,0.0447185,0.795215,0.0664913,0.330161,0.450193,0.422647,0.881082,0.449121,0.889244,0.776736,0.917147,0.960967,0.714717,0.778716,0.335126,0.313059,0.591103,0.683826,0.294429,0.375329,0.204052,0.266359,0.885629,0.825276,0.622749,0.0849479,0.621636,0.70571,0.0222844,0.971754,0.628558,0.813399,0.739115,0.698883,0.718962,0.607028,0.488439,0.662251,0.878547,0.0959494,0.331106,0.236741,0.770386,0.0441466,0.0973836,0.871743,0.337549,0.746909,0.149318,0.750866,0.567362,0.731472,0.713547,0.0880456,0.768114,0.486973,0.348428,0.543457,0.076581,0.550732,0.934015,0.863701,0.00358236,0.19353,0.492504,0.45433,0.807684,0.950683,0.825985,0.727202,0.829157,0.374993,0.687362,0.304959,0.18597,0.902332,0.11763,0.391264,0.943551,0.0446201,0.165156,0.13354,0.614743,0.719564,0.0640739,0.600514,0.928158,0.698878,0.628271,0.392942,0.744947,0.000744581,0.959131,0.873229,0.0310096,0.26804,0.977781,0.423331,0.510505,0.793443,0.0534987,0.0129082,0.212746,0.0765585,0.0664095,0.279473,0.411045,0.621825,0.830018,0.937602,0.71359,0.254094,0.97381,0.417473,0.095894,0.22378,0.623185,0.031644,0.288996,0.903284,0.166927,0.420158,0.529738,0.0443025,0.941952,0.187709,0.286208,0.474203,0.430479,0.00925833,0.403659,0.62937,0.214373,0.361862,0.665321,0.672409,0.127537,0.562673,0.339514,0.488744,0.603528,0.22454,0.123624,0.695663,0.793555,0.444168,0.332276,0.457634,0.923145,0.667074,0.873753,0.256072,0.721771,0.65763,0.399556,0.651627,0.910742,0.140633,0.39736,0.706497,0.43379,0.0354195,0.668312,0.259733,0.346554,0.00395238,0.740264,0.285183,0.097869,0.454164,0.629113,0.51393,0.798048,0.607812,0.347389,0.905557,0.959951,0.899887,0.181992,0.286527,0.700451,0.578929,0.597589,0.0378343,0.955937,0.432165,0.520358,0.917726,0.360279,0.079822,0.213699,0.96471,0.560501,0.645744,0.983677,0.559735,0.367444,0.0178916,0.213725,0.188085,0.465855,0.0710544,0.157336,0.496893,0.11443,0.101932,0.432289,0.941031,0.972347,0.771352,0.452568,0.117366,0.0112956,0.661833,0.295963,0.0197747,0.127103,0.158276,0.487616,0.262119,0.745958,0.719922,0.489353,0.596995,0.884216,0.976848,0.9037,0.7211,0.695641,0.700358,0.35885,0.113241,0.667013,0.762208,0.995193,0.277271,0.15057,0.366637,0.889836,0.864569,0.252428,0.0228466,0.865847,0.584197,0.874278,0.932829,0.551434,0.247175,0.672372,0.0902674,0.596905,0.958259,0.300534,0.0599466,0.843415,0.872521,0.352671,0.367713,0.72465,0.0931872,0.185066,0.918035,0.190473,0.127805,0.524532,0.415148,0.800149,0.558721,0.161416,0.0859113,0.14942,0.428726,0.716325,0.334367,0.967235,0.682831,0.171401,0.984567,0.357521,0.756734,0.0554709,0.118359,0.55402,0.659943,0.262393,0.125273,0.626541,0.28907,0.369874,0.29022,0.729191,0.523795,0.297687,0.321916,0.894856,0.863955,0.380225,0.870094,0.559851,0.947404,0.472025,0.173285,0.625624,0.962548,0.751626,0.722159,0.2236,0.822007,0.0833528,0.920057,0.415604,0.969009,0.519333,0.189552,0.258093,0.170453,0.165211,0.718183,0.332194,0.595021,0.843329,0.977789,0.948475,0.316421,0.260742,0.330529,0.382556,0.557084,0.637393,0.608992,0.525909,0.0538188,0.24071,0.111269,0.894308,0.741516,0.31104,0.140296,0.172213,0.128452,0.117724,0.23897,0.599308,0.982371,0.388211,0.984098,0.975518,0.749407,0.337802,0.493103,0.10789,0.884763,0.859093,0.0469034,0.955383,0.73616,0.966569,0.467002,0.947722,0.313644,0.446497,0.831724,0.250893,0.120889,0.562302,0.0314757,0.997121,0.15643,0.997018,0.324906,0.365708,0.735603,0.503856,0.186184,0.737256,0.305048,0.366411,0.911813,0.157,0.310413,0.137399,0.777815,0.340275,0.965782,0.287882,0.0398071,0.819046,0.523949,0.157624,0.120347,0.674155,0.219643,0.770267,0.761892,0.809185,0.458608,0.0286984,0.854564,0.252743,0.0193413,0.0134789,0.804236,0.155405,0.478528,0.346932,0.959338,0.753556,0.370314,0.0541474,0.98327,0.345481,0.730579,0.221344,0.312651,0.739541,0.510415,0.381843,0.323437,0.819499,0.981836,0.689328,0.748755,0.963825,0.160154,0.801134,0.0787878,0.759452,0.516425,0.853464,0.501614,0.612459,0.841829,0.796183,0.992843,0.494687,0.738443,0.813,0.589332,0.680407,0.803341,0.397996,0.74817,0.588741,0.786721,0.462496,0.914541,0.647351,0.838352,0.672615,0.380986,0.202025,0.973895,0.372911,0.348117,0.794141,0.550063,0.600826,0.621721,0.173209,0.759762,0.452266,0.509139,0.704764,0.832193,0.238153,0.307091,0.629255,0.335432,0.305486,0.657329,0.204056,0.193216,0.615994,0.223849,0.215693,0.169717,0.186121,0.762881,0.502414,0.166367,0.925709,0.822084,|0.401781,0.80994,0.947418,0.345138,0.263212,0.455833,0.218383,0.102308,0.529281,0.283918,0.8768,0.203324,0.0155585,0.680794,0.867583,0.541789,0.187802,0.845566,0.990439,0.190018,0.131256,0.953495,0.653623,0.0584713,0.732909,0.691229,0.357675,0.111,0.167176,0.678266,0.625565,0.509136,0.236252,0.714595,0.483577,0.575376,0.911714,0.299829,0.167876,0.568213,0.487918,0.0543429,0.244696,0.91554,0.752366,0.800437,0.341121,0.52578,0.492657,0.039427,0.865264,0.405319,0.921777,0.179451,0.585971,0.658151,0.142844,0.522385,0.609983,0.933608,0.727326,0.641353,0.536816,0.792709,0.850978,0.685419,0.780822,0.0155044,0.864088,0.803308,0.351831,0.228976,0.376321,0.29431,0.348172,0.17412,0.61072,0.974595,0.819192,0.965402,0.834792,0.924943,0.089572,0.940394,0.0218733,0.991572,0.68509,0.78588,0.975705,0.573114,0.225793,0.70956,0.121701,0.732106,0.684713,0.0280154,0.365673,0.489244,0.901864,0.672697,0.710574,0.0224399,0.428307,0.244445,0.515586,0.479082,0.678412,0.358355,0.141949,0.454873,0.149646,0.96882,0.38795,0.81675,0.6533,0.644535,0.922051,0.596744,0.463513,0.504396,0.356893,0.651561,0.525713,0.847156,0.70162,0.228552,0.33738,0.653084,0.352033,0.328449,0.880419,0.820352,0.0473667,0.686755,0.134316,0.689899,0.0386449,0.62309,0.418083,0.614038,0.708187,0.799933,0.840839,0.28328,0.696253,0.685669,0.0678465,0.181146,0.427533,0.862347,0.579914,0.261327,0.760586,0.386955,0.0425994,0.236867,0.401615,0.0484212,0.912752,0.6258,0.607799,0.290735,0.664275,0.405777,0.781077,0.569162,0.527045,0.077123,0.972742,0.330532,0.905473,0.826932,0.290137,0.0247404,0.833945,0.996593,0.638888,0.907849,0.350508,0.580352,0.156071,0.487213,0.554573,0.642798,0.751897,0.164493,0.12401,0.280942,0.0185841,0.446952,0.713321,0.780325,0.409153,0.43825,0.212289,0.702852,0.788352,0.602339,0.778206,0.380102,0.561264,0.147821,0.655478,0.517451,0.111276,0.850624,0.344958,0.302908,0.35769,0.488507,0.52678,0.910359,0.348269,0.308363,0.143285,0.945176,0.33483,0.436746,0.545518,0.0386527,0.651341,0.945966,0.202014,0.990751,0.911585,0.639529,0.846024,0.688686,0.0634426,0.97953,0.620705,0.297221,0.650078,0.788536,0.471203,0.379377,0.0212549,0.934655,0.302752,0.580595,0.864421,0.0369105,0.495253,0.973893,0.600332,0.657165,0.731149,0.606764,0.374795,0.28164,0.966088,0.721659,0.786353,0.167927,0.0397167,0.220026,0.295602,0.878641,0.15005,0.199884,0.59324,0.441191,0.303803,0.474546,0.711713,0.111742,0.605859,0.86127,0.123262,0.922374,0.88516,0.0632799,0.560344,0.831066,0.229629,0.0667705,0.392792,0.454005,0.719325,0.929488,0.431172,0.923867,0.173508,0.298952,0.437276,0.900351,0.0186427,0.476611,0.778077,0.167442,0.637431,0.675899,0.315832,0.358582,0.941147,0.0190335,0.804083,0.265787,0.713838,0.374113,0.694388,0.31728,0.598539,0.541258,0.823833,0.344203,0.738462,0.399998,0.915032,0.609851,0.21725,0.395064,0.454148,0.599704,0.626947,0.251404,0.435304,0.905304,0.347961,0.65019,0.0418035,0.694831,0.120693,0.674069,0.0892631,0.327835,0.180433,0.393546,0.745485,0.572714,0.151006,0.445469,0.807183,0.835576,0.0116866,0.723143,0.623526,0.604471,0.568721,0.0563831,0.7289,0.892508,0.344857,0.107626,0.799999,0.2598,0.251072,0.896181,0.437095,0.914754,0.232861,0.267757,0.326261,0.226059,0.689398,0.749398,0.927196,0.589952,0.861277,0.344118,0.768645,0.472766,0.741243,0.76513,0.018214,0.718701,0.03172,0.581826,0.78195,0.168138,0.506791,0.113895,0.688536,0.764092,0.543814,0.432601,0.699147,0.639901,0.390637,0.77515,0.833092,0.0790996,0.660192,0.230614,0.5376,0.0450273,0.0767016,0.0592538,0.289956,0.84793,0.935004,0.510924,0.963343,0.43619,0.901263,0.615911,0.115799,0.677952,0.806524,0.879139,0.799266,0.261805,0.539012,0.808024,0.000941515,0.815785,0.769757,0.823879,0.344474,0.805892,0.552234,0.604767,0.200787,0.560186,0.233937,0.0880672,0.873675,0.788965,0.412056,0.0763411,0.50641,0.289497,0.559043,0.813606,0.203676,0.829649,0.469994,0.428467,0.0900136,0.265196,0.407848,0.496694,0.364658,0.0120428,0.962193,0.450336,0.792792,0.872086,0.981278,0.824568,0.414151,0.0632302,0.760745,0.931485,0.223088,0.0593662,0.943853,0.0370808,0.456891,0.862119,0.71387,0.917738,0.167788,0.765647,0.589048,0.476245,0.377562,0.243191,0.981363,0.775075,0.636071,0.24096,0.0447134,0.483865,0.0427528,0.261595,0.262523,0.418577,0.193315,0.338519,0.416706,0.83657,0.39738,0.815385,0.121276,0.889205,0.718505,0.500503,0.988317,0.540468,0.0291345,0.671236,0.599734,0.04827,0.317517,0.962588,0.215733,0.419522,0.814852,0.784282,0.639193,0.382534,0.0573279,0.269705,0.708978,0.918605,0.5426,0.637738,0.408522,0.70882,0.929708,0.916552,0.819757,0.719939,0.372218,0.0159856,0.94079,0.660639,0.128797,0.163548,0.147352,0.133206,0.804356,0.691899,0.809575,0.509141,0.14188,0.814588,0.965022,0.421045,0.484613,0.0162114,0.119661,0.13162,0.0551981,0.0268113,0.0763853,0.100853,0.126494,0.983429,0.0714741,0.0880504,0.391254,0.390205,0.874923,0.195609,0.497915,0.827941,0.923377,0.541004,0.730762,0.310075,0.320455,0.860425,0.63382,0.0343243,0.789715,0.468823,0.916986,0.186986,0.803125,0.11166,0.991891,0.344072,0.134188,0.934467,0.247465,0.296397,0.186569,0.825245,0.0562502,0.962995,0.730221,0.634708,0.64146,0.269948,0.875384,0.168634,0.31981,0.813937,0.613588,0.539062,0.341967,0.603372,0.23154,0.505425,0.878264,0.99389,0.64209,0.789361,0.653066,0.767651,0.81693,0.348071,0.052835,0.328507,0.906168,0.624165,0.482128,0.378678,0.169283,0.396515,0.105081,0.879937,0.156628,0.833145,0.179683,0.899469,0.0538255,0.734931,0.526306,0.841444,0.927276,0.327177,0.804429,0.945237,0.104246,0.901052,0.692849,0.57337,0.0393114,0.102265,0.447276,0.509115,0.565987,0.758764,0.31455,0.177088,0.115767,0.332907,0.542957,0.780482,0.0231036,0.666188,0.123093,0.359761,0.836323,0.0145577,0.285555,0.313109,0.894868,0.81414,0.870348,0.412172,0.733786,0.934427,0.362258,0.232284,0.684634,0.0984252,0.413762,0.344253,0.279629,0.137242,0.626929,0.130827,0.488777,0.60993,0.431096,0.82986,0.974167,0.0635538,0.161959,0.324297,0.205639,0.383632,0.453658,0.780083,0.923124,0.0838498,0.497862,0.112429,0.796186,0.761565,0.257652,0.010115,0.892744,0.420577,0.551887,0.917583,0.292848,0.561652,0.294103,0.232636,0.669787,0.796931,0.597012,0.0751717,0.177105,0.600416,0.612563,0.740629,0.505034,0.40183,0.435935,0.956479,0.133191,0.263185,0.0606314,0.153167,0.288457,0.197972,0.844576,0.3899,0.182058,0.337403,0.291908,0.862388,0.0202015,0.189042,0.626321,0.24226,0.910784,0.210434,0.444097,0.799401,0.108192,0.207097,0.844699,0.282601,0.96278,0.597948,0.8073,0.675419,0.400494,0.580262,0.81059,0.490712,0.293296,0.244674,0.337367,0.0533306,0.489682,0.0906376,0.798967,0.494621,0.833167,0.669661,0.0480717,0.284727,0.73526,0.582704,0.476959,0.668466,0.514178,0.773796,0.0782182,0.746692,0.250136,0.405618,0.155219,0.696096,0.325377,0.0728158,0.689397,0.218398,0.991067,0.359481,0.567535,0.682708,0.525967,0.960221,0.107397,0.753022,0.448119,0.415266,0.318339,0.437206,0.676778,0.49646,0.20604,0.158053,0.514412,0.281987,0.742308,0.821543,0.0579544,0.845257,0.946765,0.440371,0.923285,0.205435,0.926937,0.358572,0.192949,0.0430266,0.354835,0.671984,0.416454,0.296571,0.143703,0.0708643,0.96147,0.633665,0.901486,0.984212,0.768759,0.377889,0.371896,0.0349887,0.226583,0.978725,0.242777,0.329853,0.638075,0.427253,0.692851,0.870726,0.503906,0.458977,0.462961,0.715952,0.0333368,0.588754,0.180828,0.377072,0.884394,0.903282,0.780986,0.18153,0.198657,0.894416,0.890744,0.39232,0.805451,0.910897,0.549462,0.880557,0.527291,0.85245,0.222319,0.942425,0.838384,0.722725,0.114264,0.204533,0.0349775,0.176562,0.662351,0.282443,0.82189,0.803034,0.651787,0.699167,0.861071,0.107567,0.225493,0.453493,0.205682,0.194361,0.64504,0.494798,0.716978,0.666913,0.157913,0.570493,0.204599,0.949667,0.815901,0.785316,0.205754,0.842881,0.320344,0.176524,0.226351,0.967149,0.728233,0.226426,0.840779,0.0254841,0.427008,0.232322,0.940314,0.476185,0.461898,0.0235732,0.522319,0.355552,0.145764,0.565533,0.499612,0.250755,0.342172,0.836733,0.686298,0.920005,0.952861,0.299544,0.360627,0.779355,0.648576,0.23919,0.81412,0.891513,0.663096,0.228494,0.0351301,0.933209,0.674334,0.638298,0.0836236,0.398159,0.0120667,0.00900686,0.406816,0.799488,0.582051,0.5463,0.963771,0.896284,0.562303,0.0319353,0.588224,0.141035,0.158677,0.370857,0.312356,0.883048,0.801084,0.5009,0.426849,0.434456,0.525834,0.774426,0.6458,0.096679,0.486531,0.461084,0.683881,0.60947,0.570398,0.466276,0.978068,0.269223,0.63886,0.64438,0.0281119,0.486916,0.713191,0.288573,0.670287,0.724899,0.477591,0.886527,0.236142,0.10421,0.577695,0.433293,0.441489,0.564167,0.795639,0.777021,0.363978,0.925957,0.0278696,0.803837,0.784902,0.561025,0.11704,0.489838,0.555763,0.491072,0.701432,0.564051,0.434791,0.141363,0.518056,0.140324,0.947603,0.380174,0.56288,0.00247282,0.0892136,0.492081,0.705955,0.280858,0.553768,0.28857,0.268076,0.476526,0.51372,0.236665,0.538596,0.205386,0.659821,0.913374,0.283451,0.435711,0.946159,0.763262,0.326719,0.172254,0.139688,0.350482,0.217481,0.960771,0.317792,0.56375,0.31871,0.526678,0.751001,0.164968,0.17599,0.599522,0.753053,0.95057,0.0480617,0.882659,0.680387,0.797034,|0.266916,0.442591,0.512413,0.497814,0.229332,0.00264829,0.0905022,0.382087,0.810594,0.720077,0.943152,0.107692,0.990979,0.728955,0.357771,0.402021,0.270418,0.610897,0.490451,0.924656,0.542033,0.259362,0.0601282,0.337205,0.229754,0.605154,0.0550323,0.169452,0.109192,0.324177,0.471168,0.431706,0.631124,0.50679,0.681276,0.797176,0.176178,0.479653,0.104394,0.902692,0.648422,0.466284,0.742183,0.606624,0.38756,0.488051,0.961646,0.733613,0.17913,0.539,0.416511,0.160668,0.464719,0.991657,0.256862,0.00521332,0.0328988,0.591833,0.803576,0.0901957,0.779914,0.661095,0.0985581,0.29842,0.872751,0.467176,0.342043,0.67268,0.0573601,0.57958,0.414635,0.00422662,0.100108,0.783355,0.370115,0.484058,0.159885,0.346315,0.311156,0.736531,0.555942,0.158179,0.94523,0.197019,0.813922,0.797132,0.905525,0.483058,0.697529,0.273007,0.538738,0.0995062,0.511098,0.619022,0.296668,0.768104,0.481239,0.655056,0.162819,0.790486,0.705306,0.207812,0.120002,0.796014,0.713727,0.884658,0.767185,0.856633,0.547917,0.263314,0.960101,0.13289,0.441116,0.338679,0.047703,0.613291,0.653651,0.487293,0.486925,0.0511058,0.92396,0.661627,0.770421,0.120167,0.517952,0.0974615,0.9992,0.261678,0.440752,0.780803,0.994262,0.611286,0.615836,0.365487,0.331236,0.422996,0.534737,0.698596,0.781361,0.362774,0.416595,0.524258,0.218908,0.0364902,0.925045,0.921307,0.11372,0.457582,0.330001,0.76189,0.284159,0.93135,0.533198,0.873094,0.962433,0.65248,0.658348,0.634439,0.319882,0.846358,0.234758,0.340325,0.216844,0.706209,0.643945,0.165727,0.325806,0.365789,0.464867,0.498194,0.715133,0.521782,0.727841,0.0581034,0.651888,0.981705,0.159793,0.950458,0.685286,0.735869,0.0482934,0.977334,0.616885,0.286036,0.880663,0.0130473,0.878507,0.396281,0.56973,0.33177,0.369623,0.634256,0.360914,0.378908,0.220778,0.827718,0.425474,0.177554,0.633783,0.129438,0.760149,0.231374,0.634445,0.271789,0.84776,0.875153,0.187608,0.235566,0.790567,0.210472,0.763664,0.472398,0.16673,0.631262,0.0204842,0.690507,0.281603,0.644798,0.0255392,0.65033,0.812425,0.41697,0.211614,0.945344,0.0340886,0.531114,0.0314799,0.00813293,0.0770484,0.433725,0.558544,0.831379,0.729371,0.669819,0.139828,0.858908,0.42624,0.105534,0.54565,0.99221,0.337095,0.584569,0.151792,0.822904,0.882897,0.263503,0.788403,0.574108,0.593349,0.871084,0.0939535,0.570652,0.992212,0.10443,0.438216,0.324974,0.513299,0.151797,0.899408,0.102894,0.41633,0.788873,0.876828,0.338141,0.50322,0.820427,0.10119,0.754239,0.0500621,0.815058,0.833212,0.746924,0.605532,0.750401,0.938723,0.367703,0.91195,0.664177,0.584309,0.165012,0.362887,0.462611,0.290342,0.492881,0.330391,0.842565,0.0438173,0.46331,0.99219,0.853571,0.829839,0.421883,0.93827,0.186439,0.580104,0.736773,0.53338,0.021928,0.35167,0.305505,0.163404,0.238595,0.00125933,0.314231,0.901197,0.588935,0.470438,0.0340496,0.478067,0.66349,0.493105,0.602643,0.857583,0.874281,0.69414,0.927326,0.737662,0.311883,0.741448,0.188839,0.515024,0.31205,0.316106,0.499406,0.904264,0.977138,0.993692,0.354902,0.496205,0.240224,0.321053,0.999312,0.0839435,0.0175366,0.0102227,0.601627,0.384066,0.254979,0.242074,0.285488,0.228134,0.12854,0.289855,0.736239,0.158761,0.177657,0.0362781,0.519746,0.972415,0.592597,0.573559,0.956366,0.615637,0.651915,0.759263,0.673332,0.0483925,0.0873361,0.225989,0.219969,0.221167,0.616146,0.949855,0.618853,0.0568025,0.630618,0.200634,0.360529,0.871507,0.406217,0.467536,0.683219,0.635908,0.25146,0.468766,0.94929,0.965031,0.123377,0.892757,0.0180178,0.950697,0.848691,0.450397,0.515976,0.575795,0.459327,0.503136,0.614357,0.796129,0.0492361,0.858596,0.560785,0.560278,0.89577,0.810141,0.544675,0.953913,0.549127,0.366415,0.450502,0.685865,0.472303,0.294367,0.116669,0.08837,0.929958,0.596962,0.481409,0.553699,0.441486,0.280089,0.846108,0.606763,0.517853,0.638472,0.281683,0.45393,0.0822344,0.241028,0.682651,0.228007,0.584789,0.242744,0.229444,0.0994912,0.728536,0.666449,0.804439,0.375599,0.257819,0.0152016,0.231664,0.0623664,0.35644,0.354875,0.240275,0.414517,0.912763,0.867568,0.820874,0.778442,0.698544,0.505187,0.69543,0.186321,0.517012,0.484742,0.786401,0.855406,0.79704,0.626367,0.813053,0.998605,0.319255,0.709327,0.0734341,0.618644,0.537443,0.891649,0.490958,0.359066,0.590455,0.639463,0.715185,0.628076,0.0269154,0.34683,0.0270299,0.554131,0.732999,0.871439,0.993082,0.0898726,0.599752,0.445461,0.291009,0.955035,0.827304,0.591063,0.132805,0.799323,0.758423,0.49018,0.551618,0.671896,0.185765,0.683942,0.910882,0.0750489,0.519986,0.0530647,0.580514,0.430986,0.385216,0.470935,0.895554,0.0286716,0.922806,0.396456,0.809845,0.816316,0.319417,0.708093,0.538625,0.886672,0.896882,0.920902,0.160668,0.326782,0.594258,0.502846,0.887249,0.0696691,0.0444678,0.90251,0.504603,0.90725,0.808761,0.515197,0.995062,0.194976,0.216032,0.127233,0.702379,0.245972,0.75038,0.822819,0.308234,0.885375,0.401444,0.450651,0.206587,0.338759,0.00226766,0.552069,0.330048,0.346492,0.0732477,0.853168,0.196524,0.130932,0.888386,0.325353,0.464711,0.625519,0.433368,0.411314,0.912705,0.471301,0.662692,0.314964,0.461743,0.214738,0.838834,0.978985,0.712433,0.159902,0.332031,0.387043,0.395246,0.889673,0.221627,0.596182,0.864488,0.665057,0.148444,0.39507,0.55297,0.917234,0.761016,0.217166,0.0364231,0.0117344,0.858139,0.444176,0.76136,0.707789,0.699543,0.984131,0.990047,0.627507,0.157407,0.637693,0.426302,0.488351,0.532526,0.206535,0.202007,0.850606,0.978136,0.493805,0.800584,0.740834,0.191155,0.300346,0.644557,0.0719252,0.211954,0.266219,0.212095,0.0714645,0.632844,0.415312,0.00419551,0.345036,0.465606,0.964772,0.438296,0.241468,0.852567,0.580188,0.369085,0.127052,0.577742,0.435916,0.642141,0.787508,0.431499,0.748595,0.0830222,0.418615,0.245052,0.466558,0.138902,0.261949,0.930769,0.550628,0.702801,0.0868977,0.197663,0.417279,0.9497,0.952079,0.600395,0.0332149,0.537172,0.194932,0.167108,0.443902,0.65941,0.132614,0.132637,0.0731793,0.921413,0.595306,0.858564,0.373322,0.170864,0.886755,0.284148,0.782608,0.761759,0.399374,0.625595,0.24148,0.535333,0.91017,0.483019,0.541908,0.441965,0.425429,0.653935,0.516235,0.272959,0.269704,0.0900435,0.144612,0.145843,0.409022,0.396607,0.538267,0.296246,0.72258,0.344167,0.255619,0.224035,0.0630429,0.677807,0.488637,0.997999,0.660407,0.684761,0.14915,0.659759,0.283698,0.467588,0.744614,0.608077,0.581331,0.623083,0.558254,0.652026,0.976905,0.892232,0.462893,0.0717519,0.825928,0.960109,0.548357,0.471032,0.544578,0.854583,0.882005,0.704419,0.937843,0.075471,0.837966,0.147799,0.201626,0.361622,0.132912,0.203368,0.0567175,0.191855,0.140432,0.719173,0.892539,0.532783,0.830382,0.932178,0.71758,0.298762,0.167578,0.373788,0.943199,0.558787,0.667092,0.161079,0.114078,0.515449,0.161297,0.917306,0.661452,0.803475,0.131218,0.0469205,0.735423,0.527236,0.175187,0.907916,0.847593,0.122153,0.807844,0.957897,0.943998,0.544542,0.534588,0.0501762,0.323312,0.372928,0.558906,0.696692,0.961542,0.390754,0.926368,0.058383,0.59443,0.458452,0.711223,0.426496,0.0545837,0.413561,0.856081,0.306976,0.635681,0.753753,0.365788,0.287138,0.284082,0.759812,0.358908,0.620561,0.541926,0.669012,0.359334,0.539925,0.890881,0.182722,0.193283,0.892028,0.729923,0.177429,0.452006,0.702505,0.690516,0.199647,0.503608,0.745486,0.266335,0.829149,0.121487,0.418921,0.679646,0.805561,0.414976,0.531821,0.966135,0.189911,0.997376,0.232425,0.588156,0.635116,0.175465,0.931626,0.569741,0.542659,0.0935826,0.284927,0.531968,0.251011,0.927846,0.393462,0.928886,0.340612,0.870317,0.394316,0.803538,0.345368,0.760794,0.655142,0.0706079,0.247039,0.760068,0.832852,0.710341,0.401234,0.133903,0.225602,0.382335,0.792245,0.506395,0.847873,0.460022,0.150727,0.639039,0.772244,0.497427,0.730958,0.0569339,0.991574,0.690299,0.929874,0.735629,0.257557,0.779127,0.0821016,0.877265,0.931444,0.0808284,0.721937,0.167209,0.406855,0.108377,0.0563284,0.269608,0.233874,0.851419,0.638413,0.0887727,0.86971,0.733229,0.557606,0.366432,0.249185,0.297042,0.624708,0.644888,0.967401,0.500471,0.241585,0.272524,0.0716701,0.263708,0.803507,0.622006,0.926398,0.97858,0.216421,0.498714,0.00225043,0.604758,0.441645,0.22446,0.798508,0.261247,0.312678,0.203852,0.764195,0.43256,0.411213,0.663439,0.79817,0.300493,0.766462,0.479712,0.763701,0.76477,0.255664,0.847202,0.830153,0.699585,0.136133,0.240987,0.00583357,0.833832,0.663783,0.774955,0.565634,0.335075,0.855811,0.156065,0.295034,0.904705,0.602525,0.417017,0.101847,0.54539,0.624835,0.997465,0.334313,0.0968477,0.156844,0.141491,0.332268,0.662312,0.14845,0.474643,0.904676,0.784861,0.955128,0.953445,0.211476,0.277954,0.135221,0.0612981,0.261908,0.462562,0.453062,0.797958,0.628317,0.0528683,0.346092,0.183966,0.269915,0.837801,0.0685021,0.326766,0.439502,0.361354,0.655915,0.573475,0.0060941,0.143154,0.963664,0.683984,0.847432,0.64117,0.134971,0.694274,0.974531,0.510369,0.91217,0.346237,0.914029,0.171289,0.95907,0.0246765,0.353883,0.661247,0.806949,0.882463,0.499036,0.915312,0.670363,0.913478,0.37732,0.113696,0.746055,0.0402952,0.975539,0.32016,0.989313,0.862057,0.443864,0.291007,0.338154,0.526273,0.280007,0.525632,0.47329,0.393267,0.823792,0.976752,0.815105,0.240418,0.80291,0.197161,0.63693,0.281508,0.516742,|0.694938,0.127901,0.117047,0.396563,0.74364,0.177598,0.457617,0.942205,0.931794,0.274859,0.38329,0.911053,0.599887,0.684241,0.00602454,0.208328,0.00201559,0.507931,0.800199,0.274098,0.419758,0.249532,0.505157,0.97145,0.982824,0.181935,0.89894,0.862799,0.391892,0.704674,0.203976,0.0998337,0.856978,0.507497,0.559485,0.00896287,0.728398,0.990865,0.586942,0.206334,0.660396,0.692413,0.745244,0.7172,0.91774,0.458656,0.954077,0.0190131,0.870539,0.8524,0.854747,0.120126,0.695519,0.862778,0.681954,0.265314,0.272787,0.0723835,0.467735,0.434474,0.255271,0.933518,0.780617,0.0218036,0.710924,0.346284,0.595343,0.495788,0.86514,0.404412,0.0757927,0.304125,0.459951,0.697225,0.22384,0.653369,0.897227,0.0624344,0.637348,0.197363,0.280808,0.69344,0.0923014,0.0124967,0.813092,0.725866,0.54303,0.645101,0.829286,0.669346,0.518336,0.434192,0.506548,0.268069,0.0242912,0.307159,0.454209,0.827515,0.931478,0.780854,0.327247,0.364294,0.467556,0.641536,0.921674,0.271963,0.870987,0.620882,0.924573,0.678273,0.125667,0.293983,0.5681,0.869248,0.747117,0.415022,0.365107,0.767663,0.414137,0.396771,0.488833,0.607381,0.672878,0.746483,0.895272,0.430552,0.849434,0.658853,0.0441918,0.769673,0.91837,0.42438,0.366762,0.297312,0.0782489,0.108707,0.688736,0.813314,0.0842905,0.66846,0.178755,0.34809,0.412415,0.621706,0.365388,0.845612,0.618533,0.405113,0.969812,0.908582,0.55864,0.548841,0.267493,0.593429,0.479755,0.0168833,0.00841153,0.251401,0.61526,0.699994,0.876523,0.314982,0.896771,0.461796,0.850966,0.831289,0.579096,0.0283561,0.616177,0.993545,0.936573,0.847086,0.958445,0.533775,0.552719,0.28539,0.380399,0.179342,0.399748,0.171601,0.704558,0.616088,0.310621,0.860055,0.602641,0.601641,0.544706,0.796055,0.872344,0.741036,0.114384,0.260312,0.158231,0.185257,0.382144,0.837762,0.208157,0.254816,0.591082,0.462529,0.378867,0.205909,0.398298,0.439798,0.493325,0.821198,0.31831,0.221513,0.210784,0.425008,0.907663,0.506398,0.58639,0.769141,0.877832,0.538805,0.982102,0.878287,0.47284,0.211664,0.947615,0.579351,0.794864,0.813597,0.234212,0.672153,0.530383,0.532077,0.947436,0.797188,0.42676,0.806869,0.540995,0.490401,0.370604,0.434884,0.0035758,0.873491,0.704174,0.662944,0.226602,0.603915,0.717214,0.599475,0.843837,0.839463,0.247661,0.424082,0.717794,0.273912,0.293931,0.858925,0.974014,0.486012,0.125031,0.603145,0.120011,0.727909,0.0158399,0.857616,0.217476,0.215749,0.660854,0.411673,0.848182,0.324363,0.562945,0.513669,0.357515,0.375781,0.813515,0.721313,0.300338,0.873856,0.450494,0.627595,0.0492222,0.989607,0.832775,0.237098,0.83973,0.356003,0.168986,0.4568,0.737421,0.247078,0.617424,0.17623,0.126148,0.64439,0.270407,0.794667,0.812965,0.654968,0.517057,0.441019,0.855991,0.484277,0.152768,0.118956,0.731277,0.0455816,0.961074,0.507752,0.00286746,0.612762,0.64298,0.331827,0.0611595,0.299527,0.0185444,0.302206,0.41326,0.576422,0.677432,0.785744,0.590924,0.230222,0.421814,0.649533,0.582105,0.554434,0.818452,0.76284,0.98969,0.464802,0.225314,0.288881,0.362778,0.97343,0.827413,0.188517,0.70534,0.0898076,0.901202,0.917452,0.114004,0.176816,0.329305,0.964819,0.886118,0.915477,0.529854,0.206825,0.597056,0.158749,0.00667512,0.853478,0.479982,0.648337,0.401389,0.135077,0.264863,0.273206,0.657616,0.962127,0.913418,0.73981,0.900369,0.182317,0.905711,0.228019,0.892954,0.217662,0.305733,0.143483,0.0679072,0.978369,0.214218,0.115702,0.513781,0.583223,0.277505,0.362282,0.93619,0.0663396,0.583735,0.855177,0.937581,0.304525,0.953474,0.0182804,0.453835,0.815001,0.939003,0.94486,0.930042,0.0480624,0.612149,0.920853,0.956316,0.270634,0.0302512,0.990813,0.508473,0.42798,0.106254,0.0548031,0.809379,0.560638,0.814702,0.784806,0.958665,0.459834,0.445874,0.0954345,0.308909,0.611364,0.00775337,0.370679,0.784076,0.994436,0.67735,0.303233,0.257778,0.606969,0.846952,0.614995,0.118017,0.371443,0.331578,0.0698963,0.0205319,0.40463,0.636448,0.907926,0.808293,0.350929,0.889433,0.572228,0.164542,0.200498,0.205082,0.0356122,0.670768,0.0764499,0.571409,0.783713,0.218741,0.263941,0.329451,0.413033,0.76004,0.478404,0.870058,0.160976,0.591328,0.197473,0.948716,0.208824,0.3356,0.430901,0.202756,0.836529,0.755921,0.716562,0.777494,0.199178,0.967742,0.083134,0.612716,0.761868,0.0591471,0.512693,0.168519,0.213182,0.102308,0.0563918,0.167679,0.165476,0.217238,0.537103,0.437621,0.314249,0.844874,0.301424,0.374598,0.461757,0.234329,0.540547,0.781366,0.0186369,0.972909,0.701449,0.52301,0.256761,0.303639,0.598076,0.491916,0.477941,0.598736,0.490402,0.28899,0.976802,0.873553,0.914091,0.00120944,0.484775,0.346403,0.309421,0.399412,0.963779,0.306192,0.00774997,0.617275,0.405303,0.553897,0.324277,0.143278,0.567534,0.626324,0.130916,0.657659,0.461229,0.802499,0.0122336,0.0838758,0.300993,0.749878,0.0913736,0.150238,0.168064,0.414496,0.641722,0.0274284,0.771399,0.649225,0.367709,0.066152,0.735644,0.250654,0.564844,0.142641,0.647098,0.780741,0.989018,0.351743,0.0170055,0.938515,0.238338,0.478781,0.749212,0.190203,0.0588816,0.303715,0.0395774,0.23,0.644926,0.705885,0.0465482,0.0928375,0.353466,0.319678,0.51719,0.557485,0.936095,0.0152408,0.596049,0.895799,0.0119478,0.0543925,0.0504318,0.646189,0.493351,0.649213,0.222709,0.796223,0.771336,0.536619,0.570537,0.624871,0.410843,0.248581,0.161922,0.437114,0.5723,0.08441,0.43852,0.489642,0.13211,0.334295,0.355325,0.2859,0.689267,0.826404,0.0879278,0.725826,0.243951,0.556115,0.715146,0.301852,0.555488,0.440627,0.80422,0.491605,0.768809,0.0904131,0.359869,0.126882,0.761753,0.757248,0.619779,0.354236,0.486988,0.539599,0.129483,0.42626,0.901726,0.708324,0.598847,0.40225,0.647695,0.626912,0.968172,0.971104,0.27109,0.36539,0.340024,0.172015,0.733913,0.2635,0.223198,0.881646,0.202733,0.449326,0.0973397,0.584061,0.779149,0.289919,0.345445,0.0281273,0.245243,0.601501,0.914694,0.0250298,0.282707,0.0804473,0.671554,0.364549,0.581455,0.942475,0.330689,0.0158058,0.324266,0.759498,0.386258,0.852947,0.925777,0.101728,0.120445,0.703226,0.932962,0.438721,0.755448,0.61952,0.0991129,0.731836,0.441923,0.637829,0.737776,0.92173,0.35222,0.904809,0.45922,0.265892,0.766427,0.198655,0.126232,0.820598,0.300565,0.50188,0.475424,0.512432,0.440107,0.774842,0.639289,0.139526,0.565162,0.176575,0.123663,0.907844,0.283989,0.862042,0.291743,0.716952,0.153896,0.192384,0.511225,0.976004,0.437406,0.978744,0.704251,0.258296,0.319938,0.213274,0.13519,0.649219,0.270015,0.548252,0.777917,0.67698,0.191985,0.489139,0.343188,0.504512,0.15892,0.10569,0.527507,0.547384,0.311865,0.639621,0.731904,0.651501,0.933159,0.592288,0.0830406,0.53094,0.319884,0.971171,0.423947,0.931501,0.832883,0.143182,0.483792,0.804651,0.568571,0.985465,0.181618,0.705928,0.319092,0.263595,0.15406,0.397437,0.622662,0.304306,0.758853,0.91877,0.037099,0.999374,0.472375,0.243871,0.266468,0.873089,0.314045,0.491779,0.986601,0.202957,0.668396,0.905125,0.676209,0.559323,0.149046,0.162316,0.666577,0.467285,0.956753,0.310168,0.648881,0.0817724,0.648878,0.106414,0.44583,0.609681,0.477601,0.0452466,0.917511,0.914714,0.986535,0.317871,0.496544,0.698704,0.100198,0.430631,0.982914,0.684462,0.739384,0.403668,0.340656,0.690563,0.551008,0.271217,0.255421,0.405737,0.0507228,0.463427,0.796949,0.566138,0.889194,0.363231,0.631726,0.953226,0.954347,0.305769,0.0932866,0.74283,0.555868,0.682392,0.962118,0.532811,0.499667,0.334985,0.628953,0.221935,0.1231,0.692379,0.176263,0.451961,0.343479,0.464651,0.895977,0.851174,0.739104,0.831121,0.41946,0.854911,0.212461,0.422635,0.500321,0.325417,0.0584812,0.543122,0.814403,0.915646,0.623245,0.813997,0.28829,0.566771,0.162621,0.0477771,0.337529,0.489199,0.229463,0.0715815,0.0927047,0.0831007,0.0691599,0.411048,0.695683,0.749034,0.0649067,0.657013,0.759389,0.102895,0.172098,0.737028,0.399222,0.30037,0.225657,0.914999,0.962259,0.0565944,0.917248,0.797194,0.284128,0.869734,0.187039,0.624461,0.975047,0.0266308,0.147767,0.652008,0.959071,0.241923,0.0440245,0.630279,0.193876,0.7159,0.791995,0.881843,0.00185072,0.578686,0.708035,0.814457,0.0616041,0.0316301,0.736931,0.175111,0.389239,0.869998,0.801878,0.32474,0.368091,0.576468,0.374692,0.830514,0.288778,0.917814,0.385686,0.992225,0.776257,0.875857,0.509975,0.0580013,0.595084,0.884198,0.610517,0.521397,0.396259,0.563934,0.574834,0.59931,0.205445,0.459309,0.563998,0.125433,0.162482,0.133886,0.563636,0.843924,0.624876,0.110024,0.165556,0.685674,0.716524,0.0400431,0.078254,0.0498378,0.438132,0.182811,0.594444,0.917824,0.0804375,0.574602,0.338064,0.55359,0.382716,0.0676482,0.139371,0.00808078,0.595365,0.921428,0.602359,0.767826,0.180147,0.323891,0.28007,0.681239,0.194937,0.605988,0.506515,0.319989,0.0597247,0.992484,0.000485122,0.332375,0.480632,0.890702,0.0860648,0.893951,0.0604988,0.613097,0.532908,0.333198,0.275664,0.757685,0.701075,0.85031,0.210845,0.392109,0.947704,0.216667,0.000730217,0.463468,0.695062,0.289431,0.608753,0.110778,0.924083,0.665108,0.500178,0.598285,0.2885,0.466762,0.235436,0.40762,0.327232,0.527118,0.80548,0.902688,0.0669892,0.0297875,0.36922,0.0969527,0.173603,0.0381956,0.0668631,0.64005,0.883833,0.584789,0.252295,0.290944,0.470045,0.0904427,0.619074,0.886998,0.70512,0.706981,0.00827968,0.534677,0.629958,|0.486834,0.814091,0.63695,0.507261,0.58513,0.589421,0.323874,0.195325,0.986459,0.258853,0.752887,0.199477,0.0421323,0.681546,0.98709,0.303986,0.583219,0.431334,0.0312515,0.18859,0.140923,0.688212,0.288651,0.929532,0.353936,0.948908,0.444067,0.706495,0.0881819,0.757551,0.778571,0.553525,0.309643,0.342444,0.191963,0.180611,0.822102,0.532815,0.0191172,0.690386,0.389811,0.405827,0.15146,0.282963,0.934829,0.123278,0.988376,0.137041,0.945943,0.125316,0.429449,0.122359,0.597374,0.135766,0.5642,0.744293,0.388038,0.299537,0.426167,0.438006,0.458661,0.394236,0.969263,0.196898,0.473334,0.577808,0.416387,0.509692,0.989914,0.084435,0.232805,0.725561,0.640274,0.343288,0.862164,0.715516,0.244312,0.0631659,0.126437,0.0666822,0.69337,0.528453,0.728655,0.409329,0.466713,0.679197,0.548029,0.211785,0.252746,0.675358,0.0762982,0.0283723,0.958227,0.327192,0.671479,0.013094,0.978517,0.428569,0.250794,0.854558,0.969143,0.207353,0.353428,0.292525,0.434927,0.706646,0.837419,0.709539,0.730357,0.0562124,0.639574,0.28474,0.928948,0.840516,0.803123,0.551844,0.854966,0.801827,0.343548,0.889522,0.21402,0.594886,0.338198,0.0668406,0.920545,0.116503,0.393971,0.63019,0.155075,0.954325,0.838776,0.146629,0.910457,0.125775,0.308602,0.357286,0.000633538,0.259622,0.171737,0.144733,0.716029,0.263217,0.180591,0.655425,0.0498771,0.555731,0.987768,0.4314,0.761661,0.0378691,0.659171,0.0862857,0.422921,0.968178,0.958832,0.952911,0.838928,0.822971,0.0282265,0.988202,0.972494,0.0181585,0.41565,0.675364,0.790431,0.863934,0.787234,0.689308,0.715565,0.368694,0.522905,0.497656,0.896864,0.582179,0.645357,0.506716,0.793785,0.178614,0.0796287,0.255218,0.104258,0.515557,0.535509,0.345671,0.449499,0.0360245,0.536627,0.00684178,0.057691,0.0394289,0.139821,0.255946,0.432189,0.619513,0.0643363,0.509351,0.58065,0.901883,0.992243,0.806253,0.0567159,0.762249,0.324458,0.172203,0.329282,0.577618,0.550223,0.257628,0.381365,0.447527,0.819446,0.192913,0.111126,0.611627,0.00313413,0.397786,0.226807,0.0975736,0.564348,0.872445,0.61072,0.721832,0.0263522,0.768069,0.347321,0.572422,0.364463,0.649043,0.163124,0.225697,0.979493,0.638511,0.781385,0.872538,0.748617,0.624873,0.645477,0.304853,0.536591,0.151047,0.371001,0.261655,0.505028,0.714666,0.871976,0.632232,0.828487,0.466353,0.0333128,0.659674,0.455937,0.317087,0.993028,0.418716,0.77954,0.262538,0.066735,0.331018,0.244511,0.952903,0.361869,0.743019,0.117776,0.460483,0.880499,0.92172,0.393651,0.824292,0.381421,0.874171,0.500083,0.564018,0.989986,0.266454,0.304826,0.918031,0.61621,0.412226,0.670541,0.748651,0.0220426,0.618422,0.356779,0.69137,0.888165,0.71197,0.547339,0.635883,0.549109,0.854811,0.429354,0.751333,0.651554,0.820936,0.0407492,0.224522,0.0660972,0.378105,0.8864,0.101748,0.936572,0.647017,0.562048,0.142686,0.159716,0.811272,0.615944,0.875748,0.762028,0.539626,0.528487,0.131275,0.124276,0.838311,0.680237,0.120461,0.81798,0.560402,0.271516,0.243646,0.943922,0.536913,0.459065,0.104103,0.766728,0.903059,0.618375,0.543496,0.0532779,0.889309,0.698106,0.0964035,0.21088,0.239419,0.901166,0.893754,0.986731,0.11191,0.162271,0.299459,0.425957,0.421466,0.903048,0.299076,0.983833,0.620958,0.242323,0.919647,0.393995,0.932219,0.251091,0.140281,0.337689,0.776558,0.667726,0.533521,0.356549,0.968671,0.488145,0.385282,0.206908,0.602495,0.912586,0.134396,0.480366,0.376791,0.946563,0.037829,0.567142,0.556353,0.699431,0.720196,0.0636258,0.774478,0.864431,0.0626077,0.646108,0.6607,0.375834,0.770064,0.136978,0.0313014,0.184329,0.0555069,0.380969,0.417399,0.4702,0.202601,0.881862,0.818818,0.796725,0.084735,0.888348,0.600904,0.284611,0.129573,0.58238,0.622659,0.169938,0.378131,0.346142,0.860445,0.341857,0.86339,0.46945,0.295287,0.194214,0.407515,0.361212,0.0569551,0.817905,0.501568,0.113933,0.902881,0.99701,0.0964368,0.27579,0.152447,0.598091,0.30819,0.998969,0.61677,0.645716,0.731514,0.036104,0.876884,0.0899886,0.882272,0.741324,0.605155,0.304035,0.74816,0.898505,0.0100608,0.816637,0.0740489,0.0973851,0.214519,0.563007,0.521062,0.475783,0.598295,0.0542185,0.114165,0.380704,0.0234606,0.412749,0.127177,0.254726,0.12922,0.773292,0.189554,0.693981,0.353011,0.809852,0.428268,0.253898,0.205905,0.587396,0.416883,0.895227,0.413318,0.698321,0.723393,0.37615,0.564378,0.165512,0.969049,0.60816,0.744704,0.875625,0.30931,0.15008,0.563609,0.183366,0.517594,0.507155,0.167533,0.541908,0.129372,0.136263,0.527846,0.0745453,0.147258,0.979242,0.34589,0.408611,0.337653,0.952009,0.373873,0.568658,0.197976,0.78184,0.62297,0.578503,0.305415,0.493409,0.450363,0.0447219,0.154004,0.834737,0.696907,0.292476,0.605156,0.753345,0.042769,0.308384,0.949412,0.603005,0.646038,0.0181444,0.702762,0.233703,0.266384,0.523962,0.194571,0.342102,0.760325,0.498439,0.359336,0.773356,0.209687,0.964309,0.320802,0.640002,0.627037,0.950775,0.0836965,0.634424,0.664069,0.282275,0.0149298,0.790027,0.251393,0.0207987,0.509877,0.542701,0.787438,0.618585,0.820274,0.873231,0.68869,0.286001,0.106429,0.202805,0.723114,0.979955,0.30012,0.622047,0.801139,0.274468,0.215457,0.493735,0.510147,0.982404,0.314356,0.188947,0.72661,0.823566,0.0369478,0.136401,0.799095,0.657388,0.0955873,0.188222,0.0536774,0.132662,0.199844,0.00753784,0.240217,0.0639772,0.607669,0.577651,0.492343,0.23606,0.168816,0.513838,0.0489326,0.0823417,0.582438,0.415617,0.896625,0.181174,0.376055,0.735221,0.140695,0.771248,0.411056,0.75731,0.103385,0.58653,0.117457,0.019363,0.606366,0.560004,0.487786,0.678439,0.372806,0.309573,0.676468,0.546602,0.272873,0.669011,0.521642,0.554907,0.253365,0.192026,0.924903,0.874711,0.300336,0.75813,0.253362,0.558601,0.697645,0.909706,0.312863,0.376251,0.565806,0.365893,0.35219,0.012822,0.448935,0.396224,0.993326,0.901594,0.0272266,0.8818,0.864218,0.0342682,0.728579,0.285926,0.461857,0.926012,0.12737,0.177048,0.945826,0.115229,0.2808,0.350019,0.298065,0.484812,0.645528,0.392125,0.585624,0.971862,0.443457,0.192801,0.325763,0.0547922,0.349368,0.402419,0.382595,0.284802,0.965447,0.313999,0.242419,0.802454,0.650153,0.524169,0.343752,0.624096,0.860108,0.140172,0.416076,0.525545,0.270233,0.0198845,0.355302,0.620856,0.0985681,0.680828,0.515017,0.607126,0.600651,0.497576,0.360112,0.404992,0.862276,0.46131,0.581836,0.738242,0.893431,0.95776,0.81607,0.715195,0.122491,0.494131,0.0545997,0.899759,0.633259,0.660544,0.881935,0.20197,0.252315,0.452147,0.977906,0.0922822,0.352143,0.841293,0.748924,0.217706,0.00157797,0.602234,0.223856,0.0397924,0.704627,0.714828,0.609289,0.373911,0.426059,0.632975,0.24793,0.173983,0.947185,0.34265,0.476209,0.368735,0.935011,0.0880257,0.0426353,0.740431,0.536591,0.784189,0.394672,0.999618,0.663695,0.578939,0.533706,0.924605,0.483125,0.988046,0.313946,0.58015,0.617333,0.319349,0.232716,0.287427,0.151765,0.0451714,0.521496,0.324864,0.572873,0.543576,0.490451,0.381696,0.434357,0.0198939,0.282897,0.0632673,0.288492,0.877819,0.858171,0.419118,0.916278,0.587772,0.764672,0.15053,0.729772,0.659358,0.848899,0.526365,0.248573,0.903832,0.286331,0.606951,0.0195646,0.279467,0.293392,0.158937,0.500093,0.477701,0.430254,0.695958,0.710438,0.340973,0.767206,0.104452,0.151154,0.45936,0.034326,0.326182,0.232296,0.735265,0.89584,0.165007,0.622374,0.722987,0.807976,0.974825,0.261273,0.994637,0.819176,0.617204,0.997777,0.387795,0.0939782,0.273152,0.81522,0.408145,0.198697,0.234027,0.555541,0.889429,0.740289,0.534206,0.654896,0.538669,0.635617,0.407589,0.909257,0.215787,0.0788485,0.820761,0.290724,0.488047,0.978026,0.0783305,0.674275,0.484181,0.709204,0.875214,0.0697433,0.902508,0.0464855,0.821796,0.88834,0.362445,0.633645,0.00740921,0.00742412,0.710835,0.820189,0.883474,0.920449,0.0199898,0.502376,0.334039,0.111374,0.570658,0.981541,0.221571,0.325463,0.758611,0.945215,0.0611073,0.37452,0.389512,0.915361,0.953714,0.211384,0.0469955,0.609946,0.120168,0.493941,0.726479,0.447247,0.51278,0.902463,0.414201,0.558879,0.316776,0.91618,0.530625,0.971982,0.504612,0.277266,0.441611,0.371309,0.149438,0.976246,0.159436,0.167896,0.841293,0.530104,0.231004,0.611424,0.355626,0.0754983,0.699047,0.866248,0.12269,0.203589,0.0453894,0.760932,0.995371,0.0319449,0.136668,0.508196,0.739829,0.0703142,0.167333,0.827359,0.324318,0.875798,0.230893,0.230677,0.374155,0.562791,0.654161,0.283158,0.0769207,0.626089,0.477757,0.281495,0.546067,0.00332206,0.726983,0.261407,0.574769,0.529897,0.612801,0.0544132,0.0697817,0.642653,0.252816,0.125323,0.765783,0.663832,0.267016,0.94543,0.0480113,0.641635,0.795305,0.481872,0.113908,0.80324,0.70282,0.859243,0.0735064,0.464914,0.279032,0.842699,0.275207,0.296792,0.71886,0.622672,0.276022,0.0592018,0.907,0.405542,0.093145,0.945944,0.762148,0.78856,0.0675246,0.12383,0.443915,0.560275,0.0578121,0.647332,0.704471,0.326196,0.135628,0.4596,0.544806,0.303181,0.697482,0.316939,0.789328,0.25242,0.826194,0.0268123,0.5185,0.563301,0.630271,0.496451,0.508946,0.755236,0.305093,0.857546,0.126312,0.0292373,0.552119,0.657368,0.299082,0.186198,0.152313,0.788249,0.864533,0.769873,0.21859,0.285208,0.125587,0.022905,0.219953,0.444714,0.469619,0.00878811,0.196282,0.020929,0.289623,0.543308,0.340531,0.0166749,0.952139,0.225726,0.0789446,0.226699,0.608796,0.959231,|0.708245,0.553905,0.02244,0.76512,0.791693,0.703513,0.36856,0.559737,0.443487,0.132587,0.718581,0.772533,0.59065,0.0790548,0.482746,0.742601,0.513404,0.34087,0.776814,0.678087,0.790083,0.402177,0.619216,0.368752,0.0405278,0.923065,0.140467,0.927917,0.392263,0.400783,0.421234,0.609297,0.137473,0.325625,0.612738,0.34519,0.122849,0.332667,0.0780581,0.879345,0.480436,0.726977,0.386266,0.302901,0.789094,0.430111,0.686322,0.403213,0.471459,0.658212,0.755858,0.156911,0.462234,0.791692,0.94878,0.385373,0.490691,0.0645386,0.993259,0.244568,0.878746,0.778999,0.140665,0.498655,0.901684,0.762392,0.572691,0.834506,0.328414,0.909156,0.591089,0.765303,0.309283,0.83682,0.940491,0.294992,0.407376,0.890202,0.41912,0.625774,0.208536,0.982945,0.956487,0.290956,0.724542,0.818075,0.645676,0.891728,0.0551277,0.536151,0.569058,0.833075,0.0156081,0.940133,0.810873,0.870775,0.408741,0.354016,0.111595,0.0694293,0.710817,0.795904,0.265078,0.102583,0.22029,0.00293869,0.730012,0.111202,0.77622,0.0796026,0.681123,0.287381,0.592249,0.602377,0.549963,0.653795,0.75944,0.56211,0.298533,0.386961,0.808695,0.200878,0.965464,0.446953,0.136428,0.0204154,0.0806744,0.478403,0.815852,0.152684,0.582792,0.0473052,0.858628,0.102805,0.474506,0.742239,0.432709,0.180301,0.929576,0.105598,0.715709,0.898814,0.885511,0.895192,0.697017,0.980026,0.599882,0.563966,0.993826,0.408791,0.877443,0.335905,0.0211304,0.242861,0.569945,0.666394,0.21097,0.893281,0.29511,0.52382,0.0427729,0.609602,0.16721,0.874908,0.301304,0.345255,0.208683,0.599744,0.34183,0.845418,0.12819,0.360081,0.893097,0.525911,0.276106,0.897908,0.576446,0.650155,0.967789,0.721621,0.850356,0.291701,0.668376,0.194023,0.280059,0.461223,0.415823,0.669009,0.937707,0.783884,0.538701,0.214443,0.711573,0.0375572,0.477913,0.428467,0.280426,0.869954,0.564451,0.891115,0.562197,0.535354,0.857417,0.399081,0.855715,0.692195,0.711672,0.600616,0.855906,0.886728,0.640792,0.928342,0.830347,0.365284,0.647857,0.262583,0.584993,0.836544,0.186205,0.649067,0.812944,0.0200644,0.414914,0.252747,0.916054,0.216085,0.745345,0.91465,0.716011,0.638122,0.163941,0.229239,0.374078,0.916168,0.193191,0.117296,0.308862,0.702118,0.832753,0.556559,0.494835,0.987395,0.208525,0.0387204,0.898916,0.784843,0.370559,0.190649,0.145915,0.65632,0.999058,0.20329,0.154726,0.518937,0.842916,0.23903,0.384737,0.563597,0.328713,0.512791,0.349371,0.754211,0.497754,0.64861,0.690874,0.0215345,0.155255,0.166182,0.737188,0.0415249,0.700527,0.740308,0.970909,0.0676256,0.66936,0.358726,0.594506,0.201207,0.949705,0.522213,0.112851,0.275326,0.645287,0.106937,0.370026,0.614478,0.975866,0.825838,0.184938,0.16258,0.617176,0.486696,0.475075,0.255494,0.638174,0.821594,0.458535,0.150981,0.0820941,0.393423,0.494246,0.779061,0.705871,0.0760704,0.72222,0.722426,0.181794,0.551929,0.0581589,0.334083,0.10585,0.624089,0.0903847,0.813007,0.800094,0.860153,0.335039,0.638148,0.173046,0.755099,0.0280464,0.172866,0.909394,0.00574249,0.941774,0.941501,0.0288856,0.185142,0.868894,0.984665,0.254763,0.726592,0.416149,0.577849,0.468414,0.998477,0.876593,0.264282,0.658088,0.993563,0.404176,0.00756884,0.309264,0.439463,0.791952,0.538235,0.0434391,0.784931,0.102634,0.672063,0.552228,0.0857127,0.662047,0.0868927,0.861629,0.680444,0.312734,0.559593,0.109254,0.933224,0.31337,0.64544,0.0828577,0.23101,0.680168,0.0213432,0.524424,0.620654,0.791292,0.373953,0.765858,0.466983,0.340616,0.185218,0.0262094,0.324361,0.424502,0.872283,0.991631,0.0309562,0.357806,0.806622,0.126395,0.983028,0.252473,0.391814,0.163196,0.0108441,0.519499,0.99198,0.411518,0.174074,0.777726,0.114964,0.121554,0.550779,0.858044,0.745338,0.888828,0.35458,0.894046,0.286867,0.00252432,0.362547,0.632427,0.279576,0.0689752,0.559502,0.433235,0.277272,0.101635,0.263164,0.570646,0.479865,0.455374,0.295387,0.300012,0.0670546,0.662046,0.996667,0.609747,0.10207,0.137466,0.879073,0.698225,0.642634,0.979964,0.0725217,0.9486,0.293241,0.268328,0.195542,0.798357,0.495317,0.424893,0.529134,0.995317,0.552371,0.831714,0.549492,0.955796,0.850419,0.628688,0.0534334,0.639959,0.191661,0.428502,0.82868,0.701705,0.866431,0.592305,0.0108401,0.297064,0.323699,0.866309,0.165724,0.496018,0.0547581,0.507638,0.996377,0.700965,0.899461,0.088677,0.336035,0.754063,0.704903,0.401765,0.0561453,0.296337,0.177285,0.217858,0.491882,0.749904,0.185429,0.0382985,0.157134,0.444314,0.324882,0.402942,0.290087,0.412257,0.0356814,0.583131,0.347391,0.537612,0.788146,0.299092,0.771284,0.51502,0.0858514,0.552771,0.260208,0.280605,0.657734,0.507505,0.120161,0.939333,0.567126,0.530297,0.868743,0.985971,0.79069,0.994922,0.498827,0.907965,0.774664,0.508785,0.298461,0.236255,0.230821,0.834433,0.373264,0.32138,0.162808,0.447356,0.610906,0.573795,0.898329,0.619684,0.347095,0.852017,0.261891,0.964352,0.498273,0.870258,0.304192,0.291563,0.856452,0.114184,0.493523,0.12128,0.93966,0.720135,0.405194,0.694849,0.819697,0.591196,0.715334,0.083043,0.119883,0.430872,0.758556,0.617131,0.143908,0.965141,0.2326,0.719411,0.360485,0.187791,0.394001,0.271643,0.423143,0.062544,0.598741,0.696117,0.0191492,0.350501,0.917283,0.32514,0.113968,0.143187,0.308251,0.320573,0.564407,0.955933,0.738392,0.747125,0.843749,0.276625,0.817246,0.0858289,0.0522808,0.626682,0.640683,0.841624,0.792594,0.00649869,0.346804,0.636075,0.0085032,0.690076,0.360939,0.580442,0.0258727,0.681444,0.385909,0.497809,0.0587077,0.250501,0.0958934,0.386999,0.625467,0.824642,0.589648,0.0551077,0.965603,0.415923,0.264905,0.738188,0.179873,0.744412,0.933817,0.43699,0.701338,0.646491,0.469676,0.855526,0.450183,0.544274,0.197431,0.604738,0.581589,0.388128,0.517766,0.837535,0.905136,0.783849,0.495315,0.729643,0.622179,0.107436,0.692661,0.822025,0.844522,0.396338,0.911299,0.944216,0.335384,0.807479,0.0569915,0.339051,0.505266,0.999041,0.927514,0.925733,0.112104,0.954782,0.128799,0.25346,0.705873,0.149592,0.805727,0.467045,0.892839,0.0893661,0.924227,0.53508,0.562369,0.100735,0.069443,0.462229,0.479209,0.155801,0.00259531,0.234425,0.912743,0.356301,0.757515,0.160563,0.364745,0.0525646,0.925385,0.295605,0.639168,0.464613,0.778318,0.871289,0.712952,0.86964,0.686913,0.648919,0.601122,0.0742986,0.510809,0.895657,0.507232,0.957574,0.542463,0.347072,0.889436,0.0216779,0.37147,0.502485,0.335146,0.318342,0.0739714,0.943837,0.0361216,0.485406,0.740047,0.252421,0.597,0.364002,0.369481,0.237504,0.609746,0.221988,0.551719,0.243006,0.367294,0.0066011,0.697393,0.109626,0.946659,0.506515,0.0838016,0.506633,0.857222,0.608091,0.519079,0.666152,0.42761,0.42956,0.671093,0.0422802,0.581366,0.916536,0.330269,0.713107,0.750064,0.220639,0.465291,0.384423,0.842021,0.568885,0.689406,0.134723,0.364012,0.0908846,0.269181,0.438029,0.301844,0.03993,0.618481,0.251071,0.817203,0.0657338,0.556835,0.0537481,0.301816,0.956916,0.0693309,0.551138,0.797476,0.945994,0.124879,0.46729,0.71497,0.803351,0.100831,0.439521,0.543312,0.0693202,0.302198,0.0980489,0.515869,0.859191,0.118966,0.504278,0.644375,0.157013,0.610639,0.175676,0.631565,0.42947,0.233787,0.77275,0.988354,0.141676,0.377954,0.890694,0.0479834,0.0279428,0.518573,0.882866,0.391415,0.310137,0.322789,0.467058,0.914498,0.676853,0.740962,0.961319,0.42418,0.0335565,0.0102825,0.980288,0.738126,0.24131,0.406036,0.911307,0.287267,0.17822,0.666885,0.00816196,0.559582,0.0997056,0.265574,0.503803,0.109326,0.988372,0.952219,0.848577,0.329953,0.183609,0.298293,0.232465,0.939149,0.0861413,0.0592086,0.272133,0.915685,0.219277,0.406627,0.779598,0.786331,0.414536,0.630469,0.440182,0.785687,0.757847,0.782778,0.454848,0.696029,0.544692,0.127417,0.820801,0.137256,0.104702,0.400821,0.0488461,0.204034,0.792852,0.320654,0.15606,0.893752,0.800932,0.288132,0.353072,0.596955,0.748924,0.454576,0.876469,0.868491,0.883817,0.753684,0.518665,0.378895,0.248565,0.662139,0.72367,0.907466,0.317677,0.578285,0.179374,0.956816,0.315535,0.411266,0.59521,0.900637,0.606679,0.977252,0.0654601,0.551459,0.881928,0.293034,0.940531,0.340113,0.642937,0.336598,0.268103,0.809245,0.834755,0.715819,0.585263,0.44319,0.551895,0.362251,0.686308,0.827052,0.140186,0.383375,0.587938,0.435217,0.972799,0.261902,0.958343,0.103012,0.912129,0.0394964,0.174321,0.595141,0.0637301,0.149838,0.86187,0.26766,0.850919,0.269834,0.503557,0.936349,0.551961,0.494241,0.0944903,0.633669,0.874276,0.396584,0.542609,0.38718,0.958838,0.951883,0.918079,0.22339,0.143418,0.400053,0.433752,0.459917,0.765398,0.0711666,0.395959,0.580969,0.774017,0.875268,0.556664,0.994998,0.831838,0.405731,0.770402,0.963343,0.44204,0.153218,0.68481,0.762233,0.352833,0.187455,0.857872,0.253849,0.112554,0.713895,0.058491,0.082558,0.293876,0.849414,0.925599,0.311292,0.623152,0.562068,0.102587,0.388744,0.138529,0.498025,0.327381,0.643886,0.435833,0.544606,0.466655,0.375867,0.805737,0.0423912,0.199927,0.761056,0.0804457,0.156824,0.293336,0.388139,0.638814,0.865789,0.834147,0.0931914,0.892445,0.772769,0.514559,0.223859,0.967499,0.879671,0.123278,0.876164,0.968706,0.195351,0.72967,0.153263,0.0954258,0.855038,0.541428,0.835822,0.775008,0.81571,0.403726,0.936431,0.474797,0.0541373,0.830042,0.471497,0.44365,0.203068,0.153088,0.752434,0.0495637,0.457203,0.400913,0.694202,|0.208862,0.949182,0.164289,0.634738,0.206059,0.483185,0.986998,0.631141,0.421712,0.289553,0.14225,0.285305,0.444108,0.269643,0.218584,0.933847,0.776534,0.267242,0.437082,0.824509,0.589815,0.222401,0.0920562,0.235333,0.131819,0.808701,0.124567,0.959048,0.0991193,0.381085,0.922774,0.532749,0.362747,0.526205,0.972221,0.636297,0.185652,0.969152,0.684912,0.97869,0.624914,0.56752,0.602985,0.609369,0.669599,0.579758,0.741525,0.970079,0.931036,0.251015,0.406371,0.00681967,0.63483,0.850819,0.432734,0.445256,0.792019,0.20696,0.269144,0.286975,0.351319,0.758725,0.917568,0.266659,0.678063,0.357091,0.816778,0.786976,0.557966,0.455784,0.902459,0.775367,0.0833194,0.464006,0.786206,0.488225,0.211404,0.438982,0.272102,0.208686,0.155571,0.973918,0.0785914,0.192599,0.209431,0.227979,0.265601,0.165589,0.81765,0.753311,0.488762,0.24587,0.43516,0.166286,0.373971,0.933905,0.727008,0.907981,0.330965,0.969213,0.944421,0.365297,0.043601,0.32666,0.507127,0.351522,0.0933921,0.444133,0.530457,0.0913642,0.318373,0.331099,0.405728,0.652107,0.126029,0.000748456,0.960908,0.435506,0.0676618,0.162358,0.171075,0.455572,0.422627,0.648708,0.280491,0.816711,0.732353,0.347007,0.432508,0.714946,0.321557,0.364942,0.601207,0.184424,0.360757,0.71196,0.598075,0.498057,0.191331,0.61879,0.705681,0.533248,0.720006,0.646575,0.122593,0.496236,0.744643,0.962238,0.561723,0.865288,0.52106,0.789939,0.659868,0.812176,0.0970626,0.121053,0.718669,0.736011,0.834823,0.965146,0.0614047,0.345746,0.224137,0.311779,0.772411,0.80531,0.113973,0.52713,0.459222,0.0286582,0.322264,0.988977,0.679714,0.880988,0.370917,0.356906,0.417477,0.605475,0.247675,0.0103268,0.996769,0.0164674,0.970839,0.201473,0.485949,0.607001,0.48786,0.453613,0.178135,0.347946,0.0853581,0.853005,0.424269,0.141801,0.085589,0.605498,0.306712,0.409693,0.554453,0.188434,0.517044,0.517265,0.974589,0.793315,0.557825,0.200807,0.971309,0.311449,0.432751,0.252486,0.657429,0.832015,0.814026,0.892778,0.134171,0.732069,0.433435,0.438734,0.846878,0.679764,0.360991,0.611919,0.391205,0.733198,0.0291325,0.686558,0.266041,0.428421,0.0684444,0.45489,0.619323,0.0688028,0.608895,0.0333169,0.101095,0.609593,0.734345,0.0542479,0.0841039,0.49527,0.118324,0.60053,0.309853,0.256613,0.0850169,0.51814,0.885699,0.0146295,0.950461,0.558631,0.741777,0.372942,0.596122,0.479577,0.224295,0.310109,0.999734,0.680857,0.565823,0.753094,0.253971,0.172528,0.0445213,0.587671,0.00302237,0.617534,0.971755,0.344275,0.989896,0.84067,0.0751714,0.095758,0.0566451,0.630696,0.738442,0.342302,0.438926,0.486303,0.0934605,0.377036,0.50146,0.558025,0.683286,0.348129,0.149076,0.583033,0.813893,0.686641,0.612809,0.908086,0.0964358,0.254297,0.401866,0.657845,0.268035,0.481008,0.776894,0.649185,0.363631,0.411107,0.33942,0.823899,0.0295716,0.23075,0.118961,0.469703,0.535103,0.768949,0.178841,0.367442,0.421187,0.0327978,0.352799,0.243932,0.721336,0.441632,0.680145,0.952771,0.184077,0.108834,0.85047,0.112877,0.678999,0.52232,0.234216,0.388704,0.710687,0.373423,0.357307,0.399605,0.0377025,0.51363,0.811339,0.0923275,0.172651,0.55571,0.436451,0.562027,0.0664276,0.584831,0.25752,0.283996,0.976556,0.579053,0.670571,0.852974,0.00809669,0.446839,0.288997,0.117878,0.323055,0.810224,0.0977441,0.121604,0.913824,0.465501,0.302834,0.691583,0.570134,0.910495,0.83178,0.0253577,0.559706,0.692915,0.609067,0.140846,0.227935,0.664805,0.935755,0.619131,0.656988,0.966175,0.483035,0.244379,0.961954,0.791363,0.962286,0.306379,0.569625,0.0264589,0.45393,0.904493,0.199553,0.33393,0.917001,0.986256,0.289053,0.837679,0.396732,0.976925,0.0469074,0.449065,0.890656,0.208456,0.342536,0.71478,0.504125,0.735371,0.895651,0.0475549,0.235448,0.294452,0.234965,0.710658,0.0294673,0.948382,0.887615,0.221887,0.316505,0.588632,0.9633,0.2991,0.499502,0.952947,0.793034,0.371832,0.200262,0.754993,0.260966,0.260124,0.148807,0.00269967,0.847618,0.230406,0.63658,0.190303,0.456996,0.277714,0.394652,0.240804,0.644034,0.820563,0.947363,0.771176,0.485817,0.138367,0.248864,0.831771,0.870583,0.787313,0.164022,0.755827,0.882834,0.502228,0.472464,0.909651,0.747695,0.632869,0.70878,0.301298,0.0406075,0.349084,0.290269,0.378864,0.576583,0.812046,0.47228,0.620662,0.938594,0.134055,0.39048,0.678612,0.642157,0.390801,0.461588,0.730219,0.167068,0.20721,0.390798,0.475848,0.582798,0.467442,0.738983,0.783972,0.976849,0.63047,0.546001,0.934428,0.285483,0.0134538,0.971111,0.0673895,0.611949,0.568758,0.780525,0.853446,0.0477151,0.562885,0.400736,0.320209,0.865494,0.340503,0.843115,0.0841155,0.0325456,0.403792,0.163988,0.655341,0.161414,0.247472,0.459765,0.225251,0.489754,0.395511,0.769236,0.174061,0.705496,0.829143,0.447409,0.399012,0.295879,0.675189,0.65884,0.104329,0.875033,0.890063,0.603477,0.381493,0.125731,0.227512,0.391999,0.420911,0.561312,0.720831,0.123996,0.257228,0.0414153,0.288126,0.954262,0.807248,0.767751,0.659138,0.161546,0.350655,0.370499,0.250423,0.865156,0.510607,0.0100519,0.369697,0.7283,0.2984,0.737624,0.635354,0.488643,0.842351,0.102764,0.627968,0.847689,0.368348,0.747618,0.523434,0.507221,0.72856,0.500278,0.268183,0.183,0.310607,0.590699,0.494538,0.517947,0.727206,0.735363,0.440619,0.0776567,0.494148,0.307929,0.816288,0.678917,0.485361,0.566255,0.650906,0.942804,0.875077,0.399233,0.444259,0.88449,0.541504,0.5572,0.47082,0.514725,0.00511956,0.756875,0.208917,0.34275,0.679937,0.355094,0.827493,0.821955,0.789608,0.189241,0.0790626,0.55734,0.472822,0.199323,0.110458,0.00981063,0.564807,0.213217,0.664676,0.625203,0.49085,0.385862,0.00733036,0.834387,0.328054,0.193023,0.325874,0.63174,0.00114125,0.203026,0.976451,0.277376,0.109485,0.643128,0.738816,0.549896,0.821429,0.652578,0.618172,0.283601,0.209627,0.349626,0.237209,0.520687,0.0372098,0.677672,0.93977,0.362749,0.270498,0.5365,0.910392,0.825053,0.197036,0.250513,0.176331,0.444531,0.473091,0.979153,0.015397,0.671367,0.960459,0.292722,0.140951,0.676986,0.597024,0.856372,0.817226,0.455694,0.317019,0.980239,0.0659708,0.882582,0.191614,0.121515,0.554721,0.120592,0.519935,0.356352,0.466476,0.52594,0.610419,0.609502,0.200585,0.170549,0.991282,0.44774,0.532536,0.0308335,0.642993,0.170128,0.971876,0.164378,0.705718,0.993713,0.404794,0.123054,0.0190939,0.159873,0.119655,0.405133,0.0052352,0.120101,0.332669,0.0648528,0.51566,0.139068,0.104925,0.590722,0.612295,0.175314,0.744109,0.182294,0.865241,0.525442,0.553981,0.925844,0.514102,0.826811,0.373346,0.851985,0.163477,0.111683,0.172728,0.158611,0.775001,0.226508,0.543903,0.927979,0.214078,0.0653147,0.848658,0.569382,0.280858,0.166211,0.979466,0.778579,0.589037,0.576157,0.568891,0.303889,0.571398,0.914094,0.499932,0.442545,0.458172,0.266575,0.422496,0.235442,0.982377,0.0131195,0.212384,0.747474,0.182876,0.282182,0.135385,0.750567,0.841227,0.133427,0.160505,0.426156,0.836825,0.100764,0.633052,0.58734,0.498592,0.99382,0.0482094,0.32616,0.681429,0.601642,0.225268,0.927667,0.851025,0.506736,0.338596,0.800738,0.0454297,0.172422,0.256546,0.0205333,0.954589,0.871376,0.326524,0.0649148,0.558082,0.491092,0.628821,0.677021,0.00464034,0.247602,0.830109,0.651471,0.369262,0.886366,0.073351,0.661991,0.382337,0.467531,0.718639,0.392565,0.537698,0.0348554,0.42733,0.798965,0.574044,0.463181,0.340866,0.987485,0.896878,0.641112,0.0643743,0.819968,0.216173,0.671438,0.967342,0.730477,0.44252,0.632776,0.751451,0.849536,0.610453,0.194197,0.925706,0.522054,0.70971,0.726623,0.267523,0.0261309,0.0627758,0.796766,0.744137,0.0782018,0.125934,0.788824,0.448923,0.497238,0.586101,0.672494,0.450967,0.921904,0.860057,0.975061,0.420494,0.801239,0.381475,0.989985,0.971856,0.217873,0.307859,0.820103,0.991656,0.837104,0.0763837,0.983188,0.131792,0.41806,0.214224,0.730394,0.418293,0.715042,0.35374,0.468035,0.378971,0.138549,0.280833,0.209803,0.565064,0.385372,0.102196,0.821893,0.309235,0.0822895,0.610362,0.752524,0.673336,0.640149,0.920901,0.322367,0.720576,0.435406,0.901963,0.0856663,0.814885,0.296582,0.881927,0.945487,0.804113,0.789436,0.330581,0.43759,0.834227,0.820729,0.308036,0.928121,0.911456,0.527317,0.444751,0.00539392,0.3157,0.721999,0.408224,0.679675,0.599498,0.31074,0.297401,0.43352,0.488712,0.171871,0.0320384,0.757413,0.829792,0.0181575,0.557727,0.307804,0.559332,0.336353,0.902355,0.0490332,0.379506,0.0296631,0.0937598,0.041583,0.155376,0.425165,0.890356,0.720357,0.372451,0.983136,0.611122,0.369968,0.834617,0.263584,0.936022,0.843565,0.786726,0.851312,0.619714,0.154244,0.95385,0.943973,0.453625,0.5452,0.729949,0.157744,0.290364,0.197787,0.432586,0.970663,0.897624,0.537559,0.285046,0.483489,0.331413,0.101004,0.928732,0.630221,0.1656,0.987862,0.10035,0.407478,0.951563,0.735271,0.62375,0.00836653,0.880292,0.830789,0.695402,0.947358,0.51289,0.0907239,0.47709,0.0222409,0.345208,0.736453,0.56909,0.597268,0.598089,0.0457062,0.151188,0.278094,0.729902,0.796204,0.184284,0.637749,0.31386,0.52527,0.118482,0.0202082,0.215693,0.565471,0.274357,0.760013,0.728699,0.0508734,0.762908,0.919907,0.971554,0.401087,0.9384,0.144695,0.224332,0.47128,0.0488065,0.0757853,0.528545,0.91712,0.167514,0.873214,0.815887,0.581653,0.574469,0.172261,0.123181,0.651324,0.294469,0.685727,0.977213,0.46787,0.561452,|0.556385,0.203553,0.209395,0.72087,0.117903,0.577472,0.411837,0.10605,0.12941,0.412158,0.488018,0.727551,0.375032,0.528477,0.238702,0.159044,0.169768,0.253032,0.543556,0.555601,0.133124,0.314001,0.0413904,0.0282287,0.988798,0.696039,0.753239,0.80085,0.141681,0.604153,0.947834,0.479474,0.955524,0.707126,0.110677,0.29906,0.646564,0.925976,0.921771,0.694196,0.287175,0.991178,0.335423,0.736887,0.615184,0.756905,0.937471,0.299737,0.351105,0.0702768,0.522205,0.933457,0.289527,0.668136,0.687796,0.884038,0.0129669,0.313044,0.763947,0.890133,0.507903,0.543333,0.176485,0.292774,0.536558,0.0884387,0.798499,0.46105,0.971559,0.923545,0.24478,0.428975,0.934202,0.338772,0.140196,0.333122,0.365471,0.193111,0.684984,0.429919,0.645159,0.265931,0.0656162,0.899846,0.712338,0.186842,0.556284,0.64445,0.513538,0.581543,0.502368,0.870063,0.14414,0.934637,0.158938,0.826312,0.508144,0.850444,0.479411,0.114263,0.822615,0.66453,0.590061,0.148886,0.344051,0.467471,0.765894,0.988919,0.00802529,0.155361,0.853979,0.908708,0.860194,0.205084,0.249536,0.567607,0.750004,0.559874,0.775065,0.359063,0.443376,0.0686081,0.371744,0.597671,0.322345,0.157033,0.4615,0.49094,0.773514,0.58527,0.833924,0.350415,0.490429,0.139958,0.798827,0.406087,0.723323,0.118618,0.320387,0.242544,0.197558,0.835545,0.0998136,0.816649,0.462549,0.811253,0.503982,0.952119,0.00588626,0.0893403,0.984926,0.593486,0.927712,0.413297,0.725667,0.557085,0.281064,0.63521,0.5393,0.578281,0.251196,0.745285,0.361502,0.128992,0.0886377,0.382108,0.744013,0.409467,0.866048,0.870924,0.632537,0.0874427,0.466362,0.148433,0.136689,0.364076,0.108249,0.0951213,0.924158,0.4399,0.469953,0.781223,0.619093,0.935255,0.656986,0.597382,0.192389,0.264182,0.718922,0.322489,0.413136,0.49217,0.80668,0.263411,0.0118631,0.9307,0.671482,0.832923,0.30552,0.147083,0.719219,0.132694,0.620839,0.390167,0.611975,0.0937621,0.0750173,0.00627458,0.272165,0.551905,0.258762,0.407525,0.10895,0.756075,0.534145,0.14386,0.842215,0.448861,0.0350645,0.215966,0.984262,0.795209,0.357836,0.673608,0.300788,0.91782,0.203936,0.00249678,0.30769,0.475048,0.778827,0.613521,0.117759,0.0932835,0.531954,0.23451,0.732735,0.99395,0.189004,0.761374,0.875995,0.537708,0.820808,0.564667,0.510432,0.435142,0.8528,0.0658348,0.778115,0.528521,0.879797,0.725855,0.0311747,0.357287,0.108867,0.0903513,0.463266,0.424766,0.201446,0.434101,0.326231,0.651446,0.294661,0.817947,0.575978,0.884467,0.64038,0.383574,0.896736,0.755077,0.40602,0.800534,0.411723,0.875939,0.462402,0.507012,0.217936,0.17976,0.555863,0.671477,0.817682,0.526864,0.754122,0.166305,0.954634,0.796039,0.104032,0.766276,0.997333,0.0617884,0.963521,0.627606,0.498761,0.342383,0.541545,0.551864,0.57651,0.476818,0.285131,0.321483,0.212927,0.533827,0.80581,0.39887,0.90775,0.160754,0.183939,0.280506,0.126937,0.530577,0.541939,0.911391,0.959863,0.485808,0.722214,0.901177,0.761738,0.715475,0.673692,0.980022,0.579693,0.708626,0.821024,0.676625,0.572845,0.234203,0.95961,0.717535,0.937015,0.285205,0.0830415,0.885849,0.535871,0.859988,0.283205,0.932071,0.438594,0.546995,0.901724,0.654671,0.590299,0.954809,0.657772,0.565676,0.133806,0.60705,0.847267,0.025034,0.083178,0.526454,0.275355,0.188027,0.765608,0.347618,0.285537,0.143429,0.704863,0.784444,0.28297,0.221211,0.122233,0.177818,0.584915,0.702682,0.588208,0.89236,0.644233,0.230604,0.596304,0.0288552,0.759992,0.0594016,0.554932,0.285701,0.837481,0.919003,0.150677,0.11021,0.309081,0.984681,0.926231,0.694615,0.747286,0.338931,0.866352,0.317599,0.867937,0.104262,0.751639,0.304037,0.315711,0.418144,0.263312,0.790885,0.616984,0.954435,0.191587,0.153555,0.097037,0.836862,0.494107,0.118966,0.506822,0.829862,0.413015,0.794434,0.0283396,0.83302,0.0950472,0.0512075,0.864733,0.716822,0.452021,0.813832,0.0846636,0.918713,0.113057,0.183828,0.618001,0.187415,0.806498,0.310187,0.601894,0.596598,0.286385,0.7289,0.333911,0.229803,0.888845,0.14101,0.583073,0.698201,0.454791,0.0627381,0.898577,0.326644,0.631294,0.0679275,0.587383,0.819088,0.898429,0.269917,0.0478503,0.512303,0.503547,0.890986,0.437258,0.174211,0.0653892,0.0716978,0.0016734,0.177777,0.829453,0.461408,0.0661048,0.546501,0.815576,0.622374,0.842361,0.813286,0.728749,0.370004,0.8717,0.547277,0.30001,0.171554,0.201894,0.238865,0.271094,0.44493,0.413004,0.285245,0.366249,0.147695,0.137267,0.162679,0.200548,0.144086,0.586317,0.990889,0.832699,0.907687,0.732294,0.17874,0.679842,0.52206,0.0307807,0.988763,0.0619974,0.0893278,0.162634,0.897071,0.276456,0.248883,0.448621,0.813904,0.644077,0.587003,0.864036,0.890499,0.625597,0.36758,0.885958,0.505563,0.0618303,0.314902,0.223959,0.792074,0.0804017,0.0382811,0.386016,0.0693678,0.379771,0.885418,0.665256,0.128753,0.0289728,0.565259,0.50217,0.453608,0.300815,0.636232,0.0853713,0.496331,0.839699,0.0504701,0.349624,0.839357,0.482705,0.377612,0.546056,0.352659,0.752924,0.528319,0.741626,0.431161,0.669651,0.351406,0.905315,0.232134,0.0751107,0.256788,0.638786,0.859406,0.982905,0.13143,0.817804,0.14891,0.574025,0.330193,0.848164,0.222188,0.819978,0.133258,0.799962,0.334958,0.0781167,0.671449,0.942123,0.0848743,0.759434,0.483713,0.276546,0.62627,0.348775,0.529899,0.187808,0.545239,0.507399,0.96385,0.953072,0.692438,0.455945,0.072392,0.324113,0.873857,0.953729,0.185024,0.313593,0.657349,0.684536,0.756083,0.801416,0.892606,0.0347552,0.968594,0.83851,0.84786,0.119847,0.956985,0.207065,0.80594,0.470876,0.211202,0.818869,0.926422,0.426035,0.342325,0.466006,0.470413,0.626946,0.6386,0.481134,0.271952,0.342894,0.395042,0.348476,0.92009,0.033326,0.797272,0.760546,0.703053,0.580579,0.384903,0.0783272,0.703182,0.595577,0.920329,0.0333228,0.0163254,0.044538,0.251739,0.235039,0.767975,0.244591,0.338251,0.855375,0.669236,0.926739,0.498409,0.949632,0.713312,0.959867,0.00271267,0.262081,0.619574,0.970407,0.102033,0.505081,0.337345,0.374618,0.128257,0.0856922,0.704002,0.253048,0.241017,0.825896,0.238558,0.0329975,0.212025,0.458005,0.582524,0.647955,0.278317,0.860461,0.430557,0.804844,0.00643581,0.734745,0.514953,0.204964,0.378246,0.495333,0.543726,0.0491299,0.845818,0.335354,0.850942,0.930579,0.277594,0.95169,0.101466,0.852517,0.340292,0.369194,0.249855,0.767254,0.74515,0.194463,0.919867,0.34265,0.319328,0.709667,0.509804,0.0348079,0.830975,0.359555,0.603558,0.250925,0.137017,0.212916,0.457445,0.505122,0.374281,0.605828,0.82132,0.270678,0.144893,0.166217,0.951701,0.0818506,0.697327,0.871961,0.57385,0.447873,0.223697,0.75094,0.191248,0.885871,0.562004,0.557059,0.593886,0.41396,0.797547,0.713821,0.613675,0.585477,0.0622677,0.201655,0.654957,0.717926,0.249545,0.470811,0.368282,0.452916,0.611266,0.141603,0.702592,0.0152105,0.580776,0.43962,0.441316,0.020798,0.476975,0.835019,0.490458,0.364059,0.496873,0.315131,0.00310361,0.382518,0.264273,0.742704,0.616272,0.0217566,0.690417,0.129569,0.784385,0.914117,0.591818,0.356667,0.702879,0.394771,0.72205,0.41232,0.293883,0.90445,0.133492,0.0225183,0.713293,0.0765568,0.94278,0.37435,0.560992,0.900888,0.498954,0.407082,0.587357,0.436831,0.239382,0.651675,0.505079,0.163739,0.144721,0.7213,0.0319418,0.0718301,0.285905,0.613575,0.956279,0.140904,0.201815,0.805365,0.284035,0.0781588,0.428156,0.530017,0.566202,0.0181914,0.382903,0.864868,0.901061,0.204384,0.276612,0.216172,0.894666,0.147923,0.75727,0.831753,0.628541,0.722583,0.0209311,0.298946,0.186753,0.6476,0.191858,0.669704,0.271201,0.361705,0.244195,0.054659,0.990335,0.266958,0.738825,0.780814,0.778343,0.427868,0.640383,0.396982,0.507868,0.123176,0.68319,0.904053,0.943072,0.907322,0.185583,0.300379,0.874962,0.630902,0.894281,0.530685,0.94521,0.115212,0.281277,0.503371,0.828276,0.346013,0.595813,0.815252,0.941453,0.718802,0.395079,0.207588,0.418552,0.394839,0.434344,0.930105,0.776195,0.298916,0.80276,0.887619,0.645232,0.170276,0.00746596,0.232552,0.303249,0.267244,0.971763,0.419442,0.852919,0.438132,0.192816,0.239918,0.0296614,0.680439,0.192169,0.760117,0.564395,0.890651,0.92248,0.568753,0.711149,0.169555,0.598727,0.122536,0.624514,0.793957,0.722749,0.59949,0.490876,0.750103,0.39874,0.14896,0.883307,0.754892,0.536499,0.794297,0.679177,0.486736,0.786058,0.109332,0.97902,0.162346,0.354553,0.115106,0.772082,0.318252,0.0385244,0.932786,0.542731,0.819966,0.877918,0.68196,0.638319,0.268551,0.791125,0.562314,0.503381,0.434423,0.380849,0.60734,0.221717,0.702163,0.193602,0.862177,0.135974,0.276608,0.973567,0.115958,0.198957,0.913046,0.92723,0.0418479,0.427402,0.297716,0.077019,0.21113,0.22013,0.608894,0.185156,0.463964,0.0234171,0.590841,0.0702602,0.808503,0.60203,0.22664,0.391301,0.510269,0.614999,0.455005,0.401443,0.690436,0.660168,0.767487,0.760083,0.408924,0.326377,0.940296,0.158034,0.642771,0.921808,0.306401,0.377469,0.565458,0.552811,0.475542,0.359563,0.974546,0.758962,0.954119,0.795403,0.66381,0.452619,0.545991,0.177053,0.890338,0.377576,0.388983,0.857005,0.536569,0.341356,0.346471,0.058979,0.171903,0.650392,0.752384,0.275436,0.699101,0.207566,0.0258328,0.192676,0.496835,0.388324,0.682412,0.35401,0.446503,0.516838,0.178168,0.0150852,0.243937,0.767351,0.596691,0.273802,0.86573,0.327928,0.668153,0.163407,0.965266,0.113341,|0.99923,0.354606,0.670868,0.0136408,0.936639,0.217147,0.820513,0.145385,0.695798,0.00843984,0.591496,0.66076,0.797633,0.35868,0.56914,0.747468,0.649854,0.20699,0.119938,0.577873,0.208626,0.201183,0.945298,0.880534,0.333077,0.268924,0.14568,0.386795,0.088334,0.744516,0.479794,0.436643,0.698172,0.955579,0.171485,0.218913,0.80769,0.403889,0.61623,0.145602,0.650571,0.332244,0.256097,0.471154,0.419246,0.0794576,0.740052,0.114354,0.101518,0.168113,0.627711,0.508353,0.255191,0.977472,0.632492,0.656588,0.35839,0.448156,0.987385,0.90628,0.403036,0.778295,0.811148,0.565907,0.338045,0.885281,0.215895,0.467522,0.332885,0.873011,0.99211,0.0131754,0.433205,0.926672,0.831237,0.838603,0.987901,0.905397,0.726337,0.92961,0.0175337,0.115558,0.6621,0.921927,0.116274,0.221592,0.973241,0.424642,0.547934,0.339082,0.609706,0.31235,0.644071,0.605329,0.253256,0.624006,0.56222,0.700178,0.379235,0.420598,0.675568,0.807509,0.336689,0.875494,0.0533659,0.68027,0.240808,0.627578,0.876101,0.29932,0.765368,0.462419,0.698456,0.0624833,0.0886049,0.702955,0.350133,0.637028,0.56634,0.181852,0.362957,0.0889421,0.464732,0.976567,0.370154,0.321119,0.632665,0.769644,0.436702,0.356414,0.854362,0.581199,0.162796,0.316714,0.748322,0.452549,0.0537898,0.632089,0.343423,0.561342,0.498387,0.22144,0.534728,0.745835,0.599291,0.776938,0.444195,0.377231,0.106464,0.166931,0.0225054,0.0736153,0.588589,0.751984,0.175299,0.318453,0.336342,0.566755,0.507975,0.67318,0.442354,0.0185377,0.920827,0.581889,0.431098,0.213325,0.479038,0.185566,0.486759,0.764698,0.872143,0.63141,0.193748,0.834425,0.273467,0.11069,0.81787,0.814126,0.350635,0.721581,0.778875,0.0766728,0.703539,0.360503,0.735966,0.650415,0.494709,0.944868,0.563265,0.38848,0.593979,0.243044,0.140282,0.207772,0.21398,0.907986,0.722457,0.789342,0.610706,0.0953966,0.440629,0.894313,0.556506,0.364101,0.218713,0.832773,0.870714,0.293827,0.674577,0.396239,0.138913,0.683259,0.177805,0.630082,0.407731,0.468831,0.681449,0.111004,0.649611,0.7197,0.535312,0.41786,0.806826,0.00637513,0.414917,0.404185,0.0594671,0.974312,0.253852,0.337933,0.572005,0.858559,0.814917,0.473644,0.539792,0.0906201,0.527807,0.963016,0.575558,0.737061,0.292367,0.22805,0.199878,0.699061,0.23236,0.33886,0.140095,0.598282,0.492433,0.732638,0.213165,0.680341,0.643676,0.995753,0.0406888,0.59765,0.670415,0.377148,0.599697,0.936801,0.217352,0.157463,0.760584,0.623467,0.583286,0.672734,0.367719,0.0685328,0.817565,0.173602,0.578515,0.314026,0.59647,0.0564936,0.766405,0.796831,0.501352,0.355911,0.0196107,0.82483,0.444537,0.94893,0.889217,0.813667,0.414771,0.624518,0.731899,0.463617,0.112012,0.596811,0.984057,0.155916,0.535301,0.818687,0.308563,0.331546,0.844995,0.332815,0.399301,0.221207,0.52441,0.640071,0.398255,0.798201,0.982659,0.0826009,0.419439,0.558087,0.589057,0.775137,0.959137,0.880929,0.324139,0.355112,0.146653,0.374399,0.586022,0.432086,0.526772,0.959356,0.94849,0.0139154,0.585765,0.200278,0.142999,0.328788,0.56247,0.0120907,0.0526175,0.634812,0.336377,0.0456741,0.319306,0.185668,0.408913,0.23994,0.96248,0.927653,0.454411,0.236838,0.0275797,0.0725546,0.73323,0.90675,0.615631,0.869033,0.605069,0.0118443,0.406677,0.548464,0.70617,0.083883,0.79535,0.475868,0.261275,0.290111,0.512887,0.245361,0.417168,0.0439252,0.485885,0.585823,0.637593,0.499355,0.309257,0.42754,0.0278264,0.186468,0.311174,0.991057,0.0487443,0.490209,0.681977,0.457948,0.722367,0.288108,0.966875,0.0225355,0.27688,0.212581,0.754666,0.77712,0.750397,0.692553,0.450589,0.16662,0.691293,0.90946,0.725313,0.387738,0.591502,0.0183549,0.6371,0.376203,0.348041,0.605955,0.419154,0.388194,0.508581,0.117058,0.191924,0.392988,0.717124,0.560277,0.0333872,0.3475,0.811074,0.00634116,0.744018,0.335297,0.667429,0.449542,0.745372,0.192369,0.4081,0.213259,0.625634,0.772415,0.0241396,0.313013,0.14354,0.521641,0.50358,0.939648,0.289285,0.609994,0.434349,0.530006,0.382727,0.171884,0.298864,0.649742,0.897659,0.88616,0.89826,0.157126,0.595844,0.763989,0.212387,0.892493,0.569086,0.927081,0.82516,0.309028,0.811338,0.483437,0.63396,0.424442,0.343092,0.356468,0.244736,0.336467,0.193356,0.0475961,0.399724,0.0596345,0.816086,0.854982,0.657336,0.174303,0.13986,0.203387,0.0920966,0.807929,0.646625,0.0229822,0.000801206,0.849115,0.88258,0.938308,0.211096,0.00632882,0.093967,0.683611,0.0217649,0.186522,0.457296,0.152279,0.296352,0.463539,0.951681,0.316776,0.1468,0.557968,0.943332,0.701666,0.490498,0.937288,0.725158,0.051278,0.57138,0.717618,0.643381,0.913919,0.0241101,0.0801468,0.537142,0.611359,0.828492,0.135703,0.438359,0.0415427,0.185566,0.801351,0.330595,0.043377,0.72698,0.554812,0.948712,0.551382,0.7717,0.417187,0.846513,0.374988,0.678881,0.538279,0.366925,0.176427,0.935259,0.306917,0.315701,0.915553,0.132062,0.933517,0.940361,0.315181,0.167737,0.213607,0.424766,0.685836,0.0269305,0.865457,0.429387,0.390047,0.294701,0.904837,0.00210261,0.373391,0.256361,0.821318,0.634378,0.253585,0.979187,0.143637,0.660601,0.148267,0.665504,0.438169,0.0952916,0.630067,0.866777,0.579642,0.0491916,0.89628,0.823055,0.345934,0.248911,0.740398,0.510826,0.787832,0.862648,0.892032,0.447396,0.793832,0.841019,0.406838,0.105093,0.209391,0.797464,0.965174,0.440592,0.51007,0.301791,0.484965,0.577018,0.912628,0.487704,0.721336,0.248708,0.893752,0.982571,0.757952,0.785747,0.376019,0.664124,0.555815,0.582435,0.609791,0.592896,0.396114,0.579409,0.214327,0.159774,0.766532,0.107118,0.208865,0.801345,0.192573,0.935456,0.12891,0.694849,0.285639,0.938616,0.171067,0.671725,0.872423,0.763849,0.0153825,0.0461354,0.542139,0.212431,0.16382,0.824939,0.60363,0.976707,0.425162,0.681716,0.766323,0.175163,0.365836,0.549665,0.538895,0.502014,0.780751,0.0779963,0.665592,0.863097,0.404835,0.99187,0.189535,0.144887,0.603106,0.324654,0.144085,0.0290262,0.798529,0.312566,0.883571,0.904401,0.423424,0.074429,0.163571,0.38858,0.975465,0.720496,0.707325,0.854617,0.343916,0.597543,0.33926,0.929683,0.526478,0.938224,0.294965,0.994412,0.307273,0.698917,0.0452569,0.394601,0.617564,0.0933058,0.525537,0.255333,0.585558,0.918925,0.779432,0.706917,0.847203,0.25393,0.0654244,0.875381,0.136465,0.713641,0.197239,0.495411,0.890819,0.600655,0.416753,0.0224808,0.749838,0.510741,0.529128,0.998934,0.401491,0.0841795,0.935525,0.161289,0.0307492,0.387214,0.023658,0.982126,0.645439,0.373663,0.938077,0.13472,0.00772524,0.73396,0.604292,0.594044,0.0238675,0.465871,0.922382,0.72922,0.74911,0.209697,0.714073,0.231515,0.170692,0.792759,0.911107,0.953553,0.278196,0.260637,0.370618,0.70923,0.207049,0.558824,0.117242,0.973007,0.16114,0.184904,0.636659,0.0403671,0.910878,0.710377,0.333255,0.764443,0.563416,0.731274,0.342951,0.924257,0.954738,0.314094,0.437527,0.408855,0.778786,0.733464,0.423058,0.829171,0.157516,0.713972,0.384807,0.733397,0.599427,0.145567,0.914537,0.371519,0.610712,0.931916,0.240449,0.559266,0.252623,0.670362,0.668417,0.628126,0.591843,0.185608,0.70143,0.271415,0.956286,0.681474,0.482695,0.802329,0.143908,0.265873,0.84094,0.0342931,0.0928105,0.0760315,0.656258,0.451533,0.466307,0.240483,0.260866,0.314566,0.197034,0.479973,0.425491,0.502124,0.397653,0.149389,0.305527,0.0988814,0.140726,0.75793,0.574177,0.633291,0.811564,0.102481,0.165875,0.175984,0.482743,0.486168,0.354996,0.60567,0.170883,0.702566,0.141655,0.420005,0.898719,0.277957,0.351068,0.78613,0.444673,0.684097,0.165717,0.112645,0.878915,0.480308,0.528101,0.0295788,0.793859,0.359061,0.467573,0.878134,0.372436,0.33924,0.0998134,0.209104,0.235266,0.761844,0.286962,0.15748,0.394102,0.892902,0.702192,0.378494,0.780772,0.734512,0.742485,0.17696,0.139838,0.948966,0.367787,0.627146,0.0586025,0.482837,0.884637,0.378008,0.272645,0.46864,0.64296,0.1132,0.328403,0.942473,0.674562,0.288135,0.499553,0.894766,0.397878,0.570117,0.109921,0.363557,0.522952,0.785138,0.35487,0.341428,0.709113,0.0515002,0.156389,0.812233,0.294856,0.776373,0.984493,0.716966,0.807896,0.172588,0.454931,0.897625,0.727443,0.756152,0.939712,0.498505,0.548995,0.244723,0.304041,0.583585,0.0856705,0.678224,0.0642825,0.331398,0.515809,0.305975,0.626844,0.215804,0.373081,0.516754,0.819301,0.754922,0.264498,0.0669027,0.654947,0.833002,0.984253,0.00037992,0.682219,0.34018,0.515301,0.00834614,0.135586,0.905433,0.294095,0.547664,0.267445,0.90379,0.849706,0.165868,0.0114588,0.346892,0.176389,0.168629,0.762006,0.436458,0.416878,0.0510536,0.101942,0.174051,0.0835895,0.756079,0.204388,0.635851,0.437044,0.206078,0.905979,0.697162,0.562245,0.51398,0.0947651,0.416349,0.642927,0.628803,0.255097,0.461231,0.591203,0.472751,0.161949,0.491781,0.0710778,0.357726,0.824132,0.126351,0.106102,0.164218,0.759999,0.25364,0.750323,0.966809,0.550376,0.766561,0.0359019,0.877988,0.989204,0.069068,0.355864,0.856983,0.0312089,0.84681,0.998075,0.749828,0.384537,0.955475,0.263648,0.61916,0.864026,0.960285,0.394292,0.626179,0.403234,0.759603,0.73179,0.902255,0.371403,0.127668,0.909269,0.890991,0.638855,0.641859,0.806268,0.647877,0.236432,0.145203,0.462251,0.0583133,0.475836,0.597629,0.700364,0.290571,0.242972,0.681778,0.32463,0.977392,0.60369,0.815071,0.714006,0.0608236,0.626159,0.285625,0.14786,0.229676,0.531493,|0.303128,0.852008,0.817546,0.246331,0.539649,0.000649571,0.37374,0.203386,0.701076,0.0582215,0.566888,0.751974,0.937364,0.900655,0.0121865,0.896451,0.0262675,0.762763,0.353357,0.700357,0.227719,0.336469,0.280188,0.467301,0.400455,0.477771,0.16126,0.379658,0.296548,0.0560298,0.483229,0.433141,0.650069,0.028883,0.0100365,0.317543,0.98253,0.701161,0.546872,0.462106,0.729888,0.325284,0.493959,0.720942,0.0672623,0.243993,0.11144,0.475342,0.788216,0.748009,0.254709,0.711937,0.731441,0.999578,0.935797,0.441872,0.826446,0.827083,0.731658,0.205728,0.532573,0.730519,0.649257,0.890121,0.307794,0.857469,0.959679,0.707489,0.22937,0.923785,0.156085,0.300221,0.484223,0.63401,0.0167148,0.228404,0.766824,0.688281,0.959602,0.698475,0.843998,0.47955,0.466956,0.232883,0.318475,0.812817,0.456355,0.350776,0.879924,0.0583612,0.182306,0.303749,0.0399089,0.190251,0.0196735,0.968786,0.423533,0.860312,0.779449,0.669769,0.902644,0.579777,0.901045,0.603029,0.647245,0.77085,0.387819,0.0174143,0.0550944,0.944592,0.234672,0.564819,0.465392,0.992711,0.944951,0.913012,0.850709,0.235816,0.832135,0.175135,0.00712591,0.573852,0.924354,0.327934,0.890966,0.932922,0.179689,0.452556,0.263493,0.291532,0.467404,0.13836,0.494437,0.778808,0.510567,0.306201,0.397579,0.873765,0.567634,0.238138,0.246819,0.721547,0.424036,0.44892,0.453337,0.245174,0.751425,0.564728,0.0360626,0.257338,0.365755,0.101095,0.565657,0.572696,0.104365,0.0777041,0.746958,0.389025,0.690286,0.173255,0.960444,0.119308,0.0995216,0.0435386,0.526112,0.581153,0.98576,0.923548,0.895542,0.867281,0.824208,0.569023,0.683061,0.988631,0.563601,0.613203,0.176209,0.445481,0.781093,0.480261,0.247368,0.562318,0.214064,0.826346,0.734998,0.931359,0.795271,0.641333,0.133889,0.922575,0.0989097,0.639805,0.487442,0.60775,0.267871,0.385385,0.794274,0.597719,0.921915,0.202267,0.511839,0.0244563,0.155684,0.73236,0.273444,0.916955,0.895881,0.352974,0.998452,0.733336,0.613385,0.966983,0.237018,0.329751,0.346306,0.191247,0.514236,0.394328,0.522871,0.16394,0.286377,0.172097,0.590954,0.0155134,0.186601,0.607728,0.402369,0.0824521,0.550372,0.448494,0.0483398,0.855021,0.0385845,0.359827,0.413375,0.281723,0.324209,0.158315,0.061986,0.84932,0.298011,0.0688689,0.796027,0.118239,0.357519,0.712231,0.750206,0.493735,0.269841,0.799837,0.791354,0.851448,0.979089,0.912997,0.601475,0.119366,0.71473,0.993875,0.444868,0.740402,0.13168,0.750797,0.15835,0.326684,0.0460899,0.183859,0.669648,0.538894,0.137343,0.894274,0.356048,0.929397,0.51496,0.443348,0.525547,0.0788645,0.318528,0.429424,0.304123,0.685697,0.46691,0.136885,0.2818,0.0210784,0.801873,0.47452,0.901953,0.735668,0.0884575,0.237028,0.288624,0.113074,0.647239,0.246167,0.550413,0.344593,0.766351,0.717128,0.399122,0.157068,0.64122,0.623635,0.740707,0.423722,0.0403029,0.164107,0.612893,0.19212,0.341134,0.542916,0.856278,0.523877,0.238302,0.0746264,0.947899,0.622335,0.46736,0.908754,0.190616,0.21102,0.618585,0.113209,0.762544,0.996522,0.356192,0.234222,0.00501937,0.0667976,0.683207,0.413283,0.6493,0.658358,0.307625,0.416297,0.8535,0.860788,0.162884,0.79919,0.894054,0.678572,0.772616,0.788369,0.887392,0.10326,0.311243,0.18883,0.475543,0.261434,0.668572,0.0415382,0.0166402,0.828535,0.254279,0.337022,0.68402,0.866672,0.848306,0.198312,0.816628,0.910929,0.485952,0.884492,0.79272,0.867451,0.307178,0.756759,0.216238,0.228491,0.507161,0.934434,0.825549,0.684834,0.858375,0.993964,0.206284,0.244712,0.818525,0.273204,0.652163,0.899258,0.445876,0.771894,0.0268655,0.730512,0.176212,0.349136,0.582072,0.87844,0.0105805,0.396416,0.869454,0.23024,0.241203,0.237304,0.0970126,0.179455,0.0915839,0.326452,0.90115,0.994341,0.10887,0.628523,0.795834,0.704239,0.806383,0.10346,0.910904,0.313715,0.863637,0.62096,0.0125574,0.240126,0.0661031,0.702463,0.838404,0.463262,0.456852,0.988638,0.797117,0.229986,0.44572,0.00655216,0.988526,0.504261,0.616174,0.388365,0.847262,0.327333,0.426458,0.503209,0.422371,0.32917,0.0463775,0.387425,0.6591,0.904383,0.285083,0.33617,0.00832969,0.237057,0.876007,0.873503,0.413007,0.59704,0.541781,0.661718,0.317321,0.0622955,0.276421,0.434689,0.780623,0.656963,0.542007,0.105857,0.547125,0.648733,0.635275,0.743374,0.606367,0.324582,0.0145576,0.0725963,0.892393,0.384718,0.123905,0.348233,0.285154,0.0672334,0.453834,0.838025,0.392008,0.454455,0.374977,0.945209,0.455834,0.295165,0.729228,0.267009,0.83752,0.333794,0.776565,0.841456,0.915374,0.162287,0.613019,0.660079,0.94098,0.592278,0.555479,0.124305,0.394759,0.668405,0.859584,0.151837,0.836365,0.3027,0.409521,0.03802,0.476254,0.562332,0.237468,0.580352,0.204059,0.696298,0.230444,0.444858,0.948773,0.83457,0.556829,0.223915,0.287618,0.653234,0.447822,0.969934,0.706327,0.735144,0.623562,0.560149,0.595427,0.940609,0.689489,0.9727,0.0426836,0.445044,0.205881,0.265148,0.155405,0.239056,0.961637,0.780348,0.103526,0.832942,0.322112,0.785796,0.285827,0.9113,0.172269,0.0173697,0.512305,0.810765,0.977265,0.78405,0.426237,0.788436,0.850643,0.777253,0.252709,0.548574,0.595335,0.249889,0.576703,0.810095,0.962781,0.742904,0.620775,0.698712,0.648879,0.3546,0.684195,0.323969,0.310409,0.762692,0.589369,0.839929,0.472317,0.840897,0.657355,0.435607,0.353785,0.37583,0.0128402,0.185582,0.78529,0.00730443,0.721435,0.63717,0.572203,0.95956,0.186765,0.517137,0.897594,0.954024,0.167274,0.222425,0.546285,0.693768,0.0777866,0.650069,0.735558,0.738679,0.126662,0.0908695,0.0608841,0.514882,0.827497,0.51047,0.855728,0.234121,0.486585,0.453226,0.0914233,0.0924276,0.711151,0.0677094,0.324942,0.641492,0.00675005,0.100243,0.296034,0.54403,0.512546,0.664333,0.426268,0.884283,0.730491,0.0374232,0.215463,0.502505,0.625967,0.720439,0.849955,0.479216,0.128224,0.970227,0.255437,0.789011,0.45097,0.624247,0.838928,0.577887,0.22057,0.422101,0.605644,0.96818,0.456505,0.657304,0.5359,0.890585,0.62246,0.919064,0.182673,0.680939,0.480562,0.639365,0.578388,0.863322,0.4827,0.408964,0.97708,0.0803255,0.323948,0.893765,0.0218242,0.403051,0.650237,0.528202,0.575415,0.839856,0.205823,0.704305,0.976189,0.482531,0.315037,0.535056,0.572504,0.0378404,0.329976,0.179342,0.481828,0.389456,0.388198,0.049364,0.964845,0.806057,0.888071,0.636446,0.976419,0.568562,0.498411,0.237241,0.420991,0.87426,0.463853,0.220039,0.260152,0.0806262,0.64571,0.0923526,0.377051,0.801683,0.352557,0.654387,0.403352,0.345045,0.3764,0.539515,0.313863,0.139985,0.344743,0.529732,0.893302,0.112083,0.736347,0.0459724,0.114375,0.652111,0.768379,0.420999,0.470147,0.23378,0.993726,0.0968533,0.0943117,0.0527077,0.232531,0.490164,0.18731,0.0145761,0.775322,0.229948,0.650603,0.0398449,0.589666,0.623084,0.479347,0.137691,0.094943,0.342762,0.459208,0.317897,0.812157,0.226563,0.176595,0.97948,0.699844,0.0876313,0.365485,0.0923594,0.478338,0.295499,0.332005,0.4255,0.00105619,0.159407,0.450057,0.673676,0.0978616,0.729307,0.180461,0.798733,0.776691,0.388519,0.548945,0.196207,0.297609,0.158767,0.419968,0.794832,0.916366,0.771497,0.0489696,0.231051,0.589737,0.252826,0.883083,0.48057,0.45721,0.685053,0.47652,0.79859,0.718266,0.828324,0.79415,0.850917,0.700532,0.672507,0.523688,0.8707,0.719193,0.773816,0.159013,0.0143124,0.76619,0.520775,0.297747,0.980291,0.526494,0.87263,0.680004,0.909893,0.122929,0.723502,0.640237,0.819077,0.268192,0.871509,0.626323,0.923236,0.0662906,0.938853,0.790255,0.279437,0.606026,0.596217,0.826612,0.313086,0.368361,0.0392638,0.559708,0.765279,0.466172,0.731027,0.278905,0.0728213,0.866381,0.684064,0.694193,0.783068,0.015642,0.826723,0.652397,0.835164,0.865029,0.428736,0.702566,0.802289,0.379886,0.0812372,0.0560311,0.718229,0.870265,0.0870693,0.417509,0.744438,0.527237,0.351544,0.39473,0.22697,0.863825,0.57947,0.0604575,0.317707,0.786396,0.859329,0.309812,0.165087,0.409711,0.292819,0.531134,0.162416,0.839799,0.640668,0.0916281,0.781042,0.370397,0.169799,0.178839,0.274269,0.662428,0.50093,0.478083,0.572524,0.309421,0.408931,0.79942,0.919761,0.403128,0.200916,0.601361,0.887494,0.875508,0.545144,0.782409,0.941095,0.727186,0.742306,0.219924,0.775159,0.76734,0.516103,0.316686,0.25742,0.781216,0.546922,0.684316,0.438208,0.72945,0.74797,0.0469118,0.424749,0.722951,0.299355,0.972913,0.822687,0.5846,0.693876,0.118657,0.721888,0.972339,0.800964,0.427654,0.0800728,0.749644,0.46201,0.160509,0.356641,0.230217,0.0112138,0.32952,0.582827,0.812176,0.524532,0.371382,0.918623,0.608957,0.587808,0.314064,0.41746,0.239984,0.783256,0.172095,0.312993,0.251839,0.610549,0.231437,0.541502,0.0585031,0.264869,0.00236398,0.906847,0.307663,0.589021,0.649878,0.185498,0.774477,0.497788,0.765336,0.320556,0.668807,0.691463,0.542578,0.643184,0.833847,0.9332,0.834468,0.587934,0.399826,0.350766,0.472424,0.272844,0.841304,0.251255,0.159272,0.498404,0.166285,0.256267,0.874426,0.280498,0.488529,0.795473,0.544793,0.182134,0.469979,0.590927,0.86267,0.757036,0.333269,0.894051,0.761816,0.404046,0.908874,0.411979,0.981573,0.567264,0.0020045,0.304334,0.381962,0.202813,0.232638,0.689029,0.365345,0.226156,0.977472,0.460898,0.501522,0.611787,0.0633494,0.479773,0.139832,0.887102,0.419526,0.495434,0.437448,0.971006,0.734876,0.63947,0.241015,0.949329,0.8093,0.283785,|0.441753,0.0733747,0.115731,0.244476,0.226255,0.769533,0.336207,0.022545,0.78061,0.211891,0.589836,0.734787,0.917368,0.0725831,0.781389,0.244947,0.539172,0.614967,0.940179,0.397642,0.242567,0.470209,0.441257,0.884797,0.123288,0.881511,0.737101,0.305745,0.9292,0.561426,0.390798,0.795507,0.687444,0.406042,0.137473,0.0102599,0.265887,0.299152,0.655339,0.931839,0.0743197,0.538488,0.944858,0.962201,0.36164,0.294955,0.53853,0.412684,0.946405,0.166954,0.847094,0.351405,0.329578,0.474448,0.222098,0.197187,0.993492,0.356515,0.360963,0.940106,0.74385,0.165495,0.0579596,0.185497,0.349184,0.305633,0.574587,0.190198,0.999942,0.853113,0.624528,0.32995,0.449033,0.031009,0.183543,0.957042,0.520609,0.079392,0.415798,0.177928,0.273698,0.233462,0.579267,0.208668,0.657934,0.0426659,0.491165,0.89894,0.839172,0.43562,0.658106,0.36545,0.380587,0.717669,0.34437,0.123268,0.102628,0.576937,0.94422,0.467707,0.831778,0.216093,0.684635,0.79209,0.433744,0.778288,0.0129164,0.260091,0.66902,0.370717,0.330505,0.298363,0.00485301,0.771261,0.96448,0.842909,0.34485,0.736955,0.94869,0.534913,0.870015,0.641791,0.927682,0.492368,0.758581,0.910859,0.561917,0.0100183,0.633631,0.424308,0.358649,0.386672,0.260966,0.396455,0.541273,0.590639,0.205278,0.71965,0.0147201,0.663779,0.144083,0.977295,0.482419,0.578565,0.478833,0.951297,0.000436246,0.473138,0.329556,0.0616531,0.027467,0.397011,0.860987,0.633077,0.230902,0.59855,0.288341,0.309844,0.825843,0.65646,0.353523,0.382778,0.122993,0.833322,0.614676,0.366892,0.317437,0.464456,0.154382,0.380883,0.948918,0.566826,0.0757609,0.79215,0.513678,0.746177,0.977029,0.813581,0.547673,0.387299,0.409832,0.909862,0.122844,0.83664,0.107814,0.392824,0.261165,0.626852,0.751695,0.188942,0.0915951,0.313648,0.210615,0.28689,0.423117,0.593806,0.866661,0.871829,0.858009,0.470238,0.301463,0.676519,0.232482,0.438206,0.0478479,0.266351,0.0876409,0.48442,0.869602,0.210371,0.910283,0.751935,0.0801275,0.00325507,0.843995,0.422029,0.630282,0.759303,0.439115,0.405524,0.982943,0.159564,0.549572,0.223695,0.675638,0.132384,0.298514,0.771872,0.69143,0.958188,0.619266,0.991886,0.477202,0.594306,0.0471979,0.791355,0.771112,0.828258,0.375135,0.224133,0.374792,0.545822,0.791323,0.118644,0.320464,0.0566892,0.556578,0.265332,0.447185,0.181466,0.83593,0.356906,0.973222,0.127288,0.172563,0.364746,0.315501,0.182606,0.603668,0.365669,0.96422,0.558984,0.496692,0.019496,0.246072,0.718658,0.43829,0.36517,0.877248,0.0565438,0.907686,0.136505,0.00619477,0.52021,0.575186,0.849795,0.409641,0.483376,0.312131,0.821875,0.845639,0.949221,0.58135,0.258219,0.898937,0.117414,0.191864,0.00755322,0.339045,0.587348,0.58801,0.697944,0.704054,0.944273,0.702868,0.273011,0.775599,0.0571716,0.9083,0.572136,0.187643,0.358421,0.947144,0.483041,0.939479,0.62878,0.639555,0.0949646,0.628917,0.901805,0.832227,0.262808,0.0082826,0.615867,0.304388,0.632146,0.00922418,0.546153,0.0780939,0.43347,0.176502,0.663865,0.540485,0.496372,0.831693,0.279358,0.771353,0.740389,0.226951,0.913286,0.683972,0.499044,0.325898,0.338953,0.173673,0.932003,0.493721,0.052909,0.261075,0.853917,0.610609,0.54178,0.907739,0.212072,0.883766,0.453445,0.952036,0.767228,0.750404,0.454846,0.551608,0.568986,0.925978,0.444753,0.993299,0.918808,0.313424,0.591681,0.305694,0.543273,0.719089,0.474501,0.35122,0.0666055,0.411972,0.618763,0.468709,0.249673,0.0543451,0.10956,0.287062,0.255238,0.706705,0.820647,0.141175,0.321418,0.888303,0.041548,0.986849,0.394337,0.832987,0.790032,0.6101,0.00418389,0.20829,0.876207,0.633703,0.52164,0.897491,0.149524,0.254646,0.215097,0.307463,0.126188,0.683315,0.1364,0.466162,0.520139,0.832134,0.399147,0.781351,0.311574,0.921149,0.0468763,0.677556,0.422266,0.997689,0.860775,0.854626,0.416311,0.123755,0.650273,0.368526,0.93453,0.69645,0.957603,0.236365,0.616559,0.0527883,0.920706,0.0993043,0.398922,0.38777,0.00470227,0.207411,0.551703,0.462526,0.731269,0.721364,0.611689,0.6264,0.251224,0.450889,0.672011,0.829609,0.918262,0.538228,0.298301,0.180244,0.0335067,0.921141,0.227941,0.608412,0.294114,0.000901163,0.487032,0.965722,0.755584,0.960198,0.835089,0.727287,0.81817,0.610515,0.696736,0.291513,0.373739,0.254554,0.18868,0.680813,0.932939,0.549401,0.605341,0.397892,0.423291,0.140157,0.27706,0.420936,0.679591,0.665731,0.0131526,0.730854,0.334053,0.26336,0.38762,0.281223,0.59994,0.473911,0.550085,0.297148,0.500326,0.94889,0.68087,0.0563063,0.726137,0.216091,0.297162,0.8535,0.359101,0.0241474,0.654251,0.0118492,0.726219,0.892008,0.298051,0.0318578,0.737452,0.595282,0.263771,0.591163,0.635625,0.348405,0.598055,0.935202,0.19247,0.932079,0.560981,0.921002,0.484752,0.967111,0.866895,0.552181,0.197316,0.298754,0.871938,0.144153,0.0472754,0.420746,0.766568,0.921215,0.900988,0.869534,0.6384,0.502148,0.290746,0.414127,0.446975,0.811411,0.577466,0.105116,0.27726,0.991854,0.887734,0.758805,0.883684,0.889448,0.101627,0.698768,0.347987,0.656079,0.717188,0.918871,0.150956,0.0677713,0.295208,0.76617,0.100775,0.980915,0.745798,0.29525,0.055397,0.357653,0.356318,0.834657,0.837435,0.575328,0.0858017,0.640678,0.179905,0.736183,0.247568,0.836021,0.258809,0.579157,0.718892,0.659138,0.803524,0.713334,0.510644,0.473685,0.085226,0.459301,0.300871,0.0794861,0.986654,0.96231,0.474012,0.0627913,0.344014,0.263912,0.0242872,0.941711,0.204202,0.459689,0.171303,0.117401,0.428158,0.0791762,0.486375,0.895703,0.954693,0.206092,0.476773,0.752617,0.390979,0.31684,0.799163,0.824492,0.775201,0.853894,0.929731,0.0702118,0.125439,0.853842,0.969616,0.65782,0.726143,0.827176,0.649477,0.0352306,0.802355,0.82908,0.904777,0.123776,0.845884,0.252647,0.558759,0.0380079,0.151596,0.226285,0.504914,0.320219,0.353702,0.646908,0.56353,0.451971,0.523571,0.572295,0.48614,0.740227,0.06181,0.339123,0.436103,0.250466,0.871272,0.948334,0.281082,0.548742,0.35039,0.948665,0.331901,0.31208,0.961037,0.280836,0.564758,0.663952,0.375201,0.0859476,0.723925,0.0613115,0.576602,0.192797,0.737007,0.71218,0.73522,0.651735,0.324819,0.00955909,0.0201156,0.960465,0.736878,0.910498,0.647429,0.226376,0.297431,0.0303396,0.338278,0.217651,0.765424,0.193885,0.843144,0.315186,0.249182,0.148632,0.672284,0.10477,0.164915,0.791534,0.191312,0.207032,0.495614,0.995254,0.218821,0.829143,0.00802827,0.128638,0.908934,0.266951,0.731316,0.794476,0.726133,0.988577,0.437872,0.455121,0.17932,0.111942,0.158166,0.0707311,0.398365,0.591062,0.355856,0.773132,0.317972,0.201463,0.220345,0.407315,0.286199,0.439723,0.887461,0.0331989,0.577452,0.508735,0.559273,0.0706961,0.319059,0.0703473,0.703731,0.581217,0.904406,0.0295761,0.972772,0.0632559,0.914372,0.496625,0.767533,0.212209,0.205946,0.462862,0.0134152,0.118498,0.274931,0.0260864,0.918976,0.245803,0.331162,0.836979,0.961087,0.380149,0.58525,0.0772694,0.868887,0.940028,0.20949,0.902378,0.190433,0.986095,0.228719,0.272017,0.404752,0.780878,0.331484,0.434749,0.254537,0.312935,0.578086,0.158099,0.48601,0.252988,0.103135,0.566815,0.728785,0.602988,0.617939,0.942737,0.0525824,0.659004,0.0847274,0.0141515,0.970225,0.137366,0.95471,0.550334,0.284106,0.5681,0.366754,0.399188,0.563211,0.445992,0.582449,0.207787,0.347759,0.709909,0.165178,0.882022,0.67392,0.553923,0.626248,0.356125,0.576642,0.608051,0.1868,0.809973,0.0159209,0.186219,0.879062,0.687874,0.914465,0.176692,0.0727087,0.249503,0.769252,0.173798,0.213138,0.334266,0.996626,0.885168,0.0888516,0.218893,0.355932,0.526179,0.140952,0.44049,0.889826,0.746007,0.834258,0.93202,0.350501,0.35257,0.211275,0.639361,0.218849,0.124609,0.108372,0.315487,0.223885,0.376759,0.620021,0.467565,0.593342,0.875646,0.708743,0.440221,0.446668,0.297885,0.747932,0.485303,0.197523,0.0978069,0.751053,0.931409,0.173467,0.889098,0.340801,0.957013,0.481294,0.0510131,0.572267,0.25345,0.957449,0.731115,0.231024,0.581014,0.0277725,0.682838,0.265861,0.0652305,0.68382,0.177335,0.471399,0.149825,0.84963,0.587509,0.127597,0.924259,0.926954,0.259024,0.121683,0.891007,0.823966,0.31306,0.927406,0.69882,0.640559,0.979273,0.920863,0.505248,0.147162,0.530717,0.384406,0.667589,0.215507,0.943077,0.281013,0.217455,0.146815,0.139472,0.987432,0.042016,0.669912,0.896725,0.205649,0.49096,0.0608009,0.403271,0.0705086,0.525465,0.458016,0.433962,0.00200534,0.983477,0.390477,0.720074,0.668274,0.130936,0.686109,0.330016,0.474448,0.427496,0.825668,0.295613,0.294431,0.863569,0.476675,0.453244,0.142979,0.489137,0.408929,0.0882041,0.139913,0.799605,0.0140681,0.992475,0.743212,0.179907,0.506255,0.241361,0.262001,0.144522,0.0892011,0.198591,0.989,0.933307,0.629074,0.901941,0.219674,0.652121,0.906447,0.363824,0.653605,0.667915,0.72065,0.139905,0.8661,0.458549,0.180736,0.27436,0.763502,0.143787,0.325057,0.811213,0.0659849,0.899417,0.168179,0.282255,0.78487,0.335033,0.579378,0.765075,0.567209,0.781231,0.51178,0.92318,0.690106,0.344571,0.945038,0.0605821,0.705413,0.0987965,0.654627,0.0539526,0.0473654,0.539597,0.171118,0.83901,0.749009,0.0501701,0.500252,0.89573,0.26867,0.284121,0.336785,0.40642,0.863914,0.572045,0.2438,0.440375,0.74025,0.780077,0.16619,0.339874,0.173627,0.185576,0.782235,0.207687,0.994604,0.660664,0.351848,0.976615,0.563524,0.234487,0.258749,|0.886689,0.318683,0.742727,0.179984,0.928719,0.861979,0.457494,0.867341,0.287485,0.778801,0.808045,0.613721,0.805129,0.249606,0.322636,0.470764,0.805173,0.316436,0.750432,0.302584,0.43976,0.563567,0.00949723,0.29414,0.486052,0.289101,0.835789,0.144898,0.751242,0.766343,0.389153,0.801383,0.227754,0.104996,0.325828,0.565711,0.933605,0.960767,0.152375,0.481458,0.672513,0.0110141,0.018243,0.577569,0.974586,0.826138,0.693945,0.330248,0.991475,0.236357,0.0232908,0.0586599,0.491651,0.567788,0.913644,0.83924,0.29198,0.86286,0.618169,0.472876,0.716911,0.783224,0.774063,0.802679,0.757006,0.227857,0.198624,0.303221,0.740224,0.125698,0.756595,0.694131,0.488899,0.844071,0.33922,0.610036,0.401271,0.590084,0.010147,0.98639,0.502423,0.43477,0.607085,0.0400525,0.211029,0.859672,0.820198,0.966772,0.912496,0.48644,0.889561,0.723178,0.660621,0.370837,0.537422,0.859984,0.320391,0.957783,0.161928,0.0467368,0.991497,0.913907,0.81536,0.81661,0.490265,0.181979,0.948295,0.701198,0.474055,0.62863,0.836815,0.771333,0.99905,0.77861,0.989114,0.794421,0.158906,0.243727,0.281103,0.0945792,0.201492,0.0963864,0.149918,0.121188,0.617001,0.110067,0.241918,0.389666,0.240154,0.482526,0.547841,0.378974,0.506459,0.672157,0.823399,0.670284,0.0577055,0.272528,0.384405,0.228889,0.717818,0.0166885,0.380008,0.609342,0.776681,0.398551,0.567167,0.074883,0.082178,0.155448,0.55556,0.0321233,0.845978,0.951516,0.32438,0.508252,0.0252339,0.676696,0.235777,0.507068,0.446605,0.21847,0.98295,0.970716,0.389077,0.179796,0.642528,0.903797,0.788173,0.469424,0.120691,0.588235,0.815482,0.390387,0.577996,0.181821,0.243188,0.872199,0.919838,0.0589488,0.298663,0.39252,0.49997,0.806318,0.905359,0.79699,0.0722128,0.0865429,0.336778,0.989591,0.12316,0.363368,0.286843,0.845012,0.916389,0.555294,0.443304,0.0613571,0.0197954,0.563502,0.070855,0.533345,0.655956,0.943865,0.59057,0.948721,0.725664,0.999509,0.482087,0.85907,0.982018,0.340117,0.169281,0.166031,0.646483,0.636953,0.533636,0.975658,0.271218,0.402644,0.927166,0.412273,0.229173,0.42285,0.339925,0.0959381,0.97869,0.1068,0.467991,0.0661787,0.00995904,0.732127,0.667401,0.657083,0.269948,0.385864,0.498676,0.340313,0.221688,0.11362,0.835073,0.675508,0.866529,0.90914,0.277983,0.0688264,0.750917,0.54195,0.406393,0.327127,0.0581452,0.58534,0.967375,0.483454,0.834031,0.464844,0.283743,0.261059,0.776362,0.314427,0.0973414,0.501345,0.395947,0.454425,0.459168,0.308151,0.265508,0.496379,0.0832748,0.997265,0.803855,0.911759,0.0257671,0.799444,0.971592,0.872769,0.790727,0.265079,0.864154,0.668471,0.275653,0.436055,0.326247,0.359188,0.274496,0.396633,0.298199,0.0992537,0.0139964,0.387739,0.161113,0.672699,0.960825,0.330297,0.430725,0.996453,0.659579,0.0321845,0.92769,0.439806,0.210752,0.861814,0.308168,0.704492,0.491297,0.453056,0.886034,0.626589,0.802644,0.0524545,0.174703,0.195589,0.878973,0.313921,0.64594,0.432282,0.0487458,0.756859,0.471708,0.642848,0.426437,0.561296,0.0639527,0.94842,0.837176,0.452941,0.545094,0.325969,0.445814,0.630788,0.00746602,0.284531,0.730581,0.0450481,0.77329,0.451434,0.0672274,0.605237,0.25527,0.962946,0.827378,0.937465,0.232167,0.903528,0.0934989,0.695364,0.905545,0.244697,0.429373,0.0153056,0.564114,0.719264,0.526602,0.0775872,0.0107443,0.17227,0.671116,0.707219,0.37403,0.936184,0.45081,0.888201,0.0577947,0.485449,0.478932,0.644038,0.495215,0.597254,0.194724,0.31463,0.671909,0.24764,0.526902,0.802383,0.408185,0.459524,0.485611,0.33465,0.173664,0.393326,0.419181,0.921617,0.239115,0.0305668,0.528945,0.732398,0.994383,0.463662,0.180599,0.0386745,0.0100587,0.788365,0.0759813,0.0856632,0.91415,0.0734112,0.685543,0.735634,0.327984,0.951431,0.37574,0.795434,0.495404,0.893028,0.821379,0.720717,0.0861078,0.843964,0.820055,0.90707,0.0875911,0.404071,0.835105,0.453974,0.0736033,0.579329,0.00595123,0.360286,0.243758,0.899658,0.0594243,0.981273,0.888826,0.815389,0.145883,0.15557,0.107318,0.0809742,0.684657,0.406233,0.188208,0.836638,0.182264,0.642208,0.249927,0.722763,0.221673,0.781264,0.702563,0.336313,0.245362,0.727121,0.470222,0.34808,0.627236,0.852197,0.891554,0.822062,0.463464,0.743893,0.0547206,0.337629,0.491513,0.728556,0.934666,0.213169,0.630367,0.532181,0.763418,0.286197,0.268546,0.694291,0.653016,0.226127,0.11517,0.721195,0.756079,0.837496,0.811768,0.557831,0.495923,0.2733,0.580873,0.802744,0.856755,0.446731,0.756105,0.984322,0.0875329,0.065367,0.418582,0.806795,0.537469,0.231344,0.334098,0.828093,0.821345,0.708145,0.960912,0.317958,0.420632,0.979945,0.295505,0.179935,0.81066,0.317965,0.833618,0.424179,0.6717,0.0915447,0.221643,0.865488,0.4486,0.0505354,0.193261,0.545905,0.590829,0.943879,0.438261,0.501421,0.213585,0.105861,0.398207,0.730628,0.14664,0.242051,0.538302,0.720497,0.867021,0.486367,0.587479,0.434118,0.836313,0.0760571,0.851816,0.816688,0.0416173,0.115244,0.537475,0.991215,0.565273,0.282806,0.547749,0.750438,0.36873,0.242443,0.575575,0.64167,0.436309,0.833392,0.33466,0.198493,0.680989,0.613997,0.13138,0.76711,0.336126,0.333088,0.138091,0.836984,0.619763,0.0305748,0.798707,0.974721,0.17729,0.00341094,0.623714,0.0605296,0.462989,0.982547,0.817232,0.502885,0.626799,0.77873,0.443225,0.0551542,0.126365,0.203126,0.577639,0.34198,0.657812,0.816024,0.815979,0.533327,0.285872,0.276533,0.181663,0.822639,0.600813,0.688167,0.034263,0.250955,0.930025,0.369816,0.348246,0.544975,0.165809,0.477338,0.725444,0.546402,0.896912,0.441885,0.876558,0.256811,0.656771,0.766512,0.925161,0.173968,0.525333,0.35521,0.855885,0.136807,0.25832,0.145533,0.732034,0.995523,0.491543,0.644818,0.320156,0.0624312,0.592754,0.626181,0.49729,0.525482,0.314564,0.0226973,0.419142,0.205362,0.324448,0.475096,0.815733,0.575555,0.411469,0.400848,0.293002,0.123492,0.435268,0.0241824,0.145763,0.453727,0.0290298,0.640724,0.961003,0.278481,0.180936,0.956404,0.187475,0.762207,0.213955,0.935659,0.958751,0.0610172,0.180368,0.275291,0.67278,0.627313,0.796151,0.278576,0.388101,0.368792,0.290692,0.161381,0.825597,0.773171,0.638292,0.689271,0.20811,0.671972,0.257177,0.240903,0.972987,0.247224,0.197574,0.747762,0.104108,0.251222,0.349893,0.624711,0.382855,0.870717,0.838137,0.269969,0.689825,0.620517,0.394655,0.861916,0.831178,0.610509,0.624964,0.607977,0.195148,0.634403,0.368242,0.620376,0.177795,0.848813,0.0852679,0.872833,0.641799,0.236087,0.454869,0.378142,0.893219,0.248534,0.636408,0.243989,0.499463,0.687338,0.0998783,0.771671,0.33224,0.566325,0.854313,0.203347,0.449751,0.743384,0.563951,0.0224453,0.100394,0.796466,0.888372,0.884092,0.819676,0.691677,0.958401,0.992663,0.895863,0.771607,0.8829,0.244848,0.268252,0.148818,0.957868,0.276173,0.223367,0.452491,0.200541,0.437483,0.83691,0.89599,0.499042,0.887454,0.385026,0.267273,0.420696,0.0710113,0.0654777,0.219679,0.94258,0.0410839,0.864658,0.0727392,0.615813,0.734546,0.608272,0.974431,0.000236094,0.00364989,0.0707236,0.0812208,0.601641,0.0971622,0.846954,0.878308,0.533371,0.112959,0.764615,0.910459,0.297355,0.785456,0.661689,0.503756,0.232632,0.177109,0.977744,0.267204,0.438428,0.908786,0.0745206,0.146005,0.686845,0.808665,0.741264,0.71848,0.00606745,0.0523798,0.174678,0.202439,0.220914,0.526746,0.45158,0.370947,0.11092,0.94659,0.429145,0.515995,0.474207,0.961435,0.80508,0.358583,0.321538,0.160974,0.482971,0.43688,0.060746,0.503056,0.689094,0.226289,0.515633,0.159745,0.483735,0.922923,0.187361,0.0546284,0.457726,0.0946001,0.298065,0.5582,0.616336,0.337188,0.935799,0.883813,0.98834,0.71773,0.202134,0.299191,0.00166976,0.114562,0.145994,0.695737,0.429212,0.420954,0.957192,0.313738,0.823567,0.00238293,0.246468,0.585616,0.450974,0.840664,0.324118,0.0366454,0.107224,0.617193,0.827278,0.95309,0.979992,0.339019,0.66084,0.490595,0.7372,0.81629,0.929157,0.651481,0.327179,0.224342,0.827933,0.386937,0.645175,0.51136,0.545081,0.42694,0.368459,0.832787,0.791063,0.943639,0.0140002,0.156491,0.827539,0.695269,0.764332,0.87474,0.247004,0.0456765,0.482381,0.468734,0.830673,0.76574,0.470539,0.600924,0.305883,0.28532,0.289336,0.396367,0.222372,0.813564,0.00533485,0.347158,0.990575,0.788166,0.0593358,0.63236,0.482672,0.550794,0.213397,0.390744,0.955804,0.800361,0.110374,0.892039,0.557224,0.629358,0.114974,0.876553,0.403881,0.751552,0.109562,0.229679,0.504204,0.0801641,0.886253,0.059123,0.815806,0.173447,0.556248,0.804394,0.0694084,0.0928977,0.652385,0.859098,0.783769,0.190027,0.908956,0.351421,0.250647,0.947608,0.0839326,0.790708,0.462901,0.408397,0.549499,0.148965,0.196717,0.562568,0.417465,0.848938,0.812105,0.156706,0.171839,0.177274,0.358401,0.450372,0.284727,0.56327,0.949646,0.348653,0.459181,0.948061,0.320571,0.888745,0.959592,0.237814,0.00405693,0.176521,0.305476,0.443413,0.802136,0.0203663,0.418009,0.135328,0.989387,0.342425,0.571298,0.493572,0.987956,0.960646,0.788873,0.664151,0.810991,0.333041,0.168603,0.108818,0.0784589,0.322916,0.660775,0.946476,0.393192,0.585793,0.19934,0.749143,0.0442489,0.629395,0.472986,0.540261,0.695329,0.824286,0.516447,0.869475,0.000500083,0.248114,0.478382,0.219773,0.800879,0.263828,0.225288,0.982296,0.421921,0.0328017,0.101122,0.503007,0.342334,0.365095,0.114691,0.394091,0.59841,0.819813,0.391277,0.894226,0.451462,0.435602,|0.710424,0.861408,0.763141,0.413022,0.275006,0.879434,0.365261,0.514528,0.858072,0.762431,0.21443,0.331728,0.241123,0.0306631,0.466251,0.536061,0.293606,0.688535,0.102393,0.709305,0.278861,0.32052,0.0579622,0.655798,0.0389959,0.951001,0.0641337,0.771347,0.753223,0.682621,0.593478,0.540828,0.572349,0.167615,0.818336,0.733341,0.106885,0.923262,0.188824,0.0455476,0.759697,0.607679,0.798579,0.353548,0.639354,0.0344617,0.330575,0.504217,0.20777,0.140743,0.365268,0.966608,0.645406,0.19068,0.997264,0.226439,0.523165,0.310632,0.0797085,0.090975,0.946568,0.410612,0.26208,0.340458,0.931131,0.0712319,0.691738,0.864498,0.128235,0.748912,0.233483,0.409321,0.993915,0.940508,0.29384,0.583037,0.663183,0.818429,0.298353,0.954088,0.655809,0.875211,0.511279,0.0279104,0.991618,0.809414,0.626511,0.791975,0.222799,0.743947,0.198106,0.0466446,0.360398,0.484128,0.188819,0.389159,0.648256,0.507257,0.518993,0.0230742,0.532253,0.785109,0.0805341,0.739014,0.725724,0.541352,0.0306628,0.0338128,0.523971,0.832793,0.590579,0.0298273,0.640308,0.904952,0.486361,0.913406,0.826882,0.803796,0.494948,0.917927,0.659859,0.162735,0.37654,0.345101,0.736563,0.093672,0.882448,0.303398,0.480607,0.492872,0.598045,0.68549,0.587803,0.817641,0.337906,0.659707,0.208316,0.0882892,0.822594,0.226675,0.524695,0.972309,0.415303,0.316766,0.996631,0.910425,0.386028,0.861038,0.400028,0.740302,0.156738,0.776527,0.188866,0.190261,0.109625,0.693901,0.343699,0.834942,0.263946,0.71894,0.0177897,0.88215,0.51848,0.52064,0.844491,0.525959,0.726954,0.0569135,0.878828,0.747683,0.0731111,0.0181283,0.709315,0.878471,0.383734,0.989119,0.213135,0.211343,0.953935,0.314379,0.823028,0.689085,0.399892,0.552594,0.846989,0.0120921,0.564068,0.760866,0.0142373,0.184039,0.687854,0.586754,0.21726,0.695773,0.4005,0.631191,0.592288,0.407677,0.160608,0.843313,0.488818,0.972348,0.704844,0.481593,0.222828,0.147724,0.95954,0.940009,0.00658715,0.266122,0.51136,0.739945,0.0847231,0.686464,0.613322,0.710962,0.976947,0.951107,0.803184,0.974627,0.556183,0.743116,0.0426676,0.643232,0.49027,0.150715,0.571228,0.117536,0.0697124,0.683777,0.713847,0.975178,0.963874,0.963688,0.619072,0.651461,0.625115,0.792082,0.662698,0.807611,0.822305,0.355299,0.961258,0.431479,0.154232,0.99092,0.450149,0.311528,0.609517,0.263402,0.873082,0.961195,0.0812271,0.596817,0.0101694,0.306323,0.484815,0.828081,0.226077,0.389267,0.139741,0.59533,0.473469,0.469886,0.0243399,0.040127,0.403738,0.840369,0.0238628,0.410135,0.782303,0.746171,0.519061,0.505645,0.770592,0.202665,0.762381,0.10275,0.107442,0.777379,0.624412,0.803434,0.361252,0.867557,0.884883,0.341657,0.580609,0.297033,0.48631,0.621694,0.598237,0.159762,0.128504,0.894222,0.524734,0.813878,0.597234,0.848901,0.557109,0.530654,0.658387,0.113328,0.875787,0.74976,0.920624,0.772837,0.909267,0.724566,0.611265,0.282129,0.89236,0.656804,0.642392,0.403217,0.609383,0.498759,0.456053,0.415263,0.393778,0.2974,0.624057,0.538843,0.625687,0.116235,0.207691,0.248714,0.38663,0.745388,0.337119,0.220218,0.590296,0.832356,0.176533,0.0370941,0.100611,0.0190035,0.954662,0.332444,0.816704,0.00934821,0.580339,0.95057,0.590489,0.79234,0.0246571,0.0720786,0.00946432,0.120858,0.548069,0.675574,0.053321,0.374525,0.792403,0.136419,0.00740486,0.893228,0.469612,0.324335,0.559588,0.774766,0.287063,0.315054,0.706223,0.802551,0.266478,0.985972,0.0906039,0.997559,0.549022,0.962589,0.331563,0.300973,0.181325,0.703476,0.925688,0.228377,0.0253901,0.305539,0.606714,0.0876606,0.918688,0.503537,0.0579445,0.371953,0.0353,0.437208,0.73318,0.973987,0.294212,0.110803,0.355436,0.212021,0.612539,0.0225632,0.197985,0.910967,0.134304,0.0222842,0.175335,0.389898,0.0537246,0.322185,0.882729,0.0525233,0.19356,0.434033,0.411038,0.547482,0.857917,0.350331,0.0405722,0.757085,0.981926,0.99779,0.325114,0.970904,0.376999,0.369589,0.524876,0.136092,0.0525488,0.766299,0.498053,0.118886,0.469056,0.760701,0.302372,0.863606,0.617364,0.949926,0.319592,0.676343,0.0725089,0.888404,0.798618,0.694048,0.874681,0.991672,0.226236,0.55002,0.0145692,0.8794,0.307996,0.958054,0.498159,0.778821,0.212354,0.200974,0.675726,0.660387,0.460131,0.403195,0.363899,0.655374,0.910632,0.158963,0.767933,0.386242,0.734971,0.601199,0.0525725,0.869922,0.643475,0.546353,0.690371,0.18221,0.365739,0.854213,0.679209,0.544955,0.0845425,0.84367,0.880905,0.358128,0.17495,0.70275,0.136059,0.832147,0.0507057,0.226538,0.168099,0.345627,0.808574,0.61279,0.716578,0.891934,0.330616,0.608166,0.925327,0.905562,0.649821,0.5165,0.191686,0.828168,0.0979637,0.0103835,0.769003,0.621287,0.902317,0.747312,0.478858,0.442625,0.620558,0.488349,0.669218,0.560946,0.825358,0.31163,0.0883759,0.470974,0.774469,0.526287,0.420533,0.320114,0.899911,0.49318,0.918003,0.374112,0.215233,0.794343,0.36398,0.707579,0.0749385,0.342169,0.89744,0.314898,0.689545,0.324902,0.291293,0.00581968,0.41634,0.796863,0.176345,0.649079,0.425309,0.390777,0.388339,0.645712,0.905494,0.301004,0.217156,0.676423,0.365088,0.0549199,0.549974,0.892968,0.49227,0.985095,0.596944,0.152989,0.304701,0.0394939,0.503026,0.398584,0.981143,0.443036,0.778761,0.789994,0.24938,0.289246,0.841662,0.181526,0.680417,0.569733,0.484139,0.828202,0.214823,0.202708,0.597722,0.288779,0.206,0.820491,0.802242,0.619446,0.188133,0.707981,0.962326,0.806395,0.183307,0.940893,0.925147,0.823079,0.228872,0.18577,0.653878,0.433725,0.757115,0.325528,0.797683,0.762217,0.144476,0.646882,0.663486,0.569727,0.196328,0.745002,0.269444,0.623615,0.131058,0.0526333,0.730313,0.0665942,0.692975,0.961711,0.731069,0.429431,0.838144,0.306457,0.97067,0.837918,0.354001,0.692385,0.43109,0.194462,0.131935,0.398313,0.164811,0.751692,0.300343,0.361462,0.0411804,0.15227,0.0244705,0.424956,0.104792,0.616619,0.803369,0.836343,0.697505,0.894872,0.0798034,0.569225,0.898923,0.418984,0.624733,0.867723,0.592695,0.516028,0.629131,0.722364,0.786878,0.667786,0.417984,0.180938,0.362336,0.431354,0.687218,0.56982,0.724787,0.79265,0.606453,0.219332,0.223532,0.249297,0.18345,0.486671,0.568437,0.928055,0.482313,0.608862,0.713301,0.210059,0.0781509,0.554005,0.0774209,0.203681,0.525985,0.336757,0.66539,0.825519,0.516518,0.892276,0.978749,0.860545,0.96733,0.977169,0.238224,0.633115,0.586556,0.376371,0.404024,0.0755512,0.575172,0.666545,0.74931,0.832882,0.076703,0.16118,0.269138,0.892894,0.232281,0.386303,0.734896,0.789463,0.62255,0.555814,0.942399,0.923476,0.145069,0.741047,0.467717,0.97129,0.605989,0.3503,0.00852162,0.231549,0.865645,0.670942,0.545014,0.160837,0.0128549,0.911892,0.763539,0.678276,0.104529,0.231453,0.0359185,0.576469,0.0782307,0.304201,0.708355,0.663979,0.233467,0.742101,0.177266,0.0928102,0.860118,0.417115,0.774752,0.61744,0.55604,0.475684,0.235561,0.852515,0.724925,0.561989,0.906918,0.166932,0.25018,0.69381,0.340021,0.388953,0.0528656,0.365168,0.813916,0.748807,0.579113,0.966844,0.375466,0.0904629,0.237623,0.0576813,0.507285,0.896711,0.35704,0.590611,0.675583,0.379609,0.0471541,0.242512,0.950805,0.390018,0.0793636,0.849383,0.338363,0.896923,0.652004,0.746083,0.719081,0.796104,0.908009,0.0179621,0.509843,0.413795,0.997726,0.493361,0.535728,0.807774,0.418005,0.132218,0.391445,0.531992,0.195575,0.584991,0.327343,0.167141,0.618281,0.77801,0.389279,0.151735,0.543189,0.806826,0.707573,0.137628,0.301354,0.526234,0.765848,0.243498,0.426574,0.747521,0.778295,0.150536,0.669721,0.507706,0.143805,0.775763,0.284858,0.583498,0.292917,0.440113,0.385358,0.251409,0.911141,0.531589,0.5495,0.857684,0.281111,0.764434,0.749767,0.783926,0.174643,0.792474,0.113761,0.827739,0.455813,0.565255,0.103374,0.154086,0.951598,0.790666,0.780871,0.928495,0.839523,0.396065,0.501991,0.0386872,0.107097,0.153859,0.853552,0.748286,0.0195324,0.462021,0.542887,0.110866,0.357422,0.189474,0.142373,0.41715,0.0710834,0.0796893,0.125471,0.748819,0.53926,0.839172,0.908983,0.859301,0.669306,0.947991,0.0397518,0.99336,0.384255,0.649596,0.0846381,0.450254,0.69628,0.845397,0.975415,0.761407,0.190048,0.961498,0.384468,0.738785,0.677143,0.929799,0.881623,0.242789,0.647631,0.427177,0.118059,0.886661,0.667929,0.832715,0.65007,0.287483,0.171387,0.414824,0.0612667,0.504066,0.583348,0.766229,0.686583,0.622908,0.0745655,0.920732,0.0489749,0.16856,0.695372,0.441102,0.704004,0.104739,0.0968285,0.796468,0.191565,0.159624,0.254259,0.0346326,0.836574,0.0388977,0.743404,0.369308,0.68725,0.00966734,0.207659,0.375977,0.726107,0.849213,0.843976,0.0200233,0.596692,0.84685,0.90643,0.97381,0.560881,0.368771,0.282644,0.500493,0.955541,0.475496,0.486706,0.480307,0.153089,0.30365,0.238309,0.536371,0.213172,0.188897,0.296477,0.306715,0.645485,0.660796,0.0206196,0.387434,0.000510693,0.0556254,0.424825,0.368418,0.496125,0.836236,0.500503,0.375569,0.553282,0.768328,0.624919,0.555472,0.0384563,0.868601,0.894736,0.3262,0.422656,0.0839586,0.267668,0.0482962,0.249011,0.412627,0.476993,0.568959,0.786536,0.12222,0.692191,0.526262,0.974362,0.00919056,0.561668,0.175159,0.255885,0.491328,0.312388,0.193694,0.0994309,0.0953438,0.858888,0.418647,0.735168,0.186579,0.10804,0.309781,0.638796,0.747339,0.265665,0.333467,0.737785,0.281258,0.620007,0.763032,0.0467595,0.766406,0.785331,0.401295,0.680337,0.830849,|0.623868,0.434915,0.0771461,0.833251,0.393378,0.616001,0.907139,0.694486,0.248223,0.22454,0.821591,0.0969688,0.466119,0.930759,0.696171,0.0699549,0.771124,0.403609,0.0605078,0.00253403,0.410066,0.691773,0.522908,0.592233,0.00407922,0.225037,0.208013,0.806784,0.949893,0.305072,0.0223464,0.0491214,0.234901,0.955412,0.404778,0.0329443,0.853895,0.471744,0.40477,0.876369,0.687829,0.0922982,0.00897461,0.262814,0.581294,0.475449,0.545903,0.18583,0.0967077,0.461637,0.743237,0.226811,0.0474283,0.742597,0.375093,0.379782,0.251145,0.805967,0.311877,0.74743,0.345074,0.476782,0.53304,0.761444,0.86993,0.772335,0.204208,0.807268,0.559283,0.861094,0.306177,0.135296,0.500855,0.546245,0.355023,0.363491,0.615583,0.820683,0.259813,0.657148,0.97386,0.35369,0.936101,0.00930583,0.839386,0.384171,0.358299,0.729532,0.419784,0.183312,0.495696,0.708458,0.982691,0.918814,0.656047,0.465557,0.997923,0.626408,0.324236,0.229128,0.461087,0.209562,0.485495,0.152787,0.551392,0.0452931,0.0208054,0.420099,0.368452,0.617264,0.764891,0.563622,0.0377781,0.326037,0.31765,0.304136,0.0878972,0.473652,0.100656,0.659086,0.477817,0.615148,0.405637,0.666316,0.730472,0.748971,0.177276,0.0171146,0.257001,0.855199,0.398989,0.529781,0.580131,0.545457,0.42772,0.080843,0.144646,0.349397,0.567017,0.471866,0.221262,0.169682,0.963975,0.162677,0.995773,0.349695,0.755597,0.350919,0.452158,0.280985,0.585506,0.640493,0.347088,0.837127,0.621835,0.795407,0.40211,0.503128,0.47883,0.155281,0.903275,0.7824,0.845419,0.912543,0.557248,0.637957,0.469047,0.262751,0.304107,0.9061,0.385284,0.850744,0.0339134,0.872394,0.820827,0.846427,0.0166531,0.820588,0.6464,0.192018,0.477458,0.223926,0.715326,0.309042,0.469821,0.253675,0.605468,0.373989,0.0135486,0.996399,0.681234,0.581563,0.0457532,0.0222562,0.20418,0.713612,0.150003,0.364161,0.0407717,0.2106,0.545339,0.235937,0.798636,0.801739,0.936602,0.49512,0.490238,0.259327,0.710448,0.697187,0.153617,0.383417,0.250457,0.245952,0.68423,0.272797,0.79781,0.433844,0.37074,0.298092,0.140011,0.375646,0.000801384,0.680933,0.720613,0.64078,0.512936,0.19894,0.48995,0.923924,0.0424844,0.227268,0.191677,0.370126,0.473298,0.763277,0.655738,0.44838,0.495947,0.422853,0.351008,0.319689,0.133788,0.18359,0.720286,0.855525,0.703713,0.117739,0.934902,0.695135,0.246308,0.720679,0.93409,0.116123,0.110983,0.0985759,0.126048,0.598794,0.644208,0.0622468,0.725089,0.702031,0.151151,0.392856,0.449186,0.67483,0.500857,0.0124419,0.227716,0.107876,0.613389,0.208499,0.367973,0.850238,0.0293512,0.392106,0.386721,0.230785,0.963164,0.0670985,0.759533,0.733145,0.85201,0.472034,0.384018,0.168964,0.00316113,0.859322,0.534578,0.407097,0.182373,0.599889,0.368389,0.912998,0.960801,0.29699,0.0583038,0.409999,0.644275,0.637594,0.410675,0.236099,0.196968,0.581716,0.14118,0.0451718,0.245557,0.0435078,0.907249,0.48509,0.197078,0.76442,0.411517,0.203465,0.674895,0.697341,0.447293,0.147061,0.824299,0.201797,0.405833,0.295511,0.366709,0.76524,0.0932956,0.0962264,0.943362,0.095531,0.959343,0.596386,0.875397,0.895911,0.155177,0.840655,0.133942,0.10248,0.44164,0.200989,0.840881,0.847376,0.186392,0.0445974,0.910816,0.260794,0.897813,0.769278,0.510204,0.659358,0.127137,0.282034,0.830565,0.583927,0.557536,0.0660429,0.686382,0.850617,0.667752,0.737477,0.410434,0.618609,0.451937,0.143857,0.617794,0.662718,0.314214,0.153197,0.914451,0.798173,0.933011,0.0575391,0.14791,0.0448871,0.169397,0.0329177,0.510193,0.589006,0.0608729,0.501658,0.207435,0.831894,0.779498,0.393018,0.00600922,0.76537,0.0042147,0.301898,0.904143,0.432864,0.153991,0.409813,0.435601,0.993245,0.05678,0.309983,0.616763,0.837723,0.579115,0.977379,0.0172151,0.321953,0.616139,0.447444,0.126179,0.417392,0.54033,0.835157,0.294858,0.431856,0.138258,0.0175863,0.906291,0.668985,0.565581,0.458012,0.223366,0.516131,0.780088,0.866694,0.248059,0.451365,0.230491,0.326697,0.682499,0.213062,0.652303,0.322915,0.12834,0.494763,0.551723,0.394079,0.493016,0.479006,0.930836,0.856045,0.710239,0.638703,0.584167,0.782682,0.100263,0.312282,0.424141,0.251771,0.917139,0.836549,0.982238,0.17315,0.177444,0.809253,0.980028,0.790473,0.416834,0.0313289,0.559991,0.0689768,0.64094,0.520159,0.123632,0.763867,0.871344,0.219691,0.828733,0.446245,0.839466,0.427585,0.917327,0.794591,0.125441,0.0529299,0.38966,0.09927,0.706207,0.420067,0.425721,0.645386,0.819862,0.2464,0.156256,0.0641087,0.859533,0.948764,0.128023,0.668753,0.867437,0.421813,0.651995,0.358536,0.546967,0.356465,0.203342,0.53716,0.346143,0.792829,0.165405,0.0308818,0.586359,0.959344,0.693937,0.569658,0.559455,0.671024,0.496283,0.294107,0.77332,0.703473,0.977902,0.523944,0.14832,0.69162,0.965526,0.0804614,0.644232,0.553715,0.412727,0.305402,0.761629,0.609761,0.404016,0.331373,0.0811433,0.771568,0.859675,0.410334,0.456584,0.274976,0.901598,0.298999,0.966991,0.75703,0.669308,0.342438,0.359488,0.33797,0.989754,0.521068,0.424675,0.717116,0.34117,0.358659,0.170381,0.340601,0.365045,0.165913,0.616197,0.355853,0.779022,0.370616,0.366952,0.128177,0.120711,0.222966,0.802707,0.731208,0.166155,0.59853,0.937424,0.771204,0.138783,0.286477,0.945271,0.790009,0.580982,0.313648,0.584738,0.00146371,0.700599,0.611889,0.704562,0.400323,0.0760702,0.0676963,0.888887,0.0782717,0.487594,0.27339,0.0585571,0.732779,0.579321,0.288608,0.0078907,0.668531,0.665099,0.361027,0.646992,0.622534,0.44155,0.115083,0.257316,0.370044,0.287697,0.379766,0.297697,0.982896,0.0505562,0.951373,0.847559,0.171365,0.465697,0.868187,0.683745,0.966378,0.215271,0.997362,0.993968,0.53869,0.979788,0.577754,0.962,0.538413,0.33706,0.642181,0.596977,0.7302,0.894055,0.804531,0.486804,0.915843,0.848039,0.00155002,0.548788,0.111137,0.47264,0.752197,0.881149,0.595141,0.593124,0.659839,0.0745749,0.857933,0.748907,0.0710944,0.803505,0.0858527,0.202383,0.793062,0.77294,0.796873,0.830071,0.229785,0.512283,0.302209,0.760453,0.396299,0.906482,0.729882,0.265031,0.06458,0.10752,0.419814,0.659878,0.282551,0.84365,0.802734,0.563835,0.909175,0.536338,0.743401,0.510209,0.0648112,0.705574,0.255197,0.628821,0.232023,0.236102,0.203293,0.1299,0.158759,0.0490078,0.309598,0.73524,0.0148658,0.309286,0.925774,0.60525,0.888194,0.581936,0.286463,0.793303,0.847544,0.374218,0.103565,0.799747,0.129083,0.695526,0.624378,0.795729,0.632847,0.451636,0.732589,0.11964,0.138956,0.501253,0.211072,0.240477,0.329175,0.421191,0.520548,0.844492,0.379113,0.474375,0.953346,0.0436831,0.598057,0.120107,0.894852,0.199466,0.684017,0.700074,0.831154,0.715779,0.00511116,0.170248,0.125852,0.375641,0.445843,0.101625,0.477851,0.529761,0.892176,0.243901,0.440272,0.585562,0.221251,0.365132,0.0784833,0.0376787,0.16373,0.11956,0.471,0.0471927,0.395752,0.760631,0.273196,0.276863,0.27671,0.807131,0.46708,0.0216263,0.251767,0.719633,0.145479,0.918341,0.875994,0.209714,0.728191,0.0824429,0.233676,0.785473,0.552843,0.684161,0.138697,0.273962,0.188818,0.00263113,0.311556,0.283508,0.92696,0.487805,0.0412593,0.335482,0.660308,0.399273,0.0869973,0.871685,0.647817,0.944476,0.92089,0.950041,0.495258,0.408497,0.579588,0.805991,0.864413,0.495967,0.13215,0.138783,0.573367,0.334757,0.405476,0.6619,0.570287,0.895089,0.747781,0.857012,0.140723,0.814763,0.621689,0.962483,0.939287,0.8414,0.618789,0.814277,0.689824,0.419919,0.256177,0.602891,0.766251,0.722997,0.832925,0.487771,0.362485,0.69347,0.106941,0.753591,0.31253,0.182977,0.87527,0.605694,0.267516,0.0279157,0.241376,0.327263,0.53467,0.881154,0.122636,0.0087049,0.558169,0.307577,0.728943,0.903643,0.521279,0.197105,0.929249,0.871462,0.348116,0.369738,0.576108,0.757948,0.134742,0.183393,0.940448,0.60816,0.927977,0.0947766,0.764057,0.305411,0.0432242,0.74605,0.506088,0.98624,0.345288,0.16318,0.762463,0.339854,0.685852,0.936844,0.175962,0.906277,0.260101,0.59834,0.397729,0.717454,0.0258363,0.940584,0.110322,0.819271,0.720299,0.0383791,0.170746,0.123321,0.548915,0.139302,0.759539,0.311666,0.161644,0.011121,0.981899,0.193074,0.661124,0.884934,0.879226,0.401049,0.57248,0.273228,0.318901,0.238656,0.589716,0.997279,0.134448,0.449874,0.76223,0.48444,0.784614,0.881359,0.587501,0.706329,0.868607,0.294343,0.661012,0.934197,0.77531,0.0758206,0.23066,0.571874,0.223222,0.757891,0.523717,0.410384,0.284877,0.702822,0.587605,0.523421,0.119222,0.216958,0.724458,0.118942,0.0999032,0.961203,0.561126,0.912371,0.844218,0.0144757,0.576887,0.537218,0.382343,0.0854478,0.996807,0.207289,0.298929,0.599791,0.102457,0.462151,0.0945899,0.905033,0.751713,0.662151,0.809715,0.244381,0.728712,0.255124,0.737317,0.220631,0.736269,0.12958,0.215263,0.781834,0.42599,0.0813939,0.0983253,0.860262,0.125081,0.0729061,0.112229,0.181803,0.387636,0.548053,0.125732,0.290536,0.637678,0.570437,0.997069,0.926319,0.0117256,0.169315,0.539875,0.980095,0.326339,0.153791,0.511265,0.181209,0.908832,0.708218,0.320707,0.538462,0.62637,0.74614,0.12545,0.822137,0.892466,0.0390124,0.818596,0.112657,0.763718,0.872076,0.939781,0.527133,0.0330927,0.619945,0.307994,0.298412,0.263367,0.360306,0.797629,0.982263,0.943007,0.384592,0.223315,0.404656,0.134113,0.293894,0.657556,0.40585,0.510738,0.425738,0.155254,0.152436,0.66061,0.400932,0.348903,0.312795,0.382184,|0.842672,0.9646,0.254945,0.227789,0.267532,0.521052,0.797127,0.775814,0.932064,0.467887,0.161102,0.457854,0.605325,0.178261,0.197058,0.0182669,0.780519,0.87652,0.870118,0.525465,0.726265,0.228317,0.204267,0.820987,0.864449,0.174375,0.122662,0.634838,0.939456,0.920907,0.559972,0.613306,0.384257,0.308412,0.261306,0.202244,0.0228032,0.505206,0.430546,0.78185,0.588924,0.676097,0.917103,0.18697,0.99341,0.206763,0.753944,0.112089,0.0977571,0.0439383,0.720127,0.504868,0.883543,0.960547,0.468412,0.131404,0.177538,0.303226,0.422443,0.317407,0.121126,0.412679,0.0354394,0.0189636,0.713147,0.5778,0.934941,0.560768,0.634643,0.970132,0.941523,0.0713518,0.157248,0.5456,0.00809693,0.8866,0.542692,0.659935,0.835098,0.820503,0.313375,0.184371,0.0719314,0.45202,0.0558818,0.114421,0.739038,0.439756,0.734535,0.622563,0.183253,0.460953,0.985727,0.41921,0.316053,0.633645,0.425871,0.362382,0.564511,0.984042,0.681312,0.938313,0.187125,0.956929,0.623781,0.633597,0.00867879,0.825583,0.247579,0.317743,0.491152,0.685223,0.847256,0.755523,0.460477,0.904251,0.731496,0.880108,0.801158,0.500174,0.123192,0.495021,0.636679,0.0731671,0.355115,0.210204,0.360611,0.0174797,0.110911,0.452543,0.965721,0.0300851,0.186849,0.872469,0.414472,0.912391,0.330876,0.879897,0.272175,0.656479,0.0590786,0.0219647,0.768447,0.468094,0.318159,0.344978,0.369481,0.926581,0.553358,0.608332,0.542581,0.300698,0.956936,0.651276,0.883594,0.329957,0.753311,0.0321568,0.564981,0.496351,0.132775,0.587466,0.938523,0.472144,0.380692,0.453104,0.00336266,0.175537,0.71687,0.720089,0.585853,0.605953,0.126937,0.261353,0.697789,0.698236,0.533768,0.886311,0.366557,0.755897,0.354096,0.528673,0.377947,0.297761,0.0341172,0.398188,0.0248948,0.43383,0.880732,0.324217,0.171789,0.963515,0.572842,0.151626,0.518781,0.76116,0.566277,0.875415,0.44287,0.316495,0.261783,0.411499,0.93899,0.808612,0.970193,0.00371403,0.840126,0.981616,0.928477,0.204123,0.193987,0.785996,0.204218,0.947161,0.519212,0.453195,0.233093,0.744915,0.165626,0.384328,0.280425,0.669689,0.038917,0.604029,0.440813,0.476173,0.317213,0.74803,0.976824,0.0914038,0.644542,0.268652,0.0550432,0.105016,0.136604,0.950772,0.315776,0.277774,0.767675,0.643516,0.0519512,0.986127,0.736867,0.553288,0.555283,0.547495,0.761428,0.939016,0.106215,0.438729,0.315571,0.155126,0.98485,0.880856,0.757314,0.193943,0.00607932,0.100185,0.920896,0.65461,0.734289,0.711806,0.613159,0.662727,0.14827,0.647523,0.959435,0.740505,0.819719,0.820198,0.963231,0.190343,0.468846,0.484841,0.335674,0.618733,0.894902,0.815477,0.935621,0.616537,0.113487,0.342082,0.818485,0.0399607,0.649224,0.550619,0.804115,0.805129,0.356739,0.901421,0.638331,0.763076,0.474297,0.781244,0.615354,0.62726,0.141412,0.436579,0.930962,0.323054,0.146807,0.375675,0.779846,0.388632,0.872849,0.880214,0.24141,0.967463,0.195298,0.413635,0.0471645,0.11899,0.155958,0.2046,0.157683,0.125866,0.208521,0.63581,0.529258,0.83052,0.261292,0.172985,0.139306,0.718542,0.58827,0.221842,0.711529,0.86515,0.664766,0.387822,0.702481,0.194197,0.575867,0.644175,0.526087,0.0664728,0.275441,0.395133,0.923778,0.86952,0.131779,0.621601,0.808853,0.454291,0.485306,0.351021,0.124797,0.54424,0.158057,0.890942,0.35712,0.855939,0.216561,0.584976,0.158467,0.243006,0.546878,0.604479,0.287359,0.447499,0.0399113,0.745753,0.320542,0.663562,0.0592522,0.929962,0.391223,0.723104,0.223553,0.366529,0.540044,0.08356,0.0321721,0.18271,0.616341,0.921795,0.720939,0.858082,0.937323,0.426608,0.791947,0.649802,0.778665,0.352782,0.0179561,0.0631726,0.822245,0.635657,0.59744,0.783782,0.466463,0.679379,0.743272,0.538668,0.154809,0.604131,0.541843,0.0270931,0.804273,0.712363,0.370444,0.595116,0.946627,0.00184298,0.565133,0.106743,0.941614,0.660564,0.629341,0.751122,0.448665,0.317962,0.841398,0.930694,0.787237,0.204784,0.905589,0.384958,0.5403,0.993371,0.472058,0.36459,0.506859,0.936964,0.96777,0.489247,0.890608,0.484458,0.329951,0.353865,0.351501,0.377409,0.849743,0.861543,0.949338,0.303682,0.506352,0.451348,0.841693,0.965506,0.573386,0.588296,0.460015,0.882798,0.692051,0.209935,0.43071,0.302977,0.0856893,0.592769,0.233115,0.328262,0.406401,0.308306,0.847553,0.410739,0.492302,0.937951,0.92917,0.990753,0.864678,0.14995,0.544372,0.530874,0.838989,0.697595,0.694997,0.662617,0.500176,0.495563,0.752544,0.304787,0.803189,0.0321066,0.513923,0.205278,0.048822,0.397329,0.733754,0.494797,0.807864,0.72534,0.772315,0.263979,0.869513,0.666145,0.731888,0.60022,0.2265,0.344597,0.631374,0.967439,0.5796,0.613686,0.0317509,0.425221,0.936321,0.877621,0.177497,0.902478,0.0528267,0.417592,0.873431,0.901755,0.973588,0.672906,0.643634,0.0527569,0.0585915,0.430848,0.0438097,0.0774689,0.899222,0.52719,0.75291,0.84188,0.259118,0.619444,0.799023,0.73907,0.0224205,0.513282,0.456325,0.0691326,0.519475,0.503791,0.621876,0.599072,0.497372,0.778894,0.655154,0.203599,0.717647,0.0936808,0.714553,0.300857,0.263363,0.330936,0.790919,0.280988,0.972632,0.760699,0.472584,0.270782,0.588951,0.863909,0.775818,0.392594,0.340731,0.663851,0.15879,0.606745,0.952304,0.473732,0.673525,0.392443,0.60391,0.147194,0.255075,0.31229,0.802234,0.676165,0.332286,0.252659,0.391251,0.906429,0.659012,0.0152913,0.3353,0.228043,0.770986,0.174023,0.970753,0.961247,0.717934,0.556094,0.595915,0.854531,0.513015,0.050944,0.111098,0.771748,0.322989,0.940117,0.0137402,0.884947,0.993726,0.670253,0.50731,0.996638,0.72891,0.206637,0.88837,0.269319,0.27032,0.714894,0.349325,0.690811,0.572777,0.76314,0.623669,0.608624,0.756252,0.535151,0.980321,0.78032,0.54671,0.647269,0.63295,0.583337,0.275398,0.34113,0.252327,0.646272,0.153827,0.623494,0.687452,0.125749,0.255989,0.926007,0.39006,0.214481,0.40458,0.201757,0.423403,0.630383,0.0659332,0.769777,0.5865,0.831648,0.987787,0.615114,0.381088,0.900216,0.405355,0.842618,0.399846,0.56297,0.280018,0.126619,0.182011,0.237252,0.391662,0.608546,0.81849,0.622402,0.985736,0.102826,0.806115,0.04584,0.784183,0.804382,0.0243043,0.988616,0.232748,0.542589,0.562497,0.0971604,0.980779,0.0940529,0.0293607,0.870898,0.74273,0.263303,0.459342,0.149199,0.846319,0.409738,0.318542,0.837475,0.356797,0.474798,0.21926,0.52253,0.472272,0.0996733,0.0574221,0.176879,0.198563,0.886607,0.74421,0.495912,0.381995,0.292515,0.785469,0.876573,0.949799,0.506331,0.773119,0.91605,0.347083,0.308935,0.819551,0.0274016,0.232094,0.439465,0.389897,0.403689,0.135106,0.835989,0.83493,0.113109,0.909901,0.207229,0.781792,0.654932,0.791912,0.552518,0.244924,0.88899,0.744103,0.317049,0.232784,0.998856,0.518633,0.129408,0.773002,0.434523,0.445477,0.733518,0.83192,0.820628,0.685359,0.216875,0.562642,0.586167,0.168719,0.534544,0.15243,0.592383,0.513484,0.787995,0.873593,0.543867,0.383243,0.325361,0.355504,0.286893,0.297038,0.475555,0.93672,0.92114,0.119931,0.413437,0.560762,0.832347,0.595368,0.274577,0.550366,0.0678571,0.565947,0.333067,0.964517,0.650765,0.65339,0.764962,0.268959,0.190616,0.291732,0.110148,0.387058,0.0846997,0.534854,0.343121,0.740535,0.220193,0.499487,0.854309,0.411697,0.152303,0.45,0.893721,0.016643,0.494298,0.4601,0.176189,0.882252,0.323285,0.333957,0.74018,0.305401,0.965503,0.0688861,0.432509,0.924195,0.814229,0.378842,0.0210617,0.56952,0.971706,0.260837,0.0928197,0.50194,0.465179,0.75823,0.851094,0.667862,0.824106,0.551355,0.172739,0.757894,0.884579,0.0216455,0.0778398,0.92366,0.171692,0.406276,0.0491251,0.686107,0.607999,0.760907,0.819939,0.320657,0.217866,0.887959,0.306323,0.592831,0.317975,0.160913,0.66122,0.234372,0.421885,0.230763,0.364807,0.416615,0.335863,0.786605,0.096082,0.791705,0.511104,0.322845,0.858126,0.348252,0.890734,0.957123,0.840769,0.460923,0.917182,0.707926,0.0397497,0.0320328,0.234047,0.585206,0.695912,0.877333,0.314415,0.155049,0.3773,0.871089,0.19484,0.82938,0.815248,0.262032,0.0375847,0.396733,0.854158,0.552791,0.215286,0.0587667,0.853777,0.130398,0.0367144,0.610479,0.0145549,0.46415,0.0466524,0.824732,0.327616,0.623804,0.6937,0.0577904,0.448357,0.245744,0.518642,0.310134,0.635191,0.83683,0.367152,0.864511,0.901095,0.158178,0.845825,0.095605,0.0247351,0.391555,0.672277,0.506908,0.270344,0.528818,0.211168,0.964988,0.559322,0.0481884,0.150028,0.531964,0.026284,0.691958,0.652011,0.683473,0.588728,0.187919,0.0914284,0.082101,0.993139,0.274592,0.0632507,0.496712,0.0918231,0.059506,0.19736,0.699986,0.730283,0.667001,0.898514,0.761113,0.576265,0.425809,0.366634,0.530826,0.425926,0.601919,0.6546,0.844423,0.108134,0.20248,0.418598,0.837148,0.542583,0.505607,0.269323,0.75227,0.761767,0.763944,0.503024,0.629081,0.332315,0.881031,0.106258,0.550955,0.277892,0.00214189,0.607321,0.236375,0.184744,0.558402,0.69081,0.803398,0.0443232,0.655774,0.402362,0.963852,0.932198,0.407153,0.269746,0.0117708,0.6888,0.911966,0.801835,0.846387,0.457747,0.0786436,0.691424,0.629445,0.260528,0.0362954,0.1082,0.876623,0.187978,0.789567,0.0615436,0.403249,0.086327,0.696717,0.862315,0.619639,0.103535,0.977479,0.333534,0.12041,0.514843,0.25005,0.653371,0.775429,0.649612,0.719126,0.0939773,0.0756122,0.789518,0.953049,0.277129,0.453498,0.657224,0.592062,0.353045,0.927603,0.350096,0.468887,0.146796,0.774116,0.82284,|0.402642,0.875235,0.530072,0.10288,0.558633,0.984264,0.402516,0.565325,0.363149,0.627236,0.481746,0.528326,0.401628,0.533276,0.0976385,0.565896,0.161147,0.182303,0.119827,0.763322,0.554251,0.741002,0.998808,0.667517,0.423051,0.607188,0.522473,0.684995,0.878544,0.597888,0.652997,0.119771,0.0931036,0.256721,0.904439,0.861133,0.41723,0.643785,0.565635,0.266104,0.0131994,0.491054,0.240144,0.37146,0.69663,0.151428,0.920616,0.749911,0.163293,0.600592,0.553736,0.282592,0.0216457,0.567322,0.225562,0.28141,0.682365,0.642519,0.125388,0.0507244,0.72358,0.529155,0.400838,0.887992,0.857572,0.988427,0.765026,0.305447,0.135242,0.801008,0.802967,0.971444,0.198763,0.681707,0.180543,0.153604,0.884459,0.148463,0.680109,0.0376516,0.637677,0.391341,0.43027,0.625914,0.976932,0.769264,0.533202,0.608983,0.0847556,0.209614,0.536397,0.929874,0.905204,0.444359,0.159581,0.180181,0.639707,0.302535,0.281317,0.160437,0.449703,0.898848,0.0343112,0.267958,0.731888,0.664808,0.49546,0.69686,0.54691,0.0300754,0.706642,0.00836021,0.654054,0.929578,0.112702,0.29095,0.359627,0.945725,0.546716,0.121365,0.832896,0.212865,0.968793,0.308487,0.180205,0.919849,0.577288,0.541897,0.485376,0.721968,0.71351,0.416176,0.0172894,0.993186,0.649847,0.905465,0.705555,0.303372,0.156146,0.208035,0.395805,0.11479,0.995252,0.0415249,0.088697,0.942414,0.706763,0.537568,0.600875,0.322469,0.890205,0.398112,0.0112481,0.0154569,0.978373,0.722803,0.625358,0.203747,0.415876,0.249245,0.0995682,0.456421,0.8703,0.766395,0.815247,0.719267,0.799507,0.891024,0.843035,0.851091,0.00291485,0.131795,0.0674474,0.0902992,0.686565,0.943682,0.102021,0.502537,0.725173,0.500156,0.910745,0.687949,0.898443,0.789012,0.606479,0.63073,0.880274,0.737173,0.509697,0.827662,0.32776,0.542293,0.0486516,0.221764,0.129167,0.839724,0.951973,0.015447,0.257729,0.0953615,0.455713,0.379051,0.682061,0.15714,0.886759,0.434019,0.510726,0.97289,0.62458,0.629201,0.878612,0.360764,0.333258,0.598808,0.0236698,0.743188,0.769487,0.661172,0.883143,0.956412,0.258009,0.74271,0.345207,0.542359,0.91967,0.536186,0.480358,0.360156,0.348421,0.730003,0.533556,0.514832,0.142211,0.0539429,0.156925,0.978637,0.0236871,0.281987,0.758478,0.893651,0.800669,0.777908,0.112182,0.219202,0.345921,0.455096,0.18984,0.232567,0.53834,0.51826,0.470763,0.87528,0.969374,0.837888,0.946616,0.181115,0.284127,0.898695,0.673976,0.387799,0.945173,0.441515,0.237831,0.781122,0.170708,0.771623,0.54564,0.251836,0.358243,0.166295,0.41668,0.4128,0.399559,0.932634,0.304676,0.158783,0.790195,0.152258,0.00971413,0.51504,0.643375,0.935293,0.511456,0.687269,0.934168,0.732013,0.42159,0.657209,0.388744,0.584335,0.792455,0.428852,0.602957,0.366157,0.897357,0.409665,0.241574,0.318006,0.372097,0.0892962,0.0529081,0.348904,0.953323,0.968913,0.0622696,0.306833,0.0812418,0.161782,0.0798664,0.535662,0.149711,0.501697,0.663211,0.594595,0.290649,0.945279,0.752159,0.307851,0.486555,0.0971527,0.396586,0.367694,0.0579473,0.184799,0.151836,0.477513,0.665673,0.85425,0.644054,0.186213,0.20869,0.104152,0.958088,0.404973,0.0909117,0.414688,0.641026,0.536215,0.334416,0.346711,0.328378,0.419551,0.912385,0.501325,0.835717,0.857169,0.773396,0.144023,0.261119,0.942703,0.866178,0.873941,0.50521,0.284566,0.886267,0.500017,0.0221061,0.419103,0.337743,0.27205,0.382236,0.112302,0.879235,0.581924,0.673464,0.767907,0.671341,0.566933,0.130298,0.854884,0.910326,0.832879,0.847782,0.216633,0.891576,0.0243778,0.72703,0.305219,0.552835,0.639248,0.839198,0.177072,0.003016,0.917696,0.752735,0.434838,0.246916,0.440151,0.362929,0.190825,0.933214,0.173092,0.0419266,0.720402,0.766701,0.170485,0.783083,0.106123,0.264964,0.177261,0.40172,0.328791,0.482746,0.615991,0.369328,0.77482,0.348945,0.00234735,0.0603393,0.175272,0.996203,0.819408,0.262561,0.124924,0.0321562,0.369107,0.794087,0.0530608,0.348245,0.771058,0.725781,0.450465,0.377476,0.293176,0.659323,0.0574666,0.679354,0.606218,0.699347,0.265073,0.803465,0.384415,0.716951,0.707169,0.955483,0.344249,0.511222,0.416391,0.720222,0.449615,0.173083,0.33758,0.0805104,0.452485,0.423857,0.274602,0.528936,0.205825,0.973858,0.181342,0.529777,0.142242,0.614209,0.640633,0.251185,0.521299,0.729648,0.0202415,0.147671,0.619276,0.434421,0.242785,0.0154397,0.647679,0.322002,0.138869,0.925452,0.371682,0.36914,0.881679,0.497396,0.368867,0.108557,0.600084,0.276092,0.58739,0.0647274,0.641371,0.901393,0.281218,0.386081,0.153541,0.828092,0.874646,0.0780433,0.510193,0.462036,0.505687,0.953735,0.872776,0.787109,0.0121316,0.915341,0.291503,0.0384367,0.925073,0.90536,0.43562,0.230121,0.0965582,0.405544,0.411804,0.916879,0.487117,0.314757,0.280774,0.840958,0.0119242,0.206982,0.994565,0.990443,0.338004,0.587685,0.707463,0.291971,0.561387,0.934153,0.572024,0.458668,0.690953,0.79683,0.602269,0.237922,0.127777,0.740054,0.205797,0.597933,0.131784,0.519094,0.941482,0.192799,0.986474,0.351953,0.766673,0.162227,0.393171,0.0705307,0.780381,0.459659,0.0416967,0.116334,0.991221,0.962631,0.512515,0.251299,0.616561,0.111831,0.480843,0.510408,0.580175,0.864966,0.0850747,0.717314,0.140099,0.252681,0.763427,0.324795,0.42337,0.245718,0.0909037,0.208499,0.976297,0.855037,0.842734,0.336711,0.712444,0.168806,0.250605,0.646157,0.918187,0.804841,0.0590783,0.863777,0.367554,0.461935,0.305436,0.547686,0.325322,0.0990548,0.250481,0.245516,0.0481095,0.930629,0.67758,0.524843,0.760165,0.215331,0.471757,0.51053,0.712323,0.838717,0.693179,0.652753,0.243793,0.358526,0.288599,0.156505,0.375864,0.544614,0.916345,0.589307,0.0495653,0.592203,0.650189,0.0325623,0.622664,0.561521,0.812426,0.165508,0.0911781,0.248742,0.0892025,0.54586,0.859362,0.292278,0.768902,0.722971,0.962253,0.638998,0.054454,0.845678,0.234278,0.0777276,0.0159983,0.211666,0.933068,0.663213,0.710668,0.113475,0.659856,0.0753478,0.661229,0.316245,0.592207,0.986471,0.239583,0.00671238,0.854865,0.484733,0.901353,0.857476,0.918139,0.472788,0.851963,0.796221,0.387682,0.5709,0.52146,0.00418317,0.312253,0.809504,0.150411,0.859707,0.519917,0.881929,0.899187,0.196003,0.374526,0.673437,0.836227,0.102026,0.0782413,0.882075,0.410741,0.814989,0.527861,0.549056,0.232177,0.384426,0.518741,0.132619,0.61766,0.110093,0.547755,0.865312,0.0406337,0.215934,0.617159,0.294447,0.502688,0.642929,0.90262,0.15516,0.0183915,0.658251,0.902311,0.30479,0.735555,0.532232,0.772163,0.397122,0.154135,0.364461,0.514827,0.199456,0.531655,0.104651,0.818605,0.972198,0.0313537,0.265594,0.917226,0.378001,0.535716,0.418972,0.728555,0.592658,0.613275,0.444602,0.23757,0.744226,0.874948,0.499635,0.286837,0.127189,0.284656,0.247871,0.988216,0.387617,0.410831,0.497018,0.58673,0.383799,0.735883,0.614146,0.13884,0.949272,0.486328,0.746004,0.560663,0.446748,0.935081,0.341171,0.473913,0.212902,0.900475,0.247974,0.586981,0.343803,0.171805,0.914774,0.955391,0.101446,0.422799,0.363865,0.524095,0.989995,0.286967,0.150688,0.444656,0.594651,0.130962,0.622599,0.505939,0.153081,0.732832,0.376985,0.0962523,0.399996,0.0908056,0.268735,0.942281,0.789038,0.978945,0.484752,0.597239,0.490939,0.16293,0.00449973,0.202417,0.802289,0.992896,0.0493879,0.422972,0.745171,0.67992,0.060923,0.0420792,0.687326,0.961422,0.154985,0.101605,0.748967,0.779753,0.945484,0.93237,0.417612,0.306959,0.52498,0.0538373,0.42047,0.0482892,0.582489,0.804122,0.709104,0.725011,0.165989,0.267898,0.965732,0.878536,0.325325,0.118531,0.304327,0.467738,0.550389,0.532767,0.893261,0.150323,0.543653,0.778748,0.0468017,0.615387,0.0222345,0.562614,0.703766,0.0324326,0.237186,0.79897,0.922952,0.212074,0.134841,0.516159,0.22499,0.688743,0.0588822,0.429201,0.249049,0.361821,0.498415,0.989759,0.117704,0.785051,0.432671,0.0680425,0.838575,0.0178648,0.58502,0.122953,0.57453,0.109014,0.93263,0.500594,0.522525,0.171236,0.71497,0.917248,0.605498,0.80467,0.173857,0.432825,0.693726,0.295461,0.9457,0.644235,0.264871,0.825025,0.0304291,0.104358,0.726637,0.0923073,0.660459,0.5389,0.468526,0.514258,0.227157,0.81901,0.451555,0.269756,0.965484,0.921011,0.0808211,0.166627,0.591251,0.000846744,0.546941,0.542846,0.363573,0.406189,0.681173,0.920526,0.345434,0.505943,0.878302,0.297988,0.195365,0.223005,0.161487,0.526012,0.10631,0.139506,0.25127,0.566354,0.436285,0.938662,0.648608,0.0927521,0.605175,0.0245488,0.77308,0.967186,0.339112,0.816732,0.149379,0.965577,0.0542809,0.75568,0.999299,0.0292488,0.871382,0.75986,0.857388,0.0847701,0.406349,0.942737,0.520114,0.685296,0.255111,0.430932,0.600504,0.902398,0.844049,0.130033,0.564595,0.704538,0.664782,0.054683,0.152243,0.908368,0.227032,0.284901,0.0250632,0.914743,0.298524,0.917315,0.980175,0.263408,0.769626,0.957455,0.187912,0.371618,0.299804,0.0317914,0.801459,0.047039,0.93322,0.257275,0.824615,0.495564,0.77127,0.496066,0.931997,0.311399,0.327095,0.946868,0.888635,0.340633,0.940936,0.718106,0.767876,0.630632,0.218129,0.655754,0.335042,0.100331,0.29847,0.181811,0.84187,0.994655,0.935237,0.712226,0.679982,0.528245,0.192804,0.819552,0.804659,0.0256149,0.585278,0.000142574,0.322565,0.269989,0.544849,0.116207,0.0265011,0.845253,0.95192,0.956043,0.561234,0.0476592,0.931058,0.797246,0.462193,0.175973,0.510197,0.985708,0.916263,0.605737,0.249217,0.48282,0.363481,0.212264,|0.0461553,0.39376,0.109149,0.79597,0.13229,0.523179,0.929084,0.583932,0.190179,0.320304,0.322269,0.0307503,0.815442,0.844209,0.327976,0.345609,0.275795,0.844949,0.227274,0.0622538,0.523225,0.6037,0.721736,0.348868,0.238643,0.050724,0.317574,0.371596,0.312088,0.921839,0.704541,0.226874,0.843444,0.825745,0.502631,0.0309682,0.64267,0.634383,0.615006,0.707953,0.10116,0.149307,0.0322345,0.960937,0.896936,0.0929497,0.140341,0.481254,0.902891,0.75808,0.0708565,0.887532,0.902359,0.549261,0.845877,0.31304,0.0835111,0.266145,0.518144,0.693041,0.749637,0.680876,0.925337,0.427565,0.389916,0.350231,0.582281,0.847138,0.569183,0.521881,0.352359,0.634056,0.327183,0.0126334,0.425019,0.270682,0.141227,0.227916,0.982611,0.709482,0.439991,0.720355,0.30035,0.0800716,0.908088,0.0172476,0.691974,0.52806,0.864811,0.256583,0.651853,0.395979,0.853374,0.0836948,0.747951,0.254137,0.399264,0.0451626,0.235282,0.88877,0.150264,0.497471,0.0735314,0.971307,0.852363,0.0951468,0.384095,0.771786,0.966711,0.569434,0.144116,0.961119,0.775472,0.656533,0.26207,0.188398,0.0749068,0.217651,0.930065,0.289575,0.138204,0.866339,0.489907,0.531447,0.765732,0.553145,0.957029,0.524287,0.170298,0.189183,0.541738,0.0435719,0.52966,0.878512,0.241677,0.998917,0.581106,0.957881,0.710603,0.278485,0.580942,0.755892,0.0498945,0.651231,0.315004,0.933267,0.410211,0.525206,0.367923,0.889847,0.242531,0.88237,0.0265171,0.621973,0.752962,0.0172786,0.394761,0.937977,0.89332,0.987864,0.609891,0.876186,0.70022,0.817463,0.759198,0.516944,0.46655,0.117517,0.787697,0.180881,0.318586,0.0601115,0.850139,0.342874,0.335195,0.159906,0.698483,0.04834,0.431661,0.0623382,0.0869944,0.711976,0.0281978,0.201328,0.835557,0.0364594,0.319836,0.0528204,0.375732,0.467366,4.59552e-05,0.328311,0.419743,0.614683,0.951084,0.57265,0.539029,0.262897,0.529284,0.146927,0.288741,0.244928,0.808996,0.962916,0.252653,0.752048,0.0533092,0.706183,0.364267,0.177659,0.365721,0.276746,0.645777,0.045768,0.496141,0.720259,0.467776,0.00966716,0.0113586,0.170178,0.807119,0.123792,0.452125,0.841323,0.797683,0.456144,0.957516,0.862109,0.704659,0.823606,0.91848,0.764996,0.876474,0.944975,0.866097,0.199178,0.0871242,0.999477,0.726197,0.302636,0.310453,0.995365,0.603662,0.786742,0.0329058,0.0361913,0.941088,0.609711,0.97855,0.133816,0.422665,0.0152402,0.0251821,0.0184836,0.989477,0.736575,0.375944,0.861078,0.975657,0.794994,0.252255,0.550466,0.0628245,0.475478,0.574477,0.989826,0.638321,0.743929,0.68952,0.550149,0.443245,0.81283,0.951437,0.951213,0.76665,0.913811,0.786427,0.0381891,0.810555,0.0103343,0.229581,0.0230252,0.247585,0.711323,0.291665,0.598064,0.802907,0.724914,0.509558,0.176215,0.112706,0.15919,0.347044,0.767235,0.61505,0.955785,0.0255278,0.949952,0.743634,0.129673,0.778025,0.465132,0.0510757,0.0492699,0.690968,0.706393,0.497515,0.282516,0.783816,0.0144421,0.307844,0.767827,0.568869,0.398217,0.955149,0.396719,0.824158,0.420992,0.067071,0.832391,0.0465075,0.125637,0.87948,0.620101,0.614516,0.663609,0.178453,0.914147,0.23985,0.0757452,0.463808,0.857087,0.15915,0.982919,0.829833,0.371122,0.168069,0.263211,0.524267,0.0760285,0.165388,0.125301,0.488723,0.256072,0.290515,0.944987,0.960587,0.861509,0.943552,0.0928178,0.677138,0.173381,0.305256,0.356586,0.653853,0.166521,0.447245,0.407072,0.26572,0.886496,0.724625,0.173939,0.937257,0.0884251,0.235653,0.419787,0.748488,0.561403,0.62493,0.843782,0.712957,0.098055,0.962854,0.826399,0.114731,0.997967,0.620623,0.240572,0.705171,0.478877,0.447498,0.265537,0.153784,0.762758,0.541124,0.934248,0.854301,0.412658,0.538728,0.300826,0.188113,0.6568,0.0466266,0.864111,0.657682,0.891019,0.0786089,0.209099,0.472128,0.146767,0.988999,0.872821,0.209499,0.566641,0.421101,0.849093,0.38316,0.107891,0.00284111,0.120939,0.885202,0.885438,0.316631,0.305654,0.340271,0.946976,0.452419,0.760348,0.890697,0.427218,0.0612123,0.485798,0.495448,0.279239,0.113894,0.774199,0.185911,0.123973,0.187067,0.414443,0.203553,0.67896,0.259497,0.0863051,0.125167,0.374851,0.947758,0.68983,0.145425,0.670667,0.867251,0.323492,0.648952,0.227685,0.9727,0.705536,0.735871,0.85798,0.0734905,0.670923,0.54935,0.450388,0.0545118,0.182536,0.749914,0.315959,0.414189,0.0913148,0.690768,0.971227,0.582995,0.0993327,0.361592,0.371675,0.670213,0.737195,0.00805515,0.673271,0.614662,0.596605,0.103177,0.825669,0.16218,0.812512,0.0110018,0.278595,0.412997,0.527603,0.566071,0.245685,0.717868,0.0098719,0.798868,0.724239,0.455804,0.102652,0.0808212,0.174436,0.949225,0.816954,0.348699,0.485108,0.709877,0.464592,0.353847,0.381846,0.820062,0.960835,0.467379,0.859181,0.631515,0.236324,0.554535,0.26427,0.322128,0.430901,0.730389,0.967338,0.551739,0.311472,0.28603,0.705174,0.470155,0.850642,0.957144,0.97018,0.758911,0.433544,0.957562,0.0910596,0.486713,0.777795,0.353401,0.835314,0.782476,0.426985,0.28722,0.651533,0.864591,0.868751,0.321438,0.309685,0.250651,0.715074,0.101476,0.17247,0.699514,0.0805604,0.140315,0.438544,0.6365,0.830058,0.0935866,0.207435,0.840939,0.391544,0.971996,0.911125,0.753162,0.304321,0.0224776,0.569046,0.178318,0.996998,0.330162,0.986193,0.272376,0.526586,0.146944,0.0373333,0.288619,0.0474384,0.688895,0.258395,0.893533,0.550478,0.818808,0.718598,0.861162,0.418727,0.294233,0.85587,0.490358,0.936014,0.355637,0.376175,0.229765,0.794855,0.900995,0.0876394,0.668247,0.198295,0.481213,0.774883,0.0529568,0.340754,0.302592,0.274369,0.0520218,0.395371,0.346752,0.932513,0.860244,0.584612,0.106969,0.0558307,0.888589,0.900814,0.0900304,0.319443,0.106871,0.379122,0.0174775,0.619404,0.465123,0.803227,0.799938,0.205865,0.38,0.403983,0.71402,0.855725,0.5506,0.696666,0.700396,0.534337,0.802079,0.611554,0.614031,0.443241,0.659634,0.475196,0.106486,0.386921,0.911258,0.312347,0.194065,0.685722,0.2945,0.854067,0.20917,0.50733,0.576037,0.740521,0.0302114,0.45333,0.715921,0.873089,0.825571,0.534109,0.0181807,0.20183,0.533605,0.226046,0.460623,0.76471,0.898241,0.0733403,0.777479,0.241243,0.905825,0.935391,0.948503,0.147688,0.819332,0.677675,0.850498,0.521828,0.141472,0.137068,0.224735,0.550558,0.801313,0.447776,0.161062,0.844971,0.813845,0.561869,0.307242,0.437225,0.505863,0.146821,0.652716,0.377461,0.189544,0.484385,0.0947925,0.156037,0.702928,0.731206,0.586956,0.0172899,0.748497,0.332882,0.369279,0.33763,0.564193,0.881341,0.70836,0.410419,0.79235,0.283318,0.580957,0.923356,0.225417,0.200038,0.0290566,0.737399,0.603325,0.0634605,0.0125716,0.378283,0.210577,0.303342,0.28489,0.968453,0.806141,0.308553,0.936955,0.499644,0.554237,0.172455,0.366733,0.452495,0.700839,0.050943,0.0172368,0.273733,0.123086,0.783582,0.866716,0.207817,0.146141,0.894221,0.778206,0.271353,0.859189,0.471514,0.206862,0.0261594,0.448752,0.413008,0.207417,0.635432,0.819194,0.557606,0.332262,0.365584,0.903675,0.276752,0.978861,0.00546825,0.171576,0.481485,0.927115,0.371412,0.126187,0.121874,0.363756,0.901666,0.00924248,0.152084,0.42659,0.757697,0.767693,0.918086,0.316662,0.695319,0.24861,0.585605,0.331448,0.63594,0.916319,0.864786,0.102113,0.602137,0.734475,0.898992,0.642935,0.711621,0.560455,0.879276,0.142192,0.380103,0.741462,0.553801,0.849302,0.677937,0.324845,0.823078,0.551062,0.490165,0.464082,0.352392,0.0129203,0.0016377,0.701014,0.719137,0.101111,0.589963,0.960281,0.0592472,0.700558,0.612984,0.69062,0.609866,0.3997,0.279008,0.145566,0.242036,0.764146,0.605411,0.143287,0.00738257,0.941029,0.901145,0.167721,0.883128,0.452716,0.817037,0.232532,0.714839,0.372948,0.0909076,0.860975,0.862088,0.789132,0.642154,0.0899727,0.663748,0.576184,0.663279,0.9717,0.78041,0.371377,0.619483,0.937512,0.0374749,0.213651,0.763769,0.450103,0.949385,0.980242,0.0970157,0.64816,0.819548,0.361571,0.0544208,0.426529,0.946613,0.217685,0.137871,0.2578,0.58456,0.765497,0.781907,0.453121,0.34222,0.243727,0.695552,0.809914,0.498246,0.125765,0.165416,0.644508,0.102342,0.555365,0.662869,0.620025,0.852512,0.843644,0.256741,0.746005,0.0426309,0.995145,0.847216,0.391279,0.22235,0.439238,0.584741,0.64942,0.907851,0.271267,0.960888,0.599322,0.120737,0.702133,0.131885,0.499273,0.813824,0.236823,0.603442,0.847532,0.299718,0.403549,0.51629,0.297828,0.698972,0.98175,0.219457,0.0513762,0.034245,0.528718,0.369852,0.132525,0.328251,0.6048,0.945234,0.649652,0.865669,0.774515,0.839237,0.82989,0.957528,0.995103,0.558732,0.687499,0.108879,0.0399966,0.121799,0.300257,0.841566,0.50788,0.203718,0.107637,0.290316,0.30963,0.23863,0.206244,0.778057,0.0290874,0.358854,0.569584,0.621952,0.561506,0.78065,0.824998,0.043317,0.569854,0.218921,0.860776,0.301409,0.196373,0.157831,0.98095,0.728929,0.891757,0.840131,0.28106,0.880388,0.881187,0.597756,0.817321,0.72546,0.243578,0.868695,0.215712,0.0683239,0.421556,0.338504,0.522363,0.233291,0.281009,0.243493,0.274068,0.823516,0.0546337,0.721701,0.10095,0.774159,0.506325,0.523671,0.783173,0.939079,0.537165,0.183755,0.0914472,0.169877,0.959531,0.0284605,0.135625,0.775113,0.467556,0.240912,0.624087,0.897626,0.062843,0.578165,0.354097,0.214722,0.931324,0.344184,0.0878331,0.119949,0.291193,0.310671,0.887954,0.883174,0.325361,0.94864,0.967082,0.114947,0.589012,0.914879,0.96234,0.310417,0.0709455,0.190536,0.869741,0.44587,|0.432984,0.956314,0.127942,0.0693718,0.880919,0.764433,0.785337,0.971587,0.95792,0.970158,0.267413,0.322039,0.413083,0.199503,0.91393,0.201243,0.599193,0.0643056,0.901375,0.443496,0.0992094,0.789611,0.861097,0.785455,0.155017,0.0377679,0.059647,0.717694,0.121332,0.117765,0.609655,0.112808,0.945746,0.545846,0.334248,0.882991,0.408743,0.817327,0.68895,0.564054,0.686352,0.53073,0.263247,0.923725,0.170809,0.658104,0.441817,0.557791,0.741568,0.0823351,0.827298,0.35351,0.776977,0.524777,0.495555,0.109905,0.759938,0.100959,0.609865,0.485147,0.973617,0.904076,0.866349,0.21884,0.682155,0.450141,0.870098,0.0332078,0.936385,0.160051,0.349453,0.2215,0.419628,0.267103,0.210281,0.127798,0.26216,0.622581,0.311887,0.742877,0.215659,0.276228,0.34343,0.975897,0.238305,0.291743,0.0509694,0.056394,0.754098,0.721889,0.154526,0.595745,0.676534,0.108103,0.100358,0.336655,0.505914,0.139105,0.395731,0.0359312,0.92095,0.856761,0.844212,0.517949,0.897898,0.605922,0.257389,0.163857,0.108981,0.189769,0.594559,0.149122,0.487464,0.337584,0.700203,0.862719,0.425974,0.00391948,0.017962,0.556825,0.646382,0.0714527,0.455836,0.897403,0.593236,0.908567,0.505055,0.23545,0.279693,0.379017,0.593917,0.762699,0.77585,0.00255907,0.772999,0.369206,0.11978,0.969945,0.0737697,0.796622,0.941036,0.31673,0.174949,0.399473,0.934418,0.375357,0.423524,0.870386,0.330183,0.423735,0.114444,0.810489,0.0185396,0.951839,0.450719,0.260893,0.248698,0.324822,0.808202,0.819081,0.787675,0.604328,0.842509,0.203475,0.687399,0.221319,0.608722,0.938287,0.0879021,0.314653,0.142101,0.684731,0.680204,0.278348,0.560795,0.124706,0.127389,0.43105,0.336129,0.740292,0.446623,0.124053,0.937822,0.602015,0.116228,0.312768,0.511239,0.725086,0.623185,0.254275,0.0260221,0.744685,0.588645,0.21001,0.189914,0.432568,0.180647,0.2528,0.244468,0.676871,0.55768,0.217533,0.378901,0.769936,0.0276431,0.586474,0.102557,0.738876,0.337826,0.179423,0.519691,0.297029,0.179872,0.15384,0.445374,0.608549,0.626043,0.610475,0.598261,0.295974,0.539613,0.151964,0.655801,0.407501,0.540589,0.984457,0.748436,0.201295,0.150641,0.0682876,0.0304241,0.352913,0.415818,0.364483,0.691685,0.302815,0.601229,0.221586,0.498216,0.979187,0.393496,0.75797,0.969569,0.266335,0.693526,0.607045,0.316586,0.775891,0.212194,0.482424,0.719302,0.75174,0.687377,0.625305,0.039924,0.826814,0.620202,0.860311,0.216568,0.865111,0.624672,0.0527182,0.429985,0.368613,0.490349,0.71735,0.956771,0.451368,0.546786,0.575781,0.905793,0.0469624,0.425217,0.603274,0.866441,0.431594,0.456482,0.458281,0.00546342,0.64152,0.694324,0.0231633,0.333266,0.101158,0.807424,0.831495,0.251796,0.178579,0.66498,0.061505,0.351708,0.646217,0.859527,0.564114,0.61922,0.7716,0.871065,0.134927,0.77216,0.850931,0.101198,0.504292,0.784219,0.43013,0.299536,0.401636,0.621034,0.206383,0.177561,0.418338,0.670115,0.402231,0.323059,0.534674,0.284322,0.709748,0.472565,0.102344,0.279437,0.899737,0.0417454,0.844844,0.378249,0.89934,0.435894,0.902728,0.0315506,0.961886,0.765522,0.849585,0.297117,0.553565,0.977678,0.398125,0.990662,0.1566,0.848504,0.0512174,0.560902,0.01499,0.520529,0.126407,0.0508525,0.534204,0.0109098,0.0402237,0.783115,0.976983,0.204668,0.769846,0.192051,0.446117,0.006136,0.155512,0.584252,0.643778,0.539104,0.177295,0.371156,0.984074,0.197474,0.552293,0.520186,0.134077,0.136237,0.0546658,0.876042,0.370486,0.65561,0.831034,0.939333,0.368355,0.212464,0.553746,0.29637,0.306843,0.310256,0.397514,0.0243126,0.0938873,0.311025,0.706842,0.295142,0.218646,0.554697,0.43122,0.106088,0.00802588,0.621666,0.529016,0.130831,0.532746,0.243841,0.709043,0.135604,0.578315,0.0282013,0.109346,0.883896,0.849814,0.963918,0.0490194,0.381049,0.084061,0.917248,0.861537,0.695027,0.227968,0.0801801,0.773827,0.576093,0.35653,0.165394,0.646321,0.970495,0.811874,0.962813,0.455984,0.568908,0.209436,0.947651,0.302618,0.385646,0.538479,0.0407563,0.847635,0.371528,0.0194852,0.270765,0.219493,0.365174,0.152249,0.601072,0.579643,0.493484,0.100998,0.0182807,0.482264,0.912509,0.735044,0.505132,0.229455,0.778027,0.349349,0.1661,0.288335,0.578326,0.147496,0.031392,0.174811,0.18336,0.215929,0.937406,0.555546,0.386779,0.083215,0.354669,0.938198,0.269987,0.808509,0.920178,0.344435,0.232335,0.814436,0.800456,0.47924,0.776485,0.0671136,0.933706,0.6733,0.517648,0.912864,0.79174,0.849354,0.71109,0.628243,0.385054,0.224217,0.915704,0.889155,0.500647,0.0629302,0.193508,0.584713,0.774243,0.475724,0.254318,0.111176,0.684954,0.759138,0.21505,0.0446902,0.0674934,0.0291638,0.877233,0.222929,0.401221,0.429845,0.672368,0.827807,0.602992,0.028643,0.914009,0.725811,0.736351,0.00966907,0.78754,0.0850062,0.634612,0.0713417,0.312482,0.879931,0.130177,0.0256972,0.335576,0.074624,0.0818099,0.206302,0.487658,0.718022,0.310779,0.341682,0.0363187,0.203576,0.337452,0.534661,0.141467,0.66871,0.267552,0.536545,0.618413,0.887774,0.977542,0.21815,0.293474,0.649444,0.395608,0.091731,0.504077,0.90627,0.104689,0.583465,0.820455,0.853363,0.73901,0.644128,0.826155,0.329723,0.760481,0.730367,0.441516,0.947485,0.633581,0.462201,0.296979,0.430087,0.10677,0.129206,0.355747,0.234711,0.269038,0.740494,0.163998,0.060209,0.105726,0.887419,0.199187,0.729426,0.000742733,0.400844,0.648142,0.175675,0.737285,0.35082,0.539454,0.477511,0.312945,0.269432,0.597029,0.618042,0.716766,0.259534,0.599451,0.267037,0.914804,0.769904,0.418519,0.341465,0.574541,0.517789,0.47613,0.76145,0.104487,0.145822,0.591771,0.501931,0.990946,0.975597,0.292529,0.231462,0.0972435,0.331503,0.448543,0.143039,0.237397,0.610701,0.487699,0.707689,0.783292,0.753811,0.891318,0.840212,0.0228781,0.289814,0.682166,0.796072,0.484888,0.356226,0.472596,0.990916,0.548039,0.662768,0.920565,0.833051,0.217225,0.0643544,0.461014,0.282951,0.370182,0.23441,0.0847459,0.687198,0.347792,0.954998,0.394639,0.729349,0.578923,0.686229,0.886321,0.00688553,0.550461,0.778367,0.434224,0.267214,0.559325,0.113692,0.782724,0.835031,0.0772911,0.882652,0.699892,0.453142,0.41295,0.508408,0.278286,0.102081,0.693818,0.226493,0.532879,0.765699,0.0920266,0.439694,0.313408,0.400733,0.637647,0.841782,0.573784,0.560812,0.348327,0.785581,0.756761,0.39487,0.470313,0.786417,0.299711,0.0119713,0.54985,0.839866,0.199138,0.579269,0.527704,0.315877,0.575799,0.319906,0.130477,0.657132,0.201856,0.917499,0.791416,0.645689,0.854506,0.153536,0.550281,0.649803,0.493151,0.930359,0.0734615,0.999364,0.177572,0.421155,0.405262,0.6999,0.528572,0.278491,0.70482,0.27169,0.611816,0.888055,0.677251,0.407146,0.584872,0.929075,0.867381,0.323912,0.678785,0.615995,0.575796,0.729996,0.680755,0.44961,0.131588,0.350844,0.904448,0.976346,0.435599,0.45499,0.416482,0.0441527,0.477676,0.892335,0.130938,0.351922,0.386311,0.84223,0.0974571,0.984544,0.507305,0.0282126,0.942274,0.747722,0.763568,0.897779,0.643567,0.667594,0.684779,0.752449,0.659106,0.364661,0.69703,0.906094,0.145735,0.099523,0.194557,0.0203182,0.216039,0.836395,0.974967,0.296234,0.719303,0.559931,0.815766,0.0518516,0.892532,0.860746,0.280673,0.674884,0.690357,0.474355,0.33924,0.101123,0.00843054,0.174307,0.919446,0.359788,0.762203,0.0596596,0.736458,0.0630084,0.652887,0.477923,0.090219,0.259465,0.358922,0.0813234,0.167829,0.418369,0.519014,0.181182,0.134377,0.287439,0.435243,0.518016,0.532009,0.10634,0.658221,0.697044,0.521117,0.659627,0.0209913,0.849423,0.466643,0.131556,0.369588,0.368767,0.855735,0.0655435,0.435759,0.873984,0.965966,0.626268,0.933064,0.758408,0.597191,0.241069,0.791912,0.68022,0.192941,0.0767614,0.279178,0.833458,0.32846,0.084381,0.605749,0.476944,0.577823,0.522024,0.713265,0.444533,0.214518,0.139421,0.962411,0.345483,0.632194,0.000853062,0.973991,0.603636,0.0766879,0.575745,0.225102,0.435389,0.540024,0.0507781,0.583139,0.528206,0.646586,0.308502,0.490047,0.0542161,0.510781,0.87725,0.745315,0.664359,0.653298,0.113937,0.151472,0.548018,0.304617,0.440657,0.108699,0.0236169,0.786682,0.884955,0.664765,0.402218,0.098244,0.635906,0.124288,0.984208,0.0246504,0.864254,0.395915,0.46063,0.532725,0.91884,0.0412195,0.979125,0.743959,0.80814,0.888588,0.387902,0.554954,0.877931,0.80115,0.884016,0.442221,0.898786,0.576675,0.198645,0.0727777,0.137467,0.605249,0.378512,0.195636,0.820937,0.217795,0.245209,0.753412,0.370002,0.155721,0.486164,0.576479,0.408825,0.244517,0.845034,0.813187,0.762455,0.329022,0.261889,0.858336,0.987399,0.0191542,0.888013,0.656645,0.516481,0.867853,0.200469,0.0375515,0.725191,0.628911,0.807473,0.932317,0.488444,0.410525,0.185028,0.519973,0.795148,0.7688,0.959633,0.096054,0.201997,0.315805,0.183848,0.926758,0.777071,0.818191,0.878618,0.234425,0.841269,0.470713,0.153,0.238527,0.819605,0.666244,0.657915,0.665,0.765304,0.115205,0.974455,0.376397,0.73179,0.794151,0.414211,0.435998,0.431815,0.57982,0.653353,0.537449,0.718321,0.294329,0.981131,0.201448,0.0159439,0.595676,0.959088,0.381082,0.589087,0.55995,0.300796,0.53648,0.580074,0.42208,0.830865,0.389527,0.768841,0.502489,0.0038228,0.920045,0.411908,0.956587,0.246094,0.492047,0.236036,0.700102,0.413759,0.199167,0.152393,0.663648,0.825091,0.369331,0.745675,0.103149,0.330513,0.0448039,0.499503,0.910418,0.182412,0.1849,0.546549,0.148077,0.624222,|0.942254,0.669027,0.468451,0.882777,0.705703,0.377427,0.923375,0.995355,0.447888,0.676414,0.453005,0.457153,0.254674,0.27968,0.0474042,0.652506,0.0662656,0.279624,0.40983,0.403957,0.0943737,0.676789,0.528537,0.198799,0.528867,0.489482,0.991642,0.910527,0.0390335,0.215761,0.120511,0.338347,0.847081,0.0840593,0.827846,0.377868,0.713758,0.749671,0.251627,0.968979,0.759539,0.163402,0.560127,0.581241,0.96387,0.47613,0.629375,0.799945,0.65405,0.607549,0.079716,0.688259,0.395951,0.512202,0.586305,0.784129,0.412771,0.972793,0.485131,0.394553,0.615674,0.396344,0.334021,0.582298,0.414163,0.332008,0.273388,0.774298,0.950293,0.629254,0.38324,0.854523,0.175694,0.203327,0.360372,0.859559,0.41959,0.325737,0.233445,0.788825,0.301502,0.983761,0.6342,0.293463,0.343731,0.981169,0.470922,0.300884,0.317086,0.183074,0.780328,0.654417,0.755278,0.656856,0.551257,0.939551,0.351149,0.0579253,0.397756,0.417988,0.93456,0.306924,0.229692,0.550952,0.966364,0.732514,0.420607,0.880621,0.779268,0.39234,0.109837,0.591798,0.437629,0.00963712,0.652491,0.583654,0.704672,0.698063,0.411708,0.3002,0.819439,0.898434,0.228266,0.774259,0.155484,0.502718,0.986162,0.00658488,0.18095,0.987429,0.511004,0.307558,0.534372,0.679005,0.371051,0.329344,0.29998,0.582096,0.542792,0.893892,0.720185,0.050176,0.640206,0.446094,0.349574,0.0209488,0.240272,0.531556,0.409158,0.402091,0.862599,0.314942,0.935508,0.701245,0.494534,0.350861,0.528623,0.168022,0.441329,0.712796,0.0211583,0.998343,0.766984,0.747207,0.215052,0.536775,0.379805,0.257036,0.695581,0.89615,0.649036,0.77766,0.322359,0.346937,0.71979,0.277802,0.554387,0.399391,0.588603,0.887869,0.34714,0.398134,0.946053,0.470255,0.447023,0.935106,0.0980954,0.993342,0.292197,0.670415,0.0939711,0.0778522,0.623299,0.969068,0.575761,0.168824,0.286613,0.337529,0.939007,0.581704,0.0816124,0.682134,0.4376,0.0819212,0.685723,0.858804,0.260163,0.0124105,0.379272,0.822284,0.530919,0.749097,0.661552,0.357972,0.244103,0.513306,0.603633,0.337503,0.945982,0.159337,0.594706,0.249789,0.684737,0.330423,0.391909,0.0157357,0.0726281,0.213216,0.0881384,0.689377,0.456583,0.929514,0.300263,0.230528,0.248567,0.0276921,0.260958,0.529439,0.479055,0.631245,0.299315,0.309382,0.943398,0.538389,0.0996953,0.552508,0.820803,0.175483,0.136511,0.934282,0.652523,0.310783,0.707867,0.732213,0.253471,0.605479,0.721519,0.426628,0.450022,0.0682489,0.00328505,0.258761,0.725769,0.953182,0.315502,0.93895,0.5923,0.508752,0.152393,0.0267293,0.430646,0.978822,0.0363304,0.79227,0.603254,0.399089,0.622359,0.653254,0.0214427,0.984945,0.679262,0.867755,0.320513,0.626829,0.722307,0.0598606,0.39089,0.348735,0.381575,0.991919,0.370374,0.822477,0.61365,0.140077,0.814274,0.288245,0.152393,0.621792,0.810545,0.893857,0.476145,0.0471255,0.983482,0.70108,0.795737,0.223921,0.821694,0.37311,0.0655454,0.164848,0.484089,0.151289,0.662426,0.238951,0.479171,0.249531,0.730512,0.457773,0.457559,0.447647,0.23054,0.569661,0.12462,0.238707,0.57397,0.343855,0.927437,0.710406,0.92901,0.164936,0.23051,0.664436,0.177863,0.0505468,0.741681,0.265647,0.473377,0.660984,0.0765751,0.929918,0.503008,0.12126,0.459454,0.99181,0.489256,0.531693,0.164068,0.508587,0.769504,0.152699,0.507462,0.0103735,0.79472,0.0730508,0.633336,0.0450667,0.979363,0.833205,0.7942,0.580547,0.158688,0.586063,0.567095,0.737499,0.512265,0.569145,0.978759,0.423423,0.783387,0.115285,0.77062,0.309826,0.278217,0.851711,0.835896,0.385263,0.300012,0.443629,0.208564,0.190723,0.800481,0.770015,0.477475,0.772979,0.784635,0.448026,0.785503,0.739152,0.0735766,0.565749,0.402393,0.107185,0.405474,0.216894,0.495498,0.29207,0.0632976,0.630982,0.0955149,0.198264,0.689522,0.266666,0.0528457,0.287101,0.272896,0.614035,0.760864,0.596896,0.216424,0.256154,0.543419,0.530027,0.670346,0.916418,0.891689,0.790063,0.508578,0.0370103,0.833124,0.23,0.603795,0.0711448,0.782952,0.329166,0.911422,0.433679,0.854856,0.65683,0.554659,0.691924,0.886227,0.466301,0.670802,0.649847,0.610867,0.909659,0.444922,0.173347,0.0182086,0.332518,0.660079,0.53686,0.74051,0.115415,0.692544,0.640263,0.655686,0.476578,0.217518,0.361506,0.608277,0.125042,0.84753,0.859021,0.10166,0.734272,0.275532,0.204664,0.934752,0.43106,0.923542,0.377967,0.0981218,0.452088,0.354093,0.969751,0.400939,0.797088,0.817096,0.307598,0.419381,0.694225,0.244099,0.559167,0.725159,0.580605,0.00382304,0.437283,0.456712,0.734153,0.880259,0.172763,0.812875,0.779153,0.001634,0.59197,0.309547,0.952097,0.355764,0.92015,0.575301,0.432748,0.400929,0.976739,0.310563,0.276345,0.497144,0.168614,0.66813,0.787886,0.228777,0.19589,0.10581,0.55044,0.420599,0.0712849,0.622596,0.861847,0.134104,0.440116,0.889755,0.997459,0.593418,0.136669,0.747654,0.0819404,0.537905,0.1633,0.234965,0.485354,0.575279,0.269336,0.501357,0.125015,0.369337,0.634467,0.175259,0.190203,0.388851,0.205283,0.170077,0.480112,0.179005,0.690328,0.528628,0.186171,0.984275,0.378777,0.555107,0.77185,0.733883,0.922722,0.452179,0.277969,0.182909,0.593857,0.715188,0.0166002,0.692174,0.0142405,0.238919,0.519813,0.209317,0.587332,0.215962,0.0459575,0.522374,0.627024,0.494242,0.144231,0.592809,0.743924,0.345851,0.541714,0.4409,0.775257,0.81045,0.50507,0.74187,0.0013535,0.611554,0.0739393,0.384873,0.525874,0.439991,0.53717,0.868806,0.473534,0.862049,0.743734,0.23431,0.211713,0.990895,0.838119,0.520537,0.196202,0.799166,0.796448,0.0279354,0.602485,0.429264,0.892946,0.976395,0.620203,0.980313,0.304396,0.36035,0.43859,0.378534,0.838706,0.0825311,0.455938,0.768645,0.494818,0.971585,0.25808,0.436367,0.872166,0.430705,0.459251,0.383678,0.669383,0.80436,0.69495,0.642351,0.613958,0.110071,0.646926,0.514949,0.170636,0.602376,0.686765,0.0739059,0.505778,0.50557,0.488101,0.403239,0.156053,0.862226,0.933793,0.118802,0.734239,0.706784,0.597122,0.0321901,0.500283,0.462696,0.51595,0.233755,0.0835766,0.539355,0.203361,0.641233,0.908373,0.798151,0.0197105,0.763205,0.010166,0.0642769,0.535025,0.67712,0.890441,0.371962,0.0673205,0.085002,0.719146,0.529232,0.568199,0.974794,0.275416,0.816801,0.396514,0.0435559,0.657684,0.143167,0.618189,0.624959,0.360664,0.746404,0.500951,0.74584,0.21897,0.26246,0.155677,0.354517,0.997518,0.941994,0.0846439,0.611275,0.968953,0.190609,0.757988,0.347888,0.601584,0.612149,0.586508,0.827691,0.251142,0.497759,0.348577,0.845118,0.822342,0.934849,0.347528,0.26648,0.801813,0.55161,0.0463498,0.315872,0.904302,0.476443,0.348716,0.980352,0.639312,0.682272,0.445724,0.528046,0.515141,0.188734,0.403797,0.846917,0.584772,0.00163925,0.985911,0.635487,0.718539,0.0559744,0.0901723,0.644952,0.409047,0.112966,0.611246,0.684533,0.407786,0.732613,0.544883,0.729661,0.450302,0.405937,0.773933,0.697791,0.830245,0.975036,0.419068,0.689498,0.0952128,0.425195,0.717409,0.358647,0.936672,0.00303805,0.94471,0.499358,0.575506,0.891101,0.082635,0.364615,0.135093,0.0378514,0.292955,0.00766724,0.350122,0.799845,0.361843,0.725945,0.624903,0.34643,0.398392,0.500413,0.636298,0.923451,0.731102,0.781602,0.0633247,0.556203,0.526272,0.345683,0.0324488,0.179411,0.117024,0.0930607,0.190962,0.378806,0.858128,0.384178,0.557344,0.0306929,0.689681,0.929373,0.147079,0.315847,0.289775,0.293209,0.770894,0.339254,0.611845,0.806637,0.24357,0.731891,0.413077,0.589731,0.304661,0.389036,0.107575,0.430093,0.812683,0.982183,0.140004,0.443522,0.843634,0.17905,0.58966,0.632498,0.526449,0.625655,0.712512,0.854648,0.440513,0.775186,0.887515,0.470333,0.645866,0.811535,0.0130598,0.861757,0.685415,0.742562,0.464303,0.555254,0.98261,0.927084,0.285409,0.502023,0.951225,0.272348,0.38773,0.937854,0.519785,0.914881,0.247635,0.227897,0.968076,0.107047,0.915224,0.486787,0.947211,0.422747,0.417361,0.63105,0.555409,0.988615,0.712379,0.752781,0.619141,0.632925,0.116788,0.27725,0.341736,0.647044,0.127254,0.255335,0.078589,0.766794,0.660062,0.582944,0.678658,0.567943,0.894137,0.184938,0.796309,0.314962,0.319494,0.0907446,0.0169731,0.430795,0.895841,0.438054,0.533189,0.673254,0.508388,0.407329,0.195027,0.872533,0.835213,0.305915,0.993091,0.711643,0.547004,0.80011,0.14915,0.713567,0.495888,0.88247,0.96629,0.851436,0.246036,0.637314,0.744354,0.865948,0.245411,0.445293,0.404459,0.378929,0.815964,0.942578,0.241214,0.337482,0.490628,0.98233,0.492865,0.65255,0.362677,0.540542,0.999104,0.646313,0.0264292,0.409269,0.921296,0.950363,0.0572273,0.627635,0.763594,0.124818,0.792595,0.918816,0.975851,0.956596,0.681111,0.145116,0.767469,0.505225,0.0165009,0.949267,0.876686,0.164814,0.210435,0.870136,0.227703,0.0369182,0.689192,0.794538,0.854668,0.317286,0.644451,0.18266,0.134468,0.596784,0.849878,0.605863,0.851708,0.323802,0.557013,0.0587453,0.382488,0.992638,0.804622,0.548076,0.238744,0.871804,0.556992,0.0964233,0.161866,0.167584,0.848693,0.748355,0.522289,0.415854,0.62398,0.0422187,0.0558354,0.245757,0.0431539,0.0453303,0.182629,0.214799,0.729532,0.304692,0.761947,0.612114,0.241218,0.116518,0.127984,0.60725,0.42488,0.807543,0.465757,0.321356,0.365749,0.33874,0.188909,0.339853,0.39958,0.389218,0.952023,0.921584,0.109585,0.458958,0.374169,0.723656,0.738136,0.827171,0.102814,0.552176,0.735091,0.401813,0.516436,0.152779,0.0534823,0.266162,0.981754,|0.697722,0.904316,0.00267518,0.0892292,0.39591,0.418398,0.474172,0.665234,0.645141,0.773751,0.0825717,0.826239,0.300592,0.906714,0.871568,0.530353,0.693732,0.135197,0.489463,0.686086,0.440707,0.876171,0.394571,0.0855217,0.0130371,0.806581,0.589764,0.0322595,0.856991,0.217327,0.370034,0.825163,0.905901,0.300866,0.959551,0.293095,0.399451,0.0715717,0.627121,0.0885665,0.147386,0.805007,0.291268,0.424824,0.175587,0.155842,0.360739,0.88053,0.491499,0.0554022,0.272843,0.914953,0.422726,0.954168,0.115077,0.992906,0.281203,0.115371,0.703387,0.262933,0.880275,0.649028,0.898325,0.35589,0.123285,0.0926183,0.733892,0.742232,0.420425,0.790035,0.654201,0.62702,0.0225683,0.105936,0.605761,0.187172,0.132243,0.797131,0.997718,0.676027,0.746975,0.0531598,0.462814,0.89619,0.716461,0.673275,0.564348,0.612366,0.315419,0.0391058,0.535153,0.396504,0.66966,0.871476,0.263243,0.378578,0.29663,0.74028,0.625507,0.0785334,0.408811,0.115011,0.105521,0.128704,0.749924,0.994045,0.319453,0.829937,0.161679,0.117344,0.504127,0.417909,0.163918,0.731322,0.180829,0.894833,0.717366,0.657148,0.961971,0.0511011,0.233337,0.301878,0.866191,0.966249,0.325038,0.0982487,0.407661,0.863186,0.0551822,0.948752,0.415567,0.612226,0.532232,0.521547,0.836712,0.238358,0.620156,0.0473824,0.681233,0.297258,0.018721,0.502151,0.999379,0.503385,0.0224866,0.550361,0.718822,0.102732,0.0452041,0.936184,0.323193,0.425162,0.50227,0.194836,0.236274,0.869994,0.00389743,0.181072,0.579895,0.711741,0.697423,0.018009,0.68919,0.323451,0.507533,0.122497,0.00849056,0.0636421,0.877675,0.415178,0.352441,0.97088,0.952625,0.696591,0.470491,0.381992,0.075578,0.835169,0.190221,0.57666,0.75924,0.738067,0.326699,0.361052,0.760503,0.34459,0.859411,0.165473,0.702136,0.859494,0.0172779,0.31477,0.881782,0.800561,0.813178,0.436047,0.723641,0.36757,0.861085,0.291445,0.145563,0.877703,0.209093,0.099876,0.165786,0.185571,0.38345,0.945646,0.801218,0.510484,0.74194,0.699112,0.116841,0.909801,0.560248,0.285707,0.00673431,0.149646,0.700098,0.418431,0.991744,0.705477,0.439499,0.650757,0.376835,0.926011,0.191367,0.756249,0.810993,0.295995,0.582582,0.323458,0.25904,0.115471,0.0951455,0.968304,0.612329,0.716256,0.46355,0.723935,0.52164,0.595239,0.412204,0.980325,0.815864,0.611082,0.91723,0.144413,0.865011,0.653481,0.834666,0.328761,0.536948,0.104939,0.830419,0.906331,0.877709,0.989384,0.513426,0.432272,0.368124,0.525542,0.661631,0.508699,0.848938,0.313727,0.88905,0.558172,0.931755,0.255185,0.933683,0.964747,0.733187,0.027996,0.707484,0.486542,0.896033,0.0880612,0.984792,0.394378,0.434112,0.229022,0.665022,0.685984,0.621043,0.149646,0.0127525,0.388365,0.36621,0.0831152,0.0600604,0.168873,0.123855,0.497173,0.114547,0.98334,0.658514,0.420415,0.778746,0.43619,0.732917,0.161207,0.897021,0.923308,0.413899,0.285221,0.455245,0.685655,0.0812781,0.722239,0.37716,0.723045,0.929703,0.801013,0.589539,0.0680989,0.853029,0.275334,0.639495,0.602474,0.668779,0.0918234,0.96963,0.326005,0.854487,0.427306,0.187,0.370681,0.98678,0.638293,0.303298,0.519631,0.429219,0.831494,0.449442,0.895234,0.515151,0.836511,0.970868,0.185624,0.615381,0.977865,0.821303,0.703392,0.296505,0.0920648,0.364931,0.365641,0.414333,0.444806,0.698003,0.271721,0.00590795,0.207611,0.80658,0.362836,0.92842,0.891389,0.0598656,0.138645,0.917056,0.541505,0.871733,0.989348,0.512873,0.199575,0.723023,0.549929,0.476199,0.529198,0.247617,0.698914,0.0136959,0.321751,0.730896,0.936681,0.847218,0.498422,0.705353,0.291193,0.427914,0.973036,0.392947,0.64954,0.806326,0.349465,0.985113,0.946763,0.0972083,0.253867,0.581472,0.833588,0.0290681,0.0879661,0.933845,0.515361,0.0541592,0.628199,0.238833,0.77297,0.960581,0.131529,0.488805,0.138966,0.828976,0.0103676,0.322405,0.219455,0.126075,0.994433,0.801709,0.252738,0.194374,0.761927,0.358405,0.869582,0.242574,0.854736,0.448142,0.771054,0.0481349,0.0786188,0.276956,0.33624,0.940769,0.357812,0.19869,0.803916,0.419506,0.472301,0.27339,0.28507,0.222272,0.768069,0.319968,0.967335,0.673245,0.056036,0.347179,0.350887,0.681808,0.113971,0.818694,0.145526,0.720014,0.000394166,0.650673,0.511278,0.722557,0.754416,0.533024,0.600659,0.130518,0.983889,0.804756,0.42773,0.694243,0.168491,0.232508,0.513072,0.710634,0.15212,0.222655,0.0621181,0.744787,0.284504,0.271199,0.26526,0.839004,0.401594,0.365799,0.889859,0.516347,0.564032,0.48105,0.152361,0.23412,0.319842,0.127728,0.0837625,0.130952,0.593029,0.372286,0.667179,0.625563,0.16853,0.167354,0.421182,0.723752,0.68846,0.818597,0.271646,0.867482,0.589788,0.83923,0.0956745,0.615266,0.127424,0.531923,0.743381,0.668125,0.740734,0.921163,0.221719,0.575701,0.464852,0.342874,0.53862,0.641661,0.89068,0.72201,0.264141,0.873396,0.970143,0.721959,0.396544,0.394662,0.647013,0.393545,0.206569,0.867766,0.429821,0.68377,0.661102,0.789569,0.866392,0.976039,0.526324,0.124404,0.342163,0.954867,0.483101,0.226855,0.233279,0.0911259,0.816928,0.536256,0.813251,0.972172,0.981051,0.487236,0.202133,0.70674,0.205309,0.528837,0.245484,0.037446,0.8891,0.692459,0.243971,0.357232,0.983954,0.204781,0.577314,0.821532,0.884298,0.952784,0.886137,0.46553,0.898402,0.248608,0.711331,0.886449,0.315085,0.17936,0.459264,0.783663,0.413035,0.145653,0.90997,0.0963521,0.302762,0.792569,0.965432,0.599997,0.699975,0.0497967,0.0576123,0.740006,0.571313,0.337286,0.377802,0.47928,0.27539,0.173052,0.686543,0.532032,0.174949,0.0058586,0.759539,0.908349,0.74805,0.401488,0.307797,0.072795,0.94228,0.888048,0.483729,0.0208739,0.225029,0.907567,0.613522,0.915183,0.182201,0.11191,0.422644,0.999703,0.887649,0.535294,0.134412,0.119212,0.606289,0.273864,0.801986,0.931125,0.682006,0.582932,0.376712,0.831038,0.339934,0.709269,0.671998,0.642334,0.737437,0.0785633,0.817476,0.662899,0.555772,0.261394,0.12886,0.837583,0.40568,0.90159,0.745802,0.802791,0.934649,0.0401298,0.935402,0.135631,0.366296,0.561254,0.427728,0.690102,0.632254,0.63526,0.468909,0.76307,0.362626,0.612084,0.818828,0.00800389,0.134265,0.0414324,0.50729,0.283497,0.616851,0.96483,0.0232838,0.124682,0.0873524,0.196781,0.73299,0.695469,0.0378919,0.870367,0.684538,0.356994,0.275259,0.768791,0.56407,0.510786,0.612861,0.688554,0.505611,0.281922,0.628251,0.500725,0.388037,0.222764,0.270183,0.0533658,0.554914,0.648936,0.160929,0.736289,0.685926,0.134323,0.0110521,0.808447,0.0131626,0.812029,0.477613,0.920916,0.492863,0.419892,0.743742,0.636981,0.678401,0.350061,0.113887,0.748763,0.499265,0.991037,0.697142,0.441402,0.253876,0.0857422,0.698054,0.269692,0.974071,0.927043,0.369919,0.175174,0.843717,0.101521,0.868892,0.797279,0.894111,0.307936,0.874666,0.0169557,0.337462,0.307041,0.10068,0.227165,0.0391709,0.736458,0.134756,0.890382,0.80321,0.843105,0.428988,0.717979,0.280237,0.779979,0.0564885,0.699656,0.36007,0.764708,0.587797,0.319626,0.493744,0.828897,0.210878,0.784986,0.935756,0.239193,0.617143,0.0813361,0.380641,0.634514,0.118457,0.717739,0.165923,0.540924,0.0707189,0.692772,0.809166,0.141668,0.814806,0.782535,0.0563676,0.829707,0.283187,0.327701,0.830076,0.65864,0.572504,0.275351,0.467047,0.502496,0.561676,0.984452,0.656839,0.210426,0.327435,0.339513,0.273068,0.469391,0.635988,0.780307,0.335328,0.800505,0.907464,0.302909,0.868576,0.0886958,0.604852,0.995675,0.782473,0.554036,0.685034,0.108591,0.824984,0.258789,0.946745,0.517778,0.549992,0.198863,0.971292,0.866666,0.933746,0.59486,0.608036,0.387778,0.198611,0.942802,0.704877,0.240695,0.874007,0.14422,0.561646,0.482117,0.295752,0.888699,0.828227,0.476014,0.818497,0.181438,0.772054,0.944227,0.301026,0.657431,0.893541,0.5182,0.419012,0.553316,0.557678,0.711758,0.739425,0.199567,0.896564,0.0474777,0.349597,0.812576,0.884164,0.158122,0.531581,0.102376,0.0872288,0.0229747,0.354249,0.735329,0.38903,0.706055,0.590169,0.392373,0.756471,0.615296,0.916569,0.250636,0.673397,0.200324,0.578772,0.178124,0.568927,0.898921,0.108022,0.566908,0.449522,0.528719,0.581197,0.548442,0.994234,0.211785,0.599476,0.55549,0.401701,0.280454,0.429293,0.0686074,0.195308,0.69838,0.177593,0.61888,0.0573318,0.512112,0.499509,0.39664,0.0745147,0.865406,0.408855,0.649393,0.748609,0.242102,0.240254,0.283166,0.278913,0.678334,0.839016,0.678421,0.185757,0.389493,0.574712,0.619376,0.143176,0.925663,0.986081,0.664178,0.10647,0.396755,0.10392,0.488886,0.490982,0.825487,0.94483,0.358057,0.447664,0.244063,0.595384,0.379338,0.154447,0.400013,0.621791,0.292128,0.926078,0.825724,0.854144,0.119753,0.85518,0.703376,0.941577,0.531689,0.175163,0.699525,0.666289,0.994281,0.128688,0.928778,0.149793,0.256508,0.89565,0.179468,0.921065,0.941556,0.839144,0.426088,0.138888,0.523565,0.61029,0.911033,0.587155,0.138808,0.276688,0.941632,0.161776,0.392394,0.110033,0.898416,0.121377,0.93789,0.479562,0.26372,0.223105,0.924727,0.614978,0.422999,0.0331972,0.2179,0.342843,0.150665,0.170534,0.183032,0.151571,0.807635,0.311827,0.650815,0.723791,0.115699,0.114421,0.322982,0.00749654,0.815784,0.526821,0.752309,0.402523,0.184579,0.238202,0.345601,0.923899,0.10213,0.726184,0.394047,0.325226,0.708162,0.17951,0.79464,0.566033,0.610378,0.978729,0.0158026,0.973517,0.645602,0.409944,0.979198,0.618163,0.951876,0.165621,0.447335,0.859334,|0.967192,0.271021,0.454844,0.226195,0.0875748,0.467612,0.810161,0.148141,0.655946,0.534484,0.77346,0.174429,0.179874,0.61654,0.057838,0.99778,0.564892,0.589225,0.117761,0.88625,0.0532688,0.298862,0.325373,0.839657,0.686599,0.214779,0.0146439,0.326497,0.743623,0.260787,0.851431,0.545912,0.376346,0.588076,0.959253,0.074759,0.462331,0.0185404,0.806666,0.852323,0.128208,0.687255,0.521191,0.444854,0.55697,0.564106,0.973934,0.327553,0.769855,0.554189,0.161537,0.165843,0.772633,0.868442,0.648945,0.936702,0.449506,0.781438,0.668679,0.559095,0.995311,0.0898603,0.324472,0.581447,0.622961,0.15064,0.630619,0.983036,0.026365,0.898379,0.864467,0.745452,0.460156,0.419937,0.786615,0.194429,0.0171363,0.273439,0.921225,0.0386546,0.52177,0.53009,0.847719,0.194753,0.623653,0.246265,0.0601298,0.0900692,0.691203,0.041023,0.262042,0.929803,0.249679,0.439547,0.0111578,0.795639,0.0825371,0.941589,0.806101,0.579051,0.522335,0.80769,0.849456,0.725455,0.0894223,0.959624,0.673283,0.49791,0.183775,0.242885,0.663793,0.956572,0.543675,0.374143,0.600558,0.416344,0.264621,0.648328,0.355143,0.992091,0.571211,0.427013,0.616854,0.750396,0.386997,0.0760621,0.125857,0.739102,0.0632357,0.776682,0.674628,0.342274,0.115948,0.118096,0.984341,0.422659,0.959621,0.324927,0.109928,0.549408,0.745397,0.375873,0.260744,0.699778,0.274076,0.47575,0.928095,0.0448137,0.799897,0.994893,0.142348,0.772762,0.866526,0.726715,0.971375,0.756391,0.157958,0.685067,0.509736,0.0729305,0.160447,0.579671,0.816197,0.789316,0.0822609,0.956838,0.272147,0.905226,0.584902,0.101617,0.544258,0.848765,0.731341,0.13552,0.998242,0.903742,0.823016,0.154717,0.419015,0.447996,0.0729343,0.344469,0.660691,0.277351,0.0157824,0.480597,0.651475,0.0688573,0.707294,0.915401,0.0273699,0.0673286,0.154149,0.919486,0.730969,0.877631,0.229276,0.10987,0.399749,0.821675,0.0720229,0.230989,0.757042,0.630555,0.147292,0.0620093,0.761192,0.382928,0.420191,0.767468,0.734083,0.531665,0.672376,0.936317,0.476271,0.934634,0.107294,0.833809,0.0777985,0.244361,0.328184,0.707421,0.785226,0.908148,0.443264,0.537759,0.508383,0.320405,0.59397,0.172681,0.801521,0.6059,0.159459,0.73416,0.0977589,0.205679,0.883783,0.32974,0.975215,0.00730556,0.0936561,0.867401,0.16117,0.848987,0.632556,0.394632,0.147759,0.696327,0.719559,0.663208,0.851497,0.896712,0.226621,0.623415,0.0439317,0.591358,0.500512,0.905765,0.109362,0.544025,0.101045,0.776028,0.913323,0.994264,0.453562,0.0197659,0.353479,0.104508,0.72358,0.31238,0.257256,0.694996,0.486463,0.394989,0.385131,0.366763,0.993303,0.115323,0.722658,0.104115,0.538641,0.942697,0.501146,0.446423,0.306905,0.22689,0.316376,0.766951,0.555754,0.0827068,0.940849,0.514996,0.5417,0.83081,0.530512,0.181045,0.439322,0.963964,0.839791,0.586774,0.230539,0.90586,0.729174,0.545023,0.914323,0.465705,0.472855,0.627597,0.356721,0.354195,0.480114,0.817819,0.41122,0.742741,0.318905,0.791802,0.611102,0.634492,0.83748,0.825123,0.543594,0.764179,0.735328,0.620825,0.88913,0.816968,0.945376,0.945248,0.690598,0.534348,0.481075,0.248173,0.398631,0.511412,0.0591682,0.823171,0.515668,0.695811,0.222435,0.668743,0.350124,0.413818,0.896834,0.364764,0.0314022,0.293845,0.00480556,0.902341,0.140474,0.10384,0.993441,0.0199711,0.600031,0.38154,0.295504,0.244301,0.613949,0.999227,0.156547,0.292239,0.400099,0.214763,0.506432,0.583992,0.68784,0.383515,0.260062,0.0571235,0.745047,0.730964,0.0609365,0.868022,0.203418,0.382658,0.892294,0.200162,0.126824,0.60558,0.157944,0.233858,0.326452,0.471137,0.572388,0.694922,0.141872,0.565747,0.404779,0.149801,0.24411,0.175816,0.402776,0.956601,0.533028,0.300578,0.365751,0.0433942,0.446011,0.723966,0.695599,0.491727,0.268814,0.595677,0.315594,0.825961,0.388827,0.953891,0.471766,0.769989,0.0670817,0.420498,0.530917,0.93074,0.00654304,0.722232,0.627433,0.0903615,0.339097,0.170783,0.706155,0.770731,0.0158958,0.371888,0.960873,0.142215,0.659085,0.389882,0.552753,0.212155,0.448759,0.341523,0.2161,0.0588665,0.186209,0.955729,0.0107011,0.857598,0.320731,0.625918,0.877252,0.214853,0.624871,0.0931582,0.493666,0.558469,0.615633,0.976727,0.171435,0.357304,0.188795,0.674989,0.704975,0.690182,0.0622093,0.0813586,0.393087,0.431602,0.262696,0.247952,0.596151,0.822365,0.217595,0.579437,0.741579,0.962019,0.384357,0.897325,0.506951,0.0610102,0.403111,0.133036,0.734868,0.789885,0.498964,0.542053,0.29683,0.0281381,0.617915,0.877826,0.815535,0.726011,0.376413,0.295997,0.587003,0.0259576,0.421876,0.0135091,0.004866,0.731699,0.505131,0.901513,0.946021,0.294012,0.171594,0.117364,0.67008,0.388103,0.474227,0.30301,0.0799555,0.00227201,0.831421,0.988791,0.14768,0.613192,0.479245,0.0929588,0.373232,0.523891,0.913616,0.762001,0.256997,0.822225,0.52662,0.762085,0.404648,0.504588,0.988342,0.66424,0.833421,0.826179,0.168596,0.983397,0.659147,0.32197,0.703575,0.434431,0.849585,0.892168,0.978313,0.268453,0.819291,0.329191,0.502777,0.989746,0.325464,0.743795,0.399997,0.135254,0.946574,0.861203,0.515772,0.890412,0.731338,0.411906,0.537896,0.508278,0.412009,0.303074,0.984052,0.225527,0.172761,0.0404568,0.442024,0.0246351,0.945632,0.974115,0.771141,0.040171,0.2316,0.170139,0.724192,0.131689,0.986948,0.723393,0.955234,0.00206852,0.383887,0.828621,0.26669,0.45184,0.214308,0.800336,0.655432,0.674993,0.153096,0.848282,0.832129,0.244667,0.677426,0.460476,0.647321,0.507453,0.207837,0.989579,0.0474287,0.511864,0.590165,0.69584,0.252867,0.997074,0.980905,0.0562164,0.954469,0.442565,0.383,0.832383,0.939158,0.413766,0.304431,0.815897,0.513974,0.835886,0.93874,0.196426,0.856181,0.213371,0.971088,0.606518,0.477964,0.310587,0.963045,0.0428861,0.425588,0.431641,0.164371,0.595149,0.70512,0.641965,0.381993,0.412162,0.181415,0.871544,0.257377,0.981104,0.0724996,0.511669,0.643433,0.0637472,0.0290704,0.645649,0.4082,0.932704,0.156292,0.22224,0.368627,0.189364,0.503184,0.432803,0.00533378,0.40397,0.625855,0.552596,0.637512,0.767962,0.151972,0.147844,0.703375,0.196177,0.810232,0.81705,0.510085,0.81985,0.849642,0.792219,0.0580801,0.117874,0.31042,0.94048,0.0310547,0.944801,0.778218,0.975353,0.831571,0.445504,0.780704,0.61287,0.423089,0.50033,0.276655,0.096862,0.207359,0.957604,0.755946,0.0498268,0.362119,0.438784,0.474981,0.732552,0.813644,0.67954,0.773354,0.511853,0.881675,0.452798,0.0116026,0.931908,0.902407,0.50015,0.91445,0.592277,0.115162,0.795163,0.616358,0.207192,0.0556061,0.0464738,0.280882,0.580724,0.156089,0.418102,0.145584,0.0760511,0.323829,0.617859,0.357874,0.302692,0.730376,0.295806,0.518383,0.201995,0.759797,0.314764,0.817137,0.221696,0.517631,0.0685059,0.847115,0.859665,0.730312,0.950528,0.724133,0.502693,0.889062,0.0782462,0.68348,0.765526,0.989477,0.16192,0.0551144,0.670771,0.805967,0.603067,0.437651,0.560674,0.748889,0.283163,0.40383,0.746159,0.946426,0.997524,0.544068,0.205676,0.512581,0.123888,0.325463,0.470853,0.181877,0.0858703,0.679647,0.385378,0.00790155,0.467783,0.461164,0.451967,0.805141,0.352749,0.890522,0.988173,0.651527,0.863828,0.383998,0.28917,0.25892,0.00526422,0.27083,0.0270684,0.769385,0.547823,0.97594,0.971587,0.580268,0.68998,0.201106,0.762475,0.648458,0.338171,0.223759,0.394769,0.826725,0.278186,0.783621,0.271979,0.113485,0.350479,0.203568,0.63523,0.499628,0.579175,0.0542628,0.877361,0.803236,0.936726,0.808888,0.159911,0.357135,0.421095,0.68956,0.978783,0.150895,0.332633,0.17747,0.804735,0.589779,0.0887885,0.151857,0.792329,0.878551,0.641801,0.401684,0.361691,0.651627,0.704703,0.422168,0.421264,0.34262,0.870598,0.388908,0.7091,0.5923,0.943855,0.808379,0.299517,0.316411,0.445189,0.463418,0.650925,0.0283418,0.272175,0.783813,0.784628,0.232351,0.506452,0.975255,0.94179,0.904323,0.564905,0.695606,0.579426,0.978771,0.169773,0.693826,0.474478,0.802812,0.911783,0.345554,0.0921653,0.611422,0.373241,0.373708,0.0335796,0.844205,0.803972,0.550926,0.961137,0.265929,0.998234,0.365182,0.430335,0.865456,0.0742335,0.234592,0.20226,0.485789,0.67343,0.35171,0.713332,0.920396,0.723414,0.0305999,0.181535,0.910002,0.451849,0.888902,0.417228,0.0524889,0.819793,0.470046,0.0668885,0.219538,0.6704,0.82765,0.991807,0.741232,0.473272,0.450762,0.939691,0.528752,0.94602,0.449452,0.69959,0.860148,0.456978,0.0656298,0.979318,0.853771,0.503832,0.455608,0.278397,0.57623,0.687663,0.973389,0.349844,0.708423,0.811542,0.428687,0.42726,0.224733,0.523998,0.536229,0.638638,0.607255,0.240779,0.743599,0.548296,0.212359,0.469451,0.818335,0.911627,0.434886,0.360514,0.734781,0.765912,0.348054,0.618669,0.540502,0.23327,0.140754,0.72704,0.570309,0.650555,0.0884349,0.0357422,0.467556,0.337713,0.812888,0.0123814,0.414734,0.267116,0.354814,0.873127,0.407682,0.782203,0.676247,0.142585,0.290635,0.327811,0.751248,0.535646,0.452412,0.74281,0.882081,0.0367964,0.563689,0.193577,0.434038,0.895665,0.822753,0.583417,0.0892849,0.910906,0.733905,0.804544,0.779868,0.533583,0.340192,0.321513,0.209686,0.043842,0.341212,0.103292,0.0633796,0.19317,0.0706848,0.488033,0.000628829,0.0710499,0.511802,0.208676,0.316556,0.172632,0.640684,0.052301,0.135181,0.78582,0.826639,0.951265,0.218787,0.285897,0.229043,0.872368,0.528001,0.45049,0.921838,0.643565,0.00122029,0.612907,0.335299,0.548591,0.917003,0.286895,|0.106192,0.176648,0.349063,0.960615,0.569505,0.827097,0.207705,0.620388,0.654383,0.89915,0.914043,0.693049,0.195314,0.0787424,0.363632,0.819495,0.587845,0.782479,0.270793,0.114007,0.690615,0.280134,0.674803,0.323151,0.173858,0.489869,0.129831,0.624761,0.617916,0.797554,0.707804,0.771123,0.314872,0.483067,0.181576,0.0885752,0.220123,0.305869,0.297807,0.41957,0.575757,0.662283,0.831515,0.105593,0.342031,0.205042,0.594555,0.743285,0.117397,0.264831,0.0344147,0.409212,0.971929,0.565125,0.140544,0.993231,0.514902,0.459972,0.383994,0.489577,0.330989,0.315509,0.756512,0.8748,0.109994,0.78674,0.146416,0.157399,0.780469,0.758263,0.877724,0.846988,0.0267444,0.625379,0.822609,0.99617,0.484914,0.961215,0.514275,0.377012,0.828536,0.206646,0.112033,0.73533,0.830125,0.8322,0.237271,0.539198,0.999055,0.65568,0.3304,0.973975,0.892033,0.559773,0.302257,0.14716,0.616722,0.267299,0.87728,0.00200635,0.0696196,0.750059,0.778032,0.653864,0.83478,0.939311,0.419151,0.502298,0.579786,0.0495294,0.412458,0.00232536,0.902405,0.322377,0.24388,0.162788,0.450463,0.483075,0.590732,0.195046,0.821558,0.602939,0.790139,0.000870585,0.309326,0.191559,0.368487,0.28601,0.31554,0.976071,0.707877,0.852072,0.188513,0.196274,0.353761,0.926813,0.861869,0.0024783,0.311603,0.00787508,0.84103,0.315553,0.553623,0.407138,0.869932,0.353948,0.717776,0.995627,0.276422,0.69177,0.471353,0.65591,0.772989,0.0335091,0.146577,0.270639,0.431501,0.332373,0.23513,0.367748,0.772465,0.186502,0.945601,0.0984153,0.341592,0.0591654,0.298653,0.850572,0.0510544,0.342169,0.135657,0.241843,0.802386,0.849564,0.115496,0.541103,0.91437,0.905324,0.895675,0.0312928,0.235269,0.345522,0.950684,0.835741,0.201022,0.845213,0.366267,0.612288,0.207402,0.431674,0.249686,0.0618429,0.319074,0.242431,0.302979,0.808352,0.82701,0.0422673,0.302932,0.57932,0.625383,0.88532,0.00288683,0.409598,0.344679,0.0372416,0.62656,0.887398,0.804301,0.500714,0.490977,0.557257,0.738028,0.253023,0.86601,0.702345,0.856719,0.437612,0.202595,0.67485,0.989386,0.00630051,0.782298,0.346167,0.144054,0.305739,0.490513,0.52707,0.903918,0.282678,0.269607,0.987475,0.579776,0.976095,0.867809,0.429161,0.52979,0.15772,0.691521,0.631206,0.341962,0.755277,0.532153,0.91757,0.706085,0.740509,0.126859,0.0929711,0.265335,0.647411,0.721703,0.913957,0.192274,0.585227,0.12309,0.0613582,0.723855,0.708425,0.322467,0.761325,0.583378,0.2312,0.325569,0.128357,0.190001,0.920655,0.527956,0.543285,0.932482,0.426035,0.513689,0.0714176,0.546511,0.959459,0.177819,0.380462,0.542232,0.368712,0.161345,0.962035,0.506202,0.471607,0.955429,0.366317,0.319375,0.199725,0.218174,0.745625,0.772211,0.176724,0.6387,0.0444413,0.366711,0.0854324,0.17348,0.139691,0.303608,0.6212,0.99511,0.0252426,0.37529,0.428483,0.528675,0.261984,0.000271618,0.119353,0.0933258,0.275791,0.00917715,0.200234,0.167167,0.940617,0.290307,0.937926,0.939885,0.845755,0.790289,0.835298,0.901535,0.0753117,0.533473,0.562699,0.454107,0.327536,0.940416,0.431829,0.695201,0.148715,0.642845,0.465187,0.0625465,0.446177,0.497929,0.707545,0.955898,0.371733,0.329317,0.152467,0.209262,0.67357,0.313469,0.771347,0.398138,0.584112,0.193768,0.219605,0.830512,0.802936,0.443598,0.812803,0.472297,0.575741,0.126227,0.655688,0.240692,0.361212,0.689761,0.0594313,0.458726,0.486128,0.958986,0.232102,0.393124,0.535763,0.489577,0.134756,0.963045,0.103632,0.27412,0.426001,0.864618,0.776105,0.307023,0.128578,0.043488,0.866828,0.0376085,0.664504,0.978248,0.170542,0.19839,0.198436,0.711768,0.559304,0.899286,0.351404,0.477304,0.909096,0.296135,0.97555,0.803402,0.367351,0.567881,0.472215,0.807327,0.644901,0.51309,0.341021,0.140467,0.561251,0.971235,0.415985,0.856805,0.0629787,0.903466,0.267435,0.312962,0.966779,0.979959,0.672658,0.273949,0.768956,0.548903,0.950564,0.300275,0.927285,0.62972,0.755855,0.988574,0.974479,0.886709,0.26286,0.984946,0.114226,0.810556,0.837893,0.72424,0.0646545,0.556406,0.432969,0.239235,0.704842,0.434897,0.0142736,0.63215,0.346702,0.315297,0.384804,0.261619,0.741267,0.694858,0.0383201,0.702007,0.258428,0.831329,0.728568,0.858146,0.306181,0.11974,0.449616,0.616137,0.754078,0.570839,0.225101,0.548588,0.90563,0.821019,0.227323,0.326362,0.0242869,0.646267,0.409612,0.896346,0.570229,0.893972,0.607377,0.95608,0.758102,0.900403,0.968304,0.256919,0.939852,0.378676,0.12468,0.290977,0.305847,0.5432,0.355284,0.918568,0.710491,0.0685166,0.878042,0.838652,0.883829,0.327156,0.377542,0.0454566,0.378415,0.859286,0.468565,0.757692,0.449059,0.493,0.510777,0.896318,0.447187,0.997441,0.372075,0.695709,0.64483,0.457665,0.271815,0.57898,0.869556,0.30217,0.809328,0.364755,0.549904,0.503048,0.454712,0.375181,0.102727,0.805223,0.618411,0.115624,0.33614,0.865404,0.270778,0.543605,0.0844523,0.397194,0.929873,0.894858,0.361471,0.77312,0.933295,0.957706,0.130574,0.724949,0.973208,0.692509,0.724277,0.983826,0.750357,0.296905,0.227641,0.516608,0.105424,0.393248,0.0430205,0.838293,0.987082,0.555954,0.806798,0.029543,0.910519,0.520365,0.791912,0.336124,0.423705,0.086863,0.000787377,0.52153,0.611441,0.73686,0.560112,0.725225,0.935791,0.744021,0.616454,0.833953,0.385388,0.0794914,0.837834,0.730495,0.0804811,0.801171,0.0293392,0.926159,0.0876545,0.0368466,0.709998,0.216027,0.0426235,0.158093,0.72117,0.42635,0.0501692,0.678631,0.313463,0.10661,0.473428,0.444785,0.699525,0.76928,0.538699,0.937217,0.547627,0.819139,0.829146,0.192612,0.200535,0.0469207,0.654017,0.104598,0.520076,0.77821,0.504822,0.36377,0.685372,0.233919,0.466674,0.821944,0.3817,0.246887,0.725197,0.172377,0.198464,0.747866,0.546102,0.283179,0.459212,0.626564,0.534316,0.492199,0.438954,0.109509,0.116023,0.586887,0.31717,0.609779,0.260577,0.0954047,0.460725,0.0437011,0.4123,0.685159,0.297696,0.378517,0.1133,0.114709,0.865645,0.503216,0.373214,0.817142,0.460842,0.428391,0.617954,0.490963,0.188858,0.866067,0.544389,0.0212818,0.75153,0.288234,0.794655,0.420951,0.721034,0.673034,0.913047,0.901828,0.496058,0.728788,0.796068,0.513674,0.960852,0.882464,0.900482,0.160226,0.829687,0.954942,0.94867,0.561388,0.69438,0.891493,0.0488459,0.924998,0.468407,0.834599,0.38148,0.905006,0.0278054,0.105731,0.379118,0.831208,0.193763,0.727444,0.94779,0.905629,0.445038,0.0220872,0.878149,0.614532,0.0309701,0.830917,0.52408,0.722985,0.288673,0.0759847,0.315128,0.29746,0.65315,0.025332,0.640307,0.484699,0.267426,0.761349,0.380061,0.699799,0.196296,0.526033,0.916111,0.412533,0.763308,0.819976,0.966277,0.352262,0.97583,0.51639,0.877556,0.12805,0.497383,0.812827,0.220982,0.803766,0.903062,0.988199,0.333564,0.75442,0.790372,0.877281,0.696898,0.270716,0.712362,0.619362,0.980168,0.266095,0.711314,0.487616,0.236038,0.357931,0.129789,0.421795,0.0646694,0.521835,0.323623,0.879504,0.658454,0.711499,0.00368702,0.563931,0.251613,0.589738,0.0844119,0.738568,0.513345,0.432475,0.296105,0.229931,0.0565461,0.362847,0.293732,0.496312,0.0689282,0.591898,0.686349,0.335315,0.345735,0.992969,0.597781,0.000789762,0.0144479,0.270204,0.125442,0.230097,0.185409,0.104314,0.556121,0.253168,0.998379,0.682764,0.763218,0.357377,0.991121,0.395372,0.82079,0.40128,0.494468,0.395377,0.652514,0.539346,0.456779,0.374671,0.475095,0.662702,0.981197,0.603764,0.220549,0.320341,0.177357,0.372142,0.55695,0.468632,0.229327,0.492743,0.0804762,0.883822,0.981531,0.241825,0.0662277,0.739391,0.810278,0.209224,0.0204363,0.343116,0.924599,0.0762911,0.503898,0.0986654,0.517265,0.159611,0.545561,0.660923,0.750826,0.114288,0.102567,0.114047,0.420259,0.271963,0.629419,0.200413,0.0471039,0.322126,0.740435,0.0420756,0.848363,0.830197,0.596403,0.829641,0.140688,0.786855,0.443499,0.771087,0.251294,0.490907,0.517916,0.944215,0.343294,0.15235,0.588715,0.523497,0.587915,0.580995,0.106392,0.65413,0.711319,0.335531,0.661642,0.207642,0.578678,0.950757,0.786982,0.5879,0.699581,0.0512554,0.249544,0.718305,0.832993,0.344956,0.39917,0.845482,0.124749,0.478412,0.209316,0.588684,0.690233,0.599694,0.408412,0.751243,0.12528,0.812961,0.820099,0.161617,0.411046,0.816278,0.00551045,0.0271291,0.815705,0.50802,0.611697,0.885052,0.599093,0.617564,0.751675,0.976972,0.691533,0.16872,0.440674,0.936471,0.546921,0.94177,0.277779,0.787194,0.486431,0.825145,0.807469,0.144463,0.163777,0.874159,0.637788,0.18835,0.147442,0.171451,0.431264,0.549777,0.744761,0.796917,0.867891,0.453249,0.543191,0.609371,0.719427,0.267056,0.793471,0.234608,0.695515,0.844882,0.149125,0.901105,0.444636,0.0566872,0.44464,0.975463,0.156853,0.0853379,0.0134624,0.455276,0.585854,0.719069,0.190494,0.191878,0.204778,0.428242,0.379807,0.509606,0.191253,0.83964,0.283234,0.603769,0.887371,0.334666,0.235078,0.341876,0.455362,0.560226,0.819843,0.0486292,0.484817,0.198483,0.0501815,0.581535,0.669143,0.963717,0.318561,0.61291,0.555503,0.50466,0.118021,0.0736878,0.163268,0.229533,0.921747,0.801232,0.48595,0.714455,0.360478,0.290696,0.109343,0.82295,0.884747,0.969858,0.224969,0.910521,0.109094,0.106469,0.489872,0.918745,0.442345,0.48096,0.979797,0.966233,0.69109,0.776794,0.851346,0.326951,0.771709,0.895391,0.84186,0.225453,0.245804,0.568811,0.853858,0.0124914,0.23558,0.762481,0.193053,0.683674,0.124242,0.369699,0.934996,|0.432698,0.725771,0.733402,0.28246,0.318616,0.694383,0.641496,0.337771,0.469326,0.92374,0.337083,0.973625,0.166863,0.634512,0.854975,0.316226,0.464774,0.699145,0.903162,0.199793,0.726642,0.874079,0.13836,0.0186816,0.735359,0.441101,0.493019,0.28421,0.910335,0.748099,0.597559,0.0264905,0.742523,0.978589,0.347291,0.65555,0.843508,0.771175,0.607361,0.0742502,0.357856,0.174781,0.560903,0.775854,0.732486,0.17249,0.258924,0.206807,0.701442,0.373876,0.269694,0.323478,0.062179,0.537014,0.751222,0.888924,0.864876,0.518102,0.518807,0.65263,0.53138,0.74114,0.951321,0.349238,0.555661,0.0642507,0.0411093,0.816019,0.894549,0.42044,0.251923,0.8476,0.0433532,0.376177,0.285917,0.371497,0.802041,0.994043,0.218005,0.0191408,0.738539,0.267017,0.88442,0.576311,0.348913,0.393933,0.906557,0.256361,0.7275,0.0331962,0.825432,0.133474,0.340596,0.00772119,0.921649,0.787227,0.737099,0.725534,0.023158,0.561356,0.88545,0.447082,0.799897,0.123201,0.137491,0.116355,0.289211,0.229706,0.0406966,0.249902,0.49598,0.0920888,0.0234105,0.176796,0.902513,0.108506,0.0486818,0.00285691,0.951333,0.995925,0.51382,0.618213,0.529691,0.485509,0.0969113,0.521824,0.124065,0.480455,0.642587,0.0531157,0.639676,0.103363,0.503195,0.754385,0.828,0.983691,0.546645,0.0582079,0.0239233,0.545169,0.240433,0.589812,0.0297787,0.630303,0.0409989,0.756556,0.326688,0.516216,0.870991,0.294764,0.142009,0.862682,0.508785,0.436403,0.441342,0.716006,0.286688,0.830473,0.00805789,0.0952955,0.0233438,0.753754,0.493239,0.470557,0.0161722,0.137636,0.0988971,0.361248,0.859674,0.0980788,0.693161,0.180637,0.14641,0.107806,0.0471585,0.923252,0.801481,0.756819,0.609059,0.307131,0.584295,0.367941,0.600528,0.908257,0.704277,0.322876,0.694367,0.812003,0.862285,0.033246,0.242899,0.299131,0.622657,0.286517,0.0935302,0.151123,0.899889,0.152478,0.12832,0.613535,0.786792,0.20475,0.446315,0.398198,0.473522,0.0161023,0.914618,0.965684,0.685974,0.0629517,0.046198,0.218479,0.245344,0.384985,0.0353346,0.143985,0.637022,0.183483,0.132035,0.539498,0.981274,0.950315,0.461929,0.0560594,0.374504,0.687378,0.354957,0.695775,0.694536,0.651109,0.53562,0.292542,0.25167,0.850915,0.608863,0.947681,0.340137,0.235718,0.525545,0.555113,0.185801,0.288309,0.322694,0.955395,0.573564,0.136083,0.889261,0.248544,0.453288,0.634103,0.374003,0.263786,0.0254167,0.465135,0.303874,0.840813,0.82144,0.624058,0.179379,0.144097,0.962425,0.880691,0.499129,0.34184,0.966251,0.162685,0.0164709,0.311294,0.309338,0.118278,0.201209,0.227135,0.456898,0.57781,0.083495,0.730478,0.306764,0.996697,0.487457,0.100839,0.959347,0.326727,0.847366,0.305186,0.034603,0.622011,0.651127,0.0708878,0.160674,0.485671,0.0688859,0.544198,0.99128,0.681868,0.688273,0.306359,0.765409,0.849046,0.497307,0.307666,0.631677,0.382424,0.156537,0.177046,0.380249,0.748108,0.627285,0.407421,0.77982,0.201755,0.013433,0.0392929,0.0599741,0.613567,0.692182,0.42271,0.654689,0.31705,0.667015,0.4098,0.064027,0.688767,0.242103,0.721,0.269538,0.290449,0.110121,0.578904,0.62937,0.242649,0.762571,0.291581,0.129493,0.864424,0.0592499,0.278936,0.522914,0.638539,0.195626,0.693412,0.209659,0.584872,0.207789,0.105162,0.262124,0.718934,0.88905,0.121553,0.254423,0.685478,0.722586,0.10751,0.868142,0.548158,0.675762,0.86963,0.723702,0.67563,0.171862,0.979327,0.816593,0.284383,0.220833,0.389826,0.593326,0.531937,0.262789,0.862214,0.551903,0.619446,0.835468,0.715704,0.704944,0.245629,0.383295,0.13359,0.799345,0.177609,0.173911,0.760621,0.854622,0.375705,0.556716,0.0934567,0.233189,0.541846,0.136708,0.466262,0.788315,0.902825,0.262874,0.509938,0.55917,0.163648,0.41227,0.367587,0.272137,0.941576,0.867191,0.427123,0.0805863,0.619459,0.0465035,0.868275,0.802085,0.333514,0.225211,0.230115,0.254624,0.590825,0.857999,0.273382,0.288164,0.192353,0.0259765,0.697191,0.390381,0.545093,0.080403,0.6631,0.181574,0.913306,0.281956,0.22487,0.0658271,0.780874,0.485817,0.398184,0.41216,0.427327,0.692826,0.67456,0.559529,0.172341,0.596459,0.24174,0.204126,0.728861,0.593069,0.725524,0.284685,0.197521,0.553197,0.754692,0.989251,0.403904,0.482242,0.157044,0.624593,0.21749,0.331915,0.881125,0.110806,0.078398,0.816739,0.853034,0.230865,0.606773,0.565759,0.787894,0.355545,0.911137,0.00636548,0.260761,0.43156,0.256694,0.456878,0.749635,0.396521,0.85334,0.912589,0.368554,0.600139,0.792123,0.471176,0.962332,0.842024,0.478323,0.715589,0.992065,0.530475,0.923267,0.205541,0.0211669,0.233248,0.00412548,0.953361,0.000700533,0.927367,0.212031,0.11637,0.131903,0.466466,0.420322,0.504868,0.439772,0.288532,0.855646,0.800324,0.582621,0.423661,0.594581,0.3683,0.947065,0.254172,0.43805,0.885923,0.644311,0.240445,0.0817841,0.37444,0.44688,0.143319,0.0777838,0.498513,0.638825,0.20926,0.31294,0.889951,0.0518969,0.891214,0.48128,0.667295,0.499402,0.648021,0.135276,0.129166,0.599838,0.521649,0.368454,0.594907,0.417108,0.726924,0.75755,0.433431,0.968668,0.150621,0.213227,0.568823,0.947048,0.795472,0.728078,0.18097,0.0902129,0.494688,0.0133093,0.143073,0.534324,0.955526,0.868027,0.335282,0.1059,0.294914,0.944897,0.592716,0.171993,0.0799395,0.508524,0.460466,0.679951,0.0542479,0.38624,0.209762,0.659649,0.239202,0.836023,0.511682,0.22606,0.992459,0.176818,0.175221,0.10783,0.729961,0.570081,0.920956,0.461832,0.36282,0.749214,0.490351,0.276263,0.891531,0.597083,0.474333,0.109474,0.273116,0.91641,0.953054,0.834659,0.628193,0.0330327,0.915588,0.0564318,0.658807,0.73193,0.81878,0.22264,0.227507,0.897005,0.157479,0.532884,0.826917,0.996477,0.163996,0.801532,0.690506,0.473089,0.45723,0.125018,0.310852,0.711463,0.872905,0.781886,0.275336,0.66923,0.368517,0.908025,0.773341,0.402661,0.628297,0.026406,0.143638,0.925014,0.0733055,0.284333,0.792077,0.442645,0.856737,0.477775,0.255011,0.200719,0.66498,0.836803,0.188933,0.70392,0.888909,0.198194,0.755077,0.788814,0.903284,0.273443,0.498681,0.0313955,0.490828,0.739421,0.825409,0.806637,0.592965,0.267553,0.596863,0.384489,0.141341,0.739399,0.995845,0.861929,0.881078,0.0937217,0.227219,0.79083,0.149492,0.951862,0.700507,0.423079,0.619276,0.594862,0.739784,0.773707,0.965576,0.438346,0.918303,0.218909,0.870521,0.473284,0.600061,0.388657,0.605791,0.541979,0.355409,0.976027,0.976325,0.007972,0.5207,0.652829,0.115036,0.369041,0.104641,0.560113,0.53016,0.888578,0.408822,0.599349,0.922837,0.778103,0.871618,0.849964,0.384278,0.295482,0.52456,0.930001,0.845118,0.574515,0.255502,0.81101,0.318455,0.727941,0.623505,0.12821,0.758244,0.620029,0.910447,0.956689,0.372241,0.0043838,0.528761,0.371943,0.722755,0.185438,0.658009,0.118401,0.358026,0.154747,0.366848,0.948819,0.867628,0.305481,0.245388,0.936173,0.464215,0.960277,0.946167,0.549896,0.121866,0.44194,0.430024,0.51097,0.288259,0.369147,0.635648,0.503731,0.221821,0.933701,0.469372,0.493987,0.841098,0.220064,0.842741,0.140737,0.264836,0.508154,0.781746,0.598689,0.837567,0.903074,0.78663,0.128549,0.827514,0.531058,0.492985,0.00109679,0.194306,0.645921,0.454801,0.239126,0.975134,0.983937,0.0882077,0.0915529,0.702195,0.692801,0.279301,0.927988,0.973681,0.0807551,0.0150723,0.0426466,0.535997,0.394605,0.779945,0.560148,0.892092,0.474774,0.851773,0.110775,0.512277,0.172495,0.525085,0.6972,0.666774,0.216556,0.0109826,0.514377,0.615999,0.303604,0.29074,0.598812,0.475201,0.324322,0.489402,0.436521,0.394526,0.395181,0.782848,0.167814,0.389649,0.205159,0.816493,0.0292693,0.254316,0.0279375,0.963903,0.445282,0.382067,0.0284849,0.86708,0.120895,0.962223,0.00992787,0.373281,0.932966,0.258241,0.929465,0.388378,0.656722,0.215075,0.148812,0.894963,0.88753,0.174941,0.491189,0.662694,0.506651,0.084504,0.369343,0.108789,0.948085,0.000800252,0.708665,0.700637,0.218661,0.160118,0.0638179,0.365839,0.623324,0.80766,0.791821,0.174835,0.506234,0.820111,0.941409,0.0983291,0.843808,0.780416,0.0289119,0.827033,0.646731,0.116781,0.145779,0.523467,0.928971,0.320104,0.41636,0.515653,0.540138,0.654592,0.218619,0.743753,0.750732,0.487618,0.17769,0.640433,0.0739428,0.215552,0.957692,0.386994,0.622832,0.298422,0.0982108,0.322663,0.570703,0.830477,0.533519,0.844913,0.652626,0.818752,0.195523,0.527665,0.400808,0.446914,0.128903,0.551269,0.677299,0.232217,0.529315,0.323988,0.791135,0.770883,0.232929,0.60356,0.194823,0.232745,0.255554,0.728674,0.407257,0.515814,0.683761,0.294972,0.4164,0.518137,0.108488,0.00793588,0.704988,0.35727,0.832896,0.91258,0.556336,0.843788,0.705554,0.702691,0.00721341,0.176566,0.0535948,0.783295,0.350238,0.869988,0.114284,0.707926,0.23806,0.155084,0.37929,0.0444672,0.218149,0.348429,0.421454,0.0380363,0.344592,0.968102,0.358574,0.107413,0.722291,0.338655,0.06171,0.988139,0.50701,0.016194,0.44876,0.347052,0.0674814,0.720577,0.0925026,0.453983,0.220505,0.416762,0.898755,0.824686,0.983378,0.419674,0.286127,0.408926,0.841534,0.827626,0.775503,0.0230799,0.657143,0.0562373,0.20273,0.773614,0.248573,0.786806,0.0535771,0.478592,0.703397,0.527392,0.680922,0.591458,0.545595,0.834988,0.0756025,0.859828,0.533226,0.924458,0.664097,0.068776,0.890619,0.551878,0.362976,0.615301,0.669657,0.72489,0.591382,0.120057,0.222726,0.238605,0.575762,0.512519,0.055915,0.974826,0.559016,0.416912,0.34257,0.577675,0.486865,|0.99618,0.309806,0.909729,0.86696,0.128378,0.365257,0.624195,0.171063,0.816333,0.710708,0.607164,0.199883,0.171573,0.792636,0.492968,0.193213,0.052452,0.48403,0.382555,0.465588,0.950467,0.250263,0.485528,0.859908,0.188008,0.906917,0.873382,0.820365,0.759429,0.195408,0.218491,0.774298,0.687045,0.241731,0.782614,0.778765,0.874014,0.119077,0.298344,0.243296,0.357248,0.0385543,0.674465,0.619131,0.591587,0.212334,0.965734,0.336491,0.71535,0.373416,0.238989,0.0341026,0.255301,0.963463,0.814672,0.530596,0.518567,0.609128,0.891315,0.889744,0.0613465,0.853563,0.0175605,0.352439,0.421781,0.645481,0.472726,0.242993,0.815357,0.731087,0.98852,0.966516,0.54425,0.530335,0.0374895,0.132077,0.24713,0.250683,0.95681,0.264071,0.285166,0.987113,0.308457,0.469798,0.29146,0.898724,0.580172,0.917248,0.855296,0.144779,0.462299,0.940076,0.687997,0.0511805,0.830024,0.104932,0.790887,0.774092,0.152075,0.630195,0.146116,0.749553,0.473542,0.561707,0.934985,0.0131237,0.643466,0.261122,0.18368,0.11219,0.931678,0.0511526,0.564199,0.0918254,0.714837,0.90929,0.537911,0.667916,0.0953615,0.866576,0.732249,0.15395,0.888961,0.884386,0.50599,0.143438,0.19453,0.785803,0.900051,0.870485,0.553499,0.908263,0.0865941,0.795651,0.164189,0.0224221,0.754913,0.998222,0.965377,0.932748,0.498049,0.487383,0.62908,0.180404,0.629391,0.351665,0.595877,0.66917,0.732055,0.791759,0.416012,0.55891,0.554486,0.588967,0.568399,0.595139,0.534204,0.0195493,0.641393,0.347826,0.711428,0.552554,0.865101,0.485095,0.821607,0.220075,0.778094,0.860879,0.942124,0.837602,0.679259,0.420573,0.282011,0.364477,0.176266,0.0185745,0.211275,0.182439,0.000368059,0.564745,0.56966,0.855898,0.40886,0.753022,0.253506,0.291815,0.965276,0.0364155,0.522508,0.703981,0.782571,0.043581,0.306818,0.0464321,0.165715,0.052735,0.689606,0.333978,0.558762,0.444744,0.457159,0.358717,0.219308,0.923674,0.616128,0.55639,0.691258,0.775304,0.1042,0.341041,0.444579,0.27387,0.938624,0.66183,0.948865,0.423884,0.635754,0.21628,0.65433,0.015173,0.509459,0.758302,0.515119,0.653021,0.349181,0.846241,0.380017,0.0966514,0.74433,0.436015,0.869448,0.805836,0.546555,0.25308,0.506596,0.959335,0.118889,0.546813,0.810259,0.421353,0.306974,0.390239,0.0198504,0.630685,0.588032,0.051677,0.88835,0.954348,0.70005,0.135096,0.297808,0.182505,0.615276,0.621217,0.961868,0.620674,0.420024,0.693549,0.765709,0.500388,0.302541,0.16151,0.72361,0.204041,0.25111,0.489255,0.157945,0.974357,0.586461,0.945154,0.821315,0.738794,0.729699,0.0462396,0.451113,0.773067,0.57404,0.524843,0.451172,0.518891,0.492407,0.916857,0.151612,0.350864,0.496344,0.854471,0.243213,0.249313,0.733267,0.994684,0.0851874,0.55617,0.281964,0.849863,0.853627,0.54601,0.220922,0.232862,0.863753,0.00351816,0.951495,0.643149,0.836794,0.519783,0.056287,0.152261,0.963984,0.0258374,0.758458,0.760401,0.0883763,0.642599,0.44921,0.428082,0.699844,0.0816128,0.354252,0.790884,0.891378,0.330859,0.961911,0.558994,0.215098,0.483757,0.192264,0.0203426,0.752873,0.131885,0.885036,0.397829,0.675109,0.328829,0.554957,0.791813,0.862747,0.42405,0.901725,0.791405,0.732491,0.0647004,0.147515,0.242975,0.84218,0.505896,0.972896,0.52505,0.344625,0.361688,0.735539,0.536933,0.988539,0.0517414,0.849544,0.238115,0.00138009,0.65243,0.607497,0.506495,0.894014,0.50729,0.590234,0.51665,0.299016,0.539101,0.060616,0.842899,0.45483,0.35373,0.492992,0.908374,0.175671,0.758944,0.170823,0.0989313,0.370874,0.117742,0.408236,0.449805,0.95042,0.48674,0.78269,0.96145,0.755601,0.518236,0.169311,0.956381,0.0603124,0.531492,0.067342,0.169254,0.934939,0.744067,0.0245082,0.945299,0.327093,0.196325,0.31267,0.921365,0.453445,0.310186,0.598852,0.529236,0.231053,0.862894,0.397086,0.706964,0.20992,0.262491,0.480608,0.97227,0.221307,0.508484,0.723819,0.769854,0.503845,0.517796,0.12611,0.80871,0.569272,0.402525,0.923354,0.0325084,0.368443,0.361747,0.133437,0.392788,0.995722,0.98387,0.590801,0.767215,0.991943,0.0906165,0.884574,0.076595,0.0556583,0.168157,0.698953,0.890507,0.555645,0.488701,0.468782,0.956165,0.927616,0.711386,0.59097,0.504933,0.0661159,0.267848,0.972311,0.609189,0.293867,0.399998,0.898277,0.565399,0.527474,0.323462,0.507374,0.378149,0.463616,0.187551,0.709637,0.45994,0.306397,0.451449,0.495631,0.0363196,0.78827,0.59675,0.367239,0.210429,0.201358,0.676924,0.911699,0.0592045,0.551314,0.759284,0.143565,0.885673,0.859843,0.925194,0.0699188,0.377667,0.137277,0.137867,0.334783,0.860527,0.671046,0.608566,0.732463,0.817605,0.299474,0.468953,0.361297,0.911651,0.380265,0.514714,0.377896,0.375666,0.86587,0.460739,0.173467,0.922578,0.61526,0.351141,0.841923,0.525479,0.347053,0.146321,0.590475,0.0471308,0.661057,0.1485,0.183977,0.336902,0.584858,0.36539,0.590879,0.0365936,0.0513424,0.423218,0.636037,0.927282,0.392297,0.78742,0.821564,0.0636736,0.0193777,0.705018,0.872171,0.129025,0.358775,0.89365,0.604855,0.629867,0.446112,0.952899,0.206855,0.672133,0.414416,0.69737,0.36367,0.202851,0.350631,0.494265,0.649045,0.62753,0.787678,0.392447,0.733209,0.552616,0.234437,0.327547,0.161563,0.496836,0.0901131,0.89888,0.227321,0.0190508,0.193866,0.528978,0.442177,0.825066,0.990664,0.386981,0.463959,0.0570174,0.773795,0.0178561,0.680277,0.419349,0.198015,0.897664,0.60915,0.88232,0.0466701,0.758767,0.0630572,0.350344,0.705683,0.639526,0.368659,0.908837,0.50419,0.0546579,0.266959,0.00022167,0.0575199,0.390134,0.310412,0.179927,0.0734438,0.546174,0.384268,0.879811,0.54915,0.857493,0.142548,0.523228,0.801835,0.137315,0.84183,0.293088,0.331301,0.343365,0.38986,0.214626,0.756371,0.996486,0.727218,0.0349141,0.99903,0.390703,0.359063,0.633988,0.251805,0.3607,0.67333,0.557104,0.89161,0.0999779,0.765834,0.23798,0.464139,0.678532,0.84695,0.52119,0.203822,0.579562,0.645692,0.66283,0.84343,0.919594,0.83059,0.769596,0.559193,0.28868,0.0198357,0.506712,0.965721,0.551749,0.61717,0.684176,0.719353,0.145958,0.821323,0.379638,0.593349,0.360329,0.355608,0.0830908,0.968379,0.93848,0.825735,0.828193,0.0251237,0.371921,0.932529,0.847561,0.6449,0.17601,0.619636,0.791469,0.390746,0.142101,0.612658,0.0939858,0.159502,0.831405,0.518929,0.253925,0.901399,0.777439,0.246067,0.934266,0.338563,0.988614,0.635889,0.07122,0.375714,0.883032,0.356766,0.0420783,0.115149,0.153451,0.821475,0.25252,0.946702,0.437359,0.957888,0.766871,0.235936,0.961258,0.395031,0.56284,0.794617,0.37568,0.790959,0.966046,0.133734,0.879416,0.670219,0.975818,0.393963,0.18441,0.81816,0.472007,0.587698,0.363799,0.160811,0.0612407,0.0318629,0.682837,0.919974,0.1763,0.0780112,0.525802,0.843156,0.151218,0.301235,0.0490947,0.645808,0.178546,0.449125,0.10523,0.926577,0.854645,0.175145,0.289479,0.0684584,0.911581,0.0761185,0.847233,0.736213,0.938134,0.130593,0.137479,0.850591,0.874917,0.277129,0.927226,0.247194,0.397749,0.496247,0.434342,0.121423,0.136786,0.73546,0.79318,0.152168,0.864875,0.942161,0.742433,0.926483,0.845229,0.0989553,0.823495,0.0153287,0.556721,0.262927,0.808355,0.945626,0.716497,0.523252,0.547052,0.709629,0.64846,0.152575,0.217661,0.106468,0.480819,0.173212,0.412056,0.910211,0.889359,0.736597,0.456631,0.743859,0.121848,0.681718,0.220386,0.106518,0.312243,0.40384,0.0212708,0.113261,0.286821,0.520443,0.64705,0.455964,0.313073,0.861764,0.612723,0.549317,0.631246,0.140055,0.907298,0.468438,0.356642,0.925112,0.633939,0.253837,0.785925,0.201217,0.952647,0.580494,0.721995,0.362735,0.740511,0.519876,0.785186,0.553961,0.909168,0.641038,0.00090915,0.537301,0.234217,0.593128,0.717941,0.019872,0.298668,0.266176,0.838888,0.948008,0.106309,0.747926,0.329885,0.262709,0.0794216,0.323556,0.362917,0.000482917,0.496517,0.604958,0.574147,0.0702477,0.257378,0.496815,0.189879,0.627536,0.0562768,0.524549,0.327307,0.790354,0.535076,0.0586098,0.0899449,0.284565,0.963418,0.669405,0.794208,0.650233,0.10685,0.0607109,0.899731,0.269669,0.743573,0.788777,0.320557,0.109024,0.117204,0.819152,0.947642,0.938162,0.227058,0.00379854,0.603118,0.474186,0.0956591,0.816914,0.789901,0.19637,0.895224,0.669565,0.198433,0.305571,0.152138,0.218997,0.154788,0.329216,0.0679728,0.429502,0.931297,0.676225,0.741679,0.0984619,0.782699,0.135543,0.563519,0.532067,0.267043,0.667047,0.207392,0.467894,0.989166,0.576459,0.553268,0.84737,0.00174701,0.506365,0.28187,0.393608,0.0848174,0.304867,0.813891,0.706656,0.863517,0.514127,0.211161,0.637469,0.194644,0.329781,0.0102461,0.106605,0.843345,0.0967519,0.742822,0.216721,0.747427,0.226288,0.329855,0.576203,0.840321,0.381968,0.940889,0.775556,0.23497,0.00488621,0.0412932,0.248109,0.556428,0.417942,0.23231,0.832946,0.713299,0.519203,0.508586,0.721946,0.754766,0.721331,0.0726163,0.269976,0.10147,0.405887,0.462126,0.297032,0.508752,0.844631,0.391018,0.180004,0.102834,0.850937,0.26377,0.655899,0.971142,0.252445,0.572431,0.138047,0.759362,0.503069,0.00251526,0.380358,0.450848,0.502639,0.770947,0.647156,0.431638,0.567362,0.735176,0.0928699,0.924675,0.499491,0.0126865,0.674469,0.178235,0.674018,0.805043,0.461199,0.689819,0.0945786,0.777697,0.266987,0.168766,0.864293,0.155975,0.97738,0.0790712,0.7365,0.070531,0.867931,0.442814,0.25779,0.983683,0.845561,0.651007,0.523816,0.612318,0.746796,0.0642123,0.848263,0.830409,|0.73406,0.0176118,0.644208,0.694628,0.754229,0.18751,0.689918,0.245995,0.933389,0.674859,0.328475,0.465522,0.652455,0.50458,0.897871,0.573938,0.85485,0.590332,0.806803,0.197659,0.329286,0.581211,0.692373,0.885481,0.00547791,0.0225087,0.347168,0.420865,0.60965,0.691489,0.473259,0.683033,0.898023,0.601235,0.629743,0.438074,0.528631,0.392332,0.43694,0.24128,0.138995,0.528286,0.714712,0.808394,0.00551802,0.0541819,0.830563,0.128039,0.0396395,0.237802,0.318088,0.229195,0.974914,0.876294,0.714673,0.685995,0.054309,0.225695,0.945499,0.382886,0.53533,0.365436,0.0232468,0.0125175,0.721873,0.495403,0.550907,0.372075,0.0263174,0.350045,0.43088,0.853126,0.0316395,0.383871,0.816167,0.85097,0.561799,0.314612,0.427528,0.952703,0.877878,0.71985,0.861535,0.292939,0.070223,0.239555,0.716876,0.365202,0.78827,0.369629,0.999924,0.362807,0.438394,0.511882,0.303859,0.389698,0.217938,0.720848,0.186802,0.851212,0.849386,0.547526,0.556519,0.513991,0.676956,0.216073,0.511019,0.831433,0.183173,0.960536,0.591863,0.582587,0.963,0.0360689,0.550262,0.704288,0.49333,0.335186,0.401778,0.244311,0.128823,0.485901,0.935353,0.0658957,0.996084,0.135204,0.69847,0.243296,0.088869,0.567804,0.44262,0.348022,0.0490946,0.16183,0.939409,0.269745,0.795551,0.732712,0.100372,0.592647,0.181864,0.289753,0.797972,0.0607731,0.560128,0.598026,0.653691,0.822033,0.125173,0.357653,0.287027,0.640927,0.430627,0.539918,0.129598,0.811085,0.708262,0.94576,0.263236,0.409509,0.395925,0.959373,0.899647,0.0457332,0.252604,0.318344,0.409054,0.602628,0.625552,0.921338,0.618779,0.858048,0.831515,0.268036,0.792934,0.710407,0.794274,0.781827,0.306776,0.205483,0.902355,0.0248787,0.233684,0.0943466,0.302238,0.197555,0.605641,0.269124,0.0290263,0.799084,0.046248,0.0563053,0.772971,0.298625,0.156519,0.0828342,0.680266,0.79385,0.953854,0.53218,0.936486,0.607783,0.516807,0.797573,0.0729468,0.910845,0.0324325,0.757589,0.659515,0.324718,0.0853551,0.0552094,0.502057,0.226014,0.226949,0.0949696,0.750857,0.127794,0.0521194,0.27347,0.41612,0.384647,0.207747,0.783899,0.204511,0.891174,0.734176,0.861885,0.619651,0.701178,0.379644,0.260266,0.589708,0.319491,0.903133,0.893548,0.329825,0.731367,0.389964,0.462568,0.405661,0.153348,0.176564,0.266883,0.340066,0.979892,0.25666,0.0999962,0.424555,0.442119,0.219992,0.911237,0.521864,0.746265,0.721541,0.25704,0.76871,0.824659,0.482194,0.929623,0.422881,0.175395,0.897045,0.181094,0.155183,0.625616,0.850264,0.32836,0.440865,0.997829,0.210007,0.825423,0.289178,0.502021,0.957533,0.366422,0.916186,0.104215,0.714546,0.128961,0.969133,0.107022,0.167717,0.052955,0.945655,0.803899,0.442468,0.372267,0.911419,0.16088,0.023765,0.234031,0.931312,0.870814,0.0810301,0.749289,0.833068,0.830279,0.0288178,0.988277,0.734616,0.929525,0.019341,0.862703,0.757455,0.0805381,0.0527402,0.602912,0.067876,0.325843,0.515778,0.312655,0.527965,0.978485,0.303026,0.439433,0.128176,0.508632,0.23108,0.555463,0.842044,0.628829,0.91383,0.0497401,0.254039,0.50421,0.211478,0.38293,0.0926889,0.777135,0.507234,0.875995,0.881897,0.662792,0.651373,0.0323349,0.0893826,0.409129,0.185829,0.664773,0.777619,0.372012,0.921989,0.222973,0.500436,0.448861,0.144149,0.93934,0.780949,0.0370926,0.786289,0.675384,0.338057,0.813343,0.581093,0.679698,0.594556,0.439937,0.777787,0.240598,0.798037,0.790467,0.891173,0.0109569,0.0519767,0.869942,0.696163,0.551258,0.87241,0.921801,0.341404,0.00856239,0.747047,0.296326,0.620996,0.110066,0.334607,0.12453,0.427568,0.502494,0.919757,0.52491,0.835451,0.276956,0.931275,0.339029,0.633357,0.320651,0.662339,0.188066,0.490584,0.519863,0.348108,0.225191,0.894816,0.0975085,0.840664,0.18729,0.560034,0.804399,0.840183,0.424588,0.0389011,0.391136,0.911437,0.412494,0.440927,0.700402,0.716831,0.00861031,0.0569407,0.168813,0.2044,0.470374,0.177082,0.613855,0.437328,0.0522111,0.871691,0.324001,0.18789,0.508596,0.151639,0.795098,0.35607,0.327533,0.316716,0.486444,0.256979,0.448591,0.384881,0.895522,0.129639,0.458561,0.943554,0.732677,0.58764,0.00269634,0.695133,0.748668,0.0964894,0.838946,0.389078,0.0109461,0.694695,0.673036,0.46955,0.0409402,0.502233,0.732365,0.99494,0.288162,0.00110584,0.813471,0.224893,0.485928,0.852373,0.443487,0.857471,0.806582,0.302147,0.80008,0.348194,0.470315,0.838504,0.0379951,0.955546,0.773698,0.0872773,0.356059,0.774992,0.636774,0.0394499,0.0182017,0.257255,0.622653,0.587619,0.483421,0.0395904,0.814144,0.951474,0.486597,0.913372,0.613365,0.935912,0.357436,0.824366,0.997467,0.613511,0.34033,0.942459,0.185683,0.0849028,0.444488,0.0503367,0.00894076,0.528169,0.979711,0.730952,0.577833,0.829325,0.271382,0.962222,0.297547,0.708008,0.477946,0.881694,0.464332,0.221228,0.31374,0.737321,0.632527,0.210034,0.340598,0.594323,0.169322,0.0586023,0.46658,0.921641,0.979262,0.000828803,0.602605,0.796751,0.39342,0.412151,0.324169,0.666957,0.821836,0.356308,0.651151,0.0250163,0.548279,0.17748,0.138431,0.716285,0.406685,0.439808,0.149212,0.71438,0.745905,0.000232637,0.00678384,0.0883443,0.696294,0.584884,0.291916,0.372573,0.557356,0.568482,0.175356,0.761612,0.0615849,0.0574868,0.466422,0.545614,0.559899,0.21681,0.135055,0.252986,0.867303,0.358369,0.587884,0.598603,0.417926,0.0320654,0.0647588,0.700372,0.142233,0.436489,0.0047437,0.820765,0.734166,0.161568,0.12308,0.367952,0.421434,0.216307,0.385793,0.228115,0.46154,0.80646,0.483096,0.861518,0.0219761,0.86551,0.913938,0.970318,0.518894,0.385833,0.0113851,0.53548,0.981078,0.310023,0.939221,0.581064,0.277304,0.836073,0.821468,0.0493307,0.869054,0.171363,0.115589,0.939381,0.85463,0.955769,0.134275,0.986721,0.25958,0.545618,0.133446,0.909949,0.774937,0.726075,0.463118,0.120405,0.742321,0.975695,0.474593,0.797819,0.822679,0.020386,0.186301,0.593676,0.0918664,0.502142,0.747793,0.462087,0.400671,0.754608,0.0355822,0.717371,0.880578,0.529766,0.375684,0.599843,0.0874846,0.765644,0.313249,0.798481,0.592861,0.877092,0.444713,0.586751,0.370151,0.29693,0.243834,0.305939,0.559485,0.721901,0.0293168,0.870478,0.431282,0.373295,0.606564,0.162725,0.450678,0.163131,0.0469617,0.644949,0.697506,0.614536,0.222891,0.208301,0.36304,0.91798,0.957478,0.411446,0.209911,0.846186,0.955431,0.818434,0.802356,0.648809,0.0466689,0.636567,0.215946,0.128137,0.997862,0.530454,0.208649,0.607026,0.121144,0.382194,0.77526,0.740034,0.933305,0.392426,0.1124,0.317942,0.148777,0.294535,0.417897,0.262204,0.811708,0.964282,0.629459,0.607663,0.883973,0.505257,0.932194,0.260814,0.599967,0.156628,0.671201,0.902901,0.208199,0.148405,0.624541,0.27035,0.944725,0.339048,0.902938,0.518851,0.480436,0.123405,0.933912,0.278879,0.208578,0.63008,0.0213846,0.599065,0.397818,0.885085,0.921127,0.0652398,0.894963,0.0803459,0.0931603,0.618211,0.20331,0.684175,0.295588,0.238916,0.479715,0.0022223,0.418342,0.636711,0.558188,0.161311,0.896102,0.591343,0.452896,0.859697,0.954468,0.301698,0.874818,0.515289,0.49658,0.983881,0.44452,0.591581,0.0444516,0.360521,0.0210987,0.776385,0.790645,0.17898,0.72477,0.6335,0.112524,0.799566,0.147542,0.779909,0.0331191,0.977877,0.17268,0.652671,0.0233352,0.308291,0.762111,0.656318,0.787964,0.311621,0.0033325,0.572094,0.128867,0.463982,0.340594,0.0345032,0.0166046,0.780328,0.589743,0.212261,0.87218,0.605589,0.972905,0.485417,0.584882,0.64759,0.00911689,0.752108,0.619261,0.990393,0.879864,0.525645,0.577208,0.880403,0.118703,0.0604216,0.308858,0.0846878,0.115412,0.889703,0.525879,0.831562,0.951689,0.417627,0.806,0.531532,0.374429,0.461306,0.784607,0.631427,0.688082,0.114814,0.81219,0.415691,0.722881,0.657768,0.244428,0.0284102,0.0281264,0.036499,0.920236,0.562857,0.0561092,0.0815037,0.6367,0.104337,0.980693,0.919976,0.282532,0.00712436,0.438741,0.625755,0.135492,0.840896,0.742235,0.186721,0.79941,0.0453331,0.17321,0.319907,0.103464,0.456264,0.95143,0.603034,0.839101,0.588448,0.587645,0.0562098,0.531495,0.956059,0.0529505,0.882371,0.46103,0.508455,0.0062775,0.511845,0.183939,0.190788,0.0423779,0.917509,0.611116,0.485526,0.393461,0.987047,0.782509,0.309191,0.602231,0.845913,0.953644,0.120856,0.540861,0.952812,0.251888,0.810203,0.490647,0.122772,0.630139,0.334069,0.131204,0.203589,0.0603016,0.681114,0.433582,0.945771,0.865364,0.621858,0.771974,0.743019,0.315301,0.600433,0.169996,0.564029,0.985068,0.260174,0.552141,0.974954,0.762316,0.885039,0.554616,0.840123,0.053082,0.221409,0.548181,0.637895,0.212392,0.17155,0.0950807,0.469575,0.192288,0.411036,0.717207,0.0590537,0.757188,0.172919,0.830386,0.010318,0.483387,0.26016,0.607163,0.676933,0.105182,0.95579,0.55852,0.403224,0.272984,0.0794641,0.325226,0.213418,0.10514,0.950793,0.0968592,0.460999,0.472565,0.483856,0.696095,0.151788,0.373542,0.313463,0.763333,0.476217,0.336394,0.8483,0.0138752,0.773104,0.162293,0.444555,0.705948,0.645576,0.426404,0.474275,0.821347,0.279378,0.386037,0.24553,0.378924,0.578992,0.382712,0.756535,0.186845,0.0468133,0.712977,0.488893,0.537216,0.791017,0.879867,0.525479,0.0750076,0.975978,0.0900641,0.470469,0.888193,0.779041,0.998348,0.132404,0.106316,0.784923,0.665999,0.547438,0.658839,0.743681,0.727272,0.987361,0.291497,0.413344,0.548071,0.285024,0.583247,0.15543,0.247887,0.782388,0.654244,0.539602,0.555992,0.746581,0.727235,0.807116,0.809762,|0.484918,0.463851,0.0401918,0.152684,0.00603163,0.769363,0.769156,0.567384,0.258793,0.211572,0.378988,0.726048,0.735894,0.441983,0.668293,0.962712,0.761132,0.0218884,0.329714,0.376836,0.798282,0.253295,0.114493,0.256017,0.779679,0.846134,0.930743,0.947035,0.0775542,0.208335,0.198622,0.977172,0.416855,0.50416,0.791724,0.896461,0.318369,0.397919,0.685114,0.624329,0.762099,0.996933,0.758026,0.470715,0.151083,0.836086,0.205436,0.650814,0.449999,0.824855,0.646558,0.247951,0.0480187,0.207922,0.336716,0.594984,0.35488,0.196351,0.226874,0.847084,0.705708,0.977773,0.667764,0.825996,0.121327,0.485562,0.929307,0.392405,0.824797,0.142917,0.933325,0.330077,0.553959,0.904259,0.259386,0.377314,0.0342654,0.108108,0.6042,0.24081,0.498934,0.648638,0.64369,0.971209,0.868982,0.588953,0.873285,0.290707,0.627917,0.496702,0.0441335,0.413468,0.132853,0.945134,0.948105,0.0320607,0.0921844,0.277464,0.145536,0.306302,0.67332,0.682955,0.961101,0.0376065,0.524083,0.306439,0.264015,0.114722,0.120173,0.148685,0.75127,0.607017,0.396591,0.342365,0.787414,0.259854,0.56304,0.988043,0.0778531,0.965241,0.229985,0.367508,0.408026,0.888624,0.157464,0.973654,0.473255,0.612592,0.586072,0.372821,0.811878,0.249701,0.484093,0.931588,0.438012,0.618387,0.424823,0.694758,0.272548,0.678822,0.735132,0.534986,0.602618,0.954864,0.638342,0.777803,0.327159,0.739216,0.195273,0.928366,0.665579,0.529117,0.240306,0.576754,0.514518,0.776202,0.406466,0.761141,0.519211,0.655131,0.632865,0.120719,0.517418,0.00692254,0.171407,0.475878,0.534913,0.345926,0.152339,0.957711,0.407623,0.811144,0.781122,0.858953,0.609443,0.0998437,0.50231,0.825864,0.824007,0.21135,0.64562,0.508931,0.00976646,0.473687,0.961471,0.746505,0.00619435,0.63539,0.830779,0.950543,0.823595,0.647728,0.139328,0.941289,0.981464,0.94174,0.214475,0.106386,0.231538,0.686906,0.821259,0.690747,0.0128242,0.380847,0.962098,0.974346,0.230413,0.760267,0.0347505,0.0180035,0.119746,0.144163,0.763468,0.987575,0.481081,0.223651,0.417263,0.856067,0.0641904,0.85734,0.511871,0.738036,0.45514,0.905353,0.191404,0.104561,0.0574443,0.0141175,0.417373,0.70994,0.012356,0.546178,0.145234,0.36794,0.794321,0.911077,0.925418,0.504877,0.232911,0.445141,0.929245,0.277008,0.316422,0.507811,0.669172,0.341513,0.72932,0.888335,0.611193,0.995749,0.721635,0.978303,0.0649096,0.10571,0.711161,0.262208,0.873513,0.502891,0.414141,0.668974,0.059171,0.868466,0.911154,0.796894,0.638502,0.304409,0.194832,0.589166,0.735253,0.038146,0.927507,0.220676,0.915087,0.972428,0.524267,0.392838,0.507902,0.343853,0.0739906,0.742398,0.894584,0.346924,0.520251,0.914137,0.896941,0.427907,0.289985,0.516448,0.430468,0.0338696,0.820292,0.750223,0.994052,0.826812,0.0564491,0.0896344,0.432574,0.140346,0.684393,0.0923865,0.237515,0.627391,0.0658246,0.73841,0.12668,0.221832,0.689661,0.864685,0.61011,0.83984,0.167989,0.0937105,0.594597,0.483827,0.138047,0.16534,0.135334,0.282979,0.874108,0.66973,0.823849,0.0409179,0.820752,0.546234,0.683882,0.509565,0.740795,0.707813,0.415652,0.978741,0.0947912,0.337679,0.895339,0.106858,0.227511,0.84476,0.153116,0.427592,0.608395,0.453535,0.621449,0.893592,0.184117,0.877436,0.307504,0.247426,0.744704,0.677105,0.408745,0.0792699,0.627733,0.401263,0.565482,0.686106,0.150896,0.118832,0.123556,0.366856,0.176247,0.842617,0.68935,0.482843,0.214311,0.0845346,0.041082,0.606674,0.437533,0.446393,0.363703,0.0933412,0.165846,0.239478,0.663654,0.244406,0.431545,0.424857,0.0451074,0.425308,0.546136,0.202375,0.201337,0.727074,0.153739,0.789898,0.916038,0.387466,0.958298,0.769964,0.266372,0.274212,0.690145,0.0822003,0.201345,0.727643,0.208131,0.862976,0.818004,0.098352,0.0331215,0.92426,0.791889,0.624186,0.323815,0.384697,0.515842,0.294482,0.56416,0.914384,0.439911,0.934677,0.241732,0.437512,0.35125,0.925798,0.585455,0.760585,0.902098,0.315118,0.428568,0.771542,0.443237,0.616875,0.50569,0.677471,0.954062,0.220733,0.96501,0.720427,0.201449,0.961864,0.444356,0.325569,0.20334,0.352886,0.309127,0.820365,0.00497818,0.408787,0.969637,0.635242,0.816684,0.445472,0.282654,0.255429,0.0890974,0.45111,0.763264,0.692613,0.34386,0.790833,0.492484,0.591517,0.142238,0.644021,0.700855,0.876907,0.995183,0.991974,0.256391,0.864356,0.252922,0.951169,0.498222,0.900871,0.10768,0.389216,0.581316,0.494811,0.756957,0.214293,0.25856,0.909364,0.750766,0.098027,0.683771,0.184451,0.0580202,0.0242577,0.689335,0.77214,0.655158,0.970435,0.748604,0.441597,0.306253,0.953186,0.147733,0.669289,0.906955,0.148602,0.394124,0.829891,0.85078,0.430257,0.729486,0.854887,0.685991,0.0110887,0.47909,0.0444338,0.557889,0.251972,0.637237,0.658454,0.817322,0.104752,0.826431,0.375386,0.236129,0.329706,0.115819,0.219023,0.389295,0.879028,0.914575,0.931585,0.559806,0.387446,0.472487,0.208586,0.647252,0.958686,0.11146,0.428164,0.141929,0.409397,0.471197,0.928361,0.431016,0.00790817,0.801045,0.865295,0.88317,0.153628,0.882477,0.833548,0.330936,0.254868,0.789826,0.103005,0.682068,0.0580948,0.987782,0.706287,0.759693,0.842418,0.989151,0.558545,0.738684,0.0965168,0.420712,0.0699639,0.851606,0.083273,0.0722097,0.767853,0.788021,0.410538,0.376113,0.437373,0.36474,0.294814,0.773785,0.306832,0.185576,0.279891,0.989914,0.277037,0.47553,0.0709805,0.437032,0.969585,0.536863,0.815515,0.487905,0.445606,0.168931,0.426005,0.781686,0.0484647,0.738931,0.0187831,0.315145,0.688147,0.125609,0.270146,0.516366,0.23204,0.129157,0.462085,0.648752,0.411013,0.780497,0.551629,0.975037,0.438842,0.646847,0.658713,0.612136,0.602622,0.95863,0.997679,0.0190758,0.893024,0.28018,0.124803,0.686761,0.00577509,0.623412,0.532764,0.353083,0.181916,0.83556,0.448347,0.00306314,0.0110399,0.86744,0.802543,0.321026,0.0842238,0.0591738,0.959451,0.6962,0.401998,0.662026,0.00384021,0.385081,0.0527822,0.750492,0.667419,0.0837957,0.150563,0.822673,0.481548,0.781468,0.344925,0.215749,0.89229,0.0337546,0.125239,0.516641,0.398021,0.978672,0.633795,0.395693,0.0325133,0.813803,0.0265555,0.894297,0.286966,0.429298,0.131803,0.0411289,0.906645,0.0991048,0.148959,0.636788,0.918239,0.28882,0.579387,0.995861,0.223949,0.0887579,0.176954,0.404156,0.737657,0.569108,0.69827,0.612323,0.226357,0.861862,0.457025,0.193445,0.905201,0.538305,0.636953,0.912018,0.792713,0.674914,0.759995,0.595181,0.113349,0.0609373,0.0439923,0.827852,0.774155,0.504163,0.659526,0.212381,0.9399,0.339997,0.093894,0.43314,0.31489,0.541394,0.611482,0.199315,0.817839,0.0928206,0.393556,0.920331,0.638552,0.811034,0.993931,0.323885,0.156714,0.972776,0.628239,0.886926,0.661862,0.839444,0.716122,0.512967,0.448822,0.322397,0.518096,0.509004,0.183709,0.383516,0.945968,0.575813,0.277724,0.800853,0.948937,0.758502,0.770723,0.270076,0.627043,0.520763,0.430158,0.635298,0.128231,0.220023,0.554082,0.0521004,0.448657,0.0321439,0.157911,0.925933,0.372026,0.70925,0.235803,0.777393,0.653644,0.463195,0.684878,0.245914,0.304117,0.092329,0.473227,0.994676,0.597926,0.415489,0.140529,0.267726,0.066911,0.229886,0.449467,0.230598,0.235556,0.0850739,0.123355,0.45357,0.640724,0.758342,0.301124,0.157561,0.0349144,0.399649,0.947828,0.86365,0.991574,0.863599,0.969845,0.313197,0.32528,0.511874,0.38866,0.677168,0.865359,0.574165,0.445387,0.200042,0.710231,0.492574,0.747838,0.889119,0.560913,0.429198,0.121491,0.729058,0.708293,0.71228,0.84612,0.608047,0.785659,0.473357,0.568158,0.521117,0.807403,0.0937039,0.0690449,0.850089,0.718501,0.953192,0.570354,0.368875,0.372151,0.0205949,0.408257,0.835645,0.0754513,0.0483503,0.819383,0.677189,0.0853674,0.348345,0.0762743,0.259452,0.381045,0.949196,0.174205,0.633575,0.0909556,0.15997,0.755179,0.971693,0.870664,0.171218,0.134602,0.705222,0.108433,0.228006,0.658225,0.458745,0.779743,0.835812,0.664055,0.0494912,0.579311,0.159245,0.548495,0.929579,0.560455,0.0879623,0.202804,0.517871,0.689337,0.232769,0.0833949,0.929299,0.610044,0.331186,0.304635,0.127931,0.0226311,0.295046,0.921727,0.619755,0.954288,0.364935,0.0744721,0.302991,0.323462,0.507995,0.0823159,0.841181,0.303586,0.998574,0.763892,0.858368,0.466782,0.738009,0.422988,0.559731,0.219877,0.903865,0.419467,0.0185788,0.564023,0.189648,0.258221,0.0973114,0.858602,0.785251,0.633784,0.553765,0.231102,0.29064,0.601786,0.0264778,0.679247,0.797836,0.609122,0.954666,0.0919381,0.0449142,0.0340494,0.576951,0.996214,0.69778,0.0960199,0.894275,0.432234,0.0649737,0.489555,0.671208,0.289575,0.289444,0.272382,0.0214499,0.167477,0.418351,0.687595,0.714868,0.946603,0.321659,0.819885,0.53995,0.414416,0.228894,0.772449,0.121787,0.52755,0.371837,0.36301,0.341163,0.625972,0.941678,0.733981,0.436883,0.139306,0.159883,0.489895,0.210117,0.778825,0.176385,0.90631,0.542329,0.136586,0.0382583,0.649112,0.183107,0.808885,0.462703,0.616298,0.906145,0.0193366,0.513978,0.558627,0.243058,0.825349,0.622953,0.0336276,0.486392,0.0137773,0.134198,0.540192,0.220042,0.331956,0.660672,0.877472,0.205625,0.0607036,0.782976,0.649094,0.15172,0.421056,0.935065,0.563588,0.928584,0.549301,0.524665,0.319995,0.427029,0.126531,0.981372,0.152718,0.483827,0.647011,0.241215,0.292037,0.266442,0.458391,0.632678,0.309029,0.838111,0.861671,0.0130326,0.603532,0.799595,0.564945,0.127305,0.0311394,0.773409,0.121096,0.969141,0.6487,0.194072,0.222538,|0.401547,0.116153,0.70242,0.957019,0.940929,0.0850243,0.00220782,0.100074,0.956887,0.0934073,0.440599,0.796905,0.614793,0.799979,0.0933467,0.848789,0.388438,0.142139,0.850488,0.832144,0.895574,0.236733,0.389292,0.0387076,0.451479,0.509341,0.240363,0.321818,0.384534,0.334475,0.0540756,0.79695,0.814467,0.745783,0.101943,0.419298,0.696599,0.959514,0.911662,0.660959,0.848052,0.414099,0.408551,0.159004,0.557478,0.999263,0.488505,0.479039,0.458847,0.936467,0.0636903,0.469047,0.831345,0.111495,0.511816,0.472936,0.920899,0.141608,0.961766,0.744457,0.317039,0.585984,0.11925,0.0401751,0.183736,0.536205,0.696321,0.319557,0.402666,0.19753,0.213728,0.428578,0.921062,0.412858,0.559281,0.496311,0.0255658,0.642259,0.157028,0.866874,0.611419,0.327342,0.0309954,0.836513,0.311201,0.774544,0.852885,0.206559,0.781091,0.198996,0.0465788,0.931969,0.839621,0.862995,0.0660635,0.252574,0.643078,0.987346,0.300121,0.732059,0.211151,0.0814438,0.678617,0.429172,0.170977,0.906316,0.112554,0.256078,0.864204,0.731832,0.480107,0.536834,0.449398,0.138192,0.487451,0.770038,0.916926,0.173136,0.0245802,0.590283,0.559829,0.719376,0.746903,0.545489,0.572294,0.292563,0.381846,0.819341,0.858699,0.232932,0.791772,0.506273,0.0826383,0.3722,0.422836,0.898751,0.0369421,0.182,0.0396665,0.30335,0.0514542,0.314997,0.523927,0.521918,0.910135,0.405639,0.0370317,0.950396,0.219494,0.908655,0.922738,0.271463,0.641152,0.314823,0.251875,0.548183,0.905427,0.96552,0.279306,0.266633,0.354892,0.455542,0.0812152,0.139787,0.137505,0.466078,0.849332,0.32367,0.289068,0.276554,0.84077,0.239295,0.642121,0.544292,0.97636,0.643182,0.137195,0.283289,0.621244,0.527373,0.000964284,0.784865,0.72894,0.997963,0.893464,0.758278,0.0835546,0.383043,0.978212,0.509672,0.868238,0.145054,0.568515,0.326629,0.212194,0.715295,0.785105,0.956797,0.22319,0.35681,0.492741,0.25898,0.168853,0.448036,0.224354,0.642813,0.13171,0.878568,0.546969,0.998194,0.528146,0.0598372,0.542686,0.617957,0.535718,0.844376,0.400407,0.784257,0.365578,0.102619,0.00562459,0.389758,0.670025,0.966036,0.878186,0.0945113,0.597417,0.893353,0.311611,0.314937,0.0396056,0.195583,0.52772,0.23181,0.810599,0.893695,0.675341,0.0218524,0.228262,0.0254206,0.0447589,0.577905,0.475997,0.698434,0.86793,0.195331,0.497692,0.0146132,0.138078,0.763549,0.651197,0.582527,0.595061,0.115125,0.735807,0.200954,0.586212,0.241219,0.585817,0.498793,0.0915214,0.325235,0.670734,0.311405,0.194339,0.894422,0.748781,0.69632,0.825959,0.842484,0.417412,0.689422,0.61894,0.477314,0.0568124,0.348266,0.896049,0.532577,0.426246,0.384963,0.705803,0.399731,0.918241,0.743423,0.0275749,0.0133811,0.796205,0.0237319,0.306189,0.671032,0.252319,0.643074,0.544569,0.434862,0.921262,0.343617,0.321638,0.821251,0.16816,0.0704387,0.357255,0.237331,0.447845,0.265454,0.251454,0.480181,0.477395,0.928665,0.366581,0.898221,0.962333,0.636457,0.785125,0.920366,0.415865,0.985746,0.185959,0.731133,0.425273,0.932999,0.299002,0.746436,0.868402,0.101528,0.913007,0.1401,0.258645,0.486888,0.574103,0.986011,0.884095,0.114705,0.107145,0.999334,0.0551352,0.898405,0.131316,0.096176,0.234195,0.607638,0.256892,0.765836,0.135119,0.457081,0.677151,0.400395,0.24205,0.508136,0.253955,0.395051,0.7428,0.291021,0.903575,0.240357,0.0158781,0.891864,0.273179,0.330326,0.511196,0.283615,0.908963,0.436898,0.523733,0.0321705,0.0621876,0.748569,0.213663,0.597438,0.926392,0.291719,0.395581,0.646468,0.0884737,0.680584,0.422423,0.43109,0.0582469,0.244459,0.311052,0.731546,0.236774,0.0747377,0.149915,0.715089,0.767095,0.937908,0.368492,0.0777075,0.247671,0.261159,0.464169,0.955604,0.83264,0.385919,0.7869,0.285999,0.322542,0.283348,0.302215,0.627908,0.750313,0.00959915,0.186091,0.751512,0.359682,0.657581,0.602168,0.0866818,0.828854,0.204413,0.90598,0.269492,0.377261,0.639746,0.711815,0.108746,0.834053,0.697678,0.238781,0.260028,0.61526,0.461416,0.932179,0.102774,0.0146587,0.804154,0.425696,0.227163,0.631501,0.597116,0.630531,0.648476,0.984246,0.416815,0.22801,0.495866,0.502301,0.471107,0.0132561,0.385509,0.108129,0.423313,0.0752269,0.849679,0.730458,0.472228,0.232978,0.136685,0.649967,0.646881,0.829489,0.554583,0.461922,0.805501,0.53455,0.0210106,0.517607,0.0682731,0.148175,0.13324,0.820474,0.0971925,0.869282,0.237771,0.476187,0.906521,0.259146,0.607683,0.0691872,0.433863,0.165615,0.895007,0.987998,0.0276388,0.442221,0.0759853,0.583867,0.464785,0.38839,0.734305,0.00164032,0.346242,0.271158,0.952002,0.15521,0.435931,0.715835,0.0122196,0.38138,0.43489,0.731269,0.526973,0.35529,0.0443825,0.191719,0.044894,0.982715,0.597123,0.396435,0.817242,0.662875,0.931365,0.783031,0.71129,0.328401,0.321233,0.665727,0.0076583,0.968661,0.200378,0.604058,0.921844,0.843415,0.808188,0.23465,0.724266,0.695821,0.438458,0.047658,0.824805,0.550716,0.782462,0.48338,0.383059,0.873583,0.243056,0.595357,0.572547,0.795273,0.405276,0.737563,0.367518,0.367822,0.551466,0.422918,0.545475,0.25629,0.836888,0.0664654,0.233141,0.270181,0.952856,0.184019,0.927854,0.257923,0.154514,0.272129,0.719863,0.827852,0.408803,0.905238,0.600678,0.27639,0.427055,0.586418,0.771616,0.0257955,0.64851,0.0254382,0.753482,0.347298,0.152717,0.714771,0.659578,0.240042,0.346624,0.457465,0.0622283,0.400719,0.219973,0.142194,0.527183,0.991169,0.179429,0.485214,0.421781,0.0711423,0.891945,0.323212,0.985687,0.059489,0.172932,0.587105,0.840422,0.474641,0.513773,0.791169,0.0499361,0.981435,0.810832,0.237101,0.230838,0.646861,0.209747,0.256125,0.309693,0.0533393,0.253191,0.215458,0.380822,0.720788,0.906336,0.0510749,0.581774,0.907818,0.0756379,0.327611,0.207364,0.603967,0.110577,0.804247,0.504763,0.483086,0.488184,0.612115,0.188436,0.805385,0.131591,0.786131,0.154601,0.0232993,0.717748,0.907966,0.0498541,0.563346,0.338622,0.849151,0.216926,0.971563,0.0163013,0.463499,0.816559,0.435473,0.244858,0.161601,0.847585,0.650687,0.919445,0.96531,0.544911,0.42443,0.837156,0.681901,0.0603316,0.925073,0.41723,0.755797,0.540544,0.244595,0.398355,0.721587,0.823692,0.537091,0.862403,0.935565,0.855561,0.202814,0.411552,0.468435,0.39745,0.187025,0.145099,0.680782,0.0232591,0.0172173,0.92811,0.392906,0.585741,0.84353,0.0465207,0.335488,0.475661,0.956289,0.301567,0.562438,0.0611343,0.264716,0.227388,0.375212,0.379968,0.44492,0.195613,0.920985,0.707925,0.584652,0.186759,0.166614,0.816894,0.536016,0.377557,0.854734,0.221686,0.47988,0.67524,0.0643534,0.97482,0.224698,0.594568,0.992705,0.0548059,0.487831,0.0461554,0.6969,0.721432,0.587589,0.831112,0.326287,0.680797,0.269164,0.47141,0.0687636,0.265971,0.571161,0.530122,0.405241,0.52568,0.5611,0.0950528,0.989319,0.0338696,0.559046,0.336079,0.917471,0.955066,0.545193,0.668866,0.74154,0.0656583,0.0924098,0.526374,0.532991,0.281993,0.131047,0.0868812,0.46833,0.335157,0.0988188,0.217832,0.881147,0.748821,0.809484,0.163624,0.414309,0.848304,0.227482,0.208691,0.0950202,0.558636,0.0663913,0.632609,0.493808,0.959302,0.837659,0.691217,0.0115753,0.937409,0.552511,0.0344626,0.08347,0.872528,0.490714,0.923374,0.0284176,0.838083,0.9142,0.606733,0.283878,0.55875,0.990435,0.952656,0.219859,0.754454,0.527217,0.241539,0.228927,0.861151,0.755605,0.525693,0.926292,0.583575,0.254197,0.41992,0.347224,0.0971484,0.767513,0.161892,0.816379,0.603286,0.916149,0.156042,0.147269,0.975208,0.679376,0.129413,0.420837,0.095537,0.430195,0.0662052,0.0264081,0.98767,0.261552,0.637193,0.32541,0.923266,0.220773,0.724717,0.0649551,0.292629,0.99482,0.22928,0.474963,0.918873,0.788663,0.0444293,0.0959791,0.287141,0.815111,0.202697,0.294743,0.592494,0.569137,0.174494,0.880325,0.0916363,0.249072,0.0715976,0.0749057,0.730215,0.465997,0.837419,0.768681,0.679914,0.497869,0.839837,0.405477,0.671029,0.301783,0.191079,0.790457,0.173048,0.122288,0.308869,0.558015,0.330018,0.0349795,0.901313,0.839538,0.590369,0.359556,0.232429,0.0999109,0.773598,0.477064,0.424721,0.368202,0.529816,0.163415,0.226178,0.893087,0.705709,0.473295,0.57067,0.549981,0.394706,0.244989,0.282613,0.562537,0.0987199,0.0919625,0.342245,0.19021,0.671525,0.360021,0.720932,0.38319,0.0144674,0.27079,0.329403,0.421038,0.213392,0.681672,0.523932,0.292306,0.926211,0.572769,0.883262,0.980819,0.594411,0.675942,0.541472,0.262009,0.425426,0.812313,0.959296,0.618028,0.66952,0.100655,0.278986,0.516168,0.104955,0.408662,0.432174,0.130306,0.671389,0.846949,0.925393,0.148142,0.660899,0.947126,0.332303,0.818427,0.703539,0.964043,0.109223,0.302907,0.324878,0.503966,0.527536,0.295297,0.0504826,0.00412178,0.544868,0.465271,0.148826,0.699555,0.295416,0.657602,0.267459,0.27466,0.650578,0.057243,0.876627,0.291004,0.524165,0.1442,0.521722,0.506624,0.572922,0.530971,0.939144,0.405828,0.194959,0.365396,0.236408,0.100966,0.157946,0.252658,0.666284,0.414816,0.127436,0.580197,0.609702,0.202693,0.658435,0.203496,0.849257,0.886797,0.123344,0.287344,0.0625564,0.570214,0.302231,0.928159,0.0624375,0.0443349,0.796168,0.847706,0.934277,0.151759,0.0344394,0.829819,0.433044,0.642918,0.0378068,0.236967,0.193202,0.215605,0.58807,0.754612,0.242278,0.406655,0.0885727,0.929677,0.725457,0.437348,0.297319,0.385402,0.293317,0.974518,0.303443,0.530572,0.572365,0.149047,0.255183,0.929432,0.502598,0.507274,0.830744,0.281856,0.426975,|0.180666,0.00616056,0.271642,0.417798,0.424046,0.319119,0.194917,0.629648,0.0719823,0.127335,0.430623,0.642754,0.194278,0.973496,0.870119,0.446827,0.493611,0.763369,0.920658,0.819874,0.331699,0.973962,0.128275,0.783254,0.0535569,0.138906,0.758442,0.741425,0.448385,0.145882,0.0373608,0.825875,0.413716,0.53911,0.301313,0.954153,0.750087,0.675837,0.0624449,0.237957,0.462572,0.189966,0.66123,0.870047,0.183163,0.36797,0.17209,0.466089,0.0156966,0.264625,0.997248,0.423859,0.409172,0.497517,0.189051,0.585247,0.163747,0.385771,0.929321,0.901512,0.412592,0.288114,0.217184,0.36767,0.00019604,0.0730078,0.791941,0.564841,0.50766,0.368993,0.526677,0.0341566,0.435979,0.441792,0.459536,0.174504,0.526535,0.366503,0.221597,0.0602393,0.733684,0.030816,0.102384,0.18125,0.721227,0.0714408,0.25974,0.971194,0.562498,0.471191,0.216609,0.919682,0.106732,0.0446301,0.549799,0.225627,0.538685,0.514284,0.334462,0.37103,0.0385891,0.105765,0.13689,0.481141,0.312199,0.265127,0.71082,0.0548539,0.00299758,0.728222,0.642641,0.113899,0.0983967,0.108793,0.556368,0.787687,0.66889,0.791663,0.438519,0.489218,0.989042,0.36816,0.268974,0.542698,0.880851,0.141068,0.945801,0.0282354,0.345851,0.916278,0.850375,0.0958581,0.264541,0.604187,0.625545,0.101965,0.420806,0.285344,0.549823,0.436097,0.919942,0.997221,0.122744,0.825391,0.387197,0.727336,0.582363,0.686471,0.413295,0.670241,0.351454,0.353397,0.858042,0.341866,0.684138,0.270205,0.395788,0.327821,0.90366,0.790879,0.994147,0.0471424,0.274295,0.414239,0.853975,0.0302606,0.860046,0.0954481,0.766321,0.0414444,0.361648,0.133096,0.649365,0.0192933,0.378884,0.983316,0.361404,0.558165,0.0145297,0.109986,0.145813,0.507619,0.673593,0.0542555,0.410212,0.73571,0.956539,0.198257,0.390573,0.0975666,0.983079,0.976445,0.079731,0.533528,0.867141,0.398961,0.373452,0.274296,0.0452064,0.0187337,0.277504,0.871187,0.312792,0.787076,0.238098,0.543983,0.285519,0.399215,0.836463,0.878583,0.671455,0.990378,0.863734,0.730234,0.324987,0.700088,0.364329,0.734192,0.427577,0.72524,0.886793,0.516518,0.549122,0.202705,0.706839,0.89461,0.961831,0.878131,0.755495,0.132005,0.752361,0.968509,0.956387,0.0745509,0.302975,0.840622,0.732253,0.667765,0.139783,0.921467,0.486548,0.333747,0.259757,0.355246,0.422126,0.972699,0.93242,0.0104742,0.782774,0.39056,0.161188,0.684624,0.893933,0.507528,0.555843,0.722065,0.713082,0.123224,0.685168,0.245214,0.404728,0.18932,0.690411,0.697678,0.995777,0.21793,0.728169,0.711993,0.740529,0.729243,0.231085,0.417209,0.884625,0.178652,0.213502,0.184693,0.435099,0.77644,0.963562,0.250465,0.851666,0.759179,0.283574,0.772725,0.96151,0.166387,0.0157517,0.711284,0.685991,0.870998,0.277465,0.250218,0.522091,0.31995,0.893708,0.0689217,0.438954,0.727025,0.890501,0.97929,0.657177,0.12323,0.757586,0.761245,0.447264,0.636388,0.234049,0.559144,0.673387,0.662289,0.605599,0.757086,0.291641,0.783052,0.0015651,0.9612,0.684602,0.903383,0.19704,0.810396,0.694908,0.775946,0.388731,0.484583,0.194527,0.59146,0.166245,0.268723,0.27533,0.29165,0.991809,0.269818,0.0176154,0.248669,0.629679,0.850915,0.684158,0.770822,0.44525,0.100863,0.172403,0.691671,0.0355133,0.333788,0.901541,0.164048,0.347191,0.286161,0.119656,0.830257,0.415423,0.586232,0.286069,0.839685,0.629582,0.0477532,0.659394,0.0421659,0.00452614,0.892665,0.650658,0.52939,0.584372,0.925774,0.683339,0.823155,0.315295,0.186713,0.198603,0.336577,0.722565,0.282917,0.356539,0.842983,0.69737,0.17885,0.911665,0.0759949,0.587089,0.631716,0.24641,0.604163,0.744123,0.626183,0.146149,0.830539,0.461266,0.413387,0.785529,0.849309,0.00606298,0.579112,0.758135,0.649969,0.764937,0.684609,0.786112,0.146875,0.919121,0.456913,0.290501,0.382683,0.918476,0.0273836,0.0310868,0.513894,0.178628,0.760626,0.308616,0.356403,0.126637,0.00343782,0.586872,0.255814,0.679101,0.662174,0.0103282,0.250539,0.218576,0.0553781,0.161584,0.309705,0.539859,0.718006,0.644088,0.051092,0.93601,0.324394,0.579929,0.749655,0.142331,0.119115,0.624692,0.736596,0.834867,0.55591,0.444948,0.569885,0.280138,0.65515,0.544881,0.289481,0.327232,0.537571,0.681232,0.447698,0.975307,0.502014,0.85568,0.788752,0.143434,0.724267,0.359312,0.619703,0.622332,0.211937,0.287513,0.779298,0.658865,0.6534,0.288261,0.281843,0.668525,0.910307,0.945068,0.12499,0.549283,0.310646,0.736523,0.272124,0.773599,0.385006,0.206111,0.739306,0.836004,0.632442,0.139501,0.692081,0.446267,0.779173,0.447528,0.326302,0.521637,0.785918,0.676633,0.680071,0.677261,0.215864,0.263625,0.751694,0.467483,0.117296,0.86412,0.477045,0.790838,0.276634,0.254517,0.923391,0.0782403,0.252981,0.140977,0.332771,0.0587658,0.954276,0.552001,0.0564133,0.819951,0.97145,0.241899,0.0424374,0.0269142,0.645854,0.165148,0.944265,0.244225,0.514231,0.662729,0.19021,0.775584,0.4709,0.777026,0.31138,0.705027,0.165173,0.861305,0.02603,0.552294,0.989942,0.787872,0.511006,0.85349,0.471656,0.884851,0.556655,0.261815,0.916599,0.173596,0.169096,0.874199,0.646722,0.533938,0.762013,0.901736,0.121163,0.489656,0.157649,0.574489,0.667737,0.934758,0.812499,0.894123,0.473548,0.8164,0.295958,0.844162,0.530502,0.62224,0.0645539,0.916029,0.0401658,0.663883,0.274017,0.22282,0.00281084,0.987888,0.706761,0.89501,0.831207,0.410631,0.00802952,0.582973,0.467831,0.0361962,0.726085,0.868191,0.087668,0.0769797,0.447646,0.119183,0.194931,0.101237,0.421087,0.0283884,0.474064,0.775829,0.299673,0.538394,0.4201,0.693346,0.753039,0.37169,0.79593,0.314985,0.337634,0.218183,0.0929515,0.892876,0.460095,0.226381,0.337166,0.841184,0.271838,0.560904,0.220992,0.473235,0.366127,0.612022,0.688599,0.906919,0.000310361,0.382875,0.613524,0.668578,0.233163,0.874778,0.943514,0.771199,0.580827,0.727935,0.0631098,0.44383,0.272649,0.41146,0.860758,0.241004,0.24233,0.164368,0.820685,0.153316,0.0255533,0.604702,0.338487,0.974325,0.618545,0.35275,0.468596,0.583021,0.752804,0.297726,0.634847,0.768683,0.911337,0.560941,0.628613,0.186913,0.985232,0.990925,0.44655,0.059513,0.891036,0.371038,0.905703,0.751288,0.832772,0.57728,0.594604,0.623682,0.448974,0.0650951,0.880095,0.259473,0.512929,0.144771,0.0661267,0.542997,0.578846,0.53097,0.510246,0.0533182,0.701297,0.0840179,0.656527,0.928946,0.631465,0.923625,0.322068,0.241479,0.897077,0.601833,0.460513,0.54678,0.354917,0.136439,0.493969,0.303768,0.0840735,0.756042,0.939151,0.115386,0.182181,0.683131,0.295257,0.613111,0.899234,0.5364,0.910848,0.580622,0.684539,0.126444,0.422409,0.54432,0.00589561,0.875167,0.383925,0.920525,0.880499,0.155991,0.0647937,0.0706471,0.724069,0.531398,0.277945,0.594549,0.546719,0.240371,0.674304,0.687279,0.308567,0.339491,0.549208,0.288722,0.232254,0.533392,0.517171,0.358398,0.381865,0.600094,0.0609142,0.33178,0.69844,0.781871,0.463463,0.998161,0.260705,0.2823,0.193212,0.487676,0.673429,0.0300798,0.449082,0.609269,0.920036,0.0365617,0.403587,0.15466,0.723864,0.239982,0.97615,0.786433,0.817703,0.877285,0.869062,0.871788,0.94639,0.249961,0.763483,0.865854,0.534346,0.935958,0.457974,0.311995,0.817673,0.834125,0.399359,0.910526,0.307867,0.782948,0.861756,0.0520514,0.254763,0.42797,0.744913,0.206751,0.162831,0.445459,0.14664,0.691801,0.727272,0.102388,0.930236,0.663769,0.423751,0.210099,0.984822,0.647138,0.462879,0.673909,0.206275,0.843951,0.756871,0.00041157,0.760414,0.533197,0.456951,0.757418,0.16191,0.553915,0.331654,0.628959,0.63496,0.683013,0.287955,0.698231,0.274656,0.679783,0.706533,0.963503,0.894318,0.978999,0.708809,0.0566338,0.441013,0.0863424,0.959186,0.949724,0.593409,0.798836,0.51371,0.022809,0.553914,0.77609,0.0750982,0.453968,0.673653,0.822804,0.768553,0.238511,0.719166,0.409319,0.0207828,0.733526,0.150328,0.290395,0.549059,0.614163,0.957542,0.222318,0.293554,0.431546,0.230068,0.166897,0.536456,0.946879,0.201769,0.763643,0.430646,0.740561,0.452949,0.996051,0.114557,0.770448,0.934001,0.559161,0.0806111,0.353672,0.398101,0.153765,0.185753,0.891045,0.0707538,0.866615,0.092026,0.533676,0.67141,0.31694,0.677178,0.117652,0.566094,0.513216,0.32373,0.0631102,0.846076,0.908819,0.687542,0.775687,0.757902,0.997832,0.925247,0.851861,0.820527,0.414197,0.384032,0.477523,0.348141,0.483652,0.604307,0.678221,0.278221,0.007577,0.78543,0.283254,0.341554,0.879455,0.727855,0.158849,0.591743,0.395655,0.130721,0.531212,0.517147,0.117144,0.168645,0.678724,0.735495,0.109317,0.859631,0.558535,0.914235,0.367786,0.398479,0.722613,0.740926,0.240178,0.531265,0.671096,0.840558,0.595563,0.421169,0.0794075,0.454553,0.820906,0.182007,0.0616832,0.153457,0.314302,0.124716,0.173364,0.215611,0.358866,0.394121,0.361095,0.35976,0.876854,0.762774,0.0764629,0.0882671,0.308656,0.899355,0.221683,0.707413,0.884505,0.885163,0.193117,0.804597,0.225646,0.551846,0.2426,0.682061,0.752123,0.525734,0.0241974,0.363164,0.276802,0.843423,0.892869,0.559174,0.795071,0.242527,0.611483,0.944715,0.241278,0.65457,0.62489,0.741658,0.422536,0.50856,0.258657,0.374082,0.63115,0.242065,0.868709,0.3275,0.87,0.814785,0.23876,0.215194,0.820903,0.0543178,0.94267,0.808159,0.409086,0.636475,0.779649,0.776811,0.149888,0.0481991,0.984953,0.604903,0.794986,0.892824,0.899434,0.488188,0.966284,0.916988,0.0424471,0.615096,0.440575,0.816214,0.253775,0.481984,|0.707208,0.242401,0.687099,0.740322,0.356236,0.748073,0.5883,0.797499,0.969802,0.0874785,0.495946,0.0810085,0.297575,0.818296,0.276001,0.0682799,0.319186,0.0988618,0.0953922,0.82331,0.984788,0.404798,0.631555,0.712084,0.1214,0.205133,0.0551043,0.560605,0.0563986,0.467216,0.254413,0.644884,0.630909,0.732005,0.543966,0.912011,0.497669,0.763589,0.481027,0.655741,0.0272821,0.757403,0.93358,0.706648,0.329086,0.0258953,0.136438,0.749791,0.574008,0.956466,0.0437521,0.2629,0.721991,0.844428,0.661496,0.354249,0.852427,0.728354,0.217048,0.309699,0.076998,0.2006,0.940255,0.938264,0.400992,0.0759585,0.0491246,0.550901,0.848916,0.702758,0.686585,0.904377,0.395281,0.86895,0.119544,0.216941,0.072424,0.239315,0.507118,0.677064,0.906346,0.594968,0.305401,0.489989,0.0290629,0.784807,0.894951,0.831741,0.430222,0.246439,0.99243,0.0808145,0.689132,0.746868,0.553874,0.238029,0.248926,0.642695,0.108469,0.840462,0.479705,0.724892,0.235082,0.00272644,0.148304,0.323919,0.199757,0.324,0.970229,0.915479,0.967906,0.0590621,0.680194,0.327383,0.377417,0.14151,0.0519327,0.0211559,0.46555,0.260061,0.335759,0.456396,0.965261,0.699672,0.36645,0.0704394,0.0388447,0.401903,0.20965,0.723817,0.910862,0.728572,0.917295,0.409484,0.0803935,0.36276,0.818441,0.715872,0.344148,0.000617266,0.729303,0.650059,0.670359,0.813193,0.0207232,0.458723,0.373236,0.00643438,0.76396,0.847514,0.465088,0.894377,0.275252,0.226794,0.848312,0.108141,0.958395,0.884601,0.367667,0.0340289,0.429745,0.375019,0.943672,0.365123,0.808326,0.96446,0.857215,0.958349,0.354779,0.0420648,0.33038,0.293289,0.878119,0.261586,0.511381,0.693535,0.836312,0.746441,0.170925,0.669812,0.00648332,0.842105,0.686417,0.0353655,0.109688,0.675188,0.157488,0.639037,0.973595,0.38021,0.229561,0.00812542,0.922801,0.121243,0.859636,0.804803,0.166935,0.0204818,0.91992,0.99195,0.158008,0.813304,0.867047,0.658185,0.975707,0.714962,0.476865,0.961287,0.683391,0.211949,0.0356126,0.329917,0.168794,0.81648,0.361732,0.321335,0.247076,0.367941,0.361413,0.782925,0.744222,0.678339,0.00557178,0.305801,0.863549,0.1334,0.609386,0.450746,0.700985,0.59865,0.64782,0.615003,0.632322,0.651673,0.89125,0.292695,0.397602,0.115723,0.494568,0.853346,0.893817,0.136802,0.72677,0.84318,0.611029,0.433451,0.53998,0.213003,0.717973,0.428256,0.925343,0.594815,0.868816,0.349677,0.0767031,0.995415,0.940864,0.0290794,0.570648,0.852849,0.938485,0.136106,0.775756,0.998577,0.147712,0.761706,0.616926,0.391004,0.0876285,0.61928,0.806136,0.600357,0.386961,0.239145,0.507848,0.433944,0.496764,0.659941,0.0245235,0.575116,0.103097,0.771426,0.982145,0.412882,0.7251,0.0571232,0.15299,0.667826,0.982853,0.270648,0.908139,0.264812,0.749844,0.172727,0.674974,0.618015,0.068272,0.236945,0.251368,0.725038,0.0581555,0.197232,0.965392,0.222972,0.90882,0.484143,0.696528,0.241578,0.898066,0.331665,0.751994,0.417224,0.208476,0.248253,0.161339,0.450605,0.341308,0.690612,0.72177,0.274195,0.187361,0.630146,0.412413,0.754361,0.318933,0.528779,0.456556,0.103633,0.994301,0.37574,0.818022,0.382083,0.303442,0.0167962,0.225944,0.00501406,0.485976,0.402089,0.170831,0.19936,0.270051,0.569747,0.503438,0.976544,0.546939,0.0667719,0.775711,0.129894,0.249685,0.706003,0.528081,0.213422,0.23873,0.920201,0.577613,0.0439782,0.336599,0.0627678,0.694506,0.738576,0.645481,0.813816,0.210316,0.295306,0.69152,0.703993,0.989787,0.943581,0.44295,0.0184974,0.552241,0.338606,0.364682,0.630643,0.483443,0.0848228,0.768578,0.590355,0.693745,0.720625,0.881333,0.347453,0.143498,0.364573,0.0552041,0.78795,0.74472,0.449904,0.735603,0.643537,0.190345,0.204378,0.836186,0.684827,0.923477,0.525174,0.358826,0.523747,0.647639,0.823851,0.0633341,0.722435,0.805629,0.14996,0.264521,0.0279303,0.88079,0.0685418,0.314643,0.780761,0.749414,0.21068,0.841524,0.577199,0.519236,0.754254,0.0364296,0.751112,0.665391,0.194892,0.51581,0.0909177,0.632965,0.711877,0.366934,0.763826,0.35411,0.219131,0.931763,0.437755,0.785285,0.758073,0.681957,0.335263,0.0632857,0.404684,0.572194,0.069573,0.426847,0.951091,0.464422,0.401786,0.998325,0.348772,0.182937,0.487764,0.817885,0.300569,0.308402,0.597887,0.897136,0.922265,0.484441,0.797837,0.3849,0.238512,0.735919,0.447067,0.127754,0.310649,0.278489,0.214756,0.670311,0.556784,0.523506,0.165505,0.927258,0.178114,0.308193,0.868714,0.0301992,0.101196,0.647333,0.56584,0.227039,0.897777,0.268752,0.77229,0.846377,0.489575,0.710608,0.852198,0.217873,0.11738,0.443536,0.136504,0.32251,0.235729,0.842278,0.167566,0.325596,0.316735,0.257455,0.730341,0.841525,0.324379,0.621677,0.281482,0.269521,0.0450508,0.596086,0.143144,0.916783,0.37656,0.55253,0.506161,0.357096,0.0438336,0.599754,0.31075,0.180862,0.32662,0.74551,0.648374,0.670995,0.852576,0.799041,0.906943,0.979221,0.762709,0.742729,0.794178,0.980959,0.873662,0.890684,0.309325,0.236946,0.554998,0.215606,0.230679,0.280929,0.388837,0.219461,0.939715,0.99419,0.107928,0.530163,0.962766,0.673068,0.601844,0.711295,0.63001,0.170026,0.716924,0.785081,0.301815,0.6725,0.679942,0.929031,0.00535566,0.467062,0.446779,0.191963,0.172478,0.95096,0.58428,0.104505,0.412787,0.47105,0.774609,0.533843,0.157838,0.827206,0.453051,0.877807,0.168748,0.528635,0.0375274,0.269769,0.950125,0.981871,0.184321,0.731387,0.711111,0.928072,0.24223,0.906666,0.281177,0.458928,0.410178,0.0836052,0.257926,0.28261,0.303181,0.483564,0.50292,0.308566,0.484581,0.528665,0.363582,0.447024,0.47977,0.329431,0.7115,0.466046,0.378696,0.45411,0.977387,0.717132,0.0237841,0.733313,0.254531,0.0308381,0.993743,0.683581,0.552945,0.147095,0.305337,0.720497,0.158819,0.171506,0.118707,0.595072,0.940572,0.792943,0.0738255,0.432188,0.0344663,0.550284,0.746815,0.602282,0.873056,0.760698,0.0104853,0.50605,0.00687629,0.981826,0.663901,0.39813,0.432458,0.120985,0.142698,0.563441,0.79524,0.550259,0.181852,0.158698,0.792976,0.976185,0.173362,0.482853,0.962647,0.446591,0.0668285,0.26669,0.887981,0.823487,0.595779,0.00400823,0.324317,0.933432,0.243857,0.807387,0.529079,0.281866,0.449719,0.425822,0.462586,0.0499279,0.0931368,0.238998,0.459816,0.987473,0.193595,0.14948,0.232063,0.915314,0.0674881,0.180594,0.044597,0.377834,0.0334451,0.510508,0.389811,0.162019,0.894751,0.264336,0.366951,0.312671,0.926006,0.156316,0.27462,0.88676,0.155897,0.489028,0.0542322,0.730722,0.682444,0.198314,0.0441219,0.961238,0.0645093,0.391094,0.177502,0.457097,0.792681,0.809321,0.814179,0.79087,0.592087,0.405007,0.585298,0.245611,0.39755,0.575489,0.443778,0.221056,0.857718,0.933586,0.467231,0.168388,0.0559587,0.434831,0.72132,0.466782,0.399968,0.316493,0.093381,0.755092,0.306996,0.662642,0.307066,0.749975,0.120297,0.570314,0.217569,0.771212,0.19942,0.572274,0.486628,0.476203,0.957514,0.0758438,0.592459,0.947461,0.871573,0.479694,0.0121995,0.137949,0.0204306,0.50429,0.340721,0.74021,0.408618,0.636645,0.518899,0.939154,0.449712,0.865224,0.26455,0.778427,0.0592095,0.905128,0.33937,0.546018,0.513026,0.958728,0.0443015,0.717006,0.253494,0.352354,0.7435,0.14414,0.938686,0.152693,0.297613,0.458966,0.703885,0.138504,0.0644077,0.992372,0.288714,0.907304,0.176624,0.0499786,0.236755,0.632422,0.168792,0.989969,0.0203153,0.412748,0.562371,0.199532,0.301508,0.951759,0.308733,0.484413,0.0620071,0.102983,0.316355,0.701118,0.3061,0.546463,0.724411,0.805571,0.220347,0.920621,0.703181,0.799726,0.731491,0.794121,0.770709,0.305906,0.898562,0.937815,0.141556,0.479175,0.872315,0.194578,0.949408,0.0930896,0.285218,0.028044,0.325323,0.0586279,0.417655,0.809145,0.796705,0.594913,0.856806,0.68681,0.1068,0.920821,0.0833435,0.223615,0.467274,0.823627,0.107772,0.159629,0.916044,0.174963,0.873643,0.991772,0.480898,0.341392,0.202577,0.692534,0.580367,0.947142,0.738671,0.29155,0.384905,0.988589,0.61252,0.961442,0.778876,0.438325,0.192678,0.205404,0.35952,0.821802,0.117517,0.294074,0.59055,0.209205,0.821653,0.088873,0.616901,0.537816,0.251175,0.140862,0.411328,0.161567,0.634748,0.969132,0.414462,0.673602,0.598532,0.551299,0.644874,0.127506,0.0475542,0.229793,0.1778,0.800085,0.0778794,0.476488,0.258348,0.492367,0.146982,0.920373,0.61305,0.295169,0.519127,0.750306,0.369732,0.66465,0.79934,0.841206,0.576287,0.326249,0.428611,0.229171,0.700063,0.615993,0.542216,0.173414,0.409811,0.43509,0.496737,0.853468,0.0262644,0.888475,0.486161,0.515305,0.00784808,0.883374,0.504847,0.700938,0.255578,0.712556,0.0519772,0.294184,0.674648,0.753371,0.777645,0.133815,0.576779,0.675006,0.660266,0.243236,0.217098,0.172876,0.0630721,0.448554,0.913841,0.0529858,0.955092,0.297535,0.165097,0.589449,0.59408,0.494178,0.988695,0.980762,0.923036,0.725858,0.0912194,0.105298,0.75934,0.00581944,0.475865,0.2683,0.430016,0.140837,0.93143,0.195368,0.0896303,0.377892,0.463076,0.719918,0.188891,0.485666,0.663272,0.896478,0.626884,0.161312,0.397446,0.0565158,0.280853,0.691909,0.665538,0.807536,0.237507,0.00318754,0.462005,0.977172,0.0798444,0.0378101,0.40936,0.666547,0.920269,0.88096,0.483848,0.081091,0.260284,0.829782,0.758838,0.680817,0.830425,0.463703,0.533419,0.965033,0.83696,0.204859,0.284946,0.284403,0.755121,0.0715401,0.891674,0.0368223,0.619847,0.519127,0.886571,0.540678,0.806139,0.532457,0.321856,0.734249,0.256301,|0.24694,0.257323,0.79159,0.926408,0.373405,0.0456519,0.411524,0.78676,0.914514,0.0301397,0.0116494,0.234935,0.742032,0.226764,0.826669,0.323029,0.8874,0.4584,0.835547,0.728067,0.283187,0.443195,0.145758,0.84749,0.105004,0.453003,0.589355,0.578192,0.00471103,0.193708,0.710377,0.156224,0.23832,0.83397,0.313371,0.659032,0.881708,0.368535,0.757133,0.184934,0.10118,0.415415,0.114192,0.68049,0.100178,0.395877,0.0306073,0.0790498,0.538752,0.54505,0.760774,0.644054,0.491756,0.125737,0.0573402,0.560271,0.984589,0.97812,0.320103,0.104944,0.737921,0.941971,0.0123589,0.017221,0.759454,0.194313,0.34366,0.99624,0.844476,0.343409,0.803229,0.00273341,0.466198,0.705249,0.996466,0.179804,0.405582,0.475722,0.206709,0.813491,0.886761,0.435667,0.777285,0.206326,0.322061,0.4609,0.962541,0.904397,0.0269563,0.110286,0.815734,0.774175,0.0714052,0.158105,0.925643,0.575041,0.0560861,0.625365,0.660919,0.884094,0.749988,0.505277,0.878539,0.107286,0.532663,0.121226,0.580714,0.721406,0.328841,0.768741,0.411388,0.467082,0.587695,0.794277,0.279966,0.883588,0.541128,0.0222602,0.765858,0.852326,0.723673,0.895007,0.0228905,0.170708,0.0752791,0.496769,0.260458,0.493216,0.487513,0.471512,0.167899,0.315751,0.396831,0.900223,0.995167,0.452499,0.689104,0.255422,0.759172,0.0344344,0.496355,0.634688,0.440198,0.783397,0.108087,0.740235,0.890786,0.605458,0.816632,0.215361,0.162059,0.891938,0.571179,0.893494,0.340906,0.538335,0.943335,0.59824,0.739403,0.64193,0.753428,0.0841703,0.932037,0.0119232,0.852245,0.240696,0.137458,0.503245,0.545761,0.128656,0.622823,0.287472,0.476663,0.398068,0.374942,0.100865,0.745327,0.22581,0.482755,0.656474,0.0979162,0.217285,0.293083,0.386629,0.504211,0.277688,0.378975,0.320622,0.0283017,0.103491,0.630661,0.91354,0.697194,0.838174,0.940288,0.734971,0.160373,0.203611,0.670883,0.210242,0.211952,0.671013,0.904291,0.847545,0.416024,0.819396,0.390862,0.399918,0.456467,0.0484146,0.779365,0.182358,0.100515,0.765988,0.863296,0.399812,0.680509,0.0375026,0.401516,0.0303841,0.164975,0.640685,0.863319,0.452601,0.468872,0.205172,0.33062,0.728493,0.939642,0.177528,0.672438,0.888841,0.63167,0.640704,0.759982,0.29467,0.924341,0.59789,0.992579,0.678189,0.480245,0.310727,0.405542,0.796495,0.533646,0.221502,0.919666,0.484281,0.476212,0.551666,0.233847,0.257794,0.158347,0.922794,0.839665,0.351424,0.461308,0.0578237,0.300965,0.828038,0.369565,0.40095,0.236626,0.205447,0.340321,0.818012,0.953021,0.874491,0.10122,0.522438,0.513169,0.858348,0.521618,0.425212,0.588632,0.411522,0.664399,0.327943,0.0990065,0.428098,0.817208,0.013266,0.138038,0.28397,0.47304,0.740971,0.657319,0.0484086,0.445434,0.380767,0.835603,0.703673,0.750764,0.371889,0.246357,0.610175,0.688959,0.344169,0.354144,0.124181,0.648248,0.0755022,0.27894,0.365823,0.138735,0.955386,0.0549707,0.294316,0.36257,0.30818,0.349965,0.213055,0.13628,0.899671,0.961237,0.889539,0.656078,0.464993,0.983954,0.423071,0.0799674,0.206119,0.487714,0.52268,0.813427,0.769551,0.0449812,0.54752,0.749198,0.456696,0.534096,0.663925,0.777094,0.475754,0.233918,0.693503,0.252275,0.716618,0.789814,0.465901,0.723518,0.00978011,0.860169,0.564993,0.838183,0.115223,0.165603,0.90007,0.255271,0.139402,0.628449,0.220906,0.069492,0.833653,0.29345,0.6962,0.470723,0.404979,0.208221,0.910013,0.533817,0.793561,0.678485,0.391824,0.88304,0.289447,0.536296,0.755378,0.306429,0.0699641,0.197481,0.0872034,0.306806,0.322463,0.562555,0.457972,0.566526,0.824863,0.347506,0.133857,0.602332,0.0261503,0.511063,0.588158,0.0894853,0.731411,0.359965,0.19776,0.663793,0.215045,0.484192,0.439501,0.205504,0.772953,0.614103,0.920146,0.456797,0.549612,0.719222,0.585411,0.939021,0.629987,0.900415,0.134279,0.23446,0.866012,0.799372,0.35798,0.750463,0.164524,0.851901,0.770959,0.329211,0.805187,0.681221,0.692677,0.664111,0.114775,0.58952,0.944342,0.153849,0.378002,0.121471,0.0156202,0.0903541,0.832085,0.459955,0.412555,0.421325,0.357798,0.411935,0.269927,0.210531,0.679862,0.238095,0.941688,0.361589,0.197288,0.12855,0.232454,0.689153,0.91093,0.238259,0.867946,0.519764,0.781772,0.258717,0.580501,0.231755,0.917699,0.694382,0.99771,0.294753,0.998057,0.239124,0.935486,0.542532,0.351023,0.840864,0.488442,0.955199,0.345515,0.871116,0.390673,0.600787,0.661197,0.341395,0.0788141,0.448615,0.664681,0.884674,0.568918,0.808677,0.978202,0.777937,0.292329,0.0269447,0.467702,0.749272,0.328319,0.686826,0.724836,0.551918,0.373852,0.894319,0.0451634,0.681417,0.792522,0.98506,0.0849777,0.527792,0.0402662,0.609789,0.649598,0.44591,0.370867,0.444963,0.990238,0.259296,0.812404,0.692791,0.00516409,0.270983,0.58884,0.988056,0.800077,0.635124,0.966186,0.63002,0.988631,0.19102,0.965219,0.182318,0.827179,0.906728,0.00220829,0.119551,0.665608,0.432768,0.977388,0.00435668,0.111152,0.0225607,0.156533,0.670855,0.46184,0.143872,0.481854,0.562212,0.330783,0.9022,0.387644,0.515312,0.0356398,0.545256,0.960405,0.878883,0.447746,0.875856,0.226493,0.49804,0.109388,0.178405,0.543767,0.14438,0.767245,0.442416,0.688167,0.0357248,0.575922,0.874353,0.890103,0.508604,0.242017,0.885633,0.65673,0.625537,0.210619,0.868676,0.561037,0.00877839,0.611861,0.194503,0.707916,0.38374,0.363291,0.0159639,0.353833,0.231335,0.594653,0.703209,0.736111,0.849687,0.272822,0.210738,0.417922,0.0137624,0.10533,0.727727,0.667934,0.541442,0.805588,0.305812,0.709045,0.0461803,0.739396,0.316576,0.806117,0.262718,0.491335,0.029245,0.65776,0.340482,0.397554,0.898156,0.147406,0.939138,0.4617,0.534123,0.152389,0.792026,0.445516,0.717377,0.0681406,0.400235,0.0392166,0.749973,0.159067,0.869631,0.330358,0.0668097,0.455444,0.836067,0.325664,0.753176,0.509073,0.814761,0.37209,0.905127,0.812835,0.801004,0.999476,0.215122,0.425329,0.31941,0.652339,0.0848886,0.0961622,0.576769,0.690875,0.276831,0.550015,0.324387,0.759895,0.312731,0.517507,0.401848,0.960342,0.749166,0.547306,0.562396,0.451923,0.938002,0.744976,0.707869,0.429725,0.102394,0.56087,0.66231,0.946012,0.680453,0.810544,0.942071,0.371416,0.36365,0.624196,0.89805,0.924319,0.502212,0.472885,0.260537,0.344857,0.313142,0.096048,0.586195,0.86969,0.683684,0.736996,0.919407,0.433796,0.669505,0.720791,0.26905,0.443195,0.935201,0.848296,0.733485,0.957119,0.0377107,0.834574,0.986956,0.542707,0.211036,0.343732,0.577198,0.826187,0.794731,0.815172,0.790993,0.797545,0.190792,0.568151,0.875469,0.668475,0.982987,0.325638,0.563084,0.19829,0.251051,0.990388,0.521435,0.916856,0.475051,0.2715,0.458798,0.819648,0.0174538,0.155505,0.648637,0.315099,0.138113,0.253547,0.560156,0.0796618,0.511043,0.786865,0.446921,0.688378,0.406556,0.442729,0.656375,0.527262,0.570081,0.0585715,0.205433,0.683307,0.872613,0.657072,0.057466,0.723118,0.856988,0.571663,0.701067,0.461185,0.617973,0.0302772,0.319898,0.55301,0.376057,0.622268,0.253464,0.851494,0.265374,0.126277,0.419132,0.697453,0.821485,0.254026,0.257479,0.209744,0.696553,0.868458,0.477144,0.903125,0.125521,0.465273,0.421186,0.730601,0.1529,0.240903,0.860392,0.52074,0.304313,0.303553,0.979072,0.776895,0.588129,0.300146,0.422405,0.261226,0.754953,0.168574,0.142807,0.889354,0.503533,0.209827,0.952106,0.377908,0.977199,0.294553,0.563895,0.444125,0.812716,0.565347,0.154367,0.249603,0.490041,0.117339,0.749976,0.923774,0.325106,0.806983,0.804489,0.724,0.0394053,0.510838,0.78659,0.408872,0.0288699,0.272866,0.214968,0.749368,0.924579,0.735014,0.542658,0.421069,0.439083,0.454523,0.69366,0.224646,0.681215,0.102146,0.526218,0.451136,0.79955,0.0724699,0.222466,0.173843,0.955182,0.781746,0.806535,0.989407,0.448969,0.542602,0.828238,0.709158,0.687855,0.280958,0.038707,0.520318,0.91001,0.718965,0.699116,0.243435,0.619228,0.420168,0.010578,0.951014,0.701041,0.261551,0.268755,0.457695,0.672672,0.0347397,0.247394,0.519458,0.19316,0.780949,0.467575,0.571244,0.413379,0.470832,0.416613,0.212475,0.192038,0.434259,0.84124,0.985956,0.363139,0.543222,0.838996,0.25512,0.402581,0.413807,0.453835,0.145915,0.203795,0.841352,0.525553,0.329641,0.289416,0.812879,0.29038,0.244612,0.813108,0.200798,0.680831,0.732295,0.606935,0.880067,0.570956,0.606363,0.645177,0.774303,0.546593,0.0596235,0.525345,0.739252,0.700703,0.403867,0.0611475,0.699905,0.674433,0.598173,0.533075,0.370926,0.0669557,0.440615,0.875612,0.372863,0.548617,0.220193,0.968924,0.758471,0.0538323,0.242466,0.791006,0.204,0.480043,0.917077,0.953219,0.205064,0.473858,0.749611,0.215699,0.336466,0.293201,0.554022,0.741628,0.890153,0.666106,0.782633,0.74434,0.589624,0.503602,0.600673,0.439409,0.421662,0.668323,0.914912,0.560917,0.0683637,0.524446,0.699872,0.94713,0.704301,0.771354,0.446461,0.562066,0.80949,0.729175,0.821494,0.380744,0.0471252,0.269898,0.407446,0.419961,0.642647,0.669454,0.180673,0.25951,0.568537,0.943588,0.575582,0.44238,0.27525,0.528478,0.837939,0.173443,0.158346,0.0801347,0.902889,0.588758,0.710629,0.833408,0.28112,0.296404,0.193231,0.826344,0.868128,0.186424,0.851456,0.327583,0.960631,0.828827,0.610506,0.42277,0.0463399,0.523111,0.770012,0.441904,0.0584019,0.462968,0.52951,0.242288,0.962796,0.105693,0.6385,0.523364,0.409757,0.0898603,0.23724,0.12153,0.62139,0.131021,0.0857591,0.784663,0.416846,0.985391,0.727097,|0.89269,0.412435,0.47377,0.972742,0.357985,0.061794,0.238683,0.0775117,0.0463096,0.397083,0.332837,0.827646,0.157962,0.384243,0.691594,0.693571,0.86441,0.0135349,0.254477,0.505186,0.759424,0.383954,0.594377,0.412428,0.608264,0.0158184,0.600067,0.486418,0.507,0.509772,0.533172,0.844026,0.81949,0.404215,0.801404,0.343724,0.593092,0.65834,0.242196,0.905195,0.410344,0.98582,0.210771,0.595026,0.0388659,0.648231,0.609021,0.409283,0.310959,0.415763,0.148598,0.857623,0.471145,0.919728,0.561241,0.868912,0.729768,0.274164,0.318384,0.963713,0.0395451,0.446283,0.775564,0.76393,0.843763,0.438204,0.0308542,0.257179,0.832201,0.904123,0.0492005,0.807792,0.668559,0.447272,0.780167,0.248245,0.716513,0.567251,0.112528,0.877074,0.794459,0.464659,0.915602,0.0844316,0.0902045,0.309516,0.149776,0.210446,0.207995,0.988901,0.2352,0.147586,0.95502,0.318439,0.142644,0.911109,0.395051,0.0497051,0.114283,0.553363,0.229523,0.492772,0.411714,0.871296,0.331894,0.541222,0.180133,0.761641,0.65723,0.783454,0.455834,0.202297,0.236041,0.0732919,0.899137,0.968131,0.565346,0.234768,0.908423,0.942349,0.528861,0.445348,0.00791365,0.0876575,0.798874,0.37966,0.241738,0.680764,0.450369,0.0572723,0.385122,0.88642,0.522604,0.443903,0.101432,0.171896,0.789469,0.905744,0.99189,0.838514,0.506313,0.158875,0.786257,0.34026,0.52689,0.529935,0.191436,0.187899,0.645064,0.703698,0.114886,0.694018,0.167713,0.94155,0.967765,0.633912,0.564211,0.791793,0.244308,0.948777,0.153035,0.654852,0.752683,0.766105,0.538028,0.411259,0.997404,0.941126,0.338669,0.00879234,0.605121,0.733206,0.0269376,0.38076,0.276503,0.485653,0.954655,0.831719,0.790106,0.968259,0.747757,0.834386,0.457772,0.944752,0.952295,0.733576,0.398806,0.644531,0.951801,0.280876,0.390295,0.266912,0.186329,0.668685,0.392282,0.397624,0.762666,0.740397,0.380676,0.362722,0.825251,0.781177,0.0710213,0.785315,0.745802,0.687958,0.529743,0.55023,0.221886,0.0343293,0.236518,0.996654,0.29888,0.0432209,0.241052,0.420305,0.272134,0.815079,0.627733,0.0228574,0.946767,0.7164,0.483518,0.892641,0.903306,0.519517,0.105633,0.589172,0.283212,0.103213,0.750324,0.00121236,0.841019,0.636765,0.892403,0.369085,0.424009,0.786321,0.280604,0.437927,0.604554,0.46568,0.0629822,0.426414,0.357101,0.463514,0.971222,0.60419,0.690306,0.170897,0.65363,0.447317,0.491352,0.832334,0.994313,0.495851,0.610168,0.652923,0.97682,0.897901,0.964474,0.939802,0.155061,0.37902,0.59162,0.371622,0.876421,0.1724,0.155507,0.664018,0.765312,0.46943,0.05033,0.615464,0.42186,0.750532,0.290923,0.231813,0.206644,0.18517,0.627815,0.296272,0.00158125,0.872752,0.83136,0.166625,0.375776,0.963651,0.374025,0.25405,0.310727,0.939101,0.41602,0.655088,0.752906,0.99746,0.613721,0.550226,0.110619,0.274394,0.884449,0.715173,0.0993124,0.419215,0.880138,0.23386,0.287568,0.642366,0.924712,0.740837,0.560452,0.262951,0.720331,0.911129,0.586925,0.389105,0.027059,0.951437,0.15684,0.527589,0.610773,0.987753,0.38087,0.3372,0.260383,0.595128,0.213479,0.950031,0.0753604,0.612989,0.042639,0.0926635,0.754604,0.92819,0.810691,0.504741,0.497814,0.511817,0.403676,0.928491,0.797868,0.765742,0.629071,0.543416,0.650079,0.520787,0.855685,0.180901,0.0382317,0.0936055,0.905749,0.266983,0.338152,0.687657,0.887905,0.774281,0.954914,0.0402575,0.199267,0.66161,0.0171309,0.139167,0.809934,0.488353,0.71226,0.722235,0.447181,0.876308,0.63785,0.219373,0.473971,0.0725237,0.421878,0.513281,0.96084,0.703759,0.328562,0.633856,0.92582,0.0866972,0.154281,0.174934,0.519181,0.579836,0.462173,0.95284,0.320304,0.116181,0.659023,0.347161,0.00167042,0.0856354,0.22688,0.448937,0.132868,0.43013,0.642759,0.388515,0.266807,0.246939,0.673508,0.552065,0.444783,0.700907,0.632752,0.789203,0.336792,0.20358,0.415262,0.601397,0.0611135,0.638351,0.334045,0.34641,0.804954,0.308058,0.349282,0.555321,0.414217,0.91818,0.932353,0.845237,0.933339,0.0624603,0.781766,0.0967466,0.496536,0.916468,0.707334,0.722965,0.00677419,0.561211,0.128234,0.591458,0.601131,0.264366,0.693178,0.554188,0.198342,0.497355,0.850376,0.976371,0.0629961,0.662179,0.163966,0.642049,0.37891,0.805967,0.35105,0.327514,0.974958,0.69763,0.700533,0.0944133,0.020467,0.538106,0.199667,0.850228,0.38223,0.389088,0.488989,0.498781,0.631576,0.377849,0.704638,0.217233,0.826706,0.238337,0.656975,0.504539,0.747474,0.449273,0.840665,0.828156,0.759924,0.671743,0.387247,0.964716,0.0452978,0.83681,0.952986,0.170594,0.139365,0.135408,0.232276,0.6973,0.400967,0.484267,0.0265187,0.743182,0.00166172,0.22011,0.781972,0.296589,0.916313,0.108865,0.0773811,0.73138,0.281971,0.199545,0.472525,0.744057,0.126379,0.557462,0.906163,0.67231,0.463955,0.623404,0.103619,0.34363,0.464482,0.884223,0.0601703,0.258971,0.0742219,0.657327,0.69274,0.764972,0.245579,0.272326,0.65137,0.629551,0.946687,0.0759976,0.488155,0.708714,0.0523567,0.980345,0.603269,0.798086,0.506175,0.986086,0.218313,0.324734,0.00985372,0.61011,0.16646,0.670254,0.55217,0.670049,0.560925,0.415006,0.853005,0.677163,0.543845,0.771267,0.869462,0.723748,0.240726,0.583511,0.229219,0.00399756,0.254364,0.327342,0.198988,0.800315,0.684121,0.242971,0.689659,0.664796,0.804509,0.0341151,0.525522,0.335113,0.114487,0.0709495,0.852061,0.123716,0.637843,0.259986,0.192452,0.867383,0.25354,0.989757,0.103281,0.495336,0.921299,0.119077,0.311464,0.178786,0.951209,0.20327,0.262652,0.837051,0.676506,0.0582755,0.478963,0.800605,0.233859,0.306833,0.0527036,0.851755,0.0325663,0.515577,0.840722,0.26068,0.908749,0.981211,0.324721,0.0293473,0.228035,0.780034,0.171548,0.16244,0.33738,0.655653,0.113815,0.74065,0.7426,0.58059,0.145823,0.203924,0.736981,0.806399,0.925613,0.495903,0.976511,0.749238,0.843911,0.197191,0.0172048,0.744178,0.182038,0.61566,0.606191,0.916192,0.878733,0.116643,0.342304,0.534735,0.839891,0.123954,0.393128,0.0941986,0.73201,0.56299,0.114845,0.491099,0.553841,0.106846,0.501608,0.078819,0.646078,0.859341,0.319598,0.793294,0.0144155,0.598356,0.86274,0.861067,0.643731,0.670696,0.425866,0.658502,0.790799,0.186135,0.834311,0.501397,0.686628,0.0757976,0.382127,0.6185,0.660411,0.721435,0.913122,0.663104,0.0238711,0.616669,0.346344,0.71338,0.732372,0.82218,0.174548,0.575813,0.828668,0.437284,0.963014,0.267218,0.496454,0.956469,0.0193969,0.00183839,0.960527,0.797942,0.820947,0.768594,0.0961831,0.160519,0.555752,0.101268,0.651996,0.406214,0.4717,0.956116,0.885801,0.385677,0.493266,0.413423,0.753548,0.472531,0.683425,0.59684,0.786743,0.444978,0.730126,0.0771891,0.705315,0.303104,0.235363,0.00252342,0.167268,0.0177268,0.864768,0.991124,0.953906,0.145771,0.0713121,0.276047,0.243075,0.0509784,0.900251,0.777479,0.523877,0.96913,0.838891,0.585229,0.464246,0.54426,0.990272,0.487955,0.850404,0.490522,0.83268,0.171011,0.755337,0.865914,0.655391,0.0307623,0.880787,0.632013,0.0334007,0.776358,0.759072,0.0417286,0.318805,0.678172,0.912897,0.90604,0.0528936,0.0149193,0.23325,0.880286,0.182831,0.167338,0.834524,0.870594,0.979268,0.724182,0.429096,0.251915,0.326398,0.577428,0.684394,0.592536,0.289962,0.309592,0.73552,0.782744,0.982884,0.176186,0.877043,0.586306,0.568404,0.852017,0.00356317,0.613007,0.487828,0.397402,0.656411,0.593395,0.11862,0.52751,0.682123,0.371909,0.082827,0.52168,0.958041,0.154667,0.914241,0.146871,0.0787663,0.235448,0.359407,0.0345107,0.294757,0.439379,0.0369577,0.275985,0.894569,0.123647,0.851794,0.31503,0.569652,0.404398,0.678462,0.352305,0.832465,0.854469,0.572134,0.492563,0.744373,0.951797,0.241458,0.691896,0.196743,0.816384,0.730927,0.443661,0.300132,0.975333,0.75305,0.807314,0.178739,0.396396,0.301051,0.0210326,0.725445,0.521961,0.924074,0.0163603,0.903041,0.450753,0.0587217,0.697546,0.990885,0.190442,0.647416,0.213347,0.396431,0.473462,0.0465539,0.19371,0.53206,0.435042,0.399425,0.89452,0.733321,0.112239,0.853995,0.758718,0.635661,0.664043,0.604033,0.475458,0.684876,0.0941904,0.588001,0.325333,0.971888,0.194434,0.83202,0.115787,0.80466,0.791416,0.765587,0.83327,0.892303,0.968975,0.993792,0.242642,0.430775,0.302766,0.0927398,0.661272,0.466902,0.0992434,0.629153,0.470754,0.990769,0.99002,0.117467,0.611085,0.524387,0.568618,0.885087,0.239791,0.549603,0.187213,0.397322,0.109767,0.655743,0.219594,0.391425,0.31905,0.837085,0.779443,0.0543847,0.173793,0.419283,0.213889,0.278283,0.581854,0.112555,0.497655,0.332227,0.4092,0.266388,0.825137,0.00315487,0.129719,0.162919,0.0703206,0.566459,0.808908,0.839532,0.752751,0.272027,0.261812,0.380874,0.00435209,0.3904,0.340317,0.0913463,0.0592239,0.16615,0.103534,0.740464,0.100435,0.58877,0.446528,0.294902,0.85632,0.975278,0.0978217,0.227369,0.775089,0.422798,0.682651,0.501444,0.120777,0.430895,0.116555,0.923691,0.709873,0.404505,0.827254,0.163395,0.677328,0.19685,0.24415,0.700761,0.415536,0.406477,0.541776,0.485251,0.581627,0.654722,0.0380508,0.0188469,0.888839,0.768233,0.559875,0.527029,0.184944,0.641253,0.810985,0.889279,0.605997,0.789735,0.577922,0.813177,0.335945,0.367829,0.336262,0.169204,0.253805,0.0725855,0.428323,0.368534,0.802173,0.860105,0.401664,0.907643,0.973915,0.704628,0.0730679,0.0650779,0.867971,0.918321,0.0699699,0.200471,0.966186,0.0459128,0.484074,0.781856,0.852344,0.166554,0.93313,0.37533,0.334005,|0.614582,0.865478,0.024237,0.649645,0.0652055,0.538296,0.896756,0.790954,0.900111,0.669288,0.426906,0.429162,0.856748,0.118859,0.548025,0.792101,0.640039,0.719112,0.259487,0.482981,0.7366,0.0656855,0.0276457,0.629788,0.332388,0.926304,0.365547,0.202959,0.200754,0.134301,0.610552,0.304755,0.353146,0.190415,0.175094,0.992035,0.778688,0.249415,0.190188,0.843998,0.154146,0.157013,0.535592,0.00348681,0.813336,0.251213,0.208354,0.362903,0.90921,0.496346,0.724878,0.28751,0.792249,0.005198,0.170856,0.928093,0.503881,0.812343,0.696084,0.506565,0.154321,0.522983,0.224976,0.821116,0.565978,0.0664957,0.532726,0.298821,0.0848323,0.445941,0.110564,0.851273,0.56302,0.175158,0.567198,0.485913,0.523371,0.220907,0.492617,0.573757,0.227671,0.299911,0.921279,0.589723,0.469339,0.488371,0.424064,0.79868,0.78272,0.851958,0.73009,0.307738,0.962507,0.486165,0.408776,0.968781,0.478592,0.285987,0.140558,0.115602,0.90404,0.613362,0.378972,0.0294653,0.817998,0.592164,0.573305,0.355002,0.0447758,0.895704,0.345045,0.379351,0.453184,0.752295,0.394718,0.610499,0.509475,0.559507,0.370795,0.950685,0.641999,0.880524,0.57822,0.836913,0.708425,0.0267147,0.932708,0.709454,0.496319,0.48394,0.252548,0.620924,0.471886,0.10485,0.392892,0.146059,0.702205,0.369858,0.00572306,0.412645,0.823969,0.273999,0.239842,0.646169,0.903404,0.849927,0.0909631,0.662608,0.166845,0.914082,0.667971,0.76467,0.935804,0.955324,0.724213,0.403487,0.877614,0.937692,0.645012,0.0720724,0.0460522,0.0292347,0.57358,0.747138,0.643217,0.971326,0.808855,0.517864,0.324007,0.580963,0.231194,0.985332,0.284107,0.554269,0.61279,0.913477,0.567251,0.246251,0.423137,0.736815,0.799958,0.0855085,0.039062,0.0960801,0.704653,0.0106368,0.862935,0.166203,0.33798,0.830986,0.926249,0.0417699,0.279567,0.916507,0.993203,0.333478,0.531765,0.926322,0.565646,0.250282,0.0351464,0.471031,0.877737,0.752292,0.332394,0.962285,0.59236,0.052035,0.463461,0.73295,0.0388312,0.576468,0.390292,0.62882,0.625022,0.0366148,0.0127978,0.566936,0.840493,0.684991,0.409422,0.00996226,0.151362,0.171154,0.538528,0.0759297,0.0231352,0.779163,0.432829,0.933847,0.721818,0.690748,0.0833329,0.957552,0.917499,0.590075,0.844261,0.603573,0.178259,0.891096,0.504759,0.501621,0.596252,0.238508,0.97733,0.525807,0.922524,0.387326,0.291698,0.0843043,0.907162,0.123059,0.0656708,0.617685,0.156309,0.100964,0.187397,0.954508,0.32661,0.484906,0.196216,0.933092,0.66216,0.174157,0.803483,0.327938,0.0418948,0.726924,0.275925,0.0642592,0.0155756,0.962866,0.747882,0.885208,0.565309,0.403459,0.0805344,0.84824,0.178313,0.303719,0.500758,0.891554,0.380801,0.370684,0.912192,0.746684,0.170825,0.733909,0.127543,0.406247,0.576064,0.0225235,0.954263,0.641333,0.922564,0.525972,0.223145,0.85733,0.0807478,0.223916,0.715316,0.588713,0.122454,0.707923,0.894628,0.148358,0.855886,0.180342,0.507373,0.813832,0.718806,0.784295,0.710335,0.102016,0.333459,0.645405,0.109408,0.0953415,0.400889,0.9917,0.917441,0.936908,0.450451,0.617361,0.42947,0.838276,0.0728235,0.0438665,0.286463,0.396162,0.492693,0.85951,0.448868,0.426652,0.898617,0.327521,0.158388,0.554095,0.0892313,0.99503,0.626174,0.555951,0.762757,0.184565,0.762764,0.432788,0.391676,0.784108,0.506837,0.155881,0.526612,0.943218,0.392836,0.893985,0.120869,0.0377453,0.382254,0.795881,0.19529,0.566004,0.040783,0.95608,0.621694,0.615912,0.6725,0.966807,0.0948456,0.477111,0.112643,0.439679,0.347977,0.471728,0.0469493,0.440578,0.730315,0.041326,0.691085,0.00850868,0.167143,0.911782,0.836643,0.556799,0.62947,0.230828,0.0287443,0.561464,0.209545,0.243674,0.278626,0.428488,0.182166,0.961652,0.267622,0.0656844,0.380113,0.163172,0.25996,0.0146758,0.284397,0.784044,0.406421,0.0197456,0.7652,0.57292,0.994305,0.895695,0.47978,0.945984,0.746944,0.0461977,0.119842,0.319195,0.230328,0.331556,0.18142,0.152892,0.441731,0.633229,0.717677,0.959531,0.112903,0.305429,0.887476,0.838888,0.879542,0.754815,0.0217619,0.408445,0.897158,0.00941753,0.373165,0.101925,0.665101,0.627708,0.0509496,0.587964,0.0320603,0.774936,0.757859,0.360022,0.0391129,0.898695,0.859706,0.349953,0.893527,0.635104,0.370525,0.0182111,0.835378,0.634268,0.778919,0.0910639,0.67743,0.293161,0.4114,0.0602907,0.58812,0.247627,0.0911987,0.319577,0.531757,0.530964,0.931521,0.118575,0.588525,0.456316,0.946554,0.878921,0.064285,0.140357,0.783227,0.663585,0.110836,0.62883,0.0371543,0.336298,0.0810244,0.40899,0.625314,0.241006,0.461615,0.203749,0.27475,0.0105122,0.909104,0.735849,0.60904,0.308652,0.126376,0.725119,0.545743,0.866513,0.396073,0.0737183,0.393927,0.974056,0.126201,0.257849,0.831192,0.0705364,0.214927,0.398919,0.585967,0.358585,0.0406839,0.907311,0.327143,0.632152,0.343123,0.552139,0.124118,0.0257004,0.822878,0.812966,0.759866,0.903254,0.574312,0.716294,0.817228,0.782925,0.922744,0.850617,0.963042,0.000732005,0.0974836,0.172687,0.935212,0.347251,0.321036,0.906685,0.039349,0.800789,0.372337,0.198941,0.539312,0.171237,0.547544,0.641012,0.678863,0.0762696,0.0264755,0.583098,0.411372,0.947962,0.152958,0.630117,0.0974599,0.455146,0.863919,0.757675,0.0734724,0.0501496,0.278926,0.792644,0.0968553,0.70052,0.326083,0.736874,0.583835,0.552072,0.145531,0.704077,0.798628,0.191239,0.174992,0.811607,0.29881,0.807377,0.691372,0.105074,0.372738,0.733216,0.127276,0.567092,0.481139,0.0848247,0.508047,0.543146,0.948579,0.400359,0.222381,0.962103,0.461155,0.880515,0.784312,0.810698,0.450512,0.461293,0.211777,0.440411,0.0992438,0.636409,0.313494,0.258943,0.879514,0.0979804,0.58575,0.283902,0.977922,0.749966,0.13601,0.808831,0.219787,0.353635,0.243642,0.576944,0.657077,0.427587,0.755746,0.862397,0.857324,0.827754,0.272044,0.783029,0.958394,0.112257,0.433223,0.827506,0.287337,0.592084,0.0399814,0.727241,0.0252376,0.702236,0.739966,0.396148,0.362845,0.242006,0.792743,0.0901912,0.469113,0.506763,0.441877,0.890559,0.898859,0.0558817,0.286175,0.131757,0.705577,0.546052,0.1203,0.179037,0.696468,0.393864,0.255199,0.451939,0.681668,0.338523,0.527373,0.193653,0.319481,0.434421,0.420391,0.778729,0.513328,0.403087,0.321707,0.824633,0.0556937,0.989347,0.0380077,0.748901,0.122402,0.601008,0.0272261,0.965442,0.570005,0.596891,0.479389,0.614949,0.793305,0.71287,0.334682,0.829141,0.328324,0.795923,0.684957,0.653362,0.531719,0.963604,0.302955,0.363655,0.900423,0.682186,0.787915,0.12248,0.414288,0.886902,0.668558,0.591253,0.559288,0.387192,0.574999,0.391406,0.452811,0.980214,0.969236,0.186014,0.631517,0.200426,0.755566,0.38902,0.52878,0.444957,0.366424,0.477721,0.961831,0.411703,0.935096,0.791139,0.332534,0.563282,0.395668,0.0339225,0.44525,0.322081,0.0966763,0.31118,0.456677,0.621135,0.277429,0.551656,0.958475,0.688884,0.293151,0.339333,0.890016,0.114813,0.384492,0.555108,0.458718,0.996029,0.0987029,0.0992697,0.139107,0.80772,0.373557,0.80934,0.725102,0.657727,0.632585,0.663735,0.179428,0.903547,0.017432,0.975463,0.386283,0.427082,0.173419,0.951426,0.698364,0.705971,0.587334,0.640348,0.25547,0.0771506,0.925712,0.560626,0.852238,0.800214,0.577266,0.54981,0.631367,0.491085,0.875706,0.218456,0.652544,0.995996,0.269242,0.16411,0.0591435,0.490348,0.980623,0.997137,0.97369,0.132462,0.0325691,0.997026,0.491943,0.363954,0.547948,0.0779381,0.399282,0.34133,0.149812,0.0115696,0.975549,0.280327,0.0129871,0.343247,0.669787,0.533447,0.27748,0.716793,0.0556335,0.164787,0.0104544,0.13963,0.702663,0.682605,0.166186,0.835046,0.318911,0.206103,0.871977,0.268353,0.649298,0.881606,0.808053,0.485447,0.430102,0.649446,0.807282,0.417712,0.28219,0.396609,0.036325,0.0278317,0.834175,0.627047,0.124415,0.508492,0.237063,0.677976,0.396827,0.19497,0.615326,0.0276396,0.722864,0.680509,0.4936,0.809296,0.0393389,0.417134,0.701401,0.52725,0.141133,0.288564,0.970203,0.344682,0.137149,0.297842,0.792536,0.761844,0.707162,0.284874,0.242328,0.527774,0.190732,0.0905426,0.664812,0.388461,0.316117,0.629585,0.797698,0.50863,0.460217,0.443586,0.0492854,0.670159,0.87621,0.764292,0.595731,0.669702,0.260967,0.786738,0.869648,0.843798,0.960154,0.883724,0.301774,0.577705,0.806217,0.530948,0.0190284,0.77083,0.41305,0.0605189,0.109105,0.712442,0.143607,0.952509,0.0413081,0.278127,0.462568,0.638304,0.397983,0.879759,0.221141,0.0659789,0.829944,0.400421,0.73563,0.865797,0.0114217,0.701765,0.284011,0.58355,0.374642,0.0630873,0.729836,0.225943,0.130753,0.98523,0.361654,0.340907,0.935928,0.607312,0.186429,0.535373,0.0601158,0.920735,0.0218335,0.933714,0.740735,0.419275,0.846008,0.815533,0.86737,0.472057,0.732806,0.336006,0.975517,0.837635,0.494283,0.602683,0.483045,0.644696,0.576159,0.559961,0.356123,0.0685546,0.851062,0.332418,0.584454,0.214054,0.636539,0.224237,0.205792,0.762781,0.910564,0.568335,0.294702,0.326402,0.152587,0.276698,0.388361,0.17644,0.365836,0.317932,0.591652,0.889399,0.943409,0.582914,0.643154,0.618093,0.396569,0.196614,0.950959,0.545153,0.321163,0.16118,0.148377,0.484652,0.0446312,0.0403399,0.998721,0.806765,0.679971,0.163044,0.0467312,0.385444,0.644957,0.391726,0.445588,0.148379,0.00665206,0.99878,0.338816,0.847182,0.846366,0.958807,0.727441,0.600844,0.712017,0.0912267,0.589604,0.680056,0.298855,0.437217,0.243285,0.871625,0.984135,0.942798,0.85736,0.447251,0.727139,0.110722,0.959048,0.210974,|0.431476,0.485535,0.0863995,0.209408,0.723445,0.285624,0.448136,0.651493,0.846398,0.146818,0.851035,0.0680018,0.348287,0.731497,0.192915,0.461582,0.738825,0.582633,0.00102085,0.987527,0.421289,0.625131,0.739305,0.83148,0.224056,0.406455,0.22441,0.52014,0.499037,0.770206,0.911018,0.712481,0.697364,0.934297,0.347651,0.840082,0.822216,0.0156683,0.170999,0.825822,0.651316,0.550879,0.238819,0.77579,0.0604014,0.681439,0.864661,0.625717,0.116951,0.183688,0.0395796,0.29571,0.626193,0.826392,0.620636,0.82666,0.158629,0.946825,0.654885,0.280697,0.975673,0.941888,0.388747,0.827617,0.241989,0.151786,0.658849,0.525265,0.443325,0.358884,0.0299959,0.557828,0.331724,0.0523859,0.394542,0.907615,0.690417,0.678518,0.20642,0.664603,0.935661,0.478305,0.418938,0.136982,0.967984,0.440098,0.665838,0.429312,0.247373,0.0510162,0.0557216,0.8939,0.239324,0.266365,0.28814,0.874098,0.97829,0.77082,0.681606,0.996458,0.0725246,0.668352,0.461586,0.71872,0.239574,0.494351,0.994583,0.666064,0.163997,0.418627,0.150846,0.160314,0.10506,0.43533,0.475916,0.358449,0.745725,0.670944,0.880405,0.567343,0.979756,0.879716,0.0516478,0.197447,0.864044,0.355854,0.00917107,0.727437,0.810525,0.82333,0.803953,0.237578,0.121243,0.108022,0.614246,0.658364,0.66836,0.0181307,0.972121,0.215291,0.665327,0.106001,0.675745,0.979596,0.773707,0.689497,0.123229,0.179928,0.519363,0.801258,0.423477,0.602087,0.859843,0.317852,0.0706705,0.29609,0.880744,0.749616,0.500537,0.627296,0.480845,0.879708,0.540782,0.560236,0.83377,0.809024,0.244494,0.871156,0.645162,0.308609,0.476578,0.0924254,0.99728,0.83354,0.344875,0.675844,0.644937,0.304662,0.238532,0.100601,0.296226,0.296811,0.325742,0.0761484,0.486024,0.0884489,0.186868,0.990394,0.839825,0.0872337,0.307322,0.891705,0.880151,0.504605,0.987706,0.932753,0.714033,0.495177,0.71746,0.315423,0.684207,0.0741999,0.853827,0.788339,0.11414,0.191708,0.507668,0.112216,0.903371,0.251599,0.142073,0.273748,0.968478,0.490631,0.744271,0.738685,0.863977,0.923112,0.654018,0.395909,0.909983,0.167176,0.046885,0.597796,0.807348,0.65847,0.244901,0.287354,0.0903866,0.222771,0.0513657,0.517564,0.430015,0.425333,0.833283,0.998528,0.464388,0.965198,0.132644,0.583421,0.980287,0.102405,0.695206,0.348304,0.121089,0.39952,0.816596,0.335295,0.313292,0.354371,0.224458,0.48743,0.0527554,0.21972,0.334442,0.710845,0.156643,0.213718,0.84164,0.802555,0.533016,0.851534,0.315575,0.520301,0.0519136,0.393622,0.718254,0.607218,0.0143989,0.876143,0.0160601,0.402997,0.75665,0.699772,0.705459,0.666779,0.580728,0.874444,0.122451,0.540847,0.439577,0.306929,0.80228,0.334274,0.298857,0.00476223,0.268796,0.690046,0.438699,0.466284,0.921145,0.769917,0.246605,0.929266,0.817931,0.527571,0.0297049,0.431712,0.584491,0.779182,0.55249,0.846818,0.459705,0.28354,0.399859,0.891295,0.774385,0.366411,0.372804,0.87986,0.774011,0.355309,0.412795,0.850836,0.992483,0.940121,0.585183,0.280541,0.475029,0.721033,0.941673,0.995224,0.554124,0.437251,0.511,0.0502075,0.351335,0.257861,0.584659,0.213402,0.45283,0.534231,0.950814,0.727927,0.495502,0.769566,0.220163,0.242118,0.176522,0.107646,0.444717,0.923368,0.0333267,0.469581,0.714154,0.863933,0.693743,0.549307,0.587721,0.17938,0.98002,0.265309,0.563571,0.989316,0.287742,0.227521,0.905706,0.150667,0.167475,0.469818,0.812485,0.270063,0.343846,0.754235,0.0745133,0.560921,0.226365,0.947109,0.882778,0.375517,0.105787,0.413408,0.675597,0.80729,0.373019,0.786954,0.524642,0.154398,0.546169,0.911038,0.388938,0.11616,0.216571,0.403792,0.183676,0.834812,0.794327,0.500939,0.572176,0.841804,0.251796,0.245478,0.538619,0.102681,0.307061,0.266901,0.549732,0.519333,0.0269849,0.719313,0.0394886,0.516653,0.178035,0.271015,0.355919,0.237363,0.683882,0.858454,0.794248,0.386215,0.661334,0.851605,0.868494,0.8061,0.0476058,0.946159,0.800056,0.916097,0.0451756,0.13623,0.952969,0.471599,0.512012,0.9999,0.417877,0.47165,0.257266,0.803831,0.425799,0.1521,0.287036,0.903308,0.0525666,0.766715,0.825556,0.192159,0.65716,0.0132196,0.584097,0.718036,0.241924,0.110557,0.413273,0.622837,0.549773,0.207841,0.15374,0.365402,0.562063,0.932125,0.723437,0.310718,0.916303,0.942441,0.363894,0.548504,0.912581,0.147098,0.882288,0.636495,0.635067,0.551299,0.875045,0.792718,0.600605,0.0507118,0.117045,0.751823,0.948189,0.360777,0.468098,0.231902,0.0609624,0.31645,0.356693,0.334058,0.810224,0.8,0.497063,0.823801,0.904693,0.815457,0.66381,0.697749,0.0562572,0.98915,0.544512,0.362342,0.507613,0.302193,0.409449,0.348197,0.625488,0.0843344,0.0925003,0.810752,0.656747,0.99,0.721241,0.967284,0.736079,0.264444,0.0079729,0.994617,0.514132,0.892275,0.0224249,0.43327,0.716078,0.240997,0.486756,0.156044,0.078611,0.296931,0.0855444,0.122679,0.114805,0.233267,0.843019,0.917336,0.163637,0.627495,0.173394,0.79364,0.212165,0.963666,0.0536869,0.855743,0.0709052,0.942783,0.386901,0.605207,0.723122,0.581768,0.371617,0.516765,0.231602,0.22605,0.360931,0.192618,0.591114,0.916428,0.356645,0.77494,0.890419,0.979872,0.930545,0.744941,0.818626,0.314363,0.593417,0.0110634,0.821156,0.517694,0.58988,0.232213,0.0310258,0.0824193,0.476354,0.174984,0.708361,0.967088,0.931918,0.0812275,0.750948,0.492565,0.105706,0.226098,0.822763,0.559529,0.883081,0.469866,0.907626,0.435486,0.0136865,0.243137,0.445403,0.162534,0.778216,0.315467,0.687615,0.0663924,0.235376,0.920779,0.914778,0.362755,0.00251627,0.739264,0.53089,0.980638,0.975283,0.0321662,0.716461,0.858328,0.72468,0.763042,0.182651,0.568502,0.466506,0.953901,0.205124,0.284457,0.755943,0.327973,0.860197,0.257132,0.338591,0.349584,0.680856,0.776878,0.723647,0.424291,0.474336,0.544399,0.431765,0.341626,0.945091,0.234009,0.177535,0.962721,0.893245,0.591501,0.818051,0.756829,0.938396,0.883427,0.776076,0.25786,0.155849,0.527594,0.333602,0.262349,0.814033,0.366899,0.89908,0.767764,0.464673,0.374658,0.234468,0.51945,0.929351,0.278481,0.693853,0.887388,0.844999,0.228103,0.370786,0.737567,0.795719,0.2768,0.880873,0.999227,0.468063,0.841562,0.83572,0.598945,0.685876,0.227519,0.955838,0.865378,0.66906,0.697602,0.292819,0.0163667,0.939297,0.668704,0.163072,0.653182,0.856864,0.963299,0.0946565,0.569492,0.0114925,0.147506,0.747743,0.626315,0.600396,0.00388283,0.764062,0.653283,0.00998414,0.966628,0.394859,0.82668,0.297539,0.94669,0.973708,0.471233,0.598933,0.84234,0.971875,0.986757,0.321756,0.269848,0.901855,0.769608,0.814849,0.054682,0.947997,0.489804,0.79167,0.65895,0.27816,0.479371,0.37188,0.599248,0.0227028,0.822427,0.115573,0.434422,0.216272,0.675459,0.0825568,0.627682,0.700017,0.0980735,0.921882,0.264012,0.399105,0.413245,0.394989,0.581668,0.355681,0.618493,0.719622,0.268142,0.138162,0.63678,0.430583,0.867176,0.145292,0.143972,0.133253,0.45886,0.722078,0.0592358,0.428688,0.603063,0.869214,0.270757,0.0677312,0.76654,0.42917,0.475709,0.993788,0.964014,0.980058,0.509775,0.555203,0.229024,0.0140485,0.992561,0.793698,0.204968,0.784071,0.259861,0.417297,0.298986,0.654336,0.717585,0.45473,0.73912,0.0400217,0.776851,0.53497,0.77554,0.976817,0.810668,0.470468,0.490269,0.691558,0.335508,0.340739,0.204951,0.262395,0.097204,0.10148,0.783518,0.220134,0.834112,0.12728,0.505567,0.857895,0.628289,0.765009,0.13863,0.176861,0.0535398,0.302085,0.339996,0.597826,0.566733,0.442359,0.0743963,0.590742,0.710696,0.454149,0.105095,0.167089,0.759725,0.839289,0.8549,0.478293,0.748736,0.661054,0.821042,0.666154,0.899645,0.969139,0.543096,0.15121,0.195057,0.122294,0.240203,0.713172,0.990323,0.0722727,0.160704,0.990737,0.259247,0.908851,0.41311,0.254841,0.239553,0.36009,0.0764705,0.797595,0.46055,0.925479,0.637707,0.0719743,0.0301728,0.202482,0.728079,0.439234,0.211122,0.356606,0.638279,0.74227,0.0360897,0.453232,0.12658,0.685036,0.589108,0.0941361,0.793791,0.055654,0.752192,0.539212,0.451224,0.63295,0.517971,0.967831,0.150546,0.149823,0.524678,0.361052,0.214689,0.434106,0.0893539,0.810972,0.14646,0.993178,0.519544,0.479975,0.560989,0.257331,0.0225534,0.539964,0.920426,0.733702,0.314887,0.114515,0.462277,0.519945,0.0916885,0.745392,0.139501,0.648176,0.517234,0.906317,0.427404,0.881528,0.263465,0.833299,0.9611,0.367214,0.970746,0.0396506,0.993415,0.121293,0.0656987,0.840614,0.390511,0.169811,0.949424,0.669754,0.228678,0.54905,0.468524,0.10496,0.309719,0.271981,0.0754049,0.0373486,0.691168,0.401774,0.646298,0.485177,0.502175,0.557181,0.978727,0.0222251,0.559303,0.447772,0.642022,0.501633,0.0604438,0.490561,0.0360204,0.643165,0.152267,0.280613,0.013253,0.573383,0.628557,0.80789,0.227564,0.630767,0.955029,0.453106,0.613063,0.478259,0.499286,0.287539,0.80542,0.95086,0.668057,0.894096,0.487697,0.93069,0.684382,0.712445,0.412909,0.212383,0.532687,0.862144,0.762514,0.0138935,0.599478,0.713701,0.199133,0.838506,0.669411,0.865827,0.0376102,0.366128,0.352437,0.205517,0.688871,0.691759,0.734158,0.940738,0.70229,0.097386,0.0134809,0.730938,0.615843,0.485249,0.131464,0.684521,0.945346,0.610295,0.960024,0.430657,0.465376,0.0509092,0.760759,0.673912,0.801928,0.304673,0.963628,0.893921,0.275984,0.336974,0.343632,0.333956,0.935714,0.659512,0.712467,0.684109,0.519377,0.696629,0.604148,0.031822,0.0197698,0.560557,0.127157,0.338093,0.161156,|0.194098,0.471609,0.253918,0.488624,0.158312,0.30295,0.713826,0.494655,0.780102,0.528963,0.303989,0.955406,0.0495819,0.938736,0.0554078,0.854069,0.595233,0.175166,0.890821,0.535571,0.380251,0.345336,0.766975,0.607575,0.384114,0.484806,0.859838,0.634099,0.146225,0.584343,0.471219,0.373025,0.36989,0.121619,0.832392,0.705957,0.158966,0.841828,0.60288,0.253487,0.751013,0.350976,0.0682707,0.403468,0.239734,0.131171,0.075496,0.855056,0.669017,0.881539,0.9523,0.763874,0.258816,0.947765,0.0139931,0.390788,0.972147,0.315318,0.792367,0.531306,0.246,0.10437,0.210527,0.14412,0.896285,0.687424,0.81504,0.787335,0.00540406,0.912991,0.121084,0.165863,0.893533,0.228869,0.525061,0.858524,0.479113,0.188799,0.0354418,0.493031,0.444875,0.071212,0.0242028,0.772882,0.376455,0.1458,0.793034,0.303243,0.562664,0.181323,0.464056,0.995331,0.433913,0.491424,0.293979,0.741774,0.595899,0.95859,0.979783,0.430644,0.320422,0.373251,0.723836,0.0567712,0.0433832,0.310375,0.0672682,0.47562,0.0330342,0.84748,0.432313,0.346409,0.776511,0.592643,0.529148,0.961788,0.293654,0.507971,0.760698,0.93562,0.141315,0.237306,0.679091,0.0424685,0.87483,0.892199,0.150836,0.0334521,0.0260983,0.510755,0.713876,0.377627,0.592636,0.375128,0.582521,0.631433,0.0700106,0.30987,0.39353,0.657177,0.921,0.0247001,0.78353,0.845281,0.0805594,0.468879,0.44025,0.283312,0.264445,0.0138165,0.843086,0.678721,0.716873,0.127936,0.281378,0.0714182,0.655044,0.254705,0.0889215,0.248311,0.0963635,0.388497,0.845319,0.492298,0.544721,0.901392,0.911211,0.103852,0.278182,0.926607,0.952578,0.184761,0.545678,0.62614,0.171507,0.679766,0.630974,0.415415,0.722545,0.0385687,0.529009,0.393507,0.204598,0.728432,0.28282,0.250717,0.0555202,0.413005,0.717708,0.00329638,0.603645,0.852378,0.103301,0.11615,0.953007,0.759366,0.376566,0.555776,0.829936,0.63157,0.590327,0.854489,0.061002,0.625552,0.887076,0.119378,0.425437,0.0273218,0.0945796,0.835146,0.753856,0.627297,0.885636,0.468702,0.321727,0.239101,0.777235,0.0426984,0.454321,0.168686,0.784733,0.852521,0.223581,0.30163,0.663357,0.2004,0.20187,0.0935982,0.47061,0.269114,0.536216,0.960469,0.979374,0.487436,0.673929,0.0179387,0.251015,0.65237,0.272634,0.504788,0.370422,0.898934,0.0272654,0.929164,0.453527,0.315869,0.284813,0.946723,0.0110838,0.141416,0.284977,0.894996,0.791442,0.27436,0.204485,0.294578,0.542481,0.472219,0.224737,0.798067,0.652411,0.427992,0.673508,0.497739,0.189674,0.653258,0.196856,0.227235,0.436662,0.655474,0.418224,0.463965,0.984297,0.036588,0.88475,0.509665,0.0631559,0.050971,0.082762,0.259945,0.663004,0.541145,0.299816,0.380299,0.667723,0.975351,0.653442,0.158252,0.696519,0.283706,0.314381,0.156421,0.0952819,0.476846,0.7964,0.308285,0.516435,0.577149,0.166277,0.288649,0.109318,0.460892,0.880454,0.440109,0.675765,0.659198,0.0607727,0.698657,0.923021,0.0854565,0.310424,0.0188192,0.380609,0.368646,0.474342,0.0549796,0.537664,0.328602,0.246251,0.409817,0.272633,0.208807,0.0379021,0.499964,0.416421,0.375328,0.646494,0.799387,0.221613,0.320686,0.316375,0.276254,0.332085,0.360433,0.121885,0.094158,0.733398,0.635628,0.0512183,0.545175,0.209975,0.402478,0.648939,0.92665,0.41694,0.921503,0.861005,0.699153,0.280626,0.318798,0.367622,0.551238,0.594317,0.46947,0.58732,0.36235,0.187543,0.0958216,0.9466,0.738095,0.1823,0.841139,0.0729972,0.839005,0.835905,0.390112,0.344077,0.767478,0.485237,0.0427357,0.0792289,0.240541,0.792463,0.182522,0.373018,0.173837,0.742157,0.390183,0.0126632,0.157563,0.148631,0.410531,0.761719,0.407758,0.563604,0.665309,0.362178,0.686233,0.571328,0.640913,0.617514,0.890955,0.424425,0.418916,0.636405,0.974938,0.560649,0.238613,0.271298,0.937185,0.856025,0.964761,0.895806,0.447882,0.866283,0.293461,0.00458473,0.487521,0.973637,0.0959457,0.8014,0.057361,0.701685,0.737041,0.674123,0.547086,0.875539,0.446969,0.19499,0.0624671,0.368627,0.983033,0.308792,0.763058,0.320404,0.280881,0.0784836,0.805449,0.584513,0.542922,0.858009,0.619852,0.945171,0.304516,0.128324,0.87283,0.429813,0.916341,0.823787,0.41041,0.145996,0.667675,0.0178517,0.74396,0.23575,0.866999,0.896535,0.848319,0.501998,0.496388,0.0413452,0.0103412,0.392536,0.957382,0.80878,0.57151,0.336149,0.198122,0.207482,0.0516891,0.00685751,0.790894,0.714953,0.072447,0.251376,0.183361,0.0246276,0.86908,0.11708,0.312785,0.129529,0.458922,0.0752198,0.48983,0.715046,0.968786,0.585929,0.525237,0.553827,0.816292,0.241299,0.949063,0.447428,0.000690818,0.153905,0.0373341,0.00745517,0.465201,0.151205,0.165411,0.963668,0.116825,0.103441,0.614018,0.723582,0.275474,0.832529,0.402518,0.945297,0.184767,0.758102,0.224736,0.787636,0.298679,0.946137,0.67251,0.703749,0.190903,0.742605,0.208593,0.34542,0.161545,0.504392,0.593441,0.808336,0.396664,0.894651,0.11942,0.239532,0.969994,0.587557,0.903097,0.601602,0.222904,0.936427,0.195433,0.180625,0.14763,0.863872,0.0931895,0.774325,0.864758,0.687912,0.548542,0.92908,0.718444,0.797224,0.937258,0.252266,0.857476,0.0258871,0.682761,0.136035,0.666312,0.861808,0.168082,0.524744,0.949555,0.0282887,0.241534,0.167783,0.285082,0.354993,0.413942,0.667549,0.731815,0.736212,0.843227,0.281253,0.744004,0.755838,0.758889,0.115022,0.920192,0.818695,0.872625,0.918817,0.456269,0.718049,0.61304,0.914104,0.803629,0.118742,0.0459856,0.299675,0.980777,0.188684,0.765673,0.304879,0.198276,0.531918,0.167917,0.445242,0.804736,0.349035,0.897278,0.551331,0.115838,0.70781,0.886942,0.279397,0.148752,0.792905,0.840131,0.200755,0.629595,0.922312,0.696994,0.352434,0.419929,0.609715,0.74999,0.219089,0.854682,0.304561,0.731838,0.748227,0.411647,0.405209,0.356705,0.0660027,0.972931,0.325714,0.383169,0.273215,0.43442,0.841753,0.00278002,0.630631,0.737048,0.703803,0.974157,0.615193,0.139364,0.578847,0.988267,0.156272,0.948922,0.917231,0.315642,0.356712,0.383352,0.230865,0.785501,0.941707,0.867962,0.880956,0.152675,0.147097,0.746147,0.714259,0.432929,0.51791,0.276738,0.335484,0.060167,0.397264,0.848973,0.456051,0.146698,0.415148,0.944492,0.0914777,0.44273,0.0785363,0.847597,0.211924,0.867816,0.253805,0.752446,0.324901,0.798065,0.185848,0.813833,0.517631,0.785011,0.434585,0.777157,0.411646,0.63793,0.115537,0.401149,0.823522,0.53469,0.288262,0.758951,0.117569,0.384016,0.162806,0.790849,0.396308,0.0797778,0.320818,0.327725,0.762401,0.458182,0.912456,0.921983,0.637955,0.239556,0.123492,0.261093,0.318186,0.317917,0.85044,0.688447,0.314884,0.15643,0.341559,0.477867,0.693315,0.567375,0.601722,0.0570253,0.998173,0.321286,0.0575878,0.468223,0.154237,0.771769,0.304084,0.684353,0.250312,0.678047,0.816063,0.0571811,0.357348,0.0813396,0.315041,0.580658,0.961498,0.0608777,0.218423,0.751059,0.501256,0.53951,0.683433,0.407042,0.139642,0.291529,0.658155,0.979257,0.977834,0.388783,0.989299,0.224527,0.288575,0.986509,0.458195,0.972563,0.272685,0.544496,0.774737,0.240436,0.615953,0.128247,0.780473,0.568734,0.175208,0.766548,0.893713,0.392954,0.628061,0.315085,0.735541,0.374023,0.429906,0.0227194,0.358293,0.473654,0.126402,0.880268,0.254605,0.0852525,0.587001,0.70041,0.146614,0.77334,0.622077,0.621353,0.934971,0.406273,0.362155,0.80317,0.786395,0.550877,0.785788,0.229906,0.60225,0.852853,0.902911,0.557856,0.158698,0.508542,0.397464,0.0662518,0.788039,0.444981,0.620069,0.457069,0.185632,0.467071,0.569079,0.418763,0.625831,0.254431,0.816226,0.157382,0.572889,0.35608,0.990062,0.817221,0.365676,0.569957,0.857443,0.600028,0.749543,0.491048,0.120535,0.823776,0.347204,0.946699,0.750853,0.193823,0.0774548,0.834487,0.262367,0.727559,0.713968,0.217843,0.547868,0.185004,0.118467,0.227325,0.762424,0.247598,0.87696,0.743262,0.314578,0.837906,0.027892,0.969584,0.922429,0.00214076,0.813254,0.600753,0.252682,0.570726,0.445055,0.152785,0.0210607,0.989665,0.0383011,0.0463009,0.42629,0.0976071,0.119637,0.945477,0.710953,0.303186,0.469842,0.590701,0.752302,0.367548,0.0960582,0.689868,0.325196,0.196353,0.250152,0.389648,0.522589,0.527491,0.142843,0.654516,0.352605,0.430314,0.912932,0.602469,0.715927,0.678612,0.220306,0.636824,0.31645,0.0527787,0.555474,0.874119,0.00712824,0.365897,0.698141,0.189448,0.715672,0.0129159,0.0799929,0.719746,0.796003,0.195987,0.118559,0.6495,0.50767,0.0271347,0.101748,0.0308414,0.178056,0.471738,0.421643,0.819033,0.458306,0.049733,0.973072,0.995547,0.312752,0.963049,0.54731,0.920393,0.34894,0.352429,0.888623,0.861432,0.617819,0.400709,0.296457,0.560205,0.933337,0.290622,0.278832,0.972405,0.817203,0.368304,0.697768,0.423211,0.150241,0.914538,0.175955,0.0871872,0.0896849,0.955448,0.616749,0.422408,0.453909,0.275885,0.117359,0.0800309,0.634618,0.0579172,0.947317,0.222973,0.770402,0.317017,0.949514,0.257565,0.967064,0.632451,0.0633723,0.16111,0.28288,0.120102,0.185341,0.503907,0.863026,0.992912,0.351924,0.408282,0.237059,0.352759,0.255116,0.0729865,0.689369,0.743896,0.059196,0.145254,0.342389,0.207215,0.0146049,0.488922,0.821031,0.452586,0.690537,0.627206,0.303165,0.389033,0.715774,0.141269,0.113994,0.972142,0.0616768,0.357738,0.782389,0.513026,0.79708,0.889464,0.0259681,0.612607,0.867952,0.908857,0.55601,0.0939823,0.232037,0.384953,0.340341,0.899455,0.47927,0.665612,0.540392,0.208847,0.765262,0.401792,0.959052,0.908591,0.505685,0.956407,|0.390861,0.644872,0.217239,0.0584508,0.984887,0.29622,0.0378001,0.139811,0.423121,0.496442,0.745545,0.0175817,0.145435,0.550599,0.037272,0.042143,0.742006,0.768179,0.955775,0.871782,0.90288,0.73468,0.573771,0.0881182,0.450445,0.82286,0.585242,0.765543,0.483012,0.0951975,0.34796,0.0202591,0.722399,0.674118,0.683417,0.958702,0.760647,0.442664,0.873621,0.994767,0.948984,0.635214,0.717574,0.489288,0.940724,0.796273,0.36958,0.900254,0.59955,0.259167,0.473374,0.875764,0.0186952,0.421795,0.137202,0.596738,0.669261,0.975034,0.603549,0.135244,0.56528,0.625029,0.512193,0.671958,0.48362,0.119527,0.288993,0.127454,0.761328,0.853095,0.246486,0.865546,0.464493,0.386101,0.498513,0.955559,0.367292,0.810451,0.214904,0.233259,0.836858,0.441031,0.496356,0.885565,0.144312,0.220332,0.768388,0.166672,0.3061,0.0204576,0.117692,0.718802,0.563559,0.176582,0.127369,0.208374,0.496693,0.0124689,0.0691935,0.598411,0.365957,0.740716,0.828974,0.118351,0.788283,0.567566,0.26113,0.424483,0.796882,0.729289,0.246044,0.310632,0.839347,0.194838,0.0462575,0.362453,0.331946,0.375325,0.252169,0.10595,0.77027,0.359979,0.928236,0.0125207,0.0676342,0.523896,0.711716,0.149552,0.573077,0.34824,0.494386,0.612467,0.070849,0.55122,0.284953,0.440211,0.718276,0.831365,0.334941,0.37426,0.6936,0.483749,0.658322,0.898299,0.557437,0.214915,0.125878,0.0418397,0.685046,0.0471122,0.798449,0.584888,0.119726,0.7471,0.830961,0.144009,0.489586,0.112561,0.191077,0.264363,0.869206,0.930229,0.618051,0.226145,0.526781,0.423075,0.193544,0.547618,0.909939,0.465221,0.553267,0.266016,0.827062,0.343894,0.949813,0.154066,0.491032,0.460661,0.200779,0.358053,0.544642,0.206097,0.0568938,0.253583,0.324995,0.458798,0.806485,0.731004,0.590076,0.861727,0.400113,0.714598,0.555556,0.678015,0.177266,0.656977,0.927332,0.566863,0.889306,0.856532,2.41995e-05,0.210151,0.0791686,0.551225,0.476127,0.840089,0.51675,0.315574,0.427894,0.06263,0.730297,0.275181,0.632029,0.71313,0.107467,0.00537461,0.957732,0.373631,0.538829,0.19815,0.0920433,0.184503,0.272351,0.977482,0.370991,0.191819,0.972403,0.40062,0.587021,0.464398,0.380332,0.961254,0.486983,0.166839,0.990121,0.630927,0.604042,0.697103,0.25569,0.389425,0.79622,0.594273,0.588333,0.672217,0.0603486,0.77959,0.131665,0.199178,0.62074,0.368482,0.712304,0.13827,0.552758,0.838047,0.970903,0.147695,0.364748,0.0330391,0.822667,0.638929,0.819377,0.738364,0.376312,0.708959,0.211089,0.769394,0.0492567,0.666175,0.918498,0.765421,0.542683,0.012898,0.699984,0.787787,0.0460516,0.854232,0.728826,0.769495,0.571396,0.534028,0.522325,0.035445,0.375636,0.9411,0.275237,0.573673,0.180686,0.0244621,0.956931,0.468524,0.216731,0.673375,0.711201,0.750328,0.990698,0.195508,0.158529,0.578738,0.259094,0.546797,0.998041,0.284741,0.142743,0.128709,0.95784,0.977024,0.00859433,0.672406,0.565087,0.708997,0.225255,0.525363,0.958154,0.296233,0.0483016,0.859007,0.438313,0.0078482,0.764395,0.485525,0.844693,0.990935,0.745613,0.595061,0.350803,0.00833905,0.601313,0.731878,0.671475,0.547345,0.737625,0.162276,0.175223,0.408235,0.468189,0.530903,0.883208,0.0626115,0.708519,0.449368,0.62574,0.440692,0.567746,0.460454,0.458808,0.107546,0.532644,0.0618765,0.195575,0.820004,0.932017,0.480618,0.0527193,0.428033,0.817527,0.330061,0.0464363,0.0140281,0.662731,0.553773,0.0171512,0.869989,0.74153,0.328445,0.212588,0.411209,0.959594,0.126322,0.0424185,0.750289,0.155669,0.278065,0.678563,0.490483,0.432829,0.935759,0.496692,0.63123,0.772654,0.0491796,0.304063,0.322026,0.430064,0.507438,0.646233,0.148989,0.254612,0.0118125,0.514837,0.832703,0.634092,0.777496,0.160676,0.532883,0.132698,0.154316,0.584247,0.303791,0.0107557,0.811526,0.943997,0.238231,0.594305,0.213818,0.326607,0.106624,0.545043,0.288271,0.554738,0.787905,0.311038,0.507491,0.279563,0.343762,0.727853,0.52091,0.701208,0.0932321,0.195024,0.384196,0.353661,0.947693,0.786085,0.629989,0.683938,0.317712,0.77084,0.00826347,0.805785,0.647141,0.2439,0.893968,0.159017,0.115486,0.82087,0.418919,0.0979707,0.872315,0.600626,0.567902,0.00478715,0.664246,0.836907,0.516392,0.442296,0.56183,0.956317,0.333722,0.0645279,0.861625,0.637937,0.768421,0.335148,0.112029,0.279961,0.840335,0.913592,0.304024,0.620669,0.969641,0.784629,0.590056,0.0497203,0.366106,0.633953,0.639294,0.963712,0.216973,0.737741,0.767072,0.554394,0.765078,0.385911,0.213549,0.402096,0.281247,0.986867,0.250916,0.446246,0.804738,0.395536,0.173708,0.531178,0.407171,0.0285689,0.0984783,0.535007,0.00610262,0.356206,0.359352,0.604608,0.00835913,0.563914,0.435381,0.318442,0.503681,0.904022,0.849105,0.0764277,0.438764,0.779259,0.240743,0.633507,0.198387,0.19254,0.751335,0.417023,0.346748,0.0956461,0.393669,0.428661,0.595802,0.128102,0.0461212,0.361544,0.617934,0.0616602,0.140863,0.0977464,0.802578,0.637806,0.0154119,0.583283,0.506649,0.497169,0.00453311,0.947681,0.192156,0.9893,0.214826,0.375543,0.833592,0.466223,0.456457,0.609231,0.788853,0.307594,0.468991,0.763873,0.93494,0.368604,0.596557,0.702757,0.341819,0.867529,0.787181,0.130235,0.04879,0.166067,0.509967,0.854052,0.0274515,0.792462,0.386917,0.99482,0.625882,0.472991,0.254856,0.589913,0.0518834,0.220727,0.146793,0.893138,0.54675,0.310292,0.633775,0.0330078,0.0705044,0.546661,0.558073,0.0205812,0.647721,0.882833,0.285388,0.664192,0.242982,0.844308,0.545049,0.560641,0.701077,0.754557,0.157583,0.517229,0.49062,0.681213,0.864635,0.118508,0.894768,0.879503,0.84183,0.203987,0.426051,0.16078,0.358956,0.443462,0.688486,0.627889,0.743678,0.777719,0.213668,0.391381,0.919038,0.379656,0.502721,0.819601,0.0643584,0.156265,0.32134,0.30857,0.211598,0.878488,0.306102,0.414378,0.0273127,0.482578,0.164034,0.106127,0.0318798,0.00878745,0.384332,0.698849,0.580298,0.347814,0.790839,0.570974,0.930178,0.884867,0.968171,0.973249,0.835031,0.58773,0.576851,0.450258,0.620607,0.98684,0.315809,0.951385,0.0435172,0.151995,0.189825,0.537278,0.903081,0.437618,0.284546,0.19753,0.114168,0.65736,0.169801,0.172161,0.288085,0.388003,0.761683,0.238026,0.312279,0.593743,0.313625,0.990187,0.0436777,0.247741,0.0618365,0.389824,0.124643,0.731703,0.64571,0.613947,0.257112,0.699262,0.804998,0.927704,0.118691,0.937481,0.0335744,0.841704,0.745114,0.381972,0.820881,0.564453,0.900049,0.209791,0.192711,0.14333,0.122255,0.744439,0.610607,0.682537,0.491953,0.0731858,0.716949,0.414489,0.302144,0.607455,0.382415,0.721947,0.514436,0.690434,0.970904,0.814105,0.759254,0.759287,0.0617573,0.919355,0.739842,0.970959,0.356848,0.0824535,0.72608,0.233084,0.543861,0.156489,0.720937,0.538211,0.0999303,0.918229,0.511267,0.825171,0.892862,0.410264,0.802071,0.652538,0.18812,0.683178,0.063113,0.0761469,0.111405,0.238066,0.441532,0.359586,0.450943,0.477759,0.233864,0.35628,0.332633,0.454207,0.463578,0.573618,0.212322,0.417815,0.595268,0.887559,0.160566,0.950546,0.952968,0.454643,0.979613,0.601964,0.623292,0.0925987,0.269331,0.778267,0.984611,0.514463,0.125932,0.31856,0.807664,0.985305,0.434978,0.623852,0.526256,0.953687,0.971679,0.290875,0.4613,0.114594,0.140791,0.81644,0.47443,0.925892,0.787419,0.631912,0.728233,0.207336,0.307301,0.321424,0.0681629,0.295412,0.54407,0.2767,0.006836,0.314999,0.175079,0.902529,0.550605,0.654364,0.773316,0.082499,0.274611,0.572322,0.400519,0.968074,0.689212,0.160096,0.264046,0.903619,0.237486,0.89166,0.477767,0.913413,0.353639,0.964775,0.973105,0.268616,0.115592,0.139756,0.066498,0.414482,0.918761,0.781008,0.0526366,0.373102,0.2201,0.315218,0.0252046,0.52539,0.476782,0.083712,0.354465,0.487949,0.00688434,0.174665,0.66382,0.876212,0.679412,0.000413716,0.842229,0.917019,0.83235,0.229271,0.391115,0.867817,0.851012,0.768324,0.166246,0.593462,0.45674,0.578043,0.538373,0.520347,0.081554,0.684624,0.828486,0.287293,0.723948,0.0816527,0.470745,0.663771,0.18232,0.968302,0.500096,0.481818,0.0610443,0.474693,0.311754,0.881478,0.392001,0.286973,0.955822,0.0446768,0.473978,0.381154,0.879701,0.503445,0.369744,0.341891,0.639835,0.627676,0.77216,0.0211424,0.943642,0.574716,0.384736,0.518354,0.914657,0.781319,0.723412,0.755208,0.551312,0.257043,0.777957,0.389689,0.301801,0.556593,0.121985,0.374286,0.869016,0.2925,0.784308,0.880228,0.0466812,0.8893,0.678822,0.832503,0.0455892,0.247847,0.412944,0.343225,0.325249,0.205371,0.991238,0.662078,0.233758,0.944657,0.247382,0.205947,0.992905,0.586774,0.819593,0.95622,0.857061,0.803285,0.0362308,0.328684,0.585237,0.934953,0.89296,0.560875,0.777403,0.0502733,0.759481,0.0169566,0.860342,0.488555,0.514291,0.105517,0.321452,0.263204,0.342916,0.712856,0.603724,0.528608,0.481291,0.997652,0.967411,0.806274,0.43152,0.738324,0.909873,0.114045,0.230122,0.374034,0.534727,0.862423,0.900977,0.680837,0.24949,0.156216,0.568708,0.871595,0.669229,0.919053,0.932087,0.952857,0.49479,0.565464,0.361918,0.932052,0.827137,0.179448,0.0238225,0.437235,0.969065,0.0184744,0.564086,0.730118,0.988989,0.351301,0.293259,0.826277,0.273664,0.868675,0.407377,0.466748,0.181398,0.705651,0.404895,0.141696,0.267546,0.153343,0.78932,0.534768,0.981779,0.817293,0.341895,0.193366,0.745358,0.191071,0.739976,0.920873,0.712634,0.710412,0.0894948,0.135466,0.65808,0.129498,0.846946,0.471489,0.417907,0.0873367,0.131406,0.548791,0.286152,|0.282097,0.547998,0.762175,0.889822,0.916578,0.626041,0.175654,0.0303429,0.739497,0.951375,0.646414,0.134824,0.613677,0.858439,0.677279,0.364575,0.270304,0.514162,0.391175,0.340553,0.606561,0.96122,0.129008,0.169291,0.825058,0.423121,0.134189,0.903879,0.775253,0.367072,0.6936,0.0800778,0.883177,0.791673,0.594768,0.250549,0.674756,0.415998,0.667302,0.464224,0.117851,0.0205947,0.593875,0.399356,0.500273,0.826452,0.175888,0.859362,0.919689,0.119983,0.104513,0.811036,0.110004,0.564755,0.211645,0.393687,0.485086,0.488007,0.150329,0.202277,0.224987,0.303164,0.904453,0.298104,0.773384,0.5223,0.917085,0.825226,0.554608,0.701228,0.06199,0.422301,0.796525,0.593192,0.0156333,0.098582,0.0489716,0.544297,0.641924,0.203281,0.5089,0.817294,0.118927,0.742342,0.408931,0.0320543,0.0717158,0.211996,0.817042,0.835953,0.2388,0.577459,0.866476,0.269741,0.695754,0.900419,0.124712,0.956904,0.792242,0.536767,0.21544,0.648877,0.137542,0.131034,0.85632,0.690746,0.658163,0.112605,0.79748,0.501026,0.132692,0.669605,0.927846,0.852276,0.142657,0.265765,0.423171,0.74265,0.682428,0.11031,0.776973,0.16416,0.77927,0.803374,0.919016,0.912804,0.105417,0.721968,0.309021,0.870739,0.589509,0.758181,0.890594,0.110125,0.120119,0.713004,0.0053491,0.671451,0.41812,0.118234,0.84403,0.246997,0.59444,0.163172,0.699456,0.58726,0.843662,0.864768,0.0250785,0.382171,0.742482,0.536455,0.912524,0.279101,0.780977,0.113396,0.99296,0.480004,0.918719,0.915586,0.191927,0.291442,0.785834,0.524945,0.753417,0.524831,0.145457,0.564406,0.583864,0.469642,0.0900168,0.788555,0.220839,0.884642,0.653436,0.289617,0.472201,0.534332,0.214892,0.556322,0.889902,0.966771,0.393453,0.450477,0.78577,0.613898,0.21693,0.656136,0.269665,0.0861625,0.942597,0.61136,0.963194,0.424078,0.68237,0.0521939,0.395612,0.386121,0.825613,0.663024,0.752733,0.766568,0.500377,0.359958,0.445396,0.457818,0.206715,0.173701,0.284028,0.212257,0.755641,0.507698,0.804675,0.888511,0.137782,0.8573,0.735728,0.622745,0.134446,0.74118,0.424152,0.862259,0.0617773,0.45844,0.917568,0.56498,0.445231,0.306206,0.767381,0.840122,0.329769,0.652398,0.352503,0.443773,0.0846632,0.856993,0.313243,0.880958,0.396295,0.349548,0.503005,0.369911,0.961418,0.76505,0.838009,0.658028,0.512768,0.421562,0.175022,0.493111,0.902473,0.66543,0.948275,0.463888,0.558698,0.322161,0.842425,0.214613,0.401353,0.969039,0.253426,0.512192,0.627767,0.324193,0.251958,0.836729,0.176203,0.415659,0.152105,0.976459,0.164024,0.166703,0.183367,0.250671,0.676267,0.200833,0.847969,0.815433,0.956451,0.698364,0.0786636,0.0461438,0.799462,0.197553,0.0982167,0.928154,0.390073,0.975547,0.366156,0.888451,0.434725,0.0306157,0.04752,0.889595,0.700483,0.707018,0.124053,0.1807,0.0476267,0.502167,0.893381,0.101851,0.546967,0.892251,0.0194532,0.66388,0.483544,0.387151,0.0762993,0.617633,0.714743,0.824575,0.0164332,0.497224,0.420214,0.0574027,0.619809,0.821936,0.220258,0.40523,0.538465,0.732975,0.0917073,0.284973,0.0727891,0.862997,0.865969,0.442145,0.77286,0.855466,0.148505,0.700631,0.762152,0.063919,0.396712,0.976014,0.123928,0.0903738,0.83534,0.631924,0.913714,0.56527,0.894726,0.446825,0.0386426,0.859863,0.15239,0.0794016,0.497717,0.0732286,0.332423,0.669321,0.206421,0.15401,0.544247,0.788143,0.366459,0.420642,0.400084,0.869962,0.650763,0.879305,0.950204,0.291938,0.14582,0.362143,0.138789,0.90938,0.0484415,0.639006,0.693526,0.185905,0.236112,0.854967,0.69159,0.876378,0.3275,0.15859,0.749233,0.730275,0.109755,0.334139,0.218108,0.601688,0.359925,0.308792,0.388744,0.0893332,0.711018,0.558996,0.784629,0.487523,0.516743,0.797522,0.909903,0.253967,0.969504,0.444043,0.848619,0.173856,0.315188,0.0850148,0.721823,0.424774,0.388116,0.878519,0.324115,0.776316,0.953574,0.238214,0.782371,0.130607,0.593967,0.788904,0.819301,0.58194,0.981425,0.938042,0.487138,0.876487,0.868582,0.608604,0.174958,0.190607,0.512408,0.477564,0.945681,0.785754,0.486636,0.061933,0.496094,0.874814,0.0464965,0.788453,0.854589,0.814577,0.0605863,0.912121,0.905065,0.819261,0.154729,0.528284,0.357158,0.916341,0.963604,0.831664,0.925362,0.013286,0.323149,0.648615,0.88852,0.0697445,0.174708,0.629469,0.708599,0.654064,0.143462,0.561263,0.608151,0.070689,0.446109,0.244226,0.36428,0.340887,0.67541,0.897896,0.578191,0.951234,0.143876,0.938755,0.592394,0.435015,0.534133,0.112128,0.973922,0.988506,0.419956,0.46686,0.701278,0.851189,0.2433,0.106788,0.122773,0.419734,0.794438,0.737314,0.219227,0.950948,0.585368,0.965868,0.357517,0.673616,0.712028,0.562437,0.216056,0.949109,0.514075,0.582594,0.879337,0.0243144,0.909636,0.933911,0.754082,0.86447,0.281704,0.146362,0.18173,0.651867,0.486382,0.479991,0.542831,0.910483,0.811616,0.367392,0.488045,0.186677,0.0666774,0.647539,0.809488,0.0832658,0.24248,0.602721,0.165207,0.171587,0.783353,0.367156,0.856098,0.0962606,0.765633,0.362227,0.508469,0.223989,0.796724,0.193826,0.0496225,0.163554,0.344697,0.794195,0.238608,0.144418,0.714999,0.372999,0.367485,0.774513,0.173362,0.963937,0.626581,0.589898,0.830515,0.775383,0.792526,0.759049,0.219035,0.416891,0.935906,0.90705,0.384538,0.952856,0.117762,0.568563,0.548548,0.0727079,0.224657,0.109098,0.0720791,0.210131,0.565474,0.4686,0.191965,0.795161,0.165055,0.500737,0.975918,0.947794,0.0598031,0.0387323,0.439776,0.651253,0.940468,0.184757,0.128419,0.492971,0.284806,0.898933,0.202513,0.899802,0.716662,0.357741,0.892355,0.864455,0.0730702,0.406918,0.219642,0.133594,0.646137,0.576904,0.130268,0.853048,0.236072,0.987071,0.672491,0.466221,0.606528,0.915666,0.814213,0.0892792,0.741918,0.395075,0.242077,0.237655,0.981903,0.758195,0.86327,0.915255,0.0703513,0.886573,0.863546,0.554738,0.151608,0.897451,0.882673,0.0909568,0.697937,0.432709,0.693604,0.678845,0.644348,0.355539,0.875298,0.489605,0.24413,0.188254,0.546016,0.592654,0.735974,0.149561,0.85365,0.34574,0.422354,0.486519,0.00552094,0.132109,0.89967,0.621142,0.535364,0.977433,0.0501003,0.335714,0.131644,0.0237021,0.414768,0.400717,0.70673,0.475229,0.142282,0.600303,0.412201,0.572864,0.779799,0.222401,0.715141,0.969024,0.806957,0.256411,0.590927,0.672198,0.217006,0.709831,0.193099,0.138342,0.685355,0.0589601,0.483601,0.340236,0.715266,0.0454392,0.208978,0.386758,0.765967,0.341081,0.72811,0.959982,0.30682,0.437653,0.707832,0.68825,0.937603,0.888925,0.623544,0.904499,0.136926,0.852375,0.0922225,0.155937,0.0111266,0.891069,0.851372,0.7517,0.340154,0.116522,0.237174,0.280656,0.22041,0.729569,0.0629075,0.567138,0.937079,0.307194,0.125471,0.644492,0.776745,0.0191009,0.645122,0.927662,0.88032,0.231508,0.284767,0.497889,0.488989,0.756296,0.82424,0.065031,0.0539916,0.30289,0.729117,0.526977,0.499021,0.0194901,0.762047,0.725404,0.594703,0.325699,0.527695,0.124923,0.114191,0.905103,0.548319,0.372564,0.395218,0.645013,0.971613,0.405449,0.306451,0.557023,0.721523,0.332753,0.408137,0.246825,0.828968,0.400934,0.102305,0.444349,0.517902,0.763807,0.790845,0.529871,0.732646,0.788612,0.4825,0.186316,0.138075,0.726344,0.952847,0.297092,0.68967,0.610998,0.866942,0.0052712,0.487207,0.61216,0.198803,0.72549,0.257505,0.301169,0.266299,0.718543,0.732469,0.2415,0.970329,0.84577,0.202829,0.1893,0.232552,0.857522,0.156111,0.371616,0.711009,0.255346,0.680955,0.62721,0.642347,0.929238,0.646427,0.940412,0.209844,0.847327,0.42409,0.692152,0.184769,0.235872,0.545642,0.661172,0.877575,0.536167,0.998778,0.249851,0.268792,0.604159,0.676346,0.591255,0.0930344,0.291924,0.236697,0.516794,0.941299,0.603779,0.932467,0.399266,0.148543,0.709379,0.76379,0.381552,0.829205,0.361277,0.629807,0.929292,0.74675,0.0689608,0.0271705,0.508592,0.316329,0.380433,0.242527,0.400155,0.916309,0.795719,0.0018416,0.577459,0.250324,0.990019,0.940598,0.280893,0.63379,0.130159,0.739755,0.169757,0.287086,0.525903,0.302238,0.380972,0.284002,0.103792,0.0582576,0.565454,0.873449,0.0528115,0.876544,0.122503,0.190245,0.313478,0.710146,0.530306,0.242213,0.376847,0.971546,0.403986,0.062801,0.972408,0.678691,0.518108,0.404764,0.614067,0.669856,0.701313,0.602853,0.35329,0.0277228,0.6108,0.30114,0.539304,0.603856,0.8419,0.590137,0.127546,0.321947,0.805557,0.432813,0.198318,0.412579,0.179411,0.0138174,0.789969,0.167883,0.879073,0.935145,0.391564,0.231177,0.157749,0.835508,0.881317,0.837341,0.340474,0.385048,0.122985,0.537379,0.0515313,0.0531601,0.00728941,0.676634,0.0305489,0.700968,0.160792,0.522294,0.336649,0.636892,0.176324,0.235465,0.730898,0.556004,0.801734,0.457227,0.0993956,0.497886,0.958626,0.350206,0.563188,0.906532,0.754623,0.49486,0.0726458,0.433513,0.91203,0.835163,0.897357,0.122506,0.163615,0.0320206,0.52516,0.626662,0.168291,0.061913,0.666755,0.830161,0.258362,0.650953,0.601728,0.344571,0.71023,0.758561,0.966663,0.602048,0.232972,0.972118,0.219566,0.835126,0.599204,0.499653,0.494332,0.0172713,0.344971,0.523295,0.749399,0.559951,0.776363,0.725388,0.775851,0.279136,0.907328,0.551675,0.410844,0.654466,0.82386,0.938434,0.308888,0.165552,0.259784,0.451007,0.356304,0.169255,0.2087,0.669494,0.262566,0.566163,0.458841,0.850142,0.952514,0.363987,0.244901,0.220967,0.219275,0.0343941,0.106629,0.312609,0.352814,0.278859,0.24835,0.355817,0.498582,0.191874,0.173735,|0.86181,0.373719,0.851078,0.00538045,0.390093,0.193269,0.517574,0.979999,0.579847,0.773447,0.55191,0.560829,0.367111,0.761863,0.945583,0.691263,0.436958,0.0130707,0.343416,0.70734,0.537966,0.0741812,0.902131,0.939656,0.0199556,0.589594,0.196622,0.265867,0.923346,0.614027,0.177963,0.63765,0.716989,0.59393,0.225814,0.29588,0.901917,0.497572,0.577567,0.280064,0.976729,0.25183,0.888693,0.171516,0.0649523,0.191313,0.868263,0.0223646,0.728846,0.672387,0.537314,0.580141,0.20572,0.273475,0.603266,0.4266,0.21134,0.83204,0.617116,0.992653,0.968478,0.6023,0.779893,0.10851,0.190655,0.780892,0.32954,0.97571,0.36473,0.900021,0.278288,0.164315,0.389336,0.568399,0.00283307,0.0463539,0.900148,0.449958,0.551893,0.911658,0.605278,0.293826,0.227796,0.192944,0.869146,0.754941,0.416508,0.572102,0.59893,0.534587,0.196556,0.855352,0.774643,0.773477,0.357734,0.352645,0.678781,0.813587,0.485644,0.332361,0.494654,0.625027,0.401444,0.204504,0.277139,0.916082,0.38066,0.449047,0.0622444,0.12486,0.221145,0.794375,0.735617,0.923014,0.789571,0.0102655,0.753773,0.272399,0.993827,0.391228,0.72687,0.294734,0.203303,0.966642,0.45954,0.781824,0.393825,0.933653,0.214396,0.380621,0.746955,0.0477679,0.715242,0.0239839,0.017571,0.721919,0.166575,0.266687,0.176624,0.179306,0.435607,0.416389,0.0549707,0.391306,0.525953,0.497193,0.480672,0.108295,0.396748,0.434426,0.074698,0.0611563,0.820968,0.47782,0.81557,0.686384,0.503179,0.807634,0.908219,0.242777,0.335589,0.894248,0.441773,0.157234,0.137688,0.711723,0.404611,0.244997,0.496859,0.216024,0.653796,0.354906,0.36342,0.751749,0.742135,0.848456,0.327098,0.377147,0.068407,0.753071,0.324832,0.85476,0.360166,0.389296,0.385021,0.583631,0.65098,0.270196,0.918904,0.239138,0.826896,0.0330223,0.168814,0.61753,0.654278,0.796281,0.63168,0.596924,0.638115,0.9989,0.926912,0.629204,0.906892,0.72612,0.749411,0.339816,0.401511,0.339263,0.721409,0.630433,0.636916,0.56069,0.216644,0.416973,0.210304,0.437511,0.847126,0.776455,0.473781,0.365659,0.320176,0.448056,0.151237,0.527434,0.361316,0.659515,0.443089,0.415321,0.0520995,0.869405,0.110631,0.903367,0.484385,0.954598,0.246204,0.163153,0.157799,0.254943,0.110737,0.75371,0.654719,0.890711,0.726288,0.0160279,0.930697,0.876474,0.125856,0.598948,0.650635,0.930419,0.846812,0.580303,0.732919,0.701992,0.979161,0.444653,0.921279,0.87995,0.0361226,0.108724,0.0371918,0.472159,0.221672,0.323107,0.829582,0.992388,0.781007,0.611482,0.213498,0.708688,0.178949,0.385144,0.223209,0.618904,0.180201,0.994031,0.243569,0.833791,0.80967,0.20081,0.461597,0.535161,0.594438,0.567606,0.401966,0.490744,0.878382,0.706349,0.111691,0.884399,0.571423,0.246241,0.584354,0.267765,0.417228,0.447925,0.255627,0.840552,0.315269,0.57622,0.175435,0.161147,0.430252,0.223204,0.367121,0.68249,0.253649,0.223606,0.496662,0.0295933,0.209674,0.731551,0.55373,0.0908501,0.269394,0.141145,0.167909,0.423616,0.249024,0.22196,0.789269,0.746486,0.100913,0.298689,0.447607,0.0828707,0.700382,0.595966,0.142544,0.73872,0.328761,0.40065,0.52594,0.715938,0.149765,0.159222,0.35321,0.0637697,0.970887,0.557253,0.46314,0.862759,0.842905,0.811068,0.656653,0.269605,0.562414,0.49765,0.631905,0.997717,0.434456,0.515715,0.65925,0.511611,0.557537,0.417344,0.0226029,0.0996792,0.240796,0.56835,0.0980297,0.506148,0.932233,0.860301,0.223101,0.279375,0.99048,0.379762,0.986891,0.264817,0.400871,0.0684499,0.981414,0.704887,0.99418,0.0254233,0.420004,0.54422,0.563177,0.0805066,0.22658,0.534862,0.902219,0.396913,0.04184,0.911108,0.453553,0.0596801,0.643537,0.255421,0.0505278,0.558214,0.743408,0.0574071,0.278881,0.353691,0.769434,0.454893,0.585341,0.667077,0.246732,0.644085,0.802123,0.662912,0.345979,0.716658,0.271682,0.579958,0.503809,0.22677,0.706958,0.254502,0.902034,0.956685,0.341476,0.860761,0.37082,0.266612,0.970461,0.810945,0.511381,0.654909,0.254527,0.870936,0.0557854,0.493384,0.641452,0.888681,0.566394,0.963021,0.309424,0.675197,0.706069,0.640122,0.233001,0.865546,0.796776,0.121305,0.829956,0.185266,0.642333,0.26873,0.713202,0.542699,0.998439,0.457924,0.832822,0.146882,0.244169,0.972763,0.605268,0.485583,0.318167,0.651884,0.468468,0.631859,0.510429,0.606898,0.607993,0.712941,0.523109,0.0862487,0.126699,0.168079,0.386042,0.271476,0.385946,0.25903,0.681058,0.0677341,0.418901,0.660146,0.290375,0.252748,0.775814,0.1235,0.521776,0.287537,0.739002,0.640699,0.400695,0.360502,0.75046,0.563112,0.944885,0.677171,0.683257,0.383639,0.708716,0.317341,0.749066,0.619709,0.994344,0.0205529,0.493004,0.708666,0.027985,0.493037,0.438939,0.422826,0.955631,0.93948,0.63894,0.555444,0.620944,0.631372,0.30217,0.340332,0.717215,0.0406479,0.632857,0.819243,0.796243,0.531647,0.21976,0.670255,0.632284,0.186669,0.563318,0.35098,0.555168,0.476227,0.708288,0.49249,0.202323,0.0276943,0.235311,0.277745,0.994804,0.377374,0.349267,0.737834,0.870329,0.414866,0.494986,0.981126,0.338334,0.947388,0.231838,0.200177,0.498335,0.0167696,0.938651,0.340339,0.329211,0.0317335,0.722987,0.259281,0.328142,0.138249,0.222378,0.467144,0.293029,0.871698,0.0182644,0.137239,0.350361,0.951901,0.199744,0.709484,0.451228,0.684146,0.600373,0.406241,0.461667,0.136199,0.200102,0.292823,0.647261,0.316601,0.999669,0.589522,0.225344,0.211203,0.63016,0.910622,0.0536677,0.511558,0.992523,0.949979,0.444706,0.328007,0.460436,0.109419,0.785645,0.0156264,0.0166837,0.275496,0.168953,0.0602679,0.18285,0.575371,0.11313,0.72911,0.531976,0.202204,0.86133,0.597165,0.158826,0.489672,0.254106,0.369975,0.402626,0.162512,0.0461047,0.010765,0.270529,0.43248,0.589496,0.8721,0.938664,0.620522,0.308411,0.52976,0.628148,0.997482,0.0384824,0.656948,0.982255,0.872547,0.0297218,0.259459,0.541574,0.463752,0.216191,0.912154,0.511032,0.687099,0.335381,0.696166,0.650596,0.0269964,0.521421,0.170855,0.0918478,0.174679,0.711098,0.115908,0.1615,0.845217,0.16059,0.0811737,0.740831,0.161744,0.132084,0.180018,0.0138929,0.694917,0.504648,0.445011,0.970542,0.65884,0.182182,0.294901,0.0721579,0.0496354,0.62841,0.900434,0.0276176,0.972019,0.163248,0.124711,0.897884,0.820902,0.385809,0.611965,0.335096,0.978483,0.800636,0.731537,0.356755,0.0107999,0.59326,0.346969,0.0359255,0.918585,0.665618,0.206855,0.918737,0.204582,0.653126,0.144992,0.676669,0.273441,0.47737,0.0172887,0.974369,0.0764751,0.991933,0.252915,0.103645,0.0866356,0.35229,0.238347,0.0115675,0.0868241,0.60725,0.566896,0.839286,0.0500837,0.697191,0.582868,0.702209,0.70037,0.441787,0.127557,0.24416,0.715204,0.315718,0.0259906,0.651266,0.162007,0.437864,0.22621,0.95268,0.711283,0.679375,0.257813,0.823139,0.701587,0.571904,0.212861,0.515304,0.511243,0.774705,0.00265956,0.860598,0.219916,0.53702,0.891768,0.926009,0.225009,0.72597,0.197655,0.137582,0.471891,0.498987,0.0515014,0.596504,0.115539,0.790238,0.880982,0.643346,0.496381,0.489895,0.04983,0.0636803,0.355322,0.930014,0.0235447,0.260194,0.561907,0.701954,0.492487,0.0704173,0.49037,0.597275,0.847783,0.748039,0.716547,0.933251,0.691338,0.0355182,0.704377,0.870577,0.572459,0.578412,0.513747,0.424976,0.978226,0.495855,0.326405,0.510056,0.711454,0.149138,0.886116,0.334139,0.622893,0.885864,0.797799,0.762079,0.105033,0.4533,0.117191,0.688062,0.428997,0.461258,0.300067,0.653562,0.181665,0.182394,0.0362015,0.996382,0.992954,0.737908,0.362726,0.114083,0.744822,0.309907,0.101368,0.230559,0.373382,0.673407,0.662445,0.140118,0.422263,0.123086,0.737062,0.142104,0.331639,0.818867,0.5038,0.448369,0.352987,0.413302,0.223911,0.391322,0.496418,0.256475,0.689789,0.160874,0.54957,0.120461,0.381131,0.900646,0.963498,0.856962,0.657305,0.612596,0.123613,0.135562,0.110655,0.220102,0.241264,0.446258,0.132888,0.459086,0.973523,0.898034,0.667096,0.813297,0.409121,0.453914,0.42742,0.44597,0.301321,0.261149,0.0598204,0.0626119,0.423788,0.802288,0.283461,0.687951,0.750334,0.174635,0.304296,0.921463,0.258425,0.398136,0.83539,0.882525,0.863679,0.528158,0.256897,0.354504,0.806019,0.250452,0.53227,0.337914,0.448578,0.236783,0.758911,0.298521,0.685901,0.55896,0.194182,0.54874,0.619335,0.305924,0.851272,0.293036,0.774435,0.613566,0.190577,0.271716,0.694342,0.849016,0.445069,0.536828,0.229405,0.342069,0.551627,0.811101,0.815941,0.601507,0.0897042,0.516678,0.427165,0.916413,0.711974,0.7981,0.886319,0.516069,0.280151,0.328973,0.165575,0.448783,0.448414,0.606723,0.881203,0.992672,0.555272,0.485799,0.10347,0.395566,0.911278,0.256933,0.87211,0.796696,0.88724,0.122478,0.524815,0.143104,0.970101,0.861526,0.574806,0.28984,0.340576,0.668331,0.896637,0.205514,0.714006,0.18874,0.992702,0.0276983,0.377635,0.0891785,0.304865,0.760059,0.219603,0.991566,0.489684,0.889831,0.657968,0.176023,0.310471,0.97561,0.613031,0.40673,0.578245,0.561365,0.510045,0.747874,0.463456,0.956338,0.787966,0.271224,0.599155,0.706472,0.196809,0.831623,0.967491,0.0986714,0.113102,0.988313,0.227989,0.858321,0.841326,0.117328,0.101602,0.313692,0.830923,0.481882,0.124169,0.461939,0.785108,0.500352,0.495484,0.0993248,0.781057,0.845578,0.0431111,0.515947,0.213914,0.80147,0.553931,0.725041,0.625576,0.469459,0.651083,0.433576,0.186816,0.615974,0.465311,0.995582,0.154977,0.48847,0.265421,0.796203,0.757149,|0.96423,0.567638,0.1093,0.279654,0.669253,0.659137,0.438343,0.496639,0.163652,0.069191,0.218143,0.494948,0.331629,0.710203,0.0337898,0.977973,0.51541,0.564068,0.9713,0.377978,0.748171,0.916804,0.600835,0.461735,0.48731,0.803156,0.649707,0.538277,0.0838669,0.0101816,0.162311,0.467647,0.148957,0.420378,0.701833,0.532978,0.480675,0.330715,0.245593,0.0698452,0.0986608,0.584211,0.902283,0.195381,0.659578,0.511261,0.378837,0.468203,0.722955,0.984538,0.949098,0.131385,0.172805,0.757239,0.306944,0.166988,0.802599,0.88865,0.998235,0.83004,0.884521,0.0104844,0.0644294,0.260496,0.423969,0.0650769,0.360732,0.766106,0.836024,0.0941895,0.174589,0.503425,0.81069,0.883733,0.853422,0.217314,0.1865,0.0536751,0.470678,0.123471,0.491892,0.435533,0.382612,0.331871,0.239501,0.389793,0.116367,0.177923,0.223478,0.226989,0.155396,0.601992,0.666529,0.965764,0.0925351,0.103459,0.498887,0.828006,0.711359,0.0458515,0.722782,0.00439757,0.82553,0.810521,0.20268,0.335742,0.850605,0.656211,0.381319,0.744802,0.235315,0.572063,0.71145,0.807933,0.680045,0.433249,0.229192,0.497155,0.814835,0.466368,0.531445,0.121148,0.797538,0.518616,0.159982,0.655369,0.316078,0.991962,0.432318,0.164188,0.754761,0.267479,0.750352,0.565214,0.804493,0.307869,0.84086,0.774657,0.346712,0.38543,0.978132,0.00554562,0.734019,0.194661,0.477616,0.243551,0.576885,0.47717,0.346058,0.502593,0.613422,0.249759,0.0313773,0.47419,0.335205,0.0366989,0.461917,0.270725,0.99909,0.470634,0.265408,0.926724,0.906617,0.631151,0.961415,0.211174,0.359693,0.646688,0.0583919,0.405388,0.0754396,0.0869852,0.342174,0.718972,0.436605,0.264482,0.911889,0.433029,0.885971,0.0037784,0.160444,0.318805,0.147307,0.116854,0.342486,0.2243,0.717261,0.128935,0.219222,0.636443,0.897995,0.666459,0.596066,0.325236,0.769281,0.887217,0.997518,0.371002,0.0123475,0.0734408,0.846618,0.0788881,0.623235,0.716646,0.0897064,0.954761,0.447248,0.66779,0.0428032,0.299084,0.617421,0.546906,0.916244,0.0613193,0.265885,0.0609946,0.930657,0.777614,0.0890557,0.313867,0.643371,0.360854,0.568706,0.542021,0.690494,0.745449,0.329271,0.0492765,0.0758913,0.678099,0.25766,0.0780086,0.034331,0.854748,0.0326542,0.0188503,0.755781,0.400406,0.976061,0.551542,0.790594,0.109877,0.662789,0.858345,0.732005,0.138266,0.180019,0.966969,0.930674,0.506992,0.405332,0.542499,0.549326,0.267013,0.385431,0.855836,0.2541,0.221937,0.180277,0.732824,0.926418,0.235397,0.0979936,0.752148,0.291618,0.906018,0.803911,0.583314,0.500295,0.33815,0.0583721,0.427883,0.566498,0.442273,0.835899,0.360751,0.160813,0.38425,0.439539,0.664499,0.743693,0.392905,0.890368,0.345738,0.743432,0.0458545,0.107165,0.748924,0.56977,0.818263,0.672186,0.165198,0.197077,0.709325,0.110169,0.952967,0.737755,0.0816621,0.63783,0.225048,0.280964,0.131021,0.316416,0.174985,0.360436,0.796295,0.551981,0.346808,0.233475,0.996553,0.751002,0.566754,0.39207,0.559878,0.980311,0.911257,0.559105,0.316352,0.601325,0.141133,0.568686,0.501547,0.886773,0.0529883,0.420543,0.584473,0.00746393,0.37534,0.289955,0.157922,0.56814,0.311694,0.328399,0.429571,0.931499,0.615794,0.463594,0.805223,0.074384,0.0389464,0.744951,0.0775675,0.253544,0.676029,0.121722,0.797297,0.211553,0.754346,0.811918,0.340615,0.642221,0.120614,0.903092,0.315362,0.729708,0.232475,0.843941,0.703709,0.982622,0.487744,0.0752153,0.597078,0.319115,0.834575,0.109481,0.57725,0.671749,0.0859067,0.387135,0.128551,0.276277,0.72067,0.320153,0.0142503,0.0874598,0.815266,0.741987,0.75415,0.680996,0.110589,0.123137,0.299249,0.835345,0.509085,0.768324,0.0939907,0.605208,0.153368,0.728757,0.29436,0.338036,0.412439,0.627304,0.886589,0.625283,0.787239,0.37456,0.499075,0.239197,0.161152,0.838633,0.303452,0.0920459,0.283209,0.366797,0.515887,0.285906,0.878182,0.206032,0.223067,0.895597,0.0178565,0.57841,0.120126,0.784706,0.112933,0.264698,0.722212,0.61236,0.98948,0.908331,0.802814,0.205892,0.493379,0.476904,0.771571,0.347799,0.0634723,0.00621772,0.856681,0.508236,0.289642,0.852882,0.153193,0.744751,0.491612,0.490422,0.449549,0.777389,0.474015,0.679814,0.109828,0.552478,0.820642,0.183185,0.309285,0.908038,0.542302,0.68212,0.230254,0.220663,0.22416,0.544555,0.11472,0.372346,0.504234,0.250101,0.251942,0.528668,0.859485,0.706614,0.934928,0.77424,0.808813,0.834805,0.209567,0.504507,0.294479,0.820087,0.639076,0.791197,0.393278,0.67709,0.227507,0.837304,0.0473834,0.356015,0.289937,0.838458,0.964808,0.987465,0.841513,0.652039,0.467525,0.994331,0.687754,0.603764,0.820693,0.213461,0.555523,0.694844,0.160012,0.177336,0.599832,0.103653,0.0478669,0.780969,0.651704,0.730846,0.365899,0.202697,0.508679,0.992637,0.96563,0.293624,0.833475,0.852848,0.32144,0.0414652,0.717107,0.841955,0.246766,0.950961,0.636639,0.833524,0.667824,0.93222,0.921281,0.0190484,0.119129,0.0337538,0.0836318,0.943951,0.108767,0.335582,0.563159,0.870062,0.518025,0.11359,0.996399,0.572055,0.907233,0.587844,0.272078,0.0462908,0.902511,0.802921,0.661667,0.666728,0.880662,0.558252,0.398337,0.859209,0.15315,0.681818,0.609559,0.216905,0.383992,0.563978,0.104231,0.0816346,0.338105,0.784766,0.624891,0.888105,0.464599,0.977848,0.698573,0.222009,0.18372,0.287814,0.0317681,0.429271,0.574062,0.240948,0.377833,0.707236,0.0048719,0.984841,0.366244,0.144846,0.755625,0.635951,0.344098,0.391248,0.365834,0.320854,0.753555,0.84446,0.633674,0.883686,0.459548,0.888631,0.112768,0.903909,0.490013,0.212547,0.514736,0.60422,0.18929,0.0330524,0.626645,0.719431,0.894489,0.450295,0.439579,0.459431,0.235489,0.624823,0.921902,0.630458,0.421967,0.622905,0.365772,0.974678,0.346941,0.0379738,0.565599,0.720352,0.996215,0.233875,0.0711452,0.221172,0.487858,0.959339,0.45916,0.960795,0.705637,0.63408,0.41524,0.620881,0.897669,0.0434061,0.947323,0.164806,0.583576,0.344329,0.927575,0.0303321,0.35509,0.604409,0.990195,0.178863,0.574636,0.38479,0.419666,0.897473,0.770553,0.602495,0.539365,0.940152,0.768499,0.735978,0.506121,0.894929,0.876652,0.437267,0.841859,0.466495,0.652791,0.341263,0.322436,0.548934,0.728906,0.0593703,0.400046,0.207761,0.463772,0.622953,0.864826,0.757451,0.532685,0.849972,0.520156,0.176231,0.174296,0.51515,0.582139,0.853438,0.409977,0.0780268,0.366136,0.420292,0.644432,0.547572,0.726994,0.242813,0.644145,0.33582,0.344663,0.378409,0.725042,0.342477,0.429341,0.0511619,0.311543,0.386475,0.201633,0.70467,0.782656,0.388236,0.990245,0.193979,0.500606,0.873017,0.439346,0.406385,0.195984,0.355734,0.522897,0.155727,0.37478,0.736356,0.184402,0.532372,0.842169,0.247724,0.980877,0.682459,0.794776,0.761459,0.854732,0.991612,0.143468,0.510951,0.443777,0.540214,0.785187,0.741395,0.0576524,0.669262,0.808687,0.865134,0.889189,0.427783,0.806541,0.67619,0.0524285,0.203088,0.637126,0.400498,0.426023,0.488361,0.156766,0.979567,0.365537,0.214941,0.181388,0.590017,0.275341,0.314159,0.625733,0.50333,0.716586,0.529828,0.858485,0.0759369,0.775034,0.724584,0.629143,0.586436,0.883347,0.847257,0.637973,0.31561,0.602678,0.615478,0.13662,0.0489605,0.0581378,0.693931,0.211197,0.594246,0.709626,0.10232,0.469342,0.749011,0.593166,0.861507,0.944522,0.511743,0.332814,0.163994,0.360142,0.27755,0.272515,0.268522,0.320482,0.381473,0.783474,0.131293,0.101087,0.172477,0.758256,0.29948,0.705946,0.614128,0.725929,0.66155,0.378385,0.00988877,0.475672,0.618322,0.845179,0.33194,0.810551,0.525128,0.72896,0.760243,0.492441,0.235714,0.892979,0.535081,0.896034,0.0790931,0.136466,0.65696,0.280773,0.881254,0.445857,0.171653,0.18263,0.512923,0.0799681,0.0236912,0.398161,0.906575,0.0177139,0.664125,0.286888,0.319891,0.31439,0.28765,0.774448,0.800997,0.278578,0.820294,0.651684,0.712366,0.704494,0.224822,0.303119,0.891566,0.606058,0.187983,0.327754,0.94538,0.99954,0.389221,0.680163,0.955069,0.600232,0.630264,0.21252,0.202424,0.505699,0.406775,0.608225,0.600882,0.436197,0.455743,0.0956122,0.920383,0.862433,0.0910712,0.610947,0.503809,0.0708271,0.0937492,0.401431,0.853776,0.236819,0.179061,0.370202,0.563637,0.157149,0.934594,0.861152,0.337818,0.534307,0.489664,0.695077,0.0198942,0.604092,0.526386,0.768636,0.391067,0.871538,0.262593,0.983747,0.0821855,0.550319,0.529275,0.841834,0.129173,0.789492,0.907314,0.0845574,0.413374,0.129312,0.979453,0.0693425,0.648349,0.26166,0.0737121,0.485075,0.814479,0.169582,0.877182,0.961983,0.0329309,0.682649,0.892822,0.842676,0.975452,0.615392,0.401204,0.451065,0.01218,0.0956912,0.443464,0.970917,0.484465,0.865576,0.218501,0.418567,0.903884,0.24359,0.154636,0.248116,0.322113,0.134296,0.233749,0.652234,0.366654,0.806858,0.654968,0.088676,0.200237,0.47379,0.610737,0.969434,0.378413,0.541762,0.56731,0.0306584,0.940237,0.287363,0.771989,0.551279,0.249965,0.551347,0.240713,0.101301,0.638599,0.637721,0.755326,0.558106,0.339042,0.34375,0.661247,0.976562,0.828209,0.890194,0.866617,0.479312,0.443662,0.266583,0.917905,0.356896,0.166631,0.894976,0.561593,0.736345,0.985055,0.807748,0.971249,0.234186,0.449845,0.599291,0.781646,0.606806,0.266125,0.403726,0.730022,0.508641,0.447663,0.0417861,0.632466,0.486262,0.184691,0.19811,0.196487,0.581876,0.805769,0.0938969,0.773545,0.507637,0.156426,0.747929,0.597975,0.674757,0.802945,0.374074,0.46952,0.415546,0.758121,0.00946981,0.400877,0.0885439,|0.271929,0.421698,0.0479342,0.192636,0.081509,0.784801,0.680219,0.178068,0.203176,0.37844,0.326004,0.525064,0.388041,0.39947,0.465346,0.678269,0.15177,0.176525,0.350385,0.707304,0.639817,0.466641,0.534433,0.702579,0.385517,0.802229,0.674974,0.181076,0.694625,0.145174,0.927384,0.189071,0.842357,0.40389,0.00291508,0.015091,0.727675,0.400277,0.224439,0.623417,0.0894818,0.0975093,0.723136,0.0782619,0.129767,0.589978,0.688087,0.862245,0.479928,0.345324,0.646164,0.433544,0.706632,0.762307,0.0089404,0.439831,0.529139,0.504132,0.399735,0.774231,0.512082,0.604271,0.889473,0.0697712,0.843299,0.260255,0.527059,0.747616,0.756172,0.719426,0.441587,0.461326,0.114916,0.137244,0.553101,0.910954,0.127081,0.971269,0.717394,0.0646944,0.944397,0.53104,0.77208,0.44584,0.476909,0.541185,0.461875,0.589165,0.849473,0.0632262,0.450346,0.427089,0.284298,0.831167,0.831214,0.715851,0.539578,0.984885,0.665623,0.978705,0.0978287,0.412737,0.714072,0.853526,0.87506,0.102952,0.387388,0.763999,0.584326,0.734471,0.443373,0.348296,0.861088,0.442726,0.967545,0.526421,0.539992,0.509175,0.615019,0.327789,0.0534484,0.885571,0.362164,0.869316,0.9755,0.380916,0.601906,0.190296,0.5813,0.511227,0.365266,0.0144694,0.65534,0.276958,0.674484,0.304635,0.0997484,0.0209557,0.715745,0.643261,0.614,0.315909,0.332743,0.086244,0.386684,0.193498,0.926393,0.85343,0.643336,0.75136,0.639509,0.32901,0.153532,0.859943,0.988212,0.400845,0.598176,0.991644,0.10828,0.0797932,0.262094,0.921048,0.0496898,0.307632,0.466483,0.468104,0.792624,0.943901,0.612584,0.427477,0.895513,0.0742326,0.393059,0.578887,0.963354,0.374142,0.349083,0.612687,0.135213,0.872525,0.0545993,0.629222,0.122318,0.801899,0.190999,0.867959,0.68382,0.556407,0.282692,0.0980764,0.127221,0.813113,0.251337,0.939219,0.921623,0.244851,0.327477,0.896517,0.0682057,0.382119,0.860678,0.202979,0.71681,0.456163,0.136666,0.71048,0.328198,0.785685,0.117814,0.762703,0.326109,0.601899,0.730538,0.232266,0.946591,0.434297,0.768643,0.577738,0.733081,0.455106,0.0236885,0.320071,0.600317,0.80591,0.647839,0.263086,0.954752,0.94093,0.485357,0.687059,0.192148,0.851543,0.762713,0.112183,0.58553,0.602898,0.761473,0.611038,0.63102,0.948053,0.0935763,0.208133,0.390478,0.220893,0.921961,0.149989,0.0749607,0.25653,0.944922,0.44416,0.221377,0.648027,0.491262,0.928729,0.387016,0.0533492,0.190574,0.642996,0.0782089,0.844184,0.0984281,0.522822,0.528095,0.684234,0.464796,0.0786628,0.135595,0.677584,0.138151,0.156542,0.0253074,0.0648303,0.0402116,0.752705,0.714562,0.201874,0.162971,0.512079,0.763423,0.585938,0.537339,0.447878,0.397053,0.409422,0.888505,0.505841,0.089085,0.238602,0.720493,0.958512,0.757625,0.476522,0.687104,0.817255,0.510498,0.0488757,0.386794,0.772146,0.337728,0.177922,0.0325236,0.50458,0.240735,0.217881,0.186368,0.373495,0.652869,0.676927,0.315171,0.0161435,0.643662,0.431869,0.0831712,0.954467,0.626464,0.346575,0.33023,0.439099,0.372385,0.641286,0.856692,0.594393,0.251713,0.766926,0.774328,0.918426,0.178221,0.312583,0.284602,0.798537,0.537528,0.937675,0.028987,0.710672,0.00801826,0.152659,0.205383,0.796547,0.611382,0.205171,0.960716,0.302715,0.837801,0.572704,0.166699,0.648217,0.308968,0.445665,0.867598,0.373569,0.545481,0.717611,0.15726,0.0895823,0.810999,0.366026,0.870328,0.995051,0.188132,0.528116,0.0280837,0.667119,0.769637,0.952387,0.207959,0.470579,0.453674,0.671146,0.0750201,0.64749,0.25867,0.30759,0.747076,0.292879,0.307029,0.545427,0.994498,0.874402,0.475909,0.0178149,0.736371,0.641187,0.32184,0.347832,0.452434,0.583189,0.652914,0.630476,0.900846,0.575084,0.988113,0.794151,0.391082,0.110178,0.267574,0.0999591,0.470157,0.837871,0.488185,0.210958,0.91984,0.15367,0.151531,0.826882,0.347138,0.780268,0.73017,0.389103,0.051927,0.41639,0.268565,0.413192,0.638715,0.861373,0.979912,0.809808,0.855849,0.180039,0.974105,0.756615,0.247324,0.523069,0.865056,0.398215,0.793737,0.794693,0.868455,0.708737,0.00356901,0.0593381,0.760746,0.00332618,0.509012,0.336469,0.807579,0.496578,0.887662,0.520644,0.0723819,0.682291,0.367051,0.859119,0.869416,0.285281,0.014756,0.533438,0.311589,0.978763,0.569181,0.348613,0.892275,0.352835,0.0293589,0.595013,0.655491,0.43101,0.590719,0.739355,0.589467,0.462544,0.943299,0.508237,0.818823,0.0824862,0.0787351,0.950212,0.788653,0.684221,0.630594,0.737003,0.726509,0.267105,0.0622305,0.17217,0.0990904,0.0635794,0.631144,0.67189,0.284068,0.68189,0.969002,0.729711,0.59086,0.602599,0.1699,0.135025,0.541902,0.535869,0.665079,0.00947857,0.743007,0.955467,0.883628,0.270433,0.588265,0.765227,0.0380575,0.42969,0.0701917,0.599276,0.0245829,0.66686,0.437927,0.946853,0.827633,0.799689,0.735167,0.475005,0.0329591,0.0201858,0.41539,0.540244,0.339187,0.0704323,0.435993,0.936849,0.407173,0.327405,0.991927,0.548861,0.0402235,0.638065,0.858974,0.155956,0.449569,0.0925449,0.739439,0.932558,0.936225,0.262966,0.857463,0.4783,0.167047,0.486497,0.0883414,0.077337,0.421396,0.900706,0.868006,0.252922,0.3057,0.387536,0.413226,0.554548,0.461773,0.79466,0.864923,0.589015,0.167897,0.627105,0.137138,0.588745,0.805196,0.513914,0.313039,0.792863,0.402882,0.463621,0.017058,0.0950822,0.504901,0.938103,0.645658,0.043123,0.232673,0.176604,0.817455,0.239825,0.596656,0.802478,0.00794244,0.932329,0.696712,0.69313,0.562893,0.254389,0.227948,0.309473,0.143238,0.441867,0.274575,0.874201,0.919543,0.337442,0.875849,0.570254,0.454714,0.48419,0.420956,0.524613,0.00287169,0.313557,0.00823724,0.175083,0.207057,0.0133341,0.858551,0.738675,0.836407,0.734875,0.374437,0.237005,0.632104,0.572379,0.603514,0.182363,0.89852,0.340609,0.484488,0.327706,0.0838283,0.490829,0.364422,0.311287,0.432988,0.542584,0.250234,0.483823,0.638164,0.779374,0.206311,0.758384,0.0411181,0.699632,0.0622894,0.340248,0.989512,0.543214,0.494394,0.227534,0.711516,0.320366,0.810063,0.766512,0.205367,0.0200618,0.0363199,0.883926,0.145397,0.579151,0.745093,0.0348179,0.846492,0.149295,0.715792,0.777203,0.130421,0.791513,0.02282,0.172864,0.389821,0.806965,0.941084,0.636974,0.0883082,0.195706,0.436281,0.722254,0.0507234,0.00670201,0.334455,0.181556,0.210011,0.839316,0.0726157,0.589662,0.235158,0.221993,0.403222,0.0302823,0.336466,0.20853,0.582864,0.390552,0.359077,0.271778,0.10822,0.614752,0.715005,0.550778,0.16994,0.640212,0.0506091,0.534134,0.631325,0.547516,0.612702,0.489618,0.993616,0.861569,0.869628,0.364851,0.917982,0.876817,0.885833,0.358235,0.861642,0.4404,0.494755,0.539369,0.574276,0.689679,0.240209,0.632051,0.474134,0.571375,0.709045,0.00756472,0.179966,0.95155,0.879475,0.639485,0.324543,0.781407,0.749858,0.684491,0.324796,0.159969,0.389258,0.0336202,0.31763,0.162134,0.667967,0.339986,0.917762,0.881527,0.546481,0.954794,0.179073,0.955084,0.690119,0.96955,0.203114,0.0170814,0.0410761,0.415117,0.853148,0.244951,0.342364,0.433915,0.300769,0.938039,0.0375437,0.48802,0.17854,0.407423,0.184281,0.824449,0.545198,0.259131,0.7483,0.590575,0.686563,0.895014,0.806512,0.755686,0.0302916,0.451798,0.250373,0.844899,0.00783348,0.782175,0.752525,0.277071,0.765438,0.701326,0.227118,0.89617,0.549274,0.628487,0.512463,0.490305,0.684918,0.898665,0.294624,0.728279,0.425563,0.484845,0.410537,0.0584388,0.958924,0.927301,0.501416,0.71775,0.0383534,0.398656,0.836621,0.239492,0.521031,0.350551,0.907558,0.588849,0.123772,0.548256,0.157053,0.702531,0.952159,0.19427,0.516429,0.864297,0.624741,0.471073,0.54749,0.458796,0.137515,0.514998,0.383866,0.127901,0.845199,0.0875329,0.310613,0.0297453,0.805103,0.686942,0.715284,0.215454,0.581015,0.580009,0.00965112,0.446568,0.75371,0.289611,0.882793,0.101875,0.456689,0.348799,0.322464,0.915949,0.280499,0.473612,0.847697,0.0494183,0.688089,0.0301549,0.831959,0.607578,0.764811,0.606767,0.186693,0.901171,0.0958686,0.139371,0.434434,0.072909,0.34025,0.0480489,0.15036,0.0512727,0.439821,0.992315,0.479829,0.141604,0.901276,0.149622,0.574798,0.876159,0.399363,0.418066,0.284422,0.87305,0.385629,0.118896,0.0872564,0.473489,0.0681398,0.130621,0.21078,0.446817,0.617878,0.803474,0.620686,0.0650447,0.774811,0.523885,0.125942,0.660685,0.624886,0.0667322,0.907525,0.570397,0.268168,0.417873,0.522053,0.78384,0.518837,0.698013,0.209283,0.557518,0.446624,0.453773,0.71894,0.760651,0.0909176,0.832473,0.195861,0.980855,0.674833,0.0589449,0.554637,0.999138,0.11099,0.255838,0.130695,0.766797,0.713279,0.545276,0.286827,0.231915,0.351944,0.342952,0.0971246,0.828036,0.146535,0.44919,0.784745,0.847097,0.475612,0.544588,0.266183,0.482271,0.752833,0.607741,0.836623,0.438847,0.0677266,0.226917,0.799483,0.469543,0.220616,0.949335,0.360033,0.591717,0.788954,0.799396,0.47769,0.770152,0.579969,0.920948,0.283395,0.87664,0.714693,0.5763,0.3382,0.43847,0.56265,0.176934,0.511685,0.268895,0.639354,0.495502,0.869484,0.747224,0.891053,0.14996,0.810044,0.187159,0.686073,0.575029,0.270637,0.192484,0.17828,0.0995911,0.0376529,0.524528,0.518099,0.7821,0.767674,0.501492,0.855045,0.255094,0.80109,0.0983147,0.874974,0.0100729,0.838478,0.497661,0.308943,0.690618,0.300251,0.768049,0.769049,0.135076,0.335485,0.487241,0.553726,0.897733,0.523754,0.209454,0.985829,0.193765,0.359266,0.467358,0.973174,0.343248,0.280242,0.914759,0.0922458,0.631084,0.0637837,0.711877,|0.717624,0.439582,0.6212,0.587436,0.023868,0.709017,0.66223,0.23361,0.348746,0.813096,0.0121411,0.916167,0.350936,0.354999,0.313134,0.0895892,0.810431,0.809003,0.99437,0.410588,0.62267,0.438458,0.236992,0.53021,0.84163,0.0216608,0.672863,0.778674,0.999663,0.959445,0.0822656,0.253281,0.315235,0.836689,0.965062,0.97532,0.182908,0.561868,0.573369,0.0311816,0.851611,0.869978,0.0982,0.656624,0.572075,0.899301,0.144194,0.268409,0.184532,0.566509,0.188981,0.879684,0.810578,0.0504736,0.949183,0.575637,0.605234,0.594649,0.993981,0.58988,0.753081,0.393019,0.0950848,0.283887,0.614554,0.769444,0.0486047,0.897848,0.10562,0.472045,0.112757,0.102711,0.429552,0.561295,0.893152,0.42478,0.0223253,0.0428573,0.23213,0.270853,0.979855,0.293312,0.0210644,0.032183,0.365587,0.122741,0.0611533,0.0876586,0.754797,0.244988,0.78325,0.277045,0.299503,0.697955,0.903993,0.770967,0.600695,0.454495,0.720195,0.909815,0.54746,0.0208935,0.655965,0.964451,0.673712,0.322832,0.760175,0.140294,0.984277,0.827657,0.6534,0.754534,0.438841,0.564015,0.803634,0.78535,0.243371,0.751831,0.805629,0.196467,0.40954,0.0913999,0.160631,0.871688,0.45472,0.127366,0.994403,0.999509,0.939449,0.263894,0.797967,0.845912,0.388553,0.334538,0.163746,0.658091,0.881816,0.349352,0.258216,0.434543,0.677576,0.850482,0.102433,0.902505,0.866235,0.171123,0.146087,0.638014,0.458587,0.467075,0.496039,0.287647,0.94391,0.948693,0.420849,0.12852,0.144364,0.0898927,0.0630689,0.0124123,0.31511,0.410638,0.437244,0.634629,0.949587,0.810539,0.588091,0.381486,0.403769,0.615658,0.0020296,0.0455698,0.998566,0.855899,0.841197,0.304932,0.555424,0.235141,0.508367,0.0382121,0.649768,0.161442,0.826906,0.818076,0.785529,0.440573,0.055444,0.618009,0.66848,0.95237,0.295297,0.428468,0.00550938,0.363216,0.4165,0.427697,0.57206,0.375499,0.884727,0.107372,0.510737,0.440513,0.337048,0.00117594,0.425256,0.155939,0.745719,0.536381,0.12481,0.277277,0.226351,0.611108,0.248115,0.346742,0.394924,0.985558,0.317866,0.884969,0.770195,0.825205,0.803878,0.990414,0.804677,0.788646,0.178966,0.258472,0.568594,0.645882,0.253617,0.731365,0.157652,0.836196,0.719186,0.896696,0.177503,0.23353,0.71054,0.257233,0.388819,0.516781,0.402648,0.518214,0.959152,0.706966,0.716597,0.0413327,0.597091,0.995761,0.404993,0.515374,0.547028,0.770427,0.706721,0.231802,0.790793,0.82287,0.396059,0.522869,0.16903,0.496067,0.747559,0.879803,0.445057,0.316947,0.835117,0.464267,0.00797188,0.338046,0.47725,0.599229,0.173021,0.270975,0.855371,0.609875,0.0674847,0.00724995,0.842389,0.372305,0.492782,0.85954,0.230762,0.833951,0.879061,0.239123,0.29517,0.107826,0.160757,0.853246,0.130179,0.526941,0.756867,0.249234,0.618376,0.313637,0.71672,0.0568078,0.898388,0.7268,0.802684,0.981502,0.175134,0.952435,0.243584,0.750029,0.810147,0.4092,0.56581,0.891641,0.515532,0.563439,0.604832,0.712805,0.312029,0.0697696,0.445412,0.349218,0.774119,0.743532,0.762287,0.560018,0.906771,0.562451,0.440445,0.486956,0.733088,0.918845,0.633878,0.872149,0.681539,0.257711,0.58163,0.222998,0.322743,0.763625,0.0435659,0.865352,0.376836,0.621693,0.800642,0.247637,0.830317,0.710033,0.945155,0.864206,0.0743534,0.61847,0.371527,0.875486,0.92199,0.0214979,0.802714,0.638963,0.923407,0.702836,0.327468,0.990234,0.269044,0.613327,0.577277,0.791453,0.154528,0.839293,0.0577323,0.407733,0.691884,0.652944,0.541851,0.733022,0.46979,0.367638,0.984444,0.0444637,0.504939,0.696657,0.861146,0.168222,0.73398,0.723521,0.688158,0.576163,0.482683,0.672664,0.46599,0.586105,0.540648,0.786751,0.0212322,0.801626,0.58013,0.37885,0.0813484,0.958808,0.306589,0.715507,0.526038,0.664899,0.361256,0.581762,0.913641,0.194178,0.291388,0.619747,0.738764,0.140373,0.678003,0.362789,0.826123,0.318708,0.23255,0.110069,0.945805,0.0280122,0.420182,0.550079,0.486537,0.641285,0.0313936,0.608208,0.532751,0.959217,0.919996,0.628403,0.30951,0.565986,0.708115,0.703161,0.412457,0.687894,0.766521,0.637548,0.945596,0.718982,0.92338,0.738169,0.0534498,0.243134,0.268952,0.85554,0.311516,0.215636,0.764858,0.369618,0.583437,0.761967,0.212145,0.0149553,0.445089,0.433524,0.895452,0.785149,0.0622217,0.484469,0.196619,0.436517,0.7327,0.0911272,0.852717,0.389622,0.110375,0.293144,0.476984,0.355895,0.774413,0.343149,0.0233822,0.201425,0.522758,0.0529742,0.000813663,0.961543,0.667634,0.0268231,0.352184,0.172966,0.456428,0.42149,0.35849,0.0193797,0.69128,0.855451,0.366187,0.324916,0.97,0.264903,0.57401,0.121448,0.756153,0.345736,0.614049,0.980237,0.0539845,0.018945,0.677465,0.240162,0.461124,0.763102,0.675575,0.00222987,0.770949,0.113099,0.111163,0.0554923,0.470715,0.585447,0.0633471,0.868178,0.243154,0.42416,0.61049,0.902482,0.972892,0.599391,0.749677,0.425555,0.789037,0.346525,0.393045,0.556991,0.581718,0.970983,0.376156,0.168582,0.479435,0.633102,0.532073,0.691918,0.999343,0.809836,0.549474,0.640822,0.0211415,0.532653,0.00219953,0.0792816,0.439584,0.286054,0.545924,0.00547874,0.114038,0.243979,0.689462,0.38234,0.65555,0.551373,0.437036,0.166389,0.362738,0.538942,0.927159,0.664269,0.0285513,0.945508,0.307605,0.55203,0.511225,0.288006,0.635323,0.411147,0.534017,0.0048697,0.511647,0.426183,0.867355,0.595291,0.660126,0.793892,0.00550777,0.252239,0.53781,0.649251,0.443396,0.770997,0.592134,0.265561,0.41687,0.297129,0.564097,0.603409,0.209583,0.537051,0.487442,0.939864,0.64947,0.845371,0.950811,0.0138887,0.460752,0.793941,0.901193,0.770677,0.56464,0.699668,0.0249547,0.764376,0.964509,0.238769,0.792587,0.217246,0.641795,0.800624,0.336038,0.681291,0.993541,0.325327,0.607239,0.812332,0.244287,0.804907,0.321316,0.830442,0.278543,0.859982,0.193231,0.205618,0.363899,0.327964,0.315848,0.066412,0.723547,0.257644,0.679925,0.283237,0.101445,0.818362,0.0819982,0.506719,0.530693,0.224189,0.394987,0.448615,0.143903,0.781905,0.11001,0.10768,0.993766,0.212545,0.699038,0.85863,0.674998,0.307009,0.976186,0.342851,0.970095,0.415933,0.0947496,0.10205,0.40764,0.504471,0.149471,0.916411,0.306681,0.651207,0.637874,0.609905,0.39972,0.378056,0.230349,0.100499,0.845946,0.438526,0.529096,0.39539,0.643805,0.102385,0.785269,0.843831,0.222721,0.832788,0.227654,0.464932,0.288603,0.860294,0.457734,0.227205,0.208554,0.342802,0.858969,0.878593,0.252665,0.0937154,0.642492,0.408494,0.105682,0.709159,0.114782,0.622123,0.841192,0.763102,0.238629,0.898476,0.625338,0.751245,0.639399,0.753368,0.896249,0.947728,0.595894,0.203482,0.303361,0.405384,0.708927,0.164458,0.645016,0.142297,0.224381,0.326224,0.717142,0.647808,0.60771,0.447683,0.260353,0.0406375,0.362471,0.650668,0.989645,0.128197,0.819815,0.130506,0.2835,0.395239,0.394387,0.815286,0.331108,0.571447,0.487659,0.888717,0.621765,0.466149,0.125497,0.756044,0.10917,0.643295,0.415631,0.50991,0.103723,0.206277,0.0105561,0.542809,0.146613,0.830597,0.68078,0.26296,0.746981,0.118074,0.192023,0.511499,0.910087,0.764419,0.885704,0.28307,0.536152,0.937655,0.864597,0.497212,0.447009,0.734198,0.752229,0.994447,0.0201644,0.291818,0.750922,0.2401,0.209148,0.312042,0.642157,0.874096,0.891471,0.51427,0.0319735,0.727106,0.413251,0.507493,0.580328,0.602856,0.0880252,0.412385,0.894594,0.825563,0.264647,0.998687,0.301576,0.086263,0.815804,0.963307,0.310017,0.765035,0.490439,0.349089,0.640516,0.674813,0.365244,0.12145,0.347768,0.950446,0.335636,0.098722,0.293378,0.141313,0.872527,0.0658762,0.189705,0.727445,0.211582,0.585562,0.86959,0.944585,0.208923,0.449457,0.467466,0.921855,0.185796,0.777162,0.34748,0.0805582,0.354854,0.282903,0.924742,0.199998,0.697529,0.847288,0.972301,0.810768,0.512205,0.694852,0.231769,0.369733,0.760653,0.557765,0.0994989,0.951864,0.876868,0.674849,0.261848,0.4438,0.458301,0.68097,0.638832,0.393147,0.735085,0.0323057,0.280996,0.101747,0.511309,0.712671,0.024646,0.771495,0.818937,0.517931,0.476083,0.82849,0.630583,0.462687,0.768067,0.962867,0.468834,0.162293,0.0249574,0.788255,0.434406,0.326525,0.895125,0.409966,0.872417,0.783658,0.841625,0.0680651,0.114553,0.6869,0.274691,0.602148,0.783608,0.42446,0.621474,0.62852,0.607593,0.0658324,0.717336,0.960787,0.728968,0.840988,0.0660511,0.0486621,0.96895,0.179918,0.528212,0.186604,0.899591,0.369202,0.351469,0.984654,0.694203,0.0905773,0.757428,0.154809,0.854119,0.176551,0.543826,0.869207,0.544606,0.536464,0.654467,0.810866,0.989883,0.293119,0.662944,0.850048,0.906749,0.801423,0.750134,0.500834,0.961687,0.460235,0.654665,0.409806,0.134538,0.496092,0.744709,0.112013,0.679467,0.784602,0.281394,0.917153,0.555361,0.322672,0.203519,0.847564,0.559634,0.816531,0.270993,0.958301,0.0467018,0.733983,0.632007,0.0418969,0.395525,0.702231,0.518968,0.362459,0.0307708,0.212837,0.0398051,0.833262,0.156717,0.921373,0.948999,0.603375,0.180314,0.168295,0.803195,0.286003,0.177694,0.999564,0.564362,0.977694,0.67126,0.810205,0.337091,0.69528,0.625786,0.880831,0.44394,0.481588,0.716269,0.504146,0.0200776,0.174519,0.387823,0.340754,0.467022,0.707637,0.626945,0.875566,0.906627,0.0891458,0.134985,0.965542,0.0335944,0.417991,0.696708,0.515602,0.61528,0.475222,0.921419,0.741048,0.0689029,0.808249,0.624776,0.440503,0.818962,0.931775,0.996553,0.877308,0.897249,0.403583,0.936573,0.340261,0.349637,0.776159,0.720226,0.744852,|0.193044,0.470191,0.859195,0.965707,0.925672,0.669304,0.974694,0.466694,0.178483,0.368339,0.434206,0.883781,0.50471,0.516813,0.163678,0.632182,0.0814489,0.509084,0.968201,0.324391,0.0137635,0.306001,0.0402023,0.083923,0.1872,0.992398,0.77856,0.586128,0.955764,0.149729,0.319321,0.43669,0.988306,0.485722,0.932764,0.434313,0.696518,0.191504,0.203807,0.209128,0.0823158,0.0944059,0.970023,0.146851,0.203192,0.656264,0.31949,0.378333,0.401541,0.0306373,0.618132,0.326327,0.516042,0.476083,0.00623202,0.705905,0.526063,0.16099,0.569247,0.805833,0.121837,0.255019,0.533723,0.121552,0.0287027,0.571832,0.190572,0.544201,0.488353,0.889897,0.31314,0.437281,0.630178,0.902448,0.25939,0.732466,0.519901,0.631381,0.452697,0.670071,0.635775,0.641519,0.936776,0.063264,0.225286,0.0673489,0.647798,0.483846,0.439219,0.160858,0.815484,0.877171,0.812386,0.604439,0.026653,0.536203,0.883586,0.188999,0.48687,0.778061,0.515248,0.594673,0.600694,0.736769,0.276332,0.0987098,0.751398,0.630413,0.335119,0.350282,0.978699,0.145777,0.407517,0.862889,0.517048,0.191044,0.294799,0.971831,0.65723,0.106009,0.228256,0.804215,0.706575,0.451037,0.410278,0.438401,0.0815437,0.691395,0.135049,0.720396,0.634303,0.833043,0.0833835,0.968324,0.951931,0.573196,0.729053,0.207098,0.538517,0.6478,0.502844,0.48519,0.850742,0.702389,0.331014,0.803461,0.136522,0.454929,0.327669,0.591744,0.160164,0.798764,0.581822,0.777109,0.619822,0.859718,0.722691,0.984201,0.204533,0.908712,0.187708,0.0620375,0.832029,0.0217026,0.37725,0.152343,0.0308411,0.624739,0.709732,0.764628,0.0558754,0.0924935,0.711186,0.207085,0.0877187,0.696126,0.16616,0.901478,0.588609,0.902829,0.325393,0.938385,0.617377,0.109623,0.923114,0.300507,0.328586,0.437693,0.0106233,0.391305,0.14674,0.976741,0.147425,0.177556,0.143851,0.372572,0.842183,0.546655,0.947939,0.0256349,0.928439,0.748083,0.132361,0.779381,0.833312,0.517929,0.653077,0.670366,0.467782,0.00727749,0.636651,0.961186,0.406887,0.439649,0.87183,0.531026,0.166687,0.694011,0.00604188,0.978219,0.974622,0.37847,0.626457,0.921428,0.376284,0.475138,0.297142,0.537951,0.84868,0.341741,0.10765,0.360921,0.0158468,0.456436,0.605058,0.8022,0.276024,0.91856,0.624144,0.317979,0.674808,0.408865,0.0554548,0.0386294,0.785105,0.175875,0.460631,0.0937285,0.379609,0.859104,0.364746,0.545527,0.973149,0.11238,0.572852,0.260725,0.291292,0.0917659,0.726755,0.125676,0.794297,0.401969,0.971956,0.685048,0.613811,0.781868,0.149892,0.15758,0.273339,0.806093,0.497101,0.201389,0.824487,0.123503,0.547629,0.216363,0.672067,0.633502,0.895138,0.4984,0.864396,0.15547,0.0683668,0.748602,0.596762,0.897355,0.85075,0.772401,0.260233,0.0263835,0.31054,0.106431,0.457341,0.883407,0.615241,0.293393,0.945927,0.731243,0.209758,0.720741,0.531868,0.614416,0.237931,0.335489,0.860428,0.629155,0.191671,0.673822,0.668658,0.143887,0.799876,0.905991,0.996789,0.0569418,0.324742,0.763041,0.567013,0.906084,0.412851,0.998013,0.293767,0.891965,0.0386213,0.917435,0.40453,0.83686,0.372914,0.647786,0.436543,0.868331,0.421532,0.0729628,0.0146553,0.515854,0.49403,0.254338,0.659923,0.837574,0.215422,0.184609,0.993939,0.888377,0.374931,0.591709,0.310575,0.495249,0.497562,0.627138,0.564585,0.983403,0.828879,0.0962474,0.345499,0.925251,0.243062,0.0517319,0.26592,0.897021,0.099337,0.160864,0.236523,0.319556,0.282862,0.178046,0.197028,0.409109,0.910943,0.786694,0.953378,0.679685,0.299042,0.810402,0.132969,0.454159,0.0534995,0.422583,0.325891,0.662757,0.51673,0.95912,0.909146,0.730458,0.478815,0.830966,0.426606,0.632261,0.223111,0.726807,0.730519,0.526255,0.214658,0.848791,0.275672,0.444294,0.228662,0.0049898,0.085505,0.476648,0.645407,0.913314,0.981482,0.992559,0.50227,0.432702,0.718948,0.912082,0.871761,0.259859,0.0455244,0.806312,0.224246,0.559759,0.525382,0.764688,0.630082,0.118931,0.100344,0.104759,0.470122,0.836602,0.735608,0.57055,0.200116,0.799854,0.47032,0.899781,0.0606628,0.467727,0.585836,0.980464,0.87101,0.28188,0.920802,0.693046,0.0608925,0.105135,0.355436,0.14398,0.934854,0.0665188,0.701965,0.980904,0.387517,0.6801,0.66099,0.345329,0.51175,0.995,0.571066,0.422888,0.139035,0.844562,0.617924,0.557263,0.444882,0.329543,0.192157,0.263257,0.36485,0.899262,0.517205,0.801608,0.127217,0.963767,0.54975,0.0220029,0.134161,0.0399046,0.395146,0.597816,0.448218,0.155232,0.353269,0.799895,0.389332,0.432584,0.473162,0.421387,0.0457984,0.565037,0.810699,0.0660303,0.537654,0.165214,0.644795,0.461449,0.0929202,0.553387,0.118977,0.285087,0.252544,0.834002,0.463522,0.931785,0.242294,0.352446,0.460522,0.193461,0.215445,0.0865645,0.276345,0.564506,0.759473,0.629269,0.954412,0.778881,0.501605,0.523928,0.266416,0.867921,0.514775,0.708228,0.268388,0.737804,0.978076,0.0226924,0.445725,0.994582,0.512922,0.614549,0.958119,0.719919,0.518392,0.786508,0.801541,0.985577,0.211596,0.798668,0.138578,0.859108,0.36217,0.739607,0.338908,0.680694,0.33163,0.694719,0.884125,0.0869776,0.237672,0.875316,0.00315553,0.706893,0.271303,0.651922,0.391897,0.618736,0.222467,0.24665,0.214734,0.295745,0.779729,0.629788,0.464111,0.561573,0.922684,0.0380912,0.402531,0.846931,0.966093,0.343924,0.114875,0.761832,0.565351,0.817895,0.319916,0.616843,0.243234,0.0721502,0.793306,0.69709,0.880012,0.616505,0.956943,0.430937,0.709484,0.321188,0.961567,0.32019,0.882884,0.978862,0.194967,0.576109,0.335416,0.402489,0.540366,0.759385,0.868511,0.728005,0.767699,0.836862,0.689628,0.739354,0.383788,0.146557,0.46405,0.596224,0.269938,0.283869,0.451537,0.375065,0.911439,0.75894,0.670148,0.818378,0.862476,0.163108,0.151545,0.462529,0.827721,0.133443,0.727432,0.240721,0.0192302,0.0382389,0.0543091,0.167525,0.430666,0.7495,0.240915,0.942832,0.170304,0.98081,0.131544,0.468028,0.527858,0.184874,0.119746,0.516751,0.623154,0.811106,0.00737882,0.190784,0.809588,0.496463,0.116038,0.915056,0.233828,0.231695,0.7271,0.273166,0.848322,0.348665,0.357292,0.374618,0.280961,0.955311,0.632594,0.16595,0.245261,0.368471,0.200355,0.825352,0.819715,0.571058,0.993773,0.411958,0.453509,0.484674,0.504373,0.0700235,0.828342,0.530322,0.122282,0.147861,0.92474,0.892505,0.547715,0.235609,0.392739,0.997844,0.738209,0.170717,0.811195,0.640182,0.967236,0.732746,0.421286,0.64758,0.164649,0.360995,0.750176,0.713763,0.811473,0.947838,0.435625,0.00372612,0.739274,0.148743,0.73531,0.67791,0.768189,0.787381,0.257999,0.796228,0.139992,0.57273,0.509465,0.772003,0.868454,0.477809,0.45896,0.831875,0.330706,0.0540419,0.209858,0.348211,0.905824,0.541083,0.428578,0.128216,0.966867,0.883545,0.730602,0.409838,0.860313,0.875768,0.873186,0.164756,0.0905134,0.553312,0.511684,0.164571,0.653821,0.622807,0.475568,0.410935,0.67238,0.279907,0.0426875,0.0446523,0.274972,0.818071,0.181279,0.240291,0.0678121,0.878032,0.62697,0.319762,0.982807,0.325613,0.393318,0.106155,0.352004,0.410978,0.399924,0.801542,0.559232,0.760047,0.425589,0.245366,0.282816,0.0233545,0.99471,0.324682,0.94085,0.991768,0.581765,0.133791,0.191781,0.195632,0.475281,0.400493,0.260499,0.277664,0.0333327,0.512129,0.810053,0.333936,0.343874,0.561451,0.491105,0.752615,0.179455,0.974776,0.275102,0.713911,0.837944,0.909797,0.67375,0.345478,0.0608079,0.256893,0.0978702,0.603292,0.175559,0.752693,0.952626,0.865064,0.617628,0.108502,0.866399,0.474119,0.158116,0.166167,0.552145,0.508172,0.538875,0.263778,0.702052,0.97435,0.00818408,0.548897,0.276383,0.607437,0.561855,0.46596,0.319205,0.879965,0.30314,0.560579,0.999175,0.132522,0.44967,0.928441,0.0566636,0.931966,0.921131,0.23857,0.0388851,0.250363,0.832995,0.159264,0.483808,0.966767,0.794997,0.602297,0.353717,0.115536,0.771382,0.718959,0.0327771,0.833513,0.184377,0.446612,0.348188,0.382605,0.673868,0.434266,0.790235,0.831914,0.078595,0.406736,0.189094,0.672933,0.510579,0.000135899,0.805758,0.36515,0.333391,0.495727,0.240914,0.142106,0.854022,0.570229,0.349082,0.000295639,0.846061,0.836377,0.993603,0.919571,0.762479,0.00890648,0.868424,0.635779,0.209441,0.408867,0.986179,0.984277,0.496227,0.909287,0.071358,0.305455,0.854752,0.787348,0.949943,0.64475,0.465571,0.126823,0.833585,0.289637,0.544878,0.343088,0.147748,0.652134,0.915734,0.877494,0.241683,0.0880265,0.864852,0.435353,0.499915,0.138204,0.259243,0.425201,0.609508,0.55575,0.0917832,0.127119,0.170026,0.103444,0.832178,0.0443785,0.0246403,0.766105,0.204138,0.630325,0.542075,0.177869,0.359369,0.860432,0.850048,0.826406,0.759455,0.744209,0.510004,0.749716,0.442062,0.748082,0.507175,0.762368,0.340065,0.989937,0.917867,0.382689,0.445867,0.59493,0.385071,0.152027,0.959203,0.236843,0.696355,0.0419731,0.0293582,0.110133,0.305538,0.322641,0.895932,0.143117,0.280394,0.95889,0.493621,0.212272,0.979078,0.345133,0.560333,0.112757,0.907129,0.666745,0.543827,0.887839,0.0661121,0.842613,0.435463,0.570533,0.850117,0.75978,0.19685,0.938384,0.799884,0.181389,0.485914,0.440104,0.233893,0.409826,0.00985187,0.323891,0.524822,0.115603,0.401385,0.839285,0.0281424,0.148697,0.68633,0.896751,0.731588,0.864643,0.720619,0.58431,0.258517,0.293091,0.587786,0.922891,0.311151,0.44464,0.389355,0.563263,0.00910765,0.404539,0.642553,0.78483,0.852019,0.886062,0.354629,0.238488,0.128037,0.949618,0.270433,0.227769,0.867043,0.146284,|0.833475,0.400492,0.841082,0.0544198,0.821195,0.179819,0.883818,0.443682,0.522241,0.194295,0.988989,0.199229,0.683031,0.254108,0.693789,0.240128,0.466088,0.966347,0.060366,0.450906,0.576135,0.494353,0.358936,0.234803,0.0395357,0.237076,0.433949,0.541291,0.692235,0.105817,0.936762,0.197928,0.953014,0.338026,0.881381,0.791596,0.458847,0.720675,0.549553,0.784329,0.0800577,0.765668,0.27551,0.36645,0.843403,0.221534,0.0300615,0.152674,0.943999,0.612324,0.322505,0.115886,0.729145,0.341944,0.256426,0.31469,0.317448,0.529274,0.712637,0.910369,0.213158,0.882736,0.845751,0.807428,0.154914,0.107338,0.0317901,0.953183,0.458283,0.731637,0.136799,0.626532,0.459175,0.249678,0.0234658,0.335841,0.472389,0.0608374,0.622142,0.188746,0.439346,0.634219,0.273654,0.384272,0.896534,0.901887,0.0428132,0.705598,0.275779,0.932999,0.775513,0.968941,0.02526,0.0439897,0.168941,0.766064,0.0516194,0.312935,0.709522,0.041343,0.276008,0.183952,0.265562,0.700206,0.276037,0.909135,0.0786178,0.588579,0.0531125,0.370065,0.954989,0.0348459,0.0941245,0.82177,0.6321,0.932566,0.974548,0.972334,0.105687,0.882488,0.652435,0.435596,0.679559,0.578328,0.820353,0.231862,0.409093,0.970211,0.690641,0.0174097,0.254229,0.727431,0.451625,0.658663,0.991036,0.178642,0.561222,0.188957,0.598638,0.719044,0.696467,0.813251,0.753173,0.958512,0.568308,0.933522,0.094581,0.316078,0.694473,0.20101,0.773574,0.620292,0.666827,0.434142,0.258244,0.581466,0.123447,0.519085,0.815903,0.996581,0.166253,0.427308,0.0260168,0.753924,0.756629,0.198732,0.267547,0.9563,0.57414,0.996069,0.441043,0.359782,0.186049,0.35509,0.548225,0.60019,0.474454,0.58512,0.353454,0.406797,0.150092,0.11751,0.208421,0.303813,0.873214,0.325866,0.92503,0.648201,0.547048,0.868617,0.912362,0.552838,0.716493,0.558641,0.888242,0.592747,0.453924,0.832915,0.526219,0.281357,0.00827008,0.929729,0.99086,0.809492,0.896237,0.563026,0.394467,0.759416,0.15143,0.519022,0.0199365,0.716795,0.69749,0.628574,0.619967,0.96396,0.742798,0.650609,0.000695288,0.439038,0.090725,0.865089,0.259147,0.524131,0.705068,0.00175291,0.699878,0.631917,0.177392,0.230537,0.977904,0.829877,0.266147,0.566628,0.837403,0.479391,0.967748,0.124942,0.166666,0.22903,0.694462,0.71575,0.330652,0.0139385,0.618706,0.387655,0.21992,0.75451,0.412332,0.436094,0.917704,0.328152,0.476722,0.223411,0.252038,0.907153,0.0346367,0.505612,0.035832,0.560394,0.0412111,0.571235,0.573854,0.269931,0.732358,0.861427,0.561662,0.913315,0.427483,0.676685,0.387824,0.388905,0.972183,0.099955,0.840449,0.955463,0.915516,0.105909,0.517594,0.828658,0.784258,0.656278,0.100889,0.486509,0.134639,0.630331,0.888878,0.672008,0.0015105,0.77843,0.020245,0.748388,0.450938,0.790384,0.340086,0.188774,0.06133,0.166478,0.759214,0.943833,0.349005,0.738657,0.577895,0.87167,0.915861,0.859343,0.607817,0.765962,0.815785,0.761154,0.887054,0.744294,0.466268,0.495342,0.832334,0.024489,0.286736,0.84151,0.153152,0.381099,0.339111,0.278712,0.485493,0.671506,0.121387,0.282187,0.165666,0.231018,0.910652,0.348865,0.687062,0.0582127,0.152478,0.351965,0.166417,0.751616,0.726474,0.446519,0.294681,0.161238,0.577477,0.592441,0.582889,0.580442,0.96902,0.613657,0.508423,0.0277861,0.425846,0.847387,0.0492944,0.739542,0.703375,0.94277,0.757661,0.188409,0.629648,0.503016,0.233632,0.630311,0.180005,0.282069,0.84564,0.345966,0.984945,0.490862,0.729347,0.48626,0.678282,0.815226,0.995985,0.148721,0.0253134,0.52118,0.969944,0.929168,0.380307,0.51697,0.964957,0.17421,0.458034,0.104218,0.216122,0.63488,0.843783,0.0302073,0.360032,0.51449,0.580189,0.644433,0.566209,0.835621,0.269855,0.916001,0.591365,0.607983,0.308757,0.973868,0.925699,0.373731,0.290721,0.337094,0.489483,0.544004,0.0109117,0.859788,0.600054,0.524042,0.631008,0.887556,0.0435316,0.280544,0.0480675,0.303323,0.9147,0.489386,0.242392,0.907477,0.783389,0.809781,0.0759647,0.166235,0.882114,0.837325,0.0740295,0.597563,0.837864,0.746977,0.556844,0.756825,0.471411,0.414838,0.688395,0.196471,0.595197,0.839681,0.482119,0.217883,0.587769,0.274328,0.246335,0.335305,0.231356,0.515724,0.193133,0.0741323,0.913596,0.327653,0.314691,0.061163,0.721822,0.855002,0.692754,0.637514,0.629799,0.27296,0.55456,0.0959292,0.995327,0.050316,0.693305,0.55732,0.0794914,0.703125,0.508194,0.171483,0.665659,0.612892,0.25715,0.0703084,0.0311825,0.848521,0.959268,0.0707437,0.743808,0.906303,0.655749,0.629734,0.975996,0.632026,0.987611,0.764921,0.41847,0.985016,0.941478,0.905232,0.483219,0.562178,0.865767,0.150915,0.926449,0.551549,0.478761,0.0810989,0.187246,0.753747,0.102076,0.552768,0.639617,0.813805,0.509038,0.539839,0.682308,0.442897,0.0183781,0.66707,0.247457,0.381037,0.200493,0.924899,0.0549319,0.366307,0.499422,0.0874872,0.438674,0.981278,0.70605,0.968858,0.335068,0.549005,0.516659,0.169929,0.664027,0.0638068,0.785075,0.105798,0.880571,0.911204,0.952255,0.0603087,0.524707,0.0875571,0.125676,0.156678,0.553775,0.141553,0.583274,0.261528,0.166662,0.770952,0.774082,0.0266639,0.891289,0.981093,0.90486,0.288617,0.327065,0.811283,0.144984,0.357624,0.788078,0.0446901,0.235653,0.17582,0.106154,0.155185,0.665387,0.679092,0.0813926,0.798148,0.968364,0.620189,0.817586,0.906578,0.625676,0.124714,0.958998,0.222624,0.246512,0.525956,0.578368,0.0730531,0.772538,0.157672,0.609046,0.106981,0.469346,0.397169,0.111399,0.0301563,0.276085,0.416599,0.763464,0.485529,0.913128,0.0120624,0.897446,0.850995,0.744146,0.770055,0.652473,0.56038,0.0743875,0.473273,0.107654,0.246501,0.325398,0.37585,0.872978,0.778197,0.709616,0.346844,0.0687771,0.929932,0.106631,0.47423,0.841311,0.527892,0.716895,0.311891,0.64999,0.623253,0.636368,0.249154,0.141485,0.775381,0.857757,0.00272691,0.695907,0.144427,0.106174,0.92427,0.0420452,0.67515,0.493364,0.188356,0.600584,0.365739,0.776704,0.476895,0.491083,0.0149179,0.728682,0.0612465,0.00235134,0.122267,0.858951,0.610551,0.103164,0.518849,0.488038,0.105603,0.863814,0.635423,0.289711,0.0163198,0.790528,0.0691665,0.279732,0.595583,0.189902,0.823213,0.457225,0.874129,0.0494407,0.641342,0.174015,0.859396,0.433502,0.916474,0.650613,0.601305,0.474408,0.781159,0.355439,0.385765,0.538026,0.200585,0.293329,0.158019,0.659158,0.630827,0.0543729,0.0104844,0.883839,0.998181,0.343569,0.818671,0.70583,0.321526,0.770643,0.153165,0.795082,0.873702,0.161087,0.0483342,0.322623,0.118576,0.308103,0.0494471,0.981506,0.695195,0.783978,0.903486,0.531379,0.543887,0.316091,0.958659,0.256172,0.109864,0.69553,0.632854,0.782645,0.887327,0.260466,0.422077,0.241372,0.486538,0.420134,0.466203,0.0406187,0.999818,0.830104,0.26817,0.961444,0.76115,0.255656,0.855657,0.931954,0.128546,0.983634,0.452761,0.503857,0.404893,0.228349,0.994802,0.626501,0.271747,0.484805,0.745416,0.10323,0.470384,0.936476,0.738105,0.0609523,0.641807,0.359843,0.0707374,0.0986766,0.0671099,0.684123,0.505331,0.779566,0.223667,0.213382,0.791314,0.237467,0.549752,0.734783,0.78957,0.531908,0.397043,0.443654,0.831784,0.589018,0.494061,0.456865,0.923896,0.62018,0.282748,0.0657706,0.451175,0.762942,0.649412,0.604028,0.871616,0.274965,0.931202,0.0812021,0.336311,0.706378,0.787226,0.435962,0.573232,0.0752481,0.0832565,0.75777,0.490749,0.934318,0.540179,0.380472,0.765967,0.0758308,0.535514,0.761471,0.428018,0.0998527,0.528286,0.174702,0.486824,0.0154867,0.309106,0.967082,0.124642,0.0912148,0.900014,0.568435,0.0280995,0.389774,0.0775811,0.034246,0.147078,0.765411,0.728338,0.900444,0.55835,0.487426,0.119217,0.3833,0.494347,0.560185,0.270108,0.906978,0.845741,0.922988,0.0447033,0.822115,0.318281,0.369454,0.730275,0.726839,0.266767,0.201371,0.886386,0.10404,0.450825,0.61206,0.0881881,0.331755,0.157309,0.978639,0.153393,0.114409,0.00508618,0.489633,0.461955,0.965034,0.000449121,0.289536,0.947128,0.400108,0.00180644,0.911297,0.299863,0.952448,0.487924,0.426885,0.958315,0.862881,0.89549,0.231745,0.102167,0.201263,0.61079,0.809963,0.074577,0.658581,0.908438,0.640304,0.0644454,0.978803,0.0424605,0.403462,0.251271,0.517555,0.666608,0.910713,0.586682,0.168655,0.899341,0.0357139,0.0714535,0.270675,0.738,0.0362682,0.0957146,0.611327,0.958654,0.74556,0.927704,0.627245,0.459392,0.680353,0.844303,0.714224,0.580029,0.054814,0.674529,0.335462,0.0967737,0.167969,0.00467753,0.506862,0.777372,0.563155,0.475622,0.56714,0.74285,0.14684,0.287087,0.688845,0.325094,0.233096,0.00744092,0.0380905,0.905544,0.632326,0.460423,0.366461,0.70461,0.441841,0.77479,0.437235,0.119423,0.762102,0.0137148,0.309553,0.506003,0.69998,0.941743,0.230769,0.406982,0.820347,0.925419,0.570645,0.442809,0.237599,0.594483,0.750909,0.217991,0.94173,0.86273,0.173606,0.00764716,0.211373,0.804127,0.0760761,0.064694,0.425205,0.653758,0.919177,0.412432,0.718702,0.77197,0.357193,0.846605,0.0811941,0.679088,0.439753,0.787845,0.211933,0.523771,0.576124,0.116555,0.982626,0.0696217,0.307954,0.0344184,0.757478,0.109989,0.732549,0.245857,0.0588025,0.620343,0.945362,0.576726,0.0452278,0.33898,0.511215,0.956316,0.898254,0.4127,0.139751,0.20254,0.284762,0.521891,0.540595,0.627071,0.407989,0.607049,0.81359,0.488097,0.665915,0.976503,0.541565,0.805986,0.230405,0.874512,0.756818,0.819542,0.378787,0.520591,0.383655,0.934003,0.15007,0.0463365,0.685476,0.915412,0.618815,0.351288,|0.448858,0.886092,0.956919,0.592926,0.84805,0.807706,0.328617,0.487762,0.91017,0.488792,0.743977,0.669343,0.938951,0.91396,0.074221,0.20699,0.623073,0.0800825,0.843985,0.584568,0.564807,0.799028,0.95254,0.159029,0.898835,0.964172,0.0515386,0.617235,0.737956,0.699185,0.441214,0.982613,0.509042,0.690917,0.198217,0.342039,0.573338,0.307187,0.497254,0.0277465,0.680213,0.433335,0.42917,0.0566638,0.255861,0.497591,0.308786,0.474403,0.837821,0.158937,0.593286,0.710105,0.651756,0.0207779,0.790442,0.360078,0.168095,0.484972,0.535436,0.836521,0.0523483,0.397882,0.138656,0.424134,0.055843,0.548999,0.824613,0.587252,0.00580245,0.638786,0.514874,0.0513653,0.0695442,0.593985,0.169456,0.414735,0.0527235,0.366659,0.957756,0.193814,0.587101,0.226578,0.139817,0.109926,0.0937361,0.0793433,0.992929,0.783835,0.90707,0.452293,0.66478,0.69616,0.663743,0.538076,0.69995,0.126858,0.90554,0.926476,0.729097,0.583767,0.361021,0.467328,0.17068,0.546445,0.366544,0.694814,0.732432,0.252245,0.701729,0.192735,0.406338,0.852649,0.283656,0.474844,0.751954,0.487344,0.73528,0.208264,0.614762,0.313548,0.259688,0.0343777,0.228147,0.0360895,0.974294,0.469655,0.968477,0.187012,0.338371,0.709885,0.0410019,0.18911,0.391901,0.0611346,0.10039,0.462002,0.48875,0.360659,0.547474,0.0349673,0.181391,0.947656,0.59128,0.310542,0.440072,0.31109,0.0843952,0.922681,0.915,0.673134,0.753773,0.138491,0.856659,0.783388,0.141363,0.619099,0.602149,0.214045,0.961923,0.898715,0.542997,0.41527,0.267759,0.424632,0.858258,0.11104,0.846125,0.347775,0.873833,0.235602,0.963349,0.59113,0.763611,0.299906,0.428494,0.749482,0.918282,0.974615,0.115286,0.312772,0.613732,0.954005,0.854194,0.173412,0.999817,0.562263,0.107296,0.260174,0.515998,0.264768,0.342718,0.946358,0.0040158,0.117639,0.109322,0.503836,0.507951,0.841092,0.697465,0.689748,0.121363,0.588649,0.222871,0.847191,0.128375,0.958575,0.160452,0.110632,0.587013,0.935394,0.844873,0.12945,0.857748,0.46542,0.543709,0.157976,0.550601,0.790348,0.786656,0.970141,0.506994,0.215696,0.885241,0.225287,0.473513,0.0828095,0.736465,0.977271,0.181251,0.134068,0.14005,0.165887,0.302304,0.630969,0.390825,0.0608135,0.880338,0.602838,0.133857,0.0750078,0.815295,0.688032,0.716813,0.279511,0.199619,0.777938,0.422483,0.45157,0.220224,0.95633,0.653341,0.632051,0.916927,0.104024,0.820617,0.0138397,0.372405,0.470687,0.720205,0.116536,0.870249,0.211458,0.447758,0.743059,0.959975,0.51217,0.84339,0.371648,0.413925,0.992586,0.487855,0.612534,0.077036,0.0244085,0.959458,0.210411,0.897052,0.481099,0.319177,0.565245,0.442763,0.311454,0.826823,0.707047,0.440218,0.691295,0.73435,0.909079,0.831241,0.831662,0.240652,0.148671,0.60003,0.0700214,0.990523,0.652332,0.135779,0.863462,0.856088,0.432245,0.906864,0.747185,0.250503,0.577254,0.583324,0.80434,0.148016,0.640018,0.444615,0.302967,0.253237,0.468917,0.965955,0.130915,0.265402,0.0150396,0.396622,0.274412,0.386717,0.483406,0.895799,0.276997,0.904673,0.938908,0.929237,0.664511,0.548224,0.988077,0.90483,0.668618,0.492972,0.648316,0.276205,0.0743806,0.66298,0.357991,0.920427,0.623072,0.0249546,0.748118,0.0867016,0.0228193,0.364844,0.659294,0.320655,0.649386,0.33702,0.884582,0.881961,0.658308,0.17452,0.0913412,0.696515,0.0427403,0.682543,0.0582558,0.688058,0.880037,0.272646,0.649909,0.117485,0.462644,0.618104,0.157836,0.681946,0.00801665,0.390461,0.583597,0.365803,0.971432,0.421104,0.514154,0.310707,0.739823,0.62407,0.31779,0.30272,0.682462,0.797248,0.342101,0.100089,0.0414907,0.148789,0.353405,0.89704,0.0979559,0.599128,0.528962,0.844165,0.872877,0.878625,0.862298,0.368008,0.545663,0.265586,0.860106,0.865999,0.0494843,0.306767,0.448287,0.0603338,0.608115,0.252186,0.787881,0.223886,0.752265,0.199288,0.0526881,0.409988,0.39002,0.899148,0.52176,0.109585,0.490987,0.784288,0.121177,0.18205,0.594603,0.793118,0.48123,0.636513,0.431038,0.917495,0.44332,0.417342,0.531407,0.497102,0.619615,0.805064,0.986096,0.814447,0.0131176,0.404476,0.00267595,0.279666,0.80539,0.422198,0.0816209,0.667936,0.326746,0.937631,0.0964289,0.639792,0.276726,0.0411354,0.184781,0.439605,0.0241385,0.128732,0.830844,0.4335,0.00405788,0.639853,0.324913,0.410709,0.918275,0.872997,0.079456,0.612893,0.852587,0.622603,0.156125,0.723104,0.530981,0.0514852,0.150172,0.297781,0.853245,0.726222,0.0316596,0.946783,0.936122,0.369088,0.632154,0.297478,0.253266,0.855729,0.387295,0.0134624,0.728973,0.807784,0.0138028,0.0550812,0.481936,0.464326,0.873968,0.334963,0.71442,0.160606,0.800755,0.154035,0.0808619,0.516708,0.124986,0.154848,0.917736,0.266329,0.678701,0.807879,0.521731,0.634206,0.68313,0.950203,0.296654,0.235949,0.699604,0.634576,0.966697,0.734239,0.2653,0.0605048,0.324819,0.00428671,0.700778,0.38371,0.882622,0.585318,0.711077,0.588972,0.649336,0.766165,0.0794062,0.311061,0.130777,0.933714,0.580841,0.938433,0.0838333,0.224838,0.886705,0.600952,0.985785,0.127178,0.88288,0.645028,0.209927,0.620727,0.553538,0.978387,0.619975,0.978149,0.8549,0.994051,0.688755,0.584626,0.739452,0.468097,0.603974,0.423009,0.480788,0.00863558,0.847271,0.970641,0.670337,0.780656,0.0417262,0.248809,0.307812,0.259768,0.699142,0.425141,0.704341,0.289295,0.798484,0.214917,0.221515,0.118675,0.872692,0.0610813,0.292828,0.927751,0.161873,0.773154,0.038157,0.411036,0.313937,0.741231,0.572478,0.442104,0.666753,0.688626,0.706229,0.250852,0.688444,0.933325,0.0188318,0.598304,0.277316,0.874334,0.94183,0.709808,0.222964,0.598959,0.667764,0.440627,0.9885,0.65439,0.128689,0.461493,0.679136,0.0375133,0.928092,0.874221,0.307123,0.597389,0.629938,0.253848,0.778352,0.898618,0.844239,0.546861,0.357237,0.527428,0.16919,0.304656,0.954715,0.0590744,0.525156,0.402819,0.097375,0.0835425,0.0308605,0.757803,0.0221909,0.334127,0.868193,0.48767,0.598924,0.807109,0.503888,0.678988,0.190998,0.213712,0.0563856,0.256437,0.440146,0.856555,0.852681,0.0415329,0.508393,0.169785,0.587464,0.251364,0.851392,0.105165,0.271902,0.19141,0.882992,0.933613,0.390172,0.496201,0.159652,0.0706446,0.869152,0.971994,0.795871,0.312697,0.671351,0.121224,0.345574,0.701418,0.0980392,0.886942,0.771186,0.0357644,0.0289932,0.656955,0.234721,0.691656,0.104666,0.286916,0.808791,0.470786,0.11503,0.7909,0.150849,0.21907,0.706879,0.976361,0.0809513,0.887278,0.985156,0.175477,0.272807,0.0307691,0.89305,0.418929,0.726501,0.43114,0.95292,0.911496,0.0759076,0.663473,0.812318,0.908116,0.287033,0.802569,0.00621998,0.641761,0.582246,0.0590394,0.160277,0.14752,0.505421,0.0510407,0.276527,0.622896,0.193086,0.437041,0.880724,0.808662,0.839804,0.204175,0.678424,0.175914,0.424198,0.042275,0.361254,0.102559,0.303797,0.649456,0.466912,0.518223,0.483585,0.197784,0.526606,0.70305,0.974004,0.939132,0.0256616,0.438107,0.201521,0.539145,0.0544564,0.185873,0.474637,0.887251,0.956968,0.0484016,0.10243,0.301142,0.297461,0.262313,0.166499,0.236089,0.924735,0.0199498,0.872837,0.257483,0.299209,0.618502,0.674348,0.333553,0.182179,0.452918,0.72255,0.0482123,0.753549,0.0391157,0.329189,0.130339,0.854041,0.0981357,0.840153,0.896866,0.887718,0.839304,0.0159476,0.6731,0.401628,0.694586,0.321047,0.763799,0.495075,0.868892,0.344414,0.283449,0.744875,0.825317,0.147695,0.458372,0.411679,0.658478,0.750594,0.403717,0.171251,0.551503,0.738594,0.687721,0.312261,0.78271,0.0188479,0.19253,0.886727,0.87033,0.184567,0.0923897,0.804782,0.819567,0.635352,0.0298946,0.997488,0.880632,0.477659,0.630795,0.500564,0.229412,0.835652,0.06822,0.112817,0.176444,0.43516,0.743891,0.96666,0.355062,0.141782,0.125252,0.12662,0.726857,0.816674,0.536893,0.103575,0.101845,0.806699,0.0157859,0.182193,0.261997,0.415986,0.0415881,0.842127,0.696418,0.410896,0.49424,0.0629503,0.189197,0.213875,0.869729,0.35935,0.170585,0.149235,0.512418,0.618469,0.474802,0.649443,0.242471,0.120079,0.0415696,0.821818,0.170446,0.0824097,0.0380942,0.468704,0.475999,0.248768,0.0605239,0.519975,0.549231,0.170413,0.15234,0.691699,0.167371,0.22327,0.528928,0.809649,0.0588174,0.597745,0.625195,0.38802,0.663674,0.0239272,0.136847,0.912125,0.918081,0.0889459,0.125872,0.396756,0.85731,0.604183,0.536634,0.130351,0.461045,0.212408,0.486138,0.0856773,0.686062,0.616026,0.0935943,0.766032,0.56856,0.813619,0.858634,0.474969,0.95116,0.87942,0.912302,0.117664,0.319196,0.0662849,0.188462,0.695926,0.319332,0.833717,0.571649,0.269529,0.804602,0.196708,0.447816,0.589098,0.898799,0.889754,0.915595,0.550278,0.404535,0.420288,0.56633,0.666984,0.793635,0.618432,0.951698,0.702548,0.188086,0.237257,0.999697,0.910384,0.57402,0.507647,0.418227,0.0457454,0.407273,0.697388,0.245208,0.141381,0.442595,0.0475552,0.253271,0.908708,0.319442,0.215785,0.0344606,0.0586888,0.197741,0.98933,0.630945,0.293454,0.36538,0.166137,0.850843,0.961485,0.516689,0.404271,0.293632,0.473734,0.0752009,0.550792,0.877156,0.59182,0.173905,0.138019,0.303152,0.950663,0.396992,0.561847,0.489852,0.0414087,0.300557,0.209507,0.626388,0.611048,0.645448,0.324354,0.604103,0.723243,0.923038,0.747971,0.553579,0.980087,0.301639,0.362049,0.749283,0.865304,0.926758,0.146806,0.953689,0.723805,0.488349,0.959571,0.142695,0.346136,0.329076,0.339172,0.364834,0.0474578,0.512575,0.313293,0.257877,0.413857,0.612941,0.174903,0.442182,0.270059,|0.42917,0.292368,0.214344,0.329002,0.345325,0.57988,0.243201,0.87707,0.476849,0.79,0.742029,0.206532,0.148534,0.0321849,0.100151,0.873813,0.64798,0.825328,0.690369,0.613213,0.831462,0.475879,0.839133,0.474306,0.212866,0.11909,0.864544,0.376634,0.47409,0.588295,0.582258,0.0903371,0.593066,0.888195,0.592527,0.834341,0.42395,0.306915,0.219519,0.841181,0.115069,0.762959,0.751972,0.60874,0.56201,0.0379658,0.44949,0.115661,0.506524,0.34291,0.305166,0.256123,0.554131,0.274093,0.472403,0.583323,0.464982,0.599682,0.924761,0.17567,0.301422,0.451774,0.762332,0.605976,0.427989,0.428392,0.382907,0.427189,0.192835,0.741478,0.139056,0.0374985,0.91581,0.196297,0.695065,0.779921,0.27145,0.238453,0.198283,0.345348,0.259128,0.0488692,0.657038,0.0649892,0.586547,0.261669,0.666884,0.906285,0.367472,0.893798,0.965425,0.490483,0.487936,0.0613796,0.58301,0.309438,0.872149,0.958738,0.598136,0.735957,0.267888,0.881922,0.989829,0.754871,0.211403,0.848621,0.181541,0.915462,0.159231,0.117928,0.189266,0.82097,0.433551,0.0856745,0.277091,0.21928,0.209403,0.476326,0.579126,0.411263,0.549802,0.676254,0.224268,0.932926,0.308733,0.467916,0.520916,0.481516,0.573547,0.206203,0.00190258,0.999562,0.736366,0.689341,0.721541,0.393442,0.668656,0.239095,0.649758,0.0173576,0.984053,0.989273,0.121627,0.874625,0.122688,0.676465,0.405915,0.550588,0.0637579,0.978251,0.815888,0.784649,0.150718,0.634632,0.652796,0.175158,0.196426,0.0630437,0.256815,0.255294,0.474936,0.599174,0.036938,0.508618,0.16404,0.891501,0.847188,0.0647667,0.377901,0.40084,0.756987,0.518464,0.906155,0.368201,0.190955,0.616033,0.926131,0.318223,0.364154,0.749823,0.651754,0.375425,0.232285,0.892779,0.783324,0.421131,0.871264,0.255088,0.920744,0.0905356,0.00900388,0.942948,0.519349,0.492303,0.515989,0.939822,0.233461,0.259408,0.00594139,0.660529,0.762475,0.119801,0.26471,0.195481,0.215419,0.0532515,0.0365047,0.0596855,0.157283,0.452761,0.213971,0.886195,0.152383,0.699575,0.615546,0.805814,0.85528,0.322837,0.426776,0.075078,0.154536,0.844811,0.268046,0.75755,0.96007,0.67533,0.423245,0.531571,0.536767,0.943074,0.655843,0.854191,0.407594,0.491349,0.851697,0.946908,0.098294,0.154425,0.540545,0.535104,0.774657,0.344209,0.26717,0.0889528,0.129458,0.239541,0.316416,0.633349,0.831865,0.650175,0.0952394,0.0990468,0.66463,0.646301,0.798583,0.0639606,0.862961,0.520321,0.493063,0.0547985,0.251031,0.819659,0.770188,0.345973,0.215301,0.934199,0.0784768,0.779735,0.758708,0.234949,0.174873,0.993586,0.482438,0.553022,0.562132,0.126975,0.851961,0.294756,0.883432,0.0130837,0.870405,0.565466,0.00450999,0.254149,0.206861,0.928752,0.204152,0.795008,0.648807,0.766365,0.168849,0.381131,0.611161,0.646889,0.0601596,0.142725,0.143935,0.80011,0.0529714,0.265893,0.71934,0.100845,0.361834,0.717478,0.633473,0.76118,0.127528,0.268327,0.461045,0.993447,0.30924,0.698184,0.699512,0.184511,0.740163,0.040998,0.293779,0.910223,0.514601,0.598037,0.368926,0.100907,0.3348,0.342661,0.87133,0.601956,0.964215,0.662166,0.939518,0.5203,0.714504,0.867957,0.466669,0.917126,0.0471608,0.243214,0.868577,0.491686,0.314902,0.456598,0.612227,0.658302,0.152804,0.265285,0.0102496,0.18293,0.651073,0.63489,0.235844,0.162122,0.498293,0.561886,0.0623589,0.635203,0.126902,0.374782,0.98225,0.407314,0.880628,0.114958,0.213257,0.474274,0.872835,0.861935,0.940993,0.0240002,0.83014,0.20928,0.849095,0.416217,0.43902,0.540826,0.208555,0.834075,0.553486,0.918635,0.482382,0.431242,0.649195,0.34503,0.0762752,0.14492,0.609557,0.737449,0.350668,0.581904,0.838366,0.830896,0.146239,0.703862,0.853893,0.834906,0.455499,0.480334,0.147413,0.877183,0.872568,0.232096,0.830367,0.531754,0.053022,0.730922,0.125866,0.959715,0.631861,0.0228571,0.798618,0.964433,0.683145,0.85214,0.270425,0.723125,0.974826,0.088945,0.364727,0.921934,0.841703,0.639749,0.758386,0.864916,0.468138,0.807953,0.861294,0.91339,0.168816,0.161189,0.150249,0.203771,0.166,0.117507,0.385628,0.795464,0.102315,0.493012,0.240125,0.840764,0.882641,0.358924,0.647556,0.42325,0.093193,0.429456,0.625509,0.12267,0.645931,0.918392,0.104323,0.192608,0.264594,0.411672,0.3645,0.263098,0.983572,0.134807,0.05035,0.47461,0.560849,0.411172,0.349282,0.576563,0.877754,0.117314,0.06582,0.212642,0.0777026,0.613404,0.485014,0.740022,0.885442,0.94179,0.890881,0.255935,0.0908396,0.89145,0.976975,0.204433,0.405249,0.41118,0.757817,0.348702,0.0704332,0.242328,0.190327,0.365032,0.765271,0.111354,0.931797,0.733796,0.540908,0.811914,0.0597011,0.503473,0.31811,0.0120376,0.690439,0.338308,0.87381,0.288455,0.223084,0.854519,0.730561,0.760331,0.537037,0.0670177,0.13867,0.483118,0.0746377,0.726296,0.443562,0.0207648,0.647076,0.650514,0.753052,0.0161452,0.511658,0.931239,0.866069,0.602831,0.525235,0.957538,0.870931,0.755349,0.00505805,0.287956,0.892069,0.590517,0.0926144,0.492064,0.939715,0.476309,0.447907,0.955972,0.690811,0.197044,0.874555,0.97444,0.722347,0.818233,0.388106,0.306844,0.290419,0.540526,0.204125,0.360839,0.430199,0.518214,0.714781,0.731112,0.391297,0.666185,0.496776,0.569957,0.5224,0.521457,0.742291,0.534302,0.814428,0.42932,0.460413,0.795332,0.50792,0.392418,0.535047,0.241037,0.562747,0.628677,0.698119,0.765933,0.376926,0.692876,0.438479,0.992816,0.53889,0.190926,0.862154,0.688108,0.116038,0.56286,0.156518,0.618781,0.511368,0.422389,0.792999,0.186821,0.594955,0.952857,0.299875,0.194203,0.2949,0.0036037,0.291026,0.597202,0.907726,0.447047,0.173628,0.194939,0.743197,0.954839,0.032659,0.266498,0.576006,0.79412,0.272246,0.792865,0.243098,0.513528,0.801847,0.497889,0.479985,0.796891,0.741969,0.138391,0.166724,0.323287,0.865874,0.468047,0.760299,0.237885,0.650124,0.407779,0.301179,0.322081,0.754226,0.306256,0.47129,0.274931,0.480723,0.533906,0.000201046,0.804942,0.836231,0.453706,0.641038,0.101359,0.206549,0.326037,0.715067,0.488791,0.497397,0.232051,0.379622,0.974979,0.0811037,0.681046,0.673325,0.675858,0.534565,0.911245,0.00512749,0.864283,0.176793,0.467612,0.2227,0.104903,0.538015,0.617462,0.346428,0.0112333,0.435286,0.483174,0.96628,0.221418,0.8866,0.242809,0.0902207,0.986834,0.997689,0.841094,0.682995,0.745115,0.86552,0.257477,0.149369,0.108241,0.554327,0.257478,0.255306,0.0647718,0.596142,0.567995,0.11073,0.445458,0.348522,0.02303,0.882441,0.131355,0.00413144,0.28945,0.266761,0.72114,0.883845,0.863129,0.662419,0.938858,0.392115,0.989239,0.223951,0.844869,0.635437,0.865616,0.548982,0.580781,0.147294,0.737198,0.120715,0.392201,0.188577,0.723433,0.389846,0.063799,0.369932,0.981755,0.307978,0.36908,0.523169,0.758554,0.388781,0.557222,0.965206,0.0379226,0.661589,0.995975,0.670578,0.958945,0.454013,0.630372,0.27183,0.375876,0.606073,0.467932,0.0512842,0.928379,0.978232,0.606046,0.680917,0.981569,0.188283,0.157394,0.42964,0.696235,0.585927,0.236505,0.76916,0.572969,0.654004,0.873047,0.138569,0.60016,0.287499,0.923956,0.804941,0.724045,0.392743,0.587042,0.13692,0.58425,0.56876,0.82544,0.928982,0.962469,0.620603,0.876256,0.271565,0.996174,0.00452679,0.512189,0.341451,0.889049,0.0646525,0.635534,0.0340715,0.402246,0.205712,0.305993,0.910179,0.95518,0.0160077,0.143696,0.8978,0.328973,0.85095,0.25444,0.22183,0.260249,0.381083,0.501802,0.391921,0.375313,0.313234,0.498619,0.157897,0.593787,0.515623,0.422582,0.165603,0.778552,0.346198,0.428618,0.255832,0.197307,0.160056,0.633983,0.00857848,0.485405,0.342678,0.0628744,0.123975,0.538088,0.432253,0.691124,0.684703,0.621171,0.132309,0.81573,0.851122,0.878767,0.80808,0.0097152,0.783055,0.0679475,0.264076,0.519346,0.455892,0.367567,0.324793,0.674804,0.859833,0.00967872,0.0984977,0.0175991,0.506415,0.681715,0.758753,0.507036,0.398303,0.557717,0.0452821,0.265228,0.966424,0.516917,0.490702,0.120343,0.931927,0.360539,0.0265061,0.967173,0.623666,0.757558,0.133069,0.606091,0.848371,0.357031,0.373796,0.171038,0.590709,0.279289,0.933204,0.133839,0.243518,0.90951,0.377462,0.948327,0.494905,0.637999,0.807519,0.900329,0.0457378,0.917911,0.59576,0.129187,0.339927,0.903058,0.668554,0.465199,0.487286,0.913694,0.680511,0.806167,0.426916,0.58153,0.632085,0.890493,0.0545896,0.440372,0.702667,0.251096,0.602222,0.957342,0.0842183,0.627581,0.692426,0.524007,0.389313,0.409418,0.139422,0.793873,0.0634688,0.37457,0.156221,0.740849,0.706687,0.147372,0.832093,0.60952,0.224102,0.0555652,0.418191,0.730742,0.562812,0.488071,0.538552,0.918325,0.168072,0.351157,0.738122,0.767253,0.502676,0.770617,0.691397,0.491783,0.376089,0.565307,0.980452,0.417559,0.27863,0.0427372,0.884525,0.355812,0.167247,0.837572,0.505129,0.426494,0.34744,0.904947,0.825018,0.721079,0.401341,0.855464,0.594345,0.751198,0.794586,0.246606,0.894719,0.935491,0.241874,0.442629,0.320427,0.745539,0.484331,0.357096,0.68401,0.482533,0.420174,0.709311,0.975388,0.332645,0.856313,0.740149,0.670839,0.873157,0.258597,0.395912,0.937057,0.868857,0.398238,0.476006,0.253525,0.122078,0.659427,0.900099,0.466728,0.661285,0.945682,0.81363,0.0345058,0.171238,0.481375,0.566616,0.123264,0.309542,0.414443,0.448739,0.999006,0.471779,0.781751,0.999616,0.550933,0.721771,0.474035,0.14267,0.828162,0.723343,0.623445,0.359355,0.53805,0.840281,0.929279,0.428823,0.78877,0.670864,|0.93831,0.769317,0.314658,0.0325902,0.215121,0.520722,0.623918,0.0462398,0.120928,0.205591,0.665362,0.552924,0.263252,0.729946,0.622184,0.908248,0.540714,0.922823,0.0746087,0.108602,0.107191,0.867343,0.177878,0.169732,0.528385,0.492749,0.532641,0.688132,0.324347,0.195374,0.467319,0.10694,0.253642,0.612461,0.703305,0.595405,0.529723,0.287325,0.988189,0.574661,0.0463734,0.0221722,0.466401,0.755715,0.14883,0.246676,0.914065,0.210082,0.567826,0.262295,0.850208,0.159948,0.219437,0.79806,0.4229,0.111882,0.925951,0.292128,0.0265349,0.491277,0.447552,0.586337,0.045297,0.135152,0.392081,0.649724,0.701993,0.763426,0.856068,0.466359,0.200648,0.535614,0.720447,0.906918,0.591049,0.924525,0.498591,0.286288,0.407239,0.931334,0.793458,0.233887,0.927381,0.405542,0.968696,0.797797,0.744215,0.730521,0.259361,0.00992256,0.7212,0.663959,0.64879,0.607147,0.416405,0.84049,0.940933,0.417502,0.325121,0.0586423,0.25161,0.502398,0.962056,0.104203,0.278009,0.501118,0.173829,0.490878,0.328733,0.972567,0.48533,0.865444,0.938511,0.567565,0.922432,0.54829,0.453878,0.59659,0.790861,0.170671,0.659869,0.276363,0.783315,0.320978,0.976842,0.43146,0.911545,0.0438517,0.343485,0.0288274,0.567897,0.118239,0.91214,0.740141,0.830698,0.347317,0.251615,0.910339,0.919736,0.291579,0.872523,0.637959,0.43671,0.542563,0.766399,0.452911,0.857991,0.224942,0.32639,0.268322,0.603755,0.157272,0.243997,0.767923,0.591759,0.818858,0.211459,0.555315,0.11956,0.765723,0.804014,0.753073,0.498,0.862324,0.870732,0.23509,0.619216,0.326622,0.643399,0.208236,0.639635,0.199462,0.592593,0.847151,0.95145,0.674509,0.352758,0.152423,0.123529,0.974943,0.708939,0.233835,0.48703,0.837093,0.932443,0.538383,0.883293,0.625627,0.483765,0.562737,0.0864318,0.0943201,0.427429,0.577179,0.108507,0.0887612,0.269437,0.197581,0.475149,0.226192,0.498219,0.052225,0.61192,0.87932,0.000979424,0.730842,0.253041,0.553482,0.149817,0.627107,0.511809,0.672485,0.576607,0.146055,0.276429,0.30298,0.506686,0.722797,0.817322,0.161486,0.543644,0.366957,0.172203,0.853914,0.98863,0.606566,0.28069,0.25774,0.792745,0.953704,0.656144,0.90677,0.556221,0.375264,0.292251,0.95348,0.520793,0.440357,0.0940657,0.756867,0.821542,0.147194,0.470501,0.216571,0.267811,0.0927928,0.278126,0.375572,0.318018,0.49016,0.624288,0.537318,0.791349,0.67453,0.0259637,0.760249,0.408666,0.961814,0.362555,0.462452,0.93138,0.242116,0.243427,0.554187,0.605814,0.870873,0.138506,0.360954,0.0455449,0.00577974,0.371051,0.758591,0.56353,0.658623,0.991203,0.270238,0.970234,0.00346798,0.368837,0.420573,0.548371,0.173423,0.554166,0.25399,0.924159,0.946917,0.417783,0.995507,0.906012,0.845965,0.771418,0.970945,0.103734,0.193121,0.559637,0.113879,0.118703,0.0839958,0.136775,0.853697,0.640803,0.546705,0.248262,0.128338,0.843912,0.0731568,0.189893,0.965605,0.0764992,0.16594,0.214589,0.750658,0.156761,0.83864,0.649693,0.0795496,0.423923,0.426484,0.579166,0.713598,0.127047,0.697081,0.0208805,0.875061,0.411377,0.00803351,0.845876,0.899607,0.373744,0.687134,0.626024,0.28093,0.61647,0.585162,0.0708761,0.911528,0.360363,0.48913,0.190263,0.713771,0.339788,0.214981,0.924227,0.219122,0.334566,0.0911244,0.0862074,0.659273,0.406393,0.379617,0.662499,0.329855,0.0525923,0.989317,0.641341,0.396104,0.070052,0.976331,0.185284,0.949468,0.727214,0.706776,0.512263,0.202112,0.745587,0.984743,0.187229,0.624657,0.224987,0.821731,0.619731,0.773844,0.585302,0.019392,0.705033,0.0710537,0.194281,0.404562,0.713322,0.418189,0.83146,0.886606,0.733595,0.307293,0.542349,0.839668,0.274207,0.426683,0.30792,0.32039,0.679738,0.0544456,0.785336,0.32146,0.958337,0.299757,0.0294346,0.674482,0.806749,0.656586,0.876195,0.293335,0.00647426,0.642836,0.910514,0.818933,0.80341,0.191515,0.541322,0.194391,0.126988,0.931285,0.461239,0.778743,0.183626,0.104928,0.821756,0.725865,0.768239,0.827052,0.392647,0.744231,0.375151,0.890992,0.249876,0.427538,0.317351,0.296369,0.916395,0.0721784,0.379884,0.778832,0.0446265,0.345724,0.305216,0.190023,0.105791,0.641972,0.657093,0.283429,0.165514,0.851779,0.533241,0.0790041,0.87885,0.245111,0.873132,0.559248,0.520923,0.0526069,0.0245401,0.422781,0.631572,0.628426,0.927213,0.597937,0.00888932,0.632215,0.242908,0.34264,0.353739,0.864436,0.312659,0.0879059,0.506229,0.0967645,0.30601,0.517796,0.301522,0.983531,0.0972455,0.668262,0.840373,0.962809,0.0996339,0.180133,0.177812,0.594403,0.641285,0.949804,0.264397,0.0542226,0.120157,0.360231,0.166458,0.0839314,0.474504,0.393256,0.84608,0.487758,0.804817,0.145828,0.813881,0.884377,0.398656,0.449133,0.47938,0.560225,0.190099,0.555578,0.108517,0.226038,0.902113,0.526721,0.363913,0.364027,0.744717,0.0538347,0.0843798,0.417401,0.465332,0.968982,0.116277,0.958403,0.806792,0.708268,0.696564,0.664683,0.397708,0.97794,0.838633,0.948733,0.437216,0.567444,0.500748,0.676774,0.128054,0.380611,0.995322,0.474719,0.390908,0.0693778,0.108138,0.841702,0.716372,0.107677,0.584598,0.147301,0.307012,0.543081,0.370284,0.883115,0.574195,0.293303,0.452267,0.08202,0.0986869,0.651612,0.842352,0.575685,0.816092,0.704764,0.323564,0.597871,0.869411,0.45508,0.753613,0.393712,0.925013,0.89819,0.629604,0.594375,0.519518,0.764079,0.143887,0.9113,0.43971,0.769019,0.625556,0.869209,0.522474,0.148363,0.273243,0.534843,0.763561,0.874075,0.480001,0.337207,0.334525,0.838177,0.165348,0.253443,0.862092,0.157806,0.697805,0.733237,0.789261,0.484907,0.350627,0.270242,0.516965,0.66799,0.569224,0.349292,0.827734,0.470204,0.0199437,0.435382,0.509355,0.195748,0.605756,0.537379,0.847951,0.076051,0.492175,0.961793,0.380618,0.976789,0.555292,0.621046,0.811167,0.32241,0.815751,0.603645,0.0953243,0.371306,0.684822,0.286235,0.699162,0.544473,0.895219,0.407509,0.0185545,0.875952,0.173696,0.970599,0.894399,0.399598,0.551843,0.0887317,0.555177,0.211126,0.466521,0.0982447,0.549714,0.793096,0.686391,0.366695,0.288061,0.0241889,0.471135,0.956376,0.34789,0.410266,0.196015,0.117672,0.0311772,0.629246,0.657365,0.234882,0.458361,0.382895,0.0289093,0.877145,0.536115,0.621722,0.571213,0.210901,0.761098,0.52509,0.125029,0.0391566,0.2716,0.307037,0.971792,0.373574,0.81908,0.480219,0.464506,0.0217752,0.949005,0.810501,0.873507,0.203387,0.328561,0.728984,0.143849,0.489811,0.55458,0.323679,0.648601,0.00391507,0.834863,0.452445,0.890212,0.995156,0.13556,0.063513,0.335871,0.289568,0.183478,0.0895509,0.957441,0.432008,0.850828,0.618367,0.982587,0.533607,0.240461,0.575823,0.624057,0.771796,0.354001,0.364246,0.650488,0.197295,0.577314,0.794464,0.494259,0.964189,0.024687,0.212075,0.202681,0.156995,0.798636,0.0272041,0.341297,0.900175,0.550512,0.156479,0.727185,0.253185,0.929845,0.218139,0.361213,0.542916,0.912885,0.241567,0.93073,0.117212,0.850884,0.913912,0.88557,0.617392,0.547728,0.717776,0.214908,0.63778,0.452723,0.812806,0.149726,0.0417208,0.192033,0.894868,0.0195311,0.923404,0.392651,0.912903,0.877614,0.960565,0.211007,0.831465,0.109352,0.730405,0.819936,0.618312,0.515413,0.195752,0.0308446,0.699007,0.938567,0.901366,0.961042,0.195201,0.491919,0.0677025,0.015483,0.179294,0.506092,0.0373854,0.393747,0.638651,0.694479,0.573391,0.505334,0.102519,0.151175,0.522017,0.0024398,0.0589334,0.905408,0.550818,0.721895,0.697929,0.359608,0.187008,0.150419,0.593063,0.284625,0.99112,0.0693014,0.564161,0.362194,0.47485,0.697736,0.242956,0.624977,0.975269,0.294604,0.734615,0.0310083,0.556626,0.889746,0.383202,0.593556,0.223897,0.0295785,0.366336,0.678615,0.367195,0.204302,0.238708,0.902746,0.754026,0.6627,0.757487,0.145693,0.035444,0.376605,0.4198,0.615946,0.791547,0.510563,0.23075,0.785242,0.170408,0.756056,0.072882,0.749817,0.239551,0.00434363,0.439203,0.549498,0.80953,0.410575,0.86628,0.495735,0.232717,0.725617,0.761888,0.816561,0.457595,0.869468,0.9969,0.642322,0.610807,0.921841,0.172597,0.34703,0.397389,0.131994,0.530886,0.547978,0.181068,0.127604,0.181759,0.555109,0.17512,0.272417,0.989606,0.897495,0.469736,0.682882,0.0257409,0.948496,0.761433,0.739111,0.107381,0.458215,0.455636,0.432086,0.523566,0.902352,0.0771376,0.348918,0.952227,0.360871,0.541832,0.81872,0.7016,0.226889,0.47348,0.687093,0.291153,0.34144,0.51946,0.76394,0.382969,0.286866,0.205243,0.359724,0.00923932,0.908925,0.963253,0.251697,0.194109,0.0869279,0.827236,0.211683,0.786338,0.471602,0.706841,0.865923,0.723811,0.590597,0.136084,0.223651,0.706148,0.104684,0.633452,0.854353,0.805998,0.195704,0.170539,0.95273,0.24125,0.644579,0.646553,0.363945,0.457914,0.260011,0.0427607,0.180764,0.628727,0.646756,0.429709,0.737433,0.709178,0.970003,0.667003,0.0180236,0.0444404,0.924442,0.386005,0.603512,0.281125,0.749172,0.247608,0.695521,0.279674,0.0259033,0.401459,0.423648,0.490229,0.107673,0.0976253,0.0509021,0.0424464,0.848149,0.932912,0.858128,0.107139,0.224672,0.92838,0.580834,0.736464,0.369354,0.75193,0.845421,0.623531,0.118405,0.733875,0.774677,0.855447,0.080381,0.520258,0.904919,0.791385,0.567313,0.145839,0.5269,0.234474,0.637109,0.899461,0.961083,0.532212,0.328998,0.546354,0.256409,0.0884116,0.303353,0.694641,0.300696,0.845528,0.566867,0.0384045,0.858898,0.896152,0.397688,0.776988,0.966977,0.449524,0.757918,0.447281,0.878888,0.311247,0.964751,0.861344,0.808818,0.811846,|0.581006,0.393006,0.645662,0.0939146,0.795934,0.288929,0.72969,0.109932,0.899163,0.91725,0.734725,0.402759,0.711539,0.713654,0.131076,0.967753,0.724654,0.665482,0.257086,0.308668,0.539098,0.367373,0.238819,0.884669,0.364335,0.577461,0.586136,0.951498,0.98175,0.9327,0.491366,0.0772529,0.884573,0.474491,0.00634509,0.999678,0.723607,0.160294,0.918245,0.0547259,0.873512,0.939663,0.274854,0.841691,0.977239,0.153628,0.113626,0.196443,0.868277,0.718831,0.620429,0.896066,0.426286,0.211262,0.491795,0.535054,0.322052,0.617282,0.358517,0.78644,0.351596,0.0270044,0.29381,0.619261,0.747573,0.956976,0.205954,0.463874,0.282233,0.233243,0.929889,0.421715,0.724601,0.673396,0.605353,0.351662,0.56202,0.390505,0.640651,0.87972,0.407952,0.425932,0.0848852,0.668717,0.270125,0.769306,0.876344,0.763746,0.638006,0.726398,0.347586,0.428223,0.961825,0.162999,0.0321222,0.538503,0.759827,0.205029,0.239484,0.381426,0.673268,0.653889,0.00493711,0.130093,0.51477,0.29784,0.793393,0.0249846,0.201524,0.285194,0.70037,0.231353,0.569754,0.937817,0.822962,0.0343117,0.0813282,0.830675,0.226375,0.452552,0.874693,0.677249,0.551264,0.0987536,0.323284,0.0426619,0.286912,0.321618,0.383213,0.0814174,0.79663,0.624136,0.212233,0.772111,0.702775,0.549197,0.92514,0.882876,0.138793,0.543317,0.933498,0.099529,0.32565,0.958965,0.329658,0.0156932,0.114804,0.229156,0.781152,0.412324,0.865546,0.670864,0.339334,0.847917,0.958323,0.905183,0.292815,0.336006,0.919281,0.886708,0.329931,0.55211,0.211863,0.643022,0.825346,0.370989,0.783094,0.663703,0.573049,0.546877,0.915598,0.334993,0.0355333,0.688002,0.857651,0.165235,0.254392,0.412112,0.737203,0.785091,0.645522,0.395808,0.497237,0.460786,0.176414,0.673623,0.352367,0.838065,0.739828,0.752539,0.738064,0.973094,0.380402,0.113893,0.205123,0.420638,0.152319,0.319851,0.875049,0.916889,0.323312,0.390685,0.375877,0.0766945,0.493204,0.376154,0.165442,0.0331597,0.912519,0.421135,0.456802,0.654246,0.251806,0.627967,0.8919,0.988637,0.068265,0.157419,0.474688,0.664204,0.878187,0.321646,0.876512,0.934356,0.975298,0.689976,0.892263,0.0290923,0.621579,0.0141325,0.424297,0.380668,0.123833,0.133503,0.202211,0.842062,0.497389,0.0760396,0.820433,0.725356,0.221484,0.00551456,0.698313,0.104315,0.834526,0.453153,0.542378,0.50783,0.661006,0.269319,0.620248,0.300566,0.340606,0.53168,0.650743,0.149653,0.817512,0.795637,0.822002,0.125131,0.420106,0.161267,0.829531,0.694578,0.599978,0.646764,0.0804064,0.539771,0.559047,0.427829,0.107085,0.452451,0.44768,0.674412,0.152325,0.613683,0.988023,0.916806,0.932991,0.0537765,0.184514,0.28407,0.950497,0.983219,0.774555,0.672439,0.427677,0.224526,0.0797099,0.457914,0.549494,0.810302,0.666355,0.300338,0.675081,0.608203,0.752777,0.231318,0.730058,0.305139,0.877472,0.117265,0.0673746,0.508433,0.0356213,0.316863,0.835483,0.986177,0.495427,0.365881,0.576368,0.515369,0.494128,0.330735,0.504681,0.524599,0.801678,0.861167,0.723373,0.736764,0.867233,0.148704,0.92341,0.432137,0.776165,0.940063,0.506016,0.372342,0.880925,0.882035,0.236359,0.0519211,0.245619,0.75728,0.195442,0.0624084,0.762639,0.94605,0.690974,0.59553,0.758474,0.36965,0.410107,0.320012,0.964992,0.311522,0.508544,0.784208,0.725415,0.784385,0.648502,0.412729,0.839171,0.924779,0.149082,0.117031,0.241665,0.135233,0.561796,0.372701,0.74957,0.385989,0.500023,0.897096,0.508151,0.200327,0.17707,0.676267,0.799926,0.41839,0.67121,0.954064,0.745162,0.229998,0.297938,0.923593,0.787775,0.0193878,0.918907,0.466268,0.388518,0.955019,0.736368,0.733096,0.182805,0.50033,0.0293133,0.11975,0.945539,0.0281245,0.0269628,0.755348,0.00753278,0.738308,0.952836,0.303492,0.378978,0.581381,0.343432,0.0699477,0.572578,0.390544,0.456707,0.692845,0.0964994,0.535945,0.448662,0.477602,0.978309,0.872157,0.361956,0.08905,0.703271,0.152072,0.864969,0.178204,0.188864,0.441586,0.196448,0.75916,0.445024,0.546506,0.233795,0.814856,0.141501,0.491472,0.377845,0.457397,0.655548,0.630428,0.888961,0.814604,0.999443,0.432736,0.202685,0.0861723,0.617408,0.937492,0.221886,0.904766,0.725718,0.988424,0.873588,0.45951,0.122275,0.187986,0.109857,0.150751,0.512518,0.0704957,0.0959851,0.308492,0.52065,0.593862,0.54052,0.743177,0.840404,0.0691121,0.283201,0.728978,0.920242,0.389702,0.0933369,0.125381,0.714068,0.901487,0.050037,0.523757,0.311144,0.328411,0.633386,0.728503,0.570552,0.903807,0.609151,0.206209,0.947095,0.321896,0.643762,0.385171,0.942592,0.86923,0.906497,0.466628,0.883962,0.138643,0.870161,0.146141,0.0397799,0.0688083,0.713605,0.940651,0.0911206,0.0609531,0.520851,0.194595,0.664342,0.564602,0.227138,0.413457,0.0439887,0.13899,0.452415,0.212977,0.579182,0.0443137,0.351929,0.552749,0.0246317,0.287091,0.646644,0.7591,0.613547,0.800221,0.186777,0.153826,0.632863,0.891558,0.579074,0.488871,0.972139,0.144609,0.0818592,0.435366,0.20863,0.880189,0.557557,0.77263,0.441698,0.970263,0.999112,0.393639,0.897381,0.908761,0.664322,0.318807,0.665233,0.727539,0.0687299,0.498055,0.912728,0.0359968,0.516792,0.0490827,0.290425,0.0258484,0.952165,0.424546,0.697548,0.876482,0.269774,0.727354,0.863669,0.986004,0.639362,0.692613,0.967814,0.886479,0.241813,0.0670819,0.549155,0.165562,0.083658,0.340898,0.012336,0.173462,0.0874017,0.995918,0.652301,0.315785,0.865941,0.74569,0.19143,0.180671,0.432826,0.836622,0.460638,0.250264,0.717469,0.117975,0.17893,0.337746,0.186525,0.108676,0.0816695,0.0652893,0.745972,0.683738,0.637507,0.0781352,0.416481,0.312024,0.774282,0.324925,0.682756,0.855034,0.0554498,0.288073,0.350247,0.0470689,0.376193,0.650969,0.448002,0.656973,0.610802,0.443091,0.452758,0.812383,0.152463,0.0135558,0.994538,0.209014,0.258211,0.111393,0.551949,0.516531,0.0625941,0.607461,0.52952,0.547277,0.316678,0.660719,0.711026,0.771612,0.024464,0.0922666,0.379407,0.744025,0.0790771,0.205946,0.72721,0.110404,0.927743,0.816868,0.346144,0.661139,0.0103016,0.156912,0.303538,0.73363,0.0421155,0.130528,0.44525,0.887766,0.509001,0.271585,0.840305,0.122994,0.281837,0.297741,0.649158,0.642284,0.254425,0.621238,0.773641,0.604095,0.551326,0.429792,0.0437318,0.185228,0.561607,0.796237,0.937868,0.951579,0.376828,0.00281948,0.635823,0.781039,0.674918,0.429855,0.417463,0.0762526,0.987955,0.839423,0.783402,0.289614,0.654551,0.148501,0.267756,0.807629,0.530645,0.421693,0.457218,0.293167,0.841182,0.916377,0.205842,0.456239,0.196553,0.723392,0.531117,0.998979,0.691028,0.910456,0.429151,0.650003,0.906501,0.30114,0.564397,0.620922,0.509277,0.59532,0.0351416,0.763517,0.795001,0.753352,0.298445,0.906624,0.321487,0.137504,0.876767,0.101102,0.261174,0.33816,0.612663,0.851833,0.635428,0.355055,0.990946,0.4686,0.623318,0.356948,0.149328,0.771425,0.321755,0.296111,0.00146013,0.646787,0.0804409,0.805952,0.0978709,0.162515,0.942492,0.499512,0.537649,0.217127,0.798235,0.347542,0.341338,0.572418,0.239375,0.273955,0.30409,0.704638,0.405229,0.327555,0.434593,0.821243,0.317823,0.537687,0.813865,0.691804,0.487058,0.947292,0.240446,0.4077,0.615649,0.960043,0.476962,0.538642,0.665899,0.198442,0.522746,0.858274,0.118927,0.704987,0.889086,0.791286,0.534424,0.524592,0.311964,0.0435831,0.13812,0.406898,0.131033,0.541047,0.28696,0.57847,0.0486518,0.402351,0.573321,0.642471,0.295795,0.879709,0.896895,0.950077,0.0637032,0.675922,0.810662,0.523358,0.0507303,0.357476,0.642607,0.0789543,0.934406,0.153189,0.485597,0.821511,0.384533,0.631808,0.959846,0.699592,0.55752,0.295019,0.469943,0.0574287,0.338673,0.465565,0.633243,0.358489,0.143077,0.306989,0.883725,0.292838,0.694777,0.794412,0.165974,0.331115,0.397407,0.670883,0.378431,0.988209,0.719458,0.274907,0.0295948,0.834751,0.0495982,0.379368,0.229526,0.0435207,0.502366,0.118719,0.533621,0.804729,0.622355,0.0231096,0.322463,0.704127,0.572014,0.469026,0.471984,0.192519,0.83846,0.568641,0.692626,0.0493234,0.492547,0.422245,0.963651,0.975663,0.660218,0.560154,0.532382,0.908859,0.561281,0.62719,0.582367,0.00965476,0.89023,0.801634,0.441434,0.757278,0.465488,0.442299,0.992682,0.00960863,0.0403675,0.662669,0.924108,0.823311,0.928168,0.768276,0.862165,0.644693,0.489623,0.48829,0.746421,0.00855643,0.608453,0.784795,0.128923,0.983415,0.155887,0.540389,0.617242,0.175934,0.308139,0.463071,0.0346367,0.205809,0.344171,0.472412,0.824076,0.715418,0.890485,0.180826,0.488784,0.175602,0.874753,0.671091,0.133934,0.398481,0.227435,0.224238,0.960392,0.213333,0.377285,0.499945,0.550973,0.112492,0.255828,0.130647,0.449853,0.208546,0.237532,0.024186,0.247739,0.120763,0.990365,0.136793,0.822005,0.675703,0.771847,0.978109,0.949215,0.861892,0.968616,0.722081,0.290007,0.610249,0.00371927,0.250799,0.136333,0.235714,0.311952,0.807776,0.999532,0.207212,0.754712,0.543082,0.961073,0.26635,0.581163,0.196801,0.469439,0.618858,0.154394,0.434073,0.19695,0.150525,0.904467,0.439112,0.390035,0.940548,0.423436,0.659586,0.353239,0.0658894,0.492892,0.723957,0.665576,0.619599,0.89166,0.452085,0.136223,0.1148,0.819998,0.665775,0.126512,0.108804,0.339228,0.101213,0.143609,0.312678,0.914606,0.191119,0.711365,0.185171,0.491516,0.230601,0.743225,0.384632,0.367514,0.449701,0.317551,0.846689,0.588074,0.0927712,0.125937,0.408443,0.355814,0.642669,0.74654,0.788201,0.289109,0.0584756,0.598195,0.674864,0.0599074,0.818312,|0.762085,0.298995,0.813467,0.60721,0.308237,0.00478429,0.583482,0.461857,0.992711,0.932826,0.261407,0.00777757,0.12223,0.631748,0.940817,0.534046,0.606367,0.376493,0.92461,0.15604,0.915515,0.00318336,0.908381,0.0819304,0.334493,0.723335,0.447464,0.572514,0.0663942,0.976231,0.548121,0.96531,0.812172,0.97783,0.417056,0.742939,0.625575,0.0522977,0.928384,0.822929,0.576525,0.734037,0.348788,0.220754,0.269903,0.5831,0.878776,0.784943,0.0481656,0.601581,0.437734,0.0170739,0.469391,0.374935,0.361078,0.0193279,0.279509,0.23653,0.931579,0.172637,0.835266,0.687714,0.184497,0.415954,0.665588,0.895586,0.627571,0.233025,0.638397,0.955781,0.843605,0.549669,0.689384,0.228566,0.593508,0.191763,0.819123,0.0447719,0.662318,0.924111,0.70473,0.647789,0.731031,0.545569,0.185394,0.110474,0.866729,0.107452,0.347603,0.706591,0.932431,0.925189,0.449651,0.221634,0.717275,0.689369,0.37482,0.442933,0.896151,0.813496,0.283492,0.0688627,0.354875,0.784571,0.922692,0.764951,0.403245,0.805846,0.844107,0.973895,0.73963,0.532312,0.427213,0.60922,0.496199,0.727699,0.0788023,0.903862,0.26754,0.13983,0.645383,0.327472,0.362842,0.507242,0.580271,0.694691,0.672423,0.641561,0.858661,0.598058,0.228476,0.479519,0.499839,0.799801,0.895252,0.927941,0.757342,0.313241,0.296249,0.974558,0.262786,0.041817,0.736133,0.422125,0.129059,0.255636,0.769397,0.440843,0.979181,0.523762,0.372796,0.652296,0.124375,0.98527,0.0799128,0.738883,0.386946,0.375509,0.375823,0.819006,0.678508,0.515592,0.193166,0.0380558,0.58317,0.0221082,0.814669,0.198685,0.862655,0.0394984,0.313972,0.720691,0.513543,0.142676,0.628538,0.142679,0.654098,0.309548,0.992275,0.543151,0.385858,0.827993,0.279107,0.457659,0.096311,0.825758,0.23793,0.995299,0.224719,0.999747,0.107737,0.363778,0.145327,0.660442,0.979959,0.36475,0.874525,0.986474,0.339445,0.40194,0.880466,0.753663,0.10191,0.282586,0.925327,0.0427318,0.877064,0.945824,0.472734,0.574982,0.69198,0.278308,0.715647,0.231448,0.00819284,0.545035,0.766108,0.427609,0.150123,0.865962,0.375499,0.99888,0.182656,0.65512,0.49922,0.202357,0.911298,0.754085,0.0927384,0.429718,0.82395,0.00952786,0.836385,0.875626,0.154494,0.991308,0.75519,0.634611,0.754039,0.601384,0.23991,0.651996,0.590554,0.717247,0.307202,0.914883,0.885934,0.25799,0.659161,0.0646858,0.846411,0.00935352,0.0145851,0.445413,0.137394,0.171497,0.901658,0.769743,0.895258,0.811837,0.605474,0.12844,0.820594,0.50556,0.855411,0.339696,0.580176,0.072742,0.720658,0.457427,0.206062,0.423458,0.0791438,0.170629,0.598018,0.294539,0.290714,0.887162,0.987412,0.108322,0.0577548,0.240866,0.388084,0.8005,0.142203,0.792236,0.086799,0.242823,0.330665,0.695026,0.0963514,0.612432,0.211047,0.427355,0.898933,0.983559,0.855259,0.78433,0.542955,0.0532937,0.968809,0.0419326,0.628531,0.3441,0.511536,0.13287,0.0197354,0.585517,0.352156,0.0510499,0.710152,0.0475774,0.327784,0.0406446,0.471795,0.827063,0.872769,0.636932,0.607443,0.708476,0.643521,0.327439,0.588412,0.584795,0.355447,0.496696,0.534903,0.0717614,0.00539356,0.422972,0.985088,0.628061,0.336366,0.165157,0.540632,0.875199,0.900913,0.280325,0.886076,0.862167,0.479855,0.467807,0.0489193,0.506518,0.725098,0.423718,0.539143,0.315593,0.804278,0.223351,0.767074,0.484493,0.152449,0.868744,0.288644,0.984076,0.874737,0.753903,0.860795,0.491945,0.0544734,0.701102,0.833293,0.545426,0.822099,0.893214,0.536852,0.00676262,0.356224,0.18065,0.406265,0.15497,0.738959,0.915156,0.72346,0.891149,0.812735,0.366495,0.73613,0.661861,0.282753,0.890087,0.837645,0.0800002,0.984015,0.128345,0.277511,0.685222,0.0616981,0.372147,0.0229319,0.688371,0.631423,0.72907,0.630604,0.634465,0.0898449,0.0946959,0.524024,0.675711,0.907172,0.475595,0.686373,0.121655,0.220553,0.559923,0.566514,0.419078,0.375646,0.328807,0.0984049,0.234407,0.666793,0.672008,0.195584,0.836566,0.949983,0.862767,0.387634,0.756058,0.79618,0.598136,0.610528,0.294377,0.429794,0.333833,0.145166,0.94144,0.511387,0.894886,0.294213,0.371324,0.855385,0.649355,0.276106,0.648543,0.206778,0.450131,0.714249,0.27364,0.303307,0.464551,0.0614818,0.0109664,0.122859,0.184313,0.335684,0.969749,0.597007,0.264991,0.185297,0.752927,0.908994,0.622697,0.959764,0.719608,0.903157,0.378237,0.536983,0.817441,0.300271,0.766962,0.643035,0.545253,0.586949,0.216417,0.278016,0.678846,0.0781593,0.46747,0.6087,0.650161,0.705819,0.882149,0.891484,0.8263,0.538844,0.893624,0.836014,0.0450355,0.333562,0.938567,0.412608,0.442679,0.583367,0.569821,0.235605,0.0377971,0.01932,0.980277,0.863021,0.65017,0.907036,0.630561,0.350161,0.115288,0.770476,0.0895692,0.349753,0.676928,0.803138,0.917828,0.666938,0.50167,0.168097,0.452107,0.30717,0.85584,0.976854,0.433331,0.881612,0.115571,0.353689,0.454796,0.816109,0.319352,0.0596225,0.295466,0.339921,0.526975,0.0184776,0.845133,0.640876,0.234152,0.659024,0.846378,0.688951,0.092023,0.71865,0.619521,0.534584,0.131718,0.213198,0.69644,0.142198,0.593424,0.68585,0.86444,0.208841,0.585213,0.0680677,0.72377,0.352221,0.952379,0.141717,0.930856,0.517016,0.142724,0.296441,0.153934,0.367458,0.619055,0.0177419,0.0336884,0.201459,0.776372,0.0612197,0.531318,0.732265,0.417502,0.776302,0.621176,0.00266451,0.178937,0.651561,0.0170229,0.413682,0.496344,0.416457,0.86102,0.797118,0.637919,0.607659,0.23936,0.627159,0.741038,0.327897,0.383233,0.648038,0.717794,0.738772,0.631838,0.192142,0.614114,0.699949,0.281449,0.951352,0.0462599,0.356864,0.167877,0.217085,0.767348,0.532218,0.99467,0.971485,0.735969,0.407622,0.326664,0.0872504,0.84302,0.566327,0.382335,0.0600799,0.991846,0.12842,0.220701,0.154723,0.527535,0.475613,0.514644,0.371885,0.980894,0.888871,0.821981,0.647551,0.729154,0.509211,0.174213,0.93748,0.965838,0.753243,0.725077,0.0952541,0.820202,0.893642,0.488093,0.708398,0.0332755,0.567566,0.469012,0.984334,0.0254763,0.17967,0.930317,0.191781,0.359412,0.849322,0.867957,0.534873,0.680407,0.687767,0.703213,0.0477244,0.662258,0.442074,0.147084,0.45371,0.268152,0.930576,0.147344,0.938226,0.0296679,0.443166,0.156824,0.22936,0.37243,0.787153,0.640869,0.276065,0.993872,0.970718,0.141317,0.569215,0.912643,0.15248,0.797761,0.0702987,0.401788,0.465498,0.46331,0.58997,0.337077,0.0724552,0.736894,0.378287,0.556649,0.98223,0.352962,0.860182,0.941142,0.459679,0.465461,0.364621,0.896552,0.271433,0.253027,0.497147,0.0979801,0.188663,0.0917798,0.603492,0.499472,0.685376,0.239976,0.906053,0.5981,0.491648,0.505663,0.951985,0.38064,0.451337,0.206529,0.61794,0.581408,0.234321,0.151315,0.152755,0.838345,0.826786,0.848905,0.350097,0.0215312,0.274764,0.797437,0.131772,0.307787,0.145141,0.817438,0.533928,0.586953,0.736395,0.990229,0.426875,0.583192,0.0608722,0.737596,0.135552,0.460719,0.316927,0.650919,0.246084,0.847525,0.619144,0.351968,0.66573,0.498718,0.0102375,0.468378,0.55669,0.639432,0.0863143,0.955007,0.415528,0.672873,0.1101,0.994143,0.151541,0.616825,0.215078,0.782696,0.144345,0.520324,0.400215,0.659369,0.0171708,0.129325,0.884208,0.274312,0.104572,0.205723,0.56735,0.0565702,0.202058,0.326306,0.169602,0.831483,0.435012,0.4429,0.60216,0.168674,0.551341,0.505397,0.966291,0.625048,0.439465,0.934326,0.971559,0.721204,0.647251,0.107096,0.326862,0.0558857,0.651174,0.607868,0.606773,0.248151,0.958742,0.583278,0.865334,0.19035,0.414594,0.150146,0.972519,0.478766,0.242622,0.254854,0.253881,0.611731,0.952139,0.60972,0.606594,0.644806,0.132046,0.144894,0.568937,0.813032,0.429336,0.652977,0.654864,0.530986,0.934452,0.736748,0.787198,0.9726,0.39695,0.613819,0.981756,0.0106326,0.00563413,0.1569,0.640657,0.663577,0.94186,0.470793,0.0981004,0.556749,0.3809,0.085259,0.510016,0.620044,0.0146679,0.439836,0.644867,0.266948,0.571325,0.803074,0.272948,0.997715,0.762467,0.307134,0.912735,0.996129,0.525439,0.749342,0.648818,0.257092,0.0772628,0.821408,0.845546,0.803271,0.901994,0.268138,0.610547,0.232997,0.422441,0.548912,0.207648,0.569521,0.0898058,0.78228,0.0952947,0.30617,0.553667,0.38785,0.0894125,0.681419,0.0877575,0.673994,0.234388,0.552822,0.106279,0.0691714,0.050055,0.167512,0.636008,0.797494,0.434548,0.0956169,0.114569,0.647882,0.507825,0.857935,0.656347,0.481967,0.477476,0.704812,0.312411,0.312184,0.909781,0.181031,0.438193,0.00849456,0.045046,0.896602,0.0853982,0.292742,0.610995,0.745514,0.257946,0.244401,0.0632504,0.559509,0.61115,0.0903862,0.595127,0.147616,0.274808,0.0223222,0.43358,0.19547,0.985271,0.58598,0.818916,0.136483,0.874466,0.912235,0.201499,0.189335,0.630965,0.272356,0.0625744,0.745502,0.373712,0.176863,0.946836,0.652788,0.363489,0.0142439,0.772027,0.0361033,0.258592,0.992357,0.141125,0.744605,0.722528,0.60133,0.084741,0.0628514,0.915219,0.278157,0.816373,0.943965,0.391103,0.575547,0.408019,0.169984,0.517486,0.0156959,0.256881,0.0929741,0.530456,0.00409967,0.961991,0.789566,0.511103,0.745629,0.236707,0.0645723,0.416114,0.48065,0.301537,0.93973,0.0598549,0.283874,0.0210389,0.293461,0.378277,0.46269,0.733387,0.288803,0.115933,0.938109,0.418532,0.544032,0.279092,0.789311,0.632944,0.465684,0.834139,0.428197,0.0891621,0.632663,0.929465,0.689687,0.301357,0.111045,0.562644,0.768004,0.920976,0.394042,0.635893,0.649395,0.905536,0.522994,0.366593,0.41962,0.182598,0.676782,0.918289,0.720686,|0.0540504,0.909775,0.895105,0.771474,0.0541676,0.00984561,0.336705,0.550382,0.16571,0.290318,0.0163862,0.45363,0.248451,0.199393,0.559606,0.319409,0.317609,0.0818673,0.218511,0.0749245,0.863529,0.764282,0.801107,0.549912,0.165181,0.624838,0.378888,0.522075,0.417964,0.82167,0.524968,0.174921,0.294679,0.956205,0.43956,0.656995,0.221395,0.123738,0.279139,0.198312,0.769498,0.412589,0.5609,0.235893,0.794311,0.892627,0.1666,0.613992,0.287441,0.5191,0.224907,0.0368055,0.468953,0.993831,0.65285,0.0594113,0.912773,0.979261,0.389812,0.569516,0.66015,0.860113,0.14877,0.808257,0.0407412,0.0994186,0.56026,0.252394,0.621755,0.391515,0.948926,0.112103,0.801528,0.429035,0.527115,0.201055,0.968674,0.644925,0.0974219,0.355275,0.821579,0.119856,0.287553,0.552022,0.181024,0.806057,0.625358,0.654443,0.25492,0.711756,0.856841,0.595297,0.808864,0.9161,0.902682,0.992338,0.00739431,0.889325,0.867508,0.489708,0.946031,0.0477207,0.661551,0.674553,0.225087,0.836683,0.0606014,0.544708,0.28958,0.401806,0.076637,0.656175,0.545726,0.814533,0.646731,0.640075,0.211456,0.925627,0.362904,0.867235,0.937462,0.933652,0.717488,0.649831,0.477224,0.762472,0.561466,0.636638,0.600814,0.80291,0.407194,0.342321,0.699287,0.872586,0.78414,0.763018,0.215955,0.87336,0.587545,0.654724,0.96503,0.449898,0.717894,0.848692,0.532803,0.464821,0.332654,0.218283,0.0755396,0.779584,0.954999,0.19604,0.486693,0.298283,0.918719,0.830949,0.469248,0.976811,0.690105,0.656411,0.0208773,0.087119,0.179337,0.122913,0.896136,0.255507,0.208471,0.568067,0.712963,0.676521,0.450592,0.885636,0.188587,0.57474,0.639229,0.397757,0.850183,0.941149,0.305123,0.983155,0.428065,0.656496,0.685482,0.169777,0.114045,0.105075,0.261713,0.246109,0.834295,0.481364,0.229724,0.612482,0.134575,0.0874201,0.918582,0.278941,0.739785,0.361895,0.274401,0.248865,0.238564,0.708276,0.668095,0.739712,0.805969,0.659915,0.52655,0.788431,0.769608,0.517961,0.73969,0.313717,0.437938,0.605637,0.11461,0.904769,0.358633,0.529653,0.524648,0.998779,0.375344,0.455369,0.193334,0.682316,0.28972,0.704624,0.826677,0.940059,0.0592133,0.200316,0.998699,0.459631,0.352413,0.604711,0.430294,0.991561,0.388982,0.483674,0.417679,0.498319,0.226369,0.494821,0.24602,0.92692,0.0306282,0.805093,0.119508,0.404458,0.679531,0.177596,0.858585,0.262217,0.871024,0.640087,0.495894,0.507087,0.881436,0.995987,0.248778,0.601858,0.673728,0.525636,0.472601,0.162921,0.979401,0.299588,0.721884,0.376555,0.9182,0.733854,0.298244,0.976379,0.658781,0.00746483,0.186347,0.152973,0.421651,0.891239,0.133698,0.97382,0.0633947,0.0338804,0.591688,0.915075,0.733093,0.562766,0.588401,0.457014,0.554163,0.723115,0.000261128,0.582319,0.0868658,0.532988,0.0332676,0.753064,0.159072,0.487551,0.124214,0.314415,0.472582,0.175294,0.667918,0.691587,0.602787,0.768798,0.963476,0.0797634,0.031185,0.5541,0.766164,0.0425113,0.815124,0.797947,0.600705,0.287336,0.719905,0.87931,0.595424,0.753685,0.643245,0.378046,0.487425,0.736771,0.739161,0.783998,0.824655,0.754259,0.0730914,0.246902,0.937858,0.734362,0.70465,0.221019,0.783046,0.723973,0.382876,0.456627,0.137953,0.949793,0.161161,0.436456,0.90773,0.000476182,0.969605,0.0255092,0.871834,0.980299,0.936367,0.905989,0.364576,0.188245,0.969801,0.181385,0.863572,0.581832,0.392238,0.99867,0.535021,0.7651,0.629153,0.158717,0.26421,0.345438,0.250671,0.466494,0.644977,0.648108,0.882382,0.87807,0.278391,0.719347,0.608843,0.990186,0.0880823,0.329207,0.0355206,0.804597,0.344111,0.795489,0.997385,0.998586,0.149961,0.4828,0.470328,0.149008,0.0252034,0.329185,0.0331233,0.310975,0.978017,0.31771,0.170349,0.652621,0.86348,0.321659,0.132858,0.620656,0.577951,0.31335,0.774825,0.923448,0.193921,0.237867,0.687319,0.71834,0.330832,0.643957,0.0413123,0.90355,0.203171,0.780511,0.626627,0.0875936,0.302976,0.523318,0.937673,0.11191,0.86856,0.0610163,0.018131,0.967156,0.414234,0.389109,0.617657,0.0498285,0.486934,0.765614,0.559556,0.753254,0.51672,0.737749,0.54038,0.48519,0.446976,0.150382,0.020019,0.781075,0.924579,0.166668,0.212659,0.563127,0.476723,0.397132,0.496023,0.217351,0.790061,0.155663,0.866946,0.87265,0.285728,0.836817,0.163395,0.552502,0.915644,0.504448,0.605385,0.612263,0.938543,0.732677,0.500384,0.146647,0.075978,0.611282,0.611063,0.107632,0.45617,0.940837,0.516728,0.655893,0.242209,0.0143078,0.540093,0.170734,0.678171,0.775173,0.696422,0.193608,0.306689,0.254953,0.101753,0.780194,0.608191,0.300546,0.589575,0.170675,0.662926,0.996264,0.795924,0.0576709,0.600938,0.99154,0.216086,0.759752,0.992074,0.496987,0.387745,0.496807,0.365785,0.184444,0.322618,0.989081,0.0775341,0.191492,0.023551,0.982569,0.612331,0.861561,0.055652,0.971985,0.3961,0.215977,0.107074,0.283689,0.169349,0.374892,0.151322,0.511268,0.044354,0.978332,0.401623,0.605037,0.80508,0.0523816,0.455272,0.410428,0.436398,0.871965,0.394249,0.256283,0.85898,0.833909,0.748402,0.391522,0.124017,0.466053,0.368719,0.68048,0.924988,0.0820749,0.577479,0.636049,0.102496,0.0788856,0.855628,0.0258037,0.257217,0.869548,0.974667,0.885409,0.0769489,0.460786,0.897139,0.0151534,0.216044,0.764162,0.254919,0.322618,0.821646,0.0183572,0.0472249,0.928736,0.529352,0.488481,0.220458,0.170931,0.223615,0.502711,0.677749,0.0831817,0.18631,0.55891,0.989756,0.451421,0.344175,0.551669,0.377893,0.091288,0.866981,0.151894,0.226538,0.247004,0.671913,0.53063,0.487214,0.360407,0.423893,0.640141,0.520975,0.15249,0.00390589,0.356236,0.483237,0.495265,0.249354,0.0236456,0.543761,0.495187,0.430965,0.380774,0.411099,0.228513,0.691307,0.90123,0.289679,0.375897,0.804268,0.652166,0.84481,0.837064,0.336747,0.665618,0.548793,0.708242,0.792118,0.110214,0.997698,0.137678,0.0750576,0.980098,0.293848,0.0432082,0.332727,0.601103,0.53173,0.988999,0.44258,0.172893,0.585226,0.959889,0.255681,0.15506,0.303017,0.119442,0.362171,0.643219,0.348957,0.0330427,0.507195,0.714814,0.314515,0.941648,0.72099,0.111412,0.141076,0.660145,0.465757,0.556581,0.0573993,0.856711,0.724714,0.663744,0.28907,0.410539,0.579104,0.761602,0.397249,0.0354734,0.150391,0.997814,0.858454,0.657943,0.0640387,0.409907,0.229684,0.915743,0.327841,0.949211,0.937171,0.23863,0.115222,0.107532,0.22941,0.187912,0.639033,0.250407,0.851128,0.256712,0.613009,0.154666,0.379189,0.358995,0.820261,0.614751,0.315551,0.664398,0.491327,0.756739,0.968826,0.397182,0.00103718,0.998473,0.683005,0.394102,0.915514,0.753196,0.678152,0.226928,0.332606,0.307425,0.0402679,0.79823,0.722887,0.796991,0.887843,0.801981,0.131229,0.968435,0.790838,0.437052,0.586325,0.471773,0.0486817,0.636583,0.632017,0.160151,0.661478,0.115343,0.153709,0.725405,0.682195,0.199292,0.289332,0.839494,0.522347,0.94819,0.674378,0.144017,0.359897,0.592217,0.649993,0.587432,0.188997,0.467901,0.853268,0.0299965,0.359977,0.995118,0.415717,0.388806,0.327076,0.23203,0.262934,0.12755,0.0352468,0.960118,0.37848,0.670641,0.4293,0.887367,0.380804,0.0449433,0.00332361,0.785432,0.804441,0.425714,0.558674,0.871705,0.465775,0.587969,0.881089,0.0761833,0.877488,0.949652,0.876827,0.984562,0.261108,0.933292,0.450555,0.598388,0.633421,0.279596,0.70427,0.804934,0.371341,0.511871,0.928631,0.500446,0.531134,0.00656843,0.712447,0.687643,0.848376,0.642713,0.733304,0.186989,0.876245,0.403554,0.981898,0.501553,0.328686,0.0628233,0.871006,0.595457,0.0947105,0.137905,0.392223,0.622738,0.889356,0.495531,0.901884,0.83795,0.642654,0.892682,0.56774,0.706868,0.149431,0.602522,0.414948,0.675844,0.179759,0.763289,0.781898,0.702784,0.155472,0.362545,0.833427,0.0413086,0.926751,0.611193,0.224004,0.902556,0.921124,0.0846087,0.674746,0.333886,0.35273,0.773206,0.955604,0.944521,0.799472,0.500096,0.180264,0.0490537,0.73692,0.34778,0.595152,0.929479,0.814076,0.609747,0.363448,0.980606,0.680685,0.686643,0.459597,0.213609,0.218128,0.569923,0.511049,0.56814,0.716435,0.64215,0.879429,0.620645,0.987457,0.579365,0.643852,0.0888845,0.189138,0.966229,0.371,0.302968,0.522506,0.0712643,0.180211,0.402311,0.732279,0.892852,0.805613,0.572787,0.944341,0.224673,0.619184,0.485579,0.65363,0.128806,0.47333,0.621523,0.0339825,0.345795,0.461873,0.493764,0.811804,0.282271,0.809878,0.639373,0.615593,0.253603,0.311663,0.0072307,0.682684,0.699308,0.766627,0.514928,0.663519,0.829596,0.822782,0.945167,0.247109,0.274509,0.630688,0.332988,0.941284,0.091666,0.759018,0.523107,0.143463,0.135209,0.620485,0.147133,0.0283914,0.653915,0.30913,0.465103,0.528046,0.565712,0.943376,0.157206,0.680545,0.973345,0.293493,0.00409245,0.370571,0.254748,0.692667,0.408718,0.530531,0.569744,0.223598,0.267238,0.157416,0.709389,0.64834,0.408476,0.891618,0.487933,0.472668,0.740404,0.720817,0.144736,0.183681,0.472622,0.900143,0.835093,0.909891,0.074145,0.276426,0.523021,0.506836,0.229302,0.951723,0.832887,0.206596,0.396953,0.500589,0.282651,0.171041,0.0446539,0.271614,0.120331,0.954063,0.749318,0.0403206,0.0567409,0.473308,0.336248,0.807115,0.028341,0.442162,0.601197,0.640915,0.352099,0.123496,0.952572,0.718752,0.622766,0.641257,0.232923,0.960095,0.0291048,0.481882,0.754302,0.743488,0.0629488,0.322668,0.696175,0.577365,0.621186,0.5454,0.0696481,0.0661034,0.450685,0.547674,0.210985,0.900119,0.170237,0.694916,0.54563,0.13216,0.260584,|0.496791,0.969737,0.706681,0.966062,0.614225,0.406845,0.878439,0.941253,0.32321,0.849989,0.276282,0.56548,0.627935,0.112521,0.577905,0.439399,0.236596,0.327769,0.753296,0.913234,0.914058,0.531439,0.637739,0.890925,0.30539,0.842341,0.17658,0.992869,0.2691,0.945091,0.576507,0.332244,0.471181,0.994719,0.692619,0.334555,0.876851,0.631174,0.937017,0.055587,0.0390103,0.0327268,0.064113,0.896293,0.126897,0.153179,0.352133,0.0561227,0.262862,0.697167,0.0885551,0.907151,0.68059,0.808218,0.260088,0.283675,0.171801,0.838924,0.418364,0.980247,0.820637,0.76968,0.183254,0.10266,0.258893,0.868792,0.752698,0.89806,0.194629,0.241742,0.233784,0.840207,0.719176,0.200393,0.170548,0.724589,0.417604,0.946452,0.0552924,0.41945,0.543532,0.362446,0.0531546,0.687502,0.0438336,0.538809,0.410536,0.781565,0.883339,0.274183,0.25253,0.278139,0.866841,0.144863,0.802729,0.234213,0.451139,0.490329,0.590441,0.0774306,0.0664512,0.234774,0.428739,0.536136,0.41773,0.454558,0.0781615,0.09634,0.579458,0.102444,0.490297,0.604673,0.96718,0.92196,0.823649,0.406731,0.0668797,0.866358,0.873716,0.413205,0.400933,0.496933,0.567429,0.824975,0.235793,0.837028,0.698451,0.567458,0.762475,0.805456,0.601698,0.802756,0.36851,0.157782,0.442248,0.0124403,0.512503,0.344383,0.391585,0.724409,0.643533,0.0856206,0.185514,0.499939,0.609965,0.251551,0.64565,0.675269,0.412344,0.142788,0.569016,0.48182,0.764469,0.0753982,0.103127,0.465047,0.896568,0.612566,0.451653,0.961228,0.331779,0.156881,0.355602,0.257182,0.916684,0.120527,0.270746,0.92447,0.701484,0.305767,0.642877,0.708516,0.406531,0.903186,0.621926,0.549433,0.284264,0.0225806,0.477112,0.819791,0.113208,0.0349138,0.0243254,0.241922,0.712355,0.873769,0.569793,0.281191,0.484574,0.805737,0.713425,0.064351,0.075773,0.625207,0.0838704,0.273713,0.596982,0.205607,0.771087,0.978858,0.287649,0.838138,0.795075,0.247723,0.0965694,0.423396,0.495152,0.817241,0.0260484,0.0999532,0.107911,0.597255,0.529631,0.242699,0.552874,0.474439,0.881897,0.995631,0.858322,0.588679,0.381816,0.917467,0.577296,0.136476,0.689997,0.747966,0.18134,0.667788,0.365144,0.751131,0.83818,0.133847,0.282149,0.966127,0.209361,0.608511,0.825957,0.468638,0.709112,0.658656,0.970702,0.558791,0.771792,0.267389,0.391253,0.134364,0.675574,0.553957,0.500523,0.58267,0.702177,0.025269,0.409429,0.353611,0.00356871,0.765182,0.452875,0.643894,0.935467,0.275386,0.100446,0.40738,0.487606,0.802419,0.833717,0.249317,0.0351694,0.261458,0.502988,0.500621,0.823454,0.306992,0.479681,0.335521,0.760896,0.416913,0.673913,0.0172904,0.00176501,0.871416,0.243848,0.0859964,0.999347,0.238903,0.726852,0.774174,0.339732,0.784131,0.814138,0.970759,0.608858,0.0214084,0.893524,0.633851,0.490424,0.17892,0.384816,0.343593,0.292452,0.107173,0.152224,0.642657,0.246194,0.560373,0.0699026,0.498936,0.922926,0.0545725,0.405683,0.183041,0.381963,0.0132819,0.244293,0.076107,0.674921,0.484094,0.987761,0.837779,0.0813848,0.708795,0.71729,0.979584,0.374399,0.546811,0.539889,0.422724,0.632627,0.2599,0.939875,0.039134,0.727235,0.460844,0.192522,0.48488,0.630346,0.919857,0.578431,0.586523,0.701585,0.937954,0.484537,0.657819,0.758628,0.314303,0.572394,0.417155,0.970496,0.0189567,0.887926,0.793208,0.504302,0.0591475,0.459909,0.977942,0.133211,0.36928,0.177665,0.729549,0.714334,0.897107,0.0199983,0.425355,0.258892,0.84394,0.173098,0.0750751,0.812828,0.676048,0.801318,0.614496,0.923149,0.62347,0.493433,0.895002,0.722581,0.368799,0.26113,0.263549,0.270945,0.33637,0.495397,0.732259,0.219934,0.239647,0.111605,0.636068,0.714296,0.49895,0.438603,0.522891,0.242444,0.979742,0.731173,0.929373,0.0845506,0.922762,0.452129,0.685655,0.435248,0.610597,0.218335,0.834452,0.333855,0.862946,0.22286,0.380093,0.419432,0.699986,0.936807,0.212584,0.864801,0.454209,0.725903,0.00435406,0.393207,0.301729,0.590147,0.348052,0.479703,0.346031,0.994808,0.525002,0.0176255,0.727754,0.76746,0.00213337,0.769009,0.441824,0.64801,0.983503,0.649252,0.907831,0.0790522,0.81496,0.117885,0.798392,0.390113,0.349122,0.0374722,0.835494,0.599352,0.216719,0.785611,0.544812,0.308215,0.978115,0.348086,0.448832,0.104068,0.862601,0.0751228,0.974853,0.790517,0.894504,0.398787,0.442051,0.214511,0.654506,0.76027,0.512333,0.614776,0.596667,0.425838,0.171534,0.981651,0.727471,0.491229,0.610079,0.01796,0.271937,0.0641617,0.239007,0.720937,0.988339,0.262709,0.590166,0.658902,0.0037365,0.932776,0.570343,0.478219,0.0364997,0.356348,0.119722,0.812538,0.0650827,0.023359,0.600934,0.124454,0.787147,0.309723,0.203117,0.173317,0.00355685,0.0773211,0.780708,0.534213,0.971046,0.594978,0.629014,0.133089,0.20115,0.043277,0.256335,0.240889,0.78319,0.880686,0.960316,0.602093,0.503049,0.234472,0.274895,0.424904,0.947984,0.182502,0.809665,0.258003,0.39275,0.0247431,0.202836,0.0180138,0.900134,0.277033,0.696749,0.639029,0.410987,0.844335,0.531267,0.6638,0.69828,0.842702,0.886534,0.908455,0.820574,0.701656,0.753042,0.279987,0.59336,0.560829,0.886556,0.567959,0.662625,0.401319,0.199373,0.152447,0.830634,0.249871,0.303351,0.313489,0.796542,0.693372,0.252668,0.12598,0.537626,0.697464,0.121783,0.97008,0.239835,0.0217883,0.80041,0.954147,0.0689682,0.827338,0.46652,0.557879,0.873807,0.861539,0.81755,0.0819592,0.330737,0.00753969,0.60131,0.853371,0.330524,0.604491,0.615548,0.520175,0.0133779,0.377449,0.778206,0.443347,0.321259,0.00475621,0.487223,0.937062,0.23936,0.244054,0.290497,0.848589,0.855019,0.726279,0.468721,0.156658,0.283195,0.00155389,0.0523369,0.928174,0.90212,0.407605,0.174051,0.0678682,0.07231,0.546766,0.165827,0.73296,0.966218,0.247828,0.351085,0.709716,0.148678,0.985365,0.927087,0.181963,0.221738,0.335834,0.684657,0.589021,0.521727,0.515446,0.688675,0.124501,0.455727,0.838521,0.823694,0.970176,0.646366,0.982142,0.197987,0.194504,0.574756,0.218708,0.638926,0.195748,0.623935,0.736309,0.136055,0.24794,0.299985,0.885694,0.581623,0.918946,0.127696,0.101226,0.836736,0.289567,0.691004,0.790341,0.163075,0.0455273,0.923156,0.143133,0.23364,0.184696,0.575395,0.335882,0.784485,0.695282,0.946034,0.687975,0.996253,0.386323,0.828355,0.35452,0.710691,0.176413,0.530321,0.627224,0.941549,0.785073,0.259702,0.503697,0.772602,0.904539,0.280466,0.384336,0.0637584,0.772308,0.787369,0.488341,0.210041,0.682564,0.472193,0.139045,0.0209094,0.387071,0.653145,0.831217,0.0431349,0.396519,0.294793,0.759147,0.39322,0.287103,0.799691,0.117852,0.798315,0.404607,0.214158,0.630549,0.495516,0.405724,0.509772,0.520925,0.385253,0.0355472,0.311112,0.837936,0.769271,0.819102,0.304196,0.50542,0.829083,0.676379,0.0154222,0.784944,0.0527476,0.747211,0.00201023,0.0517751,0.255641,0.572596,0.942859,0.0324931,0.847122,0.152233,0.88008,0.926134,0.895024,0.291574,0.076031,0.110638,0.122158,0.513811,0.825656,0.495218,0.586099,0.568402,0.967975,0.773647,0.711672,0.262857,0.668345,0.928586,0.621894,0.880933,0.143178,0.327587,0.811423,0.891124,0.69514,0.531495,0.982125,0.390983,0.472779,0.519367,0.471278,0.0499876,0.0744454,0.473139,0.777209,0.909427,0.0720578,0.357035,0.112495,0.112657,0.622901,0.187987,0.295612,0.813552,0.501666,0.147497,0.337695,0.87514,0.312365,0.0550394,0.507179,0.280682,0.772856,0.897422,0.337546,0.899711,0.792306,0.854824,0.602249,0.470892,0.165776,0.0356861,0.00734872,0.622257,0.553948,0.121025,0.400842,0.607336,0.320605,0.67843,0.759768,0.792635,0.985164,0.313367,0.437213,0.468832,0.857812,0.245888,0.849866,0.990567,0.445348,0.995834,0.700794,0.817096,0.321978,0.548379,0.793184,0.1462,0.923309,0.70939,0.963308,0.852345,0.123662,0.735886,0.610787,0.197211,0.426502,0.0696728,0.342988,0.782235,0.600756,0.745727,0.36521,0.110616,0.166426,0.538786,0.754048,0.572526,0.204554,0.844281,0.0464787,0.387641,0.328709,0.390514,0.462716,0.797631,0.716089,0.670586,0.446576,0.661913,0.196978,0.829551,0.51534,0.39181,0.347184,0.0136296,0.262715,0.96244,0.852386,0.0830826,0.560007,0.527453,0.889386,0.591383,0.540186,0.519646,0.760343,0.468581,0.884068,0.0435565,0.480094,0.425535,0.19131,0.809253,0.847945,0.149592,0.049211,0.791262,0.0573632,0.559327,0.123624,0.230157,0.607369,0.697103,0.964721,0.883846,0.989483,0.516335,0.392892,0.92422,0.60538,0.172644,0.311204,0.202408,0.505705,0.389001,0.799704,0.421216,0.613579,0.0436642,0.286719,0.442767,0.787565,0.843472,0.629353,0.863128,0.450276,0.714904,0.199536,0.410693,0.351303,0.175544,0.188612,0.321798,0.437805,0.778034,0.0978234,0.684537,0.341577,0.426618,0.247141,0.951448,0.25235,0.305772,0.125195,0.577772,0.316075,0.181873,0.21437,0.759189,0.0234435,0.112327,0.171866,0.231016,0.557972,0.919904,0.152988,0.162935,0.787311,0.744768,0.0572789,0.252673,0.930007,0.702628,0.389038,0.316512,0.131441,0.517855,0.323955,0.61801,0.297924,0.00060451,0.498915,0.0617639,0.964772,0.142805,0.17721,0.916732,0.345297,0.204892,0.283207,0.954161,0.480542,0.911695,0.17993,0.833552,0.0128936,0.391404,0.0956687,0.583316,0.275662,0.35298,0.844651,0.432635,0.337239,0.580898,0.149783,0.691951,0.712448,0.44623,0.737948,0.704255,0.697714,0.99243,0.0699959,0.39814,0.191052,0.372988,0.637191,0.945862,0.48506,0.179919,0.311423,0.414672,0.429102,0.184324,0.308762,0.466888,0.659815,0.405861,0.698429,0.167699,0.30909,0.0888742,0.0137827,|0.0543162,0.779786,0.757143,0.237334,0.606903,0.540165,0.650584,0.387812,0.11103,0.443439,0.14672,0.600397,0.759725,0.713386,0.431814,0.324565,0.184835,0.179157,0.683873,0.152965,0.718791,0.381792,0.742337,0.486904,0.98425,0.702072,0.205199,0.773132,0.356945,0.704304,0.394428,0.429114,0.55649,0.279392,0.35702,0.666702,0.627277,0.12232,0.281927,0.302271,0.286324,0.291824,0.566727,0.44723,0.786803,0.47771,0.226947,0.399684,0.443437,0.729446,0.773582,0.993741,0.2606,0.0439801,0.293181,0.729685,0.0598894,0.520772,0.536119,0.920678,0.222066,0.540074,0.180851,0.588915,0.0472975,0.261011,0.879382,0.667655,0.162615,0.0617065,0.559428,0.369097,0.00432342,0.460426,0.763439,0.630267,0.826459,0.00692374,0.515074,0.195978,0.224696,0.33315,0.786341,0.350425,0.108188,0.242663,0.527243,0.326285,0.50388,0.115336,0.204208,0.871153,0.82846,0.75244,0.73181,0.630236,0.42691,0.438389,0.646239,0.383481,0.537976,0.560785,0.273583,0.143407,0.793251,0.401184,0.973136,0.44539,0.222396,0.551976,0.635746,0.126917,0.410499,0.103842,0.821009,0.270926,0.16371,0.558497,0.5375,0.245014,0.703876,0.695495,0.453035,0.421373,0.724404,0.137254,0.445558,0.944511,0.554903,0.13839,0.946762,0.876753,0.65035,0.530167,0.595931,0.412325,0.577236,0.219822,0.0803269,0.0510672,0.812163,0.163936,0.668989,0.990477,0.333992,0.61806,0.656792,0.726311,0.17964,0.681889,0.552175,0.224642,0.30973,0.958172,0.404956,0.962064,0.0689574,0.849225,0.499809,0.277653,0.743547,0.38309,0.542878,0.227446,0.272646,0.0968746,0.30112,0.0395088,0.0605013,0.222094,0.771936,0.63704,0.551982,0.235279,0.254348,0.556607,0.850586,0.74926,0.30961,0.317752,0.872995,0.351494,0.549709,0.410142,0.927037,0.640627,0.204056,0.793187,0.692053,0.454625,0.359442,0.0812961,0.810252,0.664059,0.440936,0.148152,0.880695,0.469553,0.250641,0.0448703,0.68234,0.803581,0.5312,0.258277,0.280671,0.144645,0.00143313,0.908475,0.602858,0.564864,0.317903,0.825969,0.39566,0.0319144,0.537947,0.107739,0.427601,0.413035,0.0228013,0.592783,0.777327,0.114214,0.684712,0.679257,0.0339695,0.252074,0.769533,0.084071,0.489399,0.0596317,0.817229,0.627262,0.355304,0.860807,0.0267965,0.71539,0.495339,0.51708,0.953313,0.613407,0.579364,0.0035888,0.397562,0.496306,0.0820544,0.237975,0.325924,0.106377,0.205499,0.315175,0.756028,0.708468,0.862659,0.866595,0.673333,0.608778,0.782555,0.689211,0.118249,0.67658,0.199425,0.00128418,0.874625,0.194967,0.557086,0.566606,0.92158,0.842047,0.106284,0.405514,0.0111446,0.766498,0.219288,0.900941,0.0121097,0.418408,0.515874,0.719134,0.239821,0.559552,0.130705,0.0405118,0.165085,0.995672,0.0665375,0.921811,0.810648,0.430854,0.580655,0.411463,0.759615,0.257189,0.347463,0.112679,0.00668144,0.739507,0.775954,0.615888,0.562482,0.344186,0.0227059,0.728681,0.577059,0.351486,0.487723,0.350898,0.0032599,0.970873,0.595983,0.809918,0.394491,0.61523,0.916321,0.983234,0.573828,0.100068,0.161822,0.380322,0.894791,0.798599,0.439563,0.85521,0.873248,0.341086,0.938964,0.29107,0.716185,0.138566,0.960388,0.596299,0.640463,0.555133,0.444353,0.796511,0.126753,0.42462,0.90986,0.360035,0.0176064,0.347994,0.478786,0.110568,0.611603,0.560855,0.708616,0.0514315,0.516268,0.740772,0.478212,0.173954,0.433153,0.374881,0.0676707,0.821023,0.873542,0.63113,0.519579,0.167158,0.0216396,0.78496,0.476429,0.321402,0.256518,0.772252,0.365639,0.708177,0.0288533,0.103139,0.717116,0.452983,0.451587,0.702729,0.734538,0.833576,0.481794,0.186961,0.877616,0.319186,0.34718,0.233101,0.605269,0.305322,0.905973,0.663232,0.373037,0.470522,0.47409,0.88183,0.845527,0.404407,0.269769,0.639913,0.0568389,0.684443,0.869297,0.849443,0.159243,0.093805,0.343377,0.433962,0.0957794,0.495397,0.556571,0.895778,0.00205117,0.0783288,0.881798,0.481888,0.256753,0.684033,0.259709,0.36312,0.899363,0.0931865,0.486876,0.0349031,0.748202,0.666053,0.209876,0.661322,0.386641,0.733857,0.412986,0.280976,0.962552,0.4834,0.136243,0.525901,0.907678,0.887546,0.0517196,0.863322,0.907716,0.689686,0.0892318,0.712026,0.185361,0.13098,0.538924,0.524066,0.87793,0.915664,0.46229,0.170944,0.0159925,0.892697,0.257872,0.187765,0.369693,0.115147,0.807081,0.966763,0.444075,0.578986,0.60923,0.63737,0.331393,0.0325844,0.109601,0.705408,0.923741,0.292503,0.331268,0.329696,0.561202,0.483664,3.62992e-05,0.0951652,0.0221519,0.0506674,0.763113,0.257687,0.359861,0.332706,0.442156,0.441544,0.160926,0.447571,0.021633,0.524391,0.286867,0.329763,0.420309,0.440858,0.0635329,0.800028,0.509822,0.752469,0.869828,0.797144,0.789728,0.293294,0.434412,0.452746,0.948953,0.320729,0.719797,0.329643,0.283031,0.668308,0.655661,0.54627,0.106623,0.990883,0.598409,0.404989,0.322699,0.114004,0.815267,0.696881,0.993952,0.701649,0.425173,0.0181925,0.400265,0.339353,0.817684,0.413987,0.578482,0.817894,0.631527,0.348951,0.45504,0.537857,0.395416,0.507666,0.390637,0.582197,0.263987,0.861424,0.183029,0.735843,0.848483,0.6095,0.168925,0.121348,0.938777,0.566222,0.727613,0.660219,0.966559,0.0840173,0.761984,0.234555,0.361816,0.134107,0.668061,0.549512,0.480891,0.0189241,0.761631,0.245979,0.944568,0.00264925,0.507809,0.66652,0.423367,0.156639,0.416862,0.312867,0.264998,0.0159388,0.995827,0.519437,0.628736,0.669713,0.805368,0.151208,0.277677,0.122977,0.942232,0.124299,0.906892,0.86483,0.616049,0.128951,0.221488,0.210675,0.876838,0.870312,0.235282,0.321983,0.462827,0.0595695,0.684379,0.0636425,0.357757,0.840252,0.181629,0.851147,0.210726,0.476888,0.280697,0.626063,0.61971,0.490855,0.762359,0.360813,0.429442,0.682772,0.0108548,0.596595,0.0188077,0.550107,0.509159,0.585128,0.829575,0.479967,0.0962006,0.118622,0.220091,0.0682337,0.964211,0.858975,0.852164,0.846468,0.583659,0.131128,0.902586,0.154774,0.102542,0.13067,0.264093,0.0867988,0.629742,0.904993,0.210486,0.307639,0.564547,0.631782,0.798796,0.076795,0.405244,0.89516,0.964043,0.859545,0.214064,0.34729,0.0570138,0.744507,0.114769,0.517651,0.96497,0.740686,0.588734,0.885328,0.44296,0.851194,0.283293,0.507581,0.0112619,0.317816,0.243334,0.209643,0.604746,0.366842,0.996146,0.343732,0.215839,0.480258,0.619642,0.694451,0.210409,0.947116,0.55242,0.216302,0.820989,0.740434,0.0171718,0.777941,0.931796,0.136722,0.436329,0.259237,0.127436,0.901692,0.66236,0.746141,0.937043,0.453754,0.966372,0.0570937,0.986936,0.945464,0.877305,0.205219,0.879971,0.736241,0.224805,0.343363,0.131982,0.334684,0.0456961,0.754943,0.835834,0.312139,0.0453848,0.557985,0.876634,0.734312,0.384697,0.408541,0.320594,0.656594,0.756374,0.889039,0.559946,0.650369,0.142622,0.716414,0.0660513,0.710833,0.120525,0.800542,0.945557,0.174952,0.0641994,0.310858,0.519663,0.89243,0.0391114,0.523547,0.815318,0.247958,0.168144,0.622177,0.52532,0.302647,0.333004,0.744759,0.28036,0.0558613,0.174436,0.757148,0.42919,0.989905,0.922666,0.749771,0.704108,0.526767,0.197932,0.55698,0.108017,0.104095,0.949512,0.344867,0.660105,0.315119,0.0497346,0.137104,0.018653,0.816587,0.760067,0.343198,0.690436,0.995304,0.346677,0.872015,0.851046,0.623456,0.537155,0.307941,0.861441,0.0769978,0.817569,0.322534,0.962186,0.0229535,0.62347,0.282712,0.212722,0.972182,0.364931,0.395661,0.995434,0.613238,0.321287,0.682235,0.258265,0.611255,0.750568,0.820163,0.538853,0.184317,0.231986,0.304291,0.895769,0.821902,0.719208,0.396379,0.674186,0.566045,0.162223,0.720902,0.121375,0.656344,0.779494,0.859354,0.833281,0.129925,0.381817,0.686738,0.632254,0.551347,0.424817,0.168055,0.889839,0.254827,0.997053,0.459728,0.544625,0.722732,0.293035,0.579616,0.615518,0.294397,0.653166,0.303777,0.635168,0.841671,0.630404,0.856953,0.769811,0.290873,0.220817,0.433562,0.0990121,0.740931,0.435212,0.726795,0.00275779,0.766557,0.501643,0.590453,0.590002,0.768216,0.116023,0.960501,0.07046,0.600137,0.776991,0.235137,0.989073,0.401227,0.453082,0.18417,0.129987,0.991911,0.994333,0.234133,0.62957,0.147531,0.495856,0.950902,0.0798798,0.486991,0.0818375,0.189639,0.908182,0.606839,0.22235,0.715878,0.597803,0.163676,0.0445037,0.812706,0.631802,0.0394843,0.19139,0.454695,0.92519,0.159653,0.0442541,0.67486,0.240508,0.19605,0.5673,0.169533,0.524361,0.806809,0.737787,0.0290624,0.799253,0.156585,0.75188,0.119084,0.39051,0.98209,0.537391,0.923678,0.137399,0.179599,0.279055,0.463713,0.727337,0.483241,0.371587,0.678501,0.0172095,0.758119,0.760749,0.909823,0.151896,0.482373,0.363554,0.867806,0.0552163,0.533363,0.596871,0.957264,0.186761,0.28238,0.896015,0.548729,0.425989,0.0358205,0.50209,0.0355595,0.38575,0.530543,0.792553,0.197747,0.165644,0.312951,0.143929,0.573684,0.295835,0.21977,0.389404,0.494828,0.450242,0.604998,0.185709,0.20304,0.601807,0.338604,0.274722,0.239835,0.131665,0.78103,0.0672175,0.451114,0.742384,0.873054,0.672469,0.339101,0.48109,0.575109,0.536896,0.570671,0.941828,0.639128,0.157782,0.310829,0.809229,0.174593,0.532737,0.281417,0.641638,0.0971076,0.583605,0.139715,0.513085,0.0581182,0.74605,0.709332,0.839875,0.378787,0.191085,0.347295,0.584935,0.399781,0.70251,0.990118,0.725954,0.4144,0.879713,0.366333,0.394117,0.155948,0.419741,0.505217,0.972925,0.347384,0.742652,0.71287,0.863213,0.706202,0.932854,0.578791,0.118027,0.761112,0.124769,0.119249,0.916256,0.512751,0.0861885,0.670188,0.247254,0.61508,|0.40609,0.236512,0.832445,0.663153,0.667349,0.208305,0.428855,0.382833,0.0806155,0.94145,0.283677,0.0282591,0.58574,0.478973,0.0946443,0.444051,0.494606,0.67962,0.222081,0.637272,0.573266,0.0395148,0.0231348,0.559536,0.383395,0.585093,0.993902,0.688197,0.335051,0.357879,0.635257,0.413737,0.314497,0.488015,0.278964,0.0846212,0.990503,0.0450376,0.304895,0.932089,0.0544792,0.174448,0.84774,0.283393,0.108908,0.185548,0.183803,0.0320435,0.516624,0.0342071,0.615198,0.00573879,0.0379711,0.305806,0.554422,0.77786,0.535412,0.592608,0.0101696,0.317401,0.613403,0.268403,0.311912,0.709099,0.530184,0.41514,0.178046,0.56736,0.0839004,0.886595,0.301003,0.821266,0.272306,0.088348,0.110236,0.0296613,0.957484,0.0526512,0.827938,0.325199,0.666068,0.967842,0.965194,0.595689,0.17142,0.74087,0.404491,0.405547,0.0405052,0.043551,0.742302,0.775116,0.624477,0.111306,0.504437,0.535777,0.366839,0.542709,0.684459,0.382205,0.70448,0.172517,0.105774,0.483584,0.11054,0.828363,0.399697,0.971517,0.709086,0.0804929,0.72325,0.913872,0.111712,0.756933,0.842588,0.903598,0.683559,0.0154068,0.178134,0.415397,0.850229,0.861379,0.867076,0.861838,0.0522777,0.479879,0.785724,0.29876,0.15522,0.119433,0.184511,0.396675,0.628681,0.11894,0.740809,0.0238392,0.185027,0.411825,0.0915741,0.850735,0.504342,0.294975,0.961583,0.834237,0.386502,0.0866604,0.942589,0.51827,0.731768,0.214537,0.299169,0.275901,0.120323,0.0384441,0.0333374,0.250503,0.496739,0.847133,0.664837,0.816736,0.817525,0.219743,0.524488,0.438333,0.798696,0.696676,0.630615,0.572173,0.41831,0.575722,0.044341,0.183973,0.724807,0.573212,0.68268,0.0297992,0.460728,0.648432,0.47969,0.320443,0.0236307,0.942146,0.791502,0.257315,0.92319,0.146325,0.60075,0.0242791,0.624235,0.894595,0.512597,0.669482,0.91721,0.897225,0.544184,0.162711,0.188497,0.424735,0.430638,0.169832,0.627908,0.675012,0.277148,0.395534,0.302913,0.466724,0.555519,0.592897,0.338294,0.351907,0.192786,0.735786,0.27908,0.195304,0.506153,0.129399,0.318636,0.939625,0.150399,0.47243,0.401631,0.937441,0.0663522,0.228827,0.224028,0.794331,0.482148,0.088701,0.989753,0.174137,0.715704,0.530636,0.829051,0.456423,0.131275,0.130246,0.462794,0.159054,0.782229,0.854584,0.567256,0.108971,0.899774,0.677258,0.0832402,0.836681,0.0932545,0.487533,0.844603,0.724453,0.970045,0.462205,0.860487,0.914101,0.744355,0.458,0.831386,0.054498,0.785532,0.336325,0.567981,0.363066,0.13037,0.776839,0.220008,0.458848,0.399808,0.842634,0.650212,0.626574,0.247366,0.423437,0.154245,0.427505,0.903747,0.0975646,0.489431,0.206387,0.520473,0.260792,0.4707,0.594429,0.685187,0.458986,0.117678,0.226563,0.337817,0.83987,0.98175,0.893306,0.400422,0.922061,0.939271,0.841339,0.878474,0.760515,0.138708,0.529248,0.0162472,0.0769765,0.991145,0.127092,0.724751,0.0626093,0.838198,0.739879,0.113273,0.599358,0.686272,0.350264,0.453922,0.429847,0.66375,0.0475647,0.593349,0.187715,0.918017,0.769256,0.176047,0.88189,0.0150459,0.453659,0.522565,0.0451832,0.876847,0.9548,0.215142,0.101522,0.22598,0.863936,0.446635,0.335254,0.806086,0.995591,0.400888,0.707908,0.368894,0.719573,0.854304,0.176817,0.362056,0.249804,0.76559,0.0943452,0.548329,0.702498,0.107025,0.326574,0.544776,0.729271,0.918464,0.450199,0.249769,0.13741,0.487001,0.140591,0.141353,0.832102,0.343664,0.362368,0.853032,0.0315659,0.554678,0.560731,0.407571,0.480331,0.413247,0.401158,0.838052,0.54416,0.228347,0.722106,0.0360428,0.487021,0.123593,0.583531,0.867795,0.538448,0.401945,0.171379,0.504177,0.073667,0.727217,0.287794,0.805073,0.408277,0.662561,0.57443,0.93109,0.248343,0.25669,0.261585,0.889928,0.0131689,0.429629,0.0278844,0.797763,0.350196,0.22259,0.814902,0.379054,0.0469776,0.798924,0.386416,0.368575,0.255462,0.597217,0.155641,0.906446,0.538827,0.105345,0.349878,0.966026,0.169334,0.865873,0.266515,0.237645,0.972754,0.915668,0.233773,0.426087,0.780346,0.804219,0.81415,0.508746,0.387807,0.922917,0.599471,0.323556,0.702535,0.0361238,0.49686,0.953242,0.271475,0.719137,0.142641,0.675087,0.803256,0.488445,0.0809579,0.695911,0.0588461,0.607821,0.863082,0.59372,0.165394,0.723345,0.0947645,0.592625,0.73309,0.539298,0.507777,0.00953257,0.227376,0.443577,0.0200106,0.0444255,0.774503,0.502444,0.895431,0.45684,0.684992,0.173872,0.252663,0.998379,0.0905693,0.488361,0.744921,0.598314,0.353611,0.305983,0.992818,0.675437,0.144964,0.368024,0.197402,0.0333381,0.68785,0.810641,0.528505,0.776691,0.235284,0.855074,0.630192,0.259837,0.88008,0.866667,0.649373,0.0227859,0.888964,0.0756957,0.29137,0.632016,0.94525,0.612293,0.266719,0.595065,0.190878,0.855631,0.391164,0.671549,0.883055,0.54951,0.158313,0.250334,0.782722,0.639488,0.666742,0.757611,0.798857,0.30639,0.0473526,0.35019,0.758089,0.922216,0.0389584,0.541255,0.332382,0.0727257,0.0126027,0.72578,0.552515,0.0983407,0.266923,0.203253,0.0699153,0.423904,0.199007,0.902798,0.852883,0.763899,0.649095,0.584173,0.509881,0.477906,0.47368,0.391742,0.143624,0.325339,0.246624,0.0123314,0.562486,0.159547,0.587027,0.643739,0.775514,0.220668,0.501345,0.267382,0.361975,0.47661,0.94771,0.166503,0.245532,0.0497131,0.96955,0.905546,0.612023,0.830171,0.157251,0.464147,0.677869,0.141452,0.987964,0.924759,0.98692,0.771175,0.13268,0.480543,0.241068,0.856926,0.0304047,0.92816,0.322579,0.312648,0.448032,0.29265,0.0242715,0.742399,0.518351,0.63313,0.437962,0.0364436,0.837515,0.547879,0.748765,0.588307,0.146944,0.3134,0.249621,0.847247,0.909187,0.865967,0.752181,0.796321,0.195506,0.388883,0.320409,0.999704,0.284046,0.158784,0.418867,0.963955,0.642003,0.207605,0.299048,0.0845867,0.0853083,0.626306,0.340806,0.771177,0.863061,0.00572133,0.37008,0.162661,0.923853,0.191737,0.155249,0.267079,0.829762,0.230186,0.70009,0.953315,0.0493498,0.709369,0.053506,0.578089,0.411323,0.521201,0.932241,0.617978,0.317187,0.486254,0.887428,0.706725,0.778746,0.431455,0.322349,0.37037,0.964719,0.924762,0.981769,0.875113,0.288936,0.207543,0.221923,0.0537033,0.830765,0.608784,0.594039,0.0913044,0.843262,0.24973,0.424386,0.855347,0.754618,0.35985,0.475956,0.764196,0.595364,0.342841,0.610406,0.150931,0.336819,0.653516,0.256801,0.308745,0.580103,0.682612,0.20565,0.645708,0.0839816,0.939814,0.695916,0.143692,0.439935,0.144728,0.255257,0.99112,0.115407,0.676275,0.199987,0.217105,0.628134,0.908412,0.13261,0.688574,0.905474,0.580611,0.944337,0.250143,0.130293,0.540295,0.906321,0.487388,0.550996,0.85675,0.0321274,0.656856,0.938486,0.43503,0.658685,0.721349,0.650441,0.711389,0.117393,0.0572412,0.181493,0.747977,0.480186,0.272297,0.714391,0.713929,0.895413,0.212266,0.51972,0.736968,0.208933,0.968385,0.793069,0.425485,0.631633,0.315032,0.584189,0.466062,0.470206,0.0611376,0.044949,0.897596,0.898712,0.964166,0.753206,0.678914,0.0320521,0.0268387,0.661822,0.396192,0.782961,0.605463,0.114465,0.418586,0.207245,0.119051,0.743052,0.373553,0.369866,0.883379,0.744229,0.13318,0.424202,0.40827,0.366304,0.483789,0.529613,0.674839,0.719988,0.530479,0.613528,0.726827,0.182291,0.847355,0.702633,0.0163549,0.306619,0.978586,0.0346762,0.0930271,0.771362,0.0947326,0.255996,0.829534,0.129889,0.887744,0.556618,0.0722312,0.941229,0.670176,0.66689,0.67724,0.880729,0.859869,0.26649,0.0730247,0.0178506,0.320518,0.423613,0.254704,0.837186,0.805576,0.274005,0.277467,0.310568,0.302123,0.797386,0.37695,0.710287,0.49046,0.274481,0.42323,0.325958,0.0133225,0.118973,0.826148,0.163112,0.880622,0.674143,0.426557,0.919789,0.20144,0.846306,0.489184,0.219822,0.0592554,0.82204,0.587459,0.0476692,0.239046,0.00159484,0.718877,0.676611,0.977713,0.403431,0.633499,0.0430328,0.71685,0.821187,0.0911515,0.265627,0.8514,0.102391,0.767955,0.633458,0.281179,0.578976,0.178911,0.875334,0.398702,0.248191,0.155525,0.181643,0.202971,0.22939,0.73728,0.953053,0.869243,0.540148,0.405788,0.215207,0.707217,0.523573,0.54495,0.41584,0.70498,0.586516,0.353682,0.921484,0.944688,0.819334,0.261304,0.638398,0.497118,0.875269,0.159598,0.879188,0.778059,0.517791,0.442558,0.556707,0.815153,0.025367,0.938193,0.416494,0.400052,0.0171105,0.650985,0.325217,0.634289,0.572263,0.631279,0.807782,0.166519,0.604428,0.315509,0.387688,0.757369,0.189171,0.79216,0.757587,0.10146,0.575261,0.784081,0.551575,0.730338,0.634268,0.154744,0.160416,0.599305,0.0394626,0.0972369,0.32279,0.469585,0.928994,0.437386,0.468483,0.611608,0.000466287,0.341051,0.844821,0.899224,0.83654,0.625854,0.256421,0.92263,0.404824,0.148958,0.88334,0.945248,0.844904,0.937977,0.203784,0.665939,0.54011,0.757797,0.99674,0.326244,0.615281,0.692183,0.963721,0.148212,0.927175,0.200936,0.0787438,0.0618248,0.663921,0.276187,0.162692,0.34087,0.321177,0.771357,0.461559,0.483883,0.681501,0.715776,0.59978,0.645846,0.77649,0.629388,0.0157161,0.394377,0.339472,0.0104783,0.790662,0.176971,0.40422,0.880242,0.687132,0.393878,0.355719,0.167466,0.113019,0.925397,0.57362,0.0802774,0.581684,0.0422331,0.036774,0.164335,0.357634,0.199945,0.655224,0.90187,0.0592076,0.176087,0.811696,0.131749,0.0763257,0.729442,0.629636,0.538851,0.0498943,0.304093,0.576807,0.030165,0.12994,0.983194,0.898436,0.504091,0.778666,0.437096,0.872226,0.946087,0.555841,0.809348,0.468325,0.611708,0.166342,0.792584,0.788114,0.175172,0.409806,|0.557072,0.526727,0.4604,0.157211,0.0295092,0.787522,0.783101,0.865291,0.807054,0.794705,0.372624,0.223902,0.718083,0.288621,0.640711,0.703829,0.448016,0.741711,0.480877,0.1726,0.402512,0.785495,0.342924,0.923254,0.602192,0.536391,0.94271,0.370802,0.774819,0.0539306,0.481861,0.257115,0.31979,0.973154,0.874954,0.420512,0.231136,0.962919,0.995579,0.186305,0.922523,0.298806,0.860552,0.537386,0.925113,0.0511908,0.283019,0.203969,0.582315,0.967911,0.834086,0.533984,0.91463,0.285728,0.988269,0.507567,0.499607,0.121054,0.906243,0.914696,0.716554,0.820985,0.69585,0.0887969,0.364525,0.792967,0.550018,0.680312,0.651581,0.718232,0.96885,0.193871,0.80708,0.925084,0.0801712,0.58425,0.417284,0.870247,0.485985,0.171187,0.651385,0.414207,0.072758,0.386878,0.963206,0.429802,0.133299,0.21043,0.232243,0.259265,0.773327,0.495386,0.264474,0.364901,0.878616,0.27288,0.242695,0.0768941,0.720111,0.260905,0.457328,0.346478,0.77265,0.657518,0.560838,0.502406,0.540159,0.335058,0.325985,0.447096,0.757381,0.365937,0.597655,0.725077,0.801891,0.596283,0.221169,0.318244,0.0748402,0.0324684,0.866793,0.081774,0.51029,0.638132,0.108497,0.66743,0.569084,0.770456,0.322428,0.300006,0.555333,0.746245,0.948829,0.357738,0.381858,0.755771,0.990203,0.991077,0.978346,0.887371,0.0034824,0.953308,0.787105,0.21243,0.816776,0.916453,0.686005,0.0764222,0.434484,0.316843,0.111577,0.842194,0.808446,0.191158,0.549824,0.233283,0.38058,0.898762,0.812638,0.303575,0.758415,0.901602,0.385318,0.550387,0.960909,0.083664,0.451475,0.684008,0.740157,0.938087,0.875712,0.447708,0.614906,0.28912,0.610555,0.138455,0.417613,0.791218,0.632305,0.389158,0.175768,0.197977,0.961894,0.0486177,0.567087,0.663641,0.656274,0.847301,0.900808,0.968973,0.953243,0.673613,0.94566,0.0359679,0.234281,0.0877274,0.504565,0.30821,0.129095,0.560847,0.923626,0.106246,0.583684,0.22885,0.736434,0.834002,0.326999,0.391871,0.861016,0.427799,0.613804,0.305384,0.087947,0.448569,0.981526,0.932548,0.141651,0.964781,0.721255,0.657809,0.67319,0.514447,0.64537,0.937635,0.101501,0.628688,0.488526,0.715659,0.695554,0.493467,0.787379,0.532524,0.611906,0.22952,0.574419,0.818225,0.103394,0.303548,0.8432,0.286044,0.786685,0.950527,0.507109,0.0514959,0.695067,0.917558,0.654719,0.179527,0.0773548,0.956642,0.632876,0.428185,0.330236,0.842339,0.352529,0.779615,0.866275,0.305093,0.634932,0.240592,0.0794572,0.175161,0.587003,0.637732,0.151732,0.868878,0.156249,0.187617,0.877399,0.483175,0.528408,0.604108,0.665002,0.69225,0.541941,0.892385,0.486677,0.553907,0.300922,0.853981,0.776009,0.651164,0.29525,0.963983,0.124735,0.718791,0.519929,0.842225,0.240458,0.0898187,0.537635,0.981105,0.839756,0.119694,0.209103,0.278309,0.226183,0.373337,0.673545,0.711132,0.0592177,0.918639,0.987883,0.0192472,0.250754,0.926225,0.269682,0.952704,0.681499,0.846357,0.95084,0.439008,0.590409,0.986839,0.398742,0.825686,0.369996,0.279916,0.546172,0.756252,0.128941,0.870113,0.504679,0.757282,0.0996473,0.873154,0.21663,0.0188253,0.763342,0.510316,0.113596,0.847876,0.695115,0.87378,0.0453362,0.776915,0.582943,0.439734,0.449608,0.198078,0.827931,0.198932,0.705206,0.311184,0.356857,0.365335,0.708007,0.509167,0.353004,0.90906,0.0612425,0.98002,0.708621,0.634098,0.360242,0.385583,0.253698,0.0641478,0.330231,0.42682,0.546513,0.261258,0.979837,0.520156,0.00146085,0.892718,0.663265,0.611662,0.704575,0.390685,0.661564,0.667056,0.878694,0.967455,0.562851,0.802262,0.995645,0.00155449,0.00519764,0.237736,0.892003,0.385373,0.0815001,0.465191,0.833571,0.496113,0.606247,0.240551,0.510398,0.776854,0.8093,0.49545,0.186453,0.396804,0.533763,0.939063,0.178623,0.847131,0.70577,0.632441,0.537309,0.799698,0.247924,0.0141735,0.102818,0.330025,0.428593,0.751395,0.823445,0.185497,0.519459,0.0843974,0.348628,0.404222,0.725245,0.959677,0.966239,0.68401,0.22857,0.896955,0.56749,0.330281,0.325661,0.209502,0.309486,0.661184,0.00617576,0.220521,0.113509,0.198042,0.698951,0.330101,0.463107,0.0451968,0.772809,0.806143,0.949301,0.731445,0.600998,0.956941,0.0819809,0.977478,0.0358449,0.735694,0.955782,0.586024,0.218029,0.998264,0.370757,0.679952,0.772707,0.997374,0.882978,0.138203,0.954245,0.431381,0.711142,0.823638,0.564351,0.951735,0.675132,0.313716,0.920513,0.429053,0.370411,0.594054,0.211332,0.196352,0.776228,0.427359,0.997421,0.183214,0.745906,0.152341,0.645887,0.403902,0.35579,0.150519,0.661272,0.561873,0.628758,0.566844,0.240747,0.537065,0.549356,0.822916,0.532785,0.965487,0.128958,0.548908,0.187361,0.273681,0.739395,0.287434,0.843784,0.0726118,0.068735,0.8191,0.916386,0.234215,0.217163,0.958227,0.721029,0.26184,0.26068,0.852621,0.0753858,0.412769,0.165997,0.814162,0.537345,0.477722,0.458185,0.513604,0.0696031,0.291612,0.137191,0.604908,0.788975,0.64041,0.688809,0.423711,0.152606,0.337424,0.260368,0.602656,0.614155,0.846957,0.884093,0.64963,0.821778,0.797652,0.0376205,0.160495,0.307239,0.248473,0.329105,0.279361,0.573605,0.644766,0.0459947,0.457995,0.124002,0.536318,0.166344,0.835058,0.598414,0.820951,0.305431,0.769264,0.765169,0.143319,0.9265,0.166793,0.95501,0.854759,0.270894,0.117008,0.68807,0.0589023,0.769654,0.619366,0.447645,0.951456,0.755913,0.262465,0.433769,0.569738,0.0350599,0.878559,0.788378,0.819591,0.518819,0.216172,0.234206,0.944338,0.253611,0.664853,0.316831,0.786662,0.108195,0.370728,0.320332,0.87829,0.0326141,0.501048,0.388583,0.14427,0.352843,0.810799,0.536043,0.76566,0.742054,0.38695,0.496936,0.599577,0.636597,0.49229,0.962105,0.552854,0.651651,0.959611,0.0445966,0.79248,0.253058,0.697338,0.115894,0.648537,0.0940878,0.327124,0.839567,0.891029,0.624991,0.998381,0.997277,0.987845,0.466031,0.174522,0.675842,0.572545,0.169731,0.51686,0.386971,0.0466248,0.308379,0.303769,0.872122,0.897758,0.183869,0.161496,0.201561,0.0209156,0.764455,0.668687,0.540716,0.245055,0.815364,0.348419,0.880415,0.380908,0.199149,0.345206,0.497073,0.591548,0.544592,0.328233,0.184648,0.930049,0.732147,0.176019,0.538332,0.0317371,0.519052,0.344397,0.981346,0.263898,0.617904,0.208914,0.579509,0.408801,0.344638,0.817852,0.191017,0.949136,0.787637,0.0600494,0.538688,0.222099,0.890877,0.710487,0.23578,0.721277,0.952519,0.482103,0.809911,0.479313,0.707917,0.162743,0.356605,0.476735,0.165772,0.34614,0.359509,0.139623,0.0163025,0.347405,0.497892,0.637745,0.568099,0.385,0.137193,0.70097,0.691634,0.247528,0.520382,0.101719,0.04687,0.414402,0.189627,0.510683,0.935306,0.586186,0.51701,0.839693,0.100101,0.500644,0.0387049,0.426412,0.283002,0.05626,0.367063,0.602529,0.0540461,0.976178,0.000482261,0.44643,0.864764,0.289142,0.66941,0.685142,0.420409,0.576828,0.803045,0.629622,0.933697,0.526271,0.0821754,0.934568,0.489733,0.679102,0.668521,0.150358,0.488434,0.608364,0.955652,0.837375,0.0681009,0.608126,0.536473,0.865352,0.146196,0.933676,0.457836,0.00702167,0.503878,0.990004,0.308994,0.381238,0.681722,0.368956,0.947856,0.414412,0.648658,0.433012,0.343931,0.455373,0.0738078,0.611784,0.425129,0.346362,0.247406,0.0185498,0.622858,0.281718,0.364335,0.362945,0.272352,0.824228,0.699027,0.972239,0.479449,0.0475686,0.280261,0.144547,0.248817,0.944215,0.158958,0.939988,0.925055,0.0716699,0.804125,0.866779,0.497108,0.153145,0.0698234,0.317848,0.39272,0.934542,0.595889,0.357202,0.042729,0.817117,0.063871,0.0881087,0.531812,0.872607,0.0802739,0.404209,0.664107,0.548653,0.204107,0.746794,0.794264,0.819522,0.26662,0.426135,0.603035,0.747153,0.73705,0.458585,0.348472,0.187729,0.796049,0.705609,0.711554,0.296232,0.533564,0.184657,0.440921,0.181442,0.100133,0.510885,0.373312,0.60565,0.113302,0.72917,0.394988,0.191398,0.019004,0.11008,0.652218,0.515474,0.310021,0.955883,0.134185,0.337628,0.612673,0.149473,0.289512,0.492158,0.583139,0.999816,0.44055,0.778008,0.100209,0.359793,0.202689,0.899547,0.83471,0.0191169,0.58352,0.199199,0.279276,0.514374,0.871762,0.0175543,0.00399858,0.798052,0.299304,0.147208,0.731958,0.0738693,0.474448,0.548971,0.954017,0.361341,0.342163,0.372921,0.992947,0.0225686,0.861967,0.934817,0.0890145,0.298125,0.374236,0.116141,0.735348,0.401779,0.632266,0.828236,0.775135,0.474251,0.556541,0.890686,0.889263,0.303372,0.4871,0.206502,0.1604,0.510278,0.600664,0.208706,0.416843,0.590772,0.635286,0.855418,0.496229,0.55274,0.0469941,0.121285,0.64921,0.0460635,0.551735,0.938196,0.790861,0.0198283,0.0364666,0.0570601,0.00958824,0.559844,0.578978,0.654077,0.701107,0.0976681,0.436504,0.672259,0.873842,0.601554,0.882635,0.777115,0.832465,0.833424,0.965282,0.427603,0.492503,0.545708,0.845875,0.00126004,0.222299,0.0120689,0.0493535,0.777754,0.354174,0.110066,0.984573,0.661283,0.955419,0.790835,0.438404,0.354824,0.723484,0.642188,0.975956,0.874284,0.397781,0.302254,0.862875,0.643874,0.932685,0.963537,0.639798,0.43236,0.696173,0.43887,0.624319,0.0748676,0.065998,0.19641,0.807935,0.306124,0.790729,0.588887,0.595319,0.580984,0.354423,0.460336,0.00713795,0.57928,0.38994,0.690784,0.971819,0.915947,0.359143,0.790482,0.0582029,0.936651,0.319284,0.303163,0.198485,0.131835,0.534237,0.114967,0.9098,0.842102,0.183253,0.391447,0.367822,0.678761,0.99616,0.19226,0.930985,0.471942,0.204028,0.286878,0.0418932,0.640908,0.35587,0.108652,0.206461,0.395813,|0.674277,0.0236213,0.726161,0.768218,0.226086,0.0200022,0.142337,0.187276,0.882057,0.328946,0.345265,0.940628,0.770511,0.39834,0.892395,0.553532,0.452021,0.165308,0.126341,0.662463,0.153204,0.652555,0.108982,0.770849,0.335358,0.802742,0.564049,0.827965,0.903582,0.115345,0.529639,0.547494,0.253469,0.137948,0.672657,0.261118,0.524306,0.773492,0.393011,0.424546,0.533943,0.337737,0.648724,0.500081,0.929576,0.802885,0.428797,0.250963,0.946651,0.273998,0.532347,0.705536,0.426646,0.0908831,0.576689,0.9798,0.306626,0.761643,0.990168,0.115651,0.33389,0.83719,0.989988,0.258727,0.615602,0.128302,0.297026,0.919486,0.0700902,0.308794,0.124136,0.727761,0.64832,0.184648,0.911977,0.551526,0.975531,0.590766,0.0813206,0.361355,0.0411127,0.606441,0.47024,0.392841,0.406233,0.922263,0.377756,0.487389,0.291735,0.390415,0.0330855,0.612609,0.222776,0.175871,0.723981,0.173883,0.215087,0.740695,0.445238,0.579308,0.339544,0.240245,0.365008,0.75208,0.359199,0.962513,0.958475,0.111001,0.230885,0.601628,0.61806,0.776174,0.765739,0.413184,0.384594,0.282617,0.117016,0.723196,0.448768,0.167158,0.448367,0.162429,0.437361,0.0737578,0.1327,0.367515,0.689605,0.617725,0.899219,0.397304,0.57701,0.097399,0.351665,0.17781,0.770669,0.155168,0.559196,0.0808836,0.793707,0.313923,0.320764,0.25231,0.687588,0.164025,0.342691,0.0713986,0.792047,0.30726,0.216434,0.266432,0.764621,0.656454,0.71428,0.369101,0.92673,0.902579,0.319474,0.848046,0.84823,0.0251858,0.784684,0.801816,0.0763867,0.454799,0.980978,0.714945,0.646296,0.508128,0.30835,0.481966,0.0434361,0.284012,0.960234,0.926634,0.321929,0.29937,0.163673,0.932167,0.898928,0.830081,0.0458429,0.456757,0.574339,0.263314,0.778582,0.895106,0.92729,0.400196,0.861807,0.508688,0.653108,0.172024,0.533175,0.296886,0.155641,0.580828,0.636611,0.562277,0.923211,0.00409198,0.0139243,0.849345,0.567582,0.650103,0.695126,0.410264,0.662895,0.161193,0.558022,0.257877,0.900189,0.772264,0.336478,0.977603,0.588226,0.931261,0.803523,0.0599282,0.946254,0.732839,0.595605,0.312186,0.313598,0.911087,0.893189,0.382707,0.168315,0.191507,0.0831248,0.326406,0.311,0.332809,0.608205,0.481907,0.11318,0.299172,0.662575,0.0259543,0.186194,0.0570573,0.696619,0.903945,0.487508,0.0447055,0.102186,0.20651,0.936972,0.700172,0.338957,0.947312,0.310697,0.861326,0.746459,0.68539,0.652916,0.685226,0.176645,0.931979,0.611867,0.821612,0.791744,0.580539,0.797152,0.165381,0.790889,0.33806,0.542438,0.94908,0.153402,0.296632,0.498564,0.37575,0.918427,0.819264,0.488677,0.105754,0.776487,0.845105,0.943503,0.609599,0.0890618,0.631726,0.0117797,0.906413,0.501361,0.0850364,0.887778,0.972997,0.639941,0.0806061,0.313001,0.950658,0.714196,0.228545,0.410943,0.380871,0.797818,0.0353022,0.0612243,0.564818,0.624957,0.614457,0.596594,0.00590223,0.97839,0.972976,0.322418,0.433666,0.794214,0.813819,0.988743,0.589239,0.771846,0.524938,0.125165,0.929277,0.373388,0.892758,0.32512,0.0167332,0.414902,0.784203,0.867428,0.448714,0.642666,0.539995,0.144334,0.398831,0.362518,0.709004,0.9247,0.194178,0.975205,0.459613,0.464257,0.271304,0.622628,0.816492,0.410486,0.579767,0.908229,0.411394,0.247654,0.332653,0.580775,0.41464,0.779895,0.305781,0.0810309,0.666395,0.32406,0.659227,0.764958,0.434153,0.394479,0.819961,0.072544,0.393483,0.668298,0.193171,0.98023,0.494352,0.644848,0.18844,0.910414,0.0439492,0.873824,0.161616,0.337478,0.670557,0.448618,0.367245,0.537522,0.845684,0.582158,0.407701,0.379679,0.229306,0.0664285,0.897071,0.100987,0.484586,0.0993948,0.140502,0.145461,0.0476937,0.637856,0.16466,0.864018,0.597319,0.575361,0.832805,0.679661,0.530994,0.615153,0.987326,0.314913,0.000914693,0.0230868,0.2003,0.0454234,0.765403,0.274416,0.434487,0.362503,0.586133,0.920556,0.929305,0.59227,0.0333444,0.756925,0.0665893,0.0473068,0.91514,0.464153,0.141099,0.822176,0.774538,0.752215,0.974691,0.896141,0.543608,0.322504,0.745638,0.826313,0.199011,0.814717,0.700341,0.936742,0.248323,0.16485,0.395899,0.0714547,0.302335,0.0143074,0.601195,0.940573,0.921895,0.308323,0.861691,0.93609,0.952895,0.495162,0.856474,0.691095,0.72344,0.730912,0.0824443,0.0582675,0.309316,0.18549,0.191138,0.971,0.471831,0.67158,0.298995,0.234372,0.901342,0.104204,0.58411,0.350214,0.665708,0.703014,0.629802,0.59389,0.785386,0.795286,0.802657,0.108832,0.979014,0.0301629,0.379667,0.86738,0.523887,0.14606,0.322577,0.864505,0.680306,0.0761502,0.100609,0.461406,0.839814,0.752609,0.575032,0.598202,0.0429552,0.446378,0.863862,0.371765,0.0688742,0.120083,0.120806,0.655592,0.347586,0.483312,0.589704,0.129637,0.543882,0.627461,0.519242,0.468287,0.625796,0.247693,0.21541,0.693123,0.151415,0.911069,0.826007,0.0191222,0.297043,0.147434,0.261689,0.47063,0.164874,0.825614,0.102253,0.610382,0.0439631,0.50992,0.0230765,0.244506,0.0296752,0.0509235,0.382649,0.919191,0.801244,0.850101,0.0227903,0.197443,0.568733,0.454695,0.074299,0.976922,0.401426,0.807452,0.254236,0.0189699,0.522925,0.405665,0.266978,0.104173,0.014375,0.669489,0.358628,0.47735,0.447986,0.905348,0.915177,0.490378,0.0534981,0.674813,0.456093,0.622159,0.856925,0.0405366,0.255343,0.261402,0.279483,0.921302,0.531075,0.783279,0.854907,0.433273,0.0592547,0.452136,0.0990005,0.15604,0.791293,0.866027,0.0680142,0.762816,0.180072,0.745393,0.903325,0.198749,0.741081,0.522788,0.929299,0.35352,0.91438,0.596328,0.564107,0.779916,0.348363,0.406885,0.792282,0.413985,0.260314,0.364231,0.252495,0.352774,0.651056,0.345159,0.12249,0.389107,0.207719,0.880504,0.526925,0.493066,0.387753,0.144392,0.106252,0.704038,0.506949,0.84505,0.296521,0.371458,0.512529,0.739913,0.494946,0.200445,0.853932,0.97136,0.518535,0.585122,0.788984,0.867983,0.489705,0.293684,0.371568,0.515473,0.482226,0.784332,0.0295271,0.0950443,0.436004,0.189512,0.518744,0.797975,0.335005,0.248724,0.116426,0.580369,0.420919,0.836832,0.403642,0.0752909,0.842016,0.272066,0.938539,0.502386,0.703909,0.54537,0.146961,0.210083,0.919598,0.080912,0.767549,0.764552,0.396455,0.955683,0.265649,0.370201,0.675851,0.278847,0.615871,0.894744,0.479907,0.946542,0.729838,0.199775,0.627896,0.355159,0.129109,0.0781635,0.615589,0.932884,0.794802,0.547926,0.54583,0.0934577,0.524053,0.701283,0.127369,0.299023,0.571111,0.690951,0.411652,0.984311,0.749536,0.102481,0.378868,0.933717,0.774521,0.245132,0.744043,0.327199,0.276021,0.549229,0.0135685,0.436248,0.278933,0.521862,0.473974,0.615901,0.768248,0.438012,0.492001,0.0304787,0.464188,0.175045,0.845988,0.893169,0.0725495,0.727051,0.848345,0.361272,0.0121462,0.975943,0.734746,0.250646,0.570896,0.379566,0.257009,0.0895476,0.0361606,0.697715,0.62207,0.664245,0.293501,0.398365,0.0770224,0.568061,0.197751,0.190407,0.832768,0.492741,0.335878,0.90615,0.578757,0.932821,0.348804,0.694465,0.9992,0.862447,0.620115,0.324689,0.461259,0.102622,0.710825,0.777556,0.767869,0.130295,0.0299353,0.704585,0.508137,0.281053,0.000529706,0.547008,0.382853,0.562161,0.832017,0.956757,0.0951598,0.337448,0.310662,0.424537,0.628062,0.675039,0.815626,0.845506,0.960335,0.032957,0.581132,0.611386,0.464411,0.599514,0.584154,0.154045,0.364825,0.17945,0.356934,0.419726,0.920642,0.705499,0.474571,6.44326e-05,0.783538,0.72754,0.294124,0.802715,0.123292,0.694633,0.821453,0.341046,0.859777,0.030511,0.866377,0.780691,0.0692743,0.310469,0.711321,0.559231,0.789694,0.793204,0.214732,0.668079,0.892613,0.543137,0.351369,0.966322,0.58523,0.17647,0.996334,0.378636,0.487998,0.336453,0.12587,0.124737,0.954936,0.883498,0.28215,0.520374,0.261356,0.0997525,0.960619,0.082368,0.456707,0.928695,0.146593,0.104916,0.091119,0.0267953,0.559092,0.323512,0.449747,0.571384,0.69392,0.316661,0.0436908,0.830413,0.104632,0.0251774,0.831511,0.840759,0.177941,0.971228,0.951329,0.96817,0.0126892,0.266602,0.70999,0.415309,0.539125,0.249212,0.0890286,0.772824,0.168441,0.0168701,0.713993,0.655361,0.962875,0.465686,0.90994,0.916308,0.89721,0.600412,0.805284,0.102993,0.746112,0.387704,0.252964,0.481809,0.759964,0.0352904,0.909774,0.804973,0.323338,0.437408,0.995383,0.388179,0.107461,0.279243,0.0383457,0.353883,0.293807,0.322031,0.0763271,0.710343,0.991177,0.729067,0.38915,0.694776,0.964827,0.00465137,0.320806,0.986203,0.493459,0.332285,0.964947,0.506328,0.0586073,0.0625897,0.586387,0.234054,0.568234,0.141395,0.763599,0.0746462,0.211761,0.980311,0.241693,0.150135,0.222411,0.690557,0.221679,0.973284,0.479711,0.0648047,0.930354,0.26476,0.966072,0.39429,0.156885,0.136077,0.836491,0.275648,0.113601,0.0613499,0.138262,0.211901,0.0572979,0.897729,0.187469,0.0588648,0.42069,0.247481,0.960399,0.858454,0.862933,0.70189,0.348812,0.912896,0.837996,0.769321,0.414241,0.675175,0.732636,0.0639378,0.299495,0.0761164,0.576326,0.0749705,0.828723,0.351099,0.929113,0.471674,0.589503,0.0392333,0.936066,0.154653,0.220503,0.901504,0.429692,0.0151475,0.0778445,0.0989012,0.808299,0.213695,0.189008,0.719334,0.441868,0.708243,0.715695,0.372145,0.254281,0.659529,0.94612,0.719755,0.703315,0.573729,0.130387,0.40805,0.500398,0.0861086,0.774629,0.684538,0.436078,0.239344,0.086354,0.5852,0.210253,0.377796,0.265675,0.616289,0.324939,0.544051,0.694975,0.821911,0.692611,0.188145,0.0135037,0.262912,0.551178,0.449858,0.521289,0.124223,0.443285,0.00726277,0.852578,|0.68732,0.0559503,0.766346,0.394655,0.237738,0.957652,0.309137,0.166258,0.47523,0.572587,0.396074,0.548567,0.507145,0.842105,0.955948,0.0132448,0.719002,0.598697,0.337785,0.76336,0.0275379,0.677649,0.879495,0.633047,0.699387,0.852987,0.200686,0.224373,0.839942,0.590389,0.794635,0.294419,0.0702515,0.915258,0.425409,0.551458,0.381707,0.53845,0.338476,0.317721,0.386184,0.0265386,0.997271,0.0723847,0.0536193,0.0331152,0.19024,0.893166,0.0503338,0.544204,0.443276,0.843252,0.23298,0.558188,0.599647,0.306614,0.310624,0.575348,0.595093,0.0349413,0.976833,0.29585,0.882052,0.750346,0.720606,0.460182,0.861097,0.143575,0.103491,0.998974,0.591688,0.541282,0.675202,0.966419,0.346726,0.217338,0.541098,0.0765875,0.126712,0.825083,0.53491,0.638789,0.3771,0.0446677,0.596601,0.921156,0.982505,0.784947,0.362321,0.0640462,0.0647787,0.164374,0.541343,0.658461,0.825052,0.844587,0.637784,0.611465,0.923996,0.389525,0.106384,0.965686,0.554329,0.158963,0.545464,0.078563,0.779194,0.991104,0.784566,0.982951,0.375852,0.0614048,0.00422746,0.885267,0.74109,0.574851,0.796578,0.641763,0.0507346,0.405702,0.819757,0.106468,0.646571,0.624918,0.257936,0.698429,0.0480404,0.479223,0.588937,0.992815,0.0673353,0.457158,0.639453,0.465659,0.268163,0.801213,0.373553,0.947081,0.950231,0.380619,0.369584,0.976161,0.26221,0.419734,0.359622,0.358073,0.551421,0.824586,0.110086,0.370053,0.267531,0.319579,0.249973,0.53265,0.960377,0.410691,0.310361,0.981471,0.188853,0.389954,0.593213,0.872801,0.0516405,0.418273,0.669895,0.190145,0.281118,0.871926,0.863696,0.0480117,0.631028,0.167185,0.768193,0.180539,0.104125,0.436918,0.592166,0.88364,0.151643,0.584343,0.883403,0.212211,0.665182,0.703229,0.83546,0.31599,0.96014,0.775514,0.12903,0.461048,0.837105,0.925795,0.222144,0.854556,0.811511,0.791989,0.478092,0.973841,0.251221,0.182604,0.983503,0.68663,0.51338,0.290034,0.850936,0.197216,0.867315,0.533795,0.816682,0.272265,0.937054,0.555929,0.699091,0.0690288,0.230205,0.125558,0.978247,0.642468,0.36144,0.421779,0.0923773,0.705182,0.215022,0.016514,0.746647,0.803398,0.598602,0.703555,0.524708,0.342004,0.755423,0.516648,0.44665,0.633793,0.689537,0.348057,0.661789,0.988007,0.359173,0.524747,0.119416,0.224723,0.530184,0.837825,0.948922,0.973821,0.214643,0.443382,0.422301,0.237825,0.818302,0.15724,0.888937,0.229369,0.812464,0.624006,0.588192,0.75487,0.613767,0.124827,0.607906,0.596081,0.436219,0.919113,0.36548,0.829632,0.339847,0.641061,0.040769,0.759156,0.26102,0.0200865,0.341072,0.0446537,0.684609,0.769789,0.426703,0.942835,0.894436,0.92443,0.83276,0.328729,0.199838,0.813067,0.138524,0.784587,0.679505,0.0485271,0.212466,0.634627,0.61689,0.89784,0.642469,0.302178,0.93899,0.978496,0.344845,0.879447,0.923238,0.893558,0.665793,0.11132,0.287804,0.995803,0.808141,0.568673,0.0974348,0.0921559,0.438486,0.146331,0.492499,0.024671,0.100815,0.415824,0.736714,0.77144,0.854197,0.828361,0.373953,0.0633763,0.219622,0.0186362,0.872474,0.914566,0.0046733,0.312346,0.664816,0.872164,0.436542,0.543599,0.325414,0.541313,0.788763,0.356981,0.122758,0.40782,0.503264,0.145623,0.411972,0.430333,0.830134,0.364999,0.674856,0.568396,0.560307,0.889729,0.456833,0.894677,0.641581,0.169364,0.646453,0.926308,0.500368,0.608491,0.115943,0.0576604,0.534478,0.160729,0.461679,0.0574237,0.109724,0.0531686,0.105351,0.440362,0.092023,8.89897e-05,0.748334,0.192129,0.703329,0.0388455,0.333283,0.327754,0.420351,0.648643,0.880214,0.531079,0.446243,0.779544,0.791651,0.452261,0.760586,0.164438,0.508762,0.538409,0.241881,0.551582,0.561603,0.267044,0.782414,0.39447,0.485064,0.134234,0.988131,0.702953,0.525896,0.133312,0.208849,0.615913,0.310068,0.78898,0.194064,0.649924,0.548438,0.365408,0.31788,0.193885,0.321461,0.0838304,0.276276,0.388074,0.519551,0.500171,0.972091,0.762268,0.698545,0.0286427,0.663329,0.021933,0.118239,0.0698701,0.292688,0.33935,0.973892,0.676296,0.76372,0.980914,0.791991,0.148363,0.794981,0.305099,0.506375,0.18486,0.830046,0.300255,0.602144,0.662079,0.645444,0.418764,0.393811,0.369796,0.598723,0.279483,0.554082,0.00474954,0.663458,0.625686,0.34246,0.943195,0.590902,0.962151,0.512418,0.457225,0.526894,0.671834,0.582437,0.167611,0.252275,0.910718,0.867243,0.66225,0.240427,0.469063,0.817012,0.547887,0.845267,0.722356,0.861157,0.208707,0.543632,0.304569,0.824593,0.0953062,0.581276,0.669742,0.663997,0.51533,0.701398,0.910868,0.904752,0.539503,0.502088,0.962531,0.0975348,0.447024,0.697621,0.578389,0.336875,0.604636,0.544733,0.734526,0.210887,0.418863,0.0284404,0.149821,0.0671253,0.706143,0.397204,0.165357,0.976287,0.524544,0.926925,0.735452,0.505616,0.330921,0.255226,0.480527,0.891071,0.739131,0.593721,0.882121,0.284252,0.620316,0.875798,0.858508,0.400827,0.413362,0.930528,0.737346,0.10751,0.79647,0.560859,0.881179,0.458467,0.754909,0.147302,0.280773,0.125556,0.400594,0.400994,0.692548,0.415288,0.976883,0.953271,0.233442,0.0484505,0.0912755,0.44951,0.778826,0.244415,0.760092,0.8186,0.845441,0.708521,0.356122,0.455617,0.745691,0.109283,0.705516,0.219547,0.673154,0.931659,0.18158,0.999983,0.244046,0.623894,0.692116,0.706614,0.110547,0.0915846,0.207773,0.354078,0.841332,0.221372,0.911442,0.280501,0.97535,0.479417,0.253771,0.0801848,0.619526,0.610608,0.717471,0.88529,0.0978772,0.620662,0.951712,0.371083,0.75598,0.704506,0.635274,0.599418,0.924667,0.0123046,0.607065,0.600123,0.212839,0.747711,0.302722,0.105403,0.742882,0.601033,0.389757,0.533714,0.957151,0.41986,0.645766,0.553464,0.924829,0.696031,0.918543,0.34929,0.725486,0.181255,0.225173,0.985694,0.664168,0.602926,0.37649,0.0243632,0.419852,0.665041,0.639928,0.48268,0.7117,0.0394282,0.806281,0.768554,0.30714,0.858498,0.282556,0.0542033,0.896088,0.416213,0.870671,0.645982,0.512509,0.438657,0.519243,0.0944026,0.934017,0.972688,0.443528,0.795831,0.620908,0.381666,0.921624,0.587322,0.12487,0.765206,0.447736,0.774035,0.797222,0.597582,0.804845,0.089091,0.289375,0.0942565,0.651456,0.16006,0.0100697,0.309617,0.588681,0.00567907,0.158588,0.656655,0.321993,0.532608,0.424313,0.143943,0.597648,0.718188,0.231172,0.589273,0.232734,0.609668,0.993285,0.748068,0.72883,0.0678906,0.927207,0.274232,0.793793,0.542904,0.0184189,0.758702,0.460824,0.106966,0.0114652,0.75514,0.49441,0.795726,0.896201,0.722799,0.753335,0.545765,0.600628,0.0710728,0.215661,0.927664,0.840131,0.84322,0.639596,0.456092,0.070663,0.524781,0.100163,0.846549,0.585895,0.330317,0.0472958,0.682739,0.938233,0.531296,0.439915,0.879003,0.635774,0.953581,0.734868,0.545162,0.473573,0.35078,0.231176,0.656833,0.185942,0.615767,0.744824,0.487422,0.586426,0.836897,0.907699,0.590489,0.355626,0.968729,0.276,0.332326,0.278193,0.630297,0.735187,0.0855009,0.685686,0.155031,0.193962,0.702887,0.340333,0.0497743,0.517423,0.684914,0.585577,0.017239,0.198698,0.216206,0.30852,0.411129,0.456808,0.0901896,0.530779,0.164598,0.744725,0.999101,0.744825,0.215395,0.603595,0.735485,0.483766,0.939611,0.20955,0.665958,0.332366,0.108556,0.105936,0.205861,0.411009,0.93308,0.00137568,0.0820678,0.948276,0.140694,0.601771,0.828614,0.968264,0.980916,0.620577,0.124872,0.49077,0.318139,0.659764,0.607937,0.92482,0.490529,0.21697,0.487963,0.90425,0.0983704,0.458376,0.349005,0.322194,0.260371,0.366945,0.897606,0.990607,0.684856,0.0394704,0.885471,0.147726,0.248235,0.352149,0.644207,0.902543,0.863098,0.685807,0.313679,0.30787,0.403107,0.554397,0.861404,0.329892,0.166633,0.708955,0.429636,0.318771,0.0800941,0.966064,0.989235,0.399191,0.277013,0.132162,0.568958,0.638129,0.544838,0.732225,0.178478,0.69874,0.709243,0.183926,0.648525,0.0972149,0.493583,0.865261,0.94364,0.0782958,0.585194,0.624045,0.53017,0.103847,0.896186,0.45437,0.185998,0.817741,0.404101,0.892033,0.152608,0.197742,0.604821,0.077762,0.863034,0.295283,0.689417,0.375596,0.592735,0.55437,0.512477,0.921294,0.996526,0.481233,0.428167,0.0659382,0.149265,0.54622,0.230472,0.877528,0.143869,0.603267,0.612676,0.00902754,0.902482,0.2475,0.715394,0.97578,0.923097,0.474489,0.834704,0.255076,0.65719,0.22682,0.635901,0.715113,0.533351,0.925399,0.134496,0.877105,0.832884,0.837472,0.42877,0.713122,0.213021,0.203611,0.196888,0.946773,0.187665,0.515423,0.387513,0.169931,0.103386,0.343358,0.289974,0.213229,0.670146,0.305551,0.932578,0.444504,0.718101,0.80609,0.913665,0.248656,0.285157,0.981794,0.849654,0.41979,0.686292,0.262279,0.0398534,0.958084,0.599918,0.0176468,0.268007,0.214308,0.150758,0.800848,0.192227,0.93596,0.113887,0.853833,0.0861493,0.36812,0.206738,0.011353,0.126344,0.304785,0.932664,0.93788,0.60701,0.49007,0.275518,0.501742,0.843135,0.390366,0.847476,0.282813,0.33765,0.925055,0.490438,0.357891,0.887337,0.479376,0.695689,0.616882,0.432017,0.0176222,0.916016,0.587159,0.470739,0.216538,0.172085,0.152592,0.453937,0.214374,0.980348,0.25661,0.951383,0.722172,0.0580447,0.115178,0.342459,0.304603,0.0874187,0.759334,0.741958,0.399634,0.904314,0.975877,0.683018,0.0453302,0.103994,0.717269,0.114578,0.854535,0.234518,0.646454,0.377643,0.526477,0.698874,0.328241,0.924378,0.196782,0.213838,0.850952,0.65472,0.946,0.389162,0.326574,0.215259,0.202799,0.903848,0.889112,0.653003,0.547651,0.934449,0.264845,0.926786,0.762126,|0.0340689,0.160935,0.632681,0.147907,0.901894,0.837522,0.64655,0.723329,0.824996,0.122833,0.2162,0.508614,0.0780013,0.678108,0.704035,0.319016,0.925895,0.845423,0.877174,0.682446,0.681884,0.603149,0.564597,0.33695,0.700029,0.834376,0.574733,0.38426,0.863806,0.797037,0.972356,0.198041,0.376608,0.434846,0.0264609,0.438539,0.416523,0.567355,0.576638,0.470141,0.24823,0.872703,0.14545,0.554141,0.743514,0.299506,0.51132,0.237439,0.559011,0.651542,0.220914,0.939509,0.168308,0.501573,0.632658,0.185336,0.0920126,0.152309,0.0097692,0.683263,0.792009,0.593599,0.53507,0.581402,0.493978,0.523439,0.197162,0.778926,0.573016,0.54343,0.893726,0.408248,0.398037,0.126549,0.483248,0.959734,0.146592,0.964035,0.723688,0.960087,0.579574,0.738378,0.627905,0.76256,0.500279,0.274427,0.192059,0.47318,0.420884,0.00473928,0.444431,0.647906,0.994298,0.105714,0.273548,0.234853,0.901212,0.59788,0.897066,0.90445,0.726803,0.30323,0.218422,0.592029,0.388133,0.439898,0.831962,0.371238,0.963505,0.598397,0.782679,0.125818,0.448874,0.0911093,0.386877,0.806306,0.459118,0.909099,0.42932,0.540399,0.707179,0.177822,0.990128,0.831481,0.940786,0.496736,0.550159,0.621813,0.31055,0.78585,0.120846,0.170559,0.128811,0.28305,0.787658,0.317851,0.36848,0.738672,0.727227,0.14398,0.18996,0.469943,0.0403574,0.837858,0.34982,0.0261323,0.014771,0.242853,0.530164,0.987881,0.606795,0.0404744,0.172108,0.126271,0.736015,0.0842382,0.96838,0.155723,0.887813,0.732865,0.613645,0.837467,0.913515,0.487042,0.0490334,0.897797,0.133415,0.573438,0.638396,0.184232,0.949632,0.583292,0.60007,0.685403,0.406973,0.124622,0.921306,0.887594,0.389052,0.107225,0.475479,0.603688,0.414255,0.249703,0.20284,0.413659,0.779364,0.595903,0.35809,0.994866,0.0491665,0.017808,0.491649,0.75151,0.0121236,0.643403,0.62428,0.953373,0.0608884,0.273644,0.453476,0.801022,0.947745,0.238967,0.261556,0.379487,0.340683,0.20411,0.642997,0.954878,0.540833,0.258237,0.719825,0.675631,0.494597,0.833789,0.0583402,0.56587,0.316477,0.723427,0.884051,0.444011,0.924279,0.112601,0.254928,0.995879,0.792092,0.772607,0.944522,0.569938,0.588877,0.614093,0.757979,0.287567,0.391522,0.888519,0.557958,0.403005,0.765743,0.0897157,0.566441,0.778002,0.307447,0.243316,0.725875,0.37092,0.498883,0.08536,0.751828,0.0387052,0.028594,0.63638,0.217089,0.14918,0.586289,0.456749,0.777228,0.589502,0.458604,0.846819,0.108016,0.858213,0.188893,0.402587,0.694344,0.113416,0.680577,0.170756,0.278108,0.172532,0.397525,0.269859,0.118241,0.736031,0.257641,0.912046,0.69697,0.780818,0.42012,0.274326,0.00942868,0.101423,0.740876,0.976046,0.304941,0.770033,0.915985,0.397266,0.915013,0.142245,0.979427,0.473021,0.929484,0.803259,0.217837,0.86452,0.491089,0.255982,0.350071,0.308527,0.84128,0.489315,0.662098,0.666696,0.0928041,0.897309,0.85004,0.713431,0.99262,0.422898,0.398014,0.640234,0.0161754,0.841144,0.301307,0.0581427,0.0508623,0.128984,0.739462,0.605695,0.936647,0.0740954,0.77369,0.409065,0.301228,0.0530441,0.502273,0.473891,0.714136,0.573217,0.927543,0.975328,0.581173,0.767623,0.9705,0.637855,0.687185,0.433652,0.220461,0.655618,0.151908,0.883173,0.653334,0.287349,0.386585,0.387448,0.944533,0.418241,0.250205,0.614853,0.818951,0.399089,0.625685,0.873836,0.725423,0.829253,0.852729,0.956496,0.920825,0.605206,0.869535,0.588475,0.95519,0.961376,0.205981,0.981626,0.306654,0.410939,0.702265,0.361213,0.137014,0.20711,0.961105,0.41691,0.319463,0.0381105,0.612503,0.535383,0.809526,0.0602512,0.663404,0.905285,0.389317,0.842349,0.511396,0.756965,0.142945,0.826128,0.217096,0.516789,0.280378,0.0248404,0.214464,0.105332,0.0215806,0.84336,0.318799,0.229937,0.705959,0.907522,0.487957,0.696201,0.614753,0.751946,0.759383,0.323751,0.202467,0.988129,0.591698,0.0650123,0.406875,0.787681,0.677323,0.195635,0.818855,0.481591,0.611288,0.757562,0.137872,0.279707,0.712304,0.069864,0.854807,0.91181,0.390678,0.532456,0.0409442,0.247956,0.641475,0.710005,0.325864,0.897692,0.0921434,0.666085,0.761732,0.0616655,0.296999,0.287475,0.747722,0.859621,0.0430414,0.298539,0.282056,0.704706,0.151565,0.0945418,0.639117,0.817539,0.402412,0.600088,0.666903,0.89027,0.767347,0.199717,0.0778973,0.0475037,0.468576,0.980526,0.455987,0.0179157,0.576461,0.660964,0.850584,0.479825,0.107277,0.518469,0.377891,0.984349,0.824106,0.840974,0.0701452,0.904215,0.798016,0.252054,0.665208,0.416813,0.535906,0.202153,0.562245,0.165621,0.248531,0.767678,0.859728,0.161647,0.431371,0.48587,0.154296,0.734485,0.503016,0.89906,0.537428,0.363921,0.626658,0.594459,0.295368,0.28241,0.173401,0.631832,0.799062,0.319193,0.218314,0.807115,0.684883,0.521085,0.464594,0.733699,0.548738,0.941262,0.0128947,0.115685,0.378991,0.821839,0.83641,0.44313,0.926967,0.877152,0.609563,0.903235,0.646456,0.767023,0.664092,0.985892,0.812824,0.762385,0.260045,0.597232,0.419439,0.766159,0.255928,0.658446,0.217132,0.84941,0.476526,0.792376,0.791147,0.997906,0.370802,0.485038,0.789796,0.230925,0.198016,0.575403,0.00875157,0.0909986,0.439306,0.465052,0.20106,0.0991425,0.980476,0.908866,0.38397,0.00983638,0.148473,0.672716,0.0527126,0.135143,0.237945,0.45127,0.527052,0.2043,0.164165,0.119761,0.172245,0.319978,0.0314553,0.103163,0.215218,0.778611,0.772813,0.756792,0.455383,0.908228,0.268086,0.878864,0.601522,0.624152,0.250381,0.481179,0.908967,0.984464,0.712803,0.283686,0.992031,0.646729,0.630318,0.873554,0.859264,0.85212,0.843737,0.460996,0.416498,0.930384,0.938028,0.620014,0.777164,0.252067,0.277891,0.687611,0.352885,0.00083524,0.211358,0.946275,0.255758,0.892487,0.00323856,0.811685,0.732131,0.560968,0.769504,0.0245792,0.0912098,0.832112,0.590526,0.754817,0.886569,0.653244,0.96984,0.68616,0.263873,0.712938,0.710244,0.67591,0.872132,0.166844,0.377142,0.00292909,0.350028,0.271368,0.994699,0.00156301,0.372154,0.914659,0.525814,0.223376,0.307864,0.00538212,0.887555,0.867381,0.110393,0.212753,0.181679,0.569238,0.190773,0.778862,0.884789,0.692406,0.133725,0.565612,0.00656855,0.417338,0.805871,0.2891,0.597435,0.676032,0.304171,0.678606,0.333235,0.306942,0.446454,0.623973,0.554038,0.721183,0.191703,0.434389,0.278529,0.495574,0.626433,0.325166,0.764211,0.688119,0.655932,0.587829,0.541634,0.0222367,0.853895,0.95833,0.689096,0.604896,0.177724,0.151935,0.53958,0.0229974,0.664702,0.730335,0.257784,0.633573,0.397479,0.998198,0.559658,0.960788,0.749563,0.0567772,0.997542,0.234425,0.805475,0.122035,0.297219,0.8382,0.806598,0.567084,0.974499,0.901826,0.300402,0.462706,0.455407,0.914571,0.252969,0.759072,0.907095,0.38423,0.805098,0.590118,0.292888,0.559894,0.719537,0.571287,0.935897,0.165717,0.274206,0.304055,0.741314,0.514033,0.755308,0.816518,0.400485,0.589667,0.568977,0.262574,0.263684,0.297325,0.524794,0.591296,0.936865,0.69049,0.995754,0.975135,0.691549,0.730112,0.2562,0.78534,0.951821,0.563671,0.64132,0.276898,0.863136,0.647624,0.207552,0.937026,0.232656,0.642696,0.707611,0.573715,0.763831,0.65988,0.527072,0.2737,0.688396,0.523052,0.630655,0.593257,0.881877,0.624752,0.0602589,0.0411275,0.993881,0.657589,0.540317,0.80882,0.358223,0.505893,0.0862009,0.958731,0.536296,0.651072,0.0111414,0.801915,0.148769,0.686364,0.401085,0.286099,0.47508,0.433589,0.171324,0.694529,0.820492,0.494042,0.7912,0.277046,0.456951,0.874673,0.187591,0.703496,0.736291,0.69235,0.170388,0.209997,0.184644,0.440893,0.85057,0.688868,0.907359,0.947941,0.358902,0.0236328,0.992891,0.619189,0.478645,0.624812,0.248883,0.165755,0.595153,0.0646785,0.831772,0.237346,0.36062,0.465259,0.671942,0.392846,0.468846,0.465901,0.264745,0.660514,0.220603,0.519836,0.712251,0.0424897,0.842447,0.497567,0.257623,0.441558,0.609415,0.954649,0.950596,0.774601,0.429785,0.252733,0.437491,0.256541,0.925373,0.155218,0.289246,0.280278,0.0222566,0.205363,0.703766,0.57304,0.86424,0.355347,0.686544,0.340854,0.228449,0.0667306,0.453442,0.199352,0.767125,0.392563,0.48708,0.309709,0.739142,0.880064,0.107608,0.625698,0.173612,0.0687404,0.989763,0.624376,0.364475,0.105118,0.662395,0.725614,0.0301433,0.24255,0.583932,0.154935,0.330112,0.753938,0.117842,0.839931,0.442544,0.540075,0.43743,0.76503,0.14937,0.0909579,0.476527,0.121719,0.287358,0.587009,0.834132,0.153532,0.293338,0.78061,0.26359,0.878867,0.0278101,0.455131,0.259864,0.549093,0.261647,0.606054,0.213303,0.456919,0.438077,0.950106,0.138555,0.163552,0.0143374,0.507616,0.0850705,0.00565898,0.512935,0.740124,0.921707,0.753275,0.677308,0.487375,0.0447468,0.948171,0.461744,0.580688,0.681459,0.564393,0.201205,0.481602,0.205287,0.585238,0.0754631,0.0149575,0.547807,0.64272,0.565832,0.863627,0.643317,0.856744,0.871615,0.131982,0.204021,0.211028,0.922169,0.157616,0.377898,0.0133876,0.278507,0.134416,0.907214,0.64446,0.931284,0.0350828,0.765548,0.693456,0.328071,0.708549,0.979975,0.219343,0.491803,0.515505,0.558076,0.260424,0.489716,0.18964,0.320468,0.348963,0.167828,0.0751572,0.734875,0.873332,0.875171,0.459696,0.562461,0.302171,0.124916,0.982685,0.460783,0.130869,0.563017,0.670086,0.410439,0.687949,0.574219,0.69624,0.553242,0.0391316,0.321772,0.583228,0.536023,0.348037,0.786917,0.864125,0.995001,0.203632,0.143911,0.912602,0.704898,0.759724,0.770071,0.441132,0.881264,0.136883,0.0183102,0.330737,|0.506105,0.512404,0.321057,0.394455,0.654452,0.12692,0.894733,0.191474,0.808458,0.113926,0.543121,0.443687,0.682534,0.313198,0.836843,0.683604,0.0239076,0.437925,0.807015,0.0480984,0.136487,0.153378,0.253395,0.437569,0.173241,0.813945,0.42976,0.8275,0.434329,0.662929,0.233094,0.544497,0.115087,0.68413,0.612003,0.578667,0.522537,0.698028,0.655866,0.022692,0.331814,0.173428,0.0437847,0.552482,0.486375,0.261425,0.134843,0.0809132,0.22896,0.311982,0.578647,0.0858139,0.506166,0.383823,0.904112,0.00699705,0.484867,0.685172,0.100589,0.186313,0.108877,0.211519,0.00824952,0.834512,0.850865,0.146884,0.60621,0.97172,0.84896,0.847488,0.788201,0.634142,0.295428,0.930278,0.0498688,0.731002,0.206566,0.0127057,0.37173,0.333863,0.558612,0.030865,0.414399,0.510265,0.147368,0.289713,0.8516,0.753889,0.560236,0.171471,0.824253,0.742501,0.344119,0.902386,0.948128,0.0271698,0.596822,0.188866,0.0248311,0.58137,0.298833,0.285002,0.104638,0.59381,0.266504,0.389556,0.948682,0.842482,0.913441,0.671339,0.551947,0.147929,0.389458,0.178624,0.640563,0.786481,0.990558,0.732363,0.852945,0.906838,0.433468,0.399706,0.0305904,0.957021,0.730319,0.0637055,0.651458,0.0775306,0.810746,0.962341,0.762816,0.473166,0.72621,0.208384,0.398001,0.523992,0.933629,0.917157,0.226627,0.967114,0.993258,0.886543,0.89064,0.001926,0.317609,0.406492,0.978298,0.0315619,0.61017,0.792389,0.678284,0.681224,0.287784,0.885189,0.838929,0.646947,0.282721,0.707501,0.432022,0.795277,0.4455,0.652802,0.406724,0.00494719,0.927968,0.884191,0.805544,0.703697,0.433009,0.888077,0.483287,0.189222,0.536883,0.720326,0.91813,0.774877,0.0975533,0.626668,0.984865,0.798309,0.326302,0.427848,0.760091,0.296385,0.32151,0.673479,0.361834,0.986803,0.915209,0.379002,0.193174,0.265007,0.18321,0.15382,0.53742,0.39599,0.308331,0.109633,0.982506,0.131389,0.200151,0.955158,0.789891,0.993945,0.398883,0.402552,0.953337,0.593158,0.738803,0.505901,0.351532,0.141306,0.794024,0.458313,0.920984,0.36886,0.528173,0.645713,0.435962,0.888501,0.182563,0.646522,0.54262,0.05039,0.554966,0.0974537,0.128213,0.611608,0.840528,0.173932,0.75494,0.621536,0.42622,0.105265,0.563043,0.941361,0.791414,0.521784,0.814828,0.0648993,0.184502,0.483947,0.292688,0.843421,0.0098443,0.210422,0.983047,0.740799,0.61347,0.931701,0.954146,0.585988,0.787338,0.0431577,0.0378595,0.0970327,0.695789,0.264229,0.472421,0.438405,0.943842,0.226111,0.300561,0.320573,0.727672,0.309593,0.778406,0.38513,0.313196,0.205056,0.0580535,0.480602,0.863011,0.519871,0.507663,0.312907,0.766659,0.42784,0.592613,0.102853,0.540337,0.771831,0.808489,0.880824,0.790148,0.254404,0.141426,0.384751,0.478462,0.511729,0.0774371,0.301049,0.736406,0.140901,0.858779,0.151511,0.00666386,0.102308,0.727148,0.382284,0.841848,0.83389,0.596497,0.749325,0.624297,0.646611,0.471612,0.758116,0.538838,0.0793687,0.735219,0.781229,0.736996,0.0797498,0.455406,0.185965,0.118802,0.37641,0.267167,0.836361,0.939951,0.513153,0.360462,0.140886,0.83958,0.898219,0.762653,0.234929,0.278824,0.753725,0.992204,0.365957,0.142267,0.832562,0.316591,0.31955,0.266063,0.574756,0.0871791,0.957599,0.328362,0.262818,0.536514,0.302974,0.769278,0.958975,0.443735,0.194301,0.592751,0.0740088,0.50035,0.0770576,0.629071,0.611575,0.148875,0.109703,0.247175,0.645847,0.172032,0.550456,0.546943,0.393598,0.652571,0.763727,0.968202,0.466504,0.21673,0.0131318,0.903785,0.666597,0.461397,0.228203,0.509365,0.628172,0.9697,0.239271,0.599589,0.0280933,0.0309616,0.984962,0.211197,0.810148,0.585488,0.913745,0.561278,0.90189,0.693168,0.382351,0.336997,0.412595,0.686668,0.865737,0.460777,0.406627,0.830473,0.147757,0.299021,0.59815,0.640304,0.345658,0.705288,0.48539,0.952684,0.265775,0.315458,0.072149,0.480296,0.131087,0.900675,0.31105,0.374827,0.121979,0.601061,0.699864,0.666786,0.350999,0.64376,0.116076,0.778527,0.168116,0.0880753,0.542294,0.956329,0.434224,0.957948,0.383416,0.306559,0.71926,0.0510691,0.0625961,0.501541,0.330364,0.0675735,0.666086,0.363096,0.369928,0.365978,0.526965,0.769965,0.91981,0.757835,0.718316,0.317376,0.508485,0.460322,0.180282,0.424375,0.562761,0.0171854,0.00365931,0.279285,0.0159412,0.332172,0.521333,0.0377163,0.238768,0.070002,0.169127,0.507289,0.0395174,0.946658,0.584239,0.309076,0.701903,0.761004,0.961981,0.208155,0.84857,0.0358109,0.634789,0.350694,0.836307,0.804139,0.883373,0.454482,0.0432459,0.913783,0.0212224,0.624998,0.658952,0.837316,0.757159,0.777075,0.654342,0.77005,0.220004,0.0717924,0.379468,0.401316,0.247727,0.485655,0.899053,0.208932,0.105477,0.769522,0.295412,0.0743722,0.569539,0.040952,0.204013,0.559125,0.2915,0.676744,0.65677,0.432114,0.549465,0.513549,0.115066,0.417065,0.775309,0.93975,0.63881,0.0250526,0.877114,0.578147,0.699721,0.216985,0.740999,0.313463,0.171333,0.183541,0.571303,0.792919,0.849919,0.664538,0.144785,0.64475,0.964303,0.730816,0.443193,0.726215,0.630504,0.859646,0.0402635,0.0287359,0.394164,0.966636,0.0561737,0.330353,0.915145,0.537459,0.0216008,0.7942,0.170065,0.929961,0.0974156,0.0363209,0.108549,0.150495,0.642245,0.517359,0.149066,0.277934,0.51069,0.992492,0.508329,0.147455,0.867871,0.915572,0.625339,0.194707,0.675637,0.414786,0.718417,0.697873,0.111217,0.443006,0.044313,0.20011,0.572647,0.10369,0.00788033,0.265611,0.666481,0.587783,0.897649,0.950492,0.996596,0.935537,0.816158,0.92562,0.525811,0.0907942,0.932948,0.983235,0.102115,0.734137,0.818071,0.236388,0.256155,0.736246,0.106544,0.655465,0.445293,0.192711,0.289533,0.159955,0.213018,0.700026,0.16376,0.277247,0.6133,0.981569,0.482051,0.374333,0.497468,0.903012,0.144626,0.250636,0.286207,0.685173,0.286881,0.0579104,0.246583,0.463921,0.456502,0.5686,0.691815,0.37527,0.814204,0.632392,0.251326,0.0301136,0.154843,0.992201,0.638246,0.304993,0.982759,0.74999,0.929542,0.956736,0.550476,0.760434,0.571315,0.170869,0.917045,0.999804,0.0193349,0.524064,0.413681,0.88995,0.117062,0.901494,0.680787,0.76725,0.498343,0.572404,0.890266,0.711748,0.0952189,0.546031,0.438527,0.198705,0.826592,0.970417,0.293954,0.932788,0.589781,0.220079,0.808372,0.81669,0.25544,0.816401,0.652853,0.235454,0.088909,0.314461,0.6712,0.848314,0.05273,0.846545,0.323911,0.278757,0.487921,0.81459,0.381104,0.475334,0.940113,0.937128,0.0475689,0.2953,0.284857,0.209818,0.250027,0.912704,0.202622,0.493266,0.434882,0.0124196,0.561801,0.625463,0.928065,0.616458,0.129739,0.678494,0.215278,0.040471,0.297855,0.568731,0.796899,0.729379,0.76465,0.817476,0.664311,0.679495,0.220075,0.804263,0.948771,0.976495,0.913462,0.727244,0.457386,0.122857,0.917301,0.863263,0.624544,0.595846,0.13866,0.300538,0.39257,0.0369079,0.409254,0.673791,0.792959,0.975303,0.511537,0.31427,0.488659,0.0190305,0.160059,0.20476,0.600178,0.695484,0.232203,0.929933,0.303321,0.367971,0.35912,0.408903,0.507772,0.247253,0.843676,0.411715,0.719649,0.189463,0.466564,0.740422,0.0331464,0.214676,0.300578,0.406351,0.845944,0.425904,0.104154,0.694844,0.0134923,0.162782,0.322757,0.310336,0.678608,0.0617638,0.42251,0.339017,0.350505,0.765177,0.63814,0.868765,0.94608,0.3741,0.670218,0.922094,0.44029,0.319715,0.968744,0.92772,0.906242,0.099966,0.329361,0.395972,0.483051,0.174259,0.00935274,0.25282,0.343338,0.272108,0.688002,0.160366,0.45088,0.361486,0.207913,0.899895,0.37044,0.724229,0.250187,0.805548,0.856613,0.668273,0.122276,0.831247,0.744975,0.231237,0.479059,0.0868194,0.0365472,0.432424,0.34638,0.437898,0.84536,0.34371,0.764136,0.577536,0.191081,0.469355,0.917629,0.550991,0.442933,0.163064,0.113135,0.952555,0.377965,0.0597678,0.302505,0.017766,0.430442,0.196126,0.501955,0.957248,0.342108,0.454448,0.698857,0.719474,0.61736,0.0920635,0.209893,0.321081,0.0548195,0.925219,0.332661,0.185383,0.700106,0.444793,0.839105,0.635063,0.721895,0.0014084,0.777738,0.143886,0.840441,0.292972,0.0809097,0.342883,0.771904,0.893403,0.362076,0.348535,0.470594,0.367221,0.596423,0.519711,0.937592,0.166881,0.929804,0.705641,0.754449,0.778071,0.314422,0.0286875,0.841325,0.480519,0.223541,0.0473921,0.0620624,0.992658,0.973596,0.579458,0.547533,0.186281,0.810153,0.270345,0.715617,0.299289,0.498047,0.595436,0.533651,0.27679,0.76465,0.732693,0.593715,0.189605,0.690613,0.414233,0.901586,0.695247,0.673292,0.701486,0.000178874,0.917349,0.215191,0.514497,0.296551,0.270331,0.675994,0.117655,0.00827378,0.892781,0.0989299,0.825634,0.269951,0.132831,0.0707356,0.239274,0.504667,0.525418,0.199774,0.795428,0.317454,0.721233,0.745412,0.728188,0.244965,0.529995,0.650579,0.695019,0.849904,0.996271,0.879696,0.812447,0.895516,0.124528,0.120867,0.791892,0.218651,0.870791,0.263195,0.883165,0.336352,0.939311,0.169611,0.991635,0.977845,0.245619,0.148699,0.429927,0.696777,0.508264,0.569558,0.443943,0.914313,0.535778,0.481354,0.992073,0.242409,0.31637,0.242217,0.255396,0.389229,0.889998,0.20135,0.577261,0.93625,0.494618,0.0682107,0.954235,0.459537,0.0996513,0.893106,0.876932,0.973683,0.810789,0.473203,0.869689,0.186546,0.414894,0.0957857,0.108862,0.95339,0.660359,0.0906145,0.994393,0.036094,0.109662,0.112799,0.859261,0.243703,0.574017,0.031092,0.293049,0.403918,0.855268,0.713296,0.0468315,0.193074,0.862688,0.535083,0.0477132,0.819082,0.000316262,0.115327,0.490549,0.417114,|0.44586,0.0352619,0.981789,0.0267646,0.464376,0.211591,0.267452,0.293876,0.620016,0.884781,0.954039,0.372523,0.774536,0.700672,0.658363,0.0569434,0.732409,0.853659,0.994293,0.252295,0.597662,0.690174,0.261387,0.474961,0.143103,0.0114254,0.196492,0.125238,0.567008,0.136286,0.31843,0.0122222,0.877375,0.493257,0.951018,0.869006,0.147228,0.276481,0.331888,0.463698,0.142732,0.822429,0.0815177,0.0645213,0.221816,0.508592,0.947257,0.334102,0.166806,0.101853,0.47143,0.233319,0.448223,0.0595688,0.199697,0.828598,0.117554,0.859261,0.848189,0.26259,0.617417,0.0604315,0.533477,0.52407,0.379598,0.208395,0.981961,0.0404291,0.30835,0.637809,0.873993,0.878446,0.686597,0.761545,0.589267,0.189277,0.0509917,0.875988,0.0847439,0.468392,0.0416254,0.411077,0.158123,0.843838,0.671782,0.520659,0.333539,0.0381785,0.769303,0.914329,0.682323,0.142483,0.289993,0.945921,0.234536,0.453943,0.274978,0.274206,0.167551,0.214305,0.139162,0.813388,0.237453,0.663879,0.30574,0.653183,0.229122,0.63595,0.404806,0.437084,0.60392,0.732036,0.140169,0.863389,0.208328,0.333524,0.415302,0.442497,0.155312,0.738252,0.519236,0.20529,0.511025,0.447136,0.310366,0.798786,0.0249175,0.836865,0.0945851,0.340572,0.958113,0.514555,0.883534,0.899019,0.0774392,0.902097,0.309322,0.653718,0.64785,0.804406,0.766816,0.852724,0.681407,0.343118,0.706765,0.609541,0.881084,0.97792,0.122685,0.155922,0.164509,0.254271,0.718846,0.815018,0.424812,0.444093,0.250475,0.391948,0.982161,0.163908,0.972591,0.491575,0.457366,0.812643,0.707067,0.596928,0.465886,0.0623264,0.63658,0.736664,0.437688,0.464583,0.425716,0.623302,0.376879,0.620305,0.574767,0.895592,0.485117,0.259233,0.214563,0.11668,0.473078,0.115455,0.357843,0.0603608,0.817582,0.686983,0.531667,0.531954,0.949429,0.335579,0.473731,0.0332774,0.743194,0.907386,0.304802,0.191747,0.767253,0.997661,0.42962,0.477561,0.765728,0.76331,0.165402,0.155093,0.215458,0.0765164,0.527918,0.633155,0.604455,0.986647,0.295507,0.818422,0.680955,0.898552,0.317293,0.820597,0.919844,0.378133,0.00138128,0.3793,0.219853,0.272721,0.212067,0.199915,0.492751,0.344251,0.258623,0.430789,0.116956,0.194988,0.931303,0.20628,0.783526,0.663031,0.841721,0.430759,0.147232,0.708858,0.12509,0.885559,0.963204,0.861382,0.0146045,0.419301,0.0646574,0.517122,0.773493,0.917215,0.14102,0.122617,0.289414,0.836571,0.106643,0.900966,0.1915,0.525022,0.908903,0.88992,0.860105,0.563234,0.0743257,0.988197,0.538285,0.133298,0.545442,0.341437,0.565357,0.926825,0.553726,0.0124539,0.266338,0.979428,0.0917127,0.136261,0.279508,0.0957606,0.713109,0.490711,0.343916,0.851009,0.578489,0.963562,0.890803,0.828203,0.586592,0.307679,0.150599,0.5587,0.92803,0.333282,0.255203,0.098096,0.697315,0.481367,0.329246,0.47153,0.357799,0.0684027,0.250605,0.20591,0.775921,0.58559,0.00760919,0.926828,0.729374,0.453014,0.888674,0.0524599,0.410198,0.121753,0.938546,0.977624,0.281088,0.733753,0.761848,0.504306,0.3223,0.165509,0.585865,0.67509,0.696031,0.328385,0.96185,0.933112,0.0934381,0.249149,0.317573,0.878407,0.277471,0.711903,0.733007,0.63681,0.255802,0.274234,0.47074,0.556029,0.686689,0.942026,0.719606,0.75888,0.915154,0.229517,0.584976,0.764432,0.381492,0.505238,0.521373,0.504411,0.380344,0.125443,0.403449,0.403287,0.770012,0.301507,0.744329,0.711437,0.378556,0.550636,0.106986,0.0679258,0.579222,0.341385,0.185002,0.346401,0.731502,0.0743374,0.610365,0.716821,0.979895,0.0262816,0.844139,0.289707,0.58593,0.666661,0.660332,0.961892,0.406028,0.960338,0.93574,0.44418,0.144699,0.483158,0.329309,0.108566,0.0586671,0.225611,0.17039,0.964056,0.801496,0.056657,0.17342,0.497602,0.061344,0.160645,0.246745,0.878184,0.792753,0.654324,0.234985,0.0704545,0.115302,0.800913,0.314695,0.000939429,0.143917,0.0255983,0.668877,0.263476,0.445462,0.687591,0.394697,0.928577,0.0297549,0.444419,0.419262,0.793689,0.362441,0.0588699,0.452972,0.267943,0.819313,0.705544,0.570748,0.864644,0.0331202,0.682821,0.829232,0.764685,0.648638,0.0506895,0.36786,0.699038,0.315035,0.20053,0.352209,0.500396,0.0969846,0.0513093,0.266342,0.2303,0.193997,0.946423,0.105242,0.721894,0.832721,0.819081,0.712618,0.0809153,0.418217,0.723028,0.341838,0.273455,0.152523,0.208174,0.770382,0.424055,0.0809689,0.198812,0.346991,0.132578,0.284615,0.569513,0.87127,0.81622,0.0958474,0.273262,0.00507402,0.726104,0.286646,0.881328,0.973887,0.839404,0.955286,0.792807,0.162862,0.292984,0.902384,0.512504,0.975127,0.0613151,0.0276079,0.0814269,0.720234,0.705725,0.339909,0.0955321,0.595764,0.376914,0.287184,0.603901,0.924022,0.768313,0.0412814,0.147996,0.468008,0.368046,0.703939,0.633769,0.0831437,0.139244,0.3957,0.238185,0.809551,0.0657151,0.179586,0.803947,0.607139,0.145325,0.888701,0.492621,0.123093,0.407463,0.137936,0.446225,0.214817,0.442336,0.287001,0.565713,0.136021,0.772122,0.650268,0.468536,0.705057,0.950512,0.882082,0.118732,0.760534,0.333841,0.433092,0.3733,0.619131,0.151631,0.719133,0.368535,0.0178232,0.422479,0.373251,0.104451,0.495275,0.94889,0.935552,0.992473,0.516868,0.700565,0.778644,0.993517,0.359065,0.546502,0.731574,0.952696,0.568007,0.656415,0.386554,0.957183,0.873136,0.0271257,0.66493,0.967172,0.990165,0.972044,0.393812,0.0827991,0.545506,0.92989,0.553533,0.786986,0.699838,0.763033,0.0371009,0.158755,0.509467,0.205854,0.779079,0.488534,0.520692,0.651954,0.31227,0.83743,0.83133,0.929446,0.840064,0.915285,0.5543,0.53727,0.225001,0.719716,0.870565,0.608126,0.181628,0.44017,0.429015,0.768271,0.875496,0.437748,0.722867,0.642057,0.939245,0.225799,0.473859,0.227261,0.291906,0.670443,0.582587,0.523949,0.88105,0.875037,0.521731,0.5266,0.391804,0.470991,0.160037,0.630225,0.882704,0.28985,0.412681,0.472791,0.0674806,0.500653,0.668506,0.197554,0.520146,0.37218,0.622555,0.525549,0.786802,0.717552,0.0110309,0.464824,0.548195,0.799024,0.770507,0.0465259,0.550928,0.0152604,0.411273,0.358513,0.400715,0.829546,0.709979,0.437981,0.469959,0.811556,0.574945,0.0854005,0.340204,0.752872,0.556816,0.140414,0.628026,0.970033,0.233845,0.97548,0.259622,0.0991142,0.0751948,0.918253,0.501754,0.442128,0.380642,0.300102,0.853544,0.339906,0.0981569,0.0310529,0.571665,0.691169,0.0637846,0.790424,0.733227,0.490902,0.511596,0.828788,0.347025,0.652035,0.195885,0.771923,0.761748,0.917024,0.741517,0.228926,0.688552,0.938439,0.0657568,0.206406,0.476759,0.644393,0.579277,0.0191327,0.124024,0.684013,0.793919,0.0724465,0.97783,0.385617,0.0999268,0.296396,0.143047,0.439285,0.24388,0.514735,0.0349054,0.162618,0.629808,0.48518,0.0302182,0.0248059,0.57755,0.185057,0.961936,0.437423,0.671522,0.264535,0.375011,0.187798,0.601521,0.0404147,0.841735,0.185569,0.223951,0.917512,0.481908,0.538279,0.708639,0.901867,0.270865,0.0576037,0.521985,0.00335461,0.142481,0.563641,0.506892,0.882926,0.26538,0.284398,0.613437,0.368638,0.250235,0.423485,0.946161,0.478977,0.843734,0.543405,0.665142,0.915879,0.256776,0.785838,0.227429,0.928918,0.534782,0.239426,0.467731,0.694859,0.463034,0.561788,0.0116709,0.552619,0.393685,0.373886,0.176677,0.817463,0.116009,0.06601,0.00983095,0.945584,0.873261,0.31194,0.775932,0.648571,0.0737762,0.228965,0.466151,0.654614,0.884932,0.440941,0.518651,0.55681,0.936496,0.716281,0.156957,0.536689,0.296943,0.443948,0.613366,0.494595,0.210684,0.60692,0.517876,0.0616434,0.697176,0.17301,0.915682,0.745838,0.923153,0.423306,0.00262988,0.0836512,0.32752,0.949551,0.873752,0.118526,0.912996,0.888195,0.714159,0.413079,0.0844228,0.404736,0.324474,0.256144,0.290528,0.817988,0.397992,0.284637,0.309514,0.638058,0.534367,0.901765,0.674535,0.494831,0.344525,0.970337,0.400969,0.247432,0.38431,0.358559,0.753519,0.509552,0.74863,0.708984,0.609944,0.184555,0.661873,0.728559,0.0231614,0.317337,0.444814,0.552815,0.611037,0.108609,0.484376,0.146959,0.460493,0.145813,0.822225,0.533667,0.709965,0.325875,0.524601,0.489677,0.192052,0.683738,0.316086,0.159312,0.962257,0.440322,0.37676,0.752189,0.678715,0.521045,0.959121,0.538977,0.511246,0.874389,0.109791,0.45334,0.425753,0.942079,0.388342,0.384243,0.696565,0.13029,0.236025,0.247532,0.657525,0.312838,0.0719795,0.999926,0.116085,0.463618,0.990278,0.304895,0.553361,0.444774,0.882796,0.75282,0.114814,0.362215,0.427713,0.93285,0.0865892,0.688445,0.855274,0.912496,0.438531,0.518109,0.723938,0.548554,0.206458,0.146512,0.0223377,0.102444,0.821892,0.554239,0.782966,0.667155,0.677939,0.27747,0.893509,0.69681,0.0298709,0.386511,0.69464,0.672794,0.234137,0.300929,0.439728,0.0144334,0.795187,0.866915,0.937561,0.780471,0.649772,0.124043,0.29587,0.180774,0.24308,0.616256,0.0723197,0.336469,0.967836,0.412559,0.416123,0.665668,0.204636,0.905633,0.721795,0.765036,0.604049,0.601622,0.611207,0.923892,0.191597,0.902593,0.926346,0.838316,0.542239,0.13571,0.687421,0.46982,0.341891,0.949388,0.833192,0.0394793,0.960515,0.431138,0.739042,0.909517,0.415731,0.299035,0.447655,0.96085,0.569159,0.513821,0.388774,0.839821,0.808061,0.887091,0.943049,0.837834,0.506022,0.0759037,0.112535,0.249286,0.0495733,0.160047,0.358737,0.709827,0.0309602,0.845055,0.673,0.225135,0.196226,0.991748,0.0870826,0.507822,0.771793,0.260112,0.282012,0.738833,0.442674,0.850534,0.383091,0.247286,0.883869,0.472721,0.625842,0.0368586,0.0748674,0.955788,|0.661526,0.828492,0.320453,0.558807,0.220197,0.635936,0.692707,0.0352402,0.87175,0.106739,0.603337,0.262278,0.703402,0.310424,0.814935,0.124495,0.403211,0.704273,0.564218,0.801713,0.613288,0.255892,0.548223,0.139387,0.402907,0.45225,0.548652,0.0754765,0.457693,0.200694,0.435375,0.967659,0.125915,0.178845,0.344732,0.261711,0.307077,0.92781,0.00993234,0.39645,0.873901,0.365909,0.75136,0.130137,0.13129,0.96064,0.440834,0.0523503,0.362974,0.541889,0.340706,0.550026,0.630626,0.420462,0.844376,0.358305,0.694569,0.626227,0.405919,0.248518,0.716244,0.238363,0.535389,0.707631,0.635538,0.921586,0.68918,0.372208,0.307887,0.862207,0.3221,0.667734,0.159668,0.494747,0.609006,0.501011,0.641534,0.801782,0.21461,0.424338,0.836377,0.494115,0.164076,0.130095,0.0901172,0.918762,0.049908,0.894705,0.710363,0.676759,0.126462,0.455863,0.320111,0.477572,0.34599,0.922067,0.934411,0.913851,0.0699719,0.12578,0.840224,0.0706159,0.534054,0.0865899,0.136594,0.725429,0.669087,0.0943743,0.100216,0.91094,0.0677305,0.896477,0.422377,0.904694,0.620726,0.765179,0.804795,0.189108,0.332289,0.19101,0.821241,0.331538,0.169972,0.992769,0.219989,0.936943,0.98903,0.813722,0.833186,0.00654662,0.331659,0.349235,0.524808,0.438208,0.696448,0.136311,0.797307,0.501,0.127174,0.116964,0.52368,0.871244,0.796566,0.0234587,0.889633,0.359653,0.540692,0.902379,0.925206,0.494409,0.978595,0.40303,0.862742,0.584618,0.0695347,0.281427,0.753279,0.871453,0.503199,0.531316,0.595405,0.206494,0.772168,0.123644,0.993893,0.951369,0.87786,0.347123,0.453825,0.938135,0.39241,0.981326,0.622441,0.000986636,0.163579,0.852581,0.691088,0.354326,0.988238,0.579633,0.204973,0.842241,0.980199,0.108481,0.346076,0.689438,0.458185,0.563484,0.870596,0.288089,0.767397,0.286084,0.56551,0.0146751,0.808608,0.390314,0.865928,0.19494,0.145786,0.418778,0.0995939,0.815261,0.932385,0.317761,0.920011,0.954983,0.777399,0.196783,0.334815,0.972544,0.357814,0.924288,0.387784,0.943185,0.02368,0.85785,0.596833,0.647891,0.357923,0.03506,0.509455,0.0302769,0.581574,0.756005,0.165724,0.664159,0.48506,0.0104815,0.312192,0.370642,0.658863,0.685561,0.315026,0.822235,0.135527,0.305893,0.1635,0.82745,0.99299,0.843399,0.87164,0.434371,0.826543,0.00799406,0.639976,0.660067,0.832195,0.859408,0.341096,0.633044,0.725435,0.688771,0.385492,0.621139,0.392864,0.616853,0.551004,0.708629,0.255549,0.199976,0.127555,0.214265,0.405833,0.187301,0.897906,0.857115,0.830404,0.171464,0.504806,0.10871,0.47977,0.986109,0.769483,0.259345,0.108597,0.0407177,0.301344,0.0193601,0.706264,0.648387,0.226376,0.13454,0.0777301,0.683968,0.340133,0.0507231,0.0641237,0.127513,0.679927,0.129248,0.215382,0.348993,0.723834,0.753294,0.365959,0.319031,0.182961,0.19277,0.778467,0.443104,0.669396,0.935681,0.317983,0.0361688,0.779462,0.451587,0.391096,0.446703,0.889142,0.808252,0.802855,0.888606,0.13569,0.585118,0.46278,0.33888,0.919275,0.0770339,0.530886,0.897568,0.971231,0.354643,0.420383,0.642156,0.0250833,0.450624,0.995772,0.16046,0.387693,0.183755,0.915465,0.802869,0.780138,0.2631,0.713856,0.279903,0.226106,0.769763,0.934141,0.0775743,0.780389,0.921715,0.439395,0.791676,0.569791,0.28958,0.690436,0.408414,0.876677,0.182497,0.440571,0.39587,0.227129,0.748234,0.334823,0.649718,0.0609928,0.507234,0.462138,0.0701971,0.407208,0.399043,0.371442,0.218891,0.766918,0.77498,0.6633,0.290761,0.596598,0.790491,0.241443,0.473831,0.396038,0.0874739,0.61933,0.703756,0.614065,0.168068,0.819785,0.472373,0.312256,0.684767,0.109789,0.775528,0.318884,0.882655,0.263248,0.638432,0.994781,0.306074,0.915652,0.420048,0.169179,0.0649372,0.73725,0.910007,0.362705,0.441497,0.322512,0.923108,0.152914,0.693932,0.144412,0.713538,0.407805,0.446763,0.2835,0.373663,0.290329,0.352831,0.526252,0.97802,0.0143774,0.343403,0.190183,0.91121,0.322047,0.482497,0.398273,0.176651,0.567604,0.484375,0.217816,0.711168,0.747415,0.88097,0.122367,0.821672,0.490381,0.534662,0.793013,0.00824851,0.968411,0.0649868,0.972954,0.491009,0.577816,0.0686433,0.444593,0.303935,0.941215,0.836958,0.915771,0.737926,0.635152,0.757194,0.971089,0.664852,0.473016,0.125355,0.0938461,0.139583,0.117051,0.257497,0.695531,0.113104,0.791149,0.284404,0.498794,0.0329841,0.253872,0.76353,0.516617,0.815735,0.676726,0.0542496,0.184934,0.262075,0.00462735,0.28951,0.116865,0.392506,0.1053,0.525137,0.50942,0.901995,0.713659,0.760301,0.318264,0.953758,0.527123,0.127766,0.00287199,0.115282,0.817369,0.253907,0.188771,0.431995,0.892052,0.269063,0.580835,0.927341,0.108917,0.61439,0.638775,0.19696,0.288137,0.109384,0.316726,0.367269,0.930262,0.867381,0.510128,0.927578,0.126303,0.306356,0.874394,0.708471,0.385896,0.877462,0.531427,0.758313,0.156014,0.304876,0.185222,0.0158551,0.444406,0.844951,0.459248,0.310221,0.574444,0.557222,0.256334,0.350751,0.266877,0.890665,0.74684,0.7475,0.018717,0.201361,0.877124,0.489504,0.895938,0.0311652,0.178375,0.763265,0.307576,0.968059,0.566837,0.622515,0.130803,0.870107,0.908325,0.911747,0.412072,0.341336,0.462754,0.303758,0.656163,0.034117,0.217061,0.367559,0.182951,0.64696,0.964453,0.0885186,0.74685,0.361412,0.476212,0.399648,0.729665,0.612227,0.818013,0.909259,0.0278002,0.400413,0.564336,0.59823,0.370326,0.081172,0.642317,0.35776,0.63981,0.716771,0.440576,0.77615,0.356778,0.783104,0.6002,0.0207736,0.377813,0.555081,0.138462,0.349372,0.819315,0.847125,0.366592,0.0491624,0.190086,0.972415,0.143841,0.150635,0.543136,0.668678,0.788923,0.16197,0.374412,0.340278,0.317415,0.233812,0.120316,0.922097,0.204416,0.575654,0.311752,0.118785,0.596342,0.623629,0.883843,0.757085,0.413807,0.129754,0.200249,0.120764,0.102436,0.995997,0.102926,0.768559,0.311433,0.466462,0.333158,0.974469,0.255867,0.0217864,0.433658,0.888853,0.106426,0.5978,0.254327,0.660319,0.751342,0.0281131,0.810978,0.580196,0.714246,0.175244,0.850235,0.624193,0.124352,0.365536,0.840174,0.964677,0.419715,0.166635,0.632057,0.0447727,0.496899,0.374768,0.233173,0.249637,0.978286,0.981709,0.935728,0.524486,0.135121,0.605286,0.00601763,0.257799,0.218016,0.723717,0.792311,0.870824,0.658448,0.350807,0.00354993,0.102339,0.26392,0.815208,0.328543,0.445923,0.876986,0.919408,0.27315,0.623904,0.479337,0.570731,0.213753,0.265508,0.146011,0.979554,0.485356,0.248357,0.131919,0.811215,0.822198,0.265945,0.349116,0.55758,0.386924,0.926454,0.917155,0.698898,0.208202,0.328971,0.257994,0.0327069,0.196053,0.602715,0.619499,0.214149,0.0765565,0.295881,0.898073,0.361076,0.535563,0.475559,0.531368,0.267377,0.462007,0.0393973,0.0714675,0.14677,0.514698,0.98277,0.748472,0.720404,0.910962,0.646808,0.794898,0.256259,0.0934696,0.183025,0.284203,0.536603,0.828138,0.274677,0.703919,0.137481,0.157155,0.0378345,0.322246,0.30073,0.638943,0.257168,0.64088,0.947993,0.255997,0.792151,0.241582,0.251847,0.539003,0.146185,0.67105,0.614605,0.639288,0.950803,0.655344,0.361781,0.631848,0.582483,0.514008,0.302123,0.636843,0.024767,0.208545,0.794339,0.756929,0.00606352,0.538516,0.190669,0.397465,0.891945,0.606077,0.567321,0.831429,0.0964224,0.452648,0.387997,0.114246,0.767231,0.361491,0.686222,0.388186,0.238214,0.0800446,0.348266,0.271649,0.958359,0.0177978,0.816236,0.765215,0.786187,0.928494,0.577808,0.893748,0.951273,0.83371,0.810089,0.431358,0.324158,0.0944445,0.651504,0.755669,0.345191,0.819681,0.987966,0.619181,0.394063,0.893987,0.695154,0.582695,0.477767,0.601351,0.369369,0.506846,0.0643771,0.144765,0.182994,0.138075,0.891045,0.750095,0.0738334,0.681038,0.429892,0.303988,0.40273,0.786613,0.166743,0.177168,0.612958,0.266167,0.408377,0.233214,0.183641,0.826332,0.330111,0.340254,0.311892,0.0579316,0.475855,0.993321,0.777959,0.400341,0.73187,0.0719341,0.323758,0.485661,0.962166,0.977871,0.0550814,0.924429,0.402231,0.580542,0.634269,0.026093,0.936867,0.814951,0.848682,0.335158,0.760998,0.848169,0.393299,0.452958,0.152737,0.629209,0.0725619,0.456911,0.425274,0.895643,0.66488,0.903473,0.964861,0.0763881,0.788479,0.952306,0.0734549,0.617012,0.232513,0.573357,0.443557,0.0106558,0.506848,0.205765,0.605894,0.0404016,0.579078,0.752237,0.894036,0.249108,0.420694,0.533873,0.720567,0.0919893,0.432094,0.142082,0.308074,0.25229,0.30881,0.796519,0.8457,0.80536,0.0138458,0.862554,0.208264,0.0204153,0.970955,0.0474702,0.0893101,0.103391,0.8114,0.0216148,0.334878,0.791491,0.987192,0.275637,0.926955,0.666149,0.857035,0.804224,0.759794,0.0542951,0.459078,0.530512,0.590204,0.614621,0.802067,0.00569761,0.578222,0.201845,0.406556,0.407623,0.18003,0.250785,0.438858,0.976468,0.440875,0.285009,0.057034,0.544903,0.584639,0.796005,0.3734,0.223903,0.358978,0.754429,0.799291,0.546776,0.992358,0.808219,0.261307,0.516549,0.421333,0.277067,0.742684,0.468824,0.740604,0.497202,0.108817,0.471937,0.429789,0.603223,0.937291,0.869,0.847282,0.73658,0.393218,0.121871,0.782782,0.92309,0.128474,0.535302,0.890139,0.396756,0.146965,0.936549,0.278719,0.079029,0.207946,0.988459,0.971123,0.108783,0.0129444,0.617712,0.652678,0.805339,0.766283,0.380829,0.523229,0.0409952,0.658277,0.537452,0.910087,0.887815,0.698641,0.446483,0.605642,0.794376,0.0484079,0.48878,0.314365,0.223662,0.417473,0.416345,0.5671,0.470625,0.546728,0.85331,0.60931,0.194561,0.788144,|0.316264,0.359615,0.169722,0.413088,0.869183,0.42382,0.616932,0.423933,0.680415,0.362378,0.252923,0.520152,0.351527,0.142475,0.0033623,0.239421,0.688895,0.677015,0.951794,0.789717,0.776578,0.194987,0.305857,0.388491,0.828529,0.590274,0.952468,0.951281,0.378651,0.235663,0.236204,0.979578,0.402593,0.183924,0.398708,0.0835826,0.278254,0.290881,0.86315,0.31501,0.100547,0.578726,0.606363,0.897674,0.937805,0.316752,0.603547,0.620867,0.937742,0.643511,0.775456,0.261668,0.653205,0.56117,0.431535,0.564831,0.947788,0.159232,0.365622,0.818593,0.0361329,0.730626,0.22507,0.908047,0.819612,0.391306,0.181199,0.447989,0.461491,0.76239,0.0645357,0.572795,0.268105,0.091253,0.940148,0.739118,0.51247,0.348013,0.407754,0.149695,0.27502,0.593928,0.3802,0.917686,0.333527,0.430165,0.90633,0.588899,0.5856,0.931684,0.345122,0.119418,0.815403,0.974964,0.62977,0.611824,0.551181,0.67873,0.870369,0.206027,0.77817,0.402941,0.261009,0.954255,0.950373,0.254793,0.685237,0.100716,0.770798,0.54613,0.803316,0.213141,0.826257,0.0755753,0.705132,0.621476,0.448509,0.092418,0.125591,0.0692216,0.347844,0.531455,0.770292,0.266762,0.576599,0.419152,0.446403,0.890543,0.32281,0.625079,0.0441136,0.187917,0.812495,0.332103,0.729103,0.0610079,0.940466,0.424709,0.443627,0.583811,0.831411,0.542286,0.129254,0.536104,0.891984,0.636794,0.082551,0.043282,0.279246,0.0614438,0.44476,0.286085,0.143434,0.436049,0.141601,0.749807,0.751092,0.266402,0.382699,0.977326,0.0922917,0.704834,0.751953,0.302571,0.236761,0.925502,0.641161,0.434253,0.68711,0.0203571,0.824645,0.438164,0.824159,0.939611,0.140724,0.673168,0.974915,0.00167704,0.851102,0.437222,0.192993,0.191144,0.461768,0.746891,0.812433,0.545282,0.105565,0.737921,0.749134,0.428791,0.881727,0.629809,0.460045,0.506493,0.401845,0.376646,0.763161,0.182384,0.892707,0.362812,0.0231889,0.830956,0.846567,0.28806,0.906619,0.808685,0.472834,0.718131,0.0452083,0.0758823,0.798018,0.310286,0.820377,0.731394,0.354212,0.248192,0.47308,0.972655,0.97541,0.615996,0.651082,0.0102797,0.854019,0.844672,0.683028,0.664697,0.95324,0.257494,0.00703204,0.0857189,0.692954,0.87746,0.695861,0.165511,0.103123,0.433262,0.89002,0.0139055,0.344691,0.48452,0.43879,0.996767,0.885005,0.818589,0.855351,0.286085,0.0828985,0.794639,0.905775,0.667448,0.194716,0.368426,0.193202,0.957165,0.0937884,0.380527,0.274946,0.958173,0.0852576,0.975998,0.617779,0.816421,0.266199,0.770692,0.241583,0.182241,0.122144,0.278237,0.323316,0.766337,0.658862,0.388814,0.904588,0.207024,0.957537,0.147185,0.554859,0.819056,0.666864,0.789351,0.314762,0.52179,0.304003,0.398872,0.132909,0.581462,0.712945,0.450955,0.091239,0.821847,0.280736,0.525229,0.574802,0.842144,0.741781,0.395827,0.0819672,0.816735,0.647859,0.159654,0.828918,0.234307,0.196557,0.372226,0.47581,0.089371,0.903326,0.201099,0.218389,0.356545,0.865793,0.279282,0.380697,0.818352,0.401592,0.719552,0.952458,0.726771,0.899448,0.193061,0.358455,0.986293,0.261649,0.582952,0.0559741,0.338214,0.661315,0.824535,0.203241,0.118598,0.153938,0.451366,0.0906873,0.457925,0.159378,0.865527,0.373422,0.368006,0.821333,0.190566,0.111657,0.350818,0.224584,0.125556,0.494395,0.354161,0.284501,0.261103,0.0124714,0.217901,0.58952,0.668845,0.289463,0.400222,0.148225,0.782093,0.781878,0.963623,0.843285,0.65301,0.622917,0.0553719,0.256276,0.259318,0.99454,0.85851,0.831403,0.360146,0.113438,0.240903,0.932921,0.310391,0.856432,0.106495,0.323366,0.174634,0.504634,0.437532,0.481594,0.177364,0.873226,0.749743,0.0327654,0.800661,0.605668,0.404458,0.0104933,0.768492,0.731042,0.331954,0.786536,0.875469,0.132191,0.0783638,0.400059,0.487229,0.0564722,0.993496,0.621731,0.25655,0.26038,0.973018,0.284107,0.266729,0.871292,0.0829066,0.773284,0.0869191,0.093313,0.452523,0.397754,0.0739829,0.727341,0.847788,0.201762,0.384868,0.501323,0.838003,0.770521,0.243302,0.769996,0.768735,0.00749594,0.0201166,0.754884,0.965525,0.931697,0.745932,0.296512,0.0710667,0.1439,0.826524,0.331522,0.517882,0.477125,0.381464,0.547349,0.748817,0.698936,0.627521,0.895599,0.259236,0.189371,0.473516,0.344796,0.351253,0.3748,0.701765,0.410247,0.18929,0.0696365,0.593358,0.737508,0.568417,0.484674,0.477162,0.968614,0.996386,0.0934319,0.330692,0.0131968,0.424474,0.569892,0.172768,0.201372,0.567624,0.633155,0.426059,0.442987,0.875829,0.284729,0.294089,0.449601,0.809248,0.168095,0.791009,0.0758728,0.976682,0.359193,0.0429356,0.732552,0.25303,0.643339,0.622395,0.192534,0.240197,0.00345927,0.543973,0.47541,0.280036,0.903503,0.952418,0.258251,0.241185,0.668969,0.579549,0.572069,0.447684,0.560652,0.749807,0.246958,0.0588102,0.793445,0.00495178,0.675597,0.407332,0.706258,0.928097,0.597292,0.479178,0.0659673,0.201063,0.529162,0.855448,0.248435,0.184871,0.658655,0.827723,0.603312,0.827821,0.999351,0.608246,0.129759,0.929811,0.20885,0.428442,0.527466,0.977405,0.732166,0.9028,0.000332892,0.380523,0.469183,0.13058,0.778644,0.599587,0.567439,0.920051,0.485327,0.375896,0.690475,0.569635,0.559587,0.453356,0.681363,0.407041,0.00933468,0.0562999,0.800372,0.731649,0.835367,0.0712543,0.801467,0.300038,0.0356224,0.122741,0.172901,0.939842,0.368748,0.0775984,0.910789,0.163904,0.40308,0.220092,0.135025,0.133039,0.269435,0.0471626,0.099661,0.290028,0.73925,0.877377,0.583619,0.998113,0.336782,0.657206,0.426944,0.313258,0.633938,0.29832,0.730199,0.599511,0.247904,0.27762,0.610218,0.889161,0.338254,0.744393,0.36902,0.940059,0.760094,0.223948,0.478896,0.806767,0.0255991,0.35563,0.158686,0.88103,0.908771,0.190064,0.152348,0.349941,0.602605,0.608405,0.795804,0.667541,0.991689,0.328013,0.237392,0.0856237,0.969977,0.504631,0.143229,0.998132,0.133822,0.0065223,0.581268,0.0977658,0.0363209,0.596632,0.337165,0.914324,0.644236,0.678082,0.835145,0.957644,0.577373,0.515393,0.20395,0.302552,0.149285,0.00173575,0.919953,0.872819,0.962756,0.446664,0.841634,0.639672,0.424593,0.61546,0.678263,0.265581,0.583909,0.884342,0.0449408,0.659571,0.166041,0.319095,0.522102,0.673918,0.809895,0.6601,0.598366,0.787652,0.13973,0.406928,0.96886,0.355863,0.325086,0.373363,0.284627,0.973152,0.556798,0.708897,0.645629,0.432235,0.710231,0.682654,0.72045,0.556082,0.578555,0.373323,0.961034,0.381915,0.848677,0.805997,0.935332,0.0328709,0.999186,0.94571,0.271214,0.071813,0.888987,0.512639,0.0149518,0.288449,0.813376,0.466785,0.432683,0.627374,0.37571,0.335811,0.0275937,0.262535,0.736942,0.809366,0.470237,0.897391,0.725114,0.909188,0.455061,0.988094,0.660963,0.223943,0.0917668,0.774872,0.644392,0.631285,0.246383,0.0274312,0.569078,0.423458,0.781317,0.986122,0.917165,0.903516,0.168464,0.201663,0.449918,0.326537,0.205506,0.08513,0.457413,0.814179,0.147999,0.0100214,0.982996,0.225579,0.316407,0.20357,0.242173,0.903755,0.74101,0.736202,0.218033,0.287064,0.674714,0.545397,0.45652,0.0663957,0.403802,0.0209318,0.182018,0.147165,0.567924,0.83909,0.324492,0.731989,0.893148,0.790404,0.168778,0.251031,0.657308,0.458833,0.00938034,0.840582,0.94563,0.62437,0.890477,0.922421,0.566975,0.840295,0.781806,0.366583,0.794183,0.177839,0.779145,0.645557,0.650872,0.659434,0.800822,0.0728604,0.616929,0.793863,0.45327,0.358687,0.37112,0.337777,0.319102,0.791291,0.48323,0.694439,0.744046,0.834895,0.849422,0.24747,0.290371,0.125211,0.803074,0.933881,0.772684,0.699912,0.684679,0.289463,0.751362,0.761349,0.370931,0.878029,0.591274,0.661708,0.866243,0.217155,0.328429,0.653922,0.333798,0.0652387,0.898695,0.704348,0.462273,0.0794025,0.157251,0.967862,0.759539,0.584519,0.0782892,0.18117,0.397694,0.64256,0.0164605,0.590021,0.486438,0.588238,0.054436,0.511232,0.746092,0.548321,0.61649,0.749614,0.573085,0.567898,0.448781,0.158816,0.255463,0.713438,0.87072,0.771901,0.154689,0.126798,0.503722,0.964902,0.690825,0.602557,0.957669,0.395113,0.0387685,0.774063,0.181554,0.633208,0.36618,0.0701824,0.440116,0.236741,0.937167,0.769894,0.795022,0.334292,0.977471,0.332,0.215702,0.526858,0.753126,0.817737,0.733137,0.599118,0.0487472,0.464611,0.500882,0.96853,0.200001,0.361139,0.905842,0.485862,0.403245,0.678187,0.253808,0.386286,0.888001,0.137975,0.442708,0.901321,0.325081,0.773533,0.195045,0.992634,0.300954,0.0460956,0.823552,0.14763,0.814063,0.502822,0.849818,0.146193,0.714935,0.953381,0.230405,0.48304,0.101017,0.692193,0.142326,0.698453,0.827864,0.654406,0.298765,0.546908,0.260852,0.978971,0.845002,0.712974,0.0157792,0.546578,0.769251,0.0833701,0.893924,0.305374,0.444856,0.442297,0.959192,0.491896,0.665822,0.62884,0.76221,0.710614,0.20786,0.373656,0.691173,0.746809,0.734655,0.714834,0.810659,0.632584,0.856542,0.170098,0.557461,0.00524151,0.702349,0.40135,0.796291,0.0366171,0.538404,0.320704,0.487029,0.645749,0.0967749,0.135338,0.942017,0.516778,0.649583,0.334023,0.0295243,0.622674,0.527544,0.972692,0.99141,0.333596,0.128066,0.93151,0.758398,0.652331,0.232139,0.0890554,0.644273,0.649321,0.160231,0.946327,0.278616,0.0763873,0.454644,0.725305,0.985277,0.945504,0.0285116,0.68584,0.0635843,0.197195,0.85597,0.130683,0.518453,0.427739,0.931627,0.999003,0.172459,0.55614,0.0502909,0.768794,0.612426,0.460541,0.0302167,0.936727,0.623697,0.774953,0.950231,0.973215,0.0467089,0.275174,0.900678,0.866539,0.244163,0.889949,0.784397,0.848008,|0.225574,0.626017,0.206114,0.761848,0.377402,0.874001,0.262611,0.62106,0.695214,0.333269,0.759673,0.0861445,0.252365,0.158683,0.307915,0.901582,0.213554,0.652483,0.280426,0.360905,0.259248,0.741136,0.103065,0.551267,0.814979,0.806912,0.779207,0.847994,0.0612332,0.646065,0.0478839,0.0401913,0.241848,0.685386,0.191687,0.48688,0.160754,0.921469,0.311211,0.310414,0.825435,0.00139666,0.809693,0.459751,0.741411,0.147067,0.178262,0.805201,0.21218,0.485231,0.0810757,0.529365,0.424975,0.423495,0.703255,0.776407,0.311838,0.923567,0.277858,0.302658,0.279171,0.972081,0.71076,0.401112,0.638403,0.282181,0.0776054,0.27017,0.99171,0.114484,0.733593,0.248381,0.59483,0.595377,0.842477,0.97293,0.969448,0.0541787,0.942169,0.171102,0.343095,0.580838,0.259465,0.909354,0.123779,0.985,0.643895,0.58256,0.220579,0.167592,0.325868,0.743017,0.163705,0.0973588,0.565992,0.450456,0.272496,0.415859,0.149996,0.989649,0.144311,0.289357,0.731878,0.550349,0.507931,0.956254,0.624615,0.357308,0.0538967,0.0494994,0.534988,0.17139,0.165916,0.457485,0.919339,0.954536,0.58461,0.857166,0.145184,0.847915,0.922039,0.166186,0.869494,0.855312,0.685048,0.408523,0.668568,0.251506,0.941373,0.921966,0.294931,0.191897,0.639554,0.114772,0.389822,0.258355,0.0586768,0.472391,0.734304,0.476129,0.256094,0.424361,0.563092,0.205018,0.0508901,0.832849,0.0639248,0.224638,0.8569,0.760216,0.675014,0.111391,0.336961,0.505441,0.495031,0.102478,0.180148,0.365711,0.703689,0.512796,0.653134,0.890497,0.414797,0.657022,0.835149,0.676943,0.69481,0.62749,0.820547,0.591681,0.392024,0.563064,0.888541,0.846212,0.687177,0.762851,0.221201,0.592384,0.616408,0.063199,0.334615,0.714752,0.787868,0.107844,0.532599,0.505341,0.463337,0.0155681,0.710871,0.251255,0.469561,0.607047,0.432491,0.548205,0.129919,0.260765,0.877266,0.480375,0.0484968,0.261279,0.234895,0.833167,0.132895,0.489324,0.195606,0.795348,0.453505,0.129041,0.939289,0.70164,0.630361,0.719042,0.855971,0.604934,0.895117,0.988927,0.101266,0.496701,0.847068,0.578747,0.736574,0.539837,0.930328,0.496274,0.399949,0.588807,0.35146,0.204509,0.130612,0.859525,0.0651444,0.640736,0.80154,0.643155,0.64165,0.874944,0.793696,0.645021,0.151226,0.431524,0.136553,0.789439,0.365997,0.342739,0.150806,0.289183,0.289005,0.243085,0.513887,0.459832,0.931454,0.648559,0.256118,0.723893,0.871641,0.696467,0.668586,0.958434,0.987612,0.179267,0.803655,0.356031,0.202192,0.155986,0.201127,0.326117,0.199055,0.650526,0.439408,0.724159,0.59727,0.632206,0.582899,0.927014,0.29344,0.134948,0.119215,0.66654,0.38096,0.38666,0.402164,0.555901,0.583628,0.716857,0.0985641,0.618459,0.396616,0.518721,0.400085,0.110016,0.947202,0.64735,0.934966,0.508859,0.42325,0.299064,0.11309,0.517475,0.440997,0.302914,0.603491,0.432315,0.957226,0.00585824,0.865677,0.322577,0.449246,0.954944,0.520154,0.515465,0.210235,0.671631,0.434413,0.991883,0.446673,0.594672,0.515408,0.980056,0.5033,0.802533,0.139301,0.580652,0.482387,0.492473,0.0183544,0.903278,0.78628,0.293053,0.274503,0.577885,0.403153,0.404966,0.84004,0.546519,0.597437,0.331545,0.207432,0.946897,0.803809,0.405297,0.599163,0.231534,0.879957,0.18407,0.702762,0.406627,0.777599,0.625328,0.245642,0.620634,0.164597,0.867639,0.847342,0.71159,0.471287,0.562069,0.449809,0.245241,0.654806,0.691862,0.376193,0.319528,0.316893,0.0833254,0.361343,0.887791,0.436128,0.00679153,0.903579,0.313961,0.505928,0.306841,0.371841,0.756949,0.703874,0.196364,0.303354,0.864164,0.756002,0.76696,0.023486,0.120947,0.831731,0.631369,0.0953946,0.393475,0.436876,0.456552,0.383165,0.384633,0.696297,0.266607,0.890908,0.0702085,0.117965,0.790884,0.593962,0.530107,0.39437,0.389257,0.169113,0.124261,0.0428987,0.139578,0.305346,0.568582,0.704787,0.274093,0.736483,0.862542,0.498078,0.597505,0.0288584,0.678269,0.755062,0.368188,0.841153,0.941195,0.576237,0.468316,0.885906,0.196819,0.100212,0.987699,0.830616,0.226832,0.610347,0.0575221,0.336042,0.30088,0.0810788,0.904402,0.775631,0.449378,0.986737,0.863738,0.968088,0.106681,0.81134,0.188958,0.974273,0.209555,0.824234,0.158173,0.230845,0.518172,0.778562,0.496676,0.33751,0.744259,0.34244,0.369935,0.175532,0.088552,0.999674,0.511095,0.609119,0.781501,0.571443,0.984726,0.243205,0.958857,0.148859,0.62093,0.995295,0.900196,0.780336,0.118207,0.981457,0.426452,0.479434,0.636057,0.191949,0.451901,0.41788,0.280129,0.52471,0.245143,0.655323,0.718405,0.0807699,0.611005,0.503957,0.226381,0.126715,0.315142,0.755304,0.871052,0.773956,0.980846,0.15317,0.603455,0.0221507,0.0714764,0.843287,0.517033,0.190463,0.715632,0.736252,0.533033,0.597618,0.0370963,0.258286,0.190429,0.201973,0.665493,0.625893,0.179712,0.476753,0.945215,0.54403,0.155926,0.804082,0.0453044,0.909604,0.0644352,0.577404,0.474838,0.87115,0.714074,0.369229,0.753053,0.766153,0.823925,0.622924,0.283185,0.762225,0.0346208,0.979755,0.489366,0.164418,0.648892,0.537129,0.925129,0.107075,0.543515,0.962244,0.794987,0.757959,0.704593,0.0696929,0.415978,0.310752,0.459109,0.303214,0.738445,0.297662,0.472494,0.0230647,0.684513,0.412876,0.358904,0.343306,0.196173,0.063409,0.301331,0.387743,0.536128,0.331926,0.267796,0.880384,0.832367,0.369158,0.6551,0.881871,0.873595,0.611561,0.00432944,0.314285,0.201721,0.850804,0.898817,0.380817,0.188499,0.237508,0.706262,0.999901,0.822812,0.920603,0.109125,0.0916217,0.463557,0.894837,0.719355,0.184096,0.933755,0.814574,0.968882,0.931261,0.259329,0.829364,0.268688,0.569013,0.410258,0.420523,0.578868,0.229857,0.809176,0.0920929,0.342788,0.555718,0.172249,0.0896046,0.394096,0.998569,0.838052,0.545244,0.188857,0.810142,0.0929181,0.325834,0.158339,0.965186,0.717501,0.667884,0.310064,0.748164,0.511791,0.28805,0.172964,0.0275703,0.709468,0.137387,0.374364,0.250762,0.863061,0.212742,0.757355,0.892424,0.281352,0.0616871,0.737952,0.0295975,0.603925,0.906123,0.634658,0.454363,0.955169,0.894758,0.0408454,0.324671,0.946006,0.0787565,0.339964,0.543464,0.295895,0.881479,0.984859,0.982349,0.736834,0.602384,0.396384,0.000589967,0.685111,0.509521,0.200851,0.990856,0.319254,0.833478,0.0574406,0.122232,0.0795234,0.437997,0.941011,0.72327,0.99735,0.283432,0.543638,0.404181,0.153042,0.102988,0.230241,0.368081,0.82758,0.638889,0.686832,0.303466,0.519244,0.206707,0.419626,0.833173,0.791205,0.490824,0.269203,0.468573,0.532189,0.160818,0.192892,0.561484,0.479043,0.426456,0.0757477,0.365865,0.38742,0.234304,0.95456,0.989081,0.435767,0.29329,0.826953,0.319534,0.25853,0.774376,0.0377962,0.0569394,0.622374,0.658015,0.282263,0.630039,0.124787,0.401941,0.291911,0.2855,0.20369,0.691511,0.580721,0.912454,0.241615,0.336804,0.583146,0.31048,0.574546,0.832877,0.681408,0.271917,0.497338,0.923241,0.548172,0.532859,0.75069,0.838477,0.869103,0.205348,0.674042,0.406203,0.635088,0.318597,0.51353,0.325159,0.631667,0.274962,0.157917,0.903306,0.630129,0.00904799,0.100364,0.408542,0.326469,0.592884,0.265424,0.613683,0.178889,0.988795,0.533692,0.124021,0.267932,0.450633,0.0976968,0.840247,0.75853,0.905257,0.27357,0.384098,0.654628,0.430231,0.153453,0.636387,0.064554,0.587302,0.293891,0.367306,0.0522595,0.646045,0.430635,0.56406,0.710052,0.805433,0.320413,0.738499,0.82796,0.326799,0.327984,0.84985,0.56516,0.193876,0.405417,0.411495,0.834906,0.513441,0.105593,0.665046,0.0109231,0.587215,0.776962,0.889059,0.107969,0.0014357,0.615332,0.446555,0.805003,0.0131583,0.37377,0.641195,0.545602,0.0254064,0.267421,0.243948,0.217087,0.611174,0.995299,0.558953,0.887311,0.809846,0.296069,0.623927,0.0427684,0.434939,0.722042,0.373304,0.282619,0.413216,0.240836,0.817239,0.229544,0.787899,0.736564,0.907106,0.737798,0.105605,0.846958,0.653031,0.191098,0.38454,0.556566,0.722456,0.913611,0.931964,0.497174,0.219896,0.112198,0.829711,0.318711,0.940209,0.192957,0.902363,0.61697,0.380727,0.698335,0.511974,0.922487,0.209131,0.573644,0.440246,0.711748,0.828657,0.985565,0.335845,0.342391,0.611498,0.196931,0.117757,0.541298,0.613738,0.896947,0.53969,0.854925,0.0469935,0.497556,0.147885,0.975764,0.802325,0.53208,0.694595,0.680305,0.669204,0.514318,0.0671531,0.995641,0.141115,0.0469406,0.261605,0.0879415,0.439538,0.14764,0.961854,0.751917,0.255341,0.403581,0.0469828,0.620559,0.0482464,0.29803,0.67485,0.404572,0.379118,0.0240309,0.407532,0.0656241,0.0846063,0.285075,0.750624,0.383952,0.18001,0.957502,0.0827253,0.43365,0.602431,0.279841,0.634906,0.505361,0.968883,0.918035,0.688633,0.0228206,0.225356,0.702386,0.561614,0.51135,0.546229,0.0301054,0.262715,0.0415733,0.651271,0.200748,0.560103,0.567491,0.302753,0.158449,0.462525,0.0416694,0.94919,0.905828,0.0855844,0.853205,0.662173,0.931676,0.667331,0.0596898,0.753977,0.711565,0.992008,0.196313,0.615688,0.435202,0.774599,0.172819,0.737161,0.801702,0.0874276,0.622891,0.0952461,0.432562,0.460115,0.462743,0.000832736,0.383133,2.15173e-05,0.626049,0.839763,0.73007,0.251432,0.820947,0.149421,0.705725,0.657556,0.416621,0.70091,0.407027,0.118849,0.352959,0.647745,0.237954,0.725741,0.949783,0.00354153,0.969488,0.936847,0.925575,0.0717496,0.99196,0.121956,0.0575661,0.849324,0.998487,0.0154981,0.346696,0.851906,0.247596,0.572546,0.938854,0.967313,0.811431,0.333496,0.364001,0.475792,0.777399,0.976629,0.956271,0.291855,0.882212,|0.564774,0.299102,0.0742206,0.882414,0.206078,0.252461,0.101969,0.115395,0.52242,0.76038,0.10172,0.200316,0.838662,0.0987055,0.31873,0.238336,0.902307,0.777449,0.0400534,0.476567,0.861581,0.510619,0.83072,0.778456,0.534973,0.893889,0.0621368,0.66782,0.173775,0.303065,0.148903,0.0223334,0.325324,0.452447,0.117117,0.498012,0.313056,0.0763855,0.211549,0.678449,0.907344,0.973065,0.640015,0.761842,0.13322,0.347499,0.119969,0.653999,0.660139,0.067883,0.188788,0.368304,0.524322,0.513471,0.352058,0.928812,0.575108,0.111275,0.431275,0.754927,0.204421,0.547052,0.732855,0.699318,0.804157,0.846912,0.525768,0.844524,0.767532,0.914918,0.185849,0.141811,0.179948,0.0594521,0.750283,0.381666,0.709634,0.398738,0.849634,0.691649,0.106779,0.33135,0.899397,0.656787,0.625131,0.794712,0.278409,0.700148,0.656473,0.219532,0.227717,0.372527,0.399631,0.915408,0.394718,0.832399,0.634486,0.789818,0.310908,0.117342,0.528502,0.854763,0.313802,0.475108,0.432532,0.533058,0.414559,0.808016,0.729428,0.748267,0.552855,0.171428,0.859909,0.284178,0.0429688,0.527202,0.204782,0.45881,0.116861,0.0560772,0.774866,0.601277,0.666568,0.87717,0.674603,0.147053,0.931745,0.446951,0.738879,0.371448,0.339201,0.172424,0.0211838,0.113026,0.534123,0.794711,0.292664,0.831422,0.513765,0.818752,0.963045,0.563604,0.454475,0.156316,0.815087,0.0368601,0.487868,0.856846,0.482271,0.989792,0.367455,0.553017,0.208694,0.582653,0.253647,0.58401,0.382365,0.19972,0.157199,0.919767,0.627451,0.0888423,0.560958,0.787079,0.672056,0.720405,0.514714,0.158058,0.264943,0.553239,0.961773,0.792594,0.214216,0.10428,0.796466,0.610684,0.225257,0.469232,0.553326,0.0222592,0.025963,0.690613,0.0139225,0.187371,0.68696,0.265063,0.541762,0.842708,0.830251,0.434437,0.484135,0.506122,0.252809,0.178277,0.0897031,0.553625,0.368688,0.758087,0.95255,0.3165,0.144154,0.462701,0.975493,0.492272,0.733914,0.896798,0.22286,0.250131,0.851449,0.553978,0.572452,0.785037,0.104599,0.388241,0.612958,0.79165,0.758462,0.970328,0.179364,0.802387,0.103867,0.398853,0.214196,0.66253,0.857051,0.291957,0.396685,0.815875,0.383405,0.812231,0.776954,0.484926,0.300369,0.549658,0.676289,0.519522,0.0177901,0.643782,0.271979,0.954576,0.941237,0.944396,0.0722973,0.0761181,0.390981,0.028695,0.848023,0.465117,0.275117,0.545374,0.366446,0.600086,0.748953,0.978403,0.887926,0.828132,0.383577,0.83523,0.085568,0.621501,0.165552,0.76387,0.183328,0.851006,0.550993,0.180799,0.226955,0.23098,0.447066,0.845247,0.694564,0.120419,0.350435,0.152932,0.443199,0.332041,0.626046,0.418353,0.375674,0.292055,0.971574,0.778458,0.516139,0.0548556,0.0103095,0.971635,0.0408128,0.526607,0.504959,0.380093,0.407406,0.852211,0.705116,0.397029,0.850508,0.850582,0.994338,0.323195,0.977359,0.68093,0.413795,0.352312,0.111865,0.0571166,0.971017,0.30606,0.286145,0.395389,0.553483,0.917668,0.778852,0.648769,0.108549,0.896401,0.0994742,0.702953,0.0667501,0.814673,0.169663,0.997509,0.26171,0.918579,0.986221,0.0795855,0.232205,0.871224,0.788792,0.643525,0.799771,0.938005,0.717695,0.0866097,0.898822,0.695354,0.782995,0.0707222,0.710279,0.768178,0.0786772,0.464292,0.689488,0.214968,0.437818,0.158266,0.108612,0.968952,0.0337767,0.050671,0.537302,0.828491,0.13586,0.313765,0.680175,0.999812,0.561993,0.322321,0.363153,0.248041,0.921489,0.695291,0.786356,0.360366,0.497812,0.959526,0.883504,0.00228453,0.299225,0.256266,0.934101,0.421079,0.914062,0.436159,0.103544,0.269339,0.994154,0.885771,0.235437,0.908951,0.224206,0.12704,0.113246,0.0704585,0.256226,0.471265,0.708927,0.663502,0.210239,0.314367,0.548986,0.0865694,0.739143,0.0381812,0.61691,0.109031,0.233381,0.237221,0.97234,0.555139,0.726866,0.319645,0.88672,0.180401,0.759083,0.594877,0.0147238,0.569096,0.982248,0.10654,0.728534,0.148306,0.816379,0.827985,0.841303,0.558194,0.302913,0.334481,0.0632825,0.566067,0.253401,0.148064,0.708378,0.914255,0.523711,0.244281,0.888331,0.086636,0.581291,0.747501,0.152114,0.219994,0.479979,0.987829,0.747095,0.544061,0.0540037,0.0778402,0.0787287,0.926606,0.123668,0.00346559,0.669423,0.776683,0.984815,0.712986,0.621259,0.110537,0.393424,0.849501,0.873655,0.557931,0.0349171,0.681628,0.0387415,0.309727,0.000532627,0.350515,0.127985,0.876399,0.629412,0.700458,0.508241,0.638661,0.0968643,0.735369,0.135672,0.660296,0.00142497,0.94289,0.797868,0.660653,0.61636,0.346576,0.219644,0.141484,0.0158412,0.413364,0.147748,0.809438,0.822344,0.52314,0.716925,0.655724,0.959703,0.253417,0.433867,0.453692,0.765667,0.550524,0.682127,0.230688,0.130038,0.87437,0.22652,0.230035,0.00834793,0.546426,0.33105,0.56517,0.719613,0.497565,0.370913,0.30489,0.684928,0.787531,0.90802,0.503624,0.20459,0.0229879,0.583557,0.356348,0.094827,0.75475,0.0159719,0.79971,0.27738,0.927175,0.483174,0.694587,0.608701,0.354803,0.304479,0.774516,0.503743,0.941378,0.204091,0.181168,0.84743,0.756687,0.218751,0.27849,0.866162,0.00175261,0.0756422,0.798607,0.364719,0.0732252,0.648637,0.657814,0.654406,0.511032,0.0413783,0.409906,0.354251,0.0766479,0.25186,0.400702,0.0484763,0.192575,0.137534,0.999095,0.611926,0.305431,0.0737312,0.988111,0.847713,0.454789,0.193382,0.979973,0.0075956,0.641027,0.823143,0.829786,0.956122,0.811011,0.926356,0.503483,0.946789,0.95384,0.3098,0.327748,0.890069,0.330925,0.813272,0.811719,0.557727,0.411427,0.962092,0.0668674,0.809438,0.579245,0.827435,0.0072459,0.348618,0.181288,0.09601,0.719396,0.0316474,0.677769,0.337986,0.0774583,0.217146,0.993161,0.135,0.571597,0.425706,0.172459,0.470203,0.826263,0.865478,0.461953,0.070452,0.913715,0.852774,0.856828,0.557589,0.173918,0.848534,0.151309,0.527667,0.565118,0.316234,0.77657,0.118412,0.588059,0.914276,0.38513,0.543596,0.667488,0.585227,0.329765,0.599006,0.162923,0.290308,0.836933,0.464097,0.374426,0.932534,0.12928,0.750297,0.702904,0.995953,0.311725,0.74967,0.557047,0.984723,0.592884,0.665771,0.557227,0.0581303,0.586578,0.70301,0.630579,0.527291,0.0598772,0.42177,0.808668,0.768264,0.069995,0.860104,0.0624057,0.279287,0.346432,0.668484,0.987873,0.106536,0.814383,0.930685,0.962461,0.120107,0.505944,0.0488178,0.382389,0.61578,0.612942,0.0430108,0.742714,0.803075,0.420724,0.423275,0.767115,0.00975072,0.443711,0.664862,0.550041,0.139616,0.31882,0.831397,0.682191,0.90533,0.115792,0.896967,0.581271,0.579867,0.819267,0.517792,0.991618,0.346304,0.739064,0.608744,0.419132,0.477066,0.705004,0.961179,0.994968,0.297364,0.726649,0.986814,0.467624,0.637631,0.501253,0.430941,0.337452,0.553732,0.703626,0.696842,0.186192,0.811037,0.767559,0.732738,0.956176,0.802892,0.100548,0.497736,0.205273,0.608526,0.526495,0.767682,0.670867,0.0138031,0.32041,0.997426,0.439677,0.789124,0.680965,0.959385,0.0541356,0.259126,0.367506,0.911985,0.736116,0.652024,0.0723028,0.395414,0.479428,0.400593,0.277415,0.869252,0.435973,0.090121,0.424168,0.46624,0.875926,0.850225,0.49769,0.0427359,0.24693,0.583681,0.404175,0.380114,0.786875,0.703105,0.500208,0.320159,0.0988204,0.73034,0.836263,0.363311,0.618382,0.537616,0.811495,0.777449,0.64202,0.0593776,0.400434,0.163232,0.375063,0.594361,0.148137,0.882418,0.783281,0.103083,0.307354,0.396994,0.850088,0.59418,0.503557,0.453377,0.615742,0.0774144,0.860711,0.660561,0.681962,0.378057,0.806438,0.101917,0.428626,0.451696,0.484332,0.73302,0.0364979,0.410792,0.345345,0.0505989,0.772293,0.080056,0.782651,0.451789,0.858136,0.282656,0.131122,0.0455857,0.241782,0.319002,0.653882,0.363861,0.311428,0.290282,0.555122,0.712253,0.00208259,0.606669,0.605999,0.632313,0.552562,0.835178,0.255827,0.391469,0.593676,0.760775,0.92533,0.80987,0.599229,0.545374,0.196236,0.0550718,0.729811,0.333259,0.665143,0.828569,0.339944,0.5385,0.915251,0.0142653,0.363844,0.724998,0.395976,0.56088,0.86764,0.506453,0.908257,0.504769,0.704324,0.966253,0.774161,0.289414,0.550065,0.146644,0.889512,0.64187,0.188137,0.7437,0.323937,0.983714,0.175434,0.983436,0.178742,0.0010187,0.0264935,0.103445,0.536824,0.0449054,0.423786,0.802937,0.02051,0.351956,0.600133,0.0525808,0.726088,0.774682,0.200879,0.826322,0.523784,0.135264,0.332494,0.39863,0.76694,0.158278,0.698683,0.324375,0.463068,0.880622,0.604963,0.128008,0.702927,0.0147013,0.542141,0.572122,0.889003,0.642337,0.495798,0.596154,0.612182,0.770345,0.491239,0.738012,0.152115,0.973631,0.998929,0.538165,0.0798807,0.331227,0.738037,0.825922,0.957008,0.612413,0.756484,0.305821,0.915569,0.60094,0.712236,0.585583,0.789981,0.807392,0.207359,0.642375,0.304651,0.349281,0.646468,0.43157,0.289322,0.797558,0.405602,0.773666,0.477205,0.88545,0.514542,0.3172,0.562548,0.788448,0.667063,0.918579,0.190299,0.719646,0.191181,0.205321,0.098918,0.719771,0.0180506,0.774463,0.973282,0.609106,0.802668,0.403501,0.942733,0.553259,0.533086,0.569096,0.412145,0.453021,0.140291,0.357488,0.160256,0.188826,0.781507,0.573391,0.374452,0.106346,0.693423,0.973939,0.0655518,0.995387,0.983789,0.659882,0.12975,0.220468,0.292258,0.557027,0.840729,0.889578,0.77005,0.875358,0.119603,0.85185,0.768087,0.213994,0.606105,0.739166,0.850691,0.967387,0.0436526,0.77886,0.903185,0.484549,0.432754,0.229185,0.368481,0.477834,0.662785,0.696337,0.702769,0.227899,0.403933,0.72253,0.138309,0.908952,0.556077,0.855644,0.568034,0.881691,0.626634,|0.691538,0.00346667,0.756357,0.950379,0.900073,0.489678,0.0725442,0.028767,0.229596,0.444173,0.413101,0.786348,0.43276,0.744123,0.668972,0.109288,0.924258,0.294653,0.2288,0.12353,0.685013,0.14599,0.107015,0.71366,0.639407,0.0964975,0.148331,0.112386,0.526902,0.328238,0.140103,0.972862,0.98034,0.822291,0.339445,0.0829825,0.980582,0.421957,0.669079,0.641599,0.726179,0.798263,0.168245,0.904586,0.236231,0.447532,0.938379,0.289343,0.532777,0.959911,0.852407,0.211556,0.739946,0.339918,0.377456,0.874569,0.0692092,0.242674,0.487238,0.0317063,0.16637,0.556461,0.0187536,0.862525,0.805972,0.381426,0.55852,0.989771,0.263472,0.772137,0.445617,0.652318,0.776495,0.0564391,0.267606,0.487756,0.424975,0.945416,0.446812,0.148713,0.177923,0.522103,0.619582,0.204202,0.141268,0.882216,0.560119,0.977896,0.938719,0.638857,0.821771,0.41771,0.602712,0.310784,0.971231,0.56601,0.688505,0.612746,0.593544,0.775414,0.879075,0.48746,0.829238,0.119976,0.5907,0.967826,0.909099,0.581472,0.727073,0.0417375,0.443577,0.11968,0.336066,0.999634,0.152201,0.121848,0.684362,0.121816,0.0174782,0.77286,0.552372,0.764344,0.215327,0.40069,0.483819,0.0533279,0.234541,0.931107,0.954498,0.950637,0.337234,0.750565,0.525805,0.20063,0.51635,0.738876,0.760488,0.600926,0.146469,0.0283325,0.382661,0.627864,0.766473,0.393425,0.570693,0.260278,0.114753,0.705063,0.674087,0.729822,0.307529,0.785212,0.465083,0.582465,0.403437,0.859885,0.130031,0.326889,0.947356,0.226137,0.779021,0.124105,0.424463,0.709141,0.326951,0.964188,0.406107,0.00579095,0.621513,0.761955,0.247011,0.877459,0.308673,0.351426,0.859589,0.220583,0.189767,0.284747,0.570883,0.398539,0.155835,0.878227,0.0540606,0.0119605,0.645363,0.935189,0.394809,0.275819,0.595514,0.716817,0.516106,0.644612,0.0834219,0.685798,0.703221,0.489232,0.944382,0.800059,0.104738,0.929816,0.311296,0.919961,0.869259,0.694428,0.37067,0.00685036,0.071222,0.152218,0.40118,0.966031,0.888591,0.393,0.815441,0.0311799,0.506776,0.313811,0.0237326,0.435208,0.69464,0.693937,0.0332624,0.232235,0.00318986,0.559311,0.142568,0.960774,0.95701,0.259145,0.0875789,0.207716,0.79428,0.791901,0.606789,0.643386,0.978313,0.113847,0.153514,0.873063,0.45907,0.434123,0.824816,0.915813,0.789648,0.0711071,0.457327,0.789331,0.599667,0.0476841,0.827072,0.781748,0.334365,0.362396,0.0235552,0.989807,0.161279,0.748762,0.000348747,0.261395,0.535234,0.72808,0.77836,0.255508,0.79884,0.231965,0.414013,0.716908,0.827859,0.685369,0.611957,0.688243,0.60278,0.788403,0.151814,0.428901,0.0136878,0.295139,0.933519,0.310056,0.972787,0.713788,0.145973,0.0945336,0.295593,0.921487,0.115012,0.676394,0.680352,0.131582,0.044716,0.173353,0.387969,0.364633,0.478153,0.339511,0.253308,0.687922,0.734384,0.223931,0.773105,0.495595,0.361223,0.944345,0.0188441,0.681346,0.460416,0.011909,0.261092,0.630036,0.819082,0.238869,0.200304,0.800184,0.210676,0.477849,0.514915,0.390284,0.497437,0.897784,0.805817,0.577914,0.234356,0.338441,0.406132,0.322189,0.429991,0.117307,0.842115,0.496643,0.105941,0.646614,0.136538,0.542206,0.903331,0.700797,0.58077,0.728918,0.0280834,0.0194992,0.996849,0.671665,0.630418,0.326545,0.922216,0.10828,0.413442,0.0731129,0.929857,0.699053,0.317751,0.102309,0.176161,0.103691,0.128296,0.565641,0.640036,0.785749,0.119976,0.441826,0.0881631,0.224971,0.342772,0.556954,0.523577,0.412091,0.971093,0.334609,0.227339,0.89577,0.658058,0.702781,0.690528,0.192129,0.164775,0.408479,0.385876,0.364088,0.398444,0.87826,0.477397,0.956949,0.689693,0.787584,0.0042392,0.338053,0.977869,0.597243,0.541319,0.834551,0.694498,0.286102,0.570762,0.0894282,0.392985,0.633881,0.0812459,0.668598,0.0206866,0.870954,0.406324,0.636063,0.968798,0.880185,0.822241,0.490593,0.406762,0.124708,0.65993,0.38795,0.922,0.593069,0.838384,0.728346,0.150859,0.269763,0.41551,0.617709,0.0175669,0.841306,0.719387,0.333044,0.769,0.743322,0.339215,0.504679,0.361075,0.965387,0.199023,0.607529,0.662451,0.844632,0.247253,0.0776939,0.863974,0.367628,0.314854,0.951019,0.974368,0.574187,0.275157,0.12649,0.194303,0.554581,0.737072,0.946811,0.738629,0.718739,0.592064,0.314628,0.944396,0.0892164,0.199648,0.0695251,0.352656,0.398148,0.0644987,0.0913299,0.0208315,0.247386,0.463996,0.807732,0.850915,0.372019,0.374785,0.794047,0.652248,0.229954,0.984052,0.967203,0.390013,0.221161,0.887032,0.0247484,0.830932,0.225965,0.748072,0.658174,0.574734,0.151756,0.554781,0.11393,0.664611,0.146305,0.613356,0.59466,0.457318,0.456372,0.152335,0.176826,0.824498,0.901867,0.869027,0.78133,0.967182,0.736977,0.651991,0.342692,0.617095,0.106494,0.320704,0.935493,0.903806,0.0497287,0.0641792,0.471374,0.496142,0.236798,0.897922,0.839656,0.551926,0.390658,0.0559424,0.651427,0.432987,0.931086,0.663089,0.536646,0.328736,0.793544,0.262719,0.892931,0.660901,0.850015,0.694739,0.644593,0.835456,0.450748,0.735551,0.890565,0.602489,0.561501,0.34158,0.482821,0.988908,0.569848,0.213478,0.734821,0.903096,0.476533,0.102229,0.554244,0.344593,0.655465,0.11162,0.926476,0.952041,0.0042541,0.804095,0.724604,0.630103,0.0819241,0.691603,0.200753,0.459623,0.986429,0.853512,0.438256,0.961004,0.264088,0.971552,0.993373,0.41337,0.158459,0.9932,0.77678,0.812609,0.512617,0.196489,0.270606,0.7287,0.652775,0.768683,0.581103,0.697058,0.51409,0.972804,0.50813,0.471673,0.0177025,0.616821,0.854565,0.390716,0.602019,0.910194,0.801578,0.707392,0.499497,0.025701,0.227151,0.539329,0.895228,0.0165256,0.96823,0.272346,0.581399,0.156119,0.183243,0.963491,0.890264,0.496862,0.21843,0.0948164,0.653583,0.505812,0.222022,0.272955,0.287769,0.419319,0.823002,0.661258,0.997313,0.362075,0.792361,0.166508,0.694259,0.333214,0.25755,0.969421,0.208524,0.838991,0.73935,0.0024839,0.199539,0.590807,0.612789,0.427123,0.471835,0.13894,0.523193,0.702622,0.0326492,0.738726,0.763877,0.586429,0.653585,0.311396,0.500006,0.513681,0.247297,0.066206,0.719648,0.413021,0.743923,0.0902321,0.351027,0.514905,0.482591,0.59893,0.560202,0.894814,0.778241,0.95008,0.398706,0.90498,0.395187,0.322083,0.0704794,0.819966,0.0128613,0.284583,0.802353,0.748458,0.71939,0.224807,0.388871,0.106428,0.892873,0.932899,0.0061658,0.642701,0.312427,0.662892,0.727182,0.949219,0.372222,0.920831,0.525425,0.407053,0.482216,0.0701739,0.0954295,0.518583,0.716895,0.856198,0.207085,0.471903,0.723595,0.918716,0.734914,0.880988,0.3478,0.385413,0.773187,0.0865088,0.433878,0.366607,0.448162,0.654301,0.262682,0.175137,0.18581,0.651929,0.0201191,0.525567,0.134722,0.171798,0.227315,0.280288,0.549482,0.936199,0.946443,0.437234,0.0714717,0.697062,0.00415647,0.289642,0.344842,0.483227,0.931643,0.467316,0.425119,0.90726,0.327097,0.184692,0.257143,0.15143,0.899704,0.575644,0.228622,0.493006,0.409305,0.808323,0.984438,0.541535,0.751039,0.400951,0.770871,0.953999,0.0111144,0.890481,0.236304,0.424349,0.191633,0.728089,0.511396,0.224585,0.0913699,0.606877,0.292713,0.765484,0.699939,0.921935,0.806649,0.946706,0.141752,0.909411,0.424842,0.769099,0.525144,0.682361,0.0467372,0.422691,0.768767,0.129575,0.712904,0.898366,0.901974,0.509932,0.930073,0.473665,0.729576,0.69276,0.0838342,0.852457,0.827683,0.62697,0.956045,0.444625,0.310822,0.70072,0.773127,0.994137,0.920802,0.0904763,0.670411,0.386998,0.74985,0.669158,0.0679271,0.317685,0.918367,0.926225,0.229523,0.537317,0.00758314,0.501197,0.334539,0.404721,0.272755,0.992616,0.370614,0.535822,0.00769186,0.977321,0.84651,0.611706,0.0491696,0.292074,0.0976765,0.649288,0.492737,0.254659,0.896448,0.373022,0.874925,0.424205,0.177716,0.289479,0.265038,0.929895,0.175107,0.438438,0.36051,0.418464,0.951068,0.772294,0.97749,0.371434,0.0293236,0.98534,0.792571,0.685163,0.566166,0.00985545,0.207197,0.955504,0.057077,0.838592,0.302926,0.250515,0.838315,0.637768,0.00584227,0.457798,0.756282,0.993648,0.376212,0.110559,0.250448,0.414234,0.283031,0.730687,0.737579,0.381374,0.804818,0.0846259,0.288311,0.503987,0.0809048,0.196022,0.785564,0.715527,0.475922,0.642131,0.673245,0.518675,0.430673,0.828417,0.954449,0.914483,0.823571,0.339212,0.990929,0.35003,0.927475,0.318808,0.544463,0.872868,0.613698,0.879492,0.58626,0.436918,0.357431,0.314671,0.806832,0.767348,0.0775414,0.00853479,0.691473,0.993989,0.689251,0.526901,0.398145,0.0811207,0.663238,0.116978,0.656091,0.995535,0.9067,0.186435,0.482972,0.510769,0.881659,0.0660301,0.406532,0.907668,0.246734,0.434393,0.493774,0.281851,0.315603,0.273184,0.372895,0.566346,0.233848,0.0375765,0.580156,0.121506,0.977809,0.183449,0.545311,0.0646017,0.917749,0.382617,0.163609,0.489797,0.533771,0.27285,0.980024,0.615073,0.341293,0.766022,0.238211,0.559224,0.982459,0.65084,0.760649,0.239346,0.38004,0.279588,0.233856,0.370819,0.0260276,0.588927,0.350203,0.480678,0.875008,0.934358,0.680446,0.520522,0.436084,0.643536,0.735932,0.101257,0.0802756,0.656988,0.633965,0.782867,0.733633,0.0104798,0.941085,0.112485,0.200529,0.47424,0.0700272,0.807908,0.174514,0.0314396,0.217067,0.969991,0.878064,0.190061,0.667551,0.532586,0.0391055,0.98172,0.571682,0.110631,0.374189,0.783011,0.734452,0.708755,0.705913,0.344867,0.9771,0.156482,0.318187,0.727369,0.276273,0.210958,0.4577,0.356526,0.68,0.758603,0.980762,0.154073,0.821493,0.66944,0.45038,0.754313,0.75641,|0.311032,0.970939,0.152838,0.117254,0.83646,0.512638,0.0476102,0.894957,0.319801,0.70091,0.803538,0.983914,0.353222,0.717288,0.834928,0.362178,0.319398,0.638039,0.183802,0.550553,0.218401,0.189445,0.138176,0.653411,0.58328,0.211849,0.813525,0.421501,0.701382,0.253705,0.755396,0.51328,0.99955,0.710735,0.683174,0.510281,0.276827,0.810605,0.98812,0.247034,0.212003,0.375473,0.763652,0.647819,0.0877342,0.592692,0.780299,0.271166,0.424327,0.776235,0.0520822,0.0761508,0.865919,0.365498,0.713312,0.555606,0.673818,0.269691,0.896955,0.808487,0.201664,0.595425,0.328383,0.686323,0.300716,0.939951,0.58077,0.0805551,0.633284,0.00631142,0.262118,0.142724,0.553745,0.71417,0.310885,0.4861,0.822644,0.596885,0.665227,0.201527,0.695655,0.562542,0.736848,0.0760464,0.923963,0.452057,0.42841,0.945219,0.337048,0.288537,0.518455,0.884776,0.801849,0.375935,0.753664,0.206924,0.445209,0.338144,0.124785,0.330566,0.35277,0.798297,0.261647,0.134367,0.152379,0.649191,0.729784,0.0430759,0.0097478,0.0146147,0.564388,0.323505,0.612389,0.842383,0.668697,0.300268,0.274641,0.547975,0.565735,0.726458,0.725975,0.160459,0.864773,0.49012,0.774884,0.236341,0.223642,0.152348,0.29674,0.0314069,0.318011,0.827676,0.906121,0.205396,0.200566,0.731826,0.544783,0.094368,0.814637,0.36517,0.322183,0.531638,0.0904574,0.642375,0.891096,0.162244,0.589902,0.514407,0.18901,0.878208,0.177288,0.146695,0.862176,0.377129,0.121604,0.449311,0.641526,0.577772,0.86513,0.0996103,0.427523,0.729585,0.377134,0.485835,0.181062,0.704325,0.704346,0.872261,0.702713,0.78508,0.203019,0.79372,0.462304,0.318853,0.56143,0.013789,0.990972,0.800143,0.830814,0.468116,0.556565,0.485529,0.52861,0.739369,0.350217,0.882815,0.661236,0.0406621,0.000756562,0.659936,0.307485,0.527898,0.434582,0.450283,0.415569,0.210777,0.98405,0.906636,0.473396,0.723212,0.786331,0.231293,0.798336,0.518184,0.145618,0.0235837,0.395491,0.586086,0.580178,0.105353,0.283372,0.537662,0.931994,0.436024,0.602087,0.0795252,0.345809,0.0763344,0.216496,0.265033,0.39017,0.309005,0.402901,0.0931306,0.80246,0.610865,0.791681,0.46814,0.351572,0.16581,0.938989,0.184579,0.87417,0.414474,0.776496,0.562655,0.110764,0.0799575,0.0371583,0.448153,0.550084,0.060216,0.593749,0.455915,0.803759,0.96252,0.595892,0.578754,0.0340828,0.217406,0.936212,0.357067,0.942594,0.567396,0.734643,0.0284987,0.992619,0.400295,0.27122,0.173127,0.106377,0.657814,0.610131,0.199836,0.570033,0.165167,0.800948,0.523262,0.402115,0.443942,0.556559,0.319056,0.18626,0.349435,0.0952951,0.9909,0.830139,0.584058,0.994927,0.733219,0.630055,0.262897,0.491514,0.164156,0.109603,0.442484,0.0731134,0.64371,0.872542,0.363604,0.029383,0.461231,0.52663,0.835263,0.488566,0.155039,0.373636,0.638141,0.470276,0.481183,0.538511,0.544924,0.98101,0.277303,0.649731,0.200134,0.981105,0.201886,0.516335,0.902,0.156872,0.630715,0.823062,0.975743,0.689028,0.206635,0.395621,0.0997677,0.535643,0.642358,0.795474,0.840232,0.470647,0.218718,0.349139,0.0254495,0.916275,0.30199,0.48571,0.695848,0.910309,0.176159,0.937269,0.940533,0.0572889,0.744097,0.18829,0.195217,0.188955,0.712505,0.780279,0.682449,0.439281,0.82057,0.337701,0.823992,0.473913,0.359238,0.237153,0.469858,0.638755,0.275668,0.762899,0.114317,0.718609,0.593992,0.916547,0.663144,0.501725,0.974527,0.4807,0.583513,0.341298,0.0985786,0.00620097,0.658743,0.948203,0.0591565,0.430261,0.147646,0.720791,0.446557,0.58901,0.121494,0.482734,0.71727,0.789798,0.21989,0.907649,0.690389,0.561026,0.229831,0.0982488,0.308159,0.750823,0.989798,0.411696,0.606888,0.838752,0.621728,0.669182,0.933716,0.720645,0.932721,0.027805,0.316255,0.796862,0.995651,0.529257,0.0402638,0.121429,0.596774,0.490496,0.728102,0.454094,0.604781,0.0858148,0.0426686,0.310945,0.690878,0.899492,0.655259,0.650566,0.123339,0.753802,0.736621,0.794202,0.916351,0.0433595,0.317229,0.120776,0.321882,0.680308,0.289148,0.294986,0.878544,0.114353,0.799801,0.342137,0.556796,0.113627,0.560659,0.815554,0.421854,0.402837,0.66244,0.0262562,0.409509,0.00830424,0.624235,0.628413,0.124769,0.0239269,0.503743,0.42544,0.963039,0.993856,0.887695,0.169875,0.442205,0.327408,0.302144,0.290965,0.212398,0.0687697,0.775551,0.162974,0.248314,0.880416,0.740106,0.939927,0.358561,0.719697,0.284887,0.558142,0.17005,0.936138,0.0119157,0.854467,0.907133,0.640742,0.754375,0.679116,0.0687227,0.106016,0.871643,0.598716,0.514546,0.534433,0.122733,0.314463,0.0322315,0.99154,0.829923,0.528616,0.20203,0.855088,0.418656,0.632119,0.850138,0.497008,0.640204,0.414979,0.888822,0.0482675,0.0882033,0.970556,0.380781,0.48635,0.450997,0.998414,0.35762,0.271834,0.364593,0.225668,0.650045,0.017417,0.169959,0.31887,0.197082,0.995296,0.377935,0.853757,0.234996,0.482074,0.737424,0.821987,0.297663,0.479554,0.998329,0.707114,0.114508,0.87259,0.255771,0.393517,0.0994256,0.989131,0.935896,0.303217,0.436724,0.301685,0.784477,0.264231,0.176919,0.942948,0.289868,0.948393,0.683275,0.499144,0.210634,0.318077,0.231118,0.312745,0.936947,0.286822,0.0222692,0.893291,0.18608,0.839694,0.634021,0.370034,0.429339,0.461256,0.0511649,0.174322,0.336739,0.0509955,0.249905,0.053871,0.358478,0.566827,0.875964,0.916083,0.258624,0.90411,0.999774,0.62235,0.849012,0.862722,0.691372,0.689441,0.502975,0.028241,0.176211,0.930358,0.721786,0.139112,0.688249,0.977649,0.85397,0.351704,0.129913,0.998572,0.0628795,0.0169209,0.640636,0.143657,0.775032,0.648643,0.212688,0.34982,0.534381,0.83389,0.779703,0.646961,0.633272,0.210296,0.596369,0.408323,0.511062,0.102615,0.693572,0.114406,0.303268,0.988128,0.507215,0.71746,0.570514,0.918437,0.232692,0.753751,0.320355,0.964559,0.501877,0.945559,0.598144,0.891746,0.832934,0.925924,0.838463,0.815125,0.805187,0.403789,0.869419,0.863617,0.112302,0.731075,0.477859,0.588555,0.333928,0.731317,0.683245,0.839916,0.0182205,0.505788,0.480625,0.189232,0.785214,0.936723,0.208633,0.971194,0.0869841,0.36849,0.794316,0.699256,0.932531,0.931358,0.335872,0.385662,0.398624,0.34849,0.530739,0.512868,0.922051,0.620329,0.371123,0.151003,0.493156,0.654389,0.704486,0.439152,0.54354,0.585726,0.829877,0.733932,0.981383,0.644487,0.915495,0.425545,0.197925,0.373778,0.097056,0.119423,0.489557,0.120835,0.162094,0.892053,0.728706,0.189013,0.959338,0.869848,0.0755857,0.249472,0.0987622,0.670585,0.389723,0.465243,0.179345,0.257312,0.215468,0.54502,0.963157,0.0433228,0.460883,0.098834,0.686148,0.027837,0.473124,0.850152,0.0913505,0.329912,0.990379,0.435887,0.751914,0.769787,0.162572,0.363116,0.687864,0.989734,0.840205,0.829096,0.116799,0.79118,0.356332,0.279224,0.55556,0.254893,0.161689,0.0543634,0.735533,0.886562,0.2836,0.633456,0.0349267,0.0603863,0.895913,0.866935,0.902186,0.150046,0.603582,0.320188,0.665421,0.990753,0.0984111,0.841186,0.277018,0.34299,0.80615,0.0659062,0.135175,0.252466,0.38098,0.147724,0.582861,0.726734,0.244451,0.515752,0.421383,0.149047,0.838311,0.355357,0.840163,0.958264,0.636042,0.874252,0.944472,0.88596,0.202311,0.510545,0.372572,0.907658,0.795844,0.326804,0.931437,0.516862,0.849039,0.343106,0.315181,0.586477,0.838105,0.736061,0.743428,0.851594,0.908303,0.0596585,0.912211,0.582221,0.327612,0.122743,0.781543,0.246546,0.70445,0.249289,0.289267,0.0925899,0.299248,0.878241,0.379401,0.482965,0.387458,0.149498,0.411062,0.303043,0.442047,0.184383,0.77001,0.321285,0.482578,0.531693,0.506447,0.952065,0.925185,0.184942,0.48656,0.370154,0.132596,0.378149,0.0569754,0.640468,0.767546,0.491957,0.574274,0.334218,0.110947,0.0554182,0.0103457,0.836415,0.833617,0.84907,0.483664,0.709209,0.125222,0.805649,0.46922,0.0697201,0.29551,0.88831,0.862784,0.678463,0.322546,0.493354,0.563821,0.281471,0.712792,0.204762,0.0622777,0.588144,0.245003,0.112561,0.459048,0.482759,0.135067,0.000585675,0.965678,0.0451452,0.847198,0.795379,0.655123,0.943256,0.626683,0.129249,0.526823,0.64143,0.502091,0.972269,0.937922,0.578349,0.979583,0.785914,0.754627,0.201459,0.823013,0.847063,0.562516,0.572862,0.219936,0.814494,0.751032,0.295339,0.336119,0.267269,0.726369,0.813439,0.287128,0.683886,0.977687,0.544794,0.99972,0.133888,0.0568948,0.884928,0.0993652,0.262164,0.463467,0.391545,0.756989,0.703755,0.953992,0.983331,0.864515,0.394955,0.267957,0.78384,0.364513,0.00789332,0.422806,0.59572,0.471131,0.961272,0.392727,0.627849,0.956336,0.140689,0.839365,0.279594,0.611786,0.935142,0.102369,0.307527,0.525027,0.222265,0.335842,0.598716,0.946037,0.824559,0.896829,0.691358,0.307415,0.441283,0.504936,0.438412,0.535963,0.300515,0.915128,0.630065,0.184151,0.985609,0.298604,0.682031,0.177762,0.46182,0.038397,0.953009,0.716837,0.919962,0.318683,0.0578197,0.684311,0.273168,0.93481,0.637429,0.993449,0.157577,0.742267,0.663493,0.940513,0.619323,0.468829,0.084253,0.75234,0.0345926,0.598657,0.969436,0.84485,0.909982,0.694849,0.406827,0.202726,0.716353,0.800616,0.155024,0.986418,0.519377,0.633247,0.929697,0.806325,0.784288,0.940071,0.148347,0.66575,0.352913,0.380674,0.530861,0.895136,0.571175,0.0815757,0.629195,0.6272,0.906324,0.589644,0.124286,0.956736,0.667856,0.438545,0.971581,0.939842,0.494844,0.105322,0.839291,0.316605,0.984028,0.303768,0.415877,0.667795,0.040511,0.750772,0.579455,0.341653,0.702477,0.489338,|0.592409,0.973967,0.535605,0.666584,0.709909,0.258405,0.185127,0.458596,0.756088,0.526392,0.875596,0.525043,0.976061,0.766713,0.470275,0.475016,0.176732,0.47436,0.844117,0.350318,0.482576,0.7733,0.407874,0.181315,0.371855,0.648009,0.458819,0.139664,0.147064,0.132761,0.0352842,0.58346,0.798072,0.344363,0.447164,0.529834,0.95997,0.814131,0.205569,0.480584,0.680529,0.473149,0.210726,0.677535,0.460978,0.482919,0.909024,0.40512,0.797926,0.713453,0.441051,0.554813,0.808288,0.873839,0.0198463,0.0220141,0.431115,0.737554,0.912608,0.00507838,0.231692,0.564893,0.49251,0.620347,0.727614,0.00986326,0.880857,0.00783664,0.0890597,0.702197,0.272349,0.229766,0.377743,0.791212,0.369703,0.929332,0.724197,0.937615,0.970467,0.317187,0.704309,0.78809,0.711712,0.214544,0.17037,0.342424,0.800398,0.0144123,0.524096,0.465332,0.0794268,0.767436,0.818878,0.40483,0.695284,0.141867,0.706243,0.0909894,0.559449,0.96377,0.208025,0.468613,0.196747,0.990124,0.404979,0.832815,0.92584,0.904659,0.679136,0.637348,0.158122,0.230732,0.511257,0.953757,0.386257,0.52416,0.299022,0.404031,0.551274,0.606209,0.0486791,0.43576,0.0998653,0.910869,0.735762,0.00844729,0.292672,0.309513,0.984023,0.966816,0.176094,0.684851,0.462802,0.47872,0.273255,0.419737,0.395703,0.0343913,0.602086,0.530138,0.029456,0.115773,0.254279,0.550042,0.693662,0.83717,0.157356,0.104075,0.343199,0.429063,0.00540453,0.488367,0.103724,0.555843,0.348809,0.19374,0.5562,0.148915,0.379626,0.285802,0.118442,0.581451,0.420361,0.766271,0.368193,0.353224,0.557354,0.160136,0.199527,0.548243,0.664658,0.364899,0.267269,0.979733,0.386497,0.360023,0.444951,0.561038,0.195075,0.422166,0.219632,0.130275,0.714094,0.483029,0.794691,0.754982,0.468186,0.0638245,0.15601,0.106539,0.8318,0.504186,0.247292,0.785957,0.742707,0.746129,0.889754,0.702959,0.0509202,0.746208,0.109197,0.878746,0.673561,0.305836,0.00369298,0.542628,0.944943,0.610423,0.329576,0.868459,0.434292,0.17859,0.244964,0.309887,0.721723,0.292919,0.889436,0.0519026,0.663978,0.759528,0.962677,0.436599,0.224679,0.899013,0.90893,0.342612,0.477536,0.239058,0.213367,0.0700017,0.660455,0.569989,0.583762,0.229778,0.849387,0.914828,0.915366,0.338963,0.351875,0.760398,0.151564,0.399039,0.559969,0.732149,0.441759,0.2253,0.206786,0.830723,0.101158,0.071674,0.133683,0.00565803,0.160333,0.0473284,0.147053,0.621232,0.187372,0.0368818,0.670484,0.39471,0.287996,0.667069,0.86061,0.967172,0.492715,0.322373,0.366649,0.318684,0.965222,0.0766228,0.295783,0.821437,0.378191,0.295065,0.361924,0.821383,0.0992948,0.76757,0.187394,0.222607,0.19702,0.686158,0.427502,0.243585,0.247536,0.573291,0.821616,0.578404,0.501155,0.248129,0.178381,0.516704,0.784412,0.587962,0.125717,0.973209,0.736704,0.450806,0.508976,0.854172,0.311907,0.143304,0.811989,0.978882,0.602999,0.478596,0.0467044,0.999638,0.380662,0.696262,0.973548,0.0683745,0.597756,0.580457,0.801602,0.789868,0.0914116,0.776124,0.958437,0.605151,0.16612,0.206182,0.210662,0.877407,0.722999,0.66036,0.651328,0.662115,0.560286,0.346167,0.14097,0.531224,0.768122,0.820598,0.89126,0.872864,0.644267,0.380403,0.862876,0.0192304,0.407256,0.555789,0.380727,0.973314,0.193472,0.138681,0.100557,0.33083,0.565881,0.871436,0.265998,0.604248,0.282188,0.722007,0.192827,0.125948,0.600075,0.227289,0.193491,0.263519,0.0662191,0.482504,0.414569,0.0550042,0.490986,0.0630854,0.869764,0.604519,0.367232,0.803935,0.774566,0.236193,0.300948,0.918727,0.0290035,0.457203,0.179914,0.922025,0.889994,0.55269,0.518791,0.880364,0.602614,0.349147,0.0319123,0.66207,0.556584,0.255843,0.106033,0.199174,0.447209,0.161293,0.126727,0.179625,0.177129,0.716638,0.520444,0.610965,0.452222,0.901641,0.400867,0.730264,0.754876,0.417214,0.719376,0.722628,0.638951,0.8774,0.00690889,0.0750588,0.528796,0.300155,0.668753,0.937551,0.591814,0.484322,0.652098,0.424463,0.825449,0.305213,0.821967,0.602267,0.992122,0.125378,0.288144,0.575799,0.961525,0.762602,0.466287,0.155652,0.654366,0.506761,0.662052,0.766429,0.903825,0.0464489,0.226725,0.337098,0.128946,0.763673,0.0869865,0.656513,0.603415,0.283746,0.321021,0.0361868,0.86966,0.633539,0.0341278,0.423219,0.550827,0.210418,0.378373,0.190434,0.434922,0.128828,0.50994,0.319838,0.338387,0.319419,0.602858,0.54845,0.188054,0.51112,0.311131,0.948442,0.673408,0.0607733,0.447497,0.94764,0.810018,0.665808,0.968919,0.667396,0.011959,0.529551,0.12563,0.95484,0.133193,0.33537,0.255695,0.449073,0.209543,0.928017,0.68365,0.150783,0.943634,0.956764,0.731108,0.273834,0.49062,0.229986,0.105798,0.451388,0.880498,0.787128,0.0246645,0.490573,0.92281,0.037102,0.177416,0.0861934,0.953003,0.000508547,0.269714,0.179801,0.152978,0.590241,0.859861,0.514677,0.382074,0.225997,0.894819,0.314252,0.913607,0.186157,0.0212393,0.117134,0.716484,0.230614,0.710623,0.00414008,0.505971,0.669019,0.873011,0.108068,0.966593,0.240819,0.060289,0.865364,0.0544214,0.620323,0.905187,0.620193,0.755952,0.617495,0.65243,0.96981,0.82647,0.457455,0.767187,0.803263,0.73626,0.0802088,0.0132951,0.513975,0.238949,0.260256,0.135393,0.396988,0.805362,0.0708756,0.764139,0.16005,0.411819,0.238863,0.920604,0.297706,0.848248,0.821214,0.848804,0.0910719,0.247464,0.768391,0.0200796,0.974152,0.488185,0.384006,0.556831,0.899189,0.490759,0.401313,0.899418,0.635235,0.313288,0.946169,0.534861,0.385179,0.670882,0.889407,0.989372,0.998725,0.58812,0.192564,0.236086,0.386945,0.23985,0.828446,0.98501,0.333105,0.0070222,0.337746,0.116308,0.135802,0.199319,0.277362,0.928777,0.570991,0.712061,0.653224,0.318126,0.790854,0.66782,0.106145,0.175094,0.871025,0.557711,0.919946,0.993467,0.349846,0.509197,0.356189,0.954233,0.397563,0.129156,0.727126,0.0789372,0.377817,0.103525,0.357122,0.322735,0.496951,0.967711,0.819331,0.439032,0.0876147,0.498552,0.38309,0.974999,0.738139,0.839579,0.810045,0.368427,0.856501,0.928728,0.718926,0.692348,0.856958,0.446825,0.560956,0.95722,0.206996,0.947363,0.51236,0.0940073,0.507742,0.5303,0.684441,0.267081,0.723774,0.0031606,0.837405,0.887999,0.488679,0.0325777,0.919425,0.763296,0.620122,0.826954,0.859381,0.336641,0.999785,0.838765,0.715378,0.595117,0.259992,0.100301,0.637309,0.383765,0.297081,0.224416,0.419457,0.992665,0.705369,0.0973828,0.821444,0.165416,0.362717,0.650944,0.168904,0.793046,0.654847,0.732516,0.730041,0.825427,0.297855,0.775774,0.368095,0.796446,0.278134,0.613238,0.215486,0.482044,0.988553,0.46092,0.970317,0.0644736,0.473345,0.765121,0.301458,0.112307,0.780874,0.699493,0.899259,0.755181,0.428385,0.858655,0.955085,0.786282,0.447589,0.177486,0.121149,0.0809551,0.450741,0.877895,0.885591,0.787989,0.441407,0.891698,0.853829,0.443541,0.49057,0.190737,0.238964,0.0435645,0.0211481,0.739092,0.351207,0.668767,0.855298,0.270341,0.957005,0.779178,0.258781,0.976553,0.736908,0.294434,0.546299,0.36986,0.875489,0.671497,0.544099,0.638236,0.85127,0.476175,0.735573,0.898282,0.857851,0.4937,0.323329,0.831608,0.806871,0.451362,0.0935441,0.0579553,0.239897,0.656382,0.968467,0.0944175,0.0439739,0.20976,0.968521,0.28566,0.759453,0.339109,0.931636,0.0631211,0.640916,0.050831,0.113452,0.801225,0.37059,0.582033,0.232725,0.379329,0.130432,0.213688,0.279941,0.635988,0.862354,0.323281,0.509546,0.0605446,0.550956,0.7271,0.446565,0.895697,0.658028,0.353049,0.896487,0.680773,0.791376,0.989419,0.45415,0.0800217,0.813706,0.815276,0.262777,0.264874,0.753127,0.711702,0.242883,0.0189608,0.00457209,0.768031,0.71308,0.554514,0.766556,0.605751,0.910774,0.200554,0.0634501,0.273421,0.443913,0.990535,0.00741738,0.397544,0.425565,0.592559,0.51571,0.995651,0.770293,0.00470114,0.860715,0.995009,0.342743,0.856641,0.741525,0.170036,0.601183,0.895009,0.162038,0.695251,0.976895,0.169617,0.997716,0.571997,0.647871,0.516759,0.471976,0.640278,0.232928,0.118945,0.256493,0.436467,0.235243,0.89443,0.75747,0.86384,0.398541,0.583611,0.979286,0.561073,0.0727568,0.113329,0.698614,0.496305,0.547067,0.73506,0.338224,0.653949,0.821101,0.785219,0.0752819,0.188711,0.49007,0.0795357,0.551457,0.868602,0.906369,0.430548,0.789442,0.852144,0.735545,0.848363,0.406755,0.616406,0.526415,0.596512,0.800249,0.838445,0.0964026,0.957944,0.192293,0.684271,0.956332,0.442737,0.217679,0.590164,0.692162,0.145039,0.847659,0.567339,0.516473,0.963736,0.0305457,0.222105,0.630935,0.728674,0.320209,0.428642,0.541788,0.895291,0.623728,0.263568,0.934295,0.936077,0.54318,0.924877,0.89756,0.416887,0.308864,0.989276,0.896912,0.8617,0.475074,0.689606,0.60814,0.806498,0.797752,0.528931,0.662364,0.157509,0.450786,0.153977,0.814752,0.547371,0.0775455,0.440771,0.846224,0.0619141,0.356577,0.319557,0.371897,0.249659,0.974437,0.0616427,0.178868,0.829286,0.702928,0.385283,0.621424,0.494785,0.146467,0.422745,0.931811,0.317052,0.460677,0.3619,0.741239,0.187944,0.601683,0.0194393,0.92422,0.828287,0.753672,0.101511,0.287978,0.0159056,0.406944,0.659757,0.898561,0.00498956,0.0803422,0.0858552,0.664076,0.430831,0.181811,0.817663,0.630524,0.285997,0.813605,0.0457919,0.73352,0.762264,0.0405584,0.949078,0.887069,0.930806,0.815575,0.515079,0.470872,0.781517,0.579235,0.216007,0.0834053,0.119078,0.46596,0.774682,0.140619,0.186807,0.748979,0.702086,0.764393,0.342571,0.833081,0.173042,0.16529,0.692809,0.77423,|0.937908,0.357644,0.200822,0.416341,0.138746,0.888797,0.105163,0.953319,0.926864,0.386674,0.365132,0.689938,0.909988,0.796731,0.292507,0.193859,0.058198,0.200054,0.500422,0.223219,0.744108,0.315324,0.856852,0.486427,0.561479,0.333796,0.720762,0.420608,0.80779,0.58534,0.700294,0.64008,0.979977,0.176963,0.98275,0.879513,0.968178,0.755724,0.746189,0.85327,0.433113,0.847337,0.764833,0.613461,0.824878,0.411576,0.17108,0.551132,0.762469,0.377728,0.806177,0.45342,0.233899,0.814714,0.343381,0.309531,0.0654115,0.576539,0.721289,0.529896,0.417696,0.168748,0.0148165,0.664465,0.734368,0.729428,0.244949,0.722164,0.295813,0.261232,0.443431,0.389583,0.829187,0.503607,0.365743,0.182037,0.740289,0.889597,0.114968,0.482004,0.353178,0.921274,0.579,0.681779,0.134435,0.267522,0.955509,0.117101,0.607625,0.0149572,0.311269,0.242905,0.311106,0.861185,0.116747,0.708366,0.857971,0.813883,0.685905,0.88341,0.104017,0.724994,0.386291,0.765627,0.0471109,0.737678,0.541355,0.0545792,0.0011217,0.0708608,0.891053,0.968472,0.735392,0.121887,0.669451,0.766459,0.611759,0.419684,0.991144,0.626557,0.0268723,0.782075,0.766765,0.147264,0.692515,0.0758598,0.423571,0.776254,0.793171,0.683038,0.818399,0.875157,0.166367,0.51066,0.407054,0.688465,0.721189,0.799664,0.00902462,0.536142,0.729536,0.722151,0.896164,0.630492,0.284512,0.812268,0.844297,0.321753,0.190488,0.298976,0.387847,0.142928,0.0451897,0.0745111,0.225606,0.304482,0.873105,0.0755639,0.916742,0.642154,0.69706,0.42443,0.316964,0.600916,0.202306,0.86211,0.0930718,0.813272,0.537807,0.597738,0.923163,0.382974,0.400994,0.721925,0.360085,0.833194,0.124939,0.463384,0.26345,0.50197,0.874496,0.703328,0.962314,0.116616,0.9621,0.207027,0.896079,0.24466,0.268085,0.59141,0.612351,0.266136,0.432298,0.490612,0.775433,0.833149,0.308232,0.0756491,0.152505,0.203782,0.968065,0.120683,0.520643,0.97598,0.166132,0.32819,0.368213,0.343362,0.61229,0.155989,0.885981,0.52359,0.745414,0.756004,0.882215,0.900798,0.738872,0.431865,0.69959,0.237426,0.968899,0.541403,0.183756,0.194659,0.845788,0.261129,0.0951784,0.319348,0.367382,0.165752,0.409789,0.577371,0.240624,0.202127,0.914186,0.915837,0.536801,0.32648,0.869396,0.282701,0.828777,0.0296726,0.532907,0.579674,0.906601,0.800399,0.415067,0.257466,0.00715673,0.980346,0.945553,0.360258,0.515908,0.68436,0.540322,0.935074,0.104819,0.00421059,0.0516226,0.0991011,0.271996,0.371662,0.915036,0.0447922,0.80727,0.128715,0.600394,0.767613,0.196284,0.693522,0.975728,0.683306,0.195707,0.258237,0.708911,0.656618,0.0532998,0.274137,0.0114237,0.389163,0.0934908,0.120353,0.172652,0.425677,0.210975,0.0277128,0.287158,0.470411,0.545931,0.415329,0.282574,0.462396,0.0412325,0.0704597,0.228158,0.0793526,0.162834,0.88564,0.396638,0.693985,0.38797,0.0169091,0.421031,0.357989,0.00591248,0.984033,0.9261,0.36454,0.0653224,0.714578,0.121371,0.771016,0.535695,0.165301,0.0518087,0.161906,0.785931,0.600104,0.932405,0.890795,0.575555,0.627519,0.0351789,0.0604687,0.750614,0.858209,0.155061,0.824622,0.625238,0.394333,0.505992,0.51304,0.711999,0.185992,0.915817,0.961463,0.101839,0.260474,0.597344,0.88181,0.61664,0.630958,0.433615,0.184901,0.986015,0.833364,0.14104,0.99622,0.39532,0.329961,0.090307,0.431234,0.945437,0.774444,0.310515,0.848683,0.231062,0.219508,0.429346,0.326654,0.55267,0.489755,0.398839,0.989782,0.685222,0.675292,0.8413,0.643572,0.646314,0.339745,0.359495,0.230716,0.143304,0.723755,0.513918,0.39613,0.451791,0.858942,0.291264,0.290439,0.101906,0.0622987,0.248446,0.968695,0.076533,0.24156,0.786677,0.113209,0.276935,0.127548,0.412884,0.537132,0.634661,0.959885,0.506314,0.388382,0.0302269,0.602038,0.195307,0.0776474,0.323326,0.196061,0.219508,0.868234,0.431385,0.951188,0.653508,0.0954748,0.124063,0.564556,0.0633089,0.200114,0.518807,0.321106,0.989367,0.974134,0.130282,0.655102,0.229429,0.00782996,0.301016,0.670812,0.648637,0.548449,0.182356,0.560799,0.0702407,0.0819193,0.864048,0.962056,0.593288,0.553175,0.559375,0.049394,0.895926,0.167503,0.0131222,0.294712,0.92328,0.296847,0.679045,0.402604,0.586825,0.612421,0.705063,0.44538,0.516239,0.766267,0.58209,0.430558,0.676344,0.134741,0.726783,0.0442337,0.482891,0.110747,0.130119,0.496351,0.515371,0.281256,0.514565,0.089842,0.938137,0.376449,0.887029,0.620654,0.872318,0.626463,0.291426,0.576247,0.616547,0.0585259,0.490321,0.548832,0.252191,0.370194,0.205553,0.264381,0.671455,0.94512,0.978949,0.116959,0.732668,0.711899,0.91486,0.836354,0.62785,0.497931,0.284285,0.890964,0.925139,0.652702,0.187089,0.506745,0.423876,0.680327,0.712439,0.116525,0.257825,0.222309,0.396303,0.898828,0.828545,0.315855,0.0503676,0.718343,0.289523,0.65182,0.361662,0.2474,0.0815479,0.933573,0.249289,0.930856,0.290402,0.370204,0.758443,0.24834,0.0761817,0.518615,0.832797,0.290763,0.916769,0.642713,0.979216,0.959235,0.919759,0.219694,0.206622,0.485779,0.362783,0.799639,0.621382,0.0143991,0.834825,0.547586,0.541263,0.0309396,0.84281,0.351872,0.904023,0.100645,0.49703,0.50051,0.0895501,0.236749,0.277177,0.865536,0.609267,0.166333,0.166606,0.542336,0.60277,0.85201,0.686572,0.922813,0.311693,0.111771,0.493374,0.134325,0.912883,0.157698,0.0484535,0.190476,0.662176,0.595606,0.373073,0.554183,0.0619141,0.209384,0.806126,0.538811,0.335175,0.837696,0.286498,0.909693,0.809607,0.784484,0.263441,0.53552,0.980045,0.577171,0.98501,0.663837,0.0618659,0.880426,0.456508,0.597891,0.278163,0.363867,0.239613,0.88836,0.269325,0.414509,0.517893,0.723495,0.729195,0.93311,0.64113,0.468249,0.159532,0.352982,0.668331,0.208652,0.362206,0.503696,0.813197,0.412754,0.352594,0.719436,0.838705,0.475997,0.147319,0.449525,0.0899956,0.200298,0.831655,0.773749,0.895596,0.935523,0.711743,0.158082,0.333129,0.965511,0.371391,0.403723,0.567331,0.869766,0.163001,0.490766,0.609799,0.351313,0.585688,0.312726,0.516907,0.4178,0.828558,0.518237,0.283024,0.415204,0.570388,0.175,0.873118,0.518728,0.74836,0.182817,0.396405,0.852089,0.966085,0.0715125,0.55647,0.788447,0.92931,0.288997,0.649467,0.889404,0.433173,0.816291,0.281262,0.814843,0.519818,0.339756,0.691024,0.628136,0.735039,0.0932379,0.420963,0.507977,0.860102,0.643759,0.267485,0.447392,0.916118,0.650266,0.447629,0.385006,0.0663063,0.72675,0.490282,0.47728,0.901783,0.660417,0.220632,0.414895,0.585721,0.536426,0.805643,0.777919,0.510825,0.187515,0.697226,0.701582,0.0669463,0.0948003,0.30557,0.854697,0.61735,0.364936,0.24196,0.0558304,0.145847,0.139552,0.263202,0.591343,0.0305813,0.963102,0.670162,0.679222,0.0643846,0.265981,0.0396845,0.0610357,0.761428,0.687479,0.981881,0.212861,0.0488978,0.446891,0.00758529,0.362789,0.84455,0.0109689,0.0629088,0.853289,0.622117,0.571706,0.487772,0.857697,0.920537,0.317571,0.364374,0.356752,0.393155,0.940365,0.638663,0.479947,0.456094,0.304047,0.0143462,0.526251,0.522588,0.714024,0.277441,0.0741733,0.676545,0.621144,0.200527,0.532609,0.289038,0.14545,0.994689,0.388648,0.189254,0.323575,0.0339699,0.589241,0.843027,0.996378,0.819331,0.0559821,0.385526,0.283852,0.0708909,0.656093,0.815298,0.529415,0.323618,0.861056,0.0569486,0.954125,0.676073,0.779107,0.260007,0.335608,0.536235,0.34044,0.508079,0.733398,0.661465,0.344051,0.47222,0.910498,0.33274,0.11328,0.809571,0.481669,0.892976,0.853068,0.230711,0.165058,0.648845,0.932024,0.221125,0.803964,0.453918,0.952495,0.585821,0.480109,0.393369,0.931455,0.00360572,0.934267,0.00197202,0.733924,0.13425,0.49946,0.0527659,0.524339,0.526983,0.736772,0.317141,0.130722,0.73848,0.99278,0.343822,0.70023,0.692867,0.120406,0.360824,0.82559,0.554514,0.792148,0.0549498,0.535892,0.420664,0.849584,0.438481,0.129033,0.964914,0.885666,0.300118,0.253789,0.0130374,0.617989,0.515275,0.259349,0.578147,0.164846,0.330035,0.641365,0.131706,0.426462,0.188987,0.801685,0.712899,0.697512,0.126047,0.675678,0.0608172,0.542904,0.507016,0.205459,0.985311,0.175951,0.588898,0.569074,0.820358,0.648366,0.794095,0.945725,0.485783,0.39177,0.326081,0.805079,0.660114,0.716868,0.165883,0.660742,0.167823,0.426972,0.960541,0.484945,0.0764554,0.830791,0.516723,0.192082,0.572896,0.0262724,0.146102,0.685555,0.551633,0.952159,0.625888,0.550664,0.146779,0.695622,0.690598,0.825107,0.703546,0.749103,0.470673,0.641075,0.0275643,0.372044,0.376818,0.935791,0.0422543,0.497559,0.194226,0.940678,0.735613,0.726214,0.0729246,0.814312,0.186229,0.0689132,0.058043,0.441007,0.76724,0.735525,0.961257,0.33513,0.933986,0.0985204,0.823363,0.552027,0.261869,0.176362,0.634576,0.624804,0.919367,0.527655,0.318106,0.00177532,0.479309,0.200171,0.813028,0.805602,0.866285,0.583969,0.710404,0.246417,0.190383,0.14159,0.314401,0.892125,0.196743,0.586807,0.259217,0.811896,0.370063,0.433742,0.915471,0.174958,0.235073,0.436311,0.0176632,0.0412121,0.466171,0.901474,0.477169,0.744971,0.505182,0.99538,0.431384,0.761799,0.746549,0.561339,0.42988,0.453229,0.643917,0.895918,0.141239,0.549444,0.212918,0.9559,0.557326,0.377777,0.659662,0.632852,0.688741,0.87615,0.604988,0.50466,0.640506,0.564397,0.0556366,0.826424,0.596925,0.463138,0.961406,0.94648,0.902653,0.426801,0.489087,0.937554,0.117065,0.671936,0.575551,0.896009,0.271739,0.47599,0.333223,0.47457,0.00670713,0.75414,0.0198846,0.680926,0.390997,0.0500268,|0.357535,0.385244,0.742128,0.103832,0.918197,0.114406,0.551757,0.508423,0.0247633,0.924637,0.535495,0.853605,0.535318,0.764747,0.570213,0.283702,0.25034,0.796606,0.420801,0.142768,0.867581,0.614558,0.953469,0.2244,0.769456,0.697518,0.172904,0.986576,0.79457,0.231452,0.499507,0.846474,0.835509,0.447288,0.935073,0.061059,0.823748,0.263225,0.320225,0.710959,0.992876,0.805849,0.612218,0.0625833,0.0486419,0.0253506,0.0474827,0.879595,0.709468,0.980011,0.296641,0.172582,0.625869,0.182259,0.513163,0.331166,0.978837,0.562643,0.764757,0.0873237,0.220228,0.842035,0.986465,0.0139391,0.636112,0.975038,0.806221,0.535497,0.190288,0.903739,0.365823,0.220979,0.699343,0.175288,0.612755,0.737846,0.596749,0.958122,0.880268,0.0288167,0.443612,0.78023,0.312105,0.633762,0.383357,0.734999,0.71006,0.383722,0.51965,0.846786,0.135036,0.755527,0.394745,0.826097,0.243823,0.100304,0.468039,0.315391,0.611538,0.636207,0.77918,0.706367,0.903093,0.904049,0.599579,0.274194,0.225252,0.0186037,0.872861,0.935789,0.55259,0.213423,0.661651,0.367617,0.242101,0.655004,0.0755334,0.550251,0.406261,0.616411,0.721663,0.319435,0.312517,0.74187,0.161443,0.560359,0.314703,0.781266,0.132193,0.108253,0.65749,0.264479,0.0895505,0.790526,0.559645,0.741484,0.216784,0.923891,0.698304,0.854587,0.447798,0.223637,0.809231,0.112443,0.0480723,0.835926,0.456092,0.746784,0.28883,0.999998,0.873812,0.758358,0.517961,0.566686,0.319178,0.763315,0.445033,0.245902,0.115458,0.219749,0.734208,0.619292,0.124892,0.259356,0.703382,0.754249,0.20797,0.494591,0.829257,0.215174,0.6865,0.994531,0.364607,0.318292,0.520663,0.474704,0.020651,0.889099,0.113241,0.47572,0.191224,0.617517,0.624772,0.803813,0.817875,0.968069,0.715699,0.642118,0.749301,0.220617,0.29247,0.103884,0.280781,0.546879,0.313855,0.454506,0.110832,0.481323,0.358043,0.6724,0.53479,0.512459,0.737584,0.789974,0.901082,0.175334,0.725893,0.230355,0.568916,0.188475,0.679813,0.896558,0.115123,0.00778174,0.880979,0.661992,0.840337,0.113474,0.356523,0.101544,0.853499,0.346459,0.0134531,0.252165,0.577374,0.522163,0.476103,0.156156,0.159967,0.656633,0.0957503,0.298954,0.616518,0.623176,0.592232,0.959979,0.787751,0.653603,0.273313,0.803023,0.317712,0.160256,0.515153,0.406452,0.800375,0.539665,0.766125,0.953198,0.939615,0.458474,0.802061,0.211339,0.991281,0.166447,0.11224,0.518184,0.228578,0.855546,0.195521,0.269959,0.168523,0.987062,0.384128,0.281605,0.983266,0.547287,0.559997,0.0862554,0.824595,0.980143,0.135509,0.631848,0.76503,0.440806,0.325495,0.0492023,0.5144,0.332369,0.187952,0.299017,0.220549,0.282005,0.722514,0.191457,0.324606,0.128149,0.54855,0.0767041,0.972491,0.267978,0.00320268,0.702363,0.361384,0.76509,0.128572,0.586358,0.12633,0.807181,0.224803,0.768054,0.00752771,0.59196,0.335066,0.450262,0.902186,0.867987,0.723928,0.0919475,0.0401973,0.690511,0.960915,0.928357,0.224267,0.94544,0.172763,0.0410405,0.0365011,0.553056,0.712513,0.700327,0.965424,0.503038,0.78957,0.193541,0.176057,0.320796,0.135194,0.94402,0.283475,0.120301,0.805443,0.407163,0.984365,0.425311,0.994532,0.456539,0.499464,0.471773,0.0829771,0.390737,0.408659,0.517542,0.116746,0.782682,0.927722,0.931029,0.596493,0.974143,0.414682,0.506788,0.409309,0.976317,0.806443,0.153064,0.663718,0.662175,0.549389,0.341154,0.573594,0.500029,0.972457,0.591951,0.0809527,0.375601,0.376209,0.525385,0.603192,0.185422,0.0689024,0.509341,0.573543,0.539722,0.797177,0.0797381,0.516561,0.437881,0.952951,0.712613,0.780393,0.813915,0.573841,0.305517,0.863451,0.442886,0.00649029,0.893005,0.433813,0.675528,0.948683,0.178346,0.228097,0.336645,0.921601,0.755742,0.125994,0.263325,0.205632,0.396624,0.675991,0.569942,0.191029,0.272013,0.123541,0.279588,0.605142,0.132871,0.0551659,0.179456,0.741352,0.893457,0.176904,0.473541,0.797928,0.115372,0.974825,0.073758,0.549643,0.804957,0.700709,0.571486,0.431969,0.16524,0.388435,0.928266,0.754594,0.571127,0.583909,0.791939,0.0443904,0.736614,0.144351,0.986539,0.132176,0.790812,0.678038,0.741371,0.48792,0.894584,0.0552572,0.937683,0.265061,0.375718,0.589189,0.227401,0.67946,0.386914,0.132899,0.95576,0.438865,0.114967,0.206897,0.362574,0.492612,0.647636,0.790726,0.0167022,0.739148,0.901618,0.474019,0.596768,0.932638,0.481023,0.886677,0.0487016,0.873901,0.657809,0.586677,0.807175,0.739857,0.651212,0.813102,0.768566,0.478992,0.518233,0.782303,0.817253,0.89301,0.260624,0.0655346,0.386348,0.423382,0.318614,0.0190513,0.643879,0.170662,0.663069,0.56077,0.934035,0.267952,0.138996,0.651087,0.967996,0.422937,0.126993,0.262011,0.962752,0.889049,0.764888,0.136833,0.988309,0.101429,0.222287,0.680069,0.566894,0.109512,0.46702,0.558972,0.0396815,0.161022,0.903716,0.966239,0.0104893,0.0168712,0.787493,0.666941,0.269258,0.891511,0.681045,0.731503,0.0235836,0.852168,0.883937,0.686198,0.237566,0.411706,0.0120837,0.962283,0.818709,0.562757,0.190967,0.149628,0.850546,0.579541,0.958721,0.151007,0.49736,0.92414,0.812332,0.0387185,0.768453,0.771452,0.0440701,0.696177,0.781701,0.920539,0.965543,0.625315,0.300789,0.368765,0.173009,0.329431,0.182013,0.517836,0.782993,0.48192,0.579866,0.754432,0.194095,0.868955,0.202951,0.315277,0.921797,0.0112575,0.18732,0.842501,0.36251,0.491297,0.652657,0.133342,0.684994,0.303937,0.330385,0.783879,0.748095,0.198657,0.182428,0.405277,0.123156,0.745417,0.186347,0.494065,0.946153,0.220482,0.595324,0.849569,0.621314,0.112888,0.772766,0.560643,0.477448,0.409906,0.479152,0.270236,0.192838,0.663363,0.862462,0.761569,0.0861846,0.294105,0.0801947,0.812114,0.891211,0.255611,0.366758,0.774945,0.561598,0.134472,0.718076,0.802037,0.605342,0.790079,0.820657,0.0831739,0.710498,0.11745,0.252607,0.177592,0.100545,0.928323,0.921642,0.109197,0.265849,0.257957,0.726038,0.088111,0.232169,0.421297,0.857868,0.337711,0.478974,0.150805,0.058665,0.246935,0.630855,0.892397,0.827487,0.835098,0.130206,0.0974169,0.092344,0.583142,0.573253,0.874842,0.949183,0.139652,0.35476,0.762104,0.929909,0.0802784,0.79823,0.911652,0.327173,0.509542,0.368158,0.457543,0.49571,0.432831,0.209875,0.247515,0.887873,0.801117,0.941235,0.709033,0.0796177,0.633443,0.849744,0.663543,0.606786,0.324342,0.779932,0.609225,0.709666,0.904705,0.0975124,0.461829,0.587735,0.17482,0.636467,0.538305,0.335375,0.361183,0.216191,0.687,0.841836,0.759679,0.146007,0.678429,0.372431,0.174309,0.948822,0.244625,0.922856,0.15242,0.507434,0.665497,0.188393,0.506791,0.970342,0.312453,0.0353099,0.410521,0.975123,0.814734,0.531862,0.784172,0.0912936,0.0785839,0.625323,0.945338,0.677746,0.164352,0.807694,0.178284,0.809164,0.71052,0.392801,0.887541,0.914804,0.535771,0.0589132,0.670539,0.0705366,0.000388801,0.945708,0.842325,0.38204,0.731816,0.516573,0.318618,0.829092,0.328543,0.0824783,0.00778025,0.531905,0.66948,0.305143,0.64848,0.318368,0.355229,0.151033,0.548912,0.960181,0.496835,0.468909,0.199256,0.974144,0.447545,0.659479,0.760816,0.560032,0.8772,0.929799,0.0115961,0.831196,0.895557,0.592735,0.589897,0.570271,0.971594,0.998789,0.408139,0.531107,0.650683,0.378608,0.0184346,0.459936,0.184706,0.42211,0.69213,0.0302541,0.318271,0.857541,0.559203,0.699207,0.623739,0.0979056,0.822308,0.930445,0.925365,0.757538,0.783943,0.987988,0.538472,0.732805,0.899746,0.506429,0.595589,0.574993,0.87991,0.839809,0.722781,0.0142826,0.0784613,0.309023,0.15526,0.508709,0.0321982,0.21143,0.608883,0.686093,0.246615,0.832885,0.212669,0.92036,0.200417,0.606058,0.939579,0.915487,0.979821,0.8631,0.940554,0.0348226,0.815813,0.570091,0.253119,0.656937,0.648962,0.814305,0.528911,0.971191,0.640216,0.826396,0.714916,0.748287,0.633627,0.856194,0.0601069,0.327208,0.913221,0.217337,0.0855043,0.998003,0.451917,0.582953,0.935127,0.691818,0.198008,0.10067,0.729976,0.074846,0.978228,0.323437,0.483447,0.89002,0.864245,0.482431,0.438803,0.544197,0.0912167,0.658376,0.55242,0.719213,0.566439,0.320184,0.56709,0.409958,0.0541608,0.769632,0.366195,0.363261,0.371429,0.75017,0.57515,0.778683,0.705779,0.314653,0.578329,0.444337,0.105072,0.359056,0.584912,0.350947,0.355755,0.077759,0.664175,0.132987,0.0990502,0.842055,0.145926,0.0610752,0.852704,0.130137,0.73053,0.126952,0.404289,0.181303,0.366757,0.804814,0.464616,0.506258,0.900446,0.137246,0.398798,0.407573,0.327728,0.495585,0.0792736,0.0657419,0.878767,0.0979302,0.752132,0.257623,0.527092,0.805332,0.915713,0.762893,0.956918,0.73389,0.940877,0.51125,0.972586,0.68719,0.216246,0.231904,0.93531,0.805377,0.351351,0.739935,0.110602,0.0548036,0.204496,0.734026,0.924861,0.953373,0.813413,0.904849,0.106817,0.388694,0.0162438,0.969346,0.905698,0.315723,0.613206,0.599728,0.240831,0.864034,0.473712,0.462911,0.461637,0.549941,0.789533,0.25951,0.961154,0.249553,0.337548,0.355264,0.413658,0.768357,0.326877,0.729774,0.522953,0.63872,0.96914,0.572163,0.222544,0.30188,0.448835,0.461578,0.0250718,0.0911887,0.198461,0.0631801,0.926759,0.349064,0.503982,0.200819,0.6132,0.33769,0.77579,0.960542,0.207214,0.586708,0.130352,0.200898,0.428849,0.72977,0.811582,0.885813,0.609131,0.594371,0.316281,0.434327,0.619329,0.631604,0.141189,0.290803,0.18935,0.300158,0.0324489,0.644355,0.919254,0.81128,0.463779,0.351831,0.497059,0.0216891,0.12222,0.796301,0.833635,0.0939401,|0.785999,0.594594,0.208944,0.279278,0.671289,0.0703638,0.744837,0.37961,0.872152,0.283514,0.0368414,0.272111,0.0326046,0.158798,0.807456,0.272005,0.775043,0.578821,0.537923,0.760008,0.814952,0.0803748,0.935322,0.990604,0.971864,0.513804,0.659242,0.171263,0.640842,0.374173,0.818868,0.83884,0.148751,0.73925,0.924102,0.676593,0.575064,0.480976,0.231174,0.950535,0.0279472,0.31336,0.235853,0.954013,0.812925,0.583633,0.717639,0.204654,0.703109,0.467826,0.509393,0.284729,0.106361,0.165329,0.500406,0.936394,0.196805,0.772875,0.834526,0.305647,0.869595,0.04176,0.0754023,0.080376,0.923202,0.565452,0.38109,0.334791,0.950935,0.793801,0.104237,0.436583,0.257522,0.579477,0.714584,0.21031,0.0808872,0.387091,0.542907,0.891202,0.297631,0.928592,0.602005,0.472702,0.264567,0.586054,0.228653,0.0746968,0.953299,0.430955,0.50686,0.55584,0.963706,0.890401,0.93229,0.238183,0.0926496,0.048157,0.198095,0.281994,0.708767,0.225797,0.28735,0.203666,0.430318,0.369106,0.683211,0.804129,0.400815,0.734354,0.934505,0.94718,0.754562,0.798903,0.85143,0.428782,0.855515,0.149829,0.537895,0.511647,0.0887071,0.0758137,0.67753,0.819239,0.419338,0.420295,0.898529,0.20539,0.543778,0.781964,0.421791,0.497786,0.102692,0.652905,0.415301,0.205776,0.753862,0.281736,0.557552,0.984598,0.232828,0.328282,0.626921,0.53264,0.737319,0.263362,0.144157,0.151569,0.140874,0.614032,0.962546,0.0344362,0.481487,0.244214,0.345046,0.871823,0.308899,0.280009,0.947496,0.0809875,0.473552,0.753518,0.269281,0.985204,0.740063,0.104074,0.806626,0.947781,0.0296715,0.00813258,0.307291,0.328905,0.326981,0.832931,0.0357329,0.602495,0.138655,0.782179,0.628212,0.894549,0.669052,0.645344,0.760477,0.0476214,0.386219,0.665772,0.171916,0.0249113,0.598103,0.837887,0.23008,0.879655,0.280048,0.353812,0.0217488,0.705033,0.453992,0.175222,0.917706,0.982811,0.570118,0.366448,0.324519,0.786901,0.4775,0.544248,0.163281,0.996471,0.937403,0.154872,0.477067,0.00693041,0.33981,0.388805,0.429621,0.0021767,0.999684,0.54331,0.906455,0.575658,0.237122,0.800095,0.151127,0.67707,0.653614,0.40475,0.562055,0.790685,0.501274,0.979751,0.209896,0.859524,0.329105,0.490303,0.870044,0.209762,0.392653,0.946686,0.326503,0.366864,0.453832,0.784028,0.0702034,0.773496,0.796343,0.934124,0.895299,0.347379,0.885438,0.190456,0.794805,0.78151,0.733063,0.888786,0.767208,0.0744976,0.385241,0.872792,0.642433,0.0748264,0.711828,0.125332,0.220044,0.805265,0.646217,0.619701,0.802963,0.994224,0.983172,0.28435,0.64739,0.238675,0.279399,0.225346,0.45223,0.266175,0.0665491,0.375103,0.569279,0.653175,0.601054,0.623933,0.876244,0.865018,0.37211,0.782182,0.655356,0.563113,0.0378017,0.119799,0.228673,0.831879,0.915202,0.860474,0.196059,0.168195,0.201674,0.415522,0.150544,0.930387,0.549708,0.927038,0.996302,0.191594,0.104963,0.670956,0.622172,0.437185,0.159034,0.241672,0.827147,0.455381,0.16485,0.116796,0.599231,0.476306,0.452948,0.516478,0.180285,0.821591,0.39962,0.0931446,0.370775,0.570868,0.346399,0.807658,0.58745,0.447247,0.452645,0.603333,0.630863,0.429498,0.34035,0.382017,0.70489,0.20414,0.237266,0.401562,0.520533,0.119301,0.307989,0.623934,0.801214,0.241278,0.132355,0.0109917,0.152012,0.748163,0.64942,0.533376,0.479966,0.32713,0.357764,0.532102,0.92104,0.761627,0.249827,0.719839,0.137801,0.606733,0.308145,0.773994,0.145612,0.88494,0.406937,0.719019,0.599939,0.194288,0.90482,0.0914454,0.279863,0.308761,0.445229,0.287117,0.863353,0.3358,0.892287,0.474806,0.417835,0.727803,0.202884,0.22559,0.595823,0.500053,0.239398,0.40704,0.435816,0.767154,0.24345,0.881936,0.764444,0.375541,0.312767,0.0588235,0.29074,0.0616825,0.247135,0.837684,0.271642,0.125465,0.0165509,0.772264,0.144583,0.317532,0.517928,0.564618,0.55345,0.361452,0.884582,0.108937,0.112424,0.659946,0.0612307,0.59583,0.179048,0.757215,0.154048,0.295415,0.0563229,0.479339,0.486014,0.899324,0.420774,0.884112,0.394535,0.954681,0.231993,0.32045,0.958633,0.434458,0.664254,0.0721948,0.170565,0.0836041,0.42128,0.665449,0.895473,0.925122,0.875624,0.532784,0.25723,0.691882,0.562106,0.491065,0.556901,0.690058,0.488215,0.367289,0.841661,0.84248,0.72784,0.271154,0.80205,0.794572,0.511323,0.259648,0.31101,0.498811,0.176859,0.366838,0.203104,0.935876,0.170638,0.151126,0.456769,0.346942,0.573486,0.182537,0.156745,0.223345,0.139275,0.340375,0.0463346,0.204397,0.766864,0.153936,0.154691,0.0625877,0.692551,0.145628,0.0699743,0.673176,0.736892,0.371193,0.543708,0.856489,0.973807,0.527581,0.651632,0.121826,0.919794,0.37148,0.248424,0.685556,0.812309,0.278393,0.071708,0.6794,0.38218,0.490624,0.804805,0.860858,0.222564,0.625198,0.0690708,0.620566,0.572352,0.290302,0.933692,0.245592,0.933337,0.350026,0.579527,0.656751,0.893437,0.254725,0.498467,0.0475583,0.233706,0.946999,0.573864,0.647046,0.270613,0.0174665,0.6097,0.748634,0.984446,0.222824,0.265523,0.601103,0.936562,0.849933,0.88645,0.3126,0.672979,0.884419,0.0765564,0.573125,0.159671,0.753436,0.0888482,0.087597,0.0613185,0.398127,0.851536,0.389453,0.252152,0.250226,0.547853,0.595928,0.934166,0.602693,0.0764611,0.712081,0.474956,0.223933,0.352462,0.274939,0.782483,0.695355,0.968502,0.518028,0.162226,0.407099,0.00209188,0.465358,0.439592,0.512172,0.192907,0.0108789,0.103143,0.881884,0.955926,0.272757,0.263716,0.14777,0.989654,0.392579,0.505857,0.535032,0.320824,0.504641,0.562481,0.431899,0.310104,0.0547783,0.0536718,0.197495,0.979779,0.777659,0.691606,0.752169,0.55006,0.813519,0.804787,0.61749,0.0670195,0.222114,0.564892,0.163348,0.532273,0.0582503,0.176814,0.320074,0.62573,0.154992,0.895673,0.48699,0.916933,0.205405,0.253391,0.4206,0.786267,0.624913,0.568949,0.422033,0.205987,0.75266,0.577264,0.931409,0.572406,0.774276,0.876161,0.173048,0.851157,0.768171,0.564839,0.925194,0.778754,0.307944,0.960066,0.812652,0.854647,0.949214,0.669358,0.315902,0.590741,0.945145,0.0877517,0.55381,0.0671728,0.742308,0.656909,0.04279,0.744326,0.525645,0.110476,0.336746,0.486839,0.70701,0.15599,0.551203,0.0406574,0.462275,0.904972,0.00215048,0.683042,0.725621,0.308837,0.769513,0.0648022,0.635955,0.994933,0.936635,0.103216,0.729693,0.634259,0.640555,0.500929,0.464366,0.934269,0.883122,0.647332,0.653341,0.493967,0.887969,0.605144,0.259993,0.237617,0.525552,0.0345056,0.708756,0.914665,0.103187,0.0287427,0.224998,0.687769,0.748173,0.788044,0.386837,0.0188931,0.761566,0.741107,0.177886,0.653662,0.860984,0.736126,0.30398,0.433467,0.288742,0.171646,0.708618,0.798405,0.795487,0.317829,0.0766886,0.918612,0.0609326,0.787245,0.13287,0.864336,0.496205,0.947018,0.468242,0.749937,0.202077,0.487027,0.225694,0.413172,0.908315,0.871264,0.409736,0.302427,0.89091,0.868924,0.929353,0.994134,0.00464082,0.991812,0.188118,0.117368,0.648617,0.991699,0.701659,0.480905,0.13811,0.464448,0.338068,0.994296,0.0180184,0.0284675,0.672034,0.0252376,0.186836,0.811252,0.844653,0.97682,0.630953,0.00127846,0.339774,0.216352,0.596275,0.231421,0.938071,0.766398,0.874179,0.967357,0.699088,0.312171,0.922282,0.0706463,0.228612,0.141591,0.0955485,0.86951,0.665854,0.0414832,0.366867,0.928122,0.529049,0.520693,0.546505,0.779934,0.963327,0.784273,0.015367,0.64092,0.521835,0.986175,0.666859,0.739723,0.3471,0.225915,0.620216,0.442043,0.313053,0.654201,0.749394,0.396766,0.266184,0.379291,0.373413,0.686135,0.600472,0.419822,0.278503,0.300135,0.224126,0.31829,0.253357,0.676447,0.63004,0.023295,0.346073,0.514832,0.554177,0.13018,0.538211,0.584732,0.932125,0.135037,0.760853,0.084244,0.273761,0.866251,0.487489,0.139535,0.222871,0.241172,0.867694,0.700313,0.846259,0.0124442,0.268641,0.750388,0.106509,0.552262,0.392385,0.542119,0.00724411,0.54833,0.89333,0.447668,0.230715,0.353309,0.519337,0.984928,0.606434,0.135459,0.77182,0.873028,0.939699,0.51129,0.297863,0.743014,0.62763,0.0189878,0.216947,0.303452,0.701181,0.170809,0.762313,0.741906,0.549496,0.553805,0.270792,0.243815,0.731713,0.57086,0.186386,0.227675,0.473309,0.255216,0.208507,0.0727547,0.546204,0.142859,0.12188,0.570221,0.366723,0.872552,0.620008,0.422388,0.2464,0.827316,0.500559,0.756334,0.447942,0.767864,0.305155,0.302423,0.114016,0.350496,0.795252,0.0600283,0.763322,0.82639,0.14062,0.324033,0.0748912,0.662151,0.752031,0.829506,0.706844,0.947746,0.567107,0.0946206,0.0929354,0.813619,0.57471,0.6524,0.0890282,0.916429,0.148449,0.727414,0.359987,0.535837,0.021817,0.738159,0.832659,0.530706,0.107295,0.248417,0.920812,0.0877757,0.676004,0.0203323,0.510158,0.638867,0.520777,0.0860514,0.643679,0.751322,0.531456,0.551928,0.261287,0.184795,0.198989,0.140212,0.952239,0.935391,0.650762,0.893554,0.313374,0.646662,0.105604,0.171748,0.381587,0.987131,0.656668,0.227278,0.774481,0.669703,0.600532,0.323165,0.831288,0.582289,0.985282,0.176913,0.444471,0.63716,0.00549406,0.941351,0.868442,0.290701,0.344919,0.349183,0.1694,0.971386,0.478068,0.00966322,0.131852,0.640142,0.030897,0.77902,0.366987,0.701974,0.990913,0.268823,0.956569,0.777716,0.842693,0.0534542,0.65402,0.204974,0.427195,0.214524,0.321388,0.904936,0.737493,0.608833,0.713766,0.578038,0.0160474,0.323993,0.107068,0.117744,0.904829,0.241548,0.83867,0.914498,0.847835,0.353463,0.874416,0.678957,0.0182889,0.729687,0.738289,0.780124,0.587484,|0.0037272,0.338974,0.373257,0.789256,0.167466,0.128446,0.306432,0.641234,0.132093,0.537077,0.319039,0.227863,0.840036,0.755206,0.480248,0.577006,0.0976394,0.189489,0.0308945,0.781577,0.829164,0.300007,0.376933,0.819755,0.294176,0.368351,0.165192,0.215534,0.14801,0.942022,0.456486,0.983254,0.825694,0.903098,0.068746,0.922306,0.803967,0.801677,0.906654,0.0497423,0.859449,0.0252259,0.590015,0.124751,0.718983,0.592797,0.941527,0.589292,0.381982,0.624487,0.860185,0.268101,0.605993,0.648697,0.533978,0.624581,0.0980181,0.759539,0.34244,0.603467,0.577474,0.791169,0.299423,0.977347,0.902843,0.797127,0.261992,0.824227,0.766987,0.724244,0.385457,0.885858,0.445439,0.323893,0.920594,0.830643,0.142256,0.856238,0.680628,0.922248,0.420336,0.221681,0.580928,0.0259797,0.404728,0.869754,0.793448,0.504693,0.0594038,0.747919,0.294236,0.822468,0.0219248,0.600479,0.985884,0.612466,0.868676,0.542572,0.0414256,0.583023,0.732749,0.32535,0.13335,0.358961,0.0396311,0.242431,0.128395,0.566742,0.459604,0.944942,0.371266,0.303672,0.697664,0.0856752,0.950381,0.476869,0.413307,0.277784,0.13816,0.391972,0.276319,0.819611,0.3888,0.182305,0.181319,0.159109,0.522568,0.195456,0.391196,0.567002,0.0293057,0.676983,0.959789,0.696067,0.398813,0.518389,0.501403,0.381123,0.559775,0.587892,0.122621,0.384129,0.779787,0.648913,0.488557,0.147295,0.00377756,0.975679,0.820206,0.368158,0.0263888,0.830755,0.242143,0.0467283,0.49974,0.132461,0.082127,0.0380833,0.836723,0.30137,0.382578,0.538305,0.7492,0.490663,0.4174,0.788368,0.893544,0.309483,0.162069,0.677229,0.380888,0.764603,0.808096,0.997134,0.543779,0.836334,0.699434,0.807459,0.73767,0.876198,0.714252,0.409077,0.633223,0.53439,0.454588,0.461954,0.853396,0.993061,0.161334,0.716968,0.804881,0.0568255,0.908823,0.723866,0.643652,0.348344,0.482673,0.25674,0.895754,0.283987,0.403445,0.276268,0.671139,0.436543,0.529815,0.185903,0.652546,0.783192,0.0639277,0.628358,0.0502664,0.486336,0.803871,0.317825,0.0195168,0.0303802,0.42982,0.843259,0.0348436,0.0754384,0.874935,0.173179,0.153917,0.717422,0.794712,0.901699,0.361284,0.61911,0.598306,0.426001,0.0372906,0.0689009,0.0580034,0.558182,0.53796,0.59934,0.629842,0.326787,0.695817,0.0713124,0.680763,0.0838954,0.42551,0.371174,0.123387,0.00483054,0.319851,0.793751,0.0928537,0.248343,0.733574,0.495839,0.880136,0.289355,0.398747,0.722562,0.0797161,0.502665,0.939399,0.0288863,0.911869,0.496257,0.390834,0.148199,0.406197,0.66245,0.976729,0.684484,0.371136,0.0534142,0.659328,0.418393,0.308077,0.0461545,0.408463,0.0916095,0.984098,0.491978,0.248507,0.996885,0.703702,0.85947,0.758459,0.353237,0.350904,0.504062,0.518482,0.419489,0.68967,0.294939,0.242809,0.911253,0.598695,0.00687778,0.697646,0.00156432,0.29633,0.180861,0.475899,0.711696,0.205143,0.210002,0.0511358,0.714963,0.756355,0.813605,0.627907,0.140622,0.136729,0.500488,0.831294,0.21372,0.641043,0.539671,0.613315,0.819202,0.110549,0.675443,0.656084,0.955126,0.525913,0.766364,0.411309,0.209075,0.416586,0.980857,0.634903,0.262423,0.744023,0.514854,0.478031,0.893048,0.852659,0.340937,0.87948,0.925123,0.8509,0.6044,0.837041,0.71816,0.345719,0.016537,0.0278459,0.250839,0.815816,0.0215663,0.850038,0.0746258,0.510154,0.172785,0.511902,0.872483,0.195365,0.780867,0.0155928,0.0757241,0.604053,0.510403,0.0589778,0.605276,0.679791,0.324202,0.997972,0.487632,0.0562152,0.758813,0.624547,0.567416,0.959466,0.390724,0.605629,0.811396,0.841427,0.2399,0.964859,0.295991,0.190976,0.0740653,0.605544,0.272545,0.938692,0.530216,0.29425,0.435502,0.721024,0.0303127,0.719833,0.781756,0.130734,0.648196,0.19192,0.65155,0.69215,0.644487,0.78108,0.855886,0.646307,0.0379053,0.684312,0.410905,0.0599945,0.481557,0.965944,0.840769,0.579471,0.165055,0.870972,0.780807,0.489655,0.0717102,0.750977,0.926949,0.466399,0.132121,0.866951,0.166312,0.365623,0.646584,0.495896,0.646813,0.232954,0.185225,0.871433,0.740005,0.197796,0.884985,0.444567,0.612984,0.509923,0.341534,0.601161,0.963926,0.274281,0.31173,0.518952,0.638278,0.161079,0.927943,0.971636,0.747775,0.666934,0.833087,0.493551,0.327875,0.254601,0.76707,0.422541,0.00275242,0.557264,0.689319,0.839035,0.0108814,0.719439,0.0770738,0.889343,0.459261,0.418614,0.100563,0.455653,0.68115,0.967204,0.220601,0.423593,0.5297,0.208774,0.142941,0.325615,0.486686,0.320364,0.391225,0.936201,0.147512,0.707298,0.385382,0.763295,0.374196,0.439566,0.199055,0.579294,0.181195,0.370342,0.463258,0.322792,0.92114,0.89359,0.978728,0.715862,0.0380052,0.197467,0.909008,0.527351,0.953225,0.353265,0.121953,0.075247,0.931042,0.513615,0.165937,0.539731,0.376499,0.314273,0.809003,0.396883,0.0258551,0.0571722,0.0312944,0.97541,0.0505123,0.709757,0.338868,0.633147,0.814954,0.87848,0.539728,0.763393,0.707534,0.230331,0.0694548,0.483657,0.541829,0.419378,0.742103,0.69236,0.752351,0.520055,0.533281,0.840467,0.674535,0.380255,0.410734,0.173733,0.713086,0.345275,0.448693,0.41018,0.102127,0.0246691,0.843134,0.762184,0.404336,0.567629,0.880113,0.366059,0.180566,0.849751,0.505508,0.27384,0.279139,0.159834,0.157803,0.715509,0.465548,0.0896491,0.900838,0.197933,0.615594,0.0380611,0.699671,0.653631,0.372561,0.0558037,0.519005,0.877426,0.0235391,0.88633,0.478297,0.0182211,0.17204,0.695418,0.0771996,0.439821,0.346681,0.666408,0.761696,0.103777,0.524658,0.410122,0.566291,0.626734,0.388096,0.0235208,0.616934,0.106131,0.332953,0.420544,0.489674,0.965219,0.710087,0.419888,0.191577,0.697809,0.282415,0.499035,0.28203,0.800996,0.649752,0.012857,0.879553,0.312125,0.160832,0.642355,0.401514,0.597376,0.878733,0.184403,0.722965,0.0251041,0.557615,0.205525,0.779314,0.581375,0.826152,0.220034,0.893454,0.724402,0.763686,0.90315,0.231958,0.115633,0.714539,0.00696492,0.208535,0.139986,0.149521,0.51559,0.242111,0.273929,0.0441312,0.209332,0.168644,0.815393,0.189755,0.1752,0.134028,0.530332,0.437366,0.469698,0.349436,0.918267,0.168255,0.241608,0.0536236,0.305088,0.664106,0.847634,0.189886,0.19386,0.367788,0.782296,0.907389,0.141391,0.154278,0.8937,0.904359,0.683749,0.290844,0.346604,0.904169,0.0582079,0.373664,0.348516,0.930074,0.221507,0.291511,0.860004,0.122091,0.722977,0.224254,0.977591,0.22996,0.310304,0.0906365,0.896868,0.70938,0.80406,0.0221398,0.235996,0.127078,0.228832,0.145414,0.0441225,0.403679,0.874431,0.789801,0.756734,0.172146,0.734786,0.899716,0.370754,0.42318,0.605779,0.660618,0.170314,0.836169,0.442576,0.645751,0.074279,0.933813,0.309536,0.81628,0.61244,0.957365,0.115885,0.0948259,0.363864,0.05748,0.90228,0.848423,0.458654,0.0885205,0.893172,0.30519,0.354926,0.982995,0.0515246,0.0836086,0.157367,0.202846,0.644191,0.224162,0.793948,0.731459,0.493835,0.413965,0.890512,0.80196,0.108055,0.355333,0.91294,0.790806,0.488937,0.845881,0.461618,0.387897,0.946583,0.458006,0.786545,0.799423,0.0363852,0.253735,0.296573,0.320561,0.63767,0.399502,0.431374,0.0820275,0.81187,0.135696,0.592909,0.215886,0.997942,0.0397785,0.356413,0.390098,0.75807,0.642068,0.582501,0.912592,0.000711501,0.691062,0.0957535,0.303926,0.626955,0.250383,0.974665,0.654823,0.401317,0.678084,0.822953,0.861216,0.489173,0.808878,0.761325,0.198318,0.377834,0.964732,0.65768,0.413671,0.253221,0.929916,0.527567,0.277438,0.512906,0.374144,0.943818,0.0596838,0.636074,0.651301,0.251705,0.241599,0.209166,0.317595,0.444414,0.70615,0.444564,0.816936,0.471696,0.323973,0.195757,0.765381,0.316369,0.64116,0.841298,0.227746,0.655593,0.0430158,0.340637,0.899903,0.861605,0.376875,0.547972,0.384752,0.301175,0.341663,0.4703,0.0928649,0.196936,0.606831,0.811659,0.455681,0.4757,0.89306,0.186549,0.334709,0.581524,0.192717,0.284043,0.17021,0.479298,0.355412,0.854231,0.0615104,0.787272,0.0541106,0.347777,0.775983,0.501981,0.187081,0.147697,0.997959,0.148531,0.191358,0.615643,0.829782,0.34444,0.335242,0.821404,0.356018,0.45242,0.756555,0.324207,0.512812,0.461798,0.145957,0.741865,0.831476,0.424575,0.32364,0.956643,0.528482,0.339675,0.498409,0.119576,0.375445,0.0417352,0.609669,0.657133,0.240592,0.880605,0.99749,0.0986151,0.00959182,0.524262,0.22973,0.85306,0.215911,0.495586,0.888023,0.484808,0.693281,0.355609,0.0454779,0.32127,0.177629,0.658226,0.724117,0.234456,0.686266,0.399606,0.105558,0.564377,0.421334,0.66633,0.588762,0.433436,0.430382,0.808643,0.329103,0.203704,0.397566,0.0796444,0.709497,0.0991344,0.360448,0.609255,0.139677,0.0296258,0.683086,0.850605,0.388972,0.359756,0.488191,0.416238,0.290588,0.244788,0.958113,0.0167056,0.554668,0.0228179,0.522775,0.24809,0.998478,0.0868087,0.709869,0.34198,0.550349,0.648544,0.346775,0.123901,0.813892,0.677336,0.46974,0.38956,0.345512,0.430012,0.582408,0.233464,0.185431,0.51206,0.52383,0.850979,0.0304468,0.447167,0.327112,0.553411,0.458693,0.868952,0.556122,0.35358,0.539013,0.0792191,0.383115,0.760471,0.738193,0.721458,0.14345,0.462987,0.879685,0.311308,0.854271,0.17413,0.595692,0.538474,0.644371,0.781061,0.595762,0.516667,0.0718946,0.0852314,0.512469,0.876036,0.244892,0.814957,0.74503,0.324415,0.4214,0.871658,0.406717,0.127275,0.196433,0.671344,0.303296,0.414371,0.0489225,0.849047,0.521676,0.685713,0.67772,0.213981,0.212567,0.771069,0.875621,0.544772,0.35808,0.72079,0.773992,0.300272,0.556327,0.0623647,0.0973526,|0.999497,0.906853,0.241004,0.424488,0.0109393,0.561936,0.339602,0.253946,0.655375,0.410399,0.096949,0.843734,0.610057,0.242983,0.0410593,0.730775,0.823647,0.703359,0.0607459,0.778973,0.601133,0.119206,0.447332,0.72917,0.684538,0.825765,0.213584,0.8713,0.0366462,0.926776,0.912473,0.717763,0.235997,0.675555,0.666817,0.969305,0.183559,0.919269,0.201359,0.952003,0.0377926,0.0424719,0.389665,0.0144244,0.951408,0.357045,0.304022,0.738994,0.541941,0.109303,0.219452,0.66964,0.24514,0.151098,0.574733,0.563238,0.456946,0.349058,0.624165,0.164153,0.0619292,0.114418,0.104289,0.648455,0.159861,0.995735,0.112379,0.474128,0.403796,0.863034,0.187935,0.484434,0.046076,0.335843,0.23314,0.633105,0.309159,0.0306747,0.494804,0.36294,0.0466555,0.348968,0.798332,0.460325,0.102339,0.786917,0.0304645,0.179273,0.810617,0.928557,0.934419,0.136392,0.681999,0.0907225,0.979336,0.240219,0.270878,0.680909,0.549227,0.440824,0.076363,0.162983,0.493195,0.0699283,0.737888,0.135283,0.543815,0.792617,0.894326,0.06486,0.0139506,0.342373,0.947135,0.333427,0.969846,0.869227,0.369868,0.564916,0.205176,0.069979,0.242153,0.925332,0.896155,0.787398,0.521927,0.14285,0.0526424,0.632515,0.770358,0.00776923,0.303948,0.865685,0.987361,0.641043,0.0605079,0.277923,0.163146,0.637136,0.996222,0.491189,0.0110449,0.814733,0.763242,0.434421,0.766297,0.506115,0.445576,0.527622,0.868349,0.980437,0.725056,0.221404,0.801199,0.511299,0.0222158,0.667255,0.0989627,0.500977,0.339704,0.421125,0.634537,0.420663,0.622911,0.420319,0.892193,0.967574,0.72347,0.786736,0.196038,0.931563,0.0990531,0.246007,0.532247,0.737408,0.433526,0.751408,0.927555,0.237945,0.0175693,0.993538,0.0124908,0.170208,0.503876,0.848448,0.240399,0.10687,0.958467,0.285289,0.833493,0.439088,0.138764,0.0994042,0.221685,0.265587,0.954361,0.00268096,0.392136,0.947494,0.818882,0.0901986,0.877679,0.998127,0.524403,0.686514,0.11596,0.330254,0.455168,0.137441,0.357754,0.490426,0.71491,0.789258,0.430626,0.167388,0.10252,0.777586,0.603797,0.0282703,0.986513,0.0084579,0.853264,0.196032,0.168221,0.757336,0.461571,0.955298,0.302326,0.557675,0.846563,0.618746,0.794388,0.789352,0.834316,0.435599,0.929583,0.427767,0.824618,0.921546,0.250532,0.687171,0.118152,0.581269,0.960312,0.87413,0.643176,0.874604,0.776144,0.916321,0.296407,0.244192,0.812041,0.312489,0.77102,0.295501,0.927576,0.821982,0.192302,0.43068,0.88815,0.269732,0.692074,0.498281,0.171942,0.860721,0.366714,0.596678,0.152616,0.159844,0.360304,0.539752,0.417703,0.101864,0.304942,0.887834,0.840107,0.916922,0.142323,0.0304171,0.348105,0.430761,0.596654,0.679565,0.200987,0.779718,0.024975,0.850748,0.0792349,0.993033,0.0934049,0.741722,0.343891,0.328255,0.353704,0.920962,0.187695,0.243006,0.995421,0.0419457,0.0549359,0.257299,0.771411,0.0544855,0.746837,0.943799,0.54503,0.110263,0.783033,0.607576,0.378099,0.310756,0.569722,0.0601076,0.536628,0.691709,0.893995,0.356839,0.745049,0.0894518,0.22309,0.711346,0.0804636,0.898577,0.351622,0.532791,0.800063,0.688629,0.479103,0.299086,0.897949,0.527268,0.14331,0.760209,0.728985,0.512373,0.548549,0.756263,0.391337,0.552192,0.933513,0.132962,0.281417,0.612649,0.727257,0.785816,0.300836,0.938966,0.811567,0.227384,0.838392,0.199574,0.480189,0.414984,0.135109,0.168176,0.434553,0.442022,0.805789,0.0934646,0.59191,0.680546,0.963695,0.300233,0.195444,0.551514,0.328387,0.766693,0.923317,0.415955,0.0942381,0.063976,0.451364,0.891098,0.914966,0.310418,0.749327,0.75433,0.938519,0.0331023,0.298733,0.579877,0.413459,0.978279,0.807545,0.358838,0.480597,0.687711,0.792363,0.296049,0.286769,0.857983,0.0291861,0.750388,0.403938,0.252917,0.134286,0.701142,0.0315229,0.279802,0.337798,0.526459,0.737026,0.23827,0.186371,0.570767,0.186208,0.84027,0.276407,0.722147,0.924219,0.631583,0.308648,0.870115,0.344894,0.035741,0.918034,0.647854,0.846906,0.575988,0.758717,0.265314,0.246694,0.486987,0.749817,0.146677,0.924356,0.703343,0.321366,0.412972,0.285386,0.0264624,0.278426,0.748072,0.695433,0.729562,0.333448,0.970376,0.0206943,0.317259,0.750771,0.157692,0.953361,0.472252,0.693633,0.906535,0.674088,0.116604,0.650201,0.482217,0.0153618,0.338849,0.347594,0.906005,0.540398,0.938771,0.018357,0.277889,0.450649,0.343592,0.792672,0.462594,0.0624368,0.71356,0.61353,0.00941145,0.531361,0.708994,0.00230122,0.360601,0.874275,0.508574,0.889386,0.872543,0.856057,0.366959,0.149228,0.69842,0.80194,0.411266,0.98038,0.751871,0.724508,0.0295795,0.627847,0.241242,0.0924354,0.454517,0.255099,0.6193,0.847898,0.406125,0.404798,0.295847,0.271653,0.760392,0.526972,0.469886,0.165321,0.575812,0.312011,0.16148,0.37054,0.447707,0.107451,0.940029,0.282705,0.621823,0.0157967,0.305343,0.926393,0.304262,0.432907,0.57796,0.986316,0.121953,0.0286823,0.23378,0.0345974,0.784467,0.898641,0.273234,0.367899,0.0768772,0.172083,0.447983,0.0766237,0.517909,0.978346,0.352034,0.0714639,0.652225,0.966501,0.212893,0.504098,0.546826,0.753472,0.907938,0.115863,0.340204,0.354522,0.0911415,0.684084,0.763869,0.713061,0.561299,0.20459,0.0697333,0.168988,0.684594,0.317405,0.939829,0.300681,0.81929,0.659607,0.0256364,0.520169,0.784161,0.510729,0.996173,0.715841,0.503808,0.748161,0.133511,0.781999,0.00586444,0.549474,0.407881,0.767402,0.376856,0.622772,0.915381,0.371706,0.105331,0.12115,0.86403,0.22188,0.664114,0.846159,0.916637,0.653634,0.97819,0.151474,0.5929,0.843147,0.453348,0.351283,0.315511,0.175904,0.683221,0.10971,0.0131117,0.722366,0.862428,0.0736572,0.0462322,0.656804,0.211977,0.651214,0.931996,0.474518,0.291307,0.678004,0.197053,0.595981,0.961412,0.769728,0.109828,0.504103,0.913927,0.888535,0.702137,0.0541951,0.885985,0.0158091,0.0300285,0.851574,0.106193,0.560531,0.947496,0.862787,0.817759,0.732031,0.71053,0.645868,0.180176,0.696201,0.134344,0.38126,0.342022,0.384062,0.609004,0.611826,0.761667,0.939201,0.479725,0.611931,0.557103,0.647781,0.534079,0.0545555,0.623985,0.129355,0.817059,0.521648,0.129218,0.755925,0.267676,0.0739454,0.303507,0.503075,0.299008,0.421366,0.550327,0.792054,0.384218,0.135611,0.860091,0.235395,0.154616,0.942008,0.970299,0.308932,0.673997,0.818376,0.55955,0.626235,0.966145,0.678905,0.436736,0.899689,0.308352,0.555257,0.698031,0.433284,0.780779,0.143111,0.620451,0.00224787,0.783779,0.0650381,0.653695,0.61736,0.657388,0.130207,0.98303,0.319141,0.500645,0.600763,0.742705,0.485193,0.685091,0.529058,0.675739,0.744653,0.493982,0.115394,0.343367,0.665263,0.462344,0.13326,0.275269,0.279172,0.182998,0.456127,0.584321,0.0977018,0.812116,0.0345901,0.0600545,0.208113,0.751155,0.171822,0.90106,0.587968,0.910445,0.5839,0.133233,0.210881,0.510508,0.136159,0.16846,0.111115,0.720452,0.530417,0.295525,0.722435,0.362524,0.755568,0.905777,0.260696,0.199362,0.172818,0.0145448,0.89089,0.04953,0.237847,0.0831307,0.881249,0.95323,0.538766,0.749214,0.375777,0.528252,0.713234,0.809186,0.233075,0.26498,0.848595,0.254759,0.870438,0.964139,0.248047,0.0454366,0.954429,0.617452,0.037127,0.871985,0.738118,0.300485,0.791695,0.269366,0.390509,0.714687,0.97665,0.929814,0.284943,0.862782,0.315524,0.887721,0.377598,0.180878,0.362634,0.661076,0.826211,0.425718,0.672805,0.51678,0.888137,0.698481,0.565678,0.539685,0.713303,0.908931,0.359643,0.357381,0.771986,0.918119,0.981009,0.877928,0.951589,0.225979,0.521057,0.100593,0.831109,0.167361,0.673856,0.163118,0.642438,0.144969,0.348026,0.733646,0.677238,0.695056,0.669641,0.958481,0.22162,0.961728,0.337443,0.790165,0.583092,0.976262,0.729254,0.570389,0.180679,0.436767,0.353497,0.00258517,0.696152,0.835086,0.215126,0.552745,0.872282,0.449769,0.331477,0.607342,0.837053,0.505276,0.188497,0.345092,0.422673,0.534291,0.516051,0.125657,0.383385,0.022624,0.464961,0.251368,0.0493942,0.378,0.0730141,0.88046,0.696346,0.20199,0.525766,0.428501,0.295512,0.706352,0.0856597,0.409522,0.457779,0.997692,0.272714,0.00777334,0.233405,0.351704,0.840181,0.59107,0.925554,0.631194,0.443794,0.0681598,0.56397,0.258397,0.568721,0.533006,0.438416,0.376161,0.903635,0.19027,0.327136,0.439341,0.406479,0.715474,0.842837,0.498492,0.732534,0.969765,0.0983743,0.175168,0.442692,0.977021,0.0530055,0.98078,0.890885,0.299342,0.23655,0.131065,0.0147781,0.861045,0.191511,0.0342969,0.914405,0.629544,0.10087,0.696635,0.0745351,0.827638,0.891817,0.0807561,0.848351,0.41935,0.577092,0.864743,0.163939,0.873183,0.521502,0.0499637,0.866549,0.886036,0.0895241,0.55247,0.801494,0.0430869,0.798795,0.184148,0.47734,0.821542,0.927797,0.461348,0.503571,0.845599,0.619101,0.163574,0.390242,0.402826,0.980412,0.296867,0.965246,0.785631,0.844942,0.569299,0.488837,0.46074,0.96853,0.523067,0.116284,0.217233,0.325663,0.895192,0.621085,0.632586,0.965529,0.763316,0.870028,0.443335,0.647923,0.278255,0.782055,0.0258069,0.234044,0.497212,0.547344,0.192972,0.405852,0.0213899,0.778475,0.883343,0.826545,0.99761,0.445786,0.758851,0.551299,0.705482,0.47714,0.492175,0.659088,0.652182,0.310304,0.0956995,0.796095,0.442619,0.496312,0.429876,0.705857,0.834214,0.126109,0.896419,0.0029918,0.101172,0.967101,0.740671,0.0950348,0.870428,0.315226,0.735467,0.965682,0.734959,0.665297,0.831477,0.0618873,0.691031,0.79107,0.128007,0.736109,0.394175,0.992854,0.41486,0.324042,0.07127,0.603055,0.75148,|0.26165,0.518573,0.998415,0.00587022,0.930758,0.849971,0.237784,0.327429,0.0120203,0.194021,0.0438282,0.587524,0.114859,0.133245,0.260435,0.667362,0.955289,0.392566,0.529743,0.308594,0.00319034,0.426941,0.620232,0.202004,0.0326434,0.937359,0.749077,0.221958,0.796005,0.242176,0.578638,0.115058,0.794722,0.953222,0.963268,0.518926,0.00623459,0.520425,0.593606,0.507086,0.168833,0.305664,0.235289,0.411615,0.995197,0.985928,0.916821,0.669208,0.94075,0.633037,0.158285,0.671002,0.00219721,0.396534,0.597027,0.232959,0.167952,0.0357068,0.468421,0.0225405,0.117739,0.316898,0.316331,0.946221,0.429817,0.0989144,0.268938,0.722481,0.439839,0.398636,0.671057,0.801068,0.660905,0.0961896,0.266578,0.14519,0.708033,0.85153,0.155233,0.325197,0.804096,0.135583,0.487101,0.810925,0.438118,0.215206,0.695497,0.0779073,0.922837,0.755732,0.720295,0.930854,0.113802,0.688767,0.599797,0.556092,0.320805,0.976708,0.582004,0.17916,0.079034,0.0868781,0.810507,0.0471311,0.280377,0.0218401,0.159493,0.724587,0.0233361,0.664948,0.289285,0.0690126,0.192099,0.0906703,0.557233,0.874898,0.1464,0.230545,0.262747,0.601767,0.577398,0.880009,0.0352935,0.879116,0.394325,0.471171,0.523259,0.0843238,0.718636,0.624784,0.349606,0.880612,0.189123,0.774822,0.0747492,0.700207,0.0351062,0.111035,0.332198,0.478181,0.132602,0.674314,0.282451,0.739229,0.523836,0.406793,0.647803,0.10779,0.0322645,0.597557,0.469237,0.102201,0.578394,0.903887,0.252732,0.362748,0.819443,0.160914,0.314416,0.144354,0.395179,0.768671,0.830311,0.927068,0.116943,0.857078,0.506549,0.107648,0.996284,0.535801,0.716664,0.561107,0.595358,0.299715,0.785941,0.699298,0.695146,0.358496,0.0980815,0.639574,0.742955,0.169796,0.703197,0.909725,0.853436,0.760198,0.81599,0.971637,0.947917,0.716756,0.93946,0.0978258,0.551929,0.996194,0.257034,0.772129,0.976712,0.357564,0.0920742,0.141192,0.464762,0.191204,0.703642,0.511517,0.660284,0.6734,0.843113,0.848274,0.704189,0.325341,0.928117,0.288947,0.144294,0.650876,0.646627,0.285785,0.871272,0.45571,0.250399,0.505725,0.826133,0.559805,0.88202,0.361626,0.502004,0.896952,0.268314,0.79242,0.628307,0.346769,0.0183893,0.185425,0.489057,0.173816,0.215335,0.177376,0.127999,0.421919,0.986715,0.0375744,0.00171274,0.39299,0.789841,0.733537,0.10071,0.909246,0.513954,0.516835,0.629962,0.552152,0.352256,0.0835453,0.0598516,0.478231,0.731796,0.59229,0.195584,0.484554,0.770597,0.606057,0.822356,0.617164,0.578143,0.0159864,0.157188,0.514291,0.724308,0.575876,0.339473,0.383845,0.136738,0.330061,0.364222,0.0139114,0.944892,0.557801,0.858819,0.0871871,0.637211,0.881807,0.349538,0.469161,0.00165129,0.382553,0.224995,0.411556,0.926426,0.407701,0.676363,0.309574,0.380173,0.0686364,0.0728867,0.85823,0.307785,0.281464,0.0425934,0.03864,0.715478,0.51271,0.461607,0.390975,0.0640428,0.212817,0.241051,0.778371,0.0133929,0.189578,0.221578,0.219762,0.911168,0.270275,0.994798,0.416365,0.569834,0.837123,0.384588,0.818118,0.514558,0.914612,0.553303,0.463966,0.0832449,0.768839,0.315512,0.554529,0.769039,0.953741,0.628735,0.443681,0.711344,0.444015,0.527556,0.553657,0.0104322,0.0422698,0.0525954,0.526515,0.65571,0.614799,0.062802,0.159329,0.873106,0.150152,0.81727,0.65609,0.720181,0.764737,0.157467,0.922071,0.490195,0.808574,0.759934,0.437066,0.234649,0.470854,0.838077,0.0111423,0.705734,0.131146,0.749068,0.986936,0.0664235,0.391807,0.443732,0.0959776,0.713665,0.214024,0.649154,0.225806,0.403697,0.815533,0.258465,0.386153,0.528384,0.828031,0.518057,0.591439,0.000533164,0.611175,0.00495982,0.438511,0.327157,0.345949,0.533959,0.86902,0.115842,0.807244,0.545137,0.930801,0.0377486,0.297161,0.856129,0.166697,0.815997,0.0488689,0.336623,0.866605,0.22019,0.478072,0.241275,0.0789068,0.735337,0.133573,0.121826,0.56655,0.799602,0.245966,0.0111701,0.28693,0.380339,0.0940299,0.170991,0.11054,0.36314,0.981112,0.645169,0.449014,0.750101,0.814891,0.0544026,0.64281,0.306626,0.917026,0.0599915,0.441621,0.334638,0.385911,0.10639,0.738669,0.550996,0.49432,0.0780967,0.630989,0.424567,0.804019,0.87561,0.00317138,0.67973,0.19085,0.264644,0.561171,0.878186,0.935839,0.33062,0.466681,0.708358,0.709163,0.791039,0.686389,0.521207,0.749558,0.521,0.320771,0.43073,0.150706,0.382524,0.609261,0.897676,0.615585,0.589156,0.621597,0.647053,0.547477,0.156526,0.962637,0.218112,0.919106,0.539328,0.782,0.686212,0.606028,0.208498,0.0366516,0.0851117,0.658834,0.263918,0.811501,0.0427358,0.804804,0.582643,0.640945,0.44861,0.700527,0.28424,0.179965,0.454783,0.452998,0.368895,0.86584,0.79227,0.556847,0.0717844,0.562927,0.0411974,0.870838,0.217738,0.788875,0.53296,0.340028,0.494563,0.654306,0.222428,0.968257,0.408883,0.626126,0.139468,0.0415532,0.970776,0.203279,0.146723,0.745743,0.182062,0.568905,0.471482,0.780892,0.599719,0.840072,0.462025,0.927555,0.962883,0.775081,0.710684,0.64916,0.804126,0.21404,0.346841,0.400724,0.327285,0.809908,0.283191,0.164607,0.487163,0.046712,0.306517,0.0749491,0.290555,0.554268,0.657094,0.402732,0.830037,0.346026,0.513545,0.699345,0.545927,0.331771,0.618202,0.845668,0.834975,0.780481,0.276459,0.984487,0.995274,0.163788,0.276804,0.0517592,0.868788,0.00223178,0.630095,0.301419,0.456222,0.122034,0.9432,0.23358,0.385756,0.984893,0.987373,0.740957,0.323925,0.94638,0.351643,0.478471,0.76012,0.321441,0.368213,0.93448,0.629157,0.338982,0.644053,0.683598,0.736986,0.280532,0.829244,0.342597,0.0238833,0.673434,0.569581,0.985786,0.719062,0.877341,0.148805,0.948973,0.51295,0.472218,0.750936,0.081013,0.38028,0.0429028,0.578541,0.872875,0.291946,0.187461,0.520288,0.408262,0.84946,0.380441,0.928128,0.138745,0.270793,0.608593,0.815064,0.655217,0.86684,0.214881,0.620063,0.19276,0.982934,0.40686,0.667861,0.0727866,0.365675,0.562025,0.12386,0.190301,0.0583666,0.374813,0.147354,0.407837,0.483801,0.988168,0.362561,0.646537,0.318309,0.0693439,0.0279967,0.284088,0.0734476,0.692748,0.343787,0.259102,0.573065,0.51509,0.832915,0.539937,0.197141,0.99293,0.825078,0.853321,0.99744,0.499097,0.599894,0.227692,0.893455,0.425362,0.999157,0.878827,0.103065,0.605337,0.197538,0.765039,0.624568,0.462431,0.909205,0.645625,0.942855,0.299355,0.340314,0.661777,0.283114,0.728769,0.0553718,0.419182,0.963645,0.636447,0.466973,0.529646,0.462543,0.604029,0.0247251,0.455363,0.180732,0.389966,0.973186,0.991153,0.244613,0.39784,0.0116729,0.247236,0.782645,0.612148,0.475211,0.396201,0.669156,0.0578125,0.927209,0.0393197,0.840219,0.491172,0.756003,0.175131,0.0246889,0.794906,0.661948,0.0752058,0.627567,0.643489,0.3757,0.348289,0.322832,0.156389,0.738179,0.493474,0.970832,0.348707,0.0134547,0.255513,0.807997,0.643451,0.636047,0.707698,0.942594,0.196854,0.799853,0.346479,0.465757,0.97538,0.191668,0.00860065,0.630771,0.812318,0.241911,0.100602,0.304729,0.345186,0.697685,0.536097,0.269371,0.261083,0.448996,0.584618,0.591486,0.382578,0.676539,0.766517,0.986477,0.898437,0.790124,0.0900052,0.523681,0.259621,0.855138,0.958515,0.269707,0.0933267,0.170843,0.594946,0.895053,0.788299,0.100036,0.598679,0.656884,0.126696,0.168415,0.700342,0.269202,0.319606,0.851788,0.853469,0.375493,0.873906,0.143077,0.310426,0.839102,0.622338,0.674973,0.168325,0.678032,0.603998,0.776554,0.0621934,0.555231,0.811015,0.454311,0.171005,0.436444,0.879878,0.214423,0.30866,0.778632,0.287067,0.161443,0.764295,0.596734,0.997855,0.551552,0.356914,0.831528,0.519937,0.40567,0.0603595,0.934747,0.799569,0.392726,0.298542,0.0272793,0.378768,0.00483721,0.70101,0.637048,0.582207,0.703897,0.703622,0.876318,0.996637,0.111593,0.195007,0.0251355,0.0203511,0.767557,0.594867,0.336262,0.298493,0.157867,0.716345,0.837585,0.832435,0.83831,0.997037,0.848181,0.770229,0.98835,0.445119,0.973932,0.717295,0.489528,0.929377,0.733701,0.107651,0.710089,0.48434,0.0664561,0.922504,0.46975,0.601344,0.679163,0.296958,0.73861,0.517412,0.9463,0.669498,0.0314789,0.394728,0.631428,0.834518,0.465306,0.230278,0.678297,0.18777,0.469515,0.624329,0.410059,0.753932,0.352153,0.946096,0.515861,0.87687,0.621529,0.948689,0.713426,0.82592,0.119897,0.267964,0.49994,0.704485,0.220179,0.745544,0.965086,0.998281,0.135114,0.655031,0.368362,0.784448,0.923645,0.197863,0.981486,0.612676,0.758371,0.780573,0.827933,0.731799,0.186589,0.254685,0.725932,0.402132,0.359434,0.579739,0.79131,0.304435,0.934352,0.0963957,0.11778,0.00644511,0.33814,0.326383,0.414572,0.126663,0.285872,0.0435682,0.0472451,0.104856,0.184388,0.242976,0.96386,0.514768,0.914516,0.260596,0.456992,0.263397,0.309939,0.550824,0.319238,0.204072,0.198373,0.623298,0.197424,0.25103,0.190939,0.730795,0.803823,0.737484,0.887661,0.639741,0.197938,0.875011,0.988165,0.852986,0.561388,0.0853724,0.778591,0.158305,0.699965,0.0704052,0.156634,0.660934,0.84275,0.120107,0.585703,0.953053,0.184749,0.516409,0.0630333,0.917648,0.229308,0.970037,0.917717,0.212354,0.395213,0.0513306,0.627741,0.710953,0.87366,0.858856,0.153365,0.188258,0.657074,0.320864,0.488361,0.945324,0.369956,0.904341,0.323343,0.0293158,0.666886,0.136081,0.870076,0.49047,0.655937,0.919418,0.847727,0.587784,0.0971602,0.95086,0.566714,0.242007,0.824473,0.509421,0.995808,0.397071,0.460547,0.756517,0.474197,0.800528,0.0129489,0.412479,0.796286,0.104072,0.606312,0.587294,0.931786,0.282956,|0.942215,0.58355,0.548998,0.163557,0.850351,0.813757,0.484651,0.521925,0.322702,0.398313,0.85024,0.0829233,0.212244,0.910848,0.486187,0.882868,0.649545,0.311072,0.0987152,0.426559,0.533175,0.221321,0.574014,0.196713,0.192914,0.535508,0.603,0.633849,0.51558,0.480079,0.97414,0.567204,0.820368,0.570451,0.751668,0.905364,0.0790582,0.520275,0.0352188,0.68786,0.883174,0.665155,0.582094,0.491145,0.696369,0.528002,0.405818,0.467497,0.259711,0.293826,0.957586,0.123957,0.517317,0.00246614,0.418185,0.478674,0.947076,0.291158,0.427503,0.897489,0.270599,0.0879873,0.174183,0.36354,0.478793,0.994317,0.883157,0.953003,0.327047,0.328404,0.512015,0.0365027,0.462941,0.186607,0.629635,0.239986,0.10123,0.260998,0.322183,0.428608,0.955477,0.317463,0.613535,0.744939,0.538703,0.385347,0.541987,0.943564,0.689485,0.29535,0.391308,0.130031,0.771896,0.473996,0.301322,0.553539,0.741648,0.771453,0.754827,0.854963,0.991519,0.206108,0.413125,0.767504,0.605448,0.300304,0.165078,0.221511,0.562887,0.853171,0.144386,0.508067,0.174709,0.27768,0.253432,0.0819381,0.510302,0.677325,0.309516,0.60408,0.0883473,0.171847,0.231835,0.473625,0.949728,0.744931,0.942949,0.336582,0.813528,0.41865,0.353728,0.0937445,0.766985,0.267596,0.601007,0.0139085,0.532134,0.998057,0.571903,0.944555,0.0126017,0.957237,0.184025,0.436496,0.830903,0.349204,0.37935,0.62238,0.667888,0.803365,0.404544,0.366737,0.981962,0.8559,0.20811,0.477316,0.340109,0.477904,0.788604,0.703837,0.919331,0.771489,0.514431,0.15318,0.873962,0.424123,0.466954,0.226551,0.589779,0.154686,0.682925,0.0881909,0.614802,0.577834,0.606789,0.0789284,0.258101,0.917793,0.473186,0.501087,0.677911,0.0440744,0.689432,0.526409,0.231476,0.914621,0.665807,0.796207,0.660403,0.22379,0.548011,0.324565,0.259665,0.21488,0.854847,0.681958,0.0972012,0.210164,0.48052,0.0198015,0.829103,0.125004,0.498368,0.311066,0.448591,0.000927687,0.753711,0.21843,0.918717,0.2077,0.747538,0.347859,0.257785,0.507343,0.391695,0.846522,0.224878,0.905165,0.831487,0.762053,0.251627,0.863643,0.00371891,0.150152,0.782737,0.237669,0.835655,0.626472,0.0928926,0.654227,0.735438,0.754006,0.33862,0.900504,0.900497,0.50696,0.276797,0.633529,0.515498,0.115108,0.791544,0.637606,0.393406,0.450276,0.369759,0.893894,0.669085,0.904361,0.135283,0.746111,0.162805,0.364703,0.225573,0.453035,0.852118,0.963992,0.914405,0.0288154,0.307758,0.652421,0.723829,0.914782,0.171381,0.627869,0.562217,0.539282,0.553854,0.332458,0.86641,0.66989,0.77973,0.508953,0.933498,0.258448,0.653057,0.782677,0.918715,0.334763,0.744094,0.303866,0.676153,0.444295,0.287028,0.159858,0.145198,0.817579,0.733481,0.741593,0.499275,0.166894,0.75144,0.784804,0.32176,0.20542,0.249289,0.436021,0.288925,0.423975,0.764006,0.887105,0.546605,0.280245,0.411964,0.9586,0.551249,0.387912,0.00208682,0.00553584,0.596097,0.901437,0.208669,0.165386,0.509377,0.752604,0.235749,0.348058,0.626411,0.240084,0.584157,0.600082,0.803008,0.850579,0.980574,0.901647,0.110052,0.326511,0.984526,0.603609,0.886587,0.293072,0.19565,0.34048,0.670437,0.246181,0.630643,0.0783843,0.512557,0.611076,0.834829,0.811644,0.0131051,0.043905,0.217366,0.696889,0.795161,0.0864558,0.892345,0.00937968,0.393033,0.570024,0.550316,0.418171,0.772423,0.525071,0.209004,0.0291749,0.713265,0.782727,0.0358182,0.877155,0.969078,0.469414,0.491091,0.310073,0.968993,0.218616,0.851144,0.296023,0.355686,0.349069,0.405368,0.361045,0.408972,0.725638,0.22855,0.653129,0.0105128,0.617939,0.37766,0.118258,0.272272,0.696048,0.0324971,0.277477,0.602343,0.384394,0.932961,0.939973,0.0518084,0.113441,0.938173,0.36483,0.27978,0.408582,0.711389,0.282419,0.392777,0.674881,0.360305,0.243318,0.863952,0.137526,0.265307,0.520932,0.717425,0.0124358,0.57768,0.164429,0.350706,0.853444,0.518197,0.907844,0.0584896,0.927163,0.39525,0.9387,0.671425,0.820784,0.0505112,0.666207,0.693607,0.459098,0.278105,0.399277,0.552574,0.473416,0.393277,0.538413,0.749079,0.190349,0.952429,0.0252489,0.635606,0.369593,0.0587722,0.931719,0.382233,0.393237,0.456318,0.162623,0.409074,0.36414,0.284563,0.151441,0.123455,0.737895,0.705076,0.339745,0.161952,0.43541,0.534107,0.548689,0.323216,0.264289,0.30173,0.428687,0.410388,0.520449,0.40362,0.515296,0.563741,0.792316,0.533633,0.828683,0.562381,0.609244,0.609,0.515604,0.143146,0.0304436,0.285971,0.240851,0.542239,0.947824,0.687347,0.876683,0.467283,0.48303,0.576542,0.928812,0.755781,0.102709,0.6619,0.161739,0.152979,0.528606,0.948467,0.265677,0.821808,0.920686,0.976626,0.464881,0.0458812,0.117293,0.272407,0.0504696,0.21561,0.796695,0.0359069,0.910697,0.883294,0.182974,0.360997,0.513856,0.496803,0.331644,0.206438,0.991136,0.170004,0.359471,0.39669,0.184891,0.152178,0.377294,0.75123,0.491213,0.139339,0.493537,0.806213,0.40305,0.191104,0.27269,0.194686,0.672947,0.0153826,0.927468,0.181079,0.145449,0.747281,0.895704,0.715044,0.568012,0.933248,0.950603,0.39464,0.763127,0.40801,0.342454,0.315569,0.178299,0.511348,0.925761,0.968749,0.920489,0.267866,0.867729,0.807697,0.67619,0.731334,0.306911,0.340234,0.544362,0.450068,0.580343,0.190636,0.499913,0.441456,0.785409,0.888813,0.407483,0.32825,0.320006,0.0578388,0.931198,0.469956,0.572522,0.410309,0.496916,0.33414,0.410816,0.411621,0.00500923,0.208563,0.907429,0.892524,0.977724,0.494991,0.570687,0.443369,0.447872,0.957858,0.544837,0.384435,0.766139,0.0944555,0.670413,0.747022,0.837313,0.314966,0.781353,0.634402,0.238334,0.941733,0.937126,0.0970825,0.249488,0.332209,0.933288,0.863361,0.60531,0.408059,0.0493212,0.804211,0.989849,0.850309,0.408143,0.974661,0.633813,0.668483,0.401101,0.812948,0.84569,0.550004,0.0845529,0.823184,0.297131,0.92136,0.641722,0.752419,0.859015,0.30286,0.413377,0.087148,0.115946,0.63868,0.471654,0.00760865,0.329541,0.794178,0.0134485,0.801847,0.504149,0.170815,0.197968,0.348336,0.832653,0.50737,0.458289,0.352619,0.11396,0.370603,0.266479,0.592927,0.0929763,0.79006,0.315325,0.565232,0.843394,0.832583,0.471941,0.972741,0.0619477,0.319202,0.990206,0.275858,0.932182,0.526554,0.0821017,0.122735,0.0784745,0.217157,0.741702,0.0555222,0.50634,0.169612,0.402077,0.179844,0.168847,0.817937,0.841017,0.500214,0.610451,0.420127,0.518004,0.0637311,0.956908,0.0951251,0.5719,0.102748,0.69573,0.14683,0.610511,0.423696,0.224649,0.970631,0.828107,0.948966,0.524656,0.578994,0.864589,0.772668,0.267012,0.499497,0.615312,0.102325,0.814612,0.0109418,0.237073,0.0870839,0.738157,0.059854,0.455636,0.161207,0.266723,0.43252,0.322517,0.245589,0.565081,0.95523,0.636032,0.272653,0.406663,0.84421,0.487512,0.953267,0.480065,0.476966,0.28449,0.154555,0.215894,0.170155,0.533607,0.757146,0.573704,0.388511,0.982002,0.803558,0.0651516,0.479822,0.188873,0.684949,0.960284,0.657213,0.951888,0.580679,0.894673,0.564593,0.490008,0.376972,0.822017,0.771518,0.381795,0.0257186,0.457537,0.874352,0.389466,0.87947,0.71698,0.0274669,0.657858,0.959431,0.206008,0.84217,0.81448,0.714003,0.088951,0.210171,0.611381,0.471797,0.242619,0.673628,0.369944,0.512426,0.800775,0.184261,0.96711,0.595264,0.255842,0.797026,0.406447,0.453136,0.96825,0.595662,0.206948,0.221347,0.330329,0.514795,0.279398,0.274448,0.235429,0.12418,0.674724,0.239399,0.823903,0.954976,0.794802,0.0586913,0.441269,0.343735,0.78557,0.558533,0.539761,0.183065,0.778882,0.931448,0.262801,0.779625,0.362751,0.495547,0.535847,0.729686,0.610261,0.137589,0.536991,0.541352,0.285456,0.00914586,0.0465974,0.718395,0.175223,0.957874,0.568323,0.110563,0.416421,0.0661498,0.654562,0.681402,0.896688,0.438449,0.269801,0.845783,0.573388,0.813319,0.16787,0.453603,0.300493,0.117806,0.418157,0.594434,0.893513,0.0637043,0.517717,0.273094,0.743944,0.632347,0.992666,0.537049,0.745933,0.655679,0.0767735,0.936134,0.307004,0.0686014,0.830294,0.659899,0.901819,0.596045,0.452887,0.560913,0.173239,0.802364,0.803786,0.581192,0.904716,0.988746,0.631588,0.814734,0.880924,0.974696,0.383603,0.292314,0.478915,0.651466,0.306871,0.392919,0.033662,0.772136,0.509533,0.743289,0.740315,0.935413,0.866789,0.930405,0.00523072,0.652362,0.952934,0.242921,0.705352,0.141915,0.00438386,0.520768,0.756528,0.567309,0.0553012,0.364958,0.592945,0.965865,0.510158,0.312221,0.140005,0.700271,0.0377002,0.803133,0.520177,0.94127,0.931219,0.0436583,0.428352,0.788131,0.342602,0.106112,0.186646,0.696181,0.950078,0.744387,0.0786493,0.405325,0.546263,0.533011,0.128358,0.242417,0.840943,0.767244,0.402423,0.935342,0.628133,0.253355,0.143454,0.296059,0.894537,0.364355,0.581439,0.669211,0.0580887,0.111281,0.118652,0.326521,0.573106,0.716147,0.77724,0.945926,0.347109,0.317012,0.748309,0.64611,0.631388,0.974117,0.243431,0.988033,0.00638103,0.824818,0.659294,0.352264,0.548977,0.123062,0.0375977,0.569971,0.681458,0.52294,0.351433,0.370656,0.068826,0.965479,0.405422,0.999249,0.554089,0.216375,0.726454,0.680098,0.317835,0.615077,0.0335845,0.361858,0.396139,0.0624656,0.116725,0.517429,0.854481,0.612992,0.161119,0.449591,0.450443,0.742983,0.267242,0.625271,0.171897,0.656055,0.896798,0.323889,0.220699,0.868936,0.115868,0.468796,0.112123,0.189575,0.436093,0.769602,0.65454,0.418436,0.461394,0.51489,0.452001,0.103052,0.743472,0.844779,0.0144517,0.593791,0.367501,0.50463,0.359807,|0.812033,0.224857,0.614103,0.052977,0.316001,0.414623,0.459989,0.415106,0.163202,0.651307,0.521403,0.88619,0.812138,0.712818,0.949824,0.850752,0.145324,0.243059,0.965739,0.231905,0.770791,0.546061,0.996176,0.0417002,0.380484,0.646985,0.431544,0.648964,0.623088,0.526678,0.525829,0.173882,0.557095,0.892204,0.651076,0.0718317,0.222013,0.813779,0.418734,0.652011,0.0135649,0.574153,0.243607,0.663706,0.0349908,0.578764,0.0633461,0.129441,0.142251,0.963647,0.871193,0.378318,0.365599,0.9122,0.360223,0.454396,0.879693,0.58411,0.451738,0.892327,0.421788,0.505652,0.47952,0.13276,0.0924111,0.448294,0.335976,0.420282,0.00980848,0.686351,0.941507,0.0734718,0.489972,0.630529,0.883273,0.333467,0.791467,0.570114,0.504434,0.498346,0.608118,0.415875,0.813308,0.782833,0.287264,0.89572,0.619217,0.479075,0.781889,0.0569237,0.312921,0.438364,0.0668406,0.517135,0.210774,0.321017,0.736887,0.726406,0.875144,0.889466,0.00542849,0.249399,0.194469,0.546697,0.820119,0.0347402,0.758757,0.0882385,0.469255,0.103144,0.614564,0.744864,0.305265,0.199971,0.393815,0.674978,0.891319,0.453149,0.143981,0.957485,0.918891,0.0886768,0.380343,0.693819,0.0152227,0.977351,0.892119,0.627362,0.341622,0.00959611,0.81154,0.333222,0.0969298,0.183982,0.540811,0.19692,0.128235,0.844917,0.646146,0.765652,0.554407,0.747702,0.599921,0.139312,0.477167,0.650544,0.996973,0.749648,0.731658,0.372344,0.887852,0.76223,0.586407,0.762594,0.335801,0.431299,0.224181,0.24251,0.210343,0.344401,0.559803,0.302011,0.0635166,0.275694,0.233347,0.23031,0.0401719,0.445322,0.878044,0.306151,0.0190989,0.917867,0.955977,0.871486,0.128318,0.643447,0.888794,0.631154,0.280028,0.22768,0.316273,0.201689,0.844105,0.946192,0.625825,0.980983,0.149135,0.279433,0.679974,0.762733,0.290983,0.949043,0.286463,0.333878,0.369745,0.876821,0.475567,0.932409,0.361384,0.248712,0.616659,0.85551,0.195077,0.997297,0.715956,0.552111,0.053351,0.814612,0.255734,0.624602,0.893639,0.411242,0.765601,0.344819,0.857241,0.0895052,0.0929132,0.579453,0.823542,0.060366,0.0982888,0.411615,0.989429,0.211581,0.0776363,0.682863,0.425595,0.669836,0.445516,0.214323,0.683519,0.638278,0.0763235,0.165837,0.292108,0.265996,0.313949,0.69573,0.610208,0.564067,0.36711,0.0723552,0.58032,0.186541,0.737512,0.119905,0.560915,0.647178,0.828535,0.214756,0.410162,0.180374,0.349054,0.75869,0.914973,0.77496,0.781208,0.376803,0.260875,0.649129,0.973816,0.502063,0.215447,0.706082,0.982925,0.729056,0.658404,0.59296,0.394285,0.0802643,0.293078,0.610789,0.317383,0.0781665,0.842387,0.483865,0.749564,0.985876,0.50603,0.386518,0.629347,0.606406,0.153697,0.0521179,0.246116,0.819773,0.0232227,0.867788,0.13066,0.760001,0.953409,0.67851,0.804842,0.030274,0.907448,0.423986,0.772336,0.665062,0.195929,0.430713,0.887885,0.0125237,0.371007,0.481224,0.189852,0.487377,0.166412,0.677393,0.801849,0.745668,0.877452,0.786675,0.0619296,0.397409,0.224182,0.183443,0.554084,0.531909,0.959262,0.661467,0.158567,0.432515,0.0961105,0.891052,0.705699,0.577408,0.615357,0.107986,0.472331,0.75771,0.728145,0.515712,0.521651,0.637651,0.490361,0.0394009,0.910984,0.191644,0.277837,0.199003,0.225125,0.375129,0.750343,0.251106,0.254528,0.598884,0.17386,0.80557,0.464555,0.621842,0.231984,0.0133873,0.482135,0.831344,0.531613,0.0194187,0.00540936,0.762306,0.281618,0.276,0.20792,0.40515,0.944536,0.965949,0.461607,0.269455,0.182708,0.59906,0.114154,0.17852,0.75174,0.136659,0.437847,0.210846,0.158881,0.613744,0.0702885,0.789846,0.719732,0.0955207,0.43676,0.884619,0.742878,0.104871,0.579194,0.617477,0.493524,0.377608,0.854728,0.462692,0.170451,0.597126,0.533872,0.597768,0.295394,0.818269,0.963108,0.582093,0.964511,0.319415,0.936782,0.0115235,0.571551,0.38544,0.147062,0.719536,0.546527,0.121753,0.243864,0.00607526,0.489086,0.411312,0.251637,0.350888,0.524767,0.408665,0.135937,0.940796,0.463723,0.278811,0.478975,0.780047,0.0793549,0.588958,0.940813,0.944578,0.621115,0.212713,0.988282,0.695767,0.268778,0.479224,0.38643,0.817506,0.369256,0.962975,0.517306,0.367592,0.671216,0.0387576,0.635483,0.921171,0.474534,0.393181,0.279229,0.950961,0.00868922,0.499481,0.974773,0.0549217,0.80123,0.391452,0.580263,0.888376,0.809208,0.425311,0.744962,0.747231,0.605165,0.966295,0.275101,0.801083,0.322837,0.363572,0.212513,0.176219,0.159543,0.287595,0.264502,0.995075,0.61407,0.413478,0.599595,0.668327,0.487109,0.776484,0.649048,0.0926014,0.637636,0.4139,0.266522,0.184813,0.689601,0.902749,0.796601,0.214621,0.11122,0.602742,0.518041,0.503061,0.0301298,0.873415,0.321755,0.241773,0.921721,0.694995,0.973131,0.668678,0.576378,0.706044,0.417657,0.66599,0.538514,0.786263,0.0905408,0.126663,0.277918,0.985226,0.69909,0.690924,0.759815,0.206566,0.700121,0.0331988,0.68757,0.653032,0.21975,0.824105,0.546215,0.238286,0.182161,0.851576,0.701861,0.216044,0.593406,0.145891,0.353852,0.193807,0.49421,0.447719,0.254603,0.629389,0.0202721,0.972327,0.160997,0.925525,0.871247,0.469794,0.113487,0.490047,0.127631,0.970123,0.700923,0.517212,0.477685,0.610179,0.797913,0.703362,0.517377,0.507479,0.795141,0.575885,0.103893,0.825156,0.260323,0.720232,0.186863,0.98463,0.718511,0.573281,0.5184,0.754615,0.78222,0.41225,0.0111397,0.0966299,0.91242,0.393514,0.278131,0.431489,0.85554,0.913954,0.825748,0.315714,0.258372,0.393998,0.467135,0.766377,0.384557,0.0922709,0.43729,0.777588,0.379904,0.154524,0.500322,0.393722,0.386425,0.936052,0.754872,0.131296,0.697431,0.847219,0.784501,0.508948,0.719843,0.449667,0.856889,0.504255,0.62721,0.536797,0.516081,0.973768,0.215844,0.305502,0.57202,0.188479,0.588406,0.315554,0.101672,0.928136,0.9292,0.271728,0.369888,0.402924,0.775375,0.57971,0.512048,0.438201,0.276538,0.61963,0.978553,0.95052,0.0809278,0.402646,0.824131,0.0679818,0.961831,0.65691,0.230547,0.704825,0.957837,0.432819,0.345071,0.134112,0.560545,0.061093,0.395565,0.892013,0.22998,0.84411,0.222643,0.880896,0.694064,0.246454,0.297448,0.448645,0.434367,0.739463,0.234263,0.704405,0.559624,0.6717,0.779521,0.369487,0.901507,0.280586,0.775837,0.538018,0.90085,0.314525,0.900108,0.493841,0.712243,0.815813,0.230027,0.849274,0.0207753,0.83842,0.553535,0.277594,0.104282,0.645696,0.418305,0.166264,0.433406,0.749675,0.301567,0.943966,0.687331,0.0980569,0.59558,0.336088,0.328133,0.19897,0.836622,0.889157,0.392611,0.474372,0.636985,0.79372,0.391155,0.350196,0.33962,0.821054,0.394875,0.740148,0.20035,0.398055,0.342027,0.417257,0.878276,0.0952212,0.657304,0.00124532,0.254826,0.352304,0.143214,0.693964,0.760336,0.384342,0.180931,0.838276,0.12282,0.742586,0.138713,0.32051,0.969109,0.0148674,0.0878278,0.922079,0.7568,0.956654,0.701559,0.0062964,0.794864,0.0102038,0.420199,0.790125,0.856267,0.727786,0.341898,0.612046,0.323333,0.243863,0.969669,0.744828,0.617941,0.726023,0.133693,0.469709,0.143354,0.170128,0.763136,0.296377,0.242693,0.107253,0.869713,0.771484,0.411015,0.759327,0.524297,0.309895,0.23972,0.729055,0.667044,0.636313,0.57511,0.123984,0.690109,0.791534,0.486844,0.597472,0.951791,0.203012,0.149819,0.255236,0.554305,0.620145,0.290726,0.636061,0.209225,0.912416,0.787898,0.455245,0.203397,0.732811,0.283327,0.590005,0.696245,0.46514,0.295996,0.0816689,0.236821,0.498609,0.159991,0.151589,0.178083,0.283452,0.176885,0.12489,0.89338,0.384661,0.378265,0.631696,0.587623,0.821129,0.345767,0.750905,0.592287,0.163794,0.318894,0.0323986,0.990203,0.826287,0.949276,0.492039,0.806118,0.50873,0.129189,0.237746,0.219757,0.586048,0.971876,0.491817,0.555917,0.361148,0.83397,0.273127,0.153814,0.37934,0.80739,0.0991407,0.034032,0.287551,0.751179,0.607377,0.549447,0.142328,0.433215,0.798684,0.755149,0.370084,0.426138,0.732935,0.959174,0.823387,0.184523,0.493342,0.774614,0.462078,0.128569,0.678332,0.215781,0.962697,0.746067,0.268328,0.30429,0.430949,0.192164,0.987496,0.615761,0.185185,0.652064,0.653086,0.717786,0.123405,0.213879,0.749826,0.831659,0.294035,0.241368,0.372466,0.636767,0.978204,0.00462979,0.987303,0.119938,0.609415,0.9966,0.532417,0.864815,0.259786,0.320537,0.351307,0.468421,0.472227,0.16742,0.131653,0.179185,0.0567487,0.766202,0.352317,0.552725,0.779481,0.563635,0.845539,0.730131,0.464967,0.132146,0.839262,0.527967,0.495617,0.939964,0.275477,0.70246,0.200825,0.936781,0.375993,0.0170841,0.447446,0.766466,0.508097,0.445831,0.122685,0.988648,0.509937,0.945279,0.267258,0.644453,0.834163,0.373924,0.995192,0.149654,0.696953,0.465621,0.704701,0.0653575,0.774434,0.681114,0.416783,0.950025,0.0603946,0.522725,0.487992,0.475183,0.345849,0.329926,0.742544,0.0564308,0.833312,0.700759,0.741809,0.305557,0.271785,0.239514,0.469288,0.881923,0.42084,0.417176,0.438568,0.0911541,0.625571,0.099528,0.546211,0.0586011,0.042806,0.624294,0.271518,0.837585,0.00214124,0.182287,0.63079,0.853847,0.238256,0.0166579,0.510817,0.738038,0.408934,0.972438,0.886392,0.846842,0.755244,0.756935,0.167481,0.264153,0.449968,0.0937881,0.519529,0.255546,0.124582,0.959542,0.902108,0.570754,0.727971,0.214917,0.282685,0.740912,0.714195,0.904051,0.373602,0.502103,0.437837,0.22675,0.358265,0.887232,0.493532,0.813896,0.89995,0.473573,0.0466505,0.114934,0.553949,0.333736,0.912994,0.235105,0.854751,0.477418,0.812928,0.593997,0.643569,|0.472312,0.0143059,0.425729,0.584825,0.309022,0.296849,0.54556,0.516616,0.214869,0.544784,0.612103,0.30491,0.0850945,0.0377985,0.193833,0.574674,0.720673,0.515804,0.964243,0.0670722,0.526267,0.444282,0.377829,0.833882,0.623065,0.425761,0.334995,0.8501,0.603393,0.704814,0.84365,0.460061,0.750362,0.37556,0.34985,0.146358,0.710373,0.121947,0.230364,0.99958,0.785354,0.736387,0.322868,0.333035,0.538924,0.707206,0.557353,0.470712,0.658216,0.374536,0.517211,0.574672,0.990831,0.376593,0.856257,0.218183,0.316625,0.296642,0.925329,0.204126,0.864259,0.222912,0.884,0.982609,0.683494,0.368891,0.116516,0.0949239,0.694791,0.764478,0.431035,0.175126,0.211298,0.855204,0.932129,0.730215,0.907447,0.41526,0.587329,0.785087,0.695334,0.321715,0.426569,0.572645,0.0752537,0.153425,0.399369,0.309807,0.384613,0.375543,0.15297,0.613534,0.520623,0.156462,0.568436,0.509214,0.113331,0.163666,0.651035,0.149219,0.607671,0.219667,0.903991,0.337749,0.882438,0.891503,0.375172,0.396973,0.410164,0.309493,0.36739,0.90653,0.848586,0.166834,0.822694,0.299504,0.210879,0.384816,0.978894,0.379647,0.855768,0.488343,0.133694,0.086353,0.396709,0.385484,0.831078,0.600203,0.396646,0.319095,0.67957,0.27427,0.541731,0.734362,0.633015,0.339372,0.655908,0.173531,0.585969,0.157398,0.155538,0.395562,0.948778,0.340865,0.889468,0.537277,0.209911,0.950147,0.31834,0.159169,0.323444,0.0176443,0.540664,0.650523,0.0446149,0.887517,0.564584,0.224975,0.814661,0.569961,0.535231,0.279452,0.0207612,0.709005,0.174191,0.684224,0.659624,0.244648,0.353164,0.335673,0.0417258,0.510233,0.852776,0.633704,0.353787,0.716894,0.90471,0.796693,0.93675,0.239412,0.946759,0.759263,0.472771,0.174259,0.0658689,0.627152,0.962049,0.367342,0.821152,0.0950813,0.902557,0.867725,0.627447,0.708561,0.844229,0.217967,0.408318,0.0417476,0.287563,0.846139,0.559748,0.82088,0.288603,0.443343,0.181072,0.387775,0.747746,0.249148,0.0212513,0.561211,0.350113,0.755283,0.677413,0.300886,0.0599814,0.60654,0.211516,0.755777,0.988163,0.465538,0.195303,0.63756,0.0203046,0.613896,0.267577,0.537901,0.23521,0.562987,0.898824,0.0152986,0.946182,0.906314,0.308901,0.757753,0.158798,0.90267,0.785982,0.427562,0.0445161,0.463232,0.147078,0.774564,0.0757992,0.602568,0.121392,0.718421,0.299502,0.949366,0.639675,0.781542,0.69892,2.41399e-05,0.337945,0.766771,0.176072,0.968268,0.626569,0.875352,0.562058,0.560535,0.496951,0.763871,0.454641,0.904849,0.00452173,0.540224,0.125173,0.998222,0.38987,0.702348,0.681394,0.901721,0.284178,0.159132,0.281539,0.0352,0.890251,0.723073,0.0876986,0.976827,0.559284,0.372841,0.104186,0.155724,0.256864,0.717155,0.345939,0.648982,0.341714,0.420404,0.131234,0.249399,0.670768,0.907046,0.537196,0.781644,0.115225,0.973705,0.168658,0.278549,0.642042,0.675822,0.997022,0.0181873,0.420787,0.909427,0.513233,0.568658,0.201227,0.16798,0.081504,0.288633,0.439095,0.953281,0.505226,0.998517,0.291061,0.960805,0.289264,0.502235,0.018273,0.295812,0.614466,0.361981,0.543947,0.771744,0.130544,0.286401,0.285021,0.984372,0.664497,0.334932,0.450201,0.708136,0.614938,0.469525,0.407691,0.385531,0.851179,0.201279,0.590167,0.494801,0.609572,0.150064,0.143305,0.0452337,0.745105,0.138938,0.914606,0.64567,0.676993,0.912607,0.544363,0.151697,0.32659,0.291238,0.447433,0.00549042,0.227825,0.568266,0.0677537,0.201902,0.099463,0.98471,0.514788,0.567741,0.818395,0.803699,0.14724,0.702761,0.186783,0.288728,0.872519,0.450863,0.925341,0.138047,0.777595,0.956111,0.40751,0.835717,0.862172,0.271506,0.279802,0.600337,0.964183,0.87646,0.542535,0.78143,0.320046,0.131283,0.321302,0.216333,0.237506,0.185333,0.113842,0.76599,0.191119,0.285939,0.194444,0.999619,0.496006,0.941691,0.119628,0.717772,0.460021,0.682093,0.0446653,0.942252,0.917491,0.760093,0.339589,0.798103,0.0807097,0.827741,0.152514,0.289826,0.951141,0.224925,0.630345,0.413722,0.578406,0.919104,0.37965,0.313904,0.546887,0.0738534,0.458165,0.135893,0.943146,0.0378593,0.744158,0.127346,0.668926,0.875606,0.440271,0.817946,0.230511,0.916116,0.685123,0.322201,0.807118,0.193668,0.197735,0.53295,0.654877,0.24822,0.531775,0.403629,0.699924,0.123063,0.800779,0.721439,0.655899,0.491864,0.0815836,0.639207,0.19026,0.344861,0.865064,0.839375,0.211875,0.0917568,0.567194,0.8691,0.720418,0.974412,0.405486,0.519808,0.431787,0.294156,0.82682,0.408292,0.728629,0.218348,0.249447,0.695465,0.00220495,0.338998,0.56682,0.537754,0.382177,0.74634,0.105184,0.672813,0.792602,0.937405,0.467818,0.226694,0.895911,0.75157,0.733102,0.257755,0.523216,0.0195533,0.101655,0.0214505,0.508891,0.0137756,0.952724,0.661429,0.605307,0.480129,0.844985,0.133152,0.814429,0.530686,0.775948,0.373729,0.101184,0.142146,0.142122,0.6269,0.0985225,0.496886,0.293641,0.491549,0.453381,0.227145,0.263602,0.193631,0.830969,0.395282,0.524508,0.864884,0.431282,0.845546,0.154506,0.864071,0.213912,0.620142,0.228423,0.549952,0.502994,0.403303,0.412077,0.130849,0.0923052,0.876807,0.501677,0.845032,0.932836,0.115331,0.778032,0.836414,0.539874,0.74983,0.880573,0.543964,0.700712,0.0089224,0.417817,0.214267,0.197387,0.787678,0.962106,0.144239,0.175387,0.507221,0.259354,0.135313,0.638928,0.0427883,0.197578,0.979158,0.622362,0.0234516,0.549256,0.639259,0.108708,0.320991,0.0671522,0.788629,0.805427,0.254654,0.449334,0.56061,0.568604,0.393353,0.632182,0.746084,0.316665,0.112633,0.383431,0.239231,0.788754,0.861017,0.206633,0.969526,0.875678,0.588103,0.185035,0.370867,0.0159488,0.288546,0.0461838,0.951812,0.0199399,0.731259,0.5729,0.159898,0.872288,0.443778,0.945643,0.512762,0.236516,0.738138,0.579753,0.864148,0.0930371,0.74955,0.819872,0.0787336,0.59175,0.626658,0.896562,0.327851,0.771973,0.0255529,0.426161,0.603904,0.118237,0.818179,0.816127,0.790977,0.287486,0.497168,0.143428,0.231418,0.193389,0.977569,0.403038,0.951915,0.812497,0.101093,0.880903,0.463218,0.451905,0.662146,0.0338397,0.801782,0.611759,0.512448,0.386248,0.794593,0.759545,0.836169,0.634671,0.259285,0.847846,0.486787,0.503485,0.326587,0.872463,0.539352,0.559599,0.981613,0.262165,0.0796127,0.539361,0.933618,0.965119,0.79496,0.83409,0.709803,0.84598,0.221733,0.475711,0.271255,0.806279,0.0105804,0.972474,0.463725,0.943259,0.351234,0.837562,0.260309,0.261562,0.502124,0.172372,0.11859,0.609674,0.62945,0.184539,0.944252,0.403472,0.791831,0.547104,0.483126,0.48311,0.699798,0.998917,0.172764,0.684802,0.510425,0.0778771,0.564757,0.248208,0.122104,0.234108,0.660736,0.390969,0.663432,0.917078,0.546916,0.434363,0.688328,0.304162,0.115025,0.820022,0.436446,0.599864,0.39948,0.65542,0.145589,0.672838,0.76845,0.607928,0.491134,0.405478,0.0185806,0.574012,0.193575,0.806901,0.386153,0.525218,0.11282,0.120627,0.0956807,0.363234,0.108931,0.893301,0.781478,0.230205,0.670882,0.649322,0.642082,0.239771,0.877012,0.255242,0.566707,0.112859,0.995352,0.809385,0.451667,0.0901949,0.706833,0.303317,0.815096,0.182608,0.125972,0.416659,0.768876,0.952353,0.458988,0.457995,0.870154,0.261404,0.929302,0.932931,0.00325239,0.936859,0.138531,0.15081,0.294404,0.713089,0.454172,0.915187,0.812538,0.941671,0.972359,0.828816,0.315269,0.510764,0.754269,0.943457,0.259524,0.553767,0.0417815,0.129474,0.573028,0.784673,0.893574,0.894116,0.606099,0.852312,0.0817546,0.775135,0.531296,0.828421,0.0937013,0.0796633,0.584265,0.43443,0.610204,0.182274,0.988842,0.534646,0.792959,0.15481,0.799683,0.973699,0.409768,0.135932,0.554698,0.579525,0.365926,0.539522,0.959762,0.544261,0.962932,0.910126,0.510183,0.111519,0.161008,0.399567,0.753436,0.189269,0.295829,0.442083,0.496978,0.614418,0.725182,0.856924,0.663687,0.348007,0.352262,0.558916,0.131461,0.8666,0.241564,0.169289,0.28996,0.0849792,0.0947698,0.673616,0.403228,0.135598,0.688414,0.144432,0.732024,0.984689,0.582847,0.538517,0.493221,0.461275,0.606511,0.8786,0.91926,0.395297,0.389259,0.56789,0.922285,0.975175,0.373771,0.720926,0.883138,0.208234,0.504702,0.788021,0.907399,0.832732,0.579024,0.600616,0.910755,0.0316217,0.273602,0.0894538,0.923824,0.453678,0.466391,0.6579,0.673662,0.0590855,0.0894082,0.753732,0.839012,0.30069,0.596049,0.243346,0.955321,0.303854,0.565455,0.924344,0.0673951,0.540529,0.767915,0.995094,0.00231135,0.342951,0.735522,0.689754,0.82007,0.65321,0.525196,0.944938,0.401235,0.244528,0.304461,0.301114,0.887531,0.761214,0.193613,0.193907,0.660787,0.337893,0.796049,0.447189,0.334353,0.539402,0.154975,0.115901,0.299761,0.235482,0.602633,0.0555415,0.869297,0.65106,0.297429,0.799824,0.802671,0.641906,0.985072,0.71143,0.367802,0.827082,0.403492,0.0535532,0.40283,0.681879,0.738175,0.43491,0.528922,0.817142,0.627379,0.935938,0.294362,0.748966,0.205591,0.652899,0.408551,0.609734,0.169371,0.95226,0.767114,0.311513,0.398182,0.22015,0.915502,0.984964,0.842351,0.684267,0.479309,0.477711,0.505517,0.155004,0.888787,0.023215,0.60077,0.526499,0.531182,0.741678,0.386029,0.956828,0.0565577,0.0199002,0.680786,0.172128,0.602873,0.644999,0.480361,0.918398,0.949622,0.710643,0.648117,0.75683,0.766325,0.413867,0.259782,0.10046,0.826209,0.738204,0.962937,0.609271,0.20966,0.14445,0.581033,0.856315,0.923024,0.823209,0.341336,0.228187,0.541937,0.24137,0.257877,0.0707898,0.87803,0.926568,0.0983776,0.123172,0.83793,|0.906025,0.951883,0.916684,0.413255,0.264319,0.156877,0.476733,0.339962,0.634282,0.985843,0.738764,0.561969,0.202458,0.351825,0.192826,0.0861446,0.262375,0.0864714,0.342847,0.391403,0.76369,0.222419,0.857173,0.913839,0.572253,0.682964,0.24019,0.114152,0.682962,0.0653332,0.492191,0.511481,0.680654,0.518035,0.184617,0.436953,0.220229,0.778078,0.97594,0.295963,0.217619,0.293562,0.582633,0.135076,0.749506,0.0293915,0.849608,0.0419376,0.395066,0.794964,0.593449,0.0264571,0.0893963,0.333404,0.611515,0.832212,0.102871,0.153426,0.893283,0.0522241,0.740687,0.105873,0.964683,0.44897,0.0156987,0.0242201,0.393952,0.624249,0.900461,0.919081,0.494138,0.120495,0.723145,0.848689,0.621048,0.0941809,0.264275,0.61095,0.860425,0.407889,0.110539,0.528386,0.873249,0.14001,0.662383,0.668364,0.917135,0.181218,0.2019,0.192762,0.946178,0.931665,0.382123,0.435823,0.348115,0.741935,0.859699,0.33096,0.159539,0.353521,0.00898916,0.0460089,0.549056,0.169133,0.202666,0.273053,0.507275,0.295725,0.41651,0.364529,0.863768,0.00561863,0.688008,0.804791,0.0671467,0.655232,0.836781,0.453087,0.996976,0.840855,0.250502,0.0169191,0.988174,0.488991,0.706158,0.79707,0.333385,0.839989,0.227227,0.357976,0.406093,0.826232,0.736279,0.471834,0.145511,0.564383,0.475392,0.588115,0.0930266,0.174904,0.607608,0.389522,0.855956,0.194588,0.681995,0.0356683,0.237502,0.131749,0.686093,0.897577,0.443356,0.947864,0.570147,0.0254553,0.371236,0.0675326,0.933983,0.416763,0.520434,0.0914983,0.824106,0.027139,0.545995,0.320516,0.480445,0.798201,0.417187,0.00230193,0.304209,0.850224,0.0965077,0.895163,0.0362941,0.713775,0.137046,0.527553,0.39266,0.13083,0.272888,0.412009,0.764112,0.844952,0.109134,0.123541,0.670633,0.130905,0.528508,0.870723,0.38294,0.227189,0.645675,0.912308,0.0203606,0.7851,0.339053,0.147086,0.922552,0.152031,0.981749,0.478455,0.197921,0.282575,0.280918,0.194025,0.73552,0.893463,0.208035,0.311398,0.163247,0.437976,0.752678,0.0562381,0.501624,0.551863,0.83484,0.435844,0.552157,0.0561967,0.728438,0.72566,0.106848,0.814195,0.122694,0.664237,0.714747,0.773297,0.91466,0.0420807,0.284147,0.32149,0.0804954,0.775537,0.167411,0.545951,0.336923,0.571513,0.23664,0.900419,0.218732,0.80134,0.579807,0.357882,0.694412,0.38992,0.57842,0.0831896,0.44054,0.710809,0.807147,0.106034,0.0693812,0.730929,0.481981,0.636446,0.217225,0.184196,0.865848,0.740178,0.992227,0.134922,0.65137,0.399191,0.744063,0.645148,0.378281,0.295711,0.0786134,0.963024,0.660535,0.756473,0.915714,0.28442,0.965132,0.35176,0.0713484,0.402359,0.917284,0.581233,0.675757,0.318404,0.991879,0.021961,0.662941,0.809772,0.680636,0.656023,0.685734,0.870556,0.0742058,0.702363,0.176468,0.752395,0.544407,0.702136,0.824885,0.366499,0.414979,0.772477,0.507406,0.777079,0.811207,0.746977,0.474797,0.871132,0.31398,0.706328,0.256345,0.126636,0.226028,0.802404,0.955058,0.870838,0.960674,0.421368,0.903426,0.177037,0.342544,0.893701,0.0788912,0.851382,0.815131,0.69465,0.800353,0.020225,0.343228,0.142509,0.796492,0.192652,0.840779,0.315468,0.651841,0.13367,0.861503,0.435764,0.44918,0.286215,0.214429,0.614218,0.27661,0.814564,0.560163,0.35742,0.756759,0.512727,0.773222,0.181408,0.819689,0.828662,0.0299135,0.0954073,0.451207,0.530631,0.0534192,0.267573,0.0843984,0.00125796,0.710076,0.476797,0.706196,0.0784069,0.240167,0.78299,0.348937,0.317071,0.184689,0.911335,0.177268,0.422457,0.313053,0.113591,0.483282,0.303592,0.50391,0.585396,0.657089,0.337758,0.256568,0.671739,0.569565,0.173271,0.616805,0.864376,0.45612,0.607787,0.293903,0.0518425,0.0245986,0.86077,0.92394,0.616338,0.53012,0.0356765,0.99045,0.414226,0.22878,0.629728,0.937349,0.753833,0.449824,0.184015,0.298363,0.380417,0.950944,0.0099507,0.679737,0.428867,0.95035,0.197618,0.495568,0.536344,0.143286,0.769054,0.821957,0.770135,0.615349,0.25507,0.426594,0.199635,0.782566,0.438039,0.260917,0.682842,0.246375,0.181155,0.934828,0.406996,0.422135,0.145886,0.456452,0.662773,0.528703,0.100662,0.398311,0.374184,0.265272,0.855424,0.796903,0.652711,0.166015,0.513288,0.207043,0.295146,0.317347,0.723909,0.356125,0.272689,0.717642,0.719677,0.874324,0.785061,0.977597,0.922147,0.785187,0.509157,0.12564,0.837285,0.452364,0.117864,0.992961,0.0638532,0.430578,0.495091,0.651322,0.855397,0.477072,0.944164,0.180016,0.711471,0.0415839,0.875283,0.887705,0.699083,0.0333306,0.195041,0.570118,0.922507,0.218458,0.974003,0.716645,0.19368,0.886803,0.430313,0.589817,0.646738,0.760563,0.963381,0.203561,0.92259,0.425834,0.053319,0.685971,0.419901,0.914599,0.325795,0.451044,0.58048,0.133831,0.853437,0.105202,0.899408,0.277799,0.744224,0.576676,0.407141,0.642308,0.236462,0.874722,0.345319,0.290181,0.45872,0.571676,0.574604,0.291148,0.893693,0.600995,0.51968,0.700577,0.0762441,0.972957,0.081598,0.420285,0.24106,0.302866,0.479001,0.812866,0.27683,0.396777,0.660347,0.529516,0.570406,0.169221,0.958643,0.592542,0.947141,0.0548397,0.262546,0.0570917,0.996638,0.296587,0.420633,0.748478,0.52326,0.191174,0.101326,0.654802,0.175937,0.595337,0.528406,0.174572,0.243349,0.67246,0.765307,0.575516,0.760897,0.294424,0.722155,0.879674,0.542024,0.3157,0.964294,0.165529,0.0971804,0.855105,0.586568,0.919773,0.894573,0.0857947,0.870994,0.790367,0.527353,0.0593549,0.846302,0.765135,0.0113176,0.928771,0.0483984,0.0573956,0.84454,0.906933,0.364657,0.32853,0.490388,0.0706939,0.896495,0.583654,0.889268,0.92892,0.639602,0.0513824,0.946451,0.485885,0.259142,0.660387,0.443562,0.685619,0.79312,0.970182,0.971861,0.28003,0.810504,0.795979,0.198,0.496381,0.568599,0.826902,0.677738,0.279095,0.274096,0.0829599,0.854819,0.0325744,0.299043,0.56539,0.29171,0.546978,0.625658,0.121704,0.795868,0.532364,0.313052,0.10977,0.647716,0.6835,0.549149,0.334247,0.23157,0.931101,0.971106,0.763268,0.981235,0.636972,0.488964,0.114421,0.663264,0.449827,0.666331,0.860541,0.94531,0.0659407,0.590911,0.438789,0.385647,0.818358,0.0321988,0.55088,0.149992,0.816877,0.235067,0.453553,0.115382,0.299175,0.673088,0.907494,0.915287,0.858226,0.380539,0.0515101,0.134739,0.717932,0.720683,0.683396,0.347104,0.590182,0.435264,0.0783222,0.877308,0.58703,0.769407,0.346796,0.830907,0.948383,0.0874135,0.572355,0.0614458,0.624772,0.924558,0.619652,0.165754,0.843539,0.0774764,0.363709,0.928502,0.452091,0.811711,0.624013,0.301582,0.33589,0.480659,0.116624,0.621504,0.366878,0.729179,0.590221,0.447665,0.709577,0.527157,0.67783,0.34335,0.377149,0.0554267,0.547376,0.154004,0.322784,0.578424,0.819265,0.886897,0.293989,0.147236,0.144084,0.671967,0.779614,0.190295,0.987906,0.947301,0.518297,0.0456546,0.817564,0.545235,0.273862,0.838191,0.584215,0.677361,0.948014,0.141721,0.846511,0.731114,0.129796,0.129794,0.120479,0.967202,0.246138,0.227785,0.385923,0.139654,0.339211,0.407176,0.00604802,0.753182,0.653781,0.0570869,0.0672339,0.346896,0.841188,0.449082,0.592256,0.447822,0.24632,0.313231,0.206167,0.82313,0.510052,0.682184,0.368749,0.391035,0.111595,0.832467,0.928245,0.249146,0.841182,0.261646,0.132202,0.247562,0.667008,0.817814,0.869755,0.265768,0.915838,0.771625,0.00109708,0.0442331,0.530536,0.518122,0.147132,0.21739,0.699163,0.28827,0.553849,0.527698,0.992432,0.425914,0.126255,0.752573,0.463962,0.561784,0.130663,0.376482,0.196145,0.711274,0.309708,0.715051,0.70053,0.537834,0.824259,0.535993,0.388391,0.354763,0.610967,0.463206,0.886634,0.534959,0.0882049,0.358549,0.650522,0.471659,0.193117,0.141399,0.473938,0.34273,0.907725,0.874988,0.798648,0.735475,0.191445,0.643076,0.806328,0.264539,0.375895,0.260386,0.546406,0.579317,0.342218,0.259927,0.978451,0.880094,0.730935,0.750375,0.6285,0.137862,0.516802,0.103436,0.393194,0.933525,0.718718,0.130669,0.859784,0.781637,0.516256,0.701219,0.34792,0.482469,0.686156,0.286126,0.208343,0.42181,0.889216,0.343071,0.856293,0.587269,0.0632367,0.199556,0.315519,0.249776,0.660814,0.379401,0.195865,0.189339,0.976173,0.834275,0.17121,0.518031,0.750974,0.221492,0.718393,0.164381,0.700252,0.893862,0.504975,0.972185,0.244888,0.295798,0.865763,0.710308,0.590872,0.370127,0.203177,0.0827143,0.0645878,0.17738,0.370926,0.844927,0.332937,0.401913,0.753599,0.09314,0.335021,0.590047,0.176903,0.0288578,0.0111008,0.882486,0.962496,0.0768222,0.598692,0.153542,0.826297,0.349632,0.36024,0.851099,0.927054,0.676363,0.585417,0.497854,0.19853,0.514406,0.593939,0.22381,0.752646,0.339012,0.665854,0.28596,0.849445,0.824463,0.19861,0.994217,0.188466,0.501137,0.681851,0.62975,0.13211,0.721267,0.979473,0.977299,0.1627,0.949908,0.243943,0.101629,0.95997,0.922774,0.638734,0.652638,0.343593,0.893792,0.0489352,0.344866,0.190756,0.474946,0.151554,0.419843,0.906723,0.691748,0.127275,0.759923,0.453067,0.408078,0.213769,0.865526,0.93845,0.276358,0.804516,0.400825,0.802957,0.249234,0.670042,0.442622,0.903837,0.806128,0.813564,0.52885,0.0594109,0.838552,0.144878,0.515463,0.78469,0.325437,0.48137,0.838139,0.307861,0.734519,0.00927883,0.729882,0.680157,0.203286,0.689741,0.69785,0.510493,0.0324762,0.074936,0.324345,0.0597606,0.102,0.455756,0.470604,0.407202,0.0277272,0.0215892,0.0897083,0.737098,0.809976,0.551847,0.890378,0.199905,0.511062,0.872447,0.855888,0.572185,0.0397304,0.282235,0.5941,0.362907,0.107643,|0.61097,0.512353,0.648816,0.428476,0.168393,0.523032,0.425228,0.322496,0.531203,0.877445,0.173704,0.842537,0.222348,0.725587,0.747662,0.164623,0.562772,0.625587,0.0905471,0.999675,0.695783,0.18892,0.375851,0.0201468,0.991046,0.119356,0.951603,0.812188,0.497384,0.0194132,0.937869,0.228254,0.64407,0.470165,0.763435,0.484597,0.629478,0.925469,0.481814,0.254747,0.207524,0.0276736,0.743,0.789122,0.646637,0.895059,0.967551,0.283258,0.0842198,0.492462,0.13345,0.229495,0.655359,0.302496,0.545273,0.713006,0.402292,0.791241,0.523444,0.816535,0.11553,0.643644,0.590225,0.0349383,0.402662,0.688918,0.592158,0.307485,0.94951,0.788181,0.0113987,0.0646167,0.30757,0.0150531,0.280015,0.846889,0.201408,0.88217,0.818944,0.960399,0.966874,0.34284,0.117939,0.488618,0.728368,0.408898,0.569303,0.143823,0.368564,0.838712,0.051691,0.180107,0.0259562,0.391876,0.845707,0.821942,0.131291,0.702923,0.373549,0.994098,0.697729,0.615527,0.113784,0.968827,0.365849,0.973826,0.255863,0.419023,0.00138158,0.0609665,0.849662,0.640509,0.539362,0.651893,0.971906,0.311157,0.436477,0.0787704,0.402643,0.993833,0.362404,0.923545,0.380941,0.107657,0.526417,0.525433,0.184364,0.625434,0.477074,0.223223,0.199132,0.388455,0.474487,0.910049,0.187211,0.239014,0.522425,0.249292,0.0187571,0.96176,0.777762,0.0681092,0.915895,0.588112,0.121177,0.448636,0.287279,0.244021,0.914636,0.182163,0.118796,0.96296,0.718635,0.0913051,0.267906,0.312658,0.756764,0.96763,0.155565,0.601204,0.120203,0.121745,0.819823,0.590969,0.888702,0.0811755,0.528382,0.0366827,0.931739,0.329037,0.655116,0.00145012,0.874149,0.58203,0.0793205,0.26089,0.146517,0.85004,0.511028,0.113484,0.224744,0.813665,0.102241,0.999635,0.371482,0.0473525,0.0109829,0.91934,0.169989,0.572954,0.757602,0.157171,0.233619,0.31723,0.208594,0.237733,0.216088,0.229339,0.611361,0.56002,0.829093,0.131934,0.547188,0.631039,0.958999,0.0298996,0.825023,0.139369,0.328626,0.8541,0.188888,0.740295,0.909475,0.897927,0.749577,0.302926,0.791671,0.828422,0.332076,0.0290604,0.416673,0.0136803,0.346756,0.176154,0.926925,0.991604,0.579949,0.93129,0.619218,0.480612,0.562583,0.568454,0.775831,0.704914,0.197997,0.289448,0.903511,0.0496144,0.975555,0.0895227,0.172954,0.59161,0.660572,0.875838,0.323402,0.0155252,0.912171,0.065106,0.139733,0.206235,0.634915,0.751648,0.798377,0.219431,0.903639,0.123375,0.491459,0.274774,0.74439,0.997739,0.068386,0.925361,0.645638,0.912947,0.426704,0.453109,0.850153,0.106673,0.273227,0.7683,0.435855,0.939192,0.806806,0.0504969,0.513619,0.215177,0.474246,0.921764,0.0308706,0.568245,0.507947,0.849162,0.75701,0.246069,0.297759,0.230956,0.24527,0.41411,0.836059,0.483772,0.372468,0.645718,0.819435,0.0231224,0.720586,0.144594,0.944746,0.198439,0.276805,0.706258,0.168327,0.540438,0.347432,0.0432616,0.208674,0.336998,0.37008,0.998169,0.737342,0.838049,0.139692,0.735242,0.0621071,0.0684284,0.278934,0.718411,0.116182,0.240887,0.88056,0.326321,0.249661,0.0927974,0.834897,0.297617,0.71506,0.449142,0.753338,0.767463,0.471913,0.210912,0.0924109,0.84731,0.729087,0.153412,0.379481,0.847687,0.233294,0.273005,0.76178,0.229622,0.468635,0.855292,0.651285,0.693194,0.250582,0.523382,0.108686,0.0901996,0.00481731,0.640962,0.801466,0.0424691,0.127291,0.187781,0.0298653,0.0390902,0.375708,0.60046,0.0399119,0.00649995,0.107871,0.761071,0.080274,0.341506,0.650265,0.610937,0.106107,0.462876,0.733536,0.182418,0.927051,0.17379,0.734646,0.173314,0.0547018,0.335765,0.868934,0.0128307,0.256651,0.904683,0.523602,0.483286,0.522638,0.948231,0.0817941,0.430814,0.803946,0.746875,0.34495,0.642436,0.140884,0.135669,0.310806,0.181542,0.0773213,0.0158139,0.67219,0.242954,0.38857,0.417265,0.890275,0.362221,0.192624,0.763365,0.00088805,0.545566,0.999802,0.095831,0.212372,0.872646,0.70297,0.521632,0.16038,0.11345,0.235876,0.821878,0.684958,0.853095,0.798077,0.187861,0.0168596,0.620016,0.108572,0.11544,0.0655112,0.0854677,0.179931,0.341057,0.91958,0.420334,0.193544,0.505513,0.0889632,0.211517,0.204473,0.201291,0.833364,0.427775,0.848395,0.912017,0.801012,0.992933,0.10544,0.110235,0.0590678,0.663943,0.315061,0.788958,0.822524,0.988067,0.193875,0.923396,0.598538,0.416348,0.349984,0.545024,0.811771,0.435222,0.852577,0.981767,0.955227,0.961896,0.440959,0.970796,0.553106,0.376861,0.529443,0.286716,0.958535,0.129079,0.634054,0.204279,0.728074,0.51061,0.584815,0.800258,0.856759,0.459867,0.998782,0.413593,0.576992,0.217316,0.414472,0.224994,0.349462,0.564761,0.673431,0.758215,0.562622,0.00200772,0.345774,0.700303,0.678388,0.78336,0.44882,0.328462,0.301466,0.00639057,0.449266,0.182,0.615597,0.756908,0.220823,0.749477,0.0947621,0.709295,0.524554,0.97744,0.557404,0.0621495,0.931072,0.888758,0.553551,0.419789,0.319286,0.0102417,0.83886,0.586897,0.922649,0.208538,0.905576,0.039045,0.53973,0.879222,0.206456,0.0915568,0.741882,0.264721,0.889185,0.677425,0.420833,0.335283,0.137603,0.867083,0.595502,0.291888,0.695824,0.455589,0.731345,0.260948,0.00639832,0.586083,0.401192,0.957318,0.915322,0.251197,0.993894,0.0166368,0.310098,0.569657,0.122928,0.0307699,0.548801,0.916714,0.0888529,0.674163,0.516818,0.242466,0.975508,0.789252,0.889519,0.915057,0.593013,0.433563,0.272653,0.740798,0.335722,0.786845,0.941289,0.200271,0.733895,0.217064,0.709743,0.978281,0.669926,0.878981,0.612822,0.888887,0.0306287,0.0450256,0.479427,0.38967,0.944022,0.108557,0.773667,0.438206,0.744896,0.531394,0.23177,0.305087,0.263929,0.415808,0.639122,0.570479,0.983038,0.260228,0.670379,0.454174,0.324067,0.971273,0.31173,0.54539,0.343259,0.600983,0.923078,0.609489,0.268616,0.330093,0.291604,0.240574,0.081965,0.437616,0.877898,0.0493966,0.0955232,0.914583,0.0463454,0.904893,0.188726,0.278539,0.883004,0.736999,0.994591,0.981165,0.178803,0.484887,0.716176,0.0310885,0.147031,0.41854,0.987052,0.113714,0.187375,0.902003,0.0891732,0.0416344,0.424032,0.608218,0.626128,0.362242,0.125998,0.729766,0.523991,0.0272953,0.709009,0.156959,0.884483,0.0967662,0.130057,0.85599,0.751711,0.934202,0.558435,0.833251,0.74228,0.581529,0.91468,0.302821,0.214808,0.165148,0.616409,0.679156,0.893515,0.731086,0.588512,0.424727,0.178914,0.213769,0.254343,0.594496,0.106027,0.18792,0.900909,0.132516,0.463686,0.848302,0.340527,0.163446,0.155204,0.272554,0.236266,0.0791577,0.311923,0.64023,0.447262,0.940968,0.619494,0.247731,0.515631,0.656732,0.617169,0.922962,0.384283,0.759266,0.351108,0.902898,0.0145605,0.705417,0.522137,0.742063,0.171372,0.431652,0.170235,0.932871,0.445209,0.625323,0.954735,0.369915,0.0400606,0.250042,0.341975,0.712688,0.121275,0.186397,0.88246,0.0202385,0.60885,0.567277,0.0524331,0.559547,0.806941,0.356492,0.0405911,0.165968,0.398188,0.421015,0.710496,0.610251,0.473575,0.0861093,0.668272,0.959047,0.945918,0.0381663,0.829111,0.697164,0.448991,0.455656,0.771971,0.74562,0.863152,0.308343,0.281321,0.5745,0.115927,0.403933,0.351409,0.654699,0.889223,0.666657,0.684304,0.101389,0.294976,0.0812374,0.392224,0.770071,0.414639,0.513724,0.214243,0.207193,0.890074,0.67566,0.723413,0.427858,0.18359,0.863758,0.614701,0.39357,0.452083,0.210056,0.532679,0.332886,0.586924,0.866106,0.814226,0.881319,0.00837767,0.850551,0.654004,0.431803,0.446091,0.53923,0.899159,0.205859,0.791647,0.113516,0.405831,0.263047,0.668618,0.340714,0.603255,0.850499,0.889104,0.968127,0.763541,0.966373,0.575516,0.119803,0.343192,0.189212,0.98174,0.472734,0.880301,0.0719265,0.190048,0.616697,0.6284,0.216392,0.397092,0.735547,0.333433,0.305549,0.589498,0.182249,0.784519,0.453345,0.0177507,0.330529,0.032188,0.116898,0.567753,0.905473,0.148174,0.291112,0.306786,0.69503,0.657711,0.836554,0.154849,0.252186,0.557405,0.591453,0.569531,0.0347046,0.180371,0.567083,0.175404,0.407446,0.0301515,0.0356677,0.0987441,0.709305,0.850469,0.11805,0.904105,0.119926,0.716032,0.285774,0.753879,0.995401,0.210589,0.529724,0.525872,0.437059,0.478853,0.0629483,0.426002,0.789186,0.510345,0.864278,0.0590951,0.107272,0.530301,0.537006,0.855715,0.890399,0.890631,0.695243,0.412111,0.50143,0.241127,0.234539,0.559941,0.959088,0.607301,0.498783,0.803281,0.553474,0.900042,0.928512,0.596969,0.892186,0.924449,0.129564,0.723731,0.930411,0.851343,0.977401,0.0725034,0.104051,0.356668,0.20126,0.558974,0.148658,0.297024,0.49622,0.512704,0.747971,0.767562,0.657107,0.529264,0.246677,0.912579,0.334552,0.421172,0.883302,0.868338,0.00892782,0.41869,0.430072,0.31842,0.379002,0.021405,0.952988,0.956351,0.464196,0.995596,0.699537,0.577731,0.646639,0.553241,0.246084,0.285415,0.449867,0.457247,0.774069,0.735862,0.53692,0.680422,0.206289,0.700027,0.284479,0.920572,0.636072,0.133412,0.853155,0.0738117,0.458703,0.615405,0.77974,0.224199,0.414679,0.456359,0.309577,0.852986,0.983973,0.513668,0.202547,0.744166,0.14753,0.490448,0.834138,0.872586,0.571804,0.0981311,0.103201,0.580786,0.949897,0.372394,0.334153,0.614317,0.153966,0.296391,0.0522364,0.530747,0.299267,0.818379,0.560198,0.034585,0.0975535,0.311847,0.688171,0.973224,0.447348,0.628007,0.627084,0.778394,0.693279,0.7608,0.945798,0.184776,0.30832,0.579576,0.666924,0.80732,0.291627,0.092617,0.333673,0.732749,0.201114,0.201235,0.0528539,0.538573,0.510621,0.808148,0.817462,0.303059,0.418929,0.268504,0.308887,|0.126941,0.812232,0.724204,0.608714,0.499684,0.202242,0.43315,0.763745,0.823371,0.294975,0.54532,0.667472,0.955715,0.456713,0.976908,0.574986,0.830112,0.0567995,0.112383,0.586299,0.448364,0.80523,0.496608,0.011105,0.719102,0.651894,0.793419,0.846276,0.52522,0.11141,0.809961,0.331385,0.214463,0.462559,0.783401,0.871568,0.856936,0.370513,0.89845,0.564997,0.241794,0.741697,0.854841,0.865798,0.226934,0.378371,0.479544,0.378385,0.566708,0.12303,0.939013,0.833991,0.613411,0.324845,0.249992,0.137546,0.88166,0.860073,0.702779,0.945256,0.97067,0.446485,0.922159,0.163433,0.761538,0.324464,0.345881,0.930491,0.241124,0.271445,0.846844,0.159083,0.00659841,0.672642,0.688134,0.473536,0.244576,0.695247,0.40982,0.793123,0.59729,0.787587,0.761521,0.797341,0.681977,0.206212,0.827689,0.861386,0.283105,0.616818,0.216293,0.167434,0.572409,0.156088,0.232727,0.726703,0.0192953,0.441691,0.512915,0.225723,0.4222,0.258433,0.635697,0.512556,0.516545,0.211695,0.952518,0.246,0.920812,0.860635,0.0838848,0.898051,0.166815,0.432586,0.529201,0.717764,0.401925,0.636312,0.123425,0.939577,0.057338,0.768212,0.673586,0.198752,0.553793,0.338346,0.854598,0.820759,0.115583,0.215162,0.0179471,0.884714,0.522379,0.198438,0.496082,0.204558,0.684615,0.632807,0.882241,0.645341,0.791243,0.89963,0.301831,0.132504,0.784728,0.616371,0.0031805,0.800275,0.0441523,0.0834252,0.263278,0.793596,0.724042,0.663123,0.825388,0.323359,0.0186938,0.88123,0.0886651,0.918629,0.0478726,0.704965,0.913834,0.916664,0.805303,0.21742,0.696782,0.198291,0.591195,0.590644,0.941486,0.571272,0.743616,0.776188,0.787466,0.739491,0.15601,0.355179,0.429115,0.189392,0.701838,0.400134,0.322221,0.388446,0.306064,0.346925,0.697012,0.275653,0.0342942,0.859445,0.295438,0.949915,0.969838,0.308861,0.916619,0.219381,0.493759,0.721948,0.879497,0.260082,0.63509,0.540912,0.0325038,0.072873,0.3002,0.263758,0.583835,0.588597,0.0953951,0.761544,0.995678,0.347278,0.431898,0.9211,0.463963,0.110685,0.852097,0.813955,0.0463406,0.597095,0.517265,0.201806,0.802035,0.770714,0.623912,0.634984,0.491123,0.516691,0.142384,0.0290735,0.0376341,0.87411,0.725923,0.301816,0.179534,0.699239,0.158232,0.759218,0.784626,0.464598,0.960879,0.611324,0.523354,0.283771,0.835416,0.956051,0.128728,0.574572,0.787984,0.875497,0.431442,0.7648,0.834094,0.544239,0.727706,0.284541,0.720367,0.26655,0.751582,0.663947,0.926315,0.49188,0.213846,0.113769,0.276305,0.327549,0.529426,0.348676,0.292579,0.730383,0.385994,0.0674723,0.845341,0.589446,0.267999,0.308723,0.834229,0.480458,0.556803,0.724762,0.787019,0.321614,0.0951044,0.242568,0.337997,0.0220955,0.470472,0.614713,0.0382902,0.822368,0.360017,0.939721,0.803829,0.883024,0.6077,0.663516,0.623845,0.0730647,0.582659,0.364133,0.827196,0.0594351,0.379147,0.650161,0.249367,0.180822,0.0063383,0.77137,0.610277,0.22658,0.196243,0.134683,0.963131,0.0367889,0.17369,0.585218,0.00864106,0.496911,0.657805,0.692532,0.211002,0.892446,0.300452,0.110207,0.186192,0.570568,0.558921,0.0399656,0.669901,0.63533,0.101787,0.548377,0.241539,0.79837,0.310961,0.348688,0.58987,0.207054,0.065941,0.831718,0.192851,0.322297,0.570157,0.568037,0.792675,0.915482,0.892765,0.82113,0.0551541,0.190528,0.7118,0.328676,0.605252,0.0833357,0.74652,0.450494,0.0461408,0.513785,0.477617,0.406684,0.774459,0.448679,0.0681177,0.796073,0.808597,0.0517235,0.390362,0.514341,0.0102056,0.974802,0.483255,0.328655,0.263868,0.907078,0.165776,0.629752,0.779268,0.812504,0.85279,0.635647,0.668824,0.106356,0.824685,0.567874,0.566973,0.823147,0.986514,0.66586,0.39847,0.201784,0.286125,0.908312,0.58724,0.678735,0.314296,0.521347,0.365122,0.460709,0.387889,0.322844,0.832438,0.41377,0.742517,0.592442,0.540077,0.444444,0.971639,0.0124694,0.716269,0.196071,0.347087,0.199846,0.312344,0.185793,0.723554,0.378641,0.335365,0.0865915,0.505191,0.631864,0.20603,0.684145,0.919335,0.605165,0.661248,0.0434244,0.189024,0.293423,0.318178,0.100621,0.981375,0.182541,0.621798,0.20582,0.341305,0.489113,0.853141,0.121271,0.330829,0.323699,0.807144,0.422553,0.839864,0.547205,0.180321,0.275093,0.453514,0.414273,0.567289,0.238746,0.196474,0.313343,0.539018,0.0784321,0.184118,0.651487,0.456574,0.641681,0.949191,0.145612,0.257694,0.981091,0.948642,0.0367332,0.796861,0.462843,0.686208,0.32372,0.163446,0.667038,0.400549,0.056792,0.894269,0.00139159,0.290926,0.963068,0.730994,0.884864,0.794717,0.56367,0.928002,0.692868,0.345723,0.258501,0.74127,0.141356,0.705768,0.450771,0.252487,0.0267068,0.109052,0.498889,0.0457841,0.679145,0.488642,0.3296,0.514873,0.476212,0.680675,0.166114,0.658623,0.566899,0.469621,0.566274,0.130397,0.970448,0.216502,0.305425,0.796618,0.369296,0.995333,0.395239,0.146709,0.552995,0.22994,0.63142,0.0733542,0.0760269,0.535212,0.361808,0.441032,0.641466,0.961221,0.29704,0.564193,0.0635797,0.753577,0.920221,0.593362,0.940085,0.381378,0.682726,0.282299,0.703342,0.756235,0.646485,0.138889,0.149938,0.243081,0.786519,0.124508,0.72885,0.0887422,0.325413,0.391694,0.679126,0.635372,0.911825,0.990876,0.680517,0.931805,0.894024,0.755848,0.214054,0.430174,0.0182153,0.384036,0.613563,0.812711,0.438373,0.5862,0.25748,0.360235,0.491288,0.204501,0.203703,0.14396,0.827904,0.752738,0.706187,0.981802,0.343761,0.379803,0.875477,0.708839,0.579343,0.247832,0.341164,0.651033,0.642083,0.962723,0.125019,0.601556,0.519826,0.410655,0.250646,0.230051,0.776046,0.213888,0.777038,0.744787,0.906377,0.0466567,0.661007,0.211385,0.789108,0.0803483,0.803288,0.805658,0.195965,0.815765,0.335461,0.298923,0.347281,0.174557,0.187129,0.25003,0.460023,0.243987,0.42424,0.0525107,0.17049,0.935605,0.844979,0.345792,0.114015,0.230414,0.395501,0.88034,0.0374653,0.373279,0.853656,0.87164,0.942181,0.673498,0.615574,0.418533,0.226245,0.581467,0.205401,0.680101,0.218648,0.712433,0.886744,0.249941,0.0945676,0.516829,0.167783,0.198131,0.655736,0.708188,0.648816,0.311032,0.119888,0.683297,0.581754,0.474783,0.304037,0.580535,0.722892,0.764856,0.135706,0.705625,0.0942045,0.0649664,0.437402,0.916335,0.777442,0.896689,0.665819,0.631916,0.0772386,0.305367,0.269653,0.500752,0.519941,0.565486,0.844408,0.168088,0.823104,0.732512,0.621146,0.0867434,0.526718,0.0816723,0.348868,0.681003,0.194088,0.474356,0.990834,0.077098,0.318941,0.68697,0.627573,0.00624925,0.350932,0.467344,0.0441565,0.867531,0.926358,0.54375,0.668804,0.926534,0.727231,0.656863,0.35189,0.605935,0.0180883,0.184928,0.648797,0.165518,0.261677,0.290899,0.338302,0.816215,0.322357,0.970141,0.858043,0.209141,0.309053,0.554549,0.265688,0.309261,0.763968,0.570617,0.333507,0.47254,0.684696,0.437479,0.61867,0.437158,0.550457,0.661228,0.235081,0.884526,0.591496,0.898483,0.295062,0.5226,0.533369,0.909085,0.262551,0.96124,0.403499,0.194584,0.838787,0.596221,0.200738,0.844742,0.0398324,0.913705,0.228587,0.605402,0.46581,0.166969,0.854852,0.960455,0.985594,0.569736,0.372316,0.789723,0.537439,0.791222,0.226181,0.880892,0.153351,0.033178,0.0673904,0.370149,0.0199782,0.910767,0.329281,0.061317,0.082381,0.218366,0.82055,0.733058,0.469798,0.101727,0.166236,0.414455,0.0610294,0.977486,0.469385,0.792164,0.729593,0.626005,0.21894,0.83322,0.694236,0.161426,0.961832,0.121877,0.234456,0.0296593,0.0035755,0.369776,0.90101,0.517428,0.54323,0.0720373,0.605799,0.938597,0.271191,0.144162,0.820467,0.855961,0.380295,0.219231,0.801852,0.792114,0.693413,0.57381,0.626849,0.160975,0.432145,0.750062,0.169066,0.676548,0.336299,0.851702,0.627122,0.240264,0.550675,0.220537,0.420719,0.00657523,0.482616,0.0225759,0.423705,0.700948,0.619787,0.779738,0.979965,0.100917,0.446236,0.307395,0.13112,0.151481,0.251323,0.8299,0.782194,0.269595,0.362141,0.298626,0.409856,0.224095,0.283199,0.362791,0.749111,0.739669,0.410565,0.222156,0.96842,0.171562,0.644989,0.344931,0.408412,0.211121,0.951092,0.412252,0.197698,0.675051,0.160672,0.157804,0.778278,0.172429,0.995807,0.548952,0.128343,0.388364,0.681041,0.952808,0.502532,0.390975,0.558022,0.0987577,0.128188,0.150472,0.254334,0.923703,0.436497,0.66647,0.40806,0.443676,0.967343,0.50959,0.510277,0.112465,0.561286,0.853965,0.960906,0.913454,0.890364,0.315122,0.0347711,0.528629,0.789893,0.465751,0.980462,0.429863,0.0720111,0.814495,0.309942,0.973128,0.687923,0.274155,0.72909,0.857905,0.684264,0.428962,0.110015,0.759259,0.513831,0.421882,0.766524,0.556652,0.239834,0.445443,0.608969,0.65612,0.582496,0.431094,0.740191,0.593562,0.482118,0.760223,0.587306,0.445607,0.949859,0.301714,0.850592,0.738768,0.827228,0.544595,0.721166,0.706412,0.549987,0.653141,0.690544,0.909625,0.648919,0.0570736,0.0695232,0.636737,0.0995979,0.918774,0.618194,0.861091,0.364913,0.611777,0.871453,0.835821,0.237885,0.603766,0.136789,0.594294,0.387632,0.654069,0.962293,0.634313,0.199978,0.848363,0.162743,0.770514,0.110422,0.446563,0.460165,0.771071,0.221049,0.922346,0.489654,0.281198,0.894017,0.674437,0.382267,0.990217,0.554794,0.355637,0.486626,0.859549,0.904265,0.938458,0.776876,0.549923,0.454137,0.482657,0.385342,0.0985678,0.885703,0.293078,0.0359416,0.0239096,0.342947,0.461787,0.208038,0.697598,0.438405,0.0731881,0.40477,0.461048,0.648567,0.85816,0.211637,0.652712,0.215151,0.895176,0.208735,0.351307,0.440162,|0.119918,0.772931,0.0134691,0.479381,0.091508,0.343193,0.132103,0.347306,0.905782,0.974494,0.797748,0.599945,0.804347,0.252202,0.39258,0.187608,0.600648,0.178842,0.757285,0.89608,0.701068,0.493149,0.204172,0.713001,0.631877,0.0986097,0.0827323,0.0394206,0.695194,0.967747,0.212964,0.445019,0.228677,0.0817254,0.191303,0.799842,0.0921711,0.385078,0.384378,0.689169,0.0208005,0.6575,0.142427,0.170531,0.0915731,0.0476962,0.382367,0.662812,0.365071,0.394227,0.025899,0.377768,0.127086,0.416706,0.774825,0.597892,0.349513,0.939083,0.546191,0.291417,0.560803,0.562019,0.372733,0.344032,0.756235,0.534527,0.819467,0.739065,0.106151,0.488486,0.287901,0.626913,0.621486,0.333866,0.448377,0.269668,0.1566,0.424722,0.433272,0.643868,0.634286,0.752223,0.227671,0.792429,0.293107,0.0749205,0.657742,0.571103,0.667098,0.493083,0.323621,0.587353,0.613313,0.55417,0.66081,0.553242,0.950671,0.795526,0.470316,0.818782,0.0918263,0.273782,0.764871,0.350964,0.596535,0.771105,0.651015,0.611786,0.560725,0.69628,0.714456,0.820496,0.914739,0.203415,0.963709,0.260314,0.697919,0.562991,0.966317,0.343359,0.575878,0.583051,0.497774,0.807676,0.819009,0.756084,0.708434,0.0252633,0.906067,0.731655,0.693403,0.457142,0.780364,0.278335,0.548679,0.168484,0.917096,0.671376,0.814043,0.425407,0.708473,0.995789,0.445792,0.754158,0.430358,0.0783658,0.0972057,0.866713,0.92666,0.946242,0.152498,0.0146364,0.633747,0.616441,0.361835,0.752644,0.671297,0.517791,0.74149,0.475542,0.633267,0.0813457,0.5537,0.297918,0.318105,0.772156,0.333641,0.689529,0.547033,0.440163,0.369979,0.292888,0.468486,0.935486,0.241074,0.314779,0.707601,0.797694,0.973533,0.485193,0.774728,0.771629,0.0036909,0.435786,0.0653664,0.911481,0.945896,0.739251,0.295622,0.922066,0.30237,0.780987,0.380961,0.300573,0.519413,0.457084,0.201052,0.85727,0.854314,0.754589,0.158919,0.219547,0.280509,0.356477,0.445495,0.861198,0.951571,0.942787,0.0285235,0.90704,0.426036,0.173525,0.391835,0.460771,0.406653,0.366054,0.42153,0.435413,0.955212,0.810102,0.842227,0.663996,0.745614,0.208741,0.497489,0.831881,0.829585,0.0534272,0.242002,0.101457,0.180597,0.708052,0.285584,0.538701,0.275852,0.648383,0.800247,0.631906,0.895611,0.488535,0.228125,0.109256,0.246463,0.83826,0.708219,0.419511,0.434542,0.980348,0.0931752,0.850371,0.18246,0.281313,0.67604,0.774144,0.75304,0.711666,0.862363,0.859506,0.26122,0.327153,0.187726,0.999184,0.206996,0.421354,0.857488,0.323355,0.317899,0.0915948,0.741479,0.948607,0.376095,0.957336,0.212639,0.586256,0.902752,0.107077,0.354827,0.698191,0.529869,0.294071,0.341996,0.592248,0.0504881,0.738918,0.800641,0.263717,0.496159,0.993497,0.993205,0.309144,0.458306,0.473858,0.687648,0.0668935,0.15307,0.944753,0.772506,0.937228,0.854192,0.952113,0.97348,0.870165,0.484457,0.111892,0.894023,0.736829,0.746835,0.361549,0.837034,0.810519,0.666528,0.104443,0.694078,0.685785,0.137123,0.50805,0.259896,0.49098,0.189329,0.235528,0.909754,0.353711,0.163786,0.628349,0.94601,0.755439,0.193031,0.640333,0.356381,0.563201,0.587635,0.263614,0.798546,0.841122,0.738627,0.0287816,0.711702,0.918065,0.903968,0.850171,0.344327,0.495394,0.569219,0.435023,0.0279917,0.226006,0.281293,0.740129,0.434136,0.826861,0.0855724,0.545855,0.186948,0.162385,0.680755,0.289973,0.270818,0.701844,0.399627,0.972971,0.916918,0.135431,0.601003,0.406437,0.169591,0.823112,0.971467,0.770503,0.181108,0.405581,0.106528,0.880912,0.565585,0.438787,0.718721,0.0621043,0.897532,0.809213,0.0485911,0.280339,0.738117,0.833344,0.707571,0.960102,0.466307,0.492649,0.28436,0.133483,0.571268,0.324053,0.0774464,0.901873,0.519031,0.46598,0.829442,0.57134,0.224263,0.660086,0.0294979,0.927072,0.819324,0.689446,0.324736,0.908865,0.605582,0.616959,0.677596,0.308201,0.892033,0.083146,0.795945,0.345867,0.903856,0.902734,0.698169,0.309791,0.199479,0.702753,0.81887,0.230449,0.300529,0.0441243,0.232012,0.756267,0.527688,0.906655,0.199493,0.582446,0.734226,0.304917,0.15528,0.781822,0.900126,0.726485,0.745404,0.340361,0.208205,0.210001,0.170173,0.947245,0.461355,0.933943,0.233383,0.648199,0.227985,0.552724,0.497778,0.303317,0.904211,0.155128,0.975877,0.242966,0.196346,0.533782,0.757689,0.803455,0.608772,0.87422,0.651656,0.711707,0.805778,0.801837,0.243251,0.74211,0.785348,0.433956,0.75162,0.792054,0.653089,0.868335,0.01292,0.535234,0.875013,0.912909,0.989088,0.0362751,0.805881,0.959175,0.299748,0.852124,0.604585,0.298539,0.28982,0.193853,0.84958,0.943437,0.852497,0.0302327,0.583286,0.537183,0.575899,0.253008,0.100233,0.759934,0.825913,0.840921,0.227687,0.994951,0.763672,0.671389,0.822761,0.558534,0.535312,0.111582,0.447491,0.738463,0.707235,0.500868,0.363443,0.701936,0.333122,0.457804,0.806017,0.974693,0.724245,0.587717,0.458035,0.721834,0.148458,0.0529876,0.922546,0.725963,0.0423007,0.78695,0.835308,0.0624695,0.553023,0.148581,0.514571,0.336279,0.877653,0.400648,0.653593,0.113518,0.415401,0.441057,0.829101,0.0113667,0.987186,0.971044,0.393094,0.110182,0.417885,0.715887,0.724511,0.727341,0.331841,0.82741,0.411048,0.930421,0.775131,0.546211,0.988158,0.947778,0.660083,0.657513,0.925914,0.964281,0.438237,0.357452,0.204253,0.212053,0.372447,0.209371,0.858204,0.414783,0.36827,0.00145864,0.328048,0.147446,0.0924374,0.27097,0.168994,0.434215,0.0532265,0.561274,0.148613,0.0403792,0.846714,0.171983,0.460076,0.594502,0.218723,0.77393,0.721177,0.410806,0.615104,0.702188,0.704897,0.948062,0.0522848,0.449082,0.612763,0.483992,0.190024,0.244589,0.112683,0.299043,0.166178,0.0456375,0.370412,0.593278,0.69781,0.168044,0.331944,0.0156049,0.0978629,0.132775,0.780921,0.0661696,0.226567,0.188314,0.262023,0.426956,0.164009,0.611358,0.299847,0.331004,0.715342,0.101313,0.260842,0.52585,0.650835,0.266617,0.943223,0.776969,0.654856,0.198214,0.933982,0.785036,0.279008,0.881636,0.0853775,0.205605,0.832486,0.155638,0.240544,0.738792,0.349196,0.816828,0.812602,0.782975,0.726882,0.0729824,0.830275,0.489155,0.53973,0.764135,0.888757,0.981295,0.113965,0.932936,0.77541,0.711845,0.650118,0.263778,0.998926,0.722323,0.294214,0.521753,0.721153,0.103314,0.742528,0.362788,0.597088,0.790628,0.945065,0.305051,0.190449,0.609461,0.73348,0.349766,0.368431,0.467884,0.0822671,0.351283,0.781945,0.703884,0.438233,0.749785,0.319132,0.652986,0.785798,0.784734,0.728162,0.895941,0.217338,0.5772,0.827924,0.214164,0.502746,0.153744,0.845239,0.388861,0.282494,0.753226,0.931953,0.849839,0.474138,0.828932,0.291113,0.199199,0.0880727,0.467703,0.717455,0.457315,0.907001,0.594443,0.826851,0.67986,0.215968,0.740003,0.355384,0.00567102,0.25095,0.748807,0.656914,0.622132,0.0731761,0.121434,0.81627,0.289751,0.831854,0.368329,0.428806,0.365334,0.692406,0.848351,0.116661,0.796953,0.613665,0.333879,0.0864588,0.130183,0.82411,0.466807,0.107885,0.66999,0.476556,0.746984,0.920029,0.291148,0.932399,0.448847,0.614859,0.926277,0.759821,0.852898,0.75484,0.365824,0.477001,0.127571,0.257711,0.24535,0.136988,0.260374,0.0204809,0.142746,0.906759,0.439694,0.961745,0.806442,0.880795,0.108185,0.780231,0.176401,0.896371,0.74702,0.166609,0.0376041,0.737437,0.994221,0.222457,0.46787,0.24614,0.925386,0.791306,0.22066,0.759525,0.338123,0.5163,0.479992,0.00874138,0.985054,0.0552119,0.344835,0.286376,0.072009,0.113822,0.607219,0.485494,0.395582,0.0332722,0.264875,0.0140917,0.146208,0.135797,0.00495493,0.983597,0.183553,0.0766872,0.292005,0.0983022,0.302294,0.889194,0.503837,0.616412,0.590287,0.81672,0.888662,0.689458,0.671623,0.951368,0.12846,0.805139,0.872617,0.574518,0.0620183,0.495558,0.108835,0.978117,0.0545344,0.0984316,0.236292,0.0255359,0.102447,0.32961,0.790469,0.618605,0.847102,0.870334,0.941441,0.792862,0.843331,0.151482,0.740555,0.745447,0.956188,0.936793,0.304707,0.202788,0.231206,0.276468,0.296177,0.758838,0.613813,0.0366656,0.784122,0.560336,0.994469,0.992635,0.0740584,0.820145,0.334605,0.842258,0.234352,0.451224,0.377374,0.328449,0.937723,0.844025,0.237412,0.501359,0.591377,0.189231,0.566006,0.513444,0.144361,0.959968,0.581875,0.861608,0.869588,0.773283,0.598416,0.332052,0.120426,0.417346,0.0248462,0.532658,0.329485,0.607104,0.344009,0.864791,0.741789,0.0443817,0.287052,0.762055,0.516302,0.86826,0.398081,0.913937,0.63658,0.0140554,0.794831,0.338988,0.310384,0.700402,0.929112,0.117215,0.871176,0.237617,0.734869,0.413593,0.828089,0.595037,0.108677,0.465709,0.381872,0.763454,0.891022,0.843262,0.352138,0.283994,0.308206,0.38384,0.766712,0.318995,0.891225,0.43119,0.0376424,0.14404,0.193157,0.731801,0.563355,0.360749,0.297825,0.186396,0.782433,0.12751,0.461796,0.354456,0.705387,0.592711,0.316754,0.517832,0.127165,0.0999173,0.667377,0.394204,0.455449,0.590358,0.977001,0.476923,0.964332,0.734444,0.710913,0.956937,0.371709,0.81546,0.165226,0.69806,0.757001,0.337124,0.409242,0.514102,0.137421,0.922621,0.548276,0.0105901,0.32111,0.523403,0.000518203,0.659316,0.986994,0.917291,0.369298,0.543946,0.096728,0.708297,0.323701,0.174813,0.434479,0.319594,0.060059,0.0640808,0.196405,0.505508,0.55577,0.565407,0.884559,0.572325,0.847848,0.305535,0.781614,0.47155,0.765479,0.264319,0.717559,0.493954,0.76605,0.196324,0.893774,0.0337207,0.46638,0.647013,0.883859,0.819666,0.325784,0.440358,0.733014,|0.353006,0.345445,0.488248,0.352867,0.728845,0.594987,0.100394,0.0141827,0.531175,0.28634,0.986909,0.931214,0.577393,0.235961,0.321041,0.858056,0.825418,0.899938,0.222746,0.392875,0.21652,0.834966,0.699154,0.739244,0.466882,0.748736,0.661214,0.977541,0.804937,0.0935444,0.542448,0.585247,0.543532,0.0425326,0.0397404,0.867559,0.900331,0.69008,0.512128,0.976989,0.795281,0.798126,0.720879,0.827468,0.770645,0.343352,0.528904,0.989415,0.0449332,0.841251,0.867653,0.622171,0.230284,0.980554,0.537207,0.542226,0.52323,0.682942,0.0125746,0.792168,0.411623,0.801531,0.472336,0.588856,0.669259,0.616064,0.0962708,0.275996,0.0821081,0.530235,0.274127,0.489314,0.483873,0.564994,0.141931,0.825791,0.746523,0.217368,0.965776,0.21164,0.444343,0.492697,0.650298,0.73686,0.154424,0.736228,0.716747,0.625391,0.791923,0.528809,0.84618,0.0247065,0.0278704,0.817599,0.951114,0.596572,0.168197,0.218445,0.0949904,0.943564,0.318773,0.81509,0.270711,0.286348,0.588154,0.725483,0.239881,0.563755,0.0462547,0.132889,0.580853,0.284998,0.889892,0.0558233,0.311794,0.909949,0.581702,0.973516,0.940845,0.121365,0.574583,0.385439,0.831864,0.975123,0.450103,0.802269,0.423732,0.130062,0.614489,0.945204,0.883717,0.626214,0.972075,0.105568,0.0570214,0.660504,0.953251,0.234844,0.663037,0.111237,0.470953,0.774344,0.0035342,0.694135,0.0672592,0.420237,0.844579,0.0811751,0.540787,0.316845,0.319558,0.577462,0.912226,0.778787,0.784175,0.573696,0.742537,0.116225,0.373083,0.13218,0.0719134,0.45467,0.988261,0.74239,0.53595,0.796038,0.747405,0.0757642,0.698379,0.286245,0.188499,0.857342,0.524635,0.897026,0.833659,0.41539,0.350535,0.177246,0.27544,0.383645,0.0566467,0.57777,0.542966,0.186757,0.203376,0.312248,0.0269417,0.692411,0.300637,0.593615,0.680451,0.926475,0.963997,0.499399,0.401958,0.928075,0.917151,0.056786,0.902945,0.452037,0.759036,0.339714,0.31121,0.159502,0.870351,0.475449,0.0670525,0.903707,0.698089,0.299724,0.219726,0.552355,0.303607,0.0492825,0.446597,0.650838,0.0186994,0.401434,0.094615,0.0425963,0.32132,0.428033,0.0815389,0.651722,0.875876,0.805499,0.23379,0.953942,0.645613,0.62112,0.494066,0.504374,0.448304,0.163843,0.367546,0.523857,0.253905,0.404111,0.12987,0.245487,0.321521,0.568449,0.555948,0.999588,0.717926,0.0151551,0.768457,0.211351,0.497441,0.0160002,0.429973,0.791991,0.345304,0.933622,0.530552,0.357516,0.958724,0.801461,0.551712,0.313365,0.625819,0.612876,0.944233,0.342624,0.0994585,0.952589,0.56568,0.323002,0.227448,0.795547,0.327729,0.756314,0.809016,0.896484,0.571707,0.677193,0.718497,0.486769,0.562451,0.657443,0.1478,0.490304,0.765223,0.432475,0.496716,0.568924,0.0525153,0.329175,0.185303,0.187731,0.0435636,0.196971,0.0369872,0.286839,0.464245,0.561876,0.829755,0.190504,0.479027,0.104108,0.809553,0.801775,0.0136068,0.296225,0.742481,0.492629,0.782957,0.346577,0.144163,0.975589,0.47454,0.264018,0.198246,0.222342,0.709192,0.761136,0.780058,0.725347,0.782138,0.804376,0.411669,0.292256,0.85658,0.649443,0.725913,0.402984,0.456068,0.723948,0.10031,0.498885,0.788094,0.161084,0.240345,0.0578594,0.383358,0.611078,0.427483,0.587792,0.27613,0.411151,0.250393,0.567028,0.600756,0.420142,0.138669,0.402747,0.876437,0.940189,0.672165,0.664255,0.962774,0.557712,0.137059,0.760576,0.745654,0.520541,0.153053,0.726438,0.868633,0.63044,0.318153,0.78471,0.760598,0.452135,0.478421,0.423943,0.311541,0.237821,0.770688,0.589376,0.875434,0.314898,0.472361,0.755507,0.375931,0.954294,0.498975,0.723457,0.316584,0.563304,0.42252,0.176831,0.825882,0.713906,0.597235,0.27827,0.637356,0.973142,0.215526,0.942471,0.0215034,0.893027,0.24222,0.367009,0.697696,0.599913,0.83614,0.598064,0.995595,0.972257,0.0288723,0.161184,0.879567,0.599028,0.449567,0.373714,0.668979,0.169474,0.918654,0.860745,0.777727,0.609088,0.995255,0.463388,0.146298,0.022446,0.711867,0.588434,0.299821,0.439672,0.0336811,0.749585,0.500094,0.812689,0.398666,0.682083,0.189955,0.473089,0.646769,0.942079,0.986942,0.0800859,0.266421,0.0291868,0.731953,0.172997,0.243303,0.520631,0.955602,0.55137,0.40604,0.262109,0.9871,0.559561,0.623252,0.73835,0.542499,0.818492,0.442923,0.171081,0.744399,0.914975,0.35565,0.208846,0.104684,0.785837,0.760416,0.790036,0.90096,0.42054,0.213796,0.173616,0.650495,0.373853,0.0479562,0.0315126,0.719004,0.855876,0.305595,0.621656,0.665662,0.593112,0.605863,0.760732,0.574826,0.672236,0.592103,0.800145,0.923993,0.48621,0.833943,0.321238,0.066088,0.401048,0.177762,0.0752824,0.531407,0.253353,0.547237,0.81739,0.77514,0.854771,0.787212,0.618277,0.397191,0.461764,0.801698,0.939401,0.533869,0.546028,0.570721,0.616184,0.138328,0.49326,0.788003,0.68898,0.669154,0.0457003,0.332303,0.629464,0.278926,0.0656044,0.440734,0.83375,0.267228,0.463668,0.785997,0.622613,0.596994,0.156273,0.591238,0.502329,0.936323,0.24828,0.910074,0.756613,0.369247,0.854283,0.6878,0.715693,0.475963,0.399481,0.972465,0.40453,0.843644,0.331047,0.900049,0.301718,0.0243459,0.7263,0.362258,0.356072,0.0490773,0.381107,0.700167,0.0223879,0.752533,0.557009,0.28604,0.180675,0.299182,0.556045,0.33561,0.0866697,0.439061,0.298484,0.251096,0.602371,0.393041,0.530131,0.322975,0.304674,0.385422,0.220127,0.597029,0.751284,0.172054,0.45633,0.25024,0.752604,0.68665,0.415295,0.741407,0.170868,0.985642,0.396094,0.146465,0.236772,0.979532,0.95474,0.0355155,0.507179,0.472313,0.291097,0.672779,0.466146,0.621904,0.415101,0.610492,0.489721,0.637341,0.00500757,0.102166,0.770153,0.799794,0.441003,0.177173,0.401323,0.397159,0.0831485,0.450278,0.654403,0.834451,0.450427,0.096216,0.981114,0.192771,0.795759,0.771894,0.0105207,0.332405,0.729032,0.877033,0.134572,0.632177,0.265912,0.498386,0.0440394,0.462482,0.121337,0.265659,0.245034,0.791088,0.25083,0.892975,0.986215,0.83708,0.0196277,0.518625,0.00250924,0.400744,0.00931674,0.725507,0.726391,0.0995764,0.0795202,0.250236,0.807545,0.692254,0.545125,0.81352,0.781903,0.83145,0.855489,0.0943432,0.78799,0.823436,0.594875,0.785899,0.789966,0.520065,0.0887962,0.934907,0.702655,0.78535,0.933042,0.796408,0.7605,0.794991,0.270958,0.536321,0.838807,0.966581,0.205713,0.374375,0.738321,0.217588,0.871774,0.149997,0.3393,0.352702,0.746465,0.663465,0.0164819,0.0501736,0.833473,0.29083,0.241573,0.102277,0.484245,0.571902,0.390164,0.991482,0.0265042,0.542611,0.414302,0.399837,0.690686,0.917345,0.987771,0.424437,0.435715,0.85664,0.238901,0.326465,0.985256,0.666224,0.301835,0.471885,0.563905,0.620906,0.840623,0.427163,0.0765191,0.862477,0.460835,0.67454,0.727198,0.174675,0.926793,0.958556,0.341278,0.0591382,0.549154,0.57893,0.612992,0.697052,0.930653,0.684472,0.252972,0.230555,0.77145,0.698147,0.426973,0.686834,0.524989,0.774596,0.214732,0.807247,0.274577,0.89342,0.749045,0.450492,0.324674,0.812429,0.342847,0.321855,0.864451,0.448666,0.89514,0.0166004,0.413698,0.223292,0.229782,0.727584,0.0404499,0.778927,0.817624,0.793483,0.837125,0.996551,0.0873873,0.360474,0.94842,0.458006,0.625252,0.739104,0.131065,0.50647,0.973776,0.11586,0.886962,0.856959,0.658861,0.980719,0.255834,0.92035,0.507656,0.00353473,0.863231,0.32808,0.288054,0.0393428,0.830243,0.83643,0.882537,0.441787,0.47847,0.477376,0.871718,0.28454,0.00144917,0.913719,0.0940597,0.314528,0.365085,0.63573,0.222436,0.221604,0.177217,0.533719,0.196952,0.749589,0.335438,0.138118,0.390853,0.235327,0.102718,0.978419,0.666403,0.315795,0.962893,0.347095,0.744179,0.0571682,0.3476,0.308765,0.837049,0.434303,0.667166,0.538171,0.180377,0.873913,0.408115,0.369339,0.897892,0.765737,0.772213,0.821611,0.896666,0.349012,0.473355,0.604322,0.5758,0.543017,0.955308,0.933597,0.548962,0.524574,0.594191,0.904042,0.289591,0.872785,0.666125,0.285041,0.215619,0.688087,0.227025,0.969455,0.468479,0.878268,0.323751,0.627606,0.489502,0.0544955,0.852934,0.610218,0.932965,0.973238,0.00236034,0.293811,0.287968,0.566414,0.0810778,0.799206,0.73708,0.730564,0.742783,0.72652,0.856922,0.534357,0.653536,0.47175,0.716062,0.327847,0.419673,0.611306,0.274974,0.786981,0.210273,0.243759,0.182887,0.182829,0.279858,0.31247,0.391161,0.093797,0.360171,0.899135,0.70017,0.456472,0.320973,0.370525,0.877562,0.521083,0.434318,0.969442,0.923621,0.0927733,0.649672,0.184826,0.798497,0.865087,0.811825,0.520673,0.693856,0.801464,0.258708,0.211317,0.589634,0.947806,0.0106486,0.248582,0.595436,0.544969,0.462978,0.830932,0.9936,0.232431,0.146948,0.273936,0.840895,0.50511,0.683414,0.0803297,0.956409,0.38091,0.844718,0.707598,0.983129,0.305637,0.68378,0.566919,0.649299,0.243605,0.892232,0.721428,0.478744,0.537365,0.061475,0.443938,0.358728,0.36542,0.359814,0.376127,0.749626,0.25128,0.764301,0.618057,0.656644,0.653612,0.904502,0.83448,0.761441,0.454011,0.169945,0.350903,0.249707,0.946372,0.512086,0.900174,0.134118,0.566479,0.226182,0.599161,0.938455,0.48545,0.48858,0.12101,0.332922,0.866764,0.324664,0.567193,0.322835,0.301605,0.829613,0.0678602,0.719899,0.902626,0.585993,0.662804,0.670799,0.347373,0.887558,0.64282,0.0241026,0.328795,0.0933978,0.947313,0.743235,0.19968,0.991942,0.274905,0.785468,0.614581,0.926312,0.461726,0.963426,0.186384,0.260705,0.642031,0.135632,0.170521,0.225124,0.574727,0.0163088,0.384737,0.915294,0.393652,0.39378,|0.570598,0.512611,0.61725,0.880751,0.423282,0.863271,0.982778,0.485902,0.126292,0.202552,0.618749,0.207246,0.214245,0.75752,0.760994,0.394783,0.840782,0.459588,0.358827,0.938831,0.603338,0.80867,0.0873049,0.950104,0.688345,0.71166,0.106363,0.410108,0.702553,0.461514,0.349928,0.805288,0.718425,0.354245,0.122372,0.762748,0.434557,0.493233,0.656685,0.317169,0.815287,0.746676,0.936078,0.156587,0.218344,0.40961,0.865231,0.344264,0.464072,0.265825,0.337403,0.0350837,0.124561,0.131428,0.0621558,0.997837,0.681754,0.181733,0.585796,0.85789,0.291323,0.417884,0.81429,0.0353196,0.408794,0.985183,0.88112,0.999806,0.616369,0.57353,0.877382,0.870476,0.830112,0.956149,0.925711,0.44747,0.000398934,0.928341,0.804276,0.36416,0.192667,0.128471,0.171822,0.956961,0.19222,0.266392,0.917424,0.483196,0.00742209,0.610784,0.000267029,0.676008,0.609336,0.650937,0.287927,0.569669,0.228033,0.486709,0.245233,0.455891,0.579242,0.450137,0.249866,0.995823,0.755332,0.256098,0.159218,0.473232,0.241489,0.140806,0.463323,0.753102,0.813764,0.778965,0.65378,0.00405306,0.464446,0.73197,0.0267434,0.391087,0.309598,0.409917,0.988645,0.232687,0.660904,0.865813,0.937654,0.344714,0.0820272,0.769051,0.17362,0.601206,0.33163,0.62227,0.0684993,0.101335,0.717358,0.655308,0.346139,0.0853414,0.237588,0.578676,0.951855,0.733017,0.857518,0.00471848,0.873963,0.573039,0.472044,0.110142,0.5487,0.0954168,0.0312249,0.643193,0.950016,0.736224,0.919709,0.449694,0.943011,0.748388,0.043597,0.444298,0.827288,0.423436,0.701155,0.678445,0.780288,0.533229,0.794678,0.811266,0.515368,0.940351,0.393045,0.749332,0.159318,0.647021,0.413995,0.692453,0.202527,0.910084,0.406242,0.36543,0.823652,0.891272,0.0212848,0.684772,0.76679,0.343429,0.636883,0.2112,0.406924,0.458739,0.402251,0.538089,0.638239,0.196123,0.963012,0.514936,0.0212207,0.949126,0.400194,0.243803,0.725005,0.43508,0.847632,0.574934,0.300686,0.161911,0.549483,0.281599,0.245773,0.881972,0.43135,0.202676,0.438514,0.626461,0.663119,0.503654,0.0166976,0.980728,0.528875,0.355659,0.277579,0.916641,0.959087,0.866385,0.90706,0.545682,0.894602,0.147509,0.493492,0.817427,0.164222,0.468455,0.98038,0.34779,0.916972,0.896485,0.462054,0.458694,0.422579,0.101531,0.462158,0.0886199,0.324893,0.294372,0.383633,0.513857,0.402353,0.765638,0.404152,0.917499,0.174413,0.493629,0.0847911,0.201908,0.357365,0.470076,0.29036,0.365077,0.689766,0.774804,0.410607,0.466805,0.323623,0.675935,0.762435,0.908493,0.353026,0.268023,0.289036,0.740685,0.459399,0.0243652,0.539143,0.476591,0.0446571,0.00241613,0.00991231,0.214577,0.306212,0.35898,0.979117,0.67336,0.174792,0.176332,0.825256,0.957328,0.618023,0.800616,0.599229,0.198877,0.253477,0.0347704,0.813111,0.362694,0.611524,0.759994,0.204394,0.709095,0.323085,0.496291,0.93489,0.31789,0.9567,0.136949,0.825409,0.668787,0.29066,0.676727,0.164372,0.975056,0.119181,0.652219,0.00708795,0.785481,0.0189235,0.861085,0.853231,0.915069,0.320604,0.799121,0.511451,0.904142,0.944815,0.912598,0.175074,0.626041,0.717099,0.270606,0.96131,0.544932,0.755459,0.956228,0.608855,0.294987,0.713524,0.966905,0.658476,0.622601,0.516585,0.67481,0.639126,0.170841,0.939933,0.0121393,0.887004,0.677157,0.148929,0.524304,0.707817,0.98091,0.447695,0.259528,0.536713,0.0153553,0.59396,0.192469,0.781504,0.668401,0.364654,0.746971,0.422011,0.400285,0.107411,0.432682,0.631963,0.173286,0.899739,0.922639,0.332688,0.745363,0.662156,0.343142,0.958872,0.880207,0.69402,0.425603,0.238991,0.943008,0.312298,0.284808,0.0998099,0.20044,0.177339,0.0942485,0.139375,0.219487,0.811553,0.969279,0.504913,0.172537,0.328005,0.327308,0.292787,0.417024,0.912247,0.835974,0.636199,0.0984472,0.324921,0.629513,0.217789,0.0759977,0.282065,0.636931,0.41679,0.613387,0.607571,0.567977,0.742015,0.483943,0.232759,0.701026,0.950293,0.445702,0.843812,0.553957,0.263135,0.426903,0.68509,0.72643,0.350924,0.598271,0.397037,0.197718,0.375257,0.203181,0.332301,0.397101,0.167919,0.653462,0.716705,0.880174,0.340088,0.0503168,0.193983,0.60186,0.657119,0.93768,0.496372,0.0514514,0.982259,0.0137388,0.338265,0.765542,0.112388,0.399695,0.982082,0.599075,0.0859579,0.582086,0.255104,0.678504,0.137057,0.511681,0.585758,0.993284,0.547794,0.782229,0.0152103,0.427702,0.674912,0.332893,0.216113,0.216915,0.235555,0.812324,0.454827,0.655042,0.175715,0.850023,0.289408,0.853895,0.586444,0.612855,0.278067,0.701629,0.945314,0.477201,0.379099,0.456619,0.951385,0.760158,0.388134,0.912647,0.271751,0.855618,0.824853,0.945234,0.710773,0.114052,0.24172,0.440832,0.468309,0.677929,0.836211,0.0643436,0.223579,0.382756,0.333056,0.925253,0.468345,0.570639,0.510221,0.841091,0.72268,0.476809,0.638226,0.878387,0.949591,0.515239,0.705056,0.148696,0.758051,0.266829,0.254211,0.852573,0.984325,0.859799,0.479141,0.720957,0.450772,0.129012,0.50167,0.793009,0.126303,0.359904,0.968761,0.75037,0.902756,0.597392,0.663765,0.974651,0.899775,0.252542,0.159033,0.0481504,0.0954362,0.128883,0.166628,0.14365,0.678508,0.120193,0.694091,0.515521,0.861287,0.715293,0.781048,0.556235,0.880916,0.380149,0.524696,0.683256,0.912278,0.543885,0.537031,0.934011,0.84022,0.731792,0.377101,0.484178,0.720713,0.953129,0.598715,0.241867,0.876893,0.325785,0.572413,0.825231,0.723647,0.450046,0.642474,0.862493,0.368816,0.76945,0.704928,0.0263017,0.523542,0.22325,0.404268,0.444946,0.525051,0.267609,0.646013,0.198565,0.489677,0.354789,0.24781,0.192319,0.748319,0.579659,0.169576,0.726908,0.0148777,0.343349,0.194843,0.315408,0.962406,0.590232,0.361471,0.98574,0.998678,0.343954,0.222735,0.146723,0.541902,0.278444,0.242132,0.344241,0.589409,0.079586,0.472126,0.310486,0.210672,0.335241,0.319152,0.361815,0.919886,0.828024,0.21696,0.286132,0.186376,0.83867,0.538852,0.985362,0.0978863,0.0205886,0.610439,0.977372,0.819346,0.172159,0.603441,0.992562,0.041862,0.672896,0.420353,0.209445,0.966963,0.911172,0.39507,0.679201,0.337927,0.965802,0.140522,0.95139,0.775331,0.488137,0.28289,0.2537,0.636006,0.170074,0.904964,0.18988,0.318201,0.214402,0.661596,0.479496,0.557778,0.514066,0.187032,0.223117,0.762513,0.69265,0.21957,0.834139,0.737173,0.0908243,0.393086,0.670959,0.439221,0.454078,0.384813,0.235258,0.761453,0.98436,0.587999,0.789802,0.497841,0.320537,0.358086,0.501923,0.585095,0.175198,0.303538,0.420135,0.00613976,0.432722,0.594782,0.23055,0.2963,0.567332,0.552349,0.540482,0.919398,0.82918,0.547248,0.687788,0.0975535,0.996062,0.576997,0.530714,0.474576,0.126305,0.588967,0.294817,0.993084,0.38985,0.470976,0.431929,0.534378,0.108182,0.698671,0.467255,0.647384,0.172595,0.215198,0.243262,0.0824803,0.900769,0.800654,0.161849,0.396064,0.00144488,0.3666,0.414253,0.817109,0.927401,0.507895,0.344222,0.768019,0.530032,0.206007,0.700604,0.978506,0.0946078,0.559028,0.356376,0.787308,0.0839056,0.155188,0.316438,0.54429,0.650915,0.732851,0.0376315,0.309768,0.994724,0.745409,0.279627,0.759178,0.546505,0.301354,0.550467,0.0233366,0.335919,0.777449,0.650528,0.00527942,0.254211,0.657615,0.456902,0.085741,0.54272,0.32244,0.629741,0.803117,0.361516,0.935709,0.215038,0.507413,0.290095,0.11955,0.354933,0.784635,0.220548,0.419529,0.551914,0.0734764,0.898306,0.708855,0.998176,0.125438,0.342766,0.493984,0.984485,0.350287,0.152226,0.357209,0.500475,0.798956,0.0412465,0.882165,0.0869105,0.855565,0.136545,0.516937,0.915915,0.698245,0.872968,0.924734,0.595665,0.880435,0.857118,0.418309,0.717288,0.516778,0.656995,0.986412,0.618073,0.480133,0.706498,0.249295,0.70745,0.673764,0.255112,0.8241,0.390099,0.755512,0.879349,0.366808,0.55985,0.76975,0.331858,0.300763,0.118997,0.623587,0.732041,0.545864,0.580764,0.490828,0.215561,0.615908,0.0285977,0.783386,0.117046,0.476971,0.0100511,0.482711,0.283609,0.811184,0.750587,0.644278,0.358052,0.834718,0.927015,0.669009,0.00770664,0.45517,0.765276,0.394723,0.784176,0.0558064,0.783348,0.360449,0.134781,0.773372,0.252377,0.602748,0.785738,0.355846,0.525757,0.337994,0.912908,0.474955,0.758364,0.588012,0.380688,0.655177,0.128219,0.68786,0.151767,0.0597506,0.806675,0.73324,0.116961,0.924311,0.818796,0.962293,0.109922,0.829074,0.566755,0.86506,0.0221997,0.590042,0.684895,0.371589,0.709538,0.766985,0.603552,0.771796,0.517658,0.386127,0.733851,0.489119,0.14807,0.0784203,0.735497,0.908223,0.851174,0.0633774,0.325986,0.421149,0.530273,0.352806,0.336762,0.0954455,0.693312,0.11492,0.111313,0.457207,0.831303,0.878681,0.393044,0.266359,0.555635,0.023432,0.0893874,0.782203,0.95468,0.380143,0.40149,0.362555,0.38161,0.912757,0.153226,0.923366,0.894218,0.530718,0.115924,0.237147,0.430214,0.839979,0.137461,0.99515,0.00782561,0.381549,0.513137,0.691908,0.204856,0.570436,0.528996,0.619848,0.0381467,0.625915,0.93715,0.935151,0.594183,0.451507,0.56254,0.972325,0.576402,0.951682,0.547468,0.149372,0.446341,0.864441,0.149303,0.972268,0.00403541,0.142037,0.833724,0.557837,0.350749,0.0892019,0.499443,0.169697,0.0162641,0.642124,0.551966,0.959158,0.674982,0.600413,0.961635,0.959985,0.0773211,0.347153,0.4677,0.166319,0.185734,0.587471,0.531127,0.81639,0.0730675,0.322597,0.409431,0.126747,0.956843,0.243966,0.138061,0.978597,0.883878,0.419089,0.755429,0.65911,0.850698,0.211007,0.629785,0.255942,0.0789856,|0.781272,0.612079,0.747083,0.227579,0.746205,0.731204,0.436613,0.404392,0.786572,0.154381,0.130769,0.433641,0.769359,0.730508,0.133777,0.0597783,0.746285,0.733118,0.399693,0.502564,0.0364907,0.126635,0.628112,0.716073,0.160578,0.55097,0.917209,0.282159,0.469531,0.841192,0.222908,0.753383,0.941995,0.960415,0.26524,0.0430093,0.6765,0.547135,0.623983,0.6741,0.83053,0.421003,0.0996226,0.565527,0.627635,0.745984,0.128862,0.282476,0.621202,0.822657,0.275433,0.627853,0.999061,0.671486,0.68152,0.615427,0.96968,0.898512,0.348144,0.0388756,0.347447,0.28979,0.0214979,0.087198,0.805029,0.0678284,0.614732,0.303072,0.064487,0.343438,0.74524,0.624199,0.508896,0.362495,0.209557,0.815551,0.408615,0.376047,0.053495,0.417431,0.659598,0.976211,0.919583,0.157538,0.0643018,0.485095,0.196654,0.436628,0.70072,0.46911,0.133058,0.657932,0.451839,0.793163,0.110117,0.186711,0.718569,0.212214,0.696559,0.977221,0.519335,0.176983,0.463008,0.826784,0.183457,0.768841,0.938251,0.582849,0.488288,0.187074,0.81582,0.281508,0.126526,0.410404,0.0519063,0.724271,0.542136,0.393562,0.175234,0.879221,0.811902,0.623727,0.81719,0.0798298,0.498193,0.664255,0.333224,0.349566,0.85839,0.384584,0.541028,0.490722,0.241582,0.420454,0.845957,0.0790963,0.656578,0.118439,0.540197,0.908799,0.209306,0.0514444,0.0570523,0.948807,0.639553,0.778885,0.773493,0.515466,0.428506,0.985828,0.278626,0.279087,0.702772,0.886741,0.513165,0.570721,0.712519,0.408238,0.560113,0.142738,0.226663,0.848111,0.434945,0.271623,0.474714,0.381777,0.776062,0.84911,0.00428057,0.0534037,0.516952,0.127248,0.535041,0.915724,0.99896,0.0905874,0.901836,0.726578,0.978969,0.577229,0.947901,0.527397,0.973134,0.65295,0.665964,0.592743,0.928505,0.292624,0.170002,0.31562,0.978269,0.503456,0.622879,0.0150167,0.0784945,0.0211392,0.397832,0.192585,0.496989,0.704327,0.728732,0.829363,0.768269,0.244885,0.94952,0.578473,0.693048,0.766789,0.508774,0.770052,0.639974,0.997729,0.359375,0.90588,0.18514,0.183226,0.969752,0.17863,0.644411,0.339363,0.360598,0.361205,0.931074,0.241211,0.353585,0.888552,0.21837,0.581231,0.340838,0.882261,0.00423962,0.222197,0.241763,0.150942,0.156828,0.997884,0.592679,0.709668,0.494843,0.521882,0.657121,0.421126,0.899601,0.137207,0.45361,0.390572,0.4412,0.65299,0.0596209,0.221107,0.112719,0.605094,0.138789,0.039793,0.126444,0.883624,0.691368,0.0840683,0.0294299,0.40308,0.812836,0.627128,0.484727,0.667539,0.158575,0.00153267,0.806917,0.361805,0.194409,0.456749,0.408238,0.182794,0.15023,0.182736,0.904764,0.358539,0.136948,0.932838,0.831081,0.402702,0.273294,0.157082,0.243899,0.0293119,0.417163,0.892016,0.462078,0.368662,0.163661,0.164411,0.0467947,0.378555,0.541973,0.156596,0.282626,0.00263578,0.307241,0.571563,0.510197,0.597017,0.403305,0.433217,0.52288,0.443509,0.225528,0.865496,0.811966,0.594046,0.599073,0.348264,0.583613,0.462953,0.0694953,0.515113,0.161951,0.211743,0.342232,0.962818,0.775923,0.435383,0.675901,0.712998,0.946522,0.746086,0.451045,0.27275,0.0489724,0.664767,0.391472,0.221231,0.424265,0.352089,0.336235,0.174525,0.935605,0.727805,0.901695,0.212497,0.448066,0.596233,0.427421,0.406526,0.931965,0.929745,0.400597,0.201181,0.886006,0.676026,0.271852,0.732024,0.988173,0.203809,0.218427,0.380843,0.190612,0.346442,0.786092,0.245788,0.392834,0.680489,0.72967,0.0930972,0.564262,0.402066,0.166853,0.143511,0.158828,0.0470871,0.883125,0.320847,0.296643,0.583631,0.56432,0.263843,0.231317,0.601726,0.838382,0.208121,0.476458,0.213038,0.152525,0.0178268,0.45552,0.229978,0.425478,0.850201,0.00618172,0.198699,0.487508,0.76292,0.288682,0.519325,0.789469,0.892069,0.228371,0.696003,0.152305,0.493536,0.872755,0.0901812,0.274512,0.539707,0.61836,0.405667,0.869579,0.0998451,0.350529,0.624716,0.596869,0.870486,0.177663,0.0219278,0.240444,0.272388,0.669163,0.174491,0.252506,0.508419,0.510031,0.685561,0.0241506,0.955413,0.388255,0.0950195,0.383567,0.620661,0.522807,0.959581,0.486246,0.910889,0.00977004,0.887245,0.785267,0.47303,0.0395718,0.791691,0.346036,0.469498,0.960477,0.76119,0.294174,0.0161397,0.581637,0.0323024,0.483273,0.217375,0.0572047,0.581598,0.920528,0.751959,0.693162,0.891774,0.882463,0.596372,0.887171,0.0404828,0.588821,0.716873,0.890129,0.599124,0.178805,0.247555,0.0896955,0.881121,0.816746,0.706893,0.624127,0.713685,0.791104,0.698419,0.176533,0.5065,0.83683,0.800924,0.587099,0.599511,0.498505,0.512511,0.451643,0.905637,0.337541,0.0292579,0.892474,0.0132205,0.696049,0.813713,0.933948,0.922445,0.415973,0.101772,0.814793,0.490983,0.0355995,0.612501,0.837756,0.137578,0.204093,0.507956,0.547858,0.570127,0.709075,0.50257,0.475467,0.88582,0.306586,0.521917,0.268976,0.792526,0.648819,0.589971,0.471566,0.899218,0.330097,0.918945,0.517492,0.630821,0.838386,0.389949,0.221857,0.843887,0.803759,0.286938,0.351737,0.603185,0.509735,0.65009,0.255809,0.467702,0.529901,0.0685043,0.110805,0.289098,0.814299,0.434862,0.709475,0.206369,0.136924,0.205942,0.373908,0.19441,0.425291,0.183188,0.40149,0.398149,0.516962,0.408512,0.236081,0.369123,0.149847,0.873813,0.550525,0.250295,0.501133,0.0550562,0.650694,0.294503,0.619378,0.627015,0.280767,0.797603,0.568748,0.624757,0.276799,0.614542,0.712868,0.0437022,0.859442,0.890402,0.257721,0.235039,0.756379,0.426345,0.151195,0.798337,0.0248308,0.0435039,0.00622696,0.140685,0.0236494,0.258126,0.110996,0.631013,0.309253,0.444138,0.942593,0.710096,0.898673,0.747658,0.181878,0.23573,0.432323,0.207831,0.0845351,0.123262,0.132421,0.0200641,0.784046,0.65147,0.864443,0.373523,0.975793,0.509366,0.463491,0.134298,0.276715,0.749329,0.699732,0.576305,0.123946,0.00341946,0.959877,0.526998,0.858421,0.183047,0.486533,0.284996,0.469793,0.961416,0.462499,0.413979,0.0145679,0.921389,0.0297509,0.628373,0.0781112,0.657264,0.491773,0.355741,0.123106,0.785027,0.416104,0.440176,0.345395,0.828907,0.847722,0.60411,0.563771,0.142584,0.655073,0.813325,0.937563,0.252609,0.012154,0.54329,0.723268,0.956887,0.22473,0.0220709,0.74714,0.712282,0.710975,0.598773,0.208362,0.502985,0.691357,0.269953,0.78373,0.903589,0.651614,0.220441,0.72108,0.482546,0.276989,0.242131,0.647478,0.785145,0.387307,0.386579,0.348743,0.347045,0.296906,0.967432,0.0583774,0.391003,0.207914,0.75736,0.90554,0.161231,0.160506,0.735013,0.968266,0.44292,0.269526,0.213075,0.471079,0.199487,0.32257,0.201845,0.426085,0.568973,0.558438,0.788567,0.0842397,0.868206,0.808572,0.50685,0.389584,0.689058,0.685043,0.121542,0.919655,0.73207,0.0808403,0.20852,0.803179,0.213406,0.145773,0.0405435,0.112195,0.440012,0.945398,0.00359005,0.957642,0.330566,0.884788,0.265065,0.526868,0.894453,0.515254,0.950031,0.429177,0.536592,0.00262153,0.387836,0.691592,0.604598,0.113049,0.304968,0.513847,0.641137,0.295408,0.988453,0.930888,0.0674927,0.707699,0.860892,0.0231816,0.723471,0.191174,0.790568,0.957848,0.994285,0.534811,0.218304,0.516081,0.782914,0.277944,0.898965,0.323123,0.532944,0.533807,0.537643,0.141006,0.194551,0.192535,0.492212,0.680791,0.4395,0.356637,0.231271,0.79301,0.469196,0.641276,0.93207,0.189457,0.808326,0.0395399,0.873861,0.750508,0.816054,0.790396,0.386589,0.692344,0.778241,0.0141144,0.541522,0.201101,0.114452,0.990485,0.0993291,0.198115,0.76908,0.114538,0.194263,0.184959,0.717358,0.839073,0.988331,0.237467,0.880649,0.282808,0.598631,0.153814,0.512186,0.578282,0.386701,0.770776,0.775156,0.97229,0.832009,0.188968,0.419139,0.333435,0.263126,0.741743,0.891066,0.356239,0.995063,0.702723,0.0987785,0.0656286,0.0781372,0.0267469,0.982138,0.759492,0.326473,0.843315,0.757369,0.532165,0.34211,0.615725,0.589127,0.0995849,0.0314727,0.826459,0.0929092,0.153271,0.573073,0.456594,0.375999,0.847311,0.320943,0.795023,0.345513,0.55735,0.32062,0.425951,0.917051,0.332535,0.265144,0.598315,0.28825,0.867371,0.456858,0.793681,0.751732,0.108737,0.414801,0.541312,0.667768,0.0276816,0.567664,0.261354,0.29963,0.921372,0.187832,0.318077,0.0498068,0.306244,0.463926,0.933323,0.400606,0.756283,0.690487,0.583691,0.190548,0.164119,0.586551,0.435171,0.65484,0.946205,0.291695,0.0893431,0.741222,0.240424,0.69569,0.401076,0.242732,0.189066,0.168157,0.119709,0.714897,0.231173,0.935804,0.650956,0.256195,0.522331,0.594589,0.685799,0.714989,0.626591,0.626678,0.752235,0.728677,0.523682,0.247112,0.994883,0.611479,0.656944,0.321657,0.0817258,0.247457,0.929725,0.515818,0.0348215,0.757517,0.0838424,0.871713,0.734736,0.880953,0.949556,0.560125,0.21775,0.719435,0.44046,0.834207,0.164529,0.37654,0.799962,0.122907,0.244491,0.526696,0.840657,0.161453,0.0239503,0.840983,0.85816,0.400203,0.77852,0.611402,0.14786,0.88155,0.637003,0.219684,0.0359561,0.0054276,0.676583,0.804866,0.377668,0.79642,0.696051,0.186537,0.128102,0.864742,0.0540894,0.998412,0.300212,0.257055,0.205527,0.961357,0.516377,0.725155,0.978368,0.637828,0.792696,0.23684,0.876851,0.961899,0.0033648,0.326195,0.515619,0.578886,0.198091,0.436176,0.861107,0.0778214,0.432794,0.402127,0.0394101,0.356441,0.491713,0.572315,0.410069,0.858858,0.419581,0.692172,0.811671,0.918266,0.779512,0.92011,0.15425,0.760337,0.786829,0.924909,0.983366,0.931422,0.121228,0.641872,0.84926,0.805909,0.399539,0.810572,0.752248,0.371498,0.0609143,0.414065,0.851824,0.114918,0.618922,0.2718,|0.447083,0.993851,0.543008,0.705673,0.771682,0.379003,0.11029,0.971107,0.0852205,0.605778,0.520285,0.0361168,0.513714,0.812221,0.342275,0.883797,0.331081,0.412729,0.839835,0.753922,0.761889,0.428148,0.541308,0.441212,0.742892,0.418836,0.466835,0.0435628,0.454579,0.219609,0.131425,0.803079,0.188415,0.740175,0.618601,0.422963,0.684367,0.0743846,0.409939,0.0750911,0.569188,0.531672,0.0371238,0.731639,0.241164,0.812956,0.00585938,0.77048,0.297655,0.811741,0.359904,0.158242,0.406002,0.279748,0.846551,0.70491,0.151432,0.777968,0.148902,0.867244,0.671706,0.150616,0.407341,0.207384,0.554458,0.683703,0.126058,0.198295,0.898175,0.299278,0.846422,0.402953,0.178187,0.482448,0.840127,0.678326,0.255444,0.255895,0.794587,0.977702,0.309548,0.792515,0.785943,0.0634677,0.180069,0.991307,0.49261,0.30812,0.530961,0.223624,0.0351787,0.249164,0.585715,0.727818,0.2663,0.902497,0.436439,0.972485,0.699727,0.0962563,0.785983,0.711104,0.0313239,0.220226,0.185506,0.0713468,0.568372,0.301965,0.595192,0.802907,0.685294,0.262188,0.0650973,0.341082,0.427405,0.807933,0.586392,0.0819264,0.265386,0.547196,0.630567,0.122534,0.670156,0.559248,0.0440416,0.999387,0.77592,0.406842,0.160405,0.240217,0.306039,0.968725,0.707481,0.678861,0.129241,0.215449,0.180085,0.788646,0.141128,0.781625,0.448808,0.417452,0.175667,0.376488,0.0163447,0.972069,0.456722,0.911798,0.233713,0.376556,0.558766,0.634677,0.181773,0.373404,0.0307897,0.0746664,0.527701,0.220047,0.128236,0.931442,0.545915,0.560218,0.214916,0.921144,0.179457,0.297855,0.276765,0.743372,0.558672,0.695091,0.134027,0.504326,0.041781,0.859656,0.402613,0.113513,0.113896,0.413306,0.0104848,0.601402,0.812483,0.111424,0.210496,0.0827012,0.150502,0.134152,0.879169,0.8153,0.461732,0.896468,0.453604,0.090692,0.482867,0.358457,0.854625,0.627504,0.0515983,0.39853,0.906876,0.443491,0.641497,0.7192,0.741501,0.945445,0.427538,0.161733,0.0286367,0.413088,0.779555,0.142844,0.373862,0.812169,0.93443,0.0872865,0.495721,0.860915,0.223939,0.417383,0.651968,0.107992,0.0840799,0.883064,0.423377,0.457539,0.445582,0.386351,0.75976,0.745709,0.461121,0.30818,0.20366,0.49676,0.196791,0.662237,0.307907,0.136229,0.950865,0.0417084,0.641514,0.138207,0.523696,0.857125,0.911732,0.830096,0.621381,0.377799,0.660614,0.658536,0.506993,0.366713,0.78522,0.892102,0.768132,0.824724,0.377316,0.295614,0.177745,0.293913,0.901456,0.570082,0.630587,0.758382,0.203807,0.567597,0.504051,0.197935,0.848534,0.155442,0.483539,0.0470572,0.0801983,0.133751,0.111343,0.30017,0.752995,0.76597,0.507308,0.57767,0.159901,0.505711,0.799638,0.70241,0.108747,0.509927,0.873715,0.0583243,0.458775,0.477053,0.954494,0.918497,0.360946,0.355483,0.440944,0.855162,0.215504,0.877117,0.245179,0.505406,0.284231,0.224587,0.608958,0.871706,0.83136,0.98798,0.538149,0.580918,0.471862,0.575955,0.698328,0.999212,0.667725,0.970283,0.892259,0.489511,0.299313,0.170663,0.168753,0.136986,0.987687,0.0449418,0.639019,0.409456,0.421512,0.724742,0.0225624,0.301766,0.704706,0.564061,0.555605,0.276048,0.776825,0.499087,0.621569,0.724139,0.645333,0.427575,0.899184,0.680764,0.404594,0.271934,0.945529,0.549303,0.865597,0.16211,0.517811,0.748969,0.0841746,0.790828,0.629959,0.251543,0.898459,0.493896,0.819533,0.249119,0.571383,0.761946,0.354556,0.325976,0.992486,0.984041,0.302583,0.507985,0.767042,0.0231467,0.219148,0.555411,0.99696,0.34474,0.196186,0.754648,0.803708,0.943919,0.832601,0.000877142,0.448527,0.431507,0.821032,0.755834,0.68243,0.348916,0.429511,0.762711,0.219705,0.479494,0.70422,0.709504,0.0854836,0.768568,0.193975,0.324181,0.892596,0.237355,0.993781,0.360569,0.137508,0.980709,0.521028,0.189916,0.59289,0.659285,0.364919,0.0184719,0.755908,0.292167,0.57583,0.146872,0.0146875,0.692455,0.351558,0.283993,0.632835,0.640872,0.156184,0.661879,0.189298,0.554918,0.725,0.934688,0.469767,0.239919,0.876998,0.420765,0.805568,0.257527,0.657139,0.660883,0.470646,0.638863,0.658005,0.39465,0.738862,0.682151,0.255138,0.381935,0.767536,0.625165,0.984082,0.118618,0.489182,0.528024,0.535328,0.816834,0.184391,0.436469,0.396169,0.90721,0.118663,0.274142,0.452635,0.78841,0.96912,0.745029,0.663354,0.800799,0.45101,0.0549636,0.00408709,0.945401,0.332806,0.0944511,0.512704,0.0377182,0.919169,0.144345,0.0926269,0.669005,0.591803,0.90326,0.617902,0.798892,0.161093,0.197287,0.478083,0.708882,0.538822,0.350284,0.0487787,0.585845,0.35411,0.0380443,0.385678,0.895644,0.906362,0.289768,0.0324596,0.0765188,0.383042,0.336189,0.240837,0.0113822,0.0701242,0.769287,0.0883831,0.423455,0.425805,0.0648434,0.575103,0.154827,0.992528,0.121381,0.622919,0.525266,0.899391,0.139024,0.882676,0.632976,0.763744,0.759886,0.671954,0.042292,0.454543,0.325049,0.711551,0.34518,0.532156,0.209953,0.853915,0.901497,0.477547,0.786932,0.949756,0.827657,0.0627223,0.625679,0.627508,0.8902,0.269028,0.45926,0.942631,0.11295,0.294049,0.209703,0.348088,0.744315,0.236067,0.331333,0.0658883,0.284651,0.0765705,0.499738,0.730936,0.354029,0.34943,0.00335604,0.795834,0.63561,0.491737,0.67913,0.136719,0.24289,0.322326,0.00947094,0.0411884,0.400395,0.614752,0.213243,0.97911,0.86783,0.901566,0.673399,0.238001,0.243933,0.248081,0.384314,0.13748,0.746324,0.102596,0.790502,0.431024,0.42351,0.722273,0.649841,0.622054,0.457878,0.32945,0.105284,0.965001,0.979748,0.80616,0.179593,0.147478,0.380086,0.269572,0.239018,0.447532,0.616677,0.664856,0.888174,0.114746,0.586387,0.691865,0.612258,0.245375,0.204509,0.718168,0.334002,0.722913,0.804816,0.488045,0.364471,0.372449,0.691395,0.876435,0.873262,0.149669,0.99852,0.787713,0.357421,0.937711,0.293807,0.468378,0.42101,0.54756,0.157523,0.602985,0.363436,0.43001,0.455384,0.235389,0.335785,0.00123286,0.466036,0.381465,0.0543721,0.521211,0.566047,0.0562413,0.236532,0.796639,0.796788,0.532023,0.902678,0.863136,0.657671,0.711616,0.189437,0.238902,0.046142,0.897968,0.425661,0.133359,0.871262,0.527396,0.444854,0.0832525,0.559575,0.221332,0.665275,0.60838,0.358179,0.872051,0.367443,0.948402,0.0218799,0.437836,0.756904,0.706681,0.723956,0.531356,0.614691,0.139142,0.870469,0.554846,0.170983,0.533001,0.976717,0.0102072,0.583249,0.63069,0.562351,0.844489,0.47188,0.42651,0.836029,0.0974084,0.227337,0.255247,0.812241,0.22621,0.331557,0.0560697,0.0972141,0.562767,0.283631,0.950173,0.515045,0.361819,0.493085,0.439483,0.523405,0.978704,0.0214056,0.163958,0.0487644,0.662125,0.730378,0.70703,0.33375,0.900529,0.844187,0.293882,0.885109,0.647953,0.508511,0.325677,0.328487,0.989254,0.446737,0.938323,0.713476,0.840762,0.880942,0.809996,0.0658673,0.950892,0.0921066,0.325422,0.425786,0.223677,0.593567,0.909548,0.0816159,0.77941,0.52099,0.242142,0.839926,0.346965,0.685614,0.586576,0.742672,0.634837,0.311402,0.725339,0.785695,0.990306,0.080411,0.14636,0.879572,0.408736,0.306205,0.268586,0.360273,0.930975,0.193659,0.739565,0.0477545,0.552723,0.0207105,0.845725,0.275332,0.586099,0.153667,0.516525,0.307908,0.527752,0.072206,0.319954,0.0534055,0.870301,0.5346,0.710138,0.42449,0.333126,0.438173,0.806885,0.640945,0.0360729,0.763166,0.722476,0.424045,0.148631,0.908796,0.174386,0.237173,0.707241,0.378811,0.384719,0.337238,0.437292,0.629507,0.386299,0.924848,0.46911,0.244444,0.87824,0.191786,0.475135,0.902163,0.566917,0.105991,0.69566,0.733504,0.483077,0.300992,0.441128,0.168475,0.0698315,0.886286,0.577922,0.0165137,0.024654,0.479794,0.124858,0.716796,0.48715,0.762851,0.235714,0.354366,0.264933,0.441636,0.193676,0.270466,0.360099,0.91792,0.303814,0.501691,0.774026,0.11335,0.65334,0.99576,0.0621371,0.168601,0.259712,0.598934,0.177461,0.781224,0.428245,0.232816,0.683862,0.86919,0.0793777,0.811533,0.576937,0.775595,3.93391e-06,0.738944,0.767942,0.197329,0.753714,0.388113,0.127875,0.208449,0.376446,0.594688,0.380476,0.758966,0.101703,0.0959336,0.382862,0.543414,0.191136,0.688281,0.855456,0.119522,0.906265,0.443628,0.807451,0.397598,0.408346,0.926928,0.044946,0.568825,0.670702,0.835816,0.187714,0.399815,0.278676,0.205063,0.136113,0.483549,0.989031,0.952746,0.218298,0.275525,0.748904,0.513304,0.197308,0.657749,0.215897,0.861932,0.220621,0.397327,0.38429,0.804754,0.917164,0.173361,0.0682194,0.712932,0.62955,0.067286,0.116071,0.504873,0.165927,0.556162,0.0690135,0.175624,0.619431,0.738816,0.889484,0.371262,0.600243,0.200306,0.371124,0.728185,0.810022,0.997862,0.226079,0.447189,0.166096,0.451014,0.734373,0.451135,0.394206,0.881478,0.241047,0.489026,0.562683,0.906393,0.0874264,0.587687,0.595832,0.549506,0.746968,0.0688115,0.612852,0.0339482,0.294794,0.708293,0.614244,0.590738,0.502622,0.0415123,0.379053,0.415736,0.82675,0.21723,0.72719,0.385443,0.478537,0.361017,0.355665,0.0160927,0.575451,0.315316,0.0288324,0.245082,0.915239,0.582012,0.44033,0.0945224,0.624115,0.179645,0.597259,0.963734,0.576515,0.546386,0.489304,0.839016,0.519255,0.174595,0.113471,0.172756,0.559061,0.0659992,0.253514,0.445955,0.774023,0.639176,0.955938,0.954881,0.28691,0.177065,0.872634,0.262224,0.616313,0.0555777,0.957902,0.805151,0.00294876,0.476779,0.261858,0.771117,0.820593,0.565776,0.58363,0.195562,0.476259,0.598945,0.87672,0.658565,0.203257,0.563835,0.937458,0.0507488,0.696551,0.55069,0.453818,0.0611107,0.669122,0.541557,|0.298692,0.776719,0.243142,0.891281,0.400186,0.524738,0.798371,0.517465,0.56943,0.679773,0.426942,0.907537,0.773715,0.731048,0.728338,0.348132,0.395826,0.253302,0.655458,0.440485,0.0254034,0.151939,0.67163,0.493589,0.26284,0.428517,0.409902,0.813217,0.528452,0.305254,0.46889,0.0162749,0.517914,0.443716,0.774608,0.442533,0.87521,0.749691,0.470703,0.423029,0.368119,0.758494,0.0740682,0.369009,0.583289,0.540508,0.897368,0.0720326,0.402976,0.358323,0.471776,0.365414,0.308664,0.316757,0.599066,0.294177,0.62661,0.0254702,0.415444,0.0559047,0.648344,0.0481699,0.977713,0.0356015,0.353517,0.813667,0.336486,0.513371,0.271835,0.180154,0.819227,0.84285,0.28567,0.84754,0.2121,0.223816,0.714088,0.741876,0.277569,0.697035,0.539928,0.195996,0.115513,0.937367,0.580253,0.524208,0.650556,0.921597,0.540042,0.254229,0.256016,0.480044,0.135114,0.757757,0.960672,0.774262,0.37104,0.190306,0.560028,0.84844,0.620984,0.813565,0.410115,0.787686,0.325823,0.776285,0.611882,0.0844894,0.276566,0.598375,0.674509,0.375746,0.677511,0.170366,0.0724891,0.409302,0.587874,0.140076,0.714535,0.512924,0.631925,0.592862,0.0759093,0.927804,0.259144,0.796553,0.400373,0.12389,0.668227,0.0790477,0.0757569,0.353037,0.966723,0.531692,0.652183,0.908724,0.923259,0.826707,0.165938,0.572558,0.530762,0.853067,0.475559,0.968827,0.628377,0.268915,0.718599,0.512002,0.0995194,0.779331,0.249834,0.141531,0.490309,0.510622,0.583137,0.196446,0.0200516,0.751853,0.515015,0.550807,0.722376,0.991396,0.174894,0.305371,0.646188,0.571819,0.474088,0.635818,0.217206,0.644198,0.551627,0.457618,0.743171,0.105921,0.128425,0.860417,0.0469578,0.234631,0.914931,0.108314,0.446512,0.952756,0.232102,0.217897,0.709202,0.46422,0.668271,0.133781,0.0655335,0.586479,0.95746,0.886719,0.446146,0.79076,0.501805,0.127483,0.637338,0.432636,0.752598,0.225191,0.299191,0.380013,0.425172,0.0833474,0.0645212,0.00522065,0.557755,0.864075,0.326468,0.763823,0.598918,0.0877233,0.0122439,0.812157,0.349334,0.0954142,0.393952,0.525414,0.583302,0.0508855,0.870467,0.673139,0.450139,0.362887,0.834824,0.603227,0.971865,0.133511,0.817002,0.28503,0.442884,0.180922,0.293703,0.812313,0.967103,0.424147,0.941673,0.488076,0.291682,0.494877,0.941248,0.918866,0.490655,0.803504,0.312926,0.529888,0.991449,0.788437,0.876048,0.149579,0.127933,0.298532,0.562741,0.0899687,0.905572,0.0777957,0.673181,0.165553,0.64292,0.881019,0.0224298,0.526996,0.914991,0.15732,0.587002,0.469061,0.86289,0.570387,0.55601,0.61149,0.499748,0.92587,0.291231,0.356334,0.231478,0.742855,0.35557,0.649526,0.59317,0.751458,0.600757,0.17055,0.0928265,0.454022,0.500798,0.301293,0.179001,0.954119,0.279625,0.369086,0.770118,0.00472075,0.389971,0.470316,0.528677,0.451154,0.267598,0.41969,0.292033,0.0906533,0.0466336,0.4215,0.19285,0.248694,0.801258,0.470281,0.241509,0.970813,0.699753,0.902271,0.233887,0.555742,0.0341144,0.00519162,0.766579,0.430218,0.609409,0.587505,0.479756,0.146142,0.665121,0.495127,0.811606,0.813791,0.702171,0.796764,0.949258,0.868556,0.494443,0.604402,0.366926,0.768551,0.522943,0.467753,0.187758,0.654943,0.538096,0.451457,0.217698,0.46543,0.473068,0.444761,0.626655,0.516455,0.808282,0.593057,0.0471681,0.702739,0.00261885,0.875971,0.424379,0.881217,0.565333,0.423893,0.913743,0.522338,0.408604,0.217384,0.818598,0.799242,0.521977,0.793874,0.422652,0.0100498,0.800097,0.0991365,0.662243,0.731768,0.663321,0.0768028,0.461491,0.711706,0.925047,0.458841,0.1707,0.21113,0.482625,0.04781,0.0111502,0.0162498,0.8828,0.350163,0.859002,0.738333,0.116055,0.258116,0.0119607,0.221627,0.795815,0.264689,0.793571,0.557011,0.24013,0.421575,0.858786,0.413605,0.356156,0.892263,0.292182,0.202784,0.526777,0.212849,0.716663,0.81313,0.71819,0.270139,0.411975,0.367955,0.50775,0.215451,0.577853,0.125912,0.549355,0.994089,0.410349,0.587118,0.494685,0.504316,0.100075,0.096828,0.24501,0.813638,0.60403,0.384631,0.446632,0.503517,0.580472,0.59638,0.613168,0.402643,0.484054,0.478755,0.0435102,0.59578,0.775623,0.856522,0.750319,0.786198,0.322094,0.547615,0.099048,0.12762,0.0387981,0.711554,0.75192,0.753343,0.605549,0.433528,0.238357,0.0664339,0.430317,0.557007,0.720728,0.13282,0.0680565,0.400049,0.715717,0.516746,0.819139,0.752716,0.366375,0.133029,0.422783,0.0366617,0.0411213,0.910416,0.691538,0.716904,0.242576,0.0771033,0.847268,0.643218,0.281025,0.663958,0.988924,0.988306,0.991021,0.203241,0.196752,0.139558,0.192562,0.527843,0.440065,0.632197,0.197922,0.661655,0.586762,0.653474,0.0491815,0.415025,0.535304,0.0410864,0.83177,0.0604076,0.577317,0.0155465,0.514483,0.329127,0.466406,0.778131,0.826623,0.323324,0.317113,0.872548,0.237575,0.323167,0.853849,0.111526,0.464852,0.56228,0.748832,0.09889,0.0113972,0.672282,0.345352,0.786081,0.0710803,0.306929,0.861194,0.0358315,0.88531,0.637626,0.138905,0.561811,0.394543,0.31491,0.562736,0.680255,0.342785,0.113503,0.303731,0.711076,0.726973,0.984935,0.68962,0.767541,0.0812417,0.162522,0.435741,0.321112,0.383599,0.0939751,0.0942373,0.148714,0.135157,0.468356,0.705772,0.783308,0.202055,0.104854,0.649818,0.425543,0.0857747,0.434788,0.286096,0.818529,0.177872,0.904694,0.763087,0.362081,0.159419,0.883161,0.500408,0.815726,0.34703,0.539229,0.138274,0.0567178,0.826347,0.736401,0.62702,0.47006,0.282902,0.329506,0.539192,0.742054,0.503531,0.0898938,0.504198,0.193649,0.015123,0.398177,0.0912927,0.370111,0.0996863,0.394681,0.0990191,0.864466,0.856838,0.618725,0.532651,0.927446,0.716757,0.58812,0.0456535,0.210996,0.200345,0.0856705,0.899292,0.0948532,0.474098,0.739805,0.378968,0.198444,0.321152,0.141456,0.44334,0.280439,0.35132,0.787125,0.78786,0.386409,0.718098,0.974147,0.772742,0.832666,0.22333,0.929917,0.750959,0.366084,0.974869,0.115523,0.405799,0.24019,0.543358,0.11282,0.146231,0.811022,0.630728,0.083899,0.353727,0.114587,0.395872,0.623664,0.063338,0.494753,0.626395,0.605201,0.530565,0.52934,0.321176,0.500136,0.79043,0.677305,0.50785,0.414346,0.73812,0.140887,0.354633,0.205934,0.30818,0.0507603,0.441816,0.405976,0.713927,0.249783,0.205184,0.996643,0.893894,0.0349452,0.943678,0.482325,0.362443,0.206795,0.114368,0.595693,0.124837,0.0649197,0.622451,0.22859,0.803423,0.775857,0.738345,0.374549,0.229198,0.0523756,0.52194,0.869765,0.513524,0.727747,0.992734,0.558127,0.273434,0.4327,0.840455,0.680793,0.386623,0.708051,0.21395,0.667612,0.0694923,0.61128,0.811593,0.632727,0.429918,0.95956,0.649704,0.739014,0.432873,0.309965,0.844568,0.0309379,0.577192,0.699345,0.501883,0.0845599,0.249732,0.301647,0.700695,0.160598,0.970313,0.0646425,0.00542068,0.437192,0.0862336,0.421764,0.53055,0.288081,0.476449,0.881825,0.826017,0.510045,0.751288,0.821778,0.521537,0.448831,0.873541,0.496933,0.313493,0.270534,0.261536,0.131349,0.102933,0.718889,0.590876,0.330173,0.710171,0.0493855,0.580093,0.871972,0.896726,0.081296,0.514232,0.180001,0.713139,0.744322,0.635159,0.9594,0.216684,0.17224,0.682048,0.905269,0.914485,0.452495,0.137224,0.875258,0.777679,0.422516,0.53666,0.595784,0.888308,0.325524,0.744132,0.953131,0.147693,0.0596434,0.251507,0.0667827,0.255464,0.624395,0.656746,0.581925,0.811429,0.433567,0.517763,0.239483,0.316897,0.645973,0.0232844,0.254521,0.158392,0.265059,0.371763,0.884524,0.845266,0.575276,0.992938,0.484743,0.589851,0.82533,0.187153,0.568209,0.308099,0.453418,0.590797,0.0478558,0.152556,0.937529,0.906318,0.208277,0.924866,0.168319,0.615178,0.746954,0.906355,0.50965,0.145178,0.772916,0.523924,0.917892,0.0998094,0.985399,0.915867,0.554766,0.347174,0.250875,0.889249,0.249661,0.745827,0.350464,0.273114,0.522115,0.855688,0.840964,0.822187,0.21836,0.0145974,0.229107,0.589138,0.921311,0.58566,0.0850604,0.796237,0.544262,0.407518,0.539824,0.508349,0.944439,0.525281,0.457229,0.558409,0.0200049,0.0434196,0.0308266,0.296152,0.718171,0.373302,0.576399,0.383204,0.576324,0.0645667,0.469484,0.21519,0.35165,0.253685,0.626169,0.0401241,0.425033,0.685999,0.716886,0.289751,0.831194,0.525864,0.467411,0.760304,0.477024,0.167999,0.735294,0.584751,0.933511,0.839025,0.061758,0.160202,0.471344,0.349597,0.96785,0.584084,0.354965,0.604028,0.365458,0.961103,0.217244,0.0487695,0.450226,0.436161,0.258344,0.730338,0.558286,0.580347,0.563417,0.921104,0.773514,0.721596,0.946615,0.808008,0.485135,0.326742,0.183062,0.53232,0.739733,0.212586,0.482309,0.876644,0.89874,0.364842,0.751498,0.735902,0.531129,0.82332,0.293324,0.921745,0.479442,0.496458,0.0396316,0.155546,0.369468,0.984172,0.924805,0.0927414,0.876416,0.984817,0.62042,0.0140674,0.0289965,0.63752,0.848782,0.814752,0.645922,0.708161,0.863903,0.526595,0.875494,0.750533,0.945763,0.122194,0.862947,0.700539,0.0791155,0.958333,0.137333,0.666049,0.650057,0.161303,0.537034,0.735943,0.862574,0.0122679,0.553841,0.832634,0.903731,0.224246,0.462824,0.988778,0.393484,0.236984,0.0270285,0.247214,0.704857,0.591187,0.683226,0.282958,0.64857,0.908022,0.488977,0.150344,0.59654,0.555437,0.977643,0.138304,0.628375,0.416416,0.245733,0.239395,0.24421,0.306402,0.301999,0.588212,0.891617,0.446028,0.300543,0.225087,0.387656,0.780068,0.169623,0.0646086,0.0953323,0.545829,0.972046,0.411498,0.514417,0.666242,0.705203,0.297981,0.538074,0.843156,0.0164942,0.81882,0.619018,0.298761,0.762005,|0.547333,0.911599,0.807859,0.625624,0.802881,0.666168,0.542141,0.233546,0.876925,0.00925905,0.596628,0.748767,0.726441,0.390495,0.154298,0.825445,0.344731,0.0459823,0.538033,0.135327,0.960775,0.394737,0.816242,0.986028,0.57815,0.304057,0.407719,0.0423369,0.666847,0.835216,0.875249,0.461738,0.657374,0.887449,0.14438,0.612444,0.435522,0.5372,0.78488,0.321007,0.914192,0.804306,0.32279,0.830066,0.0195722,0.100216,0.19366,0.110885,0.823871,0.387961,0.831219,0.422168,0.0817597,0.976079,0.421237,0.474624,0.491492,0.641778,0.314422,0.123805,0.677437,0.397202,0.471665,0.0327265,0.340263,0.14737,0.0118958,0.593352,0.766118,0.411504,0.716411,0.667253,0.305453,0.625942,0.820241,0.391752,0.881513,0.857694,0.927711,0.779657,0.614891,0.300169,0.227327,0.201313,0.877419,0.0779627,0.0316779,0.636206,0.905082,0.138027,0.778543,0.47933,0.724962,0.255077,0.276005,0.920064,0.333509,0.958304,0.333054,0.482994,0.789763,0.539191,0.425,0.920739,0.328895,0.1936,0.108124,0.346977,0.702324,0.804108,0.253091,0.0753378,0.33078,0.0215837,0.299457,0.583504,0.540788,0.937165,0.89593,0.0473102,0.972138,0.517787,0.253656,0.598177,0.228662,0.630831,0.378875,0.317679,0.91328,0.774995,0.573136,0.78512,0.411456,0.188604,0.420794,0.812202,0.0415802,0.0958952,0.455652,0.0608814,0.353972,0.441079,0.557842,0.275534,0.0703398,0.736234,0.0231167,0.456739,0.153963,0.239606,0.867308,0.225664,0.455717,0.976874,0.800151,0.857529,0.346305,0.786808,0.99561,0.0363084,0.951272,0.382184,0.662647,0.546457,0.442124,0.87272,0.046208,0.505712,0.92426,0.136545,0.0940439,0.414902,0.406048,0.328137,0.167211,0.544664,0.865837,0.515159,0.0619407,0.689567,0.618266,0.202638,0.0821263,0.29043,0.466967,0.948251,0.616041,0.071502,0.132009,0.445673,0.37748,0.528445,0.157864,0.97719,0.763834,0.205407,0.494985,0.357038,0.165243,0.598477,0.335046,0.497316,0.171857,0.00743556,0.740236,0.745867,0.144821,0.950266,0.831171,0.107241,0.595533,0.0880105,0.839552,0.932534,0.123332,0.599778,0.0156285,0.656013,0.507862,0.109078,0.616473,0.264903,0.0972216,0.236756,0.38739,0.523771,0.696424,0.884626,0.164647,0.114677,0.60376,0.858132,0.20748,0.645431,0.612007,0.125478,0.37679,0.687729,0.859764,0.453223,0.392531,0.156822,0.0110967,0.303498,0.478068,0.729478,0.756264,0.360667,0.641998,0.357395,0.926832,0.9962,0.913232,0.3801,0.820715,0.593573,0.0286195,0.556251,0.989699,0.124203,0.381872,0.941192,0.95076,0.190109,0.0943795,0.492392,0.821381,0.788667,0.422381,0.80134,0.9057,0.301687,0.87439,0.501569,0.407682,0.769884,0.361536,0.932503,0.0198045,0.989441,0.8601,0.624845,0.721131,0.234928,0.720616,0.354146,0.759028,0.540112,0.59654,0.688166,0.491322,0.486225,0.757043,0.58655,0.873763,0.776089,0.657133,0.862494,0.5646,0.130627,0.905453,0.645486,0.9522,0.406129,0.641482,0.588823,0.769017,0.190327,0.674654,0.549395,0.241805,0.30864,0.610687,0.746702,0.91329,0.368629,0.806883,0.888315,0.776363,0.730967,0.359565,0.599939,0.77846,0.958425,0.906461,0.219047,0.911136,0.157421,0.841814,0.367299,0.458292,0.432123,0.810706,0.347257,0.491894,0.412446,0.231436,0.904638,0.452169,0.930727,0.277617,0.196345,0.803874,0.723075,0.997005,0.832641,0.0182366,0.868953,0.758017,0.495706,0.529214,0.290424,0.558653,0.684031,0.307994,0.563541,0.988013,0.654183,0.771105,0.381804,0.158933,0.724257,0.425082,0.626826,0.303065,0.803092,0.432095,0.467986,0.715133,0.0418864,0.623553,0.942807,0.295846,0.538543,0.0447096,0.403748,0.90547,0.815214,0.523855,0.831671,0.104598,0.421154,0.771224,0.265129,0.311651,0.495644,0.933331,0.995157,0.835236,0.899142,0.0307944,0.905386,0.621943,0.357455,0.794639,0.451513,0.238611,0.345955,0.234476,0.76441,0.774909,0.747938,0.690242,0.108217,0.24462,0.796041,0.778326,0.136274,0.484243,0.360836,0.175554,0.138785,0.183202,0.131611,0.737189,0.226585,0.560783,0.712103,0.0724744,0.00895375,0.96744,0.836524,0.609458,0.375659,0.794222,0.639015,0.438303,0.316436,0.0528337,0.674349,0.858249,0.538655,0.244918,0.523943,0.438627,0.82989,0.80054,0.582506,0.223265,0.528666,0.885893,0.970044,0.740004,0.961561,0.516353,0.634843,0.831825,0.332073,0.928922,0.0438338,0.746363,0.113892,0.180521,0.458862,0.367085,0.0557616,0.87464,0.489992,0.132582,0.796485,0.768,0.122035,0.0236007,0.657355,0.876628,0.530367,0.778913,0.969521,0.687233,0.238966,0.0362157,0.699405,0.845025,0.356491,0.494208,0.569667,0.286517,0.50841,0.850307,0.717675,0.383633,0.160346,0.20639,0.0224493,0.555872,0.0978671,0.254055,0.891033,0.209934,0.755572,0.152796,0.0856779,0.612189,0.205335,0.426983,0.0415936,0.933267,0.441018,0.64274,0.316467,0.985244,0.405545,0.0049693,0.0189198,0.755932,0.682148,0.938807,0.216499,0.173273,0.864274,0.646366,0.495515,0.754476,0.353349,0.937631,0.890828,0.0329525,0.478628,0.391055,0.0133086,0.734305,0.297189,0.142057,0.137145,0.107693,0.200534,0.573148,0.209284,0.922119,0.927304,0.0322728,0.101058,0.379824,0.670206,0.705019,0.0997981,0.0712681,0.474292,0.775702,0.592966,0.257952,0.553921,0.237634,0.69255,0.597852,0.855034,0.86582,0.819371,0.0203716,0.487644,0.896489,0.200967,0.881258,0.803551,0.0142031,0.00112927,0.254625,0.146025,0.795491,0.257709,0.709968,0.759767,0.578623,0.0221878,0.755167,0.638534,0.112053,0.0901814,0.911252,0.761712,0.606124,0.0448036,0.357045,0.580193,0.557548,0.0636094,0.356289,0.114515,0.177393,0.578152,0.0516873,0.610685,0.564605,0.0782173,0.901807,0.963935,0.617416,0.860808,0.533546,0.208767,0.520786,0.472244,0.847648,0.531239,0.416664,0.384181,0.248083,0.271807,0.522857,0.902271,0.873629,0.651862,0.440561,0.167917,0.242199,0.445132,0.167181,0.0915086,0.171626,0.508179,0.957834,0.724541,0.114201,0.252433,0.278946,0.762995,0.815643,0.637377,0.939639,0.561466,0.238369,0.729674,0.758139,0.515184,0.55723,0.0916008,0.110817,0.820084,0.503715,0.683753,0.250069,0.89138,0.931461,0.982702,0.954268,0.791102,0.925074,0.152018,0.812606,0.00561917,0.544847,0.214513,0.942945,0.988332,0.852625,0.163359,0.899355,0.500677,0.961941,0.764483,0.714668,0.785334,0.320803,0.996067,0.856833,0.328077,0.111691,0.196145,0.274981,0.585956,0.118476,0.882987,0.187374,0.323215,0.627738,0.672672,0.54572,0.161135,0.622818,0.403943,0.298327,0.390086,0.815002,0.252082,0.231689,0.75586,0.288061,0.0414946,0.510451,0.74398,0.761627,0.574476,0.664581,0.383041,0.853529,0.941548,0.620148,0.81553,0.0445344,0.493239,0.68121,0.173195,0.325658,0.025246,0.794227,0.20927,0.296252,0.208458,0.57158,0.291388,0.636192,0.75428,0.757148,0.0544616,0.0269157,0.527372,0.424901,0.178797,0.52582,0.0214741,0.342436,0.773089,0.194521,0.384857,0.14529,0.521421,0.577117,0.707479,0.00590569,0.100318,0.845076,0.122493,0.692387,0.839585,0.581399,0.0641795,0.319348,0.881854,0.617751,0.632849,0.738575,0.99319,0.58747,0.0788748,0.815623,0.422977,0.0954122,0.282096,0.690428,0.178239,0.323596,0.136357,0.0491735,0.614746,0.611805,0.834158,0.405463,0.0509436,0.339697,0.985656,0.334458,0.00629687,0.816979,0.627784,0.520516,0.615864,0.151119,0.150304,0.298594,0.0996892,0.72555,0.286993,0.466546,0.193107,0.167004,0.319141,0.202859,0.508182,0.835123,0.384379,0.839403,0.903696,0.22351,0.697252,0.127162,0.271539,0.976865,0.0474777,0.220866,0.206898,0.417093,0.564526,0.182473,0.0776515,0.911647,0.279521,0.0118118,0.342492,0.112867,0.0245904,0.8975,0.957148,0.0275592,0.74332,0.693568,0.636889,0.231923,0.645668,0.65995,0.0836131,0.154727,0.877927,0.520143,0.742497,0.892491,0.416499,0.643051,0.356224,0.961975,0.346148,0.230913,0.974235,0.803007,0.182151,0.230717,0.169829,0.0956233,0.31955,0.49318,0.359937,0.0638889,0.597227,0.0617221,0.107864,0.155856,0.92745,0.471692,0.841301,0.939193,0.973932,0.392545,0.948386,0.885746,0.132276,0.133482,0.539681,0.322249,0.681406,0.412005,0.401552,0.0071069,0.929353,0.973395,0.915508,0.950628,0.137529,0.390999,0.0322182,0.561084,0.104771,0.701306,0.409324,0.543677,0.688572,0.824699,0.990642,0.886392,0.0547598,0.909127,0.657945,0.324292,0.299739,0.305163,0.935416,0.687737,0.247033,0.128285,0.611958,0.526865,0.779069,0.517293,0.467816,0.765455,0.0752219,0.366544,0.436552,0.728328,0.491741,0.610261,0.942935,0.124398,0.934839,0.966177,0.0475563,0.0918126,0.349385,0.918234,0.575719,0.105571,0.569958,0.385403,0.56618,0.756896,0.300437,0.623799,0.125307,0.48112,0.18089,0.54373,0.993313,0.220956,0.672702,0.00462395,0.728803,0.392884,0.0628365,0.635308,0.240794,0.822924,0.827517,0.122264,0.707465,0.16087,0.621447,0.575546,0.4935,0.68091,0.0663494,0.352245,0.66317,0.975351,0.123547,0.931473,0.204009,0.140687,0.486351,0.474385,0.0972624,0.239649,0.526227,0.401444,0.672895,0.0842169,0.288156,0.417491,0.0915961,0.893659,0.07813,0.570007,0.307744,0.866953,0.139419,0.0658181,0.873837,0.571051,0.809802,0.213756,0.808637,0.233783,0.468982,0.373185,0.708804,0.931313,0.387505,0.435944,0.31654,0.628458,0.944168,0.434556,0.295828,0.469136,0.824911,0.886654,0.731668,0.449666,0.716433,0.203995,0.413535,0.595656,0.445843,0.77622,0.693114,0.269811,0.359876,0.798824,0.494285,0.190277,0.535082,0.437279,0.0380216,0.313866,0.182385,0.798946,0.138096,0.221809,0.639409,0.992417,0.744715,0.269256,0.308671,0.307426,0.659648,0.841499,0.348915,0.832653,0.0527245,0.309264,0.91223,0.895506,0.666537,|0.90708,0.242725,0.422111,0.428419,0.333412,0.600212,0.63051,0.282535,0.328901,0.775726,0.145334,0.460223,0.88491,0.966375,0.0526454,0.534348,0.834687,0.456589,0.216818,0.37842,0.771385,0.718804,0.905056,0.0576985,0.625899,0.351673,0.104175,0.871164,0.867212,0.576904,0.231943,0.51267,0.347927,0.965063,0.338853,0.939051,0.581078,0.549356,0.322099,0.712037,0.0677985,0.737812,0.117953,0.0809577,0.278272,0.455241,0.650044,0.0599529,0.833056,0.643722,0.0847849,0.155079,0.969131,0.0570084,0.0848964,0.790558,0.450008,0.807536,0.231119,0.602211,0.689824,0.3304,0.621569,0.585025,0.125082,0.837878,0.217344,0.213077,0.376906,0.815771,0.953653,0.235828,0.497282,0.247431,0.654285,0.466988,0.271143,0.0427116,0.0148695,0.246769,0.1733,0.223597,0.0924568,0.890465,0.385968,0.307371,0.10704,0.390169,0.935869,0.016396,0.56272,0.97409,0.576083,0.0906684,0.10701,0.704738,0.373161,0.385636,0.255353,0.0951334,0.180693,0.291026,0.706998,0.401143,0.793673,0.273241,0.995732,0.0110683,0.639427,0.190576,0.098236,0.988695,0.0685163,0.509275,0.415258,0.982478,0.793403,0.228574,0.537525,0.163117,0.763775,0.279464,0.96578,0.62025,0.162069,0.638844,0.721052,0.98288,0.81569,0.148443,0.538742,0.472459,0.427868,0.0710669,0.0949745,0.612796,0.245675,0.0220408,0.261217,0.951991,0.11745,0.26823,0.738539,0.196701,0.49403,0.795664,0.616773,0.397597,0.358854,0.602829,0.306949,0.520367,0.606851,0.190994,0.89803,0.674427,0.776935,0.28747,0.071564,0.453878,0.877871,0.546687,0.17576,0.872721,0.226015,0.196839,0.263665,0.352461,0.559047,0.930062,0.148543,0.685188,0.234321,0.299314,0.54984,0.405733,0.469828,0.445797,0.56895,0.822868,0.918776,0.509812,0.984227,0.929388,0.603881,0.425559,0.334329,0.141322,0.505245,0.861217,0.329201,0.748423,0.34294,0.599557,0.848103,0.00553918,0.383501,0.175688,0.393008,0.671018,0.0834637,0.79976,0.238908,0.0988858,0.25309,0.00144649,0.375722,0.453863,0.58944,0.801302,0.397908,0.912446,0.250646,0.870381,0.516267,0.15821,0.251752,0.869131,0.71321,0.390327,0.545217,0.0452074,0.601388,0.079831,0.0603399,0.489233,0.318052,0.769162,0.844225,0.420124,0.190513,0.778685,0.896406,0.745705,0.314824,0.00148499,0.594247,0.0820216,0.318674,0.221722,0.195353,0.367318,0.49884,0.144274,0.59472,0.2197,0.18718,0.8142,0.813781,0.547359,0.711495,0.0415059,0.624834,0.422467,0.586419,0.0805259,0.933011,0.926523,0.909179,0.812626,0.278711,0.992634,0.327277,0.894259,0.425758,0.286743,0.0887827,0.519262,0.736449,0.557383,0.218623,0.385243,0.837916,0.45092,0.857131,0.781878,0.0534115,0.31027,0.0771243,0.936568,0.33456,0.533059,0.975921,0.986145,0.784156,0.204032,0.485841,0.274279,0.0741062,0.805203,0.073195,0.0838436,0.982053,0.808895,0.931145,0.819477,0.539569,0.795656,0.391279,0.0936909,0.656121,0.729839,0.928514,0.601508,0.0463384,0.478746,0.731507,0.34014,0.192351,0.818441,0.287748,0.257759,0.318315,0.264539,0.654,0.92131,0.882444,0.493985,0.288903,0.142764,0.874088,0.819089,0.00279337,0.0488127,0.539563,0.652178,0.236506,0.683364,0.00361902,0.704839,0.0912071,0.976639,0.723903,0.523618,0.120468,0.517973,0.841241,0.703014,0.962339,0.682183,0.924419,0.0916668,0.438875,0.162983,0.136683,0.638008,0.341373,0.385116,0.54904,0.880064,0.577149,0.00508225,0.563847,0.135918,0.893155,0.483301,0.414512,0.37824,0.390334,0.0686038,0.177461,0.635496,0.708353,0.32418,0.309859,0.770633,0.254592,0.85095,0.0287759,0.577229,0.9569,0.921099,0.760258,0.817106,0.254906,0.0574667,0.101745,0.722684,0.416472,0.745811,0.950623,0.718296,0.413737,0.0636312,0.710112,0.879755,0.723291,0.34811,0.565271,0.064121,0.893107,0.0187482,0.386931,0.313579,0.27668,0.153107,0.495767,0.611835,0.755873,0.347537,0.462605,0.798144,0.842075,0.614873,0.905055,0.551697,0.133474,0.0222403,0.376403,0.900343,0.790519,0.650583,0.0881363,0.302226,0.169566,0.154787,0.337984,0.851873,0.507244,0.470937,0.154139,0.626623,0.483652,0.803423,0.503601,0.362097,0.182808,0.851145,0.687139,0.277351,0.538028,0.0910141,0.127827,0.305474,0.677142,0.172883,0.00227755,0.586238,0.754896,0.205901,0.429828,0.314589,0.280407,0.938033,0.436185,0.46064,0.521713,0.892953,0.698823,0.221784,0.286727,0.520429,0.644861,0.388849,0.402568,0.442238,0.956044,0.910858,0.882847,0.917844,0.989725,0.817465,0.0394997,0.329053,0.537078,0.336995,0.539697,0.474644,0.873092,0.0123619,0.229606,0.405133,0.253368,0.67233,0.695005,0.27705,0.673616,0.332809,0.877013,0.78538,0.935773,0.883795,0.854206,0.957468,0.97883,0.840765,0.192508,0.377812,0.919506,0.748893,0.633461,0.606664,0.695672,0.374646,0.227712,0.0992437,0.228232,0.141909,0.276054,0.601153,0.932721,0.38805,0.579727,0.227889,0.468075,0.906824,0.1329,0.0644752,0.403017,0.407751,0.0978503,0.44476,0.766722,0.616836,0.555806,0.798189,0.181277,0.39185,0.736826,0.456957,0.227481,0.813643,0.104675,0.508575,0.443274,0.00187486,0.160342,0.507753,0.544822,0.687769,0.521377,0.790856,0.98605,0.161122,0.573133,0.101128,0.777752,0.860471,0.0472147,0.974673,0.809616,0.203915,0.620213,0.573972,0.0862583,0.408139,0.733297,0.701214,0.693329,0.0497051,0.480998,0.885318,0.377842,0.880403,0.441898,0.699961,0.699605,0.800541,0.744991,0.733486,0.344835,0.638334,0.751657,0.794504,0.580568,0.21816,0.0814124,0.72758,0.944298,0.283535,0.170352,0.622064,0.813939,0.81318,0.685674,0.221169,0.881459,0.66294,0.669933,0.255239,0.00392812,0.521858,0.907373,0.020362,0.0984456,0.0586478,0.999064,0.079823,0.373034,0.724221,0.86534,0.455319,0.375485,0.838455,0.928343,0.756563,0.392677,0.782335,0.801442,0.866377,0.529992,0.48361,0.508603,0.831741,0.31377,0.254354,0.0793347,0.812688,0.134919,0.169802,0.161065,0.518084,0.000540376,0.502606,0.131349,0.736834,0.133451,0.970151,0.124294,0.632674,0.845764,0.160523,0.697326,0.675391,0.603358,0.10176,0.00120699,0.535664,0.708539,0.445445,0.567238,0.931813,0.587693,0.740588,0.0810162,0.0805634,0.830265,0.0622015,0.0604193,0.221556,0.751472,0.395109,0.0121725,0.313599,0.148839,0.884414,0.121157,0.557173,0.284171,0.489814,0.285506,0.178421,0.967185,0.0836395,0.0796762,0.533181,0.589679,0.919062,0.870789,0.804881,0.564963,0.940379,0.343191,0.287882,0.378461,0.777482,0.745448,0.00138485,0.848733,0.594412,0.976404,0.48134,0.329398,0.269493,0.792727,0.714274,0.0245106,0.193753,0.173281,0.568021,0.367568,0.339646,0.828602,0.74863,0.956064,0.566781,0.58004,0.546427,0.575067,0.186289,0.845011,0.00613004,0.943635,0.49142,0.00611204,0.160731,0.844821,0.229892,0.933141,0.413441,0.259588,0.621918,0.263066,0.262669,0.488575,0.127544,0.325378,0.681345,0.951695,0.842376,0.0535069,0.684841,0.458876,0.963485,0.908494,0.646515,0.578523,0.424541,0.85905,0.56723,0.614938,0.299465,0.068393,0.783891,0.685171,0.138359,0.079037,0.940148,0.403308,0.403522,0.951803,0.534321,0.516519,0.189613,0.565857,0.356611,0.144465,0.871581,0.313212,0.0691027,0.523197,0.277044,0.957301,0.55475,0.499555,0.673774,0.423684,0.198022,0.159411,0.771282,0.138816,0.814071,0.0661274,0.372477,0.667917,0.810393,0.662692,0.344822,0.521526,0.956886,0.195787,0.522883,0.870077,0.225831,0.377112,0.774359,0.936942,0.529249,0.553073,0.436158,0.691056,0.806061,0.680289,0.345395,0.718396,0.964327,0.48614,0.849303,0.0708646,0.542968,0.862809,0.945993,0.273258,0.243738,0.720539,0.867091,0.719409,0.910277,0.30433,0.954607,0.231718,0.760674,0.529884,0.766358,0.886314,0.925484,0.677986,0.690682,0.949123,0.187285,0.148708,0.363538,0.5782,0.755433,0.239661,0.376094,0.309808,0.301136,0.339063,0.784845,0.0464064,0.929526,0.980706,0.087522,0.347354,0.977746,0.239138,0.263785,0.371491,0.441133,0.56176,0.54674,0.580238,0.916368,0.422409,0.691612,0.146072,0.388951,0.801202,0.783224,0.854015,0.317387,0.431491,0.42605,0.700404,0.506254,0.102836,0.605449,0.545011,0.916973,0.000136375,0.42569,0.0456979,0.791623,0.371537,0.513556,0.805106,0.858845,0.11294,0.945332,0.325972,0.82716,0.813799,0.596234,0.937322,0.171596,0.855328,0.965415,0.684476,0.334757,0.961761,0.56849,0.997705,0.943034,0.821146,0.785036,0.10749,0.682569,0.373735,0.607901,0.451714,0.984683,0.130129,0.515494,0.975361,0.711847,0.0138957,0.0506843,0.121796,0.00725907,0.127788,0.854999,0.132383,0.25756,0.980708,0.15203,0.0675955,0.571361,0.979907,0.644901,0.0496107,0.224312,0.0266768,0.109918,0.761474,0.0237756,0.697826,0.3544,0.714384,0.207744,0.897272,0.123589,0.520518,0.879607,0.485255,0.542359,0.429828,0.517749,0.708357,0.567385,0.0773392,0.462992,0.344576,0.662486,0.418471,0.992059,0.999535,0.714415,0.460492,0.876623,0.834433,0.496877,0.733292,0.527445,0.253323,0.700642,0.713586,0.934624,0.08051,0.206553,0.70942,0.87078,0.644427,0.111725,0.936451,0.0744034,0.580061,0.583524,0.409507,0.678891,0.233927,0.130811,0.329226,0.886878,0.4851,0.397067,0.939443,0.817346,0.570723,0.155139,0.681764,0.243176,0.932841,0.0112275,0.0170746,0.505529,0.103084,0.573869,0.00153899,0.0171563,0.202881,0.265618,0.0144969,0.694449,0.951297,0.391719,0.0607569,0.164122,0.96998,0.303963,0.756026,0.901938,0.231997,0.747617,0.828655,0.673069,0.846522,0.870206,0.755439,0.939979,0.579714,0.0206878,0.321335,0.972926,0.91045,0.76809,0.459002,0.675998,0.485553,0.272946,0.123699,0.922701,0.343377,0.0469004,0.633464,0.189746,0.531452,0.973372,0.0858068,0.577173,|0.402184,0.351678,0.761453,0.471816,0.732129,0.276605,0.386451,0.791441,0.79343,0.589344,0.37564,0.263974,0.711574,0.0218465,0.590934,0.0760896,0.438671,0.413293,0.573815,0.420043,0.44871,0.874548,0.413465,0.821946,0.897467,0.149227,0.305081,0.350199,0.224997,0.920694,0.250121,0.83966,0.0269287,0.340507,0.0340956,0.869781,0.657547,0.34026,0.443829,0.324244,0.516618,0.469214,0.399349,0.284991,0.215565,0.254157,0.912825,0.986409,0.531105,0.443335,0.387173,0.669315,0.0410572,0.584448,0.80847,0.796716,0.78223,0.718438,0.156846,0.301646,0.392291,0.561889,0.454921,0.590132,0.52925,0.434868,0.645185,0.899116,0.353188,0.375594,0.714988,0.684377,0.115063,0.372875,0.260633,0.859869,0.45177,0.910217,0.613674,0.868416,0.595951,0.459259,0.0349349,0.091644,0.28972,0.216015,0.870579,0.64804,0.859247,0.553253,0.317992,0.990629,0.15755,0.163162,0.694018,0.0425083,0.464975,0.628966,0.0961487,0.917414,0.012637,0.877987,0.976279,0.830109,0.292373,0.246817,0.333421,0.3475,0.620031,0.683131,0.569133,0.539166,0.644376,0.126075,0.0432877,0.0973513,0.937273,0.213733,0.299727,0.526292,0.243111,0.461896,0.807317,0.932582,0.555499,0.39995,0.903783,0.71257,0.763228,0.0718662,0.129214,0.436601,0.580043,0.731197,0.836335,0.864753,0.778718,0.571524,0.927782,0.0670072,0.890343,0.636822,0.529085,0.0616272,0.0108632,0.588304,0.682743,0.298576,0.802133,0.778918,0.103743,0.80993,0.618876,0.161206,0.0965231,0.913961,0.180048,0.923876,0.862134,0.982998,0.703775,0.97488,0.808387,0.24314,0.795,0.809918,0.400902,0.430218,0.0789689,0.740247,0.566025,0.216179,0.172681,0.295106,0.141185,0.0675478,0.62351,0.71075,0.13297,0.229473,0.40205,0.125847,0.943921,0.91868,0.624897,0.750327,0.969561,0.735314,0.843123,0.352352,0.589992,0.678741,0.394161,0.682941,0.616499,0.696954,0.327731,0.495764,0.603507,0.253965,0.419139,0.0697492,0.717341,0.219734,0.605624,0.717319,0.0969709,0.200279,0.303071,0.15487,0.833866,0.873799,0.425208,0.690435,0.606156,0.247457,0.45479,0.188809,0.469769,0.709518,0.101427,0.38096,0.075608,0.110923,0.988688,0.0860546,0.180807,0.118741,0.806531,0.982032,0.128532,0.624147,0.408958,0.894763,0.715707,0.976263,0.232002,0.512831,0.0102835,0.315401,0.062032,0.13061,0.427321,0.207175,0.882864,0.134663,0.520875,0.86821,0.298046,0.863399,0.412259,0.508323,0.840485,0.87782,0.266687,0.491942,0.860603,0.280462,0.260596,0.621287,0.730321,0.201008,0.136915,0.908246,0.464142,0.139892,0.974381,0.515146,0.113501,0.412892,0.885362,0.38069,0.904686,0.621493,0.844882,0.349874,0.0250189,0.598838,0.0652962,0.520793,0.290709,0.16488,0.380285,0.487085,0.427834,0.238344,0.282391,0.0839957,0.420557,0.215878,0.865294,0.338196,0.413232,0.712835,0.149236,0.77877,0.577283,0.609701,0.486096,0.813354,0.27804,0.754905,0.933518,0.868831,0.471401,0.24584,0.152167,0.0620294,0.24993,0.173785,0.930628,0.908198,0.117195,0.287956,0.654669,0.768107,0.856608,0.204662,0.773925,0.0688487,0.425331,0.441391,0.31447,0.187822,0.556888,0.315251,0.248966,0.58368,0.550127,0.515134,0.328434,0.668175,0.248828,0.524561,0.664683,0.292037,0.492425,0.818584,0.72959,0.243247,0.757157,0.78547,0.783529,0.258915,0.779264,0.882279,0.399445,0.0362844,0.608403,0.673654,0.659487,0.210469,0.515427,0.766285,0.0771145,0.705452,0.296348,0.159821,0.687613,0.931462,0.45807,0.804924,0.338236,0.121224,0.301694,0.620061,0.665922,0.980411,0.455631,0.932916,0.909686,0.110669,0.382613,0.384658,0.0344952,0.392798,0.555473,0.474541,0.279645,0.159741,0.4998,0.934702,0.647746,0.479,0.232645,0.501612,0.447951,0.169537,0.51436,0.925266,0.348842,0.582936,0.651467,0.168288,0.0583974,0.000667989,0.913774,0.538427,0.462196,0.900573,0.5288,0.358415,0.249947,0.802387,0.319347,0.399508,0.537364,0.254686,0.339522,0.304921,0.749453,0.755587,0.64165,0.399931,0.440245,0.420508,0.181916,0.246866,0.264221,0.748897,0.445267,0.357587,0.860001,0.435292,0.970228,0.193274,0.99249,0.781172,0.0607151,0.50682,0.389125,0.978074,0.243358,0.0255864,0.0605317,0.222376,0.626922,0.957958,0.46237,0.563759,0.754307,0.787108,0.204586,0.756194,0.171266,0.132061,0.154822,0.348701,0.138131,0.193436,0.0591873,0.246358,0.784815,0.0757098,0.127504,0.545062,0.0678737,0.82154,0.74022,0.615925,0.621405,0.266083,0.573117,0.649649,0.316477,0.882524,0.179722,0.348567,0.611571,0.963903,0.803973,0.877349,0.258625,0.39537,0.824632,0.817423,0.108831,0.742172,0.271407,0.826733,0.268208,0.359229,0.0659342,0.0146589,0.519874,0.476201,0.686499,0.639146,0.185262,0.104888,0.475873,0.754184,0.880046,0.306615,0.733045,0.111328,0.419862,0.764119,0.301396,0.164047,0.78271,0.372672,0.512712,0.915108,0.446027,0.13735,0.700328,0.808041,0.173385,0.246299,0.0801562,0.495576,0.747138,0.616962,0.680001,0.924776,0.815984,0.50463,0.572391,0.0526471,0.552985,0.608839,0.305846,0.0322446,0.674383,0.719103,0.367237,0.0791195,0.439553,0.944793,0.8939,0.452599,0.394051,0.526901,0.44073,0.819593,0.711788,0.0566244,0.887172,0.470206,0.252241,0.97094,0.372787,0.250928,0.295394,0.313037,0.826575,0.812341,0.653091,0.445608,0.483718,0.946194,0.333413,0.512258,0.741182,0.239272,0.212576,0.289008,0.190845,0.592748,0.699731,0.750954,0.0258445,0.391165,0.821124,0.696649,0.468707,0.953859,0.114219,0.944845,0.561414,0.831172,0.757619,0.00168318,0.0690139,0.737253,0.996092,0.247812,0.14855,0.896037,0.959597,0.91073,0.629243,0.938293,0.500458,0.273088,0.745485,0.75602,0.702614,0.64261,0.59028,0.364697,0.178611,0.439615,0.784507,0.627762,0.0475173,0.214343,0.216514,0.204485,0.549789,0.0656247,0.778666,0.894166,0.00692785,0.0464367,0.324354,0.172228,0.848913,0.978416,0.507238,0.092163,0.697362,0.746438,0.267929,0.894389,0.0808287,0.450517,0.377882,0.988017,0.240898,0.229877,0.596384,0.883317,0.656041,0.384982,0.131067,0.671659,0.626912,0.818413,0.594132,0.587342,0.957522,0.454597,0.490312,0.230181,0.287961,0.139794,0.0720245,0.544721,0.441956,0.204234,0.107785,0.0763738,0.0999412,0.295028,0.533398,0.774363,0.472825,0.332795,0.483415,0.146732,0.460782,0.562892,0.208383,0.685872,0.353199,0.0510923,0.959901,0.250567,0.165464,0.551037,0.818578,0.30845,0.680398,0.869763,0.898765,0.724574,0.725716,0.980612,0.965098,0.224402,0.68082,0.47393,0.212363,0.883978,0.556667,0.816095,0.948547,0.120311,0.325465,0.315621,0.544005,0.0589364,0.80927,0.511974,0.545493,0.373248,0.881334,0.846658,0.423763,0.762246,0.528372,0.796358,0.940311,0.749965,0.732459,0.151698,0.413694,0.520886,0.123283,0.58076,0.661243,0.404192,0.096411,0.451831,0.444458,0.769753,0.0276071,0.384071,0.765977,0.0541283,0.315592,0.348793,0.0526572,0.910106,0.991594,0.993009,0.884544,0.145743,0.309727,0.912431,0.491527,0.516794,0.719807,0.861607,0.693073,0.0511542,0.912665,0.413292,0.162665,0.223165,0.477392,0.858806,0.0160276,0.46688,0.531143,0.646769,0.850908,0.654021,0.400693,0.342194,0.64005,0.00392604,0.829795,0.0218948,0.168772,0.0721151,0.772796,0.276535,0.457168,0.0721564,0.889029,0.825852,0.336692,0.92175,0.106812,0.683802,0.918291,0.230038,0.217494,0.145606,0.133403,0.096238,0.0736101,0.459416,0.66084,0.690871,0.313307,0.354843,0.930236,0.0147213,0.120763,0.309388,0.601156,0.768983,0.164428,0.70235,0.151556,0.0219932,0.73229,0.747684,0.420284,0.210466,0.216788,0.467555,0.431021,0.335574,0.445777,0.163984,0.698922,0.0922343,0.00298941,0.911004,0.165603,0.064191,0.0999497,0.0968636,0.861976,0.38308,0.530663,0.506788,0.707977,0.52495,0.303373,0.834347,0.692927,0.75326,0.654112,0.812109,0.108549,0.611747,0.136192,0.722709,0.814166,0.528961,0.639311,0.152501,0.701786,0.625432,0.711097,0.654571,0.746049,0.216794,0.749944,0.71891,0.4535,0.500863,0.985607,0.965533,0.585944,0.26453,0.11077,0.456061,0.147178,0.248156,0.36832,0.388848,0.934523,0.453227,0.0843775,0.750065,0.661317,0.0468379,0.833701,0.0627952,0.478373,0.840448,0.0863825,0.877923,0.52156,0.756813,0.694349,0.849188,0.418103,0.0145891,0.792159,0.721725,0.670032,0.726708,0.00829333,0.439552,0.9334,0.737247,0.393858,0.864902,0.462816,0.9342,0.970421,0.960337,0.641382,0.279215,0.109945,0.0744655,0.888255,0.105828,0.45882,0.996814,0.886158,0.328934,0.249374,0.0692546,0.902226,0.936451,0.913742,0.0810872,0.259803,0.354276,0.00744772,0.324414,0.407778,0.704476,0.0196947,0.605411,0.519459,0.80168,0.49354,0.311726,0.970046,0.323165,0.980081,0.01142,0.391251,0.560999,0.693207,0.318067,0.154722,0.416362,0.252391,0.219117,0.361066,0.602189,0.079581,0.370949,0.333095,0.843185,0.96979,0.490957,0.949047,0.429912,0.7336,0.634777,0.0581412,0.970854,0.57906,0.735799,0.388412,0.701315,0.858055,0.0918546,0.541337,0.193967,0.933394,0.699016,0.828182,0.905145,0.642649,0.539634,0.662302,0.794141,0.972019,0.841627,0.0516684,0.0854639,0.631002,0.841384,0.428404,0.548743,0.35597,0.165884,0.550652,0.288104,0.490673,0.578596,0.280562,0.542071,0.861019,0.910449,0.234402,0.257787,0.188823,0.491895,0.166407,0.614534,0.224037,0.0490874,0.708856,0.975977,0.83844,0.296181,0.766587,0.619419,0.156446,0.149257,0.552699,0.985978,0.974827,0.505227,0.741321,0.357614,0.711359,0.902441,0.0478627,0.449148,0.263541,0.718395,0.207968,0.72735,0.374433,0.509513,0.339313,0.612594,0.496446,0.899853,0.491701,0.0291532,0.1257,0.987588,0.576396,0.117482,|0.19391,0.110373,0.89466,0.775926,0.594872,0.998981,0.189403,0.149215,0.305749,0.350649,0.123808,0.292202,0.543731,0.971227,0.896127,0.370225,0.920063,0.693755,0.163373,0.355731,0.451697,0.211091,0.354028,0.730816,0.848312,0.976032,0.124795,0.63287,0.4438,0.100131,0.364166,0.528648,0.789882,0.00816637,0.793833,0.808069,0.308594,0.947606,0.342527,0.51745,0.0584946,0.698351,0.331035,0.287015,0.484342,0.822551,0.697036,0.66962,0.0912272,0.500183,0.76936,0.695094,0.854593,0.651871,0.304774,0.202043,0.887958,0.860751,0.916022,0.850731,0.530016,0.856648,0.786615,0.740718,0.10291,0.597863,0.0351881,0.425845,0.836206,0.315404,0.0105067,0.240058,0.229057,0.979515,0.115493,0.197724,0.265684,0.448046,0.11682,0.601791,0.953991,0.0896764,0.637676,0.24133,0.929044,0.538512,0.0961006,0.854218,0.703253,0.606459,0.874357,0.964169,0.860485,0.424042,0.770193,0.887067,0.401983,0.0745094,0.592036,0.13453,0.527624,0.195696,0.660889,0.127366,0.273037,0.858162,0.00794762,0.878462,0.442603,0.930571,0.295171,0.608924,0.991337,0.233788,0.292316,0.180798,0.594645,0.750009,0.222847,0.66185,0.394423,0.408781,0.29947,0.295899,0.173954,0.677706,0.430038,0.0344338,0.712507,0.236304,0.853924,0.467486,0.887223,0.363446,0.00813001,0.641719,0.653757,0.22906,0.970919,0.339002,0.638904,0.387238,0.238306,0.231703,0.256154,0.011502,0.0611531,0.783703,0.700644,0.200733,0.136899,0.119168,0.585769,0.218485,0.66808,0.81993,0.253949,0.766375,0.445381,0.909921,0.707326,0.0682139,0.585367,0.404667,0.656566,0.0236951,0.364309,0.73493,0.217029,0.416962,0.779597,0.770764,0.303865,0.15075,0.0692117,0.160645,0.377038,0.975427,0.546961,0.270416,0.997337,0.228347,0.166606,0.0381132,0.969604,0.36689,0.285479,0.633049,0.626115,0.244289,0.447935,0.307188,0.32455,0.98695,0.660378,0.625964,0.237917,0.311338,0.228299,0.532654,0.480662,0.295786,0.0359695,0.325986,0.248886,0.238747,0.142031,0.560846,0.672144,0.211719,0.931549,0.658986,0.0264928,0.516444,0.636193,0.481707,0.370855,0.31919,0.785521,0.428147,0.684874,0.761155,0.216735,0.270716,0.835537,0.343189,0.0604957,0.453213,0.361376,0.80887,0.143144,0.813527,0.692587,0.706419,0.617572,0.414536,0.902058,0.997048,0.252852,0.336215,0.737629,0.451755,0.330405,0.0980766,0.0186969,0.486951,0.658872,0.953081,0.796792,0.926271,0.800782,0.149264,0.569243,0.257922,0.943967,0.338469,0.215002,0.00748909,0.719742,0.652782,0.677846,0.0117046,0.965006,0.256605,0.191557,0.0992644,0.961329,0.557525,0.982704,0.194875,0.999224,0.332226,0.52587,0.847782,0.103985,0.543767,0.715242,0.872343,0.280092,0.908966,0.664513,0.0360941,0.588407,0.482653,0.284128,0.728875,0.0694079,0.329869,0.636914,0.243098,0.329277,0.00824815,0.838862,0.929899,0.566112,0.0382158,0.670601,0.981244,0.415494,0.671914,0.215677,0.741694,0.281939,0.97811,0.107752,0.351942,0.71131,0.210747,0.944785,0.381687,0.44609,0.364876,0.846702,0.351211,0.530002,0.622664,0.54503,0.512335,0.0642938,0.262475,0.426636,0.202343,0.233935,0.50761,0.501955,0.437954,0.178274,0.739925,0.0275061,0.478533,0.474377,0.0759412,0.425198,0.933842,0.0259641,0.071459,0.497568,0.36876,0.115044,0.114367,0.751527,0.96236,0.0335079,0.441378,0.929257,0.079479,0.357147,0.717418,0.39739,0.237023,0.760435,0.922913,0.167628,0.604076,0.21159,0.968151,0.162589,0.214499,0.197221,0.371047,0.264392,0.830298,0.378534,0.359821,0.18681,0.937427,0.257216,0.612502,0.777269,0.167706,0.0384617,0.330131,0.141612,0.941999,0.43389,0.646432,0.418219,0.0848034,0.950597,0.766048,0.96941,0.55022,0.996733,0.299834,0.222077,0.935672,0.395122,0.525533,0.845905,0.788971,0.314916,0.829716,0.806115,0.350114,0.59235,0.621717,0.842821,0.896357,0.819473,0.76787,0.313413,0.916408,0.734795,0.277326,0.415441,0.74539,0.521022,0.605819,0.0957137,0.656908,0.0110973,0.703913,0.117613,0.852544,0.880428,0.74261,0.524955,0.370135,0.297084,0.975804,0.684637,0.162217,0.633475,0.434847,0.363752,0.871102,0.950865,0.20367,0.460412,0.240047,0.484197,0.49811,0.176176,0.918565,0.295533,0.257193,0.864577,0.409602,0.579275,0.460603,0.586091,0.350391,0.232091,0.221207,0.846171,0.869139,0.967493,0.754113,0.943793,0.542743,0.949538,0.834386,0.48111,0.184296,0.188111,0.502097,0.75672,0.468723,0.827332,0.495395,0.435059,0.908429,0.754088,0.437083,0.709557,0.39479,0.987297,0.242844,0.979194,0.0759333,0.294839,0.595084,0.565421,0.539386,0.640153,0.0692536,0.734677,0.754488,0.0557914,0.911828,0.992364,0.0709466,0.298862,0.862003,0.690139,0.236498,0.950231,0.703153,0.68716,0.996748,0.453045,0.75674,0.0466115,0.998478,0.872678,0.515161,0.512525,0.115839,0.689455,0.858744,0.182787,0.485068,0.283997,0.741096,0.544066,0.736378,0.582264,0.0679981,0.969819,0.0502385,0.381634,0.848385,0.0154726,0.734162,0.708513,0.0839697,0.503217,0.0793243,0.977869,0.0145499,0.586331,0.856299,0.845264,0.412546,0.565066,0.654776,0.771512,0.767248,0.870509,0.125349,0.567126,0.538552,0.0315019,0.29532,0.392317,0.881427,0.500102,0.335143,0.622871,0.373239,0.889263,0.108029,0.986424,0.659633,0.834061,0.247382,0.911339,0.00540739,0.853722,0.546641,0.419135,0.723646,0.941352,0.353805,0.567693,0.990143,0.634664,0.671102,0.926117,0.625257,0.208276,0.369526,0.918407,0.968337,0.980987,0.451474,0.803579,0.130189,0.579165,0.494373,0.966623,0.741635,0.508578,0.942024,0.424214,0.0342693,0.650706,0.76661,0.365138,0.2541,0.162404,0.161948,0.626412,0.115355,0.760335,0.497591,0.479463,0.458077,0.320232,0.256048,0.277793,0.732785,0.889907,0.879955,0.270022,0.918807,0.640081,0.0824106,0.138756,0.626739,0.507709,0.9705,0.0726674,0.432598,0.0348058,0.930404,0.159704,0.348476,0.114914,0.781439,0.333637,0.787434,0.567722,0.767636,0.349903,0.862709,0.625269,0.15401,0.684388,0.397891,0.113646,0.52876,0.433137,0.886835,0.194785,0.406523,0.599103,0.372251,0.39237,0.44323,0.641796,0.776815,0.385823,0.551945,0.347301,0.136878,0.368207,0.43911,0.586587,0.567992,0.96555,0.95417,0.205563,0.651248,0.914462,0.128832,0.36633,0.323805,0.559159,0.618957,0.747957,0.283071,0.339238,0.582235,0.74695,0.131584,0.563366,0.134027,0.100693,0.293102,0.822932,0.0117573,0.892719,0.220044,0.272218,0.979561,0.822676,0.0314056,0.419147,0.154499,0.342569,0.592505,0.682163,0.461469,0.239296,0.944494,0.642856,0.687014,0.65556,0.514445,0.471229,0.544624,0.261703,0.419381,0.215732,0.725142,0.972234,0.666103,0.730814,0.364255,0.602103,0.558517,0.506461,0.265177,0.613121,0.0999861,0.133712,0.698577,0.205257,0.837248,0.984548,0.470054,0.997423,0.100642,0.910164,0.198829,0.618253,0.947319,0.615909,0.652432,0.761858,0.574981,0.834359,0.670136,0.174879,0.564238,0.378884,0.0524756,0.657192,0.351134,0.389488,0.565585,0.889178,0.290671,0.498401,0.754016,0.62657,0.621452,0.317756,0.123156,0.494542,0.619687,0.0888441,0.827676,0.427918,0.776814,0.115992,0.441828,0.511593,0.855972,0.141735,0.185367,0.46091,0.620253,0.838295,0.695835,0.274223,0.750549,0.315227,0.796689,0.0851302,0.972729,0.524459,0.90444,0.667629,0.307727,0.0252888,0.293811,0.0975726,0.736354,0.57376,0.269754,0.0909047,0.824875,0.25903,0.947761,0.035314,0.0711446,0.426887,0.471311,0.885565,0.256091,0.958441,0.851518,0.412397,0.992869,0.01441,0.723089,0.330358,0.8069,0.498958,0.969534,0.106782,0.630841,0.711788,0.664108,0.5914,0.31225,0.156481,0.434401,0.578775,0.392895,0.08315,0.211493,0.777103,0.103537,0.833793,0.827648,0.781238,0.680746,0.334769,0.270243,0.865901,0.053826,0.58696,0.330912,0.655084,0.508488,0.292373,0.798537,0.734917,0.334886,0.194052,0.592478,0.908432,0.575361,0.93559,0.826945,0.315522,0.745192,0.104618,0.118899,0.392286,0.245926,0.34214,0.257082,0.0539127,0.0522357,0.986926,0.492892,0.285623,0.784645,0.847882,0.838489,0.862024,0.120267,0.609296,0.20804,0.619717,0.254436,0.833858,0.856151,0.0212231,0.411955,0.293957,0.573715,0.51242,0.664022,0.679557,0.968545,0.646147,0.26372,0.2933,0.382365,0.488148,0.424236,0.920225,0.66344,0.60225,0.853054,0.78049,0.332209,0.631094,0.550674,0.595976,0.852663,0.40661,0.160476,0.390042,0.633817,0.353338,0.19447,0.402957,0.387502,0.0797091,0.581758,0.632871,0.888663,0.565399,0.519719,0.42504,0.366336,0.820533,0.94706,0.770272,0.894703,0.131477,0.499916,0.373926,0.302444,0.696317,0.322019,0.916756,0.0853851,0.854346,0.857089,0.227844,0.256613,0.894717,0.168705,0.0512989,0.427665,0.12975,0.122958,0.180681,0.827259,0.388108,0.179606,0.7862,0.141185,0.194658,0.792465,0.455426,0.563548,0.0909346,0.347626,0.830356,0.278358,0.0302325,0.357512,0.973298,0.473454,0.406614,0.0166698,0.485653,0.929604,0.208751,0.390089,0.747229,0.226499,0.591058,0.389003,0.993115,0.785523,0.419433,0.295511,0.546371,0.0187737,0.554675,0.60952,0.228836,0.900932,0.437785,0.674877,0.563749,0.0924265,0.863166,0.747131,0.371412,0.753597,0.958391,0.235253,0.900684,0.517465,0.852693,0.175281,0.180268,0.802702,0.450524,0.785313,0.456066,0.626375,0.464454,0.741958,0.994875,0.716448,0.0243255,0.120774,0.224418,0.822845,0.324945,0.359774,0.443733,0.505247,0.241765,0.421334,0.0417587,0.835155,0.222324,0.589321,0.713106,0.891505,0.793054,0.0445869,0.109776,0.684271,0.091,0.2392,0.982903,0.060285,0.621171,0.407806,0.249339,0.779905,0.696731,0.649536,0.384596,0.183231,0.544306,0.910211,|0.380048,0.311954,0.554399,0.673259,0.0122763,0.666623,0.909189,0.103735,0.205019,0.888409,0.0155509,0.936422,0.793426,0.997747,0.315767,0.973412,0.36448,0.9245,0.758908,0.518073,0.947955,0.0654703,0.382557,0.437893,0.864294,0.883767,0.402277,0.930928,0.428825,0.789379,0.753826,0.290502,0.378806,0.278143,0.121818,0.0484662,0.0852488,0.201407,0.809499,0.887362,0.65457,0.516212,0.801843,0.977157,0.947164,0.819776,0.633638,0.296626,0.170541,0.411214,0.278822,0.293973,0.327542,0.707573,0.544041,0.832655,0.472933,0.72301,0.140005,0.890545,0.946252,0.350973,0.661552,0.649492,0.686727,0.287873,0.4772,0.524885,0.759413,0.123123,0.668807,0.41962,0.924319,0.972998,0.52806,0.690135,0.961725,0.446043,0.213207,0.155014,0.838944,0.223534,0.207628,0.636147,0.298063,0.0459974,0.619453,0.352498,0.214207,0.261148,0.652127,0.771487,0.583302,0.638763,0.243314,0.668291,0.249688,0.225369,0.459687,0.792971,0.409269,0.201761,0.63884,0.625239,0.158165,0.794018,0.34598,0.235675,0.00777036,0.786135,0.39944,0.752108,0.500723,0.311139,0.59234,0.669424,0.0527058,0.324858,0.488325,0.293588,0.0545691,0.220079,0.558247,0.225079,0.459104,0.299185,0.846966,0.604655,0.554698,0.572066,0.148495,0.720112,0.579749,0.359748,0.503743,0.315342,0.169316,0.799257,0.938687,0.975856,0.41439,0.907968,0.664603,0.0210336,0.159514,0.417973,0.284973,0.108156,0.686372,0.153049,0.973871,0.821381,0.183231,0.197676,0.875593,0.530055,0.65555,0.128013,0.719695,0.346731,0.506897,0.958941,0.96199,0.675251,0.528099,0.637282,0.225249,0.0719223,0.307401,0.391281,0.394203,0.262438,0.292689,0.784669,0.0515714,0.497982,0.743347,0.58165,0.859948,0.296382,0.236854,0.0828189,0.243536,0.0045929,0.989983,0.844519,0.477093,0.940262,0.72952,0.712291,0.251679,0.221407,0.630544,0.995334,0.573537,0.058921,0.580248,0.940837,0.184518,0.716452,0.0570036,0.313214,0.540267,0.021828,0.250587,0.0656176,0.576835,0.674254,0.143208,0.622744,0.919711,0.982094,0.695562,0.718087,0.982711,0.737836,0.692684,0.214275,0.519269,0.113358,0.904692,0.00549668,0.164401,0.413023,0.979617,0.427804,0.0759407,0.300875,0.709348,0.462545,0.795729,0.461968,0.945473,0.285116,0.318488,0.660761,0.344917,0.626945,0.255927,0.15411,0.873525,0.291818,0.0918008,0.351122,0.361134,0.717398,0.654381,0.343767,0.366252,0.558077,0.0364541,0.0492205,0.598754,0.0866412,0.987039,0.388786,0.317436,0.920003,0.57826,0.80521,0.346685,0.812527,0.404346,0.348924,0.303505,0.151809,0.0217313,0.305887,0.930987,0.70603,0.143006,0.761422,0.385066,0.952333,0.122363,0.166988,0.0937346,0.761444,0.643723,0.901929,0.919777,0.625301,0.608362,0.154917,0.253467,0.936107,0.477571,0.46319,0.593174,0.816298,0.783541,0.779092,0.241099,0.00440776,0.00659448,0.582812,0.697267,0.889144,0.0933688,0.656841,0.569923,0.860692,0.937205,0.508085,0.199408,0.916158,0.528832,0.8333,0.161728,0.525834,0.540292,0.379561,0.628411,0.0300474,0.96625,0.337673,0.74022,0.42498,0.742866,0.865228,0.882841,0.103406,0.996711,0.313122,0.125933,0.552082,0.120056,0.14326,0.60394,0.627469,0.98868,0.501609,0.12415,0.985899,0.742763,0.0249049,0.635427,0.441712,0.725266,0.940504,0.435598,0.487794,0.175609,0.0701661,0.721701,0.00939631,0.819081,0.755441,0.832676,0.494092,0.0272176,0.106212,0.927712,0.70698,0.598615,0.640719,0.160294,0.0788059,0.00458258,0.183697,0.102614,0.546851,0.498224,0.697072,0.815812,0.241133,0.31653,0.484825,0.271508,0.783199,0.793291,0.682357,0.587154,0.605862,0.613275,0.480197,0.535458,0.210138,0.254334,0.60394,0.92775,0.206107,0.861399,0.807137,0.338715,0.728406,0.439069,0.979926,0.461161,0.677346,0.774788,0.596382,0.52536,0.787961,0.833963,0.674843,0.404432,0.239872,0.968071,0.895329,0.676771,0.233372,0.0858553,0.766178,0.424041,0.694315,0.962512,0.217904,0.0960729,0.153458,0.589579,0.619096,0.775964,0.995376,0.182717,0.453271,0.226609,0.373407,0.616376,0.547173,0.274839,0.999102,0.613995,0.951008,0.764204,0.831747,0.626797,0.68119,0.26849,0.177876,0.0545059,0.601898,0.977263,0.622296,0.390256,0.57648,0.268091,0.612452,0.52274,0.587952,0.500126,0.234592,0.853086,0.0577774,0.457663,0.691045,0.468927,0.612271,0.479021,0.490777,0.955353,0.0666175,0.37211,0.976098,0.685445,0.568243,0.989911,0.387383,0.444211,0.751875,0.547407,0.0482216,0.283161,0.0101719,0.710102,0.2585,0.133051,0.993121,0.180828,0.509939,0.00251561,0.216396,0.625638,0.685793,0.526103,0.283868,0.314628,0.674169,0.110418,0.759218,0.613491,0.484302,0.226837,0.486632,0.585527,0.817223,0.65729,0.558384,0.419904,0.753959,0.00793976,0.29504,0.706399,0.909764,0.67832,0.32747,0.189138,0.851466,0.973944,0.715495,0.434339,0.571931,0.928412,0.660545,0.166198,0.682157,0.224764,0.400019,0.258484,0.987575,0.00160664,0.080036,0.861474,0.326891,0.468164,0.361825,0.769779,0.834771,0.80012,0.243691,0.466584,0.320444,0.348361,0.0449915,0.754032,0.274295,0.776679,0.287819,0.823308,0.579194,0.871839,0.890942,0.825295,0.45966,0.10533,0.00524467,0.487473,0.311936,0.234143,0.663702,0.43856,0.0759069,0.431985,0.604821,0.84447,0.332836,0.025889,0.450323,0.852964,0.11306,0.814063,0.139715,0.108105,0.98524,0.742796,0.64452,0.518307,0.870201,0.353395,0.440734,0.645323,0.573779,0.988768,0.877574,0.0594214,0.525592,0.775099,0.916139,0.0548252,0.452724,0.424988,0.607765,0.998672,0.612414,0.616508,0.346272,0.643748,0.710315,0.1846,0.376104,0.993348,0.977634,0.272816,0.0261568,0.201631,0.965808,0.130757,0.500227,0.537688,0.841279,0.365775,0.828616,0.330387,0.892502,0.73021,0.773053,0.788173,0.330715,0.997382,0.00287771,0.769085,0.762311,0.520787,0.666871,0.552855,0.778676,0.0260116,0.228998,0.808767,0.525631,0.559996,0.1853,0.743363,0.193503,0.900837,0.981592,0.573043,0.869492,0.460502,0.313984,0.0360437,0.338301,0.362392,0.302583,0.528846,0.47132,0.0252432,0.293918,0.709394,0.535065,0.341069,0.0976317,0.815044,0.410163,0.163802,0.33628,0.746467,0.168515,0.146555,0.376135,0.0357834,0.769808,0.265313,0.450686,0.878908,0.368836,0.206387,0.16938,0.609744,0.290511,0.616118,0.543888,0.495795,0.599885,0.293288,0.205571,0.263996,0.68475,0.42373,0.043926,0.936279,0.604476,0.465096,0.852192,0.628071,0.789144,0.631623,0.133493,0.956449,0.105314,0.88231,0.720676,0.210118,0.505982,0.698733,0.0508912,0.772018,0.960296,0.786206,0.358187,0.301983,0.530342,0.544709,0.278498,0.584991,0.588842,0.10832,0.966454,0.036772,0.445317,0.0482184,0.845713,0.647079,0.439153,0.765914,0.0104587,0.0393744,0.303881,0.849329,0.589216,0.417756,0.25541,0.500495,0.637386,0.767764,0.166952,0.437712,0.417435,0.638668,0.598824,0.452726,0.928353,0.594497,0.47383,0.553255,0.211481,0.236544,0.561519,0.182435,0.885315,0.430549,0.33967,0.691885,0.270606,0.836553,0.232648,0.524353,0.494293,0.648909,0.265816,0.793643,0.635045,0.652627,0.270266,0.471377,0.248532,0.860782,0.325856,0.770489,0.522117,0.684119,0.0530437,0.330193,0.214214,0.685974,0.86456,0.0202563,0.531278,0.23164,0.396823,0.677959,0.918844,0.0714332,0.862636,0.299786,0.608359,0.27274,0.793673,0.898346,0.849308,0.0198042,0.835617,0.560752,0.830114,0.668558,0.231971,0.89164,0.858568,0.110733,0.949714,0.661909,0.933568,0.546465,0.74072,0.375319,0.719589,0.952436,0.258416,0.0353728,0.377776,0.794686,0.92873,0.873656,0.12439,0.699556,0.455829,0.745583,0.546397,0.902496,0.794746,0.926451,0.324181,0.0532397,0.684792,0.600431,0.505998,0.76323,0.540012,0.927428,0.82097,0.260309,0.747742,0.860626,0.813025,0.400654,0.496661,0.323884,0.873265,0.168515,0.843893,0.944407,0.649924,0.442516,0.0815004,0.982552,0.34161,0.865892,0.109617,0.272315,0.833186,0.799437,0.775789,0.952448,0.536896,0.313186,0.614584,0.168687,0.505027,0.389333,0.953426,0.209124,0.0221977,0.976108,0.962391,0.843861,0.654952,0.542936,0.45067,0.779332,0.110019,0.272045,0.156429,0.209515,0.1152,0.0221391,0.691867,0.836495,0.392909,0.370351,0.311723,0.164915,0.779405,0.286271,0.772183,0.632617,0.171275,0.829404,0.770857,0.700294,0.834172,0.868691,0.912669,0.990675,0.627237,0.297122,0.44903,0.902438,0.540454,0.843111,0.0644181,0.239806,0.911276,0.122381,0.732094,0.685692,0.593913,0.122281,0.11036,0.636541,0.0143617,0.43892,0.190317,0.966489,0.405183,0.602234,0.987183,0.0801008,0.527906,0.831756,0.536021,0.354409,0.860349,0.181247,0.732446,0.317352,0.405596,0.995965,0.101565,0.281961,0.915554,0.538303,0.4173,0.709054,0.458198,0.49014,0.555459,0.901199,0.515376,0.195895,0.815495,0.835712,0.724187,0.662261,0.79118,0.581225,0.402489,0.595628,0.249806,0.977049,0.890345,0.176989,0.999338,0.0785493,0.179296,0.36133,0.292554,0.610869,0.570356,0.0570746,0.454005,0.0921283,0.199703,0.410118,0.618472,0.0274758,0.303209,0.756476,0.542694,0.227009,0.952273,0.257773,0.567143,0.944093,0.945866,0.332604,0.696457,0.0543547,0.747058,0.197124,0.29838,0.406955,0.931998,0.297082,0.929641,0.710488,0.0659048,0.301001,0.794237,0.336838,0.361633,0.025218,0.0520503,0.302678,0.0222929,0.0869235,0.707375,0.60816,0.13319,0.61549,0.50159,0.891116,0.177808,0.378071,0.106617,0.878303,0.364741,0.286836,0.362389,0.919474,0.0293684,0.384739,0.0616205,0.542542,0.422622,0.861157,0.72364,0.0376717,0.411127,0.383297,0.791386,0.772951,0.0743492,0.666264,0.916931,0.719682,0.473773,0.469567,0.876143,0.658485,0.103977,|0.212293,0.838922,0.786334,0.56749,0.181247,0.354291,0.522805,0.335971,0.089821,0.25158,0.441517,0.260655,0.0131804,0.519029,0.984581,0.231281,0.553887,0.405019,0.58815,0.411613,0.941351,0.691218,0.990451,0.0957003,0.618721,0.458032,0.505854,0.647911,0.462199,0.198107,0.924251,0.227471,0.732781,0.911836,0.90908,0.828912,0.0234989,0.277054,0.90367,0.472959,0.315422,0.602658,0.507708,0.430971,0.554509,0.48039,0.0386826,0.771012,0.938822,0.469547,0.421685,0.101096,0.62939,0.326368,0.666535,0.20224,0.0217443,0.611103,0.432275,0.492943,0.795289,0.438844,0.0192789,0.722366,0.38597,0.0574741,0.61016,0.0138135,0.899286,0.289292,0.112097,0.105231,0.288665,0.0149909,0.329011,0.934817,0.523804,0.807968,0.9491,0.255561,0.0321539,0.149785,0.310592,0.134905,0.224416,0.418469,0.0766194,0.412844,0.283723,0.711821,0.129147,0.545268,0.475866,0.123058,0.609897,0.531176,0.312188,0.762316,0.916627,0.00864989,0.162929,0.844819,0.34095,0.793616,0.513257,0.932535,0.827828,0.19636,0.162932,0.211918,0.201106,0.362193,0.891379,0.262555,0.150795,0.778254,0.959969,0.519984,0.0761848,0.0346205,0.977613,0.0673823,0.100158,0.668829,0.941108,0.341917,0.947012,0.678256,0.717521,0.155841,0.759694,0.469854,0.807775,0.42798,0.791725,0.636778,0.15801,0.858127,0.770798,0.0771781,0.234081,0.319116,0.484668,0.542557,0.51393,0.725987,0.652937,0.254229,0.531695,0.075228,0.878248,0.610277,0.225241,0.352926,0.315954,0.999278,0.485144,0.538638,0.644642,0.57865,0.865927,0.863159,0.785946,0.0988138,0.819744,0.173982,0.838994,0.747534,0.929866,0.599923,0.334551,0.117001,0.485303,0.867979,0.669828,0.277614,0.699796,0.741413,0.964646,0.906368,0.755973,0.681672,0.817165,0.47224,0.67658,0.659936,0.184708,0.244375,0.265121,0.365325,0.861089,0.348323,0.567612,0.576982,0.189788,0.693171,0.767091,0.677204,0.0950109,0.0904731,0.558952,0.832474,0.589056,0.942017,0.897861,0.90709,0.868859,0.522903,0.0818977,0.806759,0.919827,0.886691,0.682059,0.0620415,0.0292543,0.483866,0.163192,0.680136,0.72775,0.284622,0.676149,0.682471,0.933896,0.941322,0.470211,0.515415,0.78582,0.541126,0.934817,0.595,0.603048,0.298424,0.107319,0.126321,0.72237,0.240752,0.659406,0.032536,0.274024,0.295856,0.115435,0.369199,0.833967,0.0526491,0.522296,0.880904,0.852705,0.169384,0.446347,0.0801811,0.466333,0.582324,0.998194,0.827225,0.945867,0.952577,0.0966997,0.0292784,0.195293,0.716534,0.098278,0.0725315,0.101769,0.835409,0.149419,0.958208,0.428138,0.851313,0.446078,0.672832,0.921746,0.056502,0.105306,0.831118,0.699643,0.674546,0.541345,0.58408,0.134793,0.828756,0.788516,0.462626,0.191854,0.66061,0.675166,0.910846,0.801923,0.495219,0.069352,0.925156,0.588784,0.589333,0.921332,0.71169,0.333698,0.50028,0.871051,0.136276,0.552551,0.85462,0.814807,0.478646,0.322209,0.0418899,0.919775,0.185569,0.0371794,0.486034,0.31274,0.80827,0.380329,0.991288,0.211638,0.869204,0.61514,0.191023,0.419828,0.267975,0.126233,0.559293,0.895677,0.809297,0.397617,0.57936,0.460526,0.410044,0.532929,0.700649,0.961375,0.00579512,0.484908,0.261025,0.908311,0.706281,0.771395,0.0488245,0.626184,0.5208,0.565517,0.147692,0.807934,0.0443951,0.149282,0.703161,0.0550084,0.0794834,0.101132,0.35399,0.976674,0.187777,0.1689,0.632704,0.299956,0.295131,0.27113,0.766799,0.0490482,0.969023,0.275577,0.527396,0.0532982,0.865021,0.835495,0.460735,0.0609316,0.598596,0.0443087,0.824287,0.521093,0.479455,0.00213397,0.339197,0.601343,0.740871,0.774172,0.226396,0.611424,0.646837,0.0258414,0.860772,0.175662,0.67707,0.484953,0.775113,0.926919,0.467566,0.456681,0.784347,0.474751,0.775826,0.902711,0.785818,0.797734,0.132144,0.918652,0.308848,0.700909,0.858503,0.537436,0.634903,0.453324,0.377405,0.811805,0.795674,0.204153,0.270151,0.122888,0.896521,0.0246726,0.117138,0.128405,0.475551,0.886213,0.154747,0.2139,0.212464,0.882114,0.661417,0.996447,0.371488,0.985834,0.166694,0.201716,0.577239,0.518527,0.264381,0.2789,0.310119,0.0724158,0.0166747,0.376273,0.382765,0.145694,0.896244,0.0595293,0.0108513,0.142141,0.727841,0.266609,0.42563,0.798911,0.943845,0.35827,0.70991,0.21381,0.622607,0.896915,0.783423,0.67506,0.0506763,0.483448,0.895247,0.542815,0.56876,0.544947,0.952434,0.0477781,0.662359,0.347607,0.604959,0.408224,0.450802,0.491135,0.142311,0.108433,0.895697,0.82858,0.650115,0.177118,0.562118,0.949822,0.0847128,0.274188,0.410367,0.549697,0.990402,0.257823,0.832321,0.92164,0.857681,0.419417,0.0267981,0.771517,0.0812017,0.738638,0.41633,0.65608,0.0283571,0.425157,0.755865,0.183937,0.670978,0.63699,0.983745,0.505345,0.251797,0.537046,0.300804,0.454022,0.967281,0.0151968,0.173007,0.512348,0.00551426,0.133737,0.525107,0.0657581,0.642516,0.430872,0.863071,0.411465,0.120339,0.308629,0.469566,0.44617,0.410532,0.680888,0.820549,0.673394,0.302592,0.948364,0.580726,0.191843,0.408689,0.183932,0.046333,0.340249,0.434421,0.876147,0.713696,0.275781,0.53467,0.104513,0.120089,0.259205,0.852349,0.606947,0.996527,0.340805,0.997923,0.0432963,0.268045,0.447556,0.606414,0.883916,0.482462,0.219534,0.266854,0.99902,0.838075,0.770293,0.950548,0.393703,0.914533,0.498394,0.876111,0.729537,0.0691082,0.880647,0.183015,0.966661,0.294451,0.849932,0.93235,0.00861245,0.315291,0.951378,0.0399206,0.140882,0.31975,0.947759,0.644696,0.722457,0.512166,0.0734101,0.943181,0.280942,0.407311,0.464583,0.281,0.71739,0.718805,0.269812,0.50054,0.743164,0.533248,0.397514,0.709731,0.234693,0.350576,0.852959,0.811982,0.179322,0.844354,0.712893,0.846434,0.652956,0.572842,0.816027,0.400191,0.907761,0.990825,0.5424,0.576393,0.448003,0.368638,0.519865,0.515867,0.72771,0.760801,0.599047,0.504016,0.919523,0.532715,0.135469,0.161937,0.341605,0.0974274,0.761037,0.611045,0.48746,0.705338,0.910825,0.734776,0.944361,0.931951,0.356849,0.389879,0.466179,0.830012,0.505238,0.982643,0.937333,0.00623918,0.242265,0.812535,0.801493,0.69535,0.645087,0.289082,0.384834,0.514739,0.441271,0.724973,0.993766,0.352856,0.0775916,0.0674966,0.794028,0.848331,0.158839,0.363963,0.826184,0.155795,0.988182,0.537945,0.475369,0.0454021,0.310214,0.910133,0.470095,0.140275,0.829335,0.953132,0.0736156,0.161056,0.470078,0.0162471,0.43836,0.3878,0.905137,0.461255,0.106739,0.599374,0.0891522,0.053323,0.0837494,0.282279,0.761737,0.196631,0.292379,0.563975,0.876271,0.6211,0.895186,0.126831,0.864002,0.570865,0.70426,0.373324,0.664767,0.200581,0.74945,0.775396,0.446014,0.769405,0.156357,0.959986,0.402356,0.67692,0.399366,0.115682,0.00645041,0.0675504,0.493141,0.658909,0.314968,0.177334,0.00225222,0.946939,0.877434,0.00411701,0.69043,0.4711,0.552073,0.634379,0.974566,0.135263,0.289491,0.12004,0.658854,0.388726,0.879911,0.371475,0.368166,0.809449,0.309463,0.372692,0.810232,0.456903,0.00459027,0.0926045,0.00437295,0.181243,0.60061,0.94593,0.504016,0.606471,0.726947,0.639188,0.723714,0.769245,0.537153,0.324408,0.745413,0.77278,0.920489,0.743571,0.442085,0.907045,0.586765,0.182078,0.244099,0.0418953,0.787038,0.435053,0.688236,0.534558,0.76848,0.451743,0.973444,0.397077,0.70082,0.0383429,0.431799,0.213285,0.113876,0.868328,0.94106,0.057464,0.285806,0.613931,0.259046,0.536474,0.245531,0.0991224,0.413732,0.906529,0.183774,0.771335,0.55503,0.166961,0.598857,0.830623,0.784669,0.587217,0.796285,0.228595,0.424377,0.99601,0.90633,0.80242,0.78955,0.86323,0.450259,0.134128,0.0850965,0.866358,0.217182,0.629413,0.900314,0.668127,0.964772,0.910868,0.600892,0.458098,0.202784,0.651107,0.979737,0.907137,0.961507,0.79051,0.510951,0.514287,0.73205,0.499605,0.66372,0.92787,0.484819,0.196365,0.953586,0.242498,0.0207334,0.46884,0.585702,0.660294,0.742725,0.108419,0.183237,0.288931,0.547931,0.359125,0.886382,0.73128,0.218549,0.640547,0.261948,0.94716,0.618506,0.548177,0.822208,0.500514,0.44966,0.187727,0.280023,0.21137,0.242272,0.549199,0.2109,0.781424,0.0348898,0.162463,0.624297,0.720081,0.0676931,0.822104,0.428818,0.876371,0.426662,0.366272,0.52599,0.944442,0.80373,0.340917,0.72554,0.347017,0.955882,0.01676,0.663245,0.0473266,0.0493966,0.28968,0.077475,0.835378,0.822386,0.702001,0.310914,0.457772,0.90369,0.812277,0.399573,0.44182,0.713546,0.799022,0.247552,0.213436,0.634576,0.709073,0.68004,0.256929,0.835559,0.132818,0.406985,0.958162,0.629087,0.280301,0.141976,0.395673,0.00579077,0.102921,0.289604,0.36878,0.178222,0.993197,0.546107,0.188575,0.240606,0.214306,0.849766,0.150648,0.118039,0.351678,0.971815,0.41101,0.862243,0.34886,0.80043,0.198925,0.597299,0.591197,0.450791,0.0777591,0.262048,0.0190334,0.62923,0.0947586,0.287075,0.153335,0.577997,0.686811,0.0740245,0.310542,0.671728,0.701137,0.849195,0.257417,0.200968,0.831048,0.227427,0.715992,0.320274,0.250795,0.588252,0.840235,0.484817,0.445188,0.544375,0.389852,0.708049,0.502029,0.255937,0.0884279,0.040193,0.837613,0.456668,0.149244,0.778012,0.625797,0.308822,0.391427,0.695341,0.929097,0.24211,0.677957,0.0518689,0.388746,0.602224,0.0197812,0.51244,0.363431,0.451594,0.928331,0.199361,0.0462182,0.674988,0.379345,0.655101,0.340117,0.758209,0.918047,0.651071,0.742147,0.588157,0.207772,0.317193,0.42874,0.336037,0.829159,0.565208,0.31517,0.948034,0.0409701,0.913339,0.262574,0.0736671,0.686514,0.00675327,0.171029,0.156387,0.314881,|0.268416,0.348129,0.77285,0.570039,0.0334128,0.193256,0.585491,0.274937,0.556112,0.818481,0.468958,0.449386,0.710377,0.709403,0.799968,0.660977,0.905075,0.90033,0.804247,0.687837,0.062355,0.998356,0.053546,0.363965,0.534466,0.571526,0.361638,0.359861,0.0783032,0.544542,0.125542,0.136441,0.452851,0.795386,0.433319,0.324093,0.618234,0.555264,0.267552,0.7787,0.351328,0.983815,0.045323,0.296609,0.883694,0.187133,0.244271,0.875155,0.158872,0.295111,0.454718,0.985552,0.569883,0.86519,0.713979,0.23858,0.586248,0.609723,0.370007,0.344285,0.158242,0.834489,0.942674,0.786764,0.774038,0.832426,0.339927,0.388051,0.716508,0.791607,0.523679,0.586029,0.192618,0.1525,0.503438,0.402284,0.433058,0.433741,0.148684,0.636206,0.490225,0.175936,0.297318,0.639159,0.377147,0.487314,0.431207,0.00139326,0.209288,0.856956,0.360465,0.990928,0.933425,0.73488,0.397809,0.686169,0.729373,0.23328,0.104422,0.777806,0.0466284,0.359988,0.615586,0.405111,0.598261,0.140709,0.680614,0.662204,0.527597,0.20499,0.79577,0.0520393,0.496251,0.313032,0.384754,0.813014,0.312445,0.498146,0.643683,0.517343,0.316992,0.998801,0.596817,0.223631,0.251792,0.343349,0.660336,0.646799,0.916398,0.415968,0.081026,0.483314,0.000584424,0.747717,0.406504,0.294,0.843357,0.329058,0.523407,0.736965,0.758553,0.410178,0.786375,0.00397491,0.091564,0.833425,0.935243,0.628894,0.876446,0.357153,0.204398,0.953412,0.635443,0.520989,0.983049,0.933531,0.257347,0.242589,0.400098,0.948006,0.820645,0.822492,0.862613,0.841586,0.606471,0.0959382,0.899443,0.460132,0.288725,0.147784,0.439128,0.401167,0.207657,0.367249,0.39186,0.090839,0.596208,0.904805,0.0616287,0.0629867,0.408733,0.217219,0.71113,0.694043,0.787735,0.151018,0.925516,0.34586,0.376235,0.787566,0.160114,0.544255,0.553784,0.101512,0.902019,0.549591,0.375321,0.212458,0.273854,0.283501,0.314861,0.852245,0.245388,0.463232,0.312478,0.891475,0.197416,0.380714,0.634172,0.754418,0.941925,0.258148,0.610767,0.0627891,0.790464,0.442918,0.358073,0.477798,0.489328,0.237585,0.230124,0.380092,0.559884,0.551342,0.34586,0.220179,0.781601,0.319916,0.447947,0.541348,0.38375,0.143132,0.344264,0.180938,0.687371,0.17712,0.508144,0.191901,0.437774,0.960827,0.00773507,0.915194,0.0788469,0.448779,0.856117,0.731879,0.108504,0.876828,0.625714,0.00118041,0.988175,0.428541,0.770316,0.131944,0.326645,0.961225,0.11374,0.363129,0.657384,0.161431,0.34856,0.203063,0.274071,0.420482,0.885378,0.831723,0.13432,0.462151,0.2439,0.679309,0.130515,0.828429,0.895113,0.710706,0.879394,0.173609,0.786837,0.248858,0.836155,0.846832,0.650121,0.671092,0.220279,0.656393,0.312258,0.612777,0.45036,0.691454,0.129654,0.263046,0.29745,0.694126,0.476702,0.307655,0.0734902,0.170356,0.494735,0.361786,0.280749,0.325327,0.972375,0.51614,0.0292583,0.214256,0.961136,0.432241,0.0676088,0.614059,0.153973,0.126805,0.541379,0.0918199,0.275249,0.179435,0.0246686,0.826897,0.851832,0.299123,0.735139,0.679009,0.829171,0.000298977,0.13825,0.410213,0.439599,0.668778,0.64932,0.650524,0.940405,0.548615,0.131522,0.955471,0.0775833,0.742216,0.973523,0.467827,0.594359,0.138228,0.697833,0.610373,0.391883,0.294646,0.222072,0.738215,0.29649,0.289715,0.62129,0.039916,0.282484,0.0193133,0.682448,0.815995,0.659453,0.885916,0.577081,0.708242,0.0797283,0.433822,0.476102,0.71054,0.891534,0.794002,0.469971,0.927114,0.0257052,0.0880035,0.0786062,0.712706,0.975141,0.875462,0.3876,0.0206026,0.878491,0.91861,0.0236949,0.213011,0.612606,0.524452,0.0359911,0.132418,0.102935,0.105497,0.0727711,0.616081,0.323132,0.627491,0.115334,0.380511,0.219124,0.176549,0.159332,0.567749,0.264398,0.27089,0.844554,0.950499,0.948054,0.464166,0.0229251,0.0647799,0.979158,0.565725,0.274582,0.131403,0.185026,0.302271,0.248656,0.0693958,0.544516,0.685899,0.505933,0.538336,0.272252,0.547254,0.819761,0.231935,0.724686,0.123764,0.167957,0.00976443,0.136521,0.546894,0.807894,0.104174,0.136775,0.195141,0.304968,0.603317,0.297925,0.865344,0.901604,0.173331,0.397826,0.591101,0.861889,0.097434,0.837199,0.95389,0.949528,0.826232,0.0322102,0.306403,0.90939,0.222203,0.268383,0.544071,0.13824,0.874529,0.732438,0.0271776,0.837575,0.958734,0.77632,0.198212,0.925194,0.380694,0.621455,0.322431,0.610425,0.954367,0.856931,0.056147,0.577807,0.732231,0.511939,0.381587,0.953795,0.0451259,0.919155,0.924372,0.114936,0.944,0.184988,0.835383,0.946015,0.722582,0.428602,0.269238,0.410924,0.511101,0.956572,0.525171,0.567023,0.77684,0.938312,0.872286,0.700928,0.0263829,0.111746,0.886112,0.281668,0.896127,0.691436,0.255253,0.791136,0.0135425,0.446379,0.487077,0.225981,0.50343,0.453341,0.574716,0.8819,0.646893,0.202065,0.239627,0.553752,0.980044,0.827463,0.305685,0.432216,0.504286,0.407935,0.725592,0.522759,0.481692,0.63716,0.367063,0.527448,0.0822012,0.885404,0.241189,0.910161,0.249811,0.532177,0.150309,0.106807,0.786633,0.918175,0.186903,0.0582616,0.853513,0.85774,0.232222,0.783278,0.0830373,0.837229,0.854334,0.148607,0.389407,0.738956,0.800306,0.882229,0.782383,0.593106,0.893777,0.381528,0.60705,0.197217,0.213964,0.46031,0.951836,0.979131,0.851091,0.367833,0.00836658,0.294516,0.961821,0.479306,0.617126,0.71067,0.896077,0.938127,0.70885,0.302714,0.484428,0.600761,0.401411,0.378205,0.7197,0.454261,0.0504947,0.751423,0.316096,0.828993,0.464416,0.36969,0.456283,0.0266329,0.35686,0.235992,0.395865,0.134849,0.871815,0.927113,0.524707,0.11081,0.0179526,0.713497,0.78382,0.276227,0.8864,0.539867,0.46252,0.737009,0.577809,0.866358,0.591026,0.0568839,0.890501,0.257102,0.134334,0.366876,0.339849,0.162307,0.876171,0.75435,0.751957,0.500798,0.0956153,0.785679,0.863466,0.953629,0.118643,0.564616,0.212676,0.723489,0.835937,0.367972,0.86522,0.825752,0.899123,0.793735,0.592243,0.957787,0.845072,0.335125,0.985952,0.698993,0.84117,0.931927,0.949154,0.10165,0.495682,0.884455,0.683902,0.0680726,0.000170767,0.109534,0.702559,0.25093,0.459137,0.0236062,0.257211,0.968972,0.991174,0.30718,0.20381,0.458814,0.225515,0.973785,0.449676,0.224743,0.802622,0.445822,0.557998,0.189546,0.599686,0.777077,0.272862,0.224071,0.21305,0.0659073,0.63355,0.909167,0.245831,0.062296,0.742809,0.588127,0.373663,0.946823,0.849809,0.363378,0.702372,0.386853,0.736072,0.865958,0.518385,0.786697,0.653074,0.590299,0.723,0.498677,0.178185,0.142171,0.884127,0.422176,0.629307,0.613206,0.15109,0.461266,0.115207,0.725901,0.545689,0.169765,0.569861,0.440262,0.372304,0.0659187,0.0729393,0.673676,0.335493,0.600721,0.00447673,0.551629,0.106557,0.980852,0.106785,0.623077,0.454019,0.594724,0.514955,0.984718,0.855354,0.629458,0.896348,0.170383,0.637715,0.572858,0.946744,0.0300343,0.282789,0.645572,0.347574,0.625179,0.459637,0.419217,0.254743,0.667001,0.794266,0.158484,0.777987,0.866846,0.970609,0.782991,0.415296,0.136536,0.623342,0.772714,0.391599,0.241866,0.603501,0.814901,0.762034,0.836384,0.140424,0.728643,0.939642,0.850228,0.0848637,0.0619836,0.101818,0.77069,0.458323,0.338644,0.438452,0.337698,0.711656,0.0233634,0.559126,0.862069,0.280789,0.310031,0.300349,0.330979,0.417629,0.816478,0.715277,0.354504,0.389921,0.277288,0.509895,0.350653,0.639987,0.148227,0.758702,0.221426,0.468574,0.805647,0.526972,0.000600576,0.37285,0.913095,0.570068,0.734166,0.863252,0.621324,0.71035,0.584855,0.86511,0.52611,0.527732,0.229556,0.274938,0.163749,0.666764,0.437668,0.09411,0.625996,0.101457,0.440649,0.341593,0.474192,0.256465,0.953829,0.642329,0.254272,0.00327033,0.986381,0.504727,0.73253,0.82332,0.0498787,0.342943,0.87459,0.0621784,0.609354,0.571827,0.704232,0.377877,0.65286,0.520309,0.350126,0.457067,0.759698,0.442222,0.235609,0.378699,0.487926,0.398377,0.0840987,0.64748,0.459612,0.323593,0.936411,0.449896,0.403475,0.395949,0.927927,0.0290112,0.509177,0.858716,0.137819,0.909313,0.243198,0.91917,0.954893,0.294577,0.848301,0.629432,0.000248611,0.874929,0.980447,0.017027,0.627202,0.171626,0.724192,0.126765,0.665454,0.618688,0.00725144,0.794168,0.907017,0.184679,0.870672,0.976131,0.389798,0.0846046,0.745296,0.0796503,0.986654,0.905897,0.377822,0.575245,0.343186,0.225745,0.490223,0.919147,0.668914,0.35716,0.52462,0.862228,0.495621,0.725959,0.57884,0.193645,0.845731,0.049334,0.728342,0.501899,0.702375,0.225938,0.120364,0.713642,0.161352,0.577591,0.562851,0.948473,0.00867403,0.446971,0.722206,0.0800751,0.338099,0.0736346,0.791241,0.125499,0.992553,0.955173,0.574169,0.0732152,0.864801,0.461061,0.5968,0.980601,0.651047,0.696641,0.578993,0.952384,0.703781,0.0942317,0.446014,0.499254,0.887155,0.15404,0.303256,0.114587,0.128927,0.884017,0.114077,0.488258,0.494003,0.865842,0.755519,0.0426025,0.764164,0.106634,0.175552,0.343278,0.465312,0.782519,0.044893,0.764458,0.946047,0.952807,0.1976,0.166263,0.259555,0.820971,0.331403,0.376827,0.145939,0.59084,0.320777,0.363995,0.788838,0.602598,0.684488,0.61274,0.0472136,0.371621,0.0967078,0.409635,0.753217,0.686523,0.904991,0.818019,0.646883,0.229245,0.185425,0.81594,0.364132,0.0160623,0.157935,0.873196,0.73804,0.536431,0.148534,0.0896373,0.570742,0.601665,0.364736,0.778426,0.968441,0.99001,0.900151,0.0754513,0.493295,0.239697,0.668124,0.642421,0.312011,0.133841,0.70034,0.808437,0.457841,0.738085,0.313706,0.707953,0.840909,0.31925,|0.482031,0.922867,0.360892,0.55013,0.893524,0.90969,0.959244,0.357511,0.313481,0.440786,0.368707,0.369263,0.733569,0.211718,0.427832,0.518348,0.546196,0.95735,0.706018,0.0557213,0.246868,0.534457,0.387462,0.190983,0.400004,0.646412,0.179954,0.531321,0.955445,0.860255,0.206774,0.55645,0.503107,0.286803,0.391199,0.365967,0.00910383,0.0200422,0.796488,0.0126632,0.302159,0.986988,0.969436,0.101964,0.609405,0.835297,0.329008,0.0768564,0.142476,0.483492,0.0198229,0.539008,0.572831,0.198407,0.883664,0.743958,0.989909,0.0496681,0.893567,0.677809,0.772149,0.231155,0.871392,0.107614,0.44304,0.527092,0.198329,0.0188893,0.276746,0.563846,0.738139,0.883713,0.116619,0.642831,0.947134,0.0975881,0.675194,0.0458741,0.139572,0.0614219,0.227354,0.455512,0.05134,0.595967,0.462052,0.854253,0.834983,0.101878,0.0785698,0.676079,0.184517,0.852831,0.959395,0.700272,0.960782,0.909446,0.637534,0.867996,0.00630724,0.220182,0.968212,0.794158,0.104126,0.519509,0.795994,0.765885,0.597402,0.836775,0.215631,0.910852,0.199526,0.90663,0.549799,0.238421,0.848969,0.918552,0.735604,0.263919,0.581556,0.847734,0.411302,0.581033,0.919572,0.215916,0.592269,0.912827,0.308238,0.346427,0.202019,0.439084,0.644453,0.924545,0.101683,0.818853,0.139645,0.560146,0.0704588,0.9916,0.469484,0.0918004,0.408435,0.856965,0.801491,0.914947,0.469282,0.574385,0.25063,0.886207,0.605113,0.899593,0.141001,0.1804,0.377751,0.859289,0.799661,0.807069,0.827011,0.264309,0.195245,0.077567,0.35772,0.32525,0.386694,0.633152,0.932669,0.594044,0.424917,0.615529,0.238955,0.282882,0.236131,0.240705,0.517733,0.0161049,0.85811,0.876728,0.505404,0.632997,0.0531085,0.270486,0.117373,0.51361,0.371906,0.59342,0.633311,0.335805,0.922126,0.0546426,0.333274,0.632977,0.562967,0.918687,0.200374,0.570422,0.602609,0.339055,0.802301,0.519416,0.0443075,0.769089,0.560279,0.123414,0.841543,0.972888,0.0561724,0.290731,0.934411,0.168413,0.907223,0.932256,0.615198,0.866823,0.978363,0.800327,0.0103407,0.0703928,0.772542,0.43099,0.0779844,0.569988,0.179794,0.658162,0.72171,0.799194,0.639069,0.519505,0.584955,0.737661,0.989815,0.143397,0.0115361,0.612364,0.536084,0.098977,0.0853767,0.0769388,0.939627,0.978186,0.767937,0.415996,0.856396,0.546554,0.707465,0.6797,0.371218,0.411408,0.685748,0.436812,0.880467,0.392247,0.481943,0.0287624,0.247028,0.896494,0.949853,0.0723037,0.926019,0.68372,0.0436258,0.574835,0.296759,0.774601,0.46461,0.110785,0.922579,0.542322,0.125685,0.0111209,0.32284,0.682886,0.0267441,0.0583909,0.549586,0.401634,0.90853,0.940173,0.949481,0.626993,0.309771,0.818191,0.755651,0.859324,0.871154,0.659032,0.735331,0.115773,0.555135,0.615894,0.832238,0.854901,0.392797,0.141277,0.0766744,0.341858,0.775749,0.785377,0.371194,0.164174,0.306447,0.473473,0.736808,0.879339,0.675202,0.401045,0.388358,0.507795,0.847265,0.288615,0.730761,0.365476,0.974348,0.729625,0.121868,0.356944,0.27086,0.889433,0.311,0.733823,0.948445,0.413294,0.686171,0.192429,0.282705,0.65616,0.471924,0.0459323,0.690653,0.259011,0.0290085,0.658338,0.386784,0.94826,0.220516,0.55109,0.357882,0.781469,0.773251,0.642539,0.442668,0.110205,0.697754,0.365024,0.288712,0.382479,0.607183,0.59633,0.942876,0.213573,0.487686,0.411414,0.273217,0.47892,0.859883,0.793632,0.468999,0.292431,0.555197,0.247144,0.139032,0.093199,0.713986,0.570571,0.104379,0.357639,0.0806873,0.874188,0.743166,0.983163,0.712159,0.585557,0.548631,0.991233,0.000251889,0.457751,0.606491,0.60291,0.169749,0.56245,0.957126,0.23641,0.60388,0.593947,0.393441,0.15837,0.835885,0.0570458,0.73818,0.323001,0.789949,0.817074,0.257419,0.744568,0.0663759,0.901717,0.646086,0.753077,0.323097,0.436562,0.386369,0.481164,0.971213,0.0111064,0.324853,0.0666677,0.61425,0.215608,0.33916,0.0793666,0.308639,0.212492,0.222815,0.70314,0.267159,0.494471,0.81045,0.188281,0.390798,0.941538,0.802163,0.0312427,0.719035,0.611294,0.436338,0.672847,0.385632,0.342325,0.594262,0.407692,0.0583666,0.563455,0.24063,0.697906,0.78582,0.441513,0.00313461,0.043249,0.663453,0.249278,0.9705,0.986436,0.597184,0.980408,0.49508,0.401355,0.0487154,0.753101,0.390919,0.714704,0.156256,0.43535,0.658211,0.143462,0.621596,0.179959,0.246894,0.734527,0.492963,0.939768,0.489321,0.337153,0.0196168,0.341739,0.292829,0.134446,0.0215696,0.0413902,0.842068,0.77725,0.279431,0.806076,0.277361,0.336271,0.82901,0.0582443,0.186308,0.740344,0.0517586,0.939074,0.370306,0.0976786,0.809104,0.260103,0.846483,0.799458,0.272411,0.340674,0.331883,0.5833,0.12045,0.526737,0.000980973,0.168189,0.968708,0.855247,0.67041,0.409634,0.16115,0.190023,0.158575,0.861885,0.00309926,0.072818,0.718707,0.83173,0.0436251,0.0970083,0.601576,0.386698,0.458452,0.838,0.112545,0.203089,0.150256,0.664282,0.202393,0.944643,0.289799,0.15735,0.0655955,0.474426,0.828503,0.929312,0.558474,0.0757843,0.97773,0.583515,0.918043,0.69153,0.262907,0.294455,0.312904,0.709518,0.509137,0.749794,0.642333,0.126722,0.644883,0.52005,0.664991,0.523758,0.838498,0.329921,0.227371,0.820219,0.187999,0.895783,0.215255,0.477042,0.935637,0.621405,0.495842,0.0182476,0.620579,0.636839,0.020981,0.600129,0.882665,0.0403678,0.882088,0.310637,0.664839,0.888837,0.612398,0.194515,0.0702761,0.0705704,0.719153,0.432924,0.32756,0.800809,0.0221298,0.634976,0.884521,0.634868,0.256587,0.109284,0.382994,0.783259,0.988323,0.767976,0.0498792,0.947801,0.732947,0.290006,0.430639,0.0999119,0.823014,0.0522732,0.860197,0.901758,0.560603,0.393626,0.357928,0.568237,0.880018,0.695372,0.445237,0.844235,0.0188122,0.796151,0.910128,0.876345,0.568159,0.995362,0.0557483,0.0200559,0.559068,0.565592,0.117332,0.617906,0.280252,0.125162,0.177519,0.0367054,0.31468,0.513492,0.544697,0.975645,0.920235,0.496619,0.9438,0.674809,0.127264,0.623533,0.64155,0.805165,0.247992,0.448632,0.88807,0.836668,0.3381,0.675109,0.739886,0.586905,0.45118,0.246271,0.921496,0.95328,0.121129,0.26535,0.899865,0.494779,0.958193,0.87806,0.950293,0.119888,0.926387,0.488412,0.678486,0.160492,0.700541,0.5187,0.248744,0.194336,0.40563,0.804147,0.886711,0.323035,0.837709,0.928117,0.3882,0.206042,0.243544,0.803609,0.135256,0.898637,0.0260438,0.631736,0.909993,0.799998,0.768997,0.982606,0.833547,0.85022,0.37375,0.705642,0.969014,0.158471,0.890008,0.909034,0.306648,0.936946,0.224714,0.775073,0.500979,0.404723,0.14803,0.380549,0.145952,0.361948,0.942058,0.764237,0.689138,0.73797,0.191105,0.328619,0.386919,0.602546,0.175254,0.840487,0.220551,0.325712,0.264032,0.40288,0.548543,0.308642,0.948543,0.191704,0.887187,0.815375,0.293421,0.742023,0.114472,0.278398,0.414032,0.0400924,0.680057,0.0781603,0.385829,0.978745,0.262872,0.958279,0.613485,0.818067,0.22341,0.27364,0.521058,0.807468,0.382875,0.285662,0.922839,0.673646,0.0545602,0.42589,0.801692,0.824221,0.102184,0.752783,0.0652252,0.835793,0.138183,0.185185,0.767513,0.360785,0.309839,0.0692139,0.94796,0.153229,0.361742,0.789017,0.8743,0.746363,0.285305,0.456427,0.0748298,0.0553645,0.598422,0.00761312,0.609328,0.284265,0.741287,0.232295,0.986461,0.851606,0.0888059,0.0169703,0.897546,0.897783,0.616961,0.863529,0.832851,0.978287,0.766699,0.016512,0.974913,0.907881,0.146773,0.739503,0.48522,0.756596,0.131219,0.409558,0.459601,0.768819,0.141705,0.618419,0.853672,0.49594,0.876484,0.350829,0.892454,0.736176,0.975935,0.737675,0.208266,0.173665,0.693305,0.269295,0.149558,0.735996,0.539462,0.235644,0.961367,0.0469278,0.0542235,0.121696,0.517282,0.106799,0.382831,0.686776,0.279954,0.470474,0.128697,0.8141,0.789026,0.500719,0.571133,0.189307,0.0139273,0.952448,0.0603842,0.673475,0.544063,0.701205,0.883213,0.772195,0.329464,0.132042,0.0363908,0.9854,0.888542,0.559551,0.0532625,0.660395,0.466219,0.97291,0.201878,0.416175,0.366193,0.905331,0.431822,0.282297,0.257893,0.595155,0.526444,0.617667,0.879224,0.10294,0.897703,0.736088,0.216329,0.47274,0.604632,0.631171,0.883725,0.206275,0.815595,0.126834,0.795574,0.870005,0.8235,0.92898,0.633676,0.70614,0.418725,0.248962,0.260752,0.736515,0.729663,0.584436,0.0966326,0.335089,0.109969,0.529454,0.496528,0.101019,0.255158,0.0823665,0.304988,0.381707,0.603875,0.763297,0.426605,0.723998,0.795682,0.895659,0.23977,0.0864503,0.598217,0.332672,0.721651,0.00788039,0.56872,0.890744,0.399242,0.435948,0.620917,0.817585,0.458437,0.517292,0.893544,0.377797,0.238943,0.291537,0.956188,0.094713,0.251333,0.546233,0.700188,0.354642,0.442281,0.595358,0.310897,0.820816,0.194604,0.839837,0.869921,0.550331,0.920037,0.673807,0.902887,0.637111,0.932306,0.134527,0.913823,0.801709,0.178631,0.994897,0.786506,0.736389,0.351299,0.2644,0.847459,0.524259,0.463529,0.609208,0.714511,0.360519,0.598522,0.0804857,0.380793,0.750759,0.864534,0.35018,0.526189,0.560815,0.3943,0.00510436,0.0665441,0.203086,0.216848,0.455153,0.0269662,0.412789,0.447496,0.935108,0.625109,0.157035,0.0945612,0.42858,0.258541,0.615947,0.893248,0.995422,0.410119,0.757935,0.105938,0.201514,0.442524,0.755461,0.442609,0.748835,0.875952,0.0249738,0.744415,0.102979,0.980459,0.707623,0.846883,0.0556882,0.395274,0.227642,0.0317635,0.376937,0.318063,0.357724,0.729516,0.218924,0.961979,0.288602,0.654168,0.324947,0.137888,0.473385,0.656238,0.750502,0.824035,0.33301,0.373946,0.256745,|0.995238,0.385849,0.48572,0.957587,0.885964,0.56353,0.755466,0.558703,0.892999,0.407187,0.130478,0.92129,0.021669,0.716293,0.765666,0.7826,0.16946,0.267107,0.169035,0.642249,0.477709,0.624287,0.161056,0.532314,0.973996,0.573738,0.188858,0.456437,0.116566,0.908492,0.917239,0.785194,0.920824,0.133293,0.852505,0.795686,0.171976,0.439949,0.0506095,0.572157,0.71834,0.782598,0.217808,0.691087,0.00170487,0.476816,0.991994,0.790644,0.164943,0.922864,0.639456,0.615598,0.280342,0.566308,0.537689,0.614001,0.708746,0.873658,0.499288,0.630685,0.141871,0.0741109,0.501348,0.328624,0.754695,0.0276737,0.509357,0.664386,0.816873,0.672583,0.813526,0.53861,0.397158,0.301915,0.394769,0.402278,0.930063,0.758958,0.688506,0.964364,0.128803,0.864249,0.162143,0.937081,0.706249,0.337347,0.0487662,0.727479,0.631467,0.418544,0.617376,0.242818,0.739655,0.301527,0.244514,0.152843,0.565004,0.423598,0.329704,0.414713,0.0864719,0.94179,0.195723,0.715825,0.202324,0.0875273,0.456872,0.560943,0.0317948,0.394354,0.100765,0.778093,0.0894974,0.735864,0.00945222,0.365992,0.145036,0.267672,0.0935627,0.591203,0.547943,0.521537,0.0857886,0.467229,0.400041,0.743735,0.15975,0.831918,0.599846,0.315098,0.596883,0.236299,0.648363,0.325052,0.411428,0.430694,0.0959127,0.337415,0.44578,0.070968,0.174354,0.411899,0.604328,0.645842,0.158058,0.553291,0.458204,0.807954,0.880851,0.57057,0.857268,0.579998,0.0429776,0.715953,0.254137,0.970216,0.790785,0.913956,0.56174,0.947675,0.718879,0.414862,0.812529,0.714257,0.827881,0.0242087,0.770276,0.400431,0.151095,0.320723,0.53395,0.69207,0.12368,0.940819,0.102482,0.461648,0.954898,0.136918,0.421603,0.42876,0.0303669,0.15456,0.413071,0.604593,0.881228,0.910507,0.81954,0.272355,0.0302172,0.0711915,0.497388,0.537525,0.108303,0.938853,0.492352,0.105347,0.928222,0.963998,0.652766,0.912911,0.474799,0.147538,0.832028,0.0961176,0.598025,0.282872,0.745802,0.601559,0.483934,0.104826,0.489812,0.381555,0.993712,0.1042,0.513646,0.830882,0.698202,0.449504,0.856125,0.195904,0.745973,0.585267,0.913325,0.739799,0.357062,0.00340861,0.316322,0.968604,0.720392,0.00972372,0.842892,0.736212,0.932938,0.0292318,0.857683,0.157588,0.891671,0.168103,0.991566,0.911864,0.299154,0.638449,0.0617122,0.922111,0.965072,0.62626,0.959347,0.373313,0.0252825,0.634241,0.955897,0.729817,0.333325,0.0235669,0.558166,0.692017,0.861869,0.123093,0.473661,0.621939,0.609511,0.447821,0.292995,0.836797,0.479622,0.959384,0.378833,0.42702,0.124407,0.829409,0.139825,0.563858,0.930779,0.79289,0.161323,0.470785,0.316912,0.336826,0.451438,0.721397,0.641076,0.802215,0.212644,0.147264,0.4707,0.00248241,0.58388,0.487716,0.410659,0.399638,0.333932,0.385742,0.710323,0.260265,0.927394,0.742257,0.547827,0.586532,0.852523,0.270705,0.866968,0.0829499,0.331025,0.672344,0.51645,0.712517,0.528965,0.660218,0.484834,0.963901,0.423998,0.969336,0.368099,0.930452,0.387433,0.358646,0.381658,0.087308,0.833488,0.746191,0.459182,0.43564,0.536228,0.976888,0.362227,0.882415,0.310088,0.800531,0.010636,0.147896,0.948718,0.780307,0.696532,0.114762,0.837931,0.655989,0.320208,0.915511,0.299963,0.221304,0.382533,0.632026,0.833598,0.376675,0.500792,0.888235,0.533939,0.770217,0.486468,0.691585,0.638812,0.835495,0.179386,0.753945,0.87189,0.560211,0.924574,0.842352,0.786533,0.49202,0.965778,0.796621,0.210131,0.413395,0.23469,0.706948,0.213561,0.461735,0.878363,0.888692,0.432942,0.943173,0.283537,0.570716,0.942894,0.983449,0.991588,0.164589,0.307565,0.622428,0.50464,0.245411,0.282726,0.286398,0.736126,0.0546865,0.0852114,0.982691,0.323109,0.370556,0.983363,0.297247,0.126701,0.689079,0.305528,0.362567,0.425121,0.359124,0.826225,0.112777,0.985409,0.843139,0.480052,0.621184,0.130355,0.70078,0.0245914,0.550976,0.230051,0.441136,0.370675,0.43801,0.159579,0.150856,0.528969,0.246899,0.958331,0.320329,0.936044,0.533015,0.212159,0.588615,0.555232,0.358975,0.956658,0.183847,0.603984,0.989764,0.239018,0.255551,0.0570582,0.875795,0.589056,0.351066,0.87704,0.87856,0.565894,0.701857,0.451511,0.73405,0.579027,0.195224,0.00234085,0.923807,0.191141,0.565839,0.715438,0.854859,0.514363,0.395824,0.173935,0.897929,0.708575,0.615878,0.889306,0.825819,0.203709,0.657746,0.97768,0.338946,0.890851,0.446171,0.277442,0.906671,0.425403,0.0394327,0.958913,0.515132,0.585301,0.123756,0.805283,0.839702,0.713293,0.458662,0.341576,0.642871,0.38273,0.92464,0.171842,0.893622,0.0878223,0.830194,0.42849,0.332119,0.104021,0.20846,0.433499,0.595245,0.610366,0.276889,0.747459,0.333298,0.392263,0.767998,0.950056,0.281601,0.749838,0.992822,0.785035,0.650797,0.417485,0.644328,0.386417,0.524866,0.265516,0.611282,0.494123,0.261118,0.305925,0.455886,0.054118,0.295689,0.462107,0.872344,0.956173,0.220309,0.262923,0.378163,0.255278,0.859294,0.322663,0.749327,0.914512,0.560336,0.11492,0.613595,0.817173,0.0964949,0.54152,0.933551,0.57238,0.553787,0.389929,0.589221,0.368075,0.65551,0.187406,0.589714,0.777272,0.657117,0.116954,0.165213,0.322628,0.783242,0.403554,0.999533,0.509148,0.330871,0.0122461,0.810249,0.242497,0.248086,0.695025,0.219492,0.797038,0.663563,0.982367,0.0625826,0.0334218,0.470769,0.816993,0.568741,0.74481,0.083046,0.733995,0.706585,0.219601,0.256824,0.473608,0.166269,0.726742,0.525782,0.858477,0.345829,0.21233,0.383052,0.484768,0.323191,0.657405,0.821939,0.640717,0.0395843,0.224281,0.285929,0.633817,0.794606,0.813876,0.398611,0.814524,0.965423,0.33921,0.201007,0.161786,0.588313,0.765268,0.847081,0.776098,0.678886,0.780322,0.162249,0.726566,0.0423649,0.110736,0.379011,0.700756,0.917252,0.313042,0.802142,0.159351,0.106548,0.683806,0.551314,0.00640833,0.678551,0.165067,0.83395,0.52651,0.274201,0.228038,0.870457,0.795389,0.668117,0.026544,0.720139,0.699422,0.632015,0.459071,0.255725,0.815424,0.741105,0.17372,0.393632,0.379115,0.493525,0.10202,0.358256,0.565753,0.518883,0.0831047,0.0303717,0.16332,0.432443,0.716824,0.497693,0.0993842,0.472054,0.794734,0.331152,0.296294,0.0977606,0.934271,0.691608,0.701921,0.161018,0.909677,0.112429,0.370465,0.470565,0.215547,0.0217791,0.11832,0.774968,0.0514815,0.636188,0.62005,0.963335,0.348499,0.491012,0.651414,0.176359,0.965415,0.8165,0.141579,0.693599,0.384364,0.459853,0.312537,0.88962,0.874753,0.598472,0.357649,0.0829932,0.396835,0.417166,0.370242,0.523492,0.127787,0.629028,0.525451,0.225335,0.0778394,0.484789,0.48417,0.458219,0.160729,0.0583831,0.794297,0.874405,0.377251,0.847443,0.607619,0.532275,0.107687,0.039279,0.825281,0.401844,0.761092,0.759542,0.598093,0.521536,0.177141,0.138586,0.0850613,0.874357,0.0794482,0.738752,0.453764,0.818484,0.144536,0.0312049,0.624761,0.943122,0.231722,0.20604,0.582117,0.72624,0.20975,0.968847,0.158773,0.645348,0.458402,0.247619,0.358001,0.128998,0.394038,0.95782,0.30316,0.992344,0.54081,0.364972,0.281619,0.133546,0.0757508,0.973797,0.578287,0.72025,0.794361,0.611093,0.407163,0.723396,0.570023,0.40056,0.519838,0.738271,0.201563,0.190494,0.936927,0.738467,0.123651,0.173435,0.307055,0.830745,0.175994,0.116652,0.800061,0.655483,0.3412,0.302445,0.942246,0.949483,0.186518,0.512967,0.214534,0.825836,0.350658,0.890505,0.566496,0.069353,0.571876,0.136584,0.904072,0.027694,0.589425,0.746033,0.842938,0.307658,0.430936,0.00491673,0.284583,0.672247,0.0748481,0.648918,0.430597,0.314143,0.23927,0.757688,0.76276,0.255202,0.624142,0.829713,0.81074,0.254231,0.58073,0.251825,0.352179,0.238614,0.554441,0.484014,0.282977,0.660778,0.0722914,0.623208,0.72957,0.997907,0.186859,0.938539,0.467782,0.325193,0.0833218,0.492075,0.745644,0.538113,0.713339,0.305681,0.642809,0.328429,0.473428,0.0985205,0.435632,0.301886,0.682285,0.962178,0.388591,0.710345,0.937718,0.358831,0.661339,0.942116,0.74189,0.297619,0.5214,0.650304,0.970709,0.800099,0.754554,0.569182,0.733404,0.137278,0.361377,0.437309,0.944959,0.185818,0.746713,0.125023,0.127211,0.231494,0.692741,0.849777,0.0394357,0.340353,0.187328,0.528502,0.345116,0.346262,0.0688922,0.227065,0.284714,0.418015,0.117958,0.049501,0.75261,0.773252,0.712412,0.0616306,0.517053,0.766007,0.891244,0.257542,0.208878,0.398028,0.575358,0.577416,0.936628,0.295344,0.110885,0.640342,0.46755,0.543525,0.969664,0.310442,0.761752,0.356685,0.796905,0.161924,0.0644466,0.155921,0.501321,0.0896658,0.663402,0.285548,0.724785,0.836735,0.902742,0.931373,0.166351,0.167913,0.981595,0.222608,0.642982,0.766292,0.402181,0.277155,0.443138,0.148596,0.856491,0.407625,0.931402,0.0196273,0.98583,0.155134,0.407617,0.855293,0.320394,0.595209,0.89339,0.272225,0.641208,0.319319,0.669106,0.736777,0.979976,0.306295,0.661127,0.704946,0.463517,0.213421,0.612026,0.998856,0.580305,0.506502,0.860153,0.30391,0.352393,0.634317,0.0142242,0.657885,0.139188,0.713633,0.109365,0.212827,0.360449,0.359081,0.151557,0.235755,0.809618,0.705021,0.578681,0.519105,0.285404,0.586989,0.00937635,0.026166,0.950663,0.749631,0.328477,0.484748,0.945384,0.986648,0.605016,0.831377,0.875542,0.976082,0.963269,0.163178,0.0630355,0.443734,0.24518,0.983415,0.659743,0.603586,0.675612,0.891166,0.942927,0.944686,0.574982,0.0281302,0.243649,0.336946,0.169095,0.391319,0.222908,0.0420291,0.147687,0.709052,0.997716,0.927161,0.155833,0.837735,0.593887,0.275887,|0.926524,0.096468,0.00195217,0.734204,0.431633,0.127207,0.983107,0.302737,0.0398274,0.735658,0.192079,0.309632,0.745214,0.766632,0.238164,0.0153378,0.0139787,0.563326,0.317076,0.0555879,0.234482,0.0488613,0.105152,0.870509,0.664932,0.926162,0.830394,0.530603,0.0506664,0.966645,0.118928,0.0255916,0.0507411,0.328829,0.43901,0.905237,0.21752,0.950921,0.990931,0.329002,0.837535,0.302327,0.882682,0.846639,0.444957,0.932349,0.0950289,0.842097,0.267152,0.848872,0.369867,0.693398,0.630684,0.469395,0.435577,0.557137,0.0846299,0.854308,0.806507,0.113283,0.813617,0.332304,0.711975,0.709959,0.0015462,0.611523,0.067792,0.267286,0.616893,0.844387,0.130471,0.879691,0.454808,0.944019,0.989258,0.669579,0.134149,0.5672,0.788398,0.476056,0.729187,0.457227,0.0088042,0.468705,0.516059,0.158656,0.628497,0.790913,0.635579,0.510356,0.723691,0.529152,0.358015,0.987422,0.303923,0.986321,0.0467444,0.717366,0.740736,0.548108,0.162151,0.340997,0.297599,0.320357,0.106737,0.402606,0.730871,0.239396,0.59727,0.959219,0.852467,0.857288,0.0192128,0.798326,0.454693,0.571093,0.914407,0.802452,0.411894,0.370425,0.669177,0.382875,0.65754,0.817075,0.077086,0.0764576,0.836416,0.21151,0.778985,0.450919,0.478001,0.803045,0.143592,0.0353275,0.420532,0.859852,0.405365,0.475864,0.739234,0.634748,0.753813,0.570393,0.637846,0.921107,0.487912,0.311519,0.482809,0.667175,0.399178,0.416677,0.415572,0.83057,0.219086,0.810879,0.80247,0.632445,0.850969,0.0387697,0.913468,0.540805,0.893231,0.477898,0.405366,0.429441,0.503223,0.087791,0.733142,0.436969,0.365158,0.311199,0.450404,0.358749,0.471202,0.6771,0.205011,0.867942,0.616731,0.849523,0.821636,0.482027,0.0100188,0.463009,0.733881,0.347105,0.6673,0.712544,0.754526,0.881177,0.915127,0.87236,0.602505,0.151347,0.501131,0.105705,0.875517,0.153686,0.239631,0.237705,0.958691,0.239775,0.809433,0.721712,0.457529,0.521429,0.131276,0.18635,0.580592,0.750383,0.260125,0.467615,0.742528,0.128263,0.980901,0.0913864,0.558455,0.883038,0.747244,0.0526665,0.95799,0.374938,0.451193,0.0428094,0.2279,0.113395,0.290881,0.547939,0.494426,0.0110798,0.873801,0.411448,0.4038,0.669617,0.496084,0.0387436,0.806683,0.0607469,0.465018,0.0593355,0.334806,0.313277,0.980158,0.0443732,0.574707,0.627685,0.435669,0.369749,0.763128,0.997191,0.886286,0.284697,0.306267,0.232194,0.713712,0.749806,0.472228,0.627997,0.454519,0.645781,0.132549,0.325506,0.413623,0.285108,0.469642,0.909634,0.338107,0.944927,0.414388,0.441849,0.147119,0.278076,0.502656,0.49492,0.0974541,0.454404,0.965794,0.756589,0.608641,0.335608,0.331517,0.324445,0.0693153,0.74753,0.569572,0.321487,0.806736,0.690271,0.645601,0.562733,0.682737,0.541709,0.396421,0.298017,0.63769,0.920397,0.272992,0.0848706,0.851198,0.175226,0.649304,0.989055,0.663622,0.0976894,0.896041,0.933438,0.244092,0.0762833,0.555478,0.912019,0.00940669,0.57532,0.382057,0.519296,0.489905,0.769718,0.802875,0.873592,0.138533,0.229114,0.70181,0.668863,0.508331,0.824101,0.818898,0.909234,0.732699,0.828824,0.787666,0.611115,0.77861,0.735347,0.618204,0.568568,0.740957,0.518737,0.106775,0.807065,0.487154,0.857321,0.0548105,0.345991,0.478137,0.853761,0.326544,0.558747,0.82354,0.315603,0.107023,0.768075,0.624182,0.511942,0.928815,0.984405,0.672867,0.269685,0.85995,0.52615,0.426855,0.248051,0.704401,0.31345,0.684537,0.334788,0.460151,0.831867,0.0373656,0.865233,0.943599,0.67066,0.77892,0.717252,0.995131,0.0893761,0.543882,0.163743,0.345387,0.236354,0.873367,0.297532,0.0946622,0.472557,0.229235,0.627509,0.998861,0.905107,0.759457,0.680235,0.586553,0.704559,0.101568,0.557468,0.729373,0.47122,0.222106,0.101075,0.0222592,0.783296,0.727361,0.481245,0.334096,0.0907681,0.827621,0.238583,0.26393,0.172327,0.799074,0.138844,0.141925,0.388718,0.542354,0.65825,0.92322,0.262686,0.540766,0.971386,0.804625,0.346532,0.289227,0.928214,0.966516,0.917286,0.329116,0.650133,0.963621,0.190902,0.797068,0.879786,0.563908,0.88346,0.720178,0.628403,0.293608,0.321344,0.30561,0.812147,0.77273,0.608344,0.648501,0.419247,0.211615,0.764883,0.931767,0.670363,0.710159,0.393537,0.710664,0.764502,0.363907,0.0347814,0.424247,0.733315,0.279292,0.24009,0.425201,0.0635098,0.362651,0.283222,0.95179,0.13479,0.921649,0.418122,0.875661,0.019406,0.841246,0.715991,0.90636,0.155984,0.374145,0.945404,0.821952,0.754206,0.903517,0.611158,0.423803,0.546845,0.105174,0.611892,0.512955,0.14836,0.139006,0.358136,0.215657,0.185053,0.539744,0.151412,0.580418,0.480555,0.156708,0.562383,0.644972,0.664892,0.537651,0.0527044,0.0916939,0.223423,0.956445,0.929353,0.524696,0.587436,0.673454,0.232726,0.32337,0.777087,0.793948,0.965737,0.412859,0.30366,0.0112212,0.0732781,0.635137,0.41626,0.350275,0.616682,0.107638,0.999877,0.530346,0.429812,0.33248,0.167875,0.380087,0.0456253,0.694385,0.0132373,0.823271,0.404965,0.60429,0.14431,0.821179,0.431754,0.692682,0.205906,0.446859,0.0448076,0.458399,0.560161,0.441627,0.354473,0.0266302,0.395751,0.137321,0.642116,0.123674,0.910566,0.57127,0.0506112,0.826778,0.871475,0.867605,0.0573251,0.624155,0.218157,0.838916,0.267011,0.766092,0.502385,0.769177,0.150477,0.416888,0.0825012,0.0615327,0.946654,0.457758,0.649124,0.252748,0.0467145,0.126867,0.346519,0.96546,0.201846,0.406171,0.298662,0.794313,0.515917,0.754163,0.488545,0.293611,0.725038,0.351484,0.209126,0.383595,0.879061,0.155946,0.387083,0.509262,0.0546681,0.343695,0.555325,0.272599,0.485903,0.460421,0.405095,0.23061,0.728538,0.241821,0.650885,0.95583,0.102914,0.755305,0.392379,0.359906,0.578264,0.243904,0.910159,0.0375933,0.828925,0.869451,0.732915,0.169007,0.793025,0.312799,0.0683163,0.966944,0.504647,0.229233,0.882725,0.221265,0.169426,0.0913855,0.877418,0.848966,0.969026,0.949841,0.78642,0.541473,0.118719,0.694438,0.451979,0.805542,0.560095,0.656254,0.748181,0.822751,0.576664,0.958781,0.599982,0.796923,0.35844,0.635123,0.644482,0.110877,0.490522,0.606431,0.123416,0.259286,0.452242,0.144928,0.0193807,0.609812,0.586196,0.0628877,0.0724266,0.479163,0.140261,0.632416,0.935169,0.581854,0.668281,0.470549,0.645363,0.0610142,0.406024,0.496539,0.986238,0.924609,0.470775,0.277817,0.629633,0.790622,0.780849,0.881649,0.888049,0.455564,0.114913,0.759444,0.415511,0.473585,0.191282,0.0343004,0.855139,0.411142,0.109563,0.0907849,0.930869,0.0923759,0.249105,0.132065,0.761904,0.466591,0.978887,0.926205,0.271089,0.55505,0.495136,0.864477,0.921457,0.163688,0.796351,0.00237954,0.160371,0.570273,0.504817,0.768767,0.265109,0.19524,0.546396,0.869502,0.414738,0.242614,0.745217,0.849846,0.0938245,0.446885,0.842682,0.792784,0.772082,0.363594,0.743317,0.777962,0.647684,0.191112,0.325182,0.0870863,0.447767,0.521598,0.302909,0.230694,0.99187,0.490911,0.179542,0.514255,0.564405,0.444615,0.992878,0.733321,0.132712,0.101711,0.940138,0.882828,0.455551,0.910523,0.348346,0.342669,0.741436,0.89121,0.295354,0.465608,0.0960163,0.695422,0.512926,0.570562,0.485003,0.862879,0.970537,0.803038,0.469491,0.817368,0.570754,0.430664,0.442057,0.559075,0.215042,0.108603,0.175887,0.19164,0.565454,0.819336,0.0744292,0.558313,0.342154,0.123389,0.158273,0.518739,0.250655,0.51583,0.930264,0.835824,0.00117421,0.890393,0.829177,0.218945,0.0788834,0.929338,0.327037,0.468607,0.349417,0.542672,0.26767,0.793078,0.478309,0.665056,0.647454,0.63098,0.271285,0.554001,0.177721,0.673094,0.562219,0.369051,0.170954,0.602564,0.864729,0.417605,0.378748,0.26586,0.727364,0.707304,0.334479,0.335914,0.900668,0.351719,0.272661,0.917568,0.285616,0.775387,0.454494,0.0593801,0.34451,0.434023,0.334072,0.701474,0.450548,0.0762064,0.328682,0.696823,0.752073,0.868223,0.348402,0.456239,0.856523,0.817396,0.622713,0.187012,0.830856,0.778674,0.637712,0.277458,0.949237,0.751697,0.649348,0.0876936,0.439334,0.743219,0.279363,0.550162,0.0729613,0.488107,0.702978,0.274933,0.282295,0.821779,0.858232,0.559785,0.540805,0.223468,0.535466,0.890576,0.747521,0.478522,0.958285,0.800162,0.719544,0.254258,0.0977284,0.972016,0.970383,0.543115,0.302396,0.753216,0.895138,0.023208,0.375763,0.0615671,0.338434,0.00908184,0.0311372,0.973624,0.0764558,0.558889,0.375155,0.916662,0.75587,0.0527961,0.23605,0.0900738,0.373958,0.081497,0.64023,0.592378,0.894746,0.95307,0.180956,0.05949,0.493388,0.412844,0.823781,0.559607,0.160899,0.519252,0.315664,0.502511,0.55368,0.169902,0.337208,0.812079,0.727092,0.0502567,0.716149,0.753389,0.726369,0.210267,0.0088833,0.441464,0.117515,0.38476,0.912842,0.1265,0.324498,0.0193463,0.903055,0.342169,0.151634,0.833293,0.735383,0.673354,0.020324,0.967602,0.262262,0.0169942,0.766338,0.28969,0.88232,0.920994,0.672577,0.329014,0.242449,0.982953,0.147065,0.29652,0.772019,0.0848176,0.178998,0.603228,0.857916,0.307802,0.132031,0.578795,0.423296,0.0783447,0.200066,0.999041,0.133249,0.228897,0.923027,0.00409377,0.15183,0.516418,0.256552,0.925407,0.603016,0.84689,0.571557,0.671784,0.0063445,0.0281001,0.905532,0.447757,0.125091,0.915515,0.649809,0.741946,0.251842,0.862645,0.483746,0.739776,0.59255,0.351036,0.333104,0.0746211,0.0453749,0.601341,0.201093,0.481764,0.456523,0.394406,0.605886,0.00401014,0.795649,0.912309,0.72238,0.196223,0.459744,0.510219,0.510267,0.998124,0.825075,0.506755,0.896373,0.777106,0.995352,0.160365,0.0383639,|0.0578168,0.344098,0.77351,0.481485,0.298764,0.666174,0.318432,0.729543,0.164507,0.487262,0.0605535,0.703085,0.399505,0.570965,0.52824,0.413658,0.0431395,0.101325,0.0589076,0.194405,0.842314,0.750401,0.277445,0.728688,0.553392,0.810325,0.646065,0.485077,0.3003,0.915272,0.679681,0.53582,0.0979777,0.163107,0.498554,0.932994,0.882906,0.823257,0.99354,0.115338,0.294252,0.325427,0.941656,0.854972,0.394292,0.0835703,0.470072,0.828896,0.192553,0.411137,0.0310981,0.00342429,0.699262,0.755693,0.764153,0.31996,0.963493,0.150071,0.513921,0.588283,0.00306761,0.120063,0.369945,0.562469,0.479613,0.956864,0.221857,0.604334,0.494975,0.41348,0.153411,0.270569,0.0822513,0.0831342,0.88351,0.0976235,0.786188,0.112585,0.55707,0.605764,0.986062,0.370942,0.817453,0.415478,0.536825,0.199208,0.719499,0.498654,0.211374,0.779019,0.925305,0.600536,0.289197,0.425988,0.00857276,0.330875,0.54403,0.242797,0.59967,0.675759,0.760079,0.738069,0.732574,0.46742,0.765778,0.366803,0.117485,0.165103,0.286725,0.6069,0.413342,0.436765,0.105987,0.0592732,0.668113,0.343085,0.921049,0.952011,0.232899,0.0613385,0.889232,0.306667,0.673135,0.208258,0.667049,0.8436,0.776016,0.956834,0.951226,0.114195,0.689012,0.972156,0.756033,0.903799,0.428012,0.692434,0.531757,0.510883,0.537147,0.459112,0.657483,0.792446,0.947627,0.621121,0.891412,0.365635,0.570461,0.57756,0.217244,0.251652,0.753011,0.356584,0.562094,0.253142,0.0246897,0.922183,0.747995,0.690772,0.670715,0.635401,0.774916,0.739653,0.3579,0.660229,0.743051,0.177434,0.268354,0.636512,0.0604858,0.0114436,0.295733,0.467573,0.409983,0.115899,0.904794,0.0534875,0.691061,0.998233,0.188146,0.379427,0.918963,0.980489,0.0563675,0.395611,0.0123722,0.862731,0.883874,0.516136,0.473227,0.2348,0.244196,0.0935331,0.669067,0.428916,0.712398,0.689475,0.362042,0.270225,0.0274664,0.371846,0.203114,0.023885,0.881439,0.126708,0.170315,0.434396,0.606884,0.676778,0.684802,0.586036,0.102972,0.857596,0.214089,0.632754,0.76773,0.181675,0.366904,0.824117,0.814871,0.802866,0.935028,0.364175,0.857827,0.671538,0.573953,0.378406,0.08822,0.692496,0.591927,0.854684,0.984344,0.43511,0.826712,0.956572,0.508514,0.889645,0.125218,0.19426,0.719075,0.000250995,0.382769,0.00873023,0.48763,0.727947,0.534132,0.165412,0.431299,0.648757,0.470066,0.912632,0.624836,0.770105,0.43617,0.987268,0.692601,0.976201,0.0423461,0.82988,0.658144,0.736575,0.404022,0.597478,0.312844,0.422752,0.445689,0.618354,0.405433,0.187201,0.248329,0.161635,0.0367853,0.845953,0.029102,0.155892,0.830498,0.655941,0.683077,0.477937,0.148831,0.0721794,0.567316,0.0687003,0.0737004,0.968986,0.786925,0.737368,0.329303,0.488076,0.245244,0.447757,0.719366,0.836053,0.755889,0.797203,0.111081,0.306407,0.17197,0.891487,0.282107,0.423747,0.132434,0.941898,0.513688,0.174297,0.332035,0.633858,0.975124,0.090165,0.720226,0.6009,0.0921733,0.36991,0.744938,0.731234,0.531812,0.428321,0.971085,0.362832,0.000889361,0.447339,0.277453,0.268496,0.532766,0.797935,0.679055,0.244548,0.313102,0.304888,0.279448,0.982121,0.878565,0.22382,0.213483,0.0672276,0.0654538,0.274887,0.246202,0.524355,0.739603,0.271966,0.322791,0.149714,0.369478,0.375751,0.965015,0.484287,0.194145,0.396889,0.977578,0.141747,0.488892,0.629575,0.459302,0.573494,0.27064,0.421219,0.269885,0.674708,0.653367,0.820076,0.615059,0.992041,0.50822,0.87144,0.45694,0.755624,0.524534,0.0941106,0.082991,0.621638,0.225668,0.19819,0.428416,0.32534,0.870722,0.183571,0.586494,0.410254,0.925581,0.599722,0.996651,0.0918893,0.809892,0.79401,0.470077,0.478703,0.627536,0.497021,0.0685585,0.0885876,0.736699,0.0736316,0.455522,0.509819,0.197441,0.627646,0.248629,0.234525,0.0702879,0.0154358,0.906591,0.881543,0.291216,0.78256,0.637133,0.891876,0.0394043,0.136567,0.615748,0.744328,0.405928,0.262635,0.33218,0.129475,0.0601362,0.790377,0.834694,0.804665,0.577048,0.200236,0.31475,0.0703529,0.203512,0.220371,0.112762,0.785559,0.752854,0.144364,0.505334,0.326346,0.0411982,0.371437,0.993586,0.995688,0.676072,0.765205,0.584149,0.441964,0.500519,0.263478,0.888475,0.693005,0.291229,0.951989,0.268318,0.106235,0.495026,0.397897,0.120225,0.0866327,0.346217,0.338711,0.249197,0.201108,0.620588,0.99547,0.603635,0.595754,0.346556,0.800499,0.648891,0.422724,0.597758,0.128838,0.966315,0.443651,0.87758,0.610024,0.289326,0.0800846,0.707717,0.629259,0.965988,0.500078,0.92291,0.779507,0.992808,0.192129,0.177647,0.765017,0.902275,0.864482,0.223807,0.998521,0.498028,0.767537,0.773233,0.665267,0.135596,0.882557,0.789585,0.566688,0.109576,0.105694,0.706803,0.101596,0.62593,0.978749,0.280553,0.984607,0.535076,0.919847,0.453926,0.196129,0.00743753,0.535041,0.61767,0.58923,0.973644,0.364851,0.179783,0.138576,0.480791,0.110864,0.650822,0.319662,0.0242234,0.840611,0.948166,0.624513,0.11174,0.00867355,0.577187,0.796472,0.264593,0.708774,0.033756,0.398182,0.610263,0.115347,0.201263,0.0819244,0.517405,0.884604,0.456534,0.0955071,0.727506,0.950671,0.984547,0.125061,0.577369,0.872864,0.685895,0.505127,0.767425,0.144248,0.488188,0.287256,0.835359,0.770705,0.167853,0.682538,0.241181,0.814903,0.402932,0.37984,0.462811,0.102043,0.696078,0.644944,0.483413,0.631134,0.932979,0.0913533,0.576496,0.877553,0.953978,0.206513,0.439837,0.4481,0.23289,0.588291,0.745936,0.242408,0.724901,0.125387,0.626417,0.393052,0.958379,0.794297,0.339132,0.52745,0.159829,0.858545,0.43755,0.649181,0.958467,0.0811049,0.174144,0.249695,0.970082,0.545262,0.0687391,0.917527,0.977387,0.185513,0.0440335,0.0031907,0.474628,0.785995,0.0751585,0.790215,0.153655,0.59703,0.564756,0.724541,0.240275,0.0940337,0.0756326,0.942888,0.90789,0.582914,0.737146,0.29111,0.718318,0.886006,0.750144,0.466163,0.315087,0.729745,0.717259,0.918771,0.906362,0.345474,0.945042,0.394805,0.993067,0.749527,0.932435,0.372539,0.536382,0.891095,0.169334,0.54371,0.441567,0.822103,0.608294,0.705711,0.442677,0.00445133,0.997826,0.119175,0.472304,0.220338,0.445251,0.974665,0.838551,0.807228,0.237826,0.83843,0.740251,0.453888,0.738481,0.892692,0.0689942,0.823296,0.0876733,0.396044,0.0842453,0.630849,0.591823,0.959236,0.18582,0.768796,0.435943,0.484958,0.0218949,0.813541,0.22841,0.223819,0.995488,0.142181,0.796796,0.891272,0.0844802,0.594037,0.793617,0.73725,0.830919,0.115901,0.103516,0.30733,0.565783,0.847181,0.882615,0.155357,0.587099,0.801265,0.561508,0.649601,0.00763285,0.0837138,0.722123,0.363384,0.989574,0.681404,0.534567,0.0241257,0.133397,0.6045,0.238236,0.137141,0.38107,0.798232,0.371226,0.408746,0.360055,0.186281,0.23435,0.446726,0.947604,0.221192,0.350847,0.723661,0.770092,0.162466,0.9735,0.653615,0.343966,0.778975,0.775405,0.957797,0.874795,0.80544,0.580132,0.515341,0.0632708,0.0399331,0.983757,0.531869,0.166162,0.321042,0.323644,0.154969,0.629216,0.385607,0.912804,0.438667,0.400171,0.710616,0.515262,0.646397,0.639515,0.126755,0.531364,0.444593,0.659935,0.362736,0.370111,0.364048,0.0151267,0.452885,0.958072,0.374332,0.801092,0.58284,0.826249,0.855329,0.974214,0.264078,0.349897,0.00369519,0.363529,0.160606,0.852218,0.0216997,0.177319,0.742192,0.18881,0.991212,0.574595,0.909531,0.577844,0.981219,0.38891,0.522761,0.574322,0.0325384,0.845626,0.731681,0.711852,0.289362,0.749221,0.192541,0.19949,0.205325,0.541606,0.024513,0.658504,0.731993,0.746558,0.8364,0.366825,0.0394543,0.520081,0.554738,0.598749,0.512693,0.434043,0.332934,0.961047,0.599562,0.881237,0.315226,0.488018,0.882787,0.686812,0.731147,0.0112144,0.0752653,0.721648,0.0863193,0.077957,0.409284,0.00709343,0.0905952,0.277291,0.171068,0.745653,0.721451,0.969337,0.171551,0.725945,0.67684,0.812138,0.470037,0.125905,0.901055,0.214435,0.88264,0.856923,0.12112,0.792655,0.258805,0.132334,0.290056,0.461646,0.177586,0.816972,0.872493,0.541655,0.211615,0.698149,0.120517,0.554764,0.830434,0.36878,0.715284,0.867052,0.00223982,0.872905,0.130606,0.161336,0.461999,0.42132,0.871922,0.306808,0.54224,0.451208,0.741889,0.377297,0.0427936,0.211414,0.434202,0.701017,0.277815,0.241225,0.386175,0.523728,0.612771,0.452254,0.305641,0.95722,0.977372,0.239789,0.70903,0.34088,0.434238,0.648362,0.295472,0.945018,0.440733,0.0243222,0.620286,0.30074,0.202882,0.974213,0.643681,0.310822,0.756371,0.870505,0.108018,0.17752,0.0129551,0.889265,0.874732,0.573198,0.894465,0.886201,0.443002,0.692197,0.907509,0.819437,0.471832,0.968942,0.218714,0.724995,0.186223,0.954476,0.69283,0.617411,0.497237,0.125151,0.665973,0.596057,0.926971,0.229035,0.540397,0.126674,0.675918,0.160893,0.504104,0.777516,0.0878447,0.527197,0.920203,0.738555,0.107588,0.896552,0.589945,0.0854686,0.517101,0.843043,0.758989,0.630389,0.213036,0.105869,0.603719,0.7698,0.655615,0.820824,0.426466,0.924289,0.58055,0.370986,0.308558,0.602758,0.417245,0.893485,0.152065,0.805331,0.799628,0.626823,0.920978,0.780548,0.972753,0.245776,0.714349,0.562703,0.629443,0.89788,0.146438,0.123803,0.492606,0.281819,0.495912,0.535711,0.536359,0.395203,0.371752,0.35675,0.271937,0.457175,0.563553,0.542252,0.843107,0.511272,0.38523,0.249361,0.106325,0.703297,0.575074,0.721743,0.0213934,0.87997,0.704298,0.0825221,0.949822,0.155809,0.813513,0.546406,0.622062,0.799297,0.134202,0.0214849,0.370614,0.880893,0.619738,0.612015,0.48191,|0.496854,0.207054,0.229396,0.691994,0.206137,0.518607,0.970766,0.494823,0.0718276,0.562577,0.061343,0.200237,0.982587,0.510734,0.715231,0.623544,0.00137597,0.907165,0.163885,0.841312,0.265736,0.28674,0.618822,0.460849,0.835894,0.446411,0.472614,0.630178,0.292091,0.805864,0.052994,0.861968,0.570575,0.745146,0.637478,0.402759,0.639334,0.972221,0.500276,0.623627,0.705201,0.858938,0.163541,0.0906588,0.386502,0.335105,0.154365,0.146016,0.409342,0.563754,0.72921,0.597513,0.766752,0.270021,0.550624,0.507788,0.750758,0.622139,0.304506,0.943904,0.297355,0.864762,0.422925,0.781214,0.142786,0.532793,0.710781,0.107402,0.310367,0.773269,0.888624,0.075772,0.822779,0.319762,0.708458,0.305512,0.54388,0.91215,0.298728,0.0217007,0.435503,0.587367,0.929707,0.178249,0.454253,0.357281,0.170667,0.88889,0.0250443,0.786412,0.324551,0.404476,0.0241818,0.414738,0.864402,0.493707,0.374079,0.659658,0.482352,0.625962,0.295916,0.658942,0.909202,0.86435,0.25166,0.727847,0.753027,0.306764,0.296393,0.297264,0.214356,0.636675,0.419023,0.342674,0.418509,0.0152205,0.876598,0.692497,0.17928,0.0409463,0.851338,0.909683,0.730412,0.683103,0.183793,0.403506,0.481468,0.706913,0.413714,0.780331,0.728853,0.085084,0.716871,0.577989,0.657791,0.376981,0.858462,0.780243,0.791315,0.99948,0.144076,0.805651,0.51656,0.435789,0.308955,0.693144,0.838313,0.919754,0.153029,0.415253,0.371262,0.00844252,0.641317,0.695196,0.682238,0.753271,0.90281,0.947753,0.666937,0.461325,0.312711,0.320884,0.577135,0.104997,0.969335,0.1902,0.412783,0.255023,0.87007,0.446167,0.516946,0.745938,0.575347,0.393459,0.538454,0.197371,0.795022,0.897456,0.184166,0.151001,0.518151,0.776722,0.153168,0.562954,0.0691015,0.506617,0.734363,0.936533,0.899597,0.681731,0.415324,0.558843,0.979203,0.0610912,0.450342,0.946836,0.0723389,0.0540175,0.337786,0.455827,0.867909,0.826234,0.986452,0.37557,0.946874,0.510273,0.525811,0.405356,0.749848,0.0579874,0.361425,0.330495,0.116089,0.263133,0.966052,0.117903,0.907327,0.958703,0.437555,0.659027,0.343863,0.723284,0.848703,0.814939,0.677122,0.420639,0.268524,0.826445,0.8942,0.335221,0.65752,0.835326,0.784706,0.131848,0.495828,0.30142,0.740168,0.726762,0.598832,0.0182759,0.523705,0.184833,0.700847,0.394161,0.466398,0.938156,0.405331,0.136035,0.938966,0.0664091,0.493319,0.632965,0.628928,0.573052,0.488014,0.371684,0.728433,0.362461,0.662508,0.75912,0.466592,0.352817,0.1789,0.548706,0.12778,0.59127,0.542075,0.56695,0.649437,0.506571,0.81645,0.325425,0.359939,0.0990776,0.526682,0.453239,0.886312,0.0649271,0.54415,0.994454,0.458719,0.187914,0.816355,0.286576,0.0241649,0.866272,0.341747,0.52133,0.229678,0.625095,0.380764,0.460138,0.84073,0.478541,0.185903,0.525332,0.71653,0.804715,0.801975,0.25664,0.137508,0.185888,0.336939,0.794958,0.414457,0.909584,0.18766,0.62735,0.108337,0.0364017,0.218456,0.104988,0.145531,0.95485,0.288869,0.395263,0.939885,0.607328,0.589835,0.434852,0.921088,0.268366,0.864902,0.971927,0.747553,0.573826,0.419425,0.465434,0.298067,0.771119,0.839868,0.391247,0.900593,0.765164,0.0124334,0.479853,0.818506,0.86253,0.0202399,0.901428,0.417074,0.46917,0.710215,0.0625249,0.543734,0.116953,0.591757,0.377262,0.102981,0.82117,0.113629,0.149562,0.70694,0.0657127,0.22392,0.831605,0.43908,0.210835,0.0837643,0.923206,0.393119,0.214802,0.727219,0.941172,0.497111,0.479154,0.306775,0.0713354,0.300878,0.354347,0.28859,0.443159,0.571186,0.275286,0.646467,0.00854552,0.035794,0.311377,0.478894,0.625262,0.852313,0.606069,0.238097,0.00899523,0.450953,0.486921,0.313154,0.735944,0.25788,0.463947,0.822827,0.79607,0.714234,0.992677,0.907469,0.98329,0.598212,0.830444,0.978443,0.661106,0.0593843,0.908218,0.718064,0.643053,0.106998,0.123727,0.733904,0.0982003,0.762541,0.0198548,0.124543,0.446618,0.0895813,0.24018,0.681276,0.725591,0.985108,0.160061,0.409118,0.587797,0.904271,0.430153,0.913837,0.76996,0.880768,0.668285,0.972035,0.776045,0.541942,0.719297,0.306529,0.351205,0.967985,0.0654452,0.513644,0.918592,0.789701,0.419638,0.5639,0.976646,0.863216,0.377417,0.676677,0.721557,0.711965,0.572556,0.315395,0.495983,0.565587,0.210702,0.266686,0.239545,0.18291,0.276449,0.899001,0.263373,0.604583,0.801197,0.047679,0.861746,0.748069,0.565248,0.0960334,0.00756377,0.096069,0.355052,0.943922,0.507959,0.889187,0.923055,0.305098,0.245168,0.405726,0.619375,0.401207,0.816448,0.821421,0.880454,0.648111,0.741674,0.572305,0.348342,0.868115,0.528384,0.530524,0.245996,0.267041,0.680625,0.574162,0.953907,0.39099,0.292398,0.712932,0.650408,0.986451,0.210791,0.482613,0.725418,0.688167,0.229223,0.657067,0.253943,0.576141,0.489154,0.831714,0.962876,0.964972,0.50564,0.138346,0.595349,0.510578,0.877844,0.500663,0.255002,0.311424,0.293133,0.589152,0.895744,0.900152,0.761475,0.23014,0.692172,0.708857,0.164573,0.540183,0.994097,0.35125,0.452219,0.677883,0.743128,0.777409,0.97447,0.742387,0.538099,0.928185,0.489135,0.339839,0.230252,0.222052,0.103259,0.820179,0.726006,0.507108,0.929026,0.205335,0.9449,0.160002,0.735705,0.371844,0.457216,0.687635,0.57174,0.848505,0.860899,0.47082,0.0655002,0.595547,0.0553135,0.762314,0.0726714,0.84745,0.286117,0.847465,0.00121635,0.178715,0.911814,0.0277942,0.463211,0.186858,0.602234,0.40023,0.569579,0.758009,0.123207,0.356213,0.634837,0.954931,0.793174,0.887523,0.428609,0.330304,0.537781,0.593397,0.558965,0.199134,0.0266952,0.746248,0.466165,0.887012,0.489454,0.234117,0.509761,0.656017,0.32558,0.75906,0.951356,0.307738,0.664647,0.04805,0.319111,0.935074,0.45127,0.0829961,0.133687,0.834789,0.572754,0.107252,0.0581867,0.261116,0.368669,0.278153,0.278065,0.807803,0.24904,0.500384,0.724304,0.85619,0.501377,0.702922,0.326683,0.970137,0.505216,0.29158,0.213302,0.338275,0.924521,0.617946,0.569986,0.147549,0.0234193,0.0965786,0.300076,0.623406,0.989105,0.612577,0.945601,0.531175,0.921895,0.996301,0.532665,0.718927,0.852337,0.791847,0.678552,0.88005,0.804509,0.808739,0.278728,0.0965325,0.910737,0.278404,0.747482,0.139628,0.0199822,0.237703,0.432487,0.172769,0.790162,0.255327,0.113438,0.44148,0.652934,0.189028,0.718958,0.90685,0.156178,0.0968584,0.1477,0.994525,0.701324,0.443687,0.261735,0.0509781,0.483631,0.587391,0.0238388,0.881518,0.0427779,0.00845134,0.662227,0.149414,0.00773174,0.315455,0.428808,0.55113,0.411576,0.0353182,0.638326,0.495808,0.444773,0.668568,0.962839,0.0947876,0.062393,0.704872,0.317132,0.628734,0.0134665,0.464339,0.402783,0.712824,0.799667,0.208246,0.598563,0.0198914,0.776621,0.304986,0.30318,0.065249,0.571876,0.798608,0.227883,0.294984,0.88997,0.55977,0.193501,0.503879,0.806709,0.931943,0.408283,0.90581,0.0902525,0.908662,0.740864,0.931344,0.351298,0.785141,0.345788,0.254044,0.569004,0.437787,0.697793,0.890246,0.729663,0.410292,0.0217327,0.590023,0.0190955,0.326333,0.748999,0.499308,0.775917,0.700248,0.211205,0.720536,0.134008,0.698071,0.865809,0.561535,0.61083,0.570253,0.583654,0.798543,0.392844,0.889858,0.0206442,0.836282,0.698911,0.119473,0.854273,0.199899,0.580696,0.295254,0.53046,0.63135,0.185505,0.466282,0.148844,0.35363,0.369384,0.0589988,0.408659,0.0217814,0.167368,0.377867,0.200783,0.466252,0.0292279,0.351009,0.222692,0.0671123,0.607875,0.99896,0.0154538,0.316073,0.961486,0.0418546,0.710145,0.0555128,0.790598,0.163115,0.692938,0.0571365,0.886883,0.142419,0.511499,0.469314,0.930673,0.701766,0.223611,0.70811,0.133616,0.14524,0.782231,0.946812,0.243716,0.898963,0.197818,0.312073,0.211258,0.798365,0.339135,0.291762,0.483305,0.107284,0.888653,0.163757,0.628472,0.955304,0.41132,0.323444,0.170914,0.943993,0.77941,0.708879,0.843482,0.228297,0.546902,0.983799,0.0689335,0.0581336,0.76129,0.00837946,0.79607,0.368927,0.666618,0.939278,0.547979,0.150958,0.202269,0.10548,0.956407,0.0140464,0.512824,0.22709,0.301891,0.926726,0.288774,0.722804,0.0868943,0.915079,0.88191,0.269138,0.696923,0.478503,0.503077,0.466067,0.807477,0.945494,0.688111,0.84047,0.907667,0.662671,0.165989,0.846443,0.73028,0.721802,0.465548,0.510679,0.680647,0.159091,0.0932787,0.36634,0.0787098,0.907085,0.266756,0.705711,0.0489699,0.642765,0.622043,0.339407,0.375015,0.316221,0.258576,0.27536,0.77728,0.843297,0.580512,0.67616,0.716302,0.917088,0.213021,0.527803,0.0203606,0.0329137,0.853604,0.573792,0.362885,0.275766,0.652504,0.294183,0.92103,0.645988,0.291261,0.599516,0.948569,0.626243,0.872691,0.248051,0.825933,0.696635,0.182461,0.480365,0.115554,0.997894,0.130362,0.513702,0.369079,0.390819,0.730366,0.353346,0.348785,0.77231,0.412524,0.349763,0.812458,0.373821,0.830249,0.656051,0.31178,0.150749,0.472888,0.965429,0.317134,0.831084,0.0566867,0.386029,0.524312,0.591264,0.440443,0.852848,0.631191,0.604423,0.909528,0.552317,0.209525,0.863197,0.107132,0.428277,0.952224,0.673472,0.195374,0.510422,0.478077,0.473763,0.323806,0.605336,0.161517,0.122098,0.602595,0.462337,0.603476,0.424871,0.838432,0.31276,0.518466,0.12077,0.107118,0.735133,0.744383,0.570624,0.130178,0.770438,0.878267,0.969611,0.177793,0.242696,0.502843,0.982076,0.179351,0.805829,0.523597,0.932911,0.943274,0.597059,0.551168,0.102407,0.592349,0.177191,0.625863,0.93806,0.622799,0.51959,0.464646,0.0275719,0.718273,0.113232,0.413596,0.109022,0.106267,|0.476149,0.149267,0.153219,0.230785,0.366535,0.443112,0.441708,0.540151,0.0896869,0.660931,0.146329,0.752808,0.861068,0.5753,0.597389,0.483864,0.220884,0.142941,0.131548,0.854694,0.64681,0.352873,0.449166,0.766856,0.854894,0.0274218,0.615704,0.86332,0.0878332,0.157744,0.117392,0.241732,0.411882,0.488201,0.686913,0.66612,0.158293,0.435116,0.938956,0.375255,0.623877,0.287696,0.297609,0.734719,0.197892,0.770555,0.446914,0.104609,0.308286,0.289265,0.352051,0.181831,0.702779,0.37963,0.893569,0.138736,0.630353,0.771443,0.806939,0.252785,0.725432,0.00445974,0.74738,0.679692,0.126263,0.226658,0.0589181,0.647471,0.343466,0.21926,0.215528,0.981041,0.135214,0.489843,0.69699,0.364326,0.609242,0.392713,0.997204,0.962904,0.580409,0.984822,0.790177,0.21917,0.506664,0.646105,0.861263,0.870159,0.330042,0.516508,0.221401,0.392126,0.362828,0.652745,0.961337,0.616902,0.447136,0.300341,0.232224,0.798609,0.169072,0.611047,0.346904,0.554368,0.246534,0.833043,0.395826,0.697492,0.481822,0.229564,0.890574,0.761589,0.0661011,0.20517,0.263987,0.736078,0.852747,0.367664,0.941527,0.647051,0.502777,0.364665,0.606016,0.277337,0.784144,0.659884,0.808162,0.418065,0.0585055,0.541058,0.881907,0.667931,0.0444756,0.924927,0.299166,0.0254036,0.66822,0.973077,0.445694,0.190056,0.795373,0.0781724,0.0340136,0.341741,0.510772,0.634335,0.790568,0.652427,0.237834,0.734144,0.620946,0.961746,0.973501,0.873528,0.203043,0.505591,0.709883,0.23753,0.587051,0.923467,0.753143,0.670738,0.208382,0.558059,0.263524,0.0589576,0.0413509,0.445266,0.99235,0.000547588,0.08811,0.258406,0.77873,0.436572,0.0922564,0.69246,0.4878,0.375882,0.451241,0.410008,0.729767,0.320396,0.758023,0.293113,0.479424,0.469516,0.391811,0.150577,0.152809,0.373989,0.338624,0.750638,0.802108,0.0329812,0.0622685,0.922382,0.705058,0.250065,0.0250561,0.13814,0.652723,0.774783,0.68553,0.444457,0.382981,0.083569,0.347507,0.0307517,0.227242,0.728286,0.275043,0.908768,0.290771,0.723784,0.802145,0.528109,0.40441,0.576047,0.712442,0.680746,0.226907,0.370436,0.984602,0.473269,0.204171,0.261713,0.628882,0.956732,0.267014,0.623694,0.955892,0.321155,0.872314,0.601218,0.251258,0.448242,0.316558,0.145509,0.309352,0.265647,0.246627,0.925706,0.00983322,0.778056,0.484272,0.98888,0.889112,0.276982,0.733726,0.466045,0.867359,0.874196,0.113223,0.0200127,0.283009,0.151367,0.458967,0.168888,0.202956,0.013439,0.264041,0.664995,0.222291,0.238032,0.619142,0.220473,0.542503,0.756855,0.0927745,0.899048,0.899468,0.65652,0.42361,0.916354,0.691957,0.68809,0.0391074,0.0420597,0.396804,0.906196,0.962156,0.0296063,0.546804,0.264378,0.702692,0.365596,0.387077,0.743066,0.418047,0.317863,0.782466,0.479697,0.645524,0.0683722,0.72854,0.512676,0.789221,0.923918,0.817587,0.468039,0.955825,0.836242,0.937106,0.663113,0.811677,0.90409,0.611959,0.784147,0.261844,0.718049,0.773809,0.804721,0.764743,0.339076,0.336134,0.965936,0.284675,0.49933,0.520991,0.543651,0.881547,0.130542,0.0819604,0.517075,0.976511,0.0540116,0.791592,0.382298,0.616249,0.356879,0.844225,0.462492,0.166194,0.992424,0.456318,0.875409,0.231218,0.66937,0.314088,0.501756,0.456709,0.338691,0.823825,0.288589,0.384284,0.858973,0.425918,0.929576,0.460347,0.32359,0.280474,0.0789735,0.595373,0.766057,0.97828,0.0152773,0.61432,0.979859,0.847385,0.100214,0.412428,0.938163,0.285209,0.185985,0.914271,0.894435,0.0230213,0.646904,0.317482,0.297653,0.00343406,0.83654,0.264464,0.176429,0.969334,0.441273,0.811869,0.907378,0.703456,0.228424,0.547865,0.889983,0.735258,0.390043,0.90479,0.312602,0.64058,0.877969,0.212814,0.975176,0.660631,0.0877381,0.707353,0.507625,0.569104,0.510295,0.719922,0.51432,0.748328,0.268022,0.552271,0.92167,0.30384,0.948589,0.443975,0.660686,0.603848,0.571599,0.341412,0.18162,0.997367,0.0554071,0.240266,0.572092,0.826286,0.454122,0.647892,0.231813,0.739774,0.97571,0.145838,0.97159,0.680252,0.466517,0.71055,0.0195709,0.107042,0.582972,0.411519,0.786135,0.738817,0.231289,0.19083,0.610519,0.602133,0.596398,0.0838178,0.415259,0.205183,0.857567,0.299051,0.634879,0.0284435,0.171113,0.0715725,0.353039,0.472179,0.241644,0.89775,0.125893,0.312582,0.770854,0.0342568,0.159605,0.346504,0.511814,0.822874,0.32599,0.21776,0.34411,0.0497661,0.722894,0.47246,0.00219929,0.775273,0.497124,0.624661,0.360705,0.249906,0.354252,0.0755872,0.315954,0.865495,0.522513,0.883663,0.10863,0.450286,0.192344,0.354463,0.57623,0.411284,0.120789,0.776396,0.633357,0.721772,0.208358,0.316333,0.0389169,0.196364,0.549993,0.643974,0.319418,0.138592,0.836571,0.284257,0.116028,0.822772,0.379369,0.285562,0.35738,0.827725,0.0794688,0.457643,0.221329,0.82284,0.090793,0.0903154,0.0877562,0.138921,0.283068,0.519902,0.424342,0.264135,0.864478,0.0143828,0.897118,0.0579066,0.0242801,0.661712,0.196425,0.715806,0.0799269,0.405948,0.31072,0.109518,0.413881,0.409214,0.278624,0.954184,0.533599,0.717203,0.480577,0.53622,0.641389,0.481163,0.995337,0.981544,0.173254,0.225153,0.419431,0.810442,0.265096,0.589406,0.369914,0.159598,0.404665,0.154529,0.0956911,0.196285,0.144645,0.151063,0.673564,0.932706,0.564028,0.540557,0.183179,0.266791,0.32759,0.718669,0.319728,0.81077,0.409649,0.748705,0.614172,0.0388007,0.447317,0.256078,0.844301,0.520317,0.953798,0.340658,0.0888221,0.575788,0.214131,0.000589371,0.436441,0.646905,0.494017,0.630436,0.881565,0.375025,0.952307,0.299936,0.0898913,0.633343,0.00837249,0.0175082,0.320896,0.923682,0.289532,0.109617,0.92912,0.358975,0.338314,0.144899,0.582861,0.197659,0.313868,0.685057,0.154383,0.617041,0.563512,0.780066,0.00280178,0.325401,0.354441,0.359969,0.57272,0.173362,0.607927,0.0780172,0.600884,0.483281,0.527391,0.591557,0.296282,0.112394,0.62742,0.159713,0.71065,0.79712,0.427984,0.667904,0.00618976,0.0329487,0.72719,0.864523,0.250484,0.394754,0.250219,0.916819,0.96015,0.865553,0.717034,0.162921,0.719978,0.163181,0.772707,0.239962,0.165159,0.875216,0.989571,0.829662,0.851725,0.820657,0.0842211,0.424852,0.400425,0.350249,0.864765,0.593096,0.541701,0.611549,0.662715,0.0288749,0.205526,0.417163,0.309847,0.0493389,0.763336,0.227761,0.787759,0.444241,0.20223,0.498827,0.431926,0.00906587,0.436672,0.991117,0.215802,0.634232,0.789345,0.00669044,0.576587,0.785729,0.856169,0.373877,0.702976,0.347031,0.879885,0.528746,0.840887,0.80089,0.0820607,0.0284052,0.508854,0.723134,0.485036,0.176468,0.339906,0.463578,0.78433,0.806308,0.0613348,0.892102,0.700098,0.943893,0.851533,0.351258,0.260008,0.0259133,0.531279,0.477548,0.603917,0.00478762,0.207361,0.811246,0.464484,0.734463,0.822553,0.321071,0.648194,0.922627,0.502803,0.572396,0.884401,0.775725,0.868971,0.478745,0.993668,0.752998,0.761606,0.415596,0.612179,0.460364,0.350084,0.995321,0.0971854,0.605032,0.0808509,0.425656,0.127462,0.300928,0.96656,0.661862,0.23034,0.781794,0.742517,0.650841,0.0114844,0.688076,0.178983,0.172445,0.362788,0.573062,0.498508,0.0401955,0.733417,0.688349,0.218882,0.498291,0.578146,0.313231,0.402405,0.123114,0.681177,0.00783002,0.0729015,0.108038,0.766995,0.822804,0.260543,0.96519,0.231063,0.219931,0.261204,0.614528,0.105682,0.850838,0.345228,0.160171,0.392056,0.759097,0.601229,0.831654,0.918439,0.594428,0.6385,0.815633,0.949049,0.742515,0.65838,0.60188,0.352359,0.0433031,0.324068,0.292633,0.759032,0.223291,0.349086,0.293799,0.722091,0.0738372,0.295376,0.0309844,0.571942,0.372322,0.29127,0.307196,0.660616,0.951713,0.845035,0.344976,0.277669,0.759389,0.152697,0.728761,0.281254,0.316526,0.43859,0.52707,0.115786,0.785618,0.54138,0.0283113,0.154862,0.130145,0.357195,0.193392,0.926516,0.112687,0.629883,0.975564,0.13908,0.987864,0.697486,0.73121,0.76473,0.569683,0.650449,0.64615,0.953962,0.181295,0.961072,0.180595,0.261691,0.740247,0.793168,0.932222,0.863989,0.702607,0.759402,0.579105,0.318013,0.552436,0.682469,0.957251,0.576278,0.399464,0.933006,0.41925,0.573535,0.136172,0.695231,0.137106,0.814608,0.796329,0.642001,0.52601,0.461863,0.392791,0.532952,0.620324,0.332025,0.398703,0.252052,0.481507,0.667789,0.963421,0.535716,0.51366,0.903561,0.787682,0.982654,0.145264,0.292404,0.169106,0.789867,0.413755,0.637645,0.870779,0.401532,0.727606,0.965082,0.85278,0.0952355,0.923239,0.0979485,0.800148,0.463889,0.420549,0.206902,0.978898,0.663795,0.9794,0.641688,0.97747,0.257463,0.16603,0.853656,0.990921,0.846965,0.257101,0.370933,0.540371,0.696935,0.75113,0.126067,0.623389,0.687519,0.429606,0.319651,0.645529,0.153264,0.92116,0.922221,0.60834,0.86307,0.155906,0.677187,0.00954652,0.263647,0.0625358,0.381205,0.766559,0.45399,0.114326,0.640739,0.119562,0.488811,0.505517,0.91762,0.953756,0.456414,0.538804,0.282136,0.776785,0.807226,0.59755,0.960138,0.836007,0.825833,0.266458,0.509189,0.664337,0.370013,0.551842,0.778456,0.566617,0.279434,9.04799e-05,0.437786,0.468378,0.111962,0.301256,0.732044,0.424919,0.316928,0.333383,0.0486044,0.202197,0.200047,0.785318,0.566287,0.971691,0.625346,0.883083,0.505727,0.492743,0.214974,0.207766,0.940597,0.999874,0.124881,0.585101,0.472405,0.544466,0.831319,0.947334,0.846523,0.295339,0.382396,0.81173,0.31138,0.733425,0.204805,0.553198,0.843214,0.246151,0.631382,0.912784,0.33448,0.128911,0.367472,0.0841855,0.846217,0.0508174,0.661198,0.669613,0.0893483,|0.640301,0.783564,0.400744,0.623979,0.516388,0.890924,0.699351,0.193855,0.776151,0.192902,0.663217,0.265835,0.701585,0.46886,0.376433,0.531606,0.038149,0.281963,0.0405579,0.292007,0.318121,0.944162,0.0727065,0.673474,0.692906,0.755454,0.304842,0.0559401,0.197751,0.255427,0.414353,0.969572,0.385254,0.774905,0.35477,0.539634,0.963674,0.103038,0.2643,0.984498,0.107199,0.482921,0.878957,0.185186,0.168707,0.474764,0.301311,0.133661,0.959149,0.0651901,0.537434,0.126444,0.791107,0.871073,0.254409,0.685545,0.66394,0.630839,0.653709,0.775823,0.898331,0.258137,0.527324,0.626699,0.516225,0.294162,0.920279,0.0917068,0.396147,0.738976,0.753758,0.946028,0.86821,0.0659255,0.710332,0.635787,0.668226,0.155182,0.401271,0.717712,0.750575,0.243533,0.0807698,0.340772,0.402783,0.497872,0.865628,0.738844,0.586604,0.572246,0.793952,0.643293,0.786062,0.840063,0.802049,0.146808,0.698918,0.696519,0.0451672,0.188726,0.999257,0.410461,0.425079,0.182772,0.398569,0.602318,0.575611,0.0889876,0.900506,0.44266,0.11262,0.0307441,0.185979,0.331631,0.097831,0.450469,0.0750805,0.925658,0.148726,0.940153,0.172117,0.906085,0.255673,0.224407,0.388758,0.282749,0.317924,0.800522,0.758789,0.618758,0.45728,0.303788,0.674874,0.443905,0.547036,0.104745,0.535832,0.87822,0.12201,0.678701,0.110342,0.0123823,0.125255,0.0828252,0.1045,0.769375,0.208051,0.679999,0.186977,0.524797,0.591566,0.115952,0.382835,0.0945526,0.330746,0.417302,0.270909,0.56726,0.613879,0.413689,0.0809656,0.66691,0.711726,0.563961,0.889877,0.0439285,0.457881,0.137745,0.0723287,0.561616,0.494567,0.444221,0.252449,0.924478,0.611889,0.89755,0.293547,0.311053,0.525696,0.835217,0.243397,0.537749,0.621567,0.38602,0.410014,0.948821,0.875733,0.228789,0.647663,0.929212,0.105422,0.0684599,0.469098,0.516091,0.282486,0.477021,0.834741,0.993372,0.560712,0.294576,0.21624,0.982306,0.787166,0.730906,0.0889061,0.164033,0.824107,0.765821,0.738602,0.127206,0.72107,0.0671962,0.290557,0.688645,0.537464,0.45387,0.301935,0.778394,0.089959,0.637602,0.0807637,0.157952,0.721471,0.211669,0.146124,0.836369,0.31433,0.485523,0.965139,0.398484,0.816983,0.0688516,0.625377,0.609937,0.947733,0.404257,0.3933,0.978166,0.593491,0.380608,0.303229,0.768368,0.428684,0.101102,0.992035,0.563739,0.472231,0.796537,0.493697,0.672558,0.316757,0.264384,0.367736,0.0520033,0.707087,0.641586,0.0128245,0.465204,0.0138362,0.603446,0.942978,0.976953,0.238371,0.287859,0.161368,0.67263,0.689226,0.910586,0.165954,0.506909,0.472655,0.200921,0.439784,0.182108,0.588852,0.77062,0.680772,0.42101,0.830356,0.306138,0.00990623,0.164021,0.667323,0.901428,0.992777,0.674165,0.260572,0.870389,0.0331817,0.596139,0.272927,0.320651,0.449918,0.646727,0.47876,0.450399,0.502532,0.805665,0.138895,0.852469,0.883088,0.461343,0.0330743,0.224852,0.807423,0.494539,0.0614551,0.545535,0.346931,0.216343,0.160546,0.959593,0.475016,0.498271,0.814455,0.520547,0.935572,0.158826,0.248179,0.596082,0.50174,0.978576,0.837763,0.180131,0.3978,0.347341,0.128846,0.666387,0.250344,0.140945,0.559083,0.540171,0.574757,0.217088,0.629079,0.719274,0.0426463,0.598782,0.925398,0.0107321,0.254052,0.828513,0.59966,0.83993,0.217086,0.321813,0.150738,0.976113,0.556582,0.25853,0.88552,0.483478,0.100814,0.16236,0.209426,0.710708,0.414363,0.673445,0.551721,0.6114,0.290683,0.737894,0.386808,0.776974,0.0678812,0.923826,0.910764,0.5826,0.764421,0.017075,0.363339,0.889464,0.752245,0.568125,0.80827,0.525842,0.0860292,0.605301,0.323074,0.401316,0.575189,0.677874,0.474048,0.871267,0.921938,0.522287,0.867455,0.242527,0.326519,0.525678,0.313353,0.570989,0.971122,0.615761,0.745475,0.929655,0.625043,0.219272,0.894919,0.66929,0.25918,0.207616,0.234638,0.623972,0.920966,0.126071,0.419388,0.258416,0.444951,0.317886,0.231426,0.0749928,0.311684,0.649748,0.442247,0.792466,0.523935,0.208392,0.511877,0.205358,0.717885,0.0358717,0.733458,0.921155,0.418617,0.454764,0.706178,0.0507527,0.294418,0.401974,0.325637,0.972571,0.175739,0.831293,0.225377,0.510185,0.211544,0.847585,0.623327,0.505418,0.358403,0.0105481,0.1686,0.497041,0.200444,0.858328,0.00828719,0.644441,0.346202,0.129178,0.45073,0.529079,0.592847,0.981279,0.160948,0.0619018,0.840427,0.873717,0.830914,0.595691,0.196766,0.257146,0.730317,0.89443,0.375496,0.29666,0.919996,0.163321,0.791621,0.386624,0.0923002,0.933238,0.459458,0.626095,0.156429,0.0384204,0.0441894,0.802717,0.805649,0.0301569,0.416224,0.977217,0.160326,0.890844,0.935258,0.0506235,0.220434,0.306072,0.719727,0.866649,0.426521,0.194063,0.452148,0.92446,0.303283,0.713369,0.688297,0.391029,0.188462,0.431541,0.812954,0.0437939,0.461306,0.430707,0.290757,0.316925,0.915964,0.501348,0.275137,0.819226,0.829468,0.427382,0.211531,0.141718,0.0884374,0.216502,0.950009,0.0582594,0.806143,0.85552,0.936501,0.370964,0.447012,0.000480413,0.349438,0.234965,0.79912,0.729441,0.629097,0.795305,0.113654,0.810992,0.710486,0.0944597,0.549419,0.384615,0.67928,0.542602,0.460351,0.191025,0.895208,0.398974,0.24614,0.242353,0.682747,0.892819,0.152253,0.543485,0.439679,0.487255,0.913136,0.179807,0.00302064,0.567692,0.65254,0.384629,0.0785921,0.836598,0.76593,0.338686,0.218312,0.621984,0.830125,0.516775,0.440063,0.888483,0.751433,0.319538,0.93263,0.788782,0.951463,0.0961611,0.827127,0.559419,0.60448,0.395368,0.170207,0.743363,0.644183,0.779607,0.815113,0.173774,0.497455,0.620843,0.785868,0.950104,0.844741,0.639364,0.245718,0.300632,0.359696,0.712139,0.264887,0.709759,0.796744,0.569696,0.0630755,0.704903,0.942045,0.129816,0.27915,0.529812,0.964659,0.484409,0.602783,0.186435,0.896561,0.335343,0.25253,0.652552,0.274981,0.147224,0.271695,0.982767,0.561235,0.407198,0.136677,0.819125,0.808036,0.965592,0.741242,0.0817014,0.507357,0.525291,0.181936,0.969857,0.381404,0.896045,0.193965,0.744234,0.469624,0.407064,0.702056,0.270679,0.0563613,0.426513,0.233594,0.989171,0.356072,0.755521,0.103465,0.139405,0.400392,0.407127,0.607199,0.187592,0.449016,0.292665,0.708071,0.893636,0.337614,0.83188,0.215463,0.45661,0.168647,0.540146,0.163894,0.4407,0.916845,0.673194,0.441562,0.923576,0.794164,0.440575,0.983212,0.846315,0.324276,0.691918,0.431494,0.238208,0.893342,0.991205,0.485857,0.561286,0.692187,0.402942,0.00676745,0.421062,0.397461,0.297737,0.252088,0.970963,0.50014,0.268362,0.727294,0.0356724,0.708851,0.538072,0.642477,0.73788,0.960538,0.793347,0.933857,0.459112,0.0881374,0.457687,0.566437,0.649696,0.385695,0.591645,0.979565,0.610482,0.247065,0.890564,0.183666,0.490573,0.197548,0.340376,0.610828,0.262552,0.809225,0.802471,0.603464,0.334057,0.258129,0.718934,0.693278,0.211503,0.234703,0.881806,0.113539,0.644848,0.150098,0.602151,0.738949,0.615153,0.00159258,0.350404,0.23989,0.916821,0.277783,0.98641,0.594042,0.131083,0.14705,0.157957,0.927794,0.312466,0.565008,0.753074,0.47134,0.799333,0.395334,0.412025,0.986308,0.166658,0.00245064,0.124295,0.805424,0.378713,0.402451,0.686137,0.469024,0.59312,0.262078,0.48592,0.0395369,0.487064,0.881486,0.419182,0.58597,0.509332,0.836262,0.97584,0.524035,0.323403,0.650698,0.0124534,0.28187,0.916301,0.856281,0.193738,0.07796,0.189092,0.883772,0.0116387,0.322255,0.0407078,0.173474,0.34565,0.462546,0.698599,0.845497,0.246147,0.752287,0.993753,0.0475168,0.427876,0.608117,0.140946,0.893979,0.24773,0.689927,0.213956,0.773986,0.328701,0.375276,0.422007,0.396893,0.567506,0.709022,0.0421448,0.0651424,0.0402463,0.0793623,0.175536,0.578736,0.74973,0.729464,0.362671,0.69939,0.868911,0.844434,0.367085,0.354258,0.984374,0.935988,0.233928,0.821648,0.594988,0.443503,0.732039,0.733917,0.39886,0.874742,0.384,0.331445,0.412394,0.0281249,0.954893,0.197949,0.522322,0.127357,0.318522,0.309592,0.499608,0.479355,0.227556,0.727421,0.309094,0.259132,0.868132,0.944113,0.410101,0.356202,0.914264,0.472278,0.190568,0.118569,0.829901,0.693198,0.2422,0.475168,0.0225633,0.549606,0.540779,0.129788,0.80921,0.59933,0.111352,0.0380741,0.107077,0.270864,0.611344,0.0192851,0.546027,0.276386,0.131949,0.469653,0.623545,0.419777,0.0858714,0.274409,0.0834188,0.837801,0.588994,0.814956,0.0433332,0.754573,0.566094,0.940271,0.0471658,0.115987,0.153772,0.696021,0.304179,0.37133,0.283194,0.511557,0.283766,0.177886,0.777851,0.501029,0.304906,0.497969,0.876986,0.195915,0.417444,0.121198,0.183318,0.565125,0.218502,0.472434,0.312947,0.774785,0.735018,0.916372,0.622406,0.422912,0.843939,0.215805,0.468442,0.510424,0.374578,0.622155,0.0797852,0.354911,0.0330164,0.0791234,0.934065,0.0725241,0.144072,0.316393,0.756455,0.850355,0.414113,0.0685882,0.52421,0.750522,0.493133,0.273612,0.718961,0.511471,0.934516,0.462725,0.560678,0.408297,0.9655,0.358469,0.384893,0.0127094,0.782454,0.35901,0.476629,0.0805464,0.532759,0.418478,0.820702,0.602011,0.507759,0.217254,0.0607961,0.915177,0.694869,0.794866,0.945465,0.784817,0.757564,0.272532,0.030331,0.908523,0.290135,0.296362,0.665672,0.211115,0.458199,0.46124,0.723838,0.0918884,0.975105,0.0867015,0.213951,0.937917,0.0506641,0.664497,0.942575,0.0588489,0.247605,0.806719,0.882734,0.324558,0.482454,0.923827,0.783266,0.522259,0.330554,0.0427197,0.32101,0.883586,0.701543,0.651995,0.592417,0.57914,0.855197,0.0608355,0.594095,0.755427,0.317213,0.146555,0.961956,|0.66653,0.399718,0.204143,0.558927,0.815459,0.819075,0.71888,0.553985,0.484425,0.284579,0.0355769,0.140043,0.494274,0.269121,0.884528,0.061312,0.195052,0.783364,0.281865,0.186196,0.362089,0.843046,0.905646,0.63699,0.748092,0.965737,0.796479,0.0647602,0.648019,0.94128,0.198306,0.832839,0.150458,0.0241352,0.563756,0.339994,0.272174,0.587369,0.133086,0.929275,0.312902,0.644713,0.301215,0.454292,0.896127,0.980933,0.00794202,0.58754,0.72983,0.208865,0.985851,0.725375,0.284828,0.860879,0.715491,0.319901,0.14106,0.360708,0.753739,0.98614,0.160737,0.0810723,0.527784,0.971808,0.754269,0.042703,0.532217,0.621596,0.495978,0.00845015,0.971523,0.549366,0.778168,0.323897,0.165412,0.588492,0.69071,0.215268,0.355555,0.669088,0.629599,0.859219,0.318368,0.0491543,0.0855804,0.102198,0.124158,0.508023,0.596699,0.784028,0.0335158,0.941863,0.987705,0.176954,0.441205,0.26696,0.617587,0.983198,0.830518,0.460448,0.439714,0.812723,0.865067,0.335072,0.553539,0.658096,0.25484,0.159303,0.400137,0.89739,0.968476,0.765082,0.968638,0.167399,0.853889,0.882571,0.0533311,0.0513999,0.584326,0.218809,0.102847,0.680024,0.946272,0.829716,0.138723,0.90175,0.690981,0.0979107,0.952441,0.548654,0.948334,0.0807132,0.721177,0.201826,0.673709,0.804739,0.480764,0.847719,0.224112,0.0338039,0.721492,0.944424,0.557215,0.897396,0.743496,0.149059,0.733818,0.517676,0.166619,0.705748,0.709211,0.669274,0.360326,0.395869,0.246003,0.843713,0.411988,0.357107,0.264731,0.372639,0.0185577,0.605892,0.929925,0.393268,0.715719,0.124919,0.77762,0.0948892,0.465312,0.0357404,0.581,0.504841,0.650631,0.555844,0.926936,0.572279,0.74136,0.890796,0.0415455,0.576185,0.876695,0.238798,0.87814,0.919161,0.881998,0.120362,0.286649,0.432828,0.958465,0.158572,0.19824,0.837812,0.968396,0.187956,0.1426,0.343062,0.23134,0.277162,0.895656,0.566215,0.727007,0.00618732,0.312384,0.390255,0.88435,0.469458,0.674688,0.108959,0.0321518,0.93466,0.15217,0.973233,0.219062,0.379298,0.857247,0.649282,0.129692,0.550569,0.573451,0.670368,0.238702,0.656428,0.502441,0.226374,0.839248,0.718183,0.948886,0.113684,0.839778,0.918969,0.530496,0.265115,0.813375,0.695931,0.543383,0.920457,0.0148054,0.343781,0.0252358,0.856436,0.383838,0.936319,0.14794,0.838489,0.0343749,0.602662,0.563961,0.733968,0.991803,0.943088,0.308569,0.116943,0.249689,0.379598,0.478338,0.743857,0.0881169,0.133153,0.372407,0.197573,0.312422,0.914617,0.737595,0.136135,0.256929,0.0980705,0.965138,0.987322,0.67889,0.93859,0.33067,0.693822,0.806862,0.572571,0.532554,0.161661,0.542335,0.257963,0.144047,0.563788,0.462314,0.794879,0.0710881,0.640696,0.804591,0.800368,0.571486,0.319708,0.473214,0.182632,0.321413,0.0421833,0.0330868,0.00696772,0.1862,0.115315,0.13453,0.702454,0.547687,0.298963,0.735031,0.121563,0.667981,0.217195,0.387679,0.130455,0.0250134,0.492077,0.368039,0.941495,0.592843,0.0205325,0.748749,0.295977,0.446788,0.248353,0.657963,0.495854,0.811535,0.149153,0.526707,0.190077,0.0703613,0.384209,0.596572,0.85218,0.0354902,0.254989,0.261274,0.142978,0.850062,0.780296,0.800117,0.390902,0.91066,0.48131,0.0274491,0.515638,0.669132,0.258782,0.0801355,0.237765,0.977537,0.819885,0.491833,0.387206,0.650153,0.218856,0.490074,0.730586,0.678579,0.137722,0.156864,0.304368,0.80318,0.213577,0.242052,0.345144,0.548765,0.188375,0.677251,0.187759,0.060041,0.84521,0.412809,0.0902331,0.0996702,0.81671,0.842041,0.302072,0.888936,0.293629,0.80329,0.369553,0.38002,0.59897,0.986495,0.483836,0.996203,0.493922,0.477863,0.686721,0.79662,0.360691,0.963241,0.682997,0.693037,0.160829,0.836457,0.633394,0.479567,0.580191,0.271353,0.719567,0.935923,0.973113,0.744664,0.961197,0.196553,0.484635,0.821649,0.829755,0.519354,0.248206,0.323212,0.488866,0.621645,0.981574,0.98855,0.144657,0.740147,0.639464,0.879884,0.473005,0.453987,0.402328,0.313184,0.364195,0.455059,0.23268,0.774038,0.932613,0.974358,0.105397,0.947048,0.904531,0.557537,0.221277,0.112598,0.707988,0.898983,0.913922,0.535527,0.494394,0.687466,0.861984,0.183739,0.431021,0.0890573,0.567321,0.37188,0.423241,0.224216,0.544497,0.909818,0.925871,0.298099,0.959379,0.598558,0.820686,0.695952,0.125482,0.416288,0.169571,0.398736,0.1735,0.225353,0.727256,0.265247,0.733106,0.79071,0.155312,0.158404,0.469994,0.527436,0.501067,0.447548,0.149009,0.804842,0.871712,0.597306,0.0635592,0.260052,0.967664,0.10447,0.563688,0.393726,0.880042,0.27896,0.10103,0.848203,0.606308,0.476401,0.227526,0.189924,0.843363,0.71975,0.561864,0.453247,0.342784,0.682986,0.16906,0.390657,0.00468206,0.180065,0.487677,0.871754,0.0933309,0.058163,0.168104,0.763396,0.28913,0.799088,0.202926,0.191444,0.183337,0.87394,0.827414,0.166078,0.805934,0.986275,0.183883,0.423086,0.335017,0.012174,0.234708,0.333804,0.133211,0.37669,0.918762,0.253589,0.465594,0.624,0.0900288,0.682925,0.86399,0.08464,0.510985,0.754671,0.384798,0.386698,0.812794,0.593715,0.686876,0.00852287,0.881174,0.232796,0.977279,0.113728,0.0375838,0.300596,0.133005,0.543647,0.558133,0.953981,0.79831,0.160199,0.574282,0.0433732,0.97727,0.574329,0.0403044,0.864285,0.939985,0.0268211,0.956842,0.067003,0.141223,0.539118,0.275387,0.360435,0.2897,0.677361,0.451451,0.709295,0.384879,0.238194,0.998968,0.282302,0.347649,0.578265,0.748447,0.0709684,0.181827,0.449997,0.419572,0.0497872,0.516315,0.866367,0.0861876,0.458795,0.742758,0.0081324,0.306978,0.0114402,0.538831,0.00140071,0.308796,0.456914,0.0215916,0.392887,0.310869,0.207703,0.801508,0.674197,0.0123914,0.760617,0.912676,0.248795,0.842752,0.440227,0.946889,0.628982,0.0608357,0.876312,0.0931063,0.921509,0.806456,0.265326,0.462829,0.616975,0.804677,0.345147,0.401748,0.0128096,0.700148,0.926239,0.282216,0.20691,0.846183,0.122727,0.33089,0.901888,0.880132,0.706666,0.951678,0.916011,0.514164,0.684873,0.738056,0.600226,0.433015,0.582681,0.508297,0.103889,0.226397,0.555244,0.401062,0.940794,0.201896,0.56631,0.199703,0.554446,0.63835,0.00691587,0.642083,0.679136,0.362401,0.112815,0.48055,0.14884,0.0454071,0.393652,0.189633,0.512372,0.977438,0.686125,0.10346,0.470802,0.576805,0.63096,0.290941,0.17417,0.666843,0.606781,0.0203752,0.120493,0.0735781,0.134078,0.582064,0.608662,0.413424,0.136121,0.404477,0.727021,0.329421,0.0276798,0.533362,0.303536,0.335393,0.950369,0.9427,0.336618,0.541094,0.282726,0.116821,0.552385,0.858428,0.509472,0.952702,0.628031,0.533907,0.862317,0.847944,0.878919,0.243173,0.334144,0.0582354,0.650723,0.532539,0.0975674,0.33867,0.922948,0.614407,0.572642,0.272536,0.469839,0.861707,0.300954,0.326759,0.571147,0.723575,0.385971,0.714525,0.496006,0.91566,0.528412,0.983872,0.694788,0.897447,0.505884,0.0226198,0.818227,0.743944,0.150716,0.350008,0.788176,0.508227,0.14807,0.192566,0.354094,0.809856,0.520761,0.195544,0.423457,0.984976,0.197627,0.157943,0.447837,0.855634,0.379938,0.0336146,0.923724,0.895391,0.40923,0.324308,0.141721,0.256276,0.461991,0.305314,0.788691,0.0760269,0.577123,0.48928,0.793393,0.26281,0.0624959,0.969794,0.589086,0.960717,0.355718,0.557323,0.664084,0.241814,0.834203,0.585845,0.624595,0.422277,0.21392,0.295404,0.34382,0.991059,0.791486,0.290207,0.55301,0.224081,0.073363,0.913812,0.332377,0.685493,0.784054,0.317535,0.880556,0.457624,0.383269,0.102228,0.600169,0.60735,0.978403,0.154179,0.630423,0.808015,0.556066,0.643691,0.890182,0.862912,0.726717,0.0576819,0.855312,0.691139,0.342734,0.78071,0.562478,0.449497,0.99899,0.310191,0.000333846,0.898697,0.380594,0.490312,0.548357,0.213531,0.199579,0.735772,0.267411,0.704533,0.835833,0.00899434,0.182599,0.213248,0.528681,0.368125,0.517368,0.149812,0.54813,0.239518,0.489996,0.438385,0.115742,0.320551,0.783012,3.95179e-05,0.465725,0.178399,0.459272,0.207625,0.310299,0.43492,0.357686,0.310328,0.536428,0.155975,0.71522,0.768711,0.00319564,0.923094,0.534001,0.899201,0.740617,0.768096,0.265125,0.758561,0.0933324,0.835587,0.958686,0.171224,0.777709,0.76236,0.43867,0.943045,0.710566,0.804369,0.000273526,0.19052,0.460203,0.681643,0.70281,0.0492757,0.814397,0.922392,0.225791,0.032162,0.932859,0.677242,0.35956,0.959163,0.408698,0.492846,0.136874,0.867797,0.298841,0.593455,0.849028,0.763806,0.270834,0.76323,0.049114,0.480919,0.808343,0.915705,0.118762,0.510322,0.27268,0.577165,0.123617,0.0563732,0.883632,0.480504,0.644572,0.00634891,0.498235,0.915478,0.346214,0.582622,0.766378,0.909997,0.476619,0.901812,0.621863,0.153859,0.0275514,0.0733398,0.0396188,0.39205,0.446948,0.444725,0.637371,0.0996358,0.979705,0.700848,0.591119,0.567895,0.86644,0.699656,0.216251,0.441199,0.0919544,0.648517,0.672384,0.569069,0.510476,0.220677,0.450383,0.640213,0.713942,0.909777,0.25576,0.957208,0.390488,0.282457,0.0124736,0.785068,0.802907,0.942119,0.646199,0.946543,0.265381,0.669412,0.676938,0.459121,0.594882,0.80729,0.231858,0.131761,0.648995,0.496284,0.13665,0.536188,0.959405,0.321918,0.323092,0.316649,0.0757042,0.79706,0.0596381,0.761814,0.702605,0.490172,0.307371,0.549772,0.0730528,0.569341,0.977308,0.511758,0.54152,0.968534,0.293464,0.686586,0.62174,0.832864,0.430661,0.594845,0.475388,0.686633,0.519754,0.841592,0.760941,0.0542514,0.677732,0.464861,0.501173,0.119222,0.781969,0.255573,0.459124,0.291812,0.367323,0.0553871,0.298504,0.680012,|0.453112,0.277144,0.873117,0.901102,0.426809,0.0464213,0.340436,0.985218,0.432863,0.81898,0.0542049,0.23341,0.634377,0.439273,0.982933,0.492545,0.631325,0.382984,0.380373,0.662252,0.836352,0.192205,0.0116911,0.970084,0.321771,0.654165,0.861941,0.0193943,0.398308,0.341803,0.526603,0.476595,0.00460815,0.418801,0.277656,0.909136,0.603132,0.683828,0.0225502,0.427001,0.235983,0.466683,0.638355,0.728615,0.823597,0.590029,0.776689,0.142035,0.587974,0.108439,0.158665,0.0501683,0.108445,0.682089,0.786245,0.14085,0.127849,0.233126,0.00638264,0.583008,0.931236,0.483032,0.910218,0.548629,0.273479,0.889162,0.194372,0.715667,0.0374218,0.991059,0.113627,0.386563,0.250339,0.76962,0.320356,0.480397,0.142058,0.439672,0.624425,0.363668,0.181809,0.57873,0.918898,0.274632,0.972386,0.49249,0.642205,0.430119,0.420368,0.477798,0.974896,0.261971,0.811384,0.135669,0.218624,0.892259,0.16172,0.0243378,0.167232,0.201895,0.00481272,0.77689,0.762311,0.786313,0.592201,0.143854,0.756305,0.843893,0.837131,0.154824,0.837156,0.761288,0.0647193,0.69244,0.409841,0.2893,0.790256,0.751658,0.861257,0.0450786,0.414051,0.827882,0.610947,0.453703,0.859927,0.255561,0.372544,0.691564,0.913924,0.289111,0.709135,0.562084,0.39978,0.0439688,0.850815,0.634086,0.973186,0.555117,0.435155,0.10853,0.996664,0.280046,0.61066,0.594013,0.774749,0.868915,0.711438,0.825844,0.215736,0.605175,0.144957,0.38873,0.245822,0.300487,0.592528,0.801788,0.769619,0.2341,0.802212,0.74608,0.522928,0.981839,0.261037,0.65161,0.277654,0.262677,0.87127,0.384378,0.466017,0.49709,0.0490707,0.7534,0.600675,0.763229,0.75682,0.986902,0.725193,0.544212,0.690769,0.133127,0.637244,0.472427,0.0996103,0.173957,0.00338072,0.316713,0.745405,0.901245,0.438608,0.581999,0.954486,0.444011,0.307834,0.762298,0.99017,0.445381,0.322165,0.761646,0.819245,0.443494,0.0560778,0.636054,0.913164,0.628974,0.0304059,0.275865,0.216875,0.159253,0.23938,0.527946,0.89568,0.605677,0.0655615,0.763734,0.107357,0.993256,0.665573,0.938632,0.962323,0.845103,0.771813,0.0315838,0.637192,0.00993639,0.101512,0.59863,0.984965,0.938041,0.401479,0.682347,0.354507,0.984991,0.280609,0.808206,0.0688126,0.320581,0.324996,0.833246,0.767727,0.333324,0.407923,0.900798,0.0329007,0.785318,0.538842,0.849461,0.538924,0.812671,0.0328525,0.941225,0.730257,0.908564,0.459701,0.502782,0.72634,0.571886,0.727617,0.3548,0.069619,0.118929,0.755983,0.810183,0.374539,0.31275,0.732012,0.107866,0.206505,0.771807,0.182365,0.670307,0.78227,0.569897,0.6206,0.734288,0.525269,0.0620827,0.576116,0.504208,0.778187,0.1438,0.248265,0.452145,0.855431,0.669494,0.895061,0.794501,0.884382,0.603558,0.176425,0.777007,0.169312,0.623902,0.452971,0.2844,0.710845,0.909906,0.509857,0.723105,0.382705,0.15591,0.322456,0.547035,0.0222887,0.578152,0.0970823,0.762202,0.197351,0.43674,0.616387,0.97796,0.844788,0.336618,0.0518488,0.350667,0.866482,0.64289,0.82801,0.878041,0.863204,0.160359,0.143176,0.0331389,0.118602,0.310383,0.905958,0.142543,0.116263,0.93528,0.058892,0.495483,0.835103,0.664816,0.729149,0.515625,0.310868,0.826433,0.706739,0.880146,0.565002,0.759648,0.19568,0.561473,0.720947,0.225691,0.153035,0.684633,0.752276,0.244935,0.960802,0.685765,0.325758,0.152807,0.0812005,0.530362,0.00340247,0.84865,0.222167,0.0237955,0.987608,0.986724,0.129074,0.455309,0.294862,0.662872,0.855102,0.137479,0.149448,0.114861,0.809853,0.776279,0.703962,0.988484,0.439379,0.479344,0.168694,0.338633,0.624766,0.269533,0.197287,0.473168,0.731699,0.499704,0.27676,0.515401,0.904415,0.192338,0.935631,0.526332,0.911434,0.662858,0.381449,0.412589,0.763137,0.226989,0.262962,0.928029,0.355042,0.278122,0.205913,0.54009,0.937962,0.182802,0.181065,0.132207,0.178508,0.302441,0.238445,0.550739,0.347587,0.909777,0.628688,0.225208,0.747999,0.71139,0.774682,0.488728,0.952221,0.0393227,0.825579,0.590389,0.977615,0.193543,0.966438,0.969335,0.555635,0.704518,0.620467,0.633942,0.809071,0.153702,0.214305,0.630891,0.791571,0.950052,0.829445,0.479516,0.979784,0.448027,0.833635,0.905008,0.735444,0.108474,0.0383685,0.628483,0.977119,0.718084,0.0670178,0.850584,0.540329,0.567415,0.252047,0.196529,0.219649,0.913721,0.156968,0.71326,0.730534,0.279277,0.519454,0.715727,0.386503,0.74797,0.159212,0.407552,0.325536,0.931438,0.725197,0.433422,0.103799,0.610035,0.58108,0.138314,0.494822,0.424647,0.905275,0.0630926,0.241811,0.222081,0.0900986,0.243635,0.458613,0.690035,0.864643,0.707171,0.101398,0.924111,0.0950915,0.240794,0.813224,0.431489,0.159433,0.282428,0.642756,0.241073,0.183792,0.523117,0.89901,0.770298,0.398314,0.731018,0.571344,0.766053,0.345614,0.916081,0.100631,0.697041,0.790904,0.561861,0.121429,0.780004,0.6684,0.940809,0.600367,0.174476,0.433855,0.642553,0.870188,0.628643,0.801207,0.81254,0.370317,0.822839,0.60631,0.813597,0.636306,0.312605,0.698932,0.914386,0.57794,0.478576,0.816996,0.611502,0.330001,0.778935,0.88884,0.0340321,0.815113,0.620373,0.895746,0.896309,0.565319,0.19179,0.266236,0.63414,0.675757,0.085201,0.238011,0.588744,0.309477,0.704715,0.857188,0.35553,0.0543275,0.186836,0.0108852,0.851285,0.605027,0.509192,0.0128756,0.442326,0.0260351,0.931363,0.75406,0.32648,0.411057,0.0203076,0.589867,0.429201,0.880241,0.794813,0.262634,0.233287,0.641531,0.16483,0.561656,0.959695,0.454059,0.373118,0.0381547,0.212015,0.713197,0.274509,0.368068,0.122515,0.485311,0.443384,0.242278,0.390821,0.670069,0.244971,0.479013,0.747814,0.36943,0.108881,0.066901,0.562234,0.770291,0.904933,0.80125,0.923948,0.566801,0.164302,0.829503,0.676108,0.830245,0.0218729,0.36654,0.836473,0.512328,0.916854,0.691102,0.932217,0.578319,0.564321,0.963255,0.180915,0.122581,0.932211,0.596362,0.659336,0.197518,0.292543,0.11412,0.513198,0.630638,0.466801,0.176517,0.754986,0.811808,0.0058049,0.340577,0.0780725,0.016895,0.526755,0.142306,0.93961,0.0322614,0.276088,0.738326,0.0965343,0.225368,0.93817,0.522791,0.463243,0.888479,0.860364,0.153646,0.433574,0.666503,0.743258,0.567171,0.216644,0.297228,0.0765172,0.928193,0.907779,0.279926,0.514822,0.994282,0.869143,0.387218,0.385611,0.0710589,0.322011,0.346076,0.440849,0.00690383,0.059256,0.644401,0.791296,0.971426,0.378774,0.665854,0.93964,0.635825,0.374938,0.534728,0.0162703,0.432784,0.617935,0.832343,0.958428,0.715419,0.496381,0.390334,0.581056,0.0689489,0.0416112,0.387912,0.741265,0.387477,0.234415,0.964045,0.47518,0.178427,0.920473,0.440584,0.968608,0.446713,0.731516,0.384364,0.469329,0.0271408,0.517239,0.00253481,0.0919261,0.244422,0.795826,0.39351,0.122402,0.169972,0.127013,0.889474,0.58712,0.379057,0.910256,0.600716,0.783987,0.254984,0.142228,0.619863,0.66342,0.15267,0.830189,0.793806,0.220396,0.688795,0.945738,0.36409,0.653562,0.245661,0.434908,0.484697,0.750862,0.997651,0.157498,0.488627,0.212568,0.679936,0.0295683,0.0285965,0.626399,0.854748,0.00373149,0.696858,0.710621,0.464994,0.33284,0.0902629,0.7429,0.813076,0.622846,0.596678,0.746098,0.636274,0.163345,0.284824,0.941047,0.0875441,0.715157,0.116567,0.533378,0.929463,0.175869,0.5467,0.820106,0.814787,0.0124683,0.36608,0.0200199,0.449272,0.171397,0.628127,0.205002,0.766849,0.880632,0.361841,0.416082,0.993449,0.171628,0.787725,0.478188,0.628444,0.922704,0.453907,0.78829,0.0569945,0.708236,0.973681,0.719022,0.596471,0.2141,0.0925474,0.665744,0.689157,0.476364,0.941096,0.0119116,0.603277,0.672081,0.903335,0.69414,0.403135,0.256831,0.712428,0.352728,0.94512,0.251917,0.0556656,0.159302,0.150142,0.319354,0.565191,0.962768,0.553758,0.643666,0.787644,0.156562,0.570065,0.028764,0.900104,0.418358,0.485881,0.301025,0.754945,0.63007,0.805232,0.891848,0.847829,0.886088,0.0916414,0.150587,0.392991,0.216909,0.185235,0.875324,0.962102,0.493497,0.486515,0.707912,0.83417,0.539563,0.674599,0.783736,0.175867,0.750683,0.720656,0.817097,0.553655,0.765054,0.363751,0.710588,0.826498,0.302506,0.0948402,0.997268,0.00204778,0.899307,0.600066,0.135802,0.318532,0.260144,0.686614,0.717552,0.219985,0.209847,0.542507,0.584637,0.547808,0.132993,0.885115,0.493184,0.296887,0.04896,0.60183,0.831817,0.935892,0.292476,0.120535,0.511095,0.114505,0.323748,0.160508,0.694894,0.276215,0.934155,0.626292,0.681736,0.383065,0.274472,0.870812,0.686151,0.585844,0.337895,0.512592,0.758953,0.478917,0.922069,0.944924,0.0948271,0.648041,0.198751,0.742962,0.690011,0.844242,0.955491,0.166006,0.52182,0.529611,0.128667,0.227971,0.692961,0.64335,0.951312,0.591389,0.974168,0.852605,0.0129343,0.737791,0.980253,0.350054,0.304575,0.173556,0.317304,0.696879,0.601775,0.707701,0.496862,0.647534,0.027633,0.150038,0.34576,0.716643,0.874382,0.0152518,0.427722,0.692603,0.385261,0.733601,0.217295,0.0390225,0.623741,0.226264,0.160976,0.286153,0.43647,0.205244,0.600851,0.676457,0.982115,0.697986,0.995628,0.0735793,0.897456,0.00751245,0.25426,0.171008,0.368242,0.793315,0.209832,0.956906,0.281787,0.319228,0.111988,0.994057,0.291391,0.854833,0.117056,0.676173,0.876792,0.702449,0.556072,0.419071,0.844363,0.558029,0.801367,0.701346,0.79283,0.300053,0.542687,0.370505,0.654597,0.31593,0.778836,0.0404408,0.0436637,0.907945,0.923506,0.859105,0.142491,0.0235316,0.906007,0.795068,0.375069,0.403918,0.562977,0.141816,0.529579,0.306718,0.417961,|0.647824,0.952106,0.332479,0.0482529,0.995019,0.777483,0.991141,0.539755,0.496493,0.612167,0.999936,0.954144,0.468298,0.299805,0.431967,0.119411,0.521069,0.459817,0.963842,0.64264,0.431068,0.116647,0.499024,0.0416378,0.871942,0.866056,0.269171,0.0474707,0.295211,0.823439,0.104519,0.808569,0.251764,0.827505,0.0167773,0.926677,0.214544,0.830262,0.693444,0.476145,0.458781,0.831895,0.456243,0.513472,0.0622189,0.745864,0.500751,0.907836,0.98383,0.475526,0.819888,0.885116,0.324665,0.860749,0.696326,0.957556,0.0632045,0.0467355,0.804769,0.118026,0.374662,0.311279,0.247605,0.336695,0.432976,0.300032,0.573783,0.851502,0.479984,0.881277,0.774042,0.534084,0.606798,0.237023,0.0648143,0.895828,0.388571,0.110344,0.0497479,0.0100996,0.471486,0.83191,0.446649,0.445079,0.323775,0.0946611,0.874984,0.115749,0.282604,0.177216,0.270098,0.905633,0.575929,0.548382,0.314074,0.345848,0.726701,0.541234,0.766012,0.273272,0.426909,0.492815,0.0295724,0.771589,0.114468,0.382233,0.661073,0.708818,0.723236,0.127616,0.390139,0.548936,0.00722063,0.780972,0.421357,0.323361,0.246784,0.615721,0.256563,0.781503,0.269948,0.324565,0.526952,0.29551,0.671414,0.753641,0.233236,0.162632,0.862911,0.119554,0.619769,0.342309,0.256992,0.825269,0.682044,0.640983,0.244727,0.160978,0.27291,0.41792,0.303332,0.371566,0.122923,0.280754,0.10214,0.792059,0.645292,0.487075,0.998618,0.229453,0.212889,0.303553,0.8094,0.80632,0.360046,0.516423,0.0650835,0.142895,0.999513,0.438427,0.578268,0.771362,0.580566,0.11929,0.540637,0.293916,0.661991,0.0113766,0.024317,0.844721,0.112088,0.0887241,0.119302,0.197397,0.819765,0.17656,0.889495,0.00823557,0.695131,0.203873,0.217319,0.620434,0.777811,0.911321,0.410039,0.95431,0.749789,0.265065,0.985867,0.712814,0.798794,0.240857,0.907873,0.683079,0.192734,0.133136,0.290311,0.462285,0.107761,0.362636,0.788302,0.72378,0.659923,0.136976,0.925723,0.390369,0.745911,0.0803308,0.890592,0.265276,0.518018,0.554328,0.782313,0.453497,0.775917,0.0742974,0.932428,0.0292395,0.186289,0.976056,0.49726,0.302469,0.628507,0.866437,0.965048,0.358285,0.0902895,0.168966,0.27225,0.459153,0.886894,0.125379,0.442275,0.747661,0.980388,0.537787,0.995634,0.260696,0.632137,0.442125,0.896489,0.456208,0.510648,0.680561,0.6918,0.446239,0.0801197,0.0709727,0.120749,0.312516,0.18072,0.453454,0.812362,0.666744,0.665339,0.286357,0.405325,0.347899,0.00253689,0.196437,0.0350273,0.341631,0.500767,0.534433,0.337935,0.727473,0.762287,0.788369,0.602202,0.841276,0.121256,0.087839,0.563437,0.51487,0.433715,0.378374,0.545768,0.085512,0.310611,0.110198,0.518189,0.716595,0.977559,0.523765,0.0321159,0.105439,0.85993,0.713856,0.868789,0.502409,0.675428,0.179479,0.595643,0.660295,0.373814,0.804313,0.0876306,0.277572,0.25229,0.302907,0.581884,0.477455,0.913756,0.302303,0.819484,0.724077,0.798389,0.516235,0.446399,0.68447,0.927061,0.186371,0.761391,0.471012,0.767308,0.421442,0.13471,0.111071,0.785792,0.971017,0.554232,0.374941,0.412199,0.253362,0.979395,0.321721,0.706915,0.432167,0.119249,0.473473,0.00931859,0.963543,0.728747,0.300061,0.0459585,0.193896,0.498694,0.231974,0.18273,0.471124,0.923707,0.536781,0.564074,0.699851,0.175021,0.652586,0.232408,0.764394,0.033955,0.268817,0.458121,0.775059,0.912141,0.0219914,0.69709,0.99475,0.447033,0.288927,0.883433,0.0760314,0.622532,0.704061,0.902858,0.401325,0.69073,0.212053,0.220363,0.406868,0.504386,0.970451,0.813662,0.156801,0.243259,0.950253,0.696617,0.92375,0.486725,0.845131,0.361462,0.579711,0.0091967,0.943745,0.928215,0.540073,0.266289,0.224477,0.316714,0.697981,0.756569,0.561372,0.531545,0.942775,0.759989,0.416793,0.00603372,0.331822,0.891517,0.89684,0.413933,0.929624,0.916207,0.742045,0.596553,0.152269,0.107065,0.967555,0.239267,0.47736,0.654722,0.678967,0.855804,0.75475,0.66298,0.761138,0.879332,0.559382,0.455887,0.512832,0.984393,0.65346,0.475003,0.926889,0.931156,0.368478,0.0993585,0.959899,0.387993,0.195065,0.026239,0.39017,0.349329,0.208597,0.685972,0.247283,0.65925,0.651277,0.749209,0.213771,0.385786,0.501218,0.59238,0.40999,0.183975,0.607144,0.124895,0.0779273,0.194125,0.445246,0.494943,0.0134044,0.701144,0.198686,0.582972,0.188237,0.742779,0.403102,0.4156,0.586797,0.833883,0.746814,0.392998,0.0405148,0.958914,0.40524,0.649206,0.36136,0.720484,0.402936,0.291825,0.104888,0.25154,0.855139,0.983396,0.949667,0.736686,0.00980985,0.768465,0.295655,0.31399,0.24309,0.409387,0.672833,0.767668,0.232935,0.165415,0.271377,0.14884,0.780773,0.267471,0.780699,0.764142,0.255556,0.445531,0.705866,0.100479,0.0857736,0.262877,0.800227,0.764392,0.771618,0.0298163,0.512341,0.512835,0.326281,0.62576,0.397304,0.269741,0.773715,0.358811,0.395887,0.0246513,0.446852,0.112838,0.356055,0.914402,0.423035,0.705614,0.0582549,0.332911,0.657891,0.792189,0.366597,0.615078,0.0940457,0.523432,0.303859,0.588991,0.269497,0.303915,0.822235,0.925445,0.982888,0.613355,0.16187,0.380089,0.37006,0.332485,0.974601,0.926714,0.845793,0.768389,0.161733,0.544168,0.84681,0.882512,0.325265,0.628145,0.276767,0.89706,0.592822,0.643012,0.148593,0.985053,0.407858,0.431992,0.485229,0.20764,0.696025,0.759902,0.645338,0.702595,0.543498,0.0782073,0.303283,0.215917,0.000835955,0.973172,0.631381,0.32913,0.822064,0.0383719,0.336874,0.54982,0.585153,0.363046,0.242452,0.726372,0.0895543,0.501573,0.931333,0.384543,0.355326,0.840608,0.607582,0.439609,0.1893,0.672983,0.213153,0.472866,0.433356,0.667194,0.37129,0.925775,0.106644,0.575568,0.740541,0.444795,0.747969,0.892187,0.551352,0.527895,0.478053,0.159486,0.925048,0.110265,0.0123186,0.853764,0.950561,0.420654,0.458113,0.0144566,0.353036,0.464603,0.105628,0.833171,0.204534,0.384441,0.569108,0.325476,0.156371,0.132565,0.592039,0.723866,0.310899,0.666608,0.151549,0.457418,0.263069,0.131374,0.571465,0.51746,0.16662,0.959252,0.400931,0.389979,0.174021,0.751869,0.105359,0.317099,0.306664,0.651528,0.198816,0.579536,0.641425,0.158082,0.279679,0.675072,0.16297,0.60975,0.501081,0.272417,0.973113,0.841303,0.187322,0.0889565,0.40583,0.309497,0.967071,0.132738,0.861048,0.266733,0.74869,0.426721,0.432492,0.722617,0.271417,0.264948,0.847014,0.00493729,0.9387,0.869737,0.199091,0.471161,0.631562,0.31605,0.289959,0.154381,0.826164,0.970542,0.185512,0.607724,0.308409,0.0508261,0.494926,0.704062,0.748888,0.585036,0.0216513,0.321133,0.856093,0.909004,0.807214,0.73508,0.963194,0.503169,0.488206,0.382121,0.151227,0.676333,0.952887,0.430449,0.108818,0.764349,0.229185,0.202435,0.433242,0.472604,0.183697,0.961137,0.994489,0.509758,0.0216548,0.970924,0.510063,0.507019,0.765639,0.837497,0.0270615,0.0439946,0.957794,0.861856,0.964992,0.0582762,0.170556,0.379104,0.0353065,0.911325,0.119663,0.522743,0.232989,0.329578,0.0916941,0.113206,0.792752,0.971501,0.00685757,0.266809,0.099572,0.425784,0.533499,0.862755,0.338499,0.179419,0.66919,0.0482517,0.0668668,0.834647,0.208636,0.933472,0.0216705,0.0189019,0.961104,0.950003,0.421251,0.652154,0.445272,0.664469,0.555483,0.415188,0.0730994,0.17267,0.282731,0.891703,0.81127,0.556704,0.607611,0.700163,0.349247,0.686653,0.210921,0.928402,0.688462,0.37051,0.959107,0.609771,0.655969,0.227351,0.607491,0.747575,0.317609,0.606828,0.42574,0.72854,0.336035,0.920469,0.89797,0.143638,0.765898,0.637714,0.286435,0.597218,0.729429,0.762399,0.471253,0.547046,0.514268,0.197313,0.661787,0.382733,0.491577,0.966467,0.179347,0.391644,0.0735759,0.0920509,0.290978,0.19828,0.33029,0.370394,0.79681,0.586936,0.941304,0.815007,0.702019,0.795798,0.750479,0.223884,0.893437,0.915025,0.442722,0.140223,0.153439,0.582686,0.928828,0.0602947,0.260845,0.117333,0.299101,0.440767,0.410253,0.0580468,0.897851,0.629182,0.574402,0.614893,0.0960132,0.949666,0.962667,0.202362,0.0526462,0.842755,0.416661,0.259577,0.172831,0.260306,0.466077,0.492301,0.88453,0.202109,0.849545,0.0070591,0.968512,0.666398,0.635536,0.389397,0.621453,0.497278,0.582551,0.595063,0.47703,0.0224556,0.329203,0.868152,0.0865051,0.787302,0.204337,0.231771,0.0754309,0.648857,0.613019,0.0198621,0.725169,0.0564917,0.971533,0.622264,0.881795,0.967385,0.707393,0.862098,0.518891,0.445046,0.348427,0.319209,0.500891,0.719484,0.778162,0.936665,0.955144,0.690899,0.811199,0.208744,0.116434,0.572181,0.746845,0.687444,0.780495,0.832595,0.0490637,0.76996,0.970317,0.0910117,0.364694,0.935967,0.267865,0.765555,0.371902,0.356532,0.652919,0.316576,0.677632,0.262757,0.851738,0.437813,0.470263,0.431179,0.204472,0.965429,0.185902,0.331647,0.244141,0.600869,0.340962,0.999536,0.152522,0.901069,0.819658,0.588321,0.956175,0.363261,0.414261,0.0521535,0.0148077,0.954123,0.430208,0.472588,0.505141,0.794854,0.215028,0.930566,0.628911,0.689723,0.553026,0.526357,0.75365,0.847512,0.319264,0.220631,0.836586,0.776979,0.488495,0.632204,0.591815,0.159594,0.458128,0.727871,0.566328,0.515747,0.718816,0.157371,0.795253,0.735968,0.142937,0.393546,0.182179,0.146905,0.434187,0.165934,0.506108,0.8347,0.515238,0.383288,0.0756814,0.491391,0.512845,0.991559,0.708141,0.816894,0.759335,0.942206,0.533655,0.359763,0.89188,0.0818807,0.226698,0.0092299,0.855413,0.84726,0.965431,0.604233,0.795286,0.102262,0.664959,0.0655743,0.259954,0.657,0.418106,0.99091,0.789047,0.97454,0.655654,|0.607143,0.0402576,0.193736,0.117195,0.257894,0.696905,0.863166,0.729853,0.780515,0.275365,0.489257,0.203681,0.952613,0.22706,0.249644,0.3901,0.179177,0.42339,0.251252,0.928409,0.486894,0.203971,0.460951,0.510895,0.598664,0.674775,0.848485,0.561927,0.515247,0.198596,0.178334,0.628039,0.867279,0.191754,0.958334,0.952259,0.876395,0.0480947,0.279912,0.856594,0.35862,0.753303,0.64642,0.021575,0.572624,0.759932,0.991476,0.944862,0.547503,0.371179,0.720349,0.284795,0.67322,0.0834768,0.584975,0.161143,0.649189,0.891177,0.903435,0.54297,0.644855,0.19622,0.970488,0.277828,0.575172,0.678512,0.242305,0.719934,0.482763,0.801944,0.921388,0.519813,0.709442,0.544057,0.512229,0.299059,0.33067,0.111829,0.169541,0.00113863,0.418703,0.0806835,0.888786,0.756185,0.264359,0.999609,0.668978,0.282341,0.453742,0.00528222,0.0371127,0.405882,0.490198,0.791087,0.323362,0.387973,0.143425,0.888933,0.276145,0.955374,0.7169,0.908707,0.0895413,0.793448,0.758633,0.400038,0.740889,0.553709,0.744461,0.0165922,0.718122,0.213288,0.89688,0.252489,0.496337,0.608286,0.293652,0.046263,0.0344877,0.0723469,0.691754,0.21707,0.274279,0.361226,0.842063,0.154867,0.266148,0.741246,0.600618,0.106365,0.881931,0.496622,0.483058,0.589441,0.424568,0.188494,0.711941,0.980824,0.731056,0.991449,0.103017,0.37716,0.30312,0.35643,0.728189,0.680968,0.929273,0.0884691,0.452664,0.367709,0.55474,0.516557,0.668924,0.714942,0.171652,0.676445,0.0981647,0.742423,0.957829,0.0775326,0.0409663,0.920406,0.908141,0.192968,0.976691,0.557949,0.519354,0.767425,0.718522,0.819276,0.159408,0.676649,0.970315,0.296602,0.406884,0.262507,0.180725,0.164307,0.173503,0.969909,0.247084,0.456569,0.179366,0.843362,0.788932,0.610199,0.700954,0.132163,0.912659,0.31578,0.678888,0.692716,0.0194561,0.365548,0.30967,0.48601,0.466435,0.304734,0.454131,0.596521,0.867654,0.211856,0.873161,0.895572,0.551432,0.616661,0.974211,0.155302,0.774746,0.281833,0.718339,0.994005,0.260618,0.557192,0.814004,0.125345,0.79196,0.0264494,0.519883,0.192629,0.784384,0.726272,0.602943,0.495045,0.428061,0.768121,0.37434,0.919802,0.617733,0.199593,0.620537,0.217465,0.714046,0.424516,0.365075,0.128658,0.781175,0.723898,0.783292,0.138436,0.3064,0.328045,0.574533,0.529265,0.925494,0.277132,0.0551923,0.685803,0.324331,0.951893,0.399458,0.507685,0.641941,0.798111,0.201418,0.916132,0.723904,0.697758,0.994648,0.0423158,0.371909,0.0180718,0.408557,0.64883,0.689342,0.796881,0.235929,0.902498,0.679307,0.749491,0.261638,0.500749,0.947306,0.759979,0.987209,0.82597,0.176405,0.49555,0.316153,0.663341,0.311621,0.864547,0.680882,0.364764,0.973679,0.759656,0.4399,0.586162,0.336588,0.930271,0.157857,0.828952,0.71712,0.257826,0.477671,0.699779,0.191916,0.361759,0.895197,0.958576,0.932529,0.267885,0.125089,0.786338,0.18144,0.973788,0.366726,0.536643,0.388163,0.969465,0.459368,0.257466,0.191571,0.819767,0.118116,0.013675,0.770774,0.831525,0.215856,0.427303,0.209392,0.513855,0.873739,0.256751,0.648007,0.322237,0.241988,0.274163,0.703127,0.883649,0.145477,0.187906,0.414455,0.338061,0.438003,0.202089,0.710034,0.0199329,0.315591,0.77403,0.0763878,0.606133,0.273585,0.48915,0.410742,0.728047,0.823004,0.598804,0.418635,0.348421,0.791066,0.200447,0.576415,0.388926,0.793583,0.0420676,0.948417,0.645716,0.955587,0.233844,0.310316,0.189747,0.00830996,0.285583,0.948422,0.113546,0.581199,0.654905,0.131398,0.237976,0.309354,0.656019,0.511038,0.849475,0.44321,0.295234,0.357565,0.0840558,0.148491,0.102052,0.603613,0.154008,0.163812,0.41906,0.422001,0.157752,0.238514,0.203995,0.232836,0.467171,0.34216,0.2335,0.904785,0.928183,0.0526446,0.573681,0.422434,0.205204,0.998635,0.897328,0.744676,0.175396,0.197372,0.0232932,0.455526,0.0920956,0.0762064,0.131644,0.474157,0.959597,0.519639,0.622204,0.419604,0.77352,0.0789806,0.958404,0.0111654,0.262891,0.0114929,0.813016,0.638772,0.537883,0.709971,0.579221,0.95264,0.374352,0.248142,0.196143,0.496332,0.115595,0.670691,0.354032,0.557504,0.173944,0.16473,0.70374,0.578417,0.181963,0.176747,0.757024,0.898655,0.0377573,0.661806,0.386453,0.559665,0.294373,0.403468,0.0961061,0.486661,0.427741,0.121122,0.625098,0.489291,0.973954,0.89403,0.494029,0.396353,0.0730582,0.0169329,0.128712,0.765491,0.0332868,0.801816,0.138333,0.915532,0.574305,0.133835,0.802151,0.145728,0.521651,0.242091,0.426505,0.529909,0.314863,0.365921,0.37031,0.662392,0.908442,0.528011,0.291687,0.335181,0.51665,0.120924,0.848912,0.219725,0.257909,0.587879,0.618632,0.623933,0.256559,0.31141,0.0641609,0.88766,0.149869,0.178506,0.852238,0.842849,0.112128,0.252018,0.193136,0.0512254,0.822025,0.431772,0.162868,0.0221142,0.542209,0.479062,0.993655,0.446935,0.68742,0.575098,0.460873,0.569592,0.823909,0.597457,0.94132,0.913815,0.99271,0.202857,0.0971476,0.527521,0.308578,0.159884,0.578659,0.171467,0.186881,0.629461,0.796374,0.700976,0.617336,0.802413,0.0123572,0.694753,0.85535,0.531995,0.798811,0.934419,0.876403,0.917513,0.24443,0.959936,0.0737084,0.823072,0.955756,0.973941,0.270512,0.0241995,0.213877,0.657611,0.018538,0.575186,0.699293,0.274291,0.233647,0.970009,0.053184,0.359496,0.968194,0.536237,0.112205,0.0900005,0.235456,0.294835,0.867002,0.587663,0.355741,0.652979,0.158258,0.602199,0.216457,0.137649,0.384343,0.374739,0.16839,0.605566,0.53923,0.346032,0.679909,0.565181,0.898422,0.830422,0.839032,0.282642,0.306493,0.941534,0.901122,0.798776,0.704709,0.336605,0.0253888,0.468636,0.581354,0.313004,0.704453,0.703756,0.225832,0.405039,0.894967,0.0338601,0.908814,0.246334,0.208056,0.621009,0.415696,0.00292373,0.317132,0.940898,0.691459,0.0259194,0.798388,0.71708,0.0547297,0.859923,0.706798,0.582388,0.437784,0.350378,0.18923,0.0164061,0.388922,0.979291,0.282328,0.693913,0.365803,0.6478,0.279088,0.474707,0.505348,0.109711,0.965639,0.0289003,0.561184,0.785529,0.908451,0.327505,0.0501145,0.967511,0.716046,0.281228,0.133404,0.683633,0.0535269,0.479171,0.994311,0.248067,0.333512,0.670127,0.368733,0.45717,0.297493,0.907721,0.452014,0.184445,0.821862,0.101942,0.65647,0.905601,0.252681,0.037475,0.128112,0.681271,0.982411,0.401796,0.612236,0.15043,0.31069,0.488815,0.430192,0.171706,0.388293,0.0318777,0.654496,0.501653,0.305067,0.727713,0.86426,0.786787,0.15911,0.223314,0.0249974,0.94398,0.571816,0.34915,0.592416,0.910471,0.698871,0.710512,0.51209,0.105832,0.501358,0.63717,0.191082,0.196442,0.679451,0.896272,0.65873,0.148779,0.897927,0.895171,0.291777,0.305193,0.0188577,0.212385,0.0261241,0.426179,0.321476,0.129496,0.856453,0.521818,0.830494,0.538315,0.298497,0.952306,0.623145,0.881186,0.0306495,0.672612,0.861875,0.0184234,0.201739,0.857251,0.0930301,0.538653,0.617354,0.356892,0.108538,0.279028,0.745092,0.542955,0.339334,0.620047,0.623711,0.979708,0.646735,0.654754,0.431964,0.495116,0.856681,0.464737,0.0818312,0.609146,0.0940368,0.0752857,0.937595,0.549735,0.768185,0.969631,0.292511,0.0281249,0.188617,0.185045,0.5747,0.0791187,0.311341,0.330465,0.373967,0.655176,0.13323,0.928276,0.578509,0.455078,0.135011,0.659646,0.54233,0.978274,0.549461,0.599009,0.585884,0.786178,0.546094,0.0189002,0.0376382,0.26728,0.010938,0.186634,0.728136,0.947132,0.373892,0.701533,0.904855,0.274387,0.543961,0.201518,0.000940561,0.355829,0.217161,0.597807,0.546148,0.303527,0.967965,0.0448728,0.487533,0.157718,0.534542,0.699991,0.213693,0.113433,0.0590399,0.588946,0.0111212,0.79878,0.843056,0.836087,0.139731,0.827407,0.83031,0.843447,0.229085,0.190014,0.595244,0.961259,0.302328,0.74615,0.86607,0.0913401,0.603312,0.236597,0.8825,0.812455,0.972386,0.207918,0.25864,0.0912644,0.336723,0.741288,0.672638,0.27606,0.601138,0.587822,0.778988,0.81312,0.330301,0.960162,0.427648,0.582578,0.689141,0.848824,0.00607812,0.130635,0.962321,0.352002,0.692796,0.193673,0.314609,0.450019,0.333571,0.239949,0.553826,0.59676,0.331779,0.139139,0.894602,0.804194,0.0575988,0.558836,0.255226,0.924508,0.153753,0.8852,0.676531,0.900411,0.91619,0.461505,0.466604,0.568197,0.845115,0.177557,0.521861,0.590048,0.621756,0.991884,0.0340259,0.690365,0.86634,0.00434083,0.987099,0.931219,0.421575,0.131947,0.436487,0.0216467,0.59523,0.717905,0.881036,0.535994,0.0993775,0.927884,0.499695,0.536357,0.467967,0.366754,0.835677,0.048027,0.752967,0.933897,0.407902,0.187245,0.947484,0.848684,0.425159,0.954823,0.0144911,0.726697,0.350822,0.0281046,0.846294,0.988375,0.155053,0.741527,0.204027,0.894723,0.569608,0.15592,0.490374,0.60408,0.303088,0.934211,0.94585,0.568898,0.189625,0.232478,0.376216,0.710146,0.150496,0.735956,0.842468,0.643074,0.722272,0.00633967,0.281476,0.885579,0.840714,0.111448,0.682632,0.609953,0.80523,0.674186,0.146289,0.402921,0.0221444,0.237371,0.205024,0.813597,0.882168,0.553774,0.626876,0.153817,0.34142,0.110684,0.197776,0.935996,0.126397,0.224047,0.965946,0.894651,0.807407,0.91985,0.165996,0.74456,0.848765,0.473679,0.152264,0.612232,0.247025,0.995423,0.153252,0.751305,0.0522861,0.812912,0.0732238,0.163462,0.673527,0.204827,0.786704,0.397617,0.992604,0.530634,0.51931,0.396706,0.449548,0.13945,0.768537,0.315053,0.868994,0.740941,0.0736322,0.662526,0.214306,0.240945,0.272398,0.480019,0.388749,0.44992,0.866741,0.661474,0.458186,0.503181,0.344668,0.402491,0.117863,|0.110037,0.589217,0.995259,0.0481636,0.334101,0.420355,0.691422,0.474919,0.852196,0.586679,0.570971,0.269821,0.545222,0.0154531,0.425622,0.324263,0.677709,0.0484242,0.131199,0.730381,0.745856,0.50619,0.0926555,0.402925,0.844984,0.993854,0.949598,0.842325,0.113571,0.209779,0.846002,0.220087,0.394726,0.831377,0.249869,0.491748,0.00222892,0.538562,0.331422,0.98206,0.0567543,0.694624,0.510198,0.572285,0.65524,0.789573,0.281409,0.255267,0.931743,0.432666,0.723764,0.272492,0.579816,0.875459,0.607899,0.32268,0.0123918,0.407243,0.336443,0.259242,0.84618,0.696037,0.421337,0.172849,0.0400705,0.286831,0.52811,0.921701,0.701046,0.623196,0.696424,0.866567,0.824782,0.204441,0.049442,0.960329,0.708547,0.273522,0.402854,0.480466,0.626582,0.197768,0.552222,0.971063,0.101104,0.313873,0.36493,0.473819,0.706991,0.693096,0.358091,0.894064,0.0686719,0.359084,0.617419,0.911538,0.275464,0.551962,0.645238,0.43025,0.236467,0.00219506,0.385188,0.124275,0.855287,0.655231,0.0156222,0.532869,0.167398,0.803507,0.809318,0.47719,0.464793,0.408685,0.192489,0.83399,0.702579,0.665272,0.823089,0.100724,0.309817,0.982095,0.237327,0.460844,0.398637,0.474517,0.363347,0.840841,0.296289,0.729242,0.743969,0.966249,0.0633571,0.086801,0.470037,0.0886886,0.652891,0.875657,0.862019,0.211818,0.622428,0.492322,0.997116,0.142753,0.260763,0.465232,0.877983,0.474292,0.951101,0.547836,0.418688,0.537396,0.0785453,0.926069,0.557413,0.1752,0.432125,0.205444,0.502678,0.755659,0.48439,0.119411,0.553155,0.781317,0.237967,0.675458,0.980917,0.666548,0.622761,0.421223,0.854447,0.734922,0.719202,0.940261,0.08338,0.0342312,0.383157,0.807605,0.332172,0.671063,0.904875,0.836279,0.638596,0.629816,0.561676,0.421368,0.922549,0.266148,0.0215544,0.305952,0.557503,0.157693,0.705077,0.850811,0.562212,0.262891,0.155866,0.377797,0.000469923,0.58579,0.738167,0.466071,0.0164167,0.372442,0.153494,0.666577,0.175391,0.734754,0.743661,0.581461,0.329181,0.843057,0.4306,0.939638,0.733194,0.535893,0.590065,0.621175,0.779053,0.155324,0.602343,0.405707,0.344483,0.0636973,0.963082,0.238704,0.687078,0.496419,0.487896,0.784637,0.0748733,0.204857,0.971086,0.0866591,0.116417,0.153517,0.464798,0.167865,0.549772,0.662895,0.475883,0.353741,0.907929,0.600468,0.752845,0.445614,0.906548,0.155736,0.548011,0.614538,0.547658,0.641852,0.546066,0.163794,0.756085,0.697397,0.361051,0.00104749,0.751591,0.806341,0.0946618,0.543257,0.622747,0.325437,0.170832,0.556293,0.71803,0.543425,0.635442,0.603189,0.467214,0.837415,0.449731,0.704142,0.772435,0.929163,0.648703,0.976293,0.83334,0.691938,0.691239,0.809502,0.0583968,0.519903,0.573678,0.61129,0.609178,0.157113,0.219125,0.304855,0.395574,0.639857,0.261228,0.884084,0.231541,0.555154,0.417443,0.185262,0.408867,0.731588,0.501727,0.0179055,0.418413,0.0966469,0.0293868,0.16944,0.338071,0.740695,0.967111,0.710433,0.902344,0.882757,0.890083,0.116867,0.797161,0.100569,0.8449,0.950887,0.233592,0.00152266,0.829657,0.161759,0.0373297,0.0706532,0.728987,0.776535,0.457168,0.0775133,0.685373,0.586062,0.487413,0.919855,0.104828,0.680265,0.658671,0.992478,0.0726811,0.948283,0.950887,0.344067,0.616768,0.265328,0.169301,0.350705,0.962342,0.917709,0.0900238,0.310274,0.851063,0.695584,0.650447,0.639425,0.935158,0.929762,0.462113,0.460533,0.765797,0.899954,0.720782,0.352075,0.698077,0.399374,0.461452,0.219359,0.113834,0.208176,0.981268,0.46551,0.898815,0.466544,0.926735,0.117471,0.104951,0.579396,0.283037,0.718749,0.709907,0.631315,0.576523,0.432635,0.976509,0.681133,0.525627,0.839075,0.283407,0.830992,0.254206,0.62399,0.377725,0.856657,0.868145,0.956222,0.733466,0.501727,0.722179,0.456841,0.43975,0.746179,0.113107,0.479873,0.557192,0.301026,0.0126791,0.365063,0.0359448,0.979781,0.119063,0.579635,0.820088,0.377079,0.575873,0.855762,0.53094,0.38674,0.704708,0.661039,0.0443023,0.753504,0.806451,0.75628,0.467414,0.915777,0.00360203,0.322397,0.4702,0.816808,0.617141,0.727897,0.461302,0.540893,0.0331152,0.0254917,0.351935,0.459008,0.550069,0.215296,0.949282,0.455333,0.832224,0.611971,0.386892,0.852649,0.45973,0.254223,0.602483,0.183121,0.425592,0.378423,0.932625,0.630548,0.593167,0.966161,0.254114,0.660048,0.139206,0.340045,0.531336,0.850069,0.634167,0.755789,0.584233,0.106864,0.793787,0.982192,0.767112,0.538782,0.0991983,0.96211,0.132389,0.63668,0.641886,0.627627,0.944182,0.874411,0.350711,0.503385,0.149151,0.501079,0.450385,0.683979,0.330019,0.111926,0.200213,0.715774,0.35613,0.689731,0.631136,0.659255,0.0243347,0.0620235,0.898048,0.73432,0.494004,0.173408,0.890003,0.0313748,0.70415,0.462184,0.61783,0.706351,0.525843,0.477875,0.992023,0.771158,0.172363,0.241657,0.260677,0.0869393,0.00974739,0.476903,0.484739,0.755292,0.582026,0.493277,0.577626,0.323468,0.109352,0.322749,0.447839,0.403309,0.113089,0.708876,0.760898,0.648644,0.346037,0.509872,0.747291,0.738781,0.757628,0.231203,0.824494,0.869479,0.228521,0.344968,0.442926,0.493413,0.14237,0.776833,0.0960071,0.809062,0.239145,0.787429,0.342012,0.895322,0.923383,0.810342,0.791688,0.983865,0.487912,0.870071,0.358071,0.389928,0.0979895,0.608651,0.880446,0.540215,0.0491661,0.776755,0.0413724,0.996966,0.425268,0.616886,0.254859,0.360834,0.222893,0.26275,0.478046,0.32907,0.161334,0.0467018,0.525976,0.493071,0.434263,0.189949,0.889982,0.440658,0.854162,0.81472,0.771427,0.804364,0.759465,0.759785,0.522549,0.250421,0.324172,0.224336,0.820192,0.371136,0.894374,0.139299,0.378306,0.68796,0.0719926,0.432532,0.597246,0.352586,0.836521,0.463651,0.447721,0.40546,0.263416,0.976756,0.507508,0.927004,0.854558,0.463728,0.264795,0.984457,0.618949,0.326086,0.950579,0.0229023,0.32061,0.814202,0.677906,0.741667,0.847815,0.926483,0.259289,0.0689325,0.120897,0.0951995,0.406114,0.146955,0.921374,0.595831,0.778533,0.381925,0.262657,0.458673,0.241965,0.937951,0.65136,0.520737,0.371645,0.109584,0.256968,0.298049,0.834688,0.642248,0.0343301,0.984945,0.551285,0.379378,0.264118,0.0218659,0.0634074,0.204445,0.904106,0.751111,0.505459,0.822585,0.856361,0.55594,0.580106,0.548507,0.115785,0.841421,0.938624,0.0874137,0.443411,0.195949,0.651546,0.967973,0.957067,0.0217519,0.786442,0.240598,0.85444,0.817352,0.620979,0.489085,0.505407,0.586671,0.970608,0.193471,0.101309,0.0352899,0.748541,0.966953,0.797197,0.737373,0.865656,0.192102,0.623749,0.756673,0.818799,0.963489,0.576734,0.757952,0.00141823,0.338111,0.277704,0.233001,0.591352,0.180317,0.0499638,0.10808,0.879176,0.215768,0.683632,0.25091,0.275635,0.105311,0.370019,0.543951,0.5409,0.169425,0.350245,0.705473,0.697186,0.608816,0.0560412,0.702663,0.708335,0.944537,0.413069,0.439878,0.540244,0.767525,0.46478,0.371036,0.816473,0.494291,0.115267,0.812219,0.902941,0.246097,0.203444,0.853058,0.483046,0.0142968,0.0019902,0.332229,0.782221,0.73843,0.892071,0.972529,0.299696,0.137867,0.0317974,0.731237,0.332684,0.839829,0.902371,0.815654,0.119027,0.614504,0.631383,0.252738,0.791003,0.528695,0.412466,0.214761,0.455331,0.159095,0.453265,0.809676,0.782377,0.765403,0.147201,0.794737,0.0010671,0.903761,0.123605,0.0497435,0.939026,0.354102,0.599269,0.280738,0.440323,0.187284,0.605908,0.388312,0.547103,0.294875,0.523697,0.471878,0.397907,0.480774,0.707233,0.825718,0.225117,0.710188,0.71703,0.970879,0.249199,0.868005,0.272925,0.924304,0.754908,0.886257,0.358972,0.637312,0.429798,0.538914,0.677568,0.132232,0.188744,0.638667,0.959525,0.164366,0.00597101,0.305235,0.917452,0.424115,0.887571,0.372893,0.155124,0.00523978,0.386506,0.698758,0.436984,0.0563568,0.570924,0.307409,0.072811,0.546165,0.0868304,0.780564,0.562311,0.0169995,0.979686,0.19297,0.0578495,0.621263,0.111485,0.877363,0.299219,0.959289,0.395403,0.146368,0.284455,0.485858,0.518211,0.234454,0.367902,0.337265,0.950584,0.79783,0.708857,0.513061,0.215308,0.902703,0.95286,0.400939,0.214199,0.642334,0.837625,0.259982,0.537193,0.868529,0.977211,0.526622,0.747469,0.377484,0.146233,0.933725,0.659642,0.511286,0.796227,0.495249,0.576422,0.808972,0.0251642,0.373584,0.882606,0.55103,0.0775276,0.667644,0.0807325,0.94053,0.541154,0.727811,0.766438,0.0437964,0.589553,0.625449,0.486443,0.659301,0.291366,0.796249,0.0397059,0.761482,0.185199,0.521035,0.29446,0.347495,0.93661,0.672499,0.102651,0.379239,0.432677,0.231174,0.793666,0.08117,0.371698,0.641564,0.570186,0.59643,0.547215,0.884431,0.385427,0.916914,0.730342,0.563851,0.524559,0.437636,0.641567,0.767541,0.875085,0.367714,0.939074,0.844779,0.420818,0.730428,0.736985,0.120273,0.851791,0.626429,0.543819,0.375969,0.0605676,0.0653211,0.700638,0.113588,0.224751,0.189201,0.0371614,0.795884,0.173354,0.358216,0.158627,0.842966,0.579941,0.651022,0.957936,0.765502,0.872344,0.567402,0.669115,0.372172,0.556633,0.889433,0.610466,0.965446,0.932738,0.686834,0.726804,0.552929,0.204248,0.55079,0.120784,0.669265,0.175818,0.334762,0.997436,0.160547,0.0733037,0.769146,0.191336,0.801989,0.587084,0.579508,0.0343243,0.876612,0.15164,0.892231,0.60891,0.839219,0.0394167,0.991984,0.805893,0.911476,0.309338,0.616326,0.0873722,0.88332,0.941189,0.803355,0.453907,0.329128,0.515168,0.156032,0.125895,0.523252,0.197801,0.708891,0.354747,0.733237,0.240099,0.7167,0.776796,0.930389,0.673671,0.525656,0.158191,0.279805,0.960211,0.508675,|0.90627,0.503399,0.331269,0.279131,0.465483,0.408312,0.340177,0.0769593,0.0326954,0.636869,0.848144,0.180905,0.553718,0.663932,0.125729,0.235765,0.607457,0.865185,0.581172,0.000534832,0.405944,0.773504,0.528207,0.847896,0.308129,0.80749,0.0157072,0.123703,0.835615,0.201933,0.18082,0.826112,0.550977,0.69892,0.0839995,0.726512,0.0937022,0.243918,0.504222,0.864368,0.242682,0.132658,0.526439,0.993548,0.716939,0.000587642,0.754648,0.53586,0.848548,0.361002,0.0329147,0.423064,0.538244,0.932977,0.549912,0.154828,0.773211,0.460373,0.698135,0.170886,0.456765,0.535013,0.56462,0.249518,0.519317,0.919362,0.785623,0.519191,0.00881642,0.631224,0.118711,0.512413,0.956623,0.472866,0.966175,0.722701,0.871183,0.953435,0.54551,0.245073,0.272924,0.992457,0.891602,0.0752683,0.458907,0.92968,0.970069,0.733835,0.736265,0.04252,0.147272,0.886311,0.6382,0.653783,0.434384,0.321973,0.505522,0.520256,0.032675,0.893073,0.89603,0.557114,0.856167,0.330659,0.714032,0.97788,0.0124301,0.827825,0.222765,0.904384,0.0408117,0.363369,0.358669,0.620898,0.252989,0.00493252,0.716025,0.643205,0.203583,0.193752,0.358371,0.960343,0.0661304,0.240242,0.852919,0.224422,0.52463,0.306621,0.435278,0.978327,0.225743,0.281562,0.493865,0.333355,0.133122,0.995406,0.987198,0.567973,0.477432,0.913472,0.587131,0.11907,0.417075,0.503459,0.159959,0.232046,0.966409,0.893515,0.924646,0.650044,0.939488,0.986817,0.117792,0.667691,0.235511,0.245169,0.276052,0.822713,0.79108,0.0146272,0.822486,0.154285,0.987136,0.208655,0.546146,0.921137,0.222433,0.645414,0.428513,0.785188,0.707719,0.770287,0.680413,0.720079,0.890383,0.293019,0.302351,0.748815,0.268121,0.887035,0.09643,0.230827,0.353341,0.781269,0.306965,0.706618,0.553593,0.983412,0.513065,0.156996,0.774044,0.842727,0.0184062,0.883904,0.480625,0.559898,0.556599,0.146039,0.808203,0.291299,0.00649494,0.121642,0.470409,0.508133,0.919496,0.215717,0.327144,0.909575,0.676284,0.361849,0.843016,0.941867,0.157557,0.286627,0.544225,0.0317396,0.298042,0.752758,0.880535,0.190709,0.576128,0.841159,0.951115,0.592519,0.538308,0.954556,0.59091,0.379783,0.920614,0.297262,0.324833,0.0661438,0.270776,0.89237,0.168116,0.493434,0.355454,0.67643,0.713655,0.545732,0.935135,0.0585461,0.0334277,0.787551,0.124234,0.484724,0.50964,0.466399,0.777192,0.706753,0.967725,0.574254,0.451249,0.909652,0.0696289,0.128572,0.56053,0.36498,0.493536,0.456122,0.927339,0.327361,0.0141678,0.789349,0.685406,0.703494,0.578453,0.727659,0.775173,0.858422,0.772131,0.823254,0.352998,0.8967,0.516175,0.623941,0.556867,0.322331,0.130073,0.175899,0.0543333,0.228995,0.0248488,0.684092,0.276751,0.465472,0.300508,0.945518,0.0494957,0.332155,0.262954,0.651092,0.852791,0.509099,0.143318,0.406157,0.325589,0.117774,0.5339,0.676238,0.901739,0.242286,0.944038,0.206049,0.960894,0.159625,0.813697,0.100365,0.97078,0.574232,0.959493,0.878909,0.771954,0.490445,0.75588,0.990914,0.218632,0.762684,0.599507,0.799184,0.751778,0.543235,0.44748,0.918077,0.239496,0.538947,0.780055,0.373732,0.928942,0.387587,0.33611,0.951388,0.762831,0.291876,0.905633,0.18273,0.260425,0.641959,0.779531,0.988307,0.038443,0.836424,0.882752,0.416265,0.273279,0.896588,0.130742,0.631622,0.432973,0.632081,0.420233,0.0246786,0.225382,0.0393508,0.2284,0.0264221,0.862413,0.590431,0.448249,0.743464,0.327893,0.751801,0.557708,0.826133,0.306576,0.309045,0.908186,0.186915,0.603305,0.725809,0.535752,0.216079,0.265736,0.731392,0.582634,0.483637,0.0117447,0.801757,0.126251,0.21751,0.843193,0.558332,0.171244,0.946141,0.505322,0.237479,0.355068,0.30203,0.782186,0.857715,0.566417,0.114619,0.614294,0.186956,0.714539,0.900577,0.425418,0.101926,0.844912,0.311197,0.557948,0.200441,0.80808,0.675883,0.751097,0.487189,0.259259,0.773864,0.411906,0.456502,0.888142,0.393356,0.346449,0.262424,0.789875,0.635031,0.438322,0.190736,0.253671,0.216394,0.505943,0.952068,0.641939,0.868519,0.690442,0.416382,0.848605,0.853209,0.588442,0.615283,0.593134,0.574561,0.228166,0.523108,0.304725,0.504952,0.373533,0.17197,0.119666,0.918333,0.653156,0.529614,0.213737,0.876685,0.0156287,0.650522,0.413243,0.69109,0.367591,0.935934,0.872519,0.863471,0.28542,0.993125,0.865462,0.0576077,0.963037,0.212302,0.752667,0.329497,0.195427,0.436397,0.0415524,0.631066,0.15623,0.521154,0.235393,0.0225387,0.113296,0.335699,0.674022,0.880365,0.918624,0.143414,0.931739,0.888659,0.67984,0.0688724,0.7249,0.301164,0.217636,0.750501,0.939392,0.354912,0.281178,0.204862,0.835403,0.394351,0.176858,0.640405,0.298753,0.618157,0.0643809,0.701755,0.193377,0.32772,0.163276,0.944972,0.39017,0.149251,0.726364,0.656748,0.494806,0.961352,0.810768,0.80419,0.611452,0.983437,0.372333,0.160573,0.199262,0.745761,0.692569,0.213733,0.351574,0.144871,0.26602,0.482566,0.850826,0.544198,0.0845779,0.638862,0.945198,0.652498,0.529711,0.0289656,0.314974,0.822478,0.307196,0.540642,0.181708,0.932564,0.155892,0.253712,0.166137,0.299349,0.010975,0.0310366,0.886854,0.578372,0.777353,0.420723,0.311911,0.610749,0.46202,0.689601,0.0210783,0.268683,0.276636,0.504134,0.171567,0.784101,0.741529,0.114811,0.868309,0.780209,0.575465,0.557947,0.838379,0.360721,0.0652648,0.903929,0.353759,0.0272432,0.999809,0.190196,0.889193,0.833579,0.327493,0.717344,0.21967,0.20267,0.241845,0.118975,0.467096,0.890899,0.98625,0.210868,0.433297,0.249733,0.905868,0.810527,0.582405,0.925193,0.804063,0.226557,0.747412,0.400805,0.574821,0.400143,0.00973034,0.457345,0.929049,0.984806,0.744567,0.492041,0.817943,0.35192,0.419182,0.444488,0.894573,0.80541,0.299766,0.0768998,0.869068,0.122221,0.619485,0.631372,0.912522,0.4469,0.2251,0.871179,0.248439,0.258461,0.329499,0.162026,0.0443473,0.98899,0.732771,0.518752,0.855788,0.999551,0.775485,0.508834,0.314231,0.651349,0.908046,0.63031,0.285887,0.753731,0.827759,0.124547,0.570624,0.772139,0.95026,0.506964,0.505956,0.28014,0.866459,0.257843,0.14891,0.757349,0.72645,0.601038,0.657508,0.333067,0.640397,0.9625,0.179838,0.756403,0.157338,0.125202,0.406591,0.71157,0.303933,0.538886,0.941016,0.419476,0.0390416,0.897606,0.173463,0.103307,0.776906,0.00362903,0.253605,0.952901,0.17947,0.868875,0.866655,0.198071,0.774441,0.100679,0.808817,0.0683952,0.099983,0.792718,0.621195,0.280961,0.215349,0.125255,0.589788,0.333497,0.63557,0.613604,0.198564,0.409796,0.699191,0.298038,0.570303,0.0487899,0.46826,0.86972,0.12686,0.730027,0.905787,0.784214,0.869474,0.167628,0.166514,0.82456,0.905479,0.303921,0.793294,0.0186022,0.615079,0.605911,0.906065,0.475781,0.0402721,0.0653142,0.754318,0.249896,0.173813,0.572934,0.746499,0.650381,0.681777,0.807947,0.422242,0.36516,0.732982,0.21705,0.319757,0.933041,0.0405949,0.654584,0.178202,0.924201,0.707868,0.530018,0.248751,0.44407,0.324019,0.554897,0.730906,0.50588,0.672778,0.74061,0.39876,0.970346,0.383608,0.482226,0.0688072,0.497552,0.728007,0.881684,0.830167,0.501473,0.338914,0.621214,0.129533,0.0558734,0.282656,0.0592777,0.982218,0.176392,0.306167,0.688553,0.971757,0.984922,0.744266,0.361914,0.239204,0.875338,0.535982,0.49071,0.1721,0.524647,0.0372946,0.609236,0.227057,0.647267,0.2039,0.950939,0.0805766,0.413542,0.125372,0.556436,0.755374,0.660248,0.0901767,0.873475,0.963872,0.734043,0.209656,0.34979,0.745079,0.357339,0.610468,0.576821,0.428949,0.604451,0.635435,0.0381745,0.347453,0.220426,0.739353,0.133237,0.691887,0.0714671,0.414008,0.348903,0.999764,0.423865,0.79546,0.201027,0.325778,0.324849,0.840917,0.985576,0.704906,0.756777,0.94308,0.410657,0.45242,0.0627648,0.255142,0.885531,0.574397,0.703591,0.966921,0.492156,0.813406,0.714979,0.392449,0.171502,0.246113,0.385819,0.636272,0.902588,0.0520811,0.679368,0.224947,0.973687,0.282131,0.665638,0.778401,0.710085,0.444778,0.373007,0.0968549,0.794615,0.380039,0.633557,0.469516,0.284417,0.664661,0.872991,0.708589,0.00614685,0.550978,0.183429,0.867298,0.987021,0.0503461,0.743609,0.582179,0.822973,0.359592,0.240519,0.946464,0.38671,0.786178,0.612415,0.666447,0.40187,0.304791,0.586534,0.511319,0.358191,0.0347852,0.80305,0.622143,0.193709,0.235112,0.475389,0.446958,0.490968,0.154442,0.793376,0.493666,0.513332,0.812896,0.355447,0.183114,0.727017,0.951152,0.264173,0.791755,0.874287,0.788431,0.444426,0.0211138,0.380807,0.760496,0.932705,0.451541,0.972629,0.40096,0.416208,0.293997,0.33349,0.46398,0.326791,0.578598,0.737986,0.0625869,0.0685827,0.735176,0.883701,0.806544,0.456756,0.101825,0.486576,0.206898,0.890312,0.595663,0.0795912,0.199832,0.809064,0.570403,0.551381,0.0142496,0.716998,0.186796,0.958686,0.904719,0.187583,0.752372,0.067001,0.349619,0.523865,0.380988,0.765381,0.392916,0.160642,0.781246,0.266695,0.0930076,0.33124,0.649719,0.425907,0.964376,0.89214,0.0551912,0.531159,0.121225,0.925194,0.688068,0.36053,0.274541,0.760368,0.0502576,0.306409,0.281162,0.29614,0.3742,0.760558,0.223106,0.396335,0.0611155,0.97319,0.724259,0.141395,0.298056,0.518865,0.238858,0.114432,0.936806,0.233266,0.097061,0.743399,0.797917,0.603706,0.264465,0.259724,0.786593,0.868257,0.619556,0.984401,0.360357,0.756838,0.914616,0.106328,0.897097,0.396155,0.0483764,0.501351,0.58805,0.755618,0.70599,0.0978401,0.369233,0.556077,0.479641,0.544722,0.392625,0.00503767,0.0893556,0.319243,|0.775486,0.265004,0.643865,0.844162,0.00265563,0.569896,0.225192,0.250738,0.051405,0.758418,0.562275,0.989946,0.790371,0.0272449,0.252039,0.696023,0.88292,0.515948,0.137524,0.531317,0.469021,0.0783434,0.946615,0.576275,0.00696033,0.952854,0.383152,0.560697,0.696113,0.469017,0.190988,0.160035,0.635137,0.686273,0.437482,0.513472,0.304911,0.405974,0.138839,0.0822868,0.646728,0.077927,0.690621,0.763911,0.991162,0.783282,0.0424824,0.00952613,0.723114,0.727817,0.59157,0.56172,0.59507,0.680077,0.417861,0.499023,0.729574,0.431369,0.0277407,0.298996,0.777831,0.119924,0.755343,0.697248,0.545115,0.69799,0.929952,0.382538,0.0724415,0.728906,0.523597,0.90734,0.746907,0.88149,0.272074,0.407593,0.597222,0.0260927,0.418755,0.680627,0.893812,0.539805,0.41279,0.148417,0.951815,0.905992,0.0186974,0.0495318,0.462919,0.166416,0.554335,0.0629978,0.944162,0.150765,0.0308744,0.344228,0.331177,0.976623,0.415488,0.998326,0.0250582,0.308121,0.44157,0.890027,0.857195,0.721932,0.931083,0.690436,0.240394,0.727598,0.33962,0.152291,0.0985636,0.787911,0.691763,0.198374,0.500877,0.309545,0.907318,0.536793,0.744191,0.574715,0.60255,0.0741745,0.122677,0.174666,0.996596,0.568626,0.420093,0.500952,0.189273,0.557002,0.28879,0.283845,0.217308,0.287236,0.536257,0.230696,0.46298,0.510609,0.109269,0.759468,0.793796,0.548332,0.353846,0.974496,0.251197,0.869283,0.848301,0.919612,0.417287,0.888222,0.491167,0.782139,0.922877,0.198841,0.365586,0.45384,0.555132,0.157497,0.849483,0.202024,0.374735,0.587985,0.169,0.439999,0.327567,0.477906,0.61165,0.851955,0.305757,0.26315,0.303534,0.829994,0.930061,0.55448,0.42139,0.639161,0.648853,0.649187,0.642198,0.105869,0.184366,0.45836,0.35589,0.421197,0.336332,0.301296,0.754508,0.88898,0.692486,0.272482,0.298168,0.139052,0.545263,0.772534,0.9738,0.856548,0.434445,0.114412,0.350669,0.264757,0.141785,0.589166,0.490109,0.221579,0.93825,0.668388,0.0511844,0.0078038,0.578419,0.483686,0.134434,0.229498,0.584526,0.444714,0.467708,0.214494,0.632919,0.0494391,0.427315,0.196696,0.69892,0.936597,0.658592,0.646625,0.344042,0.39738,0.426169,0.64919,0.907004,0.899294,0.508229,0.509932,0.702238,0.405308,0.307719,0.724051,0.858691,0.777545,0.49023,0.809306,0.748922,0.469326,0.25187,0.195809,0.343399,0.192183,0.829631,0.401848,0.502897,0.102734,0.611292,0.490944,0.697753,0.153202,0.566874,0.881729,0.466578,0.49757,0.203317,0.458384,0.318266,0.784064,0.93611,0.0618176,0.144929,0.11965,0.325505,0.65532,0.11794,0.851856,0.890376,0.420634,0.059374,0.0338518,0.910304,0.848878,0.146203,0.0352943,0.851948,0.269828,0.0360487,0.978817,0.0301023,0.340947,0.885153,0.317637,0.138763,0.892162,0.277775,0.778913,0.147831,0.483375,0.381152,0.739769,0.997386,0.784307,0.28231,0.951785,0.711107,0.355666,0.548882,0.811846,0.469905,0.0233567,0.271218,0.734417,0.847963,0.507908,0.777844,0.696871,0.345812,0.298772,0.589367,0.458098,0.297282,0.608038,0.429355,0.685331,0.760215,0.793953,0.758523,0.504647,0.362798,0.119433,0.926127,0.639117,0.452673,0.874165,0.0520754,0.0238113,0.881601,0.10023,0.32025,0.440029,0.0375609,0.234532,0.342344,0.41431,0.141779,0.270787,0.347431,0.684562,0.715319,0.497529,0.0583347,0.943286,0.751132,0.844859,0.874484,0.842014,0.402987,0.246291,0.0598841,0.322682,0.586257,0.545102,0.780959,0.670308,0.810083,0.589651,0.370933,0.168224,0.32676,0.496069,0.866639,0.708424,0.443113,0.438018,0.425641,0.246123,0.529203,0.878008,0.659822,0.92546,0.704946,0.71934,0.17651,0.172268,0.553257,0.81997,0.203629,0.212278,0.753164,0.227441,0.985866,0.672173,0.548619,0.237846,0.199776,0.336593,0.326298,0.650326,0.442777,0.271035,0.916149,0.989388,0.556621,0.745944,0.435421,0.458305,0.10658,0.862838,0.397497,0.930273,0.733927,0.083956,0.279211,0.7143,0.665537,0.562415,0.388757,0.41428,0.00241339,0.32017,0.192049,0.659065,0.82742,0.326418,0.746178,0.543692,0.396184,0.0942563,0.926978,0.859492,0.864501,0.356769,0.598917,0.2996,0.153755,0.329838,0.132707,0.484327,0.960875,0.817165,0.893157,0.182146,0.0461888,0.213558,0.058834,0.576158,0.857937,0.857431,0.61546,0.00833225,0.851326,0.0460849,0.309093,0.307853,0.601677,0.148415,0.348119,0.587546,0.512296,0.575841,0.0575807,0.167565,0.239591,0.234569,0.010546,0.827642,0.329835,0.886552,0.923919,0.333387,0.511659,0.401906,0.799385,0.31278,0.589142,0.622466,0.796838,0.175348,0.877047,0.282966,0.25035,0.374842,0.839415,0.629362,0.416944,0.208829,0.140079,0.232322,0.239939,0.553653,0.85224,0.419032,0.0848186,0.697242,0.965974,0.225947,0.339237,0.0532942,0.220887,0.54391,0.907643,0.314984,0.146001,0.52948,0.910697,0.922669,0.6729,0.635038,0.145251,0.502752,0.993827,0.691474,0.207874,0.183108,0.190691,0.461763,0.383948,0.474073,0.0249364,0.239829,0.349339,0.0741003,0.0969858,0.82592,0.0646426,0.503286,0.320664,0.102232,0.172224,0.532032,0.505169,0.947161,0.274735,0.413992,0.06688,0.266147,0.100554,0.334265,0.261972,0.803118,0.826785,0.783771,0.967836,0.15154,0.636729,0.690278,0.548306,0.178565,0.99578,0.296742,0.850627,0.892952,0.512037,0.153309,0.406015,0.319708,0.556346,0.416287,0.773687,0.654807,0.382472,0.0126744,0.508635,0.672032,0.87126,0.322377,0.0129837,0.122129,0.621658,0.472191,0.499863,0.085584,0.0565801,0.909365,0.699129,0.217803,0.900495,0.645195,0.187919,0.09499,0.950392,0.412009,0.91518,0.161746,0.457443,0.569848,0.122945,0.956518,0.870047,0.0309169,0.483533,0.197908,0.897434,0.299123,0.564639,0.837418,0.569244,0.973938,0.207923,0.645975,0.729784,0.57247,0.265468,0.246426,0.415214,0.700832,0.415829,0.937091,0.53229,0.336744,0.828598,0.315162,0.243531,0.986927,0.922561,0.308007,0.0529314,0.288804,0.247987,0.292723,0.0859026,0.930924,0.443958,0.600991,0.483272,0.331393,0.882544,0.795434,0.660171,0.560679,0.351018,0.52764,0.756137,0.926943,0.382568,0.214086,0.401495,0.819794,0.237158,0.382548,0.598005,0.961344,0.883437,0.0419272,0.173509,0.924574,0.956318,0.573596,0.602874,0.295141,0.77039,0.754259,0.931363,0.15472,0.418057,0.0682371,0.537514,0.41891,0.21226,0.796089,0.0468145,0.0915509,0.967533,0.773888,0.850141,0.960436,0.833743,0.280867,0.925817,0.621295,0.332135,0.44176,0.939015,0.075828,0.0874999,0.445218,0.217729,0.181227,0.467313,0.0259761,0.300818,0.814065,0.749103,0.397185,0.388823,0.704908,0.591192,0.893702,0.403667,0.780915,0.745133,0.228983,0.275709,0.526615,0.0699526,0.164779,0.00150967,0.771572,0.804507,0.776611,0.280703,0.830962,0.897018,0.344589,0.821491,0.572131,0.650596,0.480862,0.556637,0.810791,0.340206,0.305007,0.43206,0.75017,0.344168,0.590318,0.83584,0.665527,0.239749,0.957247,0.459101,0.19218,0.0496369,0.221793,0.234272,0.527808,0.947296,0.0148979,0.203252,0.719096,0.0743195,0.0641468,0.856973,0.932149,0.122652,0.0979,0.848196,0.332615,0.830401,0.658144,0.800857,0.564579,0.0581555,0.930596,0.410577,0.939759,0.0374006,0.224522,0.834857,0.204621,0.277929,0.688635,0.883993,0.923797,0.398069,0.502715,0.0855325,0.851129,0.220358,0.712608,0.625879,0.916572,0.065725,0.814664,0.536737,0.811585,0.473424,0.773678,0.983211,0.31414,0.629583,0.116161,0.841192,0.638853,0.0722796,0.843412,0.836368,0.544732,0.619248,0.0241036,0.763809,0.297023,0.642427,0.504461,0.658271,0.097334,0.072244,0.896102,0.563473,0.220065,0.00247592,0.870022,0.348947,0.856613,0.650271,0.357874,0.489999,0.416415,0.72418,0.15052,0.301153,0.231441,0.921604,0.450019,0.0685434,0.853873,0.805628,0.58219,0.0726284,0.385488,0.503233,0.954812,0.709882,0.0158473,0.826976,0.164433,0.768714,0.710766,0.430614,0.654884,0.0824018,0.384192,0.341162,0.0958403,0.481484,0.761773,0.147023,0.351397,0.136101,0.107867,0.405521,0.916662,0.078309,0.453724,0.769534,0.574642,0.084388,0.341376,0.709295,0.298334,0.29175,0.254353,0.529829,0.576781,0.385474,0.274081,0.80015,0.564015,0.592695,0.301863,0.418488,0.177173,0.0979227,0.66656,0.857197,0.34712,0.657533,0.440165,0.815631,0.485775,0.0971846,0.720888,0.616798,0.787222,0.663584,0.378826,0.182403,0.081772,0.232858,0.337056,0.471577,0.990709,0.780132,0.465772,0.848332,0.108148,0.616202,0.246532,0.908257,0.717277,0.455722,0.907437,0.771145,0.075386,0.2953,0.284726,0.903297,0.89228,0.430024,0.742362,0.892454,0.311569,0.0942612,0.173787,0.952248,0.76263,0.0612299,0.670852,0.141701,0.816514,0.153109,0.0872304,0.310769,0.834441,0.867003,0.827586,0.839518,0.322786,0.819076,0.993268,0.0987908,0.779702,0.0798984,0.655892,0.810903,0.788336,0.228156,0.992891,0.523172,0.0702289,0.633162,0.894067,0.499194,0.0982165,0.57342,0.95787,0.5989,0.405468,0.652226,0.346194,0.745611,0.47916,0.647846,0.611527,0.322061,0.56402,0.1612,0.381534,0.128866,0.567449,0.95453,0.519097,0.614445,0.236448,0.0452677,0.0356108,0.262609,0.495802,0.795892,0.437102,0.714472,0.906676,0.532848,0.374296,0.95551,0.882642,0.310196,0.35924,0.699585,0.903124,0.317624,0.409599,0.508796,0.801998,0.984039,0.127439,0.464962,0.278879,0.300827,0.0964409,0.236337,0.733021,0.257085,0.689023,0.272463,0.695507,0.506263,0.722943,0.308237,0.399067,0.954018,0.64231,0.722632,0.197589,0.0731387,0.951897,0.993745,0.58747,0.291317,0.0393162,0.911127,0.795672,0.456423,0.994336,0.0983813,0.963161,0.267958,0.76429,0.0980017,0.598906,0.113746,0.858809,0.934854,0.563561,|0.833429,0.136049,0.563153,0.63943,0.138131,0.3033,0.502538,0.319106,0.746015,0.21763,0.78823,0.970824,0.181805,0.732706,0.850129,0.396686,0.300981,0.0995076,0.262819,0.286811,0.400127,0.480721,0.696343,0.165395,0.171266,0.119893,0.465799,0.902957,0.657488,0.336178,0.80002,0.278083,0.992169,0.456936,0.0893952,0.222186,0.355139,0.928398,0.682959,0.102284,0.318323,0.621239,0.305604,0.339039,0.981148,0.247324,0.605019,0.359227,0.786413,0.0939656,0.245454,0.209342,0.926045,0.901498,0.94618,0.126436,0.169342,0.102661,0.714361,0.371657,0.124249,0.231402,0.600002,0.163001,0.445294,0.616203,0.559964,0.937406,0.421418,0.642906,0.935902,0.725797,0.880213,0.143816,0.85013,0.521035,0.306897,0.788612,0.68903,0.582979,0.365415,0.540382,0.811718,0.395477,0.505122,0.286481,0.297153,0.549845,0.809065,0.130018,0.747585,0.975994,0.517932,0.395216,0.128267,0.0993136,0.916353,0.0931269,0.944065,0.392131,0.968486,0.690351,0.229663,0.404991,0.71094,0.0379041,0.525028,0.992578,0.0768135,0.432638,0.754285,0.181118,0.460983,0.532525,0.226354,0.105212,0.744798,0.0879427,0.0235887,0.640724,0.0529123,0.680214,0.205811,0.922669,0.332861,0.501095,0.885684,0.66266,0.805819,0.0768439,0.264701,0.450024,0.815817,0.818171,0.297649,0.137164,0.73348,0.629724,0.502629,0.637605,0.527032,0.587402,0.737958,0.622466,0.490184,0.739588,0.686429,0.22376,0.594625,0.131204,0.322975,0.829195,0.149161,0.862389,0.939022,0.721724,0.759758,0.910185,0.186971,0.418511,0.169976,0.770757,0.797335,0.00442785,0.0968565,0.977081,0.436465,0.47827,0.567193,0.848128,0.192935,0.53179,0.862645,0.556312,0.0173539,0.868157,0.204393,0.909108,0.142622,0.436686,0.172981,0.0165198,0.911514,0.508579,0.890893,0.526332,0.534149,0.819402,0.923978,0.38113,0.569405,0.502855,0.399455,0.41759,0.26086,0.284355,0.701056,0.275441,0.383967,0.0901644,0.959141,0.801539,0.0214136,0.223916,0.751919,0.917831,0.804106,0.965191,0.896569,0.449343,0.256662,0.733413,0.335364,0.0839148,0.631491,0.346751,0.881109,0.396094,0.155433,0.272933,0.103168,0.79786,0.17659,0.975472,0.859463,0.269702,0.626838,0.0549133,0.44803,0.359247,0.487907,0.675048,0.368687,0.568967,0.75499,0.348238,0.68648,0.35602,0.136749,0.736216,0.969727,0.233159,0.39201,0.980741,0.619,0.514805,0.607181,0.294292,0.0822883,0.566048,0.15408,0.78506,0.683553,0.288497,0.697044,0.503241,0.455327,0.59908,0.07181,0.740693,0.087364,0.0640368,0.0281348,0.842099,0.898752,0.518816,0.91086,0.655977,0.824559,0.532885,0.56545,0.0550021,0.740741,0.420772,0.857134,0.574498,0.287556,0.0635364,0.411472,0.0954541,0.659206,0.400374,0.863966,0.0957481,0.46689,0.463529,0.0229726,0.0665113,0.767138,0.538038,0.830045,0.518117,0.114335,0.364449,0.497282,0.929048,0.846142,0.998505,0.336204,0.841169,0.712499,0.694278,0.0832763,0.601151,0.135785,0.0277154,0.363968,0.273663,0.427205,0.419133,0.488967,0.522047,0.186902,0.545436,0.807603,0.342335,0.56233,0.0792769,0.089659,0.76667,0.549041,0.294466,0.293725,0.282469,0.359323,0.240505,0.990766,0.51993,0.937255,0.617854,0.672445,0.265204,0.00592226,0.167363,0.483234,0.288321,0.0339108,0.0586651,0.353599,0.72602,0.209207,0.735648,0.282523,0.111817,0.463051,0.379515,0.555323,0.191381,0.402625,0.465076,0.897258,0.0874833,0.0158135,0.505318,0.492988,0.600615,0.350484,0.978805,0.248557,0.512631,0.30597,0.318044,0.653994,0.891116,0.585311,0.957681,0.24194,0.0452099,0.112193,0.957279,0.452243,0.524894,0.875998,0.36657,0.675749,0.550228,0.610649,0.365585,0.647083,0.000759721,0.852389,0.223048,0.67125,0.506111,0.937701,0.440116,0.00105053,0.279261,0.583579,0.0939303,0.189496,0.3824,0.254719,0.98135,0.555297,0.0660599,0.146063,0.0653446,0.933797,0.378984,0.298733,0.245746,0.741978,0.781033,0.804025,0.964339,0.496902,0.8538,0.214499,0.459523,0.725385,0.490988,0.586479,0.637603,0.752469,0.551637,0.0740035,0.712382,0.329707,0.526189,0.345354,0.853499,0.72204,0.679899,0.15856,0.0756928,0.766608,0.805171,0.323264,0.854594,0.858452,0.227471,0.254299,0.311571,0.236443,0.0910357,0.894017,0.297217,0.0152385,0.373869,0.464877,0.650385,0.586442,0.799643,0.300858,0.331425,0.318047,0.963241,0.547346,0.442423,0.589878,0.389334,0.0735111,0.827875,0.251704,0.448406,0.513834,0.692509,0.530989,0.610704,0.738617,0.250359,0.148917,0.779966,0.173665,0.728221,0.557329,0.455214,0.267789,0.376907,0.541661,0.0987729,0.366133,0.931993,0.88274,0.996859,0.759806,0.046465,0.225674,0.139505,0.955942,0.241298,0.767975,0.244012,0.451797,0.870846,0.690439,0.257243,0.739172,0.239234,0.421483,0.995549,0.0721058,0.265431,0.726719,0.441004,0.605104,0.0118752,0.0380825,0.145574,0.975448,0.107231,0.853453,0.909288,0.900524,0.414897,0.289694,0.189467,0.931785,0.548452,0.0127571,0.216279,0.654459,0.158853,0.318371,0.993618,0.406795,0.664051,0.162948,0.99374,0.393838,0.0759121,0.15087,0.241371,0.280311,0.252876,0.252551,0.350092,0.588584,0.167848,0.753466,0.368872,0.729889,0.96197,0.727793,0.643146,0.735386,0.789137,0.58303,0.109132,0.0311128,0.992034,0.342935,0.663297,0.167632,0.346441,0.842364,0.865988,0.609263,0.002581,0.598855,0.385711,0.620336,0.032325,0.704639,0.685718,0.885888,0.793009,0.0181425,0.662039,0.26907,0.981637,0.107184,0.166607,0.648975,0.266132,0.425679,0.767949,0.971037,0.986194,0.582026,0.663549,0.246197,0.686756,0.980873,0.686891,0.421332,0.366025,0.221317,0.454824,0.20342,0.0901465,0.389289,0.991403,0.247674,0.561769,0.532815,0.14395,0.565726,0.559274,0.741778,0.2414,0.583001,0.157318,0.465435,0.784634,0.450231,0.146609,0.0119312,0.0171515,0.0913931,0.346076,0.342394,0.240205,0.754292,0.245247,0.254245,0.349827,0.187922,0.0751945,0.45148,0.390458,0.37672,0.45464,0.97193,0.203901,0.289319,0.00902689,0.325479,0.357539,0.25698,0.0583412,0.731997,0.706035,0.125898,0.413243,0.152297,0.0991767,0.106727,0.613048,0.318433,0.352747,0.286271,0.415367,0.127653,0.204403,0.862073,0.101624,0.265344,0.0538856,0.826927,0.695883,0.953966,0.953726,0.942031,0.434777,0.16056,0.0150468,0.415454,0.308067,0.823256,0.473081,0.334089,0.442046,0.0844489,0.630807,0.428627,0.521579,0.618127,0.820475,0.962438,0.943171,0.500028,0.825399,0.997023,0.209778,0.444238,0.218023,0.323945,0.812747,0.871394,0.658999,0.117919,0.90626,0.455516,0.727001,0.153256,0.861465,0.51611,0.37293,0.997358,0.499787,0.616716,0.785101,0.0976611,0.00222421,0.844904,0.788974,0.97212,0.926023,0.218782,0.625283,0.94504,0.994039,0.134152,0.0985034,0.633763,0.516706,0.308405,0.376305,0.345489,0.235097,0.795753,0.628253,0.854359,0.943395,0.240246,0.139681,0.349602,0.730091,0.255029,0.320876,0.976075,0.195445,0.378827,0.638886,0.669464,0.0465623,0.23441,0.3907,0.244465,0.60799,0.135893,0.520531,0.318722,0.548969,0.31146,0.0975383,0.502979,0.566154,0.231726,0.855415,0.9901,0.0405793,0.483273,0.364184,0.309564,0.520169,0.219866,0.250632,0.122843,0.458779,0.490501,0.575071,0.863617,0.73829,0.610091,0.459905,0.0839609,0.459471,0.886393,0.887339,0.65433,0.421819,0.327794,0.924639,0.788668,0.665353,0.427643,0.574499,0.260402,0.618189,0.59792,0.838944,0.18513,0.852884,0.118802,0.874587,0.585161,0.801713,0.865593,0.940605,0.872926,0.981259,0.653753,0.108726,0.44425,0.356817,0.320583,0.373483,0.269227,0.969776,0.328491,0.60203,0.483526,0.33972,0.404069,0.775883,0.921125,0.535655,0.628187,0.456677,0.353054,0.960705,0.123409,0.197643,0.534771,0.905637,0.0284967,0.643534,0.0612327,0.376063,0.810546,0.809936,0.263182,0.676912,0.153996,0.548313,0.271553,0.943558,0.114666,0.774989,0.0127404,0.682808,0.180394,0.29271,0.635239,0.155584,0.591248,0.161781,0.0866742,0.761954,0.919684,0.126554,0.29289,0.699297,0.438628,0.205808,0.829826,0.108601,0.25361,0.907302,0.386209,0.990637,0.523364,0.0886894,0.224433,0.873664,0.466346,0.317963,0.470737,0.372394,0.288654,0.0330259,0.59698,0.68809,0.701049,0.757676,0.941554,0.746842,0.752383,0.0575239,0.926302,0.477209,0.195889,0.704247,0.345224,0.735891,0.78291,0.599297,0.614955,0.304803,0.655455,0.620175,0.048319,0.456909,0.446979,0.249192,0.355594,0.148287,0.0148625,0.996088,0.673234,0.517461,0.835442,0.281072,0.55447,0.914173,0.0010438,0.310277,0.324028,0.59902,0.402716,0.252965,0.564669,0.173054,0.767594,0.454887,0.724154,0.00613517,0.386077,0.426191,0.62777,0.553649,0.532003,0.856167,0.932012,0.84261,0.0450265,0.90611,0.939295,0.286948,0.537646,0.757747,0.266575,0.938531,0.797667,0.401214,0.186071,0.153546,0.581872,0.884844,0.993023,0.943627,0.319157,0.468201,0.407131,0.857383,0.273056,0.988685,0.657533,0.942356,0.502737,0.676389,0.825159,0.799954,0.808408,0.790222,0.788973,0.207967,0.179039,0.59137,0.00185466,0.630489,0.0370359,0.363634,0.271461,0.0607882,0.146906,0.915757,0.642312,0.452196,0.343794,0.52613,0.843041,0.299236,0.0110688,0.615543,0.19962,0.0103068,0.171229,0.81659,0.987041,0.935797,0.229011,0.771418,0.0304367,0.845613,0.786595,0.519328,0.886839,0.356052,0.00480205,0.426948,0.248318,0.674564,0.973842,0.896789,0.868802,0.16534,0.423235,0.883323,0.517996,0.579164,0.035853,0.949471,0.751953,0.894202,0.84907,0.741377,0.491003,0.740317,0.190578,0.837374,0.945171,0.824566,0.67996,0.577139,0.455129,0.136841,0.231915,0.128985,0.621168,0.440559,0.229942,0.0798091,0.154489,0.0119516,0.487647,0.100609,|0.74033,0.806804,0.20738,0.916014,0.917221,0.569167,0.245995,0.871096,0.695653,0.911551,0.217809,0.807813,0.721714,0.329973,0.21481,0.271879,0.603792,0.72159,0.898633,0.390088,0.0423349,0.941273,0.0113051,0.572701,0.636482,0.0475614,0.213314,0.13425,0.0332552,0.966214,0.203762,0.636247,0.504658,0.38877,0.276652,0.195874,0.71415,0.882805,0.824366,0.364637,0.376934,0.659568,0.258666,0.606658,0.0918036,0.395938,0.300355,0.0648713,0.139454,0.718702,0.174618,0.112656,0.90712,0.0404785,0.0627803,0.0565944,0.919666,0.740998,0.869619,0.739748,0.306133,0.325435,0.067798,0.475434,0.244921,0.813371,0.903435,0.292834,0.417823,0.954282,0.7557,0.552519,0.0603181,0.0925264,0.267632,0.996097,0.173223,0.522945,0.755374,0.412268,0.101535,0.865614,0.0377158,0.24493,0.716674,0.826081,0.731641,0.833165,0.499421,0.775168,0.194898,0.710707,0.750465,0.751061,0.493638,0.613576,0.922955,0.713805,0.226023,0.651827,0.791502,0.436999,0.682873,0.180049,0.378251,0.309613,0.223364,0.791997,0.494251,0.245033,0.0290303,0.729065,0.0647242,0.811024,0.22272,0.0167154,0.428443,0.174958,0.392178,0.0372623,0.300463,0.711821,0.334347,0.484084,0.722321,0.649825,0.629485,0.197876,0.606672,0.225266,0.259843,0.648697,0.250176,0.614368,0.241988,0.364209,0.990652,0.405113,0.426254,0.420273,0.544508,0.733864,0.210949,0.581411,0.103044,0.440876,0.137011,0.712127,0.247317,0.136895,0.127755,0.648824,0.410931,0.920926,0.938672,0.266767,0.651425,0.251623,0.201725,0.999522,0.0045768,0.552938,0.774302,0.61947,0.812362,0.682925,0.819609,0.381493,0.311163,0.360558,0.167238,0.36352,0.422197,0.206659,0.0805805,0.331701,0.735222,0.625473,0.720814,0.195929,0.142245,0.509839,0.55637,0.989239,0.215964,0.974162,0.135533,0.0660787,0.84716,0.0649792,0.983278,0.893527,0.831332,0.0307676,0.723945,0.98998,0.783853,0.946041,0.284432,0.176833,0.472633,0.546413,0.202385,0.280411,0.129969,0.0641983,0.056666,0.0262123,0.224831,0.384801,0.811514,0.268801,0.0864314,0.806935,0.358761,0.481665,0.141432,0.28194,0.221804,0.900186,0.698214,0.50276,0.346353,0.434051,0.309077,0.740813,0.805696,0.503302,0.769758,0.140525,0.330256,0.174091,0.639543,0.989231,0.235553,0.350058,0.263735,0.93143,0.198951,0.0661831,0.00123954,0.102716,0.438726,0.231627,0.712423,0.662775,0.168058,0.0519365,0.400016,0.615837,0.363673,0.416308,0.938225,0.829759,0.343262,0.126773,0.866098,0.385396,0.298864,0.485031,0.207906,0.129912,0.159774,0.360947,0.244873,0.698166,0.334944,0.224792,0.871721,0.350083,0.36959,0.142327,0.464016,0.758007,0.485319,0.49136,0.805597,0.272043,0.533563,0.826224,0.0290647,0.380668,0.856698,0.738654,0.463035,0.42759,0.813124,0.0891305,0.901663,0.209625,0.110959,0.0702281,0.928088,0.725603,0.534201,0.0799112,0.67118,0.535421,0.832423,0.113928,0.739232,0.258773,0.299677,0.688,0.257537,0.19355,0.398362,0.822971,0.696645,0.735797,0.823455,0.0556599,0.987051,0.479794,0.711245,0.971814,0.0466067,0.324627,0.175971,0.330189,0.4801,0.83829,0.6166,0.605887,0.735741,0.0338023,0.380095,0.856249,0.417172,0.915917,0.393526,0.476539,0.88368,0.567174,0.829736,0.911908,0.452546,0.63305,0.604967,0.0938316,0.481406,0.153867,0.739443,0.578084,0.372898,0.453941,0.665935,0.323096,0.914503,0.863641,0.300728,0.166283,0.285638,0.588247,0.804737,0.281393,0.447468,0.351327,0.622552,0.0538443,0.984165,0.244888,0.893056,0.115513,0.586679,0.446819,0.0532827,0.631715,0.408217,0.00449884,0.326525,0.286093,0.942948,0.777633,0.675666,0.0845191,0.331318,0.70173,0.219463,0.0852256,0.0927666,0.226859,0.764222,0.971413,0.099333,0.43369,0.0391595,0.364023,0.879564,0.696023,0.194636,0.403899,0.866752,0.450596,0.498871,0.291252,0.927735,0.0146304,0.199607,0.678786,0.923781,0.557426,0.697583,0.31258,0.657716,0.968369,0.6788,0.408235,0.932742,0.180225,0.687791,0.432353,0.310133,0.517392,0.822698,0.690562,0.571867,0.954614,0.810739,0.587478,0.546691,0.163811,0.566023,0.225782,0.613917,0.90746,0.0604779,0.0181724,0.833238,0.591047,0.733074,0.963636,0.385,0.612686,0.930562,0.231964,0.868928,0.410629,0.182607,0.877539,0.169095,0.510269,0.862108,0.958714,0.528355,0.170181,0.827403,0.952712,0.7448,0.845247,0.186345,0.818515,0.468501,0.783766,0.611283,0.584199,0.941349,0.787928,0.184244,0.690629,0.496891,0.31123,0.959355,0.37145,0.571548,0.508019,0.966468,0.815678,0.19116,0.577592,0.673135,0.157139,0.0882136,0.767347,0.629413,0.886578,0.327793,0.714086,0.224783,0.000440538,0.511546,0.483766,0.862726,0.295659,0.634319,0.745221,0.509955,0.605055,0.538358,0.264143,0.348112,0.658462,0.465729,0.498246,0.769393,0.633955,0.643512,0.0258709,0.94369,0.442812,0.846808,0.47159,0.496238,0.347594,0.144603,0.318901,0.129565,0.453399,0.741473,0.962687,0.330691,0.886651,0.517885,0.766364,0.298504,0.527365,0.704505,0.756628,0.360469,0.426466,0.641709,0.259354,0.952165,0.373544,0.555949,0.895535,0.477917,0.731304,0.0915367,0.577116,0.0693105,0.74326,0.538384,0.0968092,0.391261,0.863849,0.50774,0.857661,0.0374803,0.63023,0.424067,0.390839,0.520464,0.124536,0.114506,0.0473455,0.61781,0.788265,0.946272,0.951288,0.64659,0.0192305,0.382723,0.824736,0.414009,0.124774,0.107612,0.0558032,0.978601,0.735767,0.998227,0.731695,0.539468,0.558833,0.529219,0.205702,0.76489,0.213528,0.171469,0.233202,0.129054,0.927919,0.911667,0.279044,0.824615,0.268981,0.694392,0.103913,0.888676,0.995074,0.63754,0.745741,0.29723,0.325755,0.649809,0.868947,0.686573,0.00192136,0.476993,0.755262,0.399497,0.367727,0.796283,0.301196,0.246528,0.111869,0.773391,0.82511,0.95416,0.355018,0.409859,0.466145,0.828252,0.504922,0.647604,0.12956,0.386022,0.0332823,0.940545,0.457281,0.198647,0.0951232,0.122565,0.715862,0.521192,0.622579,0.589204,0.540618,0.694984,0.316057,0.0706517,0.0604188,0.938827,0.951118,0.455603,0.539345,0.0719841,0.953117,0.463251,0.706221,0.801937,0.704701,0.00205743,0.248348,0.62693,0.407338,0.770019,0.227384,0.899361,0.299243,0.753169,0.945057,0.21146,0.563633,4.47631e-05,0.344187,0.171902,0.585514,0.926236,0.141533,0.504265,0.268054,0.0560748,0.133738,0.121056,0.145869,0.0934367,0.326107,0.117139,0.693243,0.8654,0.374415,0.580146,0.986192,0.531031,0.317405,0.543045,0.133345,0.633379,0.180762,0.431228,0.925569,0.535647,0.677895,0.567631,0.144068,0.672454,0.320137,0.746514,0.0236389,0.961131,0.0252839,0.617283,0.381732,0.15725,0.360364,0.647655,0.15687,0.388259,0.752967,0.740393,0.60426,0.0222834,0.103877,0.724188,0.93423,0.69833,0.639007,0.987205,0.699915,0.399402,0.413553,0.935282,0.192715,0.417893,0.553191,0.337666,0.058007,0.24409,0.64754,0.0754573,0.920922,0.0428658,0.685517,0.702582,0.166511,0.491822,0.752073,0.860833,0.676291,0.131753,0.410258,0.94953,0.71494,0.964576,0.95426,0.143965,0.229724,0.0314527,0.996894,0.280895,0.384668,0.247805,0.628666,0.209296,0.500174,0.941748,0.831216,0.584926,0.739943,0.942927,0.626426,0.667113,0.269622,0.10959,0.237791,0.0420886,0.865428,0.519567,0.73288,0.605866,0.397246,0.496584,0.00375551,0.471343,0.928494,0.406646,0.667133,0.644506,0.480202,0.959638,0.324314,0.856266,0.486239,0.261112,0.298918,0.515969,0.991803,0.968338,0.155279,0.243655,0.0564589,0.990965,0.80563,0.518372,0.111023,0.860767,0.260846,0.937396,0.996359,0.616352,0.6627,0.0315253,0.840417,0.748343,0.759542,0.372659,0.723305,0.7582,0.926942,0.597551,0.960612,0.415602,0.261653,0.961194,0.620288,0.696022,0.713847,0.760802,0.617117,0.587062,0.0777129,0.330307,0.8968,0.844417,0.705719,0.127643,0.288145,0.605198,0.163273,0.414126,0.148386,0.0804719,0.174592,0.452592,0.0670224,0.113301,0.446147,0.23425,0.29936,0.574747,0.117637,0.866768,0.34135,0.676917,0.172908,0.272535,0.375165,0.909996,0.825149,0.578249,0.424688,0.265616,0.838066,0.324861,0.0927163,0.698124,0.780643,0.648842,0.0171141,0.0951446,0.541202,0.0425417,0.0568312,0.845232,0.165571,0.460949,0.980356,0.962136,0.770134,0.370331,0.113915,0.10257,0.791052,0.788386,0.929466,0.557309,0.0339218,0.442547,0.502541,0.577657,0.988206,0.817199,0.345325,0.893315,0.222329,0.947017,0.835803,0.421007,0.432249,0.743428,0.736994,0.870147,0.259261,0.254471,0.282392,0.933842,0.209948,0.192372,0.315074,0.64843,0.899411,0.415657,0.611999,0.448506,0.0700377,0.690998,0.885627,0.251483,0.165006,0.767807,0.799181,0.644362,0.877096,0.199274,0.598002,0.156612,0.673684,0.888673,0.654754,0.423094,0.01222,0.668723,0.719766,0.808378,0.691781,0.743595,0.52821,0.385149,0.163408,0.681191,0.904307,0.795612,0.968011,0.00165194,0.843939,0.542371,0.90007,0.687979,0.135608,0.820566,0.699555,0.13319,0.886031,0.954507,0.286598,0.054584,0.366551,0.92954,0.280138,0.196981,0.325027,0.605763,0.831431,0.720407,0.717128,0.865938,0.732403,0.829198,0.134792,0.799643,0.650846,0.866203,0.900206,0.897056,0.990993,0.7351,0.526326,0.171653,0.251086,0.990417,0.546484,0.515311,0.151762,0.457673,0.416766,0.632236,0.175357,0.979628,0.646277,0.731626,0.848053,0.987327,0.636419,0.806929,0.530824,0.714172,0.29899,0.740017,0.465126,0.342739,0.964702,0.735149,0.0445642,0.413662,0.0622844,0.156829,0.743506,0.251308,0.852583,0.872655,0.482562,0.587594,0.116517,0.917039,0.0745993,0.823708,0.828999,0.424893,0.743808,0.967193,0.350388,0.731633,0.691181,0.770794,0.646815,0.925485,0.994357,0.468828,0.409924,|0.143713,0.128611,0.00207847,0.543459,0.41344,0.510176,0.0362447,0.291643,0.961958,0.225109,0.912018,0.327087,0.250251,0.135643,0.0689161,0.836423,0.136384,0.0534757,0.293494,0.116183,0.884662,0.910465,0.714083,0.516956,0.389171,0.768864,0.535291,0.778696,0.173561,0.846534,0.804884,0.069164,0.155338,0.277207,0.449794,0.387096,0.462508,0.00712568,0.793536,0.948912,0.340749,0.745374,0.475141,0.343531,0.942213,0.414323,0.767094,0.172877,0.446865,0.146355,0.649363,0.892323,0.777639,0.363975,0.592743,0.699327,0.547896,0.917332,0.513378,0.0960038,0.208713,0.831843,0.529554,0.961721,0.431211,0.461596,0.978626,0.544657,0.619722,0.959214,0.212289,0.496536,0.167539,0.805205,0.962127,0.53954,0.558336,0.720103,0.0864943,0.724431,0.482813,0.312651,0.816693,0.275987,0.523165,0.717214,0.873582,0.318706,0.462088,0.608822,0.687898,0.156796,0.842397,0.762341,0.588613,0.223142,0.477986,0.386626,0.706899,0.427021,0.633154,0.0302026,0.722508,0.283337,0.0115241,0.176738,0.870937,0.370856,0.281188,0.310162,0.982518,0.92972,0.0240433,0.930268,0.656137,0.91752,0.889142,0.157636,0.255145,0.700487,0.617965,0.51166,0.498751,0.955944,0.284369,0.15754,0.504785,0.591403,0.299351,0.262037,0.0541561,0.721905,0.310457,0.444618,0.0926932,0.151919,0.449847,0.548909,0.160675,0.119574,0.054673,0.982338,0.324183,0.883434,0.947662,0.840647,0.173444,0.21445,0.585049,0.446072,0.751916,0.861285,0.0598144,0.530059,0.875342,0.673886,0.772405,0.912653,0.105719,0.649354,0.517048,0.354466,0.165831,0.332541,0.0480958,0.612312,0.935153,0.877729,0.766109,0.538435,0.458575,0.648672,0.284943,0.890888,0.508892,0.0948134,0.00320911,0.739388,0.676122,0.93581,0.468456,0.819239,0.774532,0.400563,0.245247,0.854561,0.930887,0.650254,0.413553,0.574489,0.489975,0.868714,0.572972,0.557741,0.0640678,0.229872,0.812141,0.62504,0.652792,0.56316,0.899233,0.785843,0.473281,0.130968,0.335817,0.260891,0.862491,0.821584,0.797075,0.190549,0.899876,0.410756,0.161009,0.478321,0.87793,0.259377,0.900558,0.519855,0.880155,0.833084,0.366303,0.903295,0.985083,0.0521154,0.800631,0.412677,0.316534,0.383474,0.116644,0.240147,0.550272,0.279937,0.0112134,0.723775,0.36721,0.234914,0.292253,0.383852,0.555833,0.131797,0.723039,0.958173,0.0289457,0.486697,0.379747,0.634725,0.434327,0.917133,0.5366,0.91187,0.121949,0.767993,0.0376869,0.915786,0.623629,0.278611,0.701498,0.617497,0.337444,0.249684,0.202261,0.665558,0.56632,0.697261,0.916742,0.173683,0.286276,0.780443,0.966712,0.916641,0.454419,0.487279,0.427698,0.803537,0.66919,0.908461,0.0261185,0.927445,0.103746,0.830926,0.571831,0.119718,0.831537,0.059635,0.21282,0.1081,0.34995,0.442543,0.108473,0.0236513,0.642789,0.854372,0.00875252,0.50209,0.371721,0.59908,0.608434,0.740032,0.186454,0.80295,0.64725,0.928967,0.332749,0.247303,0.739764,0.529506,0.636856,0.473286,0.171592,0.978769,0.0888245,0.625727,0.566698,0.0162545,0.554666,0.533203,0.274258,0.409516,0.0464028,0.210577,0.712542,0.541734,0.98862,0.0942442,0.0264022,0.856185,0.280073,0.884001,0.780398,0.814405,0.878083,0.902163,0.0988135,0.581264,0.532103,0.571236,0.891185,0.604499,0.986259,0.19231,0.618619,0.244744,0.790548,0.74286,0.818306,0.232932,0.453077,0.839722,0.600284,0.735293,0.689493,0.278262,0.629373,0.0293807,0.568033,0.659056,0.777135,0.129233,0.0195309,0.170912,0.522143,0.147632,0.128347,0.902656,0.430464,0.906031,0.264712,0.66758,0.0785312,0.277488,0.943363,0.969449,0.855341,0.896859,0.731361,0.620414,0.182106,0.42315,0.66248,0.939031,0.264916,0.198996,0.627255,0.388693,0.400898,0.313223,0.293566,0.236551,0.129623,0.763777,0.176366,0.632792,0.197313,0.0795907,0.612564,0.73537,0.288462,0.475611,0.177419,0.965814,0.954877,0.874915,0.604748,0.10077,0.65742,0.619552,0.582166,0.0318794,0.634577,0.8589,0.412919,0.335556,0.962393,0.637851,0.579946,0.821415,0.749378,0.786187,0.838592,0.907038,0.473285,0.49087,0.558882,0.227057,0.969734,0.838916,0.561305,0.971321,0.667857,0.702577,0.199364,0.30336,0.723485,0.21094,0.920625,0.4523,0.128095,0.413911,0.751838,0.801413,0.322508,0.237962,0.0380965,0.948758,0.359129,0.528443,0.2663,0.328061,0.54599,0.727839,0.58573,0.518393,0.538565,0.37864,0.993321,0.499666,0.580536,0.440672,0.811105,0.100564,0.714525,0.584036,0.0171244,0.494709,0.557342,0.0634553,0.614293,0.994763,0.692246,0.143763,0.425271,0.0197365,0.707027,0.102156,0.764127,0.550916,0.950947,0.895909,0.940121,0.631573,0.930812,0.183991,0.119897,0.0438516,0.506548,0.600925,0.861369,0.404512,0.435709,0.530155,0.0923141,0.808727,0.467437,0.9107,0.58518,0.705199,0.562016,0.394151,0.588908,0.523257,0.214341,0.61494,0.606389,0.601436,0.641932,0.537914,0.892772,0.148854,0.916806,0.0720652,0.331256,0.680996,0.826598,0.731117,0.11504,0.960961,0.546239,0.86039,0.745885,0.82741,0.965033,0.954605,0.0182344,0.906615,0.0964135,0.485982,0.892465,0.401814,0.878735,0.513284,0.967774,0.219977,0.245342,0.19842,0.0789294,0.91278,0.27291,0.586809,0.831249,0.939889,0.377644,0.136914,0.248476,0.0259058,0.178824,0.109475,0.642375,0.457989,0.721726,0.913172,0.844382,0.797383,0.534556,0.493014,0.862068,0.226661,0.0542943,0.479357,0.854997,0.748392,0.514068,0.188603,0.430974,0.543871,0.151149,0.722923,0.69015,0.984448,0.616533,0.644855,0.318135,0.00421768,0.885053,0.758147,0.554875,0.564871,0.0579655,0.528751,0.217606,0.631052,0.872074,0.37401,0.336421,0.235348,0.678935,0.48108,0.165627,0.341456,0.785558,0.0332664,0.297855,0.478218,0.507915,0.684084,0.432755,0.457087,0.489111,0.562975,0.437367,0.305427,0.407571,0.805077,0.647469,0.124723,0.389079,0.642724,0.810547,0.651481,0.816284,0.104967,0.143687,0.111083,0.0377283,0.490877,0.343889,0.432585,0.0135781,0.999103,0.89023,0.416585,0.814435,0.331232,0.391838,0.97207,0.36733,0.407709,0.713676,0.89766,0.293717,0.918408,0.717779,0.629284,0.984836,0.58233,0.888984,0.460245,0.321962,0.417704,0.000898838,0.811167,0.658226,0.701416,0.606107,0.047196,0.235039,0.45699,0.260224,0.422972,0.39963,0.205268,0.324863,0.56166,0.242354,0.0259385,0.982934,0.566291,0.0326594,0.859083,0.0210744,0.503192,0.516643,0.694886,0.311248,0.480942,0.298575,0.567473,0.845766,0.722408,0.981423,0.0800827,0.112726,0.565681,0.213552,0.721877,0.342521,0.893221,0.54298,0.107054,0.847794,0.24426,0.221079,0.851768,0.749773,0.611835,0.0990845,0.0161633,0.582507,0.832818,0.613686,0.0569924,0.793723,0.474422,0.799478,0.330185,0.633519,0.773036,0.566727,0.473261,0.0360588,0.150505,0.465263,0.222728,0.774495,0.363573,0.998712,0.0902197,0.701697,0.92349,0.498038,0.728183,0.229305,0.744972,0.366545,0.860742,0.0285687,0.0247144,0.227141,0.015083,0.0225945,0.311668,0.858747,0.604426,0.0768303,0.873308,0.844186,0.858525,0.410766,0.871571,0.186045,0.484131,0.109313,0.780734,0.397831,0.0143372,0.301677,0.817017,0.333892,0.355652,0.0759739,0.322154,0.376702,0.565072,0.989046,0.755879,0.211799,0.68075,0.514709,0.300939,0.45362,0.686016,0.168032,0.552724,0.288984,0.703818,0.81916,0.810221,0.579812,0.647324,0.616294,0.955997,0.755008,0.646714,0.0624717,0.209591,0.386192,0.422735,0.927273,0.663076,0.845839,0.956167,0.00277299,0.993527,0.268223,0.797561,0.190837,0.0225941,0.567352,0.329292,0.819973,0.852822,0.511843,0.469958,0.5704,0.4094,0.0209751,0.973281,0.709361,0.250604,0.521893,0.629831,0.439342,0.783006,0.870812,0.204558,0.969468,0.0527155,0.191705,0.301405,0.342767,0.973253,0.248954,0.89185,0.759983,0.707232,0.665306,0.106659,0.402271,0.489256,0.572627,0.710139,0.211307,0.874506,0.438714,0.566281,0.0791209,0.510821,0.853585,0.719078,0.922053,0.52513,0.709657,0.0763547,0.424092,0.335801,0.794716,0.973198,0.733473,0.801727,0.773887,0.621397,0.304113,0.436756,0.763159,0.749231,0.637803,0.0457045,0.936752,0.337292,0.312581,0.515884,0.986908,0.7789,0.0623925,0.609619,0.149429,0.898901,0.378095,0.160963,0.966817,0.260781,0.78255,0.507278,0.525786,0.0827843,0.0202644,0.584459,0.353151,0.359347,0.585753,0.438577,0.962774,0.0655031,0.955157,0.801588,0.576627,0.0993591,0.967914,0.682309,0.429665,0.171569,0.418651,0.758723,0.876349,0.78098,0.0201827,0.0809721,0.327869,0.831785,0.232053,0.944148,0.107677,0.520516,0.896006,0.47928,0.123932,0.178501,0.873849,0.182104,0.980345,0.752478,0.255048,0.549919,0.333229,0.966425,0.934947,0.162732,0.692628,0.0938329,0.0648739,0.0115115,0.937643,0.873323,0.633656,0.865425,0.42962,0.423211,0.170843,0.17854,0.877395,0.559532,0.97769,0.773168,0.989654,0.299468,0.261426,0.937858,0.368219,0.325884,0.0499049,0.159702,0.471572,0.000781953,0.347066,0.266742,0.243902,0.0919328,0.711586,0.475906,0.843094,0.0680329,0.660999,0.891888,0.407033,0.477049,0.0185385,0.989656,0.771502,0.81103,0.280846,0.971533,0.462297,0.273694,0.620458,0.679403,0.645964,0.803154,0.142421,0.288324,0.0738335,0.0744154,0.873035,0.99578,0.576461,0.649864,0.365395,0.721068,0.58846,0.273202,0.505774,0.890569,0.556583,0.557154,0.591938,0.979039,0.841231,0.171922,0.316039,0.309013,0.276286,0.771749,0.682352,0.144523,0.124505,0.756167,0.483126,0.453671,0.379394,0.267782,0.0990475,0.209386,0.99963,0.125629,0.0877877,0.494515,0.8379,0.940949,0.721265,0.915451,0.602236,0.843195,0.17745,0.620635,0.634496,0.272878,0.113331,0.997115,0.200579,0.268525,0.265475,0.204043,|0.485217,0.127982,0.90034,0.41214,0.896811,0.486297,0.672835,0.685037,0.0363065,0.607935,0.388028,0.404916,0.0157641,0.502135,0.486995,0.982651,0.973062,0.347437,0.40327,0.453413,0.940417,0.750802,0.437142,0.440728,0.154916,0.838655,0.309507,0.862577,0.361061,0.35555,0.568255,0.783612,0.162215,0.732308,0.125578,0.232881,0.462223,0.271205,0.273287,0.837154,0.525527,0.772768,0.916688,0.492527,0.783101,0.057085,0.162529,0.196659,0.71348,0.0325899,0.530392,0.398814,0.530042,0.92509,0.550102,0.79572,0.502278,0.150484,0.284456,0.0728018,0.396143,0.707482,0.184009,0.242139,0.53607,0.915106,0.200887,0.861295,0.915806,0.977526,0.440344,0.383679,0.9146,0.844431,0.714566,0.918661,0.542287,0.722996,0.0568514,0.428306,0.257209,0.0442992,0.888416,0.538379,0.535919,0.801589,0.696789,0.425943,0.521564,0.573214,0.104544,0.00559294,0.209184,0.372775,0.787647,0.0751356,0.929565,0.949209,0.442371,0.432546,0.94734,0.740998,0.672305,0.0473992,0.787557,0.273234,0.0723589,0.83237,0.531677,0.350455,0.429923,0.392984,0.814074,0.0618634,0.427077,0.901632,0.270796,0.366584,0.692518,0.655072,0.0549047,0.589519,0.116561,0.142898,0.359569,0.724366,0.980168,0.833575,0.0329548,0.184129,0.469471,0.649594,0.523294,0.169751,0.218835,0.451618,0.61849,0.519319,0.333397,0.849712,0.599773,0.672499,0.187825,0.937312,0.96856,0.806033,0.952956,0.578858,0.559757,0.208824,0.955892,0.665693,0.352007,0.909071,0.681251,0.701059,0.0815776,0.158086,0.0179793,0.486068,0.21309,0.312211,0.89011,0.637359,0.329744,0.425482,0.942224,0.267053,0.695487,0.678973,0.544076,0.712406,0.849952,0.801579,0.930525,0.166541,0.0231252,0.484449,0.190816,0.412052,0.492088,0.46755,0.50715,0.030637,0.98499,0.390916,0.91378,0.196823,0.727681,0.248427,0.559126,0.842956,0.676948,0.861049,0.51117,0.824457,0.4553,0.0930439,0.0196983,0.384971,0.912725,0.996668,0.38776,0.604212,0.684547,0.0426556,0.103887,0.988348,0.985499,0.246379,0.140696,0.870696,0.922669,0.941634,0.670537,0.133372,0.421982,0.630985,0.815643,0.534014,0.748483,0.598923,0.258685,0.747242,0.450552,0.702704,0.928858,0.659179,0.0565118,0.491146,0.804967,0.258435,0.714555,0.292463,0.870555,0.93719,0.706483,0.0239199,0.265387,0.995762,0.75329,0.289009,0.173835,0.590007,0.0827104,0.313516,0.772809,0.676051,0.524317,0.458454,0.35781,0.0467405,0.219619,0.510657,0.349258,0.305808,0.720302,0.982695,0.755023,0.562516,0.148977,0.458435,0.194546,0.326477,0.366259,0.207892,0.730314,0.85593,0.70281,0.591061,0.510147,0.367069,0.677238,0.419229,0.880014,0.357645,0.576146,0.296283,0.280299,0.590999,0.744646,0.0387089,0.648369,0.332477,0.0184981,0.690685,0.20348,0.771154,0.675924,0.0107925,0.70679,0.176712,0.792383,0.245621,0.47428,0.930222,0.549884,0.75948,0.910548,0.0651695,0.0475045,0.806942,0.584549,0.703817,0.15598,0.355479,0.723366,0.830353,0.915286,0.812489,0.569052,0.62738,0.546867,0.707093,0.64282,0.756754,0.634831,0.657196,0.640158,0.621401,0.127228,0.980031,0.667555,0.373605,0.648941,0.693785,0.841933,0.477424,0.562948,0.678762,0.795672,0.130339,0.993517,0.72534,0.736685,0.444096,0.810542,0.458042,0.624343,0.316202,0.341719,0.686531,0.831686,0.480474,0.423225,0.163669,0.412492,0.313203,0.271686,0.818275,0.559497,0.941075,0.823785,0.119301,0.0906889,0.0531554,0.52673,0.385962,0.958577,0.981221,0.439246,0.968855,0.336312,0.940745,0.857329,0.711365,0.470149,0.285074,0.868937,0.0763795,0.794532,0.863978,0.743583,0.45434,0.0214955,0.45328,0.484058,0.286485,0.335724,0.222561,0.759643,0.717653,0.360618,0.00920731,0.718883,0.856421,0.740027,0.580891,0.55752,0.786956,0.452631,0.76461,0.041005,0.294996,0.385796,0.414532,0.89002,0.514562,0.700894,0.332239,0.616834,0.313372,0.385645,0.547944,0.620152,0.641861,0.9683,0.9331,0.455271,0.579289,0.69333,0.260244,0.703063,0.0317954,0.0100509,0.0935844,0.348661,0.563312,0.561285,0.025731,0.873457,0.0488485,0.257426,0.949992,0.100811,0.247823,0.598386,0.737169,0.274239,0.494548,0.60133,0.699921,0.759554,0.436206,0.000322104,0.408289,0.169239,0.485295,0.215827,0.246053,0.057137,0.687969,0.780158,0.0382355,0.29918,0.0589083,0.534561,0.395367,0.0356125,0.0273212,0.146729,0.889798,0.285241,0.608966,0.558044,0.619854,0.244492,0.20003,0.506911,0.703747,0.243718,0.0908853,0.0404372,0.120669,0.536041,0.919144,0.363437,0.115275,0.83686,0.465723,0.791789,0.380527,0.170468,0.996458,0.912597,0.939735,0.655394,0.310948,0.910461,0.382418,0.866379,0.0729226,0.782295,0.0908881,0.0331362,0.424679,0.714319,0.602339,0.587439,0.978345,0.0704646,0.471059,0.419755,0.281037,0.105223,0.381677,0.304189,0.192428,0.89111,0.437173,0.0209986,0.63524,0.44859,0.563803,0.538871,0.569779,0.917387,0.175042,0.592615,0.837578,0.360083,0.902023,0.101718,0.775405,0.916838,0.298881,0.579903,0.656673,0.226779,0.89077,0.372943,0.843218,0.194899,0.0769191,0.89383,0.627521,0.133163,0.133801,0.798579,0.376342,0.0117111,0.762882,0.494342,0.117576,0.404974,0.733344,0.445652,0.0076921,0.972483,0.0342908,0.377401,0.842277,0.690894,0.843204,0.548252,0.395534,0.0137051,0.194032,0.38696,0.438406,0.812179,0.686528,0.181348,0.0198435,0.634551,0.55906,0.957202,0.60893,0.236658,0.0886146,0.911059,0.886799,0.165866,0.702223,0.706569,0.174609,0.705942,0.366618,0.304875,0.612063,0.201242,0.967511,0.945796,0.442635,0.450545,0.77766,0.250216,0.313882,0.282614,0.706121,0.430544,0.040744,0.989411,0.997999,0.781677,0.425581,0.285485,0.452156,0.346695,0.251507,0.731713,0.063086,0.397444,0.91378,0.934175,0.88163,0.140166,0.0246889,0.185829,0.793637,0.333659,0.333194,0.154317,0.218557,0.559278,0.926823,0.223475,0.613296,0.27645,0.767912,0.48557,0.876067,0.77997,0.524471,0.16465,0.640188,0.379399,0.0905343,0.815872,0.578921,0.218319,0.407008,0.768448,0.544872,0.519936,0.461318,0.275735,0.455186,0.65869,0.195885,0.781407,0.593176,0.396879,0.41218,0.291998,0.930752,0.878217,0.265871,0.0397025,0.764214,0.585518,0.40764,0.936041,0.80517,0.461052,0.409141,0.222716,0.946934,0.599454,0.691114,0.809667,0.414053,0.861997,0.11079,0.348138,0.973809,0.575792,0.968931,0.872675,0.620719,0.0212002,0.476464,0.0410711,0.853499,0.294128,0.526951,0.981936,0.565555,0.157522,0.85564,0.605019,0.0728515,0.871573,0.186993,0.967351,0.782044,0.99215,0.153351,0.694293,0.405392,0.61502,0.725208,0.554477,0.279734,0.327342,0.821369,0.0587573,0.919011,0.881485,0.324808,0.638815,0.219712,0.938834,0.845174,0.211403,0.406889,0.824036,0.234646,0.313732,0.414946,0.751572,0.246339,0.216294,0.0823606,0.242388,0.76536,0.19239,0.874424,0.361936,0.751391,0.927357,0.505146,0.299353,0.251577,0.427476,0.929708,0.443625,0.401789,0.184546,0.661439,0.318084,0.925909,0.820812,0.256043,0.27676,0.580684,0.374671,0.885086,0.993329,0.498114,0.672165,0.957633,0.000231445,0.92513,0.156807,0.287224,0.18085,0.901911,0.992746,0.161937,0.850588,0.0601729,0.118976,0.818948,0.068721,0.539049,0.557449,0.70937,0.824494,0.18849,0.592645,0.535666,0.154819,0.0280709,0.68692,0.826824,0.688042,0.443295,0.667272,0.10387,0.445362,0.785478,0.053973,0.278054,0.948852,0.662904,0.856952,0.246841,0.617518,0.139798,0.779372,0.383566,0.949796,0.104841,0.417882,0.455304,0.415348,0.464565,0.415843,0.650229,0.550924,0.281957,0.870304,0.763311,0.345095,0.222586,0.348372,0.222805,0.244248,0.0154406,0.32504,0.424067,0.61945,0.977715,0.523303,0.0182874,0.98441,0.171201,0.715732,0.364461,0.240597,0.715039,0.409564,0.859833,0.00707024,0.751783,0.748905,0.44107,0.72162,0.0823987,0.0689355,0.971509,0.855587,0.00189525,0.0178446,0.949355,0.457215,0.415743,0.275152,0.480781,0.051744,0.701396,0.0731091,0.230041,0.777871,0.990279,0.197378,0.682703,0.419949,0.777256,0.793289,0.82318,0.634087,0.748494,0.493426,0.928215,0.738178,0.317569,0.383652,0.0397276,0.384636,0.847896,0.186479,0.951904,0.744014,0.0982172,0.82725,0.634302,0.785013,0.0911922,0.910729,0.738205,0.996602,0.350769,0.257207,0.822043,0.129141,0.769307,0.0969256,0.0161787,0.102222,0.628078,0.217936,0.31763,0.61374,0.719669,0.244102,0.795093,0.606567,0.351939,0.373028,0.342558,0.807865,0.967799,0.225055,0.886334,0.993643,0.884814,0.71523,0.590541,0.825387,0.226124,0.299887,0.315474,0.351435,0.924381,0.733885,0.280943,0.768926,0.390992,0.709463,0.580363,0.082873,0.251161,0.590537,0.645723,0.112515,0.774522,0.110451,0.782808,0.844671,0.359877,0.3451,0.21658,0.294863,0.0685025,0.0882825,0.261271,0.320896,0.967107,0.676304,0.0716287,0.882851,0.30144,0.990277,0.598434,0.271772,0.571097,0.231593,0.339554,0.649743,0.89705,0.635473,0.487879,0.312542,0.132335,0.85937,0.819092,0.401358,0.171185,0.188126,0.357692,0.476685,0.677184,0.765697,0.722082,0.104518,0.959108,0.635981,0.785971,0.248825,0.647801,0.201792,0.198454,0.21321,0.333835,0.769042,0.509145,0.78694,0.789987,0.164252,0.210491,0.500234,0.933656,0.0833544,0.0213262,0.502779,0.237732,0.010254,0.139871,0.462526,0.324164,0.185199,0.608221,0.603382,0.0281858,0.0673877,0.712809,0.936229,0.203779,0.739693,0.745297,0.700488,0.307524,0.806511,0.0584759,0.0140322,0.833699,0.422395,0.629792,0.0303625,0.429241,0.276093,0.362931,0.567173,0.964924,0.580868,0.495392,0.115773,0.44619,0.957333,0.514424,0.547344,0.870704,0.849556,0.83221,0.182965,0.606024,0.54596,0.753998,|0.894472,0.266795,0.804034,0.26439,0.427826,0.373528,0.21485,0.848619,0.875495,0.386735,0.0075199,0.910075,0.1168,0.387653,0.649187,0.544204,0.810662,0.767943,0.914213,0.188933,0.100536,0.288852,0.0646764,0.582816,0.864533,0.81619,0.000175416,0.180974,0.977239,0.390694,0.169363,0.955766,0.481663,0.653899,0.275276,0.053974,0.357717,0.688194,0.1005,0.202834,0.176077,0.869561,0.0444396,0.716341,0.97724,0.0590937,0.230902,0.839696,0.377034,0.990568,0.168416,0.255003,0.953982,0.154064,0.248965,0.164405,0.409532,0.92531,0.667182,0.0531477,0.124067,0.750088,0.464104,0.126544,0.930229,0.660104,0.228025,0.345779,0.18403,0.649533,0.191097,0.863102,0.249085,0.0791861,0.481161,0.424889,0.209732,0.264041,0.864922,0.41312,0.91586,0.843576,0.72848,0.050245,0.984654,0.837172,0.145595,0.326637,0.240172,0.436761,0.902255,0.130779,0.91025,0.434035,0.0933567,0.857863,0.440041,0.049279,0.471403,0.335227,0.750295,0.734367,0.391513,0.937148,0.379487,0.600024,0.926449,0.603216,0.890163,0.54444,0.952317,0.237876,0.561891,0.115699,0.646001,0.475781,0.0197759,0.511609,0.270859,0.382309,0.534212,0.82795,0.982855,0.647736,0.892796,0.0854251,0.296021,0.926081,0.541244,0.144539,0.782586,0.665742,0.948787,0.73221,0.150559,0.883891,0.260048,0.0774539,0.0519928,0.156677,0.593239,0.535284,0.36545,0.653884,0.582268,0.636985,0.401509,0.163573,0.899868,0.347378,0.675737,0.575992,0.117706,0.503147,0.143203,0.947092,0.220963,0.936139,0.444849,0.53286,0.170871,0.188024,0.984065,0.0631795,0.85807,0.618896,0.195056,0.703367,0.687784,0.928521,0.190255,0.640473,0.623806,0.563301,0.70035,0.0774018,0.0998778,0.370402,0.468689,0.572173,0.228934,0.455951,0.660364,0.232785,0.361059,0.797048,0.0774947,0.846599,0.162073,0.463086,0.966411,0.627122,0.92626,0.0618395,0.967128,0.16175,0.0969715,0.575051,0.754151,0.890221,0.571101,0.614893,0.321293,0.050888,0.247006,0.177499,0.540898,0.162109,0.926249,0.713217,0.0598291,0.168368,0.201821,0.520648,0.785811,0.599227,0.00709224,0.581032,0.342797,0.912837,0.897657,0.007029,0.252632,0.84979,0.80745,0.322439,0.364923,0.0456848,0.0955842,0.804112,0.644595,0.0368396,0.506494,0.394141,0.717201,0.0888985,0.861742,0.282419,0.0502616,0.442252,0.330974,0.920328,0.742239,0.181792,0.663031,0.128732,0.594887,0.0949017,0.478016,0.211205,0.52456,0.470477,0.0612746,0.681031,0.924967,0.0164003,0.0939071,0.063902,0.778992,0.132786,0.875224,0.197597,0.0693247,0.901658,0.944501,0.519094,0.308601,0.502657,0.0312564,0.458978,0.0783532,0.193638,0.660771,0.125568,0.66227,0.176121,0.985636,0.556205,0.672856,0.722229,0.55028,0.927386,0.525693,0.212423,0.0582951,0.227099,0.783905,0.779804,0.267542,0.653264,0.635977,0.794803,0.706268,0.903955,0.43214,0.458853,0.705998,0.0937845,0.257361,0.233825,0.531696,0.815483,0.0592241,0.376568,0.56851,0.197049,0.0384516,0.458413,0.401143,0.336891,0.935477,0.770303,0.407036,0.854226,0.342055,0.461242,0.591106,0.206413,0.592854,0.800263,0.598262,0.761949,0.328207,0.357039,0.271146,0.763124,0.670981,0.576102,0.722462,0.812736,0.190039,0.88619,0.26821,0.639334,0.7954,0.0592372,0.0115859,0.787126,0.919317,0.965045,0.698268,0.597352,0.410762,0.303121,0.919333,0.804623,0.79991,0.510847,0.237801,0.00652963,0.260521,0.540167,0.242077,0.831818,0.254489,0.416373,0.79435,0.717964,0.159173,0.283413,0.501928,0.880576,0.338201,0.961917,0.456349,0.223468,0.285403,0.115363,0.78787,0.851976,0.425672,0.274494,0.974306,0.497064,0.179002,0.327491,0.428659,0.164041,0.202965,0.102648,0.203544,0.970515,0.382004,0.156009,0.942366,0.246631,0.519511,0.202866,0.6221,0.275103,0.868935,0.606236,0.985509,0.873978,0.73247,0.540449,0.0790289,0.514884,0.591219,0.416381,0.0216279,0.189838,0.85449,0.336631,0.758318,0.703485,0.280264,0.274407,0.78196,0.384169,0.711982,0.854266,0.314958,0.589938,0.309583,0.0150577,0.555055,0.779997,0.646861,0.552609,0.296177,0.978655,0.0622708,0.345801,0.0805656,0.499438,0.7978,0.0306548,0.181991,0.0512648,0.875012,0.423233,0.120808,0.424737,0.874316,0.0960948,0.890444,0.628407,0.0120444,0.685555,0.966742,0.0122365,0.382487,0.829188,0.54529,0.71053,0.764993,0.441608,0.317217,0.460359,0.912674,0.573039,0.633564,0.112255,0.568787,0.56542,0.586938,0.613494,0.347105,0.204139,0.607103,0.695444,0.369035,0.421212,0.914804,0.425185,0.756985,0.780047,0.487895,0.786178,0.689382,0.863758,0.535731,0.759075,0.229588,0.606203,0.700333,0.644274,0.643141,0.540552,0.29184,0.939177,0.0736515,0.111691,0.661046,0.708763,0.343659,0.574611,0.167857,0.322243,0.521735,0.260986,0.420285,0.87947,0.814017,0.113133,0.323748,0.452656,0.637518,0.982172,0.104774,0.485674,0.224351,0.13577,0.74033,0.415799,0.607564,0.0738072,0.655103,0.669544,0.50381,0.675251,0.441648,0.298099,0.875062,0.436027,0.103658,0.185236,0.835469,0.854435,0.723249,0.336991,0.147287,0.994883,0.0539384,0.883308,0.252374,0.076,0.780198,0.517809,0.423908,0.929123,0.260133,0.657522,0.160634,0.669607,0.750914,0.348087,0.0106156,0.980989,0.994926,0.0161766,0.627278,0.209154,0.744402,0.400853,0.271378,0.726706,0.26827,0.209437,0.0560822,0.241871,0.763679,0.810332,0.579997,0.0802462,0.934516,0.342882,0.372885,0.674655,0.393662,0.121053,0.820274,0.0937929,0.366044,0.818518,0.734884,0.985759,0.0872138,0.857746,0.757396,0.0945269,0.754364,0.872705,0.34525,0.815917,0.062923,0.0284839,0.319689,0.517412,0.681716,0.34472,0.103011,0.623922,0.882139,0.0188536,0.238187,0.0473173,0.219151,0.946917,0.265288,0.923172,0.38605,0.136412,0.697434,0.853921,0.0226407,0.863262,0.481172,0.115418,0.876932,0.746672,0.340947,0.747332,0.471787,0.843652,0.290202,0.159312,0.635912,0.318207,0.0441123,0.0350175,0.667268,0.782802,0.666847,0.315926,0.154851,0.312552,0.42795,0.585415,0.593532,0.326413,0.153328,0.341961,0.386949,0.0296391,0.270212,0.373484,0.442955,0.282048,0.465055,0.84428,0.462326,0.161532,0.676157,0.633806,0.242738,0.850116,0.814001,0.691527,0.905074,0.364789,0.17635,0.986845,0.589806,0.886864,0.561728,0.0322599,0.714581,0.270054,0.386952,0.221522,0.700699,0.524131,0.178099,0.319768,0.571539,0.486205,0.624512,0.313009,0.721121,0.872042,0.892949,0.162295,0.559312,0.789215,0.459645,0.340334,0.669877,0.730195,0.80273,0.337586,0.0585645,0.640334,0.0861264,0.416183,0.910891,0.939676,0.470729,0.167903,0.601812,0.656243,0.074605,0.573284,0.651221,0.921055,0.723811,0.554288,0.102364,0.396032,0.15351,0.514979,0.236758,0.271505,0.995882,0.13083,0.654935,0.145793,0.0772748,0.738358,0.0539108,0.0435615,0.50445,0.882792,0.127418,0.413679,0.848688,0.257717,0.271269,0.559617,0.0967938,0.466668,0.186072,0.653516,0.0674824,0.968855,0.92019,0.683013,0.494015,0.710534,0.537126,0.669247,0.570568,0.187066,0.281937,0.501926,0.0440418,0.552581,0.816198,0.979576,0.887594,0.849977,0.495678,0.735938,0.950444,0.810317,0.499502,0.593124,0.66304,0.431602,0.482716,0.321593,0.056809,0.15683,0.636293,0.287581,0.973429,0.744025,0.0404175,0.135492,0.0340739,0.0952196,0.243325,0.0774056,0.497495,0.0984048,0.639309,0.143036,0.792471,0.343277,0.546241,0.192575,0.240764,0.0225069,0.689733,0.790462,0.206422,0.978966,0.545836,0.898046,0.550178,0.882984,0.291242,0.20385,0.379413,0.782618,0.749547,0.0343435,0.708515,0.271801,0.147178,0.533812,0.158998,0.938606,0.03302,0.949717,0.688019,0.638155,0.56644,0.0627785,0.354771,0.0186541,0.315618,0.247281,0.488075,0.972308,0.310246,0.515071,0.317837,0.829897,0.309668,0.105622,0.494338,0.478439,0.42258,0.251927,0.569628,0.104044,0.222907,0.285299,0.812089,0.552333,0.156844,0.283479,0.272978,0.919007,0.947981,0.839852,0.914319,0.434831,0.188603,0.429476,0.578364,0.192723,0.684513,0.335648,0.087341,0.424002,0.465512,0.495563,0.816561,0.375347,0.604394,0.472639,0.559141,0.236967,0.726764,0.533464,0.800388,0.630629,0.644196,0.386504,0.894217,0.556594,0.578923,0.0460938,0.824556,0.915233,0.318463,0.485016,0.116525,0.575773,0.64014,0.233342,0.908934,0.580559,0.186329,0.538194,0.887168,0.0256217,0.890527,0.564804,0.407198,0.821019,0.502613,0.533331,0.31367,0.830161,0.124842,0.623908,0.873671,0.35308,0.398366,0.461421,0.267739,0.784909,0.498118,0.544088,0.619572,0.586072,0.565539,0.74847,0.44199,0.725074,0.242167,0.565938,0.381745,0.0690872,0.655267,0.405685,0.245052,0.873151,0.724959,0.359127,0.255612,0.349225,0.36311,0.797234,0.631263,0.846475,0.746212,0.304358,0.296037,0.243358,0.506247,0.239618,0.771827,0.975738,0.149732,0.902899,0.350607,0.359316,0.304131,0.229048,0.580639,0.933742,0.9257,0.650401,0.104236,0.307377,0.435297,0.855857,0.354386,0.955095,0.265594,0.87379,0.112457,0.296211,0.728686,0.677505,0.465258,0.705788,0.397926,0.690242,0.548782,0.210964,0.246738,0.218847,0.326559,0.620917,0.199389,0.636022,0.130713,0.332388,0.841066,0.380298,0.454332,0.0393561,0.0108334,0.549716,0.792423,0.69133,0.623061,0.205544,0.0371095,0.965904,0.963701,0.974043,0.943363,0.156102,0.0243809,0.841444,0.134325,0.560139,0.0648786,0.764795,0.634838,0.0933074,0.837805,0.941926,0.73601,0.300683,0.478292,0.849721,0.554162,0.81648,0.0898253,0.678568,0.873797,0.673938,0.0886043,0.277852,0.855663,0.437927,0.55987,0.100976,0.582682,0.156708,0.707564,0.672236,0.627378,0.666962,0.895916,0.394628,0.379377,0.212344,0.964483,0.513595,0.494076,0.297303,|0.600922,0.554177,0.78219,0.108107,0.292714,0.514044,0.324724,0.322115,0.614567,0.453565,0.196721,0.455324,0.0564173,0.684241,0.137356,0.227217,0.576403,0.0344658,0.685444,0.814335,0.743411,0.135629,0.569761,0.166122,0.464746,0.152847,0.154047,0.324039,0.823615,0.427321,0.156492,0.197654,0.44584,0.166975,0.503142,0.844868,0.0194719,0.081296,0.470969,0.431797,0.821997,0.479196,0.932174,0.947112,0.445199,0.0782374,0.130601,0.74776,0.834517,0.12257,0.975728,0.788521,0.66365,0.12704,0.990009,0.0848495,0.597832,0.382137,0.353545,0.13017,0.90072,0.490649,0.886565,0.482703,0.0342897,0.404419,0.488989,0.609134,0.602726,0.0101257,0.863741,0.941897,0.617166,0.890379,0.67519,0.251807,0.0512988,0.150928,0.749376,0.636419,0.166016,0.176703,0.496869,0.660298,0.227239,0.0346739,0.698346,0.228335,0.447009,0.691977,0.743059,0.109449,0.806206,0.706904,0.241703,0.611532,0.535951,0.876463,0.565603,0.833061,0.914897,0.657462,0.82358,0.501929,0.687377,0.041958,0.339173,0.0793551,0.946211,0.0253226,0.131709,0.297151,0.676217,0.899791,0.562361,0.733989,0.516329,0.0618834,0.0466948,0.79037,0.785614,0.264807,0.283478,0.655663,0.115062,0.769639,0.0597106,0.692929,0.508292,0.448081,0.641186,0.961969,0.779552,0.523598,0.388153,0.301462,0.510283,0.846956,0.192521,0.503237,0.33627,0.733253,0.304876,0.0980228,0.383102,0.990811,0.757605,0.228106,0.620416,0.658078,0.703611,0.268655,0.203887,0.523971,0.810748,0.372493,0.435757,0.851948,0.310333,0.473452,0.365983,0.53137,0.506403,0.136603,0.224406,0.0556414,0.301477,0.774483,0.921003,0.265673,0.321127,0.345351,0.913574,0.477045,0.810141,0.0173289,0.395613,0.457347,0.858433,0.48729,0.278043,0.537482,0.0521135,0.494926,0.413988,0.291444,0.575754,0.897334,0.398265,0.556251,0.959891,0.465282,0.304761,0.484745,0.886122,0.281415,0.247981,0.551951,0.66283,0.0814833,0.623667,0.162766,0.0108458,0.339934,0.126326,0.744217,0.617461,0.972293,0.249206,0.415026,0.982961,0.498135,0.643102,0.812495,0.443985,0.655731,0.0629145,0.00943476,0.260872,0.489159,0.308164,0.0665689,0.722105,0.284845,0.0211635,0.726568,0.87036,0.788895,0.532549,0.00237954,0.461451,0.267176,0.905721,0.574889,0.372197,0.043479,0.802248,0.119259,0.783851,0.366708,0.631522,0.543677,0.370781,0.138707,0.962594,0.0637138,0.0467938,0.60263,0.511373,0.933557,0.925781,0.83393,0.728842,0.270616,0.221875,0.887066,0.241104,0.172327,0.305619,0.539322,0.754896,0.846609,0.0495941,0.481034,0.267859,0.42144,0.387729,0.304498,0.469077,0.64012,0.0943898,0.306146,0.377186,0.393639,0.603581,0.419616,0.508831,0.192182,0.0737897,0.46803,0.267892,0.577833,0.377309,0.519855,0.557973,0.453458,0.394475,0.299936,0.287026,0.535103,0.228236,0.938994,0.970609,0.384802,0.354072,0.994049,0.74258,0.869115,0.482614,0.74749,0.0891865,0.466005,0.818264,0.104008,0.304452,0.0905724,0.879708,0.669714,0.0811518,0.0654968,0.0592679,0.695379,0.453526,0.847579,0.65831,0.534432,0.142462,0.210057,0.327656,0.901062,0.660273,0.0280799,0.953134,0.343691,0.280321,0.130931,0.754313,0.257393,0.143208,0.541095,0.559701,0.541539,0.978139,0.341377,0.43841,0.558104,0.481436,0.424606,0.563306,0.418868,0.661866,0.965034,0.370382,0.298478,0.0221859,0.892763,0.729199,0.666035,0.39881,0.131067,0.351126,0.38044,0.709024,0.485763,0.863348,0.915939,0.78118,0.512579,0.5501,0.55474,0.924447,0.319095,0.520551,0.159906,0.974265,0.750382,0.235029,0.874819,0.0492232,0.614698,0.292826,0.0462337,0.363183,0.845328,0.441288,0.416135,0.910858,0.267892,0.382025,0.44972,0.625707,0.979985,0.0165042,0.396884,0.479936,0.131426,0.975241,0.483829,0.137559,0.294117,0.623267,0.553951,0.180288,0.119605,0.651506,0.441241,0.611081,0.725753,0.398707,0.971527,0.77727,0.000672042,0.336364,0.333498,0.474865,0.929227,0.675184,0.379454,0.413181,0.772111,0.107426,0.672246,0.0672495,0.993986,0.645705,0.134054,0.240391,0.0140421,0.994379,0.0212703,0.298251,0.0911725,0.478926,0.854036,0.0750232,0.65751,0.39499,0.923883,0.076978,0.0306685,0.475747,0.802388,0.869146,0.372569,0.24218,0.898098,0.605253,0.64738,0.45101,0.139949,0.959647,0.409439,0.152325,0.7987,0.67232,0.915493,0.403854,0.540056,0.595615,0.112559,0.225043,0.159654,0.0587578,0.483894,0.808723,0.0383724,0.252888,0.945106,0.389323,0.736983,0.427774,0.135163,0.622444,0.392655,0.678918,0.348264,0.723297,0.464064,0.375383,0.177372,0.378137,0.316935,0.777182,0.112886,0.937457,0.642122,0.798393,0.467181,0.782709,0.197818,0.903367,0.714319,0.623818,0.211157,0.606923,0.681653,0.532028,0.121276,0.822449,0.20188,0.59626,0.822411,0.936649,0.197708,0.579092,0.738879,0.828206,0.366051,0.741797,0.552261,0.600973,0.212625,0.3495,0.548687,0.998006,0.248613,0.611746,0.430393,0.0242956,0.013513,0.444104,0.108377,0.18406,0.701913,0.809628,0.375349,0.605698,0.817987,0.23237,0.956922,0.0402555,0.870835,0.381132,0.636167,0.864822,0.24286,0.297303,0.875287,0.761269,0.569633,0.858387,0.922865,0.581803,0.53257,0.00907779,0.659782,0.372939,0.374991,0.818339,0.519456,0.0734656,0.0744102,0.301261,0.265534,0.180322,0.523401,0.573065,0.169329,0.282374,0.732434,0.177991,0.4514,0.4262,0.961589,0.596356,0.990872,0.963606,0.485594,0.920482,0.637997,0.557072,0.180976,0.520841,0.00297445,0.358854,0.273934,0.991401,0.921147,0.7539,0.728408,0.628377,0.595221,0.828713,0.0208939,0.742624,0.777817,0.0912518,0.644356,0.267068,0.089843,0.150867,0.280266,0.225811,0.197813,0.560884,0.0285704,0.0799137,0.372331,0.342719,0.258333,0.935751,0.318261,0.471855,0.409612,0.714529,0.840253,0.22576,0.15332,0.31197,0.853574,0.703404,0.672879,0.971009,0.100271,0.483357,0.462367,0.75116,0.531545,0.048791,0.859666,0.754685,0.357455,0.694758,0.748545,0.933895,0.891384,0.635513,0.245685,0.413554,0.460617,0.114235,0.0480115,0.701693,0.524481,0.153265,0.126181,0.23861,0.254575,0.202637,0.282989,0.68387,0.131458,0.782651,0.952983,0.360465,0.0373594,0.285359,0.925662,0.258354,0.940353,0.147178,0.636211,0.68381,0.951236,0.469381,0.925519,0.988754,0.068683,0.899624,0.592406,0.39938,0.846055,0.773557,0.233517,0.885491,0.995566,0.931484,0.507594,0.190683,0.359661,0.476647,0.564644,0.542697,0.692638,0.70758,0.354355,0.67826,0.900777,0.13021,0.443284,0.901694,0.985809,0.782659,0.994523,0.311007,0.0972384,0.887097,0.989429,0.783397,0.407301,0.803899,0.135725,0.67663,0.766389,0.574516,0.583595,0.913728,0.932858,0.570687,0.531396,0.539007,0.444901,0.35947,0.0316702,0.487462,0.253156,0.542316,0.94346,0.583386,0.75033,0.461572,0.337763,0.970781,0.923142,0.0612098,0.795827,0.998535,0.993939,0.065234,0.47876,0.825268,0.698342,0.264242,0.980539,0.480265,0.825083,0.910802,0.520453,0.193759,0.67777,0.835441,0.39179,0.804669,0.714646,0.196977,0.622663,0.917993,0.477351,0.106245,0.712805,0.52989,0.612311,0.394362,0.476205,0.918086,0.000393569,0.758139,0.408701,0.000495493,0.765253,0.280896,0.58935,0.950149,0.357065,0.763673,0.143383,0.420857,0.401829,0.795386,0.186586,0.458313,0.644455,0.185659,0.42374,0.242938,0.0447882,0.958415,0.768017,0.0192816,0.161509,0.142271,0.562334,0.33517,0.183137,0.649581,0.229097,0.781107,0.479022,0.600532,0.97875,0.820512,0.701725,0.578023,0.463628,0.194908,0.662061,0.780912,0.521278,0.930647,0.255253,0.309059,0.173352,0.300043,0.696789,0.46322,0.278987,0.168086,0.509046,0.976826,0.632433,0.947234,0.707781,0.763501,0.652844,0.416358,0.870501,0.801159,0.0189574,0.929166,0.475647,0.0582825,0.861236,0.596606,0.894232,0.920049,0.306444,0.547524,0.808411,0.740045,0.691279,0.126995,0.0724931,0.69909,0.256256,0.241504,0.217727,0.297482,0.948228,0.657461,0.0963098,0.72079,0.832684,0.129586,0.135745,0.503566,0.175565,0.545973,0.614059,0.254791,0.679544,0.131704,0.258207,0.921873,0.300173,0.639741,0.900415,0.539574,0.576434,0.18085,0.261386,0.121101,0.892734,0.807705,0.919712,0.0910631,0.259745,0.636075,0.142065,0.163383,0.944011,0.405505,0.281826,0.267441,0.557119,0.183938,0.976624,0.610058,0.451459,0.311476,0.972112,0.64497,0.741594,0.169451,0.302487,0.325008,0.781386,0.519648,0.00891745,0.12704,0.235489,0.997766,0.840272,0.489747,0.0950855,0.622316,0.136068,0.864902,0.874943,0.65376,0.0813482,0.724125,0.0487188,0.701527,0.815947,0.212191,0.628311,0.584782,0.907756,0.779584,0.654541,0.624023,0.633584,0.879223,0.1628,0.284014,0.324591,0.252094,0.565147,0.268546,0.679713,0.597945,0.759362,0.788352,0.58852,0.860825,0.573498,0.807245,0.522725,0.86925,0.955669,0.914197,0.127341,0.569077,0.463786,0.979678,0.306422,0.8416,0.955431,0.181726,0.0243685,0.96893,0.678395,0.342417,0.642232,0.0666568,0.866094,0.350486,0.622409,0.324344,0.398394,0.358526,0.921292,0.68073,0.30025,0.925292,0.294681,0.328082,0.85781,0.606838,0.810051,0.081637,0.167234,0.136813,0.25439,0.867606,0.197277,0.0674996,0.264385,0.917912,0.191584,0.266967,0.776303,0.600813,0.228314,0.32432,0.104849,0.982045,0.34578,0.385399,0.261533,0.632482,0.0795641,0.774417,0.271448,0.348803,0.201486,0.0603193,0.380779,0.420887,0.659277,0.143517,0.396572,0.0942308,0.753793,0.950393,0.309295,0.722528,0.798281,0.280904,0.486688,0.785143,0.462242,0.486557,0.455346,0.578911,0.276484,0.53303,0.307399,0.238462,0.465892,0.222481,0.362617,0.933012,0.574503,0.550049,0.0232115,0.883238,0.284734,0.624097,0.888729,|0.782189,0.754132,0.944188,0.834628,0.990399,0.050217,0.390382,0.579222,0.289855,0.256102,0.188867,0.163654,0.380993,0.313543,0.660429,0.150548,0.434745,0.461987,0.675072,0.464342,0.306575,0.455077,0.278354,0.0634809,0.677062,0.970021,0.709654,0.378432,0.69052,0.539397,0.0231227,0.319374,0.257735,0.949342,0.859334,0.955889,0.0765392,0.117815,0.55793,0.384963,0.640734,0.483182,0.883133,0.800298,0.150429,0.778822,0.582455,0.775386,0.335972,0.742568,0.96398,0.591802,0.835371,0.0491387,0.805545,0.228322,0.671391,0.753057,0.792901,0.129715,0.895033,0.514863,0.549718,0.724571,0.925569,0.00695795,0.225185,0.387536,0.918477,0.384602,0.41875,0.430471,0.634095,0.360509,0.0331945,0.780694,0.313062,0.362579,0.150761,0.734948,0.0625117,0.924686,0.0559704,0.697611,0.545301,0.536086,0.258388,0.138817,0.185344,0.19675,0.528473,0.21791,0.766755,0.496607,0.741111,0.0714723,0.0594636,0.501838,0.158989,0.516022,0.547992,0.882498,0.15505,0.43471,0.848204,0.703552,0.857847,0.543999,0.423441,0.999143,0.22807,0.398435,0.774505,0.794407,0.0542153,0.354554,0.772244,0.480133,0.620627,0.167547,0.218087,0.406464,0.156375,0.696427,0.656922,0.687856,0.53309,0.27704,0.246357,0.313112,0.205198,0.348625,0.782139,0.112609,0.833665,0.848662,0.818327,0.933184,0.505973,0.812109,0.624825,0.480678,0.63886,0.845338,0.776815,0.219908,0.975318,0.248528,0.0733203,0.822853,0.0903788,0.247289,0.321771,0.594851,0.940396,0.063597,0.00542992,0.316798,0.97673,0.496631,0.394185,0.364774,0.0862135,0.851123,0.54404,0.136514,0.618359,0.27603,0.102779,0.66392,0.183313,0.909374,0.134434,0.285254,0.271873,0.569366,0.457963,0.450699,0.339468,0.014127,0.223214,0.273512,0.650223,0.55653,0.364086,0.862094,0.119618,0.214146,0.483088,0.18019,0.945948,0.265648,0.39552,0.442078,0.40101,0.137037,0.472305,0.582546,0.74504,0.844436,0.65485,0.773403,0.996487,0.384353,0.0953238,0.964763,0.324837,0.118924,0.294674,0.768917,0.00630164,0.567126,0.423318,0.774279,0.0373811,0.925487,0.726771,0.241202,0.356794,0.490696,0.312891,0.429025,0.1596,0.601146,0.396845,0.361865,0.621525,0.511468,0.112407,0.859187,0.14787,0.543159,0.171463,0.214258,0.80292,0.0639245,0.360933,0.673458,0.939105,0.467397,0.0402243,0.46637,0.732553,0.42303,0.0741664,0.760527,0.617181,0.689623,0.30516,0.879932,0.39045,0.997783,0.790196,0.905808,0.359209,0.980141,0.706971,0.607694,0.545733,0.63228,0.187114,0.186889,0.492032,0.0773662,0.712177,0.707489,0.649026,0.293068,0.0398866,0.490461,0.804445,0.131196,0.678807,0.706825,0.690455,0.405725,0.911328,0.763002,0.241369,0.0308951,0.367516,0.21373,0.791058,0.0440174,0.470455,0.091221,0.164385,0.221483,0.266433,0.318913,0.186384,0.164708,0.129049,0.54516,0.441508,0.396108,0.234533,0.431569,0.617639,0.185609,0.42478,0.150894,0.966533,0.361464,0.545011,0.611389,0.993486,0.517459,0.11249,0.968836,0.678837,0.569319,0.515065,0.636311,0.366354,0.974212,0.934264,0.0864682,0.121888,0.0217495,0.180005,0.420923,0.741613,0.702292,0.121601,0.342879,0.972391,0.14488,0.867009,0.799684,0.85838,0.597215,0.144874,0.99353,0.698631,0.785108,0.0980648,0.145989,0.636926,0.622556,0.577811,0.50183,0.143675,0.781702,0.588671,0.298644,0.14644,0.776482,0.480432,0.142998,0.945284,0.509051,0.434554,0.37931,0.965511,0.0836924,0.189807,0.774194,0.467704,0.480814,0.289685,0.149533,0.513273,0.998146,0.508845,0.880831,0.166865,0.00441712,0.591691,0.680469,0.717324,0.332,0.624527,0.329228,0.224693,0.266283,0.111358,0.234239,0.987976,0.467728,0.202326,0.805874,0.28481,0.0239438,0.997128,0.243776,0.0262156,0.937731,0.545244,0.726953,0.913298,0.457224,0.412319,0.738023,0.113169,0.116678,0.463898,0.176637,0.203652,0.378662,0.522165,0.522208,0.475592,0.0711881,0.00646389,0.184182,0.437285,0.00204635,0.530007,0.0790831,0.798743,0.64866,0.16263,0.275935,0.83151,0.51442,0.0828002,0.0636763,0.0192196,0.0967624,0.779092,0.799788,0.739711,0.879537,0.418013,0.677215,0.316512,0.125062,0.621504,0.419672,0.699979,0.840978,0.589574,0.803155,0.165307,0.14616,0.304981,0.953888,0.241086,0.136785,0.441297,0.0578977,0.258101,0.762593,0.248218,0.838515,0.994239,0.127691,0.380943,0.562668,0.417756,0.395658,0.956687,0.707978,0.313614,0.918796,0.37848,0.417206,0.867718,0.614903,0.800105,0.889726,0.604404,0.642688,0.633655,0.119572,0.34997,0.225711,0.793832,0.854904,0.0583043,0.132053,0.868602,0.794028,0.999119,0.685918,0.103121,0.667327,0.903143,0.784348,0.621827,0.807817,0.578624,0.521405,0.337731,0.820463,0.32709,0.703289,0.818913,0.787038,0.179864,0.50581,0.430297,0.809349,0.902438,0.496739,0.553377,0.261683,0.108172,0.737803,0.581597,0.314645,0.742279,0.673858,0.927595,0.187098,0.449431,0.11005,0.00990897,0.0380072,0.959785,0.159302,0.288372,0.505046,0.473817,0.284913,0.667744,0.503697,0.320011,0.267157,0.761723,0.527706,0.0333864,0.0708389,0.368732,0.0353094,0.309254,0.551085,0.62909,0.798943,0.780604,0.586712,0.160846,0.551703,0.797496,0.673767,0.138513,0.140546,0.270826,0.433684,0.0326768,0.761309,0.0872459,0.301545,0.387956,0.322887,0.542033,0.244514,0.627536,0.0539435,0.107892,0.233034,0.380944,0.688852,0.779836,0.128838,0.236209,0.424736,0.917202,0.543068,0.867568,0.526643,0.0766118,0.0714101,0.294377,0.234433,0.12326,0.838473,0.250896,0.398908,0.184442,0.0558677,0.325163,0.0911298,0.0455245,0.113746,0.659772,0.667461,0.684379,0.694233,0.652945,0.36901,0.651446,0.608888,0.792887,0.381092,0.530627,0.0893643,0.419329,0.167958,0.23662,0.610896,0.896836,0.243601,0.174213,0.231879,0.510972,0.0555165,0.782615,0.690944,0.942132,0.0128348,0.520196,0.552555,0.361536,0.28876,0.717859,0.535923,0.508583,0.391279,0.564003,0.852705,0.889868,0.57802,0.413429,0.746289,0.295611,0.42187,0.853049,0.758893,0.725905,0.220588,0.574787,0.802044,0.491035,0.811561,0.612159,0.178977,0.0288432,0.694423,0.171104,0.482326,0.539051,0.337315,0.330624,0.223822,0.680773,0.0692571,0.0890685,0.798407,0.587784,0.327458,0.601031,0.190231,0.0836589,0.572694,0.00735539,0.403714,0.46579,0.379866,0.849486,0.720473,0.855872,0.151379,0.854259,0.488833,0.547826,0.364323,0.0532708,0.990818,0.867543,0.610171,0.846014,0.4311,0.487458,0.242731,0.941129,0.605793,0.0583764,0.10862,0.655756,0.528816,0.313653,0.826629,0.287665,0.322807,0.155021,0.727399,0.666636,0.688026,0.957415,0.614367,0.425671,0.180309,0.836239,0.0244887,0.657762,0.162665,0.56965,0.84914,0.904461,0.242041,0.17178,0.0251321,0.397974,0.483461,0.421932,0.0385742,0.537771,0.876979,0.316394,0.397579,0.0140201,0.0852724,0.560027,0.683779,0.0103599,0.094824,0.544245,0.466382,0.960958,0.82604,0.885746,0.905398,0.78804,0.718621,0.226092,0.334853,0.849564,0.735652,0.450486,0.320079,0.25238,0.966922,0.743436,0.292368,0.822772,0.465473,0.706969,0.243263,0.133514,0.621839,0.720081,0.474785,0.611497,0.256335,0.835315,0.99829,0.294786,0.597298,0.165594,0.184078,0.0444752,0.754975,0.273829,0.0674379,0.851265,0.55765,0.933304,0.118464,0.567736,0.0586934,0.313841,0.45328,0.048042,0.794249,0.358753,0.947242,0.418802,0.148359,0.260052,0.162453,0.24685,0.0811979,0.858071,0.091369,0.342435,0.816567,0.536616,0.66289,0.0784004,0.599911,0.0973682,0.0158272,0.794791,0.343955,0.720729,0.793248,0.743847,0.184192,0.441921,0.295007,0.787553,0.756746,0.44269,0.219995,0.286964,0.946411,0.331583,0.887012,0.792748,0.907783,0.941297,0.279629,0.335203,0.0759876,0.429122,0.00428039,0.537502,0.505335,0.497106,0.327235,0.672113,0.17398,0.465421,0.308442,0.307076,0.331636,0.81994,0.329008,0.0659307,0.717058,0.938309,0.146273,0.355317,0.962355,0.952632,0.393224,0.878071,0.891153,0.641163,0.610414,0.201701,0.883148,0.633395,0.871872,0.32837,0.689455,0.644423,0.766023,0.0304402,0.573268,0.636397,0.602113,0.848161,0.858032,0.776164,0.209407,0.0149633,0.248563,0.867063,0.181833,0.981344,0.284342,0.128121,0.0174546,0.0179382,0.515283,0.87422,0.417493,0.708029,0.366454,0.576877,0.87249,0.0169287,0.956589,0.80362,0.628728,0.0555578,0.654418,0.0234659,0.653698,0.430921,0.937243,0.915216,0.980419,0.885118,0.802743,0.936802,0.813582,0.0236678,0.8028,0.463947,0.28808,0.275409,0.386643,0.938724,0.730861,0.61629,0.26793,0.180231,0.802728,0.92687,0.135428,0.00706452,0.308506,0.891022,0.370217,0.061649,0.825939,0.552803,0.443499,0.156609,0.191234,0.160436,0.52087,0.322179,0.972203,0.0618496,0.162749,0.311583,0.313207,0.443682,0.324317,0.571757,0.734506,0.0763702,0.139728,0.335189,0.325242,0.0354602,0.26727,0.784406,0.0380571,0.852136,0.761074,0.926676,0.673902,0.0587883,0.916027,0.609187,0.561275,0.356845,0.431263,0.525203,0.606976,0.555473,0.180286,0.617108,0.611349,0.737704,0.0181172,0.577092,0.519554,0.390161,0.897082,0.141664,0.686086,0.77716,0.520162,0.304424,0.577578,0.238773,0.737445,0.879006,0.653839,0.562395,0.566093,0.766325,0.997541,0.210413,0.650755,0.141879,0.168608,0.479451,0.393179,0.456947,0.15927,0.324435,0.231582,0.254716,0.851867,0.431828,0.324776,0.736631,0.363156,0.253195,0.380129,0.195724,0.339785,0.783841,0.949861,0.415371,0.8458,0.512938,0.596467,0.718075,0.753679,0.0156602,0.888933,0.0727112,0.615428,0.167534,0.0751079,0.397261,0.832828,0.213348,0.702816,0.900151,0.749574,0.438382,0.541482,0.176572,0.392375,0.155434,0.220134,0.0311403,0.644523,0.795263,0.32844,|0.121398,0.969836,0.759854,0.686666,0.576937,0.539293,0.431658,0.928301,0.0434608,0.816253,0.292278,0.650512,0.905283,0.181711,0.314176,0.59358,0.895108,0.778014,0.792632,0.633796,0.867896,0.467962,0.577056,0.542304,0.88961,0.966607,0.890619,0.0742953,0.346283,0.392476,0.455068,0.279824,0.534658,0.21872,0.367469,0.310446,0.702369,0.257493,0.926396,0.828437,0.867211,0.185493,0.595354,0.887477,0.217337,0.529331,0.468835,0.738579,0.0623903,0.366715,0.297683,0.700834,0.690345,0.339127,0.188688,0.900705,0.952431,0.576913,0.378989,0.125879,0.421382,0.773888,0.410292,0.131402,0.885754,0.340617,0.801517,0.0926614,0.265018,0.831592,0.559641,0.960129,0.449516,0.830871,0.219822,0.777636,0.43002,0.594191,0.752745,0.177083,0.968968,0.400995,0.0756937,0.450702,0.908367,0.80403,0.806151,0.997053,0.620361,0.0289423,0.825224,0.583215,0.349868,0.893479,0.917147,0.970581,0.497373,0.431882,0.231891,0.526887,0.995373,0.57396,0.69566,0.653272,0.233955,0.2413,0.741532,0.617814,0.87918,0.420735,0.180091,0.320588,0.336526,0.804356,0.72256,0.342687,0.130728,0.597279,0.403786,0.314826,0.477307,0.0597088,0.397649,0.746569,0.0243868,0.491003,0.540784,0.491367,0.733272,0.922359,0.124238,0.161643,0.283009,0.382966,0.939559,0.601536,0.946871,0.657234,0.93193,0.606483,0.0121375,0.634376,0.278545,0.828207,0.229924,0.726975,0.0109526,0.0938987,0.917409,0.696921,0.232384,0.147301,0.371019,0.775054,0.0279912,0.511111,0.287271,0.628773,0.23641,0.759776,0.387468,0.604251,0.0903345,0.100142,0.805728,0.884328,0.788231,0.427612,0.131905,0.0681405,0.0652876,0.783318,0.334131,0.194263,0.514167,0.107507,0.361883,0.833934,0.559876,0.470279,0.752264,0.272214,0.761098,0.768742,0.312424,0.871809,0.18315,0.757254,0.884257,0.384993,0.978175,0.988054,0.592128,0.826676,0.926048,0.928656,0.131064,0.946144,0.382084,0.653754,0.665903,0.15897,0.561546,0.271238,0.898935,0.55966,0.664568,0.336897,0.751374,0.676822,0.678372,0.426984,0.0137078,0.933119,0.70389,0.267509,0.761312,0.962363,0.0958602,0.53373,0.158844,0.466975,0.0801824,0.152124,0.90966,0.0144676,0.355054,0.963064,0.492394,0.96591,0.639234,0.106624,0.516917,0.641624,0.596747,0.392101,0.158922,0.530516,0.815463,0.64724,0.26797,0.990058,0.856256,0.760098,0.592147,0.554164,0.791008,0.250778,0.142712,0.126801,0.760995,0.592224,0.816772,0.119625,0.469681,0.0337673,0.364878,0.741467,0.556807,0.464484,0.247994,0.357146,0.84815,0.32089,0.119473,0.829021,0.530366,0.634902,0.218685,0.123489,0.557753,0.99738,0.743936,0.351233,0.685172,0.949763,0.395565,0.0107848,0.935751,0.147446,0.495978,0.0957004,0.992144,0.172643,0.21988,0.967058,0.109093,0.447151,0.26834,0.0374855,0.13617,0.576796,0.763033,0.362807,0.906096,0.328014,0.604434,0.751038,0.580048,0.0806072,0.660725,0.173804,0.746385,0.410165,0.789687,0.961249,0.196637,0.145694,0.994514,0.882237,0.0385106,0.458098,0.867929,0.40282,0.371234,0.800238,0.488233,0.523353,0.41863,0.429382,0.316397,0.109885,0.341958,0.157607,0.746634,0.738572,0.966791,0.655342,0.604543,0.36336,0.400089,0.820932,0.186307,0.768285,0.994152,0.943468,0.594288,0.740828,0.698272,0.87206,0.0302345,0.807321,0.120473,0.446463,0.604365,0.469621,0.261767,0.999155,0.797248,0.881264,0.555134,0.0139934,0.971994,0.424776,0.63466,0.116101,0.135305,0.999408,0.540543,0.261794,0.662426,0.26127,0.79502,0.273432,0.545968,0.479008,0.856123,0.268487,0.152644,0.304487,0.580019,0.398221,0.0865648,0.064813,0.0199281,0.837588,0.337996,0.698593,0.898059,0.97015,0.249374,0.91685,0.273129,0.892553,0.53496,0.97131,0.76031,0.691644,0.155347,0.35791,0.472452,0.475178,0.170718,0.0100991,0.753888,0.63688,0.884362,0.808535,0.26679,0.250998,0.311607,0.497288,0.424943,0.960518,0.715194,0.998896,0.631479,0.121228,0.733001,0.591689,0.637734,0.781272,0.517789,0.171035,0.793461,0.463045,0.0229121,0.902403,0.873527,0.00877589,0.692676,0.459255,0.617343,0.859847,0.799055,0.402739,0.738007,0.211369,0.943981,0.528455,0.505083,0.762899,0.780436,0.0856655,0.679699,0.390731,0.731966,0.999174,0.940872,0.765594,0.992954,0.124351,0.291384,0.508131,0.807247,0.843068,0.876144,0.00756109,0.45439,0.921733,0.237172,0.454219,0.98665,0.113734,0.601424,0.691659,0.758811,0.696702,0.928437,0.269792,0.221402,0.74061,0.623121,0.58167,0.784853,0.649048,0.473535,0.452145,0.671256,0.985122,0.53537,0.503001,0.817802,0.902922,0.0236792,0.851703,0.397807,0.146626,0.852604,0.933972,0.655169,0.349231,0.366832,0.345247,0.901074,0.0765694,0.622539,0.295826,0.524228,0.0123256,0.381398,0.0717984,0.104705,0.823731,0.535241,0.944715,0.337193,0.59928,0.684102,0.971282,0.0668986,0.0821795,0.363215,0.272818,0.837098,0.917028,0.758113,0.296282,0.889394,0.355483,0.93873,0.117367,0.799496,0.278803,0.751199,0.588569,0.748037,0.944672,0.910504,0.758979,0.866383,0.753884,0.762092,0.388448,0.0167483,0.690444,0.598075,0.320867,0.454218,0.915746,0.767295,0.699264,0.357109,0.257988,0.892931,0.856317,0.243946,0.755137,0.0637938,0.501867,0.245742,0.897973,0.190211,0.725409,0.455988,0.904904,0.817424,0.332956,0.393741,0.575405,0.14836,0.818919,0.706353,0.40991,0.863222,0.76569,0.205175,0.490874,0.39871,0.756555,0.261539,0.504468,0.697203,0.194397,0.962412,0.113462,0.920454,0.584877,0.614626,0.0069018,0.421718,0.424697,0.460822,0.95718,0.956214,0.316895,0.550449,0.122751,0.419347,0.526346,0.332898,0.206264,0.414984,0.740942,0.703539,0.0185844,0.19209,0.65163,0.155899,0.544466,0.960379,0.63049,0.268975,0.0183718,0.249438,0.391918,0.216884,0.583936,0.927162,0.625727,0.341624,0.580709,0.322963,0.795502,0.825369,0.925071,0.971608,0.589743,0.618937,0.0697057,0.0194757,0.974842,0.745513,0.37894,0.940322,0.700373,0.49863,0.188188,0.666679,0.330777,0.123587,0.880835,0.982519,0.110663,0.693048,0.439358,0.908108,0.733987,0.0424921,0.741627,0.85314,0.593091,0.0923288,0.189102,0.4082,0.884947,0.250554,0.42788,0.342525,0.620783,0.483193,0.583608,0.632618,0.896985,0.851544,0.154992,0.922542,0.212678,0.58339,0.955342,0.311864,0.770191,0.454983,0.0296735,0.0773187,0.772974,0.800514,0.173275,0.968508,0.799245,0.326574,0.508241,0.44041,0.785199,0.732517,0.00374562,0.229453,0.15017,0.95186,0.591672,0.526225,0.153447,0.984049,0.471213,0.145486,0.660604,0.262794,0.146123,0.0421866,0.195682,0.992198,0.0378451,0.193786,0.9891,0.515991,0.547423,0.641703,0.924733,0.229542,0.977806,0.24396,0.0618185,0.0142505,0.671806,0.0357203,0.253848,0.287608,0.112538,0.769825,0.654953,0.0883558,0.250971,0.222355,0.374918,0.407957,0.220789,0.316679,0.712044,0.0829453,0.646632,0.104278,0.150728,0.366748,0.317888,0.305239,0.48867,0.569629,0.516061,0.431039,0.891711,0.965122,0.778077,0.780649,0.0049246,0.750333,0.318927,0.908529,0.0906709,0.1195,0.84162,0.622237,0.512178,0.463021,0.374665,0.289267,0.42344,0.172209,0.745398,0.213616,0.890172,0.685839,0.839641,0.186703,0.837276,0.723891,0.162769,0.992043,0.680257,0.614925,0.997096,0.932957,0.231058,0.793238,0.886681,0.0221326,0.484099,0.287867,0.831046,0.0746369,0.483634,0.441604,0.74748,0.670453,0.163579,0.440546,0.999582,0.517521,0.523927,0.44013,0.256237,0.0997649,0.169075,0.352908,0.1171,0.879604,0.337848,0.847995,0.377141,0.360164,0.652025,0.752329,0.487598,0.509098,0.707725,0.460232,0.098573,0.972481,0.3743,0.0889159,0.469715,0.658624,0.567224,0.0193597,0.987602,0.119787,0.167657,0.284316,0.650107,0.891977,0.171014,0.918233,0.457307,0.933197,0.939819,0.659141,0.348371,0.535009,0.941857,0.00201213,0.836826,0.217516,0.38085,0.957651,0.48719,0.837637,0.410411,0.134628,0.125899,0.301851,0.00723332,0.732757,0.94309,0.0330889,0.762888,0.904389,0.935213,0.441038,0.128806,0.245659,0.0716086,0.241863,0.504156,0.0505414,0.968586,0.857103,0.899877,0.271111,0.998207,0.930376,0.428237,0.612248,0.876158,0.32024,0.618916,0.262438,0.442553,0.203809,0.695532,0.0786037,0.567628,0.902051,0.200351,0.471181,0.558583,0.665694,0.669949,0.538789,0.495824,0.938678,0.50436,0.791883,0.390763,0.513552,0.532197,0.564523,0.46802,0.417101,0.823451,0.436199,0.150216,0.482347,0.54536,0.880759,0.690814,0.9115,0.842669,0.345018,0.867852,0.89547,0.34476,0.228475,0.532234,0.0734876,0.313814,0.99853,0.092134,0.816377,0.320999,0.598153,0.813744,0.229171,0.833025,0.138415,0.0945631,0.154721,0.266861,0.56686,0.890631,0.851913,0.432604,0.203996,0.380507,0.482617,0.0820426,0.577032,0.938235,0.824711,0.802142,0.213911,0.715413,0.118296,0.275585,0.538093,0.112593,0.646417,0.014266,0.509313,0.20374,0.409795,0.433015,0.20524,0.946929,0.416373,0.653402,0.244991,0.674357,0.954043,0.212507,0.49854,0.850335,0.132656,0.832795,0.176484,0.708458,0.377581,0.61337,0.662296,0.514124,0.634737,0.940488,0.353319,0.636219,0.686307,0.0158347,0.884422,0.900573,0.4111,0.453897,0.251407,0.0376154,0.155678,0.0636461,0.556487,0.978964,0.0789912,0.612457,0.0204781,0.360121,0.265762,0.413951,0.450243,0.00640625,0.0227558,0.891629,0.0236694,0.208082,0.623094,0.101251,0.555004,0.94602,0.00837934,0.303073,0.997295,0.219087,0.389873,0.362848,0.114893,0.895426,0.0917758,0.712495,0.90312,0.341766,0.00868082,0.244749,0.156741,0.654349,0.258663,0.131031,0.690124,0.705836,0.213834,0.127111,0.50255,0.376663,0.209556,0.883024,0.344972,0.363278,0.260035,0.635328,|0.0591947,0.90655,0.698961,0.479473,0.0221975,0.461433,0.543167,0.441139,0.926032,0.702147,0.813955,0.690019,0.0138085,0.600899,0.884136,0.654732,0.263108,0.51017,0.736989,0.430271,0.948462,0.817162,0.231915,0.309657,0.00107741,0.831199,0.804237,0.764819,0.0740151,0.604976,0.971541,0.149899,0.904868,0.661627,0.127107,0.510006,0.797754,0.491604,0.575342,0.472405,0.164303,0.755871,0.991585,0.867597,0.830276,0.542852,0.364291,0.738193,0.187274,0.0294347,0.196522,0.885294,0.761456,0.474291,0.341039,0.187387,0.86685,0.850017,0.439179,0.916192,0.326205,0.697943,0.0719337,0.0521194,0.513781,0.673878,0.356893,0.40695,0.479393,0.840679,0.0634543,0.91801,0.094717,0.194278,0.723995,0.277049,0.228187,0.34571,0.922272,0.757052,0.952445,0.940586,0.289341,0.180736,0.595836,0.489199,0.694104,0.922902,0.903116,0.40575,0.928257,0.213397,0.922422,0.0101452,0.396448,0.459954,0.698544,0.72281,0.632257,0.0943838,0.613404,0.83906,0.442172,0.70225,0.402551,0.212082,0.676645,0.503565,0.900391,0.945849,0.612743,0.687128,0.800596,0.790489,0.170865,0.250145,0.027435,0.782444,0.39061,0.427717,0.200742,0.44808,0.419609,0.213618,0.566885,0.286307,0.737982,0.119344,0.34071,0.924199,0.98976,0.127186,0.853001,0.39176,0.079097,0.738817,0.983261,0.161721,0.569844,0.645694,0.0842216,0.680661,0.497925,0.100948,0.17721,0.0586519,0.107814,0.341526,0.248577,0.280007,0.378602,0.311221,0.744567,0.584902,0.230428,0.610362,0.453154,0.428122,0.496472,0.609169,0.735657,0.269358,0.221199,0.655131,0.882072,0.940614,0.0853269,0.406072,0.0303753,0.908514,0.186314,0.585264,0.731587,0.491082,0.491677,0.447665,0.451254,0.521828,0.940954,0.67325,0.703041,0.681872,0.653443,0.314812,0.231057,0.685577,0.139454,0.29377,0.491264,0.585968,0.577006,0.0105191,0.523022,0.226099,0.178755,0.266496,0.0280654,0.1037,0.222319,0.195819,0.642943,0.897313,0.0989091,0.658991,0.656339,0.307612,0.565226,0.384092,0.599567,0.227689,0.610529,0.0730803,0.441012,0.904428,0.646283,0.713982,0.123302,0.514775,0.421752,0.267887,0.661776,0.158094,0.999167,0.162937,0.287362,0.477944,0.860565,0.904956,0.0922034,0.309908,0.108768,0.780145,0.749431,0.878358,0.791405,0.647929,0.699104,0.0415214,0.256169,0.510111,0.620733,0.892976,0.641377,0.219258,0.721325,0.676982,0.196184,0.940846,0.146159,0.802045,0.670648,0.105811,0.0898059,0.494375,0.393356,0.271477,0.9015,0.226752,0.99491,0.704996,0.975977,0.178801,0.836376,0.949686,0.663744,0.608669,0.503055,0.936486,0.793336,0.0512437,0.838419,0.884988,0.747979,0.696005,0.172284,0.988447,0.0745552,0.00784051,0.686998,0.785098,0.985496,0.0292541,0.380899,0.835904,0.571388,0.906157,0.85467,0.0834597,0.677204,0.623388,0.16232,0.295402,0.599787,0.435845,0.22393,0.715379,0.913283,0.614055,0.358005,0.261462,0.543723,0.342838,0.910662,0.40945,0.298739,0.177961,0.0987511,0.319416,0.258975,0.685032,0.0858076,0.649952,0.525774,0.534499,0.24094,0.584321,0.751282,0.0829473,0.204461,0.203674,0.0340097,0.508714,0.354612,0.600716,0.0384499,0.696122,0.199196,0.353505,0.334621,0.310634,0.370895,0.687599,0.4134,0.652999,0.610946,0.884729,0.891784,0.347322,0.168804,0.647717,0.355904,0.564795,0.612969,0.708505,0.55754,0.184404,0.869855,0.896751,0.518287,0.0389767,0.77041,0.542226,0.76912,0.696924,0.586015,0.663015,0.0418036,0.511414,0.794717,0.998652,0.0142186,0.842438,0.622907,0.510148,0.569938,0.391538,0.188536,0.831554,0.864068,0.124551,0.468861,0.169834,0.826039,0.0375185,0.179024,0.139549,0.275803,0.305032,0.494641,0.387237,0.206056,0.564718,0.357044,0.987062,0.862923,0.977349,0.248543,0.998604,0.309876,0.679015,0.419809,0.9457,0.410454,0.439521,0.2223,0.565861,0.899942,0.935242,0.908902,0.961544,0.999005,0.777297,0.475367,0.829178,0.574718,0.443566,0.298895,0.263742,0.206619,0.64289,0.41181,0.314707,0.0181853,0.105994,0.843498,0.573173,0.227716,0.14041,0.0835207,0.00275815,0.415957,0.789527,0.41712,0.0370237,0.869652,0.446025,0.181196,0.0791525,0.0694589,0.556649,0.47212,0.916106,0.207283,0.797431,0.720531,0.393252,0.0655621,0.218162,0.122178,0.313552,0.484523,0.515723,0.650029,0.539051,0.921232,0.235195,0.473698,0.626543,0.692667,0.583912,0.751144,0.364472,0.296096,0.37741,0.887942,0.950941,0.242761,0.902418,0.052606,0.140893,0.40247,0.0124397,0.486453,0.780334,0.990983,0.0541893,0.775286,0.820586,0.653534,0.247963,0.811234,0.307088,0.686668,0.580238,0.415504,0.846698,0.893591,0.315597,0.327192,0.254439,0.23057,0.766119,0.717308,0.441459,0.198076,0.94144,0.587824,0.800416,0.988072,0.786098,0.686779,0.510743,0.291657,0.952399,0.458819,0.704447,0.708405,0.997408,0.0055995,0.18411,0.452854,0.493882,0.753857,0.802952,0.217693,0.886136,0.192346,0.573492,0.100188,0.805356,0.474534,0.627838,0.280479,0.221378,0.725139,0.000911891,0.170782,0.554012,0.665784,0.481595,0.828263,0.777174,0.692302,0.628483,0.427819,0.961419,0.512677,0.710941,0.550503,0.568497,0.604638,0.962334,0.080374,0.76684,0.0728015,0.278107,0.195164,0.694285,0.292156,0.138275,0.601355,0.907815,0.782587,0.304479,0.699725,0.642743,0.167293,0.774706,0.966413,0.221163,0.58127,0.197156,0.780298,0.238901,0.768266,0.994408,0.670748,0.277713,0.517208,0.986566,0.914759,0.77543,0.92107,0.63044,0.408594,0.370396,0.846832,0.578597,0.0916023,0.133478,0.978719,0.164616,0.0814402,0.720597,0.937546,0.965619,0.195763,0.287446,0.967332,0.553505,0.139907,0.536476,0.529012,0.990132,0.102528,0.381829,0.612495,0.424523,0.550876,0.760372,0.266861,0.185269,0.17406,0.889899,0.494165,0.639025,0.49692,0.562296,0.660538,0.520097,0.335918,0.521813,0.91502,0.356492,0.84822,0.0550406,0.959581,0.120219,0.99575,0.696183,0.406988,0.887902,0.456334,0.90128,0.417852,0.398245,0.717714,0.578227,0.0345851,0.38618,0.274144,0.804134,0.191348,0.382247,0.431424,0.939306,0.000882566,0.414479,0.458687,0.32961,0.416703,0.00477886,0.281066,0.256889,0.749166,0.678981,0.897786,0.533959,0.393659,0.345929,0.0609657,0.675287,0.150986,0.104473,0.0112547,0.14513,0.771698,0.497294,0.611823,0.892147,0.884342,0.363082,0.42512,0.113525,0.35015,0.136343,0.18518,0.680758,0.671986,0.874197,0.192798,0.774073,0.112476,0.0131534,0.317846,0.109749,0.636901,0.568137,0.949028,0.412834,0.224632,0.351874,0.0399739,0.681089,0.445045,0.75303,0.874627,0.0410602,0.127639,0.682036,0.854737,0.097455,0.334595,0.818885,0.167811,0.183759,0.745293,0.876434,0.381947,0.759478,0.621531,0.391539,0.526526,0.658864,0.293711,0.884199,0.177096,0.527448,0.306225,0.542303,0.664747,0.106571,0.453937,0.978889,0.283389,0.0450329,0.474228,0.85678,0.611876,0.229234,0.719124,0.474323,0.837206,0.603172,0.632556,0.859716,0.853266,0.063993,0.764614,0.837531,0.789631,0.173081,0.693148,0.193146,0.252151,0.99422,0.764655,0.342392,0.995655,0.0580997,0.531754,0.551837,0.125818,0.669293,0.203471,0.0992115,0.95851,0.257919,0.560997,0.197113,0.0268973,0.0450163,0.0890106,0.934617,0.598132,0.400212,0.21492,0.353013,0.409664,0.246167,0.177141,0.862364,0.29066,0.371774,0.232586,0.316698,0.493143,0.936109,0.609365,0.418026,0.294128,0.429147,0.662646,0.232136,0.384964,0.85996,0.908748,0.280729,0.785319,0.134676,0.0674443,0.723694,0.102084,0.434159,0.923171,0.0453816,0.81146,0.505112,0.993867,0.30869,0.158623,0.953633,0.383724,0.816517,0.531821,0.258314,0.110937,0.784897,0.751958,0.822634,0.663429,0.811485,0.138047,0.253168,0.185704,0.0736112,0.842671,0.584861,0.53992,0.521777,0.413888,0.626635,0.858558,0.633292,0.143596,0.308822,0.292165,0.0874688,0.613848,0.283397,0.720285,0.620086,0.331628,0.632076,0.71864,0.342649,0.827014,0.904302,0.109852,0.577481,0.211017,0.579244,0.300126,0.443365,0.00159663,0.36803,0.474107,0.344992,0.363484,0.567964,0.0227004,0.0067699,0.637248,0.871399,0.71825,0.0161265,0.266545,0.818861,0.23692,0.872554,0.46227,0.510821,0.719353,0.070455,0.758157,0.536398,0.830953,0.942023,0.501326,0.675267,0.288585,0.803337,0.644439,0.297403,0.640732,0.582099,0.356842,0.25252,0.43983,0.0865573,0.397488,0.759726,0.0555063,0.468988,0.215061,0.132999,0.829888,0.757112,0.218491,0.863668,0.651517,0.221454,0.0700266,0.668845,0.409888,0.0840766,0.0937165,0.825874,0.208996,0.344581,0.935854,0.0348467,0.451999,0.68105,0.381069,0.917753,0.765618,0.331603,0.772553,0.854407,0.703844,0.739911,0.00596058,0.94776,0.187738,0.373438,0.711822,0.939827,0.33048,0.0480265,0.915264,0.879597,0.374554,0.149915,0.988568,0.481002,0.0578263,0.195529,0.983989,0.808505,0.853944,0.161765,0.647224,0.763549,0.792795,0.943678,0.99013,0.873776,0.435257,0.872338,0.0638934,0.873132,0.33369,0.583657,0.412301,0.978091,0.470119,0.879815,0.488462,0.733532,0.501087,0.240173,0.642004,0.33588,0.681439,0.702924,0.187343,0.0307264,0.538196,0.661196,0.22636,0.6826,0.313998,0.700364,0.775203,0.53524,0.972556,0.878626,0.0937361,0.611316,0.419131,0.737336,0.991003,0.772586,0.372482,0.2228,0.110528,0.380809,0.43507,0.34737,0.153112,0.294407,0.502554,0.549379,0.0128289,0.421234,0.726678,0.0986993,0.619544,0.429323,0.370394,0.121148,0.683618,0.587992,0.158293,0.242759,0.767222,0.588554,0.517564,0.233283,0.326828,0.725081,0.502336,0.324109,0.543292,0.682394,0.479224,0.120888,0.407723,0.983101,0.842807,0.413082,0.31491,0.208445,0.214133,0.088057,0.840947,0.133708,0.679624,0.845778,|0.0407715,0.987769,0.289491,0.540675,0.260411,0.862059,0.531252,0.702216,0.97236,0.777257,0.504177,0.32202,0.501846,0.412286,0.360082,0.146906,0.146237,0.117865,0.849236,0.90763,0.523968,0.134292,0.128585,0.165496,0.0952027,0.0265292,0.517339,0.164045,0.4029,0.0774798,0.278591,0.3728,0.959745,0.265894,0.522009,0.789568,0.794192,0.553403,0.167069,0.78937,0.437261,0.598329,0.405012,0.468876,0.982611,0.596541,0.35018,0.556214,0.50929,0.458681,0.608039,0.992072,0.949028,0.261077,0.595594,0.895257,0.227253,0.466924,0.713244,0.786302,0.482824,0.614476,0.57124,0.0596206,0.655663,0.188769,0.88666,0.0461389,0.464276,0.988604,0.131974,0.957963,0.0363935,0.549323,0.465027,0.620543,0.160508,0.696029,0.59284,0.356793,0.965537,0.0612978,0.788794,0.347051,0.0107396,0.307315,0.843084,0.44806,0.0529426,0.582355,0.815364,0.0877031,0.350493,0.575248,0.595221,0.925011,0.0547609,0.531343,0.0766046,0.855178,0.331895,0.965065,0.152814,0.660638,0.895601,0.0905598,0.00541764,0.230135,0.698908,0.353223,0.279413,0.606776,0.269532,0.589197,0.692579,0.725983,0.494725,0.180358,0.615451,0.806241,0.5106,0.545799,0.0355023,0.596669,0.409666,0.40146,0.047621,0.639403,0.652414,0.00827253,0.217855,0.460356,0.930192,0.0988237,0.188174,0.788828,0.766572,0.791532,0.384121,0.0254472,0.7537,0.309015,0.890202,0.00468659,0.755448,0.335885,0.835185,0.343836,0.299013,0.824566,0.66806,0.248121,0.573062,0.114969,0.862177,0.450828,0.901575,0.151822,0.713154,0.948047,0.448825,0.515018,0.55683,0.338282,0.325792,0.557593,0.663218,0.380145,0.136443,0.880716,0.735522,0.250327,0.0385016,0.450547,0.880823,0.639708,0.588153,0.387905,0.813091,0.611865,0.385374,0.431033,0.121455,0.444688,0.638203,0.145955,0.0367693,0.302157,0.341405,0.307688,0.139384,0.0427305,0.415845,0.0569124,0.645348,0.364051,0.719724,0.153872,0.250319,0.210419,0.579495,0.680698,0.089662,0.585147,0.257057,0.682951,0.157289,0.324036,0.142118,0.0720495,0.538721,0.353415,0.581888,0.891961,0.226369,0.48625,0.844126,0.880841,0.111433,0.16636,0.166432,0.190695,0.32958,0.249773,0.821477,0.263835,0.675517,0.838066,0.120629,0.811826,0.207183,0.165428,0.890921,0.700873,0.219589,0.0495292,0.843536,0.93234,0.762134,0.808795,0.553342,0.293734,0.394896,0.180854,0.68248,0.0383384,0.434514,0.443874,0.128056,0.232842,0.0662361,0.843521,0.748568,0.000801265,0.579583,0.200855,0.0123853,0.81575,0.720227,0.935896,0.587719,0.812069,0.0285699,0.480313,0.653934,0.00424784,0.987339,0.10906,0.885768,0.0421666,0.337533,0.689669,0.691507,0.168487,0.0890466,0.150877,0.738382,0.233517,0.211864,0.304169,0.654163,0.377813,0.178333,0.806528,0.858234,0.121711,0.998521,0.658576,0.33195,0.660458,0.706843,0.554008,0.109777,0.506524,0.933469,0.792919,0.410799,0.881681,0.313755,0.5294,0.407887,0.237137,0.353289,0.499275,0.652547,0.671206,0.148911,0.959433,0.346488,0.615521,0.801968,0.537388,0.1919,0.913636,0.0839476,0.313354,0.0281126,0.982742,0.498563,0.0239829,0.321055,0.694047,0.787193,0.335981,0.328229,0.222945,0.527207,0.71327,0.536311,0.0957662,0.674177,0.778435,0.864798,0.830856,0.422429,0.573061,0.399796,0.50702,0.119022,0.869323,0.646802,0.928777,0.439944,0.917087,0.212211,0.785881,0.208052,0.622174,0.062305,0.305435,0.108841,0.989163,0.582371,0.578627,0.980629,0.13603,0.663515,0.59533,0.848203,0.154903,0.423933,0.0510368,0.647334,0.942098,0.529181,0.872335,0.195224,0.0809737,0.810273,0.589046,0.349845,0.279507,0.695514,0.330603,0.831808,0.430012,0.105401,0.107203,0.894963,0.615403,0.268655,0.904835,0.0207437,0.931257,0.363323,0.182278,0.246933,0.447233,0.643948,0.0365725,0.391084,0.647515,0.779568,0.742557,0.218529,0.358668,0.0444148,0.374436,0.0637448,0.685929,0.258155,0.889125,0.234163,0.644042,0.755162,0.374662,0.303913,0.212036,0.369207,0.98837,0.12532,0.756309,0.19608,0.579965,0.524921,0.299111,0.918409,0.638081,0.914198,0.230061,0.125484,0.365484,0.121475,0.298783,0.297976,0.166575,0.143968,0.502281,0.0621216,0.415968,0.32408,0.224151,0.100398,0.617874,0.115565,0.523833,0.0860149,0.21853,0.182611,0.268306,0.59373,0.816665,0.310172,0.268922,0.382232,0.146921,0.788592,0.145907,0.910876,0.928382,0.657213,0.558261,0.377559,0.351371,0.632724,0.372632,0.789178,0.19358,0.457252,0.479007,0.244045,0.578727,0.802396,0.376135,0.211454,0.515297,0.865522,0.12019,0.593758,0.559763,0.417343,0.49265,0.464926,0.446854,0.294607,0.922414,0.784405,0.270629,0.607329,0.193199,0.250071,0.253812,0.958777,0.122386,0.0852891,0.630945,0.0526049,0.115126,0.650447,0.40469,0.720742,0.441521,0.613857,0.830984,0.802721,0.892024,0.00945115,0.911206,0.436468,0.273976,0.924644,0.310173,0.496288,0.818247,0.0576785,0.633739,0.96666,0.301225,0.774989,0.730781,0.30408,0.481536,0.405977,0.0133307,0.71062,0.812382,0.20754,0.901037,0.89191,0.422169,0.221544,0.452174,0.401102,0.376816,0.2462,0.551158,0.886268,0.88693,0.0561168,0.95493,0.113907,0.214789,0.822516,0.390578,0.44303,0.710797,0.806063,0.704999,0.983253,0.767794,0.341999,0.434772,0.117036,0.283949,0.175525,0.852926,0.159428,0.415769,0.419503,0.719193,0.67138,0.188723,0.189182,0.288401,0.00934601,0.905595,0.73916,0.33442,0.356278,0.365043,0.377994,0.656664,0.53176,0.00479001,0.685841,0.923647,0.0683819,0.399209,0.168669,0.591953,0.894821,0.480574,0.0910013,0.824122,0.123726,0.115035,0.891404,0.522806,0.524283,0.628231,0.494116,0.220897,0.452227,0.24509,0.339196,0.736243,0.194425,0.917253,0.236851,0.6729,0.245331,0.262086,0.582642,0.569566,0.448853,0.552884,0.934241,0.0459866,0.834797,0.218863,0.461324,0.854202,0.920045,0.631954,0.294343,0.8874,0.824082,0.378009,0.104107,0.388073,0.666021,0.759726,0.99405,0.478632,0.28297,0.986274,0.208056,0.474106,0.0354023,0.994507,0.240856,0.86589,0.222649,0.920869,0.482714,0.962317,0.393867,0.770178,0.889788,0.164215,0.552524,0.538399,0.977816,0.486552,0.240487,0.920612,0.416933,0.88869,0.737115,0.527015,0.876271,0.105747,0.296691,0.326084,0.204366,0.363996,0.418643,0.773054,0.141597,0.53606,0.942196,0.622922,0.640767,0.388482,0.597941,0.763977,0.788523,0.774736,0.385882,0.549838,0.700781,0.726357,0.136118,0.728517,0.470737,0.0328262,0.427903,0.243754,0.777662,0.223658,0.628695,0.423696,0.112493,0.226301,0.915443,0.272386,0.691412,0.638205,0.279717,0.432791,0.157683,0.273462,0.805282,0.616451,0.938852,0.809905,0.841475,0.16149,0.638319,0.553005,0.85257,0.681911,0.886671,0.823802,0.919453,0.650213,0.116971,0.939697,0.812362,0.846732,0.787756,0.00446653,0.870924,0.958423,0.835644,0.573242,0.805771,0.318393,0.173946,0.967063,0.852048,0.0716525,0.806245,0.327991,0.844258,0.961996,0.193828,0.214069,0.631521,0.765905,0.71063,0.458495,0.35646,0.731318,0.590079,0.525139,0.841839,0.497316,0.918315,0.355905,0.484388,0.391889,0.662588,0.58294,0.26089,0.371476,0.376687,0.78038,0.893703,0.643525,0.463075,0.346951,0.149088,0.169616,0.958837,0.326819,0.726988,0.983098,0.133631,0.377413,0.395953,0.817534,0.997114,0.22188,0.295394,0.491713,0.399135,0.965122,0.743776,0.548842,0.0938307,0.320176,0.431252,0.326449,0.102403,0.701177,0.417738,0.460873,0.152428,0.750573,0.314682,0.80958,0.545088,0.134114,0.264054,0.963303,0.325347,0.695065,0.534027,0.892617,0.121504,0.818264,0.741714,0.532153,0.331174,0.23328,0.169802,0.0846965,0.180548,0.271683,0.0174422,0.0605943,0.481081,0.245589,0.687253,0.0289705,0.0987688,0.786331,0.110391,0.144242,0.648047,0.315812,0.12892,0.106293,0.832482,0.0550188,0.649131,0.896617,0.341305,0.466825,0.784258,0.278378,0.600363,0.741795,0.397877,0.369841,0.332461,0.371583,0.706854,0.301165,0.210072,0.755784,0.494747,0.178656,0.274991,0.542381,0.251226,0.438595,0.314982,0.635784,0.470514,0.840629,0.0473969,0.77243,0.429857,0.543884,0.912644,0.373047,0.519423,0.249705,0.287472,0.495575,0.936661,0.161414,0.289696,0.843919,0.203823,0.732056,0.890487,0.576321,0.471311,0.392971,0.96195,0.602704,0.166642,0.758439,0.513873,0.233897,0.61867,0.547968,0.809835,0.416223,0.457936,0.435975,0.585825,0.400716,0.415552,0.107289,0.831228,0.0300296,0.0773581,0.229734,0.957898,0.350702,0.728938,0.854069,0.379488,0.412444,0.0889821,0.888632,0.306543,0.309281,0.356597,0.679794,0.293104,0.158867,0.197054,0.228056,0.387736,0.885106,0.924498,0.963579,0.704927,0.0645924,0.23579,0.363425,0.864044,0.865136,0.367684,0.4885,0.274082,0.0235072,0.607828,0.692052,0.228858,0.70334,0.360183,0.0613938,0.244833,0.00265235,0.756221,0.724987,0.430683,0.957381,0.326394,0.241953,0.241863,0.993627,0.894869,0.829812,0.55801,0.0251188,0.128644,0.0186573,0.867015,0.375628,0.343367,0.349901,0.0949583,0.0183589,0.203486,0.0830079,0.734025,0.49813,0.649469,0.573543,0.787865,0.597952,0.0219389,0.0225571,0.981831,0.300648,0.249895,0.818222,0.384212,0.537157,0.365462,0.423531,0.778982,0.987979,0.810575,0.136272,0.0680209,0.0402992,0.295751,0.947863,0.206162,0.965188,0.145458,0.369501,0.0545518,0.638711,0.574228,0.77363,0.119338,0.649839,0.676575,0.815698,0.801821,0.0632357,0.505128,0.13028,0.488791,0.727877,0.369268,0.25274,0.422823,0.438427,0.583476,0.208334,0.00759935,0.427392,0.51803,0.0804163,0.711963,0.027455,0.511058,0.39125,0.895871,0.205609,0.699639,0.660768,0.0122044,0.0653856,0.633531,0.905981,0.497202,0.555859,0.721247,0.662804,|0.805678,0.201967,0.64179,0.228775,0.0535818,0.185464,0.0929865,0.0396481,0.251585,0.338806,0.706331,0.432605,0.640174,0.343162,0.181028,0.199717,0.304228,0.727984,0.0125076,0.828726,0.677599,0.162751,0.955743,0.592852,0.675801,0.778739,0.810164,0.670356,0.604637,0.408015,0.627865,0.953447,0.2118,0.852617,0.0731435,0.105275,0.131851,0.607478,0.393757,0.283583,0.871675,0.940048,0.166536,0.581105,0.991493,0.884329,0.551795,0.736679,0.384938,0.171429,0.936257,0.223732,0.252021,0.111775,0.286705,0.80165,0.382022,0.0256699,0.64815,0.31747,0.130825,0.896771,0.0768369,0.155197,0.963801,0.841694,0.407724,0.598933,0.0668857,0.271653,0.673638,0.0473669,0.952411,0.245287,0.439141,0.827703,0.654747,0.630985,0.215284,0.449821,0.609879,0.311063,0.475374,0.922291,0.702198,0.097635,0.00847095,0.125443,0.735419,0.342985,0.488702,0.207397,0.37239,0.581205,0.749085,0.96396,0.678329,0.989329,0.0270058,0.715206,0.916233,0.654315,0.678273,0.125216,0.895672,0.658556,0.853003,0.220376,0.8495,0.470269,0.125144,0.127233,0.996518,0.471235,0.571323,0.94311,0.955044,0.777077,0.941938,0.867332,0.377651,0.583374,0.914508,0.00841635,0.0712813,0.729036,0.613274,0.6279,0.337259,0.0191794,0.17047,0.297102,0.0134124,0.349013,0.761858,0.709951,0.245916,0.771335,0.73263,0.717018,0.834834,0.615028,0.164235,0.233056,0.749654,0.211772,0.142144,0.796779,0.465484,0.062593,0.37505,0.20995,0.199796,0.705495,0.971194,0.716761,0.977225,0.505297,0.183194,0.792353,0.235626,0.966197,0.899509,0.745296,0.932478,0.20591,0.921503,0.509558,0.175142,0.0436668,0.139459,0.384126,0.340127,0.104801,0.52353,0.878499,0.916702,0.615758,0.568837,0.530289,0.558451,0.939889,0.736152,0.843734,0.928352,0.243462,0.820831,0.519853,0.304078,0.811074,0.586692,0.891768,0.96849,0.528784,0.219378,0.578412,0.93917,0.585689,0.751327,0.895791,0.649208,0.526658,0.579733,0.187725,0.857944,0.75689,0.327909,0.887547,0.652278,0.235274,0.651901,0.851114,0.981415,0.647341,0.937599,0.412679,0.525052,0.164279,0.81296,0.224185,0.0635417,0.792819,0.785969,0.971163,0.374245,0.871198,0.977531,0.866536,0.0134433,0.791356,0.95791,0.893608,0.784108,0.991841,0.0084458,0.163638,0.286345,0.252612,0.20657,0.383605,0.68128,0.773555,0.604152,0.408524,0.359434,0.965976,0.392273,0.0958973,0.443946,0.218755,0.426933,0.780709,0.683857,0.000175536,0.225915,0.0169144,0.885532,0.835159,0.0234678,0.7612,0.638661,0.504966,0.688744,0.941218,0.186523,0.447857,0.474646,0.406016,0.0878787,0.244846,0.214161,0.744318,0.52362,0.757515,0.559111,0.974115,0.193537,0.647453,0.194886,0.845907,0.714222,0.342102,0.455173,0.574,0.795363,0.157103,0.859651,0.592867,0.0817277,0.457774,0.523479,0.995843,0.635639,0.774481,0.556755,0.589572,0.704617,0.119701,0.661202,0.700113,0.710998,0.952772,0.859905,0.571401,0.157317,0.703017,0.98362,0.910309,0.820744,0.656789,0.0341163,0.792573,0.725924,0.712218,0.160599,0.184942,0.796709,0.737367,0.301744,0.265508,0.710885,0.000330091,0.63989,0.09422,0.695923,0.279914,0.000976741,0.614703,0.369541,0.00491673,0.293411,0.452101,0.622046,0.740221,0.569762,0.171588,0.963292,0.169207,0.267288,0.363024,0.327165,0.888713,0.0952786,0.410321,0.915389,0.99835,0.175883,0.0301898,0.973983,0.68216,0.0417049,0.305949,0.804539,0.974578,0.106593,0.101434,0.562795,0.567834,0.869227,0.879753,0.596612,0.979694,0.109833,0.636713,0.0229136,0.995752,0.889962,0.0486866,0.694078,0.825489,0.10658,0.0443799,0.97011,0.844915,0.340517,0.129359,0.0842491,0.74749,0.617646,0.0683024,0.72684,0.763084,0.60146,0.767757,0.053197,0.608101,0.182755,0.893098,0.984534,0.367165,0.800226,0.79135,0.262633,0.714568,0.636428,0.293521,0.447721,0.689632,0.724807,0.639118,0.839122,0.0838408,0.617839,0.0270218,0.670818,0.354314,0.219008,0.453621,0.758543,0.635157,0.437517,0.00308442,0.980007,0.140786,0.127394,0.199726,0.731969,0.0858018,0.734884,0.881217,0.830675,0.473002,0.730698,0.208479,0.511998,0.652102,0.351505,0.156557,0.348148,0.352999,0.0706646,0.896016,0.497536,0.783253,0.695998,0.961867,0.968225,0.464803,0.36942,0.623226,0.16511,0.36058,0.23765,0.0505496,0.321913,0.00119418,0.695379,0.562539,0.206177,0.798915,0.0464078,0.122424,0.197623,0.86333,0.738131,0.507005,0.749496,0.42424,0.888377,0.403744,0.651792,0.788234,0.817527,0.473753,0.761583,0.74458,0.651616,0.36259,0.708393,0.428763,0.108169,0.292207,0.627014,0.371832,0.553579,0.447035,0.5121,0.825798,0.560431,0.326625,0.689632,0.747954,0.241054,0.810919,0.920899,0.662537,0.979849,0.318497,0.577914,0.7606,0.649037,0.0413785,0.238498,0.0114154,0.856448,0.783808,0.13699,0.439589,0.857022,0.509667,0.209968,0.962072,0.763685,0.321252,0.395352,0.928245,0.225947,0.525716,0.962301,0.23855,0.224345,0.0271241,0.38558,0.287175,0.230736,0.520967,0.45443,0.716598,0.431106,0.546844,0.732529,0.488468,0.8117,0.0546953,0.986525,0.395279,0.410477,0.476675,0.356678,0.0622989,0.344421,0.834915,0.0571264,0.569953,0.552272,0.8132,0.472504,0.88445,0.39526,0.100038,0.968598,0.194316,0.396146,0.881613,0.874922,0.78731,0.801913,0.262204,0.0158204,0.558692,0.727015,0.789111,0.692906,0.408153,0.251909,0.477196,0.48429,0.161985,0.692059,0.226461,0.803142,0.438327,0.15193,0.844491,0.335466,0.252903,0.355679,0.30443,0.50618,0.299405,0.92031,0.803505,0.800291,0.851047,0.887088,0.760095,0.438988,0.0423922,0.334009,0.762381,0.980681,0.754792,0.358517,0.379327,0.444865,0.0929071,0.081906,0.270525,0.0378352,0.130569,0.16736,0.845189,0.932661,0.537057,0.386621,0.514401,0.257637,0.13864,0.885621,0.822153,0.786712,0.931752,0.884013,0.0604616,0.0701714,0.649916,0.411538,0.237325,0.0381325,0.0996482,0.905149,0.865128,0.782489,0.937533,0.953187,0.350755,0.174343,0.136943,0.771154,0.0595838,0.615053,0.0508478,0.465502,0.716632,0.035412,0.044894,0.213067,0.0091207,0.704733,0.788581,0.422951,0.727072,0.897304,0.422591,0.630411,0.565903,0.405728,0.779508,0.0673189,0.94756,0.130744,0.895554,0.263964,0.650495,0.905673,0.193373,0.950547,0.973887,0.698844,0.0173787,0.393925,0.0457731,0.348084,0.559045,0.598797,0.555831,0.892397,0.56088,0.958322,0.998481,0.819291,0.194797,0.332825,0.851725,0.02872,0.992456,0.114008,0.743791,0.991636,0.568234,0.038773,0.548214,0.0227777,0.61661,0.0162447,0.877444,0.765367,0.283755,0.214494,0.774214,0.385255,0.416803,0.950215,0.905428,0.466826,0.629786,0.541432,0.774552,0.978806,0.747199,0.0956979,0.397579,0.510524,0.733106,0.594064,0.0833862,0.535473,0.460364,0.425422,0.318619,0.635163,0.487807,0.235133,0.266758,0.576265,0.285565,0.569921,0.239096,0.377008,0.47829,0.259239,0.93879,0.576542,0.23883,0.078818,0.734764,0.705327,0.503322,0.819564,0.601832,0.314206,0.0695117,0.39557,0.745322,0.00622505,0.338279,0.932555,0.473455,0.168523,0.996226,0.349852,0.930291,0.960334,0.937857,0.452314,0.311954,0.691841,0.361798,0.932879,0.465049,0.91042,0.382326,0.25163,0.0285649,0.828223,0.650006,0.401234,0.994472,0.211885,0.796738,0.645452,0.746011,0.856037,0.347566,0.875235,0.530209,0.203989,0.919765,0.168058,0.934974,0.307973,0.112901,0.19073,0.537521,0.134902,0.339717,0.521198,0.0561836,0.281106,0.609658,0.275954,0.663127,0.886902,0.185592,0.871781,0.395846,0.942135,0.760076,0.127916,0.91813,0.770547,0.665145,0.0468145,0.136602,0.42935,0.370381,0.1807,0.349922,0.0405115,0.0524334,0.921961,0.942279,0.408093,0.50435,0.331543,0.835066,0.376084,0.323937,0.71563,0.898609,0.830874,0.917618,0.59936,0.534532,0.891565,0.873706,0.309548,0.087471,0.55867,0.490818,0.4396,0.801787,0.798483,0.958453,0.481697,0.612083,0.73421,0.799475,0.584343,0.793402,0.0928668,0.297857,0.00303584,0.979405,0.256098,0.266552,0.58931,0.830583,0.342597,0.589864,0.246106,0.245005,0.623439,0.759227,0.719743,0.126529,0.675036,0.562411,0.856335,0.315865,0.237226,0.902171,0.620376,0.661351,0.495165,0.280745,0.96484,0.383343,0.659081,0.00391018,0.490742,0.226367,0.990864,0.274953,0.123111,0.416471,0.126825,0.770457,0.207136,0.142347,0.314327,0.589331,0.432473,0.484334,0.754345,0.187556,0.253903,0.0294598,0.442261,0.101632,0.834569,0.687535,0.86491,0.939413,0.513427,0.368908,0.672491,0.345763,0.514309,0.494595,0.687836,0.176686,0.74829,0.317401,0.7434,0.19828,0.212704,0.928561,0.181854,0.406766,0.294395,0.674354,0.423819,0.779543,0.0959558,0.648715,0.834953,0.537715,0.139055,0.0386807,0.720368,0.64894,0.880008,0.00266749,0.222327,0.741037,0.394592,0.456275,0.192529,0.737274,0.559531,0.61437,0.376583,0.467467,0.124977,0.644922,0.10782,0.17724,0.409395,0.954372,0.172593,0.706021,0.409041,0.172199,0.993389,0.957032,0.0400829,0.335825,0.383463,0.269227,0.44321,0.935797,0.240175,0.836587,0.268339,0.141137,0.300443,0.00778854,0.663716,0.280013,0.815221,0.638773,0.926808,0.135707,0.903772,0.357736,0.351428,0.480903,0.43784,0.583089,0.57154,0.523308,0.812747,0.853054,0.459999,0.31295,0.211709,0.743669,0.49358,0.273291,0.986383,0.406342,0.272319,0.392332,0.384661,0.404287,0.248482,0.659491,0.0734104,0.84242,0.218348,0.859758,0.248682,0.677441,0.433583,0.584822,0.265614,0.02007,0.502201,0.666351,0.247965,0.911614,0.143603,0.989497,0.0142695,0.690921,0.45823,0.701289,0.818511,0.319717,0.181477,0.211619,0.871129,0.11528,0.793433,0.218844,0.915629,0.758051,0.540289,0.143867,|0.519413,0.615101,0.00683314,0.273455,0.865451,0.241403,0.7086,0.346994,0.24168,0.64199,0.534303,0.144624,0.0348048,0.794703,0.751666,0.220332,0.321314,0.410505,0.260295,0.715635,0.242102,0.693057,0.758421,0.710331,0.347866,0.0823634,0.295251,0.471609,0.982037,0.858845,0.0423024,0.525954,0.213481,0.590617,0.919813,0.883589,0.601817,0.89943,0.225755,0.341498,0.824427,0.442404,0.942087,0.755068,0.0728133,0.0841344,0.338799,0.4506,0.962689,0.195292,0.620492,0.367923,0.619315,0.0236496,0.465891,0.44909,0.097894,0.952764,0.0964732,0.155518,0.317845,0.00908983,0.502184,0.0502972,0.287836,0.120115,0.932086,0.64949,0.549996,0.254941,0.126257,0.0949941,0.996813,0.89571,0.637302,0.811781,0.562072,0.424688,0.631511,0.814284,0.138223,0.0645624,0.838498,0.129116,0.277257,0.925183,0.836862,0.499996,0.214706,0.827468,0.661685,0.909766,0.565828,0.16449,0.117519,0.373902,0.80444,0.186311,0.884401,0.427063,0.277502,0.64703,0.886319,0.171757,0.980581,0.455981,0.794721,0.526368,0.268395,0.57199,0.318435,0.666317,0.145594,0.264299,0.0642278,0.640636,0.569254,0.488824,0.575098,0.565689,0.0477328,0.159122,0.861085,0.497802,0.646027,0.274914,0.533308,0.414106,0.532819,0.265083,0.560667,0.239099,0.971297,0.826632,0.59049,0.0687669,0.420236,0.0381975,0.251981,0.26931,0.292275,0.462866,0.873036,0.800362,0.759101,0.213629,0.361706,0.0637591,0.986394,0.0740512,0.727509,0.32763,0.198914,0.694112,0.151379,0.836626,0.172478,0.327574,0.499286,0.874678,0.447713,0.68427,0.772172,0.125627,0.535168,0.416001,0.505869,0.383636,0.25512,0.0609005,0.121605,0.695524,0.831365,0.928777,0.757939,0.80118,0.143454,0.138668,0.628787,0.26438,0.141201,0.125845,0.594684,0.141587,0.786033,0.782343,0.0165606,0.720885,0.314113,0.547263,0.960263,0.760867,0.483588,0.748784,0.897754,0.587771,0.198627,0.875789,0.61722,0.615329,0.49109,0.876117,0.980121,0.73554,0.294605,0.124053,0.969025,0.356486,0.727404,0.793472,0.922195,0.403563,0.867544,0.904502,0.69071,0.939533,0.349911,0.810006,0.825186,0.807048,0.812085,0.167394,0.403761,0.589258,0.813565,0.386594,0.69937,0.422496,0.403532,0.787055,0.857221,0.146761,0.220156,0.427676,0.880954,0.720308,0.739672,0.722053,0.487365,0.29145,0.186805,0.0182373,0.73938,0.0210394,0.763016,0.169458,0.383016,0.588483,0.140364,0.29186,0.744122,0.811232,0.709657,0.306448,0.826852,0.764817,0.378803,0.595624,0.549006,0.617583,0.412686,0.389902,0.274226,0.382821,0.615506,0.947565,0.118746,0.739871,0.0760008,0.484642,0.731418,0.608298,0.820716,0.0781799,0.42839,0.237999,0.0458832,0.926283,0.376017,0.30193,0.446595,0.176273,0.986741,0.377625,0.0161926,0.862144,0.18269,0.536757,0.437735,0.412493,0.706413,0.0881522,0.346535,0.449173,0.167468,0.958249,0.451108,0.84156,0.369441,0.562624,0.774481,0.716276,0.354739,0.702042,0.535118,0.117114,0.648497,0.0545074,0.068423,0.0570799,0.0734586,0.223958,0.0140921,0.314503,0.308678,0.735307,0.172977,0.541885,0.41458,0.786315,0.671629,0.679904,0.314565,0.173228,0.266008,0.904253,0.235207,0.771119,0.19404,0.282397,0.460248,0.925581,0.416177,0.630563,0.627592,0.848773,0.619196,0.608686,0.942492,0.31593,0.878056,0.625654,0.466177,0.753217,0.874594,0.778242,0.698777,0.189527,0.511051,0.532942,0.665273,0.588602,0.0117382,0.823097,0.795866,0.505513,0.0191192,0.390024,0.582064,0.0660796,0.472246,0.875816,0.147742,0.639429,0.38585,0.586806,0.546179,0.206909,0.297178,0.885763,0.0126166,0.656258,0.51711,0.897879,0.564195,0.771223,0.0813763,0.163172,0.391914,0.929762,0.376422,0.129525,0.668612,0.133115,0.310012,0.894365,0.148812,0.497332,0.841032,0.237132,0.374316,0.629022,0.573602,0.0799477,0.0417387,0.409814,0.267215,0.129843,0.994617,0.555695,0.631948,0.327702,0.958848,0.698282,0.0466806,0.111509,0.087602,0.696305,0.372473,0.961905,0.105246,0.214578,0.338851,0.45225,0.399045,0.195745,0.886496,0.41821,0.643056,0.564839,0.114296,0.332514,0.390284,0.800474,0.968535,0.339784,0.110817,0.37792,0.390842,0.874276,0.00979465,0.670883,0.857645,0.0577374,0.274755,0.685221,0.521426,0.90253,0.706586,0.948365,0.14888,0.337019,0.178252,0.981182,0.801516,0.906182,0.276846,0.435069,0.332479,0.104074,0.0634511,0.778941,0.763978,0.624674,0.336097,0.608425,0.522919,0.579501,0.240264,0.842871,0.338551,0.020389,0.345582,0.287073,0.803345,0.345765,0.937,0.871872,0.0620273,0.144135,0.518257,0.794947,0.80576,0.837871,0.00823522,0.347518,0.882665,0.924337,0.346317,0.00238812,0.943465,0.952623,0.478619,0.335508,0.582232,0.211742,0.999911,0.400668,0.911855,0.858158,0.44199,0.0988301,0.735596,0.309556,0.0114638,0.601771,0.896914,0.471191,0.674883,0.546397,0.561242,0.262344,0.821327,0.862191,0.300083,0.453999,0.740366,0.934202,0.310625,0.165323,0.244896,0.213263,0.801234,0.228725,0.203013,0.949452,0.534429,0.657631,0.29766,0.791931,0.733263,0.588494,0.85953,0.262061,0.742459,0.874729,0.602407,0.930274,0.652043,0.463754,0.812253,0.370409,0.801232,0.255313,0.761394,0.0882431,0.366084,0.431068,0.533023,0.892101,0.774753,0.842168,0.470408,0.7875,0.00806135,0.00754607,0.0486247,0.823933,0.354485,0.177252,0.394575,0.67619,0.401758,0.271553,0.842885,0.199029,0.999013,0.42871,0.873556,0.827128,0.0526914,0.64803,0.395202,0.689289,0.473491,0.787634,0.0901251,0.0973304,0.683221,0.388507,0.53985,0.293956,0.48169,0.61737,0.389557,0.0352621,0.267999,0.0973539,0.996161,0.159629,0.752659,0.539386,0.839525,0.499609,0.0405751,0.85463,0.375379,0.831178,0.448541,0.940699,0.887542,0.894247,0.0727969,0.999709,0.596802,0.393019,0.987239,0.988049,0.492728,0.829567,0.203132,0.886782,0.198156,0.669519,0.842706,0.440633,0.472801,0.756313,0.231551,0.175617,0.956071,0.784711,0.352089,0.396151,0.834831,0.745808,0.803982,0.808719,0.484675,0.475202,0.879994,0.0248896,0.354733,0.144674,0.967423,0.835029,0.165931,0.279403,0.0675756,0.762936,0.691814,0.525398,0.876997,0.207062,0.217861,0.683659,0.384517,0.0238615,0.0394504,0.35497,0.850981,0.0429618,0.513018,0.466516,0.837173,0.199309,0.493967,0.76212,0.968154,0.138771,0.249035,0.948419,0.971331,0.961524,0.280676,0.210773,0.638586,0.337561,0.736859,0.217909,0.416542,0.372936,0.153021,0.552482,0.332061,0.185516,0.215173,0.0822318,0.972637,0.0797725,0.436335,0.560577,0.259386,0.482193,0.144305,0.975811,0.917356,0.807003,0.315192,0.550735,0.0730603,0.423581,0.56732,0.366952,0.44648,0.880425,0.877229,0.28981,0.370741,0.515646,0.577876,0.435355,0.0992656,0.3619,0.521953,0.657001,0.355544,0.293976,0.801792,0.236646,0.27232,0.968804,0.811098,0.600876,0.374894,0.574602,0.804445,0.631148,0.687631,0.333467,0.579895,0.287001,0.259212,0.955904,0.377076,0.49834,0.60264,0.492116,0.0206742,0.762799,0.776435,0.278275,0.534899,0.106219,0.448457,0.0966485,0.744708,0.0134215,0.622544,0.338591,0.167732,0.533594,0.560962,0.716649,0.139281,0.118174,0.198056,0.76513,0.707745,0.249763,0.673989,0.200535,0.324055,0.546387,0.397783,0.103803,0.26868,0.370686,0.100823,0.289139,0.91285,0.235603,0.264664,0.156478,0.031709,0.7803,0.0985399,0.436576,0.279847,0.238512,0.450744,0.540045,0.8711,0.0658953,0.803009,0.0802823,0.0279577,0.288476,0.844355,0.736186,0.849698,0.396399,0.747437,0.539991,0.576079,0.983229,0.169942,0.736115,0.145706,0.51755,0.906905,0.976569,0.59797,0.468358,0.849881,0.921374,0.808436,0.44828,0.574776,0.269451,0.869322,0.705619,0.65408,0.476292,0.593517,0.245814,0.731415,0.225069,0.215417,0.936704,0.333839,0.935944,0.9598,0.534616,0.719452,0.743251,0.0790718,0.952389,0.757607,0.885738,0.591228,0.568267,0.591573,0.543515,0.797776,0.180383,0.236033,0.296073,0.464699,0.224194,0.222882,0.588823,0.934805,0.0808083,0.511928,0.793965,0.666718,0.846376,0.404407,0.329391,0.801298,0.871114,0.302378,0.85718,0.667478,0.760377,0.14875,0.266153,0.30611,0.426098,0.106836,0.237797,0.31762,0.159102,0.287724,0.895353,0.956007,0.376842,0.367798,0.803485,0.800716,0.379255,0.703709,0.0304361,0.608643,0.489672,0.443937,0.944193,0.307064,0.898844,0.328681,0.583535,0.785549,0.572497,0.811835,0.752591,0.747249,0.273977,0.310069,0.814224,0.592899,0.593612,0.534909,0.644401,0.676535,0.964865,0.359408,0.502402,0.298086,0.149018,0.332121,0.663689,0.66262,0.721329,0.505554,0.00116128,0.0241763,0.135438,0.405513,0.555111,0.246373,0.749072,0.971717,0.24069,0.345927,0.649055,0.630745,0.574795,0.685355,0.0716134,0.527335,0.676545,0.254011,0.853835,0.358693,0.870402,0.363702,0.82524,0.478415,0.261385,0.500376,0.086592,0.274596,0.0742694,0.75439,0.357338,0.832709,0.369313,0.556745,0.0955292,0.115814,0.998823,0.287047,0.931521,0.719374,0.0261604,0.504472,0.107379,0.0866148,0.585667,0.192144,0.672169,0.858057,0.699354,0.602292,0.367424,0.116566,0.557691,0.242127,0.731456,0.362127,0.201519,0.12579,0.507873,0.35605,0.430928,0.0484321,0.459342,0.886183,0.589663,0.346351,0.360666,0.34756,0.106675,0.424397,0.335515,0.476882,0.24548,0.462719,0.897535,0.736596,0.7603,0.501172,0.783166,0.703725,0.547749,0.397264,0.202025,0.963475,0.909477,0.973821,0.193735,0.537008,0.113932,0.54836,0.474035,0.295869,0.317555,0.220374,0.236998,0.279798,0.840064,0.662177,0.617465,0.557004,0.390754,0.39749,0.816507,0.00194359,0.801056,0.191835,0.12424,0.61015,0.511119,0.990693,0.952186,0.5861,0.623674,0.971516,0.205386,|0.556806,0.22279,0.846838,0.672984,0.0532427,0.481454,0.925697,0.0305518,0.177539,0.299513,0.40051,0.758376,0.0161084,0.640876,0.830143,0.910226,0.861061,0.866692,0.772182,0.387918,0.898859,0.453236,0.849469,0.897265,0.0225244,0.61929,0.0477942,0.282923,0.748848,0.813565,0.706705,0.240016,0.0295296,0.508615,0.996454,0.158467,0.770135,0.369696,0.51264,0.0958495,0.121468,0.157537,0.198277,0.259303,0.038954,0.117347,0.11511,0.754903,0.0536499,0.545412,0.207601,0.959983,0.203448,0.138652,0.284528,0.180689,0.13116,0.879065,0.531276,0.263254,0.51629,0.650139,0.00472194,0.727201,0.611328,0.0591887,0.529345,0.239475,0.383557,0.534963,0.316094,0.804538,0.749667,0.733743,0.44441,0.0983481,0.797992,0.724186,0.641241,0.849882,0.656691,0.291612,0.224559,0.927909,0.948314,0.916619,0.131759,0.482786,0.563551,0.511295,0.0886511,0.0444006,0.0726714,0.322225,0.870916,0.529632,0.663736,0.0558994,0.398564,0.304061,0.80919,0.58036,0.137561,0.578394,0.367526,0.345753,0.946687,0.282503,0.180864,0.269989,0.560187,0.707867,0.780185,0.61622,0.0675014,0.00714117,0.162119,0.322893,0.427841,0.903958,0.0544683,0.936723,0.216413,0.473187,0.461782,0.547374,0.250224,0.729489,0.27207,0.547794,0.454301,0.98537,0.98899,0.663187,0.823678,0.303295,0.049562,0.0494135,0.736325,0.625891,0.146391,0.0581776,0.127634,0.559534,0.751923,0.667158,0.692527,0.153313,0.439538,0.0874515,0.771583,0.617581,0.805193,0.59454,0.328429,0.562265,0.0115802,0.192248,0.918796,0.674189,0.823334,0.0892337,0.560178,0.115294,0.998789,0.462485,0.425821,0.401068,0.628334,0.911698,0.694532,0.0256835,0.106066,0.219835,0.472637,0.176533,0.946886,0.00742406,0.511981,0.873491,0.198441,0.103155,0.364239,0.747988,0.386558,0.739911,0.0779464,0.148959,0.434815,0.12713,0.538346,0.97355,0.789246,0.944931,0.792886,0.737003,0.551007,0.51413,0.222454,0.766911,0.769109,0.0839921,0.0835063,0.350005,0.747304,0.569579,0.608511,0.806912,0.878855,0.242544,0.55548,0.150634,0.65175,0.835637,0.82965,0.612137,0.499236,0.153448,0.121543,0.322298,0.0337691,0.857948,0.543246,0.574629,0.32434,0.270326,0.523885,0.364568,0.383149,0.926662,0.365313,0.273874,0.00971508,0.936584,0.235026,0.00209016,0.270008,0.343346,0.609474,0.672375,0.372995,0.889283,0.0478173,0.153423,0.84063,0.158946,0.872792,0.599542,0.749185,0.698231,0.506502,0.148733,0.351429,0.8333,0.301636,0.415344,0.00708896,0.361984,0.680229,0.0375651,0.611807,0.190258,0.319763,0.133736,0.132304,0.110005,0.263127,0.163037,0.597448,0.187598,0.140202,0.642456,0.10298,0.585995,0.999653,0.671993,0.997466,0.327515,0.813331,0.366606,0.752777,0.866299,0.499977,0.769011,0.372648,0.912277,0.0812739,0.0826722,0.484368,0.214885,0.479508,0.646459,0.168726,0.717302,0.0190559,0.477882,0.877939,0.0563215,0.467346,0.294068,0.465228,0.507805,0.323269,0.351941,0.816888,0.340667,0.548596,0.600809,0.76122,0.460429,0.978286,0.62962,0.0196304,0.282943,0.408355,0.904469,0.373421,0.844247,0.331194,0.3551,0.285384,0.864818,0.139413,0.108685,0.0543252,0.450058,0.44948,0.920829,0.603672,0.336571,0.817091,0.847735,0.878806,0.215257,0.603963,0.64796,0.700351,0.846081,0.781462,0.591548,0.819028,0.950785,0.721532,0.405589,0.948189,0.193592,0.274899,0.742288,0.727072,0.881325,0.949366,0.915132,0.265844,0.544593,0.884427,0.399833,0.116518,0.738533,0.00231999,0.80572,0.929675,0.719626,0.70423,0.94158,0.994001,0.640006,0.926506,0.258873,0.435189,0.563704,0.439268,0.871199,0.222892,0.845878,0.890727,0.00819963,0.118339,0.889124,0.884879,0.823223,0.0553291,0.481839,0.543505,0.566192,0.62554,0.900057,0.687155,0.668525,0.48506,0.717558,0.220752,0.90695,0.738359,0.402502,0.662449,0.187173,0.0806936,0.654847,0.210718,0.510386,0.881073,0.924332,0.80453,0.836027,0.261313,0.152312,0.0576388,0.599378,0.292001,0.810734,0.978104,0.375682,0.367883,0.851891,0.418078,0.399026,0.144398,0.792348,0.694194,0.53837,0.243698,0.259222,0.500622,0.729798,0.465725,0.767599,0.946762,0.752997,0.193704,0.573672,0.272164,0.131527,0.973253,0.143693,0.0491577,0.909763,0.915004,0.27348,0.282229,0.344829,0.917923,0.0436265,0.928848,0.00229931,0.907315,0.666404,0.751633,0.211964,0.901153,0.690619,0.675776,0.233661,0.187206,0.701379,0.8978,0.280068,0.669894,0.770105,0.233626,0.48732,0.510808,0.888455,0.594492,0.440115,0.754973,0.253238,0.219852,0.811687,0.42262,0.26969,0.935994,0.26748,0.565014,0.856403,0.420448,0.785474,0.565178,0.147991,0.852398,0.319097,0.184371,0.386389,0.763834,0.984347,0.457186,0.147913,0.0656809,0.313105,0.887482,0.263917,0.192397,0.912271,0.067189,0.755978,0.224042,0.332238,0.419228,0.330405,0.951863,0.237715,0.903381,0.930194,0.746262,0.665159,0.89304,0.210452,0.00608766,0.0973474,0.171402,0.112296,0.668171,0.71704,0.602864,0.469503,0.625333,0.0315644,0.95551,0.000308037,0.154101,0.178335,0.0255054,0.97585,0.0476094,0.225772,0.349857,0.846621,0.617886,0.42529,0.750261,0.228357,0.741499,0.867146,0.92582,0.165743,0.622799,0.71717,0.908721,0.267912,0.53613,0.456072,0.106825,0.683921,0.0196127,0.831739,0.0867022,0.709519,0.583059,0.689141,0.901909,0.428894,0.371591,0.738444,0.374976,0.200829,0.874068,0.852748,0.906223,0.519516,0.330335,0.795422,0.112189,0.298155,0.209586,0.596967,0.437569,0.606115,0.130825,0.0842482,0.605947,0.0349348,0.0990491,0.164002,0.999206,0.794869,0.353958,0.301623,0.692196,0.762998,0.0873923,0.674387,0.140995,0.708247,0.700121,0.133318,0.573149,0.976391,0.727884,0.932036,0.654056,0.12915,0.329634,0.562377,0.878789,0.616433,0.903463,0.409261,0.419718,0.654335,0.348453,0.991787,0.117801,0.912913,0.260537,0.363641,0.62601,0.0828858,0.856094,0.712139,0.579644,0.22028,0.908228,0.29586,0.620405,0.458045,0.292766,0.278315,0.912371,0.08377,0.476993,0.250258,0.839357,0.345651,0.710926,0.554265,0.685846,0.355538,0.354804,0.0981529,0.439398,0.149989,0.0025664,0.362264,0.708986,0.896762,0.9618,0.0247419,0.171139,0.645469,0.662391,0.178136,0.173366,0.972514,0.119433,0.101473,0.513204,0.607486,0.0790074,0.119841,0.520097,0.793881,0.881154,0.805421,0.0335967,0.329985,0.702141,0.53214,0.678048,0.873261,0.456162,0.831131,0.093496,0.83693,0.611298,0.673878,0.238483,0.378993,0.632457,0.122901,0.78703,0.493699,0.227654,0.0818335,0.949183,0.762081,0.220143,0.705081,0.717128,0.484942,0.605472,0.22727,0.76127,0.759616,0.00341171,0.336794,0.287575,0.118013,0.642624,0.101482,0.662958,0.88127,0.125552,0.139889,0.46289,0.174048,0.900454,0.796436,0.685297,0.972166,0.793267,0.861207,0.649105,0.177207,0.725757,0.869656,0.747302,0.158294,0.316171,0.315184,0.868366,0.515706,0.681881,0.811759,0.764123,0.929037,0.404122,0.354049,0.993129,0.548301,0.659468,0.510266,0.564322,0.970977,0.153489,0.65153,0.702572,0.827489,0.929008,0.678768,0.140391,0.506913,0.931316,0.94595,0.52517,0.83613,0.0219817,0.90329,0.0829341,0.0768875,0.502599,0.715389,0.367461,0.277289,0.592675,0.437807,0.0499613,0.130987,0.940834,0.217812,0.23346,0.274115,0.758817,0.439002,0.274045,0.766912,0.310531,0.645096,0.631493,0.527223,0.858994,0.15821,0.931874,0.174131,0.35623,0.883547,0.772863,0.164043,0.767442,0.922156,0.508873,0.730418,0.35417,0.852455,0.693767,0.755814,0.0644835,0.569533,0.708466,0.0144132,0.709806,0.75046,0.389431,0.436369,0.645972,0.675812,0.0625235,0.563196,0.726468,0.912001,0.866838,0.478487,0.339424,0.925087,0.295175,0.62465,0.0830209,0.165936,0.703595,0.0517023,0.246546,0.746348,0.73479,0.997534,0.704867,0.174024,0.602533,0.293183,0.189323,0.806125,0.855276,0.677033,0.518031,0.505795,0.428891,0.658175,0.48343,0.97208,0.0521349,0.343242,0.000546694,0.71697,0.881761,0.258422,0.115863,0.584204,0.243496,0.542541,0.142253,0.652248,0.369857,0.189686,0.87799,0.833091,0.947528,0.0385059,0.819131,0.352926,0.272096,0.666856,0.95204,0.173408,0.703832,0.700992,0.965672,0.201839,0.0800684,0.485767,0.854456,0.805466,0.221356,0.428494,0.134462,0.371273,0.602196,0.812321,0.788697,0.940555,0.243855,0.219513,0.0525224,0.942404,0.14387,0.684887,0.730096,0.380052,0.163381,0.366746,0.758135,0.0249129,0.794142,0.409913,0.820394,0.934876,0.427267,0.743956,0.0980967,0.489998,0.508579,0.285588,0.0905139,0.00240958,0.0822214,0.0774847,0.860703,0.3247,0.724858,0.358614,0.897322,0.891923,0.974157,0.42342,0.523474,0.466199,0.763448,0.126758,0.621062,0.484331,0.882007,0.707481,0.357021,0.242644,0.73049,0.0802655,0.145791,0.47142,0.168487,0.329486,0.855266,0.280085,0.436039,0.745128,0.25047,0.342766,0.624583,0.956146,0.872747,0.634048,0.475467,0.17363,0.425458,0.877545,0.192652,0.769863,0.544052,0.109902,0.500428,0.359856,0.849741,0.714425,0.51172,0.904623,0.131693,0.727252,0.890838,0.452852,0.820833,0.744018,0.146328,0.721187,0.581422,0.567393,0.291286,0.491775,0.869761,0.769892,0.0859506,0.0377944,0.404353,0.400697,0.428002,0.807689,0.467089,0.752094,0.566876,0.402943,0.160012,0.332893,0.0474777,0.598579,0.0747108,0.80211,0.0233132,0.334726,0.640434,0.998524,0.898569,0.28657,0.749062,0.682624,0.226344,0.542714,0.969172,0.885961,0.385952,0.735996,0.351462,0.0397961,0.0336716,0.945642,0.51354,0.695388,0.788639,0.627213,0.488391,0.026366,0.252658,0.401472,0.815012,0.0167149,0.526126,0.0808845,0.36359,0.476631,0.796803,0.947824,0.344509,0.201173,0.161205,0.70984,0.0702429,0.267023,|0.841864,0.202747,0.100094,0.531684,0.800521,0.0245388,0.679211,0.634322,0.791079,0.718784,0.534559,0.330674,0.524879,0.737246,0.509086,0.13109,0.737703,0.0242472,0.108071,0.346258,0.628091,0.898251,0.962837,0.741603,0.281645,0.163235,0.981778,0.265856,0.709238,0.956782,0.225002,0.579222,0.910248,0.587454,0.9957,0.169861,0.393297,0.844373,0.371301,0.647056,0.422998,0.995547,0.803307,0.0777923,0.251386,0.98202,0.982878,0.562634,0.384429,0.0410862,0.48329,0.708658,0.78297,0.702945,0.424456,0.30785,0.775343,0.493241,0.0453149,0.471238,0.23085,0.910564,0.243085,0.368216,0.576573,0.485543,0.517727,0.636405,0.236367,0.687835,0.782309,0.625357,0.00500906,0.252547,0.143477,0.0250465,0.54972,0.159918,0.56784,0.667965,0.761668,0.363169,0.115164,0.584444,0.969306,0.74129,0.413148,0.0869641,0.280663,0.202528,0.235871,0.278374,0.0568702,0.144383,0.0783082,0.0426248,0.721697,0.878711,0.155601,0.530523,0.0185918,0.498603,0.679265,0.516424,0.104329,0.0911718,0.122041,0.399133,0.0704432,0.658332,0.334306,0.983669,0.483599,0.947669,0.909511,0.618048,0.9893,0.841533,0.596878,0.469414,0.00360286,0.821738,0.41547,0.915251,0.967679,0.0175684,0.103981,0.77933,0.105866,0.542174,0.888712,0.77221,0.401731,0.459257,0.919734,0.509021,0.871321,0.2502,0.594962,0.307882,0.417363,0.850357,0.0907163,0.279575,0.783061,0.628691,0.484336,0.0970712,0.657573,0.690241,0.25732,0.668999,0.653342,0.0764755,0.480559,0.0918258,0.157876,0.57394,0.118497,0.0257546,0.286979,0.566475,0.432029,0.0619807,0.233114,0.00242436,0.939521,0.457601,0.813595,0.0781866,0.301384,0.905918,0.779642,0.991124,0.772042,0.755112,0.0473521,0.882361,0.440712,0.833747,0.92365,0.108143,0.358233,0.776944,0.242392,0.351335,0.651722,0.368741,0.0905204,0.259462,0.423631,0.226731,0.0140314,0.991788,0.328798,0.00960243,0.715537,0.286584,0.617189,0.0249581,0.9684,0.498002,0.508995,0.607389,0.786147,0.217851,0.410982,0.837154,0.27574,0.627783,0.901862,0.0339386,0.88195,0.445572,0.475716,0.348392,0.609137,0.467169,0.189002,0.224391,0.983633,0.716709,0.934795,0.685498,0.629656,0.22674,0.801068,0.461333,0.553472,0.627403,0.450132,0.903109,0.57058,0.450226,0.797828,0.464698,0.334019,0.829593,0.232675,0.443281,0.427462,0.826412,0.844605,0.954764,0.139121,0.499181,0.977891,0.807139,0.325371,0.606987,0.183272,0.876591,0.3129,0.17578,0.264708,0.0544106,0.189114,0.153529,0.365572,0.424936,0.283811,0.627289,0.627563,0.169498,0.0531309,0.885366,0.496417,0.312269,0.253958,0.779299,0.955492,0.363579,0.743612,0.845701,0.0357972,0.698617,0.0411164,0.245717,0.760158,0.826491,0.504005,0.280853,0.0433394,0.30505,0.0444955,0.267096,0.470714,0.957738,0.524473,0.896027,0.836814,0.115471,0.241495,0.212934,0.367035,0.0374025,0.432797,0.621493,0.0411916,0.760349,0.346806,0.643957,0.115374,0.0454156,0.41076,0.211565,0.618318,0.0332323,0.593093,0.87423,0.829143,0.569973,0.15134,0.552565,0.712975,0.359544,0.425636,0.625443,0.753709,0.823696,0.788493,0.803868,0.669636,0.556162,0.807097,0.639419,0.207385,0.74442,0.789264,0.0348216,0.808017,0.744827,0.216385,0.678048,0.237595,0.243487,0.678302,0.150122,0.826226,0.610857,0.191261,0.93919,0.512261,0.418586,0.128212,0.436144,0.405809,0.108187,0.74239,0.958521,0.0756199,0.969834,0.154591,0.0466927,0.323589,0.293071,0.762803,0.634884,0.0251185,0.292286,0.623491,0.247176,0.0547708,0.283872,0.897242,0.598974,0.235998,0.450113,0.403179,0.5407,0.396207,0.836306,0.7653,0.490455,0.186432,0.00211257,0.241893,0.730592,0.298181,0.355687,0.356367,0.973348,0.377282,0.201069,0.616352,0.407656,0.0807242,0.560682,0.721653,0.571117,0.203944,0.0160352,0.177097,0.0367272,0.176375,0.6773,0.226006,0.506109,0.255568,0.932767,0.948305,0.944558,0.169903,0.148558,0.017032,0.121187,0.792649,0.252438,0.788209,0.258174,0.518104,0.0118376,0.559335,0.327057,0.932271,0.317271,0.734656,0.154785,0.494741,0.0912943,0.989756,0.354764,0.767079,0.775122,0.767664,0.0353684,0.932843,0.542884,0.30912,0.845454,0.664481,0.419005,0.363512,0.486968,0.776314,0.896263,0.648069,0.678315,0.163495,0.446161,0.127321,0.723483,0.345859,0.973068,0.525346,0.359494,0.800443,0.0569699,0.326856,0.5549,0.802067,0.362912,0.366321,0.933092,0.884773,0.888796,0.0252909,0.984121,0.425414,0.847517,0.801592,0.153497,0.816654,0.0551543,0.0317874,0.891117,0.181339,0.466401,0.657481,0.329454,0.183811,0.773431,0.659396,0.613624,0.423608,0.603363,0.963724,0.677461,0.292924,0.487028,0.921945,0.38495,0.812016,0.262794,0.163454,0.6825,0.166514,0.787969,0.226139,0.658973,0.195951,0.965501,0.0966167,0.486999,0.192345,0.832514,0.439729,0.212571,0.0121914,0.952114,0.258863,0.0412771,0.760527,0.766597,0.135395,0.567623,0.399116,0.919638,0.407604,0.434402,0.213553,0.893603,0.516624,0.311803,0.0287066,0.224957,0.12422,0.843361,0.348556,0.581115,0.698189,0.667882,0.871229,0.300368,0.21511,0.0835506,0.678403,0.0923452,0.354576,0.452916,0.872868,0.904832,0.23348,0.562706,0.102286,0.865577,0.32946,0.506974,0.771594,0.549314,0.584205,0.301213,0.4668,0.10445,0.0621787,0.728145,0.926953,0.497273,0.680074,0.0246487,0.22645,0.0306234,0.845661,0.734285,0.15389,0.610857,0.754872,0.720839,0.777438,0.414798,0.328159,0.247424,0.153222,0.243913,0.947347,0.935005,0.954798,0.512261,0.485009,0.473785,0.871393,0.337834,0.462209,0.47294,0.681669,0.577512,0.00414854,0.5862,0.872865,0.422965,0.54781,0.933165,0.903291,0.195596,0.630772,0.190549,0.8227,0.247083,0.837519,0.0274899,0.792744,0.606873,0.917406,0.409168,0.573229,0.301296,0.787318,0.990555,0.578759,0.770036,0.874891,0.315708,0.753343,0.401642,0.924512,0.163604,0.514347,0.775041,0.352176,0.304092,0.306646,0.255838,0.676702,0.0230101,0.399599,0.487609,0.467545,0.434844,0.151941,0.344374,0.580227,0.353668,0.232931,0.583348,0.987391,0.56757,0.477216,0.646221,0.367613,0.809311,0.238535,0.353735,0.198428,0.452132,0.285046,0.418113,0.103879,0.550962,0.192107,0.264285,0.286854,0.0494005,0.425838,0.263182,0.438654,0.183618,0.155072,0.831229,0.520346,0.635323,0.968263,0.100146,0.423484,0.574745,0.421544,0.715684,0.42466,0.886815,0.732345,0.85126,0.198098,0.534177,0.857492,0.239345,0.0529925,0.41153,0.50554,0.558667,0.485836,0.0334563,0.763581,0.565174,0.224321,0.275648,0.876527,0.369394,0.764669,0.308775,0.877159,0.453473,0.572144,0.958869,0.291101,0.332713,0.667017,0.2241,0.235152,0.0763369,0.918515,0.606596,0.633084,0.279702,0.31814,0.783212,0.52349,0.367409,0.950976,0.0777677,0.0737879,0.8413,0.26267,0.140943,0.0144271,0.627516,0.698317,0.378332,0.0520208,0.337119,0.57538,0.732378,0.562868,0.0795324,0.708229,0.300709,0.854399,0.998393,0.351556,0.691622,0.489316,0.410478,0.849474,0.165916,0.266767,0.117784,0.190861,0.2875,0.480616,0.662333,0.553431,0.525795,0.521952,0.005481,0.574362,0.879045,0.598167,0.639405,0.593693,0.795405,0.350378,0.189173,0.944672,0.139616,0.346239,0.270591,0.0220501,0.634967,0.402417,0.0379294,0.657559,0.0567668,0.710361,0.805933,0.811728,0.976414,0.894645,0.0553893,0.21896,0.681693,0.163325,0.199949,0.000888705,0.343046,0.903737,0.840907,0.628823,0.703709,0.671938,0.314983,0.552321,0.396943,0.835143,0.97749,0.678396,0.304274,0.909702,0.813483,0.406107,0.278669,0.194303,0.418037,0.298767,0.360772,0.411122,0.0188584,0.774099,0.807316,0.965733,0.915811,0.291023,0.201248,0.991466,0.17868,0.0156657,0.298596,0.584271,0.611838,0.0726718,0.484724,0.163064,0.0122589,0.67454,0.610524,0.549333,0.215791,0.903401,0.62639,0.624387,0.43672,0.89431,0.357277,0.632541,0.56247,0.421489,0.665737,0.643057,0.788684,0.0325817,0.519764,0.393505,0.870739,0.0471594,0.666837,0.0417054,0.0321241,0.757646,0.101773,0.450587,0.0912077,0.231297,0.966162,0.773311,0.329493,0.725916,0.530049,0.358703,0.224964,0.620517,0.170977,0.505595,0.389958,0.438003,0.214682,0.999368,0.0386652,0.479313,0.298976,0.396693,0.325992,0.0743184,0.255268,0.861556,0.886699,0.296057,0.235808,0.584489,0.190546,0.0992521,0.942095,0.094883,0.906784,0.716065,0.56715,0.105442,0.241801,0.90515,0.587727,0.357021,0.0701296,0.101986,0.128819,0.3696,0.92314,0.881591,0.1442,0.364567,0.988852,0.799891,0.275523,0.568162,0.743832,0.112297,0.647521,0.811518,0.818583,0.612895,0.947416,0.518519,0.441822,0.448557,0.44259,0.302822,0.418976,0.525071,0.293985,0.0157365,0.243335,0.649934,0.992085,0.265628,0.564217,0.767787,0.00819659,0.994243,0.483312,0.289693,0.895892,0.653005,0.00475013,0.280631,0.481904,0.887558,0.306987,0.0848395,0.805312,0.697593,0.806284,0.316209,0.51194,0.576705,0.924403,0.778637,0.869296,0.632796,0.815733,0.402213,0.65302,0.76196,0.690388,0.590761,0.847509,0.568311,0.666161,0.763381,0.13125,0.0458856,0.0859215,0.767786,0.897986,0.0561174,0.803116,0.255829,0.632772,0.540262,0.858195,0.784725,0.74121,0.0305728,0.769314,0.0430806,0.882729,0.102593,0.999694,0.868568,0.525178,0.958387,0.447487,0.608571,0.716065,0.114556,0.984956,0.968439,0.958378,0.324244,0.877917,0.217389,0.843509,0.427063,0.740522,0.982044,0.818123,0.152678,0.806186,0.208319,0.703257,0.497129,0.632584,0.116246,0.0573125,0.80606,0.654129,0.749252,0.600483,0.914559,0.236006,0.187077,0.92005,0.257714,0.901729,0.202231,0.0576871,0.0373476,0.415412,0.721985,0.624176,0.533004,0.244961,0.188815,0.958548,0.243456,0.929857,|0.781709,0.361291,0.800424,0.526886,0.603344,0.313078,0.331921,0.931287,0.729576,0.926276,0.578859,0.768186,0.265466,0.563784,0.436416,0.263846,0.327261,0.337284,0.813196,0.377928,0.0656466,0.123226,0.119653,0.32058,0.496376,0.501438,0.0871996,0.358996,0.21078,0.0212207,0.235448,0.421879,0.247514,0.579867,0.135975,0.604937,0.214322,0.62282,0.764345,0.5381,0.162757,0.291766,0.168835,0.222414,0.478911,0.386837,0.370674,0.123414,0.209993,0.516251,0.927813,0.87576,0.876089,0.583852,0.190599,0.60084,0.0276939,0.729514,0.978067,0.288704,0.0254646,0.709832,0.361086,0.432858,0.464555,0.945911,0.879928,0.538183,0.1127,0.829724,0.39581,0.681145,0.401603,0.990067,0.411724,0.86906,0.442382,0.790762,0.874901,0.109941,0.59636,0.961047,0.0565429,0.0684878,0.852671,0.708916,0.0226362,0.574379,0.188353,0.40058,0.468871,0.693946,0.739813,0.0795631,0.62114,0.708274,0.296153,0.5028,0.330481,0.0658552,0.474143,0.605312,0.393788,0.193008,0.984515,0.159221,0.20146,0.652805,0.734151,0.709928,0.670682,0.160264,0.644776,0.946636,0.226466,0.854728,0.964797,0.472828,0.950908,0.778164,0.0405228,0.53442,0.0826255,0.454872,0.84672,0.957341,0.371145,0.764091,0.5165,0.129229,0.539796,0.2875,0.542077,0.886497,0.64681,0.530751,0.129535,0.246962,0.716716,0.545767,0.776619,0.250557,0.886997,0.369478,0.119932,0.772488,0.625048,0.00316018,0.230817,0.216524,0.962057,0.424622,0.362534,0.106433,0.47698,0.464654,0.884925,0.37718,0.823916,0.666587,0.899782,0.706346,0.951684,0.71605,0.030867,0.308943,0.25402,0.307941,0.245189,0.843464,0.823928,0.361822,0.467684,0.511112,0.693843,0.811117,0.867456,0.29263,0.708529,0.473796,0.101999,0.612966,0.145989,0.966943,0.641279,0.933017,0.465193,0.321314,0.804715,0.880618,0.0951644,0.72833,0.226042,0.93072,0.848937,0.579108,0.886661,0.485545,0.0417882,0.59275,0.676854,0.439382,0.87063,0.360804,0.0563453,0.577803,0.540555,0.642125,0.847815,0.8412,0.885688,0.943053,0.555629,0.798669,0.176595,0.575924,0.697025,0.316527,0.710143,0.961565,0.0383083,0.448364,0.870831,0.770514,0.720394,0.726331,0.718721,0.83139,0.812839,0.387588,0.300848,0.33329,0.875192,0.421697,0.677793,0.935102,0.52982,0.0230989,0.719348,0.316353,0.755097,0.732723,0.463016,0.879868,0.372944,0.490363,0.166796,0.661687,0.075685,0.454488,0.243818,0.889346,0.569773,0.226014,0.625749,0.806093,0.0295035,0.416467,0.517896,0.361463,0.51498,0.242593,0.32018,0.532879,0.971502,0.306313,0.687062,0.881106,0.31155,0.411,0.0402046,0.508308,0.344982,0.86371,0.196286,0.331969,0.398663,0.743601,0.704236,0.301625,0.569009,0.71325,0.637796,0.913476,0.639446,0.942575,0.233832,0.654823,0.114448,0.713538,0.156522,0.704949,0.637398,0.454793,0.60105,0.664249,0.565661,0.303864,0.316328,0.0902224,0.769801,0.804346,0.964152,0.782508,0.928553,0.15712,0.62104,0.086552,0.62212,0.86156,0.451213,0.858274,0.686469,0.723637,0.197989,0.64216,0.0178358,0.161222,0.76496,0.452775,0.789776,0.166653,0.480333,0.0983811,0.998926,0.744899,0.717659,0.173367,0.928808,0.186336,0.387325,0.27188,0.288241,0.227583,0.253077,0.0465464,0.956074,0.0155054,0.424191,0.552852,0.525892,0.254945,0.875203,0.0638015,0.0113979,0.929063,0.87728,0.241324,0.423117,0.442281,0.850683,0.651227,0.0984839,0.19477,0.0232894,0.314819,0.205924,0.118814,0.115809,0.967413,0.563835,0.106268,0.311262,0.260067,0.198703,0.720997,0.7653,0.177376,0.492857,0.0855383,0.811735,0.416141,0.674699,0.184679,0.0433842,0.353928,0.461891,0.881874,0.939838,0.219816,0.394617,0.0291563,0.168059,0.902342,0.709854,0.0731422,0.252765,0.678563,0.193971,0.638547,0.934457,0.67019,0.623115,0.265298,0.195513,0.655989,0.954588,0.936887,0.22495,0.15687,0.0355027,0.641497,0.818185,0.664214,0.421444,0.423177,0.765816,0.516642,0.653057,0.128804,0.186896,0.759554,0.990157,0.0971708,0.686851,0.233801,0.423103,0.955318,0.163167,0.935586,0.222956,0.814875,0.536734,0.170503,0.963318,0.108663,0.519239,0.403245,0.970349,0.594825,0.148998,0.0512782,0.770718,0.601246,0.485563,0.485821,0.529345,0.735244,0.098953,0.542196,0.764989,0.897557,0.79964,0.255505,0.39174,0.0711348,0.69982,0.295251,0.955192,0.625062,0.28646,0.903386,0.329163,0.809596,0.135189,0.565796,0.0982628,0.113661,0.208666,0.698949,0.538619,0.284085,0.625717,0.019751,0.232533,0.886707,0.917232,0.780578,0.899616,0.779678,0.709255,0.251681,0.540197,0.570033,0.078403,0.15791,0.41545,0.411228,0.401072,0.253739,0.797847,0.381934,0.0733224,0.436305,0.777759,0.842523,0.422222,0.956999,0.560622,0.0689583,0.8736,0.162989,0.0337757,0.615516,0.586693,0.118971,0.490254,0.269611,0.3201,0.10933,0.171583,0.411105,0.0300526,0.273553,0.582009,0.373839,0.054597,0.71424,0.675574,0.0930811,0.284446,0.336688,0.880212,0.416283,0.0263353,0.792959,0.559786,0.933655,0.453083,0.881523,0.713574,0.184849,0.3971,0.127171,0.78949,0.464426,0.28011,0.438003,0.165869,0.519654,0.340322,0.593317,0.862184,0.16691,0.566521,0.881681,0.495467,0.507497,0.805834,0.88413,0.536124,0.496798,0.451786,0.0516582,0.0916372,0.831362,0.692938,0.762603,0.674381,0.709249,0.455278,0.707474,0.978033,0.68872,0.629137,0.509266,0.789302,0.908144,0.153109,0.59916,0.881805,0.0846367,0.586313,0.609688,0.457606,0.0418353,0.270955,0.718931,0.672987,0.984489,0.452424,0.481562,0.484139,0.169258,0.584045,0.235908,0.0179392,0.913963,0.315247,0.273275,0.239367,0.686342,0.154144,0.472113,0.589277,0.642006,0.855467,0.938359,0.890391,0.847179,0.0094198,0.97799,0.290974,0.736805,0.447011,0.499385,0.318226,0.0196648,0.154391,0.395426,0.459642,0.578476,0.611443,0.515215,0.412489,0.879687,0.821244,0.0380604,0.365126,0.910765,0.805602,0.467549,0.0595073,0.176657,0.102141,0.627096,0.618563,0.316105,0.543137,0.78409,0.795229,0.938118,0.739253,0.240494,0.632845,0.646486,0.465164,0.898746,0.701593,0.673644,0.913492,0.460461,0.0960726,0.442453,0.242597,0.238115,0.212764,0.911909,0.623285,0.941356,0.543049,0.329876,0.744844,0.847895,0.965023,0.206435,0.0737685,0.599603,0.528811,0.367878,0.588703,0.93025,0.215985,0.141233,0.270789,0.843953,0.0987961,0.935107,0.588247,0.415688,0.0772164,0.473477,0.192296,0.670456,0.60552,0.996065,0.12929,0.427458,0.935927,0.818699,0.220966,0.84156,0.257936,0.796691,0.125107,0.441794,0.0527403,0.395316,0.328749,0.00674492,0.893181,0.303868,0.735985,0.139903,0.366888,0.444496,0.240062,0.773757,0.859997,0.626049,0.112593,0.994532,0.120462,0.773044,0.783596,0.739639,0.704899,0.112313,0.1801,0.644814,0.896459,0.164523,0.804653,0.579292,0.213595,0.740262,0.526926,0.295948,0.0505684,0.221075,0.734815,0.966629,0.194894,0.101184,0.835734,0.771332,0.246708,0.269125,0.787212,0.0970246,0.90517,0.837327,0.354644,0.31492,0.0378859,0.782892,0.0204159,0.668006,0.477225,0.134906,0.196151,0.0193624,0.407243,0.512787,0.0250619,0.764981,0.236656,0.601557,0.782576,0.491228,0.483958,0.42033,0.647396,0.743371,0.325672,0.702938,0.528587,0.595168,0.399529,0.976744,0.723137,0.475554,0.558985,0.191313,0.0187438,0.411915,0.232616,0.858015,0.441078,0.937224,0.805326,0.75847,0.425836,0.232041,0.260661,0.987893,0.341805,0.0727626,0.596783,0.516311,0.464791,0.490347,0.216483,0.00966173,0.581064,0.991324,0.652861,0.629149,0.202949,0.22659,0.109487,0.617729,0.160786,0.884575,0.958782,0.531528,0.279226,0.0255638,0.361161,0.505249,0.72694,0.763786,0.497452,0.145009,0.519375,0.622601,0.0649237,0.555946,0.719734,0.294046,0.0527394,0.135522,0.582558,0.790634,0.908451,0.581054,0.559307,0.364564,0.211714,0.913345,0.981533,0.974122,0.126074,0.0996425,0.437901,0.419472,0.0212641,0.155296,0.135373,0.991043,0.712139,0.871546,0.219744,0.589525,0.207377,0.687888,0.985923,0.423241,0.874772,0.239593,0.582047,0.887604,0.216214,0.673402,0.179475,0.972483,0.154189,0.311964,0.34878,0.772881,0.814481,0.0138478,0.379073,0.705275,0.734916,0.812262,0.197968,0.541279,0.993005,0.648543,0.717292,0.490648,0.666346,0.882273,0.0122982,0.619739,0.135676,0.36554,0.648153,0.580552,0.221461,0.289498,0.795941,0.652349,0.0309205,0.977591,0.33255,0.509519,0.817113,0.791832,0.319555,0.122011,0.24789,0.493092,0.949662,0.998459,0.108041,0.645984,0.0858172,0.982198,0.250518,0.507816,0.609086,0.633964,0.203893,0.129024,0.933336,0.664129,0.776807,0.883819,0.0832136,0.362952,0.551229,0.219828,0.404347,0.943809,0.614891,0.649534,0.384262,0.673419,0.833845,0.317267,0.875529,0.591457,0.118051,0.971521,0.942586,0.554616,0.827899,0.86891,0.648444,0.502932,0.920952,0.791125,0.0875463,0.0128824,0.93294,0.64611,0.824664,0.130821,0.0351491,0.70828,0.0783449,0.0057658,0.215401,0.521858,0.655632,0.775678,0.346544,0.137486,0.645713,0.00119716,0.315522,0.534451,0.482254,0.297101,0.203196,0.747021,0.74001,0.806634,0.848969,0.524055,0.335344,0.650068,0.22601,0.251411,0.908435,0.644768,0.32479,0.699654,0.499877,0.891793,0.951891,0.942203,0.0615242,0.0889034,0.69072,0.636704,0.00742352,0.346707,0.978827,0.690063,0.904833,0.452843,0.870997,0.300893,0.87307,0.901488,0.783795,0.00881231,0.117432,0.570379,0.183345,0.0801557,0.404078,0.629904,0.853765,0.391332,0.7567,0.533809,0.496654,0.745313,0.330861,0.199828,0.166024,0.327513,0.442386,0.238548,0.466681,0.0559922,0.316104,0.283461,0.164588,0.704454,0.473211,0.814477,0.616808,0.964958,0.464244,0.734732,|0.203565,0.210626,0.941251,0.343191,0.210932,0.95802,0.868544,0.244666,0.575935,0.482699,0.0918817,0.143632,0.931866,0.309505,0.235977,0.922209,0.508474,0.0502609,0.481479,0.489429,0.575038,0.216762,0.521397,0.0629551,0.346228,0.836509,0.243135,0.988109,0.697431,0.0958885,0.771282,0.642685,0.905585,0.545297,0.740452,0.378409,0.889866,0.657129,0.344237,0.409564,0.793309,0.742666,0.26134,0.795949,0.189862,0.410912,0.796092,0.969451,0.671105,0.334881,0.722596,0.895146,0.860001,0.283888,0.210045,0.205453,0.102968,0.384352,0.297346,0.348691,0.45002,0.181688,0.014844,0.988192,0.924513,0.549839,0.924399,0.950364,0.165574,0.304693,0.194293,0.827914,0.482113,0.360891,0.180475,0.990179,0.954205,0.448385,0.751676,0.15428,0.774965,0.558127,0.428508,0.49684,0.979791,0.530791,0.980275,0.712223,0.935794,0.406969,0.785462,0.482273,0.6889,0.221467,0.604077,0.384345,0.872735,0.803716,0.234703,0.278719,0.802064,0.98707,0.865232,0.022592,0.975827,0.856201,0.680278,0.589249,0.143977,0.272545,0.268066,0.286432,0.171047,0.975908,0.225928,0.216194,0.54995,0.902365,0.866526,0.162704,0.5034,0.82873,0.096507,0.142902,0.0724183,0.902863,0.275893,0.178965,0.349504,0.665497,0.0573799,0.491655,0.191905,0.124628,0.00412768,0.794082,0.459402,0.665009,0.291546,0.462451,0.600232,0.636671,0.563603,0.286615,0.773092,0.987326,0.816069,0.958297,0.64437,0.513924,0.313633,0.316123,0.436871,0.145093,0.016211,0.844775,0.258497,0.681094,0.153989,0.744088,0.31636,0.0500916,0.0621158,0.582039,0.289554,0.342607,0.29323,0.291276,0.20044,0.00366938,0.145693,0.921728,0.928449,0.407984,0.926876,0.0653165,0.370388,0.807251,0.412609,0.857059,0.209609,0.133999,0.0858818,0.0173059,0.0814643,0.655143,0.0248826,0.427477,0.653792,0.900513,0.540691,0.458439,0.14276,0.389256,0.709547,0.675094,0.00375926,0.979985,0.976688,0.200429,0.703523,0.824003,0.238161,0.832843,0.862351,0.555656,0.572311,0.91652,0.660879,0.969745,0.0676473,0.701059,0.420517,0.144041,0.564061,0.0625313,0.13206,0.401981,0.115976,0.182211,0.452034,0.0744385,0.690188,0.0888345,0.960941,0.222666,0.560967,0.0868098,0.849473,0.256436,0.572959,0.746262,0.349413,0.215397,0.496777,0.28269,0.101446,0.660232,0.469241,0.981704,0.386835,0.70949,0.287297,0.0923738,0.407721,0.297383,0.294212,0.148894,0.771996,0.295852,0.949895,0.361682,0.679863,0.9977,0.407094,0.112653,0.00308442,0.0833023,0.123142,0.142957,0.517087,0.689386,0.178218,0.552601,0.843321,0.834087,0.390834,0.00685757,0.954223,0.282138,0.756349,0.767928,0.968801,0.706214,0.485653,0.607983,0.193654,0.706905,0.906062,0.169152,0.493255,0.777012,0.17368,0.0122264,0.8804,0.414797,0.269119,0.723083,0.154434,0.93039,0.818841,0.466244,0.501229,0.282536,0.0161499,0.106324,0.811725,0.438034,0.90958,0.541395,0.226243,0.792688,0.361004,0.0335363,0.606776,0.0580217,0.909231,0.895281,0.582034,0.911967,0.962657,0.958964,0.804126,0.0249895,0.0163869,0.158797,0.404344,0.88312,0.866063,0.826656,0.937967,0.48052,0.906678,0.544232,0.526277,0.26309,0.798959,0.743273,0.0769146,0.289128,0.014643,0.313411,0.0801526,0.373477,0.080924,0.648303,0.986702,0.440588,0.485236,0.719642,0.649998,0.0513372,0.0193202,0.146019,0.473172,0.971101,0.949772,0.643862,0.490223,0.312468,0.793269,0.00279468,0.889478,0.0776283,0.705085,0.523307,0.274692,0.103409,0.265297,0.32332,0.240266,0.31217,0.222311,0.472503,0.93006,0.0213307,0.891124,0.801629,0.464237,0.43766,0.20508,0.912474,0.736604,0.0235652,0.740719,0.906283,0.993365,0.790407,0.961778,0.895992,0.0958092,0.505127,0.609702,0.487862,0.723498,0.0978613,0.499778,0.642529,0.576391,0.748544,0.964975,0.663386,0.540347,0.586881,0.303083,0.336358,0.295832,0.880121,0.514937,0.768062,0.849204,0.869775,0.0353898,0.114818,0.372027,0.13335,0.955471,0.67853,0.378948,0.966288,0.707886,0.820032,0.427934,0.312878,0.927752,0.886958,0.485202,0.712858,0.453027,0.156737,0.0961007,0.0432432,0.0411531,0.31901,0.69228,0.437149,0.117257,0.0278906,0.473967,0.422891,0.882083,0.877208,0.040402,0.636563,0.822177,0.782265,0.165853,0.374517,0.642424,0.550984,0.755299,0.748079,0.168044,0.318332,0.950779,0.65598,0.869839,0.325523,0.33485,0.982172,0.420308,0.409588,0.103945,0.638813,0.715691,0.46944,0.249914,0.225535,0.230327,0.680717,0.437645,0.321198,0.454262,0.945446,0.701967,0.477465,0.796811,0.796452,0.862612,0.644725,0.8507,0.894011,0.154128,0.829287,0.00321984,0.689097,0.661123,0.383306,0.457994,0.152322,0.228494,0.593639,0.253311,0.776077,0.30801,0.0855694,0.407844,0.610863,0.64317,0.0426486,0.671501,0.604968,0.392241,0.587603,0.370909,0.468696,0.167409,0.868665,0.768079,0.896043,0.98291,0.0792304,0.497783,0.643915,0.315617,0.920109,0.165699,0.0136515,0.653405,0.0453,0.988487,0.578085,0.255901,0.0188428,0.297966,0.813331,0.347606,0.355848,0.666684,0.750413,0.81425,0.570664,0.830473,0.702439,0.42316,0.725819,0.171579,0.959826,0.944554,0.113857,0.695273,0.20119,0.992212,0.79104,0.377352,0.506739,0.439845,0.694753,0.635343,0.855561,0.732957,0.0900164,0.40294,0.704796,0.294102,0.761685,0.20586,0.884605,0.81723,0.232244,0.958358,0.716379,0.387726,0.141132,0.0191478,0.807985,0.700324,0.732526,0.34212,0.178409,0.903951,0.760326,0.352193,0.654463,0.422197,0.235793,0.417167,0.255941,0.965855,0.758692,0.69733,0.523896,0.220586,0.262023,0.472041,0.726157,0.143603,0.991054,0.230609,0.765199,0.669107,0.567885,0.876314,0.951298,0.795125,0.91526,0.0613183,0.608133,0.593613,0.178552,0.731933,0.520186,0.244267,0.184751,0.131813,0.542495,0.121081,0.00276035,0.58024,0.12772,0.579042,0.443744,0.160191,0.191843,0.591517,0.388483,0.0722285,0.785434,0.521636,0.200456,0.555803,0.966743,0.615102,0.678615,0.174991,0.899156,0.172581,0.226136,0.209066,0.508352,0.891878,0.189456,0.640912,0.477374,0.155594,0.119261,0.72036,0.30494,0.307175,0.294858,0.553765,0.635309,0.618518,0.189779,0.520587,0.147649,0.559179,0.551085,0.381058,0.174248,0.41007,0.915876,0.575574,0.497115,0.0510868,0.362142,0.966059,0.854181,0.438673,0.336473,0.105623,0.100468,0.26536,0.155,0.593301,0.755478,0.0828637,0.775434,0.0620891,0.414713,0.0381064,0.0532715,0.451186,0.623444,0.543369,0.82602,0.312872,0.347693,0.766269,0.20683,0.463381,0.216978,0.0826734,0.299405,0.642529,0.738239,0.192779,0.931655,0.388388,0.297401,0.643106,0.66168,0.78149,0.10611,0.943681,0.033216,0.659444,0.926781,0.956965,0.516299,0.982412,0.0919044,0.850937,0.635989,0.954416,0.949739,0.718277,0.444193,0.980569,0.318032,0.777048,0.605136,0.152872,0.293307,0.256572,0.11058,0.711694,0.713288,0.709886,0.781651,0.184099,0.65228,0.432173,0.556735,0.51759,0.317559,0.789429,0.362869,0.319388,0.62678,0.767077,0.188116,0.414605,0.546895,0.349549,0.767876,0.65875,0.213348,0.274868,0.546114,0.131089,0.752115,0.291091,0.49952,0.161488,0.477292,0.564498,0.715649,0.00590682,0.249653,0.0673586,0.529707,0.822849,0.787976,0.542799,0.206276,0.38557,0.843754,0.651977,0.945973,0.353865,0.853522,0.857109,0.184046,0.829402,0.956638,0.246104,0.963654,0.394791,0.650652,0.0223159,0.51682,0.894021,0.263203,0.421623,0.207238,0.816614,0.300439,0.743324,0.518575,0.308418,0.481906,0.623924,0.917946,0.550125,0.422231,0.244533,0.47264,0.992673,0.00151622,0.0946872,0.68033,0.684424,0.158056,0.0448242,0.993129,0.762761,0.481135,0.624663,0.581454,0.877142,0.914968,0.47669,0.4494,0.258094,0.611724,0.0583802,0.966212,0.22057,0.856572,0.381235,0.855306,0.174092,0.895772,0.352956,0.0490357,0.264222,0.735985,0.350569,0.350575,0.807789,0.834349,0.654458,0.794386,0.642285,0.245902,0.072069,0.72894,0.273644,0.922834,0.193438,0.543438,0.57992,0.903092,0.881514,0.289217,0.446212,0.926493,0.00646204,0.642109,0.259082,0.450476,0.38631,0.410573,0.0898365,0.010559,0.133128,0.139038,0.839904,0.432954,0.134352,0.769365,0.582058,0.999207,0.468401,0.619966,0.166072,0.534493,0.190084,0.587513,0.664307,0.134084,0.757618,0.483739,0.721606,0.0634508,0.341209,0.452144,0.126505,0.265561,0.279881,0.801075,0.623492,0.432165,0.995047,0.415456,0.595406,0.552362,0.692312,0.659247,0.146083,0.279021,0.661016,0.994519,0.36073,0.54325,0.134574,0.940259,0.321798,0.865118,0.0725831,0.55569,0.121742,0.702798,0.261456,0.732733,0.721851,0.478816,0.0211172,0.600036,0.354378,0.794045,0.653287,0.88126,0.938626,0.400725,0.147689,0.184151,0.94471,0.619613,0.0903496,0.0923257,0.272882,0.273811,0.5832,0.926811,0.924411,0.164566,0.436499,0.0889807,0.266984,0.684995,0.965802,0.496002,0.293165,0.888159,0.676568,0.147821,0.000986636,0.818638,0.356446,0.709638,0.950291,0.520938,0.115596,0.87802,0.165259,0.70077,0.521848,0.591613,0.0405694,0.15307,0.349198,0.298594,0.99144,0.807871,0.743014,0.961487,0.762037,0.266621,0.0969408,0.991707,0.860127,0.153323,0.614436,0.686407,0.41105,0.71704,0.974624,0.733164,0.494875,0.885845,0.140081,0.65582,0.280605,0.519801,0.60873,0.150706,0.364332,0.553953,0.694223,0.774729,0.882726,0.864565,0.221191,0.952966,0.535089,0.48061,0.715438,0.764064,0.13574,0.839484,0.139717,0.478029,0.0492957,0.184374,0.230975,0.28926,0.557376,0.272925,0.199792,0.91058,0.740563,0.974126,0.554004,0.541937,0.253525,0.811514,0.540162,0.201114,0.366239,0.321078,0.978783,0.0248982,0.46625,0.0861687,0.346372,0.44194,0.556985,0.0406383,|0.876549,0.0652689,0.0682579,0.0236397,0.126151,0.635635,0.304879,0.776871,0.508789,0.629048,0.24998,0.289741,0.94985,0.025546,0.0818091,0.134317,0.9243,0.416426,0.37446,0.946277,0.877095,0.783781,0.0723588,0.2863,0.209203,0.247593,0.425153,0.511421,0.852584,0.557689,0.392534,0.377744,0.416852,0.079522,0.447526,0.265216,0.636439,0.991237,0.555286,0.0337638,0.857757,0.935374,0.965292,0.512853,0.256816,0.882835,0.13889,0.536825,0.73408,0.352336,0.585545,0.904152,0.640592,0.949264,0.665154,0.681446,0.250477,0.526312,0.36613,0.80178,0.0166825,0.598685,0.651703,0.701897,0.609218,0.377221,0.113757,0.167747,0.56978,0.385102,0.651341,0.396806,0.78316,0.712038,0.610897,0.076299,0.919091,0.145936,0.415683,0.5931,0.828643,0.904995,0.645988,0.0727811,0.860733,0.465218,0.643536,0.266148,0.202606,0.229748,0.821275,0.841285,0.828724,0.452177,0.777524,0.839543,0.278318,0.421258,0.551873,0.121727,0.0381689,0.778455,0.617996,0.0829712,0.853046,0.540605,0.853763,0.764411,0.978167,0.688602,0.16733,0.190093,0.881041,0.840345,0.56056,0.0876705,0.103948,0.920858,0.00786752,0.345282,0.0564414,0.0969653,0.822486,0.294806,0.286241,0.376366,0.796735,0.503384,0.578373,0.417542,0.351086,0.707756,0.62962,0.0369476,0.0209495,0.458537,0.145863,0.0032047,0.949959,0.27722,0.400608,0.703275,0.134001,0.710137,0.00677544,0.0413749,0.449683,0.470009,0.314635,0.669293,0.714705,0.958835,0.361787,0.805412,0.921074,0.146018,0.595801,0.941053,0.270755,0.764148,0.468819,0.428976,0.374435,0.842053,0.829987,0.272226,0.878344,0.775676,0.74238,0.531223,0.498225,0.594801,0.795601,0.869936,0.590635,0.202011,0.56954,0.175796,0.0864882,0.0980234,0.166833,0.16624,0.295944,0.895741,0.220813,0.800843,0.10445,0.0877566,0.295669,0.00669146,0.596226,0.711654,0.892097,0.919125,0.806263,0.428596,0.80186,0.780997,0.178258,0.0484874,0.712909,0.458512,0.472437,0.797768,0.199655,0.511592,0.170981,0.184318,0.928474,0.17975,0.539896,0.303329,0.320874,0.808556,0.455116,0.402997,0.987576,0.932585,0.207064,0.081494,0.700737,0.648343,0.0522288,0.29054,0.212817,0.242074,0.065562,0.521963,0.780406,0.705117,0.000758171,0.0699266,0.174177,0.0770066,0.974519,0.0153483,0.500414,0.0498225,0.94169,0.57169,0.655456,0.371252,0.808369,0.0140156,0.952068,0.143446,0.780718,0.184869,0.340928,0.0437968,0.656982,0.442834,0.471525,0.351915,0.848547,0.254723,0.0888383,0.00128418,0.556536,0.513451,0.0550355,0.634148,0.203557,0.164659,0.672942,0.78896,0.0479187,0.00315791,0.55092,0.40419,0.565451,0.63127,0.0457984,0.0491712,0.218978,0.99443,0.14807,0.716555,0.522956,0.0583845,0.349848,0.960732,0.926352,0.642207,0.304607,0.139771,0.739941,0.599641,0.462022,0.0771483,0.225116,0.386999,0.723168,0.821528,0.227867,0.394864,0.0340328,0.705753,0.259048,0.0268193,0.787615,0.0179656,0.786164,0.858439,0.00226319,0.425911,0.706862,0.0963929,0.0821483,0.0670698,0.0387755,0.462894,0.489883,0.364096,0.00471371,0.384552,0.564904,0.791948,0.882809,0.175156,0.390694,0.200848,0.691693,0.635357,0.304186,0.354104,0.951327,0.925176,0.0871492,0.789685,0.610507,0.755234,0.949616,0.528313,0.00776589,0.77928,0.268709,0.0200732,0.195513,0.399753,0.404597,0.226423,0.44221,0.454895,0.692186,0.229448,0.382687,0.626274,0.442032,0.20272,0.377677,0.0666168,0.496481,0.935398,0.479447,0.247814,0.375887,0.832057,0.25199,0.0412666,0.867964,0.570413,0.83362,0.00676465,0.622741,0.702744,0.544492,0.589513,0.802408,0.488793,0.408914,0.41969,0.474423,0.291984,0.231625,0.268428,0.855032,0.197971,0.501469,0.474269,0.190632,0.326747,0.521187,0.323563,0.383168,0.217968,0.715387,0.788346,0.876493,0.189662,0.545717,0.619502,0.581137,0.850991,0.0295137,0.11348,0.22489,0.654696,0.0227587,0.447878,0.719161,0.0372128,0.800763,0.635283,0.984189,0.601108,0.356252,0.925705,0.523849,0.0533349,0.477871,0.491528,0.577326,0.768759,0.456856,0.549335,0.685019,0.9284,0.399516,0.97372,0.0147504,0.760714,0.879407,0.0612363,0.122343,0.320165,0.593219,0.697398,0.180612,0.238387,0.859259,0.802945,0.839107,0.535784,0.216037,0.32493,0.0497603,0.99076,0.909211,0.699757,0.177278,0.283583,0.374906,0.342689,0.0750608,0.0915359,0.449107,0.765997,0.704796,0.90604,0.850061,0.935548,0.964676,0.133328,0.374752,0.902155,0.225542,0.253619,0.270043,0.400195,0.756264,0.689465,0.911045,0.343778,0.016636,0.0613133,0.715225,0.655178,0.333255,0.1496,0.58874,0.770355,0.318378,0.771799,0.894382,0.208726,0.475481,0.638839,0.070235,0.619492,0.022372,0.257286,0.983652,0.867,0.513309,0.789786,0.421078,0.612409,0.165315,0.789834,0.103409,0.116182,0.422949,0.51952,0.977138,0.15759,0.833751,0.863878,0.389751,0.529709,0.883358,0.710351,0.894505,0.856744,0.69798,0.823304,0.882314,0.471271,0.420763,0.714982,0.904218,0.968867,0.711374,0.983433,0.237111,0.862983,0.0452723,0.991579,0.0916744,0.2131,0.695948,0.0941778,0.739515,0.0708843,0.778094,0.0697717,0.691249,0.361131,0.892204,0.536705,0.604397,0.613195,0.374099,0.351988,0.226486,0.0509627,0.361048,0.741992,0.305596,0.45368,0.00833064,0.663911,0.827112,0.567431,0.429555,0.515143,0.312386,0.344763,0.629197,0.539127,0.90763,0.94398,0.286193,0.110994,0.0991056,0.143172,0.915224,0.762384,0.466559,0.915531,0.221348,0.844941,0.33244,0.508187,0.649906,0.939419,0.490625,0.114985,0.801802,0.624817,0.162437,0.700559,0.27255,0.192481,0.584823,0.143825,0.876858,0.292263,0.376009,0.88698,0.921895,0.902536,0.405537,0.577619,0.228909,0.227157,0.266468,0.298954,0.373451,0.897958,0.815277,0.90011,0.694908,0.532335,0.516617,0.554936,0.30472,0.68252,0.196705,0.296695,0.327706,0.0259188,0.281513,0.696687,0.456905,0.985373,0.275713,0.816667,0.344837,0.0647578,0.852319,0.536936,0.69589,0.518339,0.841836,0.898358,0.821855,0.365362,0.34908,0.909196,0.0688495,0.919238,0.662827,0.467455,0.47646,0.624226,0.764575,0.198687,0.605761,0.41934,0.924412,0.259776,0.941349,0.167583,0.746795,0.754468,0.311756,0.270375,0.0201769,0.846887,0.593286,0.206083,0.13406,0.652654,0.613265,0.474106,0.286265,0.566712,0.421506,0.341552,0.903745,0.345832,0.695297,0.678997,0.0283427,0.239,0.822659,0.871028,0.891517,0.938418,0.248884,0.0274327,0.320553,0.553375,0.453268,0.108867,0.16083,0.282905,0.228961,0.554075,0.15418,0.874802,0.608184,0.231,0.680762,0.797293,0.707209,0.900511,0.59272,0.791261,0.91089,0.154436,0.276873,0.872161,0.0761822,0.841879,0.567115,0.245878,0.246203,0.136285,0.963027,0.79569,0.765537,0.368381,0.514921,0.457545,0.356759,0.136978,0.832643,0.561607,0.0342842,0.296268,0.0264985,0.907217,0.764569,0.225027,0.245963,0.0855399,0.1597,0.684347,0.769969,0.336489,0.892696,0.110111,0.161584,0.98949,0.817848,0.268574,0.146675,0.508142,0.123596,0.259373,0.486487,0.124837,0.52218,0.732917,0.353193,0.433668,0.788584,0.392014,0.856944,0.385169,0.92843,0.00706303,0.357945,0.0243593,0.41481,0.0502333,0.610013,0.0866109,0.509866,0.462118,0.905156,0.302472,0.928673,0.788529,0.0459638,0.0505571,0.640127,0.743536,0.248736,0.365937,0.434293,0.386742,0.372083,0.154302,0.23229,0.797362,0.96898,0.659373,0.566532,0.947597,0.134212,0.176541,0.635884,0.0537871,0.344321,0.0903834,0.467818,0.194831,0.0259103,0.807666,0.483921,0.843384,0.764491,0.0450428,0.881165,0.493807,0.840687,0.638697,0.677172,0.289129,0.583149,0.273186,0.161084,0.871618,0.779391,0.58395,0.837073,0.1561,0.549271,0.412632,0.732171,0.318486,0.737544,0.606512,0.592501,0.184363,0.176152,0.431343,0.767532,0.95783,0.426318,0.704582,0.457929,0.762668,0.105883,0.448421,0.465155,0.227155,0.349359,0.322538,0.0602849,0.811892,0.00627691,0.188494,0.662944,0.452192,0.458362,0.970837,0.30859,0.964824,0.262695,0.0544555,0.114196,0.107783,0.193511,0.205001,0.647311,0.271783,0.180067,0.561507,0.65368,0.931752,0.173194,0.79558,0.399508,0.457517,0.856783,0.75412,0.726837,0.0685308,0.0176345,0.774811,0.139219,0.800904,0.415034,0.0683523,0.147429,0.971577,0.822744,0.617412,0.207294,0.280227,0.539022,0.115988,0.330279,0.941522,0.892192,0.100043,0.231998,0.0489534,0.918237,0.776441,0.662202,0.245915,0.540667,0.79727,0.111936,0.723568,0.293957,0.475197,0.532279,0.744705,0.289924,0.282796,0.154047,0.187634,0.237906,0.929344,0.65473,0.669661,0.0547065,0.861611,0.744916,0.867964,0.616191,0.210633,0.375646,0.292627,0.0203919,0.388366,0.295534,0.847943,0.26447,0.661276,0.855792,0.212698,0.596753,0.697268,0.67015,0.335371,0.50542,0.0637636,0.563212,0.354419,0.691752,0.117997,0.539372,0.106835,0.763489,0.0281395,0.780793,0.933731,0.840683,0.961415,0.956046,0.567452,0.997088,0.000435531,0.605852,0.971335,0.233748,0.516421,0.0317074,0.334248,0.614045,0.973034,0.505499,0.71911,0.695979,0.726659,0.57312,0.82875,0.0402973,0.460983,0.0171604,0.508266,0.735179,0.168432,0.601952,0.876062,0.561077,0.220822,0.172819,0.833047,0.487136,0.0535111,0.307801,0.137548,0.704545,0.509752,0.993092,0.801306,0.167676,0.889744,0.311687,0.533107,0.781715,0.917588,0.748566,0.607092,0.502605,0.439013,0.724714,0.196619,0.568752,0.118534,0.789029,0.737299,0.581036,0.871204,0.99801,0.635646,0.587524,0.330869,0.257597,0.258777,0.7364,0.132499,0.641132,0.908582,0.651299,0.308329,0.154406,0.902926,0.215367,0.516084,0.0145263,0.745691,0.976275,0.561663,0.632432,0.452683,0.15584,0.757025,0.918237,0.494453,0.099871,0.0439397,|0.313109,0.967245,0.182656,0.652484,0.653845,0.736367,0.917257,0.758392,0.226247,0.972929,0.652222,0.807925,0.982159,0.227077,0.679175,0.634771,0.85333,0.0640137,0.573097,0.989453,0.985409,0.586216,0.492182,0.411005,0.727977,0.855626,0.964684,0.245781,0.400938,0.748227,0.987327,0.847547,0.407211,0.450231,0.747986,0.117945,0.793705,0.763486,0.375615,0.371642,0.846725,0.315788,0.159669,0.467826,0.833202,0.112535,0.0745242,0.5633,0.738376,0.662862,0.0291719,0.404251,0.572491,0.840116,0.106563,0.680593,0.118167,0.373999,0.473271,0.289216,0.731266,0.0481011,0.547376,0.815342,0.105098,0.501028,0.281277,0.703669,0.397678,0.2951,0.507841,0.427185,0.0206686,0.0829789,0.297777,0.996624,0.469416,0.223528,0.935686,0.400374,0.498191,0.58216,0.529941,0.250957,0.678009,0.851172,0.0697142,0.603166,0.463756,0.897943,0.19993,0.395316,0.656353,0.912758,0.861825,0.871649,0.461677,0.447775,0.519727,0.747393,0.535605,0.519935,0.132955,0.944729,0.903034,0.127533,0.0942744,0.468857,0.681413,0.0335637,0.624279,0.199158,0.678309,0.581574,0.940483,0.926688,0.89969,0.319389,0.317191,0.662443,0.193452,0.835329,0.0500515,0.0941798,0.141825,0.0142131,0.253065,0.408182,0.582004,0.187059,0.219908,0.464879,0.711475,0.0454424,0.504126,0.194639,0.623566,0.0372989,0.248015,0.787988,0.300451,0.534296,0.772688,0.769026,0.0322717,0.0800844,0.723034,0.642337,0.903583,0.0985017,0.636061,0.397394,0.154935,0.875971,0.3381,0.852123,0.8496,0.649378,0.159498,0.601005,0.836955,0.57106,0.774056,0.529048,0.125474,0.0228801,0.0932545,0.86988,0.607766,0.137716,0.426964,0.336695,0.241252,0.417793,0.983111,0.114535,0.555356,0.504561,0.94944,0.959487,0.622513,0.921629,0.943017,0.0470091,0.20647,0.580808,0.0148927,0.957096,0.656844,0.193292,0.664087,0.703584,0.584806,0.569682,0.244436,0.2982,0.081996,0.523533,0.0969957,0.822484,0.000441134,0.70069,0.195868,0.741738,0.788473,0.327441,0.484179,0.546469,0.0475692,0.429499,0.156047,0.804196,0.693371,0.395426,0.531004,0.0673367,0.0881765,0.556891,0.751271,0.590782,0.363991,0.909918,0.537105,0.264008,0.861277,0.459567,0.204961,0.0525438,0.228153,0.602965,0.922438,0.522888,0.310733,0.705719,0.469063,0.885879,0.314629,0.659371,0.573343,0.793024,0.423094,0.266686,0.612433,0.216879,0.9146,0.386792,0.923877,0.532686,0.0631005,0.75254,0.507913,0.201643,0.0648623,0.168161,0.628265,0.739284,0.18462,0.725453,0.552908,0.600895,0.573439,0.791282,0.926373,0.491849,0.0530385,0.591105,0.631319,0.793436,0.841955,0.478529,0.72157,0.384837,0.677557,0.36133,0.689558,0.538053,0.689776,0.518627,0.51986,0.415054,0.331752,0.762619,0.000785053,0.366981,0.3783,0.156003,0.623974,0.550726,0.612042,0.561107,0.0838092,0.623221,0.243009,0.879634,0.154197,0.930118,0.460261,0.162743,0.849056,0.616934,0.822153,0.384515,0.964745,0.967243,0.686017,0.879245,0.867122,0.0194119,0.421205,0.0376809,0.0846167,0.01355,0.76285,0.153012,0.482902,0.486749,0.481522,0.0339484,0.302429,0.728769,0.23207,0.19591,0.457932,0.520364,0.33772,0.200233,0.311142,0.214551,0.976549,0.321189,0.398583,0.626909,0.329698,0.768753,0.689854,0.104304,0.994112,0.573302,0.183772,0.143706,0.399489,0.0508814,0.220304,0.042178,0.406343,0.216112,0.143901,0.280004,0.294862,0.941948,0.301821,0.146931,0.898454,0.140195,0.0754274,0.116853,0.956552,0.536028,0.0358154,0.704598,0.535685,0.899416,0.947693,0.194816,0.481112,0.725077,0.0608284,0.503368,0.850027,0.021781,0.883344,0.666255,0.623745,0.357966,0.863402,0.929517,0.788419,0.0411642,0.700028,0.300553,0.170967,0.324367,0.313508,0.755638,0.821964,0.224669,0.848675,0.286421,0.821552,0.902612,0.291267,0.198122,0.744201,0.0409105,0.851001,0.573554,0.925268,0.440623,0.500105,0.26333,0.981367,0.481147,0.50122,0.0299535,0.934838,0.995073,0.912264,0.732331,0.347067,0.152074,0.275491,0.764667,0.711829,0.0770195,0.996207,0.264201,0.704798,0.857031,0.318993,0.253984,0.999092,0.530348,0.293939,0.692162,0.459228,0.466686,0.760483,0.428641,0.845938,0.943403,0.278599,0.92895,0.830119,0.964194,0.416955,0.619024,0.250709,0.246425,0.456602,0.56753,0.404973,0.876925,0.206585,0.779538,0.470355,0.744406,0.0905835,0.785464,0.287762,0.251417,0.426974,0.398658,0.248226,0.375491,0.925104,0.217947,0.656797,0.176092,0.83965,0.592816,0.761837,0.281859,0.49146,0.796138,0.756606,0.132634,0.527533,0.846464,0.947771,0.953967,0.469797,0.738828,0.00239068,0.18968,0.847264,0.121217,0.880303,0.103856,0.756338,0.973129,0.316945,0.468975,0.219955,0.592676,0.19683,0.719342,0.747624,0.847895,0.0129944,0.315621,0.453045,0.792116,0.244009,0.909725,0.674634,0.863508,0.724397,0.0455521,0.0344077,0.597003,0.117674,0.180207,0.684722,0.798493,0.473553,0.112773,0.784634,0.00154471,0.491355,0.138577,0.722097,0.963992,0.621551,0.475869,0.808873,0.814094,0.153451,0.221944,0.761324,0.485699,0.770259,0.715423,0.327942,0.313247,0.111846,0.504764,0.411094,0.263028,0.113572,0.555751,0.249963,0.797385,0.362429,0.33593,0.89901,0.944381,0.858562,0.392241,0.508909,0.985936,0.654373,0.852399,0.547228,0.1709,0.566838,0.0784366,0.475121,0.665745,0.527021,0.571854,0.481246,0.0192588,0.823841,0.952958,0.883587,0.354428,0.0206023,0.890458,0.116394,0.0806424,0.985508,0.782881,0.352954,0.836635,0.0665392,0.118421,0.0572267,0.495502,0.0376337,0.815447,0.243597,0.432662,0.65259,0.290903,0.232735,0.798393,0.732443,0.761921,0.209283,0.0653262,0.106007,0.0559077,0.478458,0.148579,0.407833,0.209668,0.560123,0.597029,0.45264,0.887224,0.329086,0.889925,0.158861,0.447344,0.849531,0.784158,0.483061,0.235318,0.927388,0.164188,0.961978,0.250623,0.506218,0.869957,0.785853,0.377632,0.0983452,0.61696,0.00968999,0.223902,0.950527,0.968493,0.996141,0.721051,0.949585,0.114222,0.490795,0.797854,0.736026,0.159204,0.351422,0.22419,0.271206,0.590303,0.336025,0.26849,0.31129,0.439886,0.569898,0.579901,0.783999,0.194534,0.510358,0.261385,0.553262,0.074416,0.938993,0.480587,0.468573,0.106094,0.902135,0.947257,0.704187,0.0740046,0.382942,0.0225855,0.180873,0.935284,0.836287,0.252499,0.250081,0.909536,0.896586,0.630495,0.828895,0.186276,0.405704,0.931512,0.591433,0.139417,0.487264,0.697121,0.257123,0.917884,0.636351,0.300865,0.11831,0.416483,0.0743429,0.19862,0.851625,0.744087,0.256072,0.0279673,0.524042,0.0333444,0.131606,0.980682,0.857595,0.382858,0.614297,0.389047,0.376864,0.325927,0.0646234,0.375746,0.693641,0.862712,0.188943,0.0986794,0.440841,0.0419117,0.884035,0.857881,0.649257,0.321497,0.110898,0.881615,0.525117,0.478808,0.751376,0.351574,0.987575,0.987707,0.377709,0.783457,0.0356054,0.975196,0.519621,0.858861,0.199485,0.165429,0.215823,0.712517,0.067392,0.676622,0.383973,0.345338,0.0923854,0.309256,0.00722694,0.409098,0.854862,0.35661,0.796541,0.661279,0.760364,0.911086,0.230746,0.0820367,0.74096,0.691277,0.997152,0.834271,0.566376,0.72361,0.273173,0.244736,0.7732,0.34049,0.897957,0.0066976,0.995992,0.439292,0.187465,0.710588,0.316839,0.13138,0.685246,0.383474,0.115797,0.170501,0.331113,0.0810381,0.329909,0.289645,0.277337,0.390919,0.248249,0.221662,0.418273,0.160118,0.515728,0.905572,0.434764,0.0249599,0.449687,0.0986847,0.0987576,0.966009,0.999653,0.372212,0.388928,0.636365,0.304734,0.631339,0.0366491,0.682762,0.766807,0.103401,0.704968,0.953991,0.273206,0.0556804,0.60689,0.0694541,0.0390906,0.205981,0.79448,0.10912,0.439844,0.112988,0.814411,0.382302,0.00613147,0.47969,0.124433,0.424444,0.159707,0.19401,0.152078,0.315079,0.251434,0.134769,0.777445,0.830966,0.16946,0.730057,0.129719,0.515046,0.506977,0.0886059,0.0533397,0.691355,0.0705007,0.11519,0.774894,0.593637,0.318048,0.678505,0.862999,0.306867,0.4622,0.858064,0.932553,0.0244753,0.302928,0.912651,0.0528241,0.498531,0.428645,0.344301,0.906162,0.762827,0.646475,0.64958,0.158542,0.563741,0.532887,0.258909,0.883067,0.7307,0.555886,0.235171,0.288451,0.669203,0.829428,0.358803,0.274501,0.543373,0.0764559,0.97248,0.462149,0.00974929,0.40342,0.738436,0.25763,0.463438,0.11424,0.669546,0.0262011,0.796843,0.992896,0.428933,0.888332,0.680179,0.256065,0.840806,0.762024,0.447186,0.426176,0.11414,0.160792,0.768036,0.684753,0.826069,0.0836014,0.12162,0.249578,0.848258,0.501733,0.995258,0.433297,0.749311,0.353342,0.686189,0.199086,0.307229,0.132486,0.998233,0.907259,0.213571,0.552715,0.576359,0.737,0.955129,0.104341,0.39438,0.169248,0.792052,0.222955,0.249188,0.837213,0.00982231,0.244068,0.564038,0.165328,0.742219,0.561938,0.400801,0.501055,0.217275,0.106988,0.050088,0.375673,0.0344308,0.706132,0.940873,0.929615,0.730587,0.524273,0.47731,0.789236,0.0600966,0.732382,0.79343,0.0678647,0.229514,0.184521,0.910587,0.490914,0.364081,0.0753244,0.0804566,0.857208,0.255881,0.727731,0.164204,0.497682,0.602485,0.264527,0.214598,0.310345,0.656486,0.955526,0.624831,0.816537,0.205774,0.465985,0.902221,0.333783,0.312381,0.0549936,0.749935,0.493224,0.134024,0.190676,0.763554,0.662042,0.39138,0.567046,0.23422,0.000232697,0.413597,0.357741,0.147576,0.0431593,0.0334257,0.803244,0.366818,0.41661,0.777527,0.480149,0.579803,0.732323,0.88013,0.895652,0.904764,0.0498446,0.835459,0.305391,0.410173,0.0649157,0.624228,0.325422,0.592416,0.506158,0.423621,0.739487,0.986473,0.378202,0.394452,0.582044,0.700896,0.0111376,0.199032,0.932215,0.172214,0.952098,0.914539,|0.669474,0.802314,0.550134,0.291726,0.161693,0.258649,0.0831145,0.47576,0.778227,0.407468,0.0892615,0.645729,0.357758,0.0813508,0.403346,0.950856,0.545995,0.971486,0.496649,0.948091,0.962516,0.332615,0.557983,0.356331,0.468886,0.190499,0.305871,0.25128,0.983523,0.343375,0.38242,0.306565,0.0125965,0.47745,0.73981,0.18895,0.437219,0.362347,0.715798,0.716976,0.570735,0.620718,0.0948448,0.730036,0.434702,0.37179,0.200282,0.305467,0.051387,0.505983,0.903713,0.227922,0.956285,0.838618,0.214217,0.950506,0.874839,0.867715,0.16946,0.344795,0.957413,0.704733,0.729288,0.607631,0.447383,0.506492,0.765901,0.38074,0.349285,0.196781,0.214237,0.946263,0.274262,0.484581,0.170129,0.297808,0.286261,0.126788,0.378053,0.175401,0.712212,0.543149,0.188863,0.139761,0.310898,0.850164,0.562721,0.269,0.127882,0.485765,0.0441321,0.834771,0.601261,0.930456,0.995945,0.526194,0.344282,0.0611298,0.502267,0.306187,0.779027,0.472172,0.629702,0.846599,0.298349,0.0961707,0.824398,0.691018,0.511233,0.255099,0.0791872,0.652767,0.999307,0.490552,0.723483,0.648215,0.825575,0.449755,0.486937,0.114407,0.341924,0.416941,0.53353,0.257141,0.012696,0.627503,0.726686,0.0519246,0.849139,0.111777,0.142648,0.163192,0.649412,0.191687,0.557691,0.404745,0.0276359,0.767246,0.630358,0.312111,0.807139,0.502897,0.14526,0.243949,0.507667,0.79701,0.893981,0.215535,0.397253,0.241489,0.201064,0.0327222,0.472491,0.929326,0.204336,0.596188,0.816231,0.73376,0.602226,0.128986,0.20849,0.917315,0.198015,0.225435,0.687557,0.835733,0.221309,0.338281,0.649176,0.408332,0.880395,0.722812,0.98138,0.329123,0.21556,0.279818,0.627372,0.114167,0.0250731,0.421759,0.762137,0.0605241,0.0886328,0.0608819,0.361699,0.0532788,0.947098,0.209674,0.959345,0.343775,0.659761,0.194715,0.798847,0.581367,0.916462,0.199829,0.995623,0.366704,0.9878,0.521425,0.617379,0.522261,0.730084,0.192865,0.274434,0.564235,0.00853038,0.663864,0.421473,0.535391,0.00536954,0.648859,0.0112755,0.786798,0.238144,0.151726,0.965142,0.409956,0.625254,0.85596,0.76539,0.0609392,0.561274,0.119611,0.732488,0.231416,0.913533,0.502084,0.481823,0.520041,0.816495,0.785968,0.876159,0.0864028,0.825481,0.337049,0.619902,0.744301,0.347095,0.0404605,0.377032,0.507083,0.470878,0.820893,0.816287,0.848104,0.657067,0.318897,0.812351,0.988927,0.603821,0.225473,0.0050655,0.55686,0.383679,0.301706,0.403618,0.79884,0.455904,0.0775455,0.262623,0.500756,0.0931664,0.313243,0.472337,0.50911,0.578036,0.589398,0.603053,0.0550087,0.702228,0.147108,0.143174,0.0938987,0.67467,0.208841,0.152931,0.567684,0.647323,0.458325,0.0503651,0.485239,0.136983,0.912956,0.0662473,0.314167,0.0583122,0.884919,0.820665,0.947246,0.293468,0.961053,0.933835,0.911623,0.43188,0.820638,0.462833,0.829662,0.45787,0.102857,0.656655,0.696617,0.111589,0.128631,0.525545,0.220616,0.872205,0.963274,0.594151,0.00768518,0.968218,0.937419,0.0635085,0.395927,0.964331,0.457688,0.0574372,0.819858,0.314889,0.647792,0.889106,0.644151,0.0296084,0.233845,0.562232,0.941959,0.863952,0.133632,0.325978,0.0590059,0.722593,0.824356,0.985873,0.986395,0.904908,0.747311,0.0717706,0.623143,0.0639662,0.00544035,0.508484,0.171116,0.762977,0.416018,0.140946,0.698489,0.119162,0.109328,0.272171,0.0811303,0.399297,0.232513,0.366813,0.427155,0.601705,0.804862,0.16705,0.0546594,0.360446,0.650989,0.54638,0.606554,0.948868,0.84341,0.41247,0.692399,0.683504,0.983723,0.630435,0.944698,0.345054,0.000381887,0.923955,0.102849,0.501206,0.783831,0.265004,0.0322452,0.280355,0.974099,0.985938,0.22908,0.764905,0.917403,0.879053,0.931296,0.573766,0.629802,0.529874,0.927935,0.410707,0.019785,0.540163,0.845796,0.206141,0.896322,0.942237,0.790707,0.788945,0.353499,0.83139,0.79555,0.0540842,0.818955,0.944518,0.841928,0.786026,0.968568,0.570112,0.424519,0.742655,0.784863,0.707099,0.0166765,0.435455,0.820139,0.81945,0.257611,0.706801,0.747424,0.00156629,0.333451,0.134867,0.387485,0.541504,0.529128,0.0465831,0.0844942,0.0221227,0.0573685,0.517397,0.335262,0.908338,0.206441,0.501171,0.87422,0.577794,0.554987,0.0808122,0.533391,0.589212,0.959047,0.147857,0.441783,0.807538,0.89876,0.778619,0.342138,0.163601,0.177883,0.794026,0.940037,0.637091,0.49713,0.747472,0.407351,0.389836,0.133201,0.458145,0.395036,0.169704,0.831623,0.22534,0.623164,0.255434,0.0378664,0.914206,0.409093,0.879717,0.520369,0.275199,0.235832,0.0083434,0.865274,0.321321,0.599033,0.649018,0.729233,0.00197321,0.0352715,0.996358,0.484085,0.987789,0.984278,0.896481,0.496295,0.94902,0.178938,0.874712,0.631302,0.632869,0.299908,0.658912,0.273918,0.882301,0.930851,0.145678,0.579992,0.725449,0.562636,0.945035,0.464429,0.168166,0.0248469,0.160948,0.395336,0.691209,0.642739,0.776768,0.248069,0.117228,0.151041,0.316368,0.852491,0.10349,0.53649,0.453754,0.0280275,0.620594,0.392084,0.879778,0.784126,0.818923,0.781279,0.447273,0.737488,0.018205,0.320004,0.896866,0.204337,0.960919,0.423399,0.554474,0.823749,0.564507,0.739111,0.127056,0.972578,0.197623,0.481754,0.163984,0.54739,0.353497,0.254089,0.515341,0.0691497,0.387372,0.24339,0.268692,0.856016,0.351401,0.955424,0.822306,0.301789,0.126264,0.466036,0.807361,0.677994,0.848201,0.946005,0.574186,0.933975,0.71709,0.349255,0.760762,0.841426,0.0281209,0.548213,0.610003,0.2967,0.051024,0.805081,0.953156,0.51953,0.856572,0.306414,0.835323,0.703459,0.953281,0.176684,0.840775,0.510653,0.344187,0.364338,0.203099,0.186165,0.435042,0.948524,0.0273604,0.0632761,0.359274,0.0471928,0.820377,0.503151,0.299401,0.0200789,0.386499,0.0286091,0.983116,0.294773,0.30702,0.274777,0.432949,0.38262,0.751455,0.52201,0.760067,0.125818,0.912846,0.252167,0.525609,0.418082,0.218084,0.725029,0.969964,0.0198491,0.560671,0.961254,0.92817,0.880556,0.493697,0.730031,0.374782,0.504013,0.203951,0.0291396,0.415383,0.702802,0.953105,0.830707,0.116681,0.314338,0.26543,0.0690086,0.110475,0.601693,0.415223,0.893348,0.631083,0.929339,0.032377,0.0674144,0.971304,0.046202,0.0467085,0.950762,0.243169,0.0310053,0.833313,0.448858,0.438219,0.69575,0.628775,0.16623,0.0933728,0.371447,0.121497,0.867315,0.581942,0.747757,0.473976,0.729695,0.603289,0.256582,0.12085,0.619309,0.985658,0.267486,0.729483,0.906408,0.110799,0.798039,0.52602,0.709586,0.469804,0.399531,0.354903,0.320394,0.536826,0.0587658,0.318389,0.517822,0.209501,0.392072,0.911423,0.32034,0.441645,0.473719,0.633167,0.461166,0.732477,0.964523,0.192707,0.117738,0.054277,0.835497,0.632209,0.25922,0.576419,0.644956,0.493349,0.999427,0.250243,0.167157,0.17241,0.437867,0.957053,0.143313,0.938819,0.645108,0.00993943,0.539616,0.43247,0.178562,0.157562,0.61507,0.281408,0.252775,0.686637,0.765975,0.136868,0.214448,0.346861,0.491247,0.591183,0.856729,0.243967,0.692142,0.00200045,0.761755,0.03768,0.383725,0.412279,0.700943,0.6019,0.761878,0.96712,0.346973,0.246266,0.00735158,0.0133377,0.803938,0.262802,0.781854,0.114398,0.668758,0.197548,0.836932,0.302285,0.988696,0.915623,0.992523,0.614511,0.687793,0.233224,0.827962,0.012255,0.491585,0.460013,0.128503,0.600227,0.96334,0.483225,0.828756,0.650852,0.68968,0.52415,0.610974,0.161052,0.771235,0.109566,0.0688357,0.861777,0.572056,0.934656,0.375134,0.108543,0.0952373,0.590746,0.178743,0.495631,0.401652,0.496729,0.260846,0.835618,0.325547,0.917096,0.55713,0.548924,0.857167,0.273102,0.850388,0.693561,0.653318,0.440132,0.267032,0.119215,0.314335,0.940383,0.857344,0.758792,0.444356,0.374641,0.405085,0.672332,0.22496,0.834552,0.270756,0.55125,0.0267615,0.675966,0.553656,0.89838,0.888022,0.621796,0.507462,0.524005,0.717962,0.922943,0.357183,0.749573,0.809556,0.734423,0.191717,0.883842,0.543615,0.581942,0.938404,0.857174,0.450447,0.231787,0.191371,0.182376,0.574732,0.754945,0.130126,0.365881,0.277545,0.792818,0.399162,0.360729,0.456638,0.130567,0.739954,0.455495,0.518109,0.373378,0.606385,0.503313,0.756636,0.491598,0.149288,0.178739,0.0898422,0.736089,0.889,0.507122,0.954215,0.945648,0.719128,0.106736,0.396911,0.687995,0.896983,0.214577,0.0188189,0.462257,0.978428,0.495892,0.312518,0.755221,0.265484,0.825669,0.597251,0.760552,0.882286,0.541265,0.234932,0.833264,0.645943,0.646343,0.626337,0.410235,0.565241,0.77018,0.524619,0.273711,0.307391,0.920458,0.152187,0.509056,0.051735,0.770029,0.470733,0.771755,0.918567,0.835146,0.593801,0.0470962,0.789905,0.368618,0.411077,0.0144137,0.908747,0.457239,0.511298,0.372068,0.914827,0.87851,0.421492,0.726529,0.258518,0.373922,0.91415,0.926889,0.768505,0.862338,0.618302,0.0370727,0.168186,0.463513,0.983946,0.841838,0.401245,0.0779724,0.171604,0.855907,0.303955,0.402736,0.487681,0.165505,0.129027,0.447775,0.314534,0.581928,0.569604,0.132897,0.696896,0.24601,0.55035,0.427588,0.359847,0.494276,0.924253,0.798315,0.296842,0.68441,0.906848,0.541632,0.648154,0.739584,0.0589579,0.308098,0.950978,0.648744,0.989084,0.700995,0.59322,0.962891,0.0521895,0.436848,0.484052,0.704392,0.201724,0.995928,0.169402,0.983344,0.804469,0.431123,0.819881,0.556768,0.122025,0.534846,0.670875,0.307644,0.641594,0.115732,0.463478,0.996644,0.31437,0.949667,0.831131,0.773418,0.729856,0.0812279,0.734797,0.123624,0.192607,0.151567,0.36737,0.537494,0.633049,0.980908,0.0239152,0.823356,0.498974,0.484999,0.922665,0.888448,0.223751,|0.0311424,0.201248,0.141995,0.2815,0.4582,0.0449529,0.306336,0.488814,0.942092,0.769278,0.354116,0.363348,0.714024,0.196269,0.83774,0.493481,0.846185,0.673538,0.912218,0.92022,0.524279,0.0355366,0.591715,0.56808,0.439391,0.755205,0.138273,0.0131753,0.764075,0.307712,0.565828,0.994982,0.132298,0.335719,0.0704709,0.0438905,0.994015,0.986514,0.342452,0.949128,0.82927,0.346182,0.166243,0.687392,0.129349,0.943478,0.653918,0.453016,0.475731,0.55271,0.1169,0.872597,0.0731857,0.245176,0.352726,0.145933,0.126896,0.739084,0.332902,0.515945,0.173359,0.520812,0.234923,0.847046,0.823118,0.487862,0.656098,0.459402,0.514628,0.123865,0.278506,0.117881,0.143197,0.985855,0.541499,0.925876,0.497787,0.582186,0.154505,0.328525,0.277598,0.109907,0.699706,0.733187,0.34385,0.622684,0.70898,0.879243,0.929906,0.525968,0.161001,0.352677,0.570599,0.332328,0.665489,0.473521,0.786774,0.908587,0.610225,0.17233,0.638028,0.597986,0.318521,0.142246,0.706025,0.849422,0.116446,0.714399,0.179339,0.0210941,0.171108,0.593184,0.189769,0.433589,0.355888,0.465473,0.754217,0.365903,0.64458,0.326385,0.668364,0.860224,0.746233,0.148135,0.654863,0.0156907,0.499719,0.89869,0.163249,0.330212,0.723347,0.977942,0.150604,0.705187,0.219591,0.613334,0.904472,0.567696,0.429911,0.117833,0.392604,0.803267,0.876795,0.260311,0.390403,0.409529,0.0895514,0.555859,0.423779,0.834749,0.0823873,0.0239406,0.0870273,0.0106727,0.371778,0.549783,0.34237,0.948283,0.955504,0.447658,0.975941,0.173535,0.591854,0.538264,0.0448295,0.0862862,0.583383,0.037739,0.585657,0.33611,0.726828,0.197635,0.369919,0.987716,0.462938,0.652481,0.2782,0.368598,0.123033,0.165495,0.533868,0.124675,0.484057,0.497314,0.290555,0.151466,0.795998,0.308036,0.299594,0.612023,0.402278,0.356376,0.830163,0.909155,0.849355,0.255772,0.695027,0.997802,0.659615,0.275118,0.422964,0.725227,0.866837,0.116792,0.256095,0.332262,0.339036,0.407835,0.979752,0.631805,0.886224,0.499153,0.826569,0.639943,0.0991345,0.28009,0.705298,0.811259,0.379668,0.856352,0.382496,0.903934,0.868462,0.79391,0.246216,0.311184,0.231872,0.614146,0.742661,0.327558,0.307803,0.863549,0.248466,0.108423,0.0444054,0.960037,0.978222,0.446287,0.368671,0.379051,0.0920638,0.579239,0.184621,0.49465,0.22968,0.818171,0.893656,0.216508,0.722543,0.935317,0.9292,0.700768,0.307801,0.527277,0.405543,0.138372,0.444908,0.884531,0.602236,0.695614,0.814183,0.223347,0.327248,0.323889,0.54523,0.853966,0.0150758,0.845245,0.0262093,0.664081,0.536043,0.801838,0.537276,0.774472,0.533552,0.157127,0.98696,0.305421,0.197015,0.101176,0.134553,0.353043,0.236382,0.552904,0.918202,0.311979,0.737372,0.68613,0.488908,0.802635,0.047262,0.688759,0.573136,0.46879,0.118091,0.0119463,0.109613,0.333507,0.305552,0.648793,0.506868,0.45312,0.502431,0.0158595,0.971294,0.603629,0.609559,0.803981,0.452934,0.727236,0.0384786,0.928821,0.214166,0.019647,0.768086,0.0188674,0.238232,0.394799,0.430479,0.672673,0.504063,0.266024,0.201135,0.747082,0.843965,0.00592148,0.40585,0.821253,0.772662,0.8023,0.75667,0.0823544,0.734354,0.631,0.944402,0.24867,0.0207369,0.520263,0.0899949,0.617248,0.28233,0.437624,0.666094,0.146589,0.837615,0.616392,0.835294,0.536936,0.548489,0.472345,0.00252038,0.350115,0.841172,0.53041,0.27561,0.18336,0.882242,0.817176,0.0759842,0.245302,0.643592,0.702607,0.511522,0.086071,0.348749,0.868711,0.606468,0.73548,0.575767,0.794127,0.776984,0.0146343,0.479427,0.930196,0.460589,0.0522525,0.74594,0.174255,0.942694,0.520072,0.521325,0.88414,0.580672,0.631147,0.725394,0.306364,0.641427,0.136846,0.986433,0.195345,0.50409,0.0129634,0.186691,0.011372,0.690822,0.362529,0.742298,0.0824714,0.385878,0.250562,0.240703,0.89434,0.744878,0.2602,0.0893364,0.892276,0.693965,0.963102,0.578059,0.963615,0.29969,0.9637,0.471751,0.530921,0.886949,0.681438,0.615605,0.725905,0.193743,0.268867,0.760505,0.542771,0.540174,0.498453,0.40319,0.0639671,0.800311,0.126685,0.868413,0.41574,0.0384778,0.478323,0.575156,0.0327951,0.711737,0.728751,0.693355,0.4301,0.231169,0.596523,0.532803,0.324954,0.317035,0.3142,0.383529,0.0565159,0.553297,0.815751,0.511209,0.074524,0.450191,0.127702,0.638379,0.0574766,0.657722,0.991653,0.826709,0.420504,0.259455,0.0613782,0.400347,0.239606,0.476506,0.615544,0.544875,0.728533,0.444238,0.266388,0.280133,0.309388,0.296772,0.816205,0.341316,0.0313748,0.825921,0.181495,0.699447,0.0687627,0.0592234,0.309978,0.954513,0.709067,0.935011,0.0505866,0.271924,0.803756,0.41369,0.773237,0.319382,0.75396,0.936082,0.587738,0.205018,0.681141,0.519047,0.426479,0.165888,0.76948,0.794392,0.66783,0.0580066,0.00464368,0.0226218,0.467913,0.582678,0.710601,0.512762,0.394122,0.790954,0.0810488,0.93925,0.387362,0.811077,0.554506,0.026689,0.714634,0.765648,0.839168,0.81782,0.499956,0.667202,0.0695511,0.485063,0.977197,0.128641,0.103831,0.103695,0.628686,0.75708,0.233243,0.442932,0.417699,0.891095,0.477898,0.672464,0.805323,0.721011,0.386487,0.151884,0.909645,0.379592,0.694111,0.366152,0.802551,0.262633,0.962799,0.933836,0.872604,0.872853,0.394886,0.517544,0.692351,0.502555,0.500903,0.13429,0.585932,0.0175573,0.842018,0.691952,0.527591,0.719459,0.236963,0.30208,0.442829,0.706386,0.0702224,0.958759,0.85272,0.624758,0.438089,0.764041,0.948825,0.335186,0.762652,0.578188,0.554945,0.465552,0.39513,0.753765,0.862253,0.610991,0.974723,0.652388,0.72255,0.823776,0.24661,0.359915,0.801314,0.322957,0.244105,0.173086,0.375197,0.513751,0.0774081,0.423903,0.978431,0.480105,0.424199,0.684627,0.0942649,0.342507,0.865918,0.389409,0.775115,0.293994,0.901864,0.855561,0.141947,0.25513,0.081508,0.347277,0.765683,0.284069,0.788308,0.56123,0.571057,0.128072,0.491557,0.206795,0.317104,0.364051,0.311272,0.800406,0.328767,0.0280368,0.858754,0.134464,0.899162,0.23132,0.98216,0.0710466,0.254726,0.178444,0.495395,0.780153,0.222068,0.0695891,0.115438,0.793369,0.104678,0.714235,0.39058,0.686325,0.165486,0.0562608,0.543048,0.99483,0.214521,0.589473,0.297813,0.869314,0.078976,0.514583,0.0970878,0.813027,0.783348,0.0492927,0.360451,0.665009,0.530615,0.38342,0.0589012,0.682473,0.0301824,0.0909675,0.45383,0.514188,0.0468068,0.54912,0.549004,0.399258,0.174829,0.639774,0.325842,0.781588,0.142509,0.93905,0.441137,0.605237,0.934361,0.23583,0.648782,0.165506,0.336363,0.452715,0.619604,0.672668,0.246516,0.828124,0.0810558,0.54295,0.71485,0.21731,0.422206,0.793932,0.876479,0.353945,0.0917535,0.461367,0.931114,0.672299,0.813154,0.53806,0.495867,0.0488717,0.777892,0.180208,0.391201,0.863622,0.470039,0.638898,0.19924,0.993275,0.719027,0.99953,0.260786,0.832807,0.676057,0.623263,0.807118,0.952296,0.0620011,0.78125,0.785572,0.731083,0.159196,0.31783,0.625678,0.494309,0.856883,0.841215,0.083605,0.555932,0.750048,0.764737,0.122104,0.0574856,0.408247,0.538224,0.962597,0.53048,0.578824,0.930351,0.44353,0.67959,0.194618,0.697778,0.162185,0.332634,0.551382,0.230051,0.88868,0.963932,0.537207,0.840091,0.870458,0.482598,0.781152,0.878927,0.732173,0.511083,0.177987,0.602046,0.0627918,0.968659,0.738578,0.689756,0.0964428,0.615026,0.391126,0.227067,0.592643,0.149188,0.485757,0.915907,0.746605,0.617013,0.00745392,0.986855,0.286898,0.292997,0.541928,0.776078,0.0209853,0.585716,0.48407,0.665151,0.149301,0.783494,0.452754,0.490926,0.310488,0.31057,0.505343,0.863741,0.718989,0.373064,0.0563461,0.81854,0.239818,0.221341,0.776266,0.772229,0.722192,0.467125,0.679477,0.149573,0.273187,0.293519,0.901211,0.978642,0.463389,0.548933,0.489534,0.587841,0.692644,0.410634,0.208801,0.664345,0.175514,0.0481228,0.631003,0.774082,0.28732,0.858544,0.7939,0.392136,0.447896,0.745253,0.913161,0.493082,0.126844,0.742188,0.669307,0.68009,0.0363414,0.909928,0.622971,0.931368,0.484967,0.380469,0.131745,0.270404,0.0766352,0.728999,0.544291,0.607728,0.690568,0.761928,0.275605,0.457034,0.317296,0.683433,0.660985,0.365439,0.628202,0.927511,0.535904,0.293706,0.754213,0.59488,0.705015,0.848297,0.795669,0.652222,0.41971,0.191095,0.802945,0.434313,0.0690273,0.353798,0.489057,0.902171,0.31228,0.437299,0.641837,0.297738,0.15789,0.54519,0.111456,0.556631,0.232702,0.616692,0.449193,0.107826,0.406297,0.682489,0.102127,0.426842,0.371699,0.146253,0.490045,0.641534,0.928329,0.126072,0.504776,0.396449,0.159275,0.366572,0.305922,0.265439,0.0717676,0.298772,0.533944,0.466006,0.220107,0.427805,0.630439,0.841951,0.759907,0.0445983,0.744863,0.37387,0.252382,0.368166,0.0291198,0.725931,0.239412,0.143867,0.156188,0.606759,0.995022,0.331617,0.159276,0.426653,0.8558,0.526174,0.145153,0.344011,0.806676,0.470495,0.739845,0.0301462,0.437626,0.733516,0.32085,0.623232,0.61259,0.297291,0.463879,0.0724663,0.585468,0.879605,0.867037,0.700573,0.476238,0.456982,0.15108,0.800602,0.664786,0.698087,0.927475,0.717566,0.773819,0.166472,0.560923,0.61259,0.572164,0.959559,0.755424,0.892504,0.987999,0.53845,0.980972,0.748918,0.436187,0.576797,0.312838,0.29629,0.719025,0.138783,0.201822,0.464059,0.233636,0.0238895,0.13201,0.898056,0.55383,0.892952,0.503397,0.813787,0.140077,0.460823,0.400702,0.859215,0.256756,0.16872,0.0724013,0.797259,0.94483,0.296896,0.123641,0.931739,0.64795,0.979254,0.588418,0.619838,0.383574,0.312286,0.0298552,|0.390484,0.577235,0.27693,0.512362,0.225192,0.856984,0.202285,0.208441,0.778041,0.394007,0.311002,0.921979,0.922385,0.962848,0.216049,0.58377,0.41979,0.451318,0.0383633,0.821756,0.261133,0.83395,0.282354,0.597612,0.061537,0.0116136,0.40535,0.0368249,0.764251,0.109879,0.703139,0.701079,0.946859,0.766682,0.846055,0.171109,0.337884,0.289484,0.233063,0.129685,0.808814,0.0372033,0.598758,0.207105,0.573093,0.567839,0.766507,0.850361,0.270903,0.751155,0.526048,0.734562,0.809571,0.225975,0.467041,0.738333,0.906833,0.902084,0.885851,0.96036,0.618172,0.222407,0.998143,0.492815,0.75289,0.417291,0.645286,0.353393,0.382161,0.709472,0.783123,0.25931,0.626534,0.272195,0.850222,0.73774,0.0637665,0.0505798,0.88436,0.557337,0.680325,0.717994,0.0189824,0.184131,0.735981,0.470991,0.0950889,0.120764,0.921783,0.319956,0.139336,0.334872,0.439757,0.750179,0.595514,0.311621,0.87975,0.177994,0.437061,0.629958,0.421394,0.745706,0.125411,0.560899,0.434148,0.0484558,0.14289,0.226393,0.687789,0.838837,0.58022,0.562559,0.170926,0.378204,0.0443299,0.967875,0.710846,0.952713,0.767334,0.451278,0.832423,0.792943,0.437405,0.9142,7.79629e-05,0.207326,0.561544,0.582171,0.745962,0.544353,0.511901,0.490667,0.313244,0.508527,0.582699,0.824923,0.00720644,0.0481781,0.843844,0.181745,0.875145,0.365002,0.219123,0.545128,0.914461,0.411152,0.249626,0.944121,0.952113,0.311445,0.800189,0.958461,0.258415,0.827988,0.981081,0.165417,0.086832,0.53401,0.0368025,0.485537,0.011326,0.863854,0.307791,0.53339,0.594354,0.243202,0.342211,0.598358,0.38624,0.147717,0.991594,0.0498586,0.224327,0.0653874,0.120044,0.108503,0.570593,0.985564,0.550555,0.930687,0.279903,0.451431,0.585499,0.378119,0.318842,0.143558,0.505214,0.990325,0.571503,0.418763,0.925439,0.866629,0.652979,0.0954654,0.462374,0.226983,0.710073,0.247093,0.449367,0.0684479,0.083966,0.927054,0.0821202,0.768933,0.249107,0.571474,0.871066,0.883745,0.268715,0.963579,0.845792,0.411954,0.548687,0.756467,0.0431615,0.873892,0.786973,0.228932,0.398613,0.766957,0.187749,0.761836,0.666351,0.676216,0.324221,0.255002,0.541367,0.264219,0.0239034,0.555402,0.113596,0.861962,0.0634869,0.915656,0.336316,0.124137,0.908301,0.0756452,0.428985,0.828615,0.0933668,0.354849,0.0408474,0.649529,0.190509,0.845965,0.711266,0.329339,0.450071,0.735741,0.224615,0.593694,0.899837,0.346951,0.564309,0.254773,0.41289,0.458015,0.502873,0.893099,0.0770141,0.476064,0.0652331,0.178884,0.0282642,0.152044,0.419992,0.154297,0.809113,0.50557,0.323036,0.773011,0.0418379,0.925744,0.684132,0.591478,0.584372,0.778556,0.184667,0.263414,0.594703,0.689499,0.695798,0.394109,0.826236,0.515916,0.307198,0.370115,0.750971,0.218978,0.665348,0.445472,0.103111,0.629217,0.41422,0.330462,0.592517,0.865636,0.574839,0.654213,0.351864,0.393742,0.0313221,0.349186,0.378201,0.0560625,0.655396,0.0121255,0.26603,0.554619,0.410858,0.75268,0.264941,0.8125,0.600374,0.997096,0.618712,0.0966349,0.55796,0.451072,0.803254,0.799645,0.560608,0.763879,0.475817,0.914074,0.534062,0.45832,0.581493,0.284827,0.663796,0.155024,0.0150387,0.44354,0.64138,0.372005,0.145518,0.503222,0.16844,0.787556,0.100414,0.320335,0.924462,0.96613,0.231893,0.46593,0.382226,0.268979,0.314925,0.846619,0.809771,0.115569,0.3043,0.504492,0.171836,0.785689,0.293596,0.536867,0.438985,0.419922,0.813288,0.898601,0.365956,0.122419,0.665549,0.940988,0.0573997,0.79864,0.000435948,0.761019,0.359275,0.68213,0.00823426,0.504688,0.301874,0.0848237,0.381238,0.993259,0.457395,0.243594,0.594118,0.0767149,0.115972,0.995261,0.317271,0.409052,0.935418,0.224569,0.642977,0.0100048,0.562025,0.21483,0.568727,0.700599,0.738555,0.486366,0.46154,0.661715,0.829062,0.984309,0.347857,0.516853,0.946517,0.364864,0.88486,0.117494,0.117728,0.133175,0.890314,0.584261,0.512465,0.501292,0.059481,0.0879487,0.466241,0.170048,0.0369627,0.640991,0.582358,0.329363,0.415428,0.139414,0.328611,0.403215,0.733232,0.981194,0.680482,0.167166,0.553295,0.100213,0.849787,0.136636,0.270402,0.797564,0.612416,0.513084,0.305575,0.716328,0.999611,0.341144,0.114886,0.178765,0.853432,0.119462,0.731794,0.545699,0.569778,0.261013,0.189125,0.244675,0.241924,0.0814704,0.0188826,0.831765,0.533597,0.0966207,0.528444,0.0788894,0.240619,0.0627698,0.974359,0.572957,0.219391,0.076416,0.825338,0.0483562,0.886644,0.888356,0.545185,0.812813,0.589042,0.692852,0.153975,0.192224,0.0187556,0.155155,0.279122,0.188836,0.698026,0.611161,0.897403,0.132628,0.354314,0.146073,0.343687,0.146106,0.31715,0.00553441,0.397943,0.817677,0.903859,0.167658,0.0609545,0.0946237,0.014081,0.00448364,0.941555,0.178407,0.427267,0.861592,0.189753,0.928967,0.498488,0.496065,0.847424,0.340782,0.914744,0.155049,0.890456,0.0856847,0.055574,0.172648,0.588993,0.383662,0.94611,0.466053,0.608858,0.0532988,0.132615,0.313854,0.851233,0.100775,0.822755,0.903108,0.755749,0.037955,0.822751,0.925118,0.9154,0.987936,0.773528,0.832298,0.226988,0.908143,0.306856,0.259281,0.0203455,0.421455,0.192744,0.229621,0.665577,0.447697,0.945377,0.606365,0.581025,0.079689,0.606078,0.877323,0.305844,0.53626,0.227046,0.883269,0.314779,0.454248,0.00431341,0.764197,0.436616,0.762477,0.972486,0.499105,0.616517,0.139054,0.382836,0.81813,0.757434,0.566517,0.106443,0.098675,0.693455,0.116205,0.385287,0.698504,0.62203,0.799629,0.979638,0.654059,0.933702,0.914451,0.548205,0.165688,0.5045,0.12791,0.715553,0.556492,0.268086,0.253699,0.0864754,0.643954,0.755538,0.54027,0.484992,0.821724,0.211621,0.202408,0.666005,0.403365,0.060743,0.842556,0.0846069,0.552701,0.527925,0.902764,0.464832,0.197309,0.0957649,0.707311,0.612116,0.78334,0.911679,0.388264,0.878187,0.911175,0.841248,0.726041,0.916907,0.342022,0.497235,0.354864,0.651042,0.682769,0.140622,0.272597,0.853548,0.336734,0.885942,0.830961,0.126458,0.181195,0.967609,0.722756,0.258273,0.748812,0.75023,0.00616366,0.551185,0.128622,0.375678,0.969971,0.883346,0.858238,0.385,0.395792,0.896279,0.0321503,0.182571,0.533333,0.961022,0.574297,0.509009,0.211544,0.93855,0.438775,0.909766,0.924954,0.339179,0.570965,0.348996,0.159911,0.34472,0.777858,0.680581,0.727953,0.134061,0.504896,0.382649,0.142769,0.363651,0.119192,0.77539,0.113243,0.316461,0.61568,0.301515,0.0504572,0.12664,0.063155,0.808041,0.171958,0.717152,0.457181,0.324608,0.321156,0.0599086,0.348694,0.998077,0.694229,0.0712062,0.666268,0.0718502,0.279548,0.415709,0.0585808,0.983664,0.0645022,0.412499,0.965742,0.906923,0.874418,0.846419,0.0140921,0.412698,0.38591,0.253406,0.748866,0.668334,0.756378,0.908188,0.759775,0.8541,0.496104,0.286927,0.418467,0.181236,0.773616,0.0587165,0.863667,0.324941,0.916141,0.910719,0.382648,0.296511,0.0731437,0.104274,0.433952,0.558417,0.598125,0.388909,0.571925,0.429467,0.104062,0.525571,0.437745,0.700926,0.835216,0.0748025,0.61378,0.41328,0.942273,0.931026,0.217381,0.148912,0.713251,0.441899,0.944384,0.357555,0.561516,0.418683,0.255089,0.317941,0.731622,0.554588,0.593619,0.647166,0.993062,0.648015,0.0100972,0.575077,0.790561,0.0250692,0.121241,0.302219,0.999864,0.790931,0.780388,0.445386,0.136272,0.950767,0.0444168,0.81317,0.765334,0.17539,0.0932707,0.802571,0.533936,0.993609,0.00421429,0.763051,0.533383,0.430251,0.0087285,0.724306,0.570579,0.802556,0.214062,0.190726,0.28859,0.522279,0.154603,0.648978,0.254815,0.13971,0.819199,0.378559,0.687621,0.989473,0.88323,0.916342,0.343095,0.897916,0.616099,0.96737,0.553895,0.470043,0.255364,0.362016,0.146623,0.0114722,0.19364,0.879915,0.00580752,0.790483,0.616458,0.209487,0.154803,0.0800604,0.489432,0.945056,0.748251,0.968562,0.0916492,0.749664,0.92031,0.125606,0.560268,0.221411,0.581174,0.214391,0.847926,0.78003,0.421038,0.188378,0.537636,0.521426,0.974315,0.878307,0.852155,0.415643,0.761146,0.453288,0.0893366,0.143777,0.593624,0.301862,0.464181,0.327597,0.268062,0.938663,0.894928,0.866385,0.473918,0.250881,0.860437,0.5246,0.350082,0.435421,0.685726,0.264812,0.408707,0.0957385,0.227923,0.734273,0.180297,0.80616,0.0596286,0.0732115,0.574786,0.81543,0.946807,0.272118,0.29231,0.918661,0.882076,0.334396,0.373037,0.89799,0.773021,0.798577,0.186462,0.147266,0.73163,0.336361,0.142597,0.860506,0.570382,0.235966,0.257411,0.0919729,0.381399,0.506809,0.431742,0.0289968,0.487673,0.429365,0.586773,0.83232,0.164515,0.902138,0.901085,0.489267,0.2544,0.275293,0.926534,0.386575,0.621324,0.452313,0.337282,0.359457,0.63982,0.0794724,0.986009,0.452196,0.177285,0.808907,0.641633,0.726703,0.0505362,0.529884,0.199167,0.121225,0.183683,0.948806,0.992938,0.617019,0.24993,0.0342012,0.0914575,0.967496,0.959525,0.18993,0.394526,0.0483068,0.169196,0.15513,0.701482,0.665045,0.4767,0.29765,0.61083,0.955189,0.762663,0.197922,0.730235,0.316806,0.684482,0.0476775,0.527092,0.464686,0.0352157,0.207053,0.539469,0.821164,0.00995481,0.679472,0.899456,0.304724,0.799305,0.575694,0.712289,0.307388,0.770824,0.768566,0.286517,0.14711,0.625686,0.695569,0.497595,0.417128,0.412001,0.95616,0.312808,0.642981,0.29126,0.967968,0.653585,0.656119,0.843477,0.230136,0.841324,0.329031,0.370425,0.709608,0.385207,0.672144,0.148452,0.95679,0.889749,0.999217,0.580869,0.477846,0.596276,0.608779,0.639345,0.960278,0.452849,0.772058,0.967659,0.0763373,0.620712,0.93092,0.758019,|0.784335,0.0213247,0.0289413,0.937811,0.100786,0.368701,0.976754,0.621836,0.68934,0.776893,0.09949,0.55613,0.184865,0.521794,0.761196,0.937079,0.18081,0.200954,0.0108609,0.949041,0.342995,0.829128,0.445859,0.544393,0.143836,0.224065,0.430109,0.340864,0.00172782,0.454255,0.385859,0.536581,0.597288,0.0913342,0.870742,0.94142,0.913954,0.100619,0.476326,0.0818199,0.443032,0.521146,0.128578,0.65363,0.141412,0.892255,0.4983,0.252669,0.67863,0.883831,0.389327,0.671089,0.954545,0.568144,0.369277,0.533833,0.938166,0.308675,0.90178,0.214117,0.659214,0.686466,0.585312,0.0759727,0.572904,0.285654,0.905201,0.255583,0.2717,0.376302,0.825613,0.614569,0.627978,0.851341,0.507575,0.345412,0.88928,0.132639,0.713585,0.236827,0.596739,0.942253,0.600808,0.168324,0.620782,0.549717,0.543688,0.0603292,0.228564,0.442364,0.703748,0.79239,0.222097,0.088328,0.458982,0.0888928,0.829171,0.586906,0.477824,0.915665,0.560753,0.57473,0.230499,0.56386,0.939248,0.0246811,0.641639,0.0939339,0.0992948,0.00947917,0.469343,0.922987,0.737761,0.729589,0.67596,0.249012,0.418371,0.963817,0.479194,0.335934,0.156169,0.573611,0.477062,0.304967,0.317976,0.141925,0.439666,0.632435,0.964479,0.521591,0.249006,0.814288,0.0475022,0.600879,0.994654,0.872763,0.187856,0.179656,0.761721,0.369435,0.730224,0.104893,0.515631,0.0370426,0.959007,0.9563,0.707238,0.724167,0.102219,0.569946,0.845216,0.504275,0.127253,0.590687,0.402627,0.848413,0.321121,0.404214,0.716206,0.307728,0.111166,0.548991,0.977312,0.314559,0.771708,0.559613,0.300169,0.378499,0.437484,0.58634,0.608757,0.622851,0.194038,0.554944,0.0159884,0.132649,0.144207,0.0602405,0.833191,0.538219,0.00147742,0.902066,0.0653625,0.361419,0.884401,0.798337,0.871924,0.171812,0.57995,0.056686,0.615139,0.18605,0.965851,0.381005,0.312576,0.879914,0.105275,0.27953,0.570138,0.0979197,0.42512,0.530156,0.813954,0.844583,0.224301,0.477865,0.574429,0.623691,0.728305,0.226822,0.183994,0.229873,0.561757,0.163086,0.525733,0.690354,0.404279,0.49886,0.64737,0.381421,0.167491,0.961075,0.690859,0.580745,0.132763,0.748329,0.0125,0.393529,0.165288,0.38557,0.0237156,0.671443,0.468223,0.719764,0.0866988,0.937734,0.136639,0.476514,0.596273,0.533383,0.185873,0.993671,0.246318,0.717881,0.369806,0.709768,0.427581,0.554192,0.488834,0.14581,0.962279,0.946037,0.259828,0.389984,0.183538,0.791817,0.118443,0.53263,0.669779,0.546085,0.887405,0.301026,0.308903,0.18303,0.242189,0.301527,0.73285,0.975329,0.463705,0.629794,0.263812,0.724482,0.625441,0.580483,0.375622,0.936078,0.452987,0.356548,0.426024,0.357725,0.65396,0.38184,0.848271,0.234837,0.119458,0.0542994,0.424261,0.0489198,0.0583516,0.542622,0.58962,0.229207,0.039161,0.235456,0.730416,0.776122,0.744127,0.0253175,0.642278,0.618246,0.868509,0.319552,0.884401,0.0657834,0.567107,0.536803,0.268439,0.477397,0.650617,0.043736,0.271277,0.719305,0.754761,0.174557,0.247761,0.232248,0.0630226,0.0730274,0.080358,0.518562,0.845802,0.575881,0.45418,0.824408,0.544821,0.782065,0.422295,0.732112,0.964323,0.0977008,0.0650398,0.0109572,0.0649063,0.124692,0.16938,0.344884,0.877816,0.320213,0.776243,0.825455,0.162435,0.282442,0.88988,0.249056,0.032541,0.479885,0.0975123,0.517913,0.143584,0.759601,0.98901,0.630263,0.333944,0.844198,0.960869,0.754989,0.751795,0.0553982,0.658029,0.434787,0.813638,0.151787,0.45469,0.902473,0.790211,0.330417,0.138309,0.602827,0.65591,0.69089,0.97218,0.589157,0.70692,0.932018,0.566032,0.939985,0.132614,0.560059,0.579947,0.397026,0.425727,0.801323,0.880695,0.538763,0.138226,0.943897,0.529338,0.610892,0.180766,0.546489,0.204377,0.939086,0.253875,0.466291,0.501893,0.0771779,0.755045,0.723585,0.0345466,0.787155,0.765299,0.0744991,0.122883,0.39736,0.656516,0.678373,0.975753,0.863243,0.953017,0.692519,0.550031,0.692556,0.78609,0.49941,0.656987,0.362214,0.380469,0.124076,0.275097,0.270156,0.290892,0.995485,0.545328,0.567798,0.178138,0.685753,0.467662,0.77048,0.197954,0.647255,0.131543,0.179727,0.330848,0.0462455,0.334471,0.44503,0.550388,0.99163,0.507948,0.113717,0.905538,0.44657,0.120065,0.754214,0.47744,0.279459,0.573536,0.256203,0.684828,0.950953,0.855151,0.668318,0.38344,0.737742,0.40171,0.00176162,0.0987557,0.159383,0.256217,0.499413,0.279792,0.923334,0.977088,0.4033,0.198547,0.0238765,0.00382924,0.927764,0.583713,0.651502,0.173774,0.24332,0.394495,0.112809,0.809261,0.241752,0.319836,0.358614,0.375524,0.00785685,0.367779,0.829997,0.643066,0.936671,0.00421399,0.271323,0.429864,0.684288,0.0362934,0.17638,0.282441,0.304418,0.690389,0.405102,0.378178,0.823072,0.128264,0.89107,0.0827036,0.186442,0.968054,0.778443,0.476474,0.674726,0.734406,0.535893,0.314123,0.136692,0.52623,0.0932885,0.289918,0.120417,0.481091,0.823082,0.600554,0.877158,0.798524,0.891882,0.485975,0.889193,0.998321,0.286202,0.842265,0.512829,0.0114209,0.0177594,0.974673,0.664592,0.754842,0.752294,0.367609,0.344675,0.849977,0.879724,0.0575163,0.390416,0.777442,0.262896,0.677796,0.547419,0.673014,0.198656,0.858477,0.465003,0.375712,0.068734,0.869836,0.255423,0.595994,0.13806,0.355349,0.0434216,0.388469,0.0946796,0.132609,0.799998,0.0495843,0.386968,0.488481,0.520586,0.352983,0.41408,0.359599,0.401365,0.198327,0.439665,0.839984,0.0309167,0.0793477,0.678502,0.198137,0.435656,0.517855,0.362507,0.804847,0.44778,0.315582,0.0838373,0.226585,0.907531,0.124551,0.190889,0.270327,0.412632,0.26421,0.603367,0.943905,0.335275,0.9676,0.0138724,0.504408,0.472997,0.418892,0.976551,0.03794,0.767343,0.408316,0.698048,0.105644,0.920743,0.287618,0.928062,0.904283,0.0121683,0.820543,0.398058,0.856529,0.682782,0.839092,0.446142,0.447412,0.0210864,0.169487,0.0744746,0.853257,0.33358,0.721787,0.588676,0.767768,0.883839,0.949747,0.997762,0.0440509,0.0515134,0.515693,0.42755,0.692919,0.986802,0.271894,0.972081,0.952243,0.591467,0.30856,0.6364,0.423026,0.788334,0.939246,0.593789,0.725919,0.717505,0.436692,0.668626,0.603715,0.371526,0.477578,0.235963,0.651287,0.982316,0.0511726,0.533331,0.691617,0.0907714,0.672884,0.770175,0.318421,0.856846,0.0480993,0.48125,0.462857,0.350127,0.615895,0.921699,0.711398,0.424271,0.829174,0.207982,0.967263,0.872245,0.785978,0.384588,0.0376417,0.218312,0.931097,0.571555,0.603144,0.8592,0.835317,0.24499,0.732776,0.978894,0.0669239,0.826117,0.646839,0.659654,0.781334,0.61286,0.173873,0.46169,0.976534,0.548807,0.0810679,0.581243,0.720795,0.255305,0.551126,0.739292,0.92936,0.911818,0.0657108,0.830742,0.369587,0.239572,0.450494,0.0990199,0.355678,0.525693,0.553119,0.932481,0.500657,0.161897,0.184125,0.333638,0.534055,0.621048,0.679124,0.0856286,0.784439,0.202178,0.692995,0.284005,0.399775,0.595923,0.635467,0.614515,0.434246,0.467385,0.631072,0.126309,0.984748,0.249409,0.529067,0.0244037,0.860316,0.233883,0.138941,0.808851,0.0443107,0.0696115,0.356956,0.189193,0.801135,0.41783,0.448202,0.00432235,0.521717,0.0292236,0.856408,0.690672,0.0626724,0.805552,0.385615,0.760534,0.353986,0.749906,0.984158,0.338126,0.549354,0.707343,0.728749,0.175223,0.341366,0.936459,0.336661,0.284749,0.386467,0.905143,0.886447,0.731543,0.240018,0.306928,0.498697,0.872009,0.837112,0.692196,0.354975,0.333072,0.203576,0.90337,0.964125,0.812363,0.715605,0.374338,0.182936,0.218975,0.545595,0.299474,0.447485,0.883789,0.211846,0.390078,0.826782,0.405746,0.0820975,0.156408,0.213889,0.985003,0.640926,0.706521,0.287878,0.7963,0.56298,0.0290012,0.16553,0.121002,0.521723,0.591002,0.993523,0.0716979,0.502757,0.288183,0.740508,0.228482,0.973054,0.522347,0.73344,0.976786,0.230221,0.512696,0.473998,0.475287,0.323817,0.539989,0.503794,0.360326,0.0344574,0.315174,0.967156,0.177489,0.368738,0.876235,0.794909,0.851891,0.301897,0.235645,0.709115,0.801977,0.34827,0.118167,0.933886,0.351294,0.466064,0.447686,0.0519762,0.487422,0.683025,0.418931,0.44582,0.358791,0.79301,0.570716,0.609834,0.565492,0.640973,0.24399,0.995309,0.215352,0.380558,0.440745,0.590761,0.000274479,0.712372,0.242977,0.357612,0.446969,0.104067,0.984634,0.0763395,0.0428269,0.657353,0.182874,0.934797,0.211618,0.388024,0.715593,0.754697,0.538527,0.428582,0.376309,0.0332964,0.280089,0.914147,0.34912,0.993115,0.985179,0.859157,0.995644,0.382857,0.126015,0.197841,0.0141691,0.970755,0.227955,0.12314,0.804518,0.85509,0.591954,0.727377,0.0829486,0.698252,0.304226,0.588217,0.671041,0.235063,0.0152193,0.168633,0.517752,0.92808,0.642462,0.734594,0.280874,0.581403,0.716073,0.153315,0.555955,0.942383,0.141274,0.38137,0.996122,0.747867,0.894137,0.167629,0.704836,0.341958,0.140608,0.771747,0.434176,0.675495,0.686548,0.343987,0.296277,0.559745,0.586971,0.995108,0.841925,0.999041,0.740949,0.694475,0.816799,0.630231,0.648965,0.133517,0.445208,0.88565,0.480487,0.910027,0.0598952,0.989412,0.704305,0.360748,0.989701,0.993717,0.457628,0.375483,0.918453,0.2742,0.175267,0.29198,0.825315,0.738715,0.728799,0.97671,0.129185,0.510913,0.488421,0.417859,0.404413,0.484158,0.609858,0.758617,0.211347,0.983488,0.296401,0.13124,0.818458,0.525002,0.970501,0.156637,0.756887,0.897585,0.985927,0.575884,0.435092,0.330397,0.599412,0.136114,0.148562,0.576688,0.819175,0.320561,0.484703,0.872923,0.443592,0.285463,0.383979,0.736885,0.40602,0.0540212,0.00462317,0.587214,0.202123,|0.391212,0.387418,0.081522,0.105818,0.83639,0.571827,0.213869,0.886362,0.0608076,0.538101,0.733972,0.439475,0.739659,0.0480165,0.891793,0.495986,0.274647,0.269226,0.952665,0.729244,0.410196,0.113557,0.457097,0.879858,0.530297,0.200524,0.636625,0.169093,0.105738,0.668945,0.550503,0.421115,0.878332,0.407235,0.210478,0.647327,0.528799,0.499393,0.621937,0.728697,0.270902,0.709017,0.181655,0.770162,0.968887,0.593427,0.967876,0.452605,0.471543,0.196821,0.104912,0.51277,0.892521,0.037063,0.483937,0.940475,0.20734,0.926072,0.452351,0.720785,0.675263,0.609418,0.458178,0.819219,0.263395,0.0934491,0.998763,0.625403,0.145839,0.522773,0.301626,0.193257,0.0386403,0.354818,0.618235,0.510472,0.383392,0.914037,0.27269,0.635639,0.811588,0.63788,0.908135,0.651303,0.0993128,0.388424,0.259102,0.222864,0.223296,0.31148,0.294144,0.274536,0.149849,0.612479,0.481478,0.913076,0.780483,0.98861,0.242089,0.154307,0.987429,0.276841,0.552473,0.622068,0.846236,0.102462,0.847318,0.12433,0.467618,0.74551,0.343772,0.273954,0.430186,0.130193,0.970039,0.564229,0.0786726,0.447189,0.666152,0.548413,0.653148,0.710561,0.55409,0.0520293,0.369761,0.410946,0.685534,0.0694565,0.068829,0.401618,0.446303,0.920438,0.105259,0.279377,0.440886,0.491065,0.620941,0.850286,0.442825,0.766888,0.558677,0.79451,0.536914,0.186463,0.191037,0.0159346,0.25662,0.614616,0.151798,0.568483,0.148994,0.888987,0.564867,0.795831,0.09539,0.346711,0.47266,0.00257367,0.708991,0.502022,0.146273,0.330808,0.625121,0.750371,0.0345539,0.168269,0.243263,0.546086,0.407165,0.275326,0.441614,0.871865,0.463466,0.275929,0.815645,0.201122,0.331317,0.756038,0.182557,0.723593,0.396694,0.814718,0.880308,0.727828,0.345201,0.170571,0.547292,0.788905,0.82499,0.577895,0.959546,0.0809212,0.874175,0.315646,0.774029,0.105379,0.965533,0.073189,0.346817,0.474394,0.771831,0.433459,0.624445,0.694649,0.87024,0.678931,0.27497,0.818387,0.086264,0.257746,0.5308,0.225999,0.0866563,0.0690411,0.846714,0.603562,0.624079,0.0189537,0.425062,0.98971,0.967793,0.286712,0.292242,0.537253,0.856536,0.331339,0.0922892,0.3938,0.408659,0.550202,0.635882,0.521446,0.187765,0.135293,0.728632,0.717578,0.609609,0.716848,0.569944,0.0415795,0.89432,0.459484,0.982061,0.27519,0.078661,0.688421,0.657759,0.484192,0.925441,0.463893,0.226351,0.0260682,0.919492,0.995168,0.912887,0.528418,0.473192,0.208397,0.695443,0.804968,0.0527582,0.89876,0.534315,0.982902,0.0956904,0.927324,0.120941,0.153012,0.586546,0.529965,0.000141561,0.880753,0.884255,0.789419,0.5854,0.310302,0.629257,0.224196,0.772858,0.614098,0.621801,0.886578,0.52926,0.39535,0.161157,0.685744,0.85463,0.667756,0.926219,0.229087,0.532992,0.501298,0.589788,0.808618,0.0741736,0.637427,0.592735,0.768775,0.0817503,0.422323,0.451374,0.451766,0.552116,0.595003,0.556776,0.849225,0.616098,0.87546,0.406782,0.471612,0.500528,0.536534,0.36644,0.786483,0.561693,0.224807,0.650377,0.427259,0.241705,0.258425,0.196854,0.409429,0.927946,0.985945,0.707492,0.398435,0.425593,0.0590614,0.922688,0.275862,0.446183,0.70819,0.536982,0.4385,0.966724,0.80623,0.299661,0.170427,0.33584,0.89898,0.902773,0.0071193,0.691496,0.779326,0.739269,0.623752,0.08474,0.326583,0.338157,0.383046,0.188474,0.764216,0.151018,0.79217,0.466824,0.66483,0.758336,0.00956583,0.822391,0.401096,0.231625,0.678402,0.442942,0.973561,0.781064,0.759274,0.170005,0.895094,0.978423,0.066413,0.356817,0.394472,0.585134,0.299866,0.481863,0.137899,0.944114,0.0892823,0.465501,0.517164,0.240651,0.921845,0.547857,0.786794,0.677402,0.558693,0.865789,0.437241,0.237008,0.109897,0.926223,0.188008,0.416536,0.892362,0.43601,0.983029,0.681044,0.0678829,0.691204,0.506506,0.889621,0.308119,0.204236,0.422598,0.763294,0.489746,0.444818,0.199918,0.317967,0.016082,0.22098,0.710872,0.933022,0.985609,0.734648,0.294711,0.813418,0.959788,0.0326341,0.636719,0.157297,0.42856,0.464052,0.0488307,0.961748,0.366687,0.523744,0.670898,0.89328,0.785417,0.791341,0.729449,0.351313,0.957766,0.184297,0.747233,0.342123,0.584936,0.170409,0.226518,0.666126,0.917928,0.624289,0.504477,0.564697,0.609477,0.117683,0.229156,0.137381,0.71851,0.579398,0.119865,0.0411151,0.308684,0.839663,0.216736,0.890242,0.661091,0.708664,0.837373,0.506707,0.808919,0.0609524,0.645585,0.41795,0.118916,0.804204,0.3973,0.272611,0.37678,0.166924,0.348119,0.129958,0.791701,0.130791,0.0971456,0.836831,0.221269,0.555141,0.541005,0.11492,0.220694,0.287501,0.658053,0.537987,0.47013,0.0376527,0.623413,0.343283,0.0979098,0.993573,0.737849,0.768899,0.659369,0.545549,0.519386,0.868458,0.609385,0.964607,0.782092,0.873695,0.872516,0.447574,0.745397,0.197547,0.092911,0.772313,0.130642,0.351033,0.722939,0.547227,0.39013,0.590112,0.799434,0.4092,0.970579,0.136662,0.858537,0.0233274,0.801465,0.775103,0.753003,0.532928,0.373843,0.241146,0.196405,0.0896143,0.575341,0.389348,0.685713,0.893545,0.944768,0.535757,0.46778,0.560936,0.197297,0.340556,0.143794,0.0843924,0.217211,0.95694,0.690277,0.803928,0.147074,0.865538,0.0362555,0.0490652,0.0758879,0.596637,0.219041,0.117783,0.817435,0.576254,0.556638,0.525355,0.51737,0.150555,0.108193,0.712146,0.131193,0.763543,0.957154,0.216802,0.450871,0.261563,0.941898,0.0686033,0.293062,0.685916,0.750848,0.769703,0.159647,0.102972,0.00831109,0.987151,0.671094,0.0957022,0.483587,0.304585,0.441865,0.50529,0.802808,0.562903,0.325538,0.826705,0.986017,0.103365,0.209059,0.0618339,0.717951,0.100935,0.0832585,0.989938,0.434092,0.312368,0.231302,0.0833223,0.428179,0.247118,0.0557423,0.938577,0.401194,0.503707,0.682091,0.551197,0.448282,0.341948,0.846747,0.94431,0.590447,0.663334,0.260034,0.551932,0.0819862,0.556406,0.796081,0.372597,0.978761,0.646901,0.361177,0.745654,0.621168,0.510488,0.726672,0.209225,0.743611,0.145218,0.78569,0.752129,0.959904,0.187586,0.788924,0.799901,0.63393,0.444672,0.253433,0.525837,0.776022,0.997049,0.705024,0.0840859,0.967898,0.366675,0.436415,0.911463,0.251952,0.480334,0.0285652,0.243048,0.431223,0.041698,0.452597,0.677943,0.134719,0.152178,0.862751,0.844045,0.122355,0.09051,0.0537013,0.815328,0.579352,0.317985,0.857629,0.774795,0.0969564,0.494306,0.902249,0.179758,0.86237,0.683132,0.125517,0.95136,0.189126,0.745465,0.0837799,0.233095,0.633919,0.831281,0.506961,0.986214,0.966812,0.958708,0.119223,0.528503,0.0483934,0.699876,0.776851,0.250904,0.981266,0.948652,0.08709,0.179068,0.550966,0.691237,0.111171,0.24741,0.822065,0.887345,0.481932,0.183281,0.511657,0.143985,0.791793,0.777587,0.295057,0.104522,0.88809,0.68452,0.913105,0.565921,0.0344024,0.297545,0.977935,0.241358,0.325598,0.6333,0.629903,0.00921726,0.114902,0.658761,0.221351,0.0367239,0.890126,0.802454,0.130389,0.346549,0.850171,0.368873,0.103815,0.819825,0.839525,0.042787,0.974772,0.626511,0.704464,0.612658,0.692489,0.783756,0.899978,0.117176,0.776193,0.110215,0.252637,0.451932,0.591342,0.951484,0.502691,0.947016,0.0760111,0.708165,0.353753,0.482129,0.747784,0.758406,0.637172,0.769037,0.406129,0.660354,0.439874,0.719746,0.885864,0.660645,0.90454,0.145463,0.982348,0.696557,0.661184,0.253425,0.650333,0.0414324,0.537476,0.845664,0.234443,0.643322,0.488013,0.498939,0.534482,0.018163,0.167035,0.774042,0.945549,0.586139,0.482309,0.0776389,0.16403,0.990314,0.920165,0.201571,0.411899,0.411529,0.322061,0.0147055,0.306114,0.69112,0.298994,0.314883,0.420802,0.0424609,0.127149,0.95836,0.158085,0.515474,0.430829,0.451165,0.859424,0.773132,0.890853,0.884548,0.622914,0.314077,0.53488,0.342997,0.862866,0.675213,0.379498,0.90899,0.58038,0.962221,0.430029,0.533295,0.526558,0.0510564,0.411124,0.153807,0.105248,0.871261,0.795155,0.296397,0.515337,0.741766,0.359993,0.872505,0.13632,0.169437,0.0540119,0.303326,0.752977,0.18629,0.452951,0.783014,0.897777,0.198946,0.360713,0.736741,0.214791,0.895277,0.811562,0.468131,0.0370078,0.945881,0.118447,0.404444,0.0196179,0.92978,0.571977,0.439145,0.366636,0.764125,0.210617,0.792262,0.241052,0.60501,0.850634,0.965023,0.471909,0.396048,0.544515,0.225952,0.525841,0.450851,0.336546,0.770265,0.226981,0.569373,0.17052,0.249627,0.316834,0.981005,0.672141,0.881794,0.275275,0.5648,0.104149,0.543542,0.958833,0.93178,0.967724,0.56845,0.579076,0.182692,0.3657,0.0606745,0.178695,0.330139,0.558304,0.180548,0.788726,0.276938,0.132469,0.28251,0.86964,0.43861,0.00894576,0.940386,0.189395,0.132702,0.922202,0.907505,0.861005,0.252381,0.913588,0.0677465,0.287646,0.844907,0.916832,0.192696,0.146427,0.699717,0.689215,0.257747,0.330345,0.932234,0.816574,0.348563,0.145025,0.220408,0.525259,0.579079,0.305632,0.0321212,0.442907,0.44966,0.758119,0.486279,0.86915,0.77115,0.970303,0.951925,0.969122,0.92463,0.336104,0.13193,0.466951,0.935096,0.13282,0.448679,0.156621,0.378717,0.365774,0.385876,0.912693,0.96175,0.55769,0.974973,0.118046,0.780648,0.888174,0.726371,0.437104,0.574327,0.621515,0.672694,0.00993276,0.34552,0.744154,0.416607,0.281036,0.161432,0.244713,0.384209,0.857846,0.406698,0.0303044,0.702477,0.78043,0.186657,0.489806,0.79192,0.108719,0.0789347,0.58102,0.558151,0.981612,0.300041,0.37583,0.289279,0.552751,0.111572,0.187002,0.670027,0.963451,0.942729,0.103689,0.949658,0.715574,0.629212,0.802158,0.760479,0.987935,|0.29707,0.951867,0.228406,0.935203,0.231998,0.409397,0.893987,0.322297,0.0113603,0.145469,0.373642,0.938577,0.278028,0.559026,0.397628,0.522791,0.0436569,0.629114,0.116938,0.950489,0.884307,0.187296,0.318256,0.728985,0.425941,0.893816,0.0773432,0.251038,0.120374,0.58033,0.504888,0.158666,0.818972,0.957967,0.0851271,0.0330061,0.749483,0.204622,0.855411,0.624651,0.394518,0.704483,0.97657,0.377709,0.319917,0.66854,0.332946,0.828297,0.601316,0.273125,0.241415,0.385715,0.66707,0.452357,0.0824499,0.609705,0.563604,0.370257,0.290626,0.00683123,0.133143,0.40835,0.243139,0.443055,0.606111,0.893741,0.338416,0.432707,0.73267,0.931564,0.542011,0.639838,0.376296,0.401437,0.457384,0.801021,0.948813,0.591696,0.739604,0.170085,0.4845,0.824157,0.608687,0.165864,0.992626,0.0474621,0.849476,0.999953,0.911508,0.484058,0.196601,0.602362,0.442611,0.829668,0.59094,0.325824,0.0822832,0.0784447,0.980234,0.486761,0.704413,0.806809,0.675392,0.856213,0.559822,0.851336,0.691261,0.692898,0.343998,0.61526,0.228678,0.782111,0.270649,0.379781,0.219176,0.422396,0.91055,0.344341,0.0153464,0.29859,0.351828,0.0607604,0.0997142,0.492243,0.198522,0.48724,0.918505,0.680927,0.288153,0.750118,0.199733,0.627328,0.285412,0.192812,0.0231681,0.825201,0.203399,0.959371,0.335307,0.393007,0.433022,0.834404,0.761154,0.819716,0.159095,0.301359,0.950725,0.883219,0.960015,0.160025,0.362756,0.9503,0.125104,0.71242,0.657987,0.255421,0.169038,0.92352,0.209397,0.847011,0.410431,0.714791,0.298153,0.152642,0.279967,0.213283,0.129288,0.640171,0.387326,0.980847,0.558337,0.238385,0.0391353,0.894722,0.228577,0.990554,0.341609,0.872855,0.972221,0.954017,0.801581,0.541902,0.381996,0.436264,0.80347,0.957047,0.511851,0.21572,0.300789,0.333121,0.12743,0.960996,0.750707,0.36961,0.363536,0.552085,0.579906,0.379499,0.405798,0.953256,0.144425,0.0180193,0.686862,0.853718,0.109209,0.228227,0.681386,0.590444,0.175506,0.719398,0.901931,0.140451,0.137563,0.670527,0.137104,0.719958,0.831897,0.0542983,0.991183,0.153372,0.0385271,0.677155,0.227889,0.967141,0.340099,0.861412,0.0793466,0.288778,0.637536,0.489735,0.377155,0.0246872,0.395734,0.13467,0.575025,0.0551065,0.495352,0.17552,0.197478,0.717639,0.5523,0.617494,0.454795,0.494989,0.615548,0.109912,0.425158,0.620724,0.126918,0.0042659,0.63796,0.169951,0.639839,0.348485,0.00751036,0.465949,0.381019,0.59921,0.475333,0.731185,0.952756,0.372833,0.996751,0.409618,0.934437,0.271929,0.859239,0.896925,0.885844,0.134463,0.958817,0.834125,0.320099,0.634064,0.745892,0.354755,0.966039,0.755487,0.951297,0.420252,0.534493,0.257037,0.660807,0.392484,0.158779,0.963552,0.525883,0.438366,0.495563,0.939904,0.680037,0.374459,0.602166,0.147923,0.512112,0.409326,0.30647,0.695821,0.149115,0.633753,0.393505,0.611733,0.0103559,0.950648,0.227772,0.0637931,0.62551,0.923047,0.208473,0.0205844,0.680748,0.871462,0.77536,0.871122,0.825669,0.654841,0.391534,0.615221,0.0128509,0.140951,0.248667,0.582103,0.752306,0.670559,0.299858,0.813396,0.445289,0.0844613,0.406182,0.155571,0.161746,0.998645,0.361986,0.433872,0.300158,0.541081,0.273465,0.780834,0.0617921,0.787591,0.53373,0.322656,0.525319,0.420945,0.625968,0.629345,0.652207,0.502324,0.645308,0.369903,0.240963,0.900034,0.339724,0.806669,0.818558,0.170284,0.672244,0.16023,0.902622,0.398352,0.970149,0.660132,0.562987,0.225649,0.307369,0.787383,0.023746,0.495556,0.00185478,0.230517,0.477395,0.918909,0.741186,0.366035,0.693742,0.0672966,0.805,0.654559,0.0839036,0.602798,0.0810994,0.106643,0.396098,0.341271,0.514393,0.375039,0.40393,0.716351,0.512205,0.512772,0.462952,0.942214,0.762331,0.0153366,0.452928,0.43297,0.53303,0.876907,0.499039,0.299451,0.214837,0.497054,0.387576,0.0983661,0.537455,0.949019,0.746362,0.610964,0.211621,0.755159,0.861632,0.205629,0.694472,0.0434696,0.947563,0.475823,0.32747,0.893533,0.0575906,0.175614,0.408979,0.838248,0.851283,0.697373,0.174411,0.606269,0.336109,0.323695,0.485095,0.836302,0.244635,0.0961613,0.40558,0.3072,0.488168,0.106619,0.886456,0.558576,0.635727,0.0151646,0.461282,0.186448,0.578653,0.7913,0.314877,0.18188,0.879784,0.844265,0.565377,0.787395,0.675959,0.119324,0.313606,0.0152482,0.0536001,0.800399,0.899084,0.00986177,0.35046,0.0679381,0.623314,0.384006,0.777222,0.517409,0.401626,0.601127,0.0244525,0.387484,0.857547,0.0969231,0.786036,0.505882,0.365034,0.808439,0.699437,0.415253,0.109245,0.697971,0.195926,0.0213993,0.419606,0.384835,0.603569,0.190134,0.103228,0.547716,0.432393,0.0501835,0.450681,0.470797,0.0106872,0.590395,0.650341,0.550604,0.552509,0.973508,0.107671,0.410998,0.067897,0.893354,0.925909,0.887931,0.468519,0.743299,0.123775,0.549523,0.176121,0.311779,0.0920394,0.0812817,0.552429,0.677185,0.261641,0.633479,0.157761,0.757858,0.0821442,0.246131,0.19338,0.440592,0.91539,0.694664,0.370073,0.776923,0.81306,0.327075,0.698279,0.785909,0.162191,0.867819,0.743156,0.406857,0.769881,0.418884,0.630467,0.582297,0.00992793,0.230364,0.00347549,0.817411,0.884419,0.0584767,0.583727,0.203265,0.266602,0.735916,0.904983,0.39476,0.165969,0.00930816,0.291023,0.895822,0.770561,0.560213,0.450466,0.826721,0.312874,0.954216,0.961524,0.734052,0.836661,0.51667,0.945061,0.0687451,0.267021,0.795716,0.244886,0.0928402,0.442312,0.723136,0.416196,0.842243,0.996292,0.826013,0.718156,0.954068,0.851612,0.808592,0.213832,0.376932,0.119139,0.494781,0.940155,0.32033,0.487647,0.616078,0.0298411,0.351813,0.549665,0.839162,0.151608,0.251268,0.349119,0.158269,0.779426,0.204672,0.0308225,0.834779,0.992117,0.0364969,0.944851,0.328945,0.562035,0.00245059,0.290586,0.492098,0.754423,0.883826,0.980363,0.383853,0.757223,0.85427,0.237742,0.242678,0.217752,0.0301372,0.406879,0.68005,0.86277,0.0183063,0.471046,0.0532655,0.601531,0.986732,0.438628,0.333232,0.545848,0.441037,0.607966,0.300464,0.389189,0.466427,0.629846,0.154269,0.569437,0.563834,0.264668,0.0194116,0.763006,0.00901496,0.597792,0.0139596,0.365456,0.834919,0.814116,0.88125,0.166333,0.152821,0.745861,0.731392,0.463204,0.918759,0.0498208,0.890936,0.100346,0.435449,0.501847,0.885598,0.0248892,0.212848,0.197799,0.496202,0.925082,0.361703,0.579877,0.335462,0.0581378,0.94851,0.0269457,0.905892,0.982014,0.00174195,0.351608,0.307621,0.441856,0.944415,0.934155,0.282759,0.243372,0.831421,0.373686,0.109928,0.781989,0.945087,0.818367,0.118961,0.0831076,0.743489,0.428987,0.546513,0.0915749,0.977755,0.117107,0.16763,0.66057,0.755392,0.699684,0.940005,0.493292,0.0116172,0.588516,0.171091,0.507315,0.176068,0.489262,0.696569,0.350853,0.141913,0.863759,0.70677,0.563158,0.777342,0.4715,0.29268,0.0731707,0.318504,0.0831034,0.897188,0.688157,0.428218,0.596975,0.804138,0.875987,0.862594,0.785966,0.0876639,0.488857,0.328996,0.895269,0.180393,0.99546,0.240545,0.720402,0.165241,0.548843,0.580039,0.162806,0.775075,0.864315,0.511742,0.222551,0.862651,0.102305,0.24065,0.126669,0.173952,0.127139,0.627976,0.988706,0.520785,0.564415,0.350759,0.38977,0.0781761,0.499094,0.187633,0.164741,0.0343149,0.620264,0.221804,0.41237,0.607159,0.166611,0.850488,0.247421,0.217994,0.161076,0.362581,0.829185,0.259189,0.744182,0.659218,0.00944912,0.329426,0.97618,0.811293,0.240623,0.547371,0.753456,0.162239,0.188807,0.153007,0.261777,0.970735,0.384798,0.253208,0.29559,0.437893,0.161339,0.824902,0.21786,0.124418,0.408813,0.881083,0.161412,0.908374,0.494205,0.263333,0.222889,0.0807967,0.997692,0.515009,0.173511,0.502899,0.861456,0.0131032,0.890768,0.937536,0.394494,0.802918,0.680195,0.613741,0.936203,0.996045,0.0533454,0.0757149,0.458947,0.924643,0.159648,0.128683,0.991403,0.680896,0.570257,0.758019,0.123744,0.182774,0.397209,0.596027,0.159404,0.072271,0.697916,0.0294668,0.634209,0.721372,0.776055,0.0762962,0.383589,0.524563,0.818281,0.0128217,0.0222643,0.448989,0.606314,0.737531,0.805449,0.211507,0.259275,0.805774,0.963719,0.26519,0.544358,0.316936,0.456902,0.4755,0.667493,0.699819,0.630861,0.683923,0.0283403,0.161195,0.389145,0.290081,0.798117,0.826767,0.57616,0.541004,0.590102,0.648756,0.299498,0.959592,0.513863,0.60545,0.622493,0.23885,0.485637,0.335202,0.520133,0.0643392,0.35029,0.340514,0.251511,0.418727,0.438659,0.0515278,0.182735,0.899374,0.29084,0.938666,0.202421,0.404816,0.285365,0.976564,0.978261,0.120039,0.831763,0.824213,0.824258,0.559364,0.840615,0.428626,0.697271,0.367714,0.239557,0.460552,0.38437,0.959958,0.947133,0.0260376,0.99664,0.189333,0.32505,0.853384,0.0608292,0.91826,0.852228,0.480108,0.552149,0.874846,0.631234,0.745944,0.317294,0.935901,0.384213,0.153333,0.442739,0.955383,0.86697,0.91255,0.498384,0.314543,0.926253,0.506487,0.204661,0.675435,0.191755,0.541087,0.972852,0.200947,0.207975,0.138008,0.605299,0.822583,0.962481,0.315176,0.623759,0.0270156,0.633887,0.482708,0.73757,0.26614,0.814865,0.0675889,0.750858,0.501817,0.358267,0.889227,0.381307,0.500841,0.526989,0.60947,0.853665,0.166547,0.21922,0.387738,0.517477,0.954451,0.858359,0.579,0.711632,0.0505402,0.069976,0.538383,0.403998,0.673089,0.0188394,0.361897,0.58077,0.988433,0.705774,0.84647,0.844559,0.558641,0.696062,0.529661,0.022312,0.793411,0.753651,0.659498,0.292423,0.521568,0.456217,0.359423,0.252998,0.170529,0.120427,0.141882,0.686536,0.348056,0.440595,0.458086,|0.745533,0.446102,0.618823,0.914609,0.513969,0.289756,0.973438,0.60744,0.00367171,0.570413,0.401779,0.218326,0.251583,0.501056,0.647084,0.773287,0.0102586,0.980644,0.379504,0.102147,0.723113,0.0348296,0.471937,0.442009,0.642875,0.11756,0.957364,0.954873,0.260599,0.0122746,0.00493592,0.685506,0.447726,0.950554,0.502966,0.532787,0.243751,0.399437,0.327836,0.0409602,0.906482,0.164865,0.000902593,0.215682,0.246974,0.808031,0.379699,0.505064,0.582314,0.356576,0.889714,0.838796,0.891402,0.453428,0.271298,0.856527,0.0795519,0.616217,0.589423,0.374424,0.0133829,0.0941392,0.366513,0.698633,0.814375,0.124844,0.148524,0.0173883,0.486603,0.382114,0.945091,0.116872,0.49481,0.597004,0.538382,0.310853,0.570086,0.63628,0.949754,0.499181,0.65578,0.227949,0.691449,0.703951,0.925721,0.453551,0.741999,0.295938,0.627367,0.211891,0.455136,0.514477,0.902167,0.423284,0.3059,0.400053,0.469214,0.407503,0.325254,0.333382,0.951218,0.678856,0.150032,0.425157,0.829232,0.0276542,0.507038,0.959511,0.981776,0.160464,0.783888,0.447379,0.50377,0.741085,0.15394,0.914984,0.959315,0.502923,0.0147662,0.969912,0.451382,0.843721,0.242522,0.66107,0.676573,0.613384,0.653853,0.869956,0.422594,0.247992,0.320659,0.299203,0.904094,0.259604,0.463167,0.223748,0.688199,0.195196,0.0867206,0.19733,0.483829,0.111718,0.964772,0.556345,0.554278,0.312287,0.880924,0.622877,0.455032,0.634688,0.475286,0.0795026,0.463378,0.482911,0.112297,0.942264,0.268433,0.027327,0.486943,0.519145,0.482834,0.305077,0.373608,0.866029,0.0655413,0.439405,0.0131794,0.491155,0.226744,0.825037,0.782569,0.210199,0.661503,0.024152,0.118271,0.419661,0.800069,0.510077,0.998792,0.339223,0.308275,0.904927,0.666867,0.539101,0.393948,0.087069,0.340066,0.777923,0.185959,0.316557,0.136159,0.660904,0.47301,0.582,0.741589,0.728681,0.412248,0.261603,0.151757,0.721294,0.153585,0.601943,0.145832,0.991508,0.572869,0.934752,0.7335,0.632352,0.54744,0.0920735,0.864309,0.845605,0.840592,0.942375,0.299047,0.925654,0.472912,0.71274,0.716386,0.926006,0.528358,0.320143,0.741509,0.542894,0.685997,0.217279,0.0285163,0.561961,0.211002,0.853206,0.449434,0.820112,0.476533,0.582114,0.290407,0.0524198,0.708075,0.146848,0.288465,0.702138,0.512615,0.688846,0.806508,0.104196,0.167664,0.597316,0.847029,0.0223936,0.332089,0.323461,0.191635,0.0667098,0.711208,0.73336,0.249009,0.84735,0.931119,0.613194,0.553176,0.176162,0.694772,0.0137124,0.968305,0.439809,0.677038,0.111714,0.722376,0.134838,0.418435,0.112252,0.211531,0.626399,0.328101,0.71287,0.641986,0.778086,0.134122,0.444727,0.911438,0.457798,0.281176,0.00212985,0.551836,0.0613812,0.381013,0.156971,0.668243,0.192855,0.619168,0.249295,0.916287,0.807567,0.669431,0.95843,0.807014,0.875571,0.933511,0.505922,0.806049,0.0154557,0.680019,0.681013,0.0470133,0.734798,0.581668,0.555994,0.132193,0.0518538,0.0330025,0.581564,0.550214,0.787202,0.639868,0.371437,0.633394,0.853627,0.583402,0.184519,0.0361152,0.633792,0.33415,0.428165,0.853543,0.0561099,0.468061,0.283257,0.458735,0.545107,0.897767,0.627084,0.997091,0.00550407,0.83376,0.614817,0.174064,0.311892,0.700777,0.0348467,0.642311,0.939289,0.142567,0.953568,0.307339,0.455047,0.0977795,0.300856,0.162797,0.0121704,0.196608,0.574512,0.312274,0.775183,0.769075,0.659228,0.843141,0.550978,0.427594,0.246024,0.237017,0.118714,0.198586,0.646754,0.794727,0.967442,0.723552,0.789759,0.692977,0.955189,0.19694,0.840447,0.0303221,0.230998,0.328407,0.517894,0.665174,0.17892,0.780842,0.534418,0.117427,0.722155,0.169479,0.609774,0.810486,0.723087,0.519552,0.831558,0.130706,0.294936,0.83201,0.989218,0.719816,0.958657,0.827672,0.164692,0.92807,0.751896,0.159398,0.773677,0.53078,0.757306,0.0370048,0.950208,0.769088,0.0617251,0.71979,0.103454,0.646551,0.511207,0.077662,0.503736,0.435307,0.724945,0.0314446,0.122772,0.622089,0.480878,0.796116,0.898672,0.593397,0.810277,0.438354,0.713392,0.70562,0.888064,0.902115,0.515367,0.855336,0.643877,0.457861,0.960621,0.623934,0.400762,0.524042,0.939738,0.545844,0.971987,0.252073,0.744673,0.680337,0.655023,0.185837,0.262887,0.0324986,0.995693,0.7659,0.295546,0.0522932,0.0220937,0.123681,0.809129,0.747703,0.705145,0.728401,0.387065,0.653085,0.596024,0.116249,0.674933,0.594454,0.840394,0.710611,0.551763,0.896838,0.657208,0.615561,0.95335,0.0398966,0.810328,0.559405,0.554096,0.930167,0.0454488,0.261306,0.875142,0.506208,0.953547,0.418312,0.457367,0.896177,0.708456,0.261881,0.0958188,0.639132,0.62018,0.175364,0.587893,0.57561,0.513194,0.350599,0.450036,0.181539,0.78421,0.49827,0.297117,0.0766542,0.277601,0.340977,0.892625,0.26785,0.215599,0.20605,0.911551,0.749251,0.475375,0.363802,0.43608,0.608318,0.351886,0.96705,0.440695,0.902219,0.819992,0.688207,0.213888,0.279268,0.585673,0.709415,0.898443,0.564777,0.0839862,0.0621181,0.0926864,0.581833,0.372998,0.344627,0.581436,0.0385838,0.505195,0.925853,0.899978,0.064946,0.191227,0.1217,0.43344,0.593744,0.189143,0.175016,0.420807,0.682147,0.188113,0.188479,0.139801,0.130396,0.483131,0.179608,0.883754,0.150512,0.951832,0.249064,0.13209,0.632785,0.578092,0.672185,0.159633,0.659523,0.527373,0.514153,0.985237,0.700745,0.895454,0.498273,0.0189226,0.0384474,0.81329,0.12756,0.0969917,0.758081,0.880875,0.490031,0.272077,0.825297,0.745339,0.192196,0.742422,0.245085,0.198129,0.369236,0.254184,0.904253,0.0806924,0.856764,0.830637,0.368885,0.933142,0.875396,0.413656,0.212429,0.64545,0.97278,0.327629,0.204448,0.653464,0.738802,0.894675,0.950329,0.523136,0.783618,0.167121,0.819426,0.638548,0.301065,0.194468,0.960183,0.122917,0.185964,0.333963,0.935868,0.455597,0.698935,0.553282,0.850132,0.119725,0.888303,0.651831,0.619533,0.245915,0.0512397,0.778389,0.912781,0.00477743,0.167956,0.583364,0.438977,0.0914323,0.0632349,0.16731,0.21937,0.5938,0.983859,0.406357,0.903565,0.210184,0.0690748,0.342028,0.19454,0.553959,0.172607,0.867887,0.601965,0.311928,0.208926,0.909835,0.641038,0.536972,0.515287,0.552382,0.270309,0.0786137,0.96543,0.558035,0.480126,0.717019,0.338943,0.0795619,0.408837,0.758876,0.200837,0.569315,0.317111,0.916667,0.477066,0.659839,0.377494,0.0534672,0.432341,0.958101,0.632939,0.2534,0.617843,0.734195,0.845203,0.356815,0.857814,0.980674,0.803779,0.925805,0.0972183,0.944016,0.674448,0.808212,0.0454952,0.978644,0.476395,0.084412,0.109152,0.13344,0.150548,0.31531,0.628496,0.653357,0.0877687,0.838477,0.842344,0.228539,0.605736,0.0713908,0.541928,0.354528,0.860595,0.325268,0.629911,0.95521,0.77029,0.364795,0.257661,0.770542,0.82791,0.363347,0.951511,0.689675,0.125529,0.85719,0.495882,0.0629434,0.570464,0.505469,0.222524,0.436812,0.503196,0.613512,0.749499,0.334166,0.447401,0.184754,0.339508,0.465865,0.162037,0.903718,0.880444,0.253127,0.850209,0.89945,0.380056,0.59019,0.292683,0.445142,0.124129,0.37675,0.116432,0.424542,0.689097,0.753355,0.397284,0.813349,0.919042,0.825655,0.847082,0.467551,0.374157,0.212657,0.808287,0.510849,0.251633,0.0196646,0.391005,0.474383,0.887197,0.582371,0.554897,0.507612,0.643009,0.493747,0.0159582,0.914714,0.0632088,0.617624,0.707665,0.402003,0.449539,0.537164,0.602459,0.298945,0.509196,0.768473,0.332855,0.315798,0.107369,0.68724,0.933448,0.15042,0.279115,0.24295,0.424833,0.0528873,0.205017,0.128151,0.659592,0.846526,0.736797,0.555093,0.263115,0.557123,0.750707,0.482592,0.489792,0.190701,0.72123,0.970927,0.57381,0.965491,0.225242,0.744684,0.477896,0.318495,0.705833,0.726173,0.0917339,0.209591,0.950459,0.0285177,0.468102,0.3392,0.039736,0.356538,0.541407,0.820103,0.388115,0.0795577,0.292871,0.135133,0.731258,0.643988,0.616771,0.278503,0.481191,0.107084,0.835492,0.923006,0.924997,0.843538,0.579642,0.150309,0.271853,0.157264,0.46204,0.420439,0.444247,0.875954,0.818259,0.466001,0.14661,0.82421,0.256123,0.859193,0.872735,0.113282,0.304594,0.989372,0.975653,0.876047,0.0091989,0.913618,0.0255501,0.42011,0.63607,0.982438,0.21493,0.191432,0.0681172,0.0852344,0.437273,0.628573,0.419319,0.524837,0.0293568,0.479153,0.106761,0.844187,0.475029,0.314828,0.825714,0.485135,0.314939,0.939694,0.738277,0.955497,0.545734,0.693368,0.537932,0.0188293,0.344784,0.0182283,0.366464,0.067477,0.0405336,0.872632,0.315466,0.783008,0.797148,0.937741,0.0449713,0.887218,0.711926,0.144199,0.608728,0.131674,0.835945,0.92366,0.217793,0.0737302,0.277228,0.256815,0.616693,0.441105,0.276151,0.625193,0.572164,0.0922734,0.471862,0.922813,0.947922,0.195152,0.668113,0.501201,0.126285,0.240389,0.345997,0.652312,0.984699,0.951838,0.82049,0.947985,0.841019,0.551594,0.568982,0.142272,0.83151,0.121652,0.361521,0.0438278,0.319406,0.32027,0.246441,0.756959,0.293083,0.584694,0.769499,0.50286,0.473618,0.286399,0.759845,0.489986,0.590905,0.489284,0.116936,0.802289,0.329608,0.36906,0.0925672,0.639236,0.170126,0.517383,0.0529155,0.633877,0.559864,0.196606,0.0849241,0.314471,0.589096,0.665533,0.631115,0.914178,0.951924,0.520402,0.909454,0.277139,0.0342659,0.212548,0.07491,0.318144,0.728309,0.893444,0.662648,0.962244,0.334278,0.586654,0.532077,0.891889,0.667107,0.452463,0.664328,0.151421,0.223531,0.897822,0.160765,0.514173,0.323548,0.523445,0.8611,0.861073,0.172758,0.233866,0.62813,0.595847,0.49762,0.737987,0.981684,0.310621,0.680804,0.703341,|0.363128,0.0660411,0.9735,0.481269,0.702714,0.710107,0.806248,0.207385,0.241105,0.438993,0.596077,0.33936,0.211925,0.407317,0.121254,0.754317,0.966077,0.583031,0.299716,0.733998,0.434021,0.916586,0.696804,0.94267,0.265598,0.471705,0.0485714,0.798639,0.0963317,0.373767,0.442347,0.500699,0.138324,0.651906,0.765646,0.0548623,0.781128,0.244331,0.69309,0.351533,0.447561,0.353113,0.367674,0.743196,0.03941,0.772357,0.0836921,0.688068,0.29775,0.578469,0.499083,0.304839,0.456658,0.668279,0.0969578,0.904229,0.311465,0.75051,0.158189,0.657692,0.640129,0.561617,0.326255,0.755025,0.347933,0.956476,0.930037,0.592679,0.619058,0.761344,0.545861,0.710948,0.324646,0.00471777,0.124744,0.0327121,0.142859,0.0620869,0.444621,0.622585,0.502804,0.29912,0.120201,0.331491,0.867266,0.476174,0.327765,0.878101,0.47823,0.340501,0.944325,0.947494,0.895746,0.185307,0.430726,0.939413,0.698771,0.599548,0.991553,0.223539,0.974683,0.358476,0.124385,0.198887,0.449686,0.589325,0.464182,0.00143594,0.535232,0.702385,0.0394566,0.217255,0.744694,0.364136,0.727935,0.434534,0.270791,0.493488,0.895217,0.898828,0.667463,0.386671,0.305438,0.59011,0.849498,0.25282,0.400149,0.0754792,0.666866,0.219636,0.544959,0.215559,0.308457,0.335682,0.862694,0.31209,0.643793,0.813297,0.851298,0.409707,0.718846,0.44445,0.0118482,0.304851,0.778898,0.214931,0.667318,0.600973,0.493652,0.707916,0.177922,0.0243662,0.603638,0.765301,0.15952,0.932442,0.966206,0.788042,0.688091,0.928076,0.783642,0.776835,0.25001,0.533379,0.119274,0.768304,0.700332,0.257266,0.449433,0.432693,0.0201897,0.735273,0.310225,0.28403,0.930061,0.57741,0.993835,0.208277,0.527817,0.29664,0.296162,0.41828,0.771071,0.78973,0.0897722,0.207208,0.306019,0.205601,0.626622,0.314425,0.350349,0.796613,0.390888,0.0227381,0.384506,0.313221,0.94377,0.226789,0.735535,0.181494,0.27683,0.623378,0.113596,0.954671,0.432818,0.0320554,0.0394019,0.429148,0.170358,0.565885,0.334174,0.636037,0.122404,0.625414,0.0228839,0.0935762,0.578511,0.559635,0.0719544,0.532185,0.147795,0.11352,0.60519,0.680489,0.810676,0.0972502,0.948427,0.259585,0.499051,0.877568,0.26132,0.343914,0.216371,0.808029,0.557389,0.200484,0.909953,0.841922,0.126242,0.801133,0.15174,0.220441,0.686632,0.0212858,0.693627,0.102181,0.186944,0.14097,0.435585,0.9458,0.162833,0.0627913,0.310149,0.238759,0.436081,0.575281,0.505581,0.411244,0.386152,0.636372,0.504018,0.723287,0.692871,0.950644,0.63433,0.966547,0.664454,0.355139,0.688975,0.538513,0.0781819,0.226272,0.642235,0.0218915,0.122943,0.513853,0.991514,0.000811875,0.314202,0.668587,0.540568,0.0200068,0.37393,0.957964,0.665869,0.685392,0.293094,0.583777,0.014361,0.860187,0.315232,0.289185,0.450798,0.675263,0.406478,0.226239,0.863437,0.989236,0.973341,0.186061,0.268876,0.616617,0.481205,0.667462,0.353202,0.927191,0.0309595,0.226941,0.0386629,0.780669,0.130175,0.664021,0.132891,0.660509,0.822037,0.230869,0.175493,0.436264,0.2443,0.700581,0.68228,0.640142,0.678085,0.425306,0.785925,0.212398,0.0575576,0.783822,0.341703,0.561991,0.924628,0.154961,0.0676029,0.857461,0.491733,0.823631,0.770772,0.0452889,0.370245,0.326979,0.644854,0.537314,0.0914891,0.414548,0.336989,0.0123682,0.826173,0.86893,0.807066,0.445298,0.865841,0.592081,0.080774,0.275334,0.419438,0.52461,0.529535,0.814416,0.280749,0.95753,0.470897,0.798748,0.924234,0.0680491,0.322787,0.826901,0.576355,0.726203,0.33957,0.733173,0.378429,0.943972,0.762038,0.82102,0.889229,0.934539,0.182653,0.253339,0.630078,0.850312,0.655631,0.8476,0.409854,0.992021,0.347981,0.0490174,0.132938,0.170349,0.888941,0.463595,0.291376,0.723957,0.718633,0.0995842,0.899983,0.233318,0.329748,0.938558,0.460955,0.794387,0.0911899,0.139368,0.122516,0.041086,0.382593,0.459344,0.577892,0.935433,0.24807,0.28703,0.696683,0.766595,0.0511185,0.212718,0.23458,0.975763,0.275616,0.279823,0.366718,0.999848,0.587689,0.133266,0.454458,0.174166,0.707645,0.191247,0.0164505,0.486593,0.520707,0.372482,0.0815002,0.83951,0.424173,0.378389,0.174584,0.238862,0.397451,0.402935,0.841249,0.193674,0.405909,0.162732,0.13109,0.250146,0.501928,0.907577,0.660337,0.545933,0.930398,0.293009,0.125906,0.451055,0.61605,0.312885,0.242981,0.0498316,0.587322,0.261982,0.601949,0.232748,0.903929,0.0925054,0.120176,0.202783,0.0349724,0.302284,0.539786,0.309919,0.445557,0.404483,0.881912,0.442913,0.726554,0.422668,0.417422,0.665553,0.914992,0.652853,0.0612278,0.964916,0.240233,0.184992,0.111656,0.80865,0.263025,0.929642,0.731976,0.0871947,0.107283,0.93342,0.277197,0.284619,0.208974,0.146888,0.535343,0.0260341,0.96414,0.436425,0.379578,0.274662,0.791845,0.0779019,0.525169,0.136214,0.271557,0.0716533,0.720445,0.607459,0.383884,0.00860745,0.66027,0.886219,0.415013,0.77765,0.581454,0.94905,0.155978,0.162301,0.0771987,0.484357,0.231773,0.482647,0.393817,0.204793,0.426624,0.821768,0.827905,0.129702,0.52525,0.0450508,0.210965,0.687144,0.352588,0.377178,0.950124,0.943486,0.357088,0.163513,0.556429,0.749703,0.142016,0.375216,0.00130635,0.555535,0.152373,0.729441,0.130451,0.280786,0.84706,0.626952,0.0925043,0.245127,0.608493,0.418884,0.13989,0.253857,0.272261,0.210718,0.917436,0.16911,0.89303,0.0953221,0.0198854,0.800464,0.198226,0.493284,0.147723,0.531664,0.764361,0.46288,0.513192,0.531409,0.849438,0.433088,0.00170881,0.224043,0.808286,0.926542,0.372643,0.231753,0.843165,0.391732,0.207622,0.579827,0.904533,0.892294,0.019492,0.574369,0.52407,0.617841,0.223434,0.398316,0.0372401,0.672585,0.947224,0.421014,0.127421,0.892668,0.280463,0.935124,0.351596,0.897845,0.160724,0.928075,0.204443,0.289522,0.770098,0.370073,0.0521988,0.810184,0.624134,0.987638,0.96626,0.025443,0.611432,0.513554,0.105321,0.250585,0.738472,0.14693,0.799609,0.716918,0.724449,0.500171,0.63621,0.714318,0.0856391,0.217972,0.511237,0.668043,0.480194,0.677491,0.300772,0.11066,0.927254,0.215715,0.659074,0.687468,0.390025,0.414173,0.60413,0.192245,0.513074,0.465105,0.247495,0.0173786,0.082724,0.244152,0.907738,0.0682462,0.970709,0.826822,0.287724,0.958652,0.28606,0.778233,0.30053,0.280869,0.23095,0.342689,0.534406,0.238141,0.851851,0.369596,0.114168,0.941313,0.954466,0.961568,0.0871633,0.194883,0.329061,0.0514135,0.939085,0.239809,0.349861,0.164838,0.277654,0.0178319,0.720158,0.0395243,0.427545,0.0197142,0.91958,0.244316,0.849674,0.346384,0.254321,0.81296,0.568284,0.656179,0.848997,0.7387,0.871601,0.125762,0.201829,0.585327,0.234855,0.158041,0.824507,0.465834,0.127204,0.160643,0.670082,0.165196,0.599517,0.112201,0.0598007,0.703641,0.769096,0.735572,0.0213316,0.227481,0.296135,0.466913,0.640083,0.310521,0.431683,0.14557,0.481168,0.953322,0.285071,0.800397,0.401282,0.95943,0.871091,0.162458,0.16474,0.753148,0.558906,0.92934,0.924235,0.214908,0.810304,0.427925,0.7857,0.377938,0.340777,0.569586,0.140188,0.887522,0.0929314,0.367292,0.0900788,0.121697,0.319295,0.634641,0.627093,0.844013,0.992397,0.00766891,0.435369,0.899026,0.119592,0.62925,0.32294,0.667584,0.057557,0.0596596,0.516117,0.131341,0.67194,0.431049,0.554143,0.842732,0.452966,0.690662,0.152978,0.449925,0.0639251,0.900752,0.328404,0.748063,0.411051,0.332873,0.952386,0.488,0.144278,0.339399,0.199744,0.385248,0.0490997,0.342377,0.989238,0.52974,0.310162,0.00936031,0.158717,0.834952,0.178378,0.409369,0.980918,0.895493,0.200537,0.257202,0.405875,0.183091,0.931234,0.671534,0.314588,0.159229,0.0421902,0.30736,0.0706694,0.277407,0.924659,0.100066,0.394482,0.5118,0.163499,0.96665,0.258614,0.0901724,0.325912,0.0882826,0.525172,0.894985,0.418533,0.330515,0.980689,0.139555,0.15951,0.979804,0.720004,0.726355,0.5991,0.532466,0.599501,0.785188,0.163362,0.613238,0.965325,0.643212,0.444473,0.414019,0.15039,0.0436444,0.765241,0.730483,0.799066,0.409821,0.0799714,0.478878,0.355195,0.26843,0.831303,0.444796,0.738715,0.106967,0.0200332,0.991737,0.846363,0.109151,0.289311,0.386661,0.868162,0.340219,0.644567,0.255717,0.638503,0.0847546,0.400445,0.886079,0.143875,0.139839,0.411281,0.330607,0.812409,0.50863,0.42441,0.7481,0.222333,0.307608,0.612435,0.0278242,0.0385929,0.283135,0.727174,0.324902,0.127042,0.163089,0.918472,0.168956,0.7569,0.29511,0.296364,0.0020687,0.0433144,0.543301,0.363285,0.704594,0.642717,0.23003,0.640833,0.730973,0.322933,0.918997,0.478453,0.112197,0.109848,0.525937,0.716951,0.565198,0.887815,0.3516,0.32979,0.372679,0.756874,0.111857,0.492012,0.664789,0.177675,0.0921206,0.530724,0.0724338,0.526733,0.137312,0.327028,0.115154,0.0161309,0.882251,0.880853,0.379062,0.244368,0.747893,0.409616,0.278298,0.157053,0.0132524,0.628804,0.322749,0.564627,0.985271,0.974755,0.1262,0.926728,0.74103,0.36922,0.97674,0.536614,0.382129,0.902737,0.576087,0.605532,0.52082,0.326401,0.999414,0.642643,0.428999,0.0612552,0.634395,0.458069,0.108367,0.0865171,0.822023,0.170717,0.522156,0.94307,0.695479,0.547443,0.52243,0.401473,0.203514,0.675117,0.0683302,0.185497,0.0765413,0.63742,0.172918,0.773775,0.247814,0.409185,0.736841,0.150184,0.115466,0.49958,0.566748,0.0304122,0.124059,0.300623,0.252789,0.000741422,0.207036,0.615614,0.961596,0.732328,0.303958,0.896823,0.549085,0.534824,0.422401,0.350159,0.0356534,0.937209,0.17005,0.874497,0.71393,0.627803,0.222602,0.886961,0.204107,|0.0997827,0.958059,0.685837,0.324458,0.354952,0.736826,0.0491084,0.941446,0.8683,0.35169,0.207292,0.093523,0.0724299,0.0520897,0.189772,0.137528,0.779464,0.201823,0.926399,0.335091,0.0697913,0.0766364,0.735601,0.790999,0.965138,0.517049,0.0256845,0.702538,0.0956123,0.242263,0.712462,0.131427,0.0427712,0.572466,0.277421,0.192414,0.553848,0.241542,0.0304503,0.726489,0.0513046,0.9183,0.611918,0.73426,0.845354,0.499724,0.505939,0.599919,0.890118,0.823392,0.404884,0.892068,0.883884,0.859226,0.233085,0.320084,0.321826,0.520161,0.38454,0.981691,0.396712,0.0719753,0.0213566,0.107,0.534027,0.376608,0.480951,0.993656,0.0523111,0.500869,0.39145,0.466619,0.642415,0.689813,0.394502,0.95229,0.396828,0.57334,0.612767,0.425013,0.154465,0.388284,0.0236733,0.639451,0.397014,0.856472,0.917708,0.55541,0.63585,0.0551565,0.899995,0.553785,0.617279,0.658121,0.579322,0.343834,0.731761,0.823823,0.412199,0.175954,0.0340078,0.165102,0.289375,0.611446,0.909699,0.241428,0.00273913,0.532552,0.314237,0.302423,0.744036,0.588316,0.678054,0.870711,0.561322,0.0212936,0.563397,0.758379,0.571404,0.666322,0.43924,0.728992,0.134971,0.690205,0.788182,0.633221,0.26759,0.878159,0.821219,0.507323,0.670047,0.398807,0.427917,0.85643,0.692436,0.634814,0.851886,0.336792,0.521819,0.469702,0.539813,0.42644,0.484343,0.0167688,0.687841,0.372435,0.827551,0.889754,0.688953,0.451877,0.532186,0.401201,0.525497,0.309042,0.730048,0.835393,0.886831,0.126772,0.0316032,0.612537,0.263783,0.987099,0.800997,0.095745,0.661527,0.754888,0.58689,0.523048,0.65684,0.336159,0.319155,0.875724,0.90988,0.333047,0.427773,0.977562,0.142767,0.890997,0.172792,0.227421,0.54481,0.749624,0.101709,0.984005,0.737716,0.928065,0.396656,0.840223,0.240852,0.942793,0.563219,0.930572,0.56683,0.018829,0.222672,0.0479366,0.210318,0.108846,0.726067,0.295856,0.793036,0.866593,0.34319,0.575425,0.871101,0.245745,0.332765,0.241911,0.612912,0.651812,0.269872,0.900867,0.860023,0.0855967,0.990756,0.356544,0.456517,0.788411,0.87597,0.542608,0.444504,0.864572,0.663808,0.171939,0.0899419,0.717679,0.0471292,0.25283,0.669638,0.0760401,0.969168,0.809787,0.619087,0.751659,0.448386,0.672356,0.750393,0.785042,0.573655,0.136561,0.626332,0.563205,0.67434,0.625719,0.39464,0.628031,0.294037,0.843807,0.452166,0.693731,0.0136833,0.106941,0.337359,0.993475,0.0863501,0.0238488,0.44281,0.257655,0.320675,0.248287,0.019156,0.737748,0.146609,0.304824,0.638309,0.853087,0.0712993,0.505944,0.638216,0.703974,0.877426,0.488223,0.903332,0.961449,0.545177,0.930668,0.587738,0.629407,0.0697917,0.522213,0.18795,0.332401,0.51353,0.845551,0.0592886,0.511057,0.0299287,0.388195,0.114026,0.0120688,0.786698,0.972994,0.150774,0.229305,0.477603,0.705937,0.222626,0.207099,0.137417,0.00210196,0.530985,0.45893,0.836511,0.46338,0.104373,0.724701,0.764365,0.127128,0.653296,0.57803,0.652386,0.113809,0.404774,0.636765,0.731077,0.338094,0.876068,0.573089,0.825532,0.550623,0.836622,0.957845,0.265746,0.338937,0.809132,0.770397,0.433783,0.27727,0.673017,0.0481303,0.500955,0.636458,0.194995,0.101841,0.442548,0.82173,0.993732,0.400921,0.450566,0.800988,0.726758,0.748806,0.127678,0.202255,0.725197,0.702919,0.736666,0.473213,0.79177,0.919402,0.203927,0.777153,0.236929,0.332643,0.447158,0.629673,0.601783,0.830801,0.368983,0.268265,0.76844,0.489414,0.443827,0.381119,0.893427,0.972076,0.365557,0.69346,0.598216,0.682387,0.766313,0.733743,0.903834,0.260435,0.00644332,0.18985,0.610289,0.471437,0.0553139,0.709282,0.79405,0.341364,0.334664,0.770564,0.147759,0.556584,0.438646,0.585799,0.195404,0.470249,0.1482,0.430701,0.604407,0.871267,0.804331,0.60863,0.947677,0.465824,0.0188015,0.257809,0.154109,0.727445,0.188571,0.584117,0.345436,0.694161,0.173887,0.0861189,0.244191,0.733811,0.33566,0.629038,0.864726,0.575063,0.397948,0.0902689,0.128849,0.574034,0.494544,0.70424,0.0924241,0.51332,0.361336,0.29022,0.477296,0.243644,0.479754,0.424473,0.935254,0.879795,0.44862,0.0915564,0.0781848,0.295398,0.81883,0.261987,0.45611,0.305341,0.544377,0.0599641,0.544256,0.998845,0.200603,0.758047,0.163481,0.460709,0.352977,0.727478,0.0506316,0.0970352,0.277243,0.852479,0.378642,0.505263,0.177264,0.260718,0.71391,0.0169645,0.573605,0.728112,0.413538,0.0955235,0.0385826,0.354223,0.213929,0.205577,0.908612,0.00568849,0.321483,0.88277,0.399819,0.785616,0.0395288,0.521501,0.70292,0.525182,0.88673,0.47076,0.246916,0.580247,0.20121,0.143302,0.206993,0.24702,0.0102057,0.7519,0.935552,0.120623,0.498978,0.381942,0.94323,0.323675,0.187998,0.140268,0.333089,0.806789,0.359465,0.237529,0.0255902,0.523243,0.609986,0.0286462,0.168137,0.717406,0.876951,0.453465,0.562261,0.812944,0.976244,0.0280942,0.501615,0.893982,0.591378,0.38295,0.496918,0.286856,0.0497472,0.201648,0.56697,0.102293,0.0634308,0.572501,0.509571,0.950077,0.724138,0.565032,0.137553,0.494661,0.576575,0.485316,0.247587,0.00921339,0.478444,0.823759,0.809975,0.616583,0.338592,0.090151,0.875982,0.204576,0.704453,0.206796,0.914813,0.543518,0.840818,0.531104,0.899784,0.409903,0.1176,0.197346,0.72091,0.807173,0.738258,0.164242,0.45018,0.219209,0.781981,0.0100528,0.217965,0.384625,0.0826914,0.700558,0.0440749,0.652231,0.548621,0.637165,0.375259,0.0199338,0.752463,0.811126,0.104053,0.932202,0.676611,0.182923,0.748876,0.0474721,0.0363532,0.319025,0.802342,0.926517,0.535036,0.722454,0.691914,0.949087,0.149585,0.772556,0.96866,0.64565,0.245704,0.155957,0.390538,0.303447,0.908079,0.0363525,0.0435053,0.0427979,0.426379,0.172182,0.496366,0.912485,0.729908,0.173106,0.672099,0.0972785,0.297979,0.48063,0.197859,0.797572,0.873147,0.684891,0.931153,0.420286,0.619016,0.374906,0.543696,0.266735,0.354612,0.495398,0.582637,0.34419,0.51788,0.342229,0.467691,0.209082,0.18805,0.516631,0.168677,0.277898,0.80793,0.160375,0.289286,0.115262,0.245274,0.751256,0.598762,0.188498,0.815939,0.915857,0.570294,0.209876,0.686713,0.527968,0.820237,0.414014,0.58675,0.60334,0.233389,0.309816,0.20728,0.220367,0.921156,0.00742704,0.760831,0.0969763,0.799053,0.380332,0.417837,0.0116059,0.853911,0.606116,0.922404,0.152389,0.315233,0.129052,0.135584,0.517369,0.740796,0.159323,0.0761203,0.133669,0.0315309,0.877834,0.052119,0.711038,0.696035,0.279683,0.027804,0.390531,0.762626,0.858136,0.600675,0.361122,0.0151543,0.984991,0.0934368,0.210811,0.0201474,0.441831,0.459609,0.17046,0.323696,0.157127,0.770453,0.301631,0.783254,0.402845,0.232,0.914028,0.407751,0.768021,0.183468,0.333982,0.457479,0.261319,0.321695,0.567046,0.705655,0.168765,0.0660452,0.0386961,0.484339,0.246999,0.123135,0.0327622,0.961972,0.78112,0.0827575,0.300053,0.340134,0.0902735,0.36751,0.569518,0.0739848,0.628224,0.433091,0.159211,0.187213,0.475622,0.664202,0.299728,0.301582,0.852272,0.207096,0.402459,0.696338,0.966799,0.390184,0.661395,0.683258,0.590877,0.857166,0.137686,0.114999,0.346922,0.645785,0.916566,0.898158,0.699594,0.417587,0.257013,0.00630462,0.667854,0.824487,0.403377,0.695398,0.239007,0.0681286,0.881769,0.0420271,0.329195,0.623834,0.468413,0.32422,0.0530129,0.000485778,0.591263,0.0186658,0.496445,0.767209,0.405075,0.377677,0.568795,0.104216,0.948865,0.971249,0.259168,0.255536,0.977145,0.971614,0.454425,0.967273,0.117833,0.192205,0.905928,0.35452,0.520894,0.469819,0.241119,0.859103,0.865429,0.223697,0.549684,0.1628,0.657526,0.43732,0.302279,0.520278,0.0088011,0.268194,0.286447,0.583646,0.861064,0.388492,0.321284,0.352256,0.683553,0.600911,0.362182,0.742002,0.858834,0.536473,0.0856255,0.633403,0.220652,0.272154,0.885791,0.388808,0.916552,0.374096,0.0163665,0.200379,0.241096,0.261471,0.433017,0.70612,0.347612,0.0118337,0.916039,0.878841,0.384485,0.654338,0.602108,0.51324,0.195794,0.0556613,0.826689,0.480616,0.958952,0.110953,0.996786,0.471367,0.701814,0.637358,0.534665,0.148286,0.862741,0.0183253,0.9338,0.51571,0.513879,0.146707,0.782028,0.61879,0.668064,0.864717,0.0911478,0.250176,0.0165845,0.315915,0.426289,0.770598,0.910783,0.803309,0.84031,0.207249,0.0744772,0.749347,0.926143,0.757235,0.805642,0.167263,0.596005,0.879218,0.385005,0.983447,0.0917658,0.620477,0.507227,0.187041,0.292606,0.63753,0.425847,0.364707,0.261252,0.873476,0.600655,0.850826,0.908787,0.558905,0.287791,0.627647,0.458077,0.347564,0.92591,0.257388,0.451529,0.372737,0.773742,0.947286,0.368443,0.405258,0.357213,0.334097,0.86632,0.762822,0.63115,0.364593,0.742881,0.520183,0.625942,0.349014,0.598032,0.133818,0.849022,0.690266,0.490778,0.98329,0.661446,0.427446,0.426927,0.41534,0.347765,0.363956,0.109975,0.228494,0.351916,0.151828,0.761409,0.217181,0.619435,0.849121,0.457207,0.203656,0.68824,0.181088,0.876583,0.763426,0.539781,0.926031,0.700867,0.350253,0.974462,0.322177,0.435266,0.178151,0.200083,0.403501,0.199118,0.119614,0.719101,0.740977,0.37439,0.345591,0.840104,0.661309,0.0713706,0.360495,0.187165,0.291555,0.540734,0.0302917,0.806903,0.0484219,0.256458,0.6092,0.588855,0.428929,0.732382,0.349858,0.271709,0.829908,0.752187,0.71637,0.861198,0.326959,0.422233,0.910177,0.0149646,0.368418,0.693615,0.416001,0.26226,0.847767,0.0832095,0.365905,0.583684,0.340294,0.0172652,0.841204,0.979432,0.768698,0.13107,0.987744,0.313635,0.289267,0.507423,0.238394,0.324284,0.457644,0.857093,|0.505526,0.399784,0.758731,0.200759,0.235439,0.454367,0.941377,0.495861,0.507028,0.619502,0.580682,0.747315,0.298609,0.566381,0.998649,0.190316,0.365114,0.834664,0.0318714,0.239863,0.974985,0.523942,0.454324,0.204358,0.275865,0.68573,0.612799,0.888724,0.114887,0.314032,0.0669737,0.00757849,0.714427,0.0808656,0.705964,0.349677,0.00510079,0.519145,0.0575762,0.912587,0.578573,0.397857,0.910681,0.617193,0.290929,0.238872,0.816068,0.166136,0.904409,0.377103,0.891733,0.0734251,0.0448629,0.313095,0.17192,0.644064,0.177823,0.00438422,0.668025,0.40668,0.589105,0.214103,0.203387,0.524047,0.354642,0.68199,0.916408,0.278183,0.556764,0.707078,0.842113,0.957431,0.716344,0.298442,0.938594,0.142627,0.712153,0.104076,0.0792816,0.310758,0.243375,0.862072,0.939615,0.361513,0.475355,0.933759,0.297234,0.883358,0.958151,0.9952,0.820878,0.827066,0.497676,0.444745,0.405898,0.323795,0.400867,0.0376958,0.770728,0.617399,0.866668,0.422023,0.31118,0.758251,0.740296,0.357567,0.0435431,0.908763,0.0436095,0.584111,0.209941,0.920197,0.719156,0.186329,0.841211,0.297103,0.0489383,0.88468,0.656877,0.623743,0.101047,0.799987,0.311605,0.499199,0.93964,0.296433,0.943219,0.562377,0.335333,0.961221,0.0768868,0.408485,0.167176,0.672656,0.836597,0.13808,0.172847,0.541083,0.339296,0.186824,0.277867,0.763893,0.567741,0.906971,0.258842,0.72657,0.718074,0.822885,0.613899,0.0240393,0.38383,0.503455,0.498675,0.827546,0.278517,0.772009,0.176531,0.200493,0.756904,0.653858,0.0713748,0.835612,0.359401,0.413083,0.988269,0.822407,0.759794,0.0640734,0.283775,0.994895,0.194638,0.963116,0.140241,0.594306,0.205654,0.0498192,0.556913,0.868754,0.195481,0.682273,0.420683,0.100044,0.77969,0.147265,0.789006,0.852049,0.972814,0.907553,0.670549,0.543163,0.131153,0.968641,0.716801,0.921669,0.614662,0.164041,0.363682,0.685046,0.461996,0.308735,0.474675,0.467636,0.485588,0.556928,0.913096,0.584671,0.231977,0.0565006,0.21411,0.243052,0.385432,0.793013,0.56018,0.210741,0.351475,0.966439,0.820565,0.333192,0.122954,0.329763,0.544186,0.17495,0.416366,0.665184,0.425291,0.55085,0.830605,0.925857,0.871375,0.805197,0.354429,0.946957,0.72124,0.923018,0.0869155,0.783711,0.898875,0.938262,0.898656,0.902213,0.994963,0.719308,0.76895,0.773225,0.443002,0.673621,0.402667,0.322033,0.985621,0.556321,0.382437,0.798056,0.25935,0.646217,0.318606,0.925341,0.503527,0.464495,0.615634,0.508917,0.669457,0.612972,0.54218,0.190968,0.367967,0.423099,0.800135,0.336558,0.200873,0.0761237,0.381691,0.523758,0.641893,0.929777,0.851254,0.449104,0.588305,0.502414,0.728773,0.732849,0.80461,0.155365,0.541388,0.0214739,0.527799,0.0686738,0.027845,0.334719,0.0134839,0.873455,0.597839,0.219573,0.400816,0.500041,0.250932,0.352591,0.252573,0.104337,0.846856,0.553204,0.306981,0.294527,0.858948,0.607191,0.931652,0.505692,0.0464513,0.85001,0.207535,0.667018,0.0450804,0.624531,0.08726,0.687481,0.366895,0.82648,0.263387,0.428328,0.812508,0.544487,0.432565,0.15499,0.901255,0.0495763,0.319355,0.0254947,0.0489522,0.053143,0.326433,0.696962,0.397617,0.176087,0.029471,0.0683194,0.521883,0.830154,0.709071,0.194827,0.145149,0.0326324,0.833619,0.630965,0.627057,0.728116,0.575393,0.028334,0.376238,0.035632,0.787991,0.108395,0.0357342,0.0255296,0.632401,0.808124,0.748917,0.835849,0.0590861,0.806691,0.909403,0.686298,0.845414,0.122637,0.262389,0.151546,0.549968,0.129489,0.358848,0.687722,0.30245,0.80264,0.657862,0.105075,0.714773,0.382941,0.0240206,0.779638,0.518424,0.171628,0.39076,0.0242923,0.0496594,0.489884,0.9742,0.378721,0.303398,0.576762,0.777248,0.369326,0.584247,0.665303,0.256415,0.738424,0.636989,0.468775,0.167407,0.70677,0.415384,0.292065,0.561387,0.13446,0.0207459,0.567817,0.457014,0.797198,0.659561,0.286835,0.2057,0.48951,0.656013,0.328623,0.775599,0.262611,0.854243,0.195529,0.241169,0.898577,0.343169,0.915196,0.335008,0.691412,0.593557,0.0555729,0.113483,0.26936,0.861447,0.346736,0.321492,0.163423,0.954002,0.897197,0.339969,0.906976,0.519332,0.144362,0.466203,0.169843,0.641948,0.155009,0.677923,0.579796,0.96847,0.173863,0.690434,0.208043,0.894133,0.198704,0.287497,0.853292,0.589229,0.469874,0.417289,0.763564,0.0655496,0.163952,0.417565,0.949489,0.787728,0.833011,0.140834,0.816015,0.0246361,0.609895,0.677168,0.690419,0.505061,0.718289,0.0408903,0.160894,0.477425,0.0661909,0.667322,0.877951,0.906744,0.155392,0.200355,0.0566055,0.991642,0.402522,0.0837686,0.148878,0.0695391,0.857265,0.426326,0.605397,0.700296,0.549847,0.797541,0.595622,0.809097,0.71728,0.622586,0.0150425,0.593463,0.61528,0.217002,0.178522,0.599974,0.809288,0.285162,0.582344,0.183695,0.886097,0.897055,0.802235,0.645616,0.735295,0.258497,0.920592,0.7613,0.546801,0.772484,0.221881,0.0956454,0.299802,0.0907956,0.856326,0.931566,0.439164,0.535422,0.951889,0.0478161,0.616943,0.759218,0.981324,0.539061,0.233994,0.214993,0.657378,0.883044,0.370312,0.368638,0.567345,0.544024,0.732309,0.0280464,0.712255,0.44076,0.476212,0.334274,0.00132626,0.131809,0.904513,0.463692,0.228653,0.186649,0.3475,0.67249,0.759924,0.517205,0.0371574,0.998331,0.00167012,0.45339,0.377235,0.125119,0.199259,0.735592,0.410791,0.903393,0.462211,0.581481,0.014534,0.349533,0.209979,0.815774,0.171958,0.766559,0.984398,0.0183328,0.628355,0.751393,0.485616,0.58805,0.772865,0.59951,0.719747,0.512113,0.582045,0.885763,0.539528,0.0146772,0.151661,0.374065,0.306068,0.236418,0.205393,0.147368,0.460289,0.325525,0.643715,0.208457,0.136927,0.909971,0.312044,0.532795,0.671964,0.529113,0.583466,0.199819,0.552005,0.738002,0.345743,0.549476,0.718725,0.841316,0.0458663,0.00504774,0.861497,0.907239,0.241565,0.582865,0.688487,0.576765,0.352922,0.654155,0.904796,0.493213,0.23714,0.433663,0.525499,0.736963,0.396596,0.265073,0.438864,0.907918,0.39281,0.310786,0.0779939,0.619785,0.749322,0.956318,0.607781,0.953084,0.903834,0.757579,0.469999,0.581816,0.775404,0.616978,0.354096,0.344427,0.335617,0.559747,0.642028,0.731101,0.751766,0.0210797,0.968964,0.531828,0.567853,0.535737,0.898908,0.36163,0.313132,0.799586,0.20954,0.767355,0.587307,0.939914,0.0557105,0.373294,0.648759,0.801408,0.178812,0.701214,0.86712,0.0845808,0.953331,0.193801,0.776099,0.50015,0.604832,0.259375,0.652443,0.935378,0.0671317,0.478073,0.496417,0.222583,0.0247913,0.497833,0.27721,0.871836,0.724454,0.0743999,0.850255,0.573312,0.223599,0.668007,0.976565,0.0277013,0.693276,0.741691,0.194945,0.471783,0.331769,0.273705,0.523922,0.74451,0.423854,0.612312,0.111671,0.390166,0.339596,0.98512,0.437504,0.434493,0.579498,0.43674,0.975087,0.768018,0.995871,0.577813,0.708707,0.524662,0.224763,0.689072,0.370084,0.246655,0.741498,0.249903,0.578793,0.151378,0.586456,0.547462,0.00809044,0.251187,0.318681,0.800947,0.0572875,0.889918,0.624653,0.0798968,0.215384,0.763143,0.739311,0.12408,0.309486,0.125895,0.366056,0.965209,0.559395,0.75392,0.0124509,0.53101,0.940188,0.60055,0.465365,0.310009,0.451262,0.882391,0.568276,0.547788,0.787374,0.145238,0.418274,0.00766933,0.837336,0.852811,0.688159,0.836594,0.136559,0.416118,0.71385,0.825799,0.308129,0.780757,0.953895,0.359656,0.0588869,0.10141,0.154739,0.929159,0.951252,0.512042,0.177049,0.666206,0.34805,0.114886,0.28021,0.541132,0.502834,0.155689,0.862711,0.102747,0.154197,0.771874,0.422421,0.244279,0.449965,0.20208,0.418934,0.0253177,0.0177919,0.807395,0.630176,0.252688,0.263721,0.382676,0.867106,0.102057,0.356675,0.649816,0.922485,0.366196,0.822764,0.849858,0.499701,0.937993,0.286824,0.30177,0.181838,0.925061,0.704075,0.578727,0.583557,0.521822,0.666351,0.716401,0.150639,0.902327,0.562017,0.110047,0.00465739,0.131628,0.336555,0.413284,0.546716,0.558288,0.221791,0.675406,0.0284346,0.401463,0.341765,0.319457,0.284166,0.0694969,0.731211,0.30138,0.298547,0.255809,0.0112897,0.67495,0.669937,0.0788208,0.0185108,0.470847,0.586798,0.203162,0.831948,0.293814,0.0725023,0.772567,0.467367,0.591425,0.761717,0.213107,0.872649,0.464867,0.282158,0.453896,0.480561,0.95495,0.4248,0.555934,0.235444,0.623282,0.482556,0.0544552,0.949153,0.420036,0.0293937,0.971312,0.368225,0.275818,0.546341,0.812752,0.0659752,0.402635,0.505933,0.952999,0.2539,0.86988,0.854327,0.0166046,0.180143,0.35989,0.279113,0.69167,0.287299,0.207118,0.0419085,0.531088,0.0086267,0.243261,0.258474,0.289429,0.235711,0.331164,0.22804,0.680008,0.336192,0.489833,0.795111,0.145886,0.862547,0.0108385,0.139542,0.313546,0.542724,0.650472,0.889565,0.793313,0.807714,0.276429,0.0869342,0.694158,0.876495,0.592037,0.567388,0.557738,0.640841,0.783046,0.654245,0.625299,0.891098,0.698643,0.745188,0.676348,0.366123,0.0592623,0.526559,0.506792,0.770002,0.406056,0.254726,0.171926,0.17806,0.679914,0.933311,0.79959,0.404813,0.395705,0.376525,0.141507,0.220618,0.774963,0.125214,0.45652,0.402978,0.195277,0.626216,0.752872,0.9943,0.823322,0.60611,0.472231,0.798252,0.56794,0.481295,0.229071,0.324681,0.841685,0.0494352,0.13309,0.120887,0.797854,0.423501,0.991206,0.278091,0.236555,0.872278,0.03856,0.364723,0.442358,0.449712,0.376299,0.962874,0.180808,0.965887,0.328011,0.559107,0.75436,0.664565,0.448495,0.275686,0.101381,0.475802,0.552225,0.697641,0.298755,0.176628,0.504763,0.835999,0.75451,0.0965279,0.399707,0.873824,0.109984,0.936092,|0.0313861,0.0241061,0.837832,0.837382,0.800373,0.330003,0.696726,0.31487,0.825608,0.779941,0.131613,0.975695,0.34212,0.511307,0.6282,0.347335,0.766155,0.94963,0.828171,0.258755,0.570539,0.218414,0.854127,0.0645753,0.803673,0.309783,0.589644,0.162884,0.346122,0.018266,0.81487,0.61837,0.185719,0.144458,0.112256,0.741795,0.851337,0.474576,0.185621,0.0534496,0.511716,0.00750601,0.902913,0.216507,0.723851,0.0469965,0.87242,0.346779,0.815157,0.72373,0.422911,0.617013,0.734999,0.448867,0.891116,0.168583,0.906994,0.877055,0.107516,0.918659,0.801964,0.431026,0.858475,0.458681,0.535867,0.228298,0.570853,0.524115,0.911735,0.476278,0.805879,0.197463,0.875249,0.624117,0.101118,0.326441,0.312945,0.331229,0.344931,0.640546,0.185399,0.576687,0.839143,0.804279,0.454116,0.034036,0.719551,0.0191327,0.676737,0.604183,0.949911,0.787041,0.795206,0.376148,0.150195,0.482634,0.257563,0.747312,0.178769,0.432901,0.751037,0.319094,0.855669,0.834654,0.158202,0.831274,0.617833,0.191991,0.0487768,0.480166,0.480918,0.222885,0.870154,0.686187,0.707719,0.163412,0.773399,0.918711,0.579238,0.262997,0.954595,0.498311,0.693072,0.712326,0.848969,0.753367,0.0072068,0.78902,0.604353,0.552637,0.551846,0.0941949,0.852835,0.654452,0.916927,0.234737,0.156892,0.927828,0.760926,0.452402,0.566941,0.718263,0.80153,0.588308,0.682963,0.112593,0.124641,0.438374,0.301238,0.49138,0.946132,0.542591,0.502355,0.229878,0.957914,0.0790307,0.98536,0.212378,0.365273,0.324067,0.149523,0.0669545,0.795986,0.596256,0.729547,0.419361,0.730908,0.760796,0.834412,0.723664,0.768192,0.360859,0.484591,0.796058,0.0465388,0.289048,0.452124,0.518474,0.240175,0.247209,0.558555,0.277193,0.822637,0.405863,0.454076,0.743274,0.225547,0.674674,0.256397,0.58259,0.424286,0.19549,0.114053,0.259994,0.0485411,0.567215,0.844237,0.13964,0.276761,0.474163,0.494776,0.550493,0.745609,0.606368,0.81529,0.953097,0.861219,0.0495077,0.187866,0.0784038,0.23935,0.297796,0.761246,0.456433,0.204629,0.592622,0.636059,0.668541,0.306953,0.458279,0.190676,0.446497,0.501399,0.727718,0.118552,0.852917,0.954836,0.902974,0.942632,0.120227,0.888918,0.893351,0.260853,0.506822,0.349784,0.735025,0.762664,0.137808,0.718927,0.282669,0.849223,0.207179,0.326859,0.401131,0.483202,0.971181,0.245369,0.994204,0.680182,0.293531,0.738734,0.041513,0.510563,0.842461,0.733216,0.514876,0.342952,0.906754,0.444306,0.758485,0.882868,0.905433,0.42575,0.93554,0.783742,0.207981,0.550931,0.539868,0.748957,0.0947145,0.741371,0.270786,0.292278,0.112149,0.970375,0.291211,0.460421,0.870649,0.0946124,0.719947,0.91833,0.975854,0.695994,0.0729577,0.0838757,0.828074,0.397462,0.525053,0.615577,0.475479,0.147984,0.122353,0.635342,0.237423,0.162436,0.603371,0.850987,0.161699,0.55557,0.906941,0.261833,0.0332823,0.328684,0.44509,0.162621,0.993582,0.566032,0.357849,0.34034,0.933752,0.583747,0.217754,0.066467,0.811824,0.964682,0.382367,0.364471,0.837412,0.27942,0.394244,0.173679,0.84954,0.91522,0.934677,0.18487,0.780687,0.354928,0.492325,0.0637439,0.859384,0.42126,0.740715,0.106459,0.486798,0.583855,0.74008,0.875944,0.442797,0.0553285,0.914608,0.0979605,0.520468,0.738765,0.883489,0.202791,0.794194,0.654184,0.00920051,0.927597,0.0594687,0.667728,0.344154,0.565401,0.51758,0.305606,0.864183,0.885042,0.0568236,0.243534,0.913616,0.204815,0.908248,0.159394,0.757698,0.736565,0.247836,0.870338,0.995775,0.899261,0.512289,0.422116,0.302563,0.477811,0.146712,0.930083,0.400825,0.817866,0.886152,0.755775,0.141622,0.919,0.607162,0.3101,0.640479,0.387456,0.382124,0.0297874,0.2212,0.143073,0.903997,0.298298,0.200393,0.150802,0.0781152,0.202441,0.441459,0.974804,0.85765,0.864724,0.200408,0.167943,0.508647,0.138309,0.0102572,0.710203,0.553613,0.544547,0.990107,0.0376801,0.196721,0.826465,0.166546,0.105999,0.0798214,0.89024,0.467681,0.889856,0.845587,0.922129,0.831742,0.840806,0.171952,0.311575,0.587527,0.368748,0.342229,0.222186,0.644293,0.793954,0.229172,0.0874386,0.488651,0.099885,0.371327,0.252971,0.697936,0.561936,0.344343,0.864605,0.131214,0.643817,0.247662,0.40119,0.711268,0.578615,0.790745,0.824953,0.755124,0.170631,0.286808,0.669278,0.889395,0.766202,0.666016,0.247389,0.420885,0.962682,0.630198,0.126886,0.383795,0.144735,0.267631,0.545048,0.492106,0.442812,0.665935,0.895222,0.807209,0.33826,0.0543529,0.13295,0.687783,0.446095,0.758076,0.365918,0.12594,0.573781,0.676189,0.910357,0.145276,0.242766,0.347577,0.961794,0.0446247,0.481202,0.838945,0.0603333,0.768774,0.046056,0.781062,0.961575,0.429764,0.423261,0.448389,0.069502,0.518095,0.87229,0.69284,0.731977,0.142336,0.925697,0.695578,0.860559,0.99934,0.665915,0.147609,0.923943,0.439503,0.511431,0.938762,0.441887,0.583715,0.52933,0.470583,0.239587,0.51175,0.337188,0.198244,0.578616,0.0788886,0.800066,0.548279,0.020948,0.635991,0.638254,0.540154,0.53311,0.572565,0.620541,0.762375,0.634475,0.187108,0.588745,0.146805,0.176137,0.164719,0.925049,0.942381,0.146482,0.253448,0.213963,0.613205,0.287326,0.475264,0.203717,0.680804,0.738669,0.677746,0.214299,0.323241,0.32083,0.75304,0.525421,0.684868,0.251694,0.172544,0.10948,0.449199,0.0970939,0.220668,0.358278,0.836962,0.749121,0.62211,0.184791,0.527857,0.606126,0.300621,0.740786,0.191138,0.718579,0.441996,0.0115712,0.701854,0.267866,0.775747,0.722295,0.540873,0.882465,0.88399,0.40253,0.00387597,0.37014,0.176344,0.937325,0.693462,0.181756,0.916455,0.234842,0.76176,0.630906,0.29982,0.316415,0.755593,0.385405,0.325405,0.594419,0.291902,0.180134,0.758366,0.484208,0.980768,0.834926,0.355623,0.478085,0.907442,0.0181555,0.830244,0.0470869,0.555919,0.0590655,0.266183,0.0937008,0.187364,0.592114,0.0926197,0.250966,0.305341,0.309373,0.915266,0.30432,0.81121,0.162527,0.404594,0.254384,0.83498,0.558782,0.560036,0.672118,0.538752,0.930533,0.63421,0.88487,0.304977,0.507365,0.116249,0.327468,0.396747,0.325852,0.560559,0.205282,0.18718,0.711435,0.0711894,0.883146,0.772674,0.0712813,0.369908,0.0716426,0.821206,0.904509,0.38784,0.417695,0.412602,0.494346,0.682831,0.199752,0.678827,0.525234,0.233863,0.562435,0.521358,0.517634,0.467782,0.659026,0.914601,0.088379,0.0870519,0.162114,0.426213,0.440076,0.891843,0.798444,0.201,0.370724,0.142549,0.0944827,0.0150052,0.996264,0.254861,0.0911127,0.659918,0.408362,0.130801,0.841641,0.153527,0.375066,0.429422,0.17552,0.57099,0.191988,0.466824,0.271645,0.175289,0.650354,0.53804,0.337127,0.0406086,0.668833,0.810537,0.324309,0.240352,0.0535248,0.42438,0.273196,0.294096,0.189588,0.464974,0.548508,0.739702,0.769002,0.289729,0.853951,0.406271,0.917444,0.325598,0.637532,0.518051,0.186309,0.502748,0.175163,0.867356,0.53482,0.551919,0.544232,0.53236,0.316847,0.252538,0.753734,0.30678,0.703317,0.631963,0.000307083,0.836698,0.835995,0.913033,0.0660695,0.891411,0.825325,0.169982,0.444276,0.34274,0.160875,0.0450119,0.318213,0.111388,0.444569,0.836601,0.15735,0.410256,0.583505,0.0496005,0.716373,0.259111,0.373121,0.418885,0.568898,0.984734,0.276467,0.37896,0.0937111,0.996616,0.0504717,0.350888,0.59362,0.20261,0.334101,0.216164,0.136067,0.932027,0.275475,0.691069,0.493745,0.354316,0.761472,0.0528744,0.562623,0.906928,0.125776,0.612238,0.520578,0.704593,0.575687,0.0331733,0.0849837,0.85392,0.537227,0.949027,0.611897,0.468072,0.241131,0.971374,0.301224,0.122653,0.368779,0.620147,0.3579,0.913203,0.657369,0.534571,0.810779,0.214817,0.831285,0.514032,0.796929,0.76635,0.31138,0.568961,0.625557,0.427812,0.388759,0.307152,0.173135,0.0409873,0.685456,0.503076,0.737489,0.912319,0.225943,0.956625,0.726326,0.0440226,0.491796,0.410782,0.283169,0.871452,0.392363,0.118348,0.90116,0.306223,0.864656,0.913038,0.219809,0.684343,0.807649,0.654541,0.534756,0.30204,0.59091,0.757705,0.834744,0.299426,0.99753,0.331512,0.20672,0.977815,0.0938213,0.430069,0.231481,0.986186,0.667311,0.618673,0.612021,0.34055,0.161526,0.981009,0.0154965,0.0772973,0.883817,0.766496,0.135112,0.716287,0.855824,0.605937,0.236707,0.785614,0.968302,0.248416,0.386019,0.49598,0.300689,0.489701,0.644429,0.427851,0.594766,0.67664,0.25774,0.991825,0.354749,0.00192225,0.398914,0.125655,0.659507,0.57024,0.797706,0.979053,0.255346,0.328963,0.268967,0.290883,0.412531,0.226017,0.00951475,0.653044,0.0326989,0.443125,0.84785,0.386884,0.620417,0.355462,0.762324,0.00354123,0.447222,0.977613,0.710878,0.908435,0.135077,0.588281,0.815982,0.0697032,0.976354,0.487601,0.666225,0.767339,0.111531,0.325035,0.0789533,0.0182858,0.42613,0.440278,0.501097,0.59709,0.252032,0.379918,0.813806,0.983585,0.863648,0.487892,0.0263355,0.390419,0.0642416,0.978028,0.322538,0.723227,0.408321,0.382333,0.220125,0.949204,0.312564,0.333942,0.51344,0.729797,0.136193,0.435897,0.514195,0.729426,0.956312,0.772209,0.205082,0.847746,0.203085,0.276806,0.781092,0.46842,0.355749,0.455023,0.882983,0.807713,0.0240856,0.0646764,0.920166,0.964734,0.592418,0.894201,0.626325,0.358437,0.77105,0.685294,0.307868,0.240396,0.967161,0.10707,0.194897,0.46209,0.673958,0.575623,0.430883,0.513007,0.029875,0.0418646,0.125478,0.667282,0.929138,0.613338,0.544513,0.212349,0.637735,0.779268,0.725209,0.0146017,0.581,0.310862,0.00466967,0.418482,0.626652,0.794879,0.978638,0.0919966,0.52839,0.858594,|0.80505,0.963303,0.86921,0.618178,0.466792,0.268651,0.312055,0.344357,0.156666,0.211772,0.896288,0.683326,0.258243,0.272409,0.954592,0.976942,0.753793,0.97793,0.446704,0.709769,0.564865,0.70562,0.9812,0.225144,0.983718,0.739089,0.733296,0.844409,0.22283,0.187175,0.00814277,0.367458,0.601215,0.282272,0.858223,0.584621,0.596143,0.744418,0.488634,0.37426,0.424705,0.53471,0.184892,0.61787,0.89312,0.0198516,0.303536,0.182215,0.642607,0.109662,0.911386,0.721668,0.320972,0.316795,0.11774,0.729844,0.967749,0.691728,0.091119,0.817839,0.404552,0.779169,0.485802,0.560429,0.377743,0.234075,0.196514,0.470463,0.038491,0.449933,0.437855,0.91423,0.382714,0.888129,0.317914,0.455436,0.927722,0.555524,0.473722,0.423463,0.0388111,0.705322,0.444423,0.656447,0.872414,0.0533209,0.168113,0.815458,0.0131786,0.51943,0.500081,0.344535,0.159732,0.800928,0.292153,0.87417,0.359615,0.344273,0.952666,0.322453,0.179533,0.286843,0.4555,0.912914,0.274991,0.635634,0.862799,0.33209,0.617333,0.94371,0.921736,0.359604,0.0673971,0.311472,0.667372,0.409009,0.0407176,0.562322,0.81912,0.331425,0.984241,0.188942,0.384046,0.296094,0.189799,0.410692,0.380576,0.791104,0.49221,0.453856,0.946306,0.883646,0.525209,0.831402,0.97475,0.611832,0.975369,0.736696,0.218679,0.900276,0.197594,0.159213,0.729619,0.364321,0.746217,0.567909,0.409302,0.260744,0.15016,0.768445,0.891778,0.87546,0.271956,0.601251,0.422606,0.0158563,0.774593,0.146013,0.949874,0.307347,0.416709,0.732648,0.321718,0.569345,0.885916,0.92604,0.990834,0.532722,0.0875371,0.639434,0.610378,0.577162,0.581311,0.974182,0.986308,0.219747,0.560686,0.863879,0.465989,0.959002,0.430099,0.18092,0.851836,0.361711,0.122979,0.303555,0.343469,0.681538,0.614603,0.939686,0.471055,0.00768077,0.238575,0.47035,0.244334,0.0580515,0.863107,0.396182,0.456065,0.636833,0.580389,0.84748,0.382574,0.651942,0.791564,0.0603985,0.677192,0.784971,0.676271,0.94298,0.0983488,0.483973,0.776501,0.103173,0.705577,0.582474,0.730232,0.503918,0.754285,0.185479,0.141842,0.182467,0.291348,0.333875,0.293272,0.353497,0.112655,0.529012,0.346724,0.316735,0.214568,0.0753772,0.276932,0.116049,0.697987,0.432025,0.594381,0.305946,0.145254,0.872606,0.926702,0.514278,0.454593,0.638039,0.0362155,0.767417,0.627363,0.635215,0.480849,0.866047,0.630723,0.096611,0.122078,0.615736,0.119979,0.343639,0.41869,0.661426,0.873585,0.729288,0.19589,0.288453,0.544817,0.164902,0.69017,0.479317,0.581997,0.342289,0.301191,0.884343,0.586503,0.653441,0.188227,0.478596,0.270901,0.37297,0.790003,0.805952,0.145647,0.68889,0.70103,0.638265,0.437027,0.0813887,0.818147,0.384595,0.822325,0.442982,0.524759,0.129701,0.526566,0.404846,0.231646,0.662202,0.922919,0.968629,0.301782,0.618954,0.917164,0.33431,0.0277224,0.203942,0.862958,0.325808,0.820861,0.356865,0.00128269,0.553162,0.888042,0.133428,0.616167,0.67013,0.820542,0.295233,0.209994,0.448503,0.794029,0.603681,0.243019,0.10035,0.0152517,0.295109,0.310499,0.588259,0.151188,0.791817,0.342339,0.390339,0.807721,0.0578421,0.943156,0.956231,0.0716981,0.813656,0.43518,0.586402,0.963058,0.980284,0.170041,0.110124,0.58311,0.598798,0.00171906,0.0331584,0.964277,0.367244,0.968748,0.362771,0.776889,0.887993,0.607166,0.656873,0.319574,0.693463,0.108953,0.328947,0.0194136,0.788737,0.829354,0.898925,0.541432,0.740152,0.799375,0.526377,0.669491,0.532957,0.469184,0.143636,0.403,0.0368395,0.0793471,0.982601,0.868526,0.424544,0.605149,0.238799,0.503299,0.373444,0.428626,0.692899,0.729798,0.595279,0.526003,0.581885,0.256187,0.396326,0.913176,0.669259,0.275393,0.0393832,0.184519,0.321989,0.408158,0.4741,0.799697,0.748832,0.129924,0.289011,0.544419,0.423162,0.263636,0.864144,0.510879,0.578124,0.856114,0.483046,0.504593,0.267471,0.553879,0.642612,0.726342,0.682157,0.356939,0.266693,0.404706,0.833383,0.250552,0.172221,0.600865,0.612166,0.645516,0.75989,0.657611,0.600067,0.309735,0.544679,0.867174,0.201897,0.158352,0.126213,0.516254,0.561155,0.527709,0.952967,0.603592,0.672017,0.0199712,0.0825274,0.873054,0.499022,0.236452,0.805095,0.665386,0.591657,0.346575,0.0521513,0.432735,0.910293,0.697452,0.0290135,0.677763,0.722584,0.223658,0.155797,0.477593,0.991965,0.373085,0.652211,0.963008,0.236532,0.680298,0.189844,0.533991,0.0134692,0.932195,0.330144,0.0923861,0.630138,0.0231148,0.516082,0.57644,0.67658,0.949999,0.21641,0.969718,0.199779,0.24536,0.518209,0.750108,0.679686,0.448734,0.640007,0.351114,0.245041,0.852007,0.753933,0.528046,0.658501,0.560896,0.0506139,0.73719,0.578303,0.353379,0.766758,0.312781,0.589853,0.648156,0.477847,0.275984,0.732314,0.515127,0.346004,0.525871,0.864191,0.248915,0.656664,0.333771,0.0382118,0.721915,0.621043,0.17446,0.701433,0.411923,0.0375593,0.814377,0.106491,0.850209,0.120248,0.858371,0.517713,0.630781,0.529433,0.852907,0.856423,0.743482,0.812068,0.956575,0.938403,0.93476,0.16642,0.176893,0.207493,0.842456,0.414193,0.19889,0.844924,0.157737,0.326573,0.415679,0.471012,0.529061,0.895794,0.454717,0.159817,0.69184,0.127623,0.0745566,0.639661,0.502854,0.539027,0.795905,0.0483199,0.545243,0.880056,0.501054,0.0469453,0.400206,0.200721,0.427499,0.500359,0.90307,0.602807,0.796346,0.562215,0.270824,0.125849,0.657203,0.887217,0.185505,0.392597,0.102883,0.928843,0.733378,0.775175,0.262658,0.750377,0.826068,0.863774,0.654107,0.93188,0.183907,0.0412451,0.108544,0.225542,0.470248,0.772121,0.601222,0.440174,0.287945,0.665896,0.0328896,0.25883,0.845058,0.680363,0.668679,0.69905,0.616286,0.240556,0.18386,0.818051,0.617481,0.539584,0.906387,0.474423,0.72965,0.358556,0.756401,0.462614,0.506245,0.447571,0.0176741,0.735849,0.372762,0.829394,0.568204,0.547752,0.100436,0.410461,0.958818,0.63592,0.857166,0.954106,0.364115,0.961224,0.0757233,0.248315,0.151015,0.514477,0.315583,0.992881,0.600969,0.87342,0.806499,0.143093,0.863419,0.932391,0.121913,0.0813797,0.737577,0.90594,0.633473,0.300413,0.0644822,0.0485127,0.189943,0.538031,0.345922,0.118998,0.439377,0.78613,0.583597,0.49,0.678591,0.959246,0.762142,0.428477,0.84589,0.570353,0.6617,0.853668,0.888436,0.150176,0.0714929,0.415211,0.906569,0.598717,0.350414,0.85531,0.733415,0.264909,0.83073,0.141366,0.675385,0.682635,0.273199,0.291609,0.995343,0.615359,0.570079,0.679316,0.824857,0.0430422,0.415269,0.702064,0.802108,0.939241,0.17845,0.719056,0.673843,0.424698,0.562438,0.250829,0.70868,0.309857,0.351113,0.152364,0.315848,0.36906,0.431194,0.593338,0.327267,0.217172,0.0139596,0.513277,0.363869,0.195226,0.472536,0.969741,0.855864,0.991064,0.803708,0.385756,0.78636,0.914915,0.530712,0.0207464,0.532377,0.206945,0.925233,0.961298,0.900026,0.893809,0.723272,0.120863,0.809548,0.169813,0.928062,0.0979768,0.310197,0.966877,0.0720439,0.14146,0.239847,0.0121718,0.245003,0.366282,0.145853,0.881809,0.854718,0.679163,0.737511,0.614816,0.174319,0.797473,0.184965,0.142326,0.243353,0.108999,0.844757,0.526483,0.762662,0.248644,0.448724,0.81324,0.664433,0.0894873,0.761726,0.702417,0.901296,0.117433,0.933744,0.50728,0.397749,0.383908,0.894147,0.503087,0.456027,0.126908,0.675955,0.660431,0.299928,0.987564,0.988779,0.366543,0.480749,0.247962,0.415171,0.382765,0.632687,0.734627,0.0354791,0.978715,0.879322,0.633802,0.931808,0.868357,0.105766,0.130081,0.731313,0.194791,0.512316,0.782245,0.806679,0.432367,0.982813,0.252583,0.860659,0.431968,0.374722,0.431612,0.977418,0.221709,0.334736,0.202317,0.726934,0.510878,0.81488,0.139388,0.845077,0.599482,0.883889,0.670317,0.485655,0.361933,0.0514951,0.570602,0.974624,0.568881,0.928296,0.642253,0.656593,0.152745,0.528918,0.554752,0.791762,0.893105,0.161232,0.290143,0.535634,0.947201,0.844607,0.310715,0.489934,0.368268,0.459745,0.113046,0.209582,0.153574,0.383495,0.949873,0.660247,0.47393,0.279885,0.775145,0.764342,0.944889,0.501336,0.565582,0.627787,0.256717,0.181487,0.950245,0.632996,0.142765,0.95044,0.589702,0.695218,0.951269,0.102172,0.283316,0.171626,0.852128,0.977655,0.971506,0.849311,0.741086,0.300388,0.312528,0.157066,0.218523,0.386719,0.10797,0.822018,0.278679,0.586205,0.760488,0.777232,0.270711,0.137517,0.996734,0.607851,0.254708,0.672461,0.689064,0.909416,0.944241,0.126662,0.392566,0.702941,0.116142,0.962874,0.468045,0.53041,0.774149,0.299732,0.671597,0.889257,0.697154,0.0140049,0.936382,0.174128,0.892974,0.25553,0.353304,0.177812,0.793301,0.554376,0.717717,0.562073,0.275745,0.274987,0.642067,0.303861,0.897965,0.033318,0.20989,0.903825,0.488022,0.847874,0.611296,0.579234,0.930144,0.501871,0.917549,0.450481,0.228132,0.808246,0.682123,0.240607,0.593045,0.0129104,0.397166,0.553041,0.866701,0.244874,0.822517,0.106629,0.233665,0.00264889,0.433997,0.687541,0.412095,0.131427,0.24349,0.8023,0.928783,0.649249,0.458437,0.472231,0.810611,0.309291,0.298135,0.723204,0.347835,0.507844,0.11818,0.537832,0.0125276,0.402522,0.564956,0.486794,0.591841,0.884476,0.149532,0.469487,0.465151,0.241488,0.682523,0.136745,0.135838,0.0725802,0.266589,0.255492,0.196455,0.423522,0.750874,0.667097,0.877522,0.349132,0.239872,0.391082,0.916408,0.161423,0.854993,0.148466,0.600872,0.59718,0.746181,0.597193,0.0941783,0.712543,0.789699,0.772901,0.944202,0.580043,0.59183,0.843417,0.0689353,0.521832,0.651162,|0.892431,0.971271,0.202271,0.405721,0.530464,0.346288,0.573972,0.092743,0.362947,0.829414,0.521788,0.391583,0.0424792,0.478834,0.886651,0.354791,0.198397,0.59947,0.0616713,0.887239,0.190928,0.247341,0.203434,0.42838,0.185711,0.0309188,0.185924,0.916114,0.396757,0.503599,0.954534,0.299175,0.814893,0.453031,0.807549,0.411776,0.190007,0.868846,0.591913,0.915269,0.81861,0.409441,0.471834,0.84286,0.745637,0.0816345,0.105926,0.634238,0.0586496,0.695546,0.322156,0.574148,0.911409,0.440827,0.265387,0.721478,0.677467,0.294717,0.854109,0.250176,0.59671,0.811389,0.223004,0.6957,0.0292969,0.746878,0.268473,0.397579,0.344391,0.420694,0.401993,0.0831185,0.666335,0.57427,0.783049,0.850265,0.0971501,0.4804,0.633959,0.393768,0.102275,0.153771,0.479803,0.412037,0.0890303,0.249038,0.55888,0.380369,0.542587,0.842301,0.744526,0.449136,0.540699,0.303771,0.637353,0.723247,0.109762,0.818961,0.992143,0.306846,0.66375,0.626484,0.392829,0.478292,0.507849,0.83036,0.951086,0.698523,0.280048,0.585295,0.313025,0.053565,0.907397,0.586616,0.209604,0.713781,0.0420305,0.709767,0.222934,0.308908,0.543108,0.133191,0.78617,0.9656,0.59635,0.119514,0.815324,0.504454,0.965716,0.665258,0.135801,0.551772,0.178693,0.971196,0.175209,0.836376,0.950222,0.974908,0.846137,0.372887,0.0114851,0.131345,0.194598,0.962316,0.479753,0.985062,0.123189,0.829775,0.360051,0.635078,0.303705,0.161838,0.593218,0.834874,0.333266,0.00239307,0.498155,0.798863,0.949021,0.336352,0.840999,0.127016,0.208224,0.731014,0.974108,0.364375,0.61587,0.503002,0.11555,0.656915,0.559033,0.799058,0.583963,0.314658,0.35201,0.964365,0.450318,0.996405,0.199405,0.226483,0.607574,0.593413,0.169671,0.230524,0.405167,0.940673,0.369271,0.0841993,0.188941,0.44877,0.149034,0.672014,0.641584,0.673634,0.361288,0.594603,0.695479,0.54602,0.85272,0.503353,0.159401,0.902323,0.67344,0.221443,0.0267944,0.269653,0.755302,0.906859,0.675307,0.277024,0.337335,0.391665,0.0961956,0.284657,0.849219,0.223549,0.877029,0.807556,0.762908,0.0714056,0.134779,0.442196,0.0975369,0.244293,0.394873,0.33448,0.657962,0.182711,0.230457,0.220719,0.783497,0.38621,0.836574,0.250869,0.146813,0.300877,0.687498,0.494163,0.318079,0.307336,0.811117,0.19806,0.0849779,0.304103,0.936494,0.974366,0.564194,0.843618,0.340319,0.946619,0.469495,0.779392,0.0487662,0.485628,0.943184,0.719134,0.827454,0.851323,0.142905,0.811936,0.674318,0.726509,0.303851,0.583654,0.289568,0.619584,0.581313,0.432183,0.02665,0.129249,0.759412,0.746627,0.212978,0.279422,0.459434,0.0245705,0.506067,0.1337,0.305172,0.27712,0.517468,0.790882,0.486134,0.10345,0.665149,0.860108,0.563011,0.875519,0.599726,0.078567,0.613193,0.609129,0.598614,0.619716,0.576769,0.239894,0.635289,0.553743,0.0712393,0.257226,0.580886,0.597813,0.218041,0.360183,0.716006,0.643082,0.257753,0.302912,0.5522,0.919331,0.865995,0.48046,0.256706,0.571676,0.691865,0.298085,0.00341368,0.778864,0.624285,0.280381,0.700889,0.971039,0.00749922,0.727124,0.632618,0.479504,0.394745,0.787046,0.867267,0.963511,0.614828,0.453134,0.75053,0.87729,0.468483,0.269742,0.708573,0.659059,0.628,0.980874,0.733432,0.252733,0.805995,0.894868,0.631673,0.500634,0.941026,0.558467,0.399022,0.852114,0.0537263,0.456816,0.601382,0.242625,0.256137,0.514137,0.366836,0.929999,0.773724,0.593107,0.0171483,0.753638,0.809758,0.674943,0.00874281,0.606143,0.734592,0.597794,0.0049265,0.0486585,0.260761,0.587351,0.639367,0.0802998,0.154151,0.988441,0.828241,0.613051,0.178698,0.0501089,0.687645,0.541025,0.0711952,0.486602,0.671936,0.1332,0.460395,0.734424,0.245987,0.49192,0.592936,0.717158,0.458005,0.540844,0.635029,0.769804,0.526137,0.846472,0.575777,0.016586,0.599862,0.330119,0.149635,0.394518,0.918232,0.514301,0.844801,0.186229,0.92621,0.0372186,0.347536,0.763714,0.443953,0.590336,0.35929,0.516247,0.897407,0.0837362,0.834033,0.592691,0.66086,0.266965,0.501448,0.992695,0.553986,0.773688,0.626568,0.661572,0.810253,0.693578,0.77249,0.862558,0.474232,0.182453,0.928311,0.791839,0.768084,0.34602,0.593965,0.193723,0.0249254,0.0309193,0.404605,0.261657,0.851117,0.268437,0.280531,0.20686,0.701872,0.0349202,0.0805212,0.558281,0.831999,0.996356,0.249679,0.0196695,0.904528,0.995366,0.916038,0.696445,0.344555,0.292531,0.974945,0.858018,0.275716,0.768283,0.338876,0.721761,0.121572,0.334965,0.365517,0.892445,0.764159,0.81633,0.730194,0.708704,0.0469422,0.850104,0.223312,0.31129,0.94463,0.968835,0.868075,0.31348,0.265926,0.0801846,0.474568,0.074445,0.50186,0.781506,0.66717,0.232021,0.202534,0.356631,0.249719,0.0192973,0.361303,0.507404,0.68818,0.868963,0.905113,0.648154,0.418981,0.779993,0.640984,0.797897,0.417628,0.597484,0.212476,0.896839,0.849536,0.56422,0.808009,0.0157875,0.544594,0.393739,0.978261,0.811155,0.147508,0.72327,0.851993,0.89617,0.0271257,0.381856,0.389425,0.747509,0.794451,0.149402,0.492339,0.627987,0.201144,0.230511,0.767801,0.503501,0.795138,0.0913515,0.384956,0.285642,0.355917,0.507941,0.30901,0.549816,0.980453,0.761556,0.0667965,0.716016,0.70516,0.884718,0.777063,0.817955,0.642686,0.489305,0.402042,0.666893,0.776837,0.274567,0.116061,0.167408,0.166725,0.753667,0.379013,0.854622,0.542162,0.194232,0.468947,0.763778,0.268435,0.215034,0.202548,0.368461,0.622189,0.1112,0.870557,0.673452,0.856092,0.756425,0.675333,0.0381137,0.0145344,0.523701,0.440093,0.692455,0.489646,0.0265878,0.525587,0.777708,0.953004,0.455714,0.83848,0.480032,0.970059,0.288517,0.444074,0.0610279,0.850334,0.773607,0.566106,0.0958745,0.149739,0.49422,0.829835,0.296973,0.199935,0.490661,0.039826,0.781035,0.407851,0.185905,0.193261,0.899897,0.764784,0.883701,0.111549,0.435259,0.590243,0.99712,0.216081,0.529962,0.53221,0.655595,0.996671,0.42563,0.280041,0.445315,0.125413,0.663787,0.252157,0.0626062,0.239184,0.0270076,0.775031,0.426834,0.930441,0.309477,0.323036,0.929113,0.173937,0.663876,0.780668,0.77074,0.431997,0.0710453,0.499494,0.262585,0.441684,0.341284,0.399573,0.943098,0.134016,0.70443,0.810717,0.46932,0.181709,0.825734,0.88906,0.587229,0.821641,0.314163,0.0904365,0.642577,0.929096,0.50944,0.560112,0.0274333,0.24529,0.0410534,0.440931,0.211799,0.535568,0.374952,0.586842,0.0449601,0.685837,0.400481,0.559383,0.287793,0.445999,0.974606,0.45243,0.770306,0.327927,0.157125,0.941626,0.708325,0.195511,0.211945,0.299206,0.306179,0.458961,0.981505,0.695583,0.259231,0.623029,0.473049,0.245881,0.924524,0.589091,0.980671,0.673055,0.108518,0.222807,0.637137,0.0839406,0.557502,0.526378,0.750499,0.60115,0.977174,0.91372,0.340752,0.648543,0.412522,0.678877,0.563693,0.87016,0.323132,0.84764,0.683219,0.917735,0.166403,0.672344,0.0305899,0.207731,0.548488,0.452333,0.616055,0.789804,0.557765,0.809262,0.983647,0.455214,0.494532,0.00881833,0.419768,0.52068,0.233947,0.743645,0.841477,0.413266,0.900214,0.897008,0.381642,0.580486,0.637235,0.595011,0.177269,0.474232,0.301351,0.00648916,0.52286,0.0705442,0.511562,0.0911305,0.979874,0.266959,0.669512,0.403255,0.408227,0.200144,0.37739,0.142546,0.0765963,0.375329,0.343697,0.896043,0.902602,0.892781,0.550864,0.955681,0.903056,0.0676369,0.674867,0.943108,0.964109,0.888852,0.912916,0.526541,0.0832282,0.342664,0.432525,0.264746,0.479846,0.398693,0.992704,0.342265,0.276754,0.332083,0.426184,0.957896,0.670143,0.789841,0.87424,0.184259,0.0135373,0.612824,0.716747,0.567953,0.462978,0.267617,0.442813,0.650884,0.687237,0.371105,0.462361,0.411759,0.473312,0.300007,0.695857,0.879155,0.864168,0.834866,0.9653,0.170085,0.759447,0.700826,0.609472,0.324585,0.950969,0.464116,0.185114,0.791507,0.651546,0.432613,0.450767,0.331818,0.490517,0.255149,0.521754,0.729866,0.728829,0.156965,0.971384,0.979733,0.994274,0.721132,0.684295,0.277374,0.294606,0.482544,0.251852,0.51761,0.683736,0.89989,0.66459,0.0340948,0.556564,0.869019,0.890877,0.216613,0.529459,0.63164,0.298375,0.910561,0.601517,0.966611,0.572672,0.925683,0.946466,0.258742,0.610734,0.821029,0.566229,0.883016,0.231017,0.26429,0.348574,0.0450627,0.642135,0.794953,0.0266436,0.652693,0.709482,0.499055,0.348126,0.955192,0.341914,0.224011,0.060936,0.481547,0.344461,0.435479,0.302169,0.404591,0.140954,0.551348,0.845991,0.537342,0.730915,0.736503,0.452487,0.646274,0.592151,0.461672,0.936985,0.169298,0.970897,0.0580005,0.535673,0.12139,0.249454,0.425668,0.108667,0.696876,0.710533,0.703739,0.104734,0.730133,0.360615,0.715828,0.954837,0.204676,0.373141,0.469606,0.0642654,0.90825,0.603332,0.549384,0.128012,0.328522,0.103537,0.551412,0.63174,0.141017,0.481277,0.414071,0.0580177,0.768524,0.233921,0.703377,0.639949,0.650183,0.399555,0.766823,0.377044,0.533217,0.21703,0.0080418,0.555814,0.161145,0.71219,0.00710684,0.209219,0.966873,0.252729,0.905513,0.891046,0.779213,0.218483,0.914662,0.913666,0.692074,0.762819,0.239609,0.747065,0.619445,0.193847,0.952345,0.137021,0.411023,0.163703,0.98769,0.660928,0.379891,0.273277,0.854731,0.654989,0.869274,0.512404,0.00285399,0.838536,0.158222,0.125921,0.353663,0.436756,0.986527,0.344438,0.28328,0.366649,0.567847,0.225951,0.0158077,0.990457,0.850231,0.272561,0.49905,0.889456,0.690749,0.106205,0.47588,0.651844,0.603066,0.886501,0.370266,0.967018,0.635428,0.0508181,0.597321,0.0681392,0.468928,0.092173,|0.70601,0.68465,0.993719,0.250469,0.340391,0.833883,0.910115,0.833305,0.405632,0.301134,0.213258,0.183097,0.325672,0.94162,0.196701,0.565521,0.969496,0.857541,0.497512,0.833826,0.931151,0.218651,0.616952,0.0255396,0.021398,0.685651,0.648775,0.601768,0.762239,0.080745,0.133895,0.813958,0.478314,0.81887,0.361759,0.0644026,0.163575,0.140576,0.839958,0.589715,0.937587,0.932877,0.479645,0.480429,0.521793,0.336244,0.636827,0.633508,0.561585,0.366814,0.682185,0.140115,0.548173,0.527122,0.635705,0.962085,0.923807,0.847805,0.0158169,0.197273,0.420559,0.200917,0.458738,0.649703,0.393275,0.483951,0.449578,0.343905,0.806348,0.118507,0.400505,0.572316,0.335574,0.0442489,0.412042,0.580816,0.235047,0.115155,0.361582,0.186013,0.419547,0.722929,0.882839,0.391747,0.67101,0.650577,0.799282,0.0278977,0.229768,0.172428,0.980113,0.410146,0.846892,0.769829,0.374204,0.969571,0.626992,0.768011,0.306315,0.621042,0.440699,0.373988,0.805074,0.106462,0.302474,0.0632626,0.389132,0.0941572,0.906344,0.323985,0.899145,0.754191,0.14373,0.849218,0.558546,0.305141,0.453089,0.891436,0.16276,0.256607,0.92815,0.688532,0.16787,0.563054,0.710301,0.630265,0.892817,0.274532,0.197696,0.488049,0.556208,0.842753,0.679784,0.136401,0.161713,0.20135,0.454516,0.765874,0.96961,0.579902,0.840218,0.623969,0.724242,0.0437518,0.15009,0.971772,0.508606,0.0299648,0.1446,0.145848,0.53413,0.520791,0.678077,0.524472,0.060704,0.233555,0.72904,0.708117,0.237161,0.926126,0.0432116,0.106645,0.763115,0.905245,0.0124645,0.957836,0.974291,0.946108,0.833801,0.342574,0.523921,0.745091,0.556541,0.297381,0.988805,0.445549,0.0509757,0.183156,0.108995,0.883122,0.9242,0.0484491,0.531616,0.404092,0.272239,0.0900096,0.793846,0.352568,0.0899475,0.0238237,0.66115,0.108067,0.0761649,0.375358,0.547007,0.997403,0.203091,0.990725,0.820887,0.740494,0.386975,0.233353,0.00670385,0.0989492,0.176139,0.147576,0.341719,0.469019,0.761338,0.1558,0.952183,0.657074,0.67362,0.190699,0.344859,0.399661,0.404538,0.678366,0.72645,0.897806,0.482385,0.502357,0.351656,0.76158,0.0600565,0.167542,0.0867208,0.198915,0.104491,0.194403,0.564283,0.986023,0.310823,0.488627,0.946844,0.303092,0.10831,0.211481,0.725857,0.96592,0.148025,0.238977,0.745496,0.49711,0.299889,0.560966,0.55021,0.106692,0.902912,0.60204,0.112194,0.639754,0.0633498,0.442445,0.222233,0.539104,0.841909,0.389231,0.0631488,0.116072,0.769727,0.124848,0.581878,0.947873,0.431446,0.421348,0.116686,0.325723,0.0365129,0.932164,0.447406,0.739321,0.10067,0.0918059,0.819561,0.235307,0.927687,0.413957,0.791543,0.00334275,0.144026,0.00168622,0.00669193,0.739538,0.311871,0.744125,0.907689,0.380041,0.967792,0.0786944,0.263368,0.899945,0.635798,0.0373937,0.228722,0.896208,0.580427,0.766387,0.638355,0.902142,0.35818,0.291582,0.937004,0.848252,0.777173,0.909996,0.194482,0.517311,0.604682,0.346267,0.567937,0.385892,0.921292,0.31524,0.791671,0.692152,0.400978,0.995537,0.469706,0.028517,0.118337,0.0181103,0.23622,0.397621,0.080042,0.832792,0.265295,0.767703,0.073354,0.341711,0.474314,0.735498,0.10637,0.416732,0.0832475,0.94414,0.328529,0.222362,0.0230877,0.0402722,0.503341,0.0201988,0.844845,0.126245,0.287873,0.904241,0.768112,0.782856,0.599061,0.0710403,0.655479,0.371609,0.942147,0.480231,0.609543,0.314822,0.302671,0.389505,0.539286,0.154476,0.631174,0.0720069,0.753083,0.217036,0.0701006,0.36933,0.27787,0.124692,0.714942,0.808755,0.125488,0.0219056,0.078817,0.423073,0.0638969,0.148525,0.371932,0.397809,0.809926,0.143741,0.414006,0.00418377,0.0522046,0.604915,0.919945,0.106966,0.297956,0.44878,0.958178,0.966093,0.897987,0.0606793,0.813181,0.723987,0.747985,0.577323,0.633433,0.139205,0.648167,0.828505,0.0842883,0.661594,0.54236,0.559465,0.992012,0.732077,0.424244,0.670621,0.516159,0.911462,0.423341,0.583216,0.438255,0.325566,0.323428,0.269711,0.54579,0.745317,0.90064,0.572933,0.0354881,0.199931,0.304636,0.895364,0.0525241,0.678699,0.888742,0.985666,0.245748,0.303625,0.582573,0.513078,0.509237,0.116094,0.269826,0.0342736,0.269936,0.367754,0.177434,0.694443,0.506151,0.822206,0.384618,0.702365,0.197055,0.101007,0.986128,0.285987,0.106371,0.49063,0.42699,0.0550688,0.614961,0.785189,0.32694,0.984575,0.502006,0.308734,0.68209,0.374421,0.261655,0.837551,0.33736,0.545592,0.38802,0.559382,0.130042,0.520076,0.158071,0.56232,0.843697,0.257347,0.16965,0.958512,0.709997,0.332412,0.879959,0.620304,0.783222,0.396562,0.729692,0.417868,0.58513,0.964016,0.834418,0.996904,0.498214,0.32503,0.0720137,0.00394869,0.847736,0.963192,0.36524,0.0779846,0.741846,0.231563,0.838999,0.670792,0.183371,0.0952876,0.214344,0.356631,0.70057,0.678021,0.413699,0.0445932,0.124237,0.448999,0.466339,0.578165,0.155371,0.31652,0.505755,0.321707,0.163159,0.570795,0.970985,0.984445,0.465082,0.411764,0.384909,0.923275,0.390591,0.148293,0.394428,0.474851,0.737483,0.0646703,0.377378,0.782371,0.561486,0.899872,0.488387,0.462558,0.0526854,0.813003,0.218942,0.728206,0.13087,0.0831971,0.0486863,0.113263,0.751506,0.576055,0.123686,0.861382,0.777318,0.106448,0.517051,0.546261,0.2237,0.443035,0.869693,0.847622,0.305376,0.763212,0.83411,0.571486,0.491266,0.436454,0.913179,0.343148,0.938085,0.482621,0.342678,0.685389,0.720542,0.37151,0.669639,0.504359,0.157494,0.235,0.97906,0.702122,0.987716,0.864034,0.490248,0.914631,0.559001,0.412798,0.396417,0.742617,0.90862,0.912322,0.497488,0.343108,0.850823,0.173903,0.982475,0.41036,0.72567,0.615435,0.459897,0.3891,0.611545,0.256258,0.170454,0.716576,0.808431,0.224877,0.433934,0.0457342,0.213008,0.804148,0.993471,0.119746,0.706011,0.6384,0.582242,0.148098,0.703202,0.85905,0.177667,0.494631,0.608194,0.305805,0.903397,0.458763,0.662194,0.542993,0.777772,0.502082,0.592914,0.0136406,0.380014,0.425268,0.676673,0.558871,0.886179,0.913452,0.262295,0.507216,0.994812,0.278618,0.354264,0.583849,0.148861,0.852814,0.194726,0.393261,0.423828,0.972559,0.801291,0.105485,0.774012,0.573516,0.551519,0.869526,0.966925,0.261957,0.0147809,0.4591,0.211583,0.365651,0.146907,0.251284,0.0762556,0.46702,0.172402,0.116773,0.258675,0.303853,0.347921,0.836808,0.389618,0.928,0.257255,0.979967,0.991128,0.610601,0.785564,0.704914,0.0846974,0.382742,0.588742,0.747108,0.301778,0.0279742,0.338938,0.217573,0.911289,0.380596,0.0607104,0.831902,0.206637,0.152822,0.601749,0.0337193,0.0970938,0.989819,0.273969,0.443454,0.0602407,0.873047,0.0142678,0.400854,0.433175,0.470017,0.324496,0.275103,0.742471,0.361936,0.0353987,0.390585,0.633448,0.787603,0.431091,0.776839,0.936511,0.987216,0.609488,0.750415,0.336856,0.402029,0.238874,0.400809,0.877162,0.75214,0.289036,0.540494,0.213862,0.478676,0.194587,0.629255,0.829783,0.715062,0.860429,0.232827,0.711293,0.707398,0.424073,0.614873,0.628447,0.657787,0.0382444,0.273051,0.672855,0.755791,0.698703,0.661976,0.0596616,0.233737,0.587082,0.750653,0.578702,0.901643,0.286944,0.95697,0.050048,0.749547,0.46529,0.801196,0.66643,0.476522,0.654161,0.360114,0.36768,0.81707,0.0951383,0.844057,0.835631,0.504196,0.434682,0.700258,0.421611,0.566066,0.357191,0.398608,0.77153,0.536409,0.765757,0.432424,0.0911329,0.630118,0.519313,0.0242305,0.226262,0.414614,0.200531,0.52597,0.061062,0.233286,0.188561,0.289388,0.12245,0.679559,0.656108,0.135874,0.00600731,0.828926,0.878261,0.803746,0.716272,0.170722,0.615496,0.441589,0.558022,0.779658,0.384579,0.300652,0.0808493,0.320117,0.970135,0.663594,0.555969,0.0681783,0.209484,0.678454,0.962003,0.447375,0.809971,0.285992,0.791361,0.984719,0.231398,0.543174,0.612363,0.634577,0.578838,0.930612,0.460887,0.649497,0.76061,0.256239,0.797067,0.88454,0.411264,0.779391,0.876757,0.745523,0.964302,0.279518,0.028905,0.741507,0.520923,0.993049,0.59948,0.739526,0.560512,0.315469,0.519813,0.422653,0.225768,0.0792287,0.439031,0.671168,0.808953,0.686997,0.338623,0.926392,0.153363,0.60033,0.99275,0.843363,0.0788146,0.0789741,0.772164,0.932713,0.840569,0.00512052,0.132798,0.516661,0.193875,0.163673,0.52431,0.361187,0.911409,0.739524,0.315423,0.971399,0.481622,0.714486,0.768913,0.299355,0.900445,0.323791,0.0506065,0.48093,0.731014,0.414252,0.967878,0.594126,0.115277,0.961965,0.656949,0.820564,0.346669,0.488452,0.448585,0.585939,0.982634,0.5966,0.857149,0.953223,0.898699,0.769904,0.240174,0.40874,0.00331634,0.604278,0.930274,0.530474,0.762664,0.207088,0.395237,0.334908,0.178824,0.517234,0.544764,0.164938,0.612088,0.577803,0.60176,0.985277,0.772375,0.492866,0.265135,0.46029,0.995181,0.68687,0.14969,0.613806,0.211204,0.750358,0.385941,0.66873,0.136936,0.559281,0.198401,0.647864,0.405453,0.574549,0.30675,0.648849,0.627939,0.395701,0.573603,0.866575,0.0660722,0.0632944,0.325154,0.0562745,0.930831,0.529122,0.79205,0.346829,0.651894,0.88411,0.209981,0.472754,0.115657,0.410853,0.115282,0.394528,0.0518941,0.873958,0.37852,0.656449,0.0998703,0.184051,0.209671,0.586844,0.391652,0.192911,0.526875,0.84371,0.346474,0.994513,0.356693,0.0657609,0.270546,0.665527,0.122293,0.361441,0.326688,0.0311661,0.0871527,0.519502,0.494425,0.281873,0.138556,0.720508,0.851556,0.945319,0.86562,0.973419,0.140279,0.932159,0.227099,0.255534,0.582568,0.180186,0.963085,0.037519,0.114149,0.0971028,0.172709,0.257477,0.867852,0.442082,|0.403471,0.675704,0.533571,0.224738,0.0572773,0.186754,0.168335,0.982606,0.0183977,0.889845,0.115568,0.810237,0.937635,0.958122,0.0206581,0.20096,0.674753,0.0203284,0.0506331,0.0187792,0.17764,0.967483,0.317086,0.337564,0.279919,0.417851,0.221705,0.365788,0.614503,0.905496,0.236058,0.625457,0.0382602,0.768879,0.580651,0.766767,0.880902,0.506755,0.950912,0.469175,0.247246,0.147787,0.0789096,0.578026,0.845894,0.0170852,0.0607874,0.59115,0.612536,0.0128607,0.92305,0.094968,0.741634,0.297699,0.60859,0.451164,0.767768,0.593697,0.328069,0.908265,0.891244,0.662427,0.833746,0.839153,0.0880215,0.714248,0.374725,0.97388,0.407663,0.227919,0.848627,0.711369,0.51188,0.0767376,0.313033,0.701912,0.473565,0.915828,0.104159,0.388108,0.300894,0.495974,0.796072,0.688975,0.173189,0.223102,0.524661,0.204391,0.227763,0.00866115,0.790435,0.748935,0.39609,0.736849,0.525514,0.97964,0.565334,0.888839,0.710522,0.841677,0.249799,0.349649,0.574707,0.241883,0.200158,0.814862,0.398843,0.994558,0.647283,0.578248,0.783336,0.207526,0.852401,0.543543,0.343821,0.0111588,0.000872433,0.75292,0.289403,0.122045,0.572555,0.989427,0.371577,0.865436,0.89161,0.691374,0.77955,0.225518,0.489976,0.228688,0.852672,0.547328,0.882804,0.743623,0.462733,0.579562,0.197602,0.909207,0.711333,0.519205,0.894135,0.362857,0.830582,0.596768,0.526421,0.234893,0.971145,0.870229,0.664731,0.820651,0.438849,0.60429,0.343944,0.685534,0.918871,0.917162,0.982599,0.863281,0.613962,0.4874,0.252859,0.563323,0.40345,0.348228,0.766879,0.990329,0.769164,0.809088,0.432128,0.0314682,0.102005,0.483405,0.474698,0.569548,0.0757132,0.544087,0.97749,0.481529,0.779407,0.29009,0.222889,0.993758,0.856391,0.00136143,0.137032,0.204293,0.625183,0.924041,0.946297,0.35964,0.873087,0.747705,0.477805,0.537732,0.470101,0.0573778,0.636687,0.568379,0.294501,0.265479,0.511734,0.865471,0.330414,0.889445,0.41498,0.84635,0.927055,0.861141,0.778393,0.934414,0.0853599,0.805034,0.861748,0.343644,0.652332,0.396713,0.664418,0.0430519,0.209474,0.458688,0.625826,0.892388,0.0500772,0.265665,0.00635678,0.718024,0.630781,0.261469,0.582256,0.723342,0.974733,0.685142,0.559743,0.72766,0.846262,0.552301,0.71218,0.113018,0.0931336,0.850487,0.635511,0.472553,0.5056,0.320581,0.973763,0.141564,0.66857,0.372401,0.577226,0.968963,0.917888,0.726559,0.865123,0.258357,0.306301,0.35505,0.594437,0.870143,0.973964,0.612405,0.132538,0.561227,0.960163,0.233817,0.184437,0.288389,0.0161018,0.273396,0.0479697,0.132999,0.87412,0.530971,0.666875,0.74075,0.291996,0.983018,0.323905,0.057471,0.787657,0.159614,0.72446,0.0133106,0.0787429,0.755575,0.871337,0.350993,0.73535,0.135087,0.444637,0.525196,0.659606,0.855389,0.189304,0.605864,0.862965,0.181448,0.735302,0.414872,0.69187,0.147331,0.97361,0.781229,0.805257,0.434592,0.376845,0.261388,0.696032,0.250701,0.396742,0.225739,0.19534,0.97211,0.858521,0.559227,0.771155,0.562076,0.0705819,0.775976,0.672096,0.370905,0.437559,0.395148,0.994905,0.926632,0.756883,0.909165,0.476389,0.234726,0.654761,0.471738,0.797768,0.00392067,0.374746,0.367473,0.731691,0.942692,0.193883,0.36061,0.682208,0.68596,0.802292,0.552663,0.199813,0.870507,0.494469,0.233271,0.658974,0.741277,0.0830204,0.0521901,0.207201,0.866135,0.858089,0.306126,0.225274,0.627075,0.571456,0.906926,0.554542,0.596798,0.126396,0.677268,0.567772,0.962265,0.520601,0.922337,0.714133,0.814743,0.682671,0.638578,0.987195,0.0377221,0.153628,0.793328,0.786939,0.100687,0.124095,0.313787,0.138014,0.939358,0.0214897,0.517726,0.355113,0.137063,0.747432,0.850236,0.742008,0.442971,0.287035,0.531918,0.980057,0.165374,0.660494,0.878474,0.907483,0.888839,0.77833,0.293419,0.364766,0.85395,0.93271,0.3875,0.123797,0.489916,0.33973,0.137964,0.335,0.558411,0.346924,0.717607,0.0939055,0.728217,0.532305,0.499778,0.209854,0.302031,0.797803,0.893813,0.319176,0.970692,0.095839,0.541878,0.33475,0.954468,0.201026,0.00392467,0.642038,0.1631,0.648178,0.739347,0.992243,0.366741,0.929586,0.282592,0.823832,0.225027,0.936986,0.136936,0.936542,0.956995,0.0784081,0.343554,0.283248,0.771946,0.465888,0.0206533,0.101555,0.43928,0.862674,0.936498,0.313582,0.745627,0.753826,0.694733,0.628447,0.221089,0.811941,0.644819,0.067897,0.381914,0.0578235,0.940648,0.685715,0.405091,0.16186,0.220014,0.479268,0.909105,0.791855,0.897933,0.905393,0.559734,0.113644,0.542184,0.860536,0.207108,0.528876,0.296209,0.864715,0.334791,0.68652,0.119916,0.548321,0.946831,0.999304,0.956032,0.438357,0.133651,0.697967,0.594499,0.207435,0.149528,0.918034,0.783966,0.752279,0.15595,0.110301,0.768649,0.71128,0.83879,0.500405,0.647073,0.831025,0.586454,0.936201,0.550885,0.535056,0.713099,0.0584461,0.18815,0.22321,0.733739,0.749184,0.382734,0.325732,0.519581,0.647242,0.0452138,0.0683197,0.298959,0.597779,0.178701,0.450389,0.272158,0.310797,0.468552,0.79777,0.19453,0.433228,0.0267228,0.629399,0.400978,0.130667,0.22222,0.935472,0.0163429,0.311765,0.408714,0.97658,0.477128,0.24773,0.442418,0.678613,0.391708,0.0946575,0.80031,0.950735,0.0803762,0.947755,0.787092,0.179,0.374207,0.143798,0.656755,0.586908,0.248097,0.378525,0.7006,0.583248,0.7508,0.589793,0.631567,0.819332,0.888252,0.696704,0.206697,0.934965,0.378374,0.637863,0.826939,0.271848,0.137885,0.280141,0.839004,0.76133,0.762532,0.145708,0.352698,0.793701,0.132605,0.696352,0.741545,0.0213007,0.616118,0.33848,0.676548,0.206094,0.741485,0.78422,0.00139052,0.960184,0.559104,0.00207669,0.775114,0.49284,0.69579,0.637427,0.473723,0.194516,0.50653,0.614099,0.134927,0.22841,0.0617719,0.593056,0.2885,0.15407,0.94936,0.162893,0.558827,0.698457,0.458973,0.278232,0.0370377,0.625252,0.68467,0.196043,0.0901499,0.221919,0.970581,0.190272,0.620594,0.422073,0.486524,0.818532,0.89746,0.995425,0.897143,0.482831,0.790628,0.562379,0.743144,0.0628287,0.493773,0.922825,0.712471,0.0508688,0.450953,0.457293,0.500297,0.634108,0.224984,0.501261,0.737766,0.787671,0.176274,0.061304,0.49985,0.752622,0.475772,0.210735,0.958581,0.82348,0.595115,0.541807,0.674116,0.866663,0.418243,0.418061,0.242079,0.262991,0.3004,0.876438,0.254421,0.76937,0.0124431,0.55715,0.921766,0.13188,0.403395,0.366179,0.505325,0.993808,0.141682,0.776438,0.764791,0.940783,0.217248,0.134472,0.653059,0.313528,0.150585,0.496737,0.168365,0.281105,0.627568,0.646325,0.777768,0.119177,0.821782,0.361514,0.984604,0.377865,0.860773,0.377136,0.263234,0.237642,0.749729,0.990219,0.602027,0.990006,0.345164,0.418164,0.820368,0.13919,0.770879,0.820365,0.702032,0.665429,0.353344,0.572731,0.127206,0.676881,0.0826406,0.497932,0.170472,0.0338957,0.87634,0.574552,0.32395,0.111957,0.0884603,0.0264444,0.509324,0.0349967,0.257602,0.678228,0.939487,0.336134,0.528145,0.289956,0.0532889,0.583256,0.298174,0.761637,0.449151,0.851765,0.154689,0.516345,0.223251,0.340808,0.577535,0.825469,0.238785,0.0349368,0.173714,0.125325,0.428263,0.303442,0.784253,0.98459,0.092084,0.205629,0.0662492,0.813584,0.546564,0.608356,0.106834,0.558157,0.404096,0.829879,0.232909,0.807353,0.474935,0.121633,0.816137,0.953474,0.47124,0.165968,0.310177,0.468353,0.997962,0.427629,0.077413,0.319291,0.490713,0.459625,0.0172814,0.391443,0.737128,0.52801,0.43215,0.502054,0.683028,0.24086,0.975792,0.112374,0.587273,0.324187,0.293713,0.675923,0.577259,0.892323,0.0292529,0.181604,0.737009,0.21939,0.799517,0.442465,0.574573,0.897751,0.219085,0.489949,0.927673,0.0808542,0.681553,0.116233,0.390724,0.540081,0.842211,0.859893,0.925941,0.0267146,0.511893,0.742744,0.372843,0.0490927,0.925302,0.105815,0.148582,0.242453,0.828647,0.829978,0.315243,0.492578,0.977095,0.0204316,0.278175,0.204812,0.583964,0.730358,0.847672,0.236158,0.0320041,0.302699,0.0557004,0.431165,0.206981,0.453547,0.436009,0.739299,0.554539,0.0745987,0.728888,0.432152,0.962778,0.633242,0.203833,0.771511,0.537805,0.420119,0.319865,0.452475,0.0720277,0.823308,0.92654,0.332651,0.453898,0.839045,0.596141,0.568734,0.730232,0.658089,0.678726,0.128132,0.207362,0.054,0.0231206,0.121642,0.379846,0.246205,0.00724846,0.581937,0.614938,0.590759,0.273443,0.148651,0.41348,0.888408,0.0436248,0.0164844,0.971091,0.718467,0.934545,0.562832,0.716075,0.967876,0.879722,0.375392,0.789283,0.488249,0.313103,0.764236,0.90205,0.683981,0.621591,0.36877,0.280901,0.534417,0.375026,0.498301,0.795253,0.0698468,0.72021,0.382974,0.993505,0.372188,0.940512,0.619457,0.135409,0.541957,0.821779,0.860267,0.236489,0.988873,0.359059,0.214273,0.841996,0.227218,0.193183,0.72333,0.588494,0.185626,0.62848,0.979137,0.813986,0.748645,0.334974,0.614612,0.410301,0.983711,0.959536,0.985617,0.915497,0.797575,0.720729,0.0872491,0.202096,0.113075,0.994064,0.632025,0.922391,0.108364,0.979395,0.2104,0.951883,0.16576,0.979227,0.474457,0.000939429,0.58886,0.281108,0.532645,0.447714,0.663039,0.422725,0.46876,0.367566,0.6342,0.503058,0.75327,0.896113,0.981792,0.965629,0.158419,0.791025,0.779687,0.863523,0.739748,0.861044,0.188306,0.761285,0.969668,0.90251,0.301818,0.137216,0.417229,0.525046,0.510139,0.692012,0.676283,0.14562,0.877579,0.85863,0.991864,0.676849,0.198096,0.683112,0.818784,0.408687,0.353599,0.564104,0.48557,0.67055,0.609978,0.36413,0.688809,0.406373,0.51009,0.268359,|0.676623,0.0420806,0.882439,0.269207,0.964531,0.461541,0.8672,0.3181,0.620188,0.943334,0.109129,0.326076,0.879259,0.383294,0.81489,0.59888,0.408001,0.29059,0.380322,0.283675,0.165483,0.174586,0.644009,0.793552,0.195762,0.555858,0.693026,0.714867,0.179446,0.181343,0.887431,0.820623,0.553803,0.528436,0.865515,0.68117,0.986745,0.0415466,0.232756,0.964002,0.494141,0.611099,0.370815,0.278767,0.263037,0.679837,0.390401,0.273559,0.408271,0.557544,0.833591,0.583638,0.380704,0.752235,0.66469,0.493274,0.780457,0.370551,0.658872,0.861153,0.456171,0.830012,0.287982,0.777321,0.0984032,0.0820227,0.062578,0.0247485,0.655383,0.939133,0.692972,0.268369,0.995705,0.564227,0.861827,0.9211,0.0242159,0.10405,0.0697488,0.42588,0.880061,0.245796,0.704947,0.821364,0.990627,0.00491011,0.867708,0.234573,0.661303,0.527429,0.17076,0.110785,0.799675,0.330096,0.296618,0.436999,0.590295,0.666323,0.666165,0.656425,0.283119,0.640133,0.911389,0.953604,0.595755,0.811274,0.523161,0.442588,0.0535541,0.701832,0.276456,0.902146,0.248522,0.906578,0.833961,0.682918,0.617728,0.419764,0.127383,0.339114,0.0383763,0.437938,0.876139,0.739827,0.358317,0.0804066,0.962736,0.619507,0.41519,0.781974,0.812805,0.497184,0.667575,0.453084,0.607908,0.167664,0.626014,0.0135978,0.450339,0.542151,0.148296,0.367472,0.108026,0.650241,0.214944,0.471233,0.823623,0.78025,0.15374,0.956952,0.74173,0.308488,0.872908,0.172752,0.633535,0.425456,0.649438,0.854089,0.990102,0.46942,0.473613,0.987226,0.97157,0.144932,0.598615,0.823766,0.694274,0.858914,0.584162,0.953862,0.7767,0.150173,0.046168,0.670579,0.73602,0.876738,0.495323,0.111164,0.663168,0.940416,0.263609,0.716141,0.383401,0.48383,0.832102,0.865854,0.0873329,0.459433,0.201483,0.469107,0.843089,0.51798,0.447506,0.280295,0.45846,0.376138,0.272702,0.926332,0.69756,0.8112,0.417231,0.681357,0.872451,0.51798,0.527687,0.464259,0.881254,0.554954,0.347353,0.000125706,0.187775,0.854874,0.301106,0.347357,0.66496,0.0592436,0.65005,0.250049,0.0777193,0.770084,0.0939622,0.442944,0.18272,0.576309,0.160567,0.68828,0.513314,0.775978,0.104709,0.503558,0.849847,0.111391,0.0498245,0.0115758,0.26428,0.947655,0.940317,0.242832,0.0683352,0.0109424,0.492851,0.100421,0.903169,0.42243,0.501577,0.394332,0.971238,0.49145,0.694316,0.247841,0.690625,0.0342668,0.966822,0.96889,0.535074,0.507535,0.968848,0.53424,0.760677,0.641781,0.145324,0.524732,0.738394,0.664037,0.820142,0.39496,0.33365,0.326097,0.145783,0.867386,0.169764,0.950768,0.989064,0.502944,0.688774,0.588889,0.120683,0.29486,0.969506,0.34918,0.662198,0.644009,0.278541,0.403415,0.852727,0.133244,0.670806,0.562913,0.811189,0.874547,0.651798,0.956447,0.126503,0.988807,0.876159,0.210394,0.470925,0.555632,0.623523,0.798989,0.969391,0.922116,0.231748,0.125396,0.129063,0.942288,0.786424,0.845523,0.875647,0.0477382,0.407853,0.67863,0.293828,0.425017,0.05856,0.660376,0.457558,0.974745,0.704277,0.830118,0.328214,0.303261,0.223545,0.553561,0.270641,0.359822,0.724319,0.0298856,0.836025,0.290577,0.577564,0.959791,0.591532,0.301912,0.717739,0.395638,0.6443,0.823791,0.872276,0.995308,0.642363,0.112969,0.515406,0.409962,0.414178,0.865824,0.0984676,0.238095,0.620022,0.958525,0.748379,0.181734,0.508398,0.417199,0.0696617,0.00396395,0.214845,0.342975,0.936533,0.339015,0.954804,0.695628,0.234051,0.295546,0.965244,0.647738,0.550715,0.873615,0.0326242,0.927096,0.45212,0.724922,0.849196,0.447745,0.155592,0.771309,0.658683,0.465574,0.780999,0.456988,0.288194,0.395542,0.222184,0.317859,0.32746,0.521084,0.901266,0.252671,0.0184977,0.78891,0.845373,0.32274,0.661539,0.983308,0.193458,0.825109,0.562833,0.793557,0.907247,0.125161,0.658701,0.12127,0.285273,0.905312,0.215917,0.813156,0.129237,0.74495,0.897301,0.692206,0.253811,0.682857,0.59631,0.435453,0.217877,0.581634,0.298392,0.134563,0.802384,0.465784,0.11096,0.829167,0.577015,0.46768,0.844422,0.692425,0.998995,0.878176,0.065857,0.875755,0.742366,0.671435,0.0987436,0.603475,0.338207,0.0504063,0.445386,0.0657482,0.356134,0.238485,0.785589,0.927059,0.972106,0.290998,0.12863,0.839807,0.0259043,0.394268,0.267197,0.783339,0.221826,0.439724,0.138826,0.395156,0.296944,0.550817,0.411518,0.167351,0.244535,0.515472,0.0329127,0.646936,0.155845,0.936727,0.237146,0.702166,0.97136,0.182594,0.789841,0.464178,0.435274,0.888355,0.685537,0.198641,0.905858,0.531975,0.792126,0.922691,0.756019,0.895243,0.0331102,0.796048,0.257066,0.924326,0.153546,0.384014,0.734642,0.424926,0.10136,0.764564,0.654256,0.635704,0.86667,0.560501,0.246366,0.684498,0.207076,0.908979,0.21675,0.918029,0.0829607,0.474036,0.864626,0.0584871,0.850052,0.91422,0.457175,0.380522,0.666424,0.370184,0.659206,0.3443,0.874943,0.172991,0.713711,0.170469,0.527248,0.223044,0.842273,0.486601,0.456288,0.249672,0.316763,0.370083,0.247108,0.941767,0.324001,0.987955,0.535664,0.513078,0.694656,0.0128246,0.301359,0.626697,0.48667,0.537536,0.128172,0.213663,0.901386,0.0885407,0.664142,0.2826,0.74362,0.185128,0.615318,0.0208408,0.100525,0.45264,0.515047,0.228225,0.886564,0.661805,0.229579,0.427495,0.509361,0.833787,0.819811,0.207873,0.362867,0.44107,0.257548,0.0568855,0.103738,0.755431,0.607454,0.198303,0.461297,0.535003,0.700499,0.852551,0.79847,0.695418,0.177063,0.325504,0.601358,0.347681,0.610242,0.57246,0.299131,0.672282,0.431189,0.753244,0.943803,0.305906,0.251707,0.752774,0.3304,0.192421,0.784188,0.407046,0.840811,0.970253,0.723399,0.0816386,0.878548,0.210123,0.787103,0.97334,0.0435154,0.429912,0.0736067,0.298923,0.238692,0.274074,0.416213,0.936992,0.0787727,0.768471,0.400417,0.273947,0.935257,0.139881,0.031022,0.927558,0.320945,0.45434,0.805995,0.249811,0.834266,0.43401,0.93606,0.1805,0.485742,0.811014,0.0653903,0.444125,0.0403415,0.869972,0.521969,0.0197623,0.377718,0.670941,0.482892,0.694456,0.761624,0.496446,0.915098,0.961976,0.760643,0.104216,0.358341,0.818313,0.284894,0.121897,0.506989,0.999727,0.797037,0.157161,0.485079,0.908129,0.905617,0.303056,0.376893,0.157201,0.743943,0.679716,0.0939513,0.0635906,0.467226,0.862095,0.836068,0.123679,0.0129444,0.688838,0.644816,0.829169,0.703399,0.812716,0.616605,0.868796,0.384522,0.495518,0.910482,0.385889,0.0481195,0.570304,0.052574,0.188696,0.959199,0.676436,0.178898,0.378622,0.0730462,0.644635,0.860115,0.794385,0.735437,0.365131,0.198069,0.586171,0.0268306,0.411628,0.117861,0.634339,0.0310963,0.914119,0.0480143,0.772183,0.799704,0.596098,0.800318,0.12288,0.949966,0.101513,0.256989,0.873027,0.956612,0.685904,0.107139,0.800357,0.942402,0.486738,0.467412,0.757588,0.447735,0.497771,0.905352,0.160237,0.689197,0.205869,0.380852,0.610501,0.916686,0.756238,0.375705,0.487778,0.26044,0.0501732,0.135237,0.459107,0.465045,0.0268122,0.9859,0.07191,0.445443,0.430845,0.967494,0.138601,0.750519,0.265606,0.500847,0.636022,0.507143,0.075859,0.136947,0.432169,0.551834,0.384897,0.283107,0.00967962,0.241464,0.78824,0.49772,0.781952,0.870871,0.488092,0.180469,0.523381,0.805661,0.628924,0.472109,0.0577202,0.324315,0.614375,0.633166,0.556618,0.0901201,0.205625,0.972329,0.89198,0.686521,0.926403,0.432745,0.57019,0.335508,0.936498,0.162079,0.789099,0.710146,0.959063,0.256329,0.0268754,0.703703,0.233604,0.696645,0.60626,0.208629,0.696416,0.151814,0.278334,0.399106,0.84941,0.337513,0.0274677,0.487226,0.611432,0.0456448,0.540293,0.855235,0.923824,0.901666,0.108804,0.77402,0.587252,0.941846,0.131606,0.276354,0.921221,0.730815,0.533031,0.805722,0.141696,0.181352,0.0362879,0.167926,0.60866,0.536824,0.664584,0.4904,0.720011,0.603235,0.0207853,0.363787,0.258418,0.0146747,0.915377,0.851911,0.48579,0.338753,0.705128,0.552474,0.0969536,0.940993,0.517459,0.662751,0.27382,0.578416,0.28634,0.504649,0.948994,0.402653,0.970904,0.852955,0.620243,0.679236,0.968779,0.0699824,0.380121,0.831258,0.339449,0.541953,0.729398,0.230326,0.333346,0.352617,0.9037,0.328066,0.0223989,0.450382,0.457374,0.193422,0.182842,0.598936,0.747289,0.0393581,0.036177,0.960462,0.286597,0.718265,0.613876,0.967295,0.749266,0.0188818,0.0701737,0.370885,0.0248334,0.41067,0.468008,0.257458,0.911784,0.32304,0.658337,0.0970352,0.254905,0.784979,0.875232,0.502957,0.284904,0.0547853,0.0249099,0.340971,0.750978,0.665031,0.318384,0.522908,0.712317,0.00622886,0.933604,0.0935954,0.57186,0.539602,0.356736,0.312692,0.0707577,0.875408,0.65224,0.679193,0.0732436,0.731306,0.71753,0.3655,0.965415,0.527644,0.302683,0.853852,0.284378,0.118769,0.255862,0.661179,0.39228,0.622506,0.517342,0.418276,0.0913653,0.890587,0.645996,0.218615,0.954404,0.409686,0.394513,0.350287,0.290161,0.353707,0.874627,0.132504,0.531903,0.191797,0.108944,0.228141,0.388054,0.815931,0.455947,0.246096,0.53667,0.735926,0.77873,0.82004,0.0700982,0.779113,0.223104,0.239744,0.731434,0.931733,0.491898,0.964355,0.544231,0.785359,0.89838,0.543757,0.250782,0.446002,0.88618,0.845468,0.116936,0.27837,0.171128,0.120949,0.386119,0.244907,0.466319,0.0797594,0.847105,0.146789,0.451745,0.672639,0.130118,0.656099,0.978366,0.481933,0.435017,0.63964,0.575936,0.648835,0.817409,0.116282,0.750707,0.943465,0.911381,0.670088,0.0467635,0.695965,0.751326,0.435697,0.899419,0.966464,0.119504,0.298188,0.395734,0.997825,0.918775,|0.10602,0.184005,0.0722783,0.108303,0.669157,0.795178,0.192746,0.248938,0.632823,0.703875,0.435254,0.946788,0.66817,0.852611,0.122326,0.213809,0.187894,0.364035,0.121759,0.475635,0.46174,0.291031,0.67456,0.288936,0.0448341,0.466978,0.64015,0.161075,0.871278,0.654478,0.995498,0.737551,0.700524,0.186575,0.758929,0.278285,0.907249,0.3049,0.172497,0.254844,0.00981194,0.592853,0.678803,0.324076,0.258796,0.553976,0.529967,0.36016,0.107061,0.00961667,0.634847,0.326201,0.393684,0.645833,0.658537,0.955177,0.748305,0.326591,0.460059,0.397368,0.123122,0.874775,0.155246,0.927829,0.6731,0.999646,0.0840789,0.702478,0.0407324,0.0264296,0.0989524,0.4239,0.209832,0.886941,0.680945,0.579283,0.970586,0.334661,0.157838,0.47991,0.79914,0.659831,0.101815,0.0857714,0.714239,0.681278,0.414501,0.420389,0.559844,0.96037,0.853059,0.231295,0.714687,0.667349,0.616822,0.863143,0.864692,0.334816,0.150843,0.329261,0.183854,0.336265,0.885995,0.0187994,0.911098,0.945348,0.933781,0.871273,0.0176858,0.348843,0.866963,0.415578,0.426383,0.257045,0.0952445,0.948127,0.835312,0.509641,0.416347,0.883253,0.404924,0.320298,0.782029,0.191315,0.656689,0.311143,0.567375,0.954936,0.245752,0.260526,0.46895,0.173573,0.831948,0.949648,0.0590565,0.937545,0.149772,0.567132,0.0950787,0.903118,0.0364164,0.287055,0.781278,0.712224,0.726099,0.71748,0.398484,0.178552,0.414303,0.664083,0.887087,0.369554,0.00846213,0.0601048,0.282731,0.0804139,0.30203,0.612061,0.769213,0.719806,0.0417961,0.302649,0.959444,0.0672547,0.522172,0.970845,0.108588,0.250758,0.843234,0.973314,0.47409,0.0558329,0.522381,0.725686,0.352212,0.484806,0.307821,0.524133,0.410052,0.88688,0.706688,0.772186,0.969367,0.29168,0.132812,0.924803,0.892487,0.86891,0.586239,0.411971,0.838563,0.827038,0.832565,0.96161,0.975264,0.578878,0.838328,0.409601,0.263823,0.148787,0.550233,0.992413,0.546835,0.968858,0.695601,0.826254,0.78179,0.753866,0.709121,0.801607,0.964067,0.656449,0.631439,0.176955,0.92564,0.0626473,0.22347,0.419413,0.431077,0.496385,0.228323,0.375428,0.296433,0.660295,0.659481,0.829496,0.697334,0.129687,0.913849,0.476503,0.285403,0.612421,0.70061,0.851024,0.122043,0.104348,0.816295,0.634671,0.925693,0.83609,0.33769,0.802659,0.0414172,0.394035,0.908466,0.276863,0.504063,0.304313,0.700513,0.468263,0.520047,0.141691,0.701951,0.806775,0.298292,0.951802,0.608139,0.359952,0.804674,0.0678711,0.543637,0.181287,0.788643,0.265154,0.653324,0.351069,0.256848,0.265976,0.32039,0.618023,0.305636,0.336788,0.0854207,0.0578843,0.0810632,0.0168934,0.671976,0.844686,0.377671,0.305978,0.893233,0.362328,0.10533,0.209629,0.425237,0.393549,0.653529,0.146216,0.945222,0.842645,0.42961,0.201357,0.121012,0.476714,0.869072,0.997645,0.299744,0.3421,0.243961,0.737552,0.70329,0.781271,0.0258434,0.127036,0.881203,0.401961,0.835711,0.0759472,0.358756,0.759215,0.599601,0.823264,0.889631,0.268403,0.390899,0.1824,0.911193,0.992805,0.401237,0.838214,0.387182,0.723586,0.371362,0.0851086,0.799317,0.10308,0.225137,0.918326,0.648894,0.937141,0.316088,0.677378,0.27108,0.966355,0.277123,0.188741,0.808684,0.916507,0.257915,0.0117954,0.17226,0.0928247,0.12324,0.498345,0.894133,0.817183,0.97358,0.497805,0.626225,0.369135,0.455486,0.196481,0.553576,0.338325,0.932245,0.841673,0.0658097,0.907551,0.913795,0.555785,0.165283,0.582576,0.882809,0.825333,0.460444,0.178598,0.565062,0.630768,0.0425028,0.405399,0.207343,0.28144,0.473216,0.967767,0.990631,0.0185176,0.624764,0.0425617,0.544523,0.571193,0.719822,0.478524,0.48656,0.29996,0.527549,0.455688,0.788863,0.439085,0.822695,0.0822948,0.834752,0.108888,0.122929,0.329723,0.379298,0.0854018,0.97528,0.142891,0.422325,0.875183,0.832369,0.134958,0.530147,0.253505,0.316682,0.0262043,0.292762,0.629948,0.00501806,0.954544,0.677955,0.0868633,0.710875,0.33195,0.685364,0.429671,0.189233,0.551961,0.134254,0.74111,0.0628924,0.529525,0.200195,0.103853,0.137292,0.957349,0.328935,0.357656,0.665815,0.683702,0.88446,0.855002,0.221354,0.774255,0.471217,0.661683,0.809772,0.665119,0.92766,0.35498,0.976978,0.97622,0.306743,0.968621,0.262752,0.561583,0.846799,0.223892,0.183034,0.268427,0.261752,0.0355486,0.319499,0.0297598,0.116456,0.367159,0.622166,0.401241,0.929116,0.887725,0.658067,0.448386,0.122024,0.612932,0.569919,0.348591,0.259741,0.23004,0.813368,0.986561,0.0990503,0.0152956,0.916222,0.524633,0.770326,0.37987,0.106733,0.671397,0.387507,0.361588,0.392451,0.347736,0.693782,0.280795,0.657771,0.439176,0.708573,0.566117,0.789739,0.790496,0.380874,0.0972779,0.522802,0.34868,0.431249,0.885374,0.950228,0.287885,0.145205,0.273544,0.997047,0.550749,0.986917,0.0332405,0.79272,0.2455,0.222875,0.256968,0.0455346,0.0852076,0.830887,0.871903,0.557556,0.487134,0.138075,0.247386,0.454393,0.920336,0.972767,0.967395,0.566863,0.612914,0.922495,0.568513,0.900323,0.306081,0.541267,0.89119,0.474064,0.208203,0.022754,0.887431,0.620152,0.362879,0.435315,0.495126,0.0388917,0.00387406,0.753384,0.493572,0.723898,0.849517,0.375736,0.697828,0.567779,0.988934,0.230987,0.860766,0.544919,0.0977527,0.905153,0.512957,0.020022,0.28878,0.0729699,0.604365,0.337425,0.517194,0.515881,0.463193,0.14375,0.820761,0.137939,0.184912,0.706602,0.312787,0.313766,0.119426,0.26581,0.765722,0.615384,0.593758,0.0193273,0.52459,0.55914,0.269006,0.611625,0.398346,0.421584,0.155954,0.967127,0.757815,0.981226,0.222806,0.807364,0.736946,0.684011,0.804061,0.687908,0.753755,0.491891,0.999029,0.826424,0.821315,0.473634,0.173489,0.438002,0.755437,0.341574,0.982043,0.153483,0.196154,0.266611,0.0438173,0.231332,0.848035,0.211145,0.534065,0.542017,0.285097,0.164554,0.618115,0.819061,0.189968,0.650951,0.978527,0.336835,0.251934,0.670127,0.271492,0.341842,0.782489,0.678225,0.381362,0.795451,0.380347,0.913753,0.101745,0.0362669,0.739595,0.890074,0.173506,0.906637,0.518673,0.588097,0.83177,0.184192,0.956677,0.551134,0.573223,0.77855,0.396606,0.963453,0.824309,0.576883,0.759132,0.138068,0.884747,0.0468462,0.0597706,0.769241,0.93315,0.993587,0.317514,0.0859597,0.461637,0.989746,0.0644234,0.889724,0.387676,0.0670183,0.295126,0.0975146,0.984586,0.53121,0.511189,0.817881,0.824713,0.479027,0.76547,0.18037,0.854469,0.680755,0.717801,0.638202,0.0909214,0.388555,0.536913,0.881788,0.447297,0.336301,0.968565,0.460537,0.0427566,0.55852,0.0759758,0.0625579,0.684474,0.416623,0.314696,0.623973,0.308611,0.185008,0.0379287,0.955763,0.210773,0.771741,0.22812,0.49799,0.191891,0.535615,0.316065,0.414378,0.814656,0.0172977,0.13851,0.678515,0.728673,0.606011,0.125464,0.134152,0.507293,0.379979,0.0895695,0.417367,0.215311,0.429272,0.318403,0.534708,0.598472,0.991327,0.593137,0.425108,0.903505,0.643364,0.00902271,0.30585,0.87701,0.0385967,0.712488,0.629587,0.233759,0.265278,0.453645,0.363033,0.37164,0.878441,0.179258,0.227128,0.990843,0.628903,0.913184,0.63577,0.133576,0.929069,0.49274,0.0176498,0.868467,0.604953,0.0251161,0.960157,0.42289,0.836031,0.100848,0.592577,0.65799,0.422319,0.60748,0.114815,0.636098,0.899627,0.0508577,0.152376,0.632871,0.716684,0.807613,0.229681,0.330405,0.337316,0.556069,0.487496,0.235867,0.917461,0.473071,0.178329,0.359477,0.949303,0.545818,0.366296,0.171677,0.905257,0.0261983,0.630874,0.959479,0.181872,0.710952,0.661488,0.507003,0.566024,0.669353,0.0877071,0.440525,0.862007,0.543865,0.49833,0.156778,0.0881373,0.0081982,0.254932,0.302431,0.0620205,0.557105,0.801769,0.437783,0.427252,0.622928,0.245151,0.861362,0.542242,0.0686601,0.285749,0.80429,0.976796,0.988929,0.620293,0.0998354,0.595977,0.859588,0.269902,0.0786488,0.415484,0.799736,0.242696,0.0432074,0.258988,0.196473,0.587096,0.390412,0.102555,0.878225,0.187716,0.42575,0.656114,0.416635,0.345729,0.481085,0.749583,0.864744,0.676599,0.311317,0.320852,0.591583,0.632357,0.191387,0.727285,0.599317,0.479187,0.0740134,0.714427,0.920554,0.169581,0.362615,0.780956,0.673925,0.510919,0.773854,0.0486979,0.115819,0.0805726,0.606353,0.110259,0.127156,0.4364,0.493419,0.582007,0.545204,0.506153,0.373083,0.923039,0.170324,0.395126,0.175946,0.314776,0.60925,0.189797,0.526051,0.7206,0.857351,0.429832,0.884634,0.886767,0.646282,0.835077,0.0646433,0.856241,0.522562,0.546284,0.707823,0.312839,0.579771,0.80355,0.278094,0.519524,0.999118,0.0300321,0.661095,0.70526,0.328013,0.333046,0.310497,0.0997652,0.181587,0.89656,0.121984,0.63783,0.683061,0.455724,0.834761,0.587566,0.151902,0.686387,0.895777,0.673925,0.907769,0.453712,0.535874,0.351035,0.530762,0.695633,0.948388,0.0621661,0.897207,0.829121,0.314046,0.28763,0.402802,0.834675,0.593863,0.0806561,0.370323,0.50501,0.468611,0.989895,0.239846,0.0530136,0.485457,0.547507,0.937082,0.0445956,0.621472,0.416815,0.1311,0.936233,0.271477,0.516955,0.368556,0.211281,0.526018,0.32199,0.252807,0.0749266,0.438426,0.156959,0.974505,0.232911,0.610366,0.424983,0.430341,0.800172,0.827292,0.816547,0.553201,0.678897,0.610418,0.532018,0.570343,0.465199,0.919461,0.284022,0.937635,0.802227,0.258246,0.649784,0.657227,0.511231,0.985187,0.608112,0.777707,0.532964,0.364539,0.789407,0.967164,0.744004,0.0606316,0.213256,0.732928,0.912145,0.166968,0.0401976,0.305586,0.0623158,0.208469,0.204931,0.87585,0.989367,0.914214,0.859806,0.22161,0.126297,0.234249,|0.287753,0.506632,0.460052,0.766482,0.312451,0.896561,0.788029,0.747131,0.308416,0.566302,0.827907,0.988246,0.337107,0.981242,0.0971942,0.78817,0.315294,0.184125,0.388232,0.405673,0.115637,0.463614,0.180869,0.0135341,0.282625,0.0387225,0.108602,0.733615,0.34929,0.336767,0.994311,0.25544,0.686334,0.120631,0.516907,0.176437,0.259696,0.776696,0.818241,0.24473,0.593178,0.785625,0.833558,0.786633,0.81425,0.421266,0.134404,0.184846,0.48695,0.910434,0.835184,0.937847,0.245458,0.103854,0.426827,0.390635,0.696304,0.461867,0.0451444,0.261608,0.888015,0.658619,0.541725,0.464642,0.549763,0.432427,0.489493,0.814891,0.0272943,0.737632,0.309758,0.351183,0.213201,0.416625,0.57689,0.369828,0.30492,0.253053,0.756568,0.324255,0.646895,0.0810995,0.37042,0.607495,0.714466,0.848257,0.77071,0.873161,0.789011,0.53656,0.021098,0.813617,0.0745727,0.768905,0.434424,0.141028,0.532671,0.817188,0.48289,0.714216,0.36023,0.270096,0.360519,0.772134,0.401904,0.0969447,0.145807,0.880788,0.78919,0.0760885,0.021335,0.733179,0.523045,0.898718,0.240522,0.6046,0.850043,0.340238,0.507145,0.396332,0.973826,0.0458673,0.654651,0.869862,0.327139,0.289915,0.880883,0.587251,0.573451,0.712186,0.325474,0.402952,0.0781262,0.218475,0.604293,0.612776,0.506636,0.539391,0.3356,0.872696,0.754479,0.0098834,0.0107383,0.476292,0.154877,0.445292,0.258565,0.240964,0.995329,0.923954,0.0247399,0.481664,0.982787,0.869712,0.335965,0.245779,0.00440836,0.266261,0.206155,0.701964,0.858615,0.462578,0.508261,0.868508,0.00275362,0.404146,0.179356,0.188296,0.457368,0.732326,0.340255,0.634392,0.425149,0.0857441,0.92482,0.634876,0.65841,0.764926,0.311631,0.199547,0.909782,0.945056,0.74469,0.875316,0.154043,0.931471,0.446671,0.231296,0.20761,0.108913,0.651168,0.101341,0.898117,0.51623,0.143458,0.0175909,0.402992,0.222871,0.640297,0.0963717,0.932039,0.74852,0.0378141,0.691197,0.961047,0.302327,0.194388,0.217645,0.289582,0.584114,0.55459,0.962947,0.408426,0.513303,0.183387,0.169808,0.0894045,0.0310857,0.833397,0.280696,0.181942,0.422254,0.203454,0.0674765,0.00951242,0.473512,0.557742,0.939493,0.179153,0.100088,0.278242,0.0250961,0.321054,0.202267,0.136653,0.284681,0.226537,0.664007,0.725602,0.754148,0.252354,0.765092,0.668726,0.575479,0.853255,0.229585,0.230651,0.385795,0.91629,0.0908353,0.771356,0.245345,0.404916,0.388031,0.194296,0.500484,0.113019,0.820294,0.495542,0.230892,0.549767,0.774222,0.50101,0.604871,0.0473548,0.506847,0.163927,0.383583,0.162843,0.685251,0.0784875,0.921257,0.43143,0.159727,0.0936169,0.56668,0.276338,0.0368972,0.135473,0.597334,0.490569,0.274703,0.291647,0.269699,0.697693,0.191355,0.71317,0.701676,0.0291246,0.806033,0.795514,0.828356,0.687604,0.161125,0.402359,0.110678,0.435161,0.0623335,0.688531,0.231161,0.767396,0.300188,0.568545,0.0129606,0.0078283,0.838882,0.01113,0.0282117,0.623386,0.682742,0.240761,0.373577,0.153425,0.471109,0.651012,0.287026,0.939996,0.38125,0.957711,0.885291,0.981434,0.830612,0.251274,0.447557,0.767803,0.927574,0.281525,0.992463,0.24932,0.416154,0.531699,0.197072,0.544427,0.213776,0.811228,0.253554,0.0513934,0.711677,0.680511,0.989394,0.217341,0.961439,0.44049,0.208811,0.729946,0.387864,0.636899,0.799282,0.734976,0.250288,0.699794,0.456478,0.378024,0.52523,0.366821,0.279366,0.980454,0.904706,0.330332,0.66406,0.0477841,0.628286,0.269404,0.742028,0.550443,0.00671309,0.74101,0.801031,0.0529491,0.048903,0.165302,0.550805,0.510709,0.276291,0.286799,0.143121,0.843858,0.0566108,0.634069,0.667482,0.245574,0.64316,0.946487,0.387952,0.70942,0.506169,0.163788,0.331769,0.907978,0.31092,0.745449,0.877421,0.94576,0.246341,0.984605,0.563131,0.633533,0.494151,0.514306,0.409935,0.0684449,0.310122,0.891688,0.108899,0.0816526,0.377776,0.464616,0.742437,0.73056,0.302641,0.827604,0.732525,0.561931,0.96061,0.0559499,0.676715,0.593262,0.216906,0.338344,0.989225,0.709273,0.134325,0.817915,0.795018,0.694296,0.51079,0.95086,0.121884,0.626082,0.843494,0.179723,0.503275,0.814056,0.536077,0.880284,0.285552,0.0722261,0.59449,0.139294,0.606722,0.92761,0.695291,0.917382,0.231132,0.849275,0.528222,0.677676,0.856804,0.977649,0.785886,0.86954,0.950174,0.140206,0.638588,0.866126,0.203159,0.0639842,0.842182,0.0902853,0.044615,0.715685,0.274619,0.509591,0.982011,0.350906,0.605368,0.937504,0.442883,0.475139,0.112733,0.58063,0.152425,0.736938,0.00216591,0.252463,0.247425,0.0350595,0.721335,0.319714,0.590162,0.00124496,0.786892,0.399259,0.900332,0.12553,0.887677,0.898032,0.579125,0.632412,0.421087,0.797294,0.904802,0.453695,0.114037,0.504264,0.0473329,0.175064,0.607801,0.528611,0.915551,0.758146,0.234391,0.725624,0.532636,0.897708,0.826774,0.31883,0.0676257,0.153669,0.427142,0.169302,0.105851,0.690713,0.253811,0.543322,0.413941,0.416592,0.460285,0.350077,0.507452,0.48302,0.591147,0.782674,0.356972,0.973686,0.469698,0.829911,0.748623,0.608239,0.981129,0.749597,0.468507,0.306877,0.311291,0.736007,0.550442,0.0344521,0.401456,0.380851,0.707505,0.891785,0.468849,0.907152,0.0975665,0.266457,0.685585,0.958429,0.00711602,0.777638,0.165969,0.889964,0.841926,0.888585,0.828548,0.339895,0.524199,0.454485,0.626746,0.431277,0.000520229,0.548099,0.737622,0.962661,0.281588,0.591627,0.684566,0.489156,0.59207,0.606023,0.0285389,0.826668,0.759655,0.57922,0.155329,0.366302,0.915659,0.0214885,0.478744,0.961599,0.233056,0.680501,0.134667,0.487314,0.330791,0.895155,0.266268,0.295365,0.694191,0.0710897,0.465892,0.403516,0.465936,0.710794,0.215909,0.610663,0.329633,0.901936,0.846854,0.981488,0.671146,0.693402,0.997384,0.527387,0.247988,0.860671,0.909688,0.175394,0.242582,0.784264,0.160313,0.225933,0.336408,0.407836,0.800846,0.644469,0.815964,0.955666,0.586451,0.384415,0.401485,0.528872,0.985364,0.347294,0.342457,0.0152707,0.717278,0.624983,0.155406,0.857887,0.00557292,0.134378,0.128184,0.0847625,0.862329,0.285401,0.203774,0.892715,0.051082,0.30164,0.414838,0.759718,0.159402,0.16825,0.63752,0.371415,0.710158,0.355019,0.725848,0.957653,0.663783,0.84471,0.0230524,0.443966,0.948246,0.739954,0.903776,0.023115,0.978862,0.44609,0.757622,0.360481,0.898608,0.725627,0.164555,0.370691,0.622774,0.0934895,0.482152,0.642028,0.519621,0.465132,0.226973,0.177691,0.77571,0.150914,0.813438,0.571115,0.601132,0.931042,0.171546,0.801632,0.377222,0.457502,0.464818,0.291541,0.542383,0.757757,0.839396,0.243557,0.319128,0.980003,0.145458,0.725987,0.13252,0.660415,0.621151,0.440881,0.0955943,0.627931,0.482369,0.654294,0.777776,0.169981,0.42301,0.292108,0.735411,0.735198,0.328478,0.423347,0.0588053,0.975222,0.0218637,0.290302,0.226228,0.233519,0.260864,0.229967,0.19959,0.65232,0.151945,0.458408,0.233147,0.424403,0.818089,0.597503,0.18588,0.709451,0.555466,0.673823,0.962527,0.0719886,0.090951,0.888231,0.149686,0.479176,0.459933,0.543144,0.221433,0.00735539,0.161464,0.450088,0.973264,0.889323,0.286564,0.403453,0.287352,0.494864,0.377374,0.903059,0.593206,0.821284,0.491086,0.569271,0.346876,0.343968,0.57083,0.330301,0.508835,0.0837826,0.610622,0.818851,0.632256,0.322693,0.69842,0.795562,0.510009,0.537568,0.34813,0.756583,0.78786,0.734607,0.5465,0.217362,0.00800765,0.583502,0.271433,0.0375609,0.285845,0.129479,0.798654,0.0217304,0.457502,0.595161,0.526098,0.368924,0.70422,0.720683,0.910761,0.109473,0.77027,0.103558,0.531562,0.0817805,0.978343,0.769132,0.349677,0.139026,0.941834,0.456188,0.760165,0.979172,0.390099,0.723008,0.996289,0.463674,0.570968,0.32258,0.0637776,0.256606,0.0788925,0.693603,0.554156,0.910301,0.40582,0.575511,0.123561,0.649402,0.859795,0.540659,0.569179,0.606487,0.251257,0.708628,0.87864,0.979599,0.131783,0.997699,0.0430074,0.705554,0.905121,0.793803,0.965047,0.0947163,0.564726,0.0489403,0.495774,0.922476,0.429983,0.153706,0.190474,0.98567,0.732573,0.95561,0.167131,0.342247,0.382178,0.144817,0.194993,0.0996523,0.67341,0.98887,0.6617,0.0612805,0.603248,0.886545,0.818689,0.45133,0.408292,0.188655,0.174324,0.768289,0.333736,0.17548,0.0958754,0.555681,0.606423,0.896757,0.679407,0.523663,0.317281,0.907444,0.161855,0.677956,0.969396,0.598894,0.059713,0.0988491,0.393909,0.775092,0.586321,0.0039472,0.718633,0.994211,0.600846,0.538828,0.631997,0.67272,0.546779,0.152929,0.574186,0.623363,0.619307,0.536874,0.98723,0.0352001,0.673257,0.160948,0.566499,0.347694,0.0163811,0.712203,0.540516,0.0111683,0.136499,0.574064,0.222166,0.604338,0.473816,0.854381,0.903981,0.65372,0.430016,0.934472,0.0990618,0.650243,0.134376,0.115279,0.935125,0.564507,0.198312,0.61252,0.474763,0.611867,0.304608,0.347384,0.42587,0.0209413,0.608533,0.461475,0.377432,0.250033,0.696804,0.561083,0.171664,0.855916,0.97477,0.64751,0.551007,0.872784,0.888228,0.7488,0.373402,0.491385,0.904873,0.466093,0.741577,0.200724,0.235368,0.211477,0.867706,0.84992,0.83587,0.709148,0.638946,0.924022,0.872222,0.961716,0.0176761,0.862062,0.284994,0.470452,0.430029,0.0093236,0.0909368,0.146858,0.477597,0.0312702,0.794956,0.0995874,0.00115401,0.965615,0.289181,0.225389,0.593136,0.680541,0.852607,0.935351,0.921775,0.972899,0.132545,0.236458,0.527661,0.354513,0.678867,0.552894,0.932791,0.28736,0.547652,0.427256,0.651784,0.725735,0.487062,0.79383,0.447409,0.480413,0.132018,0.692557,0.0745359,0.416099,0.715778,|0.0762691,0.250085,0.387655,0.0539485,0.772672,0.623632,0.164386,0.922239,0.520143,0.955329,0.859476,0.0189672,0.422281,0.0700043,0.61234,0.86538,0.74595,0.189745,0.679625,0.277877,0.852276,0.673749,0.810264,0.678979,0.750059,0.208689,0.785591,0.541347,0.574987,0.907265,0.0161476,0.844442,0.300737,0.840731,0.21055,0.447454,0.584393,0.595304,0.145069,0.404506,0.804517,0.833706,0.88178,0.139568,0.934659,0.282801,0.557738,0.687488,0.361699,0.169966,0.234941,0.610264,0.926216,0.158593,0.371798,0.344207,0.140631,0.74492,0.900076,0.341613,0.241546,0.0987238,0.235224,0.32361,0.942436,0.782011,0.572383,0.313054,0.225887,0.921904,0.340928,0.616828,0.649387,0.522875,0.9949,0.122034,0.946022,0.366908,0.275863,0.573886,0.174289,0.090373,0.516137,0.274141,0.333922,0.168848,0.263421,0.145315,0.193451,0.679726,0.678966,0.462561,0.62321,0.515099,0.0275179,0.373734,0.25125,0.66473,0.377024,0.899583,0.0388219,0.73994,0.440459,0.0285931,0.181718,0.0980259,0.123012,0.0836654,0.565957,0.451037,0.137227,0.390367,0.558695,0.543434,0.915691,0.755375,0.860949,0.294375,0.812783,0.0350193,0.224203,0.762437,0.501394,0.975503,0.427529,0.200034,0.386467,0.461006,0.996973,0.675611,0.724607,0.040795,0.921699,0.849558,0.949968,0.850486,0.561289,0.329522,0.244596,0.971937,0.0187424,0.118773,0.173808,0.0339596,0.665508,0.630909,0.355657,0.121378,0.933363,0.476325,0.999314,0.868485,0.746354,0.395368,0.214025,0.585121,0.434655,0.492759,0.250805,0.94322,0.212248,0.656454,0.204944,0.255878,0.211331,0.37679,0.272918,0.961353,0.210824,0.490793,0.570548,0.000193954,0.249709,0.0522177,0.448539,0.377929,0.56886,0.325595,0.890684,0.742112,0.626204,0.433854,0.0125614,0.47796,0.579015,0.390235,0.789073,0.439229,0.981059,0.764038,0.465921,0.258869,0.391694,0.693931,0.622503,0.860922,0.220913,0.611839,0.806917,0.0753421,0.287935,0.235568,0.711916,0.543016,0.14424,0.411206,0.917475,0.662592,0.458364,0.462191,0.4695,0.247344,0.809799,0.300732,0.160867,0.230241,0.957089,0.810194,0.0407099,0.0637364,0.917537,0.845377,0.929123,0.49654,0.108567,0.28451,0.995025,0.525971,0.529441,0.0175943,0.000341952,0.728955,0.985612,0.00575989,0.571081,0.813796,0.361305,0.545887,0.834482,0.737465,0.576275,0.922626,0.293494,0.436132,0.838892,0.122651,0.87595,0.200747,0.275416,0.376078,0.952247,0.957829,0.916982,0.953818,0.498124,0.740193,0.889134,0.498393,0.659454,0.495469,0.894202,0.813181,0.42183,0.863635,0.287293,0.35226,0.539756,0.714232,0.701446,0.0809292,0.283789,0.848117,0.473599,0.00449324,0.197089,0.355491,0.0636193,0.305335,0.508567,0.217829,0.210881,0.847845,0.0182795,0.711427,0.237005,0.74352,0.766545,0.283906,0.897294,0.221582,0.475605,0.632017,0.712369,0.109907,0.132707,0.672654,0.670957,0.44332,0.350061,0.409733,0.361373,0.50879,0.960607,0.189901,0.623517,0.132583,0.764111,0.92775,0.014069,0.82802,0.416737,0.861299,0.190702,0.753095,0.894846,0.117737,0.122455,0.735091,0.330031,0.226046,0.872464,0.26415,0.192581,0.97405,0.0160875,0.389329,0.266915,0.209618,0.771735,0.457515,0.324069,0.366887,0.521384,0.411862,0.296175,0.0388101,0.307259,0.070945,0.443638,0.170519,0.0761723,0.0540145,0.733253,0.220415,0.230761,0.679712,0.49644,0.727008,0.231338,0.454833,0.716816,0.480168,0.917038,0.971669,0.598638,0.0121623,0.917432,0.264196,0.983562,0.422024,0.644064,0.0218333,0.698853,0.0289689,0.998902,0.975816,0.0401447,0.732849,0.739067,0.657778,0.794844,0.435945,0.938606,0.62886,0.974352,0.6841,0.109915,0.724945,0.264021,0.435628,0.4863,0.966807,0.298837,0.322423,0.455464,0.170237,0.601336,0.247495,0.529533,0.428337,0.0638616,0.315686,0.241834,0.224955,0.767676,0.490496,0.00789791,0.0418721,0.466546,0.287386,0.505737,0.170301,0.391998,0.74251,0.00447977,0.387905,0.922853,0.0907427,0.0659929,0.693865,0.649738,0.606568,0.423875,0.86425,0.0749692,0.488537,0.923708,0.181144,0.285934,0.813622,0.328591,0.082549,0.187632,0.314201,0.207596,0.0056932,0.0962993,0.553308,0.831238,0.244141,0.665277,0.33972,0.117909,0.292172,0.73302,0.648683,0.887792,0.849884,0.613362,0.171683,0.75303,0.679682,0.113743,0.174135,0.535572,0.569835,0.704535,0.0292885,0.432386,0.765899,0.778264,0.257045,0.0762897,0.742495,0.298867,0.568195,0.265917,0.146243,0.949637,0.853299,0.260794,0.103257,0.896437,0.155412,0.904811,0.562652,0.807155,0.695436,0.972763,0.214702,0.200647,0.480043,0.594885,0.0373789,0.760095,0.155494,0.165958,0.57162,0.0285752,0.0431502,0.964884,0.468606,0.45561,0.913843,0.252907,0.684947,0.289698,0.178072,0.203394,0.604583,0.649628,0.511621,0.321108,0.452359,0.855518,0.660001,0.678639,0.616338,0.466624,0.817325,0.338319,0.0145044,0.154363,0.401353,0.794526,0.0557126,0.29837,0.577433,0.526237,0.13159,0.713328,0.0424081,0.12252,0.270814,0.0320879,0.876341,0.0389661,0.97006,0.850464,0.530249,0.377336,0.318664,0.724898,0.870459,0.265562,0.471425,0.693918,0.539398,0.716369,0.487702,0.0634667,0.698699,0.753352,0.304799,0.188788,0.567409,0.177345,0.722676,0.132532,0.870258,0.326498,0.310771,0.0776465,0.996165,0.670201,0.598936,0.638804,0.392012,0.476525,0.606851,0.200999,0.77048,0.00478655,0.190533,0.950785,0.444698,0.0417951,0.115455,0.787153,0.364496,0.942822,0.34696,0.862396,0.581798,0.373646,0.667223,0.496995,0.716199,0.119671,0.840845,0.049575,0.271168,0.943816,0.0169326,0.873139,0.594388,0.308157,0.363666,0.531734,0.732921,0.783889,0.521191,0.42177,0.163879,0.597535,0.987272,0.108952,0.928228,0.382934,0.131875,0.190435,0.57069,0.418562,0.848988,0.621339,0.910963,0.0813573,0.978598,0.433721,0.849439,0.164877,0.969491,0.257357,0.510431,0.628656,0.572497,0.427467,0.992627,0.221745,0.588502,0.222669,0.0519622,0.819379,0.836567,0.0697232,0.167084,0.6883,0.969968,0.317171,0.138712,0.215126,0.85003,0.678035,0.280876,0.409267,0.82928,0.00494039,0.141596,0.935696,0.489705,0.202399,0.45572,0.29261,0.932158,0.136281,0.428073,0.0750891,0.604231,0.0826221,0.336977,0.731736,0.129691,0.139954,0.163833,0.769643,0.481874,0.952909,0.0017547,0.593885,0.159217,0.61925,0.466246,0.345178,0.969475,0.243237,0.10465,0.932054,0.300412,0.999636,0.275473,0.0238114,0.367431,0.59323,0.0934289,0.18285,0.93572,0.725784,0.585942,0.0179859,0.289884,0.115135,0.200975,0.971128,0.333488,0.0256373,0.792235,0.720652,0.532449,0.266192,0.892663,0.982185,0.942743,0.0349605,0.917344,0.0313448,0.238262,0.986474,0.23672,0.447765,0.311167,0.604656,0.238719,0.866554,0.225977,0.858221,0.82708,0.891638,0.995723,0.613502,0.133325,0.363639,0.291477,0.68927,0.588082,0.820028,0.997288,0.722821,0.346803,0.675347,0.800417,0.193433,0.942859,0.847849,0.707918,0.109845,0.723601,0.268725,0.773296,0.566842,0.640036,0.1862,0.15798,0.204587,0.23969,0.635292,0.0490173,0.427334,0.289411,0.414575,0.41348,0.339706,0.69629,0.360007,0.477616,0.550237,0.945809,0.67592,0.0452883,0.849114,0.560035,0.303748,0.578918,0.833288,0.310833,0.453144,0.735227,0.803284,0.0581041,0.116628,0.53395,0.195801,0.0901989,0.934991,0.928496,0.746819,0.923618,0.159301,0.944217,0.604037,0.790291,0.960569,0.951504,0.894837,0.462304,0.034938,0.936349,0.838435,0.457999,0.785734,0.323576,0.0964625,0.0898724,0.147684,0.739629,0.202319,0.555193,0.97201,0.675595,0.533315,0.537729,0.495357,0.0887493,0.69002,0.060538,0.8937,0.400998,0.664428,0.568181,0.509453,0.10073,0.969851,0.994632,0.849798,0.200105,0.782781,0.897612,0.559585,0.37658,0.975316,0.316617,0.858076,0.851462,0.568336,0.536915,0.84825,0.384143,0.737199,0.9865,0.298513,0.234109,0.884843,0.592107,0.0903055,0.72183,0.468618,0.238844,0.489406,0.800565,0.425401,0.992867,0.209752,0.830525,0.231246,0.907968,0.557272,0.161792,0.621129,0.282704,0.626975,0.99024,0.221771,0.281973,0.749311,0.635279,0.904504,0.850471,0.237613,0.662874,0.446661,0.917653,0.850732,0.131729,0.957569,0.24198,0.0824068,0.237688,0.367198,0.691244,0.221245,0.911587,0.268855,0.360596,0.852564,0.660881,0.800683,0.230624,0.681084,0.244872,0.5719,0.567177,0.0408841,0.844982,0.621168,0.543484,0.330169,0.527771,0.815237,0.180023,0.512236,0.487014,0.834045,0.275997,0.361084,0.119975,0.0362077,0.809118,0.481501,0.178446,0.285457,0.00149864,0.874962,0.0414431,0.777897,0.086506,0.118514,0.753413,0.33377,0.278106,0.664137,0.828638,0.265957,0.00161791,0.00879592,0.0389791,0.0756939,0.140086,0.380246,0.387886,0.357387,0.634385,0.466984,0.505184,0.886542,0.189154,0.830497,0.24425,0.342448,0.324255,0.161112,0.29982,0.816684,0.0317309,0.717061,0.205252,0.800171,0.36707,0.556559,0.301531,0.518807,0.0603477,0.992768,0.0248788,0.525784,0.196594,0.427234,0.656699,0.744129,0.914746,0.502011,0.716864,0.483908,0.566721,0.303173,0.598191,0.345366,0.573511,0.554195,0.156614,0.645374,0.600841,0.964436,0.251522,0.81198,0.124398,0.779121,0.576071,0.265593,0.0793132,0.223208,0.151923,0.85174,0.11519,0.684681,0.820865,0.564,0.166636,0.914871,0.00460494,0.350062,0.467474,0.966515,0.236349,0.875608,0.293503,0.326199,0.235758,0.23949,0.567075,0.360937,0.555716,0.93856,0.417987,0.934688,0.501324,0.845056,0.927768,0.989536,0.815417,0.00219595,0.0313922,0.467553,0.961469,0.451794,0.561516,0.212685,0.179733,0.462224,0.439964,0.279287,0.120192,0.944393,0.154583,0.797221,0.965861,0.284687,0.371043,0.644301,0.390207,0.132039,0.591588,|0.722917,0.691783,0.0225987,0.689117,0.781541,0.886227,0.182276,0.0198453,0.431227,0.873624,0.913589,0.331634,0.58025,0.0522825,0.23031,0.385283,0.154312,0.589786,0.681844,0.241614,0.0419111,0.510184,0.940231,0.59154,0.589619,0.188581,0.901365,0.463834,0.782793,0.920764,0.198162,0.192886,0.461759,0.242781,0.227942,0.648169,0.18632,0.0372491,0.771961,0.39491,0.574069,0.396961,0.69425,0.886725,0.241857,0.39893,0.542664,0.755752,0.696188,0.121066,0.101529,0.499992,0.258211,0.3661,0.28755,0.659684,0.839548,0.746703,0.288148,0.577312,0.81567,0.551723,0.183728,0.319044,0.973578,0.197026,0.543073,0.251904,0.465927,0.709888,0.238009,0.954066,0.582968,0.74854,0.433477,0.340809,0.862288,0.935216,0.189501,0.739443,0.833562,0.404648,0.672413,0.681147,0.148131,0.331169,0.955506,0.800805,0.242172,0.45404,0.806464,0.517121,0.128556,0.984845,0.84176,0.134859,0.509756,0.541521,0.527888,0.675032,0.60374,0.063016,0.270291,0.0808004,0.0783641,0.920194,0.570526,0.777417,0.455205,0.936438,0.451895,0.978083,0.524692,0.319636,0.2725,0.460216,0.551176,0.0666181,0.938525,0.0117711,0.68872,0.77884,0.155498,0.369442,0.957649,0.0659137,0.255051,0.128755,0.554137,0.260836,0.727153,0.887674,0.948992,0.8982,0.194052,0.955113,0.00105572,0.687211,0.212252,0.320313,0.286464,0.249392,0.723866,0.706288,0.966337,0.721525,0.665896,0.68811,0.0528882,0.134512,0.580367,0.0321448,0.581605,0.185782,0.025079,0.139416,0.365247,0.419499,0.0348995,0.566466,0.131073,0.996441,0.4008,0.670466,0.0847006,0.939744,0.284476,0.0788199,0.999267,0.871572,0.721231,0.470595,0.740229,0.0713089,0.122188,0.0916034,0.879268,0.19734,0.723584,0.0122318,0.924972,0.875303,0.773425,0.576992,0.362213,0.238596,0.22375,0.733048,0.260114,0.714897,0.272209,0.835806,0.190811,0.0583565,0.736557,0.0897957,0.132256,0.0329125,0.667347,0.203248,0.71921,0.999576,0.243045,0.703356,0.341875,0.347777,0.898709,0.362512,0.827089,0.625243,0.574863,0.662933,0.911525,0.489888,0.771652,0.614695,0.66654,0.499113,0.234087,0.4254,0.820704,0.316446,0.538885,0.604812,0.537821,0.437231,0.187442,0.188536,0.924722,0.292788,0.676346,0.872218,0.571276,0.399449,0.863804,0.991846,0.869629,0.296054,0.193694,0.207314,0.294084,0.652696,0.938366,0.25519,0.714913,0.483421,0.381118,0.76912,0.346804,0.310611,0.820503,0.622431,0.549889,0.892588,0.517788,0.703358,0.618479,0.343366,0.471777,0.566908,0.54594,0.648823,0.181415,0.825019,0.763119,0.586506,0.491361,0.0802056,0.69342,0.999208,0.283226,0.80465,0.737133,0.921542,0.149175,0.219182,0.288362,0.432647,0.0981718,0.592848,0.122228,0.151134,0.586239,0.675375,0.196722,0.465584,0.832723,0.861338,0.714609,0.764602,0.273728,0.900641,0.509037,0.00700712,0.741054,0.835757,0.909229,0.0824996,0.426759,0.940209,0.800183,0.317609,0.542276,0.201396,0.0920638,0.91676,0.179398,0.0602907,0.198654,0.181998,0.72313,0.542438,0.91264,0.124199,0.726665,0.170842,0.116523,0.213093,0.985334,0.936346,0.165285,0.00168192,0.82396,0.122279,0.635065,0.153125,0.473776,0.0766417,0.170657,0.16923,0.0039317,0.502835,0.803418,0.316309,0.388115,0.184219,0.549269,0.759277,0.373669,0.426016,0.606488,0.370685,0.911967,0.209996,0.240529,0.251753,0.549334,0.6145,0.861721,0.443062,0.678976,0.533761,0.664761,0.927512,0.979488,0.640259,0.399598,0.965515,0.495235,0.252549,0.245063,0.0826418,0.501433,0.329498,0.6096,0.64092,0.815217,0.806139,0.944991,0.778219,0.537448,0.250496,0.0818229,0.529048,0.184378,0.297878,0.809244,0.210768,0.883681,0.520466,0.389615,0.792927,0.0127305,0.597605,0.0350299,0.799813,0.431886,0.633703,0.0668458,0.222262,0.844624,0.164056,0.219091,0.868939,0.138547,0.52069,0.540581,0.191212,0.479226,0.37391,0.584815,0.101348,0.3086,0.389818,0.945394,0.455609,0.378122,0.630971,0.606789,0.706289,0.409185,0.214181,0.395645,0.315047,0.993819,0.893024,0.578777,0.788684,0.232648,0.632588,0.927382,0.226912,0.999249,0.21835,0.528939,0.723877,0.513138,0.842875,0.574329,0.118778,0.830033,0.624326,0.479958,0.414106,0.356484,0.678304,0.35921,0.949646,0.544448,0.667577,0.0350496,0.372309,0.309185,0.0435612,0.0822371,0.170589,0.211537,0.124341,0.71469,0.471258,0.0699198,0.482781,0.676323,0.186227,0.722597,0.676816,0.843525,0.447712,0.36893,0.430953,0.633791,0.157835,0.322633,0.0930307,0.273447,0.630893,0.0603103,0.0817093,0.543802,0.511636,0.452348,0.167874,0.840356,0.876564,0.736545,0.626454,0.336804,0.50242,0.120121,0.402667,0.800093,0.677592,0.0475501,0.406113,0.0193315,0.0911369,0.953499,0.978542,0.640504,0.937266,0.984029,0.43967,0.86538,0.229129,0.352681,0.20033,0.0232331,0.594205,0.615773,0.0224764,0.0314525,0.0469925,0.737645,0.225252,0.0477247,0.518592,0.836904,0.124404,0.784717,0.727874,0.0519723,0.621952,0.818272,0.8138,0.299218,0.99061,0.749468,0.961596,0.0296746,0.695959,0.0310938,0.202358,0.126015,0.457003,0.108933,0.0221722,0.752886,0.712044,0.50327,0.0397796,0.992591,0.249586,0.26707,0.617749,0.780948,0.631853,0.263846,0.689408,0.0842757,0.554005,0.260183,0.305951,0.634457,0.458113,0.927022,0.0306947,0.950359,0.783561,0.438849,0.225801,0.222536,0.193381,0.211048,0.990814,0.31979,0.714453,0.68073,0.900423,0.815691,0.628983,0.885548,0.101943,0.143413,0.596363,0.647153,0.674282,0.873905,0.460964,0.806773,0.656883,0.550212,0.500064,0.277935,0.842504,0.895218,0.98095,0.101642,0.368636,0.450027,0.752853,0.406056,0.0278655,0.305727,0.179697,0.486072,0.331689,0.864939,0.445467,0.908865,0.0518414,0.125,0.551418,0.484748,0.876039,0.588805,0.663134,0.0511705,0.959674,0.233201,0.16125,0.730334,0.122156,0.0518137,0.239222,0.947129,0.912621,0.935401,0.400347,0.835774,0.875882,0.966728,0.801196,0.383197,0.0645227,0.995863,0.981601,0.676037,0.590296,0.575893,0.657396,0.189448,0.553612,0.517611,0.228898,0.976478,0.18304,0.933773,0.614469,0.964309,0.744261,0.336561,0.225134,0.958417,0.207463,0.135368,0.730181,0.0640769,0.858329,0.00651211,0.33395,0.779629,0.176337,0.664808,0.55384,0.261876,0.881766,0.161067,0.416631,0.211781,0.373034,0.404485,0.860497,0.460803,0.814873,0.0315821,0.164966,0.0706811,0.623156,0.104321,0.997333,0.230473,0.45772,0.181155,0.991532,0.460746,0.0598357,0.181436,0.259059,0.969572,0.825593,0.171684,0.584462,0.901578,0.824509,0.0800812,0.825922,0.778237,0.962204,0.361297,0.409043,0.249598,0.381315,0.970729,0.218649,0.423899,0.48281,0.365031,0.220988,0.850996,0.356881,0.559187,0.895993,0.0105034,0.730864,0.559605,0.0726658,0.503635,0.212914,0.692016,0.246359,0.744957,0.968907,0.0842782,0.420772,0.072721,0.892977,0.0704889,0.208267,0.748814,0.518979,0.854335,0.0727881,0.681,0.902078,0.0119417,0.154924,0.43901,0.442999,0.387558,0.402522,0.717992,0.791793,0.358914,0.498336,0.708091,0.604534,0.517029,0.33903,0.663035,0.361399,0.164038,0.179556,0.989296,0.627908,0.98054,0.464562,0.0546399,0.781951,0.268722,0.624855,0.600736,0.743125,0.708379,0.729304,0.811036,0.937321,0.695437,0.509892,0.206369,0.329555,0.992677,0.461361,0.774335,0.265437,0.646793,0.889221,0.350915,0.996936,0.618435,0.999547,0.312495,0.300682,0.53139,0.822469,0.84948,0.813999,0.209625,0.669073,0.520933,0.952932,0.607267,0.53702,0.226255,0.912406,0.0641034,0.757889,0.653783,0.365286,0.320834,0.663836,0.716788,0.744239,0.2468,0.0347784,0.892566,0.278201,0.991119,0.386675,0.363022,0.220026,0.985863,0.876684,0.365934,0.477848,0.317829,0.811052,0.675653,0.738085,0.817959,0.682554,0.102809,0.22526,0.592758,0.0455508,0.694717,0.976455,0.751196,0.49094,0.60121,0.472655,0.203869,0.770377,0.485072,0.712725,0.0910052,0.938629,0.711787,0.643896,0.910399,0.70579,0.143698,0.854293,0.0987367,0.278374,0.0897778,0.994986,0.404446,0.531846,0.660763,0.218895,0.785522,0.798246,0.335158,0.845838,0.924408,0.535264,0.84289,0.443169,0.829752,0.53696,0.527555,0.536914,0.157195,0.272535,0.740656,0.417807,0.554348,0.525793,0.515419,0.326834,0.887143,0.174217,0.0815702,0.346262,0.437856,0.592717,0.664082,0.934879,0.680263,0.724255,0.160343,0.781926,0.977519,0.866309,0.975642,0.42475,0.933202,0.332477,0.376766,0.646329,0.545528,0.289445,0.815723,0.429318,0.197614,0.855504,0.768261,0.838911,0.3423,0.267085,0.621698,0.720683,0.209557,0.993778,0.816418,0.100414,0.53123,0.326366,0.950196,0.791779,0.627723,0.130029,0.389058,0.316374,0.878363,0.941979,0.972239,0.141976,0.32254,0.174414,0.474941,0.838633,0.441473,0.737363,0.366038,0.993532,0.990958,0.985994,0.978529,0.870909,0.998948,0.824499,0.258529,0.386979,0.644466,0.874039,0.282665,0.128913,0.671544,0.844736,0.605944,0.145808,0.494747,0.600674,0.155487,0.606407,0.171365,0.424509,0.223428,0.681807,0.348962,0.271795,0.322566,0.639642,0.461944,0.884781,0.155545,0.971017,0.0432999,0.0851931,0.475123,0.802059,0.655466,0.598213,0.720917,0.488842,0.726231,0.561729,0.859478,0.592999,0.635896,0.620491,0.422782,0.474165,0.897798,0.672552,0.696764,0.45326,0.300837,0.831363,0.373566,0.034487,0.138106,0.582271,0.358363,0.208365,0.680825,0.848201,0.167388,0.15195,0.545486,0.527183,0.687297,0.597311,0.62149,0.479669,0.061596,0.630531,0.419741,0.370462,0.0139267,0.256135,0.0978665,0.331507,0.0761643,0.734706,0.590606,0.833011,0.272842,0.839794,0.542857,0.498049,0.673139,0.0601304,0.835768,0.562464,0.330305,0.51915,0.964332,0.383345,|0.442019,0.958902,0.660433,0.331589,0.0889215,0.618385,0.679551,0.153753,0.921271,0.57777,0.581277,0.701023,0.273956,0.762331,0.102152,0.953256,0.372254,0.09446,0.292385,0.399574,0.332293,0.187103,0.512918,0.304273,0.704695,0.0343459,0.785471,0.122008,0.369008,0.421554,0.624328,0.579362,0.390584,0.7822,0.911211,0.591552,0.533239,0.980885,0.410949,0.575708,0.310629,0.379254,0.161404,0.674167,0.838642,0.693235,0.639922,0.754908,0.398712,0.571027,0.522807,0.310134,0.650478,0.59869,0.89592,0.957216,0.419559,0.599969,0.0903314,0.175247,0.713839,0.133741,0.376548,0.497262,0.378223,0.972435,0.469097,0.069794,0.601824,0.653245,0.542857,0.934339,0.965864,0.630856,0.504295,0.214212,0.055768,0.20756,0.0691419,0.283012,0.241342,0.621634,0.340695,0.479398,0.0999321,0.305785,0.214846,0.250658,0.832205,0.566898,0.116431,0.984684,0.0183212,0.0547308,0.553006,0.918414,0.444674,0.401938,0.31925,0.936119,0.779913,0.263868,0.6736,0.932188,0.137815,0.321128,0.596163,0.829046,0.830051,0.933817,0.681523,0.326218,0.525528,0.315185,0.299262,0.342651,0.397106,0.375559,0.210483,0.898106,0.23965,0.990691,0.649806,0.998368,0.863819,0.649135,0.755118,0.774206,0.450606,0.300023,0.48642,0.598813,0.418062,0.125171,0.775206,0.560122,0.0533906,0.571357,0.401916,0.09372,0.205159,0.925352,0.0802659,0.926221,0.560704,0.84433,0.0593871,0.433617,0.802371,0.940266,0.505072,0.117583,0.379925,0.945615,0.147016,0.255952,0.772409,0.114602,0.608744,0.515501,0.419493,0.106916,0.465227,0.666098,0.408062,0.40762,0.975509,0.259492,0.801158,0.552939,0.814895,0.119789,0.575867,0.983831,0.626274,0.00900036,0.483222,0.992428,0.94033,0.0114778,0.313476,0.388483,0.335491,0.800044,0.579202,0.208113,0.3768,0.612751,0.128262,0.379085,0.591215,0.00607353,0.792301,0.460278,0.250084,0.302564,0.50953,0.223807,0.658911,0.0528126,0.38566,0.597313,0.283548,0.232446,0.304223,0.372573,0.507514,0.71058,0.773897,0.242628,0.406378,0.249274,0.904876,0.983962,0.622309,0.352718,0.163526,0.909689,0.116079,0.13698,0.357606,0.329554,0.300161,0.317422,0.963191,0.64273,0.228388,0.25232,0.767256,0.376265,0.494729,0.357958,0.993113,0.39791,0.959103,0.524282,0.0488249,0.846422,0.0812779,0.841825,0.756554,0.571696,0.211859,0.0195754,0.31938,0.081467,0.99603,0.492823,0.0801646,0.333143,0.190722,0.980668,0.0112697,0.677856,0.453444,0.477536,0.482797,0.206595,0.582859,0.356045,0.350309,0.840935,0.655771,0.852621,0.809181,0.0726383,0.570404,0.361187,0.845227,0.671036,0.967156,0.97038,0.232376,0.661423,0.0241644,0.516517,0.156632,0.10802,0.265961,0.166981,0.0663378,0.70045,0.436125,0.48948,0.756526,0.748446,0.077082,0.659839,0.948586,0.436351,0.973955,0.345618,0.363535,0.630462,0.54463,0.609031,0.967778,0.969363,0.0756119,0.442985,0.313491,0.675667,0.0201511,0.6839,0.0969759,0.236645,0.182236,0.251817,0.772156,0.270205,0.146123,0.820269,0.448089,0.657856,0.0727707,0.306151,0.156361,0.901199,0.220776,0.960975,0.672227,0.669196,0.935104,0.285523,0.855592,0.898756,0.791065,0.00255877,0.005885,0.375836,0.268504,0.518861,0.377155,0.0648503,0.862255,0.389001,0.13711,0.437501,0.0295811,0.448438,0.991957,0.732328,0.952118,0.488171,0.790292,0.624852,0.968513,0.460713,0.0215881,0.096765,0.600029,0.100581,0.440452,0.183518,0.971671,0.604081,0.690843,0.889857,0.670643,0.0332156,0.133728,0.811211,0.116722,0.540093,0.231314,0.964249,0.254867,0.697226,0.316669,0.987661,0.85122,0.62065,0.15911,0.920672,0.233892,0.246423,0.36153,0.112492,0.426413,0.140137,0.392533,0.0682673,0.54939,0.94789,0.255506,0.318052,0.0492417,0.500085,0.628998,0.671847,0.381486,0.085552,0.186358,0.452822,0.101454,0.216902,0.814838,0.618251,0.327034,0.887595,0.169839,0.196339,0.0218452,0.716411,0.378417,0.558666,0.473433,0.823611,0.860417,0.904505,0.976753,0.204972,0.493618,0.898797,0.652897,0.00596082,0.719905,0.455342,0.103579,0.0548466,0.210807,0.520287,0.552411,0.710805,0.828576,0.576769,0.784978,0.0436107,0.9149,0.345196,0.815983,0.344685,0.703766,0.855827,0.39093,0.11384,0.949473,0.307326,0.171631,0.0485226,0.771857,0.625331,0.347145,0.261414,0.529804,0.287025,0.32953,0.448249,0.61934,0.0684913,0.887767,0.521937,0.731112,0.439501,0.496264,0.123875,0.289872,0.46968,0.421924,0.46355,0.913051,0.70092,0.221514,0.798421,0.248986,0.77697,0.529608,0.86953,0.0163403,0.676244,0.509363,0.798693,0.874331,0.251248,0.645134,0.863624,0.640474,0.394805,0.810393,0.389177,0.473411,0.418536,0.215588,0.998356,0.400106,0.857921,0.154755,0.490042,0.827779,0.52091,0.18255,0.523313,0.419145,0.796253,0.321664,0.309757,0.00175238,0.633625,0.0661173,0.815669,0.053393,0.0706253,0.260104,0.201909,0.565645,0.897842,0.670817,0.205215,0.107713,0.0853329,0.906047,0.904667,0.995726,0.109861,0.627699,0.439953,0.214442,0.63271,0.601084,0.997535,0.116125,0.0682914,0.680927,0.162818,0.939539,0.527505,0.849168,0.891296,0.624987,0.843871,0.241684,0.167652,0.371609,0.915965,0.156102,0.287017,0.52375,0.468845,0.756734,0.235384,0.80469,0.490582,0.0619585,0.79071,0.528751,0.720428,0.940602,0.786484,0.784016,0.711006,0.139758,0.0625657,0.187977,0.962336,0.589478,0.749987,0.59253,0.821963,0.0304157,0.407297,0.22536,0.887517,0.806394,0.773469,0.740913,0.582406,0.550332,0.49983,0.565544,0.965642,0.990094,0.727866,0.17758,0.948076,0.448015,0.871451,0.154513,0.418517,0.618422,0.0660992,0.736382,0.909617,0.755766,0.538367,0.198276,0.324613,0.410718,0.485694,0.910592,0.450581,0.19542,0.0144856,0.198941,0.387622,0.718041,0.550535,0.745809,0.712784,0.820063,0.454889,0.808011,0.321502,0.530607,0.569731,0.74511,0.64317,0.815287,0.250278,0.618476,0.548115,0.895862,0.81285,0.147595,0.428559,0.297465,0.0873529,0.651062,0.440948,0.889997,0.687577,0.426925,0.362042,0.158235,0.285041,0.34398,0.218298,0.0657972,0.0723972,0.933185,0.748914,0.645322,0.762229,0.104208,0.702771,0.122361,0.451675,0.181858,0.94395,0.032537,0.478444,0.759491,0.84338,0.583372,0.325609,0.0524186,0.752371,0.914022,0.474425,0.415426,0.872443,0.240882,0.785664,0.00773412,0.584648,0.799068,0.49425,0.047502,0.866202,0.356958,0.860312,0.951193,0.507476,0.180099,0.779241,0.0981459,0.328816,0.0519171,0.842019,0.13753,0.644196,0.00246501,0.717624,0.0196806,0.166101,0.680274,0.679948,0.865617,0.800795,0.864901,0.526235,0.528857,0.167002,0.30106,0.998559,0.0519205,0.489568,0.62283,0.779539,0.822999,0.892337,0.932371,0.578618,0.0442951,0.65354,0.387445,0.429175,0.942339,0.558559,0.396685,0.223898,0.705027,0.0884563,0.11397,0.863199,0.0968698,0.139868,0.562233,0.445755,0.857187,0.187868,0.622843,0.763683,0.166306,0.369594,0.0583475,0.656944,0.573691,0.677664,0.923724,0.294794,0.206001,0.644642,0.00863224,0.408689,0.756715,0.393381,0.806467,0.283008,0.595399,0.60603,0.404272,0.756312,0.583935,0.973023,0.575681,0.966493,0.345153,0.50159,0.0438491,0.934886,0.870251,0.538217,0.806615,0.31314,0.114077,0.4378,0.824351,0.534661,0.578898,0.263829,0.128294,0.460146,0.676349,0.407075,0.906313,0.944056,0.036635,0.583029,0.180013,0.694688,0.515918,0.585469,0.305857,0.559476,0.317469,0.585984,0.698548,0.313905,0.745037,0.0515497,0.274875,0.869154,0.748568,0.98773,0.180764,0.208675,0.440015,0.822772,0.882688,0.0914314,0.58834,0.624204,0.287389,0.73289,0.846359,0.0169479,0.953863,0.370769,0.866535,0.45518,0.255859,0.14332,0.978583,0.251017,0.481122,0.807458,0.721081,0.56776,0.0596489,0.668542,0.645217,0.864092,0.941837,0.47026,0.0776413,0.892242,0.00875181,0.389069,0.428355,0.669354,0.594931,0.354554,0.953379,0.914797,0.808474,0.591121,0.214092,0.736241,0.686208,0.741908,0.785969,0.261421,0.844244,0.790924,0.214584,0.0627719,0.554737,0.291965,0.193771,0.822261,0.391191,0.131675,0.512629,0.476912,0.641046,0.155979,0.807848,0.619249,0.904073,0.513792,0.781123,0.0809226,0.0572388,0.385499,0.729037,0.45477,0.0817224,0.393314,0.389514,0.193352,0.228417,0.527296,0.922057,0.259385,0.396684,0.592328,0.0460625,0.993295,0.441044,0.224546,0.686674,0.695109,0.533088,0.379913,0.534707,0.83097,0.475647,0.28518,0.342808,0.163969,0.214181,0.787939,0.464712,0.983383,0.652093,0.646322,0.89668,0.488719,0.20101,0.596814,0.0289257,0.680925,0.40027,0.845725,0.455624,0.466765,0.822949,0.292713,0.659244,0.512089,0.112926,0.142762,0.73816,0.819002,0.0421818,0.513782,0.906316,0.837463,0.587683,0.724262,0.554081,0.314043,0.277076,0.970016,0.374627,0.882571,0.124981,0.198397,0.898805,0.543094,0.383681,0.674003,0.208626,0.961584,0.956137,0.280107,0.736143,0.725124,0.540053,0.866484,0.253813,0.654036,0.305147,0.897625,0.114167,0.0219055,0.379068,0.856091,0.378165,0.429676,0.900519,0.663537,0.0776384,0.856258,0.271897,0.504255,0.756693,0.331676,0.413257,0.512295,0.286409,0.735918,0.919512,0.627562,0.60528,0.707391,0.0793161,0.116919,0.485829,0.0138542,0.924023,0.740879,0.453295,0.489914,0.0749658,0.469034,0.685817,0.253033,0.255407,0.430921,0.842509,0.521279,0.490033,0.172164,0.0778599,0.781225,0.398896,0.930421,0.920608,0.0520064,0.487805,0.598917,0.821334,0.909466,0.872883,0.17243,0.887379,0.302858,0.36914,0.356349,0.945098,0.282594,0.420274,0.248831,0.81123,0.426821,0.0187516,0.86905,0.939815,0.348155,0.6816,0.434473,0.8572,0.856942,0.908828,0.350821,0.290425,0.58573,0.612812,0.256418,|0.939083,0.482116,0.107004,0.990178,0.799477,0.640983,0.29696,0.424446,0.362766,0.115043,0.716752,0.654295,0.0748916,0.408045,0.229119,0.51908,0.250546,0.15712,0.646555,0.15371,0.662816,0.638739,0.51882,0.888257,0.721353,0.466874,0.376402,0.784578,0.974679,0.0792382,0.351941,0.780917,0.279087,0.260654,0.172581,0.569562,0.50813,0.390036,0.42089,0.976938,0.352055,0.658482,0.502128,0.453981,0.80533,0.621696,0.924142,0.897189,0.947315,0.762863,0.401765,0.521894,0.198262,0.992483,0.57467,0.764162,0.635864,0.740402,0.740337,0.139967,0.503963,0.272107,0.600128,0.841406,0.883038,0.109209,0.985586,0.154849,0.478242,0.966158,0.766485,0.447271,0.650374,0.108886,0.380217,0.550199,0.0938193,0.844402,0.883127,0.711354,0.473249,0.807888,0.23587,0.0140101,0.0483189,0.432568,0.288677,0.154278,0.202414,0.0261958,0.357805,0.206372,0.099967,0.308919,0.279353,0.383061,0.431932,0.480187,0.745143,0.139003,0.948824,0.826798,0.192132,0.370052,0.391174,0.634858,0.853846,0.535379,0.331317,0.317625,0.427171,0.471486,0.167088,0.261025,0.330976,0.819741,0.793964,0.977219,0.61531,0.931253,0.442343,0.956897,0.515879,0.694476,0.827356,0.589544,0.144434,0.240628,0.74141,0.012655,0.348076,0.418279,0.968709,0.224708,0.0794643,0.193175,0.834306,0.520505,0.0882158,0.437967,0.28071,0.383062,0.567534,0.110995,0.140928,0.569339,0.135117,0.822013,0.651262,0.507117,0.842637,0.782305,0.165422,0.807296,0.228057,0.918708,0.341441,0.524649,0.156256,0.663115,0.499769,0.616181,0.52615,0.838137,0.569768,0.341198,0.306607,0.0785355,0.81718,0.770793,0.501389,0.764967,0.449452,0.305087,0.142633,0.594763,0.441519,0.847243,0.0628343,0.74638,0.571744,0.773751,0.432268,0.967076,0.757754,0.438304,0.911369,0.370072,0.487353,0.34755,0.199006,0.937316,0.709571,0.716435,0.796069,0.125024,0.505924,0.567871,0.513084,0.835781,0.916517,0.744196,0.760173,0.79324,0.823716,0.014086,0.130525,0.692504,0.32352,0.67786,0.468765,0.900316,0.729155,0.734117,0.931254,0.410589,0.205034,0.669667,0.774832,0.790697,0.535326,0.571582,0.230015,0.345884,0.308312,0.198652,0.127494,0.579914,0.547309,0.416679,0.997815,0.215223,0.181271,0.804424,0.781739,0.62692,0.074077,0.323296,0.159787,0.526665,0.765102,0.0483247,0.964585,0.589343,0.0592763,0.797641,0.84891,0.474471,0.599635,0.0681495,0.850872,0.0966882,0.762201,0.155909,0.726202,0.491007,0.591674,0.271746,0.723062,0.0394199,0.843062,0.000921309,0.839049,0.77228,0.665545,0.0289023,0.73562,0.379717,0.0685781,0.043678,0.26242,0.311807,0.0621342,0.166401,0.883187,0.606603,0.397355,0.284378,0.984111,0.267378,0.597856,0.0674117,0.621466,0.695978,0.410677,0.326179,0.339842,0.873153,0.981836,0.982867,0.939896,0.0324613,0.154391,0.0305281,0.114929,0.346171,0.460708,0.874233,0.790644,0.847714,0.297181,0.751911,0.159321,0.284819,0.00524372,0.364267,0.0559981,0.96014,0.00190425,0.708965,0.117843,0.471622,0.084462,0.281674,0.458195,0.434863,0.317583,0.0337858,0.741195,0.506934,0.0513695,0.480009,0.98773,0.815707,0.891965,0.0765827,0.410504,0.178326,0.661757,0.933423,0.253348,0.523805,0.64373,0.429913,0.966395,0.745466,0.285069,0.302496,0.978692,0.541761,0.468295,0.208536,0.490577,0.471987,0.518252,0.971565,0.394562,0.412899,0.318541,0.252836,0.775926,0.185223,0.287254,0.602657,0.397465,0.963961,0.0345959,0.542376,0.539379,0.393039,0.384256,0.973661,0.772258,0.963225,0.222222,0.280373,0.57468,0.115364,0.868843,0.0631667,0.996411,0.286011,0.756309,0.622119,0.0126451,0.770852,0.0228633,0.944566,0.78975,0.796409,0.122483,0.791964,0.0774628,0.310982,0.792629,0.902965,0.695326,0.761635,0.281076,0.869707,0.751685,0.10884,0.0372862,0.683358,0.367558,0.472599,0.0827167,0.756404,0.00650185,0.708405,0.192333,0.11685,0.803475,0.178913,0.974219,0.632934,0.855305,0.843633,0.0831024,0.0952615,0.804257,0.654915,0.670529,0.352112,0.972524,0.476431,0.0634235,0.669276,0.431605,0.470498,0.345128,0.649998,0.163827,0.437685,0.615323,0.656255,0.192868,0.647795,0.753697,0.750806,0.0195187,0.933725,0.315573,0.358977,0.709779,0.739344,0.854393,0.941086,0.925332,0.256335,0.632932,0.644857,0.270646,0.581598,0.276116,0.169387,0.26185,0.466409,0.104774,0.325384,0.00761646,0.0309299,0.0292558,0.883245,0.915434,0.959758,0.270396,0.826353,0.627129,0.441985,0.892695,0.219301,0.687784,0.961168,0.290866,0.379913,0.0928778,0.569791,0.691872,0.302176,0.0458442,0.427176,0.887821,0.623928,0.490812,0.466927,0.808825,0.356326,0.628455,0.468081,0.319948,0.736669,0.31239,0.0862754,0.710075,0.600315,0.570659,0.996877,0.734724,0.162891,0.758182,0.490216,0.23884,0.56724,0.547939,0.378375,0.403814,0.272357,0.557203,0.845254,0.0969825,0.249097,0.648498,0.775324,0.366865,0.137599,0.632908,0.607747,0.241959,0.90108,0.954688,0.662422,0.301922,0.504296,0.153665,0.59289,0.379165,0.989011,0.801305,0.44642,0.39418,0.516742,0.221481,0.634677,0.713452,0.997831,0.402093,0.806985,0.117016,0.691424,0.605142,0.422087,0.883931,0.876453,0.187698,0.023218,0.875169,0.272711,0.252778,0.740901,0.193823,0.478468,0.11213,0.886836,0.897427,0.252569,0.383932,0.0158625,0.158015,0.00816494,0.912454,0.359422,0.131215,0.00294828,0.538951,0.880195,0.607854,0.568977,0.740178,0.206625,0.27675,0.289803,0.396167,0.40826,0.304032,0.233707,0.865778,0.743775,0.464752,0.602331,0.932728,0.622595,0.233785,0.00327027,0.285745,0.622243,0.526598,0.241572,0.421619,0.319385,0.979743,0.458065,0.434201,0.460179,0.962013,0.97558,0.572669,0.135542,0.351548,0.865949,0.149066,0.591097,0.59922,0.270838,0.78738,0.331127,0.898334,0.651863,0.994569,0.363184,0.843187,0.108409,0.677496,0.539879,0.73125,0.333966,0.860026,0.472984,0.12627,0.233493,0.615166,0.737407,0.92371,0.379404,0.607283,0.143525,0.561185,0.695857,0.166642,0.589185,0.658128,0.0350881,0.0851371,0.0657123,0.882967,0.915641,0.0647811,0.262814,0.766059,0.454802,0.296529,0.142466,0.497508,0.774918,0.9315,0.2122,0.591542,0.541868,0.140589,0.0639046,0.857825,0.967582,0.530437,0.245876,0.958161,0.805215,0.178877,0.696103,0.793287,0.0843542,0.736265,0.809193,0.015766,0.751474,0.61078,0.874136,0.0942295,0.028975,0.637784,0.25168,0.0989332,0.592199,0.884564,0.118739,0.817874,0.734738,0.840958,0.909969,0.446904,0.643244,0.981017,0.320588,0.391446,0.393214,0.92132,0.0491555,0.078099,0.67296,0.15474,0.543869,0.395071,0.923366,0.774393,0.988703,0.721249,0.901151,0.0936453,0.608649,0.550097,0.806,0.784686,0.818793,0.0190055,0.995727,0.240533,0.0311382,0.755422,0.886028,0.802343,0.984379,0.837273,0.781991,0.647801,0.565423,0.803044,0.596894,0.61836,0.616617,0.312819,0.00373608,0.500718,0.399884,0.110598,0.435825,0.967382,0.905383,0.336378,0.575744,0.66583,0.493133,0.530345,0.518798,0.980341,0.31992,0.137734,0.251187,0.249308,0.0436702,0.443603,0.0161982,0.651472,0.23023,0.491055,0.766068,0.903691,0.0106094,0.586398,0.328526,0.216657,0.942326,0.728512,0.63474,0.235551,0.758387,0.974142,0.812859,0.370916,0.190063,0.910968,0.793308,0.855539,0.259755,0.739381,0.695579,0.299526,0.439332,0.701707,0.535,0.179922,0.569612,0.318665,0.139746,0.258131,0.750344,0.566435,0.114402,0.565631,0.547248,0.590716,0.994732,0.288781,0.793972,0.262104,0.63549,0.660722,0.926183,0.383298,0.534093,0.699363,0.788426,0.0181679,0.682351,0.668781,0.337743,0.728152,0.513908,0.759921,0.231422,0.769402,0.673996,0.716548,0.828244,0.309123,0.168518,0.65034,0.742108,0.456538,0.461493,0.424708,0.0207887,0.199165,0.821475,0.343968,0.453675,0.139302,0.808917,0.140705,0.301009,0.443205,0.534564,0.615813,0.993693,0.337676,0.305358,0.964068,0.691596,0.884806,0.330683,0.188986,0.487075,0.618549,0.948766,0.650501,0.16378,0.247548,0.905235,0.347596,0.482863,0.503965,0.808962,0.686293,0.875165,0.356104,0.521769,0.132094,0.0770199,0.376797,0.60426,0.970376,0.228784,0.927911,0.577549,0.619338,0.707349,0.894377,0.066204,0.37597,0.512428,0.458773,0.986065,0.815375,0.014167,0.235423,0.202832,0.199974,0.593533,0.735353,0.654083,0.11296,0.813557,0.175222,0.595386,0.891733,0.137311,0.575761,0.601518,0.429992,0.58948,0.32995,0.527744,0.507639,0.775601,0.582793,0.337184,0.179849,0.348703,0.764362,0.641913,0.0127585,0.252474,0.71994,0.499902,0.537836,0.252391,0.653963,0.145105,0.203319,0.434014,0.59015,0.00133932,0.572901,0.56175,0.879351,0.477836,0.653338,0.418432,0.600302,0.115764,0.940077,0.319809,0.306213,0.24738,0.547438,0.491747,0.525508,0.736853,0.29848,0.363869,0.982243,0.322223,0.461734,0.514239,0.783464,0.18094,0.602959,0.117661,0.944523,0.636064,0.48995,0.514737,0.213171,0.23794,0.389914,0.751939,0.677631,0.173398,0.954987,0.0321641,0.0581031,0.412236,0.374686,0.861532,0.497022,0.502677,0.795336,0.863398,0.641782,0.133873,0.270349,0.173032,0.465408,0.301349,0.962591,0.764963,0.534582,0.349468,0.255718,0.696354,0.167034,0.0708936,0.437651,0.00133187,0.655257,0.109932,0.868108,0.0183417,0.583734,0.123922,0.461773,0.056655,0.422467,0.0926333,0.197215,0.203559,0.68404,0.541121,0.657372,0.0498481,0.202631,0.408738,0.270743,0.0500789,0.535969,0.323198,0.176143,0.352347,0.102978,0.713846,0.650218,0.742163,0.326429,0.86459,0.404708,0.0254272,0.708203,0.661431,0.620366,0.709626,0.944489,0.530603,0.443958,0.493019,0.189329,0.709073,0.796186,0.237252,0.34144,0.292691,0.663337,0.237282,|0.882973,0.641921,0.323509,0.13176,0.731749,0.121483,0.228742,0.32924,0.47454,0.632665,0.954016,0.0667017,0.392676,0.755135,0.921151,0.263788,0.798936,0.862406,0.268594,0.602412,0.555844,0.0763144,0.177312,0.246155,0.378355,0.12541,0.618574,0.26501,0.618263,0.0514631,0.078355,0.289583,0.555377,0.410543,0.284297,0.599382,0.90831,0.632287,0.169004,0.415378,0.0768388,0.790255,0.524626,0.946807,0.088274,0.117163,0.377224,0.874245,0.933638,0.975175,0.704092,0.580971,0.26798,0.890311,0.420269,0.888297,0.847942,0.918044,0.23026,0.874701,0.134629,0.823991,0.498273,0.761467,0.43064,0.631047,0.191352,0.55626,0.841356,0.752839,0.801239,0.325751,0.816694,0.144991,0.936815,0.526026,0.41634,0.403539,0.98893,0.719272,0.481844,0.307393,0.223094,0.864764,0.0709484,0.140081,0.548886,0.918611,0.171587,0.867684,0.884877,0.172849,0.659471,0.850821,0.698916,0.241467,0.0565376,0.747714,0.612318,0.720696,0.811283,0.105221,0.836761,0.217973,0.159588,0.106898,0.987719,0.852073,0.0339295,0.0896819,0.722133,0.00772041,0.238965,0.0436944,0.403463,0.744637,0.225527,0.759105,0.369683,0.0870637,0.411327,0.822562,0.358406,0.0708685,0.388174,0.551743,0.116487,0.748895,0.155801,0.140251,0.116338,0.866337,0.818106,0.758294,0.298428,0.642242,0.164336,0.0727275,0.152024,0.814855,0.515902,0.739969,0.313263,0.409984,0.754689,0.703801,0.241733,0.458778,0.842746,0.0271958,0.617972,0.971703,0.450159,0.409591,0.614818,0.439458,0.267991,0.572717,0.540689,0.0422968,0.444993,0.319337,0.374717,0.988229,0.379133,0.856187,0.638884,0.399618,0.452409,0.257063,0.792089,0.614954,0.167201,0.143405,0.122776,0.202018,0.442816,0.923865,0.609883,0.516119,0.836562,0.407584,0.580032,0.598522,0.342517,0.460562,0.639273,0.00137007,0.142131,0.768726,0.194756,0.318283,0.369989,0.0878369,0.304675,0.752592,0.283476,0.941178,0.498656,0.986688,0.767905,0.500502,0.017671,0.33615,0.629294,0.909371,0.0332792,0.527193,0.829634,0.12669,0.180301,0.821943,0.439967,0.509414,0.386399,0.0569665,0.030746,0.679709,0.625405,0.954142,0.211202,0.722189,0.653661,0.361125,0.991234,0.113855,0.161079,0.782948,0.103898,0.318095,0.737043,0.748038,0.831587,0.144962,0.339179,0.599057,0.578512,0.51772,0.451356,0.573361,0.282247,0.198748,0.733391,0.472361,0.470624,0.0738413,0.0436506,0.116484,0.744672,0.340948,0.912384,0.428284,0.539166,0.088796,0.990439,0.360782,0.103933,0.939889,0.432373,0.0889494,0.437547,0.400296,0.0780599,0.134787,0.157618,0.570658,0.118427,0.400494,0.285457,0.196552,0.743935,0.697974,0.354478,0.138767,0.529548,0.348138,0.791184,0.532048,0.368983,0.260772,0.239954,0.0274654,0.469902,0.737274,0.477048,0.573417,0.0357536,0.400185,0.532223,0.763365,0.0283015,0.855619,0.259856,0.514811,0.248655,0.427208,0.0753506,0.790967,0.0565081,0.467669,0.999274,0.327256,0.0302765,0.602955,0.313555,0.623512,0.320827,0.168478,0.672597,0.592513,0.921647,0.310327,0.190476,0.763485,0.174001,0.412524,0.260644,0.482278,0.752779,0.987637,0.225236,0.649252,0.335624,0.0981103,0.53752,0.881465,0.920629,0.811686,0.349955,0.985883,0.0240136,0.203128,0.836225,0.18137,0.556185,0.17606,0.601532,0.25287,0.485036,0.738338,0.496501,0.216948,0.469269,0.136314,0.671655,0.182502,0.190787,0.68699,0.409501,0.770433,0.448663,0.532761,0.646435,0.16874,0.309582,0.367714,0.205483,0.0315751,0.988749,0.368563,0.333979,0.171592,0.39624,0.497144,0.184636,0.629354,0.518406,0.89761,0.778763,0.992603,0.00494754,0.144242,0.414095,0.175382,0.427597,0.433065,0.987455,0.261237,0.638007,0.418215,0.067711,0.183158,0.678409,0.951632,0.190551,0.67418,0.76613,0.151863,0.591557,0.546858,0.214097,0.951382,0.552818,0.0215741,0.108352,0.44131,0.451632,0.410812,0.251241,0.313991,0.340165,0.89007,0.73214,0.429611,0.0571439,0.499054,0.156394,0.810228,0.261212,0.536399,0.403303,0.479568,0.108667,0.824362,0.671714,0.354405,0.825959,0.154804,0.460385,0.138458,0.757752,0.0194734,0.0272407,0.442689,0.372813,0.0778918,0.00953895,0.511127,0.716854,0.899192,0.526236,0.731283,0.81769,0.66565,0.661165,0.242611,0.755757,0.925921,0.971995,0.330073,0.916016,0.948058,0.556134,0.368737,0.931662,0.925449,0.172392,0.458928,0.248412,0.207565,0.00516629,0.0334353,0.333219,0.535112,0.0729727,0.392009,0.265715,0.614866,0.893497,0.610361,0.925484,0.568176,0.0891021,0.131604,0.110225,0.884817,0.0212629,0.595514,0.49164,0.294829,0.538119,0.3879,0.95936,0.28485,0.733414,0.192976,0.284135,0.152152,0.404468,0.955299,0.0053885,0.420926,0.627366,0.73478,0.782616,0.315898,0.733508,0.885572,0.416117,0.282927,0.175993,0.502402,0.691388,0.42148,0.477278,0.052,0.857841,0.744811,0.194415,0.295187,0.253285,0.68602,0.734993,0.192254,0.302753,0.111286,0.0719372,0.973347,0.405812,0.0731909,0.862565,0.501852,0.771641,0.800323,0.715746,0.899918,0.999755,0.847224,0.898537,0.468503,0.36793,0.789868,0.167899,0.476037,0.385117,0.31909,0.813093,0.456236,0.995518,0.519667,0.959282,0.506092,0.773497,0.0157326,0.908322,0.556759,0.595609,0.311955,0.00380802,0.185966,0.288623,0.169407,0.551136,0.641927,0.42178,0.610645,0.440313,0.591165,0.0134768,0.236577,0.790832,0.417154,0.172741,0.965781,0.899218,0.187764,0.989337,0.655203,0.691101,0.982016,0.841554,0.388511,0.387376,0.657061,0.515418,0.0927448,0.334599,0.663862,0.0853465,0.640116,0.461941,0.885741,0.275484,0.00302243,0.270383,0.402496,0.214005,0.931363,0.700496,0.738758,0.595098,0.597226,0.417593,0.449088,0.486838,0.3712,0.86897,0.519805,0.174337,0.951326,0.622465,0.0678962,0.347271,0.0382654,0.806807,0.133011,0.407464,0.16654,0.796549,0.821767,0.34555,0.524895,0.994071,0.493811,0.665287,0.776037,0.572062,0.959695,0.347481,0.564653,0.80088,0.0540524,0.193155,0.182132,0.475156,0.109292,0.710154,0.565315,0.157116,0.266656,0.577724,0.00026089,0.596498,0.56304,0.484865,0.557402,0.958345,0.774447,0.221417,0.608092,0.44371,0.856821,0.712778,0.832136,0.921176,0.813939,0.339397,0.0222814,0.413191,0.099466,0.669347,0.451244,0.0446066,0.812244,0.272995,0.977145,0.634863,0.421948,0.966082,0.277328,0.250581,0.932404,0.680217,0.496287,0.144244,0.599859,0.569375,0.519636,0.145739,0.37414,0.186162,0.627848,0.675135,0.800049,0.597442,0.565695,0.767244,0.278318,0.764689,0.517929,0.281729,0.394599,0.596025,0.711651,0.53598,0.00966901,0.0783288,0.623598,0.345496,0.848145,0.255551,0.843575,0.699845,0.641966,0.948026,0.518338,0.598268,0.912055,0.509375,0.938223,0.735254,0.559425,0.958261,0.0232068,0.937456,0.565199,0.292938,0.997772,0.237617,0.780264,0.781993,0.970612,0.990404,0.104119,0.0369776,0.547973,0.205246,0.616932,0.948164,0.151316,0.99727,0.137234,0.570107,0.415875,0.138888,0.101149,0.703991,0.215633,0.604228,0.459467,0.206833,0.547422,0.237718,0.715245,0.315611,0.0206609,0.221401,0.425627,0.781665,0.930556,0.926338,0.414468,0.185358,0.32168,0.0131157,0.00932628,0.0692165,0.0076167,0.815904,0.593656,0.723448,0.557764,0.113511,0.184713,0.664991,0.977837,0.828349,0.379627,0.0540932,0.31386,0.718087,0.0963913,0.488494,0.742348,0.67603,0.737542,0.124282,0.623624,0.923731,0.482146,0.666278,0.145544,0.428103,0.557048,0.880772,0.926946,0.823955,0.662258,0.0385759,0.211444,0.643832,0.85748,0.0372441,0.84263,0.680379,0.791828,0.948333,0.301435,0.700096,0.375925,0.531369,0.71579,0.626546,0.381676,0.928069,0.640133,0.194741,0.86013,0.271588,0.935462,0.707012,0.901356,0.280222,0.944318,0.871563,0.129507,0.0654215,0.377335,0.0652161,0.200428,0.706539,0.143213,0.569289,0.97298,0.908114,0.117437,0.935644,0.0619988,0.0236548,0.695594,0.56524,0.332753,0.0785051,0.89438,0.758578,0.734446,0.540298,0.36255,0.135504,0.20449,0.612612,0.446583,0.24249,0.961258,0.395908,0.637793,0.156107,0.567248,0.445657,0.144829,0.0698174,0.917006,0.286192,0.95978,0.650503,0.586325,0.543846,0.181222,0.0805308,0.160182,0.394776,0.083187,0.188109,0.840292,0.635769,0.657119,0.0372847,0.814547,0.416749,0.561742,0.89345,0.364635,0.592038,0.378686,0.697601,0.249915,0.885472,0.772162,0.221859,0.187506,0.462309,0.160154,0.334567,0.985264,0.0954382,0.484318,0.209654,0.685998,0.0684834,0.394964,0.0224493,0.799829,0.781449,0.46777,0.106979,0.501661,0.453203,0.885715,0.986248,0.732781,0.335667,0.493618,0.420244,0.521,0.276656,0.444928,0.700162,0.792333,0.611323,0.588925,0.565138,0.181786,0.0575156,0.685176,0.737788,0.813368,0.114754,0.965309,0.0525756,0.00333983,0.945543,0.994636,0.974074,0.359683,0.217005,0.590634,0.360037,0.462426,0.641155,0.0982358,0.400712,0.424414,0.514709,0.201436,0.902144,0.400872,0.00618136,0.811146,0.946263,0.848222,0.0537107,0.60721,0.246248,0.4484,0.844612,0.217223,0.288932,0.840499,0.533952,0.0951862,0.300228,0.205113,0.941366,0.792855,0.481419,0.257308,0.494583,0.187089,0.666493,0.567327,0.844544,0.540322,0.690271,0.165522,0.996999,0.0177526,0.217045,0.38319,0.858433,0.893093,0.0574669,0.581841,0.965812,0.733501,0.0586933,0.186242,0.324412,0.307484,0.686304,0.0188861,0.794844,0.711226,0.896016,0.375485,0.320727,0.693443,0.329814,0.166967,0.585296,0.708899,0.418107,0.368904,0.382401,0.667818,0.332388,0.333907,0.294234,0.860367,0.205815,0.378004,0.558289,0.226984,0.393944,0.0935788,0.890021,0.0836009,0.293805,0.0139474,0.297345,0.666885,0.968949,0.307796,0.713895,0.0738118,0.88985,0.34475,0.631912,0.487376,0.348456,0.424202,|0.620072,0.585425,0.0574852,0.419449,0.371878,0.383111,0.61902,0.42109,0.497563,0.564417,0.445824,0.0916725,0.231495,0.951972,0.264857,0.179496,0.909003,0.00236678,0.158432,0.761657,0.667837,0.927282,0.358515,0.833685,0.708895,0.116713,0.106258,0.237079,0.551479,0.81444,0.464639,0.358053,0.103954,0.100702,0.863686,0.197091,0.494082,0.158811,0.0836472,0.913531,0.0713698,0.0186593,0.780453,0.0638474,0.132712,0.0985873,0.426598,0.680022,0.122712,0.182518,0.814978,0.435497,0.232707,0.300549,0.925877,0.0777506,0.724715,0.764522,0.812612,0.716769,0.642648,0.705937,0.837765,0.752374,0.840409,0.248624,0.273382,0.370619,0.955103,0.697781,0.472646,0.924242,0.784561,0.484104,0.653582,0.369756,0.457395,0.402928,0.733849,0.902945,0.220946,0.870913,0.425095,0.675901,0.310333,0.954997,0.634348,0.351532,0.634648,0.125166,0.722846,0.263869,0.917379,0.789663,0.744281,0.988025,0.909228,0.346713,0.581729,0.865633,0.49959,0.274894,0.361502,0.832418,0.23753,0.69684,0.656632,0.261803,0.397146,0.412348,0.463586,0.686898,0.289247,0.0975696,0.47776,0.191478,0.835313,0.997954,0.547599,0.414856,0.315836,0.569372,0.487353,0.336077,0.34417,0.0497169,0.73486,0.243226,0.744776,0.500065,0.953437,0.0885174,0.519638,0.0702191,0.684677,0.706382,0.498296,0.643051,0.548607,0.902,0.584357,0.293424,0.864745,0.77035,0.657823,0.778961,0.43746,0.983164,0.645868,0.321507,0.392429,0.867902,0.660901,0.193062,0.67163,0.549191,0.390178,0.580331,0.768551,0.135924,0.438172,0.321967,0.383801,0.864728,0.668322,0.753626,0.779099,0.856641,0.199166,0.948533,0.513214,0.182573,0.385232,0.223513,0.61921,0.801657,0.899006,0.733693,0.837766,0.782721,0.752062,0.665051,0.981642,0.0422007,0.707025,0.0382078,0.875133,0.477172,0.0320636,0.402625,0.661437,0.0928985,0.420333,0.346274,0.17363,0.330026,0.988795,0.00403768,0.702398,0.302654,0.15915,0.817016,0.756173,0.926188,0.50858,0.442225,0.827842,0.568563,0.330336,0.632798,0.196763,0.190882,0.0245105,0.668789,0.79212,0.583656,0.162082,0.845156,0.206212,0.744931,0.774594,0.9431,0.857043,0.291742,0.394513,0.0728662,0.18463,0.830749,0.858094,0.249758,0.101673,0.113571,0.930519,0.643483,0.476223,0.0130835,0.407701,0.958217,0.147543,0.305345,0.848231,0.199064,0.775223,0.227786,0.75738,0.0369687,0.425402,0.96627,0.198397,0.516434,0.19052,0.0578769,0.0077849,0.322178,0.000760615,0.375696,0.280441,0.687367,0.352928,0.00634426,0.834662,0.646109,0.120531,0.0303889,0.0877775,0.384554,0.998278,0.554607,0.849382,0.522716,0.67936,0.799459,0.195547,0.665228,0.100911,0.26754,0.869281,0.924693,0.512943,0.336378,0.959785,0.593134,0.0671502,0.298811,0.996034,0.244325,0.403044,0.143275,0.331875,0.626883,0.378,0.426737,0.449701,0.94889,0.48259,0.172273,0.848488,0.940345,0.797314,0.451739,0.746667,0.365743,0.152681,0.906288,0.459628,0.430575,0.0786217,0.572689,0.040868,0.993545,0.939482,0.042789,0.442683,0.700323,0.718144,0.901661,0.507823,0.587233,0.507743,0.750726,0.646442,0.289168,0.757876,0.967684,0.504934,0.348456,0.900276,0.728203,0.896913,0.0971283,0.0119899,0.479115,0.612104,0.579739,0.581398,0.901287,0.305708,0.655601,0.36943,0.807872,0.433132,0.463202,0.0860348,0.102443,0.710354,0.839666,0.996982,0.549661,0.625449,0.772126,0.91541,0.907006,0.466738,0.724649,0.734092,0.43167,0.843232,0.925911,0.750461,0.470599,0.147977,0.292971,0.512303,0.465051,0.0289189,0.763219,0.975032,0.329838,0.131941,0.592971,0.441494,0.805012,0.0192519,0.358223,0.819331,0.25708,0.552294,0.525188,0.33583,0.113912,0.138471,0.671551,0.964036,0.125893,0.301605,0.73779,0.38805,0.170382,0.193559,0.063988,0.954829,0.87227,0.952707,0.982714,0.197632,0.195795,0.26116,0.556846,0.0791469,0.0849833,0.816676,0.73892,0.197699,0.361193,0.983675,0.398667,0.939157,0.812126,0.395332,0.878154,0.735188,0.397205,0.789625,0.121151,0.548133,0.680039,0.854019,0.979321,0.953125,0.466977,0.324216,0.750379,0.670762,0.893808,0.98541,0.179523,0.872101,0.865917,0.904619,0.845451,0.349512,0.223442,0.0619736,0.947758,0.517028,0.31003,0.505534,0.344035,0.13417,0.97788,0.5973,0.487141,0.901271,0.740853,0.0415089,0.482662,0.228661,0.421468,0.733072,0.0347154,0.442779,0.545782,0.234711,0.233956,0.765956,0.0790453,0.030536,0.728658,0.281909,0.367258,0.917627,0.13269,0.900874,0.643615,0.767345,0.309983,0.782952,0.382575,0.59372,0.604304,0.419924,0.2878,0.56357,0.720571,0.235703,0.0716533,0.212697,0.876337,0.213611,0.00427139,0.614998,0.695991,0.0718899,0.220596,0.230592,0.959856,0.369843,0.681128,0.737757,0.255301,0.726711,0.973417,0.303398,0.679207,0.363394,0.129269,0.0785939,0.396265,0.746219,0.0433258,0.574382,0.601524,0.556387,0.573015,0.411388,0.784256,0.748762,0.543648,0.577235,0.622296,0.766892,0.69251,0.849599,0.508008,0.678516,0.759699,0.314796,0.548938,0.496864,0.312359,0.647533,0.134624,0.820622,0.334307,0.626201,0.871997,0.0726813,0.941537,0.114582,0.852017,0.114374,0.128307,0.137896,0.190062,0.872135,0.645681,0.816503,0.164688,0.559897,0.863192,0.924811,0.622927,0.878397,0.767211,0.105351,0.279759,0.307568,0.273991,0.707257,0.95306,0.448987,0.813725,0.288917,0.932273,0.798461,0.663471,0.714558,0.884971,0.818208,0.111853,0.501686,0.607533,0.945621,0.341127,0.968021,0.456438,0.229342,0.224368,0.602727,0.210399,0.318921,0.648209,0.342083,0.604856,0.0143363,0.906137,0.968594,0.0777678,0.415226,0.666071,0.355237,0.78351,0.87161,0.609704,0.851026,0.184294,0.638331,0.627676,0.183443,0.531602,0.815981,0.188657,0.86483,0.64097,0.379407,0.630208,0.9659,0.143955,0.801947,0.523221,0.787381,0.190425,0.597665,0.295175,0.981823,0.892652,0.721971,0.413194,0.475229,0.579881,0.404429,0.490954,0.0383767,0.508529,0.483456,0.517329,0.99317,0.137856,0.0656252,0.34909,0.359783,0.684039,0.984454,0.283644,0.892985,0.345879,0.867562,0.443607,0.637302,0.613761,0.329252,0.900567,0.420501,0.958179,0.799193,0.611293,0.940876,0.927705,0.988804,0.925699,0.195335,0.278676,0.967634,0.613477,0.314934,0.29792,0.15933,0.360963,0.220037,0.0988768,0.620576,0.21462,0.806107,0.47567,0.0419974,0.825779,0.309499,0.965422,0.377593,0.655097,0.384943,0.894373,0.692171,0.494676,0.0799114,0.884439,0.758315,0.0436912,0.0631804,0.798503,0.798086,0.720138,0.713356,0.831539,0.664323,0.441457,0.291487,0.579605,0.944859,0.488691,0.967672,0.985268,0.023429,0.99629,0.6086,0.609136,0.327471,0.384047,0.83561,0.166419,0.90134,0.775221,0.347374,0.697824,0.296439,0.53739,0.533786,0.895307,0.783959,0.278762,0.299306,0.552198,0.980929,0.164232,0.674816,0.169492,0.633559,0.287575,0.638723,0.557669,0.176545,0.477808,0.415478,0.438208,0.783568,0.559526,0.958091,0.324494,0.48339,0.285466,0.718974,0.397515,0.88354,0.0875961,0.233685,0.797509,0.819493,0.864445,0.571631,0.487507,0.358594,0.254786,0.386392,0.0324073,0.341833,0.660842,0.0253703,0.567196,0.149913,0.47894,0.390135,0.710333,0.914003,0.527199,0.503036,0.889851,0.471862,0.548189,0.423171,0.547987,0.800286,0.74682,0.916115,0.267263,0.849652,0.714022,0.42267,0.429792,0.851576,0.245276,0.0756665,0.509832,0.462254,0.648957,0.697563,0.198609,0.563217,0.929325,0.682193,0.835703,0.474394,0.878168,0.551639,0.196254,0.0887969,0.425543,0.237923,0.411526,0.871658,0.0540274,0.870989,0.455672,0.934419,0.649034,0.445044,0.552327,0.152333,0.557562,0.665301,0.531307,0.201963,0.899467,0.333305,0.528723,0.235508,0.177683,0.780953,0.00594705,0.888715,0.475631,0.421531,0.4828,0.946939,0.673816,0.39433,0.615231,0.59205,0.226646,0.67502,0.0871054,0.313462,0.818756,0.637411,0.130232,0.944891,0.80302,0.414577,0.387326,0.129541,0.104193,0.506361,0.428822,0.140021,0.323354,0.559156,0.116988,0.535068,0.448941,0.630986,0.541256,0.538766,0.496952,0.316008,0.936102,0.96944,0.0576105,0.744197,0.306979,0.8882,0.411397,0.137302,0.461293,0.690702,0.876974,0.153455,0.17938,0.51158,0.442331,0.00941366,0.4306,0.109733,0.752952,0.493606,0.10637,0.199575,0.530741,0.163496,0.728541,0.481782,0.563986,0.232094,0.572833,0.720205,0.926957,0.921264,0.835417,0.507477,0.0681736,0.607954,0.692162,0.0840887,0.497182,0.512008,0.479656,0.249256,0.543464,0.813104,0.229575,0.573059,0.567789,0.884853,0.686604,0.239168,0.611837,0.976592,0.985598,0.134531,0.696124,0.392415,0.239832,0.372995,0.0416339,0.111348,0.567014,0.833316,0.0163435,0.433576,0.600782,0.334094,0.299434,0.892894,0.361007,0.643016,0.602826,0.754927,0.773381,0.798137,0.30494,0.912697,0.0287392,0.367317,0.556658,0.533237,0.66679,0.665738,0.947434,0.104918,0.505965,0.527412,0.641636,0.35747,0.747401,0.965409,0.426771,0.0773949,0.141865,0.179132,0.947647,0.238299,0.638022,0.305345,0.585418,0.40371,0.605299,0.0213931,0.761695,0.0675765,0.101691,0.432039,0.2343,0.438898,0.579557,0.34732,0.935472,0.619349,0.12628,0.209089,0.918532,0.00759137,0.662977,0.905811,0.495501,0.802816,0.472897,0.0345032,0.388329,0.407553,0.52804,0.20229,0.238918,0.460816,0.485597,0.397361,0.752863,0.336964,0.242973,0.984788,0.0321876,0.0128046,0.739558,0.736077,0.596449,0.624667,0.843467,0.603381,0.538408,0.105969,0.73656,0.685376,0.4963,0.470998,0.257412,0.706501,0.566004,0.22442,0.653901,0.404008,0.943126,0.938433,0.769349,0.326027,0.478448,0.247593,0.206865,0.952646,0.167213,0.000848651,0.688428,0.0257056,0.230026,|0.963495,0.656369,0.0553524,0.126517,0.849591,0.102037,0.629758,0.541032,0.492269,0.570199,0.229752,0.74078,0.261406,0.520605,0.269623,0.891662,0.0704939,0.524922,0.000356674,0.435469,0.433844,0.861362,0.325469,0.166807,0.303855,0.247531,0.0107884,0.20638,0.282285,0.797572,0.87666,0.825974,0.454178,0.122426,0.734447,0.466013,0.338686,0.709446,0.0352335,0.898796,0.384529,0.357678,0.0570441,0.632192,0.213806,0.923123,0.978839,0.636384,0.0710817,0.893283,0.314996,0.21044,0.191566,0.718118,0.756257,0.826922,0.753836,0.976564,0.145685,0.389169,0.428293,0.683653,0.197094,0.311006,0.00148034,0.225773,0.772447,0.858714,0.392093,0.377636,0.892358,0.132429,0.621798,0.525609,0.226781,0.352506,0.713424,0.115226,0.525809,0.782581,0.810018,0.856541,0.669043,0.55292,0.111846,0.133668,0.0565886,0.264496,0.80841,0.780855,0.285863,0.27824,0.214027,0.248761,0.963586,0.73619,0.500972,0.0538306,0.721365,0.514214,0.419598,0.440484,0.773382,0.477674,0.541545,0.879663,0.00242627,0.358017,0.28633,0.874671,0.896883,0.0523457,0.0712116,0.491375,0.541365,0.785492,0.215463,0.388938,0.913447,0.493042,0.974567,0.0147359,0.665993,0.0238907,0.0617794,0.956948,0.768356,0.0556971,0.872184,0.431207,0.160728,0.582123,0.415835,0.539867,0.0355671,0.445978,0.447422,0.233221,0.579134,0.423169,0.177877,0.74212,0.773164,0.276586,0.143998,0.290118,0.73463,0.512039,0.199674,0.00431174,0.786884,0.201518,0.08505,0.924408,0.609493,0.660636,0.540448,0.272064,0.291169,0.679451,0.387402,0.569987,0.911273,0.113156,0.924768,0.518245,0.668819,0.279465,0.946709,0.420845,0.210014,0.470459,0.423463,0.635174,0.0979459,0.984292,0.17161,0.528318,0.792007,0.0973179,0.106647,0.08257,0.705583,0.871265,0.0159296,0.654698,0.738385,0.319113,0.106544,0.0168024,0.100243,0.346925,0.164503,0.247905,0.835464,0.70809,0.332626,0.0382559,0.90199,0.92582,0.104531,0.992424,0.461936,0.422388,0.710886,0.401753,0.963793,0.918848,0.644626,0.612214,0.640475,0.39061,0.448429,0.577809,0.347365,0.652,0.192381,0.344398,0.01903,0.387375,0.803687,0.929459,0.741779,0.147076,0.484974,0.622188,0.0822568,0.118588,0.46566,0.635249,0.529997,0.276804,0.561047,0.416616,0.757288,0.138363,0.248948,0.000124097,0.382374,0.135025,0.697828,0.625161,0.522753,0.774828,0.728271,0.414128,0.265066,0.294493,0.969541,0.629996,0.863531,0.489103,0.178432,0.945146,0.537851,0.431708,0.2038,0.62579,0.138453,0.137463,0.588449,0.389159,0.372436,0.844172,0.113938,0.705762,0.294445,0.158702,0.0830956,0.387973,0.246333,0.172556,0.649482,0.562672,0.219765,0.598691,0.467265,0.766237,0.306684,0.793613,0.777488,0.947937,0.838728,0.355087,0.520584,0.198844,0.020036,0.960217,0.650266,0.50163,0.295224,0.598294,0.106271,0.874426,0.759895,0.842037,0.359265,0.283837,0.395223,0.903565,0.315881,0.315369,0.183461,0.786622,0.358882,0.464983,0.930124,0.304402,0.604442,0.880022,0.902546,0.0330272,0.206086,0.964322,0.361542,0.569498,0.550178,0.101988,0.573229,0.638643,0.219612,0.464249,0.225118,0.125512,0.0677231,0.207698,0.563133,0.888609,0.929666,0.522115,0.877276,0.883819,0.458392,0.2339,0.290238,0.275133,0.676138,0.477038,0.355116,0.403688,0.160621,0.132707,0.674933,0.300426,0.109308,0.282518,0.840416,0.523394,0.0023427,0.0915083,0.389223,0.256608,0.296949,0.0843927,0.918705,0.893036,0.731001,0.918357,0.703048,0.169254,0.446354,0.537315,0.564068,0.232549,0.405354,0.867707,0.261614,0.920548,0.981162,0.805592,0.371551,0.961121,0.138458,0.405937,0.170448,0.234927,0.687639,0.210071,0.137217,0.819386,0.329849,0.51186,0.731032,0.691226,0.642051,0.12159,0.433892,0.691369,0.917054,0.917739,0.415512,0.449755,0.942827,0.242888,0.239681,0.27023,0.60301,0.962368,0.333717,0.422532,0.866539,0.561202,0.550539,0.41943,0.0911826,0.216246,0.527068,0.00418359,0.571863,0.613448,0.439347,0.308495,0.0668449,0.929656,0.80792,0.271276,0.297737,0.25535,0.891012,0.392286,0.780592,0.765078,0.986811,0.656171,0.13284,0.544635,0.531756,0.677654,0.235908,0.953983,0.452223,0.923536,0.0378278,0.52185,0.608181,0.25556,0.107639,0.209637,0.750923,0.614673,0.315881,0.374444,0.836177,0.217256,0.593041,0.945693,0.330885,0.690402,0.317295,0.290955,0.845256,0.090974,0.231745,0.489309,0.407471,0.559853,0.766114,0.338,0.398546,0.0686501,0.0675583,0.208951,0.595025,0.916583,0.731247,0.770731,0.449222,0.357044,0.0635006,0.0221479,0.969502,0.894824,0.898753,0.53891,0.176621,0.201625,0.501512,0.240126,0.944992,0.205553,0.956554,0.331917,0.779338,0.0908733,0.577356,0.0142419,0.747057,0.870665,0.0382785,0.485834,0.724675,0.232918,0.00189376,0.488686,0.869506,0.893337,0.356367,0.461482,0.864044,0.421776,0.311224,0.950509,0.434855,0.638938,0.170367,0.299494,0.793124,0.529161,0.907681,0.382736,0.460389,0.295871,0.775158,0.0268982,0.509554,0.965703,0.265922,0.573327,0.6351,0.11807,0.201638,0.0483294,0.876889,0.206472,0.874755,0.304919,0.0802369,0.726021,0.0271161,0.133167,0.783593,0.883366,0.882399,0.314294,0.670514,0.8938,0.450352,0.867299,0.770532,0.598806,0.287088,0.00731295,0.771251,0.686567,0.679224,0.254166,0.54277,0.973573,0.334217,0.418592,0.572551,0.97197,0.715747,0.14928,0.244019,0.538487,0.629119,0.438282,0.491954,0.893914,0.446138,0.265388,0.931124,0.625509,0.437586,0.392291,0.772581,0.696015,0.264712,0.310462,0.843637,0.654309,0.940902,0.450181,0.71332,0.646873,0.94134,0.839741,0.261789,0.870646,0.699374,0.00972003,0.381193,0.468503,0.0677269,0.475926,0.0663912,0.460362,0.351096,0.490706,0.19361,0.765005,0.17929,0.701591,0.80805,0.303988,0.848214,0.458694,0.817886,0.971171,0.797546,0.687448,0.304123,0.727022,0.477515,0.485463,0.123677,0.698839,0.110075,0.603853,0.734005,0.408975,0.310164,0.287066,0.0923958,0.312278,0.569854,0.898609,0.748602,0.0787848,0.825527,0.769677,0.415049,0.753532,0.419254,0.444728,0.141177,0.458119,0.476373,0.313594,0.114092,0.192661,0.73788,0.640301,0.903398,0.388958,0.670014,0.361863,0.706207,0.339002,0.245406,0.324399,0.393837,0.601748,0.211132,0.769337,0.576205,0.513895,0.585596,0.643988,0.0350519,0.364054,0.873864,0.948244,0.35997,0.544681,0.171598,0.878709,0.322718,0.613455,0.162089,0.488194,0.853554,0.0165257,0.797315,0.838626,0.367881,0.626308,0.924632,0.636004,0.652787,0.0528843,0.00789529,0.995233,0.618657,0.168788,0.43033,0.344086,0.841195,0.8507,0.637867,0.335469,0.106055,0.568792,0.960351,0.239276,0.773445,0.00142711,0.221686,0.389477,0.783706,0.529453,0.955542,0.585367,0.21346,0.642734,0.126286,0.322243,0.165888,0.744584,0.834167,0.978843,0.430125,0.456052,0.536466,0.537602,0.456735,0.134072,0.0791377,0.161052,0.852144,0.682145,0.0464152,0.786678,0.380343,0.0265618,0.0511576,0.89924,0.443992,0.173116,0.00111938,0.190332,0.0515726,0.316244,0.919765,0.870213,0.512935,0.541766,0.363703,0.604554,0.314976,0.0220907,0.132807,0.579233,0.0661716,0.330433,0.196331,0.746837,0.831352,0.865439,0.323431,0.278437,0.723645,0.445152,0.45724,0.727405,0.349174,0.222021,0.696808,0.357337,0.570071,0.0990277,0.138029,0.351523,0.792215,0.0766051,0.387627,0.590083,0.273404,0.70418,0.914184,0.0151026,0.326464,0.149728,0.656631,0.558168,0.786209,0.758333,0.42451,0.264257,0.873544,0.693014,0.64779,0.484009,0.153459,0.0490862,0.0716228,0.791118,0.260556,0.643582,0.155408,0.479235,0.947482,0.66499,0.583778,0.455244,0.332669,0.377394,0.178225,0.413784,0.0665604,0.285291,0.185154,0.592798,0.958212,0.449604,0.83039,0.722326,0.307271,0.374553,0.630004,0.309365,0.250109,0.705763,0.608548,0.534901,0.60652,0.858282,0.475232,0.910288,0.739066,0.984915,0.889867,0.779145,0.474877,0.159622,0.0958542,0.933116,0.251251,0.0314553,0.698304,0.677619,0.359125,0.0657856,0.47681,0.382306,0.0494533,0.806877,0.79107,0.548533,0.343988,0.844442,0.243551,0.50992,0.740098,0.112774,0.147914,0.555967,0.28063,0.294467,0.158403,0.494347,0.374309,0.699092,0.40746,0.365086,0.154348,0.0184354,0.137438,0.48264,0.494919,0.658927,0.409578,0.504785,0.378971,0.510437,0.567691,0.231996,3.30806e-05,0.253779,0.350884,0.748525,0.249768,0.587926,0.594428,0.333925,0.315166,0.838531,0.656397,0.232304,0.451426,0.557523,0.0653856,0.850153,0.715346,0.832854,0.131536,0.586528,0.590994,0.79017,0.5515,0.612466,0.538475,0.648432,0.212629,0.929882,0.260016,0.177678,0.134833,0.170575,0.381575,0.789479,0.408724,0.665694,0.585454,0.54544,0.797141,0.169205,0.982526,0.513485,0.789415,0.916258,0.818072,0.69602,0.245643,0.980561,0.529537,0.141682,0.682332,0.650512,0.968784,0.878793,0.685866,0.0629892,0.46382,0.373835,0.855736,0.510382,0.610479,0.934534,0.413045,0.832603,0.4714,0.835789,0.658519,0.462226,0.775465,0.57645,0.42432,0.8205,0.475809,0.501499,0.674037,0.795244,0.366296,0.603471,0.497458,0.880677,0.139751,0.520788,0.866876,0.45002,0.723827,0.654131,0.559297,0.0410671,0.633512,0.511348,0.989656,0.367876,0.617696,0.449501,0.620007,0.277906,0.16371,0.182349,0.0160943,0.97647,0.671464,0.689929,0.555212,0.917822,0.913341,0.519762,0.495306,0.701221,0.774682,0.484203,0.844291,0.626707,0.38771,0.935409,0.803055,0.710512,0.385717,0.751646,0.542414,0.0126792,0.215255,0.594665,0.954069,0.68522,0.875862,0.532652,0.31641,0.101277,0.192146,0.296684,0.62602,0.424905,0.102509,0.179042,0.946319,0.909181,0.0520357,0.491159,0.544812,0.805836,0.502184,0.744139,|0.647639,0.710278,0.202496,0.327626,0.228608,0.13907,0.81688,0.972215,0.258409,0.0193595,0.841005,0.765167,0.675493,0.764402,0.572671,0.115263,0.88427,0.806211,0.0373645,0.773809,0.775384,0.406216,0.997944,0.557616,0.884696,0.955682,0.784582,0.736224,0.214927,0.419715,0.0223066,0.21439,0.149039,0.223362,0.917206,0.684349,0.851504,0.142553,0.672872,0.0957291,0.40049,0.705068,0.729642,0.454229,0.722574,0.532011,0.143058,0.669876,0.161756,0.255308,0.417454,0.893542,0.888242,0.292326,0.574954,0.932671,0.125659,0.303578,0.2868,0.822303,0.743958,0.489749,0.945172,0.160865,0.893847,0.595413,0.306712,0.0958595,0.863645,0.627756,0.10806,0.0677307,0.155358,0.251222,0.367736,0.543947,0.449069,0.067209,0.734829,0.599507,0.86499,0.635029,0.303311,0.953783,0.640705,0.730123,0.0310198,0.215358,0.787167,0.277976,0.348013,0.317563,0.72287,0.737549,0.650884,0.375348,0.24114,0.325297,0.710417,0.730209,0.575682,0.937733,0.824888,0.241502,0.383947,0.139116,0.30227,0.927239,0.879476,0.440378,0.914175,0.160536,0.0868952,0.596453,0.572692,0.851972,0.938138,0.285666,0.772877,0.527338,0.604175,0.682583,0.678958,0.743768,0.6743,0.882811,0.342417,0.810489,0.159778,0.176564,0.595818,0.349755,0.303588,0.118919,0.781209,0.191455,0.767834,0.119078,0.474751,0.117176,0.998298,0.82976,0.345407,0.0935519,0.905994,0.679374,0.960251,0.764147,0.175784,0.824669,0.11617,0.527231,0.772888,0.849708,0.0956169,0.327275,0.344392,0.910865,0.133321,0.645459,0.989281,0.268654,0.669118,0.401152,0.822354,0.601279,0.712746,0.508823,0.38672,0.325109,0.0128658,0.828241,0.196896,0.091258,0.446803,0.710578,0.726093,0.360852,0.420341,0.333577,0.649246,0.873494,0.0935255,0.802894,0.539376,0.351353,0.371938,0.021449,0.207841,0.76364,0.251545,0.53076,0.709547,0.862198,0.570328,0.861842,0.206351,0.401002,0.119772,0.446143,0.396153,0.528077,0.337322,0.409928,0.17493,0.0114036,0.210186,0.692071,0.694117,0.76691,0.313308,0.0794253,0.288861,0.720856,0.249522,0.238074,0.569837,0.301953,0.786505,0.446486,0.215311,0.827276,0.981825,0.25467,0.864134,0.671114,0.776641,0.283888,0.596904,0.738303,0.719596,0.706269,0.853035,0.07688,0.717541,0.095201,0.663307,0.472242,0.812524,0.740061,0.744675,0.12279,0.772662,0.192468,0.77238,0.351785,0.298682,0.872104,0.20564,0.976383,0.435115,0.351655,0.696167,0.526586,0.924841,0.12995,0.719212,0.464185,0.844964,0.0396158,0.631331,0.957999,0.49024,0.475161,0.482901,0.593564,0.696647,0.205023,0.241013,0.803649,0.708829,0.559853,0.00132167,0.283425,0.27545,0.257234,0.241507,0.219879,0.434194,0.179378,0.401696,0.454403,0.162092,0.505771,0.721363,0.799165,0.363449,0.842744,0.555076,0.640194,0.107843,0.664965,0.700355,0.548202,0.738555,0.0572724,0.697493,0.147553,0.214334,0.519668,0.630853,0.685769,0.467368,0.685129,0.96525,0.432677,0.673395,0.664309,0.191608,0.790427,0.654754,0.376311,0.348608,0.94606,0.371465,0.138646,0.0279391,0.625527,0.131316,0.32513,0.129973,0.0175885,0.939485,0.78733,0.656572,0.709087,0.108823,0.186015,0.595941,0.674728,0.53088,0.315381,0.300287,0.15084,0.27903,0.14363,0.561807,0.374468,0.370326,0.548806,0.815664,0.691988,0.382263,0.632831,0.543968,0.320478,0.482551,0.996303,0.934777,0.748309,0.0279636,0.208029,0.479317,0.965894,0.237608,0.556736,0.376973,0.228765,0.443293,0.435401,0.950435,0.841319,0.961497,0.738377,0.45672,0.126971,0.706942,0.0700639,0.578052,0.671791,0.734121,0.161645,0.729451,0.721686,0.188299,0.468343,0.321895,0.940661,0.704145,0.438682,0.264991,0.666065,0.093468,0.353056,0.909411,0.769992,0.835599,0.994724,0.0174429,0.546392,0.559941,0.428053,0.174505,0.841508,0.353948,0.492461,0.419212,0.528532,0.642768,0.504241,0.484429,0.0652069,0.177316,0.871906,0.37414,0.595035,0.529142,0.495029,0.310439,0.132317,0.459177,0.846014,0.337837,0.516698,0.386319,0.412843,0.0648032,0.215437,0.00646174,0.397254,0.811774,0.457416,0.893234,0.619054,0.817016,0.101497,0.572239,0.249329,0.208095,0.641831,0.806881,0.424419,0.36581,0.182144,0.992268,0.930153,0.389933,0.3479,0.230959,0.762159,0.353468,0.380579,0.389996,0.415175,0.244812,0.0183956,0.0352482,0.12728,0.222152,0.422521,0.892182,0.567442,0.893747,0.0796264,0.804437,0.146917,0.655057,0.425005,0.343515,0.502068,0.721926,0.732431,0.0674781,0.00874108,0.220313,0.345978,0.641193,0.490797,0.180811,0.119607,0.147861,0.382882,0.444982,0.521556,0.558158,0.38715,0.969566,0.336956,0.101584,0.669812,0.956326,0.604715,0.406862,0.21459,0.154075,0.212307,0.100271,0.0586278,0.104929,0.929494,0.31987,0.937696,0.991092,0.0780952,0.381803,0.362018,0.539459,0.264439,0.380482,0.25639,0.840657,0.700505,0.277074,0.950241,0.432658,0.542722,0.221405,0.870655,0.939828,0.892353,0.379665,0.186392,0.635762,0.234916,0.876713,0.704263,0.0767201,0.332663,0.576887,0.708397,0.583703,0.140772,0.883303,0.0709659,0.425106,0.588394,0.60504,0.0425617,0.585509,0.991592,0.0357477,0.687263,0.530361,0.491933,0.29859,0.998036,0.714762,0.810938,0.509216,0.080296,0.561823,0.0770218,0.785858,0.556331,0.200407,0.395431,0.437833,0.399392,0.0819359,0.453616,0.223386,0.0986112,0.845944,0.70139,0.657832,0.61464,0.520755,0.212021,0.709787,0.94404,0.232973,0.765548,0.472981,0.117145,0.411313,0.910472,0.499606,0.818662,0.64607,0.486674,0.648154,0.662101,0.988064,0.971673,0.171291,0.922341,0.953681,0.337997,0.823244,0.87146,0.614135,0.0180018,0.923738,0.84016,0.762609,0.764034,0.721744,0.535701,0.662523,0.339428,0.463329,0.359159,0.378216,0.959697,0.158338,0.429216,0.919823,0.677059,0.103513,0.763737,0.165454,0.847997,0.965005,0.746257,0.557144,0.972867,0.977131,0.666291,0.71164,0.871655,0.928148,0.340788,0.162441,0.00359684,0.927362,0.94167,0.615348,0.339574,0.969274,0.61066,0.655609,0.640156,0.163827,0.814446,0.374851,0.622862,0.173888,0.211803,0.243302,0.0869549,0.0334903,0.310979,0.377287,0.794672,0.796974,0.0872951,0.647941,0.0819176,0.318642,0.13679,0.518348,0.719346,0.0792691,0.381368,0.854257,0.906322,0.516457,0.305867,0.811585,0.345048,0.573234,0.629129,0.906829,0.760435,0.726865,0.680541,0.421798,0.809945,0.535936,0.953015,0.674075,0.400226,0.663191,0.438021,0.552305,0.822008,0.847869,0.575315,0.705331,0.571156,0.0653264,0.79196,0.513864,0.16568,0.955863,0.265777,0.311508,0.665762,0.63762,0.711387,0.761334,0.156618,0.584337,0.484692,0.946305,0.66542,0.434058,0.228131,0.225456,0.31746,0.719437,0.5712,0.604955,0.463801,0.770862,0.418144,0.928929,0.703786,0.413413,0.373473,0.505176,0.945375,0.90924,0.191752,0.503623,0.0600992,0.834868,0.926737,0.628315,0.234285,0.501321,0.384287,0.680344,0.264206,0.214858,0.343696,0.721231,0.902166,0.0276777,0.451858,0.385651,0.343351,0.0585771,0.954793,0.282487,0.404992,0.304651,0.915882,0.477212,0.585822,0.605033,0.201452,0.906448,0.548655,0.887951,0.614647,0.227532,0.0840842,0.533519,0.571515,0.258724,0.405921,0.127546,0.114375,0.648423,0.00819492,0.282111,0.469016,0.19122,0.297599,0.987136,0.485043,0.37983,0.928732,0.820611,0.0995942,0.324326,0.427088,0.50075,0.487901,0.355947,0.539135,0.507045,0.714789,0.0549228,0.485776,0.50301,0.999107,0.214409,0.718859,0.861285,0.0982806,0.959804,0.599491,0.509428,0.596055,0.935417,0.125515,0.527044,0.499088,0.311799,0.313155,0.797985,0.549327,0.191914,0.244593,0.144227,0.297676,0.417286,0.605544,0.528182,0.18152,0.542556,0.957853,0.536589,0.395794,0.970117,0.81237,0.450545,0.628368,0.877909,0.683986,0.541153,0.107921,0.959114,0.353087,0.733445,0.98252,0.672018,0.729508,0.587975,0.212149,0.858407,0.505393,0.433625,0.819887,0.903588,0.829222,0.107476,0.742182,0.29346,0.949611,0.249318,0.111355,0.0844385,0.28915,0.533937,0.0851984,0.336376,0.975835,0.0162321,0.552433,0.00421274,0.384251,0.584546,0.563467,0.259473,0.174482,0.00586957,0.378574,0.214267,0.123114,0.920883,0.729925,0.199879,0.83221,0.269022,0.495723,0.763006,0.82096,0.776169,0.48637,0.502617,0.456376,0.870706,0.993414,0.168669,0.0306234,0.58838,0.408038,0.58639,0.277575,0.14187,0.877687,0.341927,0.761511,0.557162,0.0697417,0.86163,0.5689,0.327528,0.473995,0.238265,0.954461,0.301905,0.729326,0.454885,0.502203,0.0276536,0.80634,0.297542,0.795112,0.643994,0.696694,0.27435,0.501806,0.491583,0.389974,0.81917,0.634269,0.891087,0.448525,0.610162,0.175561,0.217734,0.85925,0.745234,0.782976,0.771884,0.462539,0.360186,0.375781,0.750409,0.638905,0.938246,0.421955,0.336049,0.550125,0.330173,0.732959,0.504086,0.549678,0.919982,0.459843,0.828933,0.902384,0.513644,0.894788,0.024913,0.138849,0.649558,0.408324,0.644051,0.4102,0.547086,0.96856,0.953218,0.944249,0.0851553,0.86837,0.54201,0.433989,0.823064,0.0955308,0.435076,0.223174,0.707889,0.758109,0.635021,0.674445,0.85439,0.48721,0.184148,0.312629,0.509341,0.484694,0.382564,0.305698,0.582003,0.330125,0.346938,0.352494,0.993027,0.654777,0.846142,0.323154,0.314909,0.0740582,0.129745,0.729662,0.552054,0.977562,0.498365,0.14624,0.375729,0.799197,0.613566,0.0218406,0.12332,0.142033,0.338937,0.172016,0.27717,0.921289,0.679873,0.336896,0.884504,0.316992,0.283014,0.420506,0.282346,0.955854,0.542471,0.319182,0.0205648,0.451423,0.506914,0.400967,0.853172,0.587785,0.0632725,0.859193,0.865591,0.865462,0.645624,0.421032,0.418344,0.886615,0.357168,0.0847066,|0.40673,0.0578143,0.00177747,0.744907,0.39895,0.772737,0.290894,0.497954,0.435981,0.682146,0.731695,0.619078,0.725936,0.768976,0.834043,0.641769,0.675815,0.698627,0.953127,0.900557,0.209031,0.266637,0.922696,0.968105,0.693095,0.267591,0.107571,0.162807,0.568867,0.66482,0.617207,0.236571,0.461634,0.26388,0.581423,0.322448,0.544123,0.424924,0.79605,0.823335,0.553153,0.282132,0.137196,0.304302,0.0182785,0.942356,0.543157,0.103736,0.511222,0.0306516,0.597057,0.114745,0.732134,0.0798177,0.687601,0.625683,0.786056,0.101716,0.113253,0.551087,0.0554634,0.302493,0.994911,0.800725,0.31734,0.993544,0.543315,0.446447,0.605717,0.927001,0.946258,0.642607,0.241197,0.51073,0.71476,0.514721,0.30904,0.0860872,0.783082,0.890549,0.700125,0.821522,0.500509,0.753837,0.232419,0.181753,0.362984,0.68289,0.453534,0.0162302,0.701486,0.278788,0.457539,0.313485,0.996036,0.773964,0.520525,0.724807,0.3277,0.419852,0.261485,0.567468,0.961312,0.711155,0.761985,0.258218,0.658101,0.125621,0.811972,0.183434,0.6469,0.477152,0.633041,0.806572,0.823461,0.582749,0.618177,0.591235,0.754733,0.688806,0.969151,0.686804,0.808658,0.952487,0.994115,0.760138,0.0990027,0.152347,0.335216,0.791125,0.782899,0.889625,0.495601,0.249247,0.883399,0.729333,0.596913,0.0143901,0.345335,0.938494,0.211844,0.847691,0.832439,0.0487178,0.617715,0.20913,0.998062,0.448081,0.794605,0.984183,0.975425,0.569664,0.506467,0.980928,0.594807,0.536275,0.575986,0.828457,0.618809,0.512096,0.188598,0.302541,0.799032,0.0385122,0.239246,0.262946,0.890144,0.620574,0.127477,0.432557,0.457838,0.611481,0.712336,0.608523,0.100112,0.0638474,0.94237,0.3785,0.437688,0.724145,0.709258,0.227609,0.729897,0.577994,0.822895,0.164577,0.37393,0.600706,0.308984,0.256892,0.181025,0.733779,0.778523,0.577288,0.490139,0.960387,0.944868,0.93481,0.492057,0.500595,0.45274,0.409883,0.58449,0.303347,0.0820847,0.518386,0.238791,0.659771,0.887353,0.621314,0.0696539,0.537753,0.12455,0.963043,0.402121,0.649009,0.319845,0.435096,0.747231,0.41205,0.910744,0.39745,0.552853,0.603797,0.858271,0.336971,0.388893,0.926154,0.470232,0.0167339,0.500731,0.0148521,0.324374,0.855417,0.626161,0.552357,0.881096,0.802003,0.498167,0.964152,0.65535,0.29103,0.425045,0.83778,0.193356,0.25516,0.033873,0.973508,0.984096,0.133385,0.323084,0.658885,0.212176,0.452312,0.034901,0.0585171,0.779559,0.2606,0.28789,0.204444,0.996518,0.841634,0.502074,0.0737591,0.944558,0.944319,0.646879,0.694089,0.274001,0.529089,0.604222,0.995797,0.871819,0.353764,0.346894,0.00124556,0.549892,0.374134,0.681265,0.323347,0.0449813,0.98629,0.519753,0.892137,0.114613,0.260276,0.287829,0.980891,0.0290043,0.38035,0.456972,0.370214,0.151962,0.548647,0.148133,0.433771,0.205965,0.907162,0.312473,0.243887,0.468826,0.43759,0.292799,0.121186,0.61012,0.329034,0.85333,0.646392,0.60707,0.549553,0.756168,0.344602,0.644738,0.736417,0.729337,0.429966,0.573112,0.684668,0.536507,0.786276,0.609909,0.295033,0.358465,0.753144,0.238676,0.56897,0.167549,0.320872,0.380823,0.154165,0.845141,0.0898894,0.311208,0.556569,0.721985,0.841696,0.538871,0.968143,0.630734,0.109507,0.571296,0.816089,0.0266245,0.450966,0.0440801,0.760131,0.498689,0.104732,0.413101,0.945867,0.661307,0.753561,0.239962,0.0915431,0.0794792,0.655104,0.803283,0.349918,0.928037,0.819327,0.490389,0.698423,0.672297,0.225227,0.122868,0.114685,0.15516,0.995235,0.0761733,0.859061,0.749711,0.96938,0.160904,0.887087,0.202881,0.375434,0.184342,0.791758,0.905518,0.55868,0.319925,0.788705,0.566206,0.214591,0.765181,0.329805,0.816118,0.580693,0.283992,0.694584,0.58937,0.151082,0.629182,0.0682898,0.495727,0.95741,0.31514,0.49808,0.569839,0.728366,0.4413,0.68097,0.499216,0.197417,0.87714,0.353519,0.684559,0.272603,0.710681,0.821793,0.632853,0.228873,0.112618,0.449366,0.271416,0.143759,0.735123,0.167021,0.416986,0.387142,0.829727,0.187932,0.642719,0.498427,0.784782,0.474765,0.429753,0.026782,0.589041,0.0228671,0.139556,0.703325,0.718191,0.280117,0.174935,0.418369,0.945284,0.689794,0.396844,0.456557,0.323889,0.432492,0.373124,0.683302,0.535712,0.855226,0.474306,0.785192,0.0641077,0.518857,0.895064,0.907539,0.69337,0.0523297,0.996765,0.953495,0.743207,0.874541,0.250104,0.104403,0.232695,0.461752,0.46042,0.156882,0.669409,0.868571,0.582667,0.729836,0.195423,0.969716,0.462273,0.841441,0.586254,0.84996,0.285627,0.151043,0.204609,0.135204,0.167216,0.581503,0.176651,0.867021,0.536099,0.122612,0.977149,0.909845,0.036863,0.280055,0.610912,0.213037,0.944761,0.353378,0.27421,0.229957,0.779649,0.852441,0.68998,0.765432,0.0963538,0.135236,0.903242,0.404125,0.947385,0.592173,0.648554,0.000212371,0.883574,0.949412,0.613372,0.744828,0.365295,0.511041,0.726912,0.633461,0.993543,0.547662,0.460473,0.447295,0.908015,0.350834,0.0391859,0.973568,0.40865,0.817367,0.378805,0.405576,0.794156,0.125612,0.858238,0.582901,0.599279,0.972947,0.00913656,0.861503,0.916832,0.54877,0.151421,0.361504,0.0649471,0.702745,0.330106,0.454241,0.298459,0.175467,0.855737,0.527255,0.103536,0.733034,0.667752,0.538906,0.0178571,0.240598,0.596919,0.436732,0.93578,0.947804,0.316407,0.217085,0.549532,0.495513,0.816033,0.996109,0.558399,0.998799,0.525933,0.72807,0.358266,0.279807,0.782285,0.145325,0.430798,0.0519039,0.0816684,0.08539,0.0248329,0.285312,0.386412,0.0194508,0.875144,0.630101,0.354493,0.830333,0.863967,0.871645,0.114803,0.816031,0.235586,0.772466,0.793603,0.467385,0.0591129,0.63911,0.646637,0.645713,0.338463,0.994801,0.131594,0.604904,0.836245,0.740781,0.615854,0.12833,0.901975,0.103817,0.435748,0.661296,0.171835,0.905579,0.789418,0.141492,0.195904,0.840963,0.108467,0.733389,0.00434393,0.976397,0.500327,0.914492,0.939523,0.701246,0.506279,0.340994,0.123398,0.697102,0.784805,0.192709,0.26558,0.16215,0.924142,0.425075,0.571822,0.969896,0.64856,0.99046,0.631085,0.235993,0.229831,0.849888,0.160945,0.85894,0.340889,0.218143,0.660951,0.91038,0.399379,0.788672,0.34728,0.517079,0.758417,0.613241,0.704188,0.286418,0.983968,0.185768,0.189786,0.222253,0.563071,0.3377,0.886539,0.752809,0.819063,0.450769,0.579844,0.121622,0.303679,0.608107,0.670489,0.0683975,0.0345326,0.519762,0.298008,0.538811,0.808467,0.324522,0.00388241,0.232168,0.892668,0.203872,0.793572,0.041629,0.476077,0.740583,0.974225,0.855117,0.348116,0.665042,0.0268185,0.554331,0.791946,0.9828,0.223048,0.279356,0.354047,0.853857,0.454263,0.168082,0.447667,0.929973,0.35183,0.583876,0.803932,0.965267,0.654844,0.439434,0.390003,0.241456,0.00501114,0.245545,0.330652,0.258607,0.408254,0.577903,0.49623,0.106797,0.351918,0.490073,0.108465,0.912104,0.0330669,0.46189,0.178958,0.302792,0.965845,0.820938,0.894612,0.938418,0.871158,0.588238,0.72576,0.784881,0.64206,0.988654,0.954145,0.141658,0.895855,0.738167,0.0311276,0.306708,0.316336,0.056821,0.792961,0.71117,0.755766,0.15578,0.374308,0.0640862,0.461099,0.137345,0.24677,0.842254,0.195896,0.0408351,0.119502,0.3839,0.360083,0.723339,0.877982,0.688055,0.255222,0.212032,0.513168,0.636084,0.345408,0.906958,0.617266,0.341989,0.973468,0.327655,0.0695997,0.29606,0.983035,0.467638,0.225397,0.712294,0.381944,0.285005,0.801165,0.715708,0.785803,0.551132,0.0965424,0.31915,0.64125,0.45833,0.442461,0.0124913,0.13127,0.800361,0.893396,0.296071,0.396778,0.153059,0.804002,0.833865,0.359651,0.468446,0.196637,0.116042,0.753201,0.0537661,0.658278,0.538296,0.149038,0.148181,0.413956,0.961254,0.196948,0.0362387,0.644075,0.368511,0.997359,0.0413417,0.148894,0.0359519,0.959392,0.762026,0.378186,0.590625,0.328752,0.027576,0.604023,0.798099,0.169119,0.363437,0.986696,0.0901715,0.953086,0.641547,0.450335,0.0956039,0.223017,0.623049,0.445886,0.496107,0.558663,0.781123,0.179719,0.872918,0.0363352,0.514292,0.10105,0.730968,0.826038,0.572437,0.0638304,0.798301,0.554193,0.749852,0.0278092,0.0302851,0.155936,0.635833,0.634227,0.926618,0.577702,0.675607,0.203727,0.51061,0.750125,0.426546,0.476739,0.144134,0.896825,0.517947,0.289429,0.422675,0.868304,0.396735,0.880283,0.0158827,0.701315,0.077378,0.187213,0.805101,0.42535,0.932491,0.839904,0.879415,0.407065,0.547049,0.61998,0.330992,0.593873,0.485474,0.353096,0.611874,0.497404,0.0866408,0.593378,0.746624,0.530688,0.0241892,0.286518,0.919928,0.591725,0.501409,0.0530015,0.390458,0.545675,0.161362,0.62644,0.981682,0.340196,0.741856,0.605393,0.354765,0.497205,0.0777656,0.201497,0.878183,0.571564,0.405218,0.652387,0.86814,0.302545,0.412611,0.409062,0.32839,0.356068,0.0448872,0.707803,0.958817,0.621265,0.896747,0.429312,0.689808,0.353818,0.622783,0.806731,0.646456,0.434902,0.639351,0.45375,0.888927,0.440166,0.659126,0.088468,0.389283,0.975146,0.676366,0.437116,0.31196,0.657249,0.941039,0.677068,0.0223132,0.298423,0.500413,0.14233,0.79558,0.252019,0.237024,0.970669,0.975076,0.924903,0.0885057,0.869216,0.921059,0.482521,0.620043,0.473586,0.974165,0.649528,0.329045,0.91701,0.255101,0.603176,0.0853586,0.877983,0.335708,0.83883,0.6687,0.0430433,0.359233,0.648279,0.501304,0.657549,0.796609,0.836576,0.0313843,0.941463,0.306308,0.949048,0.403495,0.0345829,0.634854,0.923039,0.166755,0.361228,0.346013,0.226543,0.0345163,0.0691669,0.382076,0.658768,0.776963,0.858052,0.368255,0.00923359,0.874523,|0.0251001,0.908412,0.135636,0.856621,0.241292,0.0800727,0.0597577,0.884905,0.763762,0.901962,0.531646,0.0835693,0.647409,0.252527,0.912863,0.892399,0.841986,0.275797,0.683608,0.00969809,0.953482,0.276744,0.818828,0.821655,0.484566,0.281788,0.692678,0.866655,0.41481,0.565323,0.428008,0.557154,0.883865,0.430844,0.793545,0.836927,0.25839,0.344358,0.932982,0.161717,0.929986,0.319813,0.678039,0.0467279,0.38864,0.263345,0.0188366,0.991455,0.805226,0.509782,0.739799,0.169887,0.00305623,0.716969,0.178831,0.72173,0.487755,0.574747,0.619579,0.0314211,0.146907,0.0781668,0.354913,0.540174,0.767126,0.281661,0.184744,0.852434,0.637229,0.034444,0.365675,0.224592,0.84937,0.278828,0.511108,0.158934,0.620754,0.956157,0.863879,0.719124,0.0399145,0.941829,0.63603,0.973848,0.389036,0.13018,0.570014,0.974314,0.902158,0.592834,0.360838,0.0034197,0.990436,0.245248,0.162147,0.903269,0.621895,0.928546,0.396787,0.97283,0.591019,0.362779,0.940122,0.535628,0.861799,0.0643283,0.306525,0.972593,0.66569,0.789839,0.333341,0.314384,0.175926,0.496721,0.124548,0.258158,0.9382,0.865701,0.852223,0.448011,0.754387,0.541622,0.819017,0.857586,0.23002,0.352293,0.105343,0.25621,0.413851,0.944729,0.770986,0.363422,0.209205,0.89166,0.157394,0.462441,0.142572,0.555925,0.304055,0.562058,0.0864217,0.688669,0.129278,0.352024,0.410036,0.984049,0.498394,0.876665,0.548246,0.547746,0.285001,0.270823,0.28545,0.78521,0.618784,0.798837,0.779179,0.833074,0.751356,0.557381,0.50062,0.39846,0.937999,0.230447,0.809117,0.636661,0.217551,0.623703,0.121218,0.553171,0.181743,0.401901,0.966625,0.923524,0.595735,0.0809983,0.00895596,0.835248,0.50584,0.674384,0.662429,0.0366554,0.730972,0.959342,0.587311,0.527872,0.18123,0.837727,0.659848,0.521174,0.703245,0.207219,0.415703,0.970817,0.477892,0.0863063,0.501775,0.891441,0.997164,0.802245,0.91137,0.615072,0.701154,0.947495,0.198268,0.0487586,0.320121,0.400535,0.575496,0.947715,0.216317,0.258959,0.150114,0.678895,0.455703,0.582051,0.664271,0.777504,0.114787,0.816948,0.787352,0.540792,0.55349,0.352186,0.042809,0.794457,0.182304,0.632246,0.559081,0.679131,0.259625,0.320967,0.129999,0.737573,0.162908,0.140115,0.58254,0.0928556,0.0694792,0.982259,0.865037,0.800701,0.31274,0.23243,0.785698,0.534906,0.959194,0.429129,0.738494,0.779423,0.771867,0.48576,0.0339974,0.195972,0.635576,0.797698,0.287255,0.0488413,0.504628,0.490461,0.868744,0.882431,0.763426,0.0277328,0.00146496,0.0555537,0.856049,0.741831,0.148659,0.218911,0.963943,0.774596,0.01639,0.886017,0.752401,0.981655,0.345821,0.0963317,0.742912,0.185586,0.954719,0.0315315,0.597787,0.71924,0.539293,0.103695,0.630275,0.47876,0.123543,0.733025,0.82169,0.333821,0.843346,0.636082,0.678994,0.215228,0.876047,0.807581,0.983605,0.227342,0.233732,0.703014,0.59075,0.215304,0.169747,0.432074,0.515417,0.719874,0.225492,0.197959,0.770843,0.881033,0.613609,0.555782,0.705358,0.599044,0.929282,0.173311,0.929,0.760838,0.645236,0.273445,0.175267,0.620988,0.46804,0.989944,0.362885,0.310343,0.860921,0.44571,0.647419,0.128634,0.524455,0.956373,0.493847,0.180173,0.985395,0.806217,0.625663,0.382963,0.765792,0.41253,0.583085,0.0486573,0.677906,0.530798,0.0145412,0.988333,0.0866884,0.455069,0.96426,0.417579,0.499286,0.000486612,0.51748,0.95938,0.542361,0.98193,0.0444192,0.697972,0.976807,0.791339,0.986347,0.515113,0.346456,0.175806,0.485449,0.596046,0.337855,0.441128,0.754415,0.289244,0.881881,0.0962853,0.779083,0.472231,0.717972,0.200191,0.828317,0.951835,0.161747,0.91986,0.315503,0.313344,0.643586,0.468987,0.811246,0.975914,0.787886,0.815002,0.955967,0.575751,0.0375354,0.831724,0.74993,0.646717,0.477003,0.0299761,0.619182,0.12191,0.0834416,0.142102,0.76257,0.780796,0.397473,0.421187,0.543887,0.417762,0.71264,0.278512,0.56399,0.503433,0.958797,0.887803,0.246978,0.605346,0.668173,0.0715864,0.130316,0.889155,0.0594925,0.314037,0.164621,0.41066,0.455194,0.888475,0.0953764,0.605632,0.47215,0.61691,0.0935476,0.247905,0.474397,0.712092,0.812444,0.869299,0.521008,0.289923,0.623148,0.310769,0.265414,0.103635,0.114685,0.170344,0.485929,0.711317,0.290523,0.457181,0.0599038,0.335467,0.774529,0.352847,0.00521463,0.0707685,0.701822,0.125432,0.857071,0.168862,0.958318,0.72492,0.500893,0.979125,0.942024,0.273126,0.176198,0.0949845,0.60085,0.49621,0.588141,0.275663,0.521897,0.839281,0.93083,0.474256,0.884439,0.876971,0.149684,0.450842,0.500528,0.927932,0.494266,0.88726,0.808338,0.380791,0.416136,0.666597,0.386371,0.897347,0.982989,0.464285,0.987719,0.473993,0.172568,0.631987,0.215948,0.859528,0.0934108,0.750852,0.0760044,0.44004,0.082782,0.994919,0.01466,0.207459,0.695294,0.879053,0.16899,0.521885,0.754866,0.890431,0.495076,0.876981,0.959162,0.0683326,0.190244,0.575146,0.0808604,0.0928856,0.338371,0.509452,0.754372,0.159754,0.275159,0.529152,0.186315,0.651762,0.559485,0.927701,0.626493,0.445927,0.260037,0.426493,0.109432,0.672832,0.00592864,0.645363,0.248243,0.347273,0.278289,0.779397,0.678098,0.715647,0.479309,0.830915,0.180854,0.188022,0.529811,0.409801,0.615937,0.233241,0.197987,0.271159,0.623474,0.288006,0.524846,0.91523,0.660598,0.663928,0.890266,0.934994,0.84293,0.790775,0.424738,0.250214,0.136766,0.927233,0.265099,0.65811,0.237082,0.411254,0.634146,0.526586,0.656238,0.951341,0.497023,0.586128,0.818003,0.0775964,0.132844,0.821563,0.854943,0.636599,0.125455,0.502266,0.503922,0.917368,0.233012,0.0256545,0.264863,0.0182385,0.0130522,0.991654,0.318599,0.946626,0.357287,0.366181,0.349022,0.220357,0.050814,0.0600746,0.2744,0.423278,0.387437,0.818895,0.514638,0.768547,0.746073,0.154424,0.394949,0.764377,0.388738,0.454119,0.112668,0.217518,0.155956,0.0212692,0.947128,0.748677,0.64769,0.254554,0.220349,0.784303,0.14995,0.743537,0.356608,0.879752,0.87834,0.403621,0.600573,0.556753,0.974615,0.894438,0.956147,0.995757,0.470033,0.753484,0.391306,0.672842,0.418893,0.763942,0.114695,0.463939,0.865968,0.0974056,0.244898,0.501904,0.353347,0.639599,0.977537,0.366607,0.282764,0.048519,0.97923,0.707238,0.234403,0.979863,0.70651,0.77428,0.23575,0.446802,0.513394,0.727766,0.831605,0.809294,0.487424,0.392217,0.0650886,0.465015,0.0370969,0.794249,0.832529,0.762234,0.932898,0.609469,0.487876,0.260029,0.454658,0.915991,0.565162,0.562132,0.883654,0.0145336,0.0582304,0.0290669,0.146222,0.131776,0.479383,0.908403,0.38596,0.963675,0.820053,0.440507,0.18656,0.0118053,0.308601,0.736366,0.66182,0.836639,0.0161273,0.381475,0.18898,0.0697136,0.365539,0.180266,0.827638,0.33774,0.523651,0.297531,0.0606471,0.411894,0.20937,0.319378,0.527772,0.453959,0.440247,0.598112,0.808208,0.676563,0.0135769,0.66707,0.0350344,0.978267,0.501279,0.170842,0.650349,0.215805,0.272109,0.897827,0.923351,0.24597,0.821525,0.611628,0.896594,0.232484,0.263466,0.2136,0.547873,0.0424641,0.625581,0.297583,0.206594,0.36375,0.907781,0.487166,0.968653,0.909058,0.431061,0.986634,0.367206,0.760568,0.723472,0.491617,0.247282,0.293856,0.103722,0.714721,0.906829,0.39213,0.000626862,0.212344,0.62199,0.0897776,0.287623,0.166484,0.504395,0.217266,0.288725,0.286402,0.916039,0.345349,0.303212,0.697532,0.730758,0.230518,0.758918,0.504337,0.744756,0.262979,0.798244,0.386848,0.397848,0.123208,0.350938,0.635937,0.171122,0.190573,0.258062,0.478365,0.984846,0.571978,0.654471,0.802867,0.642286,0.122509,0.175973,0.680364,0.135601,0.804497,0.769274,0.230276,0.185535,0.715348,0.0840231,0.762064,0.218313,0.730206,0.791444,0.759299,0.574284,0.168892,0.709752,0.242159,0.969012,0.0531664,0.128811,0.146864,0.353611,0.557925,0.633957,0.457507,0.224116,0.2022,0.417672,0.485363,0.247471,0.573444,0.00825799,0.290804,0.476282,0.766747,0.153152,0.031539,0.619328,0.108855,0.716015,0.162631,0.000472248,0.447875,0.414849,0.344435,0.173596,0.397146,0.306817,0.922668,0.852641,0.518544,0.704878,0.345823,0.406485,0.353901,0.794372,0.715924,0.736995,0.271677,0.812454,0.054877,0.062888,0.94537,0.308047,0.280972,0.547199,0.163833,0.733123,0.0509756,0.486321,0.60132,0.595919,0.184726,0.937324,0.841329,0.370423,0.0661033,0.974078,0.41395,0.74746,0.666151,0.753453,0.958458,0.29621,0.794374,0.922237,0.0523303,0.91229,0.123716,0.402417,0.618542,0.525877,0.411576,0.95462,0.59098,0.678626,0.356518,0.769225,0.139857,0.0827084,0.918742,0.470981,0.496794,0.566899,0.435419,0.707858,0.35194,0.300305,0.323264,0.842972,0.00788331,0.49002,0.668415,0.946481,0.62486,0.219211,0.0464743,0.784733,0.968982,0.229317,0.480706,0.915582,0.556768,0.0679473,0.180668,0.533656,0.256173,0.634601,0.908239,0.559554,0.818411,0.103282,0.699555,0.610332,0.99173,0.883982,0.597857,0.29983,0.924668,0.772972,0.193548,0.943723,0.386168,0.782916,0.450425,0.406,0.330004,0.0776913,0.805931,0.586618,0.222557,0.925859,0.651721,0.428079,0.0669764,0.746631,0.199859,0.0101007,0.200457,0.464624,0.426489,0.599526,0.907099,0.0302876,0.860449,0.759942,0.91732,0.57802,0.727513,0.848807,0.909204,0.401831,0.878873,0.945132,0.873128,0.655367,0.635327,0.0539803,0.609897,0.57838,0.508777,0.367703,0.665989,0.492432,0.925228,0.32246,0.631127,0.927258,0.831279,0.67982,0.454762,0.161301,0.04992,0.625186,0.32851,0.045903,0.213491,0.446219,0.595257,0.878201,0.441025,0.788799,0.312686,0.029768,0.462639,|0.30771,0.828128,0.758451,0.551698,0.65525,0.143416,0.728476,0.495424,0.178092,0.717886,0.0967292,0.584073,0.700127,0.23393,0.200161,0.340878,0.0784499,0.378469,0.141092,0.320154,0.639999,0.917765,0.98695,0.982684,0.0122705,0.0624812,0.972222,0.168102,0.0401582,0.0134853,0.706954,0.0925674,0.707086,0.13097,0.611691,0.122183,0.890696,0.794305,0.423273,0.371093,0.770292,0.516503,0.0794467,0.835608,0.822748,0.140521,0.678408,0.254018,0.170237,0.905402,0.53304,0.492034,0.677596,0.188367,0.876655,0.974444,0.731807,0.497208,0.132475,0.719643,0.022687,0.374005,0.366048,0.00873739,0.743212,0.740272,0.78771,0.225722,0.283957,0.584408,0.335212,0.705061,0.0878835,0.855478,0.00431609,0.467453,0.940976,0.768499,0.652677,0.454595,0.85946,0.134755,0.161498,0.706212,0.808211,0.35312,0.839406,0.406329,0.849147,0.0295954,0.619719,0.0227891,0.653896,0.320563,0.598613,0.146923,0.340747,0.536759,0.311834,0.724994,0.876041,0.475586,0.288655,0.250536,0.640531,0.352253,0.458676,0.246556,0.252209,0.862925,0.748099,0.686922,0.926982,0.0383962,0.690851,0.815725,0.33524,0.219981,0.0952995,0.121379,0.722188,0.80452,0.330414,0.719192,0.74803,0.822999,0.625991,0.820947,0.361499,0.813729,0.693553,0.154422,0.788291,0.646189,0.546602,0.423205,0.977502,0.483989,0.654175,0.402649,0.893121,0.104719,0.197302,0.319177,0.702154,0.0863734,0.0621123,0.419746,0.0106552,0.91694,0.130535,0.727774,0.235653,0.0799034,0.66081,0.492966,0.286972,0.970093,0.919649,0.804049,0.432657,0.523703,0.268521,0.188038,0.861912,0.764749,0.126446,0.558554,0.69821,0.602535,0.667819,0.539396,0.546439,0.939135,0.934152,0.203078,0.0288323,0.325343,0.847384,0.0985252,0.566503,0.428198,0.0618565,0.391191,0.283911,0.667452,0.706061,0.117705,0.669923,0.328883,0.00904244,0.064417,0.593448,0.172796,0.626634,0.820993,0.0896377,0.657242,0.789367,0.171974,0.611153,0.342768,0.979645,0.44023,0.113327,0.18015,0.176325,0.0387993,0.24149,0.403699,0.247663,0.436697,0.359529,0.00523925,0.65972,0.0167736,0.0314736,0.71835,0.742016,0.497272,0.640124,0.361025,0.585571,0.0885965,0.800615,0.101068,0.696295,0.8697,0.949024,0.801526,0.974259,0.694133,0.0294576,0.152787,0.321751,0.101847,0.765304,0.602198,0.823626,0.684693,0.049168,0.133399,0.779409,0.0721019,0.93273,0.406376,0.311438,0.346868,0.288682,0.688356,0.121814,0.183189,0.172261,0.832765,0.721828,0.705977,0.548625,0.569596,0.766853,0.382338,0.270093,0.253864,0.664315,0.707845,0.233176,0.87899,0.355013,0.983674,0.433626,0.682193,0.401435,0.200222,0.379781,0.1474,0.215941,0.059036,0.66816,0.480319,0.25919,0.0705967,0.389095,0.0581445,0.772782,0.243097,0.743716,0.115697,0.33506,0.662184,0.477894,0.802889,0.190578,0.954822,0.131006,0.037217,0.402918,0.0559517,0.254457,0.667321,0.339735,0.0443587,0.866552,0.174147,0.887619,0.26734,0.854568,0.724356,0.0960501,0.272164,0.0403431,0.735895,0.982746,0.53417,0.0890657,0.00934792,0.447444,0.611834,0.312242,0.83746,0.295252,0.583682,0.0770096,0.0195842,0.362696,0.930218,0.442758,0.817157,0.619152,0.635897,0.755235,0.911438,0.0794499,0.190348,0.854378,0.856013,0.924423,0.195345,0.130907,0.299781,0.304649,0.415528,0.726857,0.148448,0.552093,0.487386,0.0838482,0.300807,0.576276,0.807023,0.687209,0.865547,0.873565,0.734762,0.466476,0.56842,0.102878,0.279574,0.548028,0.56805,0.699681,0.579611,0.221187,0.517849,0.0183941,0.18741,0.410084,0.339662,0.878031,0.0846709,0.687708,0.00323087,0.392947,0.535863,0.150876,0.0848287,0.727325,0.256576,0.923121,0.749775,0.200333,0.0693964,0.91337,0.643379,0.0537021,0.561741,0.156331,0.301339,0.621759,0.931844,0.506046,0.438831,0.363938,0.820029,0.802866,0.747663,0.452257,0.240537,0.17946,0.558274,0.293373,0.539825,0.611663,0.66279,0.537871,0.862908,0.637776,0.250237,0.852205,0.445324,0.861564,0.836975,0.471946,0.149868,0.304155,0.421735,0.711433,0.126232,0.749237,0.101785,0.208095,0.0904443,0.083436,0.618913,0.200955,0.506155,0.257966,0.17606,0.301913,0.406561,0.982972,0.870663,0.753669,0.652182,0.306548,0.879598,0.0347633,0.849271,0.504697,0.0393396,0.159552,0.677751,0.327778,0.0825227,0.897797,0.321738,0.270137,0.409721,0.502499,0.35968,0.62003,0.0863593,0.521384,0.787582,0.343691,0.078931,0.972762,0.415367,0.159069,0.894352,0.945778,0.845684,0.807621,0.035226,0.0931285,0.649612,0.906014,0.36532,0.806004,0.0413696,0.38959,0.644111,0.758764,0.605658,0.302751,0.709187,0.722737,0.194718,0.398301,0.743489,0.641029,0.294173,0.601906,0.88112,0.68301,0.279561,0.756655,0.400203,0.0180255,0.385914,0.458981,0.451389,0.56506,0.218077,0.930498,0.480387,0.414797,0.57964,0.396276,0.605346,0.050217,0.926807,0.899553,0.664384,0.774241,0.128013,0.498364,0.776036,0.447028,0.225218,0.955139,0.953435,0.0172256,0.650304,0.93464,0.291832,0.913794,0.834553,0.65126,0.271544,0.0377782,0.850791,0.952894,0.355131,0.282737,0.710631,0.398409,0.0393952,0.886773,0.585056,0.00755966,0.409923,0.924048,0.611719,0.259127,0.222157,0.57294,0.521323,0.297288,0.106265,0.872052,0.86054,0.45417,0.0666935,0.0128821,0.804184,0.164865,0.337053,0.26957,0.76724,0.0454825,0.089895,0.646941,0.949456,0.269354,0.490388,0.869538,0.557193,0.316791,0.550878,0.917692,0.836076,0.292121,0.175037,0.276403,0.0871484,0.292522,0.382929,0.737632,0.0670403,0.568869,0.860047,0.426471,0.718464,0.0170529,0.680605,0.759749,0.910606,0.952458,0.106945,0.41456,0.907101,0.773474,0.778286,0.687833,0.84282,0.316244,0.551062,0.488628,0.856471,0.265321,0.566485,0.0387437,0.332119,0.647866,0.936199,0.718046,0.601071,0.437877,0.410898,0.077554,0.306279,0.668693,0.62977,0.116256,0.326033,0.416915,0.323357,0.525842,0.83408,0.287225,0.905356,0.335059,0.607872,0.596479,0.284915,0.719244,0.0473931,0.73195,0.457761,0.770556,0.179743,0.862709,0.489155,0.577453,0.923508,0.730556,0.446929,0.523971,0.124913,0.479301,0.0919672,0.34008,0.363025,0.349926,0.896627,0.861938,0.261534,0.874653,0.331231,0.632264,0.526323,0.827549,0.000201344,0.549605,0.530753,0.339647,0.651815,0.428039,0.70073,0.779136,0.473722,0.637179,0.765459,0.820961,0.0671704,0.710047,0.644659,0.328215,0.105575,0.925426,0.571723,0.412307,0.854377,0.493908,0.688745,0.355792,0.799514,0.429873,0.750828,0.705712,0.459048,0.0814301,0.351334,0.796129,0.456228,0.379065,0.244195,0.317163,0.5728,0.13698,0.0150025,0.866824,0.922629,0.695912,0.0485398,0.841397,0.00211668,0.986135,0.178926,0.855322,0.0935459,0.670697,0.72271,0.672265,0.938241,0.554596,0.267229,0.899941,0.820921,0.517427,0.417373,0.606012,0.531803,0.140593,0.0489275,0.126641,0.113913,0.519859,0.884366,0.972772,0.149845,0.241212,0.820199,0.430572,0.716041,0.592347,0.0234614,0.742379,0.399157,0.82086,0.949502,0.437702,0.929129,0.768904,0.88215,0.294589,0.167748,0.84487,0.868998,0.835834,0.671354,0.517086,0.264823,0.72409,0.0641459,0.960287,0.310223,0.540273,0.865872,0.729527,0.930074,0.546363,0.658109,0.346444,0.196616,0.454864,0.4282,0.0375644,0.0947816,0.0484033,0.750726,0.343058,0.613544,0.107773,0.137771,0.313779,0.103146,0.489946,0.952491,0.103327,0.524678,0.742774,0.415318,0.786976,0.909682,0.451253,0.17459,0.842955,0.603188,0.090744,0.194406,0.370758,0.0391134,0.530524,0.593196,0.95002,0.00251997,0.0425829,0.103519,0.0448718,0.221438,0.175644,0.832984,0.748012,0.0332319,0.40946,0.960109,0.745292,0.246913,0.566332,0.501355,0.253933,0.354496,0.0789347,0.764073,0.314056,0.966644,0.606954,0.761605,0.93297,0.58905,0.765328,0.374623,0.957515,0.410242,0.0713471,0.122728,0.804606,0.992933,0.804484,0.949698,0.372985,0.727219,0.00011456,0.686846,0.539207,0.382351,0.123533,0.425314,0.564862,0.377171,0.29521,0.991447,0.754467,0.903906,0.884098,0.236738,0.665613,0.230347,0.671851,0.142697,0.156589,0.896268,0.560898,0.636291,0.643291,0.41941,0.335379,0.876705,0.752426,0.93181,0.419521,0.752219,0.402789,0.274683,0.422151,0.784664,0.962657,0.528817,0.688363,0.355078,0.961085,0.998122,0.10793,0.233519,0.00918365,0.299266,0.940803,0.199334,0.671048,0.543844,0.75713,0.922611,0.81583,0.99611,0.409691,0.980748,0.0942723,0.73305,0.356808,0.314908,0.670838,0.724913,0.949182,0.630999,0.678798,0.628062,0.590702,0.51812,0.336394,0.311041,0.0768015,0.794136,0.550961,0.926604,0.450259,0.597612,0.332598,0.430843,0.250371,0.404576,0.736073,0.5861,0.677983,0.774677,0.540848,0.704581,0.685028,0.172047,0.992054,0.221158,0.62846,0.421957,0.169111,0.732355,0.0891319,0.544191,0.336054,0.464314,0.808022,0.0753084,0.193824,0.985127,0.136292,0.637132,0.800709,0.453087,0.990493,0.0160478,0.50959,0.19631,0.158342,0.824306,0.880652,0.908233,0.86323,0.44147,0.703323,0.716626,0.143926,0.420107,0.331314,0.32816,0.587814,0.377769,0.244932,0.54987,0.0958914,0.0145856,0.36987,0.235537,0.662136,0.482815,0.75114,0.844359,0.252059,0.178219,0.478814,0.734463,0.609002,0.526846,0.158748,0.836785,0.736717,0.899773,0.0946537,0.21782,0.230964,0.463111,0.953323,0.681058,0.787282,0.0514442,0.0649557,0.128987,0.401821,0.656779,0.00946677,0.757187,0.708597,0.611021,0.298721,0.488641,0.70606,0.341679,0.735496,0.973794,0.418488,0.916674,0.371731,0.847863,0.174811,0.354436,0.825973,0.195088,0.200154,0.704553,0.381384,0.425318,0.166207,0.37731,0.148671,0.867999,0.225574,0.597014,0.703824,0.736947,0.815693,0.991967,0.0384886,0.585863,|0.836741,0.631069,0.594378,0.480219,0.322004,0.76091,0.248315,0.921419,0.325381,0.279256,0.0488124,0.100746,0.580645,0.52686,0.73171,0.384749,0.814976,0.363876,0.129093,0.336319,0.998745,0.519331,0.560559,0.513913,0.717002,0.503498,0.286551,0.899053,0.827466,0.959138,0.646495,0.604338,0.090317,0.86963,0.748104,0.054433,0.0109317,0.961673,0.534546,0.573048,0.405088,0.110786,0.534444,0.0154122,0.332464,0.139214,0.983439,0.140911,0.78743,0.921416,0.449744,0.547503,0.675326,0.902745,0.392984,0.759292,0.418168,0.222456,0.23859,0.589034,0.815117,0.900539,0.420481,0.0790406,0.416914,0.65632,0.344535,0.791455,0.0198908,0.0186148,0.0102335,0.581625,0.0773416,0.208561,0.288761,0.387558,0.290181,0.395218,0.226552,0.90421,0.954469,0.120721,0.591467,0.549414,0.0174168,0.376987,0.963111,0.715736,0.397046,0.286423,0.696575,0.0973922,0.114591,0.776158,0.657357,0.632543,0.564703,0.614239,0.292178,0.467445,0.67652,0.716398,0.515244,0.0454794,0.866859,0.500231,0.181849,0.614729,0.658324,0.207336,0.906526,0.0853001,0.468185,0.340751,0.444328,0.458061,0.286456,0.268594,0.876284,0.124958,0.510874,0.716327,0.697537,0.890825,0.534609,0.769244,0.17226,0.797524,0.352502,0.536353,0.175325,0.27642,0.470902,0.783004,0.762452,0.333406,0.943481,0.691259,0.615025,0.664465,0.876362,0.837618,0.663941,0.465604,0.00433552,0.312558,0.320761,0.302867,0.529996,0.400079,0.823027,0.995773,0.890253,0.675526,0.184091,0.812743,0.673023,0.525866,0.0243954,0.187685,0.634011,0.373006,0.215299,0.340552,0.478892,0.431684,0.551151,0.298073,0.554182,0.548346,0.403287,0.0969599,0.437068,0.688542,0.986438,0.686201,0.174988,0.0650749,0.0806143,0.0145664,0.983779,0.385749,0.0796705,0.704702,0.535887,0.666785,0.610502,0.375941,0.930746,0.677304,0.27932,0.0158008,0.688014,0.613557,0.541371,0.169836,0.0422125,0.302044,0.332831,0.291978,0.822519,0.540386,0.571177,0.389437,0.282349,0.194019,0.609486,0.595486,0.824336,0.404212,0.531762,0.211696,0.566968,0.0989959,0.63361,0.128027,0.508258,0.284467,0.854884,0.166607,0.56301,0.391091,0.390736,0.108225,0.860283,0.535497,0.509805,0.839079,0.0410796,0.889268,0.673122,0.394879,0.0850498,0.291562,0.14474,0.919991,0.566929,0.621714,0.278402,0.128617,0.22517,0.214523,0.0427682,0.24949,0.447093,0.446991,0.890007,0.692805,0.764251,0.549523,0.886187,0.519609,0.65781,0.102249,0.968546,0.582309,0.418183,0.0773499,0.895234,0.657737,0.102087,0.650459,0.682604,0.600927,0.880832,0.328909,0.424885,0.910021,0.635843,0.906914,0.51553,0.770534,0.630127,0.366011,0.652315,0.392012,0.289677,0.769824,0.936036,0.920576,0.859714,0.139153,0.960297,0.192049,0.698648,0.682711,0.814552,0.45004,0.887463,0.503354,0.679678,0.855607,0.269138,0.707091,0.814874,0.568408,0.484142,0.889794,0.15133,0.077577,0.652136,0.760564,0.272284,0.492041,0.186111,0.843615,0.47959,0.837256,0.508795,0.219105,0.889831,0.601751,0.301604,0.443928,0.361222,0.052591,0.281054,0.745097,0.605958,0.37469,0.237918,0.174935,0.659864,0.708406,0.581386,0.769556,0.665123,0.923859,0.414463,0.0699643,0.747408,0.00241721,0.564441,0.338926,0.281264,0.15346,0.634,0.271465,0.474468,0.335526,0.0614734,0.735145,0.0047434,0.666332,0.330682,0.208245,0.499777,0.569206,0.415874,0.4294,0.817501,0.62793,0.459738,0.325521,0.532839,0.178238,0.613932,0.719785,0.859989,0.691446,0.106822,0.183085,0.0829406,0.38043,0.774558,0.282529,0.565171,0.181871,0.0364686,0.844359,0.537226,0.793128,0.307357,0.595399,0.739576,0.268968,0.510881,0.324245,0.105968,0.48478,0.202905,0.762195,0.865773,0.39944,0.47452,0.468525,0.274983,0.505851,0.082987,0.463596,0.182151,0.645992,0.903943,0.849995,0.171701,0.450534,0.908494,0.502417,0.636517,0.845717,0.748427,0.880885,0.557877,0.490956,0.178264,0.148013,0.999573,0.48955,0.985498,0.723797,0.692791,0.717438,0.22018,0.693993,0.887375,0.899585,0.826537,0.556235,0.599475,0.503697,0.461899,0.943961,0.551806,0.161597,0.687628,0.159109,0.449901,0.747221,0.347222,0.731323,0.696662,0.938866,0.465367,0.28808,0.891261,0.883274,0.734482,0.291272,0.942982,0.936831,0.658772,0.722547,0.703741,0.81368,0.184556,0.746427,0.494885,0.432699,0.441926,0.0970097,0.127262,0.475174,0.117876,0.999928,0.745349,0.628984,0.439408,0.21827,0.970505,0.907183,0.315217,0.787123,0.232192,0.177289,0.524327,0.972735,0.158082,0.210439,0.838805,0.641783,0.368445,0.148888,0.384076,0.491144,0.423444,0.39682,0.93577,0.145782,0.15382,0.945002,0.466429,0.890587,0.464546,0.275247,0.730417,0.133143,0.522122,0.446746,0.347149,0.690268,0.534843,0.438494,0.191351,0.54219,0.571033,0.167619,0.626812,0.510922,0.855347,0.214218,0.238058,0.102036,0.386772,0.957999,0.111144,0.485678,0.128995,0.193612,0.318799,0.285506,0.571163,0.558331,0.690811,0.0848724,0.113739,0.802239,0.247938,0.969718,0.149687,0.616103,0.60069,0.820798,0.289509,0.878878,0.596997,0.153341,0.637275,0.554495,0.467751,0.472139,0.387205,0.975479,0.0419801,0.59758,0.306992,0.14859,0.133489,0.893731,0.640847,0.946868,0.0633373,0.510514,0.156828,0.717158,0.419843,0.0894627,0.630815,0.415957,0.458368,0.715587,0.745155,0.525756,0.883672,0.707572,0.236463,0.426091,0.689804,0.271188,0.496891,0.136862,0.00122935,0.910655,0.321495,0.370657,0.107745,0.589164,0.695314,0.649093,0.780173,0.788328,0.455762,0.521114,0.676682,0.572411,0.0106215,0.0250959,0.558073,0.75949,0.804486,0.638651,0.999211,0.787866,0.854236,0.813319,0.502146,0.294206,0.00538135,0.58068,0.464918,0.0305104,0.52501,0.753226,0.9282,0.283134,0.292731,0.274091,0.742077,0.339265,0.132423,0.29392,0.318043,0.478467,0.0325169,0.828032,0.743496,0.430498,0.00583827,0.114976,0.421097,0.603998,0.840456,0.709052,0.4091,0.135435,0.663427,0.659407,0.993453,0.979193,0.943216,0.435046,0.941889,0.765592,0.0795339,0.598642,0.717834,0.199435,0.954581,0.137123,0.63285,0.274429,0.31978,0.500146,0.648753,0.664235,0.317947,0.722041,0.109887,0.0411045,0.427603,0.722632,0.14778,0.378782,0.467411,0.30993,0.979994,0.64693,0.560919,0.560531,0.761902,0.756234,0.664954,0.560605,0.305948,0.441491,0.254642,0.0711128,0.695131,0.649081,0.971698,0.409019,0.621918,0.38475,0.0441397,0.36923,0.657336,0.851488,0.271023,0.156638,0.661735,0.0839443,0.915825,0.951834,0.616815,0.307655,0.858972,0.11823,0.504069,0.0256205,0.0198713,0.610364,0.105055,0.635534,0.997403,0.308163,0.612144,0.205906,0.692527,0.836981,0.565981,0.348935,0.0725352,0.0836856,0.323673,0.950446,0.242057,0.360079,0.966591,0.989801,0.618836,0.146728,0.151614,0.268855,0.0814843,0.0570247,0.771381,0.152152,0.0954925,0.60029,0.417655,0.477487,0.939493,0.381828,0.616918,0.653805,0.973014,0.0191054,0.731786,0.947436,0.904943,0.831551,0.68643,0.981085,0.431644,0.349303,0.297253,0.884765,0.287075,0.808522,0.200558,0.448045,0.105949,0.731001,0.747008,0.314967,0.399502,0.748137,0.535059,0.309063,0.818071,0.457099,0.398184,0.487488,0.316641,0.702241,0.941844,0.511607,0.174575,0.393513,0.92834,0.680035,0.328279,0.951709,0.544466,0.504359,0.557014,0.144415,0.991108,0.277467,0.681683,0.894263,0.405561,0.648619,0.490593,0.265497,0.542167,0.777904,0.465685,0.997269,0.0247845,0.16245,0.431973,0.303227,0.740086,0.453461,0.0601804,0.858269,0.485011,0.102479,0.430812,0.921811,0.541354,0.300675,0.148591,0.819852,0.545881,0.957472,0.661771,0.82587,0.523562,0.362441,0.386187,0.486983,0.983425,0.37285,0.587411,0.650205,0.253443,0.0346119,0.537212,0.798847,0.0389959,0.48503,0.441362,0.0747625,0.32202,0.21464,0.770191,0.830151,0.562463,0.14713,0.979036,0.355332,0.473772,0.0931477,0.844892,0.271594,0.900938,0.789571,0.865819,0.732291,0.596958,0.768824,0.824626,0.688212,0.693375,0.912843,0.443832,0.00838208,0.363262,0.283704,0.949245,0.08438,0.94389,0.122147,0.219572,0.149092,0.198468,0.735694,0.15771,0.249916,0.450729,0.124851,0.311279,0.0147358,0.280916,0.44008,0.996738,0.303102,0.860186,0.392622,0.135349,0.887737,0.223701,0.847215,0.438344,0.282988,0.236825,0.678703,0.95251,0.69578,0.71308,0.827431,0.0521852,0.305394,0.528849,0.229417,0.747223,0.0272081,0.380167,0.27914,0.529413,0.00670421,0.746297,0.488971,0.458604,0.527647,0.560229,0.0159677,0.940533,0.0260066,0.419186,0.992833,0.980473,0.121768,0.973414,0.751056,0.175559,0.907268,0.603591,0.0533749,0.900724,0.981672,0.35048,0.351084,0.96531,0.756908,0.0269295,0.100459,0.143891,0.0549431,0.505906,0.620191,0.189199,0.965152,0.725587,0.3995,0.524055,0.262926,0.472801,0.360186,0.143722,0.314109,0.0935977,0.608994,0.00190169,0.788904,0.161916,0.486491,0.510447,0.934838,0.432668,0.408045,0.577101,0.893375,0.324803,0.730258,0.371645,0.0779811,0.290598,0.599031,0.256625,0.733524,0.0739192,0.6108,0.974619,0.588633,0.268119,0.360626,0.831198,0.237252,0.25893,0.699701,0.589627,0.845025,0.617121,0.125166,0.125908,0.350598,0.149806,0.861419,0.830133,0.990884,0.127227,0.687359,0.504307,0.732966,0.254206,0.718218,0.69377,0.0328707,0.125564,0.202034,0.869603,0.762787,0.538942,0.77579,0.197078,0.425078,0.0878887,0.254851,0.334327,0.974757,0.146569,0.28112,0.265459,0.0672767,0.835802,0.959221,0.865351,0.164444,0.612131,0.497567,0.245078,0.367599,0.128939,0.651281,0.377726,0.184081,0.665493,0.310846,0.722376,0.118126,0.545176,0.73614,0.52037,0.359335,0.862364,0.565606,0.246658,0.182958,|0.29703,0.11559,0.0484965,0.643882,0.0053736,0.436044,0.228645,0.446547,0.111942,0.359429,0.409088,0.632003,0.347195,0.313403,0.220239,0.633202,0.850248,0.996637,0.81663,0.16337,0.0393931,0.68716,0.00907511,0.3986,0.309317,0.847718,0.299804,0.0302268,0.839831,0.80828,0.921021,0.194108,0.591269,0.503096,0.475098,0.0490967,0.572838,0.314728,0.707035,0.200672,0.871935,0.998507,0.53477,0.519524,0.990068,0.19127,0.0843365,0.0727562,0.0540711,0.169499,0.285711,0.674154,0.727056,0.0218714,0.198064,0.891296,0.66722,0.73643,0.562933,0.171364,0.496606,0.868406,0.0228885,0.982718,0.775232,0.108235,0.610682,0.50479,0.974741,0.146263,0.855531,0.231678,0.797431,0.35219,0.819307,0.149972,0.0631204,0.0220671,0.954959,0.0351545,0.071831,0.373446,0.411671,0.855093,0.818111,0.38911,0.758176,0.226988,0.590784,0.795645,0.00482267,0.197248,0.101597,0.61778,0.718794,0.570453,0.728379,0.629204,0.856293,0.617424,0.593346,0.967586,0.498979,0.0885583,0.25544,0.666271,0.92558,0.818697,0.621042,0.381511,0.984281,0.930166,0.258961,0.189764,0.873486,0.613722,0.615991,0.385858,0.961467,0.628044,0.957691,0.703578,0.595691,0.46762,0.405955,0.961407,0.270887,0.950046,0.231621,0.101951,0.226875,0.0570349,0.978122,0.0297146,0.513879,0.871751,0.860547,0.139046,0.34591,0.0512574,0.744316,0.57714,0.601205,0.7254,0.791649,0.722007,0.431912,0.510555,0.5012,0.401272,0.0699299,0.226795,0.374666,0.205925,0.652435,0.652167,0.603728,0.952011,0.338917,0.190504,0.763043,0.84981,0.296695,0.260039,0.710201,0.808261,0.387605,0.0992631,0.474737,0.141325,0.299294,0.90118,0.681945,0.628552,0.622317,0.952647,0.0212145,0.942515,0.24479,0.767222,0.922003,0.206059,0.767688,0.487461,0.198327,0.43108,0.00960064,0.0472217,0.292364,0.192907,0.130159,0.806456,0.144938,0.0951504,0.0985658,0.128827,0.519318,0.820279,0.951765,0.589037,0.630361,0.64812,0.924706,0.197174,0.55565,0.279561,0.0301989,0.222766,0.539233,0.685761,0.66924,0.701005,0.899121,0.328652,0.898021,0.255338,0.503894,0.355652,0.260915,0.538505,0.348837,0.0598442,0.819633,0.544097,0.671624,0.747129,0.433301,0.293954,0.252429,0.429407,0.0474659,0.487951,0.352933,0.188075,0.0767085,0.916875,0.462098,0.791055,0.330555,0.0911673,0.291853,0.0155984,0.792369,0.281908,0.0380743,0.192384,0.293752,0.883926,0.0337643,0.00679672,0.519582,0.288757,0.643214,0.114514,0.122086,0.0823153,0.232311,0.506921,0.91076,0.881775,0.468161,0.146389,0.0367516,0.359633,0.27321,0.0298289,0.67252,0.420788,0.72512,0.70793,0.744317,0.441073,0.8974,0.0061484,0.420824,0.302573,0.0690313,0.32123,0.277404,0.392127,0.240403,0.975227,0.797431,0.532715,0.277933,0.896185,0.203807,0.363111,0.506091,0.871985,0.0277013,0.803907,0.766066,0.796637,0.956905,0.847452,0.239287,0.29041,0.882267,0.312515,0.566167,0.609316,0.97731,0.00101173,0.454673,0.0195943,0.278201,0.642862,0.247626,0.0604343,0.0214549,0.702412,0.580881,0.10141,0.697175,0.837203,0.080825,0.678537,0.57127,0.689442,0.480317,0.429134,0.144922,0.769915,0.848542,0.035773,0.389173,0.332695,0.275372,0.0730819,0.141813,0.439747,0.249394,0.640889,0.642149,0.974161,0.418674,0.550769,0.1925,0.125317,0.230095,0.213858,0.521245,0.663503,0.217134,0.429733,0.216653,0.00343484,0.883834,0.869575,0.937963,0.248828,0.401303,0.399848,0.456358,0.910969,0.879366,0.374809,0.488857,0.768109,0.567615,0.5312,0.2912,0.59677,0.442191,0.932318,0.656999,0.461083,0.920914,0.103134,0.72824,0.54632,0.309519,0.893238,0.255206,0.0249578,0.683233,0.226685,0.583302,0.174716,0.612408,0.180254,0.462846,0.283693,0.209914,0.814219,0.28938,0.36243,0.324908,0.159589,0.574425,0.38429,0.347832,0.13564,0.899061,0.187312,0.220267,0.708985,0.507088,0.33808,0.812644,0.391572,0.215855,0.640421,0.366874,0.249944,0.235209,0.0401483,0.0561274,0.0852695,0.776381,0.513503,0.35075,0.518745,0.697837,0.350372,0.478009,0.561367,0.787365,0.273373,0.173378,0.388355,0.629316,0.388875,0.621405,0.767495,0.600226,0.423931,0.858017,0.554502,0.248984,0.180439,0.431331,0.651202,0.69981,0.222752,0.579624,0.299926,0.487648,0.0431873,0.0955945,0.509169,0.773496,0.216971,0.869744,0.804763,0.5598,0.35285,0.00258166,0.346475,0.768352,0.711511,0.0775261,0.233654,0.415305,0.811322,0.357197,0.517878,0.281873,0.716777,0.694857,0.359146,0.81538,0.702502,0.859725,0.0498607,0.609731,0.478764,0.117703,0.322216,0.722267,0.621763,0.197381,0.163026,0.2838,0.579032,0.921473,0.756859,0.92719,0.424008,0.857258,0.226401,0.437757,0.16382,0.209794,0.980855,0.775303,0.801883,0.579197,0.166956,0.71515,0.16253,0.328713,0.252693,0.80014,0.559609,0.626851,0.81939,0.585615,0.636495,0.596532,0.0749755,0.0861655,0.597715,0.254386,0.832954,0.00340611,0.814355,0.114767,0.293813,0.617901,0.978689,0.289295,0.726469,0.421587,0.835792,0.96691,0.590574,0.551622,0.982138,0.7122,0.109636,0.0479512,0.883552,0.763103,0.119596,0.954037,0.504111,0.717619,0.3314,0.0220206,0.808899,0.379067,0.103058,0.252406,0.469969,0.183157,0.435986,0.820547,0.311459,0.112578,0.797244,0.0344502,0.544078,0.39265,0.557344,0.286691,0.727753,0.70909,0.879011,0.300944,0.560027,0.110074,0.544457,0.751134,0.479628,0.746286,0.916992,0.77992,0.358616,0.850248,0.0115715,0.98381,0.661114,0.847519,0.424231,0.773952,0.203372,0.897682,0.862555,0.720639,0.166313,0.784649,0.317947,0.562375,0.275656,0.791796,0.563083,0.928319,0.592708,0.92,0.666669,0.514634,0.67175,0.229325,0.203081,0.325344,0.471808,0.50182,0.671373,0.744933,0.359478,0.0770528,0.96854,0.953146,0.0602931,0.863076,0.66373,0.113193,0.45926,0.252688,0.234187,0.333734,0.58425,0.659417,0.111916,0.777544,0.397211,0.789432,0.596981,0.842627,0.345884,0.980056,0.967901,0.626134,0.32809,0.466858,0.854863,0.0749717,0.439625,0.0837532,0.145793,0.754609,0.523428,0.459303,0.870369,0.795937,0.22962,0.505746,0.180117,0.508779,0.719266,0.303293,0.512334,0.455843,0.483731,0.0635071,0.410615,0.705795,0.816331,0.316866,0.494164,0.415683,0.840381,0.721584,0.0292978,0.336607,0.0391731,0.794299,0.0515957,0.193377,0.888608,0.675573,0.30762,0.326761,0.945972,0.156538,0.0428963,0.514002,0.91405,0.0389893,0.219042,0.556972,0.315363,0.735901,0.985816,0.188672,0.911305,0.869417,0.704341,0.463845,0.99226,0.621385,0.44913,0.130039,0.851528,0.386361,0.810905,0.272956,0.624599,0.893378,0.933755,0.884421,0.232028,0.220904,0.329201,0.343797,0.0432958,0.791728,0.185878,0.532918,0.427376,0.985507,0.508821,0.266445,0.105768,0.317704,0.496272,0.19816,0.732569,0.729434,0.582964,0.156153,0.457457,0.986346,0.23053,0.566711,0.0072009,0.31326,0.736358,0.685993,0.712665,0.47747,0.500461,0.286945,0.503585,0.739404,0.714556,0.42425,0.338429,0.323585,0.238481,0.380279,0.0795404,0.285392,0.478221,0.909319,0.132452,0.648168,0.439544,0.153597,0.406288,0.565353,0.108288,0.879109,0.294281,0.947115,0.679139,0.248201,0.479052,0.860318,0.369705,0.945729,0.732422,0.676126,0.61392,0.121537,0.527807,0.622012,0.981237,0.815774,0.346377,0.540843,0.889766,0.512943,0.194721,0.972066,0.326111,0.775844,0.556639,0.836073,0.797985,0.506156,0.281751,0.0397692,0.146274,0.655434,0.382312,0.186876,0.140449,0.91014,0.855713,0.409276,0.993652,0.97423,0.227185,0.445359,0.392896,0.8404,0.800288,0.1349,0.697414,0.517969,0.152552,0.880849,0.549584,0.867063,0.939552,0.12384,0.861458,0.655879,0.434695,0.134225,0.00276595,0.421948,0.0682559,0.0857892,0.621807,0.226402,0.962874,0.813158,0.176515,0.614947,0.0378736,0.949887,0.178148,0.98001,0.261525,0.693441,0.588954,0.951341,0.0600771,0.796059,0.175364,0.0252166,0.214373,0.188817,0.676414,0.273451,0.659415,0.992775,0.380094,0.874231,0.772573,0.69186,0.219376,0.738089,0.601495,0.862188,0.735207,0.786383,0.813699,0.495991,0.962766,0.40721,0.0873107,0.977574,0.420319,0.442623,0.612601,0.970287,0.876808,0.843471,0.0911118,0.900706,0.524553,0.432344,0.211102,0.186904,0.069743,0.0873938,0.067314,0.961405,0.275146,0.768594,0.87174,0.541293,0.939654,0.128176,0.308614,0.737881,0.112375,0.139382,0.227117,0.926405,0.779667,0.258148,0.520069,0.824311,0.81273,0.595541,0.0295539,0.757601,0.927391,0.130857,0.845184,0.912294,0.627776,0.84303,0.00191015,0.259946,0.395508,0.969055,0.771707,0.156947,0.6724,0.7355,0.925495,0.995876,0.66779,0.95197,0.396812,0.0358502,0.399622,0.756431,0.452592,0.221146,0.820949,0.90656,0.19271,0.672804,0.783652,0.112424,0.22334,0.0795018,0.985717,0.340613,0.798504,0.761268,0.594386,0.534083,0.279025,0.186648,0.154266,0.873307,0.779625,0.488334,0.237109,0.801067,0.822648,0.744685,0.0362815,0.62001,0.526566,0.451076,0.499428,0.917357,0.928562,0.00788683,0.288942,0.924364,0.782516,0.204632,0.936186,0.0758855,0.432761,0.656551,0.444628,0.192558,0.19913,0.108588,0.182363,0.251984,0.504257,0.227216,0.26127,0.431885,0.136871,0.841737,0.55621,0.834853,0.810194,0.22226,0.715474,0.896734,0.067865,0.725771,0.960383,0.982025,0.41006,0.631943,0.608834,0.480752,0.449347,0.0498395,0.444902,0.785623,0.0998528,0.311086,0.0105015,0.750648,0.453614,0.267752,0.691225,0.721865,0.637187,0.943468,0.777011,0.664494,0.0293942,0.35146,0.554087,0.981613,0.671625,0.669362,0.903446,0.571362,0.323836,0.358965,0.271451,0.878649,0.208573,0.473595,0.376186,0.942365,0.973813,0.329247,0.751162,0.241269,0.820655,|0.297042,0.51539,0.546276,0.7358,0.1837,0.739938,0.349126,0.898833,0.186394,0.894305,0.746397,0.41822,0.0014953,0.136401,0.628709,0.209247,0.316634,0.371331,0.932036,0.684178,0.307921,0.427755,0.583072,0.100528,0.558469,0.228814,0.885958,0.281188,0.908923,0.322849,0.0822949,0.245449,0.667074,0.862562,0.704844,0.349378,0.758838,0.0984916,0.194516,0.623815,0.505263,0.507062,0.391653,0.99012,0.260057,0.83822,0.691998,0.741289,0.841542,0.877138,0.406825,0.88408,0.855929,0.507644,0.114465,0.772304,0.0622863,0.198706,0.944258,0.316897,0.239609,0.292004,0.0267503,0.916466,0.596887,0.772169,0.498364,0.582647,0.928654,0.363503,0.299657,0.828914,0.888167,0.885175,0.207795,0.83602,0.17152,0.755548,0.997492,0.359614,0.0227139,0.35338,0.295352,0.461778,0.912996,0.533271,0.148808,0.22684,0.24744,0.121463,0.136049,0.867396,0.467452,0.459868,0.359243,0.744544,0.0433341,0.745345,0.959681,0.830892,0.515898,0.273849,0.119149,0.522521,0.985071,0.33622,0.780276,0.00203484,0.729726,0.853532,0.405984,0.92588,0.330118,0.93361,0.117679,0.557156,0.461661,0.234449,0.415828,0.961838,0.426181,0.831675,0.63451,0.482257,0.0681328,0.158453,0.292524,0.0693403,0.627701,0.0787944,0.486528,0.447163,0.808301,0.983016,0.0481228,0.61938,0.70506,0.989853,0.584988,0.849854,0.408876,0.185692,0.128785,0.444742,0.938587,0.681429,0.291346,0.847775,0.283529,0.6353,0.498683,0.603075,0.53728,0.392198,0.196691,0.374697,0.0829158,0.513873,0.991277,0.170141,0.660754,0.236557,0.504543,0.398623,0.60264,0.982458,0.459229,0.602775,0.367449,0.229976,0.113949,0.30699,0.265226,0.307177,0.381464,0.228498,0.469341,0.500936,0.717531,0.954898,0.379837,0.435754,0.618294,0.662001,0.227461,0.759906,0.00193256,0.566745,0.282462,0.228302,0.391722,0.562088,0.116469,0.994196,0.111733,0.740699,0.903452,0.00295997,0.426595,0.730322,0.613212,0.349221,0.0115919,0.188125,0.575348,0.0382795,0.951811,0.97021,0.562724,0.00753087,0.835032,0.34742,0.126262,0.223551,0.339079,0.0786161,0.660662,0.932052,0.477983,0.343986,0.99574,0.15103,0.663965,0.376658,0.691851,0.862835,0.722043,0.876629,0.807278,0.452173,0.558276,0.450684,0.792596,0.669206,0.632198,0.574231,0.8714,0.538087,0.681564,0.119397,0.660541,0.461082,0.556376,0.206816,0.18541,0.835509,0.450099,0.210545,0.620862,0.0254864,0.997599,0.978477,0.120628,0.159401,0.428289,0.380146,0.337953,0.166501,0.3763,0.628639,0.0566364,0.779552,0.426039,0.632929,0.970768,0.560759,0.657876,0.509198,0.308213,0.158626,0.022922,0.686093,0.0798151,0.418308,0.803821,0.341895,0.498651,0.31667,0.754683,0.803161,0.1214,0.742833,0.84465,0.236146,0.843288,0.241118,0.539419,0.204846,0.000222623,0.609833,0.72567,0.206489,0.904997,0.89334,0.720489,0.629514,0.490111,0.670804,0.703435,0.971869,0.0731401,0.685001,0.149727,0.69644,0.986958,0.840243,0.495187,0.802455,0.248474,0.421695,0.740694,0.231069,0.484144,0.456531,0.495015,0.823304,0.0636247,0.880465,0.791143,0.00147402,0.432956,0.0672689,0.784055,0.22909,0.530066,0.861043,0.737704,0.566505,0.719293,0.391535,0.466206,0.810204,0.317435,0.833266,0.590264,0.360769,0.626456,0.803262,0.0479749,0.751838,0.393038,0.974173,0.465568,0.776191,0.775284,0.539751,0.248204,0.764229,0.309645,0.757968,0.64908,0.69955,0.0489196,0.095409,0.267995,0.173827,0.342131,0.697871,0.369322,0.334247,0.0476812,0.918082,0.217382,0.64482,0.561659,0.543406,0.459881,0.741717,0.402346,0.737603,0.768848,0.00503337,0.966487,0.977862,0.782598,0.519989,0.841127,0.484517,0.448059,0.556139,0.867963,0.620711,0.332856,0.888721,0.228944,0.586573,0.418181,0.50205,0.973724,0.0398936,0.988855,0.385106,0.94315,0.531886,0.911022,0.0527983,0.13709,0.650665,0.92352,0.832845,0.95864,0.622543,0.814762,0.790609,0.852345,0.0912623,0.0476187,0.47346,0.195147,0.833978,0.973542,0.386383,0.614677,0.349302,0.822822,0.171688,0.00759846,0.309574,0.603096,0.0226129,0.0973961,0.294447,0.72621,0.90193,0.982044,0.74733,0.761562,0.861746,0.707047,0.967604,0.87427,0.878902,0.526686,0.234161,0.233463,0.255464,0.232055,0.125202,0.509407,0.957056,0.768779,0.279208,0.581814,0.0806497,0.491939,0.797568,0.957812,0.7363,0.835838,0.623911,0.211078,0.684359,0.523719,0.626244,0.522104,0.45998,0.0798028,0.516861,0.700008,0.845347,0.621054,0.400581,0.919431,0.459574,0.366815,0.739417,0.069047,0.388874,0.240703,0.0709221,0.347275,0.253991,0.913951,0.970795,0.587662,0.472655,0.370592,0.191465,0.418087,0.815298,0.848631,0.642716,0.764349,0.689128,0.40897,0.834661,0.749907,0.0363578,0.0952768,0.74293,0.331508,0.424637,0.730854,0.68815,0.932784,0.533433,0.15765,0.621336,0.43326,0.973653,0.849582,0.650474,0.434044,0.921517,0.790505,0.231746,0.331108,0.148857,0.370351,0.931638,0.464736,0.641369,0.650187,0.659287,0.538479,0.192134,0.117054,0.49299,0.866983,0.17127,0.681681,0.577228,0.389422,0.32805,0.380656,0.870437,0.581754,0.636795,0.0944617,0.122122,0.885746,0.853574,0.41657,0.883905,0.280288,0.223463,0.937171,0.34159,0.307558,0.369403,0.440542,0.873545,0.859419,0.0301058,0.299971,0.889161,0.135137,0.606478,0.496616,0.899199,0.422944,0.59174,0.412231,0.425385,0.664562,0.67846,0.488218,0.948792,0.607846,0.222468,0.248208,0.586169,0.79054,0.711278,0.495293,0.783086,0.268888,0.269574,0.597838,0.370403,0.108724,0.291193,0.0431679,0.807732,0.29545,0.0827754,0.410485,0.282748,0.133257,0.700465,0.357795,0.734676,0.299501,0.890721,0.501988,0.279489,0.0307599,0.445244,0.706972,0.637,0.255163,0.288254,0.0992045,0.90629,0.581381,0.211079,0.984993,0.508078,0.953123,0.81998,0.369192,0.187967,0.676297,0.254048,0.52253,0.0983943,0.582687,0.0925739,0.579103,0.987066,0.970855,0.845484,0.186058,0.235863,0.00204641,0.711342,0.209904,0.870799,0.438332,0.755961,0.75555,0.0522996,0.560125,0.90904,0.27946,0.617824,0.0361233,0.0262826,0.0717779,0.0941129,0.535423,0.0984817,0.321074,0.32318,0.705405,0.886812,0.323887,0.903508,0.454614,0.114165,0.816331,0.368345,0.00592738,0.890653,0.910073,0.0944809,0.0169511,0.422849,0.0158209,0.869611,0.285203,0.511151,0.235081,0.456702,0.579389,0.333153,0.785955,0.61164,0.17667,0.862317,0.20605,0.206478,0.871401,0.884831,0.0462344,0.148117,0.886246,0.558502,0.970075,0.263947,0.589904,0.786689,0.891044,0.984243,0.171561,0.850888,0.249082,0.637689,0.584517,0.152156,0.311706,0.996436,0.962062,0.239824,0.511713,0.919928,0.588866,0.584343,0.693291,0.232483,0.535293,0.291535,0.75192,0.876297,0.427691,0.575877,0.196814,0.886735,0.837769,0.254235,0.46418,0.397006,0.42602,0.785939,0.150257,0.0738012,0.127375,0.26627,0.870601,0.691345,0.851302,0.2902,0.769961,0.589212,0.715421,0.21789,0.264702,0.799993,0.509258,0.85503,0.251453,0.365612,0.377073,0.2943,0.96638,0.364805,0.657066,0.635832,0.173401,0.662658,0.00133216,0.534338,0.733763,0.452762,0.931162,0.955008,0.986149,0.603069,0.218862,0.477355,0.909702,0.400935,0.145604,0.475608,0.925388,0.221091,0.0899033,0.492503,0.0708486,0.991133,0.0531468,0.562758,0.0523566,0.729421,0.895758,0.366318,0.299339,0.820359,0.0518724,0.344311,0.667688,0.370351,0.0189101,0.214993,0.877786,0.356991,0.355211,0.593178,0.404649,0.320086,0.298354,0.737896,0.363542,0.0143514,0.798887,0.299701,0.119939,0.655649,0.972236,0.305844,0.667711,0.0911924,0.202522,0.862175,0.613709,0.547761,0.749639,0.641956,0.6197,0.468335,0.663711,0.668049,0.981422,0.219439,0.316196,0.470824,0.847827,0.150454,0.54269,0.732941,0.923342,0.564169,0.52805,0.957791,0.780419,0.73325,0.495996,0.780384,0.26084,0.240366,0.702673,0.833329,0.481951,0.645198,0.816815,0.0399573,0.446332,0.355037,0.876371,0.532718,0.934202,0.628915,0.892548,0.898611,0.640604,0.138904,0.188209,0.653674,0.284963,0.507573,0.863339,0.540587,0.287797,0.309445,0.313108,0.105071,0.264716,0.826427,0.814786,0.959533,0.186567,0.40799,0.61968,0.546735,0.563664,0.173411,0.962674,0.139693,0.28413,0.489498,0.0263213,0.619044,0.282408,0.517266,0.186016,0.879054,0.464855,0.550278,0.690933,0.67918,0.42471,0.550357,0.0691959,0.771856,0.421435,0.624848,0.346853,0.55175,0.0685869,0.905139,0.852498,0.103914,0.875835,0.768911,0.668294,0.0199555,0.13429,0.529773,0.760781,0.775368,0.24496,0.225016,0.691867,0.710172,0.912226,0.956172,0.844133,0.142477,0.0807893,0.196566,0.21367,0.279218,0.227482,0.45386,0.337985,0.969223,0.52344,0.423402,0.398653,0.641184,0.480142,0.426266,0.559577,0.608168,0.0233213,0.332274,0.937792,0.836308,0.409981,0.330273,0.515081,0.250068,0.774725,0.683126,0.234747,0.424044,0.140672,0.606012,0.81968,0.614469,0.146368,0.169989,0.120455,0.118056,0.201881,0.124167,0.206455,0.367024,0.825303,0.205658,0.334752,0.391684,0.435426,0.200893,0.391352,0.304816,0.720853,0.3981,0.0728234,0.0664502,0.213039,0.235368,0.389107,0.231293,0.895235,0.135711,0.321852,0.712642,0.178034,0.606019,0.181842,0.679976,0.97676,0.257693,0.154824,0.533768,0.263184,0.618051,0.320062,0.816498,0.125758,0.40389,0.00609493,0.11325,0.742633,0.528655,0.866837,0.676937,0.0415545,0.863325,0.743924,0.873506,0.0765916,0.807066,0.297819,0.0666978,0.869671,0.0674369,0.395093,0.680825,0.920035,0.270167,0.809354,0.24109,0.288811,0.697544,0.806788,0.649442,0.44709,0.898019,0.916059,0.109242,0.608172,0.391132,0.289646,0.758666,0.833663,0.862308,0.724987,0.64759,|0.372889,0.0168254,0.774412,0.751419,0.513016,0.695143,0.825184,0.788534,0.852066,0.0601599,0.538125,0.858619,0.456833,0.535595,0.795372,0.352024,0.814958,0.544648,0.61542,0.720438,0.430215,0.423995,0.51153,0.294387,0.837402,0.167539,0.926768,0.566085,0.560032,0.276991,0.70499,0.777501,0.643184,0.629673,0.167193,0.694065,0.579071,0.210525,0.758549,0.546406,0.732341,0.553473,0.540614,0.0521067,0.226818,0.159744,0.763645,0.622744,0.323483,0.522886,0.140342,0.493244,0.619358,0.396872,0.576754,0.687558,0.234031,0.533843,0.776208,0.761082,0.0653355,0.44635,0.317059,0.829488,0.379413,0.233238,0.600647,0.889321,0.0529485,0.539019,0.186058,0.0711014,0.980024,0.447866,0.20884,0.401075,0.841788,0.982848,0.567529,0.794263,0.24526,0.102181,0.774378,0.0438251,0.0861815,0.368908,0.346299,0.89487,0.969635,0.333173,0.750677,0.738474,0.434268,0.963742,0.737904,0.992308,0.441287,0.922284,0.382242,0.018512,0.0972556,0.745316,0.13406,0.0449914,0.00616032,0.105355,0.163868,0.4887,0.711117,0.26693,0.156264,0.118145,0.462707,0.442211,0.613687,0.391477,0.681813,0.989358,0.462729,0.701044,0.0769826,0.419624,0.882304,0.778492,0.662981,0.633895,0.597277,0.854976,0.0916477,0.106364,0.874264,0.554943,0.387616,0.545648,0.76466,0.964985,0.979281,0.643523,0.458335,0.00430614,0.0531844,0.966531,0.974616,0.500446,0.879171,0.899903,0.52131,0.508956,0.521967,0.995107,0.534203,0.0687817,0.216758,0.994232,0.705373,0.720983,0.778194,0.391439,0.378249,0.153338,0.258762,0.335833,0.628216,0.87768,0.706203,0.465317,0.820289,0.207015,0.186058,0.437831,0.615505,0.0991818,0.902173,0.334139,0.895733,0.180594,0.127014,0.669124,0.0614391,0.817581,0.02029,0.697628,0.774851,0.276189,0.742622,0.436672,0.442196,0.558472,0.829731,0.756063,0.562613,0.883576,0.842072,0.631211,0.862003,0.828752,0.687826,0.763242,0.196802,0.260597,0.865442,0.41603,0.535968,0.453763,0.267032,0.031121,0.0194762,0.874947,0.207696,0.778119,0.0853423,0.762009,0.210478,0.496293,0.857896,0.952185,0.695118,0.776467,0.67492,0.690726,0.412708,0.241667,0.190407,0.662955,0.151237,0.836606,0.490923,0.85118,0.933345,0.648177,0.607666,0.0434155,0.831212,0.705731,0.527011,0.327563,0.190792,0.813993,0.0397731,0.780025,0.138502,0.98799,0.892661,0.198077,0.144243,0.425447,0.566055,0.967846,0.267582,0.495728,0.307252,0.0830629,0.142835,0.835812,0.174927,0.338554,0.76294,0.277089,0.33138,0.720579,0.110669,0.0743957,0.858166,0.841134,0.205766,0.158557,0.49854,0.193755,0.911345,0.760491,0.447411,0.286919,0.00391912,0.0609506,0.385865,0.54515,0.302317,0.144187,0.58861,0.581373,0.46042,0.47754,0.664987,0.245598,0.903596,0.0789206,0.737649,0.311895,0.487308,0.760617,0.266506,0.31564,0.0471765,0.429906,0.819533,0.462692,0.0867138,0.8401,0.865674,0.574031,0.230161,0.835845,0.785837,0.539262,0.657686,0.829135,0.0636005,0.208296,0.320912,0.316577,0.9351,0.116378,0.0362561,0.666378,0.835219,0.836909,0.372366,0.131311,0.967814,0.913039,0.110015,0.469811,0.910951,0.587718,0.859775,0.134835,0.708068,0.503388,0.0233581,0.851755,0.700576,0.583536,0.7755,0.880563,0.282655,0.899097,0.272159,0.208835,0.757953,0.34191,0.785409,0.0756193,0.0402333,0.216027,0.325844,0.668772,0.800087,0.550112,0.404504,0.433377,0.43482,0.620951,0.565773,0.18283,0.586417,0.665419,0.685564,0.108341,0.772985,0.875658,0.846519,0.415367,0.511318,0.547428,0.485262,0.0731584,0.414509,0.583952,0.815924,0.0815039,0.674228,0.318107,0.730487,0.359,0.837258,0.360016,0.428689,0.143638,0.261058,0.957261,0.219657,0.184311,0.865073,0.237729,0.993264,0.683528,0.373624,0.812543,0.940728,0.551485,0.919981,0.887937,0.965025,0.737785,0.849458,0.540745,0.185981,0.652431,0.314034,0.174581,0.817449,0.00956398,0.922159,0.930297,0.813305,0.176271,0.0674637,0.425778,0.901143,0.511997,0.0714168,0.264169,0.101638,0.0403079,0.0218094,0.208032,0.140162,0.0587542,0.94267,0.974891,0.415572,0.80777,0.494134,0.90441,0.463475,0.500101,0.00162458,0.0545118,0.719889,0.811949,0.0409324,0.985715,0.747255,0.822339,0.0193687,0.990079,0.777232,0.101647,0.139366,0.888703,0.34798,0.614498,0.55134,0.354309,0.948061,0.111295,0.712164,0.990977,0.774795,0.67557,0.223275,0.251615,0.0624721,0.673304,0.484618,0.490624,0.63321,0.922446,0.813106,0.73167,0.156259,0.62549,0.987834,0.827446,0.886951,0.979785,0.00589001,0.0750374,0.910103,0.58453,0.947704,0.465275,0.5904,0.71502,0.637821,0.967181,0.190831,0.922286,0.117748,0.970804,0.765244,0.949985,0.738958,0.752655,0.948898,0.912746,0.961936,0.158275,0.602698,0.485616,0.348925,0.413947,0.50722,0.379934,0.384033,0.513509,0.236259,0.677104,0.769285,0.780682,0.940495,0.0353037,0.191462,0.256384,0.764427,0.189881,0.6949,0.878969,0.796541,0.801144,0.514853,0.115519,0.728295,0.197479,0.536349,0.413596,0.302411,0.844107,0.787888,0.571569,0.246325,0.281699,0.541439,0.987993,0.600952,0.156363,0.946176,0.571649,0.283548,0.411119,0.0708677,0.912225,0.107218,0.694548,0.701999,0.0488964,0.532811,0.522069,0.566867,0.030454,0.636838,0.930235,0.575924,0.662903,0.471987,0.67192,0.899799,0.795237,0.2135,0.261586,0.326891,0.64472,0.0857533,0.0428523,0.667642,0.477794,0.47899,0.639352,0.380494,0.0902194,0.211255,0.910628,0.0549557,0.750557,0.950741,0.0310432,0.0907721,0.982413,0.680754,0.705838,0.127217,0.614477,0.961371,0.522745,0.267624,0.662115,0.315127,0.707833,0.722898,0.373787,0.931693,0.5306,0.352932,0.409045,0.270023,0.0740656,0.257042,0.950457,0.246653,0.661075,0.765142,0.414509,0.0595959,0.773302,0.481251,0.39445,0.889606,0.443515,0.887046,0.227744,0.182704,0.929812,0.229874,0.818511,0.622057,0.627123,0.98827,0.809446,0.373857,0.0245489,0.680439,0.631237,0.562992,0.382636,0.236472,0.861482,0.79479,0.558689,0.948939,0.455972,0.83583,0.4517,0.97963,0.641598,0.909513,0.290319,0.252252,0.560358,0.481575,0.0465827,0.891517,0.139422,0.0832895,0.675596,0.581016,0.155292,0.0296469,0.497354,0.768432,0.968007,0.503855,0.374004,0.860109,0.219993,0.417489,0.541554,0.208629,0.267331,0.0751566,0.892687,0.289534,0.0959099,0.614472,0.109205,0.351928,0.310383,0.116559,0.934099,0.620158,0.733199,0.579271,0.673159,0.929366,0.554,0.700429,0.556206,0.593606,0.711966,0.732733,0.643802,0.215207,0.624524,0.800984,0.399681,0.444921,0.478472,0.973824,0.557371,0.458307,0.249467,0.500886,0.498161,0.77951,0.903315,0.248888,0.968148,0.753394,0.0783526,0.270844,0.47187,0.726329,0.593439,0.0249428,0.62927,0.301549,0.707005,0.697031,0.769284,0.199165,0.0698605,0.554881,0.518819,0.72564,0.858953,0.562061,0.112667,0.343926,0.419849,0.758247,0.940671,0.364925,0.897455,0.467804,0.150354,0.820472,0.949832,0.350954,0.944324,0.993863,0.010218,0.277998,0.179707,0.0996152,0.224946,0.938161,0.110826,0.425099,0.985819,0.0775052,0.225555,0.180443,0.836655,0.499955,0.425508,0.099045,0.673244,0.430366,0.406178,0.842222,0.215478,0.254208,0.645683,0.320148,0.884571,0.317956,0.637857,0.850592,0.271046,0.796247,0.554077,0.798556,0.207588,0.309737,0.872435,0.0233439,0.190462,0.447409,0.62711,0.0637159,0.834968,0.298481,0.657852,0.705338,0.0167542,0.404747,0.670664,0.440125,0.0449323,0.332208,0.304184,0.936093,0.0301754,0.313796,0.445345,0.261931,0.967927,0.790954,0.624463,0.357702,0.229708,0.0372691,0.68879,0.243888,0.000280678,0.568382,0.807111,0.603246,0.0218795,0.301508,0.401492,0.230039,0.274502,0.215489,0.571281,0.347223,0.59521,0.998626,0.0812939,0.345141,0.964233,0.426641,0.198774,0.295085,0.837455,0.760218,0.319576,0.181583,0.102021,0.123207,0.229069,0.817962,0.503357,0.99454,0.232716,0.76458,0.583507,0.750494,0.626952,0.0402377,0.830542,0.63485,0.251514,0.706656,0.113948,0.925957,0.605839,0.803581,0.914518,0.379886,0.179894,0.231065,0.451302,0.139712,0.123421,0.701518,0.902396,0.418302,0.20155,0.32669,0.83407,0.196193,0.0639664,0.626817,0.525548,0.0826897,0.228049,0.0618026,0.677358,0.228983,0.235031,0.431363,0.714728,0.360193,0.0297758,0.840407,0.947519,0.910951,0.230733,0.734163,0.894174,0.398139,0.187063,0.804761,0.967183,0.466232,0.541226,0.836343,0.406625,0.753573,0.981422,0.23116,0.825909,0.889612,0.373282,0.752542,0.770589,0.521703,0.136186,0.916638,0.635879,0.243015,0.430028,0.560399,0.0957216,0.392474,0.732495,0.273541,0.633799,0.30543,0.424501,0.714758,0.0212329,0.0813738,0.974132,0.312601,0.135542,0.0797635,0.579417,0.230824,0.480487,0.651271,0.329229,0.847023,0.671048,0.322907,0.54624,0.302701,0.964442,0.477127,0.892688,0.457684,0.111207,0.060972,0.113825,0.299633,0.34846,0.540993,0.377482,0.673843,0.726155,0.124966,0.0666243,0.697287,0.460818,0.914044,0.158825,0.975784,0.152542,0.99763,0.160043,0.00822431,0.329415,0.145102,0.334448,0.71144,0.733149,0.193149,0.256193,0.0738776,0.412498,0.104955,0.220389,0.219123,0.428377,0.979492,0.554391,0.584305,0.343005,0.372822,0.243889,0.308818,0.46166,0.557633,0.334021,0.595835,0.442779,0.516425,0.628768,0.109799,0.940898,0.397646,0.242089,0.627707,0.678993,0.939627,0.981621,0.922581,0.370844,0.997603,0.328144,0.0128672,0.679935,0.1373,0.859728,0.681863,0.0832519,0.709783,0.259124,0.803597,0.868113,0.198295,0.0554299,0.466759,0.0296873,0.535297,0.222498,0.912426,0.817124,0.907619,0.905813,0.067437,0.0198838,0.60593,0.226339,0.424533,0.729856,0.726531,0.234407,0.071578,0.435407,|0.412985,0.894972,0.412828,0.21176,0.102075,0.0514517,0.792251,0.244416,0.545045,0.976768,0.301165,0.777811,0.451116,0.813576,0.773957,0.533067,0.278406,0.846737,0.804009,0.0768588,0.667833,0.243117,0.0314434,0.400621,0.315311,0.933783,0.786791,0.676977,0.883978,0.357269,0.55036,0.817517,0.0783269,0.661388,0.603644,0.596558,0.869872,0.972591,0.980088,0.407237,0.682311,0.821241,0.0216424,0.392677,0.188835,0.567746,0.0199224,0.578867,0.584826,0.812678,0.532874,0.169929,0.611358,0.675909,0.873003,0.0442,0.665474,0.759741,0.600735,0.528765,0.97422,0.77127,0.323464,0.39168,0.976299,0.645575,0.898676,0.924026,0.0325928,0.898837,0.466182,0.242642,0.813586,0.96088,0.254664,0.243685,0.0253944,0.27718,0.830938,0.25313,0.139728,0.11743,0.641782,0.938161,0.517088,0.676956,0.191209,0.346518,0.761842,0.118548,0.183958,0.990579,0.610548,0.948369,0.132914,0.681819,0.563645,0.778026,0.0466267,0.473039,0.647882,0.487921,0.309275,0.723897,0.555301,0.370839,0.0571288,0.846239,0.351103,0.421664,0.355447,0.577524,0.802065,0.268842,0.586543,0.286151,0.429939,0.168998,0.180653,0.140921,0.0591341,0.238509,0.502753,0.761048,0.16811,0.216021,0.309911,0.724321,0.25196,0.271876,0.732932,0.753671,0.225247,0.469482,0.927069,0.472556,0.248141,0.106874,0.296204,0.509729,0.164919,0.976614,0.0415346,0.957558,0.0852145,0.302221,0.63255,0.00978309,0.376992,0.982477,0.0647592,0.475089,0.312524,0.908003,0.416141,0.436612,0.29561,0.0500581,0.381109,0.81411,0.973584,0.288616,0.822654,0.567094,0.179823,0.338584,0.553115,0.22895,0.899399,0.898213,0.226423,0.0745501,0.928042,0.505629,0.826693,0.130012,0.367943,0.456348,0.863038,0.606796,0.4053,0.885804,0.0183132,0.339659,0.537029,0.558325,0.183999,0.1607,0.116421,0.489507,0.601761,0.338553,0.847894,0.527432,0.89006,0.482231,0.814287,0.607006,0.0050323,0.492513,0.310837,0.508098,0.0978172,0.739794,0.896209,0.0648963,0.442683,0.14602,0.311411,0.750212,0.816168,0.233926,0.796358,0.245983,0.540606,0.672159,0.256466,0.296059,0.102331,0.0911807,0.246722,0.741149,0.296517,0.363294,0.914703,0.67913,0.520278,0.389195,0.612192,0.32124,0.317928,0.571472,0.552683,0.53729,0.88331,0.09505,0.639151,0.333787,0.0503966,0.610067,0.410448,0.028065,0.326335,0.447104,0.335011,0.607005,0.418125,0.895488,0.546412,0.442652,0.520721,0.525456,0.449486,0.677135,0.805327,0.264602,0.308386,0.236109,0.510803,0.6266,0.139639,0.225011,0.328485,0.165606,0.213562,0.8359,0.259977,0.39183,0.901511,0.138943,0.0353979,0.0260084,0.585355,0.587319,0.479198,0.255953,0.478213,0.492578,0.0618624,0.872506,0.230118,0.851916,0.604783,0.219185,0.734756,0.659892,0.288132,0.662286,0.529016,0.454211,0.207912,0.899134,0.100463,0.122694,0.669939,0.163113,0.675604,0.0946113,0.258796,0.301234,0.615758,0.664071,0.226663,0.522886,0.804062,0.193974,0.56879,0.464843,0.208247,0.791151,0.455616,0.560956,0.314253,0.600791,0.767404,0.269679,0.249016,0.585579,0.80597,0.62718,0.466555,0.475982,0.892297,0.360221,0.691884,0.251926,0.731138,0.902044,0.30263,0.23965,0.583526,0.99766,0.216075,0.0223888,0.760527,0.640151,0.437214,0.7273,0.388076,0.41844,0.228407,0.756872,0.739824,0.509578,0.47989,0.168904,0.561296,0.207373,0.732649,0.249626,0.996989,0.406966,0.866764,0.297827,0.851375,0.383649,0.137321,0.00821072,0.633059,0.783764,0.374545,0.0632665,0.0104168,0.968715,0.0659781,0.295196,0.889644,0.304422,0.90925,0.526027,0.529188,0.612888,0.181609,0.580429,0.59588,0.55196,0.511877,0.607021,0.173638,0.327632,0.078168,0.984217,0.71614,0.985392,0.624832,0.659096,0.841232,0.238935,0.820488,0.742603,0.710385,0.268512,0.6994,0.91975,0.305822,0.748467,0.828476,0.638908,0.378914,0.287044,0.719852,0.930582,0.599518,0.959783,0.504209,0.0860736,0.341707,0.973887,0.139302,0.715319,0.37698,0.687581,0.180828,0.131351,0.992249,0.253534,0.701734,0.243281,0.188771,0.635919,0.516888,0.0825474,0.42969,0.504685,0.773417,0.563057,0.341944,0.0245021,0.644491,0.0617555,0.888498,0.316308,0.84088,0.828608,0.0553722,0.397086,0.18629,0.677588,0.62275,0.795448,0.467109,0.538896,0.841601,0.438834,0.180805,0.121521,0.62045,0.647132,0.698974,0.398856,0.827995,0.880282,0.840025,0.359417,0.458195,0.451234,0.467141,0.129646,0.60688,0.54965,0.181306,0.34382,0.824619,0.865881,0.279324,0.0898967,0.683178,0.852431,0.343137,0.930226,0.520976,0.878388,0.22377,0.632049,0.100065,0.730334,0.735192,0.519536,0.89565,0.450801,0.568381,0.277444,0.832442,0.639449,0.515447,0.577829,0.962448,0.560068,0.174279,0.85125,0.0339966,0.98829,0.398459,0.0551944,0.919825,0.260109,0.428858,0.326614,0.44006,0.0244319,0.7554,0.557554,0.210365,0.0850593,0.533497,0.505042,0.207671,0.67264,0.466287,0.25962,0.952088,0.18945,0.284817,0.295176,0.807696,0.00176811,0.295433,0.753485,0.355147,0.502532,0.719529,0.198541,0.693803,0.610249,0.34236,0.349952,0.372805,0.39189,0.504503,0.739094,0.24757,0.703798,0.5445,0.761451,0.109124,0.320787,0.834171,0.764465,0.964458,0.535219,0.095491,0.41739,0.14933,0.938604,0.493229,0.169767,0.658397,0.685657,0.629001,0.44086,0.129776,0.611358,0.55069,0.430026,0.740203,0.426046,0.180441,0.124767,0.414141,0.882878,0.939316,0.0207656,0.721314,0.496915,0.330218,0.827666,0.0925613,0.780479,0.971646,0.31738,0.360873,0.155796,0.0943635,0.451137,0.545055,0.922416,0.405634,0.615245,0.627728,0.00732082,0.431227,0.280573,0.379095,0.561708,0.589916,0.853351,0.578199,0.0957036,0.324688,0.132142,0.745068,0.355722,0.637516,0.139348,0.302795,0.88723,0.141279,0.578704,0.356811,0.7129,0.429051,0.584774,0.875392,0.409749,0.229649,0.352872,0.929789,0.13143,0.0247875,0.172261,0.889126,0.105731,0.151674,0.640389,0.606049,0.00705862,0.393868,0.952438,0.0801815,0.591778,0.382296,0.707728,0.516594,0.00566477,0.445478,0.883814,0.835118,0.245819,0.598021,0.881214,0.965123,0.502318,0.66033,0.354212,0.776853,0.156172,0.340913,0.275012,0.28068,0.263567,0.773955,0.581647,0.856663,0.413115,0.444416,0.408522,0.326849,0.328907,0.169391,0.335845,0.490829,0.175893,0.436994,0.93439,0.097084,0.767108,0.0549121,0.533961,0.230701,0.710963,0.72702,0.990862,0.112578,0.728372,0.360087,0.892182,0.52375,0.00383854,0.864204,0.241134,0.652325,0.469326,0.382939,0.683185,0.864814,0.895868,0.926741,0.559881,0.715621,0.171297,0.778128,0.730108,0.0901554,0.299188,0.185716,0.264589,0.752875,0.583549,0.328908,0.559574,0.613575,0.0776727,0.599389,0.359215,0.391743,0.327245,0.650483,0.367734,0.700691,0.427651,0.700807,0.341739,0.691605,0.846881,0.549266,0.299008,0.602986,0.297736,0.387024,0.517797,0.0740718,0.910468,0.339798,0.719936,0.523786,0.344301,0.6091,0.0662301,0.632956,0.166672,0.157627,0.779285,0.400024,0.918876,0.534518,0.71812,0.765496,0.409098,0.897656,0.165844,0.16305,0.71589,0.505378,0.942358,0.781133,0.456404,0.365921,0.548584,0.911047,0.69464,0.713342,0.711782,0.0841329,0.42293,0.636225,0.109322,0.537323,0.771753,0.220343,0.350191,0.946948,0.867078,0.681469,0.743806,0.962299,0.50572,0.994759,0.777721,0.39257,0.557647,0.33501,0.690341,0.256237,0.554398,0.15562,0.330074,0.406734,0.911657,0.657667,0.905371,0.259695,0.93199,0.455254,0.278439,0.27453,0.229668,0.396542,0.569422,0.963829,0.0132052,0.0602936,0.785242,0.781058,0.480974,0.950993,0.276154,0.196246,0.80919,0.779732,0.656946,0.952404,0.299648,0.837636,0.972329,0.165746,0.0813217,0.529218,0.652667,0.218247,0.935409,0.450552,0.418814,0.196804,0.703824,0.00666535,0.140865,0.532722,0.258141,0.311199,0.339298,0.0266785,0.853671,0.147042,0.303144,0.230529,0.736881,0.191492,0.869667,0.200577,0.838705,0.907569,0.952586,0.966065,0.567117,0.224198,0.0926957,0.143386,0.0101778,0.755783,0.311495,0.649994,0.601266,0.817534,0.169111,0.53671,0.996257,0.804004,0.174213,0.77659,0.261299,0.472701,0.65473,0.266569,0.117477,0.190359,0.73477,0.113891,0.309001,0.373673,0.78681,0.0290233,0.433717,0.689477,0.628176,0.974913,0.31147,0.071126,0.99191,0.117261,0.301,0.0372021,0.872869,0.503056,0.303723,0.887757,0.385566,0.427234,0.204604,0.195072,0.0442168,0.441725,0.119064,0.898994,0.884978,0.231667,0.480631,0.565138,0.281751,0.72503,0.191824,0.200572,0.287401,0.161504,0.0891061,0.467056,0.810818,0.654501,0.416154,0.35192,0.0538355,0.111859,0.519022,0.584184,0.56138,0.183487,0.672653,0.154695,0.600101,0.464819,0.755281,0.198663,0.78237,0.200961,0.298107,0.587814,0.800639,0.184703,0.058721,0.14411,0.138294,0.986039,0.343641,0.940671,0.872871,0.72835,0.27664,0.154423,0.478695,0.839869,0.689649,0.310403,0.590499,0.900572,0.215167,0.979523,0.898057,0.0783517,0.961399,0.255221,0.862645,0.224844,0.898471,0.590823,0.613749,0.751207,0.688388,0.803265,0.475564,0.322703,0.562456,0.0487979,0.295732,0.622447,0.302489,0.335906,0.252725,0.1181,0.731223,0.0839802,0.00918752,0.914492,0.789232,0.20266,0.941592,0.498033,0.839528,0.110871,0.237032,0.0225886,0.0738677,0.35595,0.167179,0.603938,0.52062,0.679558,0.171526,0.974276,0.696652,0.0102214,0.17357,0.633013,0.976407,0.549938,0.749448,0.583078,0.348699,0.564568,0.691903,0.987245,0.165393,0.130409,0.354813,0.973537,0.485961,0.838841,0.295447,0.479534,0.989523,0.0195643,0.79279,0.518481,0.939114,0.611727,0.384579,0.820186,0.958944,0.332179,0.474033,0.104723,0.947993,|0.0895308,0.0363983,0.303792,0.596811,0.796075,0.7323,0.402084,0.322256,0.854479,0.432273,0.387552,0.665034,0.355229,0.486953,0.14377,0.856687,0.963386,0.463369,0.683485,0.897445,0.0302206,0.13356,0.639532,0.646253,0.372494,0.480947,0.0308693,0.864801,0.303613,0.539758,0.710596,0.0909856,0.0670072,0.580166,0.361977,0.0602697,0.817156,0.175725,0.311559,0.74636,0.431419,0.0578948,0.687923,0.675954,0.0792757,0.468641,0.292044,0.243781,0.809943,0.0935816,0.224164,0.0197592,0.342866,0.604356,0.20433,0.110452,0.453403,0.741553,0.125651,0.286914,0.258452,0.254372,0.193448,0.499651,0.67784,0.112063,0.476081,0.617551,0.265431,0.670171,0.364531,0.449904,0.362112,0.527416,0.337326,0.860333,0.732746,0.18147,0.887893,0.205611,0.917272,0.763232,0.190167,0.760012,0.530519,0.0590665,0.97588,0.751627,0.455953,0.565234,0.00510716,0.384272,0.746664,0.180254,0.6587,0.697776,0.672783,0.212279,0.552767,0.632659,0.396087,0.872371,0.0268779,0.534851,0.125381,0.621242,0.3189,0.937636,0.392346,0.0945494,0.351561,0.304503,0.687651,0.422892,0.112126,0.549472,0.823169,0.564997,0.549175,0.105348,0.679964,0.993922,0.409869,0.273617,0.727181,0.515854,0.929781,0.0486345,0.648032,0.811948,0.740448,0.292818,0.0957105,0.678038,0.160617,0.657186,0.894599,0.97425,0.0305054,0.876608,0.835384,0.292089,0.739574,0.526691,0.738418,0.99467,0.304171,0.135931,0.63237,0.684007,0.73093,0.432273,0.405117,0.835208,0.774712,0.336924,0.312621,0.611374,0.358299,0.429342,0.863346,0.247271,0.247318,0.10434,0.949421,0.336311,0.672748,0.971393,0.781782,0.870602,0.233409,0.443376,0.657963,0.291262,0.314556,0.0501752,0.318991,0.16648,0.395202,0.239526,0.115623,0.960213,0.860363,0.0619057,0.850836,0.777743,0.269022,0.583955,0.182318,0.395621,0.621535,0.525381,0.167952,0.597562,0.476196,0.00927413,0.130031,0.490987,0.859258,0.0909942,0.490472,0.573736,0.198759,0.57391,0.358989,0.443745,0.509697,0.946751,0.928441,0.624197,0.0798475,0.263494,0.612724,0.942386,0.186782,0.319583,0.921156,0.851542,0.913391,0.513121,0.0621817,0.000585318,0.770139,0.354643,0.726303,0.416541,0.572794,0.603736,0.432597,0.356684,0.0433441,0.373961,0.494493,0.798817,0.340699,0.740661,0.583523,0.723022,0.696547,0.142562,0.89005,0.0181742,0.0728193,0.519938,0.706258,0.176738,0.933514,0.199516,0.653708,0.789196,0.910495,0.177484,0.136163,0.841843,0.504914,0.860386,0.198018,0.780551,0.686521,0.195629,0.264762,0.111815,0.452486,0.890396,0.561454,0.373604,0.259304,0.890486,0.0144171,0.936725,0.275937,0.617332,0.619422,0.889911,0.917952,0.902402,0.809622,0.256309,0.23485,0.447987,0.0549305,0.905381,0.856558,0.529201,0.239461,0.948576,0.319698,0.611332,0.734422,0.950912,0.52113,0.911481,0.692205,0.856941,0.732618,0.0301539,0.423892,0.621556,0.943796,0.688297,0.899231,0.148035,0.551898,0.229266,0.244819,0.016338,0.905887,0.164377,0.105907,0.0627494,0.221811,0.046151,0.387139,0.69791,0.896672,0.488371,0.53163,0.832946,0.360325,0.644285,0.163415,0.836724,0.534865,0.247803,0.883455,0.338732,0.107834,0.299916,0.721219,0.0698537,0.218353,0.0342454,0.587981,0.842127,0.65066,0.37718,0.477637,0.917165,0.551097,0.517209,0.551934,0.0760391,0.307772,0.646076,0.052083,0.359705,0.539911,0.809144,0.970172,0.28865,0.650553,0.419748,0.163418,0.453245,0.836394,0.0619868,0.637131,0.747701,0.819845,0.391154,0.102041,0.568951,0.381488,0.783148,0.374339,0.102667,0.851033,0.62388,0.359805,0.311856,0.773046,0.981943,0.200652,0.35984,0.300803,0.636597,0.627803,0.996949,0.942415,0.764746,0.768047,0.538427,0.00858033,0.237792,0.506631,0.866338,0.184006,0.0468399,0.66038,0.73536,0.917063,0.326785,0.269566,0.829463,0.679655,0.285359,0.447421,0.367144,0.36125,0.767195,0.134306,0.862532,0.880669,0.886113,0.700812,0.590788,0.525695,0.682302,0.342411,0.730357,0.956146,0.837115,0.532011,0.861711,0.893901,0.395922,0.0834216,0.566966,0.147631,0.143039,0.396697,0.530244,0.948475,0.20596,0.793189,0.268217,0.410952,0.985243,0.187284,0.244492,0.813552,0.334955,0.695226,0.926861,0.439569,0.775774,0.898466,0.0462921,0.861288,0.366107,0.74915,0.786868,0.733425,0.601151,0.0802561,0.0916086,0.428457,0.558578,0.597089,0.909114,0.40276,0.00734389,0.635108,0.386082,0.678281,0.925609,0.484118,0.949205,0.214617,0.187211,0.992282,0.420131,0.967012,0.403206,0.744433,0.482508,0.644435,0.155953,0.818339,0.334465,0.200261,0.730893,0.378951,0.791026,0.155621,0.564968,0.636606,0.405724,0.220995,0.250711,0.38015,0.810354,0.29587,0.593359,0.705728,0.529465,0.714854,0.750057,0.978884,0.752504,0.525445,0.367611,0.817143,0.41647,0.00436926,0.336735,0.249766,0.824966,0.5158,0.492201,0.166899,0.686256,0.0794091,0.989272,0.312077,0.171198,0.658576,0.104857,0.648148,0.266141,0.424245,0.912215,0.464672,0.780936,0.302474,0.198317,0.231732,0.267921,0.764247,0.395706,0.20636,0.426045,0.649229,0.758412,0.214808,0.252828,0.325902,0.633174,0.518074,0.00968057,0.66407,0.911527,0.388022,0.604413,0.599801,0.575506,0.917229,0.556299,0.714049,0.70852,0.566983,0.597264,0.441196,0.0239713,0.428443,0.499544,0.959761,0.758136,0.372112,0.510134,0.211591,0.236141,0.6974,0.743889,0.0277753,0.419544,0.292878,0.834009,0.99638,0.304454,0.690387,0.358126,0.493416,0.442287,0.0478197,0.534432,0.400716,0.45853,0.609692,0.304407,0.65861,0.509475,0.0422373,0.534012,0.639972,0.856433,0.1376,0.412749,0.0720793,0.0475532,0.732693,0.663567,0.722311,0.503952,0.116536,0.768368,0.207009,0.0284126,0.00074029,0.000989974,0.00462198,0.788824,0.379837,0.859254,0.511384,0.725152,0.987835,0.327097,0.609551,0.592241,0.0587361,0.62912,0.61625,0.821139,0.814419,0.382334,0.31611,0.025824,0.171661,0.014826,0.506586,0.961212,0.993745,0.980133,0.822259,0.478514,0.595565,0.638244,0.629983,0.369116,0.539676,0.613736,0.61587,0.187879,0.365535,0.359503,0.19876,0.487869,0.469007,0.730931,0.0872749,0.941491,0.555572,0.179111,0.284571,0.844717,0.283164,0.701487,0.399338,0.38734,0.810011,0.612437,0.4816,0.262207,0.334914,0.272729,0.370151,0.198,0.494472,0.935775,0.32061,0.446324,0.967608,0.286279,0.76736,0.327631,0.195176,0.484998,0.628752,0.0201575,0.893603,0.426499,0.888658,0.474311,0.166675,0.40663,0.154267,0.619365,0.903573,0.982903,0.429581,0.976217,0.354078,0.0876827,0.657127,0.437332,0.910081,0.308034,0.128251,0.556332,0.85729,0.795107,0.311261,0.709712,0.378536,0.360506,0.790114,0.451334,0.739701,0.762625,0.710493,0.0710583,0.813975,0.111069,0.870864,0.127277,0.562258,0.223366,0.83027,0.72181,0.832189,0.839967,0.0860279,0.289738,0.294573,0.624279,0.734154,0.744727,0.68846,0.747363,0.549171,0.386841,0.677335,0.167311,0.832092,0.613175,0.85819,0.287957,0.41576,0.169258,0.513479,0.266681,0.688035,0.670028,0.821849,0.199355,0.620785,0.187905,0.514286,0.0887579,0.749538,0.676896,0.251562,0.117338,0.689176,0.0750692,0.666984,0.992883,0.529937,0.236529,0.0614646,0.963974,0.695479,0.545037,0.289298,0.902887,0.279802,0.35749,0.50688,0.792114,0.979553,0.183792,0.947322,0.502612,0.637578,0.870496,0.156268,0.749452,0.75947,0.896904,0.197507,0.0275682,0.430777,0.411748,0.679024,0.0389254,0.124799,0.352087,0.0780743,0.625534,0.65399,0.459754,0.411726,0.933328,0.17154,0.906741,0.352565,0.938414,0.408091,0.82219,0.40927,0.627466,0.639158,0.524187,0.572067,0.325381,0.70439,0.924479,0.578541,0.792424,0.22412,0.509718,0.99147,0.929713,0.78091,0.527539,0.781956,0.962017,0.382079,0.976373,0.16625,0.584082,0.386413,0.828629,0.456549,0.753276,0.752366,0.071051,0.742866,0.623512,0.468997,0.405466,0.77712,0.780245,0.723974,0.0146405,0.434354,0.441059,0.521383,0.558634,0.723868,0.954031,0.664457,0.33643,0.862365,0.598244,0.126086,0.0684836,0.687889,0.0129523,0.110477,0.714517,0.961512,0.58671,0.988853,0.815525,0.949764,0.576254,0.0553446,0.456838,0.582031,0.635206,0.666221,0.0318975,0.60954,0.61379,0.991528,0.748047,0.659915,0.297507,0.989056,0.702985,0.15564,0.0819814,0.400297,0.0467799,0.0227678,0.539013,0.0474745,0.997387,0.604499,0.729187,0.0364876,0.362293,0.116461,0.257475,0.332765,0.812224,0.399017,0.125902,0.369261,0.747943,0.927296,0.911593,0.213707,0.908788,0.256425,0.975614,0.918227,0.312212,0.896466,0.91985,0.237514,0.784781,0.312235,0.42562,0.629882,0.982637,0.0233596,0.0128096,0.424988,0.787587,0.550462,0.248271,0.00436145,0.816017,0.886928,0.946948,0.0857956,0.718442,0.992169,0.118467,0.61233,0.683225,0.689121,0.625481,0.145146,0.644992,0.958388,0.0221227,0.810393,0.0502204,0.00328493,0.541371,0.252965,0.110791,0.45073,0.231249,0.266039,0.416893,0.619741,0.117968,0.612266,0.915479,0.723196,0.40025,0.517733,0.652508,0.589263,0.888061,0.314886,0.0116546,0.072835,0.232449,0.303039,0.834263,0.397303,0.48429,0.219613,0.570678,0.887453,0.555736,0.414027,0.765516,0.442586,0.0414834,0.994183,0.718996,0.906769,0.696455,0.360457,0.732619,0.836623,0.869951,0.19085,0.382208,0.946371,0.633499,0.605494,0.845459,0.219414,0.0763645,0.51635,0.488643,0.281244,0.794224,0.101507,0.248129,0.758743,0.320961,0.576658,0.682808,0.171907,0.477514,0.650258,0.322249,0.468904,0.934359,0.603312,0.0534772,0.289402,0.505514,0.819321,0.19346,0.652175,0.243786,0.283436,0.788716,0.82503,0.956532,0.476654,0.826852,0.679068,0.208807,0.992547,0.645119,0.0172273,0.251483,0.456032,0.374581,|0.308966,0.0953497,0.360567,0.830792,0.25479,0.502699,0.442466,0.21774,0.895363,0.73653,0.49461,0.587543,0.263895,0.464312,0.125433,0.45837,0.921875,0.477937,0.980201,0.00341135,0.0667269,0.873039,0.21011,0.995868,0.123267,0.726726,0.994605,0.989044,0.587475,0.949415,0.304741,0.9563,0.271908,0.649769,0.999579,0.671287,0.0845433,0.83609,0.141854,0.351785,0.712376,0.0196874,0.483599,0.00406373,0.381641,0.399624,0.534032,0.362031,0.902529,0.824021,0.073855,0.896545,0.531523,0.0781491,0.641693,0.986424,0.268652,0.666485,0.0302714,0.554384,0.540236,0.563325,0.926474,0.180736,0.942668,0.676376,0.474136,0.909837,0.342796,0.682569,0.687932,0.874038,0.730548,0.826538,0.81975,0.764934,0.0965494,0.311399,0.349581,0.464578,0.84921,0.798872,0.103508,0.860972,0.597172,0.91463,0.789032,0.140606,0.60207,0.474597,0.19924,0.174461,0.273572,0.735757,0.670476,0.254607,0.759576,0.691815,0.402989,0.776902,0.391481,0.530535,0.534156,0.557106,0.178317,0.301428,0.786454,0.369137,0.6891,0.884985,0.435183,0.899768,0.342396,0.909471,0.525806,0.789772,0.248106,0.656391,0.588535,0.344975,0.981773,0.634126,0.454042,0.170463,0.257868,0.734353,0.191469,0.258812,0.791273,0.589699,0.65146,0.496005,0.293176,0.879446,0.484158,0.371325,0.742093,0.838754,0.0279018,0.457935,0.00386518,0.417712,0.65795,0.0655652,0.994528,0.371919,0.902342,0.569248,0.218681,0.839387,0.943969,0.0828313,0.665012,0.190684,0.505679,0.128084,0.555636,0.243211,0.197298,0.896107,0.271446,0.258719,0.985201,0.194089,0.884492,0.194789,0.426037,0.398196,0.630713,0.420357,0.756605,0.156963,0.790521,0.71296,0.977062,0.498045,0.760181,0.215034,0.868318,0.0338337,0.304767,0.0249235,0.804771,0.474673,0.962777,0.537224,0.293749,0.285717,0.873932,0.869899,0.542049,0.876853,0.0912269,0.703419,0.650092,0.0411244,0.438642,0.67852,0.604738,0.238135,0.251492,0.847008,0.195801,0.924416,0.331818,0.651196,0.399358,0.53741,0.0550617,0.0625759,0.859653,0.467994,0.328367,0.0168096,0.170862,0.72111,0.0242442,0.0496331,0.624884,0.81209,0.0988705,0.00378561,0.449537,0.0228231,0.561585,0.0596867,0.180603,0.245248,0.763883,0.0986332,0.958529,0.30663,0.609082,0.118384,0.218314,0.858229,0.402895,0.00672621,0.412754,0.741497,0.437366,0.875127,0.659196,0.604299,0.573347,0.488434,0.158546,0.320887,0.385944,0.231426,0.292505,0.164276,0.449786,0.792819,0.0238967,0.216365,0.703824,0.0499814,0.778536,0.252134,0.669666,0.597053,0.888414,0.550372,0.393227,0.0482306,0.156293,0.460849,0.620134,0.194959,0.0402382,0.358391,0.511076,0.855407,0.627791,0.965568,0.0651282,0.779046,0.302078,0.763948,0.471602,0.138331,0.0785607,0.784578,0.168537,0.417545,0.523186,0.655988,0.932258,0.0395213,0.849638,0.826174,0.208659,0.0035637,0.633689,0.419837,0.187563,0.339674,0.539577,0.527346,0.0123485,0.0753466,0.924175,0.103259,0.740005,0.492614,0.0352294,0.0968083,0.875085,0.901414,0.949854,0.0139093,0.886383,0.671447,0.213646,0.333621,0.591523,0.287563,0.714686,0.675133,0.346225,0.698533,0.198147,0.947979,0.394039,0.98099,0.764899,0.7972,0.625703,0.113727,0.453336,0.598463,0.610219,0.442934,0.372621,0.868125,0.191518,0.94092,0.136947,0.992261,0.110247,0.192463,0.714768,0.713519,0.54524,0.519803,0.38682,0.358082,0.214252,0.14663,0.947024,0.412518,0.524507,0.937541,0.436361,0.0709831,0.810095,0.0861048,0.16363,0.94395,0.725204,0.465222,0.825141,0.540719,0.726987,0.119596,0.879819,0.425123,0.479119,0.838159,0.0254488,0.244456,0.932659,0.738744,0.0317675,0.926171,0.153373,0.562622,0.688081,0.529449,0.12149,0.0622991,0.308445,0.00109446,0.954066,0.297376,0.45138,0.815792,0.104642,0.876114,0.181533,0.570094,0.11053,0.711315,0.539354,0.503771,0.0386406,0.853148,0.222697,0.192174,0.893079,0.0137767,0.0547181,0.565074,0.523648,0.339339,0.134236,0.608235,0.854659,0.881446,0.928888,0.379272,0.326729,0.0692878,0.641413,0.39678,0.805531,0.105976,0.655762,0.110049,0.364423,0.178089,0.580823,0.947486,0.0231177,0.585583,0.879575,0.131102,0.193233,0.836572,0.994209,0.585699,0.72284,0.00278151,0.477531,0.832914,0.181982,0.1026,0.528223,0.396157,0.55228,0.489106,0.612661,0.316619,0.837616,0.143099,0.471542,0.993738,0.469905,0.347976,0.914883,0.48074,0.392675,0.642288,0.62305,0.911991,0.25682,0.0933473,0.273192,0.95134,0.489781,0.824108,0.594862,0.299624,0.543579,0.034928,0.205402,0.861257,0.894354,0.0117568,0.140162,0.622889,0.0706696,0.468818,0.175991,0.9669,0.379953,0.903258,0.418529,0.408607,0.0883177,0.888623,0.277786,0.218576,0.886403,0.100645,0.110355,0.331904,0.348452,0.654658,0.345931,0.650443,0.466926,0.36802,0.323549,0.779317,0.0911477,0.437158,0.822809,0.180183,0.174585,0.382613,0.852632,0.821914,0.0431452,0.686657,0.68784,0.723971,0.129909,0.303772,0.222243,0.938761,0.960137,0.497832,0.489191,0.391875,0.348802,0.547632,0.324368,0.668566,0.134114,0.218885,0.892096,0.00289899,0.357395,0.223025,0.66695,0.382255,0.0493525,0.791914,0.574192,0.0674967,0.840198,0.262896,0.422128,0.779224,0.334167,0.33585,0.735359,0.970326,0.913974,0.505608,0.475397,0.170311,0.214815,0.976895,0.329483,0.791244,0.865385,0.836219,0.233863,0.355356,0.263293,0.195541,0.328596,0.0928251,0.336228,0.395294,0.0621197,0.468587,0.554326,0.722894,0.984926,0.458578,0.880481,0.716553,0.352968,0.60058,0.29752,0.679954,0.226923,0.259359,0.206625,0.389404,0.468054,0.950203,0.0758232,0.458591,0.813126,0.702679,0.495837,0.314168,0.530868,0.929789,0.695856,0.192724,0.98194,0.597903,0.294175,0.486706,0.0703532,0.958656,0.296224,0.742032,0.77917,0.465009,0.694429,0.704736,0.648591,0.194222,0.476029,0.981844,0.976111,0.413301,0.86153,0.228588,0.505589,0.0834929,0.90337,0.460672,0.841394,0.750091,0.460848,0.857658,0.341676,0.224244,0.477851,0.495853,0.73207,0.861705,0.39823,0.0149109,0.964075,0.277206,0.874316,0.194993,0.681358,0.540728,0.736747,0.428592,0.26235,0.89675,0.0800267,0.761029,0.261995,0.688542,0.0438644,0.851829,0.675622,0.55176,0.679328,0.678437,0.443616,0.455208,0.119123,0.699835,0.467166,0.864428,0.00162554,0.285035,0.506373,0.109289,0.483664,0.227294,0.650125,0.625389,0.0032683,0.889653,0.604378,0.36349,0.998679,0.826177,0.362058,0.554089,0.242159,0.313986,0.204972,0.973203,0.438259,0.242125,0.769182,0.820037,0.778609,0.613842,0.731605,0.988424,0.896213,0.763732,0.169364,0.422635,0.64753,0.494633,0.774872,0.206065,0.957969,0.684751,0.54294,0.512221,0.779621,0.646624,0.892549,0.202974,0.697813,0.857668,0.843083,0.408587,0.523018,0.381472,0.540025,0.0010621,0.5815,0.679495,0.392714,0.72342,0.863384,0.0858936,0.0149441,0.74766,0.681361,0.521261,0.0141563,0.11263,0.450457,0.469103,0.830968,0.387526,0.24919,0.821234,0.33103,0.0536091,0.187197,0.527824,0.317541,0.903796,0.441618,0.822601,0.190279,0.80195,0.480748,0.892774,0.968913,0.749578,0.496795,0.636001,0.623598,0.864551,0.873035,0.192687,0.462508,0.714301,0.203777,0.596641,0.542235,0.554016,0.251881,0.518188,0.716847,0.09045,0.481885,0.715818,0.594238,0.603685,0.358415,0.258026,0.0670311,0.262038,0.919878,0.793242,0.641379,0.379805,0.884317,0.0699688,0.0739902,0.245408,0.0233625,0.0677365,0.11287,0.850116,0.345068,0.982086,0.383943,0.845243,0.923924,0.00457966,0.655323,0.783677,0.254131,0.240059,0.0392355,0.302166,0.419293,0.640835,0.194843,0.59617,0.34933,0.523673,0.833667,0.129338,0.737489,0.46916,0.0873445,0.739901,0.719227,0.775727,0.0589397,0.0294579,0.397589,0.595739,0.825393,0.593265,0.778967,0.600417,0.981629,0.667567,0.234296,0.774068,0.672803,0.893377,0.606571,0.112545,0.1641,0.458605,0.507681,0.599264,0.167244,0.721838,0.825751,0.523996,0.593414,0.00715917,0.983461,0.515528,0.472693,0.365359,0.327675,0.83189,0.823563,0.0441778,0.866105,0.283737,0.335388,0.863315,0.188777,0.420093,0.330369,0.490111,0.210062,0.105858,0.735968,0.555323,0.94661,0.109087,0.381336,0.39151,0.895143,0.614,0.443297,0.705992,0.429945,0.513114,0.142583,0.00210208,0.676598,0.466042,0.890169,0.276627,0.382496,0.309236,0.382249,0.0768144,0.54388,0.212178,0.278652,0.400701,0.301182,0.0490547,0.798254,0.372701,0.762923,0.909198,0.909892,0.833671,0.993066,0.202816,0.990985,0.968066,0.0499794,0.0809482,0.973908,0.309741,0.486885,0.778534,0.688013,0.589926,0.702696,0.539586,0.957876,0.622697,0.479739,0.577112,0.487612,0.227089,0.46596,0.404355,0.294528,0.725046,0.0473904,0.279849,0.807175,0.0989446,0.978754,0.200666,0.567171,0.67251,0.929549,0.606734,0.83107,0.396728,0.770742,0.115276,0.211906,0.876693,0.881482,0.569721,0.768483,0.666662,0.238234,0.790299,0.633431,0.264607,0.291773,0.498966,0.848358,0.541636,0.0683339,0.216165,0.554116,0.215482,0.526475,0.737334,0.716761,0.463356,0.721503,0.082669,0.558661,0.597249,0.517892,0.086345,0.546862,0.00256026,0.713857,0.439061,0.721745,0.939788,0.966738,0.415081,0.252992,0.00483811,0.955289,0.406773,0.326278,0.551031,0.0189947,0.447814,0.859579,0.624647,0.193323,0.393876,0.556365,0.408042,0.804339,0.349223,0.725988,0.814387,0.189649,0.255924,0.668204,0.529368,0.260139,0.454674,0.0825395,0.854517,0.388836,0.446229,0.544842,0.27697,0.849788,0.800108,0.494478,0.918641,0.676273,0.911455,0.282826,0.957735,0.257403,0.225863,0.00361842,0.0752848,0.753859,0.240636,0.549377,0.202434,0.0398536,0.576977,0.107242,0.555499,0.434095,0.954028,0.957735,0.338527,|0.0377796,0.879712,0.0687975,0.207962,0.279492,0.636269,0.301679,0.34335,0.339931,0.498837,0.462866,0.698589,0.160092,0.967917,0.895329,0.666704,0.0369958,0.431393,0.207445,0.0306646,0.533651,0.407454,0.242456,0.646726,0.933373,0.620594,0.906447,0.60603,0.884957,0.95156,0.355446,0.760499,0.160961,0.628468,0.309718,0.961109,0.779637,0.917597,0.428711,0.806528,0.614342,0.777432,0.131207,0.38178,0.971453,0.763344,0.564078,0.988123,0.148611,0.577933,0.738176,0.307052,0.57347,0.368997,0.930922,0.0669959,0.824048,0.225618,0.349705,0.947652,0.769526,0.0185775,0.44367,0.563517,0.288708,0.720389,0.874443,0.946556,0.246754,0.130761,0.0168008,0.654432,0.308335,0.28148,0.262245,0.796707,0.239228,0.205254,0.0463699,0.362483,0.682997,0.705367,0.820237,0.178042,0.259375,0.708021,0.0662677,0.52412,0.229804,0.52967,0.801534,0.231348,0.598189,0.661005,0.88874,0.766386,0.410934,0.0102105,0.667598,0.458874,0.548651,0.103089,0.106613,0.141339,0.186632,0.385106,0.995126,0.451265,0.297994,0.660459,0.116452,0.0721757,0.940883,0.886207,0.314976,0.878842,0.785412,0.789647,0.387946,0.143054,0.804793,0.0444516,0.152925,0.68246,0.806111,0.836429,0.422488,0.115722,0.982139,0.183686,0.949811,0.151539,0.127199,0.31155,0.629232,0.406089,0.0831878,0.173799,0.32168,0.820415,0.588557,0.511739,0.645464,0.234333,0.882512,0.873765,0.407388,0.466464,0.416975,0.484696,0.443022,0.73091,0.251638,0.615794,0.161581,0.743552,0.254768,0.0612332,0.807999,0.324446,0.2,0.104739,0.849711,0.562879,0.0760311,0.578676,0.271887,0.223078,0.217506,0.170729,0.155479,0.0220261,0.186436,0.876821,0.753883,0.186308,0.228645,0.158302,0.678935,0.181522,0.695494,0.268108,0.829354,0.158613,0.793601,0.929548,0.0449741,0.832709,0.945825,0.733877,0.664504,0.526603,0.848163,0.211696,0.236754,0.253381,0.751533,0.880968,0.0693157,0.270242,0.756802,0.801649,0.00285804,0.416217,0.173544,0.982235,0.692827,0.776243,0.424872,0.892603,0.327089,0.807719,0.0517948,0.964984,0.121231,0.479937,0.424469,0.0706331,0.129757,0.868525,0.772683,0.720732,0.470875,0.225786,0.864373,0.830195,0.65203,0.408041,0.146911,0.456118,0.549825,0.940694,0.174148,0.14738,0.375764,0.00732511,0.103987,0.74087,0.534407,0.185482,0.66947,0.635333,0.855702,0.961918,0.899549,0.417472,0.815808,0.492571,0.831213,0.764046,0.152644,0.931713,0.422856,0.175856,0.824791,0.809538,0.630584,0.48306,0.505261,0.620046,0.33247,0.471697,0.0997801,0.264121,0.999841,0.728021,0.224752,0.982367,0.542036,0.0446475,0.825755,0.332981,0.0336751,0.923075,0.00391841,0.542226,0.579465,0.205343,0.24961,0.450056,0.690222,0.717065,0.823016,0.196,0.956962,0.604635,0.107046,0.134064,0.77683,0.0420066,0.576793,0.957081,0.0427044,0.739166,0.526273,0.288994,0.616028,0.195829,0.496709,0.689523,0.513399,0.921196,0.39762,0.723275,0.900733,0.646345,0.496502,0.158992,0.0363433,0.49089,0.503135,0.493136,0.8635,0.550866,0.630538,0.571389,0.466632,0.403802,0.762834,0.306351,0.73291,0.727114,0.112896,0.669793,0.309486,0.699227,0.298636,0.805351,0.976662,0.395991,0.0710002,0.406274,0.250364,0.813669,0.810489,0.722211,0.156389,0.0434885,0.696976,0.952784,0.742373,0.948612,0.101607,0.783352,0.571064,0.19003,0.553636,0.7005,0.750517,0.624337,0.328051,0.906174,0.575661,0.942918,0.29737,0.583128,0.293903,0.274378,0.464943,0.641184,0.877825,0.998643,0.460908,0.336965,0.494956,0.745137,0.736687,0.048103,0.860977,0.851956,0.404716,0.0425937,0.690977,0.029718,0.432751,0.791981,0.789031,0.903181,0.566195,0.870017,0.718086,0.377963,0.262664,0.804656,0.856907,0.474746,0.428644,0.263885,0.663473,0.834288,0.426319,0.952948,0.173536,0.994239,0.56898,0.427943,0.788109,0.343584,0.513036,0.111738,0.504077,0.0719917,0.337215,0.211114,0.1876,0.591509,0.926919,0.840636,0.0832078,0.770486,0.888614,0.564658,0.658648,0.0903049,0.497284,0.381933,0.439396,0.701899,0.213693,0.995086,0.268624,0.0201504,0.885216,0.463419,0.174311,0.437164,0.43087,0.414733,0.153978,0.131374,0.326,0.440848,0.00788444,0.484907,0.404858,0.1891,0.435745,0.740628,0.245426,0.560229,0.435791,0.508592,0.622763,0.394612,0.0404472,0.196844,0.520679,0.612999,0.493709,0.264459,0.667842,0.126344,0.487071,0.988758,0.648189,0.129428,0.453439,0.0188279,0.482448,0.513856,0.726017,0.973998,0.256112,0.614047,0.749466,0.657384,0.188925,0.443523,0.0535231,0.81541,0.824353,0.20019,0.937901,0.553612,0.322871,0.410166,0.166478,0.850484,0.243149,0.680766,0.236408,0.922484,0.755092,0.340267,0.894729,0.98222,0.467169,0.528414,0.355905,0.279738,0.3178,0.643296,0.0880274,0.728345,0.717382,0.122343,0.111232,0.397682,0.242865,0.47929,0.729953,0.86959,0.531014,0.252934,0.110049,0.45091,0.780074,0.724358,0.142854,0.356035,0.700781,0.610222,0.744642,0.128928,0.0383777,0.608879,0.00832033,0.750851,0.277994,0.630486,0.109212,0.545778,0.936119,0.120061,0.718267,0.39291,0.726283,0.579871,0.994297,0.0841764,0.133748,0.607715,0.836021,0.829438,0.628428,0.687011,0.64822,0.349644,0.183993,0.958712,0.66625,0.289923,0.803655,0.520179,0.886958,0.508369,0.2413,0.597845,0.16705,0.109749,0.519996,0.346578,0.521761,0.00504541,0.833771,0.599438,0.915913,0.640252,0.952913,0.260157,0.579545,0.382746,0.119846,0.102038,0.456619,0.0904088,0.622168,0.181507,0.129193,0.0672683,0.253225,0.179435,0.438538,0.803425,0.982232,0.603496,0.742465,0.907627,0.419277,0.294316,0.627606,0.470679,0.802075,0.914021,0.578094,0.905827,0.687528,0.00869018,0.926054,0.760223,0.00461268,0.380454,0.770373,0.532629,0.373023,0.385066,0.937032,0.455861,0.185582,0.505126,0.100636,0.49839,0.670379,0.933498,0.98418,0.0173476,0.401517,0.299165,0.899911,0.140954,0.914155,0.99639,0.384459,0.905514,0.144651,0.373162,0.156001,0.220266,0.920367,0.876556,0.36769,0.290722,0.0361137,0.068997,0.166891,0.406221,0.881984,0.623871,0.112149,0.91324,0.069139,0.69041,0.0313569,0.231278,0.177328,0.924412,0.953142,0.712938,0.184306,0.0597135,0.760774,0.853905,0.116033,0.469406,0.646137,0.878387,0.871716,0.941957,0.616038,0.260134,0.536248,0.253262,0.870252,0.452835,0.492168,0.937835,0.358598,0.602146,0.00636458,0.705961,0.769912,0.103977,0.736776,0.998322,0.0178329,0.614592,0.613202,0.279858,0.190027,0.149899,0.888717,0.555846,0.694666,0.881063,0.211816,0.674073,0.333791,0.385356,0.105058,0.0453291,0.584818,0.484217,0.78221,0.58425,0.773898,0.27959,0.35804,0.793617,0.631816,0.272709,0.297336,0.556737,0.208529,0.800187,0.915691,0.70614,0.0539578,0.74364,0.609981,0.629509,0.428045,0.328791,0.822282,0.354031,0.356504,0.930906,0.461195,0.00989419,0.182771,0.0538008,0.71467,0.55086,0.266959,0.670142,0.109767,0.814042,0.276807,0.335458,0.163752,0.422659,0.976672,0.305077,0.813756,0.343975,0.0112196,0.875271,0.954307,0.469605,0.41249,0.542285,0.482093,0.558433,0.639438,0.0778983,0.54599,0.949821,0.958376,0.73384,0.693839,0.115172,0.174508,0.560326,0.610692,0.169362,0.433212,0.795869,0.366144,0.792733,0.243109,0.970329,0.828155,0.147499,0.334751,0.648818,0.37146,0.866594,0.851748,0.973642,0.535795,0.564173,0.35099,0.56005,0.00894898,0.10632,0.567291,0.99058,0.435781,0.237576,0.920827,0.444856,0.966905,0.863463,0.227901,0.500103,0.0984222,0.151237,0.896821,0.244981,0.756658,0.984282,0.0652723,0.47471,0.720119,0.773131,0.522887,0.168225,0.851714,0.397195,0.154513,0.231915,0.846893,0.62412,0.090484,0.00502658,0.722913,0.012522,0.0721211,0.235253,0.520065,0.798732,0.282832,0.722062,0.999991,0.435251,0.72715,0.221159,0.491348,0.163939,0.126055,0.555693,0.996947,0.229744,0.430849,0.362002,0.989102,0.296971,0.536869,0.695226,0.151425,0.475203,0.373433,0.259385,0.874936,0.160728,0.339254,0.379659,0.0196116,0.2676,0.287407,0.0951301,0.754031,0.899157,0.509177,0.971815,0.426675,0.712106,0.431914,0.094057,0.903005,0.677636,0.157534,0.650611,0.151901,0.86578,0.420769,0.0114573,0.239106,0.237666,0.0134673,0.779024,0.0835359,0.849309,0.587375,0.326719,0.850473,0.960735,0.841069,0.876478,0.82501,0.725883,0.22359,0.304656,0.124527,0.285886,0.846671,0.544324,0.915835,0.850114,0.959508,0.621293,0.959363,0.518669,0.430066,0.562901,0.977395,0.652242,0.734956,0.144901,0.126367,0.0019024,0.246575,0.443938,0.227825,0.186382,0.468465,0.366081,0.769614,0.234459,0.934691,0.786884,0.93488,0.71227,0.306217,0.523366,0.537619,0.227642,0.739663,0.415181,0.439783,0.411093,0.757758,0.191217,0.22777,0.275643,0.0785069,0.505189,0.826393,0.0566754,0.410413,0.16693,0.112024,0.741013,0.0120478,0.375834,0.845419,0.352603,0.265286,0.688087,0.37042,0.793663,0.265577,0.934973,0.649984,0.203854,0.494138,0.890527,0.824934,0.521128,0.472956,0.674754,0.769939,0.66198,0.283732,0.120712,0.957724,0.499578,0.845686,0.587159,0.579136,0.759559,0.0532672,0.254665,0.423707,0.530064,0.483485,0.91292,0.25925,0.261814,0.508965,0.700289,0.180391,0.743253,0.713689,0.592066,0.838885,0.585264,0.770887,0.422973,0.771316,0.687931,0.959602,0.129863,0.431879,0.81775,0.417867,0.786748,0.780793,0.938427,0.212569,0.0981938,0.654686,0.323201,0.63753,0.467141,0.208465,0.0802367,0.49948,0.598909,0.51469,0.962501,0.745417,0.715697,0.775404,0.0165278,0.753531,0.800323,0.581707,0.930649,0.0608878,0.278263,0.151522,0.341561,0.631125,0.597347,0.235001,0.640672,0.570119,0.719668,0.961673,0.152801,|0.73861,0.58239,0.25124,0.411196,0.628553,0.0661392,0.147843,0.882815,0.581304,0.854625,0.0715508,0.386513,0.0457264,0.804009,0.360212,0.825535,0.162328,0.250629,0.813784,0.26459,0.101468,0.290181,0.0713712,0.762852,0.456027,0.247611,0.476361,0.103006,0.641523,0.98533,0.605467,0.401371,0.760125,0.204358,0.870979,0.883751,0.543918,0.694165,0.12878,0.0110932,0.215747,0.541754,0.0497335,0.737848,0.568016,0.439936,0.619329,0.388603,0.979305,0.813473,0.5645,0.280602,0.609923,0.995423,0.0787901,0.948786,0.53711,0.180828,0.744744,0.820108,0.119913,0.17597,0.912432,0.634646,0.234793,0.845562,0.0678946,0.767179,0.0910161,0.9796,0.350061,0.478207,0.404619,0.612443,0.61626,0.297572,0.0339124,0.955422,0.500236,0.901315,0.181158,0.580905,0.303794,0.226486,0.275417,0.962759,0.989345,0.879851,0.513356,0.134923,0.219546,0.047565,0.98613,0.829657,0.40025,0.130932,0.8434,0.613612,0.812355,0.596862,0.221949,0.529466,0.572486,0.610769,0.652602,0.794294,0.173831,0.735373,0.938275,0.235571,0.200078,0.105544,0.438654,0.424895,0.51652,0.203694,0.42356,0.0510407,0.194064,0.0607654,0.709314,0.0141014,0.202162,0.135619,0.971867,0.164424,0.439958,0.870755,0.770667,0.29613,0.601303,0.879902,0.0899988,0.968356,0.819064,0.0824882,0.564271,0.355915,0.911001,0.993209,0.0810573,0.778489,0.410639,0.535795,0.834982,0.417715,0.407058,0.469662,0.400088,0.384678,0.275535,0.879915,0.197434,0.304327,0.842619,0.090256,0.0806653,0.944198,0.0777165,0.747599,0.0737595,0.405753,0.00468069,0.58808,0.38029,0.726393,0.555721,0.214348,0.0321155,0.938645,0.152732,0.661749,0.599117,0.329001,0.97681,0.127632,0.8987,0.013465,0.533837,0.109178,0.354924,0.29159,0.547976,0.904976,0.276275,0.529666,0.472053,0.651209,0.15515,0.235481,0.800038,0.940794,0.81676,0.19351,0.9249,0.0823642,0.820846,0.931863,0.106852,0.410156,0.127971,0.704795,0.394139,0.650191,0.89004,0.182976,0.0434756,0.834013,0.779039,0.0365071,0.116588,0.505088,0.88392,0.415739,0.984607,0.911733,0.921872,0.513419,0.438596,0.345511,0.966702,0.373499,0.839369,0.46189,0.821856,0.170349,0.253633,0.543873,0.27599,0.502121,0.700267,0.194481,0.21082,0.510719,0.188923,0.931979,0.687988,0.592199,0.543797,0.338829,0.890226,0.51012,0.268119,0.152866,0.718812,0.722004,0.664106,0.279436,0.328204,0.512292,0.31245,0.802004,0.165735,0.576515,0.614479,0.650691,0.81886,0.242825,0.10126,0.253397,0.497258,0.149678,0.474566,0.803742,0.11552,0.235653,0.539313,0.874593,0.810116,0.281434,0.714942,0.559936,0.0499251,0.519603,0.574799,0.387212,0.324754,0.100881,0.9197,0.129805,0.309991,0.0878615,0.928698,0.819937,0.248519,0.0537085,0.448405,0.0246633,0.364686,0.805552,0.777494,0.27813,0.997461,0.714881,0.844235,0.403185,0.707181,0.827065,0.317944,0.248622,0.547383,0.678416,0.0514007,0.385338,0.697696,0.469721,0.778433,0.253196,0.922452,0.918932,0.472862,0.281219,0.929599,0.910403,0.622561,0.0985475,0.455078,0.420493,0.423733,0.576744,0.433345,0.63643,0.874645,0.906132,0.178613,0.313563,0.874105,0.397207,0.189804,0.481292,0.790772,0.452857,0.484636,0.239869,0.355024,0.706304,0.358052,0.603256,0.241595,0.899389,0.224992,0.996632,0.099868,0.0448871,0.356049,0.989879,0.366393,0.432517,0.543889,0.337672,0.340236,0.00924188,0.783598,0.798844,0.858075,0.120417,0.689435,0.168289,0.427716,0.263114,0.414827,0.948453,0.0671818,0.460375,0.855357,0.822778,0.922774,0.422767,0.860746,0.532761,0.904452,0.373763,0.409843,0.561264,0.118541,0.0460255,0.984332,0.520865,0.218785,0.14117,0.214297,0.931865,0.356512,0.155156,0.983051,0.828167,0.715196,0.586613,0.793072,0.850652,0.0185833,0.597814,0.267829,0.496311,0.975833,0.604649,0.765823,0.231234,0.629991,0.184056,0.270432,0.672778,0.327967,0.637151,0.302633,0.275706,0.292286,0.774047,0.618813,0.960884,0.104938,0.0658464,0.801594,0.21243,0.746666,0.763176,0.159427,0.693708,0.491847,0.67906,0.322079,0.513832,0.658103,0.779913,0.958722,0.46961,0.829465,0.0804878,0.957634,0.537403,0.0497943,0.628557,0.857123,0.410024,0.0988653,0.776481,0.334286,0.514744,0.129818,0.734073,0.554251,0.0363465,0.0744306,0.337936,0.993988,0.878113,0.179248,0.977631,0.706531,0.632669,0.975649,0.61076,0.561697,0.377077,0.14353,0.992433,0.80088,0.570569,0.626781,0.0289451,0.550416,0.899105,0.0529569,0.649297,0.615902,0.910913,0.0318291,0.98966,0.890781,0.897576,0.999728,0.398005,0.710906,0.947437,0.350706,0.129154,0.664999,0.157773,0.745427,0.98644,0.451929,0.112582,0.420561,0.761407,0.234994,0.964432,0.702906,0.892246,0.423447,0.938416,0.711042,0.336294,0.89755,0.358318,0.84369,0.796657,0.97768,0.278515,0.514695,0.392944,0.216533,0.0589226,0.57887,0.773679,0.752315,0.785444,0.510135,0.387235,0.980616,0.32498,0.361682,0.99288,0.828643,0.430306,0.726022,0.098612,0.613589,0.427997,0.36504,0.26303,0.00597632,0.261748,0.70394,0.276173,0.897375,0.787996,0.256236,0.224848,0.497065,0.913566,0.772406,0.762506,0.616274,0.713228,0.849339,0.187083,0.801692,0.318274,0.966358,0.289293,0.503616,0.766469,0.418828,0.935778,0.775569,0.287643,0.413362,0.987856,0.913487,0.408722,0.823094,0.688704,0.0638572,0.349103,0.0284048,0.886199,0.67485,0.462576,0.582892,0.190571,0.952077,0.0313548,0.132026,0.181368,0.768567,0.488623,0.0913683,0.354416,0.437719,0.0688191,0.113304,0.435456,0.0556519,0.444177,0.126016,0.535252,0.0385579,0.546109,0.0302801,0.824136,0.979178,0.097591,0.936192,0.714512,0.079564,0.353226,0.363134,0.544432,0.739202,0.360629,0.581597,0.3784,0.139896,0.972731,0.00125355,0.384678,0.454939,0.838099,0.65365,0.122043,0.527484,0.795436,0.53863,0.156647,0.583252,0.423647,0.185875,0.318762,0.0481376,0.0428259,0.142548,0.78382,0.445823,0.777949,0.88543,0.783189,0.741566,0.80123,0.131681,0.988069,0.980405,0.228854,0.972583,0.843028,0.500403,0.895114,0.374898,0.68995,0.654025,0.592428,0.359827,0.0271857,0.520519,0.00678891,0.28565,0.748233,0.347275,0.177904,0.454815,0.276396,0.027379,0.911722,0.665866,0.620063,0.480819,0.688806,0.0969522,0.224561,0.318694,0.260914,0.00601256,0.554571,0.167087,0.286054,0.141132,0.796489,0.546698,0.599733,0.778585,0.698732,0.273148,0.4475,0.429219,0.203422,0.86799,0.397181,0.15195,0.739494,0.819025,0.6542,0.897755,0.367491,0.976595,0.153604,0.0362109,0.50334,0.843767,0.0229995,0.959119,0.849081,0.986746,0.827979,0.887709,0.165105,0.611016,0.756842,0.360283,0.697792,0.952661,0.756747,0.672438,0.219643,0.249967,0.571108,0.795186,0.302446,0.42489,0.00455016,0.208459,0.709271,0.86165,0.726986,0.64382,0.407311,0.92882,0.739184,0.757355,0.0836542,0.617936,0.934687,0.979246,0.268995,0.987126,0.90188,0.0553886,0.0107638,0.866682,0.231427,0.638917,0.0939326,0.55522,0.289175,0.312568,0.26389,0.19847,0.917187,0.887855,0.0985611,0.965209,0.839056,0.105858,0.588136,0.429601,0.726296,0.411421,0.479089,0.117178,0.841971,0.651418,0.679869,0.0276825,0.796593,0.707623,0.857088,0.0972554,0.736775,0.405754,0.997473,0.660401,0.604558,0.287446,0.844628,0.728355,0.97017,0.353355,0.77963,0.0266557,0.224566,0.518085,0.402962,0.777745,0.477661,0.0143504,0.639588,0.842477,0.214618,0.176572,0.563699,0.0600411,0.728685,0.586121,0.440815,0.775879,0.662767,0.189479,0.0693083,0.729563,0.927372,0.506337,0.641796,0.836693,0.95335,0.242947,0.460738,0.611186,0.562173,0.360906,0.928405,0.0639622,0.857705,0.136401,0.745179,0.977787,0.832898,0.319348,0.433857,0.861779,0.848653,0.852671,0.724891,0.673295,0.497003,0.796918,0.203637,0.408465,0.264042,0.720043,0.463492,0.673239,0.573378,0.087926,0.906684,0.942958,0.120078,0.0757661,0.843392,0.578968,0.612884,0.628674,0.454629,0.741877,0.545723,0.314622,0.123727,0.254851,0.896762,0.489116,0.877876,0.563243,0.36534,0.468654,0.374907,0.0116344,0.458079,0.82072,0.66591,0.697875,0.0558019,0.355167,0.949944,0.148074,0.887097,0.436913,0.563577,0.953745,0.807372,0.174531,0.258392,0.348364,0.44467,0.741474,0.242739,0.911061,0.112469,0.838923,0.0633462,0.0729837,0.00311613,0.507107,0.620517,0.0565253,0.494465,0.930601,0.960468,0.702453,0.35971,0.648131,0.478088,0.955451,0.532705,0.971838,0.85279,0.960628,0.296966,0.0435218,0.254584,0.878169,0.476287,0.627765,0.189886,0.471714,0.766736,0.320619,0.189074,0.808959,0.00876534,0.631769,0.457163,0.421483,0.913483,0.498888,0.195442,0.286869,0.93064,0.72764,0.706391,0.832311,0.17657,0.289314,0.222292,0.968934,0.807423,0.169356,0.540325,0.0793195,0.62148,0.981397,0.212939,0.258226,0.379998,0.704553,0.293903,0.480435,0.97816,0.176733,0.140777,0.47218,0.611227,0.197317,0.917027,0.154765,0.734962,0.384186,0.645959,0.312749,0.314372,0.455872,0.784336,0.68266,0.473061,0.0424772,0.977336,0.613236,0.14588,0.088841,0.457287,0.283162,0.347494,0.536281,0.232167,0.220034,0.979933,0.669229,0.00979972,0.315729,0.142417,0.616347,0.446657,0.152727,0.371058,0.154581,0.936871,0.183904,0.648101,0.51819,0.41498,0.771588,0.14257,0.389324,0.98509,0.982934,0.532597,0.891737,0.135361,0.0795426,0.684715,0.344369,0.425488,0.62748,0.188909,0.982897,0.638205,0.822882,0.203386,0.990148,0.246033,0.275264,0.724359,0.918143,0.5015,0.805522,0.0194932,0.553523,0.0621122,0.035258,0.115723,0.811162,0.881798,0.293014,0.558697,0.909507,0.976367,0.819988,0.819857,0.384847,0.500758,0.396586,0.837694,0.697038,0.450753,|0.283002,0.243277,0.639122,0.415639,0.320146,0.360887,0.965235,0.680006,0.928936,0.482768,0.440245,0.423359,0.713532,0.23754,0.795244,0.142059,0.842371,0.110813,0.364887,0.0922178,0.518532,0.879578,0.420382,0.345148,0.641108,0.534436,0.0869235,0.255235,0.36158,0.336599,0.974054,0.881723,0.893286,0.665199,0.370748,0.180509,0.769509,0.118316,0.356769,0.146922,0.483557,0.692195,0.123337,0.488282,0.0936115,0.0105402,0.384141,0.558747,0.441721,0.13611,0.46195,0.355986,0.0849021,0.0626921,0.340006,0.274517,0.622174,0.400663,0.642507,0.873565,0.740298,0.967275,0.296129,0.414653,0.0234188,0.356705,0.463559,0.624379,0.508715,0.987819,0.93879,0.849768,0.777918,0.576082,0.920845,0.148064,0.37031,0.740684,0.179393,0.149771,0.752843,0.339399,0.00538236,0.247827,0.0163171,0.159764,0.30045,0.400895,0.731673,0.489382,0.115553,0.127259,0.954763,0.123433,0.854309,0.131055,0.00685459,0.840015,0.705934,0.0249832,0.713184,0.24366,0.257844,0.745385,0.583418,0.336886,0.382089,0.91301,0.216329,0.850588,0.391486,0.10607,0.55933,0.843988,0.993499,0.0577202,0.818161,0.210824,0.825869,0.597071,0.641454,0.0671236,0.0140295,0.836655,0.88934,0.703698,0.452751,0.98108,0.0135573,0.923335,0.943497,0.962901,0.234485,0.814423,0.909438,0.34607,0.441287,0.407454,0.584667,0.000738263,0.850521,0.352109,0.943852,0.739258,0.616921,0.276511,0.704069,0.670781,0.581954,0.909491,0.103294,0.135208,0.938975,0.901171,0.0242139,0.857828,0.598004,0.258371,0.658895,0.449087,0.00803173,0.447017,0.555351,0.226373,0.636329,0.62954,0.270156,0.621306,0.346544,0.980267,0.979931,0.540856,0.967005,0.112153,0.793411,0.590923,0.45143,0.445566,0.103384,0.448618,0.0624496,0.620683,0.452214,0.0839704,0.579648,0.677336,0.144972,0.683112,0.629618,0.469067,0.416176,0.0350101,0.0650467,0.0533044,0.447487,0.451752,0.80789,0.674238,0.690355,0.541826,0.132147,0.936316,0.278672,0.872172,0.811565,0.878468,0.326629,0.435606,0.839107,0.354485,0.646055,0.942515,0.10405,0.759769,0.771185,0.772021,0.67152,0.741889,0.399132,0.875325,0.794704,0.546824,0.07002,0.416408,0.188096,0.222363,0.647172,0.622906,0.0391477,0.254097,0.992648,0.0414499,0.422517,0.545993,0.971956,0.136287,0.0881915,0.465699,0.773561,0.828755,0.0474718,0.916573,0.777088,0.743031,0.0309547,0.278001,0.284565,0.772375,0.0582685,0.667198,0.180702,0.972252,0.809713,0.256366,0.271882,0.856515,0.611957,0.248042,0.685624,0.967536,0.525012,0.146287,0.625774,0.625328,0.724765,0.0885418,0.996219,0.130987,0.249046,0.578592,0.484836,0.295215,0.626387,0.519313,0.241094,0.713857,0.435775,0.476883,0.810551,0.759168,0.656928,0.0628819,0.506912,0.338293,0.84009,0.70478,0.599937,0.639018,0.603167,0.0777564,0.767866,0.295953,0.149325,0.157565,0.714611,0.731185,0.648777,0.40673,0.953521,0.121521,0.338494,0.739318,0.197244,0.790992,0.346865,0.648822,0.801183,0.0327194,0.476036,0.502354,0.875478,0.941341,0.748815,0.0997958,0.877052,0.893396,0.59743,0.707032,0.924012,0.588724,0.914266,0.291145,0.377437,0.155287,0.834261,0.945093,0.786854,0.0409721,0.401629,0.716637,0.509157,0.998719,0.931365,0.238442,0.953247,0.679925,0.891201,0.183357,0.181131,0.147381,0.215648,0.0322597,0.0835069,0.429554,0.945737,0.451093,0.820078,0.217383,0.893161,0.841559,0.5312,0.751306,0.655703,0.53076,0.688734,0.623855,0.469915,0.6545,0.215772,0.37889,0.659226,0.21314,0.158225,0.336717,0.78371,0.679364,0.401872,0.231566,0.0226488,0.00272053,0.0664916,0.626141,0.395508,0.889797,0.93994,0.130513,0.270767,0.866562,0.362554,0.530073,0.54282,0.103361,0.995294,0.60918,0.147412,0.784445,0.206415,0.735082,0.989868,0.998255,0.549571,0.298325,0.655484,0.864325,0.807798,0.442618,0.0101871,0.860297,0.0646818,0.296148,0.454839,0.592973,0.156476,0.316421,0.0752034,0.23732,0.723913,0.68925,0.716296,0.924622,0.17996,0.275382,0.0509794,0.649033,0.682175,0.362256,0.115304,0.0349424,0.482375,0.296654,0.540066,0.0374516,0.418294,0.964001,0.8773,0.0611176,0.346878,0.890284,0.255881,0.848126,0.544683,0.623291,0.751815,0.442402,0.353473,0.723967,0.294329,0.755753,0.727356,0.719196,0.104805,0.947641,0.158743,0.757338,0.562336,0.988568,0.635565,0.452894,0.11922,0.0430076,0.059157,0.269315,0.131667,0.994367,0.83417,0.560406,0.532903,0.491129,0.883761,0.595041,0.452739,0.090936,0.290621,0.427014,0.913743,0.547798,0.987711,0.0556356,0.496215,0.737508,0.738604,0.324958,0.429836,0.528624,0.593844,0.979128,0.720814,0.601454,0.178669,0.818475,0.605419,0.917993,0.28597,0.435659,0.735347,0.311728,0.17478,0.97656,0.646419,0.607279,0.770655,0.149814,0.948964,0.63188,0.904488,0.245781,0.952151,0.0553075,0.0730816,0.233144,0.393623,0.220962,0.460772,0.836873,0.349621,0.407967,0.868299,0.507747,0.687858,0.486533,0.42274,0.362048,0.394761,0.659798,0.803041,0.11652,0.0537789,0.464894,0.737718,0.989794,0.918988,0.752678,0.249503,0.733673,0.476869,0.415601,0.518376,0.222431,0.807169,0.309853,0.856491,0.0977322,0.304351,0.761471,0.0948094,0.723367,0.0257686,0.324389,0.117454,0.325127,0.337149,0.775231,0.248985,0.0804484,0.26409,0.439599,0.361153,0.250964,0.892655,0.806501,0.87875,0.782643,0.347493,0.222651,0.835839,0.398285,0.898076,0.0822382,0.894504,0.940346,0.338454,0.393097,0.44892,0.736995,0.0745361,0.594829,0.779186,0.680686,0.12416,0.733072,0.715552,0.883471,0.249453,0.325577,0.325942,0.701105,0.893036,0.948806,0.735451,0.979701,0.85297,0.436626,0.112753,0.853351,0.730242,0.795667,0.0359989,0.46709,0.535692,0.533186,0.620875,0.217993,0.717661,0.0401093,0.0436926,0.989175,0.449727,0.09579,0.40598,0.517126,0.352578,0.246097,0.432823,0.269557,0.667083,0.719198,0.784567,0.824701,0.766169,0.234271,0.0722999,0.123741,0.212542,0.351901,0.059193,0.60011,0.622584,0.620099,0.896975,0.736684,0.875075,0.372921,0.896882,0.297982,0.0750033,0.280719,0.327161,0.150758,0.335986,0.331447,0.259276,0.973781,0.134765,0.201476,0.373721,0.367245,0.199787,0.983505,0.987979,0.165873,0.633544,0.372486,0.0263749,0.137973,0.0695158,0.239756,0.907416,0.304676,0.900567,0.149043,0.39046,0.934416,0.811912,0.461237,0.137102,0.146426,0.522383,0.689739,0.588807,0.948887,0.347685,0.0122256,0.871106,0.828026,0.695161,0.617347,0.274514,0.660425,0.680117,0.351103,0.604104,0.749851,0.869709,0.885044,0.974079,0.162488,0.435526,0.836146,0.695859,0.182981,0.459855,0.159783,0.716531,0.87393,0.466466,0.275452,0.594519,0.116816,0.869212,0.210127,0.684115,0.308755,0.232075,0.217623,0.332461,0.178704,0.446903,0.250704,0.461423,0.264139,0.532587,0.447783,0.014081,0.979842,0.937527,0.0220223,0.0818488,0.241346,0.386912,0.814326,0.983978,0.980843,0.181216,0.0925974,0.48492,0.641278,0.436524,0.339093,0.663694,0.482704,0.575226,0.264002,0.0879253,0.511932,0.0424167,0.175815,0.944716,0.991465,0.987695,0.157268,0.969097,0.570886,0.317344,0.870499,0.0698395,0.365061,0.864984,0.212291,0.599952,0.0120292,0.52154,0.00396204,0.507591,0.412591,0.191963,0.13773,0.748317,0.856715,0.0895266,0.299048,0.111929,0.277054,0.674576,0.957016,0.883338,0.404424,0.428958,0.681256,0.725736,0.971647,0.127398,0.419408,0.76258,0.0103353,0.397709,0.708205,0.630966,0.258623,0.585299,0.735717,0.404898,0.450552,0.979582,0.0210768,0.229947,0.296916,0.867964,0.725292,0.386607,0.180965,0.935295,0.665688,0.37194,0.0555104,0.144576,0.367118,0.424799,0.153279,0.80922,0.639117,0.195522,0.663318,0.0761019,0.459045,0.834155,0.419686,0.721591,0.58738,0.404934,0.167028,0.904484,0.894514,0.154081,0.291513,0.128175,0.394479,0.67169,0.075094,0.682253,0.257727,0.775349,0.778804,0.978483,0.541821,0.689622,0.482314,0.975591,0.403934,0.601719,0.0815723,0.50744,0.872928,0.861029,0.25719,0.570881,0.330727,0.751506,0.535913,0.387033,0.921455,0.477132,0.239414,0.379538,0.199079,0.0255394,0.683402,0.190514,0.108841,0.566089,0.0434517,0.390757,0.656275,0.389259,0.88165,0.343893,0.473916,0.0576879,0.0778781,0.36295,0.585704,0.833717,0.785493,0.775979,0.242068,0.705632,0.207346,0.622624,0.961601,0.680006,0.672078,0.663345,0.513557,0.738122,0.42826,0.230069,0.0225606,0.108938,0.792569,0.00245667,0.0212211,0.560949,0.340607,0.00616485,0.999372,0.711576,0.585203,0.00971615,0.316786,0.851141,0.919717,0.426311,0.477534,0.476283,0.263267,0.101438,0.492256,0.742453,0.823305,0.241034,0.391995,0.76357,0.103359,0.550053,0.488139,0.751719,0.0250744,0.943826,0.406859,0.502553,0.854618,0.336567,0.135562,0.309901,0.126128,0.0691234,0.761181,0.15668,0.312518,0.932258,0.467135,0.50742,0.147622,0.478119,0.433927,0.179087,0.388416,0.802151,0.775416,0.257146,0.351876,0.19837,0.22105,0.76337,0.314929,0.0141425,0.286838,0.410652,0.40753,0.927865,0.00303698,0.615705,0.681293,0.842661,0.699686,0.212999,0.224712,0.465517,0.364494,0.408816,0.737274,0.584156,0.855784,0.404171,0.889264,0.711215,0.0284481,0.347994,0.149203,0.902148,0.841636,0.0423414,0.487205,0.737176,0.268087,0.715881,0.776136,0.714458,0.43172,0.280233,0.122697,0.982207,0.162111,0.196819,0.44419,0.887451,0.7074,0.987603,0.310444,0.362411,0.440941,0.895604,0.459625,0.633921,0.237101,0.0746874,0.435444,0.815716,0.295283,0.130827,0.016468,0.628141,0.696817,0.854343,0.201331,0.870128,0.119917,0.465167,0.58063,0.193292,0.369632,0.274949,0.400692,0.322842,0.546838,0.637134,0.138893,0.619492,0.514242,0.313445,0.294027,|0.943554,0.722778,0.740163,0.942937,0.0909345,0.132049,0.850774,0.708732,0.00219041,0.379021,0.817798,0.834906,0.491286,0.295428,0.375393,0.644375,0.167896,0.225139,0.195828,0.21805,0.112906,0.687404,0.831638,0.02787,0.230834,0.664632,0.194995,0.395485,0.550839,0.666317,0.835333,0.989819,0.384244,0.948427,0.945756,0.31554,0.513243,0.614687,0.240623,0.224474,0.350804,0.395595,0.429738,0.732854,0.332878,0.990677,0.465927,0.309939,0.408671,0.913016,0.500184,0.391075,0.809722,0.754749,0.94487,0.794447,0.748925,0.778387,0.618812,0.703978,0.0846295,0.607701,0.291624,0.259758,0.502264,0.924831,0.155879,0.661829,0.94362,0.642192,0.0294272,0.244914,0.302929,0.00105631,0.116568,0.0862894,0.193376,0.191511,0.743196,0.276059,0.941327,0.637771,0.0770372,0.834885,0.756805,0.974083,0.141712,0.552917,0.937601,0.235412,0.765797,0.956885,0.720816,0.416582,0.862778,0.28465,0.338115,0.899837,0.257023,0.525998,0.93765,0.527349,0.123317,0.756082,0.215213,0.934724,0.151165,0.866785,0.511296,0.602556,0.494534,0.29873,0.0335891,0.940353,0.260126,0.539743,0.758871,0.554798,0.299209,0.444095,0.890649,0.651073,0.918963,0.878434,0.4002,0.586196,0.13099,0.0471841,0.0327942,0.353793,0.846371,0.666905,0.377036,0.865862,0.680528,0.989299,0.74554,0.682776,0.373171,0.847682,0.769395,0.817922,0.394023,0.600015,0.0253735,0.0471555,0.908966,0.492629,0.332855,0.664947,0.695841,0.988272,0.223195,0.349967,0.443599,0.590237,0.427449,0.508526,0.913036,0.90827,0.698169,0.337292,0.333141,0.183386,0.839825,0.295838,0.729447,0.337732,0.523021,0.961491,0.196274,0.217137,0.814525,0.511471,0.816502,0.362203,0.0707348,0.567451,0.836145,0.603519,0.372536,0.887873,0.735819,0.661301,0.228013,0.736595,0.732926,0.469298,0.899971,0.531858,0.167715,0.904107,0.740587,0.907348,0.790986,0.230679,0.27106,0.0212381,0.0844002,0.814264,0.926552,0.0285749,0.143474,0.410474,0.212401,0.132947,0.515656,0.558337,0.667754,0.824456,0.934366,0.581641,0.534234,0.242822,0.481384,0.836401,0.03536,0.390421,0.9051,0.0998985,0.0042271,0.401979,0.565876,0.200786,0.899376,0.660644,0.182106,0.827696,0.879409,0.0134168,0.980905,0.0184382,0.39256,0.890302,0.568476,0.0875239,0.945753,0.490787,0.872293,0.786529,0.350531,0.840267,0.365412,0.320686,0.368303,0.0127021,0.276989,0.172766,0.37498,0.300729,0.763258,0.658815,0.0365019,0.828264,0.1628,0.691762,0.86946,0.592768,0.397762,0.647934,0.871763,0.594875,0.121667,0.0941874,0.418726,0.713322,0.986759,0.713703,0.440686,0.859286,0.612089,0.864572,0.295053,0.722236,0.160266,0.644643,0.254713,0.193657,0.214851,0.134548,0.890179,0.370051,0.818212,0.786838,0.875778,0.117539,0.750616,0.549945,0.656996,0.632934,0.0604495,0.752141,0.888387,0.753829,0.42742,0.248214,0.543665,0.997404,0.577399,0.0399889,0.270928,0.940323,0.75754,0.0121858,0.0700845,0.822479,0.948027,0.688896,0.219087,0.924636,0.619286,0.236365,0.9208,0.897656,0.297365,0.336427,0.0520979,0.329449,0.638518,0.741859,0.388968,0.785345,0.00431991,0.0945088,0.317524,0.949684,0.894567,0.806286,0.085447,0.808604,0.0529838,0.366569,0.854309,0.380824,0.959272,0.316971,0.927334,0.111324,0.952999,0.132653,0.655306,0.0676842,0.698777,0.0820966,0.200583,0.191241,0.859256,0.329467,0.354868,0.779788,0.440722,0.486741,0.676884,0.381943,0.15692,0.056659,0.424683,0.247822,0.240723,0.295245,0.761568,0.382969,0.555605,0.993616,0.378726,0.110552,0.325963,0.714469,0.482495,0.149739,0.426641,0.694868,0.0161617,0.975064,0.275982,0.7391,0.626064,0.46137,0.193393,0.704483,0.0348015,0.352411,0.472954,0.636621,0.234321,0.670359,0.218332,0.525107,0.435066,0.0106507,0.441103,0.969406,0.969145,0.0648414,0.0105524,0.278271,0.326408,0.789745,0.052334,0.264978,0.4877,0.765899,0.875735,0.953344,0.188254,0.379778,0.403463,0.146056,0.491231,0.691882,0.0588166,0.169516,0.0907447,0.583265,0.392788,0.498285,0.848126,0.10647,0.911239,0.652523,0.169312,0.783666,0.300609,0.22723,0.0364957,0.372709,0.806162,0.337289,0.411834,0.891048,0.913965,0.343243,0.139009,0.735692,0.304705,0.96535,0.487767,0.299131,0.0958531,0.908894,0.286026,0.500028,0.668477,0.048243,0.76573,0.97508,0.879218,0.177269,0.734771,0.333754,0.378573,0.295621,0.932634,0.0560637,0.0940841,0.112361,0.588109,0.701888,0.670505,0.834101,0.639008,0.236432,0.39907,0.656778,0.689527,0.676708,0.82458,0.0968004,0.264765,0.794601,0.575085,0.897851,0.978232,0.385739,0.848067,0.376745,0.0443578,0.817258,0.16797,0.290784,0.638077,0.888623,0.930207,0.0529569,0.806883,0.23494,0.194966,0.155287,0.395773,0.126421,0.975393,0.349517,0.31967,0.174512,0.773626,0.280387,0.753227,0.0238753,0.338309,0.82266,0.971186,0.0390254,0.405502,0.687573,0.587242,0.11532,0.457681,0.20353,0.816445,0.86682,0.139098,0.118438,0.117098,0.109736,0.911225,0.670999,0.791062,0.335524,0.77661,0.203294,0.156367,0.508012,0.440087,0.407941,0.420004,0.961979,0.524296,0.202445,0.902757,0.203961,0.393414,0.445407,0.410876,0.0690461,0.388473,0.216569,0.447481,0.433723,0.456955,0.0982708,0.789527,0.990469,0.441706,0.575523,0.835133,0.810214,0.605239,0.955667,0.0918716,0.21436,0.479644,0.391155,0.0874594,0.873672,0.0730472,0.198525,0.521851,0.953321,0.0835268,0.387291,0.195531,0.101654,0.482062,0.194237,0.243855,0.881936,0.666151,0.96912,0.922341,0.0262382,0.867187,0.649742,0.80423,0.671621,0.954286,0.406171,0.285668,0.297056,0.791005,0.348774,0.170884,0.994606,0.315258,0.7282,0.639639,0.956709,0.575762,0.823859,0.786439,0.927132,0.249094,0.63596,0.270224,0.131682,0.538142,0.849512,0.233412,0.135132,0.428402,0.548745,0.0304616,0.494279,0.0392992,0.382227,0.0735228,0.45082,0.368289,0.0575529,0.812022,0.46695,0.108389,0.511903,0.0869213,0.539833,0.100461,0.360531,0.178093,0.246518,0.783517,0.0872532,0.783984,0.766934,0.27325,0.0151588,0.283834,0.949692,0.324996,0.523256,0.447343,0.105222,0.579945,0.0894287,0.994569,0.490858,0.233758,0.364787,0.605005,0.878292,0.658155,0.760541,0.873713,0.00492066,0.958697,0.653834,0.144735,0.96994,0.163313,0.268411,0.171571,0.853099,0.0110167,0.228178,0.508501,0.995278,0.928431,0.35532,0.678014,0.970391,0.164076,0.747864,0.0844348,0.335268,0.555184,0.253678,0.423398,0.937937,0.614674,0.235679,0.366359,0.286607,0.505801,0.407482,0.0643179,0.791887,0.756489,0.793637,0.735606,0.198937,0.373984,0.0625798,0.41924,0.508361,0.241682,0.0821481,0.392009,0.951534,0.879167,0.0137814,0.426864,0.774062,0.564163,0.0374818,0.769303,0.177527,0.0264911,0.813283,0.221143,0.124923,0.476188,0.136233,0.205387,0.0742302,0.525481,0.535873,0.584542,0.325978,0.44607,0.948025,0.174757,0.280261,0.524551,0.082018,0.996774,0.532293,0.711992,0.0398378,0.516068,0.238892,0.415243,0.806768,0.624182,0.270956,0.89387,0.660081,0.409633,0.962894,0.723577,0.0542858,0.0366426,0.266481,0.839749,0.913107,0.563451,0.292297,0.626588,0.735183,0.216057,0.348835,0.10653,0.866797,0.00131166,0.166619,0.245242,0.7396,0.94347,0.395318,0.361957,0.641071,0.527092,0.19455,0.681513,0.35757,0.326906,0.497588,0.505352,0.763506,0.806832,0.793771,0.299999,0.588267,0.303235,0.319848,0.276287,0.443444,0.819775,0.0451579,0.766806,0.441829,0.413203,0.387141,0.999063,0.578646,0.391574,0.171739,0.626652,0.341919,0.192859,0.535736,0.727141,0.842472,0.479478,0.99277,0.310533,0.275527,0.902016,0.183751,0.264674,0.609011,0.0410242,0.768207,0.0944388,0.382379,0.987932,0.681147,0.426736,0.258951,0.277532,0.834131,0.341924,0.293687,0.622955,0.248895,0.0576158,0.402097,0.389068,0.894685,0.807539,0.867303,0.217716,0.103227,0.781382,0.894677,0.33155,0.516002,0.694567,0.817909,0.593183,0.0341163,0.666808,0.145638,0.515744,0.539971,0.620792,0.299008,0.342812,0.27372,0.553176,0.338197,0.26998,0.285496,0.165592,0.995182,0.126769,0.427199,0.497972,0.284431,0.804309,0.611429,0.938596,0.55034,0.269141,0.390057,0.250369,0.297861,0.475812,0.520787,0.503407,0.380069,0.40651,0.349548,0.25594,0.820449,0.270411,0.513373,0.940371,0.92837,0.373812,0.851585,0.560024,0.76327,0.66149,0.149284,0.587288,0.21706,0.0420353,0.256212,0.235133,0.792531,0.86293,0.886157,0.165628,0.726466,0.715998,0.112048,0.436391,0.825895,0.482368,0.945056,0.210398,0.658634,0.72963,0.511154,0.774974,0.0308098,0.706268,0.642833,0.125421,0.230062,0.782099,0.50525,0.317406,0.739513,0.872832,0.116692,0.855304,0.525779,0.750862,0.40055,0.443322,0.614077,0.112281,0.514238,0.354372,0.860886,0.430108,0.166259,0.901545,0.0125568,0.766878,0.984952,0.4092,0.758507,0.656297,0.429899,0.360792,0.867265,0.127575,0.416216,0.280393,0.441145,0.506015,0.726564,0.342073,0.814516,0.549359,0.326185,0.579556,0.837045,0.467273,0.640509,0.47723,0.599139,0.0244961,0.983196,0.998878,0.0577464,0.92533,0.943079,0.286857,0.329305,0.539015,0.453219,0.0398854,0.823678,0.823901,0.435991,0.94549,0.129173,0.473118,0.719644,0.980481,0.136194,0.301065,0.881579,0.523403,0.0772097,0.261295,0.900192,0.39868,0.350176,0.297318,0.44966,0.542457,0.807307,0.865051,0.307928,0.764647,0.409103,0.821288,0.835846,0.0139005,0.836061,0.899938,0.233566,0.0399598,0.612292,0.959556,0.032899,0.173706,0.743532,0.0697588,0.96981,0.7539,0.0452944,0.0673174,0.992412,0.26901,0.443997,0.876682,0.0586597,0.81795,0.810067,0.767668,0.547859,0.87632,0.440304,0.630752,0.21857,0.797761,0.660365,|0.793469,0.56034,0.759585,0.61347,0.97561,0.69579,0.0674708,0.349219,0.49046,0.207195,0.128959,0.453682,0.848302,0.93004,0.445261,0.733404,0.646141,0.676339,0.192118,0.452563,0.234234,0.910571,0.852837,0.930654,0.98013,0.596032,0.957009,0.732308,0.0842646,0.737088,0.600191,0.584388,0.422235,0.448008,0.964207,0.425873,0.298942,0.421688,0.596881,0.179416,0.125562,0.284762,0.153706,0.525391,0.861249,0.292296,0.480489,0.325813,0.267361,0.0845774,0.113731,0.126609,0.530677,0.324242,0.780035,0.0204011,0.460495,0.118013,0.278391,0.733091,0.0744511,0.215533,0.846022,0.339088,0.953513,0.982324,0.361889,0.0153333,0.800565,0.0989796,0.429703,0.322054,0.763933,0.183376,0.433174,0.299675,0.475474,0.137363,0.383109,0.936598,0.165347,0.140849,0.685399,0.326569,0.392211,0.745096,0.00586939,0.226638,0.604973,0.948799,0.41227,0.79436,0.440316,0.862082,0.844394,0.174419,0.57224,0.792637,0.951817,0.975623,0.86854,0.922882,0.482583,0.866733,0.574362,0.268769,0.526783,0.728906,0.662325,0.250992,0.471695,0.486977,0.29894,0.43507,0.337428,0.105507,0.77968,0.00622278,0.152586,0.0609666,0.307978,0.727302,0.130398,0.124984,0.584331,0.453549,0.382251,0.642463,0.421647,0.199829,0.432849,0.399807,0.177019,0.4797,0.859989,0.406445,0.340984,0.765175,0.446419,0.502448,0.784765,0.0382382,0.146258,0.838442,0.681722,0.703614,0.862859,0.605266,0.631539,0.385946,0.529766,0.716833,0.248541,0.82082,0.0621254,0.789233,0.677527,0.770624,0.332652,0.42519,0.361055,0.0774367,0.310289,0.218619,0.226775,0.426451,0.274326,0.264559,0.156825,0.119674,0.225059,0.515688,0.0782764,0.659742,0.912154,0.986399,0.402448,0.182771,0.454433,0.289466,0.36373,0.373647,0.175226,0.670042,0.201296,0.473366,0.795028,0.885927,0.072476,0.346223,0.295332,0.760364,0.400212,0.767585,0.149481,0.956491,0.102256,0.659775,0.573136,0.602259,0.574548,0.159548,0.548742,0.0589559,0.697939,0.269494,0.491872,0.74491,0.150068,0.208116,0.0816658,0.395621,0.588614,0.561315,0.469748,0.76956,0.471546,0.197455,0.118272,0.515707,0.833275,0.922888,0.467773,0.313757,0.0190356,0.126934,0.437926,0.391557,0.048364,0.301054,0.396408,0.691793,0.640084,0.821504,0.516684,0.562626,0.653142,0.817153,0.944743,0.730568,0.370871,0.644601,0.25183,0.536813,0.545235,0.426365,0.522099,0.2871,0.669003,0.86337,0.706847,0.679985,0.244045,0.495962,0.376239,0.943375,0.195973,0.45766,0.89851,0.135167,0.790839,0.260867,0.460942,0.658072,0.737186,0.613434,0.953302,0.757498,0.722622,0.162539,0.0517075,0.366615,0.574674,0.573278,0.162401,0.961018,0.420514,0.118408,0.326972,0.822683,0.474258,0.37895,0.938509,0.390634,0.758703,0.148299,0.0136575,0.655453,0.482802,0.608662,0.15381,0.259064,0.408288,0.0964053,0.835057,0.374213,0.675867,0.705873,0.868036,0.0514532,0.988444,0.773887,0.0190587,0.603074,0.194462,0.746419,0.995241,0.10275,0.526034,0.769203,0.97516,0.769663,0.0210407,0.263783,0.642928,0.176255,0.848307,0.993213,0.712287,0.800807,0.758845,0.798457,0.0139404,0.111011,0.970838,0.781068,0.444674,0.175454,0.0981197,0.876181,0.154461,0.178124,0.194996,0.393391,0.357718,0.246015,0.354165,0.0479745,0.693385,0.758641,0.183022,0.445642,0.910677,0.148963,0.290821,0.561096,0.423015,0.210595,0.542206,0.202441,0.823925,0.381993,0.266915,0.0798725,0.799639,0.702163,0.0774534,0.126463,0.280491,0.281873,0.24019,0.442143,0.909676,0.275987,0.849021,0.506028,0.764186,0.333343,0.0782045,0.738991,0.558702,0.0772064,0.0428569,0.145661,0.273485,0.416737,0.188241,0.387981,0.771605,0.665663,0.498997,0.939693,0.44759,0.553529,0.948076,0.617161,0.433604,0.0838388,0.910226,0.148981,0.300906,0.756103,0.616774,0.469618,0.572573,0.82947,0.447624,0.314485,0.726406,0.102357,0.0648066,0.921553,0.725817,0.855328,0.295919,0.13418,0.590143,0.508417,0.878491,0.280237,0.561447,0.0449957,0.730742,0.475226,0.194017,0.919268,0.561925,0.00472242,0.287969,0.917918,0.922757,0.502404,0.326925,0.282097,0.595244,0.992756,0.237025,0.712254,0.118256,0.0137646,0.154576,0.784192,0.375974,0.996137,0.773021,0.418796,0.189953,0.291219,0.971641,0.864438,0.421426,0.460749,0.837386,0.800518,0.421949,0.248214,0.422126,0.636336,0.929253,0.635453,0.634629,0.418746,0.927569,0.545199,0.233448,0.834138,0.942053,0.173452,0.0866979,0.919855,0.939807,0.89616,0.145984,0.845549,0.386819,0.538866,0.294386,0.731381,0.0445025,0.554967,0.995746,0.857212,0.0679523,0.311414,0.172064,0.724404,0.559546,0.791468,0.825052,0.670516,0.348842,0.959205,0.960134,0.533327,0.252008,0.0642673,0.907733,0.814749,0.482045,0.289814,0.932597,0.683547,0.701102,0.620292,0.420189,0.359499,0.629171,0.70403,0.147747,0.0340286,0.0721117,0.825147,0.165654,0.612905,0.416633,0.555908,0.194859,0.0233523,0.399313,0.596012,0.485666,0.93507,0.233422,0.0907742,0.490998,0.78986,0.0973499,0.019028,0.791416,0.0534554,0.820823,0.775036,0.253151,0.914373,0.981956,0.0218012,0.388421,0.960253,0.0833692,0.668623,0.934633,0.363843,0.893349,0.515383,0.497481,0.455122,0.0521717,0.545157,0.30735,0.96027,0.864669,0.260669,0.935803,0.349202,0.793024,0.433479,0.598257,0.428114,0.793396,0.167314,0.364242,0.971853,0.594071,0.103146,0.531944,0.730673,0.59406,0.632442,0.700752,0.891764,0.326515,0.17815,0.443246,0.0680277,0.912244,0.807058,0.111662,0.0344738,0.237645,0.595037,0.594096,0.192386,0.579581,0.186147,0.715729,0.770599,0.309902,0.910402,0.664788,0.891294,0.627128,0.753034,0.293916,0.238769,0.116917,0.892428,0.821679,0.919296,0.407363,0.328488,0.418985,0.599449,0.426086,0.577354,0.608809,0.0601062,0.171825,0.107977,0.268122,0.257553,0.375277,0.160546,0.126906,0.386099,0.790162,0.132482,0.547624,0.426328,0.45208,0.729053,0.545001,0.35319,0.354282,0.605223,0.762008,0.233379,0.127746,0.505145,0.951775,0.630905,0.138423,0.164064,0.337377,0.0677068,0.483047,0.362061,0.115294,0.815914,0.740192,0.611651,0.785484,0.525963,0.337075,0.211971,0.20025,0.519208,0.162999,0.247371,0.623312,0.270222,0.373335,0.971098,0.773096,0.568242,0.0551585,0.58375,0.25948,0.425356,0.0604879,0.469477,0.942796,0.293109,0.87283,0.0594555,0.851436,0.274455,0.0857915,0.225561,0.0828157,0.0419366,0.450389,0.356904,0.669565,0.567528,0.416207,0.407082,0.394308,0.55403,0.481062,0.458867,0.615479,0.71835,0.762529,0.949999,0.331296,0.74063,0.639531,0.945751,0.234217,0.553742,0.628662,0.723704,0.837717,0.000310957,0.212938,0.558872,0.130335,0.722868,0.238223,0.635253,0.663417,0.0319509,0.554231,0.781307,0.31104,0.65315,0.922855,0.736237,0.699655,0.721871,0.740341,0.910811,0.940885,0.555612,0.194555,0.796814,0.225978,0.767989,0.599762,0.947344,0.606252,0.13038,0.259996,0.826716,0.75372,0.243947,0.539116,0.533897,0.0758443,0.607934,0.75324,0.107713,0.749162,0.555273,0.989874,0.572005,0.229381,0.00282937,0.604945,0.762631,0.512238,0.880434,0.665947,0.838083,0.740618,0.216873,0.378288,0.0716861,0.152314,0.0569506,0.608495,0.826298,0.467337,0.859847,0.102587,0.463036,0.167889,0.035206,0.0266473,0.290296,0.475473,0.920976,0.893622,0.342091,0.440272,0.74552,0.461057,0.914965,0.229013,0.479776,0.378196,0.0937745,0.782267,0.685908,0.0255836,0.670869,0.265667,0.357674,0.0970839,0.583928,0.625198,0.354661,0.399807,0.614237,0.0161589,0.602617,0.103884,0.562019,0.529045,0.369513,0.939534,0.128389,0.917416,0.547215,0.0931897,0.939699,0.106564,0.751518,0.823707,0.788668,0.268065,0.478191,0.745477,0.0960837,0.767391,0.011808,0.845489,0.709673,0.276844,0.105376,0.793614,0.801803,0.147168,0.959145,0.599142,0.792952,0.142291,0.294039,0.0456583,0.248647,0.500734,0.822139,0.619714,0.7613,0.737704,0.0970165,0.0778975,0.936759,0.677838,0.341646,0.339302,0.698809,0.430534,0.8141,0.133532,0.224055,0.669161,0.567342,0.463362,0.957754,0.241496,0.825109,0.257037,0.695086,0.108389,0.56194,0.0442795,0.607656,0.638069,0.994799,0.71623,0.304599,0.676231,0.0634776,0.751222,0.918455,0.261806,0.165458,0.289511,0.116041,0.266462,0.753497,0.052892,0.887356,0.142226,0.156051,0.200099,0.460152,0.456015,0.902633,0.630271,0.634954,0.659823,0.962638,0.132552,0.5734,0.755282,0.955956,0.916277,0.489706,0.102211,0.55155,0.260875,0.312215,0.752565,0.0467752,0.415916,0.619115,0.949654,0.756045,0.592967,0.37416,0.98731,0.65042,0.455757,0.871345,0.155719,0.993725,0.276426,0.331092,0.396413,0.282446,0.446865,0.527796,0.994944,0.457548,0.0300659,0.834911,0.336054,0.2667,0.269944,0.99352,0.537238,0.724649,0.664592,0.710051,0.106359,0.096956,0.614913,0.230522,0.600398,0.87232,0.680123,0.56081,0.572531,0.141865,0.981316,0.16588,0.04796,0.965955,0.721629,0.654925,0.913754,0.575299,0.877655,0.736656,0.784956,0.899299,0.774102,0.0259968,0.140472,0.502812,0.813926,0.986282,0.572066,0.146768,0.207515,0.350362,0.624399,0.366542,0.56282,0.242773,0.0924197,0.234127,0.711812,0.191757,0.704856,0.19288,0.533413,0.884607,0.639931,0.12137,0.609065,0.88916,0.600495,0.765591,0.12664,0.414225,0.305979,0.641523,0.306496,0.940263,0.361865,0.742377,0.205513,0.843892,0.0459448,0.272487,0.74495,0.431429,0.794312,0.184629,0.962806,0.145621,0.947141,0.783257,0.054633,0.0264904,0.179179,0.317261,0.978896,0.722009,0.722352,0.437067,0.0744702,0.266998,0.523484,0.83783,0.849871,0.0878828,0.35102,0.409045,0.089639,0.18315,0.303351,0.218266,0.647854,0.411938,0.0732396,0.754773,|0.982537,0.459638,0.292167,0.353243,0.98489,0.978581,0.682419,0.863963,0.14245,0.662699,0.545437,0.390616,0.0934319,0.326624,0.38399,0.613514,0.796811,0.103365,0.839072,0.623948,0.577738,0.0199169,0.351818,0.725819,0.267113,0.190864,0.441769,0.5154,0.962531,0.93532,0.714103,0.814196,0.502157,0.948303,0.48651,0.545681,0.801719,0.261352,0.0524955,0.280124,0.652563,0.448163,0.614679,0.0719767,0.507206,0.917655,0.67802,0.850356,0.579073,0.0746051,0.907363,0.092335,0.029483,0.974384,0.620976,0.746981,0.0343561,0.468413,0.0406912,0.259557,0.132517,0.171619,0.803334,0.821319,0.67137,0.420609,0.392902,0.396539,0.0533704,0.382333,0.379577,0.0394223,0.774429,0.656453,0.510611,0.472371,0.720452,0.309187,0.886058,0.589728,0.163523,0.97281,0.913097,0.383234,0.342135,0.405888,0.364607,0.553441,0.971302,0.591774,0.824555,0.499176,0.268809,0.296131,0.462774,0.284837,0.220208,0.757996,0.463456,0.948987,0.258287,0.849987,0.388214,0.483003,0.959599,0.904348,0.263756,0.877534,0.521638,0.304087,0.971807,0.0893846,0.285246,0.315395,0.603736,0.220172,0.327911,0.382923,0.103784,0.873807,0.536205,0.549164,0.188407,0.615443,0.861265,0.852755,0.785205,0.922714,0.879659,0.453833,0.182258,0.723215,0.302084,0.958062,0.72916,0.350909,0.591387,0.479158,0.0995282,0.0794036,0.378807,0.495272,0.487101,0.577075,0.627284,0.752372,0.954744,0.734595,0.713219,0.874581,0.425544,0.714068,0.106294,0.930987,0.45474,0.360485,0.775358,0.94556,0.596787,0.703938,0.240815,0.545394,0.609839,0.999043,0.775839,0.392226,0.988023,0.097738,0.960951,0.384313,0.544833,0.704449,0.291786,0.656321,0.72261,0.588406,0.12214,0.706414,0.840234,0.633702,0.74221,0.365648,0.0898706,0.786769,0.518301,0.697809,0.456078,0.244781,0.404312,0.637924,0.130166,0.839963,0.954754,0.250862,0.282981,0.0630729,0.326658,0.854306,0.224367,0.596167,0.162492,0.45531,0.262042,0.314106,0.266917,0.531547,0.722374,0.764689,0.303941,0.704874,0.454576,0.35399,0.523033,0.59056,0.879393,0.26873,0.0754175,0.108602,0.719468,0.84055,0.323569,0.228471,0.714433,0.00284243,0.790842,0.708532,0.660817,0.640357,0.953137,0.603078,0.131004,0.0970706,0.0966914,0.915597,0.581795,0.781605,0.435337,0.229941,0.244072,0.68165,0.449009,0.883383,0.420364,0.622653,0.736885,0.263021,0.488326,0.155004,0.728124,0.547827,0.303738,0.88548,0.765825,0.0884781,0.916299,0.938663,0.868209,0.621611,0.0427982,0.527202,0.64744,0.122889,0.573768,0.309886,0.297215,0.788601,0.284822,0.79436,0.447597,0.946853,0.265271,0.11225,0.93008,0.454659,0.162582,0.787498,0.984417,0.669977,0.00436884,0.520372,0.902759,0.416822,0.971867,0.858985,0.705076,0.646314,0.982478,0.909931,0.950797,0.870775,0.459615,0.0437466,0.0388495,0.349631,0.863437,0.325947,0.701228,0.940472,0.549002,0.838468,0.468818,0.610746,0.106209,0.297123,0.392739,0.11536,0.494948,0.231854,0.133854,0.572678,0.540395,0.473817,0.741852,0.745572,0.320531,0.531249,0.887843,0.10448,0.81562,0.713292,0.36713,0.234791,0.9555,0.044109,0.426376,0.239451,0.275882,0.490849,0.443746,0.595118,0.83741,0.988467,0.595552,0.924533,0.783709,0.138824,0.962936,0.879252,0.199154,0.81527,0.577695,0.492378,0.882032,0.575971,0.378462,0.665199,0.956669,0.381682,0.411807,0.642083,0.775187,0.349814,0.317017,0.397614,0.115359,0.325791,0.828633,0.952202,0.20908,0.24538,0.402625,0.712509,0.631476,0.406893,0.40412,0.695955,0.571566,0.144188,0.172642,0.276297,0.610203,0.716824,0.923404,0.234162,0.955238,0.839533,0.0620288,0.586359,0.0675164,0.127346,0.742849,0.554102,0.892936,0.508046,0.610412,0.272816,0.0988795,0.896371,0.175169,0.270283,0.991192,0.730696,0.524263,0.236062,0.965742,0.39384,0.347339,0.952281,0.490864,0.346334,0.942735,0.915048,0.649135,0.906154,0.177733,0.826642,0.639059,0.0220876,0.503231,0.91902,0.974578,0.691215,0.493515,0.235295,0.992574,0.657162,0.472281,0.386682,0.62778,0.514479,0.796927,0.640141,0.817073,0.382719,0.31475,0.28856,0.738911,0.372228,0.439712,0.413604,0.822673,0.784168,0.569566,0.848089,0.961919,0.359559,0.757791,0.591108,0.168593,0.769764,0.891674,0.611746,0.839803,0.0869669,0.015402,0.756019,0.617731,0.586338,0.126279,0.994305,0.19282,0.0362635,0.0665628,0.242518,0.737166,0.658375,0.78192,0.884728,0.529523,0.170374,0.299483,0.55504,0.095966,0.917583,0.035473,0.520291,0.572306,0.333846,0.113327,0.246718,0.430241,0.477241,0.599479,0.187167,0.013394,0.486679,0.749538,0.0653809,0.510132,0.137817,0.472593,0.0612077,0.977218,0.952961,0.32694,0.413873,0.301443,0.234981,0.981962,0.970349,0.54862,0.270285,0.827539,0.398002,0.798369,0.647802,0.727664,0.42005,0.918326,0.533303,0.750899,0.200416,0.729508,0.397328,0.157496,0.995362,0.585794,0.242194,0.14782,0.517017,0.697544,0.616323,0.282664,0.126747,0.920634,0.256666,0.73344,0.159314,0.996784,0.427577,0.264545,0.69621,0.105546,0.982163,0.544923,0.95169,0.935275,0.006558,0.458214,0.684182,0.974214,0.195719,0.747319,0.251862,0.792219,0.298305,0.588915,0.837714,0.0346202,0.460824,0.150407,0.902086,0.0518922,0.273575,0.255332,0.944722,0.45414,0.387373,0.180079,0.156739,0.167701,0.995492,0.106682,0.474124,0.686277,0.339548,0.807176,0.367378,0.837948,0.501462,0.145322,0.181878,0.105567,0.883607,0.649268,0.755173,0.581634,0.814835,0.673884,0.789667,0.772429,0.778151,0.337653,0.962656,0.35148,0.783808,0.406197,0.885484,0.490242,0.783417,0.0538406,0.882303,0.293579,0.9684,0.0199772,0.0111924,0.531087,0.836689,0.959483,0.766178,0.204347,0.886613,0.733334,0.866037,0.263809,0.770321,0.155847,0.625062,0.768002,0.549273,0.808052,0.162743,0.844518,0.505956,0.287012,0.77923,0.851025,0.891733,0.810669,0.756079,0.652225,0.13508,0.964604,0.835348,0.19302,0.760373,0.0367814,0.0455249,0.0401694,0.46528,0.283928,0.181258,0.0415172,0.662883,0.560104,0.135242,0.0203754,0.571719,0.539793,0.223806,0.12489,0.877221,0.207631,0.3587,0.469983,0.432869,0.0507587,0.743414,0.936169,0.637922,0.0721084,0.41246,0.242107,0.0300898,0.0048542,0.835867,0.419211,0.469954,0.437437,0.991349,0.257211,0.44644,0.587334,0.0699562,0.270996,0.0306947,0.371172,0.372881,0.581656,0.2301,0.263299,0.142585,0.955897,0.211946,0.286442,0.0363541,0.442972,0.241849,0.263071,0.265121,0.493945,0.620056,0.0515431,0.20842,0.0856822,0.321321,0.489551,0.603971,0.918392,0.670202,0.127304,0.463765,0.484692,0.739312,0.320002,0.684463,0.742603,0.196803,0.932597,0.702444,0.0214031,0.705087,0.937372,0.311835,0.527398,0.0519521,0.588657,0.931076,0.759172,0.397295,0.912313,0.936689,0.103481,0.993678,0.027395,0.939799,0.637453,0.458254,0.146811,0.280645,0.0185476,0.938766,0.71544,0.667778,0.786418,0.0253116,0.365764,0.0699624,0.00131577,0.576653,0.172153,0.549941,0.861869,0.691602,0.964999,0.51785,0.462473,0.706547,0.100443,0.381639,0.508662,0.856991,0.558949,0.403017,0.0865353,0.832389,0.698556,0.418595,0.944017,0.648804,0.500343,0.837683,0.802508,0.998677,0.362568,0.174873,0.998026,0.688178,0.43321,0.92112,0.877877,0.344493,0.906014,0.64921,0.594033,0.843418,0.357287,0.22658,0.162708,0.624273,0.99327,0.796873,0.676705,0.394983,0.243085,0.461566,0.285115,0.343175,0.169869,0.140476,0.0119408,0.475145,0.0842761,0.685542,0.366865,0.487744,0.352512,0.26553,0.170781,0.928873,0.212947,0.735293,0.50902,0.30924,0.20133,0.0113212,0.163757,0.926775,0.737158,0.61746,0.6668,0.426482,0.00935113,0.477104,0.951317,0.195185,0.0999733,0.343106,0.316095,0.0442298,0.887528,0.0762148,0.29285,0.922353,0.735085,0.246095,0.199407,0.962295,0.500302,0.658932,0.800663,0.356733,0.995636,0.888604,0.453979,0.459002,0.363561,0.147446,0.41604,0.127769,0.69178,0.964597,0.811332,0.247617,0.908702,0.673954,0.974503,0.230385,0.572814,0.0739461,0.417843,0.834925,0.736882,0.0473132,0.938267,0.253227,0.908859,0.799041,0.00953239,0.88328,0.0692225,0.907279,0.805737,0.286656,0.356782,0.871188,0.941246,0.633877,0.103531,0.031397,0.80146,0.282683,0.217086,0.492513,0.124486,0.267531,0.145476,0.0946077,0.416587,0.420428,0.303588,0.890511,0.657757,0.591688,0.638724,0.188046,0.320895,0.118067,0.209859,0.101333,0.00829303,0.103027,0.244472,0.800601,0.0723578,0.0167903,0.938801,0.123512,0.41411,0.689368,0.867473,0.882376,0.570337,0.664603,0.348868,0.62889,0.919742,0.896813,0.230647,0.597007,0.374201,0.437497,0.89265,0.209347,0.787543,0.795381,0.241869,0.876926,0.0503266,0.538181,0.669099,0.588864,0.488072,0.0682659,0.123682,0.155781,0.788396,0.737923,0.929448,0.211069,0.242793,0.368346,0.571572,0.433026,0.00602555,0.781676,0.400238,0.759698,0.164232,0.209821,0.784921,0.241169,0.616646,0.733365,0.704543,0.875955,0.428382,0.11213,0.991101,0.0881005,0.329789,0.588528,0.0481407,0.720793,0.527777,0.595196,0.257994,0.35194,0.510135,0.497221,0.72187,0.706931,0.614186,0.31149,0.228291,0.663659,0.0532548,0.872016,0.902747,0.750579,0.822845,0.644094,0.641559,0.20792,0.747078,0.774868,0.991098,0.150761,0.478061,0.775742,0.83785,0.0568424,0.533045,0.979182,0.0914308,0.520747,0.697881,0.274194,0.476113,0.439748,0.755352,0.750032,0.175927,0.772962,0.824083,0.150832,0.900208,0.608676,0.156208,0.0901307,0.358178,0.24344,0.406412,0.779708,0.306358,0.217495,0.0992444,0.40307,0.8876,0.412607,0.980365,0.331754,0.308476,0.195325,0.464849,0.218725,0.0434092,0.298386,0.924499,0.628679,|0.659235,0.13225,0.842178,0.35216,0.327075,0.628886,0.724574,0.962024,0.440644,0.643,0.870382,0.869993,0.0545455,0.456186,0.777682,0.580189,0.0347765,0.337716,0.49093,0.399438,0.154949,0.509193,0.391581,0.96768,0.913102,0.272991,0.976531,0.0939309,0.598571,0.091208,0.569334,0.564581,0.27442,0.48605,0.478536,0.338675,0.6314,0.398586,0.12881,0.607264,0.404338,0.859517,0.142929,0.275751,0.558508,0.59329,0.48862,0.316068,0.258283,0.489864,0.0642047,0.105267,0.0689287,0.61724,0.105689,0.304211,0.163315,0.56383,0.660313,0.0245942,0.602588,0.759048,0.162759,0.344264,0.739514,0.494948,0.819333,0.891282,0.0223597,0.125895,0.289383,0.946679,0.634935,0.142516,0.0531141,0.67604,0.154944,0.721578,0.2011,0.391763,0.519982,0.500497,0.82154,0.0981583,0.625929,0.782212,0.744692,0.861556,0.416589,0.784669,0.397868,0.555174,0.958186,0.219841,0.419563,0.102182,0.269923,0.640521,0.74191,0.0261661,0.122681,0.734221,0.60472,0.141532,0.531434,0.690866,0.625915,0.811278,0.554881,0.440664,0.607485,0.559502,0.783041,0.402619,0.448251,0.00639194,0.577663,0.547368,0.809033,0.266899,0.870524,0.515621,0.408457,0.378982,0.963457,0.605289,0.726491,0.71343,0.280757,0.828249,0.739392,0.347654,0.765425,0.373803,0.454209,0.176608,0.243302,0.480718,0.400956,0.312088,0.331452,0.0659329,0.647696,0.919462,0.306187,0.62812,0.870263,0.910693,0.069596,0.375277,0.610574,0.843238,0.678041,0.541242,0.808871,0.402117,0.16801,0.203812,0.735568,0.165056,0.752685,0.877194,0.644201,0.508558,0.433184,0.00558561,0.697315,0.937002,0.372883,0.365135,0.297234,0.234213,0.820552,0.373384,0.22862,0.762564,0.0238471,0.81118,0.507496,0.859653,0.700397,0.0089103,0.914161,0.782072,0.837909,0.574493,0.134649,0.0163336,0.724914,0.15591,0.491202,0.785723,0.124301,0.961895,0.298771,0.902411,0.8078,0.17043,0.853591,0.275173,0.16445,0.69545,0.747073,0.446055,0.102893,0.0711215,0.226623,0.769062,0.825365,0.769607,0.134617,0.958556,0.402842,0.89691,0.249696,0.322789,0.530801,0.721489,0.44464,0.617679,0.311165,0.158886,0.282619,0.688214,0.504282,0.729843,0.932849,0.0835465,0.0537754,0.595008,0.245864,0.693304,0.680509,0.0144497,0.508146,0.87419,0.638429,0.937057,0.698695,0.232084,0.874468,0.0345449,0.42792,0.269374,0.243488,0.545964,0.523128,0.956264,0.774316,0.570879,0.406684,0.761909,0.892832,0.425189,0.287203,0.698449,0.836294,0.742269,0.0536363,0.107322,0.412325,0.0289524,0.281295,0.855413,0.45815,0.655986,0.136634,0.0865621,0.971071,0.920249,0.566981,0.0243713,0.575138,0.0922326,0.459951,0.537944,0.0467708,0.103027,0.661071,0.172523,0.397362,0.195609,0.0920292,0.547251,0.0854279,0.432008,0.0743082,0.028668,0.126548,0.183752,0.062272,0.94653,0.705834,0.55044,0.962127,0.22109,0.238625,0.202612,0.754506,0.14994,0.344217,0.0261672,0.22786,0.269482,0.65679,0.133738,0.962595,0.75869,0.0913802,0.955802,0.00756246,0.333059,0.0910197,0.509513,0.26591,0.0207295,0.409537,0.0580973,0.224286,0.110239,0.00482905,0.401221,0.263092,0.298476,0.252495,0.994433,0.6836,0.73116,0.615514,0.892556,0.862336,0.48292,0.680068,0.860316,0.840513,0.0447983,0.815094,0.745596,0.76845,0.549248,0.796984,0.793552,0.126434,0.28481,0.742126,0.679152,0.47401,0.482746,0.879084,0.331988,0.498277,0.178126,0.411343,0.640278,0.750769,0.861137,0.0337113,0.931584,0.651576,0.0932323,0.175397,0.626501,0.399587,0.36914,0.530149,0.530869,0.473646,0.876204,0.396853,0.749355,0.845211,0.533539,0.24455,0.297713,0.75761,0.730722,0.421466,0.511588,0.354065,0.544665,0.409774,0.726772,0.764435,0.459955,0.930704,0.813206,0.0666289,0.871508,0.964256,0.648495,0.290928,0.948623,0.932915,0.765568,0.275841,0.699169,0.436581,0.610818,0.684309,0.435219,0.76193,0.914003,0.219184,0.989989,0.462242,0.559332,0.136472,0.30907,0.234978,0.224173,0.769019,0.925801,0.426765,0.687808,0.963712,0.934654,0.236034,0.0878541,0.301788,0.32775,0.00736541,0.0183797,0.0923235,0.144641,0.523693,0.438661,0.203184,0.647736,0.725694,0.418224,0.501021,0.76033,0.548628,0.588541,0.067714,0.093106,0.730151,0.78398,0.611324,0.768582,0.916898,0.539326,0.109624,0.761344,0.110532,0.235017,0.849955,0.92419,0.433326,0.0739894,0.23604,0.764988,0.728902,0.749939,0.703199,0.866421,0.853383,0.655374,0.329276,0.269816,0.225548,0.237412,0.280606,0.850933,0.150997,0.464994,0.0439233,0.804126,0.772117,0.981271,0.539462,0.427243,0.728827,0.295391,0.613862,0.0625583,0.497024,0.115247,0.660623,0.926732,0.996977,0.495996,0.607885,0.222036,0.628203,0.691878,0.569423,0.753647,0.881635,0.881545,0.166913,0.876187,0.147631,0.654172,0.798672,0.678521,0.91602,0.0753049,0.339919,0.203029,0.702334,0.286748,0.828833,0.32837,0.473551,0.221515,0.53614,0.426603,0.280993,0.263862,0.411855,0.787302,0.461426,0.986781,0.724208,0.0370463,0.973681,0.826454,0.802857,0.404223,0.409279,0.591683,0.898904,0.302403,0.39434,0.91999,0.670474,0.056456,0.970531,0.623342,0.190731,0.365451,0.967935,0.916958,0.579131,0.909868,0.0689731,0.104947,0.370902,0.972832,0.736538,0.341445,0.532174,0.875128,0.937665,0.935007,0.514424,0.922137,0.810265,0.0234982,0.716474,0.692876,0.908703,0.788187,0.9129,0.373958,0.695306,0.644278,0.620866,0.300913,0.706588,0.78287,0.570688,0.62234,0.794575,0.442576,0.0180983,0.397043,0.565771,0.861529,0.730379,0.625318,0.36495,0.373487,0.20352,0.674085,0.950518,0.997598,0.843068,0.202428,0.29743,0.205918,0.258998,0.0680227,0.839229,0.0666443,0.184198,0.329071,0.886369,0.647562,0.569419,0.918344,0.0603666,0.288094,0.797709,0.501334,0.967533,0.768962,0.687998,0.764197,0.61906,0.529267,0.18021,0.512304,0.48537,0.887762,0.162279,0.759512,0.869527,0.967046,0.531761,0.200072,0.668111,0.441282,0.70439,0.477639,0.425761,0.0148095,0.613024,0.565869,0.287955,0.318623,0.784069,0.129141,0.776913,0.308151,0.138881,0.428042,0.0279371,0.194511,0.10946,0.341806,0.180876,0.258433,0.502637,0.486736,0.937816,0.280322,0.201763,0.0552014,0.865692,0.643916,0.775004,0.884817,0.272124,0.724449,0.637823,0.634325,0.685464,0.599112,0.639858,0.372656,0.261631,0.465296,0.278325,0.146546,0.387883,0.390884,0.0846909,0.221298,0.282084,0.478548,0.928053,0.995829,0.958843,0.52481,0.277872,0.0153478,0.197181,0.329964,0.0804071,0.281651,0.850118,0.994628,0.885978,0.701842,0.721721,0.797313,0.402313,0.166595,0.504988,0.935354,0.196929,0.00294626,0.500564,0.607795,0.0827198,0.821317,0.77287,0.0460861,0.627526,0.50583,0.447718,0.797593,0.346257,0.0967499,0.564112,0.0507091,0.753718,0.536556,0.207394,0.182915,0.999495,0.183147,0.0606961,0.570394,0.328381,0.430264,0.950621,0.42781,0.496594,0.599021,0.327649,0.338426,0.505168,0.155673,0.248443,0.726493,0.977992,0.876612,0.629801,0.966418,0.439741,0.0778427,0.387995,0.213087,0.969241,0.452236,0.971629,0.574537,0.875892,0.136562,0.832504,0.963627,0.315882,0.602611,0.173303,0.930334,0.187109,0.0204253,0.109637,0.737566,0.00650764,0.58556,0.861238,0.290946,0.195948,0.993414,0.66351,0.221839,0.750741,0.660099,0.493451,0.962723,0.790864,0.651407,0.721033,0.575751,0.277735,0.645897,0.984339,0.352059,0.888237,0.554252,0.959556,0.858268,0.687827,0.974225,0.699429,0.442416,0.463022,0.631857,0.692156,0.79785,0.490313,0.561505,0.467397,0.669499,0.274814,0.789683,0.739371,0.700595,0.544726,0.55591,0.310545,0.666693,0.296081,0.875682,0.618589,0.605348,0.201705,0.381909,0.772229,0.272576,0.807875,0.691537,0.164262,0.725466,0.856398,0.2513,0.22553,0.665607,0.0384039,0.512764,0.134458,0.430388,0.866526,0.14171,0.089453,0.636744,0.595859,0.824093,0.393486,0.0674745,0.63353,0.664515,0.891102,0.951248,0.244336,0.92169,0.693342,0.233048,0.719422,0.782534,0.0263576,0.00943911,0.728199,0.800291,0.649711,0.965568,0.741474,0.977305,0.815713,0.552969,0.71125,0.748544,0.327473,0.767131,0.609545,0.355619,0.339566,0.272068,0.41534,0.645799,0.883051,0.902208,0.604183,0.972299,0.785337,0.523145,0.679839,0.398596,0.397081,0.698412,0.754217,0.207835,0.829063,0.969576,0.495906,0.815854,0.978242,0.318208,0.857604,0.539515,0.054422,0.383359,0.782778,0.164466,0.554451,0.171066,0.4924,0.343618,0.370864,0.094354,0.730063,0.242091,0.564308,0.944634,0.275849,0.966762,0.0867407,0.396626,0.312996,0.618007,0.419713,0.25252,0.405156,0.263564,0.813502,0.468293,0.0713807,0.364814,0.548539,0.960191,0.349076,0.165081,0.164126,0.96099,0.159513,0.850316,0.486949,0.781066,0.580051,0.042272,0.333819,0.251446,0.369593,0.369606,0.511246,0.188313,0.901133,0.390148,0.771438,0.569287,0.082639,0.373517,0.0294539,0.647606,0.609614,0.56495,0.753498,0.721182,0.34959,0.622019,0.50497,0.804139,0.332043,0.830606,0.0230022,0.0594099,0.609854,0.169917,0.799038,0.256241,0.828497,0.397904,0.0971104,0.286314,0.841221,0.40465,0.369545,0.538415,0.192426,0.901249,0.973302,0.714143,0.485254,0.783789,0.240102,0.149827,0.908667,0.353633,0.229992,0.625113,0.155338,0.530982,0.57052,0.143599,0.546234,0.905369,0.635568,0.232171,0.328119,0.819171,0.0342425,0.266088,0.79567,0.798844,0.405239,0.0737534,0.322701,0.117727,0.922602,0.046559,0.989645,0.373102,0.256904,0.149092,0.285883,0.151852,0.0909353,0.0471981,0.272445,0.810173,0.30762,0.108903,0.232505,0.377172,0.860146,0.803126,0.316026,0.950209,0.213446,0.148886,0.45193,0.0323106,0.0891442,0.222441,0.249585,0.758383,|0.706678,0.0256544,0.394794,0.779425,0.111211,0.0745287,0.484007,0.444375,0.123481,0.897647,0.385298,0.0410919,0.366718,0.145893,0.539825,0.422391,0.63899,0.723881,0.0976629,0.016673,0.182918,0.163411,0.767661,0.0202467,0.586492,0.895159,0.799622,0.804669,0.323832,0.0551914,0.0108544,0.818747,0.000693679,0.410656,0.732529,0.16431,0.505802,0.0688255,0.491684,0.834309,0.538432,0.673342,0.348545,0.747189,0.137762,0.339148,0.645627,0.429251,0.226014,0.358476,0.819163,0.318676,0.802663,0.717117,0.310071,0.65476,0.961752,0.141028,0.832565,0.0148327,0.774699,0.581299,0.385063,0.60007,0.731984,0.699911,0.450842,0.600474,0.193816,0.532625,0.931235,0.511576,0.580436,0.613829,0.744971,0.256171,0.468664,0.681908,0.898217,0.0553777,0.933221,0.153394,0.176353,0.408232,0.0509647,0.972813,0.286909,0.193929,0.458228,0.781727,0.138373,0.832279,0.117512,0.438578,0.258402,0.950131,0.968092,0.103434,0.891519,0.0335171,0.53298,0.336922,0.606109,0.264626,0.851107,0.568972,0.5917,0.46084,0.267891,0.98854,0.867168,0.0971166,0.183582,0.808809,0.790115,0.622954,0.037536,0.593332,0.0179607,0.594055,0.157165,0.70729,0.251344,0.275089,0.209991,0.822679,0.507969,0.833286,0.0384343,0.935474,0.411971,0.107555,0.688149,0.56669,0.967901,0.196837,0.911068,0.283953,0.802045,0.110533,0.73255,0.530587,0.320994,0.478357,0.543089,0.113859,0.762127,0.648436,0.0512377,0.333988,0.463533,0.952715,0.701332,0.611887,0.768516,0.244509,0.0789473,0.108177,0.188186,0.720036,0.141381,0.375715,0.084895,0.425943,0.539754,0.598512,0.925066,0.436293,0.101531,0.562536,0.724319,0.800544,0.0711613,0.960519,0.336405,0.618599,0.330785,0.393177,0.733291,0.678643,0.68008,0.46092,0.46782,0.82905,0.754827,0.780079,0.981748,0.91134,0.509211,0.431463,0.416405,0.966902,0.326644,0.779474,0.110621,0.375533,0.967276,0.399276,0.0692975,0.279687,0.833293,0.0480802,0.77182,0.208023,0.705061,0.146145,0.13258,0.820587,0.748854,0.953006,0.288788,0.495472,0.815859,0.48305,0.607223,0.07019,0.193857,0.905527,0.0116187,0.319419,0.783469,0.807619,0.226102,0.114271,0.035431,0.666533,0.357149,0.257219,0.375458,0.256642,0.693113,0.976836,0.483076,0.508648,0.570105,0.691445,0.22446,0.234151,0.589569,0.87656,0.0767974,0.596897,0.369943,0.376158,0.236415,0.783656,0.247177,0.933718,0.959892,0.0871264,0.0165774,0.596521,0.684031,0.423576,0.307692,0.797286,0.203024,0.263497,0.447386,0.729508,0.783931,0.87472,0.985193,0.892137,0.20332,0.81736,0.265222,0.418666,0.0163238,0.438578,0.620944,0.707314,0.566865,0.765436,0.272447,0.640866,0.694697,0.349439,0.377765,0.962292,0.334463,0.297224,0.316088,0.424563,0.139769,0.796866,0.245755,0.0074988,0.675689,0.258347,0.821881,0.80099,0.27316,0.977742,0.0572511,0.667339,0.253783,0.824943,0.979762,0.0647925,0.558338,0.357677,0.509118,0.707005,0.482413,0.765865,0.89652,0.828591,0.0994714,0.784549,0.908934,0.902786,0.683593,0.78666,0.33642,0.347047,0.580056,0.675899,0.461535,0.660848,0.653012,0.470338,0.178584,0.044274,0.602985,0.213295,0.519024,0.369239,0.407453,0.948125,0.998019,0.0285383,0.976847,0.0507586,0.553796,0.44718,0.345474,0.633193,0.0773293,0.793575,0.403801,0.55948,0.371063,0.104779,0.477727,0.359744,0.825487,0.996988,0.080878,0.97471,0.595677,0.515333,0.767693,0.739169,0.136591,0.894024,0.387798,0.448335,0.224939,0.622892,0.920497,0.59985,0.433994,0.872819,0.777772,0.550773,0.0174733,0.560289,0.0140447,0.0821446,0.978681,0.854413,0.801114,0.920831,0.379697,0.641228,0.154812,0.0907466,0.199369,0.00755662,0.816819,0.665763,0.63274,0.343033,0.329166,0.200754,0.995126,0.295595,0.0514275,0.214709,0.169812,0.268587,0.506155,0.0504031,0.513798,0.360386,0.486238,0.469456,0.00379527,0.540905,0.999017,0.889883,0.702093,0.26602,0.582402,0.265254,0.794173,0.717963,0.339294,0.103157,0.909838,0.669225,0.898301,0.67635,0.498248,0.683567,0.843731,0.252433,0.460367,0.961643,0.00883508,0.858115,0.938446,0.401548,0.328521,0.958594,0.653484,0.394995,0.449838,0.231803,0.704451,0.710233,0.015007,0.35187,0.133142,0.478273,0.575335,0.0266854,0.751291,0.45972,0.422171,0.894579,0.841733,0.129855,0.704507,0.635064,0.148327,0.716019,0.92504,0.48595,0.846001,0.73395,0.746516,0.293887,0.186263,0.213481,0.986718,0.270736,0.935919,0.092764,0.333471,0.332773,0.958325,0.242189,0.293102,0.556625,0.717305,0.64512,0.0968251,0.537515,0.494532,0.677399,0.105403,0.0735978,0.707651,0.819917,0.262739,0.962736,0.109094,0.500873,0.402032,0.682619,0.424365,0.940842,0.52189,0.146073,0.00431991,0.0340564,0.2846,0.568599,0.541546,0.693482,0.464993,0.109616,0.843578,0.310188,0.298639,0.333391,0.0436946,0.818231,0.969888,0.762284,0.168632,0.152781,0.517726,0.625195,0.461628,0.492,0.69716,0.156104,0.671552,0.983777,0.853209,0.44602,0.154832,0.388981,0.366711,0.913974,0.410744,0.421639,0.136504,0.500831,0.997249,0.118583,0.530092,0.717276,0.608906,0.832996,0.934845,0.100154,0.189969,0.786242,0.904351,0.224926,0.478085,0.731592,0.447271,0.0846438,0.598253,0.752797,0.0182865,0.574756,0.735143,0.692801,0.0952677,0.107678,0.613526,0.397675,0.820458,0.409811,0.695652,0.566282,0.573386,0.578068,0.522003,0.283546,0.612,0.996886,0.57229,0.635206,0.544906,0.244055,0.946988,0.347358,0.779603,0.358235,0.191135,0.48526,0.218731,0.104076,0.456531,0.0179229,0.750352,0.218036,0.860624,0.978988,0.98377,0.555834,0.723496,0.140223,0.158212,0.308586,0.442151,0.35271,0.543548,0.657817,0.918532,0.598388,0.123426,0.655949,0.922076,0.190875,0.315026,0.618708,0.0791718,0.637886,0.345393,0.533422,0.48241,0.00432032,0.870764,0.776443,0.686631,0.817241,0.231821,0.446393,0.195961,0.497317,0.981161,0.925056,0.0746669,0.250368,0.369185,0.141924,0.333982,0.36285,0.422231,0.441085,0.333366,0.792469,0.326826,0.962359,0.556865,0.356653,0.699851,0.522828,0.651626,0.13171,0.83333,0.369846,0.919924,0.853524,0.249978,0.832137,0.132927,0.44174,0.285986,0.466821,0.880469,0.589267,0.205007,0.808268,0.281958,0.157794,0.926168,0.286413,0.13074,0.427422,0.0338798,0.509445,0.875955,0.552959,0.307639,0.906924,0.990797,0.600454,0.233059,0.409699,0.688832,0.365449,0.878077,0.314453,0.0938471,0.750517,0.577039,0.169982,0.0999514,0.442369,0.00794488,0.100885,0.908586,0.742287,0.653587,0.263376,0.781939,0.752276,0.551812,0.320835,0.87165,0.68421,0.591932,0.927743,0.147528,0.982931,0.335563,0.977758,0.230601,0.920368,0.822448,0.317653,0.539352,0.854058,0.389265,0.384701,0.620201,0.659312,0.573994,0.323493,0.566273,0.444681,0.258351,0.781225,0.354975,0.288334,0.117609,0.950267,0.3628,0.330334,0.253644,0.923276,0.31575,0.807206,0.114803,0.482972,0.432497,0.186219,0.42991,0.938729,0.2834,0.818077,0.727427,0.154525,0.0794888,0.0251917,0.193989,0.051734,0.713946,0.766631,0.670087,0.552231,0.586469,0.752081,0.779571,0.997613,0.354911,0.598949,0.381786,0.996716,0.17593,0.0779918,0.449192,0.829253,0.367667,0.0438232,0.0101609,0.311815,0.887427,0.621503,0.0920091,0.636537,0.888753,0.39231,0.226871,0.482582,0.23763,0.0158849,0.732438,0.634007,0.814554,0.0946054,0.393725,0.368115,0.787043,0.234152,0.593016,0.0464898,0.682952,0.0802917,0.743789,0.954967,0.239741,0.744275,0.907399,0.417829,0.259142,0.666949,0.56155,0.281179,0.255579,0.690287,0.465161,0.96642,0.744985,0.904554,0.0658337,0.304004,0.726647,0.0924994,0.948076,0.625772,0.850153,0.270594,0.897186,0.928283,0.862911,0.593635,0.535491,0.945464,0.644392,0.13887,0.49068,0.0434517,0.676391,0.963494,0.404337,0.0151386,0.250517,0.884258,0.828409,0.687823,0.045997,0.751778,0.89197,0.0535384,0.903669,0.980419,0.00586873,0.657508,0.511014,0.285341,0.0395158,0.461042,0.716031,0.149713,0.860765,0.689302,0.351192,0.28077,0.450648,0.408681,0.981338,0.230247,0.977868,0.627452,0.611426,0.921505,0.392159,0.765948,0.28243,0.361049,0.508965,0.866549,0.968519,0.383968,0.163655,0.152306,0.0830215,0.39618,0.0925003,0.693174,0.322543,0.26008,0.499971,0.414899,0.158576,0.666508,0.549797,0.876366,0.882997,0.247293,0.321103,0.383066,0.742116,0.0671466,0.380168,0.617639,0.226354,0.914629,0.267646,0.481432,0.380768,0.835544,0.160726,0.847661,0.265232,0.142326,0.605009,0.383221,0.783203,0.239664,0.0671836,0.0174977,0.126889,0.835661,0.261824,0.276847,0.355728,0.855141,0.51978,0.766323,0.453594,0.645422,0.179206,0.282458,0.667108,0.876042,0.123329,0.737192,0.302324,0.771283,0.629109,0.195399,0.812788,0.382232,0.00992769,0.69533,0.0904227,0.167299,0.421794,0.100187,0.978816,0.92861,0.60434,0.00440514,0.0667829,0.17958,0.767242,0.565948,0.523546,0.106168,0.364889,0.365894,0.387383,0.381698,0.538519,0.506027,0.183603,0.964842,0.450656,0.148143,0.414547,0.900856,0.243437,0.820633,0.295861,0.710948,0.0506148,0.0715946,0.515512,0.183833,0.607388,0.912417,0.802127,0.754023,0.411072,0.161501,0.293136,0.517874,0.405377,0.611184,0.691539,0.762151,0.103434,0.492445,0.428798,0.607258,0.376211,0.249439,0.363155,0.349717,0.165181,0.233357,0.189216,0.422655,0.890843,0.437828,0.466671,0.737548,0.204783,0.345225,0.0881151,0.533304,0.219401,0.347175,0.160671,0.903332,0.649542,0.676218,0.687346,0.89603,0.171521,0.565437,0.707671,0.618689,0.926417,0.380399,0.120192,0.5513,0.547549,0.65046,0.0470624,0.971108,0.03527,0.79116,0.778193,0.913221,0.716567,0.260804,0.734559,0.854401,|0.753023,0.435501,0.468399,0.878816,0.459337,0.620755,0.0843832,0.890791,0.810238,0.242578,0.607737,0.22498,0.428338,0.947534,0.665569,0.629282,0.90946,0.939261,0.624894,0.359522,0.937122,0.449406,0.845972,0.995814,0.397345,0.140702,0.547291,0.427019,0.669526,0.589432,0.978815,0.834308,0.714633,0.321284,0.756724,0.426008,0.996347,0.262582,0.778363,0.530291,0.459947,0.130493,0.021536,0.74755,0.784684,0.0608319,0.653201,0.618561,0.0592712,0.685942,0.125506,0.802568,0.540658,0.475962,0.384219,0.117356,0.442946,0.339446,0.949395,0.61297,0.551816,0.130304,0.261079,0.774251,0.332312,0.387206,0.196415,0.676357,0.243123,0.354621,0.907971,0.292764,0.773813,0.706393,0.756254,0.592186,0.333313,0.220375,0.0343569,0.438923,0.980681,0.188219,0.439079,0.695117,0.901608,0.489843,0.629738,0.722977,0.677635,0.186602,0.259877,0.461327,0.588668,0.151405,0.513186,0.634197,0.0171219,0.304447,0.209655,0.840695,0.84478,0.000647426,0.519981,0.848593,0.22516,0.238609,0.683176,0.457376,0.500541,0.0372321,0.642473,0.109324,0.337781,0.921642,0.214203,0.696485,0.278429,0.141936,0.319258,0.849066,0.459608,0.0879575,0.144673,0.87984,0.796664,0.478286,0.864533,0.81236,0.256122,0.72302,0.480558,0.401183,0.765176,0.754095,0.228931,0.665801,0.244903,0.843227,0.286901,0.0723178,0.532711,0.724768,0.145118,0.844676,0.6253,0.163649,0.186702,0.631803,0.764277,0.959087,0.0134082,0.924469,0.659781,0.282681,0.350472,0.997275,0.182195,0.769867,0.491336,0.219007,0.695917,0.480369,0.760982,0.990427,0.31342,0.588534,0.831556,0.460215,0.12215,0.483589,0.284509,0.450817,0.0727191,0.193588,0.663663,0.929748,0.770781,0.358865,0.442521,0.58147,0.526996,0.945385,0.100698,0.0337504,0.982105,0.498922,0.522498,0.614193,0.606589,0.144382,0.115608,0.331725,0.467256,0.581493,0.315508,0.668841,0.377696,0.985769,0.0508682,0.886048,0.802991,0.143077,0.247106,0.105299,0.162186,0.204082,0.231404,0.272694,0.800313,0.703091,0.64102,0.580007,0.860543,0.0660363,0.563759,0.621794,0.573554,0.261666,0.594719,0.68293,0.9108,0.540042,0.480179,0.0570874,0.158806,0.928838,0.648117,0.702035,0.0052616,0.0593762,0.397242,0.211066,0.676358,0.385961,0.58705,0.745276,0.124881,0.683585,0.240211,0.626032,0.486436,0.946818,0.607975,0.799914,0.644127,0.894335,0.26817,0.990582,0.0132627,0.210544,0.842795,0.597609,0.654215,0.106222,0.91251,0.213395,0.0916662,0.294399,0.712637,0.266191,0.292157,0.56758,0.69222,0.254522,0.926442,0.57954,0.91128,0.235741,0.147558,0.935799,0.594802,0.20621,0.876356,0.635822,0.665134,0.714525,0.226449,0.54295,0.961346,0.908437,0.842956,0.323151,0.315144,0.956561,0.729765,0.0746502,0.421002,0.894278,0.18123,0.34727,0.894133,0.376493,0.135028,0.136371,0.608219,0.0902439,0.407186,0.546435,0.56233,0.668356,0.269738,0.845876,0.833527,0.132306,0.0450364,0.166145,0.483648,0.440029,0.791152,0.336895,0.284642,0.151036,0.473567,0.977789,0.261601,0.868216,0.438387,0.410987,0.483909,0.984698,0.780691,0.755619,0.629366,0.23993,0.317417,0.995131,0.602773,0.622334,0.549388,0.435965,0.375363,0.428385,0.80148,0.435093,0.773585,0.89941,0.0115397,0.594623,0.168265,0.966216,0.973903,0.933814,0.137514,0.156633,0.59889,0.386763,0.0717491,0.303827,0.712465,0.777835,0.68033,0.705663,0.335781,0.589503,0.0405784,0.705248,0.716063,0.172121,0.0329987,0.457995,0.38723,0.469481,0.859213,0.354043,0.0170419,0.741702,0.728094,0.800315,0.227055,0.127623,0.343763,0.896774,0.683159,0.493506,0.622755,0.736733,0.344313,0.378385,0.88352,0.187165,0.576056,0.736403,0.323178,0.333461,0.0387012,0.986807,0.196689,0.231639,0.636898,0.580462,0.591644,0.359588,0.828701,0.815532,0.0231177,0.714917,0.288463,0.719339,0.138428,0.386621,0.613213,0.0953956,0.660245,0.349375,0.575239,0.0979609,0.572106,0.492987,0.0727473,0.195385,0.00334966,0.484428,0.356316,0.605983,0.211176,0.347796,0.758385,0.138145,0.594817,0.875008,0.210411,0.671274,0.717205,0.273092,0.453657,0.277524,0.284037,0.200401,0.194592,0.732415,0.994564,0.598615,0.875434,0.856225,0.0298055,0.157935,0.891596,0.111579,0.437161,0.144271,0.307059,0.972319,0.986386,0.464341,0.831351,0.557016,0.55337,0.56785,0.32679,0.899364,0.99037,0.810839,0.259625,0.254478,0.0617482,0.641477,0.0908376,0.123844,0.918397,0.426447,0.516612,0.781706,0.523032,0.745169,0.326657,0.375213,0.996509,0.419637,0.319413,0.559278,0.62565,0.629691,0.896424,0.905051,0.593378,0.0715604,0.792754,0.523086,0.695847,0.876796,0.857689,0.0632526,0.266442,0.979923,0.234571,0.894023,0.59663,0.572442,0.072154,0.865787,0.058597,0.0582531,0.269778,0.443099,0.1865,0.0337729,0.931849,0.0997686,0.743239,0.150366,0.757762,0.0461133,0.724886,0.426211,0.576254,0.517855,0.955547,0.866763,0.880066,0.0371902,0.0285793,0.823298,0.00819099,0.527035,0.256561,0.357299,0.026843,0.635254,0.423996,0.821004,0.626073,0.64898,0.671038,0.572682,0.454823,0.79177,0.725265,0.285784,0.537121,0.572666,0.53227,0.551024,0.957911,0.254483,0.184541,0.00949788,0.168807,0.952007,0.888487,0.177681,0.577921,0.275182,0.302337,0.847311,0.84235,0.528137,0.836133,0.663599,0.0985648,0.573282,0.811993,0.143223,0.727031,0.378569,0.732237,0.391421,0.568368,0.954515,0.0585138,0.851831,0.584737,0.563959,0.440109,0.674186,0.784455,0.903587,0.201883,0.85185,0.0150599,0.0610439,0.387171,0.861753,0.441645,0.621238,0.755179,0.285549,0.844457,0.184217,0.432294,0.151683,0.86355,0.391684,0.116028,0.399336,0.208134,0.965042,0.837166,0.153099,0.870734,0.00470829,0.887904,0.457581,0.757173,0.674085,0.348897,0.370097,0.725205,0.420197,0.363515,0.408674,0.235421,0.0689606,0.520032,0.424259,0.357717,0.0348821,0.30824,0.681407,0.724619,0.632108,0.828513,0.310902,0.483891,0.666399,0.232687,0.447153,0.225293,0.609074,0.551844,0.828267,0.377145,0.631936,0.97949,0.779221,0.686989,0.988219,0.33219,0.0164533,0.826263,0.711898,0.292043,0.286904,0.418431,0.938539,0.962607,0.620811,0.571254,0.65265,0.534912,0.467602,0.734823,0.714807,0.52308,0.671097,0.31082,0.318642,0.242671,0.612284,0.801146,0.515381,0.742273,0.890006,0.948847,0.717746,0.274247,0.78919,0.234484,0.789443,0.833956,0.840431,0.722228,0.727032,0.556418,0.851967,0.358162,0.645331,0.398581,0.595835,0.420974,0.588982,0.69873,0.241353,0.881145,0.726245,0.636838,0.636625,0.00267172,0.860851,0.529041,0.0893122,0.857968,0.540596,0.117462,0.678292,0.353319,0.269052,0.491571,0.828593,0.963505,0.269145,0.0961004,0.543269,0.42277,0.985256,0.0769516,0.766015,0.511306,0.410637,0.0747126,0.048107,0.261691,0.324797,0.341978,0.13415,0.991966,0.745088,0.610268,0.29021,0.976612,0.546413,0.775034,0.844926,0.425536,0.42935,0.615764,0.13443,0.0794882,0.938898,0.551238,0.200903,0.133493,0.989206,0.0523913,0.209067,0.496856,0.314508,0.499864,0.634051,0.34793,0.91269,0.320317,0.468826,0.00103235,0.478883,0.910496,0.0672964,0.479658,0.676862,0.803046,0.273081,0.938599,0.399842,0.857923,0.279566,0.354602,0.122585,0.409367,0.503249,0.408173,0.432144,0.427981,0.813209,0.285714,0.60444,0.338701,0.121929,0.827047,0.415187,0.586776,0.437614,0.439764,0.996865,0.342314,0.47779,0.288604,0.102347,0.719418,0.175858,0.260378,0.336116,0.315387,0.589669,0.303434,0.336224,0.824573,0.882311,0.947775,0.766732,0.547733,0.419976,0.545216,0.47005,0.20264,0.979331,0.531029,0.561628,0.760736,0.909781,0.0575764,0.707894,0.107009,0.49143,0.28406,0.864214,0.936281,0.532214,0.615311,0.652218,0.809501,0.363467,0.864589,0.868416,0.391571,0.16351,0.698176,0.347589,0.835863,0.594693,0.260653,0.488659,0.752321,0.0349054,0.999184,0.755599,0.779881,0.579273,0.395638,0.114688,0.223623,0.409012,0.0288064,0.859489,0.865556,0.158586,0.410175,0.427873,0.237532,0.239425,0.880742,0.725878,0.177817,0.862723,0.041863,0.650782,0.668683,0.524095,0.417372,0.977154,0.0169606,0.200786,0.26541,0.327094,0.929683,0.345223,0.815055,0.228819,0.937327,0.890212,0.917051,0.458461,0.89672,0.379767,0.661032,0.708977,0.319018,0.356324,0.853634,0.945173,0.701694,0.987941,0.569438,0.251175,0.78957,0.253544,0.63061,0.841442,0.0847103,0.658103,0.78923,0.84226,0.23763,0.246738,0.68199,0.987765,0.478723,0.0816584,0.854495,0.578182,0.0309351,0.318484,0.0164518,0.474661,0.49873,0.789771,0.674465,0.948428,0.129019,0.0412846,0.246377,0.123999,0.229923,0.228681,0.855856,0.820465,0.0787974,0.653652,0.162226,0.354294,0.614453,0.5912,0.898296,0.101477,0.607407,0.844884,0.136179,0.209449,0.470461,0.882333,0.992988,0.000231087,0.488751,0.844415,0.947476,0.340399,0.171505,0.0172959,0.108473,0.162861,0.373833,0.935614,0.732928,0.911169,0.655629,0.58295,0.823297,0.101695,0.415534,0.434063,0.418567,0.429562,0.938967,0.152615,0.36402,0.873487,0.878214,0.7996,0.132289,0.543476,0.705375,0.787863,0.129162,0.351864,0.709955,0.374093,0.267139,0.226636,0.907923,0.511223,0.0279472,0.127842,0.0496574,0.554207,0.835314,0.652844,0.810059,0.71199,0.337756,0.547618,0.916587,0.593525,0.684943,0.0910397,0.100999,0.360406,0.346993,0.52214,0.581111,0.0939043,0.79816,0.645082,0.0572522,0.792016,0.518481,0.0349259,0.56343,0.841117,0.584858,0.10605,0.424611,0.96672,0.989451,0.307574,0.944721,0.0295711,0.968899,0.327483,0.603321,0.00439429,0.363045,0.646669,0.665963,0.481191,0.271731,0.724782,0.741339,0.442459,0.187268,0.665745,0.858255,0.891245,|0.0931425,0.0436875,0.0622484,0.847266,0.461598,0.210845,0.00150782,0.339634,0.722204,0.284532,0.204752,0.0347682,0.97636,0.16773,0.816392,0.511051,0.384379,0.254629,0.0926734,0.772522,0.0248464,0.0328726,0.547379,0.0873819,0.19632,0.270548,0.517072,0.533557,0.536413,0.215752,0.644325,0.665498,0.390101,0.440615,0.815681,0.682074,0.389836,0.162038,0.194145,0.0310398,0.856446,0.393723,0.372478,0.258614,0.432609,0.108603,0.576518,0.960529,0.486259,0.0738581,0.166103,0.721641,0.391026,0.89799,0.636399,0.857091,0.70041,0.517887,0.322629,0.75711,0.13296,0.969084,0.932497,0.791552,0.485113,0.455555,0.221712,0.806595,0.00862813,0.431925,0.482596,0.985603,0.242377,0.359563,0.067898,0.419545,0.512927,0.464667,0.193615,0.0164653,0.499306,0.865894,0.0768304,0.466873,0.637057,0.431833,0.103779,0.40883,0.235338,0.493828,0.454205,0.23929,0.684564,0.368611,0.0557169,0.00468981,0.953723,0.0113242,0.189885,0.634318,0.79278,0.299929,0.136006,0.603071,0.0857454,0.994463,0.689244,0.696651,0.354249,0.241872,0.483553,0.112369,0.0871744,0.315712,0.213272,0.646844,0.153328,0.901348,0.91896,0.346459,0.187464,0.533297,0.101266,0.667955,0.887203,0.118936,0.483926,0.353039,0.846671,0.679938,0.158527,0.658826,0.65969,0.380067,0.277769,0.4489,0.0958098,0.865065,0.510522,0.451052,0.299816,0.286282,0.552152,0.67884,0.207079,0.734571,0.241873,0.681336,0.460249,0.842171,0.781152,0.944614,0.512556,0.0940039,0.860135,0.53406,0.937244,0.973623,0.745995,0.504074,0.337232,0.991612,0.583152,0.227466,0.0321459,0.700207,0.871528,0.581337,0.340933,0.70579,0.389787,0.248858,0.770541,0.649834,0.110391,0.49358,0.91331,0.548039,0.62569,0.355287,0.0919815,0.0399508,0.482404,0.913125,0.216209,0.61471,0.140437,0.907005,0.632976,0.91616,0.509723,0.881475,0.652489,0.981083,0.57291,0.258816,0.390617,0.0943365,0.74868,0.79232,0.981522,0.123144,0.366019,0.155881,0.811777,0.334351,0.790101,0.33599,0.842772,0.730388,0.310728,0.351531,0.761512,0.39371,0.348989,0.0563895,0.523719,0.41863,0.145803,0.498434,0.662863,0.146,0.764972,0.554279,0.511702,0.461999,0.18878,0.811959,0.856772,0.518703,0.926387,0.417766,0.326126,0.0178255,0.252005,0.256048,0.982189,0.00560939,0.27941,0.139629,0.359261,0.920628,0.208173,0.00214761,0.750295,0.77035,0.0903988,0.204627,0.607357,0.749904,0.070307,0.487204,0.820431,0.670158,0.242214,0.325396,0.157555,0.307516,0.742859,0.640705,0.0958914,0.32999,0.132166,0.556895,0.0680065,0.0795985,0.22602,0.37112,0.593214,0.833278,0.0378534,0.0165044,0.0679008,0.50025,0.100017,0.683322,0.52722,0.279399,0.619371,0.0203667,0.042556,0.682068,0.412587,0.996559,0.124535,0.942067,0.432309,0.155444,0.240387,0.284569,0.780252,0.500065,0.55587,0.0835437,0.155073,0.605892,0.853565,0.65495,0.249809,0.201336,0.188302,0.523991,0.325825,0.796187,0.410165,0.774961,0.791534,0.805982,0.67842,0.454611,0.220111,0.610925,0.626758,0.412189,0.489159,0.971459,0.815891,0.892613,0.64995,0.128765,0.403445,0.523166,0.0990552,0.900711,0.143209,0.128176,0.545055,0.270946,0.863098,0.0952013,0.607329,0.538582,0.263577,0.516857,0.346692,0.908874,0.155743,0.282995,0.242013,0.464842,0.592731,0.583434,0.0780257,0.579014,0.238991,0.483382,0.0265895,0.739447,0.485906,0.66711,0.889233,0.49864,0.803754,0.348735,0.251081,0.588086,0.76283,0.328651,0.234222,0.263565,0.738046,0.528128,0.514553,0.485411,0.99945,0.377108,0.414748,0.0560071,0.0376531,0.116042,0.508372,0.853103,0.318989,0.0756682,0.583345,0.28055,0.314284,0.157107,0.341842,0.144791,0.251281,0.126504,0.167214,0.558386,0.340905,0.130742,0.130076,0.45109,0.922105,0.717285,0.0412182,0.130759,0.605781,0.0899865,0.917739,0.543164,0.791621,0.603528,0.294282,0.563599,0.325112,0.0658641,0.146561,0.185307,0.03944,0.156254,0.55357,0.499367,0.490658,0.167869,0.85452,0.611206,0.673594,0.486044,0.213773,0.472577,0.732701,0.105281,0.153241,0.0912499,0.61305,0.692317,0.748752,0.652681,0.833572,0.895027,0.60569,0.174557,0.00213021,0.909894,0.265541,0.868219,0.748642,0.268028,0.774904,0.306967,0.412455,0.339056,0.81187,0.535907,0.263847,0.435634,0.993895,0.914154,0.71811,0.0618792,0.524741,0.816319,0.244841,0.942255,0.305548,0.351195,0.204387,0.869141,0.447904,0.922474,0.744761,0.838352,0.675468,0.704894,0.7787,0.909943,0.551023,0.120793,0.170433,0.455953,0.169944,0.537875,0.753461,0.809295,0.882212,0.728935,0.098761,0.829913,0.749772,0.357991,0.744251,0.214535,0.524909,0.16906,0.467753,0.468714,0.0884742,0.470744,0.503564,0.945137,0.665085,0.280306,0.101827,0.658354,0.67643,0.449475,0.636863,0.763487,0.0580194,0.318225,0.253365,0.341726,0.185677,0.835416,0.0526469,0.397125,0.614672,0.444544,0.7371,0.89353,0.0900593,0.477048,0.0803387,0.683751,0.885369,0.0697392,0.426068,0.199395,0.241693,0.871051,0.735508,0.88645,0.15884,0.836532,0.738545,0.56745,0.843367,0.818975,0.140288,0.677721,0.0798961,0.566486,0.967807,0.190689,0.549823,0.378764,0.111599,0.313344,0.405884,0.800103,0.521457,0.00788879,0.33166,0.679063,0.701592,0.481825,0.879945,0.225274,0.815879,0.0620661,0.628274,0.249935,0.103671,0.307506,0.942281,0.290965,0.89224,0.339122,0.109882,0.354786,0.345026,0.132172,0.104549,0.533129,0.47728,0.983007,0.595689,0.314767,0.0987299,0.835195,0.930398,0.956582,0.351284,0.0161242,0.0540183,0.968814,0.68531,0.28684,0.108609,0.0361515,0.56183,0.290947,0.935247,0.0949076,0.133318,0.0924981,0.681299,0.967588,0.0616086,0.468585,0.596588,0.896904,0.435653,0.862393,0.980524,0.137272,0.481998,0.0254197,0.603997,0.359834,0.401306,0.135651,0.438682,0.713272,0.442781,0.986244,0.653782,0.268143,0.567893,0.082,0.204207,0.779148,0.992401,0.111592,0.252033,0.250517,0.152719,0.871962,0.75309,0.206779,0.888813,0.774986,0.62413,0.495613,0.0340043,0.664962,0.679464,0.829064,0.651234,0.880845,0.577038,0.104538,0.146004,0.0158929,0.65608,0.110506,0.177651,0.0460777,0.959274,0.0473997,0.426137,0.957777,0.626093,0.42803,0.451391,0.842082,0.916832,0.304203,0.118266,0.630037,0.521459,0.861803,0.958074,0.0239091,0.434776,0.143838,0.884637,0.61028,0.540857,0.669329,0.875362,0.0356083,0.275791,0.918188,0.785756,0.610723,0.473142,0.551876,0.202037,0.775607,0.381502,0.474304,0.525487,0.162679,0.849988,0.0238613,0.252797,0.0470818,0.403957,0.243361,0.321361,0.277772,0.980146,0.63532,0.601792,0.635693,0.967119,0.640046,0.685306,0.404884,0.7265,0.570265,0.866713,0.271409,0.0526005,0.0840201,0.707962,0.273103,0.794554,0.969511,0.744627,0.793473,0.679476,0.663773,0.0225958,0.00709265,0.0709261,0.764254,0.366786,0.581098,0.81434,0.253558,0.100495,0.615144,0.324658,0.0776423,0.0138974,0.453254,0.711147,0.274583,0.927687,0.189712,0.164506,0.867051,0.754915,0.263325,0.759309,0.328171,0.36512,0.22094,0.245175,0.244385,0.0898784,0.52288,0.481798,0.756106,0.559091,0.465693,0.50155,0.279513,0.714179,0.792162,0.752099,0.621566,0.903162,0.129155,0.363247,0.632423,0.116524,0.649025,0.961926,0.126797,0.0990717,0.486275,0.190495,0.758369,0.932097,0.247238,0.101316,0.124889,0.849754,0.0305258,0.981151,0.755257,0.934857,0.0208212,0.142968,0.793543,0.868302,0.109168,0.449177,0.261501,0.992531,0.353334,0.604667,0.378023,0.870332,0.0433145,0.652599,0.986681,0.766514,0.191852,0.252556,0.290717,0.731336,0.34729,0.825902,0.561999,0.505508,0.991194,0.148166,0.486541,0.706828,0.606959,0.830626,0.438628,0.575503,0.0227038,0.712975,0.394798,0.397385,0.387335,0.948691,0.549656,0.68958,0.880515,0.66626,0.205438,0.414132,0.191797,0.739031,0.619385,0.946681,0.154665,0.967617,0.582738,0.52504,0.968767,0.846641,0.701334,0.4302,0.765382,0.179784,0.807497,0.352896,0.255288,0.197843,0.617528,0.384974,0.0356398,0.89847,0.826427,0.85099,0.554048,0.893824,0.876263,0.700325,0.492269,0.785239,0.0196554,0.795182,0.12283,0.301056,0.775912,0.506801,0.69835,0.292569,0.315449,0.494378,0.671416,0.320246,0.367935,0.794239,0.92427,0.884404,0.163897,0.81962,0.48932,0.122283,0.925313,0.838877,0.0587729,0.928686,0.0053708,0.26374,0.519514,0.548705,0.892653,0.780643,0.932013,0.207825,0.100854,0.825145,0.947131,0.689776,0.40489,0.868004,0.78617,0.124188,0.911309,0.0549196,0.363984,0.187454,0.632003,0.713965,0.0278714,0.451749,0.991997,0.914931,0.95258,0.959696,0.10207,0.722718,0.260065,0.503604,0.709448,0.690267,0.270802,0.0748259,0.331902,0.448607,0.893687,0.677225,0.202275,0.0342971,0.666096,0.182354,0.218351,0.404161,0.781302,0.977396,0.163187,0.168003,0.102884,0.565263,0.496876,0.677544,0.00824475,0.795109,0.254978,0.149245,0.899658,0.153293,0.227717,0.194194,0.98911,0.0445963,0.0354427,0.446634,0.280523,0.755358,0.90098,0.170212,0.708164,0.540665,0.00359571,0.851761,0.735196,0.0556768,0.186341,0.791372,0.211227,0.185541,0.0204071,0.151668,0.00328815,0.323614,0.485654,0.413361,0.0179641,0.567069,0.416761,0.556101,0.890514,0.474349,0.821424,0.902633,0.235588,0.0394654,0.458538,0.183808,0.493851,0.304211,0.428037,0.780349,0.173164,0.725111,0.973642,0.90408,0.104044,0.638072,0.42156,0.563223,0.850682,0.208353,0.346729,0.644524,0.702928,0.392432,0.60514,0.796705,0.292068,0.60215,0.374262,0.500042,0.887197,0.37225,0.88293,0.117726,0.191794,0.53192,0.493998,0.820037,0.244184,0.967916,0.284409,0.0741717,0.0926204,0.321271,0.394939,0.741171,0.825762,0.413211,0.323703,|0.24415,0.546519,0.979567,0.592936,0.712645,0.422178,0.0411024,0.0127077,0.679737,0.561128,0.516802,0.892552,0.0379412,0.170539,0.427075,0.509171,0.438405,0.734561,0.564158,0.0998728,0.740695,0.699578,0.562859,0.216569,0.632352,0.517943,0.466184,0.834626,0.505883,0.743821,0.0647305,0.411338,0.610159,0.0206662,0.9882,0.0158721,0.17825,0.207548,0.444324,0.031554,0.721938,0.648244,0.198115,0.299474,0.0506326,0.131038,0.0636865,0.266292,0.925891,0.600217,0.277057,0.682478,0.422914,0.443194,0.21603,0.791764,0.486489,0.107625,0.259876,0.440958,0.249332,0.375786,0.476654,0.629813,0.711953,0.00639117,0.5753,0.886034,0.39889,0.103773,0.0232168,0.580605,0.503945,0.266948,0.805742,0.132161,0.964826,0.651454,0.892328,0.996634,0.499685,0.316349,0.0904185,0.0216759,0.847325,0.934962,0.370226,0.937131,0.793875,0.895901,0.109263,0.302628,0.867016,0.764076,0.87556,0.2751,0.6361,0.618644,0.266816,0.444425,0.571508,0.27838,0.443733,0.671423,0.42095,0.63711,0.0482754,0.0679855,0.330986,0.242164,0.0728275,0.0168316,0.302855,0.226253,0.122798,0.28001,0.122285,0.401809,0.800955,0.500634,0.879317,0.192228,0.467243,0.488956,0.078207,0.737719,0.940846,0.978534,0.224669,0.71509,0.57154,0.111043,0.45176,0.862038,0.347885,0.58596,0.816937,0.311233,0.00387025,0.762181,0.732555,0.635894,0.630989,0.898449,0.672512,0.791641,0.353608,0.507588,0.406649,0.436536,0.0556809,0.313836,0.725413,0.871809,0.532799,0.599055,0.388613,0.420114,0.676241,0.598858,0.874868,0.545635,0.279098,0.741571,0.811625,0.94498,0.452725,0.366057,0.359933,0.426763,0.766165,0.561072,0.297611,0.775709,0.595067,0.738342,0.237733,0.369403,0.736737,0.238678,0.144598,0.754493,0.853607,0.430437,0.858968,0.345695,0.899201,0.781885,0.572641,0.897009,0.452739,0.0949592,0.37208,0.0462215,0.348075,0.779241,0.464578,0.105468,0.0749775,0.495895,0.344315,0.604287,0.482892,0.838985,0.509018,0.571936,0.58985,0.390281,0.306748,0.0552534,0.0677484,0.0941002,0.528756,0.979629,0.536991,0.191832,0.617485,0.688114,0.507362,0.49781,0.0887981,0.473195,0.666266,0.830933,0.716223,0.110785,0.385348,0.191556,0.0441276,0.482435,0.451275,0.421418,0.393569,0.385534,0.403371,0.112815,0.607166,0.695678,0.561083,0.467869,0.94478,0.699269,0.766558,0.103295,0.39779,0.224864,0.760469,0.14601,0.477403,0.885289,0.138489,0.61508,0.994942,0.33284,0.475556,0.392235,0.555008,0.475302,0.708153,0.49138,0.191842,0.626074,0.830482,0.148481,0.146553,0.308363,0.0844988,0.952808,0.259952,0.320221,0.628526,0.332596,0.663476,0.897348,0.435923,0.812284,0.769049,0.259512,0.777786,0.289765,0.206445,0.196702,0.273904,0.302403,0.344178,0.145975,0.723573,0.260517,0.419531,0.818954,0.287238,0.134676,0.876237,0.908936,0.488728,0.434094,0.087954,0.464636,0.618103,0.51195,0.425466,0.956188,0.818915,0.489799,0.691888,0.647598,0.397081,0.266548,0.630907,0.248261,0.181323,0.969245,0.063894,0.0754467,0.784617,0.477085,0.512045,0.473909,0.652958,0.848007,0.203936,0.648739,0.576775,0.078652,0.970417,0.0147269,0.515955,0.0370625,0.0859411,0.799593,0.447094,0.956394,0.728443,0.650259,0.496514,0.319751,0.798141,0.601247,0.644924,0.352922,0.257393,0.820812,0.630981,0.898544,0.480284,0.577805,0.162975,0.0747139,0.188077,0.812769,0.0353974,0.0795464,0.388079,0.907051,0.0953455,0.634931,0.748565,0.951875,0.865198,0.398268,0.834972,0.90951,0.980263,0.0656784,0.515233,0.798926,0.0228536,0.431153,0.937773,0.684091,0.570705,0.799014,0.538989,0.863971,0.774464,0.685159,0.841214,0.727093,0.665788,0.909589,0.69483,0.445554,0.0536613,0.00939363,0.60224,0.327721,0.00991005,0.892192,0.417474,0.0273015,0.352158,0.368829,0.043749,0.953307,0.782535,0.243874,0.725761,0.700253,0.432359,0.960933,0.0786707,0.63872,0.390703,0.241163,0.652968,0.127355,0.923673,0.459044,0.289032,0.258094,0.993006,0.501182,0.0438445,0.326559,0.29205,0.714311,0.775805,0.159647,0.369605,0.0651822,0.805811,0.621021,0.735138,0.480772,0.15174,0.24192,0.808093,0.672927,0.63569,0.0773219,0.0620441,0.78124,0.704515,0.0543947,0.0235611,0.0962331,0.676656,0.98116,0.22474,0.418855,0.306581,0.382811,0.50488,0.947203,0.0482067,0.561129,0.418307,0.242048,0.518281,0.176859,0.839331,0.123837,0.694864,0.976873,0.246334,0.804803,0.455426,0.0804904,0.999977,0.899753,0.932661,0.10148,0.430134,0.718539,0.914671,0.38734,0.00646186,0.093608,0.259179,0.0243025,0.151352,0.770885,0.790204,0.497107,0.00770926,0.655417,0.0130314,0.676684,0.766149,0.652376,0.60294,0.76885,0.65487,0.77349,0.572548,0.643465,0.813777,0.839897,0.24998,0.783706,0.704623,0.666374,0.511445,0.93107,0.811242,0.24548,0.395966,0.131024,0.716082,0.0211241,0.152395,0.626,0.603531,0.0187408,0.436128,0.609792,0.323562,0.421247,0.277016,0.250765,0.929615,0.956603,0.851249,0.616512,0.442984,0.432423,0.78738,0.468047,0.00229031,0.659052,0.685933,0.662812,0.992166,0.716997,0.212345,0.199711,0.0177178,0.207874,0.99678,0.66381,0.906257,0.834285,0.238649,0.574068,0.679184,0.444745,0.0141463,0.00328898,0.820863,0.672255,0.216001,0.557657,0.0455269,0.131583,0.771493,0.670495,0.917303,0.455953,0.86236,0.967649,0.309543,0.715962,0.228095,0.112818,0.46799,0.466975,0.628412,0.821996,0.84093,0.15289,0.806627,0.754124,0.878312,0.834776,0.0501048,0.954083,0.941088,0.276204,0.924973,0.89105,0.029177,0.411597,0.333145,0.742346,0.647854,0.0479534,0.307728,0.496268,0.740617,0.0595711,0.765628,0.622692,0.908956,0.514679,0.262144,0.678202,0.94468,0.476252,0.54501,0.509772,0.823081,0.757209,0.0101854,0.328378,0.541201,0.0270385,0.795437,0.0824435,0.804402,0.91508,0.483006,0.128937,0.515069,0.85272,0.930824,0.869999,0.0792736,0.529235,0.556532,0.159238,0.0767936,0.277387,0.0364273,0.641934,0.00668007,0.871515,0.763547,0.637298,0.50616,0.232447,0.772467,0.200099,0.399565,0.440728,0.433334,0.844333,0.354606,0.194811,0.175083,0.216736,0.0615763,0.818087,0.424695,0.8315,0.351894,0.142553,0.00727385,0.424018,0.341904,0.00308841,0.855031,0.037511,0.0819867,0.849391,0.716885,0.293183,0.4372,0.863192,0.406186,0.232042,0.732916,0.627538,0.659287,0.855615,0.801063,0.826393,0.0807042,0.640164,0.556286,0.295538,0.67726,0.116623,0.810602,0.269927,0.130769,0.756117,0.479279,0.303323,0.948638,0.812975,0.481788,0.916155,0.799574,0.978166,0.511312,0.738978,0.493717,0.591932,0.376824,0.555836,0.294482,0.555401,0.91777,0.764726,0.779925,0.98872,0.823022,0.165717,0.489352,0.902946,0.617181,0.341719,0.813541,0.0354992,0.186625,0.351345,0.547339,0.0558521,0.883983,0.598355,0.0723488,0.572936,0.642543,0.711796,0.770079,0.200162,0.0183004,0.276547,0.742719,0.397835,0.0259742,0.963863,0.807539,0.214258,0.750723,0.148587,0.16833,0.947893,0.0380047,0.250503,0.828306,0.717775,0.234352,0.594215,0.934949,0.717577,0.718688,0.687864,0.138995,0.217492,0.290357,0.439966,0.588186,0.597759,0.561589,0.95502,0.309709,0.122102,0.881251,0.414594,0.116038,0.211902,0.731391,0.161427,0.23538,0.26912,0.305974,0.598508,0.250934,0.274441,0.838174,0.621939,0.453523,0.478174,0.908957,0.377557,0.452526,0.186612,0.197764,0.35926,0.769987,0.535592,0.9651,0.852709,0.697621,0.291593,0.592321,0.71671,0.159627,0.216981,0.692839,0.0175833,0.983126,0.420364,0.46257,0.0322004,0.44088,0.352911,0.785788,0.561585,0.220657,0.722402,0.104985,0.480289,0.614796,0.237296,0.637683,0.349401,0.426993,0.698833,0.934907,0.107806,0.926167,0.157692,0.376566,0.329586,0.440642,0.656793,0.0778467,0.944162,0.22846,0.863743,0.988882,0.865189,0.0657023,0.637105,0.477138,0.0639509,0.531149,0.0865343,0.0494222,0.513478,0.0222267,0.330979,0.359986,0.706353,0.961618,0.469526,0.437839,0.0488019,0.917105,0.537967,0.465566,0.0558504,0.583675,0.0804094,0.480482,0.987683,0.568097,0.584003,0.837633,0.377933,0.380406,0.658782,0.822368,0.356234,0.709794,0.154118,0.294144,0.0768024,0.843517,0.454662,0.14931,0.371636,0.40742,0.695577,0.213832,0.878644,0.271089,0.919351,0.356989,0.927294,0.557895,0.156085,0.571617,0.329022,0.177388,0.238895,0.249243,0.470127,0.00911468,0.602476,0.239307,0.0494926,0.0223061,0.03842,0.238057,0.311817,0.653702,0.951868,0.0723848,0.0243112,0.928657,0.451311,0.142967,0.927898,0.413078,0.240825,0.691436,0.494072,0.434228,0.3305,0.78572,0.990585,0.975913,0.111013,0.301271,0.148842,0.522817,0.576093,0.378954,0.498319,0.694799,0.201183,0.937217,0.721623,0.224241,0.941326,0.318701,0.260235,0.302269,0.313648,0.895455,0.793976,0.294109,0.728442,0.599313,0.0805818,0.53741,0.904942,0.12022,0.0813768,0.173881,0.345179,0.588425,0.276288,0.823274,0.837016,0.861895,0.99177,0.569016,0.972769,0.568221,0.696473,0.778572,0.89353,0.532014,0.433864,0.488351,0.0968587,0.417792,0.0900888,0.806149,0.996884,0.834052,0.393288,0.722919,0.830649,0.857686,0.434412,0.620658,0.572561,0.998722,0.720665,0.604203,0.0299944,0.598429,0.346524,0.185355,0.815946,0.164676,0.45944,0.256242,0.78131,0.0604156,0.172297,0.286001,0.70451,0.804491,0.270607,0.05549,0.788368,0.293833,0.558238,0.233362,0.904179,0.997145,0.888031,0.946796,0.742708,0.812533,0.962168,0.0141992,0.391557,0.942564,0.486542,0.506827,0.241593,0.0992965,0.981239,0.30347,0.184939,0.796719,0.88763,0.897465,0.336962,0.336463,0.00497895,0.780496,0.0794104,0.780661,0.213294,0.143505,0.952501,0.242387,0.942826,0.709971,0.11892,0.0244318,0.192736,|0.700026,0.87591,0.402594,0.177499,0.747851,0.467118,0.0559371,0.233843,0.0119069,0.0915778,0.149358,0.207661,0.466113,0.336263,0.237531,0.25545,0.646462,0.233468,0.848979,0.442445,0.188803,0.945573,0.513628,0.686183,0.529776,0.668665,0.299476,0.618271,0.205468,0.737062,0.232281,0.887446,0.453311,0.846121,0.55412,0.138599,0.331726,0.91725,0.01487,0.4672,0.268069,0.946236,0.739249,0.983006,0.0656343,0.111383,0.343184,0.414633,0.99672,0.0269421,0.881541,0.465614,0.103853,0.560176,0.68008,0.988887,0.0141657,0.627003,0.0918952,0.867912,0.838805,0.0346037,0.487881,0.97349,0.780716,0.937619,0.470166,0.727414,0.318686,0.782809,0.917616,0.418018,0.031587,0.0781612,0.992853,0.372732,0.177869,0.0748695,0.964961,0.134271,0.543433,0.464433,0.661904,0.111631,0.149237,0.0475534,0.144623,0.341809,0.106036,0.986449,0.940012,0.493679,0.298217,0.132666,0.974461,0.76879,0.0664984,0.9865,0.0540342,0.624909,0.227428,0.818326,0.384967,0.289382,0.169586,0.69538,0.320128,0.84257,0.128592,0.468499,0.571102,0.240171,0.388543,0.0365149,0.213712,0.803177,0.986159,0.458428,0.56338,0.555929,0.96192,0.44871,0.326834,0.537404,0.59773,0.445916,0.754231,0.394448,0.786278,0.092446,0.197709,0.415773,0.51992,0.0550682,0.468573,0.522363,0.790613,0.531834,0.511685,0.210337,0.548929,0.624504,0.212274,0.692293,0.455429,0.607997,0.893318,0.490146,0.318357,0.960563,0.0451029,0.656572,0.88835,0.712672,0.571436,0.79539,0.905561,0.0629381,0.824386,0.988522,0.213405,0.405258,0.335074,0.513336,0.234469,0.20606,0.393885,0.250811,0.692358,0.0098272,0.546105,0.192227,0.474582,0.223656,0.463254,0.618119,0.323776,0.86974,0.573304,0.278554,0.609119,0.443778,0.167578,0.124025,0.20768,0.752258,0.633781,0.302094,0.482809,0.402783,0.985724,0.528831,0.197413,0.601575,0.185778,0.887984,0.295018,0.160567,0.619085,0.36595,0.359673,0.0255458,0.595688,0.129394,0.618389,0.579331,0.481093,0.5838,0.8483,0.474753,0.152321,0.61255,0.211043,0.179459,0.276486,0.61793,0.794751,0.502314,0.934664,0.223053,0.839608,0.957874,0.216037,0.543414,0.908119,0.86469,0.791102,0.804858,0.256435,0.899607,0.780498,0.174539,0.0534433,0.812977,0.030752,0.59979,0.294919,0.0831248,0.161613,0.354977,0.539104,0.888751,0.467136,0.361497,0.575005,0.377617,0.20973,0.669072,0.712944,0.995557,0.582369,0.68585,0.268995,0.0992827,0.563699,0.233173,0.156894,0.916917,0.301133,0.241043,0.258517,0.416674,0.987877,0.363022,0.260593,0.327214,0.0945343,0.24948,0.0944238,0.655086,0.000933766,0.110279,0.533297,0.0821834,0.88285,0.36256,0.441405,0.302347,0.571362,0.389705,0.0508708,0.24081,0.723947,0.0965884,0.0226382,0.693658,0.474286,0.482371,0.0146093,0.0564484,0.140957,0.229431,0.520998,0.546872,0.141743,0.165489,0.683425,0.874814,0.174656,0.0937126,0.00992602,0.637833,0.152599,0.444344,0.741786,0.0671618,0.916404,0.471264,0.95642,0.687407,0.198248,0.819308,0.546199,0.560056,0.668204,0.493712,0.910711,0.648336,0.0993696,0.700753,0.0909035,0.755013,0.339908,0.554563,0.50259,0.667642,0.736369,0.149465,0.578007,0.135732,0.242515,0.467535,0.251144,0.318365,0.0436009,0.330026,0.467884,0.691716,0.834897,0.133355,0.764215,0.114596,0.390351,0.930683,0.934121,0.346091,0.634197,0.471852,0.665782,0.360661,0.343805,0.287915,0.659816,0.837854,0.904231,0.189771,0.614711,0.564252,0.455442,0.636356,0.551656,0.17209,0.777244,0.822138,0.200675,0.595958,0.63705,0.201327,0.56099,0.283801,0.994348,0.182513,0.95307,0.273276,0.433101,0.581596,0.982893,0.742919,0.0931678,0.203241,0.552588,0.882643,0.75889,0.545064,0.999985,0.777174,0.831874,0.668214,0.352796,0.484265,0.246853,0.237244,0.381799,0.243494,0.710318,0.927181,0.986752,0.256725,0.19152,0.857794,0.599995,0.613685,0.652126,0.635948,0.701484,0.88561,0.133102,0.901846,0.544697,0.17362,0.814522,0.563436,0.205712,0.0939749,0.983829,0.339899,0.620407,0.89099,0.768803,0.00617331,0.211367,0.0725529,0.825688,0.530005,0.50637,0.371359,0.280069,0.191095,0.624709,0.660426,0.598516,0.572747,0.851192,0.466889,0.749771,0.163892,0.929051,0.963161,0.218786,0.905805,0.44067,0.684167,0.331882,0.0253159,0.893918,0.841116,0.497658,0.222149,0.269584,0.0829573,0.196458,0.0344296,0.0362954,0.0908961,0.986186,0.848448,0.121811,0.15715,0.721107,0.567987,0.93854,0.330673,0.147166,0.85178,0.888815,0.978204,0.286523,0.724327,0.367021,0.260972,0.684015,0.854732,0.828301,0.956751,0.19165,0.617324,0.759239,0.13487,0.656993,0.88193,0.0479512,0.630473,0.637699,0.23229,0.999979,0.508732,0.627584,0.812985,0.28954,0.312629,0.877503,0.0646356,0.0212378,0.67184,0.664561,0.107597,0.599376,0.414003,0.513395,0.515758,0.807918,0.502918,0.207867,0.453304,0.893479,0.220365,0.539177,0.886114,0.764078,0.5576,0.795569,0.730485,0.798808,0.484066,0.421279,0.239911,0.810058,0.0628754,0.524078,0.71707,0.813962,0.896033,0.877639,0.027706,0.0207171,0.635083,0.856526,0.658616,0.166969,0.522061,0.821212,0.297613,0.83051,0.374051,0.231773,0.701632,0.240782,0.0404038,0.385698,0.485712,0.277913,0.55318,0.600693,0.504877,0.199808,0.50865,0.601647,0.750848,0.509202,0.36739,0.789502,0.439295,0.278982,0.0378339,0.0466846,0.614305,0.539422,0.782847,0.218482,0.735908,0.91413,0.683208,0.51845,0.757726,0.423861,0.566041,0.527296,0.97323,0.166952,0.727956,0.0487131,0.181887,0.578159,0.982298,0.247405,0.916762,0.0889612,0.298513,0.917935,0.443971,0.920834,0.737805,0.573393,0.295764,0.937089,0.771493,0.149405,0.502712,0.43766,0.119666,0.307477,0.234514,0.486519,0.0257597,0.0023219,0.826793,0.688666,0.459175,0.978624,0.264128,0.464728,0.469691,0.390793,0.589297,0.687335,0.394434,0.870504,0.033116,0.251056,0.475564,0.75775,0.703176,0.387688,0.103079,0.657869,0.30451,0.0483441,0.29986,0.203604,0.81189,0.615306,0.493798,0.557404,0.760592,0.208772,0.595398,0.714582,0.130091,0.863455,0.372599,0.638182,0.145347,0.370316,0.648276,0.877459,0.791238,0.564537,0.00604582,0.907623,0.118753,0.0307174,0.742613,0.15503,0.865126,0.712346,0.958247,0.285319,0.216435,0.718625,0.966655,0.265549,0.553573,0.837215,0.393844,0.793249,0.808402,0.0881839,0.230973,0.101331,0.327156,0.118178,0.00246847,0.0800744,0.573487,0.28995,0.460778,0.574039,0.328711,0.64546,0.537099,0.52805,0.402464,0.166444,0.285114,0.956729,0.981091,0.390818,0.561586,0.159538,0.165394,0.854404,0.15339,0.0726261,0.237647,0.774685,0.0702336,0.725408,0.218852,0.172355,0.154801,0.223709,0.297228,0.650637,0.467883,0.407836,0.432813,0.0496088,0.666883,0.773548,0.861643,0.284747,0.305594,0.962849,0.867914,0.439657,0.674185,0.642402,0.792106,0.804087,0.105726,0.201204,0.261059,0.660948,0.967289,0.0278917,0.136102,0.042863,0.00941312,0.948861,0.816485,0.739879,0.115421,0.972347,0.959914,0.677143,0.272317,0.494817,0.21361,0.785282,0.886271,0.433202,0.467757,0.571256,0.399476,0.606955,0.157888,0.72734,0.501741,0.913168,0.617383,0.0966149,0.420638,0.0497352,0.0988334,0.368812,0.207165,0.725274,0.9614,0.949701,0.252157,0.174974,0.344995,0.866471,0.828276,0.462209,0.270677,0.206682,0.598829,0.510703,0.921817,0.455076,0.669839,0.812861,0.518139,0.106006,0.631403,0.902543,0.0270416,0.731897,0.707473,0.273066,0.0548189,0.891052,0.779113,0.756926,0.0215951,0.978871,0.936566,0.165866,0.810954,0.499794,0.91033,0.720421,0.978777,0.101127,0.164312,0.708551,0.513056,0.684344,0.858252,0.0848352,0.288844,0.170341,0.571954,0.287754,0.496817,0.678098,0.631402,0.0547026,0.111235,0.830984,0.0341055,0.77707,0.593925,0.894114,0.445384,0.948258,0.268812,0.646918,0.436494,0.103122,0.674887,0.554214,0.328113,0.622241,0.400771,0.398622,0.567222,0.113621,0.11746,0.0692387,0.0493686,0.907976,0.898241,0.499124,0.645409,0.635631,0.496086,0.349003,0.0117922,0.246529,0.319336,0.92613,0.536602,0.129312,0.117162,0.569628,0.786476,0.736475,0.526704,0.584426,0.327876,0.509194,0.735206,0.787601,0.288765,0.0392755,0.468742,0.337126,0.313745,0.0418561,0.0924461,0.717199,0.730268,0.581372,0.669696,0.688816,0.0320244,0.0215614,0.72483,0.39029,0.200901,0.0412563,0.965155,0.113216,0.0145847,0.115558,0.913717,0.0520911,0.787289,0.356439,0.0650346,0.92423,0.777171,0.284302,0.157154,0.491112,0.11987,0.98394,0.00225592,0.833727,0.971693,0.360497,0.820537,0.959588,0.695894,0.416828,0.783537,0.33501,0.748056,0.659798,0.20814,0.17926,0.26304,0.596051,0.35717,0.700231,0.787575,0.379875,0.72017,0.68853,0.71355,0.709944,0.40556,0.582749,0.585243,0.757133,0.0208918,0.479353,0.805011,0.965859,0.889432,0.602404,0.639381,0.65191,0.535045,0.645433,0.379624,0.422199,0.0404326,0.110587,0.141487,0.753877,0.883499,0.222693,0.560759,0.0296797,0.752317,0.82499,0.811907,0.417148,0.139768,0.568324,0.876642,0.266871,0.576251,0.934941,0.308613,0.396419,0.624101,0.00963467,0.0284218,0.548939,0.36064,0.240882,0.706303,0.0477704,0.38777,0.616559,0.901458,0.328264,0.281389,0.471544,0.137112,0.888166,0.741638,0.81195,0.273383,0.824502,0.882934,0.839149,0.11404,0.143953,0.22603,0.803666,0.968671,0.602229,0.490487,0.680824,0.506219,0.444045,0.601799,0.0196293,0.793182,0.366713,0.200417,0.816019,0.23681,0.639961,0.878302,0.350692,0.310073,0.0854775,0.715369,0.663795,0.149163,0.270361,0.72535,0.969876,0.87431,0.627692,0.0718182,0.776171,0.603031,0.0961419,0.811326,0.650042,0.149023,0.294432,0.752772,|0.209625,0.943383,0.507177,0.0259276,0.0957822,0.72682,0.368169,0.369561,0.77929,0.963439,0.313854,0.42746,0.992595,0.32118,0.0968771,0.735769,0.378988,0.450235,0.584863,0.606821,0.71834,0.545438,0.975606,0.848384,0.342032,0.474636,0.169698,0.309389,0.836444,0.78151,0.456114,0.242264,0.0530338,0.294486,0.980545,0.0413821,0.567049,0.184796,0.126365,0.399311,0.0828367,0.353906,0.184674,0.512688,0.0869403,0.55318,0.642758,0.458183,0.150271,0.371702,0.781523,0.155895,0.195747,0.730125,0.0452865,0.31732,0.721467,0.753164,0.325698,0.0219193,0.268012,0.512621,0.00934666,0.631177,0.211562,0.630086,0.198627,0.786573,0.179717,0.850912,0.959671,0.12707,0.629101,0.663711,0.517504,0.846711,0.640289,0.895199,0.390978,0.845216,0.867999,0.610114,0.509015,0.25112,0.0411574,0.20835,0.63384,0.542455,0.228579,0.112067,0.971726,0.0776433,0.466175,0.351676,0.644762,0.428675,0.0675647,0.835986,0.557492,0.0540615,0.802649,0.250026,0.454958,0.815009,0.322139,0.285528,0.701133,0.809314,0.862676,0.37808,0.813899,0.607625,0.382969,0.551518,0.387379,0.0285282,0.873078,0.901558,0.18096,0.437445,0.0328737,0.372466,0.765866,0.613981,0.588171,0.0964389,0.848403,0.546231,0.304108,0.585034,0.604918,0.277911,0.195189,0.360364,0.83536,0.891447,0.774177,0.0754359,0.467188,0.0823304,0.887081,0.377126,0.907611,0.779955,0.287505,0.627846,0.226962,0.75247,0.429906,0.463039,0.399852,0.979598,0.133357,0.283163,0.0742862,0.772736,0.192989,0.361931,0.419977,0.87895,0.832881,0.162271,0.913609,0.981271,0.815473,0.969652,0.506873,0.571516,0.574416,0.293928,0.852325,0.0481869,0.959634,0.735632,0.366399,0.273457,0.482183,0.901084,0.646275,0.321868,0.894786,0.0307543,0.748282,0.857195,0.979803,0.670457,0.409699,0.530682,0.606107,0.383867,0.258799,0.134789,0.20213,0.572462,0.215094,0.679437,0.977805,0.167792,0.00581121,0.146747,0.349523,0.465952,0.215412,0.200598,0.047906,0.947857,0.283027,0.018632,0.168307,0.308947,0.0921887,0.966344,0.8828,0.951315,0.709634,0.516898,0.346115,0.214025,0.167772,0.26899,0.759204,0.0744235,0.22779,0.0468534,0.454672,0.80016,0.622431,0.853056,0.431662,0.471129,0.118271,0.692744,0.096912,0.248888,0.648873,0.669811,0.962428,0.721196,0.491161,0.316707,0.619973,0.888702,0.0907698,0.0108445,0.656546,0.32925,0.0759162,0.705345,0.186554,0.919843,0.419685,0.0960701,0.994012,0.09383,0.302509,0.511759,0.700104,0.0719253,0.549208,0.3937,0.964124,0.628153,0.499641,0.00750268,0.60994,0.448724,0.246155,0.287398,0.512015,0.632089,0.834232,0.808563,0.169438,0.612343,0.115204,0.880665,0.0121135,0.732125,0.570156,0.219433,0.634195,0.302045,0.223737,0.339566,0.415892,0.14209,0.770732,0.776814,0.102638,0.894787,0.447479,0.311688,0.268307,0.665897,0.0564852,0.112241,0.763182,0.93209,0.654988,0.980574,0.178317,0.0617323,0.480482,0.169509,0.819962,0.0192001,0.452479,0.193612,0.443099,0.0408694,0.793314,0.222739,0.164224,0.872869,0.531294,0.155307,0.929638,0.0729796,0.927619,0.830373,0.894881,0.0948342,0.0206846,0.883669,0.886842,0.5849,0.682291,0.571798,0.446591,0.0322412,0.720335,0.79,0.0806421,0.867927,0.168986,0.679503,0.397744,0.572935,0.629753,0.656514,0.65426,0.959681,0.814023,0.537502,0.962364,0.894434,0.0555523,0.483851,0.820982,0.154582,0.532734,0.100993,0.565687,0.0263398,0.68656,0.0615951,0.951323,0.278509,0.557395,0.235752,0.385127,0.536191,0.994261,0.636849,0.867526,0.509229,0.235192,0.491739,0.147936,0.935044,0.683422,0.251344,0.00251281,0.834325,0.218498,0.907515,0.716901,0.252459,0.819548,0.0664155,0.201092,0.707055,0.835805,0.344602,0.401969,0.88825,0.93232,0.605614,0.186061,0.680539,0.0143769,0.575525,0.506119,0.705611,0.0528358,0.797116,0.894057,0.17609,0.525503,0.501895,0.77857,0.502956,0.565495,0.94277,0.701308,0.502928,0.944427,0.622953,0.786902,0.47977,0.52484,0.545298,0.36552,0.850511,0.501993,0.542807,0.171681,0.985718,0.0818671,0.497249,0.383196,0.966682,0.418418,0.659192,0.838191,0.0159064,0.30637,0.0733619,0.150781,0.702015,0.386327,0.58194,0.662802,0.776193,0.528732,0.951653,0.0849615,0.0320671,0.858887,0.125367,0.761624,0.498539,0.552071,0.490594,0.0157341,0.142364,0.382489,0.732208,0.04013,0.586254,0.0237753,0.394957,0.451183,0.225887,0.0834082,0.848835,0.355666,0.782227,0.855189,0.290694,0.0207561,0.409629,0.486812,0.224213,0.917068,0.778709,0.0340137,0.959373,0.674272,0.798611,0.452484,0.295056,0.538025,0.751872,0.674221,0.173795,0.65118,0.95493,0.11602,0.102108,0.75952,0.55167,0.765506,0.397651,0.429826,0.724234,0.280384,0.112755,0.94974,0.981713,0.97796,0.0693069,0.106907,0.491974,0.9897,0.586444,0.571242,0.670574,0.518361,0.400243,0.00407815,0.762671,0.467158,0.291072,0.598604,0.259753,0.363811,0.174098,0.0205286,0.663723,0.54997,0.935732,0.557195,0.189836,0.79685,0.134369,0.758534,0.153383,0.534407,0.496032,0.809534,0.13741,0.377494,0.0766196,0.132424,0.832717,0.0711814,0.229929,0.248537,0.608623,0.929158,0.125618,0.238199,0.1674,0.88307,0.0400667,0.918441,0.45601,0.406529,0.722788,0.839873,0.7495,0.310121,0.51991,0.967868,0.91587,0.981852,0.0638845,0.894007,0.655984,0.171635,0.0415003,0.0026359,0.0924714,0.784099,0.832743,0.417667,0.296241,0.0026052,0.898946,0.0958624,0.376581,0.922161,0.924298,0.47235,0.217552,0.434952,0.22459,0.698453,0.440268,0.961532,0.619143,0.766683,0.830036,0.837377,0.0116162,0.278366,0.205837,0.910713,0.426217,0.479932,0.550619,0.617105,0.107971,0.672534,0.0023796,0.172252,0.11237,0.700965,0.0180536,0.191695,0.398621,0.099155,0.035815,0.869439,0.151103,0.123228,0.609244,0.430876,0.444078,0.575279,0.976922,0.30134,0.290984,0.0745625,0.935507,0.407242,0.746678,0.384081,0.00977498,0.298211,0.423969,0.677911,0.575868,0.176657,0.644565,0.666606,0.596138,0.762654,0.132595,0.145957,0.0216475,0.683358,0.601739,0.619204,0.53298,0.229292,0.817466,0.681995,0.267968,0.509204,0.817093,0.780757,0.79749,0.593736,0.91265,0.795429,0.816077,0.638655,0.995867,0.571604,0.408374,0.3148,0.335203,0.0745305,0.786707,0.615355,0.727508,0.832549,0.587781,0.246124,0.224594,0.739653,0.120534,0.146625,0.851839,0.140168,0.0125341,0.81633,0.00437373,0.22794,0.146765,0.145535,0.493366,0.0251222,0.409239,0.614785,0.433433,0.467069,0.670903,0.179596,0.732459,0.506931,0.815123,0.300828,0.394687,0.416161,0.0517595,0.876662,0.459449,0.500087,0.0858066,0.881625,0.0116068,0.403721,0.10145,0.809897,0.0139881,0.618985,0.0663121,0.460047,0.4434,0.206227,0.324101,0.762955,0.158456,0.143136,0.205029,0.270485,0.117264,0.0865336,0.406521,0.808456,0.167288,0.00189149,0.0790703,0.645177,0.908356,0.98112,0.0713438,0.992061,0.411701,0.99662,0.598566,0.439462,0.208232,0.0586972,0.0431547,0.711068,0.302074,0.151657,0.74149,0.870424,0.996417,0.544094,0.0561354,0.6173,0.106776,0.132089,0.532344,0.165525,0.29871,0.701009,0.423971,0.785255,0.195993,0.256416,0.493898,0.0896871,0.15849,0.477209,0.637925,0.320217,0.515727,0.374864,0.0219663,0.409701,0.926467,0.844247,0.0241585,0.345152,0.498478,0.634968,0.412487,0.173349,0.993435,0.194123,0.378719,0.525304,0.606792,0.652234,0.0496861,0.812815,0.0362257,0.182445,0.204889,0.681995,0.666214,0.746605,0.426661,0.148392,0.75062,0.750374,0.771413,0.102283,0.307047,0.862548,0.664605,0.0973161,0.242461,0.739618,0.390552,0.691228,0.0229537,0.741689,0.942442,0.34601,0.612611,0.786295,0.67623,0.425819,0.464556,0.6788,0.445454,0.722996,0.110182,0.114928,0.950137,0.0383131,0.868812,0.136262,0.866637,0.591671,0.268116,0.489109,0.303119,0.659484,0.00122386,0.708268,0.175344,0.612904,0.396742,0.28116,0.366047,0.620268,0.797314,0.787276,0.177671,0.0179792,0.853186,0.246437,0.42922,0.587896,0.181989,0.568615,0.580326,0.349159,0.0269341,0.140717,0.936383,0.913041,0.8401,0.990488,0.390638,0.342866,0.714386,0.163123,0.708586,0.22275,0.351527,0.823336,0.191008,0.66436,0.363121,0.970208,0.763292,0.567324,0.102575,0.570237,0.994936,0.365386,0.106908,0.925857,0.563254,0.797639,0.218857,0.782942,0.568094,0.797657,0.341778,0.805694,0.098973,0.513178,0.722785,0.644319,0.123094,0.466129,0.579533,0.445552,0.135204,0.971233,0.421978,0.407733,0.286299,0.922118,0.430489,0.139945,0.345722,0.0113651,0.418765,0.816027,0.167241,0.384952,0.145298,0.467274,0.412167,0.321267,0.451583,0.595779,0.110425,0.371817,0.205233,0.923282,0.791537,0.159445,0.281256,0.140962,0.205217,0.229281,0.439739,0.97059,0.606987,0.217006,0.352475,0.920203,0.425713,0.0396403,0.941943,0.0182103,0.342145,0.873716,0.569651,0.280565,0.70266,0.584909,0.482367,0.766083,0.700639,0.608202,0.636929,0.699317,0.520777,0.38012,0.0523927,0.476631,0.860673,0.0556943,0.628823,0.754775,0.888701,0.439601,0.100262,0.606135,0.206747,0.451432,0.509152,0.0610238,0.172812,0.921746,0.304302,0.964091,0.0783524,0.662723,0.678137,0.511023,0.85977,0.840492,0.165196,0.0461295,0.35358,0.433886,0.318748,0.090784,0.000500143,0.449169,0.367037,0.97123,0.711896,0.118307,0.828302,0.668486,0.645876,0.513056,0.95283,0.0105165,0.938697,0.375845,0.41044,0.495398,0.540519,0.346562,0.926174,0.295462,0.215215,0.210976,0.391646,0.226924,0.995202,0.296221,0.486238,0.604674,0.272707,0.952483,0.922315,0.0783969,0.0259418,0.385583,0.767407,0.737616,0.127378,0.244874,0.172511,0.334412,0.628733,0.423809,0.976014,0.458144,0.969338,0.469066,0.258708,|0.821598,0.531674,0.290253,0.863497,0.474677,0.241939,0.7906,0.0858201,0.189076,0.78479,0.367626,0.547897,0.663659,0.687846,0.930937,0.0222057,0.620302,0.0987613,0.217444,0.989771,0.852585,0.661005,0.0608081,0.955824,0.0502803,0.454935,0.200714,0.74511,0.141859,0.522032,0.126345,0.308651,0.734851,0.611027,0.612718,0.516233,0.342676,0.0179825,0.269533,0.108377,0.449561,0.212675,0.582972,0.775108,0.590818,0.80899,0.0120547,0.715515,0.22114,0.987962,0.380043,0.306315,0.414592,0.69523,0.0865177,0.300804,0.875212,0.244856,0.811524,0.20904,0.776871,0.77796,0.078612,0.777568,0.00415045,0.585366,0.671457,0.287281,0.758379,0.561472,0.730924,0.28483,0.534039,0.995891,0.754895,0.815938,0.870007,0.124868,0.707945,0.160666,0.468771,0.130543,0.261378,0.192639,0.456036,0.0798903,0.478384,0.505664,0.519502,0.462994,0.987673,0.338783,0.576861,0.776069,0.074904,0.0698774,0.151502,0.975822,0.43667,0.590756,0.35509,0.697537,0.385587,0.544319,0.0636914,0.772013,0.687768,0.492978,0.0386844,0.721642,0.852663,0.444308,0.471184,0.245023,0.0974073,0.643528,0.141153,0.103363,0.712064,0.901143,0.579913,0.543354,0.913071,0.34862,0.699116,0.271156,0.559998,0.488995,0.310345,0.852387,0.755497,0.353952,0.56344,0.956176,0.103532,0.418891,0.576238,0.544693,0.509722,0.7161,0.553849,0.142361,0.368462,0.768209,0.0168688,0.590889,0.910441,0.878646,0.723629,0.377956,0.80732,0.725819,0.445469,0.886391,0.876405,0.399245,0.415169,0.0660054,0.899189,0.811006,0.893119,0.427088,0.704473,0.0710331,0.0852157,0.191182,0.985728,0.707117,0.7019,0.404171,0.197458,0.83229,0.480663,0.0351149,0.683445,0.209997,0.190594,0.794992,0.879428,0.777403,0.261681,0.206646,0.933134,0.897705,0.0589409,0.228067,0.11982,0.564399,0.572255,0.675019,0.81521,0.924043,0.106274,0.668627,0.132294,0.0657527,0.521326,0.722773,0.4854,0.350591,0.858863,0.932465,0.0023489,0.54104,0.677015,0.844335,0.363559,0.675356,0.523879,0.161281,0.616608,0.613405,0.44943,0.77047,0.358091,0.512037,0.446722,0.155299,0.646442,0.232949,0.945015,0.642196,0.211662,0.859621,0.446261,0.554931,0.042404,0.748352,0.379016,0.0147882,0.949888,0.348677,0.947938,0.736827,0.780936,0.28796,0.657025,0.75224,0.963025,0.316425,0.620789,0.0549518,0.615367,0.00442445,0.231168,0.868549,0.266349,0.293949,0.622882,0.51251,0.147967,0.807852,0.656888,0.788516,0.841556,0.0730091,0.542366,0.631379,0.0329105,0.791946,0.273793,0.464335,0.0373424,0.450922,0.120504,0.757455,0.668744,0.574412,0.334115,0.558955,0.135935,0.306941,0.696128,0.0305964,0.189264,0.579555,0.272064,0.425062,0.939289,0.873015,0.890739,0.744249,0.591644,0.926712,0.480199,0.71281,0.547208,0.964347,0.885258,0.3711,0.867376,0.210501,0.47982,0.074747,0.0562544,0.683096,0.336424,0.171181,0.955672,0.669718,0.994128,0.477688,0.0660757,0.059163,0.386169,0.295598,0.691557,0.634502,0.901665,0.464836,0.64436,0.939847,0.399131,0.729271,0.535259,0.322781,0.00506014,0.327929,0.488708,0.76812,0.425582,0.808086,0.161951,0.323828,0.922362,0.895488,0.937604,0.699205,0.314401,0.864534,0.547596,0.882909,0.152591,0.41873,0.729648,0.814356,0.250145,0.527807,0.645693,0.481578,0.879995,0.833579,0.0704737,0.664081,0.513777,0.584123,0.267316,0.127892,0.823319,0.0859808,0.499549,0.00990897,0.223724,0.825581,0.333701,0.0788665,0.0214883,0.349302,0.923272,0.972428,0.355923,0.0559035,0.5206,0.431139,0.843444,0.676898,0.986248,0.864624,0.91833,0.742253,0.577958,0.935047,0.427419,0.927385,0.228498,0.986092,0.634663,0.984551,0.49856,0.701214,0.501432,0.804027,0.335075,0.413176,0.372413,0.520676,0.184039,0.309961,0.364946,0.302238,0.294529,0.109035,0.762729,0.693235,0.147972,0.169479,0.62606,0.87062,0.110197,0.742343,0.0208703,0.705896,0.593607,0.843802,0.863676,0.0337977,0.392546,0.176336,0.19001,0.770434,0.117362,0.175887,0.142246,0.63813,0.514591,0.121928,0.758769,0.385884,0.689443,0.777401,0.967846,0.640917,0.638743,0.13904,0.337444,0.260553,0.944246,0.993958,0.222661,0.813827,0.876956,0.965092,0.0317816,0.627416,0.307385,0.155848,0.904031,0.797526,0.154283,0.627952,0.243046,0.469523,0.500027,0.0270586,0.484567,0.742487,0.0403335,0.814419,0.943235,0.201986,0.321045,0.956659,0.288424,0.77926,0.443438,0.697866,0.905666,0.890437,0.477065,0.0861438,0.272059,0.867003,0.746256,0.0148289,0.968724,0.895759,0.595721,0.138487,0.687155,0.935385,0.224602,0.0776249,0.614476,0.188723,0.168557,0.149521,0.938088,0.593298,0.228176,0.678441,0.727276,0.595035,0.886168,0.673022,0.755939,0.310026,0.567797,0.460818,0.0297664,0.371367,0.228514,0.641065,0.509512,0.40674,0.890791,0.769364,0.495068,0.0571873,0.517243,0.12881,0.186616,0.827665,0.0614116,0.745069,0.420126,0.0284123,0.645727,0.635851,0.806781,0.393809,0.189331,0.645728,0.0301622,0.745346,0.453278,0.4889,0.0314257,0.211265,0.351787,0.550752,0.52033,0.604612,0.918517,0.519954,0.913254,0.167365,0.537637,0.486134,0.246033,0.430247,0.934398,0.406087,0.00417197,0.720185,0.915526,0.315069,0.892554,0.517939,0.303998,0.861582,0.898724,0.541452,0.481307,0.0380505,0.741892,0.489129,0.276811,0.522698,0.452237,0.77033,0.612377,0.0396984,0.382314,0.707394,0.694974,0.591259,0.960562,0.465272,0.222593,0.401149,0.313431,0.817495,0.288413,0.098191,0.930388,0.683704,0.725228,0.467858,0.467563,0.217768,0.253621,0.397469,0.548975,0.745889,0.87242,0.986371,0.814922,0.621414,0.735115,0.51608,0.911101,0.536281,0.165954,0.678821,0.327621,0.944205,0.745627,0.506799,0.432516,0.179347,0.910336,0.363886,0.12348,0.183916,0.68101,0.103774,0.571664,0.409627,0.93269,0.233847,0.695122,0.666518,0.408489,0.972838,0.406917,0.258217,0.135072,0.1809,0.227493,0.273286,0.878231,0.260481,0.36665,0.366646,0.132907,0.865229,0.87511,0.913234,0.931757,0.280171,0.194222,0.267804,0.268265,0.879448,0.974456,0.453927,0.133218,0.778867,0.885128,0.403274,0.510576,0.284543,0.794527,0.541902,0.307571,0.674577,0.658513,0.0512753,0.575114,0.0203633,0.175117,0.0933231,0.692537,0.273174,0.242567,0.239976,0.0304041,0.528807,0.764928,0.774302,0.331272,0.566407,0.656623,0.889572,0.828661,0.272426,0.953656,0.614255,0.800329,0.13203,0.645252,0.52193,0.809072,0.19061,0.370278,0.293936,0.922276,0.386231,0.706001,0.573287,0.572438,0.271062,0.0851235,0.0501519,0.155877,0.610771,0.466674,0.643462,0.204132,0.794284,0.620814,0.526575,0.505855,0.909363,0.829093,0.745571,0.508217,0.761337,0.883155,0.268493,0.40556,0.020986,0.270237,0.505039,0.144346,0.020568,0.110685,0.811186,0.29433,0.537998,0.872613,0.497106,0.448709,0.589455,0.868066,0.497222,0.645682,0.524774,0.183982,0.348641,0.386504,0.354399,0.900535,0.999711,0.142287,0.329585,0.0876762,0.739171,0.0975209,0.24623,0.238156,0.498938,0.662588,0.762803,0.0670915,0.135272,0.844366,0.202431,0.886474,0.653234,0.840956,0.20011,0.116077,0.587853,0.755967,0.0577074,0.744385,0.0464751,0.687406,0.102315,0.536293,0.0311879,0.276576,0.802663,0.663756,0.322531,0.489042,0.295093,0.974498,0.501422,0.908056,0.918999,0.732541,0.384927,0.711279,0.60745,0.809578,0.863419,0.704952,0.73035,0.0880114,0.117276,0.764691,0.772014,0.561806,0.754651,0.380321,0.947707,0.138373,0.00353855,0.315,0.129663,0.319495,0.0719039,0.311093,0.539245,0.692558,0.271701,0.676162,0.626312,0.490526,0.256056,0.757429,0.803567,0.979005,0.619443,0.427062,0.00134891,0.0501172,0.482737,0.282816,0.489665,0.319369,0.037295,0.433484,0.145029,0.194344,0.352622,0.43055,0.0937043,0.0494656,0.177886,0.393138,0.700686,0.757173,0.0502885,0.699215,0.6055,0.60161,0.301224,0.352916,0.960428,0.1431,0.43358,0.629046,0.539387,0.929145,0.658674,0.548197,0.425865,0.113308,0.924347,0.792289,0.633563,0.422827,0.259838,0.828181,0.981955,0.817382,0.917663,0.14088,0.758556,0.121908,0.204003,0.787947,0.454385,0.205722,0.252543,0.274914,0.870441,0.145312,0.637731,0.353932,0.636494,0.0578545,0.797045,0.291891,0.352494,0.741978,0.00556839,0.658956,0.660931,0.929323,0.225178,0.005059,0.541512,0.418712,0.134929,0.180036,0.770589,0.300437,0.0344574,0.763344,0.873164,0.650152,0.136169,0.934685,0.638233,0.389202,0.0985436,0.956874,0.175712,0.0164776,0.535253,0.0870044,0.942143,0.0846288,0.916965,0.854512,0.342851,0.815498,0.493824,0.618249,0.15381,0.293548,0.956739,0.403245,0.296669,0.368434,0.687732,0.620263,0.585567,0.948944,0.872566,0.0702962,0.708166,0.357346,0.119931,0.700909,0.228538,0.703995,0.8747,0.763051,0.201362,0.919726,0.49771,0.943091,0.122613,0.327055,0.454743,0.503393,0.717218,0.905362,0.454525,0.161647,0.0856845,0.182009,0.701054,0.0729885,0.726304,0.812754,0.191295,0.957564,0.354645,0.137742,0.145829,0.082195,0.703393,0.99194,0.662786,0.181214,0.236612,0.161558,0.480009,0.48907,0.840952,0.125428,0.0433766,0.82608,0.557618,0.151914,0.51035,0.21451,0.795482,0.743775,0.794884,0.825728,0.271505,0.509219,0.303585,0.0591962,0.433925,0.205945,0.520737,0.165721,0.503895,0.407798,0.444334,0.949592,0.643273,0.281011,0.289376,0.199746,0.80639,0.351711,0.224903,0.716831,0.662732,0.740266,0.964737,0.93393,0.714827,0.157846,0.694128,0.475893,0.122188,0.677809,0.232115,0.39143,0.442892,0.511997,0.296097,0.971124,0.124151,0.109322,0.426104,0.883841,0.699063,0.92263,0.445667,0.80017,0.691481,0.722274,0.616174,0.853106,0.556664,0.916272,0.118239,0.821756,0.475219,|0.718851,0.436619,0.097279,0.624107,0.0961505,0.894051,0.388461,0.834527,0.344976,0.739344,0.28807,0.998508,0.788853,0.996985,0.108536,0.76162,0.973816,0.722136,0.288774,0.440647,0.790778,0.913707,0.847268,0.951866,0.700101,0.976804,0.59454,0.145761,0.00736547,0.0317842,0.167413,0.237953,0.946181,0.701197,0.764785,0.0700915,0.792355,0.983193,0.769136,0.994065,0.644964,0.846657,0.117814,0.862533,0.337737,0.29274,0.338675,0.693643,0.997457,0.5053,0.0742366,0.815173,0.342863,0.660647,0.728125,0.0887896,0.397837,0.228046,0.167799,0.0286238,0.021348,0.0629485,0.930128,0.970601,0.829872,0.0819936,0.919071,0.190862,0.0900083,0.837882,0.442864,0.19131,0.0263157,0.982114,0.836175,0.627626,0.404289,0.425832,0.506553,0.0435309,0.162102,0.320111,0.782471,0.574746,0.362414,0.567422,0.923726,0.0797656,0.95216,0.863597,0.669972,0.327076,0.688159,0.487459,0.00334764,0.498099,0.604014,0.855459,0.318651,0.218964,0.0429072,0.24623,0.293957,0.822696,0.334025,0.205074,0.00898468,0.639912,0.340388,0.906317,0.637038,0.833704,0.340184,0.607891,0.894647,0.3534,0.64348,0.999066,0.636226,0.474916,0.0284774,0.477738,0.635974,0.699566,0.512482,0.204292,0.804695,0.537633,0.535932,0.397709,0.983113,0.990995,0.637951,0.513962,0.996138,0.229399,0.0562265,0.68322,0.183591,0.235262,0.772005,0.0959249,0.333338,0.23702,0.741087,0.765479,0.941704,0.117388,0.886367,0.369673,0.705769,0.0701465,0.630337,0.423489,0.353496,0.336808,0.431441,0.524636,0.50017,0.276828,0.195193,0.977948,0.264687,0.165755,0.605164,0.241703,0.118884,0.802069,0.377568,0.58332,0.968208,0.838262,0.0814698,0.713996,0.825302,0.0205455,0.880184,0.128149,0.527084,0.0472428,0.390459,0.728168,0.361089,0.0181627,0.504303,0.315852,0.369503,0.961055,0.443036,0.511653,0.772059,0.0961844,0.0108,0.423999,0.694716,0.851189,0.921777,0.20189,0.0964419,0.193351,0.67272,0.581189,0.58472,0.538874,0.244804,0.122423,0.144897,0.471385,0.434338,0.617173,0.236908,0.232164,0.8448,0.34612,0.336459,0.290504,0.700604,0.466802,0.318284,0.763882,0.359112,0.677686,0.713751,0.84866,0.236047,0.72982,0.279498,0.428614,0.701721,0.775532,0.0704317,0.153046,0.952496,0.681648,0.124832,0.081663,0.623869,0.429844,0.844995,0.301659,0.391866,0.669683,0.0913208,0.231326,0.241494,0.654596,0.688601,0.847801,0.709249,0.226697,0.653953,0.946934,0.607157,0.925938,0.816236,0.611552,0.274267,0.510418,0.725413,0.428129,0.722854,0.172088,0.46296,0.230502,0.882092,0.0615011,0.163834,0.956128,0.469768,0.910754,0.472165,0.366964,0.0393731,0.598879,0.850472,0.162698,0.961478,0.80935,0.0389498,0.219478,0.375877,0.970823,0.243744,0.844664,0.245104,0.567543,0.666514,0.468041,0.0418475,0.306898,0.963884,0.490765,0.00323105,0.992617,0.907746,0.910623,0.235238,0.0715523,0.763828,0.964732,0.943121,0.700447,0.396347,0.937696,0.462658,0.900608,0.974365,0.0258725,0.142994,0.499137,0.205503,0.235206,0.120022,0.593458,0.386779,0.839663,0.0255876,0.248534,0.569633,0.388839,0.0136291,0.848258,0.295806,0.513668,0.802041,0.45486,0.773702,0.149668,0.429184,0.052733,0.396619,0.367163,0.385241,0.932587,0.494205,0.550723,0.933254,0.200317,0.435715,0.160524,0.761187,0.892045,0.466912,0.968474,0.779377,0.741872,0.683144,0.765153,0.717631,0.758802,0.598299,0.384136,0.889166,0.985919,0.943808,0.787708,0.0184648,0.00479954,0.722486,0.592036,0.339437,0.946107,0.579796,0.95225,0.362166,0.17317,0.400142,0.480385,0.0895856,0.922594,0.508669,0.56623,0.275038,0.828118,0.040994,0.949296,0.573566,0.353482,0.510655,0.185405,0.921896,0.0448622,0.573182,0.74056,0.763893,0.315324,0.606471,0.328789,0.705168,0.933731,0.485745,0.158794,0.78378,0.588435,0.103675,0.0310636,0.76258,0.309354,0.704063,0.196987,0.652641,0.940206,0.17712,0.863349,0.505292,0.662435,0.160907,0.790486,0.069037,0.208349,0.937294,0.45156,0.454437,0.787628,0.478789,0.0641292,0.593735,0.920613,0.644383,0.287326,0.12913,0.225699,0.210862,0.654273,0.129265,0.475384,0.86567,0.681028,0.78135,0.254988,0.153899,0.149377,0.894993,0.223959,0.901704,0.469293,0.203487,0.354985,0.521196,0.726243,0.900649,0.26185,0.555017,0.272878,0.174312,0.585056,0.86066,0.523305,0.142562,0.278917,0.313574,0.911439,0.416172,0.341223,0.511974,0.852551,0.428653,0.394373,0.158197,0.33987,0.909209,0.0221471,0.721894,0.982555,0.860157,0.077087,0.76399,0.660588,0.681102,0.0345849,0.928086,0.940864,0.526088,0.0104273,0.71532,0.06516,0.415184,0.109909,0.919955,0.923485,0.683595,0.583733,0.233117,0.93495,0.998476,0.332202,0.717961,0.253088,0.254829,0.53419,0.745396,0.543702,0.934897,0.978988,0.920431,0.577313,0.122217,0.370968,0.603437,0.455851,0.190042,0.29928,0.462006,0.158484,0.530305,0.791337,0.525537,0.229603,0.313342,0.915045,0.322415,0.0328726,0.361523,0.204398,0.45239,0.115417,0.0410535,0.977529,0.881282,0.530441,0.583893,0.461084,0.546892,0.25772,0.511927,0.540421,0.212872,0.766391,0.854193,0.0421857,0.331439,0.74093,0.561734,0.460112,0.83771,0.247569,0.78292,0.147484,0.249052,0.55733,0.062001,0.840801,0.848555,0.75536,0.9675,0.557859,0.972664,0.148749,0.381864,0.230812,0.134847,0.89443,0.233212,0.912124,0.648262,0.375061,0.721735,0.666606,0.130309,0.829831,0.403884,0.837814,0.754312,0.561137,0.851969,0.999128,0.680526,0.877056,0.999266,0.714389,0.853702,0.178036,0.67986,0.967652,0.981877,0.914521,0.711771,0.565841,0.767976,0.516916,0.815626,0.00225663,0.0102506,0.688949,0.788453,0.349258,0.76486,0.594764,0.418333,0.0195217,0.107579,0.0679353,0.0405566,0.723055,0.393174,0.356628,0.117507,0.163632,0.456207,0.529178,0.28766,0.828616,0.56862,0.647478,0.281063,0.923375,0.23113,0.0294645,0.457094,0.0758017,0.84188,0.322349,0.976866,0.0783796,0.772571,0.629885,0.338802,0.905567,0.870554,0.0184911,0.176222,0.709119,0.560205,0.917543,0.11567,0.695642,0.489522,0.931122,0.408159,0.922588,0.395883,0.917729,0.45167,0.189907,0.0682994,0.23417,0.290183,0.407419,0.884437,0.524466,0.958687,0.58612,0.991377,0.147095,0.964895,0.668583,0.917567,0.286061,0.281586,0.474875,0.506491,0.0804037,0.405057,0.603127,0.711882,0.135799,0.175896,0.0515267,0.544196,0.100412,0.390971,0.522968,0.437567,0.420736,0.224889,0.708916,0.0399485,0.303004,0.289794,0.554289,0.187982,0.905622,0.280773,0.947153,0.282931,0.776042,0.341933,0.363935,0.638627,0.163756,0.644725,0.513179,0.579445,0.276765,0.763053,0.829545,0.662872,0.185683,0.512638,0.000199854,0.553691,0.443037,0.156533,0.943802,0.586721,0.215055,0.0770754,0.687905,0.415692,0.1468,0.336962,0.257527,0.317922,0.255736,0.175842,0.921279,0.775148,0.0100582,0.358136,0.539434,0.448864,0.779182,0.173321,0.192506,0.818175,0.9522,0.474018,0.602094,0.378373,0.929346,0.00259995,0.160954,0.561734,0.0279697,0.975143,0.855404,0.636974,0.207375,0.0472906,0.098711,0.730877,0.813937,0.693699,0.172452,0.538668,0.286401,0.320428,0.877742,0.014182,0.142279,0.740679,0.553237,0.419241,0.720447,0.468266,0.593014,0.311496,0.181999,0.648435,0.792558,0.243287,0.367803,0.13912,0.20871,0.894661,0.0262634,0.338926,0.792208,0.229359,0.990263,0.988311,0.283631,0.46537,0.674486,0.433647,0.495422,0.933538,0.909481,0.144091,0.991992,0.409268,0.546063,0.0809215,0.550773,0.448416,0.211747,0.106019,0.0808325,0.827487,0.703395,0.287594,0.312741,0.104843,0.0918474,0.234031,0.66561,0.799914,0.460459,0.727713,0.26565,0.096747,0.72097,0.533101,0.231599,0.19822,0.982887,0.617754,0.17153,0.130371,0.847693,0.92905,0.116051,0.906349,0.319065,0.0140356,0.943908,0.178251,0.521531,0.55286,0.724774,0.227967,0.550447,0.830417,0.0590294,0.654174,0.710047,0.545006,0.981506,0.672803,0.550512,0.50705,0.257194,0.0549544,0.23675,0.363702,0.105581,0.787851,0.860129,0.956624,0.37721,0.903348,0.367771,0.52759,0.462856,0.234146,0.464368,0.610426,0.183818,0.316727,0.0432442,0.419218,0.443906,0.785313,0.767472,0.992402,0.942521,0.0870768,0.729523,0.330472,0.00420457,0.0254668,0.0509373,0.795276,0.392817,0.117168,0.571614,0.706103,0.0762469,0.237999,0.0119159,0.245784,0.751987,0.406297,0.937924,0.0823088,0.33756,0.43033,0.256385,0.759154,0.505853,0.289058,0.573558,0.0746993,0.690365,0.610543,0.111645,0.275863,0.583434,0.933966,0.19683,0.20523,0.0417162,0.0868701,0.661584,0.371986,0.170286,0.715255,0.600285,0.803625,0.986399,0.510021,0.800107,0.581452,0.410635,0.767851,0.386787,0.687568,0.257299,0.944164,0.452435,0.778973,0.638674,0.718703,0.312743,0.553651,0.146151,0.0877557,0.26743,0.214571,0.246839,0.0438142,0.0603071,0.999969,0.881605,0.568968,0.00436217,0.377908,0.581744,0.0315325,0.210715,0.361277,0.956389,0.766596,0.447627,0.206429,0.75461,0.143574,0.991032,0.0967705,0.119999,0.322634,0.171306,0.40825,0.469158,0.392016,0.656429,0.270731,0.868436,0.481862,0.0838718,0.797881,0.0637927,0.986746,0.668797,0.569171,0.603931,0.0896221,0.378472,0.747786,0.932786,0.888844,0.893721,0.171849,0.775235,0.549225,0.13078,0.183094,0.662558,0.567851,0.308167,0.957755,0.499992,0.802397,0.695203,0.224317,0.319008,0.762148,0.0673976,0.865113,0.888836,0.0352237,0.840751,0.588884,0.00593245,0.220591,0.587132,0.0147591,0.11466,0.401694,0.512695,0.834437,0.77002,0.520685,0.686153,0.376667,0.256261,0.710068,0.662983,0.161462,0.672276,0.312326,0.99955,0.850981,0.446817,0.250367,0.0916758,0.441701,0.34065,0.739506,0.328412,|0.970872,0.959846,0.487609,0.770596,0.418168,0.924262,0.733579,0.92595,0.74903,0.0610236,0.421359,0.657379,0.242725,0.539984,0.681538,0.157836,0.971237,0.332766,0.207238,0.356496,0.790096,0.514422,0.501986,0.412486,0.643221,0.141839,0.767953,0.586938,0.923727,0.0145299,0.327421,0.0273671,0.362103,0.330901,0.105758,0.302836,0.87812,0.541373,0.0264874,0.203122,0.180695,0.921886,0.198051,0.629882,0.745241,0.509086,0.386474,0.400238,0.750748,0.373002,0.981936,0.239289,0.19828,0.238831,0.280571,0.460109,0.659645,0.27002,0.565066,0.212598,0.263134,0.728837,0.464922,0.572072,0.360052,0.677826,0.860175,0.0491892,0.793387,0.0756192,0.926701,0.56618,0.719034,0.575018,0.923187,0.169715,0.98693,0.72332,0.936949,0.347072,0.658754,0.994819,0.508576,0.44581,0.101851,0.870115,0.0619987,0.163367,0.834298,0.608786,0.889016,0.86115,0.369209,0.93112,0.749654,0.411584,0.222336,0.669602,0.0864797,0.828103,0.37134,0.608883,0.223799,0.444195,0.687848,0.174132,0.656968,0.544397,0.0988224,0.0684648,0.267942,0.379175,0.951015,0.0559994,0.299036,0.395896,0.684353,0.698566,0.138926,0.0324044,0.499056,0.0945969,0.202551,0.686733,0.0270174,0.60921,0.526036,0.766258,0.0687722,0.360036,0.110375,0.562281,0.425184,0.271344,0.250894,0.147582,0.503507,0.998815,0.552546,0.655445,0.173844,0.986818,0.810631,0.39762,0.905927,0.340536,0.0459488,0.158799,0.929804,0.738753,0.662967,0.812275,0.106141,0.415048,0.849523,0.712095,0.452571,0.787529,0.975689,0.0235286,0.978996,0.139203,0.942947,0.606769,0.84656,0.547135,0.951393,0.0962251,0.623156,0.857792,0.375231,0.0168619,0.298632,0.598632,0.192759,0.0599021,0.873316,0.268905,0.54463,0.671584,0.840027,0.324338,0.0874097,0.549365,0.962866,0.555334,0.0142162,0.473163,0.837362,0.163043,0.992339,0.51128,0.683343,0.016484,0.800525,0.221296,0.990781,0.887916,0.478345,0.940303,0.274257,0.358226,0.748067,0.387083,0.889216,0.335984,0.765557,0.723592,0.159326,0.853255,0.19514,0.219269,0.9042,0.474858,0.573985,0.574266,0.689178,0.0917038,0.603636,0.665153,0.414548,0.600685,0.445955,0.842954,0.664657,0.262109,0.168053,0.121119,0.769109,0.150814,0.637169,0.210741,0.704836,0.847428,0.102887,0.896095,0.271561,0.423143,0.528469,0.949888,0.294732,0.158346,0.19441,0.814849,0.818321,0.226058,0.995035,0.879627,0.612937,0.300497,0.0688347,0.322589,0.556149,0.81981,0.817436,0.818673,0.412931,0.154949,0.470437,0.562499,0.00172573,0.682778,0.743732,0.080899,0.408234,0.517689,0.543836,0.897466,0.0190289,0.0355306,0.3491,0.48026,0.318853,0.222212,0.344651,0.602487,0.0750957,0.403555,0.105351,0.457994,0.34416,0.519631,0.86707,0.747179,0.06564,0.55644,0.534467,0.0600993,0.720223,0.0858395,0.889527,0.0689521,0.196048,0.859141,0.684395,0.136701,0.957978,0.0637988,0.704342,0.592895,0.0896806,0.694498,0.671109,0.0834613,0.805777,0.507403,0.994534,0.693685,0.235791,0.519744,0.197902,0.81953,0.0367749,0.425869,0.457528,0.838007,0.848844,0.614596,0.0303565,0.790181,0.0831535,0.849345,0.473097,0.425367,0.401499,0.874838,0.676034,0.749465,0.0424665,0.615634,0.964972,0.0800717,0.0980177,0.728752,0.787852,0.957971,0.836392,0.790675,0.628224,0.239013,0.209115,0.6401,0.324581,0.039665,0.0673876,0.109659,0.809031,0.244787,0.245165,0.461104,0.0575816,0.110542,0.924537,0.163817,0.748652,0.298374,0.736219,0.793641,0.220639,0.545834,0.625531,0.513044,0.979796,0.587721,0.507807,0.0559298,0.666496,0.811106,0.262555,0.0861229,0.667587,0.965604,0.82193,0.780085,0.969836,0.795209,0.612285,0.877811,0.621904,0.2763,0.412646,0.842075,0.627983,0.698662,0.877092,0.560089,0.296766,0.380816,0.925662,0.207853,0.944296,0.0608132,0.889987,0.663388,0.126589,0.00707519,0.516829,0.880592,0.895927,0.58403,0.420504,0.245732,0.736588,0.840529,0.477792,0.569992,0.331274,0.307003,0.0880074,0.574116,0.00830287,0.593569,0.175463,0.386047,0.0531092,0.00786388,0.823888,0.264514,0.0301254,0.597537,0.568276,0.225721,0.899664,0.915079,0.705996,0.952271,0.459419,0.72018,0.954347,0.210761,0.137692,0.421764,0.70915,0.656074,0.811511,0.0177358,0.843832,0.0338305,0.931872,0.0300894,0.416743,0.690556,0.73378,0.0691245,0.749801,0.998436,0.484233,0.60527,0.420703,0.169314,0.0587807,0.111106,0.648749,0.306317,0.0705457,0.707322,0.610877,0.78954,0.120468,0.286252,0.400804,0.433625,0.0444598,0.38527,0.981954,0.620109,0.822841,0.374114,0.569759,0.931882,0.560932,0.006706,0.23149,0.142757,0.751744,0.952741,0.545349,0.913005,0.655597,0.0328977,0.532905,0.501517,0.446415,0.298546,0.665156,0.294194,0.449298,0.810083,0.00324142,0.9723,0.149379,0.189279,0.80655,0.366653,0.811275,0.720612,0.68121,0.269116,0.798239,0.193829,0.0806056,0.816085,0.412922,0.10616,0.298341,0.186501,0.0245783,0.0656754,0.944623,0.814542,0.0184383,0.358449,0.210449,0.990574,0.780328,0.611945,0.59476,0.796681,0.881657,0.691823,0.878646,0.709699,0.876844,0.904889,0.6069,0.177003,0.780497,0.845964,0.192709,0.109139,0.333519,0.024165,0.293442,0.852061,0.147636,0.242405,0.1873,0.284336,0.345608,0.124188,0.299238,0.201872,0.23702,0.976629,0.155481,0.051617,0.763275,0.735247,0.103903,0.0916483,0.0675877,0.853267,0.157223,0.00768328,0.943439,0.621263,0.990006,0.586399,0.5188,0.106063,0.0247605,0.596483,0.283664,0.783777,0.969327,0.0828068,0.852216,0.993302,0.473191,0.145807,0.472598,0.124563,0.103625,0.651802,0.590945,0.0801487,0.294347,0.739263,0.412996,0.506411,0.938438,0.944125,0.53932,0.84468,0.410865,0.66238,0.301353,0.812155,0.0543557,0.256145,0.187333,0.259757,0.453965,0.0744652,0.504336,0.474976,0.984181,0.431464,0.0729971,0.528431,0.347167,0.567695,0.381814,0.471963,0.0498812,0.372183,0.826381,0.605435,0.972519,0.990526,0.0337188,0.829407,0.98477,0.98147,0.136703,0.637854,0.155626,0.126709,0.580206,0.561327,0.366781,0.729761,0.577328,0.889233,0.368816,0.943576,0.751025,0.394507,0.225725,0.913225,0.216492,0.706223,0.705939,0.232249,0.376202,0.68819,0.218059,0.673771,0.648328,0.902572,0.109779,0.597011,0.955856,0.544632,0.577871,0.0707305,0.403262,0.188782,0.984648,0.701209,0.239037,0.115353,0.211871,0.902553,0.434389,0.159958,0.591235,0.266676,0.34825,0.142657,0.60671,0.950128,0.426797,0.639861,0.905579,0.399022,0.324357,0.274299,0.158929,0.852357,0.0263755,0.461866,0.0539387,0.67792,0.611175,0.821053,0.0567418,0.202994,0.261522,0.744768,0.146133,0.500851,0.35344,0.551591,0.532691,0.305366,0.0347437,0.465311,0.205489,0.674339,0.0673895,0.962574,0.333682,0.974298,0.571351,0.0888789,0.930524,0.710784,0.15115,0.30608,0.674678,0.377675,0.595165,0.0943125,0.376837,0.286632,0.655113,0.819554,0.316326,0.370899,0.80966,0.421902,0.550366,0.937945,0.107002,0.554245,0.962467,0.860685,0.142923,0.24589,0.13759,0.804563,0.121717,0.904979,0.902983,0.858404,0.358301,0.17834,0.200729,0.651631,0.641335,0.552654,0.704124,0.201225,0.598776,0.155492,0.961447,0.787162,0.808133,0.267873,0.841023,0.0413607,0.753073,0.782649,0.10709,0.450483,0.0349116,0.81727,0.421441,0.092964,0.94518,0.982949,0.482016,0.514461,0.554716,0.0825186,0.564448,0.471457,0.902792,0.22638,0.107277,0.75477,0.961019,0.521408,0.14135,0.556825,0.260941,0.404997,0.0203009,0.320802,0.104483,0.0779328,0.752944,0.262168,0.373336,0.79256,0.563757,0.81136,0.00598246,0.0702739,0.860317,0.865549,0.720146,0.573052,0.199285,0.627942,0.639566,0.760434,0.624648,0.945347,0.684703,0.704316,0.738862,0.270051,0.190746,0.154299,0.579755,0.36918,0.645452,0.997379,0.133776,0.472125,0.884132,0.821591,0.381902,0.74833,0.337518,0.948618,0.478923,0.720999,0.980519,0.718084,0.107644,0.563288,0.0189607,0.891125,0.886533,0.55069,0.841446,0.213499,0.885097,0.32999,0.351357,0.810163,0.90348,0.761511,0.591575,0.403348,0.268534,0.89183,0.575561,0.595187,0.891562,0.601243,0.807457,0.275114,0.927828,0.672234,0.601045,0.817383,0.127336,0.932895,0.179344,0.916794,0.427043,0.00158411,0.265722,0.373664,0.463196,0.0183104,0.170998,0.484122,0.106638,0.225258,0.913637,0.953851,0.708596,0.470224,0.913282,0.142594,0.216003,0.273807,0.401942,0.590417,0.354834,0.142214,0.885223,0.251841,0.681141,0.537818,0.155559,0.25263,0.00707507,0.125798,0.56632,0.800233,0.445773,0.682494,0.940149,0.399105,0.781744,0.285682,0.875631,0.0492063,0.0501011,0.786805,0.200374,0.205192,0.662611,0.204653,0.788303,0.940774,0.0646598,0.384463,0.61562,0.968435,0.871191,0.214589,0.121978,0.200355,0.476809,0.379385,0.460157,0.207983,0.71886,0.962583,0.473383,0.0763085,0.486342,0.134081,0.558774,0.301417,0.0464578,0.807213,0.853527,0.00344473,0.895371,0.606734,0.035521,0.208412,0.552109,0.0187654,0.580195,0.12839,0.800553,0.703653,0.420461,0.750759,0.482432,0.53032,0.86935,0.963602,0.725617,0.573434,0.69322,0.558334,0.0443377,0.393209,0.296909,0.763715,0.825425,0.268577,0.719261,0.767727,0.701029,0.426612,0.989876,0.543498,0.947697,0.463285,0.426237,0.760214,0.9181,0.738755,0.577109,0.752609,0.789344,0.747561,0.01502,0.691786,0.0879847,0.687731,0.8397,0.869856,0.867585,0.265416,0.693146,0.371655,0.153636,0.661443,0.125899,0.488836,0.232948,0.696551,0.995754,0.748104,0.226627,0.823701,0.176289,0.474173,0.880731,0.338047,0.690836,0.331877,0.140635,0.24786,0.672171,0.922851,0.891891,0.839635,0.244574,0.386614,0.341858,0.122588,0.385439,0.855711,0.98895,0.493707,0.938681,0.516549,|0.228714,0.466564,0.16551,0.772306,0.287419,0.948655,0.165375,0.317625,0.429271,0.37564,0.355755,0.87604,0.0175673,0.43065,0.93886,0.0838377,0.498591,0.519952,0.201906,0.315484,0.571034,0.38688,0.513757,0.774391,0.329123,0.325911,0.273027,0.264459,0.660471,0.936211,0.865739,0.429082,0.0595868,0.265755,0.57014,0.03113,0.479396,0.83076,0.775914,0.272096,0.860099,0.399285,0.704808,0.154418,0.335006,0.812447,0.998942,0.456967,0.319849,0.970077,0.847355,0.892545,0.724164,0.0725296,0.397713,0.0586277,0.396074,0.416085,0.241013,0.313471,0.268181,0.881796,0.651233,0.766075,0.10481,0.185759,0.232034,0.664178,0.156989,0.233632,0.367715,0.30143,0.843058,0.841697,0.0482227,0.527919,0.383769,0.0929999,0.0648598,0.276306,0.819725,0.277236,0.555153,0.90731,0.573613,0.0595948,0.986663,0.816045,0.835256,0.0964612,0.423028,0.995556,0.124061,0.432205,0.119132,0.226673,0.0432886,0.645471,0.744595,0.560735,0.444575,0.885084,0.667802,0.42914,0.112465,0.693605,0.419952,0.052683,0.962431,0.792219,0.940579,0.974441,0.8761,0.315372,0.139028,0.365029,0.737215,0.84059,0.996583,0.0446305,0.516025,0.400157,0.0929836,0.774796,0.0857306,0.0914187,0.452809,0.0499276,0.434519,0.608887,0.916499,0.931693,0.546432,0.581725,0.984813,0.760951,0.385079,0.482383,0.124433,0.0527817,0.36031,0.774755,0.981926,0.251872,0.266223,0.611852,0.706088,0.855387,0.600882,0.265432,0.238394,0.0107173,0.777459,0.4652,0.630273,0.985615,0.86703,0.339765,0.663693,0.848878,0.0319631,0.266196,0.214267,0.564253,0.184512,0.751356,0.512947,0.0886994,0.540125,0.153802,0.253766,0.578537,0.265988,0.00353307,0.393514,0.0562754,0.608825,0.877226,0.314755,0.464727,0.856649,0.535242,0.480761,0.232431,0.0650223,0.326267,0.896795,0.444838,0.585123,0.649886,0.835467,0.48002,0.064747,0.717756,0.855521,0.657712,0.466884,0.838946,0.00321287,0.249448,0.868375,0.952636,0.79157,0.545661,0.799402,0.934249,0.772426,0.00639945,0.684256,0.805254,0.84276,0.440998,0.785063,0.367448,0.0366036,0.875175,0.238923,0.568066,0.103062,0.0621686,0.908446,0.22517,0.24242,0.719736,0.337176,0.664461,0.666461,0.24249,0.059252,0.793729,0.327401,0.567583,0.383891,0.127021,0.609361,0.670406,0.739644,0.65095,0.027869,0.157726,0.941937,0.520302,0.918726,0.166363,0.139087,0.957175,0.873256,0.307952,0.228478,0.201554,0.853312,0.441566,0.184019,0.713247,0.857205,0.390578,0.127757,0.137563,0.974059,0.279402,0.47748,0.30245,0.237494,0.703214,0.558605,0.359972,0.870936,0.176699,0.395757,0.559175,0.335515,0.124036,0.0846978,0.524716,0.995245,0.911631,0.360772,0.380886,0.0855755,0.201939,0.75474,0.0930602,0.520255,0.569687,0.880364,0.501683,0.347022,0.51246,0.0561419,0.964011,0.780361,0.269515,0.877007,0.27539,0.0931658,0.324182,0.52769,0.314994,0.730983,0.360251,0.594144,0.387875,0.0132416,0.707646,0.773771,0.156124,0.030371,0.0336044,0.402671,0.203316,0.897893,0.923285,0.450248,0.883806,0.710446,0.679443,0.672169,0.48524,0.699669,0.446299,0.880687,0.789298,0.847322,0.205798,0.608453,0.474887,0.327126,0.844668,0.973692,0.0116956,0.171896,0.756768,0.125763,0.36081,0.293851,0.206473,0.295783,0.236818,0.842994,0.218841,0.293783,0.449711,0.199173,0.966609,0.506371,0.84597,0.966798,0.706898,0.900544,0.570041,0.910464,0.594147,0.523959,0.0574084,0.213243,0.352998,0.24233,0.000700235,0.86761,0.522727,0.406035,0.261458,0.543108,0.285996,0.350905,0.741222,0.398883,0.274252,0.534541,0.203384,0.235123,0.529882,0.917563,0.595848,0.273386,0.7322,0.420978,0.0723372,0.959031,0.232206,0.562892,0.163594,0.830288,0.930854,0.243533,0.194296,0.724685,0.0615714,0.112806,0.369381,0.55392,0.762312,0.651833,0.361582,0.451857,0.637042,0.447248,0.460223,0.970112,0.725347,0.870413,0.61524,0.876867,0.881373,0.297193,0.683157,0.757386,0.33304,0.650732,0.326143,0.977621,0.992933,0.239633,0.673276,0.542873,0.526903,0.468264,0.483789,0.0692639,0.944077,0.899469,0.75184,0.235038,0.173687,0.731713,0.0225183,0.614937,0.163727,0.56381,0.478184,0.463531,0.34799,0.886581,0.484108,0.354251,0.671612,0.188912,0.511757,0.986658,0.705979,0.752878,0.169978,0.980303,0.403362,0.0235428,0.983912,0.513085,0.958651,0.039898,0.785911,0.336032,0.391808,0.49073,0.94196,0.535227,0.528354,0.900172,0.56027,0.658674,0.643833,0.337694,0.845375,0.133494,0.908845,0.830279,0.0275223,0.503845,0.266695,0.709758,0.820027,0.598088,0.171052,0.989263,0.652999,0.207846,0.990228,0.323423,0.06587,0.3739,0.66264,0.565807,0.123304,0.496548,0.0200062,0.681044,0.158868,0.217354,0.197014,0.715542,0.714183,0.945327,0.838618,0.472761,0.822511,0.197213,0.888719,0.709592,0.759832,0.537473,0.672186,0.829933,0.694957,0.110125,0.629744,0.0228449,0.0601224,0.49921,0.262187,0.606082,0.539529,0.650876,0.0880548,0.762518,0.257591,0.641901,0.678569,0.0506703,0.22373,0.773213,0.452167,0.200029,0.207686,0.242557,0.449131,0.730457,0.846844,0.962506,0.351258,0.744392,0.511923,0.701406,0.550732,0.871715,0.372403,0.335716,0.996457,0.268477,0.0681257,0.00620937,0.115457,0.638352,0.750197,0.697169,0.675105,0.0325065,0.90516,0.175604,0.114996,0.729444,0.302229,0.124423,0.284623,0.170666,0.6276,0.537259,0.43294,0.910637,0.336996,0.48885,0.847371,0.986465,0.684044,0.316911,0.680655,0.593751,0.488008,0.747854,0.167238,0.897453,0.0397487,0.119256,0.827858,0.389072,0.608318,0.617399,0.346366,0.240925,0.0283637,0.403626,0.516762,0.0684027,0.695818,0.959886,0.186447,0.810095,0.174679,0.429559,0.629529,0.791397,0.241288,0.970725,0.62926,0.86362,0.31881,0.798253,0.960275,0.473045,0.446814,0.961307,0.55833,0.856638,0.926473,0.400406,0.92636,0.156987,0.613444,0.129639,0.271885,0.869319,0.31411,0.578274,0.709468,0.730801,0.900858,0.855333,0.497832,0.0343605,0.281566,0.637563,0.821376,0.752749,0.515448,0.400371,0.414113,0.408389,0.84465,0.970039,0.0536683,0.948326,0.766265,0.154827,0.935213,0.005795,0.298865,0.331066,0.330476,0.558752,0.0534012,0.507856,0.76794,0.242736,0.407237,0.945638,0.717643,0.562435,0.578746,0.765719,0.531803,0.317695,0.293538,0.125415,0.197199,0.452908,0.242095,0.80265,0.44093,0.212774,0.678432,0.509922,0.815873,0.435167,0.098424,0.18774,0.614092,0.850907,0.638017,0.479223,0.544746,0.811232,0.213916,0.80483,0.150817,0.433572,0.424637,0.989419,0.993081,0.77963,0.162437,0.907106,0.692886,0.518453,0.702654,0.376548,0.540721,0.520063,0.289952,0.32858,0.0763836,0.526165,0.226965,0.558292,0.64971,0.406834,0.305018,0.12093,0.601393,0.243714,0.136825,0.212352,0.887751,0.193908,0.823136,0.428865,0.209724,0.597899,0.920725,0.355738,0.757156,0.119044,0.948838,0.0173811,0.312945,0.0677831,0.0738595,0.401472,0.208087,0.209554,0.427183,0.0842827,0.296826,0.667678,0.270536,0.365531,0.911344,0.87195,0.553774,0.31054,0.202149,0.265444,0.846011,0.188108,0.955068,0.522725,0.791042,0.723845,0.882914,0.130508,0.807033,0.659045,0.269346,0.943639,0.515356,0.842168,0.166717,0.989349,0.140874,0.375678,0.566861,0.846867,0.391389,0.92907,0.00781316,0.443926,0.950556,0.772465,0.673868,0.97966,0.435845,0.733336,0.808151,0.867866,0.498465,0.376063,0.179673,0.9334,0.438294,0.0171461,0.643822,0.549552,0.577166,0.370445,0.44603,0.0830888,0.254674,0.869573,0.569531,0.0850706,0.79872,0.482947,0.974865,0.847201,0.667326,0.817947,0.980551,0.700383,0.651115,0.827395,0.675412,0.0234001,0.383297,0.0473331,0.401692,0.0425303,0.690481,0.339099,0.685199,0.958989,0.740481,0.153769,0.811861,0.258437,0.883691,0.0143986,0.79436,0.85064,0.0364692,0.786046,0.640423,0.845717,0.896465,0.751711,0.423422,0.696654,0.299641,0.986015,0.57016,0.429347,0.0760937,0.993641,0.594286,0.134736,0.503832,0.38605,0.742477,0.491736,0.848048,0.0080592,0.514771,0.425921,0.555902,0.261824,0.914138,0.360913,0.430577,0.876792,0.349169,0.308973,0.693047,0.280606,0.185019,0.764423,0.955553,0.659038,0.860089,0.635284,0.722857,0.738183,0.320678,0.382596,0.00504309,0.849164,0.448668,0.723383,0.965896,0.463465,0.472302,0.472855,0.066016,0.299969,0.0840032,0.120107,0.267255,0.605476,0.386646,0.259461,0.612086,0.172231,0.617808,0.357008,0.713339,0.0330366,0.302503,0.566818,0.21156,0.653279,0.392456,0.30969,0.877079,0.406632,0.516726,0.362844,0.777208,0.188946,0.652167,0.912154,0.816609,0.530321,0.668385,0.287871,0.607283,0.575146,0.793513,0.98834,0.533813,0.0111265,0.945006,0.881488,0.653546,0.325575,0.674855,0.558404,0.085242,0.280315,0.0754973,0.880568,0.776432,0.989435,0.562928,0.565625,0.194775,0.0904102,0.763881,0.305218,0.794908,0.547146,0.691371,0.168838,0.317487,0.777745,0.835078,0.0856351,0.119354,0.676449,0.209352,0.919071,0.285969,0.113026,0.494077,0.949121,0.302449,0.769651,0.00353974,0.601976,0.598032,0.524596,0.443587,0.596915,0.911519,0.954519,0.148526,0.655692,0.587741,0.85272,0.090894,0.409821,0.134774,0.340644,0.861439,0.949105,0.726583,0.438471,0.831338,0.695221,0.593944,0.454308,0.663719,0.148197,0.688499,0.8679,0.864736,0.0149335,0.180714,0.945455,0.350117,0.473918,0.258686,0.568448,0.371019,0.0445699,0.684608,0.488391,0.0422965,0.819664,0.430458,0.859543,0.896582,0.708642,0.909297,0.448553,0.86745,0.437393,0.387028,0.237978,0.211997,0.391994,0.691008,0.761686,0.303521,0.0762038,0.423984,0.679047,0.403864,0.185455,0.699789,0.0503621,0.574246,0.66564,0.47959,0.217065,0.659068,|0.212794,0.618741,0.183205,0.0161425,0.596018,0.791219,0.711687,0.911616,0.0920509,0.652756,0.562101,0.165283,0.00435871,0.351026,0.63688,0.636482,0.300603,0.809985,0.272745,0.812316,0.434832,0.383281,0.167694,0.452365,0.700141,0.492197,0.286809,0.678539,0.806308,0.0572618,0.59612,0.890887,0.0486846,0.819441,0.142217,0.557202,0.0388678,0.226001,0.591611,0.265988,0.694992,0.681119,0.853805,0.094335,0.0385444,0.964575,0.684613,0.00937748,0.191991,0.315957,0.266092,0.547423,0.918699,0.508461,0.839947,0.38173,0.266724,0.649998,0.0445588,0.733125,0.536554,0.85505,0.812997,0.512667,0.864894,0.446826,0.0519642,0.763015,0.866566,0.626824,0.268938,0.630876,0.119193,0.881952,0.907802,0.0877367,0.54523,0.726155,0.497751,0.285881,0.245712,0.428051,0.862369,0.507432,0.641504,0.985075,0.490971,0.166675,0.318242,0.816073,0.165017,0.749794,0.974634,0.35641,0.555686,0.866339,0.159657,0.799733,0.860781,0.17708,0.284165,0.323243,0.753416,0.842505,0.292885,0.858447,0.0240957,0.113669,0.979138,0.18255,0.364622,0.743642,0.829175,0.109447,0.18463,0.280152,0.735149,0.405242,0.656465,0.108722,0.867777,0.308775,0.950907,0.124307,0.202383,0.439233,0.719248,0.80301,0.231856,0.901862,0.24368,0.906008,0.54657,0.929572,0.748962,0.0666168,0.642923,0.924508,0.252017,0.0136511,0.403864,0.084039,0.249015,0.273148,0.689817,0.490256,0.299449,0.557151,0.255101,0.441325,0.859316,0.943721,0.716952,0.720666,0.749296,0.162671,0.0233825,0.0312957,0.0222735,0.920294,0.0936832,0.286975,0.424039,0.552394,0.029428,0.694093,0.74937,0.0310016,0.0173802,0.165887,0.938875,0.686415,0.710085,0.962117,0.0834875,0.558108,0.675583,0.821594,0.208959,0.385314,0.0160107,0.377457,0.532278,0.450918,0.39309,0.450726,0.433372,0.720141,0.227887,0.5343,0.797906,0.127503,0.884098,0.735456,0.939445,0.468,0.620174,0.108616,0.433332,0.852089,0.537578,0.0447364,0.553777,0.999304,0.600171,0.796841,0.282825,0.725935,0.477019,0.181866,0.192646,0.185345,0.756311,0.136383,0.720207,0.846964,0.714641,0.82289,0.721515,0.159256,0.183237,0.449997,0.464053,0.296693,0.250442,0.43691,0.531684,0.142433,0.60048,0.435095,0.337425,0.800907,0.19467,0.200599,0.110919,0.306205,0.276664,0.589157,0.587096,0.178469,0.840479,0.743753,0.301403,0.084889,0.287771,0.535191,0.225842,0.379843,0.217824,0.419344,0.904539,0.625934,0.427888,0.231469,0.85388,0.635295,0.856976,0.464628,0.213841,0.277009,0.49245,0.183644,0.58702,0.692418,0.129348,0.720227,0.227741,0.820975,0.490563,0.925173,0.320126,0.366065,0.199185,0.995744,0.426501,0.6349,0.84935,0.507643,0.172927,0.199374,0.120827,0.50828,0.819173,0.926148,0.376309,0.187535,0.173929,0.936774,0.117707,0.0541043,0.104276,0.118802,0.0476902,0.705378,0.969949,0.532475,0.507703,0.278972,0.0135928,0.312049,0.901247,0.428344,0.836465,0.993481,0.157179,0.167288,0.0523474,0.990699,0.634829,0.702623,0.284892,0.656565,0.549219,0.990335,0.58595,0.291025,0.902526,0.25336,0.142075,0.79931,0.924134,0.917215,0.945588,0.542408,0.861693,0.774132,0.3502,0.0694908,0.0434321,0.750912,0.886518,0.959767,0.170612,0.132529,0.53741,0.436778,0.0880712,0.801032,0.215989,0.455361,0.557639,0.848305,0.829975,0.651034,0.955525,0.579632,0.983329,0.565295,0.195745,0.452683,0.0797015,0.191741,0.204244,0.594325,0.759459,0.956764,0.570294,0.762182,0.122986,0.0226229,0.0826184,0.859734,0.578774,0.95298,0.784057,0.539991,0.275575,0.0592881,0.760491,0.691837,0.974684,0.0698911,0.0249392,0.709519,0.348153,0.834551,0.672875,0.55259,0.637975,0.781926,0.191796,0.545822,0.189667,0.453807,0.614129,0.777389,0.95797,0.600736,0.412684,0.862332,0.691182,0.457169,0.279859,0.444297,0.210581,0.166367,0.150273,0.62577,0.823745,0.181141,0.556887,0.164278,0.55198,0.257568,0.778951,0.198012,0.922097,0.779983,0.0989363,0.132694,0.833706,0.529023,0.978723,0.825072,0.852552,0.572856,0.956146,0.333204,0.55959,0.511811,0.326391,0.316736,0.68618,0.611949,0.929669,0.38893,0.187959,0.443328,0.896527,0.846219,0.0895205,0.436552,0.429824,0.896531,0.997963,0.811772,0.201745,0.820732,0.0710602,0.711545,0.0168797,0.261553,0.675272,0.881335,0.490041,0.815165,0.47984,0.751681,0.508394,0.750076,0.29921,0.213863,0.527998,0.0271626,0.381644,0.617391,0.5754,0.881844,0.240247,0.829868,0.103719,0.965254,0.822221,0.47531,0.696662,0.092691,0.0991634,0.00756627,0.991339,0.09016,0.374159,0.496276,0.614006,0.408239,0.22171,0.840809,0.367808,0.0859183,0.0295725,0.536282,0.538133,0.966639,0.931321,0.683805,0.824821,0.384245,0.91058,0.789869,0.51764,0.189946,0.652047,0.149145,0.6603,0.403331,0.0485997,0.886556,0.215237,0.887187,0.58991,0.729694,0.576881,0.177092,0.0989142,0.566365,0.210084,0.319188,0.91206,0.88961,0.538861,0.0759348,0.49787,0.688095,0.706405,0.848261,0.59457,0.65179,0.649213,0.484673,0.544358,0.778335,0.141316,0.9248,0.650018,0.702531,0.819701,0.390666,0.686764,0.705886,0.547454,0.0532669,0.0264013,0.658618,0.271975,0.133798,0.282131,0.453167,0.0161591,0.43838,0.89104,0.573344,0.094636,0.964499,0.831852,0.589911,0.0901387,0.900655,0.866688,0.870143,0.754525,0.00277573,0.411588,0.887457,0.149482,0.425937,0.180126,0.953066,0.244376,0.538985,0.804463,0.893774,0.314272,0.545852,0.209905,0.0832824,0.611842,0.791862,0.366108,0.203772,0.782187,0.142527,0.882479,0.780398,0.24194,0.777523,0.298801,0.152015,0.340239,0.675711,0.918047,0.53121,0.213822,0.275508,0.995705,0.570355,0.229259,0.265287,0.283098,0.532682,0.554223,0.28544,0.54085,0.516926,0.260629,0.0244641,0.0661324,0.770237,0.928874,0.847911,0.577912,0.85414,0.214428,0.824498,0.92781,0.473251,0.450315,0.377283,0.147848,0.130263,0.640639,0.278279,0.365569,0.28919,0.870957,0.903782,0.331343,0.584122,0.375822,0.877418,0.254116,0.249758,0.682771,0.297534,0.346385,0.846535,0.335275,0.855743,0.444924,0.336519,0.917348,0.615781,0.146702,0.870081,0.651852,0.519143,0.280055,0.441222,0.372441,0.928467,0.589736,0.459216,0.807595,0.771057,0.627248,0.20382,0.732732,0.607588,0.714481,0.894497,0.366971,0.45446,0.929603,0.962617,0.774841,0.0943471,0.265206,0.623723,0.653357,0.671775,0.512184,0.939435,0.519978,0.652616,0.67584,0.682178,0.479241,0.197779,0.711684,0.422017,0.611667,0.511917,0.487645,0.93926,0.795023,0.620644,0.00278425,0.706017,0.346292,0.655653,0.230896,0.581882,0.46345,0.120005,0.491786,0.501824,0.708126,0.631787,0.107149,0.701587,0.528134,0.437995,0.883605,0.716659,0.99479,0.722385,0.576995,0.74916,0.945852,0.395646,0.971642,0.651629,0.672615,0.628178,0.791759,0.804091,0.394562,0.983487,0.868544,0.954264,0.805108,0.0539435,0.464996,0.553612,0.903668,0.484078,0.29902,0.260711,0.670258,0.861573,0.0345291,0.497041,0.735791,0.228766,0.53201,0.181001,0.653978,0.650652,0.426797,0.604478,0.973174,0.490485,0.0426451,0.547222,0.599868,0.0487061,0.663842,0.857064,0.712948,0.238276,0.0840933,0.286832,0.479515,0.285352,0.671706,0.0490685,0.0164137,0.00814897,0.306863,0.333412,0.57222,0.449684,0.959411,0.457415,0.726748,0.258117,0.983108,0.17306,0.986862,0.329664,0.585509,0.248093,0.743096,0.874867,0.052855,0.578748,0.839541,0.357497,0.403132,0.725419,0.482719,0.346169,0.213818,0.503639,0.486121,0.787925,0.0620438,0.0253078,0.397261,0.551745,0.918451,0.780122,0.81948,0.0599477,0.321146,0.724864,0.154622,0.0200781,0.0304096,0.897282,0.320027,0.302065,0.136071,0.779974,0.497333,0.803136,0.0261679,0.1996,0.586952,0.230477,0.0168829,0.0274729,0.00669509,0.564854,0.367126,0.50671,0.253246,0.58024,0.480657,0.17639,0.40432,0.756635,0.761043,0.92981,0.467885,0.430576,0.845227,0.492403,0.884376,0.972035,0.41806,0.895036,0.47052,0.00562102,0.943127,0.0315812,0.184933,0.764669,0.901394,0.569376,0.538357,0.900193,0.237168,0.955794,0.349403,0.210135,0.671522,0.531922,0.278739,0.166263,0.653142,0.976416,0.126005,0.814007,0.379314,0.0397251,0.962323,0.49709,0.0414106,0.369675,0.202663,0.564569,0.593857,0.979677,0.159172,0.288312,0.703095,0.431403,0.398515,0.773768,0.79764,0.553618,0.483738,0.865981,0.0276398,0.159412,0.161857,0.646188,0.868219,0.636055,0.240188,0.596067,0.791191,0.502685,0.849221,0.0762639,0.136073,0.988265,0.00102431,0.908101,0.995968,0.945779,0.540503,0.922248,0.574728,0.516896,0.323937,0.951546,0.315547,0.462438,0.495714,0.997413,0.857775,0.88717,0.257556,0.860748,0.675448,0.977135,0.739361,0.641427,0.400816,0.478819,0.599571,0.15535,0.173267,0.116965,0.310918,0.821475,0.667237,0.770769,0.855896,0.575608,0.752347,0.379371,0.771075,0.655446,0.00371534,0.352103,0.143769,0.365369,0.793691,0.509021,0.00457388,0.610369,0.793543,0.703065,0.205824,0.145741,0.982186,0.607614,0.467309,0.930083,0.0434813,0.108045,0.971891,0.960817,0.879801,0.580695,0.647912,0.267823,0.242725,0.714604,0.708273,0.361642,0.433013,0.947957,0.582146,0.348318,0.525191,0.909878,0.83857,0.310879,0.318202,0.811272,0.951434,0.648947,0.107502,0.829764,0.097749,0.164178,0.0433565,0.168378,0.9519,0.213894,0.308629,0.403621,0.55178,0.713912,0.987825,0.697017,0.0425449,0.4575,0.0444666,0.414988,0.652768,0.0143796,0.549562,0.414018,0.00104642,0.846984,0.928644,0.264229,0.685479,0.190867,0.429902,0.731176,0.0824306,0.0938274,0.713587,0.448545,0.723563,0.82938,0.680322,0.715193,0.239315,0.27636,0.476905,0.573246,0.383271,0.0724587,0.142139,0.130114,|0.51577,0.823851,0.0438898,0.112028,0.0860729,0.848403,0.0154791,0.141094,0.71442,0.0197958,0.996832,0.447658,0.150105,0.840255,0.887278,0.653246,0.448131,0.860017,0.841283,0.15746,0.00629842,0.777917,0.647542,0.854158,0.616031,0.842239,0.963992,0.517967,0.421998,0.704331,0.434191,0.00124419,0.591392,0.263193,0.218949,0.381449,0.774822,0.546856,0.12158,0.230905,0.407128,0.584738,0.134806,0.101935,0.993501,0.723638,0.864126,0.438992,0.0279964,0.527602,0.652891,0.647094,0.0366054,0.713081,0.107486,0.664348,0.316331,0.544931,0.209659,0.57584,0.278862,0.304693,0.989912,0.641127,0.560214,0.916947,0.909151,0.734065,0.248817,0.927612,0.588339,0.285051,0.0309305,0.0321141,0.611717,0.789857,0.720535,0.766535,0.384324,0.228306,0.989655,0.750239,0.800502,0.063499,0.474681,0.250584,0.77472,0.106207,0.885307,0.0317255,0.895479,0.0458562,0.330785,0.121038,0.361977,0.232871,0.260416,0.908782,0.624648,0.684516,0.50262,0.0220503,0.580793,0.138744,0.589148,0.0281143,0.197862,0.625638,0.455741,0.780909,0.878284,0.635476,0.589614,0.131397,0.18514,0.360838,0.859519,0.96566,0.829441,0.0971788,0.5079,0.791081,0.711272,0.491355,0.293464,0.807549,0.72244,0.934268,0.812065,0.173378,0.505533,0.509177,0.232621,0.355628,0.559052,0.89534,0.709532,0.851797,0.688554,0.103882,0.989709,0.0586655,0.475142,0.179363,0.160259,0.612671,0.302366,0.107287,0.727753,0.6539,0.631955,0.02499,0.983455,0.203249,0.814225,0.893887,0.263778,0.548006,0.336244,0.569651,0.194533,0.782675,0.624868,0.0522608,0.30784,0.0235344,0.070574,0.255462,0.043444,0.641679,0.215271,0.795277,0.521606,0.0277449,0.174203,0.95546,0.678648,0.281705,0.630835,0.881142,0.788005,0.529104,0.274042,0.894827,0.522686,0.837982,0.0730736,0.552684,0.890083,0.485246,0.63823,0.164549,0.696987,0.582023,0.171288,0.544913,0.0122317,0.19848,0.667749,0.946113,0.811744,0.840551,0.247884,0.655943,0.416225,0.640642,0.0911489,0.703494,0.848752,0.438755,0.407451,0.329049,0.0478594,0.955497,0.781654,0.48666,0.777318,0.103821,0.340181,0.0666523,0.98335,0.149805,0.00297529,0.524376,0.991244,0.841884,0.517026,0.542349,0.93788,0.419609,0.764104,0.16326,0.809676,0.498131,0.130362,0.399016,0.294471,0.517107,0.390535,0.53528,0.952017,0.331123,0.141107,0.482545,0.196981,0.164356,0.701282,0.250273,0.662842,0.0861352,0.169701,0.393361,0.169614,0.553231,0.769481,0.479426,0.0612872,0.447572,0.368589,0.929293,0.39494,0.50246,0.99237,0.543258,0.587987,0.0202951,0.194414,0.28235,0.741569,0.142684,0.299896,0.740449,0.853023,0.0719235,0.310902,0.672216,0.120452,0.343649,0.715256,0.567961,0.103311,0.871072,0.275207,0.533556,0.13234,0.731489,0.830848,0.999328,0.481457,0.907575,0.21352,0.177521,0.792216,0.707082,0.504781,0.916031,0.93614,0.470147,0.70841,0.596433,0.276865,0.738105,0.428203,0.300543,0.883831,0.822498,0.335616,0.559264,0.151386,0.110766,0.414683,0.748718,0.401608,0.0244465,0.922346,0.289179,0.418043,0.652681,0.357627,0.0787687,0.131468,0.93588,0.218834,0.132577,0.0557983,0.136603,0.0892795,0.219441,0.604211,0.204686,0.489644,0.816011,0.604432,0.50497,0.560584,0.41403,0.503735,0.199813,0.374259,0.3943,0.891508,0.945209,0.943076,0.581016,0.503054,0.550399,0.424406,0.551895,0.0122039,0.188265,0.606565,0.387749,0.363131,0.266783,0.279154,0.902427,0.695314,0.498025,0.148755,0.293574,0.23347,0.715191,0.0914243,0.861751,0.00826281,0.996023,0.456078,0.185708,0.585693,0.961328,0.0280835,0.109275,0.111594,0.242395,0.267766,0.0121493,0.973553,0.0143822,0.271665,0.525573,0.1331,0.795259,0.308607,0.735614,0.628628,0.786344,0.838341,0.401797,0.6934,0.283631,0.604044,0.71675,0.0480554,0.508547,0.465145,0.264233,0.0224671,0.0901349,0.543864,0.4199,0.379451,0.707468,0.265511,0.294127,0.247052,0.276749,0.469326,0.264079,0.726263,0.368372,0.29135,0.503886,0.232221,0.120917,0.259783,0.233349,0.249147,0.921582,0.166591,0.455605,0.245908,0.873493,0.623184,0.504616,0.986771,0.146841,0.588299,0.606049,0.551238,0.707861,0.637625,0.617643,0.0473161,0.859548,0.996099,0.0599869,0.12246,0.311086,0.979053,0.479808,0.12856,0.354488,0.369695,0.555919,0.535002,0.323181,0.0449103,0.111397,0.584493,0.938559,0.39014,0.0660464,0.253806,0.704183,0.231205,0.292176,0.362329,0.165429,0.47181,0.173643,0.0826017,0.925913,0.958388,0.692856,0.810043,0.22307,0.215737,0.833013,0.349536,0.573956,0.00326526,0.727264,0.705546,0.877371,0.583006,0.0578712,0.910897,0.447209,0.704473,0.418114,0.260895,0.349782,0.0769345,0.674878,0.273248,0.585724,0.295124,0.957816,0.729525,0.21061,0.299115,0.589995,0.0685351,0.489161,0.260966,0.823516,0.770665,0.800704,0.0846137,0.438504,0.156904,0.225257,0.576913,0.294286,0.785732,0.202118,0.669364,0.110004,0.7709,0.369421,0.0353765,0.0283759,0.636707,0.650247,0.530466,0.143085,0.288493,0.683817,0.771996,0.995677,0.104925,0.497055,0.302814,0.743125,0.231395,0.604284,0.0682065,0.608896,0.526498,0.714154,0.874714,0.817863,0.702829,0.946284,0.593979,0.649812,0.123122,0.13029,0.0655902,0.178449,0.694411,0.700906,0.330126,0.683124,0.0298473,0.681457,0.563435,0.00295085,0.0514723,0.422604,0.508258,0.616182,0.618378,0.162129,0.191696,0.52744,0.123799,0.198041,0.567576,0.0394205,0.955986,0.0950252,0.103269,0.683696,0.557979,0.68511,0.679675,0.546192,0.715531,0.409967,0.323056,0.707909,0.53806,0.139451,0.889394,0.012767,0.984006,0.128376,0.204387,0.96868,0.496137,0.479099,0.99715,0.429965,0.46961,0.746325,0.475293,0.0917586,0.450381,0.762981,0.6033,0.610463,0.626073,0.637227,0.149287,0.262329,0.543149,0.888807,0.870601,0.492206,0.191385,0.180123,0.535776,0.559106,0.122379,0.796729,0.318205,0.604896,0.122964,0.34201,0.0906528,0.124933,0.748756,0.705513,0.288703,0.875277,0.165889,0.523076,0.544537,0.237264,0.634266,0.569362,0.472919,0.876401,0.0325868,0.350394,0.894637,0.201924,0.262074,0.920078,0.204817,0.0639369,0.651293,0.342333,0.320211,0.832816,0.452936,0.85353,0.276423,0.298511,0.703924,0.849725,0.768246,0.923273,0.13436,0.490549,0.703005,0.42866,0.368526,0.185265,0.263631,0.0991247,0.896053,0.412163,0.942334,0.39906,0.0761433,0.725089,0.0341572,0.505938,0.736232,0.270312,0.763223,0.346099,0.689942,0.350758,0.838336,0.303858,0.85714,0.276837,0.822038,0.0924346,0.749478,0.746393,0.393839,0.341742,0.583454,0.522426,0.29314,0.88813,0.731538,0.298885,0.0844378,0.700537,0.878574,0.454622,0.193735,0.982154,0.350765,0.268262,0.391927,0.18568,0.0755822,0.720449,0.588332,0.411697,0.919906,0.520203,0.18454,0.476363,0.274343,0.209855,0.215382,0.370329,0.734731,0.475485,0.266223,0.678946,0.573907,0.0109338,0.90497,0.893967,0.336158,0.75088,0.325076,0.757784,0.352763,0.745373,0.191131,0.278501,0.163745,0.739013,0.432001,0.212033,0.0129604,0.130982,0.887383,0.404437,0.240517,0.988135,0.220722,0.929332,0.288732,0.240976,0.927358,0.251921,0.800212,0.552079,0.755521,0.404843,0.463467,0.759295,0.879015,0.57376,0.22165,0.668403,0.597182,0.720067,0.993794,0.294459,0.032774,0.820813,0.500847,0.0990226,0.172427,0.710267,0.158449,0.138425,0.15301,0.655153,0.342191,0.233532,0.648374,0.395334,0.0511766,0.068298,0.344309,0.25537,0.629177,0.515399,0.616491,0.621312,0.0835619,0.639293,0.81666,0.455402,0.571577,0.735045,0.0683612,0.0842342,0.805552,0.328736,0.043768,0.802195,0.833497,0.726605,0.617872,0.631428,0.721344,0.107138,0.0718442,0.646674,0.850384,0.560567,0.287025,0.222373,0.245806,0.303475,0.526531,0.644659,0.633013,0.768346,0.834087,0.0634666,0.462398,0.663611,0.958414,0.540651,0.184822,0.37556,0.677037,0.555349,0.263412,0.0494244,0.929189,0.606453,0.354763,0.787485,0.485495,0.838335,0.735355,0.0824626,0.985293,0.562567,0.675773,0.954352,0.710326,0.250014,0.429594,0.577366,0.788902,0.528696,0.202999,0.135254,0.734789,0.852129,0.501566,0.723109,0.625821,0.935592,0.657418,0.115904,0.913249,0.138675,0.558017,0.641601,0.938413,0.670787,0.619495,0.248551,0.738298,0.0105609,0.341079,0.764964,0.462873,0.744203,0.571736,0.0811973,0.480845,0.192242,0.939102,0.105555,0.660355,0.602952,0.670014,0.694816,0.918834,0.768374,0.359661,0.134515,0.93807,0.0393691,0.934678,0.747158,0.936565,0.403352,0.854125,0.861876,0.562855,0.600258,0.804711,0.0968189,0.410235,0.353145,0.781545,0.532153,0.925918,0.71102,0.238136,0.0972078,0.944389,0.361349,0.243832,0.316004,0.587836,0.564672,0.38204,0.538579,0.538703,0.184661,0.750514,0.44101,0.111608,0.644918,0.517256,0.433388,0.878302,0.328144,0.894742,0.86221,0.188565,0.803095,0.0260145,0.970967,0.830997,0.661146,0.987522,0.67921,0.920718,0.40813,0.62124,0.219678,0.250695,0.710044,0.0184473,0.483837,0.223064,0.0423208,0.0678533,0.869134,0.0228295,0.121243,0.651633,0.297349,0.386507,0.633906,0.21248,0.207945,0.334636,0.752436,0.262176,0.295626,0.786078,0.477576,0.995844,0.397944,0.797684,0.842623,0.302987,0.156761,0.14798,0.0534202,0.725951,0.0619583,0.991733,0.514153,0.531666,0.491111,0.858752,0.569263,0.705774,0.350037,0.741626,0.0974476,0.987027,0.201104,0.708223,0.831418,0.84265,0.357881,0.514207,0.919075,0.405019,0.0585138,0.0928026,0.272093,0.591499,0.656967,0.851197,0.127675,0.365367,0.926508,0.167153,0.335578,0.617209,0.222183,0.56928,0.21475,0.73879,0.733148,0.674486,0.983873,0.824793,0.64707,0.350581,0.604754,0.247019,0.971807,0.738904,0.73781,|0.806304,0.544691,0.786788,0.0359488,0.73718,0.0672498,0.90771,0.744445,0.799881,0.177917,0.858881,0.81968,0.346626,0.0386679,0.496882,0.623026,0.689528,0.655473,0.108849,0.635567,0.68746,0.559928,0.632032,0.600666,0.697821,0.100438,0.143598,0.446646,0.578479,0.326574,0.299735,0.91367,0.121001,0.686284,0.673357,0.197557,0.992694,0.879991,0.702356,0.520943,0.8676,0.967964,0.245718,0.172612,0.153421,0.220957,0.00995517,0.379634,0.530462,0.270731,0.853081,0.142771,0.177402,0.126326,0.00739044,0.491449,0.418104,0.931404,0.527756,0.271247,0.689207,0.864874,0.994045,0.435271,0.21094,0.416418,0.386516,0.323693,0.899406,0.897473,0.297214,0.511632,0.0614517,0.413636,0.598015,0.496785,0.941507,0.939021,0.24144,0.0358731,0.15116,0.426951,0.222934,0.0281916,0.679756,0.369209,0.678346,0.580782,0.737058,0.797886,0.503507,0.367307,0.740593,0.755774,0.866997,0.939884,0.57754,0.599486,0.33332,0.581942,0.518383,0.199396,0.303341,0.686564,0.573295,0.130084,0.486126,0.825476,0.0964063,0.11151,0.382772,0.242469,0.989701,0.0779677,0.924741,0.978498,0.926027,0.590267,0.899172,0.785686,0.211341,0.341024,0.325724,0.10344,0.224692,0.633005,0.895725,0.928155,0.642672,0.721563,0.746986,0.734153,0.834952,0.0800991,0.933186,0.966867,0.181161,0.313384,0.595948,0.324439,0.516263,0.307495,0.630469,0.611176,0.0952125,0.777027,0.628741,0.609779,0.723972,0.916626,0.861558,0.0752123,0.936943,0.00194246,0.332021,0.216977,0.572086,0.101016,0.0274116,0.89062,0.339693,0.859317,0.615928,0.922466,0.638556,0.323848,0.364208,0.692069,0.681991,0.733979,0.990235,0.531019,0.0827237,0.387705,0.702012,0.79416,0.119943,0.882919,0.295074,0.882468,0.609665,0.80245,0.512298,0.959942,0.00667185,0.766604,0.727998,0.808512,0.124605,0.32332,0.323075,0.792372,0.572156,0.877551,0.177169,0.453626,0.764505,0.549306,0.455578,0.596309,0.199609,0.0784497,0.79528,0.696274,0.730553,0.749297,0.598652,0.959442,0.478871,0.636106,0.121572,0.524092,0.878716,0.174489,0.0541446,0.598274,0.240713,0.321074,0.779773,0.828338,0.604536,0.374704,0.137638,0.415626,0.846646,0.40785,0.968948,0.0919049,0.885966,0.914156,0.726804,0.113883,0.500409,0.23231,0.358047,0.259569,0.495363,0.452923,0.462961,0.095468,0.485329,0.618233,0.0527074,0.477853,0.97811,0.241688,0.26222,0.814511,0.610119,0.848222,0.0245253,0.249089,0.490592,0.0595371,0.468779,0.895639,0.178805,0.59626,0.836678,0.524813,0.939334,0.0539759,0.853593,0.448805,0.115932,0.212111,0.411797,0.506291,0.347963,0.27879,0.219487,0.621135,0.331611,0.207844,0.882644,0.139868,0.430738,0.7258,0.752931,0.910529,0.632858,0.260901,0.325636,0.71934,0.811714,0.0734894,0.139209,0.411901,0.431769,0.321702,0.973832,0.400147,0.49722,0.923506,0.890962,0.137461,0.908299,0.568185,0.0474211,0.911185,0.0984018,0.354848,0.416772,0.518603,0.999903,0.242691,0.13452,0.980679,0.468131,0.772456,0.563153,0.102983,0.23716,0.0427123,0.833291,0.704922,0.17834,0.950306,0.435096,0.545807,0.376416,0.360341,0.714749,0.0699754,0.152895,0.555238,0.214291,0.574097,0.471584,0.0836115,0.517738,0.789896,0.332283,0.635642,0.0643811,0.275148,0.92184,0.72101,0.510587,0.381036,0.00368279,0.0876364,0.888331,0.358082,0.271408,0.874783,0.365885,0.227767,0.814599,0.574054,0.905682,0.591272,0.360173,0.2276,0.266944,0.250015,0.363458,0.111413,0.951925,0.017157,0.0728819,0.93571,0.459633,0.237317,0.466429,0.683132,0.283335,0.461256,0.378812,0.715034,0.785647,0.272572,0.337029,0.462815,0.959061,0.78649,0.678887,0.783273,0.0360771,0.103298,0.795983,0.15694,0.892752,0.351343,0.688127,0.884968,0.189218,0.749287,0.0485249,0.763489,0.78916,0.1032,0.40067,0.412129,0.845321,0.923909,0.131019,0.0425338,0.7514,0.942079,0.448507,0.992525,0.842337,0.97524,0.719614,0.896259,0.883853,0.804722,0.360348,0.200229,0.320695,0.464862,0.949175,0.407707,0.934375,0.883588,0.0653409,0.106517,0.740622,0.0244381,0.625149,0.867841,0.0898257,0.738082,0.761589,0.129561,0.685222,0.73587,0.873527,0.590049,0.693057,0.0587333,0.00485784,0.812687,0.81242,0.828072,0.898346,0.252644,0.753675,0.765519,0.499146,0.388783,0.0187811,0.779941,0.218764,0.680056,0.935121,0.0231783,0.775992,0.422993,0.194427,0.779508,0.00754136,0.0829089,0.321537,0.0191001,0.0554578,0.983789,0.680044,0.181318,0.776734,0.216271,0.182359,0.201708,0.295931,0.331205,0.211101,0.260382,0.348706,0.711667,0.896328,0.216311,0.000468612,0.560706,0.586637,0.823184,0.0828164,0.501561,0.842567,0.805729,0.352533,0.861049,0.389741,0.357752,0.106445,0.39764,0.204278,0.430412,0.433673,0.550968,0.901942,0.634416,0.424605,0.689665,0.234369,0.401063,0.881106,0.0926308,0.955085,0.851433,0.00011009,0.0752766,0.00648057,0.933942,0.0509086,0.394229,0.859226,0.28733,0.802631,0.663871,0.529298,0.523305,0.197919,0.626146,0.921963,0.728246,0.830953,0.539975,0.296105,0.714478,0.743985,0.713153,0.558664,0.92424,0.426692,0.760941,0.960919,0.259523,0.194739,0.0126129,0.622582,0.0745909,0.308236,0.0982002,0.765517,0.224766,0.743576,0.8609,0.262594,0.354242,0.987241,0.791204,0.79738,0.800465,0.466068,0.764328,0.0242106,0.354239,0.204025,0.104411,0.434635,0.043638,0.115272,0.375308,0.25007,0.584047,0.146501,0.794904,0.582876,0.201757,0.371328,0.298571,0.0218732,0.752748,0.374994,0.118291,0.822164,0.469077,0.471407,0.653739,0.607939,0.867098,0.280362,0.376831,0.754794,0.488638,0.824762,0.529484,0.291239,0.0940278,0.940584,0.196857,0.249073,0.145851,0.21849,0.54423,0.643635,0.552918,0.599536,0.139604,0.265478,0.754638,0.152475,0.0868292,0.617438,0.299157,0.1879,0.818348,0.60096,0.319835,0.309269,0.58116,0.277524,0.0326006,0.184137,0.767013,0.569329,0.664112,0.841099,0.230435,0.0623477,0.183275,0.0330356,0.248274,0.919119,0.204601,0.210668,0.1626,0.800494,0.274532,0.23706,0.202323,0.79134,0.638897,0.220709,0.0605417,0.694617,0.559435,0.439038,0.798362,0.189595,0.526297,0.068126,0.690408,0.545838,0.531596,0.0849484,0.265839,0.678319,0.519725,0.955429,0.0389797,0.296103,0.891536,0.133619,0.563424,0.745992,0.941976,0.478938,0.802532,0.537565,0.707076,0.974787,0.16443,0.674538,0.244171,0.412941,0.391123,0.330497,0.0729422,0.413278,0.178291,0.831539,0.273163,0.492817,0.0461089,0.825215,0.969294,0.772802,0.143319,0.0550264,0.486607,0.41419,0.533723,0.522687,0.416479,0.221919,0.367527,0.77201,0.0454149,0.554648,0.895785,0.328802,0.503356,0.437812,0.722889,0.776293,0.0707245,0.536778,0.303252,0.327329,0.577624,0.680255,0.205728,0.56052,0.678753,0.751662,0.572635,0.456355,0.13111,0.935422,0.265925,0.906143,0.434822,0.150356,0.0242379,0.381681,0.275771,0.498402,0.817722,0.911592,0.936558,0.656661,0.161586,0.915363,0.0311318,0.363536,0.282152,0.0282273,0.623614,0.586762,0.383915,0.654669,0.0486168,0.132667,0.794573,0.171297,0.433813,0.468465,0.938115,0.225674,0.677618,0.0428635,0.713618,0.805912,0.470619,0.603778,0.483375,0.74309,0.527585,0.37907,0.892986,0.476874,0.493235,0.604169,0.540934,0.767168,0.712442,0.971616,0.455106,0.374477,0.190274,0.429625,0.869962,0.44601,0.404267,0.654912,0.0465087,0.566022,0.717989,0.426609,0.0721031,0.378986,0.772435,0.203249,0.0863768,0.299004,0.522594,0.418628,0.167468,0.45946,0.864314,0.44043,0.219558,0.253519,0.0475169,0.0167297,0.565416,0.46604,0.704059,0.319591,0.155336,0.462343,0.895479,0.276546,0.744342,0.992814,0.71399,0.586541,0.808179,0.799356,0.437995,0.662421,0.616663,0.946302,0.950003,0.864342,0.0889466,0.240024,0.425323,0.581578,0.615847,0.43062,0.729729,0.686929,0.648648,0.973068,0.0590799,0.627408,0.978693,0.333547,0.00995576,0.0682611,0.986508,0.675351,0.177172,0.922633,0.205804,0.067704,0.691739,0.278517,0.174505,0.438125,0.00899494,0.750685,0.769598,0.941514,0.953889,0.644762,0.809808,0.771146,0.262478,0.681806,0.80145,0.862449,0.566986,0.608374,0.772008,0.827385,0.882438,0.542114,0.247981,0.579396,0.498789,0.202135,0.759263,0.0050205,0.842633,0.1559,0.0801383,0.211785,0.393572,0.272547,0.52818,0.995471,0.378281,0.233488,0.565136,0.225076,0.860645,0.917486,0.0775281,0.268655,0.0940671,0.177297,0.166037,0.223207,0.84487,0.555514,0.993133,0.793202,0.889226,0.963407,0.999478,0.271883,0.204579,0.830357,0.933673,0.751779,0.622054,0.534713,0.912775,0.778476,0.190791,0.188667,0.239516,0.682564,0.370341,0.751714,0.472597,0.17359,0.0652981,0.0204278,0.147604,0.957618,0.74262,0.281983,0.0549805,0.25224,0.988755,0.725375,0.969028,0.692236,0.0636651,0.656761,0.0866075,0.12697,0.769342,0.414182,0.620899,0.703546,0.576122,0.457821,0.720725,0.640726,0.927831,0.744419,0.892569,0.0407183,0.751991,0.404677,0.205342,0.524134,0.103932,0.589164,0.325751,0.930925,0.310969,0.200071,0.685947,0.86642,0.0707099,0.9057,0.674914,0.0539483,0.305521,0.311243,0.0700198,0.464668,0.788043,0.936503,0.126603,0.845477,0.353108,0.404874,0.41073,0.579518,0.457109,0.830458,0.842449,0.174813,0.269222,0.75396,0.56764,0.83788,0.5962,0.440399,0.57363,0.653667,0.991413,0.585826,0.816915,0.465739,0.379645,0.142734,0.0907009,0.804078,0.281294,0.48273,0.287219,0.380088,0.722261,0.417148,0.805289,0.131827,0.177475,0.597571,0.667638,0.898884,0.853159,0.116547,0.0383255,0.234801,0.606186,0.901831,0.626002,0.422813,0.184038,0.845354,0.943273,0.261262,0.136594,0.681406,0.788664,0.0939875,0.801461,0.932653,0.866461,0.205431,0.996553,|0.942461,0.18444,0.325186,0.949431,0.104891,0.297517,0.281019,0.374727,0.492912,0.440705,0.252353,0.138524,0.315758,0.752417,0.555385,0.293553,0.568467,0.305525,0.791747,0.790909,0.633268,0.80665,0.391693,0.419118,0.200877,0.424712,0.660842,0.738424,0.379064,0.481624,0.430838,0.604915,0.115232,0.411617,0.44144,0.821893,0.389906,0.922293,0.181432,0.798824,0.592293,0.0237334,0.16177,0.5845,0.417205,0.97907,0.224186,0.302224,0.527793,0.526264,0.302421,0.264403,0.362414,0.846981,0.924566,0.13868,0.167041,0.352322,0.335888,0.189758,0.746346,0.598603,0.673835,0.449314,0.00533366,0.49648,0.693429,0.242145,0.144338,0.0957913,0.628872,0.600719,0.10891,0.915549,0.379552,0.46073,0.340874,0.451174,0.836105,0.667775,0.257386,0.327529,0.342874,0.286478,0.07801,0.208328,0.51738,0.731718,0.954786,0.194687,0.55538,0.818793,0.98117,0.949409,0.94129,0.194161,0.653753,0.727013,0.29404,0.896752,0.141943,0.217253,0.970125,0.792187,0.170203,0.996096,0.858457,0.697827,0.657334,0.992919,0.139004,0.85325,0.134136,0.420673,0.365501,0.167291,0.521521,0.340177,0.998404,0.0585834,0.96853,0.758129,0.856392,0.202632,0.287239,0.0727634,0.658358,0.157855,0.712543,0.868026,0.337383,0.952455,0.178969,0.0355833,0.305497,0.87144,0.698236,0.971994,0.910215,0.976911,0.45378,0.740065,0.896139,0.444761,0.745927,0.89951,0.0381193,0.44793,0.89363,0.632799,0.598039,0.0454857,0.742785,0.917141,0.599292,0.276151,0.639407,0.977077,0.177323,0.0202776,0.567794,0.862958,0.88344,0.644681,0.0700106,0.361883,0.891738,0.44067,0.319977,0.976933,0.152067,0.0447574,0.0860215,0.909509,0.536062,0.147259,0.0401204,0.531642,0.578387,0.739707,0.0385492,0.257849,0.7991,0.583624,0.372167,0.663975,0.996747,0.508233,0.058748,0.539907,0.40659,0.818466,0.736168,0.54431,0.651549,0.632768,0.430613,0.239231,0.142671,0.743572,0.93247,0.545111,0.624955,0.659206,0.489264,0.170907,0.806058,0.674085,0.406112,0.827704,0.248236,0.540975,0.410527,0.963817,0.528488,0.73309,0.920873,0.170382,0.344424,0.302566,0.807499,0.437519,0.537328,0.143587,0.0536805,0.619599,0.210111,0.973786,0.68085,0.0643468,0.0263812,0.450682,0.507578,0.457586,0.569128,0.0641887,0.296671,0.0244969,0.246425,0.57279,0.624964,0.578957,0.689157,0.991797,0.765715,0.997205,0.545634,0.14832,0.567192,0.933553,0.114377,0.327935,0.0997051,0.724674,0.938456,0.482994,0.229401,0.286342,0.499783,0.474239,0.360261,0.159754,0.398608,0.0829735,0.495282,0.91658,0.430955,0.632781,0.338969,0.214746,0.667347,0.702886,0.115716,0.576885,0.871281,0.805576,0.179865,0.597358,0.716803,0.111768,0.660102,0.50355,0.232132,0.787771,0.342862,0.152237,0.236394,0.737736,0.805438,0.602612,0.764997,0.304813,0.579508,0.211303,0.875057,0.955533,0.715656,0.883456,0.848076,0.273471,0.948983,0.935739,0.49154,0.403456,0.0215812,0.700692,0.541981,0.582791,0.623997,0.620016,0.590686,0.222623,0.912717,0.903407,0.32378,0.455543,0.583323,0.867359,0.0964363,0.939518,0.406276,0.320032,0.683946,0.382577,0.313799,0.608101,0.730464,0.47182,0.589235,0.520289,0.569739,0.0502206,0.783575,0.384402,0.724856,0.125986,0.424647,0.771371,0.100708,0.529271,0.236185,0.327037,0.0297838,0.250553,0.692359,0.64949,0.152072,0.160573,0.669134,0.40651,0.26632,0.698015,0.823505,0.9244,0.498469,0.608715,0.860652,0.583348,0.987086,0.853359,0.448257,0.773835,0.140046,0.536153,0.441028,0.765328,0.10169,0.646045,0.777142,0.645172,0.48648,0.858898,0.0893281,0.186006,0.378963,0.967541,0.393617,0.0767986,0.476552,0.533206,0.770726,0.697545,0.0249859,0.487515,0.856987,0.311526,0.0333135,0.547971,0.193229,0.994107,0.55072,0.335289,0.550352,0.0907553,0.770956,0.758494,0.331637,0.417536,0.206775,0.208136,0.224432,0.254564,0.307042,0.218876,0.529951,0.205339,0.123444,0.8909,0.579105,0.146112,0.761488,0.506053,0.597396,0.381471,0.61037,0.783462,0.233737,0.632173,0.0277653,0.522183,0.801692,0.361066,0.429387,0.890587,0.628175,0.74991,0.370399,0.984253,0.0855412,0.267308,0.38935,0.0835886,0.612057,0.563813,0.630116,0.804709,0.538949,0.734826,0.323162,0.458616,0.803751,0.974453,0.229856,0.722009,0.40842,0.0724267,0.136301,0.765803,0.246749,0.051751,0.661101,0.248384,0.536343,0.0633003,0.21776,0.314804,0.26546,0.241221,0.925819,0.819108,0.73855,0.785661,0.661242,0.154966,0.206568,0.429892,0.355795,0.439265,0.897911,0.690777,0.401695,0.76751,0.964304,0.713354,0.245721,0.0935121,0.0753031,0.61778,0.312165,0.62357,0.380024,0.749444,0.923029,0.342087,0.0778694,0.914155,0.490466,0.611084,0.803925,0.938465,0.973474,0.145992,0.29757,0.6,0.660414,0.683422,0.555881,0.484173,0.762339,0.61048,0.991896,0.780706,0.0488702,0.0519466,0.723239,0.688936,0.207106,0.557513,0.51927,0.666856,0.617468,0.307522,0.209721,0.0219404,0.692414,0.833515,0.784119,0.290697,0.582361,0.564249,0.196764,0.333867,0.974067,0.826125,0.0992229,0.541874,0.988449,0.525226,0.279534,0.175095,0.366105,0.245134,0.655314,0.0415419,0.530976,0.548468,0.608142,0.603863,0.425323,0.459149,0.933957,0.370505,0.31705,0.0862572,0.654346,0.164278,0.679066,0.306717,0.391111,0.914928,0.112845,0.44949,0.898929,0.648716,0.869551,0.881757,0.734445,0.00157541,0.20141,0.359099,0.9562,0.515204,0.0733331,0.0162966,0.865869,0.828045,0.0405524,0.599067,0.926066,0.78211,0.268905,0.583821,0.543713,0.932949,0.303098,0.0578629,0.976283,0.619572,0.15348,0.235651,0.615871,0.722868,0.160108,0.0009045,0.625108,0.169262,0.884274,0.00850999,0.831242,0.483762,0.414534,0.473441,0.91071,0.750182,0.682852,0.521668,0.196409,0.989321,0.226721,0.552583,0.86792,0.610839,0.0764893,0.373123,0.156271,0.107301,0.917344,0.774864,0.193941,0.134192,0.955599,0.521416,0.217727,0.366556,0.927608,0.869094,0.422784,0.576624,0.921041,0.142617,0.420936,0.263935,0.827908,0.425895,0.318172,0.185858,0.516796,0.599952,0.295623,0.095847,0.845613,0.877728,0.43909,0.905724,0.848311,0.013001,0.524596,0.108038,0.788049,0.218243,0.269281,0.351281,0.512135,0.0318732,0.989972,0.108249,0.969639,0.948889,0.516033,0.229122,0.00903934,0.504802,0.848941,0.0220939,0.0474406,0.0378613,0.76428,0.968728,0.364429,0.443767,0.402257,0.310422,0.960767,0.507133,0.194411,0.586585,0.238993,0.407568,0.483418,0.122062,0.106653,0.185256,0.320745,0.547994,0.670298,0.313434,0.254618,0.82809,0.00218314,0.335373,0.156463,0.328246,0.25663,0.44741,0.388514,0.471965,0.290775,0.17473,0.837707,0.422249,0.19451,0.909144,0.72381,0.936027,0.204281,0.0980689,0.353883,0.484142,0.0770988,0.0945293,0.0902016,0.9429,0.762898,0.00594074,0.59303,0.943825,0.880174,0.0749219,0.442757,0.0476484,0.622945,0.828579,0.617717,0.783638,0.653329,0.45063,0.170954,0.401257,0.751672,0.0483618,0.489981,0.180591,0.661818,0.0807872,0.605824,0.901787,0.431338,0.932031,0.940893,0.478486,0.96424,0.763446,0.0201123,0.38421,0.135347,0.354922,0.0738035,0.238429,0.656672,0.761514,0.765333,0.0727355,0.913157,0.215189,0.264035,0.184662,0.69981,0.862113,0.248738,0.996562,0.927493,0.349765,0.325622,0.700072,0.633334,0.910896,0.496508,0.111667,0.460358,0.8789,0.638249,0.146661,0.986683,0.450584,0.363414,0.548528,0.195368,0.791947,0.652814,0.524121,0.603041,0.228328,0.691202,0.497661,0.579781,0.196631,0.00413173,0.0110974,0.307402,0.970213,0.393071,0.733385,0.918994,0.638542,0.758035,0.919049,0.275528,0.530993,0.831476,0.143014,0.774933,0.0538548,0.333389,0.455456,0.33395,0.70862,0.149607,0.820317,0.932338,0.911004,0.82472,0.812322,0.422408,0.156214,0.992743,0.912246,0.875405,0.105659,0.750322,0.75769,0.356398,0.292631,0.650387,0.759124,0.507718,0.0822803,0.952518,0.186914,0.811855,0.123826,0.809231,0.340711,0.209066,0.684964,0.0415526,0.631391,0.676602,0.0940741,0.436467,0.25141,0.0274934,0.903243,0.0889482,0.698359,0.765271,0.881889,0.821722,0.544589,0.126125,0.74033,0.151155,0.273427,0.042172,0.292639,0.740148,0.918562,0.975061,0.470861,0.637794,0.822784,0.440753,0.94405,0.668178,0.997971,0.142073,0.575289,0.277156,0.566138,0.0158495,0.279404,0.352653,0.3188,0.91417,0.19059,0.666935,0.289081,0.895805,0.412674,0.239144,0.904617,0.615391,0.725643,0.964446,0.420576,0.945839,0.62858,0.53515,0.752702,0.0950661,0.221949,0.527204,0.798882,0.578611,0.798683,0.0387284,0.130456,0.407098,0.225285,0.67943,0.300896,0.161386,0.588608,0.464183,0.928081,0.249919,0.730247,0.104669,0.870257,0.223912,0.251304,0.877381,0.0949041,0.711575,0.618949,0.639614,0.173603,0.605753,0.760878,0.241123,0.31408,0.710405,0.724282,0.553257,0.673578,0.233272,0.971254,0.0255455,0.176289,0.0150651,0.000417054,0.426849,0.543296,0.591832,0.640117,0.163856,0.225843,0.905793,0.548183,0.599621,0.599502,0.0932204,0.00919145,0.287225,0.754152,0.557363,0.1713,0.284837,0.487205,0.89007,0.326297,0.990162,0.369537,0.617449,0.911759,0.61012,0.506632,0.321328,0.664168,0.125329,0.861618,0.159289,0.0694369,0.917781,0.11923,0.760192,0.870127,0.576847,0.588997,0.0184099,0.95461,0.201463,0.11274,0.996401,0.185788,0.21753,0.586782,0.984086,0.951045,0.806859,0.755412,0.795393,0.0637797,0.828675,0.421953,0.719004,0.918156,0.803897,0.946165,0.695729,0.756299,0.310244,0.401541,0.779369,0.559634,0.297435,0.878384,0.593556,0.197141,0.879905,0.53263,0.28206,0.450373,0.259322,0.201458,0.208419,0.0390738,0.701039,0.0602055,0.461394,0.715386,|0.762921,0.00344115,0.246966,0.465897,0.12688,0.407475,0.206115,0.0123483,0.396008,0.143549,0.120028,0.095273,0.553387,0.0531405,0.406927,0.514255,0.712537,0.786229,0.557084,0.927199,0.103442,0.305113,0.424647,0.58227,0.397598,0.866761,0.49496,0.243708,0.751533,0.12356,0.284997,0.257929,0.128204,0.455196,0.831998,0.326937,0.654142,0.522309,0.418656,0.474047,0.985654,0.544552,0.406807,0.863697,0.496786,0.184835,0.982732,0.187124,0.95546,0.699331,0.868213,0.647758,0.193001,0.178811,0.430165,0.126126,0.62777,0.948766,0.170116,0.437022,0.419473,0.687382,0.405122,0.810076,0.354704,0.027009,0.769199,0.761082,0.137769,0.94011,0.201139,0.994821,0.883724,0.798364,0.483188,0.0493376,0.730762,0.120253,0.122963,0.85014,0.624336,0.971444,0.423837,0.674007,0.275939,0.828708,0.757696,0.460278,0.207997,0.862346,0.0367396,0.898552,0.877815,0.950334,0.814392,0.241375,0.341309,0.577593,0.716122,0.810078,0.103889,0.42105,0.918134,0.0539271,0.912302,0.479493,0.657823,0.682207,0.831981,0.627452,0.539757,0.470714,0.442746,0.791636,0.694228,0.442218,0.592743,0.4374,0.352584,0.255722,0.230643,0.837106,0.837939,0.723461,0.0154433,0.348701,0.589567,0.967868,0.350776,0.980377,0.721632,0.592042,0.577752,0.144961,0.888193,0.0491437,0.1008,0.468875,0.359215,0.0300014,0.457935,0.709837,0.448138,0.0466536,0.38302,0.86911,0.502934,0.0629562,0.832957,0.969855,0.479742,0.741998,0.827416,0.827905,0.0349536,0.283704,0.499965,0.713658,0.761411,0.58856,0.900357,0.701507,0.253513,0.563366,0.323418,0.1931,0.112593,0.748606,0.969115,0.482429,0.237158,0.949302,0.565082,0.0998558,0.338299,0.650369,0.492689,0.380077,0.836944,0.907221,0.84471,0.488332,0.334014,0.583274,0.273657,0.342577,0.622798,0.342141,0.13921,0.170152,0.455354,0.356514,0.272125,0.725966,0.355933,0.934459,0.348222,0.861506,0.199412,0.0677708,0.925456,0.199642,0.190661,0.835696,0.291767,0.867557,0.0875926,0.164068,0.547042,0.800291,0.651744,0.444938,0.972989,0.505989,0.71483,0.300022,0.204015,0.777169,0.734363,0.739779,0.276308,0.282776,0.15282,0.127963,0.972127,0.0330516,0.75476,0.843202,0.572777,0.604458,0.855199,0.567326,0.886956,0.0897819,0.226822,0.342704,0.219655,0.885485,0.919231,0.248924,0.880282,0.881272,0.312648,0.681663,0.716527,0.90502,0.919415,0.437536,0.0691626,0.707266,0.725883,0.781912,0.179512,0.0973743,0.875679,0.791805,0.812334,0.884686,0.702691,0.737686,0.176476,0.395529,0.0588635,0.410941,0.765853,0.116468,0.880614,0.0740337,0.647283,0.736297,0.0842601,0.0531546,0.143397,0.631301,0.151366,0.857521,0.503621,0.669456,0.241594,0.896264,0.407755,0.250038,0.565814,0.125118,0.548013,0.325278,0.197234,0.156692,0.25198,0.623653,0.932575,0.148901,0.770303,0.786903,0.315995,0.701681,0.00559425,0.400906,0.55301,0.229736,0.16675,0.352604,0.602735,0.672213,0.261396,0.299609,0.998324,0.598486,0.67103,0.0956693,0.242796,0.951925,0.591951,0.827013,0.963008,0.846935,0.412621,0.0345918,0.948095,0.171421,0.151847,0.741598,0.1199,0.393998,0.383581,0.17435,0.985751,0.0084309,0.471182,0.109336,0.980192,0.0265635,0.249321,0.0680469,0.38438,0.481417,0.00441241,0.0240213,0.27334,0.534954,0.189551,0.87159,0.141576,0.970022,0.667789,0.232015,0.650204,0.194535,0.767966,0.370288,0.083384,0.628632,0.539701,0.180324,0.294892,0.554668,0.389917,0.322483,0.219593,0.244808,0.724682,0.129086,0.604326,0.886638,0.491197,0.962561,0.280255,0.748194,0.782963,0.68977,0.748975,0.47519,0.564772,0.232738,0.551828,0.576411,0.375602,0.673106,0.342818,0.262892,0.550703,0.837208,0.329375,0.501885,0.759267,0.394015,0.851275,0.817186,0.862705,0.967019,0.0142432,0.193471,0.212428,0.146631,0.762687,0.733134,0.0577172,0.648737,0.652981,0.819472,0.350779,0.759176,0.876613,0.314856,0.16255,0.603593,0.236148,0.855528,0.808259,0.948632,0.383266,0.800513,0.831092,0.477513,0.162301,0.953056,0.788078,0.866413,0.140106,0.522213,0.954144,0.411577,0.153518,0.00654912,0.837418,0.678904,0.477116,0.511294,0.568706,0.184128,0.28092,0.291558,0.460858,0.629331,0.210016,0.13084,0.0175968,0.973561,0.897587,0.281073,0.187822,0.145032,0.639048,0.61697,0.730513,0.327638,0.974009,0.868849,0.832853,0.798132,0.346087,0.688035,0.804005,0.720334,0.0788448,0.490589,0.568195,0.837252,0.0335491,0.245331,0.157017,0.475946,0.144658,0.514179,0.989014,0.34066,0.571152,0.290191,0.0809339,0.134404,0.181279,0.748036,0.0431035,0.369226,0.412061,0.429817,0.13574,0.172876,0.699574,0.4505,0.36428,0.656417,0.0569561,0.992309,0.976659,0.919385,0.0836606,0.794283,0.618716,0.819959,0.37602,0.0929143,0.793301,0.444223,0.189271,0.0681822,0.262286,0.772637,0.993022,0.315648,0.555024,0.895088,0.198636,0.140765,0.0524195,0.633714,0.28788,0.729887,0.812218,0.867348,0.581607,0.977214,0.528957,0.302635,0.670217,0.937984,0.591403,0.95523,0.600478,0.457603,0.449858,0.422181,0.71202,0.783605,0.893835,0.668141,0.3827,0.179769,0.948706,0.583107,0.864228,0.234713,0.147986,0.637387,0.322798,0.785625,0.885214,0.300643,0.554097,0.20448,0.902265,0.732265,0.658489,0.155847,0.492598,0.133439,0.162406,0.765454,0.599533,0.40136,0.351284,0.277623,0.134758,0.327637,0.600472,0.627434,0.413494,0.17363,0.165545,0.189216,0.98808,0.986351,0.363859,0.111187,0.982467,0.0791609,0.95661,0.780862,0.327835,0.79236,0.163931,0.0502062,0.219374,0.170636,0.30369,0.657227,0.7503,0.553693,0.0712996,0.528376,0.773581,0.773,0.530652,0.0953394,0.48487,0.230164,0.492118,0.925349,0.998962,0.0487325,0.0666685,0.736789,0.517533,0.433676,0.0482004,0.143545,0.310843,0.432637,0.827629,0.0435073,0.192383,0.69253,0.341332,0.874161,0.784832,0.454246,0.18328,0.780765,0.47525,0.76099,0.489946,0.394703,0.907259,0.887664,0.545859,0.00226903,0.41163,0.605987,0.918236,0.0344015,0.900707,0.58282,0.374467,0.723478,0.0967601,0.497433,0.4348,0.000515103,0.00514048,0.82281,0.518674,0.139376,0.369145,0.228234,0.189451,0.376216,0.244472,0.753036,0.456348,0.777706,0.218428,0.966225,0.770825,0.10641,0.237434,0.555096,0.810362,0.200135,0.569818,0.103356,0.197009,0.134931,0.774336,0.640106,0.984136,0.280527,0.440882,0.550369,0.976388,0.130013,0.0606313,0.842194,0.940235,0.787428,0.438961,0.994731,0.604189,0.624223,0.0755153,0.38276,0.0109312,0.228757,0.348905,0.196672,0.917721,0.422966,0.291552,0.697872,0.544405,0.35688,0.097236,0.399187,0.662872,0.744338,0.514826,0.839538,0.188748,0.0312377,0.255285,0.238885,0.477807,0.156341,0.0621429,0.839635,0.792895,0.356686,0.0212947,0.944045,0.744924,0.0385243,0.662466,0.994384,0.793421,0.938485,0.537021,0.283393,0.340309,0.488952,0.481375,0.115019,0.359954,0.109593,0.101135,0.988569,0.797407,0.336408,0.655244,0.716428,0.268908,0.222956,0.254822,0.0595508,0.0237479,0.0408208,0.828037,0.398819,0.274178,0.00173056,0.832491,0.431457,0.695124,0.398445,0.974646,0.290144,0.769175,0.910319,0.228548,0.851176,0.637658,0.512342,0.648037,0.406118,0.331207,0.654558,0.848243,0.857333,0.502702,0.22726,0.454884,0.950149,0.20699,0.199909,0.690758,0.856066,0.0776768,0.893188,0.237856,0.887025,0.200089,0.544367,0.773714,0.00511736,0.39239,0.840592,0.57152,0.19744,0.518587,0.237494,0.577523,0.176279,0.935714,0.828922,0.876296,0.106667,0.932487,0.8347,0.88861,0.10891,0.516613,0.629331,0.756448,0.250891,0.380168,0.219965,0.121802,0.0922595,0.0938837,0.642247,0.898479,0.918349,0.264442,0.978997,0.046489,0.712775,0.609804,0.518217,0.984795,0.25873,0.318714,0.815759,0.144659,0.0609292,0.50034,0.783881,0.383811,0.805176,0.471025,0.912255,0.481646,0.408731,0.241933,0.843547,0.646851,0.773073,0.141649,0.971732,0.573095,0.04049,0.529361,0.476491,0.18422,0.780433,0.702144,0.611972,0.629553,0.413573,0.467043,0.121166,0.47948,0.355782,0.325892,0.216764,0.667643,0.256661,0.731332,0.467005,0.809785,0.655625,0.861315,0.417123,0.367737,0.664712,0.358178,0.760556,0.0323544,0.536351,0.64427,0.339379,0.471676,0.248761,0.485261,0.54224,0.457012,0.0676134,0.988544,0.40288,0.638542,0.089952,0.893184,0.936011,0.711955,0.463038,0.553273,0.552942,0.945042,0.397673,0.32773,0.588052,0.560612,0.625435,0.106393,0.537766,0.62587,0.824667,0.518826,0.0686983,0.0371274,0.656169,0.677959,0.790395,0.259481,0.422816,0.124292,0.778517,0.52661,0.0205341,0.188253,0.465333,0.657099,0.792869,0.650723,0.980914,0.276975,0.2529,0.168241,0.31194,0.175012,0.655345,0.485973,0.0153899,0.127496,0.250015,0.217693,0.778375,0.0143054,0.376678,0.35979,0.241011,0.754569,0.488797,0.125973,0.38829,0.899385,0.91641,0.836125,0.0736668,0.993085,0.92378,0.170792,0.622327,0.0757686,0.571184,0.486365,0.878258,0.140014,0.436224,0.463064,0.00719959,0.208631,0.979744,0.491865,0.93502,0.0620011,0.112761,0.826097,0.321788,0.104388,0.376486,0.310461,0.995575,0.481645,0.336983,0.0633636,0.633075,0.391258,0.0293893,0.830071,0.652302,0.832992,0.588081,0.2722,0.239547,0.704813,0.475573,0.243403,0.442587,0.424251,0.893436,0.830913,0.790008,0.199635,0.77854,0.838899,0.497301,0.842304,0.883337,0.291448,0.50829,0.684895,0.938289,0.0240659,0.817228,0.839507,0.852708,0.357265,0.322616,0.0761087,0.32835,0.560353,0.300878,0.739574,0.286781,0.874238,0.237812,0.48402,0.103466,0.926367,0.359641,0.927704,0.128509,0.27752,0.949257,0.216014,0.366607,0.274062,0.948615,0.986737,0.534395,0.781941,0.210418,|0.79987,0.301343,0.193728,0.0715068,0.699691,0.939425,0.689819,0.63308,0.50446,0.463552,0.192984,0.161281,0.102114,0.422536,0.834006,0.891056,0.546779,0.910304,0.408635,0.372019,0.491546,0.604497,0.430451,0.421672,0.104341,0.552083,0.904628,0.60356,0.983634,0.594861,0.9592,0.0514136,0.328972,0.641301,0.141163,0.404137,0.913499,0.582509,0.762043,0.0308055,0.263079,0.330709,0.424034,0.18197,0.0224612,0.023289,0.0600084,0.682435,0.928414,0.617234,0.512655,0.429248,0.229188,0.205551,0.30298,0.926676,0.714937,0.247739,0.061241,0.370745,0.441843,0.421785,0.737069,0.529048,0.749019,0.472087,0.333456,0.3798,0.217332,0.450721,0.896378,0.490172,0.000470698,0.338644,0.012553,0.84445,0.710146,0.917174,0.0127363,0.476564,0.482003,0.176999,0.927028,0.694485,0.493703,0.133684,0.278232,0.551131,0.192198,0.56189,0.781816,0.389648,0.854269,0.334274,0.160744,0.270252,0.963509,0.309034,0.357632,0.897719,0.650175,0.359224,0.723642,0.813649,0.00819111,0.79089,0.702096,0.00345337,0.0524659,0.306686,0.625506,0.871507,0.128088,0.0441432,0.693365,0.858146,0.965128,0.568986,0.642551,0.249826,0.394646,0.566371,0.154146,0.0697954,0.511584,0.689038,0.100871,0.104701,0.880844,0.915321,0.830984,0.95753,0.401404,0.509013,0.401699,0.49366,0.835134,0.402761,0.217182,0.197028,0.727225,0.868214,0.0578452,0.653163,0.203427,0.927102,0.593917,0.0600377,0.864431,0.924327,0.190651,0.384968,0.749809,0.466677,0.219212,0.3201,0.660807,0.169546,0.0892552,0.139387,0.762651,0.0208815,0.00419199,0.397889,0.82938,0.963904,0.707179,0.171804,0.971769,0.760245,0.614278,0.277365,0.157955,0.223582,0.41344,0.288459,0.391597,0.667967,0.962871,0.835702,0.428123,0.373384,0.53312,0.517631,0.720661,0.748799,0.913626,0.511593,0.0693651,0.54894,0.245193,0.120308,0.952886,0.553773,0.0270459,0.406363,0.669481,0.258814,0.995714,0.742315,0.60028,0.20978,0.213482,0.392197,0.256882,0.441793,0.594788,0.877745,0.834917,0.287432,0.770024,0.49356,0.778337,0.651914,0.940498,0.574817,0.546571,0.195763,0.564061,0.219802,0.6966,0.889681,0.00589228,0.926204,0.42789,0.750334,0.743799,0.574506,0.890962,0.974736,0.780168,0.587287,0.00890964,0.558879,0.873742,0.638178,0.916256,0.0802733,0.371669,0.82783,0.679652,0.570237,0.864851,0.108205,0.957024,0.927975,0.786641,0.480781,0.510295,0.721287,0.374242,0.537425,0.243772,0.160905,0.0232815,0.826036,0.880093,0.0253044,0.909393,0.747104,0.650086,0.127203,0.0673812,0.133667,0.366451,0.836653,0.788938,0.998115,0.755927,0.726266,0.873818,0.373933,0.170653,0.114453,0.467365,0.616665,0.0798917,0.429918,0.486711,0.449288,0.431829,0.62097,0.983174,0.779447,0.279665,0.260799,0.0161999,0.477596,0.749368,0.150473,0.154996,0.0235897,0.813835,0.565284,0.302741,0.918264,0.731552,0.314948,0.938423,0.489004,0.144534,0.778577,0.427472,0.88314,0.089837,0.76932,0.960945,0.184299,0.386043,0.759411,0.482548,0.70744,0.237513,0.573266,0.423701,0.174724,0.0469679,0.0924327,0.926292,0.942496,0.0270208,0.59409,0.904712,0.345894,0.0460317,0.708765,0.51855,0.37269,0.493203,0.0969307,0.601896,0.0441317,0.218727,0.236561,0.615388,0.0133034,0.85737,0.403783,0.520504,0.956822,0.431206,0.542982,0.821798,0.828496,0.36752,0.561278,0.0548672,0.289549,0.886306,0.564078,0.120742,0.012119,0.809515,0.914596,0.931662,0.90442,0.136032,0.368676,0.183224,0.0327256,0.819936,0.413011,0.413776,0.0123525,0.335682,0.765864,0.188043,0.871339,0.861152,0.640903,0.627879,0.312326,0.509906,0.0708464,0.665518,0.828164,0.88478,0.341262,0.736243,0.106534,0.0671532,0.242662,0.148035,0.4623,0.917024,0.284769,0.514361,0.740322,0.0714715,0.688015,0.259209,0.767004,0.229284,0.190215,0.541528,0.211356,0.0231642,0.464529,0.826136,0.222544,0.473627,0.505245,0.648339,0.72607,0.204944,0.74443,0.132747,0.548731,0.0792434,0.0758214,0.774594,0.625458,0.385903,0.662244,0.84772,0.399016,0.58439,0.506267,0.519964,0.0639213,0.0736427,0.0590073,0.0367996,0.668118,0.625298,0.188034,0.844791,0.0551216,0.108554,0.962252,0.926997,0.475994,0.154247,0.350414,0.735311,0.763757,0.532318,0.532135,0.162144,0.693403,0.459175,0.121629,0.176375,0.776814,0.52117,0.941305,0.450829,0.209969,0.899476,0.854586,0.312606,0.86144,0.308902,0.408275,0.401739,0.966625,0.700805,0.738644,0.648618,0.147053,0.716305,0.0865427,0.531457,0.350056,0.863974,0.215177,0.068862,0.526282,0.564849,0.473665,0.734945,0.904105,0.279156,0.739345,0.123918,0.428694,0.00942135,0.124141,0.0666752,0.828952,0.805662,0.12674,0.253308,0.967034,0.587866,0.269588,0.0604799,0.167986,0.925743,0.0976189,0.863499,0.752387,0.95776,0.275436,0.416274,0.477637,0.205907,0.042146,0.286057,0.498845,0.438111,0.40719,0.645747,0.735851,0.363653,0.46776,0.951544,0.556545,0.820161,0.762215,0.816216,0.137637,0.509727,0.283993,0.439367,0.407569,0.670592,0.234186,0.258783,0.340122,0.114433,0.952802,0.345518,0.251858,0.275267,0.554651,0.897364,0.753247,0.206967,0.458289,0.45926,0.365051,0.596067,0.871441,0.302645,0.981087,0.0157772,0.98898,0.707428,0.684366,0.265246,0.15995,0.1657,0.63357,0.172025,0.779503,0.505189,0.824596,0.0144693,0.739706,0.907199,0.718206,0.936695,0.0886713,0.214172,0.845053,0.971171,0.940925,0.626735,0.67193,0.00628626,0.495175,0.459884,0.584405,0.0437276,0.856383,0.983152,0.594299,0.356875,0.721496,0.416691,0.82216,0.936262,0.339597,0.433037,0.563721,0.277406,0.890138,0.930904,0.400388,0.847802,0.751387,0.276141,0.568897,0.386424,0.181336,0.958291,0.0338976,0.89492,0.154619,0.680907,0.611096,0.908006,0.652085,0.627229,0.925842,0.974859,0.936497,0.134254,0.735166,0.955952,0.818211,0.0664994,0.692728,0.643387,0.342742,0.4536,0.204624,0.776951,0.895762,0.00408387,0.777033,0.494975,0.88175,0.940363,0.823527,0.732816,0.259363,0.291572,0.603523,0.00483054,0.119743,0.615687,0.366607,0.19691,0.639674,0.539007,0.4431,0.429761,0.221198,0.294906,0.0717146,0.751336,0.94576,0.66834,0.298954,0.0730746,0.319018,0.508614,0.500068,0.851116,0.469353,0.0356784,0.41577,0.0484548,0.554977,0.0978999,0.357716,0.764614,0.520095,0.232493,0.978381,0.246274,0.826403,0.388595,0.46893,0.783101,0.0712457,0.252421,0.558819,0.242677,0.188325,0.659987,0.749591,0.505041,0.247393,0.0173062,0.806553,0.0990527,0.593218,0.841596,0.157033,0.842852,0.304159,0.262402,0.346899,0.827101,0.863185,0.141523,0.269951,0.499409,0.242303,0.93939,0.150041,0.826771,0.168778,0.87638,0.43419,0.236145,0.311424,0.0778306,0.575836,0.0705171,0.378564,0.184617,0.206742,0.592654,0.629742,0.766957,0.577984,0.587562,0.67891,0.989328,0.65242,0.262681,0.376504,0.0323888,0.969682,0.168701,0.628958,0.968855,0.781573,0.00692898,0.5117,0.0204861,0.190483,0.249605,0.608484,0.755503,0.603345,0.592281,0.557637,0.528323,0.338612,0.130956,0.859409,0.2072,0.777665,0.173739,0.356993,0.250008,0.927197,0.168297,0.646257,0.406807,0.0205629,0.238943,0.650671,0.803883,0.313761,0.815266,0.247898,0.694589,0.780509,0.890821,0.964034,0.889854,0.0156262,0.660015,0.191765,0.916004,0.222915,0.35064,0.415935,0.972821,0.193722,0.394688,0.0303711,0.502963,0.0582392,0.36306,0.749451,0.209658,0.373985,0.367216,0.110907,0.478302,0.975972,0.863149,0.978611,0.0318214,0.0463279,0.0725493,0.319668,0.461724,0.792081,0.0114644,0.113614,0.106271,0.991929,0.711787,0.874641,0.599252,0.0272095,0.404164,0.441842,0.982922,0.227881,0.752484,0.89715,0.775189,0.746208,0.632608,0.696495,0.950467,0.307294,0.837047,0.24276,0.51866,0.213053,0.654052,0.367611,0.20319,0.524735,0.233098,0.26684,0.00516355,0.136746,0.804561,0.385752,0.219005,0.900497,0.98236,0.0146824,0.66298,0.230746,0.15237,0.799078,0.828964,0.127491,0.936329,0.0918759,0.801718,0.924773,0.485967,0.383467,0.693052,0.886795,0.76504,0.389732,0.58329,0.947183,0.203372,0.514843,0.31734,0.84035,0.349162,0.453295,0.771815,0.729697,0.216278,0.778461,0.837987,0.137626,0.869678,0.968453,0.517728,0.334417,0.696706,0.0443304,0.304702,0.498787,0.883503,0.160337,0.803374,0.172242,0.82094,0.311394,0.174077,0.766177,0.0879368,0.209757,0.824973,0.579983,0.404844,0.828106,0.184728,0.237533,0.653932,0.720511,0.80693,0.195015,0.443799,0.053482,0.880333,0.559914,0.376556,0.90656,0.989993,0.466279,0.144035,0.575908,0.0831082,0.963955,0.9032,0.822056,0.689808,0.446179,0.507255,0.340355,0.883963,0.0297158,0.873697,0.0955272,0.167721,0.138381,0.243881,0.0364612,0.054221,0.387514,0.639491,0.771306,0.739459,0.782933,0.436583,0.197629,0.589416,0.17741,0.545677,0.23733,0.500635,0.202198,0.619488,0.18906,0.812022,0.414432,0.552046,0.532445,0.429141,0.86046,0.380502,0.473528,0.977072,0.895342,0.541105,0.559556,0.165995,0.472079,0.33428,0.35088,0.613072,0.0261955,0.096214,0.482841,0.600532,0.0112922,0.722673,0.178922,0.00456494,0.216663,0.0801644,0.515836,0.856724,0.305452,0.0724278,0.261387,0.669393,0.784783,0.0105777,0.584447,0.95396,0.702629,0.618475,0.78752,0.814232,0.607085,0.587541,0.267578,0.644875,0.445893,0.424965,0.368617,0.320234,0.378223,0.448593,0.189234,0.668351,0.221678,0.639465,0.594138,0.419591,0.338687,0.0359215,0.395745,0.805219,0.319402,0.329752,0.356479,0.803224,0.65655,0.071991,0.341782,0.365034,0.817934,0.735457,0.683997,0.628083,0.835846,0.778698,0.909465,0.630168,0.702088,0.418522,0.00342917,0.416764,0.586678,0.259097,0.391265,0.652217,0.399077,|0.962443,0.780102,0.631454,0.989915,0.740208,0.526606,0.31135,0.658709,0.379816,0.604492,0.996223,0.87762,0.779213,0.893988,0.110817,0.358509,0.895041,0.757844,0.539524,0.696549,0.28775,0.757471,0.826019,0.791347,0.353838,0.460158,0.729785,0.353041,0.12151,0.148296,0.560465,0.215233,0.470637,0.184741,0.891781,0.559037,0.355627,0.660584,0.811057,0.738166,0.998969,0.892217,0.433879,0.186673,0.000551403,0.312748,0.808896,0.294895,0.0921052,0.728538,0.58813,0.454345,0.848958,0.297223,0.381442,0.146128,0.957127,0.027806,0.97942,0.825652,0.715926,0.787071,0.692516,0.670151,0.679557,0.339832,0.246735,0.600563,0.21694,0.325768,0.150596,0.361416,0.312447,0.517152,0.822406,0.705624,0.719856,0.979658,0.659764,0.473174,0.249857,0.755213,0.503306,0.939918,0.363436,0.836613,0.636373,0.703658,0.115718,0.276583,0.483273,0.777638,0.0150506,0.752146,0.0832323,0.139692,0.816291,0.906649,0.661139,0.09603,0.585031,0.389962,0.671433,0.336845,0.0771922,0.593979,0.291897,0.963136,0.122431,0.906364,0.611724,0.554515,0.885756,0.938198,0.501021,0.769681,0.639265,0.671729,0.212766,0.746574,0.723302,0.835268,0.858581,0.0333551,0.479396,0.943439,0.880636,0.0897425,0.123085,0.12861,0.985651,0.142215,0.0524164,0.988311,0.907292,0.184617,0.879966,0.0474632,0.0117901,0.681827,0.0651274,0.175705,0.717718,0.818045,0.00590158,0.255449,0.00987589,0.193219,0.401176,0.501685,0.645278,0.653446,0.141158,0.466075,0.660951,0.498013,0.200909,0.429166,0.814223,0.54518,0.673526,0.105063,0.626144,0.97566,0.309133,0.294887,0.312817,0.591762,0.875831,0.905029,0.621599,0.626051,0.871922,0.845565,0.160813,0.419086,0.636908,0.304929,0.749239,0.816667,0.660281,0.600618,0.763884,0.966653,0.234487,0.0757726,0.506658,0.217785,0.534722,0.863673,0.602374,0.362501,0.542646,0.998705,0.444124,0.0778977,0.548924,0.243848,0.367789,0.423358,0.403238,0.601659,0.922258,0.500692,0.364142,0.422535,0.508836,0.250914,0.950212,0.864118,0.359854,0.303913,0.232879,0.937271,0.445039,0.812948,0.140466,0.94048,0.350927,0.878684,0.669605,0.377995,0.722333,0.905863,0.96056,0.437599,0.084169,0.386266,0.617532,0.733365,0.551654,0.993172,0.577739,0.472013,0.757713,0.465789,0.899567,0.433376,0.872055,0.180557,0.822198,0.407176,0.00968307,0.898384,0.56946,0.570796,0.510691,0.777871,0.985668,0.644526,0.888419,0.681718,0.299028,0.471976,0.490662,0.258146,0.523451,0.238665,0.9226,0.223932,0.0810826,0.213342,0.913435,0.981444,0.383581,0.163764,0.378051,0.713357,0.792497,0.105596,0.304352,0.109429,0.54984,0.376357,0.179565,0.441501,0.0362629,0.522449,0.0464326,0.90093,0.457184,0.475836,0.290424,0.61549,0.166294,0.535699,0.428,0.940134,0.791119,0.797712,0.144459,0.154545,0.429844,0.947787,0.382557,0.650255,0.0591208,0.226952,0.943794,0.994131,0.39657,0.151434,0.55624,0.166694,0.538973,0.0614604,0.198503,0.783933,0.348243,0.246496,0.843042,0.562574,0.959649,0.525726,0.472191,0.940294,0.383747,0.251103,0.229827,0.743158,0.642531,0.198786,0.770151,0.083985,0.944755,0.399078,0.267965,0.587928,0.0378974,0.94964,0.551004,0.654493,0.0979508,0.0840943,0.819689,0.743977,0.646921,0.313196,0.491989,0.429445,0.912768,0.614728,0.986182,0.746983,0.766081,0.451593,0.925489,0.899919,0.0561358,0.761665,0.979207,0.927499,0.275459,0.855329,0.246914,0.975499,0.779393,0.95971,0.873134,0.00341922,0.316728,0.389205,0.369234,0.889965,0.417732,0.896278,0.400189,0.391066,0.989146,0.891673,0.794212,0.572078,0.585645,0.191658,0.0784749,0.303486,0.593509,0.990761,0.760285,0.0751538,0.828583,0.79516,0.178981,0.133911,0.603692,0.353646,0.443738,0.0491403,0.425312,0.861729,0.852362,0.305565,0.248604,0.447912,0.338734,0.528501,0.426936,0.148832,0.536352,0.354437,0.604304,0.922899,0.866722,0.663101,0.518338,0.927902,0.909914,0.979792,0.771498,0.325519,0.759636,0.313399,0.570515,0.150135,0.129685,0.586408,0.50375,0.893542,0.00996423,0.255869,0.819546,0.556873,0.795763,0.577709,0.0464884,0.276334,0.118986,0.714266,0.098389,0.811099,0.24121,0.730565,0.79195,0.972348,0.635037,0.629483,0.833616,0.29045,0.249928,0.839364,0.961635,0.731068,0.760774,0.908478,0.218148,0.672231,0.186148,0.983039,0.229473,0.0228169,0.68386,0.0811206,0.339053,0.119736,0.350726,0.64877,0.387072,0.253698,0.750349,0.64001,0.921587,0.545893,0.763305,0.428914,0.552318,0.0379812,0.330591,0.143645,0.449922,0.611365,0.435435,0.0338537,0.812984,0.914413,0.0339398,0.232812,0.766813,0.140385,0.0746881,0.427145,0.20617,0.97367,0.942891,0.320082,0.892343,0.447276,0.0294172,0.362517,0.457093,0.497185,0.308857,0.253689,0.826886,0.352047,0.0137082,0.790826,0.0935349,0.444499,0.81038,0.76608,0.0423555,0.162502,0.171309,0.933122,0.983832,0.810605,0.534383,0.95289,0.767665,0.732664,0.674547,0.218151,0.933199,0.871212,0.327743,0.294692,0.566886,0.428979,0.948427,0.584739,0.652845,0.855002,0.319338,0.819043,0.792898,0.0247997,0.740759,0.90717,0.736138,0.812616,0.982692,0.943359,0.716485,0.821332,0.00942981,0.679998,0.126209,0.407616,0.325482,0.925606,0.946478,0.822467,0.609839,0.467132,0.849191,0.933597,0.941063,0.891925,0.719238,0.769792,0.216965,0.47151,0.918159,0.595493,0.707093,0.584826,0.024782,0.75751,0.618638,0.181362,0.688467,0.0198392,0.372131,0.688392,0.451593,0.50035,0.55799,0.918966,0.305924,0.150182,0.263969,0.579703,0.20577,0.528673,0.550899,0.967154,0.509867,0.401595,0.970775,0.533219,0.860169,0.234761,0.44102,0.904915,0.955744,0.797429,0.99034,0.197832,0.420552,0.770375,0.409769,0.261722,0.876916,0.331774,0.107265,0.945913,0.571679,0.556954,0.0598217,0.695072,0.795334,0.235713,0.780377,0.085297,0.225798,0.899084,0.0351804,0.0219857,0.478111,0.389787,0.0935434,0.878659,0.568651,0.153844,0.0118166,0.393052,0.859094,0.234022,0.15325,0.79118,0.740219,0.213123,0.787964,0.530112,0.394539,0.125169,0.291571,0.364399,0.0141671,0.180033,0.950913,0.891538,0.425399,0.733347,0.738298,0.158884,0.375569,0.701935,0.591059,0.107178,0.625874,0.321857,0.0865629,0.134747,0.93987,0.119197,0.740995,0.964788,0.842731,0.961751,0.204759,0.170262,0.375805,0.806343,0.706937,0.961011,0.112646,0.420442,0.0203215,0.927098,0.599909,0.89796,0.738341,0.963937,0.674769,0.583424,0.40827,0.225442,0.0402194,0.687631,0.950509,0.719128,0.114804,0.564242,0.948892,0.160595,0.0890006,0.353433,0.0455272,0.588523,0.204174,0.00443929,0.0152476,0.0741954,0.818614,0.290439,0.754492,0.976525,0.578895,0.334623,0.0415998,0.650365,0.170852,0.642509,0.697669,0.340864,0.420638,0.945984,0.684463,0.995117,0.0427032,0.687822,0.834024,0.53154,0.00313848,0.425658,0.277228,0.364667,0.664259,0.663616,0.462,0.685666,0.785994,0.984281,0.0089488,0.159905,0.537974,0.54597,0.39563,0.0824367,0.477085,0.238804,0.201711,0.154935,0.281365,0.440684,0.122124,0.847568,0.134705,0.479339,0.566453,0.920692,0.940031,0.759775,0.0572952,0.917812,0.930346,0.706317,0.641349,0.0748878,0.72991,0.596488,0.945258,0.483571,0.348668,0.944244,0.755569,0.452139,0.880042,0.417428,0.981749,0.776179,0.00793928,0.686181,0.317998,0.190239,0.720351,0.819065,0.499921,0.625555,0.573168,0.715075,0.28365,0.646379,0.197379,0.0954044,0.852869,0.305994,0.907199,0.44204,0.993905,0.584495,0.888702,0.813829,0.216312,0.396882,0.592392,0.524667,0.188767,0.514544,0.715282,0.888537,0.425516,0.0698049,0.0717394,0.831425,0.203203,0.126781,0.560279,0.185138,0.626453,0.36083,0.280267,0.683104,0.942993,0.95021,0.974353,0.26119,0.434355,0.943533,0.646915,0.0902247,0.774826,0.923042,0.880229,0.0143975,0.587039,0.787358,0.702652,0.560201,0.176515,0.0772195,0.995885,0.602627,0.111787,0.860683,0.251737,0.867057,0.648366,0.453665,0.689432,0.685658,0.569907,0.92753,0.867911,0.740888,0.660932,0.0442414,0.75584,0.11105,0.299114,0.875375,0.607222,0.626917,0.717097,0.0847582,0.128554,0.0990332,0.0709467,0.11385,0.355888,0.306745,0.05256,0.67142,0.250408,0.990044,0.360594,0.13046,0.756323,0.204736,0.0677034,0.60793,0.167195,0.905526,0.83353,0.891518,0.151606,0.00205135,0.533019,0.607755,0.842286,0.302264,0.863437,0.155999,0.472971,0.919299,0.312769,0.3918,0.830135,0.584559,0.820759,0.255024,0.497998,0.660754,0.549338,0.27511,0.662774,0.759654,0.555724,0.143791,0.176958,0.888236,0.713128,0.216742,0.720992,0.681945,0.168552,0.706927,0.629354,0.916018,0.0379329,0.572901,0.33037,0.1852,0.218247,0.359026,0.956094,0.516796,0.869112,0.184654,0.794553,0.80878,0.522206,0.56277,0.776764,0.156284,0.928245,0.77692,0.300315,0.885357,0.239659,0.114663,0.49977,0.1326,0.021826,0.517501,0.846812,0.548433,0.136014,0.586964,0.927924,0.690285,0.66039,0.166951,0.442472,0.0735931,0.0802991,0.0694879,0.0828853,0.675831,0.784814,0.220545,0.292371,0.461373,0.388193,0.0244241,0.561629,0.624559,0.401262,0.372866,0.870529,0.198235,0.284553,0.69418,0.0649342,0.398684,0.424927,0.932147,0.340016,0.979013,0.234656,0.133543,0.745676,0.281775,0.47905,0.856966,0.952595,0.25473,0.343665,0.559534,0.833932,0.518681,0.208857,0.306887,0.582669,0.726031,0.647725,0.744319,0.567143,0.157614,0.104551,0.931485,0.493269,0.819195,0.493935,0.0856212,0.932968,0.647876,0.113972,0.616487,0.460769,0.977422,0.539958,0.424281,0.275266,0.191442,0.545451,0.44439,0.858927,0.290721,0.519276,0.653591,0.919174,0.713707,0.866087,0.887648,0.512386,0.110659,0.0185174,0.185494,|0.711625,0.677695,0.445306,0.283419,0.484702,0.147983,0.155844,0.0161908,0.975742,0.504624,0.748902,0.591004,0.155428,0.138234,0.343221,0.672743,0.508978,0.218388,0.411929,0.342068,0.637097,0.861251,0.221812,0.209877,0.258873,0.427699,0.390538,0.316156,0.656598,0.756265,0.407542,0.961089,0.384213,0.124507,0.305252,0.312851,0.987794,0.41857,0.197237,0.569975,0.20569,0.477215,0.920894,0.918789,0.903196,0.437429,0.314895,0.235739,0.549078,0.93716,0.487443,0.035868,0.927928,0.274011,0.961529,0.864474,0.0860703,0.453321,0.270848,0.499789,0.677477,0.91068,0.512551,0.946826,0.715016,0.151555,0.0319208,0.621614,0.0458376,0.196355,0.271362,0.419856,0.732728,0.555192,0.915941,0.880441,0.0591258,0.499309,0.133511,0.270627,0.321023,0.690994,0.97616,0.453632,0.0356981,0.261926,0.95604,0.302326,0.435632,0.113451,0.0621517,0.0307298,0.0739319,0.904108,0.78985,0.981481,0.656586,0.140194,0.155289,0.19256,0.273603,0.465738,0.224819,0.418965,0.42722,0.742491,0.643842,0.959418,0.864957,0.0671671,0.216054,0.171723,0.791716,0.83724,0.654093,0.87878,0.554058,0.0659527,0.115054,0.962395,0.457863,0.259004,0.722085,0.347213,0.542422,0.216197,0.729653,0.662746,0.832045,0.263057,0.476683,0.156426,0.668629,0.527748,0.0328064,0.960779,0.395818,0.559276,0.0437118,0.82415,0.139944,0.81012,0.480508,0.686665,0.253799,0.3826,0.22849,0.583998,0.299452,0.110209,0.890346,0.309134,0.618506,0.836355,0.671494,0.552219,0.211277,0.631795,0.468413,0.452285,0.692562,0.816652,0.0809972,0.0492478,0.93012,0.891909,0.768497,0.521581,0.16148,0.0136398,0.535657,0.533689,0.0823532,0.659304,0.365208,0.156204,0.228876,0.89962,0.722517,0.378002,0.560214,0.116246,0.240314,0.55682,0.129898,0.283073,0.866852,0.783931,0.831696,0.771174,0.700472,0.758705,0.629829,0.957572,0.0567577,0.888414,0.0511935,0.974171,0.614564,0.459723,0.277609,0.102049,0.529625,0.0904247,0.868686,0.1755,0.0585657,0.601926,0.308042,0.110128,0.145586,0.88564,0.483565,0.0633485,0.834675,0.969503,0.753432,0.826382,0.875885,0.845277,0.646304,0.832579,0.702877,0.826409,0.521302,0.405591,0.481875,0.750006,0.150123,0.373509,0.206043,0.0584069,0.384091,0.450089,0.434557,0.433679,0.168874,0.83811,0.575982,0.133549,0.199328,0.015973,0.604448,0.914603,0.508297,0.125174,0.201895,0.797441,0.00486457,0.559974,0.501761,0.492166,0.235343,0.181028,0.939168,0.0690578,0.345527,0.534376,0.138741,0.43529,0.0146679,0.710108,0.734567,0.579971,0.589034,0.0283598,0.254097,0.198717,0.437971,0.0513985,0.054579,0.308193,0.74606,0.433253,0.436813,0.48502,0.391871,0.133411,0.355747,0.0333492,0.7884,0.546252,0.781861,0.50153,0.295643,0.31104,0.95629,0.79688,0.757672,0.204195,0.0820686,0.421143,0.54591,0.726989,0.582493,0.563885,0.456409,0.923952,0.787555,0.68045,0.622692,0.46105,0.844328,0.298229,0.72367,0.0646421,0.791181,0.340944,0.0678543,0.0842794,0.505368,0.448182,0.261049,0.686785,0.042576,0.477436,0.989738,0.912607,0.925494,0.59617,0.0225626,0.92034,0.802302,0.172895,0.674444,0.479955,0.969655,0.609681,0.730202,0.388725,0.335763,0.34311,0.504343,0.769997,0.419826,0.399381,0.139649,0.0897113,0.331739,0.947778,0.569777,0.892389,0.506284,0.477802,0.19343,0.706627,0.443365,0.493473,0.947378,0.478477,0.371664,0.358439,0.900555,0.303006,0.705557,0.659655,0.229508,0.323955,0.60033,0.764086,0.0817782,0.748626,0.0187274,0.31328,0.256203,0.35078,0.241881,0.717279,0.154599,0.997401,0.0534083,0.131117,0.293483,0.484401,0.82429,0.743144,0.237408,0.108108,0.506305,0.397361,0.0154232,0.0441587,0.975252,0.672317,0.67897,0.231588,0.853139,0.995254,0.503028,0.878955,0.290128,0.965967,0.130525,0.633948,0.886456,0.0413552,0.416754,0.0180841,0.0228738,0.283056,0.309061,0.688806,0.431737,0.531137,0.93304,0.449334,0.695262,0.390235,0.666896,0.25134,0.203839,0.722148,0.639677,0.731349,0.649804,0.173509,0.789991,0.971486,0.113789,0.2301,0.183242,0.378789,0.420459,0.617621,0.011865,0.211145,0.826464,0.582043,0.748775,0.429532,0.198237,0.803753,0.00640863,0.89936,0.968154,0.0619947,0.331462,0.893366,0.957118,0.415976,0.483589,0.552681,0.300279,0.313244,0.763751,0.963245,0.0650228,0.437796,0.356999,0.377568,0.0640972,0.549499,0.648297,0.92965,0.035571,0.51378,0.203283,0.977597,0.578201,0.237993,0.279278,0.359643,0.0289558,0.129651,0.891609,0.0917,0.765277,0.616815,0.439541,0.98079,0.255586,0.0263355,0.980849,0.101081,0.102997,0.00343692,0.313249,0.206579,0.107605,0.428895,0.363106,0.638663,0.000918925,0.628928,0.887065,0.225741,0.57805,0.426947,0.48601,0.301101,0.514589,0.926709,0.980642,0.690548,0.302885,0.270383,0.187045,0.484645,0.0912144,0.0732371,0.917012,0.383164,0.507586,0.226517,0.460043,0.648537,0.992046,0.0328811,0.119782,0.279518,0.690784,0.00543642,0.708523,0.0319105,0.672853,0.241373,0.220151,0.35867,0.539704,0.871407,0.960834,0.247241,0.092564,0.9963,0.0371823,0.543692,0.178649,0.597862,0.92924,0.159504,0.203547,0.909933,0.341725,0.688974,0.148667,0.170291,0.864038,0.958103,0.525876,0.448401,0.921485,0.916257,0.784447,0.38627,0.525951,0.834327,0.958635,0.892511,0.712093,0.499238,0.568268,0.0211605,0.149146,0.711286,0.93384,0.742095,0.0295538,0.584741,0.22043,0.496413,0.27377,0.731188,0.142523,0.625981,0.0159218,0.970163,0.0143083,0.77792,0.0164837,0.655888,0.799807,0.381814,0.275479,0.903808,0.632363,0.942946,0.885147,0.356439,0.795541,0.403763,0.252508,0.75314,0.453203,0.312597,0.180516,0.713993,0.581235,0.791154,0.855175,0.648221,0.485447,0.819221,0.444343,0.881063,0.568154,0.641724,0.631801,0.732289,0.477178,0.284005,0.910053,0.104315,0.743606,0.654983,0.605573,0.361799,0.17419,0.998804,0.627425,0.547637,0.774398,0.867561,0.771649,0.398066,0.373917,0.590859,0.526378,0.30944,0.385935,0.814734,0.420388,0.0670103,0.841944,0.926209,0.539212,0.724583,0.974434,0.917786,0.925302,0.666819,0.559188,0.575686,0.256306,0.805597,0.268969,0.460799,0.823521,0.299051,0.937283,0.377358,0.590981,0.430297,0.152858,0.47921,0.0883432,0.441407,0.700765,0.830955,0.933075,0.261198,0.795442,0.486707,0.945884,0.940631,0.75575,0.645933,0.711498,0.269198,0.455791,0.832594,0.751198,0.257569,0.682777,0.212674,0.303289,0.421972,0.231556,0.512498,0.788217,0.480599,0.14643,0.909685,0.20094,0.496989,0.7797,0.568643,0.434216,0.547828,0.734771,0.621369,0.231825,0.286312,0.0126286,0.608392,0.344082,0.580394,0.338202,0.280542,0.476348,0.0246789,0.17346,0.0829558,0.682805,0.464969,0.530586,0.340064,0.40388,0.989425,0.761395,0.850592,0.105128,0.543496,0.549053,0.385336,0.695487,0.169571,0.0611623,0.771689,0.703898,0.239989,0.491172,0.451383,0.222288,0.792714,0.442045,0.626858,0.84426,0.563591,0.818948,0.434204,0.363985,0.935012,0.0076912,0.000901461,0.970554,0.435563,0.387588,0.553037,0.0774112,0.912035,0.01096,0.571694,0.622135,0.557698,0.665999,0.270423,0.0408224,0.700571,0.253831,0.440211,0.437812,0.178372,0.94455,0.361074,0.257086,0.51897,0.589888,0.913778,0.871874,0.740132,0.106293,0.965446,0.676014,0.289816,0.666746,0.634509,0.555469,0.375232,0.0357183,0.588089,0.503018,0.626509,0.0517621,0.265104,0.568249,0.969771,0.128411,0.135865,0.879849,0.230157,0.379714,0.618496,0.104926,0.428828,0.995724,0.686869,0.137492,0.786499,0.498906,0.398773,0.19944,0.337602,0.385369,0.00837874,0.210266,0.371561,0.0682523,0.90637,0.340118,0.270885,0.450094,0.979169,0.559731,0.24488,0.18492,0.172175,0.516291,0.738809,0.582791,0.18456,0.870085,0.287161,0.585724,0.773904,0.437795,0.918188,0.78261,0.750529,0.0897318,0.8635,0.88046,0.353207,0.838993,0.382359,0.165872,0.484781,0.303128,0.570506,0.151199,0.0465282,0.870781,0.475335,0.154991,0.0688103,0.871296,0.47829,0.149288,0.949294,0.250139,0.660523,0.95025,0.484479,0.624677,0.983064,0.347861,0.428181,0.276089,0.787104,0.580219,0.154176,0.9122,0.745776,0.491839,0.460392,0.172713,0.277767,0.759876,0.874008,0.558248,0.0350287,0.562961,0.645292,0.0465707,0.21923,0.280289,0.0616956,0.109554,0.598479,0.936513,0.0500372,0.158672,0.958406,0.289593,0.968473,0.00146145,0.834491,0.489207,0.722545,0.0966213,0.81368,0.437851,0.927716,0.365452,0.646737,0.0922474,0.492731,0.258105,0.132655,0.775371,0.35159,0.848991,0.0646768,0.269073,0.455314,0.998864,0.0298073,0.963369,0.599822,0.0509596,0.486825,0.411387,0.00931948,0.863088,0.0628229,0.92636,0.0710368,0.368095,0.683832,0.770589,0.590074,0.134712,0.894778,0.640793,0.846548,0.747585,0.266223,0.968493,0.895457,0.643851,0.433694,0.0641984,0.561183,0.534057,0.174758,0.0113153,0.724996,0.884882,0.972111,0.641482,0.407835,0.924462,0.154688,0.020312,0.571598,0.423251,0.474465,0.99826,0.888969,0.896821,0.670073,0.391016,0.770232,0.0633501,0.145594,0.108308,0.698016,0.789492,0.753584,0.53484,0.704784,0.789499,0.0393685,0.324356,0.690647,0.492637,0.00559342,0.996729,0.865,0.00119257,0.344097,0.826309,0.357608,0.457867,0.0284241,0.703952,0.808583,0.692154,0.466696,0.799907,0.654046,0.301406,0.45985,0.511583,0.930935,0.307189,0.0428245,0.323565,0.757048,0.298272,0.111251,0.490037,0.934457,0.831651,0.734088,0.487687,0.312854,0.106264,0.366442,0.55674,0.230589,0.143961,0.213188,0.619691,0.408733,0.434389,0.895563,0.654823,0.0601701,0.723589,0.961606,0.703582,0.156227,0.459786,0.733833,0.990717,0.682005,0.976936,0.922725,0.996857,0.183106,|0.822173,0.781757,0.171856,0.176718,0.9639,0.0987471,0.844059,0.861577,0.0652753,0.00779748,0.395378,0.555341,0.0368671,0.644112,0.793752,0.109153,0.0666533,0.103999,0.757479,0.00854164,0.580065,0.101559,0.317646,0.512192,0.354508,0.129291,0.231675,0.481963,0.13564,0.985516,0.795705,0.277589,0.958403,0.608004,0.449168,0.991074,0.299623,0.258201,0.527552,0.354692,0.216293,0.484606,0.471582,0.943963,0.992931,0.192212,0.684783,0.631361,0.243949,0.0774361,0.109975,0.071466,0.841886,0.691048,0.259812,0.220062,0.558328,0.951087,0.23326,0.015923,0.748834,0.345675,0.0146124,0.00405735,0.336094,0.479323,0.391956,0.393085,0.104089,0.551348,0.0728227,0.808352,0.872316,0.239319,0.411764,0.954729,0.148573,0.843053,0.419985,0.792491,0.808404,0.0670115,0.240715,0.148528,0.888023,0.560693,0.423471,0.507083,0.153979,0.105181,0.133578,0.721707,0.849636,0.947542,0.757703,0.045167,0.88072,0.637011,0.974147,0.482311,0.0807046,0.693324,0.511821,0.479088,0.515854,0.138457,0.388697,0.142458,0.0334588,0.794458,0.024755,0.0491719,0.848885,0.690801,0.638843,0.717662,0.717901,0.508417,0.0264987,0.66981,0.447674,0.87407,0.585274,0.921337,0.0675979,0.900154,0.424001,0.990284,0.453026,0.560503,0.76392,0.444569,0.127584,0.722914,0.301312,0.525671,0.745241,0.535872,0.485305,0.776493,0.0539563,0.351377,0.876985,0.729015,0.48244,0.658063,0.920837,0.209233,0.686556,0.825624,0.0637717,0.930595,0.0457206,0.693437,0.172135,0.503371,0.154593,0.125951,0.91165,0.43271,0.207905,0.799086,0.962031,0.202071,0.275167,0.00410914,0.767661,0.312027,0.590767,0.897472,0.994777,0.446015,0.545099,0.138678,0.197506,0.475432,0.569196,0.304084,0.983677,0.261474,0.280287,0.101121,0.162922,0.525994,0.575051,0.630084,0.751767,0.208485,0.116857,0.525345,0.9803,0.921275,0.803034,0.384192,0.626115,0.209462,0.280438,0.0417498,0.434129,0.734926,0.0384458,0.177241,0.532456,0.316528,0.112044,0.533619,0.892357,0.541578,0.860331,0.525969,0.710722,0.327561,0.864854,0.0359784,0.981209,0.855058,0.38898,0.430767,0.153298,0.748406,0.736392,0.157581,0.779226,0.941917,0.919618,0.457003,0.247158,0.690977,0.966464,0.380219,0.613649,0.762643,0.498181,0.383397,0.830204,0.289649,0.813482,0.0617709,0.0775385,0.0475207,0.720235,0.898211,0.969321,0.131768,0.811045,0.00526708,0.907224,0.103046,0.198852,0.796763,0.303365,0.636359,0.73125,0.688758,0.888676,0.608544,0.606692,0.46799,0.179591,0.202283,0.858928,0.811294,0.195809,0.853318,0.244902,0.958967,0.230834,0.484871,0.968253,0.337984,0.608955,0.574977,0.456498,0.801227,0.223388,0.958419,0.401719,0.346979,0.842735,0.0180829,0.136181,0.293662,0.505261,0.596999,0.794595,0.376622,0.0945023,0.51507,0.352167,0.500361,0.656436,0.366438,0.615591,0.888337,0.972853,0.100785,0.620043,0.765684,0.288957,0.419593,0.0617222,0.589293,0.983728,0.359902,0.527288,0.85051,0.613513,0.542649,0.621387,0.505831,0.974256,0.309455,0.182338,0.655891,0.780625,0.366057,0.257103,0.528826,0.29192,0.0372364,0.872385,0.416815,0.345229,0.220963,0.971123,0.904481,0.141257,0.0728663,0.893406,0.411187,0.643975,0.8577,0.368486,0.307007,0.206626,0.382184,0.892452,0.245479,0.058305,0.789972,0.24765,0.363571,0.248083,0.286755,0.3703,0.348108,0.835396,0.364154,0.911775,0.82315,0.252003,0.823498,0.721359,0.225751,0.183838,0.158111,0.893368,0.737844,0.484055,0.402752,0.193885,0.257732,0.75496,0.249125,0.134248,0.641837,0.484765,0.416312,0.413149,0.577721,0.363916,0.012601,0.97472,0.053948,0.0422923,0.99395,0.984738,0.75782,0.866721,0.7374,0.398186,0.374079,0.0975677,0.901042,0.938313,0.598302,0.324939,0.693243,0.137608,0.122506,0.626975,0.763372,0.705818,0.600237,0.556805,0.350171,0.90567,0.796752,0.600705,0.127779,0.399855,0.253814,0.956578,0.590287,0.523645,0.0766934,0.283415,0.546789,0.0908971,0.326691,0.518734,0.801661,0.840053,0.76847,0.204645,0.904533,0.874195,0.00690854,0.731437,0.613671,0.16187,0.86125,0.931444,0.867797,0.829072,0.654112,0.878853,0.921891,0.657142,0.265478,0.200449,0.469302,0.588912,0.420165,0.075944,0.0550196,0.129265,0.597416,0.150217,0.0881261,0.390486,0.85815,0.868329,0.874816,0.88588,0.54278,0.763141,0.521764,0.215211,0.992934,0.582112,0.542701,0.739137,0.389259,0.354984,0.362829,0.723007,0.821402,0.624632,0.505491,0.459798,0.763596,0.324411,0.859383,0.628711,0.000370085,0.567628,0.0468999,0.617412,0.586192,0.416362,0.183605,0.316914,0.842604,0.801039,0.641391,0.325126,0.0269969,0.294083,0.467581,0.283173,0.656353,0.169107,0.561262,0.276643,0.160536,0.711952,0.343183,0.105609,0.999041,0.223547,0.805937,0.194259,0.485455,0.928332,0.503052,0.975849,0.803141,0.68885,0.442111,0.197463,0.94929,0.750924,0.731736,0.788523,0.928556,0.913196,0.878625,0.760395,0.234761,0.623336,0.907059,0.574619,0.589999,0.40083,0.267551,0.54739,0.218956,0.807881,0.782339,0.561417,0.760607,0.49676,0.873427,0.549781,0.219487,0.622648,0.502615,0.991502,0.192511,0.983714,0.517101,0.334885,0.224473,0.62069,0.706734,0.188853,0.845751,0.968583,0.403851,0.694766,0.90163,0.695989,0.0599878,0.257196,0.20862,0.526139,0.755224,0.496896,0.314789,0.312028,0.0211887,0.607941,0.731699,0.0988339,0.377288,0.623762,0.961525,0.679304,0.306812,0.414217,0.0908154,0.840027,0.206615,0.718402,0.40004,0.828148,0.91902,0.641472,0.871169,0.926259,0.588896,0.841407,0.338058,0.150302,0.516482,0.718516,0.239917,0.228175,0.366279,0.253325,0.464042,0.443633,0.374481,0.277747,0.243465,0.344906,0.234329,0.270557,0.343669,0.793933,0.715432,0.698383,0.425487,0.680913,0.734464,0.310804,0.73057,0.372016,0.168411,0.803379,0.61578,0.460908,0.578324,0.670362,0.530173,0.662355,0.0911756,0.648407,0.603308,0.424432,0.759061,0.171447,0.742248,0.577719,0.38944,0.0911134,0.195124,0.365222,0.790292,0.254164,0.000530422,0.356129,0.600031,0.508027,0.805107,0.961708,0.0643251,0.772738,0.00618541,0.193604,0.12814,0.593863,0.550154,0.332927,0.730524,0.0139545,0.720648,0.190047,0.958119,0.614024,0.0915251,0.306835,0.0667875,0.566507,0.104483,0.0616095,0.97666,0.233217,0.146263,0.510391,0.566008,0.524556,0.158326,0.110883,0.679144,0.110719,0.403954,0.734861,0.65247,0.0400903,0.530402,0.789687,0.112153,0.679776,0.468945,0.596719,0.509192,0.412689,0.100126,0.0497276,0.207282,0.350652,0.875307,0.671031,0.213598,0.297156,0.0609936,0.521483,0.887446,0.210297,0.64448,0.64658,0.046157,0.379944,0.795004,0.278453,0.439554,0.0494408,0.0330024,0.596507,0.185477,0.0575487,0.839295,0.457551,0.974806,0.113038,0.782579,0.874653,0.0792671,0.718098,0.267595,0.113158,0.908516,0.902802,0.696113,0.374134,0.221659,0.743796,0.132224,0.462658,0.857372,0.574001,0.328322,0.287127,0.375775,0.838437,0.173565,0.686033,0.585002,0.0176121,0.564193,0.309977,0.108854,0.766745,0.511178,0.566414,0.885062,0.753863,0.567121,0.495654,0.0951005,0.947035,0.294095,0.613026,0.592669,0.44324,0.927897,0.929996,0.315649,0.584308,0.0647542,0.503281,0.916962,0.275264,0.287128,0.291866,0.570996,0.547758,0.874217,0.735089,0.582279,0.635329,0.621409,0.180046,0.328169,0.441573,0.697072,0.827148,0.980394,0.455225,0.337701,0.317338,0.264801,0.608562,0.942874,0.871401,0.957773,0.646087,0.84498,0.376378,0.431556,0.556955,0.734856,0.163804,0.224093,0.140315,0.116669,0.107478,0.15445,0.402369,0.98295,0.79034,0.911054,0.0998629,0.204653,0.750116,0.81242,0.644356,0.156248,0.889796,0.224413,0.41138,0.91149,0.572678,0.249916,0.0851395,0.163516,0.966744,0.42854,0.183675,0.0223908,0.017177,0.437979,0.0492285,0.855471,0.398064,0.379216,0.994064,0.519828,0.40338,0.557763,0.0141321,0.920763,0.482454,0.823717,0.590406,0.154265,0.888169,0.245924,0.995827,0.833318,0.870249,0.641373,0.710651,0.12034,0.159901,0.944309,0.216184,0.611552,0.149313,0.100393,0.146488,0.31758,0.204888,0.245155,0.964436,0.981507,0.201371,0.928344,0.711239,0.406317,0.128022,0.562234,0.0163398,0.772074,0.801817,0.11232,0.173406,0.743034,0.340591,0.626816,0.239116,0.254226,0.18097,0.382462,0.55614,0.755766,0.533016,0.969822,0.0174692,0.774692,0.392638,0.6361,0.996942,0.971483,0.870011,0.580739,0.900402,0.266611,0.685869,0.573058,0.155802,0.828405,0.150773,0.544522,0.167695,0.653658,0.396092,0.0498579,0.59618,0.49923,0.240711,0.591066,0.943452,0.840735,0.382352,0.753906,0.683706,0.753486,0.447658,0.751182,0.453574,0.20536,0.667093,0.599015,0.0783135,0.65901,0.617335,0.585261,0.77115,0.369942,0.673286,0.03057,0.385298,0.867961,0.35175,0.543235,0.139831,0.576806,0.140698,0.178837,0.171634,0.949278,0.910505,0.0378715,0.392309,0.178885,0.327655,0.679607,0.958737,0.0200254,0.58044,0.53966,0.74095,0.223964,0.556135,0.457141,0.574039,0.715216,0.476858,0.803286,0.19645,0.248294,0.364244,0.311156,0.610309,0.416371,0.0838195,0.982404,0.654783,0.0429608,0.810315,0.473159,0.465768,0.617098,0.778893,0.248225,0.208136,0.0772462,0.543426,0.333212,0.977097,0.8077,0.694816,0.3572,0.470289,0.891086,0.0549817,0.263885,0.812092,0.696549,0.496996,0.382091,0.325166,0.890881,0.0545914,0.332551,0.270594,0.150278,0.232604,0.486206,0.230469,0.674721,0.0361202,0.849142,0.536173,0.917701,0.00313461,0.236215,0.0374138,0.838059,0.697949,0.359189,0.0434055,0.230777,0.0776235,0.517238,0.0440235,0.835193,0.705989,0.974514,0.559528,0.733253,0.965019,0.431564,0.455626,0.80957,0.153696,0.316919,|0.803234,0.0520386,0.551636,0.315817,0.960536,0.317769,0.491218,0.26856,0.0895112,0.261195,0.66065,0.595934,0.842029,0.497912,0.350247,0.965808,0.891459,0.178008,0.421168,0.207651,0.00997692,0.58594,0.566798,0.331208,0.758968,0.918754,0.840536,0.872866,0.89413,0.758206,0.739244,0.211754,0.500953,0.00749499,0.217693,0.681592,0.280634,0.925077,0.88085,0.74874,0.104653,0.788137,0.600611,0.738138,0.258358,0.654932,0.539571,0.12185,0.780847,0.626235,0.659559,0.86636,0.833061,0.615375,0.112032,0.695393,0.114362,0.617639,0.393398,0.112095,0.818234,0.79149,0.121273,0.445633,0.352149,0.603105,0.233812,0.756661,0.557125,0.220714,0.662697,0.249539,0.334547,0.21585,0.00520313,0.849539,0.488424,0.767924,0.805971,0.00898445,0.463482,0.971363,0.677779,0.25324,0.547729,0.402209,0.0584049,0.667078,0.792441,0.796724,0.94074,0.993352,0.399324,0.630937,0.112744,0.540414,0.0876438,0.98431,0.612819,0.437418,0.314816,0.773515,0.999258,0.549078,0.784628,0.161546,0.349561,0.0775791,0.934049,0.475649,0.640251,0.627198,0.995956,0.683766,0.782772,0.752831,0.970107,0.507756,0.0433091,0.424149,0.903481,0.401296,0.408766,0.72252,0.736162,0.483806,0.580125,0.971812,0.838918,0.0790003,0.491397,0.883407,0.453379,0.442602,0.833758,0.728931,0.271336,0.119787,0.488916,0.0105883,0.827749,0.291023,0.711928,0.218785,0.311134,0.674938,0.0369238,0.843939,0.124835,0.911597,0.370537,0.288469,0.77037,0.0983102,0.198469,0.853218,0.722197,0.13843,0.203256,0.105681,0.431773,0.0699774,0.956453,0.779824,0.581435,0.75285,0.311302,0.918168,0.894571,0.269198,0.149177,0.347791,0.378679,0.733569,0.146424,0.778086,0.152334,0.629122,0.913848,0.341881,0.587129,0.884451,0.170681,0.91187,0.594123,0.797427,0.102798,0.289184,0.963182,0.485942,0.15528,0.164214,0.236989,0.27923,0.526757,0.774039,0.676702,0.543738,0.450538,0.432855,0.742695,0.276059,0.696778,0.421626,0.00316155,0.176475,0.618113,0.899121,0.029605,0.701122,0.323703,0.928617,0.00870311,0.657648,0.336521,0.324688,0.385998,0.112158,0.445229,0.980831,0.42874,0.356349,0.722248,0.998106,0.285286,0.701659,0.308363,0.613389,0.837644,0.475329,0.851089,0.530457,0.815931,0.143069,0.0184117,0.446999,0.885593,0.415328,0.747754,0.916004,0.616258,0.636839,0.644827,0.519132,0.905973,0.200754,0.19816,0.114301,0.662955,0.895504,0.47563,0.0979388,0.395289,0.659112,0.707697,0.229751,0.0887172,0.486909,0.642641,0.465323,0.447906,0.711519,0.400925,0.801123,0.0816214,0.684449,0.16682,0.0106726,0.0638901,0.687834,0.262423,0.156785,0.616529,0.271708,0.514933,0.404769,0.380549,0.816862,0.0596344,0.348894,0.976072,0.142945,0.203739,0.985908,0.863892,0.907641,0.930137,0.708086,0.98035,0.465447,0.829684,0.319519,0.665065,0.731066,0.774317,0.606949,0.780607,0.670024,0.62419,0.202656,0.319045,0.0164585,0.923382,0.513562,0.0135638,0.116356,0.857395,0.18395,0.170915,0.189059,0.634864,0.825771,0.334491,0.135695,0.898324,0.320727,0.470507,0.841699,0.508449,0.613633,0.50176,0.590256,0.935453,0.460472,0.119704,0.866913,0.281202,0.947204,0.550282,0.692908,0.810288,0.197992,0.770539,0.794852,0.199601,0.790046,0.601265,0.296955,0.951822,0.118451,0.640235,0.850079,0.177926,0.950452,0.199188,0.0556863,0.273443,0.019465,0.476935,0.529906,0.9102,0.550892,0.442686,0.606396,0.851344,0.488062,0.358459,0.677319,0.889147,0.476149,0.143943,0.817018,0.335741,0.622173,0.787088,0.903643,0.584438,0.561493,0.943984,0.713064,0.889661,0.622448,0.969146,0.414171,0.549502,0.0444787,0.63213,0.863457,0.358655,0.516822,0.721842,0.299184,0.795651,0.515206,0.148778,0.914569,0.697068,0.55026,0.854034,0.378695,0.502643,0.779864,0.295962,0.794677,0.271479,0.980652,0.208019,0.942643,0.652035,0.589021,0.65845,0.402617,0.531483,0.400902,0.572174,0.237381,0.287188,0.789391,0.78606,0.950111,0.883513,0.253486,0.760364,0.93683,0.969848,0.151986,0.294342,0.636045,0.556281,0.587018,0.479177,0.0546228,0.247276,0.0154776,0.0920127,0.396354,0.387707,0.747359,0.778993,0.545447,0.643719,0.850926,0.292244,0.815273,0.741846,0.0938377,0.495893,0.515416,0.436856,0.266932,0.241845,0.324639,0.939581,0.877424,0.956472,0.277955,0.501748,0.122787,0.922999,0.117941,0.695732,0.661722,0.988641,0.0774171,0.793433,0.649965,0.781287,0.958316,0.582995,0.952881,0.420011,0.850633,0.436536,0.753635,0.707029,0.0409952,0.134594,0.262261,0.829083,0.696292,0.350838,0.0985617,0.115875,0.745484,0.24922,0.345962,0.454846,0.278201,0.715414,0.855981,0.513834,0.411913,0.931727,0.315282,0.48894,0.311342,0.648351,0.89289,0.952076,0.431963,0.191213,0.639009,0.695936,0.429901,0.0489363,0.125939,0.153107,0.687147,0.110582,0.262538,0.761867,0.0586772,0.183418,0.158542,0.647427,0.725134,0.95368,0.348275,0.0727478,0.0407866,0.452628,0.451563,0.837462,0.587891,0.643743,0.976273,0.891236,0.592586,0.598985,0.519045,0.991601,0.717783,0.496838,0.983606,0.931804,0.555508,0.255823,0.874801,0.416937,0.0897808,0.748478,0.00121474,0.165328,0.454094,0.87394,0.741176,0.922792,0.348263,0.468352,0.361435,0.274657,0.345431,0.502876,0.367737,0.584433,0.665005,0.76412,0.853475,0.195952,0.0569797,0.0840449,0.582785,0.877543,0.44346,0.0714158,0.549134,0.890463,0.917543,0.608297,0.667755,0.234346,0.146501,0.100284,0.765793,0.76821,0.343633,0.0357683,0.424541,0.809714,0.889236,0.253102,0.118357,0.826682,0.785405,0.945755,0.130678,0.0436734,0.442724,0.933586,0.88048,0.834009,0.610678,0.327991,0.242524,0.881299,0.300618,0.254308,0.541586,0.206277,0.889609,0.355106,0.91925,0.858656,0.0185683,0.405928,0.444637,0.856906,0.82567,0.704849,0.776112,0.929765,0.530881,0.677952,0.425268,0.278802,0.317416,0.110673,0.765437,0.752079,0.391569,0.963991,0.257232,0.0143725,0.591393,0.98045,0.196422,0.458363,0.581286,0.936516,0.182978,0.435543,0.598365,0.882,0.173303,0.825464,0.533094,0.864156,0.224835,0.661918,0.0950563,0.883668,0.0116563,0.990972,0.844384,0.877577,0.578661,0.185314,0.1841,0.728766,0.745074,0.793322,0.208404,0.74966,0.453522,0.733932,0.13017,0.623603,0.448734,0.660599,0.0498674,0.445608,0.894226,0.620615,0.100922,0.889179,0.192393,0.122692,0.362568,0.543906,0.737424,0.959889,0.751229,0.236748,0.498018,0.679873,0.886263,0.505905,0.799033,0.823619,0.726315,0.708467,0.00983596,0.968871,0.183289,0.125288,0.525433,0.436801,0.290198,0.75833,0.875809,0.886551,0.379485,0.515664,0.111269,0.86187,0.132445,0.274508,0.454608,0.578014,0.261965,0.753735,0.924342,0.571128,0.137374,0.643495,0.526985,0.962883,0.0173519,0.121888,0.331049,0.458385,0.242043,0.082295,0.86714,0.208256,0.0339285,0.107115,0.952277,0.975429,0.932381,0.285622,0.832755,0.94179,0.161144,0.382193,0.871365,0.926551,0.6252,0.408241,0.423652,0.479998,0.191646,0.123768,0.959493,0.710238,0.731479,0.781682,0.382018,0.301487,0.84539,0.703561,0.924849,0.380125,0.715007,0.167219,0.839215,0.755101,0.387823,0.306687,0.948043,0.878468,0.103299,0.930533,0.627752,0.705413,0.598372,0.604889,0.749203,0.0890016,0.277639,0.0173397,0.249301,0.0849194,0.414155,0.424026,0.968886,0.0989779,0.0501851,0.415495,0.873598,0.0114631,0.744315,0.330164,0.092786,0.927709,0.311031,0.257315,0.292644,0.531684,0.222937,0.164782,0.364018,0.82394,0.327748,0.55952,0.478533,0.859332,0.465047,0.00921136,0.39367,0.739847,0.426958,0.0299218,0.919303,0.558333,0.486007,0.111148,0.988564,0.677087,0.0596981,0.479283,0.662217,0.690301,0.993707,0.0540525,0.385343,0.138272,0.213943,0.934917,0.58509,0.980663,0.0854983,0.429652,0.701777,0.260464,0.372102,0.084674,0.0848485,0.537777,0.641661,0.790287,0.686237,0.809329,0.0969671,0.438587,0.497391,0.385391,0.364233,0.902824,0.905239,0.0577399,0.694573,0.65598,0.154383,0.255231,0.583904,0.509961,0.0706034,0.2779,0.962049,0.889755,0.353755,0.0874179,0.877312,0.91745,0.712954,0.432815,0.165572,0.566968,0.767757,0.289088,0.238607,0.164019,0.356439,0.150508,0.840505,0.615937,0.165969,0.761858,0.264043,0.173205,0.677811,0.104336,0.820193,0.643472,0.98783,0.588785,0.40515,0.192526,0.057745,0.716368,0.0767365,0.216236,0.196595,0.165407,0.590596,0.0827057,0.917232,0.764881,0.747756,0.831633,0.870714,0.307715,0.646892,0.0145117,0.821875,0.352707,0.229343,0.723749,0.456668,0.556124,0.302026,0.544053,0.346471,0.337873,0.472092,0.354947,0.835794,0.80986,0.647017,0.976689,0.949714,0.0281593,0.628522,0.751763,0.228036,0.832628,0.0956358,0.889362,0.59507,0.37593,0.488695,0.217444,0.196164,0.162618,0.413068,0.386356,0.9383,0.888212,0.092768,0.775021,0.952798,0.479179,0.741711,0.470709,0.783494,0.839749,0.00975531,0.832602,0.156561,0.870285,0.480962,0.0505092,0.997457,0.371069,0.569889,0.78556,0.620575,0.248083,0.876116,0.958567,0.460681,0.322537,0.543696,0.362719,0.021558,0.564291,0.62473,0.927606,0.886432,0.700525,0.299683,0.879188,0.0215908,0.625099,0.0508993,0.0780816,0.940086,0.860044,0.96705,0.539759,0.17699,0.713926,0.0111256,0.781893,0.476228,0.76476,0.313089,0.829392,0.376371,0.365346,0.744694,0.888117,0.0766147,0.305302,0.724198,0.053025,0.439387,0.477147,0.804953,0.19815,0.0744824,0.327281,0.380059,0.397729,0.947416,0.766195,0.76831,0.952156,0.923983,0.563458,0.462097,0.153384,0.673739,0.363745,0.646635,0.423012,0.277664,0.949975,0.99056,0.287352,0.729796,0.81595,0.685289,0.283959,0.921573,0.863886,0.616688,0.0921635,0.490855,|0.710832,0.776247,0.433286,0.113858,0.186421,0.59903,0.18764,0.350545,0.23317,0.46902,0.757476,0.11048,0.159015,0.300379,0.51099,0.918526,0.707685,0.673895,0.952876,0.765122,0.961797,0.923212,0.928127,0.257238,0.605055,0.325725,0.00597787,0.626333,0.578367,0.87619,0.702965,0.763545,0.272037,0.496586,0.252793,0.131529,0.232785,0.00452805,0.197886,0.104637,0.0654774,0.351443,0.109608,0.620773,0.523221,0.785033,0.508785,0.799731,0.276076,0.61737,0.759618,0.559928,0.389564,0.266281,0.290135,0.0450383,0.879092,0.684517,0.118116,0.347357,0.44055,0.322622,0.8794,0.78804,0.436508,0.0455464,0.676916,0.36245,0.838592,0.946974,0.548386,0.78646,0.364657,0.672145,0.622465,0.856034,0.458704,0.449973,0.676909,0.611258,0.762774,0.551363,0.0799054,0.812655,0.748499,0.11946,0.902633,0.0321945,0.857179,0.254753,0.350583,0.882453,0.20657,0.415839,0.63427,0.955068,0.640343,0.543259,0.50831,0.927485,0.325126,0.996265,0.752527,0.699618,0.654513,0.703198,0.587309,0.179145,0.850892,0.895465,0.212986,0.307699,0.980003,0.261638,0.81495,0.436838,0.866831,0.300694,0.0869946,0.703707,0.900535,0.339153,0.741506,0.82143,0.564886,0.774757,0.947577,0.929426,0.960555,0.442812,0.869667,0.79678,0.743084,0.827788,0.62569,0.511476,0.443201,0.0850727,0.3135,0.404833,0.848148,0.0778315,0.330373,0.780805,0.45234,0.722133,0.474168,0.793372,0.0261459,0.393771,0.874212,0.578276,0.831978,0.0323996,0.108823,0.453885,0.606129,0.575591,0.965583,0.581395,0.656067,0.18651,0.584896,0.534504,0.599976,0.31768,0.543554,0.116597,0.293906,0.501169,0.793694,0.703703,0.326392,0.532297,0.800496,0.494548,0.550142,0.815975,0.687831,0.216332,0.183064,0.439784,0.958765,0.535714,0.541059,0.739584,0.82638,0.449124,0.934997,0.881098,0.741916,0.414545,0.6136,0.254669,0.0213377,0.367093,0.716945,0.0389956,0.501773,0.30659,0.6539,0.598554,0.82158,0.166913,0.787328,0.471317,0.835987,0.827986,0.240543,0.218055,0.934976,0.950543,0.776967,0.994438,0.0482615,0.348676,0.424656,0.214967,0.190881,0.750104,0.267326,0.840774,0.786801,0.630116,0.563643,0.52881,0.78666,0.718785,0.64405,0.495978,0.0595892,0.245129,0.907261,0.274064,0.706071,0.290156,0.322288,0.379942,0.770571,0.320138,0.116631,0.143247,0.951711,0.206937,0.489328,0.915785,0.104791,0.496954,0.188103,0.371468,0.495164,0.806338,0.202286,0.520047,0.586938,0.849947,0.192483,0.958075,0.532938,0.000142872,0.127928,0.471034,0.498964,0.612653,0.854149,0.475016,0.663599,0.154523,0.442812,0.607949,0.352606,0.787279,0.69447,0.611289,0.838395,0.474576,0.994146,0.251512,0.115957,0.478748,0.26837,0.341682,0.160801,0.0201299,0.0670297,0.686916,0.394578,0.793545,0.346993,0.799451,0.508976,0.41819,0.36446,0.45251,0.992893,0.766049,0.848007,0.119858,0.601381,0.373943,0.945809,0.641443,0.961711,0.8014,0.236147,0.900516,0.492159,0.775957,0.694913,0.328778,0.570362,0.930973,0.976667,0.573156,0.324408,0.238377,0.479592,0.925633,0.334571,0.0657679,0.833461,0.74465,0.467556,0.404606,0.585359,0.427454,0.225704,0.594249,0.459934,0.901873,0.17136,0.355726,0.62055,0.275328,0.464316,0.488302,0.137827,0.857937,0.262372,0.724053,0.214891,0.0864995,0.626448,0.605823,0.714109,0.563315,0.408587,0.0805882,0.580059,0.273845,0.991632,0.671385,0.447072,0.958895,0.0862219,0.634558,0.810965,0.250297,0.879133,0.873306,0.417416,0.311483,0.294865,0.00450313,0.346867,0.943638,0.890012,0.885883,0.445446,0.523874,0.960102,0.45895,0.191646,0.089869,0.541045,0.225661,0.0473298,0.957181,0.284667,0.389552,0.332359,0.953703,0.616894,0.867213,0.947269,0.560292,0.642943,0.459797,0.454469,0.22954,0.715904,0.523045,0.54567,0.526446,0.248095,0.735199,0.207154,0.335502,0.57608,0.507854,0.347956,0.0699255,0.549815,0.332288,0.275228,0.281746,0.51572,0.952249,0.592583,0.917667,0.0118876,0.810868,0.272074,0.970306,0.0575032,0.0981951,0.0756023,0.166808,0.0543649,0.70746,0.731291,0.186595,0.485537,0.156885,0.494434,0.2991,0.758518,0.739344,0.780535,0.707702,0.847072,0.956404,0.245684,0.867633,0.808775,0.988563,0.57718,0.305399,0.483201,0.621395,0.660942,0.767087,0.492242,0.761288,0.665495,0.0609308,0.416344,0.551629,0.339007,0.28349,0.3799,0.0213206,0.22106,0.245622,0.0955797,0.0110661,0.265146,0.332678,0.718645,0.791826,0.049604,0.846544,0.398931,0.394179,0.66137,0.893742,0.170964,0.815818,0.190767,0.713245,0.520347,0.016571,0.759589,0.221122,0.761525,0.0271167,0.727877,0.127156,0.516029,0.575842,0.0528699,0.945482,0.775186,0.178241,0.634294,0.85571,0.625648,0.40468,0.050887,0.143542,0.532749,0.333249,0.801007,0.352127,0.0654424,0.420946,0.728423,0.339229,0.677149,0.666644,0.220706,0.784993,0.86246,0.379138,0.955197,0.848099,0.367006,0.110777,0.606954,0.0239388,0.823202,0.00538981,0.987038,0.270561,0.478625,0.740906,0.297095,0.216709,0.238433,0.119912,0.989904,0.622829,0.365609,0.376744,0.416266,0.216995,0.663948,0.7116,0.0898393,0.765329,0.578221,0.329092,0.857588,0.924837,0.471317,0.316457,0.0857821,0.00300431,0.866892,0.262131,0.944895,0.0645272,0.594795,0.463956,0.381097,0.305934,0.33066,0.0411146,0.571918,0.46282,0.30839,0.173597,0.0166786,0.984415,0.92146,0.646689,0.30523,0.841378,0.974407,0.703959,0.25085,0.709316,0.442337,0.65593,0.0825379,0.388938,0.735285,0.0845873,0.156574,0.630051,0.211673,0.702982,0.9223,0.993451,0.736656,0.467426,0.5279,0.113782,0.203326,0.880806,0.235587,0.885761,0.869662,0.655027,0.869656,0.644815,0.715587,0.845695,0.826718,0.445084,0.894408,0.93654,0.480393,0.64167,0.884051,0.492038,0.122642,0.675074,0.93645,0.496501,0.889857,0.848905,0.725637,0.95445,0.617249,0.940698,0.0552685,0.31352,0.155956,0.714677,0.0698716,0.945766,0.938686,0.479756,0.286568,0.750435,0.907557,0.346203,0.0667245,0.556852,0.437252,0.320417,0.275993,0.0064621,0.961567,0.546227,0.818297,0.335868,0.471722,0.160424,0.0644348,0.878021,0.351873,0.0389153,0.684133,0.666383,0.183626,0.443989,0.0379946,0.432678,0.828114,0.558514,0.476786,0.506361,0.956283,0.374933,0.310981,0.328273,0.256439,0.477549,0.010697,0.493468,0.435865,0.867792,0.291776,0.979421,0.387394,0.00835419,0.950856,0.592007,0.392816,0.515193,0.0157126,0.519934,0.655455,0.32533,0.76687,0.4887,0.645937,0.195701,0.111959,0.174433,0.593565,0.700056,0.882153,0.371471,0.627983,0.182527,0.658405,0.893365,0.231154,0.106066,0.73188,0.984367,0.0515091,0.956779,0.0878508,0.431556,0.733208,0.827877,0.279532,0.186247,0.657336,0.353514,0.213584,0.270166,0.425058,0.14966,0.440848,0.443773,0.431244,0.211425,0.595997,0.897165,0.238488,0.350091,0.400348,0.0137511,0.114652,0.691752,0.207098,0.907549,0.807396,0.602512,0.101246,0.951843,0.118746,0.355844,0.482702,0.25905,0.289408,0.795557,0.393887,0.59991,0.415142,0.306544,0.785646,0.278375,0.805532,0.824394,0.0686427,0.63188,0.358544,0.315371,0.228379,0.110757,0.35848,0.568784,0.30553,0.846217,0.110352,0.578113,0.437318,0.50205,0.27389,0.37357,0.439439,0.403132,0.577832,0.141589,0.0723838,0.774709,0.604295,0.762711,0.874705,0.403146,0.722882,0.825028,0.106219,0.858678,0.205638,0.206835,0.51812,0.932264,0.675522,0.276127,0.881811,0.997765,0.19388,0.229778,0.467917,0.801469,0.90298,0.600695,0.620095,0.207959,0.822267,0.639147,0.0778553,0.947621,0.881812,0.42193,0.762251,0.043142,0.674269,0.718577,0.401686,0.269114,0.328946,0.261458,0.326772,0.757833,0.828213,0.51337,0.558348,0.404354,0.0599748,0.204983,0.18307,0.746211,0.401066,0.181196,0.95222,0.584244,0.978645,0.404421,0.844155,0.489451,0.876743,0.832288,0.35415,0.211343,0.268423,0.607011,0.915184,0.451863,0.856773,0.372159,0.314676,0.639985,0.280173,0.850786,0.312742,0.206246,0.5211,0.975263,0.663068,0.0454661,0.064154,0.395779,0.405144,0.202876,0.921091,0.517575,0.123903,0.40286,0.232369,0.970721,0.464624,0.0514902,0.861989,0.0472239,0.164308,0.165272,0.384335,0.840742,0.899833,0.597936,0.594805,0.132331,0.852036,0.908946,0.436746,0.173662,0.424566,0.904176,0.388932,0.161294,0.0278656,0.267611,0.133269,0.643254,0.593605,0.371142,0.645646,0.876271,0.653258,0.227185,0.660055,0.437675,0.714808,0.772863,0.335649,0.00555396,0.0165869,0.960036,0.927413,0.366053,0.831381,0.484423,0.434946,0.333106,0.759626,0.255302,0.647773,0.225916,0.0506779,0.236469,0.720382,0.159679,0.107496,0.575591,0.790979,0.764438,0.615102,0.967548,0.101535,0.504361,0.0590288,0.0104629,0.325642,0.298946,0.932696,0.18912,0.87243,0.430955,0.924898,0.870653,0.996151,0.492993,0.67835,0.0861203,0.270914,0.648845,0.247044,0.283926,0.232879,0.147845,0.671465,0.422005,0.233314,0.95194,0.703102,0.70235,0.674299,0.790064,0.968803,0.892055,0.305192,0.623173,0.513032,0.521356,0.81483,0.979485,0.375193,0.502281,0.36035,0.787966,0.762087,0.258015,0.863212,0.36513,0.167396,0.478156,0.815673,0.897202,0.0232512,0.905303,0.00599813,0.766553,0.417647,0.633477,0.275057,0.268182,0.146875,0.757425,0.326385,0.334863,0.30512,0.154484,0.310983,0.751754,0.444574,0.167828,0.21438,0.649067,0.887704,0.950791,0.870621,0.853026,0.896474,0.314383,0.495543,0.276322,0.600123,0.798396,0.00730389,0.464874,0.630871,0.950363,0.157821,0.587654,0.420694,0.228112,0.165435,0.458512,0.224768,0.130462,0.942807,0.934024,0.263121,0.887601,0.614064,0.580148,0.893747,0.410345,0.924092,0.583798,0.274384,0.779833,|0.069754,0.612457,0.579968,0.844193,0.758766,0.727983,0.677467,0.836469,0.46774,0.6331,0.85148,0.602378,0.527214,0.886266,0.984644,0.441445,0.803341,0.676966,0.405394,0.706155,0.534798,0.76777,0.941564,0.529868,0.36811,0.299271,0.3628,0.365419,0.634405,0.558927,0.199689,0.506467,0.44957,0.83887,0.710338,0.891985,0.00610608,0.43731,0.86624,0.664729,0.917278,0.715766,0.725484,0.50161,0.0749104,0.739546,0.342179,0.44317,0.752278,0.424205,0.150969,0.0642922,0.199074,0.509078,0.205847,0.473984,0.747572,0.110353,0.166619,0.72649,0.556101,0.0996897,0.685483,0.477914,0.191131,0.329201,0.159118,0.0216829,0.998457,0.000452161,0.846088,0.182055,0.594029,0.0320222,0.224533,0.912885,0.569476,0.921731,0.199467,0.932808,0.73433,0.238693,0.41314,0.199026,0.323273,0.943775,0.326402,0.133652,0.848074,0.670888,0.0138903,0.69058,0.265655,0.653958,0.0193408,0.807795,0.2217,0.990438,0.919657,0.712155,0.837678,0.0641323,0.136174,0.244112,0.389686,0.329951,0.190251,0.532695,0.703744,0.700544,0.624991,0.206093,0.211325,0.80251,0.123789,0.595581,0.675616,0.0785139,0.467548,0.0418908,0.246698,0.0771294,0.788219,0.782278,0.821783,0.177096,0.0102662,0.924376,0.412883,0.993308,0.0355583,0.733611,0.872225,0.216789,0.170091,0.964582,0.553417,0.471597,0.404787,0.990632,0.0392568,0.554601,0.535241,0.18025,0.100644,0.211619,0.845454,0.502338,0.791773,0.952247,0.679915,0.182828,0.706369,0.292268,0.421825,0.952128,0.976334,0.347617,0.253421,0.704109,0.292506,0.224758,0.493656,0.222628,0.350543,0.774195,0.877756,0.292892,0.926511,0.283071,0.0531668,0.83371,0.393439,0.232673,0.672477,0.741056,0.745,0.45399,0.589837,0.356185,0.0325277,0.642375,0.126468,0.937416,0.0665004,0.0190504,0.197059,0.198517,0.225311,0.471273,0.848352,0.492956,0.136591,0.0199817,0.342261,0.38219,0.14087,0.489816,0.0344215,0.584724,0.214986,0.297879,0.30228,0.0528827,0.597295,0.411151,0.570383,0.128171,0.10167,0.947041,0.519365,0.163483,0.86595,0.917858,0.211841,0.14519,0.293471,0.688421,0.122953,0.521847,0.555817,0.558976,0.012599,0.507958,0.26934,0.999501,0.223578,0.517258,0.023426,0.60001,0.727115,0.750032,0.556991,0.485834,0.94236,0.476086,0.360243,0.927149,0.937106,0.593542,0.278242,0.212953,0.51519,0.888929,0.410441,0.053908,0.287227,0.497451,0.353671,0.560947,0.11739,0.152107,0.377726,0.656992,0.824741,0.667525,0.173049,0.469514,0.30931,0.635123,0.771875,0.7487,0.765755,0.467953,0.935316,0.522161,0.265742,0.17625,0.375569,0.032956,0.0982633,0.711762,0.0345745,0.865449,0.996728,0.920771,0.404311,0.882104,0.00991851,0.794847,0.871023,0.371178,0.881806,0.358307,0.32893,0.664939,0.323613,0.291074,0.833072,0.746737,0.0972645,0.113695,0.373464,0.263098,0.445115,0.529996,0.474177,0.0885662,0.209682,0.864792,0.481224,0.0514839,0.896632,0.87278,0.80916,0.897896,0.214117,0.845876,0.242296,0.519649,0.387292,0.0938837,0.55378,0.480625,0.154042,0.23901,0.821049,0.714888,0.112571,0.121025,0.895544,0.0896688,0.503407,0.704085,0.347704,0.631951,0.475547,0.67626,0.066404,0.992871,0.817774,0.14166,0.0208341,0.272498,0.027833,0.868929,0.537945,0.542627,0.373808,0.091653,0.914791,0.646403,0.0402095,0.425947,0.451752,0.542364,0.696172,0.539783,0.144594,0.944483,0.0529189,0.501701,0.664166,0.370886,0.19055,0.949617,0.322975,0.788413,0.511243,0.327006,0.479454,0.655941,0.194989,0.213507,0.843121,0.302271,0.737785,0.410066,0.283332,0.617525,0.182221,0.877691,0.174689,0.828733,0.961088,0.326815,0.859983,0.0409966,0.686424,0.580234,0.723585,0.112945,0.416768,0.569874,0.754162,0.703963,0.013285,0.129469,0.00904751,0.39518,0.0837169,0.766954,0.0334801,0.43808,0.965388,0.356442,0.840407,0.689523,0.981428,0.571075,0.778741,0.712007,0.335742,0.933362,0.867683,0.000915408,0.618182,0.988575,0.590689,0.664336,0.156532,0.786823,0.172582,0.753948,0.330435,0.787924,0.083802,0.226111,0.572212,0.086772,0.981009,0.0787723,0.732391,0.748501,0.541975,0.5661,0.283212,0.609717,0.984162,0.0160824,0.742256,0.164438,0.105412,0.848776,0.817254,0.150921,0.326005,0.60729,0.0111541,0.182108,0.358047,0.483426,0.796125,0.745197,0.0904411,0.844032,0.477847,0.476617,0.0143048,0.545276,0.656544,0.296783,0.887447,0.514293,0.887505,0.17544,0.221712,0.0808166,0.500184,0.899884,0.879891,0.207858,0.573994,0.18931,0.403245,0.728818,0.0442347,0.60179,0.199645,0.168499,0.10407,0.000269949,0.254261,0.0988879,0.65415,0.916313,0.414041,0.850264,0.737479,0.0640699,0.24928,0.304229,0.761772,0.988476,0.600216,0.993119,0.485546,0.0727078,0.048578,0.327068,0.0821213,0.875313,0.025068,0.569098,0.135526,0.842928,0.234823,0.622617,0.91916,0.405927,0.638779,0.33525,0.802112,0.360344,0.819366,0.794753,0.745443,0.434133,0.865321,0.345448,0.904033,0.220699,0.39888,0.554676,0.700826,0.918364,0.140726,0.362205,0.0121506,0.224324,0.935535,0.966151,0.693027,0.61912,0.522252,0.0163499,0.11998,0.449223,0.496335,0.676725,0.331084,0.641974,0.844065,0.399543,0.703072,0.792663,0.0327809,0.00124282,0.624665,0.696849,0.90646,0.693156,0.704212,0.224347,0.873659,0.817349,0.865473,0.344588,0.244421,0.127938,0.573274,0.544298,0.778469,0.823898,0.501578,0.682638,0.163217,0.660736,0.7378,0.617453,0.154321,0.260418,0.749117,0.369666,0.255822,0.903164,0.206929,0.961493,0.446861,0.873776,0.557068,0.093302,0.590028,0.577017,0.999295,0.1218,0.637089,0.910465,0.793551,0.415871,0.490585,0.826204,0.722793,0.197706,0.693476,0.397108,0.258159,0.0919695,0.253869,0.283123,0.899771,0.630192,0.83138,0.316303,0.743487,0.992808,0.928035,0.349934,0.773403,0.466913,0.923446,0.870996,0.949906,0.109453,0.763959,0.502833,0.918771,0.690207,0.00378954,0.483948,0.29345,0.386969,0.399719,0.546372,0.678573,0.0255921,0.342295,0.383413,0.109866,0.81143,0.5571,0.0176589,0.0031758,0.228095,0.884951,0.99131,0.387561,0.61875,0.0462153,0.426682,0.955843,0.189742,0.610682,0.28379,0.90388,0.944228,0.907405,0.443189,0.0990412,0.783753,0.185858,0.187857,0.560813,0.307509,0.476359,0.479803,0.732019,0.547629,0.577252,0.143069,0.922755,0.117427,6.72936e-05,0.483516,0.652295,0.1766,0.647323,0.965396,0.131432,0.311553,0.417119,0.332204,0.00722617,0.576852,0.46682,0.401038,0.718231,0.944642,0.527396,0.119229,0.659559,0.0944458,0.820096,0.987824,0.256428,0.00473851,0.394313,0.231445,0.335016,0.902893,0.920164,0.618056,0.580993,0.880013,0.0666431,0.761267,0.103087,0.868526,0.834771,0.541588,0.458681,0.848516,0.480439,0.337458,0.519876,0.319415,0.643545,0.712162,0.644078,0.134996,0.232442,0.678289,0.350205,0.465498,0.149586,0.222489,0.364795,0.947368,0.427108,0.828519,0.894872,0.584935,0.981853,0.765499,0.55431,0.0870045,0.525123,0.524035,0.745927,0.381245,0.427483,0.92119,0.866119,0.654739,0.634204,0.0435228,0.290318,0.895274,0.15842,0.632656,0.0163784,0.795531,0.987197,0.661382,0.79817,0.285157,0.578953,0.452641,0.58133,0.652191,0.548304,0.722247,0.814219,0.138071,0.98505,0.112924,0.952065,0.44221,0.640151,0.464436,0.249831,0.200494,0.440773,0.319285,0.524734,0.276313,0.761297,0.621675,0.0898697,0.104129,0.0678353,0.0626894,0.761002,0.661554,0.909414,0.586401,0.740628,0.936121,0.763315,0.0588306,0.769315,0.900627,0.823674,0.640864,0.016658,0.17123,0.345556,0.859977,0.150829,0.842001,0.363436,0.105952,0.558806,0.881683,0.825484,0.879071,0.407771,0.612666,0.628908,0.619248,0.0373365,0.654732,0.52254,0.0114059,0.879718,0.503398,0.503172,0.281714,0.79608,0.511126,0.94348,0.388611,0.782943,0.875645,0.408636,0.0286354,0.682916,0.809218,0.80052,0.234789,0.299379,0.331987,0.823406,0.147791,0.410289,0.234133,0.295986,0.243832,0.336428,0.334078,0.00231516,0.43002,0.0165851,0.652009,0.748623,0.674303,0.00278902,0.935406,0.0395176,0.61223,0.441821,0.232149,0.101972,0.756091,0.577561,0.369033,0.551516,0.0280749,0.851792,0.817547,0.55305,0.949554,0.486737,0.582896,0.168513,0.100759,0.366045,0.348466,0.541965,0.453496,0.851603,0.197613,0.403237,0.486602,0.0821463,0.704863,0.445595,0.27339,0.656693,0.983283,0.405342,0.102736,0.31344,0.37084,0.90901,0.287131,0.362186,0.153721,0.0801635,0.106651,0.594408,0.338365,0.469997,0.927812,0.123277,0.164337,0.796478,0.157981,0.52005,0.159198,0.537459,0.338619,0.198629,0.721768,0.448073,0.0935566,0.415728,0.43853,0.70717,0.294551,0.606389,0.778092,0.482847,0.96089,0.510662,0.285878,0.689819,0.713757,0.175931,0.0416476,0.40793,0.430569,0.273394,0.085946,0.913841,0.00842053,0.554183,0.0812961,0.912198,0.440409,0.143821,0.663079,0.680056,0.998557,0.376615,0.719338,0.953457,0.668558,0.370693,0.333371,0.572771,0.22971,0.926453,0.139212,0.944669,0.553038,0.84719,0.750526,0.879968,0.415236,0.0392767,0.115129,0.100569,0.986554,0.874712,0.704931,0.301587,0.795007,0.17564,0.688481,0.678737,0.964327,0.307651,0.215099,0.181325,0.603459,0.287612,0.840983,0.970262,0.958378,0.17775,0.270334,0.846943,0.311131,0.0938266,0.367053,0.983455,0.548823,0.14766,0.47864,0.643849,0.669349,0.021663,0.0664389,0.309094,0.554952,0.807718,0.415257,0.594209,0.5479,0.552823,0.515463,0.641728,0.589038,0.260597,0.0880005,0.459241,0.863391,0.934518,0.484852,0.881884,0.255382,0.27548,0.585169,0.530663,0.0432014,0.037291,0.115176,0.652394,0.878031,0.948717,0.00439566,0.688857,0.510046,0.786735,0.283379,0.653949,0.40737,0.276338,0.915788,|0.790231,0.630003,0.403152,0.796672,0.688403,0.663314,0.53779,0.209521,0.0605586,0.0118874,0.102228,0.517381,0.122925,0.134968,0.265174,0.665278,0.802448,0.948283,0.704483,0.964056,0.522511,0.301855,0.219478,0.695881,0.996795,0.683855,0.254835,0.873286,0.368769,0.984997,0.529258,0.787463,0.622946,0.0394922,0.558312,0.0470834,0.657237,0.744834,0.945705,0.117145,0.310385,0.919571,0.851874,0.370916,0.0832675,0.986708,0.84597,0.667248,0.948873,0.705464,0.241953,0.798974,0.547667,0.687255,0.125368,0.837736,0.633321,0.428365,0.797023,0.975015,0.0053488,0.0451196,0.552922,0.123575,0.952912,0.679274,0.67671,0.713853,0.364317,0.472878,0.0657148,0.815698,0.822544,0.356226,0.835384,0.750057,0.980811,0.0786896,0.987872,0.4038,0.289741,0.367546,0.0927532,0.0778238,0.637522,0.806114,0.117792,0.219736,0.0396443,0.315215,0.137751,0.0929832,0.235508,0.651471,0.962289,0.728491,0.847074,0.831807,0.958542,0.524519,0.328794,0.210906,0.570501,0.826836,0.630223,0.20176,0.237418,0.847887,0.558953,0.0272818,0.433797,0.0315236,0.128276,0.20427,0.976106,0.832132,0.843635,0.998701,0.326843,0.24813,0.254023,0.398037,0.419311,0.221177,0.474523,0.176622,0.0360225,0.639468,0.112384,0.848566,0.199683,0.00628805,0.488828,0.619975,0.0614344,0.171808,0.260046,0.476202,0.0764099,0.568629,0.151551,0.291893,0.608193,0.999963,0.309104,0.218932,0.100782,0.921805,0.588236,0.925117,0.985444,0.933167,0.228547,0.583444,0.269024,0.850553,0.307205,0.0870201,0.869485,0.97345,0.850535,0.507622,0.813018,0.637792,0.284247,0.0394428,0.399134,0.789409,0.518016,0.846487,0.314834,0.97933,0.00846106,0.395689,0.664885,0.367805,0.488386,0.818658,0.108612,0.923597,0.232069,0.620776,0.594668,0.823113,0.819094,0.0450858,0.443452,0.237007,0.0992199,0.302171,0.922902,0.412011,0.884168,0.899571,0.426785,0.678664,0.295181,0.0077588,0.22558,0.259642,0.352894,0.0275202,0.046004,0.518279,0.627527,0.816033,0.165866,0.516575,0.31629,0.389736,0.00651777,0.737922,0.221347,0.450692,0.435856,0.133579,0.740187,0.378438,0.630991,0.0294273,0.368064,0.448477,0.244923,0.95582,0.068448,0.727764,0.197058,0.675321,0.345653,0.533635,0.681505,0.90376,0.703068,0.153237,0.212331,0.731095,0.240392,0.40638,0.600655,0.111237,0.418404,0.833306,0.51722,0.224017,0.838642,0.660525,0.923838,0.277101,0.406264,0.97508,0.0348367,0.30053,0.092682,0.805034,0.800241,0.6117,0.734059,0.0155535,0.931309,0.902841,0.113027,0.358452,0.99974,0.640889,0.438999,0.112071,0.580209,0.320702,0.0441644,0.784696,0.19315,0.529126,0.995385,0.0349436,0.690168,0.747241,0.172881,0.677627,0.406923,0.506941,0.354826,0.153374,0.110564,0.944847,0.650657,0.759403,0.376946,0.17507,0.333506,0.141336,0.60801,0.18953,0.465578,0.808192,0.797378,0.91033,0.744052,0.917565,0.428833,0.768096,0.477833,0.66984,0.509702,0.231197,0.288422,0.728474,0.620611,0.517667,0.846255,0.516474,0.223559,0.563127,0.705511,0.611466,0.698427,0.789369,0.705406,0.116787,0.193607,0.871963,0.146647,0.880022,0.825772,0.040853,0.685836,0.916622,0.69985,0.0990899,0.879263,0.0107331,0.739312,0.985763,0.784972,0.588832,0.25557,0.154014,0.446472,0.642088,0.199258,0.655106,0.539171,0.711671,0.0245917,0.611477,0.414974,0.311337,0.0751522,0.930994,0.212389,0.421428,0.302852,0.194949,0.01999,0.496026,0.209178,0.674649,0.178521,0.189778,0.339349,0.371464,0.540266,0.0772066,0.707166,0.219958,0.0415925,0.388653,0.306391,0.327395,0.322357,0.0408621,0.525059,0.378068,0.0835561,0.516764,0.377525,0.510789,0.225103,0.359526,0.762159,0.988842,0.354439,0.0910738,0.575292,0.10754,0.275238,0.341302,0.259226,0.731026,0.128024,0.836444,0.17273,0.868342,0.487584,0.678307,0.771146,0.562974,0.109311,0.604337,0.0918596,0.112061,0.902699,0.797327,0.888627,0.30264,0.16208,0.491066,0.26253,0.507796,0.872179,0.897511,0.199172,0.74656,0.355304,0.91167,0.283974,0.630688,0.384235,0.210536,0.00555915,0.127454,0.043979,0.184437,0.245885,0.285698,0.0938146,0.16714,0.655793,0.826564,0.55719,0.796826,0.225898,0.479039,0.723254,0.882055,0.311779,0.780046,0.305777,0.800098,0.125152,0.370467,0.586513,0.315278,0.63746,0.504214,0.982588,0.542901,0.892606,0.418845,0.92842,0.373049,0.975986,0.0734166,0.472096,0.631856,0.34548,0.0935377,0.249752,0.716203,0.471717,0.805439,0.314261,0.632401,0.461498,0.329058,0.364583,0.240451,0.315376,0.216008,0.738469,0.614073,0.0480463,0.655786,0.456921,0.0586729,0.761779,0.350504,0.141301,0.634257,0.314842,0.525854,0.0939844,0.820246,0.462822,0.259041,0.640868,0.439047,0.0148641,0.416957,0.921309,0.599785,0.522639,0.754212,0.155126,0.999155,0.471925,0.532643,0.765935,0.392871,0.575088,0.652984,0.606072,0.646024,0.855048,0.667229,0.76141,0.671171,0.758085,0.635543,0.640582,0.636261,0.299225,0.949895,0.625056,0.255608,0.871619,0.889223,0.610751,0.346462,0.802098,0.120521,0.126907,0.743443,0.589137,0.33257,0.862276,0.627849,0.552558,0.311276,0.326681,0.98654,0.963991,0.511199,0.838693,0.986813,0.64031,0.940419,0.672208,0.559899,0.953035,0.715302,0.997024,0.480278,0.395649,0.658184,0.684999,0.216683,0.549444,0.252948,0.857392,0.276094,0.675249,0.323908,0.966889,0.35275,0.0236108,0.725153,0.766607,0.415258,0.886014,0.734179,0.684869,0.420731,0.560496,0.366644,0.38475,0.565804,0.362904,0.299579,0.349478,0.61944,0.145867,0.117782,0.419163,0.126756,0.403029,0.109654,0.88813,0.193683,0.478933,0.281474,0.345638,0.78887,0.443835,0.280082,0.807258,0.229561,0.970307,0.739255,0.907959,0.488352,0.388283,0.472166,0.880648,0.465928,0.337779,0.990546,0.236729,0.30744,0.171266,0.128166,0.677302,0.0575106,0.58811,0.552122,0.257423,0.615065,0.906783,0.621346,0.923479,0.815588,0.979262,0.0919102,0.999313,0.770705,0.951434,0.429004,0.818031,0.955324,0.442435,0.799976,0.109331,0.675385,0.465039,0.537337,0.322203,0.523522,0.452806,0.222465,0.730413,0.941289,0.794433,0.852884,0.239883,0.441914,0.054427,0.512791,0.901516,0.34713,0.311795,0.594258,0.556534,0.15724,0.379535,0.392294,0.736499,0.302966,0.635391,0.269156,0.445564,0.833621,0.103703,0.371106,0.860473,0.290701,0.967039,0.0542936,0.277004,0.190987,0.605887,0.373105,0.990001,0.356633,0.323161,0.624845,0.77351,0.675013,0.336617,0.175113,0.73323,0.696557,0.265814,0.96533,0.75108,0.954285,0.163857,0.871124,0.268017,0.632049,0.295275,0.333576,0.729265,0.137677,0.000766993,0.253705,0.507819,0.246979,0.637758,0.572514,0.730408,0.592058,0.540444,0.59406,0.506737,0.258603,0.237567,0.960399,0.358458,0.205643,0.119852,0.533355,0.139443,0.87463,0.902736,0.383096,0.972787,0.379707,0.475172,0.794222,0.592704,0.217415,0.1689,0.400978,0.231617,0.414769,0.758366,0.370835,0.892712,0.623821,0.1555,0.368978,0.72556,0.849396,0.635817,0.63667,0.273025,0.0513254,0.0192816,0.484092,0.4077,0.450466,0.0213252,0.297385,0.731845,0.091876,0.615556,0.58417,0.553143,0.424053,0.153147,0.586454,0.972485,0.585627,0.548854,0.858481,0.634723,0.895481,0.840089,0.0854583,0.146836,0.330642,0.853819,0.404503,0.804847,0.422498,0.494587,0.488853,0.482597,0.892971,0.441698,0.129234,0.891556,0.378292,0.509599,0.826622,0.650642,0.981707,0.443104,0.159663,0.3497,0.251042,0.666825,0.404497,0.78572,0.326757,0.127103,0.609189,0.540044,0.727435,0.913193,0.610797,0.515812,0.0604308,0.863741,0.654438,0.0385836,0.400169,0.298819,0.78446,0.562252,0.936431,0.179071,0.214861,0.909862,0.893951,0.803883,0.43858,0.435922,0.290418,0.182576,0.968725,0.29567,0.0673031,0.748094,0.351729,0.116815,0.369195,0.239381,0.619879,0.956578,0.0229433,0.189914,0.395329,0.519233,0.128335,0.598854,0.848604,0.494532,0.642412,0.0378999,0.145187,0.0158975,0.605818,0.172223,0.706933,0.910679,0.638693,0.920857,0.762183,0.243217,0.0121796,0.738524,0.757574,0.228827,0.110799,0.947473,0.707632,0.542371,0.593864,0.617973,0.119211,0.079084,0.188751,0.832638,0.105222,0.810003,0.898649,0.535642,0.807518,0.624613,0.584255,0.362031,0.552615,0.768654,0.568431,0.181494,0.781436,0.418211,0.405286,0.183095,0.987629,0.507917,0.999692,0.203156,0.163335,0.212311,0.41048,0.96042,0.238822,0.529828,0.178849,0.204313,0.960928,0.574563,0.0632383,0.449219,0.0418394,0.0637283,0.776989,0.704604,0.0863316,0.344883,0.985704,0.333707,0.557896,0.193018,0.719541,0.762238,0.905792,0.794755,0.167303,0.224883,0.884469,0.359031,0.718479,0.493072,0.309688,0.415395,0.528146,0.472492,0.827802,0.790128,0.870363,0.427161,0.722724,0.0890876,0.611569,0.508658,0.5597,0.136927,0.929845,0.401595,0.441869,0.0325781,0.200241,0.385644,0.107755,0.754861,0.85939,0.618867,0.351591,0.651177,0.133801,0.00486332,0.819971,0.817313,0.802276,0.543752,0.0931433,0.650172,0.399157,0.101289,0.906289,0.45147,0.318457,0.275314,0.91398,0.260846,0.864154,0.735542,0.517565,0.0850938,0.467829,0.407173,0.515809,0.316751,0.188473,0.207066,0.0935538,0.749143,0.618831,0.959725,0.726917,0.586093,0.262331,0.169528,0.224962,0.969652,0.594715,0.160878,0.271721,0.866574,0.868849,0.43113,0.75901,0.718083,0.685121,0.299585,0.557929,0.951509,0.565619,0.0444705,0.796244,0.461615,0.348192,0.152756,0.044693,0.939798,0.0902088,0.886611,0.456165,0.0252023,0.695959,0.949701,0.242307,0.8035,0.325752,0.852295,0.991372,0.627728,0.981276,0.243643,0.748366,0.718894,0.665882,0.0425947,0.0126963,0.676128,0.849715,0.749004,0.814691,|0.210531,0.553374,0.64887,0.832981,0.402988,0.0675481,0.364747,0.0991624,0.774614,0.167775,0.512782,0.411874,0.609485,0.343917,0.111565,0.475152,0.271015,0.173079,0.361334,0.463766,0.222401,0.604703,0.851696,0.5414,0.449613,0.22972,0.29695,0.402579,0.440078,0.165946,0.128255,0.980825,0.256426,0.380173,0.0333599,0.349019,0.625508,0.447894,0.655851,0.529247,0.214858,0.369913,0.50521,0.573127,0.408965,0.931448,0.995079,0.67158,0.401462,0.924361,0.857529,0.184223,0.247799,0.832864,0.0363106,0.123038,0.461753,0.194721,0.626734,0.540748,0.600607,0.190429,0.912507,0.284793,0.437953,0.0306615,0.0362381,0.751109,0.018523,0.20661,0.775093,0.0529518,0.19322,0.587391,0.841517,0.904486,0.775712,0.976093,0.00317824,0.129238,0.0705523,0.269454,0.176591,0.0544378,0.424596,0.647854,0.00303733,0.646693,0.141815,0.486331,0.70325,0.795489,0.738092,0.825474,0.0659899,0.327762,0.0997685,0.205326,0.46046,0.593109,0.34568,0.613409,0.157352,0.906894,0.325463,0.661595,0.798573,0.575388,0.142729,0.864587,0.233386,0.916327,0.00144386,0.408643,0.83147,0.29695,0.28782,0.637374,0.644436,0.174222,0.807979,0.395407,0.174594,0.977909,0.0586633,0.878732,0.0972294,0.141492,0.721003,0.453503,0.125835,0.361116,0.105503,0.548301,0.822313,0.139993,0.372339,0.155244,0.316676,0.0783045,0.568394,0.492183,0.902116,0.944305,0.772127,0.0728432,0.626486,0.908397,0.831539,0.581044,0.96631,0.289332,0.803785,0.551555,0.916233,0.656277,0.523061,0.933818,0.045902,0.548341,0.118211,0.00401402,0.0586981,0.245998,0.126428,0.753761,0.227588,0.748214,0.758013,0.381972,0.481273,0.389188,0.531939,0.0377271,0.872059,0.589189,0.735527,0.592351,0.161568,0.402963,0.152163,0.207306,0.77867,0.569702,0.69968,0.34276,0.966472,0.95176,0.489447,0.411961,0.96834,0.821221,0.41736,0.55915,0.283327,0.569256,0.509896,0.197941,0.678929,0.901992,0.452803,0.732635,0.961949,0.197565,0.181125,0.690168,0.141505,0.75585,0.305624,0.176053,0.425422,0.98971,0.279152,0.364662,0.778915,0.0858359,0.552203,0.0183482,0.910781,0.0724287,0.390114,0.280193,0.896128,0.921714,0.160644,0.314993,0.0683599,0.754522,0.73883,0.697916,0.472541,0.51328,0.0858129,0.306387,0.110157,0.288177,0.492403,0.282202,0.31682,0.823758,0.680171,0.300596,0.369825,0.464531,0.788666,0.575644,0.728257,0.453601,0.287784,0.555375,0.606787,0.484171,0.918314,0.655111,0.236166,0.775796,0.800566,0.573556,0.248124,0.131072,0.640945,0.837872,0.0642259,0.261539,0.0427104,0.170195,0.20932,0.595515,0.0981137,0.485748,0.638126,0.993837,0.257045,0.518193,0.0723898,0.620968,0.483123,0.153505,0.881419,0.0440441,0.383198,0.596016,0.326918,0.796863,0.735732,0.712237,0.483972,0.44454,0.912564,0.134674,0.244051,0.0922188,0.021664,0.482657,0.742355,0.72463,0.96154,0.708066,0.376815,0.79509,0.218889,0.949112,0.894723,0.139099,0.0717173,0.515592,0.412603,0.750807,0.685259,0.0848608,0.203232,0.777651,0.960173,0.540569,0.578273,0.13494,0.171634,0.168973,0.14876,0.865493,0.0950755,0.95785,0.828419,0.722167,0.321526,0.0336055,0.225783,0.322746,0.807198,0.804948,0.893434,0.206816,0.351254,0.906331,0.465579,0.398292,0.459007,0.553183,0.0843851,0.545293,0.330634,0.893124,0.921859,0.382333,0.367107,0.81834,0.72257,0.928392,0.625895,0.764604,0.457658,0.339916,0.839352,0.34198,0.52443,0.00727314,0.208277,0.561248,0.598253,0.0583994,0.634939,0.643468,0.926808,0.480737,0.145172,0.20551,0.923856,0.148509,0.468864,0.407814,0.335856,0.483556,0.910637,0.997786,0.58777,0.428921,0.545006,0.639,0.927751,0.358229,0.697934,0.495097,0.512224,0.560193,0.996998,0.257585,0.607034,0.137375,0.0914149,0.617036,0.255828,0.0453272,0.457637,0.795345,0.605622,0.215907,0.799523,0.734204,0.164469,0.0652291,0.141161,0.0528383,0.24681,0.637598,0.695947,0.21272,0.798515,0.870282,0.191081,0.463099,0.322897,0.650751,0.739625,0.744887,0.674201,0.613591,0.148562,0.860429,0.292701,0.938163,0.362992,0.565398,0.039101,0.389975,0.0936454,0.459912,0.97112,0.321723,0.501041,0.563093,0.455391,0.885835,0.223454,0.920199,0.077008,0.995911,0.303277,0.00829589,0.614341,0.0179164,0.0418069,0.755157,0.474152,0.24925,0.906334,0.627546,0.881434,0.641806,0.436971,0.888846,0.665849,0.394767,0.0964674,0.625023,0.33853,0.514594,0.746766,0.142392,0.566399,0.150386,0.0278445,0.264851,0.756458,0.37003,0.102646,0.769181,0.0465218,0.485681,0.777875,0.827282,0.76592,0.222966,0.38756,0.467127,0.151237,0.799256,0.783933,0.142686,0.42535,0.0466855,0.338101,0.00842047,0.261909,0.488328,0.407548,0.889146,0.146602,0.162825,0.000831485,0.946267,0.621236,0.567232,0.421764,0.375015,0.603509,0.805324,0.523112,0.0617318,0.209875,0.714831,0.667949,0.997227,0.233461,0.655139,0.769485,0.62967,0.726254,0.549935,0.893626,0.641514,0.983049,0.350539,0.35124,0.330302,0.86126,0.557086,0.692465,0.578107,0.882689,0.42516,0.445421,0.551021,0.251459,0.856022,0.583281,0.523733,0.469428,0.147994,0.616974,0.732087,0.12626,0.88105,0.694906,0.374318,0.93948,0.602077,0.186898,0.467177,0.509286,0.029686,0.669306,0.407138,0.733572,0.22962,0.33927,0.518152,0.0771082,0.00918472,0.88628,0.636871,0.895368,0.980728,0.930563,0.56663,0.8888,0.394464,0.449311,0.261295,0.240366,0.328295,0.325304,0.770215,0.967643,0.342939,0.208046,0.0116494,0.29596,0.997599,0.913577,0.771469,0.945369,0.147638,0.735396,0.834671,0.211653,0.987915,0.728415,0.976083,0.094683,0.802117,0.228371,0.976353,0.811942,0.388587,0.353659,0.125603,0.00728756,0.950142,0.710872,0.0442067,0.0581477,0.77259,0.945844,0.0416033,0.535646,0.556377,0.270499,0.0608699,0.763679,0.839837,0.0617663,0.948748,0.832677,0.0264327,0.884655,0.563968,0.641318,0.107118,0.984567,0.0735125,0.467648,0.706965,0.328592,0.148036,0.680338,0.841565,0.758355,0.989704,0.291479,0.610472,0.901563,0.68444,0.813178,0.318011,0.448701,0.0790741,0.804942,0.151307,0.174191,0.487403,0.805507,0.823159,0.98179,0.852112,0.794751,0.823649,0.671761,0.936377,0.953843,0.21979,0.0866466,0.968054,0.183226,0.191986,0.831076,0.203503,0.0120891,0.537975,0.00127524,0.793895,0.546555,0.537172,0.70657,0.596435,0.799412,0.402125,0.553457,0.420363,0.374467,0.835229,0.797203,0.908762,0.580659,0.37957,0.808984,0.881963,0.664555,0.266538,0.872638,0.210686,0.318497,0.0719512,0.600864,0.137318,0.964673,0.732415,0.633712,0.540652,0.788855,0.680014,0.597889,0.953557,0.00345945,0.052178,0.72277,0.149069,0.989986,0.79996,0.548967,0.451853,0.73028,0.674947,0.806656,0.790632,0.583386,0.810637,0.953471,0.144558,0.0188715,0.162306,0.882493,0.338661,0.150329,0.719884,0.117833,0.00979978,0.613514,0.511488,0.909778,0.696665,0.625411,0.153503,0.128046,0.181093,0.511964,0.115196,0.00821537,0.817968,0.890365,0.854096,0.0909004,0.827821,0.731063,0.506151,0.478509,0.751624,0.0388065,0.82656,0.470651,0.417625,0.224693,0.214498,0.210893,0.993441,0.624188,0.807018,0.0294846,0.961372,0.340593,0.492381,0.20093,0.194214,0.141627,0.472499,0.652628,0.799189,0.193686,0.325357,0.184126,0.452034,0.997095,0.25069,0.536674,0.422267,0.862388,0.163256,0.0325038,0.800088,0.00491375,0.330744,0.286075,0.617238,0.0923492,0.632794,0.750255,0.0538533,0.968413,0.54668,0.670674,0.59787,0.899978,0.0151525,0.286254,0.352096,0.654826,0.471972,0.857695,0.673254,0.912489,0.0483652,0.870893,0.781411,0.289263,0.891138,0.484596,0.191231,0.500217,0.997541,0.986445,0.223583,0.867894,0.275828,0.759814,0.57333,0.51307,0.89807,0.345374,0.201218,0.988954,0.850844,0.210235,0.430902,0.645991,0.174705,0.841911,0.469514,0.0523043,0.755552,0.592772,0.435265,0.60098,0.156288,0.945163,0.0701271,0.787737,0.588811,0.148812,0.1798,0.170635,0.187432,0.384469,0.959495,0.233732,0.496953,0.150406,0.901339,0.616721,0.512459,0.0263942,0.153597,0.522031,0.0672303,0.872504,0.276717,0.719497,0.648203,0.734228,0.203912,0.744887,0.54683,0.0695132,0.901274,0.48086,0.204105,0.564778,0.483975,0.202059,0.667233,0.709296,0.819106,0.978647,0.324325,0.437111,0.682311,0.78568,0.531201,0.934529,0.821378,0.72163,0.342579,0.0924043,0.131699,0.188233,0.879389,0.623288,0.16963,0.735184,0.508798,0.663221,0.231571,0.931918,0.277136,0.0652749,0.636721,0.842978,0.253115,0.696045,0.847733,0.248984,0.00880134,0.632481,0.366466,0.276652,0.485822,0.838573,0.47564,0.737162,0.310143,0.506794,0.0189022,0.467917,0.981442,0.373393,0.265377,0.69979,0.589373,0.0237936,0.427115,0.814851,0.284425,0.534214,0.936393,0.760628,0.31424,0.267871,0.572552,0.646132,0.00469691,0.247454,0.323866,0.494084,0.167256,0.928806,0.386291,0.698307,0.377261,0.987569,0.163007,0.229012,0.848199,0.832577,0.560838,0.581659,0.117926,0.844179,0.0764273,0.404185,0.977509,0.388288,0.548347,0.0801697,0.940738,0.564646,0.794341,0.447529,0.0487065,0.668251,0.957175,0.136139,0.694775,0.966711,0.303482,0.722371,0.562407,0.998117,0.183531,0.114743,0.865389,0.324108,0.415699,0.436667,0.812405,0.0268015,0.247002,0.868804,0.211395,0.97176,0.242178,0.545979,0.0915396,0.21524,0.32668,0.332122,0.940116,0.643871,0.49688,0.911835,0.376439,0.329394,0.939963,0.770522,0.427123,0.68116,0.210854,0.294872,0.36237,0.876764,0.0200738,0.0170151,0.63991,0.530044,0.86013,0.589826,0.0736063,0.822348,0.488355,0.784423,0.798889,0.691361,0.857406,0.877928,0.266656,0.362485,0.588864,0.885869,0.0953997,0.565339,0.874606,0.168322,0.418671,|0.12756,0.190484,0.403217,0.252809,0.76955,0.437226,0.298248,0.363847,0.748677,0.310478,0.390298,0.833906,0.512228,0.852297,0.17403,0.573724,0.572112,0.774364,0.773622,0.706927,0.423343,0.178152,0.951501,0.00419569,0.899873,0.826782,0.0148241,0.789257,0.549721,0.724571,0.726599,0.628643,0.590072,0.820953,0.402521,0.858178,0.581909,0.742541,0.642258,0.647486,0.493952,0.834551,0.856762,0.62051,0.087744,0.535334,0.69096,0.460546,0.373411,0.753992,0.942687,0.200011,0.817068,0.771603,0.939757,0.350669,0.885495,0.779198,0.558876,0.680826,0.37936,0.91742,0.446313,0.176562,0.764304,0.717988,0.936052,0.225301,0.615372,0.70792,0.484201,0.115046,0.683651,0.509615,0.87281,0.98762,0.387931,0.889113,0.549491,0.678814,0.90142,0.634692,0.127394,0.869449,0.0892185,0.051162,0.768179,0.88135,0.399003,0.280133,0.491637,0.25044,0.337343,0.887295,0.109489,0.607332,0.564142,0.832465,0.0869917,0.0309647,0.709501,0.602251,0.361951,0.0511901,0.708144,0.730681,0.67227,0.136234,0.0243052,0.63746,0.921114,0.901563,0.24141,0.235614,0.54803,0.352144,0.549258,0.939812,0.713536,0.842051,0.514482,0.753434,0.197862,0.646956,0.536905,0.116614,0.159212,0.029842,0.98293,0.221057,0.554675,0.948589,0.837138,0.839576,0.116277,0.452725,0.670614,0.130821,0.0829107,0.203214,0.542831,0.273802,0.255664,0.489232,0.271113,0.827094,0.821417,0.262778,0.358665,0.806673,0.111231,0.170636,0.644935,0.204833,0.453202,0.21242,0.0723344,0.120875,0.610086,0.187913,0.108694,0.673649,0.29311,0.339223,0.72336,0.552266,0.810641,0.927622,0.919455,0.0761774,0.644588,0.53537,0.219524,0.232247,0.543693,0.0842701,0.294241,0.223993,0.992789,0.501495,0.262056,0.663771,0.843038,0.271645,0.418207,0.63465,0.418272,0.356199,0.65286,0.619253,0.505195,0.09552,0.57016,0.492768,0.369133,0.342053,0.639178,0.244419,0.155578,0.42862,0.205267,0.240758,0.659372,0.236904,0.695021,0.188704,0.387187,0.288701,0.867046,0.218717,0.671487,0.684239,0.396101,0.634102,0.0916036,0.86267,0.335921,0.134047,0.134558,0.953647,0.159163,0.315221,0.0213665,0.0366449,0.818091,0.110872,0.150525,0.197695,0.612028,0.185979,0.0862095,0.143071,0.905546,0.262616,0.125391,0.559912,0.576584,0.805204,0.382913,0.139412,0.591777,0.382468,0.959675,0.19241,0.699374,0.432338,0.969855,0.739199,0.0630287,0.297798,0.292686,0.66701,0.970078,0.331541,0.592625,0.19015,0.396714,0.541228,0.211163,0.219205,0.416966,0.372381,0.176696,0.994119,0.588687,0.00185752,0.758051,0.0107574,0.291988,0.837024,0.567364,0.795311,0.790394,0.36141,0.578365,0.292702,0.0766909,0.118859,0.438392,0.910644,0.995637,0.0645236,0.836684,0.121776,0.995189,0.564825,0.000571847,0.943638,0.472155,0.681809,0.392942,0.15315,0.649955,0.156293,0.0394279,0.403718,0.698555,0.923713,0.100431,0.647319,0.12091,0.364293,0.16347,0.9911,0.932803,0.762389,0.886159,0.392398,0.383351,0.252227,0.339783,0.667899,0.941744,0.869894,0.517678,0.698227,0.640447,0.842135,0.777982,0.0873551,0.791735,0.25014,0.515064,0.996917,0.97662,0.516868,0.408839,0.266676,0.806829,0.923352,0.876071,0.119959,0.313354,0.2806,0.598072,0.193638,0.716051,0.218096,0.840196,0.522608,0.471469,0.747109,0.636682,0.0234015,0.747141,0.62003,0.151814,0.0338039,0.28637,0.279939,0.752553,0.371146,0.325763,0.423605,0.524753,0.0558557,0.473256,0.0261341,0.111392,0.815172,0.766575,0.87693,0.539843,0.190538,0.282651,0.221921,0.768431,0.89704,0.400182,0.270759,0.381254,0.284357,0.742028,0.551101,0.530721,0.767991,0.317826,0.379402,0.206449,0.723046,0.954007,0.201808,0.478806,0.908651,0.096924,0.53927,0.505475,0.736416,0.452366,0.0578629,0.803228,0.0634168,0.980721,0.331636,0.762281,0.755404,0.555463,0.515739,0.038112,0.238208,0.243432,0.488576,0.174838,0.215501,0.333541,0.32936,0.337505,0.0769338,0.734943,0.0913868,0.0490669,0.899229,0.376935,0.831835,0.92836,0.19087,0.648345,0.628947,0.714447,0.15146,0.545117,0.303096,0.339829,0.170555,0.995736,0.0695296,0.878015,0.862433,0.68147,0.354965,0.577774,0.315366,0.882712,0.559516,0.708103,0.18974,0.523108,0.0356178,0.889171,0.014232,0.65834,0.0660028,0.935432,0.56561,0.594619,0.706964,0.0202166,0.700864,0.274001,0.58166,0.0599448,0.431161,0.127982,0.317524,0.709574,0.270894,0.947893,0.790278,0.803381,0.676863,0.706499,0.55159,0.639661,0.10546,0.78676,0.0883292,0.993669,0.988354,0.624405,0.873321,0.752436,0.648466,0.922626,0.101348,0.0039773,0.579302,0.276685,0.0816308,0.674541,0.758676,0.767144,0.813587,0.446273,0.719946,0.843396,0.206347,0.453927,0.412136,0.672409,0.77211,0.0862783,0.0725996,0.101208,0.695998,0.614628,0.260145,0.764802,0.87645,0.234175,0.539944,0.177404,0.303784,0.0165231,0.937724,0.58054,0.694886,0.956974,0.238953,0.661244,0.930959,0.220693,0.432147,0.852459,0.704757,0.544706,0.467156,0.249026,0.570724,0.840517,0.0639298,0.906708,0.590862,0.436493,0.589888,0.478637,0.36246,0.619934,0.647201,0.266931,0.313178,0.717484,0.584006,0.824928,0.8133,0.294357,0.36895,0.825565,0.684359,0.284425,0.533655,0.227405,0.68513,0.399859,0.0595464,0.885193,0.980169,0.412732,0.853963,0.789644,0.804941,0.672593,0.629525,0.718785,0.265464,0.57525,0.296046,0.469966,0.570451,0.620553,0.941997,0.354888,0.146598,0.20386,0.529437,0.575194,0.829249,0.160378,0.692331,0.190078,0.644985,0.505286,0.554615,0.826757,0.393047,0.169544,0.195785,0.0782974,0.00387061,0.72136,0.37676,0.331718,0.592199,0.569174,0.701751,0.911575,0.600201,0.838295,0.359807,0.285416,0.244173,0.464622,0.109143,0.785674,0.764784,0.582752,0.391638,0.379485,0.816368,0.608244,0.653131,0.0771896,0.12799,0.228914,0.417034,0.396891,0.440122,0.470034,0.555793,0.0341256,0.596088,0.0147337,0.131893,0.0764181,0.311541,0.80298,0.927486,0.775682,0.141596,0.084876,0.598247,0.969749,0.680479,0.759534,0.587733,0.115647,0.768875,0.119692,0.313459,0.00495207,0.547957,0.259528,0.246522,0.805677,0.460188,0.665723,0.47741,0.790112,0.0403032,0.532558,0.919717,0.743122,0.669414,0.127466,0.0490478,0.614897,0.797704,0.249299,0.83666,0.624206,0.104509,0.968966,0.417252,0.150038,0.445222,0.170398,0.363913,0.395712,0.0548625,0.613203,0.632422,0.887505,0.97494,0.977815,0.169403,0.758393,0.555669,0.0686968,0.7351,0.059823,0.180791,0.165348,0.440269,0.770589,0.710686,0.64007,0.810019,0.540017,0.929662,0.841614,0.235276,0.272339,0.781285,0.738692,0.157561,0.996793,0.587436,0.883671,0.667594,0.645304,0.587703,0.767715,0.907935,0.42687,0.975837,0.260572,0.834878,0.629046,0.842469,0.448691,0.331644,0.990004,0.0134812,0.701475,0.491342,0.946656,0.806943,0.73343,0.511033,0.702177,0.926983,0.308112,0.195007,0.238753,0.630471,0.868175,0.203791,0.0259725,0.287267,0.18071,0.230428,0.702759,0.803499,0.0938293,0.259601,0.311563,0.767641,0.397834,0.990736,0.268809,0.574535,0.809679,0.0281581,0.10114,0.0743036,0.451811,0.0105251,0.987643,0.327811,0.707579,0.502815,0.303804,0.634602,0.616014,0.150436,0.905584,0.817241,0.546109,0.182149,0.162377,0.933518,0.416329,0.862931,0.41499,0.955082,0.126792,0.233914,0.531148,0.724667,0.282184,0.944037,0.978247,0.238328,0.0358813,0.0195238,0.593179,0.00021106,0.314176,0.905631,0.680948,0.957466,0.0468702,0.154263,0.4803,0.650112,0.0787316,0.20047,0.965796,0.699085,0.0918514,0.272126,0.936318,0.223827,0.78451,0.174553,0.775211,0.00275683,0.677176,0.897423,0.731503,0.987191,0.81351,0.4275,0.945136,0.164675,0.351332,0.559842,0.62335,0.399019,0.0229563,0.941253,0.140624,0.70939,0.344356,0.970197,0.140227,0.200009,0.718467,0.245299,0.344485,0.703496,0.132242,0.619366,0.952549,0.403704,0.00465173,0.26063,0.13662,0.279313,0.997396,0.296258,0.837669,0.953939,0.361715,0.905116,0.918149,0.739672,0.562637,0.311965,0.898475,0.390777,0.799622,0.223907,0.725847,0.776891,0.118973,0.626078,0.92058,0.578436,0.574649,0.0383483,0.321645,0.790488,0.578011,0.985348,0.489293,0.75587,0.673942,0.960542,0.964677,0.393783,0.306386,0.963783,0.57141,0.416984,0.767638,0.511866,0.885013,0.0137194,0.729264,0.126462,0.0868183,0.485125,0.722084,0.986918,0.468097,0.950504,0.0654366,0.491229,0.753968,0.221305,0.481319,0.364291,0.992172,0.488745,0.655652,0.526133,0.641492,0.204247,0.415618,0.984583,0.0266773,0.166892,0.372983,0.993304,0.113362,0.610777,0.120416,0.270979,0.293286,0.560366,0.530334,0.285675,0.237381,0.138666,0.418755,0.816528,0.648039,0.997405,0.949765,0.392662,0.195036,0.0155318,0.819848,0.537549,0.00600088,0.50983,0.0995797,0.777534,0.769729,0.839743,0.84314,0.398793,0.482054,0.324374,0.662855,0.719881,0.848072,0.259346,0.845549,0.115477,0.226569,0.665205,0.191887,0.151807,0.913372,0.471078,0.477572,0.0773426,0.158333,0.0199291,0.532631,0.981862,0.0931013,0.761379,0.173666,0.416857,0.36621,0.968516,0.573837,0.0960268,0.136956,0.745742,0.0768443,0.495668,0.547455,0.88471,0.234003,0.180984,0.952114,0.609953,0.392456,0.552249,0.817986,0.836526,0.474295,0.321174,0.435753,0.992421,0.597695,0.856399,0.117657,0.831664,0.0440449,0.481298,0.464439,0.370226,0.0268475,0.951695,0.243875,0.724532,0.186781,0.15943,0.531882,0.826671,0.418824,0.331318,0.101115,0.580947,0.371136,0.0868542,0.0382023,0.803354,0.107321,0.261126,0.680935,0.173466,0.657354,0.677606,0.57319,0.190488,0.313419,0.592267,0.779754,0.492026,0.130681,0.52767,0.620843,0.809276,0.703588,0.514889,|0.643298,0.155439,0.277176,0.275391,0.802184,0.731558,0.821922,0.698946,0.0762494,0.705511,0.142431,0.278338,0.110597,0.823913,0.242714,0.528392,0.280589,0.0277726,0.936944,0.784118,0.626471,0.382085,0.400839,0.918198,0.859139,0.0149356,0.605921,0.90282,0.128784,0.841375,0.0248299,0.059312,0.30919,0.301272,0.929227,0.357232,0.335036,0.463983,0.480093,0.0874361,0.720752,0.363935,0.856439,0.637701,0.767207,0.469578,0.813771,0.116377,0.12861,0.163565,0.343894,0.486671,0.555893,0.242313,0.796063,0.444919,0.196502,0.70878,0.425039,0.98157,0.701358,0.679994,0.775706,0.16193,0.200149,0.222891,0.912353,0.71502,0.0898253,0.725743,0.717047,0.365173,0.159734,0.837164,0.980821,0.689161,0.336944,0.954687,0.074132,0.548098,0.260755,0.682717,0.563753,0.42685,0.541998,0.615225,0.802434,0.369448,0.511398,0.463317,0.196998,0.95622,0.716112,0.868239,0.943191,0.584236,0.0341533,0.20493,0.531994,0.186233,0.871673,0.70106,0.288335,0.957539,0.672255,0.931204,0.1616,0.273092,0.501126,0.701471,0.0154381,0.392629,0.831581,0.68304,0.799497,0.206654,0.215121,0.650399,0.3286,0.00151843,0.235769,0.00486213,0.641495,0.520106,0.752914,0.899035,0.247628,0.120394,0.362713,0.504242,0.358561,0.23788,0.466997,0.314639,0.871369,0.302767,0.874692,0.12561,0.549602,0.594791,0.595238,0.798131,0.988596,0.13997,0.713919,0.499717,0.892209,0.034798,0.608931,0.572205,0.642748,0.520078,0.316789,0.587761,0.374436,0.0935433,0.524556,0.468565,0.1215,0.548115,0.0317429,0.901311,0.356653,0.475335,0.465342,0.316334,0.437654,0.462207,0.509221,0.424015,0.387517,0.531,0.779019,0.823088,0.206416,0.731544,0.608594,0.895443,0.981602,0.0511674,0.629693,0.721913,0.363759,0.780475,0.157264,0.614272,0.263758,0.130696,0.854101,0.226066,0.279009,0.374815,0.53881,0.184528,0.086783,0.857264,0.497137,0.00325692,0.794682,0.64957,0.619618,0.419188,0.530597,0.819301,0.92995,0.763541,0.268981,0.0163073,0.983714,0.259138,0.258674,0.209973,0.225342,0.699226,0.95517,0.0899189,0.235914,0.81526,0.789611,0.797097,0.521187,0.863777,0.125763,0.238388,0.180383,0.801242,0.884437,0.630155,0.282461,0.690472,0.124629,0.0663725,0.672262,0.502773,0.166067,0.38784,0.771689,0.697963,0.885699,0.365294,0.876258,0.816983,0.397465,0.560517,0.0914975,0.265054,0.110059,0.883402,0.53209,0.322313,0.164402,0.0659525,0.205152,0.148814,0.719305,0.444822,0.204966,0.390796,0.0471539,0.561812,0.316198,0.670992,0.11802,0.992106,0.679973,0.434159,0.0948609,0.319336,0.44291,0.995881,0.276247,0.470382,0.299781,0.361865,0.189277,0.226179,0.256844,0.419232,0.578906,0.658869,0.222295,0.924105,0.652534,0.19624,0.6042,0.35827,0.236892,0.563217,0.570376,0.810567,0.0837376,0.544937,0.433549,0.575211,0.826303,0.0150215,0.662068,0.616092,0.840463,0.617225,0.135806,0.0786891,0.76866,0.192337,0.931563,0.799148,0.00657535,0.0875868,0.491628,0.199124,0.613452,0.681908,0.61132,0.474287,0.955234,0.505477,0.663548,0.980835,0.255161,0.360314,0.0387029,0.122871,0.576802,0.963663,0.795559,0.81773,0.174657,0.653847,0.165429,0.00828981,0.636904,0.99162,0.729098,0.968226,0.914795,0.864416,0.562184,0.280687,0.869615,0.957983,0.362643,0.404252,0.428503,0.998082,0.544685,0.121218,0.596693,0.877445,0.221407,0.7731,0.198787,0.133054,0.712012,0.792153,0.564575,0.410254,0.154129,0.576676,0.316444,0.51781,0.321759,0.0828101,0.0416202,0.603038,0.357064,0.790857,0.677969,0.675066,0.342377,0.0542102,0.677658,0.577629,0.709346,0.070782,0.864659,0.304671,0.977114,0.88609,0.21651,0.6375,0.974723,0.43399,0.382434,0.814149,0.475143,0.742058,0.948739,0.0872759,0.973805,0.930128,0.457178,0.173866,0.836616,0.73994,0.682538,0.718094,0.660613,0.444116,0.772417,0.953052,0.0290748,0.366001,0.391345,0.32363,0.748477,0.83538,0.209394,0.559211,0.0939402,0.895836,0.456171,0.804198,0.0788655,0.186224,0.143803,0.309794,0.31896,0.142855,0.112913,0.642884,0.690081,0.509867,0.00264943,0.834706,0.858223,0.947363,0.25215,0.360755,0.837056,0.267167,0.247349,0.990419,0.49109,0.736025,0.911358,0.92518,0.27506,0.299132,0.0499057,0.95119,0.526019,0.515241,0.533033,0.795587,0.407825,0.57056,0.0888397,0.567976,0.9339,0.648637,0.338289,0.87162,0.118104,0.101431,0.550787,0.227158,0.693971,0.205115,0.543903,0.236623,0.864113,0.717353,0.411299,0.606175,0.319533,0.369667,0.0750698,0.48114,0.791746,0.492138,0.759378,0.123038,0.945417,0.756803,0.826253,0.885275,0.200119,0.602342,0.600198,0.826937,0.180081,0.0272247,0.730622,0.486306,0.0525974,0.938304,0.0120005,0.597942,0.0196145,0.209292,0.0490593,0.92266,0.458214,0.951031,0.754903,0.208364,0.264018,0.669414,0.631367,0.818214,0.359111,0.249597,0.951348,0.803366,0.0149447,0.249785,0.783267,0.425227,0.155773,0.403886,0.634836,0.402062,0.712275,0.692496,0.205526,0.530054,0.892605,0.410615,0.921463,0.312405,0.309748,0.92027,0.193139,0.0739456,0.7697,0.320494,0.788953,0.354848,0.598248,0.154481,0.0650144,0.497121,0.191479,0.200003,0.21579,0.398689,0.834392,0.373695,0.879078,0.73501,0.504866,0.554629,0.338852,0.986691,0.601605,0.142858,0.54266,0.386899,0.898051,0.433247,0.635923,0.633992,0.045881,0.24374,0.287253,0.229894,0.305565,0.440518,0.605666,0.800497,0.62684,0.917013,0.561392,0.402316,0.713914,0.117129,0.269157,0.090143,0.105369,0.560665,0.800846,0.621461,0.263223,0.788198,0.682148,0.98022,0.802379,0.279701,0.356451,0.471483,0.218223,0.218881,0.972393,0.788482,0.328589,0.755613,0.286822,0.477081,0.289167,0.625543,0.147899,0.539015,0.694192,0.436307,0.493977,0.529561,0.770299,0.820436,0.704702,0.433835,0.0614906,0.563548,0.807906,0.124515,0.610607,0.0269493,0.494674,0.79841,0.314081,0.752815,0.690174,0.992063,0.171745,0.450096,0.950832,0.984305,0.232634,0.104122,0.2089,0.802806,0.214859,0.419146,0.842599,0.808015,0.0202448,0.6509,0.969757,0.473418,0.374262,0.992126,0.759663,0.155486,0.310823,0.110204,0.685492,0.914358,0.916768,0.394767,0.265269,0.191598,0.352349,0.171037,0.105547,0.0702274,0.986209,0.328046,0.689932,0.665227,0.621379,0.0362414,0.487919,0.0924578,0.939233,0.326754,0.273096,0.0794873,0.529037,0.438225,0.0402315,0.562303,0.774339,0.458573,0.162254,0.871263,0.351898,0.553593,0.42274,0.107593,0.240868,0.3075,0.259701,0.886465,0.144066,0.122942,0.712122,0.522981,0.435534,0.871239,0.0359324,0.2765,0.228484,0.157498,0.121441,0.0859973,0.988255,0.11349,0.643525,0.378111,0.434194,0.799023,0.559099,0.0482526,0.530731,0.378401,0.686441,0.271131,0.107791,0.705718,0.151462,0.718521,0.915528,0.977339,0.857182,0.561125,0.245518,0.951649,0.292201,0.183266,0.0242547,0.892045,0.829887,0.0220892,0.852458,0.485038,0.790964,0.464866,0.506217,0.738606,0.0203316,0.499698,0.214045,0.0479077,0.455739,0.65237,0.993163,0.319521,0.494954,0.914279,0.244378,0.246484,0.579339,0.0925917,0.252082,0.300484,0.600698,0.305673,0.535876,0.071698,0.213115,0.969813,0.703557,0.54202,0.915667,0.0369123,0.752908,0.58663,0.466271,0.612904,0.223432,0.995117,0.162944,0.323735,0.289626,0.206991,0.255435,0.185334,0.309654,0.714574,0.494306,0.969905,0.430165,0.235058,0.49379,0.00776643,0.792595,0.950485,0.455985,0.91983,0.820015,0.790217,0.109193,0.205316,0.625779,0.672842,0.207766,0.954989,0.264138,0.0454116,0.570507,0.171901,0.443211,0.658358,0.169152,0.839131,0.329505,0.457153,0.331012,0.812027,0.855943,0.835857,0.546792,0.600874,0.19728,0.936105,0.127799,0.984763,0.131634,0.708762,0.415007,0.918582,0.30562,0.100518,0.3236,0.21513,0.850655,0.0097385,0.000612438,0.803964,0.55704,0.667709,0.236506,0.532721,0.610426,0.754322,0.206213,0.188218,0.30866,0.195389,0.501538,0.316587,0.663166,0.262138,0.865179,0.283934,0.26035,0.824848,0.467267,0.0739591,0.616051,0.919365,0.884872,0.259616,0.86293,0.532864,0.740767,0.730072,0.523376,0.517713,0.266156,0.448811,0.0791864,0.274024,0.579906,0.606864,0.891368,0.602673,0.831781,0.306928,0.751076,0.685811,0.93548,0.616532,0.282705,0.145237,0.196764,0.817001,0.800844,0.970715,0.476591,0.344837,0.0102208,0.0402421,0.675833,0.0333316,0.199549,0.899331,0.437076,0.659761,0.647058,0.664066,0.486612,0.692782,0.966333,0.772587,0.450792,0.460041,0.156691,0.951715,0.533888,0.282327,0.171504,0.439891,0.0474073,0.784392,0.346424,0.0578707,0.12402,0.913465,0.438973,0.445929,0.485118,0.670004,0.0546416,0.411004,0.962085,0.412053,0.247104,0.0597012,0.398237,0.879232,0.156081,0.758273,0.711001,0.414936,0.381934,0.0499738,0.567456,0.574821,0.368734,0.525659,0.636041,0.406815,0.427064,0.481326,0.73723,0.503068,0.382799,0.177809,0.850487,0.739475,0.0402534,0.185492,0.363835,0.919485,0.608563,0.739677,0.128633,0.967147,0.51422,0.783596,0.916327,0.766475,0.860926,0.337779,0.395854,0.224042,0.621134,0.871597,0.398512,0.373123,0.905785,0.212608,0.21525,0.0376272,0.10157,0.348226,0.140971,0.707348,0.425696,0.867019,0.643864,0.889189,0.302044,0.198911,0.351654,0.755772,0.274766,0.272887,0.65266,0.956628,0.954569,0.199506,0.373533,0.717592,0.197451,0.591994,0.469381,0.119905,0.517082,0.565513,0.786831,0.493021,0.350809,0.585931,0.919769,0.157655,0.373227,0.653515,0.575438,0.61994,0.0335509,0.400599,0.639776,0.967348,0.355234,0.888086,0.807856,0.157972,0.402676,0.983283,0.65764,0.23577,0.20405,0.0962445,0.430419,0.203026,0.919703,0.0783144,0.970795,0.0817146,|0.762053,0.148964,0.741961,0.238112,0.457117,0.70609,0.483234,0.696497,0.664904,0.323175,0.392485,0.251723,0.604464,0.125262,0.864499,0.962818,0.998168,0.432377,0.84443,0.843151,0.324051,0.414528,0.0856111,0.934664,0.854185,0.0189563,0.910215,0.725053,0.0854263,0.498687,0.544681,0.760538,0.451438,0.119152,0.585023,0.791324,0.798445,0.981252,0.594242,0.978027,0.43031,0.758141,0.565582,0.622436,0.528179,0.246484,0.862705,0.0496287,0.0761365,0.293003,0.27134,0.955178,0.229992,0.0734569,0.240103,0.575702,0.649243,0.133495,0.901369,0.14773,0.847599,0.446455,0.303689,0.198944,0.0345616,0.708648,0.650993,0.767507,0.743465,0.695854,0.213424,0.527327,0.958674,0.456577,0.591076,0.00842291,0.58935,0.264158,0.615196,0.851114,0.814042,0.500243,0.980649,0.159744,0.709924,0.193812,0.134458,0.812848,0.284577,0.118098,0.0537139,0.340364,0.988356,0.188007,0.178645,0.524869,0.16821,0.904078,0.594865,0.748312,0.318839,0.108758,0.901385,0.162455,0.371081,0.00349784,0.566742,0.397857,0.0182056,0.0565982,0.973868,0.488904,0.115488,0.960608,0.995963,0.178521,0.229363,0.441285,0.466206,0.965131,0.90064,0.648962,0.938097,0.168476,0.770416,0.322012,0.859767,0.698981,0.635254,0.395446,0.624561,0.76724,0.443087,0.264495,0.454046,0.0937022,0.326928,0.948659,0.288099,0.914546,0.933843,0.352453,0.265895,0.0888394,0.694684,0.0743251,0.240502,0.318843,0.440825,0.875304,0.0373867,0.298491,0.00562543,0.628867,0.0947794,0.967308,0.248086,0.0767121,0.942676,0.930436,0.812937,0.472271,0.328669,0.0992784,0.271371,0.659242,0.419791,0.319706,0.236495,0.902965,0.753139,0.52367,0.385716,0.506777,0.719862,0.464743,0.667745,0.82587,0.964917,0.660037,0.283199,0.382501,0.280587,0.134952,0.375935,0.729427,0.850195,0.567898,0.322527,0.577057,0.13786,0.833066,0.128449,0.312521,0.192658,0.1686,0.0421811,0.364597,0.332462,0.885503,0.647112,0.665266,0.246313,0.442775,0.950045,0.444421,0.886868,0.874736,0.42317,0.675057,0.873935,0.702586,0.318811,0.567736,0.510183,0.528074,0.909857,0.332886,0.131661,0.33425,0.654573,0.212555,0.323942,0.797974,0.949266,0.688235,0.206997,0.797176,0.424499,0.69108,0.751651,0.827218,0.889088,0.378093,0.487481,0.925538,0.375001,0.322514,0.973485,0.155636,0.140166,0.0330497,0.569232,0.200556,0.131278,0.362107,0.371155,0.376589,0.635554,0.0656747,0.523776,0.53522,0.649712,0.164714,0.941558,0.153173,0.255724,0.910148,0.521949,0.164992,0.675881,0.79713,0.255271,0.864648,0.516153,0.160492,0.367848,0.260183,0.711151,0.990522,0.0549193,0.0141835,0.70291,0.885366,0.45837,0.174833,0.285963,0.924136,0.218218,0.804118,0.780952,0.823257,0.34543,0.528172,0.514822,0.99359,0.921895,0.692873,0.787893,0.384189,0.167847,0.140648,0.816062,0.222281,0.227789,0.844153,0.634088,0.673485,0.950795,0.700419,0.119084,0.17526,0.419922,0.788602,0.884202,0.433375,0.342843,0.05338,0.654207,0.060976,0.667581,0.102194,0.767648,0.0390142,0.775884,0.414008,0.648083,0.444889,0.777829,0.277717,0.539971,0.430207,0.039788,0.405736,0.832992,0.352459,0.144664,0.258096,0.76556,0.308763,0.924447,0.40468,0.248667,0.414113,0.0107254,0.154884,0.491889,0.120532,0.732967,0.221321,0.319625,0.84447,0.924095,0.644109,0.246661,0.212492,0.783656,0.703409,0.728271,0.313544,0.864348,0.920191,0.563507,0.668152,0.134359,0.71252,0.872188,0.74546,0.336625,0.443945,0.0767332,0.48605,0.94598,0.511622,0.632081,0.261967,0.903031,0.371941,0.997506,0.443158,0.302198,0.875865,0.0113002,0.133044,0.0819535,0.895109,0.207949,0.42559,0.0891685,0.421606,0.980893,0.716287,0.27725,0.304545,0.715673,0.591611,0.0352312,0.794335,0.750634,0.234694,0.969629,0.28004,0.517882,0.611754,0.518751,0.0407335,0.198391,0.0191232,0.183109,0.593986,0.0313009,0.299962,0.636718,0.640242,0.907074,0.427658,0.872285,0.339944,0.121596,0.0423784,0.660571,0.467001,0.327433,0.856142,0.818942,0.0515438,0.997303,0.158041,0.70611,0.285359,0.778448,0.562546,0.737334,0.570353,0.707769,0.639129,0.462183,0.303246,0.255175,0.507234,0.0906376,0.879922,0.906411,0.60528,0.440644,0.210591,0.895717,0.475214,0.972122,0.225471,0.822025,0.468335,0.001984,0.0747263,0.151256,0.284498,0.929272,0.0956293,0.667545,0.181096,0.569558,0.848311,0.552938,0.81767,0.453163,0.953562,0.783058,0.0818809,0.351323,0.729108,0.12324,0.369552,0.807178,0.665215,0.879731,0.911447,0.599554,0.86537,0.923273,0.709552,0.674244,0.187092,0.48011,0.0455887,0.649462,0.968415,0.331789,0.245379,0.670971,0.863436,0.486968,0.57798,0.0662405,0.0150598,0.476089,0.747107,0.901575,0.00892699,0.188827,0.384458,0.300177,0.264996,0.41387,0.305031,0.688437,0.88848,0.398264,0.86449,0.95529,0.451964,0.835812,0.647037,0.847512,0.971373,0.784489,0.102216,0.404075,0.425881,0.299681,0.0736341,0.562194,0.891076,0.934174,0.268431,0.527042,0.620777,0.565813,0.810897,0.961848,0.704983,0.573932,0.565871,0.605518,0.626027,0.996033,0.833333,0.944722,0.762063,0.412825,0.128113,0.013132,0.355768,0.69754,0.288655,0.389319,0.616971,0.296397,0.197068,0.273137,0.287439,0.679126,0.363642,0.0548777,0.742668,0.496361,0.497647,0.785827,0.652322,0.294227,0.285384,0.859822,0.275959,0.466319,0.64516,0.318959,0.116145,0.850759,0.709216,0.655403,0.569627,0.728322,0.564813,0.238546,0.174966,0.794611,0.830085,0.413049,0.0132817,0.0692022,0.884446,0.667746,0.0902781,0.0136851,0.915539,0.830098,0.648512,0.430573,0.553326,0.257112,0.726714,0.355579,0.722122,0.132599,0.476716,0.919164,0.0225793,0.286711,0.200518,0.264225,0.247124,0.850697,0.301844,0.0142507,0.905716,0.156137,0.873518,0.115201,0.319511,0.235069,0.528034,0.311896,0.271628,0.119432,0.996711,0.0670469,0.160559,0.218896,0.816214,0.165858,0.246608,0.605821,0.296854,0.539416,0.753158,0.421898,0.131328,0.911345,0.158959,0.147727,0.366963,0.773464,0.854162,0.677077,0.268303,0.387952,0.728329,0.225748,0.981087,0.725359,0.498639,0.391914,0.652816,0.306634,0.571068,0.195323,0.531525,0.188293,0.886212,0.316656,0.659338,0.689252,0.0223756,0.571769,0.122586,0.136015,0.554654,0.398177,0.687496,0.413572,0.263153,0.980691,0.867666,0.371264,0.121875,0.279785,0.507799,0.722617,0.192149,0.079352,0.467709,0.22618,0.603291,0.252874,0.197369,0.720377,0.464227,0.972697,0.640836,0.410659,0.362535,0.919257,0.96634,0.53922,0.873816,0.721498,0.737128,0.25099,0.599611,0.588922,0.479444,0.465643,0.322345,0.8046,0.776578,0.556276,0.649496,0.688933,0.421454,0.678351,0.625045,0.781189,0.994866,0.522626,0.458624,0.362273,0.363797,0.683338,0.426235,0.106431,0.957352,0.285315,0.83686,0.73659,0.240271,0.513488,0.399571,0.393376,0.289356,0.0683225,0.951002,0.892823,0.175908,0.646927,0.413949,0.142327,0.494702,0.336362,0.575701,0.682572,0.918105,0.88602,0.00448924,0.546862,0.854874,0.0390056,0.210405,0.00284636,0.214048,0.0656649,0.358536,0.884736,0.187254,0.807088,0.749612,0.385047,0.327389,0.0524955,0.182742,0.110935,0.185838,0.292421,0.790301,0.0773284,0.572736,0.605779,0.666063,0.110808,0.850774,0.798334,0.955506,0.956573,0.228252,0.908815,0.46467,0.955712,0.810535,0.674862,0.331086,0.714833,0.579778,0.311982,0.127208,0.242179,0.396091,0.64961,0.00637817,0.145777,0.00175512,0.263851,0.49061,0.530035,0.387123,0.121135,0.244388,0.463927,0.650147,0.672281,0.443398,0.997871,0.0391685,0.942693,0.0743448,0.716943,0.688437,0.769022,0.172565,0.176485,0.862676,0.30104,0.589547,0.29666,0.558647,0.416523,0.607514,0.445379,0.405497,0.847158,0.352863,0.862161,0.917761,0.761071,0.607033,0.414605,0.756959,0.132407,0.409078,0.00685418,0.318599,0.252296,0.217542,0.0144523,0.666726,0.341528,0.202156,0.271235,0.490952,0.158573,0.18833,0.367459,0.213233,0.959244,0.578633,0.607767,0.155774,0.636001,0.285809,0.813582,0.592032,0.643968,0.811424,0.965182,0.0781168,0.681533,0.949613,0.424463,0.865002,0.536023,0.726439,0.677004,0.760283,0.385633,0.5055,0.599886,0.123226,0.244019,0.269198,0.915183,0.607196,0.392299,0.124181,0.348268,0.693742,0.892337,0.38869,0.174043,0.550234,0.781849,0.976267,0.701946,0.197275,0.980202,0.457355,0.743022,0.497213,0.283744,0.644853,0.25053,0.954754,0.341941,0.970029,0.0446294,0.45885,0.436906,0.205753,0.498871,0.923256,0.795828,0.733677,0.753843,0.28813,0.688001,0.32208,0.501867,0.131291,0.377854,0.12241,0.83884,0.763168,0.595943,0.909196,0.39209,0.969437,0.595168,0.117052,0.925673,0.704518,0.937008,0.347477,0.40353,0.462993,0.630079,0.764813,0.281813,0.423268,0.673168,0.430727,0.393629,0.487314,0.0594919,0.421749,0.388451,0.359586,0.42037,0.178633,0.585393,0.0191842,0.0198945,0.2609,0.992433,0.680039,0.205235,0.0567365,0.0842703,0.225922,0.358403,0.085287,0.440281,0.914762,0.237118,0.196015,0.157235,0.134078,0.464099,0.794648,0.0779893,0.191991,0.520401,0.31803,0.422451,0.452648,0.994193,0.342625,0.711473,0.355713,0.293889,0.916645,0.782326,0.749751,0.559128,0.918418,0.0902148,0.0747092,0.789408,0.569326,0.0433552,0.310052,0.398384,0.133737,0.692253,0.65385,0.78767,0.459624,0.584458,0.644495,0.717589,0.0151143,0.583176,0.54004,0.156306,0.990335,0.594978,0.662057,0.568739,0.181124,0.934306,0.75975,0.861437,0.314941,0.00249439,0.0824489,0.321247,0.292326,0.840423,0.224675,0.363143,0.123617,0.166593,0.608108,0.778347,0.0807064,0.874696,0.0619528,0.343355,0.496864,0.961015,0.71317,0.69891,0.45964,0.245949,0.178843,|0.64187,0.855422,0.710942,0.993862,0.151309,0.343633,0.0654904,0.897264,0.544699,0.130604,0.457379,0.0139329,0.302419,0.750729,0.718381,0.0619619,0.510644,0.922282,0.444944,0.353601,0.349428,0.256746,0.188906,0.861535,0.536964,0.431108,0.109636,0.834058,0.0897254,0.470832,0.730157,0.118387,0.893785,0.456827,0.276849,0.859798,0.0542869,0.995208,0.522872,0.789545,0.414759,0.765698,0.721381,0.523541,0.795972,0.698565,0.908573,0.894894,0.220742,0.383639,0.0684907,0.828597,0.593977,0.316499,0.170488,0.672066,0.199399,0.741932,0.354358,0.919412,0.0564672,0.767469,0.254012,0.0681185,0.332859,0.118994,0.246706,0.299831,0.359265,0.646933,0.0555106,0.340583,0.094743,0.531953,0.938285,0.702757,0.102445,0.995189,0.126635,0.766566,0.660965,0.561028,0.0547429,0.792809,0.814507,0.348926,0.668614,0.831178,0.474262,0.406945,0.863132,0.666477,0.549766,0.693512,0.784546,0.96746,0.574546,0.569963,0.3948,0.275277,0.657731,0.124001,0.880457,0.221824,0.39735,0.997538,0.225239,0.957689,0.31213,0.0708987,0.335111,0.182662,0.552302,0.938077,0.19389,0.0361398,0.507003,0.896395,0.682046,0.513179,0.964444,0.715299,0.118511,0.916355,0.497536,0.0302633,0.884053,0.0672396,0.247862,0.748291,0.146616,0.965738,0.676083,0.442895,0.0580264,0.875089,0.336061,0.741001,0.314168,0.947723,0.943703,0.143807,0.400595,0.697158,0.769204,0.697281,0.459348,0.538697,0.0260643,0.916293,0.806057,0.370301,0.467922,0.286548,0.635033,0.102051,0.870449,0.466002,0.72435,0.712961,0.642703,0.697943,0.657965,0.529446,0.414143,0.372856,0.311804,0.198991,0.774879,0.0216144,0.543194,0.417313,0.497163,0.27386,0.586553,0.907218,0.041029,0.561189,0.372684,0.477794,0.0346168,0.652238,0.678232,0.65429,0.766686,0.825666,0.326667,0.818643,0.698059,0.736325,0.84162,0.677299,0.642698,0.51154,0.686788,0.458548,0.292477,0.30972,0.964811,0.0035882,0.87126,0.799492,0.618875,0.32748,0.695914,0.890579,0.617583,0.934722,0.230906,0.219046,0.491706,0.922758,0.757634,0.936191,0.888793,0.156296,0.272972,0.979204,0.748233,0.437814,0.799851,0.869743,0.867042,0.0295735,0.255881,0.364758,0.0312431,0.314884,0.834446,0.170331,0.774431,0.775303,0.899222,0.679926,0.078648,0.0499685,0.32764,0.907414,0.856861,0.738267,0.104821,0.832893,0.941612,0.674595,0.825162,0.953126,0.593449,0.899058,0.746553,0.751429,0.506714,0.979302,0.386625,0.973405,0.296038,0.864324,0.83927,0.152117,0.26386,0.908337,0.173043,0.684556,0.758007,0.917054,0.807165,0.995169,0.738737,0.271755,0.895539,0.369286,0.501396,0.793711,0.668539,0.087034,0.488678,0.99439,0.890944,0.998645,0.235469,0.312291,0.034353,0.617105,0.553851,0.209353,0.400206,0.884799,0.0796071,0.496718,0.329813,0.785072,0.374882,0.311786,0.540758,0.0209435,0.549173,0.493972,0.132075,0.697764,0.990443,0.348921,0.286616,0.743722,0.681227,0.516485,0.746177,0.248245,0.725989,0.947075,0.799987,0.84084,0.703802,0.77285,0.971171,0.292522,0.648198,0.381244,0.0768455,0.400008,0.269127,0.920044,0.0366892,0.0248979,0.951628,0.328486,0.304578,0.700303,0.809109,0.348649,0.142097,0.535071,0.433497,0.53648,0.494058,0.529177,0.688644,0.804577,0.458768,0.478997,0.959307,0.2316,0.629874,0.0628071,0.905292,0.898377,0.944178,0.471681,0.790098,0.823572,0.483982,0.693391,0.880798,0.0511876,0.0181517,0.626154,0.53214,0.834276,0.522044,0.35807,0.257895,0.169915,0.325081,0.371203,0.71559,0.228448,0.00108337,0.278331,0.759188,0.880075,0.47614,0.701316,0.204103,0.451552,0.533384,0.435114,0.788455,0.616693,0.455488,0.744225,0.795422,0.848145,0.723287,0.564582,0.9712,0.468758,0.694702,0.0484851,0.871186,0.0618411,0.448209,0.805411,0.0197969,0.797056,0.0614702,0.736159,0.646124,0.424968,0.510385,0.937471,0.820515,0.279422,0.663752,0.780584,0.982956,0.651937,0.312494,0.0995575,0.987949,0.468005,0.489477,0.83016,0.0840285,0.575583,0.108477,0.456332,0.711843,0.343747,0.790788,0.249406,0.691754,0.565511,0.0792914,0.740619,0.289383,0.735816,0.311471,0.479999,0.892858,0.795502,0.421694,0.955005,0.539115,0.0652082,0.454478,0.0286283,0.00699115,0.867094,0.888208,0.574515,0.276846,0.958788,0.233162,0.477413,0.263605,0.500099,0.341572,0.189351,0.259532,0.863956,0.918853,0.880359,0.952675,0.788091,0.125822,0.158429,0.984312,0.871694,0.566251,0.405812,0.0984821,0.168033,0.628003,0.39556,0.963921,0.566709,0.869675,0.734652,0.529202,0.439663,0.212478,0.262722,0.786831,0.749675,0.48327,0.395586,0.791188,0.282832,0.548329,0.0370932,0.100311,0.00441295,0.307913,0.260075,0.663743,0.723236,0.05718,0.522517,0.554374,0.86895,0.988701,0.678939,0.832923,0.465497,0.444145,0.255597,0.017894,0.289173,0.335504,0.637629,0.354439,0.762623,0.47761,0.617775,0.946549,0.12163,0.694623,0.00934464,0.345395,0.477573,0.0217226,0.205859,0.261645,0.672671,0.143038,0.434635,0.45241,0.27846,0.24625,0.570881,0.0725921,0.926112,0.723932,0.816004,0.942865,0.60487,0.833909,0.586031,0.850923,0.0737795,0.746636,0.380698,0.330703,0.765511,0.735916,0.301652,0.20308,0.842994,0.19024,0.351038,0.148131,0.444882,0.44967,0.567323,0.956438,0.431876,0.0714526,0.470596,0.690545,0.821519,0.405077,0.407593,0.238971,0.960035,0.184832,0.157117,0.435977,0.70795,0.193591,0.0637725,0.886199,0.5362,0.269797,0.175967,0.832502,0.830923,0.842307,0.411953,0.457626,0.75199,0.156977,0.0862479,0.435981,0.407769,0.675885,0.493177,0.173582,0.59065,0.117767,0.214094,0.786561,0.276086,0.265981,0.716053,0.305282,0.592354,0.0262575,0.26046,0.528971,0.318431,0.68512,0.344938,0.876552,0.813537,0.489097,0.30571,0.439724,0.783703,0.619697,0.589998,0.866664,0.0332921,0.826274,0.905967,0.0154101,0.969647,0.548574,0.479529,0.606265,0.885589,0.632402,0.0424836,0.20677,0.743857,0.0870638,0.142922,0.926215,0.806606,0.927369,0.143165,0.0636447,0.0458471,0.870611,0.650899,0.724281,0.245221,0.503916,0.824301,0.493499,0.518606,0.0520594,0.505013,0.221193,0.937355,0.671317,0.0854888,0.411331,0.739471,0.45462,0.433262,0.306441,0.47433,0.978591,0.197202,0.670973,0.250609,0.631991,0.873106,0.211909,0.594188,0.587142,0.779425,0.154545,0.622312,0.165557,0.20397,0.176095,0.0475652,0.162365,0.931903,0.362006,0.491397,0.759494,0.490745,0.794191,0.120587,0.337003,0.343556,0.221814,0.325562,3.46899e-05,0.0889754,0.33426,0.259022,0.699171,0.0711646,0.56335,0.855255,0.138781,0.881829,0.897236,0.319798,0.829223,0.450158,0.646379,0.5314,0.339202,0.447411,0.928318,0.865374,0.701037,0.116822,0.92724,0.251214,0.41199,0.462533,0.168701,0.983113,0.0559078,0.831025,0.792805,0.360042,0.862692,0.845952,0.0474693,0.482266,0.0751446,0.941944,0.904938,0.45418,0.326443,0.717695,0.439795,0.622791,0.00682396,0.497521,0.76836,0.747391,0.864437,0.253094,0.0606511,0.396608,0.157398,0.168536,0.621227,0.902077,0.620083,0.457684,0.414787,0.173283,0.669751,0.751168,0.491472,0.0311872,0.883597,0.610338,0.620051,0.186867,0.726171,0.782308,0.477283,0.869392,0.106116,0.0625783,0.23928,0.835501,0.470103,0.10971,0.200344,0.263949,0.141334,0.346861,0.170903,0.236213,0.930376,0.914693,0.442022,0.400307,0.350673,0.320695,0.754995,0.0245235,0.306379,0.0547149,0.499399,0.430944,0.484029,0.36797,0.392261,0.193135,0.764506,0.210088,0.455472,0.437841,0.0938531,0.269436,0.345047,0.299544,0.714726,0.0661302,0.493143,0.311469,0.646577,0.278032,0.152383,0.437408,0.825839,0.102272,0.747102,0.0906711,0.086889,0.798836,0.921833,0.126299,0.341719,0.747816,0.0161817,0.749306,0.145975,0.659881,0.211738,0.990492,0.241794,0.541418,0.78907,0.793358,0.892442,0.447274,0.426406,0.691823,0.78732,0.723233,0.0244474,0.055709,0.76851,0.275186,0.937407,0.854345,0.786124,0.134819,0.362721,0.660119,0.512801,0.635811,0.427388,0.493823,0.486657,0.651326,0.362646,0.426076,0.515328,0.984112,0.831021,0.965204,0.737851,0.00220609,0.0223132,0.376167,0.0523806,0.63352,0.563011,0.277263,0.251956,0.0730369,0.037796,0.0273479,0.882121,0.369426,0.0311847,0.982838,0.510605,0.173087,0.520459,0.14347,0.0875718,0.913481,0.390792,0.288742,0.345769,0.489906,0.580952,0.543816,0.687519,0.859082,0.515765,0.615447,0.284959,0.0303855,0.698542,0.169802,0.290384,0.845305,0.45277,0.480733,0.65299,0.552791,0.914586,0.555453,0.71423,0.740154,0.212477,0.10736,0.0296108,0.352183,0.826121,0.775697,0.864712,0.0235219,0.485224,0.78825,0.603298,0.990268,0.890201,0.203673,0.925219,0.93104,0.53312,0.871336,0.232842,0.231247,0.341357,0.411626,0.206012,0.98175,0.31356,0.538334,0.0758603,0.552117,0.647486,0.80383,0.439526,0.1715,0.368826,0.10038,0.934353,0.910112,0.439464,0.637494,0.756278,0.653318,0.504219,0.538223,0.40926,0.806133,0.456865,0.906238,0.110985,0.0121039,0.905027,0.507791,0.0504794,0.304713,0.418515,0.24835,0.0765487,0.618034,0.412178,0.0602998,0.528072,0.493463,0.124144,0.726983,0.295399,0.841154,0.453396,0.763201,0.294172,0.598776,0.363654,0.557741,0.812264,0.61949,0.174969,0.0748618,0.630489,0.739652,0.00563276,0.610495,0.810162,0.140235,0.014926,0.807335,0.827683,0.272398,0.769416,0.177692,0.307982,0.729088,0.87596,0.578977,0.922298,0.393163,0.670557,0.23289,0.327343,0.517162,0.215117,0.441736,0.237807,0.224761,0.130727,0.553081,0.773042,0.890965,0.801857,0.0201189,0.583486,0.274875,0.0628631,0.76419,0.844189,0.0776454,0.223777,0.453796,0.331315,0.508166,0.281765,0.667714,0.854244,0.344617,0.547745,0.0742894,|0.449156,0.455071,0.400372,0.145041,0.253254,0.300131,0.99591,0.311,0.0813097,0.285339,0.302723,0.792161,0.123081,0.492449,0.109136,0.509639,0.422316,0.125763,0.932346,0.589036,0.0902444,0.870362,0.810687,0.314234,0.879671,0.64801,0.205347,0.00632292,0.171682,0.16068,0.89638,0.845746,0.689073,0.212515,0.23392,0.103814,0.709918,0.251701,0.690963,0.831221,0.341636,0.191479,0.582689,0.209538,0.662559,0.205018,0.944539,0.0432364,0.637406,0.771035,0.529163,0.959846,0.137393,0.192356,0.0748818,0.839748,0.476319,0.0136709,0.185201,0.521731,0.960221,0.607746,0.462856,0.814265,0.630178,0.315605,0.194314,0.052152,0.0719488,0.403378,0.383039,0.0540575,0.818649,0.488632,0.489613,0.0215834,0.196155,0.355084,0.142246,0.0685781,0.969046,0.757212,0.95448,0.512206,0.609338,0.133924,0.791727,0.494022,0.187506,0.979124,0.350946,0.742259,0.104177,0.00116599,0.297256,0.691498,0.669237,0.368777,0.564108,0.565005,0.363097,0.659654,0.821227,0.696862,0.801232,0.204019,0.98428,0.16284,0.648136,0.51778,0.608832,0.717911,0.188029,0.778482,0.540884,0.610045,0.643481,0.488795,0.492943,0.130043,0.200297,0.583496,0.890029,0.131571,0.438742,0.173712,0.87515,0.883791,0.747557,0.020348,0.125084,0.126631,0.677538,0.885757,0.510331,0.299772,0.201487,0.406602,0.59714,0.557572,0.155288,0.246265,0.656696,0.00997251,0.301678,0.169597,0.351635,0.285527,0.0520879,0.9183,0.670842,0.510255,0.640221,0.391369,0.252544,0.732722,0.0802667,0.0608028,0.57102,0.352893,0.376637,0.251398,0.241553,0.0468984,0.6277,0.344051,0.0240155,0.340471,0.210887,0.175476,0.939696,0.908117,0.124819,0.255118,0.389712,0.341168,0.0972103,0.898632,0.833003,0.319616,0.566964,0.640791,0.428306,0.423561,0.251241,0.171942,0.169645,0.999587,0.371262,0.827352,0.679747,0.240017,0.352022,0.941613,0.745951,0.0533264,0.468285,0.0303717,0.548688,0.765377,0.971463,0.134423,0.0994939,0.00699192,0.771975,0.0393003,0.894362,0.326963,0.550557,0.584987,0.208117,0.915228,0.62646,0.0224395,0.741189,0.20587,0.724005,0.799196,0.225088,0.242852,0.503391,0.73483,0.347827,0.615383,0.682013,0.910896,0.624673,0.0927184,0.818205,0.504969,0.128083,0.132771,5.76377e-05,0.127372,0.0120403,0.751399,0.250097,0.370301,0.180958,0.695935,0.27143,0.822417,0.559202,0.218021,0.656209,0.821876,0.192915,0.356176,0.792211,0.628448,0.541874,0.965302,0.252639,0.0449184,0.335001,0.959652,0.25015,0.500901,0.435925,0.113673,0.403964,0.503925,0.411672,0.0377879,0.56883,0.845484,0.180236,0.0562365,0.298608,0.519461,0.485865,0.146981,0.579545,0.612366,0.906762,0.25023,0.453672,0.589814,0.499415,0.832868,0.301387,0.568967,0.35307,0.189311,0.76733,0.0838068,0.15855,0.297877,0.759096,0.35526,0.391035,0.200959,0.302408,0.325965,0.0670119,0.91801,0.678123,0.807748,0.985582,0.116482,0.999574,0.272521,0.675658,0.0466495,0.416372,0.732799,0.726388,0.219659,0.259253,0.623822,0.0589188,0.16406,0.365977,0.422459,0.5699,0.833886,0.702578,0.935525,0.553186,0.688683,0.425088,0.366963,0.236539,0.0683796,0.496638,0.677515,0.637757,0.72788,0.752413,0.814636,0.896487,0.0832506,0.0508778,0.495443,0.440644,0.886379,0.643016,0.52225,0.0914499,0.563569,0.0960511,0.340699,0.211844,0.300208,0.856059,0.685076,0.575089,0.839505,0.794215,0.917966,0.0164095,0.778588,0.744323,0.0144181,0.154931,0.359756,0.044085,0.495743,0.629936,0.984345,0.644153,0.186044,0.38659,0.638661,0.696413,0.342922,0.584871,0.933167,0.432086,0.684002,0.202885,0.574322,0.820165,0.0172825,0.243564,0.419587,0.405592,0.166037,0.164836,0.165689,0.40223,0.52701,0.583624,0.255141,0.429273,0.9861,0.693308,0.86429,0.0416994,0.775396,0.464467,0.36447,0.616519,0.0208173,0.261078,0.898781,0.0840903,0.257442,0.535657,0.116243,0.740252,0.531705,0.843801,0.258831,0.69503,0.593633,0.750187,0.987904,0.437864,0.311778,0.509742,0.539528,0.453458,0.0923724,0.576332,0.46988,0.238469,0.142873,0.154378,0.884822,0.479971,0.0542834,0.0342562,0.0581707,0.100736,0.0917497,0.793863,0.359629,0.255479,0.364023,0.755796,0.761763,0.106887,0.0950305,0.231717,0.298952,0.201021,0.284673,0.0232683,0.200551,0.00387919,0.286767,0.465301,0.540707,0.334093,0.651946,0.20721,0.66201,0.0247337,0.278016,0.261318,0.322946,0.101719,0.185818,0.315478,0.483447,0.962588,0.937727,0.230464,0.379952,0.166889,0.585642,0.503803,0.901964,0.880578,0.688436,0.174401,0.136874,0.978875,0.078548,0.48743,0.996011,0.531658,0.884933,0.55163,0.198604,0.462432,0.173843,0.956268,0.636578,0.470171,0.833504,0.0601198,0.473183,0.398774,0.115652,0.468767,0.939885,0.913223,0.867094,0.8231,0.174107,0.385661,0.305401,0.149529,0.00730556,0.878759,0.0183563,0.674531,0.0559853,0.892785,0.421887,0.803227,0.936198,0.401752,0.713572,0.870039,0.227496,0.979166,0.22406,0.806072,0.805963,0.933993,0.21008,0.328312,0.561294,0.497221,0.849421,0.216854,0.730612,0.993698,0.93608,0.700657,0.271716,0.44241,0.410416,0.134249,0.898826,0.985715,0.4037,0.825211,0.929878,0.769464,0.841056,0.825938,0.0225325,0.143773,0.221978,0.252713,0.601203,0.224361,0.364536,0.132572,0.166903,0.771494,0.517648,0.503499,0.291753,0.918473,0.121998,0.769831,0.63355,0.588546,0.900723,0.640397,0.138628,0.172988,0.588249,0.562838,0.551426,0.176367,0.542341,0.59336,0.115134,0.318691,0.0321013,0.247562,0.425689,0.984597,0.676666,0.00212157,0.641188,0.201394,0.79358,0.775377,0.192288,0.987147,0.472378,0.953393,0.55889,0.789898,0.763478,0.743674,0.290655,0.858133,0.807053,0.414397,0.0507211,0.627732,0.00744653,0.254867,0.263714,0.0230457,0.304173,0.433558,0.378694,0.953244,0.475669,0.94051,0.772737,0.711369,0.610872,0.637419,0.64663,0.332788,0.146086,0.301129,0.371495,0.239065,0.760558,0.546052,0.503972,0.38333,0.632825,0.540708,0.740817,0.273943,0.909045,0.0250683,0.0206447,0.883402,0.635079,0.615824,0.524777,0.894248,0.814936,0.757741,0.431803,0.207411,0.073004,0.990784,0.405576,0.133455,0.645124,0.73119,0.756385,0.678365,0.43504,0.905713,0.760869,0.481988,0.866828,0.232433,0.523153,0.56541,0.729523,0.281244,0.741058,0.540442,0.880932,0.107485,0.62448,0.222092,0.980523,0.310657,0.351019,0.390774,0.634015,0.219919,0.34375,0.873564,0.222642,0.600973,0.761567,0.272096,0.942755,0.25275,0.789097,0.144153,0.880156,0.19577,0.79641,0.987138,0.660626,0.118851,0.468822,0.394488,0.458863,0.638899,0.841179,0.76121,0.501831,0.053133,0.0542179,0.366943,0.550601,0.345969,0.0774826,0.515206,0.610564,0.207796,0.359844,0.0269067,0.576299,0.136199,0.468807,0.989239,0.0595521,0.995778,0.70294,0.819141,0.903723,0.42326,0.372484,0.720901,0.407435,0.665196,0.752082,0.512419,0.118548,0.20777,0.0304998,0.125838,0.312232,0.275799,0.783584,0.134108,0.303514,0.632932,0.305443,0.0701941,0.385473,0.649729,0.259879,0.00870585,0.892039,0.502473,0.939892,0.209877,0.71756,0.556853,0.53037,0.831585,0.272527,0.176799,0.671909,0.730031,0.997502,0.895859,0.986113,0.271191,0.744125,0.544049,0.549224,0.0170409,0.483871,0.0172018,0.0674917,0.653468,0.351993,0.486409,0.724491,0.520003,0.395768,0.669022,0.448029,0.0961354,0.536441,0.0184616,0.213246,0.801795,0.163023,0.923267,0.985802,0.223803,0.167337,0.390218,0.831997,0.585176,0.560879,0.900902,0.362123,0.15188,0.109934,0.00505167,0.871201,0.425203,0.378062,0.509195,0.83736,0.000829279,0.185842,0.598787,0.0133646,0.512433,0.688519,0.262351,0.52856,0.0445196,0.650905,0.443837,0.981756,0.464512,0.380593,0.642249,0.314461,0.904278,0.698251,0.923448,0.686755,0.86705,0.301845,0.0525516,0.252111,0.568726,0.578028,0.748248,0.303997,0.107468,0.623916,0.802559,0.626498,0.560147,0.53396,0.798997,0.346916,0.670406,0.329435,0.0473108,0.456494,0.935894,0.546342,0.532016,0.40306,0.236699,0.474806,0.268191,0.309948,0.806433,0.484556,0.202097,0.598922,0.107992,0.991159,0.317525,0.84782,0.86753,0.538588,0.0360145,0.227802,0.0334421,0.478537,0.0157154,0.211932,0.488607,0.772097,0.436537,0.707603,0.719537,0.328085,0.562584,0.705786,0.810925,0.790824,0.238515,0.860685,0.411681,0.678109,0.695567,0.423035,0.489344,0.377456,0.634905,0.312884,0.437307,0.243433,0.260487,0.0293663,0.750341,0.0266429,0.177852,0.385681,0.187829,0.750277,0.0745052,0.15743,0.00294465,0.0554774,0.175776,0.697363,0.212296,0.177702,0.760011,0.6481,0.116441,0.691461,0.389812,0.379937,0.962767,0.760497,0.0746237,0.960672,0.424433,0.605335,0.277127,0.924778,0.140194,0.212106,0.22952,0.381484,0.821148,0.592854,0.308327,0.462219,0.270333,0.24061,0.791648,0.913737,0.0507636,0.25555,0.0306644,0.324274,0.659095,0.659479,0.875337,0.802555,0.841745,0.0969421,0.492832,0.216891,0.487235,0.617767,0.37688,0.423178,0.0532147,0.367775,0.312523,0.971434,0.0632707,0.844169,0.644092,0.32075,0.939681,0.137717,0.446278,0.392224,0.136913,0.882642,0.926905,0.752503,0.0373751,0.940582,0.184392,0.3938,0.285097,0.109787,0.300923,0.532166,0.43212,0.0318289,0.891156,0.36207,0.132683,0.832642,0.816902,0.922333,0.506665,0.453169,0.964305,0.186239,0.26805,0.467657,0.969158,0.513447,0.502348,0.590049,0.621197,0.615752,0.421307,0.590253,0.586357,0.649121,0.825306,0.360664,0.00802159,0.433826,0.755897,0.17899,0.115117,0.26984,0.170416,0.765324,0.769136,0.553514,0.576493,0.211062,0.331748,0.0422615,0.941604,0.600276,0.684748,0.955806,0.817771,0.967264,0.425743,0.479993,0.0328283,0.563617,0.867244,0.0176226,|0.900006,0.0525113,0.491293,0.275354,0.742472,0.567798,0.73493,0.945821,0.188685,0.319447,0.484416,0.404205,0.170015,0.522792,0.824884,0.0143133,0.938439,0.0936701,0.312154,0.58578,0.146216,0.260859,0.482213,0.267744,0.726289,0.375884,0.1397,0.788228,0.510316,0.667565,0.960284,0.774044,0.586702,0.666767,0.785529,0.879851,0.316648,0.480593,0.725958,0.494667,0.128208,0.890207,0.0606037,0.76664,0.655931,0.213009,0.54419,0.538601,0.967122,0.228683,0.986666,0.502624,0.738214,0.514275,0.551318,0.435289,0.0163042,0.62412,0.326272,0.537704,0.579175,0.180244,0.242317,0.242751,0.116057,0.0477828,0.839446,0.474997,0.210826,0.073009,0.593611,0.525662,0.205487,0.397701,0.293338,0.895781,0.0124925,0.585469,0.0278345,0.353636,0.730126,0.0386285,0.0771954,0.0818815,0.913638,0.415216,0.744256,0.0640982,0.760492,0.266965,0.885654,0.0575437,0.43351,0.58978,0.7422,0.59883,0.652943,0.541019,0.147209,0.435019,0.424739,0.750754,0.372776,0.478045,0.187716,0.53003,0.343047,0.548774,0.177827,0.55447,0.203258,0.230725,0.493079,0.0513024,0.0573799,0.0228661,0.624454,0.189314,0.0260257,0.55461,0.835355,0.853511,0.430965,0.0633699,0.678935,0.775524,0.660821,0.819892,0.464805,0.430736,0.0519499,0.279172,0.00265783,0.723883,0.849561,0.655141,0.239988,0.980009,0.580142,0.130806,0.676097,0.173887,0.977548,0.435976,0.309648,0.727157,0.901841,0.262173,0.728462,0.550229,0.588141,0.789847,0.332256,0.377449,0.351531,0.415958,0.461396,0.398194,0.210706,0.00596291,0.898967,0.647418,0.595864,0.949896,0.578994,0.746812,0.0563006,0.124292,0.0383113,0.072567,0.944933,0.140758,0.826037,0.305591,0.665695,0.068646,0.701286,0.570493,0.846482,0.79333,0.592999,0.780761,0.533788,0.546189,0.435288,0.957426,0.560415,0.471357,0.166469,0.395217,0.487821,0.0611944,0.411167,0.0971072,0.70991,0.567522,0.945422,0.815513,0.997083,0.262827,0.905306,0.766081,0.386679,0.361776,0.106778,0.733479,0.167464,0.273678,0.948071,0.683363,0.5811,0.46375,0.141227,0.212637,0.710747,0.0522787,0.185448,0.20211,0.701932,0.198685,0.0530167,0.939017,0.856902,0.497851,0.986531,0.534053,0.0317893,0.105014,0.824619,0.298352,0.153435,0.00638413,0.293483,0.730692,0.259262,0.588507,0.887351,0.28254,0.137779,0.761751,0.101635,0.88275,0.794611,0.124921,0.838884,0.10011,0.238221,0.91532,0.110766,0.151309,0.723153,0.89918,0.987557,0.622767,0.942797,0.120151,0.221964,0.628873,0.94711,0.0844921,0.236953,0.578574,0.644971,0.742249,0.650923,0.40659,0.951461,0.480247,0.959767,0.278744,0.27817,0.26915,0.0414371,0.114998,0.655322,0.597896,0.608222,0.757958,0.678266,0.0760876,0.760534,0.0972009,0.104606,0.806545,0.458381,0.947053,0.646085,0.00643939,0.809828,0.243999,0.870252,0.103048,0.769814,0.589871,0.294573,0.702232,0.562965,0.420284,0.645181,0.564204,0.179125,0.715112,0.174238,0.522798,0.107373,0.919399,0.203241,0.237998,0.0748101,0.614205,0.323052,0.850345,0.499942,0.366652,0.484303,0.0907563,0.853113,0.977445,0.339105,0.059068,0.284125,0.645289,0.198289,0.69552,0.251881,0.133017,0.870988,0.391371,0.684141,0.260869,0.142486,0.808459,0.985676,0.309545,0.803885,0.471673,0.237133,0.275957,0.978276,0.84862,0.505342,0.109076,0.58946,0.513992,0.181821,0.410754,0.133959,0.41588,0.498278,0.297071,0.0816754,0.339945,0.173078,0.434819,0.577873,0.439868,0.656538,0.987238,0.757838,0.308594,0.225411,0.395002,0.738614,0.270313,0.824473,0.722705,0.759603,0.344338,0.733271,0.354586,0.48915,0.165533,0.875089,0.867582,0.907781,0.773392,0.0881796,0.601952,0.271128,0.446059,0.752329,0.410688,0.376956,0.546829,0.924327,0.917853,0.379202,0.408547,0.837364,0.602315,0.398812,0.803225,0.706241,0.00346327,0.704529,0.0895647,0.276424,0.307919,0.986021,0.210067,0.896583,0.205873,0.333605,0.995432,0.640901,0.324791,0.705125,0.654884,0.422319,0.965112,0.15586,0.273997,0.196671,0.896333,0.560009,0.821261,0.221404,0.857338,0.739981,0.95688,0.11098,0.531613,0.597239,0.776554,0.449291,0.0458536,0.355595,0.661062,0.944274,0.448518,0.0635113,0.833392,0.934087,0.252578,0.699914,0.0131052,0.159783,0.836949,0.566616,0.950829,0.875721,0.149059,0.69171,0.0684184,0.0642455,0.867275,0.768862,0.928234,0.977383,0.281127,0.0919417,0.545183,0.27525,0.368839,0.681757,0.67176,0.898395,0.889317,0.617627,0.488513,0.514106,0.185988,0.900099,0.928062,0.528916,0.3678,0.62294,0.184392,0.698417,0.58823,0.011092,0.214706,0.583289,0.932808,0.186206,0.665251,0.341019,0.0646215,0.237667,0.103292,0.149933,0.807815,0.282507,0.715195,0.895186,0.872669,0.107998,0.906653,0.0369381,0.489149,0.0949981,0.259941,0.999938,0.339059,0.530955,0.180219,0.81811,0.471462,0.515998,0.0980924,0.786514,0.895039,0.528143,0.996055,0.574773,0.999492,0.222061,0.135861,0.916709,0.435645,0.0980407,0.456985,0.980382,0.174792,0.367565,0.112163,0.347105,0.782082,0.402054,0.477545,0.0130206,0.965879,0.145359,0.537292,0.908428,0.842602,0.241296,0.861257,0.249002,0.236883,0.337045,0.0932817,0.910101,0.626054,0.90396,0.920008,0.393435,0.538938,0.253437,0.611207,0.00146246,0.442028,0.385722,0.739053,0.221174,0.141733,0.133906,0.513929,0.253664,0.977425,0.483197,0.900664,0.25704,0.137494,0.994392,0.692112,0.694101,0.849037,0.804087,0.824598,0.759339,0.426316,0.921548,0.840073,0.660713,0.803156,0.773465,0.820041,0.898665,0.27406,0.487438,0.937754,0.675275,0.507913,0.433598,0.75845,0.208645,0.323315,0.993104,0.459353,0.0878801,0.52474,0.835415,0.738771,0.78166,0.541318,0.808554,0.192439,0.793665,0.554683,0.23816,0.72833,0.571247,0.977126,0.257846,0.192795,0.835638,0.005153,0.055945,0.68334,0.235606,0.823423,0.438016,0.110145,0.863499,0.660033,0.91909,0.357165,0.245082,0.456957,0.469028,0.558657,0.418044,0.276637,0.0646343,0.531683,0.447237,0.504997,0.115778,0.0475954,0.260069,0.970601,0.447109,0.26504,0.3425,0.194831,0.70803,0.332191,0.861548,0.360974,0.644034,0.302576,0.339414,0.864375,0.909044,0.490836,0.810436,0.891167,0.32165,0.30828,0.68849,0.739573,0.0129451,0.325826,0.770714,0.860929,0.312186,0.00395209,0.800859,0.0224321,0.785108,0.574565,0.585289,0.0288115,0.0423985,0.918903,0.861844,0.708707,0.586828,0.794084,0.846672,0.675093,0.545477,0.888556,0.585509,0.128201,0.985262,0.455772,0.381665,0.344016,0.724954,0.413237,0.833643,0.56634,0.333526,0.888291,0.972689,0.425149,0.628607,0.639744,0.61919,0.379949,0.714415,0.0283465,0.746653,0.465585,0.437613,0.866397,0.0123556,0.865417,0.371319,0.792984,0.10685,0.684471,0.471081,0.603582,0.0206859,0.0618473,0.0905688,0.85009,0.274212,0.694094,0.696129,0.210922,0.564497,0.0357268,0.0524409,0.259663,0.00796467,0.976992,0.143833,0.534267,0.717085,0.162404,0.413455,0.501818,0.860474,0.883591,0.547275,0.884919,0.249323,0.447409,0.196521,0.0141075,0.495965,0.308466,0.602359,0.748957,0.562045,0.28406,0.638438,0.53819,0.462574,0.226712,0.351663,0.787478,0.992021,0.0328854,0.653715,0.18738,0.344184,0.718629,0.86991,0.611527,0.016548,0.945236,0.68199,0.494954,0.0302877,0.0266252,0.283112,0.573062,0.499569,0.576622,0.235923,0.387768,0.669728,0.132541,0.616829,0.0443813,0.934274,0.564603,0.687981,0.920738,0.451964,0.500089,0.559105,0.477155,0.200182,0.242682,0.85923,0.520328,0.77048,0.727183,0.909115,0.907036,0.776376,0.0143128,0.740122,0.961648,0.955411,0.942254,0.724643,0.9026,0.61903,0.636749,0.40847,0.0965233,0.0782632,0.94382,0.42512,0.325793,0.499083,0.55537,0.361773,0.895945,0.543425,0.921193,0.392554,0.17871,0.857615,0.166907,0.0532793,0.356615,0.0190963,0.868656,0.320661,0.123537,0.572612,0.185463,0.637943,0.859295,0.795567,0.545648,0.147986,0.0934013,0.462631,0.607528,0.36553,0.0140725,0.423596,0.672102,0.173005,0.729884,0.894646,0.486424,0.171849,0.257232,0.177454,0.768904,0.290663,0.62081,0.0570552,0.0344598,0.3594,0.283795,0.931622,0.728897,0.516279,0.883051,0.959717,0.542359,0.835487,0.206191,0.148292,0.203535,0.968906,0.0627614,0.0430695,0.687033,0.158204,0.768664,0.197678,0.963086,0.986729,0.949762,0.0240141,0.888131,0.479885,0.171439,0.0558883,0.965287,0.334575,0.0564894,0.261446,0.928022,0.957389,0.106412,0.156824,0.690326,0.713087,0.459724,0.23991,0.254901,0.854245,0.641573,0.306832,0.912353,0.37925,0.851276,0.543248,0.114946,0.0566395,0.835883,0.316263,0.80383,0.534181,0.548744,0.438705,0.337927,0.509991,0.950631,0.874356,0.516526,0.832391,0.358275,0.205226,0.760232,0.237062,0.764521,0.995915,0.977534,0.0221723,0.706642,0.517356,0.795744,0.0191813,0.642563,0.0632241,0.730193,0.822209,0.182093,0.207569,0.926883,0.952262,0.406671,0.920226,0.169888,0.000443101,0.295339,0.0156809,0.792975,0.746616,0.476363,0.233695,0.206693,0.357955,0.333548,0.466074,0.770121,0.878107,0.593179,0.615253,0.293773,0.212949,0.93559,0.189816,0.649933,0.888614,0.988466,0.414409,0.591364,0.441057,0.395397,0.700752,0.686061,0.00322634,0.91329,0.161872,0.913832,0.753376,0.255617,0.865515,0.229114,0.561775,0.237627,0.019859,0.659802,0.158685,0.796242,0.641891,0.633558,0.0135684,0.356183,0.862513,0.0496196,0.0990654,0.202307,0.23783,0.566538,0.930538,0.325931,0.00467545,0.700323,0.750713,0.925061,0.39834,0.927137,0.823581,0.850439,0.70928,0.459411,0.0660217,0.425367,0.802939,0.549124,0.971445,0.979671,0.361563,0.539739,0.12697,0.486046,0.565525,0.238817,0.906818,0.40818,0.755507,0.981668,0.600565,0.418482,|0.528222,0.671012,0.0918706,0.893325,0.427026,0.649504,0.931543,0.395926,0.396869,0.240692,0.358005,0.901511,0.471837,0.142254,0.613245,0.333409,0.824735,0.421572,0.232216,0.135989,0.0139449,0.724832,0.475299,0.997023,0.205819,0.914281,0.943643,0.755631,0.720828,0.850235,0.71529,0.850532,0.909649,0.991332,0.33267,0.66504,0.669498,0.188288,0.930009,0.888297,0.146954,0.376991,0.0342013,0.00457472,0.845116,0.515251,0.897354,0.879503,0.692299,0.843982,0.510731,0.1498,0.497428,0.331487,0.458449,0.435567,0.216723,0.0428683,0.0797875,0.415218,0.579248,0.166144,0.606193,0.656525,0.311504,0.340938,0.126594,0.125244,0.368987,0.424986,0.156748,0.258143,0.53944,0.662956,0.956872,0.900583,0.147609,0.811791,0.388919,0.550608,0.344834,0.333046,0.419823,0.506784,0.478218,0.524125,0.847113,0.522298,0.409421,0.0932787,0.879487,0.387384,0.48058,0.312759,0.432408,0.286354,0.366822,0.0392082,0.0478305,0.848884,0.285391,0.119072,0.333868,0.0662256,0.353047,0.836829,0.580987,0.302798,0.674388,0.743543,0.999636,0.410452,0.549857,0.398145,0.269822,0.683629,0.780656,0.278324,0.864711,0.607698,0.858221,0.801619,0.242356,0.921499,0.963867,0.248608,0.993419,0.966505,0.152431,0.370441,0.556374,0.330113,0.754772,0.0686683,0.82497,0.681673,0.812357,0.114576,0.539868,0.565145,0.874162,0.878725,0.204106,0.63572,0.517403,0.337712,0.712057,0.738384,0.314327,0.697599,0.118414,0.991366,0.0868133,0.041779,0.212372,0.542379,0.493998,0.360336,0.665151,0.999875,0.00544566,0.0366876,0.557699,0.626811,0.0978782,0.189425,0.0817001,0.559532,0.362825,0.927594,0.235994,0.785162,0.442724,0.24712,0.0398174,0.465222,0.0187968,0.967563,0.562342,0.176817,0.502686,0.248413,0.584403,0.450295,0.692696,0.137871,0.659464,0.669296,0.230483,0.703028,0.019763,0.862308,0.572751,0.0445128,0.0391207,0.609587,0.290524,0.288986,0.914943,0.285643,0.0975652,0.15694,0.424778,0.0980476,0.727844,0.938596,0.81486,0.235743,0.923666,0.936176,0.266133,0.937473,0.0917206,0.626812,0.728438,0.449048,0.488067,0.541942,0.908408,0.644617,0.36584,0.723359,0.134686,0.874965,0.982786,0.972663,0.593661,0.45128,0.258354,0.141682,0.805716,0.627094,0.626029,0.641394,0.609934,0.978823,0.508305,0.624836,0.314169,0.317079,0.718357,0.0363941,0.711381,0.781376,0.310637,0.232792,0.0993123,0.664927,0.599594,0.52121,0.989439,0.689341,0.513382,0.0525728,0.0318461,0.926525,0.60514,0.115805,0.26715,0.241551,0.478766,0.869998,0.164892,0.621918,0.270017,0.646528,0.152835,0.601541,0.504872,0.497324,0.952992,0.616413,0.941457,0.612931,0.66829,0.368841,0.67713,0.838616,0.0344179,0.579339,0.178985,0.65118,0.221135,0.898013,0.591564,0.747928,0.9013,0.370987,0.171212,0.197867,0.646287,0.361043,0.367093,0.0681925,0.390846,0.240405,0.189949,0.294323,0.830842,0.517115,0.0631198,0.0429149,0.549389,0.353058,0.796957,0.501318,0.998526,0.00610435,0.868898,0.800934,0.773605,0.279507,0.557923,0.335758,0.801434,0.982952,0.0331002,0.257026,0.6727,0.526785,0.624334,0.0908393,0.971053,0.0615782,0.143039,0.70147,0.443994,0.915873,0.116034,0.638265,0.781026,0.983223,0.809836,0.0195351,0.323608,0.14762,0.630016,0.296195,0.896616,0.0254025,0.577163,0.741358,0.0648707,0.295754,0.104764,0.284573,0.974335,0.611318,0.429616,0.757267,0.0421673,0.543248,0.352191,0.202303,0.294365,0.954687,0.903911,0.934246,0.74417,0.137077,0.0869169,0.71633,0.378512,0.325694,0.899085,0.0512311,0.30461,0.782065,0.638298,0.934208,0.223314,0.438079,0.992607,0.0596318,0.00797343,0.726722,0.470358,0.512232,0.148294,0.966639,0.00813973,0.642329,0.486688,0.234246,0.399385,0.652233,0.399931,0.787896,0.520737,0.465134,0.956796,0.0283773,0.729722,0.457138,0.233661,0.915992,0.482008,0.562499,0.908798,0.97158,0.817445,0.525524,0.954176,0.433066,0.0352393,0.141386,0.0768638,0.39156,0.563184,0.169809,0.818455,0.684637,0.958543,0.00319618,0.641731,0.141914,0.970234,0.0819777,0.975814,0.534872,0.253947,0.409828,0.626129,0.567165,0.131602,0.915964,0.432301,0.855313,0.141858,0.979259,0.142053,0.144026,0.132284,0.946539,0.485536,0.161459,0.759194,0.458394,0.53073,0.197278,0.886421,0.12914,0.047924,0.588651,0.709956,0.0975984,0.808558,0.631232,0.323429,0.0789205,0.0769899,0.0923747,0.264547,0.467041,0.183954,0.131926,0.686637,0.0974327,0.0810328,0.465108,0.614165,0.811414,0.89633,0.209773,0.815097,0.716604,0.614862,0.476861,0.618019,0.155731,0.997609,0.818125,0.0480608,0.609937,0.518367,0.652749,0.342722,0.613458,0.266744,0.799218,0.728577,0.866424,0.866971,0.775943,0.770546,0.544302,0.467411,0.741132,0.158299,0.689804,0.289221,0.456407,0.14418,0.111785,0.471531,0.928292,0.414511,0.682872,0.110007,0.832975,0.644091,0.992246,0.772307,0.232872,0.511745,0.324416,0.625118,0.429063,0.497971,0.0802962,0.713441,0.85865,0.933428,0.00755364,0.0872983,0.291676,0.912458,0.554812,0.737764,0.747008,0.394541,0.584771,0.983105,0.618467,0.846056,0.0772901,0.972619,0.319743,0.406612,0.767001,0.983892,0.0630088,0.559278,0.635585,0.869574,0.807653,0.639242,0.864122,0.644731,0.427622,0.427963,0.0377067,0.575453,0.917718,0.195673,0.756717,0.323614,0.636678,0.370192,0.714717,0.184587,0.656248,0.795201,0.925247,0.798909,0.518173,0.0127195,0.280008,0.0490808,0.347969,0.951231,0.701077,0.850843,0.78512,0.033235,0.296419,0.945546,0.560614,0.87212,0.697472,0.908399,0.678209,0.895515,0.402473,0.526782,0.117399,0.0585979,0.506093,0.279173,0.44011,0.771274,0.544926,0.614911,0.528445,0.72709,0.667631,0.196225,0.170248,0.535084,0.863809,0.519232,0.0435874,0.142706,0.212023,0.844551,0.795345,0.941815,0.104084,0.605935,0.519433,0.597385,0.376966,0.502002,0.394871,0.474533,0.612514,0.178142,0.615726,0.258832,0.099331,0.13595,0.603968,0.978479,0.215408,0.895015,0.839529,0.106656,0.432123,0.291531,0.222685,0.586084,0.481112,0.596729,0.069699,0.858082,0.458859,0.94205,0.366871,0.0738655,0.544208,0.165419,0.944591,0.787445,0.127404,0.246591,0.798765,0.84745,0.531172,0.524282,0.691466,0.845236,0.714293,0.650656,0.792391,0.715442,0.484082,0.345298,0.236367,0.687986,0.202754,0.862075,0.311271,0.552896,0.27232,0.274368,0.207064,0.557902,0.929328,0.28415,0.5368,0.887707,0.565279,0.241576,0.389476,0.329505,0.233194,0.880562,0.315877,0.895842,0.0579661,0.142174,0.737742,0.0990313,0.286931,0.221851,0.779651,0.722353,0.677703,0.180963,0.625926,0.92606,0.213028,0.625846,0.721225,0.71698,0.913367,0.893932,0.161144,0.261711,0.363262,0.457667,0.858306,0.872387,0.380048,0.424946,0.422246,0.331652,0.107114,0.297723,0.247449,0.701316,0.350322,0.149636,0.0594653,0.702969,0.395106,0.183249,0.31495,0.0190941,0.933211,0.376522,0.928833,0.737782,0.811657,0.133551,0.612166,0.774814,0.214988,0.0430177,0.163091,0.791883,0.454183,0.910292,0.628628,0.55706,0.550221,0.118612,0.813809,0.599997,0.492619,0.271106,0.919516,0.874029,0.37878,0.22194,0.209608,0.70344,0.250242,0.815612,0.876928,0.52795,0.225916,0.0638524,0.332474,0.766493,0.516458,0.296465,0.0820959,0.374866,0.823026,0.256343,0.103895,0.891139,0.031031,0.655863,0.732147,0.0347237,0.293327,0.424661,0.138284,0.299471,0.452884,0.337708,0.770347,0.921408,0.534128,0.332274,0.713749,0.900764,0.832125,0.134667,0.0569523,0.548703,0.963394,0.470055,0.157544,0.152771,0.394561,0.509287,0.617475,0.303757,0.0540558,0.722035,0.828962,0.345938,0.800289,0.748723,0.86857,0.0055598,0.819522,0.179201,0.750136,0.85849,0.59924,0.400519,0.8114,0.702444,0.233406,0.37469,0.58568,0.874768,0.0247502,0.564744,0.951594,0.00401378,0.168136,0.546475,0.098733,0.728664,0.563653,0.0327308,0.49242,0.914866,0.73183,0.370391,0.386884,0.589145,0.342579,0.118773,0.894276,0.495239,0.0594587,0.5049,0.743505,0.764587,0.832597,0.876862,0.900728,0.791407,0.102766,0.164147,0.554529,0.449837,0.0598369,0.204936,0.885612,0.881531,0.386478,0.155248,0.0974182,0.725105,0.19475,0.36547,0.138412,0.474729,0.635725,0.508939,0.067443,0.592744,0.00935102,0.424184,0.101002,0.510233,0.6129,0.717104,0.814339,0.0772308,0.295764,0.0365101,0.828358,0.79826,0.182122,0.532682,0.0485653,0.326148,0.544661,0.806845,0.816189,0.443298,0.831292,0.222825,0.84036,0.129335,0.87894,0.116537,0.748472,0.135661,0.661301,0.0812806,0.885868,0.397695,0.76393,0.306591,0.822148,0.632696,0.0964366,0.33122,0.335938,0.103592,0.985795,0.200755,0.281592,0.0653431,0.101766,0.646663,0.316689,0.889592,0.40467,0.387989,0.46972,0.856402,0.358721,0.682552,0.876725,0.476671,0.92035,0.17519,0.865075,0.61513,0.66816,0.150058,0.211951,0.875394,0.598258,0.378664,0.31136,0.955213,0.541293,0.134957,0.881433,0.848473,0.51799,0.470908,0.519715,0.414979,0.939433,0.117534,0.181491,0.833148,0.257359,0.331887,0.320504,0.537668,0.57536,0.0933917,0.304986,0.612285,0.359949,0.160861,0.0598224,0.434143,0.626977,0.625347,0.380135,0.778781,0.463473,0.161586,0.504268,0.443291,0.489415,0.622853,0.4328,0.866106,0.904721,0.671806,0.334252,0.956393,0.927645,0.364811,0.0321659,0.747551,0.972368,0.373341,0.578343,0.346756,0.205865,0.591697,0.17305,0.676016,0.252387,0.753683,0.528267,0.599041,0.332704,0.761192,0.936905,0.836589,0.585852,0.463351,0.996046,0.226023,0.613195,0.276187,0.326485,0.11126,0.246639,0.987792,0.781716,0.942025,0.906995,0.8285,0.168073,0.988993,0.397509,0.806323,0.985796,0.368338,0.594534,0.681596,0.113544,|0.909842,0.169742,0.373303,0.669894,0.532583,0.684353,0.267928,0.551129,0.891034,0.731982,0.886259,0.985202,0.24839,0.111028,0.567636,0.173921,0.781042,0.432301,0.373275,0.736448,0.357534,0.73547,0.47381,0.254285,0.152607,0.885127,0.421375,0.46742,0.767899,0.425975,0.586952,0.372084,0.928462,0.719243,0.528912,0.285577,0.0364841,0.822132,0.419772,0.684903,0.204523,0.440166,0.634897,0.725772,0.213956,0.426208,0.620662,0.471665,0.940144,0.591749,0.301834,0.938648,0.0158719,0.628622,0.0875746,0.907681,0.377838,0.422067,0.244936,0.752478,0.44527,0.987092,0.992397,0.925968,0.409515,0.733676,0.562071,0.733341,0.8397,0.571173,0.622671,0.163004,0.263495,0.376752,0.610629,0.921308,0.96845,0.669249,0.280638,0.649728,0.338518,0.395084,0.031706,0.616433,0.326023,0.668837,0.275437,0.0350371,0.113002,0.544205,0.110431,0.511459,0.629088,0.32967,0.588573,0.0756325,0.100197,0.929047,0.390437,0.978698,0.337302,0.109429,0.431234,0.479308,0.76992,0.045252,0.0394845,0.0435697,0.395221,0.536558,0.176253,0.431913,0.668395,0.706094,0.866443,0.0700008,0.159003,0.395159,0.953614,0.0862495,0.18671,0.0257089,0.161239,0.483504,0.276425,0.754944,0.98041,0.236095,0.834772,0.0251048,0.994434,0.781457,0.933059,0.277904,0.950732,0.181773,0.194806,0.400999,0.6169,0.216579,0.0301555,0.679175,0.517281,0.0133358,0.671203,0.0169294,0.929978,0.437335,0.326487,0.292023,0.183535,0.810316,0.929874,0.231956,0.900908,0.942412,0.221429,0.90942,0.364617,0.964247,0.146372,0.520078,0.359172,0.405888,0.949694,0.850336,0.271095,0.757623,0.356382,0.764556,0.547204,0.716385,0.731953,0.279014,0.244778,0.875611,0.132293,0.842693,0.0808136,0.145638,0.664278,0.55035,0.202873,0.317944,0.360588,0.0528929,0.103767,0.630601,0.179315,0.487926,0.837151,0.68828,0.697234,0.713104,0.148312,0.830774,0.802218,0.413666,0.616555,0.479836,0.0669727,0.0220774,0.358942,0.90361,0.738594,0.800794,0.945637,0.221214,0.246762,0.962798,0.0998816,0.795146,0.554154,0.367958,0.493021,0.479777,0.144256,0.256186,0.434404,0.567111,0.557302,0.17343,0.499919,0.142911,0.927487,0.670703,0.908638,0.304804,0.298936,0.0334941,0.983566,0.344164,0.316353,0.521845,0.592158,0.808367,0.322438,0.374174,0.218303,0.183773,0.322372,0.738187,0.704846,0.42452,0.125419,0.36281,0.482323,0.370806,0.650324,0.643814,0.169444,0.0272838,0.845259,0.363747,0.145418,0.267783,0.307673,0.193546,0.610966,0.455454,0.644911,0.875474,0.487929,0.230523,0.339501,0.716966,0.379511,0.749255,0.0520709,0.201606,0.301115,0.146027,0.674298,0.0805112,0.239595,0.0695721,0.0599587,0.849549,0.393353,0.565728,0.282342,0.417881,0.548928,0.661369,0.715785,0.7346,0.286978,0.0212114,0.421455,0.078277,0.993153,0.404077,0.2346,0.547652,0.199987,0.670595,0.384871,0.530387,0.8047,0.0603516,0.0820935,0.357733,0.325977,0.811374,0.919601,0.0828488,0.877125,0.458313,0.204198,0.305079,0.0959712,0.852509,0.343691,0.674121,0.185613,0.146693,0.768393,0.116845,0.44121,0.00504589,0.994816,0.550112,0.72043,0.465214,0.0827443,0.00449646,0.784703,0.75024,0.040171,0.274076,0.123112,0.137448,0.662302,0.0529903,0.534696,0.665968,0.860073,0.0107387,0.72686,0.150714,0.517871,0.797202,0.223171,0.755363,0.012867,0.234937,0.13039,0.75798,0.473557,0.114471,0.192246,0.928038,0.475764,0.914472,0.452393,0.563372,0.223341,0.33105,0.80549,0.712016,0.63366,0.28178,0.528026,0.377459,0.546078,0.415635,0.185666,0.453892,0.535263,0.329338,0.707405,0.891336,0.915535,0.512022,0.701796,0.0966871,0.171826,0.548457,0.326346,0.170928,0.418948,0.0199831,0.65822,0.769159,0.0198932,0.41977,0.147825,0.747758,0.182138,0.933459,0.971791,0.497587,0.978506,0.544462,0.469537,0.365085,0.578101,0.425527,0.28004,0.114533,0.197384,0.487749,0.157667,0.881702,0.655103,0.477102,0.810282,0.743663,0.811503,0.479171,0.0955765,0.70944,0.0246193,0.964403,0.974553,0.526604,0.277673,0.0837537,0.646584,0.997015,0.919597,0.0473807,0.507401,0.787965,0.670594,0.63563,0.768031,0.869143,0.333654,0.365932,0.142196,0.226875,0.565219,0.29492,0.238673,0.438456,0.977839,0.904926,0.675456,0.929906,0.468469,0.201432,0.29048,0.904645,0.463908,0.151089,0.21442,0.929235,0.82563,0.785597,0.156004,0.148549,0.131393,0.145989,0.789967,0.980546,0.967324,0.51668,0.249782,0.581177,0.00995803,0.317028,0.122795,0.238186,0.711617,0.637022,0.705749,0.441893,0.338379,0.317568,0.745378,0.818382,0.0863208,0.325921,0.705949,0.66655,0.713536,0.731266,0.693244,0.768513,0.0404875,0.194099,0.629079,0.0749514,0.180564,0.981781,0.671245,0.927152,0.661905,0.991764,0.921273,0.431152,0.929905,0.174243,0.461682,0.654826,0.332139,0.781308,0.261788,0.729154,0.805027,0.891371,0.380348,0.992396,0.635767,0.338666,0.957446,0.706753,0.899629,0.197686,0.00531816,0.310959,0.897875,0.535551,0.776924,0.821288,0.212407,0.0428707,0.0437123,0.39818,0.799551,0.348486,0.156144,0.777437,0.630086,0.857071,0.391159,0.874374,0.848798,0.224146,0.755686,0.663734,0.986886,0.573385,0.783167,0.938141,0.078778,0.651402,0.28675,0.692955,0.237479,0.124698,0.369062,0.801744,0.0617195,0.19815,0.750078,0.946671,0.440656,0.580766,0.499754,0.885844,0.0427994,0.219228,0.962702,0.998677,0.255671,0.0509474,0.289021,0.649442,0.818516,0.770614,0.0982975,0.334716,0.0565457,0.529552,0.611317,0.663344,0.275221,0.306939,0.878748,0.780553,0.885154,0.480903,0.535145,0.0122578,0.886878,0.861598,0.125613,0.725872,0.948917,0.47515,0.140848,0.410603,0.768601,0.190489,0.334317,0.844193,0.871469,0.201575,0.266304,0.668545,0.546925,0.285093,0.405814,0.438813,0.469568,0.263222,0.543232,0.733238,0.959209,0.849632,0.201283,0.0205184,0.226818,0.192749,0.0322723,0.929495,0.743232,0.129101,0.348833,0.850429,0.715758,0.736,0.709038,0.0789671,0.346047,0.691887,0.574823,0.679649,0.183062,0.25321,0.0433232,0.927031,0.792859,0.989692,0.871622,0.493031,0.0284104,0.243727,0.452379,0.110513,0.756675,0.600167,0.14441,0.849175,0.89356,0.299064,0.86247,0.534836,0.112427,0.876655,0.875489,0.0528239,0.825386,0.326895,0.246907,0.372678,0.944988,0.277621,0.0176386,0.755309,0.423827,0.317767,0.849081,0.896909,0.783516,0.939115,0.117804,0.340915,0.342811,0.763283,0.813596,0.479729,0.699835,0.227829,0.101587,0.0614172,0.903155,0.644368,0.0105448,0.582697,0.723276,0.19141,0.570788,0.248345,0.335112,0.446508,0.337115,0.103714,0.576941,0.784044,0.882184,0.253441,0.938959,0.618217,0.446356,0.123153,0.39154,0.230023,0.511597,0.537619,0.47007,0.503358,0.697662,0.900497,0.0152176,0.150386,0.548164,0.294753,0.668674,0.392121,0.593704,0.127929,0.221425,0.113553,0.504895,0.655283,0.122318,0.26376,0.839407,0.803132,0.900813,0.802152,0.632073,0.917796,0.25688,0.13136,0.647035,0.926886,0.635929,0.551199,0.194854,0.37924,0.327278,0.718542,0.822862,0.379581,0.756876,0.0452681,0.412434,0.654642,0.415106,0.565449,0.252046,0.309551,0.972211,0.243174,0.115504,0.22118,0.125852,0.174611,0.505982,0.731088,0.929425,0.341121,0.337916,0.0975765,0.65643,0.120813,0.676526,0.930571,0.94928,0.474306,0.417197,0.159556,0.801619,0.112398,0.927782,0.634009,0.852683,0.816543,0.0495162,0.941875,0.639657,0.990666,0.0683285,0.708218,0.605187,0.191982,0.485756,0.0850607,0.627778,0.659158,0.366014,0.692788,0.208664,0.34698,0.0173464,0.935049,0.270989,0.0840866,0.729139,0.225947,0.419926,0.281398,0.54743,0.509344,0.280066,0.843042,0.383391,0.533654,0.712646,0.00510532,0.0432597,0.971531,0.846587,0.549133,0.210369,0.458619,0.326318,0.206308,0.934172,0.046156,0.240368,0.439019,0.452432,0.417385,0.169981,0.171115,0.314422,0.0277033,0.651706,0.453324,0.941276,0.68302,0.370292,0.911041,0.525005,0.130381,0.902697,0.523978,0.852535,0.391665,0.370532,0.471197,0.695288,0.973593,0.559614,0.414324,0.720348,0.365204,0.948207,0.827195,0.567225,0.512223,0.651509,0.00464338,0.632657,0.817459,0.0788137,0.400571,0.115516,0.435252,0.885537,0.316789,0.388361,0.86483,0.847819,0.26882,0.336454,0.574668,0.403537,0.584514,0.653805,0.229114,0.111518,0.962939,0.347401,0.872911,0.997922,0.165477,0.63594,0.071197,0.876883,0.0131798,0.532283,0.855398,0.0550823,0.0146862,0.187186,0.256105,0.825472,0.589641,0.58527,0.346536,0.460276,0.0748401,0.911318,0.363385,0.469037,0.358955,0.602248,0.740937,0.11017,0.0509619,0.781414,0.716796,0.655393,0.0317988,0.128206,0.443098,0.740332,0.495462,0.841429,0.189313,0.657675,0.27577,0.823739,0.263803,0.639883,0.778425,0.536722,0.944517,0.494468,0.619412,0.504309,0.0311035,0.0290321,0.101744,0.260244,0.566924,0.289358,0.245942,0.917598,0.401089,0.991863,0.599852,0.0937428,0.832205,0.255224,0.748087,0.150385,0.191023,0.360554,0.262359,0.904981,0.383499,0.291752,0.598718,0.814751,0.0993743,0.882791,0.602818,0.723884,0.97154,0.0156112,0.801284,0.410572,0.336624,0.238657,0.0356357,0.420698,0.389552,0.669566,0.258758,0.349833,0.439936,0.849547,0.222242,0.918733,0.491284,0.293359,0.358066,0.770845,0.849239,0.548719,0.130111,0.0965701,0.983903,0.0961268,0.681647,0.973397,0.767793,0.847049,0.0655369,0.0933871,0.242507,0.0823371,0.587774,0.0383266,0.0657153,0.624696,0.752331,0.347009,0.466097,0.0822999,0.423527,0.833678,0.254583,0.213109,0.154866,0.376861,0.624923,0.453031,0.793293,0.828429,0.529651,0.575207,0.0452765,0.101286,0.384616,0.979427,0.139868,0.993664,0.215833,0.904827,0.674199,0.843539,0.545528,|0.254649,0.0842271,0.850936,0.50605,0.851299,0.195584,0.289696,0.160141,0.278237,0.455547,0.419386,0.141298,0.90502,0.0247623,0.28904,0.792687,0.577069,0.263619,0.878515,0.316172,0.150457,0.321105,0.166095,0.905455,0.0346312,0.92855,0.355569,0.769578,0.923982,0.194468,0.365322,0.0278635,0.671043,0.115267,0.916857,0.287644,0.245392,0.587048,0.950847,0.111465,0.240947,0.655259,0.288659,0.548155,0.38383,0.840161,0.735068,0.878672,0.840342,0.295453,0.222926,0.458083,0.270489,0.380981,0.118484,0.322078,0.637134,0.435188,0.634521,0.494656,0.649212,0.149228,0.868795,0.834859,0.356346,0.347052,0.541344,0.724197,0.344777,0.397549,0.0822126,0.575745,0.515514,0.00798756,0.0344332,0.464596,0.603363,0.106888,0.986093,0.417604,0.983382,0.424256,0.297051,0.954699,0.737756,0.563165,0.152668,0.380893,0.888909,0.944662,0.427044,0.433718,0.799583,0.62114,0.941172,0.773055,0.450743,0.860118,0.377493,0.041392,0.983451,0.663295,0.75873,0.0591453,0.895227,0.164024,0.351953,0.0533723,0.288652,0.25704,0.14425,0.430936,0.933988,0.871211,0.240506,0.388346,0.958092,0.940796,0.865011,0.0851246,0.0385601,0.434265,0.700564,0.986006,0.210267,0.844752,0.62578,0.937908,0.275005,0.424793,0.407651,0.169684,0.707543,0.554208,0.0407364,0.736157,0.404797,0.450332,0.852626,0.719143,0.658815,0.502721,0.0931641,0.121715,0.166948,0.740516,0.768644,0.199465,0.159314,0.807257,0.477649,0.979818,0.522501,0.778794,0.335601,0.347432,0.663008,0.741876,0.99644,0.0289733,0.913382,0.991528,0.465504,0.0626373,0.795003,0.503913,0.680777,0.127653,0.508337,0.507568,0.611292,0.851708,0.824142,0.609907,0.588719,0.280076,0.821643,0.544045,0.851018,0.916239,0.515784,0.236281,0.767033,0.937766,0.402057,0.106872,0.139388,0.432069,0.782248,0.887892,0.915385,0.371741,0.234349,0.763776,0.177496,0.0143719,0.878465,0.566008,0.47963,0.322293,0.728901,0.756361,0.783158,0.0912682,0.565426,0.827843,0.910719,0.809917,0.270511,0.523336,0.794696,0.859667,0.228599,0.58347,0.678475,0.563586,0.417915,0.960806,0.185914,0.240606,0.799321,0.635497,0.478225,0.185688,0.00792378,0.445001,0.279042,0.0127323,0.549684,0.845551,0.81134,0.0277676,0.839898,0.521097,0.879521,0.528031,0.542086,0.929871,0.59742,0.38629,0.840463,0.416,0.284957,0.308441,0.918111,0.385665,0.81786,0.288984,0.0241328,0.15204,0.431814,0.751972,0.954436,0.384557,0.482864,0.472863,0.0433545,0.442116,0.254414,0.6592,0.353811,0.113943,0.305935,0.485332,0.0288338,0.143328,0.735021,0.289376,0.807135,0.0196952,0.509558,0.694524,0.831249,0.83336,0.467512,0.569198,0.259784,0.755834,0.651559,0.350374,0.907833,0.952146,0.194003,0.275381,0.816605,0.0870678,0.22824,0.181797,0.798618,0.0822366,0.185135,0.415667,0.733522,0.562508,0.594106,0.409057,0.790353,0.166249,0.642049,0.47586,0.512711,0.589477,0.642372,0.824417,0.383198,0.659447,0.466477,0.781547,0.517041,0.740542,0.981138,0.34348,0.201632,0.345041,0.232362,0.380294,0.40364,0.236938,0.731801,0.789779,0.85952,0.509978,0.0781658,0.958447,0.944633,0.98422,0.920707,0.744081,0.415768,0.0721664,0.121094,0.431221,0.108407,0.578158,0.40285,0.580339,0.175361,0.38859,0.410556,0.647663,0.56929,0.0891627,0.0543525,0.679274,0.0227742,0.268692,0.694489,0.216658,0.93096,0.392024,0.489665,0.182186,0.300969,0.139419,0.096226,0.979053,0.590466,0.662981,0.860719,0.643542,0.159069,0.750866,0.675539,0.439191,0.580145,0.105663,0.095296,0.0945658,0.627893,0.31123,0.263574,0.812214,0.960863,0.168512,0.0745456,0.622497,0.0138345,0.263633,0.184847,0.950339,0.490676,0.435263,0.674053,0.374164,0.876915,0.518952,0.0979039,0.562086,0.0229861,0.262429,0.903013,0.623535,0.075703,0.540092,0.186985,0.532318,0.00101745,0.572737,0.442309,0.17289,0.230259,0.148358,0.350661,0.367495,0.50936,0.847707,0.567791,0.702958,0.885012,0.309738,0.227517,0.255365,0.150842,0.470105,0.724761,0.362386,0.999782,0.577446,0.488998,0.0359527,0.352662,0.516504,0.0269081,0.583151,0.172846,0.801055,0.669997,0.168038,0.115084,0.690448,0.24918,0.427802,0.476631,0.951389,0.922556,0.0364441,0.684319,0.807677,0.427742,0.453007,0.133481,0.488161,0.961905,0.0728744,0.19173,0.386524,0.973793,0.314694,0.689855,0.027178,0.401213,0.429595,0.405996,0.643811,0.0591547,0.846924,0.629935,0.0601556,0.99705,0.125849,0.78271,0.362101,0.658658,0.138221,0.371741,0.346833,0.595103,0.538631,0.924365,0.479011,0.0425656,0.124056,0.72475,0.048451,0.889474,0.0622406,0.893725,0.468552,0.896068,0.612689,0.726441,0.254049,0.561033,0.130632,0.774303,0.0510878,0.462807,0.538123,0.838425,0.889059,0.563712,0.387254,0.0144562,0.835738,0.35202,0.52961,0.481801,0.508268,0.999856,0.930887,0.581402,0.903382,0.314422,0.659981,0.694511,0.644879,0.470651,0.654795,0.390876,0.231619,0.634013,0.955272,0.978657,0.918321,0.860045,0.762761,0.211785,0.135885,0.554593,0.63151,0.513003,0.945789,0.554324,0.159851,0.401092,0.839892,0.404664,0.676771,0.267588,0.09066,0.0355913,0.64468,0.410429,0.785006,0.763013,0.486629,0.851463,0.321385,0.0682136,0.493242,0.170189,0.708488,0.677198,0.219895,0.0918286,0.865733,0.106232,0.708286,0.0505891,0.635801,0.517783,0.394012,0.200602,0.301685,0.604846,0.929934,0.676226,0.772425,0.981946,0.0838713,0.714543,0.950687,0.0392276,0.411988,0.769139,0.474998,0.847354,0.988538,0.519986,0.119468,0.00455534,0.846472,0.828555,0.0111443,0.91601,0.412977,0.696913,0.122696,0.680901,0.236617,0.833748,0.182669,0.734202,0.821683,0.637036,0.876258,0.655158,0.760314,0.645667,0.451724,0.42057,0.767377,0.540517,0.580786,0.434298,0.680419,0.635791,0.150801,0.766509,0.267322,0.685823,0.532517,0.578773,0.798769,0.291193,0.68917,0.554151,0.641562,0.316733,0.216247,0.481686,0.330371,0.858898,0.196593,0.507563,0.733452,0.635658,0.313712,0.241192,0.123641,0.567388,0.157998,0.723221,0.565109,0.223658,0.410814,0.245378,0.606151,0.151906,0.555622,0.167525,0.0354754,0.0271109,0.524612,0.193225,0.125269,0.720304,0.749416,0.36325,0.33257,0.199647,0.799089,0.851479,0.631396,0.173165,0.068527,0.192873,0.83839,0.996269,0.250626,0.639934,0.48024,0.312837,0.0922226,0.0181533,0.621963,0.685849,0.326827,0.327168,0.495055,0.448439,0.286162,0.717716,0.357253,0.708474,0.987559,0.915025,0.976683,0.384479,0.820531,0.560572,0.215941,0.672717,0.588485,0.00315499,0.159567,0.909784,0.505748,0.342309,0.321293,0.7159,0.593436,0.453106,0.71101,0.238305,0.762489,0.903306,0.493427,0.477885,0.810336,0.693509,0.520197,0.680713,0.484793,0.337993,0.838488,0.873747,0.610382,0.668122,0.6272,0.271222,0.197165,0.400002,0.103023,0.154494,0.0969629,0.660545,0.703303,0.515928,0.984026,0.434551,0.65755,0.130379,0.299555,0.854816,0.768453,0.819547,0.532309,0.918447,0.841094,0.849646,0.0916725,0.167247,0.353183,0.671271,0.851256,0.365037,0.34989,0.459049,0.564628,0.658753,0.108762,0.213049,0.927094,0.231369,0.351199,0.984362,0.411284,0.0296397,0.34626,0.586351,0.108486,0.00572139,0.00500697,0.750819,0.997134,0.983366,0.223123,0.590281,0.974662,0.595106,0.392587,0.718617,0.684357,0.989242,0.297768,0.253883,0.647058,0.579177,0.932555,0.262916,0.382398,0.124628,0.344175,0.641146,0.865468,0.240356,0.263043,0.651845,0.149848,0.59464,0.248264,0.0807561,0.344973,0.901773,0.875171,0.511238,0.217449,0.649248,0.0801929,0.742057,0.771778,0.400442,0.151665,0.39121,0.112381,0.943237,0.287387,0.133242,0.0970227,0.499204,0.722826,0.863019,0.50097,0.0959072,0.065334,0.319821,0.604008,0.999148,0.271796,0.725838,0.872364,0.756354,0.632502,0.892926,0.531198,0.747669,0.0771414,0.0969596,0.96862,0.294661,0.040408,0.0418151,0.38333,0.138057,0.853561,0.809131,0.455363,0.844375,0.841721,0.540514,0.292166,0.987519,0.597729,0.857134,0.0150006,0.708561,0.875139,0.675139,0.816339,0.641555,0.907841,0.111489,0.036415,0.92691,0.901784,0.137213,0.0626893,0.567201,0.58564,0.540317,0.367532,0.73139,0.675959,0.601334,0.234109,0.446304,0.928687,0.225777,0.942798,0.562454,0.560606,0.352878,0.630724,0.31946,0.412893,0.113048,0.232464,0.515804,0.434787,0.318565,0.785398,0.105149,0.996366,0.172661,0.721578,0.450272,0.745747,0.883288,0.0780876,0.565806,0.338285,0.244249,0.761455,0.365699,0.535256,0.611238,0.535145,0.694424,0.411224,0.027115,0.716904,0.565142,0.9858,0.0941746,0.0139215,0.726146,0.061839,0.54776,0.418316,0.941998,0.610359,0.105822,0.27598,0.966912,0.189819,0.837413,0.421472,0.592877,0.364723,0.711697,0.956721,0.235815,0.167687,0.528252,0.0977417,0.566691,0.421584,0.160053,0.913862,0.404506,0.977242,0.968586,0.298878,0.203225,0.483388,0.185004,0.791881,0.50167,0.326652,0.556967,0.302149,0.119384,0.378417,0.173845,0.39141,0.120729,0.0811254,0.796495,0.975227,0.285014,0.455315,0.930055,0.0133126,0.912845,0.62999,0.790562,0.565564,0.841091,0.777991,0.38734,0.51153,0.535811,0.811294,0.931653,0.432803,0.930305,0.905509,0.510083,0.881531,0.317616,0.931127,0.757325,0.16257,0.820749,0.216096,0.252966,0.502412,0.706444,0.280312,0.715004,0.698747,0.210123,0.972063,0.244112,0.588784,0.6773,0.136917,0.477085,0.853919,0.69133,0.786726,0.0744085,0.976176,0.35411,0.663666,0.461349,0.382123,0.913901,0.524286,0.708636,0.407313,0.302539,0.19535,0.871377,0.617021,0.57765,0.900608,0.810803,0.255221,0.343365,0.442118,0.828423,0.702133,0.697877,0.488706,0.748833,0.940502,0.994075,0.502994,|0.274271,0.636526,0.668811,0.521117,0.473487,0.804704,0.560578,0.468674,0.60347,0.0460088,0.173197,0.559911,0.0340917,0.396556,0.839544,0.879309,0.666506,0.108279,0.0925577,0.715361,0.0381482,0.32103,0.496199,0.414148,0.591428,0.0928854,0.0574058,0.964284,0.0142342,0.731026,0.799313,0.173332,0.926408,0.704839,0.736016,0.583865,0.0506405,0.908571,0.0389253,0.573965,0.653807,0.263041,0.187696,0.219156,0.0905408,0.993389,0.338086,0.411579,0.190666,0.125998,0.0149527,0.701814,0.951537,0.314338,0.435291,0.658632,0.402744,0.633633,0.462215,0.815654,0.0336896,0.972721,0.43161,0.00112075,0.243557,0.588041,0.78936,0.451515,0.276907,0.512756,0.354086,0.379431,0.430628,0.56934,0.844742,0.204162,0.310409,0.98305,0.130429,0.538893,0.895716,0.842592,0.328818,0.433227,0.00912136,0.932468,0.779081,0.803627,0.753325,0.582784,0.642622,0.159767,0.590101,0.0518592,0.750359,0.154063,0.21386,0.960596,0.0956429,0.736686,0.379185,0.93042,0.83972,0.624203,0.485597,0.442106,0.767853,0.0176563,0.102152,0.0945815,0.666764,0.385063,0.806137,0.467033,0.859924,0.91307,0.535706,0.554022,0.329769,0.0339575,0.700807,0.368717,0.487152,0.651042,0.307039,0.731896,0.362764,0.64872,0.718188,0.091073,0.162994,0.782968,0.0715901,0.903236,0.862218,0.573206,0.0673039,0.918414,0.199381,0.172647,0.876235,0.553542,0.347882,0.860872,0.583843,0.874142,0.321514,0.830682,0.210895,0.520885,0.337665,0.892098,0.513923,0.673058,0.830328,0.634922,0.904429,0.239232,0.639536,0.904495,0.375918,0.555681,0.162064,0.983332,0.223423,0.194275,0.979996,0.00889957,0.083415,0.424885,0.821253,0.608208,0.587567,0.824389,0.687026,0.148977,0.898116,0.794893,0.323599,0.611764,0.560387,0.980282,0.216188,0.83821,0.770297,0.45684,0.192661,0.049628,0.0353834,0.864255,0.0913499,0.878266,0.227882,0.200014,0.807711,0.772896,0.767999,0.52186,0.56704,0.837034,0.961744,0.394567,0.413431,0.209962,0.155566,0.272288,0.433838,0.396285,0.315081,0.0382867,0.893583,0.828841,0.572173,0.941958,0.0809579,0.935547,0.0487434,0.889882,0.000278771,0.881176,0.201769,0.422336,0.0553433,0.650573,0.946344,0.15448,0.488542,0.395152,0.816247,0.016353,0.66164,0.018802,0.159829,0.29544,0.388714,0.40331,0.613452,0.454015,0.0875011,0.902728,0.335703,0.234505,0.430049,0.308797,0.0974442,0.386182,0.046236,0.855416,0.889377,0.62753,0.451357,0.365637,0.980314,0.4488,0.133898,0.298511,0.665956,0.115373,0.00592273,0.184244,0.711802,0.566848,0.911705,0.661738,0.544478,0.00619149,0.0778502,0.433657,0.136363,0.0318479,0.571095,0.48522,0.542643,0.121406,0.320023,0.608719,0.259253,0.923333,0.713383,0.459823,0.582388,0.668998,0.737132,0.988756,0.758295,0.62008,0.156233,0.642036,0.75069,0.150584,0.244534,0.765416,0.493355,0.756461,0.497073,0.622282,0.823635,0.265558,0.12348,0.0290464,0.265825,0.927939,0.516921,0.390187,0.328259,0.524079,0.992722,0.558889,0.299924,0.273509,0.326031,0.420411,0.37102,0.627579,0.644492,0.530155,0.612387,0.94181,0.143918,0.362799,0.451215,0.540452,0.714809,0.998414,0.0526909,0.705848,0.725788,0.793473,0.827188,0.421651,0.951025,0.537241,0.386274,0.904549,0.0844107,0.347413,0.298919,0.32528,0.237658,0.174819,0.763028,0.908249,0.771709,0.644009,0.196034,0.881825,0.415775,0.625828,0.946733,0.0430084,0.631728,0.306432,0.469151,0.487193,0.840744,0.745714,0.500946,0.306648,0.249589,0.295725,0.459671,0.875411,0.0152243,0.283761,0.0722206,0.477081,0.351907,0.536511,0.510107,0.0117262,0.61414,0.806541,0.0518359,0.346348,0.340305,0.97858,0.781062,0.961306,0.984521,0.690942,0.880558,0.986395,0.393788,0.406186,0.270134,0.520521,0.697216,0.851619,0.828028,0.525838,0.443107,0.935305,0.297333,0.382655,0.363487,0.808334,0.337831,0.314982,0.0869628,0.0563442,0.00431085,0.672448,0.315932,0.609261,0.567004,0.856556,0.37461,0.0103953,0.85497,0.329502,0.448792,0.387748,0.28108,0.225126,0.270686,0.0552303,0.25168,0.584673,0.899468,0.818643,0.0918021,0.165857,0.640183,0.0799567,0.968733,0.10821,0.0199366,0.188334,0.805709,0.672012,0.112948,0.078334,0.204587,0.0505764,0.795108,0.222559,0.628131,0.599309,0.0722042,0.411142,0.765218,0.694504,0.120325,0.0525815,0.185956,0.506518,0.759345,0.853115,0.452217,0.0436979,0.881727,0.413427,0.807012,0.321587,0.287826,0.250313,0.321483,0.189048,0.219645,0.654515,0.387505,0.811759,0.645209,0.48184,0.0258563,0.0171894,0.432751,0.645561,0.722929,0.552629,0.664363,0.84479,0.581316,0.777022,0.38929,0.952703,0.53471,0.432204,0.485693,0.25439,0.115817,0.432316,0.267956,0.957294,0.476486,0.554027,0.183511,0.376043,0.380552,0.763238,0.70843,0.972732,0.711247,0.581731,0.836129,0.621329,0.374316,0.297113,0.688881,0.0793042,0.100434,0.0084812,0.7691,0.00525951,0.828732,0.814966,0.845506,0.133913,0.952587,0.0300495,0.830732,0.120113,0.0835821,0.753948,0.0487999,0.55421,0.302296,0.887433,0.189943,0.875606,0.487437,0.230637,0.592949,0.489546,0.917835,0.540444,0.709394,0.0189198,0.419672,0.415445,0.718948,0.491962,0.593354,0.958959,0.110212,0.821086,0.447197,0.866004,0.451903,0.193903,0.751142,0.566367,0.842719,0.0815206,0.148257,0.452811,0.605456,0.607073,0.471391,0.623993,0.868587,0.847521,0.488093,0.828867,0.735304,0.408532,0.66793,0.517062,0.575931,0.0577644,0.706162,0.500274,0.525045,0.19329,0.507099,0.253465,0.794659,0.84049,0.898832,0.94423,0.547642,0.79737,0.806654,0.0468543,0.725666,0.61055,0.289295,0.993765,0.691195,0.0704406,0.520413,0.816109,0.838604,0.391084,0.0568331,0.817265,0.549153,0.892997,0.341337,0.207312,0.73432,0.920171,0.871953,0.637427,0.376706,0.998371,0.778428,0.554831,0.0389587,0.862327,0.983555,0.715009,0.644189,0.412969,0.274294,0.535876,0.765387,0.12567,0.523078,0.0471403,0.813722,0.374441,0.863076,0.644055,0.430714,0.0101649,0.49107,0.262171,0.888635,0.846402,0.0177465,0.86911,0.318439,0.76609,0.172704,0.339892,0.616603,0.887444,0.320736,0.417777,0.640126,0.551998,0.895613,0.622324,0.768473,0.610022,0.152938,0.492854,0.846078,0.202021,0.127819,0.372437,0.505497,0.515438,0.534543,0.563902,0.271341,0.901721,0.282958,0.0404558,0.714179,0.210534,0.773378,0.819169,0.113246,0.957535,0.554266,0.374007,0.85693,0.513351,0.0565518,0.997326,0.858414,0.267998,0.325925,0.574115,0.428489,0.209546,0.629395,0.958319,0.652051,0.298448,0.104104,0.38424,0.57122,0.779536,0.414232,0.671785,0.215972,0.0967426,0.812628,0.978745,0.224743,0.118745,0.14567,0.789114,0.27514,0.529309,0.43369,0.96483,0.00925416,0.314453,0.743662,0.329615,0.238349,0.760163,0.560606,0.556577,0.337388,0.806857,0.31339,0.967892,0.913202,0.475609,0.529125,0.0632366,0.0974939,0.790288,0.774147,0.00678474,0.44574,0.626593,0.908614,0.456904,0.171106,0.312428,0.581773,0.206777,0.900076,0.298751,0.290632,0.0528024,0.380242,0.705615,0.534097,0.640731,0.225198,0.18343,0.0160537,0.0604386,0.287754,0.984973,0.927151,0.76513,0.43857,0.974622,0.961004,0.0418728,0.741508,0.475398,0.937603,0.778906,0.273367,0.652381,0.884817,0.124033,0.177246,0.246123,0.0928953,0.475378,0.773622,0.116301,0.73725,0.891182,0.198348,0.0959676,0.454926,0.02507,0.33756,0.630542,0.571289,0.232475,0.725412,0.559558,0.400668,0.288397,0.468941,0.758457,0.73241,0.159149,0.811326,0.665234,0.885831,0.263714,0.916694,0.377884,0.771464,0.215463,0.631881,0.667408,0.795364,0.888019,0.169264,0.875077,0.542843,0.59818,0.929933,0.405149,0.139267,0.0524426,0.291992,0.243926,0.878337,0.460168,0.333684,0.198887,0.548685,0.40603,0.427348,0.740023,0.353583,0.871518,0.825257,0.352449,0.00641721,0.157259,0.102289,0.399806,0.514613,0.700229,0.343254,0.595626,0.987212,0.736481,0.546302,0.0997841,0.488742,0.242598,0.946475,0.139251,0.943265,0.28499,0.978276,0.586137,0.00848252,0.494997,0.868835,0.37349,0.310302,0.555557,0.352835,0.950245,0.821327,0.368053,0.048192,0.584609,0.93474,0.324715,0.227489,0.277175,0.16884,0.378346,0.414466,0.975359,0.569836,0.977903,0.405706,0.407876,0.490207,0.0141225,0.185645,0.321027,0.679066,0.773715,0.704468,0.102308,0.0654881,0.60755,0.625475,0.302353,0.925736,0.989103,0.832523,0.838672,0.411731,0.26931,0.846063,0.711424,0.3103,0.35675,0.597072,0.732096,0.362128,0.702987,0.429939,0.81412,0.206365,0.383957,0.833656,0.87491,0.353315,0.479074,0.895818,0.34318,0.581249,0.145159,0.437163,0.685437,0.424501,0.954934,0.863628,0.031295,0.13324,0.665949,0.713172,0.652555,0.799304,0.995482,0.121675,0.870245,0.2347,0.276346,0.270643,0.0077647,0.0630541,0.83511,0.264934,0.743627,0.0524368,0.867075,0.473502,0.660096,0.447525,0.589792,0.163451,0.779036,0.485633,0.33662,0.791193,0.980715,0.197063,0.339561,0.359598,0.993161,0.312951,0.401638,0.436766,0.53362,0.320409,0.76643,0.125974,0.286842,0.399054,0.739652,0.746946,0.565266,0.932447,0.787721,0.901559,0.0430548,0.28353,0.0334861,0.288096,0.198818,0.827522,0.861399,0.855665,0.78022,0.0784409,0.970505,0.974852,0.286022,0.254002,0.296633,0.233936,0.138543,0.980328,0.899795,0.273347,0.955168,0.525104,0.791072,0.114922,0.723148,0.591558,0.0602865,0.659524,0.818892,0.802398,0.974638,0.264487,0.62698,0.890152,0.710245,0.883743,0.964501,0.257577,0.795378,0.719676,0.895103,0.990502,0.0448961,0.276033,0.540528,0.479525,0.89507,0.607808,0.587933,0.268898,0.624286,0.0631165,0.301831,0.472646,0.938401,0.324898,0.653543,0.0268956,0.685236,0.361172,0.367427,|0.884725,0.0677083,0.568307,0.435157,0.0407702,0.365883,0.0909014,0.0282788,0.378867,0.718956,0.0869082,0.145694,0.750557,0.126277,0.546905,0.027572,0.685502,0.13135,0.526994,0.816234,0.485943,0.866122,0.0443227,0.164177,0.782511,0.0340747,0.482551,0.915684,0.967924,0.754724,0.590757,0.167868,0.301162,0.0648993,0.680647,0.583417,0.74038,0.554309,0.584587,0.853591,0.243437,0.566066,0.51648,0.237258,0.0878319,0.448481,0.354117,0.128506,0.677187,0.902011,0.872875,0.749454,0.0672694,0.0123767,0.894713,0.483993,0.463962,0.848714,0.469929,0.570833,0.268885,0.139625,0.448744,0.437394,0.201348,0.590873,0.106382,0.726627,0.334277,0.219977,0.512778,0.739698,0.569736,0.998584,0.917215,0.885286,0.192966,0.589465,0.482274,0.0748948,0.567284,0.740246,0.993862,0.381527,0.863799,0.41495,0.915104,0.188665,0.307065,0.719076,0.139129,0.531859,0.115237,0.0550622,0.967641,0.121067,0.0400028,0.43098,0.643235,0.143355,0.109189,0.817623,0.935959,0.800018,0.148341,0.738465,0.739981,0.176237,0.245639,0.812901,0.621531,0.467375,0.686481,0.0715885,0.46421,0.15742,0.876695,0.330108,0.293213,0.0246446,0.66658,0.357365,0.782313,0.163074,0.514125,0.418566,0.0813694,0.922595,0.365282,0.421381,0.484509,0.520303,0.11648,0.582783,0.783252,0.18433,0.0561237,0.840935,0.141909,0.507251,0.743316,0.378955,0.0186471,0.287244,0.677438,0.185089,0.405581,0.565534,0.31439,0.170827,0.243193,0.133578,0.558661,0.554948,0.76968,0.177975,0.82682,0.672827,0.215083,0.853644,0.197249,0.51058,0.861208,0.186702,0.463406,0.343376,0.972911,0.696595,0.177489,0.213515,0.90991,0.924761,0.393007,0.390908,0.86901,0.18247,0.264127,0.939783,0.536914,0.513876,0.106096,0.252783,0.663029,0.622964,0.190184,0.676673,0.974806,0.382361,0.0851744,0.0754219,0.784804,0.484327,0.480985,0.800661,0.598208,0.564344,0.0185425,0.932277,0.802863,0.197671,0.735093,0.65293,0.919701,0.411855,0.404766,0.132261,0.904487,0.384383,0.960848,0.976753,0.492493,0.163493,0.55281,0.939083,0.641339,0.623954,0.470517,0.450527,0.924582,0.320966,0.191081,0.568809,0.484329,0.474233,0.0734761,0.0422319,0.759842,0.211369,0.693338,0.796314,0.0272606,0.755127,0.34411,0.21825,0.204099,0.21903,0.194276,0.89148,0.692595,0.153728,0.81906,0.829695,0.726334,0.845734,0.292724,0.281293,0.444216,0.365344,0.0593215,0.961872,0.474662,0.0769039,0.564852,0.0596318,0.392049,0.658386,0.275927,0.270351,0.662007,0.390474,0.252917,0.672823,0.0929405,0.944883,0.32587,0.884213,0.43751,0.619408,0.66496,0.687641,0.59515,0.0489143,0.530973,0.719813,0.675547,0.6531,0.807277,0.929071,0.658018,0.633203,0.386869,0.992927,0.315568,0.721137,0.0319103,0.353644,0.951533,0.284625,0.879688,0.507919,0.461184,0.638411,0.702527,0.715983,0.693383,0.240288,0.16221,0.825124,0.611539,0.294562,0.126427,0.00672626,0.821786,0.832691,0.641174,0.0267978,0.970999,0.0180119,0.327393,0.69079,0.571232,0.702071,0.303394,0.0627303,0.897227,0.0341322,0.497754,0.0764616,0.847129,0.0464766,0.482635,0.334916,0.332093,0.85105,0.326006,0.953978,0.606914,0.605306,0.481069,0.687767,0.701642,0.483699,0.292451,0.672273,0.155663,0.969561,0.449775,0.254764,0.825646,0.815697,0.526797,0.532993,0.537049,0.458902,0.760786,0.305905,0.699299,0.685434,0.553527,0.907356,0.870942,0.936346,0.716672,0.674319,0.846023,0.309805,0.615822,0.431417,0.110282,0.751489,0.610736,0.117193,0.562642,0.782129,0.514862,0.718664,0.62048,0.60378,0.223385,0.780782,0.748304,0.245913,0.392748,0.732524,0.570947,0.18411,0.629353,0.553386,0.810764,0.0959752,0.622387,0.0345109,0.3976,0.777599,0.256361,0.735978,0.856712,0.513017,0.0457108,0.822064,0.464091,0.39581,0.511903,0.470999,0.209523,0.74659,0.54283,0.673417,0.707697,0.919104,0.284521,0.478963,0.352358,0.399494,0.99002,0.439272,0.309601,0.477518,0.83175,0.24949,0.830161,0.386971,0.241046,0.883069,0.6414,0.140708,0.581846,0.869012,0.814621,0.742352,0.0243171,0.346681,0.934029,0.115618,0.240678,0.0656289,0.26999,0.262624,0.874179,0.25149,0.109107,0.867943,0.784422,0.619972,0.109376,0.975918,0.161648,0.902652,0.465784,0.1504,0.00671154,0.345555,0.871387,0.524328,0.388071,0.133828,0.236735,0.64473,0.349027,0.850962,0.139147,0.201317,0.163431,0.976476,0.5881,0.561904,0.466095,0.41281,0.374517,0.129941,0.203724,0.055729,0.616135,0.341538,0.764802,0.943187,0.309163,0.619442,0.474271,0.609107,0.931797,0.516472,0.184225,0.217668,0.913633,0.182242,0.897717,0.253842,0.891017,0.745065,0.61163,0.456819,0.308561,0.431732,0.0104308,0.0114287,0.483878,0.899176,0.110532,0.451398,0.185162,0.909132,0.981267,0.152617,0.0892129,0.603222,0.118718,0.270667,0.472679,0.299842,0.526574,0.510421,0.463346,0.641103,0.892212,0.346126,0.917151,0.483377,0.609544,0.409888,0.0886435,0.802943,0.64029,0.689565,0.1821,0.951399,0.221185,0.249592,0.161782,0.0174834,0.511094,0.207124,0.415307,0.658721,0.326924,0.244296,0.536068,0.710942,0.935998,0.534498,0.336462,0.697883,0.356897,0.0946356,0.000926971,0.142307,0.845395,0.880211,0.687828,0.62396,0.0121778,0.969285,0.5031,0.127036,0.0917851,0.504227,0.177826,0.883095,0.929535,0.267811,0.0296367,0.337131,0.296815,0.587558,0.411393,0.774564,0.684692,0.690579,0.295877,0.185637,0.933464,0.563395,0.681995,0.180059,0.0733823,0.565906,0.890057,0.0486487,0.0353099,0.399914,0.526523,0.0650028,0.848514,0.811801,0.502169,0.89484,0.938686,0.3283,0.200584,0.309648,0.781266,0.991999,0.247732,0.884376,0.283771,0.0708242,0.492417,0.17681,0.96784,0.127168,0.924073,0.337584,0.375815,0.171255,0.0694566,0.719864,0.706924,0.378826,0.529361,0.690739,0.18893,0.664306,0.949011,0.843021,0.0470521,0.72124,0.374674,0.684498,0.956428,0.205584,0.129462,0.582109,0.664013,0.648782,0.914839,0.718662,0.183085,0.461982,0.699794,0.0821065,0.867331,0.74555,0.565855,0.204625,0.721065,0.0121895,0.432594,0.404801,0.801184,0.762062,0.675187,0.980965,0.699915,0.0711058,0.0257438,0.559017,0.287382,0.675007,0.75962,0.0427088,0.502457,0.53632,0.635582,0.125974,0.149702,0.186444,0.620423,0.502201,0.444349,0.0411752,0.14865,0.454038,0.357388,0.847234,0.947551,0.435812,0.140631,0.674061,0.0346095,0.351297,0.819877,0.65258,0.1641,0.952242,0.606505,0.805149,0.411958,0.854969,0.231052,0.138333,0.680297,0.349453,0.261737,0.15707,0.611712,0.504046,0.199173,0.639959,0.378183,0.479247,0.668353,0.90668,0.225598,0.46825,0.305492,0.170926,0.864228,0.16499,0.461937,0.00333214,0.149631,0.951617,0.329922,0.00891745,0.854706,0.995268,0.453366,0.899485,0.517272,0.337344,0.55937,0.284565,0.810531,0.117817,0.443628,0.830802,0.371519,0.220439,0.376271,0.428142,0.216695,0.206048,0.232773,0.128465,0.16567,0.290428,0.780716,0.00772971,0.919006,0.743548,0.559786,0.288603,0.459435,0.987373,0.0931988,0.0774437,0.379121,0.0103866,0.775379,0.679691,0.441502,0.0236844,0.915839,0.916979,0.668011,0.98757,0.0314213,0.793953,0.39847,0.80908,0.726481,0.138681,0.383726,0.775313,0.302194,0.0508361,0.855658,0.983754,0.525625,0.294388,0.477154,0.721092,0.430799,0.998762,0.672729,0.59903,0.397138,0.768875,0.0457323,0.755642,0.668809,0.414506,0.187382,0.195809,0.0433287,0.441874,0.16441,0.109059,0.245548,0.850932,0.401791,0.475875,0.271381,0.315991,0.700323,0.914993,0.721964,0.525292,0.110426,0.0912346,0.696783,0.983263,0.621781,0.256227,0.416849,0.634559,0.368821,0.662199,0.0076285,0.393006,0.378007,0.96914,0.569163,0.175486,0.631562,0.669027,0.546592,0.714462,0.156978,0.0333809,0.176224,0.415221,0.208655,0.962383,0.670916,0.0297242,0.0690681,0.773091,0.484429,0.342656,0.144315,0.798036,0.231016,0.990533,0.676846,0.307053,0.920358,0.87502,0.720371,0.33224,0.232669,0.962966,0.324295,0.944904,0.525696,0.551624,0.535372,0.169344,0.780815,0.63466,0.617693,0.828761,0.228226,0.856783,0.837308,0.271348,0.957194,0.0718737,0.719573,0.170108,0.495247,0.154353,0.690204,0.775511,0.805973,0.742541,0.934792,0.894246,0.057375,0.736137,0.507716,0.076771,0.557525,0.755489,0.762899,0.994496,0.999512,0.91278,0.393041,0.200234,0.404289,0.934694,0.951566,0.75324,0.474704,0.906777,0.630888,0.99833,0.953621,0.577484,0.177914,0.428029,0.680549,0.190942,0.100429,0.797851,0.458497,0.0739011,0.292162,0.420225,0.64714,0.885924,0.871899,0.245931,0.383779,0.962039,0.741011,0.736234,0.206798,0.162552,0.102385,0.32322,0.0206583,0.799995,0.741046,0.832513,0.9582,0.0744818,0.852197,0.038371,0.0882739,0.451045,0.305688,0.366672,0.814338,0.64312,0.505659,0.538581,0.669237,0.305419,0.605068,0.740885,0.437081,0.709211,0.716143,0.35884,0.17919,0.180264,0.566372,0.773152,0.469349,0.401757,0.474852,0.238873,0.340086,0.490909,0.79347,0.964234,0.29033,0.449104,0.332812,0.0741468,0.13621,0.53126,0.707826,0.973277,0.877594,0.471829,0.0413117,0.0651959,0.145047,0.0822898,0.244747,0.844352,0.0999442,0.656727,0.0886999,0.432703,0.661762,0.0661025,0.884654,0.856578,0.025718,0.988187,0.840131,0.306138,0.300226,0.457032,0.947881,0.474727,0.581627,0.853161,0.796073,0.861776,0.0812154,0.480405,0.771256,0.0153345,0.613342,0.963963,0.789382,0.91748,0.624181,0.0929323,0.287447,0.335266,0.573993,0.77767,0.216598,0.360144,0.860832,0.999686,0.374144,0.0340505,0.334964,0.0518,0.577127,0.453642,0.0408996,0.297086,0.446332,0.494246,0.555088,0.336362,0.907166,0.0483021,0.266152,0.872022,0.370655,0.751204,|0.955175,0.821775,0.792313,0.542337,0.12099,0.150176,0.751998,0.180119,0.0541341,0.501532,0.972338,0.505851,0.620501,0.460111,0.254548,0.437723,0.582054,0.341611,0.270073,0.83247,0.466797,0.435529,0.493936,0.194118,0.674975,0.142887,0.382794,0.110172,0.680693,0.938909,0.549865,0.404351,0.628002,0.787465,0.440759,0.798213,0.951488,0.501948,0.843735,0.129943,0.221321,0.396385,0.363036,0.353133,0.108042,0.682563,0.377845,0.864417,0.908569,0.0337276,0.844134,0.734163,0.267146,0.168338,0.747099,0.753162,0.0729309,0.717921,0.186127,0.649812,0.956783,0.132941,0.993497,0.93693,0.0650383,0.759436,0.132831,0.00534254,0.356381,0.130297,0.708962,0.688512,0.124447,0.627941,0.470736,0.472465,0.217985,0.902606,0.0280064,0.234477,0.0292506,0.788757,0.556608,0.721862,0.163911,0.285785,0.0649109,0.826775,0.706508,0.893054,0.574029,0.936929,0.529353,0.962312,0.717056,0.709977,0.65187,0.587712,0.715406,0.975749,0.383949,0.978364,0.442099,0.685717,0.0927843,0.374842,0.630448,0.407964,0.658439,0.972582,0.344395,0.638032,0.78841,0.854218,0.0237613,0.628598,0.804746,0.867851,0.603774,0.423669,0.544675,0.687683,0.885522,0.943124,0.41791,0.916168,0.201429,0.467017,0.507599,0.678382,0.735512,0.414698,0.375557,0.551971,0.333811,0.240304,0.423032,0.184762,0.831794,0.533104,0.266911,0.244009,0.386109,0.0662711,0.177948,0.7328,0.208765,0.0546252,0.976788,0.597625,0.416722,0.64276,0.973031,0.136569,0.763183,0.916752,0.248537,0.233888,0.010978,0.12958,0.813432,0.655044,0.576219,0.625513,0.909895,0.0888985,0.0883967,0.756521,0.135916,0.0710887,0.307084,0.662699,0.782044,0.743041,0.0957612,0.682689,0.203941,0.103067,0.0973694,0.15781,0.076092,0.42437,0.993649,0.527525,0.770095,0.25298,0.483314,0.378709,0.319277,0.289511,0.320823,0.871078,0.128043,0.254729,0.516317,0.0751873,0.130602,0.32548,0.896941,0.261459,0.862724,0.930681,0.928171,0.107145,0.27053,0.144365,0.851068,0.644101,0.152905,0.728415,0.712116,0.099628,0.482442,0.593606,0.745518,0.498572,0.702619,0.041499,0.548753,0.240778,0.938347,0.571346,0.154892,0.947244,0.822704,0.034142,0.10939,0.431869,0.121878,0.0250823,0.489626,0.927552,0.248822,0.369704,0.789148,0.381177,0.339588,0.566324,0.317411,0.492922,0.228628,0.221654,0.660127,0.104833,0.448492,0.918267,0.420253,0.400043,0.0178289,0.102957,0.718488,0.438067,0.0616139,0.828827,0.00618714,0.336837,0.288078,0.865588,0.916872,0.646188,0.347178,0.704674,0.468251,0.232644,0.175693,0.822802,0.295671,0.926782,0.482165,0.158382,0.329061,0.157207,0.107812,0.756996,0.924681,0.811211,0.744769,0.483382,0.190201,0.458642,0.343921,0.0694569,0.605514,0.304601,0.182637,0.761772,0.392369,0.336483,0.962821,0.532438,0.191555,0.865043,0.515175,0.793875,0.335566,0.55949,0.394902,0.0968255,0.383807,0.0536532,0.740546,0.412467,0.257822,0.159454,0.039659,0.0277493,0.64525,0.491608,0.0459821,0.458591,0.37033,0.267093,0.59623,0.175961,0.313417,0.576988,0.501158,0.205258,0.302795,0.278779,0.925078,0.288831,0.135764,0.433647,0.659229,0.478521,0.836104,0.105171,0.8352,0.644632,0.884906,0.815785,0.0388891,0.8072,0.794549,0.774491,0.0537116,0.428283,0.234951,0.371356,0.756896,0.74292,0.942737,0.318747,0.646822,0.347026,0.900892,0.647257,0.0566132,0.406276,0.558136,0.106277,0.713917,0.485567,0.888973,0.656019,0.117809,0.988469,0.853082,0.494964,0.0279952,0.367229,0.126866,0.428177,0.93649,0.934902,0.491808,0.223485,0.520309,0.824703,0.775867,0.13206,0.099792,0.565849,0.945282,0.394033,0.9869,0.0772361,0.00450343,0.122771,0.878045,0.581812,0.213424,0.712394,0.35526,0.254396,0.731877,0.786082,0.330808,0.51193,0.651301,0.94452,0.657729,0.386061,0.353803,0.848943,0.533025,0.635393,0.125575,0.809075,0.489927,0.719731,0.102526,0.47492,0.411742,0.502148,0.0241364,0.556857,0.882412,0.394451,0.286328,0.682213,0.875073,0.0186006,0.935734,0.377763,0.318985,0.0593719,0.992774,0.0499378,0.0325269,0.482044,0.66868,0.853178,0.805211,0.0563229,0.727978,0.869902,0.971353,0.802105,0.282394,0.785263,0.850153,0.987471,0.449826,0.655759,0.447958,0.900884,0.638039,0.18244,0.0412246,0.138474,0.327769,0.0836484,0.430206,0.145503,0.775897,0.81574,0.941335,0.0829504,0.31106,0.992726,0.692012,0.458357,0.19739,0.953864,0.097059,0.481283,0.821743,0.744363,0.495487,0.864912,0.73024,0.801884,0.944586,0.978452,0.4177,0.103674,0.170589,0.784735,0.388362,0.0384122,0.272047,0.858168,0.0652722,0.441651,0.335966,0.875402,0.388535,0.30999,0.795826,0.221157,0.277604,0.833462,0.808752,0.429242,0.902024,0.0955858,0.680032,0.831506,0.654453,0.582172,0.466459,0.359457,0.813264,0.318448,0.535706,0.546803,0.247201,0.704165,0.661998,0.293002,0.365468,0.365663,0.693398,0.307434,0.726004,0.54279,0.478435,0.158191,0.169217,0.0132954,0.197439,0.957268,0.281009,0.923373,0.446879,0.670145,0.675703,0.73452,0.841845,0.816164,0.0147605,0.426425,0.973888,0.512504,0.940917,0.310306,0.151351,0.923832,0.731901,0.174267,0.010588,0.360066,0.65509,0.378683,0.999317,0.946405,0.711729,0.865155,0.845225,0.0528584,0.79082,0.555741,0.40477,0.225826,0.853843,0.036478,0.991291,0.48042,0.539391,0.384235,0.156616,0.241388,0.730974,0.68684,0.0663757,0.48064,0.711367,0.711629,0.463592,0.150275,0.246145,0.274357,0.650359,0.27351,0.0316326,0.215767,0.192361,0.136923,0.835857,0.681832,0.0932248,0.971781,0.0402027,0.657314,0.515221,0.521794,0.440232,0.378366,0.495856,0.450653,0.767417,0.906197,0.763559,0.592788,0.706471,0.885215,0.207285,0.12883,0.887381,0.724973,0.0576341,0.125338,0.0200703,0.397522,0.38262,0.148623,0.502021,0.300243,0.804502,0.106508,0.729737,0.996716,0.220765,0.123945,0.295826,0.636896,0.81191,0.504618,0.30182,0.110447,0.340246,0.515988,0.594451,0.82121,0.454119,0.760168,0.500469,0.575007,0.573068,0.0882695,0.990386,0.539698,0.166919,0.782819,0.871608,0.178796,0.965509,0.271511,0.780268,0.305421,0.166991,0.64092,0.105965,0.143443,0.319252,0.818395,0.629176,0.266239,0.415224,0.995874,0.0356227,0.871398,0.564877,0.650546,0.374525,0.400077,0.645093,0.373442,0.0633,0.477701,0.886214,0.196341,0.888547,0.150986,0.890617,0.212968,0.55535,0.573269,0.664438,0.0303293,0.458018,0.447228,0.0736824,0.660369,0.782748,0.877944,0.915361,0.359751,0.464257,0.175272,0.725437,0.305132,0.34489,0.847883,0.244534,0.769664,0.39167,0.36371,0.398361,0.102,0.356592,0.695915,0.235292,0.157867,0.2159,0.328559,0.643976,0.532007,0.321945,0.91126,0.0337955,0.878974,0.642684,0.777979,0.248119,0.414085,0.182787,0.908274,0.669061,0.782115,0.181206,0.115215,0.0440865,0.178138,0.674205,0.0881265,0.515624,0.931611,0.127242,0.872903,0.947048,0.220029,0.496816,0.893816,0.811716,0.115151,0.894158,0.842655,0.00358289,0.431805,0.868462,0.768546,0.274586,0.453771,0.36237,0.267602,0.92526,0.132277,0.664015,0.924453,0.947905,0.48492,0.113483,0.647604,0.271576,0.743132,0.373945,0.0882153,0.915322,0.896043,0.765708,0.641995,0.383292,0.00348002,0.268231,0.700785,0.155491,0.868252,0.927114,0.844159,0.161953,0.749351,0.808651,0.282596,0.0144628,0.682842,0.444175,0.0352198,0.832952,0.643343,0.671954,0.224625,0.108742,0.540981,0.760753,0.355992,0.554582,0.271487,0.716755,0.0624195,0.909386,0.704663,0.116693,0.15413,0.913044,0.106356,0.0129996,0.147224,0.934935,0.558673,0.151851,0.919856,0.192052,0.483711,0.620605,0.362454,0.877857,0.377787,0.753321,0.604927,0.519309,0.335056,0.392028,0.955981,0.597983,0.94464,0.494884,0.333913,0.327156,0.751113,0.571081,0.102764,0.446304,0.0510365,0.382867,0.857182,0.551498,0.702774,0.970648,0.67399,0.449678,0.669444,0.748683,0.888408,0.863817,0.211205,0.3554,0.881469,0.599051,0.13552,0.863313,0.90756,0.9671,0.483281,0.230423,0.150306,0.293577,0.0576996,0.328563,0.312527,0.238598,0.870429,0.996517,0.998668,0.424431,0.896833,0.191532,0.94214,0.709883,0.592172,0.748472,0.0179489,0.648268,0.832297,0.269438,0.670219,0.576825,0.555616,0.392436,0.504211,0.405303,0.332426,0.802247,0.304281,0.762837,0.40007,0.0859391,0.348398,0.683957,0.143512,0.0614586,0.864924,0.702799,0.0752752,0.113524,0.944239,0.66699,0.094258,0.261497,0.643138,0.229171,0.244346,0.59221,0.48519,0.369843,0.932527,0.08448,0.801435,0.344377,0.508014,0.879765,0.871166,0.737196,0.766607,0.714024,0.446668,0.150091,0.583267,0.37462,0.316547,0.299554,0.911539,0.591409,0.69353,0.0874031,0.449265,0.551961,0.246276,0.103195,0.320895,0.456881,0.455353,0.626308,0.344195,0.963276,0.433186,0.0958971,0.00523627,0.462534,0.6811,0.0767361,0.766771,0.309143,0.413508,0.0151835,0.500078,0.0758086,0.567405,0.810417,0.725087,0.633324,0.705341,0.310723,0.648113,0.778667,0.723934,0.831963,0.611737,0.780481,0.659555,0.466742,0.736987,0.186358,0.0705572,0.0862521,0.246815,0.883397,0.415559,0.259764,0.110334,0.582826,0.432217,0.492547,0.984554,0.848158,0.0128757,0.462866,0.283005,0.671947,0.775176,0.136717,0.811106,0.50695,0.468945,0.00709981,0.597008,0.471825,0.766211,0.277636,0.924471,0.880039,0.226773,0.112209,0.988793,0.214197,0.48122,0.363272,0.733266,0.631891,0.717411,0.844971,0.787529,0.257445,0.698531,0.782341,0.878395,0.037977,0.668568,0.409373,0.577664,0.203266,0.944078,0.270764,0.0865688,0.673039,0.147047,0.876086,0.665661,0.85173,0.00747651,0.28772,0.71202,0.305046,0.764509,0.200497,0.925997,0.356901,0.400565,|0.144911,0.651021,0.982194,0.0394165,0.674221,0.642987,0.113322,0.95977,0.833022,0.0842238,0.685504,0.400457,0.669732,0.0168866,0.730384,0.668885,0.919932,0.704713,0.770122,0.918407,0.21228,0.479443,0.542838,0.457734,0.165796,0.254476,0.628474,0.431797,0.575137,0.350016,0.612712,0.289694,0.129394,0.237338,0.160834,0.699297,0.465882,0.133406,0.392729,0.289174,0.677698,0.184472,0.814091,0.282739,0.466942,0.0348626,0.109546,0.273463,0.448906,0.483868,0.420057,0.511792,0.503039,0.11451,0.224064,0.111971,0.345935,0.541425,0.773861,0.336198,0.682399,0.952523,0.716201,0.791306,0.455773,0.880587,0.534186,0.670918,0.199374,0.629155,0.136299,0.62543,0.257277,0.407094,0.521028,0.00496894,0.418613,0.913901,0.841699,0.0756637,0.11866,0.704343,0.567573,0.823518,0.819001,0.0158259,0.195378,0.150643,0.352195,0.254172,0.15551,0.800669,0.384712,0.0134839,0.89696,0.918817,0.586453,0.475693,0.371669,0.869131,0.497115,0.0503062,0.101959,0.225811,0.905627,0.113308,0.298801,0.145166,0.799447,0.826167,0.18283,0.826584,0.704939,0.939955,0.568651,0.831087,0.463083,0.971593,0.936455,0.231629,0.77334,0.482886,0.624382,0.528138,0.64131,0.738203,0.509619,0.186518,0.921314,0.156111,0.286817,0.0848644,0.256568,0.133565,0.362022,0.738818,0.50725,0.277836,0.505959,0.258388,0.542031,0.646931,0.690743,0.0671774,0.392099,0.913065,0.92337,0.588223,0.52415,0.0770051,0.0840974,0.278178,0.683896,0.470843,0.583034,0.81272,0.000474453,0.60464,0.191374,0.619538,0.651165,0.937759,0.252354,0.59372,0.0784482,0.0212041,0.144609,0.494285,0.552507,0.999735,0.573074,0.164185,0.991838,0.0392727,0.780684,0.602051,0.944565,0.841635,0.765543,0.559947,0.151572,0.0989187,0.522778,0.589436,0.223206,0.635618,0.611413,0.741525,0.205795,0.308119,0.251042,0.859256,0.352051,0.0859521,0.613958,0.262397,0.961307,0.925649,0.165557,0.304504,0.00558931,0.398762,0.472232,0.609556,0.360382,0.310007,0.570057,0.589533,0.517485,0.488362,0.426497,0.0732414,0.761169,0.145327,0.641976,0.524589,0.957858,0.94332,0.429906,0.954135,0.111355,0.738327,0.793292,0.690456,0.932776,0.397945,0.870199,0.592516,0.404458,0.723599,0.765104,0.406012,0.386607,0.935615,0.873597,0.312499,0.303703,0.89544,0.679878,0.167062,0.953546,0.0280678,0.540218,0.938018,0.463155,0.86776,0.261451,0.441564,0.712888,0.175973,0.689907,0.238334,0.370528,0.326798,0.715051,0.970887,0.667679,0.612696,0.788368,0.57743,0.817077,0.434133,0.0139539,0.439174,0.710264,0.196837,0.807042,0.0088281,0.831219,0.647446,0.321032,0.128089,0.466426,0.895871,0.720445,0.816177,0.242235,0.430277,0.933891,0.673306,0.15136,0.0322332,0.0285982,0.546057,0.932568,0.644918,0.287212,0.515768,0.852172,0.0867917,0.505663,0.508657,0.234018,0.291699,0.437876,0.966095,0.673971,0.0351295,0.5607,0.570423,0.833216,0.181937,0.212524,0.685876,0.679473,0.905925,0.400501,0.271117,0.527224,0.73717,0.251166,0.183374,0.523111,0.231711,0.978058,0.439687,0.0997781,0.128561,0.458216,0.892934,0.93601,0.0659236,0.373322,0.535941,0.550936,0.964377,0.896349,0.738067,0.0876429,0.327603,0.536827,0.115129,0.543737,0.797396,0.164236,0.729577,0.540885,0.593193,0.967562,0.51526,0.569715,0.52252,0.614253,0.0274229,0.757945,0.200228,0.786705,0.581244,0.161015,0.414985,0.131866,0.418087,0.220542,0.583132,0.852744,0.138513,0.263938,0.768715,0.725057,0.557918,0.535586,0.147111,0.397389,0.858943,0.948487,0.26576,0.730963,0.971875,0.151418,0.820279,0.577366,0.42589,0.495202,0.288485,0.0910259,0.765075,0.0131524,0.726141,0.229346,0.663734,0.311735,0.836501,0.398062,0.731808,0.710483,0.248286,0.279069,0.156577,0.475037,0.954456,0.667988,0.696223,0.812777,0.999311,0.620201,0.00312793,0.700378,0.455245,0.656882,0.0796136,0.365407,0.212743,0.440219,0.551927,0.978565,0.188916,0.56024,0.805438,0.156201,0.419669,0.815404,0.552081,0.979746,0.973676,0.608317,0.760416,0.725989,0.983892,0.0421473,0.234475,0.636561,0.130545,0.379071,0.958802,0.86446,0.851699,0.620691,0.444463,0.580435,0.397948,0.965002,0.223992,0.630865,0.179475,0.906755,0.797111,0.994792,0.621428,0.0631758,0.988703,0.479258,0.163496,0.377956,0.00425839,0.60246,0.195818,0.0531576,0.748172,0.381218,0.459854,0.852417,0.290962,0.37453,0.461253,0.390069,0.516219,0.326309,0.450268,0.0885916,0.887407,0.339078,0.957152,0.920959,0.925572,0.496856,0.193514,0.637544,0.485779,0.0356494,0.114258,0.225809,0.354093,0.246835,0.23567,0.557634,0.10423,0.836802,0.992667,0.952288,0.193955,0.905709,0.608058,0.3544,0.50999,0.719178,0.83334,0.911324,0.119447,0.933356,0.126794,0.380086,0.050931,0.193968,0.97296,0.655806,0.192801,0.216495,0.816164,0.451635,0.932094,0.231456,0.307435,0.438568,0.291877,0.0187299,0.877617,0.583152,0.4182,0.843888,0.550803,0.29796,0.969293,0.944626,0.47455,0.458766,0.0173749,0.817904,0.302344,0.0923523,0.910377,0.03749,0.629717,0.818522,0.9305,0.761628,0.453951,0.286437,0.830992,0.630028,0.408061,0.945537,0.0256377,0.787217,0.914171,0.326769,0.788593,0.67066,0.765775,0.711236,0.408845,0.558217,0.995301,0.132544,0.14128,0.797982,0.0895281,0.620734,0.637893,0.261012,0.750257,0.866541,0.35327,0.470952,0.932459,0.429185,0.839253,0.817252,0.962871,0.357984,0.113421,0.252809,0.99013,0.775562,0.341784,0.157905,0.0353062,0.785016,0.862635,0.332899,0.880686,0.457619,0.880117,0.655165,0.363386,0.639705,0.649579,0.482519,0.161891,0.837905,0.18166,0.892502,0.26598,0.811877,0.212844,0.553755,0.842618,0.658187,0.433713,0.782862,0.859402,0.436651,0.924933,0.941549,0.463857,0.351246,0.40305,0.0332236,0.504701,0.290639,0.799084,0.0375168,0.0581798,0.169895,0.276055,0.589088,0.244828,0.478283,0.518201,0.37132,0.406144,0.565798,0.246182,0.217906,0.148944,0.70932,0.51648,0.695448,0.945412,0.291475,0.516171,0.114677,0.573662,0.724411,0.839669,0.815932,0.696872,0.658368,0.44456,0.691156,0.071174,0.97167,0.0237507,0.220339,0.223044,0.0525774,0.665683,0.0539284,0.177054,0.420838,0.435823,0.350123,0.125236,0.931052,0.00653142,0.768763,0.238777,0.73838,0.19707,0.264024,0.686305,0.12543,0.308123,0.921886,0.98535,0.357644,0.654312,0.401789,0.136707,0.55281,0.544993,0.651169,0.554969,0.23934,0.772294,0.604504,0.72968,0.523252,0.256888,0.90644,0.715604,0.172831,0.935547,0.743825,0.0300459,0.531985,0.170638,0.387062,0.323386,0.228102,0.51406,0.125708,0.605827,0.0908821,0.381288,0.142503,0.289851,0.625366,0.566163,0.354342,0.14811,0.786493,0.630228,0.347222,0.957082,0.265866,0.133736,0.24556,0.0798559,0.464216,0.294169,0.447957,0.802307,0.983143,0.0175123,0.317613,0.701523,0.767148,0.726523,0.819567,0.411435,0.371726,0.629239,0.402799,0.226352,0.630009,0.948917,0.84664,0.330628,0.0381414,0.685122,0.805924,0.165449,0.511713,0.757404,0.39067,0.373408,0.365035,0.310406,0.320651,0.770147,0.729485,0.0591279,0.250795,0.801902,0.999403,0.605543,0.570462,0.539977,0.852997,0.0597673,0.317971,0.963464,0.708323,0.647426,0.763105,0.97746,0.443806,0.23928,0.999617,0.00908309,0.612992,0.432952,0.252306,0.054253,0.867699,0.791364,0.449106,0.514686,0.925751,0.638417,0.955863,0.101587,0.635958,0.392609,0.925505,0.547551,0.237925,0.959657,0.651705,0.302827,0.914339,0.306602,0.232406,0.6585,0.211005,0.842016,0.0578192,0.424233,0.0563368,0.879085,0.149444,0.223921,0.808196,0.483778,0.591317,0.908178,0.529862,0.690382,0.0614758,0.665784,0.4634,0.555821,0.393463,0.147974,0.524696,0.265442,0.917752,0.0738542,0.939888,0.63642,0.0788334,0.80489,0.336895,0.910998,0.766104,0.67757,0.331482,0.939709,0.67901,0.438142,0.433112,0.448265,0.194863,0.875248,0.525882,0.268412,0.987826,0.216328,0.988955,0.65795,0.404042,0.601094,0.0558015,0.620774,0.381095,0.694354,0.725155,0.400934,0.277077,0.458186,0.130498,0.674467,0.399443,0.215359,0.457279,0.227668,0.540055,0.614061,0.822263,0.543135,0.403925,0.578233,0.547814,0.823024,0.383243,0.0973746,0.112857,0.52359,0.0297809,0.747083,0.680846,0.330352,0.987599,0.312404,0.805732,0.999859,0.956202,0.598693,0.0184951,0.630676,0.524679,0.797576,0.14672,0.161338,0.118597,0.128688,0.626358,0.503166,0.113253,0.857926,0.781624,0.821977,0.95667,0.606056,0.408551,0.177941,0.361475,0.109726,0.405274,0.535193,0.271947,0.871768,0.0457247,0.591207,0.966254,0.0752931,0.110669,0.852579,0.430556,0.00831169,0.240592,0.911976,0.227902,0.30214,0.137637,0.978566,0.613378,0.340674,0.701769,0.986706,0.556055,0.368895,0.494847,0.29408,0.97747,0.924286,0.0175539,0.664844,0.748055,0.940533,0.923139,0.839832,0.0684782,0.636009,0.112623,0.960456,0.356361,0.879014,0.598038,0.547113,0.701136,0.795978,0.560122,0.816969,0.937782,0.49389,0.990953,0.938141,0.553937,0.265847,0.545808,0.499986,0.0273565,0.529618,0.861298,0.484052,0.522134,0.809964,0.750617,0.767223,0.639122,0.59914,0.482289,0.986783,0.653653,0.321836,0.61713,0.328338,0.258908,0.248881,0.569245,0.261422,0.47845,0.7633,0.690318,0.204305,0.564921,0.616891,0.785153,0.120691,0.522432,0.509226,0.820376,0.661825,0.170475,0.42091,0.0726789,0.570168,0.661349,0.546486,0.474509,0.848092,0.371751,0.107648,0.49047,0.13825,0.422096,0.731066,0.192814,0.0438825,0.196686,0.906041,0.847538,0.266252,0.472735,0.442519,0.846138,0.452256,0.357138,0.763953,0.602361,0.966355,0.627234,0.319462,0.014488,0.69114,0.266701,0.306777,0.0744672,0.0722398,|0.109024,0.0574017,0.433197,0.510295,0.959667,0.597909,0.643917,0.746234,0.204837,0.711292,0.931551,0.740183,0.347108,0.796373,0.757196,0.156184,0.152268,0.655768,0.325138,0.291231,0.940546,0.571163,0.759331,0.398483,0.492398,0.549338,0.549188,0.749306,0.435717,0.0581353,0.735976,0.419446,0.969484,0.324943,0.361772,0.345185,0.259497,0.968464,0.817474,0.204728,0.818461,0.556819,0.61856,0.397859,0.214491,0.223748,0.10044,0.226788,0.0550703,0.489587,0.513208,0.517486,0.0520451,0.179963,0.767429,0.955906,0.368645,0.755093,0.921551,0.926708,0.757988,0.702373,0.516358,0.0561445,0.909017,0.879085,0.824027,0.410386,0.410653,0.672446,0.103731,0.103469,0.781733,0.106653,0.0285495,0.890062,0.315752,0.440023,0.587106,0.682435,0.863407,0.849922,0.753214,0.143164,0.607438,0.116123,0.680349,0.347529,0.818623,0.851828,0.725363,0.413193,0.55488,0.363729,0.33482,0.189441,0.0297985,0.161978,0.336277,0.318018,0.321046,0.399525,0.661284,0.310267,0.745512,0.61497,0.989347,0.209941,0.429805,0.346758,0.862689,0.968452,0.36331,0.797941,0.21488,0.75713,0.775826,0.541729,0.13024,0.0286531,0.580083,0.830365,0.587182,0.415094,0.287785,0.245211,0.518151,0.402613,0.265061,0.914055,0.16162,0.873467,0.0634846,0.602659,0.377533,0.88684,0.203206,0.546506,0.321976,0.300874,0.410478,0.725863,0.145724,0.148842,0.968599,0.12156,0.248171,0.260224,0.222085,0.943729,0.126176,0.260543,0.237611,0.643122,0.957001,0.29807,0.0328432,0.640629,0.340223,0.220158,0.18905,0.824939,0.0410405,0.237043,0.537745,0.203441,0.523042,0.911242,0.648763,0.028648,0.928124,0.867507,0.514145,0.92684,0.0499249,0.0442185,0.916349,0.0274311,0.00782728,0.968897,0.478337,0.91702,0.772759,0.18346,0.653001,0.301517,0.599479,0.960243,0.627958,0.556165,0.236658,0.762565,0.992822,0.780836,0.919985,0.38505,0.911362,0.0962684,0.665013,0.276118,0.869785,0.173334,0.198816,0.764767,0.257758,0.733407,0.721402,0.171569,0.132016,0.462387,0.0187607,0.864524,0.623346,0.64788,0.114986,0.0514627,0.236343,0.436182,0.660626,0.295942,0.811627,0.359507,0.428344,0.212032,0.163068,0.878002,0.709322,0.219606,0.173626,0.848946,0.740747,0.122884,0.180072,0.481579,0.719446,0.847613,0.644135,0.639065,0.506731,0.939733,0.0654543,0.172473,0.383779,0.905211,0.528578,0.646952,0.747576,0.992822,0.777935,0.258681,0.35152,0.103534,0.551992,0.287441,0.299686,0.585002,0.46856,0.139146,0.611254,0.988368,0.11469,0.532051,0.154861,0.0491839,0.0990147,0.597046,0.123309,0.520761,0.821937,0.493817,0.451904,0.885122,0.299979,0.117707,0.631736,0.23652,0.39785,0.556649,0.484296,0.881445,0.339267,0.661792,0.417905,0.252646,0.167325,0.411024,0.49765,0.887903,0.553386,0.303707,0.226596,0.542084,0.00947887,0.962788,0.62955,0.31129,0.953279,0.45492,0.637091,0.972309,0.757077,0.865686,0.0379927,0.631223,0.206588,0.685804,0.224912,0.732313,0.227933,0.857248,0.990796,0.680978,0.847969,0.579052,0.711043,0.32168,0.735119,0.471559,0.254669,0.874601,0.674235,0.903026,0.308107,0.674205,0.611772,0.57461,0.0919276,0.136719,0.408745,0.860537,0.38224,0.557906,0.615539,0.741103,0.76307,0.0520917,0.568535,0.576996,0.621144,0.555536,0.844881,0.877779,0.682457,0.126044,0.585889,0.0845696,0.791803,0.579979,0.660461,0.659336,0.689402,0.0115964,0.0237806,0.914234,0.256295,0.261391,0.111645,0.367626,0.758701,0.351739,0.44466,0.820929,0.450824,0.60439,0.285316,0.40096,0.474791,0.710084,0.38657,0.757709,0.560835,0.0764388,0.129543,0.765394,0.590342,0.64882,0.858571,0.986783,0.515022,0.384092,0.642445,0.209327,0.282834,0.420042,0.0664064,0.117909,0.400674,0.51254,0.71417,0.404311,0.569845,0.0130718,0.802567,0.659123,0.0036552,0.807093,0.306477,0.936263,0.652209,0.0168327,0.824257,0.7467,0.8647,0.256735,0.589485,0.268385,0.715697,0.686634,0.481968,0.850593,0.67502,0.99751,0.169341,0.864249,0.246644,0.765363,0.462011,0.99139,0.707234,0.079856,0.388615,0.841434,0.986192,0.0261768,0.201323,0.0928522,0.931947,0.196003,0.125919,0.46503,0.47017,0.366708,0.895104,0.841227,0.498468,0.816234,0.35768,0.524713,0.309985,0.679355,0.259025,0.427438,0.171962,0.649532,0.0204331,0.567278,0.0384672,0.749377,0.838146,0.484843,0.385489,0.626411,0.238174,0.620921,0.0991452,0.649406,0.367842,0.227037,0.461861,0.104442,0.282282,0.959616,0.482275,0.532607,0.42876,0.138252,0.00274062,0.0642985,0.856385,0.704259,0.214697,0.264173,0.956542,0.354526,0.673448,0.154818,0.498269,0.174609,0.166946,0.737275,0.0914398,0.20611,0.554314,0.642216,0.515211,0.815615,0.813822,0.382343,0.696848,0.539363,0.460041,0.971893,0.134902,0.0706567,0.385395,0.941772,0.353066,0.851375,0.664539,0.806392,0.468461,0.69756,0.621573,0.622518,0.626591,0.242044,0.881621,0.377347,0.28841,0.691799,0.248319,0.428182,0.30312,0.813945,0.204454,0.0216845,0.377451,0.484343,0.798513,0.535167,0.849212,0.856505,0.512782,0.216923,0.305622,0.25991,0.0488632,0.164511,0.398282,0.148323,0.138413,0.720492,0.953697,0.493751,0.426344,0.979016,0.61134,0.0574137,0.683246,0.121307,0.816847,0.204273,0.90979,0.506726,0.765844,0.734552,0.190076,0.00101781,0.835238,0.73285,0.0577404,0.974386,0.608211,0.0439473,0.906745,0.83009,0.930771,0.613737,0.204296,0.15962,0.692629,0.51721,0.403926,0.456483,0.381701,0.343345,0.937975,0.82356,0.584735,0.0433667,0.209075,0.812538,0.235456,0.565077,0.566307,0.980237,0.17266,0.280313,0.627894,0.968495,0.537832,0.350194,0.553021,0.31577,0.0197703,0.0536929,0.942208,0.960255,0.594702,0.314456,0.202429,0.177024,0.273696,0.279078,0.116312,0.224951,0.0792081,0.838768,0.368592,0.505137,0.726002,0.442331,0.274508,0.667817,0.795217,0.98931,0.533208,0.205104,0.671598,0.185352,0.134596,0.984618,0.871369,0.522939,0.465541,0.224752,0.628226,0.387184,0.612244,0.57868,0.857573,0.811057,0.426107,0.810448,0.00280589,0.751682,0.0618385,0.444087,0.595688,0.39125,0.15063,0.700329,0.697461,0.689611,0.07581,0.135005,0.308911,0.406299,0.776923,0.912065,0.347744,0.350613,0.187874,0.67496,0.670875,0.185327,0.949837,0.15816,0.595559,0.19136,0.160366,0.0408149,0.272749,0.163769,0.173213,0.378958,0.20618,0.159007,0.190885,0.18727,0.327575,0.687427,0.2085,0.488501,0.369101,0.428796,0.818368,0.226338,0.860183,0.34827,0.651635,0.708462,0.901734,0.628031,0.323914,0.22116,0.144531,0.152845,0.0192426,0.383883,0.658174,0.457706,0.104337,0.174143,0.443062,0.934885,0.434881,0.301993,0.507593,0.584615,0.909655,0.526356,0.0068776,0.788889,0.161709,0.974495,0.393378,0.086094,0.494113,0.922502,0.429075,0.270069,0.775597,0.564705,0.804126,0.145744,0.0147998,0.900053,0.296923,0.44304,0.547869,0.492733,0.201606,0.402607,0.0441158,0.941502,0.866525,0.748534,0.990736,0.0743707,0.928946,0.405143,0.35204,0.168548,0.480928,0.154539,0.268189,0.0469954,0.0203528,0.458472,0.233704,0.665108,0.0161209,0.681961,0.529804,0.796249,0.472161,0.504407,0.501914,0.0795291,0.628102,0.855901,0.472362,0.0624582,0.473624,0.972554,0.437711,0.963763,0.929324,0.700286,0.813155,0.42677,0.283122,0.505798,0.850205,0.0330411,0.226292,0.708818,0.972179,0.272672,0.906016,0.125249,0.765965,0.723385,0.123802,0.655839,0.490397,0.341541,0.603899,0.476476,0.561607,0.811584,0.151891,0.727039,0.619713,0.643005,0.480129,0.885861,0.841155,0.365865,0.869906,0.452964,0.597175,0.274361,0.769099,0.870598,0.556514,0.500119,0.308109,0.224987,0.34735,0.415948,0.834713,0.525333,0.968195,0.360635,0.45057,0.296269,0.0956981,0.424598,0.622553,0.697075,0.538637,0.0835908,0.632995,0.149841,0.476957,0.2656,0.68128,0.153399,0.539786,0.626585,0.17384,0.0446018,0.547449,0.350714,0.130127,0.221375,0.872094,0.294251,0.343743,0.239859,0.0206901,0.28917,0.548148,0.26447,0.0952777,0.377094,0.0353377,0.727818,0.105102,0.289496,0.00835562,0.573351,0.731806,0.727861,0.108999,0.0515919,0.583218,0.997802,0.229096,0.465022,0.00778186,0.522999,0.804138,0.477278,0.435961,0.137341,0.415605,0.204953,0.530974,0.831826,0.505961,0.0638756,0.169917,0.722659,0.151964,0.202922,0.959762,0.515993,0.0801824,0.533486,0.712332,0.880231,0.875941,0.83169,0.251197,0.849751,0.539464,0.287424,0.352522,0.284654,0.129891,0.343679,0.977162,0.0571122,0.444589,0.725411,0.56199,0.247141,0.864964,0.129511,0.79571,0.533332,0.931212,0.305215,0.384086,0.783369,0.37801,0.679573,0.885825,0.372275,0.589211,0.0183127,0.547378,0.635028,0.945171,0.0423137,0.305785,0.364173,0.0612621,0.842593,0.220003,0.57514,0.576095,0.195009,0.642105,0.18634,0.59581,0.210846,0.735692,0.713578,0.318623,0.565263,0.220101,0.0301381,0.917489,0.854623,0.884741,0.889201,0.217791,0.936642,0.986833,0.136641,0.0565299,0.735935,0.801968,0.743185,0.165868,0.587722,0.759251,0.324019,0.235121,0.402304,0.686345,0.221414,0.286521,0.615448,0.142143,0.327349,0.7634,0.521929,0.845341,0.564671,0.453741,0.317806,0.682897,0.810752,0.184574,0.112934,0.573911,0.10706,0.0886049,0.610816,0.27551,0.853467,0.0161399,0.971321,0.151044,0.18834,0.886812,0.500659,0.454096,0.597639,0.511657,0.407633,0.90367,0.238141,0.0817515,0.383849,0.0166515,0.283285,0.725007,0.897045,0.760027,0.474941,0.000303686,0.913401,0.808296,0.132709,0.751036,0.543322,0.624388,0.36752,0.904773,0.20536,0.708022,0.228268,0.258671,0.188073,0.990012,0.026664,0.333318,0.242055,0.183736,0.45738,0.419461,0.711309,0.536251,0.931181,|0.89009,0.383843,0.508746,0.389245,0.993162,0.296428,0.385367,0.731385,0.924295,0.839336,0.532353,0.0574452,0.884357,0.548651,0.605303,0.730857,0.530567,0.945672,0.417985,0.993666,0.399971,0.692476,0.47279,0.0151268,0.489231,0.909384,0.777768,0.10492,0.353389,0.728252,0.776721,0.0273032,0.178892,0.110932,0.120941,0.430348,0.414854,0.354339,0.430172,0.026465,0.74277,0.574467,0.498709,0.247161,0.0725178,0.447914,0.215416,0.40808,0.0399343,0.855763,0.445982,0.293955,0.603501,0.552526,0.634342,0.978607,0.622955,0.725439,0.256083,0.996068,0.539545,0.711677,0.749097,0.266701,0.749278,0.986116,0.432756,0.351898,0.895312,0.180122,0.346332,0.387457,0.191791,0.0487545,0.761753,0.335564,0.619877,0.2529,0.885631,0.706175,0.698416,0.577124,0.0402799,0.319664,0.0834396,0.462919,0.492817,0.0918662,0.0095728,0.536578,0.29943,0.800882,0.0856909,0.452609,0.483982,0.561172,0.299322,0.884473,0.929879,0.370791,0.874541,0.701915,0.899967,0.702636,0.770949,0.388796,0.15693,0.224668,0.586351,0.950129,0.3356,0.604756,0.399653,0.132773,0.287987,0.802731,0.690817,0.149246,0.484855,0.591881,0.966571,0.785063,0.4224,0.0613728,0.981796,0.514608,0.809869,0.049934,0.345318,0.190794,0.906058,0.789188,0.176702,0.98673,0.668261,0.595695,0.16137,0.201863,0.201679,0.912242,0.879705,0.817548,0.625071,0.262356,0.533157,0.443194,0.811347,0.370504,0.432451,0.590438,0.625618,0.704911,0.710305,0.932695,0.646952,0.559516,0.911266,0.668726,0.622415,0.0469432,0.743008,0.711258,0.0418035,0.886278,0.673847,0.704942,0.629058,0.372253,0.201323,0.625435,0.636248,0.116949,0.780931,0.825347,0.710469,0.102459,0.126386,0.102555,0.225602,0.994669,0.220858,0.500894,0.241683,0.0133902,0.58707,0.748555,0.442974,0.24881,0.415228,0.262873,0.814026,0.862454,0.337609,0.231556,0.0803136,0.587061,0.00910819,0.00829029,0.0302325,0.53709,0.357544,0.266572,0.92365,0.662257,0.0423684,0.206073,0.174049,0.258239,0.189859,0.745752,0.297801,0.249044,0.550842,0.933523,0.685922,0.0914625,0.733267,0.909041,0.912975,0.530941,0.613446,0.632055,0.192135,0.661653,0.703231,0.270757,0.344468,0.264432,0.539886,0.117751,0.933623,0.280441,0.573968,0.531848,0.259757,0.890881,0.422699,0.956456,0.464878,0.96964,0.509074,0.145182,0.301573,0.421758,0.923755,0.0819126,0.895151,0.38128,0.930785,0.354636,0.858735,0.55265,0.305897,0.184496,0.266407,0.812532,0.785758,0.734994,0.769982,0.256204,0.383651,0.0975801,0.538465,0.612255,0.60823,0.916806,0.0901401,0.76454,0.116565,0.863312,0.873554,0.36595,0.388077,0.316846,0.188549,0.885615,0.554363,0.842221,0.0988696,0.072718,0.562413,0.212458,0.513889,0.495048,0.229155,0.214894,0.771704,0.292837,0.699747,0.471732,0.997491,0.275385,0.782165,0.223161,0.651754,0.210276,0.385949,0.237456,0.545654,0.573548,0.0776397,0.710707,0.803963,0.842678,0.412534,0.773517,0.162482,0.493265,0.769304,0.651568,0.799556,0.846581,0.057399,0.182799,0.0583978,0.41167,0.583088,0.311293,0.570903,0.936241,0.527273,0.589998,0.331632,0.972226,0.0235173,0.912043,0.811642,0.807313,0.509807,0.710376,0.158392,0.00179064,0.885398,0.809968,0.754559,0.351989,0.82572,0.52155,0.236367,0.580561,0.535847,0.758694,0.156876,0.98609,0.134168,0.0835235,0.156418,0.0662014,0.395124,0.570663,0.17811,0.289983,0.919918,0.48946,0.411677,0.7032,0.843509,0.90873,0.463404,0.306089,0.194416,0.755937,0.970181,0.445926,0.817683,0.585371,0.267041,0.0969718,0.110524,0.971968,0.668927,0.300495,0.12815,0.0101916,0.857443,0.584868,0.514166,0.558668,0.0412154,0.36343,0.287429,0.508573,0.307568,0.577379,0.0731727,0.703113,0.746998,0.803285,0.349961,0.280808,0.0410901,0.34797,0.273152,0.403439,0.675846,0.690602,0.754935,0.194059,0.821792,0.864064,0.95916,0.351184,0.904417,0.0101559,0.602125,0.905893,0.0965908,0.164385,0.664232,0.160359,0.931212,0.963932,0.449257,0.094444,0.543955,0.805497,0.591534,0.201605,0.397342,0.792306,0.92969,0.106696,0.928512,0.353863,0.599317,0.974873,0.718602,0.121168,0.468934,0.662241,0.877126,0.302637,0.399748,0.919887,0.847828,0.837794,0.0709105,0.441421,0.162469,0.699824,0.826669,0.874118,0.977733,0.72619,0.303256,0.388319,0.223518,0.0058381,0.900474,0.332898,0.337329,0.670221,0.63069,0.565009,0.696725,0.945452,0.0510588,0.0986952,0.232062,0.497454,0.722741,0.270862,0.0712269,0.877483,0.0761387,0.98524,0.766327,0.122621,0.932409,0.189995,0.873199,0.373186,0.896548,0.752648,0.607928,0.872357,0.595465,0.966224,0.0247698,0.716158,0.0474808,0.108516,0.0708793,0.158349,0.59334,0.943403,0.00724208,0.504078,0.620758,0.477916,0.877659,0.520468,0.81736,0.72524,0.282394,0.308814,0.552823,0.545239,0.904066,0.741677,0.91952,0.704434,0.589662,0.91146,0.327549,0.619223,0.55245,0.464394,0.573131,0.134859,0.0574056,0.176651,0.976858,0.455188,0.630159,0.433804,0.023018,0.561172,0.612844,0.172983,0.491362,0.351568,0.391709,0.717118,0.196212,0.424717,0.336241,0.318899,0.0119841,0.642896,0.940002,0.254704,0.263082,0.261101,0.267363,0.898579,0.962341,0.408294,0.733103,0.601253,0.428731,0.478901,0.0584161,0.692425,0.841242,0.0144706,0.419217,0.654778,0.550693,0.970866,0.358343,0.762759,0.710808,0.698251,0.56249,0.305732,0.067674,0.0189964,0.92573,0.615974,0.746297,0.714677,0.936176,0.739953,0.796142,0.654454,0.903171,0.732694,0.517421,0.698296,0.544218,0.617072,0.0397303,0.421785,0.0211329,0.496464,0.835001,0.912269,0.545924,0.682886,0.931615,0.699512,0.163948,0.226135,0.764579,0.376454,0.418655,0.796793,0.353819,0.720456,0.557952,0.705304,0.942886,0.568977,0.832364,0.324462,0.811511,0.978969,0.506466,0.0301276,0.286712,0.0282914,0.992473,0.0832586,0.550435,0.0772651,0.49773,0.217748,0.855831,0.778569,0.643133,0.400867,0.0533856,0.0879458,0.152774,0.295718,0.250755,0.552128,0.722312,0.394031,0.413715,0.0879739,0.0431573,0.656938,0.638048,0.0717164,0.47227,0.528013,0.14991,0.367486,0.997116,0.858379,0.646815,0.845129,0.200525,0.504906,0.352801,0.810984,0.0136126,0.68532,0.844427,0.254299,0.148477,0.171486,0.0167395,0.211587,0.971618,0.948447,0.132928,0.0683991,0.177633,0.508368,0.619069,0.000862718,0.584084,0.863541,0.904074,0.79951,0.128168,0.892677,0.315515,0.221322,0.972368,0.925836,0.807668,0.382814,0.861769,0.659811,0.637963,0.50873,0.539258,0.322373,0.130975,0.749361,0.197673,0.180537,0.570492,0.250771,0.541098,0.22927,0.830516,0.362764,0.602133,0.335791,0.0593355,0.683521,0.498788,0.588183,0.956127,0.0109615,0.0260001,0.655847,0.442814,0.419737,0.382166,0.0580702,0.279888,0.454199,0.349111,0.0158094,0.337019,0.947354,0.853535,0.898073,0.934324,0.450486,0.53501,0.174825,0.516981,0.290272,0.969593,0.54882,0.810924,0.915933,0.567508,0.991297,0.654458,0.989358,0.13012,0.573423,0.648156,0.994349,0.700998,0.0835232,0.405099,0.0603387,0.443314,0.522653,0.33613,0.111772,0.921996,0.459779,0.0802712,0.867746,0.0477169,0.269036,0.0401409,0.144812,0.352555,0.307795,0.658075,0.299265,0.823895,0.636711,0.57135,0.874988,0.337179,0.477649,0.748194,0.230916,0.00855368,0.432653,0.0340989,0.951708,0.0488949,0.941022,0.171481,0.0150056,0.0394392,0.700038,0.420287,0.67346,0.990803,0.724606,0.584137,0.385856,0.32136,0.0817053,0.933767,0.567285,0.570082,0.613919,0.407643,0.0141079,0.884322,0.055918,0.661421,0.807941,0.56753,0.906981,0.393034,0.185221,0.515304,0.771553,0.188891,0.287786,0.68783,0.00979072,0.0963569,0.337668,0.864513,0.45034,0.86448,0.948589,0.400719,0.531894,0.481977,0.983395,0.205438,0.447565,0.249219,0.234815,0.998262,0.028199,0.479231,0.568717,0.916653,0.564158,0.688072,0.348522,0.21688,0.942469,0.539753,0.0250657,0.113336,0.93694,0.141073,0.99432,0.775806,0.209928,0.230582,0.528991,0.850105,0.655252,0.794827,0.0920439,0.18968,0.109035,0.155226,0.589876,0.516327,0.39055,0.176769,0.81239,0.073947,0.671949,0.131911,0.712195,0.668858,0.344723,0.552783,0.5473,0.597953,0.407759,0.913519,0.416665,0.440995,0.43082,0.412817,0.966141,0.922763,0.272704,0.0595182,0.861759,0.55863,0.87588,0.0508808,0.426452,0.533004,0.991214,0.677893,0.850398,0.260731,0.272906,0.256628,0.86881,0.274667,0.556618,0.388779,0.245072,0.680068,0.170508,0.927506,0.734865,0.775588,0.241828,0.382208,0.352797,0.280823,0.136447,0.421294,0.844319,0.474268,0.252683,0.868193,0.498262,0.315929,0.214385,0.336508,0.355732,0.99689,0.158451,0.542757,0.794801,0.531793,0.442846,0.304695,0.0561459,0.312836,0.728338,0.700859,0.361186,0.0829284,0.899898,0.398248,0.198237,0.529731,0.184243,0.562989,0.9198,0.193538,0.414616,0.720686,0.362516,0.710998,0.274281,0.821086,0.773923,0.243611,0.330548,0.266623,0.641739,0.813572,0.581435,0.884118,0.533845,0.88406,0.608094,0.48446,0.957485,0.832037,0.791548,0.418322,0.00975507,0.406318,0.113939,0.597318,0.127181,0.172307,0.0192879,0.910472,0.544321,0.57015,0.100166,0.0761781,0.419063,0.339945,0.814894,0.810019,0.460673,0.648597,0.846939,0.198328,0.021128,0.266682,0.811668,0.690419,0.189671,0.328065,0.0599973,0.990793,0.820736,0.551647,0.241914,0.998787,0.577487,0.315671,0.74404,0.591338,0.856917,0.119458,0.136293,0.25344,0.999521,0.467999,0.408432,0.509658,0.00232381,0.811635,0.127132,0.827583,0.895922,0.744942,0.191506,0.21194,0.710021,0.932261,0.809859,0.842733,0.236093,0.271282,0.337687,0.299332,0.205507,0.969841,0.563549,0.813032,0.603197,0.437963,0.759494,|0.947075,0.484146,0.185183,0.126928,0.421423,0.852554,0.129341,0.489253,0.0866277,0.63995,0.40458,0.444753,0.771468,0.19987,0.443671,0.439559,0.714857,0.0877066,0.0572608,0.758018,0.573186,0.385669,0.368393,0.622922,0.113394,0.367994,0.526641,0.168577,0.354661,0.1979,0.523577,0.381404,0.307995,0.0644611,0.942057,0.397121,0.396163,0.73614,0.852333,0.545495,0.654847,0.499204,0.992735,0.977549,0.999859,0.581904,0.716103,0.693402,0.852371,0.253229,0.849542,0.237337,0.527546,0.587417,0.679974,0.350767,0.959615,0.38711,0.78607,0.223797,0.0316877,0.0542864,0.31035,0.0643739,0.445552,0.668315,0.329424,0.733833,0.0296168,0.693022,0.116061,0.251679,0.663471,0.642524,0.587333,0.727922,0.588905,0.56659,0.686063,0.205501,0.284778,0.299673,0.677676,0.955568,0.368945,0.188577,0.182438,0.121055,0.208506,0.0548346,0.339171,0.795903,0.682805,0.960314,0.0175715,0.197374,0.304016,0.15429,0.945632,0.321705,0.916653,0.81436,0.474894,0.00717676,0.917948,0.698141,0.443475,0.857433,0.662016,0.554347,0.326607,0.310432,0.42071,0.796944,0.371171,0.262263,0.235758,0.983349,0.219843,0.739317,0.188943,0.618239,0.857783,0.403663,0.269976,0.876568,0.364942,0.733537,0.231499,0.637024,0.970408,0.195559,0.799307,0.910973,0.149485,0.98752,0.733863,0.0662159,0.576915,0.355502,0.328668,0.744366,0.381279,0.319794,0.160805,0.978437,0.811297,0.17549,0.524752,0.0968337,0.760998,0.229673,0.654469,0.0702887,0.647056,0.647496,0.550903,0.87196,0.31732,0.546378,0.881456,0.290558,0.837262,0.584658,0.392087,0.88817,0.931625,0.981637,0.127111,0.488599,0.398214,0.535054,0.774785,0.762216,0.641311,0.0296898,0.0384697,0.214203,0.728188,0.258089,0.944909,0.296748,0.888855,0.461535,0.811347,0.762703,0.246628,0.158107,0.622317,0.0347089,0.558256,0.985134,0.862373,0.311091,0.456794,0.536753,0.111361,0.220996,0.194149,0.375477,0.597949,0.971467,0.952015,0.583714,0.586545,0.951659,0.163369,0.00277257,0.819524,0.947042,0.989473,0.455892,0.00938189,0.0215473,0.47884,0.400639,0.865703,0.639462,0.207634,0.71634,0.96482,0.588138,0.897664,0.880391,0.222348,0.583139,0.367318,0.606661,0.0035457,0.832104,0.719922,0.700249,0.969221,0.393306,0.444982,0.605827,0.178607,0.911969,0.388929,0.145302,0.828533,0.942745,0.154669,0.542387,0.259378,0.277408,0.81159,0.620959,0.902765,0.58442,0.774729,0.233115,0.0704542,0.63282,0.0803781,0.520926,0.0583057,0.484591,0.27551,0.783348,0.240514,0.747531,0.0722203,0.361865,0.54421,0.619561,0.333546,0.938771,0.123176,0.740877,0.533368,0.174899,0.50006,0.598856,0.71384,0.208287,0.957776,0.105105,0.281488,0.369277,0.26947,0.135427,0.22189,0.618962,0.131481,0.756002,0.223526,0.0925049,0.35835,0.70306,0.907119,0.687704,0.120012,0.996952,0.38064,0.408638,0.492765,0.851271,0.745138,0.748114,0.68492,0.0892388,0.342049,0.0680659,0.704426,0.566264,0.658061,0.667876,0.286429,0.428124,0.651777,0.504032,0.572043,0.687024,0.0918148,0.0383649,0.263099,0.741758,0.369703,0.82836,0.16502,0.80145,0.190096,0.510722,0.210938,0.764566,0.474758,0.0120566,0.670422,0.596575,0.0149496,0.874212,0.112827,0.711318,0.429493,0.472652,0.773459,0.665833,0.361971,0.521242,0.260964,0.231308,0.171028,0.106443,0.567171,0.786233,0.445013,0.715376,0.48706,0.365099,0.68357,0.428991,0.39944,0.326081,0.158283,0.118244,0.458706,0.225215,0.584728,0.0323758,0.0173681,0.0604521,0.620973,0.332488,0.525854,0.20038,0.659835,0.111177,0.422041,0.15186,0.437998,0.043058,0.0818921,0.645273,0.951548,0.120517,0.173982,0.660365,0.603058,0.654423,0.877554,0.898839,0.464323,0.295752,0.0547528,0.496963,0.943087,0.465868,0.145669,0.719854,0.99859,0.977178,0.39077,0.935738,0.768188,0.713375,0.876512,0.439389,0.402605,0.0539802,0.870958,0.185714,0.400274,0.292197,0.0493007,0.368951,0.280374,0.781659,0.409382,0.678906,0.330115,0.104517,0.822928,0.395956,0.84047,0.143709,0.524716,0.624531,0.114265,0.395634,0.159201,0.752025,0.505976,0.916457,0.946738,0.699157,0.75743,0.604178,0.883503,0.374819,0.0477654,0.176568,0.0325868,0.730451,0.489917,0.107465,0.0200285,0.33962,0.401216,0.452278,0.468109,0.185349,0.39384,0.831678,0.0548048,0.394109,0.713535,0.16901,0.828421,0.233537,0.484462,0.430404,0.395307,0.479145,0.764594,0.648037,0.174181,0.646077,0.12007,0.420286,0.984921,0.284718,0.219259,0.203597,0.34069,0.848987,0.832295,0.192405,0.644805,0.96041,0.681628,0.406381,0.435372,0.556176,0.955933,0.335615,0.207836,0.555947,0.91136,0.967348,0.16493,0.353446,0.151347,0.842958,0.145538,0.375422,0.0536045,0.17148,0.950757,0.00277293,0.651871,0.449223,0.896849,0.397789,0.982612,0.36467,0.593027,0.0603341,0.535372,0.340022,0.835487,0.0793419,0.529754,0.00309843,0.807403,0.853696,0.902297,0.843356,0.534717,0.0355794,0.655917,0.02797,0.214894,0.394213,0.0414439,0.421933,0.955658,0.10229,0.0273005,0.0569125,0.656412,0.151293,0.471422,0.43813,0.182543,0.319407,0.396402,0.167365,0.523889,0.987185,0.997997,0.84857,0.145159,0.0930327,0.549479,0.490154,0.227063,0.929314,0.918526,0.694472,0.34989,0.501347,0.377588,0.268876,0.283868,0.120407,0.399463,0.317932,0.708579,0.636597,0.85586,0.927659,0.771581,0.060744,0.638043,0.920895,0.801936,0.584213,0.667948,0.660056,0.886595,0.550856,0.33212,0.463085,0.210172,0.740582,0.414171,0.150177,0.290526,0.148163,0.514387,0.202103,0.92234,0.766463,0.158387,0.23262,0.340601,0.121899,0.601965,0.122934,0.886151,0.617448,0.278283,0.0155994,0.0421693,0.101846,0.11721,0.119908,0.562718,0.201843,0.683672,0.343358,0.564689,0.204205,0.857965,0.873785,0.0287138,0.920765,0.937236,0.198378,0.500892,0.651788,0.9549,0.562619,0.797522,0.173782,0.398304,0.87345,0.390236,0.189007,0.451971,0.107728,0.185508,0.0480762,0.0836591,0.552184,0.666331,0.356152,0.764736,0.501784,0.545728,0.390734,0.451377,0.882898,0.707144,0.326852,0.358023,0.739374,0.837193,0.163232,0.851244,0.138718,0.148393,0.683355,0.725852,0.9795,0.594783,0.728687,0.928822,0.52124,0.901564,0.0179651,0.455155,0.702831,0.99924,0.885157,0.384185,0.306149,0.855136,0.512211,0.404946,0.834139,0.741295,0.547,0.889725,0.025803,0.290909,0.912553,0.832029,0.403696,0.547248,0.445967,0.747931,0.689125,0.205111,0.719016,0.944468,0.341304,0.152519,0.107818,0.590675,0.975822,0.650275,0.836112,0.380022,0.984698,0.373871,0.646596,0.743777,0.86882,0.690468,0.525749,0.436491,0.110196,0.674843,0.59294,0.523822,0.23312,0.943266,0.962045,0.380436,0.694274,0.976908,0.0490003,0.144316,0.859744,0.556273,0.938412,0.433202,0.441419,0.160671,0.229396,0.471366,0.43834,0.268644,0.046733,0.926731,0.629935,0.420502,0.336861,0.822903,0.576066,0.164049,0.0658892,0.13456,0.53818,0.494105,0.1903,0.458041,0.0335257,0.537603,0.719033,0.663292,0.646907,0.39441,0.256709,0.215022,0.294441,0.371694,0.203731,0.733666,0.469831,0.611851,0.57152,0.636862,0.660252,0.101656,0.94759,0.00704861,0.620819,0.776564,0.43305,0.78193,0.493436,0.46186,0.020718,0.573436,0.164453,0.499138,0.264296,0.375429,0.383284,0.612418,0.373371,0.400072,0.790969,0.310306,0.0553678,0.810123,0.0128142,0.905359,0.616995,0.929539,0.584585,0.603642,0.862168,0.381617,0.991161,0.153554,0.775615,0.732189,0.204964,0.946519,0.339745,0.153014,0.885164,0.715713,0.768094,0.324579,0.979948,0.374202,0.619296,0.130209,0.0062741,0.352614,0.289361,0.424477,0.4161,0.68194,0.149005,0.271994,0.0214942,0.182108,0.264426,0.852339,0.40789,0.637974,0.69633,0.249823,0.76733,0.484918,0.165711,0.574895,0.301942,0.509549,0.273695,0.143231,0.813923,0.381317,0.177519,0.0487425,0.110927,0.154251,0.776444,0.644718,0.297683,0.655881,0.293663,0.506651,0.0668299,0.996418,0.424981,0.708358,0.743735,0.685688,0.0337774,0.781697,0.549317,0.929423,0.57128,0.104828,0.51915,0.736014,0.626404,0.355903,0.518858,0.0832933,0.805205,0.949271,0.711003,0.285337,0.601856,0.781719,0.0569215,0.827465,0.409239,0.580678,0.961308,0.274508,0.00652081,0.713255,0.312302,0.682627,0.146651,0.866428,0.542379,0.169969,0.129538,0.665127,0.276916,0.496711,0.767967,0.685817,0.783847,0.050683,0.516972,0.294348,0.295827,0.589884,0.155096,0.338406,0.707768,0.780752,0.11741,0.827863,0.332623,0.961717,0.893136,0.52736,0.465455,0.431609,0.0645272,0.0773185,0.276827,0.127309,0.00877768,0.0222777,0.275818,0.0274319,0.340442,0.466708,0.586707,0.248014,0.978408,0.969902,0.522508,0.308718,0.575331,0.629079,0.143967,0.845307,0.398504,0.59208,0.580241,0.46612,0.741797,0.205366,0.545921,0.916264,0.295078,0.999925,0.668107,0.056677,0.502464,0.390422,0.585113,0.105812,0.435987,0.511039,0.756363,0.0476285,0.0612037,0.541102,0.503054,0.204382,0.604316,0.828198,0.33905,0.955264,0.241419,0.986248,0.891871,0.340929,0.892658,0.00887734,0.93072,0.0106853,0.839471,0.782594,0.830593,0.251388,0.078133,0.869336,0.659903,0.805758,0.760702,0.201936,0.217914,0.583082,0.91056,0.666384,0.222722,0.463148,0.195065,0.54014,0.779775,0.463841,0.644578,0.536665,0.976225,0.677443,0.310272,0.919417,0.144921,0.305955,0.74352,0.990797,0.162965,0.37068,0.182517,0.990233,0.138535,0.690415,0.970752,0.0842013,0.897233,0.131638,0.663704,0.153599,0.0447125,0.0335331,0.0399497,0.802675,0.343514,0.0148669,0.10543,0.40557,0.576982,0.137742,0.896548,0.352884,0.763704,0.4525,0.234884,0.611166,0.110885,0.717472,0.718619,0.0794328,0.279776,|0.953291,0.950519,0.165794,0.366778,0.0975905,0.744288,0.741773,0.161586,0.630653,0.154662,0.185599,0.303475,0.605606,0.659929,0.122677,0.354961,0.887289,0.0527294,0.4083,0.713461,0.589155,0.121985,0.998252,0.677236,0.747026,0.747922,0.503696,0.465068,0.43861,0.235079,0.691755,0.0424358,0.100425,0.134856,0.146215,0.606736,0.647325,0.770486,0.989608,0.426953,0.169217,0.750064,0.239823,0.629385,0.118679,0.483414,0.200683,0.00991303,0.899521,0.140316,0.0991255,0.123257,0.112399,0.233505,0.592156,0.831713,0.0157229,0.444019,0.525912,0.343102,0.567378,0.792841,0.411724,0.602648,0.0782642,0.359765,0.94897,0.460679,0.11104,0.786992,0.0397058,0.184846,0.425215,0.961239,0.122256,0.294472,0.0175116,0.681541,0.500841,0.69008,0.438452,0.0958684,0.69595,0.640386,0.155844,0.17756,0.662491,0.604612,0.283271,0.0826974,0.65565,0.898014,0.652327,0.184374,0.188575,0.90177,0.851465,0.228416,0.181433,0.967339,0.785629,0.326661,0.216998,0.626893,0.703742,0.53359,0.378088,0.44374,0.76395,0.482091,0.435401,0.327784,0.428525,0.630151,0.467402,0.28713,0.849346,0.285586,0.166335,0.217873,0.0279477,0.960155,0.157004,0.0278033,0.561852,0.659967,0.521338,0.973909,0.0809638,0.180152,0.0278872,0.581118,0.0479639,0.571402,0.0486795,0.0670343,0.669521,0.872115,0.558384,0.916036,0.0893124,0.510729,0.725218,0.0807141,0.404853,0.12975,0.656737,0.589198,0.00314951,0.836145,0.804642,0.548498,0.539988,0.672894,0.139772,0.0219367,0.245651,0.203499,0.373546,0.193508,0.736092,0.966831,0.214162,0.175871,0.996438,0.0426562,0.997959,0.390061,0.440633,0.285056,0.496857,0.934089,0.384195,0.830956,0.67691,0.314971,0.0213688,0.0848511,0.668324,0.661447,0.506577,0.488201,0.227876,0.311049,0.832528,0.461585,0.154032,0.210931,0.784595,0.643599,0.0494291,0.982429,0.208939,0.716041,0.497136,0.018261,0.553306,0.74546,0.631665,0.116421,0.293548,0.663524,0.608268,0.243679,0.192606,0.543109,0.25572,0.507621,0.816793,0.460278,0.0176081,0.462018,0.150494,0.156599,0.828426,0.0693529,0.794142,0.841632,0.311621,0.142195,0.792312,0.731495,0.874861,0.130954,0.877653,0.226952,0.478806,0.997238,0.0253459,0.64488,0.152128,0.775361,0.541456,0.255641,0.253907,0.162544,0.0706319,0.0339196,0.200791,0.280085,0.871158,0.515623,0.797462,0.809265,0.375379,0.495247,0.310342,0.365793,0.244929,0.279542,0.352316,0.963719,0.599477,0.596244,0.236323,0.225167,0.201567,0.482923,0.445272,0.836596,0.23826,0.0451028,0.380044,0.72534,0.0833653,0.818918,0.91568,0.696413,0.583905,0.601046,0.23932,0.122952,0.826966,0.289393,0.292604,0.0900984,0.767396,0.397923,0.0708565,0.206557,0.0365713,0.771247,0.294605,0.364598,0.388969,0.00686449,0.975939,0.750012,0.656621,0.532814,0.0960472,0.841655,0.796726,0.510021,0.622717,0.681033,0.949308,0.799083,0.914337,0.0774963,0.0675734,0.0528954,0.286415,0.234503,0.883837,0.178552,0.307053,0.737257,0.12868,0.486315,0.245652,0.197575,0.337249,0.86082,0.644163,0.396689,0.245794,0.0780593,0.858883,0.5122,0.528568,0.89795,0.49289,0.657205,0.497096,0.187777,0.503032,0.70425,0.0772886,0.91194,0.424936,0.496158,0.360761,0.00263411,0.355786,0.372375,0.29166,0.492435,0.968198,0.296022,0.157244,0.0378776,0.268571,0.769061,0.66817,0.0623939,0.871081,0.844844,0.722871,0.443473,0.588647,0.505172,0.263176,0.194766,0.196393,0.365561,0.715789,0.0633566,0.217424,0.638631,0.726387,0.549348,0.69835,0.876929,0.910905,0.10843,0.221774,0.816134,0.326707,0.627699,0.904437,0.582998,0.160157,0.0118851,0.0616899,0.399967,0.967379,0.331211,0.142615,0.831236,0.821607,0.46802,0.631316,0.280066,0.0809312,0.244,0.262716,0.779871,0.233768,0.576708,0.988989,0.264892,0.384328,0.137803,0.255431,0.651675,0.27629,0.771665,0.211744,0.0262224,0.0456205,0.329041,0.0212021,0.842751,0.423418,0.884016,0.214873,0.263409,0.467367,0.118706,0.741624,0.413167,0.648426,0.858579,0.957745,0.501131,0.814969,0.814748,0.827373,0.278886,0.433394,0.741339,0.230024,0.617663,0.378141,0.139805,0.339676,0.0374845,0.5322,0.953817,0.958492,0.247239,0.0375683,0.351044,0.0604498,0.424528,0.459504,0.937276,0.100961,0.039395,0.796367,0.581845,0.0804552,0.54806,0.608924,0.917063,0.612624,0.93078,0.215718,0.341393,0.519279,0.529739,0.362957,0.960806,0.513463,0.269873,0.092331,0.209032,0.940082,0.87136,0.989383,0.842064,0.690333,0.0928871,0.618359,0.814814,0.0612109,0.827246,0.46734,0.077406,0.626715,0.0499967,0.899002,0.636686,0.566817,0.673672,0.181666,0.55807,0.111075,0.542874,0.74998,0.714899,0.47562,0.0640465,0.992584,0.117003,0.23168,0.916239,0.431565,0.516562,0.0186754,0.775868,0.508333,0.243118,0.379811,0.142928,0.258927,0.167472,0.871537,0.55803,0.866691,0.845405,0.726723,0.243087,0.836856,0.421326,0.980609,0.814036,0.382694,0.631642,0.339103,0.567574,0.33526,0.275694,0.119749,0.154969,0.515974,0.824513,0.864869,0.273986,0.390824,0.485734,0.942222,0.177126,0.00507802,0.246892,0.0225951,0.90786,0.505173,0.970929,0.980559,0.833534,0.10025,0.345996,0.176668,0.894745,0.47178,0.515348,0.617276,0.946168,0.698141,0.416196,0.249804,0.182606,0.0421165,0.863319,0.512251,0.128655,0.0300091,0.56861,0.570833,0.505552,0.390625,0.958302,0.0476711,0.760069,0.228861,0.629518,0.396748,0.398846,0.0601054,0.835895,0.264085,0.337692,0.550403,0.84004,0.188842,0.873858,0.754139,0.164242,0.889355,0.625023,0.367379,0.766021,0.893705,0.386025,0.778355,0.667482,0.521436,0.88573,0.978,0.301898,0.823245,0.802551,0.12732,0.627028,0.111665,0.401742,0.167225,0.638847,0.221525,0.696548,0.38185,0.281527,0.600791,0.918384,0.529652,0.172568,0.416855,0.710424,0.247692,0.185298,0.464868,0.45238,0.476754,0.0733154,0.872032,0.856237,0.451138,0.14236,0.191361,0.97245,0.982319,0.707255,0.765665,0.896855,0.0928459,0.3149,0.440813,0.87703,0.555511,0.138638,0.375718,0.348014,0.538769,0.568891,0.517477,0.45814,0.369465,0.107087,0.250448,0.60879,0.211932,0.232761,0.626464,0.950446,0.586515,0.96432,0.29099,0.900936,0.546565,0.96905,0.331419,0.241135,0.145074,0.0247332,0.0949791,0.32323,0.611612,0.581106,0.8192,0.618423,0.182343,0.343283,0.221431,0.203061,0.732294,0.448644,0.160944,0.59044,0.930788,0.765477,0.770459,0.604483,0.614775,0.541099,0.524079,0.541212,0.465965,0.442687,0.247492,0.707154,0.817012,0.682944,0.914673,0.297013,0.262359,0.312967,0.0274636,0.619276,0.572414,0.16094,0.519813,0.600894,0.102086,0.144851,0.524674,0.152252,0.988653,0.435051,0.095949,0.645096,0.54351,0.270695,0.39837,0.314297,0.00460923,0.383345,0.190835,0.934195,0.784154,0.554592,0.0883678,0.730655,0.808153,0.146087,0.648859,0.327314,0.187037,0.820027,0.367306,0.258225,0.670194,0.037005,0.49499,0.171855,0.109569,0.0279273,0.619015,0.0755058,0.966312,0.0342321,0.724103,0.998214,0.761238,0.734606,0.298575,0.532351,0.430479,0.454592,0.0923471,0.987053,0.385085,0.919053,0.325774,0.753067,0.550844,0.466845,0.675627,0.454524,0.570646,0.0701057,0.802394,0.677241,0.805396,0.436392,0.605039,0.0245942,0.77384,0.266944,0.792623,0.313074,0.476287,0.01314,0.981381,0.95947,0.582957,0.916995,0.306712,0.419308,0.58062,0.0910981,0.324904,0.390919,0.496144,0.60052,0.679477,0.724186,0.280504,0.998031,0.285532,0.684119,0.00214684,0.860242,0.718016,0.836696,0.0227674,0.555283,0.54168,0.272767,0.408525,0.773966,0.949917,0.283146,0.510036,0.516132,0.450291,0.783584,0.648672,0.181627,0.0425112,0.916033,0.889202,0.909841,0.0220649,0.506245,0.5723,0.410544,0.7456,0.414945,0.755638,0.415677,0.271698,0.157832,0.227759,0.645404,0.148038,0.149765,0.713586,0.040677,0.851714,0.71859,0.871727,0.560227,0.59855,0.974629,0.798342,0.605411,0.59432,0.387253,0.24602,0.0615757,0.743433,0.3077,0.0933102,0.915738,0.473752,0.57998,0.320838,0.232727,0.134256,0.694339,0.261045,0.540114,0.471065,0.621833,0.478591,0.840461,0.350114,0.653546,0.419364,0.776215,0.950899,0.253755,0.201262,0.572152,0.131205,0.799494,0.0868856,0.656688,0.912015,0.223126,0.253118,0.646495,0.58603,0.234912,0.771486,0.949897,0.591995,0.79231,0.777458,0.308944,0.597968,0.771987,0.427953,0.527431,0.0592968,0.711356,0.790379,0.365241,0.544098,0.121817,0.237267,0.0691204,0.85167,0.621363,0.917613,0.88306,0.765988,0.420528,0.907042,0.379906,0.424331,0.318139,0.450265,0.356577,0.721972,0.151211,0.134814,0.563546,0.633975,0.493899,0.416619,0.729371,0.827849,0.408038,0.824867,0.410887,0.0776748,0.536772,0.554259,0.588219,0.103924,0.183984,0.0728136,0.482409,0.273939,0.334574,0.380694,0.0715153,0.303505,0.698372,0.578413,0.342247,0.90215,0.2155,0.649925,0.544541,0.762341,0.770201,0.296821,0.0252478,0.398619,0.209574,0.842715,0.274219,0.040131,0.782315,0.971302,0.223138,0.852999,0.459835,0.746505,0.446917,0.101273,0.498984,0.0434294,0.756924,0.0642817,0.69898,0.195762,0.514311,0.568349,0.292424,0.226578,0.103973,0.995872,0.443041,0.693549,0.417242,0.920153,0.106786,0.294083,0.570294,0.161937,0.264905,0.454151,0.869598,0.53023,0.568255,0.141688,0.98411,0.79646,0.443632,0.18999,0.115252,0.231804,0.0468526,0.958745,0.582307,0.216761,0.915219,0.434729,0.56867,0.181462,0.630714,0.438694,0.0856292,0.622415,0.447736,0.499477,0.294335,0.239354,0.0843628,0.935312,0.280713,0.895671,0.0671747,0.815224,0.720829,0.161165,0.0479138,0.827709,0.718707,0.560513,0.926988,0.647381,0.674825,0.567821,0.306638,|0.200781,0.935863,0.899669,0.796066,0.40596,0.834,0.441161,0.586634,0.0791773,0.714326,0.555318,0.282814,0.428913,0.210421,0.589692,0.462119,0.231992,0.711797,0.587254,0.926027,0.324651,0.529218,0.58715,0.910997,0.115769,0.828342,0.282185,0.00593287,0.569438,0.184882,0.452229,0.330001,0.492391,0.0426638,0.728738,0.997474,0.125277,0.807368,0.253806,0.284882,0.865372,0.801955,0.133831,0.661168,0.507314,0.0573621,0.972437,0.36943,0.414155,0.583448,0.56407,0.918494,0.48476,0.25203,0.504688,0.0384696,0.433654,0.873989,0.0730001,0.208531,0.598256,0.0696955,0.417315,0.0208002,0.874046,0.69587,0.332736,0.178288,0.880276,0.125642,0.0431402,0.182359,0.444948,0.78176,0.012834,0.703058,0.577657,0.83186,0.563093,0.494874,0.550754,0.594406,0.587889,0.881225,0.115164,0.846896,0.341052,0.948445,0.789493,0.0407034,0.960513,0.321904,0.511428,0.556686,0.739875,0.683113,0.812691,0.66018,0.172479,0.191003,0.0183798,0.679334,0.0398269,0.707463,0.0129616,0.252903,0.56403,0.496183,0.582686,0.102261,0.990515,0.125465,0.897732,0.370586,0.0561965,0.661437,0.856541,0.562315,0.621621,0.260868,0.651344,0.0946931,0.753919,0.534535,0.343677,0.566918,0.795579,0.60276,0.12278,0.861277,0.0801135,0.189793,0.395958,0.369591,0.155756,0.345408,0.435379,0.834451,0.963211,0.0949481,0.974376,0.268027,0.388194,0.732329,0.147837,0.598649,0.172154,0.889167,0.980974,0.539305,0.542212,0.0195845,0.788982,0.0674965,0.908978,0.808559,0.886743,0.857106,0.762021,0.752451,0.688084,0.435489,0.817604,0.640059,0.836165,0.000957131,0.882045,0.440982,0.416835,0.121266,0.529353,0.770852,0.357803,0.303255,0.163909,0.0161765,0.650588,0.560209,0.909628,0.0116268,0.464765,0.0612578,0.196644,0.287776,0.986549,0.617723,0.233548,0.58067,0.320653,0.163525,0.472233,0.819458,0.284788,0.030944,0.779019,0.980579,0.439143,0.758826,0.0646791,0.440023,0.273141,0.249895,0.179391,0.095835,0.233854,0.315892,0.938901,0.61932,0.889597,0.198521,0.49231,0.530186,0.129544,0.796232,0.595938,0.402317,0.834776,0.978031,0.317914,0.801004,0.579624,0.712519,0.174112,0.89557,0.426685,0.577374,0.541587,0.887189,0.804701,0.574977,0.183658,0.66926,0.897092,0.540824,0.911423,0.235473,0.291252,0.690055,0.680832,0.554722,0.383459,0.979274,0.154222,0.672658,0.887004,0.799279,0.70788,0.368274,0.304101,0.634286,0.0580084,0.495773,0.586064,0.694826,0.850572,0.767184,0.303753,0.361495,0.319237,0.96526,0.532306,0.76912,0.171076,0.487179,0.667167,0.907078,0.240758,0.663762,0.332705,0.460802,0.521999,0.407309,0.304328,0.927366,0.972211,0.734459,0.484714,0.907231,0.184511,0.89768,0.468416,0.0466715,0.176146,0.308325,0.536754,0.513989,0.133694,0.944966,0.224981,0.191237,0.97567,0.261003,0.56587,0.513996,0.750993,0.131111,0.780482,0.84458,0.272378,0.117757,0.350719,0.799564,0.00103903,0.456023,0.434854,0.527185,0.468965,0.996741,0.0653541,0.022997,0.157382,0.869087,0.930706,0.408672,0.78308,0.78479,0.790672,0.182303,0.746355,0.241787,0.557207,0.00819606,0.728971,0.785193,0.801344,0.0336163,0.36919,0.404471,0.462265,0.368633,0.610939,0.698152,0.913666,0.283698,0.983401,0.103997,0.928022,0.952078,0.165672,0.142345,0.955631,0.688777,0.470465,0.60816,0.643425,0.35055,0.665644,0.828852,0.674468,0.344444,0.0592678,0.543692,0.613083,0.823429,0.280373,0.8121,0.650427,0.137303,0.142908,0.610669,0.533802,0.655049,0.130343,0.257104,0.937419,0.85164,0.592719,0.866744,0.840666,0.018503,0.775867,0.0745671,0.78976,0.385293,0.690173,0.886861,0.769411,0.506675,0.0508877,0.535527,0.679818,0.54183,0.0270473,0.552514,0.661214,0.140269,0.470188,0.602196,0.844309,0.615094,0.57101,0.358218,0.406356,0.459445,0.894869,0.279115,0.926175,0.496625,0.89472,0.985561,0.626963,0.0147938,0.888045,0.948831,0.877891,0.618513,0.738648,0.496212,0.900944,0.0955771,0.536128,0.856205,0.0623783,0.871974,0.0189906,0.26163,0.12076,0.722193,0.0616954,0.507864,0.700614,0.464819,0.868441,0.950664,0.382453,0.0508469,0.0436921,0.248745,0.0889916,0.947494,0.477039,0.667028,0.26368,0.178397,0.273942,0.98162,0.257111,0.60377,0.830966,0.0741088,0.731901,0.881353,0.833465,0.625125,0.83603,0.64863,0.695841,0.735788,0.499151,0.0962434,0.268055,0.797029,0.5253,0.684764,0.0510812,0.0662182,0.517619,0.579829,0.933031,0.721708,0.701415,0.0942589,0.673599,0.19718,0.226586,0.115121,0.232656,0.969293,0.603476,0.0369474,0.60694,0.261058,0.841989,0.988591,0.158348,0.744603,0.0950111,0.25873,0.0798396,0.746157,0.238179,0.252088,0.166678,0.644045,0.0269669,0.8148,0.79078,0.942071,0.326702,0.258168,0.545257,0.258417,0.147923,0.415697,0.793346,0.987881,0.840831,0.103153,0.154183,0.232502,0.417282,0.838445,0.166511,0.885923,0.742436,0.749891,0.144023,0.0776976,0.171532,0.477116,0.0720366,0.565478,0.821032,0.63853,0.695695,0.240028,0.634391,0.046978,0.153385,0.478431,0.650199,0.912126,0.661042,0.973868,0.4993,0.0154811,0.654153,0.622388,0.322691,0.203902,0.0116763,0.735847,0.421121,0.420661,0.699484,0.758466,0.405748,0.0974826,0.613329,0.883635,0.787459,0.955371,0.925455,0.241241,0.557684,0.0345226,0.8108,0.731882,0.659108,0.350158,0.347002,0.670423,0.398518,0.717981,0.0508867,0.833479,0.166422,0.158825,0.630599,0.399803,0.609235,0.225118,0.0854672,0.446144,0.020092,0.791442,0.189761,0.0587558,0.762657,0.978349,0.0172398,0.0592008,0.376868,0.966886,0.98334,0.493096,0.0346803,0.165537,0.728251,0.429428,0.553414,0.122009,0.224283,0.497828,0.240022,0.986926,0.324982,0.661268,0.359308,0.936067,0.149423,0.567677,0.227706,0.481931,0.179009,0.23345,0.153668,0.497556,0.518485,0.791123,0.667934,0.294051,0.333607,0.457957,0.0121911,0.563087,0.10727,0.360669,0.277613,0.136502,0.753321,0.93666,0.31422,0.649655,0.993536,0.029627,0.0937174,0.0962343,0.286441,0.770205,0.263396,0.169154,0.330167,0.0119851,0.638748,0.449569,0.144691,0.601382,0.207868,0.0114961,0.740791,0.587922,0.383324,0.505773,0.46283,0.768779,0.327285,0.731202,0.0479171,0.829767,0.254531,0.539313,0.744082,0.0381934,0.650241,0.868019,0.737129,0.125454,0.1495,0.485592,0.844734,0.768056,0.445322,0.258962,0.686599,0.269864,0.574576,0.803672,0.614949,0.904243,0.128793,0.913591,0.981094,0.834186,0.370548,0.292882,0.352793,0.656126,0.58112,0.557119,0.546308,0.871111,0.715218,0.691712,0.536007,0.367724,0.464424,0.581444,0.639406,0.918982,0.102273,0.846152,0.0210499,0.493901,0.00770932,0.812924,0.218367,0.549056,0.275762,0.218857,0.42455,0.731023,0.294993,0.33035,0.463845,0.460619,0.00842732,0.977419,0.779011,0.860924,0.481966,0.0247502,0.875965,0.148011,0.647712,0.137631,0.384193,0.554143,0.434401,0.431925,0.391857,0.252464,0.593475,0.27619,0.414705,0.160622,0.112009,0.362433,0.241285,0.802275,0.538619,0.87399,0.760617,0.0347677,0.972147,0.912595,0.0479779,0.720881,0.901886,0.162815,0.186596,0.306698,0.649278,0.0775244,0.602599,0.0342003,0.502174,0.945001,0.396568,0.253662,0.187354,0.000841081,0.0737557,0.697931,0.032965,0.675267,0.967867,0.361273,0.37907,0.504602,0.128962,0.871848,0.28349,0.875826,0.305304,0.462812,0.952875,0.285279,0.433929,0.339139,0.777476,0.137301,0.117356,0.856786,0.530409,0.719146,0.0961717,0.578449,0.575466,0.713129,0.202016,0.860871,0.752303,0.0827504,0.254828,0.222267,0.846693,0.546578,0.498118,0.195778,0.926442,0.380307,0.423813,0.708427,0.500869,0.31294,0.661823,0.915072,0.35236,0.795255,0.162634,0.737668,0.336147,0.776092,0.0892264,0.633916,0.93885,0.159144,0.141248,0.0911215,0.519979,0.426219,0.723402,0.163144,0.684172,0.666614,0.784374,0.242219,0.0444423,0.586633,0.732905,0.595775,0.51813,0.92788,0.897241,0.158467,0.688657,0.522321,0.266795,0.518029,0.712136,0.439123,0.103576,0.604889,0.741889,0.252468,0.580406,0.599522,0.768824,0.673377,0.616723,0.782518,0.863703,0.549283,0.752094,0.762072,0.505939,0.7496,0.0364105,0.776304,0.832025,0.213456,0.499096,0.560051,0.908492,0.682061,0.207772,0.813291,0.809197,0.0609899,0.537041,0.291087,0.342039,0.873316,0.649014,0.633351,0.70322,0.195267,0.478368,0.956405,0.507139,0.57627,0.652042,0.158938,0.396445,0.212601,0.23883,0.485179,0.327935,0.68929,0.981274,0.448546,0.545299,0.617669,0.385184,0.194994,0.700157,0.218866,0.786043,0.0450908,0.0489479,0.976741,0.84043,0.0943017,0.520417,0.975426,0.0150738,0.53344,0.0791408,0.479036,0.0919799,0.322092,0.508546,0.058521,0.383409,0.286887,0.745583,0.714579,0.491762,0.844674,0.160884,0.881478,0.393102,0.466226,0.0746229,0.935199,0.760525,0.976179,0.693312,0.464699,0.241821,0.923864,0.499948,0.832503,0.818236,0.503074,0.767451,0.0187507,0.961467,0.228136,0.123747,0.357251,0.96765,0.798505,0.31878,0.487486,0.740337,0.0131224,0.623319,0.24257,0.573488,0.0224414,0.600892,0.0444791,0.211818,0.642601,0.798452,0.0656227,0.0132313,0.0795619,0.0878363,0.547769,0.334503,0.245904,0.210587,0.419842,0.835518,0.780868,0.0665532,0.226669,0.724122,0.986558,0.618892,0.000959039,0.299939,0.765752,0.426213,0.795744,0.345991,0.544109,0.511704,0.760383,0.130457,0.224973,0.93316,0.238279,0.0310878,0.113246,0.922305,0.562719,0.550413,0.0903626,0.846399,0.213145,0.0576885,0.121194,0.199821,0.709683,0.183231,0.800451,0.54153,0.643663,0.251875,0.349338,0.131383,0.982129,0.265764,0.761349,0.14132,0.0583695,0.880254,0.582576,0.02016,0.510224,0.670871,0.412996,0.833908,0.480635,0.634839,0.0913408,|0.855398,0.597582,0.133004,0.691708,0.35758,0.194819,0.0947737,0.989127,0.840544,0.594165,0.33946,0.470174,0.804288,0.423783,0.767912,0.410333,0.0176398,0.14344,0.85784,0.489327,0.194668,0.424402,0.515338,0.169662,0.992524,0.218724,0.20152,0.832576,0.689749,0.933918,0.322435,0.312973,0.430338,0.967701,0.951745,0.283161,0.00607824,0.818462,0.0473941,0.636237,0.601201,0.902618,0.311905,0.951288,0.874705,0.396342,0.573193,0.822179,0.595081,0.0451871,0.907763,0.30446,0.692944,0.0916445,0.104198,0.942305,0.340484,0.0481945,0.580357,0.293702,0.837648,0.517598,0.0145135,0.510189,0.830571,0.146142,0.00838411,0.262632,0.0853365,0.274481,0.392983,0.549816,0.828403,0.378326,0.595283,0.894136,0.898461,0.398428,0.610064,0.37117,0.32462,0.633626,0.237513,0.681692,0.297922,0.0820085,0.47472,0.937721,0.0755538,0.55478,0.157478,0.914729,0.822498,0.0123892,0.0701395,0.815508,0.979654,0.117577,0.796193,0.906608,0.969444,0.798081,0.267041,0.455228,0.643452,0.613998,0.396075,0.232054,0.117641,0.00157499,0.564688,0.155572,0.878757,0.787484,0.562088,0.555346,0.747943,0.482588,0.0931289,0.413303,0.722739,0.162585,0.229675,0.705951,0.854045,0.736312,0.189777,0.910187,0.585041,0.984398,0.934653,0.8786,0.204258,0.625685,0.633647,0.0963184,0.259523,0.675651,0.0244722,0.480037,0.720089,0.826264,0.0375936,0.622548,0.0464756,0.138549,0.28872,0.840997,0.645371,0.240024,0.410831,0.505837,0.45814,0.264867,0.523351,0.215784,0.355916,0.72611,0.393646,0.882291,0.720382,0.751112,0.261804,0.289008,0.767872,0.406085,0.0573106,0.127235,0.278034,0.250966,0.733578,0.592534,0.986474,0.740967,0.0974462,0.264511,0.565946,0.862747,0.620534,0.592431,0.51053,0.176461,0.809507,0.0526402,0.693505,0.281636,0.429563,0.895108,0.783752,0.0862552,0.365818,0.229011,0.970425,0.39789,0.860992,0.892193,0.608099,0.222291,0.147833,0.199293,0.438222,0.532216,0.463505,0.448127,0.881588,0.115944,0.158021,0.222572,0.121105,0.150511,0.178887,0.304555,0.496972,0.524142,0.745142,0.182699,0.789965,0.544844,0.041024,0.202023,0.55281,0.399588,0.880696,0.0218918,0.277856,0.853634,0.0831916,0.983419,0.705693,0.0875614,0.228657,0.465885,0.144924,0.651361,0.41599,0.513377,0.455243,0.76139,0.935309,0.471128,0.250914,0.975715,0.36259,0.435205,0.681385,0.648295,0.0339198,0.100064,0.137755,0.16036,0.496108,0.307811,0.79701,0.496919,0.170771,0.87416,0.431703,0.612337,0.301791,0.58566,0.901835,0.010242,0.422688,0.55964,0.475053,0.0975297,0.519759,0.950955,0.207681,0.228922,0.642484,0.907951,0.0766327,0.826303,0.604758,0.192022,0.866202,0.452069,0.93189,0.981781,0.968878,0.998061,0.700229,0.530156,0.18998,0.196307,0.558777,0.583793,0.694198,0.250934,0.1787,0.160918,0.0199941,0.890009,0.663016,0.677239,0.627697,0.790194,0.225825,0.699689,0.133963,0.242964,0.544327,0.388572,0.0689403,0.253299,0.996983,0.896627,0.465223,0.140832,0.64547,0.20828,0.730016,0.460313,0.807298,0.486776,0.429224,0.600656,0.398146,0.242798,0.450814,0.0811394,0.349186,0.103488,0.659233,0.23144,0.232885,0.00991964,0.980839,0.435777,0.223262,0.532695,0.0784959,0.172188,0.350828,0.471794,0.114419,0.00823486,0.00920534,0.631145,0.571187,0.364295,0.884338,0.73914,0.870368,0.888969,0.979852,0.938432,0.0967429,0.851824,0.333115,0.106619,0.727866,0.746983,0.207361,0.935083,0.696831,0.525497,0.468475,0.236104,0.271069,0.640367,0.874343,0.400273,0.559564,0.761971,0.876224,0.919097,0.669745,0.405822,0.13746,0.954168,0.0994296,0.0732365,0.703191,0.513011,0.0844389,0.459123,0.471363,0.854787,0.16629,0.608505,0.695687,0.528347,0.765904,0.119352,0.369336,0.522688,0.726824,0.731217,0.621826,0.703914,0.151761,0.632969,0.0425716,0.646065,0.427463,0.639887,0.609467,0.955757,0.656127,0.596172,0.699634,0.764914,0.148177,0.237102,0.706879,0.34286,0.677423,0.475894,0.722618,0.182989,0.479538,0.180004,0.747282,0.961639,0.210431,0.497642,0.740763,0.281427,0.285797,0.939964,0.361255,0.612913,0.480925,0.582836,0.996835,0.0297304,0.649694,0.833659,0.0234402,0.997309,0.511945,0.224917,0.502487,0.453263,0.45341,0.498191,0.951486,0.178652,0.141916,0.135171,0.108361,0.346085,0.371266,0.726833,0.736795,0.181722,0.521773,0.236357,0.864588,0.360042,0.855667,0.450478,0.859565,0.927269,0.423386,0.711722,0.315632,0.132916,0.920338,0.159491,0.443179,0.703802,0.326475,0.67395,0.568786,0.782354,0.987167,0.124275,0.988072,0.604535,0.333275,0.60685,0.308972,0.679524,0.769124,0.899877,0.342963,0.45143,0.192057,0.881395,0.767495,0.197035,0.657696,0.847042,0.826865,0.496422,0.777229,0.898532,0.954486,0.294886,0.580601,0.0744733,0.162687,0.646251,0.607646,0.399625,0.80956,0.42439,0.543784,0.111776,0.133024,0.0432356,0.772394,0.339158,0.76173,0.244203,0.754542,0.775599,0.0971792,0.453936,0.0910258,0.98954,0.637015,0.802898,0.63191,0.260381,0.802693,0.584,0.311299,0.441594,0.880404,0.601515,0.905686,0.154807,0.541403,0.680048,0.548934,0.370483,0.2337,0.298508,0.775755,0.839534,0.782831,0.860058,0.216797,0.961344,0.499727,0.282121,0.387049,0.769505,0.472245,0.0913869,0.15856,0.713973,0.629573,0.0722916,0.15445,0.244793,0.950906,0.297727,0.92692,0.645997,0.906554,0.0277364,0.47816,0.566912,0.0580553,0.691118,0.95764,0.0505146,0.407466,0.56851,0.523026,0.888748,0.791024,0.148308,0.744233,0.869835,0.632811,0.715912,0.346865,0.899072,0.82387,0.625501,0.596953,0.457489,0.206821,0.73306,0.951921,0.515543,0.650054,0.695348,0.811354,0.964302,0.814419,0.624594,0.530714,0.335576,0.9034,0.289904,0.0956277,0.275773,0.181092,0.833449,0.711566,0.517012,0.399383,0.864196,0.512993,0.298645,0.949379,0.707333,0.136701,0.2003,0.217879,0.941938,0.925194,0.421877,0.477372,0.186679,0.541843,0.617751,0.643351,0.482032,0.00277954,0.800434,0.0102513,0.861974,0.903636,0.894544,0.241273,0.407969,0.549143,0.656791,0.871231,0.367123,0.441726,0.223636,0.86855,0.230791,0.902133,0.720175,0.67042,0.720954,0.291812,0.655961,0.290195,0.190015,0.419454,0.322264,0.619269,0.269107,0.318328,0.320527,0.989047,0.752832,0.600819,0.550265,0.757973,0.345071,0.633999,0.425244,0.114476,0.685766,0.983692,0.587307,0.991655,0.187442,0.0266804,0.779818,0.204235,0.342607,0.583984,0.353751,0.568587,0.0265044,0.804883,0.90399,0.465763,0.257723,0.81289,0.999359,0.831476,0.302346,0.659783,0.643705,0.314947,0.333912,0.932894,0.427438,0.28116,0.582175,0.58341,0.44212,0.588504,0.811615,0.789943,0.0589511,0.884444,0.394632,0.0907406,0.163662,0.530256,0.405872,0.406262,0.146884,0.77495,0.755596,0.995432,0.530605,0.130587,0.0239449,0.247762,0.797632,0.719468,0.0997852,0.184401,0.942097,0.946027,0.937224,0.132021,0.360457,0.186929,0.688596,0.891926,0.216926,0.33909,0.912356,0.908604,0.0746871,0.0750215,0.0343734,0.251034,0.0760606,0.12682,0.469643,0.216354,0.548815,0.446325,0.112319,0.971886,0.133487,0.724262,0.191601,0.296277,0.429929,0.821503,0.126583,0.0330186,0.850189,0.418985,0.163405,0.796914,0.617745,0.763742,0.381285,0.946419,0.228528,0.512119,0.829315,0.223726,0.874063,0.725035,0.0613452,0.93271,0.490303,0.770842,0.410841,0.561978,0.658066,0.603354,0.111644,0.921415,0.0145979,0.963987,0.577514,0.5684,0.359723,0.432996,0.822173,0.359744,0.793706,0.397695,0.384266,0.603226,0.832474,0.53501,0.136066,0.549441,0.77658,0.842989,0.0703257,0.344605,0.763762,0.784288,0.397443,0.836386,0.127053,0.0215019,0.122482,0.223379,0.204281,0.678287,0.990978,0.232152,0.298188,0.231872,0.854726,0.69551,0.0288653,0.173005,0.321914,0.868529,0.258839,0.835869,0.304733,0.809865,0.617252,0.820947,0.360255,0.0514752,0.935888,0.82101,0.943221,0.870899,0.111964,0.360902,0.321334,0.307755,0.42813,0.03873,0.301759,0.599616,0.566204,0.874458,0.225772,0.612008,0.79651,0.354443,0.474928,0.386668,0.989745,0.0507452,0.134385,0.899048,0.684557,0.179533,0.18534,0.519758,0.902557,0.551851,0.434293,0.578002,0.314695,0.155662,0.60331,0.429552,0.36086,0.895325,0.318319,0.182874,0.562999,0.929163,0.923122,0.104045,0.833561,0.264433,0.854646,0.675293,0.348946,0.561707,0.642854,0.085294,0.215767,0.0334485,0.215344,0.441289,0.268059,0.112631,0.600516,0.461607,0.13305,0.135254,0.87938,0.803455,0.343742,0.649223,0.638854,0.553326,0.258864,0.679815,0.637088,0.661679,0.744318,0.680409,0.179228,0.719365,0.3968,0.425444,0.11889,0.835198,0.488414,0.400378,0.146473,0.638102,0.437706,0.0292027,0.376561,0.651036,0.683735,0.630419,0.864548,0.86485,0.579241,0.317402,0.843156,0.420083,0.716492,0.445295,0.984317,0.0716523,0.156477,0.530254,0.303037,0.278945,0.303047,0.596219,0.543843,0.55989,0.519315,0.423361,0.212858,0.869162,0.628758,0.242956,0.160499,0.32107,0.122717,0.342047,0.325301,0.205897,0.818548,0.965686,0.627451,0.195716,0.193792,0.774554,0.176,0.338276,0.27492,0.953508,0.565551,0.470135,0.145663,0.0864277,0.680487,0.209191,0.0996485,0.178419,0.430377,0.811215,0.726232,0.505792,0.753832,0.322117,0.573345,0.180174,0.538234,0.499538,0.57162,0.518818,0.746139,0.704485,0.773116,0.594714,0.502949,0.174432,0.347629,0.593548,0.178912,0.442767,0.997243,0.306148,0.712752,0.22214,0.106264,0.475929,0.224059,0.629033,0.0221192,0.230308,0.834405,0.669863,0.211348,0.895911,0.965121,0.231703,0.803858,0.491377,0.5385,0.884319,0.870599,0.67531,0.781996,0.881754,0.639971,0.740965,0.844638,|0.941927,0.496881,0.351904,0.181789,0.443693,0.584173,0.564452,0.891181,0.698662,0.526486,0.0261475,0.20292,0.715403,0.562666,0.205029,0.782457,0.247473,0.3837,0.52899,0.657891,0.694314,0.128203,0.294395,0.407995,0.995052,0.336197,0.994376,0.217171,0.518854,0.95347,0.999809,0.925465,0.751553,0.925639,0.595612,0.950103,0.0307434,0.609509,0.207919,0.836681,0.37676,0.847255,0.0275763,0.270277,0.284898,0.662691,0.670737,0.0477872,0.049207,0.172933,0.205073,0.54865,0.355129,0.0593706,0.219532,0.845494,0.841903,0.970316,0.264996,0.312361,0.792849,0.382471,0.151649,0.19979,0.573508,0.56933,0.693739,0.602545,0.214011,0.101032,0.805244,0.267567,0.0402175,0.872843,0.5766,0.399927,0.837681,0.40124,0.317792,0.205381,0.881508,0.260859,0.875758,0.00515234,0.624215,0.247639,0.143395,0.547326,0.0335339,0.754195,0.17804,0.825214,0.744976,0.813451,0.676402,0.755354,0.145128,0.800524,0.121204,0.0251018,0.583984,0.751824,0.771355,0.345997,0.297715,0.25341,0.569926,0.771208,0.579207,0.859574,0.854247,0.866705,0.0529609,0.474624,0.229678,0.481515,0.690405,0.655916,0.764364,0.796583,0.983689,0.86163,0.631455,0.348011,0.698229,0.472366,0.878869,0.456388,0.354603,0.620828,0.945302,0.21449,0.684294,0.390417,0.0344206,0.668219,0.623506,0.635469,0.624047,0.116276,0.542,0.25968,0.158407,0.855192,0.440404,0.979871,0.932026,0.287075,0.866252,0.915158,0.204504,0.87946,0.114746,0.449263,0.815198,0.809517,0.665325,0.886387,0.172978,0.970921,0.448973,0.881947,0.954176,0.276218,0.582388,0.634142,0.559959,0.92791,0.273769,0.801544,0.327366,0.697608,0.00709826,0.975783,0.239004,0.371753,0.156499,0.577718,0.582655,0.860938,0.798166,0.975639,0.80712,0.0629382,0.678126,0.0286008,0.887127,0.371768,0.68733,0.0647898,0.087979,0.341443,0.841435,0.707369,0.60973,0.700039,0.149595,0.990925,0.193859,0.0403542,0.830532,0.215081,0.976702,0.203223,0.98689,0.179229,0.258348,0.359355,0.724374,0.138704,0.432059,0.989417,0.574484,0.537799,0.191792,0.945448,0.56308,0.106971,0.576275,0.496739,0.169738,0.81889,0.917782,0.725471,0.986255,0.363878,0.117427,0.999049,0.417892,0.710271,0.641297,0.852802,0.30378,0.136824,0.610819,0.506945,0.322331,0.623504,0.470753,0.782536,0.169486,0.199282,0.715575,0.935876,0.970706,0.592458,0.902528,0.0713409,0.789334,0.598632,0.0183345,0.208453,0.89159,0.908409,0.201543,0.598675,0.233764,0.434886,0.241331,0.283248,0.886395,0.982887,0.772137,0.0224239,0.60093,0.970215,0.560775,0.196182,0.0720701,0.56753,0.620143,0.533989,0.314062,0.666471,0.296503,0.715005,0.370945,0.867966,0.147253,0.175878,0.386279,0.18566,0.102482,0.742096,0.907156,0.780487,0.181697,0.144883,0.239088,0.405489,0.136742,0.0502822,0.502291,0.312903,0.402434,0.411845,0.234599,0.574483,0.250828,0.849137,0.737117,0.266205,0.650954,0.938646,0.223926,0.046332,0.804491,0.244523,0.332883,0.874841,0.00304115,0.27934,0.391003,0.321593,0.750756,0.782632,0.169862,0.668757,0.377336,0.151728,0.255917,0.895864,0.982158,0.622988,0.274364,0.672927,0.119865,0.130893,0.290031,0.8004,0.0695986,0.980677,0.0895252,0.610359,0.215538,0.685354,0.860415,0.259942,0.0484865,0.0367562,0.644566,0.388939,0.20879,0.956514,0.715795,0.718561,0.618732,0.534699,0.724397,0.535952,0.11748,0.951221,0.694616,0.567231,0.563631,0.8311,0.135285,0.85046,0.716487,0.753899,0.502382,0.886699,0.811484,0.141948,0.309938,0.122373,0.332619,0.730432,0.254462,0.966596,0.415729,0.649791,0.641208,0.16058,0.776799,0.256427,0.0121977,0.745184,0.631794,0.675004,0.181912,0.858123,0.599271,0.547441,0.822885,0.65229,0.853877,0.646794,0.289908,0.710656,0.248618,0.522132,0.174402,0.382937,0.607976,0.270766,0.334782,0.319702,0.149302,0.488534,0.383761,0.0180373,0.624221,0.239299,0.223883,0.778016,0.310726,0.345207,0.0821533,0.526177,0.152429,0.171616,0.420131,0.200688,0.591605,0.636912,0.615774,0.00255471,0.165083,0.692726,0.595596,0.972461,0.562634,0.982334,0.211444,0.250236,0.16822,0.0245594,0.814608,0.282268,0.682777,0.825545,0.653488,0.59754,0.791856,0.645976,0.539452,0.216632,0.976935,0.0543961,0.201728,0.33121,0.897135,0.469756,0.55892,0.12305,0.464605,0.766437,0.366421,0.909184,0.312005,0.277468,0.290664,0.986818,0.727819,0.703738,0.614093,0.0950954,0.251876,0.608372,0.364713,0.646464,0.349135,0.399008,0.294597,0.595438,0.522841,0.739456,0.361045,0.3138,0.250758,0.477427,0.46439,0.362764,0.486844,0.177196,0.3834,0.580992,0.270193,0.397106,0.0401608,0.96668,0.555521,0.264635,0.460323,0.636363,0.209393,0.762522,0.770997,0.868731,0.959373,0.375734,0.503027,0.12226,0.113643,0.678605,0.836138,0.969341,0.830571,0.00822508,0.972513,0.213177,0.0968908,0.580571,0.0559982,0.32902,0.316818,0.154008,0.228263,0.74824,0.0182782,0.297757,0.164203,0.390155,0.805723,0.982477,0.985638,0.386665,0.335455,0.0272781,0.606013,0.529981,0.356521,0.752356,0.461037,0.21191,0.0439786,0.329214,0.456439,0.82759,0.446006,0.534694,0.484751,0.580472,0.883334,0.235828,0.143994,0.400523,0.264016,0.42306,0.952871,0.713576,0.328733,0.934034,0.36316,0.588422,0.213515,0.132416,0.128845,0.544466,0.733645,0.96535,0.37074,0.617815,0.662424,0.933331,0.777204,0.410435,0.598227,0.683192,0.11701,0.242387,0.735653,0.628031,0.369399,0.304727,0.597574,0.473057,0.179259,0.899792,0.138605,0.127282,0.496174,0.304887,0.383914,0.678494,0.307393,0.0351098,0.262718,0.417331,0.209244,0.000406444,0.567422,0.908174,0.233517,0.640996,0.884017,0.701895,0.220409,0.467157,0.5775,0.232287,0.489057,0.880983,0.932758,0.118091,0.249512,0.339615,0.882374,0.790032,0.593019,0.432268,0.773278,0.979017,0.491728,0.191918,0.910489,0.648909,0.60037,0.883404,0.272292,0.949896,0.887492,0.654418,0.979084,0.571986,0.864074,0.428983,0.623025,0.789091,0.950999,0.37932,0.459037,0.893152,0.0867697,0.706959,0.614391,0.74194,0.687697,0.334954,0.0361716,0.800474,0.646929,0.03408,0.376458,0.500587,0.500362,0.0114873,0.0695465,0.725687,0.194006,0.442945,0.817259,0.372092,0.659669,0.835309,0.569164,0.666362,0.72158,0.176128,0.328971,0.263787,0.537392,0.987948,0.284847,0.991033,0.68253,0.663493,0.505896,0.727987,0.138206,0.317753,0.850638,0.618957,0.357116,0.32455,0.482125,0.733343,0.629905,0.387439,0.641809,0.264804,0.45673,0.959607,0.465988,0.129909,0.354225,0.175244,0.378486,0.135417,0.37388,0.567039,0.143416,0.458634,0.38214,0.448502,0.132515,0.926515,0.930348,0.159269,0.116407,0.974915,0.197437,0.358211,0.306829,0.996548,0.729878,0.119602,0.83603,0.172762,0.232818,0.608732,0.526168,0.346072,0.492602,0.0137008,0.0587305,0.0653766,0.266784,0.239741,0.518854,0.497738,0.886326,0.099385,0.100379,0.815465,0.897358,0.845485,0.443212,0.491387,0.438087,0.223982,0.877433,0.412171,0.332564,0.978502,0.437081,0.949332,0.623462,0.728071,0.375758,0.162814,0.528498,0.232069,0.67396,0.927298,0.776366,0.394287,0.74675,0.618813,0.167541,0.973722,0.655284,0.841812,0.366207,0.069043,0.0579957,0.568287,0.538844,0.399173,0.774691,0.171393,0.551674,0.451695,0.34681,0.0956293,0.294139,0.986008,0.957103,0.637568,0.681401,0.146193,0.613032,0.335938,0.0483632,0.404167,0.0363681,0.874962,0.601051,0.320671,0.0809003,0.886016,0.83465,0.40604,0.693418,0.730538,0.237098,0.439573,0.0446306,0.692101,0.299697,0.232148,0.936676,0.147911,0.440712,0.788547,0.406746,0.725149,0.243323,0.536292,0.849219,0.888428,0.486359,0.577644,0.515247,0.174394,0.245018,0.956017,0.921635,0.698127,0.7752,0.707606,0.45062,0.729261,0.984179,0.918876,0.937373,0.6917,0.828603,0.368031,0.724176,0.508978,0.650516,0.696547,0.809295,0.414434,0.0466558,0.755242,0.69514,0.923348,0.929017,0.301653,0.563473,0.424715,0.118122,0.723828,0.248342,0.0863881,0.00412059,0.705222,0.754094,0.75691,0.339443,0.915562,0.200716,0.900319,0.545896,0.524305,0.895215,0.873501,0.547054,0.818767,0.216446,0.580123,0.248956,0.502837,0.230154,0.541302,0.994806,0.377892,0.541939,0.83369,0.432587,0.859603,0.010489,0.359975,0.944103,0.139845,0.0548391,0.798239,0.513046,0.0751263,0.742083,0.628202,0.155491,0.258066,0.0201015,0.440583,0.708607,0.647961,0.0548001,0.925979,0.734032,0.258389,0.330583,0.169494,0.87984,0.306035,0.183006,0.350886,0.0183582,0.745413,0.149209,0.108949,0.33739,0.770383,0.362774,0.142588,0.310966,0.331993,0.508669,0.0231575,0.140679,0.000201523,0.338458,0.754052,0.156759,0.913909,0.245025,0.202112,0.276268,0.914289,0.567935,0.535281,0.47815,0.442785,0.880147,0.183683,0.0982881,0.938681,0.907263,0.79868,0.791231,0.914166,0.697249,0.60951,0.363075,0.830478,0.135706,0.219064,0.975384,0.322808,0.723453,0.458655,0.00760704,0.850235,0.588547,0.911037,0.202365,0.94712,0.65805,0.915698,0.30167,0.461762,0.267864,0.26275,0.771512,0.618997,0.88025,0.537863,0.869877,0.765293,0.631679,0.63282,0.580101,0.499114,0.25662,0.13442,0.480676,0.672509,0.753349,0.118684,0.967299,0.700003,0.751977,0.594211,0.481474,0.214637,0.428189,0.497989,0.294031,0.374561,0.751475,0.413497,0.311234,0.227403,0.645532,0.610461,0.0184166,0.157153,0.586195,0.605344,0.0762884,0.0387534,0.715863,0.369107,0.988163,0.222486,0.234036,0.482961,0.619622,0.0808116,0.52906,0.025156,0.835667,0.775981,0.291279,0.289213,0.995113,0.678063,0.0145649,0.574273,0.741711,0.833615,0.746531,0.42606,0.111969,0.939072,0.516575,0.252893,|0.124877,0.699749,0.429965,0.857909,0.890314,0.0536224,0.108674,0.0881355,0.829338,0.665837,0.734345,0.730253,0.589992,0.658446,0.316301,0.762079,0.0843493,0.771827,0.435404,0.312487,0.792318,0.0170142,0.0511273,0.856128,0.0162895,0.862925,0.831531,0.0626807,0.447652,0.39278,0.902205,0.935863,0.789223,0.574129,0.2289,0.850653,0.509894,0.153916,0.658571,0.0792786,0.106624,0.29055,0.274333,0.721201,0.616404,0.888858,0.723704,0.899322,0.59245,0.0118317,0.963293,0.203854,0.333283,0.724024,0.960508,0.271705,0.0342618,0.658345,0.318447,0.985046,0.306841,0.429802,0.253664,0.506386,0.308208,0.118445,0.347773,0.794943,0.318287,0.917906,0.491008,0.655929,0.970133,0.16735,0.778477,0.48748,0.091024,0.041629,0.957567,0.978337,0.263703,0.564525,0.807805,0.436515,0.4634,0.921457,0.484852,0.40111,0.167006,0.36475,0.542212,0.906121,0.149202,0.206223,0.4122,0.185055,0.621101,0.399362,0.880775,0.391109,0.487162,0.531054,0.268881,0.356424,0.299818,0.251097,0.672777,0.584487,0.947834,0.845547,0.39274,0.731035,0.183657,0.145049,0.393609,0.582496,0.61384,0.122385,0.367806,0.571827,0.598517,0.165953,0.804165,0.843908,0.499306,0.854593,0.24268,0.174272,0.981465,0.234403,0.0697309,0.727928,0.083834,0.310834,0.654251,0.668216,0.482438,0.33397,0.420465,0.445588,0.187129,0.685784,0.72613,0.377647,0.933416,0.412903,0.95557,0.773863,0.203231,0.45533,0.119714,0.68058,0.528074,0.287956,0.932338,0.684893,0.117192,0.216582,0.676148,0.350771,0.667497,0.574353,0.72795,0.240953,0.49157,0.843819,0.401743,0.257451,0.718526,0.790378,0.280307,0.144577,0.49684,0.503473,0.561544,0.572661,0.0489354,0.019477,0.60475,0.466318,0.182281,0.923121,0.29629,0.650317,0.366851,0.337377,0.0595961,0.639162,0.935015,0.358262,0.231058,0.831368,0.540022,0.798087,0.313085,0.566016,0.608511,0.744121,0.257692,0.8876,0.514407,0.693252,0.201368,0.748956,0.73508,0.930251,0.340425,0.0129942,0.632487,0.457869,0.0124523,0.253243,0.00718033,0.216927,0.149341,0.504782,0.0611222,0.597391,0.755084,0.168151,0.833245,0.519176,0.853694,0.580114,0.64425,0.140339,0.936817,0.400123,0.366162,0.628068,0.439562,0.00276244,0.24679,0.0181752,0.0576504,0.147143,0.196198,0.492676,0.921376,0.274535,0.753811,0.872668,0.419316,0.534764,0.530992,0.68197,0.720221,0.77652,0.741931,0.718479,0.318686,0.678477,0.612185,0.228872,0.373871,0.126096,0.245915,0.422559,0.132559,0.79396,0.828341,0.646202,0.459895,0.125142,0.701345,0.0788771,0.898925,0.148948,0.973581,0.235463,0.344881,0.921238,0.541961,0.0821876,0.14114,0.532312,0.920826,0.588584,0.833706,0.487575,0.0211525,0.640548,0.118034,0.024892,0.366111,0.517826,0.923082,0.598694,0.339382,0.403849,0.057028,0.0483502,0.0890491,0.267844,0.279317,0.0544987,0.784847,0.667503,0.308065,0.55632,0.93083,0.895971,0.806062,0.558764,0.588672,0.402213,0.449265,0.0668319,0.315043,0.0140616,0.755986,0.69919,0.652294,0.287418,0.615038,0.413848,0.147903,0.09267,0.302538,0.386501,0.0818688,0.548287,0.528321,0.603961,0.846343,0.114047,0.419205,0.831484,0.0516204,0.21778,0.83288,0.112684,0.583539,0.161542,0.264577,0.640254,0.106068,0.428696,0.71002,0.648014,0.708992,0.401928,0.927007,0.539639,0.153259,0.502756,0.821734,0.867993,0.222395,0.119063,0.92651,0.379037,0.292389,0.420143,0.592204,0.251099,0.919125,0.758085,0.690683,0.778906,0.0696854,0.927298,0.325108,0.591739,0.760312,0.163701,0.0862,0.298833,0.107558,0.158647,0.755451,0.569984,0.827878,0.483642,0.716434,0.795993,0.283487,0.964585,0.0252886,0.0320262,0.84009,0.784903,0.728808,0.618106,0.660874,0.567009,0.663148,0.499419,0.101315,0.693989,0.636134,0.0178159,0.427842,0.953458,0.761051,0.770432,0.538768,0.693514,0.505975,0.769864,0.578577,0.33538,0.88096,0.155591,0.626778,0.312924,0.564311,0.615343,0.463305,0.413808,0.158908,0.331207,0.282007,0.979831,0.115173,0.316152,0.0209916,0.692501,0.424995,0.605017,0.279837,0.23796,0.550451,0.701611,0.906064,0.884066,0.150339,0.478932,0.110088,0.655792,0.015203,0.811874,0.723973,0.91408,0.285026,0.536236,0.206185,0.696316,0.932083,0.684031,0.201422,0.258851,0.217374,0.398843,0.275518,0.0716674,0.0942136,0.159154,0.498514,0.701092,0.374908,0.180721,0.00147891,0.999981,0.221429,0.299977,0.414901,0.394692,0.0106804,0.522639,0.0832226,0.266945,0.872134,0.526131,0.346565,0.878808,0.195304,0.40334,0.404871,0.59278,0.917792,0.834812,0.679539,0.935219,0.309406,0.208556,0.214379,0.954752,0.00229818,0.390699,0.701578,0.397717,0.935676,0.600528,0.309284,0.668001,0.988211,0.223384,0.146914,0.889449,0.0491766,0.0137324,0.579116,0.313257,0.941732,0.452651,0.281931,0.100408,0.224687,0.957847,0.634209,0.585364,0.860718,0.943934,0.0983518,0.629353,0.27643,0.416861,0.393481,0.0519201,0.184962,0.287784,0.0113519,0.117736,0.955644,0.434016,0.856243,0.592452,0.312559,0.354784,0.913737,0.343894,0.726764,0.901002,0.577725,0.587131,0.160009,0.525613,0.0760193,0.745618,0.152976,0.537631,0.545182,0.0920752,0.326719,0.435394,0.396147,0.540747,0.85872,0.104523,0.464774,0.0746643,0.123348,0.406711,0.328157,0.775875,0.65838,0.724131,0.228556,0.715988,0.7134,0.453612,0.800508,0.0859237,0.587756,0.613419,0.263506,0.0427387,0.641023,0.226902,0.115937,0.0174114,0.240708,0.997488,0.923705,0.176755,0.432771,0.0718608,0.98647,0.307281,0.00299031,0.887129,0.166075,0.200594,0.618567,0.458319,0.190529,0.471676,0.69025,0.941503,0.706944,0.0608229,0.0173662,0.309343,0.52442,0.36929,0.926808,0.612939,0.0115283,0.333258,0.966986,0.834467,0.403196,0.344181,0.429198,0.995012,0.240478,0.558973,0.49071,0.892374,0.0463354,0.746382,0.756226,0.284827,0.0879848,0.0656174,0.8754,0.00955689,0.0495196,0.144424,0.172935,0.907256,0.456462,0.310189,0.247204,0.998747,0.904881,0.402206,0.809033,0.375996,0.903044,0.625277,0.0370011,0.43577,0.721792,0.590374,0.23823,0.403702,0.92644,0.339303,0.713908,0.582868,0.577746,0.365777,0.73677,0.26911,0.276892,0.363466,0.214921,0.586137,0.246816,0.91203,0.834461,0.195739,0.799609,0.0988075,0.774163,0.268183,0.749767,0.980475,0.567307,0.60062,0.480891,0.817235,0.951641,0.586277,0.198009,0.263635,0.328015,0.38818,0.258131,0.226074,0.892186,0.726152,0.965202,0.766634,0.811387,0.798603,0.587369,0.142042,0.510069,0.199873,0.284077,0.667111,0.208786,0.244966,0.668833,0.0844257,0.657118,0.70361,0.45533,0.904949,0.780522,0.388577,0.323502,0.190738,0.751489,0.728431,0.151109,0.00441438,0.943828,0.0403246,0.29614,0.586996,0.912863,0.268545,0.472944,0.117252,0.856531,0.857286,0.775081,0.720476,0.997366,0.16569,0.594842,0.671769,0.176235,0.00547957,0.299787,0.67889,0.442131,0.0946696,0.312649,0.738996,0.960844,0.408232,0.48507,0.35156,0.565485,0.268633,0.172811,0.16307,0.565474,0.12056,0.137462,0.275269,0.373808,0.834275,0.462469,0.614911,0.975058,0.223469,0.525537,0.915905,0.890687,0.0619689,0.414282,0.649692,0.305029,0.587012,0.303361,0.936347,0.886666,0.435142,0.489347,0.752569,0.728152,0.728463,0.0377463,0.511251,0.933469,0.687764,0.561145,0.794674,0.531516,0.680759,0.990711,0.894315,0.0230664,0.0386431,0.0238416,0.0690851,0.022913,0.205158,0.0808802,0.17632,0.680655,0.982803,0.573841,0.926121,0.425857,0.633823,0.627967,0.49746,0.614145,0.524738,0.173429,0.514621,0.777465,0.505255,0.836206,0.663665,0.920453,0.0345218,0.1195,0.212358,0.789595,0.679883,0.39795,0.765059,0.785027,0.0485502,0.500351,0.244037,0.439189,0.492395,0.329674,0.626494,0.553667,0.0542324,0.0651395,0.540682,0.200244,0.319412,0.510263,0.34241,0.00405723,0.112092,0.165607,0.342303,0.847856,0.126612,0.463262,0.285553,0.577092,0.726618,0.895516,0.683458,0.44807,0.381788,0.580825,0.362569,0.423042,0.290066,0.721825,0.27042,0.187609,0.139166,0.412695,0.126327,0.555314,0.533034,0.569093,0.164912,0.18144,0.289715,0.212675,0.183176,0.534551,0.194136,0.611766,0.99806,0.858797,0.352243,0.0972919,0.117177,0.353731,0.277155,0.691925,0.609811,0.863178,0.120695,0.102941,0.590338,0.708947,0.859025,0.201148,0.333323,0.205349,0.462874,0.00205278,0.639851,0.493292,0.102617,0.339439,0.557939,0.300363,0.360262,0.151025,0.14636,0.652471,0.428716,0.262373,0.878355,0.0758355,0.764639,0.3965,0.725951,0.885193,0.0384026,0.513681,0.824669,0.77813,0.387856,0.537572,0.467281,0.477705,0.115102,0.77885,0.880909,0.935815,0.538319,0.979825,0.816152,0.135719,0.64256,0.997177,0.601471,0.658633,0.920628,0.163537,0.454285,0.559866,0.670781,0.934276,0.0503253,0.9257,0.522769,0.448268,0.335057,0.924283,0.222281,0.631682,0.752009,0.595846,0.709359,0.76104,0.0599465,0.325567,0.362234,0.390337,0.481899,0.984647,0.34233,0.522908,0.329219,0.840551,0.834731,0.908321,0.989607,0.646446,0.996476,0.844913,0.87265,0.384767,0.477991,0.142815,0.850008,0.287154,0.643168,0.703133,0.530299,0.186737,0.58809,0.379443,0.447603,0.521894,0.859495,0.486174,0.0057801,0.296572,0.0287268,0.256665,0.894635,0.875847,0.512533,0.0466793,0.057874,0.561228,0.303755,0.832793,0.242223,0.90173,0.130813,0.248384,0.0413052,0.276606,0.455287,0.709731,0.945451,0.163576,0.28821,0.0392006,0.676162,0.399806,0.283607,0.119737,0.917325,0.650347,0.471623,0.224815,0.194256,0.704091,0.509826,0.212219,0.894178,0.693452,0.145426,0.999883,0.0203162,0.501767,0.0248116,0.488858,0.200722,0.0379392,0.542806,0.222341,0.224873,0.0819715,0.86695,|0.909854,0.682052,0.82056,0.143345,0.743128,0.628138,0.0517613,0.451755,0.567744,0.841014,0.327156,0.432007,0.175019,0.334936,0.901957,0.873408,0.0473177,0.0963316,0.595296,0.770495,0.696144,0.890099,0.947074,0.397716,0.851837,0.122857,0.653188,0.499985,0.830202,0.52941,0.391982,0.55656,0.85397,0.482148,0.988016,0.246671,0.949528,0.118109,0.48027,0.709311,0.300178,0.510539,0.0636271,0.011651,0.379025,0.755976,0.17298,0.851316,0.488591,0.283957,0.874985,0.638132,0.170201,0.654522,0.503984,0.327635,0.716908,0.676724,0.887689,0.925437,0.515708,0.549185,0.462873,0.199278,0.766671,0.715041,0.477722,0.781416,0.582232,0.126602,0.230603,0.975804,0.97516,0.587317,0.674975,0.561228,0.289905,0.343514,0.95573,0.284734,0.667199,0.598355,0.658674,0.347047,0.21518,0.218485,0.84622,0.0413089,0.726559,0.724898,0.110499,0.215428,0.24745,0.80999,0.593517,0.345111,0.656525,0.252482,0.393788,0.456038,0.161456,0.621431,0.488719,0.799123,0.233705,0.840921,0.986291,0.921792,0.936971,0.888115,0.392847,0.755012,0.142361,0.867375,0.112535,0.857526,0.626657,0.149105,0.817378,0.744561,0.718909,0.684305,0.657643,0.877694,0.52129,0.387215,0.85431,0.839942,0.373923,0.952108,0.347845,0.675605,0.967317,0.70489,0.438867,0.05022,0.256574,0.407457,0.590883,0.977593,0.752256,0.180479,0.55007,0.922613,0.852007,0.622024,0.235737,0.576592,0.0828245,0.232619,0.307419,0.267515,0.398458,0.582991,0.276448,0.736403,0.815079,0.933043,0.211257,0.406916,0.788877,0.769732,0.218872,0.766905,0.777405,0.357818,0.920717,0.702423,0.685944,0.524822,0.109172,0.871447,0.682938,0.988669,0.331138,0.383563,0.703418,0.380672,0.255495,0.239538,0.594523,0.584249,0.245321,0.457405,0.426387,0.353126,0.757481,0.186135,0.0341702,0.459592,0.489832,0.12979,0.995906,0.554186,0.460417,0.850638,0.813665,0.341142,0.353245,0.943192,0.251933,0.866377,0.638548,0.634644,0.348343,0.244771,0.852278,0.0934091,0.818004,0.231262,0.152535,0.563837,0.65686,0.349664,0.824716,0.132333,0.820484,0.604925,0.345135,0.285243,0.842559,0.0577259,0.415178,0.942926,0.851002,0.48204,0.194808,0.587287,0.844349,0.507648,0.191651,0.335504,0.510886,0.7151,0.680104,0.764935,0.213796,0.451957,0.0707955,0.395421,0.97075,0.237751,0.0697486,0.387366,0.763952,0.57106,0.445221,0.214611,0.0539537,0.866434,0.460146,0.27221,0.91633,0.669711,0.48664,0.718859,0.171407,0.0231898,0.148815,0.0127658,0.581221,0.798355,0.185298,0.499106,0.255771,0.458233,0.740755,0.0550691,0.956937,0.701904,0.642134,0.674099,0.626066,0.293422,0.044705,0.133154,0.366924,0.863203,0.583009,0.410279,0.888161,0.269542,0.518753,0.914679,0.288151,0.554494,0.953882,0.990484,0.776428,0.826573,0.761283,0.10418,0.357552,0.870968,0.0294717,0.374104,0.588913,0.903268,0.321539,0.589216,0.763292,0.967873,0.209625,0.44239,0.758351,0.793704,0.0126349,0.648377,0.170162,0.846026,0.995708,0.85226,0.374029,0.894927,0.255766,0.653202,0.27235,0.616507,0.561532,0.0978898,0.415971,0.909258,0.633667,0.230826,0.41641,0.519127,0.314279,0.957709,0.476265,0.854772,0.622935,0.627366,0.702611,0.547543,0.805152,0.370635,0.6784,0.203302,0.209652,0.723611,0.273983,0.677568,0.399201,0.492579,0.386699,0.152699,0.517043,0.126274,0.315299,0.630941,0.755589,0.771866,0.85799,0.646618,0.527845,0.814994,0.822486,0.36522,0.373672,0.760244,0.711636,0.718919,0.148957,0.31586,0.384894,0.387042,0.550881,0.963082,0.793892,0.855156,0.613534,0.39896,0.905526,0.64508,0.648145,0.133923,0.999904,0.0676072,0.604806,0.458163,0.442507,0.241038,0.0167153,0.7536,0.302638,0.866961,0.301174,0.553839,0.159594,0.703661,0.445525,0.745979,0.0886002,0.628375,0.608092,0.761215,0.863714,0.283281,0.69925,0.136114,0.754346,0.15622,0.0489501,0.272756,0.217035,0.835031,0.984591,0.394811,0.379818,0.262043,0.384756,0.653514,0.379736,0.232144,0.654972,0.842986,0.823875,0.515215,0.870272,0.545527,0.206696,0.385742,0.271896,0.552403,0.261311,0.6026,0.642346,0.0935746,0.0418693,0.937693,0.052687,0.659746,0.500137,0.863133,0.927747,0.242747,0.188915,0.792585,0.339553,0.265365,0.100447,0.388584,0.447306,0.43017,0.594541,0.352137,0.326029,0.121808,0.62437,0.0131852,0.939184,0.768755,0.367217,0.494284,0.0976736,0.60963,0.059979,0.512138,0.353277,0.466243,0.312637,0.753948,0.312734,0.224341,0.272695,0.244772,0.278053,0.925964,0.085899,0.757027,0.352853,0.612924,0.685357,0.762783,0.299163,0.815778,0.972065,0.561461,0.743942,0.914419,0.121203,0.697156,0.539553,0.582343,0.773713,0.676965,0.507454,0.851981,0.826147,0.269639,0.576133,0.391487,0.371045,0.37094,0.0926496,0.692348,0.656604,0.645261,0.246841,0.334701,0.41085,0.0347905,0.670695,0.706731,0.570209,0.470362,0.174802,0.899052,0.382613,0.412951,0.163433,0.0797139,0.138327,0.855347,0.338418,0.418191,0.567919,0.984461,0.143414,0.255434,0.905585,0.966026,0.728241,0.0508823,0.957907,0.282268,0.421463,0.940529,0.340137,0.819013,0.794608,0.13965,0.187311,0.170087,0.0722238,0.419649,0.853833,0.696833,0.335471,0.471147,0.636113,0.662971,0.775675,0.0856044,0.55422,0.442842,0.630468,0.457997,0.832629,0.81967,0.264142,0.633204,0.673008,0.00318545,0.153696,0.158808,0.299613,0.937496,0.618503,0.355253,0.240745,0.0336032,0.686754,0.819953,0.05176,0.392062,0.449276,0.874419,0.666932,0.337287,0.0471493,0.292226,0.547898,0.808774,0.270875,0.945391,0.116562,0.0999059,0.688351,0.0146793,0.00189239,0.971312,0.248686,0.674636,0.836967,0.297979,0.403755,0.0162078,0.391946,0.856731,0.839806,0.447313,0.501612,0.649768,0.0884776,0.014222,0.906382,0.191203,0.387652,0.693766,0.920415,0.111396,0.0799851,0.196159,0.374868,0.569486,0.6935,0.486469,0.181532,0.56265,0.885476,0.566549,0.989729,0.699755,0.223594,0.753722,0.134609,0.320927,0.6184,0.685764,0.73405,0.929812,0.914733,0.209291,0.191699,0.838979,0.541308,0.341212,0.956556,0.0696457,0.00175065,0.252764,0.401689,0.306793,0.442101,0.404004,0.587836,0.738692,0.225363,0.364225,0.959277,0.313643,0.000201762,0.584425,0.742471,0.862051,0.937892,0.989788,0.355404,0.505443,0.443327,0.341388,0.477997,0.0611663,0.943319,0.654122,0.197878,0.125069,0.269696,0.0942009,0.274707,0.154852,0.224017,0.965829,0.750928,0.622733,0.349563,0.323014,0.398228,0.561595,0.246985,0.934468,0.0885987,0.296951,0.261785,0.262602,0.152248,0.727806,0.57165,0.0996022,0.876333,0.62117,0.0598313,0.420481,0.56945,0.922734,0.673054,0.591685,0.229876,0.694725,0.77652,0.412963,0.534552,0.304031,0.90666,0.849052,0.204361,0.344564,0.355867,0.186444,0.499578,0.0805573,0.568617,0.266787,0.415703,0.233232,0.698389,0.0406179,0.0415604,0.242967,0.860661,0.368493,0.520384,0.469679,0.144298,0.337219,0.0811957,0.384005,0.861534,0.265324,0.297845,0.683772,0.385055,0.698103,0.711763,0.0647416,0.920281,0.733887,0.219665,0.107408,0.152108,0.99571,0.623078,0.710709,0.629316,0.422468,0.613415,0.284571,0.739408,0.909512,0.953135,0.555738,0.525069,0.59007,0.936243,0.039001,0.846903,0.278264,0.738547,0.924889,0.467099,0.700641,0.778962,0.292546,0.164499,0.706197,0.00751883,0.606482,0.763772,0.569528,0.392716,0.374389,0.911722,0.761233,0.444394,0.444889,0.886937,0.252406,0.848841,0.858444,0.23874,0.245002,0.97436,0.622521,0.744113,0.689981,0.441189,0.123051,0.181343,0.762001,0.947477,0.654216,0.559591,0.362319,0.370977,0.314223,0.700898,0.86927,0.882021,0.104017,0.931033,0.113563,0.905799,0.75484,0.176164,0.0881871,0.362206,0.957395,0.635298,0.319709,0.137618,0.528407,0.215538,0.390911,0.711134,0.95051,0.335797,0.476725,0.811222,0.0707982,0.561023,0.656584,0.779755,0.530327,0.375804,0.949687,0.887357,0.750705,0.75098,0.230707,0.632782,0.412496,0.59629,0.426479,0.910176,0.186843,0.673607,0.346338,0.981167,0.176603,0.0825933,0.340521,0.696656,0.495192,0.0488303,0.797414,0.669604,0.686353,0.939766,0.296963,0.239118,0.773151,0.427781,0.961827,0.551817,0.0954143,0.407206,0.917931,0.162943,0.449724,0.0202214,0.375183,0.818162,0.902195,0.612231,0.912873,0.553661,0.0877176,0.247069,0.940107,0.951214,0.716961,0.486176,0.23644,0.834644,0.111606,0.361847,0.444054,0.0794286,0.500696,0.60486,0.433664,0.406459,0.0258587,0.0485116,0.387956,0.80979,0.106937,0.24981,0.555652,0.649791,0.468311,0.399721,0.0247896,0.595244,0.200337,0.694032,0.751232,0.0404701,0.87959,0.38398,0.880125,0.0458741,0.835369,0.153522,0.437962,0.240961,0.166343,0.501153,0.5442,0.805902,0.571876,0.0707568,0.651843,0.0348729,0.271478,0.928001,0.538573,0.507994,0.0963346,0.190686,0.0725775,0.791509,0.445699,0.227251,0.348902,0.56036,0.49028,0.717168,0.168145,0.0503609,0.389695,0.158868,0.264115,0.231649,0.177864,0.145346,0.993335,0.336679,0.790849,0.531388,0.579724,0.765647,0.428739,0.51735,0.176227,0.667774,0.650928,0.283542,0.899273,0.0257704,0.996579,0.409459,0.899771,0.711501,0.169524,0.443652,0.900772,0.958045,0.763821,0.275064,0.232025,0.831065,0.704452,0.552463,0.666132,0.702752,0.635563,0.767348,0.350432,0.475255,0.759086,0.743554,0.188515,0.829409,0.481776,0.297262,0.177559,0.196056,0.84201,0.92769,0.27454,0.652928,0.523567,0.118301,0.413396,0.580913,0.463077,0.338603,0.0905053,0.765702,0.7758,0.870722,0.608899,0.400302,0.492196,0.851756,0.708007,0.78581,0.625083,0.342008,0.330518,0.357157,0.87782,0.895686,0.606467,0.247811,0.858417,0.213928,0.0331571,|0.204795,0.428211,0.729965,0.839805,0.301794,0.199389,0.158215,0.545608,0.605991,0.843511,0.491129,0.168043,0.362338,0.0894741,0.361986,0.66012,0.782396,0.293867,0.387009,0.246494,0.550013,0.943714,0.293892,0.713971,0.0886557,0.683383,0.164956,0.286994,0.298007,0.615101,0.942529,0.554803,0.152153,0.545521,0.44852,0.0968572,0.801305,0.662922,0.1043,0.785238,0.33077,0.401275,0.956176,0.522437,0.90542,0.0288886,0.964975,0.592893,0.941937,0.683351,0.938709,0.931449,0.0300978,0.3652,0.0934561,0.500667,0.234411,0.755245,0.586031,0.0670324,0.601555,0.983241,0.139492,0.302593,0.951908,0.937947,0.904125,0.237252,0.498225,0.608349,0.272027,0.547554,0.497252,0.46988,0.467596,0.257978,0.279816,0.288072,0.370553,0.684478,0.298555,0.655386,0.79172,0.486097,0.110448,0.22476,0.319525,0.667969,0.28266,0.143542,0.588427,0.742726,0.457981,0.72106,0.103835,0.433368,0.978104,0.25812,0.27254,0.833771,0.173663,0.227121,0.584573,0.678293,0.258127,0.328986,0.732442,0.994861,0.742876,0.303508,0.431924,0.493394,0.176932,0.00671619,0.375853,0.245789,0.41267,0.136682,0.846858,0.0492374,0.82218,0.864606,0.604407,0.360643,0.686441,0.010053,0.359074,0.325191,0.914914,0.2608,0.769551,0.474958,0.925796,0.108448,0.573617,0.938762,0.280803,0.246454,0.170222,0.782116,0.530932,0.163064,0.337674,0.821912,0.79362,0.918377,0.0199627,0.854074,0.0820749,0.0253618,0.134769,0.298151,0.410476,0.475088,0.621692,0.70375,0.0347221,0.367977,0.574969,0.655282,0.654464,0.670397,0.567518,0.582756,0.420497,0.715445,0.724158,0.162663,0.445531,0.116919,0.566583,0.934005,0.51148,0.965274,0.120767,0.769409,0.558901,0.676408,0.697567,0.163481,0.587793,0.212302,0.0391244,0.722113,0.320404,0.466886,0.0744578,0.98389,0.570327,0.231821,0.964983,0.8296,0.662148,0.736131,0.745501,0.567324,0.447145,0.103091,0.653199,0.405045,0.272947,0.444779,0.633305,0.945301,0.727122,0.161608,0.536667,0.0336896,0.818102,0.591468,0.211404,0.783726,0.143229,0.768461,0.51849,0.345553,0.1729,0.051623,0.869053,0.0582101,0.266074,0.542713,0.0118542,0.813955,0.783061,0.479284,0.903989,0.836248,0.390296,0.943924,0.164841,0.904239,0.48098,0.194608,0.0692276,0.640308,0.62293,0.185937,0.618439,0.423239,0.0403005,0.168834,0.298783,0.550548,0.0970954,0.688063,0.944669,0.0143375,0.356116,0.0165319,0.933285,0.382033,0.920406,0.974929,0.874111,0.966564,0.597574,0.164261,0.446354,0.0386004,0.346862,0.996294,0.746862,0.76122,0.120717,0.463799,0.985306,0.526065,0.131665,0.865467,0.146404,0.826555,0.328454,0.0691964,0.506396,0.469771,0.138504,0.746395,0.696261,0.966284,0.681857,0.444752,0.317328,0.13921,0.118239,0.980133,0.425193,0.620327,0.556521,0.0596069,0.212291,0.306832,0.00813496,0.668114,0.215637,0.759201,0.901858,0.430357,0.264994,0.0906359,0.394071,0.625185,0.0261134,0.325033,0.893609,0.332001,0.431267,0.931703,0.530366,0.114252,0.271844,0.834867,0.502508,0.91976,0.705852,0.0995619,0.267853,0.003021,0.846607,0.882313,0.034565,0.766313,0.761963,0.871464,0.836225,0.799525,0.339547,0.745969,0.659441,0.831235,0.0874759,0.554417,0.138419,0.587327,0.773488,0.767199,0.964408,0.552099,0.803665,0.123481,0.44284,0.258511,0.762901,0.614723,0.751827,0.169794,0.33169,0.667083,0.70507,0.755177,0.491034,0.404866,0.777349,0.729608,0.844644,0.125939,0.0317207,0.347998,0.040263,0.790208,0.750054,0.101626,0.4295,0.733218,0.5894,0.102031,0.198809,0.386286,0.865162,0.532463,0.428499,0.308707,0.396826,0.334191,0.255528,0.892236,0.124701,0.291524,0.377252,0.398176,0.345224,0.626488,0.00656056,0.150409,0.569983,0.414664,0.143098,0.778453,0.170418,0.926644,0.964852,0.644633,0.329647,0.390203,0.673718,0.402236,0.621273,0.274718,0.860533,0.144955,0.621576,0.505653,0.823935,0.335868,0.402469,0.0137196,0.913249,0.716524,0.504313,0.122982,0.906103,0.172342,0.0797951,0.166732,0.582034,0.672572,0.519485,0.540288,0.721629,0.0402302,0.641026,0.768112,0.50466,0.330162,0.936467,0.723784,0.9156,0.0248095,0.543537,0.805018,0.402637,0.0764968,0.282109,0.765683,0.771782,0.472207,0.361074,0.434684,0.739195,0.614601,0.401864,0.516994,0.803634,0.61214,0.453373,0.324784,0.231356,0.644434,0.557936,0.241291,0.5627,0.950055,0.383745,0.102705,0.910544,0.294517,0.190611,0.876963,0.15332,0.811382,0.470738,0.817987,0.241754,0.581918,0.171087,0.527365,0.595373,0.364015,0.572627,0.97078,0.846719,0.845415,0.386255,0.558608,0.204113,0.402445,0.330041,0.241621,0.186716,0.907973,0.438798,0.145725,0.218457,0.828468,0.861428,0.347543,0.0690038,0.789906,0.9946,0.230013,0.091443,0.744398,0.30926,0.607824,0.0236942,0.930524,0.615037,0.48701,0.324074,0.924455,0.159975,0.977271,0.945717,0.759125,0.599279,0.114509,0.682812,0.211004,0.896076,0.0279363,0.604858,0.922346,0.198394,0.672088,0.721176,0.0572121,0.380826,0.612577,0.983,0.891816,0.625951,0.189066,0.707051,0.403582,0.234084,0.453741,0.0693752,0.357409,0.253183,0.204318,0.633657,0.120729,0.577954,0.923151,0.541569,0.380738,0.266427,0.450706,0.921823,0.934321,0.425066,0.269553,0.37274,0.643162,0.280823,0.579496,0.875426,0.631106,0.238313,0.723182,0.572445,0.271515,0.225676,0.441847,0.62734,0.995748,0.346955,0.130943,0.361363,0.978421,0.482603,0.0830483,0.166515,0.126517,0.532427,0.797319,0.42444,0.851797,0.169981,0.419031,0.18575,0.721757,0.397487,0.359942,0.896012,0.875405,0.379628,0.594584,0.762117,0.646264,0.134998,0.544738,0.784249,0.560109,0.754296,0.416169,0.297721,0.315345,0.76457,0.818061,0.297526,0.677959,0.228436,0.742024,0.264702,0.0689989,0.670344,0.460685,0.104929,0.430565,0.838029,0.912593,0.529377,0.411361,0.986418,0.108937,0.415842,0.758165,0.180521,0.534618,0.288204,0.0166162,0.610133,0.821503,0.387614,0.267593,0.162204,0.502897,0.521015,0.323113,0.439396,0.450699,0.995673,0.0599778,0.953105,0.133228,0.489325,0.618211,0.0206964,0.654496,0.287782,0.15671,0.824354,0.925363,0.562487,0.6371,0.766259,0.868828,0.270674,0.588338,0.505407,0.922901,0.345512,0.0603234,0.821675,0.937233,0.355587,0.65245,0.781232,0.717745,0.753825,0.931393,0.0819452,0.184172,0.936843,0.699498,0.0482371,0.0516984,0.11292,0.473004,0.552366,0.00905436,0.837878,0.576375,0.141467,0.703373,0.577418,0.00232834,0.752603,0.175627,0.869898,0.57135,0.92492,0.363335,0.0388768,0.9054,0.33502,0.820528,0.466283,0.398202,0.244718,0.168863,0.965291,0.510385,0.542858,0.859622,0.135748,0.269421,0.309561,0.9863,0.427681,0.282046,0.527049,0.780812,0.511399,0.111973,0.864706,0.923806,0.657936,0.934356,0.128157,0.880435,0.587003,0.139156,0.545974,0.938121,0.371639,0.8455,0.629924,0.47687,0.234174,0.700417,0.465897,0.935431,0.499126,0.00679046,0.390508,0.866297,0.952042,0.500677,0.182532,0.067191,0.137124,0.570546,0.178742,0.15885,0.0326199,0.391193,0.987819,0.321178,0.492243,0.774634,0.580603,0.0837176,0.640674,0.673302,0.308213,0.595015,0.763638,0.655773,0.0807108,0.433015,0.724564,0.993198,0.992912,0.517879,0.419724,0.553104,0.398907,0.209141,0.967843,0.382467,0.0897583,0.70253,0.198136,0.881091,0.0396258,0.321624,0.446215,0.0232551,0.0625573,0.170633,0.073248,0.463839,0.297246,0.793857,0.844551,0.860439,0.342056,0.557559,0.819537,0.433457,0.124349,0.239748,0.889216,0.480802,0.0422445,0.588123,0.055791,0.268074,0.517885,0.681646,0.0988041,0.328476,0.00590843,0.602633,0.685797,0.439904,0.0620218,0.810208,0.155987,0.210426,0.252089,0.128938,0.236435,0.468354,0.854949,0.705192,0.858302,0.146518,0.0746621,0.27395,0.718838,0.940103,0.0159178,0.252348,0.605864,0.136867,0.784004,0.155102,0.527364,0.677537,0.678556,0.99133,0.892806,0.260862,0.811356,0.133692,0.629851,0.505895,0.184328,0.858934,0.676736,0.651072,0.626948,0.420577,0.451472,0.851336,0.336352,0.392232,0.802002,0.0984605,0.725005,0.953217,0.533146,0.935034,0.27523,0.135515,0.722012,0.966651,0.355541,0.0352926,0.884309,0.873326,0.526406,0.599339,0.208878,0.788156,0.0099225,0.552622,0.736289,0.234357,0.965647,0.351616,0.345108,0.348187,0.720234,0.0750228,0.772607,0.40948,0.175913,0.493845,0.942933,0.316592,0.759834,0.774733,0.0503235,0.675516,0.498137,0.714288,0.868859,0.77561,0.692756,0.562216,0.853761,0.413031,0.93315,0.800252,0.950732,0.388252,0.306754,0.173848,0.867477,0.0742982,0.0526697,0.0544806,0.822414,0.405661,0.391515,0.322843,0.960682,0.520296,0.426411,0.604807,0.92985,0.062605,0.77642,0.296726,0.0940589,0.075982,0.496906,0.211721,0.0491975,0.376151,0.981122,0.0686213,0.164057,0.329688,0.96676,0.546549,0.50096,0.806771,0.0108331,0.110461,0.398249,0.107871,0.979746,0.610185,0.324458,0.551662,0.619897,0.506914,0.493756,0.583821,0.048972,0.899309,0.778726,0.12104,0.692147,0.625836,0.995626,0.0944449,0.774606,0.874226,0.300799,0.830828,0.997395,0.144316,0.47823,0.755382,0.960422,0.292785,0.451955,0.0398006,0.43671,0.802916,0.309654,0.981934,0.793914,0.944963,0.175288,0.0934082,0.406623,0.319495,0.789051,0.203166,0.308375,0.247122,0.575073,0.916644,0.1856,0.127466,0.129555,0.296738,0.596738,0.496588,0.0403737,0.237438,0.454639,0.20548,0.28209,0.544632,0.000545561,0.982444,0.659555,0.0688044,0.379589,0.590812,0.291632,0.387806,0.668056,0.826145,0.599493,0.810989,0.940554,0.463184,0.0375449,0.599415,0.267335,0.734243,0.641523,0.121879,0.154943,0.908866,0.130103,0.3591,0.449121,0.357672,0.743327,0.0813011,|0.223803,0.651454,0.657048,0.240861,0.482062,0.13586,0.670867,0.944585,0.562119,0.587416,0.971331,0.685593,0.0300115,0.664485,0.768622,0.216641,0.0936671,0.252193,0.962619,0.934395,0.337748,0.473277,0.672597,0.195306,0.559875,0.0513786,0.950902,0.346221,0.830409,0.58154,0.449882,0.224451,0.158552,0.150063,0.603273,0.760467,0.674696,0.437922,0.487959,0.397434,0.369434,0.964447,0.956871,0.236471,0.815308,0.471185,0.729669,0.401493,0.133829,0.807821,0.806775,0.859633,0.339229,0.260601,0.289041,0.240143,0.106996,0.434838,0.334313,0.264539,0.22296,0.298335,0.672401,0.329091,0.82221,0.83127,0.344416,0.723474,0.517637,0.766013,0.0203609,0.0371433,0.831952,0.190194,0.116126,0.419508,0.625327,0.122899,0.809996,0.997901,0.550418,0.792606,0.249415,0.749184,0.892263,0.757248,0.856733,0.621557,0.30979,0.761312,0.0868306,0.918574,0.382509,0.348734,0.254638,0.598427,0.687451,0.867422,0.156425,0.154824,0.175864,0.0819767,0.598101,0.919459,0.360132,0.0449873,0.595617,0.0120334,0.349092,0.704617,0.713283,0.213579,0.775388,0.975177,0.0753837,0.455495,0.863455,0.573669,0.994572,0.839297,0.0965232,0.183704,0.96409,0.803819,0.703711,0.708991,0.392817,0.56369,0.767388,0.126957,0.337488,0.936807,0.379675,0.967486,0.294118,0.432035,0.242503,0.502527,0.226626,0.656585,0.596592,0.809937,0.292498,0.953702,0.0291951,0.257572,0.565632,0.216599,0.0503141,0.619568,0.699639,0.947695,0.44107,0.500291,0.890823,0.783253,0.911854,0.086975,0.178306,0.597523,0.369627,0.413962,0.830584,0.0834395,0.168945,0.60217,0.822579,0.266306,0.994434,0.564057,0.854509,0.638623,0.44898,0.684079,0.165432,0.115309,0.878424,0.686334,0.75517,0.57411,0.920884,0.477467,0.356748,0.0154738,0.815964,0.536192,0.0491638,0.218601,0.687286,0.0903823,0.589101,0.247184,0.481511,0.126155,0.838789,0.877822,0.952834,0.870969,0.290405,0.600777,0.0943776,0.988664,0.553382,0.454694,0.0380846,0.764467,0.210745,0.604076,0.941326,0.304791,0.759604,0.811107,0.0941168,0.476882,0.857794,0.927594,0.848647,0.62593,0.536163,0.321398,0.838199,0.603049,0.999841,0.0767727,0.421743,0.0456506,0.665214,0.29197,0.605421,0.533211,0.540736,0.339938,0.484906,0.436899,0.551227,0.524659,0.918511,0.0330219,0.810785,0.520657,0.323087,0.825722,0.726305,0.040222,0.102577,0.062662,0.313563,0.934972,0.90653,0.424579,0.691441,0.37053,0.55409,0.176839,0.905705,0.753684,0.788151,0.434635,0.18118,0.314004,0.591379,0.904312,0.177223,0.201596,0.962081,0.261375,0.240848,0.493815,0.731438,0.433885,0.0807058,0.158022,0.439622,0.457957,0.574313,0.955754,0.787628,0.495523,0.345454,0.20398,0.413656,0.237231,0.479927,0.528033,0.478259,0.281131,0.362164,0.00548851,0.0875163,0.316472,0.491593,0.260331,0.422324,0.963036,0.85302,0.707137,0.775354,0.714957,0.855599,0.703575,0.515891,0.0827626,0.308626,0.0827299,0.0588962,0.109768,0.0602604,0.131775,0.499946,0.397505,0.800254,0.112027,0.282595,0.172016,0.64671,0.637534,0.523757,0.644313,0.544564,0.487756,0.0912755,0.652927,0.919412,0.0285823,0.29387,0.940809,0.430586,0.110501,0.958154,0.19283,0.297424,0.302813,0.175943,0.0593984,0.630405,0.696251,0.488025,0.702758,0.556815,0.476018,0.692552,0.137781,0.0224099,0.735903,0.758441,0.749528,0.521823,0.271326,0.130614,0.977892,0.207656,0.507708,0.897613,0.927809,0.400661,0.264035,0.209616,0.335285,0.757615,0.0191026,0.347584,0.100215,0.0421772,0.168344,0.133779,0.317922,0.743879,0.723272,0.0890974,0.277991,0.943373,0.31214,0.473287,0.0142651,0.884207,0.68452,0.234536,0.40444,0.661555,0.755338,0.129313,0.709376,0.265045,0.444688,0.175951,0.173984,0.807066,0.540081,0.166415,0.564884,0.96608,0.282304,0.363373,0.878129,0.770137,0.858793,0.443687,0.749073,0.891718,0.476908,0.072776,0.720158,0.302034,0.855367,0.898616,0.348405,0.352463,0.319712,0.0529375,0.216729,0.783378,0.811965,0.747418,0.561685,0.21895,0.584755,0.893137,0.853045,0.0985696,0.806996,0.597526,0.264178,0.975252,0.716756,0.805101,0.959916,0.952999,0.0466135,0.612751,0.864961,0.260787,0.85081,0.838754,0.899462,0.557139,0.460047,0.223814,0.0560576,0.643481,0.0780789,0.319955,0.365238,0.0939649,0.160698,0.3677,0.437529,0.723563,0.548023,0.609872,0.711009,0.77514,0.723922,0.873872,0.186651,0.299861,0.843973,0.405204,0.238848,0.952937,0.51282,0.234695,0.504021,0.172033,0.648798,0.00259477,0.791982,0.575064,0.716626,0.307223,0.329881,0.839207,0.68238,0.413381,0.520478,0.112252,0.625936,0.836453,0.259607,0.0987571,0.367467,0.923678,0.0424003,0.872887,0.495461,0.340534,0.248333,0.410493,0.923549,0.601041,0.601857,0.796475,0.920444,0.0603148,0.896808,0.508281,0.807789,0.845237,0.796524,0.443675,0.940827,0.413619,0.325029,0.410381,0.248548,0.755959,0.377594,0.4968,0.808405,0.90533,0.453093,0.732739,0.239833,0.522685,0.136706,0.993588,0.097128,0.294854,0.910701,0.241552,0.328765,0.73586,0.39983,0.878017,0.107903,0.716325,0.922316,0.264734,0.51571,0.166526,0.118303,0.976725,0.292487,0.824918,0.7218,0.76663,0.568081,0.0614547,0.328921,0.639744,0.674922,0.0218871,0.731104,0.756416,0.117327,0.137609,0.832835,0.586384,0.0376891,0.955494,0.0972714,0.486785,0.831113,0.956636,0.05819,0.549871,0.397314,0.0697002,0.522833,0.307125,0.733649,0.941346,0.822474,0.0110837,0.636558,0.913596,0.143577,0.924547,0.729145,0.577432,0.713056,0.38271,0.303161,0.283976,0.896887,0.232055,0.788803,0.85181,0.918223,0.982934,0.391708,0.604878,0.828592,0.553512,0.980765,0.473035,0.146843,0.775375,0.215703,0.607156,0.729733,0.532012,0.428524,0.187135,0.17122,0.662872,0.478862,0.598549,0.563964,0.687767,0.756587,0.330244,0.938323,0.0949071,0.660074,0.225586,0.281924,0.509496,0.0903217,0.861474,0.612857,0.307532,0.0868727,0.41811,0.773464,0.0487438,0.736979,0.374401,0.693333,0.177978,0.298623,0.636295,0.315561,0.032084,0.60893,0.320409,0.33805,0.059686,0.704062,0.484389,0.742873,0.36069,0.622432,0.77519,0.782468,0.528764,0.713737,0.354849,0.404336,0.42099,0.649529,0.624924,0.518461,0.890928,0.385091,0.382564,0.924394,0.702381,0.369252,0.922084,0.993633,0.258658,0.435359,0.491015,0.580926,0.54927,0.79099,0.891982,0.763639,0.904096,0.619483,0.392989,0.427013,0.401304,0.288019,0.882637,0.870717,0.756741,0.96974,0.77093,0.382957,0.493101,0.808034,0.775849,0.144108,0.746744,0.766506,0.9893,0.462108,0.839073,0.322859,0.197424,0.865861,0.870122,0.6298,0.410953,0.698575,0.369865,0.507446,0.349499,0.309412,0.758132,0.776384,0.478184,0.432115,0.624048,0.527559,0.956629,0.79097,0.855742,0.511202,0.777347,0.2664,0.943022,0.766885,0.662201,0.259116,0.587614,0.296918,0.681216,0.814169,0.827087,0.103449,0.58932,0.973273,0.178509,0.946409,0.0603368,0.650708,0.778772,0.994233,0.0341368,0.320408,0.495194,0.492181,0.420315,0.399943,0.657032,0.844948,0.995679,0.942425,0.380446,0.372067,0.0100581,0.85253,0.591287,0.704907,0.962668,0.683609,0.39172,0.922609,0.664906,0.733385,0.219485,0.349141,0.512066,0.285834,0.158897,0.183982,0.391518,0.376473,0.417157,0.499767,0.453652,0.00317645,0.756053,0.660143,0.890191,0.833016,0.179711,0.0458653,0.654495,0.220211,0.811201,0.895973,0.2246,0.715246,0.0485377,0.129164,0.858266,0.600973,0.251437,0.604821,0.068863,0.470836,0.762828,0.469232,0.357199,0.304559,0.759039,0.0203585,0.837348,0.173594,0.103235,0.185701,0.0244609,0.67215,0.852723,0.0708428,0.0676045,0.784313,0.527247,0.139797,0.330368,0.0826475,0.834455,0.0149435,0.0614453,0.894055,0.928393,0.056833,0.601279,0.0341308,0.811594,0.213842,0.758029,0.270433,0.676661,0.249681,0.378776,0.504286,0.992189,0.756859,0.662669,0.816504,0.662048,0.497244,0.540126,0.200556,0.454289,0.776099,0.812991,0.752608,0.328095,0.201707,0.898161,0.858918,0.040644,0.374886,0.528648,0.387818,0.98561,0.66804,0.834138,0.110673,0.697849,0.420419,0.54649,0.61901,0.184515,0.166397,0.43261,0.866822,0.891764,0.688235,0.917605,0.24169,0.443157,0.0422499,0.824013,0.505785,0.493897,0.150376,0.184221,0.580297,0.667653,0.541522,0.253527,0.745524,0.615477,0.776568,0.00665128,0.00987589,0.725664,0.993267,0.953198,0.274284,0.670222,0.26538,0.36344,0.726697,0.680906,0.999474,0.0694251,0.999828,0.242761,0.888132,0.231311,0.651012,0.88353,0.904272,0.199112,0.396325,0.0798078,0.681438,0.931492,0.517951,0.55462,0.328751,0.0907322,0.632431,0.73467,0.502143,0.768415,0.645251,0.408632,0.622593,0.609161,0.124144,0.688672,0.562406,0.059525,0.802411,0.974877,0.777436,0.487626,0.642446,0.474315,0.375291,0.416782,0.272491,0.990751,0.894984,0.463979,0.971357,0.310932,0.561073,0.654849,0.995559,0.68102,0.941466,0.809816,0.404014,0.0643966,0.0337614,0.103647,0.934578,0.199288,0.794061,0.403141,0.596719,0.798281,0.225867,0.737618,0.828447,0.0891163,0.103719,0.973083,0.7374,0.586823,0.764576,0.340464,0.608892,0.0713238,0.214894,0.313338,0.185217,0.84992,0.377562,0.30894,0.277132,0.851217,0.383092,0.558591,0.81192,0.136635,0.923661,0.204651,0.442936,0.930766,0.435595,0.591853,0.769374,0.659194,0.80499,0.0148335,0.980544,0.494743,0.140986,0.290108,0.550757,0.374532,0.530181,0.855003,0.116885,0.428683,0.38198,0.791624,0.823303,0.688407,0.446916,0.0350063,0.548473,0.18481,0.226111,0.0611657,0.3795,0.705114,0.0778193,0.351555,0.39891,0.40697,0.773851,0.882009,0.479542,0.622758,0.921834,0.13396,0.434554,0.410949,0.821155,|0.0565864,0.39449,0.0986384,0.341723,0.157162,0.494107,0.751966,0.46297,0.839866,0.751475,0.634306,0.569578,0.886249,0.724352,0.683671,0.36559,0.405903,0.40694,0.876928,0.343955,0.814641,0.0148225,0.0701962,0.0525129,0.982433,0.830312,0.163421,0.920534,0.622191,0.558112,0.396319,0.142594,0.444051,0.421639,0.435488,0.261006,0.104463,0.197453,0.516692,0.341899,0.251004,0.463003,0.134741,0.300101,0.420156,0.405716,0.546757,0.568271,0.715042,0.899057,0.272811,0.871889,0.782872,0.663127,0.5594,0.546675,0.0594954,0.49549,0.117262,0.348918,0.326827,0.0328041,0.898344,0.674682,0.991278,0.195633,0.590421,0.380263,0.378269,0.535,0.730395,0.503845,0.153589,0.952865,0.752476,0.865133,0.864779,0.566354,0.10529,0.0693455,0.968038,0.157972,0.352585,0.843695,0.417905,0.469117,0.609196,0.541452,0.357358,0.671123,0.775945,0.497141,0.0301807,0.357842,0.81412,0.399868,0.957116,0.407661,0.491776,0.928305,0.0890504,0.95897,0.382634,0.101693,0.670412,0.663483,0.236902,0.7802,0.922851,0.0962877,0.81431,0.83564,0.823312,0.20113,0.369385,0.258486,0.758354,0.672334,0.145074,0.658084,0.98865,0.507114,0.181045,0.440654,0.525446,0.239985,0.754223,0.447465,0.429122,0.937199,0.922016,0.756473,0.547988,0.661919,0.69905,0.442632,0.837156,0.261464,0.262707,0.481987,0.0491638,0.485559,0.2066,0.262368,0.763879,0.861716,0.0278779,0.449882,0.998032,0.799537,0.418795,0.00467372,0.405945,0.484243,0.492997,0.383618,0.630773,0.747938,0.0966976,0.873017,0.576277,0.949756,0.512872,0.88275,0.755087,0.848904,0.175747,0.971986,0.0190272,0.255962,0.426481,0.778715,0.765793,0.191715,0.623061,0.470797,0.158381,0.95321,0.604279,0.26536,0.440803,0.027666,0.594665,0.558531,0.681895,0.433781,0.601846,0.376534,0.262028,0.24306,0.654041,0.609613,0.323961,0.440823,0.238757,0.750198,0.190374,0.223464,0.691583,0.339747,0.911274,0.996756,0.716397,0.450626,0.760915,0.428128,0.358632,0.834017,0.464605,0.567987,0.268651,0.907498,0.611369,0.611589,0.269604,0.287433,0.888602,0.00291443,0.792291,0.985926,0.192614,0.855226,0.983051,0.501579,0.140627,0.828626,0.707118,0.103066,0.370404,0.248254,0.483859,0.202781,0.234413,0.948226,0.727394,0.962465,0.280677,0.743138,0.518734,0.938754,0.455226,0.945407,0.870831,0.923171,0.869155,0.112221,0.681478,0.8963,0.0377691,0.00599593,0.57092,0.0274357,0.884437,0.604733,0.821396,0.291779,0.231167,0.0965611,0.44054,0.613383,0.44698,0.224679,0.757115,0.930957,0.340069,0.400812,0.809051,0.576938,0.278676,0.944438,0.300326,0.0360126,0.0244659,0.0142913,0.23145,0.0788424,0.853816,0.816864,0.609343,0.740321,0.567557,0.62133,0.472212,0.674162,0.652335,0.727397,0.688318,0.65023,0.944947,0.764801,0.766306,0.425426,0.709056,0.366711,0.421235,0.745514,0.408898,0.0527136,0.760223,0.542108,0.43154,0.700262,0.0798342,0.972247,0.975975,0.149956,0.253753,0.371657,0.739224,0.379626,0.819216,0.927597,0.206029,0.654741,0.803804,0.950263,0.955271,0.118564,0.0993024,0.732702,0.273776,0.876659,0.987531,0.569538,0.275298,0.688915,0.873068,0.434254,0.116718,0.749144,0.797423,0.706342,0.232766,0.419441,0.530998,0.00966984,0.0748401,0.22461,0.866316,0.515797,0.117968,0.881746,0.985694,0.267401,0.773668,0.581491,0.962899,0.475544,0.469857,0.631934,0.144257,0.000813007,0.862141,0.150207,0.780496,0.18908,0.0463449,0.0600938,0.181417,0.931204,0.705601,0.751557,0.525633,0.896803,0.543328,0.679915,0.146604,0.33773,0.816983,0.403468,0.0932759,0.0436437,0.807458,0.160977,0.159434,0.427105,0.916725,0.614813,0.376337,0.871597,0.740003,0.706198,0.902207,0.780147,0.565979,0.90482,0.858204,0.570252,0.377792,0.374618,0.330418,0.0345439,0.844312,0.548747,0.406443,0.632043,0.887259,0.693459,0.053192,0.336704,0.287317,0.355541,0.0101703,0.722202,0.405068,0.245727,0.355892,0.484152,0.99082,0.643499,0.626396,0.764859,0.70315,0.0483768,0.971382,0.182054,0.911217,0.763838,0.539496,0.94783,0.600185,0.667927,0.422432,0.107793,0.116683,0.975027,0.465536,0.873939,0.559092,0.341761,0.660249,0.183794,0.420367,0.552219,0.978237,0.763917,0.636087,0.53508,0.795787,0.493683,0.417951,0.217044,0.419042,0.624696,0.216542,0.564794,0.874841,0.168965,0.863975,0.338094,0.813465,0.700452,0.959769,0.688963,0.0315161,0.665906,0.353967,0.913464,0.357488,0.499453,0.979253,0.561615,0.679478,0.860367,0.842393,0.696054,0.814062,0.202188,0.637255,0.642555,0.799556,0.360099,0.414117,0.119797,0.31927,0.863343,0.959969,0.921608,0.332102,0.16929,0.657575,0.666562,0.534417,0.243285,0.114304,0.978333,0.377111,0.713633,0.34541,0.428232,0.378601,0.413078,0.821638,0.223496,0.446415,0.234773,0.571156,0.3943,0.580397,0.22388,0.702961,0.763595,0.0356983,0.957647,0.164692,0.759504,0.918948,0.993281,0.664245,0.751795,0.800148,0.603022,0.459885,0.378748,0.459254,0.05898,0.766363,0.452666,0.511405,0.250133,0.638242,0.381888,0.688311,0.104138,0.357107,0.963755,0.548616,0.771757,0.860883,0.12384,0.831763,0.900125,0.536567,0.0933313,0.560972,0.732262,0.855918,0.527697,0.021413,0.407133,0.418641,0.822901,0.0752916,0.049231,0.262858,0.676975,0.200302,0.0378323,0.697632,0.929065,0.862146,0.745714,0.552892,0.387425,0.320743,0.935781,0.338853,0.279538,0.890159,0.785874,0.538616,0.255835,0.919287,0.270422,0.991926,0.897336,0.191985,0.514995,0.239717,0.524625,0.953312,0.757191,0.583928,0.802776,0.0367373,0.688431,0.150872,0.413461,0.716445,0.661135,0.881856,0.658072,0.354888,0.818263,0.342437,0.440078,0.857309,0.70408,0.884227,0.0640908,0.444689,0.0750673,0.128892,0.520274,0.0271174,0.285702,0.798675,0.0191542,0.802423,0.00213695,0.999559,0.611032,0.162332,0.279028,0.923602,0.80395,0.172197,0.227893,0.778877,0.418935,0.325114,0.586181,0.422446,0.376748,0.581271,0.344176,0.979208,0.908943,0.367071,0.85323,0.339915,0.307202,0.0241499,0.415965,0.325594,0.408857,0.466192,0.584269,0.87524,0.70182,0.61112,0.65898,0.43063,0.960696,0.485368,0.562915,0.625223,0.257577,0.707354,0.334037,0.404305,0.287975,0.900117,0.524744,0.810987,0.608811,0.0043962,0.108447,0.121118,0.543645,0.406137,0.00967693,0.750366,0.985086,0.649853,0.962451,0.0298285,0.999876,0.888244,0.0659884,0.506536,0.196454,0.159909,0.334356,0.71134,0.445591,0.730218,0.37878,0.380284,0.973799,0.0494798,0.0234563,0.533598,0.44838,0.296799,0.303946,0.205828,0.72895,0.487215,0.194869,0.538154,0.723762,0.865971,0.88193,0.264842,0.810959,0.262846,0.825958,0.849363,0.300428,0.735252,0.241129,0.609614,0.989604,0.1818,0.342493,0.200685,0.145185,0.0543454,0.20314,0.1504,0.249626,0.847758,0.697798,0.841363,0.881964,0.272748,0.287795,0.385404,0.652764,0.101309,0.935849,0.0025019,0.604743,0.356588,0.82385,0.228825,0.441526,0.398642,0.781309,0.747261,0.934271,0.962931,0.365415,0.141484,0.170702,0.339663,0.503387,0.526434,0.62938,0.283059,0.380066,0.858657,0.287918,0.866448,0.568199,0.113355,0.928625,0.27913,0.480415,0.484618,0.828437,0.903706,0.568839,0.958827,0.180822,0.387125,0.492584,0.0563834,0.396489,0.76178,0.384285,0.368751,0.794301,0.332937,0.452938,0.732382,0.431643,0.773071,0.63383,0.729917,0.0292714,0.062498,0.938034,0.849586,0.887822,0.750201,0.316636,0.14909,0.134909,0.0915254,0.890314,0.819079,0.164863,0.00010705,0.176081,0.549484,0.348028,0.287185,0.580281,0.288429,0.108369,0.356101,0.629541,0.935072,0.465402,0.27719,0.906592,0.931332,0.196963,0.544073,0.542785,0.952323,0.712925,0.191374,0.82873,0.382993,0.0387748,0.813878,0.356881,0.154491,0.712401,0.125242,0.718169,0.698563,0.456053,0.51429,0.378698,0.802541,0.523114,0.54651,0.0954385,0.407832,0.406763,0.0746973,0.0382568,0.426635,0.838545,0.595623,0.231004,0.693918,0.991036,0.0372653,0.831429,0.183987,0.779518,0.393479,0.0397215,0.188959,0.997738,0.341663,0.514351,0.468925,0.12372,0.970543,0.421898,0.23237,0.84862,0.064742,0.334128,0.446324,0.666436,0.181292,0.225257,0.174845,0.4341,0.185482,0.611623,0.574929,0.715761,0.545027,0.214491,0.77933,0.404665,0.881386,0.139737,0.858339,0.315057,0.328776,0.893369,0.177312,0.0793678,0.654588,0.174513,0.985307,0.319458,0.102438,0.355902,0.742033,0.214907,0.760348,0.131061,0.427169,0.315536,0.349178,0.109058,0.291677,0.639694,0.433349,0.587032,0.82395,0.869034,0.655017,0.788559,0.716856,0.129245,0.795721,0.0864238,0.969902,0.850314,0.314225,0.65681,0.361961,0.67045,0.755062,0.932323,0.276371,0.600835,0.225977,0.76079,0.524892,0.349931,0.629879,0.21621,0.467724,0.00796258,0.591017,0.911382,0.260466,0.559435,0.051875,0.596261,0.239381,0.809706,0.547306,0.895622,0.739149,0.620133,0.538737,0.382291,0.319274,0.049911,0.55788,0.157784,0.290303,0.338818,0.496279,0.975883,0.98697,0.342513,0.407191,0.32858,0.765444,0.544794,0.657252,0.311786,0.107239,0.992701,0.644592,0.839899,0.0245322,0.856461,0.954911,0.0449,0.552593,0.64914,0.87936,0.181586,0.793764,0.185856,0.247132,0.189051,0.520213,0.0492337,0.910834,0.605851,0.626648,0.0678541,0.859383,0.315857,0.478746,0.521263,0.880847,0.281232,0.17689,0.680836,0.390188,0.484415,0.674825,0.46037,0.354715,0.116239,0.584686,0.101601,0.462534,0.0289207,0.156209,0.933934,0.534294,0.797014,0.376582,0.521176,0.218231,0.645826,0.340818,0.991386,0.608819,0.270374,0.192617,0.0946724,0.433551,0.845492,0.0651624,0.607905,0.516194,0.898736,0.833995,0.411178,0.948076,0.695825,|0.695831,0.345657,0.111541,0.983354,0.592116,0.287774,0.279201,0.503141,0.0934358,0.964273,0.819585,0.933874,0.49679,0.75368,0.710618,0.0715878,0.875651,0.560091,0.387694,0.307488,0.106054,0.443329,0.649676,0.836509,0.299295,0.879843,0.902846,0.282397,0.979038,0.36384,0.869629,0.573687,0.458252,0.800853,0.011792,0.0758212,0.117916,0.242913,0.498048,0.58326,0.261057,0.697518,0.11667,0.993122,0.108987,0.64061,0.842041,0.987247,0.672194,0.426468,0.951534,0.407778,0.227271,0.441495,0.698655,0.307785,0.630877,0.0231376,0.483995,0.643913,0.06954,0.798601,0.590462,0.583272,0.400913,0.292959,0.650343,0.556844,0.667007,0.910212,0.701553,0.645336,0.651339,0.95569,0.746861,0.31527,0.63127,0.458746,0.996206,0.79753,0.642637,0.0525507,0.751201,0.580048,0.990767,0.0821003,0.552958,0.759367,0.0242475,0.490892,0.291781,0.684679,0.308092,0.00717199,0.151948,0.572706,0.917068,0.830263,0.776479,0.595869,0.0807682,0.923494,0.901387,0.648218,0.511768,0.0176889,0.0355272,0.857107,0.545721,0.827736,0.866787,0.136738,0.0294106,0.779304,0.536947,0.0323022,0.851752,0.103485,0.486148,0.197139,0.0260892,0.74372,0.8179,0.0395871,0.968093,0.666964,0.183226,0.960145,0.615276,0.613597,0.771018,0.523868,0.727562,0.805755,0.801395,0.6431,0.966978,0.0638274,0.695617,0.347132,0.809366,0.460922,0.59736,0.918559,0.130859,0.287111,0.708975,0.24492,0.642956,0.409625,0.572959,0.496159,0.916004,0.912895,0.536434,0.976938,0.239259,0.981532,0.724256,0.563958,0.928845,0.0354632,0.418499,0.979137,0.56424,0.244468,0.375936,0.0816938,0.129638,0.377709,0.104485,0.989169,0.694518,0.878654,0.47585,0.674239,0.704591,0.0676268,0.503434,0.807602,0.897122,0.203163,0.688652,0.599014,0.600891,0.940851,0.107999,0.0354737,0.445709,0.00928324,0.548072,0.353013,0.556336,0.600683,0.569216,0.099556,0.732706,0.354574,0.419142,0.683058,0.58032,0.154047,0.0491831,0.0694988,0.315883,0.0574934,0.629316,0.536902,0.625797,0.100769,0.241032,0.508652,0.731166,0.251873,0.76375,0.58017,0.794941,0.202613,0.372274,0.180305,0.486846,0.279278,0.0084123,0.0273955,0.124988,0.843031,0.784416,0.751264,0.805099,0.957711,0.464536,0.54269,0.457752,0.897938,0.749653,0.621519,0.666579,0.385408,0.0603605,0.533406,0.73594,0.604859,0.97756,0.585258,0.582779,0.403909,0.624059,0.300004,0.757653,0.323489,0.157406,0.268438,0.0662556,0.768562,0.607491,0.141948,0.700436,0.334952,0.683854,0.908194,0.140485,0.332165,0.833409,0.837138,0.0522916,0.310468,0.192161,0.181061,0.729602,0.649528,0.39364,0.677778,0.0921121,0.00345922,0.696912,0.571273,0.75843,0.398339,0.104689,0.0398644,0.927458,0.45603,0.401538,0.604475,0.598187,0.381226,0.791959,0.104695,0.0151387,0.306583,0.412987,0.92157,0.280801,0.604953,0.510517,0.47699,0.286133,0.626032,0.278994,0.783109,0.538171,0.610169,0.575118,0.111291,0.898812,0.04166,0.904631,0.524079,0.16822,0.652212,0.371607,0.181261,0.0204254,0.53777,0.434449,0.278565,0.756056,0.867004,0.213037,0.602407,0.452632,0.746918,0.438589,0.448949,0.00965399,0.907274,0.199676,0.430779,0.0127919,0.913644,0.630192,0.429063,0.866007,0.252618,0.544963,0.0851299,0.604615,0.110102,0.489973,0.873104,0.168977,0.226787,0.631643,0.163614,0.665865,0.470163,0.634318,0.846935,0.874848,0.78229,0.0789643,0.179757,0.846929,0.854902,0.17599,0.937224,0.49033,0.330123,0.43745,0.718956,0.537038,0.355969,0.889316,0.912217,0.870025,0.0189737,0.476971,0.000635386,0.215465,0.15471,0.224776,0.0211837,0.624678,0.872882,0.456935,0.441674,0.154515,0.776536,0.297735,0.522153,0.43871,0.0853498,0.788678,0.916171,0.15187,0.497903,0.440076,0.475439,0.700891,0.680916,0.259173,0.140407,0.209409,0.525057,0.476395,0.31842,0.0664398,0.732448,0.76044,0.193447,0.234751,0.163333,0.997504,0.992262,0.917867,0.505106,0.281117,0.306876,0.195972,0.00100011,0.767185,0.383608,0.952253,0.590587,0.548895,0.640358,0.347648,0.443167,0.590919,0.317463,0.532827,0.0936798,0.501085,0.900054,0.292667,0.26756,0.389421,0.426557,0.72233,0.856153,0.858357,0.197762,0.927288,0.831251,0.824931,0.20116,0.908269,0.633357,0.593934,0.398682,0.427869,0.96188,0.70368,0.145499,0.418287,0.529695,0.47635,0.432199,0.48777,0.567976,0.790149,0.96824,0.811909,0.0781399,0.139848,0.473447,0.924917,0.0497108,0.81205,0.853078,0.72911,0.416037,0.899657,0.0307056,0.420837,0.544049,0.563341,0.690374,0.864821,0.457924,0.911009,0.85068,0.828349,0.532732,0.137074,0.373383,0.398174,0.60819,0.984423,0.640755,0.962248,0.448966,0.659135,0.879753,0.214859,0.174651,0.103521,0.921096,0.762182,0.693704,0.398193,0.0102894,0.115072,0.595454,0.037355,0.0216552,0.205737,0.679809,0.164532,0.483639,0.505054,0.169184,0.253893,0.81279,0.787467,0.305343,0.183833,0.936342,0.628023,0.853108,0.268525,0.236401,0.102509,0.848364,0.248044,0.771055,0.384036,0.405251,0.0189978,0.195671,0.17414,0.259367,0.0547327,0.862854,0.186593,0.873444,0.945906,0.982068,0.548206,0.640367,0.606528,0.210325,0.288011,0.390416,0.435439,0.492136,0.418073,0.70515,0.249019,0.131922,0.777374,0.214194,0.489248,0.74451,0.5651,0.48742,0.865934,0.791725,0.221615,0.0433559,0.325462,0.653553,0.0589876,0.519676,0.00291413,0.14604,0.871522,0.0944284,0.134752,0.180282,0.947827,0.815626,0.345505,0.398,0.79743,0.242913,0.786322,0.997641,0.936407,0.248326,0.465293,0.465261,0.0341918,0.597688,0.97183,0.469001,0.393468,0.516353,0.156481,0.519499,0.49085,0.751562,0.834261,0.730033,0.544032,0.295101,0.892476,0.682377,0.58261,0.422334,0.249329,0.643123,0.248402,0.0495793,0.365748,0.836756,0.00230265,0.396928,0.000580907,0.673467,0.953268,0.62139,0.750938,0.648456,0.0602651,0.0992849,0.972823,0.774674,0.928799,0.386984,0.829536,0.0856889,0.793614,0.329393,0.200916,0.565806,0.808539,0.76831,0.0371407,0.395909,0.226338,0.639219,0.822917,0.0702528,0.724006,0.964406,0.238492,0.258807,0.884223,0.602079,0.46737,0.304572,0.182975,0.644036,0.980635,0.444104,0.638846,0.0655129,0.965331,0.383884,0.0593978,0.102378,0.81451,0.816681,0.805419,0.15241,0.299527,0.597249,0.726001,0.228393,0.159253,0.125192,0.753125,0.546348,0.468917,0.317471,0.138483,0.254605,0.619504,0.679077,0.389504,0.240598,0.358002,0.0831494,0.0302961,0.770629,0.355593,0.859278,0.871052,0.51627,0.174038,0.534077,0.445861,0.89742,0.174066,0.983945,0.0911267,0.894022,0.28272,0.371525,0.55096,0.587454,0.169996,0.00892848,0.389653,0.0452568,0.473745,0.617495,0.932826,0.242916,0.81414,0.270307,0.81936,0.896809,0.521886,0.739267,0.542563,0.986219,0.799915,0.919238,0.89697,0.928441,0.0387303,0.604043,0.726649,0.037195,0.426651,0.785907,0.0409347,0.609415,0.720788,0.223329,0.968937,0.407751,0.740962,0.700814,0.750008,0.116982,0.447071,0.0583162,0.256227,0.904833,0.109424,0.663649,0.192359,0.137163,0.147651,0.96905,0.481111,0.292037,0.0567668,0.166592,0.214977,0.818194,0.443429,0.109517,0.559337,0.163858,0.303763,0.64297,0.346518,0.334083,0.085706,0.855566,0.96947,0.660403,0.440425,0.855812,0.271072,0.661353,0.717233,0.876746,0.848423,0.641155,0.978898,0.741084,0.495282,0.896915,0.601241,0.659361,0.522548,0.710023,0.830459,0.635161,0.854473,0.889068,0.542502,0.265076,0.0233963,0.50835,0.245137,0.395984,0.854962,0.962616,0.385896,0.474546,0.639022,0.136454,0.249166,0.344368,0.889664,0.157426,0.857906,0.348619,0.171585,0.895663,0.719464,0.226247,0.940731,0.144174,0.619316,0.216367,0.86285,0.586042,0.356839,0.648772,0.353318,0.456842,0.00519437,0.320315,0.383481,0.511985,0.279255,0.464172,0.725259,0.69675,0.327205,0.501653,0.89451,0.283825,0.246838,0.5679,0.0332981,0.796552,0.612326,0.312706,0.964947,0.14156,0.316592,0.995759,0.360882,0.71181,0.164154,0.950651,0.804728,0.649635,0.112675,0.989686,0.799057,0.276089,0.110649,0.6561,0.338828,0.126045,0.74942,0.438967,0.333297,0.104203,0.0532552,0.006859,0.548755,0.00075382,0.746557,0.50589,0.767873,0.326704,0.905298,0.97454,0.8918,0.114305,0.226561,0.256863,0.647864,0.778997,0.791467,0.899919,0.20196,0.109748,0.273692,0.559411,0.898017,0.642658,0.285256,0.0889927,0.653495,0.00211024,0.0306099,0.829359,0.387011,0.229944,0.706165,0.600368,0.344799,0.288886,0.747617,0.534281,0.164636,0.796013,0.452964,0.700494,0.740097,0.907725,0.657062,0.196392,0.985572,0.718709,0.422541,0.443229,0.321176,0.451291,0.996125,0.385968,0.0947215,0.862965,0.510849,0.413413,0.223273,0.381642,0.393396,0.42964,0.626294,0.0967868,0.146757,0.72397,0.916166,0.776699,0.242795,0.555235,0.253021,0.419303,0.58498,0.560781,0.0402515,0.455187,0.406298,0.711149,0.256281,0.56821,0.996295,0.0403369,0.383093,0.594581,0.290348,0.875731,0.886187,0.867451,0.148163,0.0863613,0.762422,0.934146,0.051255,0.74748,0.296376,0.813886,0.96959,0.973595,0.226023,0.765211,0.193063,0.668025,0.682291,0.0878751,0.182468,0.875211,0.133514,0.0221545,0.256929,0.225708,0.539179,0.253097,0.204417,0.249609,0.169768,0.477866,0.97707,0.679155,0.967551,0.984125,0.958318,0.442979,0.450708,0.0764521,0.770734,0.711486,0.693877,0.348791,0.996948,0.177622,0.854854,0.335295,0.292927,0.653956,0.279657,0.95262,0.896158,0.950859,0.41639,0.531564,0.572845,0.703557,0.986369,0.629548,0.555395,0.486076,0.479745,0.495208,0.456665,0.702667,0.314987,0.686362,0.743638,0.837632,0.27466,0.695144,0.843247,0.151687,0.544765,0.687811,0.191644,0.154476,|0.976563,0.603598,0.627451,0.951617,0.952755,0.155163,0.743433,0.707871,0.726592,0.504852,0.755274,0.187032,0.240751,0.803119,0.278813,0.697862,0.707944,0.814555,0.647924,0.00382185,0.0257293,0.436949,0.90869,0.0110328,0.204018,0.221332,0.79322,0.495238,0.117831,0.879746,0.377632,0.522229,0.228404,0.524352,0.408461,0.194876,0.133727,0.647938,0.00644737,0.954501,0.785964,0.631906,0.0797228,0.144223,0.314775,0.247344,0.840242,0.919829,0.448117,0.184542,0.713729,0.636037,0.721078,0.686644,0.756945,0.0122069,0.168009,0.790851,0.366347,0.647178,0.804066,0.521371,0.47153,0.52904,0.725448,0.0553321,0.71505,0.210147,0.728342,0.273349,0.111216,0.0869486,0.401203,0.451016,0.115448,0.763077,0.748481,0.916972,0.870928,0.106805,0.728293,0.807051,0.125329,0.815626,0.299551,0.800932,0.610697,0.416077,0.231285,0.231495,0.24876,0.568304,0.31059,0.556504,0.125087,0.964658,0.0367292,0.964772,0.0685219,0.779008,0.116373,0.230306,0.020371,0.99181,0.371492,0.77964,0.542903,0.422986,0.615687,0.839967,0.977925,0.173115,0.746185,0.572144,0.905175,0.277016,0.45554,0.81487,0.528328,0.721758,0.959848,0.493006,0.30931,0.894795,0.554893,0.989442,0.616983,0.303008,0.644089,0.456433,0.642641,0.431229,0.0956132,0.566286,0.761395,0.173531,0.220066,0.936187,0.0867912,0.478595,0.0264633,0.647877,0.724343,0.716569,0.396017,0.659106,0.239252,0.785183,0.48274,0.972223,0.946209,0.93736,0.840959,0.968307,0.28912,0.981566,0.0324975,0.841586,0.182692,0.0321292,0.657778,0.144283,0.0536479,0.803948,0.778276,0.430807,0.743626,0.913328,0.372725,0.414947,0.387379,0.984978,0.344923,0.202982,0.0462636,0.674367,0.639433,0.676051,0.200326,0.0494639,0.618539,0.244922,0.687863,0.643706,0.0145559,0.847192,0.870171,0.190295,0.0725866,0.0869714,0.40146,0.553436,0.556207,0.546124,0.718211,0.499711,0.114184,0.499591,0.625031,0.16298,0.700347,0.496782,0.119979,0.885328,0.643967,0.720625,0.0626706,0.819756,0.790744,0.917616,0.997106,0.809032,0.75229,0.317243,0.251014,0.197831,0.439103,0.295699,0.147614,0.760989,0.20167,0.549426,0.435233,0.273508,0.764196,0.986311,0.630568,0.262622,0.67678,0.653186,0.30567,0.706593,0.635938,0.371146,0.867841,0.946378,0.999307,0.448967,0.965766,0.270957,0.145709,0.578435,0.303355,0.953854,0.771322,0.655676,0.743191,0.096077,0.647314,0.680302,0.579869,0.485571,0.477466,0.557162,0.483346,0.575353,0.630498,0.927154,0.0929036,0.854512,0.218356,0.727372,0.593587,0.971134,0.283344,0.263249,0.428913,0.17113,0.66986,0.472715,0.155808,0.236607,0.245196,0.409547,0.201087,0.177079,0.0693514,0.0604246,0.697092,0.827039,0.272529,0.700742,0.130518,0.330053,0.0198768,0.749305,0.741366,0.459734,0.56995,0.420039,0.0973362,0.127367,0.802785,0.761096,0.580023,0.918705,0.668814,0.246089,0.698334,0.19875,0.27011,0.437099,0.606907,0.950108,0.584269,0.407583,0.306346,0.687882,0.191948,0.525659,0.0433287,0.326949,0.147383,0.214321,0.547746,0.181601,0.989136,0.0299494,0.959551,0.580938,0.745149,0.961501,0.743036,0.384641,0.501453,0.930416,0.936259,0.827194,0.773441,0.618516,0.498614,0.449246,0.0142345,0.52584,0.291803,0.521935,0.499289,0.581584,0.657621,0.071214,0.223672,0.640248,0.949661,0.597488,0.35879,0.266719,0.0151896,0.945627,0.579435,0.475823,0.868856,0.25758,0.376405,0.284077,0.0545743,0.560836,0.303388,0.595774,0.553422,0.881732,0.115774,0.0835165,0.515901,0.166049,0.303988,0.388909,0.402182,0.707799,0.390176,0.0493697,0.569243,0.0359598,0.983787,0.819749,0.500249,0.608434,0.111526,0.0837653,0.904874,0.838057,0.499083,0.0341469,0.955164,0.971336,0.338076,0.554974,0.271613,0.102086,0.675186,0.339172,0.135203,0.425069,0.5135,0.690547,0.726006,0.740209,0.463419,0.687195,0.634863,0.912914,0.904292,0.610118,0.218628,0.186351,0.944961,0.649557,0.755413,0.300952,0.491678,0.162868,0.942955,0.898794,0.373236,0.58018,0.32998,0.494281,0.428794,0.127893,0.769914,0.20901,0.626543,0.728539,0.983589,0.760961,0.725369,0.849989,0.589994,0.0355844,0.720314,0.119888,0.373532,0.415943,0.801535,0.00862449,0.739574,0.338353,0.417017,0.551977,0.791565,0.315593,0.549495,0.884397,0.310858,0.281066,0.867019,0.356622,0.783847,0.675417,0.784536,0.225495,0.0211449,0.252903,0.893997,0.228303,0.964742,0.312461,0.516706,0.727584,0.885264,0.141271,0.505631,0.19554,0.684221,0.353941,0.855192,0.907176,0.266104,0.691828,0.66801,0.375101,0.979175,0.879558,0.436152,0.0214099,0.0103352,0.850691,0.700911,0.379971,0.724821,0.652108,0.467063,0.888899,0.11956,0.33114,0.675142,0.344919,0.796718,0.446573,0.7784,0.429451,0.44641,0.500356,0.635279,0.223244,0.836903,0.893891,0.795155,0.933506,0.947074,0.756394,0.190022,0.448871,0.189864,0.0363227,0.309484,0.267089,0.550036,0.965973,0.947279,0.170725,0.481421,0.0985972,0.322233,0.140644,0.780487,0.534797,0.345442,0.00989968,0.765748,0.690634,0.218336,0.349421,0.520182,0.204793,0.47395,0.820478,0.190664,0.69769,0.802911,0.356393,0.0412072,0.832471,0.995283,0.604649,0.274904,0.155751,0.19154,0.778879,0.836769,0.575632,0.464701,0.950875,0.640778,0.0419911,0.960809,0.435839,0.0335745,0.953607,0.319521,0.135902,0.639898,0.791192,0.906483,0.488677,0.99648,0.708423,0.280232,0.391293,0.489378,0.141778,0.516618,0.656605,0.587072,0.3211,0.257205,0.839579,0.112198,0.23087,0.840001,0.90986,0.705125,0.385665,0.763523,0.459806,0.431958,0.192266,0.156165,0.0607525,0.62781,0.201173,0.347619,0.87698,0.217287,0.0670598,0.119104,0.452778,0.494815,0.169885,0.931488,0.311124,0.589437,0.831361,0.853034,0.0680285,0.399632,0.464444,0.721619,0.604864,0.691434,0.475687,0.853816,0.411574,0.474406,0.0835841,0.0916204,0.343758,0.861864,0.520496,0.834958,0.477122,0.439242,0.785205,0.706204,0.28309,0.171375,0.179887,0.00399965,0.855512,0.658322,0.00901121,0.5671,0.932394,0.525515,0.804213,0.475836,0.509172,0.423223,0.374044,0.0911482,0.74326,0.948114,0.437783,0.900458,0.915656,0.335402,0.697719,0.177387,0.0539655,0.411352,0.621991,0.919294,0.637833,0.760563,0.0518973,0.959796,0.0961801,0.972689,0.103228,0.516746,0.556158,0.617969,0.19272,0.202396,0.856057,0.816073,0.0388325,0.000718236,0.668266,0.426527,0.33949,0.283571,0.561397,0.608155,0.435632,0.11101,0.526458,0.680666,0.7756,0.34311,0.582313,0.35234,0.177491,0.967315,0.464698,0.68012,0.0254651,0.720977,0.0838569,0.100653,0.204735,0.671098,0.413952,0.0954639,0.504422,0.744871,0.158041,0.0506512,0.642166,0.688955,0.786535,0.832401,0.702518,0.0689389,0.240624,0.539705,0.070299,0.630461,0.924784,0.0379165,0.21847,0.247951,0.774204,0.710632,0.96136,0.325177,0.344568,0.696866,0.951577,0.179046,0.288804,0.965925,0.771542,0.126185,0.142788,0.960287,0.340356,0.881932,0.662159,0.405555,0.580642,0.0240916,0.512778,0.104253,0.573175,0.401855,0.497494,0.491338,0.729134,0.917746,0.0129459,0.681957,0.332199,0.188438,0.425789,0.0127261,0.515444,0.858537,0.0909519,0.496591,0.902915,0.790804,0.841875,0.887673,0.208546,0.759702,0.263098,0.690246,0.697113,0.853448,0.293298,0.311198,0.00564617,0.541402,0.629736,0.822468,0.500571,0.900044,0.807324,0.200444,0.800018,0.434316,0.157964,0.694468,0.0504821,0.494745,0.809521,0.167681,0.732361,0.628646,0.524669,0.575837,0.0393002,0.533525,0.714661,0.320191,0.536251,0.969973,0.0929732,0.699894,0.305251,0.806591,0.248949,0.055755,0.0692264,0.164192,0.39275,0.564752,0.793442,0.215637,0.43833,0.460844,0.342507,0.577326,0.930802,0.874174,0.961234,0.872314,0.657147,0.791734,0.509482,0.883749,0.218779,0.190093,0.476676,0.129408,0.644695,0.64583,0.409492,0.593445,0.862064,0.376844,0.671943,0.234349,0.054608,0.0228467,0.663558,0.993569,0.333765,0.107729,0.950131,0.226221,0.425995,0.0592819,0.623415,0.648952,0.947054,0.0478016,0.690941,0.386595,0.0892488,0.0957697,0.959118,0.754321,0.509607,0.523967,0.793742,0.135452,0.384465,0.949058,0.179581,0.212726,0.209143,0.838979,0.231984,0.50767,0.565448,0.0728852,0.684922,0.2922,0.985074,0.713346,0.947028,0.709846,0.627582,0.754937,0.432645,0.08255,0.304291,0.810953,0.387788,0.590559,0.187277,0.848512,0.85224,0.00452721,0.152355,0.248162,0.558797,0.978838,0.887664,0.820827,0.304457,0.822184,0.953901,0.825455,0.125531,0.709768,0.374207,0.816997,0.209758,0.0529627,0.669679,0.457913,0.170912,0.731666,0.454687,0.1312,0.584359,0.925668,0.782501,0.800252,0.862033,0.518039,0.370599,0.586954,0.420562,0.850137,0.55282,0.847333,0.779165,0.194901,0.402617,0.825236,0.706229,0.841538,0.313681,0.170055,0.750493,0.0437407,0.643358,0.56141,0.827749,0.393467,0.590951,0.168843,0.655699,0.390269,0.486272,0.591176,0.0903239,0.999438,0.178696,0.639321,0.324105,0.45027,0.704227,0.107056,0.115985,0.722379,0.498239,0.10452,0.590553,0.0465071,0.0728669,0.00705171,0.0198027,0.87138,0.361114,0.318407,0.411488,0.377316,0.0362846,0.262442,0.891043,0.574752,0.230926,0.43771,0.532697,0.475338,0.594687,0.491655,0.298695,0.923031,0.797705,0.88655,0.83912,0.764646,0.85471,0.499941,0.940826,0.695539,0.886847,0.106035,0.166317,0.249248,0.562892,0.97232,0.605548,0.575722,0.762794,0.744992,0.934202,0.739591,0.88431,0.718546,0.0444757,0.125797,0.608067,0.907493,0.572785,0.564675,0.883029,0.887304,0.9744,0.13404,0.951647,0.889263,0.758417,0.108016,0.481758,0.161836,0.730061,0.920049,0.377223,0.374669,0.149787,0.497778,0.210427,0.631916,0.0510256,|0.577929,0.884498,0.76755,0.804719,0.873146,0.445195,0.325152,0.987978,0.0764405,0.755307,0.595516,0.070848,0.668147,0.00560129,0.339654,0.169885,0.86648,0.259654,0.672231,0.834821,0.639287,0.208435,0.0646604,0.334712,0.868373,0.619336,0.00619668,0.42145,0.914506,0.732397,0.65048,0.470459,0.874127,0.187348,0.709075,0.553898,0.334155,0.5019,0.899006,0.982244,0.784994,0.387604,0.244923,0.499149,0.385557,0.0645451,0.109315,0.595862,0.858225,0.936072,0.115233,0.700024,0.727971,0.0550487,0.213123,0.0223653,0.256938,0.672261,0.644606,0.927089,0.993234,0.150506,0.701627,0.441281,0.740809,0.568288,0.603118,0.752482,0.578716,0.178723,0.239271,0.685773,0.0374171,0.47736,0.829137,0.952234,0.439639,0.21309,0.972828,0.323641,0.886737,0.799417,0.764409,0.496589,0.39521,0.0527516,0.862139,0.450423,0.564565,0.382499,0.31295,0.476408,0.576292,0.863613,0.65163,0.340846,0.899813,0.607408,0.679936,0.480569,0.492372,0.0862802,0.0492409,0.971587,0.209149,0.48714,0.769155,0.7149,0.6042,0.675457,0.438076,0.108625,0.933245,0.419473,0.581218,0.289464,0.142073,0.386546,0.513895,0.897994,0.406578,0.15911,0.741759,0.0238935,0.761642,0.0866746,0.375522,0.662668,0.64454,0.0663757,0.988467,0.977945,0.409032,0.600289,0.592377,0.0113051,0.835679,0.27717,0.742364,0.483655,0.344047,0.967453,0.0155571,0.957633,0.64053,0.892112,0.762541,0.204467,0.302335,0.262557,0.310158,0.281585,0.721484,0.25785,0.420504,0.929845,0.953054,0.342047,0.680376,0.0225013,0.0654214,0.584407,0.906018,0.652012,0.980344,0.838276,0.791799,0.0752584,0.760654,0.154966,0.0471341,0.60768,0.581787,0.274557,0.936618,0.657644,0.91342,0.751498,0.0539327,0.197203,0.350417,0.163006,0.324575,0.794126,0.616194,0.0109939,0.687409,0.72441,0.336026,0.830915,0.237741,0.453255,0.576411,0.260766,0.851158,0.175761,0.236409,0.646045,0.191124,0.186493,0.076673,0.734915,0.939026,0.684069,0.843598,0.761143,0.816173,0.0839128,0.656957,0.0976425,0.68879,0.0312994,0.660345,0.413425,0.655888,0.824378,0.213357,0.655693,0.663058,0.50968,0.398081,0.396053,0.648882,0.904993,0.342324,0.634379,0.869891,0.612864,0.898003,0.691134,0.25531,0.78359,0.526639,0.465287,0.886735,0.186417,0.929361,0.465884,0.987537,0.313875,0.366105,0.355886,0.917359,0.916138,0.0877667,0.296638,0.160777,0.412971,0.456535,0.841599,0.472888,0.0857522,0.687555,0.672378,0.828047,0.840245,0.952702,0.896194,0.676261,0.945815,0.566427,0.922285,0.220692,0.86314,0.214408,0.328985,0.212986,0.727304,0.448975,0.765935,0.00427002,0.146465,0.213067,0.0860874,0.489616,0.574775,0.907212,0.979885,0.979734,0.377485,0.794397,0.812529,0.575383,0.063226,0.441175,0.316446,0.979109,0.132669,0.687908,0.715207,0.705491,0.545341,0.763016,0.472985,0.0868607,0.428287,0.130684,0.385977,0.931664,0.197992,0.333428,0.89764,0.779242,0.660132,0.183525,0.251333,0.825535,0.625606,0.746821,0.972075,0.887267,0.759599,0.36117,0.382027,0.131641,0.473974,0.414941,0.00240928,0.735719,0.631466,0.139195,0.461942,0.295287,0.68394,0.605263,0.65084,0.257105,0.241953,0.171709,0.978949,0.756004,0.837623,0.0371888,0.619564,0.515685,0.343877,0.330103,0.891983,0.800848,0.893226,0.907515,0.626156,0.707949,0.720448,0.142782,0.414688,0.566481,0.977907,0.955517,0.240052,0.713924,0.595716,0.908687,0.810215,0.754957,0.918412,0.994255,0.437217,0.623116,0.495993,0.0195078,0.772747,0.677966,0.648661,0.754252,0.0403133,0.240004,0.845601,0.799908,0.517711,0.24993,0.775547,0.648816,0.372095,0.0298302,0.714085,0.669087,0.658572,0.0409752,0.175246,0.647153,0.171587,0.182805,0.418613,0.260108,0.153618,0.50112,0.134471,0.242676,0.72248,0.426637,0.50375,0.158942,0.455091,0.767555,0.66534,0.699905,0.0330285,0.428682,0.502635,0.158748,0.548188,0.970254,0.865819,0.192767,0.0197901,0.4485,0.230798,0.45789,0.124316,0.587488,0.990554,0.0399386,0.460617,0.667487,0.33112,0.958437,0.673438,0.794503,0.14834,0.0409387,0.443655,0.458167,0.470616,0.953732,0.342974,0.206841,0.639099,0.71014,0.478512,0.886411,0.664985,0.718857,0.576011,0.432122,0.41797,0.612633,0.460078,0.745678,0.129368,0.381192,0.938793,0.416707,0.885949,0.136164,0.91335,0.94039,0.461743,0.183066,0.92393,0.400974,0.126154,0.00845492,0.239006,0.609623,0.197136,0.990249,0.307346,0.187034,0.97702,0.399465,0.626701,0.872699,0.0850613,0.992166,0.241214,0.593387,0.8296,0.414815,0.195471,0.359958,0.497653,0.135153,0.716603,0.405461,0.498307,0.468052,0.606551,0.897511,0.019962,0.918955,0.738651,0.9848,0.374993,0.569064,0.122839,0.647829,0.582245,0.361905,0.175865,0.803182,0.87656,0.131989,0.527326,0.858524,0.243323,0.742657,0.188196,0.122293,0.03029,0.754128,0.0161628,0.208848,0.257741,0.790669,0.480511,0.862386,0.0489637,0.00708878,0.108296,0.265055,0.596326,0.481066,0.63968,0.424455,0.664952,0.956852,0.229557,0.411361,0.234569,0.79821,0.65019,0.376967,0.293981,0.332508,0.343712,0.0552057,0.047825,0.420464,0.48115,0.0542905,0.79086,0.195792,0.996599,0.232916,0.0415888,0.827107,0.319684,0.814646,0.158658,0.546964,0.375426,0.811305,0.23522,0.653071,0.710054,0.531236,0.590964,0.942737,0.527012,0.184137,0.279367,0.0683561,0.122895,0.465033,0.682138,0.897688,0.400594,0.365591,0.337091,0.21091,0.476482,0.259233,0.110956,0.543837,0.0548034,0.779734,0.694865,0.369912,0.548436,0.443703,0.229049,0.133819,0.749122,0.857933,0.785908,0.401373,0.00561106,0.629164,0.644735,0.0363504,0.875517,0.527551,0.631263,0.291523,0.753973,0.993801,0.140032,0.575182,0.416241,0.338918,0.413251,0.565333,0.140144,0.752607,0.242237,0.785802,0.607433,0.959656,0.0366457,0.318163,0.413874,0.463205,0.906672,0.346706,0.435244,0.273263,0.424197,0.840254,0.171522,0.576463,0.120844,0.273637,0.523307,0.428304,0.725812,0.631163,0.0932916,0.622339,0.681696,0.948346,0.792547,0.927107,0.144962,0.763258,0.716689,0.632061,0.157643,0.815376,0.188394,0.325191,0.250064,0.85383,0.831327,0.564554,0.648676,0.374848,0.774985,0.127947,0.577719,0.602982,0.0453466,0.627518,0.968009,0.601563,0.908316,0.0957742,0.394875,0.619222,0.22467,0.148537,0.153151,0.161866,0.814682,0.685221,0.0691372,0.182247,0.023205,0.682514,0.487716,0.233031,0.409806,0.647703,0.391381,0.777812,0.931454,0.550651,0.8883,0.719001,0.439617,0.866758,0.780476,0.512566,0.6319,0.650959,0.447168,0.590617,0.135541,0.727899,0.728289,0.127173,0.236418,0.970108,0.422916,0.423034,0.900983,0.534533,0.884855,0.0016579,0.703974,0.25388,0.918671,0.834053,0.924854,0.340734,0.306801,0.437459,0.971401,0.776635,0.693984,0.67298,0.382404,0.974587,0.118747,0.166471,0.652947,0.618626,0.258012,0.484618,0.063024,0.970064,0.766047,0.520526,0.144706,0.488912,0.919363,0.893367,0.161537,0.667612,0.342178,0.292848,0.133127,0.48015,0.894308,0.597246,0.248065,0.279742,0.107536,0.537514,0.144724,0.0209453,0.665177,0.0126704,0.541189,0.555194,0.576454,0.434508,0.836655,0.378613,0.873108,0.648725,0.134789,0.585616,0.530458,0.385301,0.00150108,0.42705,0.264093,0.441328,0.364339,0.43827,0.433008,0.172912,0.077865,0.884047,0.830092,0.443219,0.733111,0.435687,0.651462,0.466984,0.778075,0.401587,0.00544775,0.545083,0.906084,0.708262,0.0880319,0.932974,0.766773,0.996372,0.234747,0.116766,0.693395,0.513067,0.270221,0.0405611,0.700367,0.882937,0.364184,0.957548,0.242791,0.00252759,0.381487,0.209635,0.41587,0.323683,0.268652,0.334624,0.0295295,0.941748,0.986774,0.676227,0.772718,0.0796299,0.904138,0.360696,0.0790281,0.858766,0.0776911,0.149111,0.621316,0.0351681,0.471195,0.446421,0.517399,0.363556,0.150901,0.523585,0.158808,0.855797,0.500836,0.156922,0.0767365,0.134202,0.271982,0.297127,0.102057,0.361477,0.652272,0.227862,0.669507,0.453135,0.373544,0.598159,0.0626917,0.10755,0.798906,0.550017,0.38755,0.535116,0.882508,0.671601,0.244364,0.124171,0.492129,0.069926,0.883928,0.913805,0.383899,0.0983796,0.153935,0.931502,0.95968,0.140015,0.427154,0.225998,0.561712,0.771039,0.795813,0.0753667,0.231166,0.519942,0.811936,0.302754,0.341275,0.527593,0.109695,0.664091,0.673085,0.223476,0.112364,0.38278,0.491133,0.234956,0.421754,0.184067,0.226888,0.275278,0.58225,0.0852579,0.856803,0.162955,0.598987,0.0290119,0.437165,0.271143,0.820781,0.5153,0.575714,0.883181,0.693832,0.106893,0.604919,0.933555,0.997705,0.582592,0.18981,0.78991,0.26277,0.327802,0.478108,0.735377,0.37975,0.757485,0.873237,0.598606,0.597862,0.47406,0.066469,0.176389,0.175622,0.80792,0.288495,0.0186992,0.134876,0.694614,0.72139,0.265678,0.848114,0.753738,0.467691,0.137453,0.0274369,0.973779,0.46867,0.102883,0.92685,0.175065,0.749652,0.172532,0.20247,0.773766,0.105927,0.318325,0.535737,0.561819,0.1592,0.40347,0.801224,0.262606,0.665134,0.55155,0.522686,0.899913,0.56852,0.59779,0.428932,0.621921,0.341191,0.544993,0.318515,0.525304,0.631048,0.0708418,0.509901,0.736438,0.383759,0.0636037,0.0453331,0.0632958,0.749875,0.768335,0.641736,0.301369,0.875687,0.134017,0.900323,0.395382,0.482566,0.480591,0.280462,0.600023,0.172387,0.645277,0.960227,0.83243,0.293101,0.685743,0.110506,0.578682,0.355203,0.515532,0.884484,0.895478,0.0471515,0.529157,0.516006,0.103879,0.894242,0.121851,0.790313,0.821298,0.631208,0.685483,0.124497,0.375995,0.133951,0.640396,0.52962,0.726772,0.0831226,0.0379224,0.935494,0.486094,0.282289,0.791334,0.520331,0.867846,0.512561,|0.829657,0.469548,0.33238,0.261045,0.555773,0.675224,0.469248,0.614392,0.346317,0.203812,0.474609,0.11628,0.499338,0.894936,0.765545,0.597353,0.232739,0.109249,0.214284,0.201001,0.376739,0.611324,0.967452,0.326398,0.00143325,0.0731167,0.434055,0.14469,0.603948,0.174052,0.645443,0.537947,0.184725,0.314475,0.176225,0.162859,0.799563,0.593995,0.718139,0.641119,0.696597,0.45626,0.859716,0.915366,0.820837,0.794176,0.690228,0.915826,0.725513,0.281431,0.41178,0.782776,0.21599,0.470776,0.423124,0.852578,0.822374,0.714717,0.6738,0.0936241,0.584775,0.812526,0.443534,0.207418,0.430786,0.154746,0.414947,0.071684,0.204947,0.35378,0.441924,0.99019,0.293133,0.576921,0.99781,0.35554,0.580182,0.430822,0.562413,0.723572,0.0666478,0.942015,0.0283124,0.396759,0.440868,0.87544,0.602207,0.416097,0.0144168,0.150554,0.646834,0.743108,0.378907,0.0892698,0.519939,0.0994948,0.411027,0.773718,0.026823,0.629164,0.268016,0.39734,0.204384,0.243598,0.926601,0.228134,0.44575,0.134567,0.737052,0.612139,0.126875,0.539934,0.782314,0.475368,0.139344,0.142839,0.76525,0.284401,0.0142856,0.316692,0.157486,0.961798,0.0862167,0.0981811,0.110321,0.923806,0.427369,0.561301,0.213972,0.0798661,0.207497,0.568708,0.634545,0.021943,0.789024,0.273026,0.95508,0.10449,0.862076,0.360942,0.963962,0.512278,0.356194,0.0115159,0.197827,0.206977,0.441051,0.282743,0.447094,0.34076,0.333896,0.765288,0.907205,0.151285,0.945857,0.925418,0.238039,0.600332,0.566087,0.465391,0.687632,0.779954,0.484185,0.0549645,0.988113,0.589721,0.598827,0.825167,0.159107,0.980624,0.896655,0.338582,0.891369,0.502516,0.183427,0.557876,0.0832525,0.137315,0.246239,0.729601,0.42188,0.693993,0.35462,0.904124,0.320768,0.196308,0.66938,0.322136,0.170764,0.396263,0.347097,0.659711,0.392746,0.450705,0.667905,0.565962,0.127899,0.401959,0.442991,0.281863,0.617388,0.235827,0.421952,0.20156,0.363626,0.0501438,0.518363,0.190516,0.465099,0.0397975,0.630878,0.804544,0.254029,0.699642,0.54687,0.0220079,0.0765174,0.691398,0.471088,0.671981,0.260443,0.732868,0.294988,0.114962,0.760249,0.705542,0.800529,0.348984,0.431618,0.787487,0.145853,0.0337815,0.523293,0.332718,0.382067,0.642165,0.351925,0.418381,0.0722362,0.689862,0.383029,0.367318,0.0891668,0.0803999,0.860301,0.307079,0.290263,0.925653,0.606504,0.25708,0.93145,0.20335,0.886722,0.409557,0.470187,0.175317,0.999831,0.960075,0.271587,0.0854704,0.803376,0.270964,0.31724,0.659074,0.648862,0.850605,0.0622209,0.629341,0.441843,0.0531662,0.0725033,0.755534,0.217259,0.320704,0.605215,0.17387,0.393754,0.384597,0.971337,0.495553,0.874188,0.687511,0.0737923,0.597806,0.796006,0.298762,0.735843,0.850674,0.728791,0.321895,0.745371,0.545676,0.399524,0.95511,0.424093,0.885831,0.684658,0.392087,0.679273,0.521744,0.174819,0.306589,0.56594,0.162634,0.016449,0.480772,0.935925,0.13615,0.8455,0.917289,0.420082,0.130325,0.2906,0.77139,0.358931,0.71715,0.663577,0.165859,0.843938,0.641703,0.596029,0.000415802,0.0809938,0.622448,0.208795,0.276172,0.824903,0.908069,0.891132,0.651762,0.76702,0.684854,0.420215,0.500969,0.738079,0.428641,0.181959,0.625623,0.396366,0.744141,0.207383,0.0458493,0.526466,0.75128,0.330141,0.67692,0.559937,0.558016,0.498791,0.102736,0.54666,0.178649,0.420239,0.53987,0.172024,0.985573,0.190235,0.303289,0.821518,0.791923,0.684394,0.715102,0.24691,0.178554,0.46321,0.954286,0.00886607,0.286647,0.261281,0.794078,0.395517,0.147587,0.886733,0.426871,0.618268,0.476659,0.844171,0.409288,0.0875186,0.49693,0.255656,0.830254,0.137769,0.137764,0.330622,0.333976,0.704237,0.906093,0.799071,0.2626,0.1392,0.609762,0.463079,0.951693,0.790433,0.581723,0.306501,0.602702,0.964001,0.506045,0.433283,0.0521721,0.0413154,0.0220219,0.616882,0.963357,0.214782,0.19216,0.782696,0.0205876,0.2508,0.162929,0.645887,0.736523,0.49155,0.0740278,0.595291,0.296145,0.313232,0.759586,0.261231,0.235288,0.998507,0.587938,0.46214,0.223783,0.325659,0.436588,0.277141,0.874339,0.272513,0.220522,0.587848,0.222577,0.824157,0.833969,0.964127,0.805882,0.937455,0.665709,0.280215,0.735825,0.408629,0.851746,0.547243,0.952516,0.64537,0.345706,0.228336,0.550382,0.614276,0.90003,0.519065,0.607995,0.0713151,0.695195,0.733804,0.482879,0.796259,0.825076,0.266043,0.883705,0.432176,0.615227,0.480163,0.0668427,0.639581,0.0442816,0.843946,0.129655,0.462928,0.187704,0.190186,0.0682445,0.25561,0.0717539,0.0865349,0.681043,0.373849,0.568665,0.0522105,0.563292,0.884145,0.406397,0.910743,0.418326,0.763716,0.807248,0.426775,0.472917,0.973409,0.888333,0.180021,0.509364,0.30244,0.356313,0.157383,0.918157,0.611698,0.775877,0.473098,0.689371,0.863842,0.263523,0.495955,0.769347,0.223325,0.0134717,0.652162,0.715555,0.65946,0.283596,0.330564,0.267906,0.0311425,0.424293,0.360143,0.440165,0.417275,0.837124,0.322756,0.939693,0.60905,0.948608,0.00401706,0.00957,0.436304,0.747238,0.518603,0.251226,0.505526,0.842213,0.604517,0.0824348,0.487667,0.27047,0.676125,0.973577,0.697703,0.0026831,0.152193,0.301155,0.804128,0.125166,0.584958,0.135097,0.406052,0.572052,0.173255,0.569826,0.449681,0.0981631,0.748716,0.330161,0.0917065,0.618296,0.755459,0.658047,0.379713,0.306118,0.849017,0.349608,0.335575,0.924035,0.614266,0.274662,0.473947,0.997126,0.583896,0.704293,0.930765,0.111381,0.887778,0.0895125,0.0292289,0.0822359,0.0108085,0.332477,0.727609,0.264061,0.902831,0.54261,0.252495,0.209191,0.109358,0.383859,0.00345707,0.0156762,0.432248,0.652323,0.806918,0.370273,0.604719,0.536146,0.120464,0.623686,0.712778,0.252721,0.266205,0.348209,0.101588,0.640247,0.849238,0.114328,0.94289,0.928266,0.00586516,0.0149679,0.318176,0.356611,0.863261,0.904873,0.906898,0.603886,0.415873,0.482587,0.43088,0.814157,0.683764,0.319619,0.594184,0.322214,0.309795,0.58466,0.251046,0.944878,0.326862,0.11721,0.632773,0.548459,0.981156,0.929807,0.88686,0.716803,0.0709995,0.99006,0.46219,0.239448,0.611774,0.0689058,0.194993,0.0771657,0.852381,0.737908,0.889437,0.701205,0.404204,0.132643,0.752956,0.220264,0.600334,0.49709,0.9899,0.777401,0.00745863,0.974735,0.182939,0.599665,0.41431,0.94413,0.446689,0.327009,0.0642483,0.256685,0.683913,0.101229,0.102621,0.449087,0.654833,0.390328,0.208086,0.657253,0.754194,0.365663,0.991636,0.0864549,0.303054,0.0410131,0.124792,0.895995,0.0295448,0.979927,0.0499943,0.0763632,0.547036,0.0230321,0.0945318,0.411502,0.787029,0.242294,0.965378,0.837535,0.416949,0.604669,0.0360937,0.985874,0.915799,0.754547,0.294844,0.326468,0.701242,0.158591,0.780032,0.208865,0.795199,0.634679,0.0159501,0.374969,0.463423,0.8602,0.690614,0.263101,0.963253,0.893683,0.307457,0.870463,0.512983,0.374833,0.162228,0.194604,0.220519,0.580193,0.379224,0.189673,0.614767,0.508977,0.854813,0.418523,0.928131,0.132815,0.480022,0.165698,0.475622,0.698106,0.317628,0.673141,0.489434,0.0940787,0.588892,0.312532,0.17481,0.648333,0.114296,0.578034,0.72349,0.287205,0.324043,0.307982,0.176408,0.765283,0.649077,0.316975,0.449193,0.582898,0.858346,0.881948,0.10003,0.472667,0.845429,0.352958,0.413601,0.707027,0.803516,0.0997395,0.946674,0.800094,0.111838,0.248792,0.525106,0.187395,0.068777,0.550318,0.882387,0.337033,0.563257,0.852699,0.225783,0.340918,0.208744,0.151113,0.817117,0.790189,0.455185,0.425112,0.288836,0.389831,0.936045,0.730213,0.232992,0.714881,0.293021,0.254893,0.250995,0.634676,0.246394,0.586803,0.364845,0.901719,0.532685,0.519624,0.174088,0.596877,0.688034,0.287989,0.915055,0.825959,0.859393,0.542713,0.923726,0.612041,0.520928,0.704061,0.779832,0.597841,0.326111,0.457649,0.785326,0.478345,0.71055,0.613088,0.917627,0.859186,0.986654,0.219963,0.612447,0.774815,0.079165,0.508695,0.0463665,0.505651,0.577262,0.508102,0.0778723,0.773571,0.926543,0.805128,0.173492,0.253964,0.140169,0.382564,0.942953,0.08921,0.941799,0.987722,0.438406,0.0831686,0.299274,0.200112,0.0801587,0.231999,0.204495,0.826056,0.0654025,0.79032,0.0572117,0.116724,0.245322,0.977484,0.0708604,0.835618,0.0143682,0.326959,0.177703,0.230762,0.704774,0.285239,0.374898,0.17008,0.133391,0.761054,0.748019,0.187309,0.840114,0.680226,0.701798,0.931843,0.466759,0.119817,0.457585,0.921924,0.447109,0.151531,0.189012,0.49985,0.552695,0.878436,0.762416,0.000502765,0.826091,0.0900005,0.954872,0.500935,0.31974,0.0964566,0.923117,0.485141,0.290448,0.292752,0.0577207,0.337461,0.634383,0.806916,0.642568,0.253147,0.416861,0.401812,0.132619,0.609362,0.99245,0.655654,0.0330116,0.538744,0.543704,0.690261,0.36969,0.426232,0.253896,0.679406,0.934173,0.346514,0.233112,0.401624,0.258931,0.0718179,0.105104,0.856083,0.104369,0.515382,0.44024,0.673637,0.508543,0.455253,0.281757,0.257546,0.37972,0.412565,0.759728,0.717291,0.420444,0.547568,0.316738,0.223534,0.200521,0.42785,0.258302,0.261168,0.0638685,0.263142,0.0361421,0.840896,0.756609,0.0646065,0.190436,0.0211996,0.378603,0.571679,0.127325,0.250321,0.638472,0.292059,0.988136,0.347448,0.437328,0.145855,0.199477,0.0839496,0.723785,0.224071,0.583275,0.547022,0.146774,0.275305,0.946308,0.738417,0.818307,0.36982,0.596654,0.591967,0.298953,0.889221,0.493299,0.91438,0.376797,0.127032,0.35054,0.551054,0.783603,0.0047437,0.661118,0.334562,0.64843,0.0707986,0.276062,0.0782456,0.41,0.920277,0.804897,0.660651,0.909748,0.450479,|0.156149,0.112407,0.158017,0.958506,0.662228,0.45288,0.832936,0.0785774,0.386142,0.00211155,0.678801,0.70822,0.262053,0.516153,0.317411,0.827371,0.642607,0.612969,0.224833,0.983106,0.609381,0.720817,0.266146,0.648059,0.376738,0.791698,0.13838,0.545675,0.134882,0.0414087,0.501903,0.935953,0.631989,0.580363,0.316934,0.344288,0.354872,0.0813187,0.715958,0.949203,0.247514,0.880422,0.141214,0.825757,0.336508,0.196094,0.498476,0.544826,0.667441,0.597531,0.885447,0.338909,0.0426272,0.185676,0.433598,0.440264,0.0714458,0.297829,0.491664,0.251846,0.315258,0.177782,0.0644811,0.825001,0.0741931,0.393447,0.439176,0.775403,0.472816,0.494417,0.692423,0.783543,0.127443,0.737701,0.400385,0.018409,0.94324,0.583973,0.791186,0.663669,0.385438,0.0468755,0.61097,0.272519,0.25553,0.920043,0.491247,0.781667,0.0818771,0.764533,0.707786,0.420428,0.947652,0.842622,0.280833,0.26462,0.00399876,0.973115,0.541048,0.635137,0.11758,0.526986,0.183553,0.604128,0.993013,0.871726,0.675518,0.0123097,0.73519,0.780008,0.600925,0.941682,0.722276,0.696856,0.36866,0.629894,0.0545505,0.390054,0.332725,0.00876391,0.372153,0.48006,0.475421,0.987994,0.443949,0.534977,0.52991,0.352418,0.820636,0.312496,0.587191,0.8114,0.333443,0.934967,0.27661,0.0158966,0.0460481,0.000663519,0.199786,0.666743,0.372465,0.642963,0.331318,0.21589,0.214857,0.635468,0.133085,0.245746,0.29938,0.338298,0.0726721,0.748568,0.854646,0.392217,0.159039,0.0260631,0.93149,0.452279,0.392457,0.675933,0.732649,0.878177,0.0953833,0.666577,0.688713,0.87444,0.715865,0.778602,0.531961,0.380463,0.388046,0.741548,0.588818,0.533307,0.0431221,0.052583,0.322707,0.252962,0.259226,0.729893,0.23374,0.938866,0.75063,0.788023,0.886746,0.804775,0.580745,0.225618,0.101441,0.572554,0.532553,0.0603898,0.874926,0.103028,0.911346,0.720848,0.0085454,0.068207,0.658104,0.892104,0.609537,0.7164,0.0188737,0.223443,0.0265221,0.142837,0.59176,0.504937,0.638942,0.787394,0.364216,0.408446,0.39104,0.13395,0.312316,0.655606,0.0794819,0.0892926,0.568839,0.226928,0.864021,0.52267,0.577305,0.347681,0.626805,0.0182391,0.182745,0.974816,0.521058,0.141481,0.20376,0.551862,0.227368,0.422094,0.368865,0.572149,0.328069,0.477708,0.940885,0.36415,0.383964,0.50003,0.226289,0.157596,0.477054,0.242802,0.407754,0.0406967,0.784589,0.338128,0.339475,0.0981622,0.754751,0.473967,0.778387,0.872856,0.766572,0.0753137,0.147866,0.194184,0.448238,0.983984,0.881976,0.700653,0.358092,0.851563,0.991214,0.867179,0.451216,0.431158,0.660259,0.0868813,0.70719,0.831213,0.878863,0.394496,0.647432,0.105105,0.696851,0.17732,0.283651,0.283471,0.761178,0.270117,0.511039,0.434951,0.68341,0.769323,0.781286,0.407257,0.0255812,0.688469,0.93775,0.675447,0.239145,0.504148,0.501821,0.113167,0.139924,0.132126,0.112186,0.663381,0.0226922,0.163267,0.245613,0.00929642,0.803274,0.184535,0.266023,0.255998,0.540147,0.0158337,0.504434,0.866446,0.25437,0.049005,0.225216,0.480101,0.105885,0.230533,0.124169,0.379639,0.36836,0.596609,0.404752,0.792388,0.554372,0.683733,0.912736,0.931373,0.0943173,0.596669,0.381045,0.686342,0.914217,0.771303,0.439134,0.0959433,0.725233,0.156539,0.582724,0.857508,0.357479,0.236355,0.274923,0.677269,0.382489,0.503015,0.961115,0.592641,0.369461,0.00199199,0.52845,0.606027,0.310653,0.238596,0.649352,0.135333,0.963734,0.329582,0.0379632,0.890431,0.456886,0.283739,0.810157,0.701623,0.3911,0.0902446,0.292537,0.663372,0.905674,0.150909,0.493155,0.949281,0.757856,0.839576,0.383736,0.75091,0.94966,0.376788,0.357701,0.193528,0.497056,0.578847,0.945981,0.848633,0.65296,0.74822,0.268532,0.0930204,0.151834,0.804059,0.404849,0.411407,0.798943,0.999756,0.492262,0.9214,0.503801,0.175392,0.0976108,0.795962,0.0408694,0.130366,0.668998,0.600054,0.355331,0.0424711,0.931886,0.892704,0.266334,0.510362,0.0340565,0.774995,0.487491,0.100875,0.655655,0.565535,0.522651,0.988285,0.691086,7.02143e-05,0.286115,0.384555,0.522668,0.314454,0.937259,0.48028,0.84718,0.331036,0.997576,0.800036,0.277437,0.400226,0.751701,0.490303,0.974998,0.752254,0.82005,0.892048,0.81236,0.796883,0.172083,0.789854,0.283876,0.661073,0.0694418,0.537069,0.306831,0.623035,0.561322,0.557008,0.410685,0.0742888,0.460635,0.195576,0.927767,0.854723,0.867848,0.662964,0.241064,0.786856,0.874053,0.269732,0.551884,0.333197,0.959186,0.938203,0.274669,0.85678,0.547147,0.28769,0.377035,0.521663,0.728953,0.462562,0.707557,0.598751,0.692723,0.668038,0.556084,0.544224,0.0448406,0.45731,0.115829,0.0607207,0.289985,0.273093,0.288208,0.191408,0.587541,0.581707,0.764793,0.357828,0.696325,0.136905,0.311252,0.215295,0.538542,0.70395,0.351339,0.629315,0.631003,0.729216,0.0198075,0.0276106,0.67095,0.524331,0.755103,0.630506,0.593796,0.552636,0.759682,0.588038,0.463523,0.783175,0.500572,0.191822,0.456294,0.0482049,0.540551,0.0707532,0.782862,0.150636,0.497642,0.250238,0.409263,0.643025,0.245015,0.321896,0.214351,0.956506,0.215056,0.326382,0.95979,0.807459,0.69182,0.931235,0.775864,0.81556,0.879388,0.414252,0.416985,0.866034,0.0827658,0.780131,0.449803,0.258829,0.407488,0.516917,0.878691,0.768159,0.958397,0.858679,0.946685,0.563893,0.932463,0.57711,0.0616472,0.632571,0.939802,0.991257,0.0311366,0.331552,0.869623,0.592088,0.871439,0.62384,0.794718,0.603529,0.42527,0.328203,0.690075,0.817607,0.412627,0.695878,0.663638,0.651842,0.0116051,0.0343005,0.844527,0.795758,0.497371,0.195068,0.594458,0.970317,0.659536,0.644298,0.783319,0.861898,0.167626,0.806729,0.620145,0.276603,0.71191,0.24477,0.742049,0.698833,0.592037,0.989749,0.0839466,0.0726551,0.425441,0.710611,0.0518189,0.284743,0.184773,0.344971,0.516663,0.569322,0.056357,0.739241,0.985459,0.980778,0.915396,0.85974,0.744737,0.196595,0.0873029,0.241979,0.381918,0.717275,0.802488,0.156884,0.335266,0.648197,0.811802,0.564707,0.690441,0.255435,0.425705,0.655707,0.367392,0.988565,0.378942,0.0623812,0.0699956,0.263214,0.659791,0.40332,0.89366,0.60268,0.115011,0.84197,0.632008,0.941453,0.858456,0.0409713,0.452901,0.77539,0.214872,0.850086,0.960676,0.934766,0.827632,0.550621,0.299683,0.725678,0.391602,0.45789,0.860872,0.936763,0.472701,0.130822,0.268877,0.106006,0.931487,0.551562,0.914341,0.670624,0.453763,0.0930253,0.935042,0.584261,0.969521,0.724516,0.0789643,0.346538,0.498047,0.843818,0.182907,0.948231,0.960826,0.750886,0.792158,0.226886,0.164847,0.576696,0.573519,0.531668,0.596577,0.485638,0.437453,0.914907,0.0270083,0.0351632,0.442418,0.673434,0.0849552,0.48956,0.242623,0.965141,0.06421,0.567274,0.792832,0.83231,0.63382,0.13541,0.389276,0.570731,0.725739,0.852535,0.394974,0.910723,0.13671,0.108677,0.992917,0.0608508,0.976317,0.822362,0.0202087,0.432622,0.515369,0.0191472,0.66773,0.19722,0.198868,0.598291,0.81658,0.476237,0.841301,0.8344,0.115277,0.580497,0.596398,0.156813,0.241662,0.157469,0.897156,0.281504,0.41302,0.920744,0.550995,0.130238,0.892366,0.354386,0.39201,0.511201,0.826968,0.722024,0.877627,0.373405,0.456511,0.998479,0.639147,0.970457,0.269025,0.141808,0.374553,0.0999448,0.474546,0.652138,0.149955,0.0724076,0.234317,0.137858,0.212604,0.0677445,0.480703,0.631798,0.568347,0.886741,0.987794,0.780206,0.0719641,0.0509344,0.247075,0.112234,0.618088,0.164901,0.758171,0.811883,0.318881,0.705775,0.746248,0.534361,0.625219,0.389981,0.264488,0.351582,0.962556,0.0120657,0.58948,0.135988,0.774978,0.331682,0.85381,0.125031,0.210252,0.448017,0.973555,0.55457,0.515227,0.585764,0.48624,0.549198,0.839157,0.241969,0.782095,0.647294,0.869374,0.427966,0.522423,0.376873,0.961801,0.313957,0.48559,0.291814,0.409307,0.0409175,0.134949,0.144799,0.223381,0.159102,0.180774,0.216808,0.283809,0.833422,0.897913,0.532369,0.139125,0.966589,0.424738,0.405605,0.0953241,0.707991,0.891034,0.735281,0.248397,0.430419,0.95096,0.71556,0.564958,0.246384,0.678045,0.808555,0.686172,0.980273,0.391994,0.354606,0.0383738,0.119963,0.537688,0.801794,0.762355,0.522942,0.0491742,0.830934,0.631976,0.857908,0.681676,0.178808,0.753806,0.912826,0.877341,0.947076,0.451352,0.790508,0.130478,0.88063,0.731735,0.494574,0.207217,0.346249,0.404702,0.290611,0.0530756,0.568479,0.79803,0.532432,0.716812,0.239058,0.0497568,0.939183,0.505318,0.056913,0.477442,0.708084,0.718887,0.324704,0.000584424,0.0857965,0.265103,0.428375,0.839414,0.0873172,0.381873,0.586091,0.214521,0.315532,0.0385541,0.707424,0.898041,0.795811,0.951477,0.432612,0.712078,0.913912,0.846084,0.473859,0.343419,0.978783,0.212964,0.976022,0.423496,0.878483,0.388289,0.809883,0.690832,0.558653,0.248285,0.040484,0.70395,0.157697,0.424589,0.604391,0.725536,0.735277,0.257227,0.587579,0.546175,0.0211409,0.718366,0.0756759,0.257503,0.859841,0.0113798,0.926554,0.716862,0.565304,0.746025,0.980226,0.712892,0.283519,0.638186,0.914883,0.348451,0.25461,0.98199,0.563065,0.993583,0.418413,0.509817,0.892719,0.403759,0.530627,0.985784,0.597608,0.886531,0.521745,0.0568721,0.997928,0.874953,0.587131,0.820868,0.787927,0.571906,0.449963,0.107076,0.478224,0.197403,0.479332,0.00722814,0.0415862,0.743159,0.227841,0.293044,0.670319,0.446692,0.641336,0.741099,0.153842,0.115735,0.746218,0.00994974,0.187591,0.14922,0.799108,0.801955,0.605906,0.568345,0.58975,0.7068,0.848509,0.0592943,0.648266,0.432854,0.571037,0.935993,0.621179,|0.194882,0.591341,0.122931,0.412119,0.0165656,0.791057,0.947479,0.815987,0.539798,0.956056,0.274075,0.733865,0.451383,0.00312155,0.881049,0.00387812,0.492751,0.736143,0.062889,0.0678217,0.182819,0.982179,0.536907,0.148439,0.687504,0.100005,0.667952,0.809256,0.321438,0.0947306,0.214117,0.0466006,0.523928,0.125017,0.626697,0.311112,0.990202,0.942134,0.563329,0.76562,0.0504328,0.793625,0.628894,0.27947,0.502387,0.512928,0.342507,0.0714183,0.276668,0.321347,0.113,0.83948,0.418964,0.0692697,0.673522,0.633485,0.342327,0.800645,0.920929,0.440157,0.796524,0.294202,0.187012,0.337138,0.174978,0.35398,0.727623,0.579836,0.65636,0.836664,0.725112,0.0490785,0.349597,0.332718,0.0817187,0.645849,0.988171,0.657814,0.00336719,0.526801,0.173719,0.723475,0.767743,0.485733,0.559638,0.613323,0.627941,0.817796,0.129434,0.225891,0.244024,0.0423244,0.633646,0.251485,0.61459,0.174114,0.105404,0.975582,0.59456,0.633304,0.889609,0.917811,0.105011,0.0750573,0.580339,0.313353,0.667453,0.510605,0.610901,0.943101,0.162612,0.51276,0.734053,0.334809,0.916251,0.652848,0.0254613,0.553334,0.0159116,0.176444,0.770354,0.909064,0.812495,0.983434,0.771848,0.161059,0.489589,0.155441,0.617658,0.278897,0.998663,0.187989,0.679363,0.305867,0.310776,0.525053,0.588723,0.487208,0.335282,0.681468,0.94045,0.201139,0.0542567,0.892632,0.766861,0.960811,0.767517,0.487992,0.300577,0.223907,0.503522,0.92932,0.428473,0.896643,0.869328,0.924838,0.372072,0.742406,0.669956,0.032956,0.883806,0.210816,0.281229,0.393714,0.148965,0.0824999,0.372373,0.0878738,0.107373,0.359056,0.476559,0.847868,0.470066,0.307567,0.182325,0.0841497,0.0239496,0.818357,0.733997,0.506139,0.0276527,0.277663,0.371386,0.528355,0.372252,0.404698,0.972876,0.173988,0.349302,0.929928,0.943674,0.592514,0.486766,0.296294,0.222146,0.801465,0.932968,0.615949,0.489293,0.750681,0.683964,0.298763,0.901922,0.535107,0.943887,0.175179,0.814352,0.953497,0.650462,0.854727,0.0717657,0.719657,0.19455,0.601925,0.271713,0.559608,0.414239,0.756256,0.687943,0.15068,0.587618,0.439863,0.567562,0.283376,0.356807,0.402581,0.495563,0.482689,0.170197,0.94465,0.1815,0.327091,0.733067,0.733207,0.606217,0.112176,0.165857,0.824906,0.206792,0.669812,0.510619,0.00489634,0.696707,0.494642,0.769705,0.754733,0.738544,0.475879,0.96303,0.0464228,0.470896,0.183644,0.289493,0.755859,0.219787,0.28571,0.11349,0.0645227,0.333293,0.790629,0.0479726,0.659083,0.837824,0.405833,0.960352,0.652174,0.837706,0.00515306,0.501041,0.889398,0.407796,0.674528,0.338645,0.148015,0.930004,0.775523,0.271849,0.358232,0.43804,0.578259,0.772375,0.333942,0.296047,0.235627,0.37605,0.609342,0.919166,0.233926,0.900438,0.685222,0.468675,0.0265143,0.570497,0.818982,0.611716,0.399449,0.321628,0.873872,0.950145,0.0823799,0.265095,0.352223,0.241457,0.614523,0.349295,0.700631,0.0835091,0.0244638,0.0428544,0.777632,0.313671,0.774042,0.137695,0.971314,0.509325,0.454568,0.071419,0.290136,0.147926,0.75541,0.278874,0.0087558,0.760755,0.562451,0.524832,0.411095,0.772149,0.525011,0.589325,0.758368,0.566814,0.907309,0.143837,0.231347,0.262182,0.703649,0.61496,0.851857,0.272815,0.535998,0.720294,0.796444,0.883943,0.00690949,0.331164,0.532103,0.158089,0.272389,0.310429,0.739452,0.31369,0.41975,0.521363,0.689702,0.74854,0.402679,0.338981,0.555276,0.945581,0.561241,0.461283,0.927268,0.7198,0.869452,0.0884506,0.654688,0.456641,0.455027,0.97518,0.0824547,0.63703,0.188292,0.819449,0.29073,0.144876,0.568754,0.769644,0.013829,0.428677,0.366494,0.999473,0.47199,0.923798,0.429877,0.705681,0.97888,0.654284,0.14425,0.799381,0.0574181,0.399962,0.546612,0.573673,0.438429,0.122162,0.631794,0.926091,0.766209,0.556276,0.124582,0.857834,0.960275,0.369764,0.143923,0.901979,0.4958,0.717956,0.708323,0.471661,0.295252,0.540912,0.12419,0.600562,0.394578,0.220326,0.501516,0.0494099,0.520086,0.733671,0.164476,0.0397701,0.806893,0.189372,0.352854,0.621527,0.5809,0.560725,0.23466,0.933736,0.568494,0.946983,0.100875,0.488098,0.0284069,0.57912,0.393484,0.604163,0.629884,0.542138,0.800779,0.228475,0.077579,0.328074,0.821024,0.297626,0.606537,0.0798028,0.313214,0.424868,0.774604,0.157304,0.0977855,0.881524,0.158596,0.812009,0.218166,0.899116,0.219354,0.512123,0.818023,0.474873,0.198779,0.129592,0.742761,0.263419,0.538936,0.630524,0.061979,0.964351,0.136906,0.879659,0.295572,0.10849,0.925057,0.127643,0.92808,0.572428,0.341049,0.916741,0.135717,0.0182767,0.549666,0.532425,0.264818,0.415695,0.965022,0.891572,0.810274,0.867071,0.705672,0.574361,0.194857,0.129478,0.666465,0.0221292,0.610775,0.457879,0.086941,0.151132,0.693647,0.530509,0.385823,0.00885808,0.331351,0.933634,0.240743,0.437279,0.803947,0.8575,0.573143,0.2364,0.59061,0.417736,0.322554,0.440159,0.00215876,0.0550023,0.73448,0.0106809,0.997621,0.339531,0.0871442,0.360567,0.412046,0.784267,0.725528,0.959215,0.501903,0.432448,0.438868,0.00660425,0.950871,0.0621448,0.315674,0.528485,0.135928,0.133298,0.186816,0.31813,0.358534,0.985139,0.897874,0.617835,0.498591,0.21119,0.40991,0.149004,0.503436,0.429635,0.521363,0.951736,0.529074,0.000754654,0.270782,0.336179,0.823407,0.627627,0.173603,0.192662,0.834342,0.89178,0.920628,0.779577,0.907462,0.890823,0.144309,0.597508,0.600664,0.0900739,0.979267,0.979247,0.464519,0.553149,0.761053,0.954387,0.181158,0.726842,0.458351,0.50579,0.75466,0.788711,0.667756,0.598667,0.362967,0.217782,0.0672404,0.0258736,0.111881,0.71355,0.882012,0.182266,0.837487,0.765458,0.217061,0.105462,0.397258,0.847369,0.442207,0.00472987,0.842928,0.204485,0.473777,0.991476,0.719017,0.657924,0.712655,0.296227,0.568135,0.573257,0.238716,0.372894,0.603372,0.7819,0.344362,0.914284,0.844558,0.583881,0.582379,0.557174,0.67931,0.819488,0.0712028,0.195876,0.284155,0.579068,0.511357,0.721727,0.801486,0.808931,0.217973,0.0189023,0.54233,0.638377,0.358626,0.279816,0.800715,0.0401472,0.0707924,0.00106549,0.969037,0.582129,0.788822,0.42268,0.432774,0.386718,0.684886,0.0993105,0.661795,0.768216,0.527594,0.208521,0.557255,0.332081,0.478943,0.753198,0.0685901,0.554743,0.640282,0.744491,0.619564,0.0110763,0.554293,0.581364,0.568207,0.841271,0.975145,0.764732,0.379736,0.213513,0.786709,0.358525,0.909754,0.190965,0.577989,0.510316,0.918489,0.876722,0.814045,0.840142,0.0303164,0.356641,0.048721,0.669226,0.866963,0.77104,0.218692,0.760218,0.228893,0.971285,0.561212,0.187251,0.991669,0.974128,0.28668,0.899137,0.118892,0.879588,0.254079,0.181698,0.931542,0.95199,0.140555,0.429621,0.324599,0.99309,0.722502,0.307534,0.907319,0.309367,0.966641,0.349251,0.370998,0.869642,0.482952,0.450589,0.236257,0.841483,0.124003,0.950531,0.498478,0.827673,0.347845,0.334052,0.267276,0.788205,0.598162,0.650353,0.0380394,0.00936145,0.244321,0.407875,0.204755,0.000145376,0.240708,0.217345,0.350831,0.395865,0.667065,0.648022,0.0564309,0.623092,0.434434,0.00472665,0.715281,0.253867,0.509959,0.130409,0.824833,0.0167454,0.755358,0.071479,0.892098,0.677322,0.871667,0.579734,0.673694,0.905994,0.456796,0.315772,0.941791,0.77428,0.632722,0.933822,0.181855,0.723456,0.230543,0.82142,0.621257,0.644818,0.228599,0.249084,0.13812,0.324992,0.862746,0.406301,0.788339,0.26414,0.278756,0.256422,0.478159,0.761128,0.346739,0.376214,0.591022,0.936232,0.142596,0.166551,0.265327,0.722014,0.266482,0.660269,0.796779,0.951143,0.212373,0.259797,0.528175,0.4158,0.521648,0.178434,0.907298,0.258286,0.311921,0.314529,0.988243,0.337223,0.191601,0.882629,0.719383,0.552495,0.926874,0.250572,0.807573,0.562124,0.183937,0.894567,0.879484,0.946569,0.529739,0.358539,0.741232,0.730465,0.292894,0.367265,0.783254,0.819149,0.240281,0.569935,0.628988,0.368537,0.14465,0.176656,0.505434,0.79854,0.918176,0.190583,0.0720169,0.952285,0.938383,0.810157,0.291446,0.982642,0.486755,0.413868,0.0376351,0.735163,0.0958502,0.0161626,0.665994,0.699705,0.596388,0.816301,0.857596,0.172502,0.12417,0.251406,0.104956,0.470632,0.379763,0.604002,0.143866,0.649945,0.665494,0.570845,0.018478,0.345719,0.585178,0.868687,0.391776,0.582849,0.692425,0.710505,0.469753,0.467944,0.188934,0.560466,0.0149983,0.231394,0.909327,0.640164,0.549695,0.614041,0.702213,0.545898,0.0889655,0.245537,0.815373,0.880629,0.24497,0.250933,0.0340202,0.887591,0.192177,0.433665,0.967489,0.921706,0.0133508,0.866008,0.586749,0.327561,0.204963,0.229192,0.146123,0.199661,0.643011,0.506321,0.740129,0.396805,0.938922,0.0704468,0.599209,0.434752,0.859834,0.653694,0.318142,0.0589929,0.0818446,0.971403,0.27346,0.0158913,0.845498,0.539155,0.642083,0.422953,0.498245,0.698496,0.836702,0.705111,0.106552,0.783236,0.602121,0.0303662,0.637765,0.502778,0.727164,0.715846,0.573669,0.694587,0.375022,0.87088,0.311924,0.343178,0.205456,0.611714,0.215394,0.410091,0.206168,0.287085,0.0953365,0.0663678,0.967595,0.155784,0.649858,0.0524319,0.0860853,0.76581,0.879087,0.24559,0.0518118,0.883251,0.999993,0.829596,0.953757,0.00307369,0.282175,0.191778,0.331679,0.403978,0.465138,0.928677,0.99083,0.15018,0.86979,0.990704,0.363277,0.95546,0.16855,0.25214,0.967136,0.311513,0.903274,0.524906,0.732729,0.00193125,0.870883,0.109562,0.776733,0.567138,0.116912,0.501406,0.178115,0.920782,0.552016,0.7471,0.694432,0.0561767,0.198336,0.881968,0.353194,0.847148,0.842614,|0.665206,0.134915,0.922486,0.465786,0.676877,0.232789,0.139307,0.13257,0.523849,0.208207,0.0931399,0.927649,0.671823,0.175512,0.230383,0.157683,0.864919,0.574037,0.0332144,0.403801,0.116547,0.483294,0.690303,0.515474,0.692661,0.0543138,0.0362275,0.139733,0.313615,0.783393,0.379199,0.553561,0.0155317,0.925614,0.925492,0.908766,0.449532,0.564239,0.774619,0.360717,0.639196,0.0628947,0.0427417,0.376398,0.072716,0.53276,0.814501,0.747609,0.625037,0.251176,0.43189,0.342174,0.737926,0.0190164,0.0608845,0.672102,0.311653,0.272694,0.34263,0.955026,0.602649,0.975861,0.19617,0.32984,0.927176,0.643336,0.643249,0.486887,0.453127,0.811451,0.0868091,0.899724,0.169737,0.369361,0.555315,0.770943,0.769191,0.575275,0.946097,0.226786,0.569807,0.379293,0.0167518,0.142767,0.844494,0.793913,0.68531,0.168105,0.859724,0.0171995,0.138511,0.223259,0.132755,0.694296,0.307541,0.573364,0.963648,0.88002,0.507095,0.906823,0.923937,0.845701,0.161217,0.293512,0.404485,0.966094,0.114539,0.584233,0.0162045,0.395409,0.640036,0.378947,0.567567,0.477034,0.771893,0.192075,0.0299921,0.317226,0.451421,0.443419,0.559057,0.0524472,0.297135,0.294383,0.643524,0.904666,0.333154,0.877745,0.795414,0.590379,0.834753,0.769706,0.634222,0.225373,0.628979,0.467186,0.636658,0.353355,0.591478,0.401072,0.781106,0.519769,0.158794,0.0768831,0.795811,0.097974,0.128017,0.130208,0.482595,0.679591,0.474777,0.830506,0.655374,0.887045,0.864479,0.620114,0.155461,0.104711,0.411639,0.295132,0.518785,0.52278,0.274557,0.308914,0.45432,0.277895,0.453085,0.762156,0.055433,0.868822,0.62747,0.911925,0.855423,0.00670975,0.898466,0.0685445,0.423282,0.89351,0.712994,0.103815,0.82118,0.620565,0.591055,0.337018,0.106753,0.311356,0.248421,0.83182,0.770557,0.674809,0.488831,0.673172,0.859015,0.414614,0.651593,0.716266,0.578369,0.0833382,0.974545,0.207575,0.126661,0.686262,0.139254,0.822541,0.536863,0.939326,0.859895,0.0985242,0.635491,0.830312,0.941552,0.823855,0.0126429,0.015697,0.362992,0.136518,0.0818396,0.957499,0.569392,0.276097,0.261907,0.833991,0.130405,0.23506,0.558968,0.275187,0.745777,0.964607,0.695645,0.797358,0.758107,0.961814,0.243928,0.651463,0.977363,0.404024,0.493378,0.196095,0.217226,0.193103,0.324537,0.899077,0.660848,0.264181,0.478078,0.346533,0.156335,0.255418,0.826453,0.37136,0.54893,0.63683,0.0952058,0.819323,0.607548,0.803299,0.769766,0.728893,0.800925,0.576196,0.746424,0.850713,0.981925,0.142296,0.167336,0.901212,0.358304,0.75714,0.874586,0.050068,0.25519,0.578099,0.847139,0.578703,0.307409,0.492359,0.384475,0.971014,0.482859,0.636887,0.947217,0.971287,0.98378,0.615621,0.777546,0.3721,0.284392,0.727495,0.491346,0.471601,0.727698,0.960841,0.500091,0.639242,0.403294,0.122136,0.519344,0.527397,0.321306,0.98095,0.861374,0.638046,0.158413,0.567713,0.586415,0.531748,0.192258,0.219606,0.822115,0.3536,0.350766,0.920117,0.0944318,0.790608,0.0361426,0.516335,0.280671,0.928215,0.687299,0.662779,0.976651,0.286508,0.339425,0.262197,0.514785,0.878023,0.482334,0.606862,0.525499,0.581772,0.108484,0.960116,0.607911,0.905486,0.894312,0.747851,0.644899,0.133092,0.211303,0.403742,0.395562,0.640698,0.526368,0.457914,0.549361,0.547495,0.242682,0.564111,0.811128,0.0860193,0.737942,0.38688,0.010931,0.351112,0.989779,0.661289,0.301541,0.596553,0.541707,0.911234,0.830784,0.215383,0.0434114,0.155002,0.428913,0.324707,0.942256,0.904494,0.374462,0.456388,0.169814,0.875826,0.473101,0.101063,0.171433,0.664312,0.551825,0.884651,0.842109,0.922622,0.390679,0.819541,0.789446,0.609407,0.719269,0.375971,0.990394,0.560767,0.0790288,0.997558,0.727344,0.807565,0.0480847,0.174401,0.474304,0.319027,0.107904,0.709317,0.990386,0.475358,0.574799,0.524128,0.249279,0.89404,0.0660114,0.267318,0.303054,0.92332,0.0950134,0.566799,0.771872,0.0912874,0.275211,0.1914,0.320699,0.866767,0.631264,0.761766,0.448491,0.299398,0.313734,0.0744095,0.860131,0.435162,0.500785,0.556764,0.753289,0.744417,0.407185,0.14218,0.341547,0.916874,0.938915,0.586453,0.174416,0.186879,0.808518,0.971011,0.0599215,0.95522,0.329525,0.0383911,0.936264,0.829611,0.516779,0.781548,0.196827,0.530959,0.544543,0.0244548,0.66167,0.122795,0.522378,0.0122102,0.212433,0.0584625,0.889021,0.240963,0.612564,0.951524,0.657996,0.178762,0.675677,0.68256,0.000432849,0.533309,0.07907,0.11051,0.746501,0.911385,0.923234,0.14722,0.15239,0.68538,0.85724,0.952943,0.950623,0.534798,0.918651,0.705048,0.326488,0.455765,0.546809,0.524399,0.900852,0.724521,0.821493,0.538808,0.110184,0.477911,0.0648385,0.394724,0.462419,0.372512,0.00720465,0.098968,0.0164758,0.889952,0.110361,0.594971,0.45693,0.130717,0.171467,0.35983,0.218414,0.57557,0.878472,0.126147,0.350421,0.449049,0.721466,0.955817,0.869966,0.278448,0.667961,0.468407,0.827312,0.851873,0.288192,0.56707,0.266899,0.313445,0.519336,0.682993,0.564685,0.665621,0.390812,0.135759,0.940966,0.769131,0.897923,0.423956,0.107928,0.348608,0.842423,0.324731,0.812195,0.243596,0.882766,0.203919,0.774791,0.73224,0.0729373,0.707231,0.00476676,0.891217,0.325219,0.519992,0.0817516,0.380529,0.365745,0.929842,0.139308,0.753833,0.489453,0.906214,0.425767,0.750094,0.803707,0.492176,0.888906,0.861201,0.883872,0.782778,0.894156,0.588283,0.417898,0.152171,0.168019,0.287197,0.87984,0.70167,0.812805,0.173566,0.22325,0.0540486,0.0161512,0.67827,0.838845,0.367384,0.472794,0.328524,0.300513,0.946365,0.718884,0.735339,0.78145,0.924385,0.350094,0.127916,0.262069,0.0594494,0.075646,0.695948,0.472385,0.682395,0.826852,0.197466,0.500454,0.387883,0.998188,0.0644405,0.157898,0.820334,0.0769094,0.543534,0.225468,0.916229,0.0711035,0.502154,0.312918,0.816452,0.885629,0.37344,0.240856,0.217483,0.601659,0.263601,0.127415,0.533014,0.587262,0.984261,0.517487,0.523015,0.534245,0.093847,0.49106,0.116473,0.98027,0.393407,0.10629,0.8031,0.725779,0.962593,0.370062,0.0482728,0.0902831,0.702795,0.685567,0.143788,0.312978,0.0576735,0.599495,0.291499,0.840542,0.846588,0.419276,0.285927,0.217087,0.624055,0.67737,0.116377,0.158553,0.28038,0.393175,0.11774,0.497477,0.301357,0.228116,0.126275,0.543127,0.623034,0.197897,0.491885,0.661982,0.0514475,0.19775,0.48908,0.961977,0.131712,0.127493,0.583416,0.981068,0.68541,0.534274,0.639618,0.951317,0.776158,0.906338,0.789777,0.289194,0.470079,0.520536,0.948936,0.215094,0.413897,0.0261527,0.00635225,0.999848,0.756017,0.165618,0.361005,0.139777,0.356031,0.42503,0.877429,0.186621,0.954852,0.337892,0.597228,0.0251619,0.389232,0.196916,0.121686,0.125632,0.488706,0.8938,0.172718,0.461278,0.606716,0.424618,0.885815,0.968079,0.304413,0.259283,0.347027,0.786038,0.139925,0.935317,0.34284,0.902031,0.528759,0.0979252,0.441712,0.103373,0.0998476,0.201434,0.889283,0.0936568,0.329203,0.144018,0.79779,0.161959,0.206023,0.12823,0.617847,0.402571,0.131347,0.780742,0.268827,0.148405,0.418761,0.60163,0.724109,0.789518,0.108793,0.105631,0.504391,0.579695,0.983341,0.0878628,0.786132,0.888105,0.0982321,0.842457,0.726787,0.887637,0.0238134,0.769091,0.679389,0.704459,0.696692,0.207076,0.635377,0.492663,0.638756,0.514132,0.415085,0.573451,0.148035,0.862158,0.892662,0.677128,0.499144,0.231879,0.74079,0.918198,0.130368,0.281582,0.955636,0.520554,0.568117,0.638846,0.33319,0.28328,0.325797,0.443354,0.80116,0.371124,0.717116,0.0567567,0.946953,0.0302469,0.58979,0.0417958,0.758498,0.0210872,0.0377972,0.375288,0.704526,0.717452,0.817622,0.60486,0.947813,0.897496,0.690317,0.732865,0.327987,0.459439,0.236862,0.431449,0.909147,0.376816,0.601131,0.156094,0.50791,0.253608,0.211193,0.23966,0.896998,0.778378,0.362494,0.63102,0.0888044,0.355684,0.839973,0.862264,0.0733978,0.71192,0.416871,0.428021,0.00580627,0.723205,0.560522,0.956986,0.0631651,0.537038,0.477396,0.290776,0.312157,0.843657,0.392511,0.109929,0.432796,0.276398,0.0308425,0.760606,0.144742,0.946683,0.794888,0.894059,0.266569,0.938996,0.349509,0.427752,0.974614,0.0261589,0.724792,0.0214697,0.0871184,0.632175,0.0850036,0.69213,0.98077,0.955856,0.920327,0.0341371,0.825543,0.757861,0.486335,0.823354,0.61898,0.708001,0.798067,0.922313,0.846064,0.159057,0.925158,0.097877,0.731953,0.0132084,0.792905,0.158945,0.810389,0.408543,0.585873,0.566866,0.204896,0.0506568,0.954162,0.285049,0.0609511,0.105615,0.646109,0.483971,0.0711427,0.423573,0.592291,0.904446,0.0347809,0.998326,0.597485,0.779365,0.190101,0.107068,0.760994,0.576713,0.557425,0.668716,0.243498,0.307348,0.230046,0.6248,0.0457034,0.840096,0.632095,0.614778,0.0627572,0.0663719,0.423397,0.118284,0.665899,0.0841352,0.416059,0.618645,0.960377,0.950378,0.216089,0.240824,0.865893,0.858511,0.350803,0.0164246,0.465988,0.886747,0.43679,0.696719,0.191872,0.229275,0.378228,0.523405,0.458902,0.24221,0.444201,0.0839527,0.977757,0.90246,0.686572,0.871689,0.303833,0.556387,0.316675,0.125036,0.00867981,0.910052,0.966259,0.965942,0.933622,0.0100712,0.562872,0.299975,0.180321,0.430923,0.441019,0.275294,0.302639,0.277419,0.209697,0.728312,0.0163305,0.766056,0.0308035,0.661263,0.234533,0.799274,0.866888,0.710136,0.553294,0.238995,0.542241,0.963437,0.957271,0.226819,0.204866,0.422502,0.254471,0.0304711,0.0169656,0.206265,0.965767,0.140946,0.231419,0.636697,0.9642,0.870444,0.743277,0.059948,0.469758,0.504232,0.859389,|0.591267,0.27208,0.0593532,0.996235,0.145193,0.216311,0.809949,0.649431,0.368498,0.31153,0.301235,0.00808787,0.392374,0.358585,0.685339,0.280966,0.889445,0.922993,0.211155,0.031548,0.85313,0.93156,0.501406,0.692984,0.909909,0.557949,0.316539,0.0759578,0.716832,0.0907778,0.326753,0.229569,0.958417,0.290861,0.86542,0.83573,0.882916,0.0191222,0.292365,0.652311,0.255243,0.584144,0.806578,0.955728,0.161009,0.108127,0.491005,0.876028,0.928451,0.164346,0.0386521,0.906972,0.18674,0.117313,0.0280611,0.845695,0.85165,0.302717,0.857586,0.0225174,0.808591,0.0614897,0.958773,0.968877,0.362929,0.700608,0.407479,0.404267,0.670067,0.784992,0.0240431,0.486408,0.670111,0.568429,0.544087,0.606441,0.252644,0.9095,0.75638,0.326549,0.370845,0.741621,0.193802,0.103611,0.950908,0.628164,0.019662,0.385394,0.258803,0.586437,0.935108,0.279853,0.556483,0.287969,0.00955397,0.411305,0.816336,0.607265,0.612736,0.425059,0.861413,0.418872,0.0911308,0.742909,0.517617,0.0345384,0.252517,0.278964,0.0762352,0.0368121,0.625286,0.647333,0.253474,0.145142,0.309568,0.922503,0.92204,0.156887,0.64551,0.0286757,0.0805879,0.661549,0.912099,0.578899,0.755585,0.577183,0.357732,0.633966,0.171521,0.176642,0.422823,0.740788,0.267393,0.284654,0.0730605,0.171895,0.536155,0.5245,0.31065,0.801468,0.315036,0.301715,0.188455,0.626451,0.783359,0.700853,0.422213,0.696224,0.442584,0.513191,0.855754,0.313472,0.538413,0.429585,0.286391,0.613034,0.837338,0.589352,0.466803,0.448421,0.97623,0.887353,0.344089,0.644422,0.785313,0.567874,0.163468,0.695195,0.769473,0.188497,0.952531,0.879213,0.120423,0.907471,0.493431,0.597247,0.192392,0.516482,0.384587,0.919062,0.954186,0.811217,0.0220821,0.123256,0.93234,0.361871,0.0151041,0.854471,0.759088,0.728346,0.906545,0.435283,0.945337,0.23455,0.737696,0.477793,0.948399,0.602567,0.909704,0.266105,0.509555,0.90404,0.889516,0.0837562,0.295238,0.523701,0.395834,0.757506,0.2608,0.122384,0.71706,0.792716,0.206,0.602972,0.938302,0.891444,0.806332,0.620234,0.945677,0.335047,0.135387,0.899692,0.617,0.133939,0.399309,0.0370125,0.12412,0.82537,0.282345,0.0274544,0.684739,0.449979,0.38602,0.542148,0.334773,0.933651,0.983521,0.260339,0.898946,0.471082,0.492342,0.172406,0.261819,0.408961,0.686508,0.323655,0.613941,0.285043,0.815847,0.473169,0.922784,0.380823,0.15231,0.424327,0.767857,0.928778,0.241905,0.598122,0.643343,0.498492,0.869332,0.878078,0.530093,0.791001,0.419325,0.625491,0.434308,0.890668,0.165581,0.917637,0.560167,0.644861,0.71431,0.425449,0.0249321,0.58639,0.413779,0.8272,0.884845,0.425603,0.691408,0.151606,0.242592,0.0623409,0.390515,0.651781,0.614057,0.170911,0.673517,0.774724,0.595384,0.893963,0.188911,0.945621,0.956499,0.00465584,0.12393,0.432957,0.824454,0.965532,0.0931178,0.808638,0.740675,0.485796,0.95858,0.376479,0.667569,0.243142,0.126131,0.616509,0.950793,0.335211,0.887722,0.212412,0.835087,0.46935,0.589937,0.639905,0.374945,0.0982398,0.825268,0.644735,0.577232,0.233982,0.305323,0.586829,0.354841,0.479999,0.545537,0.482891,0.530415,0.867378,0.120541,0.277608,0.0777314,0.177079,0.885735,0.659082,0.705635,0.0933875,0.257319,0.013548,0.614149,0.27594,0.680991,0.0171881,0.891007,0.974518,0.477911,0.774784,0.139077,0.526093,0.446765,0.633439,0.214845,0.237862,0.0801618,0.703821,0.00326717,0.194155,0.412457,0.251924,0.517503,0.799385,0.915828,0.744656,0.254483,0.595602,0.524471,0.684383,0.508194,0.215956,0.210805,0.381059,0.542639,0.284275,0.763132,0.937085,0.149339,0.531977,0.838269,0.550369,0.104557,0.0127603,0.90459,0.190588,0.222189,0.223484,0.971993,0.482413,0.072356,0.691033,0.211192,0.907152,0.00298852,0.413167,0.332685,0.352389,0.278242,0.03942,0.821945,0.526576,0.649443,0.639931,0.419949,0.68631,0.21268,0.647551,0.242687,0.82494,0.0965268,0.0279146,0.760622,0.347151,0.623234,0.391863,0.452285,0.764532,0.978123,0.275398,0.299926,0.986916,0.0066179,0.63769,0.52904,0.00852668,0.251337,0.685056,0.877413,0.25846,0.118096,0.0687144,0.311285,0.479783,0.607344,0.411539,0.10353,0.0990075,0.57104,0.432524,0.474357,0.717407,0.0680325,0.991957,0.631639,0.71916,0.257581,0.687319,0.592744,0.378176,0.0546738,0.822716,0.372184,0.659997,0.667116,0.184834,0.0123925,0.757523,0.274617,0.223984,0.225492,0.566306,0.129885,0.367939,0.0231547,0.104152,0.954134,0.670456,0.891656,0.916491,0.468474,0.309339,0.0464106,0.0563414,0.81031,0.264572,0.933533,0.745488,0.574191,0.603993,0.198496,0.130768,0.156958,0.287553,0.349896,0.35833,0.309224,0.00688368,0.776606,0.234842,0.0407899,0.209217,0.654616,0.0601609,0.553067,0.960826,0.851212,0.864404,0.319258,0.0889121,0.0495169,0.958346,0.369314,0.748402,0.557488,0.5628,0.986719,0.890935,0.75158,0.14698,0.694872,0.703162,0.771224,0.703184,0.515282,0.925125,0.757634,0.938252,0.460578,0.497116,0.517693,0.202529,0.288681,0.589354,0.365087,0.949024,0.311401,0.812359,0.858169,0.164596,0.607687,0.175381,0.727146,0.912473,0.753741,0.560757,0.0701113,0.293912,0.551447,0.437089,0.48137,0.658235,0.0847952,0.33673,0.462222,0.0762236,0.678676,0.516851,0.231936,0.221913,0.865377,0.783843,0.438578,0.871676,0.887184,0.861797,0.089121,0.699754,0.45073,0.0633081,0.998166,0.729447,0.459522,0.343276,0.639414,0.387246,0.953607,0.905712,0.544685,0.253705,0.985284,0.710918,0.381071,0.0157196,0.947081,0.540634,0.647138,0.718734,0.977137,0.137711,0.900633,0.829495,0.444006,0.934392,0.663702,0.894819,0.645698,0.0604591,0.953034,0.655373,0.849999,0.386722,0.826125,0.0358449,0.420151,0.725942,0.488642,0.482929,0.658346,0.541746,0.0524533,0.0667377,0.972617,0.238796,0.837825,0.280652,0.891088,0.851316,0.945431,0.683399,0.196366,0.973598,0.483836,0.325688,0.812859,0.628009,0.120751,0.984163,0.346303,0.79644,0.960979,0.269497,0.320746,0.525781,0.0542678,0.954789,0.124398,0.191969,0.547242,0.103977,0.998564,0.180216,0.676366,0.912788,0.646553,0.211658,0.88764,0.937154,0.435425,0.582162,0.140458,0.388532,0.529889,0.649659,0.710893,0.434615,0.85435,0.977835,0.80096,0.549886,0.509557,0.439989,0.414433,0.189532,0.588891,0.436264,0.484913,0.848495,0.888761,0.666441,0.512947,0.65668,0.277566,0.783054,0.649751,0.0920799,0.758257,0.00217849,0.417861,0.525317,0.762241,0.608354,0.231639,0.870826,0.0686738,0.98455,0.694507,0.984736,0.942787,0.720459,0.0738803,0.585368,0.993715,0.401501,0.95496,0.975274,0.775389,0.293859,0.513088,0.218806,0.0381507,0.137219,0.414753,0.956742,0.309671,0.270111,0.257345,0.67907,0.57119,0.302829,0.727326,0.555192,0.80778,0.634461,0.054131,0.0938442,0.329922,0.957723,0.619129,0.410619,0.719831,0.157195,0.630663,0.94435,0.111803,0.0612196,0.381537,0.505486,0.830722,0.923819,0.816473,0.579839,0.125477,0.556973,0.791129,0.823628,0.355189,0.330492,0.488138,0.24323,0.768044,0.854252,0.374641,0.559984,0.4829,0.791876,0.472123,0.555213,0.571071,0.469815,0.14039,0.526816,0.0645685,0.340005,0.325403,0.7421,0.290417,0.626565,0.938239,0.300623,0.430391,0.260556,0.871266,0.494875,0.928174,0.135148,0.447342,0.664393,0.826332,0.597536,0.488317,0.0715168,0.77876,0.887653,0.279713,0.223509,0.197013,0.0235184,0.49139,0.289345,0.678458,0.339932,0.508272,0.219327,0.98845,0.917593,0.848795,0.860365,0.248421,0.422058,0.189892,0.397177,0.0935489,0.415451,0.198565,0.274763,0.890782,0.572685,0.989591,0.143795,0.427136,0.681145,0.774642,0.0675981,0.853532,0.869872,0.439642,0.204986,0.179465,0.0874285,0.660032,0.180423,0.878459,0.767843,0.851422,0.476256,0.848362,0.0774367,0.0553411,0.471611,0.449404,0.524815,0.123015,0.905956,0.242917,0.679409,0.206497,0.899287,0.889145,0.0780683,0.133064,0.223084,0.17701,0.440734,0.890136,0.337614,0.0407084,0.318534,0.751667,0.0946701,0.645191,0.496544,0.938171,0.952499,0.477241,0.590803,0.327833,0.129838,0.7438,0.83616,0.462638,0.300292,0.10397,0.417609,0.0237395,0.638645,0.42125,0.988729,0.268414,0.717055,0.740056,0.383669,0.843806,0.344397,0.05818,0.110752,0.720723,0.847226,0.115233,0.605717,0.840175,0.105624,0.172876,0.689827,0.712338,0.685533,0.680035,0.646613,0.149776,0.815275,0.929053,0.231453,0.541496,0.727968,0.856737,0.813975,0.936566,0.355138,0.973119,0.948734,0.203151,0.967797,0.746625,0.659015,0.365373,0.650685,0.465314,0.0777192,0.306009,0.43014,0.903515,0.217682,0.426202,0.139782,0.417331,0.740066,0.842401,0.506761,0.646222,0.596226,0.0153476,0.41709,0.934042,0.931889,0.497216,0.0223107,0.545344,0.80494,0.381055,0.987802,0.533871,0.802503,0.313193,0.961166,0.527355,0.323971,0.47331,0.539762,0.171521,0.67503,0.808564,0.592179,0.28578,0.965011,0.622014,0.38828,0.0590338,0.467812,0.106979,0.346469,0.326367,0.591924,0.880181,0.382098,0.898694,0.777004,0.768162,0.662126,0.797857,0.959346,0.979936,0.569766,0.659388,0.212382,0.370601,0.795802,0.974299,0.383455,0.349699,0.440532,0.756694,0.717633,0.597447,0.186128,0.516096,0.570156,0.554783,0.995691,0.429072,0.608953,0.0425885,0.799113,0.605257,0.2782,0.290985,0.879561,0.303782,0.438662,0.0211066,0.369736,0.0487567,0.897287,0.767788,0.252687,0.842222,0.731011,0.520384,0.389943,0.67402,0.687987,0.745818,0.66689,0.701112,0.160465,0.512976,0.752862,0.509808,0.611726,0.676372,0.897597,0.824402,0.886336,0.761588,0.64498,0.31745,0.852057,0.802031,0.959182,0.379205,0.460192,|0.0519532,0.270182,0.663648,0.332144,0.280136,0.841513,0.258169,0.777879,0.306034,0.773682,0.848722,0.530491,0.577388,0.0413449,0.241881,0.739075,0.983083,0.287871,0.621064,0.482579,0.213435,0.662228,0.343745,0.146341,0.0918618,0.262943,0.939138,0.303942,0.488447,0.310758,0.558665,0.32106,0.0967175,0.967134,0.448672,0.625227,0.656006,0.3651,0.755607,0.174348,0.698706,0.00491142,0.990876,0.845182,0.588207,0.366118,0.468297,0.0930265,0.0775395,0.801242,0.10043,0.696588,0.0748436,0.971445,0.0743482,0.830255,0.197389,0.0369802,0.76097,0.40382,0.433981,0.57631,0.766219,0.605966,0.628586,0.0537995,0.111493,0.0864453,0.37176,0.845136,0.00467324,0.23051,0.54953,0.0550587,0.844869,0.487111,0.188245,0.671921,0.833545,0.542822,0.233411,0.382668,0.801888,0.701272,0.524563,0.195495,0.237827,0.209771,0.670835,0.605477,0.826334,0.884824,0.504299,0.167874,0.157057,0.699425,0.129378,0.144312,0.385739,0.414702,0.792757,0.762327,0.972991,0.434246,0.623363,0.0678756,0.708144,0.950603,0.0848635,0.136752,0.866457,0.114431,0.718741,0.437509,0.797371,0.161067,0.524525,0.00507706,0.267435,0.572057,0.0776991,0.557118,0.485599,0.385994,0.295307,0.572682,0.886617,0.0991192,0.925683,0.36878,0.201399,0.791491,0.302521,0.43908,0.232416,0.533933,0.970417,0.556311,0.962956,0.630045,0.534278,0.559644,0.897833,0.515644,0.317125,0.99983,0.867627,0.545908,0.0245818,0.154505,0.21215,0.00418854,0.841752,0.478206,0.276228,0.00749856,0.244044,0.789271,0.563898,0.640955,0.831238,0.925847,0.193903,0.298487,0.73843,0.312922,0.54038,0.275961,0.532973,0.916547,0.685758,0.5972,0.126152,0.547422,0.782257,0.977322,0.661798,0.790852,0.39601,0.420441,0.596625,0.656678,0.911988,0.91306,0.528809,0.0564367,0.738494,0.380422,0.157622,0.285426,0.0977988,0.879543,0.154337,0.0887085,0.248873,0.502709,0.970629,0.648759,0.536619,0.206097,0.110158,0.42904,0.655852,0.0822296,0.985157,0.425606,0.851671,0.93912,0.575643,0.719396,0.298211,0.0888944,0.72352,0.0548075,0.829185,0.286724,0.891184,0.340892,0.270334,0.113109,0.440462,0.365456,0.545767,0.977028,0.844742,0.443884,0.642934,0.231337,0.29449,0.88192,0.454796,0.706329,0.324218,0.0028584,0.775446,0.0423869,0.498758,0.572666,0.446534,0.0652341,0.412555,0.0112165,0.542386,0.797505,0.858046,0.242246,0.0558377,0.509463,0.461364,0.789313,0.546732,0.117,0.483621,0.00189853,0.495619,0.84236,0.318794,0.977807,0.0120752,0.00778598,0.506789,0.566989,0.726436,0.376782,0.88274,0.640091,0.682415,0.20927,0.0644431,0.609073,0.402182,0.404413,0.344955,0.718067,0.167212,0.721496,0.92491,0.321914,0.245986,0.562216,0.182533,0.700079,0.619403,0.314449,0.742538,0.378537,0.61648,0.811935,0.184722,0.735459,0.308906,0.763976,0.314368,0.235168,0.257167,0.271573,0.334399,0.706478,0.859839,0.965208,0.711443,0.664192,0.125663,0.5663,0.153043,0.443404,0.016584,0.407563,0.669954,0.0168511,0.0542859,0.142389,0.559943,0.370059,0.61025,0.895226,0.390542,0.676708,0.205731,0.646829,0.506779,0.848856,0.461779,0.981064,0.0563328,0.842998,0.806814,0.262181,0.0404821,0.278241,0.534811,0.812276,0.921971,0.875082,0.941287,0.55349,0.892766,0.990977,0.0867626,0.308703,0.983985,0.771006,0.926634,0.0666808,0.50412,0.55387,0.309199,0.444328,0.751415,0.836564,0.156251,0.0439084,0.344537,0.16899,0.284873,0.471071,0.842703,0.0578078,0.0602098,0.196227,0.375316,0.0486182,0.724578,0.914722,0.289803,0.107938,0.965024,0.841346,0.800868,0.0585015,0.238479,0.688325,0.503201,0.839688,0.869669,0.668824,0.95772,0.228329,0.73698,0.270802,0.889193,0.310355,0.5562,0.86814,0.338061,0.387003,0.397138,0.105504,0.828138,0.0429777,0.710975,0.252321,0.459307,0.976128,0.798421,0.649914,0.740742,0.200774,0.853175,0.213701,0.705793,0.532603,0.662745,0.385058,0.0473278,0.274348,0.471128,0.762832,0.519451,0.507509,0.14483,0.300636,0.300065,0.174119,0.430175,0.0147003,0.477736,0.791107,0.286705,0.679968,0.114795,0.00717133,0.646197,0.371848,0.837078,0.235108,0.428161,0.182223,0.600014,0.382603,0.108483,0.521588,0.68386,0.939397,0.280068,0.2124,0.922865,0.262108,0.426085,0.67419,0.968016,0.105918,0.0522109,0.813698,0.912122,0.900943,0.86667,0.00474483,0.189753,0.837906,0.62428,0.153766,0.522022,0.926826,0.644584,0.913224,0.523035,0.385723,0.422998,0.669159,0.929848,0.75405,0.667266,0.397912,0.185845,0.403035,0.0711842,0.535916,0.999127,0.484018,0.0928364,0.397512,0.56931,0.0630434,0.391917,0.978238,0.649908,0.45809,0.205265,0.912106,0.554976,0.184392,0.136035,0.96739,0.613464,0.324755,0.724328,0.846457,0.175834,0.139824,0.15532,0.806989,0.877258,0.199336,0.00901908,0.807589,0.530634,0.212241,0.370168,0.526142,0.603558,0.853507,0.419826,0.0667449,0.798495,0.337158,0.710139,0.739366,0.147197,0.755397,0.56938,0.328942,0.589919,0.320221,0.78243,0.674208,0.375085,0.373088,0.335293,0.605785,0.222207,0.954639,0.345725,0.70774,0.0984948,0.786478,0.396252,0.762784,0.304623,0.276122,0.392624,0.0593713,0.182836,0.00792998,0.0786377,0.542499,0.441836,0.40175,0.194918,0.187377,0.941648,0.725752,0.80769,0.0626302,0.146078,0.0462251,0.450116,0.386921,0.925621,0.160339,0.983665,0.294598,0.867586,0.789495,0.00855285,0.630571,0.012602,0.314534,0.0433027,0.309377,0.738909,0.927025,0.899854,0.791807,0.975265,0.298519,0.315974,0.616261,0.982781,0.644021,0.740944,0.285555,0.739497,0.332209,0.257049,0.411619,0.0773973,0.0637108,0.640047,0.638582,0.172166,0.542351,0.405138,0.0198421,0.824051,0.0223333,0.0569494,0.112731,0.547367,0.194426,0.637045,0.878737,0.847343,0.756783,0.891695,0.70598,0.258015,0.641169,0.748899,0.688739,0.512811,0.624302,0.731186,0.0524985,0.349279,0.914928,0.825086,0.375188,0.140997,0.223529,0.219237,0.517121,0.867445,0.526219,0.0679122,0.926124,0.777319,0.885092,0.711247,0.77847,0.977994,0.32923,0.0616827,0.218793,0.192002,0.232719,0.456563,0.861322,0.87636,0.373033,0.34357,0.213264,0.757435,0.50197,0.936261,0.00377733,0.32673,0.0808928,0.0686324,0.69553,0.488922,0.98631,0.712895,0.782415,0.586718,0.661515,0.643761,0.165921,0.837889,0.865037,0.432453,0.625476,0.600656,0.669488,0.082503,0.573345,0.133174,0.449265,0.352719,0.0927632,0.81369,0.12726,0.741729,0.667822,0.858613,0.922418,0.613535,0.0325816,0.275054,0.127639,0.0716603,0.763445,0.554547,0.193061,0.635528,0.400176,0.22952,0.157445,0.083868,0.292839,0.642239,0.731994,0.613038,0.0538602,0.428217,0.705899,0.171634,0.339589,0.138408,0.419585,0.081185,0.941622,0.153601,0.662907,0.492352,0.779658,0.395424,0.578189,0.319862,0.347702,0.0435744,0.746819,0.978857,0.727115,0.99985,0.216482,0.61318,0.985445,0.0352916,0.68382,0.846866,0.348166,0.609005,0.326473,0.974884,0.479144,0.661561,0.923911,0.673659,0.555277,0.382734,0.82231,0.834823,0.475766,0.940951,0.0304457,0.0571234,0.633666,0.639233,0.323956,0.0601652,0.644567,0.194418,0.347562,0.460467,0.152973,0.334164,0.726486,0.6696,0.923697,0.222169,0.828449,0.341186,0.585537,0.285883,0.38659,0.613294,0.475953,0.381974,0.229168,0.934931,0.208358,0.930353,0.853119,0.183183,0.239591,0.23956,0.18695,0.583459,0.79927,0.0587073,0.755289,0.18471,0.911763,0.332964,0.138339,0.259666,0.805781,0.0378086,0.183376,0.00857168,0.902019,0.499038,0.784317,0.420753,0.163418,0.77461,0.720117,0.777913,0.192699,0.527177,0.846506,0.330477,0.819264,0.965876,0.853571,0.247346,0.107297,0.0180064,0.390364,0.946997,0.259449,0.618534,0.0941869,0.468932,0.918871,0.501309,0.000763178,0.700197,0.616564,0.45798,0.722434,0.183789,0.290288,0.129193,0.449785,0.520519,0.790815,0.5302,0.484335,0.852352,0.120459,0.0118018,0.378786,0.382002,0.105029,0.303712,0.857032,0.0778646,0.104448,0.138051,0.0311124,0.466822,0.868841,0.717604,0.704164,0.735456,0.606959,0.457618,0.364413,0.816888,0.277377,0.227697,0.833486,0.311908,0.79851,0.161125,0.260277,0.224183,0.212896,0.271293,0.845747,0.545625,0.810468,0.689266,0.024268,0.720231,0.532258,0.372711,0.711402,0.218201,0.331886,0.95345,0.0851591,0.375362,0.761332,0.866018,0.442488,0.0802913,0.98016,0.664087,0.957387,0.877552,0.390781,0.410039,0.3448,0.569791,0.0435068,0.958864,0.954638,0.49988,0.201444,0.23279,0.191485,0.0751669,0.916692,0.492877,0.450585,0.063272,0.0259858,0.228286,0.212353,0.842783,0.488176,0.757873,0.784897,0.551977,0.132315,0.722133,0.548027,0.3328,0.825719,0.185927,0.409872,0.5519,0.81339,0.381842,0.361381,0.431879,0.290666,0.0882852,0.828835,0.136703,0.46746,0.482367,0.904815,0.812135,0.716626,0.912909,0.642783,0.259737,0.934723,0.702394,0.277823,0.303935,0.324184,0.093657,0.930973,0.22624,0.955138,0.392384,0.475987,0.656437,0.993078,0.246597,0.677843,0.237848,0.545673,0.0729132,0.277149,0.744856,0.860285,0.307976,0.567779,0.376414,0.364695,0.343409,0.578084,0.644408,0.649073,0.129622,0.711825,0.755283,0.615036,0.670412,0.303204,0.445497,0.283968,0.758484,0.476447,0.721611,0.522927,0.802891,0.418997,0.427947,0.197635,0.0026772,0.645579,0.064831,0.919218,0.136652,0.611255,0.427627,0.500302,0.9207,0.984863,0.0830942,0.62306,0.427327,0.408715,0.77741,0.747867,0.920454,0.183307,0.692657,0.751086,0.545201,0.887944,0.174908,0.292284,0.866196,0.838672,0.0609158,0.382622,0.151793,0.0570509,0.607556,0.716619,0.583307,0.26906,0.135942,0.065522,0.393467,0.265757,0.782767,0.475971,0.535089,0.688231,0.386122,0.881417,|0.614657,0.768277,0.428013,0.739398,0.488701,0.867662,0.632724,0.679318,0.303799,0.468824,0.637417,0.940872,0.700862,0.128393,0.928093,0.728055,0.419691,0.437648,0.0616422,0.410383,0.323583,0.118736,0.716251,0.917564,0.544391,0.903769,0.977626,0.132965,0.688209,0.406071,0.546704,0.685291,0.63186,0.805213,0.301449,0.00382775,0.282547,0.24646,0.930745,0.73588,0.441524,0.308708,0.569374,0.67378,0.834016,0.825512,0.567653,0.249245,0.0893482,0.831331,0.603515,0.585522,0.752933,0.937722,0.507084,0.811555,0.209978,0.0226787,0.854624,0.720782,0.138029,0.222222,0.294872,0.152985,0.496943,0.298963,0.710265,0.233843,0.904211,0.342935,0.495818,0.423828,0.342776,0.849449,0.953942,0.334803,0.481472,0.80192,0.0518752,0.337901,0.498352,0.832085,0.135236,0.0309524,0.346421,0.0606682,0.996452,0.475815,0.164735,0.938045,0.00526536,0.850452,0.406653,0.197259,0.927302,0.814242,0.294152,0.756126,0.536324,0.210707,0.521627,0.950477,0.936016,0.414008,0.509008,0.352917,0.763342,0.00503874,0.602938,0.879131,0.685243,0.753066,0.516387,0.298419,0.0605221,0.0124896,0.381596,0.781953,0.73906,0.0071004,0.129293,0.982897,0.754362,0.777081,0.154594,0.187896,0.541748,0.248614,0.625151,0.410892,0.0600237,0.880054,0.776756,0.684289,0.719358,0.677166,0.225089,0.274152,0.0375444,0.654489,0.368501,0.450812,0.945073,0.317159,0.964118,0.773008,0.33668,0.842679,0.526356,0.237906,0.225196,0.265258,0.598776,0.565467,0.232449,0.770554,0.776636,0.651038,0.209059,0.0422222,0.410178,0.381328,0.496126,0.474741,0.205759,0.977189,0.782099,0.909422,0.158283,0.151083,0.761923,0.722668,0.776623,0.152907,0.353053,0.796928,0.516488,0.289348,0.791541,0.950586,0.874552,0.76251,0.037595,0.569758,0.117253,0.431805,0.259872,0.00837493,0.337708,0.415144,0.59361,0.107876,0.342956,0.521875,0.0774729,0.125076,0.169679,0.479303,0.030483,0.256528,0.395513,0.828283,0.236844,0.00969487,0.799022,0.213741,0.337146,0.93262,0.379674,0.00245392,0.909638,0.997947,0.319891,0.899286,0.857942,0.913043,0.815808,0.514193,0.512409,0.227718,0.473774,0.503594,0.146116,0.194739,0.907016,0.518666,0.845799,0.915375,0.44312,0.36827,0.839677,0.399754,0.36272,0.87724,0.998904,0.90001,0.0411525,0.53538,0.382836,0.597234,0.557747,0.604025,0.906897,0.872492,0.609374,0.867763,0.407005,0.927972,0.902178,0.280494,0.496674,0.3424,0.122375,0.183988,0.149602,0.170774,0.174563,0.393209,0.161317,0.684854,0.716017,0.40863,0.983364,0.662125,0.34581,0.0829589,0.695609,0.725167,0.862654,0.999408,0.385733,0.657952,0.309236,0.670682,0.0506685,0.181165,0.754628,0.38087,0.455593,0.119764,0.84276,0.3554,0.0296946,0.50861,0.880835,0.941714,0.6348,0.11225,0.726333,0.90965,0.938946,0.0326756,0.846132,0.0915121,0.365203,0.203344,0.37663,0.758192,0.529361,0.179826,0.487584,0.713306,0.0117197,0.119538,0.251374,0.805527,0.951342,0.335654,0.186103,0.704621,0.746311,0.926908,0.0768265,0.999666,0.29312,0.290288,0.0425575,0.286439,0.462772,0.676138,0.302008,0.684381,0.696605,0.283548,0.143448,0.654934,0.108395,0.130308,0.512996,0.429888,0.788509,0.267433,0.605125,0.0966908,0.937088,0.288663,0.21885,0.625948,0.771808,0.505892,0.774721,0.920843,0.0237113,0.513118,0.808876,0.347013,0.949429,0.872127,0.898943,0.758398,0.794853,0.722567,0.243706,0.621031,0.133681,0.681515,0.462827,0.813178,0.349581,0.840394,0.338508,0.154468,0.0797636,0.459907,0.790607,0.809359,0.57721,0.4839,0.323986,0.519196,0.19094,0.951849,0.605756,0.354693,0.763182,0.737016,0.0489671,0.551241,0.984171,0.188539,0.993544,0.110917,0.165682,0.65322,0.0574497,0.665847,0.988195,0.748655,0.534212,0.567933,0.235141,0.262346,0.243658,0.269857,0.0409182,0.536012,0.177363,0.35956,0.863161,0.843814,0.0209969,0.789625,0.333843,0.348911,0.603362,0.642729,0.39578,0.586755,0.578572,0.217175,0.872031,0.280859,0.621553,0.0234045,0.3976,0.452064,0.754558,0.558667,0.32361,0.82919,0.753638,0.017711,0.805451,0.0267721,0.561603,0.645219,0.235994,0.373159,0.474495,0.446496,0.369054,0.541933,0.0444685,0.669327,0.238921,0.50089,0.955683,0.867234,0.0104329,0.159862,0.0295407,0.501431,0.604475,0.178699,0.536912,0.189694,0.66615,0.764774,0.358253,0.283517,0.399419,0.281509,0.456271,0.0687173,0.220841,0.097251,0.849781,0.455686,0.589975,0.00508225,0.758364,0.646087,0.963646,0.144116,0.156759,0.572494,0.167695,0.576683,0.561837,0.471593,0.372247,0.69461,0.303829,0.769976,0.602625,0.0358584,0.39627,0.511615,0.307048,0.141907,0.651452,0.666562,0.296504,0.66577,0.13694,0.706952,0.611313,0.880255,0.130896,0.287518,0.454712,0.834302,0.361458,0.424927,0.742638,0.0866616,0.126764,0.0692886,0.076627,0.000137925,0.145969,0.829476,0.139939,0.933414,0.57366,0.127571,0.694219,0.578748,0.585201,0.586765,0.683215,0.403364,0.0843043,0.949389,0.76616,0.132985,0.0907408,0.31545,0.63906,0.692989,0.147316,0.150085,0.657666,0.498467,0.666397,0.206562,0.985568,0.0990849,0.83073,0.49552,0.0299916,0.589765,0.146167,0.314002,0.877737,0.85298,0.960746,0.923758,0.91127,0.497651,0.726507,0.407135,0.786426,0.231249,0.976858,0.489349,0.303099,0.242373,0.802508,0.566403,0.776032,0.337024,0.748845,0.353022,0.538582,0.607662,0.619233,0.904682,0.0545656,0.928946,0.650242,0.429674,0.811076,0.193506,0.333599,0.596943,0.840399,0.185151,0.261768,0.00437373,0.415325,0.660888,0.850312,0.862031,0.465486,0.726544,0.615478,0.388344,0.926058,0.336017,0.438797,0.447405,0.998925,0.522444,0.99279,0.56177,0.37113,0.640889,0.709986,0.57987,0.315404,0.298472,0.956751,0.96904,0.74972,0.476657,0.345383,0.354471,0.109674,0.881566,0.466934,0.437542,0.246394,0.838424,0.587925,0.443141,0.753761,0.0142419,0.379292,0.928462,0.558995,0.415947,0.657959,0.249486,0.954448,0.318576,0.654952,0.212712,0.147382,0.479692,0.505477,0.859914,0.0841032,0.037123,0.91309,0.569131,0.0441403,0.0359448,0.990214,0.173126,0.540828,0.721906,0.537781,0.705148,0.448117,0.821405,0.169919,0.477094,0.896192,0.281975,0.181166,0.571644,0.0758984,0.00512916,0.357654,0.187856,0.872112,0.888283,0.455605,0.931645,0.744928,0.630983,0.583559,0.485015,0.228581,0.566357,0.356061,0.953498,0.763272,0.968478,0.59757,0.877442,0.935093,0.447992,0.759461,0.61673,0.421323,0.774067,0.566997,0.288785,0.826307,0.852858,0.382271,0.059715,0.963453,0.486112,0.110857,0.45223,0.669973,0.420729,0.790783,0.0212103,0.0990427,0.98582,0.0303769,0.488752,0.328005,0.724031,0.662085,0.924393,0.346082,0.838768,0.59485,0.490525,0.444329,0.615399,0.735571,0.941673,0.183642,0.348201,0.755386,0.708639,0.585218,0.888742,0.533437,0.360944,0.989599,0.638117,0.460818,0.526618,0.506857,0.491761,0.361429,0.934928,0.611363,0.874883,0.964518,0.0840541,0.171688,0.32685,0.203727,0.802153,0.447151,0.433196,0.685654,0.663877,0.0867095,0.998952,0.577751,0.0430384,0.835426,0.254803,0.0327306,0.801978,0.999265,0.664928,0.924295,0.387664,0.460383,0.499919,0.511797,0.833164,0.218578,0.561611,0.758521,0.574395,0.298115,0.361712,0.330857,0.591147,0.807668,0.399767,0.973053,0.411549,0.488568,0.0795208,0.884941,0.388653,0.110296,0.334623,0.218072,0.867251,0.378552,0.662465,0.0154291,0.856085,0.404853,0.699524,0.319408,0.176191,0.524743,0.720221,0.482285,0.95817,0.634122,0.493521,0.72938,0.628964,0.551382,0.390514,0.834171,0.0297447,0.590691,0.850251,0.789012,0.0677704,0.0483271,0.284093,0.918885,0.317983,0.489921,0.760806,0.395815,0.945516,0.25912,0.38056,0.109336,0.453968,0.0422628,0.771707,0.947882,0.469563,0.436115,0.904948,0.662156,0.759199,0.277022,0.602609,0.097293,0.695998,0.649735,0.7582,0.359253,0.732565,0.94866,0.135251,0.538277,0.487235,0.217709,0.304289,0.430292,0.525932,0.676711,0.145297,0.451987,0.937868,0.365567,0.214563,0.185083,0.197661,0.539756,0.760377,0.0351247,0.385041,0.733646,0.824168,0.866982,0.359578,0.54151,0.356589,0.24713,0.0307077,0.746668,0.54193,0.239992,0.0948404,0.111513,0.171911,0.527637,0.507887,0.291753,0.1789,0.843323,0.0455339,0.462494,0.431799,0.141823,0.2878,0.687114,0.378746,0.0794843,0.537868,0.30449,0.258213,0.516629,0.221867,0.907495,0.828287,0.3313,0.74224,0.64541,0.756653,0.378057,0.531737,0.490302,0.154186,0.15381,0.639029,0.543886,0.31436,0.820259,0.67268,0.682138,0.26376,0.244201,0.818879,0.963429,0.00318319,0.745458,0.891358,0.503264,0.783125,0.143604,0.876536,0.972777,0.210893,0.369608,0.152819,0.464414,0.293678,0.602742,0.683263,0.296299,0.0847601,0.0644264,0.225789,0.497503,0.619484,0.994508,0.0196868,0.906073,0.607601,0.601897,0.822017,0.545739,0.0539238,0.525715,0.767386,0.148637,0.625335,0.552776,0.8923,0.504799,0.00592673,0.109679,0.636429,0.676972,0.117288,0.0989444,0.262312,0.992788,0.355916,0.0144344,0.976211,0.0857982,0.506711,0.970216,0.691979,0.9018,0.0283974,0.286283,0.251107,0.796114,0.482456,0.608555,0.830165,0.751504,0.149047,0.918764,0.288624,0.691701,0.615658,0.87166,0.773756,0.075727,0.462788,0.601857,0.567708,0.137084,0.474149,0.463181,0.996854,0.714952,0.276335,0.319675,0.208955,0.832997,0.742546,0.312753,0.112095,0.311446,0.672791,0.714843,0.489713,0.151591,0.563781,0.726759,0.0403478,0.118802,0.799146,0.564335,0.65636,0.840889,0.569286,0.709528,0.408712,0.193471,0.577399,0.499833,0.544143,0.632151,0.747516,0.206067,0.422979,0.398469,0.638531,0.676657,0.226045,0.473119,0.593471,|0.286797,0.0109159,0.028534,0.535657,0.753509,0.182976,0.079772,0.625281,0.488503,0.747028,0.701676,0.723244,0.858301,0.998244,0.632063,0.995964,0.169489,0.360028,0.316744,0.878143,0.193724,0.337518,0.787525,0.285928,0.164277,0.772792,0.158266,0.222579,0.985602,0.468214,0.0297479,0.449992,0.105083,0.48988,0.917986,0.323622,0.103501,0.469129,0.479372,0.127797,0.964274,0.370523,0.305971,0.707325,0.677888,0.743385,0.752583,0.300092,0.568352,0.929927,0.202721,0.414969,0.663886,0.549005,0.870236,0.838295,0.292044,0.991166,0.269449,0.876524,0.527843,0.513976,0.53601,0.799014,0.944788,0.205124,0.267538,0.0797181,0.221186,0.568883,0.168875,0.0138004,0.592454,0.191544,0.983709,0.394324,0.716721,0.109791,0.788997,0.575463,0.107625,0.529784,0.949736,0.709941,0.362191,0.492351,0.870178,0.251949,0.668794,0.816647,0.994159,0.0365934,0.286886,0.632026,0.853696,0.0902393,0.433215,0.314175,0.776608,0.21853,0.785578,0.57517,0.794226,0.640031,0.976224,0.497367,0.355594,0.01707,0.617533,0.127834,0.741008,0.842573,0.189935,0.700045,0.702512,0.475609,0.738117,0.127119,0.312769,0.723098,0.293671,0.282891,0.0445073,0.97032,0.494151,0.0821255,0.61443,0.0870062,0.983259,0.492104,0.0360873,0.197162,0.040152,0.564332,0.620493,0.292823,0.494119,0.958425,0.516271,0.610143,0.566295,0.495891,0.614843,0.333777,0.0773024,0.319119,0.142569,0.643147,0.395204,0.956185,0.653012,0.0615183,0.775028,0.604728,0.796948,0.984295,0.852329,0.446708,0.954362,0.0442688,0.396833,0.779518,0.671048,0.697217,0.856583,0.549173,0.36128,0.71857,0.763686,0.0337133,0.580501,0.120425,0.790335,0.34036,0.711591,0.731097,0.521115,0.477881,0.288364,0.982611,0.268269,0.0450091,0.473183,0.262746,0.227326,0.7335,0.766006,0.748582,0.737582,0.603331,0.259639,0.796204,0.949851,0.542735,0.631319,0.687657,0.0559134,0.489273,0.328845,0.810335,0.510812,0.504937,0.630622,0.30542,0.11241,0.604479,0.43967,0.456731,0.0483068,0.34016,0.691829,0.0945837,0.820145,0.847625,0.0895075,0.975589,0.0102772,0.871358,0.985563,0.943476,0.860696,0.0841106,0.640569,0.757857,0.894513,0.00378299,0.896825,0.842007,0.956797,0.802276,0.587693,0.296611,0.64499,0.722805,0.892558,0.498949,0.231379,0.383009,0.199861,0.871579,0.367371,0.659359,0.832065,0.501581,0.0673079,0.888982,0.384649,0.406229,0.752201,0.571538,0.386731,0.452539,0.5642,0.781903,0.434019,0.548326,0.215823,0.05033,0.0682043,0.149165,0.590237,0.934169,0.164342,0.82352,0.347391,0.822396,0.756233,0.0554568,0.495004,0.0626082,0.323475,0.820938,0.350025,0.316029,0.848766,0.500331,0.509517,0.391706,0.392473,0.77216,0.605686,0.779557,0.114522,0.0626301,0.671038,0.87889,0.359497,0.886209,0.638287,0.645499,0.225432,0.268165,0.52537,0.380598,0.103285,0.509824,0.474951,0.905871,0.524351,0.850038,0.247601,0.371738,0.119694,0.367251,0.465848,0.981111,0.405335,0.559774,0.59822,0.0482988,0.39021,0.090591,0.172791,0.155482,0.461887,0.0633005,0.0150731,0.0590808,0.247452,0.859682,0.234451,0.301852,0.620866,0.782315,0.236002,0.921493,0.383474,0.17304,0.74751,0.42681,0.568612,0.967642,0.703453,0.123254,0.403549,0.57295,0.906543,0.963826,0.0779217,0.282428,0.54913,0.31905,0.0763298,0.971948,0.348754,0.406701,0.990091,0.782926,0.657405,0.344203,0.529807,0.261086,0.751836,0.447797,0.353609,0.882965,0.0900657,0.334974,0.347269,0.748372,0.519027,0.433845,0.00632888,0.214665,0.144427,0.934789,0.0230539,0.111638,0.913294,0.159044,0.724232,0.389563,0.870898,0.221964,0.287114,0.0109574,0.957982,0.194539,0.469869,0.0718887,0.515365,0.924128,0.366738,0.67258,0.375935,0.501264,0.107716,0.819378,0.214459,0.737689,0.968894,0.489905,0.867312,0.627955,0.302007,0.0577816,0.814629,0.794152,0.0245107,0.997716,0.344153,0.786757,0.505936,0.417266,0.747149,0.718042,0.981033,0.973138,0.973924,0.108932,0.0277915,0.805683,0.6012,0.78997,0.332904,0.808604,0.177576,0.21715,0.371349,0.783784,0.866619,0.720895,0.36343,0.307622,0.293538,0.761636,0.599435,0.700953,0.817758,0.558302,0.491004,0.991185,0.0812806,0.675847,0.36522,0.199272,0.107217,0.226853,0.0715185,0.639305,0.795758,0.562263,0.344335,0.942626,0.0553309,0.390831,0.436549,0.966016,0.470013,0.251547,0.756023,0.132,0.325435,0.203778,0.151394,0.344782,0.0386152,0.557095,0.605604,0.578138,0.774523,0.896553,0.936605,0.536763,0.49787,0.884897,0.588268,0.578952,0.425186,0.830464,0.668457,0.380263,0.00925392,0.404473,0.550544,0.823834,0.281561,0.605119,0.0607991,0.0388598,0.4841,0.253122,0.273997,0.537329,0.334722,0.900837,0.751411,0.507484,0.948361,0.674281,0.571661,0.0315623,0.0887767,0.763694,0.325109,0.63255,0.291247,0.308702,0.350442,0.239892,0.76721,0.251271,0.252021,0.532593,0.00311869,0.361623,0.811998,0.206052,0.615199,0.689837,0.667306,0.233473,0.405629,0.501789,0.159315,0.325588,0.535503,0.957958,0.237259,0.671909,0.692415,0.950983,0.881652,0.707839,0.923764,0.180576,0.0711891,0.62962,0.872526,0.864975,0.480608,0.145806,0.317765,0.784841,0.19477,0.80126,0.382114,0.312663,0.64382,0.407839,0.653892,0.343921,0.665362,0.351574,0.238573,0.522012,0.493234,0.785585,0.149032,0.436246,0.0289351,0.142691,0.543176,0.737391,0.0964269,0.0251412,0.17377,0.815148,0.215086,0.0711085,0.240658,0.675942,0.634158,0.302335,0.591711,0.575804,0.285492,0.561856,0.0798906,0.369908,0.26828,0.796278,0.0410452,0.192725,0.333205,0.625719,0.309824,0.852037,0.779556,0.00134057,0.891681,0.374453,0.0151572,0.507231,0.62523,0.459392,0.877138,0.103003,0.0918173,0.242114,0.302316,0.0849787,0.469186,0.911688,0.909787,0.0670276,0.365591,0.430476,0.060628,0.451169,0.295203,0.468111,0.353026,0.881587,0.325276,0.597207,0.659752,0.834746,0.577006,0.969797,0.76368,0.351299,0.682813,0.936517,0.370995,0.962026,0.587082,0.170411,0.736928,0.398165,0.57274,0.270926,0.209384,0.870222,0.0313005,0.726934,0.627104,0.973832,0.683663,0.138265,0.180801,0.815379,0.545496,0.135515,0.817759,0.974522,0.244443,0.460402,0.44233,0.723478,0.814222,0.113984,0.388839,0.125027,0.279622,0.725462,0.0503498,0.748618,0.394944,0.646235,0.781161,0.384063,0.508984,0.898617,0.293112,0.12944,0.882537,0.787142,0.22102,0.773874,0.151371,0.52383,0.749265,0.175994,0.289279,0.757918,0.21893,0.369678,0.443131,0.395125,0.0998915,0.498232,0.951362,0.309178,0.725437,0.295786,0.46943,0.509983,0.419541,0.661353,0.999958,0.0229917,0.645467,0.528401,0.951613,0.882495,0.828324,0.53735,0.848998,0.800464,0.911086,0.999505,0.614822,0.578427,0.651771,0.619907,0.564918,0.857946,0.0466673,0.32784,0.538241,0.940167,0.219447,0.508252,0.533286,0.800254,0.000907302,0.479278,0.392148,0.780343,0.534141,0.711714,0.0328503,0.685161,0.816718,0.0161805,0.751398,0.55655,0.194807,0.592272,0.727942,0.274414,0.236224,0.949221,0.362439,0.348965,0.461816,0.100472,0.384562,0.113412,0.923748,0.307367,0.0339106,0.604121,0.805481,0.754195,0.992103,0.869392,0.278823,0.53926,0.229317,0.876679,0.315696,0.791329,0.310386,0.390014,0.538299,0.0173711,0.837148,0.297585,0.777917,0.47378,0.932914,0.289174,0.190443,0.888256,0.921521,0.832,0.141442,0.608293,0.923026,0.123182,0.588362,0.80685,0.273683,0.992211,0.363272,0.364882,0.303727,0.501226,0.611671,0.552748,0.833671,0.318068,0.200368,0.212365,0.0630022,0.240051,0.912781,0.172397,0.00928676,0.728032,0.749654,0.950339,0.522087,0.887436,0.436051,0.573667,0.0887702,0.350065,0.193802,0.141564,0.0874071,0.951289,0.0463516,0.149852,0.889247,0.878797,0.742441,0.204697,0.916681,0.551489,0.180466,0.427768,0.309909,0.403957,0.863409,0.467971,0.815352,0.246351,0.0351624,0.19746,0.810209,0.973948,0.0731674,0.301949,0.925034,0.496939,0.0220773,0.587905,0.882813,0.908936,0.647721,0.87728,0.72336,0.0436895,0.642144,0.209572,0.693277,0.228408,0.653136,5.26309e-05,0.133853,0.488626,0.0469139,0.747031,0.948149,0.205407,0.742854,0.82602,0.202076,0.00735682,0.41944,0.333188,0.776075,0.744629,0.319804,0.454343,0.484609,0.552411,0.905218,0.346309,0.379842,0.343091,0.516762,0.906517,0.757906,0.948144,0.650501,0.318624,0.902116,0.619192,0.944719,0.687772,0.944955,0.365948,0.010141,0.130084,0.526509,0.935452,0.0786632,0.869924,0.643417,0.340846,0.704282,0.608484,0.360406,0.835959,0.38718,0.223276,0.669466,0.218473,0.890384,0.553293,0.132533,0.179287,0.96311,0.0903608,0.79754,0.131169,0.0952327,0.422249,0.310221,0.403978,0.225683,0.114999,0.956545,0.25224,0.518127,0.460222,0.430281,0.646085,0.878192,0.010433,0.627474,0.69477,0.77548,0.459107,0.890216,0.432436,0.917923,0.361401,0.940959,0.333421,0.662598,0.718196,0.535048,0.0250151,0.539882,0.671506,0.416195,0.309445,0.827127,0.815343,0.920925,0.25865,0.217415,0.780492,0.00668001,0.12966,0.666374,0.53653,0.549722,0.436289,0.857694,0.125574,0.710491,0.0104147,0.459593,0.106007,0.399922,0.223887,0.0843325,0.709642,0.777571,0.515858,0.269249,0.915267,0.560455,0.680857,0.197886,0.601275,0.221213,0.369885,0.621979,0.257693,0.217326,0.39298,0.417297,0.313952,0.896012,0.258863,0.867819,0.148669,0.0986067,0.0157053,0.246634,0.446894,0.907818,0.573567,0.654436,0.744298,0.0249343,0.908859,0.687292,0.885887,0.487944,0.830986,0.994469,0.724819,0.752677,0.237718,0.510036,0.504232,0.455598,0.719927,0.0201827,0.573991,0.916526,0.607304,0.998449,0.802861,0.208387,0.912399,0.247856,0.569369,0.840101,0.0325098,0.872345,0.454531,|0.290744,0.909042,0.69154,0.401101,0.883838,0.864458,0.304796,0.886482,0.306464,0.911886,0.62058,0.33776,0.776235,0.494705,0.183242,0.755862,0.757852,0.324428,0.273631,0.882769,0.31341,0.342445,0.109302,0.882724,0.602644,0.779648,0.111304,0.950715,0.42158,0.129464,0.657502,0.0363173,0.226035,0.30572,0.460516,0.531402,0.218283,0.116783,0.0125208,0.270203,0.0563726,0.858605,0.988416,0.507675,0.866479,0.879044,0.942823,0.297419,0.781168,0.726837,0.144469,0.889631,0.921884,0.481282,0.743927,0.311549,0.985292,0.951968,0.94497,0.143733,0.0836663,0.541151,0.942508,0.89087,0.685916,0.163985,0.364315,0.571041,0.656298,0.73631,0.0154175,0.474551,0.349382,0.939012,0.390727,0.496022,0.428229,0.103492,0.950321,0.771494,0.86882,0.996704,0.160805,0.950689,0.0638739,0.390567,0.283618,0.998824,0.798153,0.689845,0.467729,0.775585,0.249339,0.0255296,0.347741,0.413697,0.60336,0.367493,0.101649,0.888242,0.162187,0.919539,0.536809,0.938733,0.782451,0.41385,0.62084,0.750859,0.0644887,0.686212,0.806106,0.700101,0.121183,0.781162,0.76109,0.423598,0.655231,0.976211,0.101256,0.983444,0.0301321,0.160287,0.058589,0.111059,0.414791,0.38148,0.993926,0.829108,0.46715,0.0729392,0.420569,0.324568,0.492954,0.382623,0.530428,0.930178,0.325324,0.0769081,0.920469,0.924914,0.0292861,0.986461,0.309539,0.0298855,0.298267,0.838504,0.473147,0.0619158,0.616623,0.836306,0.114809,0.868025,0.879715,0.6125,0.683947,0.228291,0.851807,0.724135,0.611954,0.227797,0.085278,0.00104612,0.544301,0.899771,0.758867,0.550603,0.859996,0.0815744,0.460472,0.159077,0.888586,0.41068,0.631506,0.276225,0.269986,0.953081,0.994773,0.0288499,0.418065,0.213718,0.30427,0.0362057,0.76497,0.0639358,0.968173,0.838407,0.945733,0.887743,0.174328,0.289781,0.971766,0.598181,0.443302,0.850896,0.408325,0.95949,0.85028,0.866698,0.953265,0.511785,0.0259823,0.693142,0.489122,0.753057,0.00522006,0.809117,0.684924,0.0557264,0.400554,0.588404,0.742789,0.145417,0.0766161,0.6512,0.275499,0.368801,0.331456,0.111455,0.682526,0.707888,0.590788,0.177629,0.577057,0.136732,0.0656905,0.755564,0.374507,0.963344,0.405951,0.879455,0.992697,0.41251,0.825721,0.242761,0.696943,0.269682,0.430488,0.123605,0.199916,0.327508,0.469167,0.563956,0.896887,0.817405,0.890842,0.890386,0.302836,0.418733,0.945249,0.28847,0.148097,0.112005,0.360394,0.51408,0.0973947,0.916668,0.728651,0.0727104,0.623146,0.671623,0.32061,0.0780457,0.943313,0.996859,0.340471,0.83872,0.901227,0.463898,0.0456687,0.589587,0.0407453,0.308647,0.223179,0.507385,0.718208,0.338024,0.743513,0.657196,0.123729,0.910526,0.522129,0.917605,0.197801,0.265039,0.860778,0.320342,0.130342,0.195967,0.689676,0.0733373,0.342627,0.786556,0.0861377,0.695644,0.303366,0.859672,0.208216,0.352692,0.416306,0.0281183,0.086548,0.347198,0.574688,0.0284721,0.385335,0.405765,0.297681,0.457706,0.755899,0.600138,0.789135,0.651961,0.160241,0.306851,0.113389,0.528956,0.661659,0.386252,0.558365,0.510273,0.818106,0.888089,0.67924,0.129206,0.862772,0.544236,0.904803,0.160562,0.257612,0.389048,0.0709298,0.0266091,0.323416,0.682889,0.345467,0.133589,0.734447,0.8316,0.130332,0.617223,0.490501,0.1899,0.438892,0.0616128,0.870608,0.877054,0.862331,0.574489,0.315597,0.917236,0.915973,0.639387,0.264319,0.471099,0.951082,0.390059,0.295341,0.536437,0.321199,0.0275373,0.321475,0.465203,0.864501,0.136179,0.1022,0.755825,0.555019,0.773697,0.433655,0.22147,0.396613,0.139181,0.776051,0.505211,0.0564335,0.0681275,0.476879,0.577358,0.28786,0.209523,0.493998,0.613824,0.612379,0.180434,0.680871,0.463525,0.493888,0.606902,0.295379,0.0442209,0.707912,0.039368,0.138415,0.626579,0.780696,0.225746,0.97067,0.690062,0.565668,0.540025,0.0829306,0.360726,0.496388,0.617625,0.297932,0.554827,0.661748,0.217526,0.748151,0.935648,0.259896,0.0217118,0.0220732,0.0868333,0.217316,0.540952,0.00943106,0.297909,0.661301,0.0332909,0.484132,0.504905,0.942877,0.0666509,0.405838,0.992558,0.761182,0.785929,0.929103,0.801261,0.0289512,0.275298,0.745901,0.131075,0.73515,0.765061,0.0252447,0.230902,0.260504,0.905,0.358795,0.890803,0.138038,0.245281,0.142672,0.688516,0.85493,0.775892,0.725688,0.417439,0.846548,0.0702576,0.369736,0.498293,0.598359,0.00539625,0.462812,0.315783,0.041986,0.15864,0.916098,0.469018,0.129596,0.0627238,0.69449,0.273232,0.860885,0.944884,0.662827,0.117038,0.185617,0.916488,0.434992,0.159594,0.91783,0.528533,0.927511,0.179946,0.977676,0.591421,0.530039,0.0325745,0.432611,0.212572,0.592746,0.0977426,0.103399,0.0322468,0.80077,0.464998,0.324693,0.137495,0.610265,0.25045,0.418327,0.856562,0.335872,0.613951,0.948578,0.503445,0.812255,0.219597,0.475507,0.533749,0.680506,0.797027,0.451465,0.623288,0.430195,0.537899,0.989597,0.0731487,0.264145,0.959081,0.461154,0.119781,0.892846,0.843862,0.173884,0.827685,0.546983,0.568869,0.842923,0.142049,0.0514529,0.772679,0.934308,0.140735,0.710607,0.181713,0.830931,0.625884,0.245418,0.36253,0.835028,0.860685,0.248095,0.012743,0.0533281,0.492825,0.671516,0.537744,0.85807,0.582712,0.711787,0.631545,0.482608,0.98816,0.709852,0.721342,0.797717,0.604537,0.640328,0.619463,0.732857,0.830354,0.33881,0.488432,0.81766,0.398973,0.440073,0.923637,0.339537,0.892567,0.716783,0.610927,0.868709,0.27223,0.922096,0.0453354,0.04459,0.698171,0.882018,0.184628,0.628678,0.951099,0.560885,0.833417,0.900652,0.179932,0.263453,0.0691526,0.980475,0.429329,0.542594,0.115929,0.0998714,0.367388,0.886166,0.369729,0.42949,0.795622,0.156634,0.565593,0.740117,0.872463,0.281559,0.878655,0.0347818,0.501074,0.18043,0.479585,0.989102,0.864983,0.782515,0.29784,0.100405,0.429546,0.119581,0.698447,0.374026,0.869254,0.14908,0.692899,0.904526,0.758247,0.963097,0.365912,0.791002,0.872601,0.684628,0.537375,0.534655,0.494317,0.450565,0.987406,0.926608,0.886027,0.43454,0.0522677,0.454143,0.749846,0.392938,0.0755389,0.846123,0.147965,0.517726,0.184294,0.883937,0.504117,0.875781,0.903607,0.813635,0.792144,0.0531314,0.0754727,0.289357,0.585457,0.0951065,0.684265,0.479388,0.336083,0.497137,0.802218,0.0483004,0.672853,0.306634,0.795261,0.525296,0.627096,0.23089,0.0457906,0.283713,0.71705,0.613422,0.346149,0.550806,0.583293,0.0374668,0.576584,0.174043,0.668057,0.331691,0.926722,0.197701,0.474313,0.0506359,0.484996,0.74407,0.194538,0.801915,0.882432,0.16531,0.915327,0.542243,0.279772,0.15554,0.392626,0.852467,0.587691,0.397279,0.998814,0.477556,0.0979312,0.504065,0.386386,0.67573,0.506802,0.670627,0.338,0.226016,0.407803,0.152049,0.562733,0.913992,0.650954,0.75526,0.299484,0.232091,0.128889,0.402252,0.629912,0.812196,0.140321,0.25392,0.604374,0.39266,0.962498,0.322452,0.380132,0.808033,0.559579,0.726279,0.395244,0.623931,0.680029,0.836407,0.395661,0.299116,0.477996,0.977395,0.0542311,0.678358,0.852525,0.759374,0.748358,0.973179,0.66381,0.794023,0.533834,0.281448,0.0866121,0.729426,0.374089,0.257536,0.414199,0.45463,0.296945,0.253643,0.90971,0.999494,0.315055,0.91802,0.145842,0.600459,0.07845,0.420506,0.349344,0.418443,0.743288,0.774811,0.668643,0.35466,0.795369,0.176585,0.933068,0.372517,0.485453,0.257006,0.310642,0.616651,0.843144,0.178327,0.536902,0.286036,0.752064,0.819923,0.604601,0.632844,0.653723,0.334732,0.477023,0.666277,0.886246,0.0168457,0.457968,0.0671237,0.220799,0.711744,0.638174,0.725063,0.994975,0.53038,0.580936,0.831946,0.226373,0.172646,0.856103,0.447637,0.932544,0.0153541,0.0857113,0.872158,0.0510746,0.809404,0.538073,0.700551,0.73657,0.569525,0.825365,0.256238,0.652336,0.75761,0.777578,0.674378,0.052261,0.955696,0.604746,0.140889,0.806737,0.751871,0.568385,0.038674,0.647811,0.940497,0.0250999,0.206378,0.447433,0.625542,0.262575,0.784649,0.0670668,0.858772,0.731823,0.140022,0.629593,0.759575,0.773136,0.987781,0.97165,0.625557,0.88486,0.386661,0.419057,0.318851,0.242173,0.312184,0.710051,0.0511308,0.708368,0.504835,0.924567,0.524473,0.896673,0.574211,0.705222,0.215268,0.263552,0.755006,0.819718,0.8365,0.237466,0.737423,0.631363,0.03315,0.402506,0.633709,0.398393,0.869474,0.420505,0.704438,0.864081,0.328125,0.893402,0.854128,0.736426,0.423205,0.622753,0.0651463,0.637317,0.0451568,0.466544,0.544662,0.352476,0.585088,0.647547,0.050218,0.998557,0.640533,0.629132,0.104523,0.575844,0.355534,0.969338,0.220809,0.701178,0.198014,0.0946099,0.778638,0.0883811,0.749539,0.588357,0.242506,0.294588,0.173276,0.0431631,0.51923,0.248232,0.00508404,0.781776,0.166383,0.0392473,0.252344,0.244904,0.654665,0.533605,0.271601,0.791085,0.729782,0.462584,0.968153,0.445993,0.557362,0.911285,0.164678,0.549507,0.732261,0.481548,0.0282373,0.130629,0.525276,0.844272,0.258884,0.483596,0.254411,0.493643,0.480274,0.811349,0.524745,0.56,0.0996047,0.993478,0.304375,0.199278,0.644941,0.14658,0.590076,0.0772517,0.127833,0.166941,0.210398,0.265756,0.189577,0.450563,0.585571,0.753075,0.749807,0.116119,0.516822,0.598674,0.613693,0.372433,0.144735,0.271851,0.997795,0.486471,0.580428,0.623789,0.115331,0.656494,0.375594,0.983256,0.474705,0.599907,0.574423,0.377544,0.523188,0.412228,0.0905172,0.268303,0.764467,0.579024,0.924048,0.177105,0.539468,0.0536408,0.673406,0.593862,0.191161,0.69423,0.650825,0.661772,0.758838,0.0200578,0.262403,0.0223149,0.465403,0.29656,0.434214,0.164444,|0.641502,0.145301,0.493831,0.29037,0.378416,0.0760258,0.296311,0.712889,0.733786,0.61203,0.778024,0.588689,0.515746,0.353567,0.471949,0.00670046,0.029219,0.341012,0.0198197,0.523947,0.240672,0.0112691,0.142824,0.647972,0.623923,0.523663,0.288852,0.918948,0.897518,0.0719948,0.561819,0.520286,0.220189,0.718994,0.472816,0.966887,0.674484,0.103557,0.528562,0.0107138,0.926121,0.377332,0.83131,0.39079,0.474218,0.051841,0.510955,0.273332,0.150594,0.307339,0.575022,0.523169,0.0399725,0.154125,0.357632,0.276506,0.979194,0.0714678,0.393153,0.884993,0.66968,0.775695,0.963812,0.228384,0.173465,0.129914,0.651845,0.085723,0.642385,0.747231,0.798868,0.955331,0.0954358,0.949051,0.716826,0.115363,0.470924,0.379199,0.969959,0.713883,0.607344,0.586139,0.0634257,0.266023,0.323308,0.289358,0.104599,0.0282667,0.446472,0.351215,0.367593,0.843287,0.355686,0.226229,0.677255,0.220966,0.38264,0.80347,0.483502,0.250491,0.515372,0.654139,0.160289,0.998867,0.923991,0.142148,0.179095,0.050867,0.0297313,0.125006,0.462855,0.759471,0.642703,0.260779,0.0898516,0.699121,0.0733318,0.00293529,0.848994,0.79405,0.557591,0.802432,0.903224,0.145111,0.709043,0.643506,0.583817,0.0430208,0.729792,0.178605,0.742086,0.156495,0.508772,0.366477,0.0393236,0.172447,0.112094,0.139864,0.909826,0.727156,0.0477118,0.341299,0.280047,0.927949,0.0572344,0.0370979,0.951753,0.288092,0.867496,0.706567,0.115869,0.323447,0.532295,0.884706,0.0494491,0.626086,0.672776,0.563641,0.568962,0.610086,0.0358423,0.302809,0.454196,0.70771,0.919491,0.159675,0.297977,0.866403,0.0445849,0.277544,0.144454,0.955038,0.693772,0.565101,0.888155,0.229363,0.255704,0.994631,0.611098,0.274789,0.34545,0.145596,0.997842,0.128429,0.165286,0.580987,0.230276,0.0147367,0.329432,0.523859,0.499054,0.603409,0.993931,0.0847588,0.846575,0.767264,0.767676,0.303559,0.402302,0.535101,0.904956,0.680896,0.182353,0.462672,0.151438,0.255058,0.850253,0.877103,0.952817,0.0220355,0.612866,0.524237,0.955131,0.048529,0.511191,0.825399,0.21816,0.869476,0.421346,0.633784,0.480092,0.755763,0.0315332,0.408843,0.224904,0.508881,0.0492334,0.419771,0.937522,0.153846,0.874341,0.489521,0.76003,0.23524,0.899808,0.95429,0.762172,0.647905,0.0930035,0.888425,0.39637,0.165859,0.802377,0.451669,0.46822,0.298562,0.718683,0.0274274,0.0923035,0.64027,0.236611,0.759175,0.226304,0.930175,0.215153,0.815809,0.152588,0.312421,0.626261,0.291477,0.330397,0.322735,0.498621,0.214035,0.581113,0.0734897,0.156686,0.907645,0.377018,0.402752,0.882097,0.245483,0.361334,0.788981,0.530598,0.27127,0.21383,0.276398,0.756,0.554739,0.865493,0.843764,0.918815,0.109585,0.590241,0.17284,0.902781,0.696849,0.182135,0.477352,0.440039,0.99887,0.872425,0.205486,0.551885,0.969299,0.504721,0.680488,0.449404,0.38851,0.918222,0.640467,0.109402,0.0442296,0.188337,0.364608,0.361816,0.867518,0.448395,0.901604,0.91882,0.950865,0.956839,0.989011,0.534525,0.835797,0.983412,0.492632,0.463376,0.986952,0.849267,0.157267,0.710478,0.193362,0.805776,0.202503,0.656385,0.166299,0.257509,0.96136,0.191132,0.722154,0.589151,0.0847749,0.390766,0.831166,0.685339,0.0888951,0.997922,0.922572,0.214128,0.575888,0.427351,0.522268,0.677785,0.732537,0.256792,0.533989,0.764316,0.0232331,0.472204,0.850101,0.665169,0.668243,0.650568,0.628373,0.655319,0.695686,0.253282,0.262389,0.717084,0.453397,0.524154,0.305776,0.56206,0.184985,0.155906,0.695254,0.393395,0.136579,0.12014,0.420794,0.332647,0.506412,0.138255,0.590734,0.569623,0.0439081,0.383437,0.25084,0.239341,0.211248,0.206596,0.848736,0.0118447,0.000192225,0.696912,0.565505,0.155064,0.236975,0.913854,0.422225,0.373159,0.436674,0.165747,0.934192,0.914573,0.214996,0.311535,0.221207,0.291341,0.695565,0.047914,0.116724,0.269293,0.932243,0.774581,0.980387,0.465914,0.412302,0.00439614,0.680984,0.282143,0.995611,0.621578,0.691413,0.225115,0.779622,0.77021,0.454394,0.76861,0.970514,0.592194,0.568141,0.0868719,0.393451,0.243128,0.231753,0.16667,0.0726206,0.0301477,0.700323,0.0444092,0.105667,0.00142777,0.255646,0.266527,0.919179,0.585272,0.255907,0.303905,0.149078,0.760093,0.0877743,0.12308,0.142983,0.466743,0.431383,0.354681,0.571291,0.860926,0.53566,0.996421,0.536525,0.0147047,0.398606,0.557143,0.632207,0.135412,0.0721842,0.733357,0.232166,0.0554647,0.239166,0.924321,0.210531,0.817713,0.324685,0.561488,0.788148,0.33368,0.829703,0.59277,0.307149,0.19514,0.0381004,0.974942,0.513725,0.249106,0.699514,0.717762,0.614034,0.110037,0.98994,0.526086,0.807574,0.465901,0.510198,0.184054,0.773278,0.100991,0.851863,0.628198,0.56295,0.202883,0.431224,0.691851,0.101668,0.439294,0.684495,0.904975,0.574089,0.938956,0.960483,0.502871,0.988807,0.180065,0.867909,0.00532514,0.822261,0.931611,0.0196838,0.697888,0.736103,0.217869,0.818025,0.226584,0.308002,0.942335,0.45792,0.286299,0.512731,0.37368,0.432161,0.0931166,0.558971,0.298669,0.741683,0.228563,0.537498,0.610085,0.658528,0.439512,0.340535,0.962803,0.296205,0.981121,0.112417,0.989338,0.0413877,0.593816,0.862599,0.313338,0.0233085,0.569534,0.193602,0.201455,0.897074,0.981438,0.28802,0.463593,0.957611,0.792624,0.330447,0.23727,0.514967,0.607912,0.212039,0.821397,0.000569224,0.894537,0.661514,0.70207,0.633229,0.26709,0.755652,0.931232,0.402806,0.472936,0.00696766,0.705498,0.172648,0.226311,0.540668,0.0449533,0.061879,0.287007,0.501341,0.368732,0.0137341,0.782594,0.862245,0.339642,0.858468,0.345199,0.398214,0.630933,0.654152,0.463261,0.227267,0.622002,0.859005,0.318799,0.762512,0.413795,0.399419,0.599165,0.230914,0.560183,0.336604,0.966088,0.0573334,0.198289,0.140278,0.0494327,0.016567,0.0310647,0.651685,0.635756,0.776088,0.463947,0.771985,0.357663,0.522642,0.333941,0.708567,0.0312142,0.745889,0.119295,0.66365,0.89174,0.594298,0.797561,0.257202,0.577171,0.0428489,0.960635,0.788757,0.142319,0.0401546,0.804134,0.960243,0.0182648,0.811253,0.380151,0.142955,0.11557,0.294027,0.351321,0.533852,0.951322,0.241989,0.112508,0.152991,0.918636,0.353378,0.899859,0.718371,0.282379,0.700899,0.577069,0.512303,0.363151,0.701853,0.780125,0.977085,0.471839,0.294706,0.311606,0.133503,0.650794,0.124775,0.410496,0.513976,0.930235,0.679499,0.0656575,0.203775,0.781349,0.842727,0.320409,0.204598,0.595343,0.034021,0.324701,0.272225,0.112848,0.473851,0.16973,0.280301,0.898569,0.554925,0.644252,0.0885808,0.595661,0.00592083,0.157218,0.225141,0.85518,0.296468,0.996204,0.771234,0.0320418,0.537502,0.980136,0.548863,0.616615,0.139654,0.540793,0.788886,0.105349,0.540544,0.225537,0.796676,0.593772,0.893591,0.57438,0.344506,0.246842,0.901245,0.859291,0.935128,0.165103,0.199732,0.725828,0.772979,0.654765,0.70666,0.1788,0.718401,0.866248,0.0233312,0.600721,0.663481,0.346368,0.733598,0.908903,0.576456,0.331871,0.49871,0.319337,0.729326,0.34614,0.939054,0.676158,0.821898,0.474701,0.193352,0.625587,0.977383,0.431707,0.439812,0.532786,0.787544,0.763978,0.948871,0.835763,0.892644,0.704256,0.394922,0.643597,0.0026263,0.134994,0.210578,0.204937,0.494882,0.303584,0.329505,0.358764,0.609201,0.355182,0.691508,0.0629485,0.397923,0.477621,0.0164146,0.836954,0.0426165,0.617086,0.666119,0.43993,0.581621,0.00757563,0.0439843,0.68502,0.147433,0.721791,0.955716,0.00279939,0.686903,0.957913,0.63788,0.114701,0.529454,0.735933,0.254448,0.788361,0.88043,0.185614,0.106059,0.544483,0.765212,0.588143,0.0142707,0.377153,0.988898,0.473655,0.721711,0.713713,0.414696,0.991518,0.130395,0.180485,0.776685,0.0653346,0.364516,0.743936,0.520717,0.995526,0.683673,0.258145,0.368396,0.194233,0.810788,0.118405,0.0736154,0.193974,0.419415,0.325218,0.281854,0.135607,0.213729,0.570967,0.287393,0.692894,0.508956,0.601142,0.903591,0.312648,0.908248,0.0971373,0.658763,0.798054,0.266488,0.00969642,0.132043,0.171785,0.356439,0.819358,0.948536,0.197776,0.10967,0.407426,0.191888,0.325864,0.369458,0.702908,0.176579,0.141421,0.704223,0.980167,0.524937,0.29277,0.730941,0.182581,0.0727506,0.733977,0.748646,0.196053,0.114874,0.607403,0.178004,0.860794,0.354083,0.328161,0.302146,0.871135,0.836873,0.262744,0.254947,0.0373786,0.339191,0.249199,0.00817472,0.930096,0.453607,0.768851,0.575806,0.745438,0.753379,0.728909,0.0105901,0.688699,0.677459,0.0655492,0.0808208,0.764342,0.645855,0.640657,0.594774,0.290286,0.579245,0.691427,0.755,0.334115,0.505559,0.291967,0.788045,0.888524,0.309156,0.061183,0.922664,0.687047,0.768044,0.363018,0.2056,0.81715,0.668153,0.313862,0.89807,0.364203,0.483018,0.369726,0.0162409,0.275969,0.800521,0.847,0.844835,0.275991,0.958316,0.752283,0.182231,0.294846,0.80067,0.717198,0.0648328,0.930142,0.500456,0.0126809,0.949291,0.515371,0.667789,0.109599,0.663826,0.306449,0.557999,0.906023,0.00420803,0.387281,0.980136,0.317566,0.984082,0.477328,0.306396,0.871682,0.903166,0.0838661,0.986235,0.596468,0.485071,0.935613,0.165913,0.696886,0.609723,0.739847,0.190054,0.0732449,0.198911,0.504723,0.792359,0.988313,0.826839,0.425537,0.464538,0.53825,0.560119,0.125705,0.153774,0.835115,0.368975,0.442245,0.741726,0.742762,0.387693,0.692063,0.394347,0.900945,0.537262,0.290714,0.394823,0.278279,0.579033,0.133192,0.345837,0.435917,0.670165,0.404755,0.551503,0.267846,0.939,0.36863,0.698835,0.185798,0.386522,0.934662,0.558689,0.488523,0.369253,0.436565,0.24581,|0.545187,0.241607,0.787061,0.173495,0.542779,0.677663,0.689418,0.968693,0.678836,0.0574142,0.67278,0.0516792,0.702988,0.285507,0.925706,0.36855,0.887301,0.518457,0.404853,0.100188,0.698785,0.936226,0.820307,0.093819,0.199537,0.123181,0.0178298,0.74047,0.501901,0.964217,0.618673,0.709058,0.325178,0.990224,0.945879,0.723372,0.0803168,0.239955,0.192259,0.880259,0.595927,0.418494,0.952344,0.627267,0.625208,0.704148,0.812717,0.462921,0.253985,0.579105,0.165952,0.329011,0.473821,0.0773419,0.649785,0.492894,0.111681,0.231187,0.793904,0.554889,0.159987,0.225543,0.53817,0.651853,0.0960043,0.555832,0.943038,0.89345,0.146653,0.103638,0.707769,0.475152,0.0170665,0.982625,0.366138,0.952098,0.585081,0.689493,0.186481,0.815653,0.0159612,0.685593,0.175274,0.575594,0.514207,0.276497,0.215324,0.212029,0.159916,0.829353,0.102511,0.902745,0.979022,0.781019,0.965528,0.106766,0.837791,0.135446,0.23588,0.989936,0.319549,0.958746,0.518696,0.892142,0.374831,0.324536,0.103309,0.126714,0.89112,0.757284,0.536553,0.610408,0.361406,0.732921,0.414057,0.0822177,0.303139,0.788857,0.0269674,0.26933,0.0263798,0.271464,0.132832,0.712027,0.516402,0.104739,0.298753,0.140535,0.729551,0.661803,0.595598,0.347334,0.348699,0.756143,0.874607,0.809766,0.372034,0.204416,0.926105,0.190422,0.492133,0.555494,0.949473,0.224088,0.0528659,0.612862,0.0622669,0.402917,0.773021,0.207164,0.594001,0.0904025,0.087459,0.821032,0.117344,0.675816,0.619406,0.0564095,0.127098,0.877701,0.423355,0.44626,0.27909,0.547839,0.201477,0.908481,0.879287,0.579174,0.494455,0.551759,0.681395,0.692394,0.874344,0.605873,0.643648,0.368762,0.435106,0.728806,0.725881,0.971609,0.304684,0.1856,0.89384,0.328745,0.727763,0.211281,0.0174559,0.665864,0.788855,0.382868,0.422278,0.382533,0.872629,0.547796,0.053352,0.131112,0.215397,0.818619,0.587345,0.764809,0.362654,0.968193,0.299844,0.58291,0.346626,0.0684949,0.939825,0.698977,0.250905,0.621746,0.652402,0.982304,0.376271,0.694573,0.620446,0.72095,0.0110842,0.60578,0.399395,0.45267,0.685964,0.912695,0.255528,0.923433,0.721902,0.238822,0.745421,0.0520564,0.189703,0.445444,0.581288,0.774953,0.318462,0.464013,0.497225,0.400541,0.0965761,0.983875,0.864567,0.970797,0.941728,0.829185,0.864545,0.28666,0.240556,0.127428,0.456445,0.184657,0.607666,0.921872,0.732324,0.409063,0.756705,0.220428,0.410371,0.653988,0.55495,0.69281,0.231388,0.23762,0.956921,0.873687,0.639157,0.876858,0.769952,0.719362,0.285741,0.412088,0.660557,0.388065,0.272401,0.681136,0.835525,0.293323,0.877962,0.132245,0.357365,0.533377,0.484921,0.662114,0.877459,0.933648,0.631893,0.458291,0.523907,0.262309,0.265246,0.266013,0.2445,0.949443,0.719018,0.524518,0.218493,0.111255,0.948084,0.556456,0.0889079,0.00710714,0.833954,0.459084,0.804505,0.463299,0.558524,0.59003,0.310316,0.285298,0.771959,0.85332,0.838609,0.544473,0.883009,0.323923,0.427673,0.308658,0.749656,0.314226,0.754062,0.861109,0.630217,0.573953,0.270235,0.45131,0.477856,0.875593,0.93677,0.711845,0.236387,0.428125,0.871605,0.29163,0.415212,0.254017,0.281178,0.434009,0.385579,0.135459,0.554281,0.405812,0.872488,0.374207,0.717405,0.189502,0.297414,0.305957,0.788296,0.870327,0.607868,0.737235,0.495622,0.270366,0.84572,0.655712,0.0853351,0.237866,0.0164343,0.465313,0.183022,0.38418,0.958768,0.253677,0.802197,0.0132222,0.752369,0.185005,0.966962,0.165197,0.245471,0.817877,0.662787,0.469961,0.258123,0.96552,0.117217,0.120065,0.516938,0.435841,0.0491092,0.898639,0.634568,0.994138,0.669616,0.148038,0.50365,0.809794,0.978824,0.555333,0.285769,0.835057,0.905187,0.128119,0.475588,0.523295,0.677195,0.850136,0.416338,0.265116,0.52972,0.876331,0.0925506,0.971904,0.587354,0.320757,0.651312,0.304794,0.304119,0.646244,0.0364147,0.501837,0.870649,0.201673,0.455292,0.025556,0.557522,0.323092,0.362553,0.706765,0.282534,0.152517,0.468364,0.728504,0.272593,0.294935,0.558487,0.486118,0.797071,0.636969,0.31772,0.753336,0.768233,0.589869,0.80551,0.875133,0.859045,0.6715,0.472646,0.656321,0.661071,0.990338,0.955815,0.371428,0.601896,0.197295,0.985455,0.900733,0.87097,0.555287,0.400618,0.701314,0.308894,0.876562,0.791503,0.686943,0.401481,0.961057,0.475269,0.642339,0.300051,0.871649,0.816222,0.851951,0.419322,0.891512,0.162791,0.354437,0.0238624,0.0174004,0.991505,0.997181,0.977569,0.0477439,0.730634,0.564288,0.0960009,0.824379,0.198748,0.125412,0.579037,0.168819,0.977349,0.585406,0.996991,0.0113681,0.952746,0.764476,0.470335,0.730974,0.21993,0.36069,0.241233,0.0391934,0.895878,0.842804,0.522597,0.342756,0.365108,0.418761,0.17928,0.377906,0.70836,0.601086,0.34342,0.886221,0.577627,0.68979,0.685404,0.163126,0.995787,0.503656,0.775529,0.0528142,0.960667,0.187884,0.479851,0.614546,0.88325,0.592942,0.58383,0.717853,0.0548336,0.309937,0.830713,0.542259,0.402755,0.90294,0.935926,0.0155281,0.895938,0.195683,0.593947,0.983636,0.522206,0.507408,0.65715,0.203173,0.710607,0.335988,0.55639,0.565395,0.3676,0.751495,0.625816,0.440262,0.148521,0.918684,0.903277,0.79904,0.938357,0.66371,0.363571,0.847697,0.849022,0.962281,0.420802,0.710045,0.46665,0.714577,0.890861,0.854632,0.810553,0.904177,0.239027,0.50955,0.82374,0.877097,0.0233636,0.921297,0.620641,0.0294573,0.455979,0.530634,0.284945,0.720742,0.826573,0.899047,0.711499,0.176575,0.468386,0.353808,0.417886,0.185698,0.0805568,0.137166,0.633501,0.945753,0.129849,0.716732,0.0254578,0.87114,0.239344,0.205451,0.871499,0.213126,0.423996,0.470562,0.267015,0.389601,0.685753,0.750257,0.309291,0.45515,0.306532,0.967715,0.695206,0.650174,0.659409,0.848298,0.880331,0.0759478,0.594286,0.909976,0.0793963,0.361701,0.725188,0.696629,0.157168,0.597367,0.307531,0.764745,0.954856,0.821024,0.924149,0.764929,0.138864,0.0795231,0.426348,0.820265,0.245437,0.644322,0.58697,0.151812,0.514378,0.343123,0.131117,0.755422,0.939643,0.642284,0.323671,0.531744,0.434813,0.259627,0.700787,0.194594,0.668259,0.831657,0.377217,0.894789,0.444814,0.37484,0.118184,0.788614,0.959544,0.803156,0.46452,0.749897,0.421844,0.00252223,0.479344,0.022624,0.183468,0.798235,0.277073,0.862702,0.1118,0.260575,0.323359,0.0704043,0.525206,0.534784,0.0210498,0.386011,0.952088,0.262233,0.528354,0.28576,0.904246,0.327527,0.639061,0.256328,0.0387378,0.223992,0.431742,0.33186,0.898053,0.451761,0.455803,0.296144,0.159631,0.518533,0.591121,0.86068,0.487658,0.141418,0.530747,0.69298,0.794087,0.944449,0.864782,0.848491,0.852825,0.160086,0.256764,0.37947,0.49724,0.193682,0.113015,0.893829,0.211567,0.989506,0.415128,0.301189,0.399604,0.555674,0.984872,0.127713,0.684475,0.466299,0.664707,0.650589,0.555709,0.961237,0.945038,0.0365217,0.812447,0.19032,0.296024,0.114253,0.730927,0.979159,0.591426,0.205197,0.85283,0.456359,0.630809,0.925211,0.663992,0.621211,0.273632,0.800943,0.0926117,0.728074,0.710579,0.608876,0.18223,0.914138,0.479432,0.743978,0.0650473,0.848203,0.848176,0.126375,0.205699,0.943658,0.0502339,0.0826175,0.450972,0.0012269,0.692426,0.16432,0.179705,0.881521,0.0306288,0.0618511,0.127021,0.596365,0.333517,0.203874,0.0547696,0.54867,0.574224,0.625901,0.723309,0.218727,0.612492,0.181089,0.274824,0.0408199,0.545675,0.841762,0.611173,0.00823396,0.182842,0.22413,0.78967,0.690754,0.257653,0.379253,0.837252,0.29095,0.603997,0.825924,0.989448,0.224644,0.817475,0.0153974,0.665619,0.492252,0.397417,0.0623493,0.687955,0.0710816,0.836077,0.473568,0.423465,0.988808,0.807758,0.0906636,0.365851,0.140144,0.964558,0.659141,0.654512,0.735379,0.611715,0.0444251,0.222119,0.595221,0.553831,0.446313,0.877817,0.880127,0.714069,0.996919,0.0768101,0.174572,0.953373,0.298732,0.901192,0.0849861,0.351379,0.0696599,0.653601,0.856371,0.952747,0.0216875,0.764128,0.636342,0.96048,0.189433,0.252879,0.902546,0.464555,0.364391,0.240758,0.063879,0.554677,0.770788,0.742002,0.470199,0.623866,0.258452,0.504807,0.268687,0.151901,0.0981084,0.244056,0.406643,0.51519,0.289351,0.222514,0.507606,0.727833,0.806819,0.971413,0.0313234,0.887243,0.309775,0.885776,0.684309,0.258474,0.684696,0.586745,0.367858,0.422792,0.143075,0.114359,0.630673,0.804779,0.299992,0.75911,0.737383,0.44994,0.176439,0.275578,0.304462,0.956162,0.690658,0.748801,0.20506,0.938438,0.857046,0.916918,0.458368,0.892212,0.660885,0.437416,0.705672,0.319335,0.35578,0.646388,0.322228,0.716312,0.515978,0.660046,0.432752,0.939168,0.166875,0.167141,0.383939,0.807135,0.696815,0.485157,0.0318958,0.189002,0.943857,0.883663,0.728315,0.832155,0.176216,0.410395,0.40701,0.832168,0.567847,0.170034,0.717092,0.269588,0.116097,0.631399,0.969706,0.0916889,0.71781,0.558178,0.230744,0.00314623,0.22833,0.927915,0.157571,0.412194,0.662261,0.359319,0.507057,0.0582859,0.144685,0.941503,0.136074,0.0984711,0.67114,0.72161,0.964501,0.443787,0.625177,0.472178,0.124362,0.0805616,0.413661,0.72035,0.0205052,0.987686,0.106554,0.763256,0.253392,0.00432509,0.688188,0.200225,0.0370101,0.00869894,0.953128,0.397752,0.359484,0.654513,0.283561,0.164307,0.344529,0.759326,0.589239,0.740001,0.992488,0.538084,0.441934,0.155748,0.269581,0.246266,0.784448,0.0354478,0.0724471,0.457584,0.86613,0.554221,0.385997,0.570959,0.175929,0.628249,0.132048,0.972501,0.961086,0.00441951,0.669442,0.165843,0.14743,0.55973,0.984806,|0.429979,0.431253,0.826353,0.580081,0.603184,0.356452,0.977878,0.631101,0.843259,0.288264,0.533064,0.477276,0.147829,0.396667,0.912704,0.396541,0.706037,0.86257,0.462093,0.896939,0.187953,0.0460308,0.0699156,0.186632,0.723372,0.315588,0.356174,0.159262,0.100864,0.460857,0.73391,0.276188,0.100069,0.585155,0.0850518,0.898005,0.660853,0.990472,0.118897,0.709798,0.434477,0.645574,0.498229,0.171905,0.41698,0.70431,0.740721,0.429376,0.993734,0.639511,0.160827,0.775319,0.110188,0.0753058,0.23321,0.618203,0.38471,0.532237,0.146846,0.672654,0.647929,0.157847,0.767527,0.40277,0.523589,0.788015,0.110791,0.622611,0.307817,0.194866,0.89868,0.788751,0.246455,0.475598,0.186991,0.0958991,0.633728,0.748343,0.51388,0.769338,0.267444,0.286173,0.533367,0.0583751,0.292477,0.721824,0.719002,0.151014,0.402128,0.0150604,0.580614,0.353386,0.803735,0.241422,0.213475,0.397809,0.53277,0.0855123,0.523386,0.893257,0.651517,0.556679,0.854216,0.837135,0.445519,0.336773,0.887895,0.468618,0.837655,0.800242,0.614482,0.836429,0.925721,0.586744,0.284661,0.0108627,0.181694,0.937503,0.734911,0.766048,0.746109,0.544085,0.772172,0.0996351,0.0411094,0.115541,0.549537,0.757851,0.578586,0.0311248,0.91877,0.60116,0.253703,0.091998,0.117795,0.892004,0.683012,0.202117,0.568943,0.692547,0.200192,0.645002,0.630593,0.202503,0.643666,0.944555,0.677118,0.848459,0.227344,0.826231,0.690262,0.372274,0.563921,0.476365,0.569841,0.106353,0.35186,0.687298,0.578609,0.777893,0.544298,0.343506,0.290327,0.687134,0.516051,0.186774,0.490774,0.0581201,0.244468,0.789084,0.439072,0.3234,0.180198,0.923853,0.595135,0.341551,0.554336,0.398351,0.0978436,0.847507,0.798628,0.0748807,0.759355,0.851642,0.96478,0.522467,0.246978,0.308466,0.0885241,0.496007,0.233154,0.593604,0.122046,0.583984,0.139413,0.791777,0.959882,0.710564,0.900918,0.753517,0.507075,0.772209,0.832128,0.147957,0.180547,0.736867,0.238349,0.256202,0.848748,0.852561,0.458454,0.0453423,0.105839,0.388673,0.246395,0.956937,0.836774,0.398179,0.0583748,0.756402,0.339936,0.641668,0.077387,0.419641,0.816687,0.506695,0.826429,0.829697,0.635537,0.770786,0.335366,0.359749,0.526562,0.467063,0.647236,0.345311,0.164835,0.9277,0.420564,0.652598,0.407653,0.984742,0.450061,0.314641,0.565774,0.59289,0.388768,0.320553,0.0157049,0.930462,0.112956,0.390035,0.348764,0.896408,0.847827,0.675067,0.424042,0.0596098,0.293784,0.00810546,0.629866,0.0277144,0.26124,0.794101,0.959822,0.723461,0.187475,0.945256,0.999077,0.229771,0.526804,0.973731,0.296549,0.0307822,0.437747,0.898464,0.0938694,0.750042,0.692823,0.268981,0.185301,0.699843,0.508352,0.120361,0.926962,0.0889896,0.242051,0.243716,0.442417,0.779789,0.543239,0.827893,0.187936,0.52294,0.6151,0.695165,0.25743,0.21787,0.972361,0.929029,0.61397,0.790709,0.798327,0.695823,0.625105,0.28322,0.924041,0.878623,0.714343,0.628487,0.607106,0.520739,0.151133,0.267106,0.0211096,0.661661,0.470918,0.793773,0.814758,0.0294273,0.835832,0.536553,0.0243233,0.614625,0.82907,0.293211,0.619092,0.792435,0.606811,0.242432,0.934076,0.724765,0.397817,0.81041,0.644819,0.627205,0.0590153,0.667975,0.486563,0.0833675,0.156284,0.365173,0.383273,0.180429,0.285003,0.155252,0.548083,0.0446774,0.15331,0.613165,0.878266,0.557392,0.929646,0.941254,0.250102,0.395483,0.79982,0.79595,0.741197,0.0477304,0.17541,0.363126,0.141154,0.6516,0.446911,0.582982,0.101724,0.346546,0.756665,0.896201,0.758237,0.959182,0.274213,0.480078,0.333209,0.892585,0.853435,0.716631,0.259439,0.944974,0.599021,0.190093,0.872204,0.780403,0.237836,0.84608,0.346631,0.580343,0.62555,0.165997,0.752041,0.665014,0.200533,0.362889,0.835219,0.651402,0.251291,0.848888,0.001041,0.941937,0.249537,0.574513,0.852499,0.593099,0.474987,0.96717,0.37873,0.666977,0.281649,0.383551,0.75839,0.816225,0.572498,0.423149,0.990954,0.351164,0.328873,0.481793,0.304041,0.311018,0.289472,0.226122,0.0740985,0.683562,0.195575,0.100876,0.357557,0.0842378,0.445388,0.266757,0.586218,0.370814,0.871042,0.888006,0.603282,0.845198,0.283543,0.661705,0.928753,0.780381,0.782805,0.827945,0.892567,0.279193,0.0576284,0.19261,0.114555,0.878994,0.299276,0.399691,0.285097,0.479418,0.0598224,0.972928,0.874964,0.0645802,0.356082,0.0701911,0.663233,0.578799,0.0904839,0.730194,0.125684,0.0937796,0.388704,0.240859,0.321088,0.59313,0.0470118,0.260691,0.586021,0.324114,0.330473,0.116937,0.0399686,0.0692436,0.964403,0.730502,0.0953198,0.942719,0.677292,0.420476,0.249923,0.976768,0.446642,0.0504735,0.914503,0.387541,0.477252,0.339034,0.341961,0.119551,0.274626,0.0025872,0.585094,0.641858,0.082342,0.0877503,0.385553,0.477848,0.711913,0.720689,0.541885,0.882552,0.080663,0.846173,0.68497,0.756317,0.663223,0.599922,0.563346,0.653338,0.444134,0.51966,0.277985,0.193308,0.126531,0.785986,0.662605,0.961457,0.419477,0.0690592,0.570613,0.0118582,0.832501,0.530099,0.53673,0.169115,0.952282,0.303352,0.439519,0.800385,0.14957,0.803359,0.38021,0.628609,0.78205,0.224362,0.358012,0.7872,0.45656,0.426921,0.107136,0.0645852,0.29039,0.14333,0.848455,0.320813,0.790739,0.45191,0.327123,0.269763,0.517471,0.648806,0.89006,0.487385,0.695778,0.514743,0.962219,0.867517,0.519495,0.799333,0.400208,0.896227,0.756773,0.183613,0.326959,0.795061,0.266401,0.0230532,0.157972,0.452156,0.429019,0.0236308,0.993332,0.11751,0.987616,0.542387,0.978181,0.0330393,0.413707,0.0388841,0.918784,0.70353,0.786717,0.987174,0.958403,0.317928,0.757041,0.74007,0.351223,0.196739,0.4562,0.207838,0.0838869,0.844484,0.148169,0.895043,0.568622,0.977444,0.967654,0.203282,0.647045,0.605306,0.126218,0.534518,0.993793,0.765366,0.639218,0.818208,0.983882,0.153839,0.414844,0.0749407,0.164324,0.869163,0.108025,0.636624,0.935621,0.933544,0.792936,0.285372,0.827655,0.330048,0.989305,0.280649,0.197136,0.182362,0.777964,0.277626,0.0399203,0.351551,0.444634,0.635473,0.939646,0.319524,0.61022,0.862834,0.320965,0.316898,0.578254,0.101611,0.046541,0.943874,0.530883,0.463814,0.970771,0.624842,0.477186,0.00352138,0.840357,0.30166,0.373883,0.194945,0.676349,0.275131,0.288595,0.158477,0.900833,0.967601,0.81267,0.515135,0.177554,0.967545,0.955144,0.399721,0.53238,0.529567,0.797818,0.662918,0.0165457,0.599925,0.714544,0.0837043,0.23833,0.636157,0.882726,0.00652415,0.989922,0.83467,0.0487264,0.306867,0.875438,0.295363,0.459927,0.527102,0.832986,0.434249,0.131102,0.867209,0.766739,0.762697,0.675606,0.488637,0.69989,0.549515,0.931738,0.206236,0.506949,0.748473,0.668565,0.455463,0.0772744,0.571536,0.4956,0.772836,0.684161,0.471324,0.302518,0.890668,0.992927,0.310673,0.312677,0.965782,0.0405339,0.630441,0.609179,0.359378,0.194422,0.516715,0.380474,0.96894,0.198011,0.410433,0.163222,0.327444,0.474224,0.456421,0.108116,0.241682,0.036292,0.882003,0.412732,0.580374,0.733444,0.904089,0.669899,0.107914,0.972458,0.996604,0.671224,0.47031,0.179227,0.0897815,0.572258,0.400441,0.508613,0.653674,0.116802,0.488999,0.423256,0.906153,0.00340468,0.208328,0.972781,0.0243782,0.70137,0.484266,0.698726,0.406331,0.572544,0.650165,0.206372,0.927109,0.287006,0.15492,0.775952,0.554507,0.385148,0.644554,0.675979,0.535784,0.812968,0.655612,0.125854,0.394856,0.105426,0.935154,0.789521,0.13793,0.883865,0.995365,0.728977,0.782069,0.295794,0.726393,0.645341,0.728364,0.909434,0.398445,0.510979,0.859024,0.511155,0.562402,0.890911,0.846422,0.822256,0.877119,0.415333,0.462112,0.587466,0.824103,0.334821,0.678923,0.21696,0.405008,0.45792,0.239595,0.586322,0.921584,0.44135,0.373154,0.216214,0.437845,0.151641,0.75773,0.245036,0.932189,0.938318,0.340892,0.675751,0.611356,0.513224,0.203261,0.120452,0.219449,0.781618,0.359902,0.41516,0.0486719,0.0406987,0.674195,0.729388,0.109135,0.658494,0.646768,0.597308,0.542008,0.234977,0.909397,0.623167,0.524774,0.398715,0.481601,0.0629813,0.690572,0.241651,0.460614,0.578883,0.0443793,0.906021,0.975426,0.105718,0.776655,0.710923,0.338992,0.434692,0.501001,0.337364,0.218561,0.0434324,0.278462,0.233518,0.980965,0.0985582,0.48961,0.21658,0.955339,0.832904,0.646873,0.698228,0.654008,0.195018,0.242997,0.17988,0.142709,0.64171,0.646421,0.448245,0.959443,0.589404,0.710849,0.213711,0.513425,0.767961,0.975269,0.751154,0.458866,0.726245,0.972541,0.552933,0.22031,0.473737,0.423164,0.981858,0.518066,0.340289,0.444885,0.893908,0.00970995,0.566376,0.263956,0.848631,0.50634,0.0679373,0.43823,0.526679,0.854159,0.0320248,0.0854936,0.400073,0.721804,0.854118,0.0354005,0.818901,0.611357,0.339794,0.777529,0.561965,0.530001,0.233643,0.833592,0.28014,0.368923,0.831441,0.997503,0.911046,0.194005,0.848144,0.154982,0.843849,0.905396,0.564392,0.127151,0.668951,0.586749,0.223759,0.934497,0.0800061,0.18528,0.266129,0.406404,0.693966,0.633072,0.948119,0.701187,0.00903469,0.386425,0.608562,0.818344,0.747746,0.838979,0.169636,0.804542,0.565304,0.362413,0.39573,0.544678,0.117807,0.579876,0.657095,0.121264,0.0663939,0.426087,0.400336,0.352018,0.095828,0.811896,0.571398,0.452646,0.228929,0.0726361,0.150555,0.672065,0.243993,0.828962,0.865588,0.762105,0.368683,0.695456,0.301809,0.996415,0.42303,0.23762,0.241374,0.360261,0.37496,0.497891,0.929071,0.560935,0.556415,0.721736,0.442088,0.120262,0.518371,0.868884,0.650122,0.797708,0.169575,0.482955,|0.323835,0.662926,0.786546,0.0445424,0.821367,0.275793,0.355197,0.985491,0.405517,0.180947,0.945775,0.142256,0.921737,0.850964,0.0494652,0.41479,0.396875,0.610582,0.202142,0.896743,0.695317,0.413976,0.808644,0.865472,0.718025,0.618029,0.959891,0.45721,0.162834,0.899877,0.844286,0.475952,0.270071,0.533923,0.719928,0.178218,0.467631,0.774063,0.993695,0.134603,0.331612,0.574867,0.118216,0.544954,0.00613242,0.523543,0.687731,0.439167,0.609936,0.752269,0.573586,0.252776,0.846617,0.363804,0.37957,0.262586,0.221404,0.707905,0.997173,0.0662578,0.26764,0.507982,0.482414,0.916962,0.859402,0.507888,0.484728,0.000485122,0.772336,0.122497,0.124893,0.691078,0.831557,0.320892,0.996184,0.192172,0.790192,0.75229,0.000296772,0.695632,0.590879,0.436527,0.762108,0.708816,0.971475,0.254205,0.629865,0.404358,0.221138,0.779398,0.161356,0.335007,0.327453,0.923432,0.335811,0.935859,0.373269,0.0884268,0.568276,0.1136,0.718778,0.676794,0.241145,0.571247,0.694002,0.121279,0.75931,0.55611,0.879168,0.549108,0.507575,0.915735,0.587153,0.263747,0.454748,0.0672457,0.996251,0.335002,0.601807,0.166661,0.988369,0.140881,0.372406,0.155532,0.424798,0.90255,0.62702,0.366044,0.77988,0.919607,0.418208,0.141835,0.7026,0.0604519,0.354562,0.321453,0.476007,0.0665385,0.739409,0.626444,0.0942218,0.919138,0.324435,0.434554,0.938664,0.573666,0.512563,0.321626,0.924668,0.897112,0.183278,0.889755,0.207152,0.954112,0.527256,0.360955,0.215822,0.265761,0.147877,0.270568,0.767058,0.220368,0.0167397,0.801188,0.564976,0.952578,0.356462,0.396396,0.274204,0.280738,0.151692,0.253095,0.4516,0.67365,0.42079,0.949676,0.244783,0.262518,0.126495,0.872956,0.164081,0.765128,0.465863,0.0668978,0.00218999,0.348839,0.109663,0.010807,0.608648,0.0924692,0.78828,0.875733,0.43591,0.696858,0.97131,0.312002,0.722849,0.728321,0.712031,0.100114,0.0142635,0.169426,0.462642,0.187619,0.983428,0.404722,0.788026,0.401962,0.622281,0.0639928,0.158995,0.407331,0.262228,0.331136,0.545891,0.734369,0.0238181,0.547857,0.842459,0.119825,0.0244029,0.362987,0.73464,0.587269,0.340187,0.508756,0.39063,0.417643,0.720809,0.254684,0.596691,0.227166,0.43245,0.566821,0.346342,0.346863,0.649539,0.0751027,0.375922,0.402169,0.584198,0.929281,0.3871,0.622692,0.731484,0.24255,0.221034,0.838209,0.0909542,0.834576,0.15391,0.674899,0.565495,0.0332546,0.0738224,0.214478,0.663947,0.469095,0.0838566,0.549115,0.382545,0.993383,0.201694,0.448705,0.111956,0.899169,0.71282,0.175253,0.0710013,0.636564,0.613542,0.901328,0.33927,0.230036,0.20771,0.713969,0.533385,0.211738,0.491512,0.598513,0.639336,0.23662,0.336332,0.754388,0.412507,0.726225,0.124378,0.919562,0.368274,0.26025,0.480126,0.8599,0.936873,0.518457,0.418886,0.345983,0.0623984,0.57703,0.258056,0.763461,0.308682,0.339208,0.249964,0.159832,0.78943,0.503836,0.789547,0.612426,0.0364838,0.472183,0.44706,0.837325,0.383661,0.0701974,0.944976,0.790905,0.446779,0.2973,0.0130337,0.39556,0.173951,0.829736,0.778784,0.983331,0.426439,0.719022,0.428308,0.774927,0.144596,0.104889,0.756456,0.228424,0.544404,0.227269,0.734765,0.0361778,0.599422,0.579944,0.714602,0.348378,0.27179,0.27962,0.529123,0.415614,0.945652,0.45666,0.838052,0.644497,0.771934,0.545563,0.683695,0.105899,0.881117,0.547695,0.416522,0.845182,0.385918,0.754242,0.495246,0.174381,0.828852,0.779906,0.852175,0.560895,0.230664,0.614174,0.477902,0.249612,0.00679511,0.403096,0.395206,0.144309,0.0903798,0.603753,0.406414,0.255774,0.469159,0.600429,0.614767,0.758917,0.668806,0.417108,0.944595,0.404853,0.510158,0.890177,0.420081,0.259609,0.802083,0.675896,0.0947216,0.728651,0.0872234,0.359199,0.142599,0.232361,0.314008,0.387712,0.160728,0.657629,0.706712,0.488348,0.257559,0.171438,0.75654,0.778411,0.464705,0.334638,0.00308526,0.604259,0.813038,0.734799,0.507297,0.090099,0.182351,0.721801,0.692206,0.217386,0.44746,0.66358,0.0679119,0.623027,0.0750655,0.634739,0.0866779,0.0936615,0.878896,0.699154,0.521573,0.908694,0.908928,0.990423,0.00524122,0.211671,0.883058,0.898633,0.967197,0.482405,0.650884,0.0147094,0.561143,0.248006,0.422861,0.592332,0.386915,0.260547,0.329853,0.0412241,0.566277,0.0152776,0.094494,0.591693,0.195406,0.00431067,0.783703,0.380722,0.169909,0.277773,0.115408,0.511001,0.160583,0.0268674,0.134228,0.541507,0.217981,0.706637,0.568049,0.90479,0.2773,0.688647,0.854912,0.995478,0.618077,0.712829,0.726154,0.498075,0.593744,0.538224,0.625628,0.035887,0.52255,0.995585,0.100793,0.196202,0.450039,0.667917,0.0245421,0.728128,0.375908,0.464289,0.70001,0.0926576,0.349824,0.720078,0.633054,0.527773,0.276186,0.480266,0.722019,0.496481,0.32299,0.447826,0.244605,0.429993,0.140473,0.811855,0.74117,0.238477,0.883335,0.0439502,0.319919,0.420044,0.827634,0.379281,0.157377,0.57663,0.787886,0.433943,0.585542,0.543701,0.425642,0.0554851,0.0911616,0.794592,0.474482,0.949714,0.806808,0.389657,0.582884,0.980587,0.534909,0.891911,0.362899,0.254901,0.0381153,0.279814,0.501884,0.944943,0.418706,0.272784,0.17973,0.943188,0.246659,0.16296,0.29164,0.886713,0.302554,0.0519194,0.172441,0.969243,0.156727,0.381115,0.513488,0.825537,0.594231,0.783101,0.0893263,0.954705,0.818304,0.895503,0.757594,0.917514,0.394018,0.426469,0.798868,0.270606,0.820713,0.219126,0.032748,0.980669,0.298114,0.361664,0.130351,0.597968,0.776272,0.597885,0.712535,0.744851,0.138686,0.273466,0.162283,0.412139,0.668301,0.699985,0.170394,0.0796422,0.408168,0.692866,0.92625,0.478932,0.199516,0.40706,0.597485,0.972877,0.392242,0.989699,0.855401,0.704287,0.921907,0.369115,0.886546,0.801311,0.35491,0.268478,0.609435,0.336243,0.701488,0.613969,0.871594,0.91859,0.354658,0.325084,0.609517,0.332785,0.663974,0.370109,0.559322,0.914849,0.197082,0.214124,0.798838,0.286164,0.201874,0.304613,0.769185,0.120775,0.281381,0.612559,0.104864,0.592561,0.422339,0.482243,0.106256,0.0227956,0.268694,0.62885,0.363063,0.569376,0.453159,0.615008,0.622423,0.10261,0.275866,0.584962,0.0373851,0.406264,0.386482,0.982502,0.314304,0.761681,0.201354,0.857121,0.549372,0.90522,0.175673,0.431881,0.473038,0.756782,0.398495,0.959509,0.725191,0.745422,0.928546,0.000239491,0.62102,0.815321,0.969217,0.735678,0.239487,0.332659,0.766819,0.970822,0.0391052,0.270688,0.713182,0.964282,0.739004,0.872021,0.880402,0.388066,0.0766478,0.496615,0.472883,0.418124,0.523192,0.911737,0.355885,0.379514,0.617656,0.16126,0.386258,0.139587,0.900191,0.126105,0.10707,0.0286097,0.640346,0.995252,0.663434,0.939957,0.989353,0.835798,0.237328,0.759798,0.34038,0.852896,0.458997,0.953925,0.0987082,0.715376,0.410905,0.554509,0.808738,0.99704,0.754752,0.951669,0.120429,0.541447,0.224142,0.381112,0.408007,0.11428,0.778058,0.603729,0.759271,0.244438,0.472006,0.105013,0.614244,0.253706,0.854595,0.826514,0.0929698,0.0575768,0.275407,0.313323,0.784162,0.586394,0.848072,0.89434,0.010857,0.0413696,0.62662,0.158511,0.983153,0.173015,0.409362,0.0481503,0.898823,0.438988,0.585881,0.14138,0.890087,0.849346,0.7485,0.375098,0.938584,0.0191565,0.977791,0.61541,0.103618,0.809213,0.408077,0.591298,0.352851,0.78467,0.553593,0.810921,0.281193,0.238777,0.253742,0.180901,0.900697,0.507795,0.35174,0.0893808,0.235974,0.824294,0.841279,0.566578,0.895063,0.778608,0.764647,0.331026,0.184492,0.938867,0.258923,0.697641,0.171688,0.173164,0.29055,0.806022,0.85626,0.245921,0.166004,0.538849,0.608729,0.928488,0.257348,0.626008,0.665726,0.0909889,0.377905,0.560074,0.798455,0.181074,0.0514596,0.44727,0.755049,0.727216,0.864683,0.520544,0.104954,0.0495102,0.838646,0.615408,0.878362,0.460621,0.505069,0.807437,0.841831,0.774576,0.709911,0.407482,0.836326,0.639333,0.10777,0.889523,0.58404,0.919444,0.425364,0.636565,0.499161,0.216549,0.53077,0.4903,0.825013,0.345852,0.0586426,0.950165,0.0496553,0.298636,0.779308,0.645091,0.645974,0.562056,0.859483,0.991477,0.855921,0.57495,0.612966,0.350287,0.684171,0.133061,0.985717,0.215196,0.116259,0.138643,0.206257,0.973223,0.389725,0.180541,0.470391,0.825052,0.829017,0.477139,0.601451,0.00378549,0.655227,0.377056,0.0756783,0.852929,0.847732,0.751888,0.606132,0.0302361,0.0368007,0.291608,0.637813,0.111899,0.515055,0.644881,0.327862,0.707993,0.305677,0.70892,0.429666,0.665991,0.868958,0.655611,0.239716,0.218916,0.626888,0.659944,0.319608,0.155582,0.985775,0.739792,0.52193,0.488719,0.58478,0.901008,0.0572566,0.937716,0.944628,0.226636,0.229958,0.500877,0.966798,0.673517,0.523854,0.462492,0.808797,0.0120238,0.129676,0.768222,0.908882,0.805187,0.383886,0.254861,0.293712,0.0540512,0.670034,0.847777,0.35192,0.110828,0.986525,0.324944,0.778172,0.451267,0.889953,0.0150026,0.784782,0.822452,0.531928,0.0215949,0.54869,0.352018,0.979884,0.324479,0.12126,0.296061,0.916882,0.984423,0.787197,0.668282,0.0966315,0.950287,0.0412126,0.403552,0.657718,0.0576212,0.319142,0.921128,0.0373233,0.164249,0.465301,0.214452,0.299067,0.577995,0.0656445,0.929163,0.556583,0.267454,0.153992,0.852179,0.896186,0.652162,0.491061,0.570379,0.771094,0.557872,0.381372,0.681869,0.108954,0.459068,0.0839882,0.660916,0.111895,0.762382,0.393754,0.649457,0.295646,0.328298,0.686056,0.304272,0.586721,0.164558,0.646598,0.300441,0.0316473,0.175611,0.902377,0.0672665,0.205003,0.496216,0.402425,0.74921,0.595821,0.0525788,|0.415666,0.876045,0.527061,0.194763,0.20629,0.847045,0.836013,0.943069,0.440417,0.255013,0.0677797,0.704401,0.140586,0.0914172,0.120876,0.969694,0.266999,0.0982639,0.351675,0.806275,0.874767,0.050465,0.921276,0.352004,0.763773,0.10835,0.30504,0.0459358,0.370075,0.631465,0.166365,0.44881,0.36737,0.176416,0.375777,0.386894,0.753365,0.783538,0.348422,0.418062,0.382972,0.688295,0.779509,0.536869,0.220726,0.920805,0.351629,0.431755,0.260386,0.81267,0.403443,0.3305,0.36784,0.0862159,0.887991,0.505513,0.981829,0.491441,0.384867,0.315186,0.983949,0.544454,0.913687,0.5892,0.208027,0.719085,0.049248,0.268472,0.286972,0.539043,0.531814,0.398132,0.601346,0.420653,0.680365,0.90634,0.510765,0.43852,0.492752,0.943329,0.112129,0.842174,0.817158,0.265478,0.00561345,0.367701,0.0210875,0.748768,0.357738,0.833264,0.622188,0.692006,0.834959,0.901595,0.451839,0.151722,0.741339,0.112684,0.37896,0.67299,0.867683,0.557882,0.0467052,0.0791392,0.711398,0.120231,0.44558,0.419065,0.96879,0.263711,0.383176,0.0433105,0.24131,0.798436,0.856611,0.731714,0.895256,0.0513428,0.427419,0.534581,0.958517,0.757164,0.461908,0.855175,0.347773,0.326369,0.798877,0.107941,0.000735581,0.650298,0.101795,0.918768,0.0175244,0.38029,0.403293,0.0985398,0.472589,0.110971,0.683134,0.579316,0.992749,0.815484,0.70728,0.973987,0.375885,0.72471,0.895987,0.570474,0.740901,0.259598,0.954731,0.749435,0.344957,0.611476,0.0786686,0.503586,0.528097,0.896325,0.880375,0.18906,0.455839,0.241062,0.646089,0.540714,0.853173,0.826488,0.0632007,0.516903,0.435892,0.901157,0.312198,0.35497,0.639938,0.146491,0.139731,0.643097,0.152628,0.365687,0.078694,0.586292,0.9755,0.974289,0.665183,0.368624,0.755611,0.739136,0.483205,0.846044,0.180379,0.0153357,0.670991,0.381155,0.97898,0.132337,0.459978,0.0198108,0.571681,0.458646,0.922011,0.126993,0.524343,0.797064,0.51607,0.424357,0.755506,0.556113,0.697478,0.218555,0.705895,0.762385,0.0808656,0.368895,0.935212,0.857291,0.756256,0.278531,0.0749032,0.885727,0.431083,0.528035,0.964613,0.523958,0.309265,0.73451,0.742937,0.747524,0.151423,0.145118,0.806764,0.842165,0.481483,0.515939,0.19979,0.450643,0.539848,0.929051,0.704186,0.133119,0.256342,0.725123,0.752358,0.69753,0.187388,0.628261,0.319457,0.135676,0.953189,0.531451,0.579511,0.19718,0.449527,0.351518,0.100283,0.0996397,0.00520843,0.518934,0.388044,0.148356,0.31828,0.468519,0.990932,0.273545,0.328821,0.632485,0.75935,0.89414,0.0517758,0.0833027,0.658294,0.220228,0.0667487,0.464813,0.618176,0.623873,0.0356876,0.750934,0.260182,0.886248,0.941899,0.334984,0.285192,0.901021,0.235094,0.206273,0.377495,0.95238,0.532419,0.504053,0.65317,0.294841,0.595295,0.893631,0.462811,0.789492,0.32812,0.41096,0.307318,0.407067,0.393031,0.453885,0.923517,0.189521,0.855755,0.639797,0.381666,0.699032,0.548688,0.0368632,0.880258,0.715843,0.0193651,0.57109,0.203044,0.527956,0.0465392,0.868978,0.00841606,0.611277,0.75421,0.611917,0.901695,0.488081,0.636883,0.367471,0.87413,0.99612,0.431326,0.933756,0.179103,0.611212,0.51561,0.764869,0.177345,0.409419,0.372544,0.783029,0.650142,0.538878,0.34894,0.468573,0.265129,0.857641,0.452238,0.0119461,0.429064,0.498152,0.542579,0.126445,0.30063,0.32265,0.681274,0.149237,0.34535,0.562367,0.666826,0.0985804,0.260172,0.287156,0.129089,0.517444,0.285671,0.121086,0.471203,0.265877,0.63509,0.66458,0.260445,0.764162,0.70797,0.488628,0.322396,0.577528,0.386832,0.355287,0.181961,0.94565,0.259307,0.57452,0.0425777,0.00831383,0.876874,0.832447,0.718116,0.847651,0.359832,0.719983,0.484343,0.131759,0.441943,0.842391,0.300605,0.563356,0.890838,0.467308,0.0750693,0.17814,0.758012,0.755492,0.881925,0.845331,0.858319,0.465085,0.436282,0.161228,0.304013,0.976023,0.0311568,0.422014,0.812767,0.388197,0.552797,0.890645,0.812602,0.620736,0.560177,0.921824,0.610481,0.789358,0.885721,0.206193,0.485919,0.968041,0.424638,0.814229,0.200742,0.664694,0.439145,0.998756,0.70288,0.0500814,0.528348,0.00785464,0.58911,0.66667,0.254179,0.904206,0.866735,0.409858,0.743511,0.143707,0.239097,0.0245818,0.933403,0.126244,0.222063,0.434742,0.0981754,0.563796,0.230473,0.435954,0.961386,0.939698,0.139894,0.721772,0.819153,0.811037,0.401763,0.497651,0.221416,0.609336,0.942852,0.827372,0.0616741,0.327455,0.936938,0.480449,0.0472445,0.267022,0.335319,0.683037,0.258158,0.118633,0.0752434,0.135801,0.405455,0.729098,0.657241,0.457866,0.447448,0.739242,0.60029,0.641546,0.301289,0.234902,0.175333,0.87734,0.268132,0.273465,0.912026,0.366621,0.0649147,0.624803,0.795195,0.675003,0.920126,0.314242,0.864948,0.647404,0.256186,0.322607,0.938797,0.172162,0.182873,0.843051,0.00871885,0.236797,0.047217,0.859754,0.155139,0.108279,0.546765,0.091188,0.855272,0.715869,0.164459,0.801972,0.307341,0.323468,0.631759,0.994493,0.558733,0.473724,0.738441,0.707136,0.78763,0.21921,0.57255,0.93623,0.807697,0.361486,0.261005,0.0889999,0.972977,0.575252,0.045843,0.847003,0.487831,0.505151,0.116141,0.901096,0.151786,0.333905,0.312899,0.0739893,0.278629,0.896451,0.202593,0.960989,0.918254,0.279128,0.705059,0.474944,0.173798,0.809618,0.975197,0.333807,0.991784,0.393762,0.352535,0.580307,0.49549,0.354476,0.16123,0.411232,0.59237,0.64929,0.24896,0.667798,0.796692,0.419744,0.0513086,0.25106,0.280055,0.322347,0.286422,0.404744,0.447656,0.55338,0.736582,0.755587,0.0851481,0.629898,0.438758,0.628405,0.57358,0.45274,0.266032,0.619401,0.0887669,0.271313,0.788974,0.694242,0.798364,0.332181,0.702504,0.149105,0.211652,0.0550789,0.138891,0.896277,0.26337,0.21243,0.706748,0.309984,0.31545,0.89124,0.185384,0.699186,0.960208,0.0246711,0.301518,0.0355531,0.755669,0.792743,0.384755,0.426777,0.324248,0.965372,0.841274,0.0771367,0.694949,0.944426,0.54251,0.493189,0.938572,0.53911,0.92712,0.737037,0.889283,0.656502,0.635725,0.48439,0.0834417,0.267143,0.257736,0.361704,0.536975,0.382492,0.510209,0.28234,0.0411268,0.990638,0.0674383,0.0792762,0.355291,0.231931,0.962899,0.400347,0.0455772,0.937763,0.954864,0.911969,0.424614,0.896103,0.161697,0.397494,0.667817,0.842492,0.888795,0.858756,0.55449,0.510127,0.743585,0.186688,0.58065,0.66265,0.78429,0.904706,0.743767,0.0278124,0.304433,0.0671732,0.335691,0.779625,0.458476,0.368178,0.114302,0.640136,0.880148,0.0842414,0.930222,0.286561,0.708231,0.603513,0.628981,0.611889,0.688588,0.448893,0.368666,0.989127,0.448732,0.0119749,0.317786,0.190124,0.999885,0.766995,0.11098,0.756104,0.0861831,0.437734,0.704196,0.650173,0.809802,0.448586,0.741693,0.508621,0.661718,0.4004,0.551631,0.877396,0.281058,0.930092,0.613769,0.575824,0.90911,0.919667,0.444418,0.31735,0.526021,0.410234,0.643382,0.326381,0.10631,0.263405,0.778209,0.662262,0.87348,0.185031,0.244092,0.302629,0.99503,0.255883,0.1945,0.247347,0.646335,0.529446,0.747745,0.253478,0.749697,0.490204,0.260689,0.335296,0.81398,0.900339,0.42672,0.850724,0.38727,0.83909,0.21964,0.412598,0.792337,0.839832,0.0315498,0.919074,0.387411,0.167078,0.55843,0.186173,0.411283,0.014038,0.602638,0.528338,0.0300888,0.934379,0.932968,0.653291,0.986573,0.461069,0.290222,0.775487,0.884479,0.0137926,0.841745,0.509358,0.926461,0.808669,0.311123,0.122576,0.919772,0.391986,0.315342,0.0872096,0.874227,0.849183,0.232329,0.606638,0.714418,0.952661,0.29469,0.334551,0.157755,0.502428,0.096018,0.0394613,0.391562,0.429875,0.142377,0.0495815,0.388724,0.832327,0.136512,0.0922154,0.877738,0.596254,0.844761,0.834011,0.637058,0.382244,0.443181,0.575468,0.737189,0.05316,0.624223,0.577695,0.715969,0.19832,0.489964,0.243801,0.341238,0.429786,0.493904,0.0419259,0.639614,0.522723,0.882183,0.32844,0.357656,0.481153,0.636211,0.120047,0.784281,0.0976266,0.721607,0.977635,0.21192,0.398511,0.260075,0.761575,0.776975,0.348323,0.560887,0.823875,0.157096,0.950523,0.370876,0.578252,0.855421,0.0802807,0.209,0.583308,0.0586346,0.233716,0.25146,0.562022,0.832754,0.0962408,0.0515087,0.190194,0.894953,0.568745,0.0945479,0.479129,0.505853,0.202374,0.222493,0.433248,0.291684,0.81285,0.75902,0.400624,0.637844,0.648292,0.0256524,0.460998,0.0862976,0.989345,0.0212066,0.00704962,0.606147,0.0374938,0.155415,0.290999,0.46572,0.4923,0.506014,0.017353,0.562294,0.778468,0.301387,0.913072,0.84335,0.567466,0.505964,0.441031,0.603164,0.0293882,0.805068,0.839855,0.526705,0.202385,0.0837771,0.17253,0.98705,0.131051,0.525028,0.391204,0.848606,0.59272,0.901008,0.681965,0.720461,0.333744,0.81394,0.849939,0.428329,0.00121599,0.296404,0.119113,0.228244,0.0956534,0.0482608,0.405821,0.844801,0.0132099,0.0871162,0.407039,0.402331,0.80105,0.899559,0.968493,0.886897,0.544924,0.95162,0.671177,0.850229,0.222885,0.20479,0.997383,0.812286,0.479411,0.315965,0.878662,0.611626,0.545319,0.810418,0.746338,0.946548,0.893289,0.208741,0.79112,0.219799,0.365178,0.692173,0.859868,0.182888,0.571194,0.0563061,0.574155,0.383339,0.91464,0.591665,0.104122,0.216815,0.967697,0.258661,0.903064,0.571375,0.309075,0.990797,0.320911,0.803293,0.838781,0.784072,0.209302,0.523416,0.51335,0.56906,0.684359,0.596432,0.527567,0.903348,0.339018,0.681948,0.367588,0.45509,0.602252,0.865416,0.419384,0.580246,0.78388,0.813903,0.899931,0.381055,0.632647,0.161238,0.490618,0.509849,0.624788,0.798041,0.161428,|0.440845,0.0161073,0.240709,0.542399,0.596588,0.717144,0.31273,0.299519,0.47859,0.500355,0.912758,0.493042,0.980591,0.349929,0.213326,0.0453416,0.51493,0.216124,0.172211,0.642034,0.392449,0.089883,0.573633,0.605656,0.305345,0.20549,0.598634,0.917668,0.184575,0.560004,0.297987,0.195981,0.609696,0.685388,0.721742,0.583106,0.37122,0.921509,0.73931,0.436918,0.383525,0.465564,0.0753133,0.980253,0.757779,0.574125,0.683868,0.411819,0.792781,0.894362,0.991376,0.20515,0.00449049,0.929894,0.661664,0.375614,0.913383,0.0129179,0.675442,0.962193,0.330588,0.154002,0.510228,0.632687,0.704898,0.0901316,0.160628,0.452522,0.12812,0.939241,0.482027,0.636473,0.557147,0.682883,0.821096,0.319359,0.294479,0.144468,0.350628,0.744033,0.739928,0.191014,0.130415,0.221826,0.96053,0.989524,0.863191,0.844675,0.822175,0.349419,0.410724,0.269412,0.761497,0.893091,0.14353,0.636601,0.290033,0.742208,0.459206,0.687374,0.87883,0.0259655,0.686291,0.393755,0.514223,0.244656,0.899926,0.310024,0.520553,0.457441,0.755347,0.705054,0.654815,0.814886,0.337802,0.346016,0.829847,0.275726,0.79134,0.0901011,0.078658,0.65444,0.820095,0.926722,0.795222,0.636109,0.594572,0.337375,0.0814227,0.658216,0.176053,0.295988,0.531418,0.667957,0.590195,0.500864,0.689103,0.680458,0.822883,0.13205,0.98137,0.291944,0.736663,0.743348,0.391659,0.0352408,0.253305,0.184109,0.495382,0.642199,0.456501,0.71685,0.653559,0.611958,0.380013,0.736933,0.569541,0.454762,0.131256,0.497829,0.279145,0.416292,0.995903,0.279648,0.550364,0.309359,0.469339,0.499164,0.797792,0.384466,0.622865,0.216027,0.138755,0.460909,0.527778,0.438458,0.477562,0.566455,0.840597,0.286731,0.13667,0.525697,0.106065,0.120555,0.457775,0.266884,0.128874,0.538022,0.461477,0.838227,0.38424,0.564955,0.565022,0.33368,0.739802,0.0116432,0.674264,0.199228,0.260611,0.640136,0.713037,0.452279,0.943312,0.74972,0.306343,0.963038,0.392758,0.509175,0.409542,0.803295,0.00884068,0.0703155,0.39487,0.749236,0.117249,0.632787,0.964155,0.269766,0.532108,0.778626,0.645346,0.458935,0.824736,0.0386188,0.679249,0.101322,0.396101,0.774109,0.893598,0.0916626,0.730675,0.91161,0.230518,0.0946118,0.679524,0.0166769,0.517246,0.652618,0.208584,0.792955,0.300059,0.314518,0.28561,0.086861,0.00682014,0.170857,0.236542,0.383983,0.186184,0.572066,0.196245,0.767822,0.903695,0.157979,0.591762,0.460883,0.0645922,0.76374,0.941331,0.764797,0.866794,0.0426352,0.072136,0.618021,0.345052,0.411252,0.224763,0.291561,0.849459,0.695082,0.489761,0.39139,0.810548,0.651539,0.547754,0.889375,0.218052,0.563548,0.833994,0.996852,0.784582,0.416681,0.517267,0.519263,0.71285,0.814445,0.776692,0.640536,0.595191,0.87169,0.752482,0.695291,0.610203,0.201831,0.342334,0.17914,0.950678,0.187025,0.0263083,0.684267,0.768533,0.178426,0.635533,0.246519,0.737087,0.0383113,0.665534,0.919722,0.871628,0.297769,0.485384,0.703715,0.965712,0.548107,0.150785,0.61616,0.985502,0.120324,0.0359084,0.443507,0.800155,0.134537,0.510808,0.246475,0.46003,0.307667,0.584513,0.721834,0.25747,0.0375386,0.145152,0.570278,0.515266,0.897024,0.384712,0.689475,0.931072,0.481469,0.973989,0.378695,0.548306,0.511717,0.177168,0.270742,0.894501,0.819869,0.551525,0.480096,0.560063,0.702399,0.461392,0.338518,0.0143383,0.700696,0.649653,0.884405,0.694482,0.742891,0.401457,0.305448,0.918039,0.421184,0.558289,0.0220497,0.55793,0.725181,0.854594,0.46486,0.446131,0.840555,0.417437,0.376022,0.149834,0.180546,0.793457,0.538742,0.483435,0.304776,0.472982,0.285149,0.499866,0.53968,0.323248,0.939279,0.0380377,0.185057,0.953599,0.392941,0.0915072,0.206999,0.00783741,0.225426,0.224845,0.926537,0.527477,0.77704,0.192932,0.973259,0.328747,0.906764,0.433378,0.286829,0.0926838,0.28384,0.345506,0.871649,0.702962,0.429098,0.461536,0.72214,0.0586092,0.751438,0.451698,0.261715,0.420727,0.847205,0.6932,0.750043,0.602079,0.214017,0.709092,0.629315,0.097723,0.089012,0.653531,0.0319273,0.442468,0.305291,0.328437,0.70845,0.368649,0.0449314,0.896431,0.15326,0.338426,0.521132,0.0570847,0.999656,0.184891,0.921918,0.0027582,0.752655,0.0977988,0.839989,0.934604,0.843552,0.93948,0.000222921,0.610372,0.896318,0.740419,0.95006,0.778766,0.851394,0.417895,0.225097,0.868604,0.811546,0.159963,0.392618,0.79552,0.536792,0.94488,0.983413,0.893106,0.813729,0.701249,0.486435,0.65703,0.150622,0.789944,0.00967926,0.263072,0.444665,0.657784,0.141583,0.619908,0.639437,0.0173658,0.311655,0.74078,0.21911,0.151346,0.339454,0.860034,0.687135,0.9068,0.871495,0.253375,0.653329,0.29675,0.777677,0.597793,0.51051,0.492263,0.568224,0.841249,0.293343,0.284342,0.793274,0.742662,0.0284232,0.173128,0.890396,0.167651,0.823026,0.349197,0.96329,0.0332707,0.406962,0.500375,0.236043,0.534877,0.837611,0.631372,0.605972,0.77035,0.731489,0.168437,0.11075,0.185741,0.398188,0.333506,0.514091,0.499479,0.119841,0.692635,0.997066,0.03782,0.277948,0.229389,0.770137,0.386461,0.460675,0.780182,0.963902,0.49887,0.325256,0.600553,0.18959,0.327175,0.786467,0.995115,0.505645,0.0281489,0.811388,0.495785,0.0221857,0.360172,0.217385,0.589144,0.00181109,0.866961,0.621956,0.550318,0.281169,0.654241,0.566895,0.118048,0.547812,0.136779,0.964009,0.152891,0.673634,0.967823,0.60426,0.767458,0.879728,0.404214,0.828583,0.347233,0.452772,0.940856,0.698282,0.23647,0.814824,0.800727,0.852207,0.263446,0.997243,0.36294,0.263112,0.445404,0.905509,0.187753,0.678393,0.0138402,0.808498,0.146925,0.506731,0.939677,0.820554,0.399676,0.60122,0.212668,0.532841,0.00842166,0.204942,0.782859,0.678761,0.411847,0.780697,0.872096,0.122662,0.072409,0.513961,0.870691,0.640733,0.781826,0.951802,0.425937,0.19911,0.0521971,0.757473,0.120406,0.660203,0.548557,0.509364,0.818854,0.254362,0.0505683,0.220533,0.909924,0.504396,0.565693,0.150773,0.578385,0.910585,0.274934,0.380659,0.953624,0.479919,0.247724,0.956576,0.841027,0.71971,0.606325,0.0680643,0.259715,0.413794,0.558,0.240464,0.144093,0.184784,0.237468,0.430786,0.44576,0.841248,0.154436,0.527803,0.75419,0.442007,0.412444,0.591106,0.509818,0.769549,0.337892,0.724681,0.27345,0.397311,0.883859,0.378118,0.108847,0.654383,0.2303,0.305806,0.370913,0.63603,0.852368,0.422656,0.336443,0.150006,0.0724594,0.988849,0.725638,0.481549,0.458689,0.929372,0.5429,0.613627,0.591347,0.0493209,0.38019,0.43718,0.72214,0.434379,0.266321,0.513303,0.950699,0.10002,0.638419,0.330067,0.130411,0.0767225,0.366306,0.490102,0.558991,0.561185,0.0105497,0.480615,0.860227,0.954244,0.110791,0.0734487,0.764372,0.482622,0.830992,0.201189,0.285344,0.978761,0.26541,0.900022,0.729377,0.12367,0.094536,0.954763,0.517144,0.895046,0.274327,0.727528,0.519745,0.237149,0.5123,0.452581,0.450241,0.135762,0.904021,0.849564,0.799957,0.766725,0.182813,0.826243,0.719622,0.00114167,0.706217,0.962692,0.648572,0.838307,0.939765,0.465698,0.846979,0.720837,0.0807677,0.534247,0.691869,0.766527,0.495921,0.728044,0.317493,0.47345,0.328534,0.579726,0.254389,0.144856,0.848942,0.478689,0.70497,0.668866,0.621978,0.695732,0.956583,0.123315,0.318908,0.200357,0.826589,0.971095,0.402428,0.127694,0.498934,0.427866,0.396948,0.878485,0.099058,0.806378,0.865578,0.0128953,0.16719,0.844802,0.14209,0.411828,0.932883,0.271814,0.053314,0.550613,0.0780985,0.352577,0.327268,0.685328,0.0148296,0.453817,0.358035,0.435139,0.564713,0.762848,0.886711,0.310256,0.416292,0.496605,0.21464,0.383504,0.816172,0.94201,0.973248,0.244243,0.236318,0.596162,0.151716,0.971884,0.00166255,0.876504,0.562628,0.355797,0.99013,0.229094,0.227191,0.0225768,0.51187,0.362236,0.397821,0.762905,0.129363,0.164073,0.62774,0.739111,0.0491814,0.2795,0.313267,0.931516,0.810162,0.0334954,0.108753,0.030921,0.783658,0.157104,0.250205,0.962529,0.355399,0.388193,0.117391,0.461113,0.26039,0.544809,0.0608815,0.16352,0.866624,0.9918,0.526718,0.999615,0.990158,0.926914,0.0613831,0.923413,0.213017,0.076366,0.895764,0.261826,0.250692,0.180595,0.769364,0.0320173,0.441528,0.155741,0.15956,0.383314,0.420307,0.0532373,0.465474,0.392713,0.227495,0.828103,0.211395,0.6692,0.396145,0.328899,0.8793,0.902508,0.973861,0.42812,0.590773,0.928131,0.320916,0.0218689,0.449203,0.0439762,0.845408,0.26585,0.31086,0.988792,0.329547,0.338513,0.99522,0.626442,0.741054,0.280891,0.678791,0.124655,0.35486,0.469777,0.0848835,0.595302,0.599683,0.729271,0.907936,0.988392,0.833818,0.815232,0.893829,0.733371,0.314256,0.274853,0.25311,0.188553,0.916428,0.577532,0.535957,0.554885,0.193531,0.599965,0.16875,0.547806,0.904218,0.897855,0.222464,0.967589,0.978558,0.326891,0.688445,0.0287934,0.0774029,0.663993,0.55429,0.067771,0.749191,0.151606,0.207794,0.987923,0.859828,0.486945,0.198342,0.767641,0.0638826,0.106976,0.548023,0.771875,0.140478,0.551167,0.489333,0.738847,0.219168,0.898649,0.579963,0.300026,0.256675,0.936546,0.0787506,0.848531,0.566169,0.537577,0.992655,0.805532,0.895108,0.326106,0.759185,0.675321,0.625671,0.141182,0.685635,0.0272537,0.607934,0.834468,0.660429,0.0714821,0.235273,0.0410597,0.722474,0.888809,0.780309,0.0104308,0.105776,0.79476,0.901998,0.329637,0.289867,0.716319,0.518783,0.700982,0.0862024,0.541622,0.538381,0.939618,0.658193,0.772551,0.0244044,0.916243,0.326145,0.196083,0.98885,0.768997,0.0596524,0.507507,|0.079842,0.562408,0.526133,0.790641,0.531477,0.0405696,0.131371,0.408639,0.696705,0.243213,0.536456,0.67516,0.976828,0.553335,0.455367,0.869552,0.23119,0.630426,0.070061,0.477963,0.5131,0.319556,0.293919,0.137445,0.613583,0.96639,0.761559,0.191915,0.106841,0.296764,0.0852272,0.855501,0.0451956,0.674065,0.874492,0.75338,0.454452,0.650185,0.548356,0.324212,0.00756824,0.611703,0.537188,0.664687,0.06607,0.0655435,0.29967,0.386318,0.749377,0.791858,0.332769,0.305633,0.733547,0.0572295,0.512447,0.0625187,0.926987,0.0653549,0.45126,0.0370615,0.969932,0.336518,0.923687,0.557011,0.925015,0.0684416,0.808265,0.766118,0.878233,0.58498,0.867789,0.0855792,0.237097,0.0821141,0.17203,0.831497,0.660003,0.0897831,0.638782,0.430937,0.506792,0.722831,0.108732,0.567396,0.216305,0.773409,0.854689,0.917635,0.622855,0.92293,0.248194,0.889394,0.569988,0.448028,0.402893,0.692287,0.693457,0.998338,0.463135,0.0057109,0.0343624,0.282548,0.666196,0.551784,0.224561,0.966305,0.819412,0.36949,0.0580583,0.420696,0.779402,0.907676,0.240151,0.614298,0.987599,0.60744,0.883471,0.879939,0.255736,0.997116,0.748199,0.111647,0.296839,0.537499,0.771359,0.122737,0.0952955,0.327484,0.452121,0.317734,0.555413,0.775365,0.525331,0.836026,0.0366711,0.409982,0.0941786,0.630256,0.605009,0.385039,0.614914,0.201112,0.454971,0.192928,0.938581,0.334287,0.898821,0.557572,0.0467441,0.803961,0.67369,0.926953,0.951351,0.270482,0.423278,0.924045,0.644972,0.160806,0.704437,0.499224,0.670996,0.758032,0.169243,0.947048,0.225179,0.201914,0.212016,0.432647,0.744607,0.244012,0.844657,0.0526079,0.53619,0.975212,0.777645,0.114409,0.338714,0.0710128,0.0146759,0.702105,0.514226,0.679674,0.402354,0.695311,0.820418,0.741778,0.78161,0.947773,0.668114,0.182176,0.128318,0.137223,0.696324,0.869851,0.651618,0.166205,0.821349,0.514344,0.914951,0.406496,0.890523,0.299055,0.957611,0.0936198,0.227365,0.767965,0.3927,0.749223,0.874034,0.330788,0.784208,0.594431,0.70876,0.338217,0.453632,0.503243,0.222563,0.833176,0.813106,0.638674,0.934935,0.939264,0.740273,0.511618,0.372017,0.786616,0.334782,0.93932,0.656226,0.952931,0.718242,0.262203,0.533826,0.594333,0.898629,0.936553,0.417959,0.732077,0.365517,0.672673,0.995584,0.01271,0.511739,0.464124,0.659616,0.185709,0.519801,0.89196,0.297486,0.706009,0.0978103,0.78332,0.364891,0.840471,0.59003,0.0238472,0.019636,0.260555,0.190323,0.559951,0.75446,0.237002,0.614713,0.743833,0.603299,0.698361,0.83976,0.282781,0.972975,0.532722,0.809695,0.65431,0.287291,0.526406,0.623702,0.905621,0.275167,0.955455,0.351618,0.498694,0.496582,0.30741,0.739635,0.380226,0.639604,0.275276,0.832922,0.615516,0.498919,0.718532,0.456062,0.786391,0.484855,0.894812,0.908244,0.566835,0.4946,0.677723,0.786684,0.408045,0.459548,0.681309,0.154813,0.245883,0.342338,0.907441,0.79222,0.406999,0.515137,0.0949539,0.559621,0.511198,0.843609,0.014899,0.906737,0.848196,0.753715,0.968581,0.551263,0.471058,0.751839,0.705938,0.322104,0.356603,0.144892,0.237066,0.0105864,0.879566,0.935981,0.653211,0.715025,0.219265,0.755945,0.33919,0.104604,0.152858,0.945029,0.202744,0.976808,0.0640249,0.851471,0.495267,0.930292,0.54635,0.672762,0.360575,0.0281255,0.0170298,0.863589,0.995881,0.393542,0.313678,0.311862,0.926296,0.524431,0.180797,0.079832,0.0508402,0.948894,0.324529,0.165573,0.736994,0.263657,0.0210562,0.0319911,0.0161661,0.152161,0.814986,0.884649,0.953558,0.664688,0.911839,0.398068,0.833894,0.412494,0.765178,0.532866,0.113495,0.115074,0.358903,0.936996,0.429788,0.609314,0.300424,0.265738,0.0342308,0.932243,0.0291358,0.0576658,0.632712,0.800178,0.321101,0.381542,0.547926,0.60067,0.274175,0.599639,0.142752,0.92547,0.882083,0.356024,0.303183,0.000396669,0.037847,0.36542,0.00636351,0.49916,0.971254,0.523688,0.405691,0.107697,0.606448,0.369732,0.917355,0.338769,0.052598,0.025016,0.72692,0.422811,0.365101,0.357812,0.312147,0.0998443,0.655407,0.246701,0.315309,0.711339,0.104426,0.660034,0.197151,0.406757,0.854984,0.945192,0.849883,0.846463,0.979163,0.427083,0.407041,0.388332,0.614539,0.492113,0.404422,0.0292168,0.450553,0.814358,0.175467,0.196096,0.224991,0.563726,0.940105,0.150081,0.655672,0.456531,0.0574417,0.707832,0.785402,0.58669,0.528091,0.803094,0.166356,0.25221,0.0601876,0.470041,0.625874,0.44262,0.594029,0.200507,0.34825,0.585859,0.210934,0.528308,0.899432,0.925036,0.202517,0.734381,0.224456,0.842949,0.0901638,0.349305,0.892668,0.183963,0.744454,0.360125,0.130916,0.0116794,0.892914,0.95472,0.704936,0.727486,0.239027,0.645039,0.644742,0.736769,0.870666,0.944934,0.596559,0.562539,0.475501,0.215992,0.150969,0.61838,0.0860033,0.700104,0.136068,0.653005,0.526117,0.19422,0.583575,0.682362,0.709309,0.921854,0.696466,0.165803,0.849467,0.346948,0.688752,0.985555,0.190291,0.444125,0.218349,0.975141,0.920103,0.912889,0.401815,0.553598,0.460899,0.605202,0.547803,0.011991,0.384447,0.992587,0.409851,0.58211,0.937558,0.263237,0.943196,0.147563,0.985613,0.302036,0.566467,0.778225,0.3931,0.00766081,0.591152,0.0470684,0.468181,0.871352,0.625123,0.0327452,0.202078,0.642784,0.807301,0.429199,0.94094,0.953135,0.391979,0.382761,0.63334,0.36663,0.923473,0.860544,0.084825,0.701369,0.836439,0.789528,0.770884,0.771682,0.90798,0.678231,0.677149,0.533765,0.377819,0.334175,0.387409,0.48707,0.810462,0.608007,0.433354,0.676627,0.224153,0.26957,0.0305565,0.425451,0.804719,0.226417,0.998134,0.390036,0.540794,0.0898887,0.0513756,0.209726,0.857316,0.389992,0.0382845,0.387294,0.417615,0.527752,0.209843,0.822896,0.471082,0.585113,0.956047,0.427067,0.0709978,0.92352,0.162557,0.689235,0.534705,0.169773,0.72866,0.828473,0.0148173,0.782974,0.669229,0.179292,0.220643,0.889625,0.705195,0.290983,0.0243754,0.971115,0.110759,0.0103987,0.492813,0.564659,0.907072,0.138035,0.461036,0.0461688,0.944487,0.883387,0.571598,0.182864,0.619312,0.17403,0.839482,0.380696,0.407812,0.67625,0.429663,0.560448,0.288799,0.853518,0.468546,0.23466,0.730563,0.149309,0.948343,0.604828,0.228218,0.875332,0.726619,0.82346,0.451536,0.146628,0.825749,0.546357,0.904394,0.678566,0.646471,0.435447,0.1187,0.701405,0.247674,0.649915,0.825742,0.750927,0.149218,0.951611,0.550361,0.967849,0.175243,0.254741,0.787813,0.60633,0.81946,0.180423,0.216194,0.621485,0.775222,0.672723,0.868214,0.0657675,0.813605,0.748336,0.252595,0.633296,0.201289,0.000582635,0.916072,0.586223,0.991318,0.427453,0.311636,0.795069,0.0414562,0.926752,0.323449,0.141084,0.827572,0.823622,0.806003,0.894388,0.850974,0.450369,0.979711,0.363835,0.628007,0.0395939,0.978699,0.427264,0.0349694,0.842545,0.839918,0.901339,0.462677,0.574008,0.286219,0.462374,0.895921,0.0231704,0.842443,0.106288,0.530033,0.031984,0.613569,0.0343368,0.17429,0.283262,0.626978,0.118338,0.937566,0.924627,0.402362,0.878938,0.308533,0.774449,0.145803,0.131508,0.701547,0.877196,0.0629801,0.134791,0.657278,0.152655,0.744548,0.616368,0.315628,0.943312,0.612109,0.105256,0.0476179,0.540079,0.86151,0.138025,0.0550335,0.234222,0.923212,0.725115,0.582987,0.461811,0.390097,0.285057,0.259959,0.0613693,0.385707,0.625222,0.59064,0.351651,0.481221,0.939139,0.873001,0.287612,0.0634287,0.132052,0.828863,0.0308892,0.60392,0.160115,0.173316,0.116161,0.626745,0.499653,0.416446,0.564799,0.353543,0.485464,0.594726,0.363228,0.926322,0.602339,0.793026,0.881052,0.741634,0.827259,0.522362,0.578296,0.135127,0.76704,0.830336,0.258367,0.797114,0.973818,0.341005,0.565872,0.212433,0.0157486,0.423838,0.362918,0.0201033,0.0493195,0.421054,0.0637311,0.910819,0.312975,0.975637,0.551076,0.403994,0.578129,0.308408,0.94526,0.0347706,0.455243,0.348464,0.0519714,0.540062,0.627806,0.344454,0.251397,0.15863,0.221327,0.116718,0.13285,0.329896,0.713806,0.256059,0.0120395,0.264151,0.082919,0.742223,0.443095,0.835743,0.69174,0.914665,0.900002,0.0719537,0.517116,0.82656,0.821236,0.409495,0.0983602,0.263893,0.0659497,0.313978,0.389728,0.515849,0.69536,0.551793,0.107918,0.332398,0.347128,0.791176,0.377563,0.101292,0.160236,0.628088,0.675023,0.65953,0.141152,0.793966,0.082248,0.288541,0.760333,0.366784,0.136215,0.303737,0.951807,0.481278,0.948735,0.978589,0.699331,0.694791,0.752206,0.194658,0.307454,0.247486,0.757659,0.961687,0.265427,0.176684,0.681787,0.161604,0.713822,0.0330639,0.846056,0.224154,0.294291,0.953669,0.775861,0.317027,0.49712,0.723778,0.810663,0.108779,0.134915,0.366417,0.63113,0.016095,0.839306,0.728533,0.412953,0.32793,0.507425,0.817917,0.712438,0.982779,0.517376,0.926752,0.342655,0.573326,0.72755,0.304001,0.15407,0.754334,0.834702,0.853818,0.170305,0.53269,0.635568,0.735476,0.821171,0.140658,0.95076,0.321353,0.725869,0.0193753,0.714342,0.32001,0.799901,0.942253,0.131223,0.830522,0.916916,0.842867,0.68952,0.530454,0.299982,0.24378,0.63768,0.751105,0.578236,0.825003,0.271122,0.170978,0.391687,0.339308,0.450178,0.143616,0.0520254,0.668689,0.460748,0.818421,0.213281,0.0478375,0.096885,0.36891,0.289878,0.887227,0.0147418,0.341443,0.0695006,0.690501,0.306384,0.00288486,0.0525767,0.827475,0.570167,0.37443,0.238405,0.951343,0.622895,0.821982,0.494559,0.451763,0.266322,0.799423,0.0172915,0.320212,0.599456,0.944799,0.396532,0.717934,0.576881,0.120623,0.879847,0.374557,0.0452857,0.876516,0.187681,0.831472,|0.127167,0.914217,0.631172,0.92224,0.119021,0.343616,0.807443,0.777036,0.367085,0.6035,0.694823,0.931016,0.852275,0.426855,0.206276,0.265044,0.850546,0.424275,0.349281,0.934568,0.429786,0.779304,0.68976,0.792565,0.349876,0.673912,0.63337,0.573863,0.0344943,0.592593,0.491649,0.634367,0.689019,0.457397,0.134962,0.906147,0.269391,0.829377,0.140383,0.75567,0.501399,0.509223,0.440042,0.881932,0.761838,0.32113,0.0346808,0.637694,0.400662,0.424079,0.155442,0.0352443,0.316315,0.318238,0.741573,0.171274,0.806571,0.140428,0.53971,0.485444,0.445232,0.446687,0.586702,0.534897,0.61995,0.77619,0.641346,0.3934,0.757937,0.751808,0.0555562,0.535852,0.354301,0.255651,0.832724,0.324523,0.246257,0.264784,0.161687,0.153318,0.343526,0.629319,0.47837,0.462604,0.611695,0.302693,0.861401,0.116244,0.648403,0.52628,0.0425107,0.281602,0.514268,0.558387,0.609014,0.302117,0.899711,0.565162,0.624367,0.957332,0.669358,0.381069,0.937874,0.840584,0.455705,0.67318,0.031985,0.866523,0.131296,0.434834,0.274748,0.0850197,0.403569,0.743181,0.0883854,0.831751,0.823712,0.761249,0.502886,0.35909,0.162349,0.251448,0.241935,0.840252,0.0468056,0.818662,0.70511,0.803443,0.412037,0.529357,0.643474,0.510251,0.810247,0.0778584,0.585168,0.751893,0.46401,0.363798,0.108068,0.70077,0.495977,0.460271,0.13359,0.14593,0.650251,0.546886,0.384907,0.540754,0.537619,0.931361,0.438905,0.209008,0.0378528,0.609679,0.943262,0.161159,0.152928,0.384168,0.377338,0.280061,0.875774,0.0796906,0.804616,0.918065,0.730157,0.139015,0.765626,0.196238,0.316559,0.442815,0.0610884,0.696465,0.519001,0.460632,0.115565,0.145412,0.644813,0.106708,0.436879,0.658316,0.620154,0.293748,0.324628,0.610853,0.233184,0.69777,0.154997,0.550075,0.185789,0.089873,0.997699,0.447943,0.260117,0.0294918,0.387822,0.561501,0.895643,0.878994,0.26217,0.64962,0.0975572,0.350747,0.681269,0.0838769,0.330607,0.951328,0.954604,0.917865,0.401289,0.82241,0.0633292,0.00990844,0.191993,0.741426,0.559037,0.363201,0.65871,0.447085,0.630322,0.680574,0.658592,0.634433,0.230273,0.0202242,0.45706,0.738867,0.182007,0.899106,0.362207,0.777948,0.708695,0.720324,0.816545,0.450373,0.21757,0.712444,0.535546,0.728281,0.138035,0.30767,0.901593,0.94432,0.49738,0.934064,0.212554,0.274852,0.0192905,0.266076,0.406413,0.11749,0.452572,0.624615,0.657866,0.464464,0.124995,0.814459,0.448711,0.132947,0.403697,0.0827013,0.61157,0.541043,0.210585,0.693106,0.074232,0.822117,0.116977,0.00330687,0.418841,0.459263,0.0765511,0.866023,0.880409,0.271975,0.34598,0.686905,0.213096,0.840385,0.655273,0.268306,0.899503,0.654121,0.232099,0.200224,0.927715,0.555819,0.610033,0.559488,0.224111,0.189444,0.261225,0.719612,0.501558,0.653554,0.39732,0.968642,0.126502,0.5908,0.732796,0.606313,0.146224,0.749695,0.19996,0.73182,0.858223,0.807249,0.0452491,0.585966,0.484184,0.877748,0.185087,0.529324,0.19291,0.150595,0.164617,0.661125,0.841196,0.728945,0.604685,0.856839,0.675623,0.0320066,0.294996,0.0872369,0.622468,0.558164,0.567268,0.510861,0.949319,0.918534,0.0838079,0.366302,0.731801,0.156218,0.565408,0.492867,0.163536,0.592156,0.641803,0.0947389,0.807933,0.0712469,0.309728,0.632319,0.474668,0.617631,0.594282,0.992806,0.070568,0.520503,0.0114464,0.43849,0.990616,0.145486,0.591027,0.623293,0.457227,0.912167,0.314412,0.54222,0.0607035,0.779596,0.51138,0.894783,0.650188,0.189414,0.318931,0.410948,0.820626,0.240973,0.393741,0.0112678,0.0176353,0.840861,0.983364,0.45062,0.306919,0.708638,0.695597,0.285043,0.394602,0.926295,0.105247,0.955875,0.615291,0.651755,0.779303,0.105739,0.487427,0.626844,0.317188,0.839348,0.313958,0.600947,0.452494,0.332657,0.409938,0.443167,0.977739,0.744174,0.477075,0.316352,0.425005,0.868933,0.0147923,0.247155,0.441565,0.94737,0.219187,0.412155,0.478545,0.1449,0.0652381,0.228456,0.0748896,0.237156,0.378367,0.168778,0.981272,0.667522,0.631146,0.228342,0.0284079,0.806947,0.621312,0.385408,0.290802,0.186491,0.417443,0.804147,0.541311,0.564778,0.938052,0.229024,0.535999,0.849727,0.759696,0.334619,0.299767,0.152245,0.211305,0.755021,0.564946,0.317175,0.0516509,0.856658,0.857524,0.647089,0.623679,0.926365,0.50513,0.64858,0.340182,0.526348,0.0194264,0.0870639,0.886637,0.58526,0.814392,0.260682,0.368343,0.707727,0.335945,0.402103,0.112409,0.359985,0.0378522,0.758,0.29522,0.659906,0.506734,0.525529,0.454917,0.887338,0.576368,0.237626,0.519102,0.19966,0.261491,0.171303,0.0869702,0.797397,0.918784,0.772728,0.456,0.427603,0.116728,0.758882,0.713228,0.722527,0.556403,0.812805,0.516156,0.294559,0.427636,0.976948,0.392792,0.649508,0.950209,0.628941,0.838439,0.782388,0.187416,0.206346,0.245863,0.669579,0.6573,0.590565,0.91032,0.896377,0.903794,0.76226,0.67421,0.991991,0.13149,0.104715,0.841834,0.688898,0.141147,0.782489,0.123408,0.624926,0.0373597,0.360944,0.295841,0.675984,0.622633,0.553194,0.0913315,0.99597,0.93702,0.483613,0.834536,0.799353,0.942122,0.171217,0.0501105,0.027456,0.932027,0.0460421,0.158601,0.130325,0.249568,0.965441,0.577602,0.828386,0.534377,0.522594,0.624762,0.265272,0.73607,0.840488,0.63879,0.30336,0.701428,0.0914556,0.969435,0.805708,0.00782788,0.908835,0.424468,0.877814,0.668738,0.402986,0.348752,0.28901,0.518899,0.947269,0.808647,0.0407687,0.181113,0.306409,0.886699,0.293014,0.136242,0.247172,0.48653,0.158917,0.917059,0.750262,0.608702,0.547754,0.028894,0.98571,0.0592581,0.923169,0.208237,0.443303,0.487429,0.186868,0.00918263,0.256252,0.84633,0.0528094,0.537142,0.214884,0.653976,0.778983,0.0496324,0.450159,0.467911,0.0693689,0.760414,0.313511,0.458809,0.935945,0.614781,0.205469,0.400155,0.235209,0.0774738,0.965035,0.559931,0.703479,0.0820911,0.894861,0.336346,0.945039,0.663022,0.403015,0.183623,0.674837,0.990242,0.747495,0.137972,0.367096,0.0314312,0.135538,0.904941,0.978697,0.757965,0.355527,0.947543,0.0353773,0.214515,0.754897,0.705742,0.520195,0.633623,0.920596,0.843844,0.595351,0.0416623,0.714993,0.346639,0.344962,0.351339,0.681224,0.590782,0.917629,0.64828,0.663916,0.750369,0.279417,0.0314672,0.876316,0.109474,0.914713,0.826877,0.766812,0.351231,0.184831,0.714082,0.170064,0.273784,0.498879,0.86187,0.251449,0.839376,0.202898,0.213833,0.314253,0.864777,0.26856,0.478002,0.573283,0.556274,0.650753,0.933409,0.583011,0.218345,0.503119,0.376641,0.696852,0.562795,0.655631,0.880892,0.34858,0.342192,0.811899,0.886947,0.738413,0.400014,0.0722479,0.215987,0.592225,0.834679,0.92011,0.139347,0.481666,0.586223,0.195685,0.16988,0.755995,0.331817,0.119362,0.266698,0.177835,0.706555,0.143145,0.850329,0.737619,0.534362,0.168951,0.93946,0.488,0.997127,0.298961,0.948486,0.997834,0.578576,0.1493,0.493796,0.683457,0.835505,0.890781,0.842318,0.807922,0.430844,0.386112,0.112641,0.793107,0.863073,0.360032,0.252227,0.114062,0.489793,0.390281,0.490769,0.245584,0.20559,0.147076,0.651649,0.658222,0.556296,0.190904,0.674519,0.434596,0.908617,0.244945,0.532885,0.228485,0.695319,0.156117,0.0918952,0.638998,0.382241,0.675337,0.738626,0.940799,0.225618,0.836777,0.123994,0.357816,0.582012,0.942424,0.161822,0.879302,0.188625,0.023691,0.457909,0.40567,0.0128316,0.71523,0.240919,0.316056,0.759574,0.790439,0.245815,0.0493491,0.696991,0.609614,0.925439,0.816695,0.568169,0.213875,0.171272,0.184028,0.538551,0.523313,0.837207,0.370466,0.77277,0.162722,0.952885,0.701313,0.51504,0.082502,0.590011,0.756304,0.948479,0.568131,0.175422,0.42246,0.216836,0.435558,0.371888,0.192837,0.503006,0.151627,0.704024,0.211395,0.581677,0.307476,0.773552,0.479622,0.385939,0.630925,0.934143,0.512229,0.0748873,0.938116,0.433765,0.0705842,0.990451,0.292851,0.970505,0.806594,0.549956,0.0316761,0.416427,0.945582,0.0892987,0.022042,0.216541,0.479121,0.00858796,0.96942,0.378782,0.536187,0.130101,0.532626,0.349617,0.783894,0.0474137,0.704336,0.564442,0.983743,0.652117,0.852237,0.258729,0.983443,0.0735045,0.59706,0.356589,0.641478,0.175304,0.246833,0.714118,0.47686,0.639873,0.917809,0.323743,0.840087,0.430914,0.836951,0.84613,0.444077,0.117776,0.0567586,0.751432,0.625804,0.895514,0.269925,0.547299,0.824944,0.181958,0.905081,0.23239,0.962923,0.349521,0.849147,0.96205,0.129789,0.0372353,0.272517,0.718778,0.648683,0.054549,0.676685,0.12499,0.950583,0.415976,0.554397,0.48244,0.354196,0.802553,0.0359117,0.582681,0.312986,0.194902,0.191919,0.864151,0.604618,0.990928,0.952511,0.173203,0.150976,0.373899,0.0939832,0.641315,0.940116,0.651964,0.799913,0.0268264,0.545703,0.243104,0.271642,0.621314,0.0538918,0.846735,0.0866503,0.906054,0.356231,0.0659989,0.291079,0.762213,0.186506,0.99348,0.541684,0.850492,0.107329,0.883654,0.83028,0.00276053,0.894332,0.752388,0.357826,0.472634,0.359206,0.695619,0.826245,0.828244,0.273455,0.147883,0.357714,0.76992,0.206386,0.882685,0.610076,0.568134,0.707138,0.43941,0.322187,0.320488,0.818414,0.28029,0.965431,0.405392,0.986273,0.794892,0.612979,0.705383,0.617037,0.787085,0.885974,0.722324,0.0088461,0.917876,0.380566,0.895519,0.31696,0.826042,0.401419,0.481812,0.703756,0.83046,0.506877,0.352399,0.666375,0.132444,0.363451,0.412792,0.882595,0.200455,0.830372,0.619075,0.938613,0.689961,0.555953,0.276955,0.348266,0.900959,0.232336,0.0235662,0.34069,0.419087,0.760222,0.747565,0.0284402,|0.706065,0.753583,0.320243,0.461977,0.622251,0.155577,0.0384902,0.220439,0.129427,0.0916957,0.0137668,0.255521,0.633229,0.0514479,0.121906,0.525334,0.759995,0.9182,0.448244,0.336491,0.897138,0.439097,0.569968,0.227289,0.790248,0.34061,0.358019,0.128161,0.299294,0.0550629,0.597564,0.968555,0.994009,0.423049,0.865959,0.265893,0.748826,0.0537544,0.672635,0.701428,0.270872,0.299626,0.571619,0.281154,0.320254,0.812895,0.876591,0.716225,0.586117,0.830075,0.460878,0.951483,0.405326,0.113152,0.477382,0.0884154,0.403564,0.954984,0.0116785,0.688921,0.149552,0.253621,0.434653,0.555414,0.144329,0.148215,0.351856,0.468607,0.684207,0.321655,0.638345,0.642332,0.146257,0.52924,0.25912,0.274866,0.720208,0.608136,0.422929,0.844678,0.702527,0.983963,0.0476675,0.993749,0.559039,0.76491,0.0111732,0.43039,0.651709,0.213963,0.63206,0.349575,0.359852,0.344021,0.864388,0.664218,0.555592,0.0880591,0.581912,0.981501,0.123603,0.968521,0.12344,0.110873,0.837644,0.0263466,0.770192,0.315336,0.922263,0.290096,0.323068,0.86512,0.828804,0.699702,0.92842,0.564211,0.0368292,0.816423,0.499195,0.614903,0.00851071,0.199304,0.1667,0.609681,0.572554,0.0290827,0.711214,0.676793,0.149731,0.0219844,0.756055,0.61637,0.986077,0.809074,0.24549,0.101467,0.94815,0.373078,0.921185,0.791597,0.717408,0.0603109,0.863784,0.198273,0.52433,0.423672,0.560454,0.421925,0.552015,0.545041,0.699279,0.882629,0.766117,0.211833,0.113936,0.225242,0.844522,0.196263,0.693469,0.452867,0.141209,0.400841,0.530216,0.199673,0.454172,0.762407,0.388568,0.582032,0.236733,0.730546,0.503617,0.0803283,0.858548,0.330591,0.204535,0.688266,0.000459373,0.836293,0.839105,0.864442,0.400193,0.335504,0.555861,0.838201,0.885601,0.286298,0.461253,0.260963,0.47742,0.0870957,0.231909,0.466936,0.869161,0.154927,0.615091,0.780973,0.244874,0.327847,0.952051,0.865085,0.0187036,0.579839,0.735119,0.872305,0.336488,0.0370054,0.153456,0.196253,0.518014,0.631609,0.382126,0.914005,0.133624,0.429125,0.649478,0.0502002,0.802679,0.928741,0.902453,0.877146,0.627491,0.743041,0.439367,0.654328,0.815646,0.637517,0.635416,0.332436,0.390092,0.0771072,0.74079,0.145098,0.739527,0.818276,0.719591,0.519264,0.651018,0.0816532,0.293899,0.341028,0.0212452,0.583746,0.59509,0.803212,0.399475,0.566116,0.602843,0.15112,0.16558,0.787555,0.891171,0.971854,0.277257,0.7203,0.904875,0.0310488,0.944045,0.4095,0.73233,0.790098,0.560471,0.501093,0.220389,0.636992,0.920503,0.225342,0.177271,0.569265,0.190681,0.851067,0.341819,0.753247,0.255276,0.160744,0.558781,0.169749,0.563184,0.568946,0.0867251,0.205614,0.916098,0.813177,0.889111,0.0995774,0.0668323,0.970083,0.161377,0.890936,0.560116,0.770322,0.979858,0.404482,0.575217,0.052166,0.488082,0.147389,0.950746,0.444712,0.715916,0.248784,0.962147,0.556089,0.982673,0.222108,0.819959,0.381284,0.356696,0.209083,0.333914,0.560176,0.105393,0.168725,0.14844,0.899042,0.779808,0.453402,0.36819,0.716263,0.865172,0.912455,0.343587,0.669593,0.966654,0.256649,0.0198431,0.761008,0.190011,0.616784,0.741225,0.870055,0.632289,0.10067,0.0305816,0.877262,0.524808,0.545535,0.301983,0.413054,0.610619,0.188609,0.448509,0.25157,0.984325,0.675804,0.995352,0.123108,0.651803,0.475933,0.707102,0.0491651,0.0975318,0.0849437,0.480062,0.653377,0.289425,0.353892,0.600091,0.434574,0.367001,0.810593,0.536103,0.578433,0.932976,0.594706,0.630298,0.0640372,0.986112,0.593757,0.611461,0.243485,0.763513,0.647326,0.0106111,0.294529,0.29678,0.820149,0.52606,0.657798,0.373162,0.00598127,0.629558,0.192184,0.645119,0.0752528,0.773947,0.932132,0.221234,0.806921,0.335832,0.868118,0.950886,0.158251,0.300266,0.634684,0.745945,0.370114,0.653542,0.592897,0.309674,0.632559,0.545323,0.81434,0.943912,0.1353,0.0732094,0.681781,0.906591,0.639399,0.931967,0.452832,0.996718,0.0575926,0.0234307,0.167769,0.0800547,0.597297,0.698415,0.89614,0.596972,0.900806,0.894803,0.352548,0.371838,0.0417655,0.374892,0.453468,0.615936,0.155496,0.299184,0.860828,0.114954,0.865973,0.811543,0.39547,0.769568,0.872608,0.337322,0.797915,0.735397,0.945395,0.508066,0.869023,0.994385,0.587716,0.786868,0.44844,0.929042,0.917561,0.977736,0.244824,0.533449,0.83979,0.29707,0.818222,0.735179,0.77857,0.102258,0.263866,0.943764,0.208517,0.0384939,0.470865,0.551517,0.41522,0.225586,0.607178,0.561441,0.509129,0.279576,0.116449,0.350146,0.0807977,0.945663,0.0286673,0.220177,0.189246,0.142671,0.0212496,0.181004,0.668025,0.163343,0.63273,0.289757,0.0981801,0.607298,0.389753,0.747666,0.21192,0.459027,0.343093,0.365371,0.903822,0.820552,0.251082,0.678254,0.0628468,0.765152,0.0437884,0.33754,0.0657887,0.945927,0.796471,0.622679,0.918403,0.95727,0.514145,0.641392,0.376368,0.40799,0.249937,0.607104,0.21106,0.59214,0.793393,0.647199,0.761992,0.57449,0.0722615,0.588344,0.295418,0.782176,0.49781,0.591221,0.243484,0.919668,0.721863,0.221345,0.699123,0.344117,0.229773,0.0412189,0.742402,0.737535,0.857972,0.0272912,0.412088,0.293114,0.313109,0.482461,0.852976,0.972063,0.0802023,0.53095,0.955943,0.500074,0.211418,0.617866,0.305398,0.841335,0.377496,0.0868636,0.0859661,0.315458,0.605842,0.0500358,0.383221,0.376783,0.72977,0.691798,0.525023,0.121974,0.819425,0.619849,0.465904,0.554997,0.587315,0.0562807,0.18502,0.25224,0.128476,0.81414,0.73316,0.0728416,0.0557575,0.56918,0.136515,0.338743,0.630688,0.857525,0.372995,0.713647,0.226756,0.356489,0.179539,0.887275,0.749835,0.857494,0.492947,0.0586919,0.394819,0.634956,0.9032,0.118843,0.0629041,0.950884,0.227616,0.105804,0.790568,0.229478,0.649492,0.881967,0.65382,0.554058,0.546961,0.761863,0.12092,0.642745,0.589509,0.392686,0.404227,0.721689,0.995515,0.941282,0.65448,0.151775,0.714638,0.709545,0.452481,0.80332,0.402575,0.0121495,0.85889,0.375075,0.118058,0.794169,0.240562,0.233521,0.544393,0.745743,0.436633,0.572139,0.119242,0.762861,0.897696,0.0400472,0.349096,0.643904,0.742227,0.782177,0.884871,0.263028,0.282606,0.706481,0.647606,0.674802,0.740241,0.339418,0.557453,0.579648,0.783121,0.53544,0.563908,0.770406,0.942648,0.833865,0.84788,0.689012,0.59642,0.111999,0.869992,0.383316,0.405735,0.196066,0.686551,0.666179,0.900566,0.201033,0.732244,0.67793,0.0114767,0.325558,0.483509,0.351897,0.596415,0.518774,0.358184,0.128491,0.724578,0.875816,0.0437764,0.0224564,0.156337,0.822521,0.419738,0.307435,0.873897,0.496863,0.254114,0.0812622,0.874931,0.531419,0.72923,0.156596,0.469032,0.0303652,0.685744,0.199099,0.102099,0.123875,0.976315,0.472465,0.958161,0.0427551,0.331584,0.736747,0.992583,0.329032,0.873135,0.0683947,0.618032,0.575851,0.175541,0.277596,0.373624,0.787783,0.741488,0.743905,0.795471,0.892094,0.109523,0.147262,0.274001,0.757061,0.0329675,0.601027,0.439797,0.446776,0.915419,0.0387866,0.563854,0.808353,0.173525,0.806913,0.0588507,0.936524,0.250877,0.148884,0.834863,0.0979144,0.549866,0.619374,0.510559,0.363084,0.907881,0.0814679,0.412087,0.874437,0.155602,0.702934,0.625039,0.385519,0.527205,0.557724,0.246787,0.125634,0.648073,0.791308,0.708434,0.837003,0.432469,0.977564,0.190135,0.458903,0.630371,0.74204,0.621894,0.541751,0.464128,0.0701556,0.268011,0.463337,0.848073,0.788193,0.782296,0.870921,0.422065,0.458703,0.06609,0.699737,0.888045,0.522085,0.893194,0.659008,0.536181,0.625198,0.688472,0.748385,0.296013,0.750048,0.415604,0.0370117,0.637207,0.49791,0.349964,0.87288,0.306688,0.447613,0.196142,0.264756,0.317723,0.76823,0.877513,0.741403,0.364366,0.426605,0.0880115,0.243135,0.549571,0.826626,0.7677,0.588571,0.908717,0.79485,0.921563,0.000673115,0.999215,0.723303,0.647527,0.817067,0.279794,0.145876,0.978716,0.352997,0.355835,0.0244145,0.249014,0.0764691,0.399812,0.659209,0.903081,0.662669,0.0105718,0.148894,0.522145,0.120327,0.13012,0.991263,0.51802,0.076843,0.972012,0.0995084,0.346541,0.853555,0.812824,0.105207,0.812363,0.361769,0.716898,0.256954,0.485982,0.0597249,0.930052,0.181373,0.292276,0.596753,0.369762,0.317936,0.48575,0.381723,0.244597,0.309164,0.217195,0.860216,0.867088,0.0548059,0.467206,0.168877,0.257664,0.363418,0.283854,0.1441,0.248147,0.851251,0.269566,0.256255,0.947094,0.936278,0.0802516,0.0708563,0.357741,0.0465954,0.0621294,0.494309,0.853135,0.653639,0.117949,0.158613,0.812168,0.460591,0.824863,0.0441204,0.955898,0.359074,0.572459,0.64224,0.626375,0.93215,0.129511,0.971716,0.634941,0.675771,0.890203,0.969712,0.768254,0.693923,0.0944576,0.217572,0.136595,0.00779212,0.352902,0.285375,0.648277,0.0421788,0.718438,0.350422,0.871827,0.706386,0.863004,0.629359,0.920902,0.378135,0.14623,0.127137,0.802909,0.935837,0.0466182,0.319947,0.826621,0.8619,0.512968,0.800085,0.433421,0.685161,0.447069,0.124368,0.476158,0.994481,0.138426,0.0656764,0.161032,0.408504,0.187566,0.53426,0.965942,0.0437447,0.26823,0.894199,0.19281,0.1484,0.205968,0.734759,0.596435,0.432835,0.832101,0.37044,0.475581,0.294913,0.129579,0.415059,0.444715,0.740653,0.9759,0.955418,0.720799,0.629056,0.217079,0.737109,0.098235,0.568839,0.0604717,0.710485,0.279198,0.508557,0.232346,0.824454,0.611671,0.0324443,0.363423,0.63755,0.235563,0.133748,0.638908,0.961209,0.480382,0.106947,0.476555,0.819413,0.119403,0.972749,0.218222,0.237854,0.425663,0.00869811,0.0977636,0.849753,0.591447,0.571907,0.391965,0.706912,0.15195,|0.783149,0.998955,0.432968,0.641274,0.439146,0.494313,0.33061,0.734439,0.448061,0.887693,0.888614,0.929375,0.600405,0.457669,0.0273374,0.165711,0.54915,0.00587434,0.617498,0.79471,0.292643,0.175018,0.728031,0.712926,0.730149,0.01142,0.905349,0.58724,0.0112815,0.178042,0.465986,0.67439,0.191158,0.654213,0.632795,0.801801,0.0603505,0.377735,0.305044,0.432855,0.247499,0.512465,0.935824,0.991352,0.322432,0.542589,0.944669,0.686097,0.826504,0.859071,0.726668,0.362253,0.0182952,0.111449,0.55518,0.492601,0.50139,0.158906,0.423978,0.0485425,0.354685,0.11599,0.0163029,0.602297,0.442717,0.0950817,0.54994,0.603935,0.484269,0.255662,0.570396,0.613246,0.902388,0.264112,0.301368,0.350844,0.936775,0.137785,0.393484,0.0926282,0.854233,0.309544,0.885614,0.756297,0.577525,0.283323,0.922383,0.697709,0.0551569,0.597563,0.463667,0.677665,0.132268,0.669105,0.0635889,0.605595,0.742083,0.400176,0.0694965,0.466692,0.969502,0.304072,0.716669,0.783154,0.0487058,0.943278,0.955791,0.189621,0.173159,0.362412,0.158848,0.16904,0.672288,0.796357,0.993808,0.303989,0.231727,0.872789,0.896545,0.570456,0.814304,0.0337695,0.150585,0.706605,0.238031,0.545068,0.250757,0.0718375,0.298433,0.33747,0.208337,0.429103,0.129355,0.513868,0.121572,0.0859549,0.526536,0.460723,0.435506,0.562132,0.467739,0.150458,0.819332,0.369628,0.862945,0.133161,0.946544,0.832616,0.469516,0.527745,0.399931,0.228926,0.731972,0.985848,0.874361,0.867106,0.851288,0.0689182,0.670409,0.567647,0.401859,0.0264138,0.188481,0.825303,0.519665,0.649006,0.596851,0.143424,0.603797,0.146297,0.660829,0.955544,0.133333,0.164038,0.690096,0.354409,0.566948,0.899981,0.95983,0.758966,0.753395,0.750549,0.0605052,0.205259,0.219637,0.274226,0.995047,0.190246,0.211161,0.384306,0.713046,0.566816,0.124599,0.956977,0.475773,0.923947,0.051492,0.211441,0.840024,0.439953,0.894172,0.986538,0.475955,0.410598,0.211913,0.119886,0.244252,0.0425661,0.465074,0.899318,0.976482,0.482764,0.998853,0.949239,0.949455,0.536059,0.610814,0.93828,0.323876,0.8008,0.511845,0.9122,0.909951,0.256951,0.633419,0.329783,0.554199,0.0888295,0.745422,0.93802,0.448262,0.229105,0.68293,0.810105,0.774142,0.339622,0.118524,0.670059,0.287692,0.958013,0.127898,0.999589,0.424761,0.796035,0.430822,0.429059,0.892734,0.329128,0.725791,0.950514,0.344433,0.525708,0.0469275,0.488998,0.0627523,0.566353,0.0127376,0.206107,0.725468,0.74516,0.674113,0.72145,0.258676,0.595615,0.344189,0.0850471,0.148744,0.670524,0.532659,0.772151,0.00742543,0.437872,0.0621562,0.308512,0.168144,0.387882,0.503312,0.927158,0.753232,0.997541,0.720868,0.870886,0.690068,0.914505,0.258844,0.475509,0.75512,0.79334,0.275116,0.717076,0.80597,0.38232,0.756451,0.922242,0.734982,0.736315,0.490706,0.0170013,0.601331,0.217336,0.995561,0.85049,0.648669,0.788191,0.980906,0.741771,0.818231,0.360402,0.0198793,0.330625,0.0481618,0.776884,0.600385,0.555913,0.0878148,0.714544,0.715544,0.996096,0.942222,0.366423,0.2799,0.596417,0.514991,0.33588,0.690484,0.455973,0.0847814,0.168381,0.660306,0.249536,0.925885,0.80225,0.485842,0.150039,0.119804,0.435541,0.0553929,0.0444365,0.408449,0.584011,0.743656,0.462281,0.893779,0.194348,0.409275,0.463727,0.458792,0.422402,0.0415018,0.265621,0.872718,0.221618,0.465256,0.503871,0.544135,0.650632,0.694914,0.149259,0.494522,0.61174,0.332434,0.193071,0.0253984,0.581949,0.402558,0.346046,0.0740076,0.764671,0.777831,0.595445,0.511704,0.394699,0.449779,0.106676,0.123993,0.181158,0.101975,0.138485,0.0439974,0.274569,0.117538,0.096209,0.879999,0.904993,0.0415586,0.584584,0.813943,0.859855,0.977238,0.921443,0.885188,0.682627,0.432593,0.70386,0.476223,0.468382,0.664881,0.783432,0.0018701,0.128014,0.161445,0.997635,0.826251,0.258037,0.661838,0.0200424,0.732668,0.696756,0.418413,0.322621,0.974024,0.313923,0.640501,0.0898309,0.257917,0.172262,0.65974,0.242937,0.016657,0.716455,0.699452,0.619581,0.375438,0.39015,0.431908,0.968228,0.679734,0.0397559,0.16198,0.00875926,0.274444,0.0387588,0.415214,0.38567,0.820311,0.906465,0.910979,0.481722,0.196118,0.416311,0.251129,0.889706,0.578255,0.0498396,0.958359,0.94336,0.647831,0.734193,0.52634,0.754596,0.811342,0.246133,0.51734,0.254722,0.175574,0.246703,0.221826,0.150868,0.680099,0.265168,0.186112,0.470909,0.0636005,0.105849,0.47495,0.134893,0.513999,0.299951,0.29831,0.758552,0.606594,0.744345,0.707594,0.927072,0.603847,0.209829,0.379998,0.759621,0.494834,0.0978531,0.920504,0.124625,0.260799,0.745988,0.403943,0.759336,0.0230889,0.583776,0.32835,0.923639,0.417835,0.675453,0.522377,0.42116,0.320483,0.919589,0.377475,0.363259,0.40136,0.924462,0.577322,0.802536,0.849468,0.884744,0.701192,0.241543,0.450477,0.263039,0.130009,0.136909,0.480335,0.0640783,0.523402,0.739905,0.384355,0.959751,0.245587,0.821125,0.292207,0.167752,0.29951,0.0786268,0.193747,0.404028,0.657231,0.191956,0.38003,0.948505,0.249115,0.606349,0.198068,0.40491,0.615503,0.154638,0.0977395,0.361591,0.577403,0.548059,0.618414,0.828205,0.308818,0.474324,0.511352,0.433588,0.121928,0.218328,0.818061,0.0250732,0.420839,0.410369,0.699853,0.900368,0.133022,0.993079,0.203261,0.152883,0.371394,0.383745,0.115423,0.290192,0.609869,0.17034,0.954996,0.93974,0.847549,0.773106,0.18616,0.410181,0.4184,0.610404,0.858452,0.0503728,0.423916,0.536602,0.804341,0.934015,0.770581,0.518027,0.325818,0.449257,0.209709,0.727542,0.919016,0.12118,0.256979,0.487825,0.0788086,0.640004,0.798757,0.679181,0.490806,0.773293,0.666667,0.678032,0.291869,0.930548,0.687288,0.0830626,0.178298,0.655098,0.631424,0.30422,0.864508,0.65114,0.1406,0.490555,0.584555,0.514717,0.579059,0.660806,0.231103,0.547384,0.400439,0.573731,0.0387822,0.769535,0.426729,0.754314,0.571027,0.655914,0.973531,0.174273,0.445662,0.878033,0.76223,0.386294,0.060298,0.347817,0.130886,0.680994,0.287595,0.763847,0.942537,0.495167,0.0374076,0.0864708,0.16324,0.855424,0.0589529,0.326433,0.408112,0.750244,0.187994,0.256876,0.207282,0.99701,0.166102,0.975247,0.0809675,0.06046,0.557104,0.774054,0.960464,0.352397,0.573283,0.1461,0.572945,0.872954,0.00674444,0.626926,0.569142,0.960738,0.334513,0.121792,0.735761,0.0688959,0.294623,0.0594145,0.483135,0.415734,0.812077,0.16246,0.364662,0.888976,0.929512,0.32657,0.833748,0.605059,0.92844,0.588091,0.85396,0.195202,0.286753,0.691054,0.321619,0.622948,0.612934,0.754672,0.962931,0.553882,0.590116,0.209824,0.136785,0.905104,0.0541274,0.341734,0.609425,0.543337,0.139454,0.792141,0.577675,0.466696,0.379373,0.0186745,0.420448,0.968155,0.0397037,0.741607,0.259808,0.859108,0.0648335,0.822039,0.466079,0.787077,0.34236,0.301827,0.582731,0.388031,0.810914,0.54904,0.21272,0.42764,0.115483,0.681377,0.462236,0.837587,0.262586,0.354266,0.694497,0.738209,0.943886,0.281528,0.428038,0.387431,0.244057,0.976582,0.443449,0.0125905,0.800769,0.215141,0.611171,0.451183,0.851809,0.523026,0.481735,0.101427,0.399344,0.83454,0.876857,0.274629,0.504942,0.132391,0.443812,0.504365,0.786563,0.275218,0.396858,0.972862,0.463644,0.621631,0.413694,0.819361,0.299846,0.594517,0.0213855,0.536166,0.453834,0.115248,0.795641,0.558597,0.608286,0.570635,0.827244,0.229993,0.135023,0.755929,0.437489,0.251649,0.763337,0.695166,0.92929,0.73977,0.0636413,0.28144,0.0390871,0.740692,0.650614,0.44158,0.972578,0.965219,0.267351,0.390335,0.714319,0.096265,0.403073,0.885395,0.0424584,0.32212,0.167035,0.81485,0.0415843,0.665522,0.185211,0.855824,0.460718,0.219199,0.872805,0.533888,0.815921,0.445682,0.332161,0.381754,0.0734389,0.113597,0.381825,0.469513,0.213405,0.586579,0.50045,0.450084,0.2933,0.148289,0.859186,0.356205,0.761087,0.30902,0.218755,0.784385,0.250374,0.00789577,0.794693,0.602763,0.133238,0.254409,0.0033527,0.252734,0.809429,0.752088,0.704597,0.690602,0.769475,0.495401,0.659658,0.218683,0.162685,0.789004,0.10459,0.0685316,0.30085,0.507692,0.315687,0.0958361,0.496938,0.237299,0.432804,0.423287,0.177828,0.88323,0.306301,0.464628,0.61464,0.985741,0.884044,0.182341,0.331925,0.176866,0.987366,0.941046,0.344246,0.0813602,0.868021,0.956563,0.0810333,0.305202,0.146775,0.443295,0.30904,0.695557,0.590205,0.721657,0.039628,0.345535,0.540341,0.348046,0.00971013,0.00983649,0.522192,0.633335,0.909097,0.596655,0.106672,0.345998,0.0501063,0.609486,0.494198,0.530153,0.456395,0.93573,0.269058,0.907538,0.179821,0.361322,0.0900171,0.699695,0.487107,0.492038,0.592714,0.832177,0.942466,0.345294,0.890738,0.564421,0.598136,0.256223,0.763858,0.472914,0.0469827,0.0573008,0.408917,0.773912,0.225352,0.668891,0.278328,0.294287,0.222877,0.0357659,0.134579,0.622545,0.586179,0.649909,0.416983,0.814868,0.680574,0.495843,0.663692,0.147439,0.873071,0.246928,0.593838,0.96969,0.792636,0.89017,0.695733,0.41627,0.858926,0.41102,0.284356,0.949867,0.188175,0.525547,0.0733051,0.821682,0.231525,0.864948,0.909574,0.0451244,0.774428,0.229966,0.573919,0.432912,0.707591,0.536534,0.933117,0.877017,0.299099,0.217024,0.882967,0.062115,0.347099,0.844257,0.241162,0.20601,0.896799,0.452075,0.941864,0.231979,0.673088,0.815758,0.665044,0.951824,0.667476,0.649317,0.183507,0.857239,0.937272,0.12658,0.754329,0.201413,0.768774,0.630568,0.385736,0.985462,0.675206,0.471198,0.215258,0.383356,0.143731,0.12718,0.328249,0.131108,|0.193278,0.68253,0.537913,0.104837,0.584278,0.299583,0.961634,0.374844,0.429664,0.428037,0.305357,0.872254,0.469404,0.497521,0.584774,0.892995,0.340286,0.294653,0.654035,0.687192,0.621614,0.395997,0.0130247,0.765651,0.576025,0.717336,0.586479,0.0216752,0.422396,0.0112191,0.00415367,0.720817,0.403575,0.507371,0.638178,0.241579,0.291654,0.89283,0.295529,0.283211,0.704357,0.962988,0.0795491,0.484118,0.30169,0.102382,0.511003,0.963105,0.669576,0.853072,0.0904784,0.293056,0.335713,0.669118,0.845982,0.343548,0.133183,0.0820383,0.00518012,0.0857801,0.148579,0.33425,0.279673,0.235159,0.505602,0.99703,0.319669,0.872341,0.0645654,0.882375,0.937034,0.0721388,0.0327078,0.574789,0.408054,0.504682,0.537243,0.314372,0.277404,0.952273,0.269136,0.754936,0.677899,0.22678,0.870841,0.595253,0.900898,0.13331,0.535128,0.910667,0.887711,0.0977142,0.387054,0.623783,0.606436,0.56276,0.831561,0.0800207,0.085741,0.551693,0.541617,0.690621,0.796824,0.930684,0.550357,0.113897,0.87785,0.10254,0.60845,0.300075,0.73277,0.558412,0.175942,0.0349176,0.873232,0.197838,0.220674,0.387667,0.0696956,0.898124,0.309861,0.426559,0.498127,0.738393,0.0251711,0.762985,0.661165,0.0306501,0.736176,0.740288,0.789172,0.836974,0.522858,0.550594,0.258142,0.355062,0.258392,0.109699,0.961187,0.608052,0.323376,0.916386,0.888762,0.510315,0.0778555,0.459561,0.456482,0.750741,0.623877,0.673826,0.567178,0.834504,0.473833,0.181721,0.740778,0.597241,0.627735,0.281226,0.115031,0.997317,0.726403,0.899721,0.802815,0.696484,0.659051,0.949307,0.718295,0.0851287,0.202393,0.315978,0.32663,0.337133,0.704986,0.752884,0.953328,0.31164,0.530546,0.977174,0.444077,0.483453,0.851426,0.199916,0.483065,0.0917687,0.973979,0.111218,0.510107,0.899008,0.457643,0.452091,0.977699,0.533073,0.74371,0.137331,0.79758,0.876382,0.363632,0.224145,0.24652,0.285316,0.18643,0.98169,0.896725,0.231214,0.827137,0.314974,0.992956,0.520036,0.369004,0.897193,0.771641,0.374842,0.10079,0.731965,0.613753,0.501161,0.613983,0.029229,0.225185,0.88403,0.253862,0.0494777,0.0154789,0.523205,0.91587,0.102605,0.693567,0.482976,0.103807,0.579567,0.857904,0.68203,0.699307,0.761497,0.0543572,0.691635,0.547368,0.297044,0.668083,0.145648,0.859426,0.777866,0.26027,0.274782,0.837491,0.502521,0.438308,0.111819,0.938444,0.691408,0.460215,0.801791,0.277061,0.424866,0.0585092,0.700691,0.978946,0.799259,0.795414,0.437735,0.47027,0.328275,0.381872,0.538715,0.573573,0.406364,0.15938,0.486573,0.794847,0.40494,0.884141,0.721397,0.661089,0.474234,0.595154,0.130757,0.846751,0.26688,0.336953,0.860067,0.92602,0.654523,0.775461,0.526052,0.844748,0.966583,0.844416,0.721622,0.423867,0.188321,0.366215,0.808794,0.28604,0.681768,0.263134,0.245521,0.0481354,0.805154,0.74094,0.720856,0.993592,0.607691,0.190526,0.545731,0.735879,0.268961,0.93253,0.822756,0.86021,0.46107,0.846807,0.532195,0.979291,0.091644,0.0852882,0.571286,0.135366,0.154073,0.501602,0.804947,0.684499,0.517544,0.14482,0.337607,0.243343,0.629525,0.535821,0.0861185,0.607652,0.171523,0.584193,0.702549,0.228369,0.628236,0.915782,0.515801,0.154193,0.267718,0.0427985,0.639997,0.930679,0.164476,0.636658,0.930755,0.431067,0.162856,0.767592,0.907975,0.194318,0.313908,0.924107,0.206457,0.137032,0.742966,0.996662,0.425612,0.373577,0.487008,0.455527,0.316988,0.497143,0.0546404,0.994029,0.402562,0.846017,0.752208,0.304814,0.603638,0.520796,0.673649,0.86385,0.248232,0.503526,0.856196,0.958728,0.401143,0.59073,0.533165,0.12334,0.9895,0.8946,0.193587,0.581943,0.752509,0.943411,0.957811,0.796796,0.553438,0.66427,0.897263,0.512827,0.226941,0.15586,0.22362,0.555692,0.410138,0.786563,0.669984,0.0398573,0.370222,0.103485,0.868516,0.198624,0.937795,0.332368,0.169021,0.660401,0.928755,0.132761,0.824391,0.67462,0.80971,0.846097,0.0158851,0.684184,0.895143,0.917374,0.868487,0.415311,0.589937,0.968487,0.851305,0.319217,0.00379735,0.547342,0.357768,0.377356,0.166229,0.882873,0.110619,0.362206,0.128112,0.938902,0.640988,0.788177,0.438374,0.571648,0.153586,0.643565,0.195068,0.731267,0.766266,0.0903223,0.830655,0.289278,0.593787,0.113977,0.752458,0.107743,0.348773,0.319158,0.135706,0.755509,0.0707287,0.269526,0.105096,0.196172,0.899792,0.926143,0.743432,0.0845327,0.486769,0.945645,0.328348,0.452021,0.445905,0.620265,0.821352,0.845971,0.156898,0.321464,0.169599,0.43982,0.235548,0.300643,0.53292,0.414192,0.867363,0.209371,0.93357,0.948585,0.0827512,0.883346,0.349311,0.424685,0.0639446,0.670329,0.700568,0.936729,0.534499,0.142239,0.696496,0.392521,0.685279,0.306915,0.320029,0.0248289,0.873055,0.567717,0.562509,0.97644,0.0327773,0.464948,0.812509,0.11291,0.50678,0.213533,0.529941,0.107147,0.908058,0.778984,0.104587,0.38635,0.886687,0.117811,0.41455,0.26003,0.990008,0.501806,0.911298,0.372759,0.234703,0.165975,0.749553,0.338122,0.519644,0.742641,0.333849,0.259849,0.383237,0.510596,0.81583,0.313971,0.89216,0.505659,0.750689,0.710782,0.773529,0.275162,0.474235,0.415482,0.506794,0.0880135,0.114193,0.400879,0.451975,0.577689,0.303424,0.940977,0.987648,0.524476,0.606084,0.642826,0.168432,0.605369,0.426366,0.831097,0.504579,0.181908,0.00647575,0.259944,0.828834,0.777842,0.843787,0.805292,0.483496,0.392536,0.899874,0.291214,0.771725,0.382301,0.438178,0.797584,0.906418,0.0907258,0.406509,0.581577,0.233874,0.880883,0.625888,0.109064,0.595142,0.842832,0.915912,0.543153,0.28052,0.878909,0.239923,0.224346,0.798588,0.807125,0.367772,0.29807,0.358241,0.619796,0.820183,0.937307,0.508036,0.261846,0.92546,0.471558,0.733426,0.412589,0.230115,0.318327,0.151237,0.107232,0.911999,0.513441,0.271933,0.207365,0.215921,0.10352,0.244513,0.0482086,0.680979,0.160153,0.632529,0.616541,0.0490583,0.886469,0.151606,0.550583,0.794365,0.404523,0.0522265,0.406953,0.300925,0.285217,0.851915,0.630975,0.541198,0.527991,0.115455,0.056576,0.762302,0.579335,0.447962,0.481977,0.150358,0.849215,0.274369,0.922797,0.49378,0.479541,0.0125322,0.459818,0.097958,0.7902,0.805193,0.8743,0.511915,0.971012,0.0516917,0.256137,0.265657,0.810179,0.164045,0.771837,0.440079,0.127233,0.966802,0.536806,0.288287,0.113278,0.503556,0.357088,0.566859,0.672518,0.294807,0.533264,0.420032,0.559779,0.201312,0.252106,0.148783,0.189822,0.288653,0.291254,0.299502,0.402266,0.963641,0.167666,0.700178,0.711362,0.283913,0.513947,0.715668,0.705243,0.56677,0.453459,0.397453,0.520902,0.254805,0.304922,0.887442,0.408828,0.275112,0.580592,0.658852,0.871059,0.520346,0.456349,0.10346,0.499273,0.467443,0.59502,0.462365,0.626666,0.960304,0.564749,0.571774,0.500319,0.972583,0.289629,0.632803,0.19758,0.434078,0.875817,0.759102,0.745984,0.624215,0.927724,0.168861,0.943031,0.0693169,0.899107,0.206286,0.386027,0.526949,0.600781,0.157637,0.60739,0.684735,0.282944,0.919919,0.0673527,0.111538,0.337553,0.77013,0.752219,0.79869,0.0996907,0.0849695,0.658604,0.977846,0.978987,0.932305,0.140702,0.242865,0.802129,0.40772,0.708972,0.327742,0.835537,0.410083,0.383894,0.457191,0.355604,0.407096,0.451792,0.549227,0.803211,0.797374,0.653686,0.167464,0.98608,0.592416,0.806145,0.499926,0.3342,0.0352076,0.716238,0.0361692,0.75463,0.416653,0.715099,0.946216,0.149382,0.656127,0.438671,0.50579,0.757151,0.364091,0.481509,0.306635,0.308888,0.273985,0.917955,0.305655,0.581723,0.501202,0.91393,0.191285,0.770926,0.0543784,0.89062,0.992036,0.329898,0.202335,0.847342,0.326234,0.910297,0.73431,0.826788,0.115982,0.0286773,0.0539623,0.308716,0.572553,0.167454,0.930155,0.556042,0.00752437,0.630337,0.385794,0.215318,0.990867,0.9528,0.729904,0.151776,0.889958,0.496437,0.0404766,0.230002,0.637132,0.238727,0.79288,0.72674,0.526873,0.978729,0.815081,0.437308,0.812959,0.2665,0.388487,0.570855,0.753019,0.549662,0.968476,0.226458,0.027168,0.652272,0.431289,0.743065,0.0656527,0.738159,0.588955,0.983818,0.63458,0.00487095,0.580481,0.388955,0.325367,0.00164169,0.547868,0.00474554,0.73763,0.465543,0.569575,0.193813,0.329137,0.60765,0.441581,0.035779,0.328213,0.296401,0.0969132,0.467287,0.389396,0.539351,0.468164,0.623452,0.938381,0.544879,0.906297,0.573594,0.384275,0.48808,0.0582581,0.375446,0.149342,0.254541,0.644786,0.105411,0.499211,0.432158,0.585361,0.0342669,0.466783,0.801629,0.523431,0.0335139,0.438891,0.831966,0.084472,0.0824423,0.210684,0.147441,0.219153,0.490284,0.405588,0.838827,0.372458,0.570076,0.161766,0.243481,0.43274,0.590754,0.729346,0.813473,0.204277,0.618406,0.282169,0.298848,0.769972,0.937601,0.22168,0.896122,0.247022,0.814659,0.638854,0.0863482,0.556196,0.209848,0.991304,0.712402,0.667114,0.364929,0.634257,0.729773,0.582837,0.155727,0.787578,0.200937,0.754775,0.759291,0.783682,0.811293,0.45853,0.372402,0.00409162,0.114743,0.476249,0.91257,0.502205,0.0155239,0.781422,0.0550745,0.632352,0.711589,0.736372,0.82289,0.0078761,0.438054,0.863098,0.960329,0.305643,0.803593,0.341272,0.798883,0.845588,0.407497,0.913436,0.688277,0.101623,0.731058,0.0956016,0.742503,0.362269,0.357609,0.507329,0.996097,0.346224,0.202937,0.361483,0.542946,0.907229,0.0816894,0.0901714,0.209018,0.621066,0.947968,0.61894,0.850754,0.879421,0.187197,0.765369,0.057978,0.720009,0.830088,0.782435,0.995266,0.779782,0.696398,0.53704,0.458432,0.387643,0.643112,0.747231,|0.326052,0.625661,0.210566,0.0171365,0.575591,0.534769,0.625462,0.566361,0.81659,0.403747,0.914102,0.816264,0.629242,0.20529,0.331696,0.87017,0.353853,0.424815,0.175718,0.638797,0.0232641,0.114432,0.833577,0.723421,0.326446,0.124746,0.661182,0.855118,0.942219,0.441756,0.0840053,0.284802,0.971982,0.647672,0.18666,0.19996,0.51354,0.328416,0.807657,0.70295,0.50361,0.355791,0.654535,0.194272,0.472491,0.642421,0.555467,0.217335,0.262959,0.192861,0.25143,0.996274,0.830502,0.557611,0.887171,0.542034,0.918307,0.00515151,0.237029,0.213465,0.796193,0.166984,0.987201,0.635947,0.287736,0.730386,0.125846,0.444126,0.649823,0.7102,0.864655,0.625728,0.462625,0.622224,0.923765,0.125461,0.422166,0.235301,0.958558,0.606001,0.164665,0.762237,0.214185,0.885123,0.0582122,0.0343216,0.272356,0.807819,0.628243,0.977596,0.666451,0.194808,0.419156,0.817901,0.825431,0.757533,0.723658,0.844782,0.972699,0.153983,0.189146,0.914614,0.243773,0.215899,0.554773,0.963065,0.137081,0.0429372,0.506132,0.76156,0.42667,0.116859,0.748484,0.382923,0.762681,0.568603,0.330293,0.117152,0.765742,0.990025,0.221478,0.551566,0.117874,0.101477,0.476488,0.492809,0.341175,0.296857,0.0126152,0.207294,0.074596,0.092435,0.988592,0.130942,0.252406,0.155948,0.847581,0.380848,0.508641,0.784856,0.636734,0.0116083,0.526772,0.458233,0.956247,0.00637865,0.643136,0.806577,0.991072,0.0131455,0.800064,0.269587,0.984322,0.232832,0.167703,0.831834,0.761955,0.552164,0.709881,0.652333,0.881089,0.827356,0.980557,0.42009,0.594931,0.888423,0.906871,0.544075,0.453669,0.207313,0.922932,0.908363,0.974378,0.869834,0.038641,0.118756,0.892912,0.0127438,0.796884,0.874518,0.706107,0.752968,0.64838,0.174829,0.443675,0.303379,0.0319779,0.272672,0.212832,0.045018,0.137204,0.0698146,0.560511,0.425066,0.936525,0.573738,0.326257,0.421305,0.246733,0.527158,0.96806,0.912698,0.913383,0.520188,0.504568,0.385062,0.906204,0.465083,0.104239,0.188091,0.15132,0.753484,0.486898,0.0371853,0.917084,0.843394,0.930761,0.823936,0.670033,0.703326,0.244179,0.993468,0.674431,0.140123,0.573976,0.0170616,0.0604264,0.267863,0.983604,0.131199,0.994795,0.135463,0.682258,0.739055,0.853555,0.0745566,0.313396,0.644274,0.106219,0.819017,0.135291,0.942336,0.89542,0.717066,0.103529,0.740447,0.326524,0.404606,0.509887,0.189426,0.845637,0.0335671,0.00703758,0.100369,0.826284,0.821394,0.0422907,0.767239,0.45309,0.517281,0.698724,0.633104,0.378443,0.337533,0.252675,0.451184,0.260932,0.394884,0.510816,0.898465,0.260292,0.00102735,0.123018,0.28531,0.00309402,0.726173,0.257627,0.213519,0.187623,0.282769,0.788584,0.320774,0.477481,0.822701,0.850067,0.306104,0.193206,0.696332,0.951353,0.657607,0.827827,0.714353,0.569073,0.332747,0.985413,0.163649,0.421676,0.364371,0.82366,0.242014,0.0553784,0.769334,0.928945,0.348272,0.673994,0.957231,0.390532,0.231695,0.5043,0.278841,0.922672,0.964139,0.858178,0.261984,0.933503,0.907397,0.0398632,0.479065,0.969734,0.775761,0.0811913,0.847986,0.610933,0.618281,0.264283,0.305056,0.385162,0.333984,0.923154,0.493272,0.173629,0.674301,0.209185,0.110021,0.636169,0.0745244,0.259686,0.975945,0.075289,0.987718,0.435012,0.901367,0.453409,0.798341,0.3094,0.876519,0.356878,0.454979,0.210724,0.496472,0.564633,0.454254,0.415479,0.285901,0.663867,0.383616,0.552823,0.949953,0.973551,0.727535,0.467801,0.874823,0.867217,0.276891,0.799075,0.742343,0.517654,0.433791,0.548076,0.567934,0.645998,0.0571637,0.490685,0.031476,0.284474,0.157937,0.267812,0.635283,0.104616,0.510561,0.182494,0.32065,0.547481,0.313604,0.431839,0.210113,0.853127,0.874715,0.820807,0.147613,0.366127,0.744906,0.872099,0.633056,0.635203,0.0619823,0.835202,0.563577,0.970807,0.878609,0.399354,0.0853066,0.714978,0.468261,0.824768,0.137963,0.60205,0.886313,0.026913,0.966308,0.00711036,0.841986,0.369921,0.320125,0.658295,0.952589,0.396376,0.605119,0.690495,0.247993,0.140898,0.563694,0.330824,0.252548,0.230805,0.947407,0.19896,0.851737,0.671573,0.472342,0.884983,0.928501,0.650003,0.750978,0.193792,0.88943,0.441205,0.261284,0.741274,0.219597,0.295314,0.176515,0.834146,0.874312,0.949857,0.409137,0.49455,0.024412,0.931304,0.99495,0.867264,0.327021,0.814086,0.422643,0.0565673,0.0465558,0.848864,0.923955,0.142734,0.0699144,0.550079,0.587737,0.3742,0.138673,0.205649,0.393234,0.330444,0.213222,0.146878,0.0163164,0.89178,0.972753,0.158761,0.0938001,0.111175,0.732419,0.600256,0.892391,0.780936,0.675016,0.278636,0.979711,0.0851609,0.788639,0.407128,0.482975,0.0857458,0.289951,0.024147,0.155211,0.363258,0.0270892,0.513367,0.530244,0.0167423,0.881725,0.527195,0.981175,0.32968,0.369712,0.802494,0.360306,0.30265,0.698117,0.154549,0.28126,0.70539,0.140762,0.925821,0.535995,0.104632,0.639031,0.24403,0.419609,0.321902,0.660098,0.729949,0.664822,0.787913,0.568238,0.553634,0.925491,0.488151,0.394758,0.611556,0.820235,0.540461,0.699369,0.130316,0.373553,0.938016,0.907203,0.904936,0.904135,0.413302,0.101031,0.701807,0.623046,0.0885782,0.311724,0.101734,0.512325,0.312795,0.532951,0.846904,0.613799,0.300889,0.371848,0.60722,0.829847,0.56,0.769853,0.234955,0.253347,0.849137,0.562837,0.0912581,0.398771,0.281615,0.294444,0.0865752,0.940871,0.248569,0.990423,0.160718,0.778191,0.943901,0.97866,0.982374,0.483551,0.625435,0.135513,0.452373,0.551948,0.423762,0.713654,0.0102949,0.610088,0.989558,0.594042,0.786376,0.706257,0.123778,0.484711,0.117218,0.407947,0.302406,0.151033,0.101856,0.509826,0.101243,0.842544,0.131026,0.995285,0.577236,0.801768,0.606887,0.990561,0.0773707,0.292988,0.388041,0.983698,0.583417,0.535957,0.614936,0.654651,0.0916007,0.618045,0.241472,0.720832,0.397619,0.438191,0.257541,0.727126,0.527557,0.359678,0.999299,0.830822,0.831879,0.802615,0.117232,0.00428146,0.628874,0.744463,0.710993,0.481907,0.703174,0.429701,0.663496,0.457748,0.449642,0.900807,0.96583,0.195194,0.282803,0.176008,0.584952,0.307413,0.0695263,0.746398,0.102426,0.350745,0.653334,0.647746,0.690773,0.0421541,0.247033,0.280802,0.755744,0.60856,0.615181,0.287741,0.247882,0.757104,0.320585,0.131767,0.242703,0.91036,0.898022,0.0394098,0.807426,0.719422,0.164467,0.994278,0.945435,0.0939512,0.949191,0.893164,0.36936,0.703336,0.291355,0.595675,0.247441,0.165588,0.0780267,0.0985534,0.900543,0.598424,0.866898,0.764179,0.391517,0.463207,0.847377,0.847225,0.37533,0.0970033,0.38985,0.822345,0.476001,0.742952,0.524872,0.930459,0.712909,0.340883,0.443957,0.383233,0.999495,0.0624834,0.510532,0.660835,0.939176,0.318912,0.31829,0.663245,0.241469,0.663467,0.664337,0.832431,0.686186,0.27879,0.411823,0.150679,0.606687,0.578403,0.186751,0.638545,0.451633,0.67442,0.899407,0.72798,0.211775,0.0225335,0.517923,0.154812,0.612615,0.281276,0.979809,0.863838,0.667606,0.747245,0.0272114,0.355405,0.581828,0.118905,0.293433,0.148464,0.670263,0.223799,0.560141,0.618484,0.0576749,0.798281,0.401217,0.410674,0.437913,0.096137,0.394049,0.707858,0.85054,0.520833,0.902512,0.684195,0.361038,0.824259,0.311078,0.282854,0.799587,0.682516,0.682092,0.591206,0.413998,0.648356,0.520359,0.845162,0.357458,0.723223,0.0125099,0.300822,0.170861,0.0229371,0.303282,0.0693433,0.692138,0.332886,0.257189,0.298733,0.594809,0.197878,0.399717,0.17498,0.160162,0.740381,0.950147,0.527626,0.335649,0.348378,0.242476,0.369268,0.7364,0.628902,0.591382,0.64935,0.440662,0.100908,0.854522,0.959479,0.239579,0.755631,0.654418,0.0612912,0.125723,0.685673,0.577189,0.934639,0.842832,0.988656,0.337061,0.441582,0.903625,0.339083,0.789754,0.232984,0.0130059,0.39218,0.375407,0.324198,0.630319,0.563193,0.139682,0.552993,0.683761,0.765896,0.625041,0.347791,0.650099,0.150276,0.0603735,0.432805,0.438643,0.15151,0.496337,0.882853,0.327739,0.616639,0.161886,0.488377,0.79038,0.282632,0.902848,0.0941623,0.700713,0.53858,0.599499,0.0069837,0.324393,0.103494,0.608575,0.937639,0.93732,0.0353931,0.577061,0.595832,0.11913,0.926844,0.880826,0.480339,0.161541,0.614295,0.90997,0.322389,0.752821,0.373523,0.557915,0.790585,0.0247434,0.629829,0.843396,0.0451381,0.912833,0.73892,0.902932,0.862447,0.900412,0.135017,0.460762,0.231915,0.885498,0.0445744,0.304223,0.360929,0.861911,0.121537,0.027675,0.70659,0.0931825,0.950667,0.206223,0.133902,0.460165,0.120887,0.344404,0.70249,0.993033,0.24093,0.294968,0.18643,0.559901,0.381556,0.565316,0.343238,0.509148,0.921521,0.308779,0.399002,0.376348,0.16791,0.290593,0.812186,0.96142,0.784414,0.0207039,0.803423,0.700366,0.647763,0.0369272,0.24443,0.185101,0.607869,0.515687,0.540873,0.195825,0.612682,0.469508,0.0652575,0.887749,0.789008,0.251532,0.65303,0.990418,0.969467,0.26699,0.637742,0.220441,0.872416,0.829737,0.368001,0.752237,0.603315,0.341835,0.742178,0.354136,0.830051,0.0989305,0.897198,0.718866,0.263016,0.84102,0.575209,0.673999,0.681348,0.997206,0.296405,0.368845,0.709139,0.0778173,0.262566,0.228573,0.368971,0.375694,0.395639,0.879153,0.822514,0.0134448,0.0799869,0.3234,0.5618,0.147903,0.124693,0.316631,0.0188346,0.420384,0.288645,0.000570476,0.799875,0.665934,0.462892,0.00187427,0.225248,0.174106,0.663774,0.833427,0.857828,0.598932,0.237832,0.190155,0.496775,0.235097,0.0348866,0.428003,0.958465,0.703276,0.83393,0.150065,0.0374507,0.624601,0.236964,0.812857,0.137878,0.606973,0.519446,|0.740329,0.435775,0.528219,0.00726014,0.743884,0.447176,0.198919,0.881303,0.0489575,0.1295,0.85151,0.132664,0.599801,0.173464,0.892516,0.180681,0.148979,0.10651,0.170372,0.290277,0.268501,0.659249,0.322465,0.28928,0.642953,0.412382,0.617752,0.598176,0.0916436,0.857665,0.524372,0.33497,0.53284,0.582246,0.738663,0.124898,0.0598443,0.96874,0.672342,0.86888,0.418076,0.260633,0.392768,0.989759,0.324967,0.396702,0.610517,0.252687,0.304956,0.306423,0.759065,0.24833,0.242205,0.226362,0.531106,0.31537,0.30172,0.760942,0.362615,0.635096,0.706314,0.161086,0.794437,0.34608,0.945542,0.316267,0.293806,0.267789,0.236525,0.0449335,0.285848,0.888018,0.306054,0.919212,0.324247,0.273917,0.42587,0.16286,0.39604,0.517958,0.987324,0.724986,0.936612,0.686235,0.58178,0.237945,0.30857,0.349617,0.32194,0.632872,0.867401,0.724604,0.290319,0.77215,0.217469,0.561337,0.889951,0.0521858,0.832723,0.381033,0.754336,0.395336,0.653447,0.140498,0.482727,0.5678,0.158955,0.946096,0.176231,0.917125,0.24271,0.978463,0.743348,0.760519,0.549528,0.538619,0.777741,0.189989,0.0857795,0.00827521,0.066344,0.935466,0.665029,0.624667,0.33297,0.24754,0.273518,0.476273,0.341088,0.885673,0.863878,0.151997,0.553271,0.691996,0.96041,0.395339,0.426841,0.527573,0.248641,0.366047,0.148317,0.048914,0.375678,0.334139,0.296874,0.621838,0.219454,0.200375,0.360607,0.368078,0.249821,0.606589,0.871848,0.917101,0.685187,0.914039,0.860743,0.89213,0.880705,0.0827025,0.126033,0.621723,0.651204,0.0164363,0.407117,0.184264,0.057371,0.693389,0.318859,0.502014,0.706086,0.592119,0.261703,0.7994,0.662369,0.149702,0.384668,0.601082,0.544265,0.202149,0.0329116,0.269838,0.425618,0.883097,0.750301,0.601591,0.716118,0.88764,0.738586,0.314377,0.44727,0.63322,0.383645,0.597965,0.933058,0.450994,0.297031,0.674382,0.570452,0.56964,0.401522,0.119829,0.841263,0.0158645,0.3283,0.495227,0.95462,0.064424,0.321116,0.858175,0.551907,0.0485088,0.680598,0.47542,0.19625,0.98594,0.129286,0.153203,0.741951,0.482601,0.176175,0.16019,0.833919,0.0294647,0.212181,0.251352,0.861406,0.432661,0.840927,0.976979,0.300871,0.579084,0.373605,0.22483,0.229243,0.390957,0.319505,0.452545,0.328007,0.901287,0.266941,0.62885,0.25891,0.292877,0.590097,0.598519,0.107628,0.476164,0.262959,0.0667708,0.0184537,0.0577747,0.460525,0.510215,0.426677,0.453471,0.904658,0.890868,0.743683,0.0834971,0.0339248,0.42192,0.436358,0.126043,0.907267,0.55029,0.775514,0.130256,0.483333,0.907837,0.831088,0.288935,0.0674566,0.85858,0.297433,0.883568,0.324734,0.902472,0.909079,0.237886,0.0917511,0.950629,0.217672,0.0753899,0.0644609,0.00468343,0.333035,0.331319,0.733617,0.110807,0.133894,0.125544,0.735319,0.0880749,0.898435,0.291126,0.873324,0.535494,0.104334,0.220799,0.172506,0.784468,0.29487,0.00118363,0.456191,0.490408,0.472928,0.646837,0.474336,0.74559,0.0937348,0.286719,0.266995,0.816001,0.253201,0.665367,0.255082,0.516232,0.244493,0.137743,0.00344878,0.351139,0.296506,0.384085,0.689166,0.413,0.103706,0.350144,0.668431,0.207827,0.408651,0.0205275,0.258479,0.203067,0.16722,0.564803,0.671396,0.886096,0.18947,0.101834,0.0569564,0.82659,0.443233,0.97672,0.628337,0.896234,0.313669,0.0199866,0.855347,0.618299,0.885935,0.653791,0.655719,0.413325,0.559267,0.697414,0.174946,0.603542,0.256389,0.766622,0.030726,0.634518,0.0518486,0.913086,0.533335,0.579603,0.574027,0.830545,0.838672,0.76459,0.411289,0.377244,0.182523,0.493291,0.802742,0.657837,0.345491,0.263269,0.598176,0.0469495,0.584629,0.590528,0.242769,0.17529,0.211918,0.425788,0.323192,0.500488,0.197267,0.14473,0.664484,0.927141,0.325506,0.924378,0.0578756,0.558094,0.16119,0.472483,0.606718,0.366566,0.841435,0.981361,0.857481,0.0457262,0.380958,0.145649,0.551657,0.0577485,0.735921,0.260124,0.224159,0.440604,0.179242,0.071267,0.306179,0.0496904,0.188782,0.946196,0.727291,0.181883,0.255898,0.409353,0.388327,0.913738,0.567649,0.0251464,0.674221,0.826533,0.502709,0.475525,0.133908,0.784927,0.776906,0.633347,0.781792,0.0617005,0.553601,0.84826,0.747871,0.569049,0.829748,0.562781,0.00904679,0.183283,0.822843,0.0817901,0.023864,0.70785,0.338745,0.744454,0.991984,0.289882,0.463108,0.55662,0.265356,0.225379,0.166724,0.619227,0.0213692,0.379916,0.831186,0.763834,0.16579,0.322393,0.796733,0.981101,0.827888,0.857241,0.512201,0.0539536,0.377932,0.482638,0.338745,0.754381,0.323776,0.841639,0.535651,0.712005,0.18851,0.608648,0.500634,0.533915,0.315283,0.843302,0.188091,0.62986,0.677042,0.138443,0.349407,0.8764,0.146528,0.18294,0.521167,0.312206,0.10705,0.371264,0.758319,0.995111,0.594751,0.475289,0.458733,0.459949,0.285196,0.549724,0.890895,0.134877,0.586071,0.925832,0.685465,0.639079,0.781653,0.559044,0.369369,0.493689,0.71499,0.301766,0.45479,0.364618,0.0985448,0.165468,0.572859,0.295476,0.482566,0.494884,0.0184703,0.737779,0.473091,0.274621,0.603319,0.320803,0.264578,0.994564,0.671226,0.903711,0.0689706,0.489522,0.997012,0.723734,0.910555,0.707532,0.0857165,0.288739,0.685095,0.782824,0.400182,0.77608,0.00746495,0.508986,0.796911,0.187125,0.452872,0.955468,0.0355947,0.679696,0.423297,0.525794,0.207997,0.423867,0.827448,0.914554,0.139404,0.419736,0.365897,0.578706,0.594364,0.967529,0.76105,0.0488485,0.234706,0.242632,0.864984,0.192195,0.318101,0.860012,0.0241374,0.909202,0.873308,0.556679,0.461946,0.277757,0.100176,0.222691,0.758918,0.88791,0.0474805,0.299014,0.493874,0.8712,0.301283,0.707952,0.927129,0.5249,0.916701,0.17344,0.126995,0.102734,0.186144,0.0226429,0.0881763,0.974148,0.813956,0.64431,0.58459,0.800847,0.712138,0.802639,0.146751,0.143639,0.925108,0.643048,0.840088,0.295299,0.329394,0.96439,0.650257,0.254089,0.806764,0.978316,0.266314,0.731022,0.260607,0.969226,0.636372,0.778148,0.807687,0.00985157,0.921452,0.593772,0.358413,0.314247,0.45141,0.297232,0.015422,0.630886,0.953091,0.505213,0.505915,0.473786,0.114485,0.305225,0.0366384,0.523171,0.506018,0.360704,0.247328,0.943065,0.522707,0.784695,0.531941,0.276135,0.129138,0.105595,0.323851,0.0114272,0.248659,0.565872,0.936946,0.728301,0.977244,0.609168,0.0969484,0.170322,0.0489324,0.992327,0.431891,0.0740115,0.0221781,0.605315,0.483233,0.248089,0.844007,0.722782,0.854833,0.284542,0.603446,0.363542,0.471452,0.142943,0.0262153,0.766144,0.984471,0.693248,0.538719,0.664446,0.204763,0.6635,0.578103,0.0153928,0.420978,0.75816,0.413818,0.69678,0.768068,0.822742,0.116895,0.814561,0.131374,0.720267,0.253009,0.0058732,0.514258,0.121881,0.909461,0.852358,0.440414,0.401057,0.459139,0.033048,0.715743,0.178681,0.914062,0.823353,0.495445,0.705306,0.43349,0.435452,0.522352,0.391528,0.376128,0.879099,0.064046,0.649898,0.228688,0.290299,0.342349,0.328628,0.588421,0.965465,0.580768,0.00339544,0.777935,0.67938,0.778832,0.391161,0.0772837,0.856151,0.637982,0.518499,0.370273,0.60616,0.675675,0.748554,0.5711,0.850304,0.0105945,0.821292,0.821267,0.667764,0.923585,0.414753,0.482599,0.329534,0.612482,0.55775,0.993229,0.353494,0.263922,0.538101,0.214718,0.159571,0.589398,0.216987,0.456549,0.465042,0.417775,0.264869,0.0467925,0.0176808,0.878905,0.251891,0.0732191,0.596543,0.962872,0.878888,0.738862,0.0796453,0.0120808,0.232515,0.0715708,0.799073,0.57829,0.330903,0.686355,0.973862,0.249579,0.380871,0.529386,0.730773,0.526788,0.438889,0.479166,0.0666543,0.0833768,0.329179,0.988566,0.934615,0.422933,0.713652,0.710676,0.824679,0.28774,0.128869,0.949762,0.0659449,0.608332,0.0662083,0.469016,0.753757,0.509072,0.752281,0.150846,0.20256,0.89903,0.295874,0.134552,0.157491,0.477961,0.944472,0.062652,0.960335,0.196804,0.188775,0.261474,0.172229,0.154469,0.187802,0.146413,0.439069,0.833817,0.186712,0.804004,0.438633,0.565746,0.0816253,0.642986,0.979695,0.905307,0.763112,0.956209,0.0126897,0.206184,0.874875,0.763456,0.306524,0.74413,0.0841019,0.750071,0.13109,0.883632,0.51655,0.435263,0.840708,0.225123,0.756039,0.926362,0.568454,0.131491,0.173612,0.279297,0.509258,0.592191,0.0688925,0.650116,0.586283,0.154089,0.94179,0.668956,0.500946,0.991416,0.816066,0.312679,0.0739431,0.892295,0.321696,0.787846,0.326903,0.0175583,0.102879,0.402504,0.413374,0.91377,0.785833,0.527447,0.622023,0.979023,0.426127,0.896668,0.968784,0.242165,0.268405,0.381532,0.268882,0.210735,0.706447,0.0306489,0.730193,0.971085,0.973806,0.984241,0.0251893,0.857607,0.0722429,0.215234,0.89797,0.188384,0.636811,0.40097,0.708021,0.846533,0.680044,0.432636,0.849905,0.448797,0.75293,0.503546,0.0259939,0.801779,0.285386,0.583265,0.770062,0.264509,0.867849,0.0238665,0.328486,0.790333,0.536145,0.282709,0.548728,0.676862,0.651218,0.124852,0.782779,0.4744,0.989864,0.739625,0.593658,0.0443507,0.218163,0.0340017,0.565475,0.123303,0.126358,0.764522,0.504398,0.355346,0.577399,0.745516,0.644077,0.640719,0.533601,0.360976,0.799985,0.950917,0.400125,0.623959,0.521985,0.172523,0.874176,0.528138,0.0211533,0.290439,0.0848555,0.911327,0.750556,0.914546,0.275091,0.346195,0.979905,0.922512,0.0323619,0.173751,0.865547,0.365574,0.00256103,0.546424,0.857198,0.274909,0.577691,0.400822,0.229991,0.852599,0.199599,0.589158,0.374588,0.576681,0.725179,0.0415941,0.652915,0.255895,0.21977,0.939769,0.654705,0.269777,0.396352,0.263604,0.858607,0.461779,0.980873,0.405809,0.876725,|0.292145,0.831354,0.963486,0.962129,0.969103,0.879845,0.0894138,0.817075,0.489863,0.738673,0.937285,0.928912,0.936927,0.808946,0.161769,0.307114,0.979079,0.104119,0.230949,0.24197,0.887804,0.915311,0.51135,0.719861,0.445234,0.959741,0.629556,0.605197,0.709814,0.417754,0.340448,0.817725,0.44087,0.966981,0.268551,0.198915,0.557416,0.107998,0.973787,0.190973,0.526076,0.319477,0.751409,0.585223,0.116164,0.604099,0.866884,0.229112,0.796552,0.130248,0.363675,0.368125,0.550888,0.507202,0.580037,0.737236,0.0706581,0.311893,0.317874,0.652341,0.260558,0.960252,0.671887,0.61965,0.327754,0.988115,0.857893,0.268673,0.829384,0.0606021,0.27109,0.580758,0.0978055,0.939114,0.151832,0.600748,0.110245,0.580901,0.778484,0.577014,0.230828,0.814883,0.166842,0.254337,0.891375,0.174546,0.944431,0.65823,0.231892,0.291346,0.718707,0.284433,0.664238,0.0602426,0.73352,0.894898,0.945798,0.175315,0.811368,0.472762,0.639032,0.106772,0.633592,0.10277,0.8759,0.906704,0.80483,0.444588,0.0918138,0.47717,0.522561,0.341204,0.341898,0.91603,0.824644,0.24188,0.270718,0.62361,0.657069,0.685562,0.666314,0.424591,0.652211,0.115771,0.0303538,0.580875,0.261758,0.151463,0.345493,0.842407,0.267685,0.609086,0.92101,0.786331,0.244452,0.726508,0.426033,0.0598707,0.771818,0.161709,0.748322,0.189551,0.434623,0.159154,0.251715,0.433132,0.156068,0.0416318,0.577217,0.69508,0.827713,0.107665,0.0237848,0.653425,0.205879,0.42158,0.307824,0.891745,0.554819,0.105558,0.596991,0.384808,0.950756,0.699908,0.597163,0.175495,0.141259,0.194239,0.312688,0.918134,0.150782,0.859824,0.997924,0.273334,0.720312,0.611927,0.285491,0.592064,0.0826527,0.63169,0.0659104,0.541643,0.878763,0.472241,0.278795,0.918701,0.75573,0.69916,0.277379,0.485759,0.307598,0.17139,0.58205,0.0120558,0.908041,0.379757,0.309945,0.806859,0.573233,0.959679,0.550293,0.223612,0.49881,0.900097,0.317202,0.724066,0.435996,0.303941,0.643335,0.194147,0.981188,0.674959,0.44857,0.0325312,0.186247,0.090983,0.804132,0.0420987,0.859936,0.317673,0.283397,0.675496,0.67635,0.0468068,0.333463,0.17224,0.500889,0.845757,0.0366941,0.111041,0.979216,0.951691,0.414937,0.204275,0.0265735,0.549263,0.884122,0.702707,0.94294,0.537368,0.000330091,0.446954,0.196911,0.494583,0.14074,0.782932,0.226611,0.695539,0.916232,0.164197,0.727247,0.464732,0.712703,0.191833,0.0349101,0.812558,0.814342,0.501349,0.535879,0.114012,0.375949,0.668427,0.662049,0.164728,0.676954,0.647173,0.119478,0.405321,0.490834,0.990891,0.594293,0.130086,0.351088,0.925079,0.771243,0.820276,0.115381,0.278542,0.0145385,0.524473,0.256692,0.162476,0.314016,0.336194,0.472217,0.14081,0.306841,0.89382,0.530014,0.37406,0.430577,0.159479,0.951566,0.835229,0.379399,0.745985,0.828129,0.38546,0.479866,0.287359,0.996186,0.897258,0.0842379,0.315316,0.893455,0.544209,0.0410921,0.686002,0.262223,0.181425,0.736563,0.91004,0.0933605,0.404695,0.613314,0.362228,0.412673,0.169944,0.306172,0.97657,0.510115,0.268661,0.291571,0.740999,0.263461,0.822355,0.169837,0.328038,0.546114,0.42573,0.988896,0.170052,0.726379,0.213446,0.00694364,0.33516,0.533396,0.710734,0.0135049,0.552603,0.868633,0.239894,0.786276,0.360694,0.576496,0.876346,0.652977,0.817117,0.0410056,0.285831,0.0793569,0.717474,0.990229,0.765629,0.858512,0.429449,0.019854,0.0941552,0.158175,0.118711,0.907151,0.465696,0.491862,0.241766,0.00154161,0.153763,0.169989,0.585261,0.294102,0.846942,0.202461,0.784969,0.304012,0.231059,0.901676,0.417259,0.218743,0.661956,0.877476,0.102031,0.431776,0.759178,0.396471,0.429677,0.788041,0.0465693,0.372189,0.24072,0.295439,0.0169297,0.42148,0.121322,0.758045,0.813797,0.276883,0.131898,0.350064,0.693325,0.645654,0.676115,0.385369,0.0155542,0.907853,0.869898,0.258078,0.271778,0.00635052,0.226642,0.521218,0.515756,0.39618,0.581721,0.204776,0.572388,0.849465,0.27341,0.747457,0.0596479,0.683678,0.159757,0.760153,0.918547,0.0226504,0.780828,0.299731,0.384796,0.188658,0.642266,0.444822,0.893897,0.599118,0.731241,0.929633,0.570278,0.43283,0.585177,0.686395,0.174393,0.933778,0.722538,0.188104,0.760069,0.0816626,0.856994,0.82887,0.740318,0.599656,0.374406,0.316846,0.102572,0.654145,0.319276,0.308898,0.631784,0.69343,0.883143,0.952331,0.397183,0.243579,0.3793,0.774567,0.804707,0.0112275,0.37712,0.00726134,0.587197,0.00236648,0.223231,0.536149,0.464907,0.883131,0.225514,0.489308,0.330543,0.846433,0.77308,0.266113,0.608411,0.699475,0.561729,0.416849,0.141155,0.841218,0.0822201,0.0321209,0.458717,0.143109,0.614854,0.73796,0.0812925,0.862256,0.52567,0.179076,0.193042,0.0169708,0.882034,0.506351,0.851853,0.868615,0.206618,0.450286,0.066812,0.0539227,0.195475,0.882477,0.282269,0.833032,0.945779,0.0815904,0.895997,0.884221,0.356507,0.440681,0.612211,0.386657,0.213509,0.371534,0.774664,0.115924,0.0663994,0.74579,0.886991,0.433312,0.197544,0.929167,0.89644,0.96659,0.934757,0.00275356,0.272733,0.636997,0.718207,0.0462778,0.592857,0.936891,0.998176,0.904153,0.659254,0.018454,0.409134,0.857042,0.799573,0.520398,0.534718,0.146548,0.367411,0.376534,0.891889,0.473065,0.212434,0.0175743,0.940661,0.957718,0.87559,0.229364,0.921378,0.67981,0.412568,0.538193,0.875976,0.191388,0.384944,0.831391,0.233689,0.294627,0.124666,0.613569,0.173745,0.400297,0.36554,0.134204,0.971068,0.0157815,0.351631,0.607114,0.728706,0.604262,0.282715,0.395638,0.102998,0.2209,0.150359,0.085978,0.408844,0.674577,0.403553,0.685427,0.588891,0.664566,0.603601,0.157485,0.0521734,0.539086,0.295191,0.744386,0.521364,0.834359,0.469226,0.263969,0.465993,0.838873,0.958642,0.501259,0.964878,0.0033986,0.604044,0.462544,0.514506,0.670766,0.236616,0.0131583,0.179336,0.0527776,0.570801,0.153445,0.930838,0.138168,0.395909,0.980273,0.46301,0.379365,0.651778,0.04173,0.300882,0.150845,0.499391,0.177602,0.743178,0.408538,0.0475251,0.363982,0.302297,0.569608,0.446947,0.162813,0.989109,0.305555,0.633433,0.82149,0.0534149,0.208447,0.359839,0.631326,0.351969,0.700284,0.362169,0.324176,0.660292,0.15835,0.244531,0.342399,0.061671,0.364747,0.214869,0.448993,0.947773,0.0888175,0.55432,0.243209,0.72586,0.0676081,0.366751,0.183505,0.550335,0.271199,0.704673,0.25748,0.512716,0.795329,0.754052,0.124422,0.760087,0.408206,0.544239,0.38362,0.663427,0.0366963,0.290889,0.596072,0.664054,0.951429,0.105028,0.00157368,0.545947,0.423326,0.0760355,0.355116,0.59068,0.994358,0.902095,0.797081,0.987124,0.0742574,0.756355,0.906558,0.348107,0.17449,0.691024,0.997289,0.321938,0.668643,0.324901,0.751601,0.00521988,0.282808,0.284463,0.350748,0.66495,0.876467,0.362828,0.606988,0.758952,0.545295,0.733617,0.323039,0.549411,0.0398667,0.502453,0.331717,0.790108,0.379025,0.61954,0.324452,0.648913,0.686909,0.147661,0.658556,0.575628,0.877711,0.434521,0.150579,0.288414,0.850515,0.885765,0.960261,0.638545,0.472568,0.644127,0.796982,0.471794,0.0858833,0.1285,0.891412,0.772618,0.335663,0.300044,0.798493,0.546691,0.169928,0.561978,0.587514,0.364699,0.624867,0.330872,0.249209,0.685443,0.629588,0.628277,0.250097,0.800823,0.444256,0.664084,0.126797,0.347144,0.626561,0.335881,0.247592,0.2269,0.790839,0.891645,0.772706,0.594427,0.313717,0.518496,0.604596,0.560618,0.961208,0.081141,0.571057,0.571491,0.396124,0.940403,0.0826937,0.606516,0.271787,0.540057,0.0687873,0.736312,0.192206,0.0299428,0.142867,0.875305,0.682044,0.50708,0.640751,0.0858111,0.266027,0.86962,0.284484,0.547021,0.423438,0.901929,0.556192,0.172136,0.945893,0.912723,0.973628,0.951131,0.439464,0.609403,0.734575,0.853169,0.198652,0.637742,0.17667,0.394522,0.819344,0.137506,0.803848,0.970327,0.885921,0.138122,0.190815,0.264093,0.989133,0.831684,0.189488,0.790108,0.0908866,0.936951,0.167104,0.659637,0.31822,0.942521,0.217013,0.288837,0.165917,0.666494,0.79145,0.290101,0.119239,0.381308,0.420908,0.618297,0.744946,0.231788,0.967336,0.265265,0.482135,0.126846,0.128811,0.990865,0.293826,0.346274,0.573228,0.77408,0.919001,0.208699,0.333087,0.548959,0.692568,0.207866,0.741932,0.608051,0.612005,0.335199,0.597157,0.503566,0.669456,0.561064,0.229354,0.962646,0.893332,0.891503,0.889174,0.9046,0.179226,0.487577,0.345496,0.0767018,0.85897,0.246331,0.507572,0.0772575,0.768814,0.679848,0.958544,0.204942,0.697345,0.637214,0.0970581,0.161409,0.343093,0.409438,0.500688,0.494525,0.575903,0.918212,0.313501,0.658697,0.175306,0.340604,0.373823,0.0330665,0.01217,0.895756,0.749026,0.625511,0.495438,0.182609,0.68181,0.607061,0.395614,0.672597,0.796888,0.195257,0.433136,0.0989665,0.0193272,0.746227,0.370061,0.22434,0.51296,0.10878,0.672954,0.225438,0.470181,0.206393,0.612228,0.346751,0.383067,0.505416,0.76503,0.200158,0.865432,0.79339,0.591087,0.750639,0.333528,0.327457,0.414875,0.565597,0.579302,0.566665,0.551295,0.924156,0.618594,0.123332,0.254597,0.730099,0.016008,0.366498,0.772345,0.0642347,0.695935,0.282036,0.857898,0.385954,0.934128,0.776533,0.689937,0.510294,0.23663,0.00886387,0.550193,0.739555,0.579349,0.633546,0.319145,0.979909,0.104212,0.342827,0.299714,0.445657,0.104588,0.554215,0.380785,0.1926,0.830224,0.256922,0.497175,0.33315,0.038273,0.105598,0.107665,0.434725,0.439568,0.827434,0.767839,0.699379,0.439341,0.412965,0.783126,0.620217,0.102605,0.148101,0.116389,0.631997,0.440228,0.919585,|0.756708,0.602713,0.712265,0.495189,0.417202,0.216071,0.48652,0.905504,0.142458,0.616497,0.98303,0.996697,0.458677,0.845064,0.238841,0.936425,0.772611,0.823967,0.861621,0.1115,0.0396405,0.218807,0.275805,0.53798,0.835956,0.658686,0.527488,0.251131,0.937893,0.770377,0.718774,0.162615,0.454875,0.636617,0.384533,0.935577,0.371661,0.430327,0.630462,0.491915,0.345461,0.205752,0.959679,0.335402,0.495723,0.275839,0.0574963,0.466733,0.662969,0.123753,0.0158318,0.532224,0.307545,0.891421,0.863907,0.148571,0.980078,0.37603,0.715515,0.0768756,0.647535,0.510207,0.524792,0.267027,0.0518631,0.244496,0.164554,0.738991,0.331542,0.458458,0.174335,0.771841,0.874099,0.376857,0.502674,0.893279,0.726879,0.812858,0.17157,0.326454,0.598522,0.452889,0.122502,0.66394,0.100339,0.986139,0.514292,0.515301,0.496707,0.347769,0.642537,0.779736,0.265552,0.716813,0.232979,0.735172,0.179944,0.43658,0.434203,0.134162,0.785982,0.192151,0.867469,0.890154,0.472901,0.430679,0.357938,0.64057,0.538289,0.864884,0.0968566,0.346899,0.251959,0.832821,0.455865,0.999766,0.0209344,0.683523,0.952868,0.0641364,0.155979,0.696097,0.975474,0.115842,0.982711,0.526437,0.0707315,0.564167,0.88915,0.603581,0.569539,0.206164,0.879127,0.983195,0.645847,0.13487,0.240643,0.0299599,0.780571,0.331642,0.824906,0.302267,0.20205,0.931491,0.434913,0.97681,0.956896,0.688552,0.52101,0.139235,0.654244,0.697635,0.518951,0.963726,0.350244,0.119763,0.223084,0.680806,0.822865,0.754424,0.213493,0.999407,0.239241,0.643436,0.717426,0.664575,0.249656,0.815605,0.581911,0.50259,0.424376,0.0267467,0.0796942,0.646696,0.813248,0.500421,0.990338,0.710499,0.745163,0.0907515,0.863038,0.520803,0.350811,0.591204,0.228235,0.0118883,0.210544,0.155684,0.440317,0.499527,0.483741,0.217635,0.220597,0.477996,0.233461,0.658711,0.264494,0.425291,0.38462,0.602482,0.613935,0.975978,0.266742,0.752837,0.308821,0.616775,0.0558072,0.149883,0.603279,0.859022,0.774547,0.997953,0.458864,0.229606,0.0106225,0.753627,0.885934,0.796344,0.552313,0.932431,0.171915,0.767856,0.215436,0.136285,0.491404,0.213076,0.680933,0.469027,0.845985,0.0356142,0.566292,0.39697,0.678371,0.581461,0.0156137,0.755119,0.67433,0.974033,0.427325,0.758848,0.0384911,0.20592,0.00527835,0.248021,0.407332,0.669819,0.771474,0.00146508,0.767743,0.55323,0.206655,0.521528,0.120641,0.184707,0.642983,0.157985,0.858658,0.0953789,0.103037,0.516726,0.0946473,0.688808,0.791456,0.751453,0.650118,0.493575,0.0952218,0.379503,0.511216,0.682852,0.795066,0.260157,0.266465,0.33238,0.740439,0.254564,0.577623,0.35423,0.0315852,0.669892,0.138656,0.625605,0.999166,0.228237,0.369816,0.884585,0.587866,0.869238,0.293454,0.424177,0.0389696,0.192592,0.0424421,0.342521,0.565686,0.69829,0.338563,0.381527,0.941735,0.783194,0.313607,0.922522,0.237332,0.225898,0.82357,0.112666,0.0404948,0.566006,0.68534,0.204159,0.881872,0.962017,0.209316,0.64752,0.296991,0.497545,0.217163,0.828171,0.618951,0.672037,0.484981,0.462632,0.164665,0.661013,0.562133,0.208443,0.507291,0.89977,0.685862,0.46843,0.0207567,0.21978,0.27188,0.488848,0.812328,0.584217,0.456279,0.985803,0.899803,0.796101,0.62284,0.44715,0.818056,0.804081,0.305956,0.757593,0.881878,0.816534,0.511259,0.825801,0.82408,0.901944,0.74247,0.231748,0.57955,0.868668,0.279143,0.413639,0.539135,0.252154,0.84233,0.867953,0.113746,0.400539,0.74329,0.850417,0.005822,0.618372,0.560764,0.623098,0.341928,0.200221,0.415424,0.472497,0.950124,0.767145,0.328224,0.819416,0.94437,0.432971,0.928529,0.335749,0.564152,0.971343,0.832717,0.0709438,0.818115,0.21117,0.852555,0.546757,0.246067,0.495636,0.22258,0.425608,0.0486914,0.589738,0.118821,0.455593,0.923923,0.534079,0.49442,0.486016,0.635433,0.499311,0.00186813,0.46351,0.580149,0.170974,0.435472,0.482641,0.343062,0.205128,0.549222,0.264373,0.38416,0.959031,0.614089,0.883148,0.839634,0.0785207,0.45818,0.657914,0.158507,0.3212,0.569261,0.132926,0.19742,0.00138891,0.143994,0.846552,0.53665,0.588152,0.82651,0.439333,0.852386,0.467641,0.52062,0.977611,0.18107,0.167069,0.00266862,0.220937,0.437682,0.697814,0.322389,0.688403,0.547756,0.245321,0.946203,0.0651389,0.122311,0.820325,0.296177,0.301119,0.0139005,0.0918076,0.915841,0.148478,0.648103,0.521775,0.156575,0.0794859,0.0122049,0.660717,0.626301,0.525185,0.791977,0.638474,0.677954,0.301561,0.6043,0.251752,0.67462,0.100653,0.449288,0.217219,0.1793,0.438012,0.589873,0.183835,0.144702,0.99142,0.335106,0.935394,0.680478,0.997041,0.538717,0.296182,0.593562,0.78587,0.617336,0.0667571,0.73595,0.800734,0.262271,0.34866,0.949275,0.131275,0.826745,0.912231,0.292852,0.791293,0.557213,0.0544332,0.356163,0.0808724,0.636029,0.706899,0.69578,0.638761,0.368098,0.957654,0.390263,0.830216,0.676252,0.314134,0.243826,0.72627,0.128771,0.385119,0.557269,0.951619,0.47824,0.00278676,0.805013,0.983266,0.974346,0.529784,0.340617,0.51879,0.26033,0.468656,0.0893296,0.223966,0.540802,0.182899,0.296888,0.811214,0.00964481,0.480352,0.850921,0.189108,0.120332,0.774194,0.773076,0.752054,0.836603,0.900924,0.473008,0.965523,0.208606,0.941778,0.189085,0.00378388,0.423869,0.535394,0.569584,0.833231,0.487714,0.839593,0.164866,0.130231,0.785381,0.878653,0.998563,0.442378,0.675699,0.557651,0.0283845,0.922649,0.920898,0.495399,0.605049,0.699157,0.385084,0.226326,0.642374,0.434699,0.920624,0.0398529,0.496765,0.0422244,0.789996,0.832052,0.0500849,0.670459,0.626597,0.926264,0.450197,0.11218,0.925217,0.243467,0.713137,0.395089,0.285323,0.184474,0.529248,0.66893,0.639778,0.792749,0.682258,0.730993,0.310803,0.0793732,0.96299,0.213241,0.167748,0.572914,0.623517,0.098578,0.339495,0.226467,0.312226,0.0729319,0.984154,0.444935,0.74321,0.637827,0.330262,0.241059,0.974119,0.696698,0.0673775,0.279759,0.355198,0.641564,0.589151,0.72106,0.0226064,0.0680751,0.670599,0.49949,0.0910926,0.771504,0.206461,0.750573,0.897366,0.111371,0.981505,0.381509,0.0353687,0.904248,0.533427,0.258242,0.74252,0.0242617,0.945253,0.933863,0.357483,0.65288,0.531387,0.241171,0.976183,0.885081,0.00582117,0.598007,0.82516,0.0741119,0.674492,0.955513,0.621478,0.468776,0.24801,0.798704,0.982004,0.908788,0.211788,0.775179,0.959043,0.196232,0.426757,0.38859,0.470616,0.238651,0.756412,0.782763,0.697514,0.870476,0.777088,0.388298,0.985052,0.332464,0.282815,0.00935024,0.577866,0.193023,0.0871468,0.593958,0.0404807,0.366605,0.303669,0.494401,0.776895,0.0143614,0.82575,0.756212,0.882859,0.578861,0.833696,0.782489,0.527938,0.233589,0.881702,0.471506,0.429633,0.90998,0.78001,0.925252,0.771238,0.0598631,0.794766,0.252321,0.738185,0.47496,0.23294,0.910726,0.398889,0.798819,0.0985596,0.5555,0.686942,0.93036,0.929834,0.959761,0.164114,0.624344,0.235031,0.439218,0.480882,0.531407,0.619027,0.695074,0.770763,0.82649,0.396161,0.108673,0.572831,0.878457,0.904766,0.359293,0.322706,0.596477,0.711359,0.677426,0.159158,0.907246,0.00102359,0.499048,0.673973,0.440029,0.966559,0.0760225,0.289631,0.929972,0.843977,0.220112,0.224659,0.993663,0.886281,0.0270539,0.262195,0.684534,0.423998,0.336941,0.972162,0.859308,0.0639728,0.613437,0.631868,0.985792,0.0242675,0.792715,0.804598,0.352555,0.717309,0.578905,0.469911,0.153184,0.152316,0.0879617,0.911306,0.535676,0.551466,0.37937,0.792749,0.63864,0.109284,0.700476,0.188276,0.712198,0.217368,0.756337,0.71358,0.330925,0.341355,0.995658,0.383434,0.14384,0.149923,0.398224,0.261781,0.383118,0.0693359,0.0136528,0.141414,0.509421,0.510417,0.129709,0.111303,0.769058,0.290594,0.124044,0.964676,0.61267,0.178526,0.945232,0.583487,0.520812,0.915615,0.00589758,0.811108,0.893818,0.0447153,0.509344,0.0442561,0.774514,0.898251,0.685469,0.609502,0.940763,0.557088,0.959903,0.682405,0.0827569,0.391578,0.851276,0.638275,0.771898,0.642455,0.36104,0.966573,0.0204048,0.829227,0.585163,0.01941,0.637154,0.0900732,0.423284,0.306989,0.488097,0.500144,0.55801,0.534001,0.193573,0.550854,0.0579924,0.183755,0.405321,0.440655,0.185797,0.300326,0.354573,0.116749,0.177943,0.640455,0.497619,0.26286,0.513402,0.68679,0.634278,0.956654,0.867682,0.594219,0.339463,0.284371,0.55991,0.634099,0.240322,0.585506,0.870308,0.133392,0.040227,0.768788,0.77002,0.192937,0.46144,0.602063,0.692766,0.425233,0.902828,0.952839,0.951499,0.955712,0.0168471,0.504472,0.547038,0.842013,0.958681,0.53741,0.495154,0.693952,0.277876,0.50607,0.404569,0.727813,0.050424,0.233746,0.603586,0.66044,0.596606,0.930401,0.495384,0.449629,0.715291,0.236909,0.821388,0.353773,0.584342,0.235211,0.459571,0.0593812,0.499367,0.0726754,0.745528,0.565841,0.296442,0.0558813,0.787904,0.613468,0.367419,0.757242,0.256714,0.221978,0.475013,0.252371,0.913876,0.0286582,0.702423,0.971068,0.680189,0.446328,0.870244,0.546363,0.556896,0.379014,0.990293,0.131789,0.502567,0.207899,0.415227,0.919971,0.436759,0.836087,0.221213,0.684663,0.812794,0.372519,0.936815,0.617468,0.225615,0.299435,0.731883,0.0841667,0.922094,0.240433,0.253075,0.73405,0.800972,0.843887,0.295292,0.630693,0.536441,0.198608,0.497361,0.701844,0.382912,0.393267,0.423024,0.689354,0.665654,0.288307,0.857775,0.0170277,0.131487,0.0412623,0.990601,0.624229,0.0579208,0.713612,0.284909,0.375445,0.160825,0.714558,0.667689,0.156542,0.782308,0.356208,0.169963,0.133311,0.17905,|0.893256,0.0597935,0.439391,0.792201,0.8153,0.266331,0.289028,0.89805,0.315421,0.792584,0.599977,0.174564,0.782227,0.967488,0.0718275,0.309374,0.989454,0.0230557,0.188147,0.95405,0.415744,0.733546,0.469089,0.078796,0.336589,0.702733,0.868545,0.0776897,0.75913,0.791932,0.547524,0.585886,0.922608,0.776301,0.998893,0.92277,0.596373,0.23591,0.380673,0.55244,0.538914,0.288209,0.300469,0.837031,0.772702,0.79195,0.332777,0.585105,0.317269,0.893819,0.221101,0.00197703,0.836041,0.270297,0.393666,0.90366,0.0896693,0.117276,0.538641,0.597579,0.0614465,0.972415,0.457195,0.869596,0.0165696,0.0275695,0.400434,0.813556,0.691128,0.759066,0.745964,0.0135769,0.984743,0.428788,0.512936,0.188787,0.698171,0.108225,0.605816,0.335509,0.637157,0.0196753,0.495503,0.13357,0.119019,0.304142,0.692435,0.531251,0.43896,0.274062,0.679124,0.435063,0.580566,0.545325,0.607506,0.0540619,0.357236,0.66078,0.340294,0.455606,0.842941,0.671053,0.109098,0.409539,0.506782,0.210293,0.504407,0.983366,0.203819,0.0711958,0.735788,0.77368,0.0308488,0.424422,0.720443,0.574019,0.708097,0.363662,0.971825,0.514362,0.0664444,0.382565,0.321865,0.986772,0.471396,0.065414,0.632989,0.945623,0.107735,0.20606,0.0527105,0.399554,0.549559,0.298132,0.133685,0.749823,0.565042,0.00724661,0.957002,0.434092,0.502446,0.214612,0.506045,0.423882,0.678952,0.221059,0.0575209,0.225594,0.338195,0.648575,0.869553,0.41429,0.829887,0.855205,0.00685662,0.364538,0.813036,0.777576,0.335904,0.511841,0.74087,0.141117,0.521836,0.694358,0.0628783,0.322468,0.674427,0.530402,0.39635,0.34899,0.803562,0.860436,0.539174,0.123234,0.62732,0.855853,0.68114,0.155055,0.761929,0.409555,0.723786,0.770975,0.203778,0.022655,0.848037,0.819141,0.0369988,0.912178,0.268087,0.464275,0.12864,0.272803,0.875669,0.198185,0.300493,0.293509,0.0553557,0.67239,0.971123,0.442402,0.540366,0.0893295,0.623636,0.918484,0.182493,0.562572,0.0736439,0.705606,0.146471,0.0158687,0.646874,0.0573998,0.481539,0.704247,0.27945,0.19787,0.699021,0.141983,0.305218,0.579092,0.737699,0.119983,0.00592464,0.86821,0.766376,0.952284,0.367231,0.138703,0.81385,0.843834,0.605677,0.726175,0.934139,0.711891,0.420036,0.0989753,0.880472,0.797535,0.643945,0.469575,0.24992,0.79395,0.281852,0.621374,0.944572,0.735631,0.280271,0.886993,0.446048,0.027185,0.501536,0.419289,0.498294,0.768143,0.788252,0.551115,0.183713,0.171021,0.12552,0.539797,0.675346,0.92454,0.591962,0.50279,0.866686,0.762024,0.054492,0.682663,0.554937,0.194489,0.599847,0.48871,0.872025,0.505873,0.381902,0.168235,0.637947,0.175647,0.293863,0.147599,0.149468,0.638274,0.173669,0.0617154,0.799796,0.192031,0.512469,0.689154,0.604659,0.00607836,0.89198,0.40357,0.370196,0.0432643,0.0365096,0.580055,0.583888,0.21023,0.43837,0.742237,0.888875,0.297552,0.951171,0.676507,0.202067,0.777523,0.296745,0.201212,0.399128,0.563621,0.554734,0.683605,0.696,0.469141,0.642349,0.521232,0.97841,0.612884,0.502389,0.147383,0.192032,0.439776,0.390917,0.998614,0.558437,0.720014,0.868678,0.904276,0.109947,0.865427,0.901364,0.919768,0.991567,0.0740812,0.104807,0.747904,0.617758,0.151029,0.163696,0.664896,0.116077,0.56059,0.91462,0.378387,0.123312,0.390354,0.214443,0.684257,0.130899,0.800755,0.21381,0.0830329,0.22456,0.60322,0.724957,0.790238,0.543556,0.837717,0.707007,0.715803,0.629115,0.0969494,0.983261,0.934433,0.86176,0.118597,0.874672,0.628345,0.451698,0.780571,0.212209,0.790947,0.954029,0.172647,0.956562,0.431482,0.973877,0.577176,0.595721,0.734789,0.149437,0.465444,0.84411,0.796897,0.256811,0.531539,0.209008,0.838457,0.719475,0.417415,0.921269,0.828831,0.93383,0.152846,0.569218,0.214954,0.280983,0.862151,0.293902,0.779452,0.396483,0.0582052,0.187164,0.673087,0.51588,0.421065,0.955059,0.893196,0.401436,0.244483,0.292752,0.432983,0.477172,0.556022,0.239243,0.111942,0.11563,0.192248,0.753981,0.75018,0.909931,0.663061,0.599284,0.484717,0.380741,0.31197,0.555754,0.617644,0.46448,0.616427,0.0529377,0.943968,0.374239,0.5854,0.155559,0.795091,0.523838,0.508783,0.921934,0.628811,0.298798,0.961497,0.972392,0.0502146,0.434757,0.711879,0.184276,0.325313,0.962459,0.273893,0.159887,0.0105287,0.0254139,0.676711,0.2951,0.02591,0.478739,0.854233,0.0626425,0.315089,0.491157,0.661496,0.470235,0.420194,0.467865,0.833364,0.423531,0.82684,0.514615,0.240695,0.458643,0.072202,0.636128,0.556092,0.782545,0.00186718,0.301854,0.339076,0.502503,0.495191,0.460164,0.543295,0.410922,0.543703,0.0983693,0.475484,0.415878,0.122557,0.260785,0.923207,0.655794,0.460265,0.138563,0.417569,0.696509,0.757507,0.47488,0.0135666,0.648225,0.146342,0.746447,0.592897,0.673249,0.338379,0.49748,0.00609004,0.319572,0.665999,0.833314,0.562513,0.50557,0.0417477,0.344565,0.77672,0.356227,0.0657929,0.999009,0.04337,0.3239,0.231143,0.0994481,0.169072,0.614375,0.358666,0.459268,0.454796,0.490092,0.790517,0.183186,0.640327,0.860396,0.562947,0.244344,0.905421,0.468146,0.66097,0.555508,0.46815,0.609646,0.183791,0.772891,0.81062,0.613023,0.926298,0.487089,0.989371,0.534969,0.0929699,0.967203,0.453047,0.607592,0.448724,0.365322,0.788155,0.444526,0.648432,0.452263,0.306933,0.21521,0.0224153,0.680153,0.359777,0.551786,0.00749886,0.122735,0.187538,0.472907,0.488324,0.816013,0.564153,0.187441,0.932242,0.37314,0.0865396,0.180178,0.894262,0.576,0.780294,0.252923,0.683183,0.921306,0.0759045,0.210876,0.981725,0.0408927,0.910201,0.546111,0.82569,0.150496,0.770146,0.72609,0.192845,0.845365,0.642117,0.427409,0.698314,0.957538,0.2284,0.17499,0.264153,0.0152181,0.605262,0.644297,0.263955,0.139003,0.269764,0.702349,0.603886,0.086315,0.614423,0.242188,0.868526,0.479879,0.382086,0.203305,0.623104,0.792007,0.0672938,0.0601944,0.95258,0.458986,0.0131055,0.107464,0.0600764,0.0989887,0.286958,0.129215,0.763445,0.259975,0.803118,0.428317,0.00708598,0.142037,0.411652,0.78965,0.150738,0.393083,0.658833,0.48584,0.348324,0.34156,0.0702985,0.543159,0.783738,0.705224,0.996871,0.0834297,0.382056,0.0810612,0.211664,0.458189,0.991062,0.593876,0.580339,0.256438,0.821687,0.777342,0.66451,0.83265,0.0766344,0.973195,0.145341,0.608893,0.707845,0.722082,0.931426,0.855809,0.64177,0.333339,0.925117,0.705804,0.778577,0.390128,0.920338,0.260934,0.824759,0.712485,0.343325,0.437908,0.0105808,0.909954,0.971538,0.869922,0.969505,0.193842,0.49877,0.195866,0.937655,0.464969,0.77727,0.895751,0.214357,0.314426,0.983538,0.0883896,0.714429,0.604948,0.999058,0.336348,0.0216459,0.346983,0.995648,0.950574,0.570018,0.383453,0.0789285,0.75066,0.017141,0.267999,0.252454,0.0439379,0.319616,0.700816,0.278744,0.713389,0.0219639,0.154117,0.0403115,0.174215,0.47753,0.126697,0.233527,0.117863,0.183418,0.172432,0.952297,0.0284179,0.631618,0.880924,0.771933,0.247453,0.365719,0.984829,0.490204,0.89854,0.921,0.407661,0.504439,0.881522,0.620965,0.803348,0.0666576,0.359389,0.318507,0.518343,0.204649,0.832541,0.963091,0.538861,0.474925,0.69745,0.768926,0.0746492,0.561837,0.208815,0.154252,0.528983,0.0567648,0.713791,0.358087,0.0908435,0.218088,0.667266,0.428029,0.306711,0.115651,0.264203,0.494983,0.589351,0.313489,0.27755,0.32459,0.680471,0.383733,0.468512,0.410505,0.169265,0.779283,0.00655025,0.393244,0.682359,0.971884,0.142358,0.671871,0.837712,0.831464,0.716235,0.876993,0.657021,0.0308232,0.831364,0.589586,0.547205,0.0571542,0.993661,0.0959886,0.882568,0.358977,0.667063,0.231564,0.0891423,0.980229,0.820017,0.258119,0.85301,0.378032,0.146945,0.237559,0.847053,0.286984,0.985011,0.513555,0.945995,0.462244,0.0474151,0.320757,0.268182,0.928045,0.0333943,0.261226,0.907839,0.586593,0.793037,0.940469,0.630099,0.0927143,0.0944867,0.205193,0.896876,0.243949,0.35553,0.875804,0.919082,0.03614,0.960737,0.639676,0.836942,0.15914,0.361119,0.381278,0.974616,0.947986,0.626736,0.829501,0.0351611,0.325794,0.997904,0.515057,0.564213,0.748382,0.553078,0.71986,0.817761,0.273133,0.711083,0.895201,0.0531688,0.00426477,0.0529014,0.83165,0.171001,0.575199,0.100033,0.434821,0.722121,0.276609,0.928539,0.831983,0.3873,0.422543,0.834898,0.362383,0.282403,0.836017,0.429278,0.779379,0.160396,0.531093,0.727601,0.869006,0.0121685,0.676294,0.101357,0.49826,0.866434,0.180308,0.0507648,0.854927,0.814532,0.981005,0.260497,0.00749254,0.410515,0.853818,0.0522602,0.605693,0.80728,0.67,0.413148,0.449071,0.214726,0.216422,0.0849795,0.913127,0.921471,0.655423,0.812707,0.579103,0.639133,0.840261,0.0125393,0.309958,0.558345,0.450404,0.876268,0.637132,0.827146,0.780745,0.479334,0.541747,0.915832,0.0386084,0.442276,0.920524,0.533572,0.635261,0.571106,0.910505,0.94492,0.717462,0.154643,0.85207,0.606842,0.0181277,0.203704,0.673822,0.00661981,0.491522,0.483693,0.533533,0.652961,0.333283,0.916056,0.777866,0.703679,0.641959,0.216293,0.581526,0.828445,0.137782,0.517907,0.897693,0.570445,0.922373,0.316847,0.171006,0.972167,0.94268,0.267166,0.379852,0.178989,0.755339,0.153593,0.97565,0.0457037,0.654024,0.486643,0.30535,0.522109,0.118193,0.300549,0.522396,0.221852,0.0896896,0.263791,0.337066,0.00690144,0.805537,0.675338,0.809254,0.469712,0.617653,0.776956,0.434762,0.378619,0.504537,0.643231,0.606845,0.220146,0.743396,0.653945,0.96962,0.445327,0.714662,0.373139,0.472586,0.132828,0.598082,0.616121,0.13782,|0.831117,0.357456,0.250663,0.33936,0.828581,0.749248,0.137928,0.620197,0.215091,0.985054,0.964457,0.00971794,0.337796,0.910712,0.0240162,0.360817,0.15754,0.243623,0.44602,0.935223,0.567537,0.656759,0.0743251,0.654878,0.00342983,0.100331,0.817904,0.552175,0.517455,0.180656,0.969502,0.664002,0.610742,0.482273,0.312596,0.572228,0.763652,0.456226,0.218091,0.617676,0.303693,0.00279582,0.319826,0.474484,0.068681,0.406803,0.935875,0.471528,0.352777,0.901416,0.672511,0.519738,0.166977,0.664747,0.565036,0.159928,0.169352,0.902677,0.701584,0.16256,0.714462,0.778858,0.0496199,0.612774,0.671082,0.266262,0.060163,0.126531,0.201727,0.292988,0.671278,0.702445,0.946754,0.667154,0.0379804,0.767693,0.526487,0.234877,0.467548,0.911761,0.813506,0.518693,0.712197,0.203281,0.399677,0.234955,0.445539,0.702734,0.656103,0.234774,0.845476,0.444174,0.205843,0.458606,0.900071,0.716827,0.540582,0.145062,0.572208,0.846894,0.793235,0.496112,0.183896,0.271329,0.00118643,0.552769,0.517021,0.803212,0.96202,0.0102798,0.646186,0.436253,0.681629,0.344703,0.876945,0.262674,0.672486,0.363328,0.25721,0.831978,0.533404,0.580348,0.989202,0.200076,0.547933,0.173905,0.830375,0.0440557,0.105388,0.130727,0.00380915,0.348626,0.770042,0.377531,0.284778,0.489424,0.699546,0.478533,0.798167,0.0185301,0.41688,0.108577,0.257046,0.798088,0.67885,0.110062,0.581993,0.397922,0.115682,0.154783,0.837489,0.774694,0.77223,0.309267,0.895894,0.0387543,0.245152,0.185205,0.804285,0.790821,0.25888,0.10291,0.171454,0.42724,0.360502,0.471805,0.413885,0.958593,0.0417213,0.970315,0.918574,0.0178708,0.854222,0.237468,0.746613,0.599754,0.813835,0.542956,0.838693,0.367353,0.444981,0.541511,0.0202491,0.159194,0.156398,0.386594,0.0564421,0.67181,0.821528,0.774568,0.922062,0.300497,0.533152,0.0309411,0.375472,0.160689,0.618531,0.501917,0.849638,0.793779,0.494824,0.162453,0.107928,0.962749,0.293083,0.915897,0.193914,0.915534,0.264025,0.335992,0.20204,0.872482,0.0560849,0.481265,0.383713,0.147881,0.306468,0.994679,0.976585,0.863741,0.0381798,0.258898,0.888597,0.34192,0.913238,0.851349,0.352288,0.571407,0.592875,0.946606,0.0665796,0.30242,0.922067,0.221475,0.225042,0.94329,0.801819,0.118519,0.756788,0.0402222,0.721745,0.272685,0.892856,0.436642,0.748833,0.226125,0.261108,0.162561,0.335161,0.931453,0.0820253,0.413555,0.686918,0.656895,0.863365,0.390017,0.0745245,0.570729,0.775682,0.0168487,0.600058,0.145097,0.150265,0.903615,0.366233,0.562757,0.665859,0.135721,0.119964,0.799907,0.107057,0.435131,0.116879,0.686727,0.394893,0.966154,0.975564,0.170465,0.239372,0.315354,0.826643,0.657132,0.503114,0.262786,0.316895,0.540816,0.65839,0.185924,0.828844,0.97738,0.551125,0.44123,0.26624,0.500549,0.810324,0.845765,0.781453,0.0452703,0.672985,0.430057,0.300084,0.0658798,0.317836,0.968868,0.792018,0.788607,0.920541,0.309428,0.544723,0.44136,0.277499,0.39723,0.230177,0.742895,0.106762,0.689349,0.85931,0.734318,0.846054,0.707099,0.173876,0.683584,0.400867,0.829155,0.179396,0.883927,0.769557,0.535827,0.42378,0.632028,0.11039,0.707322,0.0726059,0.477125,0.267791,0.747698,0.741582,0.333824,0.0906286,0.775163,0.745892,0.458177,0.840562,0.138734,0.416302,0.668835,0.910668,0.894858,0.22745,0.19121,0.0288805,0.234104,0.610109,0.603886,0.0292189,0.122627,0.183333,0.378288,0.502704,0.388442,0.406405,0.989496,0.825273,0.640865,0.126761,0.746557,0.700937,0.641292,0.381232,0.219606,0.200546,0.667346,0.891804,0.667039,0.0210297,0.947583,0.91198,0.287925,0.499451,0.123905,0.552975,0.707927,0.91811,0.891907,0.54099,0.68706,0.645125,0.265712,0.259854,0.109255,0.211489,0.0364156,0.791315,0.930004,0.692356,0.655572,0.710387,0.133612,0.908369,0.0443325,0.412912,0.611557,0.459542,0.291178,0.659525,0.750762,0.922733,0.874223,0.0431473,0.67788,0.172532,0.350754,0.386321,0.0731445,0.427373,0.511239,0.167219,0.331096,0.0804333,0.149061,0.301547,0.963691,0.807737,0.379637,0.66735,0.425628,0.0864205,0.477953,0.512668,0.905508,0.88566,0.0759426,0.502738,0.126046,0.966913,0.957498,0.870899,0.611757,0.067183,0.0246187,0.652887,0.323293,0.480105,0.409909,0.523269,0.713368,0.328859,0.700664,0.290134,0.330392,0.737637,0.405386,0.786269,0.660944,0.634174,0.779806,0.764898,0.0328333,0.0150094,0.446287,0.956266,0.705063,0.148882,0.482038,0.788739,0.0926491,0.396942,0.619934,0.385253,0.24891,0.0675466,0.534297,0.0442035,0.0249031,0.894763,0.910298,0.301461,0.299835,0.700896,0.107267,0.106376,0.769354,0.805634,0.019478,0.5947,0.801865,0.217722,0.574504,0.194068,0.349016,0.284226,0.0929273,0.977459,0.234936,0.121466,0.840545,0.0643202,0.120324,0.460657,0.0761201,0.448391,0.151443,0.979764,0.778574,0.944336,0.72973,0.588866,0.0970765,0.936179,0.68967,0.690239,0.459989,0.696466,0.0103442,0.999246,0.11212,0.511752,0.30602,0.423415,0.248818,0.82727,0.219546,0.491454,0.15786,0.554881,0.865113,0.256185,0.955877,0.38048,0.18372,0.798733,0.704324,0.798867,0.43651,0.44562,0.285968,0.259834,0.325478,0.385157,0.215159,0.513245,0.275562,0.0634977,0.360857,0.81777,0.344212,0.737875,0.726943,0.370994,0.456643,0.934278,0.824438,0.758707,0.629677,0.20394,0.415538,0.044374,0.941705,0.434337,0.445556,0.736447,0.739383,0.566753,0.798596,0.520032,0.256966,0.149713,0.599243,0.885982,0.101615,0.617009,0.142661,0.873061,0.486875,0.573886,0.508329,0.536224,0.208769,0.284928,0.438788,0.788097,0.284371,0.25405,0.952622,0.910044,0.239681,0.147807,0.404148,0.0202247,0.173452,0.311372,0.121398,0.835403,0.4504,0.390589,0.0266397,0.0140618,0.229345,0.582118,0.350132,0.835395,0.179167,0.384427,0.816305,0.530747,0.737959,0.408276,0.926457,0.536802,0.257402,0.229059,0.430783,0.949046,0.307999,0.521591,0.997207,0.715417,0.0422955,0.936049,0.800438,0.668406,0.306204,0.534703,0.794881,0.564167,0.561367,0.526288,0.611283,0.42151,0.668841,0.0416087,0.676649,0.403691,0.0844983,0.808071,0.916276,0.849782,0.732436,0.69331,0.0851777,0.00137067,0.552644,0.348007,0.324234,0.16569,0.0949761,0.515466,0.0791031,0.945795,0.679499,0.132613,0.111329,0.144164,0.0154033,0.469214,0.0184442,0.446105,0.680565,0.271861,0.689593,0.596437,0.12702,0.737134,0.834153,0.427673,0.266527,0.134092,0.725736,0.878456,0.763532,0.995976,0.323347,0.534365,0.933939,0.672901,0.907912,0.579723,0.682377,0.520758,0.092088,0.841767,0.314388,0.602351,0.972671,0.167819,0.508117,0.231529,0.962895,0.212968,0.606452,0.0173514,0.942189,0.878115,0.725218,0.319549,0.203701,0.759393,0.122541,0.758751,0.783669,0.442248,0.786319,0.101087,0.486702,0.00321186,0.198078,0.0424258,0.365963,0.502181,0.439337,0.819072,0.174146,0.182612,0.744943,0.00908893,0.406484,0.992856,0.0241784,0.155216,0.357482,0.476644,0.216799,0.742596,0.749447,0.83947,0.218623,0.172331,0.760565,0.597341,0.888181,0.0318587,0.837214,0.397648,0.34831,0.504613,0.924142,0.36365,0.93458,0.298747,0.444038,0.434119,0.205645,0.0342212,0.80949,0.946211,0.172762,0.234447,0.284657,0.235637,0.0753959,0.791219,0.606205,0.275584,0.516501,0.426702,0.149509,0.908536,0.780437,0.820993,0.915574,0.655273,0.00631505,0.758049,0.372126,0.666224,0.138304,0.394001,0.540442,0.203282,0.482887,0.905441,0.877239,0.504035,0.033825,0.249817,0.0708161,0.316635,0.352196,0.450651,0.79102,0.046541,0.485802,0.887583,0.39695,0.516572,0.767544,0.678321,0.0780469,0.612427,0.239355,0.51879,0.747684,0.0481322,0.612797,0.853359,0.3293,0.294069,0.119493,0.271356,0.771706,0.563077,0.360933,0.107777,0.824823,0.309428,0.769358,0.707463,0.544945,0.736447,0.605837,0.340814,0.0929087,0.764992,0.336976,0.94607,0.77155,0.813933,0.406583,0.314843,0.696723,0.430206,0.923017,0.228148,0.326532,0.202278,0.211002,0.634926,0.750452,0.504026,0.963886,0.349597,0.0805563,0.230966,0.259035,0.816312,0.488091,0.100705,0.566629,0.793887,0.340488,0.980356,0.275376,0.732787,0.0412834,0.15463,0.267541,0.395593,0.253797,0.074535,0.276676,0.486792,0.176758,0.304797,0.064005,0.848634,0.0394859,0.156897,0.575595,0.670005,0.729091,0.975608,0.291933,0.00923681,0.470836,0.214334,0.808337,0.778605,0.719753,0.088104,0.96828,0.0471984,0.822918,0.935217,0.154691,0.283556,0.781118,0.443687,0.0518547,0.130221,0.367223,0.0208666,0.348215,0.958564,0.718649,0.654675,0.205084,0.483288,0.15506,0.839355,0.224636,0.287295,0.577477,0.91467,0.57354,0.453612,0.260063,0.663854,0.863592,0.201036,0.921677,0.540825,0.837447,0.274291,0.348051,0.409022,0.470561,0.0807287,0.0652444,0.551862,0.137698,0.545331,0.602593,0.108195,0.16148,0.590878,0.98604,0.0460162,0.126183,0.657376,0.570118,0.793236,0.912197,0.185811,0.769755,0.609663,0.697119,0.412964,0.935173,0.159278,0.96827,0.399776,0.223838,0.44119,0.893881,0.141697,0.108009,0.48017,0.546927,0.881478,0.290842,0.815797,0.390749,0.506285,0.406696,0.63028,0.619385,0.525515,0.125787,0.747631,0.772566,0.210179,0.180436,0.900856,0.487189,0.0133844,0.743557,0.76191,0.935602,0.78205,0.506877,0.208528,0.187116,0.657358,0.547849,0.0816309,0.0798522,0.912004,0.104947,0.480734,0.0152821,0.0789552,0.524096,0.548073,0.292738,0.731619,0.0693408,0.300993,0.0980968,0.898654,0.454912,0.614048,0.129616,0.952232,0.859131,0.278778,0.354644,0.38148,0.612889,0.40554,0.237353,0.0854891,0.826533,0.932462,0.105762,0.309716,0.966882,0.947434,0.0886204,0.653653,0.386082,|0.565454,0.447673,0.0989837,0.951167,0.780322,0.249383,0.591607,0.893537,0.704805,0.661008,0.363563,0.601057,0.679203,0.344587,0.895771,0.811031,0.264784,0.0806406,0.838869,0.0730518,0.227062,0.813438,0.687308,0.182552,0.668077,0.187056,0.378786,0.382809,0.919679,0.733966,0.126855,0.340441,0.660762,0.454107,0.352283,0.251135,0.441171,0.56113,0.140715,0.767327,0.246791,0.473281,0.960441,0.628918,0.923107,0.25402,0.192801,0.71562,0.929376,0.448417,0.729183,0.254549,0.967867,0.844177,0.622355,0.431008,0.104075,0.18063,0.210514,0.807421,0.404254,0.110534,0.857137,0.329132,0.201911,0.959767,0.501619,0.751222,0.731104,0.420186,0.410956,0.714463,0.44246,0.0430301,0.0701484,0.59051,0.220486,0.444854,0.509643,0.677813,0.206858,0.338238,0.665883,0.704205,0.124917,0.714755,0.0820349,0.209839,0.203844,0.146362,0.711962,0.916225,0.0469477,0.249652,0.360022,0.864898,0.171998,0.0668073,0.173216,0.645012,0.976553,0.484638,0.396506,0.0678033,0.64669,0.0820466,0.845391,0.804156,0.939444,0.653529,0.0668145,0.339732,0.55063,0.308777,0.160472,0.969495,0.360403,0.211553,0.256448,0.829812,0.151574,0.0872505,0.971455,0.716793,0.99293,0.492614,0.107685,0.479318,0.969009,0.950412,0.827499,0.0904731,0.846453,0.289751,0.645869,0.422644,0.883514,0.125491,0.754422,0.399367,0.664585,0.836667,0.111309,0.123325,0.450725,0.317541,0.590886,0.0342407,0.255932,0.942893,0.880321,0.584468,0.21178,0.175758,0.704277,0.902713,0.417031,0.884792,0.756638,0.987724,0.260119,0.410039,0.188153,0.478407,0.464653,0.734729,0.182638,0.196275,0.427823,0.113207,0.619824,0.392379,0.406817,0.9472,0.43742,0.343758,0.745874,0.8561,0.322421,0.660402,0.843422,0.908673,0.986529,0.975176,0.356495,0.914509,0.398757,0.981889,0.314096,0.808965,0.782891,0.374196,0.349803,0.287758,0.739352,0.941645,0.768123,0.963525,0.1523,0.968138,0.193988,0.804698,0.874003,0.746469,0.752729,0.349228,0.591798,0.533272,0.55423,0.313012,0.490999,0.573943,0.561992,0.094573,0.692698,0.827586,0.112087,0.536321,0.958943,0.0334699,0.0300114,0.82387,0.58141,0.68733,0.816703,0.0696805,0.329478,0.31807,0.15481,0.392811,0.838795,0.940656,0.859779,0.788941,0.0359101,0.25001,0.467041,0.26549,0.865555,0.692339,0.81514,0.0712173,0.113425,0.444646,0.377316,0.328722,0.466125,0.470408,0.352476,0.0360403,0.281529,0.44876,0.877585,0.0420061,0.24769,0.532264,0.527867,0.610137,0.396345,0.218951,0.552211,0.151895,0.772271,0.731515,0.521451,0.0153422,0.0775085,0.550709,0.845335,0.29447,0.89746,0.487767,0.593917,0.723997,0.169045,0.102782,0.916667,0.130713,0.757465,0.554096,0.051304,0.176724,0.422452,0.761731,0.253095,0.984835,0.792642,0.98586,0.382418,0.178394,0.00696266,0.0463222,0.837502,0.22279,0.360197,0.129991,0.0820039,0.330674,0.0968308,0.0553774,0.240233,0.343017,0.544931,0.948028,0.808086,0.124766,0.576065,0.324646,0.81657,0.402295,0.0789593,0.71968,0.571323,0.916149,0.335768,0.837097,0.254066,0.138885,0.192052,0.0430784,0.301227,0.0292556,0.890091,0.263471,0.103134,0.918999,0.960922,0.111121,0.527261,0.671669,0.29414,0.601635,0.584435,0.246204,0.100403,0.770805,0.603555,0.298874,0.781173,0.0227336,0.143427,0.380225,0.0592807,0.464574,0.162528,0.65254,0.988368,0.0250151,0.697278,0.911855,0.661146,0.63414,0.0309248,0.244595,0.566816,0.788014,0.14986,0.383081,0.514993,0.265729,0.0497708,0.584221,0.223737,0.559782,0.551638,0.584375,0.216704,0.995024,0.658744,0.674947,0.171535,0.644889,0.360929,0.497562,0.779417,0.394243,0.663148,0.640042,0.773209,0.943621,0.39968,0.818539,0.677368,0.164092,0.154427,0.142231,0.438733,0.807335,0.308446,0.608557,0.00226021,0.708552,0.729359,0.624004,0.144906,0.971689,0.425198,0.0614225,0.991179,0.942742,0.789669,0.894642,0.444295,0.996909,0.0558888,0.745402,0.585617,0.99034,0.44867,0.339909,0.937507,0.611604,0.118352,0.488839,0.301874,0.84293,0.741262,0.494516,0.6202,0.934406,0.684683,0.853249,0.530407,0.414628,0.218801,0.195653,0.837263,0.822964,0.593361,0.142546,0.69778,0.927098,0.868026,0.0507929,0.675991,0.336367,0.565334,0.314348,0.724376,0.866746,0.854472,0.447235,0.624176,0.502161,0.881249,0.337456,0.56184,0.23891,0.245529,0.668798,0.499917,0.587448,0.541712,0.0289071,0.988721,0.112745,0.605728,0.202743,0.143822,0.628232,0.487822,0.522113,0.492049,0.758536,0.376995,0.709552,0.356406,0.761001,0.435635,0.848694,0.571612,0.925957,0.013381,0.400183,0.201627,0.0648497,0.453644,0.405086,0.958367,0.388282,0.0134448,0.395436,0.253673,0.140702,0.637915,0.198842,0.774046,0.899818,0.578728,0.194491,0.803478,0.805991,0.40209,0.116481,0.010478,0.489329,0.53538,0.558605,0.977122,0.00785333,0.726764,0.885748,0.957247,0.987439,0.167748,0.904914,0.470285,0.795705,0.226577,0.569244,0.114104,0.159001,0.829021,0.145991,0.840221,0.909764,0.0910995,0.338795,0.38882,0.555832,0.367974,0.207279,0.509592,0.209589,0.70773,0.728464,0.161191,0.389806,0.540494,0.139813,0.238657,0.243587,0.282354,0.370539,0.0750483,0.523979,0.0389305,0.421773,0.37019,0.0364001,0.38687,0.754237,0.114199,0.609667,0.0281961,0.739777,0.571211,0.0393506,0.258082,0.770957,0.362294,0.14959,0.1552,0.939509,0.103438,0.040396,0.595083,0.735124,0.884662,0.0474761,0.934343,0.907495,0.834462,0.257506,0.0400376,0.561592,0.462378,0.197509,0.419282,0.116549,0.0532031,0.238867,0.244155,0.400689,0.214825,0.277677,0.530011,0.727779,0.0128362,0.448914,0.685245,0.467239,0.345473,0.488745,0.734019,0.420543,0.0377977,0.923622,0.676123,0.414368,0.326889,0.750199,0.246178,0.00226945,0.93096,0.13462,0.896659,0.822715,0.929874,0.1592,0.737181,0.616139,0.611671,0.474834,0.0404749,0.467481,0.681291,0.70912,0.886508,0.247721,0.472549,0.284584,0.206337,0.944752,0.809916,0.2221,0.998578,0.48421,0.0572053,0.665437,0.911745,0.509165,0.568716,0.939546,0.121444,0.815959,0.468681,0.869769,0.0652009,0.604981,0.826809,0.709209,0.175071,0.189427,0.666255,0.772795,0.217818,0.591069,0.248113,0.284857,0.776409,0.613746,0.263165,0.540897,0.200626,0.304273,0.774983,0.393677,0.792759,0.793568,0.63813,0.803863,0.577968,0.657909,0.493022,0.483383,0.0483353,0.0263715,0.112512,0.398386,0.661446,0.815586,0.609957,0.692582,0.751572,0.672065,0.471268,0.930355,0.22829,0.517005,0.53243,0.725077,0.184208,0.438348,0.00953835,0.0463505,0.292572,0.206361,0.920481,0.372652,0.374673,0.313627,0.324818,0.96684,0.0636276,0.0255042,0.693422,0.0159122,0.12493,0.452331,0.91479,0.0503799,0.512077,0.40303,0.359774,0.86526,0.446187,0.956787,0.866094,0.860634,0.42423,0.162051,0.324196,0.140149,0.337098,0.701392,0.231584,0.341122,0.1438,0.701681,0.82654,0.538991,0.258112,0.895722,0.863822,0.740994,0.726513,0.928417,0.632588,0.993561,0.505958,0.985984,0.776432,0.102325,0.280917,0.136403,0.277986,0.748296,0.0369763,0.803476,0.225357,0.837921,0.658036,0.994054,0.999096,0.612836,0.560259,0.124656,0.00831699,0.639507,0.157457,0.667666,0.916608,0.25859,0.290745,0.940189,0.339749,0.403594,0.243777,0.636411,0.962303,0.689402,0.564949,0.239519,0.514381,0.115817,0.958768,0.633174,0.0554586,0.808536,0.616472,0.56095,0.955392,0.727713,0.57051,0.119759,0.170242,0.184389,0.0983148,0.569526,0.406925,0.435105,0.218367,0.839854,0.675192,0.713458,0.756342,0.0094943,0.217264,0.730351,0.260652,0.504068,0.40974,0.515122,0.782852,0.0328867,0.0767186,0.745568,0.561049,0.109851,0.209924,0.0490769,0.321899,0.767602,0.614235,0.0669677,0.718996,0.225598,0.676909,0.446602,0.0815992,0.0454819,0.079432,0.807084,0.696565,0.526476,0.696382,0.404387,0.136953,0.0210783,0.848095,0.183617,0.00688285,0.207605,0.867212,0.926373,0.0923781,0.435372,0.646882,0.566272,0.312184,0.821396,0.91116,0.572987,0.729558,0.697057,0.379783,0.909002,0.119497,0.465398,0.66684,0.401522,0.586417,0.902418,0.619181,0.430146,0.557853,0.344981,0.406531,0.756244,0.478344,0.136582,0.798406,0.339363,0.803869,0.33635,0.823281,0.394902,0.16872,0.503148,0.287456,0.912769,0.519028,0.649999,0.811003,0.786935,0.515373,0.851343,0.310503,0.218532,0.19935,0.283674,0.218912,0.447192,0.726218,0.382402,0.882047,0.587442,0.403567,0.0108762,0.427567,0.342568,0.519764,0.265638,0.00979298,0.0959768,0.493536,0.415349,0.991064,0.066748,0.216975,0.115146,0.0854347,0.143622,0.484043,0.512642,0.0455599,0.43924,0.895713,0.61444,0.524131,0.945689,0.688316,0.815881,0.274484,0.824921,0.506589,0.223871,0.77488,0.213669,0.618616,0.391734,0.540255,0.836874,0.0887005,0.0563805,0.654826,0.207254,0.490463,0.770912,0.881346,0.886742,0.234469,0.90472,0.301634,0.298594,0.681107,0.137718,0.150774,0.527777,0.540167,0.781694,0.927934,0.281101,0.673763,0.877679,0.355063,0.974838,0.924069,0.537761,0.0310384,0.932237,0.933988,0.317857,0.650112,0.0864038,0.979715,0.48405,0.395092,0.861145,0.395068,0.2533,0.41364,0.703429,0.101246,0.451924,0.299686,0.891855,0.658294,0.527501,0.171286,0.427093,0.3703,0.606566,0.0879164,0.16736,0.67226,0.576932,0.989767,0.542321,0.876692,0.425386,0.942074,0.729432,0.302982,0.91851,0.670837,0.61223,0.609515,0.248024,0.213307,0.244072,0.341426,0.477938,0.828786,0.555294,0.504722,0.309778,0.239776,0.800519,0.823936,0.966303,0.695815,0.650777,0.197836,0.771222,0.748097,0.280958,0.334584,0.496155,0.427839,0.304396,0.986532,0.966918,0.270592,0.797811,0.767651,0.957162,0.609271,0.565374,|0.588182,0.863324,0.700392,0.777034,0.946526,0.570559,0.303116,0.566742,0.0557459,0.878921,0.373248,0.0665943,0.29876,0.000314116,0.829893,0.381037,0.230442,0.814518,0.185395,0.159026,0.569519,0.337001,0.910242,0.861711,0.181524,0.231799,0.681822,0.21632,0.538306,0.793201,0.525551,0.962967,0.734086,0.638558,0.727915,0.844003,0.909556,0.734791,0.656698,0.928824,0.3465,0.611858,0.957658,0.279452,0.592632,0.13383,0.084393,0.280962,0.310648,0.413206,0.489086,0.89792,0.802588,0.495904,0.309953,0.663518,0.42714,0.05261,0.111148,0.627646,0.569602,0.130989,0.742675,0.760918,0.791072,0.490805,0.589011,0.955264,0.882322,0.868636,0.87615,0.495984,0.740359,0.246737,0.792048,0.619939,0.693903,0.434611,0.389088,0.592068,0.207581,0.494344,0.350206,0.821339,0.336796,0.1531,0.840231,0.0724814,0.8428,0.0464974,0.731153,0.505623,0.0716634,0.396428,0.486099,0.711315,0.999936,0.391879,0.306631,0.365193,0.741017,0.499286,0.921794,0.0838758,0.428682,0.933796,0.915097,0.0586119,0.550484,0.734223,0.207884,0.857116,0.958933,0.486589,0.826996,0.386377,0.994356,0.511565,0.0278776,0.918668,0.240735,0.696388,0.524779,0.657221,0.224216,0.683846,0.92161,0.520386,0.348363,0.151515,0.913802,0.255571,0.30571,0.989477,0.512174,0.12805,0.011061,0.435503,0.616738,0.472315,0.140235,0.040868,0.283939,0.0292357,0.488381,0.479993,0.372739,0.562986,0.369044,0.251921,0.967659,0.327024,0.506809,0.913325,0.0667377,0.0856444,0.0686296,0.377647,0.268536,0.401412,0.800682,0.546904,0.387085,0.521547,0.349522,0.919529,0.158768,0.904249,0.30653,0.817606,0.422641,0.707754,0.423597,0.345582,0.761398,0.618408,0.754908,0.137999,0.618376,0.351331,0.919862,0.28721,0.378933,0.0360326,0.821941,0.419527,0.156967,0.306711,0.65471,0.153489,0.0146903,0.704979,0.148368,0.94901,0.308414,0.285975,0.243113,0.785592,0.50074,0.175757,0.763649,0.420257,0.585579,0.852987,0.83623,0.181066,0.688776,0.320667,0.756047,0.856016,0.546996,0.810111,0.809421,0.423158,0.0417693,0.917098,0.271215,0.550007,0.706034,0.359116,0.972531,0.237545,0.336075,0.911275,0.590992,0.154084,0.903719,0.694156,0.238872,0.260454,0.725072,0.913685,0.934659,0.205139,0.510174,0.340869,0.630666,0.634749,0.827487,0.972649,0.894352,0.853681,0.623771,0.734033,0.923788,0.68034,0.7629,0.564547,0.640909,0.548785,0.616988,0.635498,0.55828,0.175733,0.723803,0.666145,0.0907445,0.574103,0.026028,0.957791,0.889078,0.702876,0.694953,0.833185,0.958824,0.405824,0.407516,0.0374213,0.22129,0.141722,0.675588,0.636602,0.0315543,0.248744,0.917958,0.59316,0.971443,0.14305,0.247878,0.898291,0.486002,0.17538,0.275017,0.592139,0.0273905,0.933611,0.00451577,0.996873,0.993201,0.41655,0.563623,0.373362,0.852968,0.576477,0.200368,0.0429774,0.105692,0.568823,0.0287707,0.257678,0.703282,0.0284647,0.5281,0.212033,0.735802,0.418163,0.107561,0.421406,0.0314443,0.94332,0.846238,0.140795,0.292212,0.83596,0.923326,0.860725,0.988024,0.635874,0.18677,0.644473,0.481561,0.812429,0.322174,0.727174,0.0632148,0.118906,0.868411,0.0646077,0.425745,0.0684186,0.722285,0.837717,0.805975,0.946577,0.803823,0.545999,0.49401,0.31115,0.0587047,0.398214,0.172557,0.0687581,0.385393,0.606515,0.338233,0.044389,0.745251,0.414268,0.467295,0.587278,0.817422,0.352183,0.589594,0.492676,0.833019,0.702882,0.0618105,0.0680441,0.192777,0.234898,0.947269,0.111162,0.544241,0.924882,0.734433,0.153801,0.157785,0.21657,0.345901,0.290608,0.929551,0.862323,0.788029,0.0606862,0.370839,0.422581,0.241757,0.17178,0.885147,0.434482,0.947925,0.336098,0.311608,0.744956,0.502156,0.874432,0.815772,0.906117,0.780434,0.836161,0.634531,0.184511,0.549569,0.0537128,0.13844,0.0897288,0.923461,0.567467,0.172702,0.873819,0.651807,0.86847,0.040819,0.110149,0.934192,0.796409,0.14855,0.523795,0.272472,0.138524,0.382055,0.52813,0.891433,0.505847,0.301161,0.73042,0.610935,0.386025,0.994462,0.61619,0.0447343,0.773561,0.746706,0.289893,0.545318,0.698171,0.799655,0.521509,0.0163227,0.192135,0.427037,0.575914,0.923288,0.864476,0.415132,0.524707,0.305046,0.602267,0.943096,0.90887,0.627409,0.970865,0.405744,0.979923,0.45573,0.707906,0.406556,0.121333,0.132827,0.992588,0.151273,0.484684,0.397277,0.729358,0.598629,0.692852,0.851342,0.236587,0.248917,0.668613,0.307468,0.663582,0.200919,0.346886,0.669511,0.739641,0.0448,0.92948,0.320196,0.997562,0.876216,0.688293,0.440879,0.0319542,0.207386,0.323435,0.797012,0.250699,0.952365,0.401256,0.518248,0.461228,0.105531,0.74623,0.97918,0.121882,0.565618,0.419992,0.321319,0.667577,0.689129,0.671937,0.315489,0.19919,0.0623797,0.996005,0.060065,0.0807549,0.168739,0.204411,0.988327,0.83588,0.699373,0.542558,0.466021,0.934971,0.796194,0.936334,0.472315,0.294734,0.631366,0.689574,0.260796,0.386461,0.313537,0.0215186,0.410766,0.916775,0.310426,0.823998,0.568602,0.657414,0.540309,0.70316,0.226733,0.814453,0.219788,0.836285,0.695335,0.549,0.231311,0.234397,0.562433,0.0609589,0.564157,0.39174,0.00908113,0.344322,0.4562,0.608535,0.0782284,0.740765,0.492895,0.167386,0.162545,0.816063,0.992842,0.984316,0.233601,0.323021,0.540701,0.698848,0.356869,0.413521,0.931834,0.276181,0.354331,0.92452,0.875579,0.400921,0.490039,0.446289,0.563941,0.832696,0.999513,0.930754,0.234118,0.34998,0.214226,0.61442,0.679118,0.752589,0.273065,0.356705,0.697399,0.585422,0.764542,0.593634,0.387804,0.771784,0.35312,0.36393,0.304517,0.0690094,0.434685,0.780706,0.302468,0.735879,0.299098,0.820824,0.819015,0.393466,0.986209,0.962878,0.180647,0.691189,0.115056,0.922622,0.771799,0.257232,0.269967,0.83919,0.0835615,0.32852,0.906635,0.498265,0.989499,0.914563,0.221749,0.712855,0.67971,0.748902,0.29627,0.571282,0.789297,0.985613,0.245502,0.0193344,0.166005,0.572961,0.871768,0.335607,0.558257,0.220167,0.675871,0.52411,0.711159,0.204153,0.596921,0.31575,0.465498,0.627274,0.939317,0.500339,0.961673,0.433506,0.257537,0.319792,0.487867,0.875793,0.954999,0.923491,0.0712829,0.787679,0.132044,0.125691,0.975119,0.048624,0.575079,0.227907,0.134295,0.889784,0.128782,0.24701,0.993368,0.808768,0.850237,0.205117,0.208153,0.403764,0.147047,0.0611624,0.41091,0.636408,0.300756,0.480284,0.504995,0.403314,0.497558,0.166352,0.804691,0.734793,0.0405695,0.853439,0.665711,0.20354,0.263837,0.500358,0.782259,0.85111,0.186027,0.415081,0.861509,0.901311,0.311043,0.388062,0.283437,0.483983,0.185247,0.687291,0.593906,0.528177,0.515779,0.0713189,0.32767,0.88381,0.234733,0.282559,0.87281,0.261133,0.903472,0.26095,0.939083,0.572843,0.513562,0.306002,0.642262,0.109042,0.93076,0.342873,0.673136,0.614991,0.470943,0.285364,0.660703,0.468006,0.239048,0.757745,0.529478,0.77851,0.573071,0.970363,0.0681998,0.548786,0.0642,0.113864,0.990722,0.679288,0.687459,0.038985,0.400964,0.407863,0.711917,0.46895,0.94219,0.313926,0.016315,0.688926,0.133137,0.289039,0.114413,0.29377,0.125647,0.644303,0.900883,0.399681,0.0359831,0.414084,0.812783,0.1196,0.23312,0.840526,0.531259,0.720364,0.550004,0.76254,0.375093,0.938679,0.66901,0.0642416,0.53367,0.661757,0.443216,0.465927,0.356429,0.833523,0.636655,0.887558,0.723951,0.937266,0.561401,0.016069,0.380022,0.975828,0.998081,0.242485,0.858117,0.103254,0.411797,0.0642301,0.952842,0.87205,0.993583,0.977775,0.0201997,0.619999,0.161523,0.0853738,0.145746,0.761003,0.167886,0.670563,0.825319,0.575826,0.409013,0.128816,0.499625,0.942098,0.88798,0.000469923,0.479513,0.369849,0.614873,0.291662,0.17899,0.565568,0.86579,0.281455,0.897082,0.357155,0.667308,0.635272,0.0913031,0.224711,0.697219,0.233947,0.467227,0.393765,0.909489,0.339239,0.514002,0.8057,0.783766,0.755604,0.958115,0.810987,0.464109,0.445418,0.152042,0.592876,0.571533,0.68601,0.898383,0.959076,0.469965,0.653769,0.436822,0.469478,0.532019,0.885434,0.35001,0.68763,0.446691,0.0268789,0.940817,0.952843,0.0798211,0.55329,0.616971,0.134523,0.393402,0.224408,0.571791,0.541042,0.637177,0.113912,0.250684,0.640557,0.343338,0.0482081,0.99088,0.448723,0.463071,0.348316,0.317823,0.0997226,0.735111,0.799145,0.737873,0.63301,0.579379,0.994635,0.145726,0.978522,0.310524,0.0328534,0.554181,0.455486,0.430638,0.00812852,0.627333,0.608084,0.399924,0.464336,0.208598,0.487281,0.393292,0.267203,0.91404,0.207111,0.38372,0.991583,0.531704,0.0956366,0.773123,0.622793,0.132047,0.7861,0.596886,0.794091,0.456618,0.789412,0.962249,0.0155717,0.717968,0.883106,0.126721,0.602033,0.909974,0.523408,0.23766,0.607323,0.783493,0.27979,0.603202,0.347922,0.938401,0.888915,0.830572,0.874514,0.689135,0.755509,0.0958147,0.403009,0.550225,0.641284,0.0784783,0.83542,0.983746,0.82002,0.749347,0.468957,0.430525,0.0826113,0.887903,0.160006,0.138232,0.405281,0.661864,0.920738,0.144928,0.326043,0.548729,0.583175,0.202674,0.352462,0.46217,0.677737,0.638478,0.0257421,0.8413,0.592245,0.487745,0.796902,0.254841,0.0676383,0.445197,0.241441,0.585983,0.645812,0.292889,0.52158,0.247954,0.395687,0.0142961,0.31678,0.489198,0.427934,0.632423,0.0335782,0.159368,0.697196,0.995647,0.505995,0.2415,0.317702,0.650631,0.631182,0.354279,0.304762,0.31714,0.686849,0.953146,0.853096,0.989023,0.374223,0.829161,0.3582,0.0464897,0.0946506,0.477461,0.538917,0.828296,0.555364,0.891933,0.870609,0.407739,0.692315,0.443323,0.686576,|0.340117,0.652019,0.0173593,0.927277,0.0999818,0.856587,0.238265,0.72442,0.639084,0.990647,0.825079,0.792032,0.0856019,0.822899,0.893806,0.343681,0.392472,0.360079,0.167687,0.47239,0.337661,0.339399,0.978251,0.609846,0.27224,0.982038,0.611366,0.907342,0.739955,0.322115,0.147289,0.396976,0.0335404,0.422406,0.393815,0.808876,0.504225,0.55489,0.851287,0.308643,0.0163777,0.344778,0.0455084,0.92341,0.118029,0.535443,0.280995,0.424007,0.418858,0.964743,0.938811,0.772101,0.780647,0.874243,0.50124,0.304452,0.855461,0.196903,0.768577,0.651882,0.235525,0.147275,0.766466,0.24681,0.646342,0.619288,0.531943,0.757489,0.896904,0.117059,0.109984,0.974573,0.382389,0.934754,0.658462,0.936348,0.986026,0.689096,0.135213,0.88503,0.892947,0.58151,0.556101,0.503436,0.81506,0.793491,0.389208,0.814213,0.867164,0.621807,0.0156922,0.892938,0.163994,0.94061,0.0211441,0.113476,0.371502,0.571987,0.635403,0.488208,0.54489,0.620503,0.785885,0.215112,0.743693,0.267661,0.565436,0.272662,0.73187,0.698905,0.662792,0.643351,0.926769,0.0447941,0.74665,0.80579,0.522834,0.480782,0.802464,0.935136,0.229383,0.0829617,0.165093,0.0763861,0.488625,0.795942,0.486125,0.0954612,0.604465,0.827593,0.42652,0.210492,0.948139,0.320509,0.479248,0.632748,0.946084,0.859611,0.973798,0.550337,0.685524,0.900192,0.572674,0.11907,0.750099,0.863422,0.334515,0.142405,0.399339,0.987915,0.655665,0.441831,0.405605,0.565825,0.366602,0.983104,0.332039,0.470458,0.182203,0.190952,0.381718,0.0951738,0.117953,0.728512,0.711318,0.92368,0.825898,0.00519049,0.444371,0.784079,0.746458,0.535521,0.271437,0.934627,0.415646,0.215879,0.39525,0.764036,0.622608,0.0232747,0.0179705,0.0560536,0.63046,0.175888,0.36425,0.958837,0.613954,0.044814,0.51206,0.40297,0.179722,0.633107,0.281513,0.288789,0.611961,0.907373,0.0235263,0.461002,0.220684,0.883836,0.745143,0.0719862,0.845958,0.107005,0.886411,0.0404459,0.00808686,0.517944,0.964336,0.733442,0.656575,0.506079,0.631761,0.698138,0.963927,0.265092,0.0241576,0.793004,0.467928,0.401604,0.474254,0.501602,0.714219,0.90069,0.880364,0.0222244,0.40059,0.42642,0.445866,0.253968,0.806537,0.720955,0.25757,0.71851,0.193579,0.747758,0.165338,0.0511873,0.717491,0.522223,0.548753,0.478545,0.108113,0.000436306,0.745004,0.877795,0.29379,0.142205,0.559711,0.538847,0.558069,0.0339748,0.0467476,0.893041,0.996711,0.798477,0.710415,0.103343,0.56108,0.987592,0.221429,0.284563,0.82578,0.419816,0.557051,0.0977392,0.0935141,0.672126,0.0983557,0.72547,0.356417,0.120528,0.478135,0.688853,0.631092,0.448623,0.896964,0.481758,0.766903,0.730065,0.181895,0.362788,0.943812,0.193195,0.97319,0.134044,0.121304,0.0844451,0.424075,0.00109935,0.245094,0.152204,0.0746171,0.355265,0.337633,0.586727,0.980772,0.178839,0.599392,0.507358,0.564231,0.763418,0.464681,0.854285,0.270423,0.416969,0.255155,0.174989,0.695951,0.412338,0.685668,0.885475,0.694308,0.58545,0.0297737,0.977215,0.245199,0.284564,0.590279,0.269283,0.980007,0.649249,0.307959,0.612536,0.79608,0.971605,0.750406,0.269176,0.36692,0.931152,0.543988,0.130405,0.940901,0.577449,0.0444049,0.60242,0.454091,0.224984,0.788185,0.637524,0.141732,0.674709,0.462812,0.211531,0.550893,0.136548,0.888363,0.894318,0.450966,0.376959,0.440113,0.964173,0.284616,0.0164922,0.685023,0.331784,0.636016,0.284013,0.545127,0.20039,0.611819,0.0341339,0.759844,0.548586,0.611617,0.633325,0.133257,0.996334,0.0353892,0.808107,0.96298,0.569927,0.00618345,0.215678,0.47554,0.662558,0.917472,0.709193,0.428156,0.72644,0.793827,0.208755,0.43346,0.969822,0.255033,0.0354148,0.613548,0.584431,0.236575,0.0276096,0.680802,0.862447,0.345784,0.123022,0.296378,0.431984,0.756821,0.412481,0.0950568,0.259413,0.0423719,0.0403756,0.333788,0.0125716,0.0735385,0.0299922,0.960664,0.397587,0.495797,0.42425,0.188138,0.398068,0.608551,0.702453,0.456695,0.0831041,0.0578719,0.205574,0.0771002,0.600267,0.0670972,0.754172,0.759703,0.50321,0.558081,0.789269,0.999436,0.398232,0.931616,0.432535,0.0741482,0.241104,0.683224,0.236446,0.987968,0.0687591,0.690141,0.947691,0.939205,0.629785,0.00224012,0.045382,0.91744,0.455769,0.492359,0.592909,0.444422,0.0339469,0.597282,0.561963,0.268033,0.488405,0.80197,0.192043,0.0283259,0.672017,0.520116,0.744601,0.625584,0.14812,0.715385,0.855261,0.588347,0.539752,0.0446822,0.901306,0.580981,0.512286,0.384517,0.00751436,0.562292,0.770554,0.866892,0.888922,0.161974,0.417768,0.0298142,0.438078,0.123741,0.220237,0.181104,0.767289,0.331019,0.854962,0.522442,0.808476,0.314688,0.74042,0.768295,0.614929,0.158997,0.146285,0.667503,0.247192,0.13067,0.237991,0.517545,0.151468,0.269297,0.275674,0.673769,0.749587,0.494585,0.101852,0.338197,0.709818,0.917736,0.114921,0.921238,0.37796,0.938312,0.921993,0.361275,0.616932,0.838593,0.950427,0.325727,0.433955,0.343933,0.536301,0.752274,0.855985,0.150141,0.197847,0.0584347,0.323735,0.120204,0.789061,0.0185406,0.694292,0.333552,0.793196,0.185671,0.962903,0.944669,0.642069,0.750702,0.698358,0.100991,0.121353,0.661198,0.550118,0.896991,0.106613,0.19239,0.832224,0.0316698,0.850537,0.0280292,0.420833,0.0763371,0.185875,0.791592,0.952466,0.82359,0.730286,0.0452306,0.771899,0.193124,0.997284,0.113857,0.376376,0.692218,0.316895,0.645669,0.596149,0.741749,0.260166,0.767161,0.56632,0.726946,0.373341,0.7965,0.235352,0.000397801,0.871692,0.0290177,0.90884,0.109472,0.655982,0.888672,0.0684648,0.494438,0.212889,0.573837,0.819632,0.561185,0.937958,0.920901,0.480685,0.0239079,0.869535,0.348047,0.180995,0.955481,0.541628,0.91683,0.170475,0.0320528,0.0755171,0.735956,0.940189,0.192618,0.818186,0.971523,0.773986,0.300285,0.0527753,0.201265,0.345172,0.899453,0.0077709,0.312225,0.551841,0.533234,0.990433,0.725882,0.348533,0.583976,0.306642,0.188331,0.348892,0.64867,0.471176,0.186934,0.0537698,0.966165,0.783591,0.101472,0.866898,0.943609,0.0373277,0.670752,0.606083,0.0338047,0.221103,0.541165,0.800386,0.0343998,0.66422,0.399186,0.270564,0.324716,0.72369,0.67424,0.586972,0.0798692,0.292376,0.526694,0.416067,0.561393,0.197169,0.00836104,0.541265,0.360288,0.451744,0.5927,0.809694,0.364279,0.181132,0.925278,0.00906396,0.482513,0.59212,0.823922,0.547616,0.351249,0.129739,0.668428,0.0687392,0.990073,0.642591,0.357468,0.588183,0.337269,0.851725,0.291469,0.11674,0.0180022,0.574515,0.560452,0.971879,0.123589,0.131467,0.362327,0.61272,0.321228,0.0567855,0.125575,0.582187,0.065927,0.609761,0.00241822,0.609664,0.748333,0.733005,0.782747,0.554204,0.366589,0.3192,0.445779,0.82662,0.0867151,0.252517,0.788368,0.124054,0.334337,0.53678,0.516195,0.912951,0.802833,0.873938,0.926627,0.783538,0.553549,0.318934,0.106304,0.421168,0.537069,0.316485,0.826436,0.442922,0.297357,0.501231,0.216735,0.128374,0.187636,0.804681,0.0124472,0.682436,0.477407,0.513705,0.357271,0.277278,0.948647,0.328853,0.207987,0.976001,0.723488,0.654651,0.408408,0.238356,0.714627,0.968044,0.0348142,0.0340629,0.804842,0.63851,0.428547,0.0952109,0.912014,0.730928,0.0646059,0.113652,0.521709,0.378133,0.434245,0.772966,0.194157,0.562322,0.274839,0.443932,0.715616,0.271155,0.152385,0.76601,0.335084,0.290077,0.00174004,0.731339,0.217571,0.835597,0.928881,0.513891,0.839776,0.500827,0.430372,0.869892,0.438432,0.159663,0.125356,0.913967,0.137375,0.652445,0.367461,0.661971,0.806931,0.00600535,0.443454,0.227447,0.110197,0.618199,0.958342,0.78445,0.00700951,0.135731,0.437831,0.525064,0.509207,0.250392,0.0675421,0.982607,0.323633,0.351936,0.688028,0.622887,0.623078,0.745898,0.087947,0.658858,0.246687,0.145468,0.22179,0.891543,0.186514,0.794796,0.929576,0.400817,0.552383,0.671423,0.746891,0.361736,0.684373,0.668396,0.0230108,0.0831542,0.331454,0.960269,0.938257,0.830019,0.390176,0.511444,0.935843,0.950049,0.597456,0.52826,0.987964,0.893771,0.42242,0.479756,0.296836,0.325512,0.510902,0.764236,0.231639,0.00430423,0.312985,0.044888,0.381248,0.0526669,0.3769,0.850727,0.245391,0.887543,0.701054,0.304087,0.601136,0.8243,0.212972,0.422573,0.917714,0.868667,0.420101,0.228351,0.553796,0.750911,0.232703,0.329619,0.904776,0.200179,0.460533,0.016523,0.0698463,0.607946,0.871842,0.115592,0.823561,0.501647,0.978538,0.454852,0.364061,0.794346,0.609213,0.435565,0.338489,0.656138,0.777507,0.581616,0.611358,0.236403,0.723709,0.945331,0.961003,0.102701,0.101153,0.626098,0.956706,0.979625,0.545976,0.306395,0.0282443,0.908804,0.215314,0.641991,0.757301,0.906668,0.874157,0.850723,0.814799,0.418745,0.257419,0.229865,0.062528,0.587163,0.257189,0.495068,0.55978,0.474015,0.194072,0.585352,0.228768,0.934496,0.735008,0.128849,0.645101,0.487991,0.132245,0.842711,0.263647,0.0230458,0.118119,0.695883,0.500671,0.507166,0.640273,0.959515,0.362714,0.519328,0.11034,0.197408,0.648605,0.107482,0.579728,0.608711,0.650468,0.300354,0.778349,0.95017,0.898942,0.489334,0.674481,0.410783,0.648868,0.66467,0.487594,0.795878,0.591233,0.771306,0.231708,0.131364,0.517081,0.727761,0.553214,0.172083,0.771376,0.745238,0.155336,0.343456,0.359292,0.0771149,0.773721,0.110638,0.361313,0.68097,0.131104,0.663495,0.511302,0.705208,0.309943,0.194905,0.488067,0.759808,0.406339,0.786284,0.919075,0.768829,0.872469,0.129161,0.669205,0.93415,0.000176191,0.895739,0.80448,0.538369,0.999199,0.718229,0.488908,0.980868,0.581691,0.0510699,|0.763229,0.256506,0.695416,0.190176,0.220416,0.395929,0.75129,0.427368,0.0407547,0.421148,0.656666,0.330272,0.866853,0.770186,0.418453,0.665193,0.412643,0.496261,0.776382,0.170977,0.99117,0.29749,0.983528,0.511407,0.427255,0.0262213,0.170571,0.513552,0.30555,0.784864,0.959608,0.930774,0.181622,0.284592,0.259329,0.126838,0.349207,0.60488,0.55945,0.247921,0.247828,0.974951,0.640111,0.45452,0.485422,0.992549,0.735009,0.510825,0.698455,0.152384,0.802175,0.0259101,0.888216,0.26727,0.160693,0.0133215,0.667409,0.916287,0.273713,0.343433,0.375232,0.577378,0.519385,0.335156,0.675321,0.562367,0.353463,0.398599,0.467253,0.109104,0.0480016,0.546176,0.61977,0.471973,0.990694,0.214564,0.03676,0.538997,0.624883,0.712014,0.478482,0.834364,0.146631,0.0947923,0.235445,0.299475,0.400092,0.65454,0.388907,0.0720331,0.78723,0.171198,0.623761,0.502681,0.22535,0.408034,0.662295,0.987409,0.703525,0.0364906,0.109883,0.0672396,0.823501,0.420535,0.434263,0.93374,0.106749,0.964013,0.0344112,0.942643,0.443687,0.915784,0.601388,0.874054,0.258901,0.212409,0.958432,0.275386,0.635568,0.700668,0.0695856,0.469537,0.669652,0.889363,0.0518116,0.342519,0.901836,0.865008,0.782102,0.227013,0.387134,0.16247,0.908235,0.839874,0.0208228,0.373848,0.7569,0.338775,0.735532,0.223851,0.421887,0.869204,0.805169,0.196408,0.0437058,0.745851,0.497068,0.0778332,0.840556,0.601637,0.668648,0.900617,0.448955,0.748006,0.277525,0.496734,0.290696,0.945867,0.847535,0.138957,0.688926,0.725379,0.278124,0.114484,0.507775,0.944069,0.426674,0.751659,0.0966133,0.193609,0.0801833,0.775669,0.0882988,0.223478,0.640547,0.519478,0.302257,0.570404,0.72185,0.853116,0.784272,0.688043,0.100431,0.479549,0.0648911,0.829339,0.613661,0.396086,0.243756,0.0142842,0.0772015,0.206427,0.330122,0.501078,0.497723,0.886093,0.682205,0.671148,0.788234,0.59673,0.576131,0.46597,0.0671008,0.482994,0.414517,0.558323,0.514198,0.31335,0.604827,0.00144815,0.995744,0.296579,0.108962,0.732991,0.325621,0.857194,0.0713171,0.811576,0.992506,0.885645,0.176898,0.777772,0.489662,0.350677,0.133077,0.215898,0.108835,0.239005,0.971585,0.00159174,0.838466,0.621077,0.670761,0.596957,0.646392,0.214724,0.493412,0.14526,0.477033,0.592163,0.302383,0.38587,0.0241367,0.640434,0.0943447,0.72038,0.428632,0.205264,0.501027,0.766291,0.575066,0.924831,0.561165,0.467299,0.458882,0.754289,0.690601,0.300412,0.736113,0.39747,0.665714,0.195103,0.0223517,0.744642,0.757645,0.417377,0.893952,0.833266,0.758321,0.650987,0.242156,0.359254,0.274208,0.0472089,0.134429,0.494751,0.791337,0.950762,0.192937,0.309671,0.697422,0.797053,0.789525,0.0902761,0.425025,0.555625,0.168555,0.565567,0.557334,0.996669,0.518452,0.168716,0.0574197,0.66067,0.0152883,0.62239,0.299315,0.860995,0.931146,0.610275,0.245805,0.551488,0.537404,0.563122,0.347559,0.443549,0.746778,0.2028,0.887925,0.461171,0.39835,0.115588,0.320605,0.496038,0.447909,0.157455,0.267833,0.906681,0.680144,0.110356,0.425146,0.638099,0.453362,0.22835,0.504281,0.215152,0.065051,0.623124,0.862002,0.866469,0.520353,0.471381,0.955813,0.482106,0.235465,0.0330419,0.0809445,0.558923,0.209127,0.901186,0.0553858,0.791554,0.766663,0.103366,0.36748,0.831294,0.702507,0.173034,0.446957,0.31956,0.59134,0.0255655,0.805953,0.829972,0.761094,0.0718608,0.330524,0.058628,0.207495,0.234079,0.514539,0.630602,0.0908414,0.387721,0.0326354,0.923417,0.290747,0.672875,0.263669,0.23813,0.772051,0.659982,0.260273,0.0238071,0.135067,0.943404,0.215718,0.657336,0.983655,0.0997937,0.982328,0.413219,0.757539,0.271723,0.195896,0.810616,0.900561,0.997764,0.77565,0.0927293,0.0350307,0.470261,0.305532,0.614047,0.679171,0.930607,0.752948,0.812071,0.109573,0.871431,0.494926,0.859495,0.593831,0.50077,0.331231,0.511444,0.320904,0.685904,0.00306457,0.12102,0.733826,0.374202,0.544622,0.300665,0.331589,0.565532,0.910432,0.577244,0.387645,0.252378,0.873632,0.741334,0.530439,0.936882,0.218225,0.098865,0.462632,0.137898,0.650166,0.513161,0.313766,0.661323,0.883227,0.454805,0.509819,0.416716,0.145271,0.740991,0.676145,0.272229,0.559152,0.234077,0.55501,0.564069,0.690195,0.883488,0.3643,0.602167,0.191155,0.935382,0.983646,0.766936,0.355391,0.919728,0.901492,0.669743,0.68022,0.27715,0.434015,0.275305,0.631645,0.677392,0.309772,0.74107,0.0968,0.904511,0.234789,0.0448325,0.906805,0.0732962,0.442176,0.379209,0.426431,0.756225,0.0374046,0.35756,0.0497009,0.643567,0.551298,0.981789,0.482351,0.811398,0.411355,0.255835,0.52761,0.861834,0.15315,0.377943,0.200284,0.737052,0.263509,0.437238,0.319924,0.83175,0.370291,0.165812,0.00881964,0.272474,0.313155,0.0649036,0.0167248,0.776569,0.236199,0.0161458,0.939452,0.694657,0.839135,0.0796393,0.126825,0.676303,0.234127,0.736039,0.396417,0.0796698,0.146877,0.425205,0.903765,0.216448,0.156071,0.192328,0.0933504,0.144247,0.286526,0.819177,0.524427,0.258085,0.537835,0.96883,0.547919,0.00539327,0.57248,0.498853,0.804965,0.434345,0.262125,0.969084,0.117711,0.693106,0.194524,0.0117901,0.816556,0.941483,0.687377,0.89713,0.218175,0.0431311,0.438677,0.648174,0.0139537,0.782902,0.194655,0.507114,0.113878,0.755716,0.469662,0.628308,0.0304587,0.74199,0.373589,0.0477848,0.264517,0.133548,0.224066,0.180435,0.0481063,0.4168,0.46504,0.690532,0.251114,0.316841,0.249292,0.112079,0.332406,0.328343,0.736979,0.768329,0.664868,0.176715,0.329148,0.660493,0.726111,0.0575057,0.985901,0.000930548,0.373484,0.627367,0.0610384,0.399327,0.856838,0.649378,0.587093,0.738767,0.510945,0.653844,0.564961,0.406439,0.392057,0.175005,0.428281,0.956171,0.487341,0.697347,0.0721365,0.920704,0.400644,0.32683,0.920445,0.999269,0.587402,0.855921,0.993331,0.777401,0.6644,0.851269,0.804561,0.804947,0.768115,0.464308,0.395551,0.804918,0.135035,0.907374,0.241276,0.404668,0.44708,0.885523,0.604921,0.970047,0.384877,0.989678,0.218301,0.909539,0.231806,0.152449,0.705161,0.324169,0.876412,0.0175204,0.168857,0.0258812,0.988961,0.818296,0.733291,0.211625,0.377942,0.810321,0.0417134,0.186384,0.184498,0.196033,0.136465,0.313137,0.908759,0.385988,0.358602,0.306728,0.344579,0.61467,0.281252,0.547463,0.613226,0.900456,0.743545,0.780123,0.214421,0.00756997,0.703652,0.217392,0.656437,0.0640027,0.612526,0.68263,0.546801,0.457762,0.793837,0.814493,0.533022,0.66213,0.696586,0.133725,0.499401,0.635823,0.897703,0.555958,0.722451,0.680696,0.158651,0.785476,0.028307,0.637345,0.0678376,0.542615,0.0352491,0.753178,0.717107,0.582803,0.200043,0.168599,0.542987,0.310938,0.234686,0.737257,0.167858,0.755848,0.490709,0.105329,0.855294,0.25297,0.60209,0.673109,0.150151,0.846039,0.511961,0.0670748,0.621906,0.56554,0.154392,0.814236,0.564138,0.015726,0.764853,0.653024,0.159693,0.118097,0.825071,0.054212,0.838307,0.436624,0.401918,0.951558,0.501844,0.0976496,0.937033,0.824642,0.896312,0.936102,0.2166,0.935218,0.5487,0.152909,0.971359,0.476209,0.650584,0.412881,0.286441,0.538315,0.997181,0.0612088,0.672331,0.98793,0.432502,0.775785,0.44425,0.990925,0.304967,0.312275,0.652562,0.55839,0.0211512,0.455318,0.80493,0.605796,0.254187,0.774039,0.178797,0.920489,0.718205,0.0623859,0.852882,0.85213,0.364541,0.31062,0.363418,0.833424,0.777282,0.93544,0.35145,0.568213,0.232705,0.414565,0.476571,0.527371,0.278029,0.976966,0.682111,0.807844,0.528579,0.35696,0.590778,0.458574,0.304246,0.501116,0.895668,0.957406,0.690679,0.290928,0.734468,0.389624,0.307716,0.234254,0.384339,0.385341,0.793099,0.87104,0.684433,0.910626,0.804732,0.154907,0.703896,0.568169,0.44279,0.0846936,0.527164,0.410163,0.886671,0.322107,0.422763,0.54889,0.291193,0.351427,0.537024,0.869289,0.0564036,0.476475,0.997764,0.769544,0.0289867,0.0801436,0.165217,0.134176,0.0248886,0.675014,0.795901,0.167624,0.901194,0.0259078,0.267176,0.864903,0.975357,0.340091,0.545994,0.910509,0.924927,0.82798,0.781252,0.365086,0.0870029,0.178652,0.0756642,0.19384,0.17917,0.615255,0.474596,0.52884,0.358385,0.525432,0.574803,0.924989,0.530181,0.55666,0.116048,0.497834,0.00889742,0.150599,0.474494,0.296009,0.16981,0.380907,0.153058,0.680692,0.726389,0.766393,0.549242,0.563569,0.175977,0.888669,0.96004,0.524749,0.373178,0.687928,0.333884,0.0570623,0.658356,0.888156,0.950022,0.728188,0.501519,0.522481,0.123049,0.53538,0.526336,0.750056,0.0179922,0.633668,0.423084,0.654732,0.671252,0.481985,0.611136,0.588568,0.953341,0.831559,0.996608,0.822804,0.984378,0.0277655,0.678879,0.43553,0.108163,0.418159,0.933085,0.235575,0.248737,0.270315,0.847075,0.107182,0.758285,0.429763,0.052913,0.324352,0.302603,0.158275,0.520809,0.338049,0.578457,0.651051,0.10579,0.0768142,0.799887,0.383815,0.31305,0.171338,0.872817,0.651854,0.239894,0.729882,0.407578,0.463075,0.462523,0.793268,0.0346145,0.976801,0.562315,0.835981,0.487957,0.177435,0.411853,0.604935,0.444633,0.457462,0.296261,0.275779,0.158868,0.789257,0.568764,0.154154,0.809675,0.576386,0.719323,0.554548,0.750909,0.257051,0.663553,0.0924299,0.849697,0.438001,0.141177,0.580526,0.704676,0.647519,0.481469,0.805942,0.0454947,0.354903,0.787787,0.062579,0.77763,0.83758,0.480206,0.640032,0.927154,0.37529,0.723067,0.721219,0.89978,0.312733,0.254151,0.978447,0.101117,0.276952,0.325722,0.361395,0.488584,0.852579,0.755453,0.146725,0.784031,0.01522,0.0217033,0.0313651,|0.665099,0.952614,0.729555,0.487705,0.899992,0.41882,0.297414,0.741494,0.573664,0.981028,0.922193,0.399781,0.398107,0.130841,0.0252182,0.825345,0.250807,0.835388,0.355795,0.110445,0.876592,0.389178,0.363148,0.047077,0.354512,0.140431,0.445974,0.390844,0.798889,0.981783,0.0945693,0.87971,0.239253,0.43677,0.596917,0.110376,0.527387,0.592607,0.856647,0.165657,0.893126,0.523921,0.9608,0.657641,0.816633,0.257656,0.734289,0.726997,0.831956,0.931397,0.989239,0.838841,0.482506,0.649136,0.542887,0.979465,0.376206,0.258915,0.738231,0.426221,0.209754,0.621964,0.804251,0.116959,0.0998222,0.809995,0.491789,0.711293,0.702763,0.61711,0.861998,0.711881,0.805504,0.755075,0.977007,0.799441,0.230618,0.520708,0.428123,0.243274,0.13468,0.538869,0.667075,0.304383,0.653155,0.22824,0.788694,0.78886,0.403507,0.926555,0.318369,0.567874,0.952969,0.679343,0.101276,0.209363,0.568399,0.295242,0.580814,0.171089,0.174921,0.795699,0.158082,0.280642,0.810723,0.301479,0.845321,0.340375,0.742123,0.359876,0.97266,0.204513,0.259371,0.591671,0.505035,0.146606,0.529601,0.988019,0.227814,0.411469,0.634102,0.694925,0.771744,0.406979,0.691599,0.756314,0.66796,0.877998,0.477995,0.264026,0.528999,0.288795,0.414171,0.61587,0.342859,0.389226,0.0639644,0.060986,0.222128,0.132357,0.134194,0.0618072,0.427554,0.442096,0.097443,0.547203,0.258606,0.505731,0.622416,0.583799,0.177218,0.127751,0.606122,0.436473,0.110143,0.719151,0.154817,0.541902,0.264201,0.806037,0.986217,0.644748,0.435113,0.361018,0.454075,0.699159,0.00290376,0.416786,0.902661,0.79404,0.306872,0.681215,0.116202,0.844829,0.515216,0.699188,0.891723,0.979868,0.815084,0.0258264,0.248001,0.28867,0.625844,0.316545,0.392233,0.856708,0.617538,0.36551,0.829949,0.396257,0.400601,0.0722588,0.0239329,0.817666,0.830245,0.444289,0.938485,0.911099,0.796721,0.784372,0.937064,0.978659,0.110778,0.546794,0.837535,0.58442,0.545326,0.833,0.984936,0.974003,0.81044,0.669029,0.994636,0.552974,0.0240593,0.591917,0.47975,0.401314,0.443277,0.922126,0.860041,0.972712,0.0123945,0.522934,0.925572,0.601451,0.451082,0.515418,0.010098,0.213006,0.409047,0.00925356,0.381545,0.0412019,0.151717,0.226907,0.936948,0.848451,0.584832,0.169333,0.879096,0.52453,0.750588,0.565018,0.472891,0.707943,0.611525,0.110219,0.137774,0.842066,0.17166,0.0511007,0.664222,0.642678,0.475972,0.362559,0.264124,0.804315,0.190184,0.462598,0.0547711,0.524008,0.0924432,0.197492,0.258572,0.464225,0.0437573,0.315709,0.586114,0.114444,0.376963,0.570354,0.605994,0.984643,0.53272,0.212285,0.831414,0.383872,0.29597,0.59234,0.429008,0.842713,0.33103,0.99422,0.782209,0.830302,0.889609,0.579079,0.584822,0.526245,0.908249,0.474425,0.356869,0.497967,0.193269,0.325293,0.374033,0.835332,0.087202,0.859948,0.157475,0.410889,0.352143,0.282317,0.507219,0.28101,0.912456,0.0305764,0.587102,0.5218,0.882339,0.471831,0.442643,0.568458,0.422236,0.341798,0.302595,0.574906,0.174714,0.75581,0.47801,0.585892,0.812494,0.396482,0.541161,0.654794,0.12661,0.665665,0.572682,0.959013,0.584133,0.714505,0.540257,0.050154,0.624334,0.584566,0.807722,0.604013,0.332293,0.68917,0.586292,0.818395,0.812396,0.572553,0.0885786,0.638295,0.0920708,0.56407,0.697866,0.119482,0.73961,0.134994,0.976815,0.585014,0.65467,0.044162,0.829475,0.594317,0.222619,0.260262,0.461216,0.241075,0.235905,0.538833,0.573445,0.988897,0.446677,0.142632,0.646977,0.147142,0.132418,0.150998,0.55077,0.572704,0.235558,0.366324,0.464585,0.576834,0.86987,0.045733,0.0279104,0.387041,0.827084,0.257864,0.949317,0.04124,0.188881,0.38976,0.784946,0.360988,0.752623,0.675769,0.139542,0.64769,0.156649,0.255118,0.79502,0.6306,0.159477,0.6843,0.596587,0.535273,0.120806,0.296259,0.820959,0.92167,0.219841,0.725558,0.263,0.0342224,0.256239,0.055864,0.391697,0.467591,0.766424,0.513181,0.974673,0.75823,0.80876,0.179379,0.492275,0.578166,0.186362,0.443176,0.724467,0.67349,0.270674,0.579404,0.495954,0.267317,0.649805,0.195859,0.797461,0.645178,0.910907,0.20024,0.206146,0.0848382,0.419148,0.840981,0.23396,0.518142,0.631874,0.128896,0.762907,0.335379,0.505618,0.313307,0.801432,0.616414,0.624997,0.433553,0.626044,0.174376,0.531923,0.384315,0.184419,0.570503,0.703858,0.314424,0.729848,0.267264,0.655241,0.388754,0.133608,0.449174,0.848358,0.427348,0.456329,0.0364588,0.0645727,0.505336,0.980833,0.950122,0.545567,0.80531,0.459605,0.875659,0.095365,0.222827,0.535819,0.167201,0.514769,0.554009,0.176106,0.181201,0.417779,0.0732686,0.442487,0.375201,0.133602,0.890242,0.719835,0.656975,0.760716,0.788541,0.996348,0.829332,0.548548,0.0616592,0.175036,0.82404,0.480034,0.741175,0.260732,0.465941,0.760004,0.987452,0.322495,0.848921,0.894883,0.862552,0.282063,0.186992,0.0767815,0.176906,0.797911,0.00186312,0.271547,0.0936987,0.416288,0.990806,0.310977,0.0819005,0.425424,0.237262,0.786011,0.863512,0.467309,0.0930253,0.505299,0.376868,0.00712281,0.24555,0.099814,0.452271,0.304847,0.385538,0.344034,0.98187,0.589193,0.475227,0.711641,0.561659,0.873301,0.100725,0.750506,0.817789,0.920415,0.467289,0.542934,0.983505,0.818313,0.317228,0.298024,0.296849,0.558484,0.397297,0.913923,0.776735,0.886693,0.989583,0.213285,0.968328,0.478385,0.310377,0.162885,0.497969,0.84939,0.64906,0.627993,0.56498,0.791338,0.620022,0.316037,0.869179,0.277934,0.557772,0.870271,0.859177,0.328939,0.695434,0.288208,0.108984,0.449007,0.0722201,0.523678,0.362634,0.895957,0.443471,0.72516,0.819883,0.994993,0.0509661,0.597654,0.421695,0.914826,0.596383,0.0778964,0.755586,0.0732974,0.791958,0.386585,0.12566,0.190131,0.524229,0.164789,0.166393,0.253958,0.595957,0.46023,0.882555,0.417543,0.972577,0.974478,0.449541,0.932487,0.70686,0.713396,0.673593,0.566546,0.104233,0.0222048,0.921892,0.372295,0.35869,0.144168,0.520726,0.299518,0.525336,0.776529,0.772184,0.814239,0.319222,0.871353,0.444505,0.975969,0.512633,0.48064,0.803782,0.252282,0.91073,0.370566,0.473879,0.380733,0.371769,0.254877,0.0877216,0.626168,0.420634,0.754774,0.903444,0.945052,0.818965,0.0645604,0.396088,0.793834,0.525644,0.997403,0.266271,0.726468,0.939144,0.639563,0.228633,0.745931,0.987206,0.852219,0.262518,0.74713,0.465539,0.19997,0.821812,0.814549,0.141551,0.35415,0.147917,0.48115,0.241493,0.351226,0.00324696,0.615113,0.64998,0.722742,0.335037,0.879146,0.668194,0.436647,0.70631,0.613018,0.119879,0.551907,0.971479,0.764264,0.347701,0.767204,0.811526,0.305522,0.541504,0.190976,0.242513,0.941502,0.135598,0.394634,0.0751469,0.885602,0.153303,0.979038,0.683959,0.311214,0.0771019,0.754892,0.324197,0.57824,0.716347,0.808741,0.369465,0.655943,0.234664,0.749126,0.206867,0.86841,0.143838,0.862788,0.822907,0.753297,0.494008,0.65756,0.135303,0.190013,0.0123609,0.633229,0.922434,0.372883,0.0551534,0.860965,0.969046,0.240827,0.621679,0.51299,0.876402,0.731031,0.974443,0.405768,0.806683,0.774061,0.980866,0.664096,0.77956,0.221655,0.0695825,0.687758,0.732158,0.917171,0.717199,0.0967292,0.268206,0.499717,0.227689,0.359773,0.199373,0.925771,0.667775,0.129647,0.433919,0.620259,0.536571,0.653404,0.63651,0.54474,0.435404,0.111825,0.28584,0.701778,0.334777,0.82505,0.678973,0.137994,0.0130035,0.36314,0.986478,0.0223861,0.449739,0.714147,0.742866,0.16052,0.886026,0.549913,0.104704,0.312517,0.0225555,0.577359,0.0623657,0.221651,0.0554739,0.540903,0.998354,0.413124,0.164628,0.0018369,0.047619,0.992233,0.399712,0.574751,0.72865,0.0764033,0.195003,0.14751,0.915862,0.348723,0.966039,0.570994,0.562128,0.273609,0.407046,0.758988,0.169703,0.312856,0.839982,0.498875,0.195724,0.723297,0.316693,0.740623,0.314599,0.46564,0.528646,0.949312,0.926007,0.416335,0.473888,0.234129,0.73428,0.437541,0.893151,0.252006,0.952687,0.125914,0.39438,0.814065,0.482915,0.179187,0.860158,0.898918,0.253957,0.377566,0.621623,0.0241138,0.763367,0.778203,0.718112,0.796068,0.444536,0.882228,0.720638,0.124161,0.337246,0.357669,0.168903,0.0851158,0.779631,0.396074,0.731477,0.44781,0.104367,0.758886,0.222679,0.794248,0.0330563,0.359324,0.925925,0.250542,0.904181,0.556508,0.870826,0.776905,0.189175,0.926759,0.243279,0.216146,0.0256635,0.671769,0.208654,0.199884,0.279656,0.502663,0.895641,0.55975,0.589158,0.153644,0.50217,0.96795,0.56246,0.258123,0.581241,0.253836,0.43448,0.934609,0.178617,0.253638,0.88415,0.669864,0.450709,0.896837,0.498129,0.229666,0.98199,0.611625,0.0745773,0.369474,0.282423,0.39667,0.99218,0.0657257,0.221766,0.743065,0.257382,0.24761,0.579902,0.855063,0.50551,0.257953,0.0745649,0.720779,0.619277,0.758333,0.762192,0.193829,0.870176,0.100185,0.0762771,0.424751,0.476194,0.275152,0.424866,0.519535,0.0856027,0.871697,0.418988,0.635384,0.327903,0.772021,0.503758,0.7004,0.309065,0.325105,0.381544,0.257215,0.70103,0.106398,0.488177,0.528442,0.857834,0.64229,0.139605,0.778695,0.348286,0.358564,0.726025,0.125421,0.77784,0.454646,0.96233,0.822538,0.506824,0.280917,0.549316,0.0143668,0.45217,0.63978,0.612759,0.217578,0.580258,0.494277,0.453618,0.149228,0.222444,0.897187,0.00579488,0.46265,0.453754,0.400149,0.542037,0.139844,0.797834,0.913209,0.686556,0.135711,0.357154,0.425887,0.0122924,0.577486,0.965963,0.870364,0.0846386,0.260026,0.970253,0.800408,0.229681,0.851333,0.790823,|0.990629,0.590725,0.38736,0.702764,0.203673,0.704085,0.925565,0.430848,0.137322,0.0150725,0.422343,0.403378,0.954036,0.861287,0.317027,0.487435,0.797431,0.00526166,0.153072,0.252033,0.820017,0.175619,0.468224,0.175299,0.402983,0.679675,0.94814,0.64827,0.990279,0.753723,0.898407,0.352378,0.711129,0.249383,0.43738,0.490837,0.129095,0.734483,0.703279,0.199333,0.298087,0.920495,0.929004,0.238506,0.737308,0.850175,0.324776,0.764501,0.777362,0.154304,0.611411,0.319204,0.666803,0.288392,0.907518,0.416186,0.219714,0.208687,0.709236,0.348877,0.104462,0.837882,0.17175,0.903554,0.485111,0.732266,0.400102,0.351744,0.0474074,0.311759,0.610539,0.462544,0.511415,0.541516,0.835573,0.96793,0.759112,0.527982,0.512054,0.91711,0.648983,0.199191,0.55368,0.0604412,0.00992876,0.716625,0.922258,0.394409,0.438356,0.0724202,0.787459,0.19165,0.384858,0.786185,0.0262177,0.0696909,0.77864,0.0324517,0.400867,0.628552,0.799008,0.128574,0.0190666,0.425302,0.0461041,0.0880769,0.195018,0.241989,0.673189,0.224375,0.554105,0.404504,0.284317,0.77905,0.41779,0.737552,0.312203,0.293727,0.767795,0.461009,0.6978,0.97041,0.927273,0.0723649,0.130899,0.639984,0.428724,0.248496,0.476918,0.813437,0.58393,0.0657311,0.799764,0.269945,0.439526,0.0786464,0.208448,0.819872,0.536684,0.658104,0.526252,0.491427,0.18813,0.478456,0.320304,0.136172,0.203745,0.525223,0.0176365,0.39995,0.152899,0.803072,0.311613,0.0974486,0.990617,0.539046,0.789954,0.00637567,0.0465028,0.0145921,0.472842,0.414803,0.834347,0.741407,0.0910591,0.671225,0.658354,0.867244,0.302762,0.697569,0.561432,0.0872658,0.223667,0.364923,0.642767,0.100488,0.752573,0.898645,0.543028,0.345837,0.0650634,0.525488,0.678022,0.567115,0.00895953,0.0917545,0.383087,0.239418,0.654739,0.751239,0.104013,0.53346,0.578182,0.0075258,0.633444,0.100193,0.0575051,0.30926,0.3918,0.348206,0.183366,0.260711,0.356384,0.0680313,0.181404,0.776774,0.427966,0.986787,0.390371,0.9524,0.221474,0.714041,0.132353,0.351369,0.506039,0.869001,0.538578,0.695513,0.788919,0.648031,0.556906,0.205105,0.733876,0.723144,0.783056,0.125022,0.537727,0.340092,0.836183,0.0125263,0.169322,0.246711,0.815518,0.504249,0.189956,0.0523756,0.305343,0.270132,0.531258,0.904294,0.494493,0.952713,0.811536,0.490212,0.987683,0.704366,0.62007,0.53694,0.937674,0.833613,0.0706434,0.30342,0.835526,0.886635,0.907417,0.675765,0.647541,0.437705,0.296797,0.514465,0.772951,0.303228,0.573879,0.461307,0.744651,0.145322,0.22833,0.316051,0.705842,0.699809,0.934885,0.310744,0.697308,0.41752,0.059952,0.192622,0.887816,0.760682,0.471596,0.451662,0.325116,0.683687,0.830807,0.0777152,0.0615098,0.563648,0.993984,0.952748,0.0923879,0.299624,0.247834,0.103178,0.189393,0.591639,0.00987333,0.139828,0.928154,0.255927,0.366906,0.288794,0.771253,0.851254,0.579153,0.792478,0.537155,0.434637,0.403344,0.0958129,0.499645,0.551121,0.974472,0.667209,0.345186,0.374463,0.159176,0.811973,0.704709,0.589396,0.338705,0.712083,0.907705,0.978353,0.729206,0.378432,0.0572602,0.36954,0.795424,0.714765,0.563086,0.951996,0.968155,0.922929,0.472673,0.594418,0.261286,0.697842,0.248561,0.343572,0.537558,0.538238,0.277246,0.914645,0.522556,0.525059,0.681695,0.706428,0.888199,0.937954,0.724526,0.554665,0.408132,0.270098,0.271599,0.789439,0.341406,0.759214,0.270448,0.0846254,0.204738,0.202542,0.759327,0.271284,0.465094,0.475208,0.0739113,0.106384,0.185386,0.0302367,0.374411,0.968098,0.129598,0.202055,0.688485,0.940354,0.0479591,0.536262,0.21069,0.935661,0.772099,0.940934,0.0277951,0.765508,0.727804,0.776449,0.352718,0.644679,0.163004,0.855397,0.231963,0.269506,0.130335,0.142559,0.0942951,0.02513,0.167478,0.383058,0.565344,0.0184374,0.365176,0.890598,0.236348,0.494237,0.0630739,0.584723,0.640398,0.133399,0.671315,0.220231,0.578025,0.914882,0.722192,0.266165,0.443343,0.0222511,0.168809,0.758286,0.22537,0.52939,0.261025,0.943715,0.805411,0.64761,0.226365,0.760281,0.567178,0.536822,0.823135,0.753059,0.724838,0.123313,0.386307,0.742853,0.722977,0.560119,0.414956,0.91378,0.789185,0.797339,0.0961444,0.685855,0.519137,0.844799,0.436512,0.501101,0.0483751,0.575202,0.882139,0.367535,0.539001,0.687228,0.374615,0.0178241,0.107057,0.905809,0.59386,0.787372,0.411366,0.812634,0.0509293,0.598409,0.719772,0.211136,0.517492,0.862442,0.121408,0.824445,0.788191,0.208642,0.627588,0.699499,0.961573,0.767011,0.0290656,0.938537,0.126119,0.967435,0.524041,0.679927,0.111915,0.209113,0.116211,0.438623,0.460366,0.298066,0.0657633,0.0646713,0.715387,0.607551,0.76397,0.944808,0.217855,0.755673,0.36117,0.605777,0.0268336,0.207084,0.168622,0.431343,0.648097,0.946041,0.885845,0.476149,0.891457,0.70669,0.431291,0.340091,0.0886358,0.884523,0.865754,0.632711,0.59825,0.975698,0.814695,0.615324,0.696397,0.887192,0.0383213,0.33057,0.514129,0.435222,0.377869,0.460939,0.907935,0.0374804,0.306146,0.372281,0.292532,0.0339087,0.619828,0.530431,0.83622,0.406564,0.711227,0.027491,0.870807,0.607008,0.818307,0.29205,0.569725,0.865714,0.606374,0.739294,0.730517,0.938538,0.627045,0.558433,0.691695,0.482176,0.11788,0.927751,0.823308,0.927409,0.466119,0.0599529,0.102594,0.210173,0.100579,0.0776182,0.797986,0.635613,0.541279,0.218972,0.702716,0.407861,0.817941,0.380492,0.159073,0.368346,0.483825,0.280144,0.876924,0.0022741,0.372626,0.208904,0.360551,0.379018,0.358448,0.156488,0.277712,0.748587,0.871938,0.739334,0.562379,0.926048,0.676205,0.728015,0.956858,0.7892,0.83403,0.961182,0.842723,0.3285,0.195617,0.604822,0.0605631,0.0114661,0.088168,0.688993,0.604543,0.111275,0.710176,0.988621,0.269789,0.211292,0.720958,0.611261,0.371849,0.012359,0.813235,0.145711,0.340692,0.24784,0.813867,0.8286,0.164861,0.654275,0.443052,0.166995,0.623439,0.563682,0.673715,0.589189,0.869511,0.542858,0.370751,0.222092,0.681094,0.68201,0.923953,0.524165,0.34098,0.834668,0.898705,0.38679,0.254103,0.417003,0.493849,0.80158,0.264054,0.382275,0.664217,0.0901903,0.822068,0.32943,0.119386,0.399387,0.647696,0.577339,0.56778,0.613194,0.371936,0.610871,0.422946,0.206313,0.921278,0.115498,0.675505,0.268095,0.29753,0.633148,0.620492,0.55589,0.430056,0.121634,0.39406,0.793365,0.929114,0.487128,0.832473,0.456077,0.345893,0.448131,0.495078,0.34067,0.330382,0.715938,0.893759,0.211379,0.21818,0.659567,0.961821,0.955121,0.709225,0.971066,0.21673,0.0545193,0.557565,0.920947,0.978641,0.965426,0.290085,0.81403,0.650633,0.810184,0.262856,0.7096,0.416363,0.526278,0.938157,0.299935,0.724275,0.593879,0.992486,0.278646,0.238285,0.587803,0.507216,0.565388,0.809123,0.697575,0.667009,0.546537,0.37204,0.210098,0.377039,0.267167,0.220445,0.693702,0.764697,0.408465,0.403702,0.647097,0.0599793,0.614836,0.0667073,0.692627,0.622732,0.900612,0.599467,0.402923,0.190757,0.260329,0.235738,0.346727,0.245581,0.0581409,0.0739807,0.629714,0.183745,0.529389,0.796286,0.570325,0.25053,0.564703,0.744265,0.748313,0.707215,0.0781454,0.713306,0.00278598,0.742741,0.163154,0.522789,0.0936809,0.211921,0.648737,0.664151,0.199455,0.245182,0.220937,0.814556,0.790698,0.720843,0.944777,0.0827029,0.0737019,0.164505,0.652382,0.951493,0.334611,0.984959,0.911939,0.26557,0.282636,0.448683,0.336279,0.100582,0.364098,0.421368,0.0066784,0.315967,0.172387,0.957633,0.414845,0.377998,0.724016,0.611375,0.963952,0.48067,0.286518,0.236393,0.661584,0.39686,0.473952,0.675935,0.935705,0.449227,0.295727,0.825319,0.999939,0.475688,0.521208,0.998445,0.217474,0.192163,0.697011,0.102112,0.409451,0.743087,0.395562,0.807667,0.527723,0.199382,0.084501,0.414403,0.988337,0.172815,0.250173,0.386646,0.489164,0.875305,0.226209,0.0165904,0.279656,0.625492,0.84367,0.164327,0.0933958,0.324762,0.650423,0.771639,0.93736,0.0638805,0.428476,0.362141,0.260282,0.881679,0.624977,0.59194,0.65923,0.819384,0.960756,0.10494,0.139036,0.420746,0.689549,0.329936,0.285942,0.591226,0.279457,0.659692,0.216883,0.248333,0.754219,0.23296,0.240081,0.171384,0.397685,0.109892,0.467494,0.102626,0.166554,0.648922,0.567621,0.129038,0.993726,0.936167,0.559347,0.373607,0.915338,0.572517,0.159873,0.184292,0.918799,0.488002,0.263373,0.483137,0.893317,0.931795,0.767559,0.54574,0.467653,0.393386,0.909012,0.682881,0.714336,0.90179,0.39994,0.695939,0.0385525,0.564527,0.839268,0.803709,0.57058,0.288308,0.944428,0.201691,0.232971,0.775704,0.790568,0.370007,0.751462,0.204074,0.915135,0.144441,0.146655,0.143703,0.129632,0.883848,0.21563,0.122513,0.29881,0.802837,0.212821,0.842357,0.0217463,0.0935797,0.0396689,0.837079,0.346034,0.915446,0.718898,0.687614,0.450844,0.833058,0.0276634,0.882596,0.227118,0.492761,0.488809,0.400158,0.297421,0.617227,0.939177,0.0137724,0.999108,0.290422,0.794304,0.385539,0.330005,0.00522178,0.236261,0.113844,0.368347,0.915898,0.842165,0.972341,0.889122,0.620275,0.772103,0.380023,0.712989,0.0151489,0.00683784,0.812402,0.685721,0.839423,0.210698,0.658278,0.445821,0.706908,0.48242,0.819504,0.976091,0.195316,0.90495,0.000953615,0.307824,0.734086,0.265121,0.00163722,0.651037,0.0268571,0.205654,0.670586,0.240533,0.470831,0.621734,0.253199,0.840383,0.25626,0.593666,0.0261511,0.27773,0.340678,0.687884,0.507433,0.722809,0.640571,0.744011,0.0112294,0.518777,0.22529,0.0672829,0.833183,0.485255,0.014832,0.543573,0.993437,0.905226,|0.78872,0.339575,0.24565,0.622558,0.219214,0.581213,0.617808,0.245102,0.310904,0.195315,0.150409,0.150255,0.51041,0.391213,0.179818,0.137169,0.97406,0.188001,0.879843,0.166374,0.53284,0.179788,0.136551,0.69714,0.864191,0.633156,0.327168,0.184468,0.931807,0.619904,0.41026,0.707456,0.717138,0.0737892,0.243634,0.524024,0.234334,0.315364,0.825676,0.621417,0.79183,0.783526,0.715327,0.111196,0.306445,0.5527,0.34331,0.657967,0.394792,0.127029,0.150116,0.0218686,0.927431,0.267085,0.141949,0.529741,0.345954,0.534965,0.333416,0.775526,0.534591,0.6983,0.0787101,0.579595,0.909255,0.738801,0.207721,0.935043,0.415393,0.571615,0.891925,0.425261,0.549672,0.146615,0.0258901,0.500876,0.601876,0.584272,0.0775726,0.512439,0.141136,0.679845,0.415945,0.325889,0.727862,0.441515,0.532235,0.618451,0.323542,0.8485,0.23131,0.0679967,0.525957,0.318578,0.549381,0.713323,0.0660848,0.0636507,0.430644,0.21271,0.657714,0.350674,0.00671005,0.742907,0.49022,0.464097,0.138755,0.848305,0.431092,0.514975,0.0987124,0.037907,0.558899,0.640176,0.518306,0.61373,0.683788,0.861318,0.720082,0.463992,0.589722,0.774398,0.54118,0.177958,0.622489,0.730284,0.998488,0.391889,0.607153,0.504082,0.797603,0.724916,0.0157604,0.999442,0.651019,0.529904,0.529133,0.228622,0.2129,0.0708073,0.926766,0.353927,0.0356027,0.00587893,0.828789,0.316707,0.965196,0.471353,0.698716,0.122955,0.648704,0.90299,0.108127,0.445033,0.324295,0.0439444,0.923354,0.525605,0.554435,0.874863,0.275742,0.226999,0.186947,0.846229,0.88196,0.995463,0.752504,0.854927,0.753458,0.0612473,0.94118,0.198749,0.676921,0.817632,0.355631,0.687985,0.0128003,0.879159,0.967392,0.3131,0.319585,0.662645,0.198594,0.152209,0.421419,0.849989,0.721205,0.119512,0.739597,0.320241,0.0454659,0.767195,0.417077,0.654307,0.976409,0.34808,0.0828393,0.653986,0.705389,0.942767,0.130615,0.889158,0.605433,0.639419,0.587946,0.187541,0.898541,0.661623,0.617344,0.879801,0.03434,0.238819,0.291005,0.177577,0.454118,0.246297,0.874254,0.808563,0.358989,0.808145,0.838595,0.860429,0.431626,0.184057,0.198831,0.872995,0.839559,0.940124,0.0933013,0.415237,0.477593,0.377042,0.449899,0.466508,0.807975,0.544902,0.22439,0.24659,0.364206,0.816963,0.371754,0.282262,0.133849,0.375622,0.521349,0.79749,0.824112,0.135514,0.589776,0.15274,0.935571,0.817249,0.353299,0.493341,0.835357,0.718436,0.865271,0.0814744,0.203382,0.127545,0.0600372,0.974896,0.603103,0.90204,0.412467,0.499221,0.18203,0.23784,0.035589,0.613805,0.043833,0.387814,0.131537,0.871293,0.336486,0.280555,0.184813,0.806664,0.139938,0.323373,0.386264,0.919559,0.174471,0.426498,0.0404595,0.325013,0.0615754,0.552541,0.945062,0.0143556,0.898762,0.828559,0.980067,0.491711,0.111456,0.469745,0.270552,0.731719,0.506385,0.913715,0.28836,0.80907,0.0118452,0.227942,0.272326,0.736141,0.0638998,0.928824,0.672355,0.801201,0.86209,0.627747,0.913189,0.871488,0.94422,0.358689,0.139176,0.849673,0.312062,0.135567,0.765589,0.714734,0.43561,0.993383,0.595037,0.936332,0.0441371,0.934938,0.86391,0.813028,0.230984,0.0263557,0.568456,0.794895,0.992771,0.272446,0.268978,0.877211,0.240002,0.86293,0.638652,0.0116256,0.675084,0.626973,0.0471457,0.0752434,0.266366,0.756525,0.979563,0.384521,0.951645,0.326978,0.177109,0.576976,0.2025,0.800871,0.698695,0.128691,0.0467978,0.0911714,0.0670833,0.614062,0.00999272,0.465703,0.899724,0.932158,0.248416,0.0903236,0.426931,0.734787,0.633499,0.284145,0.778254,0.446808,0.40649,0.353692,0.521827,0.191235,0.581356,0.693016,0.650527,0.440546,0.63523,0.00292861,0.409289,0.552031,0.454513,0.224167,0.511627,0.143176,0.904419,0.191727,0.511345,0.855311,0.332615,0.581536,0.337669,0.28634,0.261919,0.616382,0.739658,0.733279,0.0373621,0.347812,0.883276,0.209373,0.542847,0.136,0.979007,0.934084,0.63472,0.895035,0.307003,0.189841,0.746641,0.104706,0.25568,0.692876,0.111341,0.274661,0.0424554,0.106503,0.960296,0.0491455,0.3489,0.244747,0.995604,0.822663,0.522133,0.198387,0.472439,0.312285,0.837891,0.531255,0.95667,0.17017,0.0254285,0.806991,0.89695,0.550638,0.656163,0.0609394,0.917318,0.728362,0.715312,0.790366,0.954238,0.655025,0.330257,0.672915,0.350959,0.444459,0.841178,0.614893,0.309778,0.969197,0.336351,0.121341,0.652119,0.370433,0.0921506,0.0119709,0.305262,0.586163,0.806583,0.532799,0.952758,0.947836,0.443294,0.906528,0.701031,0.28017,0.0518849,0.995128,0.714837,0.405267,0.101498,0.544093,0.380056,0.650011,0.175171,0.951664,0.104144,0.201475,0.322369,0.282724,0.475448,0.120353,0.25786,0.508578,0.69233,0.163285,0.578989,0.739157,0.325721,0.865132,0.75659,0.462843,0.92361,0.883156,0.576326,0.276802,0.580779,0.462443,0.853245,0.254285,0.168019,0.779647,0.164319,0.706744,0.33473,0.646541,0.445231,0.0655977,0.461795,0.0634798,0.719152,0.793825,0.905553,0.0727108,0.564017,0.12337,0.785228,0.143111,0.621969,0.568249,0.566246,0.837286,0.218662,0.406559,0.506948,0.0491946,0.498745,0.996096,0.257224,0.276128,0.112939,0.791308,0.532729,0.313547,0.76962,0.54225,0.727771,0.35636,0.00979108,0.165884,0.370247,0.0738207,0.766357,0.00909585,0.371599,0.807641,0.385759,0.709289,0.190996,0.710319,0.0132989,0.543911,0.345959,0.544338,0.149378,0.0625573,0.854289,0.527804,0.0184473,0.464408,0.83691,0.71791,0.235583,0.5782,0.774198,0.868415,0.846298,0.778305,0.423827,0.9663,0.427184,0.0998948,0.633741,0.950078,0.79712,0.807606,0.179271,0.601266,0.150589,0.882207,0.545735,0.532178,0.549179,0.39467,0.940519,0.524516,0.989743,0.441321,0.893673,0.248744,0.72097,0.980134,0.909906,0.161081,0.380267,0.74475,0.648621,0.125386,0.36479,0.156351,0.767335,0.480963,0.274478,0.931335,0.288817,0.40245,0.724603,0.011222,0.583749,0.666897,0.151441,0.19473,0.679351,0.0123476,0.620223,0.403779,0.615109,0.0639855,0.758801,0.941211,0.323796,0.73241,0.457595,0.331767,0.653027,0.690894,0.347988,0.574719,0.687754,0.0439557,0.456497,0.478807,0.531896,0.807328,0.845023,0.0562541,0.459071,0.544001,0.730024,0.365736,0.523879,0.533205,0.310513,0.543082,0.255159,0.565367,0.167756,0.100776,0.0654682,0.247109,0.307906,0.185527,0.689279,0.65809,0.733664,0.414378,0.867424,0.2594,0.0932378,0.206762,0.174076,0.665948,0.9308,0.516704,0.296231,0.700867,0.975588,0.206387,0.796538,0.431457,0.258509,0.555606,0.465937,0.441472,0.836516,0.377678,0.513223,0.41342,0.597074,0.0073601,0.648935,0.946868,0.695544,0.514117,0.329822,0.699311,0.579946,0.732958,0.534203,0.318499,0.349378,0.627431,0.585899,0.286788,0.27294,0.0739462,0.897454,0.432528,0.896959,0.263332,0.102332,0.632227,0.480984,0.800816,0.162388,0.289198,0.421396,0.12272,0.963964,0.136691,0.805579,0.285677,0.918353,0.492358,0.211724,0.952032,0.226448,0.649861,0.397397,0.317275,0.734274,0.695344,0.551233,0.390485,0.67707,0.0314065,0.766262,0.752385,0.967972,0.573735,0.506141,0.572754,0.620005,0.95226,0.0401973,0.477242,0.734199,0.812805,0.354626,0.166177,0.144672,0.351613,0.886952,0.519551,0.714475,0.322253,0.769731,0.651958,0.491199,0.195757,0.132524,0.908938,0.704397,0.4616,0.900284,0.168399,0.866089,0.62826,0.192082,0.714249,0.394872,0.53086,0.115606,0.510285,0.471516,0.276032,0.879746,0.239777,0.119393,0.469706,0.245053,0.943893,0.20775,0.0163199,0.509745,0.563881,0.565661,0.523669,0.751182,0.12277,0.944342,0.913806,0.538479,0.51559,0.45754,0.552897,0.883226,0.540098,0.503575,0.719883,0.321066,0.808713,0.989557,0.683171,0.945733,0.155574,0.473444,0.998078,0.28677,0.824044,0.34386,0.0854207,0.72566,0.314572,0.877263,0.42589,0.880329,0.359408,0.0548842,0.852426,0.300678,0.0908335,0.914313,0.828935,0.826162,0.0132498,0.342641,0.0830084,0.126748,0.911314,0.561769,0.408489,0.346987,0.525666,0.143277,0.191273,0.874073,0.554195,0.827194,0.996023,0.949187,0.573375,0.423501,0.037536,0.4702,0.118951,0.668375,0.763774,0.869782,0.92796,0.331363,0.413765,0.832325,0.76738,0.119886,0.950859,0.995983,0.46582,0.236717,0.945343,0.995356,0.531414,0.868897,0.571923,0.963488,0.140285,0.360618,0.382536,0.163718,0.682769,0.292814,0.216444,0.80943,0.318741,0.115676,0.442506,0.963697,0.632634,0.813121,0.902741,0.159335,0.847484,0.172712,0.54418,0.972602,0.857381,0.0733994,0.729027,0.401945,0.709453,0.581422,0.0817718,0.705821,0.617052,0.561588,0.389709,0.0423128,0.375074,0.937533,0.258419,0.159051,0.461432,0.496768,0.894554,0.482015,0.377935,0.882777,0.683119,0.610454,0.102427,0.76301,0.396891,0.0604928,0.932557,0.267405,0.630517,0.932822,0.405747,0.0758789,0.692549,0.919138,0.699506,0.18533,0.110219,0.319246,0.521391,0.868887,0.686366,0.0527031,0.431131,0.569509,0.808209,0.0512164,0.42006,0.373652,0.394012,0.18288,0.435874,0.090247,0.837076,0.827364,0.661159,0.350074,0.487986,0.626083,0.326733,0.658704,0.922091,0.559236,0.415728,0.493275,0.829303,0.778331,0.478263,0.92053,0.205287,0.660976,0.95777,0.360896,0.582268,0.306297,0.64719,0.0439054,0.348035,0.39688,0.271961,0.362784,0.391011,0.845978,0.0611163,0.0711915,0.755586,0.639216,0.384455,0.703206,0.779304,0.252794,0.775276,0.541326,0.95773,0.457597,0.621498,0.878866,0.59607,0.656352,0.0144327,0.877462,0.496908,0.728654,0.480262,0.686363,0.828382,0.0705743,0.60909,0.431021,0.700184,0.654041,0.550688,0.957333,0.313006,0.947632,0.216039,0.994402,0.407921,|0.381795,0.684426,0.468002,0.28752,0.769452,0.579383,0.424668,0.381904,0.706698,0.181691,0.914431,0.581324,0.172928,0.846543,0.606749,0.0699062,0.337807,0.494717,0.921483,0.267693,0.82892,0.696149,0.728993,0.29053,0.70638,0.0206288,0.0992519,0.428663,0.572288,0.305827,0.376008,0.863511,0.293449,0.0180002,0.399275,0.125344,0.595634,0.449893,0.877557,0.55008,0.469352,0.0363877,0.176877,0.580263,0.959511,0.431812,0.15811,0.326976,0.776183,0.947216,0.270516,0.164522,0.731933,0.975693,0.950311,0.939919,0.287452,0.83614,0.297579,0.852825,0.868454,0.806988,0.346023,0.462732,0.738036,0.896138,0.426489,0.679716,0.279767,0.117211,0.0998768,0.75995,0.051034,0.117018,0.645413,0.265287,0.0764502,0.523215,0.181494,0.171431,0.855941,0.0799917,0.639925,0.680643,0.971882,0.136485,0.416931,0.394521,0.731739,0.0700665,0.647216,0.0539262,0.698567,0.913096,0.656301,0.85128,0.154066,0.1013,0.529878,0.40138,0.805393,0.12437,0.157722,0.268101,0.0262425,0.638556,0.400725,0.403006,0.414863,0.439439,0.419417,0.557761,0.88331,0.60694,0.890945,0.100904,0.217509,0.949434,0.831101,0.57742,0.668941,0.768455,0.150504,0.380752,0.158683,0.809005,0.235275,0.66677,0.465289,0.252503,0.00576824,0.996737,0.303894,0.17806,0.554489,0.796028,0.991512,0.63518,0.665246,0.585657,0.443621,0.752963,0.763385,0.418723,0.0421578,0.614581,0.770845,0.470111,0.950616,0.89506,0.214127,0.839359,0.834632,0.337751,0.881675,0.914584,0.0260656,0.731455,0.0104077,0.807509,0.519218,0.47145,0.89664,0.817684,0.712974,0.104761,0.348616,0.880082,0.0945649,0.49596,0.246964,0.0166317,0.726421,0.467012,0.0135002,0.237401,0.127095,0.116182,0.670946,0.422819,0.602604,0.19523,0.733015,0.489974,0.973664,0.837898,0.90334,0.878044,0.737648,0.0416665,0.203588,0.437303,0.693574,0.523612,0.270407,0.0749992,0.295154,0.148531,0.491347,0.290664,0.349155,0.389251,0.484091,0.235932,0.0970924,0.961024,0.283693,0.839653,0.343474,0.705729,0.992515,0.585772,0.216304,0.884685,0.72379,0.296964,0.271915,0.794394,0.32568,0.602572,0.236806,0.943021,0.151874,0.842748,0.238911,0.359111,0.182325,0.453654,0.655096,0.289395,0.163608,0.265164,0.625608,0.815728,0.740282,0.349714,0.212395,0.489612,0.261949,0.0500475,0.940213,0.455521,0.936607,0.94886,0.796092,0.907289,0.0591102,0.902439,0.548127,0.241854,0.053842,0.814437,0.827071,0.842981,0.950278,0.558332,0.384667,0.0776365,0.212525,0.483735,0.832175,0.377457,0.341877,0.380536,0.425853,0.404817,0.266534,0.766493,0.964405,0.637515,0.951645,0.834233,0.531537,0.441861,0.633074,0.495958,0.899099,0.289791,0.613852,0.337386,0.0041495,0.957468,0.414741,0.0501249,0.966058,0.361583,0.126351,0.760714,0.0376762,0.542367,0.169138,0.0316327,0.972902,0.644763,0.109593,0.439135,0.227322,0.783332,0.827357,0.765029,0.366366,0.108497,0.801049,0.883185,0.0947878,0.285937,0.481905,0.909291,0.313671,0.664693,0.175488,0.837513,0.291571,0.808048,0.668341,0.755821,0.420991,0.289993,0.427671,0.0566194,0.684507,0.0686419,0.507974,0.808343,0.92902,0.980672,0.967899,0.756854,0.804391,0.59523,0.0840781,0.380703,0.414013,0.623768,0.291433,0.564426,0.317016,0.489181,0.0269818,0.463819,0.24809,0.138645,0.477066,0.165378,0.106742,0.206779,0.248198,0.803741,0.309315,0.961692,0.287737,0.426864,0.5642,0.0876719,0.104425,0.121212,0.846641,0.831396,0.0817909,0.87069,0.872095,0.245365,0.227688,0.790664,0.484827,0.0922269,0.422716,0.517122,0.401056,0.0391042,0.507272,0.150627,0.942428,0.483659,0.559384,0.595142,0.497859,0.82536,0.232175,0.759671,0.172673,0.540953,0.0551922,0.170324,0.215343,0.827288,0.607129,0.379756,0.645146,0.357205,0.0605977,0.35912,0.592112,0.515942,0.190108,0.284978,0.790207,0.746989,0.977933,0.0320796,0.107334,0.331679,0.0279053,0.260406,0.241332,0.881929,0.874402,0.99388,0.551267,0.431229,0.586372,0.593904,0.953364,0.279489,0.949787,0.849598,0.858821,0.12923,0.25566,0.381502,0.864549,0.208629,0.835302,0.131421,0.171745,0.597731,0.784805,0.502926,0.725687,0.702601,0.348997,0.36578,0.17272,0.907174,0.608737,0.890982,0.740022,0.0421541,0.652418,0.446989,0.138599,0.230209,0.0892198,0.957295,0.11951,0.355413,0.387573,0.752212,0.745372,0.250757,0.149052,0.628807,0.880099,0.106283,0.650587,0.30733,0.540655,0.101815,0.825972,0.690433,0.936946,0.318321,0.67022,0.366212,0.98893,0.347936,0.152188,0.278466,0.756075,0.158773,0.460758,0.493579,0.263795,0.44222,0.315967,0.417864,0.906453,0.399139,0.543106,0.939629,0.812442,0.991121,0.544149,0.722211,0.856074,0.179045,0.864739,0.0777179,0.45067,0.462055,0.750458,0.268855,0.601454,0.0298445,0.102052,0.446996,0.533441,0.719675,0.0256404,0.317911,0.586876,0.891622,0.961816,0.452903,0.593114,0.709079,0.968738,0.933913,0.843383,0.795002,0.38738,0.604982,0.342529,0.940589,0.577973,0.404708,0.444798,0.994395,0.0406468,0.199609,0.576,0.984144,0.572716,0.232227,0.35479,0.571844,0.579096,0.150797,0.611481,0.895002,0.937771,0.795733,0.0414744,0.351791,0.482689,0.232356,0.499944,0.154377,0.891452,0.101817,0.960221,0.672364,0.532157,0.360289,0.268651,0.548955,0.345184,0.402029,0.0963491,0.713269,0.0248793,0.478942,0.7378,0.0603719,0.455075,0.541586,0.335148,0.440624,0.719196,0.314106,0.590466,0.453544,0.702501,0.644564,0.706058,0.532187,0.194213,0.838621,0.89925,0.359118,0.49907,0.131516,0.516241,0.841439,0.322876,0.812089,0.331959,0.952079,0.75213,0.49979,0.231656,0.254647,0.217632,0.621237,0.315962,0.143727,0.0131842,0.677327,0.309705,0.528831,0.571159,0.654286,0.112034,0.305153,0.508932,0.776016,0.592089,0.46134,0.469773,0.262766,0.22514,0.912033,0.585288,0.102883,0.123792,0.0162248,0.465269,0.444689,0.450751,0.246509,0.552993,0.614134,0.60358,0.924295,0.115861,0.852537,0.275262,0.493223,0.503433,0.950762,0.328489,0.733005,0.23285,0.177439,0.888503,0.424845,0.0654507,0.73849,0.821371,0.173516,0.946385,0.648375,0.175461,0.772995,0.712122,0.38353,0.715397,0.146474,0.0561715,0.730478,0.09957,0.0876401,0.23536,0.503322,0.813899,0.702344,0.339743,0.500312,0.650822,0.766016,0.958216,0.107343,0.172494,0.210172,0.243353,0.769716,0.639125,0.71087,0.0887555,0.158861,0.768738,0.114308,0.986803,0.304681,0.307777,0.632728,0.59856,0.884401,0.987509,0.779141,0.967475,0.377173,0.160465,0.299511,0.279885,0.670721,0.298307,0.339487,0.169025,0.73673,0.423151,0.753945,0.90725,0.481282,0.944714,0.990121,0.351212,0.555105,0.879855,0.62598,0.436338,0.243267,0.763692,0.540102,0.486875,0.0878996,0.492644,0.833351,0.357771,0.649016,0.747784,0.0983714,0.306152,0.662032,0.522071,0.0472726,0.161618,0.384703,0.367214,0.77915,0.927075,0.309641,0.701331,0.366157,0.0270568,0.504062,0.978338,0.794846,0.0331971,0.361911,0.976949,0.501153,0.629585,0.564256,0.79832,0.754545,0.624389,0.664215,0.939373,0.0396594,0.604978,0.0827059,0.484788,0.378071,0.328303,0.759246,0.68301,0.456724,0.678388,0.443766,0.294735,0.111967,0.956753,0.31155,0.267666,0.918161,0.766297,0.632472,0.260875,0.165473,0.0386214,0.869852,0.0787342,0.758119,0.689597,0.285639,0.313161,0.0526515,0.377629,0.608348,0.425574,0.608946,0.0770515,0.0109386,0.298427,0.924654,0.238283,0.425229,0.968267,0.622051,0.298408,0.256581,0.593615,0.312012,0.759122,0.328707,0.980804,0.976634,0.382975,0.534069,0.266855,0.258033,0.7473,0.820153,0.125618,0.448672,0.0877076,0.515326,0.933264,0.169283,0.363154,0.666894,0.590184,0.28479,0.253382,0.487439,0.724122,0.430509,0.667692,0.563687,0.279896,0.460936,0.806062,0.499994,0.970861,0.560056,0.0310023,0.996772,0.690888,0.855857,0.605151,0.518369,0.360783,0.253054,0.483382,0.847903,0.715862,0.494199,0.255761,0.112268,0.018832,0.37163,0.301315,0.536197,0.62042,0.684615,0.74348,0.396596,0.744146,0.332803,0.318235,0.633392,0.944866,0.812581,0.591932,0.105949,0.704721,0.246723,0.919076,0.459847,0.292197,0.519264,0.233746,0.924833,0.606271,0.436536,0.817591,0.318382,0.316387,0.435202,0.544311,0.4657,0.335837,0.508045,0.493302,0.25381,0.895188,0.14422,0.498744,0.297664,0.251555,0.281218,0.733643,0.615862,0.348477,0.240848,0.838763,0.686486,0.566582,0.914518,0.733403,0.41601,0.958657,0.87237,0.545555,0.922315,0.946187,0.0547464,0.160496,0.272626,0.228142,0.947335,0.92201,0.363446,0.764713,0.520857,0.02882,0.494847,0.972921,0.500837,0.119918,0.461468,0.419003,0.981238,0.433142,0.190052,0.908159,0.292794,0.387808,0.924486,0.861809,0.0569812,0.918018,0.908621,0.745683,0.576992,0.99057,0.788747,0.306797,0.0574567,0.985995,0.329725,0.62632,0.377195,0.354665,0.572353,0.204946,0.148522,0.97454,0.908469,0.392237,0.893449,0.191101,0.575082,0.723342,0.685857,0.749108,0.418752,0.958076,0.0948904,0.179168,0.864673,0.607925,0.304889,0.806933,0.556064,0.130469,0.791817,0.183263,0.0594118,0.458084,0.0436642,0.949488,0.605001,0.798525,0.686848,0.619463,0.564074,0.0186545,0.935453,0.520935,0.476543,0.643028,0.103902,0.123613,0.294224,0.191707,0.443594,0.976325,0.0398679,0.968389,0.853832,0.157035,0.0184726,0.567791,0.653941,0.940728,0.533871,0.452957,0.39793,0.780431,0.461193,0.891416,0.351533,0.975317,0.930026,0.290959,0.979372,0.60491,0.298719,0.365689,0.825597,0.290052,0.947986,0.533638,0.812877,0.0230559,0.246198,0.384266,0.65657,0.436411,0.707047,0.844235,0.643536,0.848122,0.430652,0.940975,0.885405,0.521175,0.0709512,|0.806616,0.621161,0.274513,0.749525,0.87673,0.95466,0.685821,0.0360586,0.889033,0.96789,0.254601,0.130712,0.74866,0.663699,0.277847,0.526094,0.556133,0.484107,0.448843,0.872279,0.635606,0.775161,0.554499,0.465925,0.258268,0.630926,0.069712,0.708881,0.147116,0.805657,0.349858,0.441639,0.333671,0.121079,0.421032,0.880253,0.102804,0.830047,0.457951,0.417335,0.646548,0.828423,0.213032,0.88908,0.616818,0.330313,0.418989,0.916779,0.923749,0.283727,0.690615,0.15003,0.395259,0.359057,0.987485,0.9499,0.476993,0.619545,0.422363,0.800145,0.443263,0.492769,0.0353111,0.677361,0.540324,0.963933,0.401869,0.80378,0.295713,0.263233,0.00698578,0.730998,0.78294,0.260939,0.0639879,0.182373,0.544459,0.391698,0.541145,0.275313,0.442349,0.610699,0.0684016,0.83388,0.263298,0.615928,0.184246,0.58078,0.157224,0.723539,0.759724,0.180417,0.785558,0.75255,0.656932,0.62626,0.793185,0.893239,0.113793,0.767214,0.0218617,0.248044,0.222778,0.665471,0.794251,0.423598,0.381706,0.145891,0.751217,0.369342,0.412325,0.0427848,0.18982,0.726343,0.857386,0.374992,0.0385582,0.781126,0.957791,0.398097,0.649911,0.776286,0.226189,0.785766,0.647775,0.860114,0.157705,0.911204,0.934141,0.288613,0.294195,0.922861,0.41409,0.936451,0.702571,0.515811,0.199951,0.813726,0.754638,0.573675,0.758565,0.637686,0.0492777,0.822799,0.631856,0.151876,0.558143,0.469546,0.883802,0.315057,0.833538,0.102719,0.806652,0.615789,0.903607,0.271862,0.49432,0.837618,0.151344,0.499645,0.944059,0.278765,0.0670363,0.134469,0.24111,0.782114,0.322682,0.268387,0.356806,0.949237,0.277305,0.881158,0.153464,0.940739,0.427537,0.125674,0.181767,0.841295,0.302317,0.806404,0.479899,0.468918,0.0989003,0.337152,0.0934529,0.186568,0.248728,0.860259,0.0134438,0.743201,0.486556,0.292717,0.0799799,0.578458,0.251985,0.277893,0.321077,0.837925,0.0458561,0.712047,0.815034,0.140527,0.153547,0.201673,0.26691,0.49559,0.833042,0.769459,0.421696,0.684669,0.951628,0.349658,0.871096,0.977789,0.320435,0.204533,0.783557,0.566181,0.0845886,0.849361,0.00805527,0.48879,0.113458,0.011961,0.769878,0.502374,0.0489163,0.855398,0.973094,0.785182,0.642316,0.834517,0.264834,0.67006,0.132437,0.404668,0.728163,0.764645,0.518713,0.458951,0.948468,0.712086,0.0413693,0.0885453,0.636354,0.964843,0.314942,0.846406,0.191811,0.699796,0.409644,0.578626,0.839383,0.490699,0.574919,0.0474723,0.319965,0.61215,0.0671757,0.794443,0.296942,0.929863,0.102992,0.0581164,0.330317,0.66694,0.41252,0.545591,0.204334,0.508036,0.594811,0.478867,0.189459,0.39685,0.416861,0.935484,0.541863,0.741478,0.31155,0.505024,0.536703,0.890052,0.202243,0.205351,0.920079,0.737694,0.356407,0.523761,0.313372,0.430041,0.656315,0.474199,0.68845,0.541251,0.441763,0.188641,0.847332,0.733088,0.100568,0.891351,0.519221,0.806842,0.807254,0.0726382,0.717903,0.136787,0.357068,0.418426,0.336259,0.256142,0.509307,0.59002,0.928398,0.271945,0.758975,0.219792,0.654466,0.776587,0.17905,0.881365,0.987563,0.343592,0.629063,0.398474,0.179633,0.548538,0.724615,0.905264,0.190953,0.270992,0.978741,0.137558,0.709081,0.795941,0.166464,0.667961,0.21245,0.772274,0.93666,0.410496,0.62309,0.0355673,0.0213509,0.1613,0.977639,0.042955,0.426584,0.0247378,0.41594,0.877153,0.375936,0.75872,0.250742,0.240152,0.60226,0.385,0.939073,0.670319,0.0285462,0.497158,0.295286,0.406759,0.922257,0.284867,0.0730975,0.227025,0.846777,0.783478,0.946592,0.43718,0.422195,0.0859891,0.178249,0.316083,0.584594,0.97369,0.792754,0.938091,0.481518,0.551399,0.805136,0.265593,0.0936564,0.309999,0.280896,0.434736,0.0806574,0.274943,0.687528,0.319821,0.160755,0.662317,0.845761,0.845976,0.434648,0.180749,0.314848,0.176445,0.467757,0.58893,0.168238,0.619768,0.665663,0.300471,0.343998,0.184905,0.964639,0.296273,0.501941,0.535191,0.6324,0.93562,0.208564,0.688029,0.0958154,0.876878,0.248821,0.437385,0.282983,0.0723724,0.0853744,0.39213,0.090468,0.542747,0.241938,0.525156,0.197362,0.681318,0.977133,0.415805,0.80323,0.970654,0.344317,0.625422,0.420918,0.592213,0.475262,0.746775,0.221649,0.951678,0.472792,0.59965,0.865121,0.921709,0.450316,0.219704,0.695628,0.352146,0.799455,0.690255,0.207355,0.0410169,0.0622312,0.960396,0.391234,0.57641,0.531157,0.982009,0.777527,0.787597,0.0484987,0.163248,0.384189,0.17429,0.461542,0.660192,0.809141,0.673376,0.803633,0.294858,0.556544,0.263137,0.39535,0.52992,0.938549,0.271487,0.635971,0.148699,0.588885,0.561527,0.926957,0.856903,0.356338,0.530819,0.432643,0.696189,0.278972,0.870566,0.303675,0.960527,0.209512,0.163032,0.483417,0.51151,0.855079,0.123598,0.718889,0.204268,0.937628,0.139401,0.0469788,0.860389,0.430276,0.143411,0.858338,0.907585,0.305865,0.29231,0.217172,0.338653,0.849999,0.708183,0.321229,0.376891,0.391085,0.284793,0.94552,0.00358474,0.164658,0.0188843,0.435347,0.509995,0.497371,0.067805,0.304989,0.222456,0.337627,0.708473,0.0538558,0.909338,0.414294,0.889565,0.623521,0.760761,0.277237,0.306658,0.906337,0.215731,0.0201882,0.732735,0.788784,0.672129,0.878404,0.590422,0.334136,0.576428,0.0386864,0.629089,0.627034,0.463996,0.938114,0.060717,0.188106,0.642839,0.447861,0.143281,0.0835887,0.798755,0.408854,0.27214,0.457841,0.197138,0.876701,0.831247,0.135348,0.262144,0.532728,0.743024,0.0381255,0.179084,0.263459,0.791644,0.691645,0.238371,0.599822,0.897038,0.0328571,0.295664,0.372562,0.554441,0.547277,0.520305,0.26173,0.00857127,0.0491592,0.620796,0.898208,0.212629,0.531884,0.075864,0.529036,0.629366,0.845176,0.603803,0.388624,0.817453,0.948161,0.231442,0.486465,0.496037,0.119695,0.489103,0.0901956,0.387946,0.845276,0.254423,0.215179,0.97927,0.653319,0.765134,0.972548,0.763644,0.600153,0.683556,0.296721,0.876002,0.551584,0.405179,0.267667,0.172727,0.916286,0.739397,0.557049,0.153448,0.1708,0.656999,0.757591,0.943511,0.169333,0.0200998,0.37503,0.731905,0.285293,0.637593,0.954955,0.804291,0.427912,0.681984,0.978766,0.873674,0.168282,0.592098,0.736835,0.0294421,0.915357,0.523228,0.171444,0.229714,0.766594,0.334342,0.255644,0.857431,0.733154,0.790671,0.956121,0.396099,0.105257,0.806155,0.121051,0.600983,0.439146,0.617549,0.0519176,0.441731,0.279484,0.811247,0.156777,0.815076,0.412044,0.768814,0.140098,0.617612,0.172991,0.0752663,0.63733,0.663265,0.00810534,0.567204,0.355381,0.943478,0.104182,0.428245,0.6817,0.0363343,0.712928,0.394776,0.87817,0.538111,0.179653,0.506597,0.399915,0.52146,0.954221,0.148881,0.947102,0.41595,0.978633,0.417169,0.083374,0.77652,0.677595,0.634417,0.167892,0.858404,0.0437065,0.243291,0.321157,0.757701,0.493503,0.745665,0.745912,0.174325,0.372062,0.999669,0.733844,0.274114,0.664467,0.397225,0.1444,0.373729,0.229437,0.326843,0.0256051,0.800421,0.874808,0.935058,0.785524,0.00899297,0.986173,0.657503,0.892741,0.31645,0.569885,0.0742387,0.703731,0.894739,0.224981,0.714002,0.383113,0.395322,0.298401,0.927253,0.211299,0.509719,0.794914,0.682614,0.844672,0.185486,0.885986,0.763965,0.632312,0.0564486,0.0955942,0.124248,0.271726,0.595678,0.540579,0.336622,0.381921,0.14764,0.675949,0.086257,0.598493,0.0987852,0.0619071,0.110561,0.926208,0.857379,0.0946527,0.0893868,0.971043,0.343861,0.9451,0.739901,0.00606686,0.578628,0.91821,0.86679,0.23364,0.558172,0.122251,0.745053,0.90214,0.986511,0.161124,0.0583532,0.52413,0.552263,0.027786,0.663998,0.565887,0.198992,0.839999,0.369488,0.024958,0.681538,0.385,0.821491,0.361043,0.652449,0.0666725,0.535735,0.566233,0.665861,0.24225,0.145665,0.211175,0.384701,0.618794,0.606616,0.0928037,0.2036,0.777093,0.906684,0.335182,0.0656307,0.649221,0.0477469,0.31319,0.711023,0.343679,0.064655,0.225945,0.683163,0.424041,0.696875,0.24461,0.655121,0.442645,0.741039,0.136638,0.113441,0.841728,0.985966,0.318338,0.102255,0.0534875,0.972697,0.981485,0.188843,0.628316,0.943642,0.88714,0.617328,0.406405,0.188076,0.647972,0.894071,0.942735,0.60864,0.110556,0.104292,0.625289,0.432988,0.990156,0.155409,0.0328573,0.23883,0.0843024,0.491338,0.396592,0.767707,0.890305,0.427549,0.844728,0.0681559,0.161465,0.75697,0.098479,0.0824635,0.0888614,0.354093,0.844586,0.0782036,0.432547,0.963089,0.780624,0.305999,0.0361527,0.812113,0.324644,0.482857,0.363356,0.0292694,0.171856,0.988,0.743333,0.328667,0.314317,0.870229,0.444509,0.00701141,0.978354,0.288871,0.59108,0.633176,0.860789,0.548367,0.442802,0.335474,0.158101,0.163296,0.229345,0.774948,0.165458,0.712813,0.766695,0.835789,0.194091,0.11898,0.685144,0.672993,0.823865,0.687098,0.00289571,0.500803,0.277804,0.840871,0.176037,0.592963,0.12778,0.495944,0.260838,0.669531,0.741743,0.899951,0.630484,0.625904,0.924273,0.882218,0.993222,0.394131,0.851717,0.948897,0.817121,0.417703,0.247703,0.929553,0.25196,0.845313,0.546209,0.84471,0.264852,0.127076,0.418693,0.306137,0.102612,0.513112,0.452456,0.975639,0.599601,0.39731,0.499995,0.571372,0.0344883,0.12124,0.9139,0.641747,0.733053,0.373909,0.919277,0.118284,0.143072,0.277206,0.923519,0.760796,0.790555,0.699132,0.45243,0.395585,0.0600249,0.602597,0.612363,0.892642,0.225237,0.229803,0.455953,0.913301,0.09484,0.117855,0.134557,0.761592,0.0424589,0.384336,0.955725,0.712261,0.608303,0.639159,0.983044,0.838555,0.32508,0.914849,0.281117,0.664441,0.724147,0.221645,0.930879,0.99264,0.970694,0.742888,|0.46916,0.280766,0.233183,0.212362,0.750618,0.277919,0.860237,0.685586,0.526523,0.366385,0.645956,0.503192,0.734381,0.227993,0.20538,0.264123,0.087912,0.673832,0.175318,0.373498,0.228472,0.689621,0.779449,0.143953,0.773105,0.167061,0.629303,0.736668,0.244822,0.770259,0.803492,0.997934,0.433618,0.0748521,0.343299,0.844877,0.957192,0.104486,0.824665,0.974753,0.781105,0.0825872,0.714213,0.250983,0.725736,0.674689,0.736638,0.273753,0.838274,0.0665017,5.76973e-05,0.138261,0.587325,0.527348,0.130561,0.402213,0.0653039,0.011251,0.71366,0.355194,0.0422143,0.310732,0.0213326,0.101785,0.541362,0.525979,0.58785,0.316631,0.601812,0.50908,0.969622,0.269771,0.398524,0.373895,0.277399,0.790351,0.832648,0.142497,0.33051,0.67548,0.329651,0.164988,0.0336177,0.735934,0.883837,0.324328,0.235229,0.834803,0.633197,0.492627,0.2437,0.311745,0.128161,0.463241,0.68773,0.134114,0.143957,0.0135777,0.112914,0.160751,0.192027,0.752896,0.251003,0.83771,0.608704,0.0574625,0.222306,0.0658588,0.581207,0.312719,0.833599,0.527101,0.837851,0.532231,0.28151,0.834493,0.155688,0.798792,0.618554,0.932519,0.748426,0.694266,0.55003,0.471485,0.613409,0.889941,0.843448,0.190618,0.045171,0.703625,0.201459,0.609622,0.272845,0.27691,0.839773,0.0627149,0.99296,0.86398,0.222294,0.608067,0.150706,0.231723,0.686824,0.0367612,0.827586,0.458847,0.780491,0.404557,0.709848,0.849557,0.85032,0.625646,0.545774,0.245735,0.536615,0.85527,0.449535,0.702298,0.00213271,0.322542,0.8984,0.982508,0.743306,0.925603,0.0298408,0.602626,0.203862,0.496731,0.600632,0.466261,0.281061,0.331083,0.864188,0.424336,0.470184,0.654035,0.661562,0.970122,0.0902688,0.147471,0.21229,0.98705,0.852498,0.21258,0.148778,0.394899,0.0114293,0.614126,0.722322,0.0578241,0.239402,0.12892,0.490074,0.710268,0.618403,0.145939,0.416421,0.724408,0.410293,0.547361,0.885775,0.983841,0.236817,0.875724,0.381161,0.679841,0.388495,0.899265,0.946319,0.617523,0.334528,0.0674811,0.292016,0.891548,0.706435,0.603343,0.305988,0.71969,0.0956011,0.928674,0.687611,0.490436,0.391051,0.679998,0.930119,0.733181,0.520926,0.867145,0.018109,0.469192,0.905113,0.511279,0.992951,0.860436,0.119914,0.568641,0.511542,0.294189,0.676159,0.965404,0.575119,0.0678204,0.176519,0.956698,0.609174,0.107688,0.245831,0.859401,0.937334,0.217171,0.162282,0.569441,0.186339,0.181872,0.1401,0.683342,0.540911,0.382316,0.00231647,0.826201,0.799291,0.365209,0.702935,0.396452,0.816663,0.252782,0.319936,0.457742,0.298463,0.674534,0.991428,0.85445,0.648925,0.971435,0.291599,0.82641,0.644126,0.218849,0.112932,0.974115,0.514244,0.13563,0.265869,0.514198,0.36861,0.979009,0.612323,0.838978,0.408839,0.311943,0.557137,0.227631,0.553355,0.378042,0.889909,0.13714,0.409869,0.858394,0.431396,0.545557,0.20014,0.656152,0.222558,0.502648,0.0687682,0.416014,0.202938,0.642782,0.829692,0.843247,0.191871,0.23373,0.431486,0.913662,0.701731,0.335265,0.200175,0.292116,0.0522518,0.818824,0.922308,0.684029,0.810256,0.444449,0.30243,0.44901,0.524414,0.664521,0.108365,0.317849,0.387743,0.691788,0.884897,0.479131,0.758749,0.293368,0.642607,0.940204,0.0317857,0.408108,0.0649186,0.436811,0.300888,0.803404,0.552366,0.447848,0.629437,0.958099,0.303768,0.643424,0.608354,0.828261,0.790825,0.491259,0.87954,0.397074,0.0851727,0.845809,0.602241,0.56019,0.641971,0.381965,0.79126,0.00980848,0.813267,0.236171,0.218921,0.247108,0.869651,0.17934,0.273074,0.253456,0.720518,0.118524,0.443831,0.228005,0.703428,0.14012,0.676903,0.396407,0.201432,0.40215,0.533643,0.167353,0.802002,0.536404,0.899001,0.311797,0.297767,0.13084,0.530289,0.759419,0.207737,0.737154,0.582102,0.532213,0.0221508,0.146755,0.480426,0.691643,0.446908,0.231923,0.491383,0.177026,0.537686,0.101507,0.525844,0.669603,0.266368,0.431696,0.994565,0.662081,0.56022,0.3703,0.21306,0.60828,0.641112,0.461922,0.94908,0.883088,0.844108,0.468413,0.211682,0.699664,0.372252,0.87238,0.434962,0.374475,0.961986,0.0159965,0.308951,0.820928,0.854575,0.61709,0.213601,0.0687335,0.439636,0.725985,0.950093,0.861343,0.172094,0.664113,0.290759,0.729241,0.351123,0.0593209,0.658077,0.436678,0.663838,0.996144,0.122467,0.0651471,0.7808,0.494641,0.785283,0.359773,0.765372,0.624504,0.459,0.222401,0.239012,0.277708,0.245066,0.763881,0.504602,0.19658,0.320805,0.902129,0.81602,0.921969,0.60215,0.59008,0.737203,0.838164,0.729303,0.751188,0.206382,0.971082,0.587895,0.30043,0.740078,0.538031,0.0595569,0.795829,0.889179,0.714204,0.0375288,0.196021,0.174796,0.763449,0.256268,0.0904677,0.52277,0.506096,0.806962,0.66813,0.144638,0.527887,0.0450158,0.80685,0.404714,0.168314,0.87186,0.843979,0.872927,0.389042,0.188668,0.363089,0.423146,0.506807,0.148283,0.490466,0.222508,0.987693,0.292997,0.0224857,0.555953,0.991527,0.945561,0.929257,0.204287,0.105533,0.710549,0.136102,0.0186924,0.235659,0.441076,0.389307,0.287042,0.667392,0.889244,0.929779,0.818884,0.0102987,0.33953,0.380028,0.0573329,0.0688859,0.183951,0.690541,0.716133,0.517939,0.608133,0.673958,0.938816,0.475588,0.402261,0.630105,0.916473,0.531749,0.748085,0.521619,0.411669,0.407077,0.27727,0.624937,0.540614,0.143953,0.677126,0.940565,0.948725,0.157252,0.969327,0.410259,0.554336,0.0693253,0.0135966,0.134624,0.924269,0.899011,0.0153995,0.162019,0.558221,0.889486,0.218949,0.749131,0.744494,0.311303,0.237663,0.301468,0.295306,0.819011,0.924357,0.197473,0.819208,0.803648,0.993506,0.310138,0.953591,0.49606,0.290066,0.733644,0.144563,0.403684,0.566438,0.904758,0.262189,0.202543,0.520908,0.85982,0.977995,0.417538,0.696503,0.0242717,0.451463,0.741416,0.346982,0.450963,0.914492,0.887883,0.884403,0.589487,0.407827,0.605224,0.831892,0.620418,0.879411,0.877432,0.880013,0.712084,0.761143,0.583973,0.441028,0.163941,0.549863,0.702932,0.96148,0.499218,0.284218,0.722534,0.595524,0.89434,0.296537,0.432948,0.814497,0.335085,0.912063,0.133778,0.20924,0.318928,0.980142,0.569295,0.356171,0.808142,0.202066,0.176769,0.781427,0.204167,0.288427,0.53627,0.546991,0.156807,0.627325,0.52964,0.84071,0.166981,0.886845,0.873371,0.9008,0.662409,0.070433,0.434119,0.758366,0.282783,0.363112,0.707755,0.44492,0.0408024,0.753866,0.396876,0.204187,0.571631,0.775842,0.56092,0.404026,0.431316,0.876498,0.480261,0.672658,0.61288,0.264053,0.726983,0.0376093,0.312884,0.221521,0.631084,0.867475,0.204213,0.654805,0.326651,0.731639,0.311546,0.978905,0.480935,0.604661,0.441516,0.0274541,0.845467,0.53313,0.187648,0.316348,0.799947,0.179446,0.77359,0.0930595,0.757587,0.0663934,0.863039,0.332768,0.829894,0.152827,0.263515,0.949283,0.172851,0.20656,0.21893,0.629203,0.455148,0.959341,0.616017,0.114887,0.440799,0.756594,0.770758,0.155194,0.584584,0.652887,0.616651,0.308019,0.155297,0.825373,0.992446,0.805108,0.80445,0.868873,0.643753,0.831436,0.0454112,0.649057,0.231865,0.418908,0.404295,0.48772,0.33124,0.780356,0.0744029,0.675063,0.757318,0.487778,0.29183,0.900465,0.564955,0.400097,0.974857,0.142597,0.0818227,0.979992,0.502923,0.0233615,0.930724,0.918897,0.214797,0.245987,0.12927,0.0895361,0.95396,0.221545,0.718275,0.352885,0.359233,0.614293,0.706699,0.454143,0.361416,0.986197,0.970179,0.134497,0.285058,0.40256,0.00376171,0.857982,0.907195,0.992644,0.810665,0.42729,0.00320178,0.411052,0.508172,0.338351,0.78866,0.693464,0.302755,0.30284,0.234685,0.375336,0.721023,0.792539,0.424272,0.106447,0.677779,0.00695246,0.269433,0.27834,0.432839,0.564393,0.448532,0.578485,0.171824,0.455125,0.129951,0.589177,0.389164,0.328231,0.280969,0.970141,0.580346,0.70261,0.310079,0.919603,0.00446522,0.0872281,0.561586,0.386938,0.042154,0.744269,0.411181,0.7362,0.14789,0.831421,0.547427,0.320159,0.564457,0.599222,0.38443,0.324807,0.316742,0.36205,0.050869,0.0846525,0.185104,0.0310283,0.718845,0.518075,0.934785,0.610289,0.809814,0.763942,0.559104,0.631925,0.217353,0.703949,0.831282,0.888269,0.776136,0.98203,0.77686,0.203964,0.106898,0.500206,0.701981,0.419627,0.902349,0.16793,0.34939,0.434683,0.805721,0.221155,0.597829,0.938016,0.882033,0.199353,0.536919,0.678599,0.436343,0.0407069,0.721527,0.64618,0.859129,0.13305,0.810904,0.29203,0.786429,0.195285,0.253393,0.723667,0.107775,0.221509,0.225115,0.0363245,0.471559,0.160317,0.317654,0.647784,0.111325,0.712737,0.29931,0.75621,0.0705091,0.296494,0.12702,0.498102,0.809452,0.613355,0.773857,0.640889,0.182734,0.678495,0.794233,0.515441,0.468381,0.862692,0.962303,0.30891,0.382815,0.720015,0.167575,0.119137,0.091555,0.406843,0.616215,0.145445,0.0123323,0.156719,0.759183,0.303485,0.45673,0.169719,0.714747,0.300945,0.871768,0.131463,0.661886,0.822286,0.625608,0.288806,0.338126,0.637604,0.067584,0.0033623,0.0103655,0.531828,0.114811,0.653009,0.767772,0.474299,0.246628,0.210134,0.287169,0.722759,0.406449,0.223282,0.0787589,0.970293,0.288394,0.476562,0.276778,0.0463723,0.00950509,0.862126,0.0887719,0.133709,0.591677,0.835511,0.0608048,0.908526,0.655622,0.697709,0.939762,0.533762,0.395772,0.328388,0.477233,0.959698,0.820202,0.687802,0.516093,0.91549,0.124066,0.962866,0.876146,0.881017,0.755908,0.774631,0.112092,0.969683,0.375466,0.0072611,0.966582,0.251889,0.525628,0.82115,0.198541,0.817517,0.513711,0.826928,0.335516,0.0828382,0.193609,0.167783,0.0433781,|0.0779964,0.442814,0.811706,0.653808,0.450306,0.038243,0.892971,0.925301,0.689849,0.866839,0.604121,0.766015,0.109284,0.208978,0.936325,0.13675,0.0443268,0.326926,0.369961,0.204085,0.0431815,0.410961,0.149154,0.996405,0.736766,0.326946,0.707016,0.637153,0.679062,0.549082,0.924154,0.00981158,0.0941993,0.715975,0.140352,0.74254,0.0971051,0.714762,0.570469,0.509245,0.611607,0.0909814,0.484395,0.097595,0.0510628,0.647235,0.935622,0.030583,0.938806,0.409774,0.494596,0.62355,0.826535,0.791336,0.152842,0.291253,0.790802,0.850947,0.297537,0.538422,0.247083,0.860683,0.471799,0.815143,0.681397,0.885236,0.745969,0.804707,0.694419,0.653823,0.651198,0.898346,0.0605173,0.926831,0.710457,0.204323,0.105533,0.300746,0.27844,0.534801,0.544303,0.818834,0.0851011,0.622206,0.0601767,0.0425904,0.0397807,0.589748,0.920588,0.540286,0.980549,0.845171,0.716203,0.693115,0.0266557,0.185364,0.87344,0.806314,0.116605,0.753812,0.321359,0.041963,0.310527,0.294553,0.900358,0.953891,0.896819,0.576729,0.0804288,0.48472,0.603075,0.240092,0.825277,0.890026,0.442363,0.599828,0.421782,0.813465,0.71869,0.0868827,0.83311,0.907698,0.927394,0.223518,0.0470398,0.778464,0.322277,0.317683,0.95447,0.948339,0.604717,0.458117,0.349089,0.451119,0.247095,0.169844,0.922062,0.752149,0.298551,0.307393,0.479839,0.378343,0.69407,0.378386,0.264858,0.458161,0.152374,0.666057,0.555388,0.813559,0.852568,0.109417,0.621063,0.0417764,0.613679,0.660966,0.198533,0.399107,0.031814,0.908705,0.989673,0.386581,0.0795351,0.37621,0.459384,0.945926,0.412901,0.268041,0.0303883,0.341494,0.135972,0.0137046,0.517624,0.0195516,0.128444,0.981717,0.319176,0.0130397,0.182749,0.38084,0.154646,0.530013,0.230109,0.964729,0.952009,0.37563,0.139699,0.74032,0.171769,0.847018,0.567805,0.251932,0.0582599,0.179866,0.381133,0.503202,0.141611,0.280496,0.400685,0.585937,0.658413,0.647527,0.845851,0.11983,0.519945,0.307161,0.701315,0.266085,0.21734,0.818783,0.0798519,0.87458,0.567417,0.548667,0.409423,0.495998,0.528082,0.0262707,0.310971,0.366703,0.540111,0.888092,0.742033,0.951745,0.382026,0.817306,0.300526,0.355935,0.42772,0.874243,0.453963,0.829138,0.572858,0.373383,0.440575,0.840933,0.431897,0.388991,0.963301,0.828967,0.20438,0.320587,0.763852,0.411681,0.990571,0.560275,0.980604,0.562338,0.782443,0.038783,0.343436,0.982886,0.0992662,0.771666,0.34324,0.146161,0.738613,0.954227,0.314654,0.519385,0.969334,0.557687,0.229392,0.144946,0.957355,0.892887,0.638143,0.774519,0.804845,0.979166,0.591161,0.665038,0.87431,0.960963,0.530193,0.424777,0.193384,0.953682,0.534343,0.907595,0.678875,0.972109,0.578771,0.905173,0.691665,0.877586,0.252902,0.978851,0.309251,0.309554,0.0614603,0.756607,0.0948954,0.277974,0.999529,0.730241,0.842303,0.734842,0.161005,0.793266,0.782569,0.444575,0.998822,0.0103119,0.728054,0.146634,0.225454,0.978329,0.136204,0.622038,0.678731,0.699036,0.340635,0.732551,0.750259,0.605178,0.0458748,0.572846,0.408728,0.61921,0.289399,0.409066,0.00897312,0.166986,0.220055,0.0416882,0.110846,0.156538,0.409188,0.218763,0.598753,0.70945,0.664405,0.304187,0.961862,0.779694,0.86796,0.743362,0.284631,0.325791,0.70237,0.834786,0.78688,0.705701,0.448118,0.936485,0.82027,0.233412,0.694063,0.130305,0.698224,0.693175,0.848542,0.444539,0.302107,0.925977,0.502869,0.213155,0.614681,0.0382054,0.136859,0.256709,0.240514,0.899125,0.174884,0.279094,0.611594,0.714031,0.273089,0.533969,0.00660974,0.174362,0.112363,0.48674,0.509845,0.203556,0.766372,0.864484,0.977726,0.660134,0.753863,0.366602,0.864274,0.219905,0.170572,0.871897,0.555833,0.0395129,0.408965,0.234799,0.820819,0.663967,0.601474,0.789097,0.625078,0.792568,0.735178,0.496442,0.797735,0.699728,0.416032,0.789789,0.116759,0.944523,0.395863,0.616137,0.998752,0.475582,0.474202,0.625551,0.818751,0.24068,0.0336293,0.218635,0.303682,0.0154843,0.711579,0.00538206,0.976376,0.725557,0.770514,0.593431,0.0702699,0.223808,0.377476,0.962631,0.27819,0.932778,0.068711,0.726043,0.017922,0.231842,0.988516,0.213562,0.643188,0.225177,0.236568,0.766356,0.751663,0.0323074,0.0976557,0.684773,0.497419,0.956747,0.381396,0.190279,0.340693,0.504834,0.486077,0.57657,0.0385084,0.690226,0.980683,0.160823,0.432095,0.867722,0.436253,0.66696,0.833145,0.661665,0.279477,0.904729,0.432863,0.80753,0.496099,0.678279,0.0154832,0.664969,0.734504,0.999469,0.195221,0.181163,0.117922,0.592551,0.752532,0.271063,0.774413,0.594016,0.0145766,0.173561,0.352653,0.412165,0.238277,0.333628,0.0459477,0.624986,0.535611,0.224647,0.123474,0.927967,0.0164306,0.356755,0.105441,0.897139,0.771527,0.0363012,0.148296,0.715143,0.936546,0.874488,0.141896,0.754784,0.784989,0.831013,0.933936,0.0407192,0.472154,0.446185,0.60012,0.905002,0.611779,0.968891,0.844728,0.167049,0.521146,0.93914,0.177914,0.648226,0.764294,0.424038,0.287128,0.665639,0.586005,0.734835,0.831681,0.0409205,0.680561,0.0183524,0.947035,0.643136,0.51479,0.686421,0.640038,0.00663441,0.323793,0.889679,0.136953,0.115291,0.454755,0.638319,0.56926,0.887548,0.711196,0.592667,0.556363,0.917306,0.956255,0.593023,0.266049,0.14625,0.487769,0.814986,0.428304,0.182483,0.636087,0.6536,0.0958651,0.371182,0.967435,0.997906,0.599212,0.635444,0.109648,0.527063,0.267325,0.958433,0.543897,0.792851,0.976269,0.809831,0.611619,0.707026,0.688608,0.0633032,0.663229,0.186342,0.45706,0.990294,0.721611,0.426513,0.840915,0.648424,0.20473,0.926726,0.302817,0.316877,0.528782,0.594591,0.699317,0.19875,0.500975,0.628494,0.656108,0.223804,0.0574645,0.777547,0.672437,0.223801,0.519621,0.665507,0.785924,0.902858,0.663402,0.0991443,0.0490169,0.993219,0.0427921,0.625348,0.0497653,0.569758,0.823791,0.89207,0.013846,0.654981,0.188309,0.185328,0.424168,0.522149,0.457706,0.33824,0.718149,0.48067,0.309925,0.903934,0.565508,0.715365,0.834114,0.561536,0.869877,0.567644,0.426326,0.92788,0.0510357,0.924639,0.265448,0.579007,0.740388,0.941201,0.501061,0.355376,0.188368,0.799063,0.497186,0.374489,0.31029,0.936898,0.237079,0.493693,0.652995,0.149124,0.0219497,0.668308,0.745995,0.856366,0.116215,0.216459,0.785443,0.126505,0.977137,0.281366,0.450514,0.0191368,0.744883,0.701435,0.00829643,0.37099,0.414839,0.331699,0.726608,0.491899,0.502211,0.641465,0.674643,0.316973,0.895293,0.579646,0.616567,0.560939,0.577683,0.0263872,0.0178066,0.155757,0.0425305,0.446804,0.0628584,0.792061,0.789913,0.698149,0.962539,0.591802,0.167354,0.555908,0.107687,0.100471,0.335166,0.216491,0.8668,0.376644,0.221077,0.789507,0.889911,0.753729,0.828729,0.698463,0.439107,0.869326,0.912187,0.728819,0.0150612,0.0621622,0.812516,0.508413,0.940425,0.983625,0.514553,0.0230168,0.237815,0.0961603,0.710186,0.0578898,0.100189,0.587097,0.879328,0.134563,0.511399,0.15052,0.00506037,0.797944,0.333492,0.408838,0.603688,0.807627,0.798645,0.0664871,0.561819,0.877541,0.298414,0.364518,0.886554,0.757252,0.479949,0.166228,0.193876,0.859153,0.236672,0.62397,0.0557193,0.705612,0.483492,0.397356,0.0455856,0.746478,0.187248,0.135044,0.375457,0.989596,0.84531,0.185635,0.870227,0.958771,0.888777,0.657745,0.421639,0.84759,0.55463,0.733022,0.440431,0.91884,0.658084,0.654118,0.9769,0.584723,0.376531,0.560832,0.786846,0.357368,0.586886,0.765929,0.497303,0.693058,0.179584,0.0144749,0.0239897,0.948729,0.929176,0.441807,0.5083,0.133363,0.270007,0.385507,0.0326782,0.567965,0.403653,0.409577,0.928036,0.486252,0.479549,0.946517,0.0611393,0.428253,0.81404,0.880364,0.270272,0.254941,0.255156,0.676661,0.694848,0.554875,0.207361,0.95094,0.789964,0.537042,0.550597,0.271918,0.883812,0.611732,0.398491,0.0781361,0.86276,0.0189841,0.915301,0.382464,0.394914,0.675279,0.217643,0.414463,0.810911,0.352722,0.644362,0.418066,0.658901,0.482318,0.581887,0.64557,0.751262,0.772798,0.996333,0.654707,0.777164,0.695906,0.373332,0.391979,0.0838255,0.933326,0.799031,0.800263,0.356023,0.164002,0.280675,0.670679,0.768308,0.300717,0.727589,0.15324,0.858432,0.908774,0.423699,0.159645,0.681611,0.708472,0.876789,0.128089,0.378662,0.0936351,0.826879,0.231154,0.0182375,0.448859,0.167309,0.344168,0.514326,0.108198,0.375096,0.226851,0.343298,0.0601355,0.141781,0.802939,0.544177,0.36736,0.907204,0.4535,0.715602,0.727198,0.895539,0.430382,0.399042,0.0105322,0.0151191,0.196743,0.19053,0.609663,0.364389,0.432136,0.387205,0.541156,0.253902,0.329785,0.108382,0.498746,0.331778,0.563399,0.722302,0.057259,0.235756,0.660268,0.445489,0.924681,0.796603,0.108773,0.936299,0.694986,0.10438,0.073908,0.267761,0.604012,0.591509,0.919094,0.258925,0.673458,0.139605,0.0143374,0.432489,0.744094,0.922695,0.880509,0.92965,0.0755669,0.226599,0.294377,0.0859765,0.918794,0.284245,0.583191,0.778631,0.253413,0.618737,0.651945,0.19708,0.063319,0.615178,0.243159,0.0004614,0.718201,0.200978,0.103597,0.893451,0.335451,0.766091,0.465696,0.797796,0.274531,0.120622,0.190503,0.248322,0.0576867,0.173851,0.391479,0.919828,0.779539,0.526523,0.33099,0.677189,0.290551,0.681893,0.239911,0.169846,0.787443,0.336357,0.553027,0.872851,0.150665,0.0160928,0.994092,0.0798405,0.67403,0.00698543,0.824342,0.36721,0.106731,0.685851,0.48488,0.138583,0.298924,0.200151,0.825951,0.155049,0.328075,0.993272,0.119281,0.683598,0.049992,0.853764,0.262501,0.0225437,0.196629,0.901559,0.297527,0.796755,0.432844,|0.329009,0.813563,0.226317,0.61063,0.580856,0.0435843,0.90121,0.853767,0.0242456,0.820751,0.712538,0.0543416,0.565112,0.926281,0.452552,0.973864,0.60081,0.011044,0.19591,0.661302,0.236725,0.0751584,0.0266292,0.401728,0.729018,0.63026,0.691143,0.0514287,0.118982,0.253729,0.923943,0.552747,0.530948,0.843952,0.626535,0.0876209,0.193209,0.12509,0.307324,0.463045,0.0149937,0.0206779,0.520197,0.24847,0.82026,0.945754,0.0920942,0.741316,0.337334,0.612709,0.188101,0.835187,0.796959,0.994141,0.270598,0.819395,0.282572,0.9569,0.303378,0.503709,0.0309355,0.251998,0.575892,0.157412,0.855483,0.178129,0.428968,0.906258,0.913941,0.90808,0.412625,0.601817,0.474913,0.603195,0.262522,0.0469414,0.898879,0.684342,0.0858039,0.612926,0.828636,0.962867,0.543057,0.408037,0.961908,0.464495,0.505643,0.338274,0.237426,0.226152,0.279762,0.394191,0.530459,0.733967,0.347997,0.919348,0.379645,0.910359,0.0100779,0.709955,0.652938,0.312034,0.565599,0.962139,0.107836,0.982512,0.101647,0.965183,0.364214,0.533055,0.762626,0.0684558,0.611971,0.477706,0.346168,0.240217,0.168762,0.224988,0.327794,0.401105,0.672676,0.429815,0.24396,0.330905,0.690594,0.114657,0.191013,0.221292,0.404681,0.298655,0.869492,0.977263,0.193677,0.45013,0.303479,0.481018,0.972936,0.490116,0.435655,0.339109,0.77133,0.279255,0.681943,0.926598,0.0601496,0.0809398,0.264706,0.325719,0.34884,0.946263,0.0725412,0.0248037,0.92714,0.796231,0.279009,0.267222,0.0941674,0.0122163,0.0067718,0.482764,0.847422,0.781827,0.529027,0.17002,0.269628,0.26184,0.202441,0.506932,0.67117,0.695356,0.956139,0.497481,0.505565,0.697238,0.392464,0.72016,0.218798,0.908975,0.713659,0.396757,0.872027,0.956248,0.56199,0.647809,0.455451,0.225164,0.520811,0.0929202,0.862435,0.181961,0.281768,0.960702,0.783037,0.0373221,0.0584214,0.390216,0.43852,0.89661,0.352141,0.702884,0.898063,0.490032,0.925344,0.858317,0.972585,0.618128,0.138303,0.0895678,0.191419,0.865849,0.239434,0.0300767,0.932965,0.505494,0.165252,0.495756,0.351994,0.631216,0.840912,0.040926,0.236767,0.0641719,0.0180521,0.613192,0.212355,0.396916,0.985171,0.638954,0.434899,0.445683,0.330817,0.429631,0.784793,0.551184,0.607846,0.465195,0.757391,0.622991,0.567168,0.107325,0.624759,0.334358,0.204612,0.595101,0.039896,0.235093,0.576074,0.0877891,0.283743,0.550888,0.394065,0.479417,0.655562,0.602536,0.775817,0.692464,0.550251,0.11144,0.631842,0.775918,0.578622,0.0609012,0.777653,0.0467722,0.139798,0.498411,0.61448,0.765001,0.592393,0.0242316,0.622518,0.466107,0.423363,0.0635737,0.938663,0.663753,0.597779,0.462419,0.45437,0.483099,0.208197,0.665131,0.230354,0.812333,0.906717,0.453411,0.745194,0.381327,0.504029,0.96477,0.867152,0.143675,0.140145,0.33757,0.314022,0.639043,0.131091,0.444398,0.309773,0.283821,0.489443,0.696639,0.455675,0.427384,0.187827,0.16027,0.991503,0.322841,0.995817,0.914539,0.759124,0.150214,0.234811,0.902848,0.510771,0.663116,0.403225,0.0366535,0.471471,0.348524,0.683222,0.2412,0.75858,0.121636,0.245728,0.502142,0.722004,0.552255,0.20727,0.402191,0.701371,0.420405,0.751167,0.927131,0.682083,0.453674,0.0351398,0.155957,0.743202,0.0559224,0.0337288,0.345794,0.109852,0.328749,0.533629,0.757879,0.565675,0.0293564,0.703488,0.310279,0.327023,0.881347,0.106997,0.0809779,0.387739,0.416212,0.637764,0.126419,0.332569,0.338953,0.421093,0.719872,0.644962,0.50472,0.407135,0.80424,0.0684576,0.212465,0.751216,0.499267,0.17688,0.765189,0.14589,0.889437,0.424801,0.20174,0.553947,0.477274,0.78555,0.343523,0.615751,0.117698,0.56721,0.085112,0.941395,0.881706,0.678759,0.0339686,0.989366,0.531707,0.511269,0.259721,0.640582,0.241501,0.605102,0.602541,0.167729,0.843713,0.326361,0.733714,0.041473,0.131388,0.656024,0.386773,0.120213,0.478622,0.0518585,0.898874,0.672322,0.112873,0.38287,0.0430452,0.946132,0.466035,0.257765,0.605,0.395018,0.39287,0.90952,0.915254,0.574155,0.211564,0.70675,0.246138,0.863429,0.425561,0.0564042,0.896697,0.298984,0.710123,0.963181,0.997443,0.344325,0.762815,0.515596,0.94468,0.396995,0.153099,0.708017,0.631192,0.667005,0.657966,0.106301,0.46567,0.339363,0.43581,0.521607,0.47958,0.218497,0.982838,0.0754662,0.999028,0.323679,0.486697,0.361732,0.794558,0.262509,0.443767,0.220059,0.48677,0.294619,0.415273,0.823708,0.908245,0.600385,0.51708,0.144209,0.85179,0.283156,0.885099,0.774812,0.52529,0.47319,0.145491,0.302285,0.315629,0.867286,0.461152,0.838627,0.18931,0.098754,0.496832,0.933806,0.0693141,0.0221741,0.597728,0.875256,0.341651,0.977627,0.881211,0.164813,0.519835,0.510163,0.683455,0.922645,0.229678,0.284016,0.985148,0.978638,0.658143,0.181192,0.776085,0.561749,0.929796,0.0614666,0.760911,0.79622,0.205707,0.506865,0.288438,0.970885,0.559572,0.597272,0.322607,0.932465,0.997651,0.262967,0.891523,0.183553,0.16315,0.00478035,0.164133,0.198498,0.955544,0.800516,0.807935,0.347755,0.314681,0.375889,0.446211,0.474061,0.211043,0.734253,0.78221,0.0291805,0.656637,0.514261,0.661283,0.706592,0.875034,0.508585,0.554632,0.124203,0.934893,0.0977709,0.528061,0.36126,0.0485908,0.765948,0.545924,0.448564,0.496726,0.899472,0.0181401,0.372261,0.69279,0.37281,0.462885,0.953092,0.491983,0.422676,0.0842494,0.383777,0.41325,0.0501133,0.304809,0.634083,0.307157,0.515016,0.359026,0.648222,0.99153,0.886714,0.518067,0.877572,0.0254564,0.378018,0.736508,0.550242,0.436846,0.0590555,0.0593517,0.342508,0.208435,0.194024,0.0640334,0.410562,0.467704,0.896752,0.0248848,0.935255,0.958185,0.0483635,0.532512,0.0472347,0.161115,0.166723,0.234965,0.429492,0.77505,0.648728,0.980708,0.710947,0.119435,0.567397,0.489679,0.69026,0.902737,0.0324715,0.93114,0.558509,0.160335,0.735402,0.342297,0.674676,0.26052,0.629986,0.916936,0.584252,0.192965,0.966399,0.533536,0.911598,0.15211,0.735477,0.0869215,0.316623,0.999764,0.651154,0.183982,0.0150471,0.167299,0.270008,0.253538,0.532859,0.0998605,0.660554,0.18466,0.844676,0.112658,0.913565,0.76081,0.0706458,0.700534,0.401266,0.332578,0.488456,0.743963,0.239081,0.856911,0.551769,0.454533,0.535053,0.34084,0.0822001,0.682238,0.222835,0.329421,0.236908,0.357247,0.240781,0.997054,0.0227988,0.983062,0.950217,0.0544642,0.490392,0.854369,0.255503,0.575262,0.731833,0.264246,0.157042,0.0477983,0.843081,0.0440077,0.513172,0.907662,0.496725,0.658483,0.666483,0.774981,0.352474,0.720757,0.937659,0.684923,0.437071,0.513631,0.0117168,0.32003,0.717896,0.231183,0.779173,0.570698,0.0976478,0.349272,0.683867,0.326983,0.617504,0.841388,0.381775,0.555251,0.91644,0.856696,0.371114,0.822051,0.410627,0.651919,0.206706,0.399375,0.216577,0.337234,0.841069,0.506551,0.267378,0.648985,0.250186,0.0920082,0.436462,0.208782,0.25273,0.603095,0.465712,0.925892,0.685219,0.112618,0.196132,0.301091,0.48401,0.334255,0.714232,0.287344,0.178015,0.916538,0.388363,0.889045,0.196067,0.428484,0.915409,0.612818,0.799936,0.278031,0.359019,0.931027,0.468357,0.338161,0.387518,0.436185,0.785694,0.913726,0.568054,0.647435,0.290599,0.499522,0.672868,0.195703,0.0734971,0.421831,0.582411,0.794998,0.619342,0.060174,0.175269,0.846433,0.856696,0.279388,0.069747,0.67674,0.690405,0.75157,0.617311,0.606028,0.138475,0.970667,0.677725,0.0409176,0.757212,0.288278,0.21298,0.783291,0.488267,0.849063,0.696641,0.246504,0.894142,0.35611,0.917727,0.914878,0.667823,0.925871,0.528471,0.250572,0.443407,0.827903,0.329529,0.746839,0.223552,0.454576,0.794945,0.164545,0.373673,0.312617,0.901421,0.656821,0.440187,0.791492,0.476572,0.116361,0.869516,0.606803,0.884908,0.418211,0.6442,0.684993,0.487513,0.865158,0.856825,0.127123,0.650098,0.12793,0.991098,0.332205,0.398226,0.794607,0.336782,0.272844,0.142625,0.363057,0.232913,0.910088,0.839352,0.679486,0.732389,0.151978,0.614817,0.945363,0.429841,0.976972,0.925871,0.0691745,0.277449,0.344748,0.678095,0.0359551,0.749787,0.0248968,0.523654,0.878759,0.165174,0.692434,0.339883,0.0457935,0.405713,0.00808775,0.324633,0.420598,0.620424,0.594433,0.494052,0.181353,0.978103,0.185421,0.471511,0.680371,0.427018,0.921043,0.624328,0.0879408,0.330737,0.1027,0.216731,0.332308,0.75947,0.61954,0.970843,0.442613,0.590104,0.584711,0.505448,0.370095,0.98359,0.446987,0.420281,0.41723,0.0405076,0.163079,0.825743,0.900212,0.475032,0.815849,0.932799,0.569233,0.933092,0.990063,0.385179,0.831204,0.490003,0.929917,0.219372,0.928454,0.121958,0.175044,0.310894,0.382368,0.497112,0.29138,0.771608,0.629072,0.515495,0.777467,0.860375,0.634883,0.508182,0.246998,0.743774,0.768013,0.609234,0.67927,0.0761408,0.788093,0.711546,0.956761,0.20987,0.350456,0.707978,0.784111,0.761842,0.312091,0.438216,0.293096,0.842731,0.959769,0.194145,0.786321,0.34225,0.709135,0.592295,0.982936,0.522255,0.477556,0.540146,0.356995,0.168725,0.108241,0.187284,0.0127882,0.733686,0.987557,0.32172,0.725053,0.299727,0.0355445,0.900429,0.0257533,0.937715,0.954717,0.123415,0.303451,0.139443,0.417793,0.79231,0.656158,0.977022,0.380754,0.37188,0.216405,0.961787,0.348482,0.716473,0.865691,0.0135184,0.0537279,0.0386901,0.369684,0.555736,0.157287,0.103035,0.739927,0.935286,0.980611,0.29919,0.884647,0.429131,0.181195,0.380457,0.0456822,0.0554264,0.0184235,0.0995478,0.00525296,0.387379,0.422907,0.758925,0.796757,0.482472,0.437227,0.009152,0.443063,0.700362,0.791133,|0.0700399,0.516314,0.978099,0.658868,0.228701,0.152022,0.501174,0.798988,0.549966,0.654948,0.417731,0.567078,0.207048,0.528169,0.166647,0.304007,0.187843,0.936819,0.785117,0.451204,0.882506,0.855499,0.434879,0.848429,0.295758,0.9299,0.980251,0.0966405,0.101665,0.369728,0.759047,0.0452967,0.25993,0.177739,0.119028,0.34217,0.836696,0.0057987,0.779771,0.264759,0.183574,0.179558,0.789244,0.765371,0.710348,0.268504,0.434712,0.105029,0.240972,0.981877,0.163254,0.50871,0.541081,0.185868,0.976655,0.507328,0.746238,0.71972,0.740962,0.447041,0.798392,0.960201,0.832379,0.576643,0.375057,0.614367,0.633513,0.831342,0.224674,0.722611,0.839174,0.816956,0.667867,0.975705,0.693963,0.100611,0.158407,0.430155,0.385513,0.797779,0.838492,0.890803,0.911424,0.634277,0.466088,0.189506,0.443626,0.34575,0.745444,0.347928,0.291347,0.922857,0.255942,0.573878,0.183206,0.024441,0.494422,0.277734,0.849077,0.0999458,0.915128,0.761815,0.716543,0.678738,0.973935,0.249139,0.751161,0.667252,0.662127,0.440493,0.365436,0.7027,0.478903,0.959142,0.719192,0.486121,0.471101,0.0426556,0.738775,0.910602,0.498739,0.487089,0.829438,0.015457,0.00872052,0.904341,0.154692,0.687524,0.321818,0.414467,0.330853,0.224025,0.651088,0.625583,0.592933,0.649881,0.676537,0.834527,0.688694,0.677105,0.596303,0.193113,0.414886,0.93805,0.360793,0.0267286,0.173723,0.562099,0.793941,0.733367,0.979803,0.062663,0.275457,0.633974,0.52506,0.6697,0.369488,0.953683,0.890221,0.52801,0.363262,0.32748,0.258678,0.828879,0.289903,0.939744,0.691509,0.823998,0.569923,0.192129,0.996621,0.349983,0.00414824,0.983779,0.523795,0.353672,0.0112649,0.257946,0.74332,0.786209,0.155804,0.897178,0.112119,0.708811,0.757043,0.422729,0.843787,0.786758,0.66337,0.728343,0.181525,0.358087,0.934148,0.163705,0.827969,0.178051,0.349852,0.0554885,0.646971,0.0623763,0.131144,0.299181,0.282927,0.956486,0.731391,0.276557,0.908178,0.542316,0.180218,0.587992,0.66065,0.245992,0.123016,0.367778,0.0157164,0.633048,0.242426,0.916056,0.572171,0.5659,0.610296,0.752588,0.931487,0.309642,0.139533,0.522564,0.825272,0.762144,0.271421,0.771859,0.921194,0.380303,0.597825,0.0959958,0.158554,0.96356,0.831952,0.314556,0.842545,0.434569,0.320963,0.963986,0.445344,0.512011,0.132161,0.0228826,0.355273,0.0678818,0.341264,0.170338,0.442793,0.255169,0.925376,0.339177,0.68361,0.00800735,0.284499,0.148885,0.358124,0.692857,0.523197,0.0828685,0.597126,0.506388,0.252935,0.613336,0.0947106,0.47214,0.951672,0.431187,0.425718,0.408004,0.681556,0.690645,0.905731,0.419604,0.0794351,0.143936,0.497571,0.744738,0.260271,0.246334,0.497422,0.475945,0.514285,0.145232,0.362041,0.649206,0.622149,0.0632642,0.601417,0.496214,0.204052,0.722462,0.490681,0.141357,0.443265,0.136746,0.85597,0.029586,0.348639,0.580894,0.327518,0.835473,0.562079,0.705472,0.637875,0.893864,0.377997,0.78181,0.530437,0.622791,0.160365,0.0973324,0.626983,0.0595493,0.0322372,0.864198,0.541569,0.230868,0.829183,0.242887,0.822167,0.86394,0.485023,0.597509,0.965913,0.521479,0.194254,0.983725,0.259482,0.81234,0.783889,0.153191,0.172294,0.0152034,0.256564,0.213248,0.298391,0.09342,0.850845,0.0860245,0.858324,0.382649,0.178768,0.00280023,0.801117,0.284173,0.748713,0.066848,0.805778,0.122188,0.375087,0.89373,0.984835,0.0256369,0.613198,0.893065,0.986024,0.290525,0.543031,0.0654171,0.508304,0.942588,0.854213,0.111949,0.0120996,0.654556,0.3818,0.0423434,0.262252,0.0522183,0.376316,0.868399,0.276203,0.320157,0.757053,0.614502,0.155356,0.198109,0.774403,0.958492,0.581599,0.225186,0.0540448,0.988137,0.850608,0.645073,0.875582,0.856537,0.312073,0.0666575,0.272678,0.149121,0.713278,0.750379,0.648705,0.304089,0.806302,0.388683,0.622514,0.546081,0.326959,0.537633,0.153174,0.699435,0.648332,0.336175,0.557453,0.222061,0.455039,0.499058,0.258427,0.790318,0.802025,0.0489815,0.259914,0.633813,0.98805,0.747558,0.555862,0.53654,0.729994,0.0640444,0.636207,0.696325,0.414618,0.207127,0.642902,0.783788,0.466653,0.559013,0.973212,0.357606,0.928752,0.0261972,0.536984,0.944141,0.559227,0.543599,0.290849,0.566555,0.657395,0.0671479,0.60466,0.614032,0.864045,0.405388,0.182327,0.170654,0.407796,0.796982,0.928105,0.174493,0.878607,0.485367,0.957924,0.328444,0.0318477,0.303817,0.321691,0.0446352,0.247985,0.848083,0.977836,0.418777,0.165313,0.820582,0.889808,0.803402,0.279929,0.836936,0.855286,0.779819,0.275104,0.400681,0.486506,0.897652,0.838112,0.465973,0.428126,0.177823,0.42308,0.739027,0.75059,0.365066,0.861079,0.436073,0.265593,0.11434,0.225486,0.945135,0.083499,0.718697,0.347387,0.0946701,0.237937,0.0105444,0.960437,0.182374,0.717194,0.137973,0.853716,0.265161,0.849619,0.418103,0.290514,0.735906,0.10636,0.8278,0.376088,0.790126,0.897984,0.774083,0.486398,0.30395,0.966118,0.817028,0.957381,0.115995,0.767818,0.786437,0.888896,0.88692,0.9226,0.326195,0.401947,0.477455,0.94929,0.91147,0.59203,0.268819,0.658518,0.594786,0.176796,0.992278,0.0628894,0.767158,0.816224,0.998733,0.975746,0.184549,0.054445,0.00871676,0.629778,0.147068,0.174708,0.957384,0.581162,0.00260407,0.347448,0.892957,0.259463,0.229142,0.687511,0.741571,0.0939738,0.915487,0.146073,0.989955,0.957208,0.295614,0.823741,0.239479,0.67823,0.727509,0.844912,0.951859,0.0304716,0.634594,0.885023,0.856501,0.940896,0.0725201,0.595843,0.21949,0.199297,0.440851,0.943391,0.239374,0.0484651,0.0820852,0.689303,0.373797,0.119874,0.31083,0.297949,0.373876,0.0006935,0.89357,0.177984,0.130958,0.0363264,0.31504,0.445478,0.397742,0.522494,0.706005,0.683054,0.172696,0.0029524,0.0054692,0.759199,0.333114,0.0647041,0.778334,0.449786,0.304725,0.91904,0.877665,0.15802,0.0906901,0.20855,0.031085,0.586388,0.735956,0.0563339,0.471736,0.24916,0.318445,0.969739,0.813481,0.149055,0.345393,0.0706246,0.446074,0.167978,0.689391,0.533558,0.427679,0.303354,0.454294,0.567244,0.250618,0.429669,0.719601,0.872945,0.369002,0.0741348,0.26135,0.391295,0.346978,0.670411,0.243649,0.119587,0.45841,0.561592,0.507491,0.973858,0.352523,0.576281,0.224976,0.560872,0.382683,0.755838,0.493905,0.835039,0.350412,0.570813,0.344757,0.64698,0.420421,0.759529,0.345179,0.155025,0.725573,0.771095,0.55618,0.174165,0.632531,0.742995,0.657686,0.609053,0.890784,0.187058,0.868761,0.409029,0.764801,0.607394,0.791456,0.444279,0.67686,0.23772,0.894696,0.78167,0.412403,0.176654,0.151367,0.210407,0.184192,0.92762,0.176649,0.555755,0.580158,0.682296,0.11825,0.0732002,0.307252,0.63547,0.831905,0.952657,0.162302,0.482305,0.134803,0.798232,0.79982,0.980901,0.0293608,0.135593,0.563571,0.834409,0.896843,0.119671,0.116969,0.221132,0.390278,0.246159,0.560225,0.336986,0.423782,0.0204755,0.202301,0.400628,0.80014,0.560916,0.307343,0.662046,0.619321,0.393955,0.107759,0.93701,0.167505,0.73234,0.282911,0.242187,0.161993,0.434116,0.388126,0.348966,0.631871,0.997055,0.408621,0.988099,0.726782,0.55743,0.683533,0.825754,0.717599,0.236448,0.418556,0.839949,0.615994,0.76764,0.895829,0.533817,0.992573,0.483673,0.205816,0.742334,0.721262,0.440474,0.0411314,0.176272,0.168452,0.204947,0.282538,0.108272,0.119721,0.00926483,0.819009,0.548817,0.575853,0.306585,0.795271,0.739549,0.379233,0.566769,0.460572,0.851306,0.158683,0.651552,0.0176093,0.103313,0.349629,0.351328,0.0386863,0.244269,0.150918,0.325059,0.204037,0.384539,0.691865,0.331577,0.463281,0.902656,0.0394106,0.290138,0.874541,0.293769,0.953802,0.319451,0.0783607,0.237169,0.621716,0.0303848,0.933602,0.304431,0.415693,0.117066,0.436405,0.00394458,0.0801162,0.13953,0.0978485,0.144337,0.436286,0.966443,0.825205,0.141729,0.88532,0.448672,0.488448,0.606041,0.038808,0.743701,0.237195,0.919974,0.093439,0.284516,0.135088,0.670394,0.786996,0.296129,0.0149889,0.511609,0.395558,0.838414,0.457124,0.989459,0.383406,0.337191,0.344983,0.436396,0.660313,0.953984,0.49977,0.347171,0.244466,0.315326,0.992927,0.668664,0.320145,0.309667,0.413323,0.394115,0.461627,0.754364,0.90595,0.850717,0.347007,0.717813,0.981513,0.986052,0.31703,0.906456,0.293321,0.919559,0.0135413,0.539394,0.689914,0.422343,0.684981,0.313496,0.116515,0.956697,0.915536,0.468042,0.710807,0.0700998,0.455299,0.679703,0.505607,0.0490609,0.317884,0.590506,0.912747,0.551597,0.898228,0.651712,0.0637805,0.362013,0.261875,0.846592,0.865382,0.250724,0.835756,0.777549,0.24528,0.0510178,0.0933159,0.913072,0.985231,0.710197,0.211807,0.00618732,0.534769,0.167272,0.664146,0.68418,0.837857,0.570307,0.0431842,0.467267,0.363039,0.807534,0.660304,0.714713,0.731928,0.0808907,0.897606,0.0811784,0.481624,0.420427,0.931922,0.447502,0.0956628,0.830963,0.346538,0.429776,0.354244,0.0302927,0.424606,0.136102,0.562997,0.863312,0.895782,0.546307,0.329228,0.832445,0.526247,0.644289,0.561855,0.961499,0.909207,0.287358,0.910355,0.246093,0.137537,0.371464,0.550447,0.63588,0.385095,0.319372,0.29838,0.572816,0.49368,0.254104,0.000521064,0.476282,0.0151293,0.267449,0.719233,0.972803,0.606467,0.510856,0.173862,0.360045,0.504946,0.860645,0.248388,0.381941,0.733093,0.392682,0.913414,0.0207862,0.880479,0.17507,0.988673,0.817326,0.699064,0.261931,0.381641,0.311743,0.177385,0.0752653,0.94641,0.0272278,0.93085,0.724287,0.806115,0.709923,0.601291,0.702407,0.624588,0.206961,0.575847,0.69284,0.641098,0.457381,0.411197,|0.73636,0.036796,0.945352,0.0985979,0.135025,0.0712225,0.0102935,0.782056,0.99154,0.138151,0.452949,0.544279,0.149129,0.569797,0.056132,0.537922,0.241819,0.295986,0.35018,0.558468,0.262516,0.208518,0.921377,0.635834,0.707857,0.0841535,0.159179,0.684636,0.010065,0.602787,0.342708,0.0149582,0.706394,0.790573,0.278836,0.32657,0.371192,0.196943,0.0994307,0.763493,0.752946,0.0971473,0.207383,0.514185,0.6918,0.971166,0.938018,0.0538611,0.520165,0.167817,0.160813,0.887903,0.00934601,0.128425,0.375857,0.0366002,0.984251,0.611245,0.581535,0.127486,0.452474,0.422549,0.0404436,0.961541,0.782076,0.749743,0.774449,0.00453246,0.981343,0.572656,0.00996864,0.765524,0.83183,0.625944,0.401452,0.186533,0.0736082,0.658487,0.0705111,0.936072,0.790999,0.622194,0.200718,0.307021,0.583794,0.447732,0.864443,0.892163,0.467433,0.639582,0.865881,0.503103,0.10382,0.19342,0.0741686,0.719522,0.842778,0.320737,0.0448754,0.482781,0.45943,0.800305,0.33416,0.84588,0.735341,0.368741,0.298378,0.0192604,0.0939801,0.0706964,0.483688,0.221882,0.822477,0.39844,0.772239,0.630559,0.618514,0.256724,0.974454,0.448342,0.145876,0.0168577,0.629549,0.533665,0.619618,0.0349321,0.518413,0.110776,0.596471,0.541195,0.58069,0.693574,0.844992,0.866986,0.9315,0.0096063,0.331919,0.0375919,0.170827,0.644436,0.535832,0.355308,0.903921,0.892917,0.352439,0.968936,0.807429,0.877016,0.6176,0.419022,0.650638,0.487681,0.443334,0.627929,0.569391,0.458491,0.892023,0.747599,0.729849,0.507001,0.0737711,0.193145,0.533727,0.372671,0.29136,0.0809135,0.328639,0.538127,0.211459,0.303972,0.124084,0.135969,0.984878,0.936501,0.496035,0.325451,0.213402,0.900165,0.946447,0.656604,0.934557,0.225116,0.160304,0.282441,0.778137,0.21303,0.129294,0.950617,0.777042,0.952844,0.847809,0.413962,0.660295,0.557397,0.349144,0.93478,0.195625,0.396455,0.106866,0.365283,0.0482496,0.108839,0.779036,0.394593,0.147619,0.623835,0.849453,0.105259,0.731281,0.346841,0.523839,0.486614,0.179238,0.0550073,0.319037,0.06917,0.4266,0.795913,0.566001,0.995842,0.961716,0.331514,0.0386979,0.00276262,0.512516,0.826328,0.750295,0.35526,0.144124,0.729391,0.143112,0.841358,0.0494579,0.509132,0.345372,0.546411,0.26243,0.150804,0.415041,0.430496,0.802307,0.222706,0.906977,0.771446,0.322966,0.803125,0.431316,0.418563,0.286888,0.552444,0.0470688,0.320726,0.672003,0.565351,0.8624,0.875273,0.306744,0.732483,0.648202,0.0551513,0.922041,0.644136,0.294631,0.2888,0.88392,0.736246,0.274016,0.235295,0.959473,0.287374,0.0352932,0.995848,0.952085,0.693382,0.561004,0.16451,0.643858,0.263274,0.769858,0.213629,0.832761,0.310021,0.440183,0.209339,0.69847,0.542886,0.703537,0.467305,0.766773,0.235521,0.939093,0.736979,0.0131362,0.995507,0.295612,0.758564,0.412233,0.710792,0.143304,0.556589,0.378072,0.960257,0.307897,0.586207,0.339632,0.204512,0.943615,0.50013,0.815361,0.391017,0.892219,0.294284,0.801743,0.0781695,0.346104,0.544033,0.326619,0.111397,0.244041,0.767123,0.207815,0.657622,0.0493475,0.458093,0.497524,0.941921,0.050585,0.513887,0.427573,0.323589,0.645825,0.795802,0.264499,0.812088,0.634375,0.903167,0.0421085,0.708661,0.109439,0.8813,0.532144,0.855201,0.528196,0.853789,0.702654,0.921322,0.988064,0.951277,0.870056,0.403534,0.611244,0.208776,0.0317652,0.862294,0.259959,0.985509,0.563899,0.0884188,0.139844,0.818601,0.799133,0.567547,0.360968,0.617227,0.279955,0.0622445,0.0601298,0.0936944,0.164042,0.33897,0.20419,0.72064,0.302973,0.877372,0.827803,0.184503,0.681519,0.0459752,0.828398,0.771015,0.0120498,0.629001,0.850969,0.84318,0.502291,0.856263,0.70463,0.755717,0.457683,0.697287,0.171042,0.712525,0.211604,0.800205,0.939937,0.578884,0.649177,0.495848,0.510098,0.137529,0.733972,0.799558,0.337736,0.30879,0.396811,0.713652,0.78765,0.88123,0.0452678,0.667896,0.0556362,0.817746,0.309268,0.411872,0.159584,0.826758,0.584296,0.82151,0.741166,0.0250714,0.314547,0.00755614,0.60809,0.862012,0.546053,0.397259,0.587239,0.514773,0.853628,0.478977,0.352035,0.825147,0.114497,0.983268,0.443183,0.742095,0.309435,0.924313,0.900587,0.670757,0.19962,0.482239,0.766774,0.873852,0.0124121,0.606053,0.173734,0.71095,0.814398,0.965271,0.309693,0.327535,0.347688,0.270999,0.743345,0.779361,0.930638,0.0804155,0.737202,0.880283,0.118876,0.223232,0.480256,0.74615,0.0359674,0.392149,0.144549,0.221827,0.917157,0.595722,0.450761,0.350812,0.484531,0.772734,0.576762,0.863204,0.539403,0.789232,0.640252,0.467407,0.201247,0.226623,0.549404,0.890486,0.339411,0.782263,0.870244,0.325956,0.528329,0.667904,0.3012,0.0353147,0.0341814,0.596661,0.185604,0.0500764,0.38435,0.506186,0.873682,0.384934,0.147668,0.902165,0.961749,0.701082,0.453091,0.977126,0.69215,0.0624568,0.505523,0.0526935,0.0135625,0.853571,0.907155,0.45161,0.0969223,0.0742279,0.648165,0.189595,0.710794,0.189967,0.794281,0.435504,0.0295746,0.712947,0.276333,0.274471,0.0148509,0.436746,0.177798,0.152702,0.128105,0.813188,0.585241,0.791558,0.361032,0.630822,0.86739,0.443342,0.918938,0.718015,0.344489,0.565783,0.584483,0.320022,0.723742,0.223664,0.178405,0.829564,0.457502,0.587643,0.145471,0.337208,0.449166,0.849252,0.49293,0.648635,0.948109,0.175621,0.988875,0.487519,0.994789,0.259759,0.610476,0.140303,0.784032,0.914058,0.120612,0.846729,0.137961,0.707363,0.271701,0.206385,0.849914,0.545346,0.777373,0.614354,0.134081,0.318518,0.251838,0.137104,0.429265,0.059025,0.649971,0.735612,0.408884,0.218401,0.687293,0.584311,0.518015,0.595668,0.0776086,0.0202482,0.912117,0.0207265,0.9784,0.747851,0.954645,0.203721,0.68962,0.993728,0.347805,0.948883,0.847981,0.715754,0.401247,0.0153514,0.0507335,0.166826,0.373047,0.461372,0.21167,0.712312,0.72291,0.266135,0.963763,0.480738,0.0141189,0.385911,0.34407,0.563873,0.464198,0.942124,0.0415359,0.507531,0.753292,0.644666,0.212103,0.0298045,0.414265,0.910919,0.76405,0.281023,0.0480375,0.767728,0.893836,0.237677,0.673252,0.519134,0.286744,0.468232,0.24981,0.499679,0.592249,0.421775,0.612033,0.736846,0.133672,0.692032,0.114155,0.475386,0.210922,0.491906,0.279494,0.637217,0.160475,0.250252,0.00771129,0.0755349,0.796493,0.222179,0.623138,0.893106,0.189376,0.0798094,0.12192,0.253079,0.649647,0.616817,0.600361,0.751705,0.216107,0.784824,0.0293089,0.669991,0.900768,0.831468,0.15213,0.303844,0.00330704,0.0792905,0.0622827,0.500344,0.478806,0.849182,0.842248,0.202288,0.457756,0.918749,0.74505,0.907843,0.968712,0.12701,0.945902,0.916398,0.854689,0.349373,0.119167,0.853415,0.85219,0.900471,0.630561,0.528978,0.617599,0.498268,0.297439,0.146887,0.258904,0.601916,0.439802,0.718059,0.831941,0.739842,0.950008,0.940331,0.441932,0.229926,0.921882,0.679179,0.928158,0.414777,0.771841,0.814958,0.904432,0.68368,0.966055,0.482058,0.00853997,0.57368,0.855042,0.248707,0.106093,0.150146,0.367164,0.927891,0.80096,0.749733,0.47333,0.264505,0.520833,0.161313,0.578232,0.455626,0.558803,0.132956,0.896211,0.135787,0.0456839,0.621887,0.145039,0.0275927,0.150177,0.10276,0.442453,0.0638688,0.962589,0.964212,0.0627342,0.0383172,0.529351,0.9797,0.680158,0.377481,0.893841,0.359024,0.610277,0.221447,0.380553,0.27726,0.154776,0.742177,0.279998,0.177293,0.27844,0.329077,0.154096,0.869144,0.239878,0.618525,0.935066,0.955074,0.509747,0.625496,0.313567,0.54103,0.241156,0.827564,0.404299,0.0173481,0.641523,0.0217186,0.0576485,0.952399,0.578421,0.867905,0.493096,0.596148,0.0629528,0.273422,0.224341,0.725007,0.58675,0.301662,0.966787,0.9584,0.250614,0.221179,0.562641,0.0152661,0.93896,0.719366,0.25746,0.677666,0.614385,0.0691763,0.725238,0.524635,0.341081,0.747423,0.415753,0.230775,0.067749,0.944275,0.159511,0.908538,0.519456,0.194318,0.751725,0.384269,0.8582,0.955788,0.699177,0.47151,0.764157,0.763734,0.457612,0.345227,0.662748,0.341732,0.592683,0.684419,0.870235,0.837809,0.491344,0.262356,0.332302,0.363958,0.745978,0.0352723,0.328389,0.0741224,0.262565,0.0612987,0.744774,0.798439,0.347158,0.97131,0.273662,0.0809703,0.766066,0.746715,0.756812,0.815081,0.842783,0.389881,0.342013,0.362968,0.662587,0.0479044,0.557333,0.338035,0.930935,0.46313,0.9339,0.210875,0.782597,0.39691,0.254798,0.109526,0.00466293,0.0355049,0.854832,0.868047,0.787178,0.520647,0.989857,0.14448,0.804682,0.751803,0.200057,0.328304,0.467284,0.154793,0.529296,0.581555,0.531226,0.893549,0.0264515,0.837032,0.122609,0.998897,0.278824,0.550673,0.298732,0.582035,0.654069,0.0981176,0.155476,0.167714,0.827672,0.883797,0.943308,0.10229,0.173577,0.710019,0.576612,0.662741,0.462026,0.0380822,0.11296,0.508426,0.315359,0.381246,0.912198,0.726738,0.897217,0.983364,0.595273,0.882575,0.6012,0.828914,0.995241,0.473582,0.965214,0.272797,0.68497,0.316669,0.987081,0.550745,0.659326,0.211728,0.354571,0.536758,0.201116,0.578529,0.647737,0.297415,0.536868,0.246808,0.188676,0.920445,0.395297,0.729657,0.197079,0.953818,0.00784075,0.414913,0.483745,0.101996,0.843272,0.128587,0.87026,0.374901,0.368415,0.0537544,0.865378,0.764912,0.802848,0.547648,0.565529,0.954827,0.657029,0.780685,0.999196,0.0354429,0.0875018,0.780141,0.658593,0.997122,0.216343,0.846253,0.291415,0.458331,0.0768178,0.860041,0.428736,0.22442,0.599808,0.802331,0.176865,0.488222,0.721546,0.519595,0.233199,0.00830942,0.781568,0.127104,0.876931,0.998079,0.66517,0.404907,|0.524653,0.579491,0.00554538,0.625795,0.443285,0.69356,0.31683,0.950418,0.643444,0.0922358,0.451955,0.44986,0.00825167,0.511459,0.44459,0.530758,0.550591,0.308674,0.760892,0.307477,0.177924,0.417966,0.644057,0.72145,0.566135,0.0101612,0.8092,0.0352776,0.134938,0.141986,0.109449,0.496476,0.738406,0.490753,0.549347,0.46391,0.629199,0.00487107,0.3937,0.389345,0.282869,0.0402815,0.39958,0.740887,0.957284,0.348157,0.873418,0.817243,0.455928,0.305592,0.124588,0.168156,0.157049,0.408692,0.00170678,0.610852,0.972755,0.865744,0.323137,0.256706,0.664461,0.544403,0.0757222,0.357176,0.13775,0.277031,0.237234,0.0645263,0.620212,0.0195553,0.101831,0.741471,0.620238,0.691098,0.938968,0.8884,0.0636976,0.918768,0.470526,0.783188,0.837116,0.916105,0.709518,0.413594,0.920918,0.628772,0.794484,0.45478,0.357781,0.203647,0.150348,0.0674605,0.429309,0.841772,0.601474,0.00914621,0.0102187,0.762324,0.722944,0.759324,0.30628,0.677516,0.148556,0.677893,0.438437,0.393501,0.409915,0.0688954,0.952117,0.201832,0.780152,0.744471,0.581748,0.175249,0.0517362,0.788291,0.188212,0.0580969,0.824609,0.919238,0.988533,0.217562,0.679457,0.195545,0.0833576,0.521399,0.412316,0.985664,0.287171,0.220396,0.87342,0.652215,0.57345,0.507626,0.0575224,0.952219,0.527951,0.435358,0.317117,0.00462806,0.222413,0.897187,0.778911,0.0468223,0.351115,0.276457,0.549642,0.0142245,0.903251,0.668011,0.155595,0.052167,0.769356,0.147708,0.408801,0.0743621,0.38705,0.711257,0.654048,0.812055,0.514713,0.267187,0.742626,0.972714,0.893324,0.297555,0.988081,0.420783,0.769884,0.071152,0.527204,0.547836,0.208707,0.141321,0.811225,0.232717,0.687462,0.344876,0.713162,0.706179,0.920347,0.761184,0.81463,0.0121567,0.0556757,0.392333,0.569395,0.820258,0.802954,0.745383,0.89136,0.529102,0.549085,0.816196,0.663842,0.638212,0.396082,0.0238481,0.519358,0.98266,0.554451,0.0988823,0.98058,0.654163,0.997165,0.205201,0.105146,0.251739,0.691846,0.159039,0.425188,0.787518,0.859015,0.849375,0.534301,0.685298,0.442807,0.382411,0.269857,0.69859,0.0355185,0.654504,0.78206,0.118496,0.507643,0.845303,0.66446,0.142529,0.0506048,0.0432065,0.0399755,0.433908,0.441283,0.568897,0.108808,0.445907,0.567131,0.0874264,0.968017,0.421949,0.387238,0.417322,0.831801,0.272379,0.665017,0.839258,0.727431,0.346413,0.592578,0.187789,0.914308,0.0411183,0.455994,0.513416,0.776027,0.0120118,0.20208,0.348229,0.325608,0.934013,0.143716,0.239539,0.162352,0.429055,0.860215,0.140691,0.94016,0.860703,0.836637,0.208182,0.995057,0.375874,0.396276,0.615712,0.0805095,0.66505,0.534701,0.603037,0.32128,0.145891,0.709176,0.950081,0.879516,0.898355,0.571037,0.443871,0.236034,0.561816,0.215339,0.202458,0.463669,0.788708,0.890943,0.551403,0.564666,0.830122,0.394683,0.365969,0.369553,0.490062,0.0285173,0.735808,0.817754,0.0575626,0.703532,0.539957,0.335152,0.962527,0.289488,0.77066,0.404128,0.863303,0.270893,0.645764,0.555891,0.331558,0.40289,0.868531,0.0261357,0.340716,0.291982,0.787574,0.169627,0.721413,0.723201,0.432566,0.811706,0.856497,0.0825321,0.74524,0.187269,0.627422,0.351126,0.0210875,0.286802,0.0583539,0.476949,0.493591,0.620971,0.347974,0.141776,0.978002,0.610325,0.54157,0.530728,0.386934,0.298616,0.294989,0.702646,0.718218,0.403558,0.0510616,0.453538,0.78499,0.395985,0.256163,0.807328,0.140982,0.167152,0.771116,0.253937,0.707812,0.380961,0.057786,0.88211,0.11378,0.484168,0.982019,0.814323,0.538105,0.980817,0.66823,0.145648,0.0576472,0.391784,0.571839,0.309659,0.678661,0.986168,0.48841,0.444823,0.867949,0.555221,0.395524,0.128177,0.0872005,0.922936,0.756982,0.269804,0.8773,0.0693017,0.476514,0.164035,0.772937,0.590029,0.623031,0.300574,0.311746,0.764074,0.862753,0.00297195,0.826169,0.635726,0.745386,0.0504675,0.108879,0.858535,0.378657,0.602275,0.993476,0.118809,0.97621,0.0313604,0.744504,0.079469,0.483337,0.49678,0.824549,0.304796,0.996614,0.0601822,0.0318271,0.533046,0.831223,0.00748038,0.156803,0.259482,0.450248,0.00138968,0.319133,0.401554,0.30617,0.70415,0.496045,0.356978,0.585227,0.369279,0.0403714,0.0784338,0.22376,0.949093,0.95355,0.163976,0.246756,0.602168,0.837923,0.558999,0.44581,0.776617,0.217552,0.617585,0.970523,0.70137,0.947965,0.504965,0.238869,0.098472,0.308405,0.396934,0.695185,0.447186,0.370195,0.26203,0.381502,0.492669,0.542068,0.691116,0.451274,0.424476,0.2246,0.738612,0.205308,0.905809,0.729112,0.883927,0.953678,0.547637,0.376402,0.279562,0.843767,0.451012,0.537166,0.116106,0.134494,0.162852,0.547912,0.615172,0.861575,0.376397,0.571491,0.460008,0.920597,0.0304872,0.936656,0.362469,0.886375,0.7798,0.844657,0.2611,0.752276,0.369912,0.380962,0.829318,0.00223905,0.606972,0.0827562,0.0988965,0.0421355,0.802974,0.92758,0.438975,0.50525,0.147041,0.655228,0.424748,0.250914,0.327472,0.924776,0.447285,0.2847,0.909884,0.902917,0.460626,0.37622,0.309507,0.289863,0.714494,0.0248136,0.222154,0.200314,0.63613,0.514749,0.408392,0.987342,0.938218,0.734472,0.827237,0.40348,0.24577,0.698067,0.556214,0.262838,0.892528,0.886333,0.789771,0.812148,0.555096,0.499726,0.406472,0.31604,0.389482,0.699298,0.926518,0.654181,0.698385,0.733701,0.50622,0.302866,0.330723,0.605554,0.995292,0.514591,0.917553,0.902569,0.532825,0.546334,0.605264,0.878402,0.20819,0.508531,0.62494,0.730088,0.653227,0.907559,0.0516545,0.922836,0.151732,0.515062,0.0829767,0.657249,0.613423,0.558912,0.358472,0.785875,0.657641,0.810725,0.418575,0.322607,0.558236,0.749717,0.542558,0.338595,0.936694,0.958415,0.0838689,0.349597,0.341253,0.583512,0.0115806,0.199857,0.417635,0.930052,0.943656,0.0643777,0.509732,0.21115,0.264894,0.511343,0.927978,0.0581652,0.25557,0.213569,0.0784749,0.925021,0.908367,0.850916,0.0377805,0.130642,0.516565,0.154843,0.102609,0.499287,0.763008,0.620119,0.83455,0.781151,0.377773,0.378195,0.0107362,0.636188,0.354963,0.111295,0.164841,0.226537,0.11855,0.026987,0.142938,0.52049,0.278801,0.216116,0.41717,0.65898,0.360681,0.608445,0.843858,0.461106,0.268697,0.319181,0.0614955,0.174492,0.0829608,0.515388,0.649564,0.910488,0.206296,0.6476,0.996338,0.619526,0.287156,0.509717,0.658196,0.816315,0.303711,0.524695,0.0658755,0.357765,0.126122,0.881896,0.934587,0.780792,0.956303,0.305754,0.189043,0.0805516,0.372028,0.968158,0.0439085,0.844668,0.483581,0.764951,0.45627,0.0936185,0.567697,0.285749,0.640517,0.611203,0.0895396,0.0644166,0.173485,0.942818,0.158324,0.465125,0.22114,0.144714,0.0238565,0.175517,0.428023,0.439999,0.922355,0.483244,0.372961,0.100278,0.924763,0.653168,0.0996593,0.0503113,0.934862,0.601422,0.13392,0.239083,0.0439879,0.0215831,0.195833,0.237464,0.12532,0.576199,0.311578,0.726112,0.903568,0.997067,0.807142,0.630703,0.694689,0.378628,0.509221,0.492834,0.975596,0.18441,0.79578,0.654431,0.15091,0.663193,0.370317,0.651523,0.931642,0.00595897,0.827038,0.305296,0.00937068,0.82139,0.481021,0.829666,0.551907,0.378803,0.76573,0.714195,0.907913,0.907888,0.455771,0.512398,0.286773,0.267595,0.373798,0.0305094,0.971652,0.878466,0.368588,0.0923482,0.0323283,0.468466,0.0884042,0.827223,0.280729,0.119585,0.415444,0.251981,0.381353,0.63931,0.0754746,0.857546,0.377414,0.0389702,0.0516214,0.953295,0.0414861,0.449118,0.727887,0.423788,0.603759,0.925697,0.0405332,0.489939,0.826641,0.57964,0.15776,0.0705668,0.652813,0.636604,0.850046,0.916174,0.455842,0.88704,0.66664,0.213399,0.693821,0.697346,0.0643656,0.6552,0.914995,0.386876,0.861516,0.548773,0.528791,0.633617,0.291351,0.211585,0.384327,0.463305,0.964685,0.348838,0.753437,0.733391,0.274056,0.295381,0.731673,0.829218,0.624419,0.550215,0.825423,0.0838916,0.975209,0.0406412,0.629431,0.681172,0.42419,0.74606,0.0845708,0.702335,0.329012,0.748641,0.646765,0.447624,0.564297,0.497286,0.742176,0.0515426,0.0601903,0.00292724,0.489793,0.238737,0.0799886,0.605591,0.0109499,0.376247,0.91563,0.467468,0.337683,0.962193,0.924956,0.264296,0.032846,0.497339,0.18526,0.988996,0.979895,0.213461,0.181258,0.893333,0.0763804,0.792503,0.706268,0.131925,0.556066,0.660651,0.94231,0.116342,0.202625,0.19147,0.67733,0.0610525,0.372542,0.466819,0.843526,0.826426,0.996869,0.64975,0.0397284,0.608,0.582752,0.24601,0.760353,0.931518,0.415356,0.137964,0.494305,0.653144,0.737099,0.70975,0.711244,0.078739,0.814633,0.401748,0.951604,0.691646,0.269254,0.183066,0.431754,0.669683,0.909087,0.639873,0.304674,0.499306,0.533796,0.5166,0.836228,0.296925,0.644458,0.872943,0.731856,0.443741,0.887472,0.853894,0.782547,0.53189,0.461186,0.283296,0.698102,0.0534598,0.0713663,0.742108,0.543301,0.779164,0.367979,0.85095,0.0447862,0.467476,0.570485,0.905883,0.830439,0.817166,0.177757,0.822808,0.935166,0.676761,0.919028,0.300547,0.870314,0.898896,0.00169569,0.987758,0.874898,0.111015,0.395747,0.958317,0.261588,0.216437,0.888036,0.722086,0.52228,0.21168,0.405748,0.804129,0.132135,0.0148739,0.177108,0.563418,0.772093,0.256844,0.269052,0.00256354,0.9927,0.0162189,0.159462,0.275985,0.981831,0.696447,0.835562,0.430322,0.955564,0.924251,0.814417,0.827769,0.180098,0.458958,0.319248,0.0407273,0.109453,0.438746,0.214193,0.718799,0.527336,0.671225,0.290697,0.889412,0.296705,0.669477,0.223701,0.533476,0.0776243,0.97558,0.592541,0.494824,0.398536,0.564567,0.172618,0.846467,0.857864,0.555201,0.532507,0.737428,|0.256225,0.170682,0.253314,0.9622,0.0735004,0.984857,0.740846,0.198541,0.422221,0.416689,0.599656,0.217695,0.181062,0.771805,0.177358,0.324476,0.758608,0.177525,0.0261184,0.302012,0.245243,0.44732,0.731183,0.578281,0.823932,0.149307,0.0297073,0.702861,0.35526,0.711007,0.0879629,0.898226,0.953386,0.647143,0.0454847,0.00855666,0.473886,0.0653348,0.190985,0.910994,0.567807,0.115788,0.322541,0.838131,0.959527,0.952441,0.482353,0.863685,0.820305,0.214757,0.0865086,0.46502,0.586949,0.779381,0.595038,0.176348,0.634304,0.333504,0.477796,0.970143,0.94821,0.63309,0.812512,0.232298,0.0139798,0.908083,0.858953,0.302574,0.0408906,0.916179,0.278437,0.516905,0.0715648,0.627986,0.75256,0.139019,0.249467,0.164573,0.225185,0.315083,0.0322293,0.16932,0.898397,0.917334,0.841727,0.920125,0.713751,0.320023,0.619919,0.0307678,0.131498,0.855045,0.439796,0.0978397,0.844074,0.759116,0.88684,0.901924,0.635389,0.491359,0.56809,0.273459,0.70561,0.469319,0.427101,0.756507,0.157913,0.742392,0.106072,0.107738,0.600846,0.469789,0.942734,0.318983,0.870862,0.777934,0.871616,0.216291,0.41576,0.159677,0.548917,0.00484997,0.281351,0.449171,0.373552,0.573357,0.934594,0.058135,0.332862,0.272889,0.382572,0.0202559,0.880493,0.796173,0.058459,0.815979,0.89077,0.579498,0.722853,0.817017,0.309622,0.511081,0.394593,0.199907,0.503618,0.510299,0.523795,0.0404636,0.130859,0.883911,0.863801,0.275738,0.874908,0.431133,0.154335,0.542276,0.399002,0.780511,0.0873471,0.0471628,0.104075,0.749634,0.0866911,0.954446,0.564107,0.148836,0.917196,0.710974,0.806609,0.837616,0.879743,0.600409,0.76955,0.163155,0.418202,0.850761,0.715702,0.626504,0.614186,0.567164,0.189772,0.729341,0.765968,0.291145,0.592169,0.568063,0.55242,0.645196,0.165346,0.794317,0.24844,0.943351,0.832075,0.51656,0.976018,0.46453,0.650056,0.431557,0.626569,0.64275,0.79432,0.59322,0.985485,0.553601,0.542964,0.183317,0.471888,0.119183,0.397221,0.0293213,0.76684,0.140589,0.302758,0.329709,0.992254,0.544658,0.28155,0.6421,0.593869,0.276844,0.827861,0.235746,0.481458,0.0636867,0.309639,0.920616,0.375235,0.647568,0.370178,0.0820693,0.0161236,0.916961,0.366633,0.284323,0.974785,0.31375,0.943696,0.986803,0.715411,0.811001,0.682564,0.738028,0.898289,0.470659,0.967145,0.353333,0.756669,0.756422,0.568408,0.492983,0.0898336,0.614176,0.263562,0.491576,0.999538,0.119291,0.678311,0.0400189,0.89633,0.114439,0.0969684,0.000177443,0.802932,0.731556,0.449083,0.0881924,0.492412,0.925195,0.527965,0.139909,0.396999,0.421654,0.39198,0.0775117,0.270499,0.982942,0.592161,0.166285,0.369811,0.939273,0.129567,0.314754,0.858642,0.526193,0.0804687,0.995728,0.675915,0.567384,0.313558,0.576598,0.258474,0.921,0.298682,0.702679,0.653516,0.602141,0.269581,0.749957,0.79554,0.0486096,0.0504095,0.896537,0.585857,0.564607,0.421286,0.234933,0.621768,0.710036,0.872285,0.602941,0.633811,0.590875,0.634708,0.972006,0.413853,0.767912,0.500988,0.626181,0.0883621,0.94366,0.547432,0.445871,0.322078,0.752238,0.321765,0.991507,0.90855,0.0612258,0.569934,0.379111,0.209464,0.3153,0.593935,0.141039,0.121091,0.201554,0.335262,0.932664,0.884907,0.430425,0.00391537,0.142329,0.551754,0.661637,0.153861,0.900655,0.711399,0.784945,0.0308654,0.454244,0.420839,0.410277,0.985655,0.937749,0.706815,0.802022,0.165618,0.226941,0.795431,0.724503,0.683047,0.253817,0.235727,0.530312,0.190335,0.703349,0.95167,0.84211,0.237465,0.0954183,0.456193,0.264032,0.480522,0.362859,0.784547,0.634065,0.00881636,0.489439,0.505479,0.441889,0.992643,0.605054,0.494749,0.419605,0.366732,0.988749,0.90953,0.615318,0.079253,0.0225498,0.747593,0.268772,0.31857,0.904129,0.493323,0.766316,0.649602,0.776388,0.615617,0.594411,0.999289,0.499109,0.927541,0.345831,0.0517014,0.116157,0.21193,0.157972,0.926373,0.657902,0.778216,0.0685794,0.867188,0.405591,0.945795,0.792095,0.418946,0.671854,0.603415,0.781935,0.360946,0.795747,0.869864,0.555937,0.373176,0.856082,0.637084,0.656475,0.232692,0.482276,0.125645,0.853138,0.562421,0.935242,0.609269,0.253373,0.746311,0.918555,0.329384,0.906298,0.398977,0.943523,0.776348,0.0138973,0.489992,0.412408,0.302926,0.469305,0.042513,0.0178959,0.658941,0.275019,0.79072,0.0264785,0.794744,0.266795,0.96133,0.533144,0.328111,0.562132,0.819825,0.0938488,0.729952,0.867058,0.164271,0.385238,0.578633,0.99182,0.211179,0.717884,0.917968,0.970974,0.192838,0.785596,0.184866,0.765401,0.612457,0.315469,0.629387,0.724936,0.0793412,0.354226,0.116191,0.854729,0.527981,0.0329906,0.81855,0.599006,0.522759,0.131892,0.442507,0.485769,0.216658,0.622191,0.470592,0.103484,0.33027,0.220389,0.62783,0.592616,0.933198,0.349243,0.0533821,0.195569,0.456695,0.0202022,0.512677,0.343722,0.651681,0.6673,0.373458,0.889623,0.25559,0.635847,0.460339,0.401436,0.778753,0.11186,0.696512,0.61659,0.449592,0.978057,0.23044,0.460017,0.0936564,0.0425317,0.111928,0.336433,0.690849,0.887588,0.441295,0.0140681,0.667772,0.0631521,0.617509,0.316228,0.672077,0.312315,0.515646,0.104501,0.992061,0.581132,0.264231,0.03365,0.817761,0.258902,0.512273,0.189462,0.2165,0.450906,0.732873,0.919746,0.931783,0.145988,0.248431,0.39706,0.736409,0.621844,0.0620303,0.749099,0.730903,0.19048,0.999394,0.97032,0.190801,0.994574,0.344975,0.602325,0.888934,0.816907,0.027949,0.858317,0.748947,0.41364,0.287279,0.570671,0.219244,0.202195,0.138684,0.51428,0.430312,0.152983,0.727358,0.175551,0.365849,0.49655,0.453621,0.714126,0.969696,0.0818338,0.570668,0.982765,0.970772,0.0323148,0.970798,0.0170624,0.357179,0.781032,0.960847,0.105157,0.582761,0.299225,0.562168,0.79614,0.423925,0.155124,0.783305,0.0866699,0.921086,0.855383,0.653742,0.552383,0.593283,0.515761,0.426632,0.576336,0.472658,0.848953,0.8292,0.578024,0.526376,0.520136,0.901255,0.714405,0.385732,0.66177,0.96428,0.456195,0.443532,0.245724,0.574448,0.614995,0.0846296,0.0627246,0.185195,0.858735,0.0736821,0.0670691,0.285469,0.637958,0.449267,0.0590745,0.856771,0.845965,0.807065,0.14557,0.486121,0.769035,0.460846,0.579585,0.462859,0.10442,0.141168,0.712636,0.109053,0.461427,0.431339,0.249013,0.750564,0.500192,0.273714,0.968881,0.677128,0.709167,0.424492,0.405857,0.100952,0.39685,0.547036,0.401885,0.503075,0.286886,0.142528,0.182148,0.164651,0.765566,0.206456,0.446278,0.548554,0.881617,0.325551,0.921965,0.806089,0.0754493,0.0555465,0.411099,0.88764,0.512271,0.8159,0.42771,0.436506,0.138687,0.446998,0.131103,0.0578018,0.415495,0.558938,0.248888,0.242835,0.28765,0.158961,0.799288,0.745266,0.538424,0.85381,0.0741883,0.377475,0.603679,0.780288,0.500215,0.195076,0.98075,0.409284,0.122452,0.577163,0.494925,0.886575,0.102959,0.752838,0.414266,0.712817,0.0973183,0.693315,0.710157,0.287972,0.589455,0.647901,0.772455,0.0643755,0.0882079,0.225458,0.174608,0.888648,0.316756,0.390106,0.786061,0.152069,0.796061,0.363502,0.0683565,0.541351,0.829091,0.699245,0.0971234,0.678208,0.897102,0.521604,0.17894,0.165822,0.375709,0.422502,0.139504,0.780844,0.657412,0.420845,0.818502,0.907228,0.651868,0.977834,0.558755,0.701232,0.747262,0.667136,0.946161,0.0735496,0.0159303,0.28336,0.133588,0.340198,0.278435,0.617717,0.16334,0.911078,0.455968,0.834795,0.46487,0.521151,0.505577,0.209266,0.256504,0.72684,0.468032,0.706333,0.12119,0.724626,0.803634,0.678715,0.874695,0.781219,0.676623,0.164756,0.192077,0.850187,0.840211,0.498349,0.693279,0.407306,0.376607,0.146371,0.497055,0.0995198,0.148066,0.649462,0.616723,0.885868,0.645542,0.191943,0.261926,0.35855,0.0231063,0.196681,0.0420933,0.0600626,0.196613,0.658943,0.780272,0.549273,0.306815,0.256431,0.714381,0.456781,0.585004,0.721834,0.929309,0.0941206,0.871161,0.954168,0.491537,0.99057,0.0178475,0.467012,0.647034,0.352566,0.140786,0.749973,0.813973,0.705396,0.0805292,0.433476,0.775874,0.653357,0.0152175,0.606948,0.112855,0.568791,0.204689,0.763682,0.117832,0.0222457,0.845792,0.858145,0.259079,0.36627,0.95941,0.92107,0.731842,0.928698,0.484575,0.669295,0.485504,0.446398,0.737679,0.237513,0.707127,0.742219,0.494595,0.115883,0.927064,0.948854,0.552661,0.811111,0.973852,0.0398441,0.2932,0.744622,0.83879,0.330456,0.560114,0.385528,0.543316,0.960355,0.747059,0.494941,0.210526,0.648079,0.793429,0.669917,0.791548,0.106957,0.665616,0.265374,0.54037,0.0881134,0.941,0.699137,0.29521,0.667535,0.476831,0.374333,0.901167,0.858088,0.756976,0.329625,0.0872979,0.349329,0.110388,0.911041,0.485681,0.350967,0.216066,0.750511,0.457187,0.933836,0.880186,0.202485,0.681558,0.93447,0.0572047,0.742796,0.178238,0.443222,0.12224,0.979906,0.643694,0.189029,0.958768,0.689102,0.509138,0.333596,0.229904,0.748308,0.74502,0.2974,0.474523,0.368558,0.761426,0.733208,0.700788,0.487655,0.950294,0.667965,0.385605,0.875303,0.180954,0.460433,0.377094,0.000954092,0.962288,0.143361,0.0121412,0.177384,0.898383,0.536007,0.997016,0.636479,0.284025,0.224346,0.355802,0.573721,0.859156,0.288558,0.74264,0.163532,0.539394,0.208099,0.827061,0.232029,0.37912,0.636455,0.722457,0.645336,0.136204,0.703845,0.187189,0.386014,0.463171,0.916655,0.745305,0.84578,0.696412,0.344635,0.477773,0.757132,0.550156,0.621436,0.793023,0.69624,0.921791,0.395889,0.131843,0.244346,0.709097,0.82805,0.735778,0.699211,0.588989,0.231014,0.905797,0.968509,0.146856,|0.412547,0.766075,0.654441,0.916713,0.00848037,0.493899,0.689963,0.516956,0.777819,0.817859,0.0776643,0.891169,0.794737,0.328087,0.0208412,0.47996,0.434737,0.532231,0.0807298,0.640071,0.651721,0.671352,0.996255,0.640608,0.936863,0.533003,0.632492,0.813826,0.702886,0.717707,0.690806,0.556767,0.936424,0.00605714,0.0728878,0.182927,0.387908,0.134819,0.991724,0.383071,0.605888,0.803127,0.855402,0.808917,0.651828,0.0466217,0.280503,0.68055,0.475645,0.596718,0.510272,0.178775,0.217261,0.264773,0.0650371,0.500129,0.490005,0.269418,0.47787,0.0437121,0.591538,0.761889,0.901011,0.818804,0.870218,0.10605,0.586829,0.873598,0.0427184,0.112291,0.607442,0.835898,0.241877,0.674311,0.0519403,0.13946,0.998955,0.488106,0.45116,0.802326,0.626223,0.476542,0.0933033,0.690517,0.689696,0.891328,0.00361955,0.576692,0.819399,0.766338,0.908218,0.394083,0.823991,0.731701,0.233602,0.760458,0.439447,0.26437,0.900303,0.215441,0.139238,0.500007,0.797438,0.94041,0.173275,0.659791,0.113366,0.689597,0.187292,0.166973,0.391669,0.143343,0.0611538,0.588941,0.296971,0.480632,0.55022,0.389309,0.415116,0.298925,0.325296,0.258749,0.423718,0.167931,0.990566,0.228842,0.181275,0.98978,0.532619,0.0965714,0.131789,0.260689,0.175872,0.239216,0.177531,0.202266,0.099107,0.508606,0.103992,0.772358,0.293682,0.164659,0.661403,0.212161,0.548882,0.801394,0.368556,0.445126,0.929801,0.37506,0.0921713,0.250042,0.280556,0.400217,0.811365,0.142606,0.481625,0.365564,0.375691,0.458285,0.397724,0.11877,0.966046,0.970663,0.567623,0.202782,0.0764453,0.444026,0.135003,0.863745,0.251576,0.443007,0.249349,0.5589,0.826502,0.489637,0.973737,0.00304127,0.962297,0.0248441,0.878436,0.17271,0.324205,0.293028,0.782945,0.980427,0.135709,0.774914,0.482409,0.505684,0.794077,0.219339,0.697915,0.979703,0.360795,0.599358,0.131557,0.189129,0.539475,0.0847332,0.885764,0.379735,0.0937146,0.201444,0.995881,0.633867,0.0580337,0.311569,0.0902906,0.926456,0.590776,0.457448,0.450575,0.0520946,0.961728,0.424636,0.718711,0.300354,0.884869,0.940164,0.484344,0.220896,0.920394,0.741651,0.353107,0.472479,0.413683,0.041201,0.758421,0.312385,0.996141,0.48267,0.657259,0.603646,0.143227,0.397844,0.657167,0.593699,0.452726,0.465962,0.635742,0.62853,0.181258,0.99696,0.0808892,0.873877,0.281651,0.617393,0.181828,0.831049,0.719647,0.154374,0.117988,0.380996,0.615925,0.0526437,0.427291,0.950787,0.39015,0.00391853,0.449972,0.602659,0.994218,0.952969,0.517439,0.0679272,0.195181,0.422806,0.190481,0.173912,0.253344,0.603901,0.720477,0.123008,0.0870236,0.290564,0.224407,0.61426,0.0565387,0.369897,0.793022,0.0653731,0.310996,0.78906,0.821327,0.347412,0.47645,0.709838,0.839192,0.505776,0.998088,0.790643,0.0370342,0.169382,0.753929,0.0158777,0.727173,0.625377,0.836712,0.211651,0.546288,0.62709,0.23947,0.379365,0.568566,0.000777781,0.994579,0.494533,0.0296224,0.0397897,0.0157494,0.277657,0.888359,0.988611,0.109703,0.57912,0.215209,0.0782891,0.592171,0.57989,0.224183,0.148062,0.348623,0.026179,0.37098,0.503232,0.0180082,0.492338,0.55332,0.243091,0.921396,0.0220868,0.954566,0.669205,0.305088,0.882402,0.39406,0.589442,0.501211,0.781494,0.880073,0.701208,0.648229,0.641825,0.0864778,0.583917,0.410405,0.562952,0.512297,0.194378,0.785227,0.283457,0.616813,0.580668,0.279002,0.366597,0.0999297,0.0227023,0.824273,0.858542,0.675208,0.769248,0.712189,0.633535,0.916957,0.31333,0.268135,0.201178,0.543769,0.762247,0.886964,0.0139079,0.952107,0.579416,0.666037,0.450805,0.132044,0.812073,0.846681,0.889333,0.705247,0.877206,0.492554,0.948284,0.654449,0.599958,0.0637828,0.916686,0.49374,0.310728,0.707048,0.879947,0.155277,0.671939,0.803611,0.341203,0.676728,0.246917,0.857854,0.0723596,0.073272,0.865997,0.733635,0.860632,0.366198,0.577255,0.380456,0.131716,0.960417,0.426763,0.793586,0.20291,0.968475,0.962096,0.366574,0.196884,0.304091,0.982134,0.791154,0.0949395,0.0187868,0.046211,0.391429,0.210086,0.579039,0.516015,0.486611,0.682356,0.28804,0.00571901,0.422148,0.664913,0.444032,0.777261,0.99488,0.0116749,0.695017,0.288542,0.17486,0.13701,0.54789,0.0993361,0.611656,0.904941,0.327981,0.352353,0.155748,0.638218,0.808969,0.0384299,0.402449,0.628002,0.806267,0.514402,0.333678,0.217672,0.0407376,0.0591198,0.664725,0.504226,0.130309,0.106597,0.9145,0.526785,0.833255,0.720683,0.244547,0.276011,0.396117,0.0089938,0.355589,0.421593,0.734023,0.132645,0.799473,0.562057,0.724723,0.906218,0.017918,0.10082,0.343126,0.433912,0.429342,0.118664,0.742755,0.904977,0.32749,0.866657,0.116772,0.729511,0.0132003,0.780308,0.320631,0.053786,0.790803,0.3758,0.833019,0.324871,0.0890998,0.421661,0.214606,0.858789,0.601755,0.712021,0.799587,0.676205,0.897451,0.452468,0.379614,0.705142,0.55251,0.83273,0.623334,0.305732,0.940431,0.227918,0.426156,0.844464,0.065208,0.522984,0.218808,0.553841,0.318467,0.967472,0.44131,0.919131,0.292376,0.836751,0.416663,0.677107,0.388801,0.383992,0.428644,0.725097,0.266387,0.688113,0.397692,0.377887,0.589978,0.615347,0.205195,0.277281,0.257433,0.681099,0.11894,0.611816,0.479504,0.618893,0.0795609,0.298402,0.696907,0.926574,0.185817,0.73599,0.410176,0.0899432,0.836924,0.711555,0.665588,0.153411,0.926416,0.702724,0.385815,0.596158,0.125357,0.458821,0.747815,0.134667,0.636483,0.194526,0.646624,0.0386984,0.695999,0.500187,0.477443,0.690013,0.607554,0.783938,0.24856,0.26895,0.137445,0.7412,0.500552,0.85431,0.772682,0.329307,0.373035,0.680609,0.0975221,0.0612823,0.306051,0.230137,0.379856,0.878751,0.81122,0.165866,0.743834,0.106076,0.0374242,0.741719,0.229686,0.99386,0.782129,0.351089,0.368108,0.0468856,0.380557,0.264691,0.389318,0.0805993,0.158352,0.147266,0.361967,0.829044,0.219319,0.223024,0.712965,0.553545,0.256997,0.945513,0.350675,0.27982,0.603363,0.18864,0.907455,0.490992,0.343366,0.229187,0.449335,0.921143,0.593436,0.560311,0.977675,0.747802,0.32459,0.434527,0.187584,0.7403,0.667123,0.334355,0.344976,0.756486,0.137646,0.520344,0.402666,0.136629,0.993645,0.695585,0.287557,0.984587,0.222219,0.971201,0.75621,0.988011,0.833256,0.124161,0.924296,0.690443,0.0964487,0.812388,0.984322,0.907602,0.151584,0.768827,0.368032,0.838369,0.151626,0.844643,0.523113,0.750473,0.565351,0.919275,0.120968,0.541889,0.882405,0.0145082,0.21052,0.478938,0.463127,0.515426,0.181464,0.337533,0.720933,0.917006,0.93371,0.0861828,0.601587,0.223993,0.204241,0.74694,0.229831,0.30188,0.130767,0.849831,0.196253,0.0967663,0.287217,0.613928,0.783046,0.133046,0.188684,0.127915,0.81099,0.0163428,0.209137,0.584256,0.433201,0.380277,0.615867,0.596541,0.539759,0.218479,0.407725,0.643175,0.376234,0.562236,0.781319,0.372687,0.843076,0.21417,0.217102,0.948791,0.53987,0.0769539,0.0108171,0.272255,0.865642,0.671059,0.884188,0.686181,0.0565326,0.539733,0.251969,0.30975,0.63374,0.908128,0.741893,0.243663,0.515067,0.30275,0.19984,0.900205,0.565439,0.383539,0.786256,0.36901,0.257427,0.675252,0.357072,0.818102,0.949833,0.839593,0.556405,0.0692968,0.179429,0.415517,0.322851,0.586802,0.294963,0.257713,0.0481362,0.266079,0.677037,0.451734,0.0486667,0.349289,0.403727,0.252558,0.480164,0.585293,0.756694,0.358386,0.621378,0.272453,0.218852,0.0560815,0.426581,0.0800393,0.375661,0.621612,0.0975811,0.121908,0.930422,0.00893438,0.62973,0.255045,0.97185,0.194642,0.112736,0.441698,0.303799,0.817674,0.4824,0.650803,0.874777,0.825978,0.156145,0.257693,0.920112,0.320874,0.703467,0.672684,0.270056,0.335693,0.858882,0.963479,0.627615,0.162443,0.364859,0.354276,0.655812,0.181104,0.81039,0.523906,0.855509,0.680334,0.377697,0.574348,0.855323,0.857289,0.702109,0.856774,0.0891569,0.0825143,0.664491,0.459433,0.486698,0.0556629,0.437085,0.0868957,0.167547,0.862485,0.266434,0.0050568,0.585195,0.291167,0.66391,0.260493,0.45545,0.856324,0.140982,0.107947,0.419484,0.594212,0.819807,0.0999056,0.894863,0.755265,0.988865,0.210816,0.181035,0.683859,0.779424,0.763629,0.441104,0.0695736,0.492631,0.713808,0.297377,0.0532993,0.522907,0.781489,0.282979,0.69331,0.716199,0.408361,0.0511554,0.91129,0.185744,0.904902,0.0276865,0.644159,0.767196,0.378862,0.642993,0.141548,0.736794,0.0205709,0.489298,0.639999,0.886109,0.0632403,0.76441,0.667474,0.262107,0.16911,0.862661,0.928054,0.301763,0.957704,0.0755789,0.562068,0.217685,0.818957,0.555469,0.0596758,0.208335,0.194987,0.678921,0.271088,0.759204,0.323674,0.0415801,0.352585,0.00631511,0.671065,0.828965,0.563641,0.760108,0.426187,0.220071,0.240654,0.0328852,0.33053,0.158978,0.119528,0.588117,0.649787,0.0765987,0.958859,0.822552,0.170046,0.991856,0.402785,0.822207,0.062475,0.0527108,0.721546,0.0495529,0.355082,0.316737,0.107296,0.96499,0.00971049,0.0184658,0.575436,0.920704,0.677184,0.863785,0.692716,0.0858988,0.0999687,0.830473,0.327603,0.875068,0.213399,0.779796,0.699799,0.763738,0.487607,0.496551,0.254616,0.633141,0.681835,0.315285,0.82914,0.392812,0.468653,0.274084,0.636981,0.632177,0.742961,0.897282,0.0159006,0.97738,0.591653,0.933327,0.0181395,0.193814,0.838494,0.589549,0.833435,0.0489211,0.66537,0.145916,0.502674,0.150576,0.422663,0.245832,0.574506,0.230147,0.518903,0.389349,0.570828,0.323925,0.0823933,0.190215,0.742352,0.419548,0.596693,0.887819,0.228796,0.644436,0.292616,0.760263,0.216355,0.634931,0.626583,0.790935,0.84191,|0.729706,0.355169,0.511088,0.895849,0.468269,0.454133,0.739113,0.165482,0.553357,0.125452,0.731354,0.772764,0.339235,0.182942,0.908489,0.133723,0.108517,0.323916,0.393754,0.098119,0.0493919,0.261103,0.107176,0.958232,0.433951,0.440664,0.976231,0.026266,0.216921,0.942908,0.434853,0.0894596,0.00640529,0.480461,0.796352,0.401661,0.751942,0.0505443,0.539031,0.712302,0.838013,0.138018,0.0359391,0.528358,0.419943,0.752985,0.405713,0.332762,0.691807,0.0579106,0.581316,0.410029,0.310569,0.195142,0.261886,0.516576,0.20768,0.206496,0.764561,0.0249233,0.578874,0.580856,0.144763,0.947125,0.512091,0.331408,0.619463,0.812587,0.650672,0.0188423,0.230026,0.768081,0.310366,0.769623,0.963713,0.560735,0.716461,0.0815364,0.177393,0.638985,0.678048,0.03348,0.777859,0.300255,0.3203,0.166042,0.170058,0.450084,0.942899,0.229635,0.0162135,0.23363,0.206676,0.619902,0.584841,0.491475,0.67525,0.64848,0.875407,0.415301,0.757344,0.329207,0.205301,0.640817,0.965539,0.268686,0.761698,0.45841,0.238556,0.326524,0.935962,0.293557,0.303231,0.370468,0.203169,0.305192,0.435521,0.720553,0.98124,0.748933,0.149047,0.64778,0.445556,0.279249,0.394783,0.0355476,0.976633,0.718299,0.327278,0.369615,0.38144,0.207706,0.453731,0.0984233,0.207661,0.513677,0.633947,0.746051,0.766085,0.769476,0.234344,0.475787,0.294095,0.761132,0.65549,0.140299,0.362143,0.593049,0.208577,0.823417,0.410589,0.707742,0.519221,0.687543,0.997928,0.489226,0.544387,0.414366,0.689373,0.0118812,0.23062,0.286078,0.48442,0.175972,0.66384,0.00861442,0.822512,0.946516,0.310075,0.213657,0.262411,0.345777,0.512307,0.928479,0.803324,0.734651,0.81118,0.593956,0.696873,0.0185084,0.845952,0.384806,0.910835,0.482204,0.717116,0.16512,0.590278,0.723032,0.311476,0.92905,0.976095,0.498867,0.469305,0.95189,0.28795,0.148469,0.475606,0.118789,0.0777165,0.106086,0.0748085,0.0314157,0.421895,0.760632,0.642516,0.422974,0.986944,0.927444,0.10263,0.459708,0.659114,0.40288,0.860022,0.677559,0.0353768,0.0307024,0.580865,0.397339,0.313225,0.992985,0.0201175,0.726512,0.725505,0.826864,0.0416915,0.353857,0.807029,0.763817,0.733815,0.824588,0.0493515,0.985384,0.491057,0.232345,0.148317,0.445891,0.676047,0.477778,0.756273,0.851009,0.914077,0.0311697,0.037169,0.0529719,0.00533229,0.969561,0.102641,0.183119,0.457986,0.466342,0.989445,0.402442,0.942317,0.118544,0.569034,0.464909,0.326099,0.564779,0.685885,0.859908,0.193707,0.498013,0.999336,0.510046,0.680731,0.489696,0.466837,0.289493,0.212291,0.795489,0.0640171,0.465541,0.179182,0.804999,0.977327,0.681283,0.838948,0.178266,0.225114,0.536107,0.353107,0.147279,0.121578,0.394143,0.179351,0.871941,0.42436,0.888572,0.160529,0.934436,0.290424,0.805924,0.948385,0.74217,0.138068,0.0824983,0.734527,0.0412897,0.886077,0.0979787,0.733811,0.324488,0.417903,0.850022,0.521645,0.378907,0.931745,0.0617288,0.353957,0.299263,0.932237,0.79929,0.947593,0.217904,0.00279462,0.0464283,0.0305012,0.255398,0.995991,0.300574,0.61452,0.0640718,0.726029,0.00373411,0.330676,0.923934,0.774244,0.100397,0.94926,0.231725,0.479119,0.90979,0.916179,0.180862,0.649441,0.389624,0.518995,0.912602,0.454372,0.022655,0.302304,0.127183,0.116996,0.0928657,0.0278038,0.815474,0.153646,0.455107,0.0755715,0.686497,0.258653,0.691558,0.307628,0.817213,0.985872,0.766057,0.697034,0.61783,0.250292,0.00145137,0.413379,0.738103,0.979372,0.395373,0.72638,0.403434,0.158159,0.672876,0.204852,0.653847,0.666526,0.752065,0.737833,0.389477,0.517656,0.728955,0.30323,0.977556,0.791208,0.557145,0.287164,0.216504,0.587238,0.944781,0.27492,0.2269,0.384662,0.193865,0.213192,0.876947,0.945749,0.676978,0.471041,0.964408,0.175823,0.549927,0.0958534,0.987074,0.721867,0.124281,0.0403854,0.857672,0.691956,0.802498,0.728727,0.0619329,0.32393,0.788751,0.504366,0.553786,0.869131,0.946391,0.684598,0.513397,0.690933,0.64922,0.500545,0.962538,0.230264,0.253727,0.826417,0.327889,0.0172859,0.381755,0.931729,0.311932,0.595637,0.62784,0.638387,0.916846,0.840319,0.68644,0.39153,0.550063,0.325159,0.822234,0.32659,0.991145,0.516078,0.215497,0.868832,0.458264,0.428401,0.767713,0.80539,0.557785,0.8309,0.42378,0.273893,0.987241,0.202156,0.760622,0.0428216,0.391832,0.524036,0.0201304,0.135533,0.85971,0.884147,0.64229,0.0241035,0.72266,0.725076,0.044723,0.449984,0.688428,0.0209724,0.468466,0.354909,0.145156,0.312266,0.192426,0.605849,0.422104,0.493813,0.717126,0.70858,0.545143,0.935629,0.310838,0.980123,0.847172,0.503877,0.25376,0.751042,0.84417,0.453747,0.203352,0.273042,0.996517,0.578185,0.711217,0.0883007,0.198644,0.651797,0.511399,0.908971,0.0200415,0.0527819,0.906702,0.0687571,0.728027,0.178018,0.891635,0.448548,0.547913,0.311776,0.438198,0.0685499,0.878803,0.495328,0.770152,0.847492,0.212159,0.348405,0.904904,0.892188,0.516415,0.71624,0.34534,0.561826,0.312834,0.777569,0.330957,0.264681,0.864168,0.895267,0.211312,0.357561,0.233859,0.333384,0.702492,0.833357,0.409045,0.222235,0.96658,0.310905,0.0697057,0.532174,0.857901,0.90785,0.46278,0.173118,0.620139,0.067234,0.777468,0.314844,0.613165,0.0325376,0.746637,0.0255609,0.982656,0.132746,0.224753,0.251727,0.460918,0.808009,0.10086,0.676947,0.119241,0.186334,0.27105,0.523897,0.609567,0.728433,0.715011,0.13941,0.275924,0.945856,0.604061,0.408086,0.644085,0.768796,0.105372,0.283319,0.808587,0.0864574,0.395208,0.0616601,0.921845,0.177245,0.802111,0.644603,0.171961,0.448672,0.370594,0.597222,0.719387,0.282083,0.835835,0.0227214,0.697927,0.735567,0.688584,0.235699,0.689233,0.378104,0.972739,0.849719,0.946805,0.833029,0.488746,0.869686,0.18361,0.723715,0.826143,0.445482,0.167241,0.310461,0.629431,0.0169089,0.811502,0.221173,0.784714,0.0458246,0.135803,0.103751,0.272259,0.0253625,0.0304381,0.889118,0.769116,0.0735615,0.58757,0.638873,0.62863,0.747831,0.786295,0.595636,0.23641,0.455662,0.203336,0.0544167,0.458705,0.498742,0.388273,0.0165881,0.851174,0.342715,0.412609,0.663462,0.00421268,0.125981,0.12358,0.379618,0.774289,0.0145577,0.132071,0.106973,0.841082,0.615406,0.506116,0.0996951,0.818765,0.869434,0.465252,0.178355,0.697702,0.731813,0.876078,0.337953,0.425925,0.0288385,0.823118,0.0243354,0.648684,0.631233,0.647694,0.474553,0.236997,0.612085,0.383734,0.626222,0.0583387,0.413607,0.629775,0.348907,0.884014,0.429852,0.168649,0.431422,0.904142,0.775993,0.665958,0.321111,0.250527,0.54432,0.363032,0.0965991,0.745853,0.440727,0.617302,0.288887,0.392284,0.124373,0.974552,0.418391,0.984568,0.592503,0.585532,0.308154,0.634892,0.233281,0.849915,0.651228,0.0291959,0.729411,0.961361,0.900236,0.0067094,0.750913,0.542372,0.218843,0.94601,0.546461,0.350941,0.494351,0.60506,0.953172,0.0911298,0.506577,0.47116,0.109872,0.561727,0.469468,0.989771,0.76478,0.0647509,0.00722909,0.323943,0.92545,0.712862,0.62595,0.49181,0.329414,0.293784,0.81127,0.789692,0.946625,0.458655,0.0206918,0.296088,0.572979,0.37688,0.781309,0.100835,0.684304,0.944654,0.476682,0.527488,0.196908,0.748688,0.249633,0.783878,0.653698,0.421352,0.426866,0.0567107,0.923684,0.0641008,0.316071,0.105759,0.109273,0.70462,0.036749,0.163914,0.91912,0.386547,0.650187,0.270097,0.646237,0.550505,0.604932,0.434735,0.169742,0.490815,0.896959,0.744208,0.373955,0.133879,0.871958,0.641414,0.73979,0.150799,0.0581537,0.37477,0.694588,0.341882,0.216758,0.186406,0.982281,0.410512,0.871741,0.324962,0.823206,0.745923,0.524491,0.277796,0.147165,0.0415589,0.220491,0.236156,0.478705,0.0374908,0.031913,0.21685,0.315633,0.429363,0.856081,0.747411,0.386025,0.656064,0.406985,0.276825,0.633375,0.411128,0.208926,0.554562,0.434589,0.358907,0.424617,0.323824,0.689709,0.057982,0.592059,0.692787,0.355155,0.107378,0.360903,0.885616,0.172395,0.445383,0.0427093,0.793626,0.693665,0.658547,0.411606,0.967098,0.349457,0.714784,0.381281,0.845266,0.378776,0.724298,0.926975,0.0951124,0.651655,0.786272,0.324329,0.973306,0.190568,0.614443,0.148219,0.39843,0.612443,0.163935,0.808919,0.199579,0.382309,0.904927,0.586404,0.544527,0.416349,0.536939,0.279269,0.00514627,0.175609,0.733837,0.706035,0.434439,0.37589,0.227984,0.0147351,0.384646,0.0766272,0.462984,0.907299,0.816977,0.489046,0.147587,0.0847731,0.308582,0.00181174,0.360635,0.75422,0.953317,0.575793,0.3799,0.826896,0.0765427,0.4559,0.221635,0.579394,0.0167551,0.149326,0.543893,0.992172,0.764824,0.866413,0.697955,0.0779809,0.486288,0.344779,0.332375,0.227374,0.0946656,0.769217,0.424707,0.691357,0.735342,0.480055,0.00550604,0.240684,0.233602,0.757016,0.300677,0.0780928,0.249045,0.318792,0.73331,0.319829,0.486457,0.856213,0.602107,0.0341449,0.847083,0.498038,0.819829,0.878757,0.910353,0.714537,0.909491,0.357728,0.612553,0.997547,0.680317,0.46752,0.10692,0.201094,0.621161,0.968603,0.0264282,0.489698,0.556704,0.962269,0.795575,0.137518,0.15952,0.0215539,0.305811,0.744822,0.186789,0.0583373,0.51153,0.136944,0.0184767,0.0974561,0.24154,0.662739,0.532584,0.658654,0.425674,0.605553,0.336888,0.561298,0.0552449,0.950252,0.945382,0.71031,0.403459,0.604725,0.587091,0.577304,0.575022,0.871974,0.860122,0.718357,0.261241,0.202404,0.338836,0.670466,0.557415,0.745894,0.427218,0.887445,0.616349,0.6648,0.257381,0.703544,0.154066,0.962825,0.593233,0.0233967,0.276453,0.304248,0.242431,0.0737158,0.39268,0.596153,0.0487391,|0.47423,0.668459,0.930238,0.270947,0.403964,0.19571,0.113201,0.739214,0.794765,0.169579,0.354487,0.852322,0.645462,0.797155,0.444415,0.716961,0.392603,0.805572,0.532049,0.591089,0.0483021,0.166127,0.696626,0.279132,0.617904,0.990161,0.417139,0.508771,0.803064,0.798494,0.762456,0.784327,0.851191,0.8772,0.330606,0.118801,0.862114,0.0412874,0.882571,0.474611,0.493334,0.997758,0.693128,0.102851,0.650308,0.67794,0.972689,0.355115,0.0290389,0.125105,0.502084,0.020768,0.210117,0.235463,0.28657,0.98855,0.0951102,0.578017,0.782689,0.110077,0.357644,0.2537,0.844192,0.970046,0.054514,0.676775,0.654535,0.534828,0.536353,0.834091,0.38878,0.15919,0.307737,0.482406,0.181515,0.682786,0.728594,0.202072,0.635021,0.278502,0.863535,0.0971118,0.587085,0.960952,0.977354,0.296901,0.896823,0.557029,0.215177,0.856885,0.664342,0.634603,0.511302,0.236513,0.666098,0.450878,0.947189,0.0991249,0.355722,0.157606,0.179151,0.646697,0.664337,0.770761,0.469015,0.0483727,0.0276804,0.726042,0.0271994,0.929938,0.244924,0.933414,0.501102,0.256126,0.700774,0.0207497,0.648167,0.00279212,0.141718,0.985435,0.27594,0.690607,0.392333,0.327998,0.408119,0.314643,0.764327,0.653689,0.872257,0.642629,0.138013,0.67131,0.856798,0.251064,0.361273,0.551881,0.979617,0.770278,0.104149,0.551243,0.782783,0.397681,0.243275,0.679168,0.717749,0.472095,0.369393,0.295348,0.896688,0.761509,0.848152,0.757728,0.506802,0.0226269,0.00301415,0.402309,0.0706403,0.921787,0.51404,0.390922,0.803483,0.222237,0.140176,0.903031,0.940452,0.245086,0.327519,0.698804,0.177851,0.377217,0.314889,0.773175,0.649568,0.998253,0.0679079,0.783882,0.421147,0.827799,0.783973,0.630652,0.332602,0.850411,0.17274,0.947735,0.228507,0.262959,0.952848,0.727143,0.417101,0.292027,0.187944,0.432834,0.996459,0.751625,0.391766,0.562838,0.62001,0.492843,0.719595,0.433688,0.875452,0.0307995,0.494716,0.448109,0.380866,0.330392,0.670293,0.179681,0.408365,0.59792,0.0203703,0.354428,0.981719,0.484449,0.0572217,0.653822,0.126598,0.6466,0.262564,0.923383,0.0445659,0.0904587,0.339421,0.260239,0.370448,0.859617,0.395343,0.487254,0.973709,0.438727,0.056528,0.202144,0.483181,0.283886,0.557135,0.238533,0.045228,0.498411,0.799573,0.447469,0.713877,0.914197,0.643425,0.172563,0.218018,0.892572,0.923077,0.0221193,0.857389,0.401744,0.950338,0.263,0.903378,0.455966,0.108053,0.610255,0.701931,0.00758725,0.802686,0.724229,0.588108,0.894188,0.457948,0.691956,0.991059,0.256639,0.436426,0.757982,0.260228,0.0195828,0.319699,0.731113,0.226767,0.996531,0.561861,0.0541548,0.139757,0.830815,0.52346,0.676926,0.75213,0.778516,0.524655,0.584424,0.578133,0.779622,0.0483158,0.883993,0.200948,0.758385,0.717523,0.969968,0.14705,0.35519,0.66586,0.484597,0.504731,0.178434,0.457472,0.237846,0.0919837,0.577112,0.348482,0.0254923,0.546875,0.174494,0.767065,0.545975,0.75023,0.546232,0.852414,0.574825,0.29285,0.193081,0.293201,0.611721,0.163105,0.968908,0.0710584,0.343401,0.517337,0.430372,0.017981,0.471042,0.514705,0.613658,0.446929,0.223677,0.117896,0.876396,0.340059,0.272781,0.108751,0.676096,0.328326,0.247114,0.088457,0.993234,0.455559,0.183183,0.299765,0.546656,0.435219,0.797747,0.396364,0.382547,0.764078,0.070399,0.548565,0.12165,0.805477,0.808122,0.0206813,0.379222,0.763266,0.26454,0.320214,0.689862,0.414187,0.757582,0.905858,0.470972,0.599969,0.953875,0.634059,0.174025,0.355661,0.470091,0.238835,0.929398,0.219157,0.662568,0.904544,0.889962,0.7269,0.875498,0.567927,0.889471,0.855762,0.803141,0.761202,0.0676489,0.900554,0.661654,0.290816,0.706732,0.0841902,0.447693,0.926717,0.586038,0.862599,0.853522,0.645759,0.848228,0.369753,0.179595,0.968996,0.314107,0.716398,0.450035,0.91815,0.421994,0.0667197,0.399935,0.125221,0.39736,0.953937,0.564333,0.952286,0.243644,0.255526,0.537338,0.82976,0.13171,0.493295,0.573917,0.527352,0.810146,0.162426,0.624928,0.787354,0.0790848,0.138367,0.172489,0.0234118,0.319687,0.751607,0.0490199,0.868104,0.0796016,0.0768942,0.294997,0.796477,0.0231188,0.144864,0.703393,0.42499,0.725139,0.640433,0.836268,0.749281,0.842891,0.377508,0.49695,0.0814338,0.451507,0.120287,0.0950303,0.98516,0.599725,0.450545,0.861562,0.422662,0.428747,0.912133,0.962607,0.657877,0.975481,0.0804648,0.705932,0.396489,0.701389,0.3202,0.120467,0.577303,0.150091,0.517222,0.136255,0.407232,0.559906,0.796297,0.159178,0.500436,0.345068,0.345141,0.0331997,0.473616,0.463685,0.0255585,0.393876,0.497542,0.880396,0.591287,0.752521,0.654601,0.260359,0.383906,0.0850797,0.970954,0.367245,0.740101,0.294882,0.696603,0.032402,0.208265,0.207585,0.531719,0.920853,0.594507,0.554095,0.499694,0.807204,0.740871,0.274137,0.323172,0.628575,0.910812,0.0860763,0.328295,0.192824,0.498449,0.228527,0.767178,0.198596,0.106405,0.401023,0.693896,0.847444,0.51998,0.146149,0.278002,0.0127975,0.843798,0.129337,0.892647,0.104142,0.00863093,0.934547,0.319748,0.517137,0.627994,0.22537,0.503733,0.198833,0.932187,0.606798,0.96854,0.673892,0.542059,0.456833,0.302788,0.5858,0.38656,0.955848,0.742684,0.343366,0.899328,0.935139,0.120859,0.137769,0.672126,0.864068,0.619666,0.181098,0.344587,0.422278,0.81942,0.295304,0.290311,0.875689,0.0055086,0.963635,0.230099,0.77086,0.973582,0.624862,0.281327,0.360678,0.180864,0.545615,0.828326,0.877519,0.583576,0.44463,0.878112,0.213972,0.343084,0.450118,0.0273088,0.80195,0.630514,0.745705,0.704107,0.855554,0.717803,0.922557,0.409376,0.645562,0.55015,0.526619,0.432971,0.272446,0.381032,0.0395066,0.901933,0.0974446,0.933886,0.729774,0.452741,0.715471,0.477794,0.820528,0.827438,0.797048,0.715346,0.87447,0.3069,0.786538,0.365873,0.930938,0.338955,0.588399,0.321036,0.0673434,0.0233775,0.277592,0.800407,0.0704048,0.150191,0.0848156,0.303668,0.317468,0.968032,0.787803,0.222767,0.0541269,0.379283,0.00419337,0.778055,0.714164,0.568641,0.692176,0.981964,0.0914128,0.111399,0.901242,0.910966,0.0917138,0.856792,0.606585,0.507998,0.17744,0.771459,0.72054,0.14176,0.522881,0.0992731,0.046049,0.167613,0.646013,0.237584,0.905601,0.0893176,0.12503,0.51337,0.438303,0.290559,0.447609,0.85558,0.477522,0.839005,0.189995,0.103461,0.668101,0.96862,0.610676,0.918048,0.56103,0.956303,0.504746,0.352094,0.550268,0.785995,0.289359,0.0450274,0.00228012,0.290913,0.733443,0.722121,0.249393,0.729799,0.717089,0.448566,0.557983,0.871928,0.898491,0.983907,0.55773,0.0774737,0.333712,0.176239,0.826702,0.886686,0.688517,0.320093,0.903447,0.163004,0.744538,0.676228,0.127806,0.30389,0.722649,0.0268611,0.872505,0.00134367,0.816009,0.535544,0.511056,0.353173,0.743347,0.86251,0.134119,0.0920682,0.90492,0.341426,0.999623,0.051847,0.0261971,0.0291187,0.473824,0.781358,0.897556,0.64765,0.0464832,0.434328,0.639466,0.898491,0.707679,0.349987,0.0293536,0.705615,0.0768177,0.561639,0.361784,0.584611,0.460499,0.235641,0.390453,0.767242,0.500661,0.687613,0.576896,0.190744,0.571272,0.129394,0.965963,0.95884,0.500389,0.307128,0.175556,0.170255,0.827991,0.723726,0.490638,0.661496,0.46751,0.340448,0.890793,0.594418,0.868877,0.471193,0.444396,0.879343,0.434925,0.700669,0.191604,0.138852,0.514797,0.775302,0.0109998,0.0969599,0.834811,0.604883,0.576368,0.811487,0.337825,0.0877349,0.236132,0.382356,0.204228,0.0399177,0.206875,0.989805,0.909023,0.753955,0.751676,0.616837,0.442341,0.39303,0.216381,0.3257,0.206061,0.953517,0.0980152,0.0391872,0.102256,0.74129,0.790191,0.151439,0.674915,0.627458,0.906604,0.746586,0.405965,0.0976018,0.824311,0.82121,0.852354,0.125313,0.999387,0.454352,0.352785,0.765723,0.501497,0.825712,0.120811,0.584875,0.64018,0.522279,0.83742,0.712864,0.343139,0.916815,0.523692,0.291395,0.86653,0.726712,0.259593,0.355597,0.473772,0.151974,0.501776,0.825424,0.450343,0.903179,0.52574,0.250479,0.0268098,0.749377,0.800834,0.116168,0.345392,0.51306,0.134683,0.212599,0.450655,0.15356,0.36638,0.878873,0.559553,0.79547,0.188233,0.744085,0.275691,0.916492,0.500463,0.486634,0.37348,0.0805205,0.603977,0.56849,0.346374,0.603061,0.893533,0.170993,0.821413,0.991903,0.82991,0.855929,0.622123,0.0936975,0.899189,0.689252,0.158652,0.799163,0.229417,0.85907,0.823612,0.257309,0.816967,0.102417,0.499918,0.362655,0.894573,0.644245,0.587196,0.145356,0.714411,0.907674,0.40508,0.357323,0.795406,0.544916,0.113007,0.537002,0.582571,0.42286,0.153585,0.0652847,0.98553,0.855246,0.248648,0.701841,0.0308897,0.813963,0.459633,0.305746,0.205445,0.501529,0.508834,0.748095,0.485242,0.585496,0.194932,0.903086,0.135921,0.344287,0.920153,0.558053,0.348424,0.411021,0.0871727,0.26397,0.382681,0.401825,0.933353,0.820278,0.132042,0.753934,0.609972,0.687119,0.663898,0.475016,0.17531,0.310306,0.461589,0.309499,0.282494,0.347101,0.566371,0.16722,0.64625,0.343545,0.755814,0.28976,0.837875,0.45216,0.405582,0.382873,0.955519,0.902912,0.56181,0.354774,0.855518,0.719016,0.445944,0.230366,0.840063,0.46332,0.957765,0.940252,0.564385,0.192007,0.0797547,0.318511,0.938274,0.341641,0.13075,0.418566,0.65548,0.250576,0.892522,0.677291,0.579938,0.910019,0.64303,0.885423,0.332818,0.13281,0.417526,0.681636,0.560598,0.18339,0.343848,0.536143,0.742756,0.943237,0.585058,0.32212,0.112383,0.250795,0.415502,0.972251,0.951307,0.531733,0.072755,0.0996886,0.582738,0.821241,0.175701,|0.253245,0.35741,0.15512,0.864467,0.851765,0.505374,0.357628,0.154203,0.0356614,0.708647,0.508369,0.741095,0.590923,0.871273,0.390792,0.206101,0.652995,0.754832,0.135793,0.244763,0.443546,0.451176,0.546805,0.886074,0.551688,0.95029,0.0323952,0.215269,0.524299,0.25555,0.870229,0.296844,0.690187,0.251581,0.255682,0.164012,0.0677941,0.0433869,0.470699,0.426239,0.221974,0.449955,0.725279,0.713587,0.0450234,0.564461,0.127127,0.33432,0.170012,0.922274,0.381067,0.328297,0.872903,0.634749,0.180452,0.740931,0.372391,0.400807,0.616161,0.108346,0.86285,0.376688,0.714505,0.337856,0.85396,0.0697254,0.183089,0.817645,0.767361,0.253242,0.811302,0.379049,0.495809,0.870149,0.420506,0.326976,0.174621,0.248324,0.501693,0.486833,0.0702811,0.554235,0.835599,0.217243,0.871525,0.299535,0.802362,0.731672,0.0191277,0.090264,0.736121,0.181346,0.0347329,0.719215,0.467728,0.258319,0.308658,0.185497,0.820527,0.860607,0.735606,0.567391,0.33666,0.683402,0.751343,0.648021,0.49338,0.886978,0.45565,0.537396,0.276933,0.154926,0.119321,0.936745,0.00188941,0.425516,0.0413476,0.623974,0.834168,0.863651,0.382156,0.429901,0.392749,0.415749,0.0333762,0.40397,0.778245,0.948902,0.164149,0.552041,0.432645,0.412963,0.955694,0.743326,0.18703,0.550934,0.874596,0.719909,0.20848,0.496922,0.696276,0.388044,0.757567,0.489825,0.682165,0.709892,0.843527,0.648036,0.746503,0.565974,0.804202,0.669761,0.539734,0.00514913,0.186483,0.38458,0.686543,0.720721,0.456008,0.71226,0.479501,0.947318,0.400781,0.837061,0.405192,0.0314273,0.716318,0.985461,0.483663,0.429235,0.845329,0.195392,0.58077,0.0487294,0.301753,0.961138,0.459118,0.159567,0.0686375,0.169335,0.400188,0.993647,0.238883,0.273266,0.0903469,0.194986,0.813513,0.117857,0.862254,0.787722,0.549502,0.139221,0.00244945,0.152341,0.536071,0.800375,0.949175,0.805925,0.614235,0.508195,0.873653,0.734268,0.0250185,0.35476,0.169886,0.728942,0.298433,0.794233,0.0565979,0.3005,0.642641,0.558208,0.804321,0.918013,0.99992,0.0822235,0.0214533,0.258816,0.335252,0.811884,0.651155,0.709535,0.42993,0.0603607,0.187443,0.0258293,0.971069,0.198737,0.927592,0.335065,0.0607657,0.799819,0.648545,0.931836,0.51007,0.185748,0.769152,0.511514,0.821923,0.165315,0.307302,0.0365677,0.525686,0.141101,0.802275,0.0308745,0.117206,0.0976139,0.818887,0.122937,0.647583,0.766624,0.679598,0.944559,0.714571,0.146992,0.524801,0.76655,0.544995,0.136774,0.36664,0.936304,0.433957,0.497748,0.0270316,0.61713,0.475694,0.260249,0.140807,0.937655,0.720517,0.406182,0.149887,0.421035,0.0211973,0.546648,0.535159,0.48185,0.853244,0.900045,0.0365191,0.566147,0.0127813,0.0975208,0.826136,0.677252,0.0920364,0.114279,0.745997,0.63935,0.885689,0.702842,0.114118,0.239797,0.798857,0.0467142,0.717215,0.665477,0.485146,0.905482,0.843448,0.659765,0.347027,0.0796803,0.795605,0.463135,0.170639,0.84365,0.21091,0.213103,0.270764,0.962393,0.321597,0.535646,0.0947125,0.141762,0.803874,0.1449,0.853608,0.166686,0.906363,0.59043,0.301921,0.882705,0.550419,0.961683,0.277447,0.708011,0.86799,0.363919,0.927699,0.253612,0.710944,0.221704,0.113531,0.570219,0.0255652,0.0139055,0.0592551,0.993218,0.510044,0.121628,0.980169,0.516576,0.0524487,0.202537,0.0831987,0.97293,0.671713,0.205328,0.390184,0.472477,0.507252,0.7304,0.580537,0.390037,0.226968,0.0408959,0.292714,0.29196,0.490099,0.569472,0.0685915,0.99477,0.859059,0.286368,0.530536,0.215918,0.81706,0.496501,0.319332,0.287065,0.536411,0.659123,0.337195,0.273372,0.607946,0.922073,0.242244,0.965017,0.00330871,0.522576,0.959028,0.258503,0.263269,0.502738,0.878403,0.861355,0.248206,0.647763,0.225343,0.200937,0.537831,0.146686,0.0975152,0.0736139,0.686906,0.653085,0.569137,0.139043,0.302214,0.0249107,0.22492,0.671911,0.250087,0.101186,0.200072,0.252813,0.575681,0.449193,0.324603,0.7432,0.924727,0.684883,0.750599,0.277367,0.398844,0.28003,0.502773,0.99292,0.107198,0.3236,0.720223,0.852392,0.800734,0.695387,0.221567,0.0829988,0.723845,0.305333,0.0626988,0.560123,0.766972,0.643472,0.504162,0.0225916,0.752492,0.202556,0.593779,0.890488,0.960589,0.320642,0.300467,0.216802,0.456921,0.855895,0.221489,0.727171,0.335363,0.878053,0.358798,0.778955,0.646711,0.154478,0.121011,0.859961,0.926921,0.627674,0.184157,0.469142,0.0696932,0.316009,0.183424,0.223271,0.779453,0.809406,0.464953,0.062986,0.990451,0.305047,0.0741799,0.4273,0.308365,0.392846,0.069082,0.340077,0.77061,0.0569625,0.718677,0.711606,0.279103,0.382528,0.635775,0.734616,0.0841232,0.943811,0.0351356,0.442571,0.561815,0.323771,0.742662,0.500493,0.568109,0.980713,0.726825,0.206991,0.954917,0.792405,0.869677,0.831346,0.556329,0.651789,0.827727,0.911368,0.906702,0.674911,0.318213,0.484015,0.273685,0.432879,0.742523,0.845952,0.493125,0.431875,0.896968,0.429803,0.413324,0.794765,0.905825,0.303298,0.305509,0.370779,0.928991,0.396402,0.637344,0.697641,0.647442,0.368862,0.485593,0.106368,0.934661,0.702009,0.635725,0.639656,0.425085,0.0693901,0.282698,0.765431,0.582611,0.248488,0.538185,0.262395,0.543377,0.346455,0.196705,0.265772,0.709661,0.96715,0.370078,0.814794,0.0304089,0.65856,0.407396,0.216546,0.668438,0.73371,0.180026,0.934238,0.5038,0.888381,0.369617,0.49231,0.443421,0.24375,0.58081,0.458704,0.988954,0.611203,0.941926,0.638091,0.678342,0.604789,0.445068,0.0332151,0.987607,0.17535,0.586919,0.107326,0.98613,0.0977895,0.871379,0.819984,0.73026,0.0464428,0.954071,0.62576,0.913272,0.485569,0.841244,0.162382,0.0435176,0.20499,0.860174,0.149584,0.835224,0.25646,0.938537,0.552859,0.959661,0.352253,0.279144,0.853512,0.691064,0.598795,0.179026,0.0199819,0.170374,0.99163,0.838852,0.179756,0.277356,0.787643,0.200558,0.996234,0.161883,0.781354,0.550815,0.0732248,0.205467,0.0824319,0.468432,0.19524,0.83112,0.139729,0.194743,0.573498,0.455265,0.363754,0.059245,0.856532,0.341322,0.488344,0.581047,0.423267,0.836101,0.894217,0.129833,0.669611,0.95865,0.602857,0.658321,0.866292,0.467894,0.580771,0.45473,0.197858,0.994376,0.210094,0.259298,0.591156,0.857957,0.514133,0.434031,0.838599,0.224975,0.466654,0.45829,0.459395,0.821752,0.845783,0.35695,0.323407,0.74577,0.924189,0.136578,0.104368,0.9973,0.337913,0.237163,0.461798,0.996569,0.0198481,0.548844,0.874142,0.971547,0.0313339,0.0736009,0.441734,0.542256,0.413758,0.809595,0.809796,0.392226,0.303427,0.187189,0.542912,0.861771,0.458091,0.710306,0.558943,0.807226,0.453363,0.70245,0.805031,0.0459171,0.222105,0.406516,0.831905,0.742186,0.699542,0.936837,0.554217,0.0984433,0.966483,0.627537,0.552817,0.534846,0.476787,0.990008,0.764405,0.0859314,0.00465697,0.00445777,0.0479299,0.0323474,0.609677,0.720789,0.891486,0.953284,0.605706,0.444568,0.708539,0.506949,0.77066,0.612881,0.31672,0.197708,0.909673,0.700266,0.329517,0.675462,0.0506186,0.782708,0.335406,0.226073,0.226082,0.877849,0.928744,0.822136,0.112244,0.706994,0.605945,0.0317387,0.253616,0.00498199,0.854858,0.157908,0.110885,0.927459,0.510999,0.805961,0.962793,0.907503,0.0722762,0.234806,0.6062,0.0779215,0.859789,0.148134,0.629061,0.0459189,0.499627,0.575043,0.303359,0.225061,0.139562,0.0903922,0.154091,0.210777,0.495378,0.194008,0.912148,0.857934,0.0853837,0.206804,0.912927,0.465373,0.884619,0.798418,0.156518,0.383717,0.450899,0.835622,0.905589,0.722953,0.690657,0.122528,0.675529,0.270612,0.212252,0.516532,0.130676,0.0958616,0.941806,0.0351968,0.493647,0.132597,0.961038,0.237032,0.0714331,0.119617,0.245261,0.221531,0.764593,0.535375,0.531165,0.501971,0.545607,0.468678,0.995002,0.0290954,0.702905,0.596685,0.581832,0.235571,0.641886,0.798017,0.401902,0.872861,0.570639,0.477123,0.950102,0.662444,0.347502,0.0477812,0.264915,0.17005,0.796735,0.779011,0.698742,0.602159,0.873253,0.425766,0.630487,0.780176,0.630983,0.625529,0.514872,0.538208,0.349464,0.0100245,0.977895,0.117212,0.615366,0.940322,0.363663,0.423766,0.192253,0.789483,0.102927,0.682027,0.562708,0.938354,0.974626,0.672715,0.739957,0.0381546,0.565157,0.100113,0.363578,0.799807,0.0761356,0.714132,0.770059,0.759639,0.48809,0.581575,0.0638675,0.32273,0.814752,0.845692,0.187836,0.465882,0.522948,0.790671,0.869569,0.835724,0.921183,0.099054,0.222839,0.553378,0.50314,0.186997,0.228734,0.301697,0.516623,0.499085,0.658133,0.780647,0.817945,0.492347,0.171036,0.068336,0.0613487,0.321901,0.873212,0.389617,0.0448502,0.673275,0.158189,0.777609,0.900943,0.357288,0.499464,0.85665,0.949744,0.651952,0.135018,0.631435,0.645709,0.062402,0.654048,0.437049,0.487823,0.385948,0.242969,0.943248,0.478277,0.473151,0.282297,0.323136,0.163723,0.233683,0.779981,0.280822,0.944674,0.862613,0.2857,0.587669,0.378308,0.759848,0.278363,0.717292,0.203591,0.640898,0.757377,0.884329,0.977461,0.397316,0.0355423,0.939309,0.43789,0.798319,0.0168125,0.847434,0.918031,0.118951,0.956177,0.421667,0.391086,0.622437,0.0866492,0.725955,0.726309,0.488989,0.834367,0.663101,0.236166,0.704921,0.363541,0.652756,0.0808453,0.340676,0.593939,0.192663,0.252087,0.30988,0.744976,0.133088,0.412435,0.250901,0.0545046,0.638469,0.763848,0.375579,0.801294,0.7958,0.181936,0.105617,0.469485,0.852356,0.713672,0.50264,0.736783,0.691451,0.863231,0.853607,0.974428,0.367286,0.463706,0.627717,0.230973,0.856396,0.93623,0.0207233,0.0862006,0.493314,0.83836,0.567635,0.404899,|0.331572,0.783685,0.213341,0.751301,0.629543,0.145946,0.663769,0.191009,0.812667,0.388802,0.866123,0.452783,0.678009,0.738463,0.491686,0.630852,0.275732,0.208333,0.844828,0.91187,0.389275,0.773728,0.223765,0.334817,0.82227,0.855866,0.063764,0.744323,0.843881,0.919883,0.357422,0.427319,0.341054,0.336879,0.77498,0.4611,0.423439,0.68367,0.564423,0.714692,0.12936,0.690129,0.735916,0.240073,0.0683227,0.906726,0.950697,0.576067,0.361815,0.696433,0.623078,0.462392,0.00122011,0.798847,0.611931,0.726887,0.152893,0.438833,0.597004,0.640878,0.0207427,0.758111,0.953407,0.981731,0.4227,0.947259,0.459832,0.667366,0.938381,0.713662,0.870926,0.91393,0.569574,0.460192,0.372126,0.578231,0.160708,0.278384,0.743256,0.859526,0.445052,0.196791,0.56904,0.374476,0.336082,0.861378,0.460088,0.316298,0.253627,0.944354,0.367687,0.786116,0.436096,0.231793,0.886572,0.69748,0.697462,0.802434,0.88985,0.656647,0.0573618,0.557818,0.881975,0.497944,0.179497,0.66036,0.00737005,0.703688,0.504157,0.956464,0.867211,0.236857,0.409246,0.469504,0.338852,0.562382,0.461467,0.533537,0.869955,0.134185,0.792596,0.705747,0.130035,0.240871,0.343195,0.162533,0.879495,0.371015,0.644235,0.546619,0.779555,0.399749,0.449357,0.109823,0.0860412,0.236945,0.612925,0.226547,0.457858,0.300955,0.365945,0.697213,0.10136,0.549924,0.617519,0.463877,0.872757,0.0517004,0.521051,0.134546,0.256534,0.882534,0.117364,0.830826,0.113991,0.830309,0.908286,0.919811,0.168049,0.489,0.283825,0.626072,0.0184391,0.215577,0.807072,0.1126,0.5075,0.231721,0.301374,0.847643,0.835357,0.91951,0.518415,0.481023,0.380605,0.572215,0.915541,0.140978,0.363457,0.458229,0.781889,0.49611,0.869413,0.232796,0.691064,0.130613,0.363032,0.139998,0.251086,0.719479,0.337726,0.842756,0.91804,0.644438,0.955542,0.671143,0.140147,0.0616139,0.0809676,0.580122,0.804519,0.208919,0.0080291,0.466109,0.910286,0.144908,0.098949,0.778885,0.822982,0.392314,0.192584,0.91106,0.0567117,0.470909,0.628793,0.527556,0.115941,0.396671,0.301244,0.975907,0.924689,0.935884,0.447189,0.839913,0.37037,0.45362,0.168324,0.500054,0.795824,0.995143,0.701801,0.738637,0.429019,0.521417,0.521957,0.868389,0.206458,0.294759,0.204516,0.948311,0.220516,0.153739,0.613401,0.497649,0.0586711,0.81729,0.559905,0.00886971,0.162759,0.487478,0.809503,0.875971,0.608152,0.175799,0.15521,0.775221,0.285038,0.214225,0.567508,0.608414,0.296551,0.411982,0.506917,0.257182,0.464957,0.672118,0.931657,0.0163516,0.413829,0.439895,0.11693,0.82585,0.367231,0.877978,0.858844,0.318713,0.593831,0.501674,0.0600856,0.860992,0.415331,0.876144,0.609695,0.603437,0.759058,0.42366,0.411789,0.251195,0.582642,0.431459,0.0192451,0.971865,0.554607,0.584057,0.059979,0.390681,0.642003,0.336797,0.458864,0.932605,0.00126386,0.507411,0.785854,0.555853,0.856549,0.979291,0.550105,0.847086,0.83029,0.313758,0.618337,0.652554,0.737445,0.758405,0.857732,0.456826,0.786511,0.154648,0.89711,0.60248,0.890132,0.565004,0.530172,0.285998,0.442871,0.775466,0.967914,0.0788179,0.691054,0.266059,0.628125,0.76109,0.628754,0.877943,0.617123,0.440064,0.547287,0.282675,0.693664,0.959596,0.273794,0.55777,0.171181,0.453336,0.255897,0.171063,0.440577,0.548165,0.0318879,0.0303899,0.837354,0.252498,0.881613,0.996404,0.211523,0.363459,0.21247,0.382694,0.94146,0.987608,0.691321,0.600152,0.274841,0.0708545,0.361305,0.0504747,0.559223,0.569011,0.779731,0.543908,0.687919,0.546269,0.819103,0.0129462,0.984934,0.986768,0.916955,0.616146,0.532163,0.860765,0.218082,0.310163,0.521293,0.90181,0.684436,0.892345,0.832301,0.803964,0.130214,0.554442,0.849358,0.803358,0.241797,0.278258,0.427506,0.734026,0.218511,0.375226,0.394755,0.777067,0.576541,0.581566,0.716006,0.495687,0.239378,0.620898,0.627535,0.49788,0.96586,0.697913,0.675662,0.882746,0.116234,0.0293532,0.485965,0.71249,0.400438,0.283739,0.503399,0.440227,0.0906891,0.904452,0.271527,0.0598801,0.0166978,0.812846,0.956618,0.844245,0.47883,0.696771,0.550878,0.0459904,0.415864,0.16396,0.833429,0.424917,0.625857,0.495468,0.801791,0.896676,0.288092,0.638033,0.488802,0.824047,0.822114,0.639789,0.566933,0.827087,0.153327,0.0483013,0.270729,0.483411,0.647383,0.126337,0.319514,0.721779,0.946255,0.133777,0.236446,0.632114,0.100256,0.747803,0.281858,0.237679,0.76701,0.334521,0.345853,0.46457,0.0976632,0.454159,0.842769,0.205733,0.54666,0.537569,0.538801,0.138305,0.752945,0.261841,0.981249,0.204406,0.56325,0.409247,0.751336,0.20099,0.418412,0.356949,0.474489,0.470837,0.567811,0.178481,0.844728,0.404991,0.477198,0.453165,0.494964,0.228486,0.702258,0.280711,0.210317,0.0140249,0.296622,0.184215,0.697411,0.527943,0.056549,0.225412,0.577791,0.510572,0.484534,0.594519,0.0441239,0.331903,0.612037,0.250873,0.990589,0.347369,0.571462,0.0301573,0.402062,0.948325,0.0648598,0.920676,0.477862,0.0229325,0.182849,0.499528,0.203811,0.165824,0.995277,0.808779,0.798567,0.0468026,0.0387858,0.952993,0.128918,0.57596,0.0301984,0.495038,0.4221,0.317375,0.88832,0.309251,0.553988,0.656343,0.811746,0.176093,0.20608,0.352518,0.680037,0.712561,0.648754,0.498968,0.919257,0.327708,0.335392,0.719742,0.507655,0.619417,0.271458,0.513757,0.635641,0.46747,0.724559,0.918165,0.647419,0.366646,0.284716,0.179841,0.427226,0.371482,0.460037,0.478225,0.394946,0.361315,0.240654,0.76794,0.403012,0.535399,0.215911,0.117137,0.625039,0.216686,0.251136,0.0350047,0.0310124,0.426268,0.611555,0.896007,0.155871,0.957812,0.503339,0.0333589,0.28954,0.948194,0.335799,0.454501,0.481644,0.134192,0.226195,0.0404704,0.278608,0.719282,0.0245078,0.608132,0.891363,0.495815,0.409272,0.717381,0.043157,0.25128,0.196835,0.854623,0.923279,0.634009,0.17888,0.36148,0.567263,0.687834,0.937284,0.0141156,0.23279,0.109405,0.959562,0.136054,0.8385,0.584805,0.271201,0.0791624,0.835794,0.267967,0.506836,0.741804,0.206457,0.16748,0.156172,0.81273,0.673184,0.371573,0.37965,0.472119,0.571199,0.533296,0.118276,0.802965,0.483599,0.599849,0.849505,0.914561,0.0456339,0.712491,0.382793,0.897902,0.021694,0.671341,0.962841,0.428337,0.783144,0.912595,0.398348,0.467482,0.586978,0.976019,0.221238,0.0852774,0.366753,0.812815,0.216924,0.359473,0.93544,0.107518,0.915174,0.286537,0.0365006,0.513646,0.284324,0.335859,0.505188,0.402491,0.45069,0.0690402,0.678889,0.0991802,0.237577,0.287842,0.151466,0.88743,0.588605,0.415265,0.413865,0.916811,0.231848,0.0143728,0.404679,0.272961,0.0438443,0.724061,0.776169,0.113603,0.788629,0.666853,0.611025,0.727021,0.46472,0.704455,0.0980151,0.752683,0.874997,0.915808,0.00684804,0.16802,0.301276,0.0796136,0.821165,0.925006,0.86166,0.688338,0.740431,0.346782,0.274989,0.698555,0.0177041,0.560173,0.107528,0.699814,0.368662,0.423612,0.039439,0.519863,0.593243,0.0233944,0.15005,0.404537,0.386486,0.438421,0.879726,0.405944,0.817013,0.234268,0.412737,0.998556,0.390399,0.792585,0.250749,0.488218,0.302561,0.719992,0.862405,0.721531,0.519594,0.105152,0.350376,0.412939,0.525141,0.541897,0.610293,0.662014,0.966194,0.609103,0.931987,0.0492191,0.97612,0.505783,0.951732,0.934956,0.89822,0.776853,0.757643,0.0856955,0.540599,0.708654,0.390732,0.769354,0.241183,0.221948,0.673774,0.886207,0.504341,0.767744,0.220528,0.712992,0.0242581,0.281612,0.217751,0.362021,0.687653,0.256784,0.503221,0.944791,0.388239,0.924271,0.251451,0.185992,0.255088,0.674011,0.396505,0.646723,0.989011,0.79277,0.822739,0.30538,0.829818,0.0976635,0.19353,0.545896,0.925971,0.630028,0.606641,0.221441,0.572545,0.685232,0.0265757,0.140602,0.874233,0.678804,0.89337,0.707154,0.341676,0.901529,0.440017,0.372415,0.743521,0.567981,0.841072,0.326081,0.839499,0.855998,0.472119,0.462412,0.640327,0.271701,0.21946,0.483081,0.412252,0.705912,0.65667,0.267104,0.501915,0.462067,0.159003,0.0570381,0.518513,0.111489,0.63479,0.445722,0.623282,0.689258,0.233636,0.88569,0.695728,0.7268,0.267006,0.952841,0.78618,0.0900062,0.336841,0.0430702,0.106524,0.0383834,0.702969,0.142781,0.0562704,0.924342,0.112135,0.997903,0.971172,0.917588,0.50302,0.920054,0.381505,0.703475,0.308362,0.437873,0.200439,0.312439,0.985358,0.0285593,0.213178,0.243563,0.395257,0.147142,0.93926,0.141133,0.974339,0.703794,0.00927907,0.643782,0.20646,0.910169,0.726829,0.71299,0.809651,0.205393,0.594815,0.00566894,0.314722,0.428247,0.058369,0.0689416,0.654746,0.72226,0.905657,0.172976,0.853569,0.383047,0.497814,0.223825,0.433787,0.343802,0.823226,0.645235,0.0887295,0.145033,0.126991,0.245341,0.277142,0.0362337,0.571513,0.887582,0.869144,0.829609,0.0593411,0.0428867,0.889886,0.913645,0.573754,0.479431,0.677062,0.779521,0.292453,0.191545,0.133308,0.235342,0.947497,0.0596845,0.318638,0.946705,0.11545,0.410623,0.185406,0.909639,0.242436,0.433548,0.860056,0.694879,0.725786,0.326229,0.419434,0.187946,0.457346,0.991572,0.624829,0.160249,0.0716352,0.293649,0.526627,0.0406455,0.616426,0.389958,0.493777,0.71395,0.614058,0.780034,0.691068,0.928126,0.87053,0.847253,0.58712,0.710564,0.435274,0.0387074,0.542874,0.335711,0.818837,0.523581,0.130919,0.988805,0.648547,0.247907,0.966692,0.427333,0.357372,0.17186,0.819669,0.121132,0.840597,0.430968,0.592422,0.42812,0.34652,0.013577,0.264557,0.961796,0.969943,0.69971,0.57479,0.164824,0.95777,0.489625,0.472544,0.0324392,|0.606035,0.566326,0.795812,0.498141,0.603993,0.758762,0.245396,0.862914,0.536241,0.147053,0.295533,0.397948,0.0496557,0.406491,0.704828,0.793721,0.00387144,0.892688,0.130516,0.245704,0.0133521,0.179314,0.940805,0.864136,0.302211,0.149324,0.294617,0.11083,0.385396,0.8896,0.652283,0.464408,0.0224794,0.621309,0.955575,0.200714,0.374768,0.766169,0.400861,0.434969,0.947339,0.53932,0.761511,0.24356,0.301365,0.932609,0.294563,0.641851,0.953962,0.68987,0.659339,0.0773209,0.787859,0.185441,0.167131,0.0741496,0.264196,0.365092,0.554779,0.174182,0.602929,0.272299,0.510608,0.636431,0.818189,0.196698,0.769324,0.496347,0.434108,0.167494,0.0740134,0.624337,0.508417,0.0335339,0.451011,0.208502,0.616908,0.79266,0.884901,0.212629,0.991113,0.686867,0.171294,0.251292,0.971032,0.532505,0.832457,0.079192,0.0520545,0.547739,0.478836,0.162036,0.324772,0.756979,0.93609,0.0450513,0.856715,0.143368,0.601957,0.230396,0.307944,0.439236,0.396261,0.729565,0.301371,0.469405,0.326297,0.184709,0.998786,0.692543,0.786594,0.797082,0.698346,0.931862,0.847973,0.691445,0.344363,0.0699655,0.387605,0.72145,0.680205,0.0502388,0.98313,0.974539,0.710433,0.500119,0.293029,0.290644,0.869976,0.829185,0.171317,0.53679,0.779508,0.113319,0.743666,0.876328,0.054386,0.222899,0.973618,0.385811,0.675674,0.678371,0.323631,0.0507144,0.380948,0.029263,0.244424,0.807718,0.868392,0.640998,0.148119,0.434418,0.328646,0.12408,0.174175,0.663063,0.108798,0.685404,0.185645,0.209494,0.959184,0.529755,0.148984,0.627293,0.792528,0.739343,0.388197,0.303149,0.234844,0.180029,0.309581,0.778607,0.505277,0.642198,0.411207,0.711622,0.466402,0.482551,0.754994,0.706101,0.333651,0.150412,0.883389,0.0969539,0.674385,0.939765,0.885307,0.856077,0.768565,0.15448,0.380092,0.947797,0.849078,0.839997,0.267852,0.961168,0.991442,0.893347,0.577737,0.428825,0.00790697,0.40829,0.70458,0.846714,0.610631,0.671088,0.753693,0.136668,0.441217,0.55244,0.302936,0.360267,0.860703,0.902899,0.97331,0.0957639,0.607974,0.574819,0.45111,0.596479,0.597973,0.544034,0.527277,0.253602,0.535657,0.106796,0.0585333,0.972829,0.422985,0.822893,0.318024,0.113801,0.311815,0.516312,0.509503,0.837424,0.339455,0.468582,0.31012,0.151961,0.117494,0.0735759,0.492602,0.64973,0.111808,0.0551608,0.557999,0.18855,0.194779,0.34978,0.80476,0.676806,0.921723,0.442275,0.543608,0.928168,0.10156,0.632088,0.894418,0.272957,0.531963,0.589647,0.473603,0.727461,0.933772,0.496787,0.982727,0.940351,0.521358,0.469818,0.681112,0.728291,0.749282,0.0310091,0.718583,0.907068,0.144763,0.191427,0.0771718,0.521098,0.394519,0.0677392,0.701151,0.0249152,0.00550073,0.956379,0.921271,0.24075,0.799812,0.654324,0.611561,0.934372,0.226966,0.0467871,0.205638,0.4144,0.179861,0.500346,0.265605,0.688333,0.207829,0.218743,0.528443,0.265872,0.650686,0.779767,0.725761,0.393883,0.902389,0.716179,0.902056,0.507437,0.29606,0.704559,0.936501,0.146862,0.406165,0.874898,0.417463,0.251029,0.924915,0.523562,0.531558,0.45093,0.758244,0.981443,0.80888,0.972642,0.924521,0.25432,0.246562,0.83176,0.967468,0.0592697,0.778508,0.641634,0.16824,0.834321,0.49163,0.886255,0.240124,0.707535,0.853441,0.915692,0.523628,0.462334,0.353238,0.376085,0.725466,0.51035,0.782006,0.14839,0.586679,0.0731724,0.0575967,0.31624,0.37694,0.989464,0.218463,0.776293,0.569343,0.861509,0.0169684,0.867811,0.506853,0.728572,0.578255,0.344624,0.684793,0.388845,0.41791,0.849112,0.412887,0.488061,0.92245,0.830429,0.922805,0.811824,0.790505,0.194749,0.247238,0.884769,0.107839,0.912099,0.26973,0.751589,0.607597,0.27547,0.660446,0.4132,0.752395,0.0439361,0.446919,0.918784,0.817707,0.953055,0.603585,0.803152,0.0788645,0.992561,0.0689499,0.539182,0.649392,0.74031,0.188787,0.389834,0.68152,0.169449,0.369679,0.379902,0.443913,0.0409227,0.17829,0.882591,0.718976,0.360383,0.236615,0.959821,0.530297,0.576911,0.959792,0.150044,0.479041,0.544522,0.272626,0.0735343,0.553032,0.312021,0.989952,0.400235,0.0811362,0.475895,0.135831,0.0652001,0.59176,0.148252,0.615486,0.271933,0.933336,0.213185,0.9472,0.125652,0.0562698,0.848559,0.298845,0.150794,0.258296,0.348192,0.225975,0.526272,0.384835,0.55153,0.51688,0.56613,0.887259,0.752488,0.968562,0.262075,0.885837,0.17124,0.723644,0.36004,0.00673616,0.0373808,0.838431,0.409183,0.231696,0.720896,0.139222,0.786032,0.251447,0.50206,0.992305,0.238717,0.412294,0.0883467,0.135726,0.650982,0.123653,0.233728,0.100059,0.57771,0.799225,0.136049,0.758026,0.17265,0.366282,0.617473,0.3025,0.010461,0.585679,0.485586,0.842168,0.914474,0.700461,0.016566,0.145804,0.580325,0.432133,0.785479,0.751987,0.286609,0.88001,0.202565,0.576293,0.849367,0.866518,0.624473,0.285591,0.57772,0.348713,0.965517,0.538333,0.122813,0.486067,0.14078,0.20227,0.906129,0.975481,0.493544,0.379827,0.638473,0.309332,0.921986,0.904559,0.322793,0.419454,0.264394,0.755881,0.528506,0.787496,0.146962,0.307703,0.634835,0.799523,0.0866411,0.503266,0.98717,0.852972,0.507496,0.88186,0.683883,0.869174,0.277605,0.0702587,0.54515,0.101413,0.0211675,0.819848,0.124555,0.2544,0.590814,0.887611,0.637792,0.464785,0.329164,0.426287,0.128897,0.494409,0.24151,0.863649,0.946561,0.152132,0.882948,0.782339,0.281026,0.8909,0.106505,0.649848,0.353755,0.526133,0.370674,0.70819,0.0331983,0.745229,0.98603,0.0927479,0.881794,0.285775,0.218092,0.670951,0.987288,0.18448,0.569374,0.227805,0.805542,0.641372,0.872081,0.471883,0.0720239,0.139562,0.871858,0.344744,0.294595,0.345317,0.123333,0.055653,0.440177,0.679073,0.537812,0.426556,0.916336,0.195058,0.764391,0.622954,0.0535069,0.905041,0.620889,0.642356,0.461865,0.25575,0.00520974,0.311426,0.865468,0.875625,0.0824081,0.425336,0.745485,0.256452,0.373107,0.986548,0.998797,0.874526,0.481784,0.336556,0.329111,0.126022,0.700489,0.111505,0.596547,0.778616,0.479677,0.137087,0.644138,0.880261,0.710316,0.875136,0.0408772,0.912627,0.0701139,0.515668,0.335635,0.541747,0.769881,0.36754,0.594959,0.0420409,0.0161812,0.0135102,0.320344,0.555645,0.26322,0.481902,0.820226,0.310916,0.16655,0.508583,0.396723,0.441561,0.786195,0.251164,0.989056,0.446711,0.161305,0.0498492,0.936473,0.888944,0.165292,0.822987,0.782286,0.139118,0.331439,0.32838,0.507736,0.0587865,0.586321,0.927631,0.837698,0.512574,0.777303,0.250319,0.455658,0.27244,0.847532,0.865462,0.557873,0.925827,0.837673,0.628124,0.455742,0.36063,0.562882,0.0983366,0.793668,0.131443,0.00487244,0.212781,0.846478,0.638042,0.333371,0.490067,0.29889,0.0687853,0.212119,0.240472,0.652214,0.533646,0.566138,0.295495,0.250489,0.720717,0.971593,0.0734855,0.29632,0.512562,0.0701902,0.0880666,0.806925,0.535235,0.671849,0.863394,0.906029,0.0421864,0.928281,0.0349198,0.249447,0.769603,0.616175,0.956305,0.325569,0.599292,0.434202,0.270067,0.623388,0.757339,0.410787,0.0868362,0.0639112,0.505249,0.545657,0.482341,0.466414,0.131759,0.039194,0.750714,0.137055,0.654775,0.696026,0.939134,0.527524,0.118056,0.0878065,0.166789,0.0845162,0.318682,0.035403,0.438822,0.500678,0.492373,0.783895,0.167294,0.552067,0.576865,0.715702,0.0727288,0.93183,0.604283,0.260564,0.312327,0.468007,0.943522,0.415688,0.825392,0.500136,0.866322,0.695368,0.390184,0.820462,0.0802454,0.849248,0.224047,0.390739,0.325215,0.00143081,0.0227461,0.517667,0.26807,0.298981,0.894541,0.921461,0.319141,0.247503,0.0103883,0.182921,0.879346,0.903124,0.433273,0.531248,0.153975,0.89186,0.762539,0.25552,0.886189,0.789823,0.555738,0.766785,0.411531,0.673224,0.0525128,0.979312,0.861808,0.553533,0.685963,0.831169,0.319432,0.87854,0.691482,0.737731,0.480038,0.645982,0.426113,0.359005,0.686734,0.746057,0.545306,0.135681,0.373154,0.422179,0.704371,0.250681,0.247534,0.488837,0.709061,0.924961,0.149103,0.934482,0.62292,0.96416,0.825135,0.0070008,0.597688,0.0314002,0.25661,0.645375,0.745912,0.756123,0.310361,0.0828753,0.775096,0.528041,0.524803,0.11246,0.0814866,0.502519,0.545574,0.781029,0.912561,0.766994,0.190228,0.586212,0.68592,0.136623,0.759528,0.6445,0.386296,0.423496,0.0550376,0.332751,0.0771524,0.40122,0.683024,0.414391,0.838493,0.640637,0.139515,0.701276,0.828721,0.672327,0.881722,0.49665,0.0221551,0.560863,0.951079,0.537832,0.952521,0.380093,0.458717,0.0363101,0.387951,0.788884,0.786116,0.330103,0.288308,0.708232,0.949085,0.915616,0.722682,0.0272357,0.447048,0.531682,0.468139,0.749634,0.658438,0.0199046,0.396443,0.786732,0.635308,0.0704602,0.36292,0.979793,0.935276,0.954512,0.833561,0.588734,0.0917289,0.0658137,0.51402,0.572721,0.948072,0.245853,0.772933,0.416466,0.0249298,0.717673,0.831982,0.798729,0.412498,0.212977,0.795623,0.0892588,0.151158,0.492653,0.112948,0.51292,0.0718733,0.0798897,0.638426,0.629972,0.833624,0.404508,0.880702,0.695017,0.675898,0.109265,0.513417,0.302573,0.211741,0.959001,0.67452,0.540171,0.276709,0.892252,0.757385,0.95129,0.0130951,0.316361,7.236e-05,0.153063,0.15583,0.514089,0.346977,0.551981,0.761916,0.145727,0.851169,0.51531,0.058796,0.027415,0.651496,0.658648,0.231103,0.822111,0.0181571,0.343974,0.311416,0.764824,0.164028,0.96345,0.426352,0.884496,0.775022,0.210677,0.743798,0.0226454,0.427034,0.513967,0.00242269,0.420394,0.593396,0.34097,0.652644,0.790657,0.898776,0.200864,0.544715,0.519186,0.0557972,0.0397434,0.594299,0.80616,|0.837457,0.458974,0.881216,0.0690916,0.960451,0.336238,0.669282,0.765017,0.19117,0.11029,0.154379,0.755465,0.63906,0.689706,0.0201933,0.965078,0.74567,0.599902,0.596283,0.322871,0.700355,0.952086,0.216307,0.690842,0.358668,0.149815,0.479056,0.53163,0.869621,0.130733,0.537945,0.915137,0.700575,0.63752,0.444561,0.935776,0.745563,0.896611,0.543182,0.662582,0.437485,0.571858,0.88778,0.276715,0.923801,0.711615,0.860822,0.612505,0.418747,0.411159,0.694316,0.565355,0.105987,0.446108,0.700266,0.901774,0.527662,0.476008,0.150904,0.928751,0.159572,0.146033,0.965218,0.158657,0.60043,0.828256,0.495972,0.378828,0.859912,0.123357,0.851166,0.717544,0.284171,0.60482,0.582301,0.840823,0.461182,0.756833,0.968564,0.487383,0.679826,0.221597,0.753794,0.130516,0.814362,0.922807,0.958473,0.557808,0.719158,0.634406,0.0286959,0.0263191,0.821466,0.937816,0.24498,0.717934,0.290989,0.721243,0.381712,0.43733,0.864255,0.544758,0.72989,0.0694494,0.710243,0.375295,0.558905,0.522648,0.126982,0.540104,0.610454,0.0492262,0.599726,0.253961,0.340531,0.873967,0.277595,0.0915394,0.593016,0.364946,0.97285,0.070683,0.867257,0.693682,0.356988,0.584853,0.0493011,0.580727,0.557251,0.232172,0.730421,0.196147,0.373044,0.228065,0.096007,0.0239897,0.701264,0.0522095,0.477311,0.591127,0.373685,0.248279,0.978261,0.40727,0.500182,0.18373,0.487539,0.613308,0.769405,0.986516,0.279375,0.751559,0.222981,0.996678,0.39198,0.03331,0.178343,0.132118,0.774186,0.388142,0.217588,0.780564,0.609944,0.873831,0.782629,0.2591,0.0930212,0.0908674,0.0246814,0.305081,0.0188283,0.382754,0.00195682,0.129164,0.861909,0.261734,0.860941,0.180613,0.312794,0.326579,0.175185,0.946138,0.689819,0.837819,0.898751,0.978042,0.0280594,0.864955,0.109514,0.586449,0.145531,0.891098,0.623259,0.570653,0.865501,0.915896,0.228114,0.11163,0.344477,0.116669,0.979672,0.836822,0.0557408,0.301197,0.869778,0.155295,0.460248,0.899171,0.628677,0.267203,0.628946,0.775816,0.843714,0.277529,0.829689,0.545255,0.907001,0.374537,0.418192,0.862153,0.23069,0.747471,0.272667,0.42938,0.369881,0.958476,0.092133,0.697006,0.302173,0.793356,0.312577,0.43911,0.191788,0.681573,0.409645,0.439277,0.692065,0.991974,0.892966,0.403828,0.500469,0.813565,0.0327681,0.254754,0.0903147,0.136425,0.314646,0.798713,0.87668,0.239897,0.467322,0.594135,0.720306,0.35924,0.613065,0.81319,0.122262,0.26806,0.967903,0.229029,0.0475114,0.964441,0.0677006,0.234579,0.875902,0.302272,0.455348,0.906634,0.113279,0.88121,0.0483982,0.828023,0.715304,0.560967,0.584165,0.308723,0.637866,0.137455,0.16831,0.028048,0.016392,0.281455,0.273894,0.192941,0.0323511,0.814936,0.445868,0.113662,0.486358,0.258946,0.269563,0.0358015,0.185429,0.865743,0.892376,0.159155,0.306549,0.763207,0.970315,0.911678,0.804341,0.511394,0.609719,0.830648,0.676566,0.156299,0.636937,0.968744,0.705889,0.49311,0.369195,0.437352,0.646581,0.232519,0.218713,0.11847,0.49912,0.312877,0.1267,0.525314,0.0453058,0.56254,0.368041,0.303861,0.182114,0.227686,0.872067,0.23775,0.312326,0.668119,0.972515,0.644387,0.419828,0.475048,0.818247,0.985123,0.729907,0.758596,0.950212,0.754244,0.353897,0.242177,0.506269,0.479665,0.711926,0.345794,0.641556,0.626422,0.849195,0.719881,0.670991,0.272595,0.415873,0.930412,0.889308,0.834859,0.841285,0.208526,0.151629,0.0967467,0.124863,0.310919,0.551277,0.298969,0.689817,0.413443,0.954284,0.104731,0.599862,0.933891,0.0367635,0.501591,0.139907,0.606113,0.882018,0.75168,0.550255,0.595075,0.158062,0.287788,0.6962,0.211956,0.715636,0.404442,0.204624,0.37223,0.493014,0.906544,0.690074,0.744757,0.897965,0.64543,0.930252,0.312012,0.741871,0.896101,0.160425,0.994662,0.770467,0.262771,0.265129,0.808572,0.0559946,0.772646,0.419498,0.764952,0.986238,0.590023,0.589095,0.362099,0.991463,0.52938,0.645951,0.970066,0.0385626,0.226938,0.404999,0.796496,0.308264,0.900767,0.355581,0.153998,0.616093,0.490368,0.0236875,0.425455,0.950777,0.431658,0.96016,0.162535,0.326495,0.162984,0.280864,0.262237,0.646289,0.714123,0.584015,0.731755,0.242923,0.455826,0.640159,0.138936,0.780623,0.320414,0.525258,0.0906737,0.41376,0.757358,0.234305,0.663938,0.105024,0.825952,0.53049,0.652823,0.619904,0.0424466,0.99156,0.201923,0.689977,0.27202,0.340859,0.449292,0.0169611,0.519754,0.296968,0.59128,0.449463,0.422201,0.00312215,0.862638,0.656993,0.512907,0.819058,0.0161244,0.139736,0.165474,0.475816,0.982722,0.521093,0.80953,0.461631,0.325113,0.310851,0.838134,0.709827,0.0348464,0.193926,0.0493332,0.611662,0.933057,0.479458,0.464181,0.524902,0.614542,0.0106905,0.980205,0.187027,0.407336,0.551093,0.444644,0.123215,0.211876,0.00249654,0.0311182,0.41893,0.24231,0.966953,0.964433,0.496863,0.628121,0.798088,0.823275,0.245895,0.630636,0.26447,0.142799,0.0394702,0.768805,0.084847,0.740254,0.854939,0.596649,0.202442,0.620499,0.923439,0.536442,0.0619939,0.586738,0.849835,0.385801,0.216232,0.751792,0.922395,0.131297,0.00468349,0.624709,0.936066,0.608482,0.484474,0.443488,0.120585,0.250676,0.195491,0.819442,0.0233662,0.264666,0.509302,0.176533,0.52163,0.207475,0.923479,0.70556,0.442483,0.459234,0.192727,0.98456,0.778584,0.193806,0.629902,0.391617,0.388044,0.49969,0.538865,0.303389,0.390351,0.921158,0.58123,0.48119,0.300211,0.931124,0.548647,0.521657,0.779738,0.83553,0.115623,0.507394,0.36083,0.0272968,0.815002,0.570909,0.610862,0.943575,0.0590378,0.491477,0.129697,0.0547617,0.00188857,0.439556,0.966358,0.894799,0.863836,0.0553152,0.87369,0.21365,0.188037,0.913348,0.358039,0.795126,0.482603,0.856573,0.0497472,0.535196,0.963594,0.677231,0.428807,0.834364,0.93095,0.474453,0.579831,0.78507,0.853115,0.271711,0.494908,0.198578,0.874813,0.889255,0.367465,0.506077,0.474012,0.929803,0.931376,0.728154,0.962518,0.818116,0.747128,0.1081,0.978369,0.627194,0.727941,0.0115142,0.459723,0.572612,0.400226,0.78069,0.559213,0.783762,0.322645,0.246157,0.308553,0.235365,0.558454,0.883364,0.812675,0.272433,0.256718,0.921369,0.581946,0.208007,0.0213001,0.307263,0.172217,0.748402,0.83717,0.349065,0.46844,0.263384,0.184201,0.0342477,0.633269,0.646898,0.522084,0.339672,0.97872,0.958217,0.0410092,0.81537,0.988886,0.16155,0.972638,0.114357,0.466182,0.585132,0.521249,0.37383,0.494185,0.71007,0.192391,0.824652,0.475301,0.0465014,0.271537,0.207962,0.45252,0.445382,0.957925,0.921521,0.536113,0.309171,0.87261,0.195104,0.829116,0.241366,0.780952,0.980444,0.277879,0.411173,0.633856,0.89491,0.0557947,0.678302,0.45076,0.184988,0.794636,0.041442,0.550817,0.911919,0.0573317,0.656631,0.783896,0.28472,0.649131,0.528535,0.849117,0.18401,0.0480459,0.487217,0.682081,0.506619,0.953795,0.348215,0.126872,0.482446,0.515503,0.874272,0.320524,0.156949,0.575253,0.189001,0.60578,0.740083,0.333286,0.0760433,0.0981993,0.83895,0.250488,0.483149,0.718219,0.560292,0.700377,0.600086,0.555297,0.339171,0.844745,0.260756,0.464254,0.755101,0.792144,0.435555,0.775847,0.49087,0.950656,0.00725579,0.217945,0.830999,0.827831,0.0650251,0.671037,0.126282,0.947875,0.310835,0.129676,0.500429,0.655417,0.175598,0.490928,0.618259,0.178796,0.619439,0.59796,0.362018,0.0607077,0.0467325,0.381742,0.83485,0.655078,0.467359,0.484699,0.750999,0.761659,0.206592,0.789013,0.648267,0.90825,0.221636,0.195199,0.877473,0.293414,0.777503,0.753366,0.0862794,0.227003,0.711556,0.816113,0.40646,0.183549,0.735587,0.702154,0.282991,0.284553,0.941533,0.145467,0.184968,0.902422,0.902192,0.699493,0.636835,0.523383,0.531713,0.874133,0.290179,0.761496,0.354781,0.292825,0.965621,0.0931616,0.416019,0.017571,0.0417491,0.660966,0.934371,0.885101,0.69481,0.542295,0.176733,0.292388,0.429531,0.873359,0.188565,0.635597,0.515799,0.665909,0.898804,0.149881,0.0797704,0.229755,0.752318,0.320088,0.149551,0.872257,0.413827,0.793653,0.22581,0.311492,0.0713429,0.82408,0.10746,0.765453,0.826941,0.893674,0.956573,0.71798,0.504566,0.252106,0.127984,0.0959814,0.815457,0.753295,0.928232,0.901776,0.963802,0.188667,0.281113,0.971858,0.933765,0.368137,0.665098,0.554198,0.410191,0.708713,0.850292,0.505794,0.228309,0.635717,0.140929,0.708731,0.138907,0.262725,0.977513,0.816218,0.688516,0.763424,0.79703,0.667696,0.367311,0.305168,0.37467,0.540025,0.668819,0.534376,0.00188094,0.704421,0.178884,0.758205,0.447329,0.128258,0.799038,0.0832161,0.71527,0.58857,0.0827385,0.0187883,0.704463,0.0873624,0.570673,0.95482,0.0200073,0.348935,0.618425,0.407526,0.549715,0.0262183,0.526914,0.505263,0.613729,0.367471,0.56836,0.662808,0.954974,0.860716,0.963087,0.242881,0.53039,0.182721,0.68539,0.219248,0.480791,0.748318,0.244492,0.720926,0.430656,0.109525,0.694118,0.478988,0.395994,0.592262,0.731507,0.31325,0.772168,0.0729421,0.433407,0.891923,0.868246,0.966533,0.419418,0.609911,0.044787,0.54337,0.240467,0.0674639,0.553512,0.0580221,0.231347,0.226067,0.934275,0.671338,0.0802631,0.0584593,0.956015,0.873455,0.452561,0.852898,0.176108,0.648456,0.818972,0.528936,0.554254,0.0337837,0.644999,0.0481709,0.0221791,0.617727,0.683417,0.112243,0.370314,0.16032,0.938376,0.07987,0.429482,0.0614336,0.0590562,0.437172,0.135419,0.848232,0.613403,0.229883,0.620574,0.375895,0.82746,0.475429,0.654793,0.0695847,0.810183,0.715338,0.0560146,0.116268,0.625875,0.377963,0.42741,0.365627,0.63731,|0.0313578,0.723932,0.250157,0.817058,0.13563,0.850764,0.795317,0.695033,0.923041,0.41501,0.327887,0.155838,0.422693,0.414397,0.871649,0.363734,0.536083,0.520398,0.225498,0.732673,0.867789,0.302002,0.32774,0.710877,0.470593,0.179411,0.173389,0.893534,0.416804,0.124548,0.0585977,0.259514,0.227017,0.894761,0.827312,0.649365,0.874705,0.101241,0.601339,0.708295,0.780849,0.710427,0.838624,0.812942,0.852462,0.307681,0.493853,0.825833,0.0582003,0.160785,0.752242,0.224456,0.205526,0.855265,0.684361,0.174432,0.0897695,0.995838,0.255203,0.03114,0.900692,0.896472,0.561745,0.690382,0.350081,0.719503,0.842175,0.0459336,0.349447,0.0956515,0.626125,0.0780062,0.645719,0.849753,0.665543,0.786933,0.394173,0.299569,0.682531,0.604753,0.322109,0.990349,0.116431,0.84888,0.580857,0.693581,0.970909,0.949005,0.272802,0.845492,0.763534,0.306458,0.659198,0.288583,0.969679,0.453255,0.760764,0.178074,0.037048,0.786034,0.276281,0.17875,0.478926,0.999474,0.782564,0.0567564,0.11493,0.672039,0.552079,0.185803,0.346481,0.77197,0.14057,0.0930098,0.999482,0.0761145,0.29153,0.107054,0.710262,0.471573,0.935098,0.250158,0.234843,0.577591,0.132861,0.794174,0.99022,0.533443,0.0132581,0.339523,0.752788,0.295102,0.493034,0.444408,0.776626,0.957203,0.604097,0.0672567,0.554245,0.639004,0.388915,0.102976,0.579572,0.862725,0.737853,0.507739,0.685098,0.0915143,0.0432709,0.632082,0.329184,0.0522287,0.619585,0.763457,0.681475,0.472498,0.655207,0.523538,0.746006,0.952145,0.510483,0.162647,0.840591,0.791041,0.904384,0.691114,0.53472,0.429425,0.398684,0.0746242,0.0822194,0.792679,0.214003,0.670404,0.269449,0.654792,0.701837,0.184865,0.698459,0.0298712,0.394398,0.433386,0.347917,0.226941,0.627958,0.325072,0.307672,0.921753,0.830628,0.930401,0.262433,0.00252736,0.371441,0.484325,0.226971,0.929468,0.0972386,0.164268,0.158832,0.603148,0.784322,0.60535,0.941634,0.0611586,0.347675,0.041743,0.732221,0.445063,0.058552,0.710082,0.992008,0.689721,0.0132397,0.448059,0.414619,0.0442468,0.553195,0.555135,0.113275,0.494564,0.321975,0.0900443,0.648251,0.92893,0.171029,0.129203,0.12835,0.698212,0.269007,0.0702775,0.222473,0.811763,0.108063,0.356792,0.748792,0.0668125,0.472634,0.47587,0.75893,0.111306,0.291165,0.614378,0.980414,0.427249,0.231149,0.277458,0.0461369,0.523386,0.0166671,0.342088,0.35394,0.312606,0.753467,0.42796,0.179628,0.210388,0.787159,0.777757,0.148125,0.38055,0.693135,0.116259,0.0176128,0.7917,0.00562251,0.3124,0.22742,0.648082,0.939417,0.748357,0.304676,0.684517,0.988578,0.69752,0.0247137,0.212636,0.0620417,0.325346,0.503236,0.908947,0.103985,0.81716,0.443124,0.695572,0.0691684,0.202918,0.706054,0.775819,0.400037,0.231143,0.599574,0.324661,0.320998,0.758914,0.380411,0.976094,0.0401965,0.411181,0.100032,0.881354,0.0882142,0.950245,0.153591,0.284484,0.898448,0.422652,0.751069,0.493736,0.471098,0.641007,0.318319,0.954102,0.652933,0.718317,0.473624,0.098937,0.724663,0.317437,0.996837,0.317715,0.758525,0.84298,0.685233,0.220551,0.410658,0.0139613,0.356158,0.349294,0.993418,0.451095,0.756957,0.793621,0.839116,0.819402,0.865559,0.377046,0.306629,0.688425,0.0764056,0.971415,0.680853,0.0600621,0.111553,0.900986,0.087593,0.331913,0.934851,0.33003,0.443675,0.0596667,0.323739,0.231605,0.787087,0.52027,0.0772814,0.800588,0.0248385,0.260662,0.656846,0.0112515,0.918782,0.230939,0.133007,0.747782,0.10906,0.25652,0.537335,0.301706,0.938556,0.708855,0.339236,0.804493,0.318776,0.892015,0.69103,0.803374,0.123693,0.157831,0.42763,0.517011,0.520589,0.734823,0.778278,0.475032,0.024794,0.529002,0.841687,0.173509,0.0729445,0.816724,0.362046,0.131333,0.460493,0.913825,0.469508,0.517426,0.361437,0.300878,0.04272,0.159861,0.879722,0.45494,0.936185,0.726933,0.496199,0.830585,0.89701,0.681836,0.970251,0.592545,0.894037,0.693498,0.963089,0.635129,0.870671,0.977383,0.812554,0.744342,0.666564,0.787269,0.958563,0.0788152,0.193509,0.141231,0.0444411,0.698706,0.421895,0.748712,0.252379,0.571383,0.954068,0.0794043,0.913153,0.113066,0.79354,0.50285,0.394882,0.742486,0.352919,0.552743,0.640442,0.976765,0.475043,0.526354,0.444255,0.371895,0.836002,0.746331,0.300061,0.905185,0.657076,0.14884,0.738934,0.640912,0.0856916,0.488857,0.0154107,0.849481,0.809593,0.340619,0.0120875,0.188716,0.179569,0.836733,0.553762,0.497689,0.744299,0.433231,0.332541,0.233233,0.717725,0.845861,0.906223,0.656672,0.347266,0.895975,0.743481,0.097793,0.791338,0.307042,0.25017,0.165077,0.977593,0.64146,0.715537,0.377934,0.571434,0.313066,0.305022,0.537007,0.959725,0.494985,0.024667,0.62269,0.214275,0.903349,0.155981,0.227718,0.336213,0.0276085,0.890948,0.00783426,0.219123,0.0863827,0.930049,0.334176,0.0063954,0.940457,0.633037,0.0988227,0.264595,0.232681,0.160229,0.83268,0.615646,0.00982207,0.424261,0.639668,0.244835,0.682201,0.792996,0.49219,0.51162,0.567001,0.362607,0.809592,0.761172,0.52785,0.24481,0.859331,0.189691,0.723613,0.241929,0.446825,0.260978,0.0140995,0.929649,0.997125,0.0836921,0.779989,0.9673,0.480275,0.733436,0.637771,0.0279314,0.243353,0.587435,0.202851,0.444575,0.635545,0.0372329,0.940318,0.824733,0.170589,0.431155,0.593272,0.0143483,0.124331,0.403099,0.391345,0.404063,0.983929,0.690312,0.848182,0.534178,0.447156,0.311245,0.477694,0.136999,0.0947059,0.920651,0.279118,0.542184,0.669326,0.208656,0.205229,0.114385,0.796532,0.506035,0.864289,0.313703,0.528496,0.957924,0.0089252,0.661927,0.397374,0.993587,0.589831,0.529634,0.373587,0.487909,0.530405,0.58264,0.550682,0.363923,0.353221,0.80933,0.269807,0.688731,0.11606,0.949869,0.973583,0.755814,0.43155,0.301836,0.0160807,0.751992,0.422189,0.890482,0.952032,0.82893,0.18975,0.174542,0.877951,0.87465,0.523596,0.756509,0.932138,0.657574,0.426999,0.345634,0.594793,0.32613,0.731039,0.673841,0.939128,0.36971,0.124786,0.18587,0.547769,0.485831,0.121434,0.395813,0.561211,0.693956,0.965956,0.261786,0.271448,0.649735,0.666084,0.940267,0.665546,0.997279,0.136727,0.479092,0.00296932,0.473166,0.962068,0.323538,0.507271,0.0187732,0.519469,0.894598,0.889184,0.20227,0.635936,0.910683,0.255559,0.0601504,0.910037,0.298604,0.33825,0.631071,0.280523,0.0268636,0.597216,0.13062,0.0390944,0.0881316,0.941343,0.263343,0.975693,0.730632,0.0991021,0.424757,0.878692,0.151444,0.162647,0.52852,0.364031,0.0575338,0.817085,0.205324,0.718858,0.90233,0.667277,0.822296,0.738338,0.0840823,0.351738,0.497074,0.365815,0.979449,0.329027,0.70046,0.983404,0.607577,0.604109,0.111327,0.974797,0.955934,0.101237,0.935358,0.601597,0.229471,0.744893,0.300017,0.719504,0.832498,0.0452402,0.703448,0.575706,0.873078,0.378679,0.28058,0.185131,0.0542462,0.0169992,0.574445,0.244652,0.485966,0.68029,0.2297,0.575348,0.227796,0.0651268,0.630482,0.238187,0.625966,0.505193,0.352688,0.0472311,0.803396,0.315826,0.720153,0.11863,0.732335,0.549148,0.162946,0.808657,0.386923,0.92001,0.224891,0.130257,0.701876,0.217753,0.861627,0.558366,0.624783,0.681394,0.34437,0.0519492,0.0141068,0.152691,0.249549,0.99318,0.7679,0.0434567,0.869638,0.724746,0.348303,0.813763,0.0714657,0.597311,0.52218,0.0953808,0.935538,0.401937,0.05006,0.563077,0.780994,0.640806,0.224561,0.437614,0.960508,0.877958,0.610426,0.241622,0.0797428,0.283235,0.13753,0.112687,0.116884,0.53152,0.649432,0.311879,0.903997,0.679155,0.438153,0.693238,0.726695,0.862205,0.224398,0.987224,0.111643,0.612111,0.457854,0.845146,0.292198,0.091441,0.0496899,0.249771,0.470903,0.675217,0.167485,0.453103,0.334103,0.435026,0.659807,0.785262,0.88192,0.441004,0.101683,0.654395,0.768358,0.466829,0.897109,0.0793098,0.634151,0.335896,0.00150347,0.693503,0.947591,0.393931,0.433685,0.100262,0.634977,0.325652,0.198592,0.578943,0.453407,0.106113,0.228178,0.797421,0.00304323,0.231217,0.303417,0.19761,0.19053,0.0637705,0.889309,0.838137,0.0584976,0.578882,0.80144,0.597095,0.364716,0.531931,0.0446782,0.770363,0.942455,0.97827,0.767769,0.413263,0.708696,0.313516,0.799359,0.335242,0.399302,0.382326,0.581072,0.190674,0.000942469,0.737646,0.774224,0.386295,0.327237,0.611355,0.157817,0.24615,0.362866,0.659354,0.0907583,0.66628,0.643647,0.482526,0.963846,0.483554,0.313763,0.750289,0.969561,0.120549,0.834608,0.664053,0.543524,0.26675,0.992638,0.215885,0.74877,0.711632,0.982362,0.555884,0.093191,0.160735,0.395861,0.634402,0.649853,0.217532,0.0222064,0.680746,0.976251,0.590444,0.0442203,0.511239,0.714034,0.433741,0.490608,0.162501,0.431986,0.856021,0.293948,0.949554,0.331522,0.509382,0.896815,0.823332,0.28581,0.446597,0.655049,0.351157,0.644011,0.773685,0.475973,0.181958,0.610698,0.719823,0.585383,0.63267,0.148149,0.152925,0.58722,0.317313,0.794856,0.461331,0.93458,0.916571,0.227817,0.261201,0.65445,0.697473,0.276867,0.308538,0.780235,0.420843,0.247293,0.781481,0.935391,0.0303215,0.546637,0.299844,0.0194144,0.558553,0.90642,0.364679,0.117666,0.999502,0.448543,0.377437,0.880391,0.867824,0.0333927,0.933421,0.0514343,0.0181953,0.721079,0.908021,0.302016,0.0248516,0.063257,0.269395,0.342477,0.319958,0.392181,0.601432,0.903111,0.0696639,0.0446828,0.689063,0.664695,0.199302,0.7818,0.433558,0.863519,0.048223,0.854735,0.755832,0.750055,0.595528,0.91433,0.793752,0.720421,0.460805,0.180234,0.810687,0.712074,0.707948,0.371081,0.896235,0.914641,0.355043,|0.699492,0.0133299,0.754079,0.473259,0.433941,0.922077,0.677917,0.0571001,0.119065,0.117084,0.73914,0.63243,0.913162,0.370356,0.610511,0.83556,0.2037,0.0332522,0.551009,0.878461,0.371723,0.440708,0.233234,0.253209,0.245552,0.523974,0.160813,0.741088,0.614798,0.146262,0.765787,0.841225,0.178489,0.377067,0.643512,0.13583,0.813227,0.169165,0.0386968,0.398179,0.887957,0.286261,0.137262,0.179377,0.85012,0.0848401,0.726318,0.787823,0.142603,0.385232,0.364614,0.749422,0.252346,0.954955,0.935851,0.0341553,0.0546249,0.452391,0.0624889,0.239307,0.609538,0.480529,0.788588,0.690561,0.794186,0.831368,0.519636,0.309519,0.09308,0.675897,0.203641,0.795862,0.49778,0.0661324,0.216579,0.0148308,0.501315,0.661273,0.481932,0.15949,0.243114,0.61118,0.237157,0.603498,0.11352,0.593863,0.965869,0.107551,0.0280752,0.849636,0.319403,0.885364,0.976337,0.101431,0.0202616,0.160572,0.886318,0.609894,0.23478,0.467111,0.410376,0.587603,0.628405,0.682482,0.0210828,0.354345,0.830753,0.336629,0.387981,0.147997,5.88894e-05,0.301143,0.744322,0.934729,0.672291,0.505829,0.228107,0.359239,0.322044,0.762751,0.518392,0.170135,0.147668,0.280997,0.466782,0.0913014,0.284382,0.315934,0.673241,0.622999,0.086531,0.787011,0.207187,0.729093,0.00554079,0.248828,0.998314,0.72163,0.666071,0.856677,0.157193,0.207108,0.567051,0.360977,0.266477,0.869083,0.905557,0.10308,0.057994,0.52589,0.96126,0.17069,0.447899,0.881323,0.576684,0.27077,0.868973,0.143556,0.380687,0.168176,0.914861,0.986774,0.993635,0.0731493,0.135003,0.237717,0.338773,0.877754,0.114383,0.976547,0.641974,0.350687,0.783098,0.510464,0.579515,0.0453674,0.533026,0.424094,0.456985,0.458473,0.393924,0.245575,0.944291,0.317734,0.146736,0.887516,0.495591,0.915431,0.840083,0.229753,0.307263,0.724236,0.509477,0.0290786,0.953061,0.669159,0.970161,0.197764,0.203675,0.0533873,0.617444,0.110342,0.820886,0.415501,0.283344,0.953267,0.945746,0.0124701,0.866939,0.109499,0.684017,0.78761,0.582883,0.871168,0.504016,0.397759,0.404228,0.424917,0.326144,0.42255,0.821889,0.421116,0.825431,0.833224,0.246958,0.381398,0.979465,0.653778,0.330606,0.744881,0.198497,0.774545,0.461359,0.427615,0.266385,0.424094,0.389617,0.114583,0.383446,0.0881388,0.404394,0.105646,0.61403,0.403215,0.643932,0.571615,0.955628,0.299582,0.961919,0.137581,0.291821,0.6136,0.396441,0.103966,0.753961,0.0462037,0.706646,0.0875522,0.950006,0.0146029,0.888336,0.43334,0.397964,0.661493,0.768777,0.199279,0.817185,0.632697,0.883347,0.783024,0.662678,0.638682,0.134263,0.510216,0.920611,0.868271,0.463923,0.10513,0.322946,0.806855,0.0682726,0.798473,0.246259,0.240384,0.227923,0.635214,0.928841,0.477338,0.535166,0.835777,0.341144,0.581527,0.518498,0.103488,0.183193,0.539912,0.419498,0.910402,0.364582,0.56531,0.731264,0.692661,0.046922,0.654803,0.294297,0.54723,0.483576,0.947128,0.324345,0.256829,0.0828017,0.382425,0.873408,0.878912,0.146495,0.895884,0.540454,0.231345,0.764355,0.477847,0.0140819,0.556334,0.886114,0.699757,0.383854,0.307779,0.760282,0.490293,0.752384,0.85847,0.0966483,0.491317,0.83541,0.976529,0.726932,0.867319,0.767236,0.942555,0.358956,0.340185,0.265719,0.62245,0.0972106,0.785093,0.465434,0.574418,0.924177,0.905951,0.863465,0.579297,0.957528,0.332044,0.0788133,0.415033,0.59337,0.26466,0.392408,0.107517,0.931817,0.525179,0.923148,0.72334,0.439047,0.201056,0.430742,0.916692,0.358492,0.416837,0.916061,0.949932,0.486093,0.0372527,0.806455,0.761682,0.11547,0.799323,0.360091,0.168602,0.199593,0.921702,0.403649,0.63549,0.573656,0.4443,0.0379184,0.442703,0.177332,0.951594,0.325051,0.582305,0.547021,0.417151,0.801353,0.566103,0.862015,0.968154,0.482295,0.415391,0.924978,0.588698,0.175987,0.913292,0.645397,0.624546,0.754993,0.0396004,0.359482,0.820607,0.214211,0.174668,0.274132,0.660076,0.66813,0.451159,0.00667572,0.681332,0.835272,0.989611,0.969348,0.890917,0.3215,0.842508,0.190133,0.00682521,0.165823,0.352507,0.503014,0.79237,0.771939,0.585684,0.426428,0.350203,0.606663,0.161694,0.616692,0.954994,0.0771872,0.221934,0.195256,0.702058,0.54703,0.350413,0.827319,0.68726,0.504755,0.406191,0.373729,0.711565,0.141715,0.803878,0.256418,0.444339,0.63972,0.204091,0.956071,0.632737,0.188946,0.901167,0.851678,0.499172,0.594769,0.393971,0.184171,0.425129,0.535238,0.704389,0.52996,0.117509,0.161764,0.25585,0.34687,0.284128,0.123259,0.906919,0.128781,0.263822,0.562402,0.042065,0.477592,0.904995,0.631647,0.449032,0.933342,0.478159,0.839087,0.140428,0.420407,0.491679,0.978062,0.771378,0.779444,0.0896901,0.971824,0.107554,0.27906,0.536801,0.372796,0.281546,0.386274,0.75997,0.569361,0.58649,0.96601,0.545489,0.333742,0.629413,0.230245,0.373607,0.276494,0.35856,0.282184,0.596283,0.17049,0.756472,0.446249,0.00312066,0.620575,0.270912,0.308871,0.916936,0.00595111,0.696292,0.734717,0.887221,0.524228,0.993897,0.97224,0.821758,0.623022,0.623333,0.207024,0.466597,0.900303,0.386383,0.197684,0.227853,0.939628,0.664606,0.613606,0.263743,0.0918092,0.669928,0.644329,0.780811,0.506564,0.491383,0.0513514,0.697445,0.551156,0.442668,0.747541,0.762273,0.621439,0.606753,0.260789,0.76364,0.643923,0.458624,0.0277912,0.852508,0.41668,0.333009,0.306148,0.773695,0.148693,0.928798,0.729523,0.671804,0.349996,0.311931,0.656952,0.897721,0.466055,0.512373,0.826004,0.81343,0.079611,0.545207,0.683329,0.990374,0.091757,0.029833,0.384917,0.143258,0.184103,0.655642,0.78959,0.437728,0.575547,0.45793,0.854262,0.103135,0.927125,0.241305,0.489329,0.0718483,0.464299,0.274454,0.748724,0.26538,0.149,0.163205,0.95279,0.293702,0.25508,0.419957,0.0615362,0.452182,0.858275,0.910227,0.714946,0.0589508,0.683433,0.627782,0.438119,0.965806,0.696342,0.701979,0.444366,0.297189,0.477823,0.120235,0.372327,0.926134,0.598344,0.43815,0.26053,0.31877,0.0363302,0.142648,0.821235,0.493318,0.961642,0.972122,0.275182,0.474585,0.406583,0.453364,0.502687,0.448112,0.238259,0.573651,0.722093,0.863504,0.372978,0.98314,0.807143,0.593139,0.379812,0.177018,0.834181,0.366461,0.320785,0.86444,0.417871,0.616003,0.615511,0.654496,0.402299,0.0497427,0.137325,0.27711,0.25996,0.734492,0.472744,0.316377,0.632639,0.636361,0.384876,0.103307,0.211163,0.535207,0.738006,0.298885,0.515183,0.483017,0.0216908,0.568085,0.455121,0.287425,0.827427,0.312895,0.0987108,0.618008,0.74871,0.309575,0.202567,0.0145205,0.764321,0.146812,0.301648,0.00894397,0.320373,0.21157,0.0874834,0.685045,0.76849,0.0860156,0.485641,0.976874,0.409135,0.753066,0.493905,0.530063,0.807066,0.265764,0.169211,0.0995648,0.0188708,0.204514,0.359376,0.293945,0.32553,0.288164,0.459107,0.449347,0.0107446,0.157319,0.881722,0.470452,0.378998,0.454803,0.715332,0.143481,0.783105,0.242651,0.113069,0.384195,0.302789,0.246529,0.302174,0.838087,0.33629,0.054248,0.950347,0.097219,0.575043,0.465276,0.282673,0.847459,0.367317,0.732218,0.51599,0.395802,0.0107453,0.653669,0.331631,0.216173,0.881151,0.827643,0.697713,0.404654,0.429509,0.484095,0.543317,0.21748,0.709058,0.255358,0.1855,0.218545,0.357463,0.905122,0.0227278,0.253389,0.55138,0.921905,0.624852,0.784252,0.579755,0.269873,0.844501,0.240146,0.679841,0.610224,0.89735,0.325046,0.122287,0.784595,0.293089,0.773549,0.860519,0.56164,0.278517,0.0976776,0.9551,0.370201,0.960591,0.914174,0.606397,0.919433,0.447802,0.254771,0.64986,0.673481,0.202884,0.11888,0.361857,0.940359,0.266376,0.049518,0.892018,0.486654,0.980786,0.659345,0.0187573,0.768296,0.388605,0.278879,0.519033,0.97173,0.781246,0.866594,0.196723,0.463523,0.923771,0.679996,0.221732,0.467824,0.691423,0.33809,0.192672,0.159486,0.525956,0.797416,0.80083,0.60208,0.364171,0.944634,0.558495,0.623739,0.251416,0.196016,0.14782,0.954775,0.787781,0.899255,0.522737,0.327381,0.351234,0.917992,0.257537,0.606943,0.979204,0.0864932,0.468344,0.0531774,0.726825,0.915119,0.750562,0.48067,0.851381,0.217967,0.740174,0.0358328,0.0348442,0.933843,0.542181,0.390623,0.98259,0.558918,0.989141,0.138301,0.206716,0.355979,0.0807393,0.663779,0.0124062,0.0828118,0.571911,0.553295,0.663511,0.190924,0.646539,0.718839,0.128761,0.793856,0.736986,0.819792,0.727522,0.213054,0.619993,0.143079,0.738838,0.690884,0.59606,0.736041,0.367584,0.481616,0.602161,0.622863,0.266418,0.857641,0.722587,0.134001,0.0843705,0.711988,0.478228,0.540249,0.912628,0.619098,0.920779,0.582318,0.533541,0.218716,0.513793,0.168287,0.700184,0.973348,0.460041,0.325318,0.530848,0.661059,0.249854,0.837951,0.282079,0.854616,0.81584,0.0918114,0.0128068,0.482203,0.734168,0.0270498,0.378401,0.283933,0.509182,0.667595,0.479756,0.761663,0.97716,0.432296,0.393596,0.206377,0.712427,0.302895,0.430586,0.602438,0.895334,0.318878,0.0845166,0.0671966,0.0534438,0.210326,0.469648,0.358976,0.0165343,0.760027,0.288004,0.0987536,0.585066,0.93441,0.393432,0.294858,0.0736207,0.251665,0.815821,0.137325,0.972543,0.583034,0.637127,0.668444,0.0672345,0.578757,0.419159,0.565357,0.233847,0.107851,0.476586,0.570836,0.396493,0.384121,0.779242,0.533559,0.40938,0.55665,0.178787,0.580907,0.14787,0.166683,0.614056,0.64649,0.435665,0.622282,0.97429,0.205753,0.836877,0.444748,0.551022,0.938285,0.298224,0.0646691,0.386822,0.331353,0.20266,0.0234932,0.591382,0.776203,0.92296,0.613345,0.633882,0.830058,|0.593937,0.989492,0.472414,0.773638,0.583023,0.376406,0.212015,0.895395,0.626544,0.720331,0.0711018,0.936614,0.818751,0.928333,0.445974,0.473624,0.979228,0.091131,0.190337,0.423536,0.528367,0.495139,0.0432881,0.570211,0.356473,0.536798,0.291352,0.785772,0.611362,0.0339192,0.0319963,0.380461,0.297238,0.83005,0.964217,0.200019,0.39435,0.795518,0.672945,0.813303,0.864525,0.915136,0.144339,0.0511005,0.616891,0.987608,0.455026,0.697384,0.792571,0.618817,0.214422,0.908974,0.518174,0.821177,0.377998,0.736206,0.18039,0.787433,0.999675,0.871199,0.953486,0.102991,0.885729,0.840518,0.0103095,0.798803,0.416611,0.0137353,0.583539,0.597958,0.799129,0.937975,0.00752783,0.0112613,0.0945567,0.382919,0.672897,0.896856,0.61436,0.569322,0.735969,0.847094,0.439559,0.755402,0.748146,0.273272,0.31627,0.0267304,0.499761,0.407669,0.527119,0.154367,0.681742,0.0509883,0.115063,0.349033,0.0735225,0.942002,0.40711,0.902133,0.289728,0.358656,0.0234806,0.697811,0.748732,0.0128224,0.239188,0.867917,0.700567,0.970029,0.828687,0.673708,0.938655,0.559836,0.431803,0.332287,0.729251,0.470056,0.465882,0.486342,0.487459,0.66419,0.793326,0.805221,0.461912,0.104061,0.277871,0.844343,0.107356,0.796107,0.538336,0.780918,0.257377,0.898185,0.939745,0.264108,0.814214,0.602227,0.978573,0.195615,0.569051,0.0713862,0.377527,0.533148,0.32909,0.563263,0.290921,0.434402,0.934051,0.0379408,0.878908,0.70093,0.617672,0.61428,0.782059,0.0940458,0.638429,0.596683,0.714088,0.414453,0.147017,0.795035,0.174506,0.558975,0.188858,0.787658,0.614968,0.367576,0.553092,0.295399,0.8792,0.391402,0.151659,0.413871,0.34631,0.537007,0.225313,0.323229,0.933212,0.883906,0.21469,0.0609059,0.510235,0.331028,0.543064,0.728522,0.126124,0.800545,0.0922108,0.505905,0.494054,0.330635,0.331512,0.802366,0.173891,0.1188,0.790169,0.765544,0.358528,0.962547,0.578233,0.293444,0.765496,0.395533,0.437026,0.0966642,0.87518,0.909061,0.0986024,0.364921,0.0246323,0.298202,0.792811,0.433202,0.858814,0.377197,0.609613,0.529581,0.17531,0.468613,0.911954,0.486289,0.153107,0.677191,0.787648,0.681949,0.59021,0.414586,0.397022,0.584007,0.526723,0.594153,0.823897,0.124381,0.91144,0.23679,0.313373,0.526928,0.539626,0.183949,0.495532,0.153374,0.6187,0.469292,0.714925,0.876029,0.982658,0.25829,0.961815,0.0405284,0.462695,0.229037,0.708901,0.552203,0.163815,0.582633,0.54136,0.0335535,0.417512,0.997208,0.677064,0.627084,0.509309,0.807878,0.352366,0.350155,0.831432,0.275123,0.0427083,0.968615,0.174175,0.135531,0.140274,0.84313,0.258023,0.666967,0.52785,0.686348,0.0604124,0.0877488,0.0779999,0.556836,0.764932,0.252668,0.5542,0.140609,0.0684142,0.0297292,0.28499,0.783334,0.11903,0.278227,0.277968,0.626311,0.563575,0.0310718,0.845568,0.181517,0.361192,0.393191,0.42774,0.583567,0.688077,0.650788,0.228882,0.64747,0.694637,0.0182183,0.949205,0.810503,0.0338353,0.601392,0.766449,0.170892,0.0865901,0.399065,0.502691,0.373631,0.4776,0.448372,0.0716315,0.249661,0.420193,0.159102,0.694535,0.596904,0.407411,0.909916,0.0276688,0.35961,0.0139029,0.637482,0.467571,0.466254,0.544895,0.444594,0.112737,0.73632,0.804702,0.546776,0.219244,0.607346,0.286893,0.0180524,0.20637,0.791562,0.741846,0.996664,0.92436,0.0603117,0.424605,0.0707179,0.841251,0.32499,0.503182,0.526,0.622163,0.612747,0.625734,0.665447,0.927048,0.808309,0.264122,0.212923,0.623412,0.630649,0.327391,0.224829,0.071495,0.260241,0.997886,0.62821,0.672506,0.0654401,0.0082376,0.38533,0.33375,0.375821,0.939058,0.373788,0.577921,0.576763,0.435436,0.460998,0.125526,0.839928,0.0691829,0.913995,0.831476,0.784378,0.851001,0.06313,0.678781,0.761385,0.671997,0.926402,0.662946,0.176326,0.144927,0.980386,0.109348,0.68013,0.580976,0.341878,0.0165149,0.190546,0.878202,0.315613,0.924016,0.318533,0.712004,0.966926,0.00184453,0.942146,0.797272,0.742514,0.345562,0.5537,0.703632,0.966374,0.684674,0.605651,0.30397,0.538489,0.631431,0.60038,0.176517,0.734075,0.411772,0.0897012,0.846421,0.00153965,0.947626,0.936983,0.0742336,0.674992,0.992423,0.157988,0.645263,0.561049,0.080488,0.499168,0.619859,0.955827,0.824961,0.436522,0.443769,0.760165,0.0432823,0.516522,0.20125,0.48841,0.711979,0.807232,0.227402,0.1044,0.37777,0.581661,0.484275,0.63891,0.0512674,0.893425,0.316074,0.10425,0.997041,0.889961,0.524179,0.416724,0.595331,0.289258,0.233049,0.0245564,0.458683,0.880856,0.339089,0.368474,0.467312,0.356402,0.376357,0.884754,0.908953,0.699884,0.708748,0.658292,0.233421,0.694032,0.856589,0.54668,0.558024,0.654451,0.446095,0.689913,0.601918,0.749857,0.707435,0.840582,0.681405,0.784279,0.969769,0.683064,0.239057,0.516653,0.948406,0.119171,0.347713,0.94433,0.808394,0.345457,0.286209,0.206213,0.22242,0.480801,0.337416,0.477738,0.503565,0.529727,0.0763236,0.66952,0.415887,0.387097,0.246659,0.643599,0.663856,0.834284,0.546981,0.149288,0.533281,0.634482,0.639517,0.296771,0.860393,0.230492,0.721922,0.789269,0.592169,0.00110424,0.510851,0.422284,0.643413,0.535942,0.526627,0.67579,0.0509658,0.0573235,0.90511,0.682629,0.741437,0.355645,0.750018,0.0203605,0.766303,0.917005,0.456307,0.232764,0.489675,0.0755904,0.622886,0.827112,0.719801,0.384507,0.865321,0.865725,0.634854,0.327413,0.253411,0.613964,0.0836304,0.606522,0.579735,0.545914,0.974658,0.301656,0.521015,0.860746,0.60936,0.708643,0.81093,0.978338,0.549727,0.995356,0.633946,0.19079,0.799977,0.114713,0.0100895,0.547062,0.392788,0.900356,0.798782,0.569551,0.490352,0.545123,0.341719,0.889928,0.934665,0.919174,0.582211,0.613703,0.538477,0.422116,0.794538,0.414095,0.675791,0.411127,0.359618,0.0938209,0.894819,0.991936,0.455909,0.408065,0.926772,0.210323,0.356531,0.106598,0.120204,0.305016,0.806221,0.556293,0.633621,0.713622,0.35233,0.716397,0.349459,0.986056,0.283677,0.71976,0.684541,0.52012,0.82185,0.98542,0.381453,0.25171,0.993618,0.245109,0.597806,0.783862,0.670186,0.746954,0.565151,0.923429,0.830265,0.833873,0.357096,0.95694,0.169536,0.0413725,0.840947,0.472452,0.391164,0.228124,0.918518,0.618467,0.361589,0.486827,0.537526,0.615364,0.941124,0.661975,0.535581,0.578622,0.175866,0.329551,0.961964,0.320452,0.224154,0.909419,0.406842,0.930975,0.468236,0.958464,0.633636,0.696305,0.390102,0.162767,0.885089,0.210189,0.419887,0.547656,0.0571222,0.875415,0.700918,0.691819,0.275856,0.200939,0.62383,0.595103,0.253201,0.042538,0.135333,0.520804,0.651166,0.468413,0.589585,0.49856,0.16185,0.013368,0.0326713,0.148782,0.989256,0.815582,0.690997,0.693397,0.935039,0.0716764,0.240648,0.255017,0.0255309,0.301908,0.0569155,0.108146,0.573647,0.712657,0.556392,0.000910163,0.458951,0.0913948,0.552106,0.874083,0.452129,0.279225,0.362176,0.312508,0.480976,0.280297,0.477148,0.747625,0.0388473,0.997564,0.215745,0.432996,0.772483,0.102746,0.774414,0.230544,0.672509,0.228725,0.0833571,0.502983,0.463777,0.0947902,0.80991,0.836205,0.344817,0.0136241,0.981052,0.24013,0.207399,0.399946,0.528122,0.423699,0.7243,0.853167,0.154483,0.80034,0.039102,0.87103,0.576801,0.184336,0.716447,0.225732,0.0736431,0.0921891,0.98586,0.32768,0.0883477,0.848965,0.719493,0.140577,0.260596,0.872246,0.731481,0.43568,0.403975,0.679898,0.951701,0.870376,0.816502,0.555572,0.977574,0.887603,0.315548,0.564699,0.548203,0.147412,0.094566,0.985333,0.188656,0.716501,0.462235,0.306412,0.71978,0.344057,0.373228,0.0867706,0.45224,0.0210122,0.0655531,0.933745,0.551178,0.510747,0.625416,0.437884,0.206232,0.214595,0.571649,0.39818,0.767971,0.600737,0.762903,0.7587,0.676737,0.602288,0.658942,0.614381,0.728782,0.869459,0.0840467,0.15108,0.57,0.319061,0.310127,0.00392765,0.90862,0.0315914,0.998993,0.417765,0.804961,0.195173,0.133877,0.352875,0.547242,0.142533,0.0185331,0.916547,0.288791,0.629191,0.246184,0.732609,0.0257955,0.0136615,0.427384,0.671443,0.761164,0.823497,0.633122,0.0477406,0.168317,0.275738,0.122863,0.252966,0.624185,0.124271,0.384161,0.253315,0.824835,0.791598,0.851631,0.0400543,0.599988,0.62699,0.517745,0.0379863,0.791558,0.695779,0.227483,0.889189,0.261348,0.278192,0.0103444,0.0134713,0.858094,0.471763,0.204234,0.0610823,0.553104,0.0858854,0.110572,0.411176,0.102232,0.542084,0.352507,0.0370223,0.812629,0.956738,0.0227184,0.503567,0.812261,0.503606,0.80344,0.636975,0.542982,0.565949,0.987635,0.824373,0.840452,0.732134,0.653745,0.976552,0.0931883,0.0212176,0.139881,0.168562,0.214911,0.934407,0.110793,0.732457,0.256247,0.300462,0.862538,0.848507,0.185763,0.624863,0.513971,0.498856,0.988464,0.0737429,0.746617,0.175501,0.625595,0.378617,0.421352,0.96384,0.971534,0.311433,0.861676,0.422183,0.47226,0.424551,0.390983,0.265959,0.153936,0.970186,0.070562,0.742422,0.600223,0.0474542,0.178431,0.618847,0.983969,0.338851,0.697599,0.861549,0.412788,0.143245,0.392582,0.97095,0.116728,0.358795,0.32483,0.558672,0.0533396,0.396072,0.56609,0.557903,0.411148,0.879242,0.4702,0.573691,0.0611904,0.0401224,0.843345,0.0303482,0.902631,0.636302,0.229849,0.99214,0.747069,0.100783,0.107722,0.509442,0.0119423,0.951476,0.686814,0.765712,0.164072,0.174769,0.621427,0.366308,0.305701,0.103797,0.692494,0.638686,0.327321,0.901696,0.459561,0.0523951,0.714925,0.902613,0.937474,0.30149,0.0598447,0.266725,0.263692,0.325097,0.531956,0.472227,0.604667,0.0526825,0.145045,0.278802,|0.753872,0.804489,0.787831,0.866359,0.497018,0.982904,0.15757,0.962827,0.643856,0.762104,0.110656,0.133914,0.38604,0.80593,0.420735,0.53781,0.382573,0.194373,0.658561,0.06979,0.342948,0.059053,0.137342,0.482299,0.63853,0.438647,0.787119,0.829016,0.936459,0.812388,0.216576,0.225647,0.0799567,0.882441,0.928009,0.739929,0.0994746,0.694248,0.963729,0.875106,0.568662,0.796578,0.599965,0.253802,0.324721,0.216343,0.724016,0.359621,0.626676,0.301355,0.352007,0.734376,0.607006,0.270864,0.793237,0.543636,0.807783,0.21878,0.0574631,0.08722,0.800302,0.2939,0.953644,0.951641,0.0698991,0.28525,0.510164,0.614805,0.0271373,0.0545473,0.451141,0.577629,0.842715,0.841479,0.594535,0.146062,0.573211,0.481332,0.44226,0.20823,0.364983,0.823334,0.218605,0.261064,0.897256,0.807174,0.291431,0.466261,0.421902,0.413083,0.0252727,0.43121,0.226108,0.704318,0.569649,0.859243,0.00767052,0.375302,0.239955,0.60616,0.0381438,0.642959,0.212517,0.507504,0.780569,0.0174909,0.134866,0.449039,0.220579,0.302174,0.502232,0.7944,0.928361,0.571774,0.151304,0.810537,0.0889433,0.352721,0.786039,0.343537,0.729484,0.506693,0.182048,0.837512,0.534518,0.763494,0.303838,0.443923,0.29899,0.0850332,0.0303855,0.0243697,0.891439,0.49647,0.0277276,0.528618,0.227226,0.39782,0.374483,0.995793,0.692846,0.116077,0.505508,0.598749,0.747409,0.199053,0.39766,0.518523,0.916735,0.256439,0.613295,0.620104,0.390693,0.797023,0.655677,0.291467,0.233098,0.702891,0.0660859,0.0669283,0.0163938,0.320611,0.927283,0.57236,0.759824,0.384209,0.661166,0.703395,0.634749,0.210685,0.633169,0.138741,0.408896,0.760032,0.890052,0.785323,0.17226,0.958867,0.58122,0.0310121,0.5203,0.617028,0.48554,0.751128,0.242331,0.473583,0.611853,0.0176992,0.0649374,0.0284719,0.777348,0.524629,0.703111,0.872407,0.721093,0.9525,0.556941,0.867721,0.724922,0.657712,0.139398,0.0907612,0.591481,0.392284,0.652524,0.873833,0.224664,0.92912,0.374357,0.236943,0.6293,0.505139,0.322373,0.242478,0.70209,0.90433,0.790376,0.332473,0.679601,0.356265,0.863384,0.79674,0.434932,0.642078,0.833882,0.644456,0.150541,0.0976335,0.976863,0.707144,0.300155,0.467275,0.908196,0.744814,0.073056,0.99564,0.0466455,0.701545,0.0561938,0.783864,0.00890464,0.930083,0.642448,0.297056,0.485412,0.783436,0.486035,0.446949,0.856659,0.659393,0.342432,0.253801,0.836778,0.254214,0.495041,0.556492,0.112462,0.692166,0.759798,0.587487,0.706212,0.422451,0.881606,0.426644,0.770493,0.105117,0.662228,0.00168103,0.802668,0.335914,0.218125,0.72236,0.417021,0.281097,0.737159,0.756874,0.181987,0.220891,0.855687,0.948801,0.816794,0.481598,0.913127,0.592706,0.466335,0.265963,0.544789,0.557992,0.822598,0.666828,0.668004,0.731731,0.849186,0.713285,0.292381,0.944901,0.257507,0.573585,0.845312,0.596896,0.543913,0.958756,0.954348,0.86477,0.555592,0.810092,0.921485,0.649896,0.861257,0.938685,0.512291,0.645528,0.693286,0.336455,0.54232,0.939013,0.456228,0.250927,0.156169,0.483861,0.129194,0.384594,0.316943,0.775707,0.0898792,0.110762,0.0509906,0.47046,0.381002,0.837393,0.615538,0.386815,0.655261,0.142049,0.768304,0.172376,0.366443,0.16983,0.737122,0.885576,0.908484,0.344081,0.298454,0.689815,0.154157,0.761187,0.406091,0.198087,0.300835,0.539589,0.595777,0.147611,0.891902,0.254986,0.263821,0.973272,0.116425,0.0729979,0.00220001,0.312998,0.653568,0.932495,0.810335,0.243984,0.722734,0.457769,0.488249,0.787398,0.344278,0.895831,0.849812,0.513067,0.0549943,0.275408,0.472728,0.80553,0.521574,0.729809,0.443832,0.707467,0.253588,0.0319623,0.870042,0.405801,0.281686,0.152511,0.68296,0.140909,0.117972,0.242498,0.989083,0.783825,0.304039,0.623753,0.845142,0.797319,0.951506,0.880098,0.48425,0.976104,0.416581,0.401535,0.456931,0.690333,0.845868,0.0515681,0.184544,0.57096,0.876674,0.395214,0.335722,0.120508,0.594757,0.0995625,0.296443,0.962205,0.774232,0.253267,0.605302,0.430204,0.973705,0.259064,0.773884,0.77864,0.902575,0.484963,0.635818,0.0329382,0.630444,0.79374,0.292878,0.986458,0.303555,0.302007,0.00214309,0.79161,0.93832,0.656388,0.68134,0.393869,0.378673,0.126068,0.251084,0.465773,0.0910694,0.301641,0.274803,0.320585,0.246213,0.967878,0.730857,0.464435,0.273721,0.431063,0.386817,0.836783,0.317263,0.802895,0.674084,0.128348,0.611596,0.707593,0.656709,0.97001,0.696722,0.933357,0.125861,0.307351,0.0684448,0.447763,0.0533417,0.824441,0.408344,0.32704,0.978706,0.499689,0.908648,0.345953,0.0766135,0.617114,0.370687,0.76401,0.733845,0.930424,0.852291,0.717306,0.227287,0.59286,0.17472,0.337332,0.689814,0.00158054,0.441169,0.137278,0.480062,0.339278,0.981353,0.597749,0.262325,0.611865,0.900079,0.120095,0.925232,0.719581,0.143656,0.666275,0.600471,0.213571,0.842724,0.0517699,0.401528,0.135593,0.52303,0.79117,0.287584,0.482304,0.483058,0.57397,0.983235,0.342486,0.3462,0.43284,0.105482,0.950038,0.698488,0.153084,0.378805,0.0622572,0.243709,0.0305117,0.723009,0.273692,0.955323,0.916659,0.857948,0.518335,0.490626,0.995911,0.327515,0.0768545,0.910472,0.817804,0.38505,0.397503,0.463548,0.162266,0.967912,0.745336,0.210519,0.897626,0.162148,0.303823,0.102936,0.671043,0.769015,0.477536,0.263151,0.343424,0.160996,0.290481,0.0474727,0.186597,0.108962,0.738018,0.297304,0.144393,0.338373,0.861124,0.741393,0.550542,0.476019,0.201394,0.21939,0.607965,0.273464,0.0430013,0.0532361,0.694579,0.155091,0.666225,0.716855,0.751482,0.500346,0.584623,0.797628,0.56789,0.907438,0.529244,0.76752,0.399887,0.663986,0.597233,0.30208,0.50638,0.658232,0.860157,0.884661,0.849399,0.116085,0.591575,0.737499,0.0606281,0.35642,0.174736,0.426441,0.715189,0.697082,0.429233,0.410445,0.692192,0.0722036,0.905335,0.694043,0.000639796,0.0636369,0.318371,0.844939,0.479241,0.71213,0.250021,0.044996,0.454044,0.169864,0.637419,0.86901,0.563567,0.266139,0.330471,0.174827,0.846714,0.440367,0.373483,0.112632,0.91367,0.98163,0.0834813,0.503548,0.0403718,0.0804803,0.610024,0.481913,0.507344,0.560935,0.327625,0.119714,0.162262,0.324138,0.80715,0.992975,0.105232,0.498098,0.0134095,0.550175,0.400676,0.869571,0.782624,0.304509,0.63897,0.520538,0.342075,0.183079,0.352478,0.747928,0.56143,0.95414,0.5476,0.713438,0.00330877,0.856215,0.309234,0.876426,0.821147,0.688282,0.440874,0.981747,0.670923,0.859927,0.379805,0.390258,0.183531,0.959358,0.497112,0.940531,0.31983,0.579967,0.917584,0.700833,0.0510708,0.842488,0.980925,0.686014,0.0966239,0.387708,0.0755841,0.821389,0.588197,0.123131,0.967487,0.785844,0.463336,0.451138,0.311167,0.984042,0.387736,0.888915,0.904048,0.279562,0.589107,0.422895,0.625673,0.025842,0.549447,0.940251,0.476664,0.848724,0.818489,0.708465,0.904523,0.259475,0.0998545,0.679849,0.462899,0.526333,0.976833,0.0777981,0.754404,0.766233,0.203073,0.637486,0.726116,0.5015,0.589287,0.151954,0.54271,0.300992,0.702466,0.253722,0.691147,0.0147861,0.00259113,0.220754,0.360021,0.326107,0.211853,0.375335,0.0946091,0.182115,0.592317,0.735735,0.616566,0.82676,0.344603,0.517471,0.386078,0.451731,0.702429,0.742224,0.0287595,0.334801,0.394303,0.784192,0.359682,0.884265,0.897441,0.00332916,0.774634,0.212944,0.661673,0.0894105,0.658838,0.433145,0.588179,0.537436,0.794384,0.936779,0.988332,0.886729,0.598202,0.712666,0.201022,0.508608,0.03054,0.138113,0.699493,0.964995,0.660098,0.877083,0.608209,0.729049,0.923183,0.355853,0.919983,0.0123715,0.461142,0.370327,0.532878,0.685926,0.511114,0.42511,0.441584,0.780068,0.34233,0.519666,0.0430735,0.832418,0.795684,0.361538,0.482869,0.925083,0.0235829,0.0553133,0.935705,0.265259,0.947582,0.20716,0.451298,0.948638,0.0759965,0.625767,0.822996,0.799935,0.298942,0.556634,0.942114,0.48417,0.768191,0.12982,0.528642,0.0241113,0.6355,0.0910462,0.746232,0.52947,0.0112652,0.698344,0.528028,0.658837,0.619059,0.738267,0.331392,0.909439,0.00286072,0.12184,0.436287,0.616181,0.527949,0.0799255,0.601901,0.0320281,0.833839,0.118983,0.0708748,0.267432,0.988941,0.444296,0.751249,0.379726,0.892418,0.316787,0.117949,0.823798,0.825118,0.689519,0.99084,0.0583104,0.533263,0.789291,0.900859,0.79674,0.907165,0.710691,0.0368356,0.574171,0.510948,0.237926,0.16051,0.533639,0.371808,0.704309,0.787594,0.341523,0.210554,0.196338,0.426435,0.588972,0.305358,0.328738,0.0995244,0.217467,0.0113869,0.31409,0.915274,0.783093,0.826753,0.730443,0.58957,0.94175,0.182205,0.0892363,0.724388,0.73028,0.867098,0.697443,0.409089,0.368415,0.395118,0.228368,0.567984,0.125243,0.747587,0.535962,0.0809865,0.508166,0.00483286,0.703408,0.186232,0.760355,0.565895,0.475318,0.791189,0.574159,0.446547,0.0620784,0.36235,0.825103,0.927128,0.499886,0.534056,0.372094,0.452917,0.596979,0.300317,0.855815,0.202466,0.539284,0.537381,0.222059,0.175122,0.346352,0.885157,0.838209,0.299171,0.12129,0.123543,0.759626,0.0893774,0.820968,0.854791,0.328953,0.962559,0.688509,0.571181,0.703278,0.792361,0.615283,0.173482,0.256431,0.831828,0.838726,0.95572,0.678943,0.096985,0.310025,0.359755,0.309424,0.637967,0.696281,0.821549,0.088917,0.162906,0.248522,0.53442,0.114414,0.630735,0.861159,0.0550777,0.824157,0.903069,0.298563,0.985257,0.476989,0.560131,0.731302,0.666897,0.437484,0.962702,0.250459,0.86393,0.387731,0.718135,0.534068,0.161858,0.392094,0.0588906,0.727045,0.412037,0.253337,0.119979,0.90366,0.652605,|0.359844,0.439279,0.58672,0.953483,0.597944,0.240626,0.425806,0.576076,0.535369,0.597372,0.886547,0.502297,0.923578,0.400459,0.259563,0.760916,0.144619,0.792167,0.783949,0.279966,0.0152563,0.588471,0.212405,0.86707,0.162855,0.000929534,0.751894,0.770943,0.669885,0.819825,0.544551,0.440452,0.238573,0.137216,0.706628,0.0201463,0.509312,0.42244,0.94157,0.333206,0.850594,0.851527,0.204192,0.557757,0.780815,0.194948,0.683331,0.753728,0.46694,0.847751,0.936936,0.923346,0.171287,0.679256,0.144144,0.825557,0.530021,0.967699,0.389069,0.819223,0.984459,0.105463,0.688216,0.668639,0.0490666,0.384049,0.059705,0.766598,0.615321,0.232881,0.522034,0.0442304,0.868769,0.805886,0.589706,0.245039,0.598234,0.154101,0.993896,0.213376,0.121578,0.958098,0.12038,0.0593112,0.853793,0.0996868,0.133832,0.140841,0.88374,0.168778,0.313533,0.678838,0.0872391,0.438438,0.428642,0.0571859,0.322194,0.169414,0.458902,0.214745,0.539306,0.400264,0.281818,0.677368,0.735031,0.411854,0.674075,0.267959,0.955466,0.216346,0.947551,0.989667,0.564558,0.475993,0.92513,0.208173,0.293,0.60466,0.150859,0.307729,0.711694,0.478955,0.0927354,0.97231,0.748553,0.928023,0.879933,0.764073,0.64843,0.87813,0.934516,0.44112,0.624222,0.237919,0.892523,0.934473,0.21732,0.881557,0.853712,0.624886,0.0151805,0.274989,0.00848615,0.420259,0.311416,0.035008,0.967301,0.437319,0.319312,0.91465,0.559068,0.569035,0.649313,0.472051,0.649698,0.814642,0.0157264,0.972271,0.0628471,0.875039,0.384498,0.396869,0.675808,0.0164863,0.229753,0.641547,0.121603,0.357038,0.506334,0.210154,0.611102,0.0779665,0.509922,0.483755,0.0802001,0.792132,0.804357,0.111518,0.281433,0.337874,0.145723,0.746532,0.970174,0.951705,0.74523,0.599769,0.675001,0.596249,0.620468,0.746339,0.340182,0.0982714,0.313683,0.834109,0.192387,0.0232356,0.135213,0.659325,0.027998,0.52955,0.683468,0.495775,0.840731,0.0278985,0.612216,0.175223,0.536016,0.701039,0.227572,0.786198,0.781801,0.160746,0.16926,0.478684,0.00919938,0.989069,0.465081,0.384305,0.838927,0.916365,0.400952,0.533116,0.931489,0.858413,0.530379,0.409312,0.81747,0.0409656,0.481088,0.26834,0.28611,0.437048,0.0655284,0.462915,0.641331,0.208566,0.92835,0.788837,0.155549,0.0671089,0.582146,0.164013,0.506003,0.117397,0.418199,0.52036,0.583306,0.880741,0.551039,0.629489,0.257394,0.347844,0.900191,0.506883,0.0663119,0.249735,0.658693,0.112778,0.890608,0.703824,0.662679,0.376661,0.673141,0.442008,0.530869,0.985062,0.523458,0.515853,0.248348,0.336516,0.996736,0.465607,0.604084,0.854225,0.486138,0.409435,0.181522,0.189022,0.194417,0.555081,0.823245,0.828792,0.656696,0.0927629,0.59476,0.459687,0.977815,0.65601,0.476704,0.567774,0.146702,0.249335,0.685312,0.385933,0.7234,0.672083,0.472274,0.667533,0.409184,0.624457,0.743702,0.00533003,0.530519,0.203103,0.289851,0.319237,0.29944,0.257534,0.702558,0.883906,0.545557,0.861624,0.915946,0.437185,0.816392,0.752854,0.814042,0.921719,0.847914,0.855377,0.514846,0.494135,0.248499,0.152209,0.830646,0.720263,0.501737,0.728533,0.0158547,0.635553,0.355365,0.205535,0.287814,0.383974,0.791976,0.0307078,0.345275,0.0387759,0.287237,0.420289,0.797434,0.992514,0.861749,0.115073,0.896375,0.714659,0.0506408,0.048761,0.588932,0.570702,0.803749,0.48624,0.854977,0.171768,0.310775,0.31393,0.308226,0.307472,0.138109,0.330179,0.351474,0.438305,0.79428,0.529308,0.400222,0.122027,0.696351,0.943718,0.497795,0.487067,0.104104,0.941519,0.0995597,0.916323,0.904527,0.998402,0.395808,0.698372,0.162559,0.975719,0.747454,0.812121,0.594101,0.449543,0.819335,0.673652,0.710876,0.326753,0.241407,0.37652,0.11964,0.896947,0.743208,0.764813,0.385957,0.26408,0.353504,0.351104,0.77449,0.865897,0.861883,0.0633156,0.113378,0.584891,0.0797377,0.313843,0.399884,0.849618,0.894079,0.768921,0.309843,0.554631,0.395822,0.360979,0.462255,0.45255,0.453247,0.288513,0.326959,0.591194,0.499711,0.626537,0.629036,0.95946,0.00736022,0.639884,0.641837,0.849014,0.0793775,0.58815,0.558133,0.544843,0.0169218,0.0449526,0.949435,0.0700174,0.638937,0.109552,0.505978,0.421761,0.0208218,0.0127781,0.533787,0.293361,0.143819,0.940087,0.637504,0.209352,0.199453,0.780101,0.0882183,0.330337,0.760427,0.999182,0.234813,0.26067,0.134831,0.702768,0.847081,0.623992,0.466363,0.362578,0.00397986,0.0367795,0.425704,0.868159,0.0176985,0.382533,0.168018,0.297131,0.807845,0.740379,0.316468,0.221621,0.365384,0.331744,0.928079,0.0586177,0.619357,0.378588,0.798919,0.0669715,0.390197,0.879939,0.0984609,0.397607,0.837977,0.868603,0.0373064,0.940306,0.842136,0.877997,0.627348,0.05592,0.250184,0.486557,0.201378,0.614312,0.395887,0.0404477,0.567368,0.428349,0.832996,0.47573,0.706812,0.364695,0.895734,0.859922,0.440311,0.320896,0.773915,0.897745,0.178699,0.198683,0.0210627,0.753254,0.344495,0.198245,0.727737,0.353039,0.995622,0.66225,0.285304,0.487645,0.0290134,0.718105,0.542349,0.471585,0.760063,0.132336,0.0783138,0.677126,0.789579,0.939938,0.876272,0.452641,0.606472,0.625677,0.467167,0.633181,0.154606,0.302548,0.959326,0.985373,0.223232,0.155928,0.450396,0.566441,0.106115,0.317029,0.109552,0.732253,0.667913,0.613461,0.534719,0.701283,0.792011,0.119745,0.495828,0.504785,0.940271,0.265124,0.726432,0.305935,0.304099,0.986498,0.649471,0.47784,0.329923,0.462563,0.541931,0.314574,0.0658572,0.395635,0.706923,0.57924,0.798746,0.925812,0.299727,0.905282,0.934904,0.345253,0.549847,0.410498,0.454001,0.730623,0.778059,0.303059,0.430655,0.0828831,0.659297,0.0884714,0.0339354,0.395311,0.393488,0.615194,0.550411,0.398611,0.128671,0.377733,0.825948,0.745502,0.558733,0.223549,0.0700635,0.183775,0.125819,0.23022,0.363595,0.716475,0.310842,0.389562,0.225226,0.363242,0.373549,0.251174,0.672835,0.290476,0.135044,0.937216,0.642221,0.953977,0.832465,0.889525,0.408938,0.0138983,0.262835,0.104673,0.0869182,0.636946,0.196942,0.227398,0.786289,0.30128,0.514714,0.603837,0.889406,0.778032,0.684229,0.429713,0.692024,0.805312,0.112007,0.528991,0.260926,0.645765,0.395405,0.419456,0.750707,0.660785,0.187031,0.896072,0.903982,0.0103458,0.987524,0.0509213,0.470119,0.305361,0.778149,0.72997,0.109128,0.0763651,0.597294,0.928078,0.547557,0.575301,0.557628,0.302549,0.61664,0.682844,0.0398384,0.429937,0.514152,0.639893,0.86157,0.912668,0.8505,0.417105,0.537573,0.0656301,0.844907,0.940324,0.130329,0.202027,0.225753,0.5081,0.0935073,0.0185125,0.882566,0.738354,0.100768,0.342656,0.530782,0.69848,0.86411,0.730718,0.358132,0.815196,0.629876,0.700357,0.602269,0.122074,0.160942,0.189255,0.885344,0.0643331,0.0384938,0.965408,0.135674,0.586323,0.871695,0.772264,0.717221,0.884126,0.557443,0.332547,0.292467,0.00938588,0.644766,0.0639031,0.710258,0.0832009,0.567988,0.413068,0.448769,0.0679378,0.399279,0.624352,0.985438,0.762752,0.661963,0.00709999,0.954595,0.416032,0.275999,0.432301,0.895413,0.0250316,0.342168,0.593033,0.0352705,0.537024,0.520679,0.503884,0.609544,0.371619,0.942329,0.796625,0.133191,0.782881,0.186042,0.25909,0.532578,0.515914,0.886975,0.451951,0.100541,0.74534,0.445293,0.926773,0.937592,0.927803,0.270885,0.90565,0.412711,0.0632404,0.406723,0.442326,0.58891,0.741053,0.910235,0.502824,0.478125,0.417429,0.194575,0.0756506,0.292576,0.371894,0.0246088,0.203604,0.905964,0.649602,0.554043,0.283744,0.707204,0.866219,0.935367,0.39092,0.916955,0.102039,0.222452,0.0100641,0.06064,0.722751,0.866991,0.588993,0.461722,0.994543,0.564896,0.0901024,0.152656,0.212943,0.0848231,0.421793,0.775036,0.617819,0.918459,0.766918,0.112721,0.246346,0.92216,0.578494,0.638447,0.712491,0.118652,0.995174,0.401048,0.660322,0.0203386,0.420309,0.855503,0.402698,0.0291488,0.955292,0.0630358,0.423251,0.197847,0.179453,0.955961,0.00063616,0.474853,0.981562,0.160698,0.309841,0.908651,0.176961,0.514948,0.39655,0.0352062,0.17593,0.192223,0.41643,0.00402749,0.33899,0.965994,0.472331,0.724206,0.506838,0.461247,0.795981,0.614742,0.667693,0.375505,0.434891,0.7119,0.0674969,0.80722,0.366463,0.145875,0.36184,0.968271,0.746337,0.156328,0.846479,0.711396,0.282089,0.916687,0.0718117,0.714204,0.327932,0.540327,0.867636,0.112023,0.844591,0.86457,0.44083,0.727014,0.22869,0.933084,0.325702,0.826091,0.875331,0.651591,0.984911,0.639705,0.465228,0.00432122,0.681898,0.38616,0.677873,0.820656,0.142594,0.351494,0.362762,0.546347,0.12567,0.274302,0.822748,0.699399,0.503174,0.787066,0.269224,0.710848,0.716748,0.510486,0.564521,0.673552,0.54719,0.763675,0.204265,0.553081,0.922981,0.611087,0.956847,0.442188,0.42915,0.570471,0.816307,0.556232,0.523261,0.339638,0.211639,0.896797,0.711587,0.206165,0.38675,0.607452,0.409093,0.222228,0.048417,0.505085,0.0826626,0.461736,0.0145485,0.731721,0.828054,0.467724,0.26491,0.471951,0.884253,0.0348604,0.905942,0.925681,0.54149,0.124528,0.829993,0.731805,0.560569,0.150294,0.100307,0.585928,0.100614,0.166786,0.219379,0.662452,0.854503,0.238135,0.41505,0.617708,0.132223,0.530746,0.071393,0.556442,0.765406,0.721078,0.861228,0.853147,0.111025,0.235389,0.699552,0.377152,0.738979,0.796344,0.397912,0.80859,0.338211,0.558758,0.229322,0.38825,0.999098,0.875395,0.176308,0.109999,0.165676,0.197437,0.718583,0.276884,0.349572,0.0738825,0.269738,0.563193,0.103017,0.311817,0.193377,0.740662,0.610067,0.423148,0.367953,0.24995,0.816805,|0.71408,0.351394,0.00625944,0.982807,0.548219,0.220223,0.546381,0.0714306,0.693485,0.0646849,0.366748,0.730233,0.549522,0.516488,0.0753366,0.363603,0.946896,0.128688,0.981203,0.451908,0.664883,0.180825,0.858546,0.630151,0.135308,0.811763,0.987199,0.842337,0.391619,0.396451,0.749468,0.689415,0.26172,0.182041,0.0901594,0.340453,0.17357,0.985267,0.433585,0.457749,0.920294,0.115547,0.614356,0.637173,0.788112,0.0969209,0.632627,0.221702,0.959737,0.894252,0.151791,0.645985,0.635154,0.815229,0.595074,0.357084,0.916032,0.728008,0.692963,0.765373,0.208755,0.0654695,0.354246,0.445562,0.308039,0.181957,0.474857,0.148837,0.927115,0.774602,0.45436,0.590739,0.123956,0.645674,0.229556,0.955466,0.528659,0.0774696,0.895358,0.261257,0.252233,0.667229,0.632384,0.772587,0.570946,0.257839,0.27658,0.231286,0.0195873,0.101927,0.743577,0.817922,0.615456,0.583292,0.32471,0.863993,0.735722,0.792971,0.922224,0.302798,0.707011,0.344637,0.732397,0.695117,0.278756,0.605884,0.140481,0.84452,0.781747,0.0712899,0.495539,0.534508,0.693954,0.595268,0.845889,0.746342,0.0122537,0.302926,0.281706,0.301711,0.915519,0.610632,0.110152,0.0706681,0.142339,0.317748,0.746609,0.226253,0.562708,0.456068,0.456179,0.246365,0.866636,0.912806,0.481819,0.583934,0.593768,0.707883,0.894653,0.727717,0.159497,0.968252,0.896373,0.489123,0.681328,0.35946,0.171861,0.933886,0.568642,0.0411521,0.230042,0.76479,0.748326,0.705342,0.330425,0.500471,0.030629,0.184671,0.661287,0.261648,0.802948,0.805755,0.690907,0.415654,0.468949,0.546154,0.0894156,0.592715,0.358014,0.885427,0.607191,0.781987,0.384858,0.571484,0.226258,0.364966,0.0379185,0.942034,0.405811,0.629106,0.815697,0.121334,0.467887,0.544086,0.453219,0.593339,0.204212,0.486466,0.0380157,0.750412,0.921024,0.184635,0.238453,0.169409,0.518569,0.202293,0.190636,0.623557,0.914856,0.0241929,0.992185,0.322992,0.919632,0.423288,0.245069,0.567239,0.55972,0.163228,0.389628,0.61425,0.42465,0.0619442,0.421112,0.641566,0.50256,0.0952866,0.4347,0.0223887,0.26227,0.178146,0.531594,0.473527,0.935084,0.990317,0.844187,0.639631,0.895312,0.252441,0.272467,0.513137,0.502007,0.724933,0.357767,0.072095,0.640772,0.561106,0.0642482,0.837481,0.74601,0.303522,0.189745,0.282475,0.286525,0.446992,0.887198,0.877283,0.866726,0.621565,0.841962,0.302846,0.0436599,0.0539495,0.37572,0.893279,0.563454,0.139662,0.176775,0.795979,0.752303,0.495543,0.0297922,0.119349,0.459946,0.355735,0.908563,0.684853,0.222935,0.493235,0.735305,0.326993,0.204189,0.0746451,0.596887,0.673843,0.272215,0.501809,0.241421,0.938873,0.162553,0.103665,0.182764,0.353616,0.322276,0.454339,0.996761,0.00459462,0.602233,0.552687,0.211645,0.716847,0.528655,0.869479,0.408559,0.603384,0.537291,0.155836,0.0416057,0.829247,0.720059,0.311787,0.736593,0.113894,0.918165,0.533572,0.77127,0.352656,0.894171,0.516198,0.341178,0.493525,0.843773,0.495784,0.100012,0.138848,0.781184,0.0580466,0.031006,0.299865,0.148156,0.847544,0.65306,0.781577,0.339591,0.642405,0.0852962,0.655743,0.807808,0.238723,0.334332,0.380415,0.417805,0.387467,0.171187,0.950781,0.162957,0.760171,0.238096,0.933744,0.261879,0.57016,0.190364,0.722398,0.903882,0.944584,0.88627,0.0918486,0.0915832,0.0923516,0.789267,0.820063,0.237883,0.327488,0.492821,0.257358,0.0916778,0.316938,0.559658,0.132905,0.559029,0.682095,0.628202,0.358278,0.334834,0.561434,0.973528,0.0426784,0.488498,0.650741,0.870663,0.552663,0.756392,0.96496,0.977074,0.481737,0.516565,0.432706,0.845253,0.951857,0.0456229,0.498889,0.997977,0.0838113,0.688625,0.313349,0.331262,0.19245,0.607097,0.935717,0.162888,0.098592,0.488535,0.130304,0.456489,0.209177,0.321437,0.661536,0.878358,0.309253,0.102896,0.0351651,0.0126854,0.311546,0.667065,0.607604,0.704553,0.580468,0.885561,0.595987,0.0687886,0.0457862,0.824305,0.464434,0.662413,0.88512,0.149001,0.763743,0.476638,0.807867,0.900776,0.246115,0.890719,0.457914,0.762925,0.0291191,0.622559,0.458988,0.74361,0.615232,0.46942,0.656676,0.438479,0.901091,0.869232,0.338587,0.212046,0.453078,0.949099,0.507912,0.940709,0.317982,0.511743,0.0381471,0.398245,0.557657,0.578937,0.531181,0.460216,0.729151,0.57211,0.470855,0.841012,0.369986,0.13595,0.192148,0.442842,0.117614,0.515763,0.384717,0.243663,0.346428,0.873717,0.745639,0.538612,0.111666,0.765278,0.401394,0.646855,0.823208,0.188037,0.368558,0.419891,0.529294,0.00972944,0.24521,0.752412,0.455064,0.122777,0.452573,0.376644,0.164258,0.898576,0.641585,0.924153,0.0368254,0.913633,0.74136,0.225519,0.770003,0.397328,0.380878,0.806397,0.778073,0.48641,0.923501,0.792221,0.094989,0.0110661,0.148993,0.478751,0.246217,0.506435,0.301369,0.570434,0.792733,0.773852,0.378647,0.116638,0.0679783,0.647514,0.584588,0.559032,0.694776,0.884628,0.838409,0.00477517,0.59054,0.855645,0.81911,0.535311,0.569746,0.932245,0.429306,0.228347,0.411164,0.761324,0.197073,0.15562,0.0315294,0.850361,0.798263,0.163689,0.294815,0.417407,0.164624,0.281001,0.476205,0.285686,0.869761,0.202012,0.335118,0.511585,0.0739698,0.985276,0.975599,0.658883,0.668675,0.446632,0.12416,0.85905,0.21541,0.0477651,0.908076,0.915649,0.510331,0.335915,0.300469,0.204219,0.6409,0.91436,0.27691,0.725487,0.95326,0.512018,0.942218,0.553266,0.415264,0.4906,0.607813,0.205139,0.581975,0.183967,0.815553,0.285865,0.343241,0.00772971,0.0811276,0.227018,0.579454,0.440049,0.716093,0.982623,0.652721,0.889836,0.0812239,0.126201,0.739876,0.790168,0.939216,0.340778,0.478697,0.704295,0.221711,0.793019,0.841375,0.55924,0.221203,0.638008,0.0584549,0.0996473,0.060319,0.944384,0.451686,0.709167,0.677684,0.440663,0.86521,0.00977629,0.167124,0.543003,0.777289,0.167542,0.0569751,0.0722057,0.261156,0.856451,0.939702,0.65476,0.746821,0.0964957,0.834283,0.790827,0.355199,0.462804,0.764344,0.311147,0.567152,0.556017,0.893912,0.996469,0.365978,0.771047,0.485869,0.742831,0.552388,0.9327,0.779235,0.663387,0.744031,0.920685,0.602624,0.491957,0.248023,0.147524,0.931139,0.448334,0.165527,0.0235424,0.860333,0.431093,0.868471,0.971242,0.0269961,0.56268,0.541361,0.214685,0.555732,0.57422,0.109844,0.899002,0.241431,0.568613,0.151937,0.328139,0.275417,0.92573,0.0942137,0.844559,0.532527,0.0840207,0.237738,0.106522,0.146671,0.651661,0.0230084,0.419697,0.579159,0.828011,0.438678,0.950343,0.6351,0.147165,0.639951,0.349591,0.891313,0.891502,0.832695,0.645271,0.611347,0.899988,0.0513402,0.189504,0.980263,0.544386,0.245235,0.469573,0.930255,0.00525677,0.127034,0.798282,0.36656,0.127169,0.133061,0.524551,0.00770587,0.919617,0.610322,0.874072,0.37067,0.284335,0.411761,0.406882,0.314167,0.390883,0.202745,0.813007,0.42858,0.00478977,0.103622,0.977232,0.784579,0.254433,0.925194,0.142174,0.980341,0.532171,0.106559,0.0768247,0.360027,0.415562,0.974593,0.184129,0.240811,0.224883,0.33422,0.145029,0.464495,0.110397,0.459252,0.628642,0.177607,0.894677,0.413706,0.874603,0.359031,0.761598,0.756751,0.269914,0.958322,0.150867,0.563656,0.162525,0.247408,0.830924,0.837167,0.893644,0.972456,0.220471,0.859532,0.568972,0.700334,0.139486,0.392513,0.557246,0.767469,0.618632,0.696645,0.221808,0.873411,0.18049,0.0707644,0.575816,0.900656,0.0935774,0.267476,0.0858743,0.146284,0.311822,0.910857,0.497178,0.886294,0.28572,0.628492,0.714243,0.477212,0.174139,0.298995,0.44228,0.087504,0.762747,0.614094,0.00270128,0.67921,0.248647,0.449367,0.426786,0.141277,0.217416,0.356659,0.570777,0.995918,0.0801976,0.876686,0.281331,0.420429,0.192173,0.680451,0.75063,0.00117916,0.867611,0.687937,0.624586,0.874552,0.742396,0.767782,0.979287,0.273191,0.769734,0.239198,0.179814,0.928984,0.857372,0.998655,0.913833,0.242108,0.437759,0.571236,0.443326,0.24314,0.569123,0.877019,0.513456,0.39883,0.0629684,0.854532,0.637509,0.152587,0.314684,0.493191,0.763489,0.489709,0.931982,0.933488,0.467758,0.801205,0.114709,0.0222349,0.125888,0.976671,0.809239,0.760636,0.284407,0.126704,0.473307,0.274958,0.749528,0.694892,0.381091,0.959781,0.763515,0.494169,0.16415,0.165104,0.401068,0.875142,0.51082,0.128355,0.598961,0.214533,0.422737,0.579057,0.528402,0.0575359,0.672939,0.101481,0.385198,0.538936,0.119191,0.222374,0.999317,0.70722,0.719113,0.379891,0.957775,0.459554,0.710261,0.229884,0.18358,0.15165,0.335054,0.82658,0.44385,0.24568,0.659163,0.766935,0.643023,0.370974,0.279703,0.953176,0.911681,0.535188,0.310567,0.968262,0.41966,0.0165,0.0165985,0.219956,0.701062,0.143846,0.736101,0.457604,0.326694,0.65711,0.435679,0.874297,0.400992,0.353662,0.123452,0.989302,0.482534,0.864403,0.243572,0.43495,0.224039,0.476007,0.985246,0.808976,0.862809,0.127286,0.268292,0.37749,0.0201566,0.85971,0.163872,0.172077,0.717706,0.366396,0.493461,0.580803,0.0235961,0.21816,0.385143,0.344995,0.592066,0.767708,0.170362,0.127129,0.743189,0.763032,0.882389,0.0895488,0.960792,0.0442715,0.613019,0.658178,0.943903,0.255596,0.925722,0.768997,0.744835,0.609893,0.00415283,0.06525,0.624156,0.401792,0.629435,0.600507,0.118629,0.283658,0.642892,0.696181,0.208587,0.10904,0.425898,0.759318,0.746512,0.219689,0.994089,0.886093,0.879853,0.378319,0.272558,0.338601,0.437194,0.952626,0.697956,0.382076,0.857121,0.914753,0.683892,0.706903,0.421302,0.739086,0.924025,0.176652,0.329425,0.00656134,0.561702,0.804739,0.959223,0.681483,|0.0779885,0.275128,0.56634,0.149917,0.649149,0.545096,0.121529,0.162446,0.503912,0.700554,0.779852,0.356153,0.949674,0.118883,0.599063,0.750279,0.234337,0.278898,0.302326,0.0913164,0.40958,0.0609796,0.701339,0.466199,0.144494,0.374383,0.877591,0.425674,0.201789,0.572301,0.242419,0.275685,0.48787,0.733216,0.511611,0.603554,0.053769,0.898497,0.365273,0.171544,0.859018,0.614192,0.688761,0.793933,0.973536,0.00988156,0.735059,0.345127,0.958849,0.954052,0.720741,0.273832,0.424251,0.302846,0.694615,0.365534,0.791063,0.4974,0.981254,0.466863,0.42403,0.541862,0.768659,0.97312,0.157472,0.0861802,0.9395,0.98142,0.141671,0.396887,0.645707,0.848595,0.528177,0.913449,0.0252442,0.522597,0.0382604,0.927768,0.823378,0.818671,0.84326,0.691041,0.375525,0.936566,0.601231,0.51909,0.507652,0.686386,0.936094,0.18685,0.550685,0.975343,0.763751,0.604201,0.262944,0.0917666,0.86731,0.229139,0.963447,0.931179,0.0309331,0.777767,0.913793,0.265496,0.66868,0.111344,0.323984,0.188321,0.106783,0.384674,0.684267,0.966939,0.368624,0.281532,0.210517,0.904862,0.105638,0.679171,0.738173,0.649284,0.858561,0.916221,0.579164,0.791664,0.969862,0.0912445,0.212621,0.310548,0.947354,0.545934,0.418583,0.391481,0.738825,0.197987,0.730601,0.148998,0.491418,0.630178,0.506642,0.92205,0.973094,0.624289,0.417489,0.103455,0.11316,0.322332,0.736618,0.872441,0.304842,0.948922,0.398378,0.51769,0.933087,0.325441,0.321632,0.386875,0.0368478,0.23259,0.99436,0.35552,0.943561,0.657707,0.843844,0.146155,0.70859,0.873018,0.177083,0.757352,0.577776,0.84856,0.840283,0.956899,0.20467,0.839991,0.528129,0.267557,0.590016,0.090835,0.855086,0.365616,0.287847,0.265461,0.00531501,0.55475,0.71571,0.88838,0.839358,0.753069,0.0307558,0.193753,0.834581,0.850946,0.700807,0.906931,0.0675989,0.879311,0.243219,0.931355,0.0521712,0.798856,0.485141,0.199367,0.352701,0.876129,0.736526,0.446044,0.514765,0.520581,0.103487,0.14255,0.173952,0.210645,0.747713,0.956013,0.578114,0.376704,0.549385,0.866209,0.0272338,0.90898,0.58073,0.0773077,0.778267,0.244572,0.956045,0.874452,0.257263,0.445063,0.628814,0.153794,0.79788,0.807459,0.954478,0.226513,0.796167,0.822925,0.502681,0.588891,0.538506,0.959743,0.0974068,0.130027,0.184242,0.960883,0.191557,0.760872,0.677614,0.115417,0.561629,0.607162,0.821706,0.545864,0.595583,0.71372,0.287125,0.0677261,0.999922,0.15595,0.424224,0.326557,0.894812,0.216765,0.231674,0.795754,0.769439,0.924339,0.950185,0.525686,0.734598,0.747133,0.031013,0.400236,0.932214,0.369196,0.705853,0.135171,0.33897,0.859361,0.144255,0.239031,0.423908,0.981281,0.980905,0.383995,0.68207,0.531703,0.408625,0.170091,0.0795018,0.651201,0.157484,0.176306,0.696635,0.913975,0.411066,0.279432,0.0420579,0.201237,0.490097,0.421195,0.705254,0.304765,0.767498,0.420773,0.42602,0.421271,0.514938,0.161452,0.270841,0.43573,0.819877,0.412229,0.240254,0.119146,0.336089,0.365498,0.685397,0.255647,0.334023,0.815077,0.854761,0.42442,0.395295,0.896419,0.869614,0.369391,0.949082,0.417425,0.947622,0.643976,0.371432,0.50431,0.989349,0.74144,0.471896,0.248744,0.76487,0.0550877,0.569627,0.357413,0.461946,0.106759,0.780675,0.68629,0.385186,0.26294,0.290955,0.954488,0.04304,0.140223,0.799227,0.14299,0.174676,0.223672,0.875755,0.995325,0.827418,0.588711,0.905532,0.494653,0.896191,0.039237,0.909964,0.0403256,0.578168,0.285457,0.33146,0.423714,0.673664,0.784701,0.322497,0.587684,0.332958,0.909267,0.241455,0.270574,0.763128,0.786067,0.685065,0.637571,0.860441,0.077588,0.754506,0.171153,0.499722,0.392175,0.942716,0.266163,0.616109,0.929779,0.620999,0.979023,0.760706,0.992412,0.306621,0.776651,0.0543478,0.530364,0.807428,0.0405979,0.107858,0.543398,0.838571,0.110786,0.833317,0.906033,0.683493,0.272853,0.105524,0.940495,0.363841,0.952953,0.308697,0.917714,0.752019,0.580885,0.539355,0.0473822,0.309774,0.449205,0.677029,0.943705,0.796751,0.563431,0.615522,0.265985,0.973651,0.311517,0.227834,0.593738,0.607925,0.681774,0.271849,0.904786,0.124817,0.472859,0.556251,0.640151,0.640454,0.472689,0.471482,0.657174,0.113563,0.209957,0.0543039,0.499556,0.853834,0.940807,0.375915,0.369852,0.703905,0.8484,0.537216,0.714274,0.232304,0.0913182,0.753385,0.179987,0.563277,0.613614,0.276088,0.587215,0.358129,0.668915,0.838034,0.702773,0.737815,0.377503,0.515734,0.46522,0.281169,0.966275,0.327219,0.749492,0.615621,0.605934,0.134283,0.848254,0.595922,0.343774,0.961558,0.26767,0.274465,0.405795,0.967696,0.201605,0.141925,0.119394,0.194495,0.3757,0.108083,0.84814,0.872481,0.422463,0.461471,0.295071,0.203131,0.210234,0.406849,0.886228,0.812076,0.993623,0.4456,0.174307,0.951702,0.925734,0.70476,0.789485,0.0146581,0.0733508,0.119727,0.232408,0.282883,0.538364,0.31314,0.399078,0.550547,0.809511,0.205296,0.749771,0.617446,0.349215,0.250523,0.167827,0.362233,0.17695,0.938561,0.685332,0.309121,0.0840424,0.647844,0.504661,0.710078,0.561168,0.636972,0.828015,0.177436,0.355684,0.244643,0.549327,0.917755,0.502009,0.0482106,0.170407,0.561888,0.0949401,0.833233,0.107519,0.329828,0.87159,0.873156,0.668669,0.833634,0.156727,0.204856,0.651491,0.86442,0.882392,0.242621,0.11194,0.36627,0.970066,0.411096,0.817155,0.962501,0.60183,0.123379,0.598923,0.77076,0.787466,0.373665,0.162806,0.162296,0.129381,0.577136,0.428166,0.706739,0.299426,0.925901,0.641569,0.824786,0.60877,0.854326,0.4923,0.0670993,0.358363,0.7065,0.836177,0.210831,0.437906,0.505282,0.772507,0.0349534,0.377227,0.899426,0.835957,0.185619,0.059868,0.264808,0.819012,0.166967,0.885548,0.364494,0.855335,0.147353,0.167055,0.0778633,0.997566,0.49561,0.325641,0.511177,0.0653407,0.263246,0.128541,0.279888,0.722867,0.419148,0.630493,0.034215,0.870181,0.259841,0.130373,0.270744,0.45393,0.283347,0.636759,0.017548,0.873409,0.629154,0.675771,0.967929,0.889839,0.560072,0.201967,0.0407699,0.364116,0.527236,0.691609,0.547256,0.661406,0.808562,0.169333,0.82695,0.834026,0.95695,0.63263,0.195507,0.929481,0.79802,0.586398,0.0767074,0.922689,0.686695,0.829503,0.142123,0.425797,0.0673869,0.142492,0.896114,0.906631,0.308864,0.891744,0.0301491,0.672915,0.981231,0.404733,0.234528,0.499294,0.511652,0.0492766,0.286337,0.941017,0.0703139,0.965877,0.747666,0.652885,0.591269,0.656039,0.831494,0.905141,0.157185,0.589669,0.997991,0.286578,0.902348,0.380574,0.241217,0.536831,0.52427,0.424229,0.629936,0.636298,0.152573,0.606823,0.419892,0.836432,0.226475,0.986335,0.803446,0.882674,0.0679427,0.191358,0.465303,0.50354,0.148467,0.355993,0.0692027,0.617854,0.148547,0.360951,0.408841,0.723971,0.650123,0.586356,0.818976,0.476999,0.94529,0.130792,0.466235,0.423189,0.0393609,0.899497,0.531686,0.596511,0.799302,0.11582,0.73514,0.551363,0.684654,0.769938,0.0212336,0.20347,0.965503,0.747553,0.369334,0.543757,0.936408,0.957773,0.980779,0.408564,0.162267,0.497579,0.164145,0.465665,0.70784,0.510293,0.277124,0.827368,0.315673,0.179941,0.812524,0.596967,0.210338,0.43352,0.547985,0.993037,0.802904,0.473463,0.997606,0.589788,0.93821,0.295318,0.922942,0.527547,0.874341,0.423611,0.314867,0.145558,0.247097,0.955393,0.777195,0.209531,0.166785,0.455685,0.210382,0.398614,0.717174,0.164418,0.421567,0.169355,0.351591,0.65692,0.546179,0.401071,0.948421,0.01237,0.92024,0.677543,0.928772,0.618779,0.619076,0.886578,0.892308,0.965438,0.668544,0.689392,0.906943,0.0079326,0.923048,0.937537,0.848441,0.604309,0.779832,0.187166,0.336397,0.100055,0.610549,0.495145,0.548994,0.155852,0.0103565,0.101798,0.903885,0.628842,0.789941,0.23417,0.0586117,0.302502,0.630196,0.138875,0.163929,0.683301,0.361436,0.484468,0.131679,0.14154,0.52405,0.996606,0.706573,0.986029,0.62226,0.575339,0.823758,0.258662,0.585575,0.970252,0.506014,0.91121,0.716854,0.0301248,0.529581,0.130574,0.244825,0.0966601,0.195838,0.250607,0.253024,0.828345,0.754434,0.223606,0.505871,0.244625,0.268591,0.534378,0.717087,0.685946,0.621468,0.51422,0.328762,0.554956,0.728854,0.549239,0.668084,0.128322,0.488169,0.169918,0.274963,0.834048,0.183851,0.508155,0.962579,0.0885749,0.818178,0.965828,0.0913208,0.239388,0.695862,0.927958,0.747751,0.348674,0.653292,0.18825,0.58137,0.771583,0.091719,0.0290781,0.243786,0.837118,0.0224996,0.229071,0.967347,0.270637,0.433128,0.871881,0.929675,0.999148,0.453456,0.456004,0.887752,0.604575,0.833149,0.249257,0.372278,0.5391,0.793031,0.665717,0.97396,0.886556,0.289184,0.67312,0.766291,0.592051,0.840263,0.85556,0.397959,0.929911,0.1637,0.928576,0.0350003,0.00465029,0.587514,0.64081,0.146348,0.602578,0.443856,0.853268,0.324374,0.652627,0.0704354,0.547576,0.0509027,0.428198,0.776996,0.498918,0.033757,0.01524,0.519616,0.353769,0.0874237,0.228914,0.178515,0.22931,0.479028,0.36623,0.958071,0.715551,0.518925,0.914691,0.935542,0.77507,0.134724,0.447392,0.913832,0.0354152,0.202671,0.264347,0.68197,0.115209,0.24728,0.28393,0.10926,0.550686,0.144822,0.286384,0.294519,0.351387,0.731073,0.631718,0.900045,0.415819,0.889226,0.922104,0.0682817,0.331861,0.345226,0.87972,0.0451906,0.9642,0.945292,0.253402,0.518806,0.0276697,0.817114,0.911517,0.677952,0.788614,0.422831,0.962062,0.25096,0.0938816,0.652685,0.836919,0.515677,0.739206,0.31137,0.29897,0.403916,0.862058,0.0103087,0.474276,|0.137526,0.957424,0.203416,0.0704818,0.531745,0.168369,0.83942,0.42367,0.70825,0.345529,0.366134,0.874313,0.794303,0.208104,0.986339,0.845239,0.984602,0.721111,0.0267343,0.272155,0.958503,0.188983,0.385936,0.351941,0.153023,0.496215,0.455866,0.565979,0.212992,0.785435,0.586476,0.0449995,0.0415406,0.326926,0.209671,0.956188,0.17883,0.787042,0.346924,0.749237,0.363868,0.822152,0.0632648,0.123331,0.651736,0.243377,0.602755,0.952339,0.71116,0.796174,0.221443,0.629941,0.756677,0.412193,0.957723,0.406506,0.367337,0.432768,0.930388,0.200663,0.978965,0.353498,0.364072,0.97717,0.615341,0.371376,0.275063,0.917875,0.945575,0.071372,0.0149122,0.323176,0.818446,0.988913,0.735619,0.516261,0.634668,0.926692,0.370745,0.815716,0.177288,0.841252,0.36389,0.843739,0.357828,0.130879,0.295648,0.151967,0.403436,0.254991,0.944566,0.780576,0.415801,0.225966,0.32849,0.657538,0.246369,0.992633,0.451362,0.927853,0.198923,0.83406,0.332824,0.596407,0.738951,0.453655,0.582009,0.559568,0.211362,0.876163,0.762965,0.904455,0.734994,0.845972,0.079762,0.637366,0.753046,0.884557,0.200246,0.809529,0.203334,0.502119,0.0919651,0.289671,0.890611,0.854737,0.553355,0.496282,0.343239,0.503909,0.658199,0.874476,0.278175,0.48656,0.399559,0.453285,0.726716,0.0769969,0.65438,0.249968,0.118261,0.552128,0.164015,0.22996,0.935314,0.344636,0.932086,0.237061,0.0335192,0.749884,0.574246,0.745251,0.433742,0.937585,0.0825875,0.658096,0.116407,0.264145,0.657843,0.399609,0.133869,0.311411,0.713461,0.445776,0.687036,0.0824733,0.864461,0.976134,0.0733031,0.565668,0.781549,0.281611,0.837286,0.967908,0.0317767,0.909814,0.277799,0.0965689,0.230234,0.910494,0.0103121,0.332632,0.656486,0.333954,0.215321,0.945899,0.273207,0.650213,0.230155,0.878326,0.771031,0.90654,0.494079,0.458975,0.924315,0.103343,0.126937,0.746216,0.864349,0.711473,0.566215,0.899279,0.709531,0.315762,0.829302,0.544794,0.618669,0.25587,0.5883,0.263779,0.586253,0.730168,0.466234,0.488939,0.221928,0.0400926,0.503458,0.172158,0.210114,0.955616,0.611518,0.966392,0.372372,0.701004,0.840328,0.748213,0.522335,0.462423,0.781797,0.86346,0.530971,0.790806,0.205785,0.644328,0.198662,0.139229,0.179786,0.91133,0.245181,0.522465,0.629961,0.854833,0.268824,0.39312,0.644607,0.550749,0.765688,0.574676,0.986881,0.193364,0.202191,0.564818,0.699542,0.733567,0.347606,0.266931,0.511567,0.784864,0.885049,0.181616,0.860372,0.0508304,0.37873,0.200597,0.460018,0.229013,0.127438,0.937764,0.494515,0.420607,0.885975,0.579596,0.989233,0.871395,0.011079,0.605746,0.839063,0.251697,0.576681,0.61003,0.572246,0.562251,0.0189359,0.553234,0.0907825,0.704086,0.377805,0.561684,0.675984,0.337872,0.373126,0.35395,0.925235,0.012424,0.591052,0.419224,0.258602,0.11205,0.414253,0.291921,0.735888,0.508721,0.615916,0.812542,0.0523664,0.428233,0.626537,0.338248,0.951122,0.601427,0.581069,0.490422,0.922177,0.181416,0.808876,0.898482,0.991815,0.988823,0.577736,0.908687,0.369425,0.338181,0.501069,0.263128,0.0980675,0.593347,0.938676,0.125974,0.839668,0.756517,0.882647,0.067055,0.166035,0.176844,0.646981,0.0916033,0.1037,0.395755,0.950046,0.509256,0.261818,0.364,0.715852,0.708568,0.58695,0.597062,0.931364,0.504156,0.811339,0.439496,0.150531,0.273144,0.186452,0.996607,0.436842,0.628514,0.723826,0.723508,0.237495,0.384237,0.632315,0.38684,0.640268,0.410938,0.165372,0.177549,0.0397444,0.303968,0.803271,0.537976,0.741301,0.668902,0.623754,0.336637,0.875327,0.0811794,0.641327,0.598933,0.388729,0.52003,0.580989,0.486025,0.772799,0.879412,0.295993,0.549451,0.603466,0.954588,0.67257,0.932147,0.552619,0.995759,0.97971,0.472534,0.180686,0.805991,0.18731,0.464974,0.246126,0.381527,0.980154,0.192619,0.189791,0.185826,0.095241,0.659545,0.293182,0.663402,0.0167038,0.178168,0.521846,0.312382,0.991306,0.602482,0.845149,0.505368,0.214005,0.112386,0.766171,0.395803,0.661379,0.120505,0.0765973,0.341265,0.738454,0.681304,0.783826,0.230065,0.963078,0.877122,0.134905,0.716182,0.986945,0.865648,0.157794,0.349373,0.761816,0.48862,0.710852,0.141139,0.964232,0.927645,0.422823,0.767598,0.550742,0.813206,0.326246,0.87296,0.693724,0.377501,0.933575,0.571077,0.988604,0.372505,0.294421,0.63516,0.543819,0.218945,0.848042,0.880753,0.0394594,0.321758,0.691162,0.980653,0.363066,0.326825,0.863154,0.548058,0.294899,0.708175,0.171676,0.83784,0.00148565,0.81259,0.399566,0.0552958,0.74417,0.445266,0.764489,0.416768,0.60521,0.962637,0.360593,0.602498,0.737727,0.709337,0.344902,0.207326,0.915783,0.12529,0.931447,0.0357614,0.296576,0.0109313,0.0929779,0.648402,0.173084,0.612572,0.18292,0.943212,0.216103,0.68896,0.443674,0.317693,0.421863,0.538146,0.679265,0.541865,0.288308,0.171816,0.851124,0.310025,0.203102,0.743058,0.800191,0.782711,0.0850721,0.776245,0.959177,0.0521551,0.430526,0.87744,0.548071,0.992518,0.366305,0.636179,0.461836,0.39909,0.777244,0.860424,0.964353,0.76713,0.154235,0.787166,0.536549,0.367831,0.974358,0.520996,0.789946,0.022302,0.522402,0.609215,0.681713,0.125951,0.652455,0.589493,0.78343,0.640565,0.195593,0.587946,0.339163,0.468235,0.0505553,0.104786,0.440375,0.44862,0.865613,0.823129,0.0944332,0.746981,0.719351,0.508182,0.0825445,0.0906357,0.749931,0.849359,0.569013,0.170913,0.517601,0.0762342,0.426999,0.855844,0.982781,0.181417,0.531284,0.169033,0.395314,0.29555,0.736792,0.73767,0.381175,0.66127,0.21308,0.249214,0.876066,0.985184,0.0191094,0.221051,0.281458,0.105496,0.65145,0.468164,0.671049,0.951425,0.506066,0.619849,0.816947,0.323483,0.462425,0.34695,0.65335,0.768655,0.0960011,0.901879,0.819309,0.947002,0.636107,0.924356,0.540464,0.0648476,0.10014,0.54446,0.212633,0.377988,0.27142,0.177859,0.443349,0.434524,0.317095,0.82633,0.16219,0.63635,0.808287,0.569324,0.611875,0.307531,0.790645,0.424118,0.599203,0.953823,0.572235,0.079025,0.759764,0.737714,0.48288,0.893938,0.310132,0.541656,0.318564,0.604716,0.442109,0.133302,0.809167,0.186696,0.510347,0.306098,0.370506,0.453354,0.592698,0.685649,0.120399,0.326555,0.393785,0.693718,0.209073,0.524729,0.279011,0.964506,0.0614083,0.456184,0.41589,0.584215,0.909882,0.157164,0.20201,0.993769,0.129191,0.546438,0.735906,0.564024,0.603702,0.860095,0.437134,0.926808,0.332678,0.826045,0.516728,0.315126,0.636439,0.704555,0.449654,0.830197,0.175301,0.312514,0.559941,0.0819274,0.102807,0.384306,0.833553,0.633484,0.0793201,0.0695781,0.0971462,0.885418,0.994587,0.00910133,0.345667,0.268226,0.0248243,0.600091,0.733898,0.721451,0.289733,0.813245,0.152337,0.248501,0.389075,0.232461,0.615461,0.232565,0.339576,0.739721,0.954739,0.382208,0.813548,0.927569,0.257946,0.169773,0.743771,0.168695,0.674023,0.261678,0.19734,0.186023,0.0253435,0.303769,0.650101,0.969262,0.241186,0.993421,0.229173,0.363041,0.716657,0.324717,0.126857,0.973106,0.873758,0.302021,0.164405,0.968898,0.860603,0.406339,0.614966,0.251608,0.0456532,0.585981,0.0398262,0.2194,0.179957,0.102455,0.812174,0.216517,0.258571,0.267485,0.249779,0.442667,0.113103,0.688801,0.328675,0.895561,0.996416,0.134596,0.888919,0.789326,0.806625,0.50448,0.25674,0.660243,0.531535,0.203965,0.461969,0.0386077,0.865037,0.201086,0.419605,0.23702,0.974239,0.4682,0.464635,0.19025,0.0032919,0.949404,0.097927,0.699881,0.292017,0.904076,0.622466,0.908734,0.0947478,0.928616,0.621508,0.440281,0.72749,0.463968,0.572878,0.946135,0.296964,0.685642,0.329708,0.12539,0.205071,0.556728,0.820268,0.959159,0.464431,0.089367,0.281317,0.686803,0.836225,0.59884,0.481732,0.960288,0.101978,0.563662,0.0327277,0.363093,0.294644,0.474132,0.145349,0.721491,0.727364,0.812611,0.128649,0.0650176,0.500863,0.108729,0.455724,0.641388,0.488447,0.0876483,0.764091,0.425527,0.93342,0.20258,0.137493,0.29839,0.391255,0.545969,0.642091,0.942144,0.164343,0.911657,0.493705,0.154476,0.731362,0.929692,0.730621,0.780855,0.0723071,0.355529,0.340867,0.753673,0.245372,0.834818,0.181265,0.918734,0.395824,0.935908,0.21708,0.598878,0.29872,0.461584,0.996614,0.0711774,0.726903,0.0409325,0.322107,0.7272,0.452871,0.0504405,0.717418,0.830076,0.518566,0.977569,0.198496,0.949163,0.293794,0.452575,0.173502,0.900622,0.40627,0.130181,0.661384,0.811811,0.702725,0.437621,0.719828,0.686302,0.0405098,0.510887,0.308218,0.8684,0.120069,0.757779,0.115286,0.219301,0.396271,0.906695,0.0915056,0.522027,0.144798,0.195342,0.0931125,0.338949,0.202866,0.40062,0.637788,0.439482,0.52046,0.843517,0.597224,0.796736,0.681211,0.328297,0.261423,0.138475,0.085109,0.725791,0.861514,0.252803,0.71901,0.728772,0.0709837,0.965693,0.424817,0.931268,0.972977,0.690631,0.607119,0.399413,0.805672,0.852369,0.473947,0.961478,0.413838,0.262113,0.231652,0.725435,0.709747,0.725117,0.714707,0.688924,0.959427,0.718832,0.524904,0.0602778,0.761147,0.296185,0.310436,0.361559,0.559982,0.443876,0.332905,0.702534,0.885983,0.908936,0.996889,0.500634,0.967981,0.865509,0.833215,0.88147,0.766549,0.896689,0.201559,0.168211,0.688988,0.62052,0.0796642,0.345282,0.594553,0.642956,0.530325,0.647039,0.633356,0.946973,0.922045,0.48561,0.0903561,0.105713,0.228449,0.841438,0.118951,0.322648,0.872976,0.760321,0.658574,0.536949,0.787133,0.621767,0.474083,0.905158,0.665531,0.306031,0.536945,0.721808,0.859945,0.478,0.202448,0.877205,|0.768502,0.176831,0.9369,0.579047,0.654737,0.780842,0.333959,0.0605012,0.0907979,0.148166,0.0009166,0.516165,0.582008,0.429336,0.25812,0.795428,0.930165,0.736087,0.291375,0.476873,0.530857,0.540743,0.591332,0.606563,0.963262,0.00981182,0.410832,0.248985,0.208142,0.365289,0.376332,0.0518804,0.323876,0.179922,0.276441,0.435918,0.951447,0.912346,0.127612,0.28834,0.168165,0.27143,0.064607,0.307647,0.778883,0.0972045,0.845384,0.286285,0.0745518,0.0908985,0.442541,0.850587,0.032181,0.598649,0.296078,0.297243,0.548597,0.00135154,0.883391,0.752241,0.131752,0.506606,0.0217202,0.275356,0.0080539,0.253123,0.869547,0.819661,0.84175,0.704854,0.805576,0.344003,0.229702,0.438235,0.533839,0.145229,0.391404,0.954374,0.567146,0.345534,0.189259,0.0675932,0.24745,0.0212683,0.998002,0.732512,0.630902,0.957938,0.123556,0.366894,0.121698,0.47008,0.848102,0.681654,0.943179,0.228,0.301021,0.979569,0.638318,0.931296,0.120032,0.438282,0.0376594,0.130243,0.120933,0.939426,0.461532,0.422526,0.951487,0.789124,0.899827,0.503339,0.0854278,0.383435,0.530713,0.369454,0.672907,0.968951,0.927013,0.821493,0.78919,0.533132,0.542388,0.396705,0.577747,0.0540448,0.453315,0.479133,0.0934851,0.313236,0.618609,0.975238,0.853044,0.0493721,0.910572,0.305355,0.404047,0.998729,0.663966,0.94067,0.624336,0.275296,0.27457,0.409823,0.373267,0.910568,0.205948,0.981235,0.123024,0.615414,0.311683,0.91832,0.517448,0.993582,0.957973,0.146602,0.310843,0.0979325,0.129059,0.767715,0.643249,0.698525,0.7704,0.820103,0.0992188,0.736483,0.508176,0.512592,0.26768,0.696695,0.661777,0.244412,0.7308,0.791942,0.0450316,0.779072,0.26212,0.834065,0.229803,0.72735,0.0507097,0.949678,0.61358,0.197031,0.986589,0.945385,0.632633,0.707303,0.292268,0.816899,0.695487,0.359585,0.426039,0.293673,0.070851,0.982589,0.613003,0.8128,0.0459714,0.0867853,0.427152,0.849106,0.571305,0.465825,0.0471762,0.426872,0.559434,0.666313,0.451496,0.128942,0.429866,0.329694,0.235577,0.0447564,0.282195,0.615005,0.0957665,0.715212,0.122528,0.165468,0.0530107,0.673401,0.114335,0.454298,0.367181,0.54281,0.505989,0.0791203,0.51937,0.920282,0.513867,0.921715,0.166567,0.647445,0.378116,0.489612,0.840893,0.300674,0.613298,0.63101,0.551491,0.767342,0.425428,0.0918117,0.262119,0.131256,0.357238,0.315646,0.572161,0.218045,0.478178,0.874418,0.751617,0.828889,0.747291,0.682467,0.337365,0.362023,0.0852219,0.222392,0.950999,0.722046,0.86992,0.488463,0.0517443,0.677139,0.401173,0.287719,0.441775,0.608842,0.0606246,0.706254,0.71472,0.340962,0.23386,0.722722,0.247099,0.569652,0.106063,0.476895,0.71708,0.914177,0.571029,0.569621,0.889174,0.793465,0.622953,0.305525,0.0419421,0.055612,0.988367,0.139752,0.912626,0.371469,0.0613994,0.692002,0.505268,0.89121,0.187642,0.232403,0.941763,0.588875,0.341315,0.0827741,0.893053,0.186681,0.456982,0.931437,0.0345079,0.228406,0.100367,0.876432,0.175562,0.695633,0.462947,0.965646,0.62553,0.112722,0.207998,0.545397,0.932341,0.917074,0.513601,0.568371,0.479525,0.84292,0.884248,0.420251,0.609902,0.0750674,0.893468,0.0753198,0.761976,0.996959,0.995094,0.316209,0.502861,0.162131,0.406843,0.487559,0.471727,0.881766,0.40049,0.432138,0.266516,0.248076,0.99663,0.0459871,0.0168188,0.496603,0.88193,0.931015,0.30675,0.764975,0.830041,0.328243,0.10254,0.20866,0.956709,0.0830852,0.376067,0.647382,0.952108,0.453975,0.533311,0.0577056,0.678239,0.311976,0.537341,0.132683,0.166354,0.143756,0.354159,0.780117,0.479412,0.118029,0.859073,0.407046,0.0989167,0.780335,0.0784047,0.135041,0.262418,0.554083,0.810852,0.15892,0.761923,0.969532,0.753206,0.894323,0.23903,0.430377,0.4672,0.81891,0.360779,0.145567,0.0848699,0.239496,0.288377,0.831954,0.393872,0.991951,0.616104,0.326647,0.295127,0.517078,0.691779,0.308919,0.375402,0.460468,0.349412,0.768551,0.748335,0.417763,0.695538,0.607542,0.689304,0.931052,0.941123,0.116483,0.723661,0.611218,0.544148,0.786146,0.575719,0.62077,0.815774,0.934017,0.624497,0.797065,0.390492,0.293091,0.404244,0.0455453,0.437409,0.419843,0.694979,0.190269,0.885706,0.512544,0.247233,0.862751,0.471391,0.856894,0.8327,0.959602,0.272263,0.628801,0.860141,0.865178,0.313946,0.544866,0.789907,0.210033,0.618047,0.719439,0.375949,0.124429,0.179603,0.137136,0.564975,0.625524,0.535591,0.918194,0.289965,0.754138,0.561853,0.850246,0.984153,0.965699,0.562336,0.77495,0.175292,0.0854084,0.0164787,0.236848,0.866344,0.0938727,0.555417,0.731865,0.400505,0.0513892,0.848534,0.0426329,0.255016,0.174749,0.108415,0.415364,0.785838,0.0799206,0.567175,0.612974,0.0409779,0.704132,0.539279,0.186054,0.698529,0.940554,0.0182049,0.0926079,0.421936,0.602262,0.456536,0.243766,0.479107,0.115199,0.417722,0.438435,0.183147,0.916053,0.229741,0.847504,0.742093,0.209087,0.910527,0.583469,0.812299,0.85612,0.514651,0.812386,0.794355,0.460919,0.224677,0.251458,0.760518,0.552407,0.16527,0.688898,0.970962,0.0564466,0.726104,0.983183,0.168056,0.344137,0.335284,0.992893,0.45808,0.777176,0.668367,0.95415,0.355402,0.427698,0.634627,0.167216,0.550511,0.798578,0.47468,0.302183,0.525755,0.112847,0.0441405,0.00204343,0.0524481,0.578347,0.633152,0.294828,0.180848,0.735887,0.777715,0.0141609,0.851719,0.156401,0.972075,0.85007,0.792806,0.913325,0.397121,0.478707,0.579321,0.637617,0.72424,0.837386,0.458755,0.365347,0.961203,0.0494642,0.933365,0.649789,0.882441,0.500511,0.713598,0.518803,0.926197,0.785403,0.570746,0.16228,0.345473,0.362883,0.273067,0.665167,0.0992755,0.939166,0.233866,0.011094,0.181593,0.484948,0.39892,0.778692,0.646069,0.772583,0.775595,0.460952,0.881154,0.772399,0.828879,0.515817,0.183573,0.87362,0.274749,0.361687,0.333135,0.449245,0.333406,0.489972,0.0353152,0.414639,0.331881,0.770033,0.708236,0.0753019,0.442938,0.447861,0.198658,0.102912,0.892912,0.558377,0.631086,0.0817745,0.322068,0.298466,0.476473,0.411009,0.906584,0.457572,0.596551,0.764765,0.848908,0.693752,0.775338,0.81246,0.10468,0.381032,0.338975,0.126381,0.450807,0.179906,0.991089,0.057467,0.452428,0.0207444,0.958628,0.992916,0.0865902,0.347727,0.547802,0.21701,0.867652,0.560455,0.27756,0.895856,0.813226,0.214745,0.997016,0.0257038,0.657044,0.480496,0.796363,0.482274,0.583932,0.57447,0.13322,0.171919,0.778714,0.447843,0.353422,0.566638,0.966935,0.497561,0.989198,0.562839,0.430447,0.834196,0.58456,0.535267,0.300902,0.594276,0.129084,0.478249,0.741888,0.227293,0.173325,0.904026,0.784251,0.552163,0.0406877,0.146605,0.526297,0.036543,0.635073,0.465218,0.700386,0.163152,0.616054,0.275865,0.131933,0.358377,0.924206,0.999231,0.0201679,0.988443,0.047246,0.656267,0.704563,0.544048,0.980939,0.0703668,0.693064,0.756915,0.16066,0.514387,0.0459498,0.400985,0.622548,0.741373,0.571292,0.856285,0.590373,0.922949,0.519042,0.842187,0.662191,0.390931,0.746323,0.552399,0.79737,0.244279,0.182765,0.0323691,0.920096,0.0892199,0.626695,0.643376,0.794596,0.680453,0.0888119,0.0561681,0.0415346,0.969369,0.495089,0.15296,0.301348,0.509486,0.107452,0.133199,0.991105,0.254944,0.081363,0.614628,0.271643,0.988088,0.134248,0.521886,0.470058,0.535584,0.0924007,0.0583388,0.722462,0.630263,0.109597,0.360539,0.110383,0.0959541,0.746881,0.993794,0.0407501,0.868137,0.031221,0.738955,0.514494,0.845293,0.58473,0.614485,0.929075,0.71721,0.114111,0.0526207,0.393997,0.7871,0.841549,0.690802,0.758213,0.42211,0.521836,0.270565,0.0225732,0.675404,0.0204667,0.894739,0.765372,0.277677,0.719494,0.711742,0.459653,0.266868,0.433345,0.914703,0.760656,0.00147229,0.93437,0.827038,0.969272,0.91667,0.397852,0.0584689,0.956302,0.758631,0.653007,0.425288,0.612582,0.0222871,0.498365,0.858456,0.320525,0.315834,0.0750656,0.582873,0.626246,0.563973,0.749904,0.123098,0.52145,0.251339,0.391065,0.400179,0.51753,0.285379,0.876457,0.621627,0.269175,0.817227,0.352655,0.224105,0.31296,0.511541,0.0547313,0.150966,0.616782,0.451629,0.385631,0.0961045,0.346601,0.108872,0.388098,0.0818241,0.945575,0.663137,0.758599,0.650113,0.0192387,0.767301,0.654974,0.976754,0.851891,0.134157,0.143243,0.00778329,0.277045,0.789825,0.229329,0.352217,0.228503,0.387122,0.0946653,0.082988,0.795766,0.430334,0.200032,0.19727,0.460744,0.99492,0.894107,0.929924,0.305162,0.486879,0.316612,0.522265,0.176035,0.953031,0.873854,0.424294,0.945903,0.631162,0.644928,0.500237,0.0238122,0.896123,0.560638,0.972578,0.997119,0.364826,0.198623,0.00928402,0.896558,0.319958,0.921119,0.202433,0.109937,0.0966739,0.89229,0.735594,0.501833,0.417789,0.19689,0.497388,0.752076,0.71685,0.713665,0.736679,0.518799,0.877549,0.948556,0.417719,0.501758,0.899125,0.423156,0.815366,0.209354,0.104068,0.773333,0.282514,0.776798,0.603272,0.134157,0.130104,0.81056,0.553505,0.126179,0.771638,0.782874,0.936307,0.929488,0.0191787,0.548888,0.8867,0.375405,0.701129,0.927923,0.0341703,0.298283,0.47272,0.258581,0.413549,0.643546,0.0498679,0.330106,0.10912,0.0184141,0.0721701,0.635363,0.116765,0.926568,0.584475,0.887909,0.681416,0.522705,0.888365,0.220806,0.590957,0.351659,0.285114,0.938821,0.703203,0.224303,0.635623,0.828138,0.984187,0.590874,0.127716,0.388453,0.613229,0.288932,0.890291,0.745085,0.77851,0.139558,0.91685,0.75915,0.0951365,0.533483,0.740612,0.894833,0.187316,0.848879,0.734388,0.941718,0.40519,0.181972,0.82357,0.299363,0.463053,|0.585658,0.352215,0.223252,0.222864,0.885224,0.398468,0.16256,0.322275,0.230574,0.626276,0.928344,0.988729,0.962684,0.369637,0.461594,0.123279,0.516144,0.723291,0.916045,0.64499,0.7655,0.330691,0.797688,0.167734,0.54367,0.147632,0.433803,0.0561432,0.373273,0.983614,0.966208,0.371396,0.974547,0.49236,0.852214,0.318969,0.256702,0.367399,0.404245,0.852886,0.738182,0.36113,0.335334,0.282438,0.76408,0.0559143,0.0364505,0.0914801,0.0893301,0.937206,0.334199,0.11865,0.840518,0.95275,0.201544,0.751983,0.478614,0.265573,0.508009,0.933189,0.128699,0.114664,0.889261,0.407493,0.529212,0.648373,0.333808,0.522784,0.0968053,0.705635,0.399889,0.145376,0.972889,0.979878,0.325882,0.663091,0.22247,0.0142654,0.121267,0.476066,0.413414,0.478606,0.831217,0.410415,0.509678,0.531975,0.834697,0.623639,0.255341,0.743999,0.779506,0.610545,0.474633,0.821289,0.469423,0.117077,0.262151,0.280279,0.166325,0.645907,0.125665,0.224537,0.0750607,0.424107,0.592545,0.531261,0.752782,0.00876403,0.299128,0.799999,0.132712,0.826329,0.822713,0.562765,0.825019,0.0864042,0.660179,0.26839,0.309894,0.986714,0.313974,0.987585,0.541468,0.644507,0.756944,0.979052,0.209724,0.111003,0.854279,0.654298,0.270892,0.0407083,0.211982,0.856126,0.212631,0.765237,0.812302,0.322143,0.0402499,0.375024,0.356185,0.90455,0.309241,0.599742,0.771488,0.745956,0.437187,0.0362063,0.784008,0.865284,0.118021,0.114954,0.0859718,0.522228,0.0462943,0.198726,0.703987,0.755077,0.0191654,0.932401,0.958854,0.632565,0.00250077,0.636472,0.10507,0.879787,0.372539,0.242868,0.118716,0.686998,0.332337,0.0230529,0.85983,0.778553,0.00035882,0.789122,0.92621,0.401857,0.0542913,0.218109,0.217348,0.75671,0.0325671,0.568218,0.436186,0.750732,0.181984,0.747037,0.0994907,0.58993,0.661651,0.273585,0.672394,0.860391,0.149942,0.904539,0.793781,0.189242,0.300302,0.939585,0.980963,0.240062,0.758301,0.133141,0.398525,0.36534,0.858254,0.830337,0.528552,0.540526,0.405363,0.710359,0.911125,0.118735,0.680661,0.637114,0.325369,0.672522,0.094058,0.361264,0.526747,0.505403,0.959254,0.738051,0.246071,0.61611,0.866067,0.460788,0.0220261,0.180565,0.526333,0.899279,0.711177,0.0636221,0.98136,0.308629,0.729684,0.861999,0.929085,0.611049,0.244535,0.250498,0.350809,0.923975,0.786186,0.315902,0.0591902,0.0896191,0.588109,0.39397,0.318466,0.224862,0.311606,0.719223,0.0657137,0.79325,0.379088,0.376779,0.736314,0.113627,0.790422,0.457457,0.737702,0.0400932,0.270526,0.794242,0.756166,0.15925,0.655902,0.462268,0.723785,0.941197,0.403464,0.840212,0.194866,0.588393,0.12646,0.53349,0.674908,0.963479,0.792832,0.0914867,0.596036,0.650183,0.671609,0.197392,0.396847,0.245202,0.0568261,0.33954,0.525893,0.953044,0.569822,0.779103,0.0552888,0.117782,0.632139,0.271413,0.0597992,0.585372,0.353673,0.149015,0.897794,0.239561,0.823145,0.734443,0.738254,0.220343,0.736433,0.46827,0.921395,0.599041,0.310942,0.423285,0.786445,0.372101,0.243603,0.945037,0.553182,0.183059,0.48809,0.738812,0.440685,0.962668,0.65778,0.107218,0.491582,0.514216,0.184258,0.500936,0.289281,0.900653,0.259309,0.169689,0.0813897,0.475766,0.571458,0.534213,0.781446,0.353871,0.791916,0.671588,0.40781,0.915472,0.418377,0.387164,0.71643,0.860252,0.409197,0.707675,0.443111,0.431779,0.608409,0.111368,0.114256,0.10785,0.304953,0.503981,0.600333,0.963216,0.0453348,0.673212,0.181798,0.357654,0.96949,0.91034,0.748147,0.0872651,0.938095,0.766291,0.975255,0.0991974,0.369021,0.904893,0.210383,0.248099,0.225189,0.174117,0.274625,0.400878,0.228657,0.80919,0.226203,0.875898,0.781065,0.109901,0.521903,0.0514333,0.0112395,0.987109,0.255842,0.439435,0.298721,0.341929,0.138322,0.440063,0.397989,0.142954,0.184445,0.808189,0.701215,0.720642,0.201597,0.975263,0.259607,0.0498425,0.562618,0.860083,0.724129,0.754854,0.398661,0.406491,0.16567,0.977367,0.270606,0.200468,0.536151,0.509753,0.613838,0.66417,0.455454,0.493386,0.668547,0.575335,0.154518,0.266384,0.140266,0.201396,0.63853,0.59566,0.201894,0.26958,0.934253,0.273777,0.857853,0.551704,0.000759125,0.332166,0.988944,0.0353233,0.52738,0.623604,0.120769,0.944631,0.220071,0.0378745,0.10632,0.506305,0.877395,0.960574,0.134839,0.771266,0.780073,0.545138,0.698213,0.589827,0.443291,0.560357,0.183748,0.241723,0.381274,0.289313,0.256525,0.645558,0.329797,0.875681,0.0374767,0.579666,0.208747,0.0619389,0.220081,0.0962964,0.446905,0.460178,0.845704,0.207976,0.85559,0.0576475,0.00071764,0.636848,0.0248785,0.790413,0.163231,0.755564,0.408729,0.111062,0.360895,0.624344,0.614758,0.529751,0.815652,0.404115,0.787821,0.500408,0.011219,0.0495705,0.603987,0.269831,0.821841,0.803704,0.0558272,0.425664,0.744178,0.0869641,0.899953,0.935035,0.587854,0.826775,0.692891,0.351312,0.464533,0.611596,0.891151,0.220579,0.895864,0.276287,0.240217,0.0526176,0.435451,0.0185264,0.939993,0.00462943,0.803468,0.055573,0.525922,0.362763,0.659091,0.937862,0.011116,0.666371,0.512844,0.364161,0.717889,0.435129,0.855117,0.135356,0.665534,0.761566,0.558366,0.953431,0.637145,0.00869977,0.201925,0.933928,0.14652,0.778376,0.883147,0.110859,0.929117,0.260288,0.693731,0.713045,0.00717586,0.271552,0.970637,0.700734,0.24546,0.43666,0.0330434,0.536334,0.501266,0.89694,0.403402,0.51945,0.735281,0.503874,0.985988,0.549259,0.279984,0.302733,0.720286,0.702823,0.527938,0.0330738,0.873858,0.682372,0.742306,0.657057,0.911332,0.420048,0.79996,0.626267,0.391359,0.741788,0.030585,0.271161,0.18953,0.845853,0.00834906,0.807502,0.176771,0.23317,0.352154,0.0150073,0.272073,0.970753,0.766057,0.103942,0.258286,0.655887,0.125672,0.385633,0.281896,0.307416,0.854012,0.898298,0.70261,0.956082,0.227795,0.254378,0.824094,0.303444,0.888279,0.403237,0.0262692,0.35298,0.743994,0.523177,0.123969,0.392589,0.738181,0.83373,0.251902,0.640589,0.80796,0.728612,0.493171,0.168923,0.0515383,0.0724834,0.853534,0.69218,0.0628635,0.28864,0.784448,0.201906,0.436662,0.182694,0.340535,0.947042,0.515753,0.879257,0.999083,0.345456,0.57776,0.0239261,0.729436,0.0952374,0.064698,0.632436,0.519553,0.745805,0.346545,0.918638,0.625494,0.452786,0.205346,0.34656,0.433008,0.0186804,0.5284,0.118466,0.35209,0.0559744,0.0651994,0.568271,0.475043,0.263317,0.701258,0.107818,0.329493,0.277737,0.170565,0.305396,0.306539,0.602631,0.0757164,0.856743,0.605201,0.639405,0.919007,0.930949,0.958295,0.439025,0.819871,0.21623,0.180638,0.700832,0.614616,0.744555,0.294059,0.271188,0.971033,0.345071,0.545226,0.606924,0.758203,0.950938,0.928046,0.712095,0.197305,0.421183,0.857975,0.971503,0.28665,0.0597994,0.616314,0.742057,0.658384,0.956115,0.0356516,0.349767,0.422012,0.810581,0.163338,0.617081,0.316384,0.831441,0.340287,0.998886,0.871128,0.942245,0.969657,0.547265,0.323742,0.757184,0.736732,0.67534,0.0680181,0.251472,0.741927,0.703912,0.324892,0.0497041,0.0820467,0.122215,0.0256714,0.893638,0.452133,0.742173,0.364645,0.368474,0.94169,0.483786,0.76623,0.427764,0.209675,0.142597,0.130017,0.33416,0.957791,0.942331,0.464483,0.573125,0.572218,0.348677,0.0690517,0.819921,0.917528,0.0253903,0.958535,0.516831,0.835894,0.419866,0.661561,0.829983,0.796663,0.225169,0.835031,0.340944,0.147913,0.849911,0.254333,0.14536,0.55191,0.134965,0.0141824,0.960846,0.582123,0.147238,0.298544,0.213335,0.364067,0.336544,0.288714,0.606739,0.836031,0.646543,0.140056,0.933785,0.348429,0.598757,0.00270325,0.406645,0.493297,0.263827,0.671477,0.174137,0.406077,0.985215,0.83568,0.576049,0.807209,0.0779134,0.260563,0.137194,0.291609,0.768484,0.419552,0.751876,0.774335,0.493163,0.291499,0.387065,0.571901,0.915189,0.457067,0.0124434,0.593843,0.432631,0.225656,0.270626,0.950792,0.27378,0.969237,0.596802,0.927864,0.373815,0.794062,0.673055,0.0708814,0.0511013,0.689559,0.480685,0.740519,0.679671,0.302177,0.994363,0.480223,0.511507,0.338521,0.3759,0.563375,0.475855,0.594443,0.044029,0.517088,0.929236,0.567917,0.509289,0.588541,0.849611,0.470487,0.164288,0.466244,0.976634,0.295644,0.401342,0.770024,0.7716,0.12474,0.946976,0.810469,0.362115,0.370397,0.162213,0.332516,0.0441158,0.815733,0.447696,0.550773,0.97262,0.983889,0.522211,0.646869,0.490492,0.825538,0.638343,0.327971,0.778023,0.2009,0.138138,0.488531,0.847601,0.385807,0.163053,0.291329,0.348188,0.669647,0.17144,0.397124,0.386573,0.870554,0.43763,0.720836,0.904727,0.20521,0.677624,0.519888,0.12288,0.187834,0.955437,0.75375,0.0748229,0.277395,0.78783,0.0409876,0.923687,0.0524477,0.568274,0.514257,0.967482,0.882161,0.570056,0.921128,0.683653,0.813471,0.724862,0.00346237,0.447655,0.832621,0.380958,0.35939,0.176972,0.743728,0.690138,0.74643,0.0256423,0.944402,0.641979,0.792222,0.0488191,0.366542,0.547019,0.422621,0.199551,0.786871,0.192065,0.570727,0.439346,0.482282,0.431289,0.10922,0.0857614,0.470564,0.594665,0.0798451,0.0295251,0.769261,0.972219,0.138554,0.260201,0.384553,0.723031,0.69603,0.370319,0.16932,0.640146,0.353655,0.793798,0.36642,0.311642,0.663539,0.185299,0.710581,0.228414,0.933657,0.837128,0.774137,0.503842,0.218087,0.305202,0.750606,0.571376,0.145173,0.866539,0.708033,0.387101,0.487644,0.624418,0.21055,0.269124,0.933532,0.00348401,0.207646,0.642276,0.865188,0.804669,0.00824642,0.412124,0.87068,0.00506568,0.344536,0.348952,0.419953,0.724195,0.765678,0.653836,0.899584,0.336794,|0.474203,0.0888813,0.525217,0.550862,0.0692984,0.0712767,0.787046,0.0553233,0.757114,0.238609,0.382932,0.634521,0.719456,0.319227,0.373464,0.296637,0.435781,0.774279,0.449682,0.694197,0.422758,0.568447,0.331994,0.730544,0.012417,0.969777,0.385427,0.238533,0.750567,0.36649,0.602833,0.331365,0.576889,0.132887,0.885653,0.0600095,0.68092,0.0441748,0.868818,0.988003,0.478036,0.106519,0.535677,0.749086,0.151783,0.764978,0.442704,0.136085,0.584191,0.747854,0.195178,0.671758,0.2885,0.534105,0.926201,0.600909,0.258629,0.590236,0.399233,0.43863,0.503258,0.710138,0.00309491,0.926351,0.36363,0.993428,0.0283387,0.563296,0.975825,0.58781,0.357188,0.312831,0.791459,0.744429,0.43176,0.515585,0.948685,0.917967,0.288101,0.769303,0.644227,0.535226,0.711639,0.513002,0.695354,0.703993,0.496951,0.867821,0.767515,0.942792,0.251471,0.141528,0.371839,0.0887831,0.116585,0.0396826,0.228617,0.476403,0.685644,0.158648,0.58097,0.0102115,0.611889,0.707732,0.51383,0.0719729,0.05765,0.0237212,0.642581,0.145569,0.205659,0.573263,0.189348,0.0689435,0.939729,0.892989,0.344174,0.608884,0.693664,0.917221,0.744144,0.205181,0.702373,0.395494,0.766024,0.311657,0.664202,0.754013,0.238813,0.501781,0.314739,0.13425,0.881813,0.847079,0.952932,0.827252,0.661844,0.621808,0.831068,0.475525,0.641916,0.187349,0.652388,0.175144,0.607709,0.688496,0.333867,0.244274,0.679283,0.0226397,0.291031,0.516971,0.395528,0.954318,0.897105,0.0921032,0.99053,0.537546,0.189728,0.108545,0.278305,0.30994,0.506517,0.450248,0.634285,0.194677,0.00971484,0.200965,0.284783,0.0936137,0.473974,0.235105,0.224972,0.670544,0.223678,0.0319867,0.810651,0.941235,0.739774,0.700755,0.489199,0.327983,0.0471195,0.916008,0.654494,0.253544,0.527065,0.495324,0.800994,0.423698,0.765467,0.58767,0.0916099,0.74981,0.290398,0.319714,0.375874,0.851979,0.470926,0.947717,0.50002,0.938944,0.956749,0.325172,0.533505,0.603761,0.945978,0.581778,0.522187,0.300988,0.0838344,0.0913587,0.155499,0.978822,0.0816244,0.194473,0.289254,0.121799,0.936509,0.779242,0.319673,0.37432,0.549498,0.270425,0.916841,0.440053,0.940369,0.820229,0.115987,0.753578,0.337536,0.450099,0.208314,0.7601,0.356126,0.569502,0.714538,0.0913429,0.846441,0.671127,0.901933,0.359164,0.741977,0.154431,0.787382,0.880202,0.336139,0.327413,0.148758,0.958105,0.98355,0.819152,0.0591461,0.483394,0.461723,0.840268,0.687006,0.217034,0.039682,0.965055,0.669509,0.280746,0.790958,0.325342,0.0303775,0.753096,0.362325,0.105138,0.667069,0.797269,0.481509,0.695976,0.416418,0.408965,0.774683,0.293916,0.547687,0.125552,0.139466,0.107726,0.633251,0.943506,0.0796374,0.151148,0.161453,0.64542,0.00401372,0.737751,0.474716,0.375832,0.333601,0.871553,0.278198,0.300053,0.133642,0.48144,0.530313,0.373112,0.590808,0.796471,0.520981,0.478011,0.233296,0.815888,0.136892,0.634024,0.288249,0.0184311,0.251755,0.892752,0.0322396,0.873628,0.908014,0.734218,0.477298,0.06926,0.714292,0.634614,0.120161,0.165533,0.284508,0.741772,0.609768,0.424805,0.161878,0.148979,0.493553,0.132104,0.338157,0.568639,0.0817815,0.771711,0.691574,0.581282,0.379849,0.411718,0.859942,0.183692,0.465476,0.120792,0.979879,0.600576,0.589884,0.3693,0.403556,0.0551247,0.192012,0.613242,0.357361,0.943031,0.175041,0.975926,0.709933,0.156139,0.169209,0.920993,0.944234,0.856914,0.532612,0.32917,0.229408,0.822342,0.839064,0.35996,0.00531143,0.0646598,0.244607,0.947601,0.770696,0.356909,0.822355,0.794156,0.424574,0.886293,0.19643,0.527827,0.240148,0.103516,0.934191,0.0927967,0.406718,0.409146,0.0837297,0.964442,0.472343,0.186006,0.833816,0.0800099,0.912767,0.204129,0.333356,0.870372,0.378466,0.626111,0.273814,0.743232,0.17866,0.909933,0.0735441,0.990639,0.382362,0.550189,0.967714,0.108878,0.849713,0.98485,0.133903,0.741403,0.133447,0.520642,0.741522,0.225343,0.102147,0.0401389,0.943166,0.758445,0.168527,0.555696,0.626332,0.540547,0.459547,0.0598859,0.975335,0.995819,0.0739394,0.787145,0.612416,0.182662,0.916915,0.580422,0.96353,0.574096,0.418196,0.691784,0.104358,0.12538,0.681233,0.175419,0.447716,0.789687,0.945563,0.751873,0.43056,0.0692175,0.914471,0.43253,0.817162,0.834195,0.977769,0.636524,0.690637,0.93582,0.847675,0.511043,0.549971,0.421022,0.9878,0.659191,0.597836,0.0371642,0.860125,0.758098,0.887538,0.062471,0.447895,0.177658,0.774055,0.675376,0.744847,0.00687039,0.383984,0.857781,0.376787,0.792708,0.11712,0.525163,0.281652,0.0326322,0.908303,0.224753,0.404016,0.0962412,0.451845,0.20519,0.310552,0.623933,0.577268,0.924503,0.0251969,0.193784,0.0957305,0.738775,0.861246,0.622973,0.629238,0.683395,0.314998,0.936577,0.99669,0.559246,0.625653,0.51658,0.197263,0.582839,0.500064,0.947693,0.354391,0.398414,0.849139,0.72964,0.222424,0.0261561,0.397342,0.952959,0.554229,0.998446,0.840239,0.820363,0.705155,0.177793,0.206363,0.364422,0.170344,0.531987,0.581352,0.999487,0.556794,0.384607,0.528117,0.141935,0.778928,0.169711,0.924085,0.313463,0.500721,0.342779,0.160232,0.882335,0.672845,0.466588,0.764162,0.671736,0.0416619,0.390033,0.646938,0.903192,0.178928,0.830467,0.741614,0.904089,0.77369,0.269691,0.307648,0.957364,0.949299,0.788482,0.806541,0.141392,0.146214,0.100371,0.952386,0.528653,0.300189,0.683157,0.707715,0.362196,0.632284,0.805731,0.573981,0.153508,0.0232279,0.854937,0.901693,0.623892,0.762273,0.149281,0.101887,0.51148,0.721636,0.936682,0.901609,0.561475,0.665167,0.206301,0.555815,0.737393,0.736977,0.864503,0.119592,0.939718,0.579533,0.825555,0.845318,0.210486,0.460851,0.862545,0.877559,0.804561,0.574597,0.377971,0.273167,0.0286558,0.354713,0.0193508,0.108152,0.299404,0.93871,0.497771,0.792216,0.971466,0.48661,0.676761,0.654929,0.7256,0.807901,0.0162953,0.641113,0.14553,0.0104759,0.588028,0.931727,0.752427,0.103477,0.744761,0.452046,0.658488,0.13512,0.657519,0.613306,0.477525,0.536173,0.937794,0.986707,0.745679,0.721002,0.991946,0.565497,0.18056,0.398303,0.904699,0.0741242,0.145328,0.588383,0.410759,0.26138,0.877654,0.652491,0.162653,0.525939,0.851446,0.656725,0.0574073,0.512057,0.0244586,0.213891,0.589705,0.948091,0.555714,0.792953,0.586909,0.59943,0.616564,0.986486,0.472475,0.275342,0.0840883,0.859862,0.720676,0.808718,0.483532,0.151141,0.864368,0.48129,0.747157,0.13838,0.707964,0.932631,0.654871,0.363274,0.712169,0.712113,0.0157427,0.345586,0.0231505,0.409098,0.726518,0.305312,0.871493,0.0945357,0.907804,0.557341,0.290756,0.906971,0.530317,0.196877,0.286858,0.644047,0.320163,0.664892,0.0552063,0.882254,0.00264728,0.00469989,0.398196,0.66359,0.292991,0.139666,0.904829,0.356594,0.697648,0.785779,0.714592,0.689242,0.592604,0.454056,0.998035,0.267614,0.403981,0.554211,0.84585,0.977914,0.473674,0.708374,0.348506,0.885974,0.84211,0.185697,0.789919,0.0932916,0.211784,0.655028,0.423111,0.470234,0.506696,0.225982,0.73016,0.206173,0.619064,0.229256,0.525716,0.828202,0.262342,0.712857,0.08777,0.356772,0.592417,0.854148,0.724975,0.383262,0.134601,0.542625,0.659084,0.140494,0.502596,0.983689,0.324279,0.93336,0.899737,0.151733,0.426838,0.132215,0.0730439,0.493909,0.538213,0.848913,0.802888,0.257731,0.583082,0.461485,0.205671,0.61745,0.0769891,0.716293,0.9558,0.621213,0.574122,0.427936,0.0241195,0.84111,0.802297,0.0482745,0.369959,0.164491,0.32589,0.519858,0.083732,0.907508,0.73523,0.0110036,0.754428,0.399161,0.0734425,0.414444,0.664415,0.627079,0.153204,0.114673,0.291798,0.0119517,0.745647,0.997636,0.753532,0.571159,0.0513912,0.71934,0.592303,0.692007,0.128238,0.471237,0.934012,0.920267,0.986409,0.545352,0.941639,0.131242,0.330762,0.781878,0.63213,0.794019,0.483537,0.0885772,0.347519,0.950743,0.447973,0.380395,0.4405,0.0533732,0.842742,0.529,0.85865,0.147061,0.90281,0.423465,0.0173216,0.273401,0.411247,0.725493,0.221425,0.608479,0.72026,0.946469,0.91998,0.618012,0.595491,0.605969,0.64369,0.725111,0.122034,0.124961,0.666741,0.629169,0.572439,0.888069,0.14447,0.521959,0.134056,0.533816,0.908001,0.111096,0.784887,0.212434,0.899174,0.45756,0.933434,0.894537,0.184493,0.903936,0.738906,0.92317,0.0931121,0.912456,0.767392,0.240482,0.147875,0.0793111,0.597521,0.734576,0.429302,0.71325,0.757831,0.917169,0.928966,0.109657,0.640652,0.6344,0.0012874,0.0431767,0.986394,0.259847,0.877003,0.338247,0.553343,0.617455,0.934425,0.926352,0.942107,0.342438,0.0341229,0.365166,0.203558,0.208698,0.953858,0.743787,0.842693,0.132784,0.216713,0.221301,0.823556,0.860668,0.146454,0.533166,0.475654,0.916613,0.73949,0.948148,0.11696,0.0397618,0.377072,0.0508686,0.771966,0.104011,0.61661,0.327545,0.798401,0.527958,0.719108,0.91584,0.363352,0.105083,0.829313,0.0569305,0.887874,0.725001,0.679865,0.344492,0.899541,0.612593,0.600874,0.36859,0.926543,0.567565,0.41818,0.0844438,0.72267,0.478521,0.792349,0.722064,0.451553,0.357445,0.338,0.118844,0.895543,0.526486,0.410884,0.847223,0.678451,0.193778,0.633149,0.801807,0.512132,0.455805,0.471078,0.648718,0.380875,0.294025,0.0555762,0.769858,0.677363,0.885643,0.237259,0.750842,0.683688,0.928016,0.892184,0.571389,0.0969648,0.540667,0.0347422,0.361317,0.87028,0.242539,0.115435,0.0994431,0.883367,0.907797,0.429776,0.822036,0.256518,0.113448,0.825759,0.0586914,0.572513,0.297349,0.917656,0.591547,0.299598,0.974576,0.776462,0.384143,0.727569,|0.119432,0.892392,0.0913273,0.931679,0.472261,0.684533,0.750235,0.545523,0.968277,0.596694,0.828625,0.735883,0.221325,0.044983,0.85573,0.706779,0.0603384,0.621419,0.636728,0.446438,0.48944,0.482592,0.537839,0.143449,0.12646,0.474947,0.14692,0.750083,0.65263,0.0866119,0.931432,0.598128,0.61013,0.942512,0.567004,0.0101479,0.142071,0.550859,0.0561012,0.873443,0.872244,0.927211,0.895796,0.0572231,0.291506,0.917517,0.113722,0.802444,0.891531,0.549419,0.0764279,0.861785,0.382761,0.456581,0.464447,0.291705,0.329385,0.513828,0.462945,0.668249,0.787759,0.509093,0.00956541,0.135293,0.425145,0.203356,0.128157,0.679764,0.168311,0.129577,0.314352,0.415902,0.881973,0.513077,0.738467,0.814189,0.754044,0.65175,0.908307,0.540002,0.0705938,0.603431,0.0323721,0.00801092,0.96398,0.360134,0.55235,0.0224441,0.803629,0.571164,0.706766,0.0231943,0.59945,0.79279,0.850651,0.661465,0.359114,0.584674,0.687581,0.380489,0.637662,0.458346,0.607544,0.0137987,0.358188,0.117242,0.113257,0.325464,0.254287,0.855186,0.559416,0.870184,0.699253,0.425351,0.381802,0.693916,0.63167,0.242054,0.673428,0.0521696,0.212644,0.868239,0.405362,0.451887,0.806428,0.10632,0.780374,0.63807,0.179185,0.753683,0.623016,0.681937,0.862753,0.273246,0.812863,0.0205306,0.653051,0.0066458,0.587352,0.227899,0.269276,0.476064,0.42116,0.388458,0.607784,0.429642,0.911101,0.452734,0.739736,0.696782,0.551768,0.10561,0.610044,0.183751,0.335103,0.0830385,0.0220002,0.626986,0.986993,0.613373,0.638222,0.988451,0.998575,0.0707275,0.949561,0.312218,0.366521,0.980197,0.967677,0.460797,0.0970547,0.704746,0.735177,0.789684,0.887284,0.512051,0.640883,0.497637,0.877603,0.508418,0.31288,0.225786,0.448041,0.289756,0.116795,0.986596,0.941024,0.986603,0.869096,0.514014,0.148722,0.0528846,0.385123,0.704412,0.631959,0.774473,0.226247,0.433795,0.233676,0.416648,0.166541,0.721914,0.212788,0.246129,0.681787,0.0189051,0.606907,0.52934,0.464955,0.320925,0.624215,0.128826,0.776356,0.275384,0.197197,0.459105,0.218052,0.634864,0.923471,0.951928,0.0272117,0.906184,0.487266,0.602308,0.294656,0.24331,0.152827,0.751717,0.720373,0.169808,0.484515,0.853704,0.193278,0.497217,0.202591,0.710511,0.484585,0.139722,0.729002,0.143872,0.76169,0.764933,0.509033,0.741618,0.433052,0.0265528,0.788941,0.19393,0.570736,0.540783,0.938625,0.708954,0.398732,0.434007,0.212425,0.265151,0.394048,0.738185,0.101061,0.500566,0.257452,0.363042,0.281733,0.783273,0.602283,0.187472,0.632813,0.0494673,0.447375,0.613357,0.290078,0.585723,0.759164,0.679581,0.33372,0.696837,0.472792,0.89441,0.762048,0.580174,0.314229,0.481653,0.400879,0.542217,0.490539,0.477143,0.0290125,0.140081,0.384606,0.601999,0.229572,0.00355953,0.852842,0.68435,0.85436,0.484329,0.365864,0.683209,0.588356,0.269301,0.0394289,0.7082,0.828684,0.812651,0.448333,0.559768,0.392884,0.767628,0.921259,0.27125,0.145817,0.00107557,0.899242,0.844069,0.366211,0.921955,0.455723,0.462059,0.221676,0.630987,0.314925,0.0560231,0.0126415,0.127101,0.0821666,0.994994,0.906076,0.474573,0.116484,0.531729,0.686357,0.139707,0.423069,0.422264,0.912675,0.0905607,0.209579,0.937576,0.455122,0.121152,0.155905,0.970147,0.0497282,0.526549,0.844357,0.508191,0.664458,0.212343,0.428972,0.125014,0.286406,0.906176,0.529218,0.273173,0.0496806,0.341337,0.652409,0.866983,0.943589,0.202459,0.694967,0.139046,0.196963,0.0281414,0.382257,0.143369,0.0923634,0.0116547,0.0636914,0.850772,0.675617,0.240854,0.717024,0.540254,0.346723,0.0400723,0.576997,0.548005,0.805289,0.709157,0.662884,0.55609,0.677851,0.629112,0.672585,0.50342,0.797084,0.613978,0.527101,0.052504,0.604256,0.406944,0.0859125,0.933789,0.98779,0.210315,0.520369,0.830422,0.589324,0.533214,0.627017,0.911186,0.542693,0.725723,0.870637,0.826961,0.7041,0.684835,0.71444,0.638564,0.87573,0.450263,0.99177,0.555236,0.382885,0.15506,0.348636,0.819989,0.0835522,0.266685,0.064555,0.26056,0.582591,0.579766,0.550092,0.0592124,0.609403,0.0172709,0.621713,0.0408416,0.140873,0.23985,0.402331,0.857496,0.881227,0.905424,0.170233,0.341138,0.552811,0.702089,0.548093,0.961553,0.258758,0.685615,0.00390989,0.949483,0.224604,0.694386,0.0401525,0.0372805,0.780519,0.608202,0.359325,0.276624,0.575453,0.784703,0.512539,0.423839,0.170245,0.596848,0.0959301,0.384611,0.58565,0.407352,0.947388,0.685543,0.757922,0.455692,0.94519,0.129884,0.396927,0.914311,0.052696,0.472003,0.179874,0.727055,0.799896,0.104165,0.979981,0.663816,0.396564,0.536366,0.148681,0.498463,0.74918,0.790164,0.895261,0.703588,0.120454,0.373461,0.666413,0.498558,0.484753,0.0425496,0.434639,0.746026,0.100007,0.975591,0.843926,0.075784,0.896219,0.227493,0.989707,0.599552,0.898686,0.0495422,0.500793,0.440484,0.503601,0.845945,0.00211,0.827187,0.792865,0.848534,0.208976,0.0415143,0.257015,0.786387,0.878495,0.433833,0.58812,0.964591,0.768764,0.385694,0.916427,0.727102,0.29682,0.359851,0.567545,0.155972,0.837688,0.542121,0.401718,0.722724,0.386362,0.496766,0.736149,0.522148,0.0365462,0.299594,0.892918,0.577997,0.745231,0.541678,0.0836082,0.847518,0.49082,0.919436,0.326899,0.137337,0.569489,0.359603,0.0894538,0.518121,0.509723,0.547106,0.130955,0.491754,0.0230622,0.37438,0.494414,0.0648851,0.451859,0.538765,0.55211,0.630303,0.295166,0.924605,0.161038,0.70694,0.730645,0.257882,0.0839572,0.987481,0.326754,0.367662,0.853029,0.159633,0.734823,0.554402,0.240698,0.610601,0.0892709,0.580854,0.0767527,0.0887864,0.626245,0.451481,0.343393,0.910941,0.860368,0.238614,0.775668,0.333446,0.287645,0.0374413,0.447172,0.0890395,0.676853,0.890959,0.64767,0.171468,0.642542,0.857512,0.041749,0.380199,0.659697,0.816894,0.674892,0.377625,0.615901,0.347728,0.25005,0.858346,0.152308,0.446713,0.687624,0.68862,0.187699,0.948332,0.261155,0.471866,0.406923,0.614075,0.996115,0.195442,0.856515,0.603063,0.220313,0.714253,0.174344,0.590605,0.296251,0.0491403,0.101521,0.818366,0.363042,0.460521,0.632313,0.435522,0.665692,0.718926,0.882033,0.974629,0.0544172,0.795781,0.334611,0.241943,0.495666,0.254251,0.0702072,0.58566,0.45649,0.191438,0.479533,0.70252,0.0562338,0.249428,0.62875,0.898965,0.29029,0.938969,0.00814849,0.394996,0.0233509,0.455728,0.367023,0.00206518,0.967181,0.158246,0.487998,0.485051,0.843574,0.340162,0.926229,0.74527,0.854745,0.737665,0.776547,0.761257,0.739614,0.632552,0.56382,0.595406,0.267206,0.0281922,0.914537,0.54118,0.415954,0.321905,0.170955,0.168919,0.287286,0.659384,0.249988,0.324288,0.626461,0.375393,0.574123,0.761337,0.717127,0.343593,0.210382,0.78385,0.210991,0.737848,0.534374,0.860932,0.478336,0.894817,0.554795,0.590611,0.175519,0.184125,0.746956,0.703301,0.83367,0.415113,0.057743,0.285373,0.237086,0.08406,0.71795,0.379914,0.383528,0.410379,0.049978,0.173396,0.567339,0.81355,0.417817,0.623053,0.36013,0.764888,0.113334,0.523448,0.101198,0.541489,0.489493,0.0305029,0.914276,0.94964,0.299391,0.308059,0.816588,0.214879,0.529555,0.405775,0.281049,0.132725,0.649963,0.00487345,0.340949,0.745226,0.0628964,0.731671,0.834423,0.369845,0.909258,0.218462,0.993554,0.30838,0.122947,0.82106,0.540357,0.770814,0.482682,0.295658,0.825284,0.166572,0.992176,0.248484,0.264427,0.762305,0.500166,0.569787,0.530307,0.175982,0.529474,0.863796,0.570801,0.419934,0.376087,0.602539,0.801724,0.924902,0.735231,0.743213,0.0262346,0.999539,0.978368,0.156865,0.458185,0.702189,0.943455,0.111946,0.788975,0.0995452,0.940603,0.607646,0.329075,0.275365,0.686005,0.489591,0.261228,0.322477,0.926859,0.472979,0.00425416,0.741575,0.387425,0.439536,0.535309,0.536727,0.692635,0.13154,0.354346,0.542238,0.319411,0.378039,0.93492,0.500918,0.604654,0.164823,0.598776,0.78505,0.0396289,0.870591,0.949952,0.21174,0.327607,0.690205,0.238851,0.281949,0.245062,0.984256,0.671107,0.656364,0.973166,0.581175,0.260259,0.7638,0.628748,0.738988,0.427482,0.319722,0.072954,0.665953,0.0337677,0.363496,0.290726,0.0717603,0.0667115,0.884698,0.382667,0.835773,0.585434,0.671135,0.331472,0.810388,0.394702,0.271791,0.748566,0.780952,0.553779,0.115322,0.98462,0.614762,0.299004,0.875973,0.155701,0.111165,0.627063,0.560518,0.765539,0.29875,0.976751,0.589119,0.393432,0.651965,0.562229,0.217423,0.849369,0.600909,0.351044,0.996546,0.731912,0.844361,0.29301,0.0752974,0.424754,0.197821,0.587424,0.835557,0.365337,0.388442,0.287726,0.590258,0.148614,0.416544,0.152126,0.00542206,0.00501901,0.447563,0.126342,0.633024,0.486278,0.152386,0.0778511,0.160857,0.362139,0.344959,0.598885,0.214365,0.412849,0.377305,0.273746,0.0956083,0.22316,0.74656,0.172162,0.437376,0.882153,0.891892,0.231291,0.790746,0.752499,0.754154,0.493129,0.345637,0.0991421,0.375582,0.926976,0.0439925,0.986337,0.213709,0.399969,0.086617,0.479989,0.505549,0.877086,0.58834,0.473413,0.671717,0.806351,0.870283,0.73923,0.779392,0.232502,0.55149,0.136315,0.751839,0.565663,0.426239,0.554985,0.994583,0.529848,0.572752,0.623422,0.764809,0.791593,0.337747,0.873378,0.606063,0.884543,0.548684,0.436013,0.932161,0.320973,0.689658,0.610888,0.0144681,0.0123466,0.0373953,0.966959,0.71962,0.204984,0.690444,0.79578,0.361079,0.258927,0.862037,0.762035,0.338373,0.756331,0.107674,0.322421,0.186395,0.426721,0.228441,0.665434,0.618688,0.843829,0.406385,0.762166,0.928694,0.458305,0.295348,0.337618,0.412809,|0.100207,0.578457,0.756722,0.000594735,0.562355,0.199878,0.707425,0.595262,0.311219,0.480412,0.504025,0.0140936,0.334194,0.782141,0.0841101,0.851194,0.771386,0.870457,0.244471,0.69652,0.986568,0.239953,0.105039,0.319429,0.505109,0.114342,0.940763,0.650423,0.0807959,0.609531,0.209327,0.154174,0.814354,0.740827,0.934836,0.371598,0.948475,0.982746,0.18768,0.0686784,0.828618,0.626713,0.346733,0.480609,0.90562,0.874098,0.0937532,0.421422,0.443743,0.877824,0.548317,0.676602,0.345589,0.711154,0.0401797,0.301676,0.440932,0.0324894,0.653278,0.620051,0.123572,0.829976,0.877988,0.830537,0.115951,0.428915,0.346149,0.155403,0.921935,0.455116,0.591696,0.581055,0.561582,0.267038,0.441666,0.171861,0.836681,0.704385,0.914216,0.903845,0.299003,0.175844,0.292801,0.677226,0.0206095,0.0428135,0.996922,0.893652,0.0125924,0.138346,0.0830396,0.724985,0.364212,0.342064,0.354037,0.330444,0.392522,0.553936,0.46603,0.661234,0.897433,0.973636,0.69394,0.965955,0.809839,0.227879,0.0246205,0.801742,0.0463208,0.851173,0.337609,0.730154,0.617349,0.369732,0.601779,0.35976,0.61653,0.211293,0.0565849,0.0902576,0.852504,0.755606,0.585272,0.551895,0.344697,0.0819253,0.737682,0.253521,0.689244,0.0197271,0.153163,0.264768,0.830092,0.676943,0.637481,0.551506,0.454778,0.964921,0.873508,0.361484,0.882227,0.323623,0.78399,0.773279,0.770317,0.323692,0.665584,0.396657,0.234797,0.0135977,0.0251091,0.0526829,0.845388,0.931935,0.0215636,0.893847,0.984571,0.45776,0.681442,0.199205,0.170107,0.338455,0.667362,0.420584,0.40567,0.425012,0.920437,0.55155,0.47281,0.802774,0.53065,0.51479,0.316182,0.172395,0.300157,0.420105,0.627483,0.253289,0.825018,0.70417,0.527226,0.53688,0.117003,0.389221,0.839726,0.616495,0.65991,0.749398,0.183837,0.825172,0.399319,0.429501,0.492287,0.257486,0.293698,0.662543,0.77903,0.135068,0.201872,0.12072,0.833204,0.860547,0.190513,0.800518,0.647195,0.259424,0.920626,0.0552002,0.377655,0.532526,0.410312,0.279841,0.555429,0.523326,0.991524,0.752205,0.226052,0.86511,0.246914,0.0943054,0.374144,0.32527,0.183894,0.806278,0.880442,0.757001,0.478388,0.357985,0.336278,0.754235,0.962978,0.865181,0.12271,0.47418,0.508691,0.112464,0.433537,0.584086,0.625551,0.293135,0.159953,0.128445,0.987705,0.141346,0.0375476,0.99265,0.187514,0.747921,0.81713,0.208745,0.240206,0.846501,0.15596,0.475101,0.700921,0.077786,0.355981,0.277297,0.721268,0.230091,0.552486,0.116813,0.937505,0.417545,0.351603,0.803122,0.652395,0.533388,0.0604899,0.705924,0.18359,0.708963,0.157897,0.76309,0.14076,0.902715,0.930852,0.218208,0.0338565,0.022507,0.938278,0.776544,0.999821,0.938598,0.314291,0.767951,0.793317,0.86196,0.828768,0.742862,0.244235,0.416093,0.133521,0.661126,0.573138,0.190193,0.984035,0.102294,0.842632,0.223586,0.355626,0.0420645,0.759113,0.352898,0.382072,0.446947,0.770091,0.971626,0.574172,0.632933,0.218639,0.476158,0.990231,0.161217,0.967557,0.22453,0.663915,0.0686824,0.560621,0.646669,0.267426,0.628902,0.756029,0.241846,0.227863,0.686356,0.3324,0.514098,0.297077,0.0137619,0.231525,0.867254,0.858205,0.367945,0.574271,0.0992334,0.819155,0.742887,0.333706,0.549499,0.948821,0.0100843,0.266358,0.526371,0.192857,0.706191,0.749763,0.259203,0.73689,0.0297737,0.124293,0.716269,0.438229,0.753726,0.860431,0.611543,0.82706,0.209231,0.225905,0.0722938,0.518227,0.508032,0.477572,0.883595,0.421644,0.528702,0.316439,0.460736,0.42191,0.87733,0.797423,0.102598,0.219924,0.00591433,0.656391,0.762188,0.74436,0.0653302,0.582699,0.657593,0.909804,0.130945,0.945626,0.0165247,0.583462,0.145867,0.0171257,0.853476,0.0840514,0.910858,0.398896,0.560766,0.568005,0.10099,0.695946,0.818635,0.237297,0.121749,0.352247,0.288155,0.224999,0.560375,0.45454,0.416665,0.0300387,0.187654,0.0488783,0.750765,0.415848,0.823426,0.0645831,0.698549,0.959353,0.562232,0.785567,0.100748,0.843501,0.995663,0.219028,0.177363,0.976806,0.0351723,0.54185,0.140429,0.578881,0.270744,0.62462,0.0607342,0.656465,0.115637,0.186191,0.276156,0.389349,0.551707,0.360267,0.945324,0.96701,0.984664,0.377585,0.428708,0.924117,0.57124,0.236487,0.036748,0.865937,0.167783,0.944855,0.582149,0.553676,0.903287,0.446528,0.0705919,0.444713,0.954893,0.772366,0.298401,0.870042,0.708634,0.0819389,0.894455,0.581693,0.668948,0.342023,0.260856,0.232091,0.0735427,0.937156,0.0483485,0.375092,0.267511,0.43068,0.262502,0.959792,0.451796,0.679991,0.927208,0.178357,0.696927,0.519456,0.151577,0.947091,0.320306,0.380842,0.90377,0.711709,0.69968,0.0157816,0.474552,0.214463,0.766066,0.354674,0.594226,0.096884,0.287357,0.125355,0.45004,0.724598,0.30576,0.00271535,0.908643,0.279695,0.610711,0.511334,0.913822,0.78981,0.180104,0.65805,0.696107,0.394099,0.541902,0.54431,0.191973,0.124473,0.64405,0.0478805,0.864571,0.174016,0.284491,0.777511,0.986692,0.555065,0.821773,0.298575,0.26638,0.619067,0.00685769,0.9047,0.919875,0.762565,0.487713,0.47889,0.118254,0.348829,0.176155,0.814035,0.900914,0.660728,0.747631,0.491762,0.187787,0.340078,0.970357,0.866789,0.378807,0.491211,0.0911376,0.62797,0.403719,0.225541,0.757056,0.407553,0.210233,0.791636,0.688111,0.764933,0.128259,0.0994526,0.332481,0.697793,0.527834,0.428252,0.251949,0.364865,0.227007,0.590401,0.42251,0.988787,0.506793,0.345114,0.100578,0.127399,0.240206,0.880066,0.201622,0.461255,0.739406,0.879882,0.479151,0.552292,0.329554,0.529483,0.484032,0.842751,0.0791464,0.920761,0.702062,0.454182,0.448939,0.50358,0.515685,0.849818,0.968522,0.0140609,0.374935,0.512627,0.64568,0.498309,0.150715,0.0523874,0.530524,0.31603,0.0783618,0.75835,0.179711,0.0360172,0.270398,0.761503,0.633724,0.661648,0.57921,0.162826,0.608103,0.202256,0.129521,0.600348,0.7596,0.343015,0.357646,0.714897,0.149573,0.639037,0.666373,0.0616437,0.81343,0.963643,0.808239,0.521731,0.912411,0.429935,0.542151,0.826273,0.527538,0.267097,0.711413,0.0785151,0.771301,0.0158175,0.0475673,0.302059,0.570979,0.508688,0.0511017,0.0361206,0.517416,0.431008,0.227048,0.396838,0.482073,0.803087,0.81439,0.0877941,0.87171,0.355425,0.521372,0.197022,0.426679,0.809243,0.986014,0.159606,0.806372,0.54416,0.992821,0.453851,0.658949,0.703965,0.813442,0.298747,0.921301,0.727421,0.862475,0.391623,0.386814,0.0112204,0.67634,0.872783,0.544584,0.113524,0.0981149,0.354013,0.517866,0.892358,0.280896,0.789205,0.620941,0.90548,0.53982,0.96975,0.868625,0.871775,0.0522459,0.087757,0.240138,0.350656,0.707404,0.836068,0.0552505,0.11417,0.889847,0.172195,0.0262723,0.330997,0.354235,0.113556,0.735643,0.803688,0.108037,0.275527,0.114115,0.632291,0.311906,0.0392808,0.688196,0.904239,0.865032,0.511971,0.347049,0.480252,0.335975,0.408918,0.58416,0.0322441,0.039651,0.6796,0.0373808,0.108911,0.844085,0.780037,0.504352,0.628469,0.84642,0.890718,0.849436,0.392015,0.108757,0.545608,0.161746,0.182502,0.578754,0.111301,0.068614,0.592373,0.939501,0.845243,0.417418,0.74742,0.830717,0.313392,0.825648,0.228236,0.823922,0.950205,0.0652878,0.024464,0.563489,0.746327,0.699027,0.283149,0.60943,0.737827,0.377263,0.925876,0.575524,0.961467,0.529846,0.513772,0.90032,0.788079,0.293334,0.164739,0.157268,0.228982,0.867557,0.363151,0.239553,0.514884,0.215012,0.497598,0.199459,0.013849,0.942779,0.908525,0.16246,0.187722,0.0180212,0.934893,0.114095,0.880547,0.709749,0.587169,0.51532,0.7831,0.789401,0.354508,0.500549,0.613641,0.308949,0.38582,0.325238,0.176615,0.40883,0.213925,0.221978,0.2768,0.561146,0.213437,0.0384986,0.140165,0.232943,0.720962,0.483881,0.794585,0.208008,0.0934211,0.787003,0.16203,0.92741,0.803684,0.436169,0.812698,0.617764,0.682387,0.204452,0.000463963,0.900158,0.428752,0.77067,0.159319,0.803187,0.0181246,0.722432,0.470822,0.352475,0.165182,0.980368,0.481704,0.734915,0.345936,0.856037,0.947201,0.595923,0.254521,0.363456,0.95474,0.574103,0.191288,0.502052,0.73773,0.21545,0.70148,0.403167,0.252154,0.235466,0.825017,0.536974,0.257431,0.798676,0.24405,0.73448,0.39278,0.850027,0.285485,0.625736,0.0839878,0.568641,0.0648167,0.367207,0.345707,0.791078,0.236223,0.0764486,0.956233,0.967211,0.701123,0.248365,0.793691,0.506489,0.241359,0.288056,0.811151,0.729859,0.556484,0.662314,0.101125,0.0319249,0.503966,0.762355,0.987678,0.205994,0.0399759,0.496875,0.381196,0.926002,0.192959,0.878268,0.33987,0.67326,0.252725,0.116195,0.609705,0.460459,0.386068,0.346072,0.596586,0.333437,0.446368,0.0914791,0.44534,0.891226,0.872742,0.979508,0.873826,0.315827,0.543213,0.0219507,0.797597,0.0129308,0.312217,0.0655512,0.167669,0.972116,0.58951,0.127557,0.72933,0.17429,0.773775,0.425948,0.95906,0.0201735,0.375584,0.7505,0.21973,0.462218,0.134992,0.251389,0.787183,0.811142,0.693051,0.111236,0.640642,0.367016,0.699964,0.0431812,0.377491,0.23209,0.140182,0.789185,0.724939,0.40148,0.157215,0.130754,0.337125,0.222716,0.136417,0.273598,0.389798,0.873638,0.0690241,0.253889,0.0794594,0.669941,0.35778,0.556985,0.64387,0.418473,0.833706,0.995449,0.265627,0.776623,0.918855,0.701573,0.336394,0.955744,0.53268,0.785181,0.139937,0.417434,0.878807,0.433778,0.104297,0.415345,0.312165,0.576446,0.588492,0.174947,0.197517,0.924569,0.589353,0.176949,0.248353,0.46616,0.66871,0.8649,0.632738,0.560342,0.736581,0.774544,0.267665,0.227307,0.394723,0.794993,|0.840349,0.685066,0.132832,0.523543,0.318077,0.02292,0.904622,0.93913,0.74907,0.50068,0.235133,0.190865,0.490357,0.647416,0.392018,0.09174,0.716749,0.696039,0.143095,0.88493,0.64834,0.81375,0.880887,0.883973,0.939395,0.449881,0.73034,0.600355,0.0318641,0.550865,0.0365185,0.593385,0.888794,0.55802,0.708612,0.576721,0.363319,0.8879,0.50502,0.770916,0.824977,0.812854,0.262635,0.102734,0.0106529,0.98452,0.079958,0.301241,0.593401,0.428389,0.691338,0.174031,0.631011,0.148954,0.337673,0.879498,0.877236,0.977776,0.480332,0.990275,0.907489,0.80142,0.695879,0.652739,0.957009,0.0884557,0.42498,0.365547,0.964755,0.418493,0.589991,0.622043,0.94386,0.795265,0.57487,0.948941,0.791559,0.940418,0.949257,0.694013,0.920028,0.102561,0.43229,0.684784,0.282822,0.626474,0.862569,0.867817,0.340426,0.591656,0.0620651,0.319902,0.510965,0.190171,0.243425,0.733457,0.964981,0.889085,0.979748,0.263399,0.849705,0.104292,0.705557,0.330944,0.459437,0.14599,0.00900334,0.223206,0.66259,0.735747,0.695193,0.912853,0.0107685,0.677042,0.850504,0.754604,0.47435,0.657493,0.461318,0.682677,0.442399,0.652713,0.953412,0.0224898,0.285975,0.69317,0.194227,0.931748,0.0571692,0.175979,0.823317,0.922302,0.84621,0.0573235,0.664461,0.670205,0.0222426,0.128336,0.0384057,0.345279,0.0596303,0.319666,0.785228,0.360245,0.300828,0.648904,0.521234,0.806606,0.778863,0.356729,0.214687,0.244538,0.195169,0.24989,0.324413,0.647776,0.0839536,0.27915,0.228731,0.155641,0.599649,0.193405,0.100914,0.788732,0.271821,0.735864,0.758195,0.18723,0.732025,0.541756,0.748824,0.530992,0.667119,0.823153,0.135283,0.423964,0.867125,0.32822,0.475344,0.323982,0.174606,0.517293,0.628111,0.27736,0.182477,0.314378,0.86742,0.795464,0.191603,0.21808,0.491063,0.377952,0.463511,0.55125,0.475577,0.189702,0.538586,0.138574,0.461632,0.659797,0.285763,0.362068,0.00790578,0.78865,0.662114,0.393923,0.436934,0.139711,0.123417,0.364524,0.669288,0.863725,0.741425,0.362894,0.941037,0.50196,0.716613,0.591518,0.532674,0.932929,0.0549737,0.850018,0.375305,0.518226,0.282881,0.620072,0.330763,0.144796,0.263136,0.648997,0.252931,0.88638,0.457292,0.385188,0.531708,0.289768,0.191642,0.54764,0.084913,0.905078,0.219994,0.251655,0.966063,0.387237,0.520991,0.929382,0.0960589,0.36358,0.815044,0.187813,0.683392,0.598099,0.608665,0.746841,0.232213,0.231922,0.0511338,0.827963,0.252071,0.980807,0.698655,0.0566123,0.996646,0.820912,0.948726,0.0136187,0.780393,0.68953,0.82634,0.261083,0.37414,0.0824856,0.12737,0.891995,0.245964,0.993666,0.192573,0.887124,0.4127,0.635226,0.523914,0.170381,0.172237,0.797036,0.0500979,0.0425583,0.380229,0.794012,0.137308,0.999097,0.0067907,0.0912004,0.407038,0.429849,0.265522,0.996886,0.289278,0.163643,0.804166,0.431021,0.0611474,0.851647,0.0411445,0.702851,0.792864,0.242824,0.693474,0.521237,0.686179,0.905699,0.359743,0.212643,0.992867,0.231614,0.485478,0.00761104,0.257425,0.869117,0.493689,0.55219,0.921791,0.261762,0.74189,0.332671,0.0629755,0.995956,0.523811,0.0437797,0.551664,0.0601935,0.195963,0.6045,0.299663,0.952479,0.79359,0.593223,0.0525053,0.178929,0.690164,0.534986,0.301591,0.133145,0.870438,0.292085,0.262178,0.761328,0.0207243,0.922755,0.821615,0.183607,0.101796,0.424219,0.256222,0.569587,0.080577,0.0360402,0.284818,0.578272,0.985987,0.151095,0.88672,0.846055,0.189869,0.516257,0.45845,0.22822,0.574562,0.706285,0.748653,0.143726,0.308346,0.59615,0.552243,0.260405,0.39872,0.711041,0.417196,0.789602,0.33317,0.558272,0.493497,0.352879,0.549368,0.300261,0.310338,0.620342,0.911743,0.36486,0.845493,0.0572715,0.907131,0.930443,0.247557,0.511163,0.215567,0.29605,0.281028,0.159253,0.35128,0.110221,0.619504,0.417589,0.246983,0.242769,0.458094,0.346005,0.492944,0.21403,0.990493,0.738372,0.606185,0.139341,0.432861,0.627261,0.369661,0.763982,0.337553,0.336561,0.15491,0.258282,0.769332,0.973684,0.594474,0.554731,0.00224656,0.992205,0.319427,0.0935545,0.909312,0.482997,0.702767,0.462846,0.683849,0.706299,0.168787,0.65854,0.466195,0.0238356,0.110118,0.571206,0.622058,0.602707,0.705204,0.562837,0.93637,0.653381,0.888026,0.727073,0.542092,0.37003,0.539227,0.689198,0.0723851,0.611021,0.499669,0.803637,0.224679,0.169273,0.459679,0.828542,0.079765,0.834468,0.770908,0.0522972,0.64605,0.193253,0.416595,0.204981,0.190012,0.589536,0.801796,0.334592,0.385022,0.432815,0.0104243,0.783037,0.923785,0.841113,0.68415,0.156428,0.721673,0.541157,0.231832,0.905085,0.245341,0.817307,0.501814,0.312756,0.569651,0.205747,0.616973,0.808189,0.695209,0.135,0.821452,0.0621886,0.510271,0.497959,0.701976,0.87939,0.609912,0.592558,0.940017,0.248022,0.835015,0.673539,0.276884,0.541781,0.872723,0.503651,0.358841,0.117149,0.875978,0.515891,0.684412,0.190827,0.279438,0.374501,0.591038,0.927604,0.289319,0.968663,0.974951,0.118831,0.165086,0.224135,0.0347241,0.660418,0.754818,0.152381,0.703602,0.0349209,0.0348864,0.362403,0.918699,0.465234,0.534588,0.237138,0.538328,0.660218,0.0394298,0.612673,0.983085,0.826605,0.75836,0.123854,0.45775,0.267812,0.909752,0.295748,0.287163,0.803578,0.205176,0.754201,0.929585,0.0793311,0.888216,0.201116,0.201117,0.108582,0.939601,0.593851,0.408773,0.657974,0.86308,0.828879,0.485607,0.990267,0.352243,0.359835,0.394177,0.141882,0.591725,0.0833008,0.881199,0.49389,0.32037,0.129355,0.394422,0.37647,0.055297,0.826975,0.460323,0.830719,0.746601,0.661207,0.328333,0.777357,0.217329,0.706617,0.0105793,0.594616,0.391129,0.646448,0.325349,0.167319,0.773751,0.959827,0.704484,0.912685,0.61287,0.938416,0.629672,0.0727916,0.986074,0.918367,0.0707934,0.638627,0.99983,0.875964,0.0602109,0.0297535,0.861262,0.08996,0.458669,0.281245,0.355762,0.209293,0.480108,0.147875,0.14203,0.355643,0.263163,0.0836614,0.928417,0.774282,0.264226,0.501358,0.104536,0.552684,0.374834,0.884567,0.711824,0.613021,0.39292,0.0196785,0.585696,0.264827,0.999438,0.654592,0.0846035,0.30025,0.449298,0.895834,0.822185,0.522827,0.201105,0.906346,0.853465,0.513307,0.60131,0.163676,0.372182,0.296949,0.481786,0.564743,0.123641,0.784506,0.864551,0.851381,0.501763,0.169833,0.845216,0.461869,0.779646,0.178349,0.099322,0.496125,0.756445,0.0306264,0.389215,0.35483,0.0408118,0.844352,0.673132,0.900442,0.809042,0.437313,0.656629,0.69242,0.636288,0.451123,0.735214,0.729478,0.868204,0.594988,0.807241,0.147534,0.467117,0.93743,0.986005,0.37237,0.435793,0.575646,0.388187,0.0741042,0.763378,0.677902,0.503652,0.954128,0.391516,0.691863,0.81146,0.017715,0.534837,0.286141,0.727943,0.497393,0.280907,0.360088,0.907159,0.209163,0.975477,0.397589,0.889958,0.594718,0.425664,0.342087,0.878757,0.37691,0.508563,0.374577,0.937682,0.118723,0.557874,0.664195,0.225502,0.105056,0.0545123,0.0373802,0.850098,0.965235,0.624307,0.235611,0.114481,0.749677,0.452751,0.0493211,0.956353,0.211638,0.56964,0.0258918,0.827909,0.74233,0.22758,0.442251,0.474482,0.359109,0.455595,0.686258,0.0376271,0.337177,0.346302,0.201366,0.583553,0.578241,0.990403,0.74768,0.568259,0.679829,0.10734,0.033306,0.504655,0.712664,0.632048,0.454475,0.102562,0.519756,0.97472,0.390324,0.0706325,0.703757,0.581552,0.846961,0.449034,0.047811,0.601476,0.843622,0.524259,0.67934,0.242177,0.432738,0.328714,0.122906,0.311061,0.116839,0.396227,0.958548,0.616313,0.151568,0.47597,0.149114,0.838599,0.0314366,0.192139,0.350233,0.155342,0.356846,0.229462,0.531983,0.360156,0.686499,0.103248,0.651444,0.111612,0.549742,0.381866,0.68497,0.482802,0.481663,0.601318,0.206367,0.696321,0.146665,0.715644,0.0656002,0.0523884,0.467886,0.471426,0.176518,0.572498,0.708732,0.513699,0.300459,0.575616,0.0953553,0.889751,0.401074,0.654286,0.909727,0.618154,0.707869,0.566777,0.704993,0.378966,0.92486,0.734691,0.751683,0.106573,0.697986,0.909396,0.91684,0.37924,0.202222,0.796245,0.858256,0.422833,0.675917,0.360966,0.567971,0.770451,0.125671,0.175038,0.765825,0.933918,0.00917256,0.715485,0.278815,0.670257,0.47234,0.0220254,0.773395,0.269695,0.136149,0.965072,0.0522116,0.829938,0.359619,0.651726,0.728017,0.0284679,0.974128,0.335661,0.023671,0.248345,0.144849,0.266081,0.063793,0.0367029,0.835577,0.0955579,0.958442,0.849434,0.0247635,0.588341,0.704207,0.772885,0.066855,0.610064,0.805575,0.233316,0.280643,0.995889,0.543398,0.242015,0.209101,0.885243,0.0589825,0.403569,0.187181,0.797408,0.689261,0.148318,0.955382,0.285399,0.282281,0.0940661,0.712859,0.398206,0.646788,0.160348,0.0512193,0.237,0.413211,0.591612,0.884692,0.50308,0.639405,0.422463,0.884049,0.914462,0.00832355,0.434419,0.377102,0.693871,0.163297,0.645184,0.0205783,0.798842,0.586378,0.642304,0.286458,0.306602,0.052501,0.703322,0.745452,0.186837,0.777101,0.139915,0.439355,0.971967,0.0484685,0.404673,0.678069,0.605152,0.899663,0.388294,0.338718,0.457209,0.39481,0.605319,0.520518,0.849987,0.662449,0.575267,0.108178,0.729615,0.645897,0.507434,0.368675,0.805188,0.331185,0.935786,0.0756558,0.849851,0.341819,0.862441,0.487964,0.766692,0.340432,0.988816,0.85284,0.682703,0.483414,0.67707,0.68605,0.254617,0.325822,0.899695,0.32483,0.847277,0.387895,0.403461,0.0552632,0.092144,0.241049,0.0297819,0.783962,0.0892038,0.363286,0.799515,0.307666,0.615308,0.30578,0.0141892,0.0179296,0.897867,0.707963,0.60861,0.104966,|0.0997118,0.0658655,0.851699,0.925171,0.645644,0.215295,0.745989,0.0127562,0.490648,0.43224,0.756199,0.649241,0.174827,0.142885,0.767948,0.600961,0.596912,0.95853,0.156012,0.206718,0.429117,0.136901,0.708169,0.407073,0.277607,0.619518,0.377623,0.320628,0.153997,0.223195,0.0572053,0.289066,0.606063,0.850042,0.405735,0.877723,0.666908,0.216408,0.774548,0.405834,0.506278,0.15715,0.316657,0.808515,0.825665,0.0273226,0.993519,0.131158,0.911988,0.298216,0.267422,0.655381,0.465104,0.647795,0.367598,0.0253979,0.0366655,0.444017,0.949484,0.0699354,0.330682,0.337443,0.825928,0.119964,0.197397,0.912002,0.809879,0.734336,0.383653,0.423296,0.334853,0.879519,0.634573,0.53807,0.0559391,0.266243,0.908711,0.0280318,0.907674,0.679654,0.383542,0.64092,0.919014,0.0204561,0.299108,0.93159,0.740206,0.458285,0.889011,0.54625,0.809341,0.182026,0.313424,0.326237,0.00598091,0.422235,0.938731,0.65291,0.124408,0.268308,0.920401,0.602067,0.693302,0.54683,0.134789,0.655955,0.677386,0.936462,0.383563,0.406627,0.688258,0.058333,0.55642,0.734857,0.503091,0.836569,0.519507,0.859343,0.321803,0.776602,0.828408,0.80313,0.111816,0.827524,0.274811,0.220895,0.824353,0.622834,0.524959,0.77515,0.508692,0.367008,0.669469,0.167318,0.422258,0.952393,0.470161,0.606447,0.778332,0.493029,0.760716,0.440464,0.202817,0.522501,0.591807,0.741094,0.798924,0.57298,0.594255,0.542351,0.725011,0.242832,0.406303,0.391218,0.00949585,0.931918,0.616609,0.650486,0.665759,0.284472,0.684748,0.565735,0.910653,0.663196,0.108185,0.911476,0.858306,0.589092,0.804346,0.070456,0.380227,0.00924158,0.742035,0.00267994,0.589455,0.0786031,0.502511,0.519407,0.532301,0.833413,0.614184,0.139216,0.0305498,0.301278,0.508512,0.056205,0.427368,0.140956,0.746626,0.590444,0.12477,0.185522,0.3258,0.866925,0.6765,0.537988,0.638845,0.0453654,0.323039,0.334246,0.237595,0.0486646,0.627946,0.498412,0.823173,0.927759,0.795891,0.161008,0.496595,0.288933,0.211007,0.880329,0.240564,0.609484,0.900499,0.119928,0.00750697,0.668584,0.962913,0.753753,0.498077,0.544868,0.301426,0.623627,0.383201,0.245161,0.266667,0.858271,0.408505,0.91277,0.94356,0.486938,0.952295,0.81509,0.19773,0.0400295,0.127069,0.573696,0.637806,0.780509,0.659139,0.291376,0.456061,0.457463,0.716732,0.085217,0.630667,0.0528358,0.399652,0.588412,0.643201,0.596547,0.363871,0.426047,0.49563,0.265275,0.58138,0.456473,0.645102,0.710994,0.121401,0.835847,0.275761,0.767328,0.361191,0.833015,0.76124,0.0820787,0.928273,0.64244,0.106304,0.767985,0.269626,0.704069,0.734744,0.807185,0.457586,0.653482,0.792286,0.726612,0.00189441,0.882585,0.0486231,0.867393,0.398175,0.573489,0.204087,0.545376,0.44646,0.00937223,0.885185,0.952714,0.0961529,0.747576,0.981163,0.870415,0.420409,0.64079,0.888133,0.283161,0.76388,0.370122,0.819338,0.475783,0.819749,0.975242,0.663068,0.582955,0.327163,0.697879,0.363806,0.619823,0.533312,0.44242,0.166499,0.977256,0.875732,0.636222,0.856002,0.801833,0.673684,0.095695,0.661576,0.297655,0.0532912,0.0451795,0.56918,0.391786,0.0597163,0.58077,0.91977,0.809671,0.281483,0.0412439,0.105733,0.310086,0.654021,0.817785,0.603663,0.230539,0.30369,0.991942,0.99107,0.463156,0.111522,0.8091,0.859999,0.948251,0.747278,0.948495,0.255489,0.109798,0.947041,0.80212,0.076043,0.0238494,0.598492,0.942657,0.83506,0.22928,0.758047,0.288625,0.5062,0.103675,0.966821,0.94701,0.378763,0.74755,0.825059,0.724089,0.694169,0.697419,0.38821,0.345043,0.618757,0.216418,0.173662,0.0446747,0.426961,0.541019,0.230584,0.394109,0.0547812,0.542134,0.945194,0.563229,0.614369,0.0589789,0.281837,0.300107,0.601889,0.78396,0.918561,0.696599,0.748885,0.415252,0.589255,0.93754,0.0720217,0.252903,0.771083,0.668814,0.307158,0.374664,0.886326,0.274093,0.263086,0.17911,0.794959,0.635823,0.254777,0.969247,0.893284,0.518449,0.916048,0.855145,0.311703,0.724056,0.978987,0.0312788,0.121054,0.252686,0.413627,0.00196737,0.69742,0.0924407,0.893121,0.89014,0.436166,0.200387,0.656368,0.375522,0.350165,0.23601,0.0110062,0.0099988,0.472662,0.152065,0.318758,0.888574,0.486279,0.235829,0.73885,0.341018,0.680998,0.876848,0.428385,0.85351,0.390363,0.309069,0.108701,0.595718,0.426564,0.926369,0.0181133,0.982349,0.209776,0.757847,0.421317,0.0977169,0.464864,0.683625,0.735795,0.824578,0.60873,0.178424,0.0870772,0.55909,0.275175,0.796238,0.104339,0.327881,0.927887,0.833458,0.579203,0.662245,0.51138,0.202695,0.0440169,0.395186,0.36513,0.276518,0.806398,0.555593,0.540357,0.308387,0.264768,0.486493,0.117001,0.183452,0.361321,0.216489,0.436119,0.0647983,0.822239,0.28045,0.967999,0.893134,0.781166,0.661145,0.093694,0.412369,0.865194,0.598102,0.623775,0.850047,0.572792,0.899266,0.72859,0.681528,0.0195884,0.569399,0.454481,0.445696,0.713312,0.464192,0.02597,0.535484,0.820204,0.887833,0.127682,0.651553,0.902876,0.274414,0.545308,0.459275,0.313204,0.928407,0.279012,0.879925,0.956661,0.779015,0.547431,0.552101,0.0703155,0.798433,0.0628597,0.218097,0.773182,0.632542,0.23661,0.708199,0.00390106,0.113472,0.139862,0.88031,0.730746,0.318408,0.0742453,0.641349,0.00379986,0.659005,0.16732,0.628353,0.160011,0.984033,0.997694,0.140398,0.779207,0.463688,0.957674,0.506691,0.954633,0.545245,0.280163,0.00336891,0.433254,0.185876,0.0626315,0.885469,0.202592,0.125345,0.868148,0.55817,0.927515,0.188712,0.386562,0.43277,0.942735,0.302926,0.278272,0.755015,0.58136,0.52578,0.916528,0.701085,0.44878,0.468006,0.161514,0.543726,0.564683,0.559819,0.764835,0.746781,0.698329,0.112405,0.943935,0.48653,0.866934,0.867929,0.6798,0.121674,0.133539,0.152061,0.234324,0.782863,0.0919412,0.55448,0.658998,0.634499,0.28863,0.170021,0.100169,0.323789,0.218232,0.48872,0.427318,0.483248,0.120252,0.514726,0.589567,0.0251673,0.826938,0.0699971,0.346867,0.204358,0.52902,0.240659,0.292101,0.253144,0.79983,0.0481121,0.212156,0.744579,0.0955762,0.778177,0.565267,0.325711,0.452924,0.936955,0.193984,0.255684,0.78676,0.244171,0.882637,0.843807,0.39119,0.492195,0.411083,0.874811,0.236818,0.0502521,0.0177075,0.962227,0.217537,0.534202,0.561462,0.220685,0.566378,0.317698,0.999968,0.893968,0.763545,0.926278,0.697906,0.932082,0.641561,0.267562,0.0920721,0.114665,0.196123,0.502349,0.482854,0.266231,0.315652,0.250881,0.529181,0.604383,0.470647,0.568996,0.26844,0.125367,0.346631,0.228097,0.351997,0.113637,0.821323,0.843906,0.954133,0.572719,0.453425,0.803505,0.832558,0.192446,0.0695076,0.753373,0.149918,0.0665702,0.985347,0.827195,0.434712,0.945446,0.38834,0.173739,0.470078,0.603871,0.496384,0.969277,0.196811,0.734322,0.81233,0.516603,0.250753,0.162386,0.700062,0.773979,0.605517,0.0487828,0.718904,0.684692,0.269501,0.104474,0.824845,0.510974,0.374361,0.623256,0.00466955,0.831793,0.689072,0.698898,0.146644,0.912824,0.334873,0.0300286,0.550273,0.748346,0.0059799,0.627709,0.106796,0.880925,0.354822,0.244452,0.760277,0.265665,0.693053,0.833369,0.116401,0.0567035,0.263528,0.159459,0.671456,0.658079,0.759061,0.5068,0.0979478,0.295796,0.460043,0.734378,0.159297,0.784223,0.670152,0.908052,0.698591,0.22114,0.22487,0.670872,0.900879,0.927601,0.00104237,0.912388,0.387684,0.676694,0.543467,0.286471,0.477307,0.956936,0.628776,0.834589,0.386448,0.223235,0.999512,0.968129,0.935417,0.530312,0.772744,0.760758,0.890789,0.922837,0.729588,0.772519,0.324675,0.500705,0.0338152,0.13572,0.745577,0.271772,0.0904846,0.192924,0.506715,0.00519538,0.0263271,0.57819,0.588499,0.962783,0.492524,0.351785,0.63573,0.222902,0.682686,0.382599,0.470856,0.909567,0.85195,0.926885,0.322737,0.826943,0.479973,0.759724,0.945365,0.0866888,0.387616,0.575373,0.64287,0.258966,0.666314,0.97544,0.580206,0.81632,0.118835,0.0248911,0.0617977,0.582579,0.0279161,0.593023,0.576908,0.407433,0.0198327,0.775425,0.877026,0.340641,0.941479,0.459614,0.844237,0.155987,0.343594,0.481104,0.34088,0.472755,0.629967,0.740299,0.00419223,0.460991,0.687125,0.315464,0.930784,0.071808,0.667737,0.97537,0.67222,0.245675,0.639146,0.765904,0.3885,0.934056,0.0630093,0.219705,0.368495,0.477786,0.908835,0.774976,0.0432492,0.447939,0.911153,0.365842,0.240937,0.930817,0.327966,0.243459,0.384991,0.658204,0.816385,0.545022,0.763006,0.298092,0.202438,0.655981,0.900879,0.210076,0.278086,0.96783,0.97606,0.114773,0.258411,0.540138,0.535438,0.170841,0.288192,0.791224,0.203111,0.453177,0.635842,0.750795,0.149631,0.319508,0.0183628,0.749022,0.0813712,0.376676,0.909298,0.0318586,0.829454,0.253561,0.697073,0.260359,0.703567,0.948471,0.756472,0.0310785,0.602047,0.250918,0.374472,0.3017,0.342977,0.109913,0.197155,0.566349,0.758217,0.612355,0.675445,0.524052,0.618604,0.390459,0.721098,0.192444,0.335709,0.319977,0.463803,0.271761,0.781433,0.820404,0.244906,0.439977,0.0443599,0.273501,0.662931,0.834917,0.165252,0.778762,0.0906182,0.130862,0.319193,0.671726,0.586062,0.151767,0.307815,0.666778,0.752705,0.38644,0.451324,0.264894,0.90858,0.524479,0.0378968,0.916558,0.12567,0.422656,0.33545,0.0874521,0.596506,0.542407,0.377511,0.458339,0.95539,0.202226,0.369962,0.545368,0.188773,0.945353,0.430734,0.776618,0.0641298,0.489602,0.0555773,0.158684,0.770228,0.586187,0.055393,0.325801,0.13692,0.265784,0.728434,0.482074,0.888476,0.819562,0.522195,0.296531,0.223463,0.937582,0.0758263,0.951046,|0.610148,0.559953,0.396833,0.630147,0.867091,0.272675,0.62832,0.889557,0.717469,0.393167,0.432974,0.361186,0.789013,0.440787,0.968078,0.525024,0.915109,0.581327,0.187476,0.983682,0.503226,0.80747,0.356342,0.596019,0.90444,0.211629,0.498662,0.0560125,0.0102736,0.904546,0.798951,0.458233,0.669819,0.794208,0.275133,0.101642,0.0831116,0.507767,0.634106,0.271077,0.116814,0.450395,0.126041,0.176849,0.0399302,0.0391626,0.952789,0.634883,0.544713,0.448858,0.97131,0.0799121,0.938857,0.969737,0.6092,0.954125,0.934368,0.0422661,0.399922,0.474631,0.00967431,0.417798,0.673035,0.222572,0.127968,0.647384,0.588688,0.378149,0.903644,0.428334,0.302635,0.46873,0.0110524,0.541266,0.508917,0.316798,0.663413,0.0431071,0.434325,0.0609081,0.392231,0.444187,0.0518883,0.919116,0.518066,0.491957,0.607499,0.338117,0.724055,0.695745,0.354907,0.932378,0.966774,0.367096,0.690022,0.188015,0.881149,0.200374,0.602026,0.057797,0.0881411,0.865685,0.386058,0.0545952,0.35083,0.754208,0.837802,0.202244,0.0529032,0.412383,0.775035,0.330512,0.642415,0.916372,0.743416,0.449553,0.613092,0.287251,0.475749,0.304298,0.888655,0.508547,0.158463,0.4264,0.0981085,0.993987,0.594995,0.188995,0.0510367,0.574288,0.763994,0.253607,0.814711,0.205993,0.381371,0.0343955,0.764898,0.48645,0.15578,0.0981712,0.0175202,0.86856,0.0319703,0.967224,0.633357,0.611611,0.643931,0.563755,0.773135,0.101533,0.822471,0.865034,0.327336,0.103558,0.217381,0.687987,0.283758,0.160542,0.462173,0.776216,0.438754,0.459093,0.48382,0.615076,0.0965099,0.307971,0.461794,0.424472,0.412561,0.511468,0.14534,0.793548,0.268909,0.279798,0.197231,0.683899,0.159403,0.0198415,0.0163047,0.650257,0.926077,0.837725,0.216076,0.397185,0.0880212,0.761172,0.236248,0.381902,0.195072,0.242405,0.632987,0.029295,0.889273,0.436946,0.366224,0.252789,0.432269,0.981405,0.304228,0.801612,0.732643,0.560841,0.948227,0.88462,0.876243,0.25701,0.181153,0.71541,0.129331,0.0865083,0.432438,0.759581,0.255126,0.0126415,0.953179,0.388157,0.987715,0.423924,0.984366,0.554404,0.130557,0.0693322,0.8897,0.30671,0.37094,0.937351,0.349419,0.904982,0.617055,0.0590181,0.596498,0.000123322,0.16588,0.296813,0.992112,0.229307,0.813048,0.20586,0.525896,0.34706,0.44891,0.236439,0.978404,0.435523,0.503513,0.286359,0.501529,0.690933,0.00784719,0.398679,0.547953,0.517319,0.935825,0.242929,0.410757,0.724347,0.536454,0.0839601,0.603612,0.609227,0.809517,0.420102,0.770971,0.800147,0.422703,0.00585461,0.291594,0.622509,0.38232,0.928088,0.65809,0.925638,0.116617,0.247299,0.849489,0.147391,0.358482,0.477027,0.552104,0.706027,0.175356,0.473041,0.669522,0.52793,0.520493,0.46868,0.335472,0.645061,0.920325,0.359459,0.0580093,0.209259,0.392278,0.42634,0.458159,0.626538,0.00974423,0.0259086,0.205424,0.235729,0.633985,0.212507,0.0722879,0.231772,0.860699,0.241753,0.222036,0.811597,0.875264,0.462421,0.700737,0.821987,0.674681,0.533393,0.154539,0.704938,0.387943,0.667513,0.494864,0.955041,0.536939,0.682541,0.744673,0.664529,0.309009,0.491568,0.412619,0.559122,0.257903,0.157076,0.0320641,0.500797,0.185013,0.165704,0.854783,0.209365,0.964555,0.678691,0.691207,0.138853,0.658299,0.993496,0.916977,0.0962245,0.110802,0.57496,0.918385,0.2903,0.937399,0.364882,0.281959,0.899225,0.427809,0.207862,0.440567,0.977052,0.274576,0.105231,0.878146,0.0114297,0.342521,0.680307,0.379326,0.425786,0.323266,0.695749,0.0699787,0.0438989,0.888265,0.103341,0.741143,0.747789,0.0643649,0.913582,0.331305,0.326166,0.0606312,0.745802,0.113419,0.755922,0.191296,0.86989,0.503529,0.21153,0.984634,0.708512,0.990291,0.0818953,0.363541,0.107972,0.681684,0.237777,0.102114,0.186163,0.607087,0.329983,0.556069,0.511071,0.524585,0.462388,0.0754059,0.674411,0.275041,0.540874,0.797895,0.923549,0.755225,0.621,0.695807,0.552832,0.395674,0.91491,0.871744,0.0964547,0.429519,0.37891,0.920524,0.855243,0.302211,0.988491,0.711173,0.955583,0.882601,0.369002,0.676577,0.889121,0.405342,0.0965275,0.993967,0.0134023,0.780087,0.542981,0.248298,0.488125,0.628538,0.405286,0.29207,0.752195,0.892033,0.121127,0.233826,0.531225,0.924907,0.417349,0.480149,0.859753,0.128795,0.95109,0.290574,0.445964,0.726068,0.94415,0.0755693,0.700973,0.768438,0.874966,0.644173,0.167679,0.30407,0.706401,0.0210085,0.977534,0.417861,0.784905,0.875425,0.55644,0.914832,0.424541,0.488468,0.453796,0.23325,0.520788,0.9638,0.704879,0.913669,0.550707,0.928519,0.392211,0.897497,0.97229,0.996885,0.638226,0.835215,0.752626,0.325596,0.972442,0.171571,0.225389,0.154326,0.922912,0.375628,0.443968,0.880997,0.0894921,0.279035,0.839851,0.150908,0.946912,0.712536,0.976761,0.980815,0.734348,0.394489,0.176587,0.490205,0.622981,0.916965,0.0703207,0.0523669,0.878055,0.811431,0.43267,0.771671,0.00485975,0.975577,0.202188,0.311268,0.517519,0.793905,0.10224,0.439806,0.511775,0.225291,0.49776,0.102253,0.914549,0.798567,0.828149,0.527052,0.116472,0.0360647,0.292392,0.490125,0.902688,0.0882893,0.1532,0.776288,0.476448,0.811754,0.585033,0.793473,0.756268,0.626164,0.466038,0.322079,0.823127,0.190752,0.664107,0.386418,0.772646,0.224292,0.0592051,0.582378,0.20953,0.982456,0.957909,0.0111567,0.580601,0.59393,0.909145,0.0143178,0.76877,0.839254,0.538102,0.479922,0.42625,0.893156,0.303097,0.929511,0.441534,0.864332,0.71735,0.188307,0.58422,0.253969,0.585879,0.772064,0.405322,0.397834,0.580955,0.311314,0.975562,0.983417,0.991341,0.955802,0.453994,0.785518,0.79568,0.0757613,0.789127,0.791891,0.0105885,0.560088,0.237932,0.852359,0.241789,0.49785,0.71457,0.963156,0.19425,0.328147,0.487591,0.748528,0.671388,0.248116,0.827187,0.735056,0.709765,0.136857,0.435152,0.00336081,0.136834,0.630396,0.562575,0.163021,0.817881,0.211291,0.27585,0.607184,0.148168,0.207994,0.612117,0.146162,0.00480664,0.494347,0.773187,0.638589,0.255023,0.714448,0.439083,0.0367529,0.723939,0.327966,0.997591,0.226889,0.854608,0.091594,0.918721,0.0591139,0.767892,0.905539,0.257922,0.53281,0.105351,0.213421,0.728329,0.382189,0.185997,0.681737,0.967156,0.891414,0.819913,0.405412,0.856556,0.552929,0.305597,0.875962,0.0641224,0.191574,0.885615,0.297201,0.153334,0.319234,0.150303,0.0275176,0.227524,0.807504,0.149473,0.355518,0.0221093,0.328195,0.800254,0.70917,0.554804,0.746471,0.376692,0.30011,0.596348,0.736507,0.867278,0.369424,0.582682,0.0474269,0.557928,0.870749,0.22601,0.0304111,0.923329,0.915072,0.858889,0.335894,0.45481,0.717109,0.343743,0.0265079,0.986712,0.146703,0.886198,0.390249,0.102046,0.250957,0.805484,0.874605,0.10882,0.643329,0.820508,0.292439,0.17784,0.281957,0.647096,0.275333,0.503034,0.929492,0.0450885,0.214715,0.494994,0.0310996,0.767971,0.838081,0.905364,0.0751844,0.804772,0.532836,0.97313,0.159135,0.573342,0.607966,0.592623,0.824191,0.599841,0.438442,0.633793,0.108738,0.108296,0.0646647,0.485668,0.847802,0.453762,0.26295,0.549347,0.248046,0.0158604,0.430939,0.372878,0.977158,0.264045,0.955566,0.903462,0.88719,0.00293273,0.155028,0.695155,0.206691,0.811414,0.958503,0.982969,0.645889,0.464838,0.540234,0.5261,0.102373,0.143219,0.071058,0.944341,0.703001,0.10653,0.34702,0.629734,0.37577,0.133954,0.23625,0.971832,0.108738,0.660101,0.970698,0.398885,0.733147,0.766602,0.669976,0.82135,0.410843,0.110735,0.360149,0.638173,0.795379,0.658529,0.706118,0.402233,0.922856,0.0012821,0.411945,0.716297,0.178444,0.475655,0.397841,0.196141,0.520669,0.127482,0.625344,0.168891,0.126653,0.968219,0.716919,0.884441,0.0587031,0.720356,0.710257,0.137201,0.260473,0.286564,0.993922,0.217573,0.0926988,0.469114,0.772241,0.0217983,0.121306,0.423531,0.0993298,0.956878,0.82709,0.895114,0.283557,0.394711,0.338122,0.506527,0.654046,0.247125,0.677884,0.586396,0.91406,0.374784,0.850107,0.701051,0.0460192,0.212545,0.666211,0.876315,0.143858,0.366802,0.61682,0.338089,0.0174978,0.387764,0.185103,0.652033,0.669286,0.940212,0.685091,0.0382211,0.286853,0.895916,0.442727,0.767817,0.976553,0.566437,0.672182,0.78361,0.0622892,0.856481,0.302026,0.787619,0.828205,0.644491,0.704208,0.150594,0.872731,0.506389,0.626132,0.788398,0.293641,0.768789,0.790555,0.469987,0.10661,0.282085,0.383675,0.159586,0.323693,0.182853,0.448253,0.723313,0.858799,0.0251969,0.546461,0.614566,0.762488,0.680385,0.610014,0.735663,0.446351,0.343462,0.988058,0.411066,0.128036,0.239468,0.953876,0.190599,0.715256,0.633888,0.483777,0.374251,0.834488,0.145159,0.482836,0.349522,0.575655,0.00275755,0.686893,0.980963,0.425371,0.921915,0.763963,0.0581588,0.473772,0.383465,0.982895,0.924304,0.303607,0.677017,0.519896,0.33165,0.827843,0.40979,0.854222,0.0575385,0.0190848,0.0668616,0.43509,0.303105,0.51816,0.00697416,0.00444341,0.707292,0.452938,0.330651,0.800227,0.0511521,0.585055,0.878005,0.230795,0.686448,0.865174,0.0651312,0.57279,0.00697917,0.470572,0.967009,0.0611607,0.360099,0.845501,0.955125,0.493651,0.60925,0.865042,0.824062,0.726423,0.473191,0.850809,0.724413,0.206553,0.440073,0.6629,0.291989,0.23867,0.0587649,0.777448,0.977606,0.123777,0.779519,0.14235,0.451527,0.937193,0.914179,0.302707,0.274315,0.267427,0.404295,0.807411,0.169575,0.373597,0.812246,0.712521,0.620814,0.689291,0.372441,0.516288,0.44099,0.351435,0.601258,0.745616,0.941446,0.489715,0.724114,0.531133,0.0384845,0.804527,0.0366566,0.576187,0.229687,|0.112455,0.241688,0.420918,0.251378,0.12716,0.85039,0.245121,0.660899,0.211909,0.524865,0.0397705,0.287991,0.268782,0.728265,0.717989,0.802908,0.489035,0.569483,0.200445,0.131029,0.224644,0.118476,0.0665656,0.00640637,0.944415,0.424577,0.129975,0.0157856,0.770007,0.999379,0.598565,0.688178,0.998244,0.205306,0.0750135,0.130848,0.660229,0.331369,0.875728,0.790943,0.252497,0.152507,0.910303,0.774507,0.469746,0.519012,0.339426,0.924506,0.501898,0.727369,0.0460852,0.564565,0.0513305,0.276015,0.919635,0.897142,0.937047,0.236595,0.0647542,0.685684,0.269746,0.724997,0.00775284,0.264884,0.36024,0.518269,0.66383,0.0927871,0.234812,0.841149,0.461809,0.0938603,0.936686,0.674552,0.139218,0.0688861,0.28775,0.863172,0.970491,0.874365,0.878477,0.156813,0.362336,0.82188,0.198,0.159697,0.115519,0.450066,0.540061,0.594368,0.7439,0.588001,0.414473,0.690929,0.768759,0.730146,0.35997,0.237202,0.564666,0.225705,0.79118,0.543653,0.354254,0.60492,0.880389,0.353326,0.63992,0.101799,0.868339,0.374835,0.336641,0.228513,0.145798,0.755989,0.0619888,0.0933297,0.737585,0.869823,0.50554,0.649109,0.706679,0.157052,0.0605428,0.0300238,0.833959,0.670283,0.867417,0.836342,0.478035,0.621411,0.305299,0.904905,0.938955,0.12809,0.705966,0.480427,0.805023,0.584865,0.591059,0.444556,0.484794,0.700321,0.501101,0.110539,0.130599,0.24606,0.714373,0.17719,0.252715,0.222615,0.629392,0.135357,0.773439,0.951531,0.842942,0.466926,0.521748,0.560452,0.563326,0.525599,0.835155,0.296539,0.724085,0.744865,0.32684,0.191587,0.99442,0.291441,0.0938571,0.691848,0.556788,0.848893,0.762207,0.795197,0.37446,0.255578,0.108755,0.673546,0.399725,0.313842,0.585922,0.0594127,0.50988,0.480416,0.073747,0.626268,0.738804,0.530376,0.44939,0.652171,0.164191,0.87934,0.515225,0.962048,0.443715,0.66915,0.667215,0.580997,0.124863,0.245233,0.302673,0.343511,0.30471,0.0988858,0.644322,0.954684,0.455881,0.329132,0.574724,0.990555,0.461483,0.830156,0.527665,0.349711,0.918277,0.0259738,0.938243,0.901516,0.326452,0.939463,0.328146,0.334758,0.988345,0.0942775,0.716461,0.991551,0.149628,0.0185326,0.353033,0.165797,0.144398,0.849893,0.790406,0.722043,0.666094,0.289144,0.950978,0.0680736,0.220756,0.0358738,0.0448115,0.061983,0.326923,0.820111,0.393832,0.484316,0.792816,0.760623,0.916674,0.891272,0.559255,0.268736,0.363884,0.637075,0.449775,0.580713,0.614126,0.567128,0.0705392,0.505967,0.00890362,0.761633,0.355405,0.452449,0.352861,0.242914,0.564894,0.915554,0.0898191,0.47035,0.383247,0.337307,0.0117065,0.932064,0.757382,0.0933903,0.309051,0.354783,0.238115,0.675812,0.598259,0.688443,0.375212,0.536546,0.183356,0.709953,0.773707,0.29433,0.916005,0.382893,0.922085,0.984099,0.398792,0.107831,0.45137,0.189909,0.952672,0.839895,0.959489,0.434698,0.0552034,0.565081,0.536378,0.882306,0.94798,0.94132,0.532477,0.595634,0.75905,0.735998,0.880856,0.325117,0.953557,0.353312,0.229956,0.828294,0.385916,0.554553,0.1222,0.317612,0.393009,0.745207,0.00204039,0.233198,0.0492074,0.24848,0.966909,0.74139,0.0717247,0.700284,0.198503,0.110465,0.988063,0.508383,0.155778,0.713152,0.0971378,0.14391,0.788016,0.354144,0.219407,0.224314,0.115653,0.814546,0.982567,0.661355,0.13234,0.787625,0.818382,0.486223,0.460559,0.280974,0.60661,0.674004,0.244731,0.869281,0.410943,0.233368,0.849811,0.633482,0.994383,0.301418,0.912619,0.55537,0.0138993,0.0482231,0.151041,0.574075,0.0520871,0.0987683,0.808645,0.373947,0.771021,0.789608,0.789425,0.284183,0.994538,0.292153,0.687368,0.0526978,0.764222,0.782086,0.652894,0.812317,0.844951,0.295223,0.474103,0.881913,0.119423,0.533346,0.632182,0.498262,0.846948,0.0197536,0.0378693,0.0747241,0.77271,0.81175,0.873645,0.291087,0.980279,0.670879,0.923681,0.0850863,0.0557158,0.729386,0.171485,0.767678,0.295724,0.0144684,0.55585,0.659352,0.596331,0.766789,0.585141,0.144015,0.975127,0.422439,0.838143,0.0466666,0.515661,0.694659,0.660704,0.0545223,0.491722,0.059549,0.0743716,0.776773,0.641744,0.427402,0.549367,0.834615,0.31862,0.152535,0.073033,0.876561,0.411767,0.725167,0.488227,0.850215,0.897743,0.656569,0.148629,0.484312,0.896732,0.851076,0.35088,0.64097,0.604349,0.657659,0.602078,0.357545,0.464951,0.229516,0.859053,0.61267,0.0125334,0.535574,0.0624335,0.746298,0.362038,0.134728,0.196293,0.537105,0.366518,0.423554,0.702772,0.0300344,0.518816,0.900981,0.488041,0.819482,0.669164,0.933918,0.215919,0.841274,0.212673,0.694301,0.494128,0.0263066,0.618261,0.580128,0.763984,0.6868,0.0773014,0.557986,0.114073,0.714435,0.548456,0.843643,0.658027,0.11067,0.748154,0.132972,0.847926,0.913206,0.89154,0.186993,0.404965,0.308189,0.493571,0.41804,0.45335,0.296811,0.386664,0.484129,0.779396,0.0989997,0.597657,0.16162,0.150755,0.844385,0.338036,0.314728,0.346233,0.144662,0.784842,0.0667449,0.301834,0.939784,0.411663,0.530893,0.901954,0.629704,0.855432,0.786729,0.545101,0.975872,0.807674,0.356677,0.723832,0.720535,0.646374,0.25851,0.565687,0.624768,0.401937,0.577417,0.376363,0.985837,0.195866,0.997924,0.00797045,0.667529,0.578013,0.577163,0.972277,0.643247,0.76772,0.219188,0.270741,0.481525,0.796571,0.193214,0.256108,0.0733148,0.919397,0.847747,0.428118,0.531954,0.233955,0.0496239,0.678126,0.0479101,0.981782,0.108196,0.32594,0.360371,0.241282,0.801702,0.768449,0.725964,0.796659,0.590898,0.922393,0.827757,0.572422,0.0897843,0.398974,0.255143,0.836443,0.427585,0.0201136,0.109701,0.759094,0.428847,0.408197,0.158485,0.494697,0.806301,0.183347,0.705103,0.149622,0.903408,0.134524,0.42373,0.968459,0.911741,0.795982,0.728908,0.950465,0.814687,0.0386627,0.846925,0.434099,0.234294,0.995714,0.0424645,0.925017,0.849408,0.135423,0.99987,0.921153,0.149363,0.424547,0.941663,0.334389,0.490288,0.135841,0.44859,0.517639,0.939513,0.180836,0.272623,0.651242,0.162557,0.420559,0.336737,0.853327,0.0532711,0.316277,0.719465,0.650182,0.0711609,0.880928,0.633309,0.056881,0.179747,0.115639,0.334704,0.52641,0.93771,0.68875,0.868924,0.00531292,0.401357,0.128362,0.190686,0.720216,0.0552065,0.401733,0.0190427,0.112099,0.123246,0.842144,0.911719,0.561294,0.526685,0.502495,0.310866,0.690166,0.0781178,0.601216,0.0285581,0.658445,0.624089,0.43539,0.504626,0.416812,0.031931,0.386586,0.992797,0.33298,0.0368793,0.980778,0.0177352,0.17373,0.331232,0.39305,0.733609,0.527703,0.513474,0.149642,0.0471734,0.876793,0.960641,0.178399,0.557926,0.607089,0.123649,0.197757,0.801412,0.724929,0.510139,0.661414,0.672454,0.547911,0.639034,0.918142,0.768951,0.000455081,0.713287,0.0320171,0.874896,0.554345,0.538922,0.275783,0.234082,0.267224,0.177085,0.893775,0.936281,0.0454062,0.732059,0.385343,0.350533,0.131476,0.359906,0.909916,0.749187,0.503253,0.00681299,0.626589,0.277983,0.773586,0.929093,0.238841,0.92263,0.614359,0.936154,0.0820117,0.577609,0.594459,0.987497,0.274099,0.904081,0.94492,0.733462,0.820512,0.446955,0.584374,0.276279,0.224675,0.850068,0.731513,0.870377,0.978254,0.215831,0.606895,0.210419,0.944821,0.0901608,0.706545,0.764297,0.607223,0.381128,0.106734,0.00806874,0.186476,0.856173,0.963107,0.689044,0.789721,0.579911,0.416997,0.109255,0.259661,0.00852364,0.627392,0.900506,0.0429565,0.96112,0.396607,0.389595,0.0710747,0.469586,0.770747,0.617272,0.590734,0.356354,0.460068,0.717076,0.542708,0.663604,0.980576,0.935834,0.513901,0.903094,0.383966,0.406991,0.238281,0.622121,0.164209,0.955032,0.612187,0.681941,0.650935,0.6332,0.384203,0.121111,0.0979774,0.505557,0.342031,0.211984,0.0672292,0.0825235,0.495961,0.517806,0.487383,0.278918,0.635841,0.785524,0.0467776,0.120868,0.154979,0.947617,0.0679657,0.274622,0.137492,0.0599948,0.445453,0.2365,0.555926,0.568014,0.292493,0.635842,0.467533,0.437508,0.324905,0.880274,0.553998,0.690136,0.783976,0.11575,0.513949,0.833398,0.256002,0.37721,0.970932,0.91023,0.803601,0.564134,0.863522,0.85083,0.419206,0.39501,0.899332,0.00791103,0.539197,0.225766,0.481053,0.852213,0.972786,0.805748,0.940742,0.910821,0.758757,0.397281,0.116577,0.232552,0.166763,0.743607,0.0616814,0.904326,0.701106,0.170415,0.564137,0.22255,0.0276231,0.624679,0.582915,0.584613,0.185158,0.589141,0.647113,0.141108,0.00206155,0.287636,0.215203,0.386121,0.19647,0.180806,0.59412,0.793536,0.574485,0.338445,0.761562,0.57172,0.418442,0.840944,0.236894,0.448636,0.683582,0.809298,0.67921,0.718618,0.18891,0.202912,0.771812,0.545047,0.936816,0.120345,0.0606071,0.360957,0.653777,0.554555,0.564169,0.956801,0.0813621,0.540365,0.910105,0.0596165,0.122775,0.991587,0.471843,0.216883,0.336714,0.785236,0.806327,0.626953,0.942837,0.815474,0.942876,0.678441,0.497425,0.188579,0.749088,0.0204055,0.710395,0.934009,0.661415,0.458363,0.981095,0.682914,0.860486,0.800454,0.923406,0.202079,0.157546,0.817373,0.410097,0.00934708,0.519249,0.570293,0.487399,0.268061,0.0332974,0.367586,0.530531,0.547628,0.814331,0.845975,0.736484,0.12083,0.182122,0.240068,0.117675,0.271348,0.147106,0.0143293,0.40286,0.333742,0.770181,0.353939,0.193467,0.590982,0.192583,0.877091,0.294608,0.659446,0.840015,0.639199,0.257999,0.631429,0.510474,0.705222,0.0519172,0.548726,0.279775,0.664064,0.0207969,0.310805,0.175879,0.442188,0.932896,0.430494,0.0248203,0.0692187,0.415162,0.143294,0.761472,0.0991073,0.360653,0.140917,0.222526,0.0068531,0.893453,0.942267,0.237806,0.836,|0.485491,0.460449,0.917537,0.686928,0.638863,0.170235,0.477745,0.470404,0.813751,0.455578,0.657028,0.180299,0.113714,0.732938,0.187755,0.479797,0.136845,0.280291,0.576033,0.143402,0.121348,0.814235,0.50578,0.127069,0.382475,0.554148,0.6099,0.312047,0.768149,0.338555,0.243196,0.423769,0.942899,0.854717,0.0301008,0.230778,0.783425,0.878098,0.987952,0.507599,0.295192,0.190588,0.511317,0.0120043,0.244343,0.273783,0.366443,0.160601,0.20524,0.455384,0.308416,0.550154,0.156582,0.462531,0.173436,0.191402,0.171706,0.475976,0.971149,0.601394,0.851156,0.670848,0.829583,0.406299,0.739672,0.0329497,0.27754,0.771031,0.283781,0.300103,0.972963,0.475751,0.0183374,0.292265,0.240243,0.642054,0.109817,0.50375,0.735174,0.571503,0.958848,0.586768,0.841903,0.268584,0.314003,0.618489,0.258898,0.779835,0.735989,0.15678,0.436272,0.479959,0.251387,0.47598,0.68814,0.65673,0.891434,0.470532,0.87981,0.384286,0.212067,0.843881,0.0940777,0.86529,0.328062,0.609642,0.0828344,0.124167,0.50799,0.279555,0.660518,0.10915,0.386405,0.25704,0.833711,0.925773,0.748895,0.117115,0.00973231,0.946437,0.130716,0.59083,0.235558,0.333255,0.265915,0.633187,0.328747,0.795813,0.751059,0.309516,0.195837,0.853722,0.829568,0.233751,0.771075,0.158372,0.546023,0.777064,0.978817,0.617985,0.194795,0.262964,0.63895,0.403606,0.237199,0.163672,0.542999,0.951622,0.536864,0.0205857,0.785306,0.240976,0.328886,0.213298,0.629948,0.456557,0.46913,0.625006,0.432719,0.694471,0.505045,0.709733,0.370329,0.592493,0.960721,0.545678,0.31702,0.710457,0.351968,0.835178,0.905202,0.508343,0.58784,0.96184,0.851497,0.88845,0.185771,0.841231,0.469484,0.362545,0.620126,0.974265,0.427598,0.420196,0.960815,0.92496,0.327935,0.0813586,0.00239557,0.182434,0.998301,0.0218056,0.307871,0.881099,0.397391,0.277237,0.936706,0.261855,0.0905625,0.288045,0.683889,0.582222,0.478335,0.13787,0.212745,0.21804,0.722879,0.422595,0.0895234,0.498277,0.515149,0.976774,0.147208,0.897117,0.676225,0.390755,0.0678054,0.122526,0.319295,0.206511,0.761993,0.0573532,0.914526,0.196836,0.706163,0.0229434,0.701559,0.267238,0.0071736,0.338906,0.719983,0.00175178,0.598614,0.935272,0.219726,0.386146,0.723373,0.261348,0.779756,0.584596,0.15055,0.943356,0.997211,0.591998,0.605557,0.904495,0.420195,0.342323,0.108011,0.330247,0.543665,0.731989,0.890356,0.455579,0.41903,0.760657,0.641541,0.927434,0.220445,0.673841,0.0102153,0.162344,0.790797,0.201547,0.76982,0.541929,0.189835,0.00432372,0.760459,0.742315,0.8294,0.104653,0.688486,0.368365,0.519151,0.366462,0.379308,0.401073,0.325369,0.943829,0.306304,0.57313,0.845749,0.430658,0.675035,0.981051,0.943848,0.416386,0.120628,0.353868,0.847914,0.665891,0.093925,0.157685,0.0152138,0.0160857,0.441383,0.954833,0.942646,0.46949,0.886481,0.61877,0.585845,0.0635663,0.192828,0.436236,0.43978,0.8565,0.583583,0.91279,0.321996,0.105404,0.703158,0.772229,0.516995,0.531359,0.289566,0.991542,0.762016,0.471994,0.138508,0.414773,0.0657923,0.87078,0.426201,0.00485867,0.746224,0.433446,0.0163258,0.713664,0.906488,0.923465,0.252012,0.705245,0.45111,0.405197,0.583743,0.430671,0.428888,0.853794,0.920477,0.915546,0.934312,0.363645,0.346313,0.99108,0.816145,0.715185,0.929998,0.953439,0.221957,0.662465,0.715167,0.109511,0.115985,0.998791,0.182174,0.77561,0.910841,0.339624,0.611735,0.0534733,0.9826,0.710563,0.254996,0.93532,0.24101,0.454638,0.580168,0.613177,0.20164,0.796713,0.596228,0.368869,0.714487,0.0759768,0.989439,0.401938,0.448525,0.59588,0.462157,0.88466,0.580015,0.334178,0.543307,0.210966,0.89179,0.675302,0.398862,0.283893,0.121766,0.590998,0.530541,0.741098,0.824832,0.704979,0.399906,0.400582,0.542683,0.548926,0.816203,0.15883,0.675868,0.384965,0.0782462,0.337123,0.0326381,0.338194,0.0338401,0.899825,0.14654,0.649605,0.985573,0.323027,0.509383,0.453151,0.295614,0.237258,0.315607,0.605763,0.257767,0.269003,0.397193,0.428102,0.381754,0.734428,0.634472,0.92291,0.998712,0.850586,0.0265399,0.452753,0.939075,0.336294,0.359373,0.630231,0.261482,0.746597,0.134731,0.879231,0.832031,0.0246732,0.405142,0.722398,0.763068,0.643029,0.655493,0.673606,0.234999,0.654861,0.795398,0.516014,0.594435,0.497065,0.777253,0.205644,0.300269,0.165237,0.289568,0.70662,0.746948,0.84773,0.57018,0.198217,0.721062,0.368915,0.828642,0.901077,0.0353832,0.813816,0.618442,0.495788,0.740265,0.18732,0.958503,0.414712,0.85127,0.95608,0.573651,0.116624,0.173171,0.0487626,0.150321,0.935616,0.148415,0.230145,0.750618,0.0696164,0.44531,0.49294,0.680973,0.0285572,0.0950423,0.0717413,0.527258,0.473435,0.562539,0.0605428,0.779329,0.670487,0.057699,0.868688,0.187259,0.755275,0.342009,0.468424,0.808608,0.974345,0.414599,0.964092,0.482783,0.327409,0.303526,0.773406,0.523552,0.894927,0.0496362,0.796248,0.121078,0.927862,0.104694,0.176171,0.342379,0.404505,0.750887,0.257783,0.427794,0.470151,0.389595,0.948503,0.917658,0.0388504,0.924269,0.38138,0.921436,0.740442,0.818532,0.716677,0.876456,0.939295,0.206402,0.547385,0.337987,0.393443,0.391225,0.0864028,0.835993,0.135609,0.863806,0.26747,0.0887108,0.497137,0.448744,0.577711,0.122953,0.545527,0.173581,0.903998,0.696854,0.400691,0.406585,0.320998,0.363319,0.272844,0.876745,0.274591,0.302155,0.570251,0.559871,0.271082,0.693437,0.322838,0.863611,0.0133263,0.242384,0.264164,0.910037,0.924552,0.117927,0.016948,0.525758,0.0645244,0.816949,0.158524,0.337878,0.628923,0.118082,0.71926,0.963715,0.0454322,0.958206,0.440306,0.210789,0.577527,0.0554594,0.892905,0.77837,0.635485,0.986731,0.521032,0.894591,0.501815,0.744879,0.966885,0.30373,0.830954,0.86034,0.311066,0.0679293,0.907009,0.0625809,0.141982,0.391493,0.807701,0.199114,0.439761,0.550228,0.783844,0.297811,0.714311,0.783765,0.828849,0.176514,0.34224,0.882738,0.383692,0.588523,0.862826,0.609531,0.733569,0.857782,0.503181,0.23997,0.31773,0.719566,0.43868,0.72972,0.386195,0.911686,0.597767,0.560517,0.908515,0.957138,0.600061,0.242069,0.712776,0.714294,0.0126225,0.38011,0.622356,0.378387,0.0921415,0.915596,0.286534,0.808105,0.669098,0.232379,0.231558,0.342232,0.45911,0.438,0.900182,0.732186,0.996877,0.626001,0.361949,0.0937407,0.817406,0.413298,0.182777,0.997964,0.527785,0.0422633,0.734328,0.406397,0.650435,0.536393,0.148848,0.94958,0.42355,0.250378,0.122699,0.965095,0.801813,0.732682,0.921312,0.372454,0.101116,0.224741,0.234627,0.698963,0.773021,0.523007,0.997777,0.111395,0.442968,0.0440721,0.767596,0.455703,0.998808,0.437568,0.748823,0.504516,0.572597,0.158546,0.65077,0.158729,0.106708,0.660452,0.248665,0.717371,0.281333,0.896075,0.386389,0.138216,0.857369,0.755594,0.325219,0.971956,0.535951,0.968877,0.0342795,0.102698,0.465871,0.959429,0.986353,0.540528,0.9084,0.555883,0.422253,0.75951,0.398479,0.932523,0.508019,0.952882,0.0899224,0.440464,0.136924,0.870456,0.385456,0.486437,0.150869,0.0827304,0.907271,0.425628,0.970705,0.0440233,0.0665525,0.98461,0.592779,0.545885,0.840263,0.517465,0.490898,0.407088,0.577922,0.194948,0.716705,0.927664,0.30073,0.0971778,0.416762,0.924127,0.701899,0.43819,0.822146,0.511323,0.931814,0.430014,0.987801,0.912106,0.475448,0.832974,0.455793,0.0948602,0.604412,0.32076,0.666715,0.780029,0.378454,0.087222,0.621184,0.648477,0.297099,0.971996,0.873958,0.618523,0.495369,0.408691,0.790887,0.734983,0.234345,0.133845,0.580228,0.216152,0.299655,0.99418,0.0800571,0.0505978,0.820052,0.718883,0.63576,0.223147,0.0593489,0.288189,0.758683,0.447361,0.162794,0.00175864,0.731008,0.828503,0.526892,0.0487323,0.48114,0.735201,0.862399,0.328841,0.663339,0.00243604,0.438844,0.410021,0.808624,0.525118,0.990903,0.690134,0.468526,0.989628,0.953073,0.335097,0.180081,0.16702,0.999151,0.341305,0.0224297,0.300967,0.866321,0.0467454,0.0700544,0.137497,0.617856,0.283259,0.174619,0.967027,0.197458,0.767163,0.215382,0.935268,0.196501,0.694864,0.60324,0.406778,0.425093,0.136422,0.924524,0.062808,0.586375,0.622803,0.618872,0.267297,0.0530179,0.0946755,0.211992,0.96986,0.146502,0.475998,0.094617,0.633866,0.385987,0.480396,0.19993,0.0539995,0.300712,0.0360339,0.556663,0.530843,0.0852614,0.882716,0.333719,0.641468,0.800376,0.294233,0.655127,0.897854,0.0467123,0.353278,0.148125,0.991562,0.936873,0.614919,0.294743,0.864239,0.0562945,0.701126,0.0312631,0.246601,0.181333,0.603978,0.209064,0.333225,0.428487,0.921132,0.572495,0.245101,0.829987,0.979511,0.938674,0.324147,0.463329,0.999188,0.37855,0.194342,0.628896,0.188072,0.530851,0.639369,0.760341,0.623991,0.717,0.796454,0.241596,0.161307,0.226395,0.704902,0.816147,0.0117566,0.413924,0.38,0.568637,0.00590861,0.529456,0.0863228,0.59733,0.0928664,0.309186,0.823605,0.431676,0.710105,0.984055,0.101273,0.479403,0.619398,0.910094,0.451697,0.624706,0.77106,0.979526,0.289761,0.0932691,0.99128,0.0635787,0.771241,0.816987,0.390628,0.539028,0.701305,0.0509266,0.0976434,0.628106,0.293671,0.0371268,0.509245,0.296325,0.396602,0.970134,0.426197,0.982424,0.882762,0.377454,0.600599,0.273381,0.259306,0.907628,0.675021,0.408993,0.609657,0.742698,0.950923,0.551894,0.655128,0.476536,0.673328,0.229336,0.173659,0.339088,0.416246,0.538931,0.343527,0.929113,0.216941,0.492139,0.848183,0.639759,0.302688,0.740781,0.688002,0.508253,0.61081,0.0135302,0.261633,0.0709476,|0.283697,0.537274,0.465944,0.780353,0.447302,0.833643,0.468475,0.539036,0.586194,0.857834,0.219454,0.699774,0.559117,0.0686627,0.612652,0.834038,0.12485,0.706401,0.896514,0.175604,0.422285,0.302447,0.69106,0.116506,0.940601,0.99167,0.228418,0.073276,0.709347,0.242578,0.740995,0.607148,0.0515382,0.630671,0.523844,0.407485,0.468852,0.446785,0.0647399,0.253237,0.905009,0.130772,0.615532,0.26395,0.242506,0.46337,0.841897,0.154779,0.185425,0.839131,0.280168,0.110903,0.544712,0.60452,0.859117,0.997645,0.517304,0.0764053,0.592526,0.963625,0.522553,0.329518,0.780596,0.846861,0.646326,0.584328,0.881756,0.646116,0.627703,0.0109769,0.746245,0.689227,0.729215,0.216823,0.181385,0.637691,0.837757,0.364584,0.136755,0.0908064,0.542588,0.586622,0.406039,0.413325,0.646889,0.606526,0.906853,0.813784,0.837635,0.205814,0.192051,0.243994,0.0872932,0.916474,0.742421,0.905577,0.866819,0.846716,0.705801,0.737066,0.994002,0.668969,0.999642,0.18385,0.949087,0.323581,0.890596,0.33748,0.194791,0.594753,0.961178,0.239942,0.247465,0.94845,0.926941,0.426138,0.543902,0.178151,0.930708,0.52263,0.0301288,0.880241,0.395209,0.599879,0.788181,0.440933,0.794301,0.764659,0.203045,0.444593,0.376052,0.976826,0.232533,0.232863,0.733945,0.679895,0.485925,0.105855,0.254354,0.175702,0.921284,0.667011,0.974551,0.399349,0.0487586,0.0288497,0.926506,0.161193,0.347119,0.879045,0.339064,0.680292,0.908072,0.305973,0.35846,0.521153,0.173464,0.0891047,0.661229,0.379146,0.805077,0.495971,0.5979,0.104018,0.534778,0.206262,0.258139,0.916158,0.271722,0.198522,0.669447,0.175968,0.746399,0.0787033,0.346551,0.238024,0.336726,0.131308,0.710407,0.42426,0.417758,0.450416,0.414756,0.906365,0.0372402,0.4446,0.87893,0.496417,0.715658,0.45782,0.0494316,0.304229,0.541377,0.884004,0.556545,0.330947,0.846135,0.336259,0.186202,0.172096,0.978994,0.291693,0.00339478,0.585587,0.903498,0.0934536,0.355029,0.51139,0.208928,0.994933,0.53739,0.412504,0.950259,0.533365,0.177417,0.223976,0.888697,0.920741,0.766397,0.529621,0.255373,0.444628,0.11047,0.49042,0.406103,0.288363,0.277371,0.099198,0.269971,0.864264,0.504861,0.984178,0.0909091,0.94999,0.574913,0.346681,0.666318,0.499792,0.791262,0.239353,0.319055,0.669572,0.131968,0.0599071,0.25787,0.432602,0.459461,0.735868,0.267366,0.31497,0.804844,0.0778965,0.486497,0.387507,0.703229,0.0146555,0.594942,0.93001,0.0481004,0.00622988,0.15836,0.686149,0.018526,0.346552,0.374518,0.413443,0.461772,0.637652,0.644219,0.421342,0.195482,0.768964,0.949372,0.371602,0.271746,0.0639665,0.987916,0.160136,0.411763,0.277609,0.755645,0.940063,0.731886,0.524461,0.458878,0.534393,0.560513,0.1981,0.436819,0.479542,0.723128,0.492347,0.517911,0.169342,0.464338,0.877881,0.618272,0.948522,0.157933,0.109416,0.83962,0.227469,0.290464,0.887313,0.615894,0.124925,0.521998,0.740953,0.260783,0.82018,0.761331,0.169168,0.093741,0.743921,0.996754,0.652914,0.436157,0.675554,0.44926,0.407777,0.583774,0.0310518,0.523601,0.550174,0.0649513,0.112861,0.609558,0.834371,0.0803576,0.421598,0.786916,0.863563,0.297658,0.089192,0.193505,0.13294,0.381222,0.0814598,0.511139,0.527636,0.165906,0.178997,0.87289,0.672528,0.264469,0.788709,0.225924,0.862118,0.991963,0.965064,0.913327,0.331415,0.0921986,0.361056,0.915087,0.22047,0.703052,0.131633,0.934825,0.961658,0.474446,0.411121,0.452431,0.0490726,0.807517,0.408452,0.945251,0.408223,0.784983,0.701734,0.758352,0.187724,0.713499,0.167043,0.612589,0.426343,0.995365,0.338771,0.0137498,0.635859,0.591227,0.437363,0.902148,0.980586,0.932241,0.405769,0.478035,0.839014,0.651272,0.663518,0.163472,0.547818,0.822012,0.0476384,0.570498,0.89299,0.0157099,0.694256,0.989665,0.451462,0.601714,0.408241,0.850432,0.848796,0.041435,0.876421,0.758061,0.197736,0.290126,0.00788683,0.420125,0.557875,0.420206,0.658559,0.358175,0.43989,0.920927,0.476526,0.481476,0.904432,0.464049,0.606994,0.108977,0.13728,0.179464,0.951299,0.257623,0.478064,0.682101,0.429187,0.726837,0.71012,0.304657,0.371475,0.147722,0.687504,0.0109947,0.750206,0.623183,0.663518,0.86847,0.409934,0.785666,0.997491,0.218413,0.277239,0.914859,0.989595,0.388198,0.799643,0.0477742,0.612284,0.39125,0.0607767,0.738966,0.293484,0.661013,0.690713,0.917333,0.0713111,0.630965,0.465711,0.575042,0.770286,0.0356517,0.615658,0.827231,0.897963,0.650774,0.522309,0.266501,0.119433,0.119748,0.256417,0.198599,0.313148,0.589881,0.636824,0.16075,0.48399,0.711858,0.138564,0.376131,0.561589,0.721106,0.0561385,0.5617,0.508598,0.651736,0.297099,0.0477011,0.843206,0.852549,0.0123904,0.455546,0.173344,0.0752358,0.0173019,0.303101,0.535534,0.738379,0.266499,0.571012,0.563523,0.987063,0.803612,0.54569,0.785803,0.491419,0.314955,0.816484,0.340444,0.805325,0.799514,0.583502,0.916048,0.104261,0.273759,0.868288,0.677538,0.952509,0.955029,0.480465,0.643638,0.985624,0.805013,0.736737,0.526094,0.852793,0.905521,0.920619,0.543967,0.99792,0.512471,0.131996,0.285873,0.871603,0.516617,0.263852,0.776456,0.194686,0.268466,0.0759097,0.793699,0.676663,0.893696,0.55012,0.914227,0.614172,0.474056,0.863441,0.773062,0.802099,0.599286,0.2576,0.86736,0.963829,0.532359,0.46015,0.649713,0.891007,0.946517,0.116842,0.96166,0.675748,0.922748,0.512404,0.931332,0.654307,0.344346,0.704686,0.697441,0.906873,0.279842,0.749776,0.192389,0.211237,0.665613,0.594417,0.0405805,0.282883,0.761311,0.336078,0.103897,0.213605,0.76614,0.212515,0.117634,0.82559,0.0539437,0.720657,0.965153,0.548429,0.973521,0.969474,0.379023,0.364479,0.699184,0.858899,0.295715,0.207617,0.122703,0.361228,0.0537345,0.133009,0.862577,0.0300722,0.593089,0.0396575,0.328944,0.503346,0.328875,0.772413,0.622606,0.521815,0.78291,0.896762,0.689422,0.39477,0.582178,0.0434077,0.958087,0.773009,0.223751,0.197664,0.0151798,0.425071,0.118167,0.604256,0.633158,0.595546,0.894062,0.423385,0.346656,0.633878,0.0625628,0.0466909,0.410978,0.214181,0.900157,0.905682,0.594716,0.550689,0.733447,0.916457,0.000124454,0.00710303,0.90084,0.392608,0.233582,0.961451,0.151889,0.152856,0.71092,0.407604,0.617533,0.81468,0.108839,0.414332,0.534264,0.771659,0.442367,0.204183,0.0144736,0.479903,0.564178,0.224154,0.135375,0.585116,0.354699,0.103529,0.162633,0.168419,0.0688905,0.415658,0.424292,0.765132,0.558833,0.665874,0.157901,0.538515,0.767744,0.117229,0.0774692,0.508587,0.405129,0.731664,0.702821,0.478495,0.818133,0.921448,0.524347,0.393841,0.715301,0.489869,0.414299,0.334565,0.223697,0.897403,0.19412,0.554399,0.484534,0.539098,0.839039,0.700331,0.717447,0.318132,0.966902,0.967879,0.432738,0.0416107,0.624908,0.970247,0.672416,0.670173,0.0915771,0.693915,0.361737,0.112074,0.0583957,0.0398202,0.407698,0.297445,0.661825,0.896607,0.141913,0.0337683,0.140846,0.136716,0.66611,0.481708,0.51926,0.0305265,0.239625,0.0649015,0.336878,0.942105,0.765784,0.917739,0.814776,0.28304,0.805591,0.859715,0.00950193,0.842826,0.047884,0.857585,0.619022,0.316316,0.445398,0.572247,0.356475,0.0669717,0.544323,0.533006,0.782433,0.709493,0.614166,0.374179,0.199637,0.876259,0.438542,0.94796,0.156084,0.699915,0.977082,0.894382,0.226358,0.61162,0.987166,0.764281,0.459943,0.225046,0.222433,0.559639,0.60097,0.140331,0.682983,0.966714,0.467913,0.614185,0.754164,0.938258,0.688827,0.242622,0.36491,0.787346,0.83342,0.912545,0.232968,0.445531,0.19038,0.45662,0.19944,0.960752,0.358083,0.625381,0.547894,0.122298,0.851346,0.0958366,0.442903,0.437324,0.810074,0.363803,0.238311,0.51904,0.253266,0.238046,0.554347,0.756881,0.581011,0.0476898,0.763176,0.87201,0.185856,0.324662,0.414924,0.061509,0.523179,0.94143,0.612334,0.666509,0.263509,0.66654,0.030647,0.290984,0.992931,0.48532,0.146812,0.568646,0.495984,0.188578,0.019491,0.33504,0.303902,0.47364,0.383683,0.18356,0.652024,0.903239,0.173839,0.821984,0.30105,0.272575,0.645369,0.521724,0.792318,0.937194,0.421014,0.213264,0.455384,0.932591,0.146362,0.166825,0.796306,0.654318,0.856152,0.528752,0.449101,0.669898,0.238157,0.559645,0.77617,0.103969,0.444004,0.491001,0.30522,0.683195,0.559019,0.802234,0.257075,0.257932,0.393593,0.596937,0.167041,0.49724,0.42168,0.32046,0.103512,0.619617,0.416492,0.0489278,0.999191,0.476936,0.176589,0.872767,0.0794479,0.604975,0.420403,0.281887,0.0644593,0.915961,0.621579,0.573849,0.115102,0.866832,0.0158042,0.401734,0.878457,0.618656,0.633557,0.199382,0.774973,0.989979,0.561065,0.170607,0.711138,0.450025,0.240223,0.763918,0.876903,0.207615,0.405546,0.660815,0.608302,0.0717004,0.820816,0.234453,0.193276,0.787382,0.845187,0.185583,0.71974,0.971086,0.534842,0.079488,0.809846,0.556873,0.75214,0.79218,0.556743,0.726634,0.384131,0.547217,0.801376,0.442718,0.401381,0.330263,0.924787,0.904136,0.317461,0.274437,0.572632,0.0346959,0.823892,0.362238,0.843867,0.312465,0.323435,0.614772,0.885386,0.221224,0.0862157,0.882309,0.655589,0.635344,0.682486,0.916033,0.812911,0.114683,0.948117,0.57172,0.229312,0.365302,0.136683,0.0848427,0.432523,0.516345,0.792802,0.963035,0.640314,0.47639,0.324065,0.97414,0.426519,0.00850827,0.597777,0.501224,0.776824,0.925625,0.556314,0.168285,0.761341,0.675931,0.138352,0.952756,0.890999,0.283646,0.159635,0.515355,0.182304,0.254726,0.129228,0.328418,0.923569,0.822113,0.480747,0.477015,0.866705,|0.826954,0.61236,0.552262,0.919133,0.764723,0.991127,0.153964,0.642022,0.395833,0.0309047,0.870119,0.310812,0.0601652,0.211705,0.0845068,0.711505,0.114934,0.126492,0.514685,0.696483,0.207301,0.782647,0.507255,0.990224,0.900722,0.586564,0.8308,0.351876,0.417033,0.296177,0.186812,0.88897,0.415121,0.36569,0.888705,0.0936972,0.630705,0.92173,0.596964,0.752902,0.849336,0.33543,0.407607,0.883226,0.635519,0.954467,0.348736,0.996305,0.622614,0.80734,0.470628,0.527086,0.205206,0.545904,0.177368,0.777579,0.580536,0.0253124,0.852642,0.021925,0.948944,0.44193,0.547463,0.627943,0.535315,0.275784,0.84467,0.959417,0.92579,0.166687,0.38938,0.588733,0.941399,0.271644,0.116954,0.493884,0.990643,0.453803,0.588539,0.658984,0.791877,0.663741,0.143322,0.255775,0.845424,0.071072,0.885106,0.826923,0.337556,0.593996,0.00633413,0.552959,0.478518,0.0728659,0.241807,0.215829,0.545037,0.52403,0.527821,0.980028,0.946873,0.26457,0.631402,0.346002,0.030899,0.116882,0.317239,0.933689,0.736715,0.872114,0.451528,0.516768,0.685942,0.367192,0.554489,0.728766,0.787038,0.539722,0.75071,0.21853,0.824388,0.207336,0.388897,0.951538,0.121702,0.399925,0.886496,0.732267,0.541686,0.968254,0.0598532,0.991509,0.887759,0.975929,0.532011,0.816701,0.588601,0.792498,0.541378,0.63688,0.625723,0.827268,0.671025,0.818504,0.856411,0.85376,0.0440462,0.234125,0.879511,0.374245,0.990317,0.69192,0.470534,0.690181,0.780147,0.444468,0.906333,0.326876,0.567163,0.187347,0.881155,0.94621,0.48289,0.0901202,0.542685,0.092914,0.540473,0.329507,0.0968177,0.063154,0.520663,0.861529,0.668838,0.839187,0.867341,0.875418,0.121835,0.435858,0.895487,0.518312,0.283333,0.716316,0.0697787,0.149899,0.789059,0.885212,0.394561,0.766246,0.133932,0.954543,0.600985,0.352411,0.349745,0.786716,0.608454,0.646138,0.464344,0.345146,0.63562,0.867192,0.356492,0.389048,0.405453,0.265689,0.00305277,0.292615,0.638878,0.964603,0.856197,0.385239,0.876339,0.873,0.871438,0.213279,0.462831,0.979104,0.356333,0.602259,0.162018,0.393845,0.106619,0.815725,0.866192,0.144667,0.481339,0.458868,0.852228,0.637054,0.616418,0.956816,0.449734,0.810359,0.482241,0.439144,0.805014,0.892004,0.647826,0.464135,0.66892,0.555227,0.521302,0.516553,0.736356,0.368623,0.770079,0.344953,0.556721,0.727483,0.0374593,0.92454,0.821073,0.984408,0.38173,0.522891,0.538504,0.18309,0.429739,0.0522642,0.663139,0.925086,0.732451,0.523114,0.457496,0.394926,0.248129,0.186652,0.45477,0.758628,0.343336,0.95461,0.234641,0.157975,0.435154,0.570091,0.375732,0.223182,0.530145,0.224812,0.658531,0.632686,0.114404,0.0532012,0.831099,0.922095,0.0335245,0.440669,0.947173,0.335367,0.762105,0.358086,0.927209,0.738644,0.96917,0.116218,0.710668,0.355234,0.57399,0.773432,0.942508,0.546069,0.736311,0.520723,0.153891,0.926027,0.60139,0.575311,0.228979,0.556538,0.782734,0.62696,0.946741,0.913213,0.960276,0.0232636,0.227455,0.687721,0.314029,0.867715,0.0309831,0.956127,0.283258,0.934037,0.855106,0.151529,0.558689,0.280609,0.853421,0.564658,0.302242,0.361112,0.0410421,0.14404,0.595496,0.710668,0.132972,0.647586,0.46132,0.94472,0.806349,0.359608,0.364019,0.0511314,0.392247,0.904493,0.520212,0.455072,0.626084,0.491416,0.0842837,0.953631,0.805786,0.609412,0.243463,0.216906,0.666188,0.725589,0.751401,0.869442,0.766467,0.340604,0.16426,0.624186,0.246558,0.632811,0.966225,0.713564,0.736677,0.360749,0.459118,0.898481,0.441054,0.137957,0.634057,0.0355603,0.0305645,0.590463,0.661009,0.068118,0.323978,0.018326,0.424563,0.213164,0.598853,0.156842,0.347615,0.349616,0.0644484,0.942265,0.636228,0.655047,0.446853,0.246977,0.0145271,0.944682,0.311701,0.654347,0.278686,0.720119,0.947625,0.0588135,0.977412,0.342833,0.681372,0.598895,0.0320572,0.625623,0.688622,0.984782,0.8056,0.60796,0.673611,0.608921,0.590022,0.388364,0.371312,0.348007,0.820059,0.487905,0.818863,0.486293,0.450185,0.239194,0.495186,0.851126,0.783881,0.509887,0.625832,0.815392,0.0100216,0.936197,0.211716,0.28466,0.306269,0.0714323,0.0505697,0.0186977,0.950092,0.601392,0.370246,0.019399,0.297009,0.27963,0.0122148,0.69226,0.966986,0.970297,0.089893,0.36581,0.564032,0.597949,0.871493,0.387378,0.832305,0.904631,0.385247,0.19288,0.897383,0.489633,0.964241,0.296457,0.334085,0.0995072,0.281821,0.332208,0.134937,0.965981,0.71055,0.505213,0.922467,0.822693,0.992447,0.661713,0.292194,0.441069,0.10873,0.867185,0.538131,0.237777,0.488584,0.944412,0.779966,0.578824,0.920982,0.96795,0.644813,0.393862,0.98165,0.426247,0.611807,0.757335,0.299881,0.424556,0.471904,0.17537,0.135638,0.187074,0.608859,0.518357,0.553049,0.179129,0.232876,0.554471,0.522669,0.707783,0.718697,0.0582926,0.731202,0.0927423,0.917649,0.146714,0.570401,0.866215,0.911553,0.465762,0.273328,0.513937,0.504365,0.926192,0.122968,0.356824,0.774083,0.567632,0.179988,0.492668,0.653346,0.266374,0.326349,0.904395,0.622884,0.0456198,0.934203,0.0680228,0.294056,0.650436,0.283029,0.356785,0.788927,0.856946,0.46407,0.219458,0.780158,0.634091,0.992038,0.457023,0.725469,0.536615,0.946787,0.738833,0.721866,0.124552,0.38288,0.697291,0.404225,0.591141,0.986212,0.849886,0.693933,0.689189,0.361964,0.373228,0.662365,0.169823,0.24241,0.947138,0.416887,0.321374,0.231822,0.979576,0.639448,0.626583,0.0540805,0.75333,0.14661,0.506456,0.956403,0.710242,0.427599,0.929552,0.238836,0.742932,0.895311,0.34122,0.366368,0.28277,0.24532,0.525292,0.29427,0.491942,0.804972,0.536645,0.79395,0.0130238,0.984513,0.477214,0.422657,0.7084,0.519028,0.192025,0.476121,0.990451,0.809287,0.674185,0.985429,0.99232,0.855062,0.219907,0.497163,0.713394,0.555342,0.0842169,0.879719,0.730198,0.865121,0.0243325,0.734563,0.660497,0.0894811,0.108993,0.593674,0.519417,0.259656,0.76147,0.479002,0.697326,0.113735,0.417487,0.134496,0.185543,0.0399455,0.49572,0.0318851,0.902537,0.269276,0.369113,0.102995,0.731321,0.863697,0.590057,0.96391,0.191797,0.722983,0.657408,0.482518,0.985839,0.21021,0.514182,0.475442,0.438971,0.380291,0.790074,0.113598,0.505457,0.594508,0.825087,0.989055,0.567851,0.838838,0.809293,0.241651,0.927257,0.600076,0.646076,0.70063,0.398375,0.990558,0.835667,0.563969,0.978907,0.525778,0.515044,0.925353,0.743385,0.00684017,0.648069,0.798563,0.202357,0.380919,0.548128,0.986696,0.711416,0.862926,0.765527,0.632254,0.696157,0.83481,0.765817,0.683174,0.14449,0.70146,0.159907,0.919167,0.367752,0.963265,0.0230469,0.865075,0.829825,0.210748,0.543142,0.426333,0.556797,0.582895,0.0352005,0.664828,0.880684,0.473278,0.283968,0.168672,0.372344,0.323703,0.417642,0.806049,0.814141,0.423969,0.918752,0.558557,0.410543,0.63865,0.342982,0.261864,0.443108,0.737501,0.0807397,0.904161,0.606161,0.980219,0.424586,0.117683,0.88658,0.625521,0.0788029,0.37368,0.397143,0.862807,0.00749677,0.719398,0.415624,0.919452,0.882568,0.373944,0.0226735,0.56961,0.764698,0.816348,0.066299,0.483705,0.822731,0.252507,0.409898,0.483479,0.13931,0.124771,0.84822,0.388572,0.867505,0.528636,0.89576,0.0905206,0.804503,0.833892,0.194081,0.761179,0.736504,0.56499,0.100889,0.239844,0.521378,0.969159,0.379669,0.73157,0.065329,0.214763,0.979556,0.5817,0.941056,0.383626,0.259002,0.166774,0.872794,0.729272,0.163518,0.574538,0.136427,0.639847,0.32803,0.883326,0.429172,0.719483,0.976757,0.355785,0.925254,0.884021,0.27223,0.868236,0.308904,0.470197,0.504148,0.998478,0.0724916,0.0132419,0.274792,0.249521,0.334532,0.0800412,0.554252,0.784852,0.665925,0.826853,0.259365,0.798482,0.625903,0.776322,0.43045,0.678975,0.249101,0.15026,0.464781,0.507013,0.310159,0.114107,0.284329,0.336366,0.451544,0.784932,0.981025,0.460913,0.880888,0.0873604,0.910674,0.826866,0.762383,0.391515,0.524687,0.912191,0.201452,0.68488,0.575191,0.308063,0.655337,0.637465,0.970411,0.463748,0.876222,0.375453,0.448906,0.158505,0.835376,0.670329,0.711648,0.0406005,0.0411961,0.756226,0.227784,0.575489,0.835915,0.745936,0.524315,0.246499,0.910201,0.381072,0.85542,0.265702,0.943617,0.918852,0.194408,0.918981,0.438409,0.65683,0.591117,0.925798,0.572215,0.516997,0.219958,0.198275,0.935248,0.675926,0.925285,0.557911,0.582565,0.235101,0.048278,0.849096,0.230688,0.605459,0.299979,0.141531,0.850183,0.656336,0.0118265,0.280285,0.390896,0.37978,0.780106,0.923139,0.893478,0.576755,0.968785,0.76009,0.415271,0.37151,0.382065,0.637901,0.433628,0.122755,0.820338,0.956105,0.163546,0.304837,0.962316,0.3788,0.62962,0.394797,0.0697332,0.083995,0.217884,0.825854,0.23378,0.226831,0.38706,0.867175,0.171239,0.912201,0.299314,0.988955,0.343876,0.710873,0.561472,0.285824,0.54364,0.776666,0.847248,0.725535,0.495984,0.91171,0.389191,0.889309,0.671365,0.163523,0.240607,0.492751,0.364738,0.668186,0.332648,0.450372,0.136026,0.0784807,0.827629,0.546148,0.673522,0.974948,0.735258,0.0354917,0.428347,0.330308,0.475808,0.693237,0.685371,0.708556,0.264204,0.512054,0.305194,0.207116,0.361493,0.508452,0.160662,0.495986,0.218972,0.735129,0.53646,0.394625,0.546653,0.169625,0.708115,0.570953,0.00134522,0.155115,0.417956,0.768845,0.73805,0.156628,0.775322,0.736405,0.333221,0.968674,0.982425,0.281613,0.510357,0.272406,0.793432,0.45903,0.0961123,0.235775,0.78404,0.275193,0.482051,0.364068,0.497972,0.523235,0.15706,0.442182,0.740696,|0.656804,0.0789742,0.473013,0.52217,0.724222,0.760695,0.568128,0.0646971,0.462596,0.512486,0.538613,0.759258,0.0159253,0.320376,0.21148,0.00034678,0.0701147,0.813158,0.150068,0.148941,0.106772,0.499791,0.995425,0.762141,0.593402,0.180492,0.73849,0.482039,0.521929,0.494778,0.340074,0.457199,0.214261,0.854192,0.560006,0.258324,0.109904,0.0849664,0.594205,0.9988,0.0569547,0.638597,0.546164,0.374943,0.419472,0.49449,0.18461,0.597651,0.763004,0.553689,0.782108,0.729149,0.41915,0.048797,0.799115,0.554676,0.285601,0.707003,0.625392,0.928057,0.919091,0.960364,0.376142,0.669839,0.0709246,0.465828,0.751386,0.305511,0.0480572,0.405843,0.414407,0.888803,0.406609,0.610685,0.279683,0.331236,0.600227,0.60324,0.248525,0.37468,0.271591,0.133364,0.482924,0.211129,0.414409,0.0627625,0.380757,0.673808,0.133834,0.977665,0.888897,0.571344,0.375617,0.245729,0.7558,0.445686,0.4434,0.40861,0.626908,0.570668,0.438931,0.855421,0.302356,0.113554,0.203382,8.21352e-05,0.928431,0.847164,0.742657,0.250347,0.70524,0.201301,0.327103,0.665688,0.058495,0.182576,0.251931,0.388493,0.786737,0.308131,0.0764292,0.977972,0.86264,0.978247,0.0929951,0.166474,0.74802,0.933962,0.755891,0.0689505,0.343398,0.527679,0.510512,0.347001,0.198994,0.544417,0.121102,0.273922,0.834849,0.703801,0.997761,0.791306,0.161292,0.491337,0.848053,0.37614,0.200145,0.511872,0.00327313,0.0201504,0.231864,0.427881,0.798772,0.190437,0.764228,0.0345263,0.224542,0.0252093,0.892802,0.903725,0.483283,0.759836,0.75949,0.953807,0.0622098,0.551292,0.431995,0.894658,0.43964,0.458919,0.171144,0.536156,0.337508,0.00668508,0.501071,0.668363,0.22681,0.483597,0.729205,0.572385,0.689875,0.947745,0.829867,0.648407,0.165131,0.484713,0.446589,0.900622,0.537399,0.151722,0.911597,0.917158,0.647581,0.762831,0.409234,0.656979,0.93462,0.872622,0.940125,0.111148,0.264394,0.716266,0.248349,0.825754,0.711828,0.898634,0.214718,0.838613,0.322257,0.430765,0.682039,0.105497,0.675184,0.421994,0.885129,0.839953,0.446313,0.709953,0.335933,0.587292,0.376943,0.562481,0.52596,0.0262846,0.721462,0.611788,0.116854,0.948493,0.545744,0.129421,0.149395,0.436561,0.218528,0.728501,0.898298,0.190944,0.518883,0.875615,0.483163,0.375253,0.316368,0.594157,0.991551,0.118102,0.847638,0.607593,0.280595,0.183457,0.84853,0.126074,0.78956,0.848256,0.0364188,0.0332711,0.465339,0.859222,0.169256,0.232082,0.242348,0.0711695,0.586923,0.889272,0.704523,0.567166,0.120464,0.286884,0.289376,0.955445,0.981934,0.646691,0.201217,0.971637,0.885159,0.974684,0.278235,0.965638,0.947739,0.557522,0.523452,0.640084,0.74928,0.231686,0.832415,0.651918,0.915323,0.534099,0.620037,0.557306,0.130418,0.735731,0.798244,0.537933,0.453971,0.00689822,0.464494,0.573341,0.633088,0.967172,0.231452,0.819616,0.929008,0.110527,0.964172,0.259408,0.976272,0.726787,0.627017,0.0821239,0.296723,0.848712,0.0870535,0.413737,0.337717,0.416603,0.405344,0.209335,0.0545072,0.508186,0.738154,0.511824,0.716376,0.643693,0.232891,0.357917,0.156566,0.427179,0.93466,0.367943,0.558946,0.339707,0.474136,0.168516,0.501698,0.669901,0.32448,0.246857,0.479601,0.22745,0.137686,0.117415,0.616572,0.849848,0.135198,0.252041,0.264529,0.00399303,0.419696,0.369079,0.934604,0.302557,0.630896,0.700734,0.0849446,0.943081,0.866409,0.776509,0.692786,0.0784213,0.0688265,0.995849,0.941481,0.894656,0.764369,0.134275,0.831515,0.31682,0.868286,0.480951,0.234356,0.641266,0.192001,0.637472,0.304621,0.286258,0.0329727,0.246468,0.80674,0.402962,0.514076,0.962868,0.216044,0.569897,0.286882,0.66755,0.885836,0.866171,0.240281,0.878026,0.832141,0.0533231,0.790198,0.92947,0.551423,0.754443,0.304342,0.88609,0.154992,0.0822578,0.348161,0.36655,0.311556,0.479862,0.0183955,0.671565,0.440086,0.139046,0.798812,0.256348,0.461939,0.431371,0.354034,0.296378,0.40914,0.320476,0.260482,0.0192964,0.0600772,0.897442,0.629473,0.185331,0.937818,0.843985,0.0411126,0.718655,0.0678845,0.79488,0.046667,0.553967,0.479429,0.345329,0.0746503,0.110946,0.668902,0.456444,0.241254,0.873268,0.69857,0.163307,0.692452,0.817931,0.479075,0.78686,0.592464,0.393074,0.0647246,0.205659,0.823682,0.560989,0.62974,0.00228477,0.640349,0.917968,0.272529,0.49533,0.13399,0.713977,0.448059,0.579102,0.880074,0.918581,0.032445,0.287891,0.28966,0.785703,0.971035,0.914545,0.688778,0.0701069,0.595674,0.437943,0.885857,0.901858,0.847783,0.938867,0.397348,0.194494,0.846056,0.357079,0.768186,0.870654,0.114628,0.13646,0.438336,0.188375,0.361184,0.0245237,0.130091,0.083962,0.314901,0.304488,0.928724,0.817517,0.120233,0.91051,0.831677,0.625807,0.32397,0.834028,0.784308,0.170697,0.241664,0.970134,0.33814,0.826451,0.407866,0.999707,0.822388,0.0742385,0.83117,0.11966,0.0127472,0.323345,0.447226,0.946416,0.289677,0.837533,0.97398,0.773948,0.244935,0.636533,0.595892,0.90357,0.872945,0.455606,0.549025,0.596115,0.351555,0.264616,0.136015,0.950067,0.852789,0.357746,0.388368,0.988357,0.428499,0.776022,0.94326,0.565097,0.708084,0.985017,0.80045,0.710208,0.76081,0.276485,0.225764,0.163744,0.592451,0.191282,0.432346,0.774648,0.77567,0.291542,0.34018,0.382742,0.650963,0.719464,0.636254,0.74557,0.436291,0.664392,0.823174,0.629429,0.359868,0.146917,0.555649,0.902987,0.0305147,0.214464,0.43309,0.879089,0.944799,0.556002,0.990309,0.921681,0.873862,0.699576,0.766504,0.763623,0.396568,0.279666,0.00938076,0.609615,0.810434,0.752258,0.342374,0.735367,0.0154814,0.691952,0.605797,0.570567,0.275234,0.0301021,0.255368,0.746708,0.802334,0.696016,0.372504,0.390397,0.506598,0.882778,0.58465,0.860524,0.325193,0.755219,0.51835,0.398701,0.936874,0.827266,0.341406,0.397463,0.981877,0.613805,0.775953,0.674229,0.743243,0.348788,0.5011,0.938185,0.325643,0.0884709,0.0268463,0.610673,0.0013029,0.599343,0.242825,0.00122875,0.622543,0.3638,0.500527,0.134691,0.0842454,0.618614,0.00963748,0.962307,0.1324,0.12843,0.751777,0.361259,0.571088,0.213956,0.146539,0.293096,0.399566,0.756927,0.22812,0.945612,0.283533,0.301488,0.17929,0.425467,0.149705,0.826541,0.806807,0.387957,0.484667,0.835527,0.869002,0.870097,0.351533,0.548732,0.223114,0.490863,0.124682,0.121765,0.837144,0.0177423,0.823294,0.669172,0.675575,0.685366,0.797663,0.528737,0.741206,0.875221,0.302984,0.926445,0.149023,0.597418,0.31385,0.822956,0.585428,0.961905,0.483742,0.0283138,0.121235,0.0448488,0.725337,0.886632,0.820548,0.0924023,0.841679,0.372652,0.4934,0.287963,0.468346,0.0127466,0.437725,0.768484,0.204605,0.888717,0.423265,0.601114,0.531448,0.914869,0.258834,0.16785,0.689026,0.0923167,0.15223,0.814328,0.307776,0.986283,0.474718,0.637838,0.0571116,0.400912,0.36573,0.761312,0.554172,0.91142,0.205941,0.472097,0.945902,0.781921,0.0761095,0.555159,0.325256,0.466341,0.593589,0.382099,0.128733,0.200986,0.68636,0.463555,0.526799,0.0852398,0.131305,0.98392,0.42445,0.596665,0.00546175,0.581986,0.740157,0.504784,0.351828,0.590105,0.609185,0.464797,0.321033,0.851209,0.574962,0.327645,0.232876,0.291096,0.260536,0.795933,0.54497,0.401081,0.752187,0.53855,0.103874,0.785421,0.222367,0.715528,0.614677,0.195803,0.496333,0.00936872,0.165895,0.743219,0.506618,0.451442,0.055258,0.971618,0.520929,0.0288425,0.144265,0.189842,0.881024,0.148042,0.592845,0.439297,0.311626,0.540437,0.797751,0.661793,0.350401,0.276286,0.0903351,0.530361,0.789018,0.220186,0.459869,0.234938,0.938044,0.537777,0.8381,0.979639,0.719736,0.0770412,0.599993,0.350327,0.221273,0.103892,0.458699,0.371244,0.181864,0.0832618,0.895573,0.103423,0.786098,0.396147,0.00997734,0.478465,0.0362059,0.0808254,0.290956,0.17136,0.458103,0.564332,0.865914,0.152163,0.720827,0.161878,0.341697,0.785705,0.782543,0.316167,0.0358973,0.158545,0.351785,0.360565,0.313033,0.210595,0.400838,0.53723,0.974773,0.894979,0.83653,0.528175,0.760576,0.990733,0.632343,0.803963,0.761238,0.925048,0.29177,0.513375,0.606786,0.804232,0.815603,0.068336,0.705857,0.766271,0.891789,0.00546587,0.719351,0.761797,0.0452846,0.843812,0.682026,0.781662,0.702763,0.135675,0.343118,0.909213,0.260847,0.658434,0.923257,0.246014,0.533079,0.922605,0.779668,0.780008,0.209311,0.108087,0.50923,0.222704,0.639397,0.34943,0.421617,0.668089,0.584983,0.0267967,0.596314,0.192871,0.938057,0.304153,0.147581,0.529743,0.888553,0.657484,0.99326,0.637728,0.40318,0.327282,0.100569,0.0239375,0.838638,0.59578,0.979329,0.221002,0.668053,0.272562,0.0372613,0.281888,0.0302911,0.078182,0.261068,0.232367,0.26468,0.132668,0.616068,0.634481,0.466844,0.665779,0.624524,0.725011,0.344537,0.203102,0.360025,0.103467,0.944187,0.612576,0.620335,0.733923,0.0958143,0.145207,0.614527,0.299103,0.563933,0.85053,0.698949,0.14258,0.523724,0.45122,0.360852,0.110285,0.226427,0.413428,0.159671,0.0216188,0.17971,0.431738,0.54928,0.0768384,0.980921,0.632383,0.930349,0.0820863,0.710143,0.0454802,0.949453,0.37282,0.209434,0.658083,0.0578872,0.800666,0.92848,0.728968,0.475313,0.884871,0.979638,0.751094,0.598395,0.171465,0.294155,0.750026,0.165857,0.864043,0.563177,0.427754,0.792559,0.0530971,0.972211,0.597611,0.0745093,0.340601,0.644713,0.959795,0.109692,0.305515,0.591449,0.828094,0.0861571,0.120838,0.223091,0.981568,0.166645,0.0729476,0.333958,0.892255,0.1126,0.754075,0.473374,0.843771,0.483545,0.150651,0.351924,0.774598,|0.995182,0.459256,0.528724,0.580993,0.0393303,0.403556,0.419775,0.950169,0.38912,0.117929,0.136744,0.359881,0.582208,0.190388,0.342806,0.552194,0.273606,0.178618,0.523617,0.334083,0.891026,0.568239,0.969209,0.494199,0.794178,0.978808,0.109017,0.0553336,0.823243,0.565346,0.730326,0.660578,0.226143,0.952278,0.00178391,0.553241,0.410086,0.874835,0.454157,0.860446,0.192497,0.487827,0.976416,0.892462,0.944817,0.640975,0.397919,0.778461,0.613903,0.538861,0.824817,0.664174,0.681547,0.710072,0.888377,0.171712,0.93401,0.769412,0.541209,0.752397,0.425602,0.985611,0.0222296,0.68014,0.729371,0.258218,0.749877,0.718885,0.622122,0.846294,0.36502,0.640901,0.305494,0.673415,0.0274837,0.614862,0.0823553,0.836183,0.833261,0.307792,0.700809,0.17307,0.846372,0.74268,0.301219,0.0511678,0.877735,0.402694,0.6696,0.212655,0.27528,0.230942,0.321882,0.825825,0.942968,0.0950745,0.545006,0.0612891,0.421877,0.652466,0.0164242,0.171859,0.277079,0.804132,0.887872,0.847769,0.108862,0.268302,0.117278,0.664228,0.870739,0.183499,0.845423,0.276567,0.199901,0.7031,0.634542,0.618619,0.907633,0.829852,0.250764,0.364805,0.681546,0.435447,0.515107,0.364371,0.213351,0.530812,0.962437,0.136999,0.348733,0.663992,0.530981,0.757443,0.280116,0.847576,0.773025,0.354734,0.613345,0.631814,0.277399,0.0103095,0.806456,0.983668,0.384669,0.0118641,0.798127,0.109016,0.00856239,0.165641,0.987791,0.479245,0.121215,0.0797049,0.832314,0.497668,0.48889,0.579447,0.639047,0.995295,0.30931,0.31944,0.297436,0.311471,0.699221,0.915135,0.18849,0.981796,0.985132,0.811448,0.103919,0.216871,0.444428,0.485055,0.385721,0.327215,0.102921,0.606102,0.202498,0.463311,0.165724,0.332399,0.649524,0.286237,0.828529,0.140321,0.265683,0.38598,0.930648,0.825069,0.973664,0.832973,0.0762538,0.754617,0.804397,0.550508,0.864492,0.499599,0.476523,0.153388,0.87469,0.0877901,0.707155,0.139983,0.551417,0.740736,0.671688,0.178589,0.525916,0.789477,0.500183,0.732627,0.220158,0.198418,0.759112,0.672669,0.274919,0.73868,0.435076,0.95767,0.430642,0.874622,0.237816,0.274343,0.445017,0.492861,0.736496,0.130117,0.267367,0.0774618,0.957606,0.510065,0.64572,0.70476,0.946428,0.604215,0.564897,0.00228298,0.109176,0.523666,0.876661,0.21315,0.543559,0.362984,0.500583,0.541241,0.514706,0.0697617,0.175124,0.298861,0.364074,0.376989,0.896033,0.45361,0.975191,0.931957,0.439749,0.354184,0.75452,0.806833,0.562678,0.515858,0.781359,0.812148,0.204585,0.383754,0.840719,0.684253,0.189842,0.231942,0.971843,0.157215,0.649058,0.653159,0.190126,0.187786,0.501358,0.402227,0.272494,0.875446,0.611168,0.31099,0.589658,0.72402,0.120255,0.628124,0.396163,0.841241,0.164065,0.797804,0.420196,0.158343,0.273141,0.124922,0.892346,0.193541,0.134207,0.395166,0.712065,0.637752,0.434165,0.377862,0.989089,0.661758,0.792652,0.865771,0.672755,0.782615,0.807255,0.967026,0.846543,0.125692,0.578763,0.740365,0.228974,0.29568,0.113506,0.96327,0.831666,0.738212,0.149542,0.486635,0.54067,0.20355,0.837046,0.949911,0.975661,0.627636,0.205551,0.488759,0.0961093,0.555846,0.998081,0.0975694,0.945656,0.3824,0.105421,0.663118,0.545916,0.0862924,0.616481,0.821923,0.57096,0.92591,0.23741,0.753207,0.641577,0.912238,0.836832,0.900838,0.709619,0.481977,0.748475,0.516568,0.295787,0.445289,0.305452,0.555447,0.125842,0.24445,0.0145873,0.784526,0.783331,0.767411,0.20875,0.776957,0.289874,0.0457327,0.52759,0.95644,0.495896,0.0316994,0.464339,0.816922,0.697238,0.399685,0.619868,0.809124,0.926081,0.149356,0.199541,0.691556,0.71445,0.264101,0.341762,0.636638,0.0759014,0.914468,0.611665,0.38921,0.862709,0.130949,0.890374,0.237,0.691093,0.525759,0.0376397,0.0517962,0.14773,0.586875,0.771437,0.319372,0.582614,0.807905,0.564024,0.202256,0.0268612,0.212912,0.285856,0.525655,0.702574,0.888309,0.430611,0.811993,0.577182,0.653686,0.347208,0.429465,0.692127,0.407872,0.222054,0.951407,0.0659816,0.263766,0.495515,0.265334,0.905911,0.761642,0.910812,0.468055,0.0529221,0.372463,0.654553,0.376439,0.593678,0.504838,0.149199,0.100237,0.0743418,0.19906,0.0704727,0.357924,0.22465,0.676481,0.592667,0.63757,0.174976,0.0670049,0.397804,0.380369,0.336979,0.546134,0.101583,0.670279,0.250794,0.475444,0.332295,0.0385709,0.138572,0.0667408,0.113083,0.0515633,0.263487,0.173225,0.933516,0.668709,0.559191,0.000949979,0.535954,0.48796,0.210883,0.481282,0.948522,0.736007,0.155999,0.386784,0.794273,0.903861,0.770822,0.706257,0.315398,0.556799,0.702823,0.818302,0.505108,0.747368,0.780721,0.601265,0.456207,0.129017,0.234826,0.484702,0.243843,0.932427,0.605995,0.599899,0.525772,0.751017,0.923096,0.502392,0.191153,0.516106,0.720107,0.816678,0.845628,0.136395,0.0298845,0.200573,0.83777,0.161524,0.969591,0.640899,0.841807,0.8599,0.421268,0.840949,0.355191,0.187532,0.881873,0.110201,0.863375,0.663868,0.190588,0.971844,0.79072,0.143224,0.849883,0.155282,0.938818,0.754048,0.280515,0.344432,0.562107,0.773721,0.305259,0.701004,0.221795,0.183698,0.162531,0.0400605,0.731045,0.976785,0.914606,0.932651,0.869276,0.605021,0.496715,0.947471,0.93626,0.439338,0.626506,0.864021,0.717902,0.212172,0.30855,0.0874463,0.897151,0.42157,0.643047,0.506674,0.314186,0.864336,0.219822,0.480924,0.0636011,0.785658,0.506885,0.633091,0.285441,0.240449,0.943904,0.856276,0.759865,0.561565,0.446717,0.799253,0.521949,0.318798,0.446301,0.406567,0.939119,0.406016,0.175814,0.488873,0.831613,0.500721,0.146774,0.943168,0.924953,0.361098,0.825109,0.695264,0.155286,0.921749,0.876989,0.131113,0.142964,0.496675,0.833544,0.212326,0.249478,0.685428,0.7675,0.91262,0.600915,0.711267,0.392231,0.982846,0.250508,0.539172,0.185414,0.748394,0.341049,0.5172,0.399723,0.152721,0.0680164,0.563641,0.560944,0.955652,0.327538,0.926245,0.814288,0.877499,0.806857,0.911338,0.943203,0.526367,0.550216,0.924113,0.313366,0.130792,0.917655,0.05153,0.818115,0.807239,0.823847,0.110521,0.841694,0.877986,0.842241,0.722057,0.101786,0.679271,0.201428,0.454113,0.110398,0.180793,0.313205,0.385131,0.527673,0.902422,0.516714,0.138694,0.362069,0.508664,0.431133,0.741565,0.910856,0.0501204,0.282365,0.66393,0.882648,0.765244,0.176905,0.622903,0.691671,0.571945,0.50888,0.832626,0.352425,0.572889,0.563131,0.958664,0.487275,0.852257,0.639839,0.888899,0.207823,0.0200368,0.305864,0.818547,0.930165,0.0346119,0.576978,0.893732,0.323501,0.499155,0.858118,0.624024,0.0131162,0.789073,0.601371,0.216821,0.510764,0.69512,0.488386,0.14494,0.685141,0.328995,0.652856,0.266438,0.440841,0.406467,0.0695979,0.123994,0.743724,0.431025,0.122491,0.652398,0.628339,0.16593,0.748051,0.217934,0.746318,0.33509,0.873275,0.318078,0.727833,0.995077,0.126059,0.92534,0.0274577,0.138304,0.610978,0.73359,0.323664,0.654762,0.307666,0.473135,0.0886285,0.493508,0.0557396,0.63359,0.0588461,0.296863,0.89387,0.222895,0.738915,0.662921,0.701905,0.0740039,0.64862,0.850339,0.519206,0.780596,0.400942,0.0556322,0.692555,0.987404,0.539616,0.0838179,0.928558,0.69334,0.0127011,0.0611629,0.745135,0.604173,0.0995652,0.475969,0.873289,0.822616,0.281246,0.72925,0.502053,0.896157,0.26774,0.447812,0.0835959,0.786832,0.349824,0.963373,0.0773196,0.241087,0.0929322,0.166521,0.137881,0.64754,0.42336,0.985689,0.814482,0.741533,0.671359,0.221196,0.800076,0.259627,0.264282,0.845023,0.521482,0.832894,0.836957,0.966261,0.506551,0.258081,0.695471,0.988085,0.0544632,0.34737,0.818239,0.773046,0.68911,0.925337,0.302332,0.358878,0.298879,0.378689,0.415695,0.730403,0.582765,0.255792,0.689592,0.833908,0.818672,0.457214,0.868574,0.504584,0.633065,0.727711,0.386452,0.375297,0.363411,0.383726,0.257435,0.524043,0.0660777,0.505441,0.0340587,0.261789,0.997904,0.805589,0.0958156,0.113554,0.685371,0.00475609,0.338423,0.0455483,0.489428,0.316459,0.931109,0.582322,0.942407,0.666186,0.958304,0.0257838,0.68821,0.508035,0.736698,0.684395,0.114913,0.207699,0.548759,0.614599,0.79495,0.415564,0.196613,0.814393,0.302522,0.830824,0.557749,0.612567,0.35207,0.404236,0.478527,0.461224,0.638001,0.924361,0.856478,0.412805,0.106045,0.172281,0.854728,0.626229,0.284542,0.12256,0.80618,0.282184,0.16535,0.646479,0.155033,0.61189,0.079641,0.12192,0.703136,0.511729,0.539908,0.0225248,0.623541,0.373324,0.162512,0.526487,0.957499,0.119273,0.81033,0.336102,0.892656,0.344132,0.362049,0.108875,0.766166,0.561446,0.107479,0.210498,0.786297,0.863248,0.163902,0.763205,0.153265,0.718977,0.640851,0.081221,0.0738679,0.445725,0.103786,0.792931,0.851261,0.798842,0.411293,0.611228,0.0442539,0.0103833,0.333645,0.306447,0.203762,0.774049,0.66619,0.864654,0.977562,0.0333132,0.550134,0.22217,0.771157,0.0171831,0.88827,0.693244,0.0260572,0.951539,0.888722,0.157631,0.293337,0.57722,0.546551,0.208286,0.123345,0.629415,0.476058,0.647304,0.957861,0.734141,0.815561,0.088552,0.307063,0.554944,0.0275416,0.284408,0.694072,0.955368,0.940091,0.480125,0.740714,0.0998316,0.291286,0.948211,0.649056,0.031905,0.283811,0.668832,0.925735,0.400664,0.80877,0.181623,0.748155,0.207267,0.322559,0.691419,0.399778,0.956312,0.735314,0.772181,0.178077,0.567237,0.118342,0.561414,0.517181,0.446524,0.0439715,0.726216,0.4695,0.489852,0.254569,0.178545,0.0653465,0.97354,0.834183,0.00873232,0.458166,0.303336,0.356138,0.501112,0.41922,0.410861,|0.630453,0.620971,0.0126558,0.981157,0.199678,0.672052,0.680882,0.916622,0.793668,0.578478,0.972538,0.00564325,0.159531,0.933555,0.192416,0.830587,0.867756,0.639234,0.0139551,0.088441,0.00315219,0.480767,0.00425339,0.482436,0.534856,0.465343,0.394534,0.579525,0.143413,0.99759,0.801435,0.183,0.460436,0.332694,0.92683,0.503466,0.759761,0.234103,0.886363,0.149408,0.85087,0.421045,0.235345,0.3387,0.456256,0.0219413,0.752267,0.181889,0.882379,0.832621,0.922703,0.649211,0.0522724,0.00741732,0.353526,0.985462,0.903822,0.75343,0.444666,0.225928,0.836953,0.350742,0.624833,0.873741,0.119272,0.441123,0.290766,0.198746,0.0376249,0.308803,0.28318,0.237917,0.386077,0.92196,0.84898,0.696119,0.0434836,0.867792,0.483249,0.434276,0.856658,0.373241,0.730926,0.409058,0.861678,0.640763,0.020875,0.344283,0.72347,0.582924,0.253807,0.74876,0.265413,0.0267171,0.972021,0.800007,0.606683,0.73047,0.618137,0.73238,0.407131,0.445524,0.463266,0.402045,0.61258,0.46623,0.486896,0.110579,0.0328823,0.905064,0.846749,0.645664,0.46658,0.280794,0.845985,0.176436,0.831214,0.837631,0.435278,0.586674,0.486382,0.252719,0.296439,0.615365,0.185081,0.611043,0.487452,0.455895,0.501932,0.997934,0.337035,0.213743,0.68547,0.129342,0.576685,0.580927,0.264621,0.0694242,0.0961752,0.856982,0.19535,0.350446,0.264156,0.146257,0.783597,0.336516,0.0815404,0.477066,0.129154,0.306002,0.270867,0.288213,0.197112,0.883523,0.0459688,0.662538,0.652,0.714199,0.00767857,0.217093,0.317256,0.223875,0.197781,0.814757,0.671142,0.0303987,0.874167,0.797077,0.0710024,0.205376,0.249997,0.610651,0.00996387,0.321319,0.707036,0.226676,0.709493,0.923623,0.31638,0.175278,0.673614,0.63083,0.373674,0.891231,0.994282,0.821426,0.400611,0.585694,0.27285,0.963663,0.608842,0.549306,0.397097,0.26339,0.552341,0.370426,0.677284,0.391325,0.558197,0.996735,0.715087,0.121127,0.343251,0.157543,0.290966,0.568646,0.627274,0.0294823,0.246322,0.307158,0.782972,0.432767,0.799543,0.647345,0.832523,0.639557,0.014076,0.756477,0.0404806,0.511033,0.709401,0.737037,0.667239,0.9755,0.257897,0.902548,0.465782,0.434942,0.555328,0.201749,0.443066,0.889901,0.361112,0.495732,0.226958,0.902725,0.215824,0.0293961,0.341702,0.778142,0.464951,0.900677,0.297304,0.444548,0.987347,0.103418,0.539142,0.151404,0.558506,0.804704,0.853242,0.380817,0.609024,0.137625,0.143838,0.504846,0.456155,0.409308,0.865353,0.57851,0.0120403,0.483947,0.127537,0.476583,0.0324923,0.476349,0.863215,0.00835979,0.556916,0.0521559,0.101186,0.71311,0.400585,0.776841,0.144553,0.229513,0.770607,0.730767,0.212732,0.913426,0.11828,0.693275,0.823415,0.0596296,0.146864,0.277312,0.253373,0.545951,0.217198,0.910613,0.330353,0.466624,0.286548,0.141555,0.326364,0.854363,0.219875,0.977198,0.343703,0.804314,0.443125,0.663656,0.599891,0.479749,0.594299,0.432801,0.910539,0.644408,0.405177,0.487079,0.681522,0.181669,0.0813869,0.0536398,0.312314,0.466166,0.508257,0.421095,0.312523,0.616928,0.320541,0.0857259,0.0298387,0.544367,0.969607,0.0671532,0.990706,0.281126,0.721995,0.0498825,0.437712,0.377116,0.939545,0.0859303,0.308491,0.946464,0.621271,0.668819,0.356101,0.207714,0.282495,0.85554,0.51564,0.460605,0.788329,0.726636,0.996766,0.652703,0.267417,0.44424,0.976415,0.827809,0.495459,0.172785,0.616396,0.269133,0.38826,0.576569,0.346894,0.864195,0.978613,0.739401,0.0386093,0.267338,0.432733,0.2541,0.937267,0.944633,0.19223,0.326683,0.518875,0.718921,0.40789,0.0569457,0.584634,0.942796,0.968143,0.239667,0.533143,0.706773,0.61603,0.756641,0.934278,0.020236,0.576198,0.334248,0.598254,0.423792,0.131935,0.853129,0.0996148,0.317481,0.790347,0.240096,0.912418,0.358166,0.343232,0.0582051,0.74565,0.851452,0.836362,0.783013,0.691634,0.455507,0.12543,0.600252,0.574514,0.411638,0.14206,0.822035,0.203274,0.48033,0.550484,0.772539,0.99518,0.806299,0.456117,0.9962,0.766261,0.528182,0.213709,0.812355,0.502059,0.953545,0.31366,0.879613,0.22846,0.306043,0.256442,0.106521,0.909729,0.16736,0.29978,0.382629,0.701714,0.645131,0.157245,0.926696,0.145446,0.843567,0.935707,0.161951,0.120278,0.161304,0.823484,0.702462,0.979982,0.60805,0.198626,0.351206,0.0363188,0.542517,0.901376,0.28034,0.332831,0.108248,0.961455,0.970432,0.73828,0.755766,0.289264,0.0640908,0.816149,0.281083,0.362278,0.394558,0.324466,0.175909,0.792796,0.661249,0.158575,0.14388,0.138554,0.0709088,0.329452,0.644903,0.0717847,0.982147,0.00428462,0.868634,0.706628,0.949473,0.985387,0.535094,0.91542,0.565281,0.282966,0.50462,0.134495,0.881187,0.852252,0.741968,0.35182,0.651199,0.492392,0.443428,0.0723013,0.672867,0.384612,0.63562,0.444426,0.750077,0.215428,0.805232,0.0808753,0.0984234,0.780614,0.420286,0.359832,0.459868,0.886946,0.0977415,0.373374,0.81706,0.722743,0.330287,0.156536,0.81751,0.149691,0.187524,0.809288,0.620198,0.41786,0.519714,0.0616221,0.309287,0.514404,0.0162657,0.956979,0.53647,0.429988,0.991228,0.850846,0.291502,0.589144,0.0639892,0.409747,0.13925,0.288044,0.144206,0.428835,0.486113,0.757136,0.518489,0.707743,0.330965,0.325865,0.914429,0.456654,0.289559,0.420518,0.531706,0.819938,0.789221,0.296405,0.937654,0.726106,0.336567,0.446987,0.495986,0.870422,0.213979,0.226415,0.696236,0.126184,0.726992,0.743097,0.0663059,0.937699,0.549891,0.42339,0.328142,0.0843711,0.462894,0.840992,0.629949,0.837143,0.238474,0.509614,0.810892,0.519218,0.862871,0.886639,0.289012,0.946725,0.690519,0.0250273,0.431294,0.140065,0.146066,0.903644,0.109104,0.0606885,0.0831208,0.497449,0.595152,0.72885,0.141017,0.812871,0.0975177,0.615693,0.0821926,0.79011,0.207252,0.827228,0.293005,0.500221,0.697544,0.394231,0.678403,0.116532,0.265626,0.396046,0.651421,0.441823,0.970223,0.514026,0.0217491,0.712559,0.112123,0.0670441,0.220133,0.336456,0.740635,0.209207,0.645252,0.274722,0.175858,0.161854,0.545183,0.764473,0.872707,0.306562,0.60521,0.0761642,0.195656,0.791938,0.808284,0.877367,0.96397,0.897733,0.879601,0.500911,0.275053,0.187906,0.769414,0.694816,0.410971,0.546826,0.113688,0.382356,0.538366,0.543763,0.999542,0.318636,0.346433,0.00699633,0.597282,0.863768,0.759265,0.879902,0.57578,0.975746,0.373385,0.558179,0.863182,0.84252,0.475623,0.476568,0.956558,0.301314,0.508374,0.591649,0.99628,0.935028,0.991703,0.51024,0.823864,0.511617,0.355124,0.176023,0.724504,0.155639,0.21805,0.477349,0.843907,0.688467,0.0486655,0.190656,0.465889,0.625524,0.716916,0.22898,0.9752,0.90261,0.702549,0.683914,0.866332,0.670056,0.6011,0.243685,0.145103,0.494094,0.120167,0.192219,0.41794,0.242794,0.835708,0.676204,0.426951,0.89239,0.412911,0.122651,0.0416451,0.563553,0.675845,0.180158,0.142821,0.361245,0.475257,0.67336,0.414683,0.00959837,0.399758,0.0525407,0.956665,0.211693,0.227753,0.57857,0.718444,0.258694,0.1687,0.374268,0.101935,0.261418,0.34126,0.44991,0.14517,0.279933,0.4716,0.616481,0.904869,0.482495,0.745626,0.907529,0.21269,0.610766,0.0546373,0.37356,0.546381,0.0893873,0.523402,0.886033,0.634175,0.0474535,0.38906,0.154546,0.316376,0.771868,0.396423,0.949516,0.312609,0.586958,0.277285,0.427427,0.927737,0.21779,0.551222,0.191488,0.415157,0.109024,0.748875,0.418167,0.492325,0.280836,0.276311,0.47026,0.0808043,0.69006,0.674341,0.308516,0.371448,0.542615,0.625885,0.79319,0.94315,0.315004,0.54155,0.99178,0.130564,0.940975,0.340491,0.237606,0.0876846,0.916861,0.733672,0.894003,0.744685,0.530299,0.127938,0.364045,0.875326,0.218002,0.864348,0.847017,0.105775,0.540987,0.562216,0.307611,0.5982,0.493757,0.351397,0.580032,0.348521,0.154709,0.118818,0.278672,0.00565362,0.976301,0.263822,0.974826,0.682385,0.077074,0.0370886,0.635286,0.674894,0.726341,0.639578,0.871148,0.700926,0.396948,0.436059,0.370511,0.417842,0.522132,0.464634,0.0517538,0.738419,0.334147,0.288217,0.694717,0.102216,0.22684,0.132144,0.393809,0.154789,0.522824,0.243418,0.394219,0.366927,0.778328,0.25904,0.617192,0.828277,0.57596,0.652518,0.371505,0.994223,0.210462,0.293067,0.16926,0.514122,0.178476,0.118901,0.952246,0.665751,0.938568,0.43773,0.634433,0.200467,0.390084,0.358791,0.822662,0.19577,0.961508,0.933402,0.0953344,0.976802,0.726141,0.159168,0.851767,0.290659,0.757335,0.266079,0.00103623,0.927693,0.573701,0.378236,0.445832,0.183639,0.556276,0.309365,0.364819,0.984451,0.520742,0.805559,0.6272,0.0891542,0.734864,0.574385,0.871222,0.886614,0.300803,0.98129,0.296738,0.971486,0.917489,0.0495861,0.312313,0.291899,0.548923,0.131979,0.591241,0.23339,0.829934,0.823017,0.450527,0.311217,0.376554,0.0281389,0.548026,0.954365,0.62101,0.534346,0.34371,0.664244,0.220575,0.045542,0.371724,0.806596,0.962416,0.942925,0.464116,0.0381593,0.0267586,0.510859,0.254028,0.743665,0.134854,0.849854,0.836767,0.747154,0.633518,0.800844,0.301311,0.134529,0.504906,0.961709,0.657188,0.252109,0.42907,0.0866551,0.362144,0.585325,0.105722,0.00889838,0.640983,0.186859,0.117914,0.174452,0.795762,0.40724,0.707416,0.0658743,0.700525,0.378694,0.24483,0.838237,0.499297,0.248483,0.177298,0.355072,0.498571,0.0279914,0.240517,0.633835,0.37561,0.992425,0.761629,0.525401,0.222416,0.819646,0.968394,0.835038,0.760357,0.634755,0.826203,0.77001,0.882393,0.158405,0.265353,0.605688,0.633828,0.327911,0.412245,0.356296,0.459824,0.566428,0.244422,0.417036,|0.401767,0.556073,0.770836,0.863844,0.966817,0.24722,0.478934,0.57015,0.412147,0.68368,0.432039,0.329626,0.347728,0.175959,0.130773,0.962131,0.13708,0.128391,0.906255,0.377555,0.642999,0.39908,0.346036,0.158798,0.994822,0.44678,0.227969,0.418066,0.489668,0.0448095,0.227765,0.756553,0.683463,0.185095,0.68094,0.341615,0.869342,0.440584,0.260555,0.150753,0.424288,0.392203,0.172517,0.283211,0.27066,0.0404745,0.502925,0.0961583,0.996857,0.196035,0.396541,0.227716,0.139575,0.167862,0.373817,0.383448,0.173189,0.263366,0.379145,0.0254312,0.523738,0.584898,0.227959,0.466313,0.628536,0.0414747,0.206564,0.349615,0.908001,0.0169935,0.87099,0.813489,0.175517,0.0191206,0.718585,0.802108,0.341945,0.0850281,0.910436,0.708379,0.209776,0.959038,0.0524715,0.884988,0.90368,0.123181,0.587852,0.297213,0.719201,0.300637,0.14119,0.0535038,0.0921337,0.516314,0.444669,0.905392,0.901861,0.711153,0.325469,0.338322,0.700402,0.801315,0.324081,0.779142,0.462297,0.129536,0.301967,0.893484,0.336815,0.113334,0.996137,0.272383,0.476837,0.850608,0.985014,0.372872,0.365538,0.430841,0.962399,0.899666,0.450108,0.271129,0.710028,0.819856,0.0750922,0.180608,0.151141,0.695776,0.0557913,0.991788,0.985784,0.925954,0.896372,0.968147,0.907176,0.24953,0.0210821,0.609312,0.557188,0.313965,0.268291,0.410763,0.881454,0.848128,0.211908,0.0467834,0.556114,0.841644,0.682076,0.947116,0.836881,0.618012,0.350042,0.995811,0.272555,0.199732,0.375674,0.988103,0.354079,0.662699,0.0392429,0.806409,0.731075,0.748342,0.216045,0.695499,0.544504,0.944735,0.664059,0.742596,0.0838019,0.420941,0.380917,0.817828,0.795316,0.577371,0.619019,0.24591,0.414128,0.337297,0.418058,0.577418,0.211491,0.736038,0.171643,0.544899,0.900594,0.836685,0.131219,0.0490271,0.70596,0.195171,0.155205,0.990871,0.439119,0.134479,0.571243,0.27879,0.597102,0.885184,0.162702,0.272437,0.839661,0.187609,0.154875,0.389814,0.560047,0.0403312,0.509274,0.306652,0.181062,0.598773,0.828043,0.561282,0.425535,0.769148,0.636504,0.406705,0.379863,0.0840345,0.0693914,0.980918,0.0479292,0.880447,0.441023,0.698346,0.252802,0.555244,0.599007,0.858695,0.000828028,0.0412267,0.490452,0.751697,0.43483,0.00460339,0.757038,0.994916,0.474419,0.0333536,0.520331,0.15973,0.577739,0.642188,0.0371249,0.316093,0.828139,0.822604,0.433325,0.992878,0.538685,0.464619,0.976509,0.592899,0.961319,0.660179,0.852309,0.56819,0.15362,0.120874,0.10705,0.967762,0.846102,0.152765,0.486547,0.274617,0.216425,0.803884,0.0807679,0.517953,0.987857,0.398305,0.158272,0.532493,0.662097,0.445142,0.502438,0.735043,0.150249,0.784989,0.730444,0.398108,0.258816,0.0311371,0.234623,0.993188,0.0172135,0.366198,0.226028,0.887843,0.664672,0.978988,0.580274,0.814466,0.981721,0.989409,0.0249442,0.672208,0.963086,0.130736,0.974763,0.258913,0.704021,0.675245,0.137625,0.313729,0.40854,0.690314,0.960507,0.939061,0.310827,0.744003,0.55002,0.974924,0.862641,0.743654,0.592223,0.49818,0.943245,0.113213,0.739053,0.200754,0.435109,0.83422,0.0854969,0.877751,0.940751,0.748527,0.530851,0.313251,0.50752,0.313052,0.611054,0.480063,0.231584,0.914382,0.255729,0.0358775,0.212974,0.668635,0.34033,0.455219,0.224035,0.782506,0.0300437,0.640159,0.292618,0.72263,0.028075,0.768251,0.789442,0.343346,0.0574356,0.732278,0.820653,0.592558,0.0538663,0.813125,0.578593,0.264636,0.897644,0.889456,0.616196,0.175406,0.192669,0.825278,0.0155514,0.969911,0.584207,0.681146,0.0295197,0.758576,0.287455,0.400372,0.399082,0.332784,0.0259673,0.199819,0.324994,0.198343,0.0633014,0.297629,0.310198,0.849823,0.17259,0.606665,0.808621,0.0515001,0.457492,0.960473,0.710422,0.539731,0.284201,0.83155,0.100353,0.00380689,0.663985,0.398769,0.546719,0.699159,0.0782126,0.894135,0.389221,0.839918,0.275319,0.767466,0.353384,0.677317,0.47438,0.239828,0.70068,0.272401,0.826121,0.603589,0.229026,0.14378,0.835679,0.362669,0.245878,0.189221,0.020579,0.0743405,0.942833,0.85086,0.256588,0.374881,0.745916,0.583426,0.0915928,0.57886,0.176656,0.0858076,0.259625,0.152501,0.0371183,0.579369,0.93502,0.885168,0.0753272,0.71319,0.194349,0.0984449,0.863733,0.0613174,0.842582,0.49376,0.745763,0.899751,0.468513,0.648933,0.957366,0.520112,0.170031,0.468066,0.257864,0.612389,0.100615,0.174054,0.676513,0.65197,0.274696,0.419111,0.308094,0.718313,0.955091,0.898136,0.108496,0.512512,0.385764,0.79575,0.423948,0.0615959,0.409431,0.0664023,0.797467,0.380811,0.934394,0.61318,0.961881,0.252395,0.359059,0.915683,0.00174206,0.156851,0.367142,0.748324,0.490492,0.947016,0.328011,0.206083,0.977993,0.597047,0.58243,0.983535,0.393825,0.655147,0.715823,0.162587,0.397296,0.901938,0.707393,0.0916631,0.135164,0.174072,0.144981,0.620001,0.342292,0.655201,0.788818,0.81418,0.138235,0.186168,0.512565,0.0489299,0.805143,0.444957,0.790704,0.0779406,0.473708,0.444666,0.781202,0.128383,0.486906,0.619855,0.127753,0.59508,0.560527,0.0180537,0.281724,0.388355,0.435525,0.554633,0.679369,0.225932,0.0684639,0.561703,0.408417,0.268465,0.407727,0.971422,0.0774439,0.250447,0.847152,0.71392,0.0184755,0.353034,0.105106,0.212541,0.397102,0.52457,0.10653,0.116478,0.951846,0.861938,0.767612,0.215942,0.566255,0.102299,0.882402,0.837115,0.243986,0.0571938,0.023312,0.350099,0.734075,0.704928,0.499444,0.116905,0.816281,0.942398,0.984553,0.239341,0.0661871,0.926128,0.550076,0.811579,0.432205,0.873301,0.7216,0.410258,0.39887,0.878695,0.989698,0.852236,0.368485,0.861205,0.66991,0.0717461,0.748241,0.0197072,0.853329,0.217908,0.999882,0.52785,0.0204861,0.925535,0.101509,0.691432,0.621111,0.219489,0.794612,0.160798,0.448281,0.9864,0.870936,0.227255,0.729335,0.708549,0.327389,0.00779289,0.825195,0.232493,0.148965,0.0122517,0.775867,0.977773,0.562797,0.621782,0.532352,0.757143,0.676365,0.858542,0.9933,0.703845,0.105456,0.676794,0.446666,0.359325,0.809907,0.761477,0.21503,0.689455,0.52763,0.274532,0.203491,0.384644,0.845808,0.473657,0.800654,0.026749,0.00197458,0.498223,0.168752,0.0205141,0.089358,0.189911,0.546801,0.403807,0.719441,0.774211,0.483957,0.0413231,0.397303,0.202981,0.873688,0.735392,0.592558,0.403328,0.726543,0.930213,0.927225,0.193995,0.34926,0.570142,0.616661,0.85598,0.352267,0.126624,0.140479,0.810163,0.945856,0.684747,0.919057,0.458204,0.218468,0.967154,0.399703,0.440345,0.949641,0.928835,0.276151,0.231433,0.218977,0.338201,0.235293,0.450917,0.860438,0.888595,0.97345,0.757875,0.72459,0.78861,0.0984404,0.830472,0.762422,0.739804,0.199435,0.271567,0.82106,0.436819,0.790514,0.0348956,0.433264,0.902112,0.656601,0.0555803,0.272717,0.542363,0.894294,0.797183,0.700371,0.735186,0.330082,0.101903,0.570993,0.238349,0.300575,0.548255,0.626967,0.0535471,0.877523,0.705988,0.296839,0.675684,0.694298,0.00871342,0.900502,0.829591,0.0841233,0.161358,0.557693,0.836986,0.284044,0.0891126,0.806263,0.688284,0.325307,0.296289,0.286313,0.191212,0.332114,0.675629,0.775734,0.0570145,0.474356,0.855366,0.779136,0.678519,0.628528,0.126029,0.0267574,0.560041,0.910781,0.903185,0.29017,0.643982,0.103378,0.349228,0.038501,0.816193,0.376684,0.184984,0.142535,0.994178,0.605985,0.55583,0.695898,0.870287,0.49639,0.296668,0.0401121,0.948726,0.179609,0.908725,0.734473,0.008286,0.223286,0.73657,0.640577,0.33814,0.475022,0.279318,0.0474524,0.11901,0.0253702,0.0392901,0.0124366,0.79525,0.256176,0.414535,0.318408,0.962208,0.634567,0.600035,0.269705,0.274868,0.385521,0.28329,0.648665,0.862576,0.180095,0.0447488,0.969328,0.0538339,0.273938,0.617392,0.464014,0.176222,0.277574,0.736373,0.901741,0.975846,0.992108,0.829916,0.71422,0.15043,0.89463,0.620017,0.409489,0.908382,0.7013,0.887639,0.896604,0.657998,0.91062,0.29343,0.40077,0.0266485,0.493388,0.912058,0.989871,0.0849555,0.0747204,0.471596,0.883267,0.74152,0.354674,0.470734,0.727187,0.803889,0.32685,0.0381297,0.420307,0.881702,0.137471,0.581457,0.647784,0.909269,0.910141,0.0671334,0.760701,0.0549964,0.453295,0.862861,0.662558,0.463011,0.850523,0.818252,0.108095,0.389238,0.407671,0.748807,0.223373,0.152104,0.216867,0.302794,0.435018,0.496497,0.58938,0.0253294,0.679026,0.576762,0.685528,0.642564,0.121065,0.38344,0.596097,0.814801,0.642379,0.130418,0.559248,0.485264,0.47956,0.883672,0.628154,0.235166,0.72851,0.839647,0.579949,0.556021,0.520792,0.702846,0.788659,0.686399,0.854932,0.994159,0.845815,0.423998,0.563714,0.759455,0.724132,0.520021,0.428719,0.713345,0.903809,0.642101,0.154328,0.75561,0.866874,0.953266,0.514075,0.855486,0.721885,0.769904,0.884224,0.923236,0.40634,0.358183,0.906379,0.823175,0.88062,0.461625,0.602545,0.958013,0.539645,0.600499,0.495535,0.909382,0.174864,0.622972,0.201652,0.134443,0.867092,0.482217,0.578502,0.468295,0.72897,0.938827,0.160889,0.892089,0.501462,0.546627,0.0882235,0.270823,0.619573,0.86906,0.677058,0.981075,0.318939,0.848082,0.516405,0.104248,0.651439,0.996616,0.491374,0.586237,0.69301,0.0830164,0.711497,0.334507,0.401257,0.341985,0.0881494,0.409658,0.45738,0.662773,0.00514323,0.332504,0.660442,0.657247,0.941321,0.328816,0.684431,0.423492,0.563722,0.367556,0.699014,0.982942,0.714811,0.347836,0.31529,0.355702,0.120237,0.213805,0.655576,0.735717,0.567672,0.56693,0.801973,0.981463,0.134902,0.932997,0.694973,0.960463,0.515989,0.380146,0.77547,0.542556,0.682322,0.410635,|0.0762372,0.370812,0.281961,0.570997,0.338807,0.35847,0.56369,0.195365,0.0796967,0.494923,0.925892,0.246661,0.920951,0.153808,0.284662,0.63729,0.835689,0.886347,0.235054,0.5561,0.686376,0.176391,0.117051,0.0173008,0.631508,0.982689,0.426384,0.925158,0.460532,0.631567,0.154415,0.38504,0.925623,0.551604,0.490453,0.216307,0.334232,0.203234,0.498007,0.90118,0.644038,0.229382,0.827917,0.58355,0.493473,0.59611,0.137955,0.347165,0.875993,0.955865,0.852766,0.108078,0.835929,0.876876,0.302629,0.491506,0.289658,0.606752,0.170136,0.363279,0.779458,0.77174,0.205202,0.230371,0.858124,0.742693,0.492522,0.197181,0.389104,0.262855,0.424013,0.492634,0.7146,0.128345,0.876506,0.472026,0.441164,0.0954559,0.870479,0.417765,0.0481739,0.945819,0.308068,0.805434,0.686543,0.607172,0.605442,0.777446,0.818529,0.282239,0.739963,0.0424434,0.515714,0.721379,0.575657,0.476068,0.406913,0.788231,0.0853538,0.331556,0.68181,0.302881,0.294408,0.887702,0.449588,0.524975,0.609364,0.648352,0.776185,0.244305,0.0527321,0.47807,0.128464,0.137688,0.425971,0.744381,0.550763,0.925572,0.707785,0.00258666,0.428181,0.240679,0.960737,0.415829,0.965962,0.399368,0.813054,0.308666,0.481164,0.429775,0.294268,0.614891,0.296901,0.649635,0.222707,0.977461,0.709252,0.773431,0.806826,0.581021,0.775888,0.23793,0.650825,0.217917,0.546556,0.947386,0.92064,0.608719,0.944666,0.84839,0.709493,0.957796,0.41057,0.239253,0.124625,0.283296,0.164098,0.686175,0.610164,0.512789,0.0341197,0.0233994,0.0879909,0.156899,0.36502,0.964583,0.63442,0.639953,0.50145,0.321695,0.86462,0.720864,0.700037,0.0436625,0.968553,0.373351,0.0431504,0.529497,0.047517,0.742778,0.851588,0.919923,0.82808,0.216046,0.357669,0.687225,0.546458,0.923886,0.276565,0.140852,0.492637,0.502104,0.954369,0.137991,0.626103,0.704623,0.619848,0.664698,0.488424,0.988747,0.170344,0.872523,0.695712,0.491049,0.795062,0.541759,0.606974,0.650585,0.969112,0.925337,0.787813,0.926958,0.190802,0.560724,0.172134,0.1532,0.338593,0.476155,0.843342,0.890438,0.528878,0.502109,0.690172,0.374166,0.0691905,0.661747,0.535389,0.337107,0.512566,0.412954,0.323851,0.491488,0.893889,0.0818137,0.683744,0.384815,0.623399,0.0879461,0.580386,0.520934,0.167319,0.868743,0.0728288,0.694384,0.942475,0.962028,0.684033,0.243647,0.341424,0.956603,0.261176,0.998806,0.596804,0.366812,0.60754,0.0405933,0.503695,0.212756,0.0111694,0.443263,0.672892,0.942424,0.660404,0.655279,0.705471,0.13314,0.202146,0.799748,0.458903,0.493363,0.613748,0.697886,0.860286,0.763449,0.502429,0.0323042,0.085564,0.364831,0.29149,0.538781,0.548413,0.0340074,0.326589,0.991895,0.090754,0.939048,0.00886369,0.624667,0.179703,0.994981,0.726795,0.446767,0.624328,0.58871,0.570963,0.100445,0.77381,0.352782,0.282422,0.536044,0.620497,0.323792,0.794389,0.869736,0.830812,0.175506,0.720616,0.47271,0.926919,0.940566,0.975969,0.160666,0.17667,0.488578,0.523152,0.335019,0.643357,0.863977,0.534365,0.607512,0.495546,0.872559,0.532185,0.403054,0.701544,0.0308943,0.875666,0.805264,0.975646,0.32917,0.970085,0.783408,0.830386,0.98902,0.360873,0.587595,0.989953,0.405926,0.704371,0.711483,0.649073,0.413959,0.833478,0.0888013,0.377564,0.287853,0.494386,0.816365,0.446198,0.439397,0.785897,0.591586,0.668469,0.502721,0.356985,0.332952,0.0251877,0.939458,0.811501,0.831455,0.671959,0.25745,0.46047,0.128426,0.837956,0.404971,0.822044,0.500128,0.594092,0.178648,0.360981,0.569471,0.526862,0.306564,0.437617,0.581852,0.461563,0.638751,0.704724,0.381052,0.646721,0.256427,0.232748,0.0180847,0.945578,0.814818,0.606847,0.756687,0.289606,0.217347,0.687468,0.483393,0.419906,0.767373,0.20511,0.92053,0.664881,0.629409,0.463329,0.447404,0.0617666,0.433994,0.296337,0.471699,0.610488,0.432182,0.0777841,0.000266433,0.0604737,0.898683,0.305085,0.920092,0.97933,0.880767,0.766969,0.273263,0.151601,0.0221589,0.143209,0.304339,0.451047,0.286523,0.903449,0.911466,0.821586,0.84421,0.0919755,0.0966491,0.249085,0.889998,0.647153,0.882592,0.380414,0.0738955,0.222254,0.335335,0.511131,0.208731,0.739248,0.783026,0.555866,0.871648,0.257156,0.00757003,0.962652,0.615202,0.162862,0.320476,0.0760643,0.214524,0.643965,0.00553536,0.238756,0.108351,0.482072,0.292537,0.875822,0.3517,0.0550169,0.577961,0.767958,0.896859,0.492653,0.725721,0.71501,0.238821,0.842083,0.346962,0.122836,0.863177,0.144558,0.0439903,0.317386,0.279076,0.42078,0.799002,0.691442,0.535841,0.720826,0.537412,0.395017,0.0180982,0.642718,0.470548,0.0985307,0.68435,0.543662,0.930131,0.123419,0.012588,0.0279166,0.118858,0.921634,0.187722,0.520537,0.854263,0.364756,0.601419,0.93753,0.151665,0.594437,0.787576,0.100306,0.465406,0.307005,0.107554,0.150022,0.49709,0.697952,0.819815,0.13038,0.401192,0.508562,0.6176,0.0656098,0.725386,0.762322,0.414557,0.210702,0.327841,0.620155,0.708577,0.52098,0.738256,0.118939,0.427893,0.480378,0.46056,0.994384,0.650558,0.184166,0.975464,0.474293,0.944843,0.911126,0.732545,0.535261,0.339332,0.683376,0.261557,0.88851,0.700432,0.682876,0.784583,0.468423,0.642587,0.772461,0.644777,0.93246,0.39765,0.744368,0.175255,0.476727,0.528821,0.444648,0.668926,0.235733,0.670755,0.796381,0.221916,0.749029,0.62886,0.653705,0.925469,0.514307,0.558055,0.0839851,0.888707,0.483238,0.548705,0.352386,0.723611,0.546246,0.637808,0.875825,0.930658,0.205635,0.982943,0.86211,0.0358937,0.0165485,0.178292,0.756431,0.481817,0.0447494,0.126822,0.93093,0.602806,0.143398,0.292524,0.180938,0.321238,0.55999,0.528625,0.415714,0.30201,0.57786,0.985251,0.0181062,0.15432,0.188017,0.873801,0.944263,0.303452,0.907323,0.897286,0.975645,0.0910191,0.866628,0.227275,0.313683,0.303347,0.00359857,0.542336,0.978486,0.428762,0.243795,0.245198,0.940698,0.00270706,0.225142,0.302358,0.127852,0.189623,0.169435,0.551221,0.779071,0.644857,0.991191,0.803847,0.228795,0.103594,0.388353,0.668127,0.17883,0.73483,0.457621,0.763497,0.765147,0.723544,0.353912,0.741367,0.0446787,0.909515,0.997308,0.657159,0.077623,0.89545,0.07683,0.576611,0.94655,0.169449,0.720568,0.965346,0.895979,0.648551,0.389503,0.469504,0.498195,0.0727617,0.238711,0.410116,0.719256,0.919922,0.0708452,0.686108,0.253803,0.494983,0.205085,0.481306,0.942395,0.120553,0.514044,0.299278,0.234773,0.389168,0.808425,0.219393,0.884236,0.516334,0.0674916,0.0314492,0.773274,0.560476,0.983433,0.256225,0.229773,0.113732,0.0228602,0.108366,0.346543,0.360022,0.911666,0.585427,0.778448,0.829763,0.444408,0.0628317,0.601471,0.0153521,0.0568143,0.2583,0.775713,0.323379,0.831665,0.228689,0.078346,0.11867,0.470179,0.376033,0.6514,0.48897,0.207081,0.702486,0.972497,0.51032,0.435916,0.0557069,0.867493,0.959836,0.347452,0.360135,0.436282,0.733691,0.952776,0.43341,0.107037,0.892402,0.72862,0.417469,0.23206,0.737041,0.62379,0.456683,0.257632,0.60855,0.282498,0.992719,0.282303,0.0676484,0.102958,0.345497,0.541934,0.430531,0.280364,0.707298,0.0419761,0.46178,0.597015,0.99913,0.748512,0.454378,0.60169,0.126884,0.0836036,0.488389,0.0934491,0.472933,0.194128,0.142439,0.526983,0.451071,0.691341,0.422522,0.0293825,0.172334,0.449691,0.833263,0.740749,0.0277604,0.382445,0.165731,0.54353,0.084438,0.00164998,0.394323,0.459257,0.126087,0.541985,0.623717,0.134876,0.664178,0.309053,0.578911,0.745491,0.248217,0.995974,0.884121,0.458035,0.633735,0.0608091,0.490086,0.0844281,0.0649737,0.823888,0.353636,0.0125483,0.305391,0.215643,0.00310868,0.550657,0.383382,0.229781,0.374722,0.222628,0.268197,0.726601,0.635097,0.408645,0.898832,0.0895906,0.949424,0.287098,0.875487,0.645551,0.23017,0.773969,0.912647,0.887156,0.422626,0.352253,0.398131,0.0578768,0.353731,0.937834,0.760184,0.600039,0.0545395,0.619386,0.0427274,0.202827,0.513716,0.642978,0.766582,0.0233163,0.477789,0.94071,0.624165,0.0171896,0.966951,0.276166,0.045558,0.633615,0.495457,0.577603,0.620863,0.823827,0.680958,0.93107,0.246198,0.0532469,0.819927,0.579601,0.383845,0.759152,0.764719,0.131884,0.40725,0.984096,0.262123,0.456003,0.760393,0.187457,0.793632,0.687045,0.474978,0.221229,0.413773,0.308028,0.585796,0.150605,0.89253,0.73125,0.124817,0.269999,0.250822,0.592466,0.126974,0.696571,0.782126,0.229685,0.223749,0.441488,0.713195,0.174968,0.701978,0.756449,0.162418,0.238161,0.397948,0.938759,0.469292,0.206217,0.0491152,0.987291,0.0685149,0.860175,0.567743,0.101634,0.267588,0.620876,0.459889,0.142308,0.287109,0.47449,0.435543,0.628274,0.109749,0.539946,0.251849,0.00539184,0.218551,0.770575,0.231882,0.173264,0.551634,0.477573,0.0877806,0.742596,0.66761,0.0260019,0.364735,0.875728,0.727418,0.163085,0.774562,0.927137,0.0606529,0.411416,0.341797,0.727717,0.8836,0.585182,0.902941,0.421822,0.456101,0.927367,0.528582,0.126962,0.29404,0.602217,0.842966,0.454098,0.172793,0.0976729,0.981621,0.307995,0.136608,0.888754,0.970981,0.73299,0.594663,0.235256,0.538967,0.43892,0.794822,0.566186,0.748436,0.450518,0.741273,0.314299,0.0812988,0.763639,0.307366,0.889755,0.251234,0.335852,0.302347,0.554191,0.0991271,0.290538,0.921896,0.943999,0.205762,0.728756,0.635907,0.474249,0.933158,0.755758,0.586333,0.835582,0.355504,0.051087,0.418523,0.280846,0.0788869,0.926383,0.871852,0.545026,0.361933,0.542538,0.0655059,0.424842,0.192284,0.473792,0.481091,0.15084,0.717929,0.0340495,0.751015,|0.367919,0.827767,0.302383,0.460096,0.352706,0.464315,0.907439,0.355186,0.495313,0.0512124,0.585768,0.1279,0.0798591,0.0614201,0.80862,0.0706285,0.389316,0.203541,0.949833,0.626885,0.845395,0.194607,0.251429,0.376235,0.403033,0.516802,0.364165,0.218277,0.736803,0.828079,0.691789,0.960984,0.331988,0.355233,0.316623,0.744242,0.27565,0.626667,0.409635,0.496175,0.175726,0.70241,0.196929,0.869509,0.568476,0.882083,0.668467,0.0402321,0.237787,0.129827,0.389332,0.059795,0.71147,0.966979,0.964669,0.425662,0.817433,0.572253,0.49923,0.607973,0.811749,0.107354,0.62905,0.194708,0.206622,0.281687,0.70576,0.781731,0.864663,0.63584,0.761421,0.854904,0.643809,0.733246,0.794985,0.146437,0.605203,0.952505,0.783596,0.778159,0.882014,0.0121401,0.969974,0.10271,0.222833,0.15741,0.157961,0.420153,0.891457,0.28664,0.434604,0.894129,0.256968,0.439546,0.0925437,0.791142,0.894747,0.00476152,0.234368,0.926973,0.410966,0.146333,0.0255208,0.735711,0.64486,0.447339,0.790004,0.304062,0.403005,0.718192,0.840007,0.347996,0.0620843,0.563743,0.335314,0.177256,0.880621,0.581565,0.492808,0.408557,0.846547,0.279076,0.571945,0.692481,0.0320717,0.97018,0.42312,0.516925,0.0783283,0.685965,0.893493,0.797377,0.934197,0.190399,0.787251,0.099066,0.71865,0.189048,0.37175,0.493225,0.392521,0.194438,0.0600263,0.0799944,0.762455,0.268123,0.695734,0.0559893,0.335594,0.777937,0.25019,0.98379,0.0788595,0.415851,0.0847536,0.454391,0.0618308,0.26023,0.911997,0.176509,0.744214,0.108289,0.077781,0.27425,0.961833,0.29025,0.731444,0.586859,0.723446,0.630751,0.290458,0.45727,0.0137904,0.48582,0.637747,0.412657,0.798007,0.383404,0.221432,0.556715,0.0397475,0.657458,0.44391,0.121309,0.304033,0.580804,0.806734,0.3219,0.847366,0.338156,0.69016,0.564344,0.803078,0.785573,0.967505,0.959893,0.897297,0.656889,0.0806859,0.682642,0.666519,0.626292,0.460437,0.577015,0.332397,0.857314,0.96509,0.40241,0.064846,0.250187,0.395494,0.345948,0.675824,0.69917,0.466649,0.387324,0.716587,0.106864,0.489258,0.856239,0.240867,0.970292,0.0386038,0.831552,0.164209,0.602957,0.00247639,0.442327,0.288639,0.0875051,0.376226,0.428992,0.195232,0.0420051,0.709784,0.524966,0.615346,0.062719,0.6576,0.640871,0.623335,0.473286,0.411976,0.586463,0.268151,0.125727,0.20423,0.947373,0.264433,0.0389293,0.690914,0.693112,0.393456,0.429884,0.263745,0.323744,0.18031,0.555577,0.00642401,0.230998,0.44369,0.23454,0.969972,0.288403,0.776092,0.862371,0.625581,0.934744,0.691692,0.280662,0.0387173,0.047042,0.968839,0.581551,0.436778,0.268227,0.767211,0.0557033,0.0665667,0.175072,0.267761,0.7101,0.695476,0.425655,0.335031,0.0578591,0.733115,0.373194,0.858588,0.75067,0.218161,0.317889,0.284437,0.385291,0.257047,0.633453,0.0035243,0.175866,0.943797,0.418964,0.751761,0.968836,0.555213,0.532643,0.00719416,0.306343,0.993401,0.448277,0.0326775,0.757827,0.966467,0.589702,0.225769,0.20651,0.351915,0.404271,0.332326,0.181105,0.0447085,0.456066,0.683774,0.443961,0.529935,0.850995,0.914269,0.320185,0.785702,0.989401,0.476238,0.223702,0.151574,0.990478,0.282358,0.949008,0.645536,0.580737,0.895157,0.208509,0.133089,0.337587,0.00915456,0.547619,0.169792,0.832605,0.125199,0.156074,0.0126072,0.414082,0.982291,0.677238,0.00417852,0.37493,0.927937,0.113106,0.165347,0.661333,0.588202,0.0180836,0.155943,0.203512,0.20428,0.356503,0.418884,0.0792142,0.943759,0.729935,0.54341,0.539343,0.00301224,0.581836,0.187875,0.592941,0.357261,0.0661656,0.757326,0.341457,0.756763,0.54144,0.780575,0.0167575,0.259668,0.493322,0.669002,0.997281,0.937423,0.888193,0.691469,0.470144,0.235936,0.631215,0.28044,0.882803,0.570674,0.780595,0.364083,0.718863,0.779844,0.895102,0.387353,0.529006,0.945121,0.383453,0.737198,0.137234,0.739216,0.161031,0.0764483,0.832052,0.106848,0.00983149,0.347169,0.51116,0.0881361,0.629392,0.530111,0.140081,0.468427,0.162606,0.674297,0.841981,0.700935,0.998829,0.504402,0.62102,0.0145486,0.583854,0.65015,0.806683,0.921023,0.0773827,0.536545,0.956295,0.847749,0.663931,0.338766,0.107203,0.538977,0.490742,0.337016,0.670759,0.310277,0.0895696,0.0473647,0.385955,0.649819,0.164003,0.784738,0.794234,0.0152283,0.602784,0.123399,0.182424,0.665565,0.85386,0.449256,0.319887,0.972418,0.121262,0.449139,0.989935,0.145016,0.592781,0.603013,0.865689,0.604057,0.903552,0.773784,0.302674,0.462834,0.169761,0.39933,0.747084,0.799446,0.805372,0.8119,0.460836,0.300419,0.39086,0.0694169,0.835591,0.309165,0.603566,0.988859,0.187529,0.981751,0.592704,0.353391,0.071538,0.513136,0.780823,0.228304,0.103164,0.360459,0.616235,0.449498,0.157589,0.913479,0.581076,0.710021,0.131219,0.839197,0.504908,0.422383,0.298101,0.953469,0.382183,0.284222,0.196449,0.107583,0.373931,0.0722547,0.951112,0.540743,0.331301,0.746731,0.226879,0.91618,0.923898,0.206591,0.566444,0.996681,0.743639,0.976031,0.937144,0.76715,0.599193,0.267913,0.789241,0.997936,0.657885,0.550196,0.568484,0.45458,0.312989,0.454654,0.253961,0.898666,0.799353,0.449574,0.78188,0.747805,0.288777,0.0679532,0.272136,0.587918,0.861284,0.216123,0.803656,0.349755,0.046672,0.513081,0.883263,0.363996,0.513604,0.681743,0.00278449,0.377572,0.160797,0.83672,0.814312,0.00272226,0.516537,0.999671,0.740707,0.788645,0.396822,0.444547,0.388164,0.810492,0.388998,0.140739,0.824779,0.181709,0.0408845,0.93931,0.379034,0.854328,0.45102,0.516405,0.764318,0.727433,0.546998,0.98104,0.931495,0.225569,0.120403,0.189803,0.124558,0.473329,0.51529,0.340523,0.307217,0.499868,0.52045,0.134661,0.545377,0.288025,0.385653,0.116728,0.00416547,0.943261,0.15565,0.654924,0.0030598,0.202156,0.956008,0.591389,0.670234,0.125004,0.402681,0.764649,0.863245,0.903697,0.610609,0.157391,0.951648,0.158446,0.336643,0.342732,0.496501,0.496575,0.57556,0.584052,0.945532,0.985831,0.568333,0.570681,0.297166,0.360182,0.647569,0.707387,0.812815,0.865782,0.815744,0.601465,0.151178,0.629607,0.649772,0.0856575,0.375491,0.376372,0.582283,0.263974,0.650194,0.775498,0.131723,0.775539,0.960096,0.369717,0.582041,0.164599,0.182693,0.237911,0.309079,0.572726,0.268504,0.451766,0.0623035,0.993443,0.274601,0.967788,0.796746,0.530772,0.275857,0.989397,0.564817,0.60046,0.206166,0.649181,0.0964888,0.269071,0.695196,0.528572,0.622952,0.471815,0.497573,0.271136,0.313837,0.405187,0.15564,0.475845,0.0596689,0.128121,0.407989,0.970771,0.678095,0.281489,0.915817,0.68735,0.792766,0.38348,0.870348,0.528846,0.610897,0.00135809,0.20713,0.759723,0.060116,0.791048,0.711555,0.595645,0.104063,0.548975,0.494581,0.979107,0.790904,0.519369,0.0187561,0.998361,0.318104,0.350712,0.104567,0.355548,0.552982,0.888976,0.322014,0.40231,0.879643,0.790264,0.0085665,0.632464,0.134465,0.0592673,0.761557,0.977361,0.548897,0.810667,0.936594,0.0809063,0.692123,0.319143,0.0192392,0.498416,0.19593,0.72534,0.599876,0.0901244,0.446616,0.471521,0.668094,0.57002,0.073954,0.571811,0.535098,0.134631,0.419612,0.581232,0.122376,0.594373,0.584418,0.889285,0.549822,0.0575636,0.105582,0.842483,0.455563,0.483126,0.739065,0.086839,0.955021,0.900004,0.106353,0.945121,0.268398,0.0320446,0.370264,0.405123,0.476175,0.734728,0.795611,0.175518,0.300335,0.481981,0.990192,0.317055,0.07375,0.719664,0.434499,0.124104,0.0161872,0.205775,0.130103,0.815076,0.184856,0.0282277,0.422477,0.469768,0.048182,0.736807,0.870144,0.842153,0.572955,0.462479,0.960179,0.972851,0.821583,0.58084,0.239369,0.957087,0.00925589,0.738982,0.015871,0.900095,0.722853,0.85052,0.619592,0.626322,0.406864,0.120962,0.552483,0.624018,0.311719,0.397722,0.7899,0.0649145,0.896438,0.111624,0.135602,0.271352,0.191762,0.109944,0.211079,0.290768,0.439541,0.737674,0.415721,0.0592808,0.515942,0.108091,0.33012,0.668557,0.707451,0.201405,0.808001,0.453709,0.538384,0.982798,0.82951,0.427955,0.713481,0.610857,0.43244,0.778705,0.60642,0.482708,0.184931,0.783684,0.735672,0.108223,0.751724,0.233545,0.650544,0.537576,0.0546672,0.988755,0.177514,0.830437,0.960604,0.468005,0.74408,0.741214,0.997089,0.986992,0.154928,0.167418,0.683347,0.233219,0.14104,0.792302,0.681253,0.861114,0.476275,0.413601,0.302294,0.490027,0.552421,0.0692577,0.099427,0.00140184,0.490675,0.696886,0.65745,0.483267,0.385198,0.670537,0.418173,0.956762,0.64649,0.168583,0.288294,0.52836,0.153632,0.297113,0.416844,0.619182,0.593614,0.819496,0.681725,0.535538,0.618505,0.139015,0.342315,0.473083,0.266145,0.768528,0.979553,0.311287,0.322219,0.131647,0.449084,0.452126,0.848568,0.516741,0.798505,0.532435,0.385233,0.000890613,0.693909,0.420202,0.151053,0.0486002,0.463155,0.877939,0.413616,0.0777112,0.826261,0.468916,0.924512,0.386399,0.913196,0.380607,0.530206,0.936731,0.52148,0.322518,0.166589,0.517554,0.669778,0.376636,0.329086,0.125379,0.564617,0.670888,0.323287,0.480178,0.00204009,0.661411,0.62798,0.366528,0.884253,0.512342,0.639621,0.250493,0.729785,0.856578,0.54504,0.875676,0.243279,0.65128,0.274311,0.9075,0.107824,0.149616,0.224075,0.982647,0.680674,0.677125,0.44785,0.827183,0.842823,0.588121,0.354278,0.0341927,0.521707,0.0840892,0.730257,0.341664,0.19376,0.0659115,0.964194,0.213007,0.719908,0.626011,0.834827,0.335959,0.34428,0.40408,0.493664,0.847376,0.383555,0.604449,0.249897,0.822602,0.833554,0.628167,0.927178,0.620295,0.960728,0.758029,0.868279,|0.451873,0.70307,0.0233457,0.849594,0.378002,0.279109,0.352337,0.290703,0.582974,0.0449383,0.492465,0.0248731,0.737231,0.62055,0.225819,0.412779,0.456215,0.757658,0.406751,0.465008,0.530082,0.269455,0.419547,0.642906,0.0487776,0.567745,0.950963,0.764532,0.0427557,0.103743,0.289475,0.38452,0.602139,0.120794,0.240888,0.688486,0.704585,0.257828,0.651241,0.119491,0.0489795,0.954835,0.0152091,0.914546,0.693711,0.291919,0.909893,0.244915,0.429004,0.524004,0.528642,0.530517,0.827728,0.584845,0.919944,0.528337,0.0508333,0.301264,0.857597,0.791964,0.463515,0.148613,0.0555338,0.673747,0.426074,0.912313,0.49436,0.602771,0.130164,0.965024,0.87691,0.137874,0.735903,0.153059,0.279927,0.266688,0.517285,0.278534,0.103833,0.927257,0.897193,0.317123,0.301755,0.0356446,0.647365,0.804621,0.264005,0.422351,0.976104,0.716749,0.958469,0.95983,0.378732,0.227868,0.901514,0.891144,0.830935,0.824279,0.122524,0.505273,0.232876,0.819888,0.0936344,0.5238,0.942334,0.627892,0.908613,0.168421,0.319286,0.959723,0.248281,0.833814,0.0673167,0.0669554,0.133126,0.841075,0.221746,0.292413,0.936948,0.428957,0.301183,0.822961,0.182807,0.454506,0.263758,0.567649,0.205481,0.569502,0.159175,0.895628,0.502543,0.951941,0.525314,0.602042,0.4577,0.62549,0.582884,0.0465997,0.312753,0.493599,0.332209,0.946258,0.754068,0.0249772,0.76052,0.148915,0.777757,0.868429,0.285633,0.141972,0.00575036,0.996227,0.218371,0.882698,0.350052,0.0872964,0.147626,0.858498,0.837432,0.734663,0.506707,0.359587,0.482748,0.264253,0.638397,0.21054,0.786883,0.571462,0.732507,0.569839,0.78736,0.892122,0.0378008,0.680675,0.586487,0.0846351,0.892704,0.643245,0.803862,0.0285882,0.156806,0.0904939,0.770661,0.000192225,0.292461,0.935266,0.998325,0.359858,0.455529,0.41452,0.501671,0.333546,0.356838,0.0990703,0.645375,0.0429546,0.488872,0.307756,0.84613,0.179301,0.901483,0.0148237,0.559328,0.526942,0.651183,0.980588,0.55988,0.390169,0.186006,0.50374,0.142407,0.469436,0.579537,0.878745,0.728105,0.258137,0.118577,0.493783,0.294454,0.163109,0.750077,0.446936,0.703839,0.920329,0.00905156,0.551347,0.402846,0.691996,0.0116776,0.054947,0.657766,0.274774,0.650511,0.784188,0.998309,0.751187,0.482694,0.00347251,0.757594,0.893538,0.573507,0.943017,0.887627,0.773766,0.462839,0.395133,0.593116,0.0380233,0.602236,0.82344,0.474759,0.228826,0.0612462,0.0780292,0.0502428,0.275954,0.0136661,0.0785214,0.823625,0.519031,0.0165081,0.166418,0.736313,0.693482,0.119498,0.521975,0.567582,0.146799,0.282954,0.39772,0.693888,0.856893,0.521004,0.606766,0.307541,0.360156,0.887429,0.37816,0.424448,0.7538,0.79277,0.464536,0.20746,0.14007,0.830528,0.662645,0.0918316,0.944989,0.367951,0.0348535,0.521348,0.50895,0.917112,0.232743,0.0511844,0.645196,0.695986,0.946277,0.634347,0.550471,0.716283,0.805615,0.220696,0.436415,0.586819,0.259851,0.201392,0.120375,0.00582862,0.444477,0.840104,0.710727,0.838271,0.568929,0.345877,0.864825,0.322552,0.417681,0.641805,0.628961,0.791763,0.548087,0.881606,0.635271,0.390035,0.794266,0.0915787,0.640425,0.870726,0.662886,0.55886,0.247589,0.422897,0.0783429,0.865764,0.685045,0.688362,0.118341,0.647749,0.229232,0.37958,0.155399,0.74381,0.297528,0.881549,0.624199,0.418468,0.566514,0.701204,0.581342,0.219545,0.612485,0.696603,0.434116,0.570661,0.199617,0.470555,0.871793,0.110237,0.071363,0.744631,0.996599,0.154363,0.537997,0.0414575,0.186153,0.615609,0.449181,0.259988,0.0679859,0.279626,0.78608,0.743616,0.735489,0.886453,0.774994,0.835137,0.0282981,0.239787,0.228089,0.885535,0.0592041,0.813577,0.0392283,0.330315,0.373751,0.457919,0.491334,0.746838,0.152842,0.396422,0.294555,0.0250149,0.406708,0.518018,0.509387,0.554335,0.0537631,0.704986,0.741184,0.977299,0.467519,0.340882,0.903397,0.750319,0.674431,0.249238,0.485502,0.34691,0.777153,0.485033,0.99689,0.772281,0.980737,0.254972,0.26253,0.997697,0.444006,0.222109,0.285339,0.0567903,0.725582,0.865677,0.900808,0.47965,0.901462,0.414343,0.00764817,0.513607,0.750965,0.453759,0.899021,0.758268,0.74434,0.512348,0.400068,0.571894,0.992281,0.509018,0.172096,0.586608,0.584948,0.282026,0.620453,0.0660582,0.587182,0.58913,0.264935,0.277418,0.0541542,0.22607,0.865581,0.854319,0.22671,0.268968,0.572112,0.235056,0.475324,0.157898,0.314091,0.887151,0.486226,0.476413,0.861634,0.79909,0.463874,0.415098,0.172609,0.114186,0.0669734,0.199015,0.643006,0.766142,0.999574,0.631924,0.609386,0.923589,0.691449,0.0569453,0.325391,0.261418,0.0445931,0.866545,0.565836,0.772958,0.205848,0.242247,0.992937,0.0641639,0.800125,0.237309,0.966872,0.533599,0.096202,0.769293,0.785296,0.700486,0.559766,0.509055,0.138311,0.57935,0.0927863,0.18183,0.456937,0.907145,0.928505,0.828256,0.13749,0.114861,0.316936,0.768523,0.181896,0.500531,0.666029,0.404063,0.902962,0.583471,0.234671,0.60415,0.648823,0.483382,0.283017,0.635703,0.959397,0.285656,0.480749,0.966473,0.604753,0.446798,0.937887,0.967749,0.339487,0.738917,0.0402696,0.176966,0.549987,0.1015,0.0139815,0.944848,0.148269,0.548439,0.538848,0.920317,0.698304,0.00765014,0.241557,0.878411,0.35126,0.677635,0.60362,0.785815,0.718554,0.339478,0.985664,0.749431,0.802421,0.224048,0.24829,0.0675997,0.427725,0.413066,0.00172347,0.651519,0.608407,0.442755,0.668642,0.585243,0.159491,0.0199567,0.695209,0.91536,0.839884,0.190432,0.292473,0.706599,0.447947,0.433347,0.988545,0.730081,0.837547,0.652737,0.187345,0.0519298,0.910081,0.103377,0.299315,0.707581,0.187452,0.0888857,0.72477,0.295984,0.347388,0.0654385,0.339839,0.702183,0.43021,0.585478,0.176548,0.107479,0.585019,0.642154,0.120194,0.787048,0.925805,0.56609,0.336646,0.728778,0.780647,0.20642,0.938977,0.339947,0.441478,0.388392,0.309303,0.432238,0.110798,0.40676,0.215666,0.400702,0.658766,0.869526,0.144896,0.597365,0.743385,0.0861573,0.670575,0.473019,0.919093,0.038072,0.40827,0.918078,0.548022,0.510436,0.40592,0.039472,0.606299,0.37646,0.552399,0.028236,0.467145,0.833314,0.802322,0.11426,0.501597,0.217216,0.420956,0.504219,0.432046,0.350125,0.945966,0.939741,0.491378,0.371224,0.821286,0.657684,0.604756,0.695135,0.47074,0.979624,0.890737,0.7956,0.403686,0.921395,0.979429,0.487769,0.261746,0.961273,0.251649,0.414664,0.529164,0.803084,0.234618,0.0945849,0.199917,0.649895,0.0264367,0.275104,0.245932,0.634523,0.826656,0.0878928,0.427933,0.342775,0.741103,0.851844,0.624248,0.181808,0.680072,0.0463583,0.702202,0.793236,0.976211,0.0287156,0.711262,0.262774,0.666336,0.185592,0.546314,0.170759,0.943543,0.304315,0.914211,0.368886,0.548028,0.083508,0.34446,0.165202,0.234343,0.507748,0.440773,0.384407,0.969595,0.391659,0.794054,0.532028,0.956188,0.535081,0.556778,0.00576359,0.637979,0.031141,0.142392,0.530604,0.0314626,0.27585,0.170196,0.956459,0.0698278,0.2868,0.0973142,0.200389,0.0418268,0.318331,0.400658,0.184412,0.807511,0.321879,0.431652,0.974851,0.872969,0.341278,0.462373,0.562187,0.797299,0.337342,0.712718,0.256291,0.448364,0.601807,0.394842,0.515879,0.637123,0.178888,0.795325,0.782532,0.492262,0.22888,0.0241636,0.17754,0.744679,0.489646,0.763005,0.442435,0.881299,0.916257,0.533097,0.0120738,0.419444,0.512822,0.753777,0.283026,0.328531,0.693339,0.148814,0.819106,0.9777,0.180936,0.135657,0.838201,0.68092,0.250448,0.435614,0.536042,0.853391,0.175019,0.226133,0.0271656,0.992575,0.901895,0.87782,0.585179,0.16216,0.567003,0.0805249,0.554754,0.415672,0.630883,0.156817,0.728242,0.567058,0.516312,0.54222,0.50168,0.613893,0.853636,0.128588,0.905748,0.133655,0.218728,0.836546,0.98246,0.110254,0.0341015,0.247873,0.525407,0.87226,0.87202,0.784969,0.757065,0.426092,0.657402,0.101804,0.806106,0.0622583,0.601297,0.489372,0.465115,0.526891,0.166591,0.0530544,0.12542,0.0129302,0.0798971,0.371517,0.959416,0.411202,0.0422712,0.690448,0.225034,0.0341942,0.05946,0.884435,0.477733,0.114314,0.818186,0.432912,0.591451,0.759918,0.902102,0.819618,0.432455,0.787496,0.518164,0.599425,0.981171,0.508055,0.82934,0.915449,0.650802,0.628461,0.149167,0.112276,0.752216,0.525214,0.725862,0.497657,0.628566,0.076237,0.185816,0.444847,0.384115,0.983395,0.045698,0.832915,0.164955,0.129033,0.880043,0.921657,0.0148731,0.639221,0.61423,0.561868,0.419017,0.108095,0.910099,0.815964,0.276749,0.164624,0.968673,0.0150296,0.99737,0.741511,0.0902223,0.41633,0.964012,0.801744,0.392595,0.809537,0.109848,0.737812,0.414095,0.855836,0.765362,0.562609,0.245241,0.160648,0.812136,0.482561,0.614292,0.610179,0.18227,0.822132,0.296876,0.428354,0.391374,0.348462,0.229808,0.999885,0.533883,0.621662,0.0169242,0.813878,0.64525,0.118377,0.49692,0.750422,0.58153,0.780301,0.352331,0.616906,0.386138,0.198291,0.582679,0.170172,0.909845,0.82231,0.154166,0.795978,0.229713,0.124085,0.161034,0.704109,0.0360485,0.765425,0.545591,0.0669171,0.551737,0.0452532,0.637609,0.799059,0.0675255,0.272882,0.292631,0.611802,0.35268,0.264376,0.0793243,0.598115,0.978482,0.481689,0.00442612,0.409095,0.688166,0.924091,0.210377,0.131646,0.86829,0.573122,0.573955,0.397446,0.70756,0.511175,0.285249,0.725206,0.217679,0.0108731,0.607157,0.607391,0.800521,0.847215,0.665274,0.382957,0.896588,0.678135,0.28791,0.864444,0.677429,0.283616,0.961591,0.828649,0.353283,0.13206,0.965976,0.266748,0.631274,0.337452,0.726576,0.0674061,0.334729,0.759412,|0.988155,0.120325,0.0710902,0.10362,0.175776,0.679788,0.0349137,0.747982,0.741917,0.940271,0.321281,0.187634,0.557169,0.117764,0.0637325,0.364735,0.849114,0.844616,0.046011,0.705111,0.739283,0.694684,0.377177,0.116596,0.373876,0.968932,0.328242,0.492608,0.532657,0.811761,0.885519,0.44989,0.760032,0.502881,0.318782,0.623931,0.133298,0.286318,0.261091,0.0658981,0.572761,0.449211,0.260975,0.0256492,0.946919,0.888219,0.799098,0.487056,0.309763,0.162436,0.516028,0.942922,0.182825,0.843955,0.743333,0.173913,0.69047,0.633326,0.384491,0.304829,0.196851,0.646812,0.65919,0.707658,0.748679,0.470534,0.0927895,0.78413,0.94052,0.275766,0.124826,0.516746,0.6368,0.625215,0.775288,0.485144,0.464958,0.216231,0.632843,0.475181,0.738053,0.949447,0.296342,0.76836,0.550232,0.361829,0.429558,0.198514,0.807622,0.0850493,0.624068,0.16754,0.416646,0.944542,0.292772,0.347445,0.569749,0.19362,0.556358,0.779845,0.0168384,0.626163,0.786795,0.990347,0.6753,0.416286,0.368036,0.132852,0.8691,0.868091,0.373429,0.0246666,0.104321,0.918332,0.919532,0.272575,0.195485,0.69201,0.710062,0.558118,0.321238,0.291888,0.96845,0.900051,0.523305,0.85649,0.77013,0.383668,0.936258,0.657897,0.565416,0.418929,0.867939,0.218374,0.0744814,0.513421,0.97522,0.760489,0.939368,0.501373,0.0602323,0.63974,0.159557,0.0599427,0.251274,0.314191,0.678889,0.787205,0.0977651,0.799608,0.538985,0.0619492,0.697641,0.965883,0.749484,0.194016,0.151035,0.911711,0.490865,0.323962,0.61607,0.936314,0.778184,0.731393,0.0906383,0.494965,0.498073,0.823747,0.0753502,0.110067,0.479211,0.80864,0.489075,0.251198,0.33004,0.583849,0.972122,0.475523,0.134351,0.41246,0.798482,0.0136863,0.228684,0.0203622,0.842586,0.798491,0.512851,0.365057,0.651811,0.697771,0.141691,0.643378,0.261532,0.0537292,0.765875,0.102432,0.0301278,0.678578,0.87012,0.519418,0.185696,0.436738,0.393805,0.797853,0.861972,0.189584,0.591066,0.0210806,0.230641,0.163896,0.52265,0.091782,0.804129,0.873706,0.499471,0.0997534,0.905648,0.487711,0.919161,0.0754082,0.361084,0.971126,0.919333,0.63351,0.487052,0.131007,0.400084,0.0743362,0.992627,0.440735,0.0210174,0.20892,0.83848,0.697487,0.515576,0.565301,0.596987,0.390446,0.425495,0.778528,0.323559,0.90049,0.744223,0.331999,0.287614,0.285273,0.427685,0.801979,0.0355262,0.235238,0.175434,0.922661,0.848516,0.996548,0.460567,0.379699,0.694397,0.177809,0.805939,0.295204,0.871492,0.660257,0.699067,0.508597,0.0199661,0.944518,0.0202253,0.70654,0.364582,0.308522,0.190091,0.945419,0.967001,0.572116,0.499076,0.33596,0.99168,0.825122,0.615613,0.296463,0.329288,0.861533,0.816588,0.252536,0.481621,0.148554,0.580907,0.595393,0.604229,0.239331,0.366914,0.264988,0.221586,0.451288,0.240689,0.476342,0.847285,0.223126,0.316033,0.808446,0.834153,0.653556,0.533524,0.759004,0.111036,0.450346,0.275169,0.521024,0.468047,0.85765,0.413934,0.492323,0.799351,0.523482,0.661939,0.47702,0.0754752,0.76432,0.173031,0.526426,0.893232,0.821622,0.562891,0.382545,0.835671,0.806542,0.587703,0.942239,0.456978,0.524019,0.300241,0.910046,0.381318,0.527934,0.518637,0.464045,0.32928,0.0301812,0.325522,0.325894,0.16582,0.0940127,0.962685,0.795236,0.865436,0.68788,0.542207,0.699939,0.41914,0.481561,0.277621,0.300053,0.656218,0.492192,0.674029,0.243769,0.474596,0.969109,0.15868,0.605774,0.10168,0.6683,0.728771,0.20328,0.923444,0.659781,0.249377,0.656346,0.0805278,0.116685,0.97235,0.126779,0.152618,0.640405,0.554044,0.343889,0.393524,0.429268,0.77674,0.022885,0.301632,0.759472,0.690022,0.3236,0.850877,0.158426,0.831774,0.334442,0.111976,0.128448,0.487272,0.263617,0.989489,0.104749,0.52933,0.0903071,0.0608612,0.730005,0.949507,0.418861,0.548134,0.889203,0.869106,0.723536,0.928192,0.963425,0.493485,0.598377,0.584451,0.286502,0.112086,0.463085,0.991099,0.569528,0.38468,0.36218,0.653836,0.870823,0.458517,0.489065,0.646135,0.963312,0.260045,0.141827,0.984706,0.813511,0.532723,0.680556,0.881048,0.314238,0.0630987,0.525306,0.364013,0.733902,0.668126,0.968473,0.348012,0.393266,0.348342,0.550616,0.450322,0.621632,0.812046,0.172372,0.457221,0.987253,0.801358,0.470954,0.257675,0.870185,0.564389,0.235597,0.673868,0.262538,0.643408,0.255635,0.319718,0.519958,0.956793,0.0483629,0.0963388,0.47729,0.858385,0.898173,0.701377,0.0863724,0.572148,0.615793,0.498343,0.0323008,0.353589,0.326713,0.922579,0.5252,0.210986,0.954127,0.731169,0.467674,0.766646,0.812193,0.23372,0.554641,0.901604,0.948761,0.178463,0.916858,0.862155,0.192085,0.774798,0.503473,0.621036,0.157573,0.68163,0.156033,0.372405,0.813507,0.182577,0.764107,0.240636,0.858628,0.325243,0.0107946,0.671228,0.255659,0.81574,0.636008,0.11433,0.918571,0.11097,0.820917,0.837096,0.659061,0.075316,0.638397,0.516373,0.075399,0.0787123,0.317492,0.589919,0.0881438,0.394726,0.452254,0.103117,0.441852,0.895545,0.214031,0.422049,0.724369,0.804647,0.148807,0.324478,0.0345341,0.869567,0.209055,0.727419,0.858571,0.908446,0.223323,0.951591,0.919633,0.00850838,0.764076,0.428307,0.631392,0.414351,0.648685,0.925213,0.653999,0.638712,0.855944,0.968887,0.327953,0.642086,0.366661,0.322716,0.993938,0.335118,0.122309,0.991407,0.674379,0.590204,0.175798,0.800718,0.701075,0.272037,0.180051,0.875799,0.194854,0.585113,0.787759,0.347238,0.847512,0.366041,0.312191,0.274047,0.197738,0.635263,0.0103784,0.282719,0.349056,0.040637,0.0150136,0.483654,0.170277,0.864541,0.0728897,0.267248,0.574913,0.324207,0.746474,0.255473,0.598222,0.0128712,0.672063,0.983703,0.123515,0.532878,0.138863,0.679286,0.195118,0.623558,0.00674587,0.487724,0.691505,0.546341,0.232897,0.593136,0.316745,0.933495,0.994075,0.906178,0.410129,0.569715,0.639451,0.640145,0.876109,0.770406,0.300375,0.925528,0.0965779,0.291947,0.15167,0.991414,0.744079,0.0179923,0.771388,0.119725,0.442177,0.716409,0.452001,0.633718,0.847885,0.494344,0.309041,0.69684,0.503085,0.377751,0.799505,0.114933,0.288091,0.538527,0.594059,0.807271,0.697476,0.834616,0.647571,0.875907,0.614047,0.567363,0.656622,0.0603276,0.225485,0.999268,0.770158,0.865276,0.722205,0.309813,0.152974,0.348473,0.945568,0.00416678,0.924864,0.666486,0.912722,0.815326,0.0731143,0.993538,0.628779,0.824442,0.295967,0.893943,0.745282,0.650411,0.131346,0.701017,0.851065,0.574649,0.00128919,0.738321,0.0994753,0.497652,0.140048,0.95946,0.740791,0.256939,0.139823,0.219531,0.698724,0.562623,0.811713,0.769547,0.241346,0.871551,0.482928,0.205085,0.218609,0.330068,0.102695,0.416517,0.511569,0.843919,0.327754,0.173658,0.326958,0.636341,0.799725,0.0320984,0.71816,0.207988,0.903114,0.0438572,0.47759,0.549818,0.134581,0.784216,0.92844,0.322651,0.772474,0.45926,0.482628,0.0369571,0.301429,0.196732,0.250162,0.355883,0.358288,0.107941,0.523174,0.951057,0.585109,0.989555,0.414462,0.460411,0.366719,0.762667,0.541001,0.730192,0.449281,0.498215,0.373693,0.881084,0.450745,0.0109463,0.406999,0.892473,0.669141,0.974316,0.883638,0.296453,0.443107,0.0391542,0.42091,0.347952,0.685651,0.444267,0.30386,0.153138,0.58849,0.788711,0.292593,0.877957,0.423862,0.481488,0.847593,0.27133,0.805248,0.700411,0.34869,0.760622,0.428633,0.180739,0.436584,0.218365,0.473002,0.0486645,0.636958,0.512767,0.508696,0.248099,0.990261,0.510953,0.999477,0.629301,0.241464,0.862387,0.277861,0.0551823,0.297734,0.110191,0.18829,0.173037,0.232581,0.325751,0.345869,0.848184,0.941182,0.148224,0.217961,0.159445,0.427875,0.550184,0.258166,0.890074,0.82717,0.284432,0.0604705,0.86974,0.422819,0.828739,0.527982,0.35552,0.500758,0.144564,0.479428,0.282115,0.939399,0.179275,0.362903,0.789167,0.646955,0.833954,0.541264,0.503143,0.717727,0.669176,0.69888,0.011975,0.538834,0.152254,0.428481,0.568481,0.796528,0.660773,0.766758,0.21574,0.142009,0.692367,0.638628,0.18193,0.327043,0.283091,0.0294653,0.58021,0.124177,0.256915,0.603948,0.938817,0.448821,0.0462515,0.715457,0.309608,0.199903,0.790497,0.0974135,0.159065,0.700882,0.574919,0.159039,0.304336,0.471651,0.110273,0.741063,0.431042,0.703584,0.86598,0.143873,0.00469738,0.522824,0.832205,0.89894,0.142593,0.273853,0.954483,0.773034,0.189976,0.316535,0.56929,0.981403,0.30558,0.225611,0.27839,0.0128207,0.974928,0.667924,0.938941,0.833523,0.22178,0.308285,0.740228,0.691158,0.743872,0.0714309,0.246375,0.753491,0.201647,0.721587,0.720633,0.980502,0.339185,0.553871,0.344545,0.95935,0.468129,0.923829,0.476632,0.893431,0.160628,0.566045,0.501602,0.730423,0.0977275,0.728844,0.815798,0.0941173,0.726993,0.67747,0.863675,0.283221,0.545192,0.139241,0.404126,0.927575,0.825644,0.561757,0.375252,0.115392,0.944984,0.915328,0.198454,0.860076,0.586307,0.548854,0.823954,0.806966,0.639494,0.595179,0.472559,0.172362,0.472514,0.794075,0.732947,0.281884,0.757405,0.465564,0.664222,0.0109833,0.508002,0.238088,0.844418,0.0353802,0.713555,0.20973,0.216139,0.476577,0.780244,0.843436,0.106653,0.203043,0.00372511,0.0280332,0.48819,0.736972,0.365514,0.553949,0.879654,0.0380763,0.223163,0.92111,0.772893,0.869923,0.0268123,0.667541,0.698101,0.216042,0.630534,0.340195,0.905034,0.904085,0.29411,0.55056,0.160182,0.44313,0.236443,0.127617,0.774939,0.57055,0.420475,0.452301,0.957696,0.671336,0.972894,0.438917,0.320425,0.0528934,0.88252,0.684816,0.0616744,0.831253,0.3994,0.122664,|0.0483201,0.943643,0.539121,0.948331,0.804054,0.531289,0.318606,0.445863,0.200549,0.808761,0.141577,0.943742,0.410715,0.599822,0.784639,0.23344,0.449075,0.0500079,0.618659,0.220052,0.62007,0.0756272,0.357856,0.351216,0.41999,0.00292093,0.575675,0.614537,0.0950171,0.0070985,0.821066,0.239415,0.807402,0.726581,0.870068,0.462557,0.85481,0.0918047,0.471239,0.133833,0.811284,0.923999,0.306251,0.959744,0.174381,0.580119,0.977149,0.241322,0.815533,0.957246,0.321792,0.438277,0.490364,0.155099,0.330929,0.818515,0.323951,0.286682,0.586227,0.348549,0.745487,0.424855,0.146731,0.0749683,0.157828,0.957431,0.32149,0.0851587,0.813967,0.860286,0.540532,0.894362,0.687137,0.716305,0.768445,0.74578,0.549704,0.324143,0.954047,0.143496,0.639247,0.846923,0.516473,0.0659956,0.229138,0.663089,0.562199,0.345616,0.56929,0.952048,0.573488,0.531729,0.208144,0.628065,0.531661,0.937572,0.48936,0.794431,0.905626,0.398026,0.362668,0.229875,0.592043,0.736638,0.84623,0.0982963,0.560637,0.0661204,0.967151,0.169959,0.430812,0.0140371,0.467569,0.269108,0.531174,0.442316,0.227286,0.975524,0.168095,0.37558,0.854556,0.994487,0.0244787,0.475077,0.00464261,0.943493,0.348364,0.265014,0.854499,0.735317,0.902516,0.133802,0.927257,0.799875,0.377508,0.502433,0.53418,0.361918,0.807661,0.172214,0.252147,0.0791827,0.406113,0.0525498,0.379002,0.226296,0.739295,0.239275,0.389256,0.49038,0.386393,0.725008,0.211084,0.10724,0.705458,0.387363,0.385072,0.495115,0.785787,0.88042,0.766451,0.374487,0.126323,0.895424,0.895495,0.786296,0.536388,0.506845,0.0199414,0.702171,0.0312783,0.288235,0.159359,0.322328,0.674451,0.332952,0.923089,0.110803,0.248341,0.752799,0.53783,0.563932,0.411951,0.114917,0.974623,0.326778,0.179833,0.634888,0.325472,0.142538,0.899196,0.687908,0.0155946,0.143093,0.00339264,0.0886019,0.26065,0.774058,0.991995,0.549842,0.537378,0.839937,0.951918,0.555795,0.584761,0.0164179,0.101098,0.0720449,0.331078,0.165609,0.460893,0.498658,0.68307,0.903023,0.178643,0.225348,0.95026,0.141939,0.415188,0.434761,0.530193,0.569232,0.409691,0.369277,0.677403,0.049602,0.456834,0.683942,0.488263,0.532179,0.717574,0.7972,0.0610616,0.836276,0.606106,0.546356,0.187518,0.948586,0.68943,0.471965,0.591999,0.900465,0.422159,0.0524128,0.163728,0.249035,0.295525,0.683693,0.198245,0.366345,0.0894041,0.441171,0.32933,0.952557,0.620885,0.482174,0.278781,0.997243,0.119336,0.0199881,0.43296,0.156144,0.135077,0.521266,0.836237,0.111361,0.166804,0.021843,0.916378,0.712107,0.392109,0.246507,0.994947,0.0649784,0.791263,0.836678,0.165808,0.590148,0.195302,0.805524,0.39824,0.0864772,0.379965,0.878694,0.184407,0.296475,0.340637,0.284228,0.941988,0.482219,0.506879,0.766357,0.210058,0.477327,0.773541,0.607786,0.842691,0.536048,0.213966,0.744125,0.157718,0.320516,0.960414,0.997032,0.943155,0.347321,0.0173917,0.157995,0.891701,0.587658,0.132981,0.236923,0.249011,0.485886,0.254402,0.540098,0.53458,0.493232,0.678913,0.951913,0.230468,0.100013,0.524805,0.859945,0.708308,0.27971,0.659243,0.570713,0.905748,0.579494,0.215635,0.763576,0.222343,0.0704264,0.563335,0.4572,0.664684,0.661033,0.847152,0.451576,0.84173,0.453981,0.0248927,0.581061,0.71152,0.378248,0.0478759,0.0374915,0.351635,0.605974,0.80228,0.340017,0.861953,0.246866,0.622758,0.0180154,0.348027,0.044829,0.682578,0.424122,0.911028,0.503883,0.555803,0.677535,0.966499,0.403116,0.202467,0.131111,0.127143,0.757343,0.480996,0.911504,0.139207,0.601553,0.916978,0.590025,0.671392,0.157672,0.322143,0.0108113,0.647456,0.388993,0.596966,0.926397,0.865999,0.104123,0.329509,0.929601,0.59457,0.123972,0.873055,0.056936,0.00932652,0.134421,0.526115,0.186159,0.845125,0.598651,0.075097,0.75393,0.0639924,0.316805,0.124401,0.110549,0.0643036,0.0887508,0.569242,0.120262,0.760673,0.597329,0.973021,0.610907,0.751903,0.139307,0.542704,0.0920942,0.458253,0.456136,0.698156,0.781404,0.476275,0.583877,0.092172,0.416413,0.50157,0.548706,0.676756,0.632532,0.718303,0.280712,0.869772,0.218591,0.0966554,0.910092,0.491508,0.020206,0.574477,0.551482,0.276739,0.709611,0.774203,0.514343,0.280736,0.832594,0.580265,0.990863,0.758908,0.958592,0.980334,0.994067,0.799302,0.316917,0.230004,0.198678,0.579258,0.324902,0.654228,0.721782,0.217623,0.301582,0.883196,0.63703,0.0752117,0.314666,0.967866,0.446806,0.730118,0.662685,0.381535,0.394506,0.620102,0.631477,0.922415,0.206594,0.365414,0.158879,0.459492,0.0521865,0.21717,0.393743,0.991969,0.785917,0.459187,0.182011,0.0246364,0.889902,0.593108,0.29588,0.549473,0.132683,0.855189,0.268215,0.251338,0.418016,0.697675,0.388934,0.604918,0.144451,0.524475,0.200512,0.344416,0.582312,0.628246,0.435336,0.324982,0.665278,0.300444,0.814121,0.797178,0.698882,0.509281,0.218211,0.231281,0.46366,0.648925,0.56952,0.494644,0.0286798,0.536819,0.544402,0.651092,0.825816,0.785584,0.538719,0.776097,0.54019,0.319619,0.183268,0.163036,0.157319,0.360862,0.426791,0.887308,0.743443,0.291982,0.442474,0.300726,0.983617,0.721156,0.363657,0.170291,0.788853,0.702119,0.160027,0.149883,0.844503,0.452655,0.880854,0.882221,0.879327,0.500052,0.201738,0.719809,0.390017,0.798593,0.554179,0.298888,0.808537,0.811041,0.00486034,0.665886,0.145487,0.0692341,0.405522,0.0566574,0.0376083,0.691132,0.4666,0.935638,0.370777,0.508024,0.644428,0.0340863,0.306961,0.651606,0.774929,0.633728,0.25502,0.46796,0.796503,0.969653,0.773575,0.387833,0.938213,0.778248,0.14684,0.130734,0.205201,0.808024,0.378122,0.98298,0.337526,0.330346,0.139334,0.597831,0.31365,0.0581124,0.840289,0.220175,0.468108,0.452604,0.0396194,0.66274,0.404722,0.524596,0.469763,0.247242,0.669917,0.274852,0.42435,0.869142,0.465536,0.951013,0.585089,0.740217,0.652608,0.794642,0.918004,0.522341,0.66208,0.60862,0.179237,0.0950782,0.0982141,0.0450194,0.960142,0.095341,0.22009,0.484359,0.748768,0.572855,0.411136,0.731366,0.37946,0.836105,0.893334,0.1279,0.44766,0.276028,0.0893308,0.172366,0.652333,0.234547,0.781101,0.144624,0.418524,0.0562982,0.985522,0.579121,0.899232,0.345295,0.114428,0.139518,0.554665,0.00952119,0.0506243,0.543019,0.887221,0.957773,0.411275,0.268437,0.151877,0.693928,0.485291,0.830008,0.952084,0.706234,0.236289,0.603836,0.0168184,0.523914,0.712023,0.891444,0.563028,0.419723,0.119466,0.483544,0.675244,0.579842,0.931265,0.931757,0.311465,0.432609,0.847158,0.00986981,0.0696616,0.343863,0.654041,0.829408,0.341018,0.631729,0.832435,0.404808,0.635168,0.674074,0.00918192,0.817989,0.720641,0.712305,0.142632,0.265464,0.735829,0.627018,0.310788,0.0607046,0.641716,0.552359,0.80636,0.745717,0.339466,0.362461,0.210732,0.637574,0.125411,0.656005,0.298943,0.679974,0.479989,0.593305,0.434727,0.500606,0.00426698,0.533383,0.795499,0.109063,0.484702,0.75054,0.103061,0.0042758,0.202302,0.791782,0.146161,0.744178,0.13798,0.55126,0.696101,0.95016,0.226212,0.394958,0.453738,0.322264,0.502421,0.741678,0.983079,0.456013,0.667246,0.696938,0.482543,0.929922,0.254307,0.754524,0.264,0.088559,0.71009,0.601972,0.587504,0.582448,0.623931,0.366473,0.975821,0.798431,0.107445,0.168984,0.605812,0.924654,0.323188,0.371773,0.0246788,0.440554,0.256905,0.566582,0.292266,0.53843,0.205499,0.000516236,0.0895494,0.54109,0.0621932,0.365461,0.768546,0.0993515,0.221821,0.59408,0.4669,0.00392336,0.372461,0.0139526,0.388427,0.213289,0.566277,0.237422,0.975988,0.641025,0.191317,0.678507,0.767402,0.710732,0.402989,0.0580998,0.59341,0.431873,0.767892,0.282281,0.016122,0.717497,0.174206,0.647308,0.443647,0.934167,0.185262,0.106122,0.476155,0.933547,0.679665,0.00869375,0.136119,0.308782,0.112711,0.0987111,0.927922,0.29249,0.712165,0.543906,0.435493,0.486201,0.0370033,0.762523,0.553917,0.497305,0.539568,0.928566,0.53149,0.383726,0.0945414,0.899059,0.907079,0.21746,0.536991,0.349707,0.537021,0.861116,0.182701,0.766669,0.134228,0.949336,0.476576,0.996652,0.208018,0.130516,0.0677461,0.0655524,0.686394,0.0856404,0.959787,0.881798,0.384229,0.1989,0.966166,0.491925,0.42849,0.382363,0.404311,0.302112,0.963595,0.51016,0.576222,0.482228,0.724179,0.775553,0.9949,0.437794,0.962874,0.518033,0.664833,0.685631,0.796299,0.685149,0.762453,0.124453,0.135544,0.292051,0.601415,0.164189,0.659254,0.608801,0.416231,0.499775,0.345499,0.238496,0.98874,0.474425,0.103661,0.695083,0.636393,0.171151,0.331111,0.11882,0.901343,0.0297694,0.866914,0.0832898,0.319876,0.580069,0.125005,0.920171,0.790841,0.0111393,0.733407,0.648098,0.698834,0.444806,0.50874,0.465808,0.578677,0.808712,0.783955,0.776694,0.919428,0.517414,0.549577,0.388326,0.422462,0.477469,0.748064,0.275892,0.173914,0.603632,0.587607,0.912832,0.0590786,0.775969,0.295457,0.0660012,0.409122,0.563374,0.286753,0.758485,0.992113,0.0220393,0.529539,0.193436,0.062247,0.802306,0.631004,0.335107,0.0535118,0.608777,0.12285,0.929717,0.592301,0.240606,0.696833,0.789767,0.143245,0.607945,0.325494,0.924524,0.946344,0.937222,0.868662,0.605187,0.834351,0.409438,0.865598,0.89917,0.558014,0.354369,0.0806847,0.141035,0.436146,0.465753,0.648249,0.305166,0.615238,0.527074,0.289581,0.507323,0.44839,0.899474,0.558634,0.241604,0.336346,0.0441154,0.326098,0.670159,0.405057,0.807501,0.844447,0.659555,0.687348,0.571642,0.939974,0.53549,0.919545,0.947696,0.801831,0.870828,0.589811,0.44681,0.0368743,|0.570765,0.690208,0.827046,0.578883,0.391127,0.582723,0.934502,0.980202,0.992742,0.656428,0.814526,0.0685838,0.485756,0.304276,0.688426,0.554081,0.1688,0.478946,0.338669,0.331466,0.691875,0.885252,0.111173,0.0420517,0.878996,0.467607,0.861382,0.572706,0.654068,0.941112,0.587989,0.572308,0.46388,0.276367,0.940155,0.115852,0.540991,0.284461,0.541955,0.503337,0.06372,0.489548,0.286278,0.753034,0.93031,0.0170537,0.640384,0.0481441,0.996578,0.872089,0.991659,0.604748,0.0510333,0.432774,0.880548,0.304203,0.127358,0.515935,0.69005,0.0971713,0.170941,0.86277,0.764877,0.965072,0.542551,0.547122,0.635172,0.330299,0.164108,0.231575,0.0716978,0.443955,0.841288,0.371753,0.975677,0.0590715,0.776028,0.978937,0.548937,0.528127,0.0260211,0.381182,0.942972,0.582342,0.343083,0.27309,0.37283,0.261297,0.704691,0.692098,0.193289,0.657412,0.0449857,0.930556,0.260682,0.809981,0.974834,0.979299,0.762891,0.501254,0.310335,0.8656,0.100947,0.680105,0.812536,0.703541,0.160988,0.831536,0.834134,0.643155,0.718448,0.63783,0.367909,0.693493,0.818267,0.973466,0.541263,0.406984,0.0876035,0.0197855,0.0325288,0.387934,0.213429,0.85319,0.503122,0.0338449,0.732988,0.598394,0.980235,0.728773,0.885702,0.758022,0.458029,0.874508,0.82039,0.823675,0.977264,0.143657,0.369206,0.84213,0.29823,0.802736,0.195745,0.880897,0.925745,0.748047,0.71688,0.703361,0.527087,0.646403,0.853688,0.0492953,0.121388,0.465853,0.5669,0.550025,0.878506,0.643457,0.901829,0.813361,0.256391,0.834279,0.956021,0.41704,0.737737,0.408417,0.507122,0.418427,0.989492,0.375941,0.760192,0.234302,0.999172,0.122802,0.0264124,0.59241,0.613878,0.169054,0.436903,0.0679795,0.859311,0.162172,0.97613,0.0346337,0.453313,0.118382,0.316823,0.823336,0.346569,0.923179,0.779647,0.522507,0.555558,0.276227,0.506953,0.78622,0.185546,0.88146,0.756857,0.929354,0.162689,0.102092,0.160787,0.263909,0.792883,0.946469,0.203432,0.260175,0.917318,0.422836,0.346704,0.241886,0.776051,0.468829,0.0502962,0.525046,0.458437,0.28234,0.947585,0.266715,0.871092,0.0791687,0.0061723,0.0111706,0.0173581,0.998694,0.604377,0.742383,0.311239,0.333168,0.994995,0.393833,0.161045,0.197462,0.894065,0.484006,0.430965,0.973654,0.363399,0.0814679,0.717743,0.849882,0.803966,0.900697,0.711766,0.239295,0.827142,0.0462243,0.437842,0.765543,0.00459629,0.989882,0.391138,0.903027,0.195548,0.99791,0.107829,0.795446,0.944315,0.481703,0.254495,0.458113,0.166378,0.35595,0.969111,0.74427,0.963643,0.789686,0.617227,0.803993,0.356864,0.347719,0.431912,0.142796,0.306206,0.137364,0.748045,0.481345,0.174769,0.731393,0.0854788,0.393162,0.382017,0.41586,0.668206,0.00854462,0.0522754,0.272929,0.588815,0.61966,0.757079,0.613477,0.332692,0.458641,0.380139,0.0860233,0.932821,0.400781,0.917755,0.350653,0.213657,0.22078,0.641276,0.481219,0.63928,0.446479,0.124908,0.747812,0.139198,0.00872785,0.0406867,0.114944,0.803563,0.80084,0.474414,0.285298,0.582919,0.63884,0.21967,0.726418,0.937757,0.346741,0.259703,0.887904,0.737312,0.308361,0.370388,0.56682,0.187874,0.621951,0.612294,0.282121,0.175978,0.459734,0.508723,0.0946035,0.73646,0.36397,0.839326,0.344658,0.699879,0.930767,0.250127,0.572432,0.325787,0.00702006,0.540004,0.618435,0.822766,0.462398,0.147508,0.505887,0.432751,0.156602,0.660436,0.384484,0.623208,0.34285,0.151936,0.714113,0.743424,0.312852,0.00951326,0.572637,0.0790268,0.548576,0.24648,0.282895,0.252872,0.0714799,0.0633393,0.45512,0.236951,0.329027,0.239212,0.422377,0.787241,0.536926,0.203729,0.903545,0.324804,0.741212,0.932383,0.215047,0.761522,0.133938,0.895292,0.220275,0.352474,0.904532,0.315547,0.310787,0.642626,0.907272,0.430378,0.472256,0.211204,0.152484,0.0318928,0.157442,0.489606,0.407118,0.803876,0.150269,0.73092,0.553951,0.893524,0.781983,0.141617,0.483363,0.630682,0.0573483,0.881112,0.203662,0.845175,0.887526,0.866506,0.255754,0.518588,0.71946,0.829612,0.769589,0.692767,0.779093,0.679074,0.521652,0.438326,0.52348,0.745489,0.731613,0.773665,0.416666,0.117959,0.880275,0.496944,0.248924,0.956127,0.492037,0.878135,0.186422,0.412202,0.198378,0.686798,0.863725,0.673353,0.24887,0.687387,0.428577,0.711698,0.386237,0.0660204,0.557154,0.424012,0.968832,0.351724,0.210039,0.299373,0.214078,0.510715,0.773985,0.154923,0.433213,0.666064,0.983903,0.932992,0.707016,0.403135,0.977723,0.0607352,0.201389,0.169418,0.229383,0.692426,0.264523,0.324147,0.31233,0.625308,0.931207,0.845422,0.925648,0.627959,0.756285,0.12254,0.426742,0.609078,0.0271199,0.865386,0.305001,0.619777,0.193973,0.592673,0.196788,0.115905,0.978062,0.286859,0.734888,0.85253,0.765385,0.54877,0.0972097,0.760116,0.409662,0.0395543,0.46258,0.431018,0.660216,0.0871419,0.950778,0.694161,0.0358638,0.883088,0.291133,0.826783,0.880779,0.565767,0.0411372,0.73001,0.151971,0.805855,0.585973,0.120425,0.441985,0.564016,0.89755,0.541488,0.0615459,0.450302,0.0994323,0.597338,0.207436,0.280847,0.487209,0.307672,0.0541772,0.136581,0.104089,0.577477,0.761908,0.195643,0.405668,0.0435523,0.0786228,0.302321,0.0520759,0.97227,0.630074,0.847994,0.305756,0.816275,0.157198,0.175204,0.0456898,0.140305,0.107022,0.842992,0.631765,0.82759,0.899975,0.710323,0.0586123,0.322722,0.324709,0.567764,0.432516,0.161119,0.617298,0.0147159,0.198918,0.978702,0.103468,0.106212,0.542504,0.0918422,0.0131475,0.547197,0.610641,0.90908,0.0714462,0.151862,0.53485,0.662109,0.218178,0.149793,0.910388,0.271572,0.787127,0.0696236,0.575319,0.135931,0.219886,0.993877,0.496986,0.0400651,0.56592,0.530357,0.789471,0.0193962,0.534592,0.388081,0.25693,0.907567,0.984255,0.412447,0.872277,0.830409,0.0617204,0.160651,0.533017,0.600898,0.522591,0.0560551,0.948946,0.0835416,0.245134,0.844789,0.607402,0.188442,0.189982,0.253863,0.949835,0.439972,0.747365,0.16579,0.971747,0.450219,0.651786,0.0288832,0.611637,0.802142,0.0549505,0.587616,0.705055,0.0316103,0.417331,0.316471,0.682658,0.0636671,0.369206,0.489318,0.619902,0.249526,0.973946,0.286199,0.365741,0.776667,0.544818,0.599792,0.907905,0.796642,0.289401,0.253456,0.549334,0.130033,0.200134,0.653936,0.223907,0.360268,0.130878,0.862552,0.467262,0.791483,0.265246,0.700774,0.979054,0.662204,0.959737,0.715516,0.112291,0.573101,0.124798,0.134396,0.308424,0.624255,0.952778,0.920973,0.975849,0.546852,0.98101,0.243087,0.791696,0.84629,0.483503,0.887103,0.031382,0.501013,0.623068,0.213153,0.43081,0.984972,0.201222,0.114568,0.328233,0.37379,0.246716,0.244581,0.900494,0.263775,0.124814,0.767691,0.838479,0.533047,0.835804,0.0255277,0.447403,0.765621,0.989237,0.768297,0.832927,0.290111,0.561832,0.975203,0.660316,0.529587,0.508985,0.165673,0.727803,0.380904,0.571535,0.447182,0.54436,0.566325,0.938559,0.667813,0.586131,0.288041,0.529674,0.211861,0.809073,0.302873,0.563142,0.664682,0.536182,0.477135,0.493079,0.767645,0.976518,0.682482,0.226326,0.435476,0.0377762,0.122026,0.475974,0.810861,0.116838,0.00168461,0.559205,0.771186,0.721594,0.0189186,0.274701,0.622657,0.518892,0.038906,0.807179,0.173026,0.360894,0.79966,0.103767,0.557433,0.59982,0.79567,0.121854,0.612228,0.551034,0.575942,0.608399,0.528204,0.938033,0.135508,0.201957,0.23146,0.927656,0.920969,0.6579,0.966382,0.839964,0.494502,0.315657,0.0416636,0.91808,0.546876,0.65994,0.931642,0.704609,0.998003,0.507561,0.776305,0.56918,0.112894,0.736155,0.567755,0.168576,0.585981,0.631869,0.286647,0.965604,0.273605,0.846013,0.605502,0.25374,0.116109,0.397143,0.858317,0.255072,0.58631,0.618346,0.786567,0.62426,0.968501,0.662975,0.0960603,0.00111663,0.563587,0.322684,0.453953,0.134658,0.908703,0.622411,0.0279572,0.252998,0.49565,0.663836,0.600725,0.127983,0.188421,0.604335,0.322772,0.941047,0.456398,0.0497929,0.103877,0.841852,0.374091,0.21268,0.144744,0.459701,0.873238,0.583233,0.988381,0.391038,0.127755,0.0838473,0.784259,0.423007,0.770434,0.602352,0.778042,0.905318,0.37559,0.143049,0.209494,0.799143,0.151243,0.630705,0.676587,0.105508,0.046055,0.961792,0.772527,0.847291,0.194133,0.307364,0.0199784,0.580333,0.304482,0.63172,0.615709,0.593116,0.881694,0.121427,0.493339,0.0458875,0.356013,0.103555,0.734288,0.308725,0.771709,0.660464,0.139248,0.262418,0.906461,0.20937,0.246089,0.995469,0.118526,0.419134,0.0435448,0.35167,0.92182,0.951497,0.0258035,0.216083,0.0969462,0.204677,0.337327,0.886412,0.342312,0.94714,0.176712,0.470218,0.321161,0.282853,0.334932,0.703123,0.327712,0.324999,0.75387,0.172097,0.0445638,0.58143,0.0871407,0.288272,0.365272,0.140254,0.469116,0.0465521,0.910296,0.753169,0.660488,0.88852,0.558821,0.260137,0.681079,0.890959,0.135309,0.624917,0.226292,0.111559,0.718388,0.304541,0.192267,0.259837,0.34941,0.209554,0.285998,0.612932,0.772668,0.151237,0.74043,0.552086,0.973964,0.0151642,0.0547172,0.448873,0.711656,0.260883,0.845672,0.537553,0.895124,0.0727355,0.728653,0.416848,0.126371,0.884764,0.255553,0.585912,0.854469,0.745844,0.591118,0.74743,0.300726,0.601182,0.370806,0.921401,0.60044,0.812484,0.0389779,0.353955,0.940355,0.599749,0.618872,0.899817,0.999296,0.21198,0.714191,0.91849,0.0151198,0.459222,0.797498,0.378196,0.459641,0.1497,0.542272,0.846458,0.889643,0.377567,0.280445,0.192329,0.171905,0.160135,0.74404,0.224074,0.670161,0.150111,0.341378,0.694886,0.882407,0.278026,0.554856,0.901775,|0.503515,0.950153,0.613637,0.386825,0.867671,0.594047,0.611194,0.0400861,0.769464,0.981611,0.409552,0.52987,0.0623482,0.91105,0.0215832,0.0198914,0.185622,0.120946,0.0620722,0.974179,0.0971848,0.742708,0.338701,0.145627,0.636525,0.238815,0.278357,0.012743,0.0642575,0.318379,0.559115,0.950419,0.306157,0.685277,0.91079,0.00784689,0.473176,0.47601,0.0701263,0.657367,0.414989,0.311664,0.608666,0.97655,0.448915,0.143244,0.346395,0.210723,0.335583,0.0396948,0.251201,0.0114214,0.109404,0.629231,0.978712,0.831897,0.0146791,0.0675007,0.624378,0.939794,0.54819,0.272495,0.0243637,0.0989504,0.437655,0.450638,0.258161,0.219956,0.142905,0.950485,0.636391,0.61949,0.387192,0.518815,0.0873836,0.420864,0.926705,0.0343558,0.976233,0.867673,0.38666,0.114085,0.693907,0.234126,0.165395,0.561545,0.577843,0.873204,0.250426,0.168535,0.0133942,0.682716,0.773899,0.198796,0.331842,0.507545,0.154989,0.137854,0.841118,0.0572065,0.281053,0.801937,0.751847,0.907703,0.304912,0.966628,0.292425,0.488706,0.0514539,0.598533,0.0325769,0.737051,0.401221,0.462233,0.24169,0.854391,0.989349,0.149696,0.707464,0.818666,0.524403,0.0010761,0.776059,0.779616,0.181961,0.783573,0.717967,0.612784,0.852787,0.685851,0.00369227,0.643084,0.652222,0.815707,0.27945,0.324232,0.387193,0.0439363,0.542667,0.287672,0.48191,0.0862654,0.801399,0.192904,0.607081,0.0761744,0.388888,0.255944,0.207567,0.0738827,0.760966,0.236958,0.637614,0.597933,0.434933,0.326024,0.913185,0.410342,0.659538,0.115424,0.379532,0.999198,0.113071,0.725743,0.434951,0.797221,0.167341,0.0138943,0.548261,0.243197,0.877818,0.494741,0.257353,0.742829,0.502721,0.465377,0.13756,0.410964,0.531156,0.95801,0.983029,0.264894,0.488779,0.143494,0.414038,0.601255,0.890396,0.541161,0.0669177,0.269154,0.59182,0.117612,0.917605,0.27755,0.126779,0.801861,0.00184268,0.00641471,0.978347,0.115434,0.627492,0.964954,0.685598,0.846011,0.575948,0.155781,0.377849,0.887349,0.151726,0.236407,0.248393,0.0608137,0.225953,0.514723,0.744305,0.238615,0.354101,0.663412,0.94338,0.906731,0.990541,0.31358,0.842198,0.835164,0.627889,0.193579,0.278403,0.639231,0.983523,0.620021,0.566743,0.572559,0.701433,0.049549,0.572401,0.376203,0.203353,0.654419,0.772504,0.774497,0.476624,0.792528,0.148918,0.467682,0.238677,0.769587,0.181961,0.431407,0.12633,0.944612,0.663824,0.967954,0.376488,0.395891,0.150138,0.201825,0.940704,0.00970948,0.473499,0.521434,0.387246,0.753249,0.351324,0.225217,0.315856,0.664393,0.216737,0.476376,0.506899,0.601569,0.807493,0.509946,0.27391,0.199281,0.711852,0.66281,0.0540459,0.548342,0.256147,0.922962,0.510821,0.11627,0.923698,0.41959,0.161253,0.705938,0.301759,0.412876,0.600726,0.403782,0.706413,0.0945442,0.555317,0.895972,0.264698,0.717809,0.73392,0.50809,0.287791,0.875596,0.710933,0.347662,0.356739,0.140795,0.264685,0.988039,0.695433,0.753689,0.432222,0.01548,0.113079,0.717158,0.342268,0.463513,0.682932,0.612055,0.97841,0.946734,0.268695,0.778209,0.263976,0.294552,0.095935,0.979953,0.671326,0.141343,0.264098,0.740555,0.808628,0.895227,0.416058,0.707652,0.769592,0.971168,0.538935,0.589377,0.375579,0.0480999,0.57151,0.314664,0.589476,0.299663,0.305981,0.875121,0.450927,0.0391622,0.879175,0.124508,0.730415,0.833521,0.721927,0.791829,0.419879,0.208269,0.0471488,0.921491,0.902132,0.804915,0.331987,0.880132,0.860661,0.495567,0.663,0.6241,0.259916,0.966832,0.472612,0.902221,0.904431,0.346968,0.017666,0.859517,0.196802,0.647294,0.0587455,0.864051,0.192526,0.530438,0.961944,0.310782,0.279994,0.642601,0.215713,0.275029,0.406368,0.89415,0.16821,0.774531,0.177951,0.755717,0.636271,0.795568,0.59976,0.446748,0.832662,0.527078,0.866663,0.984677,0.373574,0.963459,0.713418,0.767671,0.609119,0.806554,0.167401,0.254177,0.720021,0.208499,0.73581,0.853746,0.769849,0.163454,0.235187,0.302335,0.443325,0.786046,0.399701,0.512636,0.925434,0.22482,0.933651,0.967907,0.874257,0.501556,0.422322,0.674385,0.759381,0.084736,0.148824,0.366013,0.261005,0.438815,0.971194,0.707812,0.810986,0.448202,0.508881,0.636324,0.273917,0.202658,0.702565,0.695327,0.204947,0.787192,0.164434,0.935315,0.993484,0.665685,0.481002,0.189158,0.489477,0.956001,0.350152,0.684009,0.73993,0.409357,0.924061,0.718519,0.428302,0.633893,0.999187,0.397169,0.126536,0.328526,0.685341,0.565015,0.233931,0.731179,0.136004,0.376359,0.0359902,0.290636,0.520218,0.310264,0.774577,0.39805,0.986127,0.365641,0.170369,0.599439,0.335976,0.476909,0.82162,0.105275,0.355673,0.0627272,0.493993,0.271526,0.692832,0.974144,0.378467,0.797725,0.97159,0.797703,0.141824,0.552648,0.538206,0.235116,0.570878,0.208619,0.377007,0.23665,0.709646,0.950507,0.996899,0.243497,0.515545,0.509474,0.901819,0.258417,0.99657,0.401857,0.41969,0.349301,0.15503,0.875988,0.172644,0.676096,0.260547,0.979425,0.226818,0.997737,0.186612,0.106408,0.139289,0.998524,0.418723,0.088753,0.39282,0.731151,0.0930495,0.689503,0.323632,0.117519,0.20658,0.534873,0.0632609,0.341908,0.273414,0.357759,0.573015,0.670228,0.937604,0.00918311,0.520219,0.320061,0.209893,0.943146,0.592682,0.598858,0.855202,0.67756,0.397339,0.140336,0.116857,0.420928,0.930439,0.595416,0.485173,0.215932,0.110451,0.368682,0.920439,0.844566,0.630626,0.0706823,0.615049,0.0667534,0.568397,0.444921,0.649289,0.628461,0.383561,0.981401,0.618373,0.723469,0.224263,0.965338,0.509387,0.954854,0.265056,0.231591,0.730733,0.131788,0.576858,0.313175,0.382074,0.100378,0.778633,0.817192,0.355314,0.971748,0.224128,0.0677288,0.71799,0.571569,0.0443327,0.60104,0.108583,0.638933,0.888366,0.0753475,0.848893,0.356424,0.176997,0.759762,0.619387,0.662749,0.841596,0.945222,0.171421,0.745642,0.0727933,0.0315316,0.668705,0.215643,0.489548,0.0370765,0.0842115,0.238313,0.542334,0.893267,0.577893,0.0536931,0.906952,0.00337648,0.796642,0.524678,0.929321,0.502178,0.63987,0.132673,0.581329,0.856051,0.942982,0.440902,0.182506,0.673254,0.833263,0.3728,0.950109,0.794988,0.673063,0.896229,0.0228471,0.749741,0.622847,0.220059,0.444891,0.258054,0.015662,0.0556073,0.0399612,0.0185186,0.946658,0.160875,0.389049,0.773347,0.798963,0.268087,0.219019,0.801729,0.9393,0.573289,0.319929,0.659361,0.604378,0.0899666,0.251909,0.906574,0.261949,0.915947,0.732459,0.496648,0.561768,0.701339,0.503099,0.40947,0.146933,0.709221,0.738564,0.776595,0.913916,0.0348722,0.293711,0.597554,0.806043,0.0564931,0.588711,0.595606,0.220292,0.191406,0.661096,0.178263,0.208283,0.564213,0.00520498,0.156623,0.481622,0.9561,0.487371,0.633502,0.810385,0.580667,0.564881,0.158103,0.186862,0.645017,0.882587,0.426878,0.531457,0.730249,0.800736,0.504542,0.320986,0.218292,0.48996,0.385795,0.797928,0.360972,0.69242,0.0910007,0.903056,0.0992358,0.482967,0.228451,0.625619,0.179529,0.973336,0.516658,0.106922,0.0756223,0.508057,0.0725367,0.378723,0.360854,0.523774,0.511453,0.650054,0.570694,0.171583,0.898639,0.819102,0.521937,0.273517,0.0423658,0.144913,0.0568238,0.509227,0.831444,0.923667,0.140398,0.600498,0.511251,0.294162,0.0567161,0.815755,0.311711,0.1944,0.00519371,0.86099,0.589554,0.050537,0.714581,0.770889,0.584479,0.834151,0.774836,0.263617,0.356073,0.681415,0.21684,0.648079,0.769601,0.412608,0.20342,0.569113,0.0612444,0.877804,0.790514,0.397407,0.111921,0.0759291,0.417655,0.786016,0.377594,0.933756,0.161468,0.0103571,0.0310958,0.616993,0.705542,0.881649,0.784068,0.297513,0.414281,0.811957,0.522737,0.248568,0.882448,0.888535,0.64993,0.117386,0.350823,0.0630759,0.828168,0.283412,0.905379,0.0168353,0.541832,0.623675,0.11239,0.87269,0.0231612,0.848093,0.264892,0.00417209,0.0543981,0.865247,0.255124,0.0969828,0.0475517,0.869097,0.58202,0.365786,0.363006,0.0430224,0.104675,0.716665,0.0897541,0.91327,0.583176,0.203484,0.599734,0.36974,0.805763,0.751284,0.956356,0.379273,0.666077,0.0791722,0.920023,0.490631,0.43003,0.464904,0.322857,0.484906,0.838162,0.204072,0.593692,0.865153,0.170036,0.39509,0.413872,0.842205,0.527771,0.586834,0.892177,0.617315,0.711287,0.0924755,0.16305,0.973242,0.657539,0.682377,0.244574,0.656386,0.452898,0.999304,0.865346,0.00422555,0.669575,0.274423,0.833793,0.421189,0.394383,0.879878,0.248224,0.449209,0.791378,0.297151,0.428873,0.408558,0.360002,0.239671,0.492438,0.18516,0.309029,0.869986,0.927999,0.748903,0.231003,0.378651,0.567585,0.57187,0.41098,0.685558,0.300419,0.723565,0.821584,0.876603,0.260694,0.41816,0.0416635,0.72173,0.558917,0.766092,0.676508,0.176468,0.0247718,0.497428,0.80898,0.343193,0.709271,0.998541,0.417317,0.93968,0.103512,0.0956111,0.984049,0.387634,0.969199,0.738795,0.243137,0.237794,0.757852,0.367068,0.817933,0.744267,0.270606,0.747921,0.382113,0.211706,0.461883,0.299018,0.0174667,0.749883,0.579059,0.320073,0.67302,0.853881,0.56336,0.212831,0.521717,0.517793,0.315095,0.841191,0.251345,0.390897,0.759703,0.286792,0.423224,0.140249,0.52936,0.215727,0.471389,0.987006,0.991621,0.791455,0.289694,0.217681,0.464891,0.551542,0.244971,0.535323,0.315404,0.24091,0.949442,0.143267,0.873556,0.044994,0.810039,0.0712613,0.672929,0.418487,0.104905,0.145046,0.986104,0.766093,0.721256,0.0166095,0.380561,0.182406,0.528283,0.496547,0.466667,0.164927,0.605589,0.0641953,0.0476503,0.61966,0.211454,0.651029,0.718412,0.589224,0.304772,0.882146,0.594548,0.936791,0.015827,|0.528513,0.0479856,0.319032,0.150104,0.289022,0.103273,0.000355244,0.377297,0.601327,0.464022,0.800769,0.23543,0.447988,0.680978,0.533875,0.0677082,0.134478,0.455407,0.749688,0.423212,0.624334,0.423298,0.769513,0.251075,0.994951,0.273977,0.816036,0.430708,0.433479,0.71829,0.566136,0.846664,0.793812,0.626958,0.0380264,0.440671,0.826857,0.624459,0.988211,0.442642,0.340751,0.548147,0.332101,0.63402,0.417402,0.155454,0.347737,0.0126184,0.312704,0.79492,0.807358,0.0187954,0.0367646,0.798395,0.24966,0.105029,0.156962,0.504523,0.645624,0.400639,0.580895,0.97572,0.574416,0.0249358,0.139962,0.695977,0.441523,0.118774,0.441687,0.1114,0.366947,0.942217,0.0809226,0.337555,0.120711,0.376775,0.461694,0.337806,0.996611,0.108504,0.379621,0.53201,0.775513,0.816661,0.841843,0.122714,0.977325,0.880218,0.826836,0.117058,0.0739619,0.21394,0.271903,0.157991,0.754574,0.714683,0.406382,0.672969,0.984041,0.428024,0.934884,0.494102,0.679319,0.577233,0.67527,0.970899,0.561213,0.185401,0.984837,0.111944,0.632291,0.298803,0.525731,0.310212,0.742439,0.575466,0.230382,0.803091,0.389977,0.754391,0.127961,0.620677,0.223189,0.88553,0.320358,0.893286,0.0378959,0.154853,0.226844,0.36072,0.980428,0.672716,0.787008,0.219119,0.967004,0.610281,0.154202,0.148981,0.0850158,0.735651,0.10026,0.639535,0.78992,0.97631,0.455635,0.837887,0.912135,0.760197,0.937298,0.120757,0.445794,0.912117,0.486496,0.472828,0.551042,0.932698,0.849267,0.391311,0.930467,0.67805,0.942173,0.436637,0.0390496,0.15233,0.5404,0.131806,0.83524,0.687352,0.559763,0.373283,0.0434329,0.8097,0.290936,0.411134,0.404296,0.751612,0.378869,0.352803,0.208642,0.976897,0.339665,0.436613,0.259896,0.56367,0.278477,0.304803,0.931292,0.216561,0.430804,0.768827,0.0328354,0.0868956,0.24038,0.116435,0.477359,0.236492,0.393434,0.0208766,0.291667,0.823584,0.936313,0.541279,0.883984,0.611109,0.245398,0.412433,0.573113,0.30562,0.0220773,0.184532,0.667303,0.168373,0.931636,0.593089,0.00377905,0.511835,0.832928,0.514676,0.34222,0.263267,0.732125,0.495078,0.708251,0.158924,0.496056,0.882178,0.787564,0.653538,0.866196,0.789867,0.0242115,0.1681,0.673484,0.559916,0.347024,0.670488,0.995011,0.836691,0.0251025,0.340707,0.923634,0.496488,0.729341,0.16699,0.891625,0.113994,0.92043,0.536251,0.139613,0.410558,0.666084,0.302106,0.372435,0.0286576,0.0551552,0.286454,0.190028,0.438613,0.19472,0.100993,0.457093,0.941082,0.479382,0.990445,0.715531,0.616812,0.967121,0.656418,0.813766,0.218621,0.200921,0.910771,0.907394,0.513931,0.477922,0.672056,0.834109,0.819628,0.667939,0.958895,0.673672,0.611993,0.625645,0.609562,0.840035,0.86479,0.0950001,0.62869,0.974776,0.0240807,0.578556,0.84677,0.219636,0.902176,0.649663,0.748329,0.798281,0.255199,0.854995,0.251084,0.814086,0.487732,0.720022,0.474009,0.607645,0.0905548,0.891177,0.723625,0.774127,0.964304,0.245097,0.298254,0.113074,0.751355,0.305023,0.360483,0.469049,0.618028,0.0960793,0.660284,0.292303,0.854674,0.157582,0.965217,0.0711626,0.477952,0.448783,0.699539,0.92551,0.128824,0.615419,0.952949,0.885737,0.424085,0.225142,0.388439,0.298663,0.173068,0.177956,0.749862,0.0741315,0.431501,0.828635,0.690453,0.111343,0.262238,0.00946766,0.125469,0.0710805,0.742471,0.64822,0.653773,0.489591,0.202485,0.0942876,0.633723,0.910693,0.617191,0.541565,0.843972,0.26768,0.499982,0.917389,0.142299,0.339376,0.444161,0.409536,0.846817,0.233635,0.471741,0.0851709,0.313824,0.758794,0.058772,0.406846,0.92838,0.433378,0.684172,0.594888,0.913928,0.0441483,0.324138,0.872688,0.396532,0.665537,0.132447,0.363115,0.482297,0.160662,0.126391,0.633802,0.843945,0.39829,0.718341,0.765027,0.778978,0.0277116,0.936456,0.0403288,0.568676,0.823717,0.469261,0.497976,0.952497,0.821416,0.390901,0.0376095,0.173755,0.472405,0.946516,0.363594,0.888891,0.80994,0.0965268,0.140118,0.461779,0.0551048,0.688451,0.981796,0.668189,0.198308,0.0451564,0.599285,0.473103,0.122847,0.207629,0.908062,0.773402,0.867419,0.571694,0.301487,0.547426,0.770875,0.407009,0.90638,0.0520252,0.268243,0.468005,0.912155,0.102824,0.265928,0.247425,0.0883302,0.222768,0.974502,0.911439,0.704124,0.271648,0.773844,0.0318418,0.587643,0.345844,0.0178599,0.175732,0.338097,0.281368,0.971349,0.655342,0.0534369,0.105902,0.70235,0.34097,0.866733,0.756943,0.62857,0.662203,0.345399,0.730587,0.615031,0.174969,0.0391014,0.779032,0.803858,0.117433,0.618389,0.0316969,0.494129,0.340521,0.636175,0.0159523,0.756337,0.427343,0.796325,0.793578,0.109923,0.575341,0.603503,0.847813,0.668913,0.513899,0.553788,0.0515664,0.0519037,0.530704,0.671696,0.570633,0.469392,0.143445,0.335957,0.876208,0.776552,0.558717,0.411713,0.403084,0.559705,0.84952,0.121937,0.407825,0.169382,0.334902,0.376677,0.711537,0.40948,0.143793,0.576117,0.970046,0.0859764,0.252739,0.186562,0.958058,0.109164,0.378063,0.16636,0.244227,0.960812,0.813881,0.0600969,0.0289236,0.697073,0.777455,0.488368,0.0769154,0.900583,0.448117,0.21802,0.0013051,0.20403,0.132296,0.5075,0.683266,0.737736,0.318453,0.185577,0.486149,0.630652,0.276616,0.353364,0.406343,0.350989,0.920001,0.404009,0.725146,0.326251,0.863175,0.430661,0.0073579,0.415829,0.290958,0.366597,0.893435,0.295476,0.788619,0.864235,0.890875,0.345541,0.19612,0.650955,0.989038,0.328466,0.271017,0.336675,0.288137,0.712326,0.2822,0.299017,0.115395,0.324022,0.785318,0.415997,0.403919,0.678873,0.00315088,0.105508,0.97106,0.697474,0.3286,0.715825,0.836799,0.74848,0.333284,0.735697,0.568818,0.193635,0.11511,0.1865,0.607028,0.385202,0.556736,0.0714994,0.61055,0.881071,0.276454,0.529413,0.387544,0.0415996,0.244644,0.790506,0.701087,0.412648,0.437337,0.704518,0.795184,0.2432,0.927156,0.616884,0.402673,0.580636,0.612883,0.936306,0.896671,0.532405,0.562993,0.336954,0.436224,0.515498,0.369231,0.021652,0.621343,0.754976,0.497338,0.338781,0.242344,0.260679,0.705849,0.953014,0.215298,0.92464,0.474046,0.0452049,0.507141,0.67408,0.776993,0.879935,0.862771,0.689108,0.762516,0.702862,0.320916,0.511083,0.263434,0.262243,0.90812,0.363621,0.392966,0.388921,0.945749,0.474047,0.553991,0.744527,0.888833,0.365057,0.0713761,0.857243,0.117402,0.374929,0.408114,0.0299209,0.614549,0.0114133,0.774707,0.226664,0.270501,0.467225,0.56396,0.174362,0.208972,0.305932,0.433282,0.447915,0.0141398,0.96018,0.593707,0.538571,0.77846,0.0653172,0.587433,0.36728,0.560798,0.683966,0.428871,0.980109,0.475178,0.819964,0.127289,0.513498,0.241175,0.270315,0.717586,0.466622,0.320733,0.650132,0.0758381,0.536468,0.522034,0.215084,0.905398,0.525859,0.889535,0.662681,0.321168,0.202466,0.806124,0.0443404,0.91486,0.445877,0.603515,0.946873,0.474036,0.0667186,0.636546,0.127517,0.275643,0.241783,0.0314268,0.0557286,0.531226,0.920015,0.441413,0.51187,0.875852,0.917995,0.0150225,0.240879,0.95241,0.400098,0.770155,0.95025,0.410791,0.558103,0.793145,0.324668,0.0261574,0.64412,0.118916,0.638036,0.856921,0.253091,0.626265,0.725382,0.377448,0.61709,0.44795,0.0622195,0.705356,0.441663,0.762804,0.621674,0.467145,0.661022,0.966005,0.806173,0.116337,0.0447932,0.267162,0.745967,0.726719,0.487265,0.369231,0.229783,0.533644,0.254735,0.414722,0.558374,0.551146,0.756989,0.73365,0.752415,0.0977669,0.801077,0.682697,0.192681,0.629863,0.340895,0.696244,0.900934,0.205706,0.939588,0.924063,0.620633,0.0601998,0.404728,0.547159,0.480034,0.691447,0.958423,0.453344,0.517397,0.39269,0.664694,0.749437,0.556747,0.808813,0.476864,0.0610125,0.22433,0.298445,0.997918,0.823553,0.873845,0.959474,0.0871783,0.855423,0.44023,0.178307,0.650031,0.600823,0.0848821,0.719183,0.721666,0.326749,0.231493,0.162563,0.142203,0.837711,0.818996,0.665457,0.0537657,0.103168,0.509207,0.102463,0.947416,0.922748,0.694725,0.398257,0.270325,0.358935,0.114283,0.420818,0.593763,0.409444,0.689775,0.899091,0.7409,0.168952,0.888619,0.450038,0.557338,0.240805,0.519511,0.41201,0.694192,0.499481,0.0420583,0.221105,0.645157,0.893663,0.0281115,0.642743,0.281684,0.0385695,0.407015,0.13342,0.884439,0.0942459,0.294231,0.382197,0.797959,0.327991,0.764682,0.488679,0.92632,0.355317,0.606371,0.931661,0.308154,0.629288,0.52654,0.941079,0.947912,0.978445,0.696715,0.387196,0.728416,0.0496022,0.916495,0.349131,0.14471,0.0749869,0.0731245,0.280503,0.897907,0.213297,0.100419,0.63369,0.352086,0.659186,0.672074,0.284091,0.0257695,0.0484902,0.0608175,0.499522,0.06055,0.728304,0.588648,0.391202,0.142694,0.572984,0.64352,0.352101,0.631049,0.560184,0.930842,0.0590959,0.260189,0.87622,0.829385,0.420719,0.288916,0.613515,0.911312,0.774025,0.426015,0.0624352,0.46453,0.570888,0.791936,0.460341,0.615536,0.758002,0.108727,0.971956,0.0114254,0.754428,0.519004,0.429312,0.46525,0.594637,0.455102,0.757581,0.94582,0.921489,0.824229,0.125268,0.023057,0.744308,0.978182,0.397013,0.708088,0.817018,0.255072,0.790923,0.885532,0.307822,0.256697,0.114598,0.660058,0.0406985,0.152254,0.174498,0.267485,0.0470566,0.331365,0.262745,0.917684,0.770279,0.80374,0.0792605,0.334825,0.0483052,0.549488,0.607982,0.599726,0.433618,0.601269,0.805094,0.246907,0.977428,0.395666,0.768133,0.312552,0.46326,0.285473,0.460841,0.390985,0.13855,0.701877,0.266984,0.812528,0.211818,0.0143941,0.761003,0.339728,0.159821,0.435091,0.234454,0.0242174,0.0904314,0.152538,0.440735,|0.00806844,0.74834,0.176128,0.384497,0.458331,0.697405,0.0579024,0.117434,0.497958,0.138911,0.760296,0.933256,0.970039,0.0733323,0.713926,0.22491,0.0496481,0.227867,0.617296,0.37193,0.640435,0.569922,0.711129,0.365151,0.786985,0.544779,0.573327,0.616142,0.872048,0.674404,0.141559,0.583607,0.459344,0.588768,0.896199,0.00687319,0.366793,0.0329462,0.139889,0.315807,0.879593,0.389356,0.611646,0.549866,0.112465,0.074982,0.815503,0.560416,0.273437,0.395598,0.424927,0.888859,0.409732,0.659062,0.978898,0.612702,0.167432,0.763159,0.191393,0.82329,0.906657,0.925061,0.591681,0.554056,0.395555,0.72618,0.796697,0.848082,0.382343,0.938467,0.667239,0.21742,0.488638,0.824869,0.274062,0.975793,0.275225,0.0678817,0.78013,0.978032,0.329619,0.51003,0.835258,0.805951,0.977383,0.145192,0.520939,0.644093,0.77444,0.348457,0.220517,0.384931,0.851432,0.405344,0.635292,0.392371,0.311944,0.175406,0.867048,0.0214054,0.380673,0.659642,0.156959,0.988616,0.810183,0.573608,0.0563428,0.0558345,0.315024,0.470995,0.8047,0.139159,0.500713,0.997155,0.254962,0.194924,0.0921094,0.750944,0.214861,0.50062,0.312888,0.826542,0.246181,0.735314,0.792129,0.648291,0.895308,0.822642,0.238475,0.472043,0.731774,0.216728,0.419047,0.676776,0.628735,0.608953,0.4554,0.681749,0.626156,0.212409,0.716981,0.328271,0.025693,0.39873,0.670314,0.941099,0.696122,0.972176,0.727367,0.493222,0.130563,0.247029,0.636124,0.558663,0.659867,0.320938,0.406262,0.214269,0.260866,0.614191,0.809477,0.494396,0.995957,0.509888,0.63798,0.320911,0.731798,0.148479,0.852918,0.229933,0.242099,0.813352,0.0630278,0.870506,0.709856,0.71297,0.7282,0.747371,0.933696,0.862051,0.58823,0.430619,0.138951,0.867965,0.894101,0.829234,0.881282,0.874706,0.24412,0.371735,0.996062,0.716081,0.55391,0.343986,0.655518,0.513462,0.998402,0.329517,0.0100279,0.694536,0.936978,0.677498,0.763199,0.850554,0.713025,0.66329,0.0503117,0.280399,0.79654,0.207077,0.562331,0.0199054,0.35012,0.315802,0.0823218,0.49202,0.908765,0.437042,0.680157,0.906108,0.0386535,0.688103,0.196301,0.494956,0.30339,0.649027,0.30453,0.730008,0.481956,0.172323,0.63444,0.414097,0.961012,0.459171,0.829469,0.110525,0.936334,0.111173,0.418401,0.765599,0.224828,0.510341,0.0715641,0.724845,0.809528,0.459641,0.78028,0.57898,0.626062,0.117043,0.439696,0.674497,0.881103,0.576422,0.285303,0.11911,0.522702,0.877506,0.741593,0.128999,0.0853156,0.896583,0.958719,0.405508,0.67536,0.443513,0.325925,0.841841,0.384995,0.600897,0.492191,0.792398,0.997953,0.772182,0.0822671,0.0186024,0.849493,0.547092,0.445335,0.945395,0.372256,0.0476675,0.32133,0.584921,0.131705,0.211049,0.631264,0.981312,0.857407,0.0831469,0.520945,0.723005,0.244764,0.158358,0.88586,0.245821,0.300794,0.35254,0.276896,0.389451,0.900929,0.639147,0.527611,0.572483,0.318258,0.554142,0.751712,0.486163,0.116328,0.800555,0.352335,0.0520641,0.645584,0.460476,0.623107,0.347427,0.0251167,0.337846,0.954328,0.541921,0.786769,0.862916,0.277237,0.139329,0.618889,0.885263,0.603679,0.951611,0.274806,0.78764,0.522164,0.342421,0.225856,0.400276,0.949484,0.245713,0.405217,0.937951,0.416384,0.622495,0.107066,0.521452,0.456092,0.275633,0.225064,0.74565,0.721374,0.315039,0.733909,0.669651,0.324173,0.635766,0.89741,0.908646,0.509757,0.858968,0.842843,0.215574,0.541653,0.457424,0.378415,0.0839573,0.341767,0.581397,0.752462,0.690764,0.630227,0.147175,0.340405,0.960068,0.161367,0.563923,0.757954,0.80675,0.971744,0.413913,0.750283,0.09038,0.296532,0.796409,0.739412,0.192678,0.71305,0.214289,0.256383,0.3785,0.746644,0.206125,0.64666,0.407978,0.164002,0.515603,0.291305,0.581667,0.309055,0.575114,0.128567,0.110779,0.439506,0.640108,0.976387,0.399707,0.0172154,0.421293,0.844078,0.603327,0.317312,0.82524,0.8368,0.276979,0.504651,0.872213,0.331197,0.569464,0.556855,0.533653,0.711037,0.183977,0.686907,0.280884,0.999066,0.484747,0.587628,0.618009,0.38835,0.502622,0.842756,0.971748,0.502862,0.381088,0.534369,0.802551,0.233138,0.681509,0.103614,0.439142,0.98481,0.3621,0.227014,0.702501,0.669399,0.260542,0.714372,0.935569,0.507131,0.310523,0.0139226,0.329881,0.153618,0.817927,0.396903,0.220107,0.389331,0.105117,0.404685,0.734804,0.720743,0.116822,0.151092,0.585203,0.443006,0.954358,0.0898592,0.373741,0.214302,0.827141,0.850375,0.518947,0.382193,0.706505,0.823561,0.360742,0.448653,0.927627,0.362402,0.7422,0.66421,0.496874,0.7464,0.854822,0.577463,0.94575,0.296061,0.222564,0.179581,0.209053,0.898794,0.461527,0.780494,0.217159,0.0247183,0.951124,0.546799,0.446505,0.473316,0.402378,0.659691,0.580405,0.540854,0.242225,0.662854,0.825677,0.20482,0.771107,0.656135,0.776951,0.347021,0.502009,0.690573,0.0255,0.348164,0.328668,0.221534,0.534002,0.213235,0.16257,0.669537,0.39438,0.812163,0.0328934,0.844052,0.943817,0.638909,0.791811,6.1214e-05,0.132734,0.499725,0.147742,0.687074,0.828614,0.640734,0.495432,0.746139,0.726551,0.132965,0.0180886,0.884294,0.701306,0.908964,0.272171,0.904749,0.667413,0.840135,0.773383,0.314903,0.542717,0.202392,0.511777,0.153816,0.0708706,0.529481,0.461675,0.578517,0.536126,0.452522,0.444081,0.925999,0.348272,0.0625392,0.255901,0.164417,0.584983,0.435983,0.608899,0.734006,0.569617,0.236967,0.712808,0.825631,0.982309,0.992031,0.612729,0.671877,0.67337,0.547031,0.39986,0.764524,0.726685,0.800451,0.731762,0.822919,0.585641,0.542375,0.600513,0.318332,0.514642,0.573744,0.724365,0.500335,0.137585,0.380642,0.360372,0.866196,0.887252,0.773156,0.895269,0.676189,0.467794,0.946323,0.7045,0.714206,0.570464,0.0875553,0.783676,0.772531,0.00961196,0.707461,0.658934,0.149434,0.37911,0.821897,0.466614,0.930578,0.4831,0.767322,0.609302,0.508698,0.733936,0.00325537,0.595991,0.0355363,0.418835,0.252402,0.778038,0.780128,0.16382,0.0558436,0.972815,0.641972,0.91701,0.473156,0.443939,0.346607,0.0427745,0.0900827,0.290259,0.267583,0.306135,0.504768,0.217759,0.932916,0.496092,0.321676,0.964205,0.386758,0.955563,0.532065,0.271483,0.248664,0.982929,0.736884,0.725739,0.403197,0.30903,0.701649,0.990067,0.54241,0.940513,0.767141,0.244535,0.686991,0.834153,0.339632,0.690898,0.457239,0.123062,0.698869,0.663023,0.0887984,0.11959,0.648608,0.262069,0.965247,0.87282,0.694238,0.690147,0.600966,0.582149,0.653026,0.722445,0.351817,0.170924,0.0667457,0.96633,0.0302503,0.409889,0.232901,0.961742,0.00392628,0.658891,0.323077,0.790375,0.0941033,0.0315467,0.560731,0.508881,0.0512353,0.717078,0.563618,0.666456,0.0417475,0.614628,0.123709,0.0663794,0.695456,0.710201,0.54149,0.20746,0.414523,0.918306,0.882226,0.0369875,0.500793,0.229489,0.618186,0.948931,0.607129,0.340775,0.83624,0.976449,0.104033,0.0391658,0.694702,0.683839,0.671487,0.606882,0.814938,0.164137,0.757732,0.412967,0.351654,0.78792,0.695346,0.320639,0.153377,0.0808732,0.832745,0.711101,0.831792,0.943582,0.821229,0.480765,0.909096,0.171693,0.358922,0.574061,0.386396,0.805993,0.561769,0.9813,0.133663,0.793116,0.406304,0.615306,0.790331,0.0959523,0.984017,0.319583,0.288149,0.734121,0.295465,0.469499,0.90213,0.868726,0.15844,0.40739,0.795315,0.587472,0.970518,0.484322,0.879498,0.128144,0.390074,0.916787,0.401879,0.0130268,0.140471,0.335526,0.164847,0.833584,0.576876,0.099327,0.371439,0.567752,0.386617,0.124573,0.614051,0.0509987,0.898403,0.184642,0.688256,0.369787,0.237678,0.228512,0.274619,0.0202917,0.652439,0.53859,0.922566,0.117025,0.156769,0.225076,0.133375,0.947739,0.373849,0.257064,0.0116403,0.518863,0.649863,0.093793,0.891365,0.63869,0.589185,0.578259,0.312729,0.207574,0.51675,0.291088,0.833909,0.264469,0.742372,0.753525,0.454768,0.363576,0.713105,0.303322,0.0931928,0.419744,0.659756,0.641397,0.134123,0.725515,0.511351,0.584224,0.86995,0.663665,0.519794,0.641993,0.518019,0.757952,0.746562,0.782013,0.0203761,0.583831,0.896367,0.628534,0.518909,0.674298,0.467778,0.522595,0.614177,0.432923,0.482672,0.663319,0.257068,0.621001,0.190641,0.196701,0.0116733,0.764276,0.944766,0.381465,0.557692,0.127599,0.942916,0.257924,0.473488,0.566691,0.344436,0.411418,0.334701,0.360677,0.189039,0.54155,0.389473,0.115291,0.481628,0.775505,0.595754,0.211291,0.277402,0.451178,0.607885,0.484176,0.276191,0.179862,0.279541,0.787501,0.534815,0.487347,0.863405,0.84848,0.857865,0.879559,0.428546,0.931837,0.29184,0.605217,0.794149,0.443327,0.480048,0.0513668,0.625394,0.681797,0.99645,0.854686,0.334709,0.367892,0.112197,0.323562,0.95706,0.0556831,0.695239,0.320819,0.811379,0.656663,0.786171,0.516573,0.695831,0.584584,0.847152,0.558754,0.568766,0.393824,0.00778067,0.430877,0.56548,0.623394,0.296011,0.458974,0.477361,0.42422,0.595437,0.499441,0.0613269,0.931054,0.465643,0.0341093,0.908113,0.74168,0.824335,0.885318,0.214701,0.283948,0.403603,0.57637,0.75439,0.745668,0.843771,0.0173101,0.385717,0.849457,0.722052,0.932021,0.283151,0.445704,0.381492,0.912844,0.706351,0.785695,0.635062,0.788757,0.702601,0.468741,0.0676183,0.650825,0.0152858,0.0855367,0.359246,0.760274,0.64804,0.0761231,0.795476,0.699951,0.912489,0.0616102,0.572113,0.116098,0.561812,0.166792,0.269272,0.707465,0.885716,0.974943,0.858484,0.0730047,0.897871,0.484387,0.843008,0.544544,0.680643,0.693518,0.832484,0.553813,0.663373,0.136639,0.697722,0.930142,0.860646,0.684723,|0.0450359,0.311301,0.432712,0.163013,0.899128,0.778918,0.0817263,0.133076,0.312228,0.236253,0.730871,0.732719,0.917955,0.0476328,0.000208795,0.644058,0.170347,0.3433,0.122273,0.157397,0.996544,0.965847,0.256815,0.939194,0.965151,0.499107,0.986022,0.490698,0.639826,0.836976,0.0845435,0.585945,0.651389,0.624936,0.202175,0.459751,0.780321,0.816044,0.0591189,0.987029,0.928579,0.103656,0.785038,0.879951,0.189653,0.231384,0.998738,0.221368,0.466389,0.570443,0.236544,0.00152367,0.833215,0.42766,0.492391,0.240896,0.543413,0.63374,0.440354,0.589613,0.718965,0.262403,0.0791912,0.697209,0.226559,0.504819,0.630812,0.130032,0.935019,0.971036,0.0154407,0.428955,0.152697,0.580411,0.879316,0.537489,0.688141,0.569217,0.894158,0.934595,0.951661,0.16051,0.138711,0.207291,0.893081,0.876656,0.535273,0.0199609,0.127614,0.69869,0.964037,0.251926,0.258123,0.699326,0.544173,0.845229,0.383557,0.117085,0.0754834,0.0246924,0.236556,0.554325,0.606744,0.807019,0.609701,0.462737,0.323161,0.358902,0.502258,0.377483,0.994762,0.414247,0.00540316,0.93371,0.538416,0.483499,0.336894,0.775145,0.901189,0.373824,0.571529,0.716162,0.702466,0.727303,0.0803198,0.41258,0.963,0.648796,0.593886,0.523395,0.792231,0.510971,0.975497,0.657458,0.568625,0.793312,0.780317,0.540117,0.875394,0.0333834,0.910339,0.165324,0.53394,0.30105,0.473776,0.950183,0.92794,0.0546354,0.614039,0.226928,0.23303,0.595105,0.0904747,0.713475,0.492786,0.696109,0.211406,0.991225,0.952033,0.254689,0.263616,0.078118,0.830953,0.176196,0.488987,0.371802,0.956655,0.836349,0.730056,0.471343,0.388597,0.0552004,0.848636,0.949298,0.660493,0.101825,0.91467,0.524329,0.925295,0.703049,0.923636,0.781646,0.461263,0.193518,0.0488009,0.54356,0.94005,0.573721,0.337548,0.808481,0.241577,0.176242,0.918694,0.0539221,0.310637,0.763757,0.927441,0.806769,0.274321,0.48588,0.763625,0.735401,0.919886,0.00862449,0.704743,0.23935,0.501497,0.661576,0.364569,0.963253,0.00271767,0.883182,0.454017,0.032521,0.505212,0.309944,0.747325,0.765333,0.231466,0.330195,0.673758,0.213722,0.780899,0.887643,0.467201,0.610088,0.651505,0.564239,0.346304,0.429165,0.27651,0.0489359,0.50731,0.207712,0.524009,0.903624,0.619008,0.158699,0.0103882,0.237253,0.819626,0.156296,0.0108901,0.662846,0.722568,0.773732,0.618477,0.448741,0.717747,0.451084,0.502423,0.226047,0.114111,0.479362,0.516943,0.924832,0.284702,0.0497816,0.467305,0.869218,0.828484,0.51587,0.666684,0.794057,0.159579,0.372557,0.0222347,0.577149,0.949174,0.12968,0.892301,0.968723,0.539843,0.890677,0.0274214,0.347683,0.53099,0.34488,0.456401,0.131803,0.63615,0.926386,0.967142,0.849368,0.991165,0.91242,0.221673,0.933291,0.267902,0.789047,0.477826,0.419918,0.357282,0.584168,0.456277,0.406655,0.465102,0.61371,0.670242,0.684004,0.0791463,0.343627,0.130316,0.474671,0.370838,0.0118187,0.993684,0.729482,0.345315,0.445772,0.160805,0.871014,0.873555,0.837891,0.686918,0.693222,0.939476,0.969927,0.287887,0.476824,0.0948021,0.0819488,0.565959,0.599115,0.792723,0.429765,0.589928,0.223609,0.219839,0.697493,0.993192,0.992176,0.0676205,0.484255,0.400707,0.50716,0.719912,0.222552,0.611575,0.22795,0.931734,0.292844,0.270698,0.888219,0.0798572,0.170286,0.502034,0.838278,0.229944,0.629655,0.884075,0.71469,0.51303,0.140857,0.769009,0.181884,0.014937,0.0670891,0.227158,0.668942,0.656409,0.839071,0.355609,0.711677,0.25237,0.523839,0.597776,0.128681,0.553372,0.475594,0.526491,0.528139,0.795295,0.437228,0.324957,0.940695,0.902169,0.817348,0.627649,0.146026,0.0374933,0.392956,0.628609,0.458808,0.116475,0.14768,0.200585,0.906803,0.763781,0.620773,0.832126,0.325387,0.630522,0.469244,0.188757,0.00229037,0.870388,0.624849,0.850193,0.804209,0.038345,0.621544,0.406397,0.522057,0.930508,0.0570045,0.64575,0.331238,0.637245,0.928991,0.980664,0.653832,0.425776,0.0887741,0.135076,0.194314,0.472961,0.540812,0.409385,0.146052,0.281197,0.333418,0.309499,0.309305,0.696509,0.381561,0.293473,0.0968912,0.81278,0.0725188,0.47282,0.638621,0.469097,0.0929666,0.0554993,0.880004,0.686829,0.691972,0.843723,0.596375,0.503586,0.0437269,0.800574,0.30377,0.390081,0.356772,0.209132,0.816131,0.94337,0.586132,0.0693901,0.314557,0.607096,0.309212,0.985847,0.786936,0.30622,0.750421,0.674923,0.306109,0.200065,0.684091,0.745716,0.589774,0.376397,0.963587,0.0229729,0.452377,0.998972,0.530901,0.184158,0.258888,0.696749,0.819097,0.744617,0.348742,0.236093,0.98864,0.666643,0.632983,0.0712702,0.395036,0.257381,0.405256,0.760177,0.507985,0.969186,0.607448,0.148155,0.550264,0.81489,0.66251,0.882394,0.482314,0.654506,0.81153,0.798113,0.700952,0.140964,0.124901,0.816569,0.454178,0.57473,0.00272018,0.477408,0.168581,0.538489,0.927524,0.022373,0.071015,0.711548,0.588228,0.818027,0.769717,0.0116411,0.170671,0.958042,0.194663,0.751385,0.623785,0.765247,0.750257,0.014482,0.141938,0.227531,0.0830804,0.705964,0.545954,0.499333,0.305052,0.0807902,0.240758,0.800188,0.180777,0.826574,0.349554,0.461323,0.231259,0.391975,0.633178,0.00208646,0.371954,0.533165,0.0175641,0.160158,0.654935,0.317468,0.360502,0.0978485,0.632437,0.993507,0.826715,0.90043,0.344013,0.483518,0.550344,0.887951,0.699069,0.151711,0.473968,0.88854,0.508122,0.720167,0.470375,0.32253,0.0298808,0.432778,0.23665,0.422111,0.896412,0.302218,0.974561,0.325,0.931123,0.481889,0.234488,0.847793,0.648563,0.671298,0.894525,0.00735348,0.794567,0.567056,0.678615,0.555611,0.596538,0.347231,0.294074,0.855588,0.668246,0.510257,0.0882362,0.714469,0.422802,0.231546,0.96978,0.296437,0.594425,0.4625,0.174791,0.0493091,0.59863,0.888644,0.645368,0.429499,0.222722,0.0515999,0.936321,0.361961,0.678696,0.399343,0.75584,0.0912999,0.687039,0.667715,0.965253,0.591379,0.657638,0.602615,0.431701,0.331854,0.436861,0.00228602,0.0908248,0.990592,0.281843,0.789022,0.0567002,0.286402,0.606841,0.491751,0.419412,0.563751,0.351815,0.270943,0.0845594,0.974778,0.240782,0.375072,0.692984,0.605226,0.453462,0.125094,0.595273,0.971692,0.555744,0.707433,0.754065,0.0412775,0.0891648,0.173927,0.632591,0.157936,0.273766,0.609844,0.0419714,0.972458,0.10042,0.233065,0.624097,0.202295,0.576868,0.179378,0.865822,0.439117,0.467827,0.366487,0.0721147,0.524189,0.408608,0.796064,0.717691,0.365776,0.18697,0.643716,0.905198,0.441607,0.424211,0.397527,0.144085,0.530279,0.338033,0.246404,0.247455,0.850083,0.146514,0.357751,0.419326,0.726477,0.910283,0.926107,0.698575,0.119404,0.559698,0.606283,0.547912,0.263507,0.779874,0.00179899,0.348715,0.829782,0.838798,0.212192,0.353315,0.278694,0.862935,0.492486,0.387554,0.768439,0.261487,0.315402,0.893701,0.453702,0.284303,0.72909,0.58992,0.783442,0.346131,0.748507,0.165686,0.223227,0.916395,0.319226,0.810719,0.665147,0.205918,0.441565,0.151377,0.207424,0.963818,0.097103,0.564727,0.0447302,0.491307,0.0609653,0.963104,0.0357298,0.402318,0.71438,0.983599,0.342694,0.96358,0.691811,0.532162,0.312482,0.508047,0.21239,0.664889,0.79932,0.717437,0.959503,0.836865,0.847036,0.531586,0.344853,0.711931,0.691429,0.947471,0.879525,0.201729,0.546919,0.930909,0.620383,0.65892,0.571741,0.173369,0.661951,0.562565,0.397033,0.0362481,0.507896,0.626747,0.749345,0.784008,0.460919,0.508053,0.899337,0.938664,0.417076,0.0901543,0.0110514,0.366244,0.339566,0.921306,0.414479,0.230814,0.330546,0.903906,0.886255,0.220649,0.192935,0.787569,0.513759,0.319912,0.767901,0.322704,0.518761,0.616,0.454814,0.975683,0.42115,0.236475,0.536453,0.09375,0.491926,0.198771,0.158548,0.360333,0.297703,0.952612,0.70639,0.311529,0.159845,0.491901,0.785486,0.930951,0.190069,0.312748,0.823393,0.266793,0.855981,0.497663,0.233479,0.957333,0.62111,0.936917,0.947399,0.308304,0.469679,0.118098,0.184813,0.184826,0.815334,0.433286,0.786381,0.995044,0.260104,0.813479,0.0958714,0.936186,0.279112,0.554088,0.584169,0.644167,0.716559,0.371593,0.833153,0.946369,0.723577,0.391439,0.638655,0.494241,0.1286,0.0154306,0.769058,0.361595,0.469067,0.593624,0.782284,0.147793,0.185075,0.80148,0.990313,0.399846,0.609486,0.197383,0.463189,0.0787578,0.259718,0.722064,0.571331,0.943032,0.927877,0.382706,0.658774,0.425858,0.15422,0.511963,0.954178,0.673529,0.596317,0.146558,0.885376,0.980916,0.293743,0.60136,0.815036,0.643285,0.938578,0.108941,0.886598,0.368748,0.669056,3.15905e-05,0.424341,0.473732,0.410859,0.690815,0.873863,0.713353,0.210388,0.805567,0.0815747,0.729202,0.306413,0.887809,0.493799,0.642468,0.390473,0.0723869,0.926419,0.0482349,0.865275,0.157538,0.396742,0.828289,0.675952,0.795623,0.913567,0.642864,0.114246,0.302694,0.985749,0.120779,0.672537,0.503278,0.568683,0.935867,0.798375,0.820821,0.844567,0.898517,0.944801,0.721299,0.157333,0.422325,0.55751,0.615811,0.500223,0.0384488,0.920423,0.253279,0.187267,0.975725,0.946318,0.15621,0.154047,0.272397,0.144088,0.68282,0.172938,0.267743,0.094614,0.775329,0.257525,0.978964,0.204314,0.701317,0.140895,0.735958,0.888958,0.381481,0.883479,0.23251,0.264427,0.805526,0.518532,0.415201,0.839296,0.839405,0.270467,0.786585,0.723093,0.359194,0.199309,0.692373,0.149567,0.348428,0.156376,0.160184,0.576224,0.461498,0.121233,0.0203183,0.59619,0.747739,0.345554,0.713663,0.185683,0.346301,0.664078,0.490281,0.570843,0.157367,0.680683,0.82361,0.191873,0.469949,0.114508,0.577026,|0.900218,0.905763,0.133891,0.415857,0.390689,0.11618,0.86965,0.867823,0.441276,0.926621,0.363097,0.215877,0.62586,0.300519,0.836998,0.553215,0.0205088,0.394283,0.898676,0.26775,0.518542,0.874069,0.941704,0.395874,0.326669,0.792103,0.104886,0.189946,0.768598,0.93894,0.695769,0.33912,0.605595,0.752468,0.60062,0.15454,0.862082,0.858315,0.0584651,0.615254,0.8474,0.417654,0.333966,0.991154,0.892992,0.268643,0.589525,0.298786,0.54453,0.202373,0.883448,0.168411,0.678255,0.0374765,0.382881,0.660998,0.993693,0.269215,0.931725,0.435392,0.411669,0.942133,0.385895,0.686805,0.566464,0.329177,0.934069,0.154044,0.11581,0.230949,0.971298,0.84883,0.619398,0.756796,0.987794,0.391047,0.253415,0.222239,0.860026,0.705205,0.925795,0.647646,0.148381,0.992538,0.215541,0.0113882,0.578066,0.723786,0.626799,0.570339,0.239376,0.125659,0.47956,0.0957113,0.846064,0.374333,0.150378,0.92897,0.48284,0.989485,0.405,0.823158,0.885495,0.322734,0.137372,0.541809,0.88556,0.80706,0.0854592,0.82553,0.996112,0.22399,0.571357,0.0296084,0.27428,0.309809,0.913218,0.587962,0.0984407,0.568681,0.79539,0.235082,0.774317,0.117163,0.829391,0.272641,0.573491,0.97674,0.699361,0.375713,0.422331,0.859,0.3577,0.109282,0.614567,0.39036,0.604786,0.123446,0.472072,0.359028,0.412958,0.207049,0.684903,0.641302,0.565071,0.892655,0.0839034,0.566323,0.218419,0.532002,0.111844,0.198607,0.314436,0.130197,0.468329,0.738568,0.43058,0.274041,0.32269,0.0642776,0.876021,0.161087,0.484315,0.511781,0.93591,0.180086,0.454848,0.983469,0.370991,0.061302,0.378419,0.270635,0.74907,0.491237,0.823675,0.381614,0.545652,0.456921,0.881038,0.818142,0.820847,0.297487,0.993118,0.143153,0.057851,0.89573,0.83838,0.72135,0.8724,0.895793,0.140789,0.214155,0.361064,0.884414,0.056344,0.37035,0.165724,0.159093,0.27394,0.158951,0.752338,0.361875,0.902895,0.658292,0.966994,0.643067,0.485861,0.853555,0.871083,0.921556,0.485344,0.632389,0.57585,0.328435,0.622658,0.126835,0.783222,0.318536,0.341974,0.446193,0.303262,0.157464,0.0308452,0.226536,0.0318369,0.826225,0.671407,0.631905,0.302783,0.659821,0.271881,0.441645,0.926417,0.237593,0.680281,0.712722,0.21471,0.193523,0.953388,0.452569,0.910414,0.468332,0.814379,0.358446,0.758012,0.0308738,0.0171868,0.38455,0.501816,0.844064,0.347996,0.719794,0.201788,0.418885,0.203659,0.548786,0.326208,0.355136,0.605645,0.520002,0.979949,0.912645,0.345617,0.608668,0.345932,0.155001,0.785959,0.563439,0.732452,0.00569844,0.872663,0.390134,0.21787,0.410356,0.284473,0.335787,0.957114,0.303203,0.93826,0.366634,0.0782638,0.251454,0.555571,0.875477,0.100716,0.659307,0.160247,0.285653,0.244639,0.421707,0.34736,0.395065,0.90472,0.219375,0.478727,0.203153,0.757708,0.376181,0.851372,0.258072,0.253869,0.106488,0.0527048,0.668447,0.994313,0.426656,0.407204,0.671221,0.102389,0.855762,0.505941,0.731093,0.0547744,0.321487,0.404435,0.0867288,0.0916007,0.107382,0.472887,0.0918517,0.794556,0.808405,0.0254433,0.514762,0.825961,0.260823,0.369464,0.607882,0.145257,0.998941,0.779951,0.402399,0.497649,0.900268,0.613512,0.95802,0.36321,0.832397,0.943465,0.245829,0.703906,0.717855,0.761714,0.0502291,0.984929,0.524704,0.302662,0.0431688,0.781859,0.684815,0.52258,0.829116,0.289598,0.661933,0.766662,0.139322,0.771895,0.70053,0.344135,0.0837914,0.779791,0.424024,0.371199,0.366169,0.910433,0.746846,0.490169,0.973525,0.666531,0.0481687,0.301666,0.182619,0.893993,0.355396,0.184086,0.991089,0.0351135,0.10974,0.753498,0.948396,0.732879,0.935869,0.0961005,0.107476,0.534982,0.825244,0.427263,0.821863,0.384077,0.17601,0.598993,0.762915,0.0233264,0.112486,0.358231,0.648488,0.962807,0.687331,0.945338,0.362952,0.993997,0.651281,0.509023,0.353982,0.726876,0.24626,0.576177,0.578984,0.322993,0.973048,0.225187,0.673817,0.777364,0.28221,0.696874,0.725599,0.257889,0.345217,0.35076,0.516936,0.406064,0.915812,0.952055,0.759202,0.523587,0.910284,0.618117,0.216157,0.0401487,0.971259,0.804103,0.0773516,0.293828,0.209254,0.8644,0.0125589,0.722555,0.114844,0.595155,0.187678,0.0325305,0.63038,0.0278897,0.389074,0.82671,0.314882,0.443216,0.981075,0.538982,0.107764,0.404814,0.93835,0.385855,0.107526,0.596122,0.876707,0.140019,0.259197,0.0127824,0.114228,0.461136,0.954602,0.774659,0.870036,0.32112,0.320162,0.307145,0.732027,0.482986,0.709271,0.151239,0.325727,0.0424749,0.720081,0.413047,0.928078,0.107937,0.146979,0.377819,0.682468,0.940729,0.555692,0.363864,0.847412,0.613061,0.681064,0.526129,0.711263,0.389713,0.226939,0.385446,0.579128,0.487575,0.642939,0.709715,0.643618,0.158138,0.223582,0.404009,0.0751846,0.635489,0.489658,0.911969,0.476738,0.0527731,0.683649,0.101196,0.696696,0.51209,0.332554,0.935742,0.484864,0.332623,0.639085,0.393075,0.356509,0.866949,0.355711,0.0838718,0.784206,0.912718,0.021019,0.615136,0.677909,0.218696,0.355214,0.595616,0.112305,0.62268,0.758399,0.250068,0.319508,0.384865,0.649726,0.305688,0.105841,0.511823,0.397412,0.543383,0.530293,0.161032,0.0151103,0.611696,0.987226,0.0246913,0.868523,0.07201,0.809145,0.856453,0.162244,0.474946,0.303479,0.0775166,0.793722,0.150016,0.432434,0.527371,0.760483,0.835994,0.21556,0.80749,0.0979055,0.957717,0.0430251,0.64935,0.0720058,0.32097,0.29036,0.200887,0.0106926,0.529623,0.0153615,0.306938,0.230264,0.16743,0.656993,0.0343333,0.574126,0.842254,0.380235,0.863329,0.770071,0.611892,0.150564,0.416546,0.0687212,0.781149,0.0264797,0.474173,0.171442,0.945401,0.727045,0.9618,0.437794,0.774509,0.469233,0.129979,0.516454,0.909942,0.0680746,0.119649,0.386352,0.11185,0.7095,0.452601,0.76722,0.236061,0.583637,0.591746,0.858713,0.40628,0.72792,0.491657,0.387172,0.662835,0.538737,0.397113,0.482734,0.823777,0.4314,0.302761,0.96396,0.75825,0.335308,0.0553329,0.31145,0.908856,0.48579,0.476274,0.20847,0.832993,0.463078,0.0812995,0.751764,0.756363,0.700476,0.891797,0.394119,0.331771,0.837078,0.139789,0.745298,0.917513,0.911301,0.094049,0.948022,0.898057,0.427725,0.33917,0.161935,0.740392,0.389359,0.414206,0.874716,0.534971,0.376671,0.517861,0.114199,0.12943,0.512633,0.346357,0.234288,0.637292,0.602439,0.673107,0.0676742,0.283242,0.293257,0.0820689,0.00856012,0.108527,0.238704,0.684238,0.989829,0.673315,0.43746,0.255298,0.626748,0.563129,0.889148,0.831164,0.579157,0.723543,0.0746927,0.410243,0.932966,0.723609,0.220177,0.905084,0.627834,0.489948,0.215592,0.856758,0.280434,0.753043,0.676488,0.0744766,0.271419,0.684903,0.421384,0.529096,0.893814,0.361039,0.256511,0.794917,0.054902,0.485069,0.361304,0.366343,0.0628045,0.0670199,0.25031,0.234778,0.69695,0.113518,0.967862,0.301318,0.305683,0.884563,0.544041,0.76633,0.701434,0.560798,0.943986,0.196376,0.00591362,0.191413,0.895607,0.842832,0.22101,0.300987,0.916819,0.514647,0.221535,0.88162,0.259898,0.223272,0.936244,0.804232,0.387701,0.283965,0.699469,0.880957,0.736812,0.876496,0.277668,0.715581,0.511572,0.117195,0.590006,0.341989,0.803395,0.262029,0.172535,0.20734,0.866305,0.924037,0.404108,0.263678,0.828457,0.378846,0.530111,0.984107,0.266949,0.144887,0.544252,0.170531,0.622197,0.599311,0.0431752,0.193107,0.816987,0.750934,0.299875,0.828347,0.195641,0.742223,0.292993,0.910254,0.417558,0.29351,0.910579,0.804551,0.406206,0.616191,0.385273,0.114459,0.266311,0.290774,0.643538,0.191496,0.427023,0.371286,0.348756,0.39935,0.276531,0.110944,0.306768,0.643016,0.263222,0.763036,0.463848,0.234574,0.575302,0.708813,0.116529,0.31507,0.882649,0.594117,0.0319961,0.908712,0.840115,0.681403,0.247188,0.00688416,0.141977,0.353992,0.0359907,0.939194,0.557467,0.754686,0.813032,0.617877,0.428207,0.155362,0.65025,0.477676,0.383709,0.872147,0.375437,0.0546886,0.341096,0.173477,0.406495,0.520483,0.336231,0.697771,0.437727,0.657503,0.130987,0.104029,0.855765,0.409338,0.125839,0.918762,0.972446,0.160647,0.472792,0.429701,0.166503,0.707894,0.760457,0.0478417,0.705853,0.836101,0.821668,0.865601,0.94204,0.0622188,0.429939,0.656879,0.616033,0.440752,0.938485,0.14621,0.267148,0.624708,0.329879,0.181857,0.70595,0.302897,0.280761,0.401772,0.572335,0.237716,0.168759,0.632304,0.651632,0.126584,0.223542,0.40244,0.119131,0.706739,0.880607,0.389376,0.118239,0.312671,0.508196,0.612146,0.339765,0.977798,0.776213,0.713973,0.024995,0.158248,0.136904,0.156515,0.860554,0.218901,0.534082,0.216047,0.712126,0.405325,0.986282,0.000349939,0.423273,0.292694,0.560838,0.479231,0.604901,0.172836,0.840177,0.565988,0.778995,0.54942,0.53214,0.31896,0.397458,0.815916,0.713027,0.702181,0.615491,0.23962,0.423065,0.552434,0.781592,0.949574,0.431846,0.223263,0.327468,0.726397,0.909595,0.583218,0.514082,0.632522,0.269403,0.14692,0.998303,0.234563,0.196239,0.355582,0.266651,0.749489,0.624575,0.0308871,0.337236,0.63198,0.412404,0.313165,0.791448,0.0347843,0.179842,0.108911,0.226012,0.716243,0.422203,0.497836,0.0750479,0.76243,0.507424,0.134097,0.937356,0.689223,0.138342,0.112421,0.293902,0.64297,0.476993,0.520873,0.578011,0.827159,0.63779,0.0289542,0.393737,0.833767,0.5934,0.845341,0.613078,0.79306,0.173237,0.816422,0.660449,0.06331,0.292337,0.932142,0.763301,0.295983,0.445478,0.573903,0.379203,0.216798,0.245276,0.354641,0.573675,0.458309,0.386817,0.109882,0.514713,0.59818,0.343855,|0.524765,0.163609,0.106588,0.167518,0.688065,0.981421,0.0828281,0.366924,0.063551,0.642164,0.308957,0.69302,0.209478,0.181628,0.86288,0.441152,0.140405,0.761861,0.586537,0.23147,0.0082323,0.76541,0.95892,0.110552,0.305903,0.362013,0.934412,0.85394,0.0635896,0.5284,0.71415,0.267881,0.702731,0.829826,0.00866461,0.136701,0.968223,0.832735,0.661036,0.121299,0.470042,0.935768,0.525333,0.0926183,0.851589,0.272291,0.810845,0.938136,0.464073,0.14979,0.0311992,0.641677,0.783282,0.981215,0.481302,0.563346,0.827557,0.391172,0.396256,0.390327,0.402756,0.698395,0.239172,0.825405,0.55174,0.578802,0.748687,0.648648,0.859234,0.737629,0.262396,0.625233,0.740575,0.760585,0.242369,0.763963,0.211863,0.284972,0.845417,0.446877,0.680961,0.978074,0.0271064,0.641697,0.320565,0.0231989,0.2985,0.943069,0.309148,0.508057,0.244122,0.861407,0.257351,0.189235,0.983293,0.0571582,0.645503,0.846026,0.13347,0.12924,0.31542,0.0765834,0.157944,0.861976,0.730289,0.520816,0.423526,0.31722,0.5288,0.307199,0.877229,0.801736,0.0166008,0.860824,0.174029,0.555211,0.429859,0.592481,0.0301175,0.582775,0.642482,0.236556,0.562346,0.934144,0.160854,0.868194,0.826074,0.0327198,0.284274,0.968117,0.41261,0.213246,0.340593,0.506545,0.814197,0.577047,0.021968,0.519632,0.478247,0.63282,0.510827,0.655495,0.200093,0.791534,0.345943,0.84466,0.255222,0.99851,0.904251,0.476379,0.671125,0.489374,0.462639,0.857976,0.103344,0.133135,0.404803,0.426545,0.894536,0.275883,0.436239,0.967543,0.357342,0.361554,0.488943,0.309805,0.300471,0.164437,0.272202,0.230938,0.716064,0.505976,0.151199,0.568175,0.277608,0.334264,0.304374,0.96443,0.547645,0.0631656,0.610657,0.997709,0.184005,0.158991,0.495055,0.430353,0.701954,0.434736,0.652298,0.746417,0.697436,0.345423,0.742377,0.60824,0.0734684,0.738555,0.424477,0.287296,0.641907,0.977306,0.270976,0.0562633,0.380094,0.912516,0.981326,0.359133,0.260115,0.909021,0.995766,0.89752,0.323366,0.374479,0.301047,0.0695505,0.0532134,0.918473,0.985717,0.489514,0.65677,0.411333,0.885862,0.855769,0.328669,0.692585,0.805909,0.248857,0.159354,0.847522,0.486067,0.799155,0.896191,0.305079,0.276998,0.901813,0.757808,0.256123,0.510204,0.423142,0.272249,0.0397976,0.419278,0.468136,0.0734138,0.200886,0.593879,0.714142,0.0716696,0.300409,0.0721181,0.875495,0.346536,0.152468,0.259592,0.684138,0.387747,0.180487,0.990106,0.476808,0.386858,0.46581,0.989801,0.929835,0.248616,0.185354,0.086247,0.236689,0.517849,0.983339,0.202855,0.518731,0.304984,0.844236,0.151437,0.0947255,0.154332,0.461641,0.0539748,0.975473,0.157907,0.419026,0.47418,0.633266,0.402307,0.185493,0.621973,0.942664,0.585341,0.105123,0.405245,0.901557,0.116262,0.490417,0.886351,0.123859,0.898964,0.580581,0.952451,0.609711,0.291512,0.954114,0.0279025,0.618115,0.649673,0.348264,0.108741,0.984684,0.770418,0.607724,0.692847,0.150243,0.949414,0.866203,0.81803,0.0945659,0.394448,0.351543,0.855471,0.292077,0.340383,0.264965,0.759954,0.832013,0.903184,0.77431,0.998757,0.0533016,0.578516,0.847627,0.785185,0.669949,0.16038,0.545851,0.810205,0.784302,0.0218278,0.157129,0.386322,0.235985,0.990213,0.552039,0.86118,0.869566,0.821384,0.309848,0.37802,0.46229,0.558161,0.912728,0.940229,0.614457,0.579504,0.154531,0.460864,0.72323,0.50733,0.533884,0.795566,0.354355,0.599569,0.293097,0.746546,0.726671,0.588249,0.235615,0.176656,0.0983489,0.209076,0.390497,0.071737,0.535641,0.949693,0.66436,0.632936,0.805983,0.833623,0.810108,0.454853,0.15584,0.632052,0.154155,0.878687,0.495855,0.476359,0.115013,0.553293,0.412963,0.540203,0.799083,0.380794,0.98476,0.361509,0.942158,0.887172,0.224852,0.491048,0.519054,0.697905,0.311236,0.342099,0.702701,0.00277054,0.476627,0.231618,0.420197,0.373859,0.0511715,0.462917,0.887035,0.0821746,0.250464,0.964885,0.412325,0.872596,0.129887,7.33137e-06,0.22394,0.896342,0.272964,0.824675,0.012649,0.461011,0.240133,0.975789,0.0918648,0.808175,0.887053,0.477965,0.967089,0.535561,0.798891,0.478878,0.905146,0.195586,0.939603,0.435554,0.211243,0.705981,0.203233,0.742782,0.141413,0.0656455,0.0442761,0.366051,0.214038,0.15339,0.000849664,0.580487,0.116646,0.298289,0.388932,0.517036,0.858121,0.302711,0.101724,0.831657,0.409539,0.854971,0.390436,0.234044,0.429599,0.861554,0.798198,0.424939,0.712249,0.207851,0.683311,0.168235,0.411452,0.637386,0.0825241,0.00502449,0.990053,0.303196,0.210338,0.619597,0.4042,0.953289,0.690048,0.123123,0.00117034,0.893647,0.0710005,0.334982,0.484422,0.802417,0.899316,0.914183,0.0317698,0.466626,0.740444,0.85099,0.410718,0.128753,0.0829447,0.529599,0.992592,0.00990003,0.796934,0.892272,0.67078,0.0589794,0.872774,0.773696,0.650037,0.344848,0.773535,0.282316,0.321002,0.229619,0.977762,0.873841,0.697655,0.694626,0.932576,0.345346,0.196434,0.69087,0.507325,0.845383,0.654276,0.39481,0.174262,0.922036,0.502436,0.603977,0.737705,0.302604,0.0539287,0.451168,0.543722,0.295463,0.0745798,0.312058,0.453462,0.131867,0.872171,0.507734,0.388898,0.794813,0.76832,0.0266499,0.657295,0.0645431,0.197344,0.274223,0.817925,0.767054,0.203705,0.327268,0.460544,0.985003,0.428706,0.0947002,0.971406,0.682574,0.871196,0.88127,0.7371,0.160676,0.624512,0.655297,0.311252,0.203772,0.813219,0.812193,0.457133,0.0909948,0.289344,0.254135,0.0598206,0.747887,0.940387,0.379851,0.285737,0.064744,0.594872,0.0469623,0.624036,0.996052,0.0190763,0.869489,0.88599,0.271254,0.0299752,0.242831,0.655487,0.739713,0.922519,0.197734,0.567073,0.507897,0.678858,0.769778,0.682492,0.362512,0.100925,0.879367,0.103642,0.555737,0.956927,0.118031,0.0852255,0.388698,0.408838,0.571926,0.193457,0.566797,0.31462,0.32785,0.84969,0.594121,0.156086,0.898551,0.250277,0.296265,0.671447,0.320159,0.584612,0.484429,0.678904,0.714473,0.379763,0.943607,0.900251,0.218426,0.683842,0.578343,0.711928,0.413177,0.130575,0.996456,0.25566,0.999258,0.885485,0.0106372,0.350355,0.0249754,0.869375,0.923766,0.632382,0.170751,0.299478,0.962491,0.212286,0.407131,0.883503,0.935219,0.614867,0.382536,0.376013,0.182982,0.429171,0.50188,0.192914,0.838664,0.0825394,0.0851604,0.303833,0.320238,0.576952,0.549953,0.581555,0.462191,0.958101,0.563321,0.710468,0.046831,0.354522,0.490967,0.698146,0.159309,0.608489,0.288608,0.024902,0.668812,0.539726,0.494868,0.704163,0.00808424,0.458035,0.999341,0.148343,0.648211,0.00377941,0.694077,0.961494,0.916514,0.410384,0.0065217,0.014308,0.117553,0.337336,0.930736,0.236284,0.985427,0.709572,0.465358,0.011573,0.038482,0.0891702,0.629852,0.998841,0.301289,0.58713,0.00915384,0.332647,0.540085,0.56562,0.508718,0.0540466,0.178279,0.235803,0.00328958,0.444405,0.655861,0.0789424,0.118664,0.881305,0.0828493,0.755824,0.529491,0.403546,0.565563,0.958585,0.988661,0.302532,0.835194,0.0763932,0.208536,0.00822026,0.219362,0.177385,0.799692,0.750767,0.61511,0.775943,0.646903,0.104118,0.666597,0.502903,0.978059,0.0828688,0.199697,0.869851,0.554872,0.407912,0.45295,0.0449716,0.840027,0.668863,0.644674,0.235459,0.0723323,0.749886,0.509429,0.844103,0.297489,0.189783,0.46337,0.151781,0.929846,0.112896,0.347818,0.129654,0.991246,0.583372,0.391518,0.863421,0.393414,0.873051,0.729452,0.960025,0.42416,0.0945969,0.765701,0.839153,0.480849,0.417491,0.635301,0.678966,0.571741,0.687156,0.500926,0.153137,0.91179,0.00687903,0.849336,0.150616,0.0137081,0.811795,0.760054,0.799057,0.883667,0.885916,0.889339,0.520081,0.244389,0.559783,0.393558,0.0966921,0.501455,0.704153,0.986051,0.142351,0.210924,0.547985,0.542696,0.977488,0.552891,0.746559,0.888217,0.382559,0.553749,0.510435,0.721883,0.887349,0.840342,0.564929,0.320989,0.826604,0.654384,0.108752,0.530142,0.193829,0.300622,0.974424,0.14431,0.89825,0.229912,0.0128151,0.789584,0.740328,0.68757,0.462925,0.596773,0.341286,0.422047,0.967159,0.774038,0.300388,0.163655,0.317432,0.445659,0.339495,0.307777,0.0631644,0.950824,0.750175,0.559661,0.0876321,0.512741,0.793979,0.995794,0.345717,0.551469,0.444744,0.626644,0.433711,0.0841647,0.863347,0.441157,0.894343,0.1027,0.598819,0.08071,0.173858,0.318619,0.385946,0.298415,0.844816,0.848709,0.435435,0.873683,0.361345,0.195654,0.969325,0.66423,0.586619,0.451275,0.723183,0.287229,0.965391,0.842039,0.18905,0.834214,0.70131,0.543856,0.00432742,0.796094,0.857944,0.760042,0.141684,0.276901,0.492507,0.102644,0.80922,0.550084,0.781389,0.385847,0.386554,0.146241,0.300724,0.382418,0.995887,0.831984,0.369992,0.722864,0.784429,0.430164,0.243726,0.590436,0.59765,0.711352,0.228572,0.210763,0.0569633,0.292092,0.929046,0.952178,0.0532331,0.318825,0.318411,0.446209,0.670232,0.419553,0.697141,0.175165,0.211461,0.685794,0.735694,0.131923,0.835817,0.42632,0.570361,0.21362,0.0295216,0.419501,0.409549,0.291711,0.845504,0.780409,0.579616,0.867968,0.804867,0.171757,0.348829,0.459208,0.264533,0.658746,0.397701,0.0633212,0.508438,0.146265,0.596144,0.747601,0.506193,0.595511,0.158392,0.768692,0.0271238,0.394102,0.194874,0.693211,0.411193,0.753317,0.220978,0.192653,0.374107,0.827995,0.264409,0.51491,0.702855,0.528912,0.149252,0.202902,0.0680147,0.278968,0.310664,0.0183396,0.33356,0.142189,0.697793,0.533396,0.701676,0.197908,0.301793,0.839563,0.65613,0.344282,0.0297158,0.80813,0.579246,0.286595,0.523234,0.988129,0.795799,0.902211,0.398377,0.182894,0.58293,|0.687465,0.494784,0.219204,0.735451,0.427303,0.371307,0.803769,0.496903,0.251718,0.0725178,0.00687957,0.0935642,0.538681,0.626464,0.824896,0.644623,0.38315,0.00165039,0.987949,0.0637062,0.52687,0.904467,0.354577,0.530988,0.323153,0.149022,0.678831,0.148739,0.15585,0.970142,0.892541,0.382636,0.71522,0.589904,0.102652,0.667786,0.0766082,0.29088,0.894672,0.439924,0.65987,0.7194,0.314553,0.327979,0.673124,0.924516,0.560491,0.605739,0.527209,0.317492,0.0959858,0.232268,0.807703,0.79707,0.345108,0.460928,0.711883,0.918312,0.883552,0.214274,0.79245,0.975829,0.401983,0.944631,0.562223,0.622769,0.267981,0.963744,0.154401,0.199868,0.408662,0.747683,0.0836033,0.0377091,0.214038,0.559203,0.230187,0.607017,0.808567,0.53959,0.104379,0.262436,0.617309,0.970261,0.519294,0.998412,0.932338,0.1909,0.723734,0.819083,0.721598,0.635599,0.603088,0.90715,0.501677,0.160682,0.34637,0.783712,0.989738,0.850382,0.376511,0.897367,0.140117,0.267055,0.832071,0.735698,0.162722,0.614075,0.494915,0.546674,0.868361,0.71304,0.424857,0.532026,0.294742,0.233368,0.205517,0.655781,0.366049,0.372452,0.454617,0.588538,0.618452,0.11518,0.712177,0.498992,0.169013,0.810012,0.822271,0.890582,0.927787,0.945534,0.686649,0.952951,0.696437,0.797789,0.825135,0.573545,0.745335,0.418635,0.709819,0.914453,0.201307,0.187352,0.840198,0.498973,0.750969,0.887571,0.904899,0.148576,0.305684,0.501857,0.24524,0.499721,0.0701152,0.324743,0.914529,0.903839,0.182264,0.906485,0.193997,0.18337,0.381423,0.194098,0.72485,0.951785,0.0240013,0.431141,0.436741,0.932011,0.468552,0.180425,0.976224,0.787166,0.313033,0.627733,0.65546,0.244375,0.773007,0.422137,0.812175,0.944176,0.597302,0.897391,0.64916,0.948299,0.926862,0.427924,0.355128,0.22508,0.657471,0.5376,0.219497,0.186746,0.920401,0.378718,0.759325,0.467465,0.714864,0.28179,0.928619,0.260896,0.978388,0.514258,0.436361,0.292705,0.622314,0.437482,0.970367,0.568746,0.403296,0.022328,0.0233978,0.246115,0.209434,0.45866,0.4256,0.422784,0.00974947,0.361734,0.858031,0.0853305,0.44373,0.73659,0.783676,0.116608,0.660866,0.463713,0.224731,0.232876,0.910517,0.190515,0.564605,0.0343074,0.586913,0.748836,0.499426,0.702326,0.793876,0.742153,0.115427,0.651956,0.835475,0.566437,0.838124,0.131284,0.89031,0.14281,0.716798,0.932386,0.682668,0.696118,0.0993872,0.697251,0.196382,0.390432,0.0730339,0.304885,0.668058,0.141593,0.0664756,0.325336,0.113433,0.827154,0.0246869,0.359376,0.539325,0.819812,0.585527,0.907127,0.832553,0.602777,0.463269,0.660014,0.543165,0.127293,0.198977,0.295764,0.0521297,0.585648,0.269795,0.797095,0.675325,0.244981,0.94117,0.936836,0.970083,0.465676,0.401883,0.366493,0.612567,0.547912,0.678516,0.568216,0.216386,0.0160089,0.45228,0.411243,0.7907,0.00261003,0.35113,0.530993,0.595447,0.0533755,0.282096,0.178148,0.476356,0.273002,0.725409,0.0281225,0.416625,0.968147,0.990387,0.582607,0.0923018,0.922689,0.0832385,0.696484,0.830439,0.644348,0.600706,0.118817,0.474008,0.366781,0.537134,0.203595,0.62362,0.159734,0.734439,0.783631,0.519698,0.033015,0.365163,0.826207,0.348509,0.219106,0.530109,0.443932,0.628462,0.309466,0.330334,0.927955,0.0607938,0.577338,0.252128,0.0624301,0.0996879,0.856231,0.96766,0.967438,0.758108,0.20756,0.0224497,0.380129,0.565299,0.444895,0.896128,0.803784,0.601994,0.585039,0.516915,0.802813,0.92393,0.588884,0.985557,0.130957,0.0421194,0.355651,0.152578,0.213778,0.831714,0.806255,0.462789,0.436831,0.705821,0.0691397,0.204368,0.454265,0.436125,0.0596539,0.400976,0.262354,0.774413,0.899472,0.823727,0.943624,0.664289,0.518925,0.550395,0.975381,0.796152,0.947592,0.820934,0.72063,0.39273,0.892546,0.0487269,0.379228,0.175388,0.182415,0.708228,0.149309,0.777292,0.17013,0.426756,0.929601,0.910401,0.264871,0.0752261,0.413263,0.833101,0.0820999,0.410608,0.931127,0.816556,0.821757,0.817989,0.652162,0.834374,0.653623,0.663876,0.160139,0.813176,0.862784,0.215584,0.240393,0.205284,0.308586,0.808244,0.633819,0.536558,0.393336,0.178493,0.0918044,0.168959,0.539545,0.569559,0.354074,0.75855,0.520803,0.0809814,0.565823,0.431836,0.703246,0.697818,0.173936,0.88483,0.176879,0.662094,0.323534,0.603682,0.232612,0.654899,0.739203,0.108528,0.240343,0.981285,0.0445654,0.277049,0.645453,0.105522,0.0554391,0.713644,0.558647,0.36837,0.746563,0.264529,0.0727879,0.527046,0.143022,0.478626,0.0996615,0.976466,0.513995,0.836016,0.101852,0.861215,0.430181,0.839603,0.265861,0.773908,0.40947,0.589379,0.681952,0.302714,0.548346,0.462376,0.535926,0.780377,0.588709,0.693336,0.161781,0.284398,0.740712,0.737098,0.500114,0.319995,0.865375,0.26038,0.946213,0.962214,0.985224,0.618008,0.791305,0.914697,0.724005,0.0437375,0.427284,0.825081,0.42327,0.062243,0.437618,0.405826,0.034229,0.790255,0.47333,0.502305,0.236194,0.488995,0.920958,0.286428,0.804147,0.0480168,0.0254006,0.151975,0.406357,0.408706,0.436898,0.936732,0.957232,0.257566,0.022989,0.82672,0.159863,0.50115,0.637695,0.0652995,0.862048,0.646007,0.626181,0.165168,0.571351,0.671119,0.453448,0.944524,0.652409,0.281727,0.533525,0.548469,0.814276,0.798287,0.887992,0.17238,0.206977,0.0911363,0.0024398,0.762793,0.310392,0.674696,0.202492,0.340718,0.663056,0.0928723,0.203914,0.226242,0.777807,0.260687,0.40973,0.764714,0.383571,0.778113,0.0316991,0.653282,0.777576,0.318264,0.867506,0.813711,0.8412,0.581606,0.965045,0.182579,0.91785,0.579664,0.142233,0.0186853,0.24606,0.910347,0.0412927,0.105585,0.525348,0.84414,0.773435,0.0449088,0.839409,0.613762,0.959456,0.79532,0.996554,0.898886,0.169619,0.30307,0.656128,0.635023,0.251679,0.966648,0.176322,0.83963,0.667919,0.751535,0.542623,0.818794,0.956468,0.334487,0.0863621,0.783106,0.596321,0.340003,0.711891,0.790086,0.64519,0.00395215,0.536301,0.156552,0.584503,0.664348,0.371901,0.168251,0.407435,0.432043,0.181688,0.780998,0.42737,0.0437477,0.286019,0.653175,0.612569,0.685096,0.858118,0.0710028,0.105757,0.422845,0.507033,0.91482,0.287413,0.456696,0.856305,0.09591,0.699807,0.678039,0.0491543,0.357277,0.900561,0.0563775,0.547837,0.661699,0.785008,0.995197,0.948791,0.0277926,0.699313,0.952408,0.614999,0.488613,0.0412433,0.517208,0.481378,0.633651,0.665389,0.289805,0.778267,0.226737,0.934165,0.335487,0.831733,0.503268,0.147511,0.729344,0.588293,0.546546,0.994015,0.426618,0.05594,0.54366,0.655384,0.827638,0.311198,0.74406,0.306543,0.420964,0.527717,0.205882,0.452198,0.709852,0.186011,0.697818,0.483601,0.955323,0.7977,0.271419,0.361492,0.456456,0.718869,0.75155,0.752519,0.794459,0.500947,0.0776151,0.597839,0.25601,0.726268,0.642039,0.576176,0.0719174,0.869685,0.49832,0.799305,0.788374,0.281983,0.215891,0.496948,0.486128,0.0638047,0.45104,0.0541298,0.706344,0.197827,0.719158,0.441454,0.391578,0.81614,0.584201,0.270304,0.938965,0.436323,0.846759,0.311837,0.510917,0.192582,0.599028,0.0957896,0.451933,0.2852,0.704498,0.720337,0.690912,0.338717,0.674014,0.948949,0.543695,0.397458,0.651436,0.648236,0.807146,0.877665,0.325614,0.79117,0.223483,0.88791,0.567529,0.159636,0.575188,0.613872,0.421279,0.579338,0.470937,0.291277,0.242951,0.996226,0.956934,0.843673,0.618146,0.445455,0.082602,0.67448,0.0698942,0.954411,0.0313746,0.545445,0.309888,0.106848,0.443212,0.0208966,0.23976,0.859976,0.368181,0.655814,0.414366,0.761286,0.287033,0.815559,0.354387,0.785091,0.224975,0.309262,0.626988,0.497169,0.523008,0.671248,0.989032,0.984697,0.339177,0.425229,0.628861,0.678434,0.593721,0.165051,0.475862,0.340344,0.485599,0.600394,0.18247,0.290215,0.861072,0.417294,0.863971,0.974109,0.208361,0.3021,0.371494,0.328935,0.35905,0.222376,0.429613,0.807226,0.122514,0.142061,0.64077,0.57919,0.552152,0.304083,0.775336,0.169284,0.287515,0.883504,0.90678,0.703688,0.773836,0.158757,0.593644,0.096846,0.845429,0.778549,0.532487,0.535408,0.024823,0.307337,0.250881,0.808639,0.442795,0.200308,0.132155,0.184718,0.182732,0.319261,0.215862,0.831258,0.132966,0.397788,0.428237,0.965556,0.268833,0.290806,0.417822,0.313881,0.950749,0.500536,0.104526,0.0721292,0.408569,0.0337126,0.646764,0.0220688,0.774931,0.989588,0.447757,0.788515,0.833162,0.472458,0.711307,0.272064,0.658178,0.921802,0.538623,0.961619,0.230737,0.387251,0.273457,0.778815,0.988927,0.579705,0.00868464,0.953599,0.504857,0.728436,0.834048,0.169969,0.143584,0.627723,0.964887,0.130558,0.900588,0.629735,0.993481,0.797924,0.803648,0.482669,0.850235,0.592037,0.905456,0.0420275,0.103457,0.42911,0.478463,0.666109,0.214738,0.753156,0.658686,0.0711028,0.420886,0.337057,0.48101,0.624789,0.332201,0.197371,0.299205,0.572583,0.580368,0.00806206,0.23764,0.991358,0.919608,0.967187,0.586754,0.15399,0.266355,0.873757,0.802688,0.423404,0.65094,0.91847,0.789201,0.806115,0.101322,0.277623,0.795657,0.802625,0.676485,0.315607,0.552758,0.282174,0.300381,0.782739,0.295354,0.763254,0.802181,0.693719,0.991932,0.673448,0.192976,0.202851,0.637344,0.0854814,0.774726,0.226649,0.218093,0.124842,0.825462,0.895687,0.678374,0.552158,0.669738,0.875923,0.238918,0.186012,0.0457407,0.19899,0.883271,0.976395,0.878319,0.896732,0.294038,0.996352,0.415724,0.398102,0.171448,0.865618,0.54309,0.949422,0.98952,0.398858,0.46914,0.673843,0.982197,0.582646,0.0132347,0.00156909,0.0143807,0.404422,0.957621,0.186283,|0.0177834,0.750113,0.989925,0.796878,0.376426,0.487373,0.0981194,0.0907704,0.228858,0.363953,0.404017,0.584955,0.205124,0.469789,0.650219,0.754575,0.616551,0.488949,0.406431,0.151713,0.591907,0.180591,0.505127,0.269902,0.552388,0.295977,0.996188,0.185451,0.648554,0.970033,0.157159,0.704722,0.91398,0.230364,0.776228,0.0989693,0.913969,0.864048,0.69954,0.00815302,0.0982013,0.854398,0.866451,0.417017,0.457154,0.272229,0.091224,0.52204,0.500824,0.607043,0.198174,0.169181,0.39969,0.125763,0.348545,0.855022,0.0634843,0.261101,0.216602,0.0228234,0.548623,0.498558,0.909725,0.978866,0.0762799,0.493949,0.455983,0.341141,0.422724,0.242156,0.761109,0.312778,0.751587,0.447924,0.675533,0.0989249,0.735327,0.498938,0.266683,0.478769,0.402406,0.698706,0.983887,0.231584,0.664904,0.340835,0.835939,0.129519,0.783145,0.97007,0.701314,0.416363,0.468151,0.513396,0.256397,0.827468,0.342727,0.631937,0.66822,0.682867,0.904252,0.718976,0.767858,0.608663,0.599469,0.99437,0.439505,0.501935,0.980337,0.034857,0.858807,0.231583,0.248354,0.888798,0.27485,0.880904,0.370809,0.743723,0.790581,0.584125,0.840593,0.491571,0.575554,0.915155,0.0495461,0.37906,0.0438055,0.342253,0.287554,0.96103,0.629802,0.440542,0.107566,0.955527,0.10398,0.0806737,0.487899,0.586736,0.140716,0.842659,0.12778,0.645267,0.957512,0.738133,0.324507,0.194872,0.803825,7.64728e-05,0.396467,0.221472,0.741258,0.564223,0.54886,0.940183,0.12699,0.794848,0.45529,0.275282,0.676369,0.45867,0.559944,0.0577011,0.0169109,0.0805593,0.543858,0.294339,0.953376,0.827133,0.43792,0.598021,0.545938,0.666285,0.801287,0.0429721,0.943891,0.586036,0.838858,0.0171608,0.438577,0.81876,0.977648,0.693519,0.338992,0.035459,0.626689,0.415807,0.419025,0.535563,0.976496,0.433383,0.573788,0.565638,0.694807,0.076931,0.270833,0.60791,0.824949,0.0189807,0.556537,0.631486,0.348644,0.410399,0.851365,0.371309,0.443259,0.712822,0.174208,0.0926512,0.217818,0.776777,0.0627112,0.359975,0.446265,0.961133,0.326593,0.0810913,0.099928,0.432201,0.25446,0.281901,0.387332,0.539992,0.423422,0.340255,0.682452,0.658544,0.722403,0.423867,0.489997,0.38354,0.151985,0.592132,0.25787,0.033493,0.542212,0.911969,0.057024,0.946057,0.381048,0.0892934,0.00478584,0.0905833,0.296451,0.794979,0.774546,0.389616,0.810908,0.69272,0.653858,0.732643,0.617332,0.589169,0.661664,0.305104,0.0622317,0.859417,0.626847,0.306228,0.169905,0.48684,0.0500252,0.141893,0.0523895,0.448529,0.34758,0.566501,0.102349,0.329013,0.518544,0.330318,0.0454024,0.63682,0.054931,0.595555,0.578831,0.0839296,0.189523,0.488178,0.879194,0.336652,0.919856,0.430751,0.882976,0.0886418,0.713136,0.0625366,0.433792,0.693658,0.108803,0.83651,0.510211,0.852922,0.0670522,0.782041,0.894513,0.527988,0.0718664,0.773269,0.158449,0.120158,0.325,0.249344,0.0873256,0.508773,0.748586,0.0408303,0.0853626,0.911374,0.671406,0.634802,0.111593,0.597069,0.684819,0.967701,0.434876,0.552946,0.179165,0.907136,0.974044,0.659984,0.371066,0.422962,0.222291,0.232119,0.709494,0.386143,0.120129,0.995107,0.475705,0.242987,0.795836,0.30683,0.746405,0.540483,0.36213,0.712625,0.559866,0.922364,0.023415,0.0456939,0.475383,0.83587,0.660425,0.320271,0.282035,0.205286,0.138531,0.764967,0.0838773,0.609822,0.764292,0.815497,0.814209,0.589685,0.52068,0.482922,0.468087,0.523235,0.319646,0.0423127,0.884338,0.441915,0.98616,0.400015,0.175043,0.812775,0.504208,0.804798,0.642909,0.736144,0.000776231,0.652622,0.603178,0.204669,0.663218,0.886132,0.020711,0.201524,0.0442117,0.490892,0.65604,0.567035,0.574436,0.197073,0.109833,0.88059,0.426618,0.426325,0.380089,0.313538,0.369049,0.468722,0.994007,0.324755,0.529293,0.00896281,0.992343,0.399056,0.556225,0.942284,0.00524193,0.0335525,0.83571,0.192431,0.720544,0.753158,0.832212,0.407597,0.293751,0.188464,0.783882,0.212584,0.32969,0.163604,0.0913491,0.206886,0.00562149,0.591685,0.247804,0.666966,0.801462,0.372766,0.24096,0.67444,0.650342,0.0382457,0.351172,0.0998483,0.734284,0.742903,0.219876,0.08478,0.670225,0.379631,0.16589,0.867023,0.38864,0.848535,0.648836,0.788709,0.0428888,0.327627,0.991506,0.441806,0.166869,0.251436,0.89744,0.476044,0.276273,0.491217,0.669242,0.349938,0.343974,0.321036,0.941118,0.408221,0.995433,0.846219,0.359618,0.742132,0.879825,0.416,0.398452,0.710085,0.430817,0.751899,0.100542,0.273878,0.772283,0.544058,0.417611,0.801512,0.460319,0.757589,0.885442,0.722363,0.0141453,0.474491,0.814531,0.218683,0.397592,0.286396,0.694151,0.651797,0.822524,0.247818,0.477301,0.52279,0.757813,0.424081,0.46044,0.609807,0.789787,0.158587,0.697536,0.893125,0.16323,0.508264,0.433661,0.356962,0.426487,0.714786,0.325391,0.0887273,0.976184,0.934077,0.0738519,0.261382,0.875706,0.671049,0.578059,0.0895358,0.394442,0.495259,0.00535959,0.344135,0.328458,0.611239,0.0471259,0.692776,0.515532,0.83118,0.650432,0.490459,0.705725,0.0961885,0.0269966,0.795552,0.493734,0.174672,0.932946,0.716981,0.0707252,0.220241,0.700359,0.279193,0.624967,0.254242,0.230801,0.302723,0.376197,0.213809,0.541517,0.470425,0.418506,0.623622,0.920238,0.404239,0.845922,0.526106,0.181311,0.998572,0.0180119,0.981387,0.217633,0.927647,0.764287,0.518404,0.527817,0.0883173,0.858058,0.726894,0.700911,0.851224,0.23235,0.788014,0.196201,0.992941,0.619649,0.862131,0.209347,0.808582,0.326516,0.0903816,0.521798,0.933322,0.180448,0.45212,0.565768,0.697196,0.435623,0.866136,0.85839,0.818165,0.161668,0.3489,0.382715,0.473453,0.819626,0.641852,0.553309,0.807454,0.31525,0.182324,0.632225,0.112348,0.110335,0.0308326,0.932683,0.887728,0.856829,0.361236,0.153194,0.565599,0.353916,0.152461,0.253256,0.592611,0.196145,0.229674,0.566904,0.25055,0.700929,0.924531,0.0275832,0.911721,0.146588,0.643503,0.641384,0.129735,0.217536,0.813918,0.975039,0.763187,0.755144,0.115727,0.0771289,0.133678,0.839821,0.358534,0.314058,0.66677,0.857154,0.5483,0.879638,0.245865,0.836879,0.170861,0.209176,0.14113,0.71978,0.156058,0.969075,0.699305,0.672182,0.991575,0.198929,0.659832,0.995585,0.920065,0.98896,0.00329727,0.185602,0.373347,0.364205,0.903027,0.560875,0.123447,0.535803,0.362744,0.810156,0.136888,0.896429,0.0907826,0.646203,0.414961,0.320293,0.450861,0.867305,0.928179,0.457884,0.770059,0.74725,0.349827,0.213798,0.0706335,0.496027,0.908215,0.782582,0.699664,0.885006,0.139253,0.491637,0.77755,0.0294765,0.101359,0.0901827,0.973495,0.527462,0.764472,0.546321,0.661393,0.742017,0.807236,0.791449,0.287755,0.431,0.900191,0.0140746,0.197101,0.304194,0.633267,0.206926,0.635804,0.567751,0.86707,0.741632,0.271077,0.802674,0.26742,0.0648971,0.604808,0.0275674,0.545027,0.552938,0.10092,0.757312,0.791369,0.71504,0.044986,0.182988,0.842174,0.0743594,0.276607,0.440857,0.697649,0.712776,0.791737,0.410217,0.142238,0.21259,0.549086,0.754144,0.682767,0.378867,0.474489,0.153534,0.372329,0.205297,0.225086,0.792852,0.814724,0.316992,0.814837,0.267251,0.687191,0.295063,0.393028,0.75728,0.0779053,0.925221,0.0471616,0.0344145,0.0521088,0.964649,0.192901,0.895035,0.400396,0.236875,0.459999,0.785614,0.516499,0.350652,0.113046,0.468361,0.672784,0.519364,0.891591,0.585649,0.920384,0.249214,0.79511,0.810665,0.000560164,0.542303,0.6079,0.580995,0.590963,0.260386,0.630301,0.735393,0.324593,0.704041,0.0240771,0.745807,0.701508,0.657289,0.591658,0.269293,0.174277,0.906216,0.416153,0.172187,0.090742,0.804362,0.51538,0.503439,0.329802,0.134677,0.314368,0.318574,0.487127,0.611815,0.639455,0.0762664,0.00759268,0.131905,0.80719,0.219938,0.403756,0.432994,0.80232,0.576664,0.014509,0.501571,0.0549746,0.067887,0.489366,0.109263,0.230922,0.330874,0.306192,0.471176,0.849899,0.787676,0.787204,0.446878,0.806971,0.0141974,0.844995,0.291187,0.745076,0.461115,0.511935,0.970406,0.100982,0.836941,0.053438,0.654324,0.418045,0.586403,0.789546,0.469572,0.600317,0.36413,0.868746,0.316466,0.623624,0.000206113,0.351648,0.0659099,0.0497705,0.465298,0.570546,0.772547,0.542898,0.562845,0.455834,0.546914,0.181154,0.237788,0.984087,0.303241,0.312871,0.635189,0.665858,0.906513,0.689892,0.235289,0.99158,0.772608,0.798516,0.962037,0.0167717,0.430326,0.161427,0.171761,0.871319,0.33336,0.0156802,0.000904918,0.0458424,0.771386,0.285484,0.24666,0.568035,0.662439,0.499488,0.834885,0.302559,0.910328,0.659741,0.143231,0.294726,0.971839,0.806506,0.35069,0.795886,0.339008,0.0888081,0.155467,0.695117,0.187247,0.358424,0.784488,0.00062871,0.783495,0.320255,0.461992,0.401731,0.50253,0.308439,0.607409,0.868874,0.784568,0.444516,0.539137,0.154528,0.450459,0.877404,0.0469816,0.80491,0.244849,0.192097,0.774733,0.655212,0.0660759,0.247244,0.181754,0.893314,0.286586,0.776762,0.111216,0.767649,0.338424,0.986608,0.0476496,0.89336,0.0674297,0.0377242,0.0418544,0.124708,0.13938,0.709905,0.546334,0.34148,0.698275,0.752966,0.466619,0.0482626,0.560139,0.621257,0.463503,0.112064,0.671215,0.99454,0.197817,0.0998901,0.510828,0.149955,0.927959,0.5583,0.623024,0.792323,0.225193,0.691211,0.0774109,0.333461,0.27636,0.270158,0.261779,0.236253,0.799399,0.746631,0.490153,0.563068,0.88358,0.871536,0.133509,0.532925,0.684916,0.560682,0.795623,0.662704,0.958877,0.71639,0.630447,0.598833,0.723272,0.418609,0.871968,0.854526,0.869192,0.954778,0.658213,0.150081,0.342294,0.602653,0.957852,0.918089,|0.479771,0.0828566,0.861329,0.124281,0.555364,0.654596,0.63253,0.871724,0.619393,0.400739,0.391303,0.817096,0.912487,0.023252,0.49202,0.0925341,0.141706,0.548495,0.00159246,0.709942,0.955905,0.482503,0.032505,0.365599,0.916562,0.772693,0.411146,0.56022,0.229768,0.203373,0.359099,0.0204194,0.611547,0.319447,0.903283,0.645104,0.559465,0.666694,0.0815691,0.590333,0.860484,0.515532,0.246455,0.713271,0.0148355,0.000147402,0.413757,0.994244,0.852339,0.568121,0.0452084,0.161322,0.399431,0.497386,0.117855,0.98675,0.141067,0.855723,0.604075,0.279328,0.748571,0.74273,0.208746,0.139181,0.705761,0.444561,0.449401,0.170425,0.372537,0.778128,0.893589,0.923988,0.459041,0.274586,0.986354,0.01498,0.0275243,0.185285,0.267388,0.394936,0.0574993,0.401986,0.695861,0.451302,0.0726266,0.68578,0.771839,0.95172,0.368918,0.714831,0.779989,0.692389,0.614609,0.220698,0.450898,0.230877,0.16023,0.315697,0.0676613,0.703235,0.805782,0.648057,0.0898319,0.321975,0.112795,0.49649,0.850229,0.358107,0.313379,0.89837,0.577307,0.381641,0.0305947,0.767402,0.642569,0.956696,0.487892,0.0619823,0.301158,0.441828,0.0817899,0.723732,0.907134,0.58309,0.149272,0.382729,0.651562,0.867097,0.397047,0.650863,0.914384,0.9154,0.913942,0.308563,0.591291,0.805305,0.762643,0.618433,0.792942,0.156512,0.160041,0.321619,0.53387,0.197671,0.324595,0.073041,0.220194,0.593054,0.989016,0.95232,0.305998,0.637273,0.733405,0.109053,0.832633,0.761735,0.278958,0.677665,0.0859942,0.225906,0.753646,0.56124,0.194493,0.685088,0.422814,0.0577755,0.549027,0.0813892,0.522558,0.843509,0.699283,0.554348,0.157193,0.657887,0.110728,0.486733,0.338097,0.516093,0.785697,0.0324619,0.515506,0.449416,0.433268,0.85265,0.440228,0.348458,0.902779,0.85983,0.72299,0.382745,0.22721,0.913045,0.723864,0.622477,0.237727,0.546092,0.10624,0.136802,0.747578,0.703395,0.854677,0.0268722,0.297683,0.575396,0.638246,0.670294,0.729242,0.991443,0.869398,0.392861,0.717699,0.507939,0.111358,0.132618,0.565662,0.188299,0.330236,0.324798,0.215898,0.642686,0.297108,0.946835,0.438139,0.880547,0.534162,0.394004,0.457721,0.559975,0.940635,0.884995,0.130715,0.0310119,0.716225,0.771376,0.235352,0.730184,0.0314572,0.0587227,0.144437,0.969749,0.805192,0.094984,0.505045,0.316916,0.50366,0.0992622,0.791454,0.373176,0.385925,0.601603,0.564478,0.701534,0.180913,0.867444,0.868561,0.453943,0.216896,0.181412,0.245605,0.349159,0.374654,0.726692,0.62414,0.84277,0.856347,0.611974,0.704821,0.379048,0.155055,0.715482,0.793275,0.914589,0.943244,0.817824,0.537166,0.276539,0.815233,0.504407,0.726026,0.620386,0.476867,0.398649,0.398543,0.273714,0.0399185,0.175128,0.423361,0.528387,0.41819,0.303825,0.124984,0.102351,0.0375808,0.912925,0.95158,0.438443,0.500869,0.989161,0.672918,0.766824,0.764191,0.815629,0.712954,0.71442,0.819889,0.217319,0.677753,0.443395,0.915495,0.680329,0.388519,0.779641,0.332071,0.992073,0.572267,0.857033,0.499913,0.464879,0.747732,0.757504,0.62787,0.121485,0.588449,0.654707,0.874586,0.16935,0.0333713,0.267221,0.520754,0.67161,0.145142,0.892356,0.9695,0.914453,0.121513,0.701966,0.928816,0.459672,0.253064,0.991071,0.966183,0.19489,0.113871,0.520108,0.598314,0.576673,0.826991,0.904403,0.681591,0.155073,0.51413,0.974607,0.141982,0.441529,0.384866,0.346497,0.855084,0.478411,0.529849,0.0977989,0.532378,0.946636,0.999912,0.237077,0.352254,0.577428,0.75063,0.374692,0.0471239,0.0668296,0.828814,0.0933573,0.0414322,0.8136,0.00500405,0.620876,0.584767,0.636489,0.726548,0.249324,0.686619,0.0212268,0.441477,0.108251,0.251079,0.45723,0.807656,0.673197,0.0032177,0.542003,0.0522711,0.0619859,0.803576,0.662386,0.873924,0.856946,0.0858411,0.0409506,0.915637,0.369857,0.938115,0.992972,0.0279798,0.903627,0.00748408,0.0725122,0.866508,0.22471,0.743057,0.785609,0.789062,0.627591,0.310323,0.729502,0.0426614,0.992205,0.901856,0.854129,0.466586,0.621557,0.624513,0.988028,0.756066,0.878176,0.629254,0.771451,0.574474,0.145539,0.00545293,0.920599,0.806074,0.783339,0.0342321,0.602007,0.830571,0.205772,0.865092,0.160685,0.205338,0.898077,0.870738,0.609481,0.831196,0.724483,0.135955,0.176425,0.536311,0.154972,0.676389,0.549665,0.799996,0.226275,0.420106,0.933425,0.666431,0.96622,0.11407,0.2922,0.706491,0.49943,0.250126,0.166294,0.750217,0.713233,0.474527,0.648109,0.849282,0.702713,0.248943,0.0852807,0.207273,0.078024,0.733455,0.652208,0.930551,0.447624,0.639738,0.579439,0.854978,0.875399,0.196961,0.0428873,0.82058,0.858388,0.132447,0.466781,0.217058,0.983182,0.00145054,0.144764,0.945488,0.150163,0.54878,0.573392,0.910776,0.685314,0.995245,0.986629,0.4038,0.525229,0.811682,0.50092,0.54541,0.936761,0.410802,0.606744,0.0436825,0.119037,0.828656,0.613768,0.402917,0.172564,0.226566,0.689712,0.945135,0.339719,0.967692,0.954214,0.971023,0.673202,0.827314,0.383359,0.325283,0.732324,0.150098,0.756379,0.199276,0.55884,0.976698,0.388021,0.787562,0.80072,0.318262,0.0877845,0.448049,0.81263,0.770628,0.967892,0.0533242,0.97599,0.353636,0.29236,0.966899,0.640759,0.165218,0.563507,0.410978,0.685043,0.498917,0.600167,0.645833,0.234166,0.93499,0.525559,0.338302,0.226037,0.20862,0.950438,0.153553,0.537767,0.209694,0.150269,0.498583,0.886762,0.439751,0.495333,0.282173,0.721342,0.616798,0.440646,0.651303,0.310034,0.27303,0.860478,0.725337,0.537803,0.998043,0.362163,0.640719,0.000247896,0.395817,0.490422,0.7751,0.316762,0.355221,0.657965,0.620396,0.132507,0.54008,0.297925,0.264495,0.657609,0.174171,0.839268,0.955777,0.263305,0.436616,0.26965,0.0368388,0.196867,0.39411,0.918075,0.570444,0.917656,0.823007,0.286822,0.926893,0.0081684,0.68255,0.420974,0.65137,0.695166,0.631877,0.514684,0.287499,0.120038,0.351806,0.359753,0.691014,0.579068,0.767437,0.302438,0.678123,0.299392,0.769377,0.267984,0.676722,0.900894,0.98611,0.433367,0.529562,0.0618409,0.172406,0.538232,0.250817,0.853991,0.567046,0.655754,0.703771,0.62546,0.424499,0.0530884,0.0992184,0.719832,0.270938,0.858461,0.0951695,0.253537,0.0911475,0.214483,0.98645,0.740514,0.60682,0.23632,0.72173,0.668651,0.399205,0.433899,0.742682,0.842204,0.13679,0.145651,0.547387,0.246313,0.346836,0.0895861,0.930515,0.239269,0.735301,0.525979,0.949901,0.814103,0.639043,0.632855,0.794591,0.26964,0.689751,0.349877,0.344162,0.530295,0.189951,0.808529,0.573572,0.981313,0.741512,0.825968,0.553171,0.243566,0.6415,0.698692,0.537366,0.332651,0.155008,0.623928,0.630601,0.240066,0.0399006,0.966293,0.483298,0.239771,0.211362,0.582006,0.953362,0.717031,0.479316,0.16186,0.928342,0.741757,0.952843,0.0883045,0.694121,0.769865,0.5731,0.747737,0.808,0.457695,0.626084,0.227904,0.329246,0.0858456,0.384452,0.497294,0.773227,0.845707,0.318928,0.69272,0.198041,0.791312,0.570694,0.21612,0.770115,0.0629966,0.632714,0.0764467,0.467796,0.576059,0.590599,0.315361,0.500862,0.0810804,0.543039,0.288882,0.255478,0.217047,0.151335,0.997166,0.290033,0.79024,0.14703,0.370865,0.96109,0.31738,0.287411,0.140276,0.666247,0.615725,0.615357,0.341602,0.398501,0.369898,0.102252,0.637067,0.657479,0.341528,0.70212,0.374515,0.163509,0.452781,0.987791,0.919194,0.463262,0.430774,0.287667,0.52779,0.499085,0.346221,0.371366,0.43372,0.220626,0.13673,0.130603,0.211216,0.963048,0.903387,0.625185,0.565092,0.479371,0.358598,0.262501,0.926038,0.419211,0.539764,0.275067,0.705994,0.131077,0.685536,0.402212,0.295988,0.0968374,0.527863,0.395547,0.410566,0.932386,0.421842,0.888231,0.920726,0.306803,0.0297104,0.728455,0.826741,0.887474,0.165521,0.243745,0.69056,0.380227,0.45919,0.32929,0.68461,0.270452,0.960288,0.763041,0.876103,0.974506,0.955642,0.781893,0.352702,0.211123,0.779571,0.327253,0.631441,0.256243,0.357953,0.253636,0.38217,0.442472,0.442292,0.653743,0.234068,0.784687,0.233159,0.0623881,0.50891,0.361125,0.0802899,0.400508,0.376942,0.624846,0.394875,0.715778,0.148535,0.24139,0.879458,0.00239515,0.842155,0.931418,0.268506,0.0714467,0.45891,0.82136,0.291854,0.509312,0.0979071,0.237879,0.374732,0.678202,0.034821,0.650888,0.972191,0.915212,0.246949,0.102417,0.613799,0.523279,0.734422,0.899905,0.219558,0.27792,0.193271,0.429247,0.649472,0.102899,0.898951,0.960858,0.647477,0.173071,0.604466,0.493742,0.499409,0.579488,0.784809,0.0285747,0.027711,0.602886,0.212924,0.805425,0.774901,0.874548,0.360997,0.0326989,0.483846,0.337487,0.0452914,0.875024,0.276814,0.576509,0.212307,0.0256471,0.725262,0.827443,0.999865,0.775352,0.452173,0.161254,0.439743,0.841476,0.73294,0.440222,0.547082,0.643791,0.35603,0.447334,0.92952,0.926631,0.563297,0.546606,0.253559,0.200623,0.12311,0.768759,0.68744,0.340441,0.847514,0.84727,0.480151,0.518178,0.536802,0.371104,0.196102,0.544779,0.78551,0.868302,0.716352,0.261097,0.674384,0.0813762,0.574274,0.165778,0.512284,0.854794,0.535094,0.079509,0.679557,0.886073,0.682808,0.819066,0.699524,0.907169,0.641687,0.724454,0.856962,0.162764,0.573476,0.379315,0.933707,0.988341,0.590898,0.636467,0.965732,0.166909,0.155208,0.288858,0.43454,0.518134,0.79527,0.423859,0.00193942,0.0852463,0.335643,0.606152,0.205004,0.693162,0.107132,0.912692,0.881537,0.5888,0.320027,0.71344,0.412306,0.00737119,0.77814,0.55202,0.76733,0.199905,0.342985,0.00412196,0.190625,0.0446396,0.248575,0.653821,0.272107,|0.0130588,0.0195439,0.396522,0.891811,0.595187,0.680163,0.0294756,0.255814,0.111379,0.483262,0.847601,0.633186,0.920043,0.175033,0.622568,0.423746,0.952687,0.313661,0.735229,0.55197,0.443835,0.664171,0.959687,0.924564,0.218142,0.639903,0.00258726,0.602913,0.363491,0.50625,0.623823,0.539352,0.721036,0.676661,0.786371,0.199011,0.624655,0.409823,0.0449643,0.0637054,0.861915,0.609802,0.716272,0.395447,0.0534915,0.490545,0.367676,0.030002,0.841433,0.0737712,0.226596,0.55541,0.678768,0.40454,0.205184,0.72485,0.335359,0.128351,0.720403,0.856474,0.211555,0.997967,0.240032,0.17943,0.62315,0.0716477,0.521074,0.844381,0.0815492,0.364614,0.00147289,0.339106,0.330738,0.6415,0.324802,0.106209,0.248086,0.927576,0.760005,0.768515,0.692393,0.136503,0.0452146,0.529135,0.0444862,0.72829,0.585697,0.133942,0.819613,0.55813,0.855758,0.248708,0.826561,0.11804,0.594735,0.443447,0.688494,0.0533773,0.744601,0.290025,0.368833,0.540638,0.464445,0.67795,0.145211,0.642208,0.0745989,0.201456,0.0204858,0.88243,0.549106,0.785522,0.986853,0.00737214,0.741647,0.761633,0.241189,0.830038,0.312554,0.801485,0.396394,0.726102,0.54303,0.849274,0.858806,0.41482,0.176087,0.979137,0.776416,0.129903,0.481875,0.830789,0.373388,0.397245,0.108065,0.385881,0.810863,0.0386364,0.113797,0.995633,0.0330079,0.927299,0.676473,0.25369,0.947125,0.541747,0.216292,0.492418,0.107146,0.0179619,0.155131,0.59656,0.66092,0.0967686,0.586448,0.31723,0.0499769,0.123477,0.19687,0.648029,0.89055,0.51647,0.36699,0.647408,0.419645,0.351344,0.969226,0.677385,0.466521,0.617077,0.371373,0.147974,0.577593,0.480247,0.261476,0.0335965,0.0649443,0.159771,0.705057,0.41518,0.908118,0.723122,0.0352987,0.274741,0.393377,0.398004,0.908133,0.541283,0.311376,0.935355,0.987102,0.255973,0.0037992,0.104327,0.683837,0.0379421,0.594955,0.533238,0.293859,0.504825,0.310071,0.928208,0.803767,0.464705,0.699139,0.452436,0.184233,0.159575,0.91077,0.110492,0.798744,0.694407,0.166362,0.0202203,0.838166,0.111569,0.769761,0.489632,0.22525,0.539221,0.051813,0.900431,0.207588,0.797699,0.67784,0.261155,0.593777,0.903185,0.994541,0.5499,0.239863,0.898683,0.921073,0.0425091,0.0867267,0.805438,0.515514,0.696897,0.452232,0.537004,0.0582262,0.737786,0.50003,0.715639,0.727798,0.381648,0.247288,0.424492,0.568674,0.754094,0.274761,0.740822,0.743891,0.445015,0.273664,0.428663,0.441639,0.799379,0.519796,0.144263,0.488453,0.487594,0.640954,0.988463,0.429242,0.273027,0.512829,0.461068,0.53626,0.954477,0.25192,0.96052,0.68185,0.114795,0.436257,0.331027,0.845668,0.985381,0.853543,0.579632,0.494922,0.741725,0.499846,0.00379431,0.319431,0.234003,0.53779,0.77498,0.53507,0.915637,0.126632,0.49891,0.615464,0.217436,0.92283,0.340713,0.163235,0.636587,0.128359,0.805898,0.630457,0.702743,0.399685,0.982678,0.0215269,0.0854748,0.569249,0.811998,0.0300229,0.154008,0.679154,0.109072,0.500108,0.424442,0.866295,0.312521,0.993535,0.927808,0.813577,0.936341,0.683387,0.692501,0.504662,0.988227,0.0525466,0.285517,0.665213,0.199311,0.730123,0.328311,0.239151,0.616975,0.490487,0.0339384,0.879057,0.587231,0.851272,0.735217,0.351626,0.784608,0.433471,0.552982,0.749461,0.456435,0.0326945,0.994455,0.993473,0.879995,0.882542,0.691072,0.629384,0.723452,0.643593,0.447837,0.156609,0.480717,0.209676,0.157531,0.491742,0.245271,0.695258,0.064733,0.321523,0.732592,0.78226,0.710519,0.250801,0.100146,0.340688,0.738079,0.273501,0.766025,0.893404,0.880135,0.703694,0.0897641,0.344606,0.229276,0.951295,0.419143,0.901036,0.462662,0.533116,0.425081,0.658027,0.576454,0.869749,0.782704,0.927676,0.569147,0.0327329,0.592187,0.890103,0.725567,0.869427,0.37803,0.392193,0.172087,0.826634,0.224477,0.143024,0.364494,0.441345,0.779414,0.401288,0.0411395,0.882814,0.291844,0.986864,0.043556,0.538844,0.88155,0.203623,0.562561,0.612707,0.00646985,0.237558,0.832386,0.639157,0.0314887,0.443949,0.84431,0.0515068,0.152749,0.215271,0.987846,0.971679,0.559311,0.651804,0.122189,0.657869,0.352906,0.84811,0.0692871,0.165997,0.247665,0.356334,0.478396,0.364172,0.106662,0.866315,0.40698,0.155838,0.802137,0.900847,0.950954,0.322876,0.26082,0.714838,0.0624285,0.279282,0.880968,0.853074,0.929574,0.078191,0.223782,0.291192,0.256339,0.23394,0.910512,0.912153,0.761965,0.487044,0.250744,0.657465,0.0815096,0.701861,0.113352,0.0598844,0.659766,0.559069,0.707598,0.325905,0.465433,0.753804,0.596137,0.804458,0.164811,0.52084,0.162843,0.449052,0.679876,0.727345,0.48502,0.160646,0.288404,0.560634,0.243774,0.717301,0.292182,0.631206,0.970365,0.521603,0.185921,0.857805,0.98596,0.95119,0.59418,0.242188,0.857237,0.203379,0.322862,0.056664,0.401687,0.459074,0.643749,0.997066,0.0371556,0.855255,0.64735,0.757354,0.190324,0.342595,0.232799,0.107835,0.816082,0.884306,0.309953,0.663726,0.944006,0.0411398,0.43957,0.594578,0.883667,0.961143,0.617234,0.440022,0.132122,0.525585,0.407013,0.226643,0.603806,0.109645,0.870914,0.194682,0.679435,0.871625,0.264324,0.236262,0.237929,0.325567,0.921309,0.781236,0.249412,0.237465,0.575538,0.0928523,0.0992056,0.434679,0.0808706,0.653405,0.746356,0.84721,0.102991,0.695395,0.218289,0.432378,0.145396,0.885107,0.486441,0.863079,0.424639,0.0871293,0.570081,0.0615222,0.154011,0.10708,0.162436,0.422641,0.0368518,0.913925,0.279963,0.72404,0.494036,0.933088,0.914104,0.57832,0.236527,0.550379,0.25538,0.736798,0.962235,0.577656,0.962899,0.267497,0.984465,0.778418,0.344494,0.462999,0.0129795,0.0158076,0.2044,0.737655,0.408147,0.39586,0.0299461,0.223198,0.508647,0.271505,0.481915,0.232942,0.742599,0.607161,0.641784,0.939999,0.668433,0.695071,0.278688,0.815706,0.225899,0.527435,0.251125,0.200759,0.775269,0.450076,0.182386,0.341065,0.456274,0.249487,0.570058,0.403529,0.407147,0.437247,0.139853,0.173384,0.99436,0.134614,0.677732,0.995219,0.515653,0.0127448,0.253348,0.517751,0.913921,0.799897,0.620616,0.478445,0.161608,0.838405,0.66402,0.175016,0.501806,0.639397,0.0532252,0.60326,0.167007,0.908395,0.0369828,0.251853,0.461191,0.907531,0.283524,0.745592,0.426678,0.00198889,0.579674,0.783701,0.289253,0.2701,0.571426,0.109235,0.90726,0.39334,0.606221,0.133718,0.0233254,0.966766,0.266598,0.83187,0.362382,0.014015,0.910577,0.258728,0.167361,0.00276309,0.0124872,0.728398,0.0404911,0.912437,0.638806,0.699139,0.929885,0.173747,0.280431,0.982048,0.925298,0.890226,0.438992,0.43313,0.511965,0.452173,0.230794,0.62999,0.44033,0.700369,0.909472,0.720535,0.680371,0.493228,0.425143,0.556606,0.366808,0.492052,0.795841,0.328638,0.649019,0.856115,0.800697,0.787858,0.704015,0.740051,0.178579,0.229198,0.602272,0.257912,0.0542045,0.509275,0.0570815,0.532307,0.373567,0.0811459,0.317057,0.279406,0.750799,0.798717,0.476875,0.68425,0.496343,0.497048,0.413512,0.201031,0.24392,0.543906,0.752985,0.858068,0.816083,0.181181,0.342531,0.740652,0.516145,0.320559,0.446814,0.049327,0.974661,0.046321,0.868276,0.313287,0.942704,0.193615,0.209384,0.0335208,0.234692,0.323879,0.205338,0.454137,0.109469,0.167426,0.00831336,0.722418,0.465374,0.534841,0.7654,0.647875,0.733027,0.607611,0.0264755,0.15149,0.702861,0.221435,0.263766,0.334901,0.572126,0.383961,0.720825,0.198165,0.810309,0.79344,0.433395,0.630756,0.879643,0.267389,0.711785,0.908615,0.302046,0.272362,0.654573,0.381307,0.696356,0.205285,0.0150107,0.820627,0.943102,0.167285,0.788064,0.762507,0.825595,0.507677,0.0282577,0.742389,0.078073,0.571844,0.733777,0.336129,0.472368,0.727834,0.167776,0.403896,0.0928898,0.304604,0.548523,0.829599,0.854975,0.575448,0.781901,0.908954,0.764582,0.20315,0.0887792,0.629299,0.428987,0.0860098,0.927143,0.550711,0.778515,0.403046,0.538663,0.92703,0.98505,0.557681,0.701433,0.196007,0.878861,0.613803,0.218644,0.500411,0.745276,0.651546,0.0221577,0.00372118,0.132916,0.66053,0.351078,0.666853,0.474208,0.528607,0.0415387,0.777202,0.0146342,0.226075,0.0509627,0.891496,0.425098,0.877143,0.370302,0.0378688,0.0239661,0.7935,0.63579,0.164992,0.919554,0.744716,0.478657,0.777788,0.872742,0.486109,0.833682,0.0170445,0.143308,0.77785,0.0145321,0.118312,0.576709,0.315643,0.566234,0.85972,0.668633,0.885168,0.0852281,0.685458,0.846657,0.570735,0.732945,0.0907333,0.865109,0.204492,0.13637,0.841464,0.78152,0.644562,0.158342,0.882508,0.933706,0.75893,0.44054,0.631414,0.527279,0.648446,0.286625,0.58454,0.0290083,0.417162,0.672637,0.322795,0.822422,0.239323,0.135234,0.953692,0.656789,0.493113,0.147323,0.259381,0.772261,0.481466,0.311351,0.528242,0.209842,0.639003,0.906083,0.701473,0.712915,0.492856,0.432689,0.529373,0.99033,0.295473,0.129233,0.21237,0.267974,0.832996,0.0593863,0.510914,0.252662,0.881999,0.812462,0.323135,0.759124,0.611563,0.929523,0.965017,0.627356,0.8355,0.638016,0.398367,0.373013,0.143208,0.608488,0.259416,0.648806,0.994215,0.596275,0.816138,0.635946,0.0857639,0.0310969,0.418406,0.251238,0.00683481,0.00952965,0.726428,0.55851,0.0406551,0.797478,0.325266,0.316992,0.608809,0.27995,0.334993,0.826425,0.95849,0.739177,0.490475,0.261619,0.00178665,0.659598,0.1479,0.273554,0.196004,0.83577,0.241715,0.666159,0.581512,0.689482,0.048661,0.873167,0.357476,0.196381,0.961062,0.772055,0.922011,0.285521,0.440823,0.0294,0.15872,0.210243,0.503257,0.66511,0.943605,0.754513,0.686237,0.371741,|0.0341277,0.376024,0.273784,0.454626,0.740857,0.640588,0.37754,0.442073,0.813228,0.993935,0.748108,0.545253,0.515743,0.975658,0.31547,0.967874,0.989092,0.696902,0.150379,0.916392,0.111217,0.827213,0.934341,0.178,0.519275,0.934511,0.173191,0.0897818,0.370847,0.111528,0.737301,0.332979,0.043294,0.880219,0.195637,0.660858,0.765761,0.580025,0.691917,0.0960764,0.387379,0.655472,0.56261,0.207959,0.299593,0.0155957,0.0799884,0.386891,0.378833,0.832555,0.633456,0.317587,0.0577739,0.669646,0.258702,0.51863,0.6038,0.281869,0.212876,0.712169,0.149364,0.562077,0.395574,0.340017,0.592859,0.0218718,0.398955,0.884465,0.729526,0.0858954,0.000204027,0.26273,0.763942,0.62446,0.729341,0.593277,0.679405,0.217216,0.058622,0.251825,0.605683,0.613166,0.6284,0.380964,0.154664,0.762129,0.0171357,0.385889,0.894834,0.520938,0.399914,0.35882,0.702636,0.639011,0.71788,0.66165,0.824346,0.660529,0.410495,0.0999094,0.569132,0.681528,0.265947,0.884419,0.155337,0.287089,0.931389,0.622301,0.562801,0.296608,0.157173,0.749989,0.542372,0.639284,0.23176,0.694148,0.444655,0.318542,0.24534,0.276794,0.350851,0.750034,0.00446296,0.277652,0.252417,0.435159,0.698877,0.0561109,0.612215,0.680243,0.109505,0.743993,0.298796,0.0392652,0.942644,0.236751,0.494262,0.918298,0.743982,0.353501,0.258775,0.528292,0.263009,0.880677,0.409316,0.928912,0.618885,0.204705,0.99487,0.34997,0.364868,0.0359109,0.605026,0.765535,0.696616,0.960714,0.741275,0.323634,0.754892,0.782593,0.0249664,0.237292,0.480945,0.00547862,0.502349,0.747111,0.656747,0.0560154,0.416742,0.248378,0.833715,0.223849,0.0337128,0.60256,0.0613522,0.166198,0.116053,0.466787,0.741258,0.184647,0.808617,0.529379,0.982022,0.392947,0.147193,0.429662,0.22544,0.705216,0.728551,0.535997,0.374339,0.439445,0.390762,0.410136,0.762821,0.166538,0.66188,0.38798,0.23388,0.0412958,0.147761,0.848622,0.214917,0.428676,0.237275,0.204614,0.69693,0.910091,0.9646,0.112017,0.328461,0.0385798,0.57463,0.82808,0.0245903,0.983624,0.646662,0.475569,0.0952939,0.266691,0.791509,0.0324568,0.332981,0.691048,0.842564,0.672554,0.45087,0.669816,0.641397,0.469036,0.731319,0.947558,0.572968,0.253077,0.061859,0.4672,0.362009,0.00933188,0.303793,0.0578614,0.887579,0.326161,0.804775,0.76115,0.277748,0.987825,0.858463,0.42431,0.444235,0.788314,0.631945,0.285908,0.404429,0.136499,0.986369,0.20738,0.783548,0.708727,0.441041,0.359,0.281716,0.163473,0.91437,0.78414,0.851416,0.596039,0.810917,0.367044,0.967436,0.326346,0.731019,0.0983873,0.869101,0.301149,0.990062,0.0243506,0.027603,0.668071,0.0869269,0.101996,0.738937,0.401492,0.614706,0.365505,0.825988,0.689691,0.0320446,0.838663,0.172516,0.704884,0.0374471,0.872493,0.938001,0.77934,0.266453,0.247662,0.806012,0.999795,0.435063,0.580851,0.576416,0.269736,0.107057,0.746848,0.471078,0.225682,0.922721,0.409052,0.233244,0.724369,0.224741,0.894703,0.131875,0.375727,0.594921,0.566779,0.387285,0.325358,0.673324,0.696217,0.800653,0.958083,0.610966,0.585072,0.378446,0.302026,0.834352,0.378624,0.143445,0.05192,0.931313,0.638196,0.0791373,0.950229,0.628248,0.631102,0.609326,0.985525,0.338295,0.945716,0.781929,0.441442,0.0846817,0.489302,0.767576,0.484176,0.856278,0.476876,0.345164,0.733083,0.0473786,0.0381671,0.764842,0.652212,0.1198,0.533181,0.0921287,0.121677,0.144658,0.473476,0.0635048,0.27022,0.990208,0.0277765,0.675628,0.176254,0.375705,0.00688159,0.652141,0.450564,0.551135,0.0944223,0.268788,0.926279,0.863689,0.224497,0.806485,0.85838,0.451357,0.533121,0.786905,0.421334,0.0356177,0.106958,0.795211,0.595094,0.398762,0.154134,0.493016,0.802069,0.966279,0.430298,0.739563,0.121174,0.466042,0.153989,0.816377,0.497708,0.996225,0.0934876,0.326231,0.394056,0.0660397,0.0162425,0.774805,0.893674,0.202317,0.807107,0.161189,0.542023,0.830438,0.451959,0.097074,0.277175,0.210275,0.358256,0.532258,0.670846,0.81028,0.710325,0.31431,0.140965,0.833589,0.0676212,0.404909,0.61913,0.161604,0.900447,0.326563,0.794452,0.966608,0.363939,0.636901,0.189981,0.905932,0.164953,0.361323,0.282526,0.182048,0.627526,0.691399,0.841282,0.903294,0.950307,0.150276,0.578837,0.101891,0.195628,0.271748,0.22187,0.917872,0.667943,0.453287,0.00705248,0.608177,0.90189,0.350472,0.425397,0.143727,0.890554,0.259885,0.757704,0.718537,0.923027,0.730266,0.327069,0.743479,0.104931,0.167939,0.622361,0.591063,0.186282,0.427415,0.458996,0.837563,0.056101,0.913928,0.909857,0.0324693,0.026435,0.168317,0.243122,0.78095,0.260669,0.727695,0.464772,0.0755568,0.895928,0.904237,0.798899,0.319234,0.358501,0.839123,0.464397,0.0947244,0.833274,0.945564,0.606432,0.0433494,0.670236,0.694164,0.145334,0.761505,0.977134,0.816146,0.166111,0.597342,0.47058,0.462868,0.413552,0.835247,0.00227892,0.68331,0.490922,0.219804,0.149406,0.038435,0.329277,0.617773,0.471723,0.875938,0.870896,0.830064,0.165903,0.187952,0.704709,0.708192,0.364848,0.422459,0.0654838,0.803226,0.0824865,0.882562,0.814313,0.249647,0.276826,0.847359,0.964751,0.835874,0.945859,0.802968,0.349539,0.711345,0.275905,0.252307,0.86374,0.623406,0.328808,0.668628,0.416413,0.0979767,0.0536047,0.461311,0.154542,0.373448,0.604534,0.423466,0.277015,0.260991,0.418262,0.0136931,0.196155,0.779036,0.0954565,0.443685,0.818583,0.21969,0.761917,0.720122,0.463981,0.91455,0.721148,0.434557,0.755021,0.324169,0.114044,0.0483377,0.199181,0.696472,0.5727,0.335182,0.0727183,0.40817,0.652856,0.115077,0.684935,0.5118,0.0412463,0.0782039,0.681414,0.319806,0.783132,0.691042,0.280254,0.294349,0.585612,0.154665,0.00660127,0.650133,0.128909,0.663172,0.250422,0.228859,0.698776,0.559814,0.301423,0.517122,0.810673,0.744904,0.452753,0.0318559,0.914414,0.332282,0.22792,0.12433,0.63209,0.867911,0.975597,0.210151,0.942618,0.81424,0.320208,0.635522,0.493019,0.870971,0.770204,0.553881,0.932778,0.831295,0.917058,0.412941,0.136119,0.54057,0.406881,0.360087,0.882158,0.498006,0.189519,0.682748,0.993634,0.15776,0.882578,0.484473,0.445451,0.0488631,0.202452,0.842134,0.0741705,0.798047,0.635432,0.0825192,0.173877,0.793774,0.569009,0.201657,0.186308,0.0986381,0.498963,0.257812,0.163139,0.267055,0.0866609,0.553502,0.075481,0.388803,0.439909,0.927604,0.334077,0.992732,0.71476,0.414783,0.475303,0.866048,0.0434747,0.540011,0.485644,0.989125,0.220483,0.792513,0.598525,0.639465,0.0427791,0.970646,0.455513,0.0305586,0.689816,0.300678,0.502225,0.897561,0.145122,0.0670735,0.658544,0.0195389,0.956123,0.247219,0.0268295,0.924384,0.757163,0.00205189,0.276318,0.179263,0.406283,0.934273,0.892021,0.787139,0.227044,0.978834,0.801905,0.862633,0.656569,0.845229,0.497967,0.10174,0.862453,0.719971,0.0268441,0.0528229,0.330216,0.366408,0.578934,0.484883,0.641954,0.339959,0.381458,0.49523,0.522829,0.562716,0.351583,0.484695,0.19604,0.52476,0.276907,0.724219,0.294012,0.42774,0.638074,0.669506,0.468891,0.0555279,0.379273,0.0103849,0.879745,0.941328,0.94398,0.640692,0.632192,0.66364,0.877692,0.962744,0.803303,0.45721,0.363277,0.79334,0.283193,0.574638,0.0337911,0.406429,0.66498,0.208683,0.302134,0.220924,0.853261,0.281023,0.232654,0.489576,0.588044,0.906546,0.901912,0.962502,0.47201,0.7989,0.866892,0.610045,0.458459,0.626046,0.00527483,0.918062,0.470304,0.315594,0.459579,0.292544,0.142469,0.478901,0.661677,0.939639,0.0829685,0.903524,0.228438,0.36324,0.390497,0.107836,0.0508555,0.0560575,0.860163,0.93189,0.560232,0.875832,0.994274,0.294232,0.359704,0.859503,0.923939,0.328943,0.418172,0.512162,0.754328,0.991668,0.124905,0.841604,0.557707,0.779255,0.746471,0.401301,0.938482,0.00966996,0.946105,0.176567,0.967328,0.222778,0.634563,0.736977,0.466543,0.49192,0.621448,0.467393,0.516421,0.103357,0.464458,0.274452,0.204054,0.90759,0.191601,0.509294,0.0817412,0.642002,0.361526,0.912024,0.0324451,0.903198,0.97122,0.208369,0.600758,0.466175,0.893865,0.85527,0.669252,0.419605,0.375812,0.035611,0.22674,0.495491,0.409521,0.982189,0.89858,0.510074,0.732093,0.0316352,0.130416,0.0149435,0.762636,0.583113,0.830023,0.0430955,0.739611,0.533905,0.352584,0.890643,0.485692,0.619345,0.867346,0.838901,0.0462877,0.715156,0.296451,0.665622,0.847579,0.880488,0.121928,0.741184,0.863028,0.356126,0.66602,0.823665,0.750504,0.125499,0.53386,0.389142,0.0119801,0.211568,0.660482,0.106698,0.621636,0.221939,0.606888,0.624536,0.98372,0.98703,0.500348,0.164167,0.731289,0.802786,0.979504,0.120877,0.0573942,0.495092,0.479686,0.226839,0.507188,0.566641,0.543885,0.318754,0.736401,0.283766,0.990616,0.958316,0.0929127,0.794641,0.822863,0.957062,0.663776,0.365224,0.789631,0.968221,0.596168,0.122749,0.713744,0.258171,0.934037,0.68124,0.947241,0.808478,0.0931596,0.332526,0.198701,0.0352767,0.11408,0.0808913,0.331639,0.427958,0.958093,0.327688,0.270088,0.0133587,0.136037,0.0193027,0.346433,0.001939,0.565411,0.472095,0.789539,0.710992,0.669056,0.487381,0.964788,0.349158,0.594899,0.475227,0.924392,0.355909,0.0384631,0.902639,0.948075,0.427973,0.694389,0.667763,0.985553,0.150323,0.607588,0.709686,0.626907,0.228198,0.796128,0.181496,0.782477,0.0932841,0.0181673,0.920137,0.51493,0.511754,0.120764,0.320079,0.0286672,0.824603,0.903848,0.183071,0.796407,0.868188,0.341946,0.663482,0.0611401,0.827464,0.97175,0.29402,0.0162561,0.291675,0.234631,0.158004,0.275556,0.540739,0.922828,|0.269599,0.59775,0.568455,0.51631,0.820785,0.195136,0.828271,0.688752,0.502394,0.553451,0.494687,0.556006,0.220939,0.330545,0.793637,0.517651,0.34479,0.636887,0.899062,0.0227239,0.560569,0.100303,0.884982,0.0405435,0.583077,0.471328,0.0844937,0.496531,0.816894,0.560135,0.0171746,0.0103518,0.843775,0.409515,0.0320235,0.363446,0.106601,0.491865,0.256332,0.479809,0.845376,0.241306,0.189791,0.0230169,0.291054,0.333928,0.53006,0.141397,0.30558,0.334235,0.818775,0.428656,0.690353,0.762563,0.479881,0.654436,0.967791,0.314983,0.622847,0.435698,0.97369,0.645389,0.0944908,0.7156,0.835873,0.839474,0.169966,0.292481,0.0325719,0.546634,0.173969,0.611093,0.552881,0.123671,0.455144,0.680113,0.7779,0.446317,0.467594,0.786915,0.934219,0.0716715,0.620004,0.64456,0.207518,0.0638546,0.102068,0.288669,0.749851,0.620914,0.379525,0.169536,0.672098,0.187698,0.564578,0.873919,0.166275,0.280223,0.682176,0.416358,0.0456749,0.298494,0.0113758,0.44581,0.105699,0.135848,0.888243,0.529931,0.0866902,0.751705,0.552329,0.407457,0.225963,0.775213,0.678919,0.993859,0.193951,0.328098,0.82686,0.975348,0.416814,0.484573,0.532611,0.240089,0.93312,0.854166,0.763449,0.816601,0.973487,0.0435877,0.209451,0.249322,0.825608,0.719917,0.991215,0.787394,0.759188,0.29394,0.597537,0.934604,0.682084,0.320933,0.322635,0.514327,0.755862,0.819671,0.402318,0.626806,0.544828,0.304641,0.470627,0.512378,0.523848,0.965732,0.97954,0.835417,0.0889661,0.2634,0.561131,0.744478,0.794841,0.518888,0.752034,0.670353,0.75317,0.625083,0.0747468,0.196534,0.967299,0.503846,0.743973,0.368729,0.575938,0.910157,0.0858411,0.977724,0.697899,0.273146,0.395492,0.155898,0.70268,0.760261,0.250606,0.595099,0.589335,0.106587,0.500812,0.759601,0.6576,0.604057,0.0551221,0.676794,0.17407,0.755896,0.914384,0.618762,0.961785,0.940883,0.235215,0.152875,0.143666,0.725296,0.298079,0.644592,0.132993,0.156956,0.355136,0.36082,0.979418,0.346289,0.569602,0.909922,0.473319,0.137662,0.977554,0.578044,0.8168,0.112319,0.00352836,0.153142,0.937806,0.78162,0.899343,0.553569,0.357731,0.570383,0.951618,0.812414,0.0648845,0.836801,0.793423,0.527943,0.787663,0.362925,0.883498,0.0634497,0.443258,0.762934,0.861834,0.109192,0.715756,0.342959,0.509624,0.331034,0.191878,0.780869,0.136361,0.59458,0.0306773,0.415921,0.508028,0.121244,0.796219,0.0740448,0.947892,0.108811,0.322803,0.632011,0.582561,0.80191,0.749247,0.822884,0.792142,0.581853,0.505474,0.278572,0.285099,0.549176,0.102687,0.719384,0.591557,0.174635,0.244386,0.944409,0.792406,0.48754,0.795227,0.062717,0.129083,0.427997,0.782297,0.688418,0.127609,0.46794,0.46991,0.960411,0.144664,0.41474,0.90601,0.471124,0.729275,0.269992,0.409802,0.787336,0.859934,0.111047,0.16002,0.0436491,0.232791,0.685802,0.330203,0.683755,0.480422,0.620456,0.498312,0.22944,0.895163,0.987278,0.0435802,0.0600501,0.621948,0.863719,0.746832,0.59553,0.741704,0.100634,0.550457,0.267092,0.39335,0.162949,0.692962,0.195437,0.795244,0.623699,0.465315,0.595127,0.904094,0.232466,0.120998,0.106212,0.25404,0.704802,0.0859426,0.0348272,0.497359,0.444056,0.107775,0.597797,0.672575,0.824317,0.171411,0.127767,0.230849,0.454742,0.261968,0.136205,0.664591,0.392082,0.110798,0.279317,0.927975,0.751313,0.346247,0.14682,0.327408,0.767343,0.568835,0.234497,0.489052,0.489525,0.446604,0.00657392,0.516635,0.195499,0.444741,0.695154,0.53578,0.45774,0.0731795,0.00815046,0.536323,0.460295,0.876933,0.569569,0.801758,0.475381,0.0390237,0.218917,0.126867,0.233752,0.865645,0.701418,0.373851,0.949712,0.7449,0.930825,0.890494,0.323817,0.0375665,0.91867,0.963036,0.877875,0.70561,0.348734,0.422852,0.383516,0.338565,0.751724,0.193108,0.128901,0.118358,0.906156,0.463439,0.29897,0.745961,0.399386,0.0933327,0.77487,0.600614,0.449007,0.665746,0.721736,0.288312,0.496225,0.90075,0.440487,0.583864,0.64403,0.313867,0.826028,0.140132,0.291873,0.348802,0.991504,0.00857407,0.711127,0.677485,0.340464,0.396201,0.351187,0.560647,0.89367,0.952451,0.0928509,0.575333,0.171561,0.80172,0.621343,0.798531,0.525832,0.871762,0.522507,0.494916,0.395591,0.910603,0.239978,0.163933,0.213631,0.594773,0.120329,0.494281,0.0702796,0.166711,0.473015,0.299022,0.553688,0.756252,0.569847,0.301143,0.341462,0.99211,0.915672,0.140793,0.104703,0.323636,0.490869,0.693404,0.250777,0.112559,0.382656,0.97869,0.229838,0.541395,0.0541199,0.788369,0.666792,0.0502093,0.282055,0.883127,0.823759,0.939977,0.773045,0.726258,0.0138106,0.0591876,0.739623,0.535387,0.24649,0.940693,0.72758,0.552292,0.736589,0.315594,0.921762,0.107478,0.911063,0.779263,0.944987,0.0201429,0.123612,0.064973,0.879771,0.38983,0.252224,0.697163,0.446546,0.338891,0.732412,0.280691,0.55802,0.0518582,0.421755,0.804739,0.261734,0.632903,0.928315,0.0817915,0.419864,0.734796,0.948154,0.616116,0.16786,0.640729,0.702718,0.698913,0.995462,0.5043,0.626046,0.752666,0.946006,0.650163,0.937555,0.999168,0.46457,0.466744,0.718077,0.311429,0.0108059,0.140815,0.286046,0.16818,0.590347,0.29902,0.534272,0.769787,0.163238,0.433232,0.823295,0.592949,0.0272052,0.720081,0.194227,0.87504,0.369143,0.864056,0.202153,0.542298,0.960472,0.397906,0.112391,0.745648,0.409411,0.905531,0.435502,0.535839,0.417936,0.373186,0.317685,0.649862,0.751149,0.475089,0.0920502,0.338634,0.616299,0.973624,0.698674,0.675681,0.654103,0.0968108,0.45497,0.379068,0.402128,0.487963,0.950058,0.844741,0.619105,0.981004,0.408338,0.743836,0.431008,0.676738,0.794528,0.0694757,0.92415,0.162703,0.750431,0.755189,0.332709,0.594946,0.625219,0.372582,0.61481,0.18707,0.751332,0.245129,0.217383,0.112743,0.270254,0.807949,0.901838,0.15559,0.671843,0.69433,0.833019,0.33436,0.596177,0.0356287,0.505318,0.20446,0.943484,0.877965,0.302082,0.126249,0.231046,0.522757,0.666561,0.097634,0.952504,0.468357,0.218939,0.21328,0.0218924,0.397004,0.238184,0.995105,0.059643,0.573566,0.233105,0.207477,0.902751,0.367908,0.0549462,0.234482,0.943178,0.669967,0.745717,0.478723,0.518629,0.916996,0.402609,0.221362,0.808799,0.409349,0.764863,0.693974,0.235774,0.6741,0.0619402,0.433359,0.883178,0.700054,0.797852,0.457123,0.725203,0.605795,0.20275,0.164513,0.503351,0.609911,0.0407565,0.00144565,0.545145,0.24349,0.934973,0.882397,0.100037,0.957578,0.879814,0.756399,0.0563467,0.330444,0.480833,0.865029,0.0506935,0.98839,0.69937,0.752524,0.366298,0.535377,0.514925,0.277769,0.681652,0.642161,0.935938,0.580099,0.100549,0.528607,0.255573,0.994399,0.0985625,0.321117,0.249932,0.358297,0.928485,0.804815,0.432277,0.876572,0.802762,0.695844,0.493582,0.00600672,0.143376,0.951553,0.49905,0.463144,0.42177,0.0561426,0.380525,0.878404,0.957958,0.523566,0.397856,0.205819,0.754744,0.720361,0.934997,0.24834,0.438341,0.683144,0.389801,0.273799,0.583066,0.401634,0.232196,0.387957,0.204195,0.701865,0.792847,0.673403,0.468053,0.0694219,0.10904,0.476824,0.0316646,0.0293545,0.0699954,0.38762,0.961773,0.386721,0.180156,0.826666,0.221332,0.59668,0.598144,0.0804618,0.677358,0.324449,0.661222,0.572342,0.979822,0.361235,0.305207,0.681876,0.976511,0.318309,0.698973,0.54331,0.929743,0.789342,0.204878,0.738831,0.945861,0.434686,0.208161,0.0466498,0.0577162,0.693915,0.250355,0.892127,0.0859769,0.709368,0.0839367,0.47906,0.658215,0.920028,0.996906,0.096716,0.339742,0.486584,0.468085,0.34827,0.616409,0.898814,0.260729,0.625732,0.24868,0.108093,0.667998,0.944335,0.946116,0.237829,0.827131,0.800483,0.0812268,0.791263,0.528345,0.199624,0.237034,0.375994,0.244004,0.155782,0.928489,0.876675,0.566472,0.793547,0.25189,0.82972,0.501725,0.0928799,0.0195208,0.615349,0.634106,0.592668,0.179325,0.57832,0.68626,0.29015,0.919751,0.26423,0.705496,0.289972,0.576484,0.00392866,0.526511,0.653663,0.0920572,0.427255,0.429829,0.941356,0.776101,0.860936,0.488913,0.312811,0.59075,0.899988,0.923119,0.835282,0.948079,0.0312815,0.495596,0.225445,0.593874,0.34169,0.336086,0.915224,0.853689,0.232033,0.6983,0.430657,0.00682569,0.789842,0.299366,0.128676,0.852589,0.778346,0.0755858,0.914629,0.727268,0.447755,0.732559,0.680293,0.333003,0.477337,0.327125,0.364601,0.0783593,0.933077,0.28106,0.8813,0.36792,0.653597,0.71114,0.18471,0.773229,0.201445,0.526438,0.794736,0.79784,0.965672,0.974153,0.96378,0.63174,0.437403,0.367655,0.718275,0.00588,0.716884,0.531227,0.29793,0.527021,0.259635,0.81355,0.802426,0.718345,0.816421,0.0572503,0.0960676,0.0491166,0.967262,0.492526,0.179057,0.0160604,0.319311,0.182616,0.951882,0.168722,0.569824,0.99581,0.572154,0.645549,0.354577,0.00405324,0.517793,0.179252,0.485598,0.691245,0.399382,0.584719,0.562415,0.555712,0.379614,0.780819,0.529056,0.36727,0.900813,0.256604,0.373661,0.809205,0.134496,0.553647,0.401714,0.575808,0.795193,0.673482,0.429055,0.729126,0.294155,0.0930169,0.660594,0.412549,0.125843,0.339177,0.536543,0.598265,0.155739,0.203848,0.386816,0.510529,0.672252,0.778383,0.131736,0.290761,0.839165,0.363006,0.219312,0.514979,0.842982,0.0301253,0.693072,0.555875,0.250638,0.31549,0.0634723,0.608699,0.406569,0.635709,0.890595,0.771449,0.0531948,0.591929,0.153659,0.660394,0.0990217,0.778433,0.518375,0.342161,0.95954,0.0604414,0.416628,0.749289,0.812366,0.438148,0.863825,0.578421,0.845884,0.26658,0.762102,0.249867,0.394489,0.0992519,|0.577348,0.670632,0.180025,0.739599,0.650179,0.738276,0.0868404,0.187373,0.959202,0.962219,0.0742662,0.523573,0.135827,0.348554,0.134858,0.247601,0.868888,0.828416,0.639071,0.259688,0.352636,0.317832,0.387418,0.256093,0.370586,0.0507587,0.443406,0.147505,0.869033,0.588327,0.630431,0.117883,0.195085,0.654178,0.422792,0.210132,0.465688,0.818073,0.344068,0.916825,0.986757,0.181166,0.112829,0.853767,0.465668,0.407748,0.817174,0.201906,0.4477,0.712054,0.77252,0.122226,0.67023,0.765024,0.735678,0.471715,0.829494,0.34856,0.0818321,0.931192,0.231625,0.270387,0.192714,0.144095,0.380698,0.87144,0.0934705,0.277215,0.136395,0.0722895,0.611928,0.434055,0.809025,0.389475,0.666134,0.452991,0.0154964,0.762034,0.851894,0.74962,0.316235,0.450407,0.0369562,0.684431,0.287041,0.668125,0.942748,0.271348,0.754755,0.832226,0.907361,0.808213,0.640911,0.478735,0.258054,0.656797,0.131948,0.146799,0.333009,0.675798,0.308904,0.906926,0.566814,0.426005,0.0518538,0.60956,0.907041,0.107558,0.658124,0.628684,0.126162,0.678458,0.097982,0.765286,0.108401,0.87097,0.188811,0.904644,0.0507946,0.496509,0.431861,0.409926,0.604784,0.288642,0.245115,0.154842,0.32967,0.156559,0.641369,0.705556,0.0112008,0.751217,0.483236,0.89676,0.0412106,0.315535,0.200529,0.279025,0.332144,0.33341,0.0465165,0.461526,0.409836,0.0762572,0.488282,0.898031,0.883583,0.358602,0.589183,0.272005,0.270083,0.827823,0.560975,0.347465,0.190317,0.960888,0.0156199,0.890658,0.0170953,0.90364,0.479169,0.481361,0.684421,0.315187,0.959125,0.914348,0.0687026,0.686402,0.41433,0.839809,0.642969,0.146368,0.69783,0.0693061,0.930754,0.325324,0.746997,0.346686,0.170075,0.0385391,0.0685963,0.873665,0.0476846,0.229323,0.983815,0.201553,0.631073,0.195259,0.793215,0.526147,0.741296,0.713905,0.70401,0.327345,0.403524,0.69647,0.824465,0.698859,0.355979,0.763982,0.497024,0.512141,0.803047,0.806964,0.829768,0.361233,0.753438,0.720005,0.495046,0.117362,0.282732,0.641033,0.168826,0.236511,0.805083,0.118024,0.36023,0.691639,0.305349,0.94332,0.0398111,0.698802,0.630448,0.509643,0.93975,0.396752,0.692733,0.376656,0.461614,0.219154,0.680319,0.914033,0.716748,0.286881,0.421019,0.930337,0.594727,0.330699,0.97542,0.803975,0.312104,0.780555,0.524642,0.0270671,0.805774,0.254404,0.674982,0.909768,0.969648,0.115773,0.794482,0.597529,0.489949,0.313633,0.304268,0.852068,0.538637,0.685051,0.605353,0.25178,0.0128576,0.37018,0.866421,0.948385,0.699129,0.526992,0.624115,0.221589,0.382364,0.205599,0.568735,0.314502,0.600726,0.391572,0.194874,0.524781,0.274515,0.778266,0.920273,0.0652351,0.325338,0.427899,0.981464,0.403482,0.748739,0.485499,0.545498,0.414884,0.327451,0.462614,0.0159015,0.610423,0.357273,0.543812,0.302727,0.781583,0.295868,0.479466,0.970953,0.0453711,0.2533,0.59245,0.57445,0.37627,0.297656,0.597859,0.0939168,0.239465,0.822731,0.0575542,0.579509,0.908096,0.763156,0.958437,0.0970576,0.0475707,0.918036,0.0319768,0.368024,0.128605,0.240383,0.394937,0.142607,0.21182,0.112649,0.414956,0.16076,0.887882,0.116003,0.418456,0.80225,0.596214,0.909966,0.995899,0.38131,0.850595,0.520353,0.382973,0.289345,0.130436,0.334672,0.424653,0.639287,0.708747,0.990305,0.075698,0.473233,0.166665,0.836963,0.367132,0.623235,0.0862902,0.717704,0.613741,0.496795,0.482249,0.190276,0.614451,0.52994,0.776918,0.220149,0.652099,0.363567,0.116007,0.903172,0.751759,0.690305,0.107391,0.971811,0.362112,0.98339,0.813864,0.647813,0.590969,0.106629,0.356346,0.753825,0.0331919,0.942529,0.985987,0.186941,0.396077,0.262209,0.723006,0.382004,0.408001,0.988029,0.742028,0.349554,0.457579,0.639889,0.128264,0.684353,0.38191,0.101127,0.553819,0.295041,0.716688,0.36521,0.43914,0.507527,0.129897,0.269163,0.86041,0.767796,0.538408,0.632632,0.908912,0.55357,0.0147626,0.4051,0.980218,0.269699,0.129209,0.207033,0.144578,0.447738,0.496624,0.130398,0.0857857,0.284446,0.911958,0.980512,0.834353,0.200957,0.281228,0.965149,0.253229,0.621453,0.54118,0.0444368,0.512475,0.35858,0.602454,0.0536721,0.344559,0.725631,0.0418115,0.323002,0.803729,0.00189453,0.799829,0.629947,0.295226,0.933591,0.248668,0.098446,0.194649,0.672755,0.755252,0.15356,0.207022,0.533629,0.428208,0.549926,0.126048,0.621238,0.517139,0.100185,0.575705,0.0893629,0.199101,0.888461,0.201471,0.424437,0.563756,0.957485,0.20839,0.225832,0.0227373,0.34567,0.216348,0.98285,0.946704,0.686097,0.385547,0.494794,0.846287,0.0170284,0.935705,0.865749,0.505731,0.774363,0.510974,0.410077,0.711599,0.916234,0.859261,0.857042,0.744031,0.242852,0.731005,0.974123,0.945372,0.203753,0.19127,0.16001,0.169059,0.737918,0.440628,0.53628,0.00485057,0.594182,0.226942,0.180244,0.0855621,0.237325,0.0926186,0.259425,0.0901024,0.50528,0.0871394,0.319216,0.25115,0.459824,0.246467,0.46276,0.701655,0.483665,0.758512,0.478945,0.286682,0.940217,0.914381,0.609336,0.498846,0.442572,0.548811,0.157104,0.0149262,0.274626,0.541916,0.950906,0.525131,0.880161,0.0847155,0.413254,0.520513,0.509466,0.203108,0.395534,0.87285,0.18053,0.967226,0.823773,0.183679,0.047498,0.360918,0.903077,0.619857,0.353549,0.425848,0.629661,0.495889,0.555696,0.974437,0.0621544,0.36629,0.236241,0.891415,0.518256,0.564201,0.616281,0.0173035,0.689119,0.678599,0.569089,0.661517,0.492745,0.488025,0.843114,0.714457,0.936598,0.23099,0.450644,0.940235,0.216166,0.262264,0.438981,0.358632,0.751629,0.0963337,0.602547,0.82924,0.563534,0.603913,0.122993,0.261482,0.987738,0.282997,0.667224,0.997873,0.682255,0.144596,0.616209,0.437093,0.547748,0.191878,0.501545,0.915687,0.701579,0.221131,0.899074,0.354881,0.385183,0.500642,0.935554,0.817005,0.883716,0.83663,0.668211,0.45109,0.313719,0.368829,0.774548,0.828752,0.151407,0.736537,0.16995,0.10772,0.518115,0.989841,0.0718893,0.792913,0.612692,0.193017,0.253623,0.0899775,0.0550904,0.945763,0.234471,0.41904,0.769161,0.194876,0.211342,0.414693,0.676355,0.898905,0.0787127,0.813755,0.777053,0.8441,0.405947,0.869839,0.310473,0.752832,0.990316,0.282657,0.142393,0.939021,0.769681,0.816703,0.809223,0.73299,0.895487,0.881464,0.740559,0.851052,0.7191,0.761889,0.397272,0.636125,0.615023,0.573164,0.124801,0.168808,0.645544,0.764025,0.401816,0.602504,0.379067,0.824869,0.106395,0.883718,0.789171,0.564842,0.881733,0.236697,0.0978457,0.368307,0.723324,0.913534,0.140556,0.353937,0.646763,0.57847,0.470059,0.77392,0.238137,0.542532,0.0812069,0.758865,0.201996,0.0746903,0.273979,0.329497,0.97218,0.0202954,0.455581,0.149699,0.581337,0.931218,0.585106,0.610597,0.936705,0.728026,0.387827,0.328331,0.766705,0.941474,0.101978,0.193006,0.688579,0.144248,0.436149,0.732211,0.22719,0.749034,0.47031,0.186719,0.534685,0.948772,0.68829,0.86535,0.808659,0.283702,0.436862,0.646512,0.973398,0.877827,0.973641,0.870522,0.660292,0.152223,0.46643,0.547088,0.357933,0.388682,0.995134,0.932599,0.209436,0.130686,0.720906,0.442951,0.766184,0.693723,0.310747,0.115054,0.414297,0.507122,0.260763,0.858861,0.502395,0.152282,0.513984,0.588725,0.585423,0.873273,0.11657,0.303354,0.740084,0.72068,0.491286,0.235934,0.003232,0.193711,0.720926,0.977845,0.91428,0.620848,0.861889,0.213264,0.79627,0.239073,0.367738,0.53868,0.489673,0.886081,0.70271,0.761518,0.100869,0.692505,0.385036,0.81939,0.396931,0.906709,0.989727,0.364496,0.989301,0.893728,0.483947,0.438842,0.994068,0.330828,0.891773,0.0279223,0.529234,0.289291,0.316296,0.663306,0.662065,0.863072,0.251313,0.384027,0.743541,0.996606,0.504791,0.493724,0.922159,0.459,0.385248,0.452819,0.615997,0.433094,0.933794,0.51968,0.604108,0.134718,0.200567,0.612961,0.721075,0.28208,0.041091,0.711086,0.836749,0.153091,0.953695,0.584384,0.283561,0.253749,0.644429,0.289283,0.698372,0.626028,0.238936,0.559566,0.315331,0.300474,0.543979,0.189227,0.318621,0.823299,0.00665569,0.365752,0.187455,0.428169,0.23205,0.183931,0.900014,0.16461,0.0920489,0.169591,0.449495,0.633663,0.516479,0.0341526,0.435512,0.258381,0.197236,0.216043,0.626798,0.83317,0.289864,0.0319765,0.089115,0.23877,0.232747,0.0895655,0.538328,0.816949,0.825211,0.818056,0.0343895,0.323622,0.574162,0.46385,0.303925,0.612488,0.667815,0.552945,0.485174,0.713281,0.423912,0.764065,0.220018,0.322774,0.896438,0.8277,0.242877,0.0662088,0.476322,0.519143,0.143349,0.256605,0.452025,0.693573,0.482713,0.998532,0.72172,0.418404,0.726502,0.269738,0.862939,0.196813,0.40654,0.468963,0.799099,0.996306,0.506346,0.274837,0.133409,0.541113,0.24457,0.714887,0.952689,0.702845,0.578778,0.587768,0.456365,0.579393,0.199931,0.303701,0.241705,0.743849,0.000261903,0.605117,0.0112856,0.103137,0.690578,0.242831,0.468277,0.930732,0.85442,0.278013,0.740538,0.0179361,0.696172,0.829949,0.986834,0.709175,0.128223,0.87285,0.126901,0.0341994,0.632042,0.0230561,0.0974327,0.804469,0.874403,0.374738,0.791585,0.771556,0.767078,0.945979,0.370674,0.00513667,0.455059,0.949431,0.187452,0.660598,0.462827,0.822829,0.224483,0.743064,0.691472,0.508673,0.237747,0.771123,0.655143,0.995401,0.167193,0.192556,0.390534,0.944326,0.102959,0.380139,0.463862,0.193397,0.59216,0.94609,0.718408,0.182895,0.455381,0.35623,0.247936,0.537865,0.502321,0.654077,0.364027,0.355355,0.124575,0.0584415,0.209002,0.576546,0.885312,0.873128,0.677005,0.155889,0.213619,0.590422,|0.78989,0.718151,0.0635194,0.744895,0.787561,0.65351,0.435839,0.145981,0.875109,0.206477,0.0117031,0.591485,0.355975,0.82844,0.232621,0.317465,0.928327,0.86959,0.487817,0.89475,0.585265,0.940586,0.649296,0.959463,0.477468,0.313481,0.853592,0.679749,0.415714,0.998732,0.178601,0.472353,0.929723,0.760325,0.405563,0.715075,0.752409,0.61186,0.872278,0.984927,0.312221,0.932872,0.342984,0.29194,0.116619,0.0128866,0.241935,0.137172,0.988124,0.596505,0.347831,0.459399,0.829724,0.173447,0.87737,0.993667,0.101652,0.848895,0.718483,0.5587,0.678145,0.998107,0.972695,0.275085,0.332426,0.501301,0.192319,0.963731,0.298958,0.978445,0.132798,0.732086,0.32786,0.0366157,0.154484,0.648817,0.470319,0.653783,0.427076,0.729846,0.731134,0.601096,0.397254,0.149601,0.76244,0.288277,0.0389763,0.982863,0.995456,0.139926,0.378643,0.251221,0.349275,0.231288,0.142708,0.990707,0.0415975,0.133491,0.31996,0.185439,0.755417,0.270312,0.397702,0.0876878,0.210898,0.118326,0.888903,0.766601,0.364427,0.610942,0.155848,0.189112,0.64604,0.120088,0.659992,0.480352,0.640499,0.311795,0.377748,0.755315,0.343271,0.905935,0.91367,0.838817,0.204174,0.472978,0.985529,0.653681,0.158178,0.890225,0.519259,0.852931,0.132277,0.0471541,0.0658088,0.700571,0.362053,0.691458,0.844702,0.789077,0.744335,0.734617,0.846522,0.528797,0.565438,0.406042,0.705534,0.765687,0.527109,0.488988,0.44073,0.990174,0.0704802,0.779539,0.993345,0.48069,0.873105,0.551673,0.435056,0.474392,0.33515,0.654492,0.177983,0.838617,0.5621,0.828598,0.563717,0.824094,0.431228,0.036691,0.856823,0.798854,0.60836,0.898825,0.256554,0.0970498,0.62497,0.8175,0.24979,0.735411,0.617344,0.546986,0.769261,0.370937,0.360694,0.243966,0.255252,0.642541,0.514216,0.150981,0.275547,0.387664,0.413799,0.922312,0.33244,0.264685,0.0480313,0.69459,0.227511,0.139219,0.529171,0.679371,0.929198,0.345866,0.632643,0.635085,0.593899,0.645056,0.14199,0.613939,0.397005,0.138682,0.859284,0.493444,0.450907,0.818082,0.112818,0.850607,0.44855,0.201147,0.848167,0.245227,0.658411,0.300457,0.603355,0.992663,0.8226,0.777649,0.494009,0.885809,0.519313,0.933298,0.464372,0.726209,0.346175,0.852176,0.614773,0.707374,0.707129,0.834484,0.279119,0.110078,0.171933,0.160192,0.790446,0.368916,0.836726,0.876905,0.151497,0.640451,0.983947,0.0136791,0.937364,0.401375,0.0480279,0.741502,0.657418,0.94408,0.113761,0.371276,0.608156,0.971725,0.980568,0.699095,0.307644,0.206514,0.671679,0.0792126,0.877715,0.743831,0.107143,0.0743039,0.661169,0.902788,0.518997,0.924756,0.0908669,0.751262,0.0974835,0.69008,0.313019,0.668898,0.195226,0.907229,0.0929253,0.56526,0.796415,0.917981,0.371892,0.911794,0.0897694,0.245032,0.176068,0.764236,0.0770469,0.785481,0.694551,0.158826,0.0533172,0.462997,0.760527,0.924463,0.261086,0.402708,0.773573,0.388636,0.947676,0.526117,0.335294,0.792616,0.14442,0.435988,0.510425,0.774785,0.532883,0.721206,0.347121,0.169523,0.52928,0.243449,0.612664,0.478879,0.0263678,0.0504717,0.0251037,0.352147,0.879013,0.13188,0.960843,0.278033,0.505193,0.946509,0.873103,0.367912,0.578658,0.942238,0.102751,0.304223,0.416642,0.704757,0.354288,0.293091,0.0750304,0.824769,0.27953,0.225427,0.70753,0.380001,0.38417,0.352799,0.0378125,0.683303,0.116043,0.779224,0.137854,0.429159,0.658997,0.95118,0.373017,0.0222753,0.216981,0.467756,0.790445,0.444472,0.982192,0.122952,0.825606,0.573127,0.561189,0.708748,0.406578,0.283151,0.49533,0.929605,0.579948,0.882682,0.850471,0.874202,0.71625,0.919727,0.652028,0.632467,0.364888,0.18097,0.494956,0.984337,0.00919616,0.968625,0.561978,0.944915,0.43099,0.0175692,0.625772,0.78176,0.147782,0.310761,0.618277,0.638457,0.0957692,0.914607,0.0057795,0.365656,0.117016,0.139285,0.435495,0.199895,0.979148,0.352833,0.615371,0.885385,0.890673,0.114467,0.42724,0.942629,0.11138,0.938299,0.740308,0.387937,0.187244,0.679199,0.930961,0.967198,0.182042,0.386235,0.349782,0.398528,0.586396,0.209029,0.224772,0.978518,0.105299,0.756403,0.9058,0.562216,0.67052,0.598516,0.84353,0.0780242,0.634729,0.164146,0.537808,0.471054,0.230106,0.856152,0.305089,0.030956,0.21057,0.0655127,0.831638,0.906491,0.172943,0.0428706,0.411392,0.110116,0.0146344,0.604824,0.867789,0.231535,0.718072,0.318646,0.777931,0.478852,0.0848168,0.0897972,0.606426,0.819256,0.962387,0.179864,0.130224,0.247958,0.0107161,0.451671,0.722958,0.237916,0.967838,0.199389,0.985048,0.521463,0.980861,0.953218,0.757181,0.200214,0.447869,0.914926,0.0103071,0.962679,0.70036,0.0424955,0.543267,0.88913,0.567539,0.929055,0.531923,0.182813,0.208303,0.555592,0.903575,0.739704,0.050577,0.080997,0.658244,0.732244,0.932172,0.0515471,0.306199,0.735142,0.533955,0.467304,0.665442,0.435945,0.748631,0.591305,0.97253,0.887043,0.702287,0.891738,0.376623,0.744371,0.433542,0.844188,0.158263,0.85374,0.880137,0.685096,0.991553,0.414244,0.0493472,0.00530553,0.170959,0.00220203,0.551652,0.658651,0.838266,0.350688,0.616087,0.519156,0.253346,0.527784,0.550041,0.459042,0.998586,0.749809,0.0973582,0.947582,0.399687,0.233487,0.600364,0.481116,0.706089,0.0293118,0.52021,0.271904,0.0867109,0.607906,0.464708,0.0483322,0.721134,0.854527,0.0449052,0.282221,0.259118,0.267692,0.554923,0.207724,0.415451,0.786368,0.883104,0.606419,0.0264971,0.472752,0.330294,0.547921,0.179283,0.312072,0.18516,0.235397,0.716065,0.884067,0.0593692,0.387497,0.504527,0.134096,0.952961,0.468653,0.842541,0.844638,0.256705,0.14813,0.140051,0.933883,0.354902,0.268895,0.158528,0.640334,0.745498,0.693088,0.575928,0.0858582,0.977297,0.00432038,0.597162,0.633193,0.99387,0.607572,0.022549,0.730797,0.770169,0.299122,0.737435,0.493879,0.817007,0.86826,0.258116,0.891226,0.023506,0.350537,0.33637,0.828889,0.796294,0.525861,0.631075,0.884806,0.468424,0.021594,0.0983716,0.957855,0.464757,0.71076,0.872091,0.337633,0.905648,0.598225,0.838012,0.477921,0.853528,0.743561,0.0367489,0.240449,0.626163,0.341052,0.344973,0.890209,0.44826,0.204543,0.470791,0.976398,0.637849,0.472984,0.899678,0.674827,0.476571,0.441475,0.519371,0.829179,0.36999,0.57818,0.100019,0.351889,0.834588,0.302807,0.638324,0.173661,0.548124,0.45751,0.759163,0.16226,0.366034,0.742392,0.400749,0.679574,0.200226,0.632598,0.916942,0.935591,0.568867,0.854046,0.489136,0.42721,0.750358,0.875947,0.808164,0.500978,0.0629269,0.108026,0.764783,0.38671,0.701863,0.210514,0.261675,0.261045,0.475228,0.400982,0.148964,0.790277,0.737881,0.0338053,0.470976,0.724491,0.843707,0.0368481,0.0621863,0.597217,0.868234,0.813622,0.630677,0.798227,0.241231,0.984661,0.409594,0.342289,0.545537,0.851307,0.0131776,0.994239,0.0619348,0.200652,0.548594,0.119779,0.473746,0.690155,0.860023,0.367662,0.502363,0.850184,0.292934,0.111856,0.694607,0.0439656,0.676604,0.688589,0.470881,0.778335,0.83863,0.549074,0.637712,0.751962,0.168656,0.38747,0.473825,0.607863,0.979053,0.489714,0.369478,0.069662,0.496499,0.84692,0.80321,0.00131392,0.841766,0.183462,0.168312,0.743977,0.843029,0.813431,0.0475134,0.540192,0.106123,0.0927022,0.990799,0.40387,0.230836,0.0788912,0.45576,0.128715,0.813502,0.116032,0.524288,0.280957,0.511324,0.710941,0.338968,0.0794355,0.25655,0.684668,0.699077,0.210976,0.124849,0.445327,0.130772,0.498641,0.467562,0.780697,0.250731,0.212517,0.447095,0.285175,0.171359,0.834168,0.873429,0.232036,0.149864,0.593611,0.136169,0.712879,0.548721,0.66397,0.916716,0.776985,0.300297,0.0321041,0.883907,0.638576,0.696363,0.519168,0.194507,0.912055,0.886259,0.428458,0.117105,0.100913,0.812485,0.656076,0.284061,0.648947,0.170259,0.444562,0.0412377,0.194917,0.0368782,0.424647,0.142689,0.590983,0.271852,0.718448,0.787104,0.0376955,0.33968,0.192531,0.890434,0.0271801,0.641364,0.0201963,0.0693384,0.136083,0.930473,0.524402,0.231106,0.974236,0.0398731,0.486312,0.870458,0.611704,0.162937,0.301248,0.776124,0.749831,0.903651,0.530222,0.864595,0.962544,0.33013,0.794051,0.445474,0.468388,0.890198,0.548738,0.527834,0.579678,0.406547,0.570943,0.56656,0.0915368,0.079317,0.497587,0.0127519,0.722655,0.750266,0.823905,0.502707,0.0290371,0.0413052,0.787818,0.353873,0.374863,0.581233,0.319766,0.843357,0.966481,0.929032,0.89845,0.861905,0.397049,0.243917,0.144234,0.735384,0.573541,0.644189,0.601073,0.614954,0.233509,0.684625,0.549639,0.416743,0.266271,0.576878,0.769233,0.648504,0.872642,0.520308,0.669708,0.575448,0.344783,0.433486,0.856366,0.890181,0.158788,0.39906,0.298983,0.911165,0.41123,0.92115,0.912817,0.461639,0.00754863,0.466512,0.230014,0.907606,0.979595,0.250049,0.996111,0.82462,0.101101,0.888794,0.553294,0.140874,0.0761768,0.514647,0.21541,0.0872231,0.366515,0.444124,0.552041,0.297785,0.0823888,0.374273,0.897533,0.389775,0.638126,0.329708,0.299906,0.83734,0.730058,0.53829,0.0320162,0.978696,0.539113,0.514039,0.693258,0.146879,0.00408524,0.518153,0.713348,0.229783,0.677284,0.145558,0.763458,0.114696,0.908581,0.993912,0.532688,0.663876,0.464306,0.315845,0.0717086,0.185218,0.709515,0.604884,0.691006,0.714053,0.944518,0.255747,0.153867,0.367401,0.517516,0.55496,0.916118,0.395347,0.122102,0.76835,0.010986,0.0106601,0.362174,0.219071,0.0335006,0.980093,0.546521,0.214361,0.775922,0.0910814,0.349589,0.0436149,0.435088,0.462344,0.399118,0.920307,0.618147,0.609141,0.787712,0.983724,0.329897,|0.953758,0.195652,0.259996,0.052605,0.545493,0.199905,0.644623,0.100746,0.686537,0.506021,0.0233187,0.663932,0.744462,0.0981365,0.598735,0.748608,0.998944,0.535316,0.235991,0.921905,0.558812,0.562409,0.622266,0.450042,0.7353,0.643202,0.744674,0.223036,0.409531,0.639387,0.105331,0.723508,0.938547,0.367693,0.102265,0.295278,0.550888,0.742919,0.209315,0.953722,0.261936,0.294658,0.296693,0.46167,0.0126171,0.808845,0.78381,0.456446,0.870479,0.398042,0.835065,0.713827,0.932745,0.842278,0.622621,0.564648,0.257536,0.00747222,0.84241,0.787111,0.374905,0.549829,0.641434,0.803124,0.785522,0.0280887,0.361552,0.026168,0.605781,0.123787,0.901409,0.380491,0.150289,0.597744,0.07077,0.46544,0.526623,0.328006,0.613388,0.588232,0.242068,0.405881,0.54897,0.239814,0.241711,0.894985,0.507823,0.190091,0.693974,0.434963,0.29923,0.913493,0.601192,0.112794,0.781275,0.0983732,0.873992,0.906616,0.192177,0.0169557,0.948634,0.215386,0.70095,0.456652,0.444825,0.0842549,0.0875762,0.656664,0.106216,0.231163,0.154923,0.155899,0.397827,0.0661854,0.198812,0.104707,0.263245,0.381404,0.059719,0.668256,0.209447,0.338188,0.604435,0.920557,0.13865,0.103439,0.322122,0.00297558,0.365673,0.418044,0.996404,0.701353,0.182671,0.113109,0.515715,0.594226,0.185624,0.189428,0.887988,0.247836,0.289367,0.942226,0.38362,0.45245,0.559064,0.256082,0.265822,0.573767,0.206014,0.530386,0.157524,0.556341,0.467148,0.933286,0.380202,0.963523,0.747826,0.506768,0.450863,0.625749,0.685385,0.825193,0.836836,0.655972,0.528784,0.148867,0.381865,0.0596902,0.895139,0.872469,0.0995904,0.483453,0.456943,0.791928,0.178842,0.185651,0.526551,0.202429,0.594028,0.597976,0.472343,0.90139,0.0323495,0.0761441,0.137538,0.57271,0.779904,0.747833,0.83955,0.869666,0.730084,0.882076,0.863938,0.743107,0.0707661,0.36293,0.255511,0.391683,0.421617,0.955832,0.339679,0.692298,0.403821,0.746978,0.408161,0.568077,0.408009,0.610534,0.744385,0.417692,0.465342,0.699189,0.465945,0.295957,0.459784,0.0538779,0.0812974,0.91686,0.00479686,0.491487,0.501401,0.383898,0.724252,0.0810974,0.484478,0.68901,0.366261,0.806474,0.811813,0.0469695,0.160749,0.184253,0.827299,0.717942,0.306574,0.346726,0.282839,0.931019,0.180627,0.666126,0.732781,0.495892,0.846558,0.0120429,0.996058,0.549445,0.631814,0.103462,0.178937,0.831629,0.744729,0.182953,0.18598,0.642911,0.032592,0.243228,0.33778,0.129805,0.545491,0.939778,0.909356,0.00267363,0.741767,0.52925,0.797932,0.167072,0.280137,0.405149,0.359517,0.0398504,0.547196,0.792392,0.934527,0.819829,0.698472,0.0873891,0.694614,0.0350604,0.171556,0.409042,0.35464,0.933794,0.271793,0.103252,0.41274,0.44396,0.598494,0.688854,0.690965,0.625131,0.186893,0.394345,0.344766,0.341933,0.831887,0.210644,0.0277976,0.78961,0.218913,0.880686,0.699769,0.415772,0.526009,0.226613,0.285063,0.957591,0.13705,0.290914,0.199389,0.148818,0.40689,0.414712,0.410544,0.969546,0.302095,0.602776,0.871081,0.616024,0.818484,0.854344,0.415574,0.628688,0.981085,0.935021,0.0934166,0.536325,0.715353,0.271703,0.161201,0.722531,0.411628,0.520181,0.541121,0.291841,0.247489,0.171518,0.732913,0.889396,0.0690124,0.248941,0.892204,0.414217,0.977863,0.76087,0.873015,0.844957,0.653435,0.113028,0.835711,0.250897,0.355623,0.643379,0.591567,0.494364,0.883792,0.0357797,0.56853,0.961747,0.197505,0.873409,0.849265,0.763845,0.770914,0.690511,0.49439,0.425417,0.970115,0.197972,0.175024,0.554622,0.771954,0.952821,0.608009,0.841956,0.696229,0.981814,0.330788,0.995685,0.472147,0.340819,0.404602,0.336484,0.253863,0.738071,0.819996,0.0932521,0.0520436,0.363233,0.957004,0.324129,0.154521,0.422885,0.542136,0.726974,0.937464,0.367778,0.201749,0.616406,0.35778,0.736864,0.646975,0.174541,0.269865,0.252536,0.460853,0.625519,0.352775,0.996637,0.477336,0.514922,0.618161,0.827318,0.714814,0.374533,0.75042,0.945165,0.867971,0.516267,0.514807,0.138377,0.779431,0.774935,0.24514,0.211215,0.983288,0.940354,0.847003,0.157775,0.423652,0.376293,0.07421,0.0616251,0.308348,0.077863,0.579885,0.349738,0.345136,0.227647,0.603557,0.600637,0.269221,0.262657,0.680136,0.884919,0.612838,0.493897,0.11377,0.646933,0.246651,0.284964,0.735635,0.45274,0.127935,0.295599,0.18774,0.00185454,0.270093,0.186903,0.679109,0.822887,0.457847,0.362886,0.213533,0.84312,0.678878,0.98565,0.226403,0.146676,0.0222622,0.245333,0.89774,0.583881,0.0441839,0.00307518,0.270132,0.360224,0.172346,0.55863,0.981514,0.764488,0.0546988,0.174829,0.14619,0.237516,0.132065,0.104041,0.542243,0.875365,0.0329459,0.688853,0.516342,0.363622,0.153109,0.0720435,0.211591,0.38841,0.426504,0.150712,0.0931919,0.00171679,0.766758,0.131409,0.789209,0.52472,0.10014,0.133428,0.807571,0.148691,0.884152,0.567427,0.692898,0.494461,0.890381,0.677408,0.957602,0.261162,0.867278,0.632329,0.239756,0.510305,0.364041,0.308728,0.562756,0.976418,0.051209,0.546841,0.932094,0.831846,0.773982,0.621852,0.572804,0.0441377,0.638212,0.952772,0.679643,0.899364,0.20526,0.838281,0.124701,0.782823,0.944586,0.0808782,0.965917,0.266429,0.288078,0.280342,0.721001,0.935384,0.867697,0.579136,0.902545,0.104639,0.305232,0.135284,0.960717,0.235508,0.512984,0.885059,0.00520849,0.878021,0.462514,0.209454,0.526305,0.552384,0.106353,0.385401,0.673606,0.207166,0.0545679,0.966685,0.206985,0.244803,0.632623,0.636654,0.321432,0.247777,0.703883,0.681245,0.0337844,0.536104,0.757299,0.761801,0.730477,0.0559689,0.790673,0.800217,0.381122,0.830433,0.0807142,0.687631,0.613539,0.142744,0.231821,0.974894,0.32779,0.276449,0.0669256,0.343497,0.312546,0.933744,0.80727,0.690004,0.377116,0.513291,0.761482,0.878398,0.9851,0.869021,0.510875,0.307499,0.20098,0.617696,0.839217,0.983412,0.780342,0.848605,0.0146382,0.422625,0.916824,0.138289,0.0111631,0.345035,0.54228,0.586534,0.972808,0.922882,0.175365,0.781042,0.345619,0.562957,0.304683,0.251083,0.839264,0.0928641,0.644259,0.651038,0.0919289,0.885438,0.417407,0.908835,0.350275,0.609919,0.133027,0.497111,0.253127,0.864558,0.295202,0.743309,0.978834,0.067834,0.920511,0.0520095,0.61664,0.45199,0.215079,0.881375,0.0166203,0.258964,0.933187,0.849863,0.692592,0.330675,0.499285,0.131843,0.269222,0.846232,0.313094,0.88504,0.480715,0.190994,0.459001,0.704707,0.175672,0.675739,0.415101,0.587651,0.21619,0.775734,0.979568,0.971563,0.677302,0.92219,0.176752,0.365316,0.737995,0.343821,0.0309924,0.179904,0.700031,0.146966,0.511207,0.916204,0.525171,0.894628,0.62103,0.670539,0.671757,0.322473,0.749972,0.803407,0.585515,0.321054,0.251332,0.211447,0.12984,0.769381,0.157476,0.578284,0.953074,0.209007,0.738451,0.898463,0.1172,0.116758,0.9104,0.641721,0.732594,0.263138,0.061592,0.276161,0.212103,0.710855,0.45321,0.803988,0.409391,0.376076,0.936988,0.801233,0.952257,0.941753,0.400721,0.564176,0.647162,0.989885,0.728566,0.694545,0.856467,0.90965,0.655625,0.00328243,0.274261,0.460725,0.433517,0.572518,0.877274,0.99883,0.348605,0.712182,0.701122,0.59484,0.732496,0.903495,0.484749,0.155839,0.880634,0.736529,0.618259,0.466043,0.934555,0.156614,0.634633,0.253243,0.262335,0.988682,0.36794,0.597997,0.275777,0.166736,0.136502,0.710176,0.756044,0.688567,0.17951,0.682587,0.114728,0.642577,0.647098,0.809581,0.545919,0.229623,0.144295,0.654987,0.511212,0.299381,0.37617,0.318702,0.540389,0.448178,0.227185,0.585326,0.642891,0.673288,0.227369,0.798285,0.768931,0.0632262,0.0796342,0.392157,0.177135,0.0765592,0.451526,0.682665,0.4186,0.700626,0.00664049,0.227344,0.802556,0.583157,0.832159,0.124231,0.435337,0.346824,0.431433,0.648345,0.70972,0.768797,0.568088,0.768927,0.797869,0.985848,0.390354,0.180705,0.729391,0.863095,0.263261,0.530428,0.36302,0.263626,0.611475,0.667386,0.71748,0.195564,0.456103,0.732703,0.315528,0.103981,0.313027,0.585896,0.394477,0.883884,0.88817,0.0934956,0.907735,0.249098,0.817716,0.995038,0.619685,0.124321,0.259336,0.654321,0.674145,0.918096,0.985171,0.808811,0.957598,0.347155,0.925092,0.27932,0.980835,0.844669,0.769138,0.647187,0.202255,0.397612,0.11848,0.283577,0.0997449,0.496539,0.379335,0.739734,0.27431,0.310319,0.135228,0.486387,0.59821,0.977964,0.306468,0.455045,0.603812,0.0798836,0.523576,0.146709,0.177887,0.628254,0.899592,0.119101,0.394161,0.205523,0.24256,0.260802,0.42868,0.478776,0.353431,0.0485377,0.626928,0.618519,0.678797,0.169979,0.648869,0.779787,0.931884,0.601225,0.481829,0.265715,0.372774,0.950373,0.0234729,0.925283,0.0126375,0.253351,0.846978,0.337873,0.670044,0.416192,0.248938,0.49687,0.655178,0.793393,0.795065,0.823532,0.830029,0.0205867,0.876575,0.232178,0.0912629,0.861588,0.993453,0.822255,0.761633,0.526404,0.831857,0.0150759,0.0341479,0.9409,0.430409,0.324258,0.710564,0.68114,0.277191,0.912712,0.690745,0.901444,0.253096,0.0301958,0.332084,0.967111,0.582112,0.396545,0.667067,0.17678,0.296267,0.199696,0.423318,0.356755,0.0915028,0.870566,0.801992,0.0865233,0.547579,0.794385,0.16057,0.571654,0.904168,0.807613,0.0338733,0.806607,0.383059,0.720051,0.617782,0.0645865,0.713641,0.929707,0.54282,0.65238,0.139232,0.0439658,0.307501,0.492951,0.53548,0.0257235,0.108965,0.428714,0.451978,0.138286,0.731902,0.163507,0.185608,0.896272,0.649447,0.796913,0.600173,0.127915,0.992731,0.973449,0.282808,0.892616,0.813202,0.568523,0.528994,0.774642,|0.924346,0.123788,0.84738,0.236329,0.611023,0.393609,0.0298871,0.33092,0.932576,0.466185,0.808844,0.594294,0.00625938,0.43849,0.850663,0.252657,0.112793,0.0052138,0.719797,0.933931,0.154451,0.497124,0.0139974,0.613931,0.0123392,0.110106,0.676554,0.301275,0.731671,0.390402,0.169911,0.354153,0.21632,0.830891,0.390407,0.322805,0.892979,0.697944,0.361703,0.874014,0.534474,0.292485,0.408564,0.618468,0.447275,0.794301,0.0394124,0.0728957,0.635997,0.891138,0.542234,0.146916,0.738248,0.0815771,0.113615,0.244358,0.625046,0.84222,0.482407,0.78607,0.169146,0.946636,0.846313,0.0102989,0.57115,0.149125,0.157549,0.906387,0.950247,0.670829,0.447279,0.480082,0.120049,0.997494,0.65692,0.766308,0.100752,0.540209,0.564951,0.146691,0.491298,0.602417,0.0307248,0.135476,0.0115053,0.105901,0.503132,0.924587,0.197209,0.0681289,0.624046,0.14242,0.133901,0.696619,0.0533402,0.312122,0.815395,0.354953,0.662857,0.435534,0.103202,0.475334,0.340781,0.57408,0.189127,0.934575,0.38208,0.128043,0.0620646,0.506376,0.203163,0.550584,0.904537,0.566046,0.232161,0.469141,0.381731,0.0915541,0.755439,0.548275,0.58934,0.475766,0.776611,0.332083,0.707247,0.122914,0.514983,0.069585,0.803512,0.721914,0.73387,0.384769,0.863835,0.817038,0.93315,0.885806,0.370711,0.174523,0.19948,0.720429,0.188262,0.830776,0.875666,0.974635,0.29506,0.597662,0.704563,0.425134,0.89715,0.741222,0.654062,0.363615,0.720085,0.454858,0.633716,0.627937,0.821533,0.458038,0.780422,0.366212,0.827421,0.981087,0.249924,0.501825,0.615166,0.521371,0.0976115,0.0543642,0.310315,0.399436,0.651103,0.819627,0.389197,0.449791,0.20957,0.794506,0.00784838,0.966811,0.145655,0.418881,0.864601,0.979158,0.216706,0.112053,0.731656,0.886828,0.0854484,0.505267,0.226686,0.183983,0.903518,0.458378,0.216337,0.820151,0.651217,0.749614,0.817075,0.151951,0.596507,0.831653,0.193997,0.68964,0.513485,0.0486639,0.870229,0.466749,0.437618,0.336939,0.699106,0.792238,0.492437,0.806138,0.620753,0.66802,0.0911104,0.511638,0.167757,0.534314,0.644487,0.631633,0.703206,0.478983,0.839015,0.845527,0.349646,0.572126,0.0127097,0.333713,0.5982,0.277058,0.583925,0.115571,0.98776,0.147122,0.182585,0.299835,0.653777,0.6762,0.362725,0.0461673,0.463119,0.63904,0.351401,0.458123,0.391144,0.973886,0.206843,0.171411,0.575162,0.0917044,0.117876,0.930034,0.4942,0.915707,0.992844,0.605796,0.482742,0.333216,0.321228,0.829651,0.0253046,0.934075,0.191749,0.340043,0.768057,0.0978734,0.410843,0.0133665,0.677561,0.926754,0.769814,0.678899,0.303274,0.240645,0.10654,0.102638,0.639132,0.962649,0.377768,0.216545,0.440974,0.247783,0.861634,0.129866,0.0154675,0.540091,0.574539,0.765389,0.577738,0.59651,0.496443,0.387924,0.471242,0.659796,0.989955,0.481911,0.912005,0.91238,0.856415,0.0705176,0.672202,0.32965,0.868895,0.214792,0.105438,0.871383,0.871573,0.194597,0.443641,0.0127633,0.747544,0.491438,0.57281,0.189572,0.0103146,0.129246,0.0936532,0.141504,0.03869,0.343992,0.619926,0.564614,0.618315,0.584564,0.724863,0.148635,0.598984,0.806097,0.202173,0.620131,0.676968,0.16572,0.731265,0.249838,0.608516,0.104981,0.624822,0.810394,0.547494,0.11064,0.550055,0.0668191,0.816331,0.519011,0.929113,0.553666,0.0513383,0.0134585,0.964473,0.513448,0.790491,0.726612,0.779167,0.311634,0.247982,0.029208,0.653116,0.378724,0.252078,0.638664,0.660824,0.609065,0.0917647,0.104637,0.851155,0.846904,0.655551,0.740683,0.451808,0.91501,0.293047,0.241364,0.0623653,0.777617,0.666172,0.00122136,0.909912,0.0837197,0.76496,0.656861,0.561559,0.711506,0.149153,0.602078,0.333148,0.0116262,0.255928,0.105945,0.172926,0.445601,0.108822,0.292024,0.972197,0.152902,0.239057,0.90516,0.743403,0.953616,0.617066,0.825359,0.113788,0.89049,0.0895684,0.819226,0.513057,0.761358,0.462065,0.993825,0.544196,0.842445,0.530894,0.520715,0.517474,0.850628,0.207475,0.117992,0.95162,0.735195,0.389106,0.0291512,0.56525,0.924123,0.732049,0.789649,0.949093,0.225159,0.279565,0.622179,0.00425434,0.290403,0.226823,0.998445,0.863282,0.473451,0.01086,0.912174,0.779613,0.453756,0.31077,0.264658,0.804798,0.222708,0.714998,0.402896,0.64341,0.652473,0.215889,0.514083,0.152011,0.931497,0.753843,0.954314,0.0348703,0.215909,0.523472,0.855494,0.938744,0.812499,0.867058,0.935982,0.396679,0.719917,0.122186,0.815836,0.974416,0.325116,0.381355,0.579887,0.475516,0.410686,0.739166,0.502031,0.546323,0.762629,0.60916,0.616428,0.962702,0.0588666,0.804124,0.693464,0.695971,0.886894,0.882238,0.594501,0.514185,0.78017,0.219251,0.471283,0.770001,0.145711,0.569402,0.0580588,0.760551,0.772643,0.66281,0.742431,0.724053,0.4018,0.110576,0.124367,0.492514,0.731422,0.629174,0.657498,0.649441,0.829765,0.861942,0.627519,0.667487,0.347639,0.242028,0.29374,0.0439864,0.96605,0.710871,0.570369,0.19002,0.571368,0.358787,0.190257,0.195823,0.592791,0.85658,0.139578,0.0797664,0.0201011,0.453684,0.302353,0.122461,0.810217,0.692236,0.417176,0.679571,0.561377,0.39254,0.528784,0.844797,0.275294,0.0367985,0.681131,0.22544,0.401981,0.282686,0.770805,0.776871,0.938285,0.670486,0.115321,0.71805,0.544238,0.572559,0.647537,0.168861,0.389562,0.172526,0.857804,0.479277,0.43647,0.945141,0.0334847,0.116223,0.438802,0.656955,0.0277435,0.880879,0.113364,0.113059,0.286276,0.429429,0.136356,0.869632,0.640724,0.965459,0.47441,0.559037,0.838766,0.209735,0.595537,0.942865,0.873151,0.721342,0.866323,0.700759,0.819285,0.187196,0.730471,0.885977,0.42844,0.0327024,0.819452,0.663905,0.433296,0.891633,0.867957,0.592379,0.441202,0.21754,0.353469,0.299748,0.989975,0.36151,0.125874,0.582977,0.476032,0.231214,0.5941,3.51667e-05,0.514369,0.789991,0.220136,0.533344,0.747157,0.205069,0.574557,0.503162,0.808149,0.802712,0.120967,0.805433,0.124792,0.594799,0.156684,0.376779,0.688363,0.349566,0.640033,0.866094,0.403718,0.199262,0.788505,0.73078,0.525663,0.913768,0.494594,0.626123,0.910429,0.976517,0.934085,0.11919,0.937345,0.472282,0.627791,0.530549,0.0303174,0.195083,0.127434,0.674967,0.0438317,0.819609,0.54957,0.116688,0.39646,0.825334,0.608725,0.16424,0.107029,0.160075,0.569667,0.575576,0.154419,0.7127,0.0267177,0.000830114,0.228929,0.300285,0.410441,0.786365,0.61039,0.45629,0.525847,0.153026,0.113625,0.807652,0.882193,0.638025,0.147096,0.998228,0.213032,0.304219,0.875806,0.843911,0.299263,0.889955,0.102414,0.567423,0.732974,0.746531,0.758077,0.809335,0.18188,0.616042,0.0920189,0.346654,0.774942,0.0970012,0.553442,0.132321,0.682942,0.648781,0.655613,0.850504,0.397803,0.829943,0.434481,0.184473,0.43358,0.223032,0.317102,0.542704,0.891831,0.587104,0.891108,0.644906,0.760376,0.355447,0.50155,0.78263,0.852266,0.44557,0.402677,0.768598,0.854073,0.759621,0.951006,0.495327,0.492189,0.560738,0.118098,0.7171,0.340119,0.535636,0.683194,0.4409,0.545491,0.70415,0.531855,0.294865,0.343639,0.0682847,0.596603,0.659767,0.559106,0.597316,0.959076,0.260583,0.190485,0.735844,0.632808,0.571486,0.58597,0.296147,0.0463287,0.216483,0.725124,0.0511528,0.708568,0.537379,0.92898,0.513528,0.456971,0.310692,0.521101,0.0249361,0.116773,0.582431,0.547397,0.560697,0.237201,0.305962,0.408916,0.780332,0.247031,0.00261927,0.209392,0.832537,0.644466,0.749692,0.852198,0.353581,0.844706,0.511764,0.0621842,0.252696,0.307596,0.153543,0.545896,0.480776,0.419769,0.85085,0.245465,0.83582,0.342894,0.370683,0.851293,0.249522,0.650497,0.0558108,0.280154,0.860593,0.11589,0.995258,0.77205,0.993597,0.699654,0.323583,0.158403,0.106614,0.638397,0.164256,0.892685,0.446058,0.870268,0.814007,0.859345,0.075673,0.0485889,0.59471,0.0729918,0.0462285,0.689493,0.529108,0.104873,0.913969,0.13235,0.756273,0.12826,0.632047,0.969396,0.702565,0.572843,0.495965,0.672244,0.333104,0.733378,0.900215,0.0736121,0.0283649,0.907623,0.929045,0.0941408,0.36097,0.750944,0.136263,0.569684,0.218201,0.0318736,0.662639,0.229386,0.985305,0.906246,0.979645,0.920623,0.678649,0.463771,0.56443,0.263853,0.606957,0.341082,0.31269,0.229414,0.575876,0.354907,0.763732,0.109028,0.524294,0.975261,0.302906,0.982487,0.00703162,0.730153,0.738545,0.989561,0.642343,0.298342,0.0912236,0.829611,0.376224,0.713271,0.344818,0.942687,0.668624,0.00518018,0.309189,0.638039,0.130654,0.125251,0.529071,0.500143,0.412847,0.0533537,0.576949,0.217885,0.423019,0.464075,0.0184816,0.528961,0.864643,0.677803,0.0909021,0.0455871,0.814349,0.364433,0.623591,0.145626,0.894436,0.448907,0.261191,0.573378,0.051636,0.817305,0.144405,0.279186,0.826554,0.241103,0.273821,0.775191,0.334405,0.756399,0.529219,0.255509,0.0817177,0.386465,0.20315,0.201353,0.142616,0.097598,0.218421,0.904272,0.366383,0.53099,0.362983,0.0856261,0.334974,0.732867,0.121824,0.445188,0.00691408,0.776193,0.990571,0.0627861,0.102332,0.39389,0.567244,0.939414,0.0714089,0.300855,0.909271,0.107696,0.969375,0.14828,0.498344,0.080809,0.0323452,0.501434,0.069045,0.803661,0.285715,0.0808802,0.787146,0.0506156,0.0972251,0.0463421,0.476545,0.0550498,0.0417145,0.0944563,0.921193,0.118614,0.363436,0.923094,0.940971,0.349841,0.260468,0.424809,0.346287,0.710619,0.271147,0.894612,0.568306,0.573656,0.339029,0.61962,0.922619,0.733665,0.384521,0.176817,0.572989,0.947909,0.500509,0.829466,0.437891,0.766933,0.810663,0.587378,0.0331174,0.716042,0.319558,0.967315,0.855214,0.821502,|0.0382291,0.163793,0.214131,0.633639,0.458453,0.947899,0.135743,0.610558,0.0221395,0.926525,0.288772,0.945738,0.944128,0.394681,0.269297,0.462804,0.0118986,0.581814,0.113323,0.79784,0.141129,0.801533,0.973741,0.014859,0.0033527,0.936552,0.967311,0.392937,0.499559,0.372754,0.25634,0.639605,0.591183,0.0574194,0.966903,0.234511,0.546725,0.249637,0.636937,0.698872,0.629415,0.153343,0.678901,0.393156,0.438048,0.640156,0.0344487,0.22593,0.569211,0.361719,0.853999,0.152583,0.507185,0.866892,0.398432,0.603091,0.41271,0.0519341,0.686039,0.851181,0.861529,0.414481,0.0765099,0.851299,0.759986,0.7929,0.0270079,0.0936294,0.702881,0.802037,0.356811,0.963193,0.353952,0.0926269,0.897235,0.380961,0.111312,0.735005,0.903373,0.954852,0.851873,0.713742,0.866465,0.0480286,0.799256,0.224393,0.439397,0.164161,0.0467598,0.700583,0.902615,0.58136,0.485361,0.0159006,0.807918,0.353399,0.240608,0.952215,0.0566109,0.284933,0.231017,0.441619,0.268877,0.128022,0.964599,0.919987,0.033913,0.481414,0.546727,0.614909,0.729871,0.583511,0.13943,0.374721,0.841044,0.933275,0.391102,0.286602,0.305149,0.76567,0.540431,0.0441085,0.314128,0.490364,0.640132,0.73686,0.82779,0.990982,0.884436,0.18983,0.10459,0.859826,0.440183,0.558456,0.835214,0.317492,0.821644,0.579739,0.646047,0.102699,0.939014,0.308239,0.206487,0.491787,0.943564,0.312295,0.76926,0.0622503,0.655481,0.619873,0.056821,0.415352,0.746434,0.063885,0.51196,0.823349,0.879592,0.159608,0.302959,0.595467,0.24419,0.514083,0.420736,0.657702,0.045135,0.125615,0.716408,0.846995,0.648843,0.419187,0.565675,0.19279,0.528268,0.438501,0.754581,0.687762,0.630956,0.593477,0.343645,0.809451,0.787865,0.693864,0.205602,0.965994,0.527581,0.970674,0.352404,0.909603,0.357106,0.0962008,0.85222,0.501418,0.0676927,0.918445,0.202141,0.714042,0.43442,0.304943,0.255122,0.0991089,0.923559,0.383708,0.536064,0.698807,0.618814,0.489564,0.503478,0.735747,0.605732,0.91347,0.825799,0.343374,0.0524408,0.377901,0.0188687,0.573788,0.876142,0.868135,0.84531,0.733082,0.192712,0.872842,0.138914,0.21943,0.926577,0.34553,0.747839,0.0797389,0.802498,0.824585,0.655222,0.589866,0.929382,0.081479,0.493969,0.138824,0.996888,0.13085,0.0828964,0.587495,0.647357,0.0627685,0.379465,0.470493,0.205635,0.804656,0.534313,0.342014,0.383019,0.487482,0.788454,0.770815,0.518008,0.696392,0.791648,0.40033,0.201857,0.250145,0.736273,0.284375,0.163321,0.774636,0.240373,0.353734,0.80006,0.276362,0.124766,0.673505,0.632491,0.15626,0.771919,0.194584,0.140189,0.784736,0.243571,0.977966,0.844875,0.235755,0.90306,0.348688,0.814295,0.573451,0.582962,0.739072,0.100249,0.869175,0.407435,0.582031,0.842717,0.162958,0.682001,0.666543,0.424985,0.215407,0.73094,0.0990285,0.768387,0.849049,0.412284,0.0241224,0.872789,0.474743,0.777421,0.291414,0.0519742,0.710605,0.00744671,0.0106478,0.555678,0.489563,0.481968,0.998247,0.720198,0.150354,0.281901,0.913728,0.293449,0.628608,0.0121366,0.868055,0.877622,0.830691,0.846214,0.361025,0.184765,0.690868,0.242199,0.917817,0.0761188,0.734446,0.495728,0.766063,0.818283,0.81171,0.467857,0.626127,0.131734,0.544436,0.0525466,0.787951,0.295141,0.386179,0.0389823,0.860063,0.0312713,0.575062,0.928989,0.466764,0.25195,0.850901,0.681283,0.221214,0.111482,0.912103,0.987501,0.199318,0.712509,0.4056,0.147034,0.937049,0.534286,0.475661,0.267686,0.208578,0.990758,0.538772,0.538873,0.431204,0.861747,0.973968,0.249673,0.213927,0.928135,0.445563,0.34449,0.54111,0.719026,0.796609,0.289783,0.501605,0.00381464,0.629016,0.0495734,0.441676,0.275967,0.271562,0.643857,0.0570261,0.412843,0.403638,0.607587,0.638466,0.904072,0.160422,0.690099,0.906263,0.493511,0.44423,0.0236681,0.715172,0.548518,0.790362,0.104053,0.637242,0.966391,0.425385,0.718334,0.78306,0.663337,0.691598,0.305693,0.650768,0.562844,0.19338,0.87488,0.203905,0.218516,0.614617,0.315632,0.044,0.83495,0.00519693,0.989934,0.384536,0.484169,0.341357,0.505862,0.412926,0.135787,0.475063,0.924558,0.199687,0.244691,0.588254,0.246991,0.26948,0.739948,0.373575,0.94793,0.485286,0.122978,0.439222,0.405529,0.512186,0.000666142,0.30237,0.182398,0.952086,0.759142,0.504697,0.413217,0.645418,0.930274,0.301984,0.952183,0.0603772,0.144096,0.588166,0.666659,0.25761,0.52454,0.529028,0.623201,0.999104,0.198243,0.672358,0.317423,0.797707,0.278695,0.960476,0.93664,0.669675,0.790733,0.735102,0.156752,0.57586,0.406727,0.451645,0.0888135,0.477113,0.715914,0.726244,0.282746,0.829937,0.861666,0.826257,0.0881163,0.412963,0.608383,0.554712,0.451626,0.0669802,0.60441,0.105117,0.833783,0.419317,0.664159,0.703512,0.806338,0.284983,0.657329,0.854238,0.806975,0.208716,0.195061,0.315431,0.389906,0.17866,0.922381,0.694338,0.215667,0.396316,0.135153,1.63913e-05,0.0724336,0.204203,0.737887,0.222195,0.43561,0.30695,0.395116,0.876419,0.066778,0.388548,0.225292,0.196784,0.712702,0.514147,0.0542544,0.445078,0.976432,0.132818,0.438368,0.66293,0.383221,0.634901,0.22292,0.435869,0.08955,0.171107,0.134411,0.946032,0.418966,0.137598,0.935288,0.635526,0.540099,0.0643618,0.245321,0.375669,0.892643,0.907114,0.770347,0.215833,0.44077,0.605712,0.952729,0.98355,0.32712,0.247797,0.24976,0.57372,0.264149,0.656129,0.490663,0.906827,0.47693,0.185138,0.342326,0.0281197,0.858684,0.276327,0.00599229,0.204842,0.810106,0.865984,0.15551,0.178462,0.958833,0.603968,0.4728,0.783719,0.574943,0.177409,0.729677,0.245886,0.283095,0.749979,0.72979,0.767018,0.946345,0.507714,0.76594,0.952915,0.161468,0.463336,0.826789,0.0463077,0.00439054,0.221396,0.435075,0.0979652,0.214301,0.846959,0.0209107,0.941984,0.892912,0.796065,0.180679,0.257103,0.10847,0.970462,0.794139,0.212394,0.516052,0.710104,0.556185,0.385261,0.62843,0.574346,0.915665,0.0682068,0.217915,0.841403,0.847769,0.892365,0.844685,0.353628,0.289626,0.484828,0.908604,0.295851,0.974571,0.353144,0.345818,0.400501,0.957204,0.551658,0.515921,0.921614,0.872907,0.483439,0.0190849,0.768298,0.339923,0.798114,0.578934,0.951231,0.892748,0.248659,0.388841,0.605864,0.639602,0.41502,0.790656,0.559178,0.269113,0.507774,0.94107,0.377445,0.683844,0.658153,0.293024,0.603947,0.64753,0.262927,0.216008,0.186811,0.117664,0.359083,0.465761,0.49973,0.0573909,0.69258,0.671054,0.152961,0.49401,0.741698,0.934626,0.324733,0.0289938,0.0160174,0.879849,0.844258,0.930842,0.887288,0.834155,0.117355,0.369646,0.953,0.432107,0.240514,0.231808,0.446298,0.229209,0.580121,0.943931,0.440922,0.811917,0.0122463,0.968386,0.798934,0.0607399,0.534681,0.739667,0.252614,0.866451,0.944714,0.665322,0.316408,0.298746,0.725009,0.682266,0.848644,0.817568,0.62479,0.70987,0.100071,0.985359,0.431693,0.948976,0.619145,0.398019,0.823602,0.580836,0.921539,0.913455,0.182157,0.151904,0.0154935,0.412087,0.798367,0.0829208,0.556941,0.44624,0.0583656,0.602629,0.350201,0.862246,0.338443,0.925482,0.383236,0.882633,0.310485,0.0254111,0.786394,0.476397,0.608801,0.937444,0.818546,0.180881,0.632779,0.332069,0.508274,0.686515,0.0175854,0.171009,0.583993,0.445465,0.399308,0.45883,0.689141,0.109888,0.571049,0.823446,0.464869,0.688141,0.851694,0.667283,0.0367888,0.151106,0.882304,0.687688,0.556718,0.474646,0.727143,0.303045,0.0517129,0.630508,0.632911,0.650577,0.708073,0.774352,0.413158,0.351479,0.841605,0.879092,0.368703,0.330439,0.481659,0.321688,0.491145,0.228507,0.377311,0.0211074,0.518688,0.44081,0.290889,0.755906,0.0822111,0.270867,0.647395,0.469394,0.261493,0.734748,0.67503,0.177077,0.752217,0.824271,0.719472,0.398854,0.890368,0.193035,0.951576,0.236793,0.428342,0.274525,0.840556,0.416662,0.738232,0.893818,0.494907,0.322506,0.142689,0.640277,0.383783,0.71582,0.228623,0.141013,0.432581,0.474363,0.4633,0.184199,0.741773,0.395878,0.191183,0.839842,0.0670516,0.699591,0.356514,0.755803,0.926614,0.977079,0.0578067,0.456233,0.404279,0.643673,0.328509,0.317452,0.772388,0.800965,0.748269,0.690699,0.11828,0.560428,0.375964,0.631229,0.468598,0.212764,0.19889,0.604821,0.597109,0.546167,0.547882,0.726589,0.132328,0.303566,0.362415,0.499766,0.626441,0.0520985,0.486349,0.765398,0.780725,0.698149,0.505458,0.233677,0.393971,0.694143,0.831601,0.26738,0.0422546,0.0438377,0.460812,0.406486,0.418174,0.00524467,0.646341,0.711922,0.20104,0.866934,0.155461,0.416638,0.714835,0.0133583,0.193169,0.928143,0.896706,0.447176,0.889018,0.366419,0.552725,0.183261,0.710886,0.16421,0.964439,0.32823,0.117546,0.691006,0.341903,0.00369275,0.72744,0.0503731,0.254417,0.697985,0.143619,0.371937,0.36605,0.580385,0.640947,0.109142,0.395009,0.843986,0.980973,0.431188,0.312689,0.401041,0.312322,0.0180628,0.476533,0.0230687,0.549079,0.755017,0.103288,0.669956,0.653105,0.751882,0.108913,0.76019,0.490438,0.428479,0.051888,0.277564,0.237213,0.705177,0.565749,0.539227,0.593153,0.523696,0.838257,0.266392,0.722262,0.876353,0.0731942,0.286436,0.56378,0.545176,0.525042,0.152226,0.608473,0.73709,0.558726,0.296657,0.279869,0.347848,0.802711,0.604998,0.233719,0.677264,0.367614,0.79661,0.819445,0.454868,0.793029,0.101472,0.192915,0.492058,0.0246867,0.80069,0.166431,0.875567,0.809176,0.151716,0.957521,0.840698,0.55742,0.283419,0.947913,0.127848,0.59863,0.152198,0.564415,0.618224,0.184964,0.192481,0.536264,0.51426,0.57242,0.348578,0.432303,|0.450925,0.124858,0.1484,0.245045,0.357592,0.237997,0.0829744,0.363837,0.0118573,0.671259,0.343728,0.395027,0.25566,0.732982,0.412294,0.129032,0.186452,0.693258,0.345631,0.520811,0.0462998,0.863306,0.447463,0.0868555,0.915335,0.604522,0.135351,0.314068,0.779567,0.255595,0.0986942,0.380792,0.831569,0.461701,0.292311,0.884026,0.779579,0.874921,0.31461,0.0761082,0.172554,0.718301,0.183963,0.0321161,0.297619,0.869433,0.696218,0.394545,0.0409459,0.650217,0.405576,0.853531,0.870561,0.769916,0.0683982,0.838213,0.481425,0.427984,0.928133,0.563818,0.109279,0.492106,0.409477,0.437672,0.209685,0.514643,0.840434,0.154022,0.404393,0.904535,0.194876,0.734906,0.0903952,0.611752,0.90747,0.54518,0.332151,0.575556,0.17,0.976175,0.952732,0.050906,0.462299,0.0113688,0.834413,0.947384,0.232302,0.133168,0.0593033,0.737578,0.803715,0.0723129,0.437546,0.312766,0.364623,0.54951,0.470692,0.147692,0.680727,0.751,0.0131309,0.863994,0.26318,0.340983,0.920831,0.0765523,0.000611365,0.689779,0.915186,0.0462428,0.870474,0.369496,0.388146,0.785127,0.445575,0.722681,0.768925,0.00594944,0.60757,0.46244,0.595082,0.396789,0.593689,0.32155,0.412371,0.630587,0.0347339,0.9775,0.329971,0.6834,0.818493,0.848834,0.214627,0.707075,0.329655,0.0350267,0.414518,0.755949,0.144569,0.883268,0.349283,0.149431,0.556121,0.826512,0.456371,0.487162,0.946705,0.433943,0.722096,0.736882,0.633692,0.194275,0.292259,0.388728,0.86456,0.0290994,0.132971,0.597824,0.801242,0.867978,0.861565,0.557672,0.431489,0.158907,0.31711,0.84939,0.0959786,0.565568,0.140749,0.883409,0.377631,0.141319,0.755757,0.555335,0.779144,0.671246,0.667346,0.00180364,0.652959,0.93423,0.554153,0.84019,0.783921,0.274172,0.79473,0.0654348,0.716729,0.0173594,0.702594,0.371945,0.407775,0.833967,0.653818,0.139929,0.141692,0.2738,0.0859128,0.376333,0.546107,0.090471,0.614658,0.720188,0.691735,0.595708,0.0419889,0.495266,0.256478,0.182455,0.376971,0.0675269,0.3123,0.113018,0.691348,0.107488,0.143852,0.961064,0.916407,0.594104,0.301039,0.667045,0.944523,0.390255,0.158464,0.832479,0.512679,0.291342,0.890113,0.585583,0.973247,0.0808276,0.832884,0.418539,0.730208,0.827124,0.709864,0.773609,0.0423645,0.0659661,0.394632,0.182678,0.918484,0.89219,0.106723,0.96306,0.762685,0.975383,0.630618,0.345015,0.783449,0.253315,0.543312,0.742401,0.513422,0.0220775,0.962892,0.859583,0.355558,0.784749,0.445637,0.784741,0.73723,0.0759223,0.439037,0.420307,0.956361,0.53997,0.371304,0.526098,0.945183,0.80787,0.0238762,0.279136,0.584463,0.363126,0.825486,0.617733,0.942565,0.329115,0.779573,0.764298,0.386511,0.643294,0.646839,0.396277,0.667083,0.586055,0.0586069,0.210431,0.615431,0.670063,0.843262,0.818376,0.117383,0.591747,0.244636,0.115339,0.05136,0.817139,0.838313,0.781118,0.123686,0.880903,0.223107,0.938617,0.539072,0.109631,0.197921,0.518098,0.898254,0.198601,0.315968,0.0631663,0.0167612,0.494483,0.92687,0.97927,0.733308,0.479065,0.198057,0.719499,0.0494933,0.480179,0.750069,0.696344,0.0588624,0.615475,0.358288,0.121036,0.907856,0.672598,0.443188,0.981603,0.676308,0.479171,0.526884,0.149498,0.0889708,0.669719,0.878554,0.061562,0.759947,0.163665,0.11937,0.702755,0.824673,0.988835,0.637715,0.196094,0.629272,0.153495,0.466694,0.510825,0.859507,0.815467,0.0537958,0.667282,0.660265,0.0921811,0.166035,0.543496,0.219419,0.0552367,0.143745,0.726506,0.112352,0.807302,0.0545793,0.850451,0.415411,0.886201,0.67073,0.897037,0.23782,0.618746,0.539007,0.0971357,0.488273,0.0194184,0.384641,0.00117582,0.533249,0.759524,0.0878982,0.708284,0.499538,0.976733,0.477745,0.187702,0.895984,0.304032,0.858529,0.300422,0.641468,0.557665,0.450901,0.332351,0.489025,0.848903,0.715664,0.532708,0.180064,0.0395617,0.489427,0.427426,0.456003,0.611636,0.546789,0.420094,0.0859429,0.17377,0.159167,0.769781,0.942922,0.82764,0.560619,0.961449,0.412354,0.0430022,0.11914,0.319287,0.257095,0.475914,0.234804,0.756035,0.861107,0.977136,0.453576,0.738691,0.924171,0.358065,0.560513,0.0686863,0.0466297,0.543346,0.766705,0.619489,0.494565,0.363822,0.0183877,0.165488,0.112384,0.796477,0.859365,0.253551,0.969936,0.257057,0.865807,0.473499,0.921905,0.745784,0.578861,0.967411,0.410579,0.35064,0.216344,0.894822,0.688497,0.883881,0.508105,0.0593432,0.609198,0.477984,0.855834,0.880826,0.295862,0.303155,0.0247586,0.663167,0.24663,0.6827,0.701139,0.939675,0.517632,0.794173,0.401093,0.550721,0.477158,0.850713,0.192878,0.775807,0.92644,0.972941,0.285954,0.0322603,0.0353216,0.22689,0.188194,0.225831,0.799013,0.536572,0.910789,0.205953,0.810644,0.0657408,0.761186,0.661272,0.463359,0.380239,0.696435,0.0467716,0.48872,0.963498,0.503576,0.394637,0.90393,0.916792,0.432799,0.684528,0.159554,0.187228,0.362457,0.0804726,0.76986,0.176939,0.905182,0.179083,0.426241,0.508061,0.850326,0.196612,0.844125,0.576354,0.283867,0.912846,0.557391,0.513585,0.10216,0.0662738,0.115281,0.0103989,0.383706,0.743897,0.0146657,0.566758,0.0365013,0.629947,0.247111,0.387999,0.0891283,0.58931,0.391639,0.459134,0.200147,0.794912,0.653515,0.0103279,0.510242,0.393739,0.582738,0.0886944,0.880299,0.158477,0.202059,0.335187,0.250002,0.769148,0.296905,0.0311872,0.17689,0.548804,0.555764,0.132645,0.953875,0.77441,0.905082,0.254147,0.106794,0.996343,0.220294,0.590863,0.396213,0.993517,0.366333,0.615407,0.80602,0.260844,0.967776,0.918544,0.384169,0.639458,0.679248,0.203573,0.790626,0.616106,0.883038,0.427989,0.318647,0.449759,0.97579,0.496773,0.539189,0.376811,0.161296,0.541667,0.955558,0.872032,0.948733,0.439081,0.805052,0.333554,0.231577,0.493372,0.19657,0.480003,0.727024,0.209391,0.949354,0.834924,0.300537,0.957193,0.592175,0.681593,0.65245,0.562365,0.842091,0.232493,0.62536,0.367825,0.659478,0.0285237,0.250529,0.464446,0.271498,0.549185,0.298285,0.0312239,0.0153522,0.915011,0.644814,0.0640114,0.27844,0.758831,0.71448,0.521382,0.800931,0.512276,0.504038,0.970785,0.83173,0.423206,0.291235,0.911929,0.624786,0.333416,0.796588,0.605963,0.733493,0.173092,0.913991,0.44677,0.813969,0.254964,0.18874,0.957399,0.434443,0.20685,0.357367,0.309229,0.789923,0.299073,0.0033139,0.938299,0.620022,0.220391,0.703019,0.16736,0.0236633,0.701164,0.176788,0.378939,0.408862,0.923537,0.811726,0.582391,0.134915,0.845265,0.705445,0.866571,0.556246,0.558833,0.298213,0.129969,0.679349,0.0731153,0.927451,0.177118,0.0532661,0.901289,0.918136,0.631395,0.906064,0.291821,0.61505,0.901374,0.674139,0.459968,0.234706,0.202016,0.985257,0.885958,0.610645,0.212402,0.919344,0.106909,0.225497,0.772403,0.39851,0.0131684,0.823091,0.333523,0.519434,0.356801,0.648763,0.20793,0.029395,0.958588,0.544647,0.156944,0.314116,0.306593,0.769645,0.989267,0.542303,0.45148,0.290112,0.468091,0.336866,0.715653,0.0212596,0.175516,0.59522,0.795898,0.277224,0.431451,0.589224,0.431239,0.760469,0.767531,0.521202,0.0389935,0.443099,0.74988,0.043619,0.774923,0.48308,0.361152,0.375741,0.821411,0.744043,0.970744,0.158354,0.794605,0.677323,0.955418,0.0278141,0.506661,0.453398,0.420919,0.216929,0.254263,0.51243,0.216928,0.574927,0.794115,0.176775,0.774557,0.713905,0.173488,0.814441,0.343178,0.809103,0.384524,0.206293,0.988615,0.488888,0.899965,0.890109,0.601579,0.405608,0.807975,0.0589358,0.300615,0.0339031,0.121158,0.751189,0.960529,0.838444,0.652892,0.390185,0.344885,0.151622,0.886615,0.727668,0.189903,0.447036,0.126735,0.685124,0.501084,0.32753,0.587267,0.228967,0.812173,0.221775,0.777234,0.996295,0.570613,0.26668,0.0413452,0.250815,0.245199,0.876747,0.7764,0.271281,0.974144,0.673735,0.677314,0.21711,0.0574548,0.619085,0.0600878,0.984644,0.728401,0.0171521,0.821914,0.239601,0.169804,0.309451,0.319194,0.670106,0.820584,0.999995,0.811636,0.875115,0.139024,0.48194,0.202748,0.971864,0.792693,0.113062,0.486257,0.085352,0.814569,0.00244004,0.9361,0.976444,0.635777,0.37692,0.82722,0.206781,0.502561,0.0423847,0.32762,0.787912,0.86503,0.990916,0.551499,0.562743,0.532191,0.223308,0.215055,0.577552,0.477855,0.173594,0.184976,0.923609,0.504156,0.327692,0.401098,0.81794,0.410269,0.903762,0.522357,0.741265,0.444304,0.997275,0.967942,0.155216,0.379814,0.491988,0.248905,0.877154,0.758853,0.505192,0.242966,0.294072,0.0312158,0.330952,0.0228074,0.999844,0.211372,0.211774,0.24552,0.25759,0.666621,0.0207146,0.211523,0.693095,0.112601,0.317287,0.426043,0.0652214,0.223475,0.178622,0.0182893,0.0699793,0.576107,0.422298,0.065809,0.573812,0.283484,0.919892,0.521006,0.101376,0.543078,0.764665,0.677111,0.765784,0.34742,0.250464,0.958946,0.993513,0.294112,0.395266,0.969759,0.449996,0.659394,0.558634,0.323116,0.0503457,0.85278,0.658456,0.293679,0.968879,0.302922,0.396925,0.633745,0.166354,0.154916,0.530849,0.4181,0.999089,0.105463,0.975849,0.710767,0.00325096,0.189576,0.0490586,0.196394,0.485398,0.0318975,0.429923,0.820189,0.381011,0.724661,0.891562,0.44232,0.934399,0.238693,0.653662,0.661695,0.0113633,0.997239,0.770022,0.438702,0.752058,0.719172,0.0814286,0.712988,0.534073,0.0457502,0.500686,0.0179523,0.198429,0.108638,0.937747,0.222046,0.536026,0.0903943,0.431271,0.907596,0.136559,0.690457,0.566225,0.737616,0.287159,0.496237,0.507951,0.995593,0.529135,0.999939,0.863777,0.384164,0.126309,0.803399,0.379972,0.689864,0.829812,0.624768,0.894845,0.200176,|0.198779,0.475275,0.41884,0.836019,0.736149,0.329021,0.0912381,0.115548,0.470714,0.447657,0.121156,0.73434,0.712122,0.676994,0.455268,0.334977,0.708916,0.130956,0.573452,0.304613,0.171868,0.40117,0.871276,0.659365,0.496039,0.827796,0.71289,0.336403,0.621762,0.37895,0.943812,0.681626,0.344369,0.783786,0.229008,0.642534,0.995133,0.0447111,0.485661,0.486235,0.282987,0.76595,0.518366,0.546966,0.692037,0.220776,0.316747,0.941743,0.515366,0.256077,0.362322,0.762101,0.643941,0.867456,0.488241,0.324068,0.505793,0.40666,0.76299,0.284155,0.512869,0.622497,0.569413,0.971211,0.337696,0.203488,0.648981,0.578372,0.314413,0.411371,0.245764,0.661147,0.0748098,0.272156,0.210076,0.0960426,0.889231,0.538356,0.214879,0.491022,0.771856,0.0792869,0.36208,0.696668,0.906279,0.466137,0.802642,0.00190794,0.938858,0.0595371,0.643192,0.701112,0.147699,0.925057,0.833628,0.587782,0.230984,0.423423,0.0959074,0.0687941,0.833569,0.601362,0.792237,0.893268,0.452393,0.641568,0.494982,0.546502,0.510232,0.450257,0.0831144,0.547093,0.0256211,0.493066,0.147684,0.626217,0.787741,0.432514,0.843433,0.519561,0.888452,0.36853,0.349788,0.300609,0.746094,0.166961,0.402946,0.0862539,0.256237,0.851293,0.944014,0.603075,0.372907,0.889969,0.326706,0.583777,0.734418,0.670946,0.180961,0.210191,0.765473,0.715628,0.00145429,0.228315,0.0861587,0.945949,0.275675,0.117554,0.704571,0.209857,0.500126,0.310703,0.441422,0.679965,0.213493,0.786801,0.0687603,0.630343,0.709449,0.404547,0.714927,0.833706,0.454384,0.768124,0.831904,0.338638,0.621257,0.198694,0.474487,0.10138,0.488784,0.334442,0.692747,0.653048,0.422948,0.663359,0.157731,0.857112,0.521249,0.688724,0.571608,0.952139,0.44658,0.733885,0.268342,0.864429,0.462235,0.909261,0.784148,0.759891,0.481242,0.272438,0.587063,0.348266,0.757011,0.0712429,0.712669,0.835555,0.507298,0.756171,0.0801906,0.614593,0.601928,0.709445,0.62842,0.16033,0.453627,0.687215,0.323566,0.434468,0.424045,0.685749,0.419,0.131551,0.151767,0.528836,0.861664,0.410419,0.937355,0.921175,0.188143,0.850627,0.389881,0.22305,0.909374,0.431635,0.0374535,0.462168,0.593225,0.208471,0.230938,0.860227,0.938595,0.246221,0.812994,0.721383,0.360261,0.680631,0.60214,0.859088,0.175985,0.908565,0.0336162,0.71512,0.173544,0.582494,0.266861,0.00596559,0.751169,0.845067,0.0956346,0.0492104,0.731791,0.178785,0.788806,0.264944,0.855536,0.603218,0.781873,0.252763,0.293271,0.670502,0.146403,0.866953,0.431119,0.255209,0.517207,0.0151953,0.616098,0.108748,0.0174636,0.927305,0.995509,0.987469,0.521874,0.294059,0.164947,0.765071,0.834777,0.7081,0.183976,0.836381,0.535891,0.0457378,0.18226,0.446742,0.106231,0.732504,0.142639,0.701736,0.104836,0.278195,0.623152,0.933305,0.201411,0.789752,0.227085,0.23123,0.970688,0.571816,0.223575,0.265992,0.977781,0.987385,0.540498,0.124935,0.226172,0.625702,0.776467,0.0550261,0.175313,0.548621,0.582859,0.192103,0.115926,0.657869,0.249381,0.475964,0.576918,0.376486,0.299441,0.683667,0.293101,0.810225,0.149419,0.220215,0.970315,0.698341,0.150021,0.471815,0.709663,0.744057,0.168777,0.772848,0.080419,0.209721,0.744788,0.800617,0.217355,0.270704,0.595716,0.291407,0.696605,0.666357,0.929035,0.112488,0.0993997,0.919797,0.41184,0.0499944,0.0875703,0.772119,0.376886,0.298073,0.881958,0.598235,0.300725,0.368145,0.416309,0.503046,0.821836,0.54233,0.492279,0.851194,0.864536,0.294626,0.768259,0.443508,0.205735,0.213157,0.20288,0.531056,0.198234,0.669394,0.762377,0.632057,0.515298,0.152402,0.161058,0.402974,0.230479,0.192998,0.287396,0.513967,0.0569885,0.267117,0.275399,0.0528648,0.355839,0.547586,0.463764,0.504287,0.386867,0.276868,0.324433,0.814918,0.33154,0.803424,0.83541,0.00329727,0.371224,0.944766,0.183307,0.0672056,0.732571,0.714339,0.0494009,0.746621,0.625947,0.380513,0.208335,0.341142,0.363267,0.231198,0.37601,0.62318,0.18227,0.728517,0.357609,0.792331,0.999779,0.234106,0.577458,0.794653,0.0472125,0.929004,0.418564,0.510049,0.207274,0.897103,0.582422,0.559811,0.386071,0.70544,0.0905917,0.326485,0.397848,0.734237,0.0991896,0.807342,0.64798,0.824979,0.719742,0.566892,0.917922,0.123958,0.491059,0.184678,0.918004,0.127705,0.164558,0.313364,0.441042,0.32106,0.12309,0.291388,0.631153,0.973896,0.821585,0.395543,0.239681,0.623891,0.897542,0.473788,0.170242,0.983724,0.886004,0.490556,0.343132,0.219502,0.454429,0.957848,0.545895,0.521382,0.744478,0.16555,0.377911,0.118366,0.47663,0.192153,0.83329,0.985355,0.549333,0.167834,0.89851,0.933872,0.288827,0.937283,0.183021,0.420461,0.996617,0.697515,0.729634,0.909579,0.740339,0.690418,0.272137,0.933637,0.67114,0.333554,0.0644402,0.583444,0.58684,0.140579,0.253942,0.51098,0.46818,0.593243,0.170656,0.15213,0.260239,0.472044,0.213918,0.306833,0.155684,0.0510117,0.154367,0.661711,0.318729,0.588327,0.0967649,0.265126,0.403154,0.388966,0.790036,0.490349,0.967197,0.526807,0.543406,0.223963,0.350156,0.100232,0.439362,0.791104,0.715159,0.488159,0.527535,0.0248609,0.15677,0.554001,0.848822,0.546725,0.192624,0.798902,0.19804,0.0699847,0.706748,0.872817,0.835092,0.477839,0.457383,0.210549,0.687234,0.149929,0.721172,0.525233,0.845849,0.265655,0.331423,0.232964,0.333787,0.501689,0.481855,0.85316,0.0922701,0.584179,0.115762,0.784085,0.813908,0.886529,0.561495,0.507968,0.935356,0.775148,0.735736,0.98768,0.400363,0.211282,0.777,0.00279599,0.847174,0.656201,0.292987,0.29779,0.924505,0.369736,0.677722,0.270171,0.431635,0.252638,0.650931,0.415097,0.501375,0.916729,0.92622,0.539128,0.760865,0.684852,0.0321269,0.88775,0.906074,0.410014,0.406213,0.861436,0.331183,0.866323,0.030247,0.680457,0.881982,0.749306,0.749537,0.375664,0.84947,0.445448,0.38456,0.64583,0.946327,0.199874,0.539158,0.331823,0.100457,0.0890848,0.776945,0.322206,0.266624,0.762723,0.87766,0.915535,0.171915,0.828632,0.894481,0.720558,0.874193,0.864894,0.832539,0.810538,0.618299,0.892182,0.515886,0.336538,0.650504,0.203901,0.513061,0.668417,0.546933,0.238075,0.780037,0.519261,0.194038,0.621703,0.0599113,0.0362117,0.432193,0.824529,0.0189396,0.959879,0.242545,0.141932,0.872038,0.836652,0.000565052,0.596074,0.733607,0.502566,0.568186,0.129348,0.0539824,0.394451,0.605077,0.902833,0.520846,0.126123,0.663654,0.963392,0.485318,0.102808,0.919818,0.60926,0.633741,0.625427,0.904902,0.166263,0.804752,0.0192468,0.368558,0.177579,0.621577,0.433133,0.687665,0.66236,0.673404,0.785969,0.23459,0.732715,0.703692,0.311936,0.0752281,0.383645,0.562618,0.898475,0.0649567,0.156128,0.723586,0.0869795,0.423154,0.525661,0.23606,0.677811,0.444763,0.424267,0.283717,0.890488,0.495885,0.109509,0.594641,0.447032,0.725529,0.545701,0.704857,0.809388,0.763225,0.462365,0.361036,0.643128,0.333696,0.0746348,0.350993,0.869646,0.38332,0.805816,0.971534,0.866494,0.596505,0.861565,0.871742,0.419766,0.184178,0.825097,0.58493,0.713269,0.333485,0.0455613,0.385832,0.386125,0.674082,0.35681,0.0513371,0.899424,0.00212651,0.669551,0.294103,0.149596,0.041007,0.279792,0.46376,0.804336,0.174318,0.519702,0.214723,0.98366,0.124887,0.524231,0.00570416,0.177244,0.281111,0.887359,0.579189,0.618277,0.291191,0.759242,0.635206,0.600803,0.128216,0.493889,0.413678,0.0898423,0.182811,0.719307,0.332881,0.783494,0.395709,0.582719,0.783516,0.203745,0.556918,0.392193,0.428016,0.30818,0.351939,0.372553,0.189802,0.499352,0.456569,0.74067,0.070834,0.444087,0.148297,0.61732,0.112192,0.620049,0.190386,0.941062,0.564927,0.992564,0.408257,0.689025,0.298014,0.292837,0.320314,0.648667,0.839365,0.0910752,0.584686,0.489092,0.540667,0.0377435,0.610577,0.323257,0.858729,0.11456,0.569571,0.557469,0.804401,0.0444466,0.20693,0.411994,0.737652,0.0300503,0.817021,0.198272,0.157421,0.737042,0.841004,0.184501,0.81613,0.23913,0.860179,0.222086,0.882276,0.232652,0.219991,0.0996156,0.978295,0.189189,0.705018,0.910144,0.906761,0.312923,0.893148,0.589121,0.121169,0.658559,0.207749,0.00666684,0.433743,0.64383,0.322183,0.825945,0.270786,0.357633,0.309966,0.899469,0.743521,0.0950938,0.0610069,0.639161,0.692902,0.790527,0.273538,0.0418605,0.855645,0.394743,0.166455,0.378249,0.194493,0.778557,0.850201,0.0296606,0.398561,0.0168338,0.180061,0.761339,0.669546,0.368688,0.193509,0.962278,0.339919,0.796249,0.915214,0.627459,0.305851,0.607688,0.447229,0.989777,0.68652,0.361145,0.908711,0.655032,0.552914,0.837412,0.476604,0.237597,0.341748,0.722466,0.36127,0.351603,0.359325,0.831398,0.39343,0.322156,0.0921698,0.205438,0.281487,0.89687,0.903462,0.593791,0.0627587,0.500868,0.45479,0.8948,0.133285,0.770335,0.998462,0.591367,0.684266,0.122184,0.988603,0.198012,0.131719,0.780811,0.431629,0.0947674,0.967302,0.266931,0.184232,0.422813,0.393394,0.299536,0.171935,0.472677,0.418889,0.0916335,0.974473,0.140161,0.939233,0.925435,0.147938,0.300914,0.656994,0.401111,0.0507163,0.568609,0.473753,0.877329,0.477222,0.0348243,0.0983314,0.191984,0.649451,0.666482,0.908845,0.964518,0.854761,0.257012,0.393086,0.857325,0.141562,0.385068,0.546446,0.439986,0.351868,0.298919,0.764332,0.509837,0.797521,0.150811,0.516782,0.762243,0.491662,0.796899,0.545282,0.451512,0.307921,0.470317,0.934377,0.879746,0.0970286,0.794758,0.0195344,0.0158938,0.784789,0.991598,0.0951113,0.530299,0.0231434,0.314178,0.00548631,0.261013,0.345588,0.860441,|0.713898,0.545347,0.570373,0.423054,0.86201,0.804557,0.964888,0.50993,0.698405,0.189684,0.522041,0.819527,0.0825229,0.459909,0.632053,0.943262,0.322891,0.613972,0.0531383,0.976667,0.25921,0.811043,0.167218,0.853602,0.595714,0.710113,0.920892,0.962616,0.351013,0.93373,0.375515,0.0972164,0.737404,0.662865,0.398204,0.965464,0.0796916,0.144128,0.059541,0.0565843,0.068667,0.811582,0.383078,0.82702,0.775776,0.780385,0.695951,0.989245,0.357597,0.909492,0.534824,0.503713,0.373471,0.551177,0.655576,0.422315,0.958515,0.623853,0.238881,0.280583,0.350859,0.00185192,0.91579,0.383548,0.6905,0.879831,0.703238,0.0307836,0.799721,0.518605,0.883826,0.336509,0.500143,0.682499,0.644669,0.932588,0.901936,0.89247,0.584962,0.0977716,0.395466,0.576741,0.973378,0.00207376,0.486993,0.820373,0.493653,0.0323436,0.905436,0.427734,0.838124,0.175576,0.215348,0.625729,0.0302238,0.965814,0.441129,0.577463,0.821289,0.898397,0.342236,0.377555,0.419931,0.614038,0.745815,0.648379,0.746344,0.481407,0.990878,0.999348,0.730895,0.850987,0.54557,0.607449,0.196183,0.181204,0.264788,0.54859,0.960347,0.395374,0.801675,0.261731,0.112275,0.926988,0.83764,0.571222,0.196463,0.12286,0.275499,0.264132,0.348001,0.547953,0.809338,0.467475,0.95911,0.569904,0.702566,0.564619,0.430972,0.251256,0.517029,0.427057,0.541408,0.398183,0.916612,0.00711709,0.137096,0.392556,0.960826,0.459054,0.73385,0.171533,0.297001,0.413051,0.584248,0.954073,0.796176,0.402592,0.963405,0.738419,0.678779,0.479098,0.560773,0.834009,0.373,0.751623,0.664459,0.620358,0.899797,0.606068,0.768157,0.623756,0.306861,0.72345,0.264011,0.177307,0.495802,0.0486993,0.497783,0.909934,0.815657,0.860314,0.972945,0.232046,0.836638,0.839288,0.801293,0.0900838,0.46194,0.0918331,0.392323,0.0757691,0.744085,0.0797408,0.49498,0.643712,0.349594,0.0829015,0.749709,0.324829,0.530026,0.845316,0.684958,0.479534,0.315481,0.977786,0.0637226,0.957823,0.809231,0.78466,0.980699,0.552555,0.745942,0.224189,0.327045,0.366304,0.498845,0.0806427,0.242849,0.434421,0.888925,0.0114619,0.571218,0.95917,0.343205,0.397143,0.829842,0.536387,0.695935,0.68291,0.594184,0.363861,0.631191,0.123607,0.616674,0.57014,0.646814,0.781769,0.451772,0.15216,0.817416,0.631894,0.836543,0.565209,0.559201,0.362774,0.150512,0.191108,0.0909362,0.13491,0.785688,0.652305,0.900726,0.61379,0.391578,0.586277,0.397139,0.253551,0.924614,0.47027,0.635431,0.589509,0.636809,0.70874,0.0412397,0.405669,0.924362,0.226802,0.0807645,0.324575,0.523778,0.46654,0.513856,0.0156422,0.602833,0.957065,0.78597,0.84108,0.831295,0.843967,0.190627,0.399722,0.414618,0.0755672,0.523147,0.570394,0.816167,0.455034,0.0408422,0.87411,0.291132,0.0597709,0.632549,0.262508,0.074065,0.763466,0.0423999,0.473896,0.368538,0.553372,0.889739,0.212706,0.367764,0.82174,0.755352,0.315672,0.910322,0.885931,0.819673,0.892831,0.0709953,0.347063,0.268275,0.897423,0.246423,0.709384,0.417997,0.818464,0.0867411,0.0707548,0.429336,0.950833,0.830734,0.559292,0.10365,0.610148,0.862286,0.0522576,0.0654569,0.201672,0.263147,0.204493,0.370419,0.426919,0.762057,0.384988,0.998286,0.74742,0.716258,0.742815,0.255838,0.953819,0.940562,0.104275,0.452892,0.956258,0.231423,0.599037,0.837544,0.766514,0.909619,0.654741,0.719482,0.389918,0.083291,0.09588,0.0919887,0.221877,0.790833,0.231222,0.296315,0.703701,0.561258,0.5772,0.75296,0.775131,0.392697,0.0793005,0.159586,0.551427,0.449954,0.0667026,0.572118,0.581122,0.376182,0.498752,0.282834,0.400155,0.98215,0.876592,0.00877208,0.833821,0.844596,0.0302277,0.868681,0.98359,0.213586,0.993997,0.272221,0.7865,0.287889,0.559394,0.628998,0.196681,0.787283,0.939433,0.0364751,0.0683649,0.810544,0.481375,0.566297,0.957491,0.762573,0.178106,0.692524,0.417417,0.47704,0.596618,0.901674,0.936419,0.760675,0.481172,0.735442,0.0129045,0.11695,0.469421,0.949168,0.291031,0.172146,0.895449,0.119636,0.559842,0.218453,0.116989,0.833746,0.0998976,0.563688,0.68916,0.735417,0.332804,0.0080958,0.0392705,0.356228,0.271448,0.709271,0.2279,0.326322,0.244684,0.62803,0.448737,0.325913,0.633289,0.409254,0.439191,0.0170428,0.564165,0.532357,0.373496,0.547043,0.0669197,0.921987,0.635804,0.680261,0.178404,0.371669,0.401559,0.0444649,0.792535,0.445671,0.671573,0.856712,0.3454,0.102695,0.325577,0.317747,0.834333,0.0902804,0.353964,0.968956,0.921379,0.301853,0.731474,0.785786,0.120827,0.680775,0.257477,0.556829,0.815579,0.477843,0.592609,0.223861,0.123502,0.472446,0.302422,0.223175,0.468287,0.215466,0.668254,0.508455,0.115776,0.706702,0.275347,0.219266,0.63912,0.787534,0.453987,0.41725,0.591042,0.703183,0.884453,0.536157,0.254717,0.152496,0.352145,0.235166,0.350881,0.803357,0.263169,0.957991,0.944368,0.280855,0.129732,0.74507,0.164779,0.913346,0.0470957,0.78221,0.142528,0.336738,0.838045,0.339797,0.50443,0.376828,0.637901,0.103992,0.333014,0.886882,0.584595,0.720308,0.903259,0.254245,0.443582,0.993029,0.454875,0.484638,0.4728,0.242408,0.784042,0.42579,0.900056,0.0203148,0.376014,0.0886485,0.162171,0.362903,0.791445,0.006477,0.10113,0.0109267,0.615412,0.551733,0.581619,0.297177,0.209091,0.135789,0.731734,0.974859,0.92467,0.250597,0.844853,0.829919,0.0496593,0.145277,0.817226,0.587678,0.320519,0.34653,0.689232,0.246014,0.376751,0.728354,0.0466703,0.326392,0.926527,0.393382,0.0470759,0.917052,0.249187,0.412886,0.682706,0.963088,0.322996,0.464924,0.71864,0.306462,0.30615,0.548817,0.0265965,0.716861,0.178384,0.663511,0.0833067,0.973849,0.753285,0.386817,0.531569,0.0408052,0.822515,0.171388,0.760649,0.625357,0.571215,0.810202,0.946844,0.104712,0.893082,0.921054,0.219996,0.1818,0.759485,0.0781374,0.323079,0.0452145,0.522198,0.177834,0.9154,0.0126988,0.547766,0.0363368,0.284527,0.345755,0.333158,0.94292,0.609269,0.94203,0.595147,0.837867,0.519973,0.0771766,0.124408,0.813816,0.419044,0.29984,0.376206,0.0589771,0.956194,0.222177,0.0221726,0.421711,0.511234,0.669306,0.884787,0.648719,0.354752,0.76284,0.0852227,0.698677,0.887776,0.681118,0.43662,0.677381,0.101732,0.181702,0.578865,0.837052,0.443616,0.951336,0.510651,0.719657,0.531944,0.188206,0.385751,0.617468,0.40699,0.874942,0.967831,0.01784,0.940764,0.74565,0.157417,0.503689,0.595771,0.516815,0.244841,0.67663,0.2583,0.938502,0.586394,0.749881,0.70585,0.0828469,0.611083,0.945843,0.560683,0.67937,0.704631,0.0964521,0.721125,0.151295,0.206264,0.577763,0.119427,0.182151,0.0501555,0.127244,0.986305,0.722569,0.369409,0.252509,0.600302,0.729208,0.574386,0.696913,0.521248,0.119505,0.278755,0.0222207,0.194058,0.0966005,0.871295,0.942289,0.70522,0.535619,0.53224,0.504172,0.336064,0.558889,0.960784,0.669638,0.980667,0.906454,0.337157,0.334774,0.0787916,0.835683,0.944427,0.488403,0.84206,0.591199,0.0100714,0.263352,0.912774,0.133305,0.273135,0.166629,0.0196858,0.113951,0.723004,0.668319,0.410614,0.887197,0.557786,0.0568336,0.826381,0.096916,0.789393,0.186344,0.901269,0.171965,0.660733,0.694573,0.023026,0.483774,0.915182,0.466118,0.798404,0.223128,0.193778,0.834389,0.757095,0.662112,0.0376924,0.39313,0.700319,0.970922,0.521365,0.0662456,0.340366,0.474903,0.689172,0.615038,0.577424,0.641757,0.780059,0.1192,0.875701,0.20449,0.835357,0.0880455,0.95238,0.654912,0.109295,0.969326,0.276662,0.466874,0.694205,0.922405,0.717278,0.224379,0.881267,0.10486,0.285518,0.733127,0.646319,0.909002,0.419657,0.195479,0.010366,0.194633,0.0791901,0.311413,0.500878,0.506033,0.210847,0.259741,0.0620416,0.567616,0.105002,0.615796,0.508021,0.370916,0.817222,0.463711,0.728239,0.404302,0.911756,0.179125,0.993549,0.645194,0.376216,0.973473,0.447958,0.11788,0.827201,0.229092,0.764037,0.218973,0.940814,0.424194,0.765607,0.385214,0.450098,0.73019,0.684533,0.481803,0.452314,0.975255,0.2181,0.680909,0.872757,0.73716,0.508559,0.0394691,0.89481,0.457917,0.221827,0.822325,0.321532,0.70228,0.645397,0.577242,0.959582,0.335188,0.420292,0.448858,0.913431,0.85768,0.780814,0.748717,0.0584748,0.442041,0.314979,0.985471,0.839644,0.210793,0.380623,0.246146,0.560018,0.274627,0.677742,0.0408174,0.85268,0.0772321,0.858703,0.972243,0.277127,0.341285,0.631661,0.0837052,0.681673,0.0235508,0.927785,0.123822,0.83414,0.591375,0.179068,0.960311,0.108686,0.980132,0.567948,0.489845,0.010522,0.757796,0.846533,0.790216,0.978112,0.0933122,0.862251,0.1125,0.890542,0.688818,0.716888,0.194294,0.111169,0.486747,0.869765,0.286911,0.975853,0.38692,0.444432,0.846434,0.247558,0.553262,0.384537,0.829811,0.345674,0.230628,0.0199545,0.765224,0.966966,0.30613,0.747148,0.380967,0.621262,0.531334,0.702377,0.112364,0.715715,0.560641,0.512123,0.849519,0.797102,0.423433,0.310322,0.570758,0.227545,0.849638,0.307002,0.886906,0.34444,0.636244,0.995337,0.451028,0.67298,0.00534689,0.272967,0.961612,0.0998663,0.418342,0.0855283,0.470883,0.793686,0.94997,0.802687,0.40122,0.238802,0.0124969,0.66443,0.152864,0.576811,0.175619,0.172474,0.0198189,0.193974,0.922806,0.29619,0.270451,0.0384558,0.407849,0.97625,0.668545,0.136906,0.273794,0.165019,0.999989,0.806325,0.879762,0.268268,0.474345,0.0279794,0.430861,0.21269,0.673593,0.944293,0.51534,0.94011,0.91362,0.115092,0.307272,0.264085,0.282071,0.232063,0.46003,0.0768267,0.373783,0.259514,0.928799,0.069473,0.829646,0.612476,|0.700865,0.794017,0.733323,0.467574,0.740064,0.130239,0.220938,0.627308,0.380897,0.737965,0.456274,0.0360502,0.149748,0.612645,0.208241,0.53838,0.162294,0.654723,0.42784,0.904332,0.162637,0.520781,0.968698,0.408018,0.462052,0.362016,0.395715,0.383257,0.605795,0.209778,0.889967,0.0793543,0.281249,0.103375,0.446361,0.0405943,0.731224,0.827326,0.707121,0.17491,0.523686,0.398092,0.623881,0.459995,0.10183,0.255431,0.596697,0.239977,0.0511319,0.699198,0.160715,0.218706,0.565546,0.319093,0.72724,0.941717,0.928174,0.495074,0.0609023,0.532981,0.502446,0.473417,0.507683,0.618569,0.110131,0.387627,0.654276,0.274446,0.736497,0.830201,0.884452,0.736477,0.714971,0.666771,0.134812,0.684893,0.444577,0.635309,0.432299,0.408447,0.00282449,0.711027,0.857329,0.99934,0.299358,0.20652,0.139392,0.738003,0.681396,0.544297,0.853046,0.813873,0.213465,0.956842,0.576698,0.596316,0.532989,0.401271,0.311857,0.963934,0.904897,0.539847,0.866106,0.473492,0.919378,0.141015,0.672593,0.791422,0.375206,0.446848,0.0194373,0.569556,0.474547,0.163645,0.850273,0.122311,0.356626,0.00698918,0.873664,0.762924,0.914081,0.297757,0.656075,0.186519,0.263238,0.885854,0.171345,0.745005,0.512927,0.996317,0.417704,0.906753,0.891726,0.0453411,0.807326,0.390397,0.67103,0.785391,0.811979,0.577855,0.903121,0.366393,0.23035,0.94077,0.0905958,0.568099,0.569332,0.108989,0.215211,0.330057,0.82324,0.856739,0.0617147,0.317324,0.302431,0.104491,0.447598,0.214346,0.806452,0.444567,0.337897,0.324958,0.996228,0.96184,0.214086,0.929459,0.613281,0.795437,0.883994,0.587165,0.857255,0.0660136,0.411074,0.599342,0.292351,0.942378,0.894963,0.315072,0.194118,0.0538655,0.969626,0.675062,0.151172,0.203424,0.330707,0.0370233,0.78356,0.588817,0.499219,0.945849,0.811074,0.194977,0.855734,0.362985,0.0739422,0.704634,0.0355159,0.369996,0.729475,0.0859205,0.893872,0.735598,0.13248,0.487005,0.0296742,0.830692,0.0146572,0.368173,0.722486,0.761981,0.745428,0.655887,0.190352,0.750761,0.0883963,0.429589,0.880406,0.281072,0.033741,0.847552,0.12627,0.474091,0.817907,0.271651,0.546461,0.425394,0.240071,0.456979,0.62704,0.950201,0.536273,0.0926149,0.984197,0.276605,0.0945641,0.638026,0.913062,0.299621,0.24535,0.725755,0.784664,0.752283,0.295547,0.824963,0.126773,0.114075,0.5636,0.382414,0.448974,0.320854,0.655543,0.756023,0.458009,0.458496,0.294735,0.195057,0.611447,0.16398,0.759781,0.879895,0.450809,0.883406,0.719987,0.491483,0.963772,0.807333,0.0580477,0.8247,0.0872397,0.477168,0.537898,0.722157,0.555113,0.90584,0.097886,0.128563,0.258698,0.701916,0.32076,0.219137,0.953876,0.280282,0.691932,0.600911,0.181265,0.884413,0.607565,0.796013,0.958197,0.374107,0.305773,0.251826,0.230615,0.849543,0.997647,0.82348,0.856827,0.420523,0.987324,0.0634192,0.918337,0.0449721,0.785018,0.877308,0.86491,0.423183,0.761467,0.751837,0.21898,0.0923738,0.470326,0.794453,0.91093,0.412934,0.495852,0.120841,0.385851,0.992231,0.771804,0.795914,0.26578,0.0156898,0.367295,0.024073,0.00616479,0.404813,0.182991,0.441313,0.967727,0.63625,0.0347949,0.739609,0.854928,0.22959,0.276969,0.193022,0.0916333,0.567346,0.811233,0.761775,0.185756,0.165606,0.833325,0.705581,0.185226,0.744381,0.280043,0.159089,0.553498,0.00264013,0.547664,0.0526831,0.492029,0.96562,0.579553,0.823184,0.456162,0.254407,0.327235,0.466437,0.994267,0.928413,0.0720052,0.284677,0.465159,0.881132,0.855681,0.429812,0.775194,0.244211,0.408602,0.936593,0.77325,0.8797,0.888405,0.559864,0.672328,0.638301,0.898477,0.757104,0.515739,0.365869,0.293336,0.0109915,0.802013,0.511151,0.390432,0.177945,0.00687444,0.96946,0.28022,0.227662,0.71833,0.856095,0.122347,0.275729,0.0770088,0.732248,0.952354,0.674821,0.589276,0.556862,0.0360629,0.781613,0.831489,0.105325,0.541348,0.961454,0.931414,0.143295,0.380329,0.414516,0.120937,0.331436,0.318817,0.627259,0.625491,0.675019,0.679359,0.781609,0.0330294,0.953539,0.226564,0.675485,0.580839,0.279618,0.149996,0.403531,0.266982,0.155179,0.896431,0.647401,0.609809,0.804352,0.0486661,0.21232,0.785758,0.884934,0.135047,0.0479832,0.317858,0.0084461,0.442271,0.425982,0.687597,0.646772,0.350334,0.838253,0.682634,0.504768,0.984512,0.479015,0.0494953,0.685313,0.379082,0.647172,0.877244,0.776257,0.921991,0.170815,0.651008,0.236843,0.757328,0.0143518,0.555328,0.96342,0.331495,0.7763,0.74777,0.189417,0.985386,0.448922,0.637935,0.672632,0.365778,0.455814,0.776708,0.135196,0.349696,0.78052,0.23874,0.280223,0.263619,0.752755,0.816462,0.322672,0.794788,0.923267,0.141871,0.383304,0.871543,0.48357,0.856173,0.670527,0.465105,0.370938,0.632134,0.992574,0.192471,0.0813549,0.649232,0.131778,0.411391,0.749816,0.516969,0.694885,0.134508,0.383454,0.247798,0.254967,0.0818648,0.643442,0.773167,0.505034,0.84241,0.708911,0.798019,0.685472,0.340384,0.204604,0.880804,0.997537,0.0887288,0.919348,0.314087,0.329411,0.267108,0.741337,0.174954,0.768418,0.603394,0.981299,0.494835,0.857016,0.950458,0.0193377,0.746878,0.843074,0.0595922,0.164795,0.705886,0.760008,0.642637,0.134833,0.0556696,0.894309,0.707274,0.754552,0.396551,0.476783,0.638274,0.0981646,0.826859,0.709969,0.522294,0.823705,0.427154,0.349807,0.68091,0.193453,0.680554,0.785908,0.875789,0.855657,0.68578,0.812925,0.781616,0.631348,0.394302,0.210294,0.604762,0.874537,0.0586727,0.0025394,0.484233,0.468055,0.274236,0.393279,0.287653,0.403726,0.344759,0.177407,0.406972,0.225737,0.602681,0.151763,0.198194,0.251914,0.568647,0.69733,0.0315914,0.651785,0.741019,0.686722,0.720052,0.389969,0.262471,0.537971,0.372318,0.847985,0.948104,0.436838,0.342006,0.541016,0.402782,0.712072,0.44609,0.563302,0.382412,0.892971,0.744173,0.557655,0.575261,0.898959,0.54327,0.50348,0.927088,0.638002,0.975417,0.461697,0.0207052,0.768683,0.648627,0.379406,0.0445382,0.652541,0.659907,0.55886,0.634668,0.360409,0.073688,0.904049,0.210772,0.20062,0.383839,0.557813,0.854627,0.41683,0.442827,0.272158,0.0345762,0.596589,0.865139,0.0651845,0.151609,0.170161,0.684047,0.251048,0.592355,0.833468,0.180905,0.218597,0.409853,0.333109,0.345215,0.117008,0.576184,0.277584,0.716189,0.0125024,0.869119,0.0222055,0.924974,0.0378426,0.0671614,0.815193,0.537572,0.822459,0.0117182,0.710556,0.465425,0.0351245,0.26869,0.376793,0.363454,0.329036,0.302605,0.353329,0.0140859,0.859487,0.651992,0.775788,0.560817,0.697383,0.0275555,0.331078,0.321011,0.484263,0.873518,0.278923,0.864258,0.0125895,0.832536,0.5924,0.372109,0.235925,0.836388,0.766387,0.57991,0.843894,0.323769,0.647278,0.146373,0.0419049,0.0961258,0.669741,0.888001,0.717212,0.948018,0.609707,0.0812101,0.478449,0.805785,0.431482,0.569422,0.266281,0.86982,0.653695,0.623484,0.554414,0.079132,0.722046,0.769368,0.613728,0.279865,0.121768,0.162634,0.0334669,0.308911,0.0172374,0.785525,0.150978,0.943008,0.832545,0.777352,0.129686,0.753837,0.332001,0.00548357,0.111636,0.797087,0.363159,0.551795,0.626461,0.469454,0.48225,0.722551,0.624888,0.900109,0.238007,0.123434,0.878401,0.0406051,0.983951,0.974891,0.863826,0.426022,0.307361,0.160686,0.0904601,0.481918,0.402041,0.919545,0.126221,0.803702,0.128116,0.90687,0.868189,0.760393,0.295617,0.10164,0.991377,0.151159,0.587329,0.441678,0.530366,0.856102,0.994819,0.30877,0.00937957,0.30931,0.53584,0.37858,0.0617502,0.73146,0.322528,0.942108,0.200825,0.518687,0.161515,0.916176,0.80425,0.169579,0.344275,0.694021,0.726355,0.00997162,0.317177,0.558042,0.774245,0.785581,0.929778,0.20079,0.318141,0.35003,0.595251,0.218336,0.814246,0.275791,0.664743,0.838429,0.489845,0.885983,0.411125,0.0386196,0.71127,0.22179,0.553282,0.91597,0.15976,0.715447,0.570398,0.178264,0.109002,0.324288,0.357798,0.779584,0.583596,0.831473,0.179167,0.637013,0.810009,0.639354,0.22422,0.0531791,0.51478,0.416578,0.754407,0.984846,0.356923,0.595415,0.752908,0.778033,0.00429749,0.540543,0.0178089,0.979118,0.516096,0.317869,0.938957,0.45629,0.896123,0.434915,0.909016,0.613334,0.0681905,0.965357,0.149387,0.491488,0.393009,0.5199,0.505239,0.968254,0.370576,0.563868,0.499749,0.888543,0.037177,0.542608,0.155775,0.618928,0.749691,0.829964,0.499631,0.167858,0.837334,0.695609,0.0109511,0.0139804,0.335416,0.630629,0.146338,0.831542,0.437979,0.799456,0.74298,0.880555,0.842445,0.377858,0.925051,0.0733812,0.653896,0.0581566,0.863105,0.494962,0.312642,0.998815,0.485999,0.779092,0.541174,0.301358,0.421519,0.264411,0.610796,0.206708,0.837732,0.608367,0.333031,0.479497,0.310284,0.815922,0.346323,0.182951,0.17408,0.60821,0.735866,0.236682,0.194947,0.675335,0.746794,0.971819,0.417535,0.71723,0.620353,0.274151,0.63685,0.0799769,0.458855,0.630931,0.250318,0.547761,0.0126436,0.449146,0.95686,0.792706,0.641905,0.839897,0.477816,0.29716,0.401363,0.875344,0.610932,0.472788,0.434116,0.875208,0.217243,0.750626,0.15801,0.158066,0.634982,0.477709,0.222558,0.564935,0.891048,0.559431,0.175629,0.478236,0.523634,0.979816,0.136324,0.88509,0.694451,0.230799,0.944166,0.0868041,0.231079,0.470829,0.357325,0.0758029,0.484932,0.233249,0.344922,0.741917,0.947476,0.490796,0.2924,0.655768,0.454606,0.629188,0.829724,0.258234,0.272059,0.215463,0.480247,0.656138,0.398194,0.0621803,0.129162,0.790184,0.864261,0.669364,0.987031,0.434057,0.404649,0.174252,0.129341,0.910033,0.18997,0.89906,0.307105,|0.199941,0.510545,0.596733,0.085834,0.442259,0.31734,0.130501,0.185064,0.903285,0.642015,0.787905,0.231863,0.462138,0.249591,0.891164,0.3945,0.499959,0.40773,0.305252,0.360431,0.223706,0.0893109,0.645568,0.0862378,0.630373,0.272838,0.297948,0.382976,0.957686,0.57922,0.816129,0.816754,0.911755,0.439403,0.907155,0.433623,0.685258,0.493198,0.492674,0.88143,0.867938,0.635345,0.502805,0.608156,0.693171,0.272943,0.0454788,0.304318,0.0502121,0.721103,0.691655,0.387348,0.720091,0.0193533,0.978059,0.13099,0.783009,0.122094,0.799327,0.260376,0.8749,0.971208,0.314963,0.345794,0.0764476,0.305181,0.449815,0.6109,0.388479,0.87532,0.127192,0.890646,0.745667,0.755324,0.690397,0.948186,0.422397,0.39278,0.973656,0.943156,0.00151336,0.910271,0.77623,0.0225627,0.884575,0.999381,0.666865,0.141971,0.280627,0.125541,0.946273,0.123544,0.0622563,0.659116,0.900551,0.0276272,0.837608,0.840554,0.956022,0.123213,0.0497303,0.0710916,0.811827,0.704957,0.235743,0.727962,0.0420349,0.766621,0.126078,0.302364,0.682608,0.39653,0.367474,0.673643,0.406626,0.414123,0.496246,0.774141,0.0466753,0.201607,0.983858,0.0932431,0.230678,0.38252,0.641621,0.296036,0.953724,0.655799,0.63776,0.677052,0.725017,0.630045,0.885952,0.532267,0.760975,0.775126,0.670213,0.820576,0.586962,0.519708,0.493837,0.963646,0.281052,0.195629,0.32493,0.783627,0.627829,0.647716,0.207387,0.757509,0.094262,0.178373,0.669527,0.217463,0.366029,0.61465,0.837057,0.43385,0.722978,0.283072,0.559424,0.168199,0.799275,0.139083,0.185518,0.382096,0.970996,0.88748,0.384438,0.0900959,0.0725142,0.91936,0.760113,0.63888,0.622173,0.755042,0.157624,0.599781,0.566028,0.467318,0.282363,0.696743,0.946725,0.465374,0.632138,0.409738,0.411258,0.0566018,0.745532,0.6799,0.0874892,0.497436,0.258197,0.761251,0.48035,0.67053,0.357656,0.264071,0.165523,0.400681,0.976561,0.134374,0.966682,0.576474,0.65058,0.374482,0.332613,0.317732,0.406686,0.435655,0.519992,0.170709,0.170503,0.752186,0.741815,0.92229,0.455656,0.444606,0.994617,0.145806,0.34297,0.857893,0.0735129,0.800976,0.631814,0.414955,0.625419,0.836861,0.414546,0.28497,0.351256,0.553867,0.23222,0.214847,0.0881634,0.206467,0.81791,0.250746,0.460207,0.165532,0.77177,0.92592,0.718994,0.735805,0.993937,0.331753,0.20086,0.412287,0.535027,0.870537,0.925993,0.674063,0.121392,0.291015,0.831064,0.121802,0.951073,0.854139,0.847782,0.836445,0.693408,0.329632,0.771797,0.623349,0.263154,0.930611,0.0867232,0.673024,0.13049,0.110704,0.660402,0.988996,0.31874,0.759397,0.421352,0.556367,0.739902,0.964477,0.93253,0.127917,0.962879,0.401273,0.108132,0.389125,0.176605,0.419032,0.815421,0.627135,0.680954,0.654769,0.337919,0.799632,0.683307,0.797482,0.478815,0.29978,0.982834,0.29763,0.70791,0.887115,0.45851,0.325486,0.672508,0.732698,0.105595,0.868492,0.475798,0.07469,0.196875,0.542206,0.936393,0.755073,0.211321,0.805908,0.916814,0.137485,0.287945,0.188242,0.980738,0.0226596,0.761994,0.613592,0.296526,0.847068,0.276845,0.743675,0.890858,0.798921,0.651136,0.544992,0.911517,0.690529,0.284547,0.0146722,0.783645,0.121489,0.530897,0.471606,0.301732,0.668162,0.194754,0.236334,0.58763,0.788927,0.402897,0.0264668,0.323921,0.431697,0.405309,0.892033,0.535335,0.661868,0.964291,0.784427,0.560714,0.099705,0.866091,0.0521664,0.629218,0.870578,0.434901,0.500511,0.3653,0.735925,0.499899,0.601711,0.87858,0.605036,0.307658,0.750635,0.835073,0.0278184,0.452557,0.571685,0.656595,0.480271,0.400891,0.196471,0.314935,0.325178,0.866465,0.573052,0.267461,0.0157143,0.513691,0.213672,0.801085,0.373301,0.980279,0.897436,0.0386527,0.956784,0.260561,0.539222,0.307627,0.461485,0.138718,0.390747,0.98514,0.225896,0.0801215,0.945967,0.737944,0.127388,0.80504,0.454616,0.963753,0.104437,0.298008,0.73255,0.719125,0.793364,0.168738,0.915229,0.71131,0.428092,0.309092,0.0459251,0.911291,0.972852,0.636152,0.802959,0.0712492,0.405335,0.059902,0.564847,0.0309505,0.824051,0.0135705,0.0833709,0.483688,0.28848,0.424375,0.375319,0.236761,0.762657,0.979277,0.292156,0.966996,0.900548,0.0635794,0.219049,0.425324,0.765792,0.918317,0.174888,0.241654,0.395672,0.138356,0.928287,0.115892,0.961832,0.137793,0.593268,0.8837,0.673266,0.580611,0.188086,0.200972,0.0434006,0.358051,0.530509,0.315164,0.617531,0.309417,0.79395,0.661355,0.809755,0.330073,0.401997,0.0357462,0.242711,0.268858,0.512293,0.112474,0.193806,0.0362709,0.844705,0.847583,0.341484,0.396142,0.744663,0.263246,0.501278,0.18221,0.668949,0.39379,0.877765,0.743969,0.844442,0.591829,0.146166,0.581195,0.827343,0.697441,0.469122,0.364381,0.927886,0.11306,0.903169,0.256233,0.358902,0.749703,0.571386,0.484046,0.220907,0.497182,0.18166,0.63192,0.763102,0.530718,0.680384,0.843136,0.0552311,0.2158,0.380705,0.945096,0.789026,0.66708,0.813652,0.84358,0.0656861,0.825469,0.535947,0.731092,0.32861,0.465893,0.650402,0.746582,0.869351,0.979823,0.363903,0.502635,0.457165,0.466935,0.525815,0.437216,0.568897,0.263593,0.780684,0.63162,0.0125347,0.114888,0.285507,0.840986,0.76277,0.0637039,0.958116,0.15516,0.932613,0.391259,0.0567838,0.368813,0.262045,0.355077,0.338035,0.628465,0.595313,0.263362,0.862435,0.326893,0.76515,0.217953,0.638495,0.0803607,0.895767,0.528383,0.169719,0.150201,0.91179,0.419917,0.240946,0.436626,0.281672,0.980447,0.753314,0.437721,0.990018,0.619911,0.458103,0.626854,0.480835,0.184206,0.872356,0.0279808,0.752546,0.794218,0.348298,0.911068,0.954274,0.829799,0.837561,0.121433,0.351816,0.142951,0.382709,0.379376,0.835586,0.277562,0.0418679,0.411677,0.966816,0.533818,0.489176,0.653109,0.873043,0.341593,0.434608,0.0179452,0.570623,0.499896,0.681002,0.744396,0.313937,0.913017,0.911468,0.296731,0.449036,0.0672258,0.570022,0.461049,0.810094,0.14483,0.189951,0.4766,0.356022,0.148546,0.664111,0.160324,0.576485,0.949102,0.763479,0.6517,0.980025,0.116379,0.261011,0.0441946,0.0617643,0.506403,0.455929,0.761585,0.487969,0.760001,0.551116,0.0570131,0.129199,0.501754,0.0827489,0.201738,0.308717,0.730749,0.528305,0.0583972,0.173245,0.434543,0.278883,0.715509,0.968959,0.793447,0.127927,0.815158,0.473976,0.260796,0.98264,0.498279,0.181351,0.552893,0.215673,0.251976,0.535658,0.362173,0.508206,0.570799,0.815853,0.604701,0.0499927,0.0834713,0.621005,0.920736,0.758671,0.86568,0.614055,0.0991783,0.103248,0.233205,0.857641,0.917573,0.0201539,0.292423,0.418948,0.265367,0.627723,0.97383,0.442815,0.889573,0.611685,0.124315,0.364155,0.170325,0.170718,0.727077,0.015414,0.825433,0.998439,0.0098244,0.486561,0.317562,0.793319,0.237943,0.176497,0.954617,0.501574,0.666597,0.914938,0.758836,0.8819,0.0703192,0.166022,0.514042,0.169137,0.00480491,0.847383,0.525316,0.557529,0.598822,0.727376,0.585878,0.810725,0.354093,0.423187,0.989665,0.861128,0.490424,0.666534,0.194544,0.235732,0.846746,0.775981,0.563251,0.293722,0.0976837,0.801529,0.0422643,0.493603,0.857073,0.195618,0.729397,0.151601,0.293227,0.913501,0.173679,0.119594,0.489251,0.0256053,0.753117,0.458339,0.350586,0.263467,0.630668,0.415906,0.411733,0.414502,0.0331358,0.396453,0.973586,0.839843,0.881643,0.748121,0.526282,0.136701,0.57082,0.563996,0.371248,0.149173,0.0840474,0.799204,0.756041,0.881062,0.555522,0.931478,0.252108,0.96395,0.373448,0.433893,0.253255,0.718288,0.411905,0.818011,0.420081,0.534562,0.183524,0.660048,0.581284,0.823977,0.768754,0.605557,0.876421,0.396197,0.718516,0.0903363,0.833482,0.88546,0.649236,0.873858,0.623051,0.17266,0.877854,0.424508,0.734647,0.899196,0.051254,0.44489,0.0884352,0.558644,0.526944,0.877809,0.278188,0.118854,0.754659,0.541961,0.834208,0.653621,0.9004,0.117601,0.190899,0.956944,0.963363,0.786349,0.380859,0.961461,0.0869931,0.485023,0.59978,0.975806,0.48616,0.684413,0.882558,0.649284,0.12501,0.517088,0.0185954,0.380138,0.821691,0.335093,0.908515,0.336919,0.218926,0.394939,0.583418,0.669495,0.514693,0.269539,0.261685,0.155482,0.29623,0.425527,0.417305,0.395205,0.542635,0.521785,0.611955,0.262447,0.546406,0.100324,0.52555,0.7505,0.898204,0.871197,0.287551,0.0779248,0.924674,0.559697,0.74903,0.933015,0.914798,0.957472,0.494867,0.789171,0.697344,0.682018,0.369246,0.353718,0.92919,0.91072,0.966671,0.466401,0.313047,0.778127,0.830721,0.719992,0.581965,0.416664,0.489343,0.32969,0.345935,0.168158,0.00548124,0.830959,0.719282,0.145835,0.301768,0.340264,0.206799,0.149079,0.230546,0.823274,0.83706,0.663429,0.317398,0.746233,0.720224,0.736883,0.152113,0.966685,0.742425,0.0241496,0.261757,0.00441831,0.238509,0.747611,0.853525,0.752185,0.985683,0.74033,0.986834,0.697258,0.000646293,0.763554,0.180396,0.135265,0.24681,0.194271,0.697672,0.49969,0.886369,0.0254011,0.881075,0.442201,0.186018,0.561289,0.361529,0.0117182,0.78095,0.585888,0.945378,0.80362,0.326477,0.979238,0.613631,0.401315,0.765867,0.577993,0.678741,0.712012,0.286672,0.566428,0.0742327,0.904831,0.483456,0.369553,0.396066,0.56377,0.85515,0.723858,0.746424,0.925015,0.971227,0.355235,0.476154,0.868133,0.609392,0.572677,0.182112,0.740603,0.424201,0.909753,0.942757,0.365351,0.811339,0.638738,0.212896,0.91556,0.161881,0.0991811,0.32918,0.736213,0.477212,0.762798,0.633506,0.137452,0.870383,0.400766,0.865633,0.00761461,0.790301,0.126548,0.220484,0.48533,0.862272,0.723225,|0.70684,0.437542,0.476849,0.262661,0.667674,0.827633,0.392075,0.170498,0.961746,0.276127,0.61152,0.721356,0.0192525,0.0956729,0.741396,0.843274,0.569061,0.18434,0.302641,0.655855,0.642072,0.7086,0.45749,0.515822,0.00965446,0.625334,0.700158,0.716292,0.898827,0.425271,0.439173,0.350707,0.606212,0.786352,0.501615,0.508988,0.242144,0.405791,0.576104,0.570132,0.247388,0.118417,0.053917,0.477523,0.362252,0.339014,0.627215,0.105481,0.202405,0.446512,0.641739,0.0731272,0.926321,0.714266,0.116004,0.430207,0.625389,0.890357,0.369478,0.0032382,0.870461,0.696079,0.516232,0.86463,0.102061,0.678865,0.311371,0.222951,0.141894,0.816998,0.330796,0.460629,0.847039,0.658976,0.575754,0.772682,0.344221,0.802725,0.443635,0.385399,0.129276,0.461243,0.103539,0.0481455,0.421503,0.918491,0.377606,0.00650483,0.274009,0.81004,0.227847,0.685968,0.186804,0.916283,0.0239381,0.220591,0.64105,0.447272,0.0475451,0.0192701,0.30516,0.65618,0.382537,0.723505,0.113985,0.181606,0.280181,0.957879,0.063836,0.160143,0.409556,0.504223,0.280806,0.902159,0.779022,0.313882,0.775297,0.201419,0.563426,0.454556,0.794339,0.131982,0.677603,0.0773968,0.559186,0.290694,0.196484,0.975905,0.901749,0.063077,0.216434,0.505716,0.960249,0.564526,0.514118,0.686404,0.718683,0.373098,0.196967,0.226503,0.901759,0.282119,0.495696,0.561441,0.933097,0.992474,0.694413,0.501976,0.418767,0.99976,0.0485677,0.132741,0.663184,0.392332,0.404235,0.160017,0.152808,0.826375,0.414654,0.865074,0.35863,0.866286,0.951474,0.255557,0.0102544,0.257201,0.115889,0.480827,0.800296,0.668847,0.704437,0.753649,0.108994,0.990905,0.304274,0.7574,0.086603,0.335025,0.238001,0.470354,0.58525,0.3516,0.92223,0.97389,0.287847,0.665121,0.134103,0.170407,0.57924,0.731773,0.241304,0.74529,0.0372551,0.428493,0.571205,0.750875,0.266419,0.0791122,0.571103,0.230207,0.723638,0.951972,0.0389072,0.861168,0.384061,0.341681,0.478962,0.812356,0.780042,0.862184,0.28377,0.954223,0.885728,0.307281,0.840783,0.93645,0.182871,0.458696,0.0911804,0.215073,0.889821,0.772488,0.482484,0.439206,0.379165,0.421767,0.163002,0.0383607,0.0309505,0.465151,0.621336,0.358252,0.476795,0.497092,0.0429389,0.197739,0.919992,0.69735,0.0390303,0.943213,0.113672,0.686411,0.131089,0.238628,0.257491,0.705006,0.894657,0.887099,0.549395,0.230831,0.50637,0.287292,0.212458,0.76233,0.823207,0.689576,0.868637,0.535093,0.21707,0.0825179,0.705846,0.671,0.944403,0.775644,0.152013,0.749551,0.162438,0.510348,0.53232,0.893005,0.207676,0.326039,0.115041,0.787073,0.937358,0.888136,0.45826,0.707511,0.793549,0.202402,0.745587,0.73641,0.488526,0.60294,0.905807,0.969811,0.763925,0.477124,0.152073,0.413907,0.854176,0.568853,0.15329,0.143925,0.996521,0.288503,0.221907,0.731484,0.945603,0.79913,0.371142,0.623295,0.899786,0.451258,0.227798,0.340362,0.41928,0.85893,0.934424,0.678836,0.224622,0.160743,0.397961,0.548776,0.332653,0.406284,0.356799,0.96898,0.680493,0.306084,0.841971,0.872164,0.358904,0.193289,0.038208,0.331929,0.970749,0.420617,0.847738,0.849443,0.518105,0.80916,0.565152,0.488875,0.503192,0.728729,0.0599739,0.612226,0.962634,0.282188,0.259953,0.531919,0.431182,0.594754,0.96146,0.980109,0.93901,0.867961,0.884076,0.891661,0.339054,0.334467,0.888106,0.496239,0.126691,0.819952,0.92241,0.151545,0.0681592,0.585996,0.356331,0.556243,0.868593,0.977773,0.369475,0.134155,0.456437,0.620369,0.7383,0.223567,0.631402,0.809495,0.74928,0.43092,0.126907,0.463676,0.508028,0.206743,0.642404,0.403857,0.898758,0.627602,0.337854,0.168525,0.997134,0.851835,0.907316,0.357714,0.630672,0.232889,0.879839,0.121947,0.482324,0.905034,0.729072,0.164162,0.451941,0.51,0.00471932,0.210599,0.561493,0.152476,0.521951,0.381371,0.0672212,0.996485,0.77661,0.847423,0.640905,0.899289,0.578659,0.220936,0.331643,0.701758,0.801274,0.773156,0.293006,0.181216,0.866333,0.47147,0.645383,0.228859,0.582247,0.546997,0.306037,0.721341,0.865079,0.708372,0.0411569,0.529139,0.0916968,0.0366239,0.439359,0.857866,0.44945,0.525193,0.935168,0.3555,0.742169,0.923626,0.464933,0.411231,0.580428,0.430571,0.583025,0.0455605,0.229329,0.156012,0.384113,0.735331,0.654276,0.382624,0.534373,0.625913,0.82946,0.125614,0.300808,0.788764,0.686651,0.781816,0.544649,0.481126,0.589059,0.182866,0.35574,0.500129,0.839181,0.301878,0.117029,0.246552,0.263187,0.868618,0.347868,0.761642,0.767331,0.67376,0.0107292,0.508766,0.461975,0.570077,0.494844,0.811067,0.408521,0.0727493,0.996917,0.0772093,0.365142,0.57853,0.422477,0.173374,0.378846,0.443571,0.283691,0.617982,0.566574,0.660133,0.165987,0.979253,0.544755,0.951099,0.391372,0.240776,0.657602,0.459809,0.0434631,0.329685,0.35852,0.457575,0.8503,0.568978,0.332041,0.688422,0.0456107,0.559707,0.550033,0.369509,0.848974,0.592808,0.64769,0.28086,0.312952,0.333788,0.0408727,0.233885,0.750591,0.205958,0.714367,0.229917,0.337903,0.669086,0.719979,0.817193,0.926852,0.345825,0.671105,0.320589,0.579237,0.109608,0.904289,0.982021,0.59239,0.735562,0.816028,0.664557,0.636143,0.917189,0.371519,0.360751,0.295056,0.324243,0.975121,0.945972,0.362482,0.869728,0.622663,0.250398,0.741085,0.491986,0.875744,0.570977,0.936331,0.968256,0.172564,0.358683,0.720497,0.651357,0.187977,0.302972,0.108012,0.280472,0.42339,0.601568,0.966256,0.277431,0.190198,0.00763172,0.851181,0.683389,0.0848549,0.0578769,0.388498,0.388168,0.993711,0.244296,0.875825,0.874819,0.265728,0.274119,0.652535,0.923682,0.288323,0.161629,0.0440329,0.641071,0.266717,0.159574,0.595224,0.852762,0.154642,0.343089,0.260303,0.982907,0.158261,0.361654,0.366879,0.742331,0.894282,0.040265,0.463858,0.616021,0.107821,0.475321,0.353973,0.664213,0.781972,0.258829,0.0579111,0.518459,0.24348,0.0905448,0.859735,0.103989,0.00516754,0.376662,0.602564,0.362812,0.404955,0.0608737,0.819525,0.650127,0.698196,0.38537,0.699372,0.0343921,0.985392,0.732327,0.0296739,0.800216,0.0651625,0.623833,0.511144,0.61167,0.847701,0.796854,0.809138,0.941222,0.663547,0.800039,0.0648293,0.258443,0.501113,0.326066,0.944596,0.862684,0.337656,0.790989,0.716487,0.718051,0.318276,0.463936,0.728285,0.0902584,0.463334,0.397324,0.660628,0.92554,0.407327,0.222338,0.414342,0.745352,0.0815575,0.115618,0.45358,0.67146,0.802182,0.162514,0.981896,0.419008,0.481356,0.057077,0.420716,0.507957,0.0059166,0.555742,0.185761,0.763299,0.931647,0.25351,0.590804,0.371917,0.836463,0.543088,0.68243,0.85376,0.359964,0.830381,0.147101,0.0443525,0.581325,0.834697,0.496208,0.412374,0.461484,0.426417,0.390979,0.456185,0.861893,0.318015,0.374926,0.14406,0.6294,0.916253,0.554854,0.438035,0.404334,0.493958,0.0175505,0.746918,0.754317,0.68853,0.820374,0.135527,0.309441,0.323685,0.249476,0.82318,0.263944,0.190792,0.179397,0.685355,0.346447,0.450245,0.744467,0.568686,0.697146,0.475529,0.875381,0.342291,0.511744,0.201309,0.578997,0.941833,0.290212,0.247048,0.101548,0.540019,0.048191,0.599097,0.508932,0.71463,0.772293,0.0657911,0.670614,0.466892,0.572341,0.491586,0.193089,0.48706,0.785164,0.667214,0.986156,0.437063,0.0346,0.70707,0.709226,0.793238,0.86886,0.0728055,0.265729,0.864283,0.524522,0.0943834,0.668627,0.750262,0.527058,0.412472,0.101423,0.403749,0.89092,0.358267,0.874181,0.230742,0.725912,0.738343,0.17614,0.800615,0.513426,0.379622,0.423442,0.760395,0.706192,0.557429,0.125986,0.743875,0.00645131,0.579438,0.471757,0.129628,0.610614,0.897671,0.708734,0.540697,0.872952,0.137985,0.683863,0.772528,0.996421,0.434671,0.457333,0.140359,0.45832,0.926172,0.195238,0.562039,0.0959435,0.301532,0.819209,0.857481,0.973959,0.827798,0.949573,0.0108356,0.768079,0.412046,0.339598,0.58992,0.51617,0.554007,0.933735,0.854868,0.865688,0.148568,0.363011,0.478231,0.734299,0.572827,0.100136,0.191013,0.796435,0.530118,0.441182,0.924339,0.640432,0.531381,0.0627334,0.648943,0.3288,0.160184,0.562853,0.815617,0.982132,0.839287,0.041319,0.11912,0.421406,0.13871,0.875223,0.276688,0.333654,0.814232,0.716495,0.489101,0.182635,0.221864,0.477114,0.236616,0.770367,0.8097,0.668003,0.0789427,0.408589,0.353129,0.436023,0.0908673,0.638576,0.783532,0.0194128,0.948409,0.314381,0.789912,0.518201,0.427994,0.433676,0.525866,0.310859,0.973545,0.50648,0.453858,0.801207,0.839225,0.438377,0.283677,0.622934,0.184578,0.309902,0.636534,0.696151,0.758457,0.575656,0.591453,0.924936,0.699867,0.427318,0.778886,0.902626,0.139862,0.833568,0.067052,0.254406,0.120065,0.97392,0.55,0.96693,0.192811,0.172897,0.745583,0.708978,0.281775,0.210158,0.462594,0.975618,0.494732,0.111717,0.315211,0.359013,0.481157,0.888229,0.766122,0.561889,0.86215,0.0592691,0.462274,0.895199,0.21217,0.98611,0.486737,0.714428,0.0500141,0.445895,0.422038,0.0495146,0.0105895,0.3439,0.769129,0.966338,0.358728,0.206975,0.113096,0.76318,0.0935346,0.697112,0.0442247,0.0975319,0.287667,0.490228,0.253122,0.0504584,0.310228,0.191485,0.189471,0.120805,0.880747,0.108549,0.707846,0.178417,0.674558,0.232161,0.0624706,0.750519,0.575014,0.558034,0.192538,0.028271,0.623369,0.519598,0.71999,0.0666521,0.0558076,0.869808,0.607747,0.113005,0.794312,0.50321,0.0277525,0.605874,0.32862,0.326634,0.829741,0.475838,0.540179,0.568198,0.327986,0.860162,0.834489,0.800865,0.45556,0.864638,0.298955,0.074796,0.989056,|0.728015,0.104959,0.941587,0.534069,0.0258204,0.096453,0.313447,0.56159,0.535664,0.724364,0.696776,0.178462,0.552095,0.417868,0.554219,0.514139,0.801839,0.00687057,0.170558,0.882259,0.201721,0.523136,0.239096,0.33305,0.352822,0.319658,0.516203,0.868659,0.651415,0.219457,0.95478,0.892816,0.0720223,0.15858,0.42717,0.270089,0.623999,0.884302,0.946142,0.838453,0.231371,0.940976,0.445172,0.96426,0.326671,0.304688,0.827268,0.892551,0.11375,0.0615506,0.0444151,0.628993,0.943507,0.284553,0.676961,0.155155,0.463477,0.71286,0.750292,0.615203,0.735484,0.478526,0.975108,0.868772,0.123994,0.868444,0.932022,0.569105,0.251256,0.614414,0.772218,0.959784,0.431222,0.94244,0.993867,0.551732,0.274763,0.371513,0.890257,0.32511,0.0209743,0.59985,0.220671,0.320643,0.0500511,0.485688,0.677905,0.69996,0.896038,0.438495,0.251538,0.481772,0.0133866,0.928801,0.773975,0.493111,0.446925,0.721732,0.361227,0.679068,0.054839,0.320662,0.885035,0.210213,0.954385,0.705596,0.224634,0.494272,0.180399,0.984462,0.503766,0.485322,0.702641,0.846994,0.266686,0.963163,0.826957,0.921906,0.438605,0.819933,0.0913467,0.359553,0.608627,0.865544,0.157792,0.544636,0.896259,0.346428,0.637479,0.260345,0.920532,0.36783,0.333709,0.465948,0.365114,0.998231,0.0738004,0.233494,0.355553,0.376308,0.164133,0.567811,0.313939,0.555451,0.597813,0.607751,0.216611,0.227134,0.349825,0.430565,0.0974293,0.305237,0.825511,0.459553,0.521222,0.562884,0.998371,0.623297,0.0259287,0.393903,0.839698,0.128646,0.677303,0.586826,0.387694,0.763721,0.0149239,0.519904,0.275825,0.434407,0.336527,0.118271,0.566341,0.548502,0.097652,0.943694,0.550514,0.641659,0.310174,0.776043,0.277469,0.301409,0.894232,0.951703,0.928247,0.142927,0.595892,0.984699,0.0482181,0.654498,0.219971,0.958281,0.593378,0.409141,0.962663,0.114881,0.124838,0.298167,0.332504,0.802503,0.537046,0.0307664,0.0186355,0.888063,0.704339,0.587493,0.540477,0.496486,0.126587,0.891753,0.998678,0.0833701,0.217208,0.279725,0.797365,0.662212,0.991717,0.509118,0.317951,0.471706,0.562102,0.0911601,0.817035,0.430878,0.0227123,0.277046,0.841049,0.559859,0.353297,0.361516,0.686749,0.00166637,0.929957,0.128495,0.613224,0.228162,0.184923,0.507758,0.764513,0.147918,0.331757,0.798738,0.649843,0.221019,0.458579,0.326817,0.46945,0.441429,0.410378,0.444206,0.92267,0.613196,0.52059,0.767062,0.389435,0.399544,0.853752,0.836303,0.693329,0.316328,0.0297287,0.986419,0.550083,0.699248,0.0941325,0.946872,0.24626,0.526713,0.519758,0.149634,0.978251,0.537162,0.027869,0.378931,0.102694,0.408551,0.820719,0.710662,0.548737,0.364491,0.110785,0.00227833,0.376408,0.783454,0.868807,0.0926253,0.370456,0.444227,0.189863,0.602189,0.143797,0.0463503,0.00406039,0.584742,0.184117,0.108953,0.431282,0.78633,0.917085,0.64924,0.581443,0.395953,0.294235,0.781635,0.103627,0.47783,0.205635,0.0521464,0.651094,0.30908,0.431431,0.136561,0.748187,0.693183,0.35159,0.181642,0.577616,0.566679,0.779707,0.848546,0.953993,0.00122559,0.339073,0.100664,0.895027,0.506146,0.257596,0.305049,0.862871,0.558313,0.705826,0.635731,0.722322,0.60522,0.914771,0.392461,0.961956,0.846593,0.102443,0.40735,0.466082,0.800137,0.133995,0.409057,0.564365,0.306527,0.317876,0.852452,0.411547,0.776861,0.763252,0.540037,0.256051,0.136168,0.752073,0.615632,0.403347,0.68583,0.0503414,0.482855,0.884899,0.821057,0.388107,0.61019,0.159833,0.505701,0.228683,0.000118971,0.144038,0.0431674,0.979498,0.937424,0.0137063,0.430897,0.554314,0.831668,0.0522357,0.257075,0.277048,0.289596,0.374882,0.739436,0.634299,0.303995,0.925535,0.0863862,0.536309,0.296768,0.341101,0.64229,0.56328,0.762898,0.784695,0.358303,0.218423,0.330071,0.838147,0.480224,0.111054,0.217285,0.0219262,0.624998,0.965233,0.0213603,0.595202,0.413844,0.222817,0.984937,0.418125,0.306207,0.327216,0.258181,0.493372,0.110137,0.234176,0.0575209,0.839904,0.201617,0.43355,0.91986,0.687032,0.372498,0.670056,0.445693,0.00415969,0.421037,0.365292,0.0988328,0.0529194,0.736124,0.0156472,0.185559,0.912321,0.249008,0.506376,0.0804986,0.832292,0.919048,0.186079,0.931327,0.623424,0.181388,0.740751,0.287236,0.0316005,0.672148,0.0926228,0.0299433,0.193999,0.359943,0.207366,0.926276,0.64949,0.16465,0.356209,0.284,0.910661,0.599058,0.638278,0.990797,0.245854,0.861542,0.867777,0.356478,0.800409,0.809587,0.109814,0.716771,0.096318,0.990865,0.00489128,0.799831,0.219857,0.658313,0.973475,0.819721,0.516663,0.41141,0.433419,0.274227,0.420758,0.582807,0.786737,0.897879,0.0285091,0.975361,0.566743,0.0202206,0.930135,0.563611,0.0604002,0.877673,0.681414,0.665477,0.00384319,0.900131,0.606262,0.396925,0.0300136,0.440157,0.0746761,0.801901,0.296941,0.949991,0.263883,0.398607,0.0729031,0.919371,0.79178,0.785456,0.935308,0.916672,0.483088,0.878357,0.689576,0.17322,0.8787,0.713043,0.328339,0.0189386,0.552775,0.131205,0.347789,0.104467,0.409036,0.871829,0.409582,0.935449,0.0675669,0.972263,0.288296,0.954974,0.915584,0.430656,0.563264,0.580288,0.214786,0.609465,0.156383,0.282179,0.162892,0.110017,0.0537974,0.317522,0.426461,0.658853,0.354894,0.303617,0.810367,0.203359,0.470526,0.108423,0.306534,0.394872,0.403244,0.841638,0.0577661,0.134453,0.278605,0.0527724,0.340763,0.880323,0.856125,0.271249,0.763749,0.186909,0.418732,0.910135,0.747335,0.295318,0.465123,0.190354,0.490115,0.733809,0.909656,0.483974,0.879398,0.111859,0.556101,0.809141,0.549603,0.86997,0.607829,0.286396,0.456396,0.0294661,0.257951,0.453146,0.271538,0.175881,0.672628,0.832955,0.27454,0.927758,0.19353,0.838319,0.29447,0.845872,0.387138,0.963124,0.50517,0.76151,0.28701,0.718515,0.523182,0.313634,0.635546,0.450478,0.272749,0.463012,0.00275147,0.691283,0.751744,0.656918,0.0760345,0.395188,0.557324,0.904796,0.86292,0.978802,0.079897,0.240351,0.379371,0.633717,0.715677,0.505147,0.283448,0.455358,0.899754,0.0794697,0.293125,0.946295,0.60091,0.345651,0.255336,0.0512301,0.921836,0.225844,0.715301,0.211316,0.552896,0.538927,0.993087,0.785347,0.921125,0.643176,0.38726,0.57615,0.0601107,0.425249,0.508273,0.489914,0.158217,0.629022,0.200333,0.205399,0.391179,0.463312,0.438333,0.149529,0.0110183,0.928601,0.269569,0.45254,0.906482,0.857114,0.0681791,0.358997,0.284651,0.579331,0.685297,0.190242,0.45156,0.0935981,0.106405,0.323613,0.929022,0.664477,0.327654,0.92702,0.980562,0.253737,0.727292,0.823936,0.43869,0.856926,0.238925,0.49566,0.110873,0.541013,0.259189,0.309431,0.868314,0.657681,0.392061,0.945688,0.961999,0.136667,0.0925021,0.9597,0.29808,0.192289,0.356302,0.90878,0.0883677,0.266004,0.811727,0.455763,0.578508,0.185267,0.837948,0.824491,0.855036,0.983197,0.875904,0.744599,0.298424,0.659205,0.215655,0.530041,0.239591,0.732294,0.164444,0.832721,0.907809,0.319679,0.625199,0.660353,0.766091,0.0161169,0.184575,0.950917,0.751306,0.997295,0.640485,0.370493,0.925998,0.116534,0.599197,0.78921,0.141309,0.121002,0.268767,0.134786,0.415933,0.259512,0.0871899,0.506678,0.983494,0.0713232,0.15127,0.197787,0.498285,0.478469,0.120533,0.431425,0.159349,0.809048,0.968476,0.509818,0.416869,0.614076,0.523253,0.786601,0.701243,0.640083,0.558823,0.439905,0.112921,0.259757,0.601083,0.199598,0.372307,0.0313835,0.149635,0.77699,0.902939,0.491003,0.204743,0.271608,0.211218,0.100732,0.834615,0.942832,0.848176,0.662117,0.259914,0.628224,0.81599,0.516611,0.361903,0.8186,0.404929,0.607823,0.218657,0.0933349,0.026663,0.609008,0.714436,0.44898,0.617313,0.534643,0.224397,0.202269,0.607573,0.216929,0.73795,0.554191,0.809755,0.339018,0.7998,0.100117,0.92521,0.309445,0.666418,0.797052,0.651929,0.301312,0.584601,0.511028,0.436902,0.828945,0.00955874,0.202678,0.188088,0.714258,0.681262,0.4199,0.4809,0.969656,0.273,0.775017,0.028167,0.185742,0.189002,0.212156,0.655936,0.70239,0.517163,0.132447,0.772126,0.160101,0.383211,0.267685,0.828273,0.89505,0.627506,0.0964563,0.466853,0.818542,0.607333,0.392541,0.471063,0.877486,0.288369,0.266226,0.0406443,0.578485,0.959458,0.210819,0.832765,0.766864,0.325617,0.470051,0.897955,0.00664836,0.40349,0.959551,0.631676,0.672146,0.7851,0.0942727,0.151219,0.173225,0.0898696,0.10224,0.315184,0.935926,0.789575,0.616519,0.172269,0.538294,0.905654,0.950885,0.589896,0.219281,0.428701,0.419987,0.401484,0.142901,0.988284,0.740571,0.0633746,0.834872,0.576165,0.873991,0.279416,0.699456,0.837623,0.477054,0.549996,0.548416,0.428499,0.32242,0.0548867,0.43695,0.0822259,0.919598,0.563998,0.180866,0.921233,0.194955,0.885232,0.482068,0.0787985,0.886539,0.131455,0.781503,0.648305,0.876332,0.669411,0.623785,0.172351,0.97748,0.533541,0.422375,0.22853,0.862565,0.681669,0.460529,0.126854,0.528577,0.483548,0.193695,0.617095,0.961033,0.736703,0.820417,0.196875,0.878357,0.747803,0.0943869,0.577401,0.143095,0.410426,0.719426,0.194021,0.963603,0.778765,0.765488,0.863438,0.2455,0.0690751,0.835666,0.509452,0.31599,0.0333518,0.864571,0.705278,0.818701,0.345001,0.064864,0.791522,0.364298,0.563289,0.0673424,0.82892,0.423839,0.356181,0.546895,0.994466,0.184166,0.626864,0.26804,0.848272,0.324172,0.200606,0.999631,0.610049,0.0048095,0.713746,0.360515,0.685651,0.713009,0.82118,0.773462,0.137766,0.725945,0.738566,0.656633,0.947193,0.29145,0.479269,0.84624,0.0136032,0.19769,0.758072,0.229492,0.841821,0.63302,|0.293084,0.557687,0.115109,0.0786795,0.203678,0.553187,0.995183,0.663608,0.421603,0.877905,0.980844,0.968795,0.744956,0.189834,0.908847,0.868944,0.601199,0.242572,0.353758,0.762508,0.584695,0.627423,0.350483,0.302497,0.501145,0.0176046,0.803473,0.806958,0.0421364,0.871533,0.799087,0.567547,0.401299,0.117395,0.269806,0.126112,0.84027,0.638225,0.0589633,0.353746,0.358859,0.818697,0.787373,0.600661,0.54594,0.12403,0.76526,0.0170009,0.863184,0.211257,0.407744,0.858088,0.580872,0.0809412,0.213475,0.671852,0.887768,0.858597,0.141697,0.675886,0.452709,0.4691,0.773902,0.412073,0.0968625,0.346404,0.603357,0.488643,0.64402,0.3379,0.724224,0.0996919,0.679267,0.756335,0.458851,0.163831,0.676183,0.109813,0.254803,0.467359,0.602385,0.942271,0.0718089,0.493168,0.297177,0.0948637,0.6222,0.299508,0.167296,0.833223,0.0152073,0.256991,0.914182,0.224716,0.616672,0.256984,0.988551,0.428568,0.274528,0.400567,0.197383,0.0333809,0.535832,0.799517,0.992348,0.25519,0.550568,0.204734,0.387816,0.240556,0.237145,0.841605,0.22797,0.571789,0.07428,0.202833,0.366134,0.615709,0.276129,0.285855,0.338764,0.939811,0.860005,0.0916861,0.518032,0.791995,0.907936,0.900999,0.905377,0.11376,0.0723746,0.242856,0.291993,0.710753,0.306824,0.0260511,0.604372,0.281884,0.308688,0.874944,0.0273504,0.539985,0.520115,0.521738,0.523232,0.756662,0.885854,0.960552,0.881487,0.0713505,0.795611,0.610399,0.531113,0.636787,0.56787,0.613245,0.836352,0.451552,0.748186,0.754897,0.0283613,0.903751,0.92633,0.495806,0.492522,0.9714,0.971894,0.048893,0.354113,0.0754937,0.633202,0.884431,0.411357,0.0842044,0.34566,0.358401,0.570957,0.509059,0.484285,0.920941,0.181554,0.0324962,0.671483,0.437702,0.418222,0.940547,0.71854,0.411041,0.851084,0.301607,0.585523,0.913259,0.903932,0.130826,0.610001,0.808204,0.451353,0.502563,0.638241,0.819422,0.638913,0.716378,0.307805,0.427665,0.29232,0.957785,0.866718,0.825202,0.110961,0.739554,0.633059,0.161094,0.669672,0.930713,0.00937647,0.044753,0.753628,0.204457,0.54945,0.317926,0.144649,0.268224,0.806683,0.391165,0.43346,0.69079,0.810656,0.318714,0.589706,0.0428199,0.141374,0.712272,0.747337,0.15401,0.210254,0.513266,0.220505,0.509565,0.663442,0.964559,0.643255,0.360774,0.846621,0.0576113,0.672716,0.161596,0.642213,0.18775,0.494457,0.421413,0.161402,0.250446,0.982254,0.876533,0.0949124,0.831144,0.326401,0.29722,0.867043,0.711566,0.163722,0.373636,0.614605,0.950119,0.147776,0.108819,0.323057,0.857813,0.820537,0.946467,0.367115,0.564272,0.583712,0.234536,0.276884,0.0626802,0.798983,0.0562,0.730658,0.172378,0.895758,0.0794705,0.874606,0.616066,0.645939,0.888119,0.0225035,0.801732,0.476418,0.494864,0.673561,0.593604,0.263275,0.996758,0.678431,0.718041,0.0524453,0.396686,0.340578,0.230499,0.0830641,0.930231,0.88181,0.822528,0.930817,0.880016,0.246743,0.562651,0.882737,0.650533,0.472226,0.90285,0.540075,0.0110999,0.837684,0.943956,0.827187,0.534743,0.704892,0.168165,0.0172476,0.245117,0.843113,0.00627148,0.126396,0.488048,0.805434,0.47431,0.560863,0.657598,0.0675455,0.953834,0.0886608,0.847739,0.049031,0.484458,0.412332,0.546872,0.191689,0.931767,0.648767,0.850441,0.223856,0.409744,0.739151,0.204991,0.21442,0.779139,0.531065,0.671944,0.746107,0.212047,0.597238,0.153377,0.0279608,0.495507,0.686571,0.837173,0.255401,0.326806,0.70769,0.609961,0.945646,0.87927,0.0164907,0.200085,0.927332,0.923762,0.381125,0.483339,0.253391,0.303052,0.0805528,0.599607,0.148942,0.41309,0.616028,0.721869,0.323462,0.149856,0.709014,0.193559,0.259079,0.94209,0.825532,0.39398,0.209395,0.859587,0.627222,0.912781,0.281828,0.519757,0.0310282,0.159616,0.717021,0.791113,0.183238,0.289325,0.311454,0.604863,0.997154,0.5582,0.238511,0.287037,0.735458,0.171907,0.852319,0.287828,0.189102,0.678762,0.702692,0.106947,0.84172,0.250547,0.479249,0.607102,0.167475,0.688967,0.4956,0.074275,0.753571,0.469085,0.452701,0.562442,0.0665918,0.242514,0.880793,0.791633,0.523139,0.332853,0.778233,0.31866,0.507948,0.750973,0.668334,0.101903,0.461227,0.074371,0.177316,0.982886,0.713099,0.897319,0.948604,0.145653,0.136734,0.0695381,0.692693,0.309994,0.1785,0.314743,0.14329,0.909044,0.400558,0.468645,0.84277,0.286748,0.632031,0.426931,0.043271,0.377892,0.582491,0.90256,0.632893,0.398975,0.89827,0.697318,0.150066,0.67867,0.249607,0.742415,0.802008,0.908512,0.137091,0.498739,0.305039,0.381107,0.123984,0.645008,0.331629,0.245436,0.941127,0.389775,0.421905,0.557742,0.180948,0.7553,0.523861,0.980182,0.785759,0.0449769,0.314639,0.64396,0.609038,0.480059,0.527946,0.746053,0.727902,0.828199,0.46614,0.0255662,0.627217,0.750427,0.221446,0.123898,0.754606,0.934112,0.654978,0.0372914,0.262764,0.886945,0.575925,0.109197,0.236522,0.103539,0.865235,0.789705,0.0535124,0.765765,0.865039,0.839183,0.0581074,0.693269,0.828097,0.0543694,0.742234,0.878897,0.793807,0.127677,0.534599,0.19552,0.284937,0.848314,0.830717,0.80202,0.356877,0.690587,0.945329,0.13542,0.54875,0.164282,0.505508,0.838068,0.258574,0.648427,0.84715,0.630661,0.788217,0.418624,0.162332,0.0729541,0.481179,0.776646,0.718986,0.241961,0.271807,0.248584,0.251526,0.449288,0.36117,0.372683,0.667955,0.372651,0.282943,0.147396,0.904878,0.627111,0.929117,0.201398,0.826858,0.805941,0.890499,0.396332,0.906759,0.28846,0.929033,0.58965,0.0121112,0.447898,0.0193831,0.476456,0.0591759,0.636556,0.536775,0.706964,0.736455,0.767388,0.671145,0.420882,0.835039,0.161159,0.398833,0.434891,0.907255,0.442638,0.85218,0.592836,0.870424,0.904827,0.830686,0.53743,0.625045,0.320923,0.617116,0.31308,0.580869,0.169525,0.448694,0.572586,0.11244,0.111678,0.901527,0.0389475,0.15986,0.112217,0.279216,0.994508,0.612771,0.105918,0.495049,0.553431,0.574314,0.176625,0.869867,0.514463,0.839587,0.562604,0.863262,0.445582,0.697052,0.357887,0.245112,0.483411,0.437497,0.220357,0.707505,0.894448,0.962102,0.134412,0.567994,0.0357911,0.196109,0.962107,0.33608,0.90684,0.486845,0.647454,0.0167255,0.545548,0.925856,0.62999,0.0612779,0.584913,0.998877,0.867455,0.851431,0.349889,0.101525,0.347619,0.69103,0.595778,0.675296,0.364893,0.736128,0.878533,0.37653,0.950906,0.854914,0.489034,0.671563,0.230882,0.0863016,0.062205,0.0313004,0.209302,0.043424,0.459433,0.398072,0.344945,0.716351,0.824336,0.371198,0.910606,0.0604073,0.970191,0.639231,0.809216,0.576938,0.211092,0.30174,0.797065,0.583715,0.263803,0.67434,0.993266,0.937313,0.354349,0.871782,0.620447,0.214919,0.516102,0.501769,0.788086,0.137778,0.0586745,0.681395,0.909451,0.76209,0.31883,0.131308,0.942838,0.432303,0.587977,0.759903,0.748973,0.22521,0.642142,0.630084,0.38758,0.605821,0.228986,0.316467,0.117331,0.923126,0.374856,0.869253,0.858006,0.475693,0.242349,0.894107,0.401274,0.91672,0.946684,0.975204,0.0908934,0.859289,0.735167,0.0309521,0.60437,0.220745,0.442003,0.8448,0.561132,0.358067,0.817874,0.0322703,0.853778,0.0752462,0.300205,0.817672,0.541918,0.510142,0.912678,0.343287,0.928908,0.245864,0.0731861,0.271241,0.681079,0.406208,0.0650873,0.162819,0.197962,0.0571276,0.446379,0.795529,0.111745,0.594854,0.733122,0.538551,0.0801286,0.0902637,0.0381421,0.927919,0.133677,0.986186,0.241051,0.632636,0.0507852,0.298209,0.703109,0.800206,0.516129,0.585449,0.127062,0.912799,0.829907,0.135573,0.524847,0.690639,0.0183958,0.420731,0.137045,0.942205,0.237171,0.5815,0.0918211,0.00907773,0.964969,0.473676,0.686256,0.00452155,0.442409,0.620402,0.851923,0.197111,0.31938,0.754472,0.944364,0.105397,0.824784,0.193057,0.708227,0.509345,0.45211,0.269982,0.430201,0.763563,0.781513,0.585369,0.632248,0.104319,0.774632,0.650954,0.473328,0.863126,0.0536882,0.962775,0.295404,0.825729,0.570717,0.626613,0.61219,0.842346,0.894967,0.119937,0.974558,0.064469,0.559072,0.528181,0.0380793,0.839825,0.514977,0.856308,0.294737,0.286839,0.418979,0.997519,0.715705,0.776358,0.170433,0.325281,0.98468,0.710069,0.351092,0.65886,0.385512,0.806534,0.537358,0.594171,0.0710798,0.44411,0.861643,0.318046,0.600613,0.560565,0.251905,0.0119128,0.402025,0.248953,0.817006,0.924415,0.248069,0.0989106,0.0635036,0.533921,0.158152,0.29002,0.203664,0.0922458,0.733254,0.699926,0.352059,0.531522,0.218151,0.909783,0.790211,0.158249,0.207301,0.343775,0.167298,0.804264,0.303162,0.632492,0.943074,0.497656,0.31783,0.142404,0.0897473,0.781551,0.786214,0.971705,0.783537,0.000822365,0.308178,0.397272,0.59018,0.645282,0.81222,0.276953,0.835677,0.085941,0.500848,0.349825,0.242435,0.624819,0.183724,0.240995,0.96501,0.103206,0.0753977,0.226786,0.818152,0.289436,0.435194,0.35588,0.10958,0.698353,0.237472,0.495161,0.199644,0.507458,0.290398,0.137186,0.376605,0.650811,0.101462,0.64043,0.165964,0.74778,0.148588,0.849903,0.777437,0.340097,0.389205,0.7896,0.140665,0.820439,0.603599,0.980548,0.850955,0.233582,0.0834827,0.0374016,0.603184,0.448807,0.0211566,0.661909,0.964795,0.485877,0.305694,0.196956,0.0642098,0.173809,0.515662,0.749024,0.384238,0.526678,0.621893,0.763497,0.241271,0.838995,0.428858,0.873427,0.137664,0.421195,0.241723,0.471911,0.690027,0.989727,0.502634,0.640719,0.277095,0.988596,0.0798909,0.0622404,0.825829,0.177964,0.706388,0.511798,0.732838,0.878962,0.913365,0.119528,0.174231,0.613078,0.401823,0.851037,0.236966,0.02359,0.18889,|0.256919,0.278871,0.532455,0.769708,0.66741,0.354512,0.166696,0.979778,0.397013,0.463716,0.647209,0.669829,0.33645,0.92545,0.475146,0.229523,0.437069,0.407025,0.71286,0.455766,0.189355,0.973715,0.0389122,0.366048,0.621191,0.104055,0.83026,0.903717,0.154853,0.758647,0.948499,0.330243,0.532403,0.661503,0.0653808,0.251386,0.361169,0.567317,0.632338,0.0370581,0.995297,0.795141,0.169422,0.335413,0.700812,0.217277,0.0566292,0.305934,0.98808,0.0884037,0.780773,0.234646,0.919707,0.0224764,0.809436,0.707659,0.19691,0.367315,0.457664,0.668745,0.129944,0.473372,0.0225277,0.968402,0.514755,0.390444,0.375431,0.180197,0.906694,0.133122,0.582357,0.781333,0.898554,0.020047,0.881805,0.918911,0.621781,0.478984,0.0286579,0.539756,0.44003,0.74755,0.620887,0.00607723,0.627077,0.460073,0.323195,0.189286,0.395589,0.969828,0.523639,0.838416,0.660734,0.132292,0.345767,0.220619,0.538719,0.667862,0.991947,0.887319,0.633822,0.591836,0.308649,0.985804,0.00606841,0.767802,0.167754,0.330903,0.830651,0.353294,0.204913,0.126534,0.479674,0.0572817,0.514328,0.375581,0.854343,0.807354,0.424188,0.98235,0.956044,0.0757425,0.07767,0.0882034,0.0712402,0.973088,0.203771,0.721213,0.820085,0.519161,0.957439,0.235947,0.397538,0.63614,0.282517,0.566938,0.55672,0.504629,0.610994,0.811025,0.100867,0.880296,0.419278,0.324097,0.286249,0.699362,0.185491,0.424233,0.256438,0.750766,0.558043,0.511696,0.655678,0.683192,0.538063,0.432035,0.368714,0.722955,0.936863,0.777834,0.0987877,0.940607,0.465382,0.541126,0.420635,0.664535,0.763423,0.729743,0.557728,0.782628,0.260783,0.817574,0.996265,0.398786,0.183064,0.833451,0.291554,0.0415052,0.11488,0.608594,0.42955,0.934203,0.999431,0.291417,0.832227,0.349522,0.23085,0.959358,0.833256,0.25573,0.653713,0.461703,0.138042,0.925489,0.0471811,0.870592,0.666146,0.345741,0.589423,0.287709,0.817815,0.229556,0.770433,0.754186,0.979428,0.51379,0.611983,0.666929,0.670455,0.416598,0.821406,0.774893,0.63932,0.631657,0.524089,0.324334,0.560886,0.536715,0.925963,0.87476,0.820029,0.759095,0.0382943,0.280119,0.0485519,0.427534,0.796346,0.966706,0.255978,0.189796,0.176102,0.0866016,0.959857,0.617622,0.522385,0.977714,0.0858184,0.881017,0.811948,0.21006,0.154683,0.151424,0.181939,0.117265,0.957833,0.732235,0.189612,0.956376,0.27902,0.63629,0.173188,0.824355,0.411996,0.262806,0.378731,0.162798,0.348851,0.0964241,0.587157,0.150403,0.67328,0.250352,0.0757845,0.811245,0.935525,0.950855,0.480289,0.271701,0.691088,0.967723,0.311616,0.934478,0.0661393,0.00642574,0.0815875,0.0590466,0.00853896,0.776051,0.659279,0.30901,0.383077,0.311089,0.0158578,0.272905,0.0539931,0.167404,0.944047,0.284725,0.952489,0.0372831,0.0303735,0.192713,0.742386,0.742885,0.311577,0.747012,0.576654,0.137127,0.514848,0.943327,0.80393,0.293966,0.70561,0.953266,0.234228,0.850894,0.31066,0.266899,0.461815,0.0641411,0.528589,0.0517806,0.209981,0.699122,0.842304,0.471891,0.641936,0.198673,0.626436,0.184762,0.812874,0.0350043,0.713522,0.487271,0.453999,0.853934,0.933472,0.438112,0.116722,0.539845,0.535726,0.704116,0.0986851,0.615145,0.959337,0.870154,0.182227,0.10461,0.964978,0.473641,0.669148,0.661434,0.808603,0.617857,0.849017,0.311037,0.0652061,0.788441,0.508278,0.016425,0.38776,0.0161319,0.889213,0.846712,0.768526,0.601875,0.0101187,0.0231663,0.00813323,0.173099,0.558377,0.588045,0.946679,0.0226484,0.704585,0.0956526,0.762757,0.215245,0.854419,0.652388,0.0617195,0.764807,0.845674,0.922631,0.275879,0.238209,0.836263,0.0599211,0.130767,0.973802,0.235024,0.200043,0.814434,0.720083,0.534133,0.686816,0.11461,0.152769,0.990107,0.711963,0.450385,0.495845,0.946275,0.91349,0.0743044,0.598628,0.59397,0.248758,0.658412,0.703793,0.302689,0.574254,0.436124,0.268573,0.365582,0.686861,0.803711,0.479545,0.844961,0.633595,0.189367,0.86461,0.509718,0.622894,0.983226,0.0183085,0.737777,0.739657,0.897087,0.285899,0.509265,0.883857,0.577263,0.899647,0.315813,0.0502618,0.237455,0.584849,0.688514,0.797897,0.858807,0.192444,0.0772111,0.0887315,0.0812785,0.397788,0.418283,0.43552,0.0988234,0.0681689,0.534079,0.142618,0.702216,0.640821,0.732969,0.814088,0.590558,0.020736,0.686581,0.478697,0.0337018,0.947087,0.981358,0.944782,0.66415,0.996253,0.289053,0.515479,0.0451834,0.147231,0.760807,0.0543336,0.582364,0.599232,0.60746,0.984777,0.120374,0.385644,0.632909,0.159675,0.955118,0.800849,0.188406,0.875858,0.268152,0.937409,0.17441,0.0452434,0.151609,0.303101,0.869964,0.150784,0.305221,0.0313326,0.580866,0.797715,0.340103,0.745178,0.490863,0.957027,0.817033,0.215249,0.88945,0.659629,0.82368,0.864059,0.397979,0.629023,0.24767,0.295829,0.351375,0.65669,0.0900909,0.319617,0.891308,0.190378,0.656519,0.938204,0.897346,0.631915,0.379078,0.616851,0.734552,0.971275,0.719894,0.509434,0.364268,0.495293,0.163325,0.190314,0.826878,0.757032,0.648177,0.590113,0.505611,0.330244,0.891839,0.627854,0.365634,0.439144,0.632034,0.733311,0.611958,0.241357,0.479792,0.73844,0.987025,0.0968369,0.561705,0.602706,0.397436,0.494536,0.385961,0.993535,0.599194,0.817409,0.294344,0.390888,0.0390612,0.697874,0.333889,0.431888,0.0716918,0.667281,0.941449,0.040838,0.679503,0.179071,0.453613,0.26732,0.145031,0.117866,0.173351,0.966706,0.14088,0.676742,0.82478,0.172801,0.527749,0.0882132,0.819896,0.304752,0.821793,0.87255,0.311153,0.703983,0.999765,0.13357,0.943926,0.183501,0.957915,0.205602,0.766171,0.604038,0.199906,0.31683,0.512752,0.794645,0.0994917,0.453444,0.851905,0.992905,0.789465,0.182942,0.0348502,0.387649,0.702794,0.892896,0.0172333,0.678111,0.511948,0.58242,0.405291,0.0940334,0.522574,0.76,0.769595,0.203858,0.550655,0.0479645,0.476868,0.825299,0.0164692,0.880471,0.360326,0.0943275,0.457995,0.118777,0.524486,0.779025,0.5234,0.359878,0.472482,0.561795,0.381886,0.965735,0.171792,0.546263,0.371254,0.899167,0.230721,0.379651,0.144077,0.705381,0.225381,0.873381,0.214254,0.315622,0.566996,0.837676,0.99619,0.936436,0.00506884,0.622873,0.191669,0.771899,0.263152,0.212931,0.272027,0.964539,0.835746,0.163776,0.867035,0.0501603,0.760568,0.705629,0.00260305,0.399601,0.925711,0.943635,0.852528,0.985288,0.800076,0.259457,0.744314,0.215411,0.583117,0.125457,0.880677,0.848164,0.967672,0.169201,0.281231,0.575383,0.500471,0.22597,0.356646,0.695691,0.213478,0.157855,0.433483,0.0238904,0.375971,0.68358,0.414094,0.519459,0.640839,0.569123,0.479345,0.54002,0.578245,0.518769,0.807388,0.414187,0.028222,0.0609133,0.518012,0.882474,0.919857,0.012233,0.215998,0.209637,0.510537,0.066607,0.368771,0.0624782,0.711788,0.675847,0.0547967,0.460747,0.0916387,0.287174,0.52744,0.677816,0.332363,0.172688,0.370529,0.596159,0.00992256,0.636228,0.556551,0.781422,0.227037,0.887199,0.43747,0.577922,0.0324985,0.18402,0.210988,0.193513,0.254044,0.286424,0.750205,0.979881,0.245649,0.324646,0.334027,0.425767,0.570568,0.00494331,0.419966,0.552127,0.274007,0.607171,0.47429,0.883652,0.0023706,0.863821,0.651491,0.127062,0.842037,0.134602,0.140027,0.981731,0.307637,0.403178,0.634608,0.0600842,0.0214073,0.969072,0.414931,0.457391,0.997738,0.478468,0.486403,0.880146,0.345949,0.0353886,0.136778,0.368215,0.0285013,0.438137,0.12641,0.239884,0.578512,0.0922156,0.67204,0.125543,0.408737,0.430799,0.743708,0.557208,0.335501,0.620584,0.872202,0.627748,0.639065,0.589382,0.524025,0.733957,0.151504,0.405038,0.337247,0.173079,0.986001,0.103701,0.160538,0.314252,0.845676,0.887524,0.0414846,0.941954,0.223321,0.857172,0.453218,0.50666,0.392646,0.152302,0.957996,0.810579,0.93531,0.932102,0.851611,0.127871,0.171982,0.782593,0.794622,0.0927827,0.40417,0.867358,0.198791,0.473534,0.109307,0.635957,0.963172,0.28941,0.860048,0.968226,0.670282,0.0671722,0.216776,0.587894,0.446015,0.05216,0.782488,0.323585,0.456532,0.509502,0.282528,0.0268092,0.00460809,0.842277,0.275207,0.890084,0.552674,0.663038,0.388811,0.988454,0.764753,0.707277,0.720247,0.252297,0.0504786,0.983279,0.779106,0.446879,0.501545,0.699799,0.0387785,0.931688,0.473819,0.30757,0.472757,0.802201,0.464595,0.912219,0.92538,0.890534,0.778147,0.474035,0.26538,0.827017,0.397663,0.746788,0.0396709,0.0494564,0.755261,0.394269,0.208239,0.0274848,0.912368,0.514485,0.291898,0.926417,0.797002,0.964262,0.175284,0.883195,0.133813,0.885356,0.371097,0.833119,0.173765,0.348778,0.886458,0.873878,0.607215,0.137105,0.553383,0.337384,0.443465,0.836175,0.92814,0.731716,0.953661,0.661794,0.575154,0.855001,0.453135,0.437628,0.642031,0.896703,0.102086,0.473848,0.249176,0.951985,0.133215,0.512109,0.737649,0.897486,0.756622,0.0279674,0.725946,0.848275,0.291022,0.204242,0.737432,0.299571,0.878776,0.843173,0.785775,0.245786,0.594112,0.988891,0.675635,0.0372738,0.932558,0.137308,0.709934,0.0369513,0.458345,0.272247,0.0912094,0.331613,0.588934,0.0322949,0.82893,0.651345,0.966929,0.548631,0.642716,0.563135,0.179313,0.854091,0.0575711,0.635477,0.903944,0.351502,0.636734,0.371474,0.291553,0.863295,0.337252,0.691605,0.531851,0.1927,0.32407,0.668423,0.0677513,0.392579,0.954433,0.333322,0.681977,0.178242,0.82576,0.310334,0.412487,0.554634,0.498577,0.194316,0.647506,0.482362,0.0163785,0.0547217,0.00072974,0.179343,0.840082,0.585907,0.0700184,0.454645,0.349139,0.582577,0.278669,0.262629,0.451659,0.478798,0.0590228,0.326324,0.0149434,0.380839,|0.261546,0.675529,0.18237,0.68173,0.26992,0.842399,0.686242,0.613608,0.815877,0.803744,0.200905,0.658228,0.108571,0.85387,0.746569,0.686701,0.137507,0.728058,0.936099,0.890026,0.228789,0.726867,0.0384222,0.651326,0.536439,0.82462,0.294339,0.848385,0.361557,0.524803,0.611699,0.450221,0.961747,0.17092,0.507703,0.936054,0.758328,0.289899,0.517778,0.690221,0.66373,0.567633,0.971343,0.393254,0.388002,0.932017,0.646959,0.420582,0.000620544,0.532775,0.486919,0.757833,0.989906,0.416721,0.344341,0.771271,0.764701,0.601901,0.598511,0.236636,0.274055,0.0136258,0.0613207,0.99432,0.85231,0.471937,0.792276,0.737431,0.231521,0.110157,0.183319,0.0152471,0.0550155,0.598576,0.941561,0.251924,0.41072,0.57121,0.239043,0.313392,0.493446,0.17283,0.698208,0.167505,0.935985,0.661181,0.536992,0.387516,0.0235826,0.879654,0.420203,0.112425,0.843385,0.644862,0.641896,0.308413,0.927016,0.16657,0.446746,0.370529,0.642174,0.837876,0.617592,0.0420243,0.761053,0.161778,0.722856,0.322539,0.591187,0.214241,0.53069,0.755202,0.1732,0.266141,0.537139,0.216221,0.0652951,0.113097,0.541192,0.471083,0.581387,0.847822,0.449086,0.66488,0.487947,0.489001,0.117196,0.365048,0.101858,0.779402,0.521922,0.00297773,0.286293,0.728829,0.673778,0.669228,0.500476,0.733921,0.17979,0.385441,0.371736,0.920029,0.337826,0.40243,0.266415,0.285649,0.982981,0.467752,0.403137,0.235073,0.298439,0.225282,0.888635,0.268967,0.131677,0.700552,0.772819,0.652284,0.134102,0.947285,0.828177,0.861981,0.669671,0.611095,0.947879,0.889698,0.492205,0.126475,0.629714,0.0843383,0.397373,0.201273,0.849083,0.867984,0.256346,0.985812,0.194496,0.50055,0.593858,0.703439,0.401934,0.440088,0.121105,0.327376,0.131187,0.632928,0.374126,0.115001,0.149747,0.129005,0.390258,0.919265,0.579653,0.33693,0.326917,0.276918,0.497577,0.902192,0.157915,0.413259,0.581258,0.896698,0.696634,0.361015,0.109097,0.804775,0.0429592,0.882854,0.41819,0.282178,0.129941,0.652865,0.724611,0.564666,0.582917,0.98311,0.959619,0.28783,0.285494,0.606853,0.591344,0.726095,0.469885,0.781092,0.366709,0.389508,0.16792,0.851974,0.627028,0.0530142,0.31369,0.0707915,0.371084,0.350866,0.34028,0.552472,0.591701,0.62025,0.969155,0.314757,0.416753,0.726842,0.750862,0.693086,0.185075,0.583149,0.55491,0.517278,0.345291,0.465804,0.266541,0.894128,0.622982,0.0854151,0.136901,0.826585,0.980036,0.0437579,0.891198,0.770924,0.54472,0.832255,0.876554,0.993179,0.479364,0.774433,0.312513,0.399186,0.384531,0.353389,0.641822,0.0263675,0.0134071,0.985759,0.0174361,0.7861,0.946444,0.351288,0.119083,0.426439,0.785662,0.778881,0.76849,0.740501,0.574089,0.868283,0.302329,0.730655,0.619506,0.584093,0.201531,0.0382857,0.182918,0.933044,0.52364,0.490587,0.89797,0.384101,0.122352,0.150023,0.195059,0.953975,0.555722,0.53569,0.701296,0.554193,0.620348,0.112468,0.399997,0.00906211,0.660023,0.0657709,0.0943636,0.881224,0.888308,0.130896,0.834647,0.741582,0.782907,0.0912541,0.145032,0.239433,0.399918,0.188857,0.247439,0.0632883,0.666777,0.145031,0.372376,0.928407,0.448394,0.947117,0.136011,0.702831,0.728684,0.0730458,0.570309,0.186661,0.258859,0.108393,0.918193,0.376906,0.299147,0.106815,0.217331,0.628274,0.623208,0.190991,0.74386,0.854106,0.353439,0.875554,0.639672,0.58234,0.431468,0.0187203,0.167767,0.846774,0.841154,0.104201,0.751593,0.599895,0.700446,0.547626,0.763049,0.18915,0.711448,0.968364,0.443866,0.778874,0.266607,0.704179,0.362859,0.674238,0.745885,0.0250055,0.676384,0.188582,0.483993,0.655105,0.353893,0.878905,0.939531,0.0201025,0.083684,0.238977,0.461217,0.354809,0.474238,0.414364,0.434612,0.55628,0.433726,0.654546,0.681737,0.249553,0.803843,0.621338,0.437998,0.0813489,0.522898,0.854863,0.158806,0.104952,0.727587,0.598941,0.894645,0.695507,0.122778,0.577056,0.882524,0.957651,0.970805,0.179669,0.418283,0.10511,0.495566,0.883002,0.39758,0.86427,0.87497,0.30327,0.782739,0.530714,0.155952,0.45515,0.262347,0.825366,0.10612,0.462832,0.420233,0.497332,0.854635,0.607753,0.377668,0.734421,0.44346,0.0645955,0.312365,0.490393,0.954408,0.162808,0.19122,0.380273,0.9217,0.103306,0.845035,0.604531,0.542199,0.675993,0.476375,0.912444,0.570184,0.688325,0.926406,0.648031,0.653053,0.29805,0.781758,0.500773,0.930435,0.422361,0.91855,0.779666,0.286758,0.00119889,0.990085,0.411521,0.155385,0.413999,0.00292993,0.571797,0.0170083,0.391167,0.260108,0.528756,0.891149,0.676815,0.132778,0.691116,0.922518,0.834098,0.474918,0.171051,0.0938199,0.165707,0.0969574,0.537314,0.907378,0.917995,0.830778,0.172312,0.519334,0.624545,0.953448,0.295636,0.558042,0.0807663,0.0575885,0.931583,0.412862,0.226304,0.796718,0.0685716,0.707756,0.879384,0.3652,0.649705,0.329296,0.168161,0.457853,0.550199,0.779591,0.603199,0.918304,0.481533,0.614386,0.804873,0.188758,0.335217,0.182087,0.19674,0.152331,0.972576,0.672294,0.625746,0.540512,0.474113,0.0459546,0.703547,0.755883,0.503635,0.745097,0.549079,0.69557,0.848755,0.314789,0.213771,0.955426,0.991674,0.252795,0.444008,0.845623,0.00248903,0.034831,0.808288,0.907873,0.0781509,0.684782,0.0568451,0.301573,0.84455,0.154053,0.941776,0.162775,0.134144,0.616852,0.88687,0.601874,0.256088,0.835443,0.271999,0.982746,0.804898,0.920509,0.499216,0.642066,0.461969,0.741136,0.372788,0.730361,0.402776,0.722006,0.109507,0.450791,0.125629,0.785625,0.913273,0.36701,0.148718,0.261088,0.241964,0.221487,0.129681,0.930488,0.449748,0.0923933,0.797866,0.997246,0.0315261,0.293982,0.747673,0.215821,0.222743,0.197315,0.0471907,0.351192,0.628148,0.253874,0.0547011,0.869859,0.358093,0.751225,0.553554,0.820378,0.257891,0.872244,0.705686,0.972864,0.399072,0.241141,0.379306,0.264212,0.0510189,0.209391,0.999752,0.829761,0.727876,0.19673,0.3374,0.289012,0.825791,0.794756,0.488903,0.857787,0.662981,0.730678,0.363107,0.346973,0.265277,0.0182485,0.951172,0.0822843,0.970409,0.576723,0.336569,0.212621,0.926414,0.258511,0.956771,0.858378,0.730067,0.178032,0.545359,0.560864,0.317627,0.554187,0.43834,0.1739,0.59229,0.706261,0.511124,0.170558,0.988211,0.276304,0.0797014,0.484317,0.0140393,0.746684,0.857282,0.545832,0.62994,0.150533,0.562679,0.103462,0.551636,0.527595,0.800289,0.932724,0.752219,0.403681,0.0148754,0.874513,0.722498,0.444573,0.903503,0.379631,0.508615,0.708205,0.00721312,0.908437,0.576313,0.859354,0.556623,0.117437,0.79201,0.805958,0.255437,0.759572,0.843856,0.701576,0.558763,0.0401924,0.927077,0.44615,0.0403548,0.943936,0.716183,0.846042,0.967454,0.889018,0.0491288,0.943685,0.673144,0.921904,0.586608,0.886235,0.395567,0.714333,0.548032,0.343479,0.900723,0.10005,0.349266,0.181635,0.935547,0.420315,0.393652,0.98938,0.677219,0.986648,0.824534,0.0280511,0.48444,0.608652,0.881316,0.771329,0.483891,0.0825649,0.535232,0.732532,0.786431,0.33313,0.12179,0.770993,0.16775,0.213327,0.751016,0.680776,0.72758,0.725943,0.826201,0.520794,0.184648,0.929207,0.996573,0.888486,0.0519736,0.602485,0.313956,0.185941,0.102641,0.848378,0.928087,0.226665,0.183915,0.199792,0.765244,0.145096,0.273496,0.13058,0.657835,0.549985,0.0767005,0.726634,0.698533,0.254849,0.424516,0.051002,0.532916,0.637065,0.730232,0.982018,0.262559,0.943166,0.0895292,0.447894,0.600357,0.694289,0.59446,0.590201,0.882547,0.418239,0.222587,0.359,0.439223,0.149171,0.122571,0.734225,0.139055,0.628169,0.0147117,0.0930755,0.176043,0.456614,0.744908,0.356444,0.523834,0.00592685,0.388072,0.228601,0.111671,0.384969,0.997395,0.674361,0.22744,0.617293,0.586503,0.704823,0.0457682,0.663244,0.0809637,0.0852368,0.738282,0.0365373,0.298268,0.470095,0.609808,0.757726,0.378382,0.18142,0.576451,0.840712,0.961909,0.537452,0.343248,0.910828,0.262502,0.874571,0.998278,0.192542,0.865209,0.820496,0.653751,0.525294,0.989859,0.7132,0.243231,0.789251,0.69702,0.260713,0.102984,0.12798,0.765425,0.524163,0.306032,0.715195,0.27888,0.27835,0.816649,0.488012,0.689893,0.521703,0.194001,0.251726,0.442651,0.844235,0.21669,0.986106,0.221336,0.508481,0.947317,0.419889,0.0711153,0.192657,0.412095,0.799276,0.268031,0.666886,0.504579,0.856859,0.326141,0.6754,0.774353,0.507852,0.635169,0.519862,0.386237,0.280552,0.114679,0.207356,0.218229,0.646759,0.757317,0.659259,0.779154,0.867356,0.230868,0.364689,0.719374,0.511193,0.838054,0.900497,0.0569839,0.143559,0.569481,0.409442,0.214677,0.504588,0.10055,0.294316,0.689494,0.489743,0.401189,0.431336,0.329998,0.11597,0.975204,0.597536,0.79979,0.396537,0.377066,0.0145468,0.623534,0.0155841,0.532694,0.11101,0.339896,0.424677,0.872238,0.823843,0.91541,0.492173,0.790763,0.548899,0.160867,0.267336,0.275791,0.551177,0.917452,0.0874969,0.781112,0.0384377,0.139764,0.817048,0.567901,0.482501,0.494498,0.420217,0.272323,0.132673,0.883777,0.882701,0.137597,0.191834,0.439353,0.350155,0.960169,0.602152,0.821297,0.157952,0.646598,0.0735448,0.373503,0.536108,0.942555,0.550634,0.982128,0.902276,0.543885,0.782547,0.266993,0.322836,0.439915,0.38234,0.983606,0.0908539,0.636983,0.312967,0.51126,0.363341,0.0812285,0.202831,0.308789,0.26496,0.730259,0.588294,0.402122,0.961691,0.431406,0.412839,0.0421928,0.903955,0.642216,0.148201,0.934318,0.0166715,0.485034,0.863163,0.523551,0.558157,0.284401,0.738801,0.342188,0.117702,0.893122,0.798065,0.307695,0.358667,0.45374,|0.933429,0.516574,0.206935,0.983933,0.614198,0.102058,0.440733,0.823656,0.994734,0.103103,0.12804,0.611638,0.418205,0.413354,0.543185,0.858666,0.587558,0.930377,0.116072,0.45537,0.378002,0.917956,0.023544,0.315893,0.709271,0.520972,0.804269,0.306776,0.625121,0.284619,0.744576,0.0687239,0.544905,0.994324,0.36832,0.220926,0.961441,0.541437,0.500283,0.357059,0.644023,0.13283,0.76698,0.0993053,0.316996,0.638944,0.514184,0.576122,0.599267,0.111601,0.996681,0.514418,0.952187,0.866972,0.698045,0.172041,0.244515,0.661038,0.742999,0.584787,0.151651,0.346422,0.857425,0.430982,0.287761,0.585719,0.439765,0.252602,0.848807,0.81193,0.595478,0.889351,0.225039,0.828443,0.287697,0.407814,0.783338,0.125748,0.177832,0.41413,0.518996,0.443698,0.231952,0.3189,0.118728,0.119807,0.128473,0.362231,0.236753,0.930438,0.588064,0.0296766,0.603345,0.577278,0.532597,0.440341,0.462792,0.539317,0.491962,0.0381848,0.445541,0.968665,0.880227,0.151565,0.945085,0.224301,0.794056,0.711983,0.852745,0.145731,0.199039,0.603197,0.659027,0.442573,0.871839,0.266635,0.153354,0.202556,0.60686,0.666257,0.99273,0.540148,0.606984,0.861813,0.53686,0.0736949,0.0520313,0.603996,0.82911,0.774546,0.96688,0.166901,0.508472,0.35589,0.821624,0.244298,0.679112,0.647264,0.982499,0.602575,0.563816,0.444409,0.324809,0.744153,0.189759,0.438043,0.219307,0.787594,0.626963,0.6713,0.297308,0.36701,0.270893,0.362594,0.810691,0.220782,0.0664759,0.329794,0.36789,0.707976,0.85693,0.435167,0.271985,0.838761,0.254248,0.525537,0.218367,0.676369,0.534544,0.251069,0.24653,0.355818,0.623055,0.0612546,0.961655,0.855142,0.641574,0.639336,0.200144,0.74412,0.187344,0.352115,0.586003,0.54688,0.866592,0.828263,0.396088,0.24263,0.481383,0.545504,0.202103,0.406641,0.947565,0.673626,0.38756,0.140672,0.0925491,0.189755,0.390838,0.0934359,0.933459,0.0795111,0.529241,0.865109,0.0101352,0.188677,0.2332,0.592669,0.379188,0.901949,0.732372,0.374869,0.937681,0.571234,0.861058,0.602744,0.942009,0.584937,0.891341,0.152063,0.307071,0.577617,0.947911,0.289185,0.408313,0.210391,0.629831,0.64857,0.875505,0.142129,0.0905077,0.698431,0.696311,0.862034,0.792506,0.863476,0.915106,0.216579,0.484896,0.343219,0.403445,0.427105,0.895982,0.00524139,0.260987,0.50669,0.0230982,0.43066,0.041603,0.237645,0.62588,0.444997,0.4047,0.276093,0.362717,0.453467,0.295214,0.791966,0.430055,0.174495,0.77901,0.807932,0.139434,0.0748155,0.592163,0.57089,0.000558317,0.854802,0.407402,0.259659,0.955111,0.773789,0.225518,0.759595,0.627213,0.504208,0.459078,0.725274,0.241913,0.0101334,0.772311,0.870376,0.410914,0.023521,0.910211,0.112064,0.156354,0.138247,0.508062,0.267449,0.665027,0.54751,0.928446,0.879337,0.818971,0.22965,0.522092,0.454768,0.939789,0.915469,0.336695,0.91269,0.132782,0.285682,0.834167,0.273536,0.11516,0.438487,0.146828,0.416593,0.679503,0.629619,0.739756,0.409552,0.529887,0.979561,0.331096,0.886137,0.773152,0.551987,0.800332,0.738852,0.119437,0.978908,0.603209,0.668451,0.273987,0.329359,0.913517,0.0629303,0.108218,0.668425,0.69922,0.667913,0.0733581,0.140892,0.815492,0.833103,0.296346,0.978535,0.622667,0.554938,0.279796,0.00604028,0.636183,0.0515893,0.541436,0.208436,0.476556,0.133122,0.524749,0.331905,0.859888,0.209932,0.397748,0.832113,0.360422,0.442949,0.172846,0.102231,0.148254,0.165509,0.571924,0.427763,0.181086,0.985923,0.127227,0.323673,0.271642,0.371949,0.179495,0.355844,0.472538,0.95662,0.965009,0.758352,0.961846,0.523305,0.474775,0.534453,0.423161,0.289718,0.334731,0.662719,0.309541,0.012226,0.592494,0.394673,0.798125,0.916923,0.88381,0.899543,0.12741,0.124886,0.671119,0.145906,0.54142,0.448635,0.242853,0.592465,0.379478,0.837743,0.658975,0.365338,0.721391,0.492518,0.350639,0.0595183,0.866255,0.96487,0.631658,0.681895,0.280339,0.822867,0.201684,0.870753,0.524983,0.446275,0.129779,0.52984,0.496893,0.01608,0.850782,0.330058,0.798329,0.982651,0.0833062,0.0967028,0.312091,0.802523,0.0357031,0.551203,0.316217,0.921614,0.0319146,0.462757,0.588836,0.746656,0.199811,0.328326,0.70911,0.51835,0.865167,0.229416,0.843293,0.718765,0.926851,0.348289,0.0493563,0.588818,0.04474,0.338214,0.60047,0.820547,0.39079,0.928463,0.574966,0.741248,0.206728,0.556389,0.367919,0.701476,0.281928,0.847561,0.121761,0.732481,0.330802,0.680559,0.427344,0.921275,0.95753,0.71063,0.988161,0.547835,0.818356,0.638619,0.722993,0.269679,0.799626,0.614988,0.949788,0.427656,0.361482,0.724415,0.940274,0.132875,0.988398,0.554348,0.210412,0.587037,0.69763,0.187301,0.51206,0.0778018,0.186897,0.634648,0.403709,0.869227,0.221246,0.393236,0.132149,0.617491,0.962672,0.0610631,0.0506942,0.710894,0.115324,0.691233,0.486289,0.407144,0.0681533,0.955507,0.17211,0.878143,0.361449,0.161023,0.218074,0.787217,0.116397,0.870619,0.265614,0.580626,0.210007,0.391513,0.19325,0.383737,0.721668,0.491658,0.356341,0.181688,0.0012849,0.823827,0.335224,0.00972182,0.851589,0.933705,0.859402,0.431168,0.748275,0.661586,0.96626,0.663341,0.422159,0.540973,0.880686,0.049248,0.975729,0.780235,0.795313,0.0614982,0.0993848,0.231594,0.906132,0.651961,0.449481,0.0210018,0.390255,0.779121,0.322879,0.136904,0.747259,0.0608593,0.0949386,0.555218,0.391968,0.928825,0.920982,0.663545,0.0639679,0.679493,0.436267,0.0910789,0.955164,0.43994,0.592689,0.960725,0.0586383,0.152009,0.279839,0.159595,0.245885,0.793091,0.790949,0.244939,0.942793,0.912459,0.737913,0.437477,0.933103,0.0838935,0.607175,0.657676,0.266261,0.109195,0.392011,0.11367,0.57109,0.872447,0.327648,0.0908582,0.352033,0.612874,0.27244,0.758134,0.029373,0.626349,0.372402,0.926618,0.334876,0.568452,0.0814856,0.895177,0.401859,0.387832,0.632559,0.510084,0.269584,0.417506,0.135145,0.4694,0.0749056,0.289119,0.0423738,0.991291,0.422095,0.768773,0.203532,0.281586,0.801938,0.642503,0.74249,0.633475,0.0251567,0.281701,0.515351,0.749645,0.221251,0.261448,0.594838,0.139159,0.231045,0.512283,0.321725,0.517179,0.758198,0.929755,0.465799,0.425078,0.934399,0.300873,0.979921,0.202535,0.327074,0.267597,0.41799,0.311733,0.323795,0.527995,0.403713,0.739813,0.021315,0.580722,0.653542,0.341129,0.502819,0.803025,0.49961,0.681725,0.968113,0.514415,0.00246358,0.631106,0.565488,0.368943,0.645779,0.914096,0.767895,0.292684,0.188613,0.572024,0.947108,0.325872,0.522601,0.739629,0.0767233,0.335057,0.0678904,0.157812,0.121139,0.171568,0.509391,0.192036,0.973787,0.543806,0.58565,0.683531,0.62252,0.164682,0.447754,0.277454,0.184966,0.0753174,0.549797,0.0234305,0.143692,0.330243,0.287204,0.389926,0.0438187,0.54504,0.293709,0.0466036,0.617362,0.812463,0.774338,0.021753,0.807216,0.741895,0.224719,0.80559,0.555986,0.848373,0.159614,0.697969,0.435834,0.214864,0.225865,0.844265,0.239081,0.0768066,0.0933555,0.799296,0.384984,0.0312176,0.762954,0.847086,0.641732,0.487659,0.00272906,0.711288,0.552496,0.231977,0.809037,0.416539,0.517201,0.102821,0.00971842,0.891411,0.188155,0.914755,0.0717447,0.587521,0.77021,0.602756,0.488869,0.872574,0.308381,0.366337,0.855141,0.536615,0.375378,0.480446,0.694934,0.0622834,0.738614,0.729351,0.931749,0.574219,0.353758,0.538137,0.256471,0.499405,0.279609,0.853289,0.416113,0.0614511,0.984666,0.775679,0.197365,0.804083,0.903475,0.411297,0.124992,0.806577,0.891597,0.390965,0.115198,0.400866,0.728597,0.479258,0.541143,0.973192,0.739227,0.892898,0.499695,0.188147,0.0534638,0.332568,0.626736,0.144771,0.786401,0.564378,0.704961,0.288975,0.708757,0.893011,0.0411952,0.134101,0.778467,0.379222,0.128447,0.352327,0.372387,0.965529,0.420559,0.115451,0.536331,0.273104,0.0814566,0.435686,0.441262,0.703594,0.852853,0.416861,0.504335,0.11827,0.602175,0.302397,0.24657,0.626957,0.860222,0.381408,0.261039,0.0493249,0.821257,0.810632,0.426254,0.0946452,0.539548,0.638126,0.263569,0.443407,0.538512,0.334143,0.565753,0.362333,0.981964,0.561866,0.599416,0.839848,0.487822,0.086695,0.86707,0.540824,0.570493,0.85341,0.216761,0.639627,0.144577,0.385831,0.612864,0.480061,0.752861,0.132633,0.719367,0.0205904,0.231592,0.135551,0.986607,0.0589726,0.929722,0.938803,0.851609,0.608634,0.733009,0.643891,0.931881,0.191109,0.779575,0.527826,0.32141,0.449593,0.154415,0.512428,0.879002,0.259068,0.645777,0.170313,0.145024,0.842975,0.173092,0.324956,0.11482,0.167423,0.636131,0.0433792,0.575364,0.747814,0.0301167,0.492917,0.0907544,0.814981,0.582798,0.811358,0.267888,0.814749,0.583736,0.841845,0.293442,0.878951,0.432075,0.919152,0.739879,0.839912,0.494221,0.625642,0.128551,0.381275,0.382841,0.508124,0.98289,0.667526,0.133856,0.785444,0.651704,0.880676,0.202436,0.0302357,0.0806958,0.591239,0.639543,0.595739,0.511715,0.332872,0.797069,0.588142,0.559057,0.472885,0.142704,0.899528,0.827368,0.63241,0.206172,0.126987,0.888179,0.039978,0.884099,0.228052,0.864222,0.878253,0.570262,0.0657734,0.650901,0.924112,0.463906,0.399702,0.912962,0.569493,0.506505,0.943796,0.691365,0.682311,0.818416,0.133237,0.284809,0.0703762,0.403567,0.712407,0.292255,0.563941,0.427357,0.136349,0.759681,0.744359,0.294329,0.0640213,0.660581,0.184938,0.169557,0.728814,0.389888,0.473439,0.536447,0.861681,0.599783,0.834675,0.505147,0.883421,0.723177,0.970672,0.807811,0.356484,0.151107,0.0818419,0.978716,0.0102211,0.52216,0.0123187,0.228037,0.824174,|0.674658,0.84964,0.727109,0.0914918,0.00712025,0.851506,0.404692,0.463684,0.0488386,0.444434,0.722125,0.853218,0.593431,0.609135,0.638368,0.289509,0.408027,0.0781854,0.660093,0.961832,0.0621789,0.179586,0.716344,0.927704,0.926532,0.673328,0.175342,0.21038,0.244526,0.349443,0.803917,0.590752,0.970298,0.403627,0.232243,0.255671,0.122722,0.0320359,0.997962,0.603787,0.906127,0.263583,0.265538,0.363771,0.925599,0.136025,0.687137,0.868585,0.441559,0.156605,0.338086,0.0983807,0.677063,0.0602432,0.615434,0.548037,0.076461,0.678995,0.225614,0.845541,0.4717,0.914817,0.698341,0.276303,0.389237,0.463001,0.129369,0.545583,0.523521,0.407689,0.0398914,0.477901,0.378076,0.926728,0.786331,0.824417,0.643091,0.360229,0.823296,0.134407,0.130068,0.990458,0.110167,0.665189,0.0132324,0.727837,0.251346,0.644422,0.0820321,0.412915,0.906977,0.621501,0.270508,0.503162,0.243927,0.0299922,0.62192,0.305528,0.170388,0.656049,0.516999,0.0635523,0.622514,0.47204,0.296275,0.367185,0.480227,0.114543,0.0318306,0.49995,0.659666,0.593709,0.0574011,0.501588,0.162611,0.939197,0.24019,0.675629,0.0854575,0.849483,0.919767,0.353526,0.24281,0.471574,0.215182,0.0534317,0.433508,0.896849,0.400141,0.266501,0.222995,0.608684,0.85693,0.983027,0.353715,0.00823969,0.788919,0.806487,0.39907,0.565361,0.708367,0.673469,0.157188,0.79992,0.583026,0.39818,0.10637,0.835172,0.315518,0.497545,0.238548,0.418123,0.800092,0.384215,0.625112,0.290805,0.804235,0.870893,0.61408,0.557058,0.46849,0.895193,0.0688539,0.931498,0.247125,0.0913718,0.598503,0.0765916,0.89491,0.164404,0.875035,0.482261,0.608421,0.399687,0.239651,0.324932,0.0416608,0.105006,0.991121,0.118573,0.158614,0.15214,0.922409,0.0246232,0.471416,0.220843,0.118799,0.950755,0.165749,0.126439,0.957889,0.761871,0.330124,0.995645,0.719233,0.514761,0.0177456,0.967007,0.0586672,0.414078,0.564458,0.00225884,0.00517738,0.147635,0.907963,0.777708,0.226731,0.282034,0.193168,0.348152,0.919111,0.505135,0.135484,0.46926,0.820115,0.0865172,0.664488,0.669527,0.150165,0.725891,0.481616,0.843145,0.687416,0.351656,0.536508,0.0883094,0.22172,0.892908,0.0699543,0.373389,0.476767,0.220527,0.123194,0.729681,0.786106,0.456275,0.220643,0.495533,0.556491,0.795224,0.884165,0.210206,0.55764,0.992396,0.104043,0.359923,0.936932,0.53377,0.468105,0.323868,0.662064,0.912896,0.182071,0.742299,0.738878,0.878666,0.0445373,0.0750882,0.241862,0.546999,0.367933,0.138505,0.107638,0.126709,0.127284,0.408999,0.139192,0.951918,0.877277,0.0132218,0.346477,0.998727,0.531302,0.9053,0.421596,0.828656,0.442488,0.675035,0.180617,0.913705,0.755426,0.1201,0.78167,0.893156,0.500516,0.0392163,0.226711,0.425054,0.524552,0.138561,0.426401,0.161063,0.931313,0.532694,0.923612,0.0493519,0.796416,0.607892,0.162112,0.394076,0.536465,0.16336,0.436256,0.696322,0.570572,0.498493,0.182057,0.4738,0.334061,0.656527,0.400237,0.69144,0.757228,0.418682,0.445734,0.320048,0.087877,0.538475,0.728533,0.62261,0.228409,0.726568,0.313327,0.673689,0.00556296,0.858299,0.766642,0.0590222,0.582579,0.62303,0.599707,0.42684,0.935999,0.781649,0.528591,0.564493,0.363177,0.0259818,0.598599,0.707143,0.716428,0.101759,0.877176,0.339577,0.472657,0.0587555,0.817811,0.469077,0.571837,0.420416,0.791285,0.270064,0.708005,0.432542,0.747771,0.334995,0.325568,0.463043,0.569796,0.877596,0.134982,0.799944,0.887129,0.716826,0.720885,0.0865389,0.397297,0.201106,0.531684,0.167955,0.802728,0.550412,0.828146,0.780381,0.114976,0.444809,0.112231,0.523767,0.0779041,0.128048,0.769046,0.948702,0.149114,0.856149,0.732694,0.129501,0.160678,0.806389,0.521084,0.883169,0.103135,0.833145,0.491139,0.175491,0.0329161,0.142596,0.292218,0.864343,0.346929,0.353005,0.439425,0.262357,0.363025,0.604479,0.712617,0.815316,0.763847,0.47338,0.961615,0.526758,0.0812634,0.589689,0.194043,0.550646,0.404495,0.251726,0.21197,0.381718,0.239791,0.222553,0.62772,0.101654,0.106931,0.396875,0.6752,0.278428,0.0511312,0.841353,0.934774,0.677519,0.518605,0.193795,0.627932,0.0671822,0.0283515,0.864648,0.503996,0.897979,0.1887,0.40073,0.0368201,0.354216,0.0038622,0.508937,0.759632,0.608554,0.706782,0.125701,0.214372,0.359185,0.88701,0.603033,0.491902,0.142042,0.782087,0.498904,0.114706,0.765962,0.346111,0.227717,0.347784,0.906132,0.242854,0.938141,0.377216,0.0649545,0.593934,0.999618,0.266469,0.967877,0.370019,0.810963,0.0663815,0.794869,0.420851,0.872279,0.666609,0.86196,0.275137,0.672813,0.73267,0.862138,0.690532,0.996414,0.154647,0.273834,0.5674,0.585027,0.0852813,0.353238,0.389194,0.0812482,0.602573,0.596855,0.0179243,0.906281,0.363766,0.159706,0.335928,0.697055,0.307063,0.460639,0.836778,0.0987889,0.156841,0.733985,0.949212,0.382704,0.367561,0.145655,0.528954,0.976728,0.234989,0.239175,0.901398,0.559472,0.444293,0.524241,0.787808,0.501491,0.575635,0.231166,0.375583,0.262915,0.0200992,0.840732,0.92234,0.0284047,0.512041,0.766883,0.999232,0.848488,0.968647,0.127534,0.6966,0.623315,0.0469666,0.383397,0.803159,0.112589,0.421729,0.38804,0.030093,0.624927,0.486581,0.416389,0.107335,0.758452,0.783342,0.341637,0.619286,0.0860541,0.473453,0.290711,0.731654,0.0622147,0.909799,0.136079,0.93705,0.685315,0.912979,0.529826,0.869999,0.205696,0.892102,0.992907,0.0840837,0.121338,0.627386,0.689458,0.531578,0.597087,0.561062,0.597159,0.53919,0.887814,0.418403,0.0350944,0.866008,0.340998,0.475974,0.665628,0.574383,0.871319,0.347393,0.246704,0.160609,0.32621,0.195913,0.547844,0.267175,0.377571,0.0175641,0.802297,0.162025,0.791807,0.541049,0.111141,0.886037,0.571323,0.923304,0.070068,0.867769,0.937356,0.236034,0.512704,0.294794,0.535937,0.236199,0.300923,0.633115,0.348391,0.53488,0.352104,0.569462,0.767371,0.803656,0.820419,0.238934,0.13388,0.418916,0.426917,0.67604,0.690348,0.244806,0.730127,0.363858,0.502089,0.671115,0.126304,0.0691218,0.486326,0.629584,0.157475,0.434535,0.0598508,0.07594,0.398039,0.432773,0.439,0.221541,0.433549,0.814051,0.838938,0.678956,0.665223,0.224337,0.199006,0.714181,0.164631,0.0977632,0.279035,0.974683,0.334339,0.695688,0.193943,0.942818,0.656305,0.582193,0.156819,0.409163,0.0363759,0.259602,0.560058,0.900599,0.514261,0.293026,0.113071,0.957408,0.374093,0.294933,0.710738,0.879145,0.436638,0.0382653,0.499141,0.82104,0.0387318,0.847227,0.620165,0.99112,0.00628549,0.178254,0.625905,0.368097,0.876588,0.846437,0.005023,0.384501,0.866353,0.965085,0.656555,0.328855,0.246077,0.176681,0.82268,0.0731648,0.325458,0.444632,0.795302,0.159551,0.286498,0.75542,0.468593,0.444467,0.661282,0.81106,0.35956,0.770307,0.92674,0.973328,0.471043,0.686031,0.939076,0.0721468,0.501781,0.10456,0.954972,0.910631,0.961593,0.070945,0.338488,0.311822,0.774377,0.286347,0.680005,0.833098,0.442547,0.0255122,0.739814,0.673306,0.314965,0.356708,0.874468,0.830228,0.986198,0.869565,0.988793,0.469381,0.443085,0.231213,0.685479,0.850214,0.321906,0.613216,0.6142,0.0915637,0.805504,0.396283,0.673723,0.21989,0.00407422,0.0316178,0.561634,0.772472,0.465396,0.873582,0.427086,0.62773,0.0269372,0.96662,0.826423,0.164519,0.532619,0.73769,0.820691,0.64774,0.828291,0.423755,0.595487,0.458375,0.977562,0.288802,0.525333,0.350145,0.993817,0.289724,0.0472202,0.910256,0.919894,0.673363,0.767036,0.967476,0.662095,0.66176,0.360405,0.454513,0.474157,0.202038,0.318435,0.930592,0.197128,0.236011,0.81544,0.755461,0.146766,0.956667,0.0297715,0.0147907,0.801452,0.00947905,0.847682,0.447863,0.432162,0.0700722,0.909658,0.786935,0.861411,0.46163,0.0616227,0.212178,0.0703987,0.504987,0.341492,0.0190278,0.657651,0.365424,0.762827,0.777476,0.398176,0.926432,0.29156,0.997739,0.672638,0.233416,0.111607,0.84593,0.274556,0.963659,0.53982,0.734944,0.971532,0.804126,0.0633016,0.013763,0.0815409,0.896377,0.867416,0.0688441,0.0257858,0.00841796,0.348808,0.0558295,0.518377,0.993157,0.207868,0.300907,0.9479,0.0665768,0.950366,0.930272,0.326186,0.0271857,0.628702,0.181488,0.466512,0.760124,0.90549,0.39729,0.682412,0.334472,0.00724268,0.556379,0.913724,0.230307,0.197087,0.536242,0.368411,0.140216,0.422639,0.12751,0.487612,0.734846,0.436991,0.122941,0.29967,0.809579,0.880302,0.341753,0.590439,0.0118134,0.200552,0.38673,0.399967,0.995405,0.546389,0.531446,0.251622,0.682641,0.245261,0.417658,0.980874,0.585105,0.792304,0.156735,0.0935741,0.765362,0.890885,0.599855,0.352927,0.880916,0.78966,0.692303,0.663767,0.76985,0.952502,0.112371,0.224674,0.452478,0.0612431,0.836997,0.0996527,0.538166,0.514261,0.547179,0.234496,0.0215586,0.65081,0.269087,0.901608,0.54819,0.282533,0.713877,0.483321,0.431033,0.101388,0.645762,0.0234987,0.295932,0.769951,0.174671,0.0284316,0.783447,0.446656,0.613431,0.0136554,0.507293,0.883551,0.0789151,0.944756,0.104397,0.332215,0.648457,0.228728,0.172555,0.415833,0.342937,0.900557,0.924096,0.103638,0.0430874,0.0207418,0.2125,0.797614,0.801469,0.974932,0.570219,0.294626,0.837244,0.849489,0.0476936,0.562717,0.886121,0.697299,0.433877,0.473549,0.667063,0.506119,0.51926,0.46839,0.862762,0.642871,0.151281,0.457703,0.48674,0.930589,0.588251,0.595449,0.130261,0.524904,0.137703,0.578319,0.586727,0.321065,0.69154,0.266956,0.324156,0.848397,0.514693,0.919787,0.98629,0.209967,0.0843713,0.0978978,0.566528,0.603417,0.887108,0.471841,0.635599,0.0615877,|0.571087,0.071894,0.98788,0.184666,0.733957,0.201084,0.138908,0.503451,0.339348,0.323621,0.981768,0.504655,0.38555,0.0260946,0.358369,0.349323,0.814686,0.376153,0.83202,0.341392,0.474179,0.882711,0.933548,0.190479,0.580834,0.649967,0.661048,0.146831,0.440068,0.0816325,0.857147,0.464319,0.642878,0.421674,0.547253,0.905533,0.673709,0.0122972,0.29269,0.788273,0.416749,0.74735,0.179466,0.0630801,0.465638,0.651432,0.234396,0.0862415,0.346353,0.245077,0.801868,0.796988,0.906353,0.999613,0.176228,0.0812577,0.699222,0.384377,0.134412,0.521994,0.641745,0.610165,0.2422,0.979534,0.462099,0.628601,0.619892,0.256142,0.317097,0.406604,0.72011,0.338715,0.809816,0.405485,0.862242,0.146374,0.168434,0.486675,0.575567,0.497561,0.0315399,0.412138,0.458938,0.756849,0.4046,0.0269144,0.703638,0.677068,0.822251,0.413302,0.626559,0.427072,0.56934,0.893942,0.295412,0.349894,0.389311,0.119509,0.651049,0.678142,0.0610546,0.713904,0.578127,0.6039,0.757327,0.642749,0.246976,0.560469,0.408621,0.0877783,0.404974,0.00799787,0.966472,0.245467,0.612179,0.405529,0.38389,0.963169,0.672308,0.154163,0.21737,0.812041,0.241571,0.177371,0.336466,0.325558,0.486038,0.255534,0.190615,0.48444,0.991867,0.338988,0.893705,0.925718,0.534371,0.187988,0.554704,0.712984,0.546212,0.395816,0.293444,0.976808,0.421184,0.354156,0.287508,0.42751,0.432097,0.279439,0.380042,0.169106,0.544149,0.821077,0.200516,0.311102,0.694414,0.151828,0.323937,0.886828,0.248402,0.831597,0.456384,0.330587,0.652343,0.815119,0.288179,0.772452,0.234548,0.164531,0.745456,0.361011,0.833614,0.429731,0.185942,0.147133,0.0931306,0.237708,0.916806,0.429861,0.59621,0.095367,0.0511675,0.663671,0.110463,0.859362,0.133363,0.619573,0.0148998,0.298412,0.871533,0.727912,0.336326,0.77493,0.259728,0.77915,0.507987,0.105217,0.702775,0.236375,0.410828,0.723381,0.0573885,0.121257,0.386311,0.935029,0.718512,0.94011,0.95917,0.0860056,0.821684,0.552271,0.562816,0.561305,0.918115,0.928706,0.675281,0.606988,0.168758,0.698635,0.658715,0.770921,0.71279,0.191111,0.974257,0.395588,0.872019,0.882465,0.987766,0.383904,0.995576,0.0925372,0.181177,0.838207,0.345215,0.922333,0.508307,0.576112,0.69117,0.5531,0.376865,0.67506,0.327283,0.398292,0.0463873,0.689927,0.256022,0.313776,0.400191,0.825355,0.324603,0.803054,0.62797,0.0511497,0.439654,0.220429,0.146797,0.813228,0.078455,0.810643,0.486095,0.395109,0.291661,0.170308,0.858538,0.899295,0.601488,0.289761,0.182491,0.0820835,0.546953,0.475926,0.400803,0.997547,0.661056,0.290825,0.677587,0.733608,0.836176,0.932381,0.11319,0.867661,0.0936573,0.24173,0.789589,0.512022,0.603559,0.76183,0.0922676,0.126766,0.865959,0.38803,0.0792475,0.789156,0.908359,0.0356246,0.571449,0.920004,0.140754,0.29648,0.59084,0.602675,0.707133,0.763574,0.292622,0.662078,0.644803,0.503033,0.154505,0.755031,0.343663,0.611845,0.718986,0.925845,0.934582,0.609928,0.694192,0.976882,0.470475,0.722069,0.994574,0.393744,0.702796,0.227062,0.977495,0.883282,0.7755,0.836348,0.482414,0.628824,0.148951,0.557127,0.611321,0.37648,0.837711,0.670304,0.534221,0.195179,0.0291017,0.916582,0.429685,0.640699,0.755448,0.823972,0.36719,0.590785,0.382274,0.957701,0.813905,0.969683,0.562198,0.77113,0.690143,0.887355,0.635334,0.144196,0.514088,0.868163,0.595622,0.923089,0.946212,0.0729082,0.820851,0.505438,0.54347,0.872562,0.326523,0.0322216,0.115194,0.602419,0.803408,0.931989,0.445217,0.0710653,0.380067,0.0842212,0.473029,0.123712,0.957291,0.80822,0.880461,0.0313214,0.646087,0.506879,0.791659,0.527965,0.0204504,0.48586,0.797803,0.391842,0.122645,0.398489,0.998208,0.0851209,0.0390083,0.756682,0.817867,0.93812,0.291883,0.741927,0.203947,0.270643,0.755628,0.181013,0.27649,0.449719,0.0326355,0.442473,0.80263,0.5594,0.845859,0.478114,0.511199,0.313352,0.289067,0.695183,0.575301,0.489195,0.785098,0.347175,0.437373,0.805082,0.204604,0.0114323,0.973162,0.263625,0.110857,0.725199,0.495429,0.891704,0.0368242,0.571307,0.844132,0.683402,0.31206,0.208688,0.480675,0.945085,0.229033,0.467571,0.217578,0.564718,0.752223,0.945078,0.415355,0.169667,0.00113434,0.226667,0.133467,0.165307,0.795773,0.761361,0.657979,0.614186,0.0197699,0.773494,0.482209,0.458453,0.28425,0.397776,0.0388329,0.828093,0.191551,0.98579,0.924301,0.864936,0.331918,0.894436,0.556999,0.885026,0.740804,0.718364,0.83625,0.171457,0.13276,0.132976,0.48056,0.813907,0.540772,0.106629,0.886092,0.609421,0.584866,0.338967,0.309469,0.542633,0.17276,0.590353,0.76001,0.458747,0.0129623,0.95942,0.858096,0.177311,0.515255,0.807824,0.0884933,0.695801,0.43402,0.193784,0.811064,0.269002,0.879117,0.685837,0.46295,0.150561,0.182827,0.061776,0.488172,0.829471,0.673026,0.915957,0.463926,0.0603774,0.889771,0.326367,0.834484,0.144655,0.535286,0.811746,0.317773,0.997053,0.0125406,0.513087,0.134028,0.620221,0.240102,0.862708,0.323831,0.749325,0.321199,0.20607,0.455124,0.785208,0.651475,0.161858,0.491201,0.206978,0.397081,0.136076,0.007572,0.922244,0.0267783,0.321182,0.436963,0.0351975,0.387965,0.265509,0.175239,0.531974,0.642403,0.968524,0.409254,0.544609,0.287797,0.807642,0.686119,0.0722961,0.0864691,0.727701,0.304411,0.374508,0.600334,0.0256037,0.470839,0.973544,0.375058,0.0380557,0.131199,0.954366,0.782724,0.390319,0.873335,0.253826,0.408964,0.373537,0.941053,0.273924,0.670486,0.776148,0.509748,0.194186,0.891933,0.12932,0.421449,0.167618,0.971339,0.86696,0.978872,0.508645,0.646313,0.895796,0.945101,0.096476,0.46644,0.934381,0.609608,0.789999,0.863821,0.879682,0.258515,0.855883,0.945727,0.685794,0.776874,0.406523,0.102375,0.0435638,0.266152,0.720033,0.533494,0.0521425,0.749004,0.31298,0.0705716,0.376775,0.464584,0.493985,0.300629,0.970855,0.732013,0.562495,0.483308,0.698751,0.262105,0.18632,0.892717,0.644385,0.417647,0.98613,0.526991,0.281831,0.437626,0.778095,0.0631819,0.741193,0.721298,0.0351772,0.723946,0.0702727,0.209158,0.321302,0.489864,0.239679,0.344859,0.729735,0.536806,0.867891,0.67533,0.775755,0.827686,0.0926943,0.526706,0.793318,0.437288,0.0468698,0.742321,0.487177,0.78214,0.667282,0.494487,0.0797318,0.129634,0.89555,0.0219207,0.701661,0.986262,0.88724,0.66611,0.990029,0.404074,0.77348,0.533132,0.828259,0.100859,0.314211,0.146687,0.656753,0.164961,0.133169,0.457809,0.673445,0.911619,0.140011,0.0671153,0.711964,0.820085,0.614206,0.362011,0.749271,0.634117,0.987654,0.934376,0.47478,0.84425,0.0569091,0.978403,0.911991,0.96596,0.885074,0.531762,0.908379,0.693676,0.140448,0.84591,0.857952,0.0793125,0.886907,0.221693,0.711597,0.354866,0.738728,0.90487,0.831547,0.766426,0.922071,0.417708,0.403412,0.181925,0.556558,0.937195,0.0796376,0.207913,0.884299,0.233329,0.275277,0.305049,0.592934,0.842334,0.474056,0.456109,0.516701,0.799402,0.105707,0.10695,0.746762,0.5069,0.968779,0.477542,0.976313,0.0293591,0.382056,0.845854,0.889907,0.395559,0.951702,0.971989,0.45276,0.11795,0.970145,0.751493,0.323141,0.356583,0.702086,0.877402,0.617678,0.145256,0.616553,0.480638,0.757497,0.789355,0.748572,0.40495,0.242469,0.543237,0.360152,0.406947,0.753829,0.217199,0.380099,0.458465,0.0927137,0.87023,0.244501,0.0823001,0.663582,0.719132,0.133969,0.785899,0.923347,0.890848,0.273382,0.219172,0.524444,0.98096,0.841446,0.591544,0.464896,0.923436,0.434961,0.888001,0.0213159,0.520157,0.105179,0.352977,0.452741,0.591718,0.332504,0.713307,0.916738,0.40165,0.758222,0.0330008,0.140787,0.0519149,0.986529,0.558941,0.418272,0.318292,0.758531,0.0949049,0.641739,0.342423,0.968909,0.471517,0.378827,0.747827,0.130259,0.785319,0.853138,0.143475,0.382448,0.659971,0.95938,0.293226,0.281361,0.797829,0.318869,0.664267,0.771058,0.726031,0.357169,0.739336,0.797784,0.085358,0.330565,0.147731,0.766913,0.832022,0.651946,0.257264,0.315252,0.416711,0.351811,0.696276,0.455857,0.466179,0.395399,0.980042,0.683529,0.817998,0.615053,0.832141,0.729362,0.159954,0.218377,0.664799,0.251117,0.669805,0.848336,0.15284,0.213162,0.311882,0.5734,0.174346,0.492206,0.995016,0.279633,0.627254,0.150175,0.0491583,0.400093,0.000273585,0.275962,0.99903,0.942532,0.857316,0.550384,0.27405,0.0887401,0.815632,0.768513,0.223808,0.379364,0.800782,0.79895,0.711594,0.0171142,0.771332,0.590619,0.0595263,0.790727,0.588987,0.976144,0.110503,0.748318,0.474638,0.638325,0.274065,0.211755,0.584019,0.571585,0.986443,0.0529971,0.933246,0.670768,0.480403,0.232058,0.469949,0.616008,0.251388,0.438576,0.901404,0.409631,0.753744,0.819348,0.279469,0.197333,0.484592,0.626909,0.217908,0.00627935,0.38349,0.253446,0.0278991,0.218801,0.313851,0.107189,0.136152,0.168525,0.167969,0.87325,0.85181,0.287717,0.575725,0.409067,0.639584,0.255178,0.46221,0.101735,0.461016,0.892812,0.356873,0.860227,0.749855,0.415828,0.834231,0.166033,0.396969,0.963632,0.104352,0.28415,0.800563,0.985241,0.0314671,0.447875,0.935782,0.898135,0.590208,0.558404,0.587913,0.342468,0.486527,0.302281,0.283828,0.72014,0.0142422,0.532516,0.409537,0.363237,0.44509,0.56968,0.0942894,0.970181,0.185157,0.397465,0.866658,0.619628,0.315623,0.604126,0.383642,0.935637,0.371302,0.835125,0.636185,0.483008,0.214764,0.496251,0.192254,0.857055,0.933538,0.699303,0.941803,0.00882804,0.0846778,0.354912,0.0863719,0.88474,0.0739515,0.9011,0.127809,0.857526,|0.318278,0.223954,0.0624876,0.542759,0.918936,0.18535,0.858837,0.115377,0.397608,0.671719,0.910229,0.0733647,0.227722,0.471481,0.489861,0.985043,0.456928,0.989801,0.935376,0.328818,0.699661,0.23362,0.883569,0.148919,0.554113,0.869965,0.988634,0.648679,0.128691,0.205609,0.922816,0.76289,0.517709,0.65927,0.757547,0.990881,0.392092,0.381715,0.406886,0.998586,0.313122,0.972581,0.789018,0.173188,0.103176,0.272532,0.896637,0.222232,0.531692,0.213158,0.143634,0.00287491,0.5503,0.597619,0.105819,0.0151825,0.00721788,0.185835,0.558861,0.466552,0.471111,0.798013,0.538493,0.186743,0.658124,0.634992,0.182488,0.764879,0.620275,0.663178,0.221634,0.177649,0.122546,0.837769,0.0547829,0.456859,0.115252,0.275427,0.980773,0.904836,0.605186,0.426317,0.529542,0.619128,0.863908,0.142305,0.732485,0.871016,0.89704,0.178556,0.929129,0.481045,0.476935,0.554839,0.0800583,0.988637,0.211726,0.480965,0.563938,0.887383,0.666708,0.487601,0.612898,0.770947,0.657877,0.860692,0.891949,0.852964,0.0271421,0.715186,0.8137,0.777034,0.240913,0.589459,0.627391,0.717375,0.672938,0.901003,0.558746,0.578934,0.957704,0.81666,0.444638,0.399997,0.200462,0.861077,0.171958,0.767807,0.121584,0.351515,0.903347,0.0786996,0.258116,0.0283063,0.342414,0.772186,0.527025,0.399822,0.786664,0.334844,0.372347,0.260066,0.104946,0.93567,0.928255,0.404903,0.470294,0.83945,0.424717,0.0764253,0.112342,0.879012,0.595332,0.0805967,0.679849,0.182082,0.962304,0.395984,0.392934,0.0561196,0.0583963,0.129935,0.818959,0.549754,0.679537,0.387253,0.802436,0.609623,0.00294173,0.976068,0.565176,0.199845,0.577318,0.86082,0.742876,0.859375,0.103858,0.429084,0.684319,0.483699,0.144394,0.91955,0.75074,0.978489,0.291889,0.0164898,0.63323,0.788401,0.521463,0.641548,0.497634,0.587097,0.646387,0.731122,0.920396,0.422368,0.850308,0.796196,0.55129,0.789424,0.820172,0.114418,0.620839,0.395982,0.949797,0.808897,0.920978,0.184418,0.238526,0.64272,0.856405,0.0215977,0.0456833,0.965001,0.934035,0.992128,0.886061,0.170428,0.892476,0.917466,0.954759,0.126614,0.0998677,0.884507,0.371082,0.121589,0.993004,0.658493,0.811343,0.0338909,0.93108,0.424685,0.987078,0.932952,0.339953,0.922865,0.798726,0.649789,0.466169,0.516162,0.981395,0.915245,0.111596,0.64386,0.300278,0.615217,0.933033,0.487849,0.585066,0.389505,0.93477,0.582126,0.314028,0.11786,0.940778,0.503138,0.357169,0.9336,0.0911704,0.24902,0.532462,0.264691,0.317767,0.100732,0.452385,0.546731,0.799467,0.380972,0.151147,0.183432,0.244137,0.467353,0.946264,0.668525,0.0705769,0.27439,0.913358,0.326396,0.666209,0.634303,0.452805,0.737185,0.394126,0.540538,0.706821,0.25356,0.945187,0.10282,0.211551,0.293095,0.209343,0.335273,0.645868,0.528332,0.576067,0.916555,0.293034,0.965697,0.895786,0.0514434,0.217506,0.0247667,0.00155562,0.210659,0.583454,0.972892,0.63201,0.181816,0.558186,0.747653,0.0325177,0.345891,0.71056,0.208692,0.898187,0.608066,0.0235924,0.886292,0.933666,0.486685,0.251974,0.29756,0.35235,0.804353,0.609311,0.181099,0.383461,0.900239,0.816812,0.821197,0.446809,0.638922,0.217638,0.995142,0.156107,0.823056,0.013625,0.379936,0.229892,0.943174,0.92753,0.9298,0.561952,0.31899,0.978295,0.370652,0.493791,0.0716454,0.0745592,0.19647,0.540096,0.0862622,0.782489,0.039038,0.642262,0.506274,0.586651,0.319917,0.146118,0.909368,0.512034,0.222214,0.686289,0.203336,0.983919,0.455387,0.985196,0.74662,0.287242,0.406977,0.0488052,0.417462,0.935918,0.148236,0.25473,0.286721,0.143353,0.701491,0.476986,0.0587959,0.357035,0.770113,0.963209,0.614491,0.575472,0.909587,0.165551,0.220318,0.760044,0.846449,0.785242,0.44027,0.731677,0.0390276,0.84177,0.483835,0.878118,0.097088,0.472134,0.498338,0.602522,0.399517,0.828501,0.578291,0.41177,0.883446,0.141523,0.444911,0.0848489,0.815723,0.727782,0.30131,0.579975,0.728678,0.474491,0.316615,0.921577,0.318751,0.607366,0.683503,0.299192,0.310819,0.822682,0.447668,0.92114,0.896751,0.14699,0.842123,0.159237,0.679506,0.512336,0.596745,0.0913393,0.274484,0.156883,0.180206,0.823845,0.174705,0.89571,0.867556,0.930043,0.0963563,0.940891,0.96074,0.462048,0.317865,0.122509,0.118353,0.581886,0.156908,0.907345,0.0665371,0.412778,0.179287,0.143172,0.722233,0.46449,0.457839,0.989194,0.35727,0.742476,0.594396,0.549764,0.983552,0.768154,0.854739,0.640547,0.593426,0.899463,0.258019,0.219788,0.53913,0.582468,0.195029,0.0221669,0.733915,0.883745,0.963175,0.944389,0.481189,0.927807,0.824183,0.733948,0.938843,0.124748,0.885971,0.637235,0.0908515,0.427488,0.843519,0.618599,0.640493,0.793642,0.409451,0.913665,0.0888559,0.422908,0.521743,0.769358,0.401294,0.708946,0.703666,0.710408,0.811893,0.264089,0.97689,0.993653,0.843321,0.593101,0.572436,0.645137,0.381775,0.381323,0.917718,0.515868,0.766064,0.805271,0.745539,0.268115,0.739412,0.409845,0.791671,0.276977,0.784414,0.945508,0.0592681,0.83135,0.709421,0.957225,0.863744,0.238467,0.314835,0.72406,0.895498,0.815679,0.954302,0.545071,0.970992,0.604284,0.356513,0.042378,0.757499,0.0729955,0.93091,0.863847,0.315911,0.0680596,0.0103251,0.64239,0.721807,0.598963,0.598274,0.49472,0.732144,0.582597,0.572492,0.0846438,0.443693,0.24109,0.426658,0.198651,0.537669,0.781002,0.342561,0.00708663,0.978259,0.325743,0.915905,0.368783,0.258299,0.159423,0.581995,0.989774,0.296724,0.937922,0.681757,0.571035,0.189559,0.16265,0.790885,0.11671,0.371438,0.960928,0.954394,0.719563,0.0846363,0.26524,0.856667,0.0873736,0.514676,0.617797,0.631526,0.107316,0.709903,0.496449,0.840187,0.156685,0.765709,0.728665,0.00551212,0.137929,0.605692,0.687293,0.373031,0.0703797,0.831237,0.803611,0.502629,0.681124,0.0487494,0.133479,0.887985,0.79085,0.129832,0.425477,0.160999,0.0087238,0.8133,0.101592,0.291932,0.411862,0.345266,0.152033,0.314776,0.114368,0.0989096,0.940733,0.185445,0.384747,0.574517,0.0530505,0.553066,0.0853999,0.124404,0.572869,0.44124,0.661529,0.253319,0.984842,0.985042,0.471864,0.861857,0.75207,0.100853,0.207334,0.808324,0.181826,0.747088,0.535539,0.0930099,0.865129,0.940426,0.25846,0.277196,0.861979,0.835701,0.88358,0.743176,0.630839,0.889323,0.536204,0.866923,0.703969,0.0415577,0.868822,0.0738186,0.274218,0.0706155,0.86816,0.161113,0.346994,0.542089,0.883381,0.687579,0.140748,0.155145,0.803532,0.378682,0.658565,0.767711,0.37148,0.26871,0.164376,0.528068,0.516105,0.778224,0.639211,0.73685,0.224738,0.934044,0.161353,0.749408,0.545933,0.620576,0.144259,0.324367,0.190415,0.315449,0.305911,0.328267,0.706783,0.814999,0.594623,0.732418,0.998563,0.380845,0.661748,0.0716332,0.0362833,0.604928,0.57089,0.178623,0.441523,0.641149,0.966936,0.349863,0.724735,0.330118,0.570548,0.77825,0.625675,0.587192,0.376597,0.479191,0.647103,0.253155,0.182952,0.448251,0.264225,0.466531,0.837318,0.871727,0.809003,0.654732,0.937382,0.618439,0.680997,0.233223,0.0758268,0.618909,0.457619,0.139836,0.948734,0.0640054,0.0396826,0.958695,0.952756,0.670219,0.560521,0.917645,0.805739,0.531552,0.286586,0.650194,0.723471,0.29131,0.806604,0.0911414,0.954869,0.985498,0.341585,0.148377,0.189993,0.98729,0.54344,0.931885,0.686817,0.279949,0.218796,0.725106,0.292456,0.996661,0.778174,0.12468,0.900377,0.663388,0.567864,0.12104,0.938625,0.518949,0.262297,0.135335,0.131185,0.0687532,0.844816,0.618183,0.947748,0.489412,0.243626,0.541789,0.595977,0.976301,0.379522,0.64576,0.58367,0.532224,0.690572,0.25208,0.699923,0.979868,0.708469,0.956521,0.590796,0.299029,0.895799,0.666894,0.840191,0.228627,0.28739,0.398512,0.500135,0.910403,0.491138,0.202628,0.0308573,0.59681,0.505269,0.685329,0.656666,0.587862,0.207544,0.561622,0.3604,0.00722426,0.729868,0.929299,0.692033,0.751212,0.679203,0.283147,0.0564901,0.896636,0.254431,0.562713,0.293375,0.0415037,0.0425187,0.523081,0.230561,0.221147,0.73694,0.943353,0.369785,0.716862,0.848859,0.668989,0.131617,0.550449,0.109928,0.769417,0.0795783,0.357003,0.212929,0.872858,0.818758,0.525886,0.962133,0.0102147,0.327653,0.92502,0.65439,0.585261,0.613417,0.137397,0.798697,0.72116,0.796326,0.785058,0.275339,0.957918,0.786433,0.356152,0.235789,0.453025,0.641324,0.666136,0.366917,0.462241,0.0723822,0.144827,0.475676,0.0633641,0.137778,0.231292,0.753816,0.87311,0.611424,0.742631,0.161881,0.133644,0.924829,0.76683,0.699992,0.677396,0.885904,0.406513,0.0657762,0.946151,0.7959,0.0500662,0.240215,0.633914,0.251695,0.523019,0.45273,0.229924,0.172896,0.0397916,0.934936,0.0822901,0.561158,0.831267,0.222879,0.207648,0.991553,0.922522,0.326114,0.932764,0.579247,0.66744,0.431153,0.60138,0.0354765,0.880991,0.285892,0.686343,0.192186,0.99585,0.783799,0.927657,0.910426,0.70315,0.172472,0.968877,0.873537,0.56473,0.283712,0.859627,0.746404,0.536728,0.384033,0.328423,0.687797,0.168586,0.699683,0.809389,0.0500651,0.0213898,0.34342,0.0622597,0.55422,0.183812,0.068536,0.692279,0.802894,0.71809,0.706532,0.535302,0.627245,0.813384,0.596057,0.505707,0.602236,0.5745,0.505397,0.258036,0.602681,0.67243,0.434263,0.924253,0.869064,0.526233,0.438038,0.900932,0.323195,0.784748,0.0205677,0.596499,0.347774,0.744848,0.501407,0.419539,0.383084,0.831035,0.182799,0.545935,0.0231407,0.764669,0.611562,0.972911,0.43375,0.968527,0.366185,0.390553,0.929077,0.98485,0.356052,0.575898,0.894012,0.524171,|0.130328,0.334206,0.0627141,0.0741823,0.0146814,0.915547,0.0517049,0.429689,0.339121,0.454872,0.0749473,0.191007,0.534018,0.0865295,0.0712547,0.0130442,0.210001,0.344174,0.174124,0.365415,0.531793,0.694289,0.915529,0.242073,0.288968,0.094067,0.076751,0.915303,0.842472,0.384046,0.840219,0.468311,0.632742,0.71724,0.547845,0.51586,0.720963,0.458896,0.766357,0.901608,0.941996,0.0172992,0.322159,0.500906,0.074372,0.820996,0.773106,0.991566,0.570204,0.551851,0.369845,0.152006,0.896586,0.872337,0.533313,0.855307,0.107268,0.775494,0.752485,0.867366,0.459395,0.686223,0.0303122,0.75657,0.669093,0.326084,0.622261,0.42874,0.199407,0.116549,0.365482,0.169874,0.338889,0.829355,0.486562,0.339994,0.222968,0.802413,0.92998,0.974511,0.73247,0.180846,0.204732,0.153632,0.537199,0.49851,0.258915,0.468526,0.201593,0.778842,0.146921,0.150972,0.337769,0.208826,0.151359,0.455623,0.175335,0.204995,0.931598,0.809831,0.463748,0.467208,0.705242,0.0721155,0.0719491,0.547121,0.620646,0.730299,0.808162,0.864867,0.892419,0.787251,0.473784,0.742556,0.92969,0.916589,0.453778,0.163104,0.947909,0.710114,0.365358,0.778613,0.905075,0.35872,0.488264,0.804462,0.0837919,0.501679,0.306561,0.323839,0.972304,0.328348,0.801594,0.995305,0.38941,0.156409,0.617409,0.430653,0.628037,0.202625,0.836035,0.104318,0.614222,0.815915,0.302231,0.174263,0.321618,0.000848114,0.747872,0.0916561,0.642939,0.058415,0.315652,0.530867,0.036317,0.194693,0.778901,0.121899,0.604706,0.935319,0.879934,0.83143,0.532292,0.142577,0.852483,0.19465,0.586363,0.857196,0.596275,0.249733,0.654987,0.0322375,0.753799,0.820657,0.494782,0.252522,0.377205,0.0436306,0.414562,0.821131,0.471936,0.642284,0.910422,0.435345,0.740938,0.58531,0.842932,0.932633,0.319205,0.0916365,0.560379,0.284187,0.893616,0.682389,0.443458,0.849017,0.496914,0.962409,0.751209,0.244542,0.639385,0.212901,0.0854198,0.882533,0.955059,0.633394,0.112987,0.481581,0.877418,0.453478,0.404717,0.103957,0.88939,0.262331,0.0702122,0.712488,0.740297,0.960022,0.400731,0.952936,0.830672,0.358044,0.985284,0.417697,0.813572,0.360783,0.776202,0.946433,0.00436115,0.299936,0.810492,0.372294,0.528915,0.879915,0.434882,0.212052,0.513123,0.152761,0.47458,0.790602,0.595319,0.721333,0.242947,0.872458,0.395398,0.0217571,0.0261714,0.0482329,0.377711,0.00495297,0.669278,0.00585997,0.264391,0.786764,0.2984,0.916132,0.247451,0.731106,0.694421,0.201436,0.542645,0.419659,0.676362,0.640275,0.604424,0.533734,0.89358,0.890296,0.561653,0.559831,0.749023,0.384042,0.865359,0.134266,0.491607,0.252563,0.729825,0.457316,0.163577,0.756791,0.0638299,0.215563,0.64621,0.817116,0.959897,0.0172234,0.314805,0.247655,0.277368,0.566375,0.651881,0.447875,0.977674,0.554573,0.0761826,0.706033,0.680011,0.441287,0.00788653,0.138685,0.542718,0.278429,0.162448,0.0480423,0.777319,0.821351,0.411206,0.651735,0.955848,0.415222,0.894802,0.321291,0.921568,0.357227,0.57849,0.587991,0.663014,0.241548,0.57511,0.950895,0.702705,0.908959,0.204259,0.488951,0.0904521,0.187417,0.331123,0.557188,0.310317,0.499908,0.06637,0.294388,0.0417638,0.956111,0.766753,0.84303,0.216933,0.738729,0.788117,0.156292,0.735305,0.236529,0.775453,0.98281,0.589848,0.276743,0.679923,0.923304,0.535711,0.0684469,0.470738,0.66414,0.359773,0.829876,0.515148,0.671367,0.994722,0.541883,0.725772,0.645937,0.134956,0.720371,0.486931,0.652592,0.106902,0.95686,0.337412,0.0297127,0.865386,0.831794,0.850215,0.487291,0.0541367,0.611598,0.917647,0.307047,0.717232,0.368125,0.408789,0.777481,0.642603,0.862415,0.677876,0.980968,0.956212,0.87294,0.677852,0.888305,0.0519628,0.32341,0.168356,0.99414,0.809198,0.61639,0.155246,0.0838934,0.292176,0.507549,0.642723,0.579584,0.453396,0.347959,0.479151,0.0959051,0.0164515,0.458266,0.665041,0.0814348,0.803699,0.417939,0.584612,0.00782466,0.076396,0.818605,0.220809,0.797219,0.296629,0.967023,0.518805,0.674988,0.916757,0.0310977,0.654543,0.360184,0.826375,0.176156,0.0413789,0.585746,0.46775,0.411616,0.89634,0.258425,0.963179,0.111045,0.62377,0.214342,0.0857747,0.552201,0.768869,0.809885,0.219864,0.0189515,0.642246,0.114364,0.378225,0.525235,0.488071,0.73853,0.0276023,0.478386,0.325271,0.258637,0.31064,0.886874,0.162742,0.0909905,0.0308512,0.612487,0.864084,0.5795,0.279041,0.812847,0.399918,0.826555,0.576902,0.185765,0.386032,0.609874,0.179148,0.526759,0.713589,0.477737,0.238425,0.953447,0.407915,0.941927,0.910164,0.207855,0.703816,0.183137,0.935045,0.493499,0.705353,0.644596,0.794733,0.814519,0.176019,0.994096,0.678627,0.249374,0.676338,0.103033,0.978642,0.606576,0.506124,0.690413,0.473389,0.0473766,0.811035,0.637797,0.106925,0.163487,0.413031,0.321791,0.453265,0.467643,0.582716,0.503836,0.441364,0.375251,0.519254,0.303379,0.989416,0.455998,0.444475,0.801382,0.860463,0.248421,0.615317,0.714209,0.805483,0.313228,0.433245,0.445517,0.187552,0.0268058,0.770882,0.960124,0.174679,0.316426,0.854779,0.274758,0.0750656,0.509077,0.533904,0.55869,0.536078,0.72807,0.33512,0.644706,0.757349,0.0829936,0.147272,0.520139,0.414285,0.930597,0.664629,0.620493,0.279007,0.261599,0.0740578,0.944945,0.363427,0.460085,0.34794,0.212842,0.877464,0.985242,0.746484,0.210554,0.983229,0.360671,0.471105,0.229391,0.912426,0.716044,0.818967,0.796317,0.953278,0.102143,0.909478,0.402461,0.154406,0.749677,0.220461,0.64675,0.524791,0.648727,0.723751,0.176211,0.943921,0.174112,0.840319,0.766706,0.840878,0.210754,0.0444072,0.910607,0.783885,0.0816622,0.621671,0.445985,0.59921,0.404322,0.475476,0.724879,0.0368925,0.454771,0.435912,0.434563,0.204864,0.959177,0.250995,0.479085,0.147795,0.374011,0.0605484,0.367022,0.54052,0.0870685,0.71941,0.141548,0.305036,0.888093,0.559725,0.743802,0.0273369,0.636578,0.762158,0.577913,0.56075,0.446404,0.136915,0.418726,0.27054,0.124541,0.736864,0.968763,0.742015,0.149268,0.348711,0.730376,0.533583,0.280491,0.921644,0.447718,0.359912,0.291909,0.39303,0.564032,0.609187,0.557599,0.0601511,0.471778,0.577913,0.613075,0.912765,0.263377,0.0862546,0.179582,0.724657,0.315735,0.431626,0.566936,0.0435596,0.173628,0.305323,0.864179,0.625902,0.770169,0.820634,0.718977,0.185271,0.0274277,0.525817,0.988641,0.00383031,0.847538,0.465788,0.890279,0.200682,0.387172,0.596314,0.955547,0.40102,0.873968,0.660687,0.994121,0.249961,0.476627,0.412287,0.0483456,0.12965,0.311918,0.897645,0.651274,0.133979,0.406578,0.0658922,0.738153,0.321615,0.957173,0.720179,0.283715,0.117959,0.0691557,0.0496464,0.0158846,0.784034,0.512389,0.208436,0.261913,0.662961,0.626062,0.0322285,0.58577,0.36841,0.847022,0.394727,0.82518,0.373095,0.269146,0.811333,0.428903,0.406106,0.292129,0.951554,0.950218,0.678721,0.740509,0.938833,0.826411,0.221343,0.336807,0.891507,0.819417,0.933363,0.339551,0.0258604,0.844511,0.220914,0.82502,0.665196,0.555352,0.0229186,0.156393,0.86894,0.981873,0.028653,0.130739,0.40386,0.936608,0.283083,0.694112,0.758987,0.324418,0.841669,0.201323,0.410138,0.614419,0.508334,0.977527,0.005229,0.452465,0.404868,0.504319,0.578957,0.312342,0.231265,0.383336,0.856628,0.615109,0.242605,0.548136,0.11543,0.130149,0.865318,0.839085,0.303424,0.934464,0.570474,0.897986,0.561681,0.748803,0.859029,0.0944269,0.0681186,0.679514,0.394527,0.133073,0.10287,0.215591,0.189447,0.995436,0.629532,0.527931,0.598931,0.529398,0.475299,0.490222,0.516727,0.973808,0.765206,0.439367,0.479828,0.508652,0.169811,0.121602,0.982046,0.515539,0.366093,0.859072,0.962501,0.912049,0.907439,0.965367,0.258332,0.0533162,0.792461,0.819549,0.798137,0.474956,0.0528713,0.22714,0.462222,0.146693,0.819121,0.642699,0.554082,0.128873,0.205883,0.645415,0.41179,0.615836,0.00382024,0.064373,0.592127,0.713565,0.204481,0.991567,0.593957,0.848922,0.35239,0.585928,0.215981,0.926533,0.585182,0.739721,0.0402077,0.700862,0.535411,0.766789,0.388736,0.24783,0.946444,0.472015,0.487572,0.569541,0.00813997,0.698557,0.818862,0.931367,0.172158,0.177355,0.909735,0.509067,0.219746,0.260818,0.24378,0.793106,0.845036,0.601271,0.608331,0.89046,0.267982,0.703455,0.457125,0.222909,0.743636,0.891834,0.0694171,0.512851,0.657215,0.795567,0.212475,0.962864,0.140697,0.198294,0.0818843,0.999922,0.414968,0.0351721,0.852206,0.682617,0.771692,0.457393,0.929902,0.895769,0.9518,0.46855,0.888519,0.563203,0.251622,0.680286,0.0783253,0.30416,0.0467418,0.54037,0.362055,0.656829,0.237582,0.363906,0.99531,0.17918,0.124364,0.827069,0.655247,0.324139,0.100005,0.299331,0.667471,0.731223,0.181185,0.167044,0.38876,0.893579,0.929367,0.813819,0.220208,0.0186472,0.885648,0.880054,0.395777,0.815609,0.247415,0.188118,0.37719,0.372414,0.397094,0.843388,0.893192,0.59898,0.632013,0.320613,0.92037,0.447253,0.303733,0.955544,0.416195,0.241543,0.355434,0.930211,0.129825,0.144635,0.70082,0.926876,0.0905576,0.147393,0.604987,0.912271,0.309592,0.445166,0.755878,0.503524,0.478394,0.79778,0.0827521,0.759381,0.107187,0.547454,0.710521,0.517012,0.883996,0.581242,0.72079,0.732611,0.609874,0.874493,0.680249,0.5608,0.101083,0.670862,0.772184,0.894798,0.472127,0.8487,0.497811,0.453473,0.20384,0.738499,0.0741999,0.723543,0.962615,0.956511,0.875225,0.583723,0.635301,0.82004,0.597671,0.842646,0.686888,0.424375,0.494567,0.927055,0.642001,0.437236,0.276427,0.0940264,0.339765,0.457705,|0.794309,0.57144,0.617764,0.717916,0.0900252,0.753473,0.00459296,0.0936133,0.78345,0.286784,0.71252,0.702265,0.521079,0.35876,0.78272,0.632562,0.551046,0.140186,0.230018,0.665121,0.76143,0.894604,0.500293,0.928829,0.0844937,0.863645,0.956725,0.402433,0.0725054,0.485466,0.0918756,0.0135119,0.858972,0.707159,0.555133,0.0500543,0.775617,0.838551,0.0456929,0.32065,0.900074,0.653521,0.614445,0.653156,0.707591,0.196559,0.758483,0.290007,0.439189,0.205516,0.162807,0.845341,0.995723,0.148561,0.0558715,0.633516,0.693718,0.454032,0.375197,0.0198359,0.844373,0.878201,0.487601,0.93033,0.197397,0.836483,0.0810273,0.160297,0.571017,0.607438,0.348693,0.191706,0.649433,0.449132,0.0791253,0.291258,0.992851,0.292869,0.0441951,0.683477,0.332297,0.698012,0.295648,0.310757,0.0232839,0.0549232,0.38603,0.282815,0.00927079,0.291708,0.928443,0.2213,0.581243,0.378551,0.023408,0.988653,0.184126,0.317481,0.150198,0.656689,0.65677,0.198141,0.861365,0.563402,0.603799,0.56244,0.0728767,0.245632,0.0178618,0.659776,0.21385,0.208549,0.987434,0.939278,0.194613,0.336267,0.487978,0.613594,0.349071,0.247463,0.969686,0.114308,0.848666,0.935735,0.555467,0.915359,0.984721,0.249121,0.989192,0.135778,0.253314,0.892565,0.870178,0.954415,0.768902,0.891034,0.320485,0.555119,0.908882,0.638435,0.649026,0.595779,0.781199,0.610839,0.203397,0.279502,0.740983,0.126359,0.412663,0.185292,0.787441,0.0672201,0.690662,0.671514,0.167622,0.157508,0.996392,0.286213,0.238944,0.503721,0.964632,0.566389,0.165649,0.87649,0.0232914,0.309725,0.998227,0.121016,0.664294,0.38343,0.127712,0.849622,0.198671,0.932508,0.905017,0.0334558,0.296119,0.532027,0.631713,0.255023,0.40706,0.373107,0.715234,0.910419,0.799955,0.607007,0.815845,0.679777,0.777372,0.713561,0.328914,0.385994,0.219828,0.148509,0.152475,0.740721,0.660849,0.265625,0.591156,0.619752,0.16202,0.55727,0.599638,0.255533,0.777499,0.676033,0.33795,0.0348982,0.688064,0.426453,0.509822,0.571275,0.645123,0.961514,0.662607,0.426538,0.0323997,0.292513,0.451731,0.554271,0.654356,0.24276,0.820557,0.644681,0.323938,0.0400295,0.632717,0.737068,0.28403,0.69934,0.93656,0.476875,0.882452,0.0391709,0.256555,0.0537662,0.473031,0.991912,0.362775,0.469918,0.169326,0.363676,0.853823,0.957721,0.413007,0.451769,0.82673,0.590131,0.945217,0.290062,0.985912,0.221128,0.301558,0.0547091,0.0419017,0.710949,0.0241173,0.58143,0.339137,0.259699,0.873026,0.348546,0.711379,0.672106,0.841199,0.592924,0.75329,0.664667,0.00192785,0.414575,0.0261429,0.194568,0.961808,0.803973,0.49053,0.245548,0.849259,0.629719,0.938969,0.415041,0.948847,0.0417382,0.267706,0.509349,0.744932,0.450974,0.551232,0.442674,0.995077,0.425776,0.0087713,0.357321,0.350223,0.908194,0.0156384,0.415895,0.291731,0.798359,0.91594,0.551253,0.527837,0.0338562,0.143256,0.925577,0.175257,0.790865,0.60231,0.0360861,0.721452,0.00283247,0.281808,0.998504,0.0558742,0.897816,0.320509,0.085507,0.39337,0.669363,0.560993,0.602478,0.857839,0.393677,0.69306,0.367709,0.424675,0.623041,0.641656,0.412246,0.227083,0.556895,0.393877,0.472006,0.819182,0.877472,0.107901,0.572332,0.946154,0.69828,0.604065,0.746433,0.296246,0.00984561,0.275105,0.685082,0.224154,0.0490977,0.293588,0.050193,0.713684,0.798807,0.418609,0.301663,0.744639,0.00375909,0.63059,0.269923,0.242453,0.603208,0.132721,0.668956,0.622296,0.245911,0.0750604,0.450493,0.516947,0.390321,0.614691,0.732961,0.973597,0.666859,0.974238,0.810182,0.483764,0.560215,0.354304,0.352941,0.167957,0.258099,0.64151,0.226701,0.361566,0.172198,0.376457,0.650607,0.432429,0.712161,0.222282,0.879428,0.475644,0.123942,0.737069,0.171147,0.59939,0.991496,0.193274,0.43224,0.284579,0.584912,0.733589,0.923256,0.15236,0.240489,0.715076,0.0633205,0.055078,0.39012,0.104187,0.11148,0.678388,0.294049,0.775425,0.585182,0.430988,0.96804,0.555647,0.841468,0.738342,0.016374,0.186167,0.829429,0.746008,0.462295,0.821197,0.526054,0.449542,0.778866,0.643964,0.5994,0.922439,0.221082,0.441246,0.31869,0.744702,0.313957,0.150039,0.138215,0.901174,0.967877,0.36374,0.397123,0.0552969,0.337919,0.601878,0.227439,0.699995,0.648569,0.53763,0.717235,0.936464,0.213672,0.370612,0.170386,0.0103321,0.107487,0.898655,0.326867,0.0768762,0.313121,0.782175,0.0193732,0.540494,0.777462,0.365289,0.428554,0.902045,0.160173,0.432864,0.2647,0.484423,0.134554,0.554463,0.578822,0.542596,0.559004,0.960324,0.484446,0.992358,0.184428,0.506924,0.766315,0.976587,0.885988,0.57922,0.559582,0.734216,0.0821874,0.554795,0.633895,0.617758,0.71161,0.664122,0.898976,0.607994,0.856082,0.517627,0.770601,0.815619,0.898235,0.192174,0.516789,0.379348,0.597575,0.719928,0.844973,0.0760985,0.956782,0.534127,0.101106,0.214474,0.872095,0.677827,0.824599,0.0729699,0.28563,0.157214,0.351724,0.989842,0.137081,0.109467,0.946712,0.717095,0.249299,0.766877,0.681989,0.00978017,0.711851,0.828627,0.608832,0.427962,0.00268215,0.555964,0.985499,0.585634,0.120964,0.117497,0.524612,0.998335,0.0103045,0.586526,0.768066,0.741386,0.298439,0.798692,0.901353,0.891366,0.893353,0.0283665,0.758614,0.731609,0.0973583,0.79283,0.363164,0.913649,0.778614,0.636488,0.76997,0.53231,0.671259,0.565296,0.171038,0.464915,0.351504,0.761677,0.473758,0.496669,0.17309,0.182462,0.564698,0.290149,0.632006,0.469256,0.0781223,0.376019,0.315802,0.804747,0.314855,0.725978,0.203643,0.766005,0.801105,0.619242,0.935327,0.476865,0.571994,0.422256,0.636088,0.333191,0.564028,0.716222,0.170496,0.793281,0.308719,0.0259562,0.558609,0.524679,0.694883,0.449834,0.977363,0.411664,0.171966,0.364246,0.481193,0.647913,0.193384,0.690451,0.274521,0.844544,0.568685,0.97747,0.861908,0.413365,0.302715,0.351066,0.943596,0.379924,0.0919738,0.787758,0.387407,0.787547,0.575172,0.387853,0.109913,0.237572,0.72072,0.723647,0.711575,0.747935,0.0119015,0.461176,0.147953,0.940216,0.417056,0.146615,0.254632,0.554975,0.715888,0.990535,0.500663,0.316997,0.718564,0.185989,0.108409,0.666725,0.184348,0.645543,0.857392,0.542963,0.183905,0.0246084,0.0873114,0.711426,0.743784,0.197944,0.109022,0.201231,0.908535,0.533535,0.10797,0.266166,0.794608,0.202634,0.0526615,0.7925,0.837214,0.908651,0.644536,0.331475,0.417433,0.787848,0.0628037,0.179444,0.687625,0.369632,0.384455,0.293575,0.746896,0.910035,0.0936058,0.418067,0.119084,0.895706,0.219546,0.377923,0.580816,0.260355,0.611841,0.865946,0.997401,0.70388,0.45439,0.256226,0.0613988,0.439401,0.452312,0.435994,0.868934,0.966114,0.257999,0.997051,0.832097,0.942801,0.761397,0.461383,0.613444,0.0468267,0.713702,0.333605,0.506347,0.361284,0.367373,0.722827,0.901167,0.18334,0.930597,0.0210747,0.254505,0.930676,0.652005,0.539979,0.0265098,0.508354,0.269688,0.88825,0.756874,0.510676,0.317126,0.635233,0.505009,0.73392,0.019317,0.390937,0.804946,0.530959,0.880888,0.71566,0.989069,0.442138,0.190505,0.531784,0.628208,0.426953,0.894141,0.561308,0.164703,0.685834,0.584095,0.0613967,0.105489,0.721528,0.418793,0.916441,0.529691,0.0970408,0.381472,0.884377,0.616791,0.518663,0.606664,0.956233,0.588632,0.797502,0.53625,0.134903,0.00367743,0.242651,0.193652,0.43792,0.251284,0.37349,0.37426,0.927146,0.424686,0.89284,0.73343,0.557621,0.440078,0.191455,0.478466,0.242685,0.549769,0.945786,0.253843,0.957646,0.655436,0.384252,0.117898,0.0535609,0.300348,0.606716,0.754152,0.0070926,0.441663,0.0518456,0.128522,0.677386,0.572958,0.325509,0.556003,0.951439,0.133052,0.602462,0.858766,0.0534971,0.62953,0.125737,0.403911,0.39908,0.395727,0.848826,0.947255,0.841263,0.713436,0.980738,0.162619,0.212502,0.0620139,0.0974716,0.0320688,0.315069,0.904408,0.521811,0.0362324,0.534968,0.0217263,0.0232686,0.174994,0.012857,0.530552,0.998526,0.70481,0.559685,0.191851,0.342746,0.523669,0.655921,0.37769,0.62743,0.540879,0.340799,0.0384535,0.308532,0.592733,0.472536,0.353493,0.789124,0.700804,0.256971,0.745938,0.317257,0.115169,0.820472,0.81889,0.0414203,0.768607,0.952703,0.020298,0.674535,0.611763,0.995988,0.557158,0.268073,0.60239,0.238952,0.734113,0.483507,0.312484,0.378768,0.848549,0.562483,0.949885,0.648088,0.0906956,0.917093,0.406212,0.714871,0.986677,0.713844,0.689625,0.558034,0.621787,0.665369,0.135156,0.429603,0.134104,0.519321,0.97112,0.62346,0.577353,0.967699,0.0686191,0.0248913,0.955363,0.931908,0.268155,0.0391376,0.255527,0.684705,0.734304,0.156273,0.711109,0.184085,0.392132,0.951626,0.365886,0.588135,0.272147,0.0129225,0.639639,0.238905,0.332475,0.590784,0.394066,0.286881,0.140023,0.989125,0.560256,0.975211,0.351474,0.158844,0.150657,0.379213,0.729595,0.6719,0.386472,0.239915,0.254334,0.453714,0.240976,0.840475,0.251019,0.7803,0.909967,0.714175,0.791893,0.0629001,0.813082,0.458217,0.856101,0.573345,0.85831,0.432976,0.621683,0.0710352,0.179394,0.466311,0.83472,0.279502,0.933045,0.408556,0.189796,0.0876674,0.327997,0.404452,0.0357302,0.377798,0.881529,0.752083,0.533587,0.27202,0.770202,0.804468,0.139597,0.285304,0.144657,0.755161,0.326289,0.704575,0.506802,0.97258,0.572246,0.509491,0.210024,0.95891,0.675145,0.257113,0.96075,0.564763,0.989946,0.942136,0.852005,0.944172,0.616607,0.929816,0.808089,0.650062,0.482962,0.146936,0.85587,0.440625,0.881396,0.692708,0.938059,0.634362,0.658853,0.0426564,0.85991,0.962881,0.822486,0.110585,0.294498,|0.970491,0.908577,0.828179,0.344389,0.917171,0.312305,0.104411,0.829021,0.00410646,0.381293,0.199428,0.520472,0.573923,0.445964,0.298204,0.591515,0.99259,0.623349,0.0395089,0.173889,0.905376,0.879136,0.337551,0.866333,0.366614,0.20651,0.78635,0.409141,0.443784,0.45573,0.61591,0.107564,0.341908,0.469458,0.0223817,0.376858,0.0260468,0.814189,0.850286,0.230836,0.999236,0.738838,0.227299,0.347375,0.941142,0.622557,0.426544,0.719306,0.131342,0.980269,0.739718,0.166432,0.527667,0.116778,0.21853,0.769357,0.395745,0.336562,0.870736,0.2341,0.796142,0.714631,0.223294,0.0351707,0.01604,0.744073,0.241075,0.997547,0.953355,0.95399,0.259272,0.972654,0.908086,0.153894,0.355095,0.42408,0.671303,0.0283337,0.53915,0.73865,0.818957,0.452318,0.518026,0.913344,0.11404,0.730226,0.532133,0.373716,0.831894,0.305643,0.535161,0.191295,0.142417,0.666448,0.988044,0.36821,0.368064,0.924551,0.916823,0.615961,0.062067,0.3702,0.924746,0.310486,0.949598,0.100409,0.279665,0.778101,0.119907,0.613613,0.230724,0.336224,0.598865,0.464437,0.0453693,0.169758,0.360746,0.803006,0.387942,0.0498312,0.443517,0.876005,0.614196,0.933601,0.229903,0.746695,0.630882,0.221922,0.0954908,0.782273,0.939486,0.253613,0.682,0.241811,0.0135731,0.547729,0.815344,0.25394,0.62559,0.640923,0.236606,0.146165,0.154261,0.141281,0.914328,0.9288,0.647172,0.142819,0.130028,0.580846,0.42777,0.682155,0.509533,0.650939,0.554008,0.980306,0.765554,0.515358,0.954466,0.324821,0.463717,0.0935001,0.432969,0.610468,0.286884,0.0162412,0.469983,0.578782,0.716009,0.113397,0.750701,0.673209,0.132426,0.4353,0.577595,0.871568,0.618841,0.512118,0.960206,0.867157,0.175768,0.408717,0.231728,0.841568,0.673262,0.946926,0.162943,0.721574,0.781021,0.100009,0.517211,0.995237,0.0480279,0.496284,0.715065,0.071521,0.183484,0.867619,0.491186,0.107874,0.445514,0.480987,0.468843,0.08745,0.525882,0.193424,0.967944,0.680696,0.818086,0.582408,0.315444,0.857957,0.570661,0.984861,0.971757,0.607315,0.403331,0.315395,0.0190861,0.235913,0.202099,0.503333,0.511786,0.254731,0.0980521,0.0585421,0.114998,0.413015,0.165207,0.93781,0.190841,0.446309,0.229341,0.460109,0.933461,0.131338,0.158227,0.919703,0.765655,0.396166,0.638353,0.546927,0.453378,0.205748,0.458931,0.137564,0.843583,0.843441,0.527355,0.29282,0.108135,0.0640709,0.416275,0.428831,0.0236453,0.97857,0.0629277,0.160052,0.819999,0.562221,0.850755,0.542354,0.543867,0.250434,0.900483,0.461872,0.38959,0.0655496,0.429897,0.325459,0.410635,0.994627,0.0800436,0.0127636,0.482315,0.874418,0.711083,0.689294,0.954367,0.0693225,0.0814961,0.0394546,0.865377,0.281897,0.381284,0.860772,0.077875,0.156735,0.397394,0.0578197,0.503004,0.395777,0.14303,0.337955,0.846835,0.300076,0.848017,0.25651,0.685141,0.187319,0.239295,0.543329,0.84702,0.153079,0.909199,0.938525,0.840856,0.331925,0.197767,0.431234,0.241145,0.102291,0.434653,0.984433,0.902043,0.00207758,0.747578,0.775936,0.255636,0.369444,0.588798,0.865884,0.117623,0.915129,0.758225,0.701775,0.0847846,0.939021,0.0853679,0.23301,0.469402,0.660818,0.00715059,0.176615,0.64666,0.699511,0.846767,0.725545,0.624697,0.229627,0.28842,0.307482,0.656359,0.50219,0.970967,0.434877,0.499392,0.629242,0.683743,0.997421,0.802481,0.576303,0.302987,0.87711,0.483432,0.218649,0.744042,0.600638,0.80988,0.684969,0.868026,0.680267,0.391319,0.723117,0.812385,0.10949,0.385074,0.0536964,0.559185,0.472894,0.0729888,0.998731,0.507272,0.650912,0.759719,0.721409,0.34928,0.406071,0.945952,0.358595,0.273916,0.680047,0.172771,0.0342807,0.838068,0.958338,0.963038,0.38949,0.220413,0.717203,0.497423,0.345507,0.451326,0.318302,0.670639,0.829718,0.495318,0.370387,0.410183,0.418097,0.992735,0.38117,0.527321,0.918002,0.854691,0.338158,0.946859,0.099684,0.98584,0.808374,0.787582,0.503417,0.0945342,0.382011,0.277839,0.35787,0.28404,0.698248,0.553155,0.761436,0.310288,0.511671,0.401738,0.917869,0.899245,0.0259935,0.7315,0.9539,0.471069,0.794679,0.835472,0.642112,0.194758,0.257178,0.504912,0.145332,0.967955,0.791376,0.195407,0.275747,0.761545,0.693071,0.19232,0.836085,0.000623822,0.00953299,0.0573049,0.716285,0.150982,0.667428,0.981728,0.976002,0.805067,0.780789,0.807822,0.407098,0.291873,0.36805,0.999138,0.639699,0.0244692,0.875932,0.520568,0.801982,0.524765,0.481409,0.309033,0.429886,0.614634,0.798571,0.155168,0.376744,0.428559,0.771958,0.157086,0.482106,0.901976,0.896087,0.205073,0.279085,0.802822,0.513241,0.370869,0.930748,0.905696,0.391839,0.152597,0.764727,0.628421,0.640587,0.732311,0.357692,0.383161,0.082221,0.430174,0.900539,0.184065,0.724547,0.0340126,0.374766,0.560469,0.502962,0.965706,0.593528,0.350611,0.0889692,0.494399,0.835849,0.577248,0.570727,0.614139,0.897558,0.168465,0.0382919,0.0756814,0.200465,0.0755097,0.143931,0.448998,0.569404,0.394193,0.405637,0.672787,0.851514,0.736999,0.81817,0.435148,0.911467,0.88105,0.75578,0.640945,0.273415,0.673907,0.00484586,0.332827,0.168336,0.379966,0.836085,0.266315,0.704373,0.0300767,0.365562,0.402186,0.121532,0.594103,0.498127,0.253344,0.66332,0.929879,0.986776,0.73005,0.0655602,0.78556,0.288442,0.61211,0.464506,0.400174,0.701256,0.356547,0.693484,0.735051,0.225702,0.081572,0.759551,0.946323,0.767647,0.66107,0.632022,0.690272,0.0809876,0.340659,0.398375,0.129817,0.444911,0.505465,0.661396,0.298455,0.493249,0.296817,0.0638644,0.181641,0.153178,0.362147,0.296288,0.670289,0.130697,0.80706,0.425041,0.221075,0.770213,0.171478,0.702666,0.0941074,0.970308,0.000641644,0.0951545,0.5271,0.359241,0.611603,0.967996,0.80157,0.876133,0.415914,0.780491,0.81953,0.858618,0.318775,0.865882,0.101528,0.801772,0.858739,0.0260891,0.42423,0.438736,0.728929,0.97141,0.921771,0.516102,0.835391,0.80294,0.882487,0.865683,0.25192,0.975158,0.540517,0.961897,0.221801,0.323484,0.0559204,0.712678,0.245721,0.520948,0.265196,0.210937,0.574377,0.00530791,0.389483,0.738241,0.456576,0.0140014,0.358334,0.218041,0.239535,0.706799,0.992238,0.982377,0.611661,0.59834,0.438274,0.748049,0.319012,0.801577,0.646993,0.831165,0.850677,0.480077,0.718717,0.586314,0.674186,0.127083,0.447425,0.476778,0.427512,0.177532,0.804109,0.722703,0.671227,0.604064,0.405591,0.772556,0.774526,0.622724,0.481973,0.629265,0.413511,0.461907,0.113298,0.811773,0.577126,0.510235,0.602385,0.527598,0.360144,0.364131,0.613306,0.995365,0.549108,0.445787,0.582924,0.0433854,0.678336,0.384848,0.82755,0.568156,0.902018,0.410729,0.920415,0.712184,0.688527,0.740383,0.461499,0.7067,0.748281,0.311684,0.3083,0.240409,0.0227722,0.35744,0.873123,0.165024,0.599649,0.560354,0.173579,0.493918,0.251413,0.206795,0.396939,0.548316,0.962874,0.572341,0.488071,0.00293922,0.115784,0.372129,0.426924,0.212588,0.201705,0.0578088,0.641767,0.89408,0.880525,0.0278383,0.203716,0.646657,0.0174118,0.16816,0.687203,0.505246,0.145573,0.422043,0.0481041,0.736826,0.312063,0.652368,0.496593,0.119741,0.471597,0.288846,0.691624,0.069773,0.861628,0.963415,0.634252,0.244735,0.802159,0.554683,0.361998,0.83099,0.487257,0.73739,0.61801,0.169981,0.9247,0.905709,0.71108,0.857264,0.814402,0.035625,0.393695,0.305602,0.0427014,0.764034,0.255216,0.506798,0.534942,0.86815,0.497306,0.831655,0.552892,0.607986,0.604727,0.975541,0.111186,0.560642,0.557245,0.271305,0.782773,0.54511,0.454496,0.300416,0.500556,0.618725,0.452391,0.904073,0.891575,0.735145,0.745235,0.812301,0.279571,0.750252,0.273473,0.717987,0.462053,0.800682,0.700467,0.333276,0.918787,0.948257,0.642319,0.154503,0.158581,0.779989,0.84231,0.183163,0.430245,0.0302415,0.849643,0.914102,0.46069,0.222653,0.192503,0.737883,0.032533,0.0748807,0.44085,0.366543,0.968322,0.258703,0.378951,0.0645885,0.508038,0.928112,0.914289,0.831135,0.126005,0.738024,0.668862,0.0455564,0.0327905,0.155423,0.656182,0.1473,0.544785,0.666492,0.826548,0.239428,0.454717,0.959273,0.655168,0.0633842,0.704476,0.108637,0.747177,0.5574,0.975812,0.996311,0.665118,0.0672364,0.22216,0.12474,0.368176,0.335457,0.999025,0.556225,0.451243,0.52847,0.345794,0.888717,0.0432404,0.668018,0.291284,0.616548,0.529612,0.859025,0.636609,0.609163,0.471042,0.665037,0.791339,0.0885214,0.350352,0.5592,0.183331,0.730996,0.582491,0.722607,0.423676,0.754123,0.26826,0.328418,0.550716,0.791934,0.276323,0.677969,0.361743,0.962703,0.469874,0.69814,0.136006,0.478503,0.00555569,0.899002,0.114211,0.909185,0.41111,0.118507,0.653742,0.148978,0.976212,0.930121,0.83181,0.464313,0.502237,0.436869,0.763186,0.0501574,0.0395467,0.605314,0.273759,0.62752,0.332326,0.525443,0.0299097,0.622366,0.719225,0.310049,0.506955,0.0741806,0.0953969,0.363847,0.773489,0.829432,0.319609,0.240987,0.310358,0.102821,0.186655,0.706242,0.729571,0.564914,0.264205,0.05946,0.121718,0.552589,0.538803,0.788341,0.6897,0.592664,0.522182,0.3116,0.91535,0.345018,0.54646,0.128567,0.527264,0.763944,0.0575871,0.538518,0.552861,0.974241,0.273183,0.609302,0.649193,0.458521,0.602759,0.192372,0.139303,0.971047,0.969213,0.858212,0.583261,0.328267,0.956641,0.456121,0.9755,0.0807921,0.95958,0.155726,0.76256,0.920476,0.124038,0.726672,0.256385,0.972628,0.946817,0.712914,0.716012,0.466505,0.00946772,0.414634,0.0624191,0.750378,0.668664,0.299627,0.107246,0.480069,0.168089,0.992833,0.348819,0.285067,|0.595662,0.96876,0.453785,0.253063,0.317438,0.33863,0.149108,0.941887,0.444595,0.292919,0.788954,0.175358,0.317447,0.414727,0.71778,0.146405,0.463084,0.27025,0.976463,0.175924,0.462304,0.73747,0.842969,0.434156,0.929736,0.489046,0.273497,0.456186,0.0859274,0.571925,0.9715,0.588783,0.847203,0.890422,0.730277,0.246352,0.076772,0.934064,0.813529,0.275338,0.431128,0.54588,0.40895,0.46975,0.384898,0.00261754,0.55066,0.0680608,0.583916,0.518638,0.863903,0.0840723,0.743448,0.903875,0.870995,0.863833,0.382071,0.58176,0.0422465,0.663161,0.0936122,0.960316,0.684521,0.815184,0.024375,0.804544,0.286178,0.769828,0.0985166,0.369372,0.314688,0.679097,0.699351,0.168373,0.0157173,0.826081,0.268854,0.0368277,0.428475,0.17883,0.602267,0.947341,0.130818,0.334488,0.431889,0.00937879,0.955344,0.610204,0.467449,0.30125,0.214192,0.548954,0.696697,0.367557,0.277173,0.800334,0.0701725,0.982737,0.941178,0.0725816,0.500565,0.792236,0.525516,0.0086816,0.203895,0.686484,0.800504,0.496575,0.702563,0.353379,0.768895,0.9901,0.726423,0.0922751,0.917683,0.648587,0.814476,0.160674,0.313352,0.265155,0.882692,0.979813,0.847465,0.297672,0.531637,0.773779,0.657492,0.5043,0.108024,0.820132,0.30415,0.444263,0.214142,0.655092,0.0149288,0.289397,0.843061,0.453021,0.656279,0.370586,0.479227,0.310686,0.94142,0.916034,0.704756,0.220056,0.929832,0.515016,0.845843,0.0220022,0.844018,0.572306,0.469483,0.741207,0.593326,0.759574,0.931394,0.361958,0.640667,0.339764,0.639455,0.961678,0.00157446,0.080662,0.267711,0.409581,0.274099,0.553132,0.459987,0.558899,0.507834,0.528561,0.768192,0.713067,0.411719,0.896366,0.0684372,0.320097,0.875657,0.139242,0.756425,0.902839,0.399471,0.743413,0.175908,0.488943,0.224323,0.641586,0.994509,0.0808059,0.0499386,0.750931,0.777221,0.242553,0.422324,0.0684179,0.352381,0.93828,0.709639,0.649915,0.561142,0.148575,0.565079,0.449814,0.261759,0.148553,0.0157993,0.658614,0.863349,0.65115,0.092729,0.10821,0.932119,0.0958155,0.944509,0.805775,0.188134,0.357444,0.450908,0.361173,0.82352,0.0846701,0.295701,0.98777,0.0823221,0.488768,0.412021,0.458386,0.585563,0.445836,0.652684,0.631008,0.806414,0.00909102,0.278395,0.389204,0.415868,0.909625,0.0415393,0.380435,0.806799,0.164004,0.92707,0.274384,0.806561,0.10246,0.529887,0.857763,0.779213,0.959152,0.195959,0.215835,0.249517,0.717537,0.265623,0.253457,0.590839,0.0910473,0.9422,0.990772,0.703761,0.115722,0.382237,0.74477,0.517623,0.993625,0.165383,0.319616,0.418429,0.420485,0.600129,0.82622,0.0858698,0.83792,0.673042,0.545724,0.345758,0.556134,0.98756,0.698258,0.519682,0.971396,0.230785,0.109773,0.576885,0.646907,0.862602,0.422833,0.893575,0.83757,0.987625,0.130396,0.0387637,0.960594,0.375415,0.940706,0.0407856,0.551518,0.379725,0.968303,0.118235,0.395702,0.903781,0.164376,0.468253,0.553233,0.483479,0.685297,0.368779,0.459708,0.752294,0.446563,0.689005,0.12022,0.0844666,0.648845,0.20652,0.0419766,0.560103,0.268951,0.498959,0.880616,0.0749115,0.817615,0.607612,0.439192,0.258263,0.00446999,0.162816,0.886426,0.259545,0.858398,0.76143,0.665278,0.749462,0.368212,0.0852197,0.27229,0.190007,0.962559,0.157076,0.977604,0.211997,0.300316,0.579297,0.0434405,0.0522175,0.458319,0.165068,0.771054,0.82801,0.81068,0.780474,0.13409,0.441515,0.0947222,0.432608,0.867929,0.0351742,0.229407,0.159171,0.691975,0.0222642,0.70501,0.642972,0.0523766,0.292428,0.66936,0.412523,0.203172,0.626368,0.405024,0.00483197,0.190644,0.392079,0.779327,0.472601,0.819185,0.754633,0.26375,0.963488,0.704713,0.780714,0.906352,0.473018,0.635935,0.977007,0.541681,0.586041,0.990099,0.493539,0.826543,0.952095,0.765667,0.0047093,0.132962,0.580713,0.934248,0.00174761,0.0733274,0.0810881,0.831311,0.145609,0.631615,0.611977,0.676059,0.563222,0.654062,0.60075,0.16586,0.394551,0.257258,0.585847,0.452328,0.813884,0.760336,0.499665,0.181162,0.977164,0.0660592,0.771617,0.333409,0.00752461,0.0637853,0.513389,0.768757,0.998287,0.469489,0.301265,0.0862824,0.978453,0.162915,0.256738,0.700447,0.819905,0.447025,0.307478,0.1998,0.905045,0.32321,0.671256,0.20062,0.992275,0.825859,0.885429,0.0278844,0.348973,0.681703,0.577872,0.461536,0.46342,0.755142,0.364114,0.45741,0.36641,0.47337,0.398345,0.240286,0.870056,0.146859,0.638189,0.137617,0.349789,0.569582,0.140543,0.664276,0.247941,0.657543,0.76812,0.856128,0.791407,0.364267,0.256188,0.107174,0.0646995,0.0287948,0.26515,0.00505185,0.140563,0.0701816,0.727543,0.961672,0.225677,0.710661,0.776311,0.791201,0.35604,0.0293149,0.679508,0.128201,0.417913,0.688163,0.995366,0.447945,0.897193,0.830765,0.80094,0.726049,0.65066,0.988703,0.44137,0.19085,0.0122505,0.921551,0.947419,0.545316,0.494242,0.675966,0.58955,0.937915,0.633867,0.801377,0.0677345,0.826679,0.535147,0.72436,0.881096,0.883441,0.713604,0.782205,0.782261,0.309434,0.729867,0.201417,0.449346,0.743726,0.760396,0.456269,0.00546718,0.406019,0.301839,0.891022,0.0546656,0.55936,0.496907,0.893164,0.527248,0.170539,0.134244,0.845382,0.0108842,0.945093,0.528824,0.992172,0.671266,0.98749,0.086386,0.323011,0.467323,0.584928,0.542504,0.0820653,0.771748,0.46546,0.688402,0.912421,0.621438,0.139249,0.581978,0.585687,0.330829,0.383025,0.0329933,0.490402,0.125996,0.986861,0.656268,0.171143,0.694339,0.539713,0.556667,0.729001,0.513828,0.198018,0.187134,0.485139,0.0870947,0.535929,0.259797,0.7302,0.298527,0.029725,0.0936823,0.645412,0.158916,0.079794,0.754389,0.432056,0.279884,0.224752,0.971975,0.249842,0.88358,0.373752,0.184483,0.525374,0.669064,0.669812,0.405854,0.342354,0.826949,0.165059,0.405482,0.453005,0.730473,0.377197,0.828574,0.271741,0.5536,0.684196,0.805909,0.781613,0.658997,0.943884,0.504831,0.535805,0.951497,0.736319,0.246423,0.150404,0.706698,0.328016,0.763854,0.342266,0.312716,0.534466,0.248306,0.589489,0.569504,0.767332,0.618636,0.314964,0.209181,0.618253,0.193591,0.0994658,0.549809,0.561616,0.870127,0.734392,0.50139,0.0672143,0.438885,0.58378,0.0165836,0.712334,0.295223,0.261507,0.854417,0.758453,0.839276,0.960351,0.71153,0.979393,0.176993,0.17732,0.711736,0.910514,0.667472,0.335995,0.682973,0.670383,0.927997,0.375838,0.207453,0.261516,0.465461,0.852618,0.331405,0.240644,0.641556,0.794272,0.0405926,0.946852,0.770586,0.416761,0.691785,0.529512,0.555606,0.681333,0.691662,0.457207,0.0808529,0.432698,0.343302,0.00130051,0.945277,0.171997,0.587952,0.845375,0.523101,0.203936,0.204442,0.72325,0.699491,0.528518,0.422551,0.913886,0.565544,0.340433,0.500571,0.158182,0.778286,0.879545,0.422574,0.892745,0.192948,0.21744,0.233381,0.540298,0.06831,0.461807,0.628739,0.19145,0.864435,0.0232069,0.994605,0.128388,0.0616847,0.669517,0.0318828,0.298806,0.851268,0.420496,0.857275,0.277519,0.348344,0.65674,0.863629,0.760591,0.4557,0.492335,0.712865,0.129145,0.27285,0.0354789,0.540295,0.186877,0.725562,0.590303,0.912321,0.394955,0.964933,0.679595,0.255552,0.400213,0.291957,0.775537,0.647414,0.24568,0.000525415,0.233453,0.153815,0.325716,0.458341,0.290378,0.769505,0.0477735,0.479587,0.507681,0.912568,0.369199,0.737125,0.601129,0.0935464,0.1874,0.0590365,0.55062,0.548532,0.514196,0.237392,0.934523,0.0424784,0.88687,0.202433,0.134639,0.70419,0.80637,0.327461,0.377645,0.29689,0.519526,0.155108,0.801493,0.678484,0.439054,0.267748,0.266205,0.444008,0.937268,0.515314,0.464683,0.937404,0.34172,0.544904,0.76593,0.512088,0.291397,0.0749856,0.576429,0.810879,0.98766,0.201581,0.455816,0.319104,0.407444,0.394604,0.275314,0.696253,0.371767,0.347425,0.750053,0.986447,0.337315,0.489193,0.691895,0.297291,0.549831,0.956974,0.35733,0.800113,0.402275,0.225679,0.110773,0.384018,0.96076,0.459343,0.323841,0.7624,0.799771,0.416135,0.137502,0.0342032,0.554839,0.000963867,0.356418,0.559862,0.438389,0.827549,0.17043,0.125548,0.160249,0.947282,0.114059,0.662859,0.835341,0.91114,0.661703,0.404102,0.907116,0.335624,0.625335,0.897398,0.250255,0.290357,0.131315,0.502111,0.497841,0.503309,0.208138,0.68485,0.291027,0.842607,0.348228,0.823917,0.167179,0.348105,0.244436,0.937643,0.448202,0.603585,0.980974,0.0169867,0.964355,0.545669,0.289894,0.416061,0.28639,0.511247,0.114392,0.334046,0.979877,0.265715,0.667633,0.14519,0.494115,0.645797,0.191465,0.761414,0.253229,0.752228,0.446193,0.593542,0.235094,0.37689,0.348711,0.301989,0.409697,0.613213,0.621876,0.895221,0.98088,0.42762,0.869948,0.931754,0.424501,0.622152,0.212783,0.166475,0.538737,0.678589,0.434471,0.758033,0.1213,0.763342,0.00940996,0.440953,0.30355,0.051204,0.460493,0.272869,0.343791,0.946337,0.270758,0.695422,0.048934,0.788592,0.631332,0.966634,0.669918,0.564968,0.607654,0.0188102,0.500102,0.435767,0.0990208,0.293153,0.393793,0.584586,0.59676,0.123197,0.368378,0.904809,0.14886,0.0921591,0.77453,0.67296,0.354922,0.293868,0.771913,0.082256,0.536602,0.0113082,0.562759,0.0761223,0.482504,0.652244,0.36684,0.0333082,0.0347351,0.817317,0.33606,0.475095,0.199235,0.914159,0.692242,0.578176,0.19325,0.90393,0.077292,0.227933,0.170047,0.284604,0.369561,0.717377,0.794079,0.980328,0.767763,0.506584,0.89008,0.139761,0.520034,0.47234,0.656472,0.481894,0.458,0.996232,0.854907,0.487517,0.917138,0.5893,0.282234,0.395958,0.882209,0.745219,0.442207,0.23093,0.801982,0.949498,0.913093,|0.594997,0.704971,0.51665,0.806601,0.425174,0.598145,0.826152,0.56525,0.982164,0.188611,0.403325,0.113104,0.549837,0.857467,0.340115,0.915194,0.0341747,0.456298,0.52419,0.945094,0.203477,0.0951313,0.35103,0.943941,0.174009,0.748399,0.185075,0.601204,0.795321,0.581626,0.374584,0.69362,0.764692,0.237543,0.953792,0.236681,0.4899,0.731514,0.080072,0.206065,0.65699,0.0339897,0.209791,0.543426,0.0928043,0.0313179,0.458131,0.332718,0.0267939,0.359302,0.676733,0.109958,0.912457,0.0360155,0.380203,0.704249,0.840595,0.841489,0.458058,0.335152,0.0297447,0.519787,0.928243,0.451075,0.431742,0.972143,0.7755,0.835393,0.624654,0.68426,0.780922,0.998601,0.13136,0.11284,0.176725,0.127376,0.730589,0.542046,0.699518,0.0529687,0.107043,0.854115,0.284849,0.540944,0.200029,0.115376,0.400955,0.711982,0.421144,0.184564,0.863629,0.528968,0.544467,0.331742,0.735846,0.771841,0.250331,0.516529,0.493178,0.958759,0.908033,0.103316,0.42795,0.855307,0.989293,0.477014,0.603177,0.412392,0.643706,0.795476,0.954911,0.9613,0.300194,0.859351,0.242285,0.521562,0.104865,0.0927657,0.668735,0.619808,0.415841,0.452254,0.702393,0.699228,0.261697,0.368121,0.976901,0.910228,0.389058,0.582239,0.153569,0.305523,0.293161,0.489667,0.0169305,0.747963,0.615774,0.746529,0.00588048,0.237429,0.334633,0.870977,0.986126,0.468799,0.366198,0.129591,0.915121,0.97521,0.267357,0.582636,0.444842,0.113434,0.377065,0.300092,0.767231,0.0852722,0.217403,0.76912,0.655243,0.46454,0.693589,0.914483,0.421982,0.452098,0.571456,0.148938,0.0585892,0.473759,0.151324,0.764491,0.25902,0.258041,0.570196,0.632281,0.967851,0.977461,0.266115,0.580476,0.819208,0.871796,0.319856,0.745422,0.775571,0.963255,0.631973,0.975016,0.625307,0.641203,0.188541,0.25389,0.154171,0.576306,0.809847,0.134002,0.845473,0.755875,0.15883,0.405293,0.447468,0.146417,0.86493,0.324303,0.725877,0.965697,0.501905,0.687223,0.426401,0.874443,0.123448,0.866891,0.884755,0.169923,0.704459,0.4928,0.521653,0.224765,0.26599,0.349723,0.860644,0.825818,0.968756,0.766995,0.591832,0.0522448,0.125238,0.545533,0.999415,0.0629275,0.165696,0.676515,0.550397,0.982626,0.710848,0.861485,0.131048,0.0409227,0.376922,0.197176,0.607202,0.534244,0.262477,0.924487,0.460955,0.468506,0.259198,0.153558,0.0115227,0.0582397,0.686669,0.0871219,0.773839,0.629688,0.847865,0.0822675,0.0639986,0.19392,0.566459,0.639976,0.851724,0.264134,0.00861299,0.972516,0.70304,0.556349,0.613137,0.939407,0.211511,0.69326,0.249527,0.274152,0.585477,0.679628,0.924751,0.962592,0.0402709,0.273818,0.775454,0.349973,0.178897,0.343846,0.935534,0.950782,0.809615,0.314386,0.27599,0.629661,0.647014,0.403891,0.557008,0.609977,0.586745,0.205462,0.632661,0.411278,0.816313,0.0827255,0.222872,0.166943,0.0415264,0.482117,0.125122,0.405539,0.845234,0.84898,0.116202,0.189515,0.553692,0.92493,0.271767,0.821631,0.747945,0.794166,0.830326,0.633528,0.188292,0.115118,0.336715,0.572027,0.377166,0.849744,0.994409,0.0870795,0.863075,0.489038,0.581953,0.623582,0.852976,0.48009,0.0157202,0.315015,0.372533,0.483166,0.496131,0.0915507,0.216328,0.301751,0.757032,0.048948,0.00779301,0.794897,0.422042,0.334008,0.0372446,0.486741,0.841835,0.206181,0.236439,0.653095,0.468303,0.302735,0.959552,0.643353,0.3815,0.217375,0.797076,0.107238,0.711966,0.619187,0.995059,0.817993,0.583765,0.424625,0.381048,0.485904,0.921778,0.764904,0.971133,0.315078,0.115578,0.535754,0.78412,0.224017,0.985601,0.788964,0.608897,0.705437,0.581215,0.402485,0.671878,0.952395,0.400941,0.732107,0.969151,0.224231,0.567967,0.557029,0.740117,0.375759,0.302088,0.894152,0.499742,0.419711,0.642794,0.347908,0.679229,0.879069,0.231716,0.0490626,0.966211,0.46797,0.419197,0.936897,0.420377,0.748593,0.993214,0.72333,0.664853,0.857873,0.638506,0.612393,0.0370957,0.528113,0.238091,0.700092,0.79585,0.619668,0.618622,0.0892941,0.809981,0.981953,0.174946,0.170945,0.51077,0.0617049,0.231837,0.920024,0.374345,0.202118,0.784952,0.792097,0.891343,0.57675,0.773452,0.632755,0.840317,0.336198,0.169394,0.858891,0.38308,0.321396,0.523743,0.782048,0.524029,0.480895,0.892206,0.800438,0.780814,0.733506,0.101434,0.86376,0.736331,0.0571838,0.125046,0.911844,0.685518,0.93215,0.715758,0.431244,0.127493,0.298564,0.0372019,0.824786,0.164616,0.797788,0.638832,0.584699,0.0437494,0.476844,0.18474,0.313096,0.18225,0.709032,0.275065,0.078194,0.860304,0.64955,0.434451,0.353683,0.262669,0.0484897,0.225451,0.377871,0.866845,0.323447,0.610458,0.678586,0.724162,0.545328,0.545683,0.504472,0.716929,0.632157,0.750137,0.64918,0.648965,0.600385,0.723148,0.0817841,0.815575,0.541687,0.0347859,0.766033,0.00875884,0.163209,0.310497,0.579021,0.0875767,0.44659,0.856249,0.481508,0.124901,0.705172,0.510943,0.888728,0.651176,0.934508,0.810461,0.659715,0.872955,0.0521768,0.690888,0.85368,0.195951,0.350733,0.210621,0.569051,0.609866,0.0604792,0.854991,0.021244,0.17569,0.194135,0.346495,0.751117,0.202465,0.426641,0.831637,0.157576,0.27236,0.470747,0.58337,0.467814,0.60175,0.468888,0.993058,0.230843,0.221146,0.785881,0.652882,0.065231,0.0668974,0.965975,0.835144,0.501456,0.683607,0.254635,0.0721422,0.292722,0.980619,0.393007,0.902484,0.964691,0.0203924,0.460185,0.8778,0.548533,0.712788,0.80173,0.659145,0.410664,0.611874,0.672656,0.759231,0.879847,0.326939,0.0846566,0.0547768,0.191228,0.301277,0.237947,0.355384,0.491101,0.765619,0.869257,0.887682,0.55693,0.727057,0.255598,0.700105,0.204069,0.818996,0.407963,0.0782966,0.142368,0.0382531,0.918579,0.909964,0.759948,0.0261358,0.582388,0.216842,0.31462,0.763505,0.429819,0.794257,0.346461,0.219019,0.373449,0.0737627,0.0374507,0.0196036,0.487271,0.00542575,0.187197,0.53393,0.899981,0.781656,0.164156,0.245071,0.698759,0.532087,0.293932,0.311419,0.620831,0.975207,0.205344,0.612888,0.628131,0.924195,0.81781,0.495714,0.798562,0.178168,0.326137,0.948604,0.784827,0.13481,0.0642316,0.0200965,0.890875,0.0975217,0.579917,0.228625,0.199921,0.747022,0.173715,0.392864,0.467014,0.261816,0.651075,0.525946,0.894618,0.711882,0.925557,0.154257,0.81117,0.123212,0.576652,0.50931,0.516388,0.951136,0.976684,0.757506,0.177688,0.169471,0.600478,0.22928,0.75155,0.081059,0.40654,0.454814,0.53091,0.196588,0.383072,0.368011,0.208476,0.697154,0.0959725,0.268967,0.0772449,0.371496,0.225189,0.629924,0.565101,0.359077,0.953713,0.81582,0.747727,0.773847,0.582919,0.032468,0.13294,0.415366,0.310384,0.867769,0.452032,0.802867,0.00371885,0.870681,0.51805,0.411265,0.579859,0.47028,0.40404,0.0662033,0.719988,0.972776,0.612109,0.632304,0.67823,0.513919,0.609204,0.635224,0.840457,0.479746,0.43975,0.341952,0.975313,0.766266,0.540546,0.400774,0.843273,0.214653,0.316303,0.0730491,0.863037,0.886489,0.511141,0.357122,0.606603,0.275466,0.171507,0.662486,0.715617,0.360644,0.964577,0.729237,0.912812,0.477744,0.713614,0.60025,0.546683,0.0662879,0.13998,0.779077,0.768571,0.319681,0.140044,0.613461,0.796818,0.828018,0.903987,0.456859,0.845044,0.114344,0.483325,0.789149,0.884621,0.111716,0.254159,0.845458,0.911016,0.674034,0.0987688,0.154228,0.387206,0.410826,0.728253,0.398775,0.938504,0.683428,0.302851,0.847516,0.13517,0.261422,0.397485,0.494938,0.185666,0.178971,0.192826,0.165454,0.466532,0.731033,0.190078,0.586259,0.968101,0.331982,0.932584,0.0505468,0.599863,0.849723,0.883222,0.0156215,0.34066,0.0781812,0.70433,0.0604702,0.490214,0.0138719,0.724535,0.984056,0.828419,0.490142,0.740636,0.733643,0.172673,0.396718,0.841581,0.0282327,0.317758,0.354791,0.00310981,0.765766,0.392396,0.428551,0.215951,0.2325,0.0175159,0.630651,0.724904,0.749412,0.0933643,0.263606,0.707301,0.580339,0.184845,0.878265,0.386694,0.904984,0.338055,0.522655,0.693154,0.865258,0.432426,0.736048,0.085086,0.868475,0.792148,0.690944,0.155606,0.90738,0.667165,0.761718,0.0356126,0.515357,0.817035,0.570175,0.832356,0.572101,0.579008,0.668178,0.505028,0.995255,0.136495,0.671943,0.363461,0.290986,0.49006,0.143127,0.58159,0.380055,0.772353,0.269772,0.031843,0.510507,0.294443,0.897045,0.655982,0.114295,0.292038,0.871648,0.926152,0.830093,0.123337,0.963659,0.953126,0.455412,0.458263,0.675889,0.154074,0.310915,0.298348,0.319591,0.327116,0.00165051,0.700187,0.476888,0.371734,0.539959,0.0982317,0.378178,0.757339,0.530566,0.117197,0.246627,0.674074,0.281214,0.746973,0.389034,0.677131,0.589291,0.0708787,0.0876324,0.0601081,0.0293661,0.798922,0.473091,0.111338,0.548459,0.0923876,0.36355,0.852651,0.227145,0.983102,0.74118,0.417363,0.720467,0.176071,0.109497,0.925669,0.112872,0.722587,0.553741,0.157143,0.816152,0.272035,0.85055,0.112412,0.0844803,0.887327,0.165336,0.495731,0.468867,0.20279,0.0181139,0.793396,0.812399,0.822774,0.52567,0.346939,0.89412,0.484191,0.728494,0.867519,0.810785,0.967773,0.744453,0.391969,0.438981,0.303883,0.713247,0.685959,0.48931,0.492438,0.523357,0.486466,0.763392,0.661404,0.396844,0.557045,0.774983,0.832792,0.731671,0.336426,0.670742,0.0252677,0.746544,0.149989,0.979035,0.815586,0.717262,0.0707141,0.595749,0.732376,0.798633,0.285817,0.0381733,0.162221,0.970136,0.218073,0.801407,0.91779,0.527151,0.830688,0.247483,0.653143,0.542087,0.388263,0.0395768,0.633806,0.00505632,0.409014,0.62959,0.149538,0.268708,0.134407,0.23078,0.264228,0.995433,0.641593,|0.984556,0.853987,0.0603234,0.894511,0.91401,0.789192,0.461499,0.927085,0.474591,0.388316,0.859225,0.278522,0.21467,0.967561,0.778873,0.834955,0.0930354,0.729269,0.369611,0.389908,0.812051,0.540406,0.351584,0.626104,0.255475,0.99543,0.507069,0.60955,0.610092,0.915722,0.505182,0.0391311,0.619756,0.534115,0.820224,0.534618,0.987414,0.202011,0.24072,0.0360528,0.0516488,0.677986,0.250684,0.241784,0.93476,0.0972469,0.862842,0.332551,0.445871,0.281175,0.168802,0.0956168,0.745747,0.416095,0.921337,0.279981,0.364482,0.572561,0.462475,0.580624,0.527674,0.828493,0.935601,0.681729,0.0762465,0.111475,0.449941,0.336021,0.164905,0.341736,0.60115,0.786618,0.172652,0.0183798,0.66906,0.500257,0.635127,0.518315,0.384978,0.30089,0.0839744,0.838187,0.563688,0.408036,0.114769,0.778968,0.560184,0.610749,0.0672714,0.0189959,0.715803,0.166151,0.174817,0.85176,0.872015,0.795012,0.49167,0.19924,0.809585,0.902478,0.70312,0.855841,0.553116,0.599149,0.924204,0.426177,0.424424,0.313746,0.749358,0.0099082,0.603137,0.835023,0.767189,0.482488,0.290417,0.94179,0.801032,0.284868,0.00282222,0.126426,0.782864,0.352287,0.574822,0.344365,0.1912,0.303009,0.84618,0.244426,0.152031,0.620463,0.454869,0.514204,0.117753,0.93113,0.123413,0.686282,0.0146513,0.0327514,0.792332,0.932857,0.987507,0.561623,0.210345,0.516981,0.0589573,0.71325,0.30546,0.377599,0.83596,0.37453,0.349438,0.453933,0.0418304,0.886134,0.290025,0.456893,0.637077,0.976406,0.480374,0.0460296,0.240764,0.250794,0.238687,0.550353,0.858973,0.957615,0.979734,0.612273,0.46539,0.921655,0.82981,0.760201,0.367779,0.847091,0.595766,0.263959,0.412404,0.139291,0.230435,0.160302,0.240483,0.292724,0.400911,0.496866,0.0569571,0.101675,0.543527,0.306444,0.284296,0.588458,0.905954,0.0689722,0.867367,0.333216,0.125867,0.825929,0.987232,0.215732,0.326774,0.754599,0.219089,0.227692,0.39883,0.588736,0.0781783,0.751782,0.446125,0.333932,0.692436,0.403492,0.567491,0.56412,0.863495,0.290351,0.267569,0.486255,0.839575,0.998938,0.761135,0.794766,0.497492,0.76364,0.51311,0.891721,0.0529405,0.147656,0.192967,0.248889,0.296263,0.451123,0.0536126,0.827653,0.626895,0.489319,0.0183084,0.103487,0.589817,0.655476,0.0833457,0.20877,0.429677,0.325357,0.550731,0.709166,0.121975,0.113642,0.6675,0.376581,0.736449,0.277667,0.224752,0.825157,0.0927199,0.286479,0.341971,0.670968,0.718696,0.434173,0.96854,0.498525,0.488338,0.845085,0.0712501,0.470996,0.902061,0.538174,0.411864,0.0481679,0.794007,0.665179,0.769756,0.601988,0.350062,0.890386,0.49014,0.596172,0.778139,0.230368,0.938022,0.73492,0.531966,0.421713,0.36304,0.479901,0.439584,0.342345,0.612529,0.031738,0.896573,0.634886,0.760471,0.7049,0.436595,0.426854,0.0299419,0.0990044,0.471492,0.254626,0.441579,0.642152,0.864308,0.590846,0.200537,0.414285,0.574671,0.690056,0.281167,0.0684573,0.570663,0.28827,0.104884,0.955661,0.680239,0.968157,0.726606,0.198179,0.810345,0.294078,0.114124,0.582617,0.348925,0.789603,0.0221725,0.39582,0.648259,0.29861,0.60851,0.601147,0.543742,0.610959,0.453248,0.723839,0.838232,0.912027,0.0459176,0.475828,0.124156,0.0414801,0.808439,0.981847,0.480283,0.910399,0.90669,0.449709,0.00679749,0.967894,0.494443,0.904288,0.816774,0.8777,0.810945,0.193197,0.810597,0.103197,0.238994,0.516051,0.367865,0.277002,0.829529,0.345123,0.611623,0.418156,0.295402,0.327506,0.382115,0.0112397,0.44119,0.706417,0.487434,0.796828,0.546878,0.180022,0.30752,0.181051,0.15635,0.900377,0.462621,0.808137,0.643568,0.440181,0.142456,0.756085,0.590692,0.263738,0.135999,0.317105,0.296265,0.94257,0.712649,0.874467,0.603408,0.649848,0.501993,0.48205,0.768741,0.714795,0.815877,0.932649,0.134139,0.187407,0.186411,0.700684,0.827352,0.825547,0.944509,0.886126,0.876204,0.145833,0.100291,0.210306,0.534117,0.552463,0.979374,0.849846,0.479775,0.156707,0.833177,0.14347,0.636797,0.183033,0.804834,0.494824,0.0428731,0.391091,0.337088,0.15997,0.954622,0.115388,0.191336,0.442779,0.62844,0.725709,0.118293,0.514364,0.923341,0.493395,0.241442,0.602562,0.94234,0.599487,0.264801,0.622002,0.163031,0.470705,0.0346009,0.442282,0.0221652,0.130616,0.161528,0.563757,0.84129,0.781832,0.584495,0.674003,0.586727,0.127836,0.234448,0.423164,0.226284,0.645548,0.947478,0.250918,0.901854,0.599947,0.327355,0.122357,0.704277,0.776221,0.165133,0.489109,0.343716,0.603,0.00175285,0.492684,0.861592,0.514027,0.0767925,0.864049,0.991815,0.440004,0.38875,0.83895,0.556793,0.242716,0.0442579,0.259189,0.657742,0.0549387,0.760291,0.0635406,0.677942,0.378431,0.408019,0.236822,0.0886631,0.508283,0.128726,0.4595,0.112936,0.5411,0.391813,0.751215,0.793197,0.890522,0.965745,0.922718,0.87392,0.775502,0.176307,0.196001,0.591244,0.152132,0.733165,0.723953,0.0534312,0.780057,0.988994,0.243955,0.742291,0.195255,0.610592,0.871976,0.47295,0.0678082,0.118252,0.115992,0.307542,0.692543,0.871203,0.112921,0.605534,0.537823,0.320487,0.531429,0.573284,0.0117636,0.993546,0.971714,0.388321,0.762207,0.924106,0.168727,0.597699,0.683949,0.115916,0.665282,0.91573,0.309464,0.314934,0.121931,0.215813,0.106534,0.065998,0.72154,0.0964895,0.229034,0.413805,0.77108,0.289093,0.934074,0.77449,0.364777,0.949978,0.312182,0.723479,0.955758,0.277767,0.664409,0.107901,0.719006,0.663112,0.0027225,0.584203,0.303677,0.318791,0.00506866,0.724599,0.715932,0.911518,0.829568,0.185454,0.531118,0.186702,0.838031,0.45627,0.883709,0.736005,0.433952,0.745881,0.624974,0.784727,0.0855659,0.262133,0.541324,0.0762504,0.534204,0.324051,0.216094,0.500594,0.718568,0.850549,0.149958,0.963883,0.655672,0.0149843,0.492143,0.217983,0.344156,0.529973,0.191919,0.895391,0.904747,0.668297,0.186852,0.677451,0.156114,0.346245,0.667417,0.617874,0.394804,0.724301,0.332868,0.423996,0.0947383,0.589363,0.548744,0.634772,0.944729,0.827892,0.475767,0.449099,0.451034,0.568785,0.827351,0.376692,0.425613,0.39201,0.448117,0.970003,0.685799,0.0798019,0.718519,0.308197,0.939099,0.946853,0.946314,0.336072,0.0210427,0.333552,0.645218,0.472948,0.788264,0.884846,0.609577,0.560872,0.105396,0.559026,0.0143909,0.534005,0.292591,0.847126,0.915384,0.159238,0.0651113,0.48897,0.406036,0.633325,0.734368,0.762337,0.57558,0.0591247,0.224407,0.277494,0.823624,0.0495659,0.873234,0.703531,0.676332,0.142791,0.433443,0.817876,0.910993,0.639746,0.303718,0.350941,0.694761,0.504326,0.880141,0.509205,0.423932,0.926685,0.346248,0.119095,0.915381,0.0350405,0.77241,0.667145,0.824371,0.840128,0.522815,0.0067451,0.426532,0.734056,0.618362,0.0625432,0.963096,0.592858,0.255963,0.534772,0.898572,0.976839,0.824907,0.187879,0.271935,0.596776,0.143895,0.866539,0.115697,0.00902081,0.123229,0.676669,0.39335,0.592397,0.00179839,0.0149646,0.24092,0.331887,0.512945,0.145896,0.335927,0.240272,0.871318,0.950719,0.875217,0.945393,0.713269,0.637252,0.271071,0.0499884,0.226356,0.628591,0.229124,0.755025,0.556146,0.937593,0.469437,0.775057,0.00386304,0.897417,0.765134,0.985287,0.094793,0.836185,0.406553,0.89587,0.3126,0.492077,0.940087,0.558197,0.978324,0.0028019,0.603632,0.413107,0.548297,0.854215,0.357573,0.925419,0.44748,0.633905,0.624951,0.064063,0.486956,0.870778,0.319605,0.106524,0.410466,0.506404,0.767671,0.926986,0.264462,0.835813,0.589101,0.88794,0.655948,0.771753,0.63582,0.543464,0.275903,0.283527,0.153527,0.628362,0.73273,0.353423,0.423211,0.461942,0.398904,0.540503,0.842334,0.0565205,0.433745,0.0337961,0.116224,0.558024,0.237075,0.237354,0.844157,0.925494,0.62182,0.851954,0.108294,0.246828,0.59083,0.503959,0.101593,0.980533,0.914553,0.443185,0.67018,0.363419,0.932185,0.317517,0.41915,0.684036,0.497917,0.445443,0.184226,0.904709,0.647338,0.064298,0.892756,0.237041,0.153013,0.245279,0.317646,0.696015,0.80475,0.275041,0.522733,0.170849,0.318496,0.867425,0.0899294,0.358055,0.877178,0.0600677,0.307212,0.693567,0.593579,0.303394,0.910536,0.849665,0.314772,0.0575335,0.520716,0.523144,0.0229024,0.313669,0.351965,0.114756,0.390505,0.316919,0.86521,0.181154,0.759018,0.285163,0.816881,0.288919,0.87714,0.970217,0.190972,0.154391,0.406561,0.613757,0.362776,0.105574,0.402627,0.4535,0.380366,0.746407,0.0468099,0.662886,0.57699,0.982991,0.755975,0.380105,0.338204,0.325378,0.640463,0.223356,0.384479,0.349982,0.279786,0.350648,0.0423793,0.915313,0.982721,0.565921,0.936527,0.800083,0.167853,0.924215,0.0499778,0.218329,0.71837,0.830781,0.660912,0.534996,0.98906,0.663224,0.786325,0.898309,0.00489634,0.00815779,0.555784,0.0249635,0.944482,0.396475,0.155446,0.450975,0.324643,0.874656,0.441371,0.395032,0.0705292,0.628216,0.653075,0.430363,0.699271,0.163572,0.803478,0.874651,0.957672,0.466011,0.976612,0.945697,0.508905,0.404663,0.538762,0.919602,0.559893,0.0426337,0.66169,0.381929,0.882328,0.994854,0.0444464,0.391251,0.732081,0.940022,0.0783932,0.840953,0.877448,0.281512,0.269341,0.25135,0.532901,0.666224,0.654695,0.13902,0.289713,0.736364,0.056397,0.745044,0.63526,0.217199,0.909052,0.43477,0.368198,0.871331,0.208391,0.96226,0.634623,0.800118,0.569626,0.700044,0.436419,0.333383,0.807813,0.369093,0.496791,0.498765,0.882936,0.995481,0.708823,0.13796,0.161524,0.38706,0.306063,0.821172,0.819912,0.274399,0.576527,0.820979,0.224864,0.983678,0.115028,0.916276,0.946849,0.12538,0.678301,|0.22488,0.0840828,0.286974,0.109479,0.575367,0.73864,0.410708,0.619932,0.00385725,0.20619,0.323792,0.798311,0.0647771,0.662071,0.318426,0.50631,0.924344,0.290559,0.525565,0.813989,0.710244,0.897093,0.776314,0.223178,0.983995,0.00103575,0.778276,0.859004,0.946107,0.860826,0.774028,0.455915,0.327182,0.604701,0.735751,0.195957,0.111865,0.634602,0.875684,0.719408,0.0782645,0.877472,0.820965,0.615244,0.770887,0.300609,0.283621,0.747074,0.0192915,0.696271,0.0228238,0.00909728,0.721711,0.101285,0.619811,0.897214,0.861261,0.362995,0.793538,0.223365,0.0861583,0.0350009,0.325037,0.155373,0.763379,0.412337,0.601069,0.808397,0.871743,0.874579,0.495631,0.584232,0.231793,0.14715,0.780968,0.456327,0.767047,0.601444,0.522699,0.520942,0.411811,0.542463,0.834761,0.561397,0.508911,0.339742,0.941938,0.728872,0.528626,0.413523,0.552003,0.810182,0.336187,0.114956,0.524342,0.28612,0.459678,0.202345,0.998144,0.68305,0.39394,0.996368,0.671534,0.322297,0.412713,0.54206,0.822649,0.5993,0.68661,0.827542,0.862003,0.539094,0.181545,0.468497,0.359851,0.896727,0.343599,0.288059,0.878846,0.532301,0.48491,0.905604,0.823542,0.436815,0.063602,0.917511,0.921697,0.344932,0.0479004,0.573246,0.586009,0.204421,0.730598,0.863501,0.147851,0.191903,0.410128,0.191575,0.0078277,0.761259,0.812874,0.139375,0.107106,0.465944,0.479658,0.180207,0.137753,0.148364,0.329433,0.115121,0.918833,0.493577,0.943997,0.347093,0.287902,0.625955,0.836933,0.973694,0.177252,0.731227,0.404732,0.923398,0.212873,0.204059,0.509873,0.356877,0.0973142,0.577984,0.420964,0.901805,0.744233,0.737649,0.627504,0.192664,0.324036,0.0993268,0.874272,0.420956,0.334508,0.859898,0.613606,0.813727,0.983217,0.602617,0.0567703,0.952759,0.479094,0.440443,0.698472,0.255251,0.598522,0.861734,0.655956,0.578042,0.632108,0.836906,0.893507,0.822097,0.837823,0.198283,0.300167,0.0650972,0.0274069,0.112758,0.735077,0.623803,0.575383,0.856056,0.124022,0.0973073,0.776031,0.338587,0.174013,0.572064,0.730581,0.179362,0.274518,0.924052,0.141265,0.128631,0.148531,0.314235,0.704903,0.0614977,0.724773,0.393944,0.0752949,0.933133,0.408363,0.434906,0.605839,0.944937,0.709019,0.536456,0.0115747,0.433771,0.58083,0.854114,0.167973,0.00720108,0.799805,0.922861,0.581142,0.715169,0.270151,0.253592,0.619227,0.68233,0.245626,0.983756,0.393113,0.0323871,0.447715,0.644555,0.413655,0.250826,0.745959,0.650028,0.765466,0.422524,0.930162,0.890851,0.884096,0.205348,0.625375,0.0700671,0.10066,0.977293,0.989872,0.0219418,0.540915,0.0876181,0.644279,0.990383,0.830352,0.512973,0.300361,0.342224,0.572329,0.279511,0.74746,0.22465,0.0269139,0.496071,0.320837,0.727001,0.368839,0.930118,0.382928,0.503577,0.951125,0.261296,0.990182,0.324078,0.625569,0.108149,0.702843,0.225798,0.17268,0.304481,0.411491,0.103201,0.670763,0.126111,0.0470183,0.080869,0.67465,0.889384,0.227393,0.299189,0.0766959,0.022694,0.287857,0.786054,0.525356,0.419842,0.446606,0.946779,0.67876,0.461865,0.544736,0.370411,0.836055,0.555228,0.195992,0.612875,0.552106,0.0927203,0.263425,0.632568,0.147139,0.243394,0.0875142,0.697809,0.707613,0.483371,0.503108,0.752349,0.676497,0.673384,0.811154,0.811755,0.00544411,0.886489,0.297657,0.692757,0.130089,0.493238,0.412607,0.6043,0.555152,0.647412,0.0194569,0.24657,0.23093,0.896239,0.127388,0.714296,0.974916,0.577244,0.236398,0.693718,0.776692,0.335785,0.920783,0.586351,0.595595,0.488273,0.827142,0.11065,0.310659,0.0425645,0.193752,0.432641,0.335781,0.586864,0.520501,0.322313,0.224555,0.35341,0.301386,0.399433,0.950734,0.846171,0.997499,0.944983,0.987944,0.43052,0.465939,0.725808,0.617761,0.758388,0.0835386,0.567416,0.200621,0.777577,0.544322,0.564953,0.0218655,0.179851,0.0274653,0.211237,0.803287,0.177019,0.286752,0.953686,0.607048,0.279746,0.815692,0.483739,0.303136,0.790603,0.299912,0.16471,0.768692,0.979277,0.337378,0.00326079,0.921463,0.521567,0.300889,0.108218,0.434137,0.206332,0.232879,0.609289,0.378007,0.833796,0.246185,0.0640935,0.0563188,0.228631,0.223581,0.743389,0.0624609,0.0861004,0.857947,0.251593,0.0185024,0.832967,0.205035,0.92655,0.81143,0.117827,0.647944,0.193415,0.328259,0.100751,0.239442,0.314305,0.908674,0.180508,0.999441,0.927753,0.481142,0.833552,0.681715,0.793362,0.608402,0.0911555,0.759191,0.389526,0.929649,0.945379,0.696142,0.0406929,0.882643,0.0346901,0.0158151,0.630361,0.46114,0.529898,0.422738,0.118787,0.612387,0.602737,0.909666,0.857656,0.630383,0.0969919,0.169975,0.468076,0.982739,0.107611,0.119463,0.495829,0.643189,0.211116,0.170304,0.56595,0.408928,0.661806,0.156366,0.488176,0.98043,0.396956,0.352384,0.569793,0.392543,0.161078,0.387599,0.902618,0.942194,0.508236,0.444926,0.300065,0.612654,0.448077,0.673734,0.478613,0.456701,0.0816383,0.177442,0.335589,0.192401,0.883749,0.802478,0.804417,0.583642,0.402523,0.183335,0.49892,0.417446,0.67204,0.519814,0.208034,0.00520819,0.928613,0.649937,0.743888,0.81665,0.345782,0.651625,0.327909,0.154836,0.629735,0.281759,0.986427,0.19424,0.637681,0.692575,0.696416,0.560459,0.105404,0.850872,0.885075,0.393518,0.597562,0.0679179,0.395551,0.12207,0.962368,0.0325575,0.776493,0.226708,0.82672,0.369545,0.311881,0.391929,0.384504,0.137861,0.887326,0.253528,0.75726,0.14988,0.334026,0.913895,0.526321,0.486818,0.47534,0.387979,0.694822,0.453957,0.455892,0.157711,0.94412,0.394899,0.915112,0.926796,0.419134,0.970161,0.333033,0.407749,0.238141,0.732101,0.0975119,0.245226,0.700326,0.249742,0.721455,0.903508,0.0657176,0.153394,0.774583,0.799659,0.225859,0.787636,0.82625,0.0535917,0.555596,0.113208,0.119711,0.462801,0.177876,0.266284,0.414401,0.574246,0.723558,0.317954,0.788647,0.36013,0.118652,0.0164335,0.89207,0.0759896,0.0105463,0.146178,0.553068,0.764957,0.917959,0.271665,0.729223,0.0177421,0.847761,0.695288,0.103512,0.212267,0.662961,0.338801,0.0272191,0.756455,0.191691,0.285544,0.475455,0.263116,0.156196,0.160926,0.803116,0.340393,0.487186,0.146632,0.855895,0.60955,0.824667,0.403477,0.139371,0.809245,0.141755,0.243747,0.482385,0.434148,0.54365,0.241082,0.023569,0.84751,0.333682,0.379961,0.15498,0.215582,0.0414861,0.839908,0.615887,0.207863,0.391255,0.156032,0.54501,0.0024417,0.97457,0.25603,0.224546,0.490926,0.303491,0.624969,0.686233,0.943108,0.543752,0.0784734,0.0354168,0.689207,0.0487671,0.0998869,0.0873992,0.0558723,0.583308,0.706598,0.489267,0.33608,0.699634,0.966845,0.842103,0.128236,0.649394,0.738422,0.73392,0.387453,0.127269,0.893482,0.392446,0.0585484,0.577618,0.444845,0.0248205,0.119754,0.37743,0.270708,0.0189006,0.490901,0.332988,0.129981,0.709466,0.751517,0.667457,0.494424,0.672498,0.791848,0.270954,0.108277,0.331671,0.145739,0.944168,0.689011,0.578081,0.889041,0.242484,0.336874,0.207672,0.094075,0.0913055,0.601116,0.200466,0.35811,0.0410596,0.187252,0.639197,0.485027,0.474375,0.821487,0.171587,0.410752,0.920799,0.831827,0.41651,0.780937,0.863577,0.618615,0.668017,0.798423,0.180084,0.933182,0.5115,0.0585571,0.920985,0.515864,0.0227679,0.296702,0.914211,0.762496,0.279054,0.976048,0.167997,0.434278,0.764543,0.126924,0.164229,0.531123,0.175948,0.966374,0.825563,0.797426,0.64536,0.454189,0.059686,0.669222,0.318387,0.766312,0.371725,0.353302,0.798717,0.888384,0.0223577,0.966178,0.629492,0.0679908,0.348344,0.21013,0.818325,0.104675,0.716863,0.79711,0.0652714,0.579296,0.0121746,0.651177,0.973078,0.594849,0.908963,0.677915,0.784712,0.196589,0.638213,0.270253,0.704394,0.336071,0.765223,0.935515,0.854283,0.0715596,0.311375,0.654151,0.155809,0.0244796,0.80137,0.398082,0.301086,0.895405,0.0782208,0.211845,0.367429,0.715095,0.56125,0.494575,0.385983,0.682687,0.201018,0.759459,0.685273,0.00354713,0.466345,0.86955,0.770566,0.594193,0.492269,0.841502,0.331581,0.859547,0.758112,0.444696,0.458196,0.806991,0.723442,0.0595115,0.425822,0.876421,0.596766,0.168058,0.805543,0.112506,0.482673,0.470542,0.403824,0.549969,0.605964,0.521495,0.00678676,0.21431,0.0412047,0.732122,0.516431,0.735618,0.674582,0.418093,0.511741,0.891351,0.92944,0.153094,0.570928,0.0375841,0.266894,0.44102,0.981228,0.199324,0.962254,0.815066,0.376913,0.144438,0.472406,0.458614,0.538852,0.935831,0.659884,0.322134,0.380958,0.226468,0.0286818,0.485821,0.0373567,0.622683,0.0880026,0.319047,0.119326,0.824231,0.723083,0.302046,0.959188,0.636956,0.10181,0.688137,0.325292,0.249119,0.807756,0.859297,0.269139,0.710479,0.809431,0.760274,0.66299,0.417616,0.305234,0.555659,0.0573425,0.835693,0.432497,0.641192,0.85736,0.12506,0.916856,0.576218,0.675885,0.444661,0.436239,0.367345,0.70203,0.408904,0.99547,0.658861,0.400723,0.521776,0.549985,0.0858673,0.344909,0.950384,0.527869,0.120834,0.689101,0.629027,0.226191,0.991238,0.621195,0.807114,0.0298405,0.414683,0.241542,0.909166,0.413825,0.943238,0.40653,0.0734571,0.682736,0.345322,0.348749,0.126879,0.563417,0.166753,0.0915348,0.0923999,0.574381,0.93118,0.581408,0.168828,0.952738,0.400313,0.51652,0.170986,0.558942,0.530328,0.461685,0.881008,0.135244,0.123157,0.628154,0.438655,0.434883,0.0345506,0.909811,0.459482,0.825432,0.583318,0.41607,0.208543,0.333359,0.422132,0.159867,0.572471,0.573197,0.508392,0.290145,0.915999,0.144751,0.664514,0.806437,0.273457,0.666034,0.910952,0.614955,0.235472,0.500358,0.347272,0.728695,0.681657,0.54035,|0.498569,0.0246285,0.578321,0.804515,0.345501,0.631684,0.610976,0.570386,0.167495,0.834888,0.177227,0.548633,0.0977286,0.0621175,0.969462,0.285114,0.870216,0.36156,0.951009,0.84108,0.4052,0.0254421,0.942861,0.351837,0.789162,0.436732,0.0891016,0.12372,0.58923,0.84988,0.543069,0.850079,0.601945,0.864644,0.532071,0.927795,0.985242,0.578626,0.0941694,0.706833,0.807576,0.838987,0.480068,0.0875497,0.24425,0.890448,0.139856,0.108064,0.782807,0.337701,0.789439,0.266473,0.866335,0.660682,0.21113,0.437756,0.677998,0.391672,0.0224155,0.593564,0.0323166,0.761145,0.897099,0.732959,0.661738,0.10407,0.0744185,0.940851,0.915622,0.97866,0.576118,0.687563,0.23826,0.378382,0.16075,0.539785,0.943382,0.441675,0.741243,0.308249,0.0511966,0.362456,0.968553,0.0321088,0.325078,0.172373,0.679686,0.106134,0.466211,0.871937,0.0963118,0.154385,0.763594,0.619764,0.406885,0.551946,0.575765,0.739829,0.061453,0.546972,0.287451,0.247392,0.134932,0.974483,0.49365,0.246366,0.419426,0.484054,0.134706,0.818768,0.60901,0.452437,0.160038,0.668518,0.989956,0.483975,0.32588,0.551311,0.43768,0.789298,0.436163,0.260879,0.199179,0.390551,0.972426,0.190554,0.782303,0.464482,0.450475,0.428165,0.839426,0.0915899,0.599046,0.261588,0.183078,0.777534,0.550789,0.448948,0.762105,0.244055,0.526335,0.483718,0.846358,0.993496,0.212434,0.646523,0.982574,0.924222,0.697895,0.41471,0.349615,0.296664,0.781547,0.551847,0.287796,0.633908,0.71372,0.299966,0.496359,0.792678,0.00628924,0.322503,0.713776,0.169922,0.962995,0.697504,0.541567,0.794948,0.230503,0.187895,0.0415204,0.0181324,0.0374613,0.453382,0.196053,0.512034,0.000252187,0.765953,0.261426,0.524894,0.425877,0.433028,0.706921,0.975956,0.0246904,0.213902,0.733471,0.15664,0.493258,0.638769,0.626624,0.709711,0.00714868,0.0354874,0.92912,0.797992,0.560816,0.648112,0.8414,0.0414875,0.29148,0.0553507,0.487597,0.734917,0.513415,0.486349,0.477605,0.877553,0.798896,0.0019089,0.672937,0.0924655,0.348133,0.899737,0.848749,0.619237,0.616375,0.66026,0.190053,0.81112,0.963896,0.189389,0.955033,0.688934,0.563937,0.703488,0.564378,0.403625,0.235178,0.959726,0.260561,0.959244,0.0074836,0.694423,0.255661,0.882866,0.434375,0.933376,0.064362,0.0130194,0.356354,0.48623,0.730076,0.56335,0.346183,0.620861,0.530461,0.077616,0.354989,0.927423,0.890143,0.321933,0.87248,0.936657,0.455877,0.60295,0.562778,0.71279,0.912683,0.845924,0.504027,0.376373,0.679961,0.82522,0.44771,0.55735,0.0704114,0.83246,0.50598,0.669088,0.471815,0.973366,0.952434,0.925057,0.433641,0.695469,0.593845,0.205486,0.0520579,0.765539,0.831854,0.066034,0.0651149,0.476888,0.738755,0.139044,0.338968,0.884204,0.5873,0.456236,0.138361,0.361006,0.958688,0.0924588,0.283819,0.362488,0.755208,0.542253,0.558802,0.281437,0.716833,0.433116,0.862583,0.0780197,0.280245,0.0833883,0.619126,0.522626,0.224531,0.343904,0.258725,0.892606,0.511388,0.782868,0.155622,0.217641,0.734728,0.563311,0.843108,0.758885,0.695292,0.84487,0.58547,0.599796,0.398346,0.273577,0.732784,0.624315,0.00237215,0.282384,0.878313,0.726643,0.482569,0.789334,0.635068,0.767805,0.713762,0.676909,0.835261,0.439402,0.530253,0.17762,0.355774,0.196194,0.826364,0.307681,0.262733,0.601444,0.0149643,0.600285,0.0611776,0.415409,0.057901,0.958316,0.49121,0.179655,0.248468,0.475116,0.0603303,0.764455,0.916079,0.862895,0.598002,0.816304,0.926345,0.0624316,0.581146,0.451267,0.437608,0.889772,0.503472,0.939344,0.791793,0.498783,0.209004,0.566382,0.812206,0.508917,0.603973,0.477605,0.279543,0.263465,0.483203,0.82422,0.405677,0.625454,0.292922,0.855765,0.033489,0.511001,0.711466,0.511377,0.120928,0.835103,0.408239,0.450529,0.0219026,0.576247,0.710754,0.103909,0.766888,0.902629,0.872172,0.26338,0.178993,0.128093,0.482188,0.951812,0.767828,0.328975,0.661767,0.980172,0.909633,0.895516,0.820584,0.0221,0.357121,0.142473,0.504456,0.503863,0.415754,0.632588,0.465345,0.721874,0.466897,0.908733,0.932224,0.0575066,0.591254,0.833055,0.251647,0.950412,0.0627834,0.873871,0.577182,0.108783,0.113117,0.0931853,0.615828,0.898344,0.925469,0.469736,0.887409,0.538435,0.0828884,0.396968,0.170142,0.509913,0.668401,0.603482,0.778534,0.290755,0.491231,0.670323,0.919715,0.7425,0.382385,0.874223,0.105449,0.210758,0.344233,0.73037,0.258296,0.476596,0.687613,0.566553,0.280044,0.443479,0.452224,0.689868,0.99802,0.515819,0.55293,0.496198,0.636128,0.785535,0.795334,0.0126173,0.486908,0.210231,0.8735,0.508643,0.080194,0.236581,0.608619,0.0289074,0.700039,0.820693,0.421565,0.615518,0.903293,0.543594,0.497404,0.327471,0.462443,0.420928,0.103729,0.58294,0.115614,0.941081,0.173963,0.847894,0.680996,0.96617,0.366543,0.121243,0.626524,0.376234,0.720673,0.503716,0.121735,0.808695,0.122709,0.0929614,0.303289,0.935371,0.572507,0.763873,0.300102,0.279201,0.510596,0.479228,0.46246,0.551636,0.901375,0.244759,0.45116,0.979671,0.467345,0.971615,0.0104287,0.972126,0.485622,0.39888,0.492259,0.998062,0.0110471,0.512132,0.0297318,0.271937,0.125113,0.840357,0.332145,0.442983,0.897659,0.952041,0.151257,0.826057,0.415594,0.682586,0.42818,0.894427,0.371306,0.22475,0.108949,0.0756611,0.908107,0.784271,0.323141,0.0762993,0.563221,0.52529,0.552107,0.537809,0.0340814,0.482262,0.355542,0.429803,0.809968,0.376139,0.26395,0.0072456,0.139112,0.994621,0.592791,0.140374,0.734322,0.333564,0.803738,0.212162,0.823463,0.579472,0.247534,0.692151,0.880084,0.787976,0.876338,0.466159,0.70338,0.913105,0.218394,0.519824,0.371187,0.15941,0.194997,0.656551,0.828665,0.568552,0.79132,0.309465,0.0438393,0.307305,0.14882,0.20486,0.838637,0.0839419,0.230719,0.468235,0.810935,0.863616,0.576293,0.427709,0.488762,0.341946,0.388668,0.209256,0.0323554,0.363758,0.0874273,0.716417,0.687324,0.65861,0.677241,0.0495027,0.702515,0.702632,0.499316,0.385373,0.218109,0.600223,0.812698,0.0123596,0.801443,0.606058,0.448001,0.618773,0.385267,0.832003,0.573627,0.709208,0.406009,0.139806,0.844394,0.764644,0.790386,0.726005,0.821125,0.629306,0.807686,0.445719,0.106512,0.870038,0.990211,0.669512,0.172408,0.871197,0.0765989,0.089902,0.526681,0.675814,0.445693,0.757124,0.570922,0.612714,0.353414,0.524009,0.967179,0.0350705,0.964711,0.626414,0.879023,0.505884,0.902223,0.162686,0.051916,0.658811,0.477076,0.498837,0.752868,0.549325,0.366444,0.239995,0.483455,0.879001,0.858006,0.490183,0.250084,0.471617,0.562636,0.411402,0.749833,0.635517,0.46731,0.856422,0.378877,0.791884,0.589587,0.792042,0.492981,0.571839,0.0728472,0.709049,0.566789,0.0743708,0.443747,0.256735,0.975209,0.649878,0.04351,0.709303,0.398016,0.959358,0.265982,0.761719,0.723732,0.788578,0.387237,0.0671257,0.715109,0.791781,0.948824,0.851058,0.909631,0.523413,0.394035,0.744362,0.324337,0.924913,0.191389,0.818102,0.872884,0.796296,0.636604,0.0458807,0.341253,0.844117,0.554717,0.98542,0.595025,0.789816,0.479735,0.599034,0.863138,0.898016,0.0662066,0.267682,0.103674,0.828371,0.332273,0.246341,0.488258,0.988176,0.124698,0.079056,0.351288,0.829993,0.292936,0.986034,0.224516,0.937724,0.80828,0.721274,0.497951,0.353671,0.729016,0.771732,0.525326,0.870811,0.589061,0.885989,0.6609,0.36133,0.357505,0.840063,0.827744,0.476072,0.00222284,0.582388,0.8698,0.705079,0.0393157,0.300312,0.695158,0.951557,0.605769,0.775032,0.854321,0.241542,0.515437,0.480817,0.734361,0.431214,0.60425,0.0746872,0.956392,0.742143,0.464404,0.93151,0.482035,0.441132,0.799127,0.0499979,0.365917,0.724261,0.00702715,0.865547,0.885858,0.294502,0.5518,0.180025,0.0472721,0.960815,0.51953,0.636513,0.588187,0.454196,0.78554,0.199662,0.0784412,0.972394,0.18902,0.167268,0.391663,0.755642,0.610221,0.892106,0.928583,0.680608,0.729651,0.8947,0.522525,0.309886,0.285788,0.572301,0.222822,0.173302,0.619373,0.471135,0.572757,0.47777,0.759418,0.337427,0.659574,0.840926,0.287185,0.834194,0.436329,0.304327,0.582965,0.813331,0.135823,0.543804,0.134089,0.737382,0.319343,0.924022,0.430178,0.542287,0.732435,0.0205433,0.676289,0.6773,0.341426,0.0327921,0.491789,0.0128595,0.621697,0.359729,0.2546,0.541934,0.407696,0.47297,0.724582,0.446288,0.987945,0.308227,0.0380533,0.513447,0.270645,0.758526,0.907658,0.378372,0.387103,0.00428915,0.555441,0.725981,0.624059,0.556854,0.513779,0.12147,0.45313,0.832754,0.0572878,0.944194,0.376826,0.784723,0.330277,0.861599,0.336661,0.575602,0.549794,0.0245991,0.361538,0.659421,0.121513,0.643082,0.306415,0.4827,0.924615,0.501026,0.817383,0.408498,0.12309,0.370759,0.006405,0.337067,0.443492,0.513717,0.0799342,0.801329,0.290944,0.878599,0.814149,0.760671,0.372629,0.717293,0.933113,0.222237,0.947349,0.0776752,0.63186,0.774377,0.150771,0.478936,0.894833,0.17004,0.410812,0.523043,0.387725,0.675887,0.266297,0.191557,0.428914,0.390985,0.688416,0.863539,0.937873,0.781556,0.505,0.665759,0.140208,0.578582,0.0774395,0.0991749,0.222128,0.187784,0.955679,0.114049,0.532177,0.481148,0.64127,0.285709,0.475028,0.0636062,0.559742,0.839624,0.808213,0.772846,0.314984,0.985832,0.934268,0.916804,0.576156,0.718387,0.574951,0.327695,0.088554,0.584163,0.949899,0.0964883,0.622844,0.990075,0.383191,0.0861288,0.590301,0.532555,0.144172,0.30138,0.359344,0.482248,0.151278,0.364135,0.0383257,0.470808,0.201061,0.925878,0.80842,0.131044,0.388327,0.329892,|0.846354,0.458483,0.966535,0.488411,0.447957,0.534341,0.446373,0.665621,0.583991,0.0739129,0.50251,0.413403,0.963247,0.568783,0.0922722,0.306686,0.498906,0.741312,0.211961,0.959654,0.891558,0.13551,0.460157,0.109408,0.754347,0.0685298,0.81734,0.845506,0.946429,0.0234321,0.092224,0.992688,0.459679,0.815671,0.378228,0.152748,0.731884,0.90642,0.936278,0.252391,0.576523,0.495178,0.663367,0.417289,0.937556,0.256857,0.919756,0.559253,0.558969,0.807481,0.883095,0.435188,0.316895,0.257534,0.273218,0.545902,0.112393,0.19788,0.592412,0.926595,0.241074,0.622484,0.353941,0.169283,0.47453,0.267087,0.652059,0.929401,0.612433,0.733432,0.906924,0.16813,0.239699,0.0947279,0.936647,0.677286,0.730382,0.883882,0.196361,0.376054,0.911393,0.192282,0.710565,0.0647282,0.113049,0.164422,0.91695,0.015202,0.517218,0.724511,0.321062,0.238071,0.224634,0.340491,0.984449,0.457683,0.775435,0.971361,0.997228,0.378865,0.47776,0.686442,0.60943,0.87811,0.155402,0.52058,0.0535689,0.756664,0.248703,0.282664,0.981449,0.395984,0.925728,0.949506,0.0230179,0.0819802,0.776684,0.164179,0.187419,0.879597,0.0580697,0.161638,0.879332,0.827427,0.302134,0.0907679,0.978012,0.537079,0.771954,0.748545,0.876426,0.280942,0.69533,0.214917,0.194619,0.880553,0.873211,0.129564,0.973496,0.0538749,0.150333,0.174146,0.403024,0.923126,0.441189,0.914766,0.428255,0.1612,0.311562,0.527137,0.924829,0.781017,0.962122,0.221902,0.00527298,0.31015,0.557312,0.47081,0.411764,0.00658309,0.489607,0.449076,0.427161,0.674849,0.868136,0.458306,0.651037,0.986362,0.96853,0.422848,0.479006,0.455288,0.950359,0.862312,0.112729,0.329502,0.928262,0.629239,0.747198,0.700549,0.655911,0.158109,0.216119,0.390863,0.0391204,0.30058,0.131638,0.830476,0.89094,0.403591,0.32779,0.104957,0.878617,0.859376,0.512744,0.57814,0.712974,0.843479,0.114669,0.141829,0.974829,0.678134,0.793233,0.168619,0.625509,0.208902,0.757977,0.853791,0.635593,0.458515,0.450894,0.900151,0.427436,0.938091,0.199104,0.584624,0.723989,0.618107,0.505413,0.242686,0.614116,0.760974,0.506825,0.404201,0.585899,0.0690469,0.0742723,0.0890222,0.970459,0.308451,0.460896,0.720659,0.679032,0.730492,0.772707,0.954116,0.340717,0.555853,0.0129337,0.166271,0.0872014,0.948637,0.896956,0.720726,0.0629804,0.284703,0.318057,0.599025,0.289672,0.130358,0.43731,0.960189,0.0184562,0.821561,0.46293,0.300133,0.703646,0.23358,0.014166,0.601574,0.248498,0.224392,0.962696,0.376386,0.657438,0.00576729,0.102522,0.982881,0.795166,0.174824,0.929014,0.291034,0.451797,0.929704,0.878997,0.515006,0.893212,0.64477,0.29752,0.870515,0.92945,0.458993,0.382515,0.207887,0.616172,0.824571,0.496468,0.159279,0.672683,0.036212,0.321308,0.830431,0.123158,0.366192,0.828396,0.575416,0.795554,0.0648009,0.75358,0.69605,0.30039,0.276649,0.826418,0.642133,0.360296,0.438681,0.0493386,0.463504,0.684961,0.427137,0.965254,0.219081,0.514028,0.473956,0.961572,0.920362,0.270594,0.266254,0.776325,0.816867,0.0893037,0.470358,0.498118,0.891282,0.255137,0.677939,0.142597,0.81187,0.398348,0.767467,0.143254,0.122423,0.270104,0.667323,0.962491,0.460829,0.851311,0.835341,0.64942,0.240407,0.0161463,0.365354,0.0519173,0.353226,0.995672,0.949878,0.859761,0.0508446,0.314145,0.58785,0.371489,0.110862,0.480461,0.947428,0.867222,0.304195,0.997522,0.954538,0.0957966,0.848343,0.593893,0.629659,0.211211,0.477534,0.365341,0.00781769,0.162007,0.755529,0.659323,0.790159,0.184576,0.934678,0.964822,0.348052,0.976436,0.893065,0.748674,0.0903638,0.466713,0.503412,0.107921,0.733745,0.267633,0.487981,0.751169,0.942592,0.28049,0.100737,0.931369,0.545876,0.677965,0.27038,0.428004,0.702603,0.755375,0.673306,0.317099,0.827638,0.876487,0.437756,0.36331,0.612825,0.547563,0.977624,0.0345927,0.265385,0.960455,0.036038,0.901234,0.971122,0.0807612,0.97844,0.336812,0.180988,0.512511,0.744666,0.417259,0.982598,0.670393,0.269974,0.968545,0.00327897,0.677092,0.480273,0.943487,0.544342,0.638473,0.613126,0.475563,0.865661,0.919268,0.820305,0.753535,0.826073,0.991187,0.276609,0.334408,0.672478,0.57071,0.411779,0.685706,0.320235,0.453841,0.897675,0.923472,0.524459,0.949773,0.399353,0.447404,0.770407,0.45665,0.0699973,0.762987,0.00129861,0.198779,0.760146,0.633743,0.432657,0.432324,0.271683,0.573316,0.617979,0.64666,0.715665,0.269723,0.734781,0.468799,0.247445,0.0406116,0.697395,0.171785,0.514707,0.89851,0.421254,0.765485,0.365301,0.412655,0.543706,0.399114,0.741204,0.111774,0.0196811,0.655211,0.559583,0.23512,0.414851,0.686595,0.104408,0.0643664,0.760545,0.858723,0.558773,0.179748,0.326171,0.722716,0.561266,0.13562,0.266581,0.689842,0.577572,0.301733,0.713924,0.204341,0.626034,0.54988,0.0720216,0.0836967,0.147968,0.194173,0.439462,0.224153,0.638366,0.206042,0.670824,0.605043,0.185675,0.877344,0.829864,0.0914065,0.438009,0.373406,0.322516,0.77734,0.796588,0.135382,0.208022,0.848496,0.191753,0.891955,0.290528,0.203263,0.498062,0.92878,0.684994,0.20425,0.420134,0.278552,0.7637,0.107854,0.707395,0.376699,0.212132,0.346336,0.683611,0.27975,0.604159,0.680247,0.362258,0.471937,0.793304,0.0480767,0.809199,0.200098,0.867638,0.232498,0.877945,0.798029,0.95869,0.422591,0.32952,0.51273,0.466459,0.0361881,0.227097,0.0795416,0.292165,0.976168,0.809946,0.452695,0.0666282,0.0747494,0.780351,0.216642,0.75263,0.563527,0.926984,0.413965,0.729321,0.440323,0.149549,0.599417,0.0793132,0.222496,0.643014,0.31066,0.214906,0.278685,0.710445,0.521555,0.615635,0.0219908,0.328486,0.172145,0.621033,0.322841,0.584325,0.487542,0.340481,0.931551,0.566401,0.831543,0.170406,0.592986,0.545793,0.660828,0.490004,0.470486,0.150783,0.696781,0.322495,0.728901,0.957024,0.522489,0.0736077,0.462087,0.962369,0.300594,0.22039,0.00948334,0.696984,0.3053,0.31706,0.763504,0.855494,0.40234,0.363632,0.0893766,0.434519,0.220297,0.605104,0.0523481,0.133823,0.974453,0.0157123,0.0425474,0.768644,0.377908,0.314534,0.29627,0.706833,0.107703,0.904563,0.381983,0.592376,0.916982,0.817606,0.593827,0.0533384,0.786467,0.857126,0.147811,0.870403,0.645396,0.925017,0.817786,0.871899,0.462019,0.547321,0.184963,0.695871,0.671423,0.587641,0.553441,0.398047,0.876202,0.699004,0.684606,0.79193,0.0505822,0.384002,0.163285,0.831735,0.549189,0.514875,0.500719,0.15255,0.544292,0.690418,0.587044,0.45372,0.419102,0.268547,0.601084,0.276919,0.58329,0.735934,0.53213,0.0934343,0.942298,0.847019,0.87846,0.975743,0.0692018,0.388083,0.0421163,0.620425,0.122895,0.378145,0.126213,0.854541,0.185429,0.728432,0.318276,0.68419,0.308926,0.400183,0.959394,0.597288,0.99532,0.121283,0.746057,0.104978,0.695277,0.583319,0.472545,0.749928,0.273031,0.561366,0.679602,0.758788,0.50067,0.656861,0.948781,0.789964,0.0774742,0.123974,0.873017,0.312298,0.0721351,0.47289,0.38524,0.280097,0.811029,0.164036,0.590063,0.301799,0.783724,0.0454723,0.495942,0.838018,0.345449,0.942142,0.519,0.063253,0.548326,0.632703,0.492023,0.489709,0.25653,0.91879,0.337124,0.163547,0.666371,0.536929,0.35981,0.774683,0.569341,0.797291,0.729616,0.237161,0.409566,0.584002,0.883857,0.322171,0.247544,0.134628,0.0927518,0.448019,0.802673,0.510601,0.712005,0.324416,0.244513,0.883661,0.29841,0.349726,0.326581,0.465935,0.275175,0.576633,0.760126,0.47278,0.612629,0.0881696,0.236458,0.549772,0.741821,0.467969,0.838285,0.667486,0.957971,0.526934,0.525192,0.0171229,0.330545,0.794548,0.31156,0.552443,0.924733,0.949906,0.745154,0.11108,0.818177,0.463007,0.399416,0.61273,0.298238,0.662812,0.32088,0.705964,0.854722,0.527963,0.396762,0.802202,0.648047,0.510586,0.24644,0.339037,0.491073,0.911067,0.248841,0.6256,0.693163,0.833338,0.290876,0.538817,0.270394,0.277421,0.295746,0.173341,0.809961,0.328525,0.626217,0.883021,0.225485,0.22452,0.684241,0.293054,0.215282,0.416936,0.00513923,0.922412,0.706604,0.249466,0.509535,0.385665,0.683926,0.645492,0.0174854,0.243921,0.951089,0.828004,0.725682,0.695523,0.0779612,0.974597,0.632178,0.436335,0.579214,0.510473,0.183267,0.890453,0.905063,0.345107,0.377679,0.96233,0.127652,0.387939,0.0743818,0.0201513,0.558989,0.4308,0.639167,0.0655543,0.081624,0.290121,0.2514,0.183247,0.0816596,0.689623,0.611646,0.5915,0.176631,0.274954,0.734489,0.608074,0.97865,0.686421,0.890595,0.708861,0.571068,0.645867,0.574294,0.0901917,0.403285,0.641715,0.54277,0.391989,0.94977,0.136459,0.800185,0.616194,0.11714,0.341341,0.681917,0.340873,0.981447,0.0641837,0.333114,0.117645,0.72536,0.683897,0.964107,0.644759,0.73521,0.164403,0.900282,0.842803,0.589902,0.118743,0.540906,0.322046,0.405281,0.752351,0.673419,0.35687,0.400719,0.995237,0.573999,0.603449,0.0691165,0.322962,0.440598,0.0865648,0.360626,0.196271,0.444891,0.988083,0.743942,0.639356,0.104875,0.672155,0.887384,0.957919,0.607507,0.631644,0.666799,0.342199,0.64783,0.495389,0.415106,0.346065,0.411775,0.225019,0.787598,0.213355,0.184306,0.0867567,0.123752,0.00765234,0.534557,0.527479,0.128407,0.0520026,0.23938,0.922995,0.647726,0.898491,0.471525,0.883087,0.188422,0.906824,0.0228555,0.933794,0.233114,0.856683,0.203493,0.872,0.502671,0.610743,0.57445,0.193185,0.817805,0.770922,0.122902,0.826509,0.154635,0.802661,0.944763,0.227969,0.806192,0.297388,0.484634,0.348153,0.642181,0.146055,0.511125,0.385828,0.8989,0.840226,|0.087904,0.0184369,0.838387,0.608479,0.0668017,0.93704,0.396944,0.764013,0.540064,0.290455,0.441454,0.614284,0.834139,0.384242,0.651304,0.22088,0.518592,0.306799,0.574508,0.235786,0.593932,0.557644,0.132311,0.753747,0.94749,0.668981,0.805777,0.80107,0.719843,0.0140817,0.878296,0.146321,0.848046,0.9103,0.737548,0.274182,0.252468,0.382345,0.725451,0.523407,0.897652,0.207274,0.766153,0.348144,0.26995,0.454911,0.0797202,0.673072,0.346166,0.843283,0.73361,0.243739,0.0877442,0.394327,0.150748,0.4713,0.226721,0.508325,0.917884,0.134576,0.670763,0.103158,0.527438,0.754936,0.177169,0.269043,0.47635,0.525773,0.211946,0.667856,0.899672,0.721245,0.553585,0.895623,0.618202,0.890881,0.405779,0.222402,0.621974,0.192719,0.812762,0.146165,0.0108993,0.951613,0.58864,0.324373,0.247804,0.550626,0.647773,0.842134,0.438927,0.32906,0.438007,0.0672299,0.347063,0.16653,0.570107,0.081273,0.711547,0.952172,0.493059,0.863792,0.13128,0.765028,0.698415,0.87672,0.94232,0.50406,0.419194,0.520584,0.736897,0.37284,0.854579,0.776103,0.173806,0.330338,0.964514,0.545225,0.171811,0.45929,0.114674,0.606922,0.763361,0.967908,0.639868,0.0515911,0.0726349,0.734357,0.719133,0.0642834,0.942851,0.851604,0.56125,0.528834,0.467029,0.10506,0.653243,0.0223636,0.627904,0.566312,0.726022,0.925244,0.435997,0.349999,0.611531,0.731014,0.838298,0.981589,0.385145,0.202984,0.81762,0.902818,0.324616,0.268185,0.813339,0.285928,0.402709,0.879279,0.765192,0.0838562,0.568454,0.189591,0.927513,0.940796,0.47156,0.96974,0.952062,0.613178,0.261527,0.212973,0.583225,0.586748,0.847542,0.64952,0.0804445,0.826041,0.743507,0.426091,0.687402,0.687912,0.541285,0.780697,0.861247,0.380962,0.889334,0.132905,0.644124,0.914691,0.0626536,0.52013,0.27222,0.303348,0.54166,0.969705,0.783194,0.796185,0.732531,0.640154,0.172085,0.495634,0.545178,0.880547,0.340877,0.826856,0.740608,0.412929,0.556601,0.144903,0.32199,0.343591,0.675059,0.32343,0.437187,0.568859,0.45273,0.119424,0.0910474,0.0318352,0.763562,0.681155,0.446128,0.393348,0.852753,0.98971,0.223942,0.541356,0.736841,0.255562,0.36588,0.208743,0.290655,0.771087,0.824122,0.206281,0.995593,0.571444,0.674418,0.906883,0.0600039,0.440951,0.185865,0.389771,0.766864,0.126111,0.0406789,0.886772,0.308711,0.388755,0.898355,0.394283,0.133562,0.441203,0.491631,0.756435,0.38045,0.478902,0.398404,0.616633,0.426604,0.810537,0.0570113,0.297779,0.251553,0.627317,0.828053,0.579061,0.170037,0.789527,0.544147,0.265087,0.622345,0.268542,0.672556,0.0649108,0.39645,0.969219,0.762908,0.322369,0.562292,0.416615,0.852723,0.322598,0.643245,0.322289,0.258024,0.486875,0.75111,0.857405,0.678572,0.459528,0.508096,0.0464473,0.652211,0.771943,0.452989,0.545196,0.457896,0.0742567,0.411042,0.566013,0.949211,0.338506,0.778343,0.676373,0.266407,0.388027,0.369102,0.120335,0.0649549,0.560365,0.10433,0.191727,0.685037,0.960304,0.800355,0.899072,0.229237,0.690166,0.275179,0.535279,0.796167,0.852075,0.536807,0.23122,0.411819,0.348621,0.392145,0.649579,0.320782,0.59313,0.0579797,0.739157,0.464378,0.277849,0.0599413,0.728616,0.149178,0.519259,0.93481,0.443614,0.727224,0.0704951,0.696484,0.528231,0.0190795,0.165646,0.761194,0.137905,0.0871773,0.343121,0.0827053,0.980981,0.922318,0.107518,0.0492999,0.357789,0.109223,0.00102007,0.81944,0.805889,0.865069,0.444685,0.117847,0.680698,0.832424,0.875994,0.147881,0.038819,0.0651262,0.640042,0.888793,0.671336,0.259906,0.458086,0.116628,0.859894,0.60032,0.277661,0.31348,0.63549,0.65129,0.0589252,0.0206621,0.454963,0.181822,0.848225,0.340314,0.531549,0.930715,0.496977,0.97299,0.289652,0.712162,0.702499,0.917403,0.565919,0.794632,0.334429,0.413838,0.173821,0.354447,0.109012,0.828309,0.194752,0.478697,0.944901,0.660366,0.265782,0.500037,0.156711,0.1399,0.0822417,0.413041,0.644574,0.227881,0.852983,0.433062,0.91337,0.790052,0.479171,0.00420147,0.627661,0.984786,0.197835,0.315691,0.230923,0.389988,0.732037,0.836822,0.941687,0.616963,0.866579,0.433243,0.107386,0.222899,0.82883,0.737327,0.659736,0.905687,0.992158,0.35189,0.54028,0.241192,0.642578,0.385602,0.836574,0.108583,0.894903,0.709064,0.887091,0.245115,0.370965,0.127025,0.894498,0.793341,0.460889,0.356648,0.359031,0.0447558,0.645253,0.132723,0.017864,0.665261,0.68238,0.670551,0.887236,0.951367,0.642101,0.249536,0.550898,0.885866,0.159024,0.830405,0.0723624,0.964489,0.515752,0.141965,0.779857,0.327116,0.167604,0.16526,0.180072,0.135963,0.604034,0.969495,0.745966,0.92966,0.120568,0.570375,0.366733,0.629228,0.77534,0.4244,0.0359268,0.641675,0.275708,0.337667,0.178815,0.80334,0.548482,0.946638,0.942786,0.0120143,0.0812219,0.703287,0.162731,0.774525,0.978907,0.739522,0.582159,0.198729,0.700898,0.132999,0.0444705,0.0573988,0.0933238,0.54635,0.149818,0.72385,0.432969,0.203018,0.260606,0.874696,0.0596356,0.988068,0.391396,0.561907,0.761464,0.691064,0.270019,0.282399,0.0282207,0.0230454,0.056582,0.461153,0.738078,0.391019,0.381298,0.347381,0.197769,0.954833,0.806205,0.238866,0.140194,0.807595,0.808025,0.826634,0.495001,0.706666,0.0306452,0.955492,0.763337,0.924405,0.349669,0.87995,0.331106,0.633331,0.862873,0.93112,0.397752,0.301764,0.377624,0.653168,0.634005,0.0967847,0.424093,0.353867,0.320817,0.781361,0.779968,0.499133,0.372425,0.493397,0.454774,0.671874,0.403633,0.606055,0.420197,0.144585,0.166103,0.0725386,0.135851,0.800099,0.0127237,0.559987,0.765363,0.562664,0.603473,0.685818,0.378506,0.666202,0.910314,0.935645,0.862825,0.837545,0.31118,0.564355,0.378455,0.289634,0.587018,0.289771,0.692065,0.909439,0.756202,0.399564,0.590515,0.853961,0.779204,0.47849,0.453477,0.380423,0.16006,0.465021,0.989274,0.758186,0.0247816,0.368263,0.891177,0.366562,0.0024026,0.878097,0.680898,0.692953,0.380853,0.938136,0.793168,0.771128,0.130447,0.0962499,0.259394,0.308134,0.725369,0.510363,0.897851,0.294207,0.967826,0.951805,0.996975,0.771363,0.814415,0.363144,0.818349,0.383136,0.590201,0.89879,0.0167922,0.507509,0.835732,0.931756,0.000505686,0.727457,0.830293,0.768499,0.0538675,0.475967,0.209941,0.677425,0.543755,0.0111046,0.58928,0.186971,0.58813,0.312395,0.1594,0.182173,0.603107,0.375523,0.912663,0.688447,0.862852,0.658248,0.512501,0.101508,0.885226,0.924431,0.657616,0.877515,0.245975,0.77812,0.763693,0.433718,0.351196,0.314579,0.311323,0.407413,0.502926,0.787625,0.168561,0.646241,0.717137,0.0933812,0.383822,0.968551,0.464577,0.665847,0.40252,0.0924444,0.750136,0.949483,0.438077,0.983698,0.0026567,0.67777,0.470391,0.875854,0.461502,0.738626,0.514937,0.479004,0.28251,0.860309,0.360169,0.13982,0.334012,0.827243,0.529486,0.748199,0.616114,0.270967,0.729196,0.449886,0.645467,0.481025,0.63468,0.0355491,0.663747,0.7904,0.622827,0.0424445,0.36257,0.120022,0.418017,0.849851,0.813491,0.80643,0.734737,0.680493,0.0759286,0.66611,0.369619,0.260866,0.52268,0.393004,0.55907,0.540811,0.961659,0.184457,0.346873,0.435976,0.132441,0.150412,0.643203,0.447866,0.465771,0.919572,0.730831,0.665404,0.520073,0.600909,0.308292,0.77395,0.788493,0.632493,0.839581,0.033228,0.307769,0.457803,0.23166,0.903542,0.523689,0.437366,0.210721,0.556075,0.570374,0.258863,0.107028,0.0520341,0.238521,0.94295,0.214538,0.912325,0.979234,0.668034,0.231085,0.717535,0.191171,0.966682,0.766448,0.112478,0.37913,0.163341,0.879265,0.633119,0.569499,0.97031,0.142521,0.248201,0.206873,0.448417,0.881777,0.131571,0.754769,0.497854,0.166377,0.340913,0.859781,0.344105,0.116365,0.159752,0.500629,0.701566,0.0527867,0.962155,0.445203,0.47268,0.73789,0.374604,0.371649,0.110756,0.334186,0.322812,0.375793,0.291077,0.155792,0.48327,0.0765397,0.901876,0.901515,0.9769,0.847987,0.737132,0.787806,0.130249,0.417602,0.739173,0.869466,0.990977,0.368597,0.687463,0.632859,0.909734,0.911397,0.580885,0.657176,0.192482,0.0618958,0.211314,0.865578,0.808759,0.984061,0.720359,0.145965,0.988474,0.547792,0.351162,0.986883,0.00985277,0.825079,0.652622,0.751738,0.0792443,0.379102,0.301686,0.324455,0.225113,0.718352,0.168499,0.863598,0.596302,0.923614,0.839042,0.00521857,0.166604,0.905835,0.877225,0.854891,0.640147,0.807822,0.173148,0.683152,0.0259464,0.456541,0.151948,0.147641,0.332832,0.455261,0.0425293,0.668156,0.417489,0.901652,0.292731,0.193693,0.65037,0.954878,0.348114,0.201563,0.521448,0.118657,0.930685,0.829513,0.428096,0.372039,0.0816212,0.684496,0.927174,0.717802,0.928681,0.970908,0.88425,0.645474,0.908627,0.268743,0.553876,0.73434,0.402598,0.290933,0.79863,0.488452,0.841152,0.858319,0.432884,0.444579,0.231019,0.112384,0.275648,0.195032,0.334643,0.261981,0.272481,0.177168,0.610269,0.574816,0.892692,0.564301,0.932447,0.842928,0.909777,0.282827,0.895461,0.272772,0.823559,0.776726,0.0499511,0.912,0.904257,0.837371,0.97885,0.210355,0.237785,0.191255,0.0356017,0.25723,0.156157,0.934817,0.779023,0.285579,0.577179,0.760585,0.514205,0.172627,0.873132,0.96614,0.0813701,0.92709,0.493645,0.694057,0.603791,0.475446,0.501997,0.133387,0.831163,0.00814527,0.743213,0.689425,0.483291,0.723992,0.225098,0.613976,0.327449,0.0736627,0.0186023,0.74637,0.288462,0.257224,0.937232,0.458147,0.624222,0.135971,0.751157,0.969332,0.467051,0.0119098,0.806025,0.350919,0.175196,0.900934,0.433485,0.8611,0.130831,0.696069,|0.934782,0.0511236,0.538626,0.454453,0.725148,0.61802,0.505522,0.330877,0.642101,0.223008,0.827606,0.967399,0.953948,0.0571019,0.0679876,0.173945,0.279128,0.734313,0.431278,0.0658267,0.649857,0.0588509,0.73756,0.84849,0.920951,0.531348,0.958931,0.994411,0.103602,0.332206,0.655932,0.193561,0.55047,0.978453,0.804197,0.718894,0.206335,0.0351089,0.672867,0.803764,0.762764,0.193066,0.124804,0.143241,0.441712,0.75501,0.844532,0.701646,0.646112,0.380186,0.457338,0.974209,0.387546,0.449039,0.617608,0.398808,0.101789,0.674941,0.821533,0.575899,0.900256,0.969467,0.357647,0.200816,0.997931,0.227381,0.219231,0.171882,0.104255,0.87244,0.993816,0.498462,0.674579,0.531258,0.773521,0.771843,0.745719,0.940576,0.161931,0.396736,0.857273,0.0424578,0.152487,0.248865,0.196606,0.335166,0.604308,0.32894,0.393265,0.845434,0.630851,0.493036,0.309565,0.767857,0.263614,0.848943,0.01595,0.230491,0.855372,0.128874,0.0615395,0.334909,0.339535,0.455742,0.0652848,0.0450428,0.318953,0.651008,0.650735,0.550575,0.274805,0.358946,0.286374,0.856269,0.875039,0.298127,0.130044,0.406282,0.446231,0.656778,0.270371,0.703257,0.385249,0.2951,0.513045,0.954279,0.419542,0.310992,0.134952,0.78834,0.553699,0.933171,0.339044,0.869729,0.0575544,0.413468,0.426142,0.415827,0.357413,0.200815,0.803256,0.72406,0.197537,0.402715,0.188261,0.00837398,0.114468,0.793062,0.341167,0.026799,0.26659,0.177336,0.719309,0.0394216,0.962534,0.124695,0.91343,0.135642,0.636742,0.435415,0.945011,0.957478,0.480289,0.361624,0.763225,0.589488,0.75468,0.0486085,0.777873,0.374881,0.947368,0.400394,0.542364,0.444169,0.0323198,0.0186779,0.904355,0.520216,0.691697,0.769446,0.885886,0.307786,0.653074,0.82893,0.622986,0.562509,0.375909,0.407484,0.214548,0.934893,0.314962,0.746978,0.233345,0.405429,0.707965,0.0249184,0.474413,0.338213,0.641641,0.144515,0.773121,0.900906,0.62509,0.715793,0.322462,0.456189,0.42322,0.711174,0.452853,0.462056,0.897919,0.804674,0.238254,0.552102,0.409568,0.614821,0.925397,0.543698,0.454701,0.19154,0.868864,0.0276024,0.138881,0.788978,0.658734,0.92331,0.334717,0.157831,0.682485,0.930542,0.623189,0.0982977,0.952305,0.26828,0.282907,0.232748,0.699291,0.154178,0.306147,0.490092,0.13261,0.631042,0.444657,0.827488,0.0389906,0.840506,0.166293,0.00957197,0.932735,0.344781,0.22872,0.389033,0.203499,0.261841,0.17072,0.308062,0.633386,0.772048,0.157753,0.632598,0.110429,0.295713,0.622211,0.706007,0.248306,0.760898,0.15543,0.725073,0.565334,0.890109,0.850347,0.708881,0.424495,0.483981,0.685083,0.110154,0.361739,0.198537,0.906625,0.120781,0.194519,0.38588,0.161526,0.225742,0.183748,0.486722,0.29143,0.701206,0.0140375,0.869281,0.637323,0.827509,0.469578,0.811808,0.509941,0.318601,0.789227,0.963651,0.543251,0.916844,0.944911,0.601497,0.195027,0.269404,0.538782,0.887206,0.737399,0.735415,0.99881,0.361156,0.945614,0.293265,0.345423,0.263328,0.028761,0.859357,0.842428,0.426176,0.116403,0.941647,0.367011,0.0216057,0.639524,0.743322,0.590587,0.293525,0.333377,0.222264,0.304325,0.087187,0.889354,0.159717,0.0793426,0.0978555,0.429886,0.521409,0.307397,0.828678,0.793984,0.907361,0.707677,0.511546,0.657864,0.0564356,0.266016,0.112816,0.924285,0.150525,0.117679,0.32581,0.775412,0.601533,0.0685424,0.397778,0.908228,0.458514,0.644784,0.519819,0.321214,0.410416,0.832128,0.868793,0.456034,0.43429,0.40965,0.923775,0.728761,0.772395,0.385838,0.0665239,0.979376,0.802402,0.0834465,0.124771,0.30798,0.150511,0.694049,0.335763,0.979216,0.575283,0.54041,0.252358,0.18708,0.856311,0.50077,0.764892,0.839505,0.0887801,0.357036,0.311592,0.71196,0.201248,0.200718,0.397527,0.294402,0.46283,0.0855303,0.0155017,0.882767,0.0849633,0.904068,0.888858,0.252853,0.483655,0.655329,0.726217,0.272836,0.439096,0.329888,0.0546183,0.0551861,0.712449,0.893608,0.955364,0.605934,0.492887,0.347763,0.732378,0.86295,0.96126,0.891444,0.619945,0.136614,0.383558,0.301128,0.549171,0.567112,0.489147,0.969696,0.0279137,0.420883,0.693327,0.0199125,0.630377,0.655219,0.0681542,0.357734,0.61721,0.617214,0.497991,0.512436,0.971638,0.951999,0.987238,0.679338,0.169987,0.660842,0.883744,0.385419,0.0726838,0.902745,0.442714,0.961906,0.144165,0.15733,0.659302,0.759111,0.41762,0.415719,0.335181,0.0921642,0.189956,0.700886,0.191606,0.940091,0.381698,0.0708115,0.891766,0.0984533,0.749181,0.926231,0.582274,0.269248,0.936661,0.526854,0.231027,0.894757,0.278143,0.790592,0.0870067,0.173746,0.902264,0.679416,0.286545,0.621287,0.58106,0.107601,0.405907,0.439876,0.614234,0.980466,0.794819,0.701651,0.77834,0.434414,0.976224,0.190141,0.670022,0.309931,0.672753,0.630729,0.0724838,0.581189,0.827337,0.410688,0.988355,0.250973,0.571213,0.717012,0.747384,0.148298,0.499146,0.381816,0.520186,0.248992,0.974823,0.133527,0.339692,0.937518,0.0157164,0.698429,0.22448,0.864032,0.663973,0.0821754,0.24859,0.636318,0.317148,0.827507,0.666458,0.356792,0.48627,0.460327,0.266901,0.00330281,0.0936123,0.357663,0.996925,0.371716,0.0806863,0.300562,0.229428,0.549562,0.76004,0.398129,0.758784,0.747335,0.441744,0.998925,0.577233,0.751862,0.048957,0.798864,0.121797,0.88973,0.582231,0.555378,0.660355,0.367924,0.906276,0.117537,0.773355,0.837179,0.192571,0.73643,0.713299,0.902588,0.245472,0.438882,0.530944,0.723696,0.334575,0.987557,0.599079,0.733677,0.661933,0.154138,0.692914,0.443138,0.28236,0.238545,0.324099,0.484165,0.916979,0.773276,0.236312,0.259711,0.220048,0.867692,0.53446,0.597574,0.176744,0.889839,0.284173,0.979756,0.438821,0.648763,0.5304,0.818299,0.172616,0.395037,0.903239,0.181426,0.493189,0.952837,0.0150457,0.122073,0.325831,0.362262,0.179837,0.940164,0.542723,0.315574,0.62876,0.914919,0.556655,0.510708,0.899564,0.294531,0.136203,0.693019,0.69571,0.0607148,0.918268,0.171154,0.233709,0.492982,0.284961,0.347811,0.89331,0.199064,0.00299299,0.291484,0.765354,0.827884,0.1903,0.651661,0.998903,0.68344,0.239814,0.488799,0.626773,0.859609,0.445332,0.747105,0.757929,0.949398,0.711377,0.555897,0.771938,0.940882,0.807417,0.497659,0.434783,0.328304,0.74912,0.92682,0.891379,0.226491,0.60795,0.00773191,0.44863,0.724061,0.331697,0.540195,0.458,0.606323,0.199555,0.188322,0.297461,0.947245,0.999549,0.357055,0.515055,0.150365,0.769356,0.0467929,0.725034,0.794939,0.965783,0.724844,0.3565,0.284478,0.554574,0.236905,0.93942,0.108111,0.141149,0.896993,0.479183,0.312572,0.372554,0.235338,0.0707995,0.0110838,0.0949358,0.930057,0.46228,0.596035,0.807274,0.483786,0.0978212,0.849823,0.627464,0.959826,0.494094,0.120918,0.422843,0.353484,0.259457,0.841743,0.119145,0.215694,0.840675,0.127582,0.762773,0.383088,0.584009,0.412008,0.216254,0.902667,0.413784,0.514681,0.202001,0.999991,0.160432,0.403621,0.478278,0.295092,0.307744,0.213356,0.972213,0.783277,0.607807,0.833361,0.170083,0.315846,0.957782,0.0869635,0.6896,0.334402,0.873991,0.483206,0.334587,0.0891156,0.113424,0.990599,0.79064,0.418541,0.983557,0.535542,0.487308,0.72237,0.194811,0.348454,0.14181,0.0610004,0.775351,0.148428,0.690969,0.153294,0.98768,0.755646,0.746445,0.95286,0.278668,0.051168,0.991209,0.729145,0.000762343,0.961613,0.869867,0.844641,0.466131,0.124856,0.386285,0.817246,0.0480918,0.661302,0.76323,0.582364,0.981298,0.585986,0.968864,0.129102,0.873419,0.151252,0.757831,0.288016,0.560558,0.213077,0.0273783,0.707767,0.202985,0.111801,0.505704,0.684978,0.86564,0.711926,0.635219,0.845047,0.22022,0.702212,0.450428,0.320204,0.728433,0.802189,0.546615,0.30342,0.114886,0.869225,0.747462,0.436608,0.465338,0.196918,0.400774,0.472009,0.77834,0.440095,0.751146,0.239319,0.366925,0.241345,0.904237,0.953967,0.295782,0.979381,0.844001,0.35488,0.733502,0.548264,0.587995,0.831258,0.93553,0.0755201,0.623373,0.371756,0.452856,0.903162,0.00134945,0.651239,0.197662,0.171894,0.418009,0.0237067,0.0177454,0.524892,0.871842,0.330254,0.434661,0.249396,0.690222,0.321467,0.461509,0.0423242,0.583983,0.193229,0.424041,0.158322,0.312226,0.17184,0.971964,0.0192069,0.871028,0.418061,0.241215,0.145036,0.399895,0.00881696,0.541608,0.509085,0.0313328,0.560432,0.384003,0.609392,0.979245,0.529262,0.977411,0.970283,0.778094,0.221677,0.204801,0.0481066,0.7638,0.636454,0.69223,0.480421,0.835458,0.233101,0.503723,0.176151,0.359108,0.768508,0.701014,0.247994,0.444558,0.107073,0.141962,0.673482,0.080596,0.417682,0.064446,0.769354,0.688169,0.803331,0.103917,0.790317,0.495429,0.598715,0.340414,0.428453,0.789972,0.861122,0.808636,0.823031,0.0985227,0.188839,0.0995955,0.586067,0.606895,0.438322,0.870775,0.772565,0.373607,0.570736,0.473576,0.114466,0.4028,0.980834,0.859058,0.785901,0.391561,0.124242,0.37362,0.324452,0.21123,0.921728,0.768797,0.865957,0.168308,0.694931,0.410189,0.824796,0.386872,0.431985,0.0512988,0.528892,0.964688,0.0784993,0.93232,0.0833603,0.258365,0.363173,0.70108,0.346655,0.836066,0.914105,0.852213,0.89973,0.17895,0.180128,0.685826,0.814413,0.939254,0.91738,0.345944,0.264838,0.280756,0.303606,0.516773,0.446192,0.876588,0.122188,0.922576,0.387269,0.0715258,0.420732,0.380085,0.908318,0.349,0.891747,0.432976,0.647124,0.579816,0.821518,0.475615,0.547496,0.618086,0.0359339,0.744248,0.717641,0.775858,0.117975,0.0213099,0.070488,0.535235,0.457643,0.485256,0.508431,0.0626155,|0.428376,0.280174,0.0258099,0.185685,0.769024,0.24639,0.538502,0.964102,0.49217,0.353239,0.879592,0.737455,0.820318,0.147027,0.875303,0.830278,0.824147,0.547482,0.60713,0.858634,0.632216,0.364917,0.0863845,0.156051,0.257309,0.396628,0.967229,0.677521,0.920096,0.278201,0.497214,0.355608,0.800179,0.101555,0.97658,0.231608,0.344276,0.884758,0.724882,0.778914,0.975206,0.0506118,0.260393,0.998729,0.1889,0.902141,0.372932,0.912473,0.80381,0.309807,0.733822,0.0136368,0.845963,0.952888,0.467279,0.765404,0.541909,0.599986,0.260997,0.836614,0.0790857,0.94727,0.586694,0.171695,0.602802,0.370344,0.425766,0.670258,0.550495,0.306352,0.0714365,0.38579,0.109215,0.702522,0.0306157,0.875214,0.134679,0.881144,0.631062,0.390038,0.75853,0.783342,0.991323,0.719603,0.751987,0.315148,0.979178,0.262082,0.246409,0.338648,0.42718,0.161835,0.30024,0.433627,0.718409,0.3004,0.360502,0.235406,0.951842,0.237977,0.607077,0.99013,0.987362,0.969299,0.959947,0.208779,0.630161,0.922946,0.967599,0.813021,0.363357,0.638902,0.662519,0.964083,0.756581,0.71989,0.732667,0.221397,0.401418,0.979415,0.67275,0.827481,0.792844,0.0154657,0.623249,0.781804,0.539216,0.898408,0.212716,0.0429209,0.674455,0.359709,0.175002,0.768021,0.569973,0.939065,0.830428,0.270192,0.931817,0.166939,0.425975,0.679043,0.965331,0.195734,0.0586885,0.131855,0.302128,0.49037,0.810063,0.650626,0.751491,0.454713,0.656823,0.913082,0.781267,0.58204,0.745347,0.590799,0.399284,0.461041,0.648175,0.217623,0.45655,0.636344,0.0427171,0.294987,0.402204,0.117979,0.599092,0.808799,0.239187,0.619294,0.128088,0.436664,0.0676641,0.974691,0.524414,0.258475,0.98705,0.273961,0.230621,0.0742304,0.668565,0.914618,0.899942,0.59821,0.949688,0.212512,0.326101,0.946353,0.268296,0.60245,0.675239,0.706588,0.604712,0.178464,0.661889,0.028879,0.177574,0.373112,0.921846,0.0053401,0.723211,0.394542,0.358482,0.87199,0.524269,0.156111,0.444769,0.19613,0.915403,0.170326,0.543574,0.540301,0.897252,0.619959,0.933179,0.229117,0.61136,0.747351,0.548473,0.944288,0.683082,0.221363,0.813369,0.422812,0.920675,0.841693,0.764414,0.830667,0.196363,0.171385,0.801366,0.416089,0.539964,0.631126,0.346802,0.967738,0.0474475,0.763536,0.826465,0.215129,0.710596,0.188127,0.962761,0.815447,0.0371516,0.855642,0.63783,0.204812,0.428325,0.751465,0.334939,0.674638,0.983628,0.763532,0.570499,0.249663,0.326896,0.307998,0.608074,0.798964,0.0583438,0.369083,0.881335,0.0865795,0.508399,0.913599,0.994061,0.61739,0.0848725,0.613051,0.98721,0.271487,0.793392,0.41097,0.586442,0.390777,0.844145,0.618395,0.890507,0.670062,0.556055,0.178188,0.434421,0.873906,0.173963,0.474927,0.549728,0.669326,0.628153,0.519171,0.254448,0.310976,0.56413,0.819636,0.655189,0.394337,0.577085,0.0777589,0.858401,0.62265,0.189672,0.382731,0.62422,0.266531,0.547567,0.578919,0.260069,0.921681,0.340173,0.614214,0.735187,0.55437,0.913169,0.746971,0.658119,0.771661,0.908523,0.979167,0.875113,0.38195,0.795084,0.485066,0.205288,0.575279,0.667302,0.391249,0.0601428,0.774443,0.517551,0.37386,0.848203,0.781749,0.235418,0.250847,0.913545,0.745712,0.657819,0.00353909,0.924704,0.955423,0.949137,0.205555,0.616196,0.342356,0.673669,0.447725,0.661971,0.30064,0.490283,0.917288,0.339389,0.893088,0.716297,0.596859,0.208913,0.546207,0.717169,0.949595,0.597254,0.263269,0.597518,0.671678,0.609882,0.610888,0.579568,0.660316,0.894066,0.00950223,0.889107,0.611544,0.529673,0.225679,0.103755,0.416303,0.863751,0.537995,0.400657,0.21922,0.266207,0.379247,0.401604,0.117252,0.475575,0.290688,0.284558,0.828754,0.977736,0.260522,0.657676,0.745286,0.163172,0.307112,0.340159,0.984564,0.871401,0.51181,0.813813,0.945664,0.446552,0.0682551,0.64939,0.116685,0.942968,0.329465,0.41357,0.411331,0.766179,0.547101,0.755604,0.467045,0.298076,0.173697,0.463987,0.153296,0.690443,0.507966,0.107968,0.938665,0.650366,0.581282,0.698609,0.290405,0.778163,0.541988,0.520312,0.579373,0.709014,0.0137001,0.135417,0.583083,0.375595,0.739057,0.697737,0.357386,0.758077,0.489118,0.807865,0.0895666,0.730359,0.737555,0.822893,0.464214,0.910143,0.807826,0.300258,0.105374,0.450821,0.352722,0.322738,0.52119,0.152843,0.731418,0.50792,0.550952,0.903985,0.749229,0.465368,0.321766,0.0206521,0.920629,0.583299,0.379329,0.538042,0.995488,0.198837,0.51864,0.699375,0.0260092,0.263127,0.0586163,0.473654,0.0106999,0.441716,0.847703,0.314436,0.691707,0.723168,0.479589,0.629397,0.00157756,0.124821,0.950418,0.544609,0.642508,0.973843,0.845958,0.821619,0.88814,0.610261,0.652247,0.568014,0.0429879,0.158025,0.382425,0.21153,0.343907,0.00684226,0.0876377,0.499081,0.899587,0.182848,0.181826,0.764457,0.766063,0.758439,0.0393732,0.161235,0.938168,0.566748,0.109898,0.298427,0.767894,0.633923,0.121515,0.840078,0.802279,0.779546,0.872398,0.815365,0.644217,0.232749,0.939495,0.00691748,0.881467,0.244839,0.370388,0.0890725,0.771378,0.101757,0.713716,0.472721,0.875962,0.537848,0.102258,0.0683497,0.497068,0.246983,0.318512,0.811571,0.87745,0.94377,0.491516,0.933534,0.256226,0.187771,0.149746,0.953543,0.795758,0.00716335,0.339432,0.00420505,0.641833,0.988613,0.386696,0.508682,0.742061,0.768337,0.316064,0.00304168,0.811552,0.672145,0.206123,0.833466,0.0271509,0.993641,0.305341,0.859576,0.654533,0.438946,0.953793,0.886312,0.619185,0.93034,0.654379,0.630167,0.332276,0.9591,0.533318,0.698348,0.614809,0.329553,0.38884,0.421728,0.624431,0.83124,0.12138,0.133473,0.599482,0.785185,0.179667,0.346662,0.149206,0.502377,0.568081,0.19392,0.634156,0.212243,0.98779,0.844517,0.267043,0.85505,0.967206,0.870361,0.954047,0.316027,0.789233,0.293972,0.717112,0.0606873,0.647181,0.909528,0.954318,0.532484,0.0979211,0.712224,0.89191,0.0988986,0.111395,0.491584,0.281444,0.719781,0.43598,0.389541,0.636698,0.0236754,0.614076,0.281544,0.322598,0.380591,0.977468,0.474393,0.385963,0.294819,0.397922,0.0782309,0.280962,0.349586,0.525823,0.744739,0.513455,0.7223,0.394364,0.0923349,0.493075,0.0442769,0.141457,0.537005,0.537253,0.148021,0.282731,0.76822,0.768066,0.072962,0.870059,0.0612152,0.340514,0.746615,0.7526,0.781186,0.34927,0.651146,0.265432,0.59245,0.384018,0.967411,0.554917,0.986982,0.208322,0.956213,0.708589,0.596441,0.0461218,0.979275,0.887117,0.261437,0.870693,0.342348,0.738961,0.0549061,0.888484,0.519876,0.505821,0.614891,0.505949,0.663657,0.768408,0.598864,0.312621,0.330323,0.502027,0.926911,0.847574,0.295593,0.940616,0.692494,0.600579,0.963617,0.684398,0.733934,0.611,0.289327,0.547069,0.92045,0.52962,0.856259,0.924878,0.785051,0.397039,0.379764,0.200868,0.490614,0.546356,0.648761,0.245875,0.684859,0.817231,0.762617,0.645955,0.0698003,0.614028,0.846811,0.961512,0.516216,0.632893,0.879674,0.20448,0.595467,0.799227,0.950193,0.311469,0.339364,0.886371,0.064351,0.996154,0.412369,0.668557,0.451221,0.000330508,0.96066,0.918146,0.477852,0.0649084,0.428535,0.336096,0.072093,0.835145,0.990937,0.794028,0.0947769,0.976833,0.0873013,0.484846,0.31272,0.504729,0.786497,0.416224,0.607252,0.193011,0.0631693,0.87691,0.354822,0.539194,0.589846,0.496154,0.27368,0.565672,0.125658,0.255776,0.315485,0.635852,0.044174,0.425262,0.0798416,0.000830352,0.400078,0.102746,0.929694,0.0834448,0.888773,0.771178,0.874947,0.0500989,0.153931,0.623586,0.321635,0.210422,0.515044,0.31527,0.197496,0.300184,0.374605,0.870383,0.558157,0.148914,0.0677455,0.652833,0.086556,0.844009,0.597473,0.075781,0.36862,0.515692,0.900948,0.993693,0.489723,0.403696,0.0363014,0.617999,0.717058,0.144502,0.4654,0.863123,0.167321,0.99199,0.711258,0.131029,0.385158,0.393199,0.18995,0.924519,0.764757,0.5016,0.169168,0.0574372,0.0483986,0.560601,0.393932,0.696761,0.163219,0.0191414,0.57226,0.624793,0.342175,0.44685,0.761068,0.126164,0.471685,0.518227,0.102122,0.169774,0.874596,0.846751,0.082461,0.821563,0.448167,0.179817,0.7694,0.324717,0.395089,0.057144,0.0702931,0.234943,0.315103,0.942125,0.0735903,0.781161,0.621116,0.549647,0.19472,0.568641,0.101554,0.680225,0.647043,0.165685,0.627824,0.6482,0.648949,0.808751,0.262888,0.852635,0.174541,0.772465,0.530547,0.623164,0.0234695,0.607821,0.429821,0.175434,0.70438,0.387721,0.587826,0.785112,0.621907,0.167734,0.710049,0.0544225,0.0905879,0.920771,0.141099,0.519113,0.122169,0.994506,0.442901,0.542981,0.542534,0.875485,0.641828,0.0939818,0.739589,0.306904,0.355097,0.261108,0.419351,0.238464,0.505565,0.274523,0.591438,0.872095,0.219062,0.517561,0.780802,0.485967,0.848531,0.90992,0.781361,0.299724,0.493637,0.228608,0.853456,0.0821189,0.501542,0.90661,0.924472,0.319534,0.185124,0.781128,0.434234,0.656715,0.485241,0.592756,0.194649,0.631308,0.995765,0.00266725,0.0861059,0.526234,0.969,0.33196,0.924341,0.253081,0.663731,0.363996,0.323459,0.383855,0.953945,0.548704,0.028493,0.321226,0.842441,0.958983,0.801569,0.971671,0.585175,0.272859,0.069882,0.463983,0.63372,0.136724,0.881824,0.437968,0.392654,0.118783,0.581123,0.322219,0.597223,0.477285,0.700215,0.758474,0.0465004,0.270563,0.603961,0.618524,0.923947,0.354564,0.972094,0.968391,0.131673,0.670303,0.419733,0.177049,0.469665,0.429945,0.724127,0.93773,0.243517,0.863104,0.920166,0.718956,0.0564557,0.751407,0.941853,0.569096,0.142703,0.645545,0.952061,0.13969,0.0266986,0.385301,|0.137143,0.200561,0.826878,0.344935,0.890212,0.706564,0.169338,0.00982904,0.13507,0.125696,0.189275,0.165942,0.334829,0.203501,0.197197,0.470478,0.163378,0.865494,0.663119,0.35567,0.943382,0.0846196,0.480419,0.0764647,0.528548,0.762886,0.296211,0.851956,0.459533,0.108039,0.962348,0.342092,0.97732,0.874965,0.691815,0.983542,0.848953,0.446346,0.399057,0.445099,0.212871,0.324214,0.961129,0.7586,0.248847,0.577561,0.103294,0.696039,0.138054,0.277671,0.911768,0.923874,0.873226,0.556603,0.0319552,0.054359,0.176608,0.249643,0.435069,0.97278,0.559571,0.0879196,0.883108,0.507894,0.200762,0.189634,0.886869,0.0854072,0.361509,0.745234,0.734134,0.60024,0.539344,0.776855,0.574296,0.765019,0.859345,0.746144,0.243687,0.175311,0.752896,0.432254,0.305203,0.812898,0.98083,0.570581,0.117152,0.16227,0.038057,0.896751,0.449318,0.26507,0.382449,0.405473,0.934393,0.05753,0.461148,0.350909,0.935907,0.31553,0.54905,0.118073,0.467081,0.658313,0.516091,0.870987,0.692306,0.452627,0.244557,0.00908041,0.166425,0.779948,0.424626,0.962614,0.0845919,0.10837,0.257387,0.718001,0.965385,0.798582,0.0949351,0.0465607,0.158994,0.195545,0.577652,0.46598,0.658467,0.148774,0.202711,0.332987,0.75203,0.391871,0.714093,0.796456,0.00555658,0.812386,0.851765,0.692508,0.795827,0.877322,0.831746,0.0963129,0.525886,0.239311,0.602537,0.992112,0.0727046,0.0341971,0.120329,0.748771,0.683078,0.42862,0.420428,0.605003,0.817943,0.864682,0.866425,0.289189,0.635601,0.0183303,0.200696,0.0487199,0.514205,0.281953,0.753025,0.86422,0.159546,0.144342,0.377957,0.015935,0.0185938,0.576401,0.496801,0.355947,0.0318171,0.469286,0.893833,0.36672,0.153156,0.230597,0.625772,0.980559,0.841022,0.483566,0.746994,0.404678,0.151021,0.770494,0.879079,0.371403,0.75898,0.142861,0.0699879,0.517198,0.613358,0.0829673,0.379784,0.73544,0.862848,0.676371,0.314431,0.856889,0.0170816,0.495551,0.707729,0.620511,0.896175,0.786419,0.664102,0.55938,0.948428,0.181837,0.441902,0.58002,0.390352,0.865978,0.371991,0.701176,0.991077,0.681644,0.911806,0.831437,0.259014,0.556909,0.44378,0.290801,0.757538,0.242433,0.049307,0.94252,0.637762,0.422304,0.20271,0.612236,0.741817,0.194128,0.607897,0.547949,0.224471,0.0800117,0.665124,0.981331,0.657463,0.709438,0.743373,0.550527,0.512659,0.420579,0.764643,0.776938,0.832001,0.364142,0.117316,0.125105,0.0875981,0.372818,0.590942,0.213523,0.350965,0.933891,0.538847,0.0213161,0.215311,0.850491,0.0196897,0.916241,0.182981,0.133229,0.844304,0.00110912,0.300534,0.380313,0.443893,0.949332,0.953521,0.0178294,0.881395,0.144051,0.753862,0.759421,0.824592,0.113906,0.623691,0.469903,0.768879,0.928602,0.137841,0.125917,0.225696,0.914562,0.775783,0.118277,0.7336,0.671515,0.540028,0.579268,0.958038,0.0885694,0.674671,0.87048,0.658876,0.741844,0.847069,0.855103,0.294664,0.92846,0.276215,0.0362663,0.351831,0.211072,0.374757,0.317851,0.591549,0.883486,0.7826,0.97899,0.0149437,0.460825,0.631585,0.694273,0.486678,0.752288,0.120854,0.653483,0.988501,0.598198,0.540898,0.963494,0.781354,0.00857389,0.60805,0.188456,0.0666152,0.795686,0.375706,0.326827,0.577913,0.262431,0.731201,0.659054,0.190284,0.969946,0.284534,0.171273,0.93422,0.809992,0.00210512,0.56529,0.463685,0.822207,0.635795,0.606903,0.156783,0.461778,0.489257,0.0354219,0.215725,0.395669,0.533717,0.879299,0.539271,0.0834728,0.159298,0.695867,0.994185,0.827763,0.909371,0.290333,0.120397,0.603341,0.582697,0.938065,0.957393,0.237972,0.463721,0.71349,0.19967,0.802112,0.436795,0.967744,0.0462006,0.254186,0.256519,0.833575,0.277238,0.389419,0.0366722,0.604041,0.0375178,0.518163,0.530267,0.119695,0.245242,0.483824,0.169701,0.66937,0.709773,0.0217986,0.13445,0.609111,0.566086,0.768051,0.928196,0.662368,0.725339,0.259515,0.857288,0.271503,0.648321,0.542193,0.905398,0.0854416,0.621442,0.971962,0.57098,0.546672,0.610387,0.7563,0.864385,0.350616,0.671165,0.77211,0.846555,0.103815,0.179241,0.0105494,0.612699,0.832745,0.773728,0.795745,0.211294,0.663505,0.387547,0.684994,0.659929,0.488554,0.286777,0.0916106,0.251094,0.416596,0.0802409,0.15777,0.249675,0.293575,0.654092,0.256662,0.0239049,0.884304,0.716432,0.71754,0.750715,0.702322,0.0806231,0.59414,0.886857,0.81507,0.118182,0.0095104,0.320394,0.234365,0.694905,0.430361,0.294732,0.797334,0.965819,0.111235,0.326774,0.0719552,0.720027,0.282189,0.445474,0.476286,0.0936522,0.707825,0.546354,0.683912,0.588526,0.407782,0.0208155,0.375274,0.383269,0.625082,0.694898,0.852318,0.596597,0.422312,0.0724662,0.798408,0.300956,0.203815,0.953129,0.36453,0.657343,0.0352458,0.204943,0.00598103,0.644831,0.165572,0.361175,0.0688879,0.216324,0.117636,0.364156,0.410481,0.359189,0.450516,0.0442081,0.874117,0.45483,0.18475,0.179295,0.868568,0.136175,0.633003,0.240133,0.919299,0.0797819,0.214165,0.307574,0.94066,0.150961,0.588984,0.35329,0.190749,0.0850809,0.792361,0.907159,0.494317,0.4145,0.967674,0.743389,0.174037,0.0887725,0.0757869,0.222774,0.933732,0.1074,0.401412,0.616709,0.22576,0.823543,0.0675806,0.49668,0.207871,0.641421,0.170718,0.611441,0.504001,0.0258203,0.398634,0.465054,0.764475,0.640368,0.00692999,0.535025,0.815839,0.201129,0.982488,0.639202,0.805142,0.31724,0.702061,0.198486,0.464063,0.656012,0.216764,0.781902,0.595381,0.795243,0.625224,0.199246,0.339586,0.710858,0.271968,0.0579903,0.0376067,0.148386,0.00458384,0.403154,0.926239,0.368557,0.879358,0.703856,0.377,0.936748,0.57738,0.570509,0.819038,0.45633,0.499487,0.531608,0.0699382,0.777203,0.711863,0.0151239,0.848691,0.481482,0.105031,0.787031,0.970231,0.600459,0.551563,0.801554,0.616568,0.468701,0.119123,0.192057,0.897719,0.167293,0.851052,0.729113,0.4184,0.855029,0.653164,0.812283,0.0767813,0.985022,0.561542,0.484813,0.311731,0.757064,0.544094,0.0301024,0.366292,0.48658,0.00860161,0.810098,0.286189,0.671015,0.795873,0.582331,0.299596,0.667654,0.189982,0.0890559,0.39646,0.801541,0.270925,0.181121,0.984767,0.246007,0.14265,0.439712,0.336596,0.30369,0.940055,0.863305,0.0082702,0.19489,0.918078,0.13987,0.583539,0.180237,0.372164,0.071334,0.110069,0.475814,0.230977,0.348963,0.802387,0.194943,0.994003,0.0252784,0.146812,0.962816,0.216884,0.558643,0.952385,0.761382,0.486613,0.065765,0.372145,0.220822,0.143294,0.020905,0.249997,0.434371,0.825894,0.880769,0.578188,0.909656,0.971804,0.74593,0.52856,0.449582,0.990771,0.222834,0.964043,0.58432,0.944512,0.230387,0.352104,0.113074,0.478482,0.854946,0.870987,0.748249,0.027459,0.78885,0.190144,0.136056,0.803227,0.831955,0.318669,0.813577,0.215308,0.119439,0.548076,0.818938,0.127443,0.460797,0.647102,0.106781,0.0698379,0.137786,0.02017,0.181684,0.928166,0.584353,0.415089,0.0342064,0.183643,0.540552,0.238377,0.517494,0.804239,0.149129,0.614172,0.153718,0.527849,0.904776,0.0991736,0.931616,0.901043,0.194726,0.298741,0.593199,0.24994,0.181015,0.662364,0.793014,0.597977,0.546798,0.682059,0.522716,0.966928,0.812664,0.710018,0.761453,0.00204825,0.491345,0.749263,0.448953,0.524381,0.702153,0.194642,0.815699,0.152192,0.408778,0.0758321,0.519296,0.985033,0.120418,0.153944,0.75484,0.810475,0.651049,0.415185,0.641648,0.337824,0.945645,0.115594,0.0447484,0.767924,0.640372,0.163875,0.337389,0.717786,0.50396,0.150472,0.760688,0.599643,0.382216,0.0638596,0.5081,0.306018,0.667053,0.306539,0.810782,0.256082,0.996601,0.408555,0.175294,0.460987,0.336718,0.171123,0.526222,0.746499,0.343909,0.367135,0.48509,0.511796,0.278318,0.64503,0.615045,0.507827,0.336873,0.877491,0.443715,0.0558187,0.0359091,0.812871,0.991189,0.812112,0.565367,0.731724,0.201624,0.782789,0.194751,0.968762,0.267935,0.800776,0.0316381,0.427439,0.629821,0.421912,0.263658,0.900031,0.215055,0.84183,0.50304,0.379785,0.743314,0.106213,0.470162,0.915452,0.0257579,0.77256,0.00109464,0.525906,0.303284,0.570798,0.56775,0.150272,0.777631,0.873285,0.928377,0.0703984,0.13115,0.474007,0.0858521,0.778628,0.804535,0.0206483,0.930201,0.52285,0.168266,0.387983,0.858464,0.252319,0.482402,0.531128,0.17723,0.615464,0.216865,0.288814,0.797905,0.0819243,0.37383,0.0374411,0.985785,0.0894083,0.973283,0.575737,0.925956,0.0669706,0.629968,0.182739,0.902732,0.622466,0.767177,0.669234,0.833951,0.939528,0.147014,0.426509,0.830273,0.786339,0.926656,0.672644,0.23806,0.738957,0.04844,0.569004,0.763597,0.5095,0.506432,0.431361,0.623892,0.394415,0.435874,0.548452,0.364745,0.373947,0.797827,0.237564,0.237454,0.706788,0.959834,0.0701108,0.779778,0.778755,0.956851,0.968547,0.560061,0.273899,0.128249,0.59925,0.0858287,0.952907,0.378809,0.800334,0.606395,0.283071,0.632062,0.592234,0.743161,0.202139,0.169869,0.170272,0.907533,0.836788,0.615856,0.628793,0.877754,0.759369,0.127389,0.170002,0.735125,0.432361,0.912942,0.472825,0.189944,0.973657,0.285393,0.0623194,0.0403338,0.418456,0.276511,0.606514,0.0315429,0.774981,0.0542504,0.117924,0.171415,0.302356,0.68483,0.802507,0.525197,0.989272,0.416345,0.510973,0.999031,0.618461,0.976428,0.441971,0.0417696,0.412316,0.902552,0.933282,0.846291,0.173698,0.308855,0.488331,0.781105,0.0889498,0.711807,0.835096,0.775432,0.837828,0.786707,0.713456,0.214041,0.281939,0.19179,0.257521,0.854227,0.732123,0.375314,0.335749,0.607625,0.558365,0.0851951,0.917791,0.284941,0.401498,0.599237,0.374389,0.956781,0.934436,|0.390504,0.292488,0.0939994,0.0946043,0.203719,0.236028,0.589167,0.397335,0.478709,0.176661,0.515186,0.63511,0.65586,0.116644,0.898795,0.0693941,0.0169791,0.364486,0.493581,0.890548,0.0931653,0.887669,0.905459,0.0202177,0.719633,0.82756,0.986419,0.66996,0.306765,0.290446,0.0428083,0.123912,0.886309,0.749895,0.775671,0.867927,0.725626,0.656854,0.251579,0.81973,0.35146,0.104273,0.435624,0.680973,0.286671,0.16843,0.368603,0.0301158,0.164241,0.387119,0.688119,0.85677,0.973406,0.24374,0.175051,0.266747,0.644568,0.265939,0.0967692,0.761034,0.749874,0.507645,0.779869,0.343333,0.526929,0.684293,0.397693,0.275352,0.034734,0.354699,0.902754,0.814928,0.26453,0.204254,0.289437,0.168768,0.817445,0.345113,0.168231,0.276672,0.105243,0.942057,0.12612,0.997416,0.629979,0.539257,0.017442,0.304186,0.337036,0.579818,0.934802,0.453895,0.67784,0.369144,0.551901,0.598251,0.676368,0.236778,0.550336,0.0753784,0.392159,0.752349,0.285274,0.154068,0.92416,0.319594,0.00283784,0.212741,0.123893,0.844501,0.730149,0.693784,0.0285457,0.762676,0.302497,0.961186,0.549252,0.553324,0.0023874,0.549151,0.0104738,0.844323,0.370602,0.39836,0.639708,0.203153,0.198512,0.283018,0.892755,0.60484,0.359754,0.120831,0.529921,0.329197,0.106392,0.432851,0.721248,0.273982,0.0719022,0.666208,0.211022,0.739308,0.430978,0.236555,0.764546,0.410052,0.85871,0.587949,0.559203,0.157623,0.205702,0.883256,0.0727407,0.840414,0.69226,0.105353,0.750522,0.358613,0.895004,0.792525,0.0298381,0.626159,0.969474,0.654714,0.00399989,0.124733,0.319242,0.29713,0.0219076,0.407132,0.298759,0.343568,0.809467,0.155968,0.975563,0.0961068,0.62495,0.611139,0.653545,0.943049,0.325421,0.620051,0.401231,0.893539,0.959944,0.526676,0.790731,0.278385,0.465683,0.298396,0.916965,0.171812,0.37737,0.763326,0.419185,0.968063,0.0815631,0.10169,0.66923,0.405686,0.475828,0.219423,0.269086,0.217737,0.0662768,0.0869182,0.388498,0.235905,0.208028,0.779917,0.208946,0.170512,0.411223,0.910956,0.672703,0.8249,0.274554,0.789446,0.208155,0.992193,0.19859,0.327798,0.842924,0.123666,0.399243,0.0649055,0.593246,0.381706,0.94273,0.34455,0.0131068,0.699038,0.968722,0.0221633,0.30702,0.603034,0.892401,0.649006,0.650398,0.800915,0.32716,0.284603,0.415658,0.110322,0.401571,0.864819,0.740565,0.972837,0.0675803,0.466014,0.544199,0.400841,0.148646,0.631814,0.334546,0.18939,0.943828,0.10621,0.0890366,0.665994,0.76639,0.848952,0.883521,0.53447,0.133671,0.18294,0.568481,0.0943543,0.644446,0.752446,0.379279,0.986987,0.0445753,0.956364,0.149408,0.146398,0.132461,0.913659,0.695839,0.776599,0.424969,0.0657276,0.518104,0.145569,0.861564,0.0237999,0.348522,0.646235,0.256416,0.639547,0.457272,0.961024,0.578246,0.282124,0.451615,0.397729,0.0408087,0.0193127,0.961204,0.679816,0.750614,0.936004,0.00749207,0.263049,0.966482,0.00798631,0.22843,0.725829,0.590759,0.0621968,0.664969,0.750576,0.851944,0.317418,0.319661,0.30059,0.805416,0.0961018,0.701574,0.815559,0.550974,0.626181,0.797561,0.733813,0.138004,0.262703,0.0863386,0.590551,0.699653,0.316427,0.808416,0.473416,0.360999,0.636517,0.0392707,0.950871,0.339351,0.218718,0.972876,0.949373,0.112703,0.222679,0.464466,0.266522,0.23279,0.320079,0.0477015,0.285547,0.725739,0.601203,0.674438,0.741308,0.937753,0.120393,0.43447,0.856484,0.480564,0.350938,0.702388,0.0594313,0.422609,0.333358,0.85479,0.318313,0.0851387,0.981642,0.22923,0.816577,0.572941,0.265097,0.466777,0.324362,0.698892,0.451802,0.689598,0.217373,0.124437,0.250536,0.665177,0.422329,0.701806,0.463255,0.547286,0.0173402,0.641292,0.389663,0.223338,0.526045,0.224532,0.544003,0.75346,0.338268,0.423258,0.657955,0.477796,0.946123,0.159147,0.56829,0.759427,0.163622,0.889673,0.543908,0.101534,0.0295629,0.923887,0.554501,0.342595,0.172385,0.126962,0.332673,0.411862,0.445457,0.180377,0.0586972,0.236415,0.537672,0.911224,0.153762,0.969989,0.503562,0.375061,0.956115,0.441906,0.0616699,0.594975,0.848555,0.0884966,0.189918,0.209667,0.972951,0.780609,0.744129,0.00453889,0.894665,0.158716,0.55065,0.0824463,0.49253,0.214575,0.145576,0.159851,0.903221,0.138311,0.815695,0.236088,0.770768,0.706069,0.559237,0.221722,0.878109,0.887168,0.0425146,0.521243,0.062994,0.123236,0.276672,0.507967,0.0771469,0.433505,0.615111,0.0443937,0.758902,0.0387064,0.332361,0.414943,0.767768,0.693266,0.315073,0.0611771,0.681933,0.0329615,0.761005,0.319986,0.356996,0.786701,0.377373,0.805234,0.19299,0.746068,0.672327,0.201176,0.319013,0.93082,0.748727,0.791412,0.808955,0.680008,0.727724,0.449166,0.432988,0.754803,0.858666,0.416432,0.171019,0.859981,0.859983,0.0748266,0.192982,0.164653,0.7265,0.490627,0.728826,0.727239,0.235392,0.490515,0.582853,0.573245,0.566414,0.382455,0.843792,0.426123,0.640547,0.40481,0.755217,0.14291,0.534468,0.2281,0.56742,0.739428,0.945455,0.434359,0.793127,0.70928,0.358292,0.633712,0.706054,0.746434,0.120468,0.38507,0.437354,0.940091,0.801435,0.326248,0.813269,0.591745,0.392583,0.954158,0.50069,0.345045,0.388967,0.394387,0.379814,0.555378,0.940649,0.844981,0.713575,0.612454,0.885097,0.0800877,0.929264,0.786843,0.410624,0.801774,0.435235,0.739566,0.00500393,0.681007,0.839571,0.524667,0.306122,0.605761,0.876436,0.605507,0.564668,0.898968,0.755256,0.0389602,0.621615,0.219243,0.393705,0.60114,0.842055,0.271855,0.658017,0.706297,0.215973,0.898554,0.483571,0.0664435,0.996958,0.784517,0.898605,0.833472,0.827939,0.535702,0.51102,0.244531,0.981001,0.654968,0.137592,0.198219,0.532301,0.288712,0.0139263,0.240136,0.308674,0.69153,0.502995,0.901495,0.869991,0.688446,0.290365,0.592779,0.119344,0.523679,0.421534,0.303198,0.00505042,0.376099,0.110301,0.883862,0.411793,0.654977,0.925017,0.549335,0.700622,0.408161,0.480335,0.924647,0.203079,0.648794,0.685788,0.267018,0.777724,0.503109,0.597865,0.757595,0.122525,0.160849,0.475385,0.351819,0.799585,0.501066,0.0439944,0.268542,0.942894,0.798311,0.989504,0.0524584,0.46465,0.4131,0.722495,0.147064,0.739394,0.471023,0.951095,0.559212,0.93811,0.788579,0.91756,0.142427,0.393604,0.16494,0.981771,0.135329,0.908996,0.162498,0.986639,0.291699,0.864827,0.288941,0.0374812,0.416357,0.379843,0.808429,0.759611,0.32757,0.404578,0.558643,0.601937,0.853469,0.225756,0.762689,0.844854,0.315915,0.718834,0.530943,0.155545,0.418366,0.512732,0.678192,0.407432,0.738229,0.848176,0.0233973,0.310358,0.30346,0.00697064,0.9207,0.52596,0.689716,0.43698,0.174078,0.387128,0.202849,0.97669,0.970369,0.909839,0.0871801,0.464659,0.0411308,0.459111,0.141168,0.0154929,0.255404,0.326494,0.804118,0.10308,0.263847,0.442641,0.236061,0.148477,0.772841,0.630795,0.348159,0.584355,0.81499,0.229304,0.709619,0.943228,0.611451,0.664046,0.662332,0.440814,0.254555,0.937727,0.31501,0.45856,0.847234,0.919931,0.636063,0.190464,0.853088,0.855232,0.442025,0.736613,0.553513,0.367271,0.719954,0.90337,0.0853812,0.951594,0.676262,0.23202,0.450606,0.710316,0.539659,0.686779,0.283388,0.730652,0.384457,0.107009,0.931597,0.450096,0.404018,0.655285,0.947698,0.109273,0.706458,0.531864,0.702673,0.774139,0.630109,0.107615,0.493537,0.00744665,0.0169032,0.245502,0.137469,0.321327,0.995598,0.0134479,0.355381,0.57081,0.569822,0.856139,0.761632,0.987292,0.631119,0.707242,0.156632,0.1646,0.527238,0.66231,0.698085,0.293174,0.167065,0.359551,0.816637,0.224924,0.785609,0.32938,0.155364,0.830611,0.250774,0.477861,0.454952,0.326371,0.165823,0.266879,0.47828,0.605785,0.67075,0.0170417,0.70036,0.866885,0.610055,0.0763274,0.883734,0.912682,0.382689,0.994097,0.604018,0.399686,0.909848,0.780342,0.371919,0.488596,0.579921,0.620448,0.211491,0.850005,0.591531,0.0409483,0.896053,0.342472,0.657899,0.740695,0.963131,0.103606,0.0365623,0.78343,0.252367,0.758668,0.705376,0.0520706,0.616337,0.131554,0.255802,0.0343689,0.0697823,0.679904,0.934863,0.808259,0.160683,0.826498,0.314304,0.0516803,0.907682,0.543652,0.764582,0.288243,0.616707,0.207188,0.966216,0.564024,0.243625,0.892538,0.481029,0.136377,0.939205,0.773225,0.638938,0.104993,0.01836,0.918214,0.636219,0.0674706,0.321672,0.353002,0.939683,0.846747,0.881474,0.687696,0.781672,0.203916,0.525891,0.274563,0.739484,0.764131,0.680421,0.93268,0.480221,0.649456,0.954209,0.949385,0.139355,0.86639,0.906599,0.701644,0.335777,0.478883,0.196889,0.331783,0.943204,0.753805,0.802208,0.715826,0.62283,0.856995,0.259417,0.354857,0.308198,0.490717,0.89752,0.122523,0.110467,0.969869,0.293361,0.900692,0.0557928,0.0767025,0.0782055,0.59418,0.525459,0.179189,0.249061,0.646518,0.0597259,0.876113,0.593494,0.792052,0.747185,0.140781,0.529291,0.503992,0.785634,0.329515,0.82146,0.282064,0.00950193,0.705641,0.173802,0.926682,0.881149,0.11026,0.000212252,0.28679,0.366296,0.947789,0.867658,0.201289,0.156503,0.535773,0.238292,0.879284,0.455693,0.300103,0.044956,0.368384,0.444021,0.526537,0.37804,0.59359,0.811352,0.883069,0.970876,0.808568,0.760279,0.269445,0.668499,0.600334,0.489816,0.929151,0.481192,0.707667,0.512325,0.176074,0.269565,0.668184,0.706672,0.878844,0.0467787,0.47415,0.727323,0.381031,0.737381,0.773796,0.683872,0.0860726,0.0553364,0.640833,0.785378,0.657099,0.185492,0.94686,0.859164,0.401322,0.759297,0.734822,0.257634,0.950293,0.84002,0.674793,0.718913,0.729296,0.178255,0.297356,0.856363,0.152066,|0.644323,0.523669,0.820967,0.36159,0.500642,0.848133,0.768937,0.973014,0.71107,0.524494,0.288371,0.185949,0.591858,0.132065,0.242526,0.495787,0.139904,0.0971688,0.449027,0.947412,0.0107985,0.759366,0.482614,0.249718,0.897254,0.472491,0.702087,0.724804,0.209491,0.633503,0.411188,0.577919,0.222973,0.945578,0.531952,0.614825,0.28385,0.318999,0.0151854,0.831345,0.0663129,0.941834,0.699686,0.758587,0.46785,0.249443,0.74965,0.351713,0.0825869,0.597392,0.404827,0.205301,0.197372,0.679529,0.870888,0.159362,0.257353,0.0294665,0.130809,0.40627,0.14026,0.920123,0.251576,0.620264,0.221739,0.0949762,0.0922834,0.336625,0.0787886,0.49273,0.0768121,0.178374,0.570274,0.551446,0.501747,0.669959,0.325993,0.121043,0.0150025,0.332853,0.172879,0.817589,0.306434,0.30496,0.773277,0.777712,0.453211,0.74233,0.498525,0.259364,0.203313,0.479902,0.786817,0.750373,0.374438,0.959073,0.523765,0.700019,0.32305,0.497495,0.833839,0.57102,0.917011,0.594468,0.496851,0.115011,0.629864,0.937521,0.200678,0.481281,0.565427,0.721439,0.666907,0.918139,0.677774,0.735511,0.851693,0.50187,0.894365,0.0655466,0.14613,0.282804,0.833521,0.353279,0.79937,0.03637,0.860536,0.377539,0.12094,0.0289093,0.545906,0.487868,0.923816,0.660534,0.707998,0.119622,0.134207,0.442633,0.221011,0.208718,0.111746,0.958773,0.176155,0.697687,0.935498,0.927915,0.913573,0.597746,0.726913,0.723267,0.591602,0.417257,0.0128057,0.991955,0.432487,0.764526,0.329798,0.0563147,0.0506327,0.159156,0.292323,0.222485,0.342313,0.662676,0.538739,0.122074,0.939104,0.170612,0.514984,0.408341,0.0882438,0.231599,0.138606,0.936114,0.523035,0.971985,0.00712168,0.718908,0.707708,0.662189,0.491634,0.443973,0.734546,0.474624,0.874876,0.732858,0.845392,0.211956,0.450985,0.041356,0.154729,0.76589,0.150552,0.250697,0.29936,0.192707,0.557743,0.98626,0.291773,0.283239,0.504015,0.607497,0.972853,0.471038,0.28161,0.403673,0.185252,0.261013,0.296017,0.441128,0.678881,0.116887,0.902471,0.367864,0.594958,0.818934,0.489726,0.784642,0.187873,0.600744,0.923624,0.17466,0.124636,0.377652,0.66664,0.778109,0.863241,0.495909,0.563101,0.927837,0.999291,0.409519,0.787695,0.470688,0.132013,0.861681,0.759447,0.0200745,0.816817,0.54771,0.283257,0.470756,0.688722,0.424652,0.0019291,0.0747574,0.415069,0.96344,0.939206,0.563072,0.178652,0.089816,0.961673,0.391581,0.337276,0.543087,0.460568,0.18829,0.172625,0.200251,0.812235,0.641607,0.989406,0.392658,0.909506,0.290499,0.641093,0.291535,0.744647,0.620925,0.72916,0.863141,0.356857,0.103489,0.377396,0.646936,0.811507,0.846738,0.0983632,0.960922,0.423651,0.284134,0.668308,0.709054,0.333396,0.43952,0.840721,0.940337,0.658571,0.485332,0.948258,0.213844,0.615191,0.194882,0.930665,0.435359,0.0262699,0.365496,0.583521,0.968006,0.704781,0.865045,0.743051,0.997097,0.0745054,0.934764,0.231645,0.452272,0.127407,0.557655,0.867295,0.965641,0.167749,0.385147,0.188234,0.0753434,0.735802,0.659491,0.0290138,0.697982,0.83487,0.571599,0.942611,0.897096,0.496089,0.634946,0.406453,0.472069,0.043317,0.86207,0.967315,0.0521667,0.951159,0.0995452,0.169068,0.429588,0.514395,0.431211,0.687214,0.89444,0.318511,0.800632,0.811242,0.930202,0.161423,0.997341,0.31559,0.816662,0.30834,0.970256,0.645182,0.944189,0.326861,0.710548,0.552059,0.968844,0.243165,0.191904,0.00854325,0.317826,0.554151,0.421557,0.978455,0.237756,0.953416,0.461004,0.944522,0.945217,0.483216,0.748378,0.847513,0.96357,0.996335,0.123458,0.107109,0.00169474,0.346293,0.698017,0.226648,0.339072,0.589038,0.651661,0.754881,0.171276,0.897122,0.900577,0.928162,0.211569,0.322627,0.564439,0.75314,0.451705,0.496415,0.166707,0.857214,0.371759,0.324807,0.441154,0.297154,0.845979,0.742895,0.952554,0.922534,0.355709,0.675284,0.774318,0.195303,0.725808,0.985005,0.56609,0.976339,0.174461,0.837494,0.887485,0.49052,0.147179,0.385548,0.504302,0.401171,0.552316,0.230976,0.67951,0.0135378,0.84829,0.59392,0.296423,0.457399,0.136434,0.061346,0.929365,0.424201,0.078742,0.719114,0.328837,0.284404,0.559074,0.879691,0.123689,0.601731,0.686483,0.435886,0.90452,0.283901,0.126351,0.597074,0.211152,0.88276,0.608399,0.76411,0.494854,0.650205,0.0915101,0.918409,0.749268,0.513685,0.0886373,0.933881,0.824357,0.806472,0.717121,0.977613,0.955165,0.647171,0.0693233,0.127844,0.89545,0.154567,0.459678,0.227369,0.965074,0.391841,0.978651,0.611302,0.710962,0.922872,0.50192,0.428003,0.702938,0.486675,0.955155,0.0353997,0.420685,0.409566,0.0559732,0.908524,0.282884,0.906092,0.795633,0.948181,0.425167,0.668876,0.814065,0.898499,0.121991,0.548966,0.259934,0.483149,0.735399,0.719885,0.777455,0.559363,0.0899163,0.36322,0.699089,0.877059,0.0374499,0.948238,0.458379,0.746746,0.679528,0.137697,0.204503,0.77217,0.6088,0.575674,0.678729,0.755351,0.808689,0.425624,0.545045,0.114161,0.0298177,0.668939,0.631666,0.117284,0.397045,0.274033,0.249773,0.234306,0.0401168,0.297763,0.989761,0.753918,0.803332,0.0122816,0.315788,0.326043,0.534394,0.228501,0.21564,0.976963,0.673126,0.341523,0.656828,0.200034,0.444032,0.946982,0.886994,0.935838,0.0721698,0.300646,0.830255,0.830842,0.763022,0.254831,0.779007,0.492824,0.0390231,0.0231327,0.269781,0.801597,0.86147,0.592777,0.784532,0.697245,0.612279,0.808783,0.634247,0.758533,0.103157,0.150263,0.612928,0.0694665,0.948045,0.0949001,0.839052,0.264288,0.483557,0.252529,0.469938,0.356318,0.760979,0.759521,0.0145296,0.0451121,0.588122,0.288411,0.640145,0.726664,0.132014,0.611356,0.494849,0.390284,0.654104,0.010933,0.0959838,0.745065,0.584986,0.125197,0.75226,0.246748,0.528321,0.490091,0.913488,0.0194556,0.275813,0.540425,0.975391,0.672293,0.606367,0.227806,0.990668,0.700133,0.173176,0.404162,0.666122,0.87043,0.0573047,0.861939,0.192926,0.851506,0.168614,0.235062,0.953803,0.374646,0.146812,0.71503,0.292942,0.979582,0.886741,0.918518,0.274231,0.262384,0.0927367,0.164835,0.524233,0.908997,0.172353,0.178649,0.0534467,0.761594,0.073158,0.928793,0.42968,0.0305032,0.979829,0.0211582,0.514197,0.575911,0.0977986,0.0390106,0.657553,0.302863,0.908639,0.997471,0.154939,0.132645,0.698096,0.081057,0.0965593,0.278255,0.753348,0.0354527,0.133512,0.446596,0.694121,0.643432,0.849191,0.265279,0.482881,0.333146,0.456048,0.344583,0.473816,0.745247,0.513535,0.342695,0.0909675,0.990569,0.894618,0.794101,0.803028,0.659886,0.20943,0.0881843,0.881099,0.512506,0.27127,0.51931,0.903149,0.0450635,0.00400871,0.528272,0.523122,0.877127,0.754189,0.992165,0.577859,0.680904,0.0874853,0.834607,0.885958,0.208768,0.561732,0.292886,0.604098,0.635812,0.10157,0.579898,0.471821,0.951937,0.399632,0.972035,0.526933,0.610801,0.993644,0.0272949,0.360839,0.757129,0.879071,0.526997,0.0487403,0.45286,0.0669763,0.365041,0.766958,0.58831,0.533612,0.763295,0.921786,0.924828,0.254174,0.118387,0.448071,0.672173,0.800391,0.046677,0.530646,0.0213842,0.0485173,0.992086,0.531491,0.981381,0.106339,0.793474,0.119282,0.880405,0.268798,0.199317,0.330413,0.0920774,0.824895,0.436721,0.0374472,0.153351,0.892722,0.704471,0.523841,0.102013,0.21018,0.313348,0.642417,0.78196,0.858251,0.394905,0.494764,0.469766,0.659253,0.586657,0.0817517,0.0939959,0.142743,0.547216,0.549738,0.646375,0.932522,0.0785855,0.710485,0.416641,0.733941,0.604117,0.270595,0.145463,0.461006,0.818317,0.0151814,0.888796,0.14209,0.435039,0.831211,0.178194,0.102776,0.615293,0.836721,0.568434,0.4275,0.677067,0.297841,0.679002,0.926804,0.542316,0.310954,0.482583,0.844123,0.951088,0.51202,0.331999,0.251328,0.277132,0.91272,0.829709,0.375707,0.113671,0.514583,0.960434,0.177016,0.93265,0.820166,0.602454,0.12642,0.37788,0.381236,0.469119,0.318777,0.183661,0.114806,0.583856,0.938245,0.0717511,0.524557,0.882609,0.747082,0.233007,0.646901,0.413902,0.981274,0.943778,0.233336,0.862438,0.828499,0.422209,0.861476,0.830349,0.0898112,0.966072,0.133181,0.143728,0.00297672,0.503933,0.742877,0.704273,0.59538,0.374001,0.232483,0.0946909,0.0598913,0.801602,0.435966,0.164002,0.224582,0.918404,0.804556,0.0307189,0.243984,0.23671,0.378672,0.6942,0.829079,0.230704,0.49613,0.302176,0.579111,0.870922,0.133316,0.917271,0.757343,0.666461,0.340143,0.278667,0.630543,0.939807,0.444041,0.314319,0.304342,0.445513,0.382345,0.119399,0.366866,0.963986,0.312356,0.937004,0.971856,0.849899,0.310757,0.264271,0.648526,0.226893,0.0550646,0.744163,0.824287,0.984666,0.868361,0.212488,0.999331,0.719446,0.144673,0.0394143,0.503553,0.573911,0.459999,0.607181,0.126278,0.852875,0.896125,0.716142,0.5761,0.340062,0.331732,0.707564,0.56952,0.520192,0.611719,0.0083223,0.80335,0.877753,0.370795,0.0279675,0.082577,0.70397,0.625238,0.760765,0.84923,0.947459,0.10682,0.622105,0.756235,0.746275,0.905268,0.274411,0.373452,0.406328,0.837213,0.938984,0.46834,0.586192,0.933985,0.449653,0.42029,0.452848,0.239948,0.857361,0.254725,0.471326,0.36966,0.96627,0.769466,0.634906,0.206544,0.942295,0.970025,0.168479,0.775833,0.0737075,0.139688,0.204545,0.484451,0.341842,0.150058,0.925739,0.709225,0.981935,0.537012,0.18982,0.162349,0.686892,0.650396,0.626091,0.320088,0.0263005,0.97854,0.165542,0.502742,0.666525,0.868941,0.924062,0.0985481,0.0191746,0.497513,0.691908,0.24726,0.669671,0.816636,0.0174282,0.358603,0.0308799,0.000573337,0.440491,0.314389,0.166256,0.257282,|0.251904,0.192473,0.876682,0.872942,0.259347,0.958637,0.463634,0.156027,0.0871142,0.342686,0.648129,0.477297,0.809629,0.112428,0.524281,0.46709,0.64972,0.057642,0.886729,0.410649,0.483885,0.517082,0.330244,0.698755,0.394928,0.502511,0.506265,0.920523,0.549936,0.0172785,0.741204,0.413493,0.754776,0.259427,0.698314,0.71102,0.945258,0.912398,0.77011,0.473088,0.389793,0.451126,0.994467,0.680325,0.318815,0.486557,0.188103,0.279445,0.0594847,0.481983,0.74694,0.685237,0.122573,0.865007,0.554919,0.116426,0.0772706,0.339305,0.911573,0.797704,0.00896829,0.0438976,0.390049,0.364364,0.0598173,0.274556,0.520025,0.492516,0.64364,0.521451,0.0854834,0.106592,0.386336,0.924427,0.830135,0.891425,0.434139,0.479881,0.845905,0.146272,0.321696,0.378599,0.903444,0.899286,0.278931,0.500253,0.886554,0.184029,0.767737,0.749108,0.254898,0.742363,0.596817,0.74172,0.716208,0.851056,0.0986975,0.21194,0.285574,0.949965,0.741184,0.459117,0.696968,0.678581,0.8366,0.0448467,0.215013,0.0346678,0.724628,0.901252,0.437752,0.685891,0.652147,0.765713,0.729651,0.309334,0.611186,0.501105,0.308426,0.946354,0.993538,0.0123873,0.548547,0.933221,0.659702,0.285525,0.959489,0.759558,0.663663,0.495382,0.236855,0.206619,0.540177,0.757101,0.141418,0.119884,0.766114,0.203057,0.346334,0.265025,0.0229383,0.954519,0.404434,0.81324,0.267211,0.111293,0.481454,0.453624,0.696072,0.68263,0.375361,0.539425,0.48165,0.641386,0.478628,0.820711,0.692629,0.557116,0.637197,0.225964,0.567215,0.248368,0.874155,0.786963,0.556209,0.111425,0.268862,0.841138,0.0269439,0.761326,0.350114,0.226247,0.111321,0.0226076,0.6376,0.746975,0.241514,0.920564,0.594227,0.143469,0.0797337,0.517485,0.10186,0.498895,0.562301,0.323948,0.530821,0.847522,0.62406,0.912373,0.825853,0.481215,0.289993,0.210543,0.500026,0.605943,0.106171,0.513758,0.820326,0.367872,0.559867,0.15016,0.282104,0.219885,0.837794,0.811498,0.583794,0.371604,0.149719,0.499268,0.28838,0.925122,0.534812,0.647752,0.113597,0.911076,0.477347,0.596654,0.817898,0.174791,0.738379,0.854057,0.137548,0.810777,0.9019,0.725886,0.931875,0.296576,0.617039,0.255148,0.473095,0.273423,0.0997643,0.728723,0.426218,0.335249,0.829046,0.565976,0.772734,0.554196,0.449435,0.165292,0.281386,0.812039,0.965261,0.853813,0.389605,0.841099,0.371677,0.641742,0.15056,0.499944,0.122679,0.958361,0.34401,0.573947,0.573548,0.829694,0.247666,0.915364,0.286596,0.566043,0.478106,0.413485,0.712191,0.247001,0.735342,0.913742,0.24612,0.769451,0.837976,0.160242,0.625134,0.433929,0.772161,0.665719,0.206126,0.427074,0.733849,0.388806,0.637565,0.730694,0.730497,0.457188,0.435689,0.0682049,0.228535,0.851913,0.871799,0.666465,0.0998675,0.742937,0.768774,0.597246,0.587198,0.420865,0.0792755,0.573753,0.211878,0.0216817,0.445878,0.664222,0.949862,0.148001,0.424677,0.570587,0.593321,0.956501,0.192969,0.539995,0.161136,0.230294,0.210191,0.217486,0.232051,0.309478,0.23257,0.362008,0.637845,0.398254,0.968657,0.210973,0.820063,0.157868,0.797044,0.654945,0.822805,0.513432,0.746827,0.60602,0.771114,0.599927,0.423733,0.106571,0.580889,0.648505,0.734461,0.236802,0.185745,0.629715,0.924952,0.0141435,0.278024,0.914766,0.666903,0.79989,0.758083,0.201818,0.540455,0.860978,0.383632,0.13212,0.585783,0.0469121,0.891798,0.00413495,0.113792,0.00164914,0.876363,0.256691,0.650181,0.965149,0.0236533,0.447857,0.729106,0.490612,0.0986078,0.278097,0.724831,0.827213,0.618869,0.209029,0.407192,0.918972,0.350905,0.33456,0.815102,0.427212,0.408578,0.196428,0.17257,0.716806,0.970188,0.531405,0.0295513,0.458383,0.91941,0.666614,0.247857,0.0706217,0.190181,0.998505,0.582148,0.949032,0.896805,0.499638,0.788128,0.717747,0.137274,0.298451,0.00547624,0.927072,0.23583,0.841201,0.139046,0.467029,0.527546,0.572166,0.914424,0.00375056,0.632953,0.14714,0.815887,0.198482,0.382892,0.151165,0.547474,0.877843,0.876581,0.4229,0.944776,0.455066,0.717874,0.80211,0.429701,0.310842,0.931342,0.0967719,0.54243,0.882588,0.00892162,0.831266,0.834373,0.434168,0.98164,0.0474941,0.0098716,0.369182,0.232262,0.740274,0.124645,0.188187,0.334188,0.219181,0.304012,0.818555,0.0528252,0.728561,0.442935,0.972835,0.379616,0.203924,0.965651,0.525234,0.950725,0.11732,0.715594,0.248137,0.30562,0.169117,0.964972,0.286134,0.921225,0.088201,0.481976,0.120429,0.695484,0.95608,0.86973,0.246943,0.541989,0.272665,0.062181,0.73129,0.236075,0.376193,0.878891,0.0481693,0.364048,0.126345,0.966549,0.651771,0.500941,0.0274956,0.0835246,0.85367,0.733476,0.455816,0.679244,0.4968,0.517683,0.613366,0.839978,0.0844216,0.546247,0.302483,0.308514,0.525376,0.253657,0.622576,0.292624,0.546459,0.781196,0.838538,0.00784904,0.36844,0.114949,0.652028,0.889059,0.995719,0.524429,0.25125,0.957929,0.426548,0.722277,0.541648,0.559861,0.226582,0.763888,0.356129,0.902687,0.352693,0.911388,0.394352,0.540597,0.151716,0.507252,0.806935,0.314566,0.156093,0.989554,0.851683,0.321743,0.994413,0.756273,0.689903,0.560152,0.499592,0.00190747,0.284406,0.43045,0.732724,0.603609,0.593524,0.820417,0.0673711,0.388505,0.322861,0.941282,0.567311,0.182531,0.906607,0.508958,0.427987,0.772656,0.493784,0.215859,0.439933,0.441079,0.689328,0.269725,0.703026,0.868347,0.64577,0.37144,0.859899,0.0768602,0.351017,0.917824,0.654386,0.106765,0.701121,0.611448,0.945166,0.986629,0.440735,0.84933,0.584677,0.416237,0.0574489,0.484818,0.742565,0.682003,0.00170791,0.557418,0.178388,0.229255,0.0756907,0.397168,0.676432,0.554123,0.264763,0.863966,0.506335,0.360276,0.812572,0.98906,0.49639,0.461057,0.564236,0.0735507,0.0623773,0.0993278,0.949515,0.255081,0.456388,0.256995,0.374855,0.582458,0.2675,0.771213,0.493772,0.311579,0.815374,0.145174,0.3451,0.350409,0.807747,0.0523896,0.0904083,0.465685,0.170908,0.212223,0.468799,0.295471,0.307399,0.786263,0.150877,0.13806,0.41691,0.45531,0.557883,0.297638,0.223367,0.116923,0.623775,0.787931,0.375614,0.578373,0.537629,0.96997,0.375297,0.0586492,0.325762,0.134717,0.886009,0.0299299,0.471645,0.947758,0.38075,0.918758,0.989059,0.346519,0.69708,0.55698,0.655593,0.736125,0.610097,0.334581,0.635675,0.732143,0.832283,0.0248851,0.695678,0.381661,0.0631565,0.716638,0.773495,0.106636,0.543921,0.26492,0.744318,0.080264,0.194292,0.404202,0.933241,0.442337,0.802909,0.47677,0.57212,0.73186,0.861809,0.15783,0.473717,0.176474,0.881041,0.577964,0.213273,0.995235,0.519593,0.356476,0.60842,0.725882,0.713843,0.770535,0.386197,0.47327,0.945061,0.802302,0.526245,0.519193,0.565635,0.861994,0.554419,0.845043,0.72763,0.21429,0.445224,0.0905991,0.398644,0.635504,0.749204,0.329162,0.0360102,0.298138,0.944453,0.423561,0.207671,0.0305933,0.960165,0.148731,0.214927,0.0555947,0.931298,0.442786,0.91879,0.703026,0.908189,0.740798,0.539368,0.241086,0.523427,0.149377,0.262738,0.232563,0.249234,0.701687,0.89724,0.0193163,0.0226352,0.658471,0.647075,0.193325,0.164658,0.0636962,0.925862,0.923676,0.108749,0.462885,0.361808,0.995881,0.315948,0.232318,0.272199,0.114709,0.464135,0.180512,0.213957,0.168583,0.621238,0.041031,0.776154,0.739129,0.186601,0.685185,0.0912702,0.865991,0.0483722,0.753091,0.113818,0.700875,0.462946,0.242058,0.203266,0.937801,0.363264,0.739154,0.731474,0.95162,0.0651297,0.390642,0.467956,0.85402,0.245857,0.979534,0.712832,0.0651997,0.0872275,0.846757,0.63411,0.216101,0.417272,0.437764,0.838702,0.377628,0.236659,0.16564,0.850624,0.964041,0.286087,0.47982,0.841681,0.551109,0.393615,0.376869,0.975493,0.9077,0.0197065,0.271276,0.934526,0.421522,0.348936,0.541863,0.0476167,0.733057,0.173152,0.561863,0.983159,0.293426,0.0145503,0.960193,0.541057,0.718557,0.737333,0.119356,0.394005,0.967821,0.602669,0.0741198,0.501084,0.668603,0.949154,0.57884,0.819623,0.859946,0.776205,0.0518306,0.695676,0.0639856,0.606995,0.629679,0.198633,0.649497,0.180192,0.434256,0.264747,0.937592,0.286703,0.0829671,0.633767,0.587839,0.364215,0.822974,0.604133,0.319032,0.116508,0.778855,0.493491,0.0812489,0.0105751,0.943979,0.129727,0.570363,0.0754731,0.575424,0.118057,0.513123,0.153745,0.794305,0.420578,0.97756,0.460048,0.136902,0.254031,0.683963,0.420612,0.848743,0.986547,0.0607892,0.861205,0.109357,0.356614,0.434496,0.106094,0.980958,0.443165,0.988213,0.0989509,0.187492,0.305278,0.407249,0.728048,0.531464,0.246714,0.528868,0.723117,0.637986,0.999123,0.00250447,0.848366,0.739297,0.564829,0.214712,0.893689,0.882838,0.134783,0.401284,0.22804,0.302261,0.402348,0.917674,0.604432,0.0584409,0.173787,0.202296,0.020651,0.115129,0.337451,0.106761,0.945206,0.175804,0.102356,0.0579842,0.0285844,0.179376,0.933818,0.0204193,0.406466,0.461238,0.354893,0.929165,0.820884,0.907807,0.965255,0.157848,0.33612,0.196244,0.968898,0.541861,0.0499002,0.1522,0.973457,0.396834,0.680034,0.563365,0.29333,0.819997,0.793117,0.576858,0.250003,0.518074,0.95923,0.831934,0.0448257,0.457216,0.542857,0.649484,0.62104,0.637,0.453858,0.788864,0.776671,0.859639,0.573193,0.795993,0.225612,0.274137,0.365844,0.569502,0.992234,0.74955,0.416756,0.604578,0.590007,0.868956,0.989513,0.913232,0.10528,0.323623,0.671731,0.386079,0.301967,0.928134,0.516469,0.178749,0.699786,0.547848,0.528366,0.602184,0.960044,0.308896,0.735526,0.0928552,0.205095,0.512677,0.132831,0.54448,0.454876,0.118834,0.503537,|0.58599,0.967141,0.255354,0.399711,0.724889,0.0518103,0.949762,0.346989,0.768025,0.631456,0.204716,0.644721,0.478557,0.200873,0.835107,0.595232,0.953594,0.801537,0.502603,0.385537,0.706133,0.345358,0.446151,0.812309,0.0583478,0.846364,0.460353,0.514445,0.571517,0.0337305,0.590964,0.615151,0.295776,0.867368,0.216156,0.312459,0.731921,0.215882,0.00998634,0.269516,0.34491,0.66317,0.231798,0.00846803,0.153866,0.721915,0.191293,0.111927,0.801196,0.0892862,0.623286,0.477272,0.664931,0.889303,0.5792,0.989523,0.301219,0.134041,0.583324,0.574675,0.408737,0.836843,0.688501,0.117957,0.00025785,0.982845,0.252218,0.15305,0.447883,0.734327,0.054797,0.230803,0.400184,0.623779,0.586343,0.896515,0.250971,0.55671,0.60701,0.588255,0.409633,0.837061,0.347014,0.763373,0.0159308,0.171829,0.985828,0.362833,0.664735,0.958118,0.00985134,0.283827,0.204314,0.228808,0.25435,0.497607,0.965285,0.276824,0.11026,0.46447,0.349305,0.00448018,0.0917959,0.506095,0.092528,0.412711,0.103067,0.593447,0.314393,0.395958,0.239389,0.25198,0.240346,0.858553,0.114201,0.116083,0.817537,0.962885,0.0127149,0.00627398,0.181593,0.262332,0.0198242,0.0801495,0.747539,0.523074,0.628722,0.821594,0.376653,0.543268,0.751134,0.520602,0.121455,0.375926,0.0295784,0.232289,0.281711,0.355175,0.96243,0.947645,0.289743,0.908986,0.388247,0.805661,0.1223,0.795307,0.240877,0.622334,0.824108,0.344486,0.335344,0.264715,0.548994,0.708986,0.972935,0.861678,0.705444,0.494579,0.847496,0.922206,0.673115,0.633975,0.575047,0.160891,0.490993,0.626222,0.900294,0.871025,0.0093872,0.965535,0.0632922,0.823808,0.892712,0.526689,0.499169,0.878652,0.37301,0.994491,0.657137,0.796869,0.359203,0.777672,0.930053,0.26547,0.926623,0.710321,0.528837,0.576358,0.945781,0.631356,0.898039,0.665953,0.519533,0.864012,0.395521,0.145205,0.0356601,0.998074,0.611335,0.302296,0.498098,0.206482,0.356878,0.532273,0.282806,0.0879523,0.900664,0.833021,0.187403,0.741107,0.890848,0.750347,0.692086,0.596988,0.906046,0.590185,0.450331,0.366097,0.930132,0.0468349,0.419219,0.409201,0.0135582,0.955486,0.991526,0.189249,0.387015,0.470122,0.134848,0.386937,0.729083,0.869559,0.159957,0.249574,0.225225,0.578295,0.697798,0.505426,0.985378,0.626363,0.25344,0.0470094,0.678626,0.952197,0.342958,0.885818,0.00327069,0.837674,0.993292,0.130646,0.41259,0.992914,0.413141,0.551674,0.134834,0.833384,0.83871,0.743447,0.869436,0.696239,0.476806,0.131974,0.256088,0.954319,0.700814,0.759347,0.267855,0.399151,0.328013,0.505614,0.0633988,0.0312487,0.713835,0.395906,0.239458,0.832754,0.243951,0.314845,0.536085,0.987924,0.101012,0.724388,0.37028,0.355668,0.487329,0.847385,0.949362,0.654917,0.704451,0.703487,0.597552,0.308765,0.0648106,0.0880823,0.345125,0.556045,0.453524,0.80504,0.958451,0.13223,0.992755,0.669465,0.386098,0.914991,0.160425,0.956707,0.0157042,0.864771,0.793645,0.704139,0.276157,0.337463,0.169584,0.173642,0.882,0.855127,0.408373,0.959334,0.0796164,0.476143,0.740598,0.598823,0.0141178,0.25378,0.724786,0.0859555,0.0406976,0.037133,0.915455,0.423968,0.181757,0.161353,0.994429,0.377927,0.526187,0.716944,0.494738,0.0208654,0.431235,0.206947,0.814797,0.367781,0.458851,0.950024,0.928635,0.26635,0.20726,0.0506027,0.186823,0.500295,0.442446,0.822954,0.650503,0.293946,0.366171,0.11491,0.810694,0.615289,0.162591,0.440477,0.370183,0.0200047,0.536966,0.17325,0.96877,0.973119,0.0527745,0.382088,0.915063,0.693086,0.370905,0.283941,0.409272,0.697658,0.644468,0.434786,0.990333,0.340304,0.493325,0.369008,0.0185562,0.920714,0.219429,0.768958,0.984811,0.0315078,0.0137427,0.7017,0.0278323,0.363296,0.827013,0.193807,0.222402,0.0603963,0.187867,0.47648,0.247465,0.505994,0.378352,0.532471,0.612621,0.837146,0.287633,0.622653,0.399188,0.522987,0.205765,0.40782,0.469112,0.270651,0.428287,0.532003,0.88855,0.44097,0.262169,0.577939,0.452189,0.894819,0.325385,0.704141,0.40527,0.959172,0.849551,0.19754,0.583657,0.725732,0.38895,0.479632,0.232901,0.979357,0.399668,0.459648,0.444063,0.891239,0.246906,0.985765,0.170308,0.855176,0.165038,0.917843,0.25104,0.658603,0.25079,0.992281,0.901819,0.546847,0.308325,0.886253,0.969048,0.289854,0.186419,0.593751,0.255238,0.521723,0.484441,0.848923,0.782409,0.231938,0.260716,0.989218,0.170036,0.214741,0.675532,0.426899,0.844678,0.30071,0.589144,0.569636,0.871419,0.0527316,0.0454118,0.565305,0.772203,0.378804,0.24031,0.691611,0.152186,0.24669,0.152228,0.753211,0.995668,0.558383,0.406908,0.237094,0.200366,0.85495,0.689431,0.665463,0.195503,0.101957,0.217524,0.571692,0.420278,0.896697,0.522964,0.956182,0.271753,0.0850117,0.538607,0.0733106,0.481274,0.461681,0.450015,0.522704,0.717277,0.260104,0.386721,0.285468,0.38583,0.431037,0.643976,0.78049,0.582637,0.896167,0.571306,0.0254539,0.366367,0.371483,0.700029,0.608995,0.398054,0.802038,0.211166,0.877853,0.940521,0.450273,0.574692,0.858059,0.690659,0.353206,0.812067,0.146642,0.453975,0.596155,0.836082,0.43412,0.346275,0.518843,0.413167,0.561606,0.949823,0.513226,0.264346,0.620162,0.648842,0.431444,0.788987,0.739205,0.507378,0.197405,0.350169,0.293744,0.548824,0.935317,0.556913,0.659909,0.673724,0.368228,0.682022,0.358801,0.972426,0.441963,0.867804,0.86107,0.582269,0.328648,0.468511,0.278958,0.268934,0.252532,0.00186568,0.912291,0.327586,0.242542,0.193192,0.155866,0.559695,0.00486344,0.208526,0.351573,0.767475,0.981713,0.297758,0.604005,0.630929,0.169853,0.597878,0.39641,0.623835,0.867827,0.761312,0.879523,0.517275,0.667144,0.274749,0.248298,0.508256,0.111872,0.183786,0.787504,0.0915219,0.346157,0.541148,0.43639,0.419534,0.332245,0.8092,0.781856,0.401377,0.567863,0.725843,0.357439,0.295614,0.14208,0.60705,0.271577,0.309676,0.922046,0.91291,0.334656,0.874293,0.133011,0.683985,0.772849,0.164018,0.392327,0.630354,0.550865,0.643471,0.61232,0.871461,0.271911,0.28487,0.259534,0.180668,0.199139,0.94248,0.12882,0.967528,0.460551,0.762724,0.0830498,0.469208,0.712582,0.959475,0.334836,0.57298,0.551238,0.90929,0.801408,0.532034,0.357396,0.797598,0.897623,0.17107,0.778754,0.86937,0.579457,0.395756,0.0350793,0.285328,0.481857,0.541646,0.190167,0.763759,0.547999,0.536782,0.194293,0.597675,0.226028,0.717777,0.345086,0.254876,0.505205,0.755493,0.837701,0.389515,0.372379,0.319354,0.511847,0.224104,0.685805,0.416768,0.926083,0.314575,0.865839,0.782962,0.816068,0.00581259,0.254005,0.595116,0.39349,0.945822,0.996679,0.118445,0.890327,0.487034,0.0784799,0.77662,0.587482,0.91997,0.801571,0.901288,0.900303,0.607545,0.57117,0.493186,0.00467551,0.579742,0.541593,0.608368,0.539757,0.730569,0.860866,0.965236,0.313658,0.814346,0.55979,0.288598,0.194075,0.81885,0.282131,0.436897,0.885868,0.64687,0.136244,0.158082,0.569107,0.259253,0.439163,0.885207,0.00360817,0.17432,0.380949,0.239155,0.703062,0.197023,0.021608,0.42324,0.221031,0.837628,0.086135,0.184867,0.10938,0.955605,0.352397,0.421254,0.323484,0.0977424,0.826008,0.859256,0.739623,0.556001,0.255362,0.183162,0.622707,0.761137,0.950063,0.737525,0.606025,0.920684,0.600176,0.148857,0.703995,0.164893,0.533745,0.0353632,0.999461,0.464451,0.388175,0.946823,0.822671,0.407111,0.131805,0.562432,0.815137,0.992587,0.123801,0.249749,0.570897,0.791664,0.642564,0.911723,0.178046,0.286137,0.704122,0.506985,0.945031,0.160154,0.167679,0.525428,0.876357,0.479604,0.589229,0.428468,0.496361,0.687721,0.778581,0.635682,0.903607,0.964264,0.310691,0.704681,0.552539,0.21774,0.676391,0.131419,0.00487202,0.482154,0.109871,0.993223,0.518,0.278101,0.654662,0.716794,0.499287,0.636913,0.313499,0.788253,0.984671,0.270184,0.0270262,0.486237,0.220664,0.903062,0.641464,0.480756,0.651717,0.00196379,0.723103,0.462186,0.0546858,0.781668,0.97638,0.364682,0.795435,0.0513456,0.517911,0.119536,0.0844514,0.349062,0.43036,0.864473,0.313181,0.823294,0.91821,0.768482,0.162082,0.154049,0.161138,0.221031,0.764524,0.107457,0.594391,0.183264,0.870765,0.923019,0.279905,0.0702284,0.635,0.313875,0.290556,0.942258,0.692958,0.155109,0.347244,0.31996,0.235736,0.176091,0.336158,0.653509,0.740826,0.272309,0.639806,0.314332,0.409406,0.420056,0.649045,0.436639,0.866286,0.726535,0.24096,0.279982,0.408811,0.615971,0.455953,0.469387,0.669801,0.254086,0.0326256,0.842172,0.951598,0.209802,0.585892,0.874753,0.882097,0.594386,0.0553317,0.15188,0.494165,0.973157,0.480414,0.906415,0.846993,0.61998,0.73596,0.370084,0.805671,0.29701,0.518595,0.262666,0.9034,0.765999,0.458068,0.452649,0.955806,0.094693,0.604506,0.508576,0.00880051,0.743166,0.938454,0.594925,0.978747,0.591573,0.518572,0.852821,0.015982,0.046696,0.783994,0.316737,0.698622,0.146617,0.622711,0.664489,0.642205,0.808808,0.257419,0.364542,0.812209,0.204951,0.911261,0.644512,0.194677,0.392912,0.421277,0.750713,0.241871,0.0682769,0.729425,0.572411,0.626339,0.544524,0.552153,0.0594665,0.216177,0.289573,0.758838,0.216778,0.662031,0.440021,0.9899,0.445467,0.128072,0.3779,0.8546,0.184706,0.0846271,0.196826,0.581348,0.294336,0.656863,0.135322,0.88988,0.330212,0.20708,0.683744,0.417712,0.961913,0.446522,0.340692,0.0913196,0.378513,0.384395,0.721605,0.720787,0.403454,0.615469,0.202847,0.573515,0.614518,0.552365,0.746244,0.753747,0.122771,0.706191,0.865527,0.399212,0.618048,0.505057,|0.641081,0.786789,0.126948,0.0947413,0.847176,0.0450735,0.307706,0.923576,0.300175,0.246562,0.884179,0.341526,0.583378,0.794723,0.216806,0.0793889,0.928071,0.0153391,0.439884,0.286372,0.201943,0.68704,0.00502765,0.23064,0.785184,0.592572,0.502775,0.129979,0.456858,0.136925,0.144539,0.170621,0.535857,0.827573,0.31399,0.090452,0.643309,0.746344,0.926166,0.53216,0.646445,0.815704,0.387154,0.932283,0.430784,0.0447254,0.855663,0.187183,0.238823,0.8338,0.300806,0.59902,0.695004,0.561958,0.214257,0.822309,0.809195,0.899267,0.829783,0.176943,0.79373,0.837327,0.988144,0.443295,0.784266,0.27939,0.868316,0.841872,0.308533,0.660359,0.705545,0.781323,0.804249,0.427345,0.219888,0.145365,0.515287,0.0973441,0.145398,0.510473,0.00012517,0.0129028,0.419691,0.454619,0.214085,0.996284,0.936826,0.595532,0.900286,0.222535,0.88624,0.994446,0.672681,0.933424,0.221786,0.217542,0.723498,0.269598,0.908035,0.73061,0.770521,0.489142,0.957211,0.631225,0.798327,0.595832,0.574162,0.377502,0.0939193,0.99264,0.613671,0.186174,0.387692,0.673396,0.955093,0.368053,0.177082,0.963797,0.270371,0.637884,0.527451,0.356577,0.584427,0.191441,0.1501,0.648407,0.970508,0.871097,0.811378,0.639334,0.565605,0.962986,0.0355719,0.65591,0.648159,0.460045,0.771878,0.111582,0.80656,0.685215,0.178063,0.746338,0.854816,0.777215,0.934982,0.460969,0.379934,0.336102,0.314322,0.771962,0.238971,0.0495977,0.2996,0.783261,0.130207,0.514526,0.69573,0.252051,0.456297,0.490416,0.540064,0.080523,0.325761,0.109977,0.0361282,0.505671,0.994009,0.482716,0.374022,0.610851,0.88671,0.53744,0.493505,0.681482,0.539369,0.981565,0.168404,0.686136,0.535389,0.182094,0.166773,0.50071,0.789276,0.87643,0.377446,0.815162,0.0118335,0.480046,0.806444,0.408499,0.362053,0.960936,0.429697,0.808602,0.720352,0.796162,0.119813,0.116442,0.492662,0.400232,0.122391,0.736176,0.487746,0.569077,0.432301,0.608265,0.315331,0.269658,0.615764,0.398091,0.219019,0.599973,0.0187313,0.923127,0.648299,0.333102,0.820837,0.0284116,0.0777245,0.667593,0.388621,0.300343,0.57974,0.305246,0.286074,0.848772,0.26774,0.168557,0.329179,0.56615,0.270375,0.0228774,0.88573,0.269589,0.88634,0.911752,0.716396,0.471868,0.879496,0.483307,0.831049,0.625717,0.412124,0.350402,0.149765,0.669563,0.231327,0.0449966,0.295006,0.844869,0.725932,0.601492,0.108406,0.328126,0.909955,0.156219,0.809271,0.564583,0.944185,0.74734,0.0885041,0.567863,0.900368,0.576078,0.739539,0.0978964,0.686456,0.964709,0.569856,0.902703,0.204008,0.593241,0.970925,0.491945,0.318459,0.934617,0.935734,0.235541,0.304547,0.227945,0.947953,0.141255,0.356594,0.744886,0.6043,0.692573,0.0451433,0.491447,0.246396,0.303672,0.892463,0.252235,0.468151,0.585468,0.675616,0.422196,0.319362,0.341547,0.175401,0.10507,0.918809,0.297693,0.879599,0.568031,0.230503,0.377663,0.898302,0.514125,0.0067662,0.438142,0.130598,0.644308,0.675099,0.580999,0.901885,0.489044,0.261181,0.322662,0.800077,0.147869,0.0443756,0.763151,0.870406,0.264689,0.963786,0.666074,0.17762,0.291974,0.380347,0.700749,0.775397,0.697376,0.332287,0.0265549,0.342735,0.852154,0.953218,0.460099,0.055702,0.753752,0.153243,0.185257,0.199986,0.147141,0.37042,0.181312,0.607059,0.729359,0.389949,0.278975,0.938879,0.20331,0.336909,0.183024,0.0910456,0.642113,0.239683,0.928611,0.275028,0.832107,0.462301,0.463135,0.457757,0.984394,0.678052,0.897498,0.420851,0.0237345,0.199533,0.110782,0.27339,0.625972,0.454135,0.252883,0.812043,0.949939,0.420241,0.226576,0.890258,0.352047,0.171607,0.22583,0.792135,0.398924,0.902108,0.518595,0.167149,0.610043,0.720026,0.388667,0.0456317,0.878901,0.0965358,0.21415,0.607003,0.982414,0.364134,0.464398,0.70065,0.283848,0.707426,0.58818,0.796102,0.0834192,0.539987,0.544362,0.989734,0.902707,0.226582,0.996725,0.0448101,0.144786,0.353561,0.59349,0.0867749,0.274304,0.616545,0.504357,0.379501,0.474885,0.376508,0.059626,0.96343,0.494629,0.654876,0.894795,0.680237,0.517355,0.761579,0.714144,0.99196,0.08001,0.0457876,0.459536,0.631413,0.442297,0.0667625,0.470828,0.801232,0.0472676,0.231993,0.464892,0.996649,0.746532,0.215839,0.486582,0.955001,0.0602381,0.212952,0.0426062,0.211908,0.246882,0.289431,0.746835,0.16838,0.435541,0.0163293,0.4384,0.275958,0.758224,0.523983,0.100089,0.934538,0.865395,0.262561,0.0802987,0.304508,0.0775818,0.390246,0.696792,0.888844,0.181135,0.407516,0.0331214,0.132564,0.483862,0.912669,0.640343,0.0984929,0.718786,0.678151,0.934696,0.0830374,0.856256,0.390312,0.69989,0.529221,0.990984,0.636961,0.780191,0.596623,0.0279937,0.339742,0.920744,0.624851,0.616236,0.276965,0.286174,0.311726,0.102521,0.669013,0.918327,0.680403,0.517913,0.726258,0.617134,0.980232,0.767684,0.553269,0.252202,0.544397,0.414071,0.0298051,0.653968,0.134538,0.715006,0.272159,0.85998,0.108823,0.258873,0.976791,0.598288,0.179077,0.0260724,0.262224,0.258676,0.728135,0.684937,0.665612,0.889732,0.337055,0.835757,0.203029,0.349812,0.00932723,0.113617,0.0342163,0.33057,0.516494,0.917279,0.0999963,0.122308,0.0105631,0.716514,0.348994,0.200168,0.595131,0.821347,0.147831,0.612277,0.396424,0.13319,0.737659,0.280129,0.117567,0.274275,0.284523,0.932596,0.235312,0.867566,0.868637,0.505267,0.40462,0.469,0.225237,0.320879,0.027194,0.737181,0.918769,0.515078,0.47283,0.240219,0.704037,0.876601,0.219246,0.858916,0.759871,0.215859,0.943194,0.64951,0.537384,0.0710708,0.152202,0.770821,0.652793,0.41938,0.773684,0.229775,0.781954,0.968343,0.979381,0.57842,0.0588815,0.125405,0.335047,0.915222,0.632513,0.425418,0.774282,0.98268,0.57301,0.00544918,0.70867,0.315228,0.599856,0.963336,0.941106,0.973957,0.184708,0.388022,0.373659,0.59069,0.194803,0.617508,0.00146657,0.141859,0.872131,0.872028,0.55357,0.184357,0.728068,0.899461,0.0107666,0.827424,0.18707,0.285646,0.0683733,0.95724,0.30268,0.442932,0.6368,0.726703,0.0756506,0.247255,0.598557,0.107768,0.455055,0.875472,0.20682,0.808779,0.773608,0.917034,0.226285,0.970905,0.699507,0.129283,0.331132,0.210581,0.519019,0.120974,0.016418,0.853445,0.173636,0.585816,0.792411,0.680727,0.792889,0.351506,0.111083,0.545667,0.680434,0.61348,0.111256,0.177959,0.29598,0.458901,0.540051,0.0201898,0.321261,0.99795,0.876556,0.560365,0.997409,0.0162025,0.381069,0.670415,0.989556,0.0533955,0.408274,0.395764,0.373457,0.596979,0.480073,0.275405,0.69655,0.907532,0.21317,0.70401,0.793499,0.569418,0.674675,0.660416,0.671081,0.354651,0.315922,0.490886,0.29322,0.591338,0.172741,0.8798,0.229378,0.60594,0.409266,0.763471,0.725396,0.0405806,0.453549,0.751373,0.0551842,0.571137,0.953673,0.730935,0.355855,0.0482742,0.0236833,0.67469,0.960721,0.270181,0.975934,0.897419,0.364362,0.566084,0.613226,0.247263,0.871222,0.730883,0.141595,0.607165,0.0388286,0.492677,0.290443,0.815561,0.687667,0.513012,0.49326,0.661088,0.819116,0.295257,0.273964,0.571616,0.0571303,0.866578,0.55522,0.109705,0.0759413,0.174883,0.457947,0.218252,0.870408,0.635464,0.123732,0.936284,0.859904,0.168595,0.227949,0.475315,0.214963,0.030977,0.449011,0.850589,0.00835627,0.514207,0.669373,0.101143,0.394514,0.490718,0.313637,0.413283,0.316924,0.172057,0.0755991,0.611184,0.587991,0.368055,0.95819,0.778481,0.294524,0.138463,0.654446,0.429876,0.198622,0.319805,0.642895,0.361467,0.29095,0.586607,0.900076,0.893686,0.0478457,0.102796,0.474668,0.0230728,0.0254875,0.680689,0.995492,0.413339,0.0182233,0.0593147,0.627988,0.434167,0.114714,0.682103,0.555525,0.495481,0.889475,0.510224,0.743607,0.495482,0.579454,0.236158,0.55077,0.352043,0.317685,0.409066,0.427257,0.568051,0.815907,0.884404,0.966012,0.666627,0.582605,0.180507,0.773243,0.550983,0.0449584,0.197645,0.334554,0.618724,0.680303,0.706746,0.0825647,0.654778,0.444732,0.273666,0.96126,0.994293,0.228642,0.452978,0.694027,0.898102,0.529144,0.690671,0.295822,0.0959334,0.273447,0.860604,0.293525,0.297821,0.727503,0.176613,0.197949,0.131253,0.109497,0.293634,0.571392,0.0689191,0.232043,0.551868,0.64009,0.585445,0.768036,0.585308,0.0649194,0.593732,0.457704,0.93884,0.00222808,0.324352,0.00387591,0.73059,0.898844,0.150993,0.42608,0.793183,0.618124,0.804541,0.8395,0.674262,0.331829,0.494312,2.65837e-05,0.594436,0.413972,0.313955,0.546442,0.0135851,0.476215,0.142742,0.9921,0.786228,0.778402,0.639121,0.364023,0.147733,0.539526,0.779673,0.354117,0.367111,0.766748,0.834918,0.124096,0.869372,0.599784,0.968989,0.756262,0.99702,0.514872,0.363995,0.624788,0.314961,0.758656,0.67798,0.454771,0.553789,0.193681,0.0967808,0.207624,0.119035,0.783447,0.759264,0.674384,0.73403,0.424404,0.959065,0.275658,0.735031,0.157171,0.970202,0.514789,0.215492,0.36288,0.772198,0.149761,0.318732,0.953774,0.40721,0.180995,0.774142,0.706164,0.56935,0.431503,0.231806,0.767892,0.461997,0.915102,0.42479,0.2002,0.406692,0.986274,0.965153,0.0918349,0.426643,0.303324,0.470737,0.00605655,0.0196304,0.920997,0.923436,0.430068,0.477092,0.581776,0.568903,0.990315,0.252234,0.267278,0.341941,0.908492,0.983257,0.563227,0.0636843,0.0622694,0.722368,0.594089,0.243047,0.800653,0.799875,0.294155,0.725632,0.809767,0.223656,0.249327,0.439228,0.79982,0.14243,0.398449,0.37431,0.00279385,0.190149,0.762138,0.21244,0.258803,0.803183,0.307075,0.108257,0.0210625,0.803674,0.349004,0.760584,0.0568033,0.136286,|0.901023,0.252536,0.244836,0.109233,0.640825,0.416398,0.963881,0.678182,0.862195,0.844688,0.747154,0.747675,0.668179,0.269497,0.958809,0.816885,0.751971,0.720311,0.608281,0.733093,0.0421141,0.167357,0.768654,0.559902,0.951903,0.14531,0.207899,0.695387,0.743518,0.0396647,0.0210281,0.521324,0.485242,0.242974,0.740266,0.569692,0.861499,0.507137,0.703771,0.120824,0.780699,0.0587818,0.450373,0.588889,0.56945,0.990115,0.0137154,0.849682,0.115714,0.0413533,0.273534,0.052123,0.774718,0.337411,0.171973,0.2511,0.747944,0.398205,0.987046,0.47613,0.531149,0.474498,0.446599,0.175121,0.686913,0.858307,0.899309,0.0658365,0.422966,0.987192,0.719646,0.602682,0.69267,0.924314,0.0619012,0.038964,0.331537,0.464986,0.199522,0.909051,0.904193,0.39992,0.452867,0.86367,0.811312,0.588206,0.571335,0.0290617,0.918052,0.806971,0.846906,0.438323,0.295628,0.0349566,0.398512,0.342638,0.718471,0.805167,0.354956,0.630319,0.0639293,0.275406,0.95841,0.502256,0.849242,0.859543,0.616671,0.334715,0.360806,0.607654,0.466245,0.460691,0.524824,0.879237,0.393829,0.52863,0.881066,0.0908743,0.372659,0.30945,0.507776,0.924532,0.718692,0.424364,0.118244,0.300353,0.104778,0.110361,0.43316,0.869149,0.69365,0.736505,0.428107,0.461025,0.618011,0.816803,0.45189,0.193886,0.0664267,0.572405,0.952554,0.705327,0.189899,0.549984,0.649516,0.885989,0.582423,0.775078,0.3554,0.617316,0.339734,0.484052,0.105641,0.95496,0.898008,0.449142,0.774356,0.279432,0.803246,0.650331,0.610077,0.832395,0.525368,0.949989,0.751023,0.224306,0.654041,0.749945,0.861345,0.457196,0.618593,0.236346,0.777971,0.0974397,0.707451,0.670112,0.219228,0.913092,0.287734,0.616782,0.853957,0.139079,0.647262,0.96898,0.596504,0.0973746,0.877504,0.988349,0.378294,0.324814,0.0474256,0.104133,0.79414,0.0915878,0.869688,0.357371,0.232365,0.0265982,0.44068,0.684313,0.4887,0.093841,0.262434,0.885657,0.296337,0.655987,0.364907,0.990165,0.989051,0.21377,0.599184,0.0643147,0.0416162,0.107461,0.0787128,0.252707,0.699452,0.928956,0.600937,0.659817,0.558319,0.65543,0.807638,0.88939,0.200607,0.629015,0.0294865,0.774707,0.0949855,0.672237,0.731369,0.258499,0.0563999,0.0698205,0.978494,0.197206,0.41443,0.559483,0.389133,0.442227,0.791769,0.608905,0.992985,0.50124,0.210976,0.899773,0.295958,0.538039,0.570268,0.28603,0.266535,0.919147,0.638953,0.710151,0.202796,0.782692,0.303609,0.307428,0.452816,0.135699,0.448344,0.601442,0.718072,0.814598,0.419945,0.347198,0.71681,0.0554683,0.859216,0.454664,0.18208,0.960675,0.91757,0.356164,0.692906,0.20848,0.986735,0.554917,0.964883,0.318702,0.305918,0.00666875,0.861873,0.134951,0.721,0.86361,0.904271,0.695417,0.575818,0.032541,0.517818,0.460478,0.0623062,0.577733,0.213986,0.481824,0.00791377,0.360609,0.585473,0.864628,0.375266,0.678697,0.14362,0.621985,0.553156,0.402991,0.639146,0.71509,0.403339,0.545393,0.0211136,0.657821,0.0637616,0.0465766,0.128562,0.592205,0.00842291,0.775465,0.26362,0.959154,0.327505,0.829002,0.923674,0.357771,0.827822,0.335329,0.522449,0.604019,0.982709,0.277886,0.104645,0.469141,0.129504,0.0815716,0.482854,0.745088,0.281463,0.431895,0.41815,0.0132071,0.897654,0.054228,0.204539,0.698855,0.748837,0.81739,0.261422,0.698798,0.936786,0.0356814,0.324899,0.181226,0.251158,0.15301,0.369707,0.265069,0.946351,0.449866,0.00747377,0.234578,0.231021,0.793192,0.941521,0.4943,0.459621,0.470787,0.360044,0.618778,0.94496,0.314434,0.447142,0.713773,0.809004,0.407967,0.568728,0.0448703,0.703481,0.0468492,0.136909,0.504708,0.837733,0.482338,0.208624,0.671641,0.382574,0.232614,0.846562,0.701943,0.851444,0.149622,0.439645,0.780872,0.939301,0.366947,0.0871543,0.943051,0.145201,0.409855,0.982383,0.30417,0.476394,0.212256,0.771097,0.718684,0.361864,0.939751,0.380414,0.798375,0.543631,0.598365,0.363631,0.747146,0.00295126,0.633379,0.535267,0.76161,0.607382,0.148296,0.454637,0.26064,0.723986,0.535013,0.772448,0.63222,0.301795,0.0357032,0.170739,0.778483,0.154719,0.862238,0.15889,0.175153,0.462898,0.548161,0.850342,0.449522,0.423443,0.330129,0.191615,0.980382,0.156747,0.219414,0.662565,0.247486,0.501127,0.991145,0.413616,0.551771,0.0427862,0.41791,0.876093,0.438059,0.501774,0.275773,0.368451,0.145967,0.262557,0.478811,0.45427,0.141954,0.603376,0.959163,0.588624,0.241088,0.589722,0.611946,0.0120691,0.255437,0.152359,0.984207,0.413722,0.0464819,0.412392,0.478847,0.407424,0.648877,0.171215,0.894012,0.115306,0.773612,0.0593769,0.848945,0.0604854,0.438424,0.0643858,0.227102,0.967794,0.243902,0.789101,0.941885,0.0492845,0.335936,0.131717,0.697437,0.172779,0.663376,0.0659847,0.424691,0.764407,0.762399,0.998444,0.686751,0.689456,0.841121,0.575276,0.518651,0.934345,0.678809,0.730252,0.936936,0.244892,0.738153,0.219829,0.341261,0.982123,0.52723,0.394948,0.682768,0.441139,0.987752,0.750277,0.480879,0.0204286,0.517108,0.538781,0.180649,0.0606774,0.211658,0.80758,0.933175,0.150154,0.94341,0.58908,0.139017,0.433448,0.531183,0.353153,0.221482,0.447094,0.73322,0.556274,0.511162,0.727518,0.989992,0.887135,0.116344,0.0406321,0.946468,0.251831,0.572915,0.679188,0.652028,0.324392,0.619331,0.54831,0.0360022,0.446806,0.341907,0.400759,0.534075,0.279326,0.0428871,0.750435,0.330762,0.870637,0.993352,0.415866,0.759832,0.829697,0.813857,0.415378,0.63682,0.147204,0.470838,0.896433,0.806866,0.534129,0.386679,0.72542,0.0707433,0.667423,0.967036,0.910806,0.862839,0.550856,0.412666,0.869342,0.900593,0.380119,0.856984,0.470771,0.915544,0.508474,0.039467,0.696703,0.64719,0.757488,0.402434,0.722867,0.297232,0.628229,0.468503,0.462201,0.13281,0.757261,0.583838,0.283912,0.192649,0.463475,0.447082,0.520285,0.727761,0.340659,0.574439,0.425544,0.981494,0.295505,0.757354,0.54326,0.5626,0.870093,0.149094,0.286877,0.61363,0.335588,0.437293,0.0540286,0.639083,0.617398,0.630817,0.301407,0.243273,0.288561,0.122672,0.530929,0.0181838,0.286308,0.471236,0.51723,0.477388,0.525263,0.338615,0.705736,0.870278,0.359869,0.177412,0.249971,0.356275,0.576112,0.130525,0.193621,0.957589,0.783067,0.558613,0.650695,0.736075,0.993379,0.786023,0.759269,0.0381942,0.0142863,0.236761,0.546171,0.514285,0.926617,0.0507204,0.165123,0.0618088,0.337307,0.390131,0.435838,0.0318839,0.816072,0.354226,0.104188,0.143345,0.803508,0.850124,0.717977,0.0841855,0.631679,0.701828,0.853267,0.28001,0.832611,0.215078,0.877208,0.601294,0.965169,0.335418,0.26828,0.908846,0.132768,0.351771,0.0380778,0.371459,0.0356939,0.390331,0.265784,0.486708,0.239081,0.0862358,0.871077,0.44175,0.453554,0.7658,0.58787,0.0352033,0.987614,0.470848,0.107319,0.560822,0.650392,0.988469,0.246993,0.503263,0.966044,0.474699,0.0939935,0.68046,0.877474,0.511216,0.94515,0.273681,0.148934,0.12332,0.538305,0.671396,0.277144,0.701753,0.684235,0.887523,0.836718,0.0103978,0.341508,0.812874,0.957451,0.469731,0.127863,0.310989,0.313653,0.335408,0.0350468,0.894537,0.539977,0.521382,0.827222,0.491203,0.288665,0.0731066,0.635721,0.443159,0.680622,0.639828,0.194241,0.819954,0.623546,0.940658,0.990475,0.978125,0.808444,0.00934619,0.566134,0.670915,0.907978,0.00778061,0.728756,0.172956,0.463405,0.10162,0.605969,0.614884,0.0825899,0.0583528,0.812274,0.97286,0.377534,0.92248,0.174013,0.196951,0.932088,0.71427,0.787601,0.364906,0.372788,0.12929,0.155514,0.781128,0.63263,0.52581,0.655222,0.198759,0.140934,0.783962,0.172629,0.0270261,0.49336,0.261569,0.377094,0.642475,0.281137,0.880035,0.908539,0.433166,0.396051,0.159368,0.265561,0.266775,0.996632,0.0962736,0.683462,0.316826,0.202308,0.990443,0.231127,0.218228,0.489657,0.885219,0.642209,0.00525206,0.665069,0.701377,0.606761,0.576972,0.253524,0.198141,0.0616927,0.106428,0.518223,0.200283,0.0112507,0.0400253,0.844606,0.848818,0.956634,0.224472,0.948393,0.479356,0.660028,0.0260267,0.0893058,0.269478,0.622327,0.0805752,0.860532,0.770059,0.0605843,0.477003,0.313213,0.587423,0.286239,0.137548,0.695656,0.66262,0.64272,0.0900565,0.815015,0.675354,0.129403,0.63778,0.564625,0.594115,0.656709,0.783406,0.84079,0.550323,0.0407292,0.653828,0.19766,0.104746,0.79832,0.774711,0.0108717,0.357705,0.43238,0.0040164,0.391663,0.752072,0.863346,0.592257,0.687747,0.308216,0.230893,0.35901,0.548716,0.37872,0.625189,0.419658,0.940144,0.733481,0.46984,0.702987,0.534157,0.174002,0.979148,0.16599,0.324963,0.899981,0.386312,0.354944,0.986907,0.52788,0.485453,0.850545,0.669814,0.753293,0.245153,0.142562,0.581349,0.489049,0.306305,0.447984,0.360512,0.741808,0.483027,0.180873,0.510357,0.280762,0.00729102,0.333047,0.378619,0.890853,0.226898,0.879708,0.339451,0.127273,0.879713,0.235566,0.961653,0.803962,0.372327,0.822238,0.85915,0.73451,0.0871192,0.143596,0.161899,0.420769,0.0254681,0.157426,0.604212,0.0669581,0.458455,0.648418,0.683333,0.333516,0.348361,0.797848,0.667732,0.144906,0.298961,0.645225,0.980489,0.841297,0.308251,0.416612,0.582543,0.740665,0.473686,0.718306,0.877538,0.360167,0.0554032,0.0483092,0.324911,0.797844,0.482132,0.205213,0.25309,0.344651,0.517204,0.116514,0.649969,0.633284,0.202422,0.437846,0.875709,0.42711,0.421737,0.480577,0.543596,0.741669,0.18742,0.567269,0.796488,0.0830649,0.0888169,0.385431,0.482888,0.401578,0.545592,0.226823,0.294452,0.157199,0.270689,0.319677,0.66816,0.0245767,0.0634621,0.0404339,|0.158838,0.128902,0.857554,0.831489,0.173263,0.438785,0.954228,0.770792,0.461808,0.316447,0.241418,0.859087,0.0788978,0.530154,0.150693,0.605567,0.887712,0.745041,0.819672,0.959359,0.838563,0.550014,0.762358,0.466508,0.0243104,0.435359,0.817345,0.965401,0.851927,0.488311,0.361598,0.175546,0.0380379,0.13305,0.0565525,0.719342,0.31099,0.397099,0.501613,0.123801,0.962632,0.602801,0.142006,0.991247,0.452526,0.583787,0.150502,0.339091,0.835994,0.806932,0.12516,0.563648,0.624464,0.103275,0.521299,0.949088,0.434402,0.201038,0.333943,0.997124,0.445886,0.983426,0.0701645,0.26274,0.0982397,0.486134,0.737042,0.477239,0.489233,0.266664,0.769092,0.90988,0.375544,0.784194,0.442756,0.749278,0.910418,0.986893,0.325981,0.54166,0.976725,0.905498,0.343409,0.571821,0.198376,0.98924,0.220911,0.972321,0.196275,0.629234,0.0632992,0.676036,0.385113,0.915346,0.507149,0.777379,0.518896,0.140777,0.465868,0.0700355,0.2905,0.544052,0.989112,0.20466,0.0852787,0.714199,0.753902,0.430252,0.780124,0.102397,0.594642,0.820547,0.240692,0.289538,0.718437,0.118151,0.533845,0.591922,0.13425,0.516177,0.0590638,0.378194,0.95748,0.163829,0.933777,0.959549,0.659787,0.66941,0.830291,0.779858,0.614267,0.976512,0.581071,0.8153,0.839615,0.716948,0.477754,0.726841,0.798246,0.43647,0.243292,0.831181,0.667817,0.162804,0.428689,0.104158,0.901406,0.784848,0.548208,0.902432,0.730096,0.29567,0.883917,0.326005,0.106714,0.79159,0.0169772,0.756376,0.141091,0.14404,0.300884,0.42787,0.332431,0.359517,0.89911,0.066141,0.716493,0.60503,0.566551,0.733027,0.243318,0.981129,0.318558,0.768792,0.67993,0.623668,0.954125,0.821935,0.849835,0.585431,0.90613,0.676149,0.0555292,0.142757,0.281034,0.0278976,0.915748,0.707181,0.0786324,0.645917,0.279707,0.684014,0.341593,0.908662,0.166335,0.975838,0.10412,0.27223,0.0519525,0.0151314,0.852602,0.567918,0.324799,0.114301,0.283676,0.319015,0.696802,0.349609,0.724034,0.381355,0.541154,0.0426804,0.134795,0.226172,0.619469,0.337098,0.225518,0.186157,0.401195,0.0864677,0.746511,0.896951,0.445749,0.119565,0.71166,0.780127,0.410779,0.28932,0.867991,0.818729,0.39386,0.244083,0.173702,0.292963,0.0805572,0.466055,0.155524,0.00895578,0.317489,0.414522,0.927793,0.685845,0.909376,0.945885,0.127195,0.273619,0.0712311,0.00606775,0.529639,0.334298,0.18998,0.241912,0.916958,0.356165,0.0144272,0.361592,0.907651,0.100515,0.434503,0.606972,0.00784743,0.938123,0.0213996,0.739451,0.53964,0.47727,0.626641,0.807167,0.00606912,0.832264,0.713829,0.122981,0.39534,0.407506,0.251389,0.688722,0.464377,0.397185,0.500813,0.316459,0.220624,0.149305,0.151389,0.797115,0.156221,0.47113,0.161995,0.0708445,0.38637,0.00796497,0.787608,0.942651,0.0347275,0.664042,0.610471,0.863394,0.258156,0.566854,0.90103,0.986675,0.784984,0.577385,0.318791,0.683111,0.226414,0.209641,0.403477,0.453919,0.419795,0.394863,0.190832,0.849625,0.730255,0.178584,0.946961,0.434182,0.294773,0.39393,0.975822,0.877047,0.901598,0.46574,0.813443,0.0761265,0.761084,0.17037,0.720177,0.0222377,0.831019,0.772061,0.898106,0.649605,0.0528727,0.31342,0.0321683,0.341345,0.623179,0.18687,0.572659,0.960058,0.648732,0.0622954,0.590607,0.302023,0.722443,0.488529,0.246631,0.469469,0.769393,0.453758,0.975885,0.618299,0.246776,0.509124,0.293208,0.0263619,0.34121,0.570398,0.258671,0.168255,0.808927,0.507227,0.0984181,0.988434,0.198533,0.634246,0.17895,0.744647,0.469384,0.564335,0.665132,0.852962,0.737338,0.981256,0.15162,0.685024,0.998561,0.583456,0.0336701,0.988877,0.670733,0.124922,0.228393,0.931547,0.100926,0.245104,0.405544,0.903259,0.799403,0.666646,0.884486,0.0630437,0.803232,0.242225,0.955792,0.418295,0.618745,0.936845,0.518843,0.082828,0.366078,0.484,0.765263,0.508657,0.744189,0.272874,0.0913181,0.392355,0.257558,0.823696,0.316874,0.934789,0.155071,0.00393516,0.288451,0.490713,0.546053,0.118676,0.45072,0.775969,0.673048,0.693826,0.221636,0.19134,0.78936,0.579349,0.796834,0.341302,0.531472,0.326153,0.569661,0.170319,0.650909,0.0666148,0.482758,0.0663717,0.168696,0.212206,0.272386,0.289418,0.850245,0.671906,0.928344,0.480421,0.516667,0.056177,0.328589,0.122967,0.581042,0.423217,0.383539,0.736536,0.0543612,0.543347,0.663812,0.990691,0.487812,0.877939,0.470603,0.489737,0.0182795,0.507679,0.312013,0.0640866,0.53731,0.334256,0.258212,0.99146,0.948144,0.137581,0.790105,0.421527,0.630508,0.348968,0.292242,0.065917,0.334216,0.339414,0.12902,0.0902843,0.815887,0.607326,0.714795,0.0275693,0.417015,0.347491,0.852932,0.592423,0.606658,0.217421,0.862903,0.567287,0.205044,0.734294,0.266779,0.107025,0.262887,0.837405,0.606559,0.549378,0.360564,0.777455,0.564042,0.29235,0.422912,0.0651973,0.98668,0.630845,0.796024,0.787667,0.292192,0.758628,0.266536,0.146349,0.812542,0.423688,0.848228,0.357314,0.0538967,0.433433,0.877728,0.870113,0.308138,0.116866,0.11399,0.588308,0.620551,0.0940799,0.879238,0.707505,0.9561,0.838087,0.479988,0.443013,0.00733835,0.197111,0.398653,0.489545,0.439281,0.143408,0.618485,0.123981,0.386837,0.439675,0.547133,0.378436,0.100484,0.585472,0.663967,0.304181,0.441495,0.114399,0.347342,0.129304,0.294879,0.926859,0.782574,0.558665,0.865103,0.312688,0.516158,0.336688,0.508961,0.286646,0.598435,0.506893,0.896784,0.498219,0.219628,0.213326,0.174272,0.401188,0.97194,0.653214,0.748232,0.264888,0.687613,0.671239,0.5908,0.507168,0.684616,0.140296,0.296136,0.930931,0.483437,0.946243,0.508886,0.309309,0.192573,0.672156,0.21473,0.736122,0.241191,0.551987,0.845903,0.713823,0.276357,0.149999,0.672157,0.081152,0.649094,0.533951,0.601709,0.0132874,0.875114,0.967127,0.692911,0.0788838,0.382751,0.284037,0.51266,0.985492,0.654763,0.60581,0.811269,0.28096,0.112695,0.142037,0.84224,0.15866,0.714973,0.213188,0.237539,0.80655,0.470822,0.949134,0.471915,0.507836,0.319446,0.376024,0.90319,0.695092,0.972817,0.423251,0.728996,0.295765,0.18755,0.665889,0.658125,0.296688,0.487463,0.677692,0.879409,0.675872,0.220808,0.352261,0.158695,0.749965,0.0796687,0.122603,0.264938,0.519805,0.589562,0.700175,0.123603,0.740068,0.457064,0.0648409,0.0334699,0.40036,0.299562,0.625271,0.03232,0.163958,0.888644,0.396005,0.743749,0.556986,0.540443,0.900217,0.605975,0.129142,0.761829,0.504507,0.35918,0.0285528,0.930149,0.352451,0.37061,0.665466,0.616508,0.198285,0.0557908,0.240367,0.648285,0.353609,0.922354,0.869045,0.910053,0.372128,0.702142,0.845563,0.219887,0.0369945,0.0934943,0.970423,0.604942,0.608718,0.638956,0.829647,0.154672,0.57818,0.117346,0.532291,0.548327,0.446777,0.437776,0.271245,0.531851,0.307725,0.564666,0.388569,0.781083,0.950657,0.747681,0.421803,0.301638,0.667394,0.325678,0.0679889,0.192919,0.719264,0.630759,0.609327,0.651958,0.117717,0.0854545,0.894897,0.172754,0.897434,0.22316,0.072979,0.230554,0.660355,0.403154,0.317444,0.296092,0.141499,0.743839,0.21076,0.101059,0.38249,0.566876,0.499603,0.111276,0.719769,0.578677,0.537411,0.428712,0.743509,0.728661,0.662901,0.504273,0.0420534,0.621031,0.421555,0.10687,0.93768,0.837636,0.379035,0.991163,0.182603,0.215505,0.901552,0.187295,0.202839,0.293345,0.190327,0.382608,0.647899,0.292255,0.291018,0.306076,0.751752,0.101128,0.33195,0.372848,0.41003,0.0517588,0.196347,0.531316,0.464177,0.414254,0.263622,0.0892577,0.505143,0.317367,0.738927,0.0626365,0.317375,0.924077,0.0363054,0.480391,0.105984,0.427369,0.724608,0.940415,0.577737,0.590546,0.711044,0.278557,0.524371,0.478893,0.696734,0.104068,0.647117,0.874814,0.0894629,0.504465,0.845161,0.889816,0.302063,0.841349,0.840788,0.17293,0.873556,0.655534,0.676715,0.313853,0.606207,0.158604,0.773914,0.77404,0.926602,0.559092,0.552177,0.957166,0.280496,0.817754,0.157509,0.476971,0.790209,0.172119,0.665842,0.677091,0.785992,0.264861,0.210007,0.00396359,0.0163274,0.235731,0.22431,0.373855,0.734974,0.656734,0.42528,0.481511,0.822265,0.536808,0.554628,0.650589,0.641031,0.369714,0.961612,0.585146,0.484792,0.00581324,0.91706,0.273281,0.489032,0.400181,0.406984,0.141736,0.245597,0.356918,0.902653,0.395231,0.442139,0.575956,0.552431,0.0529851,0.715415,0.0121992,0.992382,0.430868,0.00750494,0.496264,0.998661,0.167202,0.960428,0.114599,0.589151,0.972876,0.107987,0.260365,0.419929,0.0588487,0.718274,0.0299836,0.585653,0.0399324,0.681906,0.679544,0.71237,0.169313,0.638445,0.946709,0.867404,0.466139,0.458731,0.981302,0.229566,0.774093,0.207786,0.493648,0.611729,0.248262,0.525554,0.0176572,0.815969,0.79167,0.142423,0.693138,0.032034,0.705329,0.820433,0.809561,0.431353,0.712011,0.515775,0.620239,0.802296,0.66121,0.968683,0.799499,0.439536,0.410267,0.0119625,0.626305,0.853713,0.909039,0.886662,0.0973312,0.652884,0.477008,0.456746,0.0290311,0.71848,0.983855,0.152378,0.852986,0.867323,0.112638,0.465467,0.286548,0.0343835,0.903991,0.985474,0.0332177,0.173743,0.95365,0.170547,0.127781,0.216992,0.163192,0.331723,0.39122,0.537868,0.620032,0.0264166,0.587621,0.208814,0.71241,0.755792,0.512967,0.78265,0.0525119,0.960225,0.778751,0.015653,0.752178,0.291081,0.0619103,0.273889,0.20794,0.212549,0.339483,0.0882163,0.746718,0.362739,0.0909165,0.302504,0.6723,0.973007,0.358659,0.198375,0.169983,0.389664,0.607089,0.0420156,0.596747,0.947075,0.0297737,0.914398,0.556971,0.155678,0.43222,0.120094,0.67747,0.354605,|0.805567,0.449239,0.513384,0.921954,0.697322,0.0155544,0.839243,0.34027,0.0719905,0.0343421,0.801643,0.357971,0.684594,0.638759,0.536171,0.696289,0.037513,0.648516,0.305402,0.669645,0.979901,0.306452,0.300495,0.805094,0.217072,0.179341,0.31728,0.748595,0.985353,0.543322,0.48732,0.295518,0.519828,0.87284,0.231301,0.644927,0.47949,0.439706,0.638838,0.0768491,0.0601849,0.580672,0.154173,0.881574,0.898117,0.417872,0.0391909,0.766039,0.921031,0.601828,0.676498,0.788079,0.952145,0.992678,0.151196,0.940496,0.445791,0.598432,0.560741,0.788454,0.359825,0.657128,0.463574,0.847272,0.873354,0.663069,0.124149,0.376791,0.727418,0.148878,0.136138,0.218639,0.0491704,0.261469,0.228102,0.9169,0.366976,0.499642,0.128649,0.143081,0.717068,0.246675,0.775252,0.725538,0.699918,0.876913,0.210474,0.849348,0.5186,0.915268,0.748543,0.677756,0.47712,0.600746,0.200772,0.127947,0.73672,0.932208,0.0196487,0.266547,0.871607,0.367206,0.206069,0.18483,0.550666,0.5521,0.938305,0.889018,0.905601,0.643395,0.645922,0.74356,0.992988,0.66077,0.858962,0.438861,0.908941,0.539442,0.777202,0.77464,0.514109,0.11206,0.231851,0.629442,0.80194,0.015118,0.211173,0.16291,0.74245,0.643739,0.340464,0.716895,0.149019,0.837114,0.379642,0.923761,0.59545,0.269174,0.571226,0.808951,0.943007,0.0588012,0.639593,0.291108,0.0819728,0.313109,0.371575,0.546579,0.118863,0.227543,0.770767,0.965682,0.592909,0.414586,0.506518,0.384835,0.06967,0.216834,0.728632,0.279418,0.543323,0.0191517,0.19488,0.18714,0.197798,0.0164688,0.462576,0.409539,0.907602,0.922974,0.245918,0.526568,0.325755,0.980692,0.88447,0.580643,0.913305,0.28732,0.15491,0.168201,0.0386911,0.0940842,0.631129,0.643532,0.500316,0.775037,0.891507,0.979322,0.342169,0.523338,0.0427535,0.569351,0.103719,0.0190669,0.165418,0.831919,0.132814,0.161614,0.434772,0.328208,0.599871,0.24271,0.929821,0.424968,0.99017,0.659239,0.374793,0.74282,0.844594,0.0046466,0.517792,0.53154,0.154072,0.0902205,0.897961,0.221469,0.579681,0.330784,0.463699,0.223908,0.866636,0.143563,0.483981,0.581803,0.886338,0.00800496,0.250254,0.528232,0.0455147,0.0642874,0.657672,0.321451,0.858038,0.0969493,0.0490324,0.121686,0.950888,0.387021,0.274758,0.792375,0.358878,0.215487,0.757227,0.14616,0.667129,0.584922,0.405409,0.38153,0.927649,0.481594,0.7811,0.2327,0.364219,0.327812,0.102912,0.0326971,0.864294,0.914549,0.44825,0.678959,0.882173,0.917906,0.324885,0.109909,0.325935,0.967105,0.472847,0.443706,0.89601,0.773239,0.567419,0.803966,0.21862,0.660047,0.896421,0.787642,0.0618166,0.427465,0.546689,0.600641,0.0104352,0.44517,0.373114,0.61558,0.408177,0.475395,0.985331,0.898918,0.293618,0.889332,0.127477,0.721441,0.878158,0.099065,0.190376,0.441607,0.690903,0.135962,0.0673763,0.706419,0.354385,0.408976,0.870379,0.863252,0.593368,0.390623,0.239011,0.793452,0.409688,0.902789,0.793158,0.369412,0.476103,0.557734,0.936472,0.505704,0.812319,0.190279,0.392798,0.224683,0.833391,0.690237,0.296415,0.95245,0.350516,0.0736497,0.890838,0.0211773,0.137662,0.690738,0.813655,0.135376,0.645455,0.461301,0.414951,0.813533,0.259958,0.596031,0.55485,0.694239,0.689662,0.354314,0.0210544,0.357029,0.750116,0.270339,0.787265,0.0665318,0.13388,0.934382,0.13081,0.53199,0.598431,0.0781012,0.485139,0.46149,0.952441,0.804257,0.617392,0.782648,0.121712,0.500423,0.802646,0.0229391,0.736877,0.673221,0.706416,0.0561267,0.467816,0.608427,0.906933,0.254974,0.542617,0.729753,0.21889,0.654083,0.600927,0.957465,0.271974,0.662777,0.406279,0.024099,0.221052,0.993434,0.182251,0.937594,0.936449,0.431203,0.713493,0.096761,0.533414,0.139525,0.470746,0.673658,0.874749,0.304328,0.749475,0.807536,0.99444,0.386692,0.407445,0.637868,0.739409,0.509251,0.571056,0.820671,0.0666714,0.106991,0.661277,0.177398,0.205398,0.513647,0.391169,0.921359,0.284421,0.462709,0.990641,0.809107,0.978325,0.375687,0.646848,0.416371,0.70565,0.503847,0.0732791,0.355604,0.873343,0.9107,0.269358,0.521381,0.636127,0.502979,0.206024,0.233281,0.67307,0.244512,0.550086,0.894495,0.161863,0.163068,0.435298,0.638013,0.00485224,0.361876,0.0945153,0.55108,0.118576,0.189635,0.17341,0.868569,0.719476,0.978552,0.620452,0.995083,0.964851,0.79731,0.329629,0.457371,0.472059,0.577964,0.479705,0.141401,0.684913,0.812689,0.9228,0.383516,0.190977,0.400944,0.16578,0.96211,0.828631,0.923182,0.569204,0.240386,0.384844,0.990662,0.266816,0.106604,0.518583,0.0699151,0.565051,0.164369,0.588243,0.545607,0.540755,0.186934,0.21865,0.0796466,0.840976,0.743387,0.552603,0.988243,0.866861,0.741794,0.457089,0.62858,0.525365,0.398531,0.13054,0.736122,0.903416,0.192054,0.284195,0.178341,0.862628,0.193232,0.951024,0.423494,0.647695,0.282427,0.460555,0.053426,0.735109,0.132483,0.212942,0.650303,0.665896,0.948699,0.340766,0.487478,0.42328,0.839121,0.510997,0.00227702,0.239359,0.317685,0.169805,0.784642,0.395473,0.635184,0.316204,0.282982,0.836879,0.682769,0.873896,0.536697,0.893159,0.491224,0.222282,0.949772,0.0125515,0.211171,0.743499,0.381771,0.899666,0.105476,0.503683,0.511144,0.484999,0.91703,0.26422,0.497325,0.672694,0.452597,0.361285,0.339192,0.189503,0.820884,0.7512,0.0361381,0.262222,0.470538,0.208285,0.349423,0.956869,0.125759,0.124293,0.0654082,0.454123,0.825562,0.826376,0.515508,0.502179,0.691174,0.665048,0.560915,0.858714,0.259281,0.420994,0.832178,0.830449,0.109446,0.477978,0.799019,0.0865058,0.302954,0.605459,0.417824,0.286788,0.0617288,0.685443,0.0455518,0.63961,0.249188,0.279654,0.26593,0.342355,0.735563,0.808689,0.424966,0.869283,0.302298,0.892144,0.809191,0.315974,0.880996,0.604288,0.732161,0.35265,0.424648,0.0413497,0.86705,0.220106,0.598461,0.610468,0.612997,0.721733,0.209585,0.417154,0.737774,0.370037,0.197768,0.965156,0.632231,0.180126,0.208188,0.733549,0.649139,0.159539,0.981573,0.19693,0.73477,0.228838,0.116307,0.872682,0.0464752,0.509988,0.24196,0.636016,0.0939049,0.760922,0.486258,0.419362,0.623153,0.621117,0.409779,0.742173,0.920663,0.228366,0.0151258,0.389718,0.203835,0.938913,0.16921,0.726084,0.347661,0.782746,0.770596,0.337536,0.319586,0.539988,0.111706,0.265243,0.240682,0.781071,0.907591,0.902185,0.831647,0.584774,0.587565,0.0414076,0.0403464,0.182697,0.137302,0.444494,0.699139,0.382748,0.759373,0.0997054,0.262235,0.74129,0.427666,0.607667,0.473678,0.40432,0.136958,0.253427,0.162107,0.0663985,0.911121,0.26671,0.40002,0.442281,0.0720039,0.486563,0.677481,0.575817,0.935244,0.0866616,0.615401,0.235753,0.0867733,0.014697,0.623456,0.729298,0.599618,0.450898,0.118151,0.410961,0.952323,0.201417,0.989255,0.132219,0.831676,0.225381,0.493577,0.480939,0.464424,0.806647,0.676974,0.845389,0.0564444,0.646761,0.878976,0.348295,0.968649,0.809728,0.653632,0.902287,0.274217,0.0687143,0.733658,0.509719,0.622734,0.0432126,0.420853,0.422974,0.109688,0.650521,0.484873,0.736234,0.0756282,0.201029,0.2221,0.761671,0.758338,0.980946,0.155653,0.0796514,0.791824,0.718287,0.077872,0.657486,0.574437,0.0481654,0.0859733,0.274272,0.400278,0.222231,0.874331,0.665146,0.826274,0.412707,0.208697,0.0484058,0.820025,0.00605565,0.929302,0.499928,0.790915,0.259133,0.134577,0.916766,0.943018,0.350569,0.572164,0.0607699,0.689071,0.808054,0.161929,0.3658,0.389777,0.515192,0.473949,0.281561,0.0792893,0.654953,0.527045,0.324757,0.874935,0.28645,0.163679,0.70019,0.808558,0.746164,0.552431,0.483004,0.366467,0.234415,0.813666,0.966697,0.478368,0.747274,0.10529,0.452268,0.0720996,0.772791,0.666555,0.565389,0.843257,0.153803,0.0826882,0.0644761,0.362898,0.481199,0.225068,0.766625,0.328536,0.274847,0.762686,0.0710185,0.918588,0.79257,0.910748,0.248382,0.0199808,0.60854,0.976117,0.50052,0.895633,0.130903,0.316791,0.405885,0.225774,0.890722,0.421946,0.498141,0.572769,0.249928,0.15421,0.923838,0.513701,0.414745,0.736462,0.442953,0.18614,0.740432,0.580259,0.51256,0.733387,0.202398,0.126936,0.818385,0.088357,0.174944,0.631572,0.0726996,0.278169,0.833364,0.947776,0.874408,0.495466,0.951135,0.662692,0.399291,0.218821,0.258133,0.961417,0.902441,0.197173,0.515132,0.494282,0.897101,0.411788,0.731962,0.812942,0.133401,0.877831,0.551112,0.702025,0.0391671,0.239172,0.388052,0.247786,0.0189648,0.755487,0.00731742,0.880741,0.755661,0.763542,0.327617,0.429444,0.420598,0.531152,0.231937,0.77645,0.926492,0.273511,0.128071,0.701448,0.65051,0.286653,0.623332,0.534851,0.179394,0.382844,0.123627,0.49833,0.652569,0.646074,0.755016,0.770113,0.155536,0.824258,0.469188,0.404158,0.802689,0.168529,0.282678,0.0738156,0.907693,0.143167,0.984111,0.528846,0.184043,0.108695,0.39707,0.465525,0.0312562,0.384611,0.152423,0.63634,0.156057,0.722119,0.976339,0.0975964,0.396642,0.479779,0.0128036,0.218462,0.313172,0.554625,0.177567,0.890242,0.651425,0.0505615,0.850672,0.708769,0.107057,0.281518,0.805668,0.886832,0.458946,0.0560649,0.117697,0.752529,0.682517,0.822171,0.18405,0.062103,0.472651,0.791186,0.530559,0.739748,0.363159,0.258896,0.53573,0.55124,0.166004,0.0311366,0.355075,0.111539,0.11119,0.360509,0.715112,0.639331,0.944348,0.872769,0.39152,0.782472,0.616192,0.34523,0.173613,0.853772,0.244525,0.0691499,0.241722,0.94149,0.462515,0.722633,0.632573,0.935492,0.630557,0.518816,0.222088,0.411135,0.713782,0.349857,0.484614,0.526062,|0.0700489,0.246157,0.381994,0.233482,0.668356,0.0737261,0.713206,0.800667,0.232531,0.875369,0.13842,0.681275,0.457508,0.280645,0.983228,0.127916,0.882383,0.329487,0.690531,0.41419,0.599585,0.00319427,0.792888,0.563715,0.081834,0.0500606,0.529519,0.114927,0.0624563,0.0436672,0.258015,0.730259,0.736303,0.941544,0.917605,0.724263,0.708567,0.950131,0.594918,0.959191,0.496086,0.87037,0.885402,0.834566,0.689754,0.566146,0.741229,0.715632,0.602173,0.0661445,0.653925,0.802663,0.491838,0.0365005,0.348906,0.985194,0.655622,0.743797,0.484084,0.550518,0.596436,0.801707,0.533372,0.0875337,0.0899672,0.317786,0.883727,0.528178,0.185659,0.842758,0.528993,0.633778,0.59227,0.354721,0.951481,0.956254,0.418221,0.274131,0.793888,0.366268,0.29432,0.254472,0.0300903,0.959499,0.738546,0.0156857,0.472264,0.656557,0.295527,0.237788,0.363633,0.632033,0.66907,0.921638,0.438398,0.352727,0.577115,0.0633147,0.00826406,0.264232,0.743927,0.953314,0.946624,0.0305599,0.850043,0.180049,0.810015,0.78614,0.735293,0.247429,0.16258,0.396691,0.588096,0.903843,0.285708,0.889443,0.65749,0.0617819,0.569961,0.852203,0.361584,0.92501,0.554284,0.396224,0.354596,0.170339,0.0665879,0.360122,0.489854,0.0411345,0.688775,0.735016,0.244763,0.924693,0.191919,0.465624,0.26804,0.620322,0.732033,0.0310937,0.650212,0.102366,0.29927,0.683174,0.273016,0.108882,0.460663,0.105478,0.196031,0.215708,0.280109,0.710703,0.692674,0.876988,0.653553,0.335719,0.63522,0.444588,0.117273,0.0626149,0.561564,0.802686,0.198359,0.0704902,0.319809,0.424197,0.124923,0.65215,0.706138,0.0105461,0.498659,0.838853,0.327619,0.98229,0.658328,0.824154,0.145622,0.686058,0.216443,0.227167,0.394546,0.00157201,0.184665,0.608388,0.861758,0.33254,0.529196,0.359814,0.195638,0.692778,0.0249704,0.553609,0.979038,0.307704,0.425985,0.861513,0.959961,0.938774,0.281606,0.507708,0.540159,0.0673014,0.464524,0.357455,0.276144,0.318187,0.397076,0.512885,0.55416,0.7308,0.89825,0.0693881,0.0845908,0.990622,0.415587,0.480885,0.179218,0.231791,0.450997,0.355928,0.258864,0.901534,0.657322,0.252807,0.154592,0.876694,0.423461,0.83001,0.680135,0.716155,0.700038,0.928448,0.270137,0.051995,0.23863,0.857301,0.30635,0.749908,0.35256,0.0390571,0.388953,0.0997452,0.953364,0.847208,0.11528,0.295038,0.46374,0.240568,0.254163,0.146348,0.653833,0.441986,0.423488,0.922802,0.260949,0.935779,0.521648,0.472107,0.872037,0.480303,0.437367,0.617241,0.361322,0.575217,0.148145,0.558766,0.63871,0.0552742,0.0484764,0.715149,0.172733,0.0401707,0.318795,0.793104,0.31778,0.18588,0.933185,0.768716,0.990134,0.250322,0.835211,0.228979,0.781616,0.342479,0.0103462,0.0579301,0.00171548,0.959371,0.761727,0.577182,0.664828,0.0243568,0.0956342,0.259749,0.618963,0.431337,0.333656,0.55435,0.267868,0.982599,0.0941222,0.817866,0.339479,0.864035,0.323947,0.58604,0.983406,0.537338,0.659119,0.605654,0.0882096,0.0929317,0.882373,0.598268,0.784681,0.656412,0.245631,0.90761,0.32067,0.233028,0.989844,0.192599,0.0231246,0.565261,0.806776,0.302264,0.742078,0.77422,0.281878,0.771603,0.354036,0.0574844,0.911105,0.567425,0.733984,0.425646,0.410511,0.890518,0.175671,0.220351,0.5627,0.0463722,0.989436,0.068593,0.217786,0.866121,0.929923,0.755728,0.481205,0.877443,0.178354,0.000530481,0.785778,0.201769,0.167816,0.87422,0.680126,0.486876,0.879241,0.389726,0.521514,0.900724,0.298324,0.692839,0.22309,0.314617,0.403372,0.184753,0.821951,0.29434,0.282273,0.0868688,0.536398,0.0708902,0.564805,0.918655,0.498306,0.749479,0.455746,0.769689,0.667357,0.00621319,0.265783,0.744633,0.196108,0.217359,0.752689,0.557302,0.318962,0.82341,0.86314,0.56498,0.807419,0.114074,0.514352,0.896922,0.0144536,0.990937,0.986736,0.855871,0.997503,0.724187,0.858578,0.569715,0.989629,0.769325,0.549257,0.416623,0.954298,0.591393,0.012871,0.622127,0.278317,0.778684,0.500774,0.669538,0.523305,0.23815,0.95145,0.0350113,0.667896,0.823655,0.200107,0.75384,0.332912,0.671474,0.594183,0.973916,0.765441,0.355524,0.650918,0.268761,0.162953,0.88013,0.570448,0.535955,0.343015,0.426862,0.175138,0.137625,0.348677,0.883937,0.264433,0.960514,0.889894,0.438689,0.262389,0.667761,0.649717,0.131259,0.516462,0.99391,0.948518,0.870624,0.831723,0.29555,0.134633,0.513617,0.842284,0.423935,0.658623,0.0244244,0.789071,0.490716,0.895282,0.452454,0.0610063,0.858227,0.760004,0.879659,0.0913347,0.15459,0.22799,0.619576,0.179768,0.264202,0.331383,0.779652,0.177232,0.109422,0.556705,0.928839,0.351066,0.516742,0.23709,0.654082,0.260256,0.9543,0.740691,0.0289735,0.45037,0.797953,0.98328,0.946617,0.118465,0.18043,0.423976,0.716677,0.327911,0.504591,0.864943,0.043622,0.710789,0.590857,0.239258,0.455061,0.837456,0.0733472,0.134762,0.50138,0.873417,0.564296,0.166189,0.109167,0.665053,0.971059,0.327341,0.725799,0.373219,0.524676,0.668911,0.952256,0.427637,0.869436,0.399983,0.252278,0.00296181,0.539871,0.745384,0.207258,0.329713,0.231685,0.797341,0.414401,0.361685,0.851698,0.391109,0.022622,0.976544,0.791164,0.73787,0.563235,0.0736831,0.292707,0.248912,0.48902,0.967913,0.83931,0.0994214,0.640374,0.847844,0.25902,0.678863,0.0736634,0.364436,0.436512,0.646476,0.163591,0.698239,0.647696,0.728938,0.680677,0.196537,0.0896342,0.0927318,0.164229,0.502495,0.437622,0.236601,0.783268,0.302759,0.896934,0.0575795,0.688358,0.542572,0.286597,0.948348,0.994725,0.538344,0.665565,0.992311,0.0383254,0.11437,0.0523174,0.939799,0.429831,0.438666,0.83703,0.993796,0.431975,0.620876,0.393911,0.0408268,0.626163,0.595261,0.316765,0.347294,0.754038,0.429231,0.461604,0.750713,0.382927,0.598,0.270076,0.0304236,0.996171,0.172417,0.853501,0.0957291,0.203074,0.123051,0.874802,0.914082,0.777975,0.377783,0.0462153,0.522827,0.230612,0.0897432,0.534052,0.287146,0.338477,0.234056,0.642527,0.499261,0.385078,0.357659,0.910742,0.46102,0.784029,0.952974,0.308599,0.756158,0.292835,0.293974,0.539173,0.75539,0.815674,0.120222,0.552962,0.992185,0.0576414,0.0341491,0.370313,0.858365,0.437825,0.565991,0.936114,0.883126,0.0172068,0.135733,0.886632,0.0333872,0.0624088,0.57421,0.912733,0.398958,0.914936,0.20657,0.790228,0.620116,0.632293,0.43561,0.553923,0.269463,0.0669456,0.936317,0.0687692,0.0852546,0.547042,0.722942,0.0648232,0.427087,0.284493,0.0525638,0.0688756,0.994709,0.398368,0.519277,0.233016,0.971284,0.711045,0.936571,0.707323,0.212208,0.0735613,0.453656,0.90358,0.510213,0.829365,0.459229,0.941808,0.210048,0.104096,0.59731,0.0659648,0.867966,0.494538,0.706267,0.653836,0.689193,0.328802,0.0109224,0.999656,0.310794,0.764318,0.300633,0.424002,0.670991,0.923952,0.964432,0.0902,0.956522,0.316591,0.644979,0.0727218,0.668111,0.987261,0.0422416,0.515671,0.36539,0.525889,0.415266,0.722504,0.349332,0.420672,0.827943,0.298848,0.665335,0.121211,0.354231,0.687603,0.957918,0.811505,0.152437,0.916192,0.433647,0.881644,0.285495,0.196228,0.865581,0.344554,0.0507591,0.287201,0.621265,0.271318,0.707013,0.942186,0.692395,0.0544615,0.864399,0.850308,0.373467,0.0954615,0.309837,0.701931,0.140145,0.397549,0.852363,0.861954,0.728895,0.772758,0.537998,0.485896,0.912466,0.700997,0.148303,0.696205,0.688396,0.319055,0.714322,0.747848,0.18591,0.322005,0.608639,0.422886,0.266789,0.499847,0.928207,0.407983,0.201438,0.705779,0.710303,0.0180487,0.240004,0.382189,0.713799,0.511086,0.292644,0.573103,0.0819179,0.136702,0.967974,0.489326,0.833621,0.853778,0.365144,0.13572,0.382945,0.363022,0.807554,0.101378,0.507829,0.543228,0.00141495,0.309998,0.694529,0.351773,0.311743,0.101665,0.391989,0.223634,0.781348,0.608662,0.562435,0.29723,0.2525,0.512181,0.201646,0.365699,0.897985,0.492794,0.777648,0.431248,0.583314,0.978786,0.520754,0.189474,0.367278,0.753063,0.60017,0.359648,0.786728,0.175694,0.61802,0.869075,0.147845,0.47197,0.92182,0.774783,0.715704,0.979845,0.962841,0.948368,0.546101,0.996067,0.389752,0.0909534,0.727325,0.374076,0.643732,0.419916,0.0525196,0.845412,0.319177,0.108343,0.167887,0.0585753,0.471026,0.706006,0.501578,0.415261,0.595466,0.306381,0.361126,0.389893,0.738675,0.737364,0.447192,0.356064,0.911486,0.857442,0.434504,0.320061,0.232649,0.98456,0.458794,0.100197,0.145546,0.490177,0.888672,0.743018,0.599628,0.0298302,0.546334,0.308692,0.0337074,0.692761,0.0822594,0.0852147,0.978375,0.473669,0.642571,0.709499,0.818246,0.726947,0.465978,0.176782,0.874278,0.865972,0.422947,0.81049,0.882405,0.428891,0.516717,0.254752,0.286756,0.791723,0.661841,0.943226,0.970018,0.886428,0.838691,0.241472,0.921119,0.278375,0.713313,0.0318204,0.111167,0.836225,0.742404,0.300984,0.252378,0.728186,0.820561,0.534311,0.904868,0.508144,0.0330144,0.895493,0.296153,0.15843,0.735003,0.411334,0.660679,0.0367853,0.0429603,0.0793803,0.534778,0.36073,0.222175,0.883451,0.263493,0.961922,0.207102,0.277499,0.356575,0.661256,0.367832,0.752816,0.901875,0.00153905,0.662868,0.449777,0.747955,0.975975,0.575965,0.0164766,0.415334,0.770002,0.834835,0.742103,0.0864834,0.692287,0.184765,0.512036,0.623125,0.433168,0.879537,0.439786,0.281161,0.689111,0.736609,0.479545,0.790767,0.442985,0.613957,0.937838,0.462022,0.679149,0.227652,0.65766,0.425303,0.96231,0.755851,0.162395,0.289497,0.431495,0.385888,0.959382,0.0377936,0.498832,0.240013,0.258195,0.68784,0.474597,0.86281,0.804291,0.881091,0.315801,|0.330326,0.596338,0.62975,0.928276,0.909615,0.10671,0.376673,0.613662,0.760539,0.541911,0.910917,0.912866,0.613274,0.279772,0.45252,0.887546,0.959786,0.485829,0.0875247,0.282099,0.875049,0.0931782,0.906811,0.633456,0.433386,0.948623,0.571307,0.733529,0.301041,0.676738,0.883134,0.906862,0.919453,0.792623,0.157744,0.846659,0.849082,0.82698,0.679487,0.690286,0.970015,0.635247,0.515838,0.957299,0.547246,0.0322657,0.888677,0.979419,0.464641,0.0081529,0.73078,0.390493,0.486874,0.564158,0.988963,0.667032,0.205376,0.866447,0.476979,0.150257,0.806352,0.0552422,0.31623,0.388561,0.227609,0.888397,0.496469,0.596069,0.090235,0.995737,0.323267,0.125866,0.621029,0.0186425,0.398869,0.0606024,0.474231,0.0307927,0.0380364,0.771342,0.88299,0.023251,0.946074,0.55476,0.396934,0.112055,0.094105,0.152176,0.26158,0.0750754,0.907276,0.893261,0.0627052,0.647083,0.427443,0.537443,0.476064,0.602781,0.63547,0.0920708,0.162097,0.0968879,0.510253,0.813909,0.37339,0.391488,0.630953,0.963692,0.994199,0.66002,0.154195,0.939478,0.806858,0.0347279,0.318212,0.290265,0.765878,0.0929089,0.385211,0.611792,0.184469,0.278522,0.814827,0.905154,0.376394,0.0456956,0.658506,0.446611,0.684806,0.650584,0.635458,0.775664,0.819325,0.849683,0.741028,0.0547553,0.92999,0.52508,0.791698,0.822869,0.837907,0.452702,0.41388,0.696076,0.398609,0.277265,0.864031,0.570633,0.924138,0.353014,0.66217,0.304253,0.149938,0.690395,0.827121,0.609463,0.978431,0.535157,0.649712,0.591663,0.642767,0.519579,0.537221,0.10747,0.0042572,0.762878,0.473983,0.624058,0.614523,0.572732,0.566305,0.925545,0.29245,0.993023,0.952005,0.299323,0.785788,0.229359,0.465944,0.935452,0.690954,0.71549,0.271427,0.0460602,0.428388,0.0190861,0.508108,0.281596,0.568045,0.262452,0.153738,0.549607,0.718575,0.0810415,0.955118,0.990922,0.927255,0.671047,0.521425,0.537838,0.753383,0.1236,0.236282,0.099161,0.98982,0.856386,0.24951,0.735132,0.538211,0.83188,0.212022,0.109293,0.697116,0.474379,0.818986,0.17065,0.77904,0.814342,0.387754,0.671077,0.570513,0.715504,0.848694,0.695081,0.254122,0.516906,0.883603,0.206641,0.0758634,0.856959,0.0142041,0.576508,0.355531,0.53974,0.689569,0.902291,0.541495,0.559547,0.375129,0.456046,0.320781,0.919848,0.346182,0.941282,0.0285298,0.572885,0.645168,0.831879,0.983049,0.870676,0.162901,0.486362,0.276815,0.669337,0.0159924,0.100613,0.531621,0.269284,0.759168,0.368655,0.972509,0.563244,0.782056,0.789825,0.615765,0.475451,0.939284,0.504648,0.759881,0.493291,0.62111,0.239422,0.466117,0.483641,0.198085,0.231379,0.591474,0.105944,0.881736,0.890371,0.357801,0.474454,0.111801,0.401162,0.691761,0.641131,0.839316,0.469695,0.355545,0.0902475,0.0102309,0.467598,0.674605,0.366654,0.642765,0.552003,0.911995,0.400962,0.470439,0.864536,0.904132,0.165954,0.0360413,0.0911996,0.264823,0.26186,0.17469,0.754174,0.328851,0.123775,0.866063,0.0564377,0.846547,0.275301,0.149228,0.688213,0.541142,0.622682,0.288065,0.0401866,0.181398,0.866954,0.551578,0.0731136,0.780957,0.13414,0.445444,0.307956,0.496716,0.391887,0.141081,0.72249,0.398294,0.703894,0.54126,0.187462,0.560297,0.763311,0.814619,0.0326149,0.544443,0.884047,0.304931,0.599395,0.111355,0.287157,0.924983,0.487308,0.201725,0.843103,0.833923,0.890096,0.302635,0.369126,0.631995,0.58601,0.564548,0.472995,0.0508281,0.262392,0.930877,0.927159,0.529371,0.363283,0.333795,0.443095,0.295657,0.32542,0.32103,0.970385,0.758597,0.244433,0.291408,0.0933769,0.921127,0.918497,0.072953,0.996667,0.0148528,0.516383,0.63881,0.0710174,0.0354127,0.283367,0.946847,0.130165,0.758372,0.782154,0.240379,0.851447,0.66327,0.154503,0.0978718,0.240176,0.217959,0.27623,0.565339,0.779376,0.54255,0.795483,0.755672,0.291458,0.901836,0.556078,0.666733,0.817357,0.764978,0.963505,0.544361,0.156785,0.518466,0.127533,0.0695303,0.593672,0.759764,0.27505,0.271612,0.452824,0.575048,0.747801,0.600573,0.855082,0.544948,0.840212,0.346932,0.788912,0.0672528,0.919867,0.53255,0.959736,0.0634857,0.252943,0.888888,0.0672956,0.56199,0.545824,0.750741,0.393057,0.782275,0.654339,0.771912,0.701607,0.289764,0.322143,0.441433,0.336542,0.570062,0.0957361,0.212731,0.67913,0.68445,0.674232,0.753274,0.934676,0.979211,0.933044,0.0799363,0.684086,0.600928,0.306316,0.215929,0.503296,0.401615,0.642748,0.620377,0.144061,0.461933,0.8724,0.249886,0.701974,0.364635,0.338252,0.597615,0.854054,0.550652,0.200059,0.165529,0.603978,0.308485,0.0221681,0.381503,0.61676,0.630386,0.883765,0.652397,0.471708,0.906805,0.600418,0.707976,0.621868,0.440087,0.708939,0.814348,0.864826,0.56052,0.494974,0.988646,0.743364,0.907151,0.64575,0.977483,0.849008,0.65143,0.355894,0.556912,0.411831,0.901356,0.264883,0.0146729,0.244047,0.639555,0.72844,0.622417,0.820419,0.618239,0.321877,0.638225,0.00391102,0.421409,0.620619,0.651575,0.0200394,0.0973461,0.507328,0.963351,0.473433,0.859527,0.604212,0.0774933,0.0374114,0.291894,0.687228,0.0315763,0.460733,0.0266885,0.738066,0.989121,0.251146,0.14808,0.309344,0.0501357,0.415318,0.556281,0.942941,0.524463,0.657255,0.152141,0.858229,0.462563,0.436551,0.414467,0.776676,0.33182,0.482625,0.349434,0.560324,0.131092,0.301215,0.117758,0.12543,0.627636,0.903595,0.527433,0.942996,0.565977,0.916249,0.909864,0.90981,0.576999,0.997628,0.371078,0.761155,0.6474,0.97543,0.662939,0.685757,0.928842,0.664452,0.612117,0.508325,0.772226,0.276758,0.309356,0.918818,0.455932,0.455462,0.72425,0.569912,0.0822706,0.991015,0.100086,0.172008,0.9978,0.129169,0.386259,0.65165,0.982694,0.842654,0.711637,0.516068,0.765079,0.0750775,0.37068,0.883449,0.3265,0.774675,0.49728,0.665194,0.427032,0.713196,0.846653,0.727984,0.534021,0.712599,0.556481,0.298543,0.783378,0.0586292,0.903421,0.899395,0.847831,0.300963,0.999858,0.206054,0.636016,0.841605,0.618072,0.874394,0.910461,0.573226,0.363491,0.595505,0.881009,0.583591,0.121658,0.369666,0.489018,0.40322,0.613049,0.84664,0.739596,0.793305,0.921765,0.823333,0.500358,0.936274,0.387049,0.621149,0.885855,0.463467,0.870054,0.317571,0.380037,0.6043,0.818037,0.432607,0.690301,0.333221,0.641863,0.197612,0.234763,0.175997,0.0504757,0.438544,0.0571817,0.360613,0.891365,0.77645,0.422089,0.065975,0.189837,0.816624,0.017186,0.779811,0.551845,0.909876,0.89618,0.816603,0.674279,0.548938,0.233163,0.495503,0.150272,0.115794,0.517456,0.445391,0.318034,0.292263,0.452346,0.437199,0.723674,0.238914,0.722666,0.727273,0.323862,0.44166,0.454068,0.376293,0.369399,0.311232,0.786669,0.751545,0.785545,0.470211,0.911674,0.819421,0.392497,0.124991,0.0980052,0.840645,0.672649,0.762588,0.442107,0.790807,0.735258,0.468238,0.509019,0.970447,0.641747,0.289914,0.21605,0.341399,0.973381,0.422193,0.999889,0.797773,0.715697,0.943049,0.282583,0.336529,0.0777764,0.306113,0.586575,0.0717228,0.402113,0.490836,0.495752,0.886808,0.122773,0.475641,0.479936,0.380353,0.333853,0.450273,0.676479,0.00940114,0.592012,0.718973,0.304495,0.588689,0.800851,0.153327,0.397708,0.212603,0.120458,0.277644,0.271775,0.915134,0.870928,0.163945,0.796054,0.0734317,0.849161,0.594866,0.728087,0.549178,0.926358,0.462681,0.743169,0.227827,0.107535,0.590943,0.422152,0.529667,0.0400841,0.0897856,0.238479,0.252421,0.52486,0.363796,0.837304,0.157552,0.771373,0.524815,0.31161,0.828864,0.692443,0.656589,0.911662,0.0543839,0.730515,0.414269,0.971309,0.695239,0.789651,0.0673877,0.120298,0.0320895,0.315589,0.560111,0.803572,0.686746,0.864605,0.223045,0.425983,0.1761,0.701389,0.175414,0.090542,0.441431,0.615299,0.422677,0.341305,0.105433,0.93785,0.678868,0.598103,0.418492,0.569647,0.864622,0.284512,0.845647,0.518009,0.158322,0.104514,0.458785,0.455496,0.333291,0.254387,0.425044,0.0637281,0.179907,0.962128,0.882911,0.634585,0.205352,0.399001,0.026315,0.266825,0.203217,0.121461,0.384394,0.338358,0.0736048,0.689773,0.206285,0.29267,0.316411,0.515346,0.458532,0.191615,0.686193,0.647798,0.623503,0.376453,0.404798,0.771856,0.0716217,0.149902,0.457957,0.623138,0.21531,0.157309,0.840579,0.76197,0.508405,0.86335,0.465094,0.85354,0.0240149,0.53312,0.767892,0.0372839,0.123265,0.540955,0.738442,0.946898,0.295465,0.0679485,0.529867,0.212165,0.508958,0.289094,0.593311,0.822344,0.37377,0.63871,0.153884,0.816704,0.247035,0.750207,0.877279,0.785019,0.0161023,0.891787,0.658443,0.15474,0.632873,0.969815,0.329524,0.681511,0.701379,0.79377,0.172237,0.0530217,0.900668,0.134782,0.441421,0.342362,0.867209,0.266131,0.806972,0.654891,0.103707,0.645825,0.0222787,0.417425,0.925345,0.655329,0.994554,0.978725,0.297606,0.668173,0.741863,0.161163,0.584202,0.789851,0.832742,0.79263,0.530113,0.748071,0.190705,0.66059,0.0401096,0.970377,0.0509517,0.644471,0.461943,0.389142,0.979837,0.472349,0.430071,0.24288,0.487328,0.968238,0.950996,0.202813,0.591476,0.351238,0.333619,0.745084,0.518342,0.847487,0.337612,0.678688,0.53341,0.0205985,0.669471,0.347844,0.794144,0.108394,0.268866,0.17519,0.554611,0.367349,0.112202,0.320385,0.654467,0.350721,0.888613,0.221668,0.690418,0.38264,0.539924,0.632012,0.745943,0.365855,0.197669,0.0452349,0.238321,0.184393,0.108943,0.098845,0.408264,0.211593,0.158533,0.34997,0.406634,0.953585,0.701263,0.2649,0.788673,0.856245,0.838821,0.686714,0.848819,0.0797821,0.203341,0.597733,0.896043,|0.597735,0.933964,0.667665,0.113334,0.425014,0.987857,0.771147,0.180163,0.188981,0.163595,0.499782,0.371353,0.273548,0.822501,0.617017,0.546062,0.855976,0.193196,0.786585,0.104177,0.736952,0.45453,0.75375,0.76643,0.721249,0.49527,0.284189,0.60842,0.930195,0.970944,0.547527,0.137777,0.155614,0.843852,0.352034,0.405347,0.863685,0.70602,0.704759,0.247143,0.904302,0.0639371,0.331843,0.907045,0.827783,0.495126,0.915782,0.27352,0.841507,0.205519,0.354396,0.14592,0.366666,0.166613,0.271146,0.440334,0.525494,0.640424,0.373398,0.576027,0.265778,0.854255,0.740235,0.507302,0.417226,0.778556,0.647391,0.541375,0.163479,0.606732,0.723027,0.1052,0.935322,0.236251,0.379555,0.522313,0.488467,0.729461,0.782536,0.97667,0.552337,0.999587,0.345342,0.325213,0.316534,0.697984,0.263542,0.400761,0.0554237,0.302096,0.442814,0.678602,0.986079,0.46419,0.883094,0.186051,0.201639,0.576589,0.768704,0.435703,0.73466,0.287455,0.705721,0.724877,0.0777144,0.813319,0.537033,0.944199,0.972711,0.193115,0.932959,0.828806,0.16726,0.267874,0.0674082,0.214271,0.0342815,0.433042,0.523956,0.439385,0.651412,0.463075,0.713504,0.436931,0.0481125,0.99123,0.504067,0.376607,0.676749,0.483828,0.405445,0.812329,0.765401,0.449249,0.923961,0.607465,0.0606676,0.234837,0.611379,0.456508,0.319618,0.344114,0.149365,0.0692133,0.374979,0.834649,0.252746,0.430529,0.490691,0.105776,0.828882,0.509187,0.284523,0.590816,0.935262,0.489338,0.152995,0.201252,0.785548,0.0222981,0.208347,0.891787,0.820701,0.779704,0.454961,0.79813,0.174496,0.0552628,0.898207,0.212727,0.607007,0.137038,0.260734,0.827467,0.334266,0.416269,0.567334,0.209156,0.119998,0.75044,0.457161,0.650533,0.391618,0.492673,0.314325,0.805423,0.513022,0.682761,0.661919,0.134367,0.382605,0.617747,0.428108,0.822571,0.788513,0.0220198,0.0509564,0.700879,0.94632,0.573463,0.798071,0.440608,0.388549,0.556307,0.963596,0.917705,0.775078,0.760512,0.215681,0.627908,0.144715,0.493333,0.596386,0.947134,0.0388946,0.125808,0.260504,0.116487,0.269793,0.382307,0.682353,0.70942,0.0753518,0.573829,0.97934,0.00137496,0.962995,0.997104,0.386363,0.553473,0.0429204,0.288298,0.754178,0.74477,0.989032,0.348647,0.809096,0.372438,0.774236,0.653512,0.673299,0.469542,0.031295,0.201368,0.169942,0.231104,0.00648385,0.764176,0.63288,0.880433,0.694564,0.157986,0.195036,0.112133,0.963174,0.359532,0.629033,0.502819,0.269975,0.265168,0.480528,0.567531,0.815262,0.765281,0.528038,0.986634,0.0406546,0.10982,0.581638,0.446835,0.538611,0.246982,0.969427,0.317373,0.0467824,0.898758,0.955593,0.347473,0.820789,0.68249,0.184895,0.251988,0.228369,0.645382,0.96284,0.939376,0.718131,0.648615,0.6566,0.882268,0.202623,0.933548,0.188539,0.425381,0.392585,0.308458,0.252851,0.474904,0.724294,0.517986,0.346663,0.794433,0.286536,0.327262,0.684878,0.334626,0.732262,0.0100698,0.628845,0.0729658,0.0535072,0.656602,0.435828,0.996197,0.300823,0.33832,0.81631,0.779594,0.492167,0.0194105,0.483881,0.399447,0.863456,0.74508,0.744552,0.842437,0.641685,0.940438,0.740546,0.01406,0.374454,0.0471846,0.856391,0.967742,0.884212,0.415169,0.487368,0.345725,0.335929,0.219858,0.538906,0.74094,0.316817,0.40421,0.215047,0.732432,0.823555,0.0342649,0.365761,0.0460193,0.874739,0.445773,0.566108,0.477288,0.0707896,0.637705,0.236746,0.312195,0.220787,0.186518,0.86545,0.118017,0.0871859,0.985014,0.360262,0.351087,0.749589,0.551918,0.561277,0.848313,0.138593,0.509619,0.398473,0.0370322,0.340841,0.919686,0.596728,0.457794,0.305921,0.202823,0.840394,0.222639,0.918082,0.772951,0.148072,0.165717,0.703416,0.351344,0.775524,0.721387,0.750327,0.00342566,0.090109,0.257581,0.977201,0.576807,0.513193,0.793912,0.643815,0.582606,0.760383,0.843233,0.574054,0.582408,0.0406302,0.399159,0.501811,0.562406,0.0843562,0.614759,0.231218,0.245175,0.135166,0.442279,0.361577,0.863521,0.0894542,0.751931,0.732388,0.392929,0.0425187,0.440287,0.836388,0.792394,0.958198,0.922786,0.425587,0.376129,0.123456,0.0472852,0.126454,0.855506,0.714606,0.00224477,0.358443,0.399298,0.070848,0.552606,0.846648,0.876558,0.164768,0.873087,0.176176,0.609098,0.169065,0.389443,0.754977,0.177869,0.783077,0.598504,0.232766,0.277196,0.794191,0.120589,0.834512,0.022642,0.851154,0.763724,0.29366,0.303818,0.495571,0.767972,0.54392,0.582453,0.491962,0.276615,0.0536778,0.732101,0.840262,0.260765,0.698785,0.526854,0.279376,0.418082,0.15435,0.74954,0.203632,0.27715,0.145552,0.546389,0.472396,0.611868,0.122424,0.753212,0.0402232,0.928618,0.755165,0.219334,0.64642,0.864367,0.705089,0.752905,0.341511,0.630034,0.616632,0.794155,0.976733,0.238214,0.814815,0.276767,0.60979,0.988794,0.516447,0.641368,0.631681,0.918829,0.634937,0.172396,0.696035,0.500054,0.738887,0.131599,0.97323,0.435465,0.194083,0.535318,0.895157,0.713554,0.125345,0.199061,0.997218,0.695565,0.73289,0.948559,0.416269,0.517766,0.345611,0.0258254,0.992663,0.623664,0.877234,0.287783,0.809636,0.842638,0.800171,0.401169,0.10368,0.325984,0.640017,0.344134,0.0485294,0.0439554,0.837647,0.72385,0.95932,0.645864,0.112923,0.111665,0.971087,0.183635,0.442646,0.940926,0.736192,0.279361,0.439937,0.108225,0.375722,0.871229,0.795672,0.165504,0.225669,0.823811,0.429489,0.955142,0.298985,0.343105,0.748467,0.850248,0.932199,0.577837,0.0325879,0.96121,0.456622,0.224709,0.0724832,0.842882,0.91511,0.949857,0.630251,0.884722,0.667353,0.0129725,0.541761,0.233823,0.878152,0.509629,0.482671,0.898402,0.865505,0.87799,0.952467,0.511756,0.730205,0.108488,0.175544,0.358915,0.445673,0.649226,0.349958,0.712525,0.622308,0.723137,0.116145,0.738434,0.397484,0.716477,0.0100272,0.053297,0.196849,0.954792,0.41352,0.0763837,0.314456,0.466996,0.783701,0.579003,0.479943,0.643031,0.552237,0.0856224,0.414869,0.257542,0.896184,0.227291,0.822972,0.464413,0.56813,0.695699,0.615091,0.549665,0.881294,0.342789,0.950005,0.023157,0.540921,0.655459,0.47767,0.229437,0.197778,0.0842785,0.266777,0.277551,0.684168,0.322347,0.535858,0.295968,0.412861,0.0401132,0.770438,0.15677,0.815462,0.206744,0.932311,0.976718,0.61997,0.0830351,0.109572,0.929667,0.230078,0.90819,0.79304,0.456676,0.313961,0.386365,0.810415,0.941507,0.135211,0.0205063,0.359774,0.73427,0.214432,0.0930085,0.215268,0.454251,0.288326,0.935735,0.742305,0.110194,0.755805,0.561862,0.937104,0.318192,0.384114,0.779744,0.708696,0.917516,0.951282,0.976797,0.258015,0.551866,0.0409674,0.854344,0.97509,0.00375384,0.914732,0.800102,0.0347355,0.808248,0.265169,0.352228,0.626155,0.936076,0.467368,0.535263,0.70448,0.450968,0.730217,0.798364,0.583465,0.608624,0.780849,0.940066,0.45716,0.200575,0.0256523,0.926996,0.418077,0.807948,0.700567,0.145964,0.34803,0.128878,0.0882476,0.361863,0.645558,0.144921,0.156673,0.103845,0.250379,0.379143,0.948257,0.260662,0.839886,0.693798,0.285474,0.17146,0.211372,0.424487,0.980855,0.517465,0.594517,0.0439128,0.775101,0.633665,0.356933,0.308166,0.921537,0.51106,0.614671,0.0622255,0.815466,0.398879,0.489021,0.602212,0.867454,0.0285545,0.0049457,0.47754,0.820758,0.949044,0.312835,0.656571,0.770458,0.811948,0.631216,0.872613,0.558016,0.766372,0.764929,0.57737,0.166688,0.491522,0.111111,0.237493,0.934446,0.779622,0.9345,0.93239,0.647371,0.531575,0.945839,0.117518,0.680844,0.296945,0.0582149,0.839392,0.650888,0.866642,0.336173,0.274014,0.723552,0.626762,0.286264,0.244243,0.367909,0.0673977,0.875368,0.458235,0.557404,0.162533,0.268221,0.916354,0.575129,0.749389,0.621262,0.0706052,0.243065,0.0849794,0.97884,0.681781,0.947119,0.661945,0.723466,0.577081,0.3524,0.815904,0.292511,0.536772,0.97313,0.71773,0.786859,0.589945,0.910725,0.967054,0.311117,0.199525,0.487065,0.306475,0.0207427,0.697545,0.24085,0.141262,0.633299,0.0239359,0.777439,0.601126,0.70943,0.968888,0.0804728,0.29972,0.564937,0.474855,0.134084,0.272371,0.340586,0.282461,0.588926,0.192382,0.901921,0.740159,0.66497,0.0258407,0.049464,0.456375,0.0796512,0.148892,0.855417,0.899234,0.552615,0.128145,0.592523,0.593996,0.292052,0.290184,0.403357,0.528604,0.780605,0.493688,0.20844,0.581941,0.230393,0.0180421,0.551605,0.851398,0.0552211,0.528739,0.434775,0.582393,0.240593,0.569728,0.4979,0.601127,0.260108,0.00526971,0.643327,0.655738,0.952677,0.274341,0.348698,0.95905,0.304341,0.970652,0.261619,0.297364,0.414481,0.604751,0.668911,0.178474,0.785871,0.2932,0.290111,0.190533,0.389587,0.443755,0.250725,0.189805,0.0940128,0.281494,0.185601,0.278361,0.26618,0.825075,0.551116,0.981461,0.477389,0.207647,0.318871,0.666314,0.36558,0.1111,0.255226,0.426967,0.99709,0.0870662,0.637684,0.717219,0.773809,0.830727,0.0490009,0.378918,0.193749,0.162544,0.113106,0.572453,0.720289,0.034098,0.915119,0.568328,0.455873,0.078539,0.578392,0.777747,0.615996,0.249904,0.587866,0.714298,0.557922,0.345089,0.167519,0.379345,0.734427,0.0789912,0.183929,0.20067,0.682014,0.901128,0.19098,0.711195,0.184584,0.136393,0.692633,0.394747,0.905141,0.520922,0.830265,0.477585,0.749021,0.830103,0.328942,0.887679,0.0579253,0.467633,0.186223,0.0818649,0.548387,0.405381,0.932754,0.867757,0.541051,0.433676,0.940033,0.333375,0.101386,0.309962,0.756313,0.851312,0.504475,0.333068,0.044682,0.281905,0.758238,0.469256,0.96064,0.919247,0.717153,0.0640276,0.800206,0.319101,0.666693,0.311306,|0.0459071,0.857982,0.212996,0.322259,0.765751,0.4427,0.875044,0.334393,0.873945,0.854861,0.916198,0.0605668,0.0768288,0.139802,0.415737,0.251646,0.135316,0.0577005,0.595707,0.624844,0.797092,0.143518,0.696977,0.465906,0.52536,0.440125,0.0254469,0.117242,0.367439,0.510659,0.568674,0.183667,0.985398,0.231311,0.525083,0.631581,0.357313,0.413731,0.426368,0.997303,0.850274,0.387893,0.979331,0.461242,0.949706,0.489647,0.58557,0.524369,0.899255,0.727692,0.995675,0.580339,0.16919,0.373523,0.612131,0.164309,0.343996,0.0541347,0.548863,0.203719,0.578605,0.474857,0.789419,0.309488,0.627539,0.572393,0.548872,0.221239,0.0243375,0.401449,0.274719,0.684424,0.195441,0.174788,0.650477,0.104484,0.92504,0.762596,0.150471,0.0843524,0.574003,0.357145,0.13114,0.994667,0.799186,0.789012,0.0247295,0.215699,0.686221,0.605046,0.706781,0.65335,0.474047,0.0519073,0.050882,0.318616,0.691767,0.368461,0.663052,0.249514,0.815958,0.298151,0.411668,0.739049,0.488763,0.455937,0.195198,0.306761,0.810238,0.998726,0.990574,0.168777,0.665193,0.956137,0.192777,0.0399296,0.403979,0.144574,0.376238,0.731031,0.920153,0.993122,0.65407,0.349102,0.586481,0.0927839,0.381089,0.815507,0.828499,0.850317,0.752234,0.476818,0.282091,0.402582,0.0675553,0.861502,0.211989,0.930592,0.660861,0.173002,0.87162,0.663934,0.572277,0.290717,0.237165,0.254427,0.407159,0.129244,0.485,0.29522,0.801369,0.0406211,0.506057,0.933105,0.530612,0.0794499,0.115547,0.592205,0.705634,0.494029,0.999549,0.0810339,0.178792,0.587477,0.912097,0.530582,0.198877,0.60768,0.14718,0.211339,0.716433,0.966993,0.199234,0.877848,0.221561,0.911148,0.23795,0.725735,0.845407,0.516788,0.492094,0.838811,0.77945,0.794528,0.239713,0.806253,0.135987,0.568347,0.399328,0.304719,0.778746,0.489802,0.351897,0.306695,0.173389,0.599692,0.189327,0.663153,0.728159,0.105931,0.84317,0.368219,0.074623,0.742022,0.982765,0.62021,0.600948,0.0822752,0.9138,0.790001,0.877974,0.654756,0.220247,0.860632,0.779062,0.785347,0.405086,0.739203,0.035902,0.834802,0.70846,0.124621,0.401304,0.849968,0.0691077,0.8672,0.49795,0.858253,0.398786,0.890411,0.650565,0.400704,0.319918,0.461205,0.107638,0.179698,0.305637,0.883749,0.748241,0.520201,0.763836,0.648193,0.396992,0.922322,0.821796,0.639688,0.912143,0.0650752,0.94876,0.887563,0.356437,0.999811,0.745023,0.471329,0.947155,0.599448,0.497339,0.667756,0.951888,0.745964,0.428648,0.120865,0.381679,0.0649219,0.79417,0.56954,0.453441,0.229616,0.846086,0.139333,0.488199,0.890639,0.938786,0.781372,0.789589,0.806809,0.230835,0.773919,0.550217,0.416736,0.333592,0.962767,0.287317,0.117934,0.120173,0.903596,0.724532,0.323962,0.948261,0.464609,0.962912,0.568039,0.844161,0.474807,0.448435,0.0969887,0.7068,0.32081,0.78883,0.819354,0.814487,0.469,0.0254232,0.113313,0.158818,0.113893,0.944471,0.665025,0.082791,0.923877,0.578877,0.191773,0.730266,0.927624,0.370112,0.469001,0.690418,0.852881,0.423605,0.702554,0.754754,0.228488,0.810325,0.543573,0.708077,0.147281,0.786156,0.370245,0.923333,0.948504,0.0124007,0.872609,0.217218,0.704702,0.624545,0.348855,0.0196518,0.567846,0.30799,0.905223,0.304473,0.951835,0.677623,0.577927,0.594875,0.851705,0.45818,0.483491,0.417111,0.574008,0.0606854,0.544426,0.357053,0.182006,0.319004,0.506613,0.271452,0.478192,0.229303,0.239792,0.583983,0.652194,0.915274,0.549144,0.526628,0.985024,0.376839,0.906499,0.379931,0.91294,0.972621,0.865605,0.64941,0.329483,0.568095,0.411298,0.777809,0.0966112,0.306918,0.177033,0.816848,0.505618,0.157127,0.200952,0.820777,0.858573,0.540643,0.825215,0.950046,0.57697,0.795997,0.74021,0.835125,0.122066,0.230684,0.133547,0.572929,0.21389,0.178983,0.976704,0.669286,0.558539,0.0387538,0.992401,0.574059,0.304756,0.678254,0.162727,0.554292,0.0166652,0.715226,0.453658,0.95626,0.468721,0.278047,0.328479,0.471656,0.549385,0.846194,0.0290592,0.478243,0.107178,0.354192,0.235012,0.053196,0.0548418,0.297232,0.835243,0.661171,0.173864,0.245958,0.405435,0.517843,0.878445,0.208604,0.0349488,0.203163,0.0564611,0.337302,0.779107,0.909524,0.878164,0.941906,0.6341,0.914604,0.73646,0.426009,0.199716,0.26841,0.44814,0.108864,0.589692,0.340389,0.870346,0.213847,0.190001,0.942386,0.880322,0.787306,0.0327013,0.0311629,0.966064,0.842183,0.309236,0.794277,0.146293,0.213658,0.478243,0.747218,0.850673,0.594871,0.441651,0.125008,0.176658,0.805042,0.229817,0.0413213,0.332915,0.893521,0.826833,0.334806,0.937957,0.313012,0.892169,0.733751,0.0268165,0.105545,0.492737,0.888539,0.725995,0.153661,0.82225,0.636309,0.978454,0.859849,0.404467,0.900978,0.893482,0.97377,0.586503,0.425825,0.707187,0.576081,0.973592,0.0829046,0.421476,0.768352,0.167991,0.205698,0.444361,0.582867,0.0273907,0.711515,0.920816,0.668211,0.0957839,0.387796,0.342975,0.711631,0.359289,0.985334,0.680842,0.667895,0.531939,0.00579298,0.963653,0.733502,0.208102,0.686722,0.155017,0.810984,0.594789,0.41173,0.176702,0.463782,0.689921,0.369552,0.190651,0.281523,0.441323,0.964924,0.0712181,0.472099,0.050801,0.254205,0.180881,0.71341,0.104287,0.869342,0.950306,0.709854,0.243548,0.0891424,0.42218,0.069016,0.719976,0.832879,0.766195,0.382536,0.84012,0.841293,0.0470116,0.844174,0.995895,0.347759,0.714169,0.837825,0.688958,0.666694,0.0276728,0.283561,0.873687,0.513749,0.63757,0.179388,0.444535,0.609517,0.353389,0.473278,0.309378,0.0681984,0.05856,0.32197,0.355144,0.148715,0.316874,0.144145,0.937208,0.973194,0.121683,0.709432,0.412709,0.667671,0.760774,0.321409,0.408625,0.305737,0.988556,0.282838,0.635311,0.267321,0.980819,0.550567,0.242797,0.325081,0.999405,0.396054,0.281091,0.285242,0.671017,0.150951,0.0583352,0.656895,0.87636,0.472074,0.314394,0.745507,0.27291,0.261342,0.450609,0.469531,0.694081,0.0165747,0.0183863,0.869642,0.995473,0.78659,0.809966,0.57214,0.040226,0.353738,0.376542,0.523107,0.354204,0.197585,0.422995,0.467103,0.109547,0.540334,0.952734,0.428017,0.805863,0.214971,0.331654,0.823412,0.807592,0.330282,0.725637,0.944728,0.936529,0.267392,0.627851,0.00770187,0.735618,0.744384,0.695856,0.403156,0.738775,0.847394,0.907174,0.768182,0.809728,0.68242,0.713236,0.99578,0.183229,0.747148,0.568652,0.711513,0.76696,0.40662,0.906297,0.444703,0.617909,0.733916,0.477652,0.421319,0.700625,0.996487,0.723711,0.60621,0.50405,0.571815,0.265137,0.847854,0.101787,0.973988,0.00963247,0.808579,0.461434,0.927488,0.792057,0.417137,0.639941,0.898047,0.49455,0.8524,0.964404,0.647174,0.436822,0.0317892,0.855241,0.287787,0.724185,0.916232,0.473942,0.0294082,0.173077,0.72092,0.25865,0.507902,0.0331758,0.443075,0.489044,0.916805,0.63261,0.912881,0.594711,0.0368218,0.781284,0.658781,0.133864,0.406919,0.19401,0.103358,0.133625,0.268359,0.927365,0.160379,0.80313,0.179526,0.756497,0.651617,0.628769,0.679792,0.6155,0.732143,0.459976,0.823988,0.659113,0.604999,0.917565,0.697103,0.296386,0.357393,0.871506,0.615929,0.532096,0.865315,0.934047,0.651621,0.981085,0.720365,0.0854705,0.34913,0.827638,0.49192,0.0426024,0.848761,0.364063,0.954896,0.159082,0.400199,0.629377,0.414935,0.421507,0.121501,0.66657,0.727068,0.420787,0.947207,0.451786,0.17856,0.639114,0.980634,0.341504,0.139545,0.203546,0.656046,0.723023,0.944174,0.386604,0.163346,0.384927,0.50349,0.474122,0.497195,0.765224,0.413876,0.559329,0.266933,0.436832,0.498895,0.196998,0.486292,0.971437,0.29885,0.0153919,0.21855,0.512734,0.376145,0.658653,0.194693,0.0479296,0.0656019,0.990951,0.472332,0.654243,0.989335,0.306761,0.887409,0.622561,0.119281,0.647027,0.355234,0.08586,0.0459993,0.845348,0.622916,0.712463,0.222812,0.410765,0.655405,0.713327,0.175923,0.123578,0.894574,0.0245606,0.400425,0.114199,0.122832,0.122318,0.683234,0.624433,0.714578,0.955104,0.164205,0.296867,0.721561,0.315833,0.588804,0.0242382,0.140001,0.989797,0.959251,0.574067,0.931717,0.139872,0.780666,0.794723,0.870743,0.907585,0.329629,0.449614,0.612062,0.688434,0.921457,0.12239,0.407378,0.0547945,0.730314,0.334472,0.628993,0.499651,0.263064,0.564362,0.271252,0.967638,0.420027,0.0879573,0.332025,0.58104,0.283912,0.156071,0.0947299,0.0157678,0.30802,0.0939793,0.0489055,0.0486662,0.164314,0.30242,0.00263894,0.898559,0.882849,0.415593,0.971237,0.87578,0.214636,0.428006,0.384395,0.51416,0.331602,0.366297,0.718426,0.716883,0.0126718,0.283891,0.310563,0.116366,0.0260631,0.634507,0.601332,0.666046,0.319879,0.836287,0.246543,0.216514,0.745205,0.646588,0.851882,0.662007,0.102247,0.641469,0.538816,0.870936,0.159582,0.703497,0.124126,0.942742,0.881498,0.917895,0.639819,0.914267,0.772711,0.357009,0.0154369,0.870091,0.723351,0.348062,0.352441,0.581203,0.566373,0.772036,0.562317,0.622417,0.243636,0.300303,0.707007,0.82006,0.554891,0.352565,0.693872,0.478595,0.381748,0.265476,0.434469,0.137112,0.525432,0.833712,0.188071,0.474984,0.0142716,0.807662,0.808252,0.175109,0.15101,0.291362,0.570098,0.300883,0.534174,0.580302,0.013693,0.425922,0.805286,0.969519,0.893355,0.944384,0.84186,0.643199,0.0908933,0.136918,0.664685,0.372981,0.667564,0.64791,0.25726,0.46266,0.934884,0.374157,0.842502,0.0310066,0.773332,0.235047,0.554246,0.490742,0.639229,0.892586,0.212573,0.322196,0.941241,0.668023,0.698165,0.387095,0.189238,0.0861627,0.689411,0.437384,0.183986,0.500029,|0.853705,0.888902,0.460387,0.481996,0.835206,0.58546,0.766986,0.52252,0.597665,0.68418,0.676412,0.0359309,0.8568,0.286868,0.942142,0.456229,0.315604,0.189928,0.80104,0.192237,0.398789,0.738702,0.0056594,0.180781,0.536949,0.298004,0.119481,0.949068,0.219199,0.22638,0.982738,0.424289,0.398178,0.413875,0.856017,0.239079,0.641423,0.530886,0.923194,0.0846197,0.178281,0.0527313,0.0602483,0.482722,0.409788,0.309017,0.696975,0.96505,0.635373,0.42642,0.650072,0.921404,0.153036,0.552633,0.495894,0.128426,0.945041,0.523635,0.0407848,0.817368,0.410089,0.930064,0.983686,0.0791808,0.381306,0.90462,0.712836,0.595955,0.0181863,0.629158,0.0177145,0.264493,0.685141,0.954758,0.192239,0.0930757,0.00898713,0.98189,0.124608,0.510835,0.027428,0.355528,0.545218,0.591935,0.31757,0.87286,0.614805,0.564798,0.250042,0.159993,0.376924,0.489052,0.474995,0.691534,0.167532,0.276252,0.726104,0.500599,0.188054,0.8219,0.00885165,0.959958,0.214492,0.159646,0.205869,0.52118,0.339404,0.487954,0.530621,0.784429,0.56744,0.479675,0.659739,0.388173,0.876509,0.29113,0.830413,0.353072,0.550806,0.600959,0.807677,0.951245,0.342371,0.967512,0.290874,0.366815,0.312472,0.792066,0.698536,0.0913931,0.750634,0.55222,0.186935,0.826245,0.0261757,0.0282858,0.883199,0.633721,0.849755,0.359286,0.065349,0.163592,0.982383,0.924016,0.312036,0.367588,0.649707,0.0226442,0.380893,0.90489,0.209332,0.836332,0.536207,0.0540342,0.452287,0.374939,0.951251,0.573413,0.926336,0.0651211,0.184937,0.760553,0.842166,0.865692,0.65809,0.232228,0.0501354,0.207362,0.711952,0.180872,0.463566,0.607178,0.111207,0.364325,0.54183,0.822056,0.0882007,0.0450988,0.294753,0.845426,0.489926,0.397964,0.8479,0.461782,0.303882,0.783572,0.881484,0.254028,0.406374,0.413554,0.703125,0.447221,0.128556,0.710598,0.496817,0.959252,0.206317,0.195192,0.189392,0.577457,0.320798,0.654224,0.57836,0.380888,0.571793,0.851051,0.565056,0.296752,0.610412,0.340572,0.152895,0.528477,0.535734,0.93382,0.163352,0.8998,0.75162,0.738309,0.84806,0.974294,0.642796,0.29788,0.0218175,0.666268,0.13432,0.26645,0.157006,0.162167,0.227474,0.807285,0.888003,0.363408,0.14948,0.779446,0.956865,0.430622,0.722484,0.368876,0.486125,0.349913,0.732021,0.404157,0.944035,0.475823,0.808784,0.601152,0.139438,0.0747886,0.067205,0.013163,0.688375,0.554876,0.552029,0.119795,0.144659,0.375713,0.772084,0.323084,0.480631,0.829955,0.867416,0.248225,0.800632,0.0296215,0.520566,0.932218,0.839702,0.835985,0.715634,0.114234,0.35069,0.938146,0.335352,0.255345,0.249928,0.712436,0.555363,0.843524,0.816422,0.594124,0.413549,0.618038,0.324889,0.0121253,0.328485,0.00845063,0.173018,0.267986,0.290097,0.917089,0.486387,0.51649,0.0107316,0.239779,0.693375,0.336177,0.561164,0.721567,0.796992,0.38715,0.853383,0.439855,0.14241,0.957714,0.343112,0.306089,0.127295,0.904047,0.428428,0.253833,0.991649,0.0536382,0.0493449,0.301836,0.637705,0.36121,0.43444,0.527958,0.2773,0.260401,0.823493,0.947137,0.100987,0.272998,0.0811721,0.138828,0.811688,0.982428,0.861689,0.597904,0.751066,0.973576,0.544456,0.0267883,0.417263,0.882571,0.295318,0.526292,0.11561,0.624518,0.412349,0.570264,0.578875,0.827622,0.334176,0.138669,0.465896,0.607719,0.441276,0.68543,0.678771,0.625513,0.210139,0.405864,0.721176,0.407079,0.783186,0.0995864,0.0135089,0.0717109,0.917301,0.595374,0.298438,0.874543,0.301948,0.373313,0.175388,0.567226,0.185419,0.200189,0.0271659,0.498973,0.75294,0.194205,0.699138,0.661689,0.604964,0.801382,0.113187,0.234335,0.965384,0.443166,0.585214,0.607354,0.680723,0.151115,0.710465,0.724188,0.123196,0.846683,0.466816,0.374347,0.647448,0.735773,0.781668,0.0112236,0.724681,0.172,0.713368,0.214875,0.957917,0.37437,0.404095,0.451177,0.309289,0.654041,0.170109,0.321923,0.540946,0.282596,0.494168,0.285149,0.149781,0.345936,0.455202,0.0929171,0.915867,0.5965,0.896329,0.628737,0.386528,0.865914,0.302063,0.642776,0.10622,0.818835,0.812438,0.774688,0.629892,0.123376,0.636999,0.406686,0.399735,0.116358,0.819158,0.0700291,0.744781,0.705846,0.0542474,0.292679,0.483571,0.518224,0.75948,0.439046,0.8162,0.845943,0.333116,0.598067,0.495703,0.135859,0.20375,0.594449,0.0547343,0.709987,0.328227,0.898705,0.528164,0.464302,0.898477,0.235386,0.595679,0.204915,0.518379,0.30886,0.995817,0.216806,0.357637,0.901226,0.332747,0.736934,0.432132,0.015889,0.00938541,0.0502926,0.28496,0.878389,0.695992,0.00201458,0.0783902,0.0451549,0.504053,0.813586,0.819793,0.707296,0.465823,0.494703,0.965715,0.118091,0.749394,0.490373,0.157711,0.907215,0.34994,0.602145,0.187357,0.873282,0.779799,0.357026,0.919159,0.322945,0.848558,0.851089,0.686591,0.240237,0.0110387,0.74951,0.695027,0.460271,0.529507,0.388239,0.878517,0.302441,0.705691,0.602197,0.204492,0.102038,0.673851,0.35686,0.579637,0.627365,0.444641,0.729766,0.239281,0.740349,0.412244,0.205855,0.0167022,0.789784,0.0421616,0.503205,0.331878,0.0232855,0.925395,0.593564,0.230812,0.5877,0.645689,0.809533,0.691913,0.0371674,0.043741,0.381543,0.0898101,0.898832,0.54669,0.901315,0.533973,0.46689,0.8171,0.353919,0.838783,0.97137,0.703183,0.751836,0.450684,0.514024,0.466222,0.59496,0.502382,0.0869175,0.310074,0.968694,0.00274706,0.785619,0.361091,0.780203,0.918926,0.0960133,0.0658189,0.764486,0.803715,0.509797,0.0918808,0.725575,0.706737,0.108864,0.0311964,0.463184,0.344242,0.585128,0.851964,0.0746962,0.114127,0.508974,0.701527,0.291449,0.610169,0.634483,0.32495,0.213989,0.304614,0.307548,0.524621,0.236282,0.539403,0.262216,0.107602,0.950545,0.937559,0.650117,0.676752,0.765795,0.229694,0.908148,0.164844,0.855513,0.790394,0.438693,0.735365,0.794034,0.818266,0.218919,0.201275,0.219642,0.882171,0.234107,0.213764,0.976078,0.50868,0.611788,0.275559,0.0473483,0.285195,0.85763,0.40865,0.654905,0.81975,0.608529,0.23639,0.980815,0.386204,0.206761,0.170498,0.67854,0.0219039,0.85728,0.94871,0.89602,0.259019,0.239746,0.302903,0.898326,0.592159,0.769865,0.665927,0.482193,0.652246,0.117835,0.134624,0.553704,0.656228,0.378555,0.133048,0.0678653,0.821471,0.344592,0.164441,0.556542,0.898189,0.447713,0.347709,0.700997,0.436925,0.481034,0.41836,0.556932,0.302919,0.615909,0.839856,0.148775,0.300455,0.784128,0.226149,0.145774,0.903461,0.71646,0.857936,0.234086,0.369483,0.896905,0.0275706,0.0816768,0.65027,0.325605,0.417502,0.453536,0.425432,0.298668,0.35889,0.607253,0.842228,0.747436,0.607543,0.435991,0.974669,0.822428,0.44096,0.308111,0.773321,0.997999,0.398652,0.341681,0.912009,0.177102,0.637155,0.76424,0.318981,0.972793,0.409919,0.763016,0.191781,0.00644362,0.864905,0.359077,0.34159,0.22263,0.466178,0.271161,0.0803432,0.0232348,0.0311003,0.272969,0.412927,0.158315,0.460421,0.186293,0.00218725,0.234216,0.0506796,0.788174,0.501782,0.00787306,0.109542,0.436165,0.556224,0.922401,0.771735,0.460047,0.707698,0.541989,0.29183,0.843263,0.743704,0.741769,0.650269,0.226834,0.913762,0.644563,0.684112,0.688898,0.821719,0.529278,0.679787,0.973409,0.0618764,0.201031,0.345307,0.779034,0.691585,0.218314,0.945683,0.831227,0.989014,0.487888,0.867919,0.928607,0.242219,0.674544,0.929782,0.557673,0.0267567,0.620192,0.314692,0.726582,0.86995,0.583458,0.972393,0.708168,0.765654,0.700795,0.588589,0.825036,0.889685,0.194353,0.917649,0.465907,0.45798,0.0528859,0.276725,0.812929,0.425656,0.798325,0.733258,0.291583,0.513722,0.112587,0.861516,0.466897,0.275929,0.492477,0.469272,0.245488,0.418628,0.95739,0.461194,0.342162,0.049697,0.19963,0.364343,0.389108,0.109221,0.0125678,0.330911,0.784507,0.187362,0.866841,0.659972,0.774104,0.564778,0.206031,0.666869,0.131688,0.418458,0.470738,0.851661,0.920346,0.325543,0.184119,0.259202,0.779035,0.81341,0.298899,0.258099,0.117993,0.641056,0.570354,0.539591,0.856713,0.954041,0.0136319,0.780985,0.988298,0.559826,0.794296,0.543147,0.0394607,0.152709,0.368654,0.586251,0.0774378,0.283747,0.560655,0.806726,0.641714,0.461444,0.469505,0.0669684,0.22091,0.174916,0.0487951,0.956112,0.652501,0.395633,0.282868,0.771984,0.561325,0.909205,0.111815,0.489116,0.86453,0.451521,0.686253,0.170958,0.877257,0.483827,0.70937,0.330324,0.540461,0.230335,0.949428,0.167492,0.818065,0.922516,0.249399,0.0144307,0.296276,0.216955,0.571578,0.274491,0.284564,0.068681,0.215733,0.997752,0.439782,0.786524,0.157863,0.820139,0.0895404,0.922929,0.0919104,0.423427,0.238962,0.572147,0.707547,0.154634,0.883701,0.465301,0.753397,0.961532,0.852651,0.167897,0.84031,0.464941,0.44559,0.0780098,0.162329,0.371907,0.488962,0.715126,0.90338,0.218642,0.501192,0.416089,0.531066,0.754911,0.0417549,0.385455,0.647906,0.812636,0.963618,0.453985,0.994857,0.891926,0.489773,0.684175,0.389432,0.659828,0.590455,0.0461903,0.556062,0.313967,0.403379,0.0409793,0.0653191,0.95473,0.0309459,0.53974,0.997057,0.999028,0.719354,0.661939,0.182445,0.449049,0.303782,0.629844,0.486069,0.387963,0.974469,0.290723,0.94786,0.802829,0.723974,0.556462,0.0306824,0.921523,0.972092,0.578475,0.0219665,0.60147,0.589519,0.486184,0.0417458,0.807813,0.479454,0.0379168,0.197309,0.798078,0.0948997,0.995639,0.543471,0.93158,0.000559449,0.304013,0.931953,0.112741,0.315815,0.472783,0.765514,0.474122,0.802648,0.438245,0.548342,0.800234,0.106248,0.449115,0.627893,0.92627,0.677213,0.889309,0.0345182,|0.181559,0.492873,0.634613,0.35296,0.404939,0.515921,0.451429,0.552647,0.876896,0.715274,0.946886,0.267912,0.948136,0.900536,0.449536,0.682227,0.402309,0.36394,0.127189,0.153418,0.18565,0.134985,0.619355,0.3157,0.133774,0.13862,0.831023,0.298653,0.402094,0.30673,0.581971,0.252622,0.976629,0.170616,0.942862,0.341916,0.890021,0.324685,0.401131,0.579708,0.864273,0.604606,0.131832,0.647959,0.126243,0.589549,0.71367,0.964294,0.288761,0.665002,0.806455,0.676612,0.491635,0.0234698,0.886806,0.183467,0.335491,0.729007,0.372896,0.841495,0.488961,0.570785,0.115375,0.436146,0.872602,0.72887,0.374112,0.467902,0.23641,0.592817,0.622688,0.181136,0.14641,0.987771,0.940877,0.651857,0.0662661,0.144559,0.90739,0.554236,0.96456,0.746947,0.398212,0.70185,0.54212,0.740223,0.584014,0.973453,0.254108,0.170204,0.726672,0.130399,0.982868,0.656197,0.856657,0.906523,0.531175,0.823573,0.0236446,0.789631,0.965831,0.126561,0.132341,0.9183,0.688301,0.355723,0.269536,0.812054,0.989169,0.0666954,0.779793,0.562181,0.0923803,0.308318,0.572326,0.130668,0.413502,0.862432,0.71192,0.391521,0.0439213,0.796531,0.853571,0.879592,0.955846,0.576471,0.377808,0.565444,0.378492,0.605424,0.727682,0.698237,0.440731,0.912433,0.407665,0.589927,0.502843,0.678722,0.284618,0.1476,0.842038,0.656516,0.0986283,0.0284146,0.543799,0.604534,0.467179,0.343492,0.467265,0.82437,0.760008,0.453918,0.949534,0.38053,0.962384,0.176521,0.633516,0.161268,0.884617,0.259873,0.295225,0.0604296,0.88807,0.183371,0.706153,0.461091,0.339379,0.906788,0.97795,0.784113,0.98883,0.836425,0.604884,0.752922,0.854708,0.21128,0.288525,0.179838,0.596409,0.496896,0.00368273,0.127207,0.510961,0.234572,0.0417905,0.765935,0.405833,0.518706,0.397279,0.0973405,0.197958,0.699085,0.922453,0.834063,0.832575,0.698908,0.590502,5.12004e-05,0.86238,0.451317,0.375966,0.937648,0.510057,0.273968,0.381481,0.0835077,0.728039,0.682609,0.863817,0.783776,0.740063,0.595089,0.818525,0.639987,0.335233,0.306481,0.280032,0.766176,0.144867,0.967663,0.549562,0.717228,0.364612,0.80643,0.633335,0.325592,0.293916,0.18679,0.944069,0.848452,0.232766,0.0721278,0.995302,0.470367,0.779456,0.767072,0.900635,0.855721,0.110105,0.984637,0.50793,0.111607,0.346645,0.292185,0.0166678,0.370015,0.945667,0.348417,0.220253,0.28136,0.438044,0.525094,0.275868,0.740045,0.869572,0.877915,0.640217,0.704559,0.672025,0.136466,0.00250101,0.351767,0.0528387,0.854995,0.857078,0.593402,0.0215607,0.933418,0.191528,0.975916,0.947853,0.970893,0.640636,0.884541,0.568421,0.743586,0.734015,0.183782,0.890926,0.761433,0.281531,0.345211,0.690547,0.508661,0.104355,0.582658,0.345559,0.163037,0.823417,0.087382,0.792641,0.213653,0.563884,0.295692,0.230616,0.174321,0.441778,0.250892,0.241613,0.772459,0.988768,0.65602,0.881692,0.59465,0.0099349,0.631822,0.233892,0.687863,0.75243,0.566994,0.118253,0.833576,0.00523019,0.0861937,0.439785,0.340815,0.0253157,0.389353,0.224814,0.353669,0.743147,0.199249,0.282554,0.734696,0.236141,0.840877,0.558624,0.160069,0.550057,0.830092,0.609492,0.408819,0.0865245,0.444352,0.246608,0.313466,0.421379,0.271892,0.68611,0.499538,0.760009,0.717826,0.487864,0.434221,0.586286,0.60577,0.0866641,0.407291,0.355631,0.949507,0.734522,0.418053,0.19725,0.4119,0.79117,0.795923,0.720186,0.547206,0.346145,0.408517,0.359877,0.951001,0.65043,0.213857,0.529992,0.623464,0.58461,0.311801,0.152527,0.243121,0.907708,0.952884,0.349832,0.806115,0.849146,0.632003,0.8582,0.342155,0.710288,0.437862,0.99021,0.312541,0.411439,0.628127,0.0825765,0.268602,0.94294,0.787257,0.545303,0.136949,0.141987,0.605327,0.380781,0.152359,0.205167,0.0132053,0.688783,0.823477,0.420265,0.338898,0.575924,0.845831,0.868492,0.383927,0.890113,0.502935,0.0690064,0.208934,0.482305,0.489987,0.731167,0.364165,0.195812,0.457447,0.902287,0.591673,0.396765,0.790464,0.136749,0.115605,0.739891,0.873544,0.540631,0.608393,0.726462,0.122074,0.493887,0.35539,0.595442,0.332751,0.69242,0.208772,0.177522,0.401926,0.164232,0.449595,0.347732,0.776118,0.924709,0.285997,0.512663,0.430715,0.813241,0.207245,0.978487,0.757446,0.701815,0.824759,0.454286,0.329759,0.603918,0.576106,0.458622,0.248411,0.485906,0.0388358,0.259615,0.387867,0.500866,0.537475,0.611773,0.883531,0.646006,0.308538,0.523504,0.579894,0.77689,0.193577,0.710382,0.658879,0.547856,0.870673,0.528268,0.034642,0.079806,0.68806,0.97526,0.815069,0.579082,0.971077,0.1044,0.335303,0.991756,0.65032,0.768334,0.587183,0.709151,0.412754,0.0605036,0.970407,0.0566392,0.407646,0.261991,0.599499,0.841347,0.525734,0.146148,0.823522,0.29823,0.484949,0.154392,0.742776,0.191804,0.74937,0.366604,0.642991,0.687764,0.955257,0.256473,0.984539,0.00602835,0.574254,0.659865,0.621287,0.274696,0.598493,0.378608,0.0457812,0.861357,0.358834,0.338656,0.0273392,0.516471,0.846606,0.719861,0.605518,0.122922,0.504391,0.0131243,0.0171974,0.185755,0.505503,0.375369,0.442085,0.526786,0.283993,0.0776615,0.611692,0.959098,0.447954,0.158789,0.314294,0.0301306,0.799418,0.542652,0.393793,0.644563,0.0672782,0.465736,0.172751,0.721287,0.973178,0.347632,0.581145,0.970394,0.0531121,0.787727,0.0252785,0.207778,0.425098,0.350129,0.878018,0.563459,0.954046,0.59692,0.522173,0.20661,0.0806101,0.917571,0.209525,0.072362,0.669266,0.81877,0.447328,0.21825,0.691403,0.0283452,0.194399,0.900569,0.784887,0.00631917,0.447786,0.495169,0.730793,0.803875,0.385039,0.748118,0.446871,0.529411,0.404048,0.309499,0.932931,0.29068,0.0753044,0.756766,0.559779,0.565616,0.242461,0.306534,0.63497,0.763464,0.477031,0.0193897,0.757214,0.337813,0.928012,0.372862,0.982299,0.616819,0.872836,0.422201,0.289231,0.716809,0.900161,0.550925,0.543007,0.982419,0.290184,0.459409,0.257004,0.994668,0.528581,0.882195,0.247897,0.276406,0.807892,0.699219,0.742851,0.969784,0.803642,0.380014,0.448234,0.993379,0.114967,0.370365,0.444455,0.477966,0.473805,0.386737,0.145664,0.0708795,0.0638466,0.116586,0.324885,0.574278,0.388682,0.210656,0.923415,0.700255,0.577069,0.212555,0.699759,0.880743,0.922736,0.14023,0.54934,0.662377,0.262251,0.873042,0.600301,0.923237,0.670927,0.771308,0.0830777,0.044323,0.593765,0.765256,0.777565,0.160123,0.0251485,0.163333,0.127653,0.996218,0.0319185,0.8826,0.988264,0.195585,0.181883,0.494536,0.832668,0.616947,0.02427,0.442125,0.882109,0.855055,0.26471,0.263529,0.112939,0.657538,0.129494,0.566477,0.632356,0.867422,0.374662,0.522467,0.606454,0.403552,0.544109,0.641932,0.65779,0.871143,0.200842,0.106086,0.195802,0.104876,0.936084,0.743013,0.0852044,0.3526,0.241636,0.212451,0.790461,0.365767,0.153868,0.0322498,0.101521,0.203763,0.465241,0.981527,0.584167,0.187845,0.0935146,0.355216,0.668796,0.707886,0.92418,0.666963,0.191994,0.339875,0.0754741,0.578314,0.856189,0.931836,0.356069,0.533443,0.399384,0.997584,0.87418,0.397079,0.897075,0.713127,0.264749,0.949819,0.139206,0.403447,0.24457,0.0663796,0.907473,0.314054,0.280426,0.854863,0.612382,0.32966,0.532579,0.0989593,0.355699,0.00295305,0.556207,0.471061,0.221907,0.73856,0.77728,0.773572,0.0141208,0.704133,0.114921,0.0315903,0.515435,0.100528,0.436954,0.113413,0.521305,0.259165,0.164278,0.111458,0.523444,0.940305,0.351882,0.427694,0.13204,0.842391,0.691335,0.922216,0.180106,0.907518,0.999914,0.694969,0.549899,0.530815,0.440247,0.704269,0.810085,0.439959,0.585497,0.118679,0.963532,0.294413,0.153566,0.52477,0.257288,0.205073,0.887345,0.456602,0.981748,0.857771,0.507167,0.092663,0.442445,0.908988,0.261302,0.00108081,0.718746,0.918944,0.389564,0.5467,0.150151,0.176262,0.0152182,0.602394,0.653971,0.302511,0.871428,0.926837,0.830292,0.94114,0.597795,0.685706,0.871267,0.201325,0.983237,0.484893,0.378536,0.876354,0.916635,0.31779,0.696514,0.970545,0.334514,0.325579,0.152107,0.403502,0.549124,0.345049,0.724449,0.840492,0.0846242,0.993244,0.851241,0.466709,0.953657,0.105577,0.870727,0.367255,0.732971,0.76326,0.964241,0.3152,0.692946,0.44681,0.467892,0.767877,0.376098,0.381375,0.955115,0.589866,0.621817,0.237877,0.0461298,0.313349,0.362186,0.384889,0.574637,0.822413,0.923644,0.0847816,0.0197128,0.512998,0.212484,0.295045,0.232702,0.428287,0.368827,0.303914,0.702849,0.629836,0.785643,0.780991,0.729283,0.0491084,0.751126,0.799914,0.773291,0.572849,0.231108,0.0432769,0.468664,0.101963,0.47498,0.625566,0.63145,0.806208,0.687338,0.0410484,0.44283,0.145849,0.288229,0.423959,0.92007,0.983701,0.223214,0.909482,0.251979,0.641861,0.197835,0.36843,0.220679,0.417964,0.845499,0.109438,0.428905,0.661302,0.0771883,0.96975,0.724456,0.259751,0.25775,0.505509,0.405159,0.69576,0.360826,0.370805,0.388756,0.628698,0.950818,0.0449808,0.892518,0.759389,0.849889,0.83452,0.617413,0.802027,0.436587,0.772808,0.939392,0.959121,0.16667,0.170637,0.709814,0.934256,0.429163,0.409311,0.915192,0.854141,0.81373,0.577202,0.799021,0.937383,0.230831,0.00389719,0.66758,0.480023,0.389881,0.497918,0.418318,0.968321,0.219506,0.049639,0.042338,0.423948,0.0797565,0.648278,0.28925,0.101659,0.933546,0.556206,0.739362,0.0511512,0.166679,0.249287,0.881312,0.16596,0.569824,0.725299,0.0253581,0.82875,0.433583,0.200611,0.540254,0.635654,0.425653,0.801602,0.492458,0.31392,0.114706,0.825092,0.302458,0.0530412,0.261705,0.919862,0.414818,|0.0594749,0.148313,0.279552,0.120394,0.581134,0.479953,0.990742,0.437861,0.209892,0.555883,0.951792,0.145311,0.143094,0.449215,0.864377,0.688548,0.323868,0.260987,0.817228,0.545465,0.10803,0.773401,0.20304,0.518325,0.381893,0.891133,0.0533035,0.0691032,0.705694,0.11247,0.24358,0.0387338,0.926739,0.29343,0.574473,0.168245,0.328377,0.0718153,0.284224,0.25357,0.721543,0.796163,0.25496,0.320244,0.983465,0.640295,0.499827,0.0689516,0.660637,0.644976,0.785716,0.610181,0.755721,0.684537,0.421036,0.82563,0.376622,0.872112,0.574383,0.395196,0.076627,0.0451297,0.17948,0.658694,0.0821282,0.409941,0.905431,0.918227,0.351928,0.00178796,0.703686,0.917804,0.752891,0.296624,0.575886,0.969217,0.140235,0.480298,0.357904,0.433185,0.784279,0.20497,0.737352,0.00796944,0.141819,0.310794,0.668482,0.725136,0.146639,0.356762,0.801096,0.838881,0.43985,0.934988,0.528859,0.29434,0.0911383,0.802624,0.156249,0.316283,0.262458,0.150025,0.657706,0.65448,0.278829,0.941708,0.713927,0.0925543,0.0613971,0.554598,0.78868,0.314694,0.892959,0.501657,0.701145,0.695979,0.542194,0.644011,0.834286,0.74123,0.0958208,0.0419412,0.0376659,0.374194,0.705383,0.930743,0.875641,0.95186,0.873124,0.0655862,0.426289,0.511462,0.803855,0.951794,0.605726,0.164284,0.762827,0.0532106,0.990536,0.318697,0.885052,0.0705723,0.397459,0.692305,0.645018,0.615547,0.757922,0.352886,0.0455404,0.100601,0.682678,0.214277,0.307925,0.96633,0.732072,0.64005,0.99325,0.631904,0.184011,0.332741,0.49041,0.390107,0.0916268,0.30642,0.0463927,0.219354,0.286754,0.680275,0.79655,0.563668,0.844294,0.0528569,0.505977,0.660136,0.877081,0.974987,0.710605,0.0311606,0.0778972,0.713225,0.442435,0.840133,0.162509,0.0160194,0.377506,0.485636,0.537549,0.191808,0.517916,0.405393,0.815609,0.421158,0.729876,0.00238323,0.347336,0.258968,0.216134,0.128191,0.427763,0.0937374,0.231479,0.0992932,0.217297,0.936936,0.823764,0.185078,0.952587,0.403994,0.91498,0.584193,0.614908,0.177639,0.576718,0.160004,0.0730249,0.59261,0.996481,0.85576,0.770221,0.848345,0.495093,0.438214,0.663895,0.529536,0.646631,0.86861,0.96046,0.0879958,0.376607,0.797421,0.642683,0.816046,0.493797,0.790431,0.853155,0.37406,0.496932,0.593146,0.526986,0.571849,0.684015,0.831219,0.362086,0.468692,0.305188,0.00198507,0.303436,0.861868,0.568608,0.339672,0.820485,0.808912,0.415719,0.888622,0.359584,0.0445687,0.212499,0.187189,0.684422,0.431145,0.880722,0.619618,0.532766,0.621453,0.983238,0.391507,0.54914,0.805961,0.795952,0.227462,0.123083,0.0568751,0.652352,0.425762,0.730581,0.401104,0.438793,0.529985,0.195997,0.604697,0.953953,0.941523,0.866418,0.743102,0.725843,0.752951,0.189395,0.120249,0.0180457,0.147901,0.688022,0.243281,0.686853,0.871517,0.278578,0.56469,0.569245,0.120103,0.0759986,0.318572,0.426856,0.611923,0.0447803,0.834759,0.395822,0.222125,0.0949227,0.0263333,0.92758,0.288191,0.0794396,0.670613,0.46782,0.713365,0.766492,0.190078,0.907815,0.658217,0.45532,0.362277,0.442425,0.0636797,0.405218,0.193324,0.852716,0.0617297,0.71671,0.992539,0.811569,0.485351,0.200806,0.689088,0.354356,0.286765,0.859161,0.568738,0.865397,0.0717047,0.505442,0.308961,0.49351,0.903259,0.404841,0.725911,0.955763,0.54212,0.903796,0.35582,0.462703,0.54193,0.0872136,0.972501,0.798389,0.484089,0.728484,0.374574,0.327979,0.310455,0.545583,0.0215113,0.742017,0.687391,0.171646,0.885474,0.431098,0.19977,0.637187,0.120532,0.0759593,0.761952,0.333454,0.322332,0.908541,0.158674,0.0600251,0.00857705,0.631878,0.0346457,0.388105,0.457167,0.676858,0.127389,0.899424,0.140062,0.446915,0.328507,0.913547,0.262261,0.603381,0.254884,0.286609,0.905195,0.911944,0.0912312,0.398264,0.73642,0.355995,0.552278,0.638367,0.494985,0.0294277,0.621844,0.846234,0.772778,0.515962,0.780878,0.179851,0.153928,0.251255,0.461864,0.386744,0.167,0.169562,0.197652,0.681262,0.79507,0.0106064,0.921241,0.622607,0.693957,0.840847,0.611065,0.776267,0.585122,0.458099,0.414913,0.637068,0.661951,0.203441,0.232692,0.600837,0.822802,0.0339139,0.104342,0.827872,0.669706,0.0460691,0.224492,0.662405,0.49296,0.761345,0.962274,0.298762,0.277463,0.695592,0.309821,0.027908,0.64759,0.901561,0.267695,0.859212,0.397251,0.535121,0.973656,0.624971,0.680354,0.818454,0.875634,0.535369,0.901305,0.869399,0.507623,0.811915,0.883586,0.590829,0.380896,0.565524,0.0490506,0.241958,0.369504,0.295993,0.792125,0.498109,0.152153,0.315523,0.425943,0.419468,0.244737,0.0416015,0.131948,0.692927,0.962164,0.163676,0.132211,0.542107,0.618613,0.157484,0.833185,0.63485,0.234602,0.505464,0.885788,0.539784,0.965004,0.18345,0.957459,0.724258,0.637499,0.298836,0.00463486,0.264995,0.283432,0.801912,0.476547,0.830892,0.88506,0.600918,0.611041,0.303903,0.265261,0.932589,0.707078,0.118845,0.562097,0.490773,0.0496692,0.24532,0.469797,0.307335,0.407013,0.980281,0.513892,0.852337,0.522483,0.320574,0.915262,0.693577,0.507387,0.208262,0.37424,0.61477,0.0264113,0.431366,0.905978,0.12206,0.579596,0.0159171,0.0246483,0.649383,0.67553,0.490233,0.892178,0.978071,0.415778,0.351906,0.201411,0.794683,0.370621,0.685302,0.950779,0.744121,0.629021,0.804071,0.354072,0.976276,0.610035,0.228498,0.615582,0.111585,0.164659,0.416583,0.433356,0.277148,0.893675,0.602982,0.264752,0.280322,0.772863,0.122178,0.777376,0.250899,0.702766,0.602324,0.305326,0.72374,0.633154,0.730062,0.251406,0.444547,0.647401,0.0501961,0.200643,0.77731,0.694122,0.702393,0.591981,0.290034,0.830343,0.964087,0.57936,0.0779775,0.616942,0.0965528,0.40809,0.803859,0.75938,0.27849,0.881161,0.501041,0.23683,0.890597,0.452041,0.821996,0.0881041,0.578879,0.379518,0.0727398,0.144055,0.251229,0.488768,0.288451,0.592684,0.947352,0.745408,0.383021,0.2487,0.156379,0.59274,0.715453,0.560912,0.297934,0.986874,0.75879,0.575299,0.889914,0.0272451,0.153307,0.190816,0.0531803,0.777033,0.305957,0.37873,0.0566646,0.0198058,0.0917431,0.795215,0.613363,0.127606,0.618212,0.451313,0.338046,0.633785,0.169065,0.918122,0.335439,0.684407,0.653453,0.946629,0.201042,0.00558507,0.203413,0.451772,0.179278,0.58567,0.0974681,0.179395,0.108549,0.414639,0.309347,0.647668,0.56211,0.98436,0.168936,0.148227,0.488053,0.607316,0.918887,0.694216,0.745988,0.123234,0.846785,0.710415,0.779875,0.512243,0.281986,0.165124,0.0971424,0.0190088,0.493218,0.661346,0.312653,0.472244,0.310125,0.30546,0.308891,0.683259,0.554933,0.668495,0.17042,0.203146,0.0107799,0.803978,0.315246,0.786629,0.139049,0.128042,0.962165,0.766294,0.988215,0.251454,0.675155,0.621554,0.396059,0.149223,0.574257,0.772166,0.582267,0.330803,0.238363,0.303934,0.253329,0.293698,0.685245,0.430486,0.657967,0.667576,0.0840856,0.158551,0.123904,0.905899,0.726757,0.548523,0.338731,0.523108,0.536824,0.114153,0.127853,0.910354,0.27042,0.30985,0.0584407,0.645404,0.858814,0.810546,0.111468,0.886226,0.893802,0.512269,0.601247,0.452453,0.3972,0.479689,0.72452,0.191473,0.582049,0.55514,0.444507,0.594233,0.846787,0.547272,0.243252,0.150128,0.55735,0.782166,0.875778,0.192511,0.982401,0.71072,0.888131,0.210516,0.867668,0.106888,0.827547,0.53276,0.904085,0.31655,0.608486,0.282328,0.895687,0.908685,0.342144,0.592766,0.942021,0.465818,0.291408,0.135432,0.438589,0.271722,0.298958,0.999515,0.889156,0.93858,0.556968,0.135427,0.481578,0.259042,0.746227,0.101479,0.397562,0.619675,0.451753,0.562673,0.00969958,0.0193892,0.14411,0.180468,0.59215,0.825112,0.542466,0.81227,0.43326,0.466941,0.912214,0.89396,0.592804,0.711152,0.100978,0.464732,0.740817,0.777976,0.138801,0.100881,0.520105,0.0441052,0.145045,0.522519,0.509753,0.00882047,0.776112,0.426414,0.529991,0.149244,0.923304,0.22814,0.107737,0.41403,0.119308,0.455948,0.441674,0.405317,0.0367855,0.65305,0.517546,0.279563,0.928865,0.222861,0.27272,0.732882,0.452789,0.289214,0.989212,0.519994,0.860318,0.511974,0.153225,0.7019,0.569411,0.70164,0.735246,0.776822,0.647552,0.0588071,0.780268,0.0954694,0.872201,0.844389,0.640839,0.632892,0.773045,0.287015,0.817231,0.282068,0.290935,0.182162,0.811229,0.246696,0.667362,0.858904,0.555183,0.880735,0.598266,0.778865,0.318498,0.195739,0.724467,0.499552,0.0107102,0.76271,0.813927,0.816215,0.172285,0.402777,0.0981258,0.162939,0.0112783,0.135217,0.219546,0.52239,0.346644,0.683447,0.170032,0.415665,0.687832,0.902444,0.538263,0.420311,0.988626,0.525936,0.187822,0.823224,0.674346,0.328666,0.0663485,0.124903,0.694267,0.612423,0.509973,0.139204,0.361658,0.0838138,0.0882328,0.444675,0.0574777,0.945821,0.225557,0.0622973,0.571138,0.871963,0.759045,0.39436,0.370232,0.0302762,0.788892,0.627515,0.284322,0.62251,0.0947956,0.64593,0.917118,0.32746,0.64508,0.912543,0.587427,0.649386,0.695491,0.050967,0.733094,0.583687,0.526341,0.0810327,0.481334,0.729486,0.460951,0.353216,0.241598,0.929115,0.759176,0.761147,0.354744,0.915768,0.671327,0.280607,0.154465,0.62982,0.92128,0.610862,0.706962,0.313544,0.980459,0.700102,0.56084,0.422912,0.757947,0.813819,0.64973,0.0161505,0.660512,0.846035,0.0109044,0.465748,0.77412,0.608596,0.817977,0.765928,0.319769,0.803647,0.298695,0.476447,0.884316,0.423941,0.411888,0.924608,0.00367373,0.171433,0.315913,0.270576,0.172176,0.420849,0.711846,0.903034,0.517548,0.201227,0.424411,0.610499,0.664882,0.0521948,0.64235,0.825798,0.934172,0.0753364,|0.256162,0.686899,0.0302723,0.269133,0.500408,0.586309,0.616745,0.369712,0.946722,0.698564,0.11199,0.496775,0.23657,0.922163,0.871747,0.385344,0.103793,0.954328,0.0202246,0.964873,0.048561,0.634138,0.156955,0.205919,0.900977,0.0916749,0.743719,0.880245,0.805222,0.295793,0.944688,0.828705,0.674133,0.228779,0.2045,0.958329,0.805641,0.469318,0.643686,0.882061,0.410454,0.700641,0.98599,0.141987,0.894161,0.754158,0.419701,0.209041,0.975758,0.10187,0.0569344,0.274579,0.303948,0.702752,0.601244,0.899169,0.0864062,0.429894,0.99048,0.97962,0.993848,0.325829,0.0391164,0.549421,0.404642,0.928018,0.846733,0.675384,0.141632,0.245451,0.0307655,0.630364,0.896271,0.2608,0.703546,0.480907,0.788302,0.0101505,0.401472,0.590813,0.123008,0.997018,0.688382,0.944634,0.364696,0.3655,0.470179,0.925092,0.67216,0.731394,0.114468,0.0816378,0.651489,0.891712,0.830086,0.495471,0.273482,0.583209,0.386158,0.465732,0.355618,0.0502918,0.147315,0.626607,0.266598,0.23053,0.188521,0.770548,0.861069,0.426175,0.464173,0.280975,0.513496,0.203,0.165797,0.110564,0.384774,0.966839,0.509999,0.650691,0.893121,0.207556,0.925439,0.56256,0.0662672,0.0807207,0.832484,0.619496,0.964169,0.417362,0.834225,0.755389,0.927,0.981938,0.681046,0.728905,0.834276,0.796531,0.812794,0.220353,0.701765,0.445571,0.518365,0.931782,0.492866,0.369877,0.443822,0.684244,0.0824759,0.845846,0.0429963,0.789981,0.629976,0.512079,0.7971,0.00944692,0.109468,0.265637,0.170169,0.492567,0.254366,0.767989,0.663922,0.0878612,0.907154,0.892253,0.419793,0.410468,0.567198,0.203851,0.295729,0.958241,0.176375,0.756758,0.211922,0.433408,0.53822,0.0310346,0.700564,0.75001,0.416745,0.339793,0.8126,0.312207,0.868664,0.479562,0.634957,0.418581,0.723819,0.645518,0.827718,0.114195,0.833013,0.00914395,0.957541,0.989525,0.132442,0.220552,0.0590298,0.961375,0.947273,0.3129,0.0376071,0.968562,0.742643,0.771755,0.582244,0.390438,0.537705,0.158043,0.837772,0.398765,0.459916,0.346778,0.23461,0.9581,0.496862,0.627782,0.243609,0.585574,0.0208223,0.871303,0.0652162,0.491383,0.753607,0.103377,0.0202901,0.562181,0.756037,0.191446,0.0871807,0.703083,0.56242,0.276243,0.0336871,0.420128,0.0579932,0.510058,0.609845,0.62998,0.350547,0.257611,0.0895814,0.932812,0.898554,0.820161,0.689038,0.200729,0.675888,0.741092,0.777928,0.555068,0.365076,0.0109355,0.0322326,0.581879,0.0604503,0.883328,0.152232,0.980285,0.66661,0.370297,0.883272,0.452412,0.955754,0.0959296,0.594044,0.968137,0.492007,0.859467,0.122068,0.775978,0.460958,0.413305,0.570813,0.274172,0.558993,0.741457,0.779993,0.407842,0.735448,0.622131,0.109368,0.846374,0.848753,0.676816,0.578838,0.930481,0.292021,0.277007,0.592232,0.701069,0.886311,0.0909531,0.098096,0.704925,0.251731,0.893852,0.738815,0.211501,0.35958,0.242681,0.0892894,0.286084,0.293217,0.882201,0.980138,0.911358,0.50327,0.623888,0.153993,0.998373,0.33736,0.611736,0.477522,0.547713,0.32908,0.601036,0.607316,0.541364,0.0288516,0.15951,0.875572,0.658503,0.523904,0.995703,0.218517,0.310388,0.73708,0.40858,0.0864137,0.643297,0.191889,0.721307,0.364975,0.87905,0.899273,0.0322235,0.0954428,0.917719,0.928677,0.271908,0.293307,0.635294,0.672071,0.247818,0.73533,0.593756,0.237472,0.998152,0.820734,0.878708,0.626286,0.197223,0.887699,0.676372,0.725003,0.238688,0.793689,0.0345618,0.358768,0.143168,0.347443,0.722415,0.926363,0.279125,0.791458,0.99037,0.000632882,0.730103,0.823995,0.972595,0.309135,0.323668,0.263402,0.849322,0.593012,0.76201,0.648088,0.804849,0.00964516,0.634436,0.359265,0.158635,0.544489,0.43216,0.373313,0.0292285,0.82866,0.564833,0.00262928,0.667705,0.131119,0.907564,0.0227442,0.54007,0.142219,0.623731,0.681422,0.0116476,0.165354,0.646753,0.665772,0.796252,0.179132,0.74437,0.253093,0.647651,0.45439,0.0754467,0.467578,0.443982,0.333572,0.476331,0.638112,0.249264,0.31286,0.718013,0.671898,0.554195,0.524274,0.289928,0.682807,0.341524,0.993011,0.970695,0.797219,0.535387,0.843136,0.496062,0.738217,0.526672,0.78356,0.990101,0.227532,0.184721,0.734062,0.752235,0.0662893,0.437518,0.574642,0.527217,0.360672,0.996037,0.754876,0.634798,0.716751,0.213988,0.378603,0.279783,0.632565,0.673569,0.779349,0.874283,0.576174,0.487255,0.735086,0.605451,0.02248,0.611499,0.290322,0.514357,0.358031,0.295623,0.535763,0.0419661,0.652566,0.438839,0.205771,0.0800135,0.558494,0.42144,0.969656,0.87707,0.661436,0.280748,0.403311,0.351367,0.907954,0.550362,0.463205,0.449963,0.656969,0.969225,0.435611,0.789099,0.659916,0.900266,0.174804,0.766849,0.46261,0.176167,0.00972015,0.462129,0.384075,0.818459,0.186693,0.831397,0.930199,0.667605,0.429649,0.0182858,0.957792,0.151203,0.744739,0.275707,0.566604,0.297056,0.677395,0.682136,0.63514,0.124867,0.511374,0.0802709,0.14737,0.783166,0.87041,0.395812,0.818375,0.294915,0.141673,0.222932,0.765937,0.969574,0.259504,0.899741,0.513585,0.378801,0.928771,0.242297,0.925395,0.904732,0.96864,0.519905,0.98397,0.755596,0.933774,0.182519,0.32082,0.915199,0.766611,0.0332891,0.101944,0.396296,0.71622,0.513695,0.607817,0.25711,0.0064612,0.241412,0.432137,0.0992216,0.679978,0.970102,0.940988,0.515091,0.731553,0.940722,0.528332,0.518905,0.296142,0.477012,0.45061,0.0231787,0.573681,0.72083,0.0163809,0.512632,0.851131,0.54725,0.106782,0.0418729,0.8037,0.984958,0.38769,0.82521,0.17988,0.880014,0.433118,0.284057,0.0213174,0.667627,0.74784,0.579718,0.437356,0.70236,0.648597,0.0477798,0.894981,0.58179,0.164845,0.406902,0.292552,0.94056,0.506974,0.548976,0.0276423,0.363083,0.871924,0.555399,0.411019,0.173947,0.57759,0.312745,0.78965,0.0813732,0.66124,0.828114,0.633666,0.51567,0.813109,0.32343,0.362112,0.869183,0.361737,0.110847,0.727762,0.426265,0.474949,0.138049,0.738298,0.65994,0.884957,0.351025,0.758185,0.0500481,0.762525,0.928396,0.193882,0.981356,0.355843,0.130259,0.903733,0.710431,0.95246,0.881667,0.874972,0.487274,0.37903,0.502307,0.890291,0.0403793,0.812597,0.918906,0.844792,0.577492,0.949141,0.28587,0.316091,0.844399,0.296824,0.763861,0.878087,0.0846638,0.546305,0.967467,0.709222,0.165184,0.689303,0.805053,0.662721,0.605018,0.979882,0.85647,0.569052,0.0813314,0.25523,0.0352094,0.819793,0.804655,0.673722,0.617654,0.282915,0.343719,0.121794,0.619307,0.39884,0.119167,0.0248572,0.199166,0.825073,0.947934,0.275231,0.647658,0.722383,0.402803,0.713597,0.685315,0.548518,0.382564,0.357954,0.428066,0.665691,0.707002,0.618216,0.213125,0.219647,0.921371,0.067248,0.591044,0.290108,0.966406,0.687277,0.185941,0.671184,0.338001,0.689448,0.675479,0.00348508,0.763529,0.69167,0.190776,0.0443108,0.667775,0.0955286,0.157725,0.297111,0.142134,0.871585,0.381049,0.692248,0.461582,0.116612,0.871909,0.0870588,0.416641,0.106463,0.995288,0.494781,0.027473,0.51133,0.41081,0.894693,0.663082,0.11723,0.640183,0.605432,0.0262525,0.143787,0.444364,0.755686,0.259364,0.820031,0.687301,0.370355,0.712596,0.10429,0.823638,0.222519,0.43535,0.155581,0.608684,0.330192,0.277049,0.510592,0.709724,0.156097,0.962276,0.452602,0.31536,0.753409,0.911063,0.346059,0.748116,0.334707,0.149735,0.181738,0.566995,0.859712,0.0274742,0.198355,0.53312,0.304617,0.645608,0.481258,0.61872,0.338726,0.618835,0.645458,0.441108,0.631463,0.292184,0.89918,0.106108,0.901963,0.264185,0.934179,0.341753,0.812299,0.4022,0.439801,0.15666,0.161388,0.754801,0.630505,0.18163,0.0721487,0.143269,0.900585,0.469803,0.210029,0.100111,0.127358,0.0597593,0.382111,0.648088,0.619627,0.0786906,0.412333,0.164262,0.580476,0.360295,0.592155,0.911866,0.221606,0.766726,0.914838,0.553278,0.788042,0.579616,0.139673,0.188842,0.176628,0.431206,0.522767,0.769129,0.791181,0.780612,0.941077,0.252806,0.888095,0.761701,0.129799,0.0664433,0.389417,0.238351,0.139422,0.861089,0.746984,0.0876149,0.385234,0.204659,0.199476,0.124322,0.329193,0.222581,0.166357,0.644053,0.186841,0.087517,0.274443,0.849358,0.093656,0.208619,0.695734,0.942169,0.8344,0.376119,0.9039,0.669745,0.584049,0.50569,0.798349,0.720219,0.304847,0.728229,0.989629,0.995576,0.141746,0.474234,0.626416,0.337658,0.379838,0.742431,0.383107,0.134909,0.40662,0.89279,0.335011,0.315907,0.349873,0.256535,0.481152,0.442217,0.363136,0.120445,0.488363,0.977857,0.20779,0.66848,0.69146,0.302998,0.0262145,0.551334,0.481367,0.863615,0.844647,0.276652,0.79683,0.240457,0.202943,0.185041,0.847425,0.60291,0.68979,0.627764,0.197129,0.756484,0.109659,0.156637,0.455823,0.0418671,0.225631,0.305792,0.621385,0.57903,0.86826,0.959928,0.750686,0.472978,0.654609,0.137118,0.859718,0.714528,0.226489,0.00928658,0.831045,0.785087,0.5846,0.57769,0.656009,0.689451,0.96932,0.99941,0.654029,0.298667,0.776283,0.634419,0.144284,0.897656,0.250717,0.642992,0.24048,0.826874,0.355562,0.800782,0.755452,0.151794,0.35639,0.0712698,0.391101,0.532834,0.128961,0.109548,0.191785,0.94835,0.812345,0.993792,0.964374,0.68904,0.919558,0.809679,0.874075,0.870404,0.338359,0.201929,0.503844,0.910413,0.698279,0.166028,0.885781,0.625509,0.808139,0.395653,0.99779,0.297829,0.544693,0.200638,0.30769,0.922085,0.174156,0.531857,0.20127,0.245299,0.760735,0.113862,0.901443,0.718853,0.722489,0.70751,0.738459,0.0471969,0.633186,0.436014,0.38559,0.0608393,0.496069,0.775538,0.448885,0.830085,|0.32097,0.102993,0.510334,0.205867,0.505628,0.244921,0.82032,0.92808,0.628935,0.11031,0.988796,0.825635,0.187317,0.985922,0.166036,0.12121,0.611025,0.705226,0.220165,0.319486,0.243245,0.950469,0.662091,0.882515,0.0166876,0.825383,0.657249,0.948848,0.548737,0.821665,0.266217,0.14418,0.238251,0.858818,0.723821,0.225265,0.555344,0.680128,0.766273,0.588369,0.168959,0.269121,0.536481,0.00445944,0.875118,0.82114,0.164144,0.84571,0.245439,0.885561,0.735782,0.0733947,0.706091,0.871326,0.114176,0.423263,0.0324907,0.0538099,0.101966,0.831514,0.804946,0.547168,0.474391,0.364809,0.970819,0.62761,0.0783252,0.306079,0.124272,0.569145,0.0504412,0.200366,0.422757,0.391613,0.794917,0.479024,0.970228,0.134989,0.566288,0.784197,0.31815,0.770035,0.21902,0.633518,0.507975,0.219945,0.132005,0.230076,0.281783,0.257251,0.00591797,0.638308,0.343327,0.525067,0.379436,0.253223,0.132476,0.778911,0.93034,0.484269,0.793518,0.665876,0.838939,0.75688,0.0432367,0.607324,0.766848,0.482957,0.101173,0.973817,0.852537,0.82967,0.793272,0.132755,0.914298,0.746485,0.0479636,0.964069,0.104205,0.789254,0.356017,0.678845,0.45938,0.372442,0.693874,0.530977,0.498075,0.517787,0.979062,0.265216,0.470211,0.442717,0.676753,0.544231,0.669431,0.562131,0.951302,0.356803,0.937183,0.472544,0.498797,0.392263,0.659886,0.987405,0.855515,0.330007,0.439313,0.0242373,0.359245,0.292228,0.999025,0.613853,0.746646,0.469494,0.460815,0.198821,0.231893,0.549353,0.347002,0.184421,0.509061,0.114461,0.831999,0.360197,0.409445,0.226388,0.356716,0.582679,0.839873,0.278459,0.61779,0.505793,0.395553,0.636447,0.196932,0.345433,0.295085,0.788417,0.569365,0.476016,0.640858,0.71724,0.247445,0.114617,0.67671,0.856166,0.294522,0.00153339,0.18501,0.470339,0.477664,0.23776,0.475025,0.870741,0.907537,0.512959,0.401156,0.128793,0.232462,0.0924943,0.773731,0.282313,0.233567,0.95129,0.0188767,0.793782,0.24215,0.912442,0.126894,0.125895,0.896987,0.532441,0.399003,0.715337,0.00308508,0.281542,0.344534,0.237765,0.774101,0.40021,0.687501,0.545924,0.823485,0.564397,0.767249,0.167154,0.648539,0.0765076,0.260863,0.831554,0.516644,0.41843,0.000500321,0.192298,0.30298,0.386225,0.000131726,0.40303,0.344959,0.126068,0.30522,0.632276,0.469174,0.391254,0.484894,0.43468,0.839571,0.286618,0.37856,0.311271,0.203468,0.794935,0.373711,0.0625793,0.459665,0.502952,0.798501,0.633951,0.762143,0.397833,0.720059,0.451035,0.377128,0.587325,0.216883,0.471242,0.56353,0.475221,0.0442654,0.152764,0.952038,0.528877,0.823512,0.583159,0.139474,0.618955,0.634524,0.412211,0.727268,0.861709,0.292549,0.195501,0.00873959,0.668055,0.455005,0.624044,0.318025,0.761639,0.61001,0.876609,0.137874,0.667411,0.499813,0.90688,0.126414,0.618211,0.705307,0.0358915,0.433644,0.79746,0.160628,0.982515,0.492065,0.274721,0.218238,0.00696737,0.151746,0.269932,0.0830014,0.178142,0.272758,0.26182,0.24488,0.402743,0.394843,0.130334,0.488902,0.723082,0.721411,0.241072,0.61398,0.11822,0.0773506,0.76046,0.870163,0.670992,0.250706,0.413851,0.0394472,0.488552,0.338169,0.455595,0.905222,0.666534,0.580196,0.684333,0.839946,0.740758,0.104758,0.0519867,0.472708,0.170268,0.403453,0.867381,0.0463225,0.701717,0.194747,0.556823,0.735254,0.84471,0.0302359,0.648295,0.382105,0.689,0.503573,0.527699,0.428552,0.127106,0.305803,0.934321,0.480585,0.584804,0.422308,0.684566,0.495909,0.922575,0.181293,0.921175,0.940947,0.0638551,0.602731,0.0562359,0.42255,0.740579,0.783815,0.0723237,0.49813,0.27829,0.306501,0.417042,0.0164201,0.656225,0.184831,0.176905,0.478548,0.771131,0.450157,0.801594,0.747757,0.515534,0.970501,0.134816,0.513401,0.964317,0.670781,0.410722,0.953923,0.695364,0.624176,0.119442,0.477708,0.708676,0.0833607,0.221775,0.56864,0.242581,0.270134,0.286825,0.932743,0.0942157,0.693889,0.45894,0.00275552,0.582211,0.983875,0.309157,0.89302,0.830849,0.179058,0.43778,0.792929,0.872683,0.293995,0.937315,0.485794,0.913394,0.599722,0.212897,0.606572,0.271762,0.4077,0.0829332,0.581926,0.989368,0.476836,0.448247,0.35054,0.691487,0.632359,0.170427,0.874834,0.797121,0.0119504,0.0182731,0.0973174,0.961316,0.187001,0.538571,0.527504,0.632681,0.500452,0.310854,0.0650881,0.183733,0.547447,0.243269,0.912233,0.511477,0.611169,0.941128,0.0128741,0.141332,0.408563,0.231113,0.673606,0.271419,0.484121,0.502901,0.755824,0.769587,0.817196,0.707194,0.922678,0.693122,0.150524,0.944013,0.35758,0.976399,0.418007,0.185389,0.122114,0.225691,0.291626,0.591634,0.345631,0.622263,0.544433,0.240938,0.00562853,0.80467,0.702923,0.707921,0.691313,0.246347,0.944929,0.545583,0.199634,0.0527704,0.84142,0.444065,0.936789,0.00614822,0.488408,0.250402,0.415468,0.820215,0.745113,0.39834,0.144518,0.192527,0.123332,0.508443,0.353952,0.546441,0.618399,0.67413,0.976098,0.992018,0.662404,0.913249,0.439673,0.678559,0.231384,0.471246,0.496036,0.0273961,0.401793,0.566482,0.886688,0.381656,0.603294,0.666803,0.494658,0.621629,0.253564,0.542419,0.0671652,0.728744,0.774033,0.47467,0.531655,0.448294,0.330494,0.602065,0.0261227,0.697162,0.000838697,0.264446,0.808092,0.0758929,0.638344,0.973633,0.19053,0.687474,0.936518,0.188144,0.401931,0.570014,0.76499,0.974495,0.720835,0.521819,0.468284,0.561458,0.304125,0.023503,0.969642,0.698864,0.514691,0.906518,0.0665436,0.772138,0.193872,0.430114,0.421599,0.163336,0.172985,0.965981,0.938988,0.996546,0.0487292,0.603403,0.11875,0.0286729,0.979936,0.19847,0.449145,0.0585054,0.562073,0.620231,0.152304,0.619475,0.863871,0.285785,0.823162,0.00539517,0.145914,0.1574,0.94523,0.806038,0.545069,0.701538,0.0472116,0.511888,0.771127,0.623863,0.360516,0.194796,0.143047,0.469623,0.740268,0.919836,0.244556,0.661628,0.712454,0.68221,0.275631,0.878376,0.0435173,0.231409,0.382174,0.859147,0.98204,0.884785,0.245557,0.595406,0.524058,0.286808,0.24545,0.142367,0.87987,0.242559,0.928316,0.974879,0.707531,0.367322,0.0673242,0.219183,0.34802,0.799633,0.409896,0.369786,0.726767,0.406735,0.236515,0.0609183,0.943293,0.944927,0.714231,0.418905,0.261793,0.144251,0.323156,0.166039,0.29748,0.232944,0.152035,0.00768113,0.263044,0.348433,0.0433022,0.981893,0.362961,0.740211,0.0757198,0.799916,0.512062,0.674854,0.252078,0.460054,0.640589,0.208908,0.606185,0.647095,0.911513,0.183386,0.721738,0.754937,0.0958179,0.283716,0.3565,0.2754,0.722852,0.919604,0.582123,0.363451,0.260111,0.429947,0.354755,0.576056,0.582245,0.739765,0.0123912,0.403788,0.0331903,0.790398,0.275686,0.242567,0.306628,0.7391,0.622957,0.165742,0.600762,0.492512,0.452793,0.302225,0.672653,0.389897,0.511307,0.573055,0.205581,0.475912,0.40943,0.986954,0.707245,0.362759,0.159128,0.737065,0.364483,0.662608,0.931998,0.128897,0.102816,0.746173,0.339265,0.53742,0.810511,0.681581,0.963381,0.437404,0.0433205,0.305492,0.145471,0.337716,0.41135,0.415766,0.862423,0.771788,0.231248,0.0601431,0.945773,0.709527,0.145006,0.65124,0.116274,0.136862,0.662973,0.835967,0.686994,0.86685,0.252636,0.882475,0.380088,0.854072,0.472693,0.762985,0.562661,0.858338,0.179726,0.416184,0.744202,0.371531,0.435163,0.958331,0.50601,0.539084,0.797627,0.0109856,0.569784,0.973159,0.870533,0.314415,0.372932,0.839787,0.353216,0.234356,0.570955,0.590783,0.0349294,0.517649,0.378715,0.972246,0.841106,0.0829356,0.343657,0.848132,0.364253,0.499776,0.269824,0.0751038,0.905623,0.321963,0.814447,0.709912,0.0504014,0.341904,0.800972,0.174157,0.833509,0.196768,0.580237,0.732046,0.309343,0.970893,0.0668458,0.324125,0.488327,0.804335,0.44135,0.0883762,0.491594,0.399751,0.161588,0.710263,0.369145,0.744174,0.754231,0.0235361,0.953723,0.325761,0.922096,0.328334,0.613127,0.597486,0.737197,0.0240657,0.907116,0.407243,0.924879,0.87635,0.0704235,0.345706,0.686381,0.191564,0.184015,0.170949,0.181961,0.392894,0.445912,0.520107,0.528704,0.961979,0.741873,0.888348,0.50323,0.611095,0.327495,0.92088,0.669679,0.780799,0.342922,0.809428,0.615455,0.55476,0.303505,0.494818,0.62987,0.397974,0.928842,0.509128,0.210554,0.643608,0.264995,0.789851,0.410497,0.36984,0.879871,0.940215,0.558591,0.454782,0.0435004,0.947605,0.0405697,0.828059,0.321952,0.175827,0.734389,0.506083,0.166664,0.574959,0.182708,0.697251,0.493223,0.386225,0.138142,0.384054,0.884124,0.725786,0.0868937,0.454797,0.74126,0.167062,0.026803,0.709715,0.325769,0.4424,0.832897,0.671824,0.479647,0.879505,0.87291,0.148372,0.455321,0.820231,0.983748,0.350011,0.00355488,0.195539,0.229286,0.941269,0.985037,0.283097,0.566196,0.413696,0.983175,0.710217,0.250988,0.930077,0.8337,0.30548,0.615554,0.465432,0.453674,0.786828,0.506002,0.440922,0.596182,0.177066,0.217,0.519429,0.403629,0.809318,0.219222,0.657503,0.891456,0.385914,0.863333,0.167151,0.554129,0.744435,0.0613228,0.135785,0.772962,0.364459,0.315962,0.534858,0.889322,0.59521,0.552284,0.62852,0.405188,0.768962,0.274267,0.168494,0.045366,0.77363,0.938402,0.425928,0.991558,0.529161,0.165048,0.0283655,0.230826,0.207613,0.132973,0.853968,0.829456,0.959601,0.0202952,0.353771,0.443136,0.901656,0.880056,0.470003,0.251373,0.801041,0.32127,0.975777,0.1741,0.581779,0.667013,0.34174,0.913672,0.135925,0.652727,0.0615387,0.174341,0.817954,0.402505,0.087879,0.568213,0.776808,0.405841,0.598898,0.514632,0.442344,0.189853,0.916337,0.589165,0.222572,|0.115644,0.913885,0.934863,0.0696785,0.787469,0.416036,0.645042,0.202383,0.668017,0.945996,0.704173,0.272454,0.798286,0.415503,0.0958377,0.333524,0.195376,0.260903,0.249933,0.938806,0.0569845,0.101875,0.208689,0.260424,0.545558,0.082499,0.342413,0.152212,0.654406,0.377162,0.707974,0.881215,0.499436,0.468362,0.913433,0.577567,0.16069,0.54905,0.139313,0.457054,0.407677,0.489481,0.508379,0.320203,0.423506,0.996179,0.978734,0.390752,0.326587,0.0884519,0.330706,0.622608,0.233355,0.964176,0.861965,0.111756,0.478632,0.804944,0.614836,0.203517,0.70063,0.127054,0.332117,0.994304,0.897012,0.00856245,0.973871,0.536592,0.577972,0.547244,0.313589,0.186894,0.700362,0.897364,0.637504,0.0704232,0.787273,0.887047,0.894404,0.294167,0.786413,0.866849,0.162238,0.633333,0.332936,0.0687566,0.507556,0.0112837,0.0265716,0.443345,0.295176,0.957682,0.585878,0.420027,0.512753,0.945066,0.671785,0.404381,0.0172671,0.501667,0.112319,0.807728,0.635261,0.809419,0.134425,0.756827,0.93152,0.26156,0.287468,0.892697,0.902827,0.579074,0.0718507,0.740569,0.390202,0.51625,0.181702,0.775423,0.207245,0.510157,0.403179,0.0466004,0.0871519,0.669396,0.988829,0.846967,0.79414,0.0385599,0.998552,0.530855,0.418762,0.713986,0.43152,0.892556,0.132778,0.700899,0.141882,0.136313,0.0539608,0.767114,0.297791,0.170509,0.977817,0.840057,0.452735,0.509016,0.862547,0.18547,0.972553,0.0301738,0.407137,0.994105,0.850117,0.563985,0.6899,0.0640349,0.948189,0.744288,0.308743,0.608757,0.0121889,0.553501,0.22128,0.00998712,0.207148,0.667877,0.0826066,0.985396,0.156438,0.408282,0.421026,0.230624,0.271216,0.397354,0.616981,0.740787,0.505597,0.552293,0.905344,0.235635,0.966617,0.628911,0.769392,0.419532,0.13098,0.111815,0.801353,0.460912,0.484275,0.361349,0.836503,0.318941,0.357839,0.396089,0.819827,0.645721,0.970581,0.898172,0.625104,0.903383,0.475889,0.987479,0.0469236,0.728447,0.905088,0.358135,0.177861,0.629391,0.538948,0.861995,0.224924,0.925037,0.686381,0.659696,0.343807,0.69103,0.00309128,0.54455,0.124437,0.937279,0.898966,0.199419,0.353251,0.267635,0.77253,0.634081,0.882316,0.958434,0.108541,0.165175,0.341488,0.664788,0.882143,0.7073,0.0778787,0.992139,0.717555,0.755916,0.442566,0.67568,0.237544,0.96677,0.654768,0.568509,0.193891,0.901913,0.942405,0.506978,0.258472,0.219851,0.0196933,0.84821,0.0249329,0.36832,0.741837,0.90247,0.0511448,0.32014,0.611099,0.642258,0.315388,0.737584,0.0222842,0.153945,0.964756,0.236155,0.454093,0.191687,0.268124,0.409197,0.936365,0.866664,0.618155,0.343719,0.328325,0.854946,0.988283,0.291778,0.0602115,0.976087,0.889108,0.26676,0.0897508,0.875003,0.355691,0.583407,0.0876157,0.152859,0.548641,0.813884,0.114736,0.134944,0.534633,0.708477,0.226339,0.540995,0.425797,0.256174,0.0228896,0.40864,0.539903,0.527385,0.723466,0.951654,0.531867,0.0806965,0.491418,0.954636,0.853505,0.969254,0.0695226,0.0503558,0.0947545,0.319594,0.882444,0.603886,0.773849,0.25315,0.187669,0.324844,0.671331,0.570429,0.897741,0.0160462,0.0316954,0.289445,0.620145,0.433095,0.676326,0.591309,0.861256,0.939246,0.856112,0.65327,0.510154,0.0331996,0.539058,0.689324,0.305955,0.361617,0.906795,0.680005,0.477154,0.645556,0.508059,0.80317,0.0234234,0.106844,0.146929,0.0379386,0.376636,0.244774,0.758619,0.454781,0.4082,0.222568,0.214997,0.342048,0.305938,0.715922,0.250609,0.37754,0.436787,0.639834,0.0479241,0.260261,0.231475,0.186116,0.0583912,0.0562727,0.40882,0.522635,0.598143,0.39153,0.796719,0.758125,0.721313,0.908009,0.790519,0.0623988,0.295979,0.998224,0.490658,0.0700148,0.370213,0.175992,0.3934,0.335495,0.735681,0.555111,0.900177,0.289758,0.0218122,0.315295,0.681219,0.64918,0.546852,0.155665,0.522822,0.984155,0.946218,0.560562,0.616528,0.725899,0.633931,0.162036,0.26219,0.30856,0.188105,0.900705,0.0665284,0.523299,0.246548,0.984352,0.96624,0.436913,0.115009,0.61488,0.427397,0.0210908,0.304586,0.643221,0.763951,0.962292,0.327112,0.0539049,0.0655375,0.0131848,0.273555,0.0489857,0.752029,0.484839,0.489505,0.785416,0.313583,0.526115,0.750152,0.79268,0.784482,0.738762,0.463093,0.263969,0.967695,0.048805,0.943007,0.892945,0.710043,0.756643,0.957371,0.966076,0.324166,0.479182,0.0104699,0.743473,0.586374,0.691135,0.386047,0.0692667,0.727359,0.404156,0.784648,0.888085,0.688985,0.393151,0.209143,0.805204,0.878592,0.475953,0.14315,0.258736,0.335589,0.120723,0.123114,0.305931,0.485124,0.0366955,0.343379,0.755496,0.0642581,0.431055,0.600797,0.42029,0.6099,0.756113,0.573299,0.233362,0.808183,0.0856502,0.60008,0.203761,0.422569,0.0664074,0.778314,0.0174154,0.0712122,0.595815,0.173086,0.751064,0.391051,0.965507,0.903269,0.393027,0.983284,0.28059,0.551492,0.453641,0.450783,0.960237,0.873046,0.586378,0.907031,0.837493,0.912057,0.0103733,0.144464,0.680385,0.94928,0.0622473,0.580467,0.252736,0.997372,0.81573,0.942542,0.83867,0.1494,0.828769,0.307355,0.000543594,0.168327,0.511212,0.582868,0.0480518,0.0859256,0.41409,0.511297,0.908385,0.57,0.444251,0.462961,0.281653,0.989741,0.383765,0.862454,0.33745,0.775624,0.156304,0.300615,0.37249,0.629964,0.216992,0.274784,0.684791,0.522814,0.78105,0.306152,0.505769,0.475038,0.496381,0.884721,0.676284,0.444821,0.315633,0.702422,0.73197,0.994577,0.959831,0.76026,0.979172,0.201877,0.67981,0.25515,0.227211,0.356193,0.248218,0.779417,0.223814,0.501352,0.922124,0.243167,0.641419,0.214491,0.661998,0.325605,0.230284,0.769049,0.260564,0.00548095,0.0639982,0.00727743,0.905556,0.536818,0.731397,0.579962,0.949646,0.356294,0.85393,0.935647,0.0459369,0.340658,0.851831,0.791809,0.567284,0.989238,0.439301,0.881478,0.0244389,0.690397,0.000492394,0.253224,0.840388,0.470935,0.96581,0.282019,0.21904,0.20717,0.929155,0.24957,0.664901,0.000620782,0.965254,0.915846,0.498842,0.627116,0.400503,0.896478,0.520718,0.537637,0.660232,0.547956,0.0502968,0.930257,0.164327,0.837241,0.25128,0.847683,0.639361,0.293325,0.468404,0.03385,0.951741,0.245957,0.722013,0.327608,0.125147,0.239667,0.960208,0.903111,0.242556,0.0732678,0.518207,0.664129,0.254669,0.213145,0.289218,0.959819,0.655084,0.167207,0.424056,0.0601098,0.968724,0.399625,0.287916,0.0172813,0.958336,0.883286,0.827415,0.400779,0.137211,0.670158,0.174036,0.942532,0.858709,0.255797,0.141898,0.475501,0.127386,0.160714,0.360761,0.981118,0.880836,0.673143,0.233514,0.0311454,0.845047,0.213229,0.79318,0.306687,0.342056,0.713181,0.454055,0.78355,0.575705,0.250448,0.253804,0.586717,0.385358,0.942957,0.800936,0.893614,0.174218,0.014726,0.269202,0.0551092,0.318683,0.911532,0.748493,0.206033,0.533933,0.999568,0.355274,0.750581,0.105326,0.826994,0.890034,0.532706,0.333448,0.904704,0.661298,0.980362,0.835398,0.917658,0.971966,0.674162,0.101588,0.614712,0.800774,0.0603786,0.789388,0.937665,0.963767,0.125394,0.731742,0.529417,0.451111,0.400047,0.73327,0.681242,0.50406,0.218535,0.61853,0.40712,0.17587,0.252321,0.901913,0.312052,0.974777,0.666837,0.0570518,0.846532,0.590859,0.0781447,0.364847,0.376182,0.810236,0.248601,0.252364,0.240799,0.700063,0.963427,0.258586,0.054686,0.951952,0.514807,0.965328,0.77583,0.0961556,0.954625,0.268974,0.307546,0.442105,0.530862,0.572908,0.0614183,0.592718,0.384907,0.346602,0.279387,0.639747,0.807415,0.909031,0.591709,0.535264,0.231762,0.827762,0.365796,0.764963,0.0208598,0.84913,0.136605,0.613299,0.00519967,0.980665,0.281506,0.320141,0.5394,0.684113,0.675674,0.308781,0.378793,0.135507,0.741929,0.454237,0.901414,0.933743,0.876714,0.452556,0.79735,0.148075,0.208046,0.969324,0.754538,0.00971043,0.432583,0.0901113,0.627731,0.0795847,0.447695,0.769325,0.321843,0.449834,0.110258,0.256752,0.800949,0.367893,0.732056,0.384326,0.487564,0.880701,0.0227123,0.395362,0.430574,0.653764,0.71481,0.0713365,0.922243,0.801226,0.476474,0.108102,0.956339,0.00286639,0.76246,0.731992,0.770857,0.0420068,0.0643799,0.956183,0.486361,0.293901,0.00873649,0.518596,0.25675,0.61623,0.981084,0.410079,0.898284,0.901129,0.696294,0.19796,0.346419,0.272103,0.746621,0.26338,0.0395375,0.420256,0.22498,0.145896,0.0196173,0.462979,0.987363,0.271733,0.993158,0.800907,0.270748,0.708148,0.880118,0.734774,0.595745,0.337953,0.0268624,0.253425,0.52141,0.982261,0.637598,0.90253,0.411281,0.384161,0.31405,0.847828,0.936764,0.133587,0.595223,0.229719,0.840298,0.590813,0.0374379,0.0945673,0.809774,0.0429892,0.986262,0.311564,0.8699,0.808804,0.502106,0.00237221,0.726971,0.487514,0.0569157,0.471621,0.487136,0.350287,0.422289,0.38776,0.893737,0.681178,0.796615,0.650433,0.468126,0.000775278,0.528119,0.587439,0.809621,0.0822901,0.551474,0.428977,0.440324,0.71745,0.36753,0.956653,0.60637,0.682833,0.921133,0.625365,0.0496379,0.000622392,0.1638,0.10335,0.846289,0.443393,0.119739,0.658653,0.814995,0.88249,0.0939286,0.753606,0.77966,0.863147,0.00634718,0.136111,0.323958,0.359867,0.183575,0.0295909,0.170635,0.0514414,0.0911626,0.37823,0.824792,0.222289,0.380915,0.347602,0.212853,0.615362,0.957949,0.387772,0.118187,0.980104,0.655616,0.991341,0.174733,0.840869,0.216053,0.149866,0.245164,0.757356,0.160325,0.113605,0.976964,0.0657623,0.364441,0.582342,0.0299931,0.621405,0.701873,0.854231,0.455095,0.545171,0.697096,0.912432,0.493395,0.896928,0.393745,0.946122,0.830103,0.353693,0.319701,0.179615,0.241864,0.408519,0.791756,0.428084,|0.0371164,0.365322,0.553057,0.981684,0.142831,0.753644,0.714866,0.191861,0.625926,0.0104632,0.389044,0.430451,0.532997,0.351818,0.0300777,0.194234,0.989589,0.704579,0.035916,0.495514,0.339902,0.626186,0.328332,0.890306,0.152072,0.743596,0.402125,0.13522,0.921038,0.193114,0.957395,0.149472,0.49173,0.277049,0.0435597,0.848289,0.794214,0.114719,0.653688,0.459087,0.694841,0.598466,0.443363,0.598041,0.663217,0.961515,0.196889,0.660619,0.228706,0.71431,0.163085,0.878584,0.560719,0.0842398,0.506863,0.0644482,0.584463,0.329083,0.720408,0.625408,0.412525,0.468875,0.972418,0.259824,0.252887,0.413458,0.158016,0.291609,0.655444,0.23431,0.801841,0.408095,0.137473,0.814686,0.958598,0.379052,0.131529,0.0688499,0.722561,0.545813,0.632604,0.133523,0.671719,0.747467,0.0877078,0.800904,0.225458,0.746863,0.702979,0.640417,0.342532,0.660131,0.570179,0.0783655,0.507234,0.722258,0.428743,0.211714,0.0816424,0.227499,0.500211,0.732916,0.415602,0.822274,0.507163,0.232365,0.277942,0.299864,0.920898,0.269358,0.156174,0.513454,0.459245,0.0131657,0.884508,0.452579,0.743565,0.566832,0.510645,0.609165,0.492029,0.987724,0.613083,0.454052,0.546795,0.80482,0.291586,0.248015,0.298579,0.488568,0.243638,0.869977,0.942814,0.230656,0.154231,0.540589,0.810763,0.0787504,0.418278,0.642091,0.49542,0.124274,0.0671189,0.743685,0.664728,0.496536,0.877473,0.573916,0.56707,0.987506,0.530217,0.978167,0.976752,0.00168556,0.725061,0.681461,0.50667,0.0819236,0.271122,0.0654783,0.437901,0.170143,0.26551,0.201531,0.681422,0.923073,0.413816,0.342501,0.100325,0.79786,0.42529,0.871755,0.174696,0.399303,0.187331,0.799284,0.842497,0.339537,0.0243638,0.833702,0.106726,0.72265,0.653211,0.982907,0.684063,0.169155,0.625324,0.787125,0.0807219,0.776226,0.587335,0.761569,0.62925,0.170931,0.993838,0.61682,0.34653,0.553456,0.470174,0.969182,0.515338,0.165431,0.733424,0.765022,0.848437,0.0338582,0.880974,0.487924,0.540394,0.846991,0.226802,0.858233,0.379366,0.0173343,0.401562,0.322968,0.121378,0.65705,0.735344,0.744381,0.527072,0.806596,0.306223,0.689305,0.102559,0.809548,0.338644,0.698824,0.379219,0.374866,0.442105,0.893441,0.719674,0.442254,0.737012,0.0159124,0.224595,0.833914,0.384472,0.69706,0.599571,0.940679,0.671727,0.218709,0.572719,0.104763,0.62762,0.291534,0.199965,0.310061,0.74371,0.283424,0.522053,0.925365,0.406651,0.996585,0.0115806,0.168159,0.643235,0.394671,0.875942,0.293611,0.452978,0.87636,0.612194,0.148594,0.319208,0.180264,0.305793,0.337712,0.472823,0.605904,0.704304,0.372703,0.369281,0.517591,0.586804,0.192619,0.390957,0.395986,0.740313,0.783803,0.125842,0.330787,0.55927,0.579179,0.137793,0.363246,0.338731,0.604108,0.990408,0.47046,0.720166,0.241927,0.307804,0.0768714,0.744752,0.109444,0.623924,0.458112,0.406182,0.503432,0.891433,0.543382,0.412512,0.962079,0.223127,0.394113,0.233418,0.639747,0.817154,0.927237,0.832594,0.443652,0.50955,0.0385426,0.0495711,0.697187,0.716578,0.361189,0.192707,0.985938,0.823381,0.0970027,0.65443,0.53022,0.166637,0.227732,0.49046,0.16439,0.686186,0.017705,0.183423,0.740675,0.777669,0.665307,0.226489,0.829704,0.208154,0.598174,0.634695,0.439151,0.814275,0.728881,0.88507,0.660172,0.825858,0.862645,0.13001,0.760034,0.669536,0.53615,0.936599,0.859931,0.51225,0.755075,0.0113115,0.986713,0.443798,0.991265,0.8681,0.974459,0.0373779,0.10199,0.974931,0.567951,0.575536,0.109247,0.929366,0.0684929,0.903473,0.248169,0.88753,0.502125,0.24993,0.984386,0.197588,0.174764,0.825067,0.436611,0.384062,0.874084,0.834208,0.617423,0.8801,0.792251,0.359688,0.969534,0.940322,0.0338981,0.645189,0.165142,0.564864,0.723435,0.991896,0.42898,0.0451069,0.401997,0.556167,0.500911,0.30701,0.933309,0.631832,0.621437,0.238755,0.765579,0.835562,0.925866,0.0381569,0.87344,0.20211,0.878071,0.296433,0.643021,0.81856,0.49252,0.579129,0.0777709,0.893134,0.129663,0.897645,0.147379,0.223827,0.349143,0.535961,0.570467,0.671919,0.780312,0.471899,0.126601,0.030726,0.513518,0.866566,0.270201,0.264209,0.984522,0.209703,0.93947,0.915131,0.18764,0.946808,0.973017,0.28338,0.195451,0.463473,0.719914,0.425941,0.665197,0.99376,0.924715,0.128181,0.164755,0.565192,0.413275,0.229255,0.355514,0.668285,0.818758,0.711142,0.420513,0.20904,0.257204,0.330523,0.66282,0.0345497,0.551848,0.795897,0.772974,0.689057,0.852354,0.506545,0.213318,0.996448,0.957524,0.850996,0.463517,0.256312,0.857935,0.317501,0.129575,0.756573,0.20362,0.766059,0.246644,0.569448,0.508575,0.323569,0.686296,0.0817828,0.634965,0.514495,0.842077,0.743648,0.0117915,0.437637,0.241489,0.203984,0.429262,0.364371,0.71918,0.765302,0.908826,0.542523,0.187136,0.0499901,0.385606,0.30063,0.966656,0.475856,0.337888,0.382559,0.515474,0.767872,0.44725,0.213737,0.206711,0.691576,0.90783,0.315682,0.379396,0.216024,0.484926,0.532243,0.201212,0.628516,0.0671523,0.935019,0.378601,0.57785,0.60131,0.509913,0.105588,0.167459,0.984369,0.95984,0.249535,0.914948,0.656102,0.516983,0.829281,0.377578,0.351675,0.876891,0.459622,0.724793,0.545894,0.432622,0.351942,0.0206899,0.068167,0.556336,0.0960328,0.718125,0.577432,0.610597,0.98194,0.0215945,0.766992,0.0367412,0.810193,0.437905,0.564151,0.714333,0.290863,0.199501,0.385257,0.315385,0.332472,0.604311,0.0851004,0.252668,0.0642914,0.824101,0.885307,0.475691,0.865718,0.582719,0.460333,0.444706,0.202078,0.377446,0.680567,0.364756,0.293734,0.228205,0.0577109,0.392424,0.47823,0.985778,0.684493,0.260233,0.256097,0.584181,0.7552,0.218016,0.549248,0.590525,0.166918,0.376874,0.389513,0.779231,0.285832,0.404238,0.0775751,0.933104,0.636564,0.542218,0.420529,0.102775,0.392504,0.528574,0.887571,0.00869662,0.0887073,0.382703,0.19452,0.968021,0.754342,0.569968,0.10794,0.948057,0.505815,0.787363,0.553702,0.538076,0.0398491,0.916145,0.267335,0.401144,0.802092,0.0197298,0.656,0.0306833,0.763313,0.188808,0.371677,0.112139,0.643931,0.365115,0.507796,0.615661,0.855425,0.138784,0.886234,0.964021,0.548907,0.542612,0.196465,0.504301,0.188431,0.629596,0.927024,0.582077,0.625305,0.503667,0.382034,0.123809,0.663429,0.0933079,0.415126,0.115166,0.655883,0.54058,0.382021,0.257295,0.591674,0.68997,0.648589,0.215599,0.634363,0.509951,0.86302,0.206597,0.154657,0.764634,0.889143,0.874479,0.539494,0.865654,0.68281,0.374764,0.723775,0.220109,0.0746002,0.852362,0.823806,0.913013,0.213895,0.524617,0.814699,0.819272,0.718304,0.258375,0.0907454,0.991137,0.719757,0.902621,0.834596,0.591609,0.355487,0.501647,0.557098,0.227591,0.422424,0.626174,0.991621,0.510545,0.378393,0.615966,0.230859,0.717432,0.189024,0.167934,0.841276,0.575779,0.306656,0.858725,0.562276,0.94773,0.613691,0.800036,0.304189,0.158934,0.784844,0.729603,0.0576713,0.330298,0.976886,0.0516176,0.968465,0.967366,0.325412,0.168975,0.0023309,0.345752,0.366132,0.840259,0.389388,0.991083,0.292859,0.228661,0.289564,0.676959,0.532821,0.193994,0.905126,0.809665,0.215742,0.734473,0.393902,0.52486,0.11752,0.11373,0.292826,0.159127,0.662459,0.345998,0.711336,0.277503,0.897362,0.946354,0.58833,0.862481,0.31017,0.303492,0.184521,0.85214,0.0715889,0.785193,0.205677,0.316453,0.290501,0.765581,0.130085,0.0896956,0.141799,0.265364,0.870385,0.309644,0.14491,0.26898,0.314089,0.881555,0.358757,0.426729,0.5038,0.842971,0.420728,0.299863,0.669691,0.830223,0.499429,0.578577,0.625477,0.72651,0.628162,0.849093,0.288798,0.799739,0.386031,0.374968,0.344997,0.279793,0.202093,0.0584626,0.809146,0.656807,0.242288,0.320315,0.654596,0.132548,0.22883,0.672151,0.991947,0.318955,0.343692,0.891662,0.629086,0.0157087,0.0838642,0.615939,0.63609,0.982585,0.302433,0.478323,0.0629694,0.619715,0.093605,0.298167,0.390703,0.624618,0.00274873,0.88907,0.309888,0.904401,0.543042,0.645461,0.592079,0.886003,0.728787,0.764125,0.702654,0.285179,0.423925,0.146925,0.554666,0.986003,0.0369938,0.789024,0.733204,0.169109,0.154916,0.290078,0.576849,0.680265,0.923889,0.349316,0.785849,0.658372,0.69272,0.863333,0.622871,0.145731,0.266024,0.311276,0.0419147,0.749986,0.666895,0.279894,0.723934,0.17479,0.805889,0.316549,0.00826806,0.52766,0.138811,0.632961,0.742171,0.0425429,0.445683,0.725867,0.158433,0.0559657,0.507008,0.0384513,0.498557,0.417371,0.336283,0.212871,0.283934,0.915763,0.455445,0.498055,0.864281,0.961383,0.00768149,0.174381,0.868712,0.908471,0.0994133,0.318214,0.313641,0.188056,0.504941,0.514054,0.517723,0.927657,0.734963,0.38211,0.885827,0.402352,0.320339,0.739511,0.343189,0.146425,0.108563,0.629264,0.464172,0.106205,0.13451,0.303149,0.886555,0.600522,0.443619,0.942575,0.527883,0.854039,0.559073,0.911291,0.315897,0.895859,0.338778,0.00821739,0.0269029,0.6124,0.772746,0.34436,0.743899,0.749507,0.364999,0.283127,0.74276,0.874443,0.747809,0.281622,0.6979,0.878992,0.487299,0.793489,0.465018,0.397407,0.37364,0.46974,0.599346,0.359222,0.66544,0.255274,0.636416,0.460601,0.45067,0.118161,0.297713,0.0670308,0.211734,0.685516,0.875519,0.877748,0.733128,0.849168,0.773101,0.96688,0.484617,0.495391,0.526085,0.531224,0.754881,0.248711,0.715927,0.222822,0.846258,0.17469,0.81907,0.950827,0.82434,0.490502,0.625241,0.363583,0.0892953,0.308868,0.933341,0.788292,0.450123,0.606575,0.114958,0.679383,0.415805,0.616638,0.869829,0.296945,0.448606,|0.251218,0.610054,0.784925,0.133818,0.123805,0.224372,0.706047,0.0776664,0.867027,0.540104,0.69142,0.842983,0.935379,0.152542,0.965286,0.125352,0.372472,0.289862,0.408428,0.249803,0.351452,0.197695,0.652396,0.356055,0.250063,0.528124,0.71963,0.585395,0.311297,0.872244,0.927823,0.162103,0.522155,0.15131,0.687368,0.494322,0.833013,0.375835,0.932861,0.0711898,0.625352,0.960358,0.360475,0.956948,0.395467,0.717551,0.435409,0.0153004,0.115669,0.88824,0.586515,0.359858,0.0140789,0.667735,0.156468,0.955908,0.893256,0.848736,0.89308,0.992193,0.900257,0.718553,0.0691387,0.133813,0.505451,0.606711,0.829206,0.0864234,0.813429,0.741869,0.207258,0.842641,0.655895,0.841708,0.52532,0.724799,0.173256,0.315539,0.796286,0.238928,0.755151,0.522521,0.595566,0.616103,0.46911,0.599903,0.595122,0.173862,0.0853915,0.28694,0.305144,0.512788,0.168147,0.888735,0.773069,0.604522,0.910183,0.614852,0.185753,0.961998,0.289729,0.785493,0.0937261,0.224189,0.304649,0.938824,0.144383,0.218435,0.171978,0.507313,0.239518,0.928286,0.989253,0.0610293,0.868464,0.144347,0.932818,0.38491,0.119787,0.233426,0.574321,0.321113,0.643495,0.656174,0.0473205,0.791944,0.0225507,0.898859,0.952703,0.166463,0.607931,0.235728,0.203771,0.147614,0.946045,0.998866,0.483356,0.527149,0.0107421,0.141411,0.259466,0.833037,0.497906,0.404017,0.532846,0.623926,0.467702,0.160462,0.552099,0.280528,0.919566,0.792015,0.385739,0.582398,0.84558,0.78225,0.627829,0.962881,0.224922,0.213024,0.93081,0.347726,0.108214,0.133007,0.61577,0.888653,0.593792,0.117119,0.406406,0.869324,0.463181,0.579635,0.877811,0.110569,0.231701,0.484514,0.173412,0.0464733,0.33523,0.0960912,0.602936,0.66246,0.473552,0.522157,0.266137,0.43404,0.307065,0.435047,0.395096,0.504418,0.593675,0.782505,0.800506,0.75869,0.446666,0.587079,0.10856,0.895746,0.523116,0.561666,0.0453125,0.726993,0.452507,0.164107,0.663773,0.06263,0.98492,0.461352,0.304169,0.536505,0.0685779,0.674308,0.817867,0.142359,0.740617,0.0492174,0.962254,0.237344,0.598692,0.294199,0.298351,0.552225,0.944646,0.540352,0.714204,0.60377,0.45836,0.0999889,0.484369,0.306184,0.772295,0.824584,0.342256,0.781713,0.621746,0.253529,0.215019,0.462287,0.416125,0.876897,0.932538,0.0747434,0.824379,0.201912,0.201344,0.0924879,0.83897,0.684033,0.817494,0.605756,0.998413,0.546564,0.942003,0.978255,0.205112,0.569729,0.368872,0.368754,0.672655,0.7672,0.126307,0.0740795,0.594331,0.138374,0.966784,0.0292343,0.268656,0.247474,0.631823,0.498829,0.0459427,0.234796,0.297977,0.389922,0.546753,0.00479072,0.587829,0.15146,0.846161,0.893043,0.976106,0.718025,0.232292,0.670044,0.910053,0.744436,0.406595,0.0873542,0.407712,0.847638,0.588395,0.986145,0.0935139,0.537114,0.62784,0.57414,0.316303,0.0276083,0.999144,0.123217,0.127747,0.538507,0.913707,0.159983,0.66003,0.469567,0.980106,0.580484,0.833342,0.266887,0.97207,0.110845,0.849908,0.766417,0.473,0.440087,0.614573,0.646045,0.22677,0.276147,0.0979447,0.676359,0.465867,0.881875,0.178852,0.417609,0.961524,0.527606,0.821075,0.467692,0.34869,0.29216,0.392157,0.343858,0.986401,0.273291,0.0625137,0.281617,0.69122,0.283641,0.278947,0.354301,0.173451,0.592151,0.00606775,0.542738,0.631654,0.0296121,0.0113366,0.381347,0.395436,0.373343,0.511364,0.761101,0.00107443,0.320354,0.454477,0.126577,0.593306,0.72288,0.126732,0.638913,0.663484,0.71212,0.646146,0.389843,0.184956,0.0991266,0.27345,0.432305,0.28236,0.183087,0.858102,0.615708,0.163808,0.6026,0.919166,0.0278733,0.248348,0.115964,0.427616,0.146858,0.332891,0.986781,0.315992,0.393585,0.905184,0.10787,0.42717,0.459534,0.047502,0.790355,0.533236,0.530115,0.669632,0.776135,0.569025,0.325126,0.258779,0.470689,0.909353,0.42699,0.466029,0.122327,0.739851,0.388712,0.0880713,0.604836,0.908028,0.531226,0.941592,0.741395,0.0158638,0.446518,0.492584,0.630138,0.0259522,0.306476,0.566225,0.795852,0.170458,0.927777,0.369037,0.856904,0.0058468,0.777504,0.927354,0.577137,0.341601,0.649433,0.681099,0.627299,0.984426,0.547078,0.887365,0.681172,0.533049,0.469682,0.596188,0.0548041,0.982619,0.886553,0.654351,0.74739,0.482941,0.948612,0.856933,0.369693,0.633217,0.581111,0.756206,0.983876,0.0309834,0.700361,0.482085,0.280142,0.722363,0.619976,0.946827,0.499936,0.516766,0.745113,0.439753,0.5795,0.000968456,0.786962,0.952404,0.377658,0.6324,0.514799,0.82383,0.178083,0.980498,0.972309,0.957995,0.638191,0.939912,0.455868,0.527594,0.399624,0.388205,0.729091,0.22492,0.222529,0.522095,0.216603,0.382335,0.0106996,0.651916,0.770707,0.990203,0.178403,0.395927,0.44222,0.651815,0.613501,0.191322,0.251227,0.069673,0.0323811,0.922985,0.406063,0.869776,0.974088,0.92727,0.125093,0.575286,0.0844367,0.649233,0.0903426,0.13076,0.61979,0.471473,0.619195,0.549406,0.535132,0.291997,0.525563,0.605229,0.489348,0.936304,0.534948,0.552395,0.576054,0.969418,0.579872,0.0138013,0.0657049,0.170884,0.829111,0.180771,0.628896,0.274634,0.57914,0.183982,0.439366,0.968251,0.277656,0.137034,0.636102,0.85173,0.599935,0.784684,0.0680476,0.240264,0.468647,0.492831,0.790517,0.935579,0.588783,0.232451,0.479911,0.890341,0.647877,0.201072,0.622158,0.539302,0.114912,0.55999,0.453532,0.0495905,0.50948,0.79166,0.818225,0.651081,0.724426,0.39803,0.8914,0.948304,0.480761,0.188287,0.0268057,0.700472,0.685924,0.0420598,0.929036,0.924016,0.247972,0.359878,0.989465,0.848893,0.626128,0.46849,0.0403397,0.174081,0.428854,0.447051,0.801367,0.397196,0.0434479,0.544625,0.478699,0.303625,0.325051,0.749166,0.952494,0.788129,0.196501,0.485725,0.228873,0.155244,0.21645,0.517816,0.45019,0.532047,0.0779125,0.785736,0.239008,0.500899,0.365512,0.661417,0.213928,0.228422,0.543524,0.885073,0.645264,0.151919,0.829251,0.848324,0.390579,0.705105,0.0986383,0.537789,0.700248,0.19211,0.913503,0.543157,0.775187,0.753171,0.933501,0.42006,0.223192,0.749018,0.104135,0.644509,0.0672065,0.216966,0.431053,0.413609,0.0975975,0.484577,0.712593,0.66167,0.383251,0.118394,0.508043,0.541853,0.452819,0.370531,0.358087,0.619468,0.767724,0.572273,0.780321,0.183091,0.777024,0.339013,0.644327,0.251222,0.224183,0.196971,0.614652,0.995875,0.419192,0.0259144,0.713501,0.304524,0.733867,0.0504023,0.245315,0.340728,0.861306,0.812777,0.708832,0.469259,0.0418274,0.407145,0.601832,0.435625,0.248461,0.110664,0.627082,0.208263,0.297849,0.098877,0.749518,0.680204,0.368804,0.636974,0.228707,0.615852,0.277939,0.875312,0.296235,0.0326765,0.970474,0.141521,0.534657,0.719432,0.738453,0.98214,0.49095,0.785659,0.474409,0.634613,0.351897,0.503345,0.204242,0.526533,0.0955147,0.215044,0.862108,0.343596,0.425623,0.810852,0.880594,0.384217,0.248601,0.876455,0.217771,0.281324,0.123957,0.568086,0.553402,0.944602,0.415712,0.508289,0.743724,0.374158,0.0567833,0.110176,0.856394,0.889327,0.625108,0.301613,0.49522,0.376105,0.759627,0.548792,0.991274,0.147668,0.408026,0.812029,0.787839,0.789965,0.540262,0.757102,0.999165,0.27569,0.874937,0.729611,0.413339,0.0361903,0.397214,0.995937,0.205294,0.388607,0.702201,0.812796,0.166416,0.273046,0.794616,0.0392736,0.693332,0.138643,0.886551,0.238547,0.509506,0.62141,0.409064,0.0799173,0.744341,0.998759,0.766349,0.989801,0.767002,0.681166,0.294448,0.659431,0.627287,0.5438,0.478455,0.151327,0.17858,0.928279,0.959453,0.319607,0.132039,0.153333,0.38565,0.00488758,0.308366,0.174792,0.545818,0.478401,0.48852,0.807516,0.696597,0.256606,0.615036,0.911672,0.892287,0.983642,0.715895,0.181651,0.746839,0.613643,0.537838,0.0149945,0.060441,0.819766,0.573353,0.597504,0.269518,0.400631,0.873045,0.461579,0.658111,0.430038,0.913304,0.252907,0.88654,0.355877,0.196342,0.914514,0.33837,0.363054,0.588614,0.0423803,0.814682,0.578507,0.145074,0.239471,0.168664,0.979137,0.249784,0.495502,0.252207,0.521345,0.694472,0.990442,0.475142,0.619472,0.48036,0.571994,0.425476,0.0923512,0.188753,0.358754,0.11138,0.702706,0.919701,0.574732,0.981326,0.941743,0.751929,0.127294,0.476512,0.0279686,0.445414,0.430663,0.968238,0.121632,0.509847,0.18203,0.131394,0.0326157,0.544593,0.275526,0.248817,0.960477,0.630991,0.917586,0.581315,0.488523,0.547891,0.761575,0.951911,0.919747,0.500516,0.524241,0.695184,0.464005,0.677739,0.422551,0.106881,0.937143,0.0944629,0.82083,0.139136,0.160014,0.889029,0.524376,0.894046,0.400242,0.492684,0.678982,0.841261,0.193408,0.735397,0.122712,0.879136,0.678945,0.406412,0.904319,0.273441,0.404179,0.754779,0.644389,0.814157,0.865726,0.395698,0.113803,0.88878,0.296513,0.416515,0.271105,0.203617,0.0803127,0.371359,0.72079,0.753462,0.843944,0.89307,0.213885,0.942547,0.968784,0.465919,0.527297,0.413841,0.851008,0.128188,0.534638,0.937015,0.408228,0.811484,0.685429,0.219886,0.645387,0.238031,0.508186,0.00835657,0.5017,0.955184,0.754645,0.429177,0.810362,0.89197,0.727259,0.602373,0.572292,0.57416,0.758904,0.661,0.616798,0.0829018,0.233724,0.885288,0.40072,0.140519,0.0794334,0.715848,0.118291,0.944749,0.972618,0.827347,0.825127,0.715155,0.788135,0.880612,0.80386,0.993171,0.670049,0.208973,0.569304,0.704098,0.43483,0.346525,0.1191,0.353441,0.438843,0.8501,0.282333,0.523557,0.859793,0.0511515,0.110204,0.222968,0.578697,0.19218,0.860773,0.119656,0.628819,0.522787,0.892531,0.444127,0.744259,0.461272,0.927134,0.97309,|0.890314,0.189757,0.560591,0.987038,0.590333,0.830599,0.339621,0.0147585,0.973076,0.28202,0.749076,0.886111,0.762195,0.982481,0.420666,0.882127,0.93291,0.143306,0.505765,0.0796869,0.745892,0.244342,0.899298,0.819071,0.334486,0.202542,0.92378,0.44357,0.0494755,0.27862,0.920088,0.777902,0.530877,0.118747,0.272381,0.00512207,0.644823,0.36399,0.0740042,0.317823,0.717816,0.0440947,0.608665,0.0770462,0.308423,0.500342,0.740073,0.50998,0.00850284,0.762407,0.144594,0.133543,0.104744,0.946909,0.0594213,0.174953,0.508518,0.0863014,0.637998,0.019292,0.39978,0.539072,0.405763,0.507716,0.18491,0.0143704,0.285505,0.905461,0.304497,0.156038,0.0562813,0.829593,0.583866,0.623137,0.854294,0.588251,0.762682,0.01673,0.785353,0.863439,0.235445,0.673569,0.910594,0.59904,0.300955,0.44592,0.12844,0.714543,0.609463,0.867541,0.477127,0.33222,0.113595,0.164226,0.849719,0.902817,0.159992,0.802399,0.0365698,0.228012,0.521617,0.363837,0.24408,0.852283,0.469929,0.288882,0.914181,0.0646559,0.659912,0.901231,0.772552,0.588577,0.642386,0.795193,0.15842,0.593873,0.00589943,0.948157,0.197222,0.761466,0.205922,0.154096,0.71213,0.623669,0.947777,0.568841,0.20374,0.675025,0.180579,0.65506,0.536155,0.474713,0.733556,0.817533,0.397952,0.322771,0.621191,0.621891,0.0300826,0.532857,0.815974,0.00530708,0.410868,0.0247293,0.555361,0.410621,0.96252,0.720846,0.33793,0.556246,0.52505,0.308565,0.671048,0.367377,0.595858,0.882513,0.335189,0.845929,0.27652,0.600814,0.501899,0.544869,0.179782,0.882175,0.0785308,0.116773,0.192537,0.379976,0.404755,0.517195,0.337856,0.0189855,0.546648,0.0118234,0.556858,0.0771793,0.949489,0.584076,0.694623,0.875002,0.654149,0.703049,0.0180773,0.964463,0.998274,0.491818,0.612384,0.454599,0.659105,0.68189,0.477702,0.308841,0.393996,0.533829,0.375261,0.442698,0.889657,0.587778,0.89777,0.273589,0.816683,0.307576,0.484363,0.480829,0.893177,0.852148,0.395193,0.0100345,0.576712,0.890397,0.847215,0.737121,0.309149,0.235619,0.881851,0.371573,0.815743,0.913645,0.468755,0.781988,0.159851,0.048112,0.767824,0.0846999,0.63802,0.392883,0.206352,0.167105,0.787739,0.983654,0.0688019,0.453219,0.270906,0.411147,0.633408,0.796005,0.807143,0.347515,0.907776,0.411129,0.880094,0.696496,0.777297,0.29101,0.815083,0.380571,0.371461,0.860675,0.768489,0.968997,0.124387,0.970258,0.777745,0.992103,0.0145663,0.381329,0.922059,0.843115,0.92104,0.113262,0.955136,0.53303,0.585232,0.385173,0.546787,0.887813,0.706501,0.79455,0.191494,0.402397,0.541658,0.417608,0.806869,0.180858,0.226574,0.00330442,0.999761,0.940885,0.122084,0.130518,0.663717,0.366482,0.181093,0.360089,0.73664,0.862066,0.258494,0.599094,0.457496,0.668029,0.958133,0.634966,0.316583,0.56383,0.152571,0.790303,0.897755,0.600006,0.363034,0.240624,0.869725,0.547525,0.693661,0.952684,0.508637,0.938908,0.916185,0.264349,0.869355,0.0739134,0.894927,0.957384,0.775849,0.212193,0.714306,0.319159,0.657276,0.0439938,0.320524,0.911356,0.877966,0.888329,0.758144,0.671603,0.690876,0.833161,0.0101412,0.659501,0.816349,0.186546,0.452324,0.675738,0.772577,0.705092,0.225592,0.07341,0.293165,0.697137,0.827483,0.574773,0.163611,0.674569,0.748299,0.966547,0.500782,0.713891,0.139834,0.611454,0.0851344,0.0229531,0.438158,0.0813233,0.23303,0.421926,0.134727,0.385662,0.107034,0.613997,0.0522277,0.31701,0.0314443,0.280571,0.294931,0.0233612,0.905113,0.222727,0.732046,0.474937,0.802426,0.147254,0.272335,0.0851694,0.0798781,0.984623,0.268047,0.125186,0.383437,0.464918,0.895304,0.774485,0.12021,0.936095,0.621519,0.38786,0.905093,0.206744,0.844757,0.0508232,0.025092,0.758913,0.757478,0.120514,0.898784,0.577883,0.662433,0.85474,0.837213,0.82935,0.431089,0.49313,0.24913,0.165147,0.0914226,0.189295,0.620282,0.568401,0.952266,0.77292,0.503892,0.8576,0.614443,0.774969,0.350447,0.163222,0.908232,0.939415,0.930905,0.20558,0.512678,0.476883,0.935813,0.858582,0.811628,0.378786,0.0631732,0.663998,0.535949,0.126924,0.953128,0.259936,0.360796,0.76058,0.220627,0.804979,0.159286,0.0827248,0.132628,0.139778,0.226014,0.575964,0.315258,0.128177,0.441359,0.777204,0.212799,0.189524,0.906282,0.636245,0.827896,0.930793,0.30874,0.563452,0.508748,0.24802,0.7926,0.465047,0.0393795,0.657158,0.380295,0.329262,0.556404,0.88806,0.181263,0.116213,0.863319,0.436464,0.1546,0.148809,0.832645,0.689389,0.856039,0.597403,0.293524,0.0107871,0.401239,0.331502,0.417736,0.689874,0.293828,0.859094,0.200699,0.525405,0.820548,0.982084,0.415376,0.7908,0.350407,0.551019,0.808334,0.785294,0.791256,0.924389,0.105703,0.474012,0.515806,0.547033,0.319776,0.317488,0.0963025,0.287951,0.40572,0.758572,0.679994,0.942879,0.283731,0.652503,0.504273,0.327106,0.667218,0.934033,0.638162,0.230657,0.758435,0.210501,0.523726,0.219388,0.335406,0.891607,0.905163,0.320693,0.363611,0.956346,0.602913,0.509879,0.733602,0.871867,0.208185,0.27268,0.667853,0.914824,0.465661,0.195653,0.160154,0.682027,0.438095,0.960259,0.890454,0.796496,0.395007,0.392419,0.721384,0.877919,0.0486643,0.717657,0.00477946,0.691598,0.715171,0.0973701,0.159705,0.707643,0.779882,0.495858,0.987886,0.786701,0.315569,0.85998,0.609456,0.157978,0.0108028,0.791521,0.593696,0.35381,0.337794,0.382944,0.923347,0.249338,0.565077,0.034408,0.158991,0.629459,0.136376,0.661516,0.894489,0.0879626,0.211475,0.657166,0.2609,0.959517,0.524073,0.501207,0.615508,0.330708,0.652075,0.0253915,0.444187,0.462973,0.876967,0.5664,0.886152,0.195588,0.139137,0.900548,0.730729,0.119473,0.174421,0.986607,0.239977,0.797573,0.453197,0.554561,0.454724,0.928967,0.745976,0.9897,0.0249278,0.0308437,0.994362,0.781871,0.213256,0.555169,0.476654,0.456586,0.265648,0.440822,0.497557,0.503222,0.655993,0.94665,0.765234,0.243954,0.862718,0.971503,0.56293,0.0155324,0.545735,0.733341,0.404092,0.107953,0.968544,0.772012,0.393493,0.990402,0.00810069,0.800038,0.0450086,0.2175,0.376895,0.250097,0.326905,0.285493,0.258595,0.680512,0.304727,0.209704,0.349704,0.394568,0.560975,0.37361,0.155132,0.992164,0.84,0.497104,0.137423,0.896839,0.24006,0.0840646,0.797386,0.889469,0.661019,0.315542,0.243189,0.61275,0.356024,0.71354,0.640531,0.096737,0.238716,0.558892,0.908735,0.661085,0.460742,0.865943,0.736481,0.864585,0.257259,0.226459,0.530086,0.0401006,0.750723,0.235396,0.388243,0.0822614,0.706562,0.468729,0.140393,0.207453,0.957388,0.637201,0.139854,0.381696,0.360907,0.415934,0.151623,0.334891,0.476439,0.697109,0.342442,0.213263,0.83208,0.518037,0.465167,0.302627,0.893529,0.113488,0.268133,0.491364,0.0637335,0.508671,0.472105,0.241141,0.343765,0.0328156,0.588203,0.907486,0.919057,0.0306093,0.165248,0.945862,0.799319,0.535912,0.733377,0.676742,0.0456337,0.0610259,0.372467,0.719971,0.47666,0.924945,0.54867,0.503001,0.249399,0.0249528,0.731603,0.267492,0.959556,0.559663,0.564127,0.661297,0.875578,0.847257,0.77953,0.48628,0.732704,0.491451,0.710959,0.428991,0.807646,0.0995818,0.191469,0.743407,0.650199,0.408811,0.0766677,0.00950336,0.461552,0.918242,0.673373,0.614954,0.728876,0.928649,0.646217,0.0674006,0.717646,0.879657,0.658117,0.142886,0.49674,0.739083,0.330491,0.917108,0.246367,0.0611334,0.644006,0.390969,0.941973,0.129306,0.23439,0.00997567,0.163433,0.867373,0.374078,0.970309,0.1634,0.509981,0.0166416,0.266479,0.209334,0.64604,0.660553,0.430218,0.62852,0.271255,0.464644,0.587995,0.29977,0.848297,0.994166,0.915652,0.177275,0.172917,0.753797,0.887715,0.128977,0.751454,0.00295836,0.807545,0.191113,0.314915,0.253124,0.462015,0.283184,0.184843,0.0497388,0.9008,0.613367,0.411057,0.725154,0.907762,0.254341,0.841749,0.23863,0.996159,0.61699,0.185097,0.776689,0.0604056,0.23817,0.710839,0.560671,0.49976,0.0890062,0.199963,0.221467,0.0548688,0.580229,0.917532,0.102304,0.331525,0.0334343,0.571255,0.126044,0.852668,0.856345,0.241418,0.750254,0.570777,0.150524,0.949134,0.203299,0.261119,0.533101,0.250246,0.674586,0.326038,0.77717,0.681525,0.220222,0.75144,0.473152,0.299001,0.613956,0.419185,0.465652,0.690503,0.167108,0.0454988,0.0850879,0.520976,0.772637,0.395166,0.408749,0.971439,0.602637,0.613409,0.154683,0.644513,0.42459,0.00607675,0.506764,0.212284,0.983479,0.00822324,0.504363,0.591853,0.804553,0.0741639,0.350173,0.0317205,0.372942,0.0773826,0.345933,0.975047,0.505304,0.452156,0.285837,0.387752,0.494428,0.0378257,0.566559,0.647,0.885574,0.334013,0.644287,0.94228,0.490106,0.498873,0.360456,0.957226,0.303877,0.181088,0.363501,0.612589,0.143653,0.561901,0.570319,0.355582,0.160881,0.166652,0.472915,0.013603,0.378722,0.181343,0.772482,0.383498,0.617149,0.418131,0.948518,0.869057,0.842135,0.105018,0.197458,0.509694,0.823426,0.239072,0.69253,0.194004,0.714591,0.466273,0.0617621,0.611109,0.27724,0.416118,0.673451,0.24308,0.282774,0.322024,0.0186221,0.61976,0.0661353,0.601942,0.286282,0.356461,0.502115,0.520108,0.43302,0.0310906,0.934169,0.529896,0.547427,0.75001,0.200381,0.127301,0.263952,0.931962,0.297047,0.893843,0.784936,0.367035,0.22577,0.685859,0.982787,0.935085,0.341019,0.487307,0.955054,0.951393,0.803481,0.022339,0.451895,0.593418,0.0225898,0.609937,0.434136,0.516235,0.728592,0.00738668,0.885442,0.246573,0.98562,0.171693,0.341932,0.737601,0.395996,0.772274,0.901139,0.401915,0.963735,0.666913,0.430929,0.719149,|0.609644,0.279288,0.172953,0.733039,6.56843e-05,0.925212,0.431238,0.616318,0.354142,0.641914,0.608154,0.93624,0.0125426,0.181394,0.805345,0.632527,0.0906533,0.854151,0.562469,0.196562,0.432191,0.308394,0.338791,0.14118,0.292401,0.655904,0.232193,0.908105,0.19201,0.315342,0.925928,0.296099,0.577794,0.161528,0.567312,0.660926,0.776756,0.411872,0.567507,0.791309,0.0168949,0.585302,0.0729094,0.736678,0.585519,0.703665,0.454642,0.0838787,0.218552,0.44255,0.550236,0.857037,0.253365,0.861317,0.500889,0.806955,0.717452,0.291847,0.312278,0.636666,0.464402,0.879266,0.831172,0.131779,0.693023,0.588059,0.431202,0.484983,0.370568,0.511353,0.915061,0.0649719,0.370545,0.743509,0.914325,0.565629,0.938614,0.595086,0.0692817,0.746431,0.76815,0.49414,0.833357,0.0100647,0.488429,0.613749,0.314234,0.381866,0.674142,0.874047,0.730856,0.0457582,0.937591,0.79231,0.520034,0.768876,0.122867,0.213462,0.681897,0.686039,0.132752,0.299365,0.2542,0.680383,0.0976134,0.000968635,0.347331,0.225424,0.779566,0.397639,0.908282,0.718965,0.183529,0.304495,0.816033,0.140911,0.79177,0.725421,0.330102,0.192598,0.860581,0.821731,0.234564,0.572137,0.784705,0.0707306,0.565534,0.495905,0.656719,0.840665,0.598943,0.950816,0.48002,0.697508,0.686524,0.22678,0.337168,0.192533,0.0485927,0.693226,0.371144,0.0914734,0.703641,0.305907,0.0694453,0.161296,0.210141,0.166452,0.0498156,0.0622771,0.266159,0.677334,0.756831,0.437324,0.328243,0.687441,0.263527,0.910974,0.00516176,0.336798,0.989783,0.216418,0.717716,0.359268,0.722882,0.876006,0.00440025,0.721211,0.908146,0.455302,0.574183,0.59603,0.561638,0.0792171,0.054051,0.512656,0.0910897,0.620113,0.357548,0.346195,0.380411,0.577564,0.577046,0.909089,0.631457,0.663947,0.966227,0.645815,0.593908,0.0496242,0.939814,0.581236,0.958033,0.400828,0.147162,0.271097,0.587468,0.439636,0.531865,0.501522,0.367559,0.424602,0.107159,0.904112,0.309903,0.735239,0.211491,0.406088,0.324105,0.0733243,0.87709,0.302986,0.450763,0.632155,0.982653,0.514822,0.319456,0.805329,0.0344247,0.674919,0.0947846,0.735193,0.620123,0.20908,0.972459,0.046494,0.131019,0.158412,0.688528,0.121779,0.861379,0.696585,0.559276,0.823684,0.773172,0.0886773,0.436649,0.941204,0.624893,0.998568,0.185058,0.388714,0.29684,0.503681,0.00937933,0.967654,0.323798,0.41849,0.292804,0.490846,0.425157,0.548642,0.599315,0.807411,0.913234,0.747092,0.292078,0.464848,0.0532107,0.445795,0.558751,0.3596,0.880183,0.00300092,0.431527,0.0752704,0.320575,0.819391,0.13881,0.443891,0.962395,0.123631,0.617609,0.752832,0.860261,0.017992,0.195696,0.257506,0.226026,0.584174,0.744894,0.918348,0.767457,0.165837,0.769916,0.84026,0.823659,0.907575,0.656316,0.54267,0.671801,0.428848,0.438213,0.419755,0.473559,0.51645,0.255403,0.0113722,0.144713,0.36599,0.0359653,0.939569,0.0271623,0.193711,0.843946,0.984596,0.349872,0.167056,0.11848,0.317992,0.339348,0.416503,0.343554,0.620478,0.177192,0.706738,0.219496,0.631461,0.317359,0.473476,0.773886,0.432386,0.38921,0.00173086,0.521805,0.283916,0.95519,0.398236,0.40596,0.872776,0.0133955,0.614098,0.932465,0.110475,0.6496,0.665732,0.0160465,0.580678,0.171803,0.586654,0.110457,0.410151,0.847438,0.795111,0.800526,0.586771,0.185357,0.607066,0.20774,0.799491,0.831814,0.885127,0.534739,0.172192,0.336357,0.609193,0.0134411,0.461909,0.0765265,0.430486,0.321232,0.822537,0.979958,0.160978,0.987466,0.0319005,0.694637,0.765819,0.0616879,0.0723206,0.341597,0.438043,0.206038,0.185397,0.731777,0.6598,0.73956,0.140807,0.904658,0.204643,0.853818,0.337264,0.0416893,0.277811,0.721412,0.156173,0.733014,0.211054,0.582259,0.57099,0.175221,0.768857,0.760241,0.751615,0.614472,0.50877,0.212225,0.999292,0.251142,0.407452,0.640906,0.898254,0.709321,0.454192,0.355569,0.939342,0.781325,0.941475,0.815545,0.092495,0.521621,0.467579,0.369333,0.489503,0.404523,0.469643,0.779594,0.00972492,0.498703,0.0855353,0.520625,0.877924,0.895982,0.424368,0.909443,0.178344,0.118237,0.508697,0.242797,0.759008,0.826479,0.505268,0.385965,0.191088,0.459092,0.446467,0.888835,0.63275,0.983869,0.634584,0.96038,0.13467,0.922633,0.178392,0.448139,0.13495,0.768573,0.307751,0.715337,0.629575,0.928151,0.756466,0.830509,0.986993,0.93198,0.153365,0.20654,0.663291,0.00306648,0.579698,0.393497,0.543131,0.162781,0.681015,0.911932,0.545218,0.653374,0.0345273,0.0553904,0.53162,0.535632,0.532303,0.631151,0.4399,0.607481,0.019713,0.778566,0.922721,0.293535,0.32979,0.246151,0.496917,0.409104,0.451321,0.110814,0.71667,0.223625,0.652197,0.912391,0.793263,0.145939,0.680931,0.989223,0.578663,0.641635,0.847281,0.898204,0.49151,0.401313,0.738166,0.549568,0.346813,0.346693,0.0889277,0.193189,0.0171114,0.656792,0.0923974,0.884737,0.836239,0.195329,0.0575181,0.630871,0.842883,0.0855089,0.244081,0.690051,0.496818,0.423419,0.0857788,0.483921,0.294271,0.249607,0.664614,0.254297,0.205788,0.570298,0.289505,0.888738,0.382239,0.100189,0.212479,0.63965,0.673087,0.573114,0.55845,0.712952,0.690852,0.813595,0.386387,0.72652,0.990313,0.656052,0.88758,0.535392,0.659925,0.160131,0.447551,0.365498,0.237366,0.198653,0.804323,0.12037,0.802601,0.332851,0.405351,0.298816,0.353875,0.785301,0.120154,0.561414,0.760359,0.17631,0.710813,0.395985,0.121423,0.384545,0.747248,0.375502,0.0596506,0.340536,0.814318,0.838591,0.692726,0.352246,0.160427,0.547316,0.834345,0.195362,0.0867299,0.488219,0.761724,0.748087,0.38728,0.977873,0.326641,0.810843,0.135385,0.325033,0.106011,0.932878,0.978363,0.217514,0.694006,0.164478,0.218934,0.110827,0.0679442,0.545811,0.413556,0.187726,0.383914,0.228009,0.686079,0.862857,0.31585,0.376849,0.468251,0.05475,0.620997,0.0346711,0.636257,0.697123,0.910048,0.339133,0.930436,0.136697,0.386397,0.539154,0.716215,0.508792,0.0664381,0.415373,0.469352,0.57918,0.381472,0.747005,0.93951,0.659774,0.661702,0.444404,0.664497,0.44509,0.953602,0.402761,0.538867,0.129969,0.759415,0.519545,0.0730593,0.421861,0.274709,0.848569,0.925134,0.946614,0.74942,0.318502,0.602466,0.253229,0.60506,0.851283,0.467821,0.927165,0.349621,0.215079,0.243019,0.335432,0.291322,0.260723,0.132733,0.496411,0.331004,0.898755,0.000722587,0.300923,0.373389,0.983319,0.262221,0.919105,0.824677,0.750054,0.0883226,0.904642,0.658727,0.365037,0.905932,0.564018,0.478532,0.0628937,0.105214,0.719767,0.560956,0.158812,0.362838,0.2313,0.136581,0.0538132,0.935718,0.460054,0.469242,0.65136,0.474208,0.387518,0.561808,0.663799,0.851437,0.31729,0.548314,0.78414,0.411212,0.0191383,0.920821,0.543186,0.832389,0.324713,0.0135146,0.121047,0.026063,0.971126,0.23946,0.088959,0.947643,0.172599,0.0539009,0.0540741,0.538816,0.65416,0.696487,0.505042,0.449424,0.299108,0.352335,0.409254,0.421701,0.847463,0.975091,0.43646,0.977488,0.527232,0.476142,0.816469,0.355847,0.284723,0.932876,0.379062,0.596896,0.296308,0.638735,0.0453964,0.56194,0.0345322,0.396188,0.378594,0.858954,0.121859,0.0331613,0.57832,0.433903,0.508725,0.884924,0.664201,0.844863,0.239229,0.000854254,0.132347,0.544438,0.837277,0.769644,0.649844,0.749308,0.478536,0.0280561,0.33377,0.801359,0.549645,0.396979,0.0244688,0.312169,0.110442,0.183511,0.365612,0.186863,0.850452,0.753723,0.268406,0.447163,0.439442,0.929864,0.689123,0.389316,0.236105,0.998758,0.0646139,0.0239665,0.763472,0.806298,0.706194,0.200602,0.258124,0.540847,0.256954,0.619281,0.970422,0.199455,0.362109,0.752127,0.415788,0.0238724,0.347295,0.296413,0.866286,0.345997,0.823015,0.731414,0.694309,0.0787972,0.971962,0.0852977,0.740538,0.331585,0.877591,0.285429,0.535891,0.492794,0.815562,0.969533,0.0224702,0.582217,0.139295,0.648355,0.931976,0.43754,0.690135,0.3608,0.066337,0.570877,0.944289,0.108556,0.183806,0.906355,0.51908,0.247561,0.105145,0.0487507,0.325194,0.0245062,0.867959,0.527095,0.301726,0.809337,0.832259,0.891938,0.796444,0.244899,0.595751,0.0599137,0.631138,0.722134,0.83877,0.0955372,0.280132,0.898359,0.154291,0.00428057,0.423704,0.13385,0.630638,0.456334,0.308413,0.882632,0.676457,0.971053,0.675242,0.261107,0.340422,0.934252,0.406322,0.704004,0.408382,0.288893,0.395075,0.847565,0.0986105,0.741184,0.31493,0.373978,0.745952,0.727179,0.484177,0.335284,0.0915278,0.875253,0.221333,0.00150913,0.0575452,0.057373,0.943368,0.441205,0.641807,0.638738,0.634227,0.341046,0.764677,0.803996,0.744541,0.715885,0.677744,0.990547,0.891318,0.022895,0.711688,0.880201,0.247106,0.970203,0.426343,0.282742,0.124303,0.177444,0.165867,0.119274,0.595241,0.137715,0.688863,0.280158,0.597834,0.182417,0.50794,0.149778,0.977602,0.10041,0.849344,0.106167,0.25358,0.0758489,0.0161289,0.56287,0.746716,0.940619,0.314009,0.748877,0.854269,0.103173,0.811708,0.974888,0.602091,0.211507,0.359815,0.363413,0.517368,0.643867,0.632152,0.233705,0.760608,0.269432,0.887191,0.049002,0.188721,0.881022,0.447374,0.264986,0.288186,0.829233,0.900444,0.81613,0.70613,0.52295,0.746735,0.111431,0.600471,0.465742,0.0777521,0.342819,0.917989,0.904959,0.288851,0.286978,0.100341,0.978014,0.620302,0.918349,0.202686,0.197938,0.0145958,0.368124,0.537417,0.798268,0.737967,0.062642,0.659448,0.144085,0.934717,0.617996,0.638743,0.579623,0.428404,0.981863,0.451286,0.799943,0.543501,0.71246,0.267229,0.695992,0.555663,0.332412,0.990839,0.489041,0.991421,0.0350482,0.420198,0.615585,|0.196048,0.82095,0.597694,0.819908,0.797883,0.809413,0.12402,0.833555,0.462187,0.251194,0.863553,0.698467,0.257361,0.221637,0.818561,0.01241,0.999014,0.366753,0.239919,0.44591,0.574198,0.627255,0.674413,0.282098,0.719645,0.458113,0.0120307,0.748658,0.637976,0.508956,0.0219547,0.835925,0.640567,0.539784,0.241567,0.772483,0.267033,0.877371,0.371392,0.295017,0.179184,0.568691,0.372083,0.0809537,0.053543,0.057911,0.465268,0.179207,0.797907,0.953909,0.446228,0.217312,0.00177008,0.0629112,0.61852,0.492373,0.708374,0.967412,0.0535905,0.247907,0.485691,0.129613,0.133383,0.66171,0.07964,0.252957,0.400471,0.789053,0.760576,0.291483,0.369876,0.0321214,0.772008,0.718671,0.864689,0.703676,0.50778,0.285658,0.842308,0.480251,0.725431,0.62688,0.583218,0.698254,0.869686,0.842751,0.0874355,0.937834,0.792569,0.50686,0.952886,0.105279,0.601912,0.0509609,0.257243,0.323501,0.0324616,0.55493,0.462869,0.32248,0.38899,0.316735,0.314231,0.991093,0.362526,0.866092,0.201493,0.816289,0.217687,0.653566,0.647408,0.350914,0.127689,0.355661,0.592836,0.252193,0.708574,0.653482,0.0696184,0.966663,0.150672,0.854018,0.36554,0.969965,0.810995,0.869287,0.540479,0.647654,0.5704,0.649973,0.560918,0.359409,0.567336,0.502154,0.851689,0.932927,0.00887036,0.282706,0.769104,0.362794,0.566959,0.140033,0.199768,0.338394,0.732544,0.152533,0.274355,0.45514,0.318336,0.251157,0.476335,0.361022,0.138665,0.432212,0.923684,0.251035,0.059096,0.631492,0.547567,0.719285,0.211994,0.65105,0.339254,0.670705,0.95176,0.582557,0.53175,0.266014,0.261159,0.392726,0.0478675,0.57053,0.117802,0.381313,0.145135,0.624007,0.705065,0.809038,0.847972,0.563609,0.983474,0.0682915,0.322669,0.11755,0.22068,0.763901,0.121007,0.0372921,0.293428,0.488428,0.220616,0.157668,0.514894,0.0971558,0.612549,0.0775737,0.719552,0.44212,0.430358,0.71121,0.169542,0.738399,0.770407,0.1606,0.734557,0.797656,0.673146,0.941278,0.966288,0.954882,0.949053,0.109475,0.0107149,0.179587,0.997887,0.315551,0.92114,0.194791,0.728202,0.75761,0.425491,0.150616,0.472258,0.834024,0.726161,0.216131,0.00552475,0.227663,0.40648,0.706804,0.311942,0.989967,0.530559,0.073167,0.165117,0.0138833,0.810212,0.671341,0.375318,0.57074,0.289011,0.469087,0.265757,0.658282,0.696315,0.38552,0.0197477,0.680039,0.149604,0.58465,0.358773,0.206462,0.0331887,0.470138,0.13656,0.219472,0.834,0.807881,0.211469,0.759823,0.563342,0.144075,0.865417,0.354801,0.575437,0.390598,0.234958,0.311028,0.550324,0.784157,0.187698,0.615576,0.368474,0.596193,0.936184,0.848225,0.922365,0.689553,0.376486,0.772635,0.707474,0.206214,0.166627,0.619909,0.0156274,0.113782,0.270061,0.350814,0.636712,0.661374,0.859172,0.489769,0.372492,0.884164,0.559237,0.463033,0.905026,0.454923,0.930803,0.426709,0.710072,0.546179,0.123386,0.824162,0.457241,0.983058,0.930666,0.000193536,0.957347,0.610674,0.95659,0.184208,0.729817,0.360485,0.0494174,0.378509,0.26665,0.475528,0.667848,0.0257267,0.130612,0.197307,0.35141,0.763818,0.524953,0.27848,0.533206,0.675903,0.104227,0.193333,0.231654,0.618772,0.833001,0.619276,0.814092,0.65396,0.805244,0.805888,0.539111,0.59604,0.723468,0.303288,0.0980951,0.555519,0.699417,0.668784,0.159191,0.313821,0.45825,0.180385,0.179819,0.588669,0.955334,0.123377,0.360163,0.415278,0.37905,0.295479,0.942191,0.953053,0.856531,0.848458,0.226001,0.335159,0.656755,0.333273,0.0732651,0.48573,0.0230474,0.87452,0.930795,0.483527,0.44151,0.616637,0.787967,0.873924,0.292846,0.937465,0.18197,0.00803214,0.341219,0.163016,0.383339,0.980939,0.786446,0.377093,0.783568,0.489432,0.809063,0.0461016,0.46699,0.49444,0.144109,0.607199,0.132373,0.967896,0.295689,0.0397705,0.669781,0.547739,0.0108019,0.23189,0.782841,0.716222,0.739884,0.0475345,0.45949,0.275201,0.448214,0.720918,0.98542,0.634028,0.369752,0.542194,0.0236295,0.358786,0.13981,0.316187,0.483469,0.821457,0.225518,0.00201291,0.0544651,0.375965,0.522562,0.0483401,0.997331,0.262617,0.266056,0.97284,0.0940035,0.0407631,0.193514,0.107199,0.625918,0.994732,0.461461,0.51323,0.0936457,0.788606,0.820781,0.266431,0.0944194,0.347798,0.34636,0.580062,0.637698,0.418991,0.31377,0.346764,0.854079,0.388659,0.560612,0.963976,0.551432,0.232616,0.30563,0.991203,0.361745,0.0812364,0.313982,0.917709,0.363218,0.442251,0.868594,0.575218,0.636905,0.280147,0.89117,0.743179,0.812641,0.470169,0.752429,0.0603241,0.808553,0.579201,0.996573,0.0907277,0.799159,0.392656,0.622579,0.967173,0.818055,0.886081,0.385379,0.869455,0.408876,0.93801,0.937083,0.96322,0.66569,0.00459266,0.707506,0.379186,0.496446,0.813087,0.557995,0.355401,0.426054,0.525419,0.803566,0.365476,0.710835,0.648888,0.392866,0.4742,0.180299,0.0344267,0.324595,0.60789,0.998666,0.319684,0.825213,0.685222,0.238544,0.869451,0.381133,0.454441,0.113731,0.375554,0.822711,0.517732,0.926219,0.630356,0.61371,0.371355,0.160868,0.747139,0.908088,0.755126,0.717359,0.880016,0.580792,0.747138,0.626955,0.0565165,0.0564126,0.883399,0.121709,0.577177,0.446563,0.748174,0.651962,0.64317,0.558342,0.611995,0.349528,0.00153285,0.0664709,0.926612,0.103203,0.968692,0.893467,0.197049,0.342136,0.713215,0.179564,0.991804,0.796981,0.758997,0.975235,0.932503,0.888069,0.921274,0.761858,0.829741,0.311,0.302331,0.684781,0.327358,0.785627,0.657173,0.05874,0.820883,0.363629,0.895903,0.347332,0.280685,0.166835,0.0911745,0.335918,0.0575989,0.751561,0.896317,0.777622,0.895734,0.511658,0.582123,0.886254,0.384584,0.669131,0.0925229,0.942458,0.557011,0.282042,0.556677,0.756177,0.822945,0.668525,0.504773,0.350195,0.76957,0.596981,0.526542,0.649033,0.040441,0.0829928,0.093251,0.937998,0.0749009,0.380139,0.299663,0.0166584,0.0447589,0.595404,0.35765,0.00183636,0.937564,0.594028,0.63137,0.11128,0.287195,0.427673,0.627505,0.247703,0.707017,0.52366,0.69216,0.428407,0.980536,0.410394,0.518406,0.0139278,0.203206,0.634466,0.667765,0.0501938,0.99445,0.84605,0.41309,0.546354,0.87089,0.61961,0.952376,0.631158,0.528237,0.412294,0.563896,0.170112,0.102515,0.373462,0.476516,0.143199,0.617318,0.397821,0.0439546,0.809439,0.702297,0.253292,0.588173,0.54842,0.857537,0.68801,0.845991,0.406932,0.952356,0.846468,0.867259,0.232064,0.567169,0.647069,0.13133,0.732003,0.663512,0.171951,0.406547,0.529738,0.503115,0.93623,0.44338,0.69831,0.48698,0.512222,0.722866,0.521309,0.692001,0.143486,0.137129,0.346109,0.131831,0.651913,0.00260371,0.0977206,0.283565,0.0272052,0.518354,0.587639,0.878701,0.357868,0.0882599,0.252866,0.970122,0.78683,0.651601,0.243639,0.195095,0.858749,0.500328,0.607322,0.999837,0.237725,0.685725,0.397909,0.998606,0.879263,0.690014,0.964723,0.830508,0.651982,0.533133,0.323372,0.295343,0.416484,0.333463,0.484188,0.645988,0.965855,0.950933,0.923958,0.815228,0.847708,0.00443739,0.341936,0.626128,0.76587,0.45821,0.507355,0.459912,0.158334,0.981272,0.753682,0.974274,0.291887,0.652775,0.26092,0.0712295,0.425212,0.891359,0.608309,0.518804,0.996472,0.374523,0.582145,0.926537,0.231028,0.787965,0.255489,0.280153,0.961073,0.652499,0.526896,0.37206,0.776236,0.0453494,0.972183,0.721493,0.0236564,0.776112,0.441131,0.226139,0.743148,0.0235322,0.568834,0.0948963,0.745826,0.455525,0.303536,0.420675,0.249391,0.387,0.205931,0.141802,0.780247,0.46517,0.852061,0.859645,0.399705,0.378198,0.227489,0.400147,0.440271,0.620192,0.319722,0.889135,0.565565,0.321961,0.741136,0.969211,0.53032,0.339886,0.884708,0.665149,0.253376,0.840733,0.846586,0.653279,0.412784,0.0297943,0.362332,0.251797,0.414488,0.354601,0.0200904,0.585253,0.934783,0.640944,0.0311774,0.967845,0.34223,0.35137,0.84473,0.578814,0.194129,0.298395,0.911454,0.280541,0.205094,0.0616468,0.00515473,0.217209,0.438173,0.190924,0.502334,0.629984,0.959787,0.110019,0.0714595,0.668277,0.886976,0.266073,0.2811,0.0499576,0.291511,0.478345,0.637396,0.0572156,0.654393,0.261578,0.38128,0.587868,0.913491,0.0811818,0.344294,0.522915,0.955615,0.394961,0.0976254,0.210305,0.285292,0.911623,0.693752,0.942346,0.591102,0.167839,0.238723,0.406031,0.421779,0.00472862,0.788955,0.689115,0.804365,0.651311,0.613955,0.504899,0.61756,0.0664189,0.958799,0.652475,0.767677,0.681806,0.628345,0.979738,0.461641,0.620642,0.330943,0.16678,0.632668,0.814481,0.549471,0.678174,0.838472,0.045899,0.379709,0.0179604,0.075522,0.931242,0.22457,0.469843,0.300035,0.253573,0.695024,0.414979,0.821632,0.430735,0.491852,0.674336,0.663125,0.121369,0.956115,0.340459,0.421718,0.595712,0.0422977,0.650772,0.526984,0.907515,0.894981,0.154969,0.501923,0.934141,0.860023,0.781868,0.878289,0.706684,0.827738,0.439105,0.881172,0.188017,0.477175,0.417805,0.811516,0.215233,0.654861,0.131889,0.134027,0.297764,0.0100226,0.508757,0.842027,0.269667,0.487901,0.706152,0.877251,0.501135,0.413873,0.705056,0.106883,0.412996,0.241893,0.135367,0.265806,0.0447612,0.99849,0.689152,0.571157,0.0523024,0.9517,0.677928,0.992264,0.381307,0.542996,0.339946,0.729452,0.0678208,0.115131,0.541788,0.192662,0.912574,0.539756,0.487537,0.28985,0.0228415,0.607153,0.543777,0.732855,0.195915,0.153629,0.519703,0.500096,0.385384,0.0147822,0.598982,0.613294,0.579916,0.795885,0.843851,0.428441,0.0441828,0.526771,0.887118,0.0962092,0.788862,0.210638,0.305457,0.236811,0.753158,0.833835,0.121224,0.271443,0.775717,|0.148224,0.624747,0.842933,0.0678988,0.0893385,0.769119,0.334603,0.217618,0.388144,0.754915,0.301307,0.944082,0.15462,0.0101806,0.11549,0.717553,0.779939,0.186142,0.322678,0.000656843,0.658768,0.595552,0.0802941,0.57369,0.563565,0.160074,0.294833,0.177866,0.144534,0.157607,0.0504075,0.522463,0.798205,0.770138,0.955223,0.186873,0.236714,0.550591,0.720993,0.896959,0.355019,0.29761,0.778065,0.114589,0.487138,0.220728,0.554373,0.949485,0.75069,0.872625,0.469371,0.735051,0.016056,0.930425,0.182344,0.843359,0.834604,0.826874,0.0384324,0.0322751,0.487291,0.490423,0.539213,0.0281433,0.167515,0.365882,0.487953,0.14394,0.919437,0.405161,0.0153791,0.387816,0.833419,0.219279,0.52822,0.0299796,0.67037,0.778471,0.0836008,0.0260318,0.0807227,0.158352,0.275785,0.731105,0.52842,0.299294,0.0891856,0.576303,0.578687,0.199457,0.504274,0.474685,0.332819,0.00332427,0.589101,0.430934,0.406991,0.679783,0.862653,0.0213875,0.400312,0.0259365,0.232875,0.629638,0.104447,0.954893,0.0355546,0.642872,0.656863,0.464831,0.056667,0.48868,0.536671,0.10703,0.0524619,0.493743,0.510245,0.970562,0.990287,0.0674748,0.998903,0.86349,0.664447,0.318779,0.0219765,0.869089,0.116308,0.355129,0.0214151,0.502775,0.183128,0.141292,0.749294,0.788078,0.410429,0.998713,0.57772,0.613892,0.0899078,0.253339,0.599594,0.956075,0.115995,0.881941,0.0797008,0.705459,0.974205,0.672348,0.442473,0.461626,0.473818,0.278146,0.75486,0.966151,0.788843,0.808113,0.175519,0.88192,0.0404806,0.957772,0.0689589,0.389073,0.961575,0.48955,0.922363,0.351712,0.692134,0.369942,0.602654,0.832932,0.875751,0.206981,0.983003,0.494131,0.472201,0.282136,0.964454,0.715288,0.852616,0.159254,0.212789,0.349879,0.721052,0.0297363,0.975826,0.472034,0.222431,0.683801,0.254807,0.847605,0.868295,0.344244,0.79987,0.581514,0.967117,0.884759,0.297087,0.781556,0.686039,0.328733,0.558599,0.51977,0.0182042,0.616118,0.907628,0.254836,0.978959,0.988247,0.787088,0.559385,0.249214,0.989141,0.332439,0.554019,0.0863544,0.824786,0.334044,0.0371539,0.840257,0.425515,0.813942,0.678832,0.759704,0.494366,0.375645,0.485,0.0766985,0.361303,0.96119,0.389556,0.438369,0.485862,0.608686,0.826444,0.174435,0.616576,0.182798,0.558259,0.867682,0.375455,0.93543,0.526448,0.866811,0.56542,0.546224,0.689055,0.271517,0.220867,0.0609267,0.465217,0.236845,0.443233,0.793116,0.744074,0.647217,0.799837,0.668309,0.650782,0.131329,0.502851,0.733214,0.783501,0.636054,0.597546,0.375833,0.04823,0.577387,0.26099,0.979109,0.776397,0.208041,0.898452,0.731225,0.523376,0.352363,0.217994,0.788432,0.192464,0.0165538,0.783737,0.979039,0.870305,0.208896,0.627129,0.0482503,0.409085,0.425746,0.830273,0.329002,0.0277357,0.0796303,0.980532,0.269117,0.0618588,0.462371,0.310128,0.483721,0.388443,0.993094,0.498389,0.601104,0.145099,0.812849,0.423258,0.624242,0.143374,0.0920747,0.305876,0.363702,0.253102,0.232893,0.525114,0.831066,0.283721,0.618955,0.28335,0.446137,0.566617,0.254889,0.086558,0.234558,0.780853,0.922542,0.738902,0.823944,0.290379,0.262767,0.102809,0.99628,0.794608,0.646324,0.0934389,0.337044,0.932314,0.305529,0.522896,0.495618,0.25244,0.836989,0.689638,0.146812,0.414206,0.816096,0.402042,0.166429,0.100565,0.889653,0.885271,0.752748,0.340009,0.328422,0.576251,0.951536,0.554264,0.733946,0.0421404,0.579617,0.0678631,0.671277,0.692921,0.537198,0.165658,0.84218,0.445585,0.191388,0.842955,0.0373989,0.240076,0.847709,0.330549,0.175411,0.913901,0.520926,0.391407,0.456831,0.802406,0.383413,0.266615,0.251859,0.0587882,0.322907,0.890227,0.880944,0.257262,0.441169,0.543525,0.240965,0.0102018,0.254102,0.241101,0.736954,0.184454,0.493259,0.125037,0.623736,0.586472,0.112078,0.830691,0.672443,0.438633,0.822248,0.907097,0.499156,0.0795452,0.635924,0.0370806,0.405705,0.314521,0.00824386,0.361384,0.448558,0.822958,0.711052,0.158095,0.490897,0.478215,0.496104,0.212175,0.843306,0.73972,0.654398,0.625357,0.641407,0.470999,0.728516,0.785138,0.0569921,0.0740284,0.796635,0.370586,0.960159,0.662388,0.709908,0.580477,0.703506,0.0317543,0.233831,0.601488,0.803941,0.054113,0.115761,0.205228,0.0861176,0.458164,0.0142784,0.0331075,0.586196,0.449437,0.810765,0.851603,0.0745718,0.11494,0.17648,0.847635,0.401225,0.278433,0.412018,0.733306,0.100703,0.48934,0.319866,0.886286,0.90067,0.43769,0.0128214,0.581314,0.600401,0.656202,0.882704,0.135265,0.496234,0.00443822,0.643906,0.505926,0.565094,0.161723,0.535137,0.205716,0.711687,0.258191,0.190505,0.204804,0.798266,0.869984,0.677724,0.779641,0.480902,0.258819,0.604435,0.282342,0.576985,0.510424,0.0792086,0.63359,0.171034,0.200075,0.429416,0.617905,0.444596,0.101558,0.545699,0.38147,0.164037,0.806642,0.663037,0.40433,0.506076,0.744297,0.735906,0.583401,0.889065,0.588526,0.0567695,0.127426,0.336433,0.413834,0.0727775,0.172916,0.272874,0.468959,0.137794,0.426105,0.417349,0.234304,0.838266,0.294339,0.342798,0.882843,0.0190647,0.57637,0.483961,0.146722,0.36413,0.402224,0.159024,0.373019,0.506039,0.586138,0.930451,0.0392777,0.370646,0.435766,0.240313,0.714848,0.828465,0.12551,0.821527,0.852658,0.994154,0.268844,0.94654,0.591276,0.0882983,0.273563,0.620468,0.20108,0.987803,0.211114,0.461736,0.683093,0.247251,0.621001,0.716442,0.99782,0.450415,0.549312,0.609235,0.632896,0.80512,0.300721,0.0162775,0.470681,0.506556,0.0185745,0.903368,0.219801,0.0632172,0.886563,0.401566,0.0826246,0.664014,0.581433,0.185541,0.0957485,0.556235,0.0028587,0.576647,0.80834,0.771776,0.705289,0.294433,0.535762,0.679492,0.390888,0.863438,0.545154,0.861796,0.279219,0.866716,0.0572273,0.0129644,0.912235,0.152504,0.918848,0.415915,0.45528,0.285743,0.569813,0.54016,0.0119079,0.158558,0.565534,0.910204,0.13924,0.672914,0.333731,0.254544,0.0553792,0.356085,0.40625,0.707563,0.436525,0.564286,0.350354,0.0880062,0.112266,0.844958,0.626585,0.482929,0.276903,0.307171,0.590586,0.833015,0.300294,0.812817,0.167949,0.11875,0.559548,0.993776,0.313233,0.874517,0.649409,0.755567,0.271787,0.71325,0.602177,0.106934,0.928769,0.738004,0.849277,0.849127,0.450695,0.0641571,0.926174,0.36684,0.787602,0.0848922,0.980116,0.412265,0.547017,0.139866,0.193779,0.550945,0.452064,0.667168,0.86618,0.0469058,0.104927,0.558981,0.45315,0.862621,0.554717,0.126725,0.526349,0.0973969,0.534169,0.930038,0.580729,0.204198,0.771867,0.496188,0.0654031,0.477973,0.489624,0.108637,0.570713,0.63305,0.517151,0.358108,0.154446,0.505696,0.59908,0.75165,0.835639,0.03057,0.647754,0.0784952,0.6223,0.853483,0.49522,0.137127,0.703814,0.54299,0.48105,0.70277,0.568718,0.533591,0.772651,0.685181,0.237706,0.681962,0.299883,0.51066,0.144385,0.487233,0.196049,0.87871,0.419834,0.411151,0.938253,0.779124,0.257572,0.752646,0.88801,0.305211,0.764479,0.715985,0.402043,0.859792,0.0368696,0.236701,0.795338,0.853061,0.167767,0.778027,0.603598,0.289573,0.232447,0.644508,0.612189,0.270535,0.113041,0.429305,0.822415,0.588757,0.298677,0.790136,0.701948,0.0283096,0.521839,0.579212,0.0584617,0.114306,0.986451,0.933741,0.928338,0.434235,0.851992,0.253857,0.579385,0.107188,0.858129,0.641797,0.509497,0.921183,0.924597,0.0499297,0.963525,0.597265,0.533147,0.0512488,0.333116,0.788082,0.830674,0.360815,0.788366,0.070332,0.679602,0.188367,0.0256891,0.533935,0.597512,0.584486,0.0836384,0.0397483,0.56767,0.832786,0.745481,0.0714191,0.0200986,0.154408,0.418695,0.286216,0.104348,0.312327,0.270558,0.353954,0.652467,0.94943,0.714834,0.906447,0.983802,0.36427,0.417724,0.0198599,0.844762,0.217074,0.574089,0.649382,0.384265,0.951557,0.535105,0.953608,0.83458,0.57812,0.811342,0.546063,0.604285,0.966827,0.688242,0.428238,0.945664,0.246711,0.426369,0.063325,0.289601,0.542155,0.106783,0.59267,0.912945,0.604524,0.116675,0.118744,0.106086,0.546537,0.227312,0.850609,0.455801,0.852614,0.522922,0.503374,0.0771626,0.189297,0.514121,0.188913,0.436722,0.369536,0.679357,0.73273,0.997503,0.58914,0.221289,0.951948,0.214836,0.122988,0.567039,0.724884,0.350306,0.619702,0.920774,0.0791675,0.693341,0.122177,0.76797,0.60456,0.872296,0.149336,0.878791,0.488462,0.698606,0.312489,0.803622,0.715511,0.205178,0.70299,0.0167415,0.558292,0.0878519,0.00944638,0.419594,0.39076,0.372976,0.844209,0.182672,0.0621814,0.2626,0.314406,0.636322,0.755843,0.0522824,0.0668158,0.531257,0.0535535,0.1068,0.482132,0.0782886,0.766435,0.079935,0.832074,0.762764,0.213753,0.813565,0.324464,0.934439,0.898257,0.860683,0.465958,0.0760595,0.599749,0.194242,0.758331,0.512444,0.316248,0.468439,0.985989,0.0424545,0.556062,0.78669,0.701937,0.302276,0.00158,0.843643,0.317516,0.0493991,0.305934,0.345191,0.173969,0.824599,0.604692,0.223129,0.549903,0.95599,0.626225,0.131422,0.957516,0.891618,0.0586323,0.888951,0.557905,0.806963,0.141157,0.51253,0.874028,0.714471,0.316458,0.854779,0.660986,0.474121,0.979923,0.86836,0.237623,0.0953828,0.724095,0.786536,0.262729,0.940279,0.793765,0.855651,0.359139,0.993881,0.937809,0.910824,0.939632,0.20577,0.309563,0.608425,0.186402,0.077108,0.758107,0.113421,0.39935,0.362499,0.290309,0.588594,0.291729,0.732124,0.699733,0.0513474,0.0981264,0.0828341,0.52578,0.335958,0.819944,0.927076,0.955801,0.122474,0.00592005,0.654944,0.58321,0.548956,0.0733166,0.79842,0.274071,0.821775,0.434935,0.472921,0.619479,0.727766,0.39861,0.827507,|0.780217,0.842808,0.832946,0.700338,0.334576,0.509526,0.599719,0.785097,0.172978,0.529593,0.0842431,0.903236,0.256763,0.340864,0.617015,0.955925,0.00506938,0.0281496,0.260352,0.392272,0.54263,0.25482,0.3261,0.843302,0.0984879,0.671774,0.798392,0.473882,0.79617,0.653312,0.461237,0.496668,0.922451,0.844334,0.874617,0.230151,0.0340496,0.141133,0.670263,0.501451,0.0833055,0.170667,0.819123,0.0147153,0.775446,0.19098,0.470298,0.0590325,0.516481,0.628764,0.908135,0.248029,0.9023,0.921919,0.93369,0.547656,0.90015,0.202338,0.0989295,0.946514,0.829078,0.152839,0.686042,0.0105702,0.581433,0.301008,0.663842,0.146616,0.47627,0.316176,0.911001,0.299836,0.865177,0.493139,0.099038,0.484045,0.934539,0.600795,0.121503,0.209543,0.666046,0.728167,0.183673,0.302205,0.60327,0.268472,0.891035,0.0648151,0.574847,0.857797,0.575549,0.552741,0.913105,0.064491,0.0412362,0.571553,0.266055,0.097998,0.325468,0.912978,0.755117,0.149945,0.402218,0.12125,0.806121,0.375416,0.577694,0.00317973,0.0875734,0.311,0.397395,0.164104,0.535689,0.861387,0.328755,0.531774,0.454775,0.744314,0.59696,0.50685,0.721849,0.6142,0.701226,0.969289,0.443654,0.278492,0.993925,0.0190095,0.836765,0.20528,0.150124,0.12781,0.620573,0.0413037,0.691087,0.517354,0.068775,0.50224,0.920819,0.804211,0.0435732,0.266629,0.631739,0.605608,0.85526,0.049313,0.231518,0.111686,0.254875,0.808107,0.748519,0.843356,0.994221,0.444156,0.123656,0.923143,0.90891,0.0296826,0.916163,0.188286,0.79771,0.846542,0.974177,0.267026,0.297697,0.3808,0.425174,0.570291,0.823296,0.624798,0.35322,0.691016,0.64708,0.0835473,0.297636,0.78663,0.729385,0.242405,0.170155,0.420401,0.468859,0.222893,0.776507,0.667856,0.861874,0.325138,0.327954,0.462868,0.160773,0.81526,0.653128,0.522429,0.0479179,0.0523267,0.026451,0.0549252,0.859929,0.140698,0.858754,0.722898,0.318963,0.947617,0.226156,0.709793,0.765971,0.311136,0.722,0.942026,0.47247,0.156029,0.677378,0.0997383,0.424297,0.0163069,0.0554746,0.767706,0.910059,0.529922,0.872563,0.0772566,0.00135565,0.184378,0.586,0.864672,0.278844,0.142218,0.939817,0.0609858,0.879809,0.586089,0.114954,0.561362,0.279701,0.378455,0.578872,0.417821,0.510747,0.0177894,0.420798,0.430286,0.597837,0.849352,0.230882,0.787878,0.707501,0.788459,0.148701,0.764282,0.126273,0.499216,0.550968,0.313886,0.143934,0.977381,0.87927,0.00357842,0.351005,0.0673028,0.0929134,0.560587,0.119759,0.528282,0.255794,0.11165,0.779493,0.0667353,0.994461,0.479085,0.698935,0.388004,0.641573,0.632465,0.504013,0.0505869,0.441889,0.279217,0.0623062,0.117026,0.417472,0.978505,0.214221,0.918413,0.764406,0.310279,0.752948,0.843008,0.951337,0.748603,0.116855,0.497869,0.768893,0.819974,0.775138,0.186945,0.605707,0.42504,0.0234248,0.2546,0.635199,0.697889,0.227842,0.61716,0.425077,0.482044,0.177682,0.0152464,0.208894,0.494207,0.175493,0.948378,0.0898752,0.0778365,0.485874,0.37211,0.616533,0.569905,0.714465,0.00410241,0.791272,0.0167908,0.520873,0.922878,0.377899,0.952825,0.138492,0.521585,0.510046,0.652352,0.565768,0.488449,0.542111,0.120319,0.696234,0.935901,0.0424072,0.357528,0.233559,0.807619,0.19771,0.307525,0.998989,0.163482,0.24285,0.986298,0.624424,0.542013,0.202022,0.947261,0.54101,0.122827,0.940783,0.633335,0.451689,0.401473,0.34945,0.695942,0.939409,0.860649,0.20765,0.931543,0.830754,0.133922,0.17065,0.677962,0.551958,0.708426,0.6589,0.0195796,0.377929,0.0999711,0.0842248,0.230375,0.643674,0.0117245,0.434909,0.0772318,0.805778,0.782131,0.899415,0.170682,0.308653,0.848688,0.601937,0.948362,0.38396,0.0145505,0.469121,0.399226,0.0497353,0.789336,0.295091,0.308826,0.744515,0.655278,0.259038,0.449693,0.275072,0.213876,0.726,0.465383,0.470194,0.864561,0.469998,0.645255,0.707868,0.483805,0.417622,0.266294,0.443755,0.561356,0.420366,0.131,0.492543,0.0280371,0.00124562,0.415757,0.593807,0.248428,0.0114478,0.761704,0.692288,0.704842,0.934614,0.722561,0.957923,0.722691,0.870569,0.288419,0.682238,0.243183,0.891714,0.562518,0.884323,0.183769,0.812091,0.162469,0.806413,0.958231,0.116751,0.293073,0.85287,0.277068,0.77089,0.928769,0.348764,0.988831,0.465643,0.226753,0.285915,0.690298,0.207621,0.981685,0.570571,0.529642,0.220423,0.342001,0.166303,0.73453,0.103676,0.544507,0.853118,0.222485,0.455773,0.310396,0.199832,0.518432,0.865681,0.113037,0.314181,0.412751,0.0938125,0.33439,0.352059,0.282553,0.00568259,0.380219,0.204313,0.967618,0.12347,0.0952777,0.954827,0.134438,0.677354,0.113375,0.434297,0.692604,0.686877,0.26097,0.245388,0.932589,0.432512,0.981087,0.716403,0.0617765,0.0133392,0.27306,0.731741,0.847203,0.0670416,0.392676,0.618445,0.287474,0.225914,0.860598,0.115645,0.0944857,0.203428,0.23835,0.785277,0.426462,0.289412,0.467742,0.593909,0.551979,0.426283,0.167529,0.568245,0.914197,0.365572,0.0656604,0.603294,0.255126,0.117866,0.711883,0.559213,0.490985,0.201353,0.690679,0.885598,0.900708,0.033808,0.0617329,0.804972,0.663397,0.995808,0.870583,0.665768,0.300599,0.111036,0.00294238,0.604325,0.414649,0.940051,0.354248,0.780158,0.902978,0.202856,0.724334,0.805942,0.263267,0.53248,0.322855,0.510503,0.396688,0.479317,0.899229,0.328601,0.44259,0.0355619,0.956403,0.917307,0.42114,0.724271,0.982496,0.943122,0.51531,0.359285,0.897438,0.334782,0.133382,0.0519946,0.433196,0.715851,0.231661,0.105591,0.505961,0.462359,0.376193,0.408525,0.826689,0.0298864,0.214574,0.672009,0.189059,0.380012,0.644802,0.222856,0.105985,0.826083,0.185273,0.434924,0.762241,0.339725,0.858764,0.553687,0.160743,0.342279,0.993644,0.429269,0.0941426,0.418499,0.547935,0.0619552,0.187356,0.196365,0.948167,0.908014,0.0779704,0.594108,0.835445,0.74957,0.0558215,0.22928,0.292565,0.722188,0.387211,0.559046,0.733904,0.822557,0.248919,0.104502,0.0842453,0.883267,0.321337,0.543621,0.817076,0.309226,0.811444,0.112343,0.283106,0.282936,0.525441,0.396805,0.764592,0.00556391,0.242085,0.61153,0.804545,0.0613465,0.597494,0.207826,0.897102,0.490047,0.401571,0.892986,0.95163,0.171007,0.956453,0.243483,0.891646,0.645228,0.0652794,0.44936,0.254374,0.133368,0.293939,0.482983,0.876846,0.883657,0.249435,0.995917,0.0697759,0.561098,0.53048,0.165765,0.655505,0.457282,0.477285,0.766644,0.219417,0.74974,0.510899,0.414016,0.755976,0.492955,0.868586,0.489628,0.0925093,0.607597,0.31164,0.364904,0.0761919,0.520035,0.661382,0.731603,0.861583,0.35798,0.605504,0.909101,0.978545,0.283071,0.432465,0.490093,0.814315,0.647529,0.303675,0.77618,0.0188767,0.657875,0.459652,0.246599,0.535698,0.0987962,0.777315,0.684144,0.76964,0.662426,0.351568,0.874454,0.658608,0.595054,0.00180888,0.189276,0.972335,0.565356,0.73376,0.895259,0.581323,0.968947,0.281627,0.349406,0.376459,0.139756,0.181557,0.509075,0.278019,0.714532,0.27354,0.752713,0.686848,0.243614,0.846864,0.987634,0.11934,0.316257,0.675695,0.155206,0.767588,0.14261,0.608022,0.337094,0.817601,0.781319,0.587932,0.860813,0.450838,0.710753,0.238933,0.712672,0.206619,0.885672,0.854897,0.296929,0.972433,0.278518,0.11168,0.171193,0.643714,0.611847,0.895422,0.507816,0.421677,0.662681,0.371927,0.885661,0.499909,0.375312,0.969736,0.301542,0.0376868,0.754412,0.771057,0.837577,0.199239,0.941578,0.0869401,0.125744,0.875637,0.261762,0.736426,0.628752,0.15887,0.0655468,0.974028,0.639187,0.700492,0.89426,0.00506121,0.00100327,0.488752,0.769141,0.110032,0.239365,0.608726,0.233539,0.13117,0.810808,0.3319,0.964502,0.105002,0.820725,0.694866,0.825956,0.17059,0.210613,0.194376,0.806438,0.0742903,0.957336,0.108929,0.412628,0.57484,0.499902,0.171977,0.936949,0.580593,0.867497,0.193169,0.660466,0.637123,0.648584,0.615555,0.291905,0.00610596,0.0321435,0.406695,0.282149,0.43102,0.0588908,0.716602,0.303146,0.521674,0.843126,0.505464,0.0294576,0.971079,0.430546,0.28091,0.637347,0.465957,0.712598,0.155036,0.245091,0.105492,0.230544,0.407723,0.201496,0.953361,0.2682,0.088006,0.111961,0.392463,0.750696,0.00485414,0.992905,0.284334,0.972975,0.413913,0.823879,0.20697,0.883615,0.0342291,0.355322,0.548995,0.0149155,0.895201,0.335289,0.0315672,0.319668,0.681055,0.0808922,0.114863,0.431833,0.977261,0.905296,0.0670399,0.81974,0.598053,0.163886,0.757024,0.809973,0.0170745,0.47043,0.780791,0.182024,0.439797,0.731847,0.646338,0.61062,0.730218,0.62147,0.424205,0.167652,0.393953,0.278404,0.707155,0.863758,0.876442,0.386005,0.621116,0.386501,0.285034,0.127697,0.047335,0.117498,0.716832,0.651985,0.654133,0.553912,0.0332931,0.685474,0.402633,0.147739,0.410484,0.428565,0.795385,0.0528247,0.902878,0.270738,0.657003,0.15292,0.981198,0.941017,0.87543,0.0102308,0.32026,0.0655515,0.770224,0.556953,0.137353,0.233128,0.201054,0.644091,0.966906,0.71054,0.0789958,0.842365,0.0658056,0.318553,0.700661,0.20121,0.16354,0.989126,0.489131,0.0165824,0.443109,0.298661,0.600328,0.446528,0.346673,0.404955,0.102428,0.63406,0.517066,0.915405,0.993705,0.231505,0.0333343,0.547144,0.24915,0.932808,0.484265,0.00694698,0.240659,0.617585,0.0835171,0.271697,0.833106,0.480562,0.200443,0.238107,0.556875,0.363767,0.808733,0.529937,0.470155,0.231396,0.39835,0.657064,0.127044,0.74531,0.601601,0.970752,0.906464,0.829136,0.189481,0.207824,0.501836,0.835182,0.161737,0.411147,0.122287,0.542059,0.296201,0.67977,0.408543,0.501576,0.289616,0.552054,0.218791,|0.855839,0.890581,0.508168,0.412867,0.0479316,0.420326,0.879446,0.28041,0.896551,0.429923,0.00584817,0.659173,0.163306,0.273474,0.223712,0.202241,0.965048,0.856471,0.802237,0.203717,0.0743013,0.297748,0.858107,0.0170609,0.0248174,0.91757,0.207156,0.801899,0.0577108,0.119185,0.178278,0.372609,0.0348517,0.824754,0.909792,0.00148231,0.763761,0.047999,0.703798,0.420452,0.850098,0.936556,0.6344,0.668785,0.254831,0.774549,0.167443,0.230707,0.434783,0.218249,0.459264,0.617551,0.677341,0.642784,0.472516,0.247569,0.358952,0.975492,0.11599,0.66846,0.105839,0.58672,0.311261,0.826608,0.847993,0.61535,0.573124,0.0397997,0.797033,0.310231,0.975587,0.102567,0.316315,0.0223497,0.702575,0.456789,0.471695,0.311193,0.128211,0.688528,0.395378,0.222486,0.501565,0.464277,0.397428,0.0372914,0.52053,0.0406719,0.650691,0.53133,0.142569,0.350571,0.282432,0.39267,0.948067,0.272251,0.904772,0.793371,0.788752,0.335372,0.512758,0.131698,0.85616,0.0182476,0.620737,0.941207,0.704362,0.85624,0.988179,0.149065,0.0662526,0.802516,0.252854,0.35103,0.492454,0.265155,0.144832,0.571919,0.080013,0.536405,0.35561,0.0706397,0.479966,0.564182,0.455446,0.0433819,0.346714,0.28961,0.71355,0.484952,0.987755,0.306051,0.331782,0.534751,0.931898,0.66461,0.621494,0.334252,0.360798,0.312291,0.735563,0.525658,0.254608,0.948752,0.949234,0.616962,0.00721419,0.136756,0.533383,0.361616,0.782398,0.923698,0.150399,0.329166,0.887006,0.70035,0.86469,0.0690308,0.689079,0.666142,0.479965,0.262012,0.440157,0.486906,0.500437,0.317502,0.939477,0.213982,0.798086,0.535328,0.130061,0.28718,0.562666,0.664771,0.574188,0.452536,0.776052,0.437602,0.452715,0.408404,0.687074,0.285923,0.282982,0.8305,0.0127955,0.490042,0.0447926,0.0187939,0.896658,0.332785,0.93235,0.992563,0.792421,0.689409,0.621368,0.119033,0.654845,0.456213,0.508865,0.490094,0.345794,0.960492,0.585347,0.946231,0.176224,0.109038,0.480852,0.259103,0.954167,0.985909,0.438236,0.526856,0.820925,0.976571,0.0856999,0.227234,0.876955,0.983642,0.016022,0.0304642,0.768231,0.880776,0.889635,0.530823,0.433035,0.789758,0.445927,0.0496837,0.237374,0.182218,0.38539,0.669573,0.404992,0.30544,0.315713,0.159397,0.936756,0.328648,0.355655,0.833537,0.567352,0.715301,0.467872,0.407841,0.41465,0.622875,0.837402,0.334042,0.217716,0.142159,0.689264,0.794479,0.302237,0.69241,0.691264,0.0269023,0.151312,0.184846,0.636681,0.0749883,0.80842,0.785115,0.797061,0.0132925,0.546054,0.0151958,0.94953,0.49667,0.0689706,0.810162,0.478835,0.510031,0.363104,0.869012,0.204384,0.377499,0.247902,0.829676,0.819912,0.538544,0.221635,0.464509,0.243771,0.050414,0.332227,0.25197,0.286225,0.434799,0.385713,0.619936,0.601541,0.792481,0.0249185,0.808778,0.486321,0.369152,0.825675,0.384883,0.214507,0.792267,0.41943,0.19546,0.925687,0.91553,0.529804,0.983066,0.690864,0.370722,0.30534,0.0303732,0.591382,0.662837,0.188946,0.797922,0.812475,0.367783,0.14844,0.606524,0.545903,0.107118,0.604574,0.231193,0.217288,0.750562,0.795704,0.848449,0.775622,0.577035,0.870393,0.380846,0.139025,0.050383,0.258062,0.153447,0.564811,0.331175,0.569228,0.990661,0.965934,0.281798,0.326764,0.538941,0.739663,0.106011,0.201726,0.931906,0.431074,0.417057,0.465208,0.167825,0.316902,0.817902,0.810648,0.578537,0.426912,0.362614,0.218828,0.00710475,0.311436,0.171472,0.957262,0.376676,0.138735,0.344727,0.624514,0.953596,0.137999,0.66042,0.594788,0.420815,0.887797,0.165531,0.661425,0.688618,0.517824,0.972601,0.929209,0.340022,0.090903,0.0804032,0.903376,0.563346,0.0104854,0.350263,0.561518,0.228509,0.20565,0.0818183,0.958428,0.261152,0.0799721,0.339725,0.0181656,0.954366,0.670363,0.266983,0.0651539,0.434183,0.229698,0.586915,0.0294537,0.914075,0.388992,0.369494,0.480602,0.914375,0.875628,0.61839,0.299216,0.227202,0.361415,0.152925,0.554677,0.750335,0.606063,0.806475,0.829428,0.0324618,0.110321,0.55394,0.268164,0.682149,0.645204,0.463446,0.356973,0.00301069,0.238758,0.463682,0.721134,0.279799,0.775604,0.274979,0.404417,0.553194,0.760587,0.874963,0.46621,0.74645,0.273998,0.772803,0.202279,0.152883,0.327846,0.0132714,0.0656505,0.147432,0.195821,0.0814394,0.27884,0.431242,0.0581425,0.178638,0.032701,0.2568,0.293191,0.300059,0.0277586,0.841044,0.362885,0.679876,0.701782,0.517324,0.026984,0.299271,0.740813,0.7267,0.0617614,0.873929,0.662587,0.100648,0.22754,0.894736,0.28624,0.475813,0.944229,0.788123,0.9997,0.42333,0.333507,0.953753,0.359754,0.841348,0.438814,0.831847,0.422447,0.00253916,0.0713469,0.513715,0.866281,0.676844,0.949213,0.618172,0.783729,0.783883,0.412148,0.937459,0.447213,0.821351,0.915994,0.687043,0.170408,0.763891,0.45291,0.803752,0.818721,0.707034,0.157415,0.718965,0.206358,0.850238,0.127144,0.898001,0.510773,0.0480958,0.64254,0.246198,0.601407,0.955201,0.234272,0.306243,0.641401,0.218119,0.257077,0.878836,0.225368,0.109164,0.58071,0.898561,0.87479,0.911104,0.712322,0.885336,0.677159,0.0582361,0.670785,0.187566,0.436696,0.662074,0.89816,0.66968,0.989854,0.343038,0.0517349,0.952374,0.120624,0.755822,0.574291,0.444033,0.0615131,0.348752,0.722476,0.119119,0.0485917,0.127013,0.540384,0.911102,0.53437,0.423225,0.839778,0.993592,0.0054462,0.271975,0.0145757,0.034105,0.874039,0.991818,0.761167,0.87063,0.264496,0.900973,0.340858,0.536968,0.367478,0.899807,0.080682,0.698244,0.673206,0.701902,0.960837,0.0366394,0.939094,0.157452,0.653156,0.0104615,0.997909,0.240123,0.644208,0.601455,0.104125,0.978286,0.211991,0.655588,0.584503,0.282329,0.411183,0.514433,0.299317,0.687764,0.67584,0.0130931,0.766656,0.910765,0.473094,0.771904,0.738185,0.664382,0.585459,0.465912,0.829193,0.238097,0.236313,0.91173,0.311708,0.631702,0.650886,0.875334,0.125808,0.21638,0.161019,0.103104,0.51738,0.073338,0.622603,0.0367311,0.64748,0.537375,0.73529,0.0803812,0.923577,0.0628752,0.556052,0.975945,0.286436,0.795231,0.800619,0.222239,0.0526575,0.833823,0.901358,0.0890686,0.310302,0.622603,0.708531,0.456428,0.666601,0.443321,0.398681,0.589567,0.434727,0.111265,0.805616,0.868219,0.210813,0.747856,0.214792,0.644413,0.437286,0.886758,0.816333,0.943399,0.0789697,0.607276,0.482165,0.657873,0.874845,0.853759,0.484439,0.393889,0.747002,0.463461,0.844525,0.300054,0.431549,0.0996611,0.769256,0.191649,0.17851,0.967165,0.415246,0.484804,0.372781,0.806135,0.23842,0.504286,0.234385,0.658523,0.428566,0.409001,0.727664,0.728147,0.562526,0.640424,0.312097,0.286615,0.852809,0.412409,0.944156,0.329147,0.121226,0.0375451,0.577199,0.96124,0.758602,0.518042,0.746355,0.405998,0.152583,0.165116,0.403267,0.959465,0.845398,0.709052,0.562942,0.439028,0.151535,0.601524,0.78892,0.0672672,0.293306,0.758458,0.698832,0.532345,0.867869,0.444705,0.400421,0.149414,0.648238,0.156762,0.273224,0.940395,0.0291598,0.140808,0.543786,0.342809,0.305216,0.283581,0.413862,0.103309,0.301839,0.753,0.904042,0.400404,0.760616,0.956066,0.885438,0.0480453,0.126074,0.5249,0.315811,0.845671,0.889954,0.330731,0.276049,0.379731,0.541683,0.356526,0.00745839,0.403494,0.873556,0.379568,0.963695,0.309728,0.418784,0.457291,0.268012,0.995551,0.922469,0.26533,0.642143,0.35303,0.223629,0.181246,0.690014,0.341307,0.92015,0.64567,0.741679,0.137404,0.578531,0.51432,0.575141,0.794801,0.859797,0.520386,0.155649,0.578446,0.48385,0.461329,0.585582,0.56206,0.302395,0.0660923,0.0589652,0.669298,0.978949,0.51141,0.99533,0.0919488,0.307442,0.443721,0.808802,0.0577778,0.328502,0.281734,0.0438113,0.949387,0.645538,0.968416,0.888239,0.0779432,0.31962,0.742457,0.836712,0.111828,0.968407,0.41429,0.220922,0.635841,0.791178,0.904097,0.781511,0.24886,0.192448,0.724611,0.705181,0.756336,0.0643301,0.232961,0.821973,0.140486,0.0723001,0.435762,0.299841,0.904482,0.346093,0.199838,0.834511,0.129148,0.647648,0.490555,0.238944,0.0227351,0.430087,0.269887,0.427297,0.458889,0.403565,0.800816,0.657468,0.276395,0.567073,0.807161,0.152573,0.169303,0.393158,0.616958,0.263169,0.915924,0.802497,0.482658,0.325318,0.443315,0.101121,0.400245,0.849696,0.233499,0.660766,0.154267,0.452433,0.0878463,0.759389,0.207922,0.911262,0.00907439,0.379498,0.0890288,0.407114,0.943212,0.456481,0.0566566,0.666613,0.248416,0.814775,0.771856,0.903075,0.355573,0.116232,0.84504,0.406849,0.178131,0.439522,0.0429372,0.338461,0.252565,0.468054,0.744542,0.102086,0.0369624,0.354263,0.524919,0.874672,0.993171,0.403652,0.129744,0.842582,0.369104,0.473123,0.305494,0.917556,0.795826,0.854856,0.873317,0.282953,0.774671,0.506175,0.351834,0.0433014,0.438994,0.134783,0.290701,0.586055,0.119325,0.160008,0.00181466,0.281506,0.388782,0.19661,0.0281024,0.579667,0.364064,0.569791,0.950505,0.359755,0.493623,0.860812,0.306086,0.204751,0.108843,0.935849,0.349553,0.67875,0.815221,0.199552,0.0160148,0.273454,0.50446,0.831941,0.608115,0.435569,0.28288,0.759141,0.659971,0.769427,0.0123953,0.220731,0.94565,0.58181,0.300141,0.108241,0.885523,0.897401,0.816084,0.586488,0.589006,0.654822,0.0473588,0.2216,0.643854,0.752597,0.0487575,0.239807,0.94461,0.186332,0.834228,0.176661,0.883504,0.266709,0.837959,0.928973,0.424841,0.730972,0.464146,0.274819,0.0941867,0.395923,0.662648,0.482229,0.432682,0.880699,0.122769,0.257282,0.640121,0.215947,0.336483,0.241939,0.127072,0.696759,0.401886,0.471164,0.567341,|0.853805,0.728681,0.584715,0.685233,0.716378,0.0857419,0.0988157,0.576039,0.9414,0.746408,0.820399,0.319426,0.63155,0.0352614,0.24555,0.6331,0.290419,0.664648,0.017951,0.950329,0.0519937,0.456865,0.862674,0.183859,0.650121,0.89788,0.950998,0.992195,0.905293,0.973074,0.37573,0.982836,0.660056,0.15072,0.400185,0.5798,0.24838,0.428427,0.560192,0.676513,0.912942,0.458056,0.0228658,0.263186,0.656842,0.614267,0.664696,0.630193,0.230188,0.393924,0.314988,0.611599,0.0978613,0.225175,0.313862,0.0243399,0.434335,0.60569,0.819101,0.252522,0.926522,0.150867,0.326998,0.998644,0.977938,0.857925,0.711229,0.727004,0.460994,0.790377,0.954462,0.00838053,0.78345,0.380068,0.756047,0.411412,0.374602,0.697295,0.13629,0.553843,0.901349,0.439756,0.892918,0.215739,0.0272217,0.772683,0.681194,0.104208,0.766759,0.946748,0.0292527,0.47753,0.430198,0.883877,0.744405,0.320864,0.955247,0.231612,0.919884,0.451386,0.691723,0.847582,0.703956,0.368162,0.483593,0.257072,0.739552,0.874182,0.512411,0.775532,0.750083,0.732533,0.232191,0.828159,0.728991,0.819687,0.633199,0.123385,0.270535,0.959797,0.864412,0.796405,0.480649,0.938313,0.902036,0.141623,0.0244709,0.362824,0.724254,0.52898,0.487549,0.475339,0.0642884,0.64199,0.0671173,0.723573,0.590212,0.824816,0.197751,0.088459,0.00430489,0.565449,0.600363,0.526817,0.858619,0.840245,0.930684,0.615473,0.893905,0.648521,0.85565,0.108947,0.938096,0.534861,0.979415,0.729527,0.61773,0.784185,0.635803,0.810749,0.822914,0.437924,0.64881,0.911566,0.875513,0.836677,0.590709,0.676418,0.411956,0.591874,0.0653545,0.411686,0.507032,0.0331818,0.790208,0.404529,0.669722,0.651472,0.563058,0.353952,0.992562,0.264725,0.813154,0.923176,0.279069,0.0708953,0.140399,0.163442,0.621638,0.959398,0.0818027,0.852988,0.117268,0.229403,0.97242,0.729066,0.980533,0.644265,0.2202,0.66374,0.587801,0.881404,0.615131,0.62202,0.844037,0.550897,0.0522647,0.0553084,0.0690671,0.873786,0.0456759,0.0519161,0.534546,0.0445936,0.235314,0.95039,0.0303982,0.565071,0.700924,0.984613,0.310214,0.925983,0.32468,0.128429,0.975015,0.243311,0.334869,0.390703,0.475067,0.408434,0.602948,0.353833,0.0644965,0.304126,0.326683,0.417383,0.518907,0.3785,0.0413092,0.232485,0.442915,0.7508,0.937949,0.0162947,0.345068,0.813811,0.722185,0.410629,0.0425034,0.0469738,0.713625,0.820634,0.94179,0.323946,0.912493,0.668703,0.302558,0.261437,0.763865,0.342823,0.661427,0.200068,0.722063,0.790607,0.770196,0.782415,0.893298,0.229495,0.343953,0.643544,0.38432,0.735058,0.540493,0.194811,0.286911,0.4371,0.368476,0.290404,0.694398,0.314385,0.681314,0.544473,0.981304,0.719686,0.896336,0.245527,0.149319,0.78967,0.537031,0.0554549,0.389092,0.234152,0.0513498,0.0117813,0.575847,0.634443,0.0558715,0.959078,0.176656,0.760245,0.684861,0.00233585,0.419976,0.293894,0.16805,0.189337,0.929379,0.305906,0.484289,0.177589,0.00482041,0.458971,0.39758,0.515758,0.158624,0.466859,0.179017,0.65733,0.938316,0.350882,0.964679,0.907253,0.565652,0.0736095,0.680331,0.383147,0.0134531,0.74028,0.366367,0.79763,0.702221,0.331738,0.244148,0.485022,0.827788,0.348147,0.708397,0.503962,0.691001,0.23213,0.144972,0.999844,0.124585,0.46449,0.181462,0.727532,0.952747,0.29492,0.594554,0.28626,0.624716,0.265454,0.478251,0.0600473,0.603509,0.879741,0.196378,0.349407,0.247076,0.0466347,0.728806,0.322957,0.941954,0.719468,0.915949,0.333762,0.268207,0.145106,0.77582,0.377195,0.55326,0.0188745,0.524746,0.189057,0.580981,0.434325,0.353411,0.635722,0.140797,0.774943,0.347721,0.666988,0.449163,0.695612,0.272344,0.0586422,0.235815,0.36524,0.62177,0.406817,0.0129283,0.931453,0.793497,0.149286,0.786092,0.647753,0.400074,0.897363,0.647242,0.60052,0.999981,0.34268,0.192206,0.574719,0.722673,0.00462914,0.643514,0.475106,0.995234,0.503462,0.92864,0.666114,0.903271,0.22468,0.842368,0.116118,0.942528,0.579371,0.174231,0.125312,0.344993,0.701228,0.818267,0.712092,0.530513,0.816857,0.598981,0.25702,0.401647,0.291166,0.915226,0.593778,0.943839,0.226168,0.189923,0.759074,0.960528,0.492937,0.71317,0.718491,0.00567967,0.654649,0.964997,0.085068,0.232627,0.0814423,0.384832,0.614253,0.688799,0.415651,0.357087,0.834802,0.284047,0.450158,0.3948,0.649192,0.957079,0.810566,0.592968,0.691761,0.628756,0.145925,0.579106,0.127498,0.946239,0.803007,0.2055,0.309046,0.935087,0.77159,0.15503,0.551244,0.668927,0.646758,0.808771,0.393691,0.0913457,0.444903,0.520279,0.942081,0.988459,0.630021,0.887117,0.899704,0.922755,0.789843,0.508241,0.214584,0.276311,0.803826,0.464386,0.966224,0.424787,0.249166,0.144648,0.311915,0.837369,0.110594,0.4043,0.160821,0.496226,0.457939,0.482596,0.990137,0.720312,0.74744,0.725799,0.237695,0.143886,0.387303,0.680586,0.093881,0.457694,0.397624,0.0731444,0.797749,0.311585,0.457919,0.0916451,0.0191037,0.649107,0.0778788,0.210295,0.598979,0.928249,0.0411974,0.328692,0.850518,0.226832,0.049615,0.943573,0.787571,0.438565,0.0447769,0.157658,0.511029,0.410621,0.0616959,0.801291,0.1505,0.620788,0.526535,0.963639,0.965135,0.584176,0.0084793,0.391383,0.18752,0.0427535,0.396962,0.517205,0.728094,0.990941,0.930018,0.0382199,0.234072,0.679045,0.823901,0.655835,0.752185,0.037781,0.597514,0.363723,0.629253,0.857928,0.444066,0.723386,0.625761,0.893076,0.509416,0.228219,0.968024,0.368948,0.18588,0.135801,0.36034,0.644359,0.608554,0.329546,0.763833,0.819097,0.244378,0.179514,0.502768,0.0283074,0.816876,0.485266,0.330582,0.116496,0.95317,0.843678,0.213191,0.685088,0.324372,0.817277,0.510728,0.611921,0.262875,0.0163281,0.360264,0.0796416,0.31644,0.434402,0.104386,0.876124,0.433467,0.177142,0.30867,0.11298,0.160484,0.513181,0.639312,0.612335,0.871019,0.74187,0.22459,0.0780452,0.271933,0.837296,0.698532,0.629307,0.966912,0.297942,0.112091,0.807656,0.930692,0.301181,0.839132,0.167457,0.857613,0.390065,0.356138,0.110656,0.815401,0.184759,0.869943,0.346239,0.612,0.595422,0.238904,0.75966,0.319272,0.486618,0.372003,0.783361,0.301812,0.919431,0.0418142,0.280079,0.345489,0.923841,0.218449,0.635036,0.93904,0.901203,0.211873,0.529939,0.610251,0.133265,0.517721,0.125181,0.429247,0.0958829,0.272333,0.0562486,0.570247,0.437321,0.381611,0.378273,0.75292,0.257622,0.203978,0.099739,0.627841,0.750035,0.319111,0.454841,0.689618,0.383126,0.415392,0.108285,0.585019,0.571626,0.579559,0.172526,0.218267,0.00738043,0.475767,0.18667,0.723678,0.618238,0.800444,0.838764,0.781018,0.678544,0.601735,0.888277,0.520991,0.0352566,0.163831,0.126095,0.809245,0.280286,0.58959,0.166994,0.995671,0.996729,0.952952,0.29803,0.0297282,0.70822,0.573726,0.852354,0.446759,0.339489,0.0600187,0.676932,0.80356,0.999385,0.961097,0.144726,0.356074,0.508757,0.375759,0.262976,0.792012,0.0579439,0.372078,0.70099,0.979221,0.55432,0.683289,0.0306551,0.0061354,0.251139,0.0577359,0.397293,0.980615,0.311365,0.161417,0.713577,0.00210309,0.743836,0.505574,0.422377,0.538575,0.88257,0.233115,0.815071,0.791554,0.601565,0.639523,0.724578,0.957141,0.377068,0.702278,0.318816,0.703596,0.87374,0.994369,0.2691,0.752784,0.257942,0.45464,0.701814,0.341924,0.63597,0.335278,0.793267,0.892972,0.0484415,0.585784,0.752384,0.125775,0.85539,0.541064,0.670206,0.520189,0.997892,0.0585986,0.217982,0.23887,0.60632,0.422888,0.942717,0.000597537,0.388616,0.842417,0.726011,0.184695,0.232769,0.613881,0.712226,0.430589,0.175813,0.522295,0.15775,0.933355,0.713591,0.111311,0.15008,0.740547,0.33113,0.241776,0.0869994,0.243476,0.260143,0.205479,0.363394,0.347086,0.857352,0.878221,0.163254,0.41309,0.617048,0.0136674,0.366198,0.337296,0.933007,0.695126,0.624362,0.452579,0.919452,0.785847,0.895537,0.814097,0.150289,0.446645,0.15384,0.195765,0.319956,0.326287,0.0634448,0.628238,0.0877184,0.680152,0.798192,0.354377,0.965412,0.180095,0.326381,0.928534,0.493175,0.680412,0.637669,0.47735,0.0227612,0.224025,0.724822,0.374982,0.293015,0.0186771,0.76876,0.564262,0.574839,0.451034,0.968684,0.125599,0.573556,0.719851,0.288327,0.402546,0.33248,0.150665,0.713164,0.284486,0.770662,0.268975,0.700883,0.0362611,0.627338,0.696137,0.78463,0.488974,0.7902,0.313781,0.788623,0.61206,0.503404,0.922445,0.240178,0.460732,0.183452,0.668856,0.729523,0.698533,0.559663,0.874967,0.162879,0.397585,0.305523,0.015837,0.0453339,0.163637,0.50315,0.990924,0.151848,0.847512,0.475898,0.0291107,0.652489,0.218152,0.407157,0.267021,0.0265741,0.310938,0.982252,0.301201,0.970282,0.0256826,0.572103,0.172615,0.747718,0.0486641,0.381873,0.106904,0.879344,0.39219,0.684826,0.665294,0.0419461,0.655203,0.912502,0.146607,0.116848,0.0988978,0.0671224,0.836425,0.583044,0.113894,0.365621,0.945321,0.908651,0.469448,0.603183,0.10397,0.305392,0.474897,0.127989,0.49141,0.54194,0.165618,0.490925,0.0200813,0.139848,0.222034,0.717785,0.209885,0.385324,0.680123,0.838171,0.818181,0.655761,0.588439,0.0125088,0.481774,0.195009,0.477064,0.975833,0.79518,0.0714352,0.807653,0.913032,0.505395,0.707851,0.284721,0.318941,0.597125,0.254965,0.240691,0.692294,0.440178,0.0165356,0.2616,0.436636,0.806346,0.910033,0.667993,0.89719,0.843251,0.541342,0.21932,0.326495,0.589036,0.265538,0.861709,0.615486,0.341124,0.0825857,0.393546,0.90545,0.21472,0.883409,0.228127,0.722159,0.027488,0.839167,0.120858,0.171885,0.958368,|0.00359827,0.100257,0.0528897,0.257914,0.74469,0.278202,0.949164,0.427201,0.377728,0.479503,0.282223,0.743168,0.112491,0.383388,0.0750208,0.0478097,0.394084,0.42959,0.323093,0.805972,0.498054,0.748468,0.373966,0.631762,0.687638,0.0500209,0.343433,0.870935,0.408243,0.337408,0.379743,0.807062,0.82011,0.695967,0.0914093,0.756322,0.683272,0.965829,0.298584,0.803615,0.0922307,0.831152,0.68816,0.349655,0.652281,0.454678,0.306543,0.934384,0.026445,0.710492,0.74047,0.238401,0.831992,0.716592,0.0914201,0.109745,0.212174,0.942187,0.192168,0.701388,0.33831,0.519927,0.624096,0.827951,0.785101,0.246577,0.611278,0.861788,0.897396,0.284041,0.618974,0.12009,0.311449,0.6279,0.678557,0.0184104,0.547808,0.280128,0.439709,0.397277,0.832386,0.59375,0.512762,0.550959,0.309167,0.822955,0.800294,0.0770139,0.102539,0.843548,0.812085,0.603002,0.4699,0.412233,0.690007,0.271267,0.921541,0.321715,0.491223,0.897768,0.0639645,0.137034,0.138196,0.260572,0.2983,0.525791,0.188655,0.462498,0.153165,0.038004,0.564522,0.712194,0.337747,0.858565,0.819799,0.666635,0.36546,0.419616,0.818842,0.383601,0.980828,0.654885,0.391807,0.444651,0.674904,0.91002,0.692056,0.882615,0.878291,0.286204,0.682279,0.20569,0.127864,0.839331,0.905457,0.165963,0.657197,0.964575,0.75945,0.83963,0.564393,0.464248,0.504601,0.251512,0.814179,0.595759,0.201146,0.682344,0.447912,0.660633,0.924482,0.578256,0.400705,0.956168,0.585132,0.728863,0.724141,0.785907,0.647518,0.515926,0.120797,0.610506,0.483715,0.30743,0.901318,0.45529,0.971389,0.36022,0.155391,0.13805,0.671382,0.423794,0.457242,0.837529,0.676254,0.586291,0.675314,0.503295,0.403102,0.0663433,0.167213,0.793845,0.22917,0.860859,0.661174,0.157497,0.314579,0.838686,0.448766,0.159532,0.637653,0.847179,0.396841,0.426116,0.896027,0.805338,0.655513,0.177114,0.996177,0.350662,0.0885295,0.736678,0.660158,0.759664,0.596155,0.499789,0.408596,0.0700421,0.916581,0.231458,0.1178,0.320305,0.899587,0.0294793,0.680238,0.423029,0.282122,0.58397,0.767071,0.000159144,0.37312,0.636105,0.671633,0.142455,0.886604,0.666075,0.731141,0.446534,0.208706,0.17738,0.246271,0.775322,0.855242,0.272513,0.847718,0.402106,0.516241,0.139022,0.424225,0.985682,0.815833,0.303891,0.211727,0.702459,0.838755,0.482177,0.776782,0.235558,0.640822,0.202771,0.0277155,0.490813,0.0523303,0.264368,0.916657,0.29404,0.379739,0.786425,0.779291,0.87086,0.594333,0.673096,0.349965,0.594606,0.269589,0.983446,0.0301574,0.198051,0.697032,0.12324,0.858217,0.995485,0.652452,0.358558,0.305934,0.972485,0.184433,0.960453,0.694811,0.936374,0.927968,0.603947,0.689398,0.581566,0.413416,0.208611,0.352825,0.629211,0.365213,0.495103,0.758097,0.728372,0.194696,0.67589,0.306512,0.759905,0.522128,0.2138,0.936198,0.147718,0.972969,0.235441,0.279629,0.147902,0.968004,0.164595,0.131191,0.907211,0.673684,0.910894,0.607865,0.881931,0.25541,0.415159,0.74874,0.549172,0.83885,0.0759143,0.844487,0.0253017,0.126497,0.405565,0.116968,0.0238678,0.990731,0.62059,0.803635,0.0162914,0.230969,0.540315,0.440994,0.501066,0.462645,0.821567,0.669121,0.981559,0.511649,0.712033,0.197302,0.159592,0.814791,0.120165,0.911441,0.723419,0.312339,0.364166,0.415703,0.0964977,0.0039385,0.440785,0.193339,0.279921,0.542096,0.0432687,0.257853,0.177815,0.491543,0.016411,0.716345,0.111812,0.340321,0.41529,0.85453,0.709216,0.383915,0.189118,0.206854,0.595876,0.0373027,0.477815,0.106303,0.104793,0.764146,0.485745,0.172786,0.756359,0.0472801,0.261496,0.0544567,0.736144,0.108111,0.878093,0.314249,0.763183,0.597256,0.193269,0.44479,0.904963,0.462467,0.341007,0.327511,0.614187,0.460779,0.17907,0.977723,0.158553,0.959684,0.849215,0.900844,0.455285,0.974867,0.0281354,0.94669,0.521227,0.270061,0.766335,0.726858,0.55849,0.0715708,0.89314,0.482468,0.542284,0.179088,0.805839,0.544544,0.0796088,0.335294,0.20886,0.0832278,0.167527,0.908542,0.224691,0.718853,0.322181,0.29295,0.309412,0.948486,0.477094,0.884948,0.597531,0.576999,0.0679548,0.921963,0.179312,0.388092,0.854098,0.880821,0.485918,0.832775,0.615832,0.862911,0.757476,0.229172,0.657882,0.927194,0.737643,0.30022,0.909125,0.92945,0.98723,0.288102,0.0202981,0.431008,0.136176,0.784727,0.632059,0.160194,0.13948,0.929046,0.443077,0.427494,0.212936,0.56939,0.209113,0.0568175,0.718609,0.583946,0.543118,0.459034,0.194234,0.385589,0.778157,0.288538,0.825328,0.952571,0.341434,0.224139,0.485524,0.838636,0.106447,0.238296,0.828411,0.71468,0.912836,0.158722,0.987181,0.905329,0.718592,0.482612,0.976371,0.486486,0.364948,0.700634,0.441898,0.360708,0.911451,0.701221,0.224417,0.234713,0.0930038,0.96254,0.0922945,0.931223,0.932008,0.348291,0.554032,0.444078,0.787349,0.708239,0.482287,0.758926,0.685328,0.749206,0.869878,0.442307,0.932698,0.852419,0.386994,0.115692,0.960048,0.77071,0.70793,0.964689,0.648979,0.115569,0.984743,0.418093,0.879506,0.794891,0.620855,0.878673,0.906878,0.63346,0.531731,0.121187,0.411483,0.991096,0.569268,0.541704,0.586201,0.0568115,0.238983,0.250406,0.0993427,0.473551,0.121547,0.443498,0.67156,0.900233,0.730555,0.367689,0.237685,0.71696,0.651414,0.595794,0.737009,0.941995,0.429687,0.401672,0.55147,0.883396,0.503535,0.795352,0.481694,0.36889,0.869531,0.901088,0.5565,0.845504,0.227112,0.608774,0.640784,0.210455,0.443265,0.985129,0.952153,0.872254,0.647176,0.409478,0.803874,0.0985606,0.530752,0.992435,0.941436,0.561841,0.813084,0.990338,0.355879,0.723466,0.901225,0.804779,0.858348,0.0217366,0.179616,0.231931,0.881793,0.395646,0.454544,0.0877475,0.724729,0.516194,0.877565,0.15303,0.0952871,0.413348,0.935718,0.937999,0.412656,0.903576,0.808214,0.733312,0.15036,0.602078,0.243826,0.50637,0.915953,0.435167,0.964363,0.185099,0.892511,0.357258,0.909644,0.886374,0.953718,0.216418,0.856104,0.683851,0.710877,0.0477297,0.00728601,0.769047,0.705199,0.193149,0.713289,0.0777154,0.195126,0.845516,0.347176,0.0884895,0.816747,0.667853,0.490837,0.716062,0.950764,0.545787,0.841429,0.199872,0.511588,0.126382,0.0442303,0.0587251,0.532486,0.474678,0.40091,0.904412,0.347869,0.20748,0.666277,0.0279028,0.939022,0.113208,0.0255924,0.917165,0.190159,0.287063,0.456507,0.496974,0.272369,0.272867,0.0750465,0.69139,0.0849457,0.510401,0.501275,0.570524,0.705784,0.956562,0.0721134,0.104667,0.250281,0.560393,0.758239,0.832708,0.384885,0.786214,0.462041,0.97643,0.301745,0.656195,0.10127,0.785817,0.122072,0.337837,0.957575,0.16127,0.874706,0.898715,0.648488,0.420032,0.782265,0.53479,0.342141,0.401303,0.264869,0.223294,0.309775,0.205733,0.511705,0.521297,0.689695,0.61556,0.609327,0.991949,0.770161,0.459639,0.465334,0.0279453,0.703504,0.887551,0.431673,0.358204,0.0714193,0.258018,0.830816,0.252187,0.388782,0.125354,0.169193,0.865381,0.566496,0.496742,0.140937,0.0761423,0.0877456,0.572107,0.959228,0.508145,0.421436,0.139976,0.779494,0.512109,0.288553,0.715265,0.787554,0.142567,0.240238,0.40763,0.994411,0.546278,0.0897337,0.517774,0.0120639,0.190253,0.0949888,0.0171663,0.558454,0.422846,0.291239,0.516214,0.318512,0.546576,0.716115,0.619561,0.534228,0.635552,0.883609,0.816368,0.222536,0.624491,0.249916,0.133124,0.339329,0.840507,0.931375,0.290867,0.04706,0.885189,0.604404,0.253227,0.780928,0.396481,0.846573,0.753648,0.0345276,0.524586,0.94931,0.61161,0.977381,0.575695,0.404565,0.490671,0.0161521,0.0114353,0.303436,0.4537,0.204138,0.708559,0.366479,0.615223,0.30288,0.136666,0.896779,0.971306,0.560934,0.029211,0.433164,0.0617883,0.362611,0.48707,0.718351,0.884613,0.924928,0.499476,0.740446,0.173565,0.489384,0.330082,0.935652,0.21322,0.678677,0.534531,0.570582,0.916445,0.539922,0.484344,0.875354,0.47236,0.910433,0.912092,0.810162,0.903803,0.803601,0.0236421,0.349783,0.600813,0.234305,0.447106,0.778719,0.843673,0.0181116,0.00246882,0.856063,0.669251,0.0800981,0.220117,0.14604,0.833395,0.772357,0.728326,0.0657215,0.613094,0.227003,0.0255519,0.926019,0.202785,0.694001,0.457884,0.162371,0.367657,0.356096,0.349551,0.552044,0.471441,0.577032,0.66027,0.627506,0.445998,0.16186,0.93208,0.592046,0.524915,0.940121,0.988576,0.571498,0.99312,0.843678,0.00306386,0.180316,0.218186,0.180681,0.159481,0.462364,0.840516,0.913122,0.49581,0.83229,0.723523,0.995486,0.156891,0.562129,0.897069,0.266927,0.0582761,0.325275,0.50646,0.786982,0.87722,0.938006,0.147338,0.387609,0.963526,0.0979866,0.806852,0.510621,0.600181,0.287289,0.182221,0.70353,0.740049,0.133869,0.837013,0.330666,0.574128,0.568074,0.601734,0.642853,0.412875,0.402599,0.812591,0.782788,0.418036,0.211136,0.902996,0.420305,0.17604,0.386856,0.511432,0.612829,0.314924,0.933013,0.151444,0.141111,0.886599,0.772913,0.045464,0.823779,0.669681,0.191827,0.481773,0.866898,0.551706,0.327951,0.916797,0.85389,0.0759943,0.796961,0.479269,0.120535,0.0317535,0.721027,0.34556,0.354563,0.0930118,0.883386,0.00539565,0.121692,0.418913,0.914259,0.551987,0.623592,0.729702,0.0921654,0.715698,0.266813,0.265897,0.324519,0.307939,0.217381,0.199639,0.212893,0.323187,0.148691,0.240215,0.332636,0.876216,0.833976,0.486924,0.886184,0.727872,0.339595,0.375342,0.321552,0.714097,0.85816,0.842414,0.106771,0.464064,0.201563,0.302308,0.585338,0.893904,0.609711,0.331847,0.631626,0.787983,0.419041,0.598298,0.00781447,0.354524,0.220389,|0.903637,0.411637,0.298858,0.429289,0.209978,0.189564,0.577402,0.880884,0.951284,0.183254,0.679802,0.176991,0.970186,0.943972,0.532843,0.418843,0.0012176,0.424517,0.882691,0.0870734,0.921436,0.326441,0.938853,0.612624,0.221346,0.315332,0.692623,0.887933,0.0951219,0.299022,0.558695,0.442246,0.376654,0.00913197,0.236355,0.545417,0.551831,0.725694,0.0266487,0.478916,0.51889,0.95869,0.489022,0.0379406,0.497616,0.345928,0.19491,0.0047487,0.175266,0.818421,0.664635,0.72195,0.608525,0.838561,0.113802,0.418051,0.264125,0.0425553,0.791876,0.666525,0.0510134,0.428319,0.494242,0.502057,0.961693,0.271234,0.997987,0.696072,0.863615,0.254183,0.173751,0.858355,0.0174847,0.0102893,0.899131,0.337089,0.418369,0.176301,0.0396734,0.994726,0.971373,0.649811,0.148169,0.38651,0.533394,0.601539,0.347131,0.584851,0.336024,0.348104,0.553574,0.670435,0.629063,0.972436,0.496319,0.926076,0.644928,0.752458,0.48922,0.987331,0.0393343,0.0179023,0.84141,0.0340223,0.826366,0.621268,0.816519,0.719398,0.139113,0.981923,0.428647,0.800675,0.757188,0.0843206,0.769124,0.264121,0.28881,0.535961,0.461575,0.451446,0.932444,0.413684,0.412642,0.520058,0.365961,0.616595,0.955825,0.0988511,0.383949,0.791995,0.846781,0.932923,0.159731,0.00711715,0.319889,0.686277,0.661563,0.848377,0.758828,0.0709237,0.794249,0.121458,0.75796,0.0464141,0.939636,0.496375,0.857661,0.166124,0.514834,0.452185,0.6345,0.387947,0.422727,0.348943,0.331856,0.850484,0.945979,0.256243,0.421327,0.124935,0.803759,0.944469,0.537875,0.527327,0.57548,0.218514,0.240922,0.058437,0.585548,0.34983,0.3518,0.297057,0.371327,0.879068,0.283523,0.149807,0.0281609,0.803591,0.942324,0.116377,0.859697,0.411983,0.714359,0.357431,0.286565,0.934243,0.938805,0.876982,0.854295,0.65922,0.972159,0.37464,0.561668,0.114723,0.117366,0.249325,0.0593272,0.19316,0.714603,0.146409,0.439915,0.488927,0.920665,0.86026,0.560841,0.748516,0.995674,0.0315893,0.431782,0.946357,0.525639,0.140238,0.82096,0.624568,0.334159,0.760292,0.485027,0.0169222,0.0439256,0.733147,0.421129,0.300993,0.861272,0.551924,0.918702,0.749001,0.960685,0.308,0.538667,0.930831,0.435205,0.114233,0.456682,0.533147,0.373027,0.735912,0.0568082,0.446178,0.169517,0.899162,0.0828119,0.401627,0.593417,0.0958497,0.742845,0.486545,0.237907,0.332393,0.990717,0.772533,0.926253,0.762525,0.717272,0.445944,0.382281,0.000692308,0.51019,0.352011,0.689246,0.511925,0.397083,0.171243,0.343732,0.0112585,0.472394,0.55793,0.45568,0.807042,0.423802,0.0425826,0.924614,0.705588,0.801327,0.953351,0.541405,0.0055331,0.850198,0.671135,0.976978,0.778784,0.678666,0.674452,0.588875,0.707565,0.561746,0.144194,0.0712754,0.800609,0.0648656,0.113678,0.470748,0.746805,0.836292,0.684387,0.591466,0.279838,0.466221,0.84027,0.531444,0.207837,0.179422,0.976803,0.220755,0.934224,0.739463,0.552146,0.393565,0.318904,0.528473,0.0647128,0.449194,0.843926,0.884169,0.842775,0.862142,0.228003,0.395195,0.205423,0.445458,0.348375,0.368067,0.623889,0.334076,0.103831,0.135941,0.74233,0.679538,0.794495,0.513785,0.600043,0.251825,0.856493,0.798272,0.624203,0.0255806,0.317275,0.345301,0.0261989,0.360583,0.0185254,0.0569094,0.199191,0.698888,0.980913,0.0369402,0.0881751,0.108041,0.89854,0.851912,0.822114,0.226279,0.747764,0.689369,0.808996,0.833877,0.896831,0.597859,0.68756,0.350106,0.319774,0.402022,0.385214,0.913835,0.168464,0.994365,0.208044,0.841356,0.412906,0.241036,0.31951,0.508969,0.871523,0.8126,0.969845,0.746085,0.236486,0.745794,0.911783,0.0822412,0.780899,0.697209,0.507147,0.351892,0.703267,0.125665,0.663156,0.500895,0.265151,0.67047,0.649671,0.265658,0.149113,0.139296,0.626837,0.512363,0.2748,0.935364,0.917264,0.618433,0.466061,0.962606,0.329177,0.201828,0.880816,0.717277,0.756169,0.498158,0.507764,0.697044,0.513432,0.97071,0.395489,0.888376,0.808328,0.103029,0.180787,0.657086,0.303672,0.985796,0.995025,0.997338,0.110736,0.179471,0.526419,0.344167,0.347708,0.50437,0.664155,0.683497,0.465861,0.0556358,0.822605,0.688992,0.709809,0.578246,0.770169,0.814698,0.601339,0.644189,0.0909898,0.391149,0.179688,0.961466,0.0728401,0.75821,0.518323,0.353922,0.997903,0.0357882,0.345414,0.63928,0.423973,0.523561,0.0587028,0.643994,0.737436,0.189517,0.349619,0.717274,0.0449271,0.67261,0.523545,0.244171,0.876788,0.547463,0.0539834,0.788092,0.682183,0.306766,0.900237,0.836343,0.629438,0.70999,0.234761,0.98813,0.462646,0.861483,0.827173,0.653054,0.330445,0.408975,0.83423,0.503516,0.849283,0.642624,0.740797,0.565047,0.311803,0.0617715,0.651619,0.572222,0.963734,0.143131,0.457957,0.248224,0.587487,0.467777,0.57215,0.700146,0.980464,0.707265,0.541643,0.182868,0.137222,0.322277,0.515412,0.987677,0.338482,0.833495,0.229623,0.252124,0.204839,0.147111,0.951011,0.50083,0.122396,0.82447,0.145784,0.661261,0.922594,0.282747,0.936549,0.0981712,0.247671,0.256989,0.0348163,0.481254,0.952749,0.0710481,0.675294,0.0260198,0.996319,0.486022,0.0456718,0.252968,0.0269794,0.157354,0.198752,0.443347,0.955761,0.386016,0.860211,0.261052,0.114292,0.169116,0.63215,0.425687,0.0977376,0.93185,0.753454,0.686196,0.0895896,0.747791,0.961671,0.408254,0.609881,0.668198,0.979503,0.161406,0.560923,0.909268,0.800049,0.226862,0.816348,0.297782,0.845111,0.886333,0.120196,0.921705,0.704851,0.0291406,0.666365,0.0436716,0.393489,0.678627,0.4273,0.311606,0.632106,0.779456,0.178787,0.132789,0.360712,0.649567,0.832949,0.807911,0.233413,0.645144,0.328944,0.976062,0.734857,0.830576,0.171899,0.149431,0.221543,0.163007,0.546955,0.514118,0.0960888,0.792574,0.268958,0.572807,0.414252,0.177939,0.712435,0.018347,0.394545,0.587733,0.369783,0.823958,0.0332118,0.901666,0.294523,0.0308985,0.352482,0.931539,0.191514,0.169562,0.963958,0.642564,0.231129,0.90614,0.471992,0.874487,0.796426,0.275633,0.710503,0.177786,0.802578,0.462875,0.470471,0.412365,0.868988,0.997724,0.197467,0.310508,0.485626,0.824783,0.123616,0.665714,0.365973,0.381253,0.786994,0.147193,0.835456,0.679356,0.585051,0.463564,0.685041,0.964927,0.269632,0.837811,0.0645961,0.408266,0.83032,0.111794,0.91232,0.92925,0.847696,0.755214,0.0422241,0.533325,0.34828,0.270231,0.655678,0.88691,0.223904,0.0544761,0.919323,0.72841,0.203837,0.92697,0.10344,0.191991,0.126181,0.600913,0.46249,0.383439,0.571137,0.427462,0.418524,0.0580844,0.29187,0.648663,0.112336,0.0662765,0.585262,0.308501,0.720159,0.817871,0.58151,0.843309,0.860181,0.855387,0.77947,0.916101,0.825937,0.419909,0.778928,0.512787,0.692464,0.615846,0.89211,0.849597,0.020525,0.585686,0.24517,0.498975,0.793776,0.0421184,0.207166,0.788821,0.329369,0.0269335,0.0475448,0.456227,0.741786,0.822861,0.14223,0.509427,0.172159,0.426403,0.610174,0.520534,0.669666,0.479215,0.945783,0.658442,0.454375,0.625208,0.356958,0.482346,0.049222,0.321847,0.671619,0.437268,0.811889,0.1368,0.906672,0.299993,0.711322,0.309159,0.0793329,0.918045,0.0546135,0.29588,0.832373,0.449281,0.093768,0.701349,0.157839,0.742648,0.216162,0.637661,0.379386,0.858865,0.0691459,0.333206,0.259274,0.790878,0.671669,0.24639,0.02428,0.946916,0.364325,0.573547,0.341683,0.117082,0.315903,0.259695,0.443627,0.335956,0.985907,0.832227,0.485441,0.653757,0.360111,0.0702822,0.957969,0.554831,0.295722,0.891666,0.573609,0.250629,0.783269,0.720428,0.142775,0.945436,0.147008,0.708359,0.414446,0.976392,0.184138,0.0942949,0.665289,0.238838,0.0824703,0.960928,0.901573,0.845666,0.202304,0.792517,0.160693,0.412788,0.426431,0.283327,0.48272,0.218425,0.46529,0.65037,0.380543,0.578289,0.00752062,0.665167,0.309888,0.745485,0.338032,0.150774,0.943222,0.0522459,0.522235,0.00354445,0.990435,0.196802,0.629994,0.30125,0.528842,0.813001,0.982794,0.49218,0.817347,0.94016,0.491466,0.979104,0.647113,0.795316,0.515668,0.917065,0.624063,0.388832,0.452678,0.776789,0.863279,0.363757,0.427963,0.865478,0.517857,0.678381,0.753557,0.0797479,0.450455,0.969404,0.504126,0.86611,0.311366,0.991377,0.172857,0.0688368,0.633382,0.0556511,0.73998,0.745577,0.151428,0.511272,0.917864,0.15403,0.296257,0.862872,0.757532,0.507501,0.781107,0.614288,0.180045,0.44341,0.609295,0.441505,0.994737,0.487814,0.356796,0.311564,0.881901,0.620099,0.0610761,0.736344,0.608657,0.172616,0.475666,0.799815,0.126068,0.147718,0.649123,0.710558,0.845419,0.000980079,0.79123,0.647577,0.909977,0.894826,0.105607,0.491392,0.543322,0.163644,0.618988,0.237293,0.286331,0.172912,0.965436,0.571987,0.332099,0.579182,0.843389,0.822922,0.0877276,0.292282,0.636617,0.569594,0.968265,0.799406,0.505117,0.150726,0.642375,0.408969,0.88487,0.104905,0.43465,0.164786,0.221148,0.588196,0.670094,0.214091,0.528082,0.47807,0.757157,0.724474,0.315569,0.474836,0.513029,0.892955,0.425462,0.870388,0.847577,0.951038,0.392502,0.432889,0.0531613,0.824301,0.461442,0.751466,0.385371,0.823829,0.690986,0.015807,0.980516,0.963081,0.105185,0.676142,0.662538,0.0536897,0.878871,0.512366,0.5572,0.543347,0.687614,0.808988,0.558015,0.586278,0.613853,0.484224,0.680517,0.167583,0.617888,0.103156,0.0345998,0.65832,0.0936995,0.507528,0.192239,0.952071,0.000490963,0.400764,0.330903,0.198149,0.392757,0.957711,0.473159,0.966841,0.941666,0.776734,0.484203,0.643048,0.455336,0.642079,0.841096,0.708727,0.277541,0.498936,0.161132,0.646573,0.902423,0.611299,0.949308,|0.0813234,0.911531,0.381465,0.108779,0.670475,0.1601,0.799817,0.225212,0.43467,0.619726,0.563253,0.216957,0.958883,0.763021,0.110184,0.423013,0.194798,0.922002,0.0619097,0.592203,0.445256,0.576591,0.093808,0.0769576,0.242375,0.0725057,0.0616259,0.3929,0.910527,0.0201271,0.666015,0.808535,0.545088,0.959068,0.819757,0.109079,0.46182,0.610791,0.172099,0.236164,0.950924,0.592527,0.703139,0.504616,0.0289456,0.715568,0.629408,0.574573,0.773599,0.9248,0.240624,0.445588,0.430593,0.314229,0.0983204,0.206546,0.438314,0.0292182,0.478397,0.430238,0.667165,0.975984,0.0112268,0.888594,0.295168,0.969018,0.441416,0.352853,0.248633,0.200816,0.189578,0.616676,0.564567,0.399053,0.27735,0.620965,0.346432,0.589908,0.394252,0.0298336,0.815259,0.536773,0.499121,0.858443,0.670021,0.483928,0.93195,0.983265,0.0177422,0.316903,0.314235,0.512496,0.0803981,0.853673,0.670737,0.394182,0.515164,0.250931,0.831075,0.121134,0.242502,0.133987,0.749263,0.561717,0.536938,0.49305,0.159191,0.103832,0.646146,0.422464,0.639735,0.0850155,0.068542,0.0748098,0.417126,0.831799,0.634481,0.319902,0.18629,0.227129,0.519872,0.844802,0.418643,0.323153,0.884581,0.661855,0.409663,0.373776,0.200669,0.549542,0.287009,0.126967,0.141466,0.871083,0.252321,0.0978894,0.92216,0.266958,0.786967,0.644696,0.160611,0.108941,0.566745,0.345978,0.784515,0.728124,0.989838,0.800764,0.0862285,0.560734,0.219346,0.689729,0.263915,0.297568,0.187095,0.761955,0.773504,0.66822,0.792486,0.568504,0.305509,0.885297,0.658867,0.701397,0.344869,0.232886,0.514294,0.438146,0.448429,0.37232,0.130453,0.932845,0.60436,0.261924,0.918034,0.53263,0.537265,0.288527,0.0974032,0.0594988,0.835858,0.634619,0.268437,0.064484,0.0343075,0.399769,0.767305,0.630653,0.492543,0.411811,0.554549,0.721827,0.101858,0.60309,0.40149,0.174465,0.135035,0.826193,0.622499,0.990633,0.677858,0.549482,0.785367,0.632837,0.58574,0.72307,0.807696,0.716949,0.423083,0.695998,0.92826,0.0210706,0.563569,0.381097,0.657953,0.879105,0.993607,0.855641,0.791224,0.210822,0.645622,0.303764,0.838474,0.153263,0.86871,0.863475,0.197839,0.160142,0.153157,0.07876,0.0861064,0.0796666,0.859196,0.303566,0.952542,0.663991,0.33001,0.0660757,0.252513,0.956477,0.698493,0.634974,0.979451,0.633943,0.672957,0.0296081,0.124783,0.593397,0.145359,0.121697,0.233906,0.235759,0.0970396,0.255244,0.598089,0.129398,0.888523,0.0875487,0.91831,0.982748,0.830736,0.853518,0.848562,0.933339,0.766148,0.255184,0.762639,0.247906,0.0518324,0.998447,0.0459224,0.767288,0.956981,0.507813,0.813283,0.536569,0.336884,0.837001,0.43519,0.717958,0.672557,0.306174,0.847079,0.869819,0.35133,0.570325,0.985239,0.823223,0.314179,0.374305,0.172487,0.628722,0.693658,0.61907,0.37498,0.962307,0.729212,0.492619,0.513179,0.504845,0.987548,0.193286,0.870292,0.867948,0.134472,0.447355,0.661721,0.956974,0.670432,0.712857,0.537763,0.553489,0.58206,0.757422,0.688257,0.558174,0.544729,0.421477,0.302732,0.609408,0.655951,0.722913,0.197223,0.756235,0.407799,0.607194,0.368879,0.801044,0.600726,0.565718,0.253894,0.413564,0.911282,0.00103998,0.579265,0.512927,0.412913,0.435328,0.557371,0.351309,0.0976101,0.802945,0.391133,0.314993,0.040289,0.558002,0.834932,0.819636,0.220805,0.849668,0.317464,0.79562,0.301089,0.982755,0.266117,0.700279,0.0692978,0.410984,0.535748,0.560674,0.21717,0.205234,0.821571,0.116897,0.976299,0.161694,0.353077,0.351056,0.732635,0.557726,0.863686,0.0214061,0.367878,0.848373,0.41133,0.718816,0.274006,0.102186,0.856781,0.615607,0.369745,0.657732,0.225959,0.993845,0.0231282,0.741687,0.20968,0.550811,0.721993,0.722545,0.19036,0.440008,0.140994,0.537372,0.174209,0.0485416,0.25014,0.640051,0.0809159,0.011898,0.422479,0.0250468,0.059797,0.355616,0.937389,0.396365,0.682892,0.216921,0.0923125,0.0171289,0.680796,0.617922,0.847406,0.716399,0.984276,0.469802,0.877102,0.172506,0.373066,0.669539,0.586833,0.229062,0.484686,0.252122,0.898294,0.358998,0.950919,0.461609,0.134943,0.991359,0.207179,0.729943,0.932778,0.363209,0.713379,0.383237,0.293322,0.808616,0.933455,0.441141,0.943494,0.918728,0.345837,0.462337,0.629772,0.770665,0.901965,0.382449,0.439475,0.897251,0.312662,0.00449938,0.163111,0.981702,0.992795,0.547956,0.370982,0.4233,0.967517,0.346953,0.58539,0.269571,0.903717,0.891964,0.401712,0.0688366,0.545782,0.201727,0.215803,0.181562,0.053626,0.461921,0.376237,0.893209,0.948616,0.112482,0.962244,0.0748075,0.487435,0.354424,0.571353,0.961256,0.0976897,0.171498,0.490535,0.794702,0.256496,0.750908,0.503028,0.998416,0.374171,0.889901,0.58571,0.452882,0.938752,0.491217,0.0332847,0.45065,0.512539,0.635636,0.00195944,0.836553,0.754279,0.806933,0.993895,0.399048,0.160015,0.182182,0.0531839,0.25205,0.454325,0.801268,0.205503,0.737774,0.730057,0.350295,0.0891548,0.531234,0.961218,0.930675,0.457861,0.102521,0.00193441,0.707399,0.865999,0.957519,0.255542,0.341215,0.910408,0.953768,0.839707,0.482732,0.228231,0.0309378,0.925354,0.236389,0.90717,0.291944,0.86093,0.0506673,0.627483,0.570511,0.466177,0.756962,0.0683424,0.746036,0.744928,0.537034,0.478834,0.883791,0.84421,0.914946,0.493049,0.57661,0.190215,0.403405,0.291827,0.0295455,0.793331,0.429332,0.857529,0.173872,0.702966,0.16282,0.418619,0.710538,0.50369,0.568034,0.440066,0.608752,0.87705,0.762895,0.41552,0.749918,0.434637,0.940498,0.0677254,0.845434,0.051082,0.881342,0.344017,0.385469,0.970965,0.746181,0.19347,0.698347,0.114323,0.863095,0.450157,0.770977,0.975201,0.213482,0.351624,0.184512,0.369107,0.169277,0.308415,0.229153,0.674742,0.61726,0.109336,0.731423,0.502821,0.430468,0.0115972,0.0461592,0.405335,0.667367,0.605002,0.993916,0.37008,0.556457,0.411833,0.401959,0.760738,0.566647,0.153341,0.632991,0.635169,0.497234,0.42437,0.0390818,0.125062,0.368732,0.700137,0.107934,0.0932453,0.654982,0.969281,0.626402,0.568494,0.153943,0.398986,0.693554,0.312306,0.565206,0.255914,0.445438,0.41024,0.62354,0.322326,0.741001,0.0559528,0.202429,0.953592,0.0788859,0.326104,0.697025,0.50942,0.910694,0.318796,0.872862,0.897135,0.061475,0.900221,0.560022,0.22164,0.0256642,0.317321,0.703281,0.302614,0.827342,0.459379,0.52249,0.659335,0.932961,0.393209,0.537116,0.933036,0.917608,0.913149,0.117101,0.256671,0.230271,0.0179789,0.767955,0.8944,0.754348,0.574099,0.82237,0.317779,0.369146,0.638477,0.0552942,0.493436,0.731102,0.0485412,0.69439,0.431707,0.618704,0.85164,0.13772,0.418746,0.328746,0.112096,0.726874,0.416609,0.242988,0.88557,0.338192,0.634611,0.790966,0.639415,0.931565,0.0484784,0.644306,0.976561,0.792964,0.145385,0.851932,0.502156,0.841982,0.734812,0.183992,0.332799,0.62659,0.780784,0.048905,0.74694,0.193808,0.911746,0.0577176,0.904594,0.414823,0.247098,0.954026,0.647267,0.394395,0.98627,0.491139,0.0713416,0.991186,0.775831,0.589949,0.123182,0.0713279,0.927119,0.475303,0.768321,0.384862,0.827149,0.251883,0.918242,0.214359,0.266139,0.896856,0.02544,0.8244,0.253055,0.050357,0.905747,0.723635,0.771107,0.00277817,0.739887,0.139126,0.251861,0.850752,0.292665,0.108039,0.293439,0.142264,0.0837633,0.515626,0.769627,0.515556,0.776544,0.187541,0.531603,0.217401,0.105916,0.466413,0.299093,0.0508955,0.608084,0.412844,0.3708,0.0559083,0.631344,0.266177,0.69308,0.177095,0.385017,0.905287,0.855784,0.622505,0.0383241,0.67913,0.0374777,0.0572881,0.803634,0.890526,0.834582,0.516028,0.248758,0.216469,0.919409,0.240413,0.751468,0.16728,0.193996,0.311516,0.575843,0.332775,0.845225,0.685593,0.537945,0.170204,0.105513,0.773675,0.480069,0.63436,0.299638,0.475498,0.391726,0.997148,0.00767851,0.993676,0.384196,0.967024,0.275292,0.258923,0.412256,0.180138,0.461133,0.593196,0.624552,0.944435,0.351342,0.84712,0.350859,0.27133,0.882569,0.851467,0.303349,0.122796,0.1855,0.441974,0.122471,0.21033,0.0911981,0.234682,0.332783,0.733689,0.219733,0.362659,0.863863,0.0749195,0.751457,0.543914,0.19402,0.805803,0.228466,0.795014,0.352491,0.264952,0.701434,0.0998646,0.547506,0.081089,0.873834,0.393442,0.400753,0.777351,0.148112,0.345841,0.0286539,0.936902,0.84657,0.211404,0.372027,0.425909,0.654257,0.638298,0.202202,0.532682,0.84236,0.29405,0.4274,0.12458,0.496766,0.402026,0.401158,0.13584,0.634589,0.559096,0.594981,0.705216,0.866383,0.0483425,0.663432,0.742624,0.56156,0.863582,0.145961,0.964875,0.139942,0.210258,0.460162,0.952119,0.471671,0.536185,0.539681,0.610452,0.756127,0.158763,0.21304,0.603288,0.918154,0.666222,0.385038,0.181841,0.437432,0.90757,0.520218,0.087709,0.782383,0.25491,0.854175,0.462441,0.14073,0.200717,0.433614,0.754351,0.361082,0.674865,0.257005,0.441878,0.0444745,0.08833,0.0736374,0.375479,0.161164,0.19191,0.282415,0.493091,0.34544,0.932069,0.233699,0.022472,0.373464,0.489247,0.537213,0.475099,0.344962,0.808334,0.394935,0.373869,0.477863,0.39956,0.450732,0.798752,0.395549,0.772358,0.466959,0.633193,0.343656,0.266669,0.371276,0.899783,0.843503,0.0577133,0.458847,0.607943,0.304837,0.140038,0.396593,0.410324,0.656227,0.798173,0.801729,0.6347,0.425167,0.252016,0.00577575,0.992297,0.931993,0.376827,0.461039,0.870724,0.841256,0.0146185,0.603338,0.51278,0.43274,0.767147,0.00430769,0.341832,0.402416,0.0551003,0.624931,0.977014,0.796993,0.201492,0.834992,0.673422,0.397622,0.691372,0.300179,0.218934,|0.159984,0.608362,0.515922,0.491695,0.140458,0.131403,0.897734,0.00699663,0.210047,0.654684,0.847763,0.034112,0.741375,0.975672,0.980749,0.842352,0.162452,0.0442718,0.492361,0.553259,0.480461,0.525239,0.276177,0.26864,0.856968,0.600831,0.711757,0.0326725,0.0191068,0.931864,0.818496,0.303381,0.27513,0.305887,0.15278,0.261583,0.388972,0.0636413,0.469002,0.615583,0.243179,0.482937,0.221268,0.913039,0.0180798,0.912485,0.965206,0.512246,0.0795534,0.632575,0.490656,0.259814,0.251671,0.144437,0.9439,0.350714,0.736509,0.552331,0.0522282,0.0204719,0.887049,0.00519186,0.154579,0.26229,0.371744,0.651381,0.705764,0.431266,0.139672,0.172796,0.520922,0.205108,0.212614,0.527775,0.44422,0.415365,0.149029,0.584689,0.915264,0.94837,0.724038,0.263549,0.764647,0.400833,0.776848,0.136354,0.99166,0.0363854,0.755857,0.865007,0.465514,0.90738,0.903772,0.111202,0.739107,0.685884,0.555748,0.984598,0.400459,0.567964,0.0748756,0.274783,0.359197,0.936017,0.490846,0.0269706,0.000105619,0.383666,0.832506,0.700221,0.000930011,0.616917,0.835053,0.530703,0.996316,0.315439,0.85155,0.343983,0.153455,0.948853,0.23262,0.0127097,0.829949,0.790419,0.690934,0.986196,0.496318,0.0112891,0.512551,0.0254506,0.887807,0.830036,0.193425,0.269516,0.386047,0.951935,0.452646,0.255516,0.389291,0.155886,0.251486,0.935903,0.501531,0.087451,0.0663825,0.770063,0.484858,0.162302,0.39465,0.597544,0.218841,0.0257072,0.850045,0.878872,0.846372,0.523249,0.504285,0.824737,0.367968,0.617069,0.826416,0.515242,0.556113,0.894441,0.0796918,0.0883515,0.197374,0.1786,0.507807,0.0407213,0.205916,0.935244,0.0710682,0.187141,0.819074,0.444143,0.881948,0.634401,0.269064,0.862257,0.169585,0.991248,0.989809,0.37517,0.860883,0.207695,0.209556,0.139424,0.198386,0.201222,0.900724,0.874929,0.0853651,0.751132,0.509394,0.646719,0.690626,0.340064,0.549464,0.733093,0.0687926,0.614044,0.0713651,0.667642,0.0685195,0.106965,0.600644,0.798991,0.227952,0.0955379,0.123054,0.0829114,0.725996,0.832948,0.665307,0.993757,0.0528582,0.18007,0.51013,0.40184,0.86142,0.555588,0.48235,0.584925,0.379431,0.932759,0.551906,0.470834,0.595158,0.935091,0.407739,0.859387,0.55896,0.791175,0.513947,0.608156,0.917613,0.201715,0.510725,0.398763,0.95815,0.84289,0.497653,0.296074,0.372213,0.0841174,0.354179,0.810632,0.355976,0.259078,0.283958,0.390306,0.928826,0.565409,0.557836,0.335692,0.225619,0.206641,0.460425,0.0426553,0.994428,0.871675,0.250374,0.860783,0.995082,0.897272,0.167688,0.13387,0.7584,0.643373,0.329139,0.462375,0.155209,0.428802,0.587304,0.497193,0.174802,0.488608,0.459988,0.436195,0.298167,0.726927,0.419644,0.288902,0.0647804,0.67963,0.684339,0.719725,0.118389,0.10347,0.370564,0.448954,0.435542,0.720396,0.883276,0.40997,0.519156,0.759987,0.150085,0.293589,0.394146,0.825463,0.39682,0.0744755,0.925541,0.16965,0.731849,0.686463,0.947513,0.26295,0.897797,0.384854,0.172513,0.226493,0.110876,0.457966,0.282461,0.859408,0.449899,0.425424,0.332132,0.228358,0.992002,0.219679,0.0678189,0.106532,0.66166,0.754944,0.247105,0.95669,0.737298,0.109778,0.677277,0.177641,0.645968,0.98828,0.0213852,0.0974131,0.345517,0.825363,0.815471,0.631787,0.441774,0.643743,0.358569,0.186462,0.223201,0.670768,0.629715,0.0917374,0.11194,0.725395,0.354473,0.709103,0.912838,0.438157,0.439457,0.878836,0.617784,0.206153,0.52023,0.674347,0.610301,0.229818,0.762047,0.929409,0.544787,0.981784,0.174496,0.989319,0.796261,0.872972,0.337964,0.734838,0.758285,0.95534,0.743118,0.34486,0.570124,0.383434,0.733237,0.442722,0.166367,0.850842,0.296924,0.572007,0.235431,0.671831,0.167968,0.647608,0.656772,0.472769,0.0554922,0.961541,0.381027,0.4298,0.606659,0.685363,0.0805641,0.675841,0.133748,0.406947,0.31761,0.773838,0.907945,0.257958,0.0954484,0.817898,0.40135,0.298108,0.937197,0.728871,0.865704,0.853956,0.86153,0.416465,0.109033,0.78686,0.0146735,0.139962,0.882682,0.420617,0.56226,0.113549,0.853171,0.665992,0.777092,0.357881,0.330704,0.143481,0.604227,0.372463,0.231753,0.467233,0.051379,0.310936,0.447751,0.578318,0.590269,0.666629,0.0168461,0.973864,0.436107,0.13382,0.234084,0.089128,0.899942,0.940654,0.902746,0.214873,0.190036,0.526895,0.116618,0.303252,0.0659277,0.762962,0.875141,0.0205753,0.681335,0.394675,0.213242,0.623036,0.764254,0.986675,0.513751,0.376664,0.033653,0.49828,0.0758038,0.183738,0.274876,0.370148,0.422532,0.813629,0.546214,0.953305,0.846218,0.263203,0.656661,0.0771658,0.792054,0.892675,0.930836,0.467195,0.949321,0.424992,0.44983,0.7247,0.17318,0.743855,0.547338,0.774158,0.0601919,0.813231,0.965188,0.144529,0.3405,0.618674,0.396637,0.565205,0.129458,0.746069,0.662859,0.757092,0.621179,0.342048,0.934392,0.704282,0.430141,0.133295,0.736434,0.046206,0.325335,0.734812,0.0759497,0.558143,0.163779,0.998545,0.738307,0.987614,0.390461,0.672182,0.0691333,0.610012,0.365524,0.119334,0.841199,0.307756,0.65828,0.649337,0.876513,0.0645054,0.491845,0.268982,0.393814,0.0762162,0.796412,0.168907,0.343043,0.507195,0.475246,0.367823,0.583263,0.105185,0.0447199,0.224016,0.772151,0.0800259,0.285412,0.534319,0.408004,0.595863,0.40667,0.163014,0.998455,0.349501,0.598949,0.413178,0.355554,0.0192827,0.256657,0.172199,0.358062,0.319504,0.0845787,0.245928,0.596655,0.100242,0.429943,0.345852,0.408865,0.823119,0.714938,0.442522,0.250653,0.457929,0.976549,0.196204,0.716582,0.876319,0.53946,0.755659,0.188549,0.489223,0.448763,0.436028,0.059148,0.863319,0.067387,0.245534,0.895399,0.466139,0.547009,0.0476882,0.696938,0.530075,0.110862,0.855855,0.563627,0.308576,0.478687,0.953385,0.617871,0.322009,0.246879,0.981271,0.884455,0.377945,0.187015,0.235786,0.416207,0.15235,0.159645,0.617277,0.535697,0.426018,0.28903,0.278403,0.170693,0.963971,0.874534,0.16,0.120727,0.40059,0.635427,0.20849,0.204091,0.896081,0.269772,0.615975,0.464755,0.199645,0.779626,0.941656,0.724153,0.0330691,0.907846,0.674424,0.857388,0.445876,0.881099,0.305555,0.760364,0.205445,0.423502,0.70945,0.734108,0.917263,0.835192,0.513999,0.216187,0.630843,0.531124,0.727275,0.350164,0.253381,0.486688,0.142262,0.311255,0.123592,0.781415,0.319624,0.051038,0.190876,0.986842,0.384701,0.893015,0.180088,0.231766,0.721796,0.189979,0.219735,0.135835,0.342908,0.562759,0.973969,0.175208,0.159492,0.572648,0.00164992,0.910537,0.178031,0.0740806,0.633394,0.240334,0.916974,0.20948,0.209721,0.0384168,0.3949,0.101425,0.177908,0.82178,0.907858,0.534098,0.312578,0.790807,0.568533,0.247214,0.764727,0.479191,0.202337,0.230749,0.132865,0.67665,0.477528,0.32553,0.784093,0.728705,0.385348,0.00941104,0.25309,0.42828,0.683508,0.578607,0.269347,0.255725,0.262608,0.532448,0.549883,0.170277,0.708142,0.714224,0.839713,0.345055,0.830278,0.456343,0.945125,0.643303,0.659068,0.338609,0.278051,0.0413768,0.119145,0.433144,0.360714,0.194588,0.216626,0.83991,0.175663,0.216645,0.32074,0.349479,0.684682,0.594202,0.112787,0.411269,0.102857,0.331529,0.865856,0.751696,0.132853,0.30678,0.834421,0.180223,0.0126605,0.725165,0.174939,0.434663,0.796449,0.341324,0.0098443,0.718143,0.636285,0.77269,0.0916927,0.165429,0.168235,0.669146,0.802265,0.861281,0.0180193,0.367207,0.501906,0.834695,0.682343,0.699418,0.0564746,0.967022,0.174807,0.870941,0.897812,0.875397,0.88467,0.244262,0.821538,0.0190453,0.203856,0.0885789,0.46092,0.89822,0.792885,0.504738,0.261604,0.633709,0.113755,0.28668,0.41532,0.65746,0.00135404,0.177754,0.38706,0.451631,0.718509,0.378603,0.717452,0.0158842,0.996834,0.980245,0.830961,0.348718,0.813223,0.767571,0.24632,0.433754,0.728513,0.136725,0.326795,0.108498,0.154772,0.533658,0.533652,0.820136,0.161827,0.987287,0.166979,0.331286,0.0466911,0.293049,0.996465,0.796719,0.449628,0.18543,0.279043,0.563157,0.810033,0.95536,0.254999,0.38378,0.47352,0.792344,0.700573,0.186002,0.805048,0.156956,0.241781,0.202216,0.851666,0.467667,0.177577,0.645121,0.220006,0.807188,0.682533,0.820295,0.996819,0.36431,0.617594,0.0335215,0.863691,0.191533,0.558609,0.668716,0.803147,0.499811,0.0943723,0.488959,0.839578,0.951554,0.178875,0.81682,0.901208,0.200126,0.481473,0.682207,0.980165,0.551136,0.0661162,0.520348,0.120194,0.37321,0.309286,0.426539,0.364856,0.632327,0.982474,0.557438,0.633436,0.459529,0.29591,0.161814,0.31418,0.81014,0.357177,0.257682,0.184313,0.377681,0.0450026,0.371972,0.761324,0.863845,0.831165,0.134151,0.85693,0.0844761,0.428378,0.26353,0.724642,0.512716,0.571784,0.0690407,0.308466,0.918072,0.842398,0.958672,0.706851,0.61879,0.955107,0.242563,0.251885,0.559708,0.0301086,0.109862,0.567674,0.506759,0.944728,0.912453,0.419798,0.0963621,0.18465,0.900785,0.596591,0.643897,0.964102,0.203062,0.414711,0.48027,0.0945345,0.613933,0.567901,0.0749693,0.0754676,0.525381,0.277578,0.0768618,0.918991,0.363248,0.0523113,0.624634,0.741006,0.331243,0.0446851,0.682069,0.936709,0.208061,0.841871,0.222741,0.114491,0.412985,0.718893,0.460843,0.0864807,0.365666,0.919969,0.00530022,0.744835,0.964874,0.473741,0.827547,0.949164,0.203272,0.948779,0.813159,0.339405,0.151189,0.32638,0.184816,0.457355,0.323064,0.173828,0.631716,0.141559,0.511008,0.945721,0.451234,0.118536,0.547766,0.851584,0.386739,0.848534,0.960352,0.153845,0.343911,0.122107,0.624733,0.29928,0.0516597,0.715899,0.514975,0.742404,|0.0371994,0.300866,0.921383,0.653307,0.61542,0.743732,0.198255,0.547185,0.440929,0.0132059,0.962592,0.897654,0.307706,0.368106,0.109996,0.830927,0.512943,0.769773,0.0106218,0.768868,0.0644921,0.74662,0.637556,0.442119,0.861149,0.679903,0.030423,0.517549,0.26771,0.776759,0.807233,0.447717,0.508901,0.245884,0.218723,0.0385078,0.529773,0.756785,0.342811,0.465595,0.0219074,0.0403402,0.8807,0.369354,0.427943,0.303938,0.490549,0.886491,0.421731,0.566404,0.201025,0.427123,0.979487,0.642848,0.717712,0.643571,0.0555579,0.446132,0.224378,0.847243,0.106648,0.23261,0.851938,0.511456,0.785126,0.151318,0.86165,0.749717,0.430234,0.236074,0.262488,0.158714,0.0851923,0.211384,0.695726,0.866213,0.711722,0.690913,0.57471,0.62451,0.656373,0.548323,0.184326,0.984944,0.187498,0.504279,0.967353,0.424155,0.00449485,0.966367,0.890187,0.280885,0.436017,0.962307,0.317226,0.180929,0.116894,0.280632,0.819355,0.437972,0.486838,0.0708011,0.0835309,0.157246,0.600814,0.656008,0.896372,0.127279,0.987761,0.181283,0.3201,0.0515729,0.563638,0.804934,0.837137,0.842143,0.148648,0.681878,0.035706,0.516289,0.575806,0.200789,0.952599,0.00337499,0.510446,0.808137,0.769634,0.931447,0.166983,0.809353,0.631937,0.706124,0.701226,0.352556,0.825835,0.360629,0.154882,0.0201146,0.824586,0.947452,0.427255,0.85945,0.727235,0.242935,0.0573212,0.610631,0.842569,0.608059,0.263551,0.0340595,0.157885,0.3557,0.74621,0.659663,0.951968,0.137656,0.752472,0.934672,0.0183821,0.484799,0.233937,0.968665,0.826181,0.712769,0.429651,0.471288,0.370635,0.835561,0.447131,0.640258,0.756797,0.633149,0.638156,0.413651,0.951595,0.785927,0.192851,0.197067,0.999917,0.869291,0.611863,0.0766634,0.946266,0.756182,0.437077,0.935743,0.532769,0.590444,0.75445,0.687265,0.199596,0.84539,0.285158,0.876113,0.599848,0.889764,0.55741,0.150227,0.482812,0.093989,0.740194,0.85129,0.850705,0.164254,0.571696,0.681266,0.947568,0.812419,0.92273,0.42797,0.835882,0.742614,0.771179,0.564775,0.810457,0.164347,0.216842,0.888208,0.0427494,0.688219,0.448595,0.534237,0.458409,0.707445,0.560644,0.492122,0.421303,0.0574343,0.658309,0.824377,0.534633,0.236322,0.921441,0.817145,0.522503,0.676691,0.420158,0.738368,0.864709,0.686054,0.525667,0.228421,0.153704,0.466427,0.601643,0.71775,0.44322,0.458937,0.139449,0.143256,0.424028,0.978963,0.322566,0.92609,0.555881,0.407588,0.444543,0.490829,0.518947,0.553372,0.392094,0.143611,0.33357,0.432722,0.26347,0.0810233,0.175843,0.0769213,0.506239,0.326889,0.252625,0.931926,0.689463,0.986406,0.39336,0.933564,0.258493,0.291204,0.129368,0.131634,0.109817,0.315376,0.998238,0.609979,0.188533,0.99805,0.669101,0.00625384,0.880411,0.882193,0.533829,0.99458,0.413288,0.454567,0.949778,0.842551,0.258127,0.801135,0.767193,0.981881,0.49408,0.969924,0.890459,0.358853,0.263429,0.95653,0.409037,0.596115,0.3379,0.858586,0.169775,0.124857,0.655744,0.54664,0.120074,0.003232,0.266133,0.841083,0.768502,0.13142,0.52217,0.944618,0.578154,0.216797,0.274598,0.257954,0.779329,0.977549,0.3947,0.602288,0.634954,0.843755,0.26061,0.135452,0.449485,0.324607,0.33166,0.544097,0.789538,0.563212,0.956307,0.379723,0.0721669,0.106131,0.662122,0.650358,0.221086,0.591367,0.686437,0.406856,0.956091,0.961826,0.930645,0.550888,0.185404,0.589142,0.078095,0.253528,0.949187,0.682802,0.925321,0.720008,0.307785,0.586944,0.823397,0.728868,0.554663,0.167358,0.585743,0.0703308,0.512737,0.11953,0.131113,0.0849177,0.362824,0.0558321,0.996126,0.208195,0.319812,0.212616,0.810718,0.322458,0.611286,0.933234,0.750093,0.581843,0.851042,0.10875,0.0521656,0.803754,0.854486,0.320538,0.856805,0.866722,0.264496,0.460829,0.0267345,0.581,0.114602,0.534201,0.997026,0.580053,0.724318,0.797203,0.347552,0.596727,0.1668,0.771868,0.551868,0.864836,0.599387,0.894726,0.418025,0.875477,0.338611,0.834852,0.597564,0.748838,0.266966,0.495368,0.279094,0.654924,0.129741,0.971146,0.311324,0.440291,0.409337,0.154649,0.566961,0.548021,0.595452,0.609312,0.363226,0.074051,0.297533,0.0995752,0.119285,0.0875766,0.595498,0.559326,0.674368,0.950138,0.218835,0.617503,0.285819,0.417937,0.044495,0.357989,0.426775,0.783079,0.19324,0.101488,0.465645,0.421238,0.917173,0.72277,0.24107,0.155231,0.308851,0.702844,0.281289,0.208841,0.742371,0.943339,0.193376,0.406865,0.371306,0.828883,0.797534,0.392177,0.119601,0.273775,0.486805,0.227846,0.862638,0.620605,0.83931,0.0543759,0.610254,0.00497609,0.382365,0.496886,0.691924,0.376917,0.0131393,0.0519947,0.448884,0.723413,0.54017,0.879497,0.307409,0.337657,0.144294,0.626082,0.108156,0.855174,0.891466,0.460877,0.987814,0.544197,0.12704,0.316286,0.786249,0.392282,0.7616,0.783455,0.433037,0.404229,0.0390058,0.926168,0.640538,0.951801,0.0658281,0.248321,0.816053,0.47388,0.662642,0.485081,0.740911,0.644365,0.47611,0.978053,0.686815,0.346276,0.663922,0.34411,0.677102,0.433847,0.453313,0.368113,0.235547,0.423535,0.0304015,0.85338,0.410651,0.867156,0.736504,0.68818,0.637623,0.613011,0.786747,0.753472,0.47644,0.876916,0.0504901,0.47524,0.626986,0.110112,0.225954,0.32648,0.192572,0.832195,0.613794,0.13268,0.795964,0.601035,0.290761,0.83138,0.939602,0.96983,0.262728,0.480854,0.504752,0.0491006,0.0423589,0.407363,0.690245,0.836161,0.392896,0.467546,0.839137,0.969257,0.0345784,0.275326,0.66906,0.978187,0.806368,0.298182,0.351941,0.268353,0.00312376,0.624526,0.297743,0.882718,0.662795,0.229932,0.884285,0.191238,0.335309,0.116374,0.163928,0.580402,0.0700371,0.0438591,0.480908,0.221966,0.131671,0.352748,0.0679591,0.716399,0.604711,0.843198,0.728094,0.37081,0.543664,0.0846603,0.224572,0.302107,0.15245,0.0640349,0.773341,0.247846,0.116662,0.926402,0.026926,0.360098,0.402292,0.462388,0.968337,0.207049,0.956307,0.921551,0.0152957,0.54304,0.759628,0.61995,0.481244,0.194554,0.802718,0.435321,0.104007,0.70259,0.798517,0.535207,0.821444,0.509755,0.288643,0.630602,0.187119,0.0403545,0.951191,0.278369,0.1781,0.340531,0.770634,0.0420099,0.84686,0.765178,0.155683,0.0245329,0.310777,0.944961,0.925023,0.558711,0.450047,0.515824,0.794315,0.963542,0.774724,0.741421,0.229804,0.835002,0.357759,0.720347,0.880938,0.720085,0.844818,0.454776,0.846681,0.201845,0.927952,0.612595,0.498735,0.196921,0.404568,0.472483,0.700268,0.852692,0.169604,0.938364,0.341315,0.120114,0.268524,0.532642,0.497218,0.52938,0.892242,0.335472,0.32659,0.33541,0.518287,0.794627,0.553976,0.769915,0.725405,0.415087,0.766826,0.190446,0.0670176,0.615511,0.920653,0.403839,0.926692,0.209358,0.662548,0.875104,0.348766,0.185053,0.804013,0.57769,0.512337,0.906235,0.228658,0.745769,0.999304,0.663705,0.0209689,0.955487,0.717428,0.236915,0.488061,0.000383139,0.382322,0.360734,0.753926,0.877196,0.864341,0.50764,0.660994,0.512267,0.428556,0.493404,0.368641,0.219918,0.429734,0.391658,0.795217,0.814088,0.927262,0.392218,0.95779,0.701995,0.514975,0.897135,0.237927,0.352069,0.779851,0.97704,0.214186,0.21434,0.671555,0.652317,0.155764,0.913088,0.9051,0.508763,0.200296,0.48241,0.566968,0.299439,0.612956,0.451105,0.991974,0.396927,0.187925,0.255122,0.834524,0.374859,0.56823,0.896789,0.928894,0.571167,0.261003,0.0952889,0.418408,0.72881,0.333706,0.00466818,0.495146,0.821942,0.820483,0.813677,0.854451,0.247173,0.763513,0.446606,0.436277,0.115684,0.445285,0.339726,0.198479,0.234286,0.0542141,0.75141,0.853752,0.215057,0.877182,0.366048,0.967199,0.466711,0.556461,0.194794,0.250885,0.0647969,0.631889,0.435603,0.0133454,0.101714,0.888061,0.248791,0.704929,0.522263,0.969736,0.262773,0.436023,0.937071,0.665267,0.410536,0.611819,0.697787,0.616428,0.158874,0.834229,0.17408,0.773904,0.445181,0.674827,0.600288,0.751609,0.641197,0.271502,0.085548,0.660827,0.00714779,0.853446,0.930093,0.649838,0.333113,0.740214,0.0384592,0.230568,0.482711,0.501219,0.824063,0.494225,0.173573,0.400577,0.112112,0.327193,0.18331,0.546313,0.437393,0.593813,0.00865966,0.354807,0.890554,0.256398,0.449555,0.711924,0.707603,0.473255,0.821916,0.167773,0.0296339,0.651612,0.266508,0.236502,0.762635,0.416435,0.261719,0.865037,0.086596,0.315942,0.842435,0.215616,0.378696,0.957527,0.949689,0.806104,0.556241,0.983006,0.172693,0.087728,0.113582,0.194926,0.303649,0.00168979,0.935957,0.284055,0.635255,0.101668,0.195672,0.317,0.920725,0.861437,0.131959,0.781963,0.821774,0.380333,0.880163,0.399696,0.0418919,0.696788,0.143289,0.844158,0.534589,0.626704,0.955674,0.439445,0.0869225,0.892883,0.629345,0.536286,0.852984,0.327536,0.681181,0.444892,0.20967,0.732091,0.0710918,0.223765,0.941599,0.374823,0.807473,0.113679,0.582036,0.305477,0.638082,0.896898,0.471482,0.603043,0.239398,0.183921,0.565722,0.96203,0.267593,0.507919,0.725448,0.985757,0.798983,0.108673,0.143931,0.384369,0.23135,0.941194,0.525879,0.628207,0.633214,0.757609,0.490239,0.44087,0.362687,0.00355965,0.150819,0.50035,0.692526,0.621158,0.215169,0.510036,0.688674,0.5251,0.743182,0.34744,0.081399,0.118776,0.85468,0.952705,0.494389,0.710586,0.978992,0.391456,0.854513,0.846081,0.101107,0.431013,0.535825,0.359439,0.439534,0.90082,0.676247,0.47868,0.44847,0.156656,0.845865,0.417034,0.775617,0.684302,0.765424,0.338565,0.827364,0.00816822,0.0526918,0.0101342,0.912098,0.0213106,0.184756,0.632133,0.200485,0.167107,0.455693,|0.709864,0.103562,0.427347,0.839008,0.796728,0.677764,0.0317754,0.874828,0.571855,0.373071,0.412747,0.572793,0.301145,0.175375,0.0316689,0.967771,0.296136,0.247335,0.858909,0.283274,0.410773,0.010417,0.483083,0.777466,0.267562,0.052249,0.473314,0.840854,0.532813,0.393806,0.560213,0.0589221,0.653079,0.552128,0.0551865,0.969743,0.351642,0.975943,0.573868,0.2089,0.814056,0.67407,0.124843,0.160484,0.937381,0.886669,0.320739,0.114593,0.92255,0.208781,0.268327,0.859521,0.176992,0.399991,0.137459,0.484547,0.722152,0.755153,0.0197766,0.915279,0.678145,0.874896,0.802137,0.449668,0.814381,0.363731,0.355564,0.632688,0.182506,0.789968,0.911095,0.148722,0.5196,0.921435,0.175666,0.54771,0.795032,0.853282,0.169762,0.794694,0.43449,0.16267,0.437912,0.549482,0.708575,0.678148,0.886519,0.897149,0.986228,0.947608,0.622053,0.420696,0.0537627,0.856488,0.953554,0.952924,0.196629,0.640162,0.309001,0.908532,0.131558,0.12433,0.871849,0.0736074,0.194246,0.30385,0.402931,0.255526,0.330073,0.0771317,0.668797,0.979656,0.0101042,0.293869,0.0708393,0.599222,0.396414,0.0657331,0.762289,0.322707,0.705063,0.401185,0.373696,0.911213,0.650915,0.650857,0.222811,0.7858,0.496577,0.340766,0.715379,0.00493801,0.140409,0.204824,0.67956,0.784879,0.079093,0.179107,0.187947,0.166227,0.784649,0.940692,0.834721,0.300833,0.393833,0.627113,0.534307,0.173791,0.457114,0.371533,0.827879,0.764908,0.754537,0.827119,0.0931946,0.534893,0.135093,0.593949,0.107676,0.189584,0.950368,0.682648,0.302347,0.996076,0.0984031,0.577103,0.0266989,0.911972,0.132842,0.876759,0.758354,0.360626,0.401624,0.492338,0.0179899,0.931242,0.0628908,0.937884,0.84798,0.0952802,0.721249,0.911319,0.675097,0.153829,0.871326,0.287233,0.966246,0.721668,0.334632,0.975004,0.425474,0.729999,0.194819,0.986946,0.965873,0.128432,0.798002,0.574492,0.398004,0.605487,0.632121,0.684159,0.323403,0.654455,0.689497,0.39636,0.538319,0.528218,0.615258,0.55426,0.00943309,0.149618,0.0626051,0.067565,0.0536265,0.602713,0.10294,0.61402,0.23883,0.826273,0.252221,0.746003,0.394495,0.668845,0.101839,0.818674,0.673565,0.171061,0.288992,0.743805,0.572007,0.369119,0.342896,0.248888,0.683095,0.186851,0.77138,0.783753,0.139284,0.0995603,0.538827,0.737903,0.535913,0.452236,0.442416,0.807134,0.42813,0.328928,0.131273,0.687628,0.904037,0.538319,0.286677,0.797669,0.491961,0.655305,0.116923,0.125674,0.289832,0.864302,0.979206,0.814138,0.831489,0.908987,0.728704,0.509026,0.757758,0.392254,0.112981,0.442735,0.960583,0.557346,0.732421,0.611396,0.278287,0.218786,0.816129,0.263949,0.926173,0.0490836,0.846243,0.0233228,0.536987,0.813292,0.775831,0.583947,0.973823,0.407838,0.519167,0.0995966,0.161258,0.734671,0.550372,0.692609,0.705218,0.887386,0.114246,0.650275,0.594358,0.823211,0.710458,0.907453,0.919661,0.217948,0.293341,0.230106,0.954646,0.659027,0.989706,0.622893,0.625201,0.887077,0.513539,0.975244,0.214135,0.730096,0.499659,0.0931343,0.752353,0.164886,0.667631,0.479518,0.828328,0.290527,0.494025,0.122692,0.150681,0.291539,0.0146077,0.73815,0.249332,0.401737,0.0160906,0.20589,0.700573,0.74727,0.914597,0.189747,0.227077,0.0922075,0.276924,0.535363,0.284448,0.419638,0.439603,0.30537,0.342694,0.323462,0.560146,0.637465,0.827293,0.438273,0.57,0.451124,0.252782,0.218736,0.0373023,0.738466,0.967701,0.508124,0.973953,0.445184,0.310574,0.148393,0.921678,0.726447,0.315786,0.957179,0.0588158,0.446377,0.944228,0.72261,0.411129,0.863616,0.653806,0.468812,0.6303,0.786289,0.916223,0.58074,0.113411,0.410284,0.477504,0.239977,0.570471,0.430874,0.62311,0.013834,0.720217,0.0547774,0.825264,0.617559,0.787638,0.662694,0.352956,0.357917,0.184099,0.822176,0.494129,0.559656,0.386246,0.912506,0.779718,0.626182,0.106271,0.640271,0.153532,0.482847,0.895031,0.856012,0.959094,0.420981,0.299957,0.921312,0.63038,0.497737,0.680113,0.720653,0.921687,0.458807,0.767323,0.466981,0.377618,0.397143,0.944852,0.0967333,0.396157,0.170324,0.169164,0.444834,0.571506,0.246583,0.292788,0.139575,0.935195,0.412706,0.0637894,0.0245517,0.451984,0.912866,0.137276,0.876224,0.399618,0.662454,0.875915,0.500584,0.600609,0.473755,0.405977,0.0518471,0.128654,0.721035,0.190879,0.678294,0.953511,0.239262,0.508476,0.918583,0.620456,0.579369,0.675134,0.909461,0.341379,0.024978,0.447554,0.657505,0.991404,0.0880527,0.221191,0.27225,0.238506,0.430287,0.936289,0.899043,0.507261,0.610062,0.987627,0.44293,0.733872,0.206082,0.136409,0.67805,0.864173,0.502196,0.552959,0.329569,0.0283971,0.987912,0.0179003,0.105643,0.0079934,0.795169,0.477767,0.712367,0.309326,0.835179,0.357702,0.915776,0.387833,0.438006,0.94186,0.373366,0.559565,0.341676,0.893173,0.503606,0.473639,0.389827,0.926716,0.410299,0.801297,0.528493,0.781147,0.577689,0.645474,0.133631,0.775473,0.720382,0.391797,0.966354,0.868344,0.530685,0.777809,0.769428,0.522809,0.191455,0.90773,0.484212,0.0273188,0.109283,0.238655,0.890341,0.157378,0.191186,0.470922,0.43381,0.760823,0.38136,0.985638,0.540455,0.272614,0.607999,0.480268,0.497673,0.822504,0.0764055,0.0740804,0.168467,0.108003,0.318956,0.659665,0.231567,0.779932,0.0714091,0.47356,0.376387,0.70625,0.129034,0.953584,0.330818,0.255953,0.982508,0.774495,0.0302788,0.27651,0.139424,0.690152,0.442181,0.54042,0.60043,0.591866,0.794919,0.59116,0.632893,0.504863,0.69585,0.799349,0.520424,0.0517065,0.252138,0.0575716,0.440682,0.200254,0.500959,0.0628941,0.618535,0.697579,0.680245,0.0708287,0.278546,0.8654,0.465572,0.56881,0.479173,0.630254,0.808011,0.772841,0.991862,0.466559,0.967021,0.485699,0.261647,0.766713,0.089364,0.341363,0.863359,0.66155,0.829945,0.815089,0.306079,0.590753,0.0375693,0.081819,0.748606,0.950561,0.034405,0.202201,0.319906,0.793369,0.739492,0.328524,0.747095,0.911971,0.880049,0.560684,0.9539,0.917422,0.229883,0.325915,0.770642,0.446982,0.0790625,0.103909,0.422089,0.756751,0.235258,0.62726,0.605491,0.266226,0.922964,0.020658,0.914587,0.259074,0.558051,0.00339359,0.95708,0.70942,0.318294,0.221923,0.0478903,0.240072,0.451324,0.568881,0.933621,0.470708,0.302296,0.73258,0.757936,0.548975,0.54304,0.40783,0.439819,0.0762814,0.897527,0.35754,0.161051,0.0931758,0.603256,0.0337542,0.831446,0.710667,0.697461,0.992296,0.997329,0.273561,0.0268833,0.477471,0.70365,0.902685,0.0482443,0.617412,0.486315,0.629775,0.747333,0.317276,0.937921,0.988091,0.68509,0.992654,0.99153,0.0962264,0.449049,0.982904,0.483266,0.308938,0.786258,0.470091,0.927732,0.04589,0.950523,0.813199,0.423143,0.504598,0.0607811,0.18034,0.197791,0.495928,0.0298324,0.801703,0.587176,0.502581,0.887896,0.188632,0.418345,0.540762,0.879409,0.577277,0.926118,0.755661,0.90529,0.147538,0.0700249,0.862883,0.192125,0.189891,0.99038,0.0757772,0.772552,0.507972,0.871077,0.447656,0.961228,0.603136,0.00935441,0.214695,0.447231,0.727875,0.118311,0.387149,0.474299,0.315236,0.548213,0.622676,0.604177,0.326077,0.93926,0.222014,0.746487,0.0518551,0.0928362,0.937791,0.278273,0.835898,0.619672,0.202713,0.0222777,0.505321,0.28844,0.37685,0.683847,0.24078,0.633385,0.167402,0.747198,0.237755,0.776028,0.907694,0.883735,0.580726,0.422047,0.442612,0.93136,0.161313,0.373016,0.275539,0.703303,0.891721,0.494102,0.399908,0.988344,0.587041,0.206777,0.708122,0.421497,0.261756,0.20157,0.190456,0.750501,0.366749,0.842932,0.944663,0.989519,0.338706,0.899966,0.750706,0.762843,0.985648,0.0659369,0.364797,0.706225,0.399995,0.160902,0.354917,0.264276,0.315732,0.76938,0.0827067,0.393499,0.145662,0.0538384,0.592834,0.865467,0.702715,0.888235,0.316585,0.753293,0.263976,0.288159,0.226434,0.31759,0.0691092,0.788884,0.162141,0.52092,0.370436,0.946095,0.459969,0.0750983,0.393003,0.472534,0.448516,0.182359,0.650862,0.0338444,0.0262938,0.346448,0.382333,0.161992,0.237837,0.399862,0.192982,0.253117,0.0220199,0.605915,0.485996,0.95735,0.138256,0.681298,0.287037,0.62462,0.624646,0.903505,0.760875,0.489829,0.481376,0.699859,0.646579,0.845505,0.174662,0.163252,0.708116,0.0433389,0.329286,0.490102,0.468045,0.0398372,0.000611901,0.862886,0.878878,0.624436,0.746675,0.232518,0.493878,0.458803,0.134655,0.973091,0.0197498,0.94971,0.804867,0.535146,0.251821,0.309371,0.876306,0.659299,0.28911,0.751052,0.954938,0.799804,0.55482,0.742692,0.509646,0.188794,0.889889,0.460187,0.15821,0.529957,0.592817,0.583085,0.944228,0.474636,0.667619,0.513339,0.633174,0.213179,0.792554,0.919012,0.249759,0.0168443,0.118398,0.811464,0.00598633,0.948803,0.343377,0.638344,0.00973713,0.157689,0.249678,0.944917,0.501577,0.299704,0.045926,0.114752,0.539553,0.5342,0.38375,0.417615,0.602549,0.0772294,0.350903,0.766347,0.0773282,0.395558,0.531924,0.407757,0.988507,0.97134,0.60954,0.395478,0.97315,0.891143,0.0917454,0.782088,0.595363,0.983016,0.734307,0.0970761,0.177295,0.69239,0.223985,0.851701,0.927136,0.204107,0.357654,0.689519,0.467132,0.866085,0.734535,0.200226,0.950544,0.811048,0.449428,0.561721,0.466652,0.382449,0.283427,0.159275,0.908667,0.891953,0.831678,0.608906,0.924784,0.544035,0.413213,0.543307,0.694022,0.712573,0.430195,0.486645,0.88208,0.220096,0.0173913,0.87369,0.198993,0.411128,0.973929,0.838162,0.203647,0.106567,0.0686249,0.764025,0.852073,0.366915,0.378751,0.896991,0.322831,0.608551,0.131385,0.589302,0.28463,0.473463,|0.136912,0.555584,0.939631,0.342859,0.0304136,0.970121,0.628861,0.0808134,0.569442,0.941202,0.208188,0.112324,0.50441,0.806632,0.515917,0.440311,0.239142,0.169537,0.234002,0.119935,0.0780669,0.790834,0.203506,0.0125272,0.0973349,0.624298,0.163348,0.45979,0.205367,0.527629,0.157514,0.0517291,0.381065,0.955822,0.443365,0.341337,0.420667,0.98062,0.515374,0.10645,0.863693,0.936038,0.620384,0.536122,0.548157,0.287437,0.579246,0.190258,0.855592,0.244989,0.686656,0.58867,0.686436,0.548798,0.563479,0.917978,0.533751,0.834004,0.717884,0.295949,0.424975,0.219405,0.672262,0.127549,0.639495,0.819622,0.0705287,0.55282,0.15574,0.040566,0.257828,0.529124,0.106117,0.549984,0.616435,0.0960613,0.463734,0.149919,0.391924,0.0301564,0.865722,0.519097,0.195045,0.699909,0.888474,0.407268,0.430941,0.849036,0.8506,0.776738,0.885868,0.277463,0.190205,0.616267,0.329901,0.0658764,0.751893,0.291344,0.858271,0.170586,0.273088,0.192375,0.352565,0.200472,0.710727,0.274744,0.632814,0.455787,0.166944,0.634574,0.974486,0.215781,0.22889,0.772038,0.00233835,0.0234021,0.265962,0.449076,0.831652,0.00133568,0.30292,0.278722,0.208664,0.842406,0.939694,0.959473,0.416246,0.436466,0.270452,0.491415,0.892782,0.921793,0.570717,0.741819,0.789319,0.167845,0.820422,0.780449,0.805126,0.751787,0.558339,0.514735,0.427153,0.119674,0.37166,0.910695,0.460608,0.421426,0.0868153,0.312831,0.192106,0.154672,0.531236,0.237301,0.380435,0.456252,0.0867823,0.687888,0.910607,0.731626,0.865478,0.193554,0.186009,0.275061,0.409244,0.202105,0.73523,0.498193,0.695724,0.292466,0.244509,0.270884,0.208701,0.390812,0.212485,0.109144,0.515227,0.392339,0.173763,0.518736,0.253141,0.86038,0.250754,0.535237,0.173569,0.229351,0.834208,0.740691,0.60649,0.752385,0.643626,0.757385,0.352234,0.601513,0.35184,0.120909,0.404832,0.237622,0.668401,0.636674,0.984225,0.150284,0.997357,0.5866,0.0687016,0.998927,0.568711,0.0964962,0.625831,0.966274,0.787045,0.693158,0.0755465,0.233213,0.536252,0.422434,0.325584,0.466297,0.905489,0.246172,0.103859,0.739003,0.0703927,0.24018,0.89008,0.744608,0.787674,0.339333,0.270289,0.0598302,0.35756,0.896998,0.728056,0.476121,0.865469,0.687815,0.967107,0.418093,0.264514,0.238761,0.473348,0.179786,0.0148377,0.532905,0.362898,0.465641,0.53967,0.797439,0.123778,0.832424,0.8236,0.0649707,0.296706,0.832131,0.718424,0.162697,0.947126,0.339476,0.798107,0.228701,0.297219,0.71259,0.108943,0.984471,0.450272,0.0761047,0.764567,0.801327,0.888327,0.98565,0.449898,0.0799158,0.230041,0.438963,0.225596,0.260747,0.113323,0.717065,0.236502,0.948632,0.405712,0.608034,0.0117716,0.00954217,0.203254,0.441097,0.656207,0.62042,0.15251,0.186107,0.961761,0.0371137,0.577821,0.212041,0.354362,0.590388,0.307472,0.267123,0.77665,0.586442,0.849234,0.133439,0.826776,0.248753,0.444886,0.2845,0.187076,0.626823,0.649825,0.51282,0.532554,0.636691,0.152819,0.992358,0.954354,0.81359,0.789751,0.653075,0.496199,0.255046,0.912558,0.483065,0.876173,0.593427,0.294676,0.194321,0.353716,0.461698,0.742495,0.978588,0.617568,0.299066,0.313949,0.51639,0.469429,0.914057,0.554433,0.518686,0.525081,0.104416,0.512128,0.0932878,0.785428,0.12128,0.782253,0.369016,0.252997,0.808098,0.211053,0.0112554,0.423975,0.758511,0.158135,0.668037,0.255176,0.971874,0.517181,0.456176,0.55977,0.439448,0.839724,0.432184,0.858445,0.815826,0.888867,0.524725,0.481865,0.159122,0.188698,0.791497,0.529808,0.657678,0.122129,0.121065,0.91639,0.683232,0.477341,0.952633,0.860869,0.843251,0.111368,0.91831,0.0588722,0.669539,0.0670651,0.655883,0.988316,0.648214,0.406174,0.547605,0.338681,0.347302,0.492045,0.196349,0.549407,0.565569,0.671507,0.617718,0.859796,0.499118,0.0129054,0.767601,0.788762,0.571022,0.892529,0.506558,0.019566,0.20115,0.0787142,0.865798,0.571063,0.673237,0.0311137,0.100968,0.132757,0.165184,0.0788841,0.52936,0.0475906,0.351318,0.900368,0.85405,0.600814,0.0199788,0.980894,0.812487,0.675793,0.574087,0.628561,0.0563523,0.93486,0.309719,0.82193,0.112115,0.798197,0.384732,0.94997,0.162111,0.58547,0.911249,0.250942,0.6472,0.716009,0.038477,0.852166,0.409904,0.766621,0.56483,0.75993,0.0940864,0.422477,0.79367,0.468105,0.84306,0.614395,0.878891,0.416647,0.966549,0.138795,0.737049,0.218939,0.842063,0.876714,0.0951929,0.845617,0.716978,0.226806,0.188405,0.368032,0.905577,0.836052,0.688386,0.526532,0.985782,0.694638,0.485796,0.751319,0.795235,0.712177,0.221323,0.210157,0.542013,0.54419,0.848851,0.225691,0.526581,0.970266,0.963485,0.0215026,0.90048,0.251562,0.0449831,0.486242,0.283064,0.798637,0.467395,0.511806,0.0943832,0.0131556,0.61701,0.802817,0.105068,0.996106,0.411676,0.00707889,0.972172,0.877637,0.248372,0.618799,0.217884,0.0194196,0.0111939,0.806365,0.442639,0.610239,0.365473,0.694263,0.0281143,0.735267,0.918165,0.339547,0.0539758,0.00265801,0.0183069,0.755443,0.823094,0.405465,0.936644,0.984039,0.189544,0.352618,0.918978,0.431406,0.45724,0.71544,0.38313,0.688123,0.44662,0.0799549,0.754881,0.766828,0.93094,0.37143,0.0417044,0.361589,0.753936,0.721961,0.0239522,0.90992,0.933478,0.533057,0.0227113,0.495074,0.546284,0.224736,0.135485,0.974212,0.522836,0.526354,0.611652,0.728003,0.515054,0.0555745,0.756725,0.681241,0.284126,0.66125,0.681465,0.659006,0.74007,0.0827308,0.850031,0.573511,0.560623,0.770513,0.886015,0.187934,0.0047009,0.875526,0.905925,0.999115,0.123184,0.572166,0.809174,0.322205,0.813844,0.359315,0.548869,0.174831,0.023441,0.280655,0.630547,0.470678,0.898767,0.0121001,0.248517,0.724667,0.925468,0.143749,0.908966,0.114839,0.564982,0.921897,0.857311,0.777538,0.723288,0.78564,0.75813,0.500274,0.173405,0.846625,0.522671,0.541239,0.641595,0.817226,0.300782,0.261903,0.336055,0.25174,0.117298,0.851286,0.130969,0.546067,0.642042,0.579007,0.272659,0.757701,0.652278,0.552628,0.604143,0.502797,0.0900584,0.0482823,0.867738,0.331995,0.101992,0.679302,0.771619,0.194259,0.554013,0.723598,0.514547,0.122492,0.00342935,0.797385,0.307352,0.865165,0.511357,0.686294,0.519078,0.886038,0.500005,0.696382,0.641531,0.549671,0.529652,0.392288,0.449771,0.919332,0.207611,0.0020054,0.602569,0.384647,0.632998,0.984199,0.205462,0.54903,0.63891,0.763375,0.945341,0.251503,0.242562,0.52508,0.812159,0.271509,0.0248193,0.354102,0.833252,0.177569,0.228794,0.808123,0.0030033,0.433363,0.427287,0.313178,0.057394,0.00948876,0.148566,0.406046,0.686723,0.0834832,0.415246,0.385236,0.827257,0.322214,0.164935,0.531602,0.995666,0.339306,0.0276017,0.656556,0.20635,0.779296,0.0128117,0.621439,0.0735902,0.596797,0.106847,0.748825,0.185183,0.79786,0.300514,0.882378,0.411571,0.122218,0.129405,0.0626261,0.343396,0.399644,0.120735,0.519382,0.86585,0.591955,0.216833,0.692327,0.219396,0.0541443,0.593168,0.39013,0.794706,0.0886089,0.314735,0.767214,0.3731,0.32003,0.62026,0.206868,0.483664,0.464477,0.78841,0.695715,0.0363512,0.438679,0.594375,0.274516,0.104623,0.580334,0.882545,0.37395,0.913907,0.969485,0.0593628,0.980758,0.595364,0.238188,0.0334525,0.946687,0.0562586,0.674547,0.932592,0.310077,0.227477,0.202736,0.774949,0.736383,0.13897,0.0401255,0.453897,0.379265,0.73904,0.493295,0.178389,0.128084,0.786302,0.0209767,0.0515919,0.0266251,0.872476,0.979573,0.36755,0.0830731,0.373981,0.521826,0.945865,0.104764,0.66971,0.986184,0.110767,0.154775,0.897976,0.283974,0.161001,0.189039,0.677487,0.232569,0.771649,0.350809,0.871866,0.352004,0.594251,0.157592,0.235002,0.862398,0.790475,0.808997,0.609624,0.066614,0.295582,0.82608,0.0406126,0.118627,0.511419,0.385147,0.144943,0.265181,0.0451719,0.229145,0.0502456,0.690318,0.684604,0.136353,0.114152,0.863802,0.510613,0.247762,0.710369,0.921859,0.375593,0.242298,0.788399,0.936849,0.125569,0.209682,0.772779,0.889494,0.742366,0.43972,0.686339,0.699936,0.317713,0.522502,0.206582,0.82632,0.228948,0.980329,0.696249,0.875565,0.336895,0.759163,0.670563,0.458528,0.871295,0.0704771,0.733127,0.379935,0.00473464,0.912207,0.846527,0.132255,0.231392,0.634542,0.340845,0.381756,0.176713,0.893345,0.226805,0.0267128,0.865436,0.106494,0.314664,0.424519,0.837576,0.757691,0.697351,0.0650059,0.00320113,0.980504,0.196748,0.910545,0.393814,0.812895,0.145506,0.159312,0.167526,0.669555,0.91848,0.0916166,0.953962,0.181641,0.0895011,0.695752,0.614581,0.0260766,0.0323008,0.626908,0.771518,0.664729,0.261864,0.6414,0.359622,0.563988,0.03899,0.449698,0.11698,0.681993,0.431282,0.990892,0.142541,0.517363,0.422096,0.296266,0.661385,0.783469,0.78084,0.815232,0.12904,0.179935,0.227863,0.948959,0.286852,0.157605,0.360018,0.94951,0.572834,0.12934,0.833144,0.840711,0.705956,0.0867315,0.327359,0.110203,0.0250189,0.873269,0.576233,0.581255,0.746688,0.0760772,0.590528,0.369657,0.276783,0.255928,0.478329,0.506934,0.943496,0.426077,0.0754225,0.623046,0.135956,0.0170982,0.751776,0.97756,0.236309,0.952595,0.68656,0.0600738,0.295658,0.987129,0.857455,0.781141,0.359718,0.383219,0.849725,0.479735,0.438417,0.350036,0.0562379,0.120342,0.462768,0.649522,0.998849,0.836902,0.0444379,0.820193,0.256525,0.255417,0.452014,0.273738,0.176106,0.282218,0.796142,0.882891,0.736204,0.62921,0.198899,0.695375,0.513859,0.731106,0.962167,0.515833,0.371088,0.566367,0.802022,0.525198,0.178248,0.0502501,0.78436,0.278152,0.122573,0.4709,0.854533,|0.00753289,0.910438,0.572378,0.00333226,0.318702,0.890398,0.971375,0.165422,0.337789,0.590723,0.180167,0.243008,0.869574,0.120567,0.989835,0.517653,0.726088,0.836019,0.505971,0.866731,0.735458,0.00555229,0.583659,0.984331,0.629892,0.308348,0.72976,0.744133,0.229498,0.797964,0.0543354,0.236385,0.909469,0.74005,0.535574,0.765532,0.940585,0.557036,0.895938,0.58427,0.857249,0.668989,0.637831,0.546907,0.178729,0.465948,0.696489,0.58985,0.847811,0.448797,0.0175239,0.130502,0.258138,0.737994,0.722416,0.120961,0.958538,0.569674,0.919883,0.322902,0.426362,0.402514,0.846872,0.592899,0.467498,0.742844,0.713893,0.404164,0.134518,0.581537,0.121461,0.986383,0.841609,0.611353,0.939557,0.998006,0.882154,0.970238,0.10841,0.636194,0.220179,0.6989,0.588801,0.675864,0.988464,0.13637,0.646254,0.984797,0.827365,0.859879,0.951742,0.466744,0.164157,0.880687,0.821485,0.268144,0.292496,0.42737,0.0283896,0.950158,0.0209702,0.817806,0.813354,0.107416,0.41885,0.879266,0.0280336,0.262793,0.0846743,0.0600499,0.156209,0.621209,0.61048,0.767693,0.344325,0.7491,0.145685,0.47881,0.689601,0.513695,0.827501,0.973486,0.57781,0.923465,0.0458688,0.376368,0.904842,0.375686,0.76158,0.538186,0.822483,0.929487,0.647191,0.370335,0.822171,0.0549684,0.178988,0.267896,0.26771,0.443453,0.453247,0.768524,0.152065,0.915965,0.486711,0.399941,0.61657,0.0891506,0.140597,0.243223,0.463437,0.856082,0.653303,0.952293,0.611155,0.779769,0.0303641,0.0618109,0.313034,0.940807,0.449854,0.16497,0.365206,0.709098,0.119916,0.703545,0.609714,0.88451,0.929108,0.0917001,0.676283,0.673042,0.554618,0.681931,0.288512,0.524146,0.611594,0.69383,0.405624,0.887158,0.2557,0.325391,0.682125,0.688777,0.433927,0.118819,0.929704,0.583754,0.803759,0.267188,0.0804369,0.131184,0.0281561,0.762235,0.730345,0.216889,0.921173,0.975911,0.900945,0.548698,0.41812,0.97401,0.00667089,0.70931,0.92679,0.294555,0.432268,0.764486,0.265198,0.0349039,0.40056,0.949633,0.453021,0.0792545,0.0990128,0.176324,0.700149,0.703879,0.87506,0.322027,0.538505,0.405132,0.917778,0.894976,0.801437,0.672981,0.87141,0.345425,0.896639,0.480054,0.470495,0.363752,0.810073,0.675052,0.891551,0.627913,0.31851,0.0552599,0.590331,0.230872,0.287802,0.786816,0.0268764,0.410666,0.663962,0.995042,0.797922,0.734239,0.073538,0.545083,0.99618,0.147478,0.116148,0.687054,0.808113,0.715686,0.2566,0.565961,0.714381,0.544397,0.954577,0.202287,0.717856,0.463345,0.162608,0.167806,0.881901,0.122486,0.979451,0.189476,0.670215,0.990597,0.500612,0.496347,0.621331,0.774906,0.337451,0.063507,0.843831,0.283945,0.746746,0.970859,0.751016,0.314587,0.637019,0.298895,0.678053,0.501018,0.21756,0.402162,0.884564,0.549785,0.90072,0.531459,0.388489,0.324875,0.181699,0.771332,0.950988,0.514297,0.922405,0.0314389,0.93612,0.502539,0.669303,0.464229,0.442551,0.0595131,0.908392,0.846769,0.949732,0.076391,0.879299,0.0877374,0.860742,0.0735417,0.30792,0.426239,0.659187,0.473086,0.563513,0.509475,0.846221,0.762591,0.511264,0.175224,0.70536,0.765363,0.7111,0.0344831,0.317005,0.7534,0.132695,0.597812,0.671882,0.125866,0.683998,0.759333,0.260307,0.420384,0.166048,0.0322414,0.762272,0.921326,0.943945,0.681115,0.450999,0.48575,0.645101,0.105093,0.541117,0.837884,0.148216,0.952444,0.192299,0.295675,0.316269,0.260659,0.118004,0.738437,0.479709,0.0582456,0.761438,0.682639,0.946076,0.345278,0.0343617,0.112509,0.373672,0.100745,0.717897,0.287211,0.0839795,0.671423,0.551093,0.154611,0.737702,0.212229,0.366749,0.544106,0.437466,0.226658,0.561712,0.793305,0.485762,0.676748,0.341871,0.195833,0.756936,0.181573,0.324848,0.470908,0.179699,0.919066,0.115006,0.360369,0.0231043,0.702978,0.771887,0.368319,0.336765,0.274346,0.549297,0.41343,0.878471,0.188778,0.479105,0.188507,0.464217,0.0394655,0.296706,0.716355,0.602793,0.180856,0.383504,0.707528,0.000340521,0.706677,0.724033,0.183253,0.597772,0.0542913,0.379193,0.256774,0.360376,0.819182,0.415865,0.560888,0.830774,0.282084,0.0745447,0.863076,0.114713,0.833734,0.528953,0.688216,0.54625,0.656791,0.0877907,0.748338,0.114067,0.236457,0.572808,0.791867,0.862038,0.214015,0.340106,0.272017,0.586748,0.470492,0.432581,0.978576,0.994939,0.344835,0.563364,0.924685,0.283739,0.682834,0.238025,0.00362879,0.601115,0.0963279,0.910103,0.669292,0.840763,0.744168,0.671953,0.821885,0.876984,0.760951,0.245281,0.066303,0.0118278,0.291995,0.518476,0.694376,0.104654,0.585417,0.878333,0.476744,0.0944784,0.244907,0.628808,0.389834,0.714789,0.99018,0.282129,0.665537,0.298648,0.0542073,0.710197,0.987557,0.23397,0.0880294,0.265907,0.536207,0.882509,0.623966,0.763571,0.687515,0.588345,0.970162,0.40945,0.373618,0.241309,0.660781,0.732597,0.524527,0.790818,0.750292,0.873787,0.43384,0.34022,0.952695,0.83578,0.440278,0.385233,0.290186,0.356039,0.0675536,0.525612,0.581968,0.0954791,0.527939,0.879178,0.687455,0.614999,0.195785,0.529147,0.374863,0.486608,0.334468,0.956212,0.37148,0.0295678,0.296293,0.771998,0.489146,0.586675,0.667455,0.439085,0.835793,0.603573,0.27408,0.823225,0.209068,0.795975,0.278974,0.798477,0.597789,0.647084,0.527342,0.626472,0.38573,0.651323,0.394405,0.367315,0.269725,0.0274142,0.893171,0.914703,0.574637,0.31748,0.973596,0.29039,0.625789,0.529905,0.902688,0.203968,0.709053,0.342153,0.772121,0.728732,0.29022,0.534967,0.911533,0.253821,0.505498,0.197385,0.924327,0.888517,0.572617,0.554512,0.946024,0.0200059,0.724248,0.11513,0.494661,0.659203,0.805647,0.179463,0.698746,0.827404,0.374268,0.0668763,0.536883,0.229902,0.391939,0.160012,0.0517325,0.147705,0.0863654,0.498603,0.408555,0.245276,0.820323,0.164436,0.910539,0.48697,0.725575,0.122051,0.962354,0.799199,0.709202,0.201524,0.828781,0.0124891,0.788394,0.0207544,0.0506233,0.982406,0.944621,0.897756,0.681331,0.564977,0.772913,0.0796783,0.209676,0.0942576,0.289437,0.902345,0.350181,0.999537,0.80307,0.931327,0.0545639,0.0186939,0.631697,0.735541,0.217621,0.588118,0.426808,0.502068,0.799996,0.193972,0.815043,0.78033,0.112386,0.0358883,0.134908,0.551117,0.143017,0.980114,0.529495,0.334779,0.24848,0.297575,0.748752,0.638536,0.345847,0.154822,0.279936,0.0626658,0.998316,0.34257,0.744701,0.41059,0.252219,0.668304,0.784819,0.0845858,0.0110545,0.282295,0.526229,0.660423,0.25843,0.960111,0.996681,0.110153,0.255394,0.0822239,0.394497,0.782202,0.675172,0.557509,0.50124,0.420079,0.616258,0.150635,0.557353,0.687244,0.265831,0.058787,0.276304,0.381338,0.759078,0.0251171,0.0237902,0.31443,0.0243907,0.826454,0.441727,0.658139,0.387539,0.584995,0.226446,0.244516,0.928666,0.178318,0.424539,0.409247,0.672051,0.878197,0.377369,0.312181,0.347726,0.109444,0.407213,0.241922,0.178683,0.0294564,0.248546,0.647399,0.478343,0.250394,0.404497,0.168269,0.215576,0.154836,0.2578,0.480608,0.324679,0.540842,0.506101,0.632915,0.354736,0.839897,0.432287,0.512743,0.462437,0.128205,0.859898,0.357824,0.800229,0.927493,0.436679,0.957843,0.0953163,0.0559025,0.488335,0.447506,0.0141746,0.699566,0.0760244,0.784149,0.265141,0.351924,0.83173,0.00213909,0.406054,0.215759,0.716247,0.958947,0.436636,0.413836,0.494961,0.877604,0.837209,0.368153,0.145609,0.592285,0.181982,0.0979552,0.506143,0.611027,0.908548,0.152856,0.913355,0.33792,0.509335,0.30343,0.973014,0.151648,0.0820678,0.55627,0.597697,0.331809,0.56147,0.280847,0.283129,0.122308,0.58551,0.684347,0.523431,0.737303,0.517284,0.922879,0.96134,0.642204,0.612283,0.803686,0.777279,0.0667509,0.368086,0.735793,0.658251,0.659426,0.258308,0.41556,0.673247,0.333926,0.210184,0.156489,0.767295,0.403545,0.0377323,0.539624,0.213689,0.990823,0.152579,0.153731,0.176424,0.812171,0.308418,0.564498,0.356634,0.732924,0.959966,0.326192,0.561718,0.64381,0.901453,0.942589,0.616638,0.995498,0.105781,0.475563,0.0158374,0.483877,0.219106,0.236693,0.092403,0.627468,0.429758,0.839248,0.441638,0.550526,0.881777,0.402584,0.353241,0.823397,0.265467,0.340087,0.476909,0.543541,0.923853,0.63658,0.0466343,0.507561,0.842666,0.671279,0.419533,0.0084756,0.490173,0.455241,0.152679,0.641891,0.401359,0.912435,0.66676,0.426749,0.38091,0.898414,0.815425,0.0478442,0.618217,0.135642,0.380936,0.376865,0.729274,0.774345,0.232657,0.201797,0.779343,0.922161,0.403547,0.897738,0.228023,0.529495,0.680023,0.561236,0.299537,0.558429,0.26494,0.179523,0.733719,0.430642,0.0352951,0.00346941,0.168811,0.989284,0.290304,0.251623,0.110176,0.521104,0.809269,0.566822,0.80582,0.489272,0.0242558,0.764008,0.485025,0.0575264,0.69798,0.21438,0.185094,0.435679,0.0268974,0.476358,0.829547,0.875919,0.80468,0.687137,0.411259,0.499632,0.480114,0.902462,0.641009,0.722876,0.15747,0.0674905,0.394726,0.417601,0.161739,0.876359,0.226084,0.0564113,0.630235,0.0561438,0.660774,0.897257,0.821874,0.417115,0.0962489,0.685349,0.143646,0.213198,0.788804,0.933145,0.698242,0.10849,0.709599,0.951761,0.631282,0.366517,0.27349,0.982306,0.625459,0.0501968,0.0686926,0.888432,0.433489,0.20911,0.787746,0.643097,0.869977,0.459282,0.350774,0.591029,0.663203,0.0564072,0.627522,0.0778386,0.473912,0.747399,0.513421,0.132509,0.664601,0.0112054,0.959924,0.753205,0.330649,0.762978,0.507456,0.964948,0.958358,0.863888,0.936835,0.236436,0.125304,0.0844791,0.368122,0.312569,0.899079,0.861985,0.620934,0.988352,0.244685,0.495571,0.646027,|0.573519,0.479817,0.368527,0.141784,0.210713,0.341748,0.389441,0.486893,0.358163,0.669153,0.914796,0.446166,0.408063,0.391357,0.332662,0.857381,0.439343,0.353485,0.454289,0.720557,0.647849,0.119505,0.448861,0.271045,0.0156386,0.394459,0.547031,0.167355,0.57053,0.852981,0.253296,0.25037,0.937209,0.120697,0.912545,0.990318,0.851307,0.561572,0.490267,0.833561,0.376728,0.638258,0.988793,0.917607,0.3563,0.919228,0.421713,0.328966,0.0699518,0.309034,0.601236,0.744761,0.714917,0.730218,0.321098,0.371354,0.675055,0.0489818,0.376399,0.773308,0.491233,0.478873,0.29932,0.0195298,0.140797,0.569886,0.967479,0.299613,0.978615,0.356902,0.596755,0.788885,0.502175,0.609678,0.966334,0.673301,0.584786,0.94366,0.827545,0.723983,0.285321,0.26401,0.561009,0.137359,0.194143,0.408892,0.0300041,0.704391,0.0921794,0.899401,0.73674,0.018811,0.370113,0.43718,0.438295,0.259879,0.0477319,0.235116,0.904351,0.224867,0.336007,0.130053,0.708554,0.514167,0.105787,0.237827,0.14793,0.254932,0.705739,0.724815,0.942377,0.474184,0.286752,0.361179,0.815549,0.1901,0.790989,0.811804,0.349187,0.430446,0.855539,0.80071,0.349114,0.631787,0.0988188,0.409048,0.467494,0.359419,0.322073,0.802902,0.335306,0.130363,0.127443,0.070235,0.730958,0.0121703,0.147479,0.712962,0.272454,0.482696,0.0667124,0.0310578,0.831621,0.262835,0.251244,0.907415,0.879958,0.410119,0.408097,0.724242,0.620748,0.928848,0.373108,0.925136,0.0728237,0.419084,0.237255,0.280113,0.242995,0.240322,0.28853,0.256929,0.554307,0.526909,0.712675,0.25464,0.993517,0.992835,0.31368,0.719927,0.703064,0.511137,0.154273,0.0136521,0.646321,0.689585,0.0553054,0.858774,0.0841672,0.511239,0.45225,0.0572091,0.567913,0.42164,0.493565,0.758884,0.126355,0.0455803,0.238982,0.135338,0.72996,0.401305,0.453707,0.990452,0.799239,0.395526,0.559118,0.447415,0.51049,0.796754,0.251373,0.4547,0.964183,0.119392,0.851077,0.671825,0.908762,0.656797,0.539229,0.817539,0.340543,0.522704,0.879879,0.513066,0.346599,0.147442,0.166039,0.229075,0.979871,0.784621,0.327455,0.571165,0.889331,0.969064,0.291367,0.748913,0.612787,0.143577,0.715398,0.861858,0.815815,0.387445,0.161297,0.34454,0.12738,0.830794,0.401216,0.513104,0.531581,0.9821,0.388507,0.241051,0.251705,0.956319,0.333979,0.568019,0.0612891,0.283102,0.322204,0.79276,0.318143,0.459823,0.989306,0.463116,0.373268,0.64163,0.285868,0.103933,0.773278,0.570717,0.384424,0.0303177,0.99004,0.697939,0.423349,0.0731775,0.0101334,0.00412077,0.00909007,0.327026,0.116815,0.0347907,0.241984,0.816986,0.83116,0.568942,0.496692,0.904976,0.143753,0.805203,0.53499,0.500118,0.850594,0.833096,0.962952,0.0584185,0.892528,0.0258553,0.343475,0.626471,0.537314,0.107447,0.68446,0.289603,0.489074,0.319834,0.0816644,0.787949,0.114646,0.877911,0.789545,0.114644,0.765462,0.513948,0.290822,0.442286,0.256372,0.746216,0.840435,0.0809976,0.817889,0.237936,0.947513,0.475804,0.183957,0.125338,0.395815,0.121475,0.974843,0.97403,0.656681,0.971332,0.924422,0.184101,0.721994,0.578602,0.570425,0.193651,0.0812923,0.0643617,0.988871,0.414469,0.913212,0.981507,0.787841,0.0156682,0.0201085,0.698421,0.917682,0.763928,0.69182,0.845121,0.35088,0.734072,0.493906,0.394006,0.257042,0.290541,0.516617,0.0437571,0.231956,0.595876,0.506463,0.562166,0.263082,0.178855,0.710039,0.616911,0.478238,0.396811,0.882181,0.301069,0.852262,0.129046,0.54895,0.610947,0.11421,0.697096,0.964704,0.0956872,0.127784,0.232027,0.688017,0.435299,0.407331,0.331648,0.572573,0.0376995,0.434459,0.2293,0.0828468,0.276162,0.660765,0.180186,0.167899,0.926808,0.45561,0.0378959,0.873296,0.934638,0.604157,0.924175,0.589382,0.489551,0.879863,0.690886,0.190921,0.143372,0.106297,0.0610029,0.840702,0.361265,0.883827,0.987876,0.777688,0.467018,0.27292,0.84739,0.653157,0.503685,0.392238,0.00181293,0.377198,0.502421,0.378182,0.541157,0.200038,0.990823,0.501054,0.487046,0.0897982,0.619241,0.751756,0.793957,0.82791,0.0323236,0.00567824,0.896702,0.768405,0.529127,0.61079,0.0858265,0.0503741,0.614133,0.547052,0.103668,0.908501,0.909194,0.42452,0.96579,0.598551,0.490877,0.58989,0.361601,0.703022,0.105391,0.504636,0.158509,0.603934,0.505657,0.840079,0.231276,0.0639542,0.523992,0.080582,0.122567,0.244639,0.106446,0.969252,0.978636,0.0951881,0.0863557,0.245393,0.922791,0.599895,0.2074,0.351619,0.793731,0.184854,0.927123,0.735895,0.119185,0.432051,0.0676776,0.356793,0.283508,0.439134,0.336961,0.155662,0.497307,0.447506,0.770193,0.534406,0.960305,0.41261,0.0743517,0.971691,0.420527,0.434057,0.69883,0.177935,0.679231,0.561466,0.500205,0.246171,0.848566,0.372341,0.137375,0.925818,0.162031,0.764681,0.884603,0.227769,0.511209,0.844911,0.608413,0.276284,0.96715,0.953866,0.140904,0.607195,0.280183,0.624413,0.523143,0.314058,0.575825,0.753639,0.3787,0.737617,0.310045,0.750493,0.186731,0.687823,0.332635,0.769303,0.742848,0.249225,0.842803,0.352718,0.21435,0.661424,0.0999019,0.668266,0.694386,0.864046,0.254486,0.960874,0.0423966,0.481776,0.555654,0.631709,0.61394,0.58548,0.166321,0.37102,0.796909,0.775423,0.405624,0.0144798,0.924753,0.954749,0.0858994,0.939705,0.970818,0.98846,0.887824,0.436917,0.642182,0.427206,0.565873,0.913661,0.940613,0.591873,0.358855,0.952826,0.556611,0.255857,0.129757,0.116786,0.268393,0.303824,0.7519,0.372079,0.79036,0.818375,0.0710393,0.940455,0.375459,0.54482,0.9805,0.539878,0.961146,0.437743,0.272987,0.553422,0.595052,0.830695,0.151629,0.893834,0.274356,0.737455,0.717758,0.768924,0.801862,0.501566,0.39584,0.988986,0.213266,0.746513,0.0547921,0.171204,0.209295,0.856765,0.608582,0.313048,0.709155,0.821874,0.389305,0.613321,0.582935,0.182011,0.0135565,0.239907,0.453369,0.757834,0.55469,0.543059,0.853118,0.119153,0.353351,0.361108,0.626061,0.136564,0.218735,0.879699,0.904145,0.0241995,0.611709,0.827501,0.582031,0.562783,0.0995919,0.545478,0.654233,0.500785,0.0522604,0.193646,0.653132,0.143464,0.880707,0.14664,0.484149,0.177676,0.712313,0.800427,0.56414,0.92579,0.625898,0.968342,0.816579,0.159786,0.88116,0.297669,0.246977,0.058453,0.406117,0.623128,0.324877,0.544976,0.673628,0.0294477,0.90523,0.669469,0.251342,0.298819,0.828465,0.833272,0.473094,0.815521,0.548239,0.477006,0.654092,0.526777,0.0649121,0.29083,0.410464,0.0756841,0.429847,0.772367,0.492927,0.193599,0.88732,0.34104,0.331763,0.254208,0.490196,0.778278,0.790452,0.112316,0.524273,0.400437,0.11724,0.368263,0.610036,0.61751,0.848065,0.528653,0.676412,0.0610278,0.871398,0.618275,0.15255,0.487388,0.453022,0.966538,0.330281,0.997146,0.745257,0.971952,0.229812,0.61123,0.808841,0.348142,0.443591,0.939568,0.925724,0.367071,0.567189,0.84165,0.805932,0.856822,0.526557,0.687502,0.626758,0.677635,0.0360515,0.1475,0.658921,0.447041,0.405602,0.75844,0.555793,0.345425,0.869899,0.560313,0.515095,0.841857,0.747361,0.46786,0.78836,0.609377,0.417026,0.103563,0.86351,0.30666,0.554767,0.369868,0.670075,0.280769,0.441916,0.457764,0.119261,0.0188534,0.573011,0.150572,0.934883,0.0768539,0.994085,0.308744,0.12445,0.56607,0.417623,0.646697,0.842434,0.668405,0.838262,0.315822,0.332835,0.410759,0.962456,0.513105,0.750947,0.613604,0.741408,0.447471,0.131203,0.80949,0.53949,0.477947,0.286602,0.370219,0.0180561,0.891401,0.664173,0.762241,0.299638,0.975376,0.541087,0.491164,0.438356,0.351811,0.00659347,0.427744,0.198306,0.234005,0.366143,0.759194,0.832429,0.289532,0.94921,0.78652,0.972593,0.84483,0.54773,0.480143,0.201819,0.321515,0.138038,0.0755981,0.214843,0.8305,0.852717,0.951125,0.340812,0.222917,0.3716,0.594782,0.62644,0.936105,0.458289,0.436996,0.368782,0.714056,0.203561,0.0949086,0.890433,0.564921,0.767918,0.931143,0.497638,0.156773,0.578697,0.207911,0.059508,0.773121,0.462373,0.383867,0.229047,0.36859,0.181847,0.670674,0.600663,0.374728,0.515084,0.106913,0.51099,0.586613,0.34133,0.354564,0.515526,0.481271,0.598635,0.745253,0.34241,0.488938,0.658143,0.258689,0.570366,0.80958,0.579998,0.934169,0.69127,0.629084,0.727771,0.626758,0.0349374,0.315885,0.322617,0.827676,0.475866,0.356164,0.762476,0.65393,0.647558,0.135954,0.639957,0.260967,0.215903,0.544976,0.401868,0.725338,0.944723,0.760884,0.694064,0.180416,0.138427,0.39757,0.645546,0.0848579,0.43077,0.632201,0.744387,0.973122,0.852142,0.871185,0.597121,0.0352009,0.274291,0.65633,0.197096,0.0522642,0.689931,0.975572,0.0940676,0.805859,0.962216,0.016674,0.498731,0.572776,0.146297,0.810346,0.570684,0.699099,0.636403,0.795538,0.348366,0.0698403,0.0864861,0.512352,0.781064,0.425726,0.723506,0.681327,0.871654,0.529261,0.495826,0.435366,0.186987,0.166487,0.868896,0.441248,0.137296,0.12438,0.191541,0.690037,0.926706,0.373789,0.321638,0.444567,0.821032,0.411247,0.0678502,0.322819,0.980391,0.556168,0.332604,0.640256,0.780838,0.303891,0.912796,0.90691,0.365429,0.772225,0.0592473,0.0782908,0.516335,0.296076,0.577841,0.52571,0.272612,0.523601,0.607388,0.519986,0.919189,0.754337,0.349842,0.000398159,0.929802,0.846962,0.310892,0.860799,0.347051,0.171285,0.471246,0.635825,0.784524,0.640684,0.732167,0.245332,0.790621,0.677528,0.153851,0.85928,0.927793,0.57794,0.585201,0.729982,0.0918043,0.986523,0.679473,0.399407,0.874405,0.580539,0.14438,0.988217,0.72021,0.128591,0.642501,0.451394,0.683694,|0.835136,0.266984,0.252765,0.382344,0.546447,0.746007,0.331705,0.0816426,0.137767,0.385554,0.670819,0.722684,0.0756513,0.0907031,0.322563,0.392756,0.782649,0.163319,0.461956,0.808184,0.6559,0.39919,0.252565,0.652369,0.500301,0.966264,0.529983,0.898299,0.733567,0.648368,0.848862,0.380749,0.0836141,0.884454,0.937893,0.572661,0.776567,0.271157,0.729515,0.601438,0.917432,0.490428,0.593282,0.0983067,0.31777,0.332997,0.885185,0.180076,0.682172,0.107536,0.0304191,0.43641,0.425819,0.102013,0.0813698,0.157961,0.178101,0.161479,0.822652,0.940757,0.60726,0.977698,0.228977,0.731123,0.297912,0.100574,0.417463,0.908854,0.0343239,0.980914,0.600609,0.714379,0.279093,0.541898,0.484535,0.27669,0.714843,0.682864,0.116291,0.719289,0.331132,0.301791,0.643905,0.203124,0.0960882,0.348095,0.901275,0.0652279,0.587953,0.792248,0.165883,0.491811,0.862328,0.322536,0.401647,0.834552,0.495645,0.015411,0.53621,0.795469,0.522707,0.830411,0.269406,0.205734,0.912124,0.128106,0.731939,0.804713,0.0547007,0.846839,0.0357057,0.190985,0.224211,0.0636696,0.810438,0.634,0.774735,0.948918,0.216022,0.0844367,0.803174,0.0396413,0.196935,0.761887,0.294745,0.0635883,0.80418,0.0706786,0.00487131,0.910628,0.894579,0.425063,0.563568,0.951093,0.142526,0.0794539,0.619739,0.0410766,0.258843,0.722456,0.13737,0.300239,0.0296074,0.394025,0.0373356,0.224097,0.805416,0.786288,0.460675,0.36263,0.0492624,0.339151,0.0456324,0.241734,0.726713,0.449215,0.181027,0.00644886,0.26929,0.432606,0.130214,0.0503944,0.92217,0.301452,0.666738,0.887061,0.290314,0.81954,0.237179,0.878862,0.705437,0.819081,0.126613,0.357339,0.531629,0.617665,0.763011,0.473782,0.218568,0.551154,0.228569,0.218029,0.364308,0.327206,0.159817,0.845738,0.661531,0.831175,0.951139,0.188736,0.318198,0.38804,0.704364,0.442283,0.546021,0.196005,0.79156,0.208391,0.150097,0.605014,0.754112,0.268524,0.330809,0.505369,0.959941,0.521231,0.0397113,0.506828,0.508488,0.391643,0.310919,0.303208,0.12291,0.945916,0.794736,0.707734,0.813487,0.162556,0.854585,0.636391,0.213184,0.537566,0.867595,0.565639,0.343145,0.723423,0.00965744,0.874268,0.326334,0.789508,0.541189,0.0811219,0.45235,0.508177,0.320781,0.584205,0.769207,0.852058,0.924595,0.317452,0.971712,0.846555,0.806156,0.578022,0.491271,0.907413,0.335579,0.465947,0.680796,0.186237,0.575951,0.221725,0.550395,0.923433,0.86346,0.489526,0.762595,0.300115,0.599802,0.709356,0.90701,0.316779,0.929488,0.538492,0.160827,0.455391,0.720514,0.56467,0.939348,0.115774,0.719266,0.308683,0.212203,0.865309,0.500083,0.998382,0.511784,0.200719,0.512292,0.571286,0.507871,0.25852,0.260106,0.183523,0.478881,0.262255,0.962165,0.587661,0.804601,0.323527,0.930006,0.998599,0.698456,0.261368,0.9212,0.280743,0.233242,0.488931,0.387338,0.826227,0.847013,0.042562,0.400821,0.241154,0.854098,0.138412,0.180903,0.595634,0.251167,0.0785573,0.165949,0.713631,0.126794,0.861396,0.108778,0.693512,0.29374,0.0789217,0.379336,0.97461,0.190011,0.0637549,0.755513,0.765077,0.624464,0.108954,0.891271,0.175688,0.722187,0.0279841,0.648097,0.13248,0.0259037,0.217853,0.945844,0.823439,0.582138,0.737495,0.0621551,0.649212,0.891845,0.340422,0.355114,0.143666,0.741106,0.112129,0.253469,0.936916,0.91959,0.97996,0.804986,0.368802,0.533111,0.178993,0.0531273,0.0731162,0.914913,0.399895,0.732577,0.23128,0.848756,0.954894,0.156938,0.0273619,0.267732,0.90387,0.218662,0.769697,0.958501,0.953445,0.971113,0.295884,0.705188,0.7902,0.211748,0.31572,0.338298,0.189311,0.694678,0.923531,0.835388,0.00967211,0.900835,0.828656,0.552551,0.816124,0.720379,0.228787,0.467017,0.29463,0.678033,0.287186,0.492804,0.473453,0.0593143,0.470151,0.409069,0.283211,0.428238,0.215541,0.389788,0.821411,0.283511,0.0393921,0.825137,0.766566,0.733251,0.256473,0.933327,0.0238358,0.775414,0.470295,0.81841,0.867311,0.181042,0.370203,0.174294,0.941275,0.215028,0.78899,0.256333,0.0416689,0.772799,0.469113,0.464159,0.182364,0.672365,0.618835,0.917576,0.0520973,0.666432,0.752208,0.0802319,0.743013,0.0956846,0.375563,0.866058,0.702488,0.991789,0.651897,0.656928,0.888758,0.152689,0.663841,0.71549,0.857354,0.585234,0.613119,0.286909,0.183091,0.487118,0.344735,0.795955,0.616774,0.0903108,0.483031,0.796786,0.0715784,0.183616,0.733692,0.429947,0.646834,0.256343,0.397858,0.706423,0.982187,0.162701,0.997256,0.811771,0.924766,0.673534,0.237444,0.693295,0.449872,0.443113,0.995721,0.101068,0.727293,0.195977,0.780592,0.381149,0.0405078,0.946183,0.249682,0.817652,0.344248,0.367985,0.7675,0.402663,0.858945,0.799495,0.643092,0.781491,0.983945,0.555974,0.422027,0.517686,0.0971944,0.00981534,0.593027,0.186904,0.3689,0.82767,0.599308,0.221118,0.773289,0.665666,0.138598,0.128892,0.61877,0.104681,0.445334,0.211807,0.874056,0.277839,0.417683,0.00612277,0.995303,0.54078,0.675312,0.722415,0.26112,0.916402,0.391411,0.182249,0.215933,0.437749,0.143611,0.385899,0.676221,0.803741,0.0199497,0.479368,0.637308,0.487298,0.340043,0.537344,0.414589,0.922754,0.309134,0.31462,0.162733,0.665307,0.251436,0.662475,0.0791669,0.943261,0.165767,0.854376,0.0797983,0.412356,0.403303,0.862445,0.053524,0.77751,0.501463,0.344138,0.489954,0.751019,0.992245,0.557552,0.859286,0.873549,0.864378,0.188163,0.211821,0.937165,0.478433,0.794867,0.213375,0.220144,0.545716,0.682296,0.747381,0.243591,0.763025,0.475106,0.759185,0.676727,0.578449,0.923429,0.0741051,0.275605,0.0853302,0.353201,0.351999,0.980438,0.29584,0.100599,0.514706,0.618743,0.544471,0.314398,0.325591,0.771654,0.67838,0.907137,0.610533,0.110473,0.142512,0.452298,0.1798,0.558693,0.0939358,0.63739,0.962866,0.0397581,0.954534,0.878401,0.0349145,0.600539,0.960963,0.0358403,0.360932,0.846292,0.742483,0.250765,0.0989428,0.425603,0.672461,0.734808,0.754962,0.885461,0.71763,0.000720799,0.727884,0.103194,0.0961773,0.823826,0.336838,0.397479,0.0405152,0.681675,0.915559,0.76342,0.243405,0.0348026,0.539775,0.422037,0.868529,0.208405,0.963992,0.785188,0.884642,0.619702,0.234925,0.695377,0.342301,0.418178,0.592291,0.584297,0.921664,0.0908127,0.0134419,0.251344,0.627283,0.201452,0.581852,0.234704,0.304061,0.558523,0.244826,0.423134,0.914917,0.881331,0.474403,0.794079,0.473883,0.556169,0.16506,0.484754,0.683443,0.537636,0.627467,0.879904,0.161334,0.466592,0.0809969,0.463692,0.163083,0.329946,0.822856,0.121151,0.602301,0.357583,0.433255,0.730329,0.372897,0.872874,0.205275,0.474485,0.543049,0.678344,0.759632,0.191696,0.0103359,0.509741,0.220006,0.00366348,0.0457328,0.365065,0.569212,0.779615,0.967027,0.513675,0.13131,0.998579,0.704187,0.863501,0.123237,0.304585,0.0907278,0.120945,0.691169,0.774419,0.0369011,0.801973,0.518835,0.206807,0.545526,0.359624,0.517658,0.62615,0.330734,0.955908,0.0530574,0.327981,0.848881,0.0656441,0.122031,0.609709,0.253718,0.664025,0.236368,0.620315,0.295624,0.757757,0.386935,0.44598,0.0431739,0.569884,0.909475,0.945787,0.298639,0.948238,0.433984,0.84543,0.012812,0.093399,0.675969,0.1297,0.762823,0.771787,0.5446,0.828114,0.268385,0.366247,0.505307,0.0011121,0.421502,0.0984452,0.390239,0.74086,0.448657,0.265168,0.368129,0.729019,0.223152,0.371544,0.952256,0.934444,0.121728,0.31875,0.334645,0.375593,0.558072,0.403011,0.0309286,0.191083,0.648066,0.927125,0.992124,0.664915,0.736816,0.178314,0.370706,0.256847,0.0886214,0.135755,0.888266,0.40696,0.313919,0.203693,0.900606,0.531994,0.288351,0.851821,0.498537,0.327855,0.647613,0.785374,0.836226,0.0666512,0.985138,0.958222,0.830979,0.246328,0.150654,0.714936,0.582425,0.559546,0.170264,0.18587,0.365595,0.491916,0.393403,0.674443,0.940998,0.106888,0.536981,0.861544,0.570056,0.616851,0.541414,0.378249,0.255942,0.764775,0.435266,0.683586,0.268366,0.435789,0.312522,0.426818,0.297614,0.991339,0.121801,0.787118,0.180152,0.49939,0.686607,0.665263,0.201093,0.170253,0.0511591,0.276724,0.631979,0.894391,0.970484,0.945696,0.306457,0.863525,0.0429283,0.826992,0.510788,0.801493,0.187703,0.222148,0.321567,0.0626748,0.387192,0.56626,0.821045,0.784589,0.586158,0.872708,0.533771,0.916398,0.353203,0.122532,0.195551,0.372811,0.677182,0.080902,0.925811,0.462947,0.583891,0.329047,0.91807,0.0825755,0.277269,0.440494,0.123169,0.867394,0.0766968,0.232232,0.445333,0.985152,0.943845,0.200828,0.84663,0.860505,0.997663,0.757761,0.047529,0.351994,0.812278,0.927392,0.31744,0.682042,0.0612181,0.946163,0.597937,0.977663,0.612484,0.066793,0.416335,0.830876,0.518345,0.958615,0.996481,0.423679,0.354314,0.961645,0.770751,0.102999,0.472007,0.337302,0.499371,0.0133988,0.230346,0.0891366,0.618542,0.0803486,0.479547,0.981053,0.212139,0.328199,0.361354,0.854386,0.773907,0.731234,0.140206,0.125798,0.34477,0.613874,0.425213,0.434802,0.130942,0.72487,0.573635,0.442735,0.13976,0.234208,0.988744,0.347468,0.163998,0.165644,0.754776,0.884171,0.222853,0.408986,0.0684158,0.0230539,0.038288,0.741765,0.631465,0.138889,0.778891,0.790898,0.284654,0.91837,0.615978,0.824487,0.823673,0.0205384,0.0622253,0.872956,0.419611,0.658053,0.655701,0.803883,0.817256,0.715513,0.184371,0.486544,0.376279,0.459494,0.906843,0.0236159,0.0826881,0.838143,0.973345,0.588225,0.552753,0.825771,0.119171,0.796962,0.370629,0.185006,0.396108,0.421534,0.839066,0.773748,0.517784,0.259736,0.782944,0.583454,0.0219366,0.355683,0.837796,|0.314953,0.473839,0.280382,0.492795,0.365242,0.179746,0.107106,0.761303,0.54403,0.320147,0.425561,0.537392,0.983171,0.848213,0.896385,0.184588,0.877187,0.903338,0.158629,0.0737577,0.487288,0.984413,0.356312,0.544055,0.931466,0.0276871,0.308731,0.990376,0.201381,0.255211,0.813682,0.133363,0.703329,0.819894,0.27732,0.172287,0.48,0.828595,0.60148,0.824718,0.758741,0.355148,0.0474979,0.235495,0.757566,0.869324,0.170043,0.495585,0.530018,0.400736,0.717574,0.114938,0.948571,0.489903,0.939688,0.0250555,0.705007,0.623624,0.224609,0.323908,0.143285,0.51708,0.677424,0.340308,0.72679,0.379696,0.0712805,0.967318,0.57345,0.44016,0.218266,0.441507,0.427002,0.525036,0.444798,0.825821,0.659382,0.266007,0.327093,0.42517,0.760354,0.479839,0.220823,0.791149,0.196528,0.439217,0.107718,0.755505,0.471843,0.342864,0.987766,0.394111,0.799962,0.210441,0.214091,0.587752,0.876144,0.556613,0.114681,0.936964,0.624733,0.0217865,0.461635,0.231986,0.501374,0.0203153,0.169562,0.268703,0.645305,0.36036,0.103901,0.391395,0.383009,0.574165,0.00207675,0.955477,0.221648,0.509453,0.034979,0.205918,0.574307,0.794069,0.0510033,0.623376,0.631165,0.815741,0.586667,0.694322,0.957663,0.616871,0.589053,0.0359381,0.0825341,0.648584,0.88525,0.0890926,0.522886,0.107599,0.800456,0.757039,0.496324,0.288041,0.659824,0.655635,0.951124,0.990647,0.731073,0.424,0.234024,0.972707,0.450843,0.961355,0.0477876,0.563912,0.670535,0.411024,0.872513,0.186944,0.427024,0.172743,0.351115,0.242378,0.657687,0.304404,0.650161,0.0401127,0.108219,0.897146,0.662725,0.0679886,0.440533,0.975596,0.533248,0.501725,0.685979,0.88356,0.713294,0.338381,0.326165,0.541828,0.9146,0.811069,0.853445,0.866304,0.460096,0.44208,0.863125,0.882992,0.345947,0.994454,0.64716,0.847571,0.552393,0.185177,0.483312,0.802401,0.469766,0.677565,0.719698,0.711216,0.249302,0.358995,0.883509,0.401847,0.956764,0.931879,0.354484,0.998981,0.585953,0.214199,0.383743,0.241286,0.277399,0.770389,0.606413,0.79893,0.817875,0.908663,0.252205,0.58113,0.469819,0.794875,0.739778,0.175083,0.832747,0.385087,0.681284,0.304416,0.974882,0.352793,0.284364,0.109302,0.874901,0.576475,0.735423,0.452046,0.864501,0.320264,0.390226,0.957261,0.914198,0.494603,0.109652,0.250602,0.945,0.0818819,0.695123,0.607099,0.756206,0.529499,0.442773,0.526986,0.351566,0.439103,0.0432234,0.840097,0.165367,0.818307,0.662215,0.600265,0.248642,0.691014,0.993004,0.669682,0.714541,0.411536,0.396363,0.461798,0.454564,0.692858,0.995691,0.647218,0.966226,0.472197,0.0367216,0.174785,0.548208,0.442958,0.359708,0.149265,0.883568,0.965531,0.308939,0.518928,0.942919,0.919806,0.0267792,0.0603256,0.716211,0.913066,0.275695,0.902726,0.265573,0.962427,0.358786,0.535789,0.539568,0.541076,0.670481,0.682711,0.15226,0.447097,0.910246,0.93308,0.110775,0.996062,0.527192,0.218451,0.447533,0.676559,0.166997,0.982831,0.717673,0.740349,0.0190477,0.899086,0.360121,0.887831,0.00342309,0.849154,0.595569,0.940727,0.149822,0.220977,0.0700561,0.328258,0.675321,0.456193,0.584234,0.451763,0.260933,0.905717,0.32572,0.409186,0.380216,0.354287,0.605287,0.115567,0.828471,0.476946,0.207697,0.659621,0.552767,0.775778,0.516731,0.249414,0.303983,0.68312,0.664585,0.31664,0.971519,0.887792,0.394357,0.288964,0.00599754,0.768727,0.577344,0.41,0.90337,0.298894,0.171461,0.141237,0.609024,0.315232,0.17703,0.360745,0.50446,0.282437,0.0565237,0.292778,0.932863,0.522004,0.123369,0.127148,0.296354,0.471076,0.887495,0.571359,0.270196,0.183337,0.996758,0.272641,0.988012,0.371519,0.120258,0.0920659,0.546993,0.868458,0.798511,0.752885,0.0721473,0.15443,0.614831,0.190451,0.640894,0.656845,0.673766,0.304976,0.0654821,0.918222,0.202366,0.82539,0.253914,0.732902,0.368808,0.657147,0.943058,0.940047,0.59954,0.495,0.493719,0.954245,0.447613,0.425153,0.571923,0.0309771,0.346696,0.856109,0.303513,0.425794,0.109305,0.709422,0.435316,0.928474,0.76936,0.16876,0.06832,0.0105657,0.361142,0.828718,0.794697,0.523862,0.629216,0.012908,0.150805,0.419475,0.659004,0.567355,0.217493,0.610603,0.196717,0.336829,0.979598,0.790144,0.691783,0.742091,0.317468,0.305506,0.429888,0.84139,0.194737,0.132707,0.09521,0.0316209,0.0143656,0.116701,0.443304,0.505205,0.839575,0.943267,0.468638,0.657133,0.00265586,0.13868,0.0116168,0.502188,0.474222,0.973573,0.234429,0.923701,0.898859,0.0018121,0.370616,0.110357,0.302053,0.640474,0.998722,0.0324096,0.592186,0.244042,0.544492,0.149656,0.0700068,0.281796,0.688676,0.565162,0.187264,0.810802,0.647471,0.478811,0.915461,0.340852,0.19025,0.00543404,0.289401,0.333262,0.10449,0.48849,0.740743,0.975241,0.116328,0.166251,0.991171,0.475035,0.504277,0.417837,0.918977,0.498675,0.466731,0.203636,0.966301,0.753053,0.867241,0.887867,0.373083,0.136823,0.141806,0.622185,0.806934,0.791869,0.320387,0.185787,0.0629018,0.674432,0.365365,0.824466,0.789075,0.907098,0.850883,0.739918,0.940439,0.86823,0.846325,0.176588,0.574138,0.991453,0.237024,0.255107,0.188901,0.0547484,0.0685465,0.961195,0.285133,0.471874,0.802036,0.494013,0.827376,0.70408,0.491262,0.770708,0.611133,0.834376,0.625233,0.831215,0.145784,0.653322,0.290289,0.437595,0.959826,0.0706156,0.92521,0.296155,0.240723,0.85226,0.146445,0.913292,0.593889,0.0925317,0.21911,0.854246,0.825178,0.512815,0.400905,0.532747,0.835407,0.204616,0.387736,0.40945,0.346334,0.868597,0.242235,0.125938,0.946888,0.442208,0.442251,0.491058,0.120664,0.736103,0.0612422,0.22357,0.0822635,0.0150655,0.696826,0.132472,0.798803,0.0531844,0.852859,0.0308551,0.181787,0.796371,0.483938,0.900408,0.0976549,0.579739,0.893864,0.150869,0.430431,0.226256,0.694349,0.643932,0.223879,0.189167,0.363278,0.706176,0.0353609,0.226516,0.424478,0.774575,0.188745,0.209025,0.658433,0.696022,0.667891,0.142726,0.951852,0.302342,0.725119,0.0852498,0.103434,0.686723,0.73433,0.103286,0.970667,0.593475,0.989157,0.157748,0.69244,0.687565,0.684893,0.65829,0.0423515,0.910024,0.720501,0.0795293,0.41394,0.805413,0.98052,0.381184,0.672677,0.641175,0.912462,0.447905,0.55154,0.0929968,0.165743,0.790423,0.770272,0.375303,0.0528317,0.0498794,0.434972,0.850182,0.328578,0.710315,0.702709,0.727526,0.15071,0.822833,0.868478,0.22053,0.0125265,0.490011,0.328,0.490866,0.029316,0.708986,0.897162,0.0818354,0.779294,0.941122,0.715041,0.133503,0.122851,0.951326,0.568738,0.262571,0.416582,0.446099,0.144025,0.643835,0.0417176,0.507171,0.827368,0.537113,0.386106,0.641252,0.552409,0.858994,0.079703,0.46991,0.663719,0.625933,0.932472,0.545309,0.506724,0.96091,0.773031,0.159318,0.781417,0.528647,0.219391,0.796976,0.910812,0.548148,0.285185,0.0813918,0.00327462,0.125355,0.9269,0.230188,0.0209812,0.712601,0.754807,0.586306,0.463288,0.294248,0.800511,0.9251,0.376535,0.374421,0.457502,0.909876,0.567355,0.327212,0.210729,0.455232,0.491612,0.57604,0.685555,0.342165,0.477204,0.295947,0.472698,0.589661,0.27512,0.650681,0.30203,0.195161,0.314664,0.74188,0.392974,0.206399,0.735314,0.00684905,0.857758,0.497681,0.687645,0.991646,0.792391,0.953073,0.262398,0.70025,0.133132,0.00414723,0.51613,0.838591,0.77925,0.9019,0.836371,0.749023,0.364609,0.669049,0.698681,0.388442,0.694373,0.979686,0.832341,0.646741,0.232902,0.246488,0.797628,0.288144,0.893504,0.795861,0.72338,0.420397,0.851493,0.840296,0.903288,0.714568,0.585362,0.824801,0.309823,0.0996758,0.958019,0.120017,0.170991,0.279226,0.913419,0.21626,0.961135,0.595227,0.98329,0.499945,0.0468011,0.600819,0.715351,0.393026,0.869929,0.345206,0.823303,0.350133,0.620905,0.292527,0.608338,0.434442,0.734312,0.66619,0.103483,0.631533,0.829385,0.573105,0.377042,0.211048,0.271809,0.389575,0.0816111,0.229108,0.633784,0.0221782,0.304693,0.0057826,0.328191,0.429777,0.371457,0.29064,0.351323,0.154608,0.467742,0.928148,0.515919,0.132898,0.0160015,0.815065,0.00413728,0.360549,0.598314,0.667581,0.455736,0.713432,0.039714,0.0957922,0.601162,0.696266,0.396477,0.0520291,0.239641,0.677192,0.091983,0.643174,0.775943,0.914349,0.335673,0.293181,0.532066,0.645922,0.0455675,0.350676,0.19329,0.306675,0.304013,0.674462,0.854647,0.167496,0.954752,0.0676528,0.408805,0.710852,0.987311,0.389865,0.266436,0.5986,0.493102,0.693111,0.0423977,0.807748,0.282152,0.670617,0.24144,0.340604,0.534949,0.322315,0.13098,0.10074,0.0160698,0.439259,0.584194,0.207319,0.52395,0.152735,0.641199,0.142441,0.885364,0.799967,0.156858,0.927258,0.20066,0.14132,0.680197,0.671432,0.0479874,0.14154,0.545712,0.316242,0.977056,0.193611,0.80566,0.522289,0.115687,0.0949548,0.903439,0.510578,0.214506,0.848566,0.892436,0.754051,0.627952,0.114681,0.956647,0.361965,0.405815,0.480159,0.793707,0.1755,0.846652,0.817376,0.815356,0.179804,0.929765,0.00493038,0.475853,0.607654,0.0560281,0.00983942,0.0881395,0.144018,0.975532,0.847371,0.269978,0.669207,0.0976526,0.408402,0.714997,0.684502,0.410696,0.180098,0.492276,0.522696,0.291019,0.951157,0.228958,0.286318,0.561634,0.419331,0.743278,0.763788,0.218455,0.0958685,0.335719,0.355379,0.210846,0.889252,0.891833,0.196581,0.312472,0.0720478,0.378785,0.0960405,0.951607,0.931513,0.391487,0.394666,0.856352,0.0662844,0.857049,0.889781,0.501883,0.703905,0.894284,0.141352,0.990949,0.743677,0.0531283,0.899861,0.0360816,0.465694,0.00442827,0.920853,0.518406,0.857098,|0.852404,0.143076,0.605471,0.863807,0.951189,0.253193,0.573547,0.552455,0.599139,0.733278,0.140589,0.0425349,0.0782688,0.158939,0.505001,0.230335,0.157052,0.093025,0.524224,0.602525,0.728339,0.346267,0.899046,0.349006,0.548363,0.0439157,0.726041,0.192675,0.0111092,0.5306,0.879257,0.544662,0.572811,0.863092,0.194298,0.874537,0.551054,0.625328,0.821831,0.955497,0.305133,0.995378,0.819052,0.68732,0.49733,0.625349,0.621843,0.0190353,0.201619,0.751704,0.445033,0.28254,0.319181,0.0869709,0.945802,0.447928,0.556203,0.301304,0.937245,0.489294,0.28832,0.278974,0.408427,0.410264,0.928995,0.348196,0.591298,0.205943,0.492021,0.905092,0.548117,0.375048,0.598055,0.268902,0.400508,0.0232403,0.0441626,0.0905541,0.365717,0.160466,0.165305,0.109447,0.114189,0.868651,0.52525,0.725274,0.905153,0.0970998,0.289391,0.683434,0.70995,0.897506,0.702007,0.272802,0.765435,0.41152,0.677996,0.525248,0.210189,0.0115169,0.553483,0.894849,0.163554,0.80127,0.16229,0.458117,0.973494,0.00341803,0.409553,0.263555,0.645696,0.295036,0.143865,0.738852,0.300477,0.791629,0.100889,0.180649,0.199051,0.420341,0.663051,0.596963,0.187892,0.053283,0.963533,0.00728434,0.0708119,0.510894,0.632838,0.779443,0.549577,0.384845,0.980394,0.79249,0.783243,0.75127,0.727155,0.0683106,0.41751,0.0969023,0.359398,0.129052,0.053005,0.318309,0.629297,0.871029,0.0739336,0.578674,0.735995,0.93633,0.0934137,0.191238,0.46323,0.0528129,0.471485,0.434514,0.429812,0.398437,0.565318,0.112779,0.810245,0.841107,0.43219,0.68168,0.477175,0.879478,0.643178,0.572905,0.74398,0.150189,0.865445,0.38722,0.92716,0.356191,0.776858,0.894632,0.424568,0.829548,0.984784,0.728298,0.104999,0.873447,0.215253,0.9735,0.183431,0.164256,0.409426,0.781184,0.0666515,0.645962,0.187665,0.217345,0.922477,0.194578,0.997997,0.815101,0.61513,0.583693,0.116139,0.453981,0.8597,0.942141,0.236447,0.276297,0.366007,0.14794,0.712045,0.743744,0.967895,0.85201,0.246757,0.764239,0.553317,0.442381,0.573759,0.18825,0.234282,0.601972,0.554846,0.302701,0.690698,0.484901,0.239374,0.119522,0.129032,0.145425,0.124547,0.691136,0.288441,0.70009,0.541642,0.514283,0.036447,0.479554,0.922948,0.463161,0.380496,0.190998,0.454664,0.699158,0.589288,0.138841,0.873574,0.819655,0.329047,0.410907,0.203231,0.327198,0.184977,0.54288,0.924,0.825807,0.910821,0.0104784,0.981119,0.818412,0.802457,0.584387,0.658385,0.18555,0.286262,0.626449,0.338429,0.818292,0.245315,0.53446,0.151727,0.796987,0.454144,0.590949,0.392609,0.586031,0.60951,0.040054,0.844158,0.859445,0.981619,0.0706427,0.958837,0.293965,0.833586,0.383997,0.379663,0.283324,0.210308,0.124636,0.252151,0.674598,0.541284,0.413024,0.670891,0.052361,0.556914,0.0985209,0.800959,0.564324,0.965212,0.57343,0.332623,0.375178,0.418935,0.998311,0.280528,0.0768148,0.138528,0.314211,0.90603,0.807823,0.1887,0.0682569,0.698616,0.357879,0.381249,0.965829,0.344404,0.62267,0.488771,0.506638,0.0659862,0.671912,0.0030548,0.347537,0.648677,0.966257,0.182082,0.0300179,0.887262,0.53707,0.809782,0.585838,0.183274,0.72711,0.547616,0.678328,0.236124,0.43171,0.129095,0.556834,0.957387,0.600647,0.5448,0.581152,0.201141,0.15766,0.295957,0.390891,0.154677,0.730459,0.129584,0.376976,0.523073,0.27933,0.572041,0.678492,0.624581,0.585563,0.314688,0.617592,0.156829,0.700483,0.783506,0.602843,0.482977,0.157895,0.344915,0.582589,0.0417297,0.754617,0.0896806,0.687784,0.502936,0.504969,0.161318,0.690189,0.376796,0.418148,0.435391,0.337745,0.636765,0.929118,0.339394,0.274403,0.213298,0.0706299,0.578472,0.502679,0.534035,0.70473,0.483374,0.574543,0.214776,0.493161,0.663709,0.285011,0.739886,0.413329,0.425792,0.44351,0.117727,0.846647,0.693862,0.691763,0.628308,0.378376,0.84279,0.425027,0.264613,0.200687,0.594449,0.680599,0.892545,0.364447,0.173011,0.957884,0.172521,0.258714,0.42932,0.703125,0.990532,0.0104872,0.359377,0.416734,0.757093,0.28057,0.551633,0.0620329,0.773203,0.848582,0.247766,0.874323,0.243263,0.281502,0.0636276,0.650104,0.745619,0.649573,0.699283,0.133147,0.0730224,0.649787,0.598872,0.223714,0.969927,0.153837,0.737303,0.355835,0.0921495,0.478306,0.573941,0.226422,0.334362,0.436275,0.684207,0.874476,0.661832,0.951412,0.75052,0.0488917,0.572791,0.068027,0.0548069,0.802779,0.359275,0.325256,0.95201,0.0850386,0.301833,0.334269,0.0653253,0.500916,0.0604543,0.56722,0.0331277,0.0874282,0.728218,0.580024,0.81221,0.652823,0.501293,0.197434,0.131845,0.950547,0.774138,0.494089,0.435392,0.309629,0.498002,0.0872723,0.816297,0.888133,0.927446,0.753188,0.647747,0.314225,0.322618,0.0021286,0.816162,0.329104,0.335162,0.614009,0.868258,0.186401,0.218255,0.231922,0.828745,0.712549,0.333101,0.583449,0.237359,0.237885,0.0131969,0.664747,0.915201,0.896098,0.509449,0.0669318,0.347396,0.284368,0.788506,0.0827867,0.367555,0.957021,0.727985,0.983713,0.674628,0.350814,0.921499,0.00910318,0.0752811,0.917978,0.714186,0.788707,0.76949,0.807206,0.613397,0.804713,0.958889,0.38567,0.606821,0.933638,0.50944,0.119499,0.195709,0.293175,0.0209901,0.922376,0.48933,0.685218,0.0983804,0.197449,0.711524,0.467172,0.475965,0.781202,0.404525,0.236128,0.469356,0.356986,0.0379089,0.327913,0.599314,0.170135,0.749655,0.39444,0.543562,0.685117,0.41819,0.827805,0.303425,0.356987,0.836628,0.233666,0.259683,0.73489,0.763549,0.544013,0.500449,0.11584,0.0863682,0.740701,0.615868,0.382318,0.887382,0.518619,0.862923,0.606309,0.633029,0.784217,0.930389,0.56289,0.696417,0.0830913,0.813919,0.667654,0.441435,0.539212,0.085202,0.514325,0.284603,0.387315,0.743625,0.0573618,0.613407,0.0310847,0.928117,0.473314,0.885824,0.842364,0.273588,0.0449935,0.941626,0.485414,0.34495,0.917794,0.694801,0.423273,0.129019,0.104494,0.659602,0.387142,0.610145,0.82628,0.577145,0.0279633,0.830893,0.980467,0.757414,0.909109,0.207818,0.103447,0.405893,0.287273,0.506921,0.0406882,0.123809,0.728213,0.195218,0.462134,0.29357,0.883837,0.966317,0.33803,0.512996,0.93047,0.901577,0.10512,0.0553661,0.438781,0.0178727,0.585836,0.114001,0.322522,0.958835,0.839879,0.576598,0.279678,0.993865,0.536013,0.514102,0.89897,0.545216,0.256466,0.99724,0.993787,0.860253,0.583804,0.771543,0.319062,0.32191,0.50206,0.239199,0.0330682,0.150433,0.806326,0.990766,0.543704,0.352673,0.894545,0.375214,0.332362,0.615715,0.20825,0.57562,0.418878,0.480127,0.82736,0.240344,0.797806,0.12469,0.101844,0.385864,0.587535,0.645339,0.0618997,0.97586,0.732945,0.0374993,0.986433,0.238252,0.760847,0.0322949,0.930689,0.577238,0.568413,0.297724,0.10054,0.416341,0.316634,0.325233,0.293277,0.713179,0.443418,0.196479,0.133278,0.0937327,0.542141,0.0795273,0.134622,0.439245,0.404522,0.841912,0.309432,0.395011,0.853102,0.957702,0.979173,0.311657,0.834008,0.169546,0.292569,0.568166,0.990768,0.66558,0.2232,0.192874,0.409976,0.0431353,0.194995,0.384853,0.787624,0.269706,0.719568,0.863082,0.376198,0.676509,0.20628,0.393404,0.0594556,0.617675,0.368238,0.640921,0.111855,0.789174,0.230185,0.399951,0.458981,0.69211,0.932861,0.647329,0.880244,0.266963,0.0111641,0.391555,0.418144,0.389533,0.395459,0.61714,0.768118,0.294964,0.13201,0.99097,0.624473,0.575557,0.0522603,0.942986,0.9175,0.448827,0.267252,0.452804,0.363717,0.328784,0.12262,0.0830746,0.120751,0.536191,0.440446,0.123966,0.42859,0.832355,0.912152,0.718883,0.901875,0.922441,0.236757,0.705902,0.947052,0.27125,0.271984,0.174079,0.819077,0.232151,0.421478,0.309211,0.539438,0.76765,0.332616,0.123421,0.633478,0.366175,0.036788,0.192426,0.213066,0.743565,0.520165,0.821842,0.886524,0.200379,0.749513,0.0259395,0.907991,0.963405,0.0335032,0.781847,0.21562,0.6989,0.794533,0.309635,0.35517,0.0652442,0.865574,0.984958,0.191062,0.546447,0.599031,0.937905,0.53489,0.317654,0.0616927,0.427331,0.736548,0.63546,0.485715,0.890772,0.895179,0.6055,0.248101,0.660968,0.887472,0.497346,0.997934,0.788686,0.20759,0.708936,0.483473,0.15667,0.428598,0.550651,0.31854,0.51032,0.509243,0.0736846,0.888346,0.657129,0.50549,0.225266,0.122747,0.955533,0.350601,0.904525,0.707543,0.532654,0.283104,0.825881,0.514685,0.760349,0.136077,0.443866,0.0855484,0.236201,0.854618,0.694617,0.250273,0.527503,0.788633,0.185641,0.74384,0.0331695,0.978844,0.0522884,0.268361,0.490883,0.540054,0.0700986,0.57541,0.702429,0.0946518,0.516315,0.576169,0.635915,0.472645,0.458937,0.662202,0.14464,0.352058,0.396972,0.77458,0.673711,0.86162,0.891131,0.762847,0.995648,0.805417,0.0108439,0.310962,0.912326,0.755011,0.218173,0.973156,0.163265,0.561116,0.00898862,0.429906,0.994557,0.481313,0.27609,0.740624,0.249281,0.595409,0.813476,0.626379,0.00936747,0.266567,0.0296216,0.857307,0.394168,0.633835,0.847218,0.586442,0.0388563,0.580577,0.320302,0.746696,0.571061,0.782015,0.0561378,0.418426,0.124227,0.452036,0.963892,0.216913,0.845952,0.249586,0.943762,0.637644,0.778948,0.667345,0.734085,0.747853,0.605256,0.957882,0.542345,0.363997,0.485335,0.317076,0.841617,0.9573,0.632904,0.582039,0.470739,0.15878,0.901108,0.574553,0.676851,0.889039,0.416952,0.278614,0.3779,0.359116,0.969978,0.395752,0.433232,0.642568,0.471265,0.426518,0.0373253,0.667937,0.36844,0.612425,0.645423,0.585096,0.784812,0.0659933,0.0885909,0.220263,0.948853,0.649159,0.628944,0.897078,0.744067,0.605415,|0.744056,0.0913348,0.46287,0.19339,0.922824,0.314642,0.640779,0.517923,0.986745,0.245775,0.118399,0.0447127,0.753834,0.0100507,0.45871,0.529391,0.296766,0.046447,0.320998,0.881221,0.766499,0.618512,0.352513,0.115761,0.457745,0.852681,0.0834245,0.569504,0.0918735,0.77536,0.0229714,0.331398,0.582192,0.237238,0.781301,0.980045,0.0447229,0.661964,0.652912,0.511548,0.302184,0.430036,0.0735798,0.29739,0.708562,0.600738,0.151609,0.593329,0.434429,0.994746,0.0105574,0.223085,0.382115,0.244835,0.277399,0.865606,0.687061,0.0606791,0.0859105,0.36987,0.2107,0.743193,0.676652,0.555315,0.872896,0.0946656,0.963944,0.357105,0.425905,0.278766,0.0691838,0.694838,0.227999,0.413098,0.506252,0.319957,0.361381,0.728929,0.967195,0.515012,0.391426,0.858818,0.971716,0.119382,0.598082,0.546546,0.83259,0.874685,0.551243,0.799166,0.531303,0.182109,0.109138,0.133318,0.0845678,0.00804561,0.196804,0.450228,0.309247,0.788224,0.356046,0.844468,0.288819,0.672665,0.629181,0.78983,0.901904,0.175156,0.451589,0.687178,0.214941,0.581504,0.543873,0.482933,0.811216,0.780059,0.608393,0.90532,0.237572,0.355162,0.279558,0.580086,0.944346,0.799555,0.60656,0.710786,0.023367,0.708174,0.824396,0.527678,0.588743,0.863874,0.53762,0.0694943,0.847971,0.84051,0.977047,0.738816,0.366413,0.447253,0.661701,0.235911,0.742842,0.606805,0.51849,0.0873995,0.271404,0.0945628,0.679522,0.656859,0.82568,0.0361961,0.238427,0.504445,0.466218,0.474148,0.954457,0.877696,0.207335,0.587909,0.982864,0.197963,0.889557,0.766507,0.456455,0.411072,0.898731,0.519632,0.185293,0.295507,0.822884,0.353715,0.372558,0.165049,0.849959,0.391216,0.0991281,0.0604903,0.305102,0.00811803,0.532925,0.512791,0.734063,0.772377,0.95832,0.365956,0.568628,0.723326,0.268575,0.555545,0.0287271,0.0153503,0.744808,0.229979,0.243188,0.289796,0.863012,0.749531,0.0654372,0.834158,0.772949,0.572599,0.842124,0.425918,0.960534,0.480932,0.690399,0.324401,0.834639,0.653745,0.896035,0.352078,0.140485,0.363131,0.743085,0.275138,0.782569,0.969365,0.490936,0.924528,0.0741943,0.540489,0.813224,0.58381,0.730848,0.945984,0.683894,0.0636512,0.921839,0.306392,0.390231,0.422425,0.569906,0.956999,0.468025,0.336313,0.477647,0.502724,0.956088,0.252789,0.39915,0.877074,0.149313,0.824124,0.510778,0.272747,0.918106,0.509653,0.316339,0.154653,0.44031,0.141777,0.5822,0.172389,0.896924,0.906813,0.268445,0.755713,0.301168,0.35569,0.200197,0.0271813,0.100913,0.696868,0.0728954,0.866695,0.919256,0.218287,0.922098,0.649461,0.235434,0.404054,0.648904,0.181684,0.988097,0.678966,0.0342738,0.321128,0.784697,0.473373,0.822009,0.0352976,0.174537,0.587638,0.234264,0.567325,0.684053,0.257321,0.417035,0.0355153,0.841007,0.0926124,0.105281,0.300583,0.286682,0.710807,0.54716,0.185213,0.311453,0.671501,0.357233,0.465598,0.0683867,0.467856,0.862137,0.886399,0.116786,0.311315,0.358728,0.415351,0.175007,0.895615,0.944485,0.382572,0.669588,0.777641,0.059579,0.629416,0.579316,0.0625657,0.183373,0.954426,0.352775,0.0302187,0.905286,0.800853,0.393886,0.183218,0.950197,0.830322,0.347689,0.998076,0.722689,0.798051,0.499705,0.436819,0.355677,0.854698,0.303871,0.80855,0.0124274,0.021226,0.905745,0.960512,0.195065,0.42542,0.0559052,0.681068,0.765299,0.958912,0.878393,0.680568,0.645418,0.503674,0.129238,0.0195691,0.751487,0.483264,0.915217,0.880519,0.574493,0.877956,0.126312,0.728931,0.802643,0.963918,0.647844,0.0592873,0.596054,0.546766,0.710565,0.248012,0.568648,0.882444,0.0479406,0.215732,0.805079,0.312789,0.712373,0.429299,0.294929,0.977271,0.0776423,0.973137,0.153497,0.329734,0.0073216,0.800239,0.90009,0.739036,0.125716,0.46019,0.981271,0.834762,0.561125,0.546205,0.725087,0.238964,0.552422,0.284492,0.297042,0.652222,0.558371,0.182607,0.363079,0.088093,0.662556,0.474603,0.209113,0.73145,0.40552,0.687156,0.856416,0.542381,0.768954,0.491305,0.241556,0.0281622,0.823579,0.706542,0.381372,0.912248,0.114654,0.212745,0.767682,0.925469,0.708378,0.641455,0.347549,0.198238,0.662768,0.828894,0.413638,0.887978,0.267639,0.766008,0.545347,0.313715,0.67175,0.726932,0.705668,0.680886,0.0309539,0.0601894,0.705709,0.427896,0.607619,0.883198,0.0895134,0.453112,0.599548,0.961296,0.361368,0.916405,0.00810045,0.76177,0.531401,0.0630744,0.964198,0.748156,0.982034,0.0383496,0.422579,0.834437,0.798013,0.233737,0.802399,0.398527,0.854672,0.824518,0.472624,0.584931,0.100984,0.28813,0.989817,0.109763,0.227591,0.200429,0.74179,0.953121,0.95683,0.296929,0.846348,0.62091,0.924681,0.514445,0.735562,0.519584,0.140026,0.780295,0.394973,0.636247,0.00411427,0.0145013,0.330026,0.435441,0.421446,0.445751,0.265195,0.500561,0.237545,0.933505,0.959821,0.978029,0.590345,0.808217,0.977405,0.060267,0.526298,0.324693,0.0659114,0.177731,0.516872,0.809008,0.215445,0.541087,0.00035882,0.0135592,0.04583,0.293532,0.0418428,0.227149,0.203438,0.698485,0.425118,0.0577014,0.134159,0.59332,0.788622,0.131232,0.330293,0.12329,0.542402,0.477827,0.429653,0.530542,0.875524,0.573051,0.0273693,0.465606,0.241821,0.336057,0.680312,0.260928,0.799726,0.550784,0.320691,0.367011,0.35228,0.599292,0.611475,0.0900748,0.573259,0.651602,0.18442,0.299229,0.78685,0.920146,0.30786,0.111297,0.814808,0.113754,0.284015,0.662863,0.690416,0.0319164,0.977046,0.659983,0.00194818,0.380234,0.280135,0.314497,0.0627102,0.0244392,0.605009,0.319954,0.0235059,0.954205,0.734775,0.344777,0.754986,0.460325,0.583766,0.253715,0.653529,0.743494,0.327097,0.273973,0.441372,0.816297,0.931751,0.439692,0.987855,0.0631768,0.558297,0.931485,0.673233,0.619512,0.635456,0.95114,0.914623,0.0254602,0.705468,0.689896,0.859916,0.0855424,0.96916,0.900249,0.752236,0.627032,0.565111,0.976705,0.459672,0.195423,0.633598,0.566991,0.966095,0.237483,0.115041,0.453196,0.341884,0.678817,0.894326,0.252061,0.270316,0.732352,0.159679,0.693248,0.937623,0.34754,0.0239669,0.568074,0.129174,0.593997,0.464605,0.263761,0.380801,0.213098,0.673403,0.76319,0.237969,0.0369607,0.256547,0.0151839,0.107972,0.388933,0.699874,0.854696,0.479683,0.311169,0.991737,0.25346,0.991734,0.566066,0.0546386,0.0582136,0.898815,0.238191,0.701043,0.519319,0.846915,0.301477,0.703676,0.591124,0.959182,0.650361,0.406099,0.392148,0.914499,0.989142,0.276642,0.0964654,0.547993,0.908564,0.623471,0.397,0.373444,0.900514,0.558723,0.270577,0.872886,0.875709,0.668358,0.22516,0.601239,0.965304,0.602447,0.855705,0.0184063,0.505459,0.258176,0.200148,0.974431,0.393345,0.94576,0.814142,0.0316505,0.910072,0.529084,0.126156,0.470983,0.887306,0.61408,0.484478,0.204916,0.0178993,0.978128,0.733892,0.1179,0.425773,0.900385,0.0879729,0.266729,0.23463,0.850566,0.682098,0.168318,0.868054,0.372611,0.670711,0.962463,0.835949,0.986626,0.671408,0.208416,0.218539,0.0162344,0.891476,0.120749,0.402209,0.0790523,0.429176,0.283109,0.998809,0.966815,0.473281,0.431085,0.579586,0.774204,0.198339,0.493064,0.652716,0.051598,0.258774,0.940384,0.971207,0.467717,0.962724,0.741133,0.736469,0.119148,0.249334,0.139208,0.533085,0.355495,0.0758377,0.124571,0.9973,0.341108,0.690018,0.689347,0.893936,0.692445,0.62769,0.875131,0.28859,0.911311,0.620267,0.280525,0.377806,0.661032,0.749132,0.394012,0.0783819,0.240808,0.894363,0.889755,0.637233,0.617239,0.498253,0.686693,0.362717,0.616642,0.619501,0.30452,0.0555184,0.589548,0.621999,0.112737,0.771311,0.202719,0.765265,0.00561166,0.788451,0.68285,0.330172,0.224902,0.516816,0.800728,0.728572,0.569491,0.719611,0.243474,0.626221,0.373892,0.962268,0.841309,0.359424,0.539028,0.476275,0.289574,0.0138081,0.783737,0.406626,0.46828,0.886287,0.863156,0.0786757,0.0228698,0.788394,0.892713,0.332536,0.933428,0.0113859,0.252733,0.290842,0.366171,0.743882,0.0235415,0.614296,0.396217,0.9717,0.241198,0.205611,0.62179,0.102106,0.694027,0.944902,0.0234542,0.460941,0.750662,0.164572,0.11614,0.132567,0.894405,0.850899,0.212143,0.698015,0.828019,0.478404,0.154525,0.547973,0.00241309,0.316618,0.730781,0.723348,0.904415,0.353033,0.789687,0.502724,0.675083,0.849067,0.00836962,0.810087,0.983244,0.720869,0.680499,0.537622,0.796383,0.205576,0.293672,0.929774,0.236256,0.974953,0.603288,0.0127835,0.00165004,0.0700261,0.930302,0.000683844,0.159504,0.363065,0.118736,0.597286,0.890944,0.516183,0.399527,0.117669,0.596691,0.824186,0.500991,0.0798277,0.286921,0.163216,0.0931773,0.312957,0.784417,0.606557,0.486375,0.0530013,0.940891,0.0407646,0.321201,0.833088,0.428788,0.0731876,0.206859,0.344919,0.56643,0.872883,0.0781627,0.915626,0.507003,0.671693,0.686329,0.281872,0.033758,0.671318,0.0360858,0.436682,0.806089,0.614483,0.545857,0.646987,0.72293,0.754468,0.147928,0.965216,0.846483,0.532374,0.797468,0.22224,0.368296,0.468987,0.66604,0.368495,0.382141,0.530613,0.798187,0.688661,0.544387,0.743573,0.91125,0.816085,0.975722,0.530083,0.352633,0.860645,0.382789,0.49199,0.877319,0.680787,0.753386,0.75102,0.561415,0.0395762,0.908518,0.0746779,0.297586,0.895582,0.478748,0.303869,0.822137,0.391848,0.816293,0.84967,0.24095,0.553868,0.930197,0.87916,0.209305,0.535082,0.662476,0.557455,0.940858,0.697834,0.54966,0.373361,0.794864,0.0195829,0.244525,0.915948,0.890696,0.0709214,0.681232,0.837854,0.979064,0.826913,0.924597,0.89428,0.758771,0.465687,0.637284,0.0267667,0.158498,0.153343,0.424427,0.60334,0.901732,0.189036,|0.906239,0.226643,0.841189,0.956797,0.653864,0.677761,0.530833,0.804733,0.908872,0.527908,0.843391,0.352768,0.14447,0.992656,0.802034,0.561703,0.292866,0.484889,0.731159,0.64752,0.339049,0.66313,0.253211,0.462209,0.824924,0.284226,0.822572,0.353745,0.839535,0.227229,0.641324,0.421873,0.893766,0.780332,0.0726818,0.590186,0.79477,0.825746,0.846797,0.232434,0.0606272,0.676535,0.466035,0.0542957,0.169069,0.707605,0.228011,0.600513,0.158494,0.265917,0.0463543,0.826036,0.620255,0.0252476,0.0916014,0.699316,0.699705,0.544323,0.752148,0.640999,0.732986,0.136579,0.663914,0.974315,0.285805,0.538284,0.187387,0.256355,0.104936,0.671202,0.564604,0.211468,0.319976,0.628022,0.268927,0.807242,0.760183,0.23444,0.766605,0.657495,0.0331889,0.825598,0.571146,0.760376,0.154419,0.767316,0.0460076,0.237681,0.719164,0.5673,0.424847,0.819618,0.935871,0.0564036,0.973204,0.146295,0.434195,0.341142,0.615593,0.889934,0.543533,0.511445,0.354251,0.743263,0.127523,0.913555,0.0628939,0.477159,0.648788,0.745616,0.887532,0.663445,0.230048,0.52796,0.365594,0.389887,0.363429,0.360796,0.26193,0.470984,0.15774,0.934932,0.266479,0.0313039,0.671015,0.931166,0.792187,0.894709,0.654447,0.11803,0.385681,0.591601,0.2613,0.0339506,0.073096,0.497117,0.965179,0.212069,0.683374,0.00156564,0.36111,0.303303,0.896301,0.181468,0.360592,0.458017,0.493995,0.656747,0.953326,0.497309,0.892496,0.626622,0.426947,0.354083,0.832325,0.701388,0.734443,0.791032,0.490949,0.270826,0.452946,0.748296,0.0742152,0.121369,0.0725691,0.702342,0.051123,0.333817,0.352037,0.0440913,0.438365,0.541215,0.998712,0.424088,0.189425,0.172457,0.881261,0.109221,0.311651,0.303763,0.793133,0.175415,0.606005,0.644843,0.916527,0.647827,0.630404,0.224328,0.982247,0.147556,0.0675685,0.156883,0.473228,0.0323086,0.80189,0.243077,0.366686,0.810679,0.37058,0.513575,0.348636,0.559846,0.549335,0.267529,0.373941,0.763591,0.570372,0.40691,0.023129,0.0411184,0.795237,0.634491,0.441732,0.972385,0.230082,0.398719,0.573335,0.612238,0.770691,0.326583,0.740015,0.163599,0.556844,0.627447,0.128902,0.651923,0.645421,0.79786,0.855542,0.695322,0.691484,0.0885242,0.128757,0.224777,0.11859,0.599057,0.225739,0.686925,0.56154,0.96715,0.404181,0.522439,0.857878,0.338867,0.299812,0.481535,0.501298,0.156385,0.488706,0.792306,0.848916,0.611664,0.188592,0.324638,0.30081,0.912492,0.356348,0.00819558,0.458352,0.371604,0.0236952,0.84833,0.419234,0.639312,0.815865,0.960435,0.716853,0.336856,0.103325,0.324278,0.61461,0.0677332,0.823546,0.907967,0.62535,0.903281,0.480162,0.107099,0.705065,0.503063,0.591569,0.351913,0.729066,0.427099,0.263827,0.453948,0.480724,0.121083,0.367663,0.00322539,0.634212,0.707097,0.45495,0.509779,0.639065,0.76058,0.547187,0.208575,0.425794,0.47041,0.0568407,0.744938,0.496464,0.92001,0.494151,0.122413,0.870197,0.690251,0.353044,0.261224,0.310475,0.34423,0.806259,0.426993,0.660697,0.351437,0.36139,0.908818,0.826596,0.356382,0.597207,0.0190398,0.210448,0.307437,0.632853,0.419332,0.102939,0.982973,0.333771,0.353645,0.137953,0.92617,0.25404,0.91482,0.940042,0.122925,0.647639,0.119993,0.323177,0.49299,0.904048,0.797505,0.460171,0.310443,0.894554,0.647299,0.317768,0.176397,0.357966,0.403032,0.219731,0.067764,0.197758,0.325802,0.938951,0.567476,0.975366,0.0957797,0.936742,0.824475,0.482301,0.303631,0.43058,0.76833,0.386729,0.356804,0.468214,0.0449273,0.393665,0.616815,0.331383,0.420902,0.216567,0.238592,0.861949,0.469384,0.545112,0.781285,0.392904,0.45184,0.887606,0.534769,0.855651,0.322314,0.98584,0.354141,0.062651,0.416152,0.502876,0.209444,0.792943,0.320578,0.424128,0.725304,0.358969,0.440658,0.940418,0.607457,0.00910801,0.831876,0.702788,0.980087,0.898094,0.95764,0.230079,0.565028,0.528681,0.716509,0.641804,0.461306,0.199251,0.608628,0.531341,0.821794,0.702259,0.721773,0.736338,0.526102,0.19664,0.0475368,0.883511,0.347869,0.677899,0.445527,0.33998,0.130839,0.404165,0.976295,0.122373,0.503012,0.190857,0.461771,0.475367,0.227047,0.716338,0.0985085,0.819296,0.691545,0.959978,0.707789,0.353264,0.673514,0.866284,0.59028,0.271889,0.218389,0.593226,0.222341,0.921099,0.350956,0.655301,0.839454,0.621695,0.100922,0.330536,0.467131,0.0353071,0.577946,0.611353,0.572166,0.994474,0.764209,0.242135,0.0591574,0.126444,0.58585,0.363186,0.284787,0.343683,0.331504,0.968609,0.225409,0.772515,0.253385,0.824816,0.93082,0.342015,0.434781,0.843229,0.687801,0.182579,0.191042,0.678259,0.178731,0.318299,0.55408,0.0339317,0.647663,0.982303,0.409885,0.918243,0.452233,0.172297,0.461984,0.756137,0.699411,0.556849,0.239622,0.00654024,0.904624,0.291294,0.479578,0.423464,0.925176,0.67323,0.160561,0.642594,0.455654,0.531888,0.782635,0.469105,0.0202502,0.845795,0.654756,0.23636,0.334441,0.346431,0.12395,0.0609173,0.280833,0.323863,0.425378,0.145174,0.508136,0.341251,0.918118,0.691039,0.590459,0.628428,0.793114,0.664589,0.70383,0.979162,0.466347,0.86448,0.438361,0.455893,0.999976,0.905736,0.465189,0.0727643,0.61942,0.737951,0.21478,0.887689,0.608934,0.431538,0.572774,0.999152,0.262436,0.0249867,0.464237,0.772158,0.835028,0.613941,0.672336,0.715273,0.27765,0.976232,0.174341,0.726133,0.656122,0.74967,0.742394,0.407599,0.452148,0.496396,0.114522,0.268634,0.1497,0.869854,0.349976,0.208791,0.354417,0.863426,0.643279,0.845422,0.870888,0.111838,0.839505,0.617138,0.74625,0.610264,0.706569,0.0355845,0.668137,0.874892,0.00338936,0.484582,0.0340032,0.961044,0.94522,0.106342,0.455241,0.0256499,0.312757,0.139648,0.329999,0.459908,0.267467,0.621712,0.290758,0.0998369,0.963902,0.714618,0.652012,0.2285,0.45525,0.269035,0.394024,0.373095,0.188199,0.885268,0.339686,0.175281,0.167813,0.946898,0.939926,0.851748,0.683457,0.886549,0.698434,0.0349706,0.0781672,0.18195,0.464578,0.514066,0.745569,0.712163,0.851977,0.744486,0.63764,0.350992,0.722763,0.7128,0.734271,0.00251675,0.243695,0.945032,0.111887,0.68477,0.189273,0.80185,0.00389773,0.730099,0.186747,0.475991,0.649919,0.633651,0.531255,0.8976,0.724479,0.252871,0.877205,0.764887,0.135143,0.513263,0.944727,0.644705,0.589788,0.0555293,0.0709213,0.143663,0.221269,0.775957,0.61006,0.126544,0.930245,0.582444,0.425937,0.665123,0.690316,0.478624,0.81425,0.24865,0.380264,0.926919,0.0182691,0.925233,0.336037,0.0961527,0.702262,0.599575,0.0521625,0.870634,0.942723,0.667365,0.684414,0.312278,0.642302,0.0128772,0.496072,0.51199,0.0581276,0.184616,0.10601,0.750554,0.797372,0.792274,0.825374,0.0131726,0.099048,0.999346,0.812161,0.0651745,0.464406,0.856977,0.528745,0.0190899,0.803323,0.27659,0.426714,0.28546,0.528503,0.122728,0.101816,0.94847,0.84572,0.364415,0.660482,0.199708,0.339042,0.695718,0.805091,0.566257,0.852098,0.284123,0.309149,0.238464,0.902144,0.283763,0.460062,0.529001,0.906841,0.473338,0.955706,0.814797,0.335164,0.395154,0.874103,0.207851,0.372486,0.0266079,0.901827,0.285269,0.586473,0.0467406,0.971153,0.0232512,0.301252,0.964289,0.930248,0.181877,0.157774,0.318349,0.874895,0.522,0.813748,0.917527,0.886972,0.234625,0.0958492,0.671201,0.441996,0.541655,0.579215,0.228827,0.581825,0.465119,0.27027,0.10723,0.319629,0.831995,0.562681,0.948559,0.224833,0.455473,0.336915,0.89966,0.428177,0.502819,0.748304,0.280949,0.590764,0.269946,0.408307,0.55427,0.368328,0.267601,0.665217,0.427683,0.403904,0.508907,0.297998,0.69814,0.0224528,0.840548,0.495908,0.286754,0.33409,0.528473,0.255921,0.20219,0.0488682,0.118019,0.187811,0.121271,0.366931,0.0160035,0.314825,0.758517,0.315387,0.468361,0.507355,0.777232,0.85097,0.285567,0.584561,0.420341,0.209384,0.799189,0.55276,0.360406,0.483571,0.0610616,0.691772,0.495864,0.310106,0.356104,0.605741,0.28925,0.69395,0.276839,0.0164103,0.830444,0.390426,0.769743,0.630924,0.786896,0.144513,0.569442,0.734464,0.395302,0.497633,0.293033,0.213937,0.919832,0.0041548,0.134989,0.210506,0.155528,0.946228,0.200059,0.166316,0.992047,0.367084,0.0111051,0.549412,0.434466,0.809511,0.434286,0.745319,0.233206,0.849855,0.626625,0.0477856,0.616292,0.375068,0.720471,0.127642,0.145652,0.649176,0.532581,0.578157,0.82451,0.594336,0.725983,0.807221,0.241942,0.938517,0.748665,0.659438,0.442212,0.834222,0.456223,0.747046,0.245717,0.718038,0.668092,0.564813,0.177659,0.653053,0.757449,0.555966,0.502451,0.839201,0.662233,0.456743,0.0695457,0.385346,0.738687,0.187355,0.634229,0.534053,0.439621,0.0148873,0.518138,0.355905,0.243961,0.616061,0.907377,0.508459,0.955881,0.150606,0.176679,0.209021,0.154855,0.98007,0.32209,0.795088,0.0114676,0.730272,0.0491554,0.0394472,0.65796,0.281299,0.822813,0.834054,0.920524,0.56584,0.124018,0.532235,0.627833,0.419973,0.385931,0.56574,0.58027,0.475816,0.773273,0.282504,0.952537,0.158072,0.116198,0.10081,0.51169,0.468051,0.672736,0.665702,0.148037,0.473712,0.569448,0.922373,0.412962,0.986766,0.73935,0.208278,0.406325,0.979094,0.749473,0.714419,0.502142,0.372656,0.658704,0.994164,0.907136,0.613343,0.354144,0.326656,0.843691,0.168932,0.985211,0.521192,0.275701,0.209448,0.368492,0.936944,0.0733418,0.375498,0.608677,0.624225,0.868797,0.937207,0.621044,0.349418,0.375331,0.839166,0.0792191,0.916737,0.958513,0.105196,0.871497,0.932135,0.73788,0.105542,0.836493,0.125361,0.374865,0.920247,0.65164,0.188534,|0.961921,0.356643,0.189256,0.842349,0.238111,0.0971266,0.439697,0.0123961,0.123985,0.463071,0.49227,0.290797,0.714309,0.138235,0.704485,0.0989918,0.472553,0.526983,0.393121,0.453465,0.71034,0.979436,0.107391,0.69549,0.163415,0.522465,0.0189278,0.470919,0.747604,0.812393,0.996199,0.805233,0.841419,0.39329,0.325381,0.942575,0.562725,0.278782,0.0449325,0.726297,0.802667,0.440149,0.763346,0.105945,0.85036,0.394458,0.748165,0.903156,0.726629,0.612662,0.748619,0.0801429,0.0021621,0.191907,0.83739,0.650913,0.199261,0.803376,0.859434,0.435303,0.0058046,0.897079,0.217994,0.0112799,0.936598,0.106605,0.982844,0.541299,0.70996,0.460704,0.741526,0.439157,0.0094974,0.599753,0.441476,0.213208,0.617903,0.428784,0.777378,0.136782,0.0116054,0.958081,0.705104,0.456443,0.720849,0.958749,0.161657,0.720048,0.0794655,0.568103,0.543327,0.911915,0.970674,0.775521,0.697579,0.772147,0.201525,0.356219,0.581313,0.31714,0.0722671,0.000472069,0.179596,0.640663,0.804426,0.666481,0.736139,0.823745,0.657323,0.96166,0.212451,0.851312,0.338383,0.319442,0.611705,0.0139524,0.725686,0.406116,0.469389,0.453882,0.0470109,0.915529,0.914324,0.0281029,0.762771,0.633926,0.474903,0.0414333,0.79442,0.0447763,0.595825,0.741722,0.0292321,0.707185,0.58818,0.341044,0.525414,0.438936,0.213961,0.915617,0.790723,0.327304,0.829421,0.0992406,0.00222772,0.686292,0.271656,0.200559,0.823916,0.069527,0.145589,0.0213761,0.443124,0.0419102,0.754222,0.471994,0.455934,0.565855,0.336844,0.850163,0.0999309,0.348363,0.0267889,0.589701,0.842081,0.0752124,0.221326,0.389903,0.279176,0.926915,0.503485,0.392325,0.0601913,0.778957,0.0328307,0.364147,0.0729537,0.776529,0.646614,0.889304,0.0368586,0.473907,0.76599,0.0670335,0.544903,0.327491,0.0116615,0.833735,0.894213,0.911223,0.443703,0.531735,0.00453097,0.882098,0.663293,0.608755,0.585857,0.970971,0.870578,0.832875,0.450128,0.964953,0.0615477,0.946085,0.579032,0.273414,0.512263,0.996641,0.0457547,0.755804,0.954541,0.433397,0.876967,0.850597,0.66521,0.706917,0.181958,0.327307,0.643366,0.518391,0.510909,0.0396082,0.659016,0.376566,0.553465,0.404222,0.534071,0.697975,0.115028,0.181592,0.474505,0.650362,0.134245,0.925064,0.212509,0.997738,0.616022,0.865327,0.381154,0.719297,0.688126,0.296106,0.383874,0.368349,0.834083,0.0603955,0.669218,0.932797,0.750498,0.778489,0.82291,0.012692,0.938226,0.539935,0.00501686,0.533052,0.426836,0.695105,0.310396,0.888564,0.269165,0.615324,0.421449,0.601963,0.187578,0.752411,0.476181,0.410487,0.127392,0.959685,0.715412,0.0706273,0.870572,0.106592,0.462244,0.638369,0.177577,0.99586,0.168027,0.277019,0.155791,0.715995,0.299915,0.864538,0.809248,0.0486447,0.481831,0.658852,0.369046,0.233397,0.936147,0.0153503,0.494336,0.337571,0.0270722,0.0359045,0.286426,0.769553,0.0737524,0.8948,0.266919,0.727789,0.578443,0.284622,0.419891,0.599253,0.78988,0.313086,0.0272062,0.926953,0.399722,0.65262,0.205832,0.877941,0.928594,0.97991,0.583109,0.0857183,0.640604,0.315976,0.843101,0.619623,0.270481,0.337646,0.395011,0.789998,0.39366,0.705502,0.625348,0.97195,0.952216,0.522374,0.15637,0.0686232,0.613451,0.930521,0.138236,0.114614,0.257657,0.0684962,0.362577,0.596,0.168674,0.386102,0.704061,0.426459,0.13456,0.674761,0.906761,0.0417557,0.681311,0.714528,0.594237,0.233433,0.418833,0.332261,0.134114,0.68137,0.366719,0.0225132,0.369333,0.27282,0.936568,0.690637,0.626962,0.784335,0.968956,0.467243,0.350568,0.164558,0.12952,0.702304,0.174376,0.719646,0.753595,0.303297,0.859672,0.798784,0.880674,0.964738,0.702255,0.915513,0.584225,0.202388,0.509305,0.135578,0.106252,0.181546,0.734905,0.562005,0.765253,0.390073,0.950301,0.0622664,0.721138,0.0129865,0.11601,0.499156,0.878552,0.413914,0.0906391,0.00868183,0.235517,0.267873,0.296238,0.567334,0.582731,0.174782,0.0376121,0.0797834,0.855437,0.185807,0.684708,0.488039,0.723967,0.835308,0.193104,0.596247,0.701086,0.584741,0.167141,0.0602491,0.30499,0.229179,0.217758,0.817605,0.541512,0.216709,0.968665,0.567569,0.351607,0.315624,0.436297,0.717346,0.313752,0.798988,0.771444,0.516005,0.0160945,0.8384,0.220475,0.51295,0.823263,0.624261,0.840441,0.715541,0.641977,0.298307,0.368036,0.247466,0.27846,0.00821108,0.213528,0.542143,0.0880818,0.654566,0.409582,0.902521,0.551692,0.937586,0.620438,0.272436,0.638156,0.0196817,0.365678,0.525571,0.574687,0.229689,0.826078,0.676827,0.558444,0.686631,0.907843,0.140369,0.42655,0.317708,0.396388,0.862536,0.96224,0.980407,0.31877,0.939703,0.559716,0.772949,0.591064,0.052981,0.721047,0.109333,0.210773,0.381949,0.930405,0.877006,0.669714,0.972454,0.558827,0.317296,0.698223,0.544753,0.10106,0.661714,0.599509,0.46508,0.902255,0.834603,0.962303,0.0332862,0.589864,0.984765,0.0308251,0.297331,0.130994,0.177357,0.108077,0.364382,0.529537,0.919162,0.305696,0.844362,0.49087,0.10127,0.814197,0.361409,0.559423,0.209432,0.0721403,0.531272,0.919208,0.110688,0.810872,0.967525,0.597583,0.308782,0.186385,0.902257,0.927121,0.228397,0.423415,0.765705,0.783776,0.761035,0.060822,0.749473,0.559108,0.19255,0.217512,0.642212,0.295299,0.692857,0.499631,0.649381,0.524975,0.0600611,0.266518,0.604907,0.152445,0.044626,0.0331975,0.219806,0.678319,0.6306,0.747059,0.0844436,0.697504,0.233237,0.778338,0.63558,0.295749,0.357727,0.017892,0.356099,0.919061,0.539144,0.0168873,0.876185,0.00732809,0.244331,0.244328,0.267048,0.913852,0.0928915,0.615275,0.0229782,0.866933,0.257173,0.734929,0.757214,0.804061,0.208035,0.107217,0.947829,0.428471,0.717743,0.371548,0.421024,0.145757,0.0328192,0.632841,0.382842,0.13773,0.310438,0.244615,0.524299,0.941703,0.0925578,0.163417,0.761214,0.212856,0.124742,0.984138,0.13134,0.851168,0.0800573,0.617911,0.84836,0.65038,0.303923,0.298643,0.461029,0.590145,0.392817,0.7469,0.218559,0.342736,0.950817,0.254851,0.29037,0.888741,0.433711,0.13599,0.169355,0.850066,0.501099,0.986869,0.439529,0.223337,0.910745,0.16144,0.065177,0.732258,0.296102,0.792573,0.117727,0.783464,0.925409,0.435981,0.462105,0.543069,0.164665,0.750121,0.494828,0.744197,0.680141,0.344005,0.231812,0.350466,0.848608,0.640689,0.839662,0.216284,0.618626,0.519129,0.836548,0.840476,0.646419,0.945059,0.115006,0.324297,0.300103,0.0435697,0.686985,0.583324,0.663695,0.407583,0.382533,0.124698,0.616596,0.715449,0.602518,0.929797,0.293517,0.328045,0.980353,0.431203,0.272061,0.942006,0.391572,0.0485685,0.837533,0.631192,0.851014,0.0167373,0.92819,0.752241,0.654925,0.895936,0.339648,0.947376,0.948995,0.00482458,0.148505,0.374144,0.419837,0.556115,0.217342,0.973555,0.872306,0.0729105,0.333078,0.87102,0.651595,0.540467,0.906628,0.162949,0.636899,0.839051,0.485951,0.511927,0.420412,0.161908,0.745644,0.775538,0.244343,0.35817,0.0990516,0.208554,0.0818825,0.976369,0.799385,0.506809,0.348008,0.557138,0.694607,0.945152,0.858347,0.670884,0.667624,0.803213,0.145816,0.963631,0.682065,0.0318766,0.487436,0.517047,0.625286,0.945198,0.117919,0.500722,0.636229,0.49362,0.21276,0.846211,0.692018,0.972613,0.357628,0.0398416,0.452685,0.177154,0.543481,0.448486,0.768143,0.275306,0.16545,0.46682,0.282021,0.544589,0.911022,0.585212,0.895623,0.292772,0.386038,0.853356,0.284587,0.950305,0.236705,0.141217,0.855464,0.924412,0.678013,0.626806,0.104541,0.785819,0.142916,0.180187,0.701197,0.832171,0.0217125,0.574485,0.52184,0.478274,0.706485,0.679868,0.0995362,0.659131,0.740023,0.0127068,0.177595,0.130038,0.779421,0.514122,0.0619544,0.588492,0.676531,0.852118,0.451556,0.265052,0.774025,0.906029,0.42288,0.416844,0.201351,0.65954,0.178408,0.972749,0.167442,0.262122,0.0639001,0.719955,0.761219,0.483553,0.452153,0.635761,0.257191,0.610466,0.426857,0.463242,0.0156663,0.681137,0.0901352,0.794418,0.889421,0.839126,0.857191,0.54026,0.240481,0.984864,0.609028,0.0116366,0.247868,0.465323,0.3567,0.69091,0.083474,0.325741,0.675768,0.615994,0.869617,0.281092,0.690517,0.591738,0.458279,0.507913,0.988452,0.585592,0.0301504,0.205085,0.263908,0.610793,0.479477,0.130983,0.221105,0.43413,0.57461,0.624374,0.345178,0.757693,0.98508,0.12474,0.668277,0.995443,0.525657,0.549234,0.378428,0.126803,0.0716049,0.0861525,0.462439,0.499987,0.108832,0.765157,0.176503,0.662646,0.89613,0.887937,0.899042,0.333003,0.0199147,0.230561,0.292014,0.148318,0.0293952,0.18784,0.0284547,0.119913,0.982581,0.713343,0.282805,0.712539,0.637963,0.552483,0.819852,0.957092,0.653754,0.245278,0.406319,0.27557,0.368283,0.219004,0.493093,0.478768,0.01248,0.629109,0.0752756,0.516364,0.515517,0.121848,0.865877,0.832639,0.571905,0.855496,0.420209,0.184826,0.767672,0.153677,0.36696,0.397066,0.198314,0.394047,0.468278,0.968394,0.879431,0.422065,0.448943,0.0447223,0.845024,0.496811,0.59361,0.248527,0.463916,0.53927,0.251188,0.385552,0.171947,0.897248,0.983417,0.0280048,0.938852,0.821486,0.764621,0.266665,0.793791,0.304222,0.600548,0.934867,0.683494,0.110418,0.260388,0.511379,0.200837,0.208221,0.409417,0.56223,0.503275,0.105399,0.795891,0.74632,0.0241224,0.469739,0.476152,0.0515135,0.221404,0.515379,0.227686,0.451043,0.877825,0.692202,0.129545,0.103568,0.193088,0.372615,0.587004,0.782947,0.827735,0.959868,0.155295,0.744679,0.366776,0.662598,0.769598,0.800607,0.489441,0.22223,0.517839,0.548888,0.406209,0.26948,0.0212954,0.903122,0.350421,0.11899,0.395746,|0.489612,0.135038,0.406192,0.75207,0.670187,0.0803587,0.995881,0.671238,0.580106,0.114167,0.156332,0.0174839,0.0979986,0.177713,0.135309,0.986071,0.583037,0.277261,0.249968,0.765735,0.404503,0.563841,0.831033,0.305705,0.408191,0.015729,0.384549,0.40839,0.329808,0.890039,0.489159,0.152189,0.892994,0.259176,0.97305,0.168815,0.0699482,0.242493,0.446616,0.586006,0.278373,0.961238,0.38681,0.0874927,0.859175,0.25546,0.796399,0.695399,0.033061,0.0473382,0.426767,0.158191,0.450877,0.845493,0.396643,0.0862605,0.67369,0.743151,0.375241,0.437039,0.758182,0.613315,0.559939,0.839588,0.516133,0.673114,0.383309,0.689911,0.877178,0.518427,0.181525,0.0577019,0.777449,0.295186,0.582285,0.0763633,0.0763828,0.743232,0.870284,0.375952,0.524287,0.869434,0.639789,0.881004,0.0352101,0.0953367,0.813083,0.17962,0.284974,0.0124195,0.357006,0.613442,0.40359,0.534558,0.751122,0.661117,0.647047,0.0535015,0.822706,0.41492,0.46479,0.387112,0.724174,0.563572,0.0205115,0.435876,0.293863,0.364566,0.286438,0.994591,0.736023,0.924032,0.321653,0.520779,0.562585,0.614401,0.911352,0.368708,0.0497052,0.0550806,0.0438885,0.98525,0.764931,0.9503,0.555468,0.0650799,0.552193,0.0858276,0.83979,0.362673,0.38462,0.157343,0.653721,0.705602,0.207542,0.380194,0.416169,0.557652,0.474765,0.778842,0.972921,0.999224,0.321727,0.0263785,0.917979,0.0973844,0.949944,0.556136,0.250994,0.450431,0.0759045,0.149665,0.264601,0.779713,0.420932,0.196939,0.0325183,0.205758,0.0170009,0.592595,0.56681,0.339645,0.107065,0.236788,0.602494,0.937384,0.389425,0.591218,0.613434,0.649829,0.0721094,0.803437,0.598748,0.475829,0.325603,0.180464,0.888796,0.564628,0.612834,0.476158,0.118675,0.608302,0.352756,0.971352,0.229879,0.1424,0.501879,0.824855,0.296414,0.428548,0.20103,0.289881,0.164375,0.301345,0.279076,0.719204,0.528033,0.769353,0.923728,0.199303,0.338307,0.500544,0.268682,0.418297,0.108877,0.184478,0.202438,0.862968,0.556038,0.248859,0.338615,0.671239,0.684414,0.231562,0.859489,0.0403693,0.0285377,0.224862,0.720852,0.923956,0.557701,0.911585,0.645056,0.170763,0.211344,0.408307,0.0707483,0.37954,0.113964,0.688944,0.295045,0.220902,0.960943,0.79626,0.616776,0.753722,0.622485,0.646078,0.402838,0.770033,0.252332,0.140821,0.176127,0.102612,0.166476,0.844111,0.873532,0.411853,0.0582163,0.652523,0.237524,0.367724,0.568557,0.907196,0.696382,0.902798,0.0415561,0.667882,0.565639,0.873798,0.417295,0.580867,0.579433,0.793462,0.989218,0.758354,0.251418,0.799877,0.178892,0.303878,0.541917,0.489477,0.684655,0.866173,0.229234,0.850996,0.0480765,0.190916,0.123554,0.157248,0.117475,0.820709,0.746693,0.637287,0.365047,0.346333,0.273851,0.195579,0.867422,0.167594,0.0217295,0.0697712,0.78216,0.708518,0.44982,0.0160633,0.109349,0.357049,0.825141,0.834467,0.616307,0.292957,0.868963,0.0512658,0.425487,0.16361,0.340489,0.980805,0.714357,0.0592473,0.542665,0.209449,0.307107,0.00573719,0.256506,0.479778,0.660104,0.96748,0.698706,0.620924,0.429725,0.292341,0.436039,0.126265,0.591683,0.134454,0.0257512,0.381086,0.48634,0.70368,0.962371,0.614161,0.138428,0.176537,0.627405,0.119394,0.663746,0.955913,0.0400413,0.991225,0.792054,0.252825,0.294979,0.204475,0.0447953,0.824838,0.400761,0.972966,0.0552949,0.171255,0.909123,0.645293,0.78772,0.299147,0.339059,0.952188,0.16337,0.715079,0.889102,0.251581,0.792785,0.833437,0.560289,0.493897,0.0658055,0.305964,0.607843,0.74017,0.837576,0.23991,0.989541,0.916179,0.231498,0.245305,0.275437,0.978777,0.894099,0.745354,0.370401,0.149512,0.186403,0.921929,0.946087,0.868877,0.970807,0.821572,0.370925,0.537835,0.832096,0.876658,0.966484,0.421171,0.870173,0.63102,0.811694,0.698683,0.584394,0.265611,0.882418,0.0814955,0.569118,0.522317,0.130018,0.417072,0.974473,0.652879,0.917068,0.200348,0.243349,0.779839,0.579288,0.321552,0.458053,0.736434,0.910092,0.771757,0.135196,0.938111,0.453166,0.79068,0.124267,0.621744,0.51506,0.552399,0.983802,0.495524,0.0448773,0.586333,0.0881872,0.0488962,0.581562,0.626485,0.615557,0.360041,0.343509,0.828352,0.0179125,0.624967,0.877355,0.932662,0.4387,0.47318,0.298186,0.502623,0.300936,0.512961,0.941156,0.56206,0.802791,0.89687,0.276038,0.0812091,0.448638,0.674027,0.886829,0.748375,0.416367,0.308786,0.867623,0.930239,0.920105,0.0356821,0.536747,0.445536,0.190732,0.69559,0.47687,0.103895,0.541145,0.468818,0.218018,0.394314,0.954512,0.812284,0.765495,0.636313,0.912667,0.0725576,0.804211,0.504467,0.385235,0.783666,0.872091,0.338228,0.718924,0.456953,0.503622,0.792626,0.295878,0.493746,0.521468,0.334771,0.524226,0.989981,0.736439,0.429332,0.0160574,0.397466,0.90425,0.91739,0.18469,0.857477,0.159093,0.323774,0.420173,0.870974,0.189227,0.638793,0.399373,0.829405,0.185059,0.757614,0.504478,0.40557,0.468451,0.935465,0.279348,0.110653,0.470888,0.482976,0.0811095,0.939537,0.0979742,0.395534,0.560885,0.302136,0.321916,0.170357,0.185801,0.147801,0.777964,0.598062,0.364644,0.920069,0.0824571,0.432388,0.439081,0.993922,0.67847,0.618505,0.91098,0.201179,0.13457,0.64188,0.641928,0.871502,0.422655,0.227116,0.443497,0.211192,0.930571,0.369145,0.39233,0.974081,0.703962,0.382692,0.746048,0.654481,0.866439,0.0156724,0.0307124,0.742378,0.336069,0.541952,0.127935,0.765395,0.733682,0.73191,0.347526,0.723767,0.465499,0.331313,0.331196,0.268663,0.20241,0.331553,0.311305,0.873453,0.955811,0.373043,0.0806948,0.7111,0.417428,0.668216,0.530374,0.288535,0.594392,0.450722,0.136414,0.824681,0.206102,0.344808,0.927764,0.472597,0.940568,0.827593,0.27545,0.133177,0.677587,0.536653,0.402827,0.151744,0.798097,0.684874,0.455736,0.154406,0.969147,0.260204,0.531142,0.359742,0.553748,0.0718715,0.302936,0.104602,0.440787,0.552373,0.890119,0.634662,0.354335,0.427599,0.32258,0.464064,0.827419,0.994807,0.588212,0.0851888,0.268203,0.405847,0.830699,0.819913,0.0400153,0.166989,0.480066,0.73564,0.940385,0.499635,0.0692785,0.862033,0.83027,0.325938,0.594947,0.153404,0.438961,0.211205,0.532383,0.0779809,0.712409,0.191062,0.0506386,0.595484,0.906807,0.962534,0.614755,0.0836098,0.512804,0.100541,0.0121475,0.788357,0.150524,0.640964,0.814336,0.051771,0.135919,0.13409,0.905566,0.781842,0.781744,0.993546,0.671828,0.572737,0.546151,0.92925,0.536274,0.989023,0.0623277,0.23937,0.680862,0.901057,0.869434,0.656722,0.650315,0.736058,0.0872614,0.238901,0.148596,0.909598,0.372037,0.989405,0.495454,0.390521,0.714339,0.176901,0.878686,0.213135,0.714076,0.284505,0.587996,0.839818,0.586296,0.0424915,0.919284,0.249495,0.266429,0.401041,0.647828,0.557993,0.523636,0.989823,0.12193,0.978709,0.0666697,0.544196,0.358416,0.0256962,0.712197,0.823231,0.17826,0.31624,0.346368,0.60124,0.948857,0.0982887,0.614398,0.721041,0.478181,0.615532,0.149389,0.416616,0.469574,0.668841,0.957165,0.489483,0.705945,0.634771,0.919165,0.772383,0.401876,0.928072,0.641338,0.830762,0.299398,0.437295,0.811184,0.387385,0.112375,0.733194,0.393565,0.650373,0.709131,0.186333,0.968126,0.220661,0.197489,0.999656,0.699222,0.570435,0.0564476,0.564767,0.343904,0.845222,0.879031,0.997628,0.294967,0.401942,0.441928,0.718141,0.210809,0.0187377,0.532395,0.956951,0.455578,0.157707,0.526504,0.166707,0.0280777,0.315803,0.982655,0.213944,0.951922,0.434547,0.874771,0.953094,0.298983,0.693761,0.620778,0.371382,0.155337,0.372716,0.634123,0.543929,0.399723,0.0237162,0.985793,0.295205,0.935453,0.916328,0.597905,0.861263,0.0692247,0.0399783,0.804983,0.506106,0.00454402,0.851051,0.439634,0.516083,0.190009,0.0849823,0.567212,0.733358,0.284822,0.753546,0.730463,0.336988,0.744595,0.164773,0.303535,0.195614,0.40627,0.132844,0.0221745,0.102621,0.914097,0.24774,0.898428,0.287705,0.128584,0.0597842,0.989905,0.277941,0.60598,0.630801,0.52493,0.0230244,0.423943,0.365079,0.74661,0.110241,0.787253,0.0270194,0.637622,0.192102,0.539581,0.820165,0.572929,0.782422,0.0151285,0.0736418,0.620378,0.789809,0.557084,0.132595,0.955993,0.402627,0.877782,0.0534774,0.632378,0.0609917,0.741148,0.811395,0.524849,0.946287,0.741045,0.431407,0.0158154,0.263268,0.152976,0.395788,0.801381,0.476347,0.992583,0.392447,0.802119,0.82934,0.100228,0.73717,0.180431,0.872108,0.910594,0.0540488,0.882715,0.546871,0.132153,0.771336,0.673115,0.946645,0.586308,0.60781,0.80985,0.35209,0.145023,0.811569,0.891404,0.602649,0.323714,0.727616,0.206537,0.506422,0.456773,0.780825,0.358665,0.867674,0.040255,0.301497,0.0942613,0.504314,0.407242,0.239708,0.0972634,0.966789,0.98229,0.0291273,0.988645,0.462206,0.124397,0.572162,0.546379,0.28622,0.669369,0.0285882,0.345808,0.70154,0.90591,0.814475,0.107818,0.192572,0.494038,0.708308,0.0869946,0.185231,0.99011,0.636188,0.421126,0.493693,0.655718,0.770308,0.197963,0.888318,0.0462943,0.984321,0.0816835,0.815726,0.348123,0.586977,0.700217,0.500264,0.716721,0.206967,0.988678,0.1007,0.181325,0.374853,0.3468,0.948916,0.836634,0.639899,0.490539,0.371312,0.895747,0.219219,0.360964,0.88652,0.529311,0.361743,0.0459999,0.798183,0.909987,0.609722,0.710375,0.449014,0.542012,0.0284417,0.0864226,0.636832,0.9655,0.336596,0.535844,0.0714881,0.413313,0.831365,0.766134,0.384757,0.975825,0.120875,0.18238,0.472594,0.631151,0.397043,0.202721,0.290119,0.228391,0.44936,0.064189,0.435131,0.763053,0.409516,0.42505,0.585232,0.781495,0.671661,|0.218276,0.968197,0.518281,0.0227132,0.733473,0.0879429,0.30148,0.511816,0.572771,0.778014,0.279656,0.942137,0.736511,0.255351,0.189089,0.717489,0.128636,0.296531,0.395767,0.335557,0.0153638,0.612778,0.197276,0.906594,0.0427423,0.596042,0.336614,0.377861,0.326892,0.0675862,0.367186,0.929262,0.613819,0.107939,0.155524,0.100255,0.989053,0.595346,0.985949,0.899672,0.369607,0.863474,0.230208,0.149106,0.245247,0.1867,0.448134,0.719885,0.281165,0.00486952,0.848362,0.434549,0.517265,0.211153,0.971522,0.450012,0.891994,0.371629,0.799836,0.648103,0.0255585,0.581318,0.0878475,0.924934,0.931505,0.702062,0.0743452,0.374233,0.181592,0.81091,0.361829,0.586852,0.70529,0.741145,0.317724,0.513009,0.594514,0.896089,0.439613,0.669608,0.0625889,0.63852,0.25505,0.911538,0.212157,0.65813,0.318771,0.806526,0.0449046,0.495293,0.997029,0.435854,0.410778,0.0563759,0.162672,0.804432,0.970787,0.260419,0.357644,0.343553,0.935505,0.750804,0.921269,0.631711,0.14625,0.783242,0.93079,0.246313,0.151972,0.167044,0.653715,0.708302,0.176482,0.343909,0.20415,0.412053,0.27905,0.827987,0.552855,0.180676,0.729446,0.406197,0.704808,0.0398371,0.953261,0.218987,0.561581,0.31344,0.767835,0.262987,0.424888,0.553199,0.442481,0.272928,0.311418,0.203914,0.708056,0.363021,0.00770259,0.567958,0.985669,0.759086,0.271402,0.211246,0.631231,0.0107443,0.5432,0.567072,0.359033,0.44519,0.665422,0.806878,0.663458,0.448429,0.454007,0.00619316,0.73494,0.163176,0.718618,0.874936,0.363921,0.624296,0.643951,0.984868,0.116154,0.556989,0.680502,0.0105791,0.587826,0.832167,0.10554,0.673675,0.0147924,0.534698,0.138868,0.0782025,0.323897,0.10504,0.518514,0.830471,0.466153,0.917922,0.25021,0.221051,0.55325,0.35176,0.493796,0.68498,0.138975,0.644131,0.52785,0.848599,0.382969,0.369254,0.540915,0.79478,0.369219,0.397749,0.823986,0.642742,0.810995,0.956134,0.436668,0.985399,0.526981,0.592285,0.172493,0.170586,0.0174707,0.679908,0.573237,0.330888,0.373753,0.589243,0.127147,0.876336,0.446928,0.047244,0.523904,0.728943,0.313238,0.172272,0.26444,0.488883,0.795186,0.805433,0.67294,0.546373,0.025152,0.505183,0.669826,0.391709,0.980762,0.854122,0.0967346,0.489034,0.199893,0.201078,0.272911,0.143877,0.657489,0.920586,0.0906592,0.283691,0.717043,0.27089,0.0573599,0.236463,0.283599,0.153788,0.906034,0.561901,0.0146285,0.154281,0.465503,0.23842,0.126199,0.211603,0.163467,0.884714,0.748307,0.637034,0.304283,0.295294,0.160426,0.676849,0.545845,0.799464,0.095511,0.927601,0.766413,0.929011,0.978521,0.989521,0.0845867,0.845249,0.484556,0.996909,0.223918,0.950847,0.0284769,0.948305,0.390566,0.312491,0.902369,0.864913,0.109263,0.308483,0.633212,0.819164,0.717829,0.695596,0.989859,0.282056,0.32134,0.884995,0.730258,0.304386,0.721905,0.819537,0.0842242,0.373653,0.683857,0.616089,0.44474,0.324085,0.280284,0.83501,0.512111,0.320789,0.806153,0.179554,0.658094,0.29618,0.173162,0.231257,0.903589,0.903491,0.392819,0.12982,0.417869,0.00815433,0.97606,0.440163,0.79885,0.805503,0.889403,0.692975,0.787756,0.443432,0.23306,0.154508,0.696326,0.809973,0.122022,0.85461,0.204125,0.328923,0.758672,0.141626,0.676691,0.312755,0.577867,0.541018,0.703821,0.506645,0.768467,0.33745,0.617118,0.623199,0.269604,0.736782,0.876437,0.892045,0.162796,0.100579,0.47917,0.689203,0.875493,0.0258089,0.0202929,0.0563597,0.366142,0.913262,0.866109,0.770101,0.188975,0.524254,0.863252,0.887296,0.610027,0.947471,0.753024,0.538144,0.0158129,0.793116,0.443722,0.311144,0.877572,0.98825,0.452745,0.263633,0.62902,0.258303,0.00970221,0.27815,0.489817,0.99429,0.394983,0.00918168,0.314211,0.425205,0.749321,0.494946,0.0275419,0.302905,0.445844,0.482117,0.313103,0.382382,0.939874,0.451947,0.800999,0.359913,0.551669,0.350729,0.741284,0.400671,0.567634,0.751134,0.565547,0.041535,0.129355,0.527632,0.852884,0.00790262,0.635241,0.778016,0.297067,0.57883,0.980409,0.134761,0.927952,0.467173,0.228928,0.0898777,0.626825,0.565553,0.194164,0.721672,0.607112,0.870112,0.934142,0.271479,0.934084,0.695931,0.691945,0.440343,0.53412,0.123301,0.963033,0.0544018,0.85989,0.538826,0.158852,0.647347,0.9003,0.0842678,0.193401,0.529739,0.600103,0.276662,0.561259,0.0959879,0.0126584,0.21542,0.298714,0.410677,0.159522,0.577111,0.609381,0.852123,0.269158,0.906486,0.165363,0.0660349,0.376872,0.263091,0.147499,0.185158,0.221485,0.87207,0.491621,0.447958,0.684849,0.353068,0.290715,0.992524,0.167472,0.99901,0.169117,0.870123,0.391072,0.438717,0.483244,0.879533,0.179291,0.534154,0.238994,0.275083,0.289419,0.164622,0.0682293,0.20401,0.618799,0.0131547,0.831729,0.938013,0.550159,0.734743,0.724377,0.716339,0.646544,0.900157,0.0961226,0.876479,0.935067,0.795147,0.366001,0.851747,0.197806,0.479473,0.876277,0.540458,0.99529,0.657436,0.528653,0.0954478,0.131792,0.555175,0.740601,0.847696,0.150446,0.75437,0.947415,0.342933,0.3645,0.66739,0.925817,0.791647,0.22696,0.568444,0.23702,0.967109,0.0163493,0.364144,0.41042,0.875042,0.495891,0.212851,0.273758,0.378143,0.720974,0.108674,0.435575,0.808178,0.669501,0.845096,0.733396,0.793928,0.70659,0.120097,0.174101,0.267805,0.0701566,0.22274,0.916662,0.873092,0.566819,0.598987,0.402169,0.401256,0.885822,0.211039,0.0677232,0.622537,0.561345,0.0453409,0.422007,0.924775,0.685876,0.799425,0.916842,0.822539,0.52687,0.765277,0.909966,0.307996,0.473886,0.50259,0.215322,0.529948,0.799973,0.376325,0.715775,0.342733,0.479639,0.0453246,0.666929,0.836299,0.94171,0.533484,0.137049,0.759081,0.920664,0.33923,0.705883,0.535841,0.520787,0.132719,0.919626,0.984346,0.27295,0.708521,0.631391,0.0618782,0.737406,0.752537,0.579775,0.335137,0.201601,0.972914,0.900894,0.765839,0.0547,0.0164514,0.740993,0.527277,0.251632,0.148148,0.704446,0.362475,0.598968,0.618881,0.748738,0.265277,0.981694,0.0605398,0.886696,0.63264,0.0608014,0.247704,0.55933,0.816793,0.537291,0.0881987,0.402685,0.0203604,0.844633,0.379407,0.154613,0.878051,0.75799,0.699367,0.843181,0.466942,0.717175,0.710285,0.827023,0.888185,0.589554,0.309843,0.742438,0.725805,0.759603,0.0717471,0.076873,0.0450614,0.744104,0.398398,0.10452,0.284667,0.439723,0.550713,0.369345,0.438842,0.589083,0.591233,0.0829762,0.429241,0.431545,0.752054,0.667064,0.874586,0.182908,0.906196,0.139551,0.746425,0.0555732,0.15809,0.284358,0.935978,0.566327,0.989233,0.531111,0.0790365,0.467609,0.133574,0.820937,0.476405,0.365444,0.615843,0.293528,0.194434,0.641054,0.202232,0.292779,0.00845438,0.118084,0.672649,0.625757,0.729151,0.1483,0.912221,0.41934,0.942499,0.0252473,0.711661,0.828633,0.571065,0.351134,0.348094,0.250323,0.653417,0.431239,0.977641,0.383021,0.702897,0.207613,0.619828,0.33427,0.910767,0.0780864,0.132521,0.709849,0.409601,0.387033,0.951893,0.239161,0.544198,0.510886,0.0555516,0.547839,0.59369,0.531623,0.183779,0.592634,0.45912,0.478584,0.493898,0.927189,0.804892,0.028531,0.966671,0.70107,0.100382,0.438849,0.00239837,0.472557,0.22343,0.143984,0.951969,0.635646,0.723392,0.615536,0.671397,0.486966,0.929222,0.186708,0.806796,0.411864,0.62545,0.806418,0.111429,0.331343,0.864443,0.617184,0.114559,0.497294,0.683947,0.656055,0.968587,0.792963,0.499793,0.148338,0.672256,0.200797,0.628832,0.21127,0.806026,0.357003,0.265044,0.843992,0.218149,0.0902783,0.21202,0.201127,0.962774,0.842112,0.505528,0.73779,0.768862,0.957562,0.447964,0.501982,0.797555,0.311152,0.112427,0.372227,0.221239,0.686386,0.239894,0.145939,0.541824,0.8775,0.542328,0.431786,0.0421011,0.85908,0.113703,0.916188,0.341353,0.91166,0.415188,0.725494,0.747261,0.266181,0.601415,0.872621,0.724356,0.741848,0.635527,0.108556,0.19805,0.80675,0.860712,0.615184,0.483705,0.0226566,0.0897444,0.755968,0.213217,0.200236,0.0720583,0.234071,0.00041616,0.0908509,0.250184,0.150718,0.702248,0.419027,0.380099,0.20761,0.843373,0.965497,0.221815,0.239173,0.0215127,0.895742,0.618546,0.950469,0.73412,0.0907046,0.957151,0.313668,0.729204,0.955861,0.518881,0.962675,0.0244496,0.993737,0.833301,0.950113,0.855252,0.258073,0.924229,0.506051,0.734016,0.558906,0.712737,0.835142,0.475553,0.98417,0.596294,0.0133764,0.671471,0.249822,0.511939,0.50176,0.601821,0.622906,0.260607,0.874478,0.227703,0.754205,0.562356,0.0338864,0.329629,0.687798,0.847915,0.438503,0.170887,0.351121,0.0285988,0.272043,0.919505,0.0961456,0.451184,0.772276,0.953239,0.467331,0.289209,0.367707,0.759365,0.173961,0.494998,0.872642,0.573469,0.910608,0.247855,0.782671,0.903118,0.564073,0.984811,0.993649,0.018136,0.370537,0.776631,0.142311,0.734065,0.11574,0.103365,0.302371,0.118109,0.311481,0.0765737,0.993165,0.871957,0.393638,0.87852,0.918688,0.536458,0.646469,0.726448,0.993992,0.903698,0.303994,0.858555,0.303797,0.482983,0.270619,0.826127,0.626426,0.94386,0.912721,0.970562,0.613585,0.145537,0.00578785,0.695142,0.420393,0.776472,0.314676,0.479787,0.722333,0.11027,0.683616,0.122393,0.844907,0.448355,0.608084,0.327935,0.667418,0.362185,0.647478,0.489716,0.339961,0.443873,0.956729,0.678674,0.35788,0.203024,0.125166,0.7503,0.87743,0.0635107,0.684447,0.658448,0.636681,0.00141585,0.947961,0.721336,0.323726,0.0464906,0.468328,0.870649,0.371738,0.495961,0.479112,0.860813,0.968778,0.933866,0.40187,0.897017,0.503581,0.505477,0.178476,0.233038,0.613703,0.861076,|0.789031,0.306241,0.745958,0.115153,0.820566,0.148271,0.186594,0.725554,0.0129597,0.15912,0.914936,0.848563,0.398433,0.287775,0.678028,0.489259,0.442422,0.213193,0.290715,0.619324,0.561908,0.614242,0.439762,0.26681,0.331316,0.157552,0.950318,0.226875,0.65441,0.908742,0.921206,0.781031,0.353196,0.733116,0.435571,0.65425,0.748668,0.43559,0.981277,0.33722,0.833728,0.566423,0.826042,0.370188,0.352599,0.746792,0.187644,0.512168,0.0874969,0.922082,0.707786,0.511099,0.452856,0.840769,0.167517,0.546564,0.742803,0.484368,0.510015,0.460681,0.459398,0.934508,0.0869083,0.689824,0.504853,0.607328,0.898722,0.213274,0.978224,0.565804,0.480457,0.487247,0.925656,0.773025,0.473027,0.952242,0.176344,0.84816,0.314058,0.240981,0.849127,0.0707837,0.830426,0.836551,0.0916375,0.907585,0.358652,0.0580509,0.00487947,0.514754,0.540065,0.788095,0.14558,0.264423,0.72134,0.443056,0.764052,0.947674,0.293628,0.938867,0.67864,0.154729,0.527586,0.52039,0.584356,0.447485,0.408765,0.822778,0.3558,0.537253,0.846078,0.00466424,0.294831,0.766735,0.977417,0.436195,0.992749,0.41755,0.724645,0.973333,0.759858,0.299185,0.583626,0.895571,0.906929,0.966268,0.563638,0.268819,0.518657,0.0671595,0.830618,0.0570356,0.544211,0.656753,0.0621679,0.759513,0.67854,0.196968,0.289293,0.84532,0.384329,0.985934,0.783927,0.30707,0.858423,0.682408,0.98134,0.656085,0.678761,0.159764,0.351264,0.668641,0.951195,0.273274,0.233911,0.755864,0.163065,0.661474,0.190769,0.736615,0.396957,0.172449,0.174064,0.782146,0.421507,0.0116149,0.00351167,0.197132,0.472688,0.286162,0.519005,0.943408,0.621683,0.462408,0.625153,0.0298871,0.59804,0.636126,0.34689,0.373248,0.514449,0.637332,0.314775,0.73371,0.753525,0.0599726,0.13168,0.80465,0.383425,0.562307,0.574845,0.708271,0.0378179,0.224383,0.726973,0.416505,0.253911,0.503683,0.676715,0.822644,0.794064,0.716476,0.36917,0.647109,0.587107,0.750088,0.373138,0.849366,0.717849,0.756476,0.589105,0.474528,0.463814,0.619145,0.445674,0.77811,0.744824,0.125542,0.742787,0.293244,0.574509,0.581165,0.239123,0.423909,0.419241,0.348322,0.489302,0.422677,0.383179,0.385891,0.40822,0.948559,0.703907,0.386913,0.936059,0.92154,0.806742,0.848968,0.999868,0.267411,0.22274,0.296618,0.899071,0.17783,0.716756,0.720617,0.383341,0.943769,0.303575,0.440179,0.699221,0.0871331,0.254554,0.738278,0.0238515,0.912812,0.362683,0.0040645,0.240274,0.210021,0.00959802,0.789104,0.269945,0.941678,0.674866,0.660893,0.204463,0.86619,0.297983,0.306338,0.554645,0.720535,0.42433,0.673913,0.797949,0.850905,0.846379,0.385132,0.637589,0.58153,0.873342,0.0201772,0.897112,0.733642,0.893996,0.160863,0.257006,0.668361,0.267067,0.720857,0.301648,0.661957,0.152843,0.700333,0.0720609,0.915473,0.627835,0.828164,0.485825,0.668498,0.60064,0.606195,0.0129074,0.915063,0.319686,0.0334907,0.941559,0.0307613,0.559569,0.875821,0.646578,0.230215,0.553983,0.0595376,0.728146,0.643795,0.481095,0.461142,0.69826,0.0127147,0.668021,0.877523,0.481662,0.223856,0.989656,0.508058,0.242687,0.299566,0.70066,0.495228,0.176918,0.465051,0.815693,0.283271,0.170147,0.628604,0.86465,0.588668,0.490148,0.730205,0.986912,0.448276,0.3118,0.742461,0.601673,0.883564,0.343525,0.544785,0.262718,0.463498,0.689949,0.856386,0.717493,0.676788,0.00486434,0.0515935,0.531524,0.804597,0.0698182,0.00231493,0.816235,0.52036,0.203538,0.5889,0.524222,0.133485,0.00384623,0.619508,0.732511,0.384325,0.196732,0.873579,0.848991,0.617708,0.281519,0.971009,0.176702,0.0837704,0.321665,0.778711,0.438337,0.237249,0.63938,0.400138,0.257349,0.177641,0.373714,0.75234,0.973811,0.558993,0.745926,0.611762,0.693992,0.879295,0.922519,0.0975518,0.425286,0.4162,0.311753,0.899688,0.872595,0.221704,0.239611,0.475802,0.981956,0.0117673,0.599234,0.382592,0.490112,0.75565,0.354115,0.746934,0.925984,0.193544,0.389711,0.720502,0.0135034,0.492701,0.835849,0.470202,0.472889,0.477495,0.028966,0.906246,0.467247,0.282393,0.992532,0.705797,0.462097,0.483753,0.97544,0.268322,0.328977,0.329758,0.745905,0.449522,0.671894,0.209339,0.300667,0.496563,0.153008,0.217634,0.0470678,0.799616,0.0472684,0.543271,0.796445,0.443025,0.638433,0.259701,0.746617,0.234659,0.895651,0.914937,0.313332,0.863749,0.583749,0.147832,0.572888,0.612976,0.20437,0.469879,0.97216,0.679278,0.420594,0.363189,0.784563,0.590467,0.420921,0.764236,0.702659,0.306153,0.674568,0.751893,0.544762,0.620001,0.167143,0.597538,0.925386,0.954092,0.852565,0.785926,0.979269,0.0575547,0.446314,0.746535,0.677489,0.952555,0.301069,0.744353,0.454852,0.730139,0.231972,0.131725,0.670589,0.385466,0.718423,0.38508,0.759596,0.954349,0.619199,0.659311,0.60506,0.828332,0.151035,0.89557,0.860373,0.790939,0.736263,0.51725,0.0392179,0.294778,0.28645,0.590907,0.765738,0.437042,0.405225,0.082338,0.516147,0.858386,0.64528,0.617489,0.866553,0.696124,0.159183,0.125545,0.281875,0.68997,0.864414,0.749177,0.0769371,0.297326,0.819015,0.405486,0.848258,0.557296,0.517516,0.305594,0.290339,0.357593,0.343339,0.433568,0.0675005,0.0881357,0.800526,0.348018,0.240387,0.791969,0.147363,0.592008,0.661112,0.354384,0.105577,0.686862,0.0321483,0.866193,0.882187,0.691851,0.194566,0.995445,0.723681,0.583099,0.999588,0.182245,0.127967,0.775524,0.608118,0.0874168,0.703706,0.0895674,0.809432,0.568718,0.0659539,0.0394044,0.293399,0.69179,0.141238,0.135013,0.427583,0.0347926,0.958453,0.0534212,0.88873,0.261078,0.199214,0.0921404,0.294774,0.32764,0.0735741,0.329619,0.191405,0.417084,0.305746,0.793234,0.350571,0.596681,0.985454,0.778257,0.904477,0.0324491,0.193511,0.944447,0.981191,0.289176,0.572221,0.54902,0.0417688,0.990807,0.508889,0.193136,0.879698,0.999516,0.315292,0.362982,0.035602,0.338786,0.591107,0.0793344,0.896472,0.192333,0.358079,0.937974,0.739092,0.130747,0.332424,0.918943,0.496999,0.066759,0.0160155,0.934634,0.690059,0.335194,0.672472,0.902674,0.665206,0.0840561,0.411353,0.514664,0.609097,0.562357,0.840304,0.141051,0.856584,0.615358,0.511003,0.0849188,0.884912,0.215984,0.966431,0.969693,0.92542,0.225757,0.584483,0.501404,0.937272,0.26561,0.573276,0.391537,0.235449,0.629334,0.0763987,0.116394,0.729176,0.0686416,0.0673816,0.301719,0.208757,0.0778534,0.411916,0.746006,0.366726,0.490567,0.750622,0.162655,0.846114,0.103552,0.455519,0.280978,0.0333374,0.267406,0.579041,0.691721,0.325979,0.628305,0.288203,0.478017,0.674465,0.311406,0.985829,0.192301,0.218721,0.0889894,0.553439,0.155526,0.343805,0.0843448,0.450948,0.572205,0.00933462,0.907251,0.792748,0.913993,0.796894,0.768134,0.31453,0.720374,0.357889,0.0237948,0.441959,0.316126,0.847155,0.90269,0.841043,0.734099,0.66713,0.516506,0.429955,0.837786,0.864531,0.657797,0.438909,0.587532,0.787486,0.386564,0.988561,0.0220363,0.768234,0.863546,0.39377,0.138641,0.422331,0.786966,0.197359,0.551989,0.994103,0.0139138,0.759127,0.664292,0.39385,0.442232,0.963382,0.0257267,0.799323,0.159515,0.877607,0.388295,0.792809,0.090889,0.675001,0.233622,0.739073,0.888664,0.63829,0.136206,0.689265,0.649082,0.65746,0.955432,0.916686,0.703893,0.315501,0.869046,0.251713,0.192358,0.204097,0.0903752,0.219218,0.16077,0.916424,0.334157,0.425683,0.318348,0.826896,0.684826,0.857369,0.17381,0.174026,0.327341,0.10417,0.0139326,0.288004,0.421911,0.896214,0.553833,0.482983,0.971216,0.850185,0.537723,0.228192,0.855839,0.391836,0.840541,0.955064,0.41247,0.794621,0.293413,0.998165,0.145243,0.808036,0.16325,0.919637,0.273421,0.566191,0.110669,0.440825,0.613473,0.209278,0.598849,0.13594,0.227396,0.765266,0.669536,0.962265,0.145971,0.259148,0.0115945,0.94576,0.829724,0.00142562,0.539547,0.160986,0.566747,0.938274,0.78175,0.284498,0.727187,0.0880468,0.0566523,0.219521,0.599456,0.091276,0.831841,0.972964,0.561678,0.920433,0.961159,0.193572,0.955619,0.666303,0.90433,0.804655,0.504687,0.983164,0.178699,0.302859,0.110486,0.806898,0.620658,0.130944,0.242938,0.761893,0.00855309,0.155569,0.615774,0.0205155,0.0103764,0.186051,0.216461,0.101816,0.0416781,0.695128,0.782807,0.882132,0.695882,0.313731,0.357052,0.748384,0.960224,0.423428,0.261552,0.454574,0.85372,0.516756,0.28084,0.776501,0.656979,0.379485,0.570608,0.168066,0.698013,0.937776,0.484294,0.667958,0.222585,0.377063,0.0201929,0.915531,0.541263,0.0663198,0.857291,0.184878,0.497344,0.533214,0.0852789,0.109847,0.0987545,0.839302,0.253396,0.274893,0.0506403,0.702505,0.241961,0.620903,0.87341,0.561399,0.0665718,0.887834,0.348102,0.828163,0.767757,0.326798,0.215758,0.345196,0.812384,0.474381,0.0866625,0.599714,0.27105,0.970941,0.796545,0.0485145,0.647361,0.548763,0.366299,0.729538,0.408268,0.429774,0.704982,0.64957,0.470135,0.480868,0.211984,0.163547,0.0143967,0.898605,0.69399,0.697022,0.311184,0.390642,0.394222,0.660349,0.261096,0.862409,0.611045,0.545737,0.931598,0.235039,0.866341,0.87686,0.69861,0.626027,0.814595,0.402861,0.333458,0.262572,0.51894,0.175824,0.536715,0.246598,0.701623,0.679375,0.628761,0.676931,0.700478,0.755644,0.0096041,0.328736,0.252875,0.155532,0.925446,0.399923,0.56219,0.372457,0.910012,0.667793,0.880031,0.124407,0.853066,0.684748,0.687765,0.743198,0.843127,0.339793,0.194265,0.41611,0.115833,0.878662,0.952331,0.624147,0.952996,0.10663,0.0218836,0.572843,0.370975,0.59499,0.203708,0.566755,0.496737,0.599456,0.279415,|0.0497043,0.257738,0.518456,0.647925,0.0316889,0.581028,0.801809,0.846991,0.197573,0.855904,0.576762,0.24386,0.601748,0.0450066,0.487764,0.114958,0.562242,0.236866,0.178882,0.225099,0.978904,0.656155,0.153003,0.404078,0.644615,0.664707,0.40184,0.0741922,0.514735,0.213185,0.732696,0.311664,0.218463,0.47068,0.0168164,0.368927,0.413586,0.86474,0.676728,0.253299,0.267988,0.08933,0.387518,0.633584,0.469846,0.1745,0.299708,0.114127,0.828964,0.124622,0.17716,0.522178,0.0649716,0.240173,0.205503,0.864125,0.467564,0.0322405,0.508702,0.391922,0.448921,0.116409,0.697654,0.263617,0.216676,0.495089,0.143732,0.803455,0.243793,0.954301,0.352316,0.572215,0.0614682,0.586755,0.723835,0.83826,0.217245,0.494336,0.96855,0.488253,0.361144,0.265054,0.489112,0.950942,0.174286,0.399906,0.456549,0.561628,0.331485,0.0940855,0.66404,0.239915,0.415933,0.209387,0.570592,0.679731,0.510216,0.72467,0.785642,0.941087,0.0726892,0.270666,0.711722,0.774088,0.828508,0.458337,0.91717,0.236723,0.930737,0.122762,0.945691,0.380866,0.479288,0.966094,0.495567,0.934511,0.748156,0.214053,0.97756,0.95553,0.237519,0.678701,0.633315,0.866393,0.378582,0.320263,0.70362,0.133839,0.169679,0.0737686,0.0119156,0.102149,0.241573,0.482482,0.0748186,0.076178,0.561487,0.808521,0.737762,0.558617,0.865523,0.658556,0.244887,0.765874,0.554261,0.044899,0.965133,0.560888,0.0880534,0.605143,0.152921,0.884442,0.459445,0.149596,0.509792,0.100002,0.782331,0.927694,0.311228,0.367793,0.918731,0.602675,0.929847,0.123828,0.690527,0.356305,0.85357,0.982647,0.0527149,0.125654,0.456618,0.435158,0.0256283,0.802747,0.661046,0.430806,0.533201,0.0782317,0.254213,0.159272,0.362352,0.04814,0.950178,0.439652,0.567837,0.79313,0.27273,0.409501,0.445052,0.319072,0.426645,0.133635,0.0897692,0.662047,0.615888,0.700085,0.390484,0.81069,0.22584,0.168872,0.341028,0.962228,0.199424,0.0967739,0.47745,0.409487,0.276126,0.913849,0.11438,0.99904,0.244078,0.958956,0.49423,0.823959,0.397661,0.980348,0.9619,0.0931501,0.62796,0.13255,0.609432,0.33722,0.784669,0.495955,0.524308,0.251031,0.295674,0.572303,0.584237,0.679764,0.87265,0.100145,0.114495,0.805039,0.335411,0.00674146,0.210585,0.309902,0.11091,0.139123,0.100011,0.966202,0.386888,0.849322,0.781187,0.946148,0.536852,0.860986,0.372846,0.0909314,0.424169,0.552796,0.36527,0.0593413,0.275118,0.157165,0.191262,0.984367,0.0628901,0.225106,0.955126,0.531611,0.577417,0.736107,0.0697215,0.496745,0.696044,0.961514,0.043927,0.233098,0.420819,0.0783646,0.879107,0.941108,0.624033,0.354149,0.825425,0.137913,0.154013,0.408266,0.610886,0.526904,0.293558,0.0376934,0.238848,0.606081,0.694719,0.702261,0.209558,0.141322,0.81543,0.741875,0.998309,0.718893,0.140076,0.48102,0.418529,0.161314,0.543021,0.973356,0.849561,0.190169,0.541256,0.99838,0.405285,0.272801,0.737873,0.284815,0.389043,0.483349,0.987875,0.943276,0.923696,0.802479,0.400888,0.120511,0.898089,0.214845,0.62846,0.759955,0.726245,0.549862,0.57267,0.670023,0.691698,0.213066,0.892728,0.350139,0.0349019,0.862732,0.902252,0.403096,0.911047,0.669871,0.537276,0.477575,0.0193285,0.130654,0.59357,0.395286,0.110968,0.552734,0.80806,0.604434,0.591609,0.874954,0.590113,0.374649,0.326612,0.087022,0.920326,0.635947,0.853754,0.635332,0.899748,0.723813,0.487102,0.00103331,0.189864,0.371748,0.804455,0.873671,0.737713,0.209875,0.472797,0.722525,0.846581,0.211055,0.537658,0.960792,0.481563,0.162439,0.763171,0.151724,0.280747,0.883323,0.193519,0.739752,0.0417255,0.594899,0.350056,0.431503,0.141931,0.0920578,0.586741,0.522288,0.74777,0.359664,0.84278,0.0360069,0.369527,0.145365,0.335359,0.846367,0.0145225,0.429414,0.21947,0.399005,0.639233,0.744913,0.57735,0.984384,0.491298,0.730237,0.524055,0.671217,0.882629,0.405581,0.726281,0.414937,0.360933,0.0996445,0.645081,0.261799,0.536695,0.524986,0.576633,0.435657,0.506206,0.0420347,0.0830429,0.983897,0.232024,0.953259,0.0928746,0.392262,0.919274,0.966751,0.0763708,0.455215,0.702788,0.579098,0.809183,0.58359,0.932561,0.598071,0.357584,0.541056,0.0406105,0.653956,0.340564,0.811624,0.846425,0.068361,0.522762,0.818135,0.499651,0.255833,0.262108,0.857922,0.536592,0.641905,0.210021,0.0982639,0.840465,0.801818,0.903837,0.405486,0.0608819,0.924077,0.90056,0.516706,0.625077,0.00410575,0.787605,0.475336,0.895587,0.0106174,0.0463226,0.802602,0.773408,0.821151,0.77257,0.472654,0.919629,0.652612,0.754292,0.903992,0.989931,0.952883,0.567341,0.411221,0.634648,0.744275,0.966904,0.609693,0.973292,0.663098,0.933919,0.729628,0.140233,0.314049,0.866533,0.613939,0.178083,0.147142,0.752571,0.520172,0.740627,0.675443,0.449417,0.851526,0.566817,0.777261,0.664181,0.600309,0.568364,0.403382,0.107503,0.836006,0.74198,0.68176,0.86409,0.238065,0.337233,0.75708,0.561109,0.830914,0.0221838,0.464389,0.405607,0.773831,0.280431,0.00592762,0.0987672,0.754052,0.588248,0.280382,0.22494,0.164084,0.531558,0.770508,0.241128,0.0536128,0.18628,0.584875,0.585048,0.48909,0.608085,0.911838,0.84016,0.0363124,0.913616,0.00898844,0.146163,0.389323,0.389567,0.111776,0.394449,0.351553,0.372679,0.411227,0.639025,0.315077,0.839403,0.154947,0.0905228,0.712682,0.583583,0.909969,0.728166,0.965776,0.831988,0.120675,0.466428,0.597565,0.14803,0.416662,0.505621,0.80046,0.362127,0.335018,0.580926,0.959365,0.691913,0.436547,0.37223,0.802511,0.397684,0.882949,0.0808501,0.473793,0.872368,0.65453,0.805815,0.360734,0.199559,0.0992893,0.682893,0.908121,0.0576958,0.548202,0.767869,0.414998,0.234576,0.767117,0.69792,0.671259,0.0596105,0.233324,0.990794,0.744186,0.321139,0.700876,0.822826,0.615595,0.26667,0.030298,0.36597,0.366942,0.516461,0.765511,0.57643,0.255167,0.674559,0.847636,0.465599,0.604359,0.0416088,0.199156,0.633893,0.975668,0.788792,0.465452,0.992872,0.969118,0.909035,0.217271,0.922282,0.321763,0.447738,0.122799,0.445548,0.102959,0.233022,0.10555,0.487536,0.603604,0.800516,0.216919,0.038011,0.492572,0.669572,0.184318,0.747112,0.160866,0.131806,0.53178,0.855715,0.651162,0.726421,0.64733,0.247533,0.108945,0.0876343,0.132348,0.468017,0.669167,0.99639,0.665028,0.110326,0.0235986,0.369736,0.353939,0.584757,0.466721,0.351567,0.689275,0.264025,0.17159,0.791292,0.899469,0.425958,0.527978,0.561809,0.681475,0.691439,0.645717,0.929547,0.481094,0.519667,0.568556,0.253944,0.746812,0.229926,0.402432,0.80775,0.275907,0.47936,0.464746,0.00650275,0.962671,0.667703,0.934229,0.869311,0.892395,0.518446,0.926946,0.686308,0.849965,0.442992,0.115835,0.310155,0.972893,0.615547,0.652671,0.232946,0.28392,0.740487,0.0239852,0.171226,0.321036,0.486285,0.477388,0.428699,0.821293,0.487352,0.947032,0.269207,0.586069,0.374206,0.0402352,0.599808,0.198359,0.765744,0.208992,0.860569,0.436431,0.659102,0.386531,0.308562,0.12323,0.967727,0.291135,0.821019,0.430066,0.984999,0.346842,0.781318,0.440378,0.55991,0.881863,0.336487,0.82989,0.312579,0.841368,0.228565,0.274198,0.368451,0.700398,0.685514,0.336347,0.293238,0.890484,0.285914,0.00178862,0.4623,0.745796,0.120968,0.166359,0.138813,0.973782,0.530658,0.647418,0.476424,0.51341,0.237133,0.218711,0.411107,0.804162,0.03732,0.323428,0.794116,0.899508,0.927744,0.643658,0.793596,0.766266,0.131643,0.615686,0.323296,0.666395,0.444985,0.827577,0.345319,0.352184,0.369714,0.501091,0.222157,0.593487,0.785976,0.804051,0.0401996,0.36071,0.384286,0.158499,0.41018,0.744033,0.731492,0.66417,0.0766646,0.203512,0.521187,0.51213,0.811246,0.474657,0.604615,0.126729,0.219692,0.630723,0.463532,0.495275,0.970427,0.572092,0.351608,0.548166,0.263277,0.761046,0.755155,0.263646,0.0173289,0.993634,0.462434,0.369336,0.246986,0.119945,0.367056,0.866861,0.460968,0.856976,0.292318,0.330786,0.679584,0.0883418,0.763405,0.833562,0.879972,0.467473,0.18538,0.470738,0.229893,0.855196,0.974453,0.127044,0.971747,0.642313,0.278359,0.0295222,0.129966,0.733002,0.85065,0.325881,0.31317,0.659583,0.945943,0.623458,0.695628,0.348492,0.974515,0.711346,0.0470378,0.931366,0.90049,0.381606,0.443929,0.264825,0.0463306,0.483988,0.97787,0.941676,0.238279,0.291761,0.204028,0.445981,0.456943,0.817964,0.516146,0.594591,0.574268,0.0658256,0.985287,0.161891,0.290512,0.0104162,0.70443,0.891325,0.96193,0.119769,0.370516,0.0452434,0.654335,0.923986,0.509966,0.864947,0.846003,0.983531,0.968964,0.528212,0.621619,0.681607,0.711186,0.546772,0.438895,0.232881,0.141912,0.56374,0.847938,0.284552,0.507573,0.813412,0.259649,0.100232,0.0243568,0.1425,0.0693934,0.544108,0.696833,0.405312,0.717139,0.431228,0.372993,0.103298,0.522391,0.824856,0.970103,0.88529,0.871517,0.264081,0.532374,0.656645,0.467473,0.598789,0.0719759,0.214262,0.0790167,0.926369,0.769391,0.329581,0.461903,0.139994,0.12084,0.882472,0.25366,0.506177,0.73777,0.533518,0.139172,0.573533,0.915056,0.822482,0.0548817,0.00349557,0.744276,0.277626,0.42043,0.0368241,0.448425,0.300608,0.246271,0.698397,0.838016,0.213808,0.790886,0.0923906,0.713535,0.205065,0.682558,0.700886,0.452097,0.880245,0.191475,0.902863,0.150627,0.921772,0.718577,0.220053,0.844676,0.845273,0.425418,0.676669,0.914863,0.316576,0.728545,0.456378,0.6951,0.949348,0.207034,0.252481,0.535115,0.344812,0.0778774,0.269466,0.771184,0.07465,0.40987,0.543301,0.786742,0.322706,0.162383,0.81811,|0.328155,0.678418,0.419673,0.64214,0.364817,0.0551227,0.471142,0.280971,0.859999,0.478524,0.0536734,0.22295,0.481757,0.85856,0.91241,0.129731,0.860185,0.274846,0.587983,0.616189,0.56808,0.312514,0.807489,0.908476,0.0553823,0.823489,0.710728,0.464221,0.0286788,0.847329,0.958971,0.136198,0.749804,0.971255,0.849597,0.857483,0.590669,0.967283,0.399836,0.0238547,0.503541,0.316364,0.895986,0.944418,0.706794,0.0341465,0.787338,0.852731,0.486044,0.037576,0.943003,0.22085,0.433515,0.916728,0.0814821,0.966412,0.262959,0.931586,0.309484,0.0356491,0.26741,0.210091,0.748413,0.372912,0.0410684,0.122844,0.630792,0.382614,0.720244,0.45607,0.823965,0.343817,0.326989,0.705794,0.764335,0.208819,0.210465,0.524295,0.223627,0.539077,0.606892,0.448732,0.246581,0.369972,0.00463539,0.0838713,0.015081,0.0830592,0.189994,0.137176,0.52237,0.0813233,0.662089,0.775053,0.538998,0.10324,0.181067,0.780028,0.426138,0.150877,0.287544,0.105134,0.764724,0.312903,0.93811,0.959051,0.548424,0.971175,0.76758,0.746523,0.314889,0.495184,0.688798,0.717607,0.811184,0.821479,0.729373,0.686452,0.33178,0.0333567,0.870273,0.191525,0.0418903,0.81593,0.396363,0.817458,0.156996,0.25203,0.0735134,0.28766,0.979125,0.653067,0.805716,0.975974,0.466629,0.316413,0.908223,0.471154,0.587876,0.281894,0.0197555,0.250016,0.471546,0.885591,0.337282,0.969852,0.424999,0.97519,0.814641,0.212993,0.332791,0.397639,0.557285,0.0513898,0.128997,0.630004,0.752294,0.298257,0.123763,0.944028,0.706694,0.0589441,0.434926,0.0795583,0.298477,0.750315,0.599664,0.0199484,0.855375,0.719691,0.794608,0.967759,0.591375,0.284668,0.584814,0.520916,0.769627,0.717831,0.291606,0.455173,0.984619,0.648559,0.473839,0.452513,0.648456,0.425071,0.819287,0.183391,0.403515,0.150034,0.0286784,0.862846,0.990517,0.301065,0.728868,0.108526,0.323122,0.654032,0.866178,0.924814,0.447141,0.883979,0.0237262,0.769511,0.508438,0.148855,0.909687,0.251587,0.464096,0.993315,0.15865,0.457265,0.592201,0.0754461,0.265575,0.0280911,0.838558,0.743352,0.359473,0.706774,0.598132,0.678324,0.863534,0.472955,0.538993,0.321564,0.598318,0.505839,0.233229,0.316694,0.859112,0.568261,0.595483,0.311534,0.697142,0.120635,0.0264225,0.502036,0.921101,0.00996703,0.156581,0.782893,0.441097,0.424651,0.230384,0.355909,0.595211,0.856821,0.478933,0.0499871,0.445084,0.323691,0.300414,0.160304,0.418364,0.833341,0.720622,0.611137,0.867585,0.212392,0.967998,0.746749,0.841463,0.320257,0.702758,0.246147,0.645291,0.661007,0.716795,0.585994,0.349752,0.378658,0.495105,0.705534,0.975336,0.630358,0.626757,0.837467,0.0878177,0.652048,0.3605,0.0128723,0.969757,0.764565,0.712743,0.634733,0.113387,0.960077,0.736582,0.269708,0.0951276,0.131833,0.0682119,0.498639,0.649056,0.167569,0.0592495,0.410621,0.216811,0.698479,0.429021,0.151532,0.997425,0.613699,0.596761,0.0300169,0.472731,0.129924,0.864401,0.40111,0.595013,0.324398,0.15632,0.444635,0.92697,0.295266,0.36514,0.941127,0.795763,0.750011,0.00148153,0.935836,0.103566,0.148541,0.839155,0.569438,0.371716,0.533249,0.454731,0.450979,0.262671,0.46202,0.440025,0.831161,0.483284,0.0658209,0.415908,0.409286,0.32571,0.564016,0.437038,0.793142,0.728803,0.154486,0.761132,0.894538,0.137846,0.400735,0.0345747,0.532359,0.0910232,0.442002,0.739068,0.93542,0.956291,0.379039,0.212053,0.181135,0.245323,0.187757,0.413905,0.732823,0.650448,0.689326,0.43558,0.419683,0.462104,0.978603,0.78113,0.155391,0.926957,0.332901,0.366646,0.43053,0.280269,0.803227,0.34211,0.415127,0.966032,0.906778,0.896307,0.0982754,0.659628,0.0527034,0.0274075,0.722188,0.375981,0.00984168,0.491721,0.16217,0.480432,0.321145,0.344713,0.686188,0.685316,0.33056,0.375078,0.184604,0.424994,0.932788,0.0599206,0.164856,0.0803904,0.250288,0.943558,0.784905,0.151686,0.0253206,0.576802,0.283872,0.86539,0.369043,0.863335,0.057202,0.248013,0.557022,0.351736,0.432577,0.551217,0.580654,0.705768,0.429888,0.763602,0.347068,0.676683,0.437901,0.393348,0.590213,0.782373,0.890238,0.344944,0.379847,0.71312,0.205643,0.469454,0.40492,0.254522,0.856929,0.256568,0.997685,0.308904,0.943493,0.851699,0.366965,0.334907,0.878628,0.0863101,0.102614,0.0251395,0.230642,0.420924,0.409419,0.563215,0.362242,0.444318,0.409809,0.684373,0.692758,0.398314,0.569287,0.538261,0.586954,0.928178,0.846934,0.689358,0.786497,0.74344,0.0899066,0.177365,0.517767,0.270732,0.024393,0.751281,0.00615966,0.0846733,0.636466,0.569021,0.22398,0.698048,0.226183,0.62009,0.486865,0.87009,0.76631,0.202476,0.98848,0.341254,0.772312,0.401058,0.212801,0.562864,0.43721,0.83686,0.718261,0.647093,0.541177,0.780294,0.205894,0.256684,0.74219,0.219862,0.803502,0.832176,0.997994,0.382393,0.756103,0.876021,0.638387,0.220057,0.67192,0.476012,0.4864,0.639342,0.90417,0.494685,0.348245,0.388309,0.280362,0.790239,0.651315,0.784936,0.757547,0.553947,0.687176,0.260718,0.849596,0.155189,0.333653,0.33303,0.0518706,0.176654,0.488908,0.800683,0.439801,0.857194,0.249179,0.166768,0.314297,0.181984,0.523004,0.781486,0.465345,0.0609573,0.952658,0.95827,0.859476,0.0590096,0.939351,0.221613,0.334417,0.381015,0.405952,0.389253,0.278614,0.402538,0.338965,0.176095,0.151951,0.286062,0.779973,0.0952232,0.180073,0.904071,0.649293,0.192781,0.266792,0.110855,0.408317,0.84544,0.0824427,0.10524,0.416186,0.436377,0.474436,0.859962,0.302805,0.839204,0.804292,0.864163,0.423132,0.48907,0.940606,0.140782,0.138397,0.445882,0.629469,0.610597,0.26511,0.550151,0.261502,0.0366471,0.708455,0.320903,0.856512,0.419477,0.348479,0.810635,0.310065,0.385377,0.464811,0.77277,0.645918,0.813763,0.859303,0.68263,0.0710273,0.481025,0.5987,0.704448,0.258944,0.175827,0.382036,0.479907,0.832193,0.823555,0.445579,0.0636552,0.137455,0.411059,0.932759,0.372877,0.842621,0.180387,0.432732,0.629367,0.95219,0.29056,0.888101,0.86763,0.487782,0.600815,0.617131,0.614824,0.0615727,0.0335701,0.843321,0.802574,0.593977,0.0854673,0.563637,0.213047,0.772271,0.548803,0.906027,0.207556,0.379722,0.917798,0.931402,0.442029,0.75842,0.785591,0.881006,0.519407,0.64616,0.480949,0.740343,0.642557,0.879575,0.017344,0.124585,0.686075,0.579193,0.0558685,0.783845,0.526047,0.656907,0.445368,0.187481,0.9447,0.28008,0.940655,0.408175,0.737701,0.767183,0.0990127,0.817564,0.118873,0.565727,0.225934,0.875269,0.4104,0.729041,0.551147,0.569124,0.614535,0.200913,0.987324,0.929769,0.842679,0.379044,0.639341,0.0382353,0.850765,0.742088,0.0887195,0.584904,0.49919,0.200253,0.223734,0.927687,0.487001,0.101726,0.785211,0.937145,0.747124,0.721904,0.912023,0.069591,0.0219085,0.713894,0.0341388,0.886491,0.458347,0.0755364,0.0838706,0.00898165,0.0527642,0.598682,0.63368,0.12092,0.987805,0.103585,0.395973,0.52934,0.0431514,0.488097,0.268157,0.22034,0.572377,0.892857,0.997976,0.0538586,0.0213935,0.528374,0.903683,0.628751,0.457645,0.881858,0.444984,0.592252,0.667193,0.586904,0.598912,0.819031,0.875697,0.348447,0.944595,0.866367,0.724662,0.58676,0.430709,0.232821,0.252925,0.237938,0.656509,0.396094,0.836113,0.634362,0.2579,0.023365,0.211485,0.432119,0.411428,0.39102,0.0869458,0.25075,0.845159,0.430401,0.983956,0.0154985,0.20987,0.295115,0.794626,0.890634,0.308325,0.234694,0.431656,0.860142,0.817148,0.877959,0.455893,0.0920224,0.75517,0.305644,0.71216,0.649267,0.601768,0.197061,0.117075,0.450127,0.328112,0.169313,0.51344,0.889132,0.48419,0.825992,0.121043,0.0565717,0.805232,0.306574,0.0824544,0.0265309,0.275937,0.0661755,0.649493,0.495377,0.923036,0.188302,0.0261074,0.190036,0.853345,0.131057,0.00386328,0.872009,0.32255,0.947809,0.1633,0.647647,0.453892,0.678236,0.690478,0.411511,0.484653,0.349139,0.166937,0.107888,0.129175,0.288422,0.795655,0.0521755,0.338719,0.781383,0.106977,0.152666,0.842874,0.383171,0.181283,0.142822,0.576984,0.828834,0.743795,0.205035,0.00596005,0.654926,0.530556,0.00232172,0.735917,0.254343,0.175258,0.0484403,0.417193,0.526233,0.712947,0.836076,0.973853,0.197912,0.407688,0.636593,0.325374,0.203784,0.307229,0.843047,0.208548,0.998463,0.620388,0.675574,0.0355561,0.394208,0.918999,0.0626095,0.00852275,0.262565,0.0847543,0.971568,0.674946,0.587469,0.882127,0.359589,0.415591,0.187569,0.591627,0.421686,0.214681,0.553786,0.357866,0.927539,0.441037,0.299009,0.687228,0.841463,0.909489,0.966043,0.74007,0.950959,0.0954015,0.468826,0.0199901,0.957395,0.539616,0.171775,0.528575,0.153741,0.997786,0.133475,0.221981,0.692879,0.186875,0.53332,0.913383,0.726334,0.214343,0.428957,0.381128,0.608871,0.414914,0.0890483,0.600793,0.716786,0.483427,0.905235,0.893134,0.846233,0.564536,0.743612,0.164856,0.60112,0.391023,0.528814,0.196341,0.534999,0.859533,0.455528,0.964757,0.333888,0.511488,0.366319,0.632125,0.500396,0.712016,0.486079,0.322356,0.108761,0.106272,0.742788,0.293404,0.79076,0.424473,0.332442,0.0338231,0.371017,0.636655,0.168333,0.77117,0.772329,0.753492,0.865139,0.821404,0.719089,0.449872,0.244697,0.129841,0.516662,0.879255,0.211105,0.109657,0.458306,0.8193,0.23787,0.379807,0.477462,0.220084,0.184129,0.0866816,0.790607,0.942161,0.644478,0.788858,0.538222,0.957028,0.160877,0.0184707,0.788622,0.953855,0.362501,0.52308,0.756935,0.448317,0.0354916,0.636562,0.307204,0.4372,0.307845,0.135926,0.715553,0.677203,0.452299,0.0673702,0.523513,0.904127,0.308534,|0.833635,0.162489,0.370124,0.702471,0.934211,0.290316,0.543635,0.0273901,0.682554,0.994532,0.2376,0.931662,0.665826,0.0477527,0.150752,0.573021,0.98145,0.232604,0.988347,0.318225,0.783445,0.220586,0.158865,0.154686,0.175606,0.210691,0.32494,0.241006,0.246971,0.755889,0.566095,0.111175,0.056781,0.671886,0.105946,0.435945,0.563824,0.971284,0.328363,0.594853,0.306724,0.725559,0.701536,0.263723,0.150482,0.426026,0.775393,0.549708,0.94667,0.55728,0.856899,0.0614178,0.727411,0.663746,0.421584,0.198211,0.643228,0.360583,0.264711,0.249027,0.330987,0.778512,0.936819,0.539704,0.48637,0.0524608,0.682909,0.35468,0.968231,0.0974512,0.124828,0.784711,0.30564,0.104443,0.613668,0.52789,0.159295,0.0121998,0.683535,0.962094,0.140726,0.0814415,0.44637,0.504729,0.497914,0.859551,0.0705131,0.179482,0.418238,0.680117,0.920082,0.845325,0.85519,0.0789431,0.256321,0.34112,0.144323,0.761923,0.928708,0.524809,0.583255,0.063694,0.36808,0.866876,0.434305,0.706507,0.401327,0.149656,0.300224,0.448621,0.365113,0.645216,0.206589,0.638392,0.25137,0.209081,0.13656,0.854566,0.561912,0.479547,0.297485,0.390729,0.704474,0.778587,0.335957,0.205109,0.552475,0.0970144,0.020366,0.0554878,0.27361,0.577101,0.0979584,0.902786,0.37342,0.728038,0.423214,0.075455,0.550413,0.123953,0.870635,0.170178,0.390055,0.585222,0.527786,0.960799,0.533029,0.343661,0.0153068,0.902577,0.794356,0.826778,0.710187,0.172476,0.5014,0.913895,0.273419,0.657041,0.237388,0.936431,0.95818,0.486591,0.436864,0.341144,0.095241,0.691027,0.828066,0.694048,0.92622,0.815359,0.888214,0.620408,0.661056,0.6099,0.19936,0.111247,0.711069,0.553527,0.984209,0.0808357,0.177702,0.10524,0.640084,0.564392,0.799661,0.765711,0.344112,0.318266,0.842932,0.438352,0.145667,0.214345,0.0852259,0.0910171,0.0270487,0.260748,0.879342,0.741733,0.76193,0.731998,0.111326,0.946781,0.0776592,0.628764,0.228566,0.130378,0.0868533,0.503838,0.284972,0.978161,0.930757,0.78549,0.549041,0.544495,0.473001,0.550611,0.256354,0.113015,0.383534,0.711004,0.699652,0.175318,0.455507,0.657257,0.112828,0.796866,0.969908,0.444241,0.322295,0.283864,0.175431,0.327357,0.571234,0.596618,0.346267,0.521191,0.643231,0.139855,0.456862,0.390348,0.383027,0.0368925,0.975978,0.416373,0.0345224,0.585653,0.896283,0.582121,0.473249,0.178908,0.284946,0.61861,0.980997,0.694035,0.82676,0.734873,0.922213,0.829662,0.940801,0.98637,0.120155,0.444227,0.498149,0.281535,0.777906,0.97014,0.634878,0.56982,0.933657,0.484707,0.0707801,0.481831,0.648098,0.821715,0.130563,0.831778,0.944322,0.611354,0.978772,0.505399,0.880159,0.0330824,0.886082,0.093664,0.589215,0.825588,0.976412,0.493133,0.72348,0.917341,0.421106,0.747514,0.332909,0.194339,0.734087,0.945488,0.304221,0.0287009,0.329871,0.355935,0.569744,0.315643,0.299886,0.991393,0.286686,0.186099,0.132778,0.0619903,0.968057,0.376809,0.0266926,0.0771099,0.857882,0.434688,0.366775,0.987972,0.695082,0.845145,0.0987291,0.925137,0.0715419,0.524454,0.705598,0.229493,0.0758392,0.612108,0.649162,0.379745,0.292707,0.964082,0.500619,0.271975,0.49018,0.929924,0.571235,0.352304,0.0965897,0.34363,0.80051,0.873104,0.241733,0.583175,0.0126739,0.747607,0.250768,0.0245239,0.947877,0.912194,0.774904,0.387275,0.496583,0.40858,0.818488,0.0649501,0.949202,0.889211,0.34331,0.0861565,0.402997,0.523389,0.737185,0.413657,0.348063,0.113649,0.779464,0.0347801,0.42393,0.879331,0.257414,0.894221,0.317786,0.603531,0.621101,0.748578,0.0390948,0.438181,0.101553,0.0961599,0.64961,0.801549,0.931659,0.143772,0.824163,0.957111,0.0403115,0.794263,0.556248,0.444125,0.507773,0.843624,0.331,0.561847,0.974646,0.296942,0.460696,0.172635,0.921493,0.117569,0.904405,0.0732012,0.770576,0.550719,0.64063,0.770956,0.44121,0.189185,0.0181227,0.0368745,0.576107,0.30713,0.340267,0.49211,0.964012,0.0701939,0.800158,0.973597,0.839192,0.298286,0.8869,0.456214,0.692462,0.181557,0.233644,0.846722,0.242523,0.0710688,0.167687,0.870774,0.864524,0.399848,0.723589,0.555722,0.540234,0.0209442,0.18616,0.202255,0.271467,0.656445,0.515019,0.29687,0.103004,0.815866,0.711009,0.432001,0.767392,0.95751,0.147162,0.243027,0.625339,0.52155,0.365808,0.623782,0.306002,0.27625,0.907105,0.309452,0.0928375,0.197236,0.194086,0.293885,0.873834,0.327421,0.972933,0.716413,0.795432,0.888249,0.729594,0.767802,0.836895,0.237758,0.731552,0.934586,0.186629,0.50458,0.573088,0.555129,0.540765,0.434159,0.513984,0.540168,0.152484,0.152118,0.355833,0.149556,0.457381,0.509176,0.524795,0.182778,0.73472,0.658122,0.477543,0.137053,0.403617,0.661267,0.840592,0.0533082,0.52646,0.766994,0.46298,0.660094,0.0922675,0.91448,0.00949317,0.518377,0.84299,0.0313188,0.689097,0.522821,0.702674,0.307794,0.87504,0.396654,0.743167,0.314852,0.942266,0.0309381,0.481022,0.091938,0.994193,0.141123,0.65002,0.527248,0.5152,0.469812,0.521343,0.987622,0.384999,0.992665,0.423373,0.00182372,0.586948,0.635697,0.493592,0.872007,0.568597,0.0102788,0.00908631,0.385079,0.858439,0.170432,0.289303,0.190796,0.216261,0.196755,0.69061,0.435125,0.661247,0.329024,0.459617,0.754896,0.18086,0.349902,0.949682,0.687136,0.74209,0.324329,0.961813,0.349139,0.447433,0.351889,0.173154,0.325501,0.236984,0.893901,0.0910142,0.989059,0.196474,0.762107,0.537659,0.218455,0.9401,0.674034,0.565118,0.59961,0.834258,0.293457,0.0142363,0.36844,0.0810974,0.405164,0.204097,0.29613,0.684985,0.719931,0.48379,0.00232637,0.270765,0.594592,0.744716,0.0745425,0.405133,0.732796,0.15346,0.285167,0.901605,0.189443,0.44121,0.675431,0.999676,0.258388,0.143791,0.717124,0.342966,0.757726,0.683355,0.979959,0.0106817,0.96113,0.0381474,0.106758,0.543971,0.258207,0.427774,0.137144,0.199987,0.0456919,0.957138,0.913596,0.371103,0.65509,0.785251,0.646531,0.700312,0.64165,0.76502,0.348827,0.596474,0.548352,0.78934,0.283244,0.112508,0.279516,0.628911,0.932412,0.8934,0.407938,0.954856,0.51451,0.932347,0.652732,0.292139,0.313302,0.475589,0.0211067,0.496537,0.824963,0.934991,0.571499,0.864816,0.208047,0.19189,0.0429802,0.0713248,0.937605,0.0135575,0.320174,0.324188,0.102967,0.609551,0.921657,0.472568,0.779697,0.285945,0.4465,0.976918,0.92711,0.325473,0.831846,0.982294,0.286157,0.882051,0.0558335,0.95979,0.971123,0.986591,0.0639499,0.709297,0.946499,0.694598,0.894159,0.674611,0.577,0.162218,0.744304,0.372006,0.181122,0.778445,0.138689,0.254846,0.84765,0.531614,0.149167,0.346609,0.255578,0.854576,0.24284,0.295185,0.742873,0.283453,0.392087,0.983011,0.605494,0.415973,0.499271,0.844279,0.163536,0.142181,0.891182,0.85742,0.406108,0.025371,0.571125,0.304361,0.721648,0.917196,0.758532,0.35869,0.990679,0.258357,0.145898,0.230769,0.545581,0.0177707,0.668504,0.784328,0.451416,0.252453,0.994851,0.640068,0.636102,0.209164,0.814614,0.789819,0.990064,0.727705,0.68999,0.381456,0.95989,0.27939,0.136375,0.084154,0.709184,0.865022,0.597454,0.315384,0.933357,0.849685,0.800354,0.933406,0.951706,0.368319,0.666207,0.802969,0.362579,0.261878,0.322842,0.186462,0.179583,0.226161,0.0142868,0.825406,0.834823,0.493483,0.140371,0.997448,0.162455,0.653663,0.568104,0.453929,0.705025,0.221958,0.435853,0.10963,0.305866,0.762552,0.785386,0.943452,0.515654,0.530842,0.807304,0.963719,0.942591,0.908124,0.454791,0.764467,0.406715,0.596478,0.180185,0.346954,0.613579,0.0273774,0.962223,0.315531,0.651953,0.244685,0.847889,0.173773,0.216694,0.73421,0.260199,0.785209,0.47701,0.231987,0.0137349,0.592221,0.578077,0.522577,0.543823,0.241072,0.250572,0.818513,0.729165,0.986304,0.932249,0.916047,0.115833,0.457891,0.526577,0.245481,0.807997,0.346409,0.00996757,0.129039,0.0308803,0.325612,0.495338,0.787137,0.139953,0.962415,0.255155,0.140804,0.580861,0.320352,0.902048,0.0685166,0.814742,0.561909,0.574224,0.931235,0.272293,0.50661,0.103452,0.435951,0.924832,0.602246,0.98522,0.107102,0.194865,0.0619001,0.469366,0.110026,0.165997,0.737265,0.826811,0.327158,0.0948062,0.854695,0.0766851,0.330061,0.750598,0.413914,0.238436,0.194232,0.305929,0.801777,0.355657,0.752787,0.608383,0.861685,0.174537,0.66053,0.534945,0.75556,0.0989703,0.950553,0.490448,0.0888124,0.0927789,0.588821,0.434881,0.335678,0.901913,0.470212,0.483842,0.983826,0.829095,0.0127579,0.0132483,0.864262,0.579987,0.570571,0.737612,0.628545,0.33422,0.170424,0.49056,0.961706,0.802694,0.986515,0.978717,0.464089,0.977814,0.793163,0.161969,0.848602,0.927806,0.987632,0.771944,0.281701,0.244171,0.867601,0.103494,0.166785,0.305384,0.361604,0.249912,0.0741157,0.00254267,0.494221,0.280612,0.519432,0.885006,0.276828,0.801037,0.106238,0.730927,0.513432,0.75077,0.675428,0.102182,0.515471,0.0695959,0.791475,0.857004,0.614592,0.492261,0.418251,0.774277,0.764324,0.672206,0.190237,0.29662,0.369643,0.741084,0.297412,0.451249,0.911384,0.851988,0.448916,0.11372,0.666045,0.0225667,0.431604,0.522485,0.602429,0.534635,0.512165,0.261171,0.173938,0.494659,0.887956,0.989009,0.355255,0.908289,0.0496984,0.874093,0.872483,0.0602472,0.814967,0.573247,0.413016,0.308862,0.788802,0.85344,0.299318,0.196962,0.512688,0.849028,0.804527,0.479134,0.533327,0.954884,0.0414506,0.0701442,0.0820633,0.532116,0.880316,0.483076,0.217263,0.0340579,0.0680983,0.403799,0.845232,0.141852,0.338108,0.464237,0.0714719,0.191251,0.319348,0.175489,|0.307729,0.0218103,0.568986,0.393389,0.240443,0.84491,0.860828,0.509467,0.002729,0.0018301,0.664182,0.113229,0.0897201,0.534914,0.522862,0.426061,0.54045,0.961465,0.0946978,0.837542,0.530085,0.977029,0.601995,0.335012,0.252161,0.331763,0.313914,0.209377,0.6561,0.167397,0.933059,0.863724,0.225754,0.247376,0.152742,0.0894493,0.566809,0.35527,0.771497,0.565125,0.560442,0.47261,0.532074,0.221435,0.662495,0.603368,0.080203,0.977669,0.0952326,0.43898,0.348807,0.839044,0.127076,0.613053,0.280983,0.686219,0.71612,0.238069,0.741381,0.531935,0.224849,0.863471,0.459077,0.473981,0.276786,0.852065,0.955455,0.66038,0.47592,0.624536,0.711657,0.644945,0.000648439,0.438051,0.0112571,0.201493,0.13467,0.597203,0.153537,0.600778,0.66478,0.710492,0.241224,0.523608,0.235128,0.712288,0.0347065,0.0939014,0.946322,0.743249,0.346484,0.963463,0.736731,0.714899,0.2072,0.262592,0.436555,0.449555,0.657114,0.0250036,0.0374271,0.229974,0.928619,0.132955,0.1886,0.530038,0.754277,0.740917,0.133312,0.299188,0.031028,0.470886,0.789877,0.319448,0.976519,0.82546,0.257854,0.378044,0.439675,0.614849,0.358657,0.327082,0.8977,0.295011,0.0589703,0.123728,0.143424,0.831756,0.508063,0.924052,0.847738,0.896961,0.147915,0.434149,0.984086,0.267149,0.247364,0.101331,0.336073,0.237687,0.214027,0.711853,0.0392094,0.621274,0.905456,0.41253,0.134512,0.230573,0.602111,0.23709,0.403696,0.108002,0.558816,0.769102,0.277264,0.583153,0.971056,0.560946,0.906618,0.863711,0.18053,0.795228,0.627029,0.119082,0.0213671,0.621014,0.468352,0.885267,0.527589,0.134295,0.983898,0.813425,0.0102125,0.549097,0.0850843,0.231307,0.703187,0.498208,0.66824,0.253222,0.101707,0.853233,0.0248782,0.78004,0.95084,0.43589,0.110034,0.148971,0.633279,0.409184,0.862328,0.383844,0.384926,0.934961,0.223677,0.137535,0.755574,0.934744,0.140254,0.116145,0.901584,0.377019,0.655437,0.587818,0.489277,0.87881,0.340019,0.101328,0.663535,0.939569,0.0402151,0.852415,0.348122,0.143611,0.649087,0.647983,0.854685,0.635876,0.686206,0.730484,0.765055,0.37317,0.516902,0.916132,0.182616,0.0424098,0.70751,0.416264,0.0732741,0.978195,0.657001,0.234507,0.440235,0.442326,0.392634,0.307351,0.830453,0.409774,0.214371,0.158635,0.539989,0.629197,0.721773,0.0933644,0.526087,0.273739,0.0691213,0.900113,0.613728,0.933364,0.647923,0.906238,0.294358,0.910584,0.651185,0.208801,0.635067,0.98594,0.902959,0.272954,0.212593,0.546384,0.186181,0.505545,0.994132,0.467627,0.8703,0.467019,0.555103,0.196147,0.966802,0.00738078,0.762423,0.595393,0.518667,0.554019,0.305429,0.810093,0.80925,0.0748324,0.636707,0.209975,0.792392,0.554502,0.723276,0.0479824,0.773536,0.952451,0.405932,0.695255,0.807058,0.314799,0.866169,0.656223,0.304103,0.730255,0.163989,0.00660431,0.328269,0.730891,0.07717,0.95112,0.136383,0.104288,0.573626,0.874323,0.178882,0.68209,0.362354,0.466841,0.854731,0.330279,0.00462848,0.499542,0.752436,0.451292,0.866572,0.0969962,0.643252,0.739867,0.140512,0.105937,0.86769,0.219421,0.0417683,0.364315,0.663116,0.750967,0.800983,0.947446,0.116478,0.794773,0.513482,0.517925,0.734435,0.442462,0.0214339,0.805471,0.0266249,0.641371,0.40347,0.927325,0.97142,0.251888,0.0435829,0.307762,0.584675,0.0313435,0.268457,0.257592,0.533758,0.501603,0.386325,0.584475,0.919419,0.256694,0.844103,0.487176,0.74934,0.815001,0.871788,0.574079,0.603994,0.27755,0.445834,0.376383,0.999359,0.991878,0.719676,0.813405,0.487352,0.0444447,0.363738,0.736364,0.86779,0.967363,0.489081,0.347008,0.61014,0.861339,0.918798,0.696321,0.442278,0.292972,0.84568,0.575162,0.369627,0.151868,0.705629,0.579854,0.0547972,0.0878863,0.809746,0.157604,0.387082,0.26495,0.905873,0.7425,0.876867,0.939553,0.796272,0.85884,0.601704,0.0781124,0.298644,0.169444,0.00679392,0.843741,0.395141,0.531308,0.0160783,0.314307,0.898073,0.684847,0.158764,0.465259,0.829529,0.540792,0.994089,0.376007,0.223068,0.352501,0.295297,0.555663,0.912122,0.488251,0.839608,0.360369,0.105684,0.480817,0.594311,0.304124,0.22674,0.00578886,0.148012,0.309825,0.797304,0.890242,0.490628,0.955099,0.737342,0.0858654,0.661959,0.78848,0.153893,0.474265,0.475002,0.453346,0.91841,0.800761,0.910536,0.783325,0.603088,0.941978,0.659671,0.358103,0.637007,0.75355,0.791404,0.891034,0.917904,0.241984,0.0363411,0.790587,0.772978,0.604221,0.204353,0.229877,0.219397,0.89128,0.786268,0.320531,0.724282,0.155599,0.0971654,0.987027,0.824783,0.381923,0.0728784,0.376469,0.974301,0.104778,0.805214,0.138003,0.595542,0.361778,0.0171373,0.591352,0.602909,0.792401,0.548014,0.616084,0.314266,0.84023,0.120274,0.756842,0.857635,0.188476,0.278902,0.4535,0.882759,0.311421,0.586802,0.427146,0.202278,0.906793,0.281481,0.398289,0.541138,0.630338,0.70162,0.627179,0.940213,0.218613,0.750037,0.55255,0.316535,0.66585,0.84134,0.00437462,0.926192,0.911084,0.0702169,0.477653,0.496431,0.0758715,0.474775,0.42691,0.877675,0.993673,0.299799,0.0208663,0.174352,0.244437,0.600719,0.556066,0.176443,0.205179,0.708772,0.251157,0.0318086,0.185693,0.547496,0.795836,0.674328,0.903178,0.300833,0.48495,0.477081,0.0415298,0.146052,0.21968,0.218139,0.14823,0.62863,0.84965,0.23682,0.721356,0.725551,0.762757,0.631999,0.0844743,0.85266,0.0667058,0.154573,0.320318,0.835437,0.486705,0.240731,0.395203,0.129308,0.0907751,0.683491,0.0748007,0.452218,0.484617,0.481721,0.00177103,0.486523,0.101688,0.887756,0.620882,0.103373,0.339178,0.482432,0.609766,0.0718434,0.740209,0.928764,0.468742,0.744046,0.277627,0.908497,0.116653,0.515244,0.955785,0.267764,0.126919,0.325699,0.341812,0.421512,0.118748,0.355012,0.753685,0.187055,0.00881255,0.475164,0.450745,0.768064,0.572046,0.697301,0.458732,0.191282,0.461851,0.650467,0.110831,0.222641,0.855097,0.834771,0.142501,0.761425,0.94187,0.820543,0.217042,0.195268,0.556613,0.974235,0.912182,0.664348,0.753101,0.267331,0.977254,0.596408,0.714932,0.274579,0.170144,0.915551,0.664648,0.942199,0.401364,0.917169,0.863906,0.381625,0.873876,0.893277,0.972144,0.940226,0.340824,0.89885,0.654924,0.871884,0.650332,0.564811,0.0347764,0.814762,0.248617,0.48809,0.376719,0.644011,0.549884,0.194432,0.510209,0.827085,0.744839,0.572933,0.117869,0.566897,0.630036,0.40309,0.26298,0.641287,0.226833,0.670708,0.29909,0.325723,0.379512,0.753536,0.282454,0.390919,0.812269,0.308328,0.158566,0.259309,0.934777,0.892472,0.435835,0.367242,0.453315,0.202079,0.633582,0.749058,0.109486,0.125702,0.0594738,0.0316306,0.434357,0.711349,0.238781,0.818751,0.0119058,0.614746,0.561463,0.551678,0.858927,0.703524,0.644224,0.9991,0.0665876,0.271252,0.862322,0.435479,0.841168,0.83,0.317259,0.0498584,0.0526527,0.470206,0.474501,0.971896,0.186749,0.360547,0.811326,0.628792,0.432018,0.478675,0.577737,0.615691,0.272324,0.0331138,0.975289,0.323952,0.497708,0.742741,0.87101,0.554833,0.555025,0.0290843,0.833982,0.865691,0.97893,0.286057,0.0649342,0.349388,0.821095,0.646543,0.308852,0.990569,0.548109,0.786671,0.334996,0.0192667,0.710488,0.773249,0.39113,0.901985,0.549547,0.935635,0.0927746,0.752825,0.713584,0.854873,0.501275,0.590623,0.647973,0.641109,0.344523,0.0196672,0.577177,0.344437,0.835068,0.226976,0.81691,0.483966,0.775355,0.641635,0.654756,0.415331,0.470219,0.871381,0.838274,0.272186,0.258613,0.790538,0.875854,0.546905,0.664878,0.85534,0.247877,0.639691,0.220575,0.258631,0.446735,0.450201,0.54286,0.150076,0.25585,0.668142,0.123856,0.641865,0.618069,0.992633,0.381802,0.930255,0.585422,0.13494,0.227873,0.538198,0.489173,0.353656,0.131697,0.0764669,0.320876,0.496882,0.719433,0.122775,0.0780377,0.652053,0.143732,0.138517,0.259893,0.767793,0.0374807,0.885027,0.344054,0.460721,0.352344,0.0339244,0.594113,0.810342,0.206702,0.729105,0.698774,0.268862,0.924163,0.804163,0.788566,0.288063,0.499514,0.424903,0.444555,0.0416411,0.863757,0.203743,0.359425,0.259836,0.547248,0.462433,0.606162,0.325122,0.175083,0.598011,0.0221777,0.955079,0.197165,0.120724,0.398068,0.547287,0.399277,0.730483,0.945415,0.272015,0.56923,0.39826,0.588208,0.134164,0.887889,0.564044,0.287815,0.679093,0.557551,0.00296533,0.442286,0.0116649,0.835006,0.744538,0.319189,0.239789,0.70615,0.00356442,0.540245,0.037674,0.407823,0.658666,0.605385,0.570603,0.541972,0.827136,0.445884,0.346271,0.639377,0.779178,0.292626,0.473981,0.98602,0.107116,0.485491,0.0523066,0.254577,0.778446,0.205958,0.403637,0.512794,0.566542,0.915824,0.314802,0.493544,0.985164,0.675927,0.683623,0.272392,0.498483,0.88087,0.484249,0.780787,0.254187,0.157094,0.00949299,0.538777,0.506156,0.973174,0.767345,0.492761,0.707959,0.410283,0.348252,0.645048,0.345325,0.570168,0.0913564,0.321578,0.14882,0.654665,0.212945,0.7141,0.859816,0.809018,0.984887,0.276522,0.668804,0.415429,0.949895,0.38475,0.0265242,0.856226,0.129271,0.0159307,0.18794,0.663512,0.436786,0.852473,0.544712,0.542738,0.624077,0.293171,0.770716,0.868869,0.567932,0.238359,0.155251,0.238548,0.413282,0.309979,0.0667055,0.129352,0.88875,0.722589,0.452426,0.567455,0.348288,0.647248,0.117574,0.0988382,0.568965,0.457013,0.502474,0.131284,0.840169,0.818112,0.965406,0.975071,0.78796,0.517468,0.962063,0.304148,0.194962,0.697317,0.232274,0.898657,0.818251,0.873519,0.821656,0.0565715,0.996186,0.807184,0.718468,0.375692,0.0043413,0.521346,0.330065,0.896853,|0.414091,0.783698,0.0154938,0.773726,0.556767,0.156713,0.00304943,0.538394,0.952627,0.914378,0.943828,0.149215,0.993713,0.355656,0.815851,0.0651147,0.949033,0.269514,0.656644,0.361309,0.810802,0.331289,0.642684,0.452426,0.424895,0.142196,0.475725,0.264997,0.805143,0.943781,0.678217,0.272363,0.187576,0.330162,0.353348,0.497556,0.770816,0.0776722,0.205596,0.378217,0.691119,0.771704,0.0953019,0.841286,0.836513,0.246231,0.572642,0.551593,0.700708,0.998595,0.587252,0.995453,0.65966,0.409775,0.5398,0.481803,0.310693,0.554821,0.0333575,0.884132,0.440186,0.842767,0.473268,0.434052,0.402906,0.814945,0.667837,0.852425,0.734966,0.611381,0.827771,0.442388,0.84537,0.765493,0.380269,0.740645,0.833543,0.629551,0.832958,0.289166,0.362968,0.413303,0.70087,0.627752,0.139357,0.985639,0.939183,0.438801,0.672817,0.709187,0.611993,0.696348,0.545645,0.75426,0.00615537,0.978449,0.301682,0.1282,0.80947,0.202716,0.747766,0.176741,0.132207,0.275302,0.623885,0.705427,0.264115,0.272733,0.610125,0.244653,0.730247,0.289265,0.91995,0.160556,0.389629,0.661381,0.478662,0.398464,0.205132,0.727759,0.860918,0.274428,0.0238721,0.661255,0.686215,0.198686,0.883442,0.869256,0.404217,0.686976,0.29297,0.147343,0.20477,0.188169,0.319726,0.371195,0.546986,0.0496163,0.185991,0.0785494,0.0309475,0.908107,0.345701,0.535509,0.097835,0.0674312,0.150065,0.325474,0.5186,0.540956,0.139559,0.568215,0.504268,0.303934,0.363592,0.403553,0.266319,0.458867,0.817244,0.523102,0.771423,0.146551,0.674131,0.0454424,0.650711,0.295577,0.290154,0.164531,0.266214,0.99539,0.0567549,0.205335,0.441072,0.750893,0.265793,0.69743,0.596961,0.267423,0.731145,0.305295,0.625849,0.56097,0.162438,0.505514,0.153517,0.98376,0.4549,0.433936,0.377825,0.307489,0.93859,0.54946,0.496978,0.607821,0.144818,0.00677413,0.336005,0.493951,0.0927242,0.433948,0.0575251,0.638465,0.369545,0.331698,0.0749665,0.211507,0.0180401,0.746284,0.39097,0.430805,0.754226,0.59818,0.680421,0.805099,0.133092,0.753143,0.0800865,0.338861,0.471376,0.0992451,0.644848,0.523068,0.000796854,0.162662,0.119755,0.856117,0.284521,0.428629,0.305481,0.119541,0.642768,0.27521,0.614127,0.0900645,0.232831,0.756885,0.253476,0.729851,0.446011,0.917914,0.0761571,0.953403,0.767752,0.880909,0.564057,0.356053,0.0683548,0.396192,0.532636,0.185033,0.798021,0.384905,0.177708,0.364313,0.16872,0.0584003,0.382876,0.339681,0.686546,0.813561,0.568973,0.509549,0.322666,0.229293,0.963811,0.219817,0.0478704,0.827285,0.180284,0.880464,0.0927492,0.242342,0.446366,0.712761,0.392589,0.18936,0.767315,0.821456,0.112485,0.996847,0.602837,0.882322,0.213466,0.919256,0.508864,0.65072,0.869162,0.537833,0.595014,0.885363,0.662011,0.450205,0.308471,0.726582,0.231809,0.474591,0.088163,0.471609,0.910424,0.530873,0.326471,0.578643,0.360182,0.233012,0.624941,0.290288,0.0970251,0.652967,0.615291,0.933477,0.109274,0.0280941,0.579255,0.224122,0.595907,0.671541,0.24829,0.787744,0.721429,0.778267,0.601196,0.476599,0.433136,0.72251,0.709515,0.0842113,0.269303,0.281273,0.875895,0.465726,0.103992,0.17108,0.224971,0.700987,0.542413,0.0140289,0.65019,0.805377,0.625194,0.461209,0.155282,0.335247,0.0400858,0.198292,0.461028,0.318156,0.535136,0.427599,0.0313705,0.538977,0.0884823,0.157122,0.368165,0.602941,0.893275,0.83974,0.485106,0.230906,0.102391,0.751399,0.0837187,0.779651,0.108633,0.204695,0.305248,0.753097,0.877517,0.509786,0.391265,0.0447633,0.942362,0.815692,0.0321119,0.083155,0.325161,0.710743,0.207356,0.586499,0.198288,0.224519,0.536939,0.488953,0.985994,0.705415,0.311977,0.380113,0.111697,0.669365,0.417956,0.516402,0.790676,0.172009,0.575963,0.612193,0.899641,0.725082,0.355644,0.910291,0.715587,0.412907,0.781993,0.422093,0.718464,0.946098,0.776824,0.553411,0.854137,0.91276,0.0482007,0.191886,0.630238,0.994374,0.355837,0.549162,0.0871774,0.326198,0.603111,0.667,0.927478,0.0172493,0.0723086,0.763401,0.30915,0.605998,0.26198,0.562471,0.124855,0.884498,0.475652,0.518618,0.930421,0.0301412,0.533674,0.600059,0.531903,0.951994,0.210503,0.753867,0.452441,0.124714,0.652222,0.594851,0.579838,0.660071,0.766017,0.349599,0.45874,0.417942,0.514081,0.575946,0.8873,0.258418,0.990475,0.293821,0.729351,0.402599,0.177865,0.528554,0.793106,0.486826,0.291409,0.221864,0.543891,0.27318,0.0887082,0.588778,0.580288,0.546125,0.156552,0.534338,0.740006,0.161845,0.717603,0.352848,0.57409,0.0900847,0.198558,0.523193,0.773358,0.803553,0.902666,0.714638,0.416148,0.587286,0.948221,0.5646,0.604388,0.568307,0.474351,0.467859,0.263458,0.76532,0.619534,0.961772,0.805456,0.851727,0.314974,0.739526,0.914323,0.844101,0.609737,0.518721,0.996864,0.6638,0.604022,0.818387,0.109808,0.897693,0.850015,0.132453,0.104329,0.853401,0.41738,0.826907,0.309482,0.62254,0.459631,0.630659,0.184862,0.581725,0.460437,0.492992,0.686904,0.702577,0.138728,0.929616,0.61908,0.524704,0.349167,0.972126,0.0778795,0.302082,0.378422,0.559658,0.213917,0.0829943,0.881621,0.164812,0.539971,0.507074,0.153377,0.315493,0.688297,0.0771244,0.753423,0.0760064,0.497299,0.896525,0.926671,0.389521,0.96595,0.558262,0.844098,0.98445,0.537713,0.508428,0.11386,0.792658,0.534014,0.751419,0.159014,0.0832288,0.647057,0.0121788,0.524537,0.169168,0.336596,0.0640345,0.173297,0.676636,0.267016,0.987151,0.860464,0.534055,0.566098,0.581981,0.992979,0.546873,0.527758,0.322312,0.00957966,0.0965441,0.316746,0.692353,0.639391,0.723883,0.777004,0.915904,0.289367,0.277244,0.156869,0.551738,0.111427,0.666973,0.167975,0.279073,0.0802421,0.0196568,0.568677,0.0053485,0.744328,0.440319,0.583629,0.425289,0.871378,0.0459271,0.834033,0.5332,0.576438,0.529628,0.806032,0.955876,0.361199,0.0810801,0.309054,0.263702,0.114151,0.654592,0.523412,0.7613,0.682326,0.98115,0.960352,0.471636,0.538267,0.322122,0.887739,0.201524,0.00195849,0.712166,0.264435,0.236825,0.0836841,0.850313,0.550318,0.375469,0.204064,0.655887,0.610178,0.967363,0.628984,0.269105,0.152049,0.595265,0.572283,0.151343,0.76021,0.198904,0.552355,0.878242,0.823668,0.78992,0.967143,0.85337,0.340097,0.915924,0.842689,0.507172,0.370223,0.0228775,0.269831,0.86676,0.421975,0.807776,0.895584,0.515123,0.470404,0.155035,0.171249,0.697464,0.483304,0.957381,0.534135,0.285023,0.781988,0.465768,0.587971,0.688845,0.219338,0.809443,0.212228,0.632579,0.33612,0.453257,0.820549,0.736708,0.416422,0.20967,0.128426,0.637556,0.529639,0.2018,0.228011,0.619861,0.657703,0.946771,0.130729,0.692563,0.0923199,0.22057,0.991226,0.686724,0.928154,0.156027,0.595122,0.410907,0.847001,0.464065,0.184293,0.803005,0.67903,0.498923,0.133901,0.635776,0.136784,0.487294,0.614888,0.747711,0.159164,0.722369,0.230627,0.655823,0.313581,0.450464,0.0911103,0.435596,0.310651,0.0409676,0.874486,0.390325,0.591801,0.86587,0.368665,0.162347,0.755522,0.948783,0.691928,0.991715,0.359998,0.824896,0.766879,0.149214,0.27597,0.313827,0.979302,0.151865,0.146959,0.223464,0.987538,0.694354,0.509519,0.502832,0.0501788,0.568911,0.366959,0.867415,0.897657,0.324989,0.159203,0.812469,0.401822,0.487923,0.103008,0.878983,0.271344,0.609063,0.0264955,0.560641,0.251853,0.561431,0.640015,0.29049,0.893912,0.879092,0.806064,0.88093,0.851411,0.707209,0.762525,0.594741,0.831093,0.930626,0.367889,0.219642,0.0821969,0.51812,0.698762,0.542977,0.8927,0.458639,0.071268,0.470243,0.994143,0.756757,0.982556,0.679816,0.874606,0.746506,0.213469,0.885724,0.334185,0.301496,0.150455,0.507186,0.861352,0.574095,0.438315,0.0490547,0.907958,0.123712,0.827959,0.366415,0.583034,0.757738,0.121552,0.870356,0.567528,0.183847,0.45258,0.956344,0.892306,0.823677,0.649145,0.669594,0.0597436,0.759791,0.43544,0.350397,0.742566,0.961537,0.117938,0.0192335,0.572158,0.917804,0.92948,0.915489,0.923651,0.602653,0.160768,0.993397,0.779916,0.794432,0.641696,0.731759,0.293762,0.10878,0.574684,0.988878,0.00543344,0.351025,0.500105,0.507396,0.0639032,0.146751,0.53175,0.80947,0.597402,0.139481,0.402494,0.469233,0.935816,0.951652,0.543589,0.223476,0.800604,0.924908,0.0160985,0.300629,0.239572,0.987081,0.693796,0.801368,0.115521,0.0929771,0.271729,0.742465,0.563624,0.51367,0.887748,0.88236,0.498677,0.307702,0.363961,0.990975,0.699886,0.456704,0.694596,0.23984,0.519589,0.646097,0.252392,0.141868,0.781412,0.488488,0.389363,0.466984,0.0706073,0.836853,0.109417,0.945654,0.702204,0.295401,0.821129,0.997285,0.607599,0.52454,0.578179,0.877329,0.897276,0.316308,0.152082,0.918834,0.871406,0.488926,0.266713,0.806999,0.0481219,0.287793,0.893379,0.0384675,0.753048,0.208889,0.983593,0.747333,0.611417,0.230338,0.0936235,0.438464,0.531914,0.895069,0.968162,0.238766,0.798377,0.0417631,0.412467,0.472902,0.375504,0.293642,0.690459,0.545647,0.24261,0.836472,0.848933,0.310503,0.941271,0.259321,0.320361,0.409298,0.433038,0.446565,0.348073,0.361335,0.532347,0.630246,0.0306709,0.148862,0.812944,0.568546,0.560027,0.443218,0.0832791,0.98498,0.6023,0.763435,0.459188,0.0960736,0.867578,0.313914,0.585136,0.941408,0.175935,0.499275,0.532284,0.33017,0.34968,0.448893,0.408686,0.493734,0.172514,0.821545,0.441111,0.691354,0.412104,0.58089,0.647328,0.233467,0.188186,0.639133,0.443777,0.683437,0.095992,0.00659972,0.134398,0.453917,0.246891,0.504663,0.00221747,0.765817,0.888649,0.466275,|0.552052,0.0106664,0.439598,0.795777,0.68151,0.479195,0.722432,0.111994,0.157363,0.994262,0.399403,0.119591,0.742068,0.803086,0.659488,0.750261,0.515898,0.784042,0.398812,0.136418,0.607299,0.0391299,0.907342,0.138435,0.846781,0.0203906,0.646251,0.036987,0.794161,0.68428,0.555918,0.53395,0.626508,0.244496,0.179283,0.216118,0.384773,0.26603,0.587614,0.614171,0.955394,0.990188,0.371931,0.451886,0.290428,0.906035,0.568119,0.160645,0.15679,0.191602,0.670846,0.492123,0.325666,0.245533,0.87119,0.41581,0.806417,0.044286,0.0819607,0.377153,0.859054,0.945985,0.370059,0.878776,0.969402,0.317477,0.0173481,0.247486,0.129757,0.930839,0.253352,0.215367,0.877682,0.22687,0.573009,0.621297,0.10835,0.184848,0.776618,0.393303,0.596856,0.636543,0.827287,0.165144,0.589296,0.686701,0.693182,0.557452,0.672247,0.769443,0.702493,0.0642778,0.164561,0.873793,0.376734,0.15829,0.305939,0.552704,0.983095,0.089559,0.224011,0.24707,0.769844,0.285453,0.231128,0.362493,0.833765,0.964282,0.44635,0.101108,0.210619,0.399758,0.848637,0.577941,0.00674903,0.695469,0.558182,0.347214,0.236792,0.180387,0.662493,0.791657,0.70072,0.305203,0.32637,0.10372,0.107383,0.0197996,0.714992,0.905311,0.284662,0.520044,0.584283,0.120368,0.79392,0.874629,0.745783,0.713655,0.103231,0.181546,0.499393,0.434654,0.954149,0.789021,0.0662227,0.128306,0.433051,0.918777,0.99798,0.0884271,0.86144,0.935217,0.200618,0.842399,0.425604,0.741825,0.469567,0.845862,0.694854,0.613224,0.864607,0.51681,0.31038,0.207762,0.701791,0.302196,0.0182157,0.560431,0.249836,0.448821,0.205023,0.935832,0.236359,0.86257,0.758338,0.454598,0.0652099,0.82557,0.924852,0.0314909,0.852653,0.45208,0.515339,0.809671,0.314393,0.111828,0.0677389,0.61119,0.239535,0.27043,0.711838,0.507579,0.1472,0.427706,0.248693,0.291919,0.880885,0.156427,0.241198,0.979137,0.55367,0.158865,0.549892,0.0264488,0.15507,0.840304,0.827378,0.593628,0.844871,0.633015,0.274097,0.667341,0.94751,0.423541,0.901012,0.283495,0.279961,0.201871,0.987111,0.49289,0.330523,0.70368,0.400236,0.732478,0.907733,0.514816,0.589859,0.654068,0.220052,0.092957,0.688226,0.0116913,0.602235,0.754624,0.495477,0.395365,0.399044,0.873503,0.110754,0.716585,0.802075,0.506243,0.201531,0.137688,0.152648,0.638028,0.925875,0.540968,0.0931773,0.603541,0.3538,0.0136585,0.424023,0.209038,0.343616,0.187517,0.279213,0.163989,0.174667,0.272111,0.833568,0.928701,0.768601,0.0924283,0.15747,0.778086,0.701875,0.23363,0.662289,0.720882,0.394211,0.272244,0.469273,0.700739,0.74117,0.960761,0.745177,0.575508,0.0572687,0.242619,0.547527,0.570261,0.760818,0.0331522,0.256787,0.326414,0.646302,0.552496,0.614946,0.662314,0.361894,0.202979,0.933022,0.204646,0.345815,0.483396,0.318925,0.495729,0.360564,0.554608,0.571136,0.102207,0.715522,0.0414832,0.132558,0.6725,0.426115,0.665331,0.0676929,0.105579,0.0860944,0.335582,0.400929,0.463817,0.526278,0.572901,0.137831,0.969518,0.473319,0.371428,0.205994,0.349721,0.982946,0.642579,0.823935,0.378008,0.837099,0.275817,0.0432568,0.835483,0.579428,0.813525,0.203459,0.402825,0.181136,0.700132,0.989169,0.477946,0.689949,0.81024,0.727573,0.0904312,0.320589,0.635585,0.596769,0.565034,0.672102,0.438964,0.20028,0.373024,0.188569,0.0279152,0.739707,0.948605,0.132374,0.712785,0.714837,0.892873,0.018919,0.301678,0.680117,0.74989,0.994431,0.517915,0.139837,0.467084,0.0161801,0.599651,0.0776079,0.776028,0.78379,0.788937,0.980892,0.326718,0.77844,0.893721,0.239274,0.546203,0.133016,0.345521,0.385946,0.0957245,0.862268,0.742712,0.4639,0.392252,0.280282,0.544458,0.829747,0.710946,0.618483,0.0818207,0.329567,0.280219,0.278885,0.464574,0.366578,0.628565,0.454244,0.776341,0.898056,0.658718,0.475125,0.76293,0.469925,0.630775,0.131498,0.304077,0.160399,0.967283,0.897718,0.478292,0.424451,0.01826,0.333437,0.197493,0.538662,0.925945,0.333101,0.539169,0.0212895,0.615787,0.213955,0.77134,0.124022,0.983683,0.988584,0.551184,0.203158,0.431928,0.168115,0.911488,0.945797,0.0894577,0.949713,0.429651,0.303745,0.34465,0.876391,0.787297,0.170491,0.984137,0.0157994,0.214001,0.727466,0.902551,0.808883,0.475994,0.287559,0.995218,0.611897,0.661256,0.871427,0.519807,0.158806,0.0325456,0.85743,0.630262,0.168034,0.169921,0.780996,0.918299,0.51516,0.222391,0.142261,0.43226,0.360928,0.944386,0.645787,0.329493,0.732234,0.410089,0.983712,0.0319309,0.483381,0.940378,0.243233,0.545016,0.210067,0.112622,0.0100181,0.497627,0.0790231,0.355791,0.968459,0.490073,0.8667,0.101019,0.0635126,0.108153,0.0148177,0.404243,0.949194,0.416725,0.73964,0.356769,0.475151,0.797978,0.467369,0.509529,0.476986,0.623745,0.109936,0.342593,0.697459,0.993123,0.923576,0.100703,0.78016,0.196054,0.596002,0.0816952,0.0885177,0.342144,0.983211,0.350027,0.352293,0.292354,0.3921,0.433196,0.473771,0.499322,0.38786,0.0505504,0.259118,0.447838,0.339353,0.709847,0.47259,0.688681,0.526098,0.853147,0.841557,0.638118,0.787787,0.203171,0.588946,0.215854,0.864844,0.699858,0.28533,0.774305,0.163421,0.283779,0.293782,0.17812,0.906925,0.0799577,0.779957,0.643051,0.497055,0.391002,0.415929,0.801438,0.783998,0.941288,0.492655,0.0927563,0.365781,0.732738,0.760396,0.209711,0.902603,0.864449,0.836238,0.287143,0.855336,0.967456,0.116165,0.567374,0.484539,0.0113388,0.893043,0.51764,0.287197,0.142129,0.522509,0.760083,0.130441,0.486528,0.998435,0.536963,0.341803,0.397907,0.628184,0.579555,0.854042,0.905091,0.67734,0.160138,0.480788,0.290305,0.485654,0.734422,0.980012,0.0695867,0.604891,0.383348,0.267199,0.761687,0.720856,0.499128,0.394676,0.96737,0.855829,0.869832,0.878856,0.36945,0.881553,0.948413,0.23371,0.919312,0.79928,0.824882,0.0219847,0.25426,0.814962,0.632568,0.40843,0.339915,0.946594,0.00865662,0.440372,0.267896,0.704752,0.203918,0.820005,0.533096,0.0587683,0.187312,0.0105591,0.128246,0.414233,0.298619,0.548194,0.661031,0.316343,0.669287,0.387383,0.661499,0.315331,0.0369477,0.853595,0.399599,0.375281,0.797459,0.295072,0.755165,0.981964,0.884229,0.853098,0.254708,0.651305,0.848514,0.212243,0.844788,0.336688,0.854751,0.0329955,0.781942,0.412367,0.0047031,0.874234,0.682898,0.616589,0.168828,0.036348,0.416385,0.296158,0.66722,0.549406,0.86105,0.22872,0.234569,0.144434,0.825893,0.661371,0.457737,0.164215,0.174991,0.161972,0.663631,0.808305,0.836628,0.725018,0.982632,0.535215,0.099614,0.801504,0.511108,0.225902,0.321356,0.514973,0.469015,0.197464,0.276369,0.156331,0.815539,0.00294405,0.0317196,0.99648,0.600624,0.269022,0.220258,0.425922,0.718344,0.240415,0.330465,0.636121,0.58997,0.267679,0.201786,0.712184,0.544622,0.448357,0.808332,0.367028,0.219592,0.340989,0.324782,0.637215,0.926903,0.600457,0.958254,0.803842,0.366654,0.300092,0.270693,0.603019,0.860923,0.748155,0.40109,0.821364,0.79253,0.155671,0.363803,0.575378,0.370484,0.158266,0.55555,0.664535,0.62399,0.417807,0.0480273,0.110392,0.833456,0.547853,0.489916,0.235245,0.399017,0.348469,0.786492,0.477291,0.90039,0.740562,0.155213,0.870065,0.195546,0.862141,0.180983,0.860921,0.301419,0.125893,0.431952,0.163554,0.163327,0.610203,0.451713,0.855189,0.544911,0.867665,0.404337,0.585258,0.89149,0.423671,0.348961,0.725961,0.225383,0.00399846,0.653005,0.899809,0.367021,0.797433,0.615255,0.387105,0.865448,0.520056,0.361508,0.488143,0.291989,0.672279,0.81449,0.935797,0.763862,0.537562,0.741122,0.460815,0.476104,0.822112,0.985468,0.715373,0.595407,0.781378,0.20267,0.43053,0.536749,0.410689,0.554408,0.805178,0.191835,0.274151,0.800396,0.476232,0.632262,0.74304,0.96809,0.737974,0.810381,0.760063,0.421289,0.819162,0.166542,0.0265436,0.808751,0.849941,0.782811,0.852822,0.973819,0.709549,0.583828,0.417756,0.266437,0.335125,0.452886,0.762946,0.0636023,0.0438965,0.677443,0.818381,0.456525,0.282942,0.807028,0.925686,0.731719,0.358193,0.374549,0.613126,0.198845,0.179009,0.14553,0.00803077,0.717524,0.199406,0.317027,0.609172,0.0239455,0.87574,0.0164146,0.613764,0.816208,0.649036,0.515652,0.151885,0.105758,0.961374,0.533337,0.170977,0.974203,0.00673592,0.258331,0.115886,0.624339,0.891016,0.0434048,0.60168,0.124429,0.232176,0.950767,0.113534,0.240576,0.926609,0.221895,0.53656,0.116911,0.947829,0.428681,0.510229,0.528853,0.744596,0.942253,0.543634,0.710668,0.785923,0.195918,0.90837,0.440444,0.973157,0.276442,0.0910008,0.157444,0.537387,0.099718,0.176463,0.470428,0.0950426,0.303315,0.542632,0.875888,0.249395,0.116695,0.502696,0.914651,0.800499,0.722183,0.84549,0.821662,0.587985,0.79968,0.418118,0.436111,0.0771684,0.296385,0.0496569,0.349849,0.337614,0.368468,0.421311,0.918314,0.222231,0.44846,0.294543,0.746592,0.267052,0.0224701,0.406091,0.758892,0.275069,0.362773,0.138261,0.252337,0.608242,0.737762,0.183939,0.310747,0.659515,0.652396,0.1008,0.506056,0.634499,0.370544,0.65985,0.571439,0.819285,0.873409,0.13593,0.00532579,0.609078,0.497311,0.0268589,0.655734,0.702177,0.204129,0.888561,0.782647,0.598732,0.26066,0.379092,0.311599,0.00630271,0.786971,0.00355673,0.980594,0.502531,0.991793,0.857601,0.078697,0.436803,0.961819,0.934891,0.947362,0.416628,0.031874,0.48862,0.143244,0.366898,0.338856,0.783133,0.315266,0.206102,0.0231873,0.322682,0.577315,0.0979913,0.904761,0.946278,0.742891,0.928632,0.0800823,0.667531,0.770537,|0.0139567,0.9023,0.614667,0.241444,0.504117,0.736398,0.592475,0.334217,0.0495191,0.390436,0.883241,0.0657148,0.643538,0.157411,0.222494,0.792607,0.390221,0.834785,0.679202,0.427558,0.729267,0.23767,0.542367,0.222874,0.479177,0.947152,0.865065,0.739747,0.807402,0.292837,0.892975,0.697901,0.50321,0.639231,0.753361,0.686353,0.927535,0.688759,0.401626,0.308494,0.510699,0.685582,0.395297,0.648274,0.339861,0.757386,0.670614,0.517498,0.393816,0.726556,0.65183,0.50209,0.390361,0.236829,0.163494,0.252974,0.619855,0.723695,0.764306,0.989258,0.113036,0.924579,0.519213,0.774649,0.281997,0.616668,0.216719,0.0341048,0.382297,0.0436249,0.643683,0.550645,0.478561,0.743895,0.202545,0.28745,0.0966224,0.436811,0.880086,0.661134,0.862089,0.135826,0.422683,0.480996,0.767519,0.126714,0.78723,0.711537,0.841335,0.52937,0.821636,0.823379,0.189445,0.00915766,0.896031,0.786566,0.460579,0.949535,0.159515,0.409279,0.954765,0.177158,0.25075,0.227888,0.910535,0.887031,0.128863,0.92654,0.287556,0.0284089,0.976259,0.942005,0.0382001,0.017974,0.440603,0.899576,0.901715,0.629586,0.235374,0.316862,0.484365,0.270853,0.1979,0.167678,0.554799,0.689274,0.0397441,0.768778,0.957814,0.647419,0.42321,0.707824,0.0154719,0.413874,0.416307,0.976462,0.833097,0.0260903,0.220466,0.545105,0.485436,0.839674,0.238591,0.927002,0.56086,0.570981,0.537374,0.764292,0.117713,0.7233,0.289934,0.615441,0.973195,0.987539,0.330652,0.84514,0.892169,0.572779,0.669282,0.724167,0.907734,0.49336,0.0788212,0.934088,0.260167,0.478244,0.792642,0.992841,0.102271,0.967766,0.212614,0.559933,0.207325,0.636104,0.942413,0.448631,0.555466,0.914853,0.47991,0.0682259,0.679339,0.692116,0.838421,0.912568,0.884447,0.740547,0.8729,0.541216,0.708835,0.554259,0.581777,0.720794,0.195477,0.765645,0.829122,0.0962085,0.173381,0.758681,0.946572,0.0150392,0.903262,0.117215,0.350242,0.214853,0.340667,0.103655,0.989649,0.112322,0.151073,0.375484,0.816234,0.0319254,0.245704,0.633894,0.174,0.0451663,0.881416,0.409367,0.190668,0.808379,0.309312,0.454841,0.933886,0.0412425,0.228341,0.380056,0.547131,0.424555,0.192843,0.517854,0.0159135,0.993854,0.201323,0.511028,0.776531,0.883314,0.0642959,0.578869,0.501497,0.775895,0.0603372,0.0280596,0.33083,0.646404,0.842142,0.333991,0.434102,0.0985092,0.778434,0.580465,0.174053,0.751712,0.193748,0.0780154,0.307391,0.833945,0.658749,0.556014,0.448567,0.450359,0.569402,0.511438,0.771139,0.173099,0.35821,0.125333,0.0174145,0.473623,0.989422,0.429104,0.59654,0.45329,0.183978,0.126347,0.379828,0.988029,0.189358,0.122883,0.840531,0.233982,0.723635,0.888301,0.85641,0.618358,0.906624,0.467191,0.859855,0.110768,0.122987,0.127482,0.0432331,0.444338,0.300252,0.971366,0.865446,0.84575,0.730608,0.624456,0.441776,0.225325,0.209617,0.13575,0.365392,0.328839,0.621479,0.126503,0.0575632,0.0498996,0.128646,0.41846,0.796308,0.960818,0.881045,0.540159,0.0528603,0.704466,0.00365055,0.985362,0.420815,0.339321,0.0353606,0.0806391,0.703965,0.35683,0.197462,0.698379,0.949224,0.168807,0.341308,0.677977,0.441696,0.222986,0.745516,0.602582,0.318769,0.884576,0.313578,0.598067,0.257385,0.382859,0.0583976,0.0886672,0.722362,0.648418,0.0073415,0.668491,0.0123129,0.951578,0.223963,0.482624,0.539787,0.319134,0.408663,0.326789,0.942619,0.539047,0.61906,0.892922,0.972888,0.494375,0.52627,0.961504,0.586983,0.325274,0.171469,0.797482,0.0126403,0.947782,0.479347,0.266258,0.462439,0.276184,0.270901,0.405414,0.718575,0.724938,0.0858301,0.385433,0.504101,0.917886,0.0603549,0.126192,0.0165963,0.463762,0.266324,0.143261,0.817085,0.114508,0.761875,0.813799,0.455108,0.964245,0.674007,0.699647,0.0558317,0.695625,0.0701516,0.890654,0.605791,0.896788,0.411329,0.19583,0.968226,0.510517,0.0186035,0.289181,0.479604,0.238182,0.145961,0.783775,0.616392,0.504337,0.787175,0.197106,0.744087,0.169461,0.447266,0.332941,0.155683,0.0759345,0.00585866,0.736318,0.44818,0.638535,0.18459,0.435802,0.576734,0.499206,0.92597,0.787971,0.663125,0.401889,0.407355,0.47954,0.171316,0.573991,0.766846,0.386051,0.857604,0.120814,0.945925,0.768329,0.26311,0.388572,0.907291,0.722589,0.463611,0.105992,0.610021,0.476927,0.635491,0.129099,0.16558,0.290844,0.41116,0.557416,0.66019,0.00950491,0.458775,0.62381,0.385071,0.294157,0.0388545,0.475756,0.321193,0.641587,0.485787,0.706833,0.371454,0.560128,0.691321,0.0502762,0.462246,0.0190547,0.687692,0.100802,0.350708,0.605026,0.253893,0.152757,0.497473,0.00138015,0.847947,0.232761,0.97993,0.203256,0.138849,0.0848833,0.211561,0.971583,0.120815,0.717448,0.60715,0.581396,0.566804,0.799949,0.823818,0.732689,0.587055,0.0860053,0.973457,0.580698,0.885062,0.822003,0.340137,0.123645,0.370871,0.192331,0.032511,0.683259,0.573818,0.338621,0.667941,0.219914,0.213891,0.693648,0.082846,0.328663,0.42379,0.50153,0.374289,0.391819,0.195188,0.241391,0.437778,0.415868,0.435552,0.182001,0.124109,0.993038,0.573606,0.961729,0.334893,0.953066,0.219937,0.847493,0.0629874,0.37337,0.368789,0.318058,0.590014,0.283267,0.883565,0.0737017,0.446623,0.83459,0.384536,0.496627,0.132977,0.826069,0.164127,0.425037,0.023497,0.0120479,0.266389,0.998791,0.928499,0.516025,0.481417,0.715306,0.402872,0.679271,0.296706,0.148392,0.774333,0.1853,0.268421,0.520579,0.228364,0.994182,0.778913,0.346945,0.920277,0.243486,0.625906,0.842386,0.766451,0.63228,0.602368,0.549007,0.0447519,0.876179,0.256855,0.207111,0.959798,0.535327,0.890391,0.138695,0.14221,0.176718,0.24536,0.589228,0.264912,0.0460736,0.733609,0.626789,0.961325,0.244267,0.354206,0.414912,0.317689,0.742932,0.515131,0.485457,0.736709,0.191234,0.719332,0.457404,0.259427,0.672931,0.69175,0.775264,0.194821,0.00425625,0.961245,0.908838,0.355835,0.219473,0.0113519,0.683689,0.0851182,0.010651,0.00167215,0.939413,0.532926,0.46399,0.14389,0.91278,0.0259719,0.669475,0.915761,0.926386,0.893548,0.756305,0.148915,0.712838,0.288952,0.352769,0.95598,0.810091,0.604606,0.962708,0.170947,0.439734,0.501614,0.577429,0.356433,0.417782,0.971532,0.0134256,0.860144,0.555169,0.515341,0.335485,0.666372,0.697491,0.518992,0.469269,0.822373,0.56401,0.54939,0.375458,0.481239,0.980624,0.192132,0.473124,0.484742,0.813632,0.992495,0.772746,0.0993366,0.815888,0.826576,0.949974,0.796705,0.00876272,0.737419,0.0923077,0.140802,0.654996,0.39114,0.353086,0.238481,0.296279,0.721509,0.457882,0.542682,0.304325,0.905513,0.59475,0.601257,0.819819,0.828321,0.845906,0.606846,0.635136,0.959366,0.708767,0.175024,0.265695,0.562014,0.290769,0.664927,0.645967,0.473665,0.185807,0.863054,0.0723801,0.517362,0.809617,0.914468,0.887239,0.202687,0.486715,0.634871,0.48227,0.826402,0.241098,0.0206878,0.256593,0.451718,0.939349,0.331622,0.248616,0.86399,0.71291,0.476925,0.937386,0.774841,0.975902,0.478331,0.478428,0.440636,0.0087682,0.100026,0.764588,0.113412,0.00494617,0.744876,0.808207,0.619295,0.786367,0.206892,0.489965,0.348361,0.438387,0.325172,0.385601,0.946399,0.492095,0.110102,0.513367,0.530617,0.200739,0.00939524,0.134705,0.182044,0.143623,0.411795,0.69476,0.231097,0.758307,0.412526,0.800152,0.510284,0.22947,0.851886,0.721239,0.278344,0.225466,0.980053,0.275287,0.65705,0.157284,0.0652992,0.144628,0.0450216,0.387087,0.788977,0.719572,0.393299,0.658508,0.0321418,0.0867056,0.40112,0.397592,0.504366,0.0352129,0.732089,0.730707,0.243171,0.701237,0.327728,0.488062,0.528364,0.384292,0.628857,0.844655,0.394139,0.798858,0.987659,0.507874,0.413159,0.677312,0.34249,0.191085,0.660521,0.275731,0.899006,0.468214,0.833447,0.696854,0.966893,0.560788,0.32661,0.730239,0.276804,0.776077,0.144171,0.175202,0.552867,0.119112,0.200188,0.417655,0.705998,0.131859,0.151788,0.243075,0.590716,0.697316,0.384399,0.961864,0.340539,0.463498,0.317026,0.330912,0.961077,0.729477,0.747652,0.489968,0.646644,0.867267,0.118659,0.701669,0.898906,0.575845,0.652991,0.597277,0.71146,0.823465,0.775469,0.32702,0.521078,0.581585,0.0824347,0.175782,0.0965796,0.125156,0.027082,0.118906,0.177264,0.892393,0.334519,0.298202,0.140864,0.916889,0.0950153,0.205405,0.599476,0.856135,0.454515,0.182236,0.261274,0.271226,0.822249,0.225625,0.64699,0.202707,0.256595,0.249742,0.172644,0.534326,0.72411,0.827387,0.298793,0.0947977,0.182702,0.326883,0.644506,0.115606,0.012825,0.301994,0.211384,0.982671,0.867937,0.239928,0.312782,0.652263,0.105627,0.94811,0.0739653,0.148441,0.325905,0.543941,0.524633,0.391441,0.36201,0.307304,0.372009,0.0543956,0.237862,0.768667,0.0200889,0.549844,0.398369,0.902363,0.887828,0.733843,0.589037,0.83959,0.95164,0.378831,0.921681,0.133264,0.0070495,0.331111,0.656752,0.182909,0.429657,0.571097,0.97097,0.809561,0.181476,0.0628569,0.565638,0.580055,0.209156,0.0979884,0.965342,0.357264,0.561875,0.27291,0.00296319,0.671598,0.217163,0.862182,0.250594,0.715586,0.339383,0.954489,0.105205,0.0504033,0.200247,0.968923,0.42121,0.356912,0.554689,0.0907699,0.313244,0.911105,0.000521421,0.598559,0.795409,0.963697,0.134495,0.69267,0.705961,0.82961,0.974701,0.517904,0.410622,0.943866,0.82529,0.754127,0.406056,0.301654,0.320566,0.179227,0.114918,0.606236,0.573072,0.920058,0.335894,0.611018,0.959802,0.156434,0.604436,0.969383,0.175562,0.932976,0.495451,0.311004,0.0224805,0.646041,0.991869,0.413726,0.758473,0.521977,0.732822,0.495468,|0.784274,0.0539643,0.191035,0.126918,0.233288,0.010381,0.881075,0.65746,0.0340726,0.424134,0.440441,0.466072,0.312843,0.0918111,0.195305,0.171487,0.107347,0.727376,0.150613,0.227397,0.421344,0.455447,0.464266,0.461881,0.0016045,0.370498,0.315932,0.875776,0.865942,0.891382,0.832655,0.469962,0.201912,0.66054,0.0380779,0.242635,0.590189,0.0795664,0.0500951,0.464478,0.718852,0.931175,0.538325,0.543411,0.812343,0.967597,0.915142,0.528437,0.421664,0.707891,0.884413,0.404365,0.398899,0.533594,0.928659,0.759992,0.668512,0.17539,0.854201,0.382314,0.404378,0.371826,0.211728,0.114503,0.170886,0.879516,0.359394,0.0398988,0.879179,0.729291,0.25464,0.44975,0.467792,0.570965,0.371723,0.498234,0.866721,0.754489,0.983585,0.266222,0.242127,0.300223,0.525201,0.110434,0.24372,0.093767,0.319072,0.0486718,0.86618,0.914033,0.0818446,0.620772,0.331623,0.759508,0.289802,0.483843,0.233021,0.51351,0.66714,0.139564,0.0382169,0.243496,0.716348,0.289693,0.125001,0.375533,0.0651429,0.619359,0.450123,0.466682,0.298329,0.142627,0.252504,0.0761649,0.323502,0.227589,0.779524,0.350887,0.991403,0.00429785,0.410801,0.941084,0.272054,0.776067,0.965497,0.0203056,0.800345,0.858049,0.591216,0.958274,0.905829,0.575009,0.30752,0.111291,0.682745,0.383981,0.365825,0.184806,0.46275,0.107796,0.633017,0.307224,0.124461,0.27208,0.572709,0.539299,0.141275,0.0892276,0.495769,0.447035,0.821631,0.581542,0.854414,0.903045,0.578499,0.116866,0.592652,0.457265,0.706152,0.479028,0.172619,0.190633,0.595006,0.462686,0.85099,0.0582132,0.69953,0.346241,0.662082,0.437678,0.0374852,0.251296,0.818075,0.84288,0.604811,0.770748,0.355869,0.112432,0.267412,0.57153,0.281321,0.640593,0.509394,0.976977,0.250848,0.314593,0.801983,0.835853,0.393963,0.726628,0.641981,0.0732296,0.292031,0.833765,0.592377,0.0917217,0.14883,0.753186,0.328266,0.975488,0.615781,0.962154,0.535109,0.0219687,0.602976,0.901312,0.588367,0.87271,0.285895,0.221281,0.328075,0.0610772,0.300504,0.750912,0.621626,0.371833,0.83374,0.3619,0.304188,0.00469697,0.965256,0.0676597,0.426275,0.352175,0.598405,0.88225,0.611862,0.447551,0.696546,0.473238,0.964049,0.938242,0.926504,0.04823,0.00675929,0.148559,0.205581,0.360448,0.420582,0.621681,0.259993,0.903636,0.582276,0.897192,0.823353,0.595635,0.0812892,0.0145776,0.562944,0.719857,0.929825,0.866482,0.624479,0.3001,0.882844,0.19166,0.127159,0.334348,0.973019,0.929944,0.831214,0.501335,0.466368,0.0457434,0.686678,0.441698,0.649771,0.00226486,0.662733,0.528591,0.049632,0.286116,0.851677,0.0187713,0.243079,0.637499,0.396946,0.667446,0.464118,0.558044,0.323114,0.769473,0.439412,0.681739,0.118643,0.0568798,0.0969493,0.0689746,0.366641,0.756476,0.299386,0.0461234,0.539688,0.723984,0.736794,0.650955,0.876857,0.868193,0.485348,0.341518,0.0225641,0.349151,0.607651,0.717792,0.507742,0.952573,0.0206994,0.49569,0.906882,0.468448,0.115594,0.469898,0.00043416,0.382045,0.657875,0.301194,0.634365,0.761654,0.997194,0.441659,0.136983,0.271557,0.631159,0.577906,0.00571287,0.650836,0.366509,0.203415,0.289931,0.39206,0.355378,0.0179883,0.220037,0.775498,0.367892,0.68877,0.658454,0.397859,0.31188,0.586266,0.348267,0.536293,0.525958,0.742965,0.0941513,0.0180874,0.469362,0.622575,0.231973,0.776157,0.137272,0.936373,0.0993814,0.25934,0.194964,0.402244,0.128058,0.319213,0.475175,0.343505,0.48929,0.780708,0.273118,0.61717,0.589278,0.732005,0.668269,0.094724,0.988544,0.605387,0.121722,0.432551,0.824373,0.809484,0.280039,0.562781,0.285988,0.759657,0.749118,0.84854,0.878191,0.98618,0.227963,0.211487,0.26147,0.832219,0.48933,0.33685,0.165264,0.741891,0.0683062,0.857679,0.599517,0.143173,0.41587,0.452172,0.730407,0.93516,0.520999,0.261234,0.0415949,0.00668871,0.976607,0.145747,0.0580195,0.0373153,0.676498,0.98312,0.460549,0.381519,0.253524,0.423491,0.0344489,0.598252,0.116576,0.589292,0.130107,0.109197,0.678042,0.85389,0.703927,0.845909,0.111375,0.749512,0.957377,0.147862,0.828332,0.65663,0.371669,0.412556,0.618197,0.145289,0.738353,0.0811293,0.884451,0.167919,0.563194,0.558227,0.23004,0.658728,0.694445,0.973833,0.858833,0.0232273,0.627879,0.399664,0.857195,0.0326253,0.272043,0.890042,0.611993,0.865013,0.359115,0.197331,0.238475,0.80761,0.421326,0.125834,0.526217,0.849311,0.730749,0.763067,0.715692,0.45541,0.74134,0.202068,0.746608,0.481526,0.0401065,0.551159,0.195841,0.933125,0.397148,0.154048,0.914294,0.739855,0.718304,0.49263,0.193372,0.592716,0.819837,0.308501,0.261219,0.859025,0.762622,0.0349278,0.488951,0.297058,0.374985,0.236537,0.32511,0.170744,0.936683,0.951416,0.194451,0.836813,0.75731,0.99263,0.259484,0.650153,0.621008,0.363539,0.564813,0.720193,0.55461,0.362018,0.76758,0.484364,0.777234,0.680676,0.717091,0.515857,0.355171,0.0954569,0.277002,0.323754,0.771631,0.687434,0.380211,0.61197,0.521163,0.708419,0.964051,0.176241,0.872872,0.293279,0.258211,0.760787,0.458834,0.832653,0.413878,0.477026,0.869883,0.69964,0.658324,0.00500733,0.16892,0.0818863,0.835652,0.908438,0.921361,0.645829,0.319772,0.332668,0.87015,0.0824631,0.298495,0.0343651,0.445207,0.411136,0.958675,0.778248,0.110714,0.795919,0.611906,0.16734,0.706372,0.142083,0.704518,0.996955,0.687769,0.103523,0.916448,0.257953,0.534699,0.601579,0.0730416,0.206112,0.341879,0.655693,0.560118,0.913959,0.417003,0.109116,0.881833,0.226209,0.159099,0.364022,0.260587,0.0289305,0.681988,0.0977927,0.418296,0.278067,0.719256,0.203191,0.174375,0.792296,0.699855,0.560859,0.841696,0.183511,0.377978,0.728422,0.632763,0.288624,0.488695,0.274784,0.675595,0.218651,0.4953,0.387666,0.0861788,0.188682,0.308735,0.29191,0.918206,0.840094,0.639222,0.059419,0.417136,0.275493,0.0202065,0.317045,0.307547,0.479796,0.93527,0.382201,0.489879,0.728651,0.907617,0.0854061,0.896771,0.708357,0.780837,0.396103,0.709167,0.856107,0.178426,0.0182302,0.416914,0.737243,0.471087,0.0118082,0.145748,0.384153,0.217887,0.642003,0.0930415,0.248801,0.31869,0.925902,0.536595,0.126483,0.960924,0.143692,0.33739,0.385723,0.387326,0.760965,0.745595,0.741746,0.726173,0.351145,0.954965,0.835874,0.00365818,0.424977,0.493045,0.219669,0.847199,0.650056,0.356467,0.88577,0.282428,0.238371,0.240605,0.716404,0.32824,0.472414,0.736681,0.0396633,0.596637,0.698286,0.0413237,0.889944,0.494005,0.00110012,0.0654588,0.995917,0.79597,0.923259,0.151376,0.889735,0.983312,0.856416,0.001508,0.986721,0.975823,0.151461,0.497664,0.859115,0.862479,0.771271,0.84203,0.546007,0.996147,0.653991,0.706112,0.203217,0.26334,0.789142,0.414344,0.668896,0.0733864,0.786583,0.253591,0.986307,0.61143,0.862763,0.373721,0.726794,0.179735,0.957195,0.671988,0.0690187,0.986653,0.180132,0.334849,0.183217,0.803725,0.634879,0.940854,0.249778,0.0943276,0.763025,0.200164,0.346302,0.63384,0.0354368,0.005108,0.655636,0.958761,0.907746,0.937576,0.972834,0.923866,0.703697,0.532276,0.584791,0.505713,0.506393,0.571618,0.497147,0.954841,0.323672,0.722168,0.511038,0.147398,0.0305817,0.0475226,0.502489,0.176716,0.0748112,0.897547,0.384586,0.999254,0.785668,0.223115,0.116925,0.96178,0.637792,0.414867,0.241221,0.436902,0.017727,0.635373,0.911652,0.657036,0.200614,0.0534616,0.988704,0.905299,0.737634,0.304159,0.628113,0.146359,0.52008,0.436875,0.219892,0.0659415,0.415553,0.85666,0.695495,0.670323,0.40596,0.724715,0.933087,0.511852,0.405967,0.65161,0.685828,0.416991,0.171237,0.727041,0.195413,0.170549,0.879581,0.3263,0.0662072,0.17981,0.907329,0.527786,0.61621,0.961158,0.00640357,0.359486,0.744831,0.9976,0.931456,0.637168,0.588541,0.6827,0.0460651,0.993389,0.0164775,0.0573168,0.433237,0.470061,0.688513,0.691243,0.544812,0.980745,0.482661,0.327798,0.839983,0.0631511,0.677279,0.386512,0.474219,0.0782406,0.774313,0.579242,0.091008,0.175947,0.0121467,0.330888,0.75453,0.647233,0.0760199,0.823185,0.49289,0.517217,0.588375,0.0447499,0.843067,0.375683,0.76899,0.825904,0.932303,0.28462,0.422284,0.224275,0.673757,0.807291,0.758174,0.454318,0.0772916,0.246908,0.041878,0.0370628,0.473884,0.0768701,0.166686,0.268233,0.235066,0.662139,0.740351,0.769464,0.94093,0.713939,0.99777,0.507662,0.719955,0.155945,0.671738,0.941935,0.908339,0.505014,0.169439,0.474233,0.625115,0.830012,0.315934,0.422532,0.902588,0.541648,0.640055,0.565599,0.0084222,0.194205,0.352271,0.47204,0.083919,0.950264,0.521048,0.231469,0.556655,0.573223,0.100482,0.131766,0.421688,0.986394,0.913832,0.778096,0.424349,0.489384,0.871355,0.0633449,0.680815,0.576236,0.698952,0.307144,0.156192,0.837243,0.74731,0.0780202,0.611817,0.854058,0.914773,0.528848,0.032052,0.400408,0.595071,0.712008,0.623506,0.274519,0.753618,0.665586,0.586508,0.620602,0.0494166,0.827796,0.7235,0.715994,0.243834,0.641229,0.178165,0.662954,0.893124,0.483748,0.528343,0.577359,0.852605,0.446312,0.83423,0.639729,0.00765836,0.242796,0.102918,0.550249,0.0652103,0.604018,0.746499,0.0280297,0.220114,0.673826,0.58529,0.0353596,0.676801,0.278331,0.443109,0.432628,0.697999,0.756478,0.838728,0.562261,0.340356,0.210948,0.715315,0.603606,0.944421,0.989951,0.580557,0.951025,0.21297,0.200511,0.703553,0.577103,0.466323,0.566214,0.129639,0.989541,0.978193,0.596555,0.183613,0.342324,0.850782,0.932512,0.120869,0.406155,0.978048,0.372381,0.0213113,0.370294,0.889143,0.0128226,0.616684,0.698366,0.351999,|0.287582,0.384067,0.644094,0.912363,0.960525,0.773329,0.946293,0.283526,0.828218,0.910808,0.242686,0.778836,0.966347,0.370917,0.330726,0.424373,0.739772,0.572251,0.382794,0.740839,0.0244389,0.950053,0.839025,0.0168489,0.105042,0.533729,0.178801,0.201648,0.321698,0.586336,0.242173,0.483985,0.348804,0.796955,0.381605,0.79324,0.912176,0.517517,0.76718,0.28152,0.100994,0.349931,0.78298,0.146665,0.656352,0.799741,0.601721,0.0292884,0.366824,0.341735,0.0731543,0.259078,0.0845724,0.833842,0.13603,0.903396,0.970918,0.325879,0.510222,0.606888,0.87993,0.837327,0.0683283,0.903806,0.878546,0.940688,0.538774,0.369308,0.782225,0.870074,0.844111,0.093576,0.154344,0.687425,0.53332,0.15794,0.322829,0.572081,0.508073,0.421436,0.6252,0.581988,0.445509,0.116359,0.264942,0.136261,0.627589,0.927768,0.0534653,0.662788,0.960106,0.488296,0.0725302,0.816012,0.766606,0.667581,0.933535,0.205266,0.635077,0.728529,0.467031,0.291124,0.159845,0.0775985,0.737322,0.102227,0.274235,0.579088,0.345036,0.970262,0.118256,0.405943,0.314461,0.660192,0.0800681,0.372553,0.708186,0.0127659,0.224573,0.331175,0.614919,0.974521,0.994439,0.475696,0.353407,0.437834,0.140303,0.805798,0.217837,0.166967,0.305611,0.85004,0.843617,0.713367,0.642199,0.63922,0.385408,0.44494,0.711987,0.167246,0.582627,0.304794,0.492377,0.307886,0.161428,0.830039,0.775923,0.340664,0.989667,0.358341,0.690123,0.884653,0.307107,0.984682,0.40279,0.0449471,0.299044,0.367226,0.449232,0.341071,0.545489,0.641388,0.81809,0.305264,0.916636,0.0284736,0.056609,0.160788,0.645764,0.0221952,0.291651,0.590108,0.80357,0.566221,0.397048,0.00466341,0.581328,0.72364,0.955893,0.590542,0.85741,0.345547,0.794253,0.574766,0.788163,0.475484,0.454333,0.00549054,0.0245278,0.423365,0.761964,0.0833273,0.907883,0.281739,0.203092,0.330072,0.101313,0.695055,0.822816,0.122193,0.335125,0.127646,0.926198,0.277552,0.289659,0.106988,0.900597,0.551577,0.344516,0.775848,0.66164,0.932897,0.543427,0.506424,0.411753,0.894614,0.734481,0.117294,0.631544,0.0913097,0.101155,0.326345,0.712017,0.929212,0.48908,0.913737,0.80864,0.282339,0.49726,0.0445015,0.998507,0.993367,0.443979,0.193628,0.828579,0.596125,0.871088,0.111532,0.756806,0.549926,0.482311,0.711724,0.619824,0.949887,0.768083,0.798534,0.676174,0.081571,0.789067,0.0318416,0.562808,0.4725,0.437693,0.201031,0.460088,0.458902,0.370315,0.612517,0.390155,0.556418,0.344726,0.354043,0.272289,0.812632,0.29913,0.451596,0.967852,0.64665,0.447121,0.751336,0.765262,0.310207,0.287371,0.99761,0.384988,0.490474,0.764842,0.942737,0.0634515,0.900914,0.439864,0.204551,0.687114,0.582021,0.284244,0.816408,0.945204,0.602517,0.119024,0.433373,0.132941,0.526517,0.746984,0.25974,0.722503,0.884232,0.883564,0.721473,0.121134,0.693828,0.0354635,0.553141,0.428817,0.343724,0.696976,0.680221,0.960237,0.234686,0.0280302,0.7691,0.0574106,0.533793,0.621629,0.988041,0.4008,0.193145,0.851697,0.537882,0.293552,0.448999,0.323055,0.344836,0.221492,0.27581,0.246224,0.66631,0.306336,0.892441,0.533268,0.617625,0.373116,0.658879,0.4374,0.613148,0.913929,0.366688,0.558867,0.127504,0.459414,0.859835,0.608185,0.834371,0.031465,0.0991566,0.997394,0.55913,0.860564,0.0702437,0.704105,0.96622,0.12623,0.51271,0.288112,0.332684,0.436421,0.152165,0.812079,0.244991,0.231299,0.268676,0.73765,0.854202,0.341238,0.869737,0.425116,0.100642,0.687131,0.0883366,0.481449,0.710906,0.843096,0.275499,0.469587,0.988022,0.510682,0.911177,0.552416,0.958623,0.327413,0.101134,0.776348,0.44437,0.652632,0.216935,0.383427,0.230516,0.89797,0.765763,0.495484,0.66388,0.601549,0.866091,0.0807016,0.472182,0.822504,0.958427,0.694993,0.876731,0.105595,0.736617,0.251067,0.721985,0.424376,0.411987,0.976115,0.848079,0.285793,0.834475,0.922113,0.277776,0.817818,0.987536,0.360738,0.504283,0.0583116,0.962883,0.0929263,0.290337,0.466987,0.520954,0.481239,0.101096,0.00959897,0.705273,0.910131,0.717036,0.171903,0.603433,0.974214,0.0807055,0.462899,0.957371,0.681087,0.345552,0.849955,0.958842,0.970257,0.630639,0.666477,0.361476,0.474292,0.0835468,0.930258,0.549186,0.199595,0.191558,0.55289,0.218343,0.864222,0.164863,0.178036,0.919903,0.464617,0.291919,0.430167,0.981724,0.0660587,0.822081,0.964828,0.06354,0.36271,0.246698,0.821485,0.680656,0.0438229,0.122668,0.257017,0.897989,0.0672624,0.843876,0.431418,0.652007,0.147918,0.267827,0.693473,0.0124497,0.661905,0.42599,0.382147,0.773303,0.49636,0.253994,0.703851,0.885026,0.420791,0.607855,0.721932,0.554813,0.372008,0.294913,0.479954,0.269794,0.220087,0.601149,0.713321,0.908177,0.75902,0.798481,0.119372,0.816688,0.801168,0.475054,0.775244,0.5364,0.498125,0.718153,0.15043,0.744631,0.63795,0.479393,0.0342132,0.355973,0.0226836,0.246673,0.836017,0.814053,0.434909,0.734551,0.87214,0.538202,0.35879,0.878229,0.304091,0.215531,0.446294,0.689446,0.467108,0.483762,0.211454,0.62392,0.604336,0.220349,0.268596,0.411511,0.535864,0.536807,0.151631,0.92151,0.0100703,0.742739,0.00747997,0.0274522,0.676382,0.618436,0.653465,0.15884,0.785327,0.308924,0.307886,0.928377,0.225882,0.563001,0.372566,0.37946,0.477397,0.366118,0.378388,0.170922,0.109913,0.512497,0.994529,0.19865,0.00633281,0.762882,0.389836,0.268519,0.305243,0.887345,0.688662,0.724856,0.368739,0.735993,0.379576,0.234076,0.751259,0.313529,0.202907,0.360741,0.024733,0.0645856,0.337173,0.267913,0.49292,0.454446,0.873033,0.123129,0.449158,0.32085,0.210888,0.116006,0.619329,0.553039,0.299785,0.832488,0.820623,0.451334,0.751676,0.369607,0.843544,0.00376433,0.520986,0.759903,0.934343,0.870376,0.21008,0.0868434,0.1109,0.0762894,0.0343392,0.256019,0.677627,0.0327532,0.228546,0.882442,0.575302,0.530411,0.666868,0.829516,0.188089,0.922579,0.637228,0.0637778,0.111182,0.122634,0.0790494,0.108339,0.677968,0.757562,0.824286,0.941181,0.592302,0.423222,0.407526,0.0268477,0.242331,0.378374,0.0819776,0.818108,0.290407,0.339258,0.142782,0.404806,0.930697,0.511957,0.115349,0.224967,0.0611313,0.878208,0.041067,0.817121,0.102769,0.293926,0.621253,0.339888,0.361844,0.786788,0.0301343,0.301046,0.92827,0.166135,0.684428,0.293802,0.956415,0.373904,0.786169,0.318402,0.512513,0.535681,0.39873,0.553048,0.755054,0.225619,0.884347,0.0823766,0.0553393,0.994467,0.168173,0.663289,0.441345,0.556214,0.65995,0.32631,0.450475,0.946342,0.49961,0.718166,0.94398,0.434887,0.469499,0.0511466,0.896692,0.780631,0.545955,0.0514891,0.325207,0.152046,0.329268,0.271787,0.365393,0.366397,0.445983,0.48162,0.342839,0.567911,0.186517,0.768731,0.84053,0.272412,0.177002,0.837536,0.569395,0.9201,0.469312,0.184018,0.433715,0.186864,0.202234,0.835452,0.112698,0.0935125,0.0758613,0.780013,0.274372,0.0777009,0.147986,0.473782,0.0179739,0.0925473,0.391302,0.134269,0.909524,0.248972,0.31209,0.795692,0.581274,0.221452,0.290165,0.748311,0.940237,0.415993,0.556844,0.0634959,0.894981,0.280953,0.208144,0.0826262,0.609825,0.619548,0.0279013,0.706606,0.0839442,0.922295,0.846076,0.18858,0.578512,0.260679,0.858715,0.260274,0.994287,0.718702,0.815792,0.669414,0.28518,0.183307,0.385955,0.806184,0.689411,0.129987,0.446654,0.0720578,0.527935,0.890659,0.634635,0.429656,0.211716,0.00413799,0.867425,0.936472,0.99028,0.346154,0.865814,0.973534,0.683426,0.517436,0.420086,0.981441,0.817831,0.511725,0.380532,0.134318,0.137684,0.0296175,0.0878959,0.795707,0.648064,0.710856,0.507953,0.456876,0.88913,0.569221,0.282026,0.631544,0.310266,0.677129,0.23566,0.536604,0.179718,0.540006,0.63078,0.482073,0.827205,0.362647,0.668143,0.374693,0.790914,0.897736,0.143945,0.227796,0.635913,0.969473,0.151607,0.648405,0.993065,0.0105259,0.85701,0.525171,0.211224,0.193255,0.572052,0.12585,0.337949,0.739565,0.861929,0.385037,0.794786,0.470985,0.587067,0.490478,0.228082,0.732745,0.978347,0.90085,0.387905,0.965544,0.745677,0.616159,0.733505,0.619628,0.137857,0.906343,0.390625,0.32109,0.521594,0.239757,0.409265,0.370754,0.0138894,0.778989,0.183502,0.442054,0.138274,0.319956,0.235045,0.0265828,0.839315,0.335181,0.700273,0.62437,0.844414,0.657892,0.36463,0.919553,0.206765,0.525818,0.73685,0.0575184,0.112056,0.963753,0.962812,0.392976,0.183124,0.509783,0.510701,0.305213,0.213268,0.591089,0.178284,0.703717,0.389438,0.720118,0.106526,0.529199,0.211188,0.654426,0.291816,0.757255,0.406931,0.459422,0.519759,0.0485743,0.81703,0.418282,0.0102559,0.753129,0.562217,0.731423,0.466812,0.393574,0.897304,0.901024,0.416228,0.842979,0.643427,0.472936,0.453298,0.546362,0.581323,0.0383819,0.613452,0.965202,0.0985188,0.459331,0.285502,0.927713,0.789354,0.773002,0.312471,0.335905,0.279309,0.177426,0.187747,0.206496,0.591527,0.784901,0.603803,0.651001,0.325581,0.613659,0.233676,0.221561,0.996321,0.00672656,0.668408,0.140682,0.815287,0.277551,0.719088,0.262077,0.810235,0.0146994,0.429004,0.394187,0.566198,0.916083,0.667219,0.75647,0.0546851,0.494644,0.20417,0.0257171,0.869785,0.0303128,0.246463,0.240614,0.504049,0.890052,0.775311,0.174641,0.523199,0.882594,0.379531,0.11168,0.362279,0.349321,0.298962,0.173466,0.16587,0.873535,0.578343,0.00472182,0.829698,0.288121,0.0735358,0.297389,0.896718,0.305883,0.0832024,0.819954,0.133366,0.751373,0.957893,0.676816,0.338569,0.388552,0.904801,0.0816521,0.250643,0.387392,0.782676,0.781902,|0.217737,0.314653,0.37922,0.466437,0.203348,0.747097,0.121499,0.0530564,0.63746,0.261601,0.602653,0.265445,0.720689,0.55888,0.658484,0.643859,0.24433,0.9198,0.451311,0.735281,0.612964,0.612355,0.829574,0.159468,0.451724,0.612276,0.869664,0.550144,0.191117,0.994649,0.910287,0.0267442,0.626415,0.780402,0.991633,0.303738,0.65263,0.154831,0.273788,0.110305,0.777967,0.648876,0.164482,0.906811,0.801762,0.777835,0.672244,0.296433,0.745323,0.376765,0.141922,0.419118,0.695048,0.92519,0.331799,0.026,0.438911,0.545439,0.174105,0.433623,0.220279,0.154699,0.719339,0.447427,0.912869,0.808802,0.22026,0.41975,0.111515,0.90531,0.334105,0.417136,0.310637,0.535617,0.754443,0.0102701,0.999571,0.41398,0.390098,0.578364,0.888788,0.135149,0.736902,0.924062,0.178351,0.189577,0.856008,0.622452,0.475019,0.688562,0.379266,0.0495237,0.0802369,0.053107,0.276664,0.675138,0.0277165,0.297978,0.805688,0.968423,0.429461,0.712973,0.876779,0.921293,0.890471,0.870494,0.162215,0.159781,0.941547,0.677415,0.0677003,0.0916124,0.396624,0.666375,0.180818,0.447951,0.662635,0.0800849,0.476165,0.641354,0.570018,0.566372,0.400236,0.504751,0.794658,0.899731,0.346047,0.932309,0.500511,0.082884,0.778436,0.0914212,0.234456,0.418987,0.281549,0.719543,0.462607,0.488816,0.213438,0.302295,0.162554,0.326984,0.920477,0.671625,0.637669,0.990733,0.740211,0.792299,0.344569,0.423217,0.553338,0.0991984,0.351099,0.933126,0.921522,0.209234,0.2829,0.0874475,0.193021,0.950695,0.100236,0.0494807,0.864058,0.118115,0.907902,0.55727,0.0246253,0.94949,0.838356,0.694965,0.645161,0.832552,0.425015,0.285057,0.960818,0.384495,0.402608,0.176085,0.712381,0.687862,0.158642,0.362437,0.891032,0.814455,0.684183,0.656043,0.804733,0.93434,0.705329,0.754249,0.390853,0.776633,0.83272,0.694231,0.326977,0.28143,0.120669,0.881109,0.579713,0.65584,0.161892,0.57533,0.494751,0.424891,0.793295,0.0424073,0.329882,0.749939,0.630837,0.131269,0.609273,0.0866366,0.0621122,0.0295315,0.399768,0.1772,0.50971,0.831543,0.102515,0.986614,0.457956,0.942625,0.572568,0.962686,0.842523,0.295852,0.420719,0.329467,0.0955914,0.522838,0.955736,0.376368,0.163042,0.033619,0.541458,0.292082,0.871089,0.867204,0.39427,0.355179,0.623493,0.140849,0.816617,0.931949,0.457355,0.509694,0.395922,0.0477195,0.13181,0.183549,0.813149,0.217394,0.662042,0.0371324,0.615498,0.00744551,0.705481,0.0225048,0.815899,0.137265,0.555724,0.590831,0.289417,0.442944,0.883672,0.482193,0.228301,0.271348,0.0554574,0.299815,0.222618,0.628109,0.181125,0.65804,0.575234,0.396205,0.290531,0.834332,0.224361,0.859192,0.0454378,0.454134,0.830624,0.649767,0.0183296,0.696081,0.797224,0.796819,0.931948,0.41464,0.692825,0.664734,0.0615359,0.125395,0.980749,0.118206,0.998128,0.79364,0.232506,0.467228,0.847802,0.996658,0.680031,0.724783,0.576837,0.245497,0.846207,0.489924,0.698442,0.855392,0.251011,0.286522,0.0376161,0.608644,0.898119,0.935728,0.0866723,0.850689,0.0614746,0.257842,0.773441,0.555136,0.85505,0.0713277,0.491475,0.289865,0.22269,0.0717408,0.213458,0.839317,0.199367,0.619218,0.137397,0.190149,0.205441,0.778346,0.696541,0.324846,0.185444,0.203925,0.249484,0.319873,0.278772,0.859857,0.105405,0.75517,0.970792,0.406008,0.607792,0.0266917,0.982501,0.143122,0.72955,0.181947,0.196045,0.513737,0.319816,0.666541,0.252936,0.460058,0.82786,0.0386609,0.974535,0.820251,0.0940226,0.485775,0.993685,0.0718417,0.918637,0.666686,0.0469253,0.783493,0.0430706,0.203322,0.378501,0.975546,0.978221,0.290359,0.482067,0.749679,0.133395,0.476207,0.0163382,0.206155,0.452793,0.770913,0.111152,0.315476,0.338293,0.424966,0.19614,0.602543,0.00951558,0.901807,0.443432,0.681981,0.068837,0.0759913,0.435607,0.924182,0.885051,0.864134,0.640677,0.371292,0.838767,0.624601,0.922008,0.364336,0.631518,0.673029,0.590813,0.369779,0.21094,0.442696,0.156687,0.444417,0.834231,0.653604,0.826,0.380632,0.175889,0.866736,0.39568,0.491893,0.585466,0.220823,0.951384,0.847986,0.985965,0.993582,0.659183,0.790749,0.557592,0.151452,0.542563,0.684778,0.102004,0.619777,0.783438,0.216219,0.979156,0.970104,0.477199,0.000899255,0.421028,0.906687,0.927616,0.382562,0.54162,0.535446,0.584794,0.454224,0.531116,0.272977,0.503659,0.841799,0.0932149,0.379779,0.746687,0.476042,0.686215,0.32148,0.21002,0.459988,0.49996,0.948138,0.193777,0.122009,0.905661,0.746638,0.977663,0.669786,0.239767,0.330583,0.979896,0.240821,0.508673,0.352815,0.0805653,0.0108999,0.0740052,0.456139,0.641018,0.00632954,0.884702,0.0712843,0.911348,0.00843328,0.876972,0.47843,0.67861,0.0639014,0.063027,0.120192,0.385633,0.0704696,0.271216,0.752653,0.620668,0.136175,0.0495348,0.396433,0.578402,0.200674,0.0176538,0.0678658,0.902114,0.382995,0.63368,0.509029,0.684897,0.201982,0.195108,0.877082,0.68319,0.788852,0.934858,0.229146,0.728689,0.708823,0.14758,0.0965406,0.65257,0.609581,0.552247,0.451301,0.642946,0.0236526,0.209635,0.121894,0.628866,0.579971,0.354889,0.751868,0.233975,0.130883,0.431304,0.527351,0.293338,0.829889,0.398107,0.386178,0.453244,0.0654705,0.959293,0.342672,0.374705,0.58948,0.331865,0.846109,0.791792,0.671507,0.465014,0.691376,0.676215,0.906133,0.784066,0.0812075,0.068072,0.276834,0.211186,0.790591,0.138646,0.161205,0.821726,0.821618,0.747847,0.770714,0.890611,0.232111,0.755978,0.0671562,0.497487,0.662621,0.145,0.691977,0.317242,0.314076,0.338316,0.933115,0.884709,0.0361995,0.772969,0.929573,0.792758,0.224712,0.458672,0.0232671,0.749921,0.624181,0.675175,0.456795,0.0497583,0.413081,0.804834,0.323148,0.183047,0.532818,0.809873,0.956093,0.537037,0.584903,0.459112,0.729977,0.230904,0.616648,0.776381,0.0156059,0.213664,0.164056,0.0694252,0.0571623,0.135784,0.0650942,0.307364,0.38598,0.875659,0.0897301,0.281788,0.066101,0.242733,0.0164873,0.153338,0.0837425,0.539885,0.219225,0.102294,0.324791,0.0785224,0.191018,0.446818,0.567342,0.0333914,0.198136,0.533202,0.592529,0.611489,0.124284,0.99044,0.526551,0.9524,0.110766,0.36298,0.352224,0.169478,0.642584,0.135553,0.674961,0.758608,0.050877,0.181907,0.792877,0.735571,0.472539,0.574064,0.660036,0.478123,0.937314,0.898674,0.714829,0.279033,0.0481966,0.0105172,0.43501,0.0586126,0.736902,0.404562,0.119727,0.135868,0.372242,0.448911,0.627932,0.6337,0.0628148,0.668701,0.990001,0.558114,0.699218,0.863254,0.464124,0.571161,0.620026,0.556268,0.495032,0.873447,0.240005,0.0137953,0.631109,0.605427,0.780487,0.612812,0.0366028,0.423803,0.947679,0.8135,0.399551,0.559464,0.606226,0.0766767,0.753938,0.130772,0.838551,0.509717,0.315987,0.746038,0.17357,0.33818,0.009893,0.689058,0.970752,0.551863,0.282701,0.0140193,0.0881204,0.536322,0.35106,0.830289,0.532458,0.226935,0.159314,0.330213,0.0795801,0.733905,0.717513,0.0784246,0.0612031,0.547798,0.543378,0.842989,0.11446,0.140952,0.694776,0.637949,0.671948,0.791678,0.303357,0.645504,0.493051,0.881703,0.401997,0.812355,0.920793,0.863391,0.800474,0.155778,0.418625,0.267448,0.936612,0.529877,0.936827,0.801778,0.301274,0.248939,0.179608,0.912052,0.135762,0.962032,0.0709346,0.211839,0.24823,0.102346,0.749245,0.309258,0.18483,0.839182,0.872197,0.810954,0.328614,0.241199,0.678615,0.172899,0.842997,0.0250033,0.928564,0.902427,0.637009,0.55789,0.743811,0.55595,0.54216,0.696849,0.0827254,0.361529,0.0368239,0.431009,0.965892,0.822667,0.757382,0.993461,0.538321,0.6784,0.852996,0.915699,0.83976,0.81686,0.514697,0.101896,0.390536,0.536668,0.444931,0.33628,0.822299,0.641883,0.117778,0.947065,0.600765,0.693215,0.6901,0.766722,0.994659,0.628249,0.426772,0.376049,0.731699,0.421505,0.636566,0.619356,0.127676,0.0537825,0.208506,0.771275,0.518776,0.538411,0.306308,0.478262,0.666535,0.0810581,0.280053,0.928018,0.402724,0.816915,0.576334,0.980824,0.564743,0.63442,0.319232,0.248126,0.43177,0.657188,0.4957,0.684597,0.0687542,0.12058,0.996685,0.680991,0.956321,0.439473,0.299627,0.212108,0.580527,0.242342,0.851048,0.335708,0.752458,0.708469,0.935507,0.111986,0.435979,0.928783,0.932128,0.994182,0.59713,0.644445,0.685646,0.679364,0.321411,0.615118,0.438151,0.080888,0.633613,0.147637,0.753267,0.404322,0.165789,0.876259,0.222601,0.538632,0.152175,0.587642,0.149044,0.38331,0.619712,0.258667,0.519719,0.898236,0.460516,0.0183541,0.506612,0.186924,0.117438,0.498177,0.346502,0.903538,0.87183,0.898835,0.658531,0.0473757,0.08917,0.136712,0.0135481,0.0576839,0.617359,0.000514865,0.363556,0.467735,0.850167,0.0514659,0.322486,0.334737,0.489966,0.487519,0.320491,0.453453,0.752312,0.432705,0.27663,0.378721,0.434095,0.0959989,0.170412,0.808721,0.0988407,0.00223356,0.0589434,0.150717,0.588625,0.568466,0.674656,0.3684,0.334815,0.094243,0.627272,0.69608,0.52397,0.201848,0.211415,0.487422,0.218105,0.531341,0.0235344,0.87147,0.977304,0.860435,0.517223,0.452707,0.215238,0.215421,0.805118,0.116197,0.317191,0.367763,0.631408,0.0193635,0.266807,0.480941,0.534935,0.946887,0.389438,0.971275,0.886913,0.715787,0.970818,0.929038,0.487994,0.568203,0.473739,0.296308,0.642751,0.793994,0.0944944,0.275818,0.0979846,0.963069,0.62838,0.675876,0.964849,0.5708,0.050448,0.00865364,0.0467823,0.295072,0.635902,0.474036,0.985187,0.103076,0.542569,0.673185,0.977801,0.149852,0.5247,0.612504,0.260343,0.15908,0.659124,0.945582,0.994991,0.768095,0.902962,0.766747,0.655275,|0.614331,0.456956,0.916284,0.163213,0.964103,0.845223,0.736468,0.631864,0.28974,0.947009,0.400433,0.116761,0.646082,0.422164,0.0877306,0.920268,0.174163,0.76507,0.751973,0.107672,0.328882,0.0677026,0.171553,0.537823,0.850626,0.298649,0.632257,0.81428,0.173714,0.852105,0.781422,0.919406,0.521451,0.0166789,0.00549716,0.535691,0.518233,0.389035,0.806782,0.751731,0.379959,0.843571,0.61025,0.48439,0.862109,0.162251,0.869574,0.592272,0.0631672,0.344649,0.862364,0.233967,0.789039,0.0444635,0.367759,0.914297,0.908264,0.813445,0.46959,0.691926,0.322997,0.281878,0.25302,0.431122,0.276588,0.321988,0.355529,0.0165973,0.0163822,0.550368,0.581506,0.948925,0.769566,0.80564,0.715794,0.437649,0.57679,0.649627,0.0202807,0.268571,0.0999172,0.623986,0.903258,0.830531,0.441563,0.175201,0.141246,0.376919,0.0896537,0.678253,0.448053,0.0138999,0.276326,0.694452,0.325633,0.249787,0.493025,0.0163516,0.496806,0.672985,0.362581,0.0894864,0.198293,0.859937,0.840222,0.394073,0.0997404,0.991508,0.0119625,0.0764508,0.509864,0.227312,0.241398,0.463155,0.832922,0.185528,0.547587,0.137352,0.981783,0.174288,0.0650372,0.658761,0.0595323,0.7708,0.380347,0.869318,0.957124,0.688695,0.427268,0.230929,0.964166,0.147627,0.953372,0.723583,0.43211,0.373764,0.0816197,0.379892,0.799948,0.475618,0.586455,0.563607,0.459991,0.281385,0.0953972,0.0502859,0.7783,0.87548,0.242651,0.472747,0.872145,0.594161,0.96174,0.186471,0.173982,0.777404,0.252027,0.448851,0.584547,0.0274899,0.572072,0.965576,0.195663,0.540527,0.793628,0.575236,0.522899,0.765498,0.660223,0.348369,0.254522,0.0367488,0.717448,0.0815148,0.696225,0.768966,0.957958,0.356043,0.592117,0.842243,0.785245,0.903058,0.484011,0.492789,0.591274,0.341669,0.759062,0.239977,0.917244,0.0706463,0.597564,0.914138,0.550001,0.111746,0.353848,0.919488,0.364976,0.301647,0.0162095,0.20054,0.73084,0.552176,0.863707,0.206701,0.609214,0.946817,0.835385,0.970114,0.718917,0.247626,0.550048,0.249949,0.822325,0.745171,0.229351,0.544608,0.774123,0.491387,0.972411,0.166712,0.427952,0.584355,0.208469,0.660949,0.4728,0.944949,0.453511,0.175763,0.289552,0.517359,0.955152,0.330914,0.935419,0.758805,0.000131309,0.72336,0.900179,0.624905,0.429824,0.193359,0.334747,0.823022,0.850686,0.377994,0.181208,0.679293,0.577318,0.834126,0.362062,0.70341,0.489807,0.790762,0.308472,0.345514,0.240665,0.745975,0.992985,0.507501,0.458317,0.565362,0.114055,0.161616,0.986439,0.808443,0.824392,0.464348,0.245435,0.918716,0.234619,0.952682,0.53944,0.807905,0.603827,0.119929,0.126774,0.759357,0.377239,0.762679,0.237079,0.141769,0.650101,0.966588,0.484725,0.283254,0.0822448,0.645791,0.706316,0.0238065,0.0969187,0.77029,0.207384,0.87647,0.233486,0.592142,0.575721,0.295506,0.0877501,0.167564,0.37781,0.479854,0.776002,0.148708,0.531563,0.597601,0.333504,0.857808,0.904654,0.747337,0.0743436,0.581428,0.363742,0.251569,0.250733,0.133467,0.679417,0.613894,0.850643,0.492578,0.760532,0.747555,0.629393,0.702534,0.292076,0.546082,0.112966,0.468175,0.477517,0.794956,0.206218,0.375224,0.87559,0.614354,0.752142,0.996587,0.310842,0.386088,0.372501,0.408309,0.464086,0.806146,0.652228,0.259789,0.583742,0.760096,0.529543,0.634766,0.428263,0.542622,0.656607,0.593486,0.899254,0.734567,0.318514,0.614483,0.483791,0.43902,0.25833,0.256808,0.334384,0.23305,0.372322,0.93063,0.354946,0.253427,0.692534,0.954035,0.776381,0.911538,0.194929,0.581918,0.341171,0.608438,0.928029,0.445592,0.411413,0.535349,0.554992,0.488622,0.878295,0.624293,0.508199,0.0515944,0.803991,0.387544,0.7134,0.125323,0.11709,0.466203,0.75567,0.144177,0.394578,0.302634,0.813696,0.904336,0.733821,0.0355018,0.192714,0.713104,0.375989,0.243276,0.345642,0.887343,0.101584,0.618175,0.331935,0.569748,0.936738,0.624577,0.788087,0.984621,0.998311,0.137758,0.165822,0.100486,0.44769,0.339587,0.876037,0.688015,0.557092,0.434359,0.914392,0.28354,0.769122,0.286543,0.617684,0.668754,0.85127,0.0402745,0.955083,0.974142,0.758783,0.480378,0.155559,0.607024,0.848386,0.729007,0.1719,0.189746,0.619204,0.577995,0.448798,0.966809,0.107239,0.396598,0.341592,0.730576,0.39294,0.340972,0.697188,0.742795,0.981002,0.231535,0.0869178,0.953228,0.508765,0.4561,0.790273,0.368673,0.450622,0.522899,0.293368,0.9294,0.368026,0.527971,0.578408,0.950257,0.470325,0.0636289,0.779427,0.583179,0.353464,0.33349,0.219132,0.241787,0.180517,0.125796,0.514466,0.691418,0.960984,0.131767,0.452911,0.33675,0.729182,0.84786,0.212868,0.980353,0.906667,0.922511,0.616072,0.643555,0.24046,0.415208,0.472455,0.87133,0.657476,0.48906,0.0150179,0.209065,0.17244,0.383281,0.975839,0.753537,0.911688,0.937841,0.492511,0.0825213,0.080341,0.270151,0.315112,0.559714,0.167199,0.615902,0.0416255,0.156279,0.0973918,0.736288,0.627566,0.64149,0.464905,0.38999,0.693498,0.74264,0.413062,0.767865,0.684562,0.469083,0.98876,0.635355,0.557297,0.491084,0.616136,0.596395,0.37063,0.177468,0.823473,0.83239,0.559347,0.992971,0.0792914,0.413095,0.969326,0.526599,0.947614,0.890981,0.220705,0.0307784,0.804723,0.0878259,0.439328,0.773532,0.354331,0.722917,0.615865,0.719851,0.489345,0.168229,0.475719,0.862393,0.553282,0.691173,0.118375,0.803994,0.0160605,0.909567,0.585691,0.752394,0.298825,0.171677,0.752014,0.108941,0.56955,0.591059,0.707055,0.348912,0.130835,0.984948,0.112799,0.858584,0.0170396,0.880386,0.300567,0.155651,0.0976396,0.785063,0.843329,0.0764912,0.215771,0.921717,0.660779,0.991275,0.49089,0.198789,0.0814449,0.347164,0.454897,0.224096,0.217438,0.0964097,0.401897,0.608999,0.471183,0.376199,0.495839,0.89571,0.896257,0.204268,0.027952,0.824521,0.306894,0.832046,0.75701,0.91546,0.417331,0.00920272,0.822271,0.829476,0.0644619,0.891086,0.541642,0.844518,0.65013,0.528395,0.944855,0.116689,0.114152,0.92356,0.567792,0.509278,0.968655,0.255687,0.934452,0.0093084,0.271801,0.197744,0.945308,0.658279,0.880529,0.59331,0.31983,0.20311,0.828999,0.431785,0.161236,0.11144,0.0995731,0.768486,0.837386,0.115281,0.372415,0.830152,0.965556,0.62456,0.61671,0.18509,0.318195,0.499714,0.284507,0.113724,0.497563,0.668018,0.720215,0.855461,0.854161,0.991528,0.550926,0.253993,0.096566,0.799747,0.268258,0.254518,0.858768,0.0608403,0.317995,0.706349,0.403886,0.929142,0.230938,0.0998279,0.0873719,0.0138025,0.444351,0.0535207,0.811696,0.356281,0.735799,0.0691526,0.723945,0.500197,0.252043,0.975249,0.661942,0.711012,0.725827,0.533224,0.605658,0.339839,0.948319,0.701726,0.344554,0.436342,0.7289,0.899419,0.378195,0.87767,0.503715,0.846162,0.0350265,0.291478,0.306515,0.893736,0.425854,0.42182,0.978302,0.410842,0.180756,0.667967,0.0429103,0.708118,0.800514,0.719527,0.748943,0.0750012,0.0573586,0.568044,0.622343,0.376467,0.0289778,0.413599,0.0247233,0.985763,0.738009,0.201633,0.433487,0.536439,0.511886,0.949424,0.84016,0.469875,0.238234,0.103584,0.37981,0.455989,0.0531259,0.808613,0.647401,0.417513,0.246181,0.416963,0.586537,0.344863,0.608097,0.121647,0.439347,0.646997,0.851655,0.713734,0.626618,0.178396,0.1655,0.175763,0.025479,0.435648,0.37737,0.379189,0.909102,0.779626,0.460079,0.0707836,0.76031,0.651059,0.700995,0.962676,0.84539,0.589501,0.670132,0.324592,0.666055,0.97046,0.671908,0.224503,0.885941,0.111129,0.552856,0.454327,0.0207636,0.291834,0.0226099,0.392517,0.555655,0.305992,0.330194,0.222511,0.985809,0.21634,0.125693,0.0147541,0.953909,0.558631,0.449176,0.937945,0.39667,0.706488,0.0660139,0.227751,0.858126,0.686665,0.864985,0.481206,0.910447,0.526675,0.941664,0.956288,0.131598,0.609518,0.320713,0.250971,0.607916,0.0442705,0.865139,0.353169,0.654246,0.0654417,0.821587,0.611184,0.0762368,0.683876,0.741371,0.275838,0.063228,0.779158,0.0252389,0.262589,0.735666,0.697637,0.0573228,0.488494,0.0755631,0.487455,0.494428,0.911131,0.292027,0.0416849,0.160986,0.696838,0.85623,0.0693164,0.583569,0.0852137,0.817762,0.441914,0.393337,0.61223,0.755798,0.330439,0.527996,0.901846,0.119123,0.174226,0.120084,0.283647,0.0519757,0.488732,0.26142,0.364296,0.40482,0.165785,0.99803,0.655437,0.866891,0.106367,0.259169,0.489128,0.533297,0.224267,0.721375,0.300029,0.0115174,0.818326,0.902181,0.0952926,0.773907,0.237927,0.883289,0.669742,0.622191,0.913369,0.355511,0.783944,0.544164,0.497336,0.441983,0.0317535,0.12206,0.130153,0.715337,0.663079,0.365222,0.0799049,0.280701,0.970241,0.686694,0.0792246,0.0197684,0.263314,0.468981,0.778079,0.082795,0.667881,0.159561,0.218,0.0990584,0.200562,0.284897,0.67365,0.689397,0.951169,0.996137,0.0257768,0.851958,0.795407,0.110545,0.586712,0.0478385,0.707749,0.218676,0.543149,0.402368,0.576872,0.633411,0.360918,0.554322,0.950361,0.255704,0.0516648,0.639121,0.683296,0.0316239,0.493334,0.894564,0.704194,0.728575,0.118277,0.142047,0.937084,0.308048,0.753634,0.594043,0.136997,0.839017,0.798494,0.935516,0.549452,0.715617,0.87337,0.388988,0.769743,0.329201,0.369467,0.840946,0.101078,0.210484,0.544864,0.403657,0.35968,0.891023,0.573552,0.561121,0.319591,0.271402,0.114154,0.652281,0.980889,0.941742,0.467926,0.466048,0.781494,0.176313,0.865168,0.45896,0.306866,0.634609,0.17907,0.484311,0.487496,0.0367416,0.0565038,0.386958,0.424409,0.414317,0.200897,0.250572,0.0156569,0.715824,0.199299,0.225579,0.118504,0.259775,0.206955,0.803562,0.460263,|0.215263,0.399422,0.158698,0.437392,0.914962,0.120283,0.751454,0.683192,0.293342,0.294957,0.587869,0.96872,0.468096,0.68214,0.986429,0.597921,0.256024,0.681863,0.456432,0.305526,0.441431,0.857303,0.389979,0.966281,0.169481,0.585596,0.0736905,0.900179,0.0780382,0.000644147,0.512519,0.0608121,0.422288,0.211725,0.835159,0.633572,0.444173,0.363068,0.306632,0.188697,0.791825,0.554745,0.0938933,0.380697,0.40284,0.983678,0.587022,0.969484,0.654051,0.397231,0.371883,0.856435,0.363018,0.577751,0.377356,0.034545,0.0394681,0.48291,0.341887,0.944468,0.217294,0.919797,0.905278,0.600601,0.800595,0.594391,0.376637,0.927256,0.352031,0.0122743,0.0780579,0.495956,0.217034,0.802368,0.0506638,0.0191332,0.446485,0.833052,0.239511,0.170584,0.458514,0.374556,0.100459,0.308405,0.0361131,0.0133026,0.277179,0.296021,0.287904,0.383471,0.74288,0.496444,0.584519,0.82109,0.363181,0.997591,0.707864,0.841613,0.5428,0.0543147,0.480388,0.865783,0.0787626,0.883869,0.25982,0.0204237,0.516104,0.757646,0.126427,0.854791,0.292622,0.51209,0.379318,0.352905,0.0274395,0.7677,0.787855,0.808897,0.55294,0.617673,0.342343,0.184622,0.0671167,0.808833,0.957629,0.405544,0.110809,0.0758746,0.0180896,0.935068,0.136413,0.208725,0.914931,0.273709,0.883932,0.563318,0.273887,0.314501,0.832406,0.860333,0.900186,0.464866,0.325004,0.945962,0.304093,0.953394,0.493047,0.292092,0.610238,0.243891,0.557096,0.123059,0.981456,0.211095,0.984269,0.873156,0.428389,0.495865,0.906589,0.242523,0.323673,0.213952,0.819986,0.715504,0.597176,0.663878,0.898219,0.305565,0.664779,0.743975,0.444181,0.317253,0.738511,0.722748,0.959898,0.124672,0.973554,0.924271,0.132623,0.735636,0.603419,0.955333,0.380279,0.227198,0.787566,0.15088,0.600173,0.742146,0.915377,0.0119643,0.839348,0.793329,0.406915,0.60588,0.992221,0.042803,0.0282366,0.861129,0.591057,0.0116979,0.20662,0.993179,0.327172,0.169484,0.565802,0.39591,0.0743213,0.545919,0.542617,0.615576,0.320113,0.993495,0.393148,0.927404,0.280271,0.327694,0.927317,0.328426,0.600384,0.772631,0.403471,0.903452,0.887804,0.11762,0.564178,0.245085,0.0708933,0.892989,0.748825,0.00451565,0.263791,0.0942363,0.420781,0.699956,0.96929,0.476479,0.977848,0.0131279,0.782426,0.164937,0.278361,0.859477,0.918813,0.0771521,0.715874,0.581935,0.816873,0.879364,0.448417,0.341913,0.439337,0.449037,0.263167,0.0785905,0.408754,0.604499,0.735256,0.727561,0.619023,0.116999,0.4156,0.275431,0.489704,0.702291,0.940703,0.410635,0.162644,0.427246,0.907318,0.945021,0.364402,0.656991,0.865812,0.798449,0.282978,0.963728,0.350219,0.0834268,0.143194,0.0716398,0.667484,0.441971,0.588127,0.657767,0.159435,0.210715,0.0600783,0.820363,0.774026,0.504059,0.732906,0.0527478,0.288187,0.811202,0.0263296,0.800803,0.186826,0.497975,0.906852,0.511949,0.787081,0.913422,0.239178,0.569322,0.0526308,0.136706,0.722728,0.54111,0.531177,0.758785,0.229127,0.619164,0.98166,0.704693,0.633218,0.804939,0.57372,0.45447,0.847789,0.149053,0.543833,0.923283,0.693443,0.046829,0.29177,0.233007,0.612823,0.42582,0.640777,0.465176,0.49721,0.164294,0.851399,0.47326,0.140146,0.498087,0.709459,0.183642,0.497805,0.542076,0.231673,0.512734,0.619726,0.736816,0.389643,0.304788,0.380529,0.637995,0.0654261,0.947979,0.160593,0.118823,0.548612,0.763993,0.567229,0.0832425,0.0734798,0.8582,0.257245,0.531266,0.849965,0.187366,0.760444,0.0300813,0.389242,0.687368,0.985937,0.543059,0.180277,0.655009,0.33477,0.39261,0.220443,0.157276,0.741202,0.780212,0.630215,0.960269,0.456921,0.179043,0.129357,0.465814,0.0307633,0.180152,0.0184865,0.226907,0.401066,0.232983,0.264791,0.38911,0.772394,0.231076,0.00770801,0.988345,0.568138,0.781439,0.769171,0.447002,0.784009,0.573668,0.379494,0.0401235,0.758732,0.920893,0.788432,0.313697,0.964427,0.924233,0.99378,0.332942,0.774309,0.10527,0.547283,0.0593166,0.694426,0.890161,0.544551,0.252728,0.158381,0.613562,0.659908,0.0267597,0.335824,0.93587,0.848453,0.910178,0.295581,0.514549,0.50374,0.988139,0.164367,0.550045,0.546743,0.0990683,0.876179,0.559693,0.420572,0.309532,0.784014,0.371143,0.716049,0.0893636,0.498521,0.993646,0.634012,0.287446,0.921452,0.488028,0.258768,0.628398,0.725653,0.652628,0.159562,0.455016,0.971919,0.413854,0.0446286,0.248899,0.609107,0.556773,0.908615,0.846989,0.0680564,0.820934,0.57362,0.291234,0.628252,0.788743,0.239628,0.773784,0.613748,0.345698,0.850336,0.289825,0.624118,0.599483,0.71199,0.126391,0.483869,0.960977,0.813204,0.962494,0.686027,0.89178,0.256402,0.371573,0.415029,0.559453,0.7975,0.542588,0.356052,0.572112,0.799497,0.648351,0.125467,0.165274,0.287669,0.574494,0.0283119,0.541048,0.809116,0.21204,0.264456,0.153856,0.351961,0.936473,0.822902,0.174649,0.277091,0.675992,0.213787,0.975197,0.479436,0.375389,0.711851,0.956461,0.616316,0.258811,0.609074,0.316355,0.470908,0.601473,0.712019,0.430821,0.696961,0.94959,0.745043,0.528539,0.29925,0.399168,0.00902933,0.501865,0.204571,0.574008,0.22396,0.957644,0.315484,0.800227,0.424438,0.45299,0.75091,0.0171933,0.169643,0.991847,0.105978,0.66567,0.290464,0.141258,0.688995,0.37037,0.901021,0.196765,0.428156,0.309433,0.638904,0.803026,0.837483,0.149711,0.725477,0.858607,0.219751,0.689392,0.0580438,0.320784,0.714738,0.540177,0.595527,0.200943,0.214255,0.146086,0.096824,0.449782,0.412732,0.170975,0.220707,0.510499,0.333294,0.867508,0.00702119,0.549309,0.653841,0.370808,0.672956,0.988061,0.54492,0.892599,0.0733095,0.507105,0.18496,0.270348,0.299293,0.8004,0.674676,0.0474516,0.272519,0.508728,0.0531968,0.813491,0.0635214,0.366882,0.816332,0.782194,0.693672,0.158251,0.05152,0.198954,0.806491,0.839707,0.244768,0.727643,0.541582,0.835204,0.688182,0.657794,0.14047,0.871686,0.704827,0.8785,0.609221,0.445524,0.788242,0.476722,0.468897,0.737987,0.041293,0.922387,0.621772,0.139527,0.947986,0.378046,0.387572,0.963303,0.353751,0.305381,0.194196,0.653929,0.647107,0.401385,0.0610224,0.0161859,0.374337,0.302429,0.818742,0.420783,0.260758,0.559095,0.401697,0.622406,0.543513,0.498429,0.0411889,0.698462,0.211929,0.703042,0.671525,0.476645,0.765111,0.00758767,0.0296184,0.165858,0.949335,0.479968,0.373741,0.734019,0.155687,0.549004,0.481975,0.349934,0.80634,0.838225,0.282627,0.1438,0.689033,0.41342,0.456197,0.853248,0.702065,0.932377,0.801442,0.278275,0.542804,0.449197,0.878841,0.353128,0.383924,0.885323,0.564567,0.892577,0.446724,0.974937,0.805555,0.850715,0.994444,0.306169,0.692965,0.936821,0.986079,0.814017,0.124247,0.488918,0.303266,0.0235205,0.213557,0.832815,0.975432,0.64161,0.49489,0.818573,0.857039,0.108868,0.219631,0.733814,0.785256,0.957937,0.229207,0.725696,0.998167,0.94183,0.77867,0.661893,0.978736,0.134073,0.0104807,0.581548,0.692292,0.568531,0.935182,0.980897,0.725959,0.431204,0.535731,0.210427,0.392062,0.882553,0.282021,0.935487,0.085295,0.931405,0.0359558,0.478532,0.152438,0.486639,0.120558,0.790744,0.804651,0.641399,0.486287,0.862236,0.839132,0.121577,0.374213,0.0182517,0.94331,0.858339,0.674074,0.259671,0.133564,0.856159,0.81872,0.235742,0.781029,0.0296703,0.365095,0.586657,0.393243,0.863295,0.973823,0.855675,0.0275781,0.966086,0.6296,0.604975,0.766353,0.949349,0.285756,0.294241,0.684883,0.869131,0.985912,0.681495,0.708228,0.00137472,0.198599,0.0303535,0.215616,0.675138,0.686272,0.461599,0.437405,0.870308,0.830176,0.182137,0.830816,0.670606,0.73824,0.331547,0.346823,0.0155938,0.174202,0.802523,0.859364,0.833669,0.998177,0.365529,0.573051,0.244186,0.0482193,0.563395,0.35839,0.663249,0.602331,0.283068,0.486802,0.949724,0.604408,0.52353,0.268033,0.281909,0.0421848,0.163865,0.519077,0.0523974,0.825025,0.476596,0.345395,0.532684,0.699207,0.953022,0.382737,0.528069,0.789347,0.293438,0.113865,0.895377,0.884442,0.357085,0.314352,0.543543,0.259056,0.690997,0.13047,0.892771,0.145537,0.310552,0.491444,0.239552,0.648404,0.807824,0.651948,0.930987,0.408719,0.464059,0.324001,0.60658,0.51512,0.161681,0.360665,0.299425,0.609586,0.545886,0.430052,0.0520852,0.977935,0.328182,0.269971,0.473879,0.975443,0.322812,0.27031,0.504376,0.745806,0.198769,0.618782,0.788679,0.697685,0.755558,0.325812,0.199474,0.441223,0.891367,0.803883,0.501182,0.245676,0.454233,0.133882,0.553557,0.841518,0.480398,0.0708248,0.771762,0.936073,0.438995,0.794326,0.337561,0.0241909,0.866572,0.727925,0.580953,0.927295,0.748696,0.221354,0.922929,0.333472,0.537409,0.789608,0.322885,0.809555,0.0568443,0.528385,0.894596,0.36353,0.0790091,0.864424,0.236637,0.62229,0.229301,0.893446,0.16697,0.619964,0.458949,0.395355,0.790151,0.377772,0.00179744,0.274248,0.030333,0.587312,0.923474,0.502574,0.908429,0.159779,0.555211,0.886861,0.232297,0.719715,0.606875,0.136588,0.35196,0.543157,0.353972,0.039957,0.323559,0.280302,0.372683,0.938843,0.158475,0.29747,0.892065,0.963831,0.316061,0.246755,0.859817,0.61911,0.62959,0.707771,0.798965,0.171191,0.239429,0.0705525,0.604468,0.298638,0.969117,0.780399,0.29966,0.518085,0.300514,0.00383329,0.876452,0.690248,0.148963,0.890001,0.396512,0.812171,0.273198,0.474701,0.793391,0.395933,0.247087,0.145884,0.167096,0.219864,0.576122,0.704189,0.207944,0.767245,0.103734,0.718365,0.71899,0.600194,0.839043,0.207443,0.859688,0.997584,0.743412,0.71408,0.631443,0.48069,0.414507,0.852412,0.0926952,|0.698588,0.80648,0.0424627,0.863789,0.0718476,0.95408,0.0969071,0.058022,0.350199,0.232585,0.545046,0.78195,0.550394,0.120357,0.326299,0.0789582,0.426786,0.466827,0.679735,0.514556,0.32005,0.989051,0.204681,0.394307,0.0978687,0.373466,0.762429,0.823882,0.655707,0.34759,0.256001,0.910301,0.64614,0.411867,0.949861,0.734316,0.682671,0.800343,0.629698,0.0320726,0.2175,0.00122678,0.860254,0.146533,0.311689,0.46597,0.192157,0.911739,0.796102,0.40726,0.306324,0.535219,0.030568,0.919949,0.787093,0.915828,0.496622,0.0546918,0.231999,0.106932,0.277128,0.454293,0.353523,0.795791,0.897561,0.275747,0.0780122,0.195572,0.380017,0.0819723,0.911614,0.48928,0.464256,0.188067,0.163341,0.0350441,0.983283,0.459961,0.54774,0.129724,0.914515,0.755363,0.855595,0.123573,0.37328,0.087209,0.12997,0.818777,0.867356,0.564996,0.437666,0.149884,0.998988,0.603184,0.761287,0.481686,0.659633,0.321189,0.0953327,0.519406,0.0830119,0.64959,0.184875,0.586258,0.409054,0.860543,0.299153,0.740731,0.58499,0.165238,0.688144,0.11438,0.976448,0.958825,0.314291,0.411295,0.278799,0.46673,0.140055,0.928816,0.163432,0.984109,0.892668,0.0109153,0.0412895,0.427212,0.441594,0.724375,0.14929,0.909339,0.123701,0.217104,0.707666,0.450163,0.667272,0.399026,0.218367,0.0967395,0.439013,0.998973,0.424039,0.947608,0.478614,0.695458,0.563428,0.363797,0.263207,0.376501,0.64891,0.043438,0.402665,0.607218,0.258978,0.640456,0.846847,0.642545,0.116143,0.54746,0.148473,0.906915,0.135648,0.616849,0.934185,0.56853,0.119255,0.400417,0.067704,0.503282,0.845307,0.188994,0.40182,0.809409,0.952579,0.00895804,0.669225,0.112381,0.356661,0.508997,0.569868,0.996032,0.377473,0.850933,0.630664,0.387302,0.512444,0.686313,0.542231,0.706396,0.0379736,0.783586,0.200323,0.949423,0.967695,0.735442,0.693824,0.358695,0.531862,0.127121,0.806706,0.0563552,0.850647,0.451556,0.890798,0.116728,0.715533,0.0555282,0.472365,0.643763,0.912404,0.614251,0.311104,0.508888,0.577453,0.972462,0.965282,0.751336,0.266794,0.27148,0.216179,0.240903,0.983918,0.832741,0.572763,0.340268,0.841427,0.586432,0.981955,0.541851,0.583702,0.379416,0.689832,0.229402,0.190043,0.870878,0.0672927,0.107674,0.793286,0.155581,0.0334641,0.345419,0.991395,0.50006,0.461296,0.683109,0.295206,0.0493277,0.101134,0.828568,0.503092,0.412226,0.199225,0.414216,0.167007,0.231038,0.018402,0.386478,0.923322,0.502664,0.134075,0.709377,0.941509,0.952221,0.826048,0.306477,0.632525,0.686525,0.099351,0.271444,0.260854,0.632526,0.87211,0.321517,0.657395,0.951064,0.0740105,0.36735,0.87744,0.683309,0.8524,0.311452,0.800658,0.148295,0.626908,0.134399,0.365682,0.13853,0.799469,0.0193633,0.0785918,0.286291,0.537509,0.742614,0.851061,0.294891,0.550282,0.528604,0.428006,0.0717248,0.552695,0.734721,0.827353,0.154794,0.388056,0.352795,0.0218765,0.483229,0.456309,0.200682,0.932193,0.776227,0.391599,0.0348736,0.848705,0.70806,0.783411,0.307847,0.825616,0.765559,0.51811,0.913036,0.982604,0.38028,0.974453,0.685632,0.214194,0.698886,0.873302,0.265601,0.767584,0.617344,0.0346594,0.870669,0.531852,0.178763,0.654724,0.285051,0.768602,0.302391,0.187287,0.451177,0.476533,0.925221,0.569009,0.611061,0.458115,0.00765425,0.714913,0.930474,0.252977,0.694315,0.901482,0.244834,0.23527,0.24783,0.497351,0.797868,0.193195,0.99759,0.426555,0.278683,0.72901,0.611441,0.968392,0.963325,0.451158,0.459155,0.759521,0.0583882,0.916242,0.838661,0.880378,0.125057,0.340655,0.929157,0.376338,0.507075,0.893355,0.126967,0.0110449,0.991016,0.868496,0.562003,0.656092,0.63048,0.66227,0.982257,0.426407,0.263981,0.278465,0.80372,0.233059,0.301694,0.243122,0.65317,0.835377,0.754429,0.142632,0.768691,0.920028,0.598727,0.843911,0.957317,0.462429,0.177504,0.206432,0.36614,0.983484,0.943379,0.0499068,0.425423,0.777355,0.665212,0.606203,0.579834,0.224884,0.81701,0.105373,0.191891,0.393152,0.674942,0.243068,0.17689,0.150882,0.148533,0.385182,0.49486,0.673885,0.34376,0.253881,0.233854,0.197505,0.396895,0.668727,0.727708,0.11891,0.138125,0.110428,0.21538,0.401213,0.471846,0.992044,0.714691,0.167031,0.677005,0.534219,0.454631,0.548695,0.0823689,0.761921,0.119027,0.455043,0.994664,0.136969,0.0519547,0.120984,0.254933,0.753251,0.948441,0.362381,0.501255,0.454714,0.669838,0.563053,0.469263,0.502584,0.00880873,0.680983,0.210246,0.760598,0.995033,0.203188,0.126223,0.92164,0.797251,0.994328,0.672765,0.40189,0.680941,0.429897,0.714847,0.519618,0.676923,0.924144,0.501013,0.5599,0.675792,0.79629,0.487676,0.544507,0.0216956,0.978637,0.232592,0.57937,0.682178,0.603854,0.445299,0.711788,0.109694,0.689448,0.731325,0.817432,0.845637,0.211786,0.134409,0.537296,0.401024,0.510535,0.107139,0.644381,0.888258,0.092577,0.301413,0.458797,0.160362,0.506924,0.180881,0.459477,0.283064,0.496228,0.388761,0.385663,0.793506,0.805799,0.138165,0.205937,0.792484,0.525184,0.615717,0.260786,0.344985,0.44984,0.745799,0.89082,0.324974,0.29885,0.482508,0.711173,0.518792,0.0204564,0.379548,0.987908,0.366619,0.976967,0.114234,0.152134,0.360797,0.221946,0.291831,0.43652,0.0140718,0.14644,0.167044,0.838596,0.950293,0.238696,0.0606464,0.431221,0.118068,0.789386,0.44536,0.840584,0.271293,0.132664,0.597662,0.946559,0.0131525,0.864829,0.132019,0.0553706,0.720603,0.68145,0.454013,0.157696,0.0312948,0.144961,0.0607172,0.943251,0.216038,0.237462,0.169917,0.781548,0.68667,0.334845,0.0498615,0.862904,0.09447,0.576812,0.397114,0.558858,0.125295,0.563348,0.567021,0.351247,0.251764,0.499572,0.416982,0.101131,0.0944427,0.425603,0.497718,0.72299,0.176937,0.344608,0.781839,0.861875,0.0348716,0.214416,0.537674,0.480608,0.748923,0.390644,0.43009,0.402623,0.722713,0.31007,0.994342,0.601996,0.399378,0.821152,0.625135,0.439373,0.858095,0.569486,0.854656,0.667025,0.984441,0.0476411,0.100275,0.931939,0.844372,0.43708,0.936489,0.12156,0.433373,0.442136,0.689305,0.816965,0.0919467,0.760176,0.943261,0.394337,0.841309,0.504696,0.13976,0.21411,0.417589,0.576719,0.753087,0.82832,0.28025,0.668698,0.196598,0.679175,0.838782,0.361901,0.274597,0.104213,0.785764,0.611961,0.716438,0.724314,0.529339,0.30994,0.690299,0.755866,0.10222,0.653132,0.671737,0.10085,0.24113,0.427308,0.0525569,0.351565,0.30418,0.10304,0.671148,0.849524,0.905283,0.738041,0.32317,0.467569,0.405654,0.145046,0.721109,0.509231,0.769262,0.456152,0.446092,0.191963,0.647584,0.747794,0.305972,0.838698,0.00368041,0.627219,0.933493,0.615806,0.959147,0.708949,0.268489,0.433092,0.770125,0.388752,0.611392,0.375027,0.0135894,0.710097,0.00953376,0.696222,0.310928,0.440659,0.525137,0.292657,0.885255,0.214157,0.982666,0.927181,0.138224,0.143895,0.458604,0.550456,0.492575,0.965565,0.636726,0.771332,0.681608,0.108806,0.0235397,0.439892,0.190286,0.932448,0.206428,0.340938,0.812555,0.642856,0.354668,0.376088,0.207371,0.764292,0.70857,0.304312,0.335114,0.241967,0.884054,0.781398,0.793555,0.495092,0.992438,0.743704,0.0462934,0.616204,0.460244,0.393079,0.952217,0.518892,0.232486,0.910848,0.902039,0.365487,0.280168,0.153544,0.79579,0.556318,0.701716,0.418289,0.0262851,0.918074,0.440795,0.615231,0.554019,0.926743,0.270382,0.0861101,0.552137,0.966427,0.0720664,0.00695527,0.432034,0.45243,0.723906,0.107676,0.0626736,0.895575,0.581616,0.239188,0.108069,0.0531114,0.788253,0.909445,0.692192,0.227031,0.187398,0.762735,0.0234953,0.481532,0.813513,0.916106,0.935677,0.14866,0.702895,0.152986,0.340915,0.237292,0.720062,0.383679,0.040642,0.993517,0.127947,0.00776953,0.947765,0.346895,0.693283,0.384804,0.450035,0.263927,0.442504,0.829768,0.12772,0.226638,0.335171,0.931188,0.259095,0.310944,0.502487,0.686139,0.48185,0.277664,0.426556,0.430992,0.190312,0.713332,0.592481,0.738857,0.302227,0.561969,0.532267,0.855959,0.981408,0.827894,0.475352,0.48831,0.728962,0.215104,0.497382,0.471543,0.0155953,0.499195,0.969634,0.641631,0.892366,0.582816,0.386981,0.716092,0.607821,0.43449,0.974307,0.0898973,0.259407,0.887594,0.0428215,0.711447,0.39331,0.174574,0.776547,0.115068,0.229811,0.962041,0.723141,0.788349,0.43749,0.904526,0.875631,0.143642,0.678193,0.986276,0.448848,0.750968,0.336474,0.928067,0.774832,0.507674,0.932118,0.437348,0.755477,0.0108397,0.333114,0.435113,0.215874,0.243313,0.941707,0.910883,0.985051,0.223228,0.628236,0.286561,0.30713,0.336516,0.713764,0.802238,0.0452573,0.956464,0.343733,0.718578,0.63536,0.351508,0.209143,0.272608,0.0606202,0.883561,0.471063,0.866615,0.511301,0.302024,0.256543,0.384998,0.992753,0.956691,0.478028,0.0108301,0.507281,0.890363,0.172268,0.565517,0.0134921,0.817609,0.309364,0.441473,0.561633,0.55297,0.286972,0.388041,0.0217147,0.409545,0.174256,0.696651,0.713567,0.552085,0.0934075,0.871576,0.803029,0.0734495,0.971965,0.391666,0.0336633,0.43786,0.159258,0.0325053,0.189617,0.906265,0.988667,0.545928,0.586073,0.367235,0.475549,0.493759,0.885142,0.493617,0.164592,0.112669,0.0777411,0.0494878,0.644191,0.311274,0.410339,0.809011,0.843023,0.430075,0.126744,0.416702,0.183604,0.372869,0.52618,0.771903,0.338418,0.34754,0.981517,0.0523475,0.702034,0.52529,0.205623,0.529846,0.188167,0.457461,0.105456,0.77916,0.29045,0.634367,0.299005,0.0161037,0.0373831,0.793297,0.0289491,0.45093,0.948044,0.415902,0.571718,0.866456,0.948741,0.661958,0.588502,|0.816929,0.975763,0.70787,0.842212,0.339899,0.497468,0.82882,0.877255,0.0562582,0.838364,0.874572,0.135193,0.167177,0.904429,0.74197,0.784792,0.386029,0.443052,0.780332,0.508157,0.109807,0.285066,0.200421,0.702345,0.836079,0.113058,0.967901,0.808661,0.93258,0.245286,0.784614,0.924551,0.445435,0.708451,0.388783,0.293791,0.241582,0.294454,0.0161312,0.132217,0.155622,0.970166,0.584064,0.634506,0.887458,0.674196,0.627567,0.431036,0.717246,0.822416,0.547445,0.197072,0.331627,0.756744,0.444088,0.372971,0.855238,0.917973,0.9856,0.0548823,0.766311,0.948522,0.733991,0.128295,0.31688,0.353002,0.379439,0.784871,0.988574,0.831323,0.0756359,0.633147,0.856352,0.500557,0.364723,0.964257,0.131644,0.370703,0.699517,0.153914,0.0229872,0.648267,0.48511,0.175991,0.817101,0.57512,0.505977,0.903112,0.752793,0.0517181,0.685831,0.554294,0.58138,0.730599,0.892051,0.278336,0.532385,0.534248,0.549996,0.62773,0.0136931,0.762291,0.0706035,0.231786,0.429713,0.0047254,0.119093,0.0289518,0.536901,0.449455,0.056078,0.612696,0.77721,0.752513,0.601426,0.481386,0.514828,0.524187,0.716723,0.804575,0.99476,0.961839,0.383608,0.226277,0.394741,0.568599,0.732196,0.617548,0.00528592,0.0663293,0.165145,0.264702,0.773483,0.907699,0.810703,0.770253,0.454198,0.886744,0.563583,0.37415,0.591133,0.104651,0.554098,0.0862318,0.0143458,0.620366,0.333908,0.995147,0.698678,0.629813,0.428848,0.954016,0.871151,0.895983,0.682818,0.629958,0.898509,0.366112,0.134879,0.122942,0.827636,0.669722,0.0382763,0.0984018,0.654854,0.846304,0.669898,0.976335,0.175762,0.840369,0.0749559,0.685689,0.142306,0.116899,0.639956,0.988306,0.714846,0.551654,0.940388,0.718818,0.62548,0.878663,0.268634,0.739068,0.788057,0.445278,0.328556,0.508492,0.0752262,0.711526,0.0307267,0.333762,0.922199,0.49933,0.0924175,0.509878,0.433543,0.148596,0.152303,0.304343,0.0571378,0.636312,0.594795,0.582497,0.374853,0.913139,0.754278,0.665492,0.368646,0.990532,0.306484,0.835754,0.699565,0.714097,0.994793,0.0370789,0.631113,0.39024,0.979551,0.902775,0.964489,0.352434,0.0159447,0.153121,0.486512,0.787159,0.359877,0.480433,0.618077,0.44871,0.363267,0.0614412,0.210473,0.211404,0.987433,0.326942,0.460289,0.927015,0.863722,0.219495,0.181878,0.3598,0.881146,0.765669,0.550762,0.0684599,0.568386,0.793832,0.741394,0.971545,0.20912,0.598293,0.569124,0.38671,0.97579,0.934632,0.56978,0.936326,0.869086,0.535719,0.0306397,0.00787389,0.625106,0.568478,0.851192,1.74642e-05,0.279762,0.489514,0.902665,0.887678,0.754455,0.491382,0.471343,0.896631,0.906516,0.478724,0.878597,0.554872,0.496116,0.566982,0.743209,0.921201,0.710625,0.989747,0.731899,0.39108,0.726371,0.197387,0.448178,0.48486,0.225994,0.940086,0.507201,0.0760886,0.178032,0.253135,0.933708,0.572558,0.380307,0.0817927,0.904606,0.615688,0.954013,0.339968,0.206106,0.698416,0.161964,0.209765,0.163652,0.940166,0.831667,0.638932,0.171711,0.730876,0.930247,0.309752,0.665352,0.557244,0.31988,0.359413,0.727513,0.358814,0.0157281,0.0417722,0.580034,0.102625,0.258911,0.35522,0.521971,0.447926,0.480448,0.28811,0.152786,0.34186,0.921851,0.571866,0.77886,0.371296,0.706701,0.487562,0.573064,0.430185,0.419917,0.346652,0.332392,0.451772,0.914247,0.645455,0.322828,0.00830609,0.147247,0.571117,0.278115,0.466526,0.226436,0.371076,0.449081,0.526053,0.600763,0.00699645,0.697331,0.967436,0.320507,0.97991,0.239407,0.425524,0.781679,0.65301,0.167797,0.0210677,0.063913,0.0244228,0.545048,0.488941,0.423859,0.221074,0.0601616,0.495272,0.576444,0.6259,0.606565,0.0446768,0.869234,0.677105,0.174707,0.186754,0.0212396,0.764319,0.730509,0.611029,0.799436,0.834525,0.665339,0.685563,0.0190035,0.0458955,0.506724,0.311451,0.869024,0.649099,0.335614,0.68685,0.797469,0.596237,0.888908,0.290896,0.722242,0.634665,0.263413,0.0218337,0.895002,0.695896,0.2854,0.926726,0.978207,0.944945,0.3948,0.312787,0.243759,0.0951054,0.905697,0.910062,0.927928,0.625867,0.727825,0.154527,0.653987,0.57283,0.96025,0.305853,0.25419,0.459013,0.410377,0.451538,0.49885,0.500618,0.92272,0.370395,0.734422,0.599217,0.649479,0.963065,0.846757,0.7925,0.744304,0.397813,0.809173,0.811682,0.0792444,0.03881,0.958515,0.101232,0.149766,0.628919,0.221918,0.319274,0.926253,0.942731,0.971345,0.614873,0.376352,0.658801,0.564696,0.44099,0.0861826,0.0543047,0.193713,0.169119,0.417064,0.0221125,0.679438,0.35743,0.747958,0.415613,0.975064,0.142064,0.975593,0.438815,0.537636,0.99335,0.179543,0.976236,0.0906557,0.759127,0.641113,0.181815,0.954616,0.94979,0.428992,0.114916,0.940114,0.241977,0.439258,0.737181,0.243027,0.662418,0.565225,0.546699,0.780385,0.739049,0.673621,0.933087,0.374278,0.26227,0.0950974,0.72123,0.74582,0.901692,0.21114,0.268173,0.244765,0.768293,0.797316,0.197872,0.364982,0.0508798,0.418215,0.653046,0.0929881,0.115443,0.202707,0.498421,0.210414,0.593168,0.52179,0.390933,0.403179,0.984064,0.780454,0.832151,0.0552526,0.159446,0.108182,0.350766,0.601497,0.534915,0.548208,0.257342,0.259859,0.206115,0.447891,0.162309,0.205505,0.920112,0.938414,0.514419,0.108452,0.696897,0.385731,0.420775,0.350103,0.201216,0.313567,0.510351,0.213537,0.450505,0.006293,0.176732,0.990735,0.539891,0.305415,0.116506,0.350589,0.355183,0.366943,0.546514,0.487999,0.234122,0.158813,0.455508,0.235385,0.110158,0.501976,0.976472,0.00454825,0.177755,0.100725,0.556912,0.541306,0.147872,0.308846,0.380137,0.784932,0.427161,0.929721,0.747001,0.326812,0.969894,0.366144,0.534513,0.663713,0.671334,0.523301,0.823132,0.771602,0.303561,0.857956,0.680581,0.971484,0.81338,0.40889,0.757356,0.0589527,0.699493,0.793576,0.612406,0.0778174,0.218964,0.0870064,0.668121,0.683386,0.627899,0.797378,0.797699,0.644646,0.700806,0.824155,0.223164,0.527066,0.480395,0.765763,0.591978,0.594785,0.179974,0.640963,0.1806,0.432498,0.222797,0.562516,0.516273,0.48067,0.0209291,0.377373,0.590369,0.18714,0.745882,0.818167,0.944533,0.215589,0.604413,0.655378,0.22144,0.657156,0.00906909,0.207796,0.46725,0.946147,0.766689,0.751961,0.476349,0.783352,0.018923,0.968222,0.0488843,0.167097,0.927261,0.273718,0.0674116,0.335025,0.347464,0.0196781,0.286145,0.239549,0.639424,0.782577,0.578319,0.454679,0.378971,0.278279,0.0339313,0.866608,0.635134,0.901949,0.645479,0.231698,0.487219,0.123367,0.629569,0.115907,0.485635,0.381571,0.294972,0.22023,0.211923,0.630582,0.12368,0.252569,0.871991,0.938466,0.957593,0.687062,0.975552,0.286804,0.319288,0.754348,0.945376,0.720423,0.110922,0.202047,0.298682,0.154438,0.116143,0.821013,0.82717,0.0386966,0.392488,0.90875,0.439442,0.0976899,0.663837,0.310178,0.0666944,0.182735,0.075927,0.735238,0.75379,0.684621,0.601504,0.977456,0.595908,0.968565,0.986624,0.0142682,0.187752,0.23808,0.224673,0.991719,0.912177,0.603808,0.58291,0.0113356,0.89851,0.093276,0.382812,0.891523,0.964758,0.279952,0.306579,0.824718,0.334155,0.086941,0.894319,0.590863,0.171538,0.542081,0.576957,0.42577,0.373115,0.128973,0.0927342,0.36169,0.489047,0.43773,0.578529,0.297894,0.195903,0.28622,0.836877,0.591259,0.133413,0.650295,0.298829,0.138167,0.967853,0.545805,0.0529686,0.638608,0.199369,0.14314,0.906557,0.0203441,0.008591,0.831618,0.955394,0.328913,0.738506,0.305636,0.549884,0.102699,0.966172,0.25741,0.102826,0.00384861,0.740678,0.378822,0.122753,0.872334,0.808366,0.234772,0.202351,0.486117,0.614409,0.713699,0.928113,0.341204,0.961412,0.982784,0.875644,0.942161,0.402293,0.433116,0.191075,0.530399,0.974187,0.394394,0.854256,0.946463,0.0218177,0.392294,0.305122,0.118467,0.178553,0.123024,0.465664,0.859043,0.627029,0.890382,0.689105,0.237787,0.688238,0.43019,0.742163,0.404184,0.493752,0.928454,0.0823777,0.486084,0.468197,0.98949,0.0122546,0.815985,0.764738,0.250985,0.260152,0.204163,0.961538,0.240694,0.204713,0.858581,0.264051,0.0525202,0.778657,0.308098,0.668571,0.139592,0.524807,0.574584,0.716899,0.256243,0.554646,0.042074,0.717325,0.625297,0.110895,0.930994,0.809615,0.585136,0.505035,0.724922,0.751915,0.72854,0.452656,0.142026,0.539908,0.932892,0.854556,0.0132684,0.080236,0.757648,0.789862,0.0275238,0.881437,0.678699,0.681384,0.0191443,0.390822,0.393697,0.554082,0.711408,0.168451,0.0246977,0.485511,0.735598,0.490265,0.348897,0.756845,0.793917,0.628415,0.351574,0.445838,0.537266,0.0618067,0.916075,0.429838,0.0995919,0.0401028,0.680519,0.737209,0.694452,0.778374,0.0766755,0.572233,0.299241,0.613261,0.950562,0.595874,0.907638,0.321521,0.454606,0.30116,0.00298971,0.880555,0.492158,0.5908,0.465171,0.324026,0.563729,0.00750792,0.444595,0.79203,0.596961,0.871413,0.350817,0.169524,0.518595,0.335418,0.759062,0.0387206,0.000562906,0.5378,0.943952,0.901287,0.267164,0.807717,0.559037,0.824273,0.132568,0.211154,0.409925,0.946732,0.153523,0.927588,0.454967,0.501733,0.305082,0.062736,0.176638,0.631303,0.533829,0.971151,0.738872,0.492359,0.154669,0.314416,0.426001,0.670019,0.068499,0.52101,0.574604,0.197541,0.431993,0.728824,0.81,0.0697362,0.103445,0.38873,0.298945,0.604834,0.475185,0.616433,0.988825,0.120236,0.168507,0.536382,0.162301,0.470218,0.146154,0.864191,0.311692,0.181984,0.476521,0.00128013,0.568595,0.0676383,0.876749,0.914334,0.796745,0.903948,0.563246,0.585251,0.215009,0.461222,0.575428,0.797859,0.367633,0.580337,0.754334,0.0341587,0.0909711,0.245668,|0.099786,0.930289,0.793536,0.967524,0.374007,0.349867,0.494458,0.867019,0.209281,0.995349,0.601786,0.380641,0.528045,0.188538,0.920878,0.691928,0.769716,0.611406,0.0675977,0.286632,0.404829,0.0788239,0.0395555,0.0902327,0.0447583,0.372943,0.0694753,0.655352,0.613086,0.872927,0.230328,0.844962,0.329911,0.00305712,0.620859,0.943141,0.0907406,0.668462,0.518633,0.60085,0.701035,0.225715,0.737398,0.557269,0.245914,0.0639067,0.466107,0.489312,0.407079,0.467014,0.674104,0.37947,0.675122,0.973214,0.526939,0.258441,0.966011,0.18667,0.960496,0.722512,0.788399,0.189505,0.590741,0.0749589,0.263033,0.0769239,0.0805892,0.438681,0.688066,0.152284,0.633708,0.425555,0.420233,0.829597,0.85743,0.742935,0.481271,0.492933,0.677165,0.838639,0.0106764,0.999406,0.584628,0.899632,0.577417,0.474901,0.305674,0.0619964,0.699597,0.945363,0.655519,0.76796,0.157787,0.503012,0.485973,0.134671,0.526482,0.801271,0.674569,0.615101,0.259319,0.00952262,0.487084,0.764283,0.403849,0.923575,0.230994,0.0917367,0.859877,0.77679,0.413096,0.707304,0.458525,0.766994,0.24153,0.913847,0.29188,0.755177,0.77339,0.289004,0.112336,0.437264,0.28856,0.865513,0.362916,0.391515,0.7981,0.345048,0.860657,0.845468,0.240496,0.139747,0.362536,0.758817,0.119967,0.537197,0.668935,0.213493,0.452433,0.638083,0.393546,0.882783,0.391653,0.572578,0.249825,0.166551,0.616851,0.785969,0.515277,0.151585,0.599982,0.345126,0.443269,0.281909,0.413304,0.353072,0.912453,0.786388,0.896521,0.209131,0.390484,0.238093,0.632886,0.605749,0.972894,0.185756,0.07318,0.0627523,0.400046,0.745588,0.39192,0.87233,0.689527,0.0741846,0.222043,0.534051,0.0592837,0.482011,0.813638,0.956531,0.683197,0.25727,0.214482,0.385648,0.865316,0.210016,0.0826345,0.85665,0.693201,0.473256,0.72837,0.383752,0.243645,0.673887,0.864327,0.223074,0.60248,0.514574,0.974483,0.29514,0.693201,0.0466244,0.452363,0.736672,0.941881,0.925529,0.359962,0.484449,0.628212,0.624793,0.31163,0.985514,0.890279,0.937503,0.468217,0.910368,0.869472,0.997777,0.481043,0.234725,0.624882,0.539251,0.1373,0.554618,0.953516,0.808279,0.238046,0.158423,0.439984,0.15678,0.0790464,0.204286,0.39644,0.931179,0.197625,0.88536,0.522109,0.110608,0.585736,0.421163,0.443715,0.709747,0.00073874,0.724466,0.570719,0.234707,0.198521,0.329827,0.754319,0.680715,0.444725,0.863552,0.476433,0.842264,0.866903,0.764272,0.803819,0.1655,0.0541621,0.476526,0.478127,0.547941,0.0843632,0.594299,0.395196,0.715182,0.997079,0.282227,0.233567,0.253579,0.123303,0.24538,0.276991,0.618909,0.0523409,0.207193,0.868057,0.650413,0.696026,0.393457,0.276065,0.74718,0.989223,0.783476,0.281492,0.97313,0.0428938,0.980465,0.251533,0.966815,0.00760937,0.69158,0.47783,0.409363,0.776411,0.793263,0.622134,0.260571,0.943711,0.626759,0.437077,0.933125,0.390394,0.380185,0.0693215,0.549928,0.105677,0.543837,0.914274,0.786751,0.460983,0.686749,0.237937,0.920662,0.960431,0.672704,0.747042,0.0985118,0.816895,0.0944641,0.479889,0.929381,0.636074,0.528748,0.0264656,0.234297,0.643265,0.437063,0.85613,0.442142,0.946806,0.493227,0.721752,0.113895,0.0420901,0.450952,0.718929,0.747103,0.922965,0.482861,0.257174,0.223873,0.566517,0.878508,0.452602,0.649757,0.5856,0.145266,0.109709,0.0586526,0.572285,0.0511752,0.673301,0.0860383,0.685125,0.0773412,0.226281,0.644545,0.823748,0.619555,0.790214,0.142372,0.458831,0.962958,0.654747,0.696226,0.662268,0.14884,0.858852,0.927982,0.903303,0.797507,0.104396,0.98682,0.52505,0.760006,0.694268,0.833154,0.380287,0.657579,0.178865,0.366355,0.50995,0.693591,0.353186,0.748815,0.478412,0.723672,0.103925,0.459709,0.246451,0.610629,0.46272,0.127628,0.735333,0.928064,0.836333,0.441546,0.028739,0.664019,0.24194,0.879475,0.75518,0.121098,0.212203,0.884915,0.368367,0.256274,0.0944678,0.947822,0.909203,0.00343847,0.0702749,0.92891,0.375778,0.0134013,0.631768,0.816066,0.0244232,0.729569,0.810475,0.48187,0.861973,0.63911,0.0417974,0.843297,0.651982,0.46114,0.834764,0.300822,0.0802111,0.344559,0.467264,0.698937,0.39069,0.390988,0.194308,0.708927,0.379768,0.755363,0.738082,0.217816,0.950123,0.445173,0.061239,0.125325,0.533483,0.683975,0.167845,0.28356,0.615835,0.0573525,0.637998,0.536075,0.773268,0.928355,0.38125,0.975552,0.287947,0.720783,0.151248,0.645374,0.107938,0.277893,0.322479,0.600502,0.0803755,0.347064,0.395413,0.560713,0.89088,0.421282,0.172891,0.480679,0.859661,0.878598,0.950535,0.345214,0.398935,0.551027,0.81149,0.619299,0.1199,0.316021,0.516667,0.857569,0.834804,0.0763319,0.552374,0.870785,0.963605,0.651117,0.0321818,0.889664,0.680477,0.939273,0.627739,0.740774,0.484384,0.898847,0.908619,0.484468,0.371903,0.108262,0.134249,0.459567,0.168614,0.137088,0.9457,0.141567,0.954814,0.63155,0.682205,0.656002,0.368664,0.397514,0.775095,0.927407,0.451295,0.285863,0.756461,0.490619,0.849743,0.174387,0.0399876,0.906617,0.0129859,0.0830323,0.640811,0.642741,0.0618401,0.123833,0.387709,0.833411,0.302807,0.599561,0.230922,0.530482,0.758573,0.128702,0.187303,0.341827,0.584062,0.664641,0.845939,0.0374799,0.896661,0.55222,0.320784,0.204053,0.355908,0.625729,0.580698,0.732819,0.600918,0.352107,0.876859,0.467892,0.209313,0.464839,0.448688,0.970815,0.188393,0.549973,0.121353,0.116793,0.541604,0.54195,0.588788,0.453183,0.412264,0.281794,0.990466,0.306434,0.623099,0.530394,0.508918,0.996952,0.0674765,0.528567,0.377796,0.587515,0.488318,0.166266,0.410391,0.871768,0.19237,0.697435,0.242984,0.550125,0.042103,0.878938,0.838427,0.0277486,0.620823,0.993795,0.486395,0.911919,0.0653077,0.175561,0.6343,0.713331,0.817202,0.336468,0.462509,0.831487,0.114986,0.372454,0.370272,0.261185,0.533086,0.972116,0.700384,0.729654,0.0879211,0.975983,0.283347,0.470539,0.459291,0.186302,0.271845,0.68088,0.479101,0.789387,0.78533,0.467072,0.0779746,0.453282,0.497888,0.383502,0.471313,0.244985,0.77099,0.750057,0.0067718,0.963549,0.192104,0.945792,0.479521,0.744354,0.875816,0.130099,0.356337,0.256926,0.185473,0.665872,0.659274,0.207435,0.0467559,0.690451,0.861826,0.650996,0.39955,0.711443,0.867407,0.658925,0.0882831,0.0164945,0.412319,0.701418,0.925574,0.476149,0.750204,0.592738,0.807401,0.813776,0.0887741,0.518704,0.0212591,0.898349,0.0037598,0.0457686,0.819109,0.127411,0.530502,0.187587,0.936644,0.297766,0.327343,0.766707,0.681836,0.781417,0.839046,0.478242,0.353985,0.729249,0.758454,0.692425,0.146747,0.906826,0.455553,0.000761032,0.59478,0.488466,0.850707,0.138587,0.470512,0.36715,0.301441,0.648485,0.451991,0.913421,0.583252,0.994064,0.286066,0.073979,0.824922,0.206274,0.0319688,0.987387,0.344103,0.950789,0.668263,0.876074,0.392597,0.141567,0.981998,0.88379,0.231063,0.0705357,0.830052,0.608135,0.46679,0.328983,0.447408,0.917621,0.489567,0.136124,0.00642818,0.194395,0.478049,0.0625802,0.31282,0.790877,0.408031,0.998594,0.804964,0.604746,0.973285,0.678398,0.3641,0.760992,0.0691736,0.893581,0.34318,0.655573,0.707567,0.000416934,0.0290166,0.115005,0.274778,0.661651,0.315326,0.866448,0.314893,0.114166,0.258581,0.322318,0.565324,0.733401,0.312793,0.519073,0.254771,0.105429,0.26149,0.631539,0.896911,0.950499,0.737263,0.823223,0.934386,0.852056,0.243548,0.536715,0.255848,0.2759,0.667446,0.531797,0.896393,0.207381,0.386676,0.922166,0.555834,0.334531,0.302628,0.804922,0.520331,0.510213,0.273696,0.620595,0.0933156,0.650769,0.544626,0.410179,0.129279,0.510398,0.695305,0.289514,0.0305253,0.617963,0.73367,0.624065,0.380708,0.226059,0.884225,0.325839,0.627885,0.337635,0.471874,0.300512,0.588181,0.664982,0.826619,0.00967687,0.732746,0.838801,0.33972,0.585189,0.182246,0.284779,0.385306,0.312918,0.900847,0.0535096,0.791098,0.00144404,0.201496,0.59976,0.304757,0.787323,0.508571,0.894633,0.578877,0.930803,0.350403,0.605198,0.513735,0.38401,0.0630018,0.171553,0.191187,0.574732,0.687388,0.510601,0.187587,0.28186,0.327852,0.195378,0.406279,0.966191,0.302215,0.0526253,0.231543,0.927065,0.286175,0.428044,0.204006,0.900283,0.63457,0.715279,0.271352,0.00574857,0.289518,0.161101,0.431077,0.198296,0.736852,0.936404,0.516046,0.68268,0.334159,0.0235383,0.226899,0.958609,0.3009,0.281212,0.392848,0.407373,0.441343,0.813871,0.445032,0.192434,0.844014,0.459694,0.406639,0.525214,0.86467,0.66529,0.396827,0.132228,0.595525,0.985431,0.419371,0.269361,0.103387,0.114101,0.64674,0.705862,0.490161,0.907715,0.693324,0.714434,0.911864,0.737652,0.976801,0.201617,0.511963,0.935079,0.90999,0.880588,0.57237,0.783717,0.269335,0.918716,0.41315,0.603354,0.160085,0.876981,0.560577,0.00543916,0.852224,0.52313,0.692842,0.367231,0.821067,0.196845,0.524491,0.607063,0.537242,0.237655,0.359556,0.767036,0.863223,0.480069,0.521142,0.228711,0.290013,0.900548,0.750677,0.0422283,0.274226,0.518598,0.312132,0.507044,0.765726,0.295001,0.979535,0.567762,0.225427,0.335053,0.291061,0.223421,0.521845,0.231798,0.695889,0.70221,0.709231,0.279147,0.607577,0.691036,0.89695,0.642113,0.221255,0.426169,0.621494,0.496592,0.847068,0.968091,0.943082,0.0496837,0.5146,0.215651,0.118929,0.60377,0.566093,0.0328179,0.275622,0.550024,0.920964,0.554104,0.433653,0.195619,0.231423,0.730421,0.401227,0.758041,0.0259882,0.580897,0.380761,0.956734,0.844445,0.314111,0.888183,0.0432954,0.746813,0.00190103,0.630847,0.0374289,0.373918,0.421469,|0.46293,0.529987,0.12075,0.2546,0.416004,0.350105,0.617518,0.581033,0.335041,0.101025,0.0437291,0.0453766,0.499526,0.454096,0.625781,0.146821,0.83973,0.426319,0.0362951,0.086069,0.496349,0.00259215,0.304412,0.796698,0.0894173,0.331165,0.766338,0.950282,0.972236,0.73586,0.808159,0.286955,0.888627,0.995451,0.605751,0.745874,0.0103763,0.0662801,0.483346,0.518178,0.911828,0.546471,0.539345,0.483196,0.559809,0.0898061,0.218123,0.663233,0.448397,0.0860517,0.874751,0.697274,0.500524,0.175962,0.686814,0.777276,0.588309,0.910432,0.796319,0.526906,0.225565,0.379046,0.916441,0.188782,0.56206,0.947645,0.0418845,0.322463,0.703778,0.647491,0.579821,0.784539,0.0190902,0.399859,0.160578,0.584145,0.790673,0.662665,0.0858836,0.946136,0.771398,0.861046,0.226751,0.854944,0.370299,0.763633,0.382378,0.950986,0.695542,0.891965,0.275002,0.219679,0.555934,0.354097,0.46331,0.767349,0.593522,0.983799,0.220857,0.798057,0.589366,0.475196,0.505833,0.53516,0.272753,0.312866,0.297858,0.242975,0.409929,0.751342,0.37092,0.206906,0.527941,0.389342,0.734902,0.641581,0.649218,0.17229,0.452823,0.809423,0.384084,0.161552,0.581687,0.772674,0.462834,0.0681455,0.318419,0.715866,0.296016,0.680745,0.490584,0.758169,0.759496,0.0784712,0.642099,0.563545,0.0475494,0.437156,0.53622,0.809581,0.408769,0.467692,0.454902,0.377016,0.428707,0.256808,0.879015,0.232689,0.0921576,0.475547,0.572522,0.586153,0.788444,0.451547,0.404079,0.836229,0.564776,0.123499,0.347904,0.471575,0.509869,0.138799,0.599145,0.834576,0.0820891,0.419341,0.0304527,0.539574,0.965019,0.836836,0.978382,0.222439,0.976355,0.076506,0.767323,0.555578,0.957772,0.647098,0.28943,0.750619,0.55908,0.00887346,0.0394468,0.152501,0.153263,0.795536,0.485597,0.179407,0.567139,0.10787,0.26801,0.750524,0.0912274,0.492375,0.363042,0.336437,0.522165,0.169072,0.437865,0.405447,0.567694,0.575582,0.457238,0.149918,0.93677,0.860458,0.290496,0.845406,0.925317,0.0464103,0.155327,0.046118,0.261886,0.968178,0.665151,0.622874,0.13842,0.883519,0.527404,0.0349591,0.78299,0.20188,0.171429,0.899781,0.0615839,0.128193,0.173986,0.278789,0.822284,0.860743,0.832125,0.993335,0.245079,0.555382,0.917067,0.411499,0.566988,0.0980853,0.397999,0.359533,0.0171589,0.609451,0.788161,0.746641,0.481244,0.808776,0.287523,0.213955,0.519196,0.471029,0.533202,0.740893,0.607515,0.0310491,0.344542,0.0120538,0.920172,0.476142,0.891389,0.984034,0.190758,0.156614,0.609317,0.674301,0.303605,0.521079,0.871462,0.795578,0.169939,0.93386,0.827154,0.298769,0.413696,0.123421,0.867142,0.966155,0.844905,0.697967,0.341128,0.956754,0.437669,0.896177,0.971724,0.382146,0.347848,0.795191,0.538769,0.662947,0.651631,0.545537,0.344168,0.913526,0.49921,0.232114,0.733431,0.876749,0.419953,0.948059,0.62301,0.634437,0.307157,0.615676,0.923745,0.49083,0.759234,0.208045,0.0907932,0.310944,0.292888,0.579595,0.328653,0.616145,0.717671,0.999796,0.484406,0.733175,0.326077,0.907439,0.143949,0.0213204,0.0182573,0.851204,0.972292,0.167826,0.808748,0.50404,0.247819,0.908017,0.345494,0.943892,0.573006,0.10708,0.364038,0.425333,0.875397,0.134932,0.692176,0.119286,0.626333,0.990999,0.428802,0.358253,0.0625048,0.00784731,0.839244,0.562371,0.568263,0.105859,0.533322,0.428999,0.765963,0.381082,0.815265,0.344898,0.911303,0.208674,0.942238,0.859017,0.162012,0.854947,0.343356,0.563908,0.85207,0.0578655,0.499006,0.648111,0.92346,0.537833,0.835851,0.307898,0.223853,0.191159,0.533874,0.683066,0.789122,0.025587,0.211868,0.500171,0.490253,0.299117,0.833469,0.149963,0.177857,0.167313,0.195734,0.0565538,0.130687,0.843419,0.598864,0.207057,0.633206,0.454767,0.209768,0.302716,0.934973,0.658819,0.62256,0.182511,0.927797,0.83002,0.307683,0.254465,0.501765,0.958943,0.654113,0.74501,0.559104,0.0841873,0.291899,0.908292,0.699695,0.568799,0.520009,0.956583,0.695269,0.820093,0.13444,0.844054,0.755973,0.499803,0.995098,0.843491,0.315126,0.859244,0.0596474,0.335339,0.891805,0.966786,0.737957,0.765177,0.284453,0.38354,0.404778,0.478826,0.348216,0.264066,0.620602,0.129402,0.00596726,0.168261,0.40883,0.474303,0.240222,0.793241,0.64144,0.000193059,0.0162271,0.0245258,0.0497036,0.185312,0.594017,0.340201,0.312364,0.0624642,0.308919,0.629003,0.309079,0.625765,0.0189055,0.0244199,0.548039,0.069317,0.00925547,0.0709491,0.503736,0.914579,0.179051,0.592409,0.570853,0.686313,0.553924,0.118219,0.638238,0.739871,0.453927,0.704119,0.157307,0.463578,0.156829,0.953109,0.566872,0.639261,0.910356,0.404368,0.6409,0.671394,0.539921,0.13956,0.044952,0.254467,0.236854,0.709327,0.0689435,0.110796,0.668321,0.0477431,0.598962,0.600939,0.544543,0.364282,0.802392,0.505207,0.0517671,0.576319,0.948248,0.16208,0.718859,0.107563,0.0763711,0.74211,0.691085,0.368767,0.66341,0.280212,0.492757,0.326352,0.413231,0.531383,0.444034,0.422561,0.099417,0.772601,0.799448,0.370252,0.210675,0.394054,0.186712,0.38671,0.124694,0.0222166,0.159863,0.540124,0.163297,0.670913,0.791878,0.601191,0.82967,0.279086,0.86928,0.29652,0.416295,0.325043,0.495639,0.150455,0.964489,0.806523,0.507712,0.336148,0.313462,0.495687,0.492965,0.14604,0.00675309,0.546507,0.740854,0.464354,0.594258,0.537473,0.0820333,0.530686,0.351287,0.517255,0.993393,0.879977,0.677886,0.591378,0.25186,0.256696,0.537568,0.201335,0.604543,0.847391,0.833382,0.249467,0.166058,0.47451,0.0155145,0.44262,0.669872,0.699926,0.887039,0.52097,0.671306,0.850737,0.817345,0.36029,0.234962,0.497949,0.477148,0.398304,0.746688,0.690685,0.0529954,0.0839144,0.300699,0.291377,0.240153,0.893393,0.538033,0.561264,0.409993,0.554578,0.261098,0.541382,0.689999,0.500889,0.84244,0.469109,0.173431,0.716236,0.97833,0.158494,0.0956806,0.883049,0.190578,0.310808,0.501151,0.994292,0.884466,0.652789,0.575139,0.559793,0.372927,0.303891,0.308015,0.66991,0.41564,0.508594,0.88542,0.236031,0.550949,0.643435,0.0949793,0.312114,0.299556,0.608319,0.603153,0.589513,0.509312,0.273381,0.117826,0.136053,0.0190488,0.688633,0.384019,0.778711,0.388866,0.189444,0.49715,0.265421,0.294705,0.878966,0.748491,0.665886,0.646563,0.785936,0.993671,0.514292,0.361938,0.561946,0.410578,0.126131,0.23394,0.511953,0.921205,0.0791083,0.00563747,0.564644,0.494497,0.540086,0.357013,0.665486,0.22933,0.815109,0.247676,0.234288,0.69544,0.964713,0.208119,0.894338,0.948452,0.900772,0.607327,0.832133,0.397715,0.168897,0.409604,0.697638,0.996626,0.338802,0.942473,0.844102,0.893517,0.678666,0.442174,0.0171536,0.181916,0.544825,0.780202,0.111026,0.858079,0.0101386,0.69912,0.840218,0.990277,0.71431,0.95893,0.324937,0.644374,0.531851,0.394779,0.104506,0.50487,0.923217,0.900068,0.709371,0.524945,0.345033,0.898797,0.499799,0.0668439,0.741248,0.84193,0.485836,0.306412,0.663338,0.025601,0.732393,0.0188926,0.413533,0.402851,0.22672,0.700122,0.47126,0.600835,0.178128,0.589258,0.357247,0.617457,0.201288,0.0963855,0.37943,0.135696,0.896357,0.983945,0.045006,0.334791,0.0390514,0.267604,0.429039,0.413851,0.120987,0.322018,0.725076,0.665823,0.165398,0.542273,0.102428,0.069325,0.0138438,0.201618,0.000634491,0.743142,0.499453,0.578692,0.0224071,0.416629,0.172853,0.157816,0.487867,0.690152,0.854543,0.167568,0.360955,0.627874,0.0330586,0.797523,0.763109,0.672511,0.115097,0.945212,0.743869,0.249571,0.342128,0.978724,0.354563,0.627852,0.615351,0.660456,0.397953,0.195261,0.899721,0.139965,0.768113,0.273826,0.973574,0.228235,0.991854,0.808711,0.150306,0.477547,0.137688,0.172531,0.955176,0.460824,0.915224,0.930354,0.732151,0.136019,0.0318882,0.605602,0.673147,0.322103,0.919343,0.877819,0.149844,0.531654,0.344277,0.976007,0.442808,0.435608,0.154199,0.43524,0.470329,0.869203,0.718089,0.396717,0.228072,0.395306,0.916214,0.885918,0.575416,0.824484,0.2336,0.790225,0.73124,0.578825,0.740772,0.416947,0.238141,0.647887,0.971867,0.244172,0.867094,0.902725,0.526054,0.146659,0.7042,0.717524,0.795405,0.0278423,0.370059,0.206574,0.161882,0.0384668,0.589867,0.742997,0.740158,0.146713,0.461882,0.252308,0.251363,0.624388,0.355563,0.161745,0.705156,0.976568,0.158273,0.0564982,0.191848,0.514216,0.192792,0.826302,0.984657,0.776657,0.470067,0.0829813,0.491754,0.177829,0.487111,0.48843,0.227144,0.917351,0.906198,0.899196,0.091782,0.861684,0.107845,0.474296,0.386329,0.613404,0.250767,0.399895,0.207722,0.70808,0.952259,0.870155,0.96143,0.0307814,0.442011,0.419341,0.17061,0.582085,0.141889,0.0325829,0.966194,0.888042,0.46909,0.0716602,0.449257,0.607457,0.651781,0.801826,0.183191,0.659626,0.0552008,0.260202,0.520477,0.683575,0.416848,0.610158,0.840947,0.535555,0.21113,0.434337,0.367312,0.393,0.664819,0.568381,0.131151,0.00885153,0.215086,0.822447,0.114882,0.661659,0.972646,0.0831895,0.808655,0.358388,0.637902,0.413592,0.160913,0.533704,0.264445,0.867865,0.0511516,0.229029,0.216357,0.698676,0.355373,0.138748,0.733248,0.0422252,0.0169209,0.601269,0.856288,0.942097,0.994889,0.0933514,0.657424,0.473365,0.615416,0.29327,0.486414,0.640182,0.526576,0.502733,0.7287,0.844469,0.937482,0.124662,0.397448,0.397526,0.815442,0.352617,0.782091,0.560236,0.634602,0.828793,0.817161,0.249117,0.390971,0.498404,0.754536,0.111075,0.109626,0.685754,0.98376,0.981174,0.493125,0.709666,0.689036,0.446141,0.913997,0.652265,0.209479,0.860301,0.0768745,0.151131,0.282972,|0.457736,0.676076,0.199523,0.705708,0.771726,0.808544,0.0653347,0.574694,0.988805,0.0634344,0.832029,0.619062,0.27606,0.298382,0.24488,0.87874,0.144207,0.193106,0.111297,0.153395,0.634268,0.105432,0.920006,0.061021,0.523906,0.370064,0.308582,0.94389,0.385373,0.695343,0.735611,0.159483,0.66455,0.504752,0.686439,0.81493,0.412611,0.983524,0.888758,0.901377,0.564726,0.678893,0.659319,0.52342,0.323834,0.178944,0.0361896,0.63906,0.000429332,0.268837,0.142859,0.30109,0.410487,0.0204322,0.379149,0.956955,0.923256,0.075725,0.778062,0.291971,0.800541,0.186557,0.0321776,0.683728,0.302086,0.0844824,0.972308,0.965121,0.188511,0.296785,0.562703,0.435747,0.202505,0.0642589,0.791126,0.489035,0.565488,0.602663,0.365578,0.740089,0.431894,0.960942,0.0111306,0.144329,0.484629,0.219159,0.525046,0.797083,0.137403,0.198508,0.536906,0.886045,0.4549,0.970343,0.230343,0.702904,0.296808,0.477613,0.290134,0.343565,0.24077,0.532704,0.658225,0.817175,0.165007,0.843238,0.0379025,0.97167,0.911171,0.988986,0.521897,0.387237,0.413962,0.0281867,0.777247,0.639751,0.818453,0.216969,0.480631,0.704349,0.543827,0.985974,0.283323,0.126608,0.969354,0.125469,0.585704,0.784376,0.713638,0.626921,0.397586,0.42468,0.954047,0.370932,0.780282,0.0612656,0.614745,0.9894,0.241724,0.983546,0.145576,0.29416,0.112857,0.30883,0.0305858,0.918364,0.384844,0.399185,0.250331,0.0365871,0.232645,0.486023,0.158156,0.58581,0.195357,0.114278,0.326718,0.610385,0.262018,0.655765,0.0313519,0.563811,0.336719,0.549354,0.417657,0.298654,0.190429,0.745495,0.801254,0.153947,0.785577,0.518308,0.878712,0.806753,0.791771,0.655056,0.945292,0.0627243,0.240813,0.242629,0.940247,0.929816,0.388102,0.0665486,0.661165,0.772583,0.79958,0.940563,0.577349,0.794775,0.721114,0.76551,0.920633,0.305383,0.970811,0.55055,0.323699,0.772907,0.489462,0.216964,0.288534,0.0528716,0.490976,0.848142,0.412268,0.510341,0.11299,0.751072,0.447109,0.059195,0.876226,0.623073,0.237572,0.370373,0.401645,0.106391,0.77933,0.814858,0.407029,0.500983,0.742236,0.21795,0.304846,0.570592,0.655893,0.3013,0.548846,0.272502,0.641847,0.834773,0.298645,0.579986,0.209315,0.0159668,0.844194,0.34172,0.930542,0.799805,0.953813,0.0229127,0.831934,0.269678,0.273631,0.279589,0.680667,0.0471152,0.311296,0.971308,0.450058,0.278506,0.060476,0.61766,0.0338764,0.825552,0.249016,0.337704,0.92645,0.146559,0.829636,0.765276,0.587193,0.94588,0.670403,0.348904,0.802721,0.520181,0.52385,0.630834,0.120055,0.792007,0.507931,0.711408,0.526156,0.318407,0.793275,0.144659,0.0211949,0.582355,0.944093,0.698976,0.396498,0.820483,0.119512,0.193107,0.00232977,0.0537023,0.846643,0.893722,0.760299,0.918126,0.396538,0.956852,0.226578,0.275683,0.525423,0.953495,0.912629,0.789334,0.107664,0.643558,0.372384,0.698174,0.617944,0.593265,0.753342,0.0548632,0.616038,0.66936,0.384344,0.808118,0.00465423,0.822927,0.0964928,0.224813,0.146377,0.42111,0.852539,0.28394,0.885904,0.400763,0.875065,0.449524,0.183794,0.20832,0.441449,0.175327,0.614175,0.874354,0.481041,0.188219,0.808676,0.314651,0.912611,0.30613,0.790194,0.753932,0.548085,0.392864,0.517004,0.247345,0.309526,0.73155,0.628332,0.693092,0.731224,0.0724953,0.501187,0.472279,0.497698,0.516829,0.940431,0.780399,0.389932,0.616201,0.0850722,0.765798,0.256807,0.850111,0.334099,0.729478,0.24087,0.138699,0.0242853,0.196115,0.636238,0.13049,0.129178,0.326969,0.167863,0.178636,0.157859,0.210924,0.363752,0.265615,0.877158,0.214867,0.851181,0.523501,0.228679,0.0814292,0.0914167,0.0645503,0.503844,0.346686,0.0219415,0.51494,0.458506,0.531971,0.333762,0.704253,0.700513,0.426245,0.785489,0.0365444,0.976334,0.749574,0.442685,0.105332,0.454122,0.29915,0.442898,0.228974,0.406664,0.285822,0.209283,0.258166,0.153887,0.773146,0.536588,0.141809,0.575484,0.56193,0.645428,0.0215497,0.435807,0.801592,0.9526,0.162219,0.346869,0.88755,0.661451,0.89294,0.776535,0.912715,0.606584,0.560014,0.356413,0.560306,0.0657672,0.895012,0.583114,0.558362,0.788123,0.828031,0.0135879,0.679626,0.39849,0.38944,0.0137787,0.863809,0.89126,0.544005,0.413793,0.49214,0.646588,0.611679,0.136556,0.759574,0.159332,0.584564,0.22758,0.0266097,0.0440992,0.0895135,0.53972,0.176779,0.35263,0.760701,0.270602,0.992971,0.745562,0.00469255,0.0020591,0.542417,0.511192,0.944468,0.30663,0.523984,0.619908,0.30946,0.551869,0.00834751,0.211929,0.0189724,0.123619,0.312141,0.58936,0.10707,0.938686,0.0261852,0.348462,0.434151,0.0718825,0.66635,0.809346,0.146552,0.248691,0.238901,0.948074,0.552731,0.0395959,0.304551,0.975543,0.253893,0.599847,0.1775,0.345304,0.100331,0.444143,0.667523,0.693718,0.304266,0.695832,0.187441,0.417319,0.721002,0.399233,0.0591332,0.551907,0.169156,0.465272,0.45843,0.377932,0.736304,0.582291,0.282717,0.984792,0.304761,0.146822,0.74688,0.936424,0.840773,0.968846,0.344314,0.441121,0.895051,0.737729,0.884053,0.532791,0.526673,0.476893,0.86356,0.0449666,0.497601,0.0205574,0.0291038,0.759427,0.352968,0.114069,0.749132,0.902812,0.882699,0.0947589,0.351121,0.188784,0.423098,0.644985,0.194195,0.123561,0.28267,0.0746562,0.588458,0.857408,0.0730728,0.979418,0.328395,0.604905,0.76175,0.717062,0.699707,0.205217,0.953297,0.927884,0.471894,0.39179,0.979235,0.794779,0.260539,0.240627,0.681084,0.90836,0.0773966,0.886498,0.0265898,0.108359,0.924116,0.195767,0.263133,0.450674,0.893795,0.64188,0.885027,0.436464,0.871813,0.818155,0.193907,0.604162,0.949774,0.501611,0.757751,0.209227,0.345512,0.90714,0.242668,0.794241,0.803751,0.883769,0.641841,0.119009,0.517214,0.0265934,0.856902,0.810166,0.788801,0.59725,0.640681,0.312854,0.349333,0.691605,0.34992,0.26866,0.635362,0.701079,0.941743,0.473701,0.549389,0.758915,0.868742,0.637571,0.354109,0.327722,0.540673,0.424109,0.25952,0.375442,0.540359,0.771811,0.308383,0.475812,0.241222,0.398932,0.866799,0.412645,0.0465842,0.592587,0.318874,0.775324,0.410464,0.268557,0.457627,0.193975,0.931719,0.402184,0.778602,0.416112,0.543519,0.903937,0.393922,0.984,0.539555,0.0684049,0.0151632,0.906207,0.131073,0.377082,0.555012,0.425238,0.0841135,0.822817,0.12193,0.284288,0.331093,0.534444,0.77813,0.39,0.751507,0.493233,0.656234,0.34957,0.144111,0.517463,0.30465,0.123276,0.472313,0.00098604,0.699286,0.940788,0.138366,0.105471,0.245261,0.794467,0.920707,0.012391,0.312508,0.725266,0.363215,0.62803,0.740092,0.384789,0.461095,0.546739,0.862899,0.0227684,0.931494,0.698822,0.931702,0.0912625,0.41965,0.275339,0.506051,0.34037,0.0860109,0.667563,0.875849,0.507191,0.868708,0.25924,0.0721528,0.907515,0.371952,0.885944,0.230206,0.767744,0.643175,0.340196,0.0737992,0.733624,0.398501,0.895079,0.884743,0.0844797,0.654856,0.0009197,0.519868,0.594682,0.435323,0.992507,0.18829,0.256034,0.0588243,0.0272979,0.764362,0.340138,0.689086,0.351935,0.532499,0.914594,0.749848,0.0689791,0.360179,0.852449,0.896119,0.024582,0.122356,0.734251,0.58724,0.944631,0.097133,0.722792,0.710862,0.559121,0.520459,0.850675,0.317246,0.426238,0.138648,0.424142,0.459718,0.393439,0.567341,0.354354,0.765156,0.762467,0.633771,0.437505,0.888643,0.891954,0.396374,0.74087,0.233364,0.703001,0.504085,0.0161855,0.785467,0.526631,0.897595,0.329826,0.494183,0.228254,0.240364,0.412658,0.152554,0.698778,0.967244,0.319341,0.167996,0.120721,0.458935,0.459543,0.590944,0.675557,0.913143,0.680589,0.812673,0.79965,0.523489,0.538672,0.853312,0.751461,0.493053,0.889566,0.980591,0.756974,0.56974,0.435814,0.450599,0.780076,0.669808,0.747926,0.580604,0.98278,0.0563659,0.094813,0.807496,0.376971,0.624926,0.0991154,0.307913,0.893706,0.0847345,0.0111548,0.603313,0.682031,0.478274,0.0708689,0.465882,0.243294,0.609062,0.754914,0.509043,0.910154,0.578502,0.943759,0.411321,0.273894,0.60691,0.588966,0.207133,0.827335,0.164676,0.466591,0.614073,0.321466,0.930261,0.315292,0.333206,0.804096,0.153823,0.194108,0.2964,0.381133,0.735081,0.205451,0.755463,0.246852,0.258489,0.919692,0.280073,0.596657,0.427177,0.0292169,0.00108606,0.653525,0.15619,0.632209,0.506161,0.837423,0.810158,0.803753,0.627068,0.234101,0.952206,0.633256,0.276378,0.048595,0.832855,0.331594,0.363812,0.502919,0.231945,0.212103,0.558314,0.787036,0.887254,0.867621,0.898577,0.508271,0.338683,0.537034,0.587738,0.0488208,0.720699,0.99641,0.404702,0.170238,0.231629,0.138003,0.307489,0.955125,0.645542,0.426021,0.703135,0.501257,0.041889,0.976237,0.719496,0.105623,0.540672,0.421641,0.266839,0.51216,0.698922,0.703596,0.955021,0.646766,0.508417,0.876838,0.53873,0.70325,0.406935,0.17083,0.96228,0.235104,0.0516884,0.125684,0.139474,0.167932,0.862202,0.258102,0.88023,0.0982938,0.922943,0.860714,0.420315,0.93942,0.622576,0.863004,0.711221,0.528672,0.263762,0.981629,0.698103,0.380366,0.763302,0.406858,0.894417,0.246054,0.803049,0.451398,0.26471,0.852669,0.31618,0.798237,0.527955,0.835163,0.335094,0.320918,0.334717,0.02583,0.0618216,0.765193,0.821046,0.102742,0.276617,0.379548,0.867859,0.121875,0.471243,0.569401,0.17231,0.429688,0.613029,0.140413,0.609219,0.411126,0.327116,0.940995,0.456606,0.445039,0.791758,0.887918,0.148522,0.846945,0.530688,0.291152,0.00581318,0.494129,0.305018,0.843358,0.153391,0.431302,0.925703,0.117987,0.443893,0.171766,0.540894,0.0263386,0.168241,0.62829,0.339286,|0.905748,0.13062,0.113521,0.828586,0.228398,0.583464,0.576458,0.36918,0.634947,0.679118,0.208151,0.30445,0.546085,0.28382,0.206011,0.106067,0.952814,0.251021,0.195927,0.949323,0.873067,0.870466,0.823275,0.659198,0.0469099,0.496878,0.415968,0.249256,0.488996,0.108667,0.799684,0.653806,0.687125,0.506379,0.027725,0.203461,0.698675,0.684364,0.620267,0.067474,0.879625,0.681001,0.768789,0.578878,0.490537,0.989441,0.931433,0.867546,0.901772,0.0684258,0.0221332,0.297328,0.652032,0.372257,0.672975,0.980243,0.858809,0.709304,0.336624,0.68198,0.825533,0.919758,0.0631936,0.765343,0.66528,0.70926,0.318617,0.270773,0.0782284,0.451413,0.293239,0.46416,0.686683,0.334003,0.388665,0.374681,0.670833,0.982781,0.786139,0.647557,0.629163,0.242518,0.672117,0.460489,0.378702,0.561542,0.185716,0.257355,0.0195479,0.409027,0.011229,0.916531,0.545987,0.923799,0.265429,0.893982,0.581951,0.980931,0.899385,0.181239,0.183633,0.646319,0.182404,0.681124,0.628316,0.895377,0.344675,0.76623,0.341779,0.47086,0.47946,0.247426,0.014221,0.936684,0.237633,0.944145,0.640677,0.500718,0.68739,0.259997,0.694121,0.620858,0.605848,0.146173,0.686955,0.625576,0.61885,0.662912,0.879159,0.256174,0.112702,0.297688,0.00684333,0.831923,0.325897,0.805127,0.717049,0.187687,0.491986,0.348223,0.416322,0.0610538,0.0903181,0.522807,0.889236,0.0718577,0.72694,0.31629,0.967266,0.562152,0.460674,0.518089,0.18691,0.0504002,0.251147,0.730345,0.206702,0.10939,0.523201,0.323156,0.782355,0.0847611,0.538788,0.272153,0.397575,0.602539,0.00165921,0.120637,0.720237,0.403042,0.801587,0.48318,0.369156,0.94687,0.934982,0.0134977,0.926967,0.0110201,0.477144,0.845064,0.774347,0.522843,0.975315,0.108017,0.529573,0.363677,0.0973239,0.813239,0.773886,0.879843,0.515269,0.712552,0.658069,0.784289,0.809323,0.46758,0.117913,0.0951314,0.941612,0.330172,0.457077,0.713254,0.688609,0.58829,0.141729,0.299156,0.263022,0.507889,0.0710815,0.985315,0.249247,0.359058,0.439236,0.387051,0.0407448,0.759317,0.909485,0.028618,0.103247,0.840792,0.344545,0.97537,0.378721,0.412379,0.0975664,0.0587806,0.447696,0.531411,0.813656,0.72532,0.0413377,0.791896,0.107488,0.67936,0.19306,0.022324,0.455182,0.373415,0.464008,0.493412,0.63067,0.818803,0.594201,0.759492,0.984854,0.909671,0.894508,0.736597,0.437848,0.447871,0.472055,0.0242754,0.722395,0.638595,0.43556,0.0812114,0.998454,0.030828,0.524555,0.250473,0.508954,0.688687,0.305136,0.0369306,0.329559,0.444564,0.444675,0.341042,0.221743,0.175843,0.225812,0.367803,0.6276,0.62079,0.252587,0.949175,0.0855445,0.560155,0.943408,0.646344,0.539648,0.638844,0.526879,0.472119,0.752267,0.671506,0.252961,0.46535,0.662044,0.0255143,0.524969,0.332799,0.445561,0.474922,0.620653,0.74814,0.351884,0.419283,0.356778,0.0824363,0.275053,0.520575,0.322893,0.697854,0.0261346,0.439622,0.146424,0.0558949,0.562929,0.253717,0.0253857,0.67987,0.493164,0.907341,0.549493,0.860604,0.511804,0.993301,0.969462,0.20791,0.0768794,0.443651,0.314874,0.687045,0.7605,0.318821,0.36483,0.271839,0.282472,0.831664,0.992221,0.890595,0.548127,0.732791,0.59912,0.45158,0.0980462,0.525711,0.511096,0.462472,0.734408,0.807008,0.949881,0.727995,0.0673453,0.259928,0.0934557,0.301109,0.539117,0.521898,0.500466,0.283891,0.814686,0.691998,0.233656,0.23936,0.310547,0.562931,0.987378,0.501179,0.475377,0.177547,0.443177,0.64231,0.864124,0.0508816,0.325256,0.272964,0.427671,0.77684,0.0427443,0.0495294,0.63228,0.237665,0.211554,0.426136,0.257329,0.753419,0.574721,0.548018,0.627556,0.25104,0.91133,0.521276,0.382006,0.26668,0.925995,0.602588,0.475636,0.888225,0.631803,0.90059,0.176133,0.957712,0.725217,0.215025,0.997041,0.171499,0.537927,0.756893,0.679347,0.607423,0.118249,0.241672,0.706989,0.851431,0.180004,0.769586,0.214852,0.440609,0.126493,0.728196,0.844621,0.39066,0.743236,0.246791,0.32032,0.901135,0.621572,0.0128309,0.8816,0.295024,0.311782,0.545279,0.318522,0.503343,0.0716214,0.194227,0.389661,0.629018,0.436927,0.383154,0.599616,0.952781,0.452882,0.884726,0.00658411,0.980766,0.7478,0.84971,0.105356,0.682038,0.164783,0.674055,0.68532,0.978521,0.61745,0.548419,0.898173,0.283586,0.356154,0.112541,0.997589,0.765977,0.644691,0.890461,0.290574,0.501238,0.400865,0.972468,0.243859,0.570136,0.734398,0.495084,0.0938519,0.865958,0.355711,0.0217751,0.64672,0.992514,0.76997,0.863889,0.781401,0.231213,0.584584,0.860477,0.916245,0.835879,0.223319,0.564771,0.224775,0.700971,0.538052,0.495218,0.911373,0.285313,0.628444,0.0943835,0.687678,0.378992,0.944867,0.885337,0.148548,0.199248,0.470928,0.951948,0.89737,0.499354,0.224502,0.0394751,0.260632,0.431594,0.423935,0.868822,0.731773,0.663409,0.0701564,0.0547092,0.855576,0.238252,0.0256152,0.228851,0.393221,0.582801,0.329772,0.142989,0.862136,0.469012,0.459443,0.9325,0.814235,0.966654,0.777608,0.299071,0.558771,0.415973,0.298605,0.0160943,0.527515,0.897944,0.51286,0.554056,0.0879096,0.801926,0.305038,0.462087,0.575136,0.382876,0.781411,0.370252,0.0644056,0.308199,0.566655,0.636263,0.81462,0.555927,0.818366,0.239797,0.243435,0.979814,0.613723,0.703111,0.683154,0.230088,0.212706,0.144402,0.874895,0.36274,0.568085,0.969325,0.00935686,0.144735,0.8227,0.763019,0.742886,0.0853195,0.385059,0.586402,0.488916,0.257435,0.911488,0.0443965,0.467988,0.832749,0.299398,0.0391775,0.475836,0.946887,0.892054,0.752303,0.534308,0.186954,0.460263,0.651716,0.844762,0.117973,0.55653,0.424557,0.866735,0.61698,0.924538,0.50444,0.473707,0.0995504,0.324013,0.358445,0.0788298,0.0377004,0.795358,0.88806,0.370728,0.393406,0.0552239,0.140337,0.170904,0.234377,0.67799,0.662027,0.253005,0.120586,0.352443,0.767092,0.273521,0.128778,0.271338,0.205573,0.307266,0.0312305,0.728205,0.811279,0.26027,0.201147,0.232519,0.249908,0.217573,0.184639,0.882472,0.48842,0.831845,0.540187,0.020839,0.576501,0.14476,0.595255,0.622804,0.445451,0.19921,0.126153,0.677879,0.360345,0.461124,0.48453,0.572832,0.207377,0.714837,0.231281,0.342855,0.460848,0.785949,0.82696,0.68169,0.247,0.716829,0.965943,0.712227,0.0522426,0.653464,0.862499,0.338288,0.629094,0.0296832,0.708038,0.63378,0.905744,0.42383,0.95343,0.62445,0.634232,0.513061,0.744501,0.790026,0.759243,0.136288,0.0301886,0.366753,0.0606391,0.373772,0.16413,0.149562,0.540836,0.329805,0.976297,0.0171034,0.391527,0.200834,0.761641,0.733691,0.856103,0.758552,0.441976,0.470564,0.447202,0.418292,0.682635,0.633493,0.91377,0.774324,0.0959888,0.47956,0.336889,0.614244,0.252019,0.323719,0.850942,0.710974,0.222661,0.46893,0.328837,0.904282,0.777257,0.346726,0.906752,0.440596,0.291305,0.692979,0.178602,0.667678,0.0552278,0.866247,0.338161,0.488293,0.361169,0.2674,0.422347,0.986018,0.127273,0.748045,0.496122,0.756787,0.937487,0.00141865,0.814471,0.453429,0.661417,0.214709,0.312606,0.853532,0.587945,0.895588,0.942435,0.652472,0.323189,0.395865,0.476531,0.277803,0.506525,0.8565,0.953469,0.452632,0.235124,0.90875,0.266586,0.609688,0.200226,0.715674,0.183981,0.440006,0.589981,0.963503,0.510828,0.184131,0.117502,0.497966,0.0811214,0.610156,0.657922,0.964922,0.596617,0.75821,0.551145,0.811348,0.487884,0.997713,0.848484,0.696956,0.206581,0.304364,0.677823,0.619676,0.464231,0.891362,0.970338,0.0053997,0.804397,0.516044,0.798877,0.547291,0.105722,0.896521,0.335089,0.18023,0.991727,0.40493,0.165273,0.863285,0.413957,0.319138,0.583801,0.843383,0.209578,0.606002,0.65374,0.37006,0.211382,0.734655,0.778321,0.901761,0.662349,0.630926,0.668883,0.774856,0.864435,0.306413,0.201624,0.943411,0.715129,0.157883,0.43278,0.892002,0.296259,0.890157,0.250926,0.425389,0.18408,0.567353,0.847035,0.396267,0.216436,0.707901,0.636436,0.367368,0.884931,0.436971,0.638652,0.972734,0.492067,0.661712,0.583757,0.542719,0.682431,0.824798,0.0181313,0.749308,0.563578,0.893039,0.338482,0.644475,0.240181,0.172963,0.763273,0.323265,0.881336,0.74481,0.733796,0.459386,0.70868,0.429598,0.452702,0.438092,0.0406929,0.670179,0.0138711,0.536328,0.726018,0.837493,0.202101,0.984428,0.564027,0.706712,0.537895,0.253441,0.713374,0.476314,0.922607,0.643111,0.961607,0.276882,0.251494,0.167943,0.0284987,0.353913,0.907757,0.398997,0.639668,0.196331,0.342424,0.81224,0.769313,0.644368,0.614644,0.236378,0.454977,0.600444,0.612418,0.859126,0.331993,0.593804,0.81086,0.311159,0.360882,0.180273,0.314137,0.432396,0.954142,0.903157,0.00731546,0.490366,0.475573,0.0949265,0.992082,0.193461,0.806166,0.539768,0.605251,0.899881,0.860088,0.981736,0.553427,0.201931,0.0475363,0.815498,0.511145,0.0534656,0.825875,0.219888,0.440863,0.256752,0.243982,0.799493,0.26244,0.629423,0.520434,0.969868,0.539984,0.702402,0.781192,0.191875,0.790538,0.300237,0.582196,0.227112,0.674514,0.00168812,0.822983,0.26467,0.370139,0.653321,0.991875,0.431467,0.487832,0.159536,0.688205,0.738046,0.814379,0.09727,0.290542,0.888949,0.385251,0.192738,0.292003,0.162247,0.19093,0.0632633,0.874395,0.608673,0.11367,0.735755,0.880841,0.450266,0.659974,0.524205,0.382565,0.413224,0.525821,0.815391,0.057218,0.714602,0.808254,0.852723,0.558459,0.406965,0.497479,0.746377,0.929953,0.655028,0.713176,0.860054,0.836639,0.0365027,0.11106,0.797844,0.971185,0.744907,0.929431,0.524753,0.215256,0.995174,0.977506,0.465956,0.0989946,|0.471497,0.390977,0.690582,0.597245,0.109451,0.368655,0.888767,0.00934541,0.572984,0.165449,0.765928,0.409508,0.217896,0.460671,0.0797638,0.446773,0.151719,0.164967,0.0743632,0.252623,0.579279,0.657205,0.227961,0.357618,0.904578,0.236051,0.670116,0.706636,0.389013,0.742226,0.911838,0.682679,0.163973,0.240837,0.0799499,0.889325,0.104809,0.248873,0.674678,0.334135,0.970204,0.0892498,0.769492,0.606283,0.969991,0.752369,0.659539,0.396243,0.287185,0.868293,0.792929,0.832678,0.454709,0.530232,0.175066,0.831431,0.551507,0.586498,0.0961545,0.555948,0.710688,0.848233,0.579313,0.122876,0.727915,0.0683646,0.129111,0.0975277,0.821434,0.0252243,0.0538717,0.827425,0.574394,0.250124,0.877859,0.516122,0.0653663,0.445639,0.415841,0.473319,0.0410094,0.587986,0.389962,0.0012514,0.0968906,0.308038,0.830189,0.196774,0.896991,0.921143,0.587655,0.16187,0.586647,0.914067,0.891099,0.917573,0.804045,0.952724,0.0838227,0.701448,0.192454,0.657954,0.992536,0.467319,0.842993,0.817385,0.703735,0.229803,0.0864451,0.815036,0.388811,0.51181,0.477151,0.799409,0.474712,0.897102,0.825854,0.767753,0.259983,0.258102,0.567764,0.868835,0.0877258,0.36013,0.595661,0.793948,0.167765,0.219819,0.171916,0.210273,0.763517,0.991236,0.578078,0.594413,0.146753,0.7397,0.829656,0.600667,0.157356,0.525582,0.279086,0.247439,0.00334734,0.514568,0.573245,0.131068,0.911333,0.311621,0.65041,0.978022,0.754929,0.18774,0.660488,0.420679,0.476047,0.169846,0.114265,0.831344,0.180344,0.427707,0.0573198,0.964973,0.925379,0.0221945,0.426783,0.275973,0.958449,0.529569,0.710759,0.822457,0.702828,0.406864,0.808679,0.361431,0.377991,0.201857,0.165552,0.639326,0.700385,0.377552,0.709746,0.654378,0.355426,0.1556,0.156842,0.649247,0.203938,0.275127,0.0546796,0.21429,0.165415,0.460736,0.306529,0.835663,0.0356482,0.211283,0.369,0.245195,0.749633,0.41571,0.0790371,0.316947,0.389572,0.187665,0.178156,0.150561,0.307527,0.73946,0.0971684,0.219406,0.878338,0.937205,0.478793,0.691111,0.895182,0.150884,0.279216,0.156449,0.952868,0.465186,0.345917,0.950919,0.386581,0.758959,0.645016,0.582297,0.049876,0.961121,0.481102,0.459533,0.154726,0.0730671,0.315161,0.271883,0.0872897,0.0885959,0.443883,0.996485,0.777801,0.201667,0.135038,0.083984,0.417306,0.966445,0.347498,0.419696,0.935079,0.0398004,0.862506,0.851042,0.636665,0.205078,0.731497,0.267194,0.437301,0.647259,0.0225105,0.28886,0.0575026,0.299077,0.662103,0.663028,0.456857,0.920247,0.800664,0.260436,0.643809,0.291766,0.989385,0.393886,0.777966,0.230819,0.623019,0.870523,0.227561,0.355249,0.344606,0.0211449,0.132353,0.437602,0.260928,0.30193,0.915616,0.359418,0.606408,0.400942,0.951466,0.811358,0.325614,0.441257,0.701829,0.362189,0.711928,0.0185977,0.409148,0.851652,0.427882,0.489704,0.757325,0.827249,0.854642,0.0716442,0.597598,0.725887,0.589174,0.0904986,0.825271,0.742483,0.378931,0.61469,0.0726977,0.768354,0.793969,0.17494,0.434487,0.107146,0.199296,0.0264622,0.883159,0.443728,0.252914,0.418478,0.496183,0.958218,0.517778,0.646282,0.224593,0.414374,0.21647,0.184261,0.105074,0.757219,0.72496,0.668513,0.0243794,0.696173,0.739288,0.111052,0.145292,0.641036,0.141596,0.00352019,0.788378,0.811048,0.47027,0.395972,0.872353,0.187907,0.294813,0.816661,0.734614,0.923651,0.290695,0.893205,0.419316,0.808885,0.166106,0.234463,0.789415,0.285146,0.719867,0.938355,0.851647,0.231219,0.960564,0.547031,0.124453,0.184385,0.482911,0.271025,0.538558,0.434413,0.960708,0.279911,0.980741,0.251149,0.137036,0.762312,0.635218,0.435423,0.470884,0.580729,0.306143,0.872117,0.221266,0.890221,0.48397,0.683868,0.0907105,0.780202,0.930626,0.354625,0.420483,0.128107,0.00838792,0.278754,0.452568,0.529469,0.407012,0.690274,0.396878,0.241023,0.220912,0.807174,0.667528,0.810131,0.119901,0.97482,0.669311,0.147539,0.770964,0.503365,0.96029,0.145513,0.705738,0.043584,0.304305,0.160653,0.761409,0.103352,0.222253,0.427927,0.833931,0.793382,0.922782,0.629244,0.388681,0.414424,0.831431,0.588143,0.551242,0.386033,0.461986,0.775509,0.454896,0.960219,0.195682,0.982587,0.672982,0.259475,0.289997,0.782173,0.71162,0.766213,0.740107,0.207693,0.802416,0.618407,0.333569,0.20279,0.766096,0.59817,0.270903,0.0771376,0.405138,0.0319192,0.132011,0.042331,0.275701,0.670724,0.522354,0.536693,0.657888,0.00325918,0.136705,0.228958,0.584302,0.792902,0.974744,0.839126,0.49085,0.266208,0.25259,0.106894,0.101701,0.368894,0.638403,0.729756,0.554431,0.0456089,0.555091,0.365033,0.728696,0.00402492,0.0575423,0.649762,0.918316,0.663367,0.365315,0.598578,0.107592,0.527879,0.263737,0.442375,0.852538,0.23192,0.606097,0.668341,0.964301,0.676719,0.733265,0.0217209,0.2347,0.526741,0.601984,0.740633,0.827764,0.094158,0.929293,0.315213,0.330564,0.590176,0.347004,0.21683,0.0483528,0.0126485,0.931741,0.791339,0.843216,0.818366,0.216344,0.981442,0.316628,0.967423,0.954464,0.714417,0.984016,0.355995,0.758999,0.45884,0.735682,0.162516,0.300034,0.145021,0.112554,0.596873,0.84424,0.997381,0.642649,0.773679,0.931479,0.610873,0.3727,0.739122,0.179053,0.0230103,0.721805,0.842695,0.506949,0.719997,0.667441,0.311336,0.938112,0.586649,0.210993,0.600736,0.0744559,0.935413,0.00687063,0.995575,0.0700321,0.642755,0.877292,0.392096,0.568343,0.594623,0.320793,0.332401,0.622968,0.247332,0.920426,0.15579,0.174346,0.974147,0.908228,0.866148,0.566891,0.607014,0.965694,0.836002,0.920872,0.85781,0.787366,0.701935,0.182596,0.839767,0.699172,0.615168,0.82971,0.464456,0.155383,0.520529,0.762911,0.17782,0.511425,0.626261,0.697766,0.356041,0.356914,0.652243,0.701669,0.32559,0.823658,0.0014351,0.962046,0.277133,0.268215,0.889575,0.234584,0.511427,0.28439,0.242227,0.249474,0.696081,0.350379,0.431362,0.976961,0.461302,0.770589,0.31513,0.237933,0.0647473,0.0826684,0.108842,0.517857,0.372422,0.844897,0.436999,0.669445,0.219011,0.558728,0.0854824,0.878862,0.345373,0.162737,0.329329,0.410976,0.56492,0.263984,0.473984,0.34183,0.387242,0.271107,0.589473,0.438878,0.205392,0.761012,0.1293,0.320748,0.623459,0.801266,0.258428,0.16706,0.0516166,0.42134,0.0928696,0.872942,0.000814795,0.274076,0.718331,0.408943,0.577437,0.249621,0.720315,0.870204,0.358808,0.80796,0.54788,0.0666363,0.193409,0.283276,0.627115,0.910533,0.769561,0.736254,0.224143,0.213268,0.0409639,0.443952,0.884941,0.661232,0.625514,0.0260093,0.567397,0.141778,0.625015,0.153233,0.631192,0.674351,0.725085,0.340754,0.926589,0.272256,0.888528,0.179708,0.232809,0.840363,0.868432,0.738926,0.914218,0.676585,0.748391,0.109765,0.238077,0.493155,0.267624,0.982748,0.247498,0.312359,0.425104,0.651045,0.355744,0.36384,0.373613,0.7006,0.805289,0.223236,0.493435,0.123031,0.446753,0.0225824,0.0833091,0.432923,0.912169,0.794444,0.347564,0.862401,0.283859,0.606774,0.869218,0.0196721,0.643505,0.525128,0.492235,0.683109,0.354382,0.782683,0.888291,0.861512,0.58216,0.344797,0.12447,0.251586,0.355925,0.0448886,0.0235021,0.93174,0.909651,0.41392,0.0789738,0.452469,0.678567,0.485835,0.361863,0.434221,0.044631,0.644322,0.891564,0.302753,0.115878,0.330356,0.834308,0.958163,0.794602,0.346926,0.796514,0.260677,0.47544,0.64693,0.216646,0.123623,0.273738,0.401237,0.735651,0.565188,0.543269,0.846017,0.337237,0.759039,0.427655,0.902979,0.725862,0.857946,0.733162,0.924228,0.36499,0.234618,0.637618,0.00287843,0.224745,0.726222,0.816539,0.85328,0.202997,0.593226,0.0338401,0.3925,0.437743,0.541968,0.0884523,0.789964,0.160213,0.437023,0.901264,0.131089,0.270809,0.728307,0.650182,0.829039,0.989622,0.526768,0.877554,0.847455,0.467366,0.546361,0.0579349,0.54006,0.00776017,0.67343,0.311593,0.500955,0.407782,0.399207,0.465811,0.212658,0.76761,0.774028,0.444339,0.742136,0.442817,0.836219,0.543921,0.268331,0.121368,0.71685,0.483024,0.712497,0.805508,0.45574,0.0435379,0.435029,0.215313,0.507297,0.0632891,0.642019,0.00312382,0.0844095,0.577314,0.932573,0.344761,0.855943,0.270691,0.436221,0.412039,0.13074,0.672958,0.782989,0.42825,0.00655121,0.517099,0.583264,0.0608444,0.555874,0.790865,0.739863,0.0136713,0.0648211,0.588125,0.246089,0.409655,0.892924,0.392438,0.11515,0.311168,0.0377284,0.113856,0.00155723,0.533753,0.0508515,0.624431,0.970648,0.732813,0.757354,0.193272,0.510527,0.631053,0.375756,0.242344,0.821843,0.982293,0.68696,0.254255,0.198823,0.633358,0.962272,0.250817,0.374327,0.984167,0.718552,0.822511,0.468859,0.200858,0.969512,0.735369,0.985214,0.329353,0.740617,0.822443,0.447554,0.300223,0.0517722,0.312583,0.518016,0.27858,0.77841,0.321903,0.835656,0.0812207,0.533781,0.579296,0.0196044,0.322265,0.236965,0.764206,0.184369,0.270854,0.226601,0.134838,0.988935,0.0321844,0.340674,0.36387,0.251378,0.967561,0.975495,0.773111,0.385453,0.243336,0.481761,0.0784064,0.114889,0.85287,0.177082,0.825959,0.4255,0.96278,0.0439435,0.270425,0.931126,0.969192,0.453446,0.338339,0.511846,0.207441,0.324294,0.661812,0.0680867,0.772125,0.0815231,0.494427,0.782797,0.193056,0.643997,0.416649,0.565146,0.33958,0.970878,0.237683,0.32472,0.769764,0.702675,0.763941,0.387109,0.564535,0.232641,0.37867,0.0917886,0.482543,0.742173,0.927711,0.117483,0.129783,0.448676,0.603975,0.90172,0.569028,0.276621,0.040519,0.816739,0.597168,0.221128,0.972977,0.673176,0.847045,0.590984,0.640205,0.788772,0.356678,0.810205,0.818513,|0.445053,0.567526,0.463212,0.930526,0.239886,0.525466,0.78037,0.988358,0.266316,0.182747,0.187968,0.828311,0.321371,0.750854,0.40013,0.237431,0.633801,0.0201778,0.332718,0.513672,0.474811,0.00350642,0.375298,0.45533,0.26427,0.20734,0.780432,0.201189,0.273845,0.919524,0.517665,0.327592,0.624179,0.265553,0.699773,0.940033,0.243043,0.321204,0.29135,0.279964,0.451582,0.185816,0.405641,0.592697,0.854924,0.653184,0.208374,0.500776,0.317955,0.384174,0.683545,0.162844,0.98129,0.180298,0.678788,0.188333,0.444887,0.402066,0.946899,0.513902,0.618247,0.0979883,0.361041,0.300709,0.407576,0.995858,0.11064,0.17889,0.534349,0.181657,0.0921128,0.500344,0.409034,0.489998,0.681522,0.699971,0.873121,0.055837,0.814647,0.49511,0.571365,0.462765,0.806468,0.111003,0.933435,0.0776145,0.54555,0.781731,0.915361,0.676711,0.124632,0.84167,0.799336,0.442816,0.450427,0.0952548,0.0163125,0.880727,0.698157,0.427359,0.515363,0.435781,0.116297,0.752924,0.640804,0.978513,0.311628,0.858711,0.00649476,0.962478,0.821425,0.326388,0.836492,0.218488,0.483787,0.933881,0.541085,0.155173,0.490993,0.248038,0.919791,0.00714475,0.837529,0.525291,0.334785,0.25418,0.579144,0.822032,0.420654,0.505252,0.83868,0.0357652,0.14095,0.547085,0.326962,0.427839,0.312621,0.0174832,0.213501,0.0450663,0.974998,0.629631,0.0501972,0.755185,0.650959,0.177031,0.88538,0.369263,0.732946,0.508499,0.365719,0.528146,0.657398,0.780413,0.164564,0.433461,0.00799477,0.769212,0.944215,0.0244507,0.279585,0.705685,0.349365,0.913991,0.53797,0.964258,0.227186,0.978838,0.383993,0.117415,0.726093,0.232308,0.151494,0.241682,0.95558,0.440604,0.443775,0.608568,0.916318,0.391367,0.00190079,0.7707,0.885318,0.0240009,0.955307,0.230036,0.637833,0.433757,0.608566,0.402472,0.136373,0.0351908,0.584029,0.241181,0.645935,0.516175,0.572201,0.243765,0.257321,0.906957,0.1913,0.860624,0.308569,0.574281,0.807812,0.057072,0.753806,0.979109,0.621572,0.492374,0.64668,0.433813,0.42099,0.0380964,0.0324544,0.772821,0.669663,0.126087,0.457154,0.584609,0.0591047,0.780347,0.413611,0.567491,0.536811,0.0848864,0.556615,0.722419,0.31636,0.133517,0.831013,0.394317,0.116869,0.458966,0.00960737,0.703339,0.682937,0.28949,0.975746,0.471198,0.854163,0.214306,0.411064,0.0634103,0.251693,0.53389,0.557557,0.18744,0.956464,0.131416,0.721666,0.271431,0.568491,0.568817,0.178007,0.743427,0.473236,0.393857,0.0228337,0.718541,0.36204,0.0245208,0.975406,0.0757915,0.334029,0.408406,0.51931,0.725785,0.785662,0.38752,0.834681,0.890368,0.904122,0.492595,0.674228,0.203697,0.466261,0.002294,0.661216,0.922217,0.81544,0.803176,0.776113,0.40382,0.162304,0.143377,0.499102,0.0274537,0.125237,0.498526,0.276478,0.591916,0.146245,0.215371,0.661672,0.376633,0.993914,0.238215,0.582388,0.953187,0.460203,0.837373,0.0820767,0.621187,0.811982,0.828643,0.508602,0.0810553,0.420648,0.473636,0.706336,0.579132,0.501643,0.711576,0.467241,0.751883,0.0674993,0.868449,0.744185,0.878757,0.156417,0.609063,0.4525,0.450282,0.935965,0.920495,0.952905,0.258358,0.00305587,0.255716,0.600862,0.501109,0.707746,0.449635,0.56611,0.898547,0.823197,0.517006,0.354969,0.890095,0.690822,0.144591,0.650338,0.582221,0.918476,0.686417,0.26925,0.511019,0.527682,0.95491,0.273007,0.557694,0.676297,0.0557494,0.917656,0.289974,0.0176315,0.793103,0.277475,0.644844,0.0357241,0.2748,0.483952,0.509298,0.930449,0.361054,0.714908,0.381596,0.846083,0.49296,0.736384,0.119355,0.854248,0.223722,0.212415,0.473375,0.686026,0.19127,0.812531,0.734303,0.736495,0.348021,0.368697,0.844144,0.718027,0.138009,0.511293,0.631474,0.645398,0.889239,0.0047735,0.189214,0.981163,0.519983,0.0275759,0.772827,0.50394,0.0697539,0.453268,0.970426,0.687651,0.543899,0.375577,0.765878,0.209835,0.107554,0.48921,0.479482,0.402476,0.588932,0.565699,0.853002,0.659577,0.644193,0.555338,0.64824,0.584838,0.213166,0.658697,0.08689,0.271146,0.845883,0.231789,0.496752,0.132018,0.625324,0.551796,0.812776,0.138875,0.761545,0.282799,0.248964,0.072539,0.968262,0.895525,0.0831428,0.695418,0.355269,0.376807,0.0630351,0.0833095,0.212218,0.400746,0.42547,0.72407,0.763056,0.374327,0.021482,0.124051,0.0573323,0.478716,0.785544,0.888981,0.477184,0.991788,9.64999e-05,0.740035,0.103328,0.129648,0.31192,0.385902,0.182368,0.572697,0.986106,0.688107,0.235734,0.845266,0.412999,0.410224,0.978016,0.83116,0.639232,0.608669,0.72624,0.217735,0.768117,0.616331,0.775749,0.34032,0.66081,0.964739,0.171819,0.0171561,0.888029,0.618501,0.110598,0.291692,0.112956,0.84667,0.109244,0.942187,0.371267,0.443456,0.652573,0.935961,0.418973,0.711019,0.956661,0.487361,0.287181,0.554262,0.376345,0.846187,0.0807972,0.575641,0.950402,0.470747,0.614241,0.716695,0.873263,0.794504,0.549667,0.992259,0.796219,0.607889,0.624017,0.0527367,0.172999,0.306533,0.316055,0.838658,0.126933,0.818261,0.382356,0.94871,0.406775,0.311619,0.330736,0.743811,0.715395,0.262154,0.672537,0.0915762,0.237793,0.438013,0.0362588,0.676556,0.342845,0.873405,0.774959,0.510558,0.296986,0.0120273,0.0115334,0.211616,0.659303,0.142111,0.601036,0.0524487,0.118162,0.953878,0.644632,0.151929,0.439326,0.298737,0.104578,0.329204,0.0961614,0.407657,0.954832,0.961382,0.729068,0.879456,0.243414,0.309361,0.870898,0.172183,0.884701,0.251018,0.806277,0.634764,0.488591,0.787653,0.344886,0.58474,0.187877,0.390875,0.381147,0.431937,0.315359,0.467801,0.844206,0.995376,0.492435,0.283246,0.756811,0.196138,0.366207,0.842778,0.0434318,0.214439,0.644688,0.0775698,0.761617,0.473149,0.736506,0.652584,0.21587,0.832325,0.632591,0.0021798,0.196031,0.823662,0.23789,0.289242,0.547471,0.560923,0.169174,0.725221,0.13617,0.0853856,0.45124,0.343758,0.990456,0.308657,0.380625,0.737812,0.866133,0.926286,0.964944,0.703093,0.996479,0.0479471,0.89088,0.677045,0.911061,0.247132,0.386967,0.0515998,0.101465,0.504355,0.645741,0.529366,0.791219,0.0288914,0.153915,0.53015,0.505595,0.828739,0.454699,0.608685,0.171465,0.164369,0.675224,0.102883,0.249346,0.7183,0.699476,0.271748,0.140155,0.423742,0.680491,0.260064,0.576976,0.690589,0.877251,0.483647,0.960443,0.633318,0.428762,0.173392,0.684348,0.115989,0.803206,0.134772,0.537293,0.934911,0.308621,0.913197,0.89025,0.952632,0.622898,0.58116,0.517537,0.516489,0.545612,0.889647,0.503472,0.230371,0.00405294,0.183083,0.512191,0.0532709,0.278311,0.633654,0.984138,0.29486,0.953398,0.616928,0.893622,0.419235,0.277026,0.403227,0.758927,0.898609,0.923397,0.235435,0.0630264,0.62974,0.220875,0.54521,0.547445,0.187389,0.111206,0.4049,0.859374,0.230794,0.453765,0.658108,0.627486,0.172396,0.424291,0.465118,0.452208,0.386534,0.0514925,0.713641,0.577509,0.448342,0.628598,0.222822,0.263051,0.93317,0.547156,0.526787,0.430857,0.920947,0.21689,0.261767,0.32485,0.734092,0.72991,0.530479,0.200869,0.573503,0.511561,0.924107,0.64268,0.318084,0.0209015,0.17457,0.787365,0.14662,0.198552,0.0151592,0.535602,0.639238,0.291936,0.292649,0.578783,0.665697,0.891437,0.535578,0.862204,0.509662,0.667239,0.790875,0.0135493,0.340598,0.208194,0.405598,0.169446,0.701177,0.523556,0.448696,0.508496,0.444657,0.266454,0.246209,0.110159,0.197024,0.311576,0.188251,0.223581,0.880063,0.29655,0.465118,0.156407,0.872776,0.421837,0.956597,0.177918,0.988617,0.791822,0.427316,0.539955,0.245701,0.184524,0.578802,0.259205,0.170057,0.32493,0.391123,0.213065,0.532316,0.607922,0.783426,0.727914,0.126459,0.481193,0.827313,0.657326,0.406764,0.18819,0.469143,0.629111,0.308847,0.176474,0.859203,0.782127,0.651613,0.123217,0.365216,0.29726,0.217665,0.354348,0.0816588,0.373606,0.880908,0.494125,0.914676,0.0172588,0.141208,0.899954,0.567017,0.315696,0.366905,0.450066,0.25714,0.169889,0.100922,0.400249,0.589639,0.983996,0.768774,0.690074,0.352162,0.728983,0.474433,0.330742,0.921129,0.277432,0.15074,0.390581,0.431787,0.48242,0.940133,0.985796,0.818539,0.590261,0.50145,0.224946,0.348808,0.325667,0.428357,0.648234,0.328577,0.719808,0.0811852,0.924634,0.912868,0.328012,0.823524,0.91892,0.339753,0.975479,0.863525,0.0432945,0.536174,0.961979,0.592953,0.501369,0.393645,0.956773,0.993345,0.640003,0.869729,0.0603203,0.0646345,0.7571,0.948392,0.464449,0.805337,0.454925,0.0483968,0.320845,0.544253,0.809294,0.528012,0.254936,0.0805022,0.606852,0.122692,0.475755,0.599225,0.815939,0.638197,0.707334,0.177059,0.147169,0.950607,0.567434,0.854271,0.446664,0.450691,0.308681,0.883761,0.0617909,0.663124,0.0153503,0.882276,0.78244,0.756334,0.639286,0.512009,0.486753,0.815104,0.519593,0.537712,0.165002,0.840784,0.249668,0.604968,0.611936,0.320818,0.879522,0.251872,0.591635,0.241086,0.00140458,0.355217,0.49593,0.578548,0.713688,0.789289,0.349066,0.969129,0.487467,0.327865,0.504553,0.905972,0.455408,0.941513,0.15054,0.235422,0.451787,0.949029,0.576822,0.571312,0.926968,0.184526,0.720474,0.825184,0.160953,0.0860219,0.96003,0.967993,0.151568,0.339954,0.333057,0.324717,0.604428,0.923727,0.0340364,0.997067,0.851674,0.00449002,0.601659,0.965027,0.265591,0.462022,0.138679,0.389082,0.11763,0.727834,0.332404,0.284232,0.885245,0.550262,0.451356,0.487455,0.997439,0.192917,0.798233,0.427431,0.279529,0.601954,0.633957,0.529957,0.166329,0.56478,0.992237,0.155873,0.603237,0.217466,0.915602,0.531771,0.788083,0.120205,0.900412,|0.15985,0.924845,0.500334,0.53395,0.475255,0.404517,0.342634,0.114898,0.494206,0.404872,0.522602,0.770529,0.0926517,0.0698302,0.27085,0.801054,0.120692,0.533742,0.824648,0.387416,0.0377311,0.913441,0.717065,0.141328,0.44002,0.039919,0.885873,0.25336,0.129317,0.95273,0.760396,0.478077,0.719089,0.128469,0.818432,0.989759,0.0315247,0.476577,0.695165,0.873314,0.0220461,0.986945,0.55934,0.914903,0.903595,0.830913,0.388025,0.20663,0.697197,0.580839,0.113823,0.179893,0.0059008,0.990081,0.150192,0.333679,0.141217,0.0738857,0.100561,0.555158,0.200337,0.768117,0.0175361,0.443283,0.810041,0.156347,0.953682,0.760876,0.165729,0.609409,0.880874,0.45509,0.549325,0.309656,0.0111354,0.820924,0.136327,0.581079,0.41013,0.199931,0.359419,0.784512,0.167964,0.447271,0.6473,0.0884988,0.217844,0.962806,0.863227,0.545183,0.742709,0.354919,0.19178,0.343128,0.703704,0.23427,0.453677,0.726847,0.793526,0.910784,0.662876,0.804013,0.377562,0.603372,0.249549,0.853267,0.270498,0.75282,0.0896555,0.908257,0.229921,0.963788,0.730103,0.309488,0.656488,0.303671,0.593517,0.12108,0.304573,0.778904,0.441737,0.911299,0.581329,0.0523824,0.874794,0.037227,0.902927,0.719567,0.28738,0.383512,0.956037,0.626365,0.609089,0.381803,0.359843,0.724317,0.893631,0.673338,0.0909564,0.00999415,0.289264,0.021318,0.577937,0.0788443,0.358751,0.189833,0.652207,0.176703,0.213783,0.469805,0.032824,0.0613974,0.181142,0.844495,0.213076,0.929085,0.371304,0.223276,0.356617,0.901606,0.537932,0.552603,0.751513,0.612705,0.447708,0.8814,0.0206467,0.770624,0.719506,0.453071,0.865937,0.509111,0.769907,0.418467,0.44574,0.641887,0.337562,0.393591,0.354678,0.647856,0.672173,0.199826,0.393948,0.70718,0.204249,0.105296,0.357791,0.998639,0.413008,0.538902,0.679584,0.997748,0.516753,0.3159,0.66181,0.596621,0.294978,0.563285,0.795147,0.036038,0.122343,0.11937,0.877038,0.102505,0.112736,0.718227,0.708196,0.696591,0.135437,0.503174,0.630932,0.0919432,0.895021,0.829227,0.39377,0.739233,0.573733,0.59078,0.524562,0.746438,0.46465,0.775729,0.587714,0.977745,0.680961,0.64885,0.443065,0.742403,0.610227,0.358097,0.78352,0.785967,0.994062,0.569115,0.636714,0.51834,0.909214,0.241241,0.0663159,0.144343,0.563833,0.709108,0.522892,0.310525,0.278718,0.654436,0.738074,0.969927,0.0287721,0.253956,0.254796,0.930521,0.482576,0.12561,0.767026,0.718343,0.245599,0.164874,0.166049,0.264125,0.334012,0.331816,0.261085,0.417387,0.990556,0.819162,0.119178,0.165638,0.0530472,0.307466,0.533118,0.533792,0.918131,0.642191,0.211263,0.115651,0.273639,0.830232,0.652576,0.57317,0.64621,0.356912,0.465739,0.099758,0.403937,0.980502,0.59577,0.134768,0.205147,0.822918,0.487129,0.778068,0.984566,0.292739,0.870535,0.578515,0.499426,0.41744,0.745801,0.851018,0.0130727,0.652128,0.429872,0.412958,0.353977,0.506984,0.282126,0.891247,0.755399,0.657916,0.316306,0.277033,0.612629,0.188226,0.960475,0.665985,0.629496,0.326799,0.0966181,0.534064,0.0945405,0.94671,0.701637,0.863314,0.393959,0.164874,0.711484,0.719556,0.435438,0.162776,0.0901513,0.765437,0.977471,0.0358564,0.282583,0.281255,0.778615,0.568376,0.0593181,0.240247,0.81483,0.75186,0.707497,0.823629,0.874048,0.34631,0.633716,0.622947,0.937347,0.810555,0.417325,0.620933,0.965918,0.53389,0.420873,0.712983,0.934604,0.881593,0.615685,0.174961,0.53295,0.596885,0.83424,0.145425,0.993658,0.715516,0.906064,0.4857,0.0162337,0.404117,0.854048,0.475493,0.493381,0.0398547,0.614642,0.593461,0.741029,0.464991,0.267058,0.835908,0.104639,0.70502,0.137391,0.000641465,0.224612,0.506946,0.810986,0.4565,0.626899,0.229515,0.784707,0.0318719,0.135738,0.781584,0.294068,0.0392356,0.0741217,0.226015,0.448676,0.969888,0.972409,0.16897,0.0868191,0.108922,0.920018,0.476978,0.0423652,0.922716,0.00553536,0.525422,0.088465,0.818372,0.898023,0.825925,0.631862,0.32853,0.127461,0.139055,0.454415,0.432435,0.364196,0.404359,0.62375,0.368231,0.535631,0.722963,0.822854,0.149579,0.568305,0.970224,0.394061,0.331205,0.682347,0.609356,0.385797,0.22276,0.0451626,0.761884,0.537628,0.573397,0.991472,0.550175,0.0738952,0.103563,0.611769,0.294507,0.961252,0.723077,0.000644445,0.486227,0.11856,0.710422,0.426196,0.449189,0.496341,0.368476,0.300192,0.395519,0.633731,0.717708,0.524885,0.553097,0.505915,0.218056,0.52461,0.517699,0.32116,0.786846,0.748147,0.630469,0.944074,0.239623,0.511746,0.80685,0.415733,0.63916,0.169892,0.0143691,0.384692,0.884901,0.997351,0.737296,0.0558312,0.668567,0.809705,0.870759,0.862191,0.495012,0.454286,0.0331698,0.0483885,0.538456,0.308748,0.683504,0.781753,0.255094,0.486809,0.807803,0.238544,0.795109,0.950189,0.909528,0.57753,0.256533,0.424763,0.775616,0.0608034,0.8084,0.892444,0.605965,0.451072,0.0406953,0.0195166,0.460555,0.750172,0.194439,0.497318,0.146689,0.760329,0.968147,0.739387,0.398924,0.083555,0.0623509,0.840138,0.0952461,0.143324,0.596888,0.800147,0.195352,0.174982,0.70132,0.223496,0.69315,0.802149,0.480853,0.76802,0.2121,0.247648,0.392474,0.585421,0.620541,0.945534,0.638697,0.6228,0.668007,0.183059,0.130402,0.0509518,0.686616,0.582608,0.10777,0.450303,0.747486,0.811058,0.210034,0.613356,0.537702,0.860934,0.271257,0.441231,0.11862,0.462907,0.259023,0.826598,0.246972,0.599357,0.498775,0.0250319,0.178846,0.925939,0.5662,0.337524,0.850532,0.383385,0.530858,0.206915,0.21458,0.404914,0.581461,0.149685,0.227066,0.674542,0.777408,0.164408,0.776709,0.274998,0.742029,0.355515,0.0050354,0.961226,0.571636,0.653156,0.81359,0.996608,0.899945,0.566952,0.196903,0.506169,0.326124,0.731913,0.157993,0.723353,0.645609,0.771384,0.0322266,0.143032,0.380561,0.0337371,0.561091,0.576254,0.255664,0.0995874,0.0046708,0.59318,0.210547,0.0873967,0.533385,0.94038,0.0533866,0.0929262,0.952608,0.852136,0.989932,0.569909,0.344936,0.76843,0.00801837,0.458038,0.678158,0.250854,0.931506,0.00992328,0.0787616,0.118324,0.0973493,0.173335,0.698947,0.543693,0.659759,0.606312,0.522379,0.726567,0.652339,0.945408,0.280132,0.760923,0.373418,0.621701,0.493444,0.301303,0.0963504,0.0588952,0.00444353,0.238149,0.97678,0.435291,0.0781434,0.124002,0.341433,0.564301,0.809996,0.600517,0.0418094,0.0708992,0.577684,0.0671729,0.473566,0.88702,0.614875,0.351684,0.510306,0.26596,0.536726,0.134458,0.813387,0.981954,0.744493,0.561357,0.341427,0.3909,0.994493,0.805636,0.372438,0.441244,0.354473,0.110695,0.808959,0.501835,0.478303,0.683727,0.131325,0.150717,0.63106,0.608962,0.72461,0.616543,0.805744,0.341284,0.95182,0.769958,0.613219,0.791774,0.634524,0.271144,0.0634397,0.564506,0.202421,0.0799945,0.832979,0.313482,0.683008,0.796152,0.0582074,0.088374,0.0224577,0.612928,0.286977,0.118278,0.83043,0.185061,0.340521,0.394127,0.0525447,0.302533,0.523184,0.353707,0.0464526,0.222882,0.699843,0.933069,0.924422,0.606509,0.821663,0.758926,0.856442,0.216941,0.263052,0.72174,0.33584,0.00172317,0.596964,0.590337,0.822444,0.707165,0.410517,0.310774,0.208428,0.280566,0.674789,0.494354,0.0959366,0.0403868,0.584211,0.361956,0.0444515,0.680181,0.537358,0.856817,0.668662,0.710568,0.768813,0.14134,0.836691,0.239198,0.112845,0.453834,0.192181,0.186504,0.424402,0.90902,0.616118,0.862292,0.0560245,0.743789,0.978528,0.452751,0.631632,0.536088,0.00346899,0.727068,0.519069,0.849623,0.519835,0.417577,0.38774,0.185827,0.825299,0.749352,0.615759,0.627683,0.629124,0.0330986,0.0513162,0.770781,0.0567042,0.747019,0.356316,0.870744,0.458163,0.236539,0.567808,0.0196824,0.496132,0.503572,0.46551,0.925001,0.515691,0.523647,0.354333,0.332299,0.00185955,0.0972283,0.187869,0.579955,0.700397,0.650394,0.779029,0.176636,0.50783,0.349351,0.4359,0.190268,0.835431,0.865101,0.124265,0.516266,0.943897,0.871595,0.108156,0.712406,0.218438,0.669389,0.382133,0.526081,0.095019,0.397075,0.858695,0.714291,0.405808,0.560807,0.603859,0.0537292,0.950034,0.96813,0.221456,0.890448,0.00488889,0.577603,0.302104,0.473443,0.809217,0.759005,0.616317,0.354876,0.387111,0.0468022,0.315288,0.090032,0.620294,0.467672,0.0222686,0.589477,0.377078,0.565911,0.156873,0.25355,0.295399,0.657155,0.857507,0.339076,0.64748,0.693986,0.700968,0.786317,0.378707,0.720451,0.0736309,0.260823,0.693909,0.278444,0.290552,0.814953,0.711978,0.236499,0.0932091,0.624208,0.249739,0.528135,0.595528,0.87561,0.755769,0.0946671,0.796202,0.568197,0.711451,0.156466,0.511044,0.0141622,0.0958502,0.947027,0.130254,0.299078,0.746627,0.584157,0.404565,0.67841,0.322656,0.345823,0.197691,0.534902,0.988135,0.462307,0.602916,0.888927,0.428191,0.640032,0.0167232,0.68984,0.748104,0.87932,0.591375,0.973521,0.611501,0.281256,0.71884,0.746329,0.415494,0.910861,0.0895701,0.700786,0.248949,0.609195,0.250885,0.569965,0.338746,0.949347,0.405035,0.982016,0.531054,0.996835,0.192253,0.480014,0.510139,0.269151,0.130766,0.931367,0.643586,0.968897,0.0540971,0.684225,0.453208,0.424973,0.518498,0.147721,0.263465,0.554624,0.298452,0.500075,0.112644,0.746052,0.076553,0.0251443,0.411424,0.498706,0.619549,0.785357,0.466224,0.951762,0.0405384,0.960869,0.113212,0.275074,0.683999,0.453969,0.0407817,0.774457,0.61538,0.862398,0.740915,0.154011,0.580112,0.890064,0.514215,0.139746,0.0780831,0.696755,0.00126231,0.388975,0.275372,0.296408,0.544979,0.608477,0.0467874,0.939695,0.552141,0.329283,0.766027,0.648067,0.0780913,|0.969276,0.790659,0.688324,0.968114,0.657072,0.647432,0.0346221,0.814432,0.0958446,0.203387,0.748309,0.110979,0.785457,0.701964,0.996589,0.130209,0.743472,0.852812,0.0524293,0.466805,0.473614,0.134869,0.836619,0.454704,0.335273,0.673822,0.908454,0.360128,0.147449,0.782577,0.722056,0.107233,0.800436,0.190902,0.802102,0.035809,0.282169,0.727395,0.483614,0.156512,0.477596,0.765783,0.439119,0.439051,0.041455,0.891441,0.569198,0.171958,0.617168,0.385523,0.714275,0.91104,0.456235,0.600258,0.616999,0.349088,0.690218,0.757461,0.10204,0.955172,0.546134,0.270866,0.867736,0.5269,0.0760891,0.296095,0.130796,0.351013,0.910968,0.991168,0.820172,0.308393,0.126448,0.530423,0.709462,0.929411,0.295397,0.150986,0.140305,0.23311,0.884461,0.478185,0.653676,0.0167161,0.282077,0.179042,0.240018,0.264944,0.216525,0.629345,0.655214,0.418708,0.491006,0.332918,0.613083,0.735692,0.128228,0.740399,0.181946,0.164502,0.211292,0.592226,0.0739639,0.585831,0.262015,0.853783,0.94103,0.867123,0.413384,0.418814,0.948347,0.0630773,0.605818,0.433291,0.533428,0.137396,0.352204,0.0495413,0.722128,0.251769,0.699296,0.199146,0.271311,0.124896,0.718763,0.876784,0.421275,0.726224,0.686841,0.750645,0.586107,0.83898,0.319005,0.996314,0.633356,0.879911,0.0587304,0.990801,0.621706,0.166308,0.0807464,0.656032,0.84462,0.756691,0.800569,0.917082,0.28134,0.0232333,0.919238,0.591539,0.791499,0.460366,0.51486,0.936447,0.06629,0.83022,0.634782,0.260026,0.152866,0.250515,0.822793,0.387267,0.181891,0.822727,0.0292934,0.0725035,0.136622,0.433856,0.684328,0.713457,0.668751,0.758372,0.155149,0.192033,0.855242,0.260114,0.650627,0.563737,0.716533,0.537388,0.986147,0.00180268,0.0535609,0.913966,0.0980175,0.709852,0.385043,0.804472,0.575048,0.798909,0.905142,0.652749,0.563902,0.0506789,0.00137484,0.362929,0.941108,0.792759,0.531521,0.439577,0.0522918,0.248449,0.712444,0.915506,0.25208,0.329516,0.989704,0.790227,0.84241,0.800387,0.394003,0.721763,0.618148,0.332065,0.569638,0.436546,0.567689,0.522307,0.171615,0.152035,0.688515,0.493458,0.302755,0.61683,0.606256,0.0651467,0.103607,0.831138,0.949845,0.365247,0.129224,0.711237,0.772585,0.990335,0.480895,0.914256,0.524886,0.901695,0.774633,0.59123,0.262437,0.662939,0.230856,0.965327,0.566536,0.937587,0.109225,0.346928,0.160851,0.852722,0.737596,0.657413,0.0649732,0.0519506,0.966989,0.539642,0.323706,0.308983,0.647195,0.95222,0.351309,0.453534,0.729515,0.447123,0.0647857,0.336488,0.665205,0.470188,0.494474,0.43951,0.884947,0.935474,0.738174,0.0481966,0.104847,0.415868,0.269691,0.77359,0.543114,0.530648,0.992301,0.958448,0.883669,0.926932,0.00649095,0.0589939,0.882967,0.042658,0.855453,0.906502,0.698921,0.0655885,0.150706,0.554946,0.895401,0.212679,0.560609,0.623916,0.656848,0.330689,0.0253195,0.326873,0.503115,0.128037,0.275119,0.943415,0.0843375,0.685426,0.84798,0.0165698,0.28927,0.0289606,0.419191,0.514782,0.685195,0.149842,0.811769,0.846324,0.417683,0.468046,0.586615,0.842183,0.438618,0.755848,0.312971,0.267573,0.3898,0.412825,0.664037,0.879898,0.150177,0.886814,0.897473,0.625975,0.567731,0.798492,0.0361167,0.0898756,0.673984,0.341374,0.0378377,0.593881,0.983488,0.278069,0.0778063,0.387953,0.567311,0.768973,0.602264,0.60389,0.351712,0.82101,0.201726,0.991035,0.914033,0.0746747,0.758572,0.0428823,0.060914,0.48765,0.227465,0.00953174,0.811732,0.442954,0.428169,0.0458618,0.938887,0.748185,0.248702,0.143544,0.32769,0.398917,0.808596,0.461011,0.339738,0.163204,0.0535746,0.0442333,0.575258,0.0215397,0.96237,0.865503,0.624017,0.757434,0.36615,0.28679,0.48575,0.81588,0.122486,0.742784,0.902253,0.857332,0.996575,0.545465,0.495882,0.799663,0.781337,0.723407,0.0258804,0.0200092,0.0672597,0.867911,0.893349,0.439438,0.135672,0.283798,0.0515029,0.181565,0.696166,0.999522,0.276856,0.369095,0.499173,0.556933,0.829704,0.80285,0.904371,0.178369,0.855909,0.222946,0.429129,0.817519,0.892877,0.780861,0.800694,0.495746,0.339735,0.256429,0.810658,0.585819,0.341151,0.166565,0.173511,0.84537,0.801721,0.00766313,0.0684927,0.824992,0.0130724,0.563149,0.445201,0.662635,0.68471,0.192164,0.130014,0.212582,0.734961,0.100583,0.0578107,0.822501,0.534691,0.886416,0.252701,0.756265,0.128812,0.248995,0.83129,0.028441,0.80141,0.725185,0.60699,0.748758,0.056386,0.15218,0.39977,0.429367,0.0475401,0.545831,0.588876,0.300979,0.947682,0.055684,0.995719,0.242772,0.907072,0.44305,0.120453,0.565727,0.152901,0.549873,0.41834,0.44192,0.579271,0.322857,0.97864,0.908126,0.79907,0.439564,0.789219,0.523233,0.434087,0.638177,0.128463,0.13261,0.567761,0.898402,0.691968,0.323346,0.972982,0.0955887,0.714403,0.559775,0.952805,0.446662,0.00704747,0.613241,0.232672,0.110169,0.320759,0.46597,0.486458,0.996091,0.60349,0.815642,0.754556,0.920745,0.623342,0.618502,0.918014,0.850907,0.731773,0.899379,0.624804,0.607391,0.0356535,0.906766,0.708441,0.768073,0.605093,0.376244,0.278917,0.279386,0.493317,0.415272,0.265858,0.445289,0.919923,0.931633,0.917878,0.632137,0.383171,0.110435,0.916323,0.750457,0.548008,0.367552,0.115631,0.700417,0.147641,0.4399,0.859319,0.26314,0.76214,0.65737,0.513329,0.589063,0.154664,0.702616,0.766565,0.272581,0.424467,0.112005,0.777995,0.17527,0.255898,0.711119,0.257931,0.356435,0.0273628,0.576248,0.981515,0.881969,0.389065,0.953322,0.572204,0.583896,0.575474,0.249816,0.400643,0.861306,0.188356,0.655995,0.495487,0.369232,0.192834,0.58185,0.372555,0.0375559,0.860942,0.814038,0.685146,0.34655,0.629948,0.743523,0.969946,0.298731,0.640736,0.853545,0.923253,0.401193,0.590692,0.292704,0.448226,0.962706,0.210567,0.70269,0.998877,0.243553,0.51985,0.874864,0.419721,0.954176,0.887935,0.963902,0.960841,0.0353824,0.852813,0.632393,0.0817552,0.329692,0.557329,0.845894,0.151983,0.976245,0.689427,0.458283,0.684397,0.89467,0.142715,0.490639,0.248858,0.98125,0.303526,0.27884,0.717216,0.861701,0.957953,0.722454,0.397305,0.112293,0.56869,0.0903171,0.384288,0.484599,0.785208,0.711852,0.219726,0.964474,0.581502,0.00662827,0.385031,0.357,0.805355,0.152617,0.900145,0.912429,0.250233,0.695961,0.73834,0.235239,0.699727,0.472644,0.966135,0.0787751,0.281081,0.155492,0.821622,0.0315721,0.742573,0.693898,0.00930542,0.702562,0.682908,0.561682,0.363311,0.0202167,0.686961,0.176225,0.0739934,0.601523,0.727351,0.438464,0.466012,0.777157,0.668186,0.13575,0.737601,0.866445,0.731245,0.916971,0.147238,0.716055,0.037896,0.841853,0.88302,0.19162,0.888024,0.366903,0.569065,0.158221,0.725273,0.23869,0.582449,0.145383,0.524401,0.918489,0.347805,0.795634,0.788126,0.00657684,0.195596,0.028721,0.837771,0.880122,0.718668,0.902579,0.992451,0.593326,0.792672,0.912516,0.0869065,0.579345,0.254063,0.838268,0.539756,0.321597,0.242824,0.387674,0.372674,0.417857,0.672763,0.863877,0.953478,0.456127,0.844001,0.619485,0.0613221,0.406591,0.0951238,0.762546,0.70125,0.547916,0.326067,0.758876,0.283162,0.138066,0.88253,0.81674,0.232369,0.798926,0.0089705,0.26391,0.360327,0.417652,0.715745,0.577567,0.0255488,0.450869,0.797854,0.53694,0.93017,0.351115,0.718263,0.882091,0.458619,0.204962,0.306137,0.771043,0.846474,0.73365,0.188469,0.765454,0.604512,0.518057,0.178544,0.19301,0.640011,0.894756,0.0181752,0.851117,0.593436,0.531969,0.205987,0.583573,0.66196,0.321958,0.10677,0.297189,0.421617,0.5073,0.292989,0.585926,0.656431,0.974521,0.883795,0.465172,0.588145,0.949837,0.247311,0.825327,0.118973,0.112161,0.87239,0.822153,0.700504,0.946287,0.646749,0.432031,0.579485,0.384341,0.119569,0.085888,0.875861,0.417126,0.742029,0.602807,0.360385,0.286357,0.573458,0.753573,0.865374,0.85928,0.121734,0.248234,0.879642,0.886749,0.829744,0.809569,0.257072,0.751817,0.330423,0.00946611,0.346842,0.149775,0.264692,0.938438,0.993577,0.609731,0.673459,0.793004,0.483117,0.613356,0.284509,0.000845909,0.168879,0.631969,0.801652,0.52408,0.401119,0.781829,0.909478,0.241199,0.215162,0.257631,0.19019,0.312563,0.129837,0.751707,0.747757,0.679811,0.718802,0.237944,0.213781,0.131555,0.976389,0.484228,0.275488,0.524289,0.086403,0.739456,0.429398,0.380017,0.28087,0.831777,0.12329,0.840044,0.59696,0.227703,0.286924,0.1755,0.710217,0.321684,0.453771,0.329653,0.592575,0.832419,0.111798,0.706972,0.261617,0.385306,0.655627,0.128002,0.90223,0.371588,0.620933,0.519425,0.416658,0.0450476,0.48766,0.829483,0.352144,0.390179,0.443103,0.453683,0.915157,0.96761,0.3703,0.1637,0.88109,0.0267572,0.381519,0.708061,0.615599,0.246095,0.888176,0.74346,0.7594,0.633552,0.685228,0.392659,0.899578,0.696556,0.554106,0.114465,0.141763,0.930032,0.954644,0.404233,0.376799,0.0639244,0.907018,0.19731,0.0582668,0.100916,0.527392,0.377226,0.896715,0.565218,0.846117,0.961867,0.642736,0.980872,0.616981,0.00769329,0.365247,0.198292,0.116418,0.397378,0.150739,0.690693,0.122895,0.976676,0.722261,0.0019601,0.747063,0.185139,0.0333679,0.52109,0.116678,0.612442,0.151648,0.804041,0.468781,0.400037,0.581355,0.789812,0.00448841,0.23334,0.831473,0.701707,0.76474,0.12969,0.228921,0.572231,0.362454,0.000131607,0.218204,0.128272,0.887794,0.312036,0.377708,0.548417,0.36047,0.559319,0.494632,0.0485452,0.421345,0.85792,0.523277,0.676107,0.0262794,0.111828,0.783569,0.520997,0.138506,0.937747,0.569939,0.972242,0.458868,0.7908,|0.398593,0.681827,0.439034,0.87965,0.160798,0.142679,0.555063,0.0552951,0.977237,0.271066,0.337853,0.977511,0.741021,0.948007,0.410934,0.864811,0.791812,0.864232,0.583442,0.0640648,0.865529,0.479764,0.473072,0.111591,0.454858,0.141705,0.122646,0.664759,0.854234,0.550126,0.854153,0.426329,0.595837,0.557143,0.8057,0.370197,0.729002,0.0526513,0.09561,0.590754,0.591583,0.193215,0.411719,0.73506,0.223893,0.210461,0.0274354,0.410094,0.50289,0.893992,0.270896,0.55178,0.870003,0.120455,0.536528,0.312211,0.452296,0.676441,0.276559,0.678216,0.998334,0.340464,0.212458,0.255524,0.224349,0.270032,0.532397,0.20586,0.220276,0.640739,0.216371,0.618307,0.381782,0.532285,0.673196,0.500945,0.00666064,0.380186,0.903634,0.144254,0.757027,0.671568,0.211136,0.0136699,0.774832,0.62291,0.93379,0.962423,0.133326,0.498526,0.770961,0.812201,0.663023,0.303696,0.879641,0.788921,0.25612,0.441996,0.995121,0.352344,0.971751,0.815876,0.844162,0.396386,0.912757,0.586012,0.845533,0.238812,0.0920517,0.710877,0.809129,0.144312,0.718836,0.846413,0.25237,0.890658,0.997626,0.801799,0.947564,0.784553,0.606846,0.575584,0.0614937,0.285941,0.562034,0.21301,0.932019,0.0290806,0.279711,0.935364,0.928518,0.389892,0.0479356,0.988798,0.245642,0.304384,0.699125,0.396619,0.843791,0.746932,0.760211,0.11243,0.0148593,0.506158,0.621892,0.76093,0.926027,0.833591,0.683951,0.961293,0.923833,0.870704,0.0385259,0.921698,0.239093,0.809276,0.251451,0.392412,0.793668,0.548493,0.498515,0.697353,0.706307,0.445141,0.269009,0.80859,0.981972,0.647755,0.70436,0.566016,0.221703,0.700865,0.581269,0.745772,0.0667459,0.382137,0.333116,0.358295,0.370389,0.725893,0.430074,0.648618,0.348317,0.730318,0.785615,0.0187266,0.88785,0.414835,0.128529,0.0559453,0.0771152,0.0362355,0.633773,0.914818,0.188193,0.628412,0.246038,0.210281,0.438011,0.908164,0.510955,0.365699,0.249217,0.0124249,0.530121,0.153197,0.74853,0.787781,0.0126145,0.278725,0.544701,0.809799,0.035683,0.83967,0.463584,0.874574,0.434706,0.785588,0.566876,0.935892,0.0758815,0.473266,0.492135,0.181558,0.192937,0.441771,0.0127933,0.8224,0.144592,0.342877,0.583905,0.581469,0.918155,0.149653,0.773375,0.337444,0.574211,0.0364712,0.844138,0.827591,0.190575,0.943705,0.505404,0.607525,0.00947332,0.26822,0.186534,0.904159,0.469698,0.980366,0.938307,0.00489801,0.951668,0.206398,0.382156,0.965756,0.934648,0.686026,0.807191,0.0946575,0.753536,0.768559,0.906873,0.710606,0.0374478,0.916147,0.781063,0.697164,0.135615,0.979926,0.656932,0.718469,0.761592,0.836643,0.874982,0.668966,0.271479,0.615628,0.895474,0.606301,0.471186,0.385133,0.185034,0.0115675,0.313082,0.639414,0.603755,0.264971,0.284614,0.863343,0.793308,0.561924,0.825057,0.046828,0.404824,0.644678,0.456639,0.775692,0.0743802,0.64082,0.333181,0.723325,0.354639,0.328927,0.551091,0.0849679,0.0064072,0.188353,0.0830099,0.422902,0.560176,0.928683,0.735901,0.872925,0.498632,0.462925,0.877889,0.428362,0.998713,0.0879136,0.944153,0.369026,0.569224,0.913827,0.0220193,0.439474,0.831185,0.365912,0.935457,0.942703,0.317809,0.536932,0.328366,0.409922,0.0594813,0.228964,0.683631,0.0908321,0.513817,0.819454,0.672476,0.213374,0.357414,0.609719,0.697056,0.0539095,0.121573,0.0836138,0.00651371,0.268052,0.88563,0.489946,0.870575,0.636532,0.142642,0.156863,0.394356,0.269161,0.140579,0.151335,0.682768,0.327209,0.2859,0.327516,0.177162,0.538823,0.368915,0.728493,0.591706,0.973068,0.294731,0.859247,0.435673,0.911667,0.363238,0.96792,0.228562,0.647873,0.0661138,0.843835,0.312147,0.904576,0.926636,0.918789,0.885722,0.604154,0.766154,0.201671,0.852813,0.138259,0.703038,0.590641,0.738166,0.287463,0.736957,0.184877,0.174082,0.55759,0.247625,0.666782,0.687156,0.113121,0.917105,0.29585,0.0488753,0.0773015,0.134034,0.239156,0.688866,0.654318,0.864747,0.5846,0.835643,0.46613,0.668916,0.52912,0.796487,0.921391,0.922648,0.985078,0.734504,0.151369,0.145859,0.133857,0.00390005,0.379135,0.260383,0.517032,0.369011,0.180523,0.0864889,0.24308,0.628795,0.896024,0.369581,0.301047,0.543989,0.882875,0.162077,0.627706,0.0547446,0.452928,0.237392,0.0369603,0.369709,0.219406,0.497425,0.805346,0.361761,0.134623,0.576167,0.828762,0.722299,0.978162,0.691783,0.716058,0.17792,0.643216,0.682799,0.395727,0.222262,0.286806,0.378882,0.848094,0.67569,0.848618,0.360722,0.0813432,0.335349,0.772411,0.0378485,0.850075,0.0793943,0.200377,0.0307796,0.675397,0.188595,0.939804,0.220374,0.0717728,0.304721,0.710408,0.770833,0.247788,0.0914691,0.276183,0.399151,0.0854901,0.162124,0.698456,0.166648,0.747604,0.653035,0.668035,0.662383,0.752772,0.460021,0.979958,0.0309451,0.682855,0.481831,0.698599,0.763142,0.743097,0.872817,0.986173,0.831897,0.724623,0.111022,0.985553,0.420988,0.983193,0.209187,0.243653,0.299431,0.656841,0.429331,0.735198,0.9404,0.981335,0.604235,0.0670696,0.622132,0.130434,0.998267,0.639448,0.905858,0.165805,0.5525,0.244227,0.0970214,0.404682,0.0133813,0.780523,0.255832,0.425902,0.422145,0.857985,0.28823,0.39229,0.897986,0.915643,0.113342,0.57514,0.34067,0.178545,0.212889,0.320602,0.521292,0.241014,0.978111,0.709855,0.379132,0.672043,0.823147,0.544968,0.381639,0.658066,0.544432,0.662507,0.445166,0.813601,0.429251,0.629617,0.739839,0.533099,0.537651,0.883587,0.879983,0.932187,0.0141695,0.961974,0.0213056,0.276258,0.193635,0.654918,0.897533,0.618051,0.436289,0.904496,0.289643,0.481991,0.500867,0.500686,0.275975,0.00341523,0.972309,0.643273,0.265686,0.236436,0.865396,0.387163,0.459885,0.0917007,0.41933,0.0126998,0.777105,0.427,0.73584,0.607074,0.155327,0.121234,0.6738,0.205427,0.657803,0.940078,0.376019,0.658243,0.590579,0.769514,0.562724,0.00795317,0.102552,0.357456,0.137613,0.253306,0.804511,0.247383,0.821577,0.038922,0.857021,0.0809201,0.121378,0.0908005,0.662063,0.218323,0.914465,0.264485,0.0663483,0.918715,0.488963,0.908492,0.744632,0.547984,0.662114,0.0575005,0.0916401,0.891065,0.771373,0.544636,0.495467,0.404593,0.215075,0.0541733,0.256478,0.733256,0.798729,0.583155,0.147411,0.164652,0.792059,0.97658,0.355809,0.458527,0.911941,0.23785,0.946784,0.0292577,0.0185073,0.466615,0.489642,0.520837,0.11617,0.852686,0.139546,0.471435,0.884476,0.760714,0.49988,0.596103,0.99019,0.313949,0.813113,0.286906,0.819291,0.504396,0.47935,0.446792,0.619183,0.635919,0.511888,0.580112,0.506005,0.892626,0.0307128,0.553589,0.255971,0.473173,0.223865,0.695379,0.748484,0.870929,0.684894,0.98044,0.700578,0.809212,0.446661,0.236583,0.0851818,0.432059,0.556703,0.540338,0.298745,0.673481,0.957161,0.564375,0.980938,0.808446,0.59494,0.971055,0.225032,0.663419,0.939595,0.984637,0.0203002,0.259545,0.550941,0.527839,0.358466,0.00282413,0.25497,0.915786,0.334049,0.898157,0.218961,0.863703,0.256518,0.147766,0.894754,0.662198,0.158333,0.49617,0.84458,0.773184,0.25767,0.111615,0.585013,0.268276,0.75162,0.783332,0.622119,0.374808,0.892006,0.494886,0.903005,0.586101,0.97229,0.00506419,0.328169,0.304745,0.508063,0.810661,0.540267,0.612145,0.185395,0.611545,0.9037,0.0549584,0.780688,0.105049,0.166104,0.419631,0.892727,0.267836,0.458154,0.399501,0.553454,0.0776715,0.643455,0.233537,0.465072,0.95401,0.927662,0.664109,0.233762,0.660639,0.319994,0.398038,0.344996,0.25441,0.93677,0.128066,0.362851,0.468109,0.823053,0.95011,0.675471,0.591967,0.875484,0.203047,0.297621,0.22689,0.942952,0.0127018,0.371446,0.286229,0.7633,0.804482,0.584312,0.411483,0.183538,0.554422,0.804508,0.0144677,0.376684,0.816119,0.766484,0.720214,0.352923,0.740646,0.871422,0.227468,0.0664507,0.132073,0.079487,0.299715,0.541929,0.72038,0.0289819,0.842843,0.760454,0.87816,0.291772,0.669104,0.249047,0.37832,0.484275,0.222596,0.188172,0.70458,0.764526,0.62004,0.867482,0.44946,0.245061,0.658785,0.782341,0.15641,0.549199,0.799489,0.12466,0.0145329,0.822715,0.941996,0.525304,0.278,0.654543,0.07399,0.164423,0.57102,0.543998,0.214161,0.179579,0.395183,0.992518,0.865113,0.0618504,0.163636,0.247893,0.742207,0.0175222,0.616755,0.882613,0.667913,0.110842,0.0326809,0.834503,0.267412,0.706337,0.947078,0.590512,0.65928,0.475321,0.00521445,0.458579,0.115603,0.106001,0.910414,0.376838,0.0375785,0.917256,0.065181,0.866575,0.755102,0.126417,0.332289,0.285595,0.0425107,0.0163878,0.462207,0.362718,0.434189,0.990052,0.28568,0.79757,0.449172,0.365974,0.464677,0.312183,0.438493,0.971201,0.291246,0.213449,0.202189,0.831897,0.0546114,0.392668,0.587868,0.696278,0.483207,0.705522,0.894757,0.375794,0.730271,0.445517,0.262638,0.410793,0.203614,0.275732,0.92798,0.692097,0.713638,0.234039,0.349709,0.991194,0.173675,0.872465,0.671969,0.700207,0.562576,0.0248562,0.150943,0.0404313,0.01354,0.561244,0.621493,0.449255,0.837542,0.561044,0.965138,0.543259,0.0369591,0.186066,0.404031,0.602698,0.712513,0.235558,0.511168,0.138651,0.228813,0.318447,0.308134,0.790979,0.121296,0.494475,0.361482,0.60034,0.583542,0.634384,0.406521,0.601011,0.961013,0.329137,0.0696297,0.909871,0.0937768,0.891648,0.892383,0.325637,0.596215,0.532556,0.125913,0.846703,0.865453,0.508572,0.57434,0.803898,0.998552,0.0732489,0.0547124,0.624471,0.222146,0.589978,0.0355453,0.352717,0.102915,0.835714,0.751944,0.790789,0.33492,0.664453,0.361926,0.962532,0.775524,0.116528,0.604871,0.844209,0.857934,0.936493,0.0221342,|0.352343,0.210272,0.435287,0.337926,0.0964483,0.390995,0.103694,0.477286,0.81688,0.913467,0.754047,0.123051,0.149927,0.438457,0.210227,0.767004,0.537159,0.246585,0.930917,0.0106234,0.0220823,0.319047,0.668304,0.248852,0.588373,0.0775601,0.813567,0.752935,0.466297,0.100019,0.173369,0.911309,0.168543,0.0970561,0.182263,0.864951,0.564448,0.458668,0.182951,0.996472,0.85908,0.367304,0.835028,0.867975,0.168003,0.133119,0.432753,0.532704,0.900438,0.721012,0.0777918,0.847343,0.893191,0.32039,0.818552,0.556045,0.733083,0.0734977,0.571049,0.105467,0.270849,0.367307,0.0858806,0.767398,0.579844,0.492853,0.954668,0.0592442,0.866131,0.683619,0.160193,0.937703,0.00762141,0.669642,0.788256,0.755449,0.239629,0.598107,0.191195,0.457738,0.927059,0.899017,0.563356,0.374943,0.310801,0.516357,0.62213,0.236484,0.898046,0.916726,0.245564,0.206744,0.745838,0.664846,0.0691403,0.643216,0.0865258,0.593586,0.354617,0.721439,0.671743,0.558182,0.282384,0.621301,0.757271,0.0861146,0.00174439,0.515736,0.855675,0.763783,0.250285,0.487442,0.690482,0.688005,0.00823218,0.304933,0.958703,0.590726,0.1926,0.711773,0.329333,0.848202,0.0701221,0.753254,0.13149,0.29915,0.529523,0.679698,0.332287,0.412553,0.877783,0.0548329,0.666743,0.257098,0.812307,0.0899925,0.905458,0.809484,0.455682,0.688664,0.644608,0.0650839,0.229766,0.371806,0.711619,0.549474,0.299756,0.183202,0.548501,0.813453,0.194012,0.640441,0.453249,0.993744,0.346082,0.673821,0.503664,0.51671,0.510837,0.239246,0.738831,0.301231,0.595694,0.742512,0.54436,0.298739,0.683231,0.927463,0.131961,0.701912,0.901175,0.0468754,0.645622,0.0149751,0.660721,0.164267,0.391646,0.41711,0.205241,0.361801,0.543906,0.289685,0.135172,0.0245928,0.729692,0.14106,0.759491,0.856145,0.0822415,0.00522035,0.673954,0.344994,0.334057,0.918878,0.725114,0.669862,0.637701,0.208769,0.703283,0.509065,0.819661,0.907498,0.0261498,0.500937,0.600456,0.450206,0.872842,0.879454,0.837096,0.181844,0.149171,0.254279,0.247989,0.00849742,0.188173,0.841862,0.155457,0.200773,0.658238,0.739312,0.40989,0.391797,0.931757,0.302553,0.813771,0.433056,0.402519,0.431283,0.897755,0.154947,0.591232,0.0140932,0.542101,0.22357,0.984368,0.893793,0.59376,0.353781,0.676588,0.218517,0.69842,0.405813,0.225945,0.0709845,0.132651,0.421355,0.914735,0.085144,0.621599,0.635238,0.184727,0.993531,0.25105,0.988772,0.439736,0.993378,0.468485,0.214519,0.336308,0.145154,0.112068,0.0753446,0.793681,0.584086,0.0766411,0.468841,0.89031,0.396073,0.811962,0.468999,0.388909,0.640636,0.747839,0.10905,0.304491,0.672404,0.322933,0.460382,0.36615,0.86395,0.963181,0.124011,0.453614,0.0829998,0.081329,0.41896,0.249408,0.620114,0.117316,0.937173,0.710705,0.723732,0.42097,0.207026,0.757483,0.907859,0.528039,0.476583,0.376561,0.0219522,0.881909,0.325541,0.310062,0.0350501,0.0723772,0.663254,0.565885,0.627164,0.484048,0.0831844,0.309545,0.285905,0.117496,0.639063,0.844776,0.0284706,0.286874,0.922971,0.143812,0.0492455,0.285612,0.732173,0.48262,0.487292,0.0205737,0.451547,0.413632,0.762566,0.554614,0.835048,0.246442,0.232499,0.0397133,0.0613076,0.228472,0.151204,0.990755,0.194449,0.088534,0.207089,0.0744785,0.469292,0.87902,0.0942446,0.475746,0.998115,0.223348,0.490324,0.644072,0.398828,0.390803,0.583026,0.328076,0.488574,0.063227,0.11732,0.82628,0.357629,0.533469,0.630763,0.230192,0.176661,0.0426324,0.380688,0.520292,0.862512,0.855505,0.717419,0.932583,0.744447,0.732786,0.231124,0.545868,0.794066,0.194681,0.78114,0.508949,0.0461857,0.968426,0.147258,0.772274,0.967073,0.000473976,0.113039,0.338883,0.513721,0.77675,0.601309,0.909673,0.0112746,0.525814,0.0736248,0.806375,0.51797,0.466505,0.9825,0.216677,0.0999624,0.589679,0.0280987,0.982071,0.836914,0.44001,0.786798,0.0314482,0.367844,0.352458,0.260832,0.921059,0.936633,0.0373961,0.646455,0.154518,0.734571,0.929129,0.792881,0.934361,0.269444,0.855499,0.638056,0.635521,0.41124,0.756641,0.911978,0.207992,0.747341,0.478323,0.278678,0.501923,0.0124187,0.261249,0.232554,0.330588,0.174173,0.555789,0.60834,0.980387,0.878678,0.114475,0.279497,0.559473,0.95344,0.930321,0.245303,0.185423,0.0116718,0.574983,0.397517,0.628633,0.898458,0.25725,0.853399,0.270041,0.765837,0.722732,0.245134,0.879225,0.327274,0.779002,0.548108,0.439427,0.82743,0.557461,0.894458,0.875611,0.53976,0.479898,0.883422,0.0449944,0.821059,0.844702,0.0537613,0.344828,0.359644,0.559592,0.248254,0.106165,0.394928,0.568919,0.375901,0.0887163,0.128774,0.565172,0.463192,0.990137,0.256719,0.859191,0.509899,0.891512,0.0919802,0.843315,0.558083,0.6336,0.105482,0.977439,0.660306,0.0289122,0.196575,0.776868,0.640215,0.292238,0.0499349,0.400554,0.179624,0.139107,0.921461,0.597503,0.141194,0.135394,0.616711,0.323964,0.652637,0.131219,0.119883,0.600333,0.234285,0.760294,0.205611,0.552753,0.767536,0.957434,0.418303,0.061436,0.283442,0.549203,0.674031,0.741738,0.775729,0.526536,0.136501,0.15879,0.54176,0.764531,0.744728,0.0569935,0.0594262,0.367131,0.994537,0.880122,0.397658,0.304733,0.234107,0.0877349,0.393761,0.586202,0.665038,0.268472,0.39036,0.407225,0.655212,0.104132,0.757692,0.986122,0.578976,0.704412,0.118399,0.0515573,0.992044,0.153422,0.869698,0.41257,0.132465,0.133929,0.105589,0.197395,0.332849,0.650479,0.984362,0.97778,0.443984,0.191228,0.152301,0.614873,0.873657,0.304621,0.181629,0.949964,0.714889,0.397961,0.556782,0.110859,0.952427,0.109253,0.132077,0.915308,0.211509,0.732107,0.649896,0.0291598,0.301176,0.923086,0.956698,0.920731,0.867668,0.943281,0.243919,0.420995,0.714489,0.0408863,0.596767,0.415428,0.138929,0.154676,0.752073,0.573703,0.38181,0.991779,0.96809,0.936803,0.262467,0.258002,0.806368,0.718471,0.716848,0.213961,0.470853,0.853766,0.620117,0.812228,0.964021,0.453443,0.302163,0.832787,0.833379,0.00177133,0.311383,0.614868,0.324797,0.0192045,0.740355,0.560722,0.75569,0.361604,0.921171,0.677479,0.909766,0.0855634,0.598923,0.13771,0.293676,0.221041,0.257719,0.557566,0.273791,0.933788,0.896276,0.411669,0.845475,0.0306709,0.443077,0.706397,0.0474335,0.0539761,0.957858,0.756209,0.821595,0.14143,0.237166,0.924925,0.999854,0.901166,0.545285,0.540602,0.477223,0.128371,0.25761,0.993945,0.132409,0.212472,0.235412,0.889008,0.336129,0.859712,0.587395,0.652423,0.071636,0.460945,0.826653,0.491214,0.431918,0.0119942,0.762218,0.141787,0.546449,0.248861,0.19567,0.142895,0.26913,0.86178,0.657798,0.213611,0.773969,0.956105,0.582729,0.83304,0.497889,0.470168,0.221473,0.621675,0.454558,0.347606,0.73042,0.567653,0.244471,0.428293,0.226807,0.270598,0.193783,0.905253,0.277978,0.383376,0.243749,0.327475,0.411027,0.274148,0.45254,0.2167,0.972337,0.687439,0.255343,0.374948,0.959975,0.109432,0.590941,0.976641,0.375904,0.209782,0.951247,0.100363,0.503407,0.477586,0.600904,0.795561,0.732596,0.0324546,0.66051,0.702288,0.399976,0.91505,0.301511,0.136809,0.363556,0.494593,0.248183,0.906288,0.377041,0.686505,0.607703,0.0062229,0.0459514,0.647969,0.00450063,0.68186,0.527003,0.402464,0.343337,0.931628,0.554854,0.885006,0.132992,0.852737,0.271632,0.658575,0.484529,0.528944,0.956319,0.541922,0.809416,0.892017,0.530266,0.879065,0.834392,0.503975,0.60902,0.44804,0.0275907,0.626593,0.426162,0.850456,0.785418,0.168149,0.285249,0.441691,0.70724,0.0348346,0.70007,0.59198,0.628161,0.921361,0.0208769,0.719021,0.621332,0.0191039,0.48359,0.856827,0.314915,0.86583,0.446535,0.283901,0.22056,0.0472496,0.082619,0.174314,0.258826,0.603592,0.423451,0.760977,0.703361,0.0253139,0.900344,0.123229,0.930158,0.837438,0.724872,0.855002,0.30269,0.507423,0.546126,0.104008,0.162798,0.781866,0.810366,0.762204,0.110538,0.602114,0.629632,0.591678,0.600425,0.71155,0.557042,0.993625,0.0304068,0.732934,0.118353,0.178428,0.666452,0.66581,0.386513,0.89588,0.832269,0.0848191,0.574875,0.461018,0.173215,0.665871,0.652407,0.213618,0.800687,0.642572,0.273031,0.309446,0.771751,0.828482,0.520055,0.882903,0.0572078,0.0646198,0.726534,0.937362,0.445299,0.663466,0.878772,0.658263,0.629459,0.536698,0.536195,0.138014,0.734521,0.287585,0.8688,0.40586,0.90342,0.863741,0.250462,0.714638,0.754743,0.489427,0.0330245,0.645464,0.699426,0.900997,0.00959134,0.198563,0.813352,0.711523,0.343382,0.324208,0.858263,0.405821,0.688652,0.723686,0.995056,0.483534,0.874712,0.187903,0.471237,0.077046,0.89256,0.780337,0.960288,0.794108,0.569256,0.473823,0.300619,0.967367,0.555104,0.911546,0.412968,0.887352,0.742336,0.523186,0.560711,0.438259,0.252868,0.112084,0.49742,0.30354,0.657903,0.950911,0.205327,0.0408471,0.90644,0.782025,0.842157,0.0784874,0.69491,0.459736,0.325284,0.091772,0.890129,0.59762,0.419685,0.966874,0.359275,0.205393,0.974128,0.181309,0.154215,0.36045,0.372485,0.135565,0.516467,0.890324,0.38659,0.577631,0.915928,0.44271,0.607405,0.78733,0.624338,0.635694,0.838717,0.255297,0.55289,0.619304,0.103122,0.745509,0.487154,0.0360831,0.584262,0.075532,0.758607,0.033478,0.835042,0.484785,0.520502,0.250568,0.540495,0.105067,0.845563,0.826621,0.0638393,0.694358,0.534315,0.834096,0.586259,0.445709,0.552785,0.249041,0.427288,0.26084,0.29332,0.101569,0.735316,0.923355,0.0349199,0.756847,0.292112,0.847517,0.517963,0.807698,0.0868984,0.160703,0.351168,0.883227,0.378224,0.535021,0.293847,0.0309083,0.647493,|0.69879,0.623142,0.919356,0.272077,0.380321,0.0952901,0.817264,0.931538,0.441009,0.983681,0.853256,0.416822,0.511238,0.465059,0.514522,0.084305,0.902662,0.69228,0.162941,0.227545,0.248018,0.986369,0.123627,0.453937,0.332904,0.84085,0.684678,0.901766,0.206323,0.0590209,0.408011,0.661876,0.821585,0.755447,0.482917,0.667263,0.281931,0.259585,0.0487055,0.673815,0.751919,0.253212,0.563642,0.314007,0.606395,0.976617,0.956392,0.754673,0.715458,0.419214,0.60795,0.207238,0.729433,0.174122,0.029951,0.519225,0.96634,0.246707,0.493246,0.684735,0.308337,0.803129,0.727507,0.159187,0.842759,0.973015,0.133275,0.0160429,0.500619,0.0237823,0.623619,0.0474476,0.771363,0.759035,0.624752,0.037611,0.440899,0.774173,0.66637,0.429006,0.541233,0.975805,0.509315,0.781466,0.940264,0.490179,0.781483,0.841231,0.190393,0.307955,0.0272507,0.153312,0.103697,0.300386,0.0868433,0.777665,0.162223,0.717059,0.705428,0.172632,0.871031,0.266829,0.807129,0.401017,0.975107,0.0931841,0.120747,0.318712,0.600519,0.0162349,0.967005,0.248621,0.353281,0.55295,0.174519,0.955375,0.123972,0.350527,0.610418,0.37424,0.403567,0.905106,0.0044679,0.979997,0.838868,0.753034,0.145624,0.611694,0.406045,0.109583,0.113549,0.996571,0.619307,0.0941334,0.322686,0.56945,0.478878,0.360239,0.0490891,0.474481,0.659045,0.614803,0.0888308,0.480475,0.690055,0.965812,0.879966,0.838826,0.0522208,0.137171,0.481346,0.493022,0.754103,0.909278,0.55369,0.50157,0.904704,0.702043,0.148373,0.257967,0.709941,0.0713255,0.372259,0.6385,0.0315225,0.660963,0.338975,0.988243,0.806932,0.161294,0.812081,0.241797,0.29557,0.4693,0.0811956,0.381901,0.644435,0.378738,0.138905,0.0320867,0.922148,0.222279,0.644788,0.0272601,0.170544,0.764424,0.750969,0.551757,0.937646,0.357177,0.85235,0.675693,0.0849612,0.468216,0.958769,0.152217,0.459338,0.859013,0.585071,0.00425571,0.766677,0.710493,0.951174,0.0117778,0.190451,0.242014,0.976712,0.74539,0.260113,0.65478,0.194841,0.12083,0.0820532,0.36639,0.510882,0.247315,0.601208,0.0637745,0.930649,0.254871,0.219356,0.70876,0.656461,0.620416,0.987448,0.675069,0.962754,0.609389,0.948756,0.963955,0.192841,0.933381,0.932783,0.254391,0.153723,0.705132,0.202813,0.846939,0.170824,0.937907,0.398541,0.0669634,0.980138,0.474663,0.283949,0.511999,0.0968593,0.0734798,0.739306,0.2354,0.339025,0.600673,0.196321,0.307802,0.687383,0.474808,0.91677,0.768155,0.514577,0.600727,0.436491,0.885888,0.904261,0.646912,0.256259,0.703138,0.681136,0.429045,0.305927,0.280774,0.71551,0.619329,0.254171,0.834265,0.927356,0.568326,0.317548,0.359974,0.646229,0.405408,0.18661,0.398693,0.211626,0.874787,0.623647,0.0278572,0.0632378,0.396959,0.38951,0.585701,0.563667,0.716058,0.612458,0.212328,0.925422,0.949987,0.54332,0.56633,0.608912,0.267631,0.0534882,0.320727,0.277844,0.258502,0.860636,0.193035,0.0339935,0.833582,0.610769,0.494383,0.481006,0.834072,0.349566,0.889992,0.449421,0.933712,0.411147,0.132609,0.575567,0.527463,0.773707,0.134946,0.84238,0.042752,0.307415,0.874178,0.763514,0.637418,0.429518,0.847525,0.400087,0.484519,0.98474,0.283671,0.0064019,0.565379,0.1479,0.952049,0.537366,0.804557,0.0552827,0.746417,0.95095,0.129929,0.402054,0.993977,0.187398,0.433437,0.438677,0.935662,0.785976,0.326306,0.250228,0.924144,0.30031,0.036347,0.0132789,0.221124,0.751899,0.71373,0.869926,0.648041,0.380381,0.0494661,0.996279,0.718699,0.60922,0.446367,0.859598,0.285622,0.834788,0.272717,0.360477,0.0531654,0.899719,0.300816,0.734751,0.860416,0.197204,0.537419,0.996435,0.214488,0.590056,0.578283,0.206796,0.648698,0.260141,0.289278,0.517169,0.775357,0.0464704,0.0212665,0.544624,0.0427072,0.570183,0.788246,0.92416,0.776803,0.506438,0.511883,0.238587,0.855582,0.592553,0.0956376,0.897038,0.244898,0.741471,0.792176,0.821945,0.940601,0.317866,0.161397,0.492472,0.781321,0.896202,0.757243,0.118987,0.273413,0.949761,0.965495,0.403785,0.767231,0.467846,0.372501,0.987838,0.97656,0.769609,0.797751,0.996381,0.253624,0.716314,0.0837651,0.837801,0.651872,0.13381,0.358729,0.493269,0.315039,0.103111,0.922978,0.804674,0.274768,0.48156,0.0787009,0.306872,0.589829,0.498638,0.199296,0.997405,0.414009,0.921197,0.20931,0.525088,0.554354,0.9282,0.587672,0.581311,0.69014,0.756807,0.493068,0.950492,0.729498,0.00553292,0.312391,0.655716,0.89082,0.771183,0.474557,0.308932,0.258855,0.0292237,0.867024,0.812855,0.611006,0.928081,0.299859,0.662355,0.436166,0.103258,0.625986,0.379666,0.645212,0.463153,0.966213,0.0936646,0.500526,0.248249,0.638614,0.0391005,0.602623,0.899644,0.394777,0.345852,0.252691,0.0170162,0.690162,0.64434,0.908255,0.880071,0.500901,0.0658912,0.707106,0.959945,0.822789,0.557579,0.0401812,0.460031,0.0963119,0.900982,0.580245,0.248741,0.436185,0.68905,0.716835,0.278524,0.405529,0.754944,0.130872,0.958883,0.189904,0.282602,0.637254,0.903859,0.998455,0.0312358,0.4422,0.370379,0.821043,0.342566,0.687485,0.137638,0.0325945,0.737706,0.0997455,0.461184,0.459183,0.0725104,0.129805,0.66687,0.811566,0.668675,0.178256,0.556568,0.0797677,0.528341,0.718974,0.0632897,0.497523,0.972766,0.222731,0.246638,0.969706,0.585433,0.983485,0.6571,0.238197,0.654656,0.675107,0.0697723,0.67274,0.603943,0.0946178,0.692511,0.800828,0.879409,0.779694,0.650484,0.433549,0.199891,0.137947,0.142172,0.0180438,0.575381,0.250214,0.221116,0.614139,0.292904,0.141974,0.179088,0.251086,0.730188,0.0510235,0.692633,0.315866,0.524408,0.606271,0.756798,0.371165,0.180023,0.935631,0.957938,0.425949,0.0633944,0.0650047,0.320002,0.108522,0.0398201,0.476846,0.364502,0.240001,0.24504,0.616329,0.724291,0.342548,0.6125,0.956337,0.937748,0.476941,0.69997,0.222903,0.835982,0.635875,0.516976,0.796512,0.00461614,0.0395769,0.442255,0.958295,0.703167,0.135109,0.395925,0.565202,0.823327,0.144113,0.407674,0.428785,0.369127,0.397069,0.434533,0.567319,0.39393,0.586784,0.774052,0.514713,0.879233,0.0838335,0.455161,0.241857,0.0162455,0.711911,0.171965,0.322069,0.0490439,0.394946,0.117322,0.585724,0.753733,0.0617133,0.263703,0.0882414,0.716619,0.556191,0.28651,0.707035,0.518924,0.606153,0.867085,0.434081,0.175485,0.0379908,0.68735,0.0184972,0.311133,0.459983,0.107329,0.73861,0.126873,0.654485,0.527851,0.905113,0.45236,0.582324,0.442447,0.160796,0.593141,0.4517,0.113433,0.190295,0.0168816,0.937115,0.992672,0.538893,0.975218,0.419777,0.928739,0.478515,0.142208,0.848761,0.536908,0.549304,0.393942,0.939884,0.294401,0.0167841,0.47626,0.61488,0.80635,0.351027,0.51258,0.465955,0.95725,0.0309149,0.737618,0.219031,0.731433,0.354949,0.838839,0.139822,0.84834,0.404477,0.126015,0.742226,0.0883664,0.38445,0.857057,0.387091,0.252266,0.754773,0.482748,0.177003,0.99411,0.886608,0.600192,0.50105,0.504534,0.472617,0.876996,0.274567,0.602014,0.175783,0.0953981,0.457603,0.513893,0.78244,0.816873,0.961835,0.880801,0.363295,0.649961,0.528036,0.35393,0.503,0.035314,0.818189,0.18423,0.537064,0.374069,0.403491,0.0930105,0.933967,0.561257,0.592069,0.997575,0.0630073,0.548431,0.600029,0.846905,0.297599,0.727842,0.225676,0.426483,0.484288,0.825657,0.200572,0.0990248,0.164604,0.724073,0.59038,0.218046,0.83957,0.713262,0.279868,0.881856,0.572231,0.234057,0.0336585,0.254995,0.232004,0.196825,0.731896,0.627207,0.269885,0.908575,0.132292,0.15705,0.547228,0.239883,0.152439,0.903852,0.557318,0.672841,0.465307,0.806023,0.597374,0.60319,0.33498,0.662744,0.687356,0.762478,0.34229,0.00898641,0.932155,0.413966,0.824065,0.730858,0.237135,0.406929,0.333767,0.673235,0.615759,0.291654,0.649845,0.679227,0.389837,0.577385,0.732023,0.0119901,0.932346,0.0443329,0.860793,0.938284,0.163855,0.905961,0.407003,0.831455,0.640179,0.767094,0.995152,0.466418,0.219627,0.801027,0.360206,0.534163,0.084989,0.155316,0.700761,0.573358,0.650174,0.891077,0.971008,0.525235,0.84471,0.576262,0.240411,0.844148,0.042334,0.395516,0.922027,0.408614,0.577441,0.222495,0.0386437,0.302986,0.343103,0.559461,0.413516,0.428927,0.899789,0.997269,0.532957,0.389263,0.00491607,0.769034,0.93414,0.328473,0.923985,0.812529,0.16368,0.79367,0.677214,0.512563,0.896254,0.95841,0.486706,0.621971,0.906822,0.786582,0.100449,0.0304651,0.185615,0.387259,0.404664,0.737303,0.330584,0.0154791,0.157978,0.955672,0.267024,0.833179,0.223348,0.984099,0.126987,0.540294,0.82841,0.419478,0.925613,0.25831,0.564818,0.538785,0.210244,0.450509,0.502366,0.470852,0.708,0.457361,0.40144,0.423472,0.462452,0.474244,0.0358427,0.469902,0.421587,0.0631008,0.909419,0.293888,0.38629,0.846448,0.41,0.373703,0.921221,0.0799124,0.921734,0.199117,0.275175,0.918246,0.411386,0.207275,0.545672,0.472794,0.819034,0.674567,0.572096,0.310786,0.460109,0.359684,0.79777,0.865537,0.763523,0.0848894,0.204279,0.170587,0.98816,0.757308,0.468592,0.567999,0.266613,0.219732,0.52647,0.651263,0.527792,0.405683,0.347793,0.496612,0.310289,0.280226,0.933604,0.398649,0.368706,0.52809,0.856376,0.184094,0.166267,0.690445,0.202346,0.0140702,0.193336,0.525541,0.39293,0.163129,0.840246,0.330031,0.656569,0.475115,0.592911,0.0767933,0.685741,0.557646,0.0287958,0.144042,0.0875946,0.194807,0.558277,0.391128,0.186346,0.280253,0.331746,0.33004,0.158056,0.0920848,0.541173,0.92916,0.810371,0.730247,0.85599,0.121203,0.386159,0.0938298,0.668804,0.333401,0.665248,|0.316804,0.611457,0.182438,0.856026,0.747715,0.92437,0.639656,0.463839,0.100699,0.57515,0.388228,0.844409,0.936496,0.374906,0.304942,0.900381,0.968911,0.992921,0.129185,0.756948,0.61914,0.560758,0.275882,0.0997911,0.93428,0.574127,0.496946,0.405173,0.455559,0.638659,0.68644,0.606497,0.721698,0.569404,0.618852,0.395004,0.315549,0.904125,0.486007,0.685774,0.940903,0.194656,0.555048,0.277276,0.918161,0.208407,0.417973,0.907251,0.205457,0.0526162,0.507139,0.181658,0.74571,0.635643,0.77295,0.331906,0.955936,0.48637,0.365041,0.167586,0.829805,0.263203,0.455043,0.475625,0.530243,0.354767,0.983528,0.285114,0.798462,0.527291,0.0831751,0.320786,0.857151,0.2952,0.918149,0.311185,0.987173,0.498335,0.65766,0.717371,0.619199,0.769687,0.365231,0.0310459,0.0455287,0.830364,0.846646,0.98686,0.488001,0.00130653,0.220239,0.861669,0.728047,0.710466,0.879859,0.679574,0.673489,0.424812,0.448556,0.0409571,0.961035,0.130464,0.457259,0.961646,0.927434,0.105837,0.628641,0.650788,0.090161,0.387216,0.44778,0.334681,0.856073,0.0302463,0.810248,0.454948,0.103413,0.28543,0.620869,0.779575,0.381186,0.689302,0.473895,0.705978,0.522436,0.754885,0.563123,0.145838,0.334406,0.639078,0.852576,0.465465,0.13658,0.436978,0.791591,0.0801085,0.098152,0.947761,0.0137629,0.226129,0.423974,0.657768,0.668225,0.61379,0.564996,0.244209,0.470577,0.349615,0.997548,0.718941,0.160452,0.286429,0.0367677,0.296554,0.0591202,0.274718,0.792238,0.30788,0.818812,0.119833,0.766682,0.184102,0.199986,0.222296,0.924415,0.522982,0.0707625,0.402252,0.880305,0.555668,0.923249,0.786707,0.923288,0.695482,0.481205,0.0690416,0.994349,0.189014,0.625154,0.524952,0.733229,0.325017,0.217983,0.618453,0.228635,0.778258,0.322319,0.552446,0.928103,0.382892,0.536009,0.0786289,0.304035,0.951425,0.224479,0.943231,0.681561,0.536336,0.656172,0.337843,0.263136,0.0364147,0.683949,0.936244,0.864,0.896312,0.145992,0.715133,0.158413,0.733247,0.142887,0.385902,0.195933,0.966034,0.960723,0.13869,0.528988,0.193241,0.042986,0.740583,0.201717,0.893964,0.572973,0.864061,0.23465,0.999405,0.918658,0.578026,0.969106,0.647845,0.263793,0.78873,0.935795,0.982359,0.143401,0.332564,0.365477,0.515909,0.777043,0.16232,0.13733,0.866817,0.461501,0.860492,0.557103,0.557483,0.524755,0.959489,0.791422,0.0206562,0.840106,0.819637,0.234761,0.787938,0.133228,0.440362,0.175264,0.34825,0.932827,0.151179,0.264913,0.101481,0.363681,0.968996,0.373535,0.537167,0.0917512,0.427009,0.047605,0.230154,0.674566,0.232617,0.0142608,0.410831,0.656783,0.553553,0.694648,0.662293,0.564232,0.846402,0.52297,0.577011,0.938005,0.0570425,0.661679,0.120573,0.122164,0.901684,0.995513,0.437796,0.552917,0.690871,0.639934,0.720873,0.661519,0.932495,0.387992,0.345139,0.332482,0.341767,0.93282,0.196337,0.5428,0.421819,0.172694,0.514628,0.0179687,0.624783,0.219481,0.53125,0.442937,0.0212755,0.137076,0.529006,0.834405,0.824293,0.896605,0.112101,0.225628,0.423871,0.602871,0.38675,0.730996,0.453237,0.00492293,0.497543,0.483014,0.451873,0.669325,0.223631,0.590104,0.652109,0.0628433,0.549908,0.905534,0.905851,0.313494,0.102954,0.345816,0.438731,0.154869,0.395811,0.853361,0.707618,0.499968,0.838423,0.0721239,0.15988,0.647425,0.589829,0.0858774,0.830228,0.802268,0.264657,0.333563,0.194889,0.870854,0.354466,0.325444,0.519467,0.723889,0.91988,0.205655,0.682032,0.494918,0.0473946,0.931075,0.138364,0.51139,0.951562,0.920672,0.179225,0.749571,0.507568,0.910798,0.000598907,0.0538208,0.587437,0.855518,0.951601,0.85951,0.86199,0.969965,0.396572,0.902092,0.305403,0.449046,0.833714,0.534025,0.262594,0.67414,0.735866,0.0673158,0.0259057,0.743243,0.936884,0.511225,0.496924,0.0316526,0.491301,0.539812,0.71531,0.259236,0.192168,0.7055,0.427751,0.527144,0.736837,0.805127,0.838507,0.327977,0.2663,0.176139,0.556755,0.776996,0.602256,0.853987,0.734102,0.286719,0.790667,0.916058,0.323827,0.670557,0.0852888,0.0740975,0.474065,0.16361,0.943706,0.354859,0.485731,0.161764,0.299392,0.192396,0.199375,0.00618845,0.651427,0.516429,0.164529,0.168247,0.951011,0.690144,0.357014,0.728234,0.0257152,0.749844,0.870147,0.958398,0.908853,0.914408,0.75275,0.698497,0.318936,0.852859,0.00249356,0.605698,0.801838,0.13076,0.787367,0.788499,0.922967,0.548399,0.730689,0.306294,0.0209237,0.189629,0.179985,0.441585,0.124965,0.446053,0.582872,0.514734,0.647282,0.399102,0.869826,0.529333,0.416842,0.450901,0.575797,0.444641,0.347958,0.989721,0.297275,0.182914,0.609809,0.612064,0.220599,0.347744,0.686058,0.0789375,0.396776,0.0494613,0.951378,0.219242,0.42305,0.990919,0.944983,0.204506,0.860626,0.480866,0.548001,0.233612,0.838167,0.268781,0.225818,0.283421,0.785115,0.738589,0.12736,0.768379,0.732308,0.619898,0.102927,0.0485288,0.725157,0.793097,0.375988,0.760231,0.848605,0.231855,0.873545,0.32513,0.284569,0.557318,0.250508,0.498791,0.854153,0.452436,0.579987,0.628805,0.47885,0.128801,0.813139,0.392574,0.376198,0.192944,0.431175,0.336496,0.25265,0.466963,0.975718,0.570475,0.247322,0.877788,0.850679,0.163704,0.756545,0.978222,0.555404,0.0199186,0.2187,0.355771,0.421277,0.0582626,0.500289,0.0178044,0.474614,0.130973,0.659127,0.299227,0.570119,0.817185,0.140155,0.648627,0.892304,0.987555,0.612426,0.720484,0.152556,0.640632,0.476643,0.147271,0.28605,0.432048,0.62123,0.982923,0.270979,0.23389,0.525168,0.572487,0.754854,0.383054,0.870124,0.805571,0.624433,0.273034,0.251599,0.016922,0.103198,0.898048,0.256742,0.156952,0.348154,0.00189114,0.900772,0.55692,0.0789575,0.291956,0.973726,0.723854,0.747744,0.229533,0.350183,0.820453,0.94145,0.350778,0.869318,0.126377,0.98257,0.294509,0.052037,0.807772,0.201091,0.644881,0.0138917,0.640357,0.855711,0.347959,0.461461,0.51838,0.01015,0.70453,0.322992,0.628907,0.389681,0.317273,0.279547,0.656689,0.925147,0.55483,0.87609,0.461617,0.183396,0.667703,0.732127,0.72862,0.489789,0.888467,0.702475,0.421676,0.920976,0.633653,0.0745575,0.898845,0.881689,0.669312,0.807528,0.156329,0.461018,0.88063,0.298538,0.435636,0.580925,0.541678,0.167874,0.802207,0.566794,0.50624,0.102454,0.828671,0.963665,0.627306,0.304511,0.050523,0.0382637,0.12552,0.7432,0.0379817,0.524627,0.886003,0.8092,0.902808,0.0833628,0.822182,0.810308,0.739044,0.977066,0.750784,0.572885,0.763349,0.719625,0.285461,0.765731,0.911158,0.218902,0.135943,0.400356,0.617169,0.064649,0.227188,0.818262,0.561485,0.892822,0.538008,0.126461,0.341674,0.988742,0.587979,0.783479,0.616472,0.603186,0.964436,0.144975,0.0378437,0.494691,0.957216,0.740328,0.395825,0.0160549,0.267165,0.317157,0.575081,0.971071,0.710653,0.039412,0.404677,0.397211,0.967107,0.700395,0.30043,0.371556,0.765443,0.99897,0.942195,0.505283,0.867369,0.371858,0.121013,0.876731,0.113025,0.131127,0.535875,0.0921278,0.607367,0.607768,0.622829,0.0382258,0.66039,0.233211,0.12282,0.0985968,0.416539,0.703463,0.279076,0.409563,0.185355,0.160998,0.108633,0.728443,0.0195712,0.417859,0.597626,0.335712,0.648684,0.202149,0.883229,0.378233,0.875078,0.535821,0.319251,0.599223,0.575285,0.459187,0.306671,0.658655,0.909687,0.842855,0.630242,0.972279,0.0204747,0.151737,0.1968,0.682494,0.526179,0.815753,0.401666,0.157151,0.530472,0.651599,0.896508,0.820105,0.208073,0.92818,0.381294,0.683221,0.380418,0.114647,0.432917,0.301722,0.508979,0.512366,0.336122,0.02588,0.00549263,0.723751,0.465947,0.142207,0.734594,0.634986,0.593376,0.248899,0.013912,0.80758,0.378956,0.75708,0.549094,0.484132,0.869024,0.97712,0.0663729,0.173152,0.0998293,0.701377,0.107226,0.451679,0.789848,0.424408,0.581784,0.567449,0.876976,0.332042,0.747534,0.621941,0.520574,0.684076,0.805909,0.0111822,0.389993,0.670041,0.317899,0.906911,0.197118,0.877294,0.809977,0.701128,0.517129,0.00528389,0.232448,0.553326,0.380031,0.413949,0.178488,0.038355,0.972864,0.919152,0.974801,0.433691,0.484832,0.393503,0.56536,0.20233,0.081198,0.649752,0.476494,0.612803,0.376147,0.494253,0.548555,0.94981,0.00918514,0.293575,0.886912,0.862478,0.0083133,0.994308,0.232503,0.246036,0.638545,0.587646,0.567621,0.564308,0.239705,0.392363,0.507902,0.0824229,0.758582,0.216511,0.0868116,0.20712,0.402017,0.805089,0.270453,0.743571,0.646492,0.0578921,0.0296055,0.600808,0.592817,0.371713,0.11282,0.493899,0.636111,0.789424,0.569198,0.00357568,0.00677848,0.979902,0.417304,0.111739,0.229466,0.909388,0.15002,0.380417,0.344517,0.370547,0.569389,0.915009,0.0857167,0.29006,0.0411125,0.355343,0.708701,0.292125,0.0949573,0.298374,0.241477,0.249846,0.847217,0.697508,0.410678,0.0177622,0.241239,0.127471,0.488296,0.235823,0.447394,0.98569,0.491004,0.924447,0.293622,0.126622,0.112555,0.151494,0.564826,0.376482,0.289355,0.102853,0.687407,0.858769,0.981586,0.0848857,0.816205,0.5919,0.527231,0.520713,0.758614,0.633748,0.354208,0.932841,0.307266,0.616969,0.430864,0.524568,0.0650511,0.147639,0.120189,0.616545,0.313069,0.0765047,0.09739,0.639578,0.890352,0.983501,0.937209,0.113359,0.557639,0.0353732,0.782237,0.338946,0.844382,0.186013,0.393405,0.786726,0.525867,0.777033,0.00450146,0.246385,0.178151,0.00995767,0.0933585,0.876239,0.646315,0.857138,0.457608,0.643074,0.715861,0.266224,0.805409,0.583161,0.00260317,0.837159,0.516676,0.875285,0.296624,0.983138,0.0863382,0.0266578,0.276072,0.222725,0.231277,0.608591,|0.829793,0.0305299,0.522258,0.201502,0.854751,0.762872,0.181783,0.632064,0.5337,0.246603,0.373997,0.598542,0.73495,0.76005,0.131153,0.276709,0.274834,0.144618,0.817055,0.212604,0.535451,0.616016,0.993674,0.730506,0.228413,0.412102,0.942666,0.530928,0.914686,0.607444,0.489047,0.80794,0.187794,0.909097,0.244981,0.537936,0.746933,0.378766,0.727227,0.558987,0.938052,0.35186,0.554957,0.646273,0.0157248,0.740112,0.834672,0.30296,0.719899,0.637919,0.355188,0.344258,0.0695969,0.523288,0.156556,0.712247,0.933791,0.121948,0.194783,0.129169,0.363551,0.481154,0.943354,0.0659048,0.770462,0.365423,0.582414,0.265726,0.554373,0.293198,0.109665,0.637874,0.0394361,0.399783,0.398216,0.085514,0.192357,0.475533,0.325577,0.358986,0.120382,0.360622,0.845047,0.28255,0.945517,0.179597,0.187895,0.567568,0.177237,0.989275,0.301772,0.541248,0.10621,0.571636,0.952778,0.455295,0.697468,0.432793,0.152029,0.820547,0.88368,0.255072,0.732296,0.603663,0.608248,0.79302,0.461918,0.303757,0.882745,0.340284,0.697909,0.510013,0.887289,0.862618,0.231446,0.321662,0.693786,0.431849,0.470423,0.477458,0.0434223,0.330184,0.375301,0.358355,0.800485,0.872759,0.408597,0.9818,0.790905,0.692877,0.110202,0.963599,0.644304,0.0194489,0.834545,0.268954,0.989526,0.0768369,0.319181,0.232094,0.637864,0.36501,0.563218,0.956253,0.411913,0.189291,0.880992,0.46177,0.624481,0.611523,0.052488,0.616105,0.705598,0.634077,0.871884,0.230925,0.430203,0.350889,0.581158,0.97133,0.376101,0.25596,0.308449,0.291235,0.217795,0.486594,0.810674,0.64183,0.999707,0.41127,0.282275,0.667889,0.255946,0.784085,0.0933686,0.33066,0.0297531,0.685383,0.259694,0.635126,0.518499,0.114824,0.224021,0.980335,0.392792,0.655501,0.126708,0.153343,0.327769,0.243358,0.14117,0.691815,0.609455,0.430333,0.312369,0.404472,0.902026,0.22089,0.938074,0.217659,0.420254,0.465832,0.0435423,0.135927,0.0825094,0.656532,0.238267,0.0139746,0.0479831,0.857161,0.452582,0.0954682,0.760909,0.00106192,0.934491,0.930336,0.289095,0.984673,0.878823,0.736113,0.464464,0.845026,0.704261,0.445938,0.486518,0.947731,0.449311,0.640555,0.893079,0.199437,0.54828,0.37845,0.0163298,0.0413678,0.628944,0.699126,0.308482,0.259798,0.478553,0.750535,0.44693,0.0604697,0.608146,0.708777,0.807229,0.330889,0.643352,0.497079,0.422045,0.302985,0.0624675,0.202284,0.835618,0.666554,0.254598,0.841766,0.59184,0.248336,0.185556,0.775187,0.488673,0.959851,0.105457,0.670078,0.430208,0.950627,0.235378,0.666899,0.116525,0.0493899,0.993184,0.932468,0.265364,0.978725,0.125625,0.920774,0.549628,0.0454388,0.77772,0.305451,0.482195,0.105924,0.461147,0.268224,0.296483,0.086399,0.605929,0.508769,0.929398,0.588605,0.249219,0.215085,0.0966443,0.128181,0.0919669,0.0263196,0.30018,0.473965,0.748667,0.649205,0.227824,0.119316,0.593529,0.539702,0.977333,0.0523333,0.222716,0.583852,0.775427,0.88091,0.472696,0.614975,0.338615,0.891854,0.569472,0.343784,0.573105,0.182355,0.355513,0.164913,0.900655,0.191885,0.650253,0.468521,0.707152,0.569625,0.345903,0.749647,0.910066,0.50103,0.577291,0.148637,0.628279,0.642988,0.424007,0.993645,0.515299,0.105763,0.541568,0.876672,0.742821,0.882135,0.309368,0.0839881,0.357409,0.0386972,0.176094,0.340014,0.245246,0.0774555,0.368993,0.767027,0.86209,0.849946,0.768113,0.656748,0.0229037,0.165288,0.489051,0.797221,0.847551,0.0203626,0.416024,0.604096,0.317462,0.643163,0.855716,0.41876,0.765641,0.151079,0.535165,0.510954,0.662942,0.715162,0.647647,0.717867,0.0843064,0.688652,0.0687451,0.30569,0.766769,0.451632,0.788273,0.828045,0.505552,0.727526,0.650974,0.0309143,0.783582,0.504291,0.777385,0.173431,0.044986,0.042705,0.986461,0.49969,0.383707,0.07895,0.749219,0.355256,0.615562,0.310696,0.781093,0.167286,0.624049,0.173918,0.202386,0.761176,0.61594,0.18641,0.500191,0.71098,0.306593,0.812997,0.0960822,0.41415,0.730798,0.182159,0.337296,0.707636,0.563593,0.0468944,0.276976,0.0823184,0.456059,0.353926,0.943238,0.0642807,0.868029,0.977112,0.763765,0.0732877,0.774219,0.480111,0.210294,0.845274,0.223368,0.588875,0.942609,0.570686,0.748396,0.206994,0.942944,0.318331,0.404502,0.969502,0.576323,0.801553,0.896682,0.261773,0.0123393,0.533804,0.756451,0.255244,0.892956,0.643318,0.776531,0.681379,0.25058,0.454992,0.965007,0.442408,0.308564,0.883105,0.506196,0.706204,0.278176,0.66384,0.140934,0.592286,0.80871,0.0647731,0.0549349,0.573233,0.204544,0.514368,0.481851,0.336188,0.583145,0.821363,0.0157475,0.400286,0.751523,0.419472,0.525352,0.0854169,0.79968,0.720411,0.902021,0.353955,0.679702,0.399213,0.682875,0.933399,0.921411,0.685219,0.376375,0.0224536,0.491867,0.799,0.403277,0.711472,0.870091,0.969973,0.420793,0.84192,0.226879,0.142298,0.428267,0.499022,0.910202,0.757008,0.0667694,0.6665,0.644911,0.0176896,0.733032,0.732758,0.839904,0.194512,0.0819432,0.362727,0.95753,0.00743538,0.954775,0.670889,0.178903,0.460803,0.531182,0.995925,0.230758,0.481133,0.109931,0.725866,0.322808,0.163692,0.000369966,0.70221,0.191204,0.961961,0.11524,0.295378,0.055216,0.783508,0.2682,0.227428,0.451392,0.847436,0.926232,0.925825,0.664156,0.403926,0.433134,0.868271,0.284951,0.492747,0.455411,0.517727,0.616719,0.288931,0.048078,0.864338,0.333348,0.700949,0.45782,0.178464,0.714739,0.355875,0.344743,0.953919,0.860378,0.51084,0.756169,0.808332,0.693725,0.476072,0.917884,0.760288,0.225427,0.74049,0.186373,0.414313,0.368672,0.169693,0.0271898,0.321854,0.741015,0.130749,0.599563,0.903215,0.458827,0.399492,0.667092,0.834524,0.247242,0.0484949,0.562503,0.62861,0.59411,0.466163,0.901557,0.421528,0.578262,0.00478023,0.552012,0.586441,0.887858,0.16805,0.820239,0.698276,0.108574,0.215768,0.565001,0.300701,0.483155,0.86998,0.242522,0.885897,0.942525,0.400231,0.0186872,0.983424,0.424195,0.171824,0.481596,0.0948842,0.589573,0.443384,0.824136,0.629731,0.745578,0.0991758,0.321818,0.88078,0.537358,0.101736,0.398421,0.792262,0.678665,0.911103,0.850586,0.0901229,0.64076,0.855445,0.138724,0.0174807,0.0588911,0.60517,0.156029,0.840011,0.834953,0.142542,0.779576,0.898528,0.581588,0.357653,0.92758,0.760581,0.871768,0.331378,0.907068,0.164403,0.424454,0.133017,0.410402,0.546406,0.541823,0.85208,0.346341,0.558453,0.584195,0.819955,0.921925,0.722674,0.662164,0.24847,0.906152,0.971517,0.672685,0.0546349,0.891587,0.336608,0.704138,0.197771,0.436849,0.655214,0.0900245,0.0404456,0.230522,0.946686,0.974013,0.406268,0.840446,0.900561,0.189688,0.421967,0.452571,0.536965,0.859897,0.949089,0.125941,0.617874,0.78844,0.154635,0.339574,0.345082,0.548364,0.74045,0.973805,0.474421,0.699033,0.857503,0.578681,0.503481,0.773274,0.604382,0.693844,0.669756,0.944717,0.11331,0.196901,0.235442,0.365822,0.335593,0.380583,0.934587,0.360756,0.482379,0.416409,0.415753,0.752688,0.736648,0.599688,0.424296,0.111845,0.751593,0.557829,0.64339,0.649859,0.722965,0.322703,0.00354964,0.942516,0.727146,0.463221,0.798717,0.228362,0.483539,0.170657,0.168732,0.114928,0.488571,0.387706,0.15814,0.687833,0.278894,0.7385,0.343747,0.382751,0.392041,0.900107,0.724247,0.427075,0.438861,0.919906,0.824328,0.505731,0.810759,0.0695806,0.0696591,0.172769,0.871707,0.697657,0.330513,0.81065,0.491287,0.850227,0.264475,0.114571,0.927968,0.877814,0.913936,0.117503,0.277827,0.184949,0.647353,0.465086,0.440038,0.876419,0.511323,0.559612,0.531215,0.665469,0.953599,0.0476933,0.37872,0.602827,0.862108,0.936438,0.668394,0.450036,0.3319,0.642776,0.300068,0.377372,0.207843,0.611057,0.86091,0.431271,0.654336,0.123896,0.289501,0.599516,0.618661,0.361689,0.142369,0.139928,0.998569,0.567035,0.346278,0.614788,0.019728,0.50632,0.337041,0.439566,0.190898,0.493062,0.695794,0.540769,0.302004,0.31401,0.087492,0.817241,0.258295,0.22678,0.932727,0.612396,0.837915,0.654036,0.197671,0.861921,0.375385,0.569363,0.405039,0.183047,0.975823,0.56028,0.297656,0.90911,0.933194,0.838201,0.464309,0.849055,0.758593,0.238943,0.755675,0.412093,0.719026,0.415566,0.812521,0.720573,0.169559,0.679171,0.209705,0.245367,0.246612,0.263793,0.222273,0.456042,0.161913,0.836213,0.256789,0.39971,0.241039,0.993945,0.6182,0.259341,0.654443,0.0308058,0.581439,0.0813552,0.68004,0.660438,0.812291,0.212259,0.984419,0.890106,0.881685,0.322323,0.480502,0.471621,0.613329,0.953443,0.922788,0.533267,0.614533,0.269632,0.283756,0.0389248,0.938921,0.402041,0.716083,0.289102,0.125238,0.929321,0.323197,0.643206,0.333385,0.138512,0.545213,0.147964,0.753199,0.294197,0.0747221,0.0315437,0.122404,0.280093,0.43412,0.0498818,0.124181,0.34068,0.88794,0.0606676,0.693083,0.400279,0.349693,0.467667,0.345956,0.022307,0.448374,0.938916,0.951325,0.426492,0.703826,0.972982,0.523158,0.038937,0.348426,0.785357,0.413073,0.277834,0.681355,0.298439,0.14842,0.509452,0.854638,0.161458,0.698382,0.757168,0.0342549,0.465408,0.74913,0.362291,0.882058,0.672478,0.167537,0.522599,0.562189,0.237099,0.743585,0.807183,0.901929,0.0339056,0.635862,0.322671,0.081175,0.313895,0.432072,0.683745,0.73061,0.289479,0.205683,0.776906,0.663996,0.0620464,0.888684,0.0342914,0.923931,0.160441,0.76103,0.845849,0.537436,0.757466,0.918012,0.470157,0.229382,0.710604,0.307735,0.429683,0.052415,0.811267,0.203533,0.190745,0.929082,0.837927,0.126939,0.0274956,0.246391,0.950412,0.783647,|0.144678,0.357896,0.550779,0.140819,0.100543,0.260475,0.995581,0.905849,0.861499,0.413871,0.891386,0.420054,0.662479,0.267349,0.982458,0.101407,0.764513,0.376098,0.47094,0.361571,0.602361,0.237164,0.0297468,0.990112,0.692108,0.729344,0.518496,0.636854,0.451024,0.234365,0.99135,0.212222,0.132122,0.395966,0.626079,0.491561,0.982143,0.401494,0.521438,0.957725,0.154249,0.264147,0.50667,0.291907,0.0323848,0.509801,0.621289,0.479206,0.127508,0.0760277,0.911142,0.0239408,0.344522,0.944206,0.236606,0.74675,0.164014,0.865987,0.312967,0.569773,0.998953,0.198799,0.404214,0.444739,0.0188847,0.361045,0.520921,0.273566,0.272811,0.285345,0.485113,0.917687,0.978258,0.469654,0.119857,0.0958027,0.915502,0.881623,0.423039,0.656063,0.374558,0.026316,0.786391,0.896687,0.182645,0.046892,0.1731,0.29732,0.74786,0.877747,0.457652,0.0230523,0.604136,0.0151837,0.462367,0.507871,0.360888,0.582142,0.517934,0.476264,0.782544,0.631893,0.945854,0.939623,0.624645,0.309575,0.0247488,0.0976278,0.667878,0.745796,0.781976,0.0196922,0.844413,0.381965,0.65798,0.330651,0.281353,0.920537,0.0916948,0.0408441,0.954146,0.0633097,0.721832,0.757781,0.497962,0.083649,0.357002,0.391295,0.644119,0.527114,0.538178,0.402993,0.179267,0.242074,0.516349,0.171847,0.559381,0.500562,0.195107,0.57906,0.807085,0.771529,0.766801,0.981831,0.350515,0.100174,0.532107,0.206228,0.41732,0.0848423,0.784641,0.636391,0.85279,0.255201,0.883312,0.332814,0.481562,0.951758,0.467368,0.955844,0.613114,0.350336,0.839025,0.0717019,0.780148,0.438901,0.211999,0.274255,0.729757,0.919936,0.775511,0.42712,0.816949,0.553424,0.470063,0.279575,0.608665,0.877315,0.457917,0.0152934,0.0839574,0.843425,0.804873,0.569071,0.790595,0.144235,0.672708,0.677377,0.662221,0.0150354,0.119814,0.541763,0.154705,0.0834284,0.328589,0.950329,0.297763,0.546775,0.0038681,0.0545419,0.789622,0.879046,0.644245,0.453621,0.493971,0.0608248,0.0593132,0.484495,0.0319872,0.946612,0.849136,0.926177,0.156574,0.137415,0.513127,0.74402,0.420363,0.286016,0.00386345,0.713552,0.875976,0.2276,0.687603,0.851138,0.82014,0.737142,0.326773,0.496674,0.0553792,0.0423014,0.129891,0.461882,0.235626,0.802424,0.48593,0.311383,0.209002,0.0917616,0.871222,0.476057,0.0393237,0.26882,0.549963,0.819821,0.00346208,0.656889,0.200931,0.229966,0.0824583,0.659429,0.161829,0.45763,0.211349,0.677297,0.798486,0.990314,0.723139,0.192225,0.862535,0.452623,0.329669,0.791578,0.174193,0.404858,0.481678,0.30481,0.970755,0.00192571,0.0327303,0.186675,0.0678348,0.879376,0.281477,0.39022,0.0481854,0.958122,0.670933,0.30533,0.927015,0.218958,0.400735,0.472328,0.72436,0.366921,0.617116,0.0290831,0.158963,0.454894,0.356986,0.341333,0.642964,0.78298,0.195654,0.896575,0.18091,0.339829,0.550001,0.10393,0.0569476,0.0445923,0.924407,0.819317,0.570306,0.703596,0.411383,0.301245,0.345485,0.835922,0.521265,0.557808,0.557664,0.685676,0.324927,0.640112,0.189969,0.0335566,0.526438,0.410318,0.488997,0.748064,0.926866,0.796667,0.544591,0.581048,0.933,0.826986,0.277716,0.0392557,0.170774,0.51382,0.471215,0.585893,0.617325,0.578447,0.653911,0.455276,0.994208,0.462667,0.400381,0.651129,0.674007,0.6267,0.881033,0.0155398,0.218142,0.489274,0.100513,0.737234,0.961594,0.0523989,0.858957,0.0736493,0.390281,0.193905,0.985674,0.438287,0.946456,0.279825,0.852123,0.984966,0.60567,0.505302,0.920494,0.231564,0.0260152,0.101182,0.755023,0.32721,0.961876,0.0567839,0.766052,0.458145,0.402915,0.194412,0.319774,0.60179,0.635775,0.745835,0.351101,0.43643,0.120817,0.695739,0.750885,0.779517,0.665629,0.004511,0.483032,0.637879,0.136468,0.689113,0.694941,0.0913658,0.0605008,0.891606,0.0963235,0.32297,0.0888918,0.354334,0.792688,0.234103,0.352268,0.152255,0.0644388,0.374159,0.564549,0.95449,0.617176,0.788654,0.115292,0.483741,0.605016,0.309128,0.629527,0.516138,0.169713,0.964465,0.108663,0.527103,0.550298,0.30862,0.649697,0.000730991,0.112325,0.222586,0.232869,0.76273,0.31597,0.456629,0.0779805,0.487413,0.661565,0.0854484,0.30704,0.204357,0.156468,0.694796,0.399737,0.478903,0.409784,0.69751,0.400123,0.226683,0.987114,0.460633,0.914681,0.929605,0.288915,0.295174,0.705414,0.806381,0.903304,0.115131,0.122196,0.99178,0.727249,0.770778,0.875295,0.531532,0.759819,0.193504,0.143165,0.829074,0.84477,0.397058,0.761176,0.728251,0.604299,0.679223,0.943498,0.958791,0.945669,0.975117,0.652459,0.427855,0.279424,0.924182,0.762623,0.940807,0.412766,0.615254,0.0825065,0.198886,0.367988,0.38066,0.878664,0.0462039,0.674066,0.300554,0.367275,0.796045,0.72394,0.251121,0.67552,0.856631,0.820155,0.441778,0.879167,0.282133,0.164237,0.0947522,0.490912,0.405836,0.728336,0.530345,0.776996,0.43977,0.374571,0.0393803,0.379983,0.105954,0.588346,0.842378,0.0782769,0.339297,0.298004,0.47429,0.712239,0.86274,0.675522,0.494822,0.475161,0.345185,0.758048,0.725349,0.356265,0.965582,0.534608,0.38461,0.950032,0.574862,0.142186,0.572315,0.520511,0.583335,0.164943,0.156873,0.771759,0.455816,0.527992,0.27372,0.762938,0.390023,0.576616,0.464376,0.221867,0.218284,0.536443,0.348884,0.840146,0.157633,0.326447,0.807487,0.65866,0.944472,0.676206,0.0596189,0.7476,0.196572,0.502229,0.216079,0.255343,0.377943,0.584931,0.115274,0.876243,0.522896,0.979485,0.206719,0.057646,0.652603,0.502299,0.338535,0.496775,0.39773,0.489172,0.968464,0.835212,0.717141,0.00961554,0.42274,0.715292,0.046742,0.131003,0.831607,0.013545,0.864603,0.912543,0.367036,0.754678,0.898308,0.00132328,0.586682,0.516404,0.450112,0.421536,0.909794,0.783864,0.883655,0.408421,0.726814,0.526652,0.0335133,0.647239,0.724711,0.667106,0.0079065,0.449956,0.985252,0.461229,0.642959,0.459554,0.387365,0.674214,0.674127,0.849683,0.852924,0.322038,0.565173,0.509672,0.558841,0.642313,0.704428,0.203777,0.991309,0.35949,0.100914,0.338542,0.985177,0.202133,0.383314,0.889101,0.496299,0.114204,0.453593,0.775529,0.423262,0.440457,0.0902716,0.963194,0.49085,0.728913,0.429182,0.223541,0.858465,0.146015,0.00949103,0.0877666,0.803499,0.0741549,0.214215,0.937002,0.533939,0.846715,0.899451,0.214657,0.932657,0.397861,0.121118,0.0666164,0.44685,0.229719,0.608198,0.683497,0.207558,0.133803,0.846488,0.792725,0.386608,0.347348,0.618275,0.0576987,0.260949,0.329025,0.572319,0.970256,0.778584,0.0272448,0.110987,0.865252,0.593191,0.0773126,0.32401,0.962144,0.617957,0.841766,0.892819,0.851014,0.549475,0.926603,0.158004,0.951356,0.72143,0.601676,0.651336,0.400816,0.57291,0.454509,0.373633,0.477868,0.946149,0.782485,0.959616,0.597969,0.958646,0.823189,0.0720057,0.53686,0.520312,0.10012,0.6472,0.960484,0.409269,0.446067,0.153111,0.193691,0.0707746,0.996272,0.939315,0.966566,0.531007,0.636498,0.333419,0.230273,0.465682,0.994166,0.788454,0.239428,0.113558,0.656617,0.565334,0.239954,0.0510061,0.858696,0.0156904,0.538484,0.26295,0.797745,0.738359,0.598044,0.891018,0.38053,0.0935354,0.962003,0.209195,0.868929,0.800056,0.472445,0.538998,0.0957927,0.960166,0.303831,0.930409,0.55114,0.73988,0.168423,0.353159,0.394972,0.929555,0.173355,0.906006,0.804625,0.939837,0.544001,0.40913,0.774085,0.490294,0.973808,0.0982575,0.964497,0.610538,0.546832,0.345465,0.969356,0.759925,0.174854,0.475562,0.679908,0.888473,0.883054,0.94285,0.0496827,0.44008,0.997088,0.44346,0.357151,0.045038,0.860799,0.97389,0.119105,0.33225,0.836621,0.230793,0.966577,0.914171,0.463446,0.209757,0.902733,0.672781,0.600796,0.950455,0.188436,0.318253,0.310154,0.0927173,0.00932211,0.499549,0.435125,0.885699,0.813702,0.185422,0.547657,0.91952,0.858508,0.320012,0.376743,0.339453,0.820637,0.850944,0.497349,0.236353,0.923155,0.858178,0.60673,0.568586,0.602665,0.0208393,0.628141,0.351979,0.647706,0.589613,0.333842,0.92716,0.545874,0.637929,0.28349,0.559111,0.99515,0.639026,0.156476,0.622476,0.963105,0.648237,0.67324,0.226824,0.726244,0.815881,0.269933,0.218465,0.232764,0.623352,0.243467,0.568435,0.637342,0.367675,0.806663,0.324302,0.128887,0.690026,0.568154,0.379393,0.916627,0.478996,0.32124,0.315214,0.938307,0.364992,0.137512,0.694217,0.0809671,0.325779,0.674071,0.601403,0.488665,0.985492,0.327932,0.0136053,0.20846,0.332892,0.0349858,0.716687,0.272582,0.118221,0.564869,0.639545,0.0639156,0.631688,0.856208,0.305942,0.578665,0.574419,0.626894,0.315691,0.462295,0.711454,0.32783,0.184319,0.699639,0.384982,0.0532772,0.427579,0.553072,0.280816,0.331512,0.512566,0.11642,0.838406,0.229221,0.319444,0.819628,0.474051,0.352055,0.0290813,0.378449,0.586159,0.518097,0.374606,0.444188,0.216017,0.84245,0.976601,0.894844,0.441569,0.734701,0.471717,0.757523,0.390538,0.298267,0.016643,0.903241,0.0237135,0.567506,0.671442,0.55238,0.501393,0.594834,0.0170924,0.880091,0.567552,0.83844,0.0811614,0.672194,0.611953,0.349016,0.788974,0.352685,0.500504,0.762232,0.181705,0.41355,0.337741,0.406058,0.233182,0.596424,0.272974,0.69101,0.860479,0.168381,0.197833,0.860086,0.819465,0.389152,0.382687,0.370191,0.8864,0.855153,0.000326753,0.532648,0.194921,0.0713868,0.1641,0.11584,0.143412,0.852581,0.777544,0.301232,0.206515,0.42289,0.199063,0.777836,0.708432,0.470759,0.136594,0.753543,0.634625,0.939101,0.0797447,0.674903,0.101849,0.186391,0.618661,0.673504,0.696897,0.110833,0.719826,0.0479424,0.189049,0.129934,0.973624,0.288891,0.0642285,|0.678012,0.410845,0.670154,0.887355,0.875575,0.946321,0.417593,0.224973,0.0730489,0.00456393,0.678689,0.736684,0.0189773,0.597501,0.728484,0.719471,0.294898,0.212072,0.290736,0.208821,0.891523,0.221803,0.74743,0.172968,0.684735,0.342979,0.875352,0.341708,0.578219,0.584155,0.814136,0.664348,0.983271,0.882078,0.707417,0.769594,0.229453,0.170128,0.877508,0.904454,0.259501,0.233339,0.577827,0.966037,0.855796,0.593244,0.637517,0.219213,0.983974,0.0859719,0.273125,0.589819,0.466997,0.319477,0.955391,0.741703,0.78252,0.580359,0.207079,0.261669,0.0232402,0.779913,0.685328,0.0291687,0.674658,0.0122219,0.379958,0.277258,0.643117,0.180226,0.483904,0.533844,0.921017,0.585122,0.578867,0.483062,0.163089,0.813253,0.820503,0.975083,0.381947,0.894215,0.362153,0.178498,0.214543,0.832586,0.420179,0.827643,0.668879,0.662064,0.742461,0.370264,0.306576,0.71015,0.296359,0.529011,0.117792,0.704455,0.571515,0.294951,0.433506,0.736857,0.194831,0.447166,0.461914,0.130176,0.75688,0.214303,0.309934,0.0899767,0.377431,0.248287,0.104332,0.678993,0.386951,0.613669,0.932309,0.239731,0.175229,0.69648,0.402626,0.0908225,0.978833,0.870056,0.561886,0.33922,0.54555,0.290363,0.357393,0.9319,0.79394,0.611388,0.542747,0.112346,0.741248,0.333274,0.339244,0.962505,0.777713,0.640763,0.412968,0.122323,0.592879,0.0287123,0.613612,0.115276,0.933624,0.625582,0.259943,0.324519,0.524841,0.506998,0.0617113,0.914338,0.37188,0.811479,0.520405,0.938223,0.273404,0.652457,0.581966,0.237061,0.407526,0.636857,0.0583029,0.75358,0.432099,0.50791,0.427941,0.891439,0.142181,0.150292,0.115252,0.739333,0.927772,0.338639,0.754594,0.429692,0.272005,0.552582,0.955876,0.111302,0.65127,0.322089,0.859588,0.581751,0.348315,0.108035,0.0526109,0.165489,0.694848,0.741615,0.892708,0.314972,0.511089,0.19977,0.190753,0.218182,0.302221,0.588608,0.556693,0.312896,0.589346,0.0646235,0.816606,0.495231,0.0979319,0.843308,0.646884,0.06411,0.405524,0.39292,0.0410848,0.951566,0.546555,0.0500317,0.0985509,0.542298,0.572743,0.504638,0.964031,0.444197,0.994097,0.384839,0.0946115,0.424952,0.81158,0.474645,0.273833,0.805457,0.243446,0.803149,0.449781,0.0391229,0.33852,0.381333,0.967497,0.696607,0.0145644,0.480572,0.107297,0.170372,0.964616,0.106439,0.0324715,0.15661,0.555971,0.511811,0.823367,0.843927,0.54857,0.428348,0.151461,0.586627,0.942519,0.214574,0.545613,0.0681342,0.587484,0.211476,0.66979,0.760563,0.142565,0.783162,0.692308,0.226879,0.0803132,0.0785943,0.947025,0.0980856,0.247776,0.757486,0.11006,0.654393,0.157274,0.519537,0.492561,0.397281,0.632708,0.802997,0.856783,0.977211,0.234859,0.203953,0.723914,0.210674,0.666297,0.598256,0.60537,0.675272,0.743854,0.868535,0.432342,0.843388,0.747776,0.232702,0.538312,0.514324,0.74157,0.729355,0.154706,0.466751,0.574959,0.150442,0.16247,0.463677,0.28218,0.405394,0.0116082,0.0693178,0.497988,0.114998,0.653082,0.660474,0.772922,0.0093779,0.697225,0.411458,0.172725,0.889772,0.369545,0.311817,0.137523,0.949698,0.370575,0.696197,0.0755482,0.91124,0.304931,0.670177,0.64197,0.591646,0.393452,0.81043,0.0153518,0.385324,0.983775,0.451819,0.523115,0.768794,0.810783,0.0380048,0.591139,0.456876,0.920822,0.932972,0.0821291,0.378132,0.584242,0.581741,0.856868,0.804137,0.63083,0.314304,0.707608,0.616086,0.526471,0.275452,0.736772,0.23985,0.933161,0.322687,0.93295,0.223053,0.913449,0.0198458,0.882607,0.523311,0.352698,0.755824,0.871186,0.29771,0.92189,0.38468,0.219375,0.696756,0.0453411,0.27822,0.772224,0.386485,0.765676,0.960361,0.399574,0.584883,0.443558,0.504541,0.0856408,0.283455,0.255241,0.961844,0.355686,0.375382,0.0192996,0.800068,0.547688,0.42378,0.0421777,0.199672,0.262516,0.150509,0.804885,0.0534918,0.179811,0.725033,0.278781,0.297176,0.272368,0.957315,0.343457,0.206978,0.561083,0.214767,0.0643536,0.850631,0.0275347,0.781392,0.377629,0.521863,0.556537,0.766912,0.338646,0.937875,0.51569,0.439092,0.503382,0.349893,0.0409505,0.340168,0.137666,0.913856,0.353035,0.828762,0.509441,0.753607,0.117874,0.280451,0.483583,0.956732,0.648035,0.242884,0.233866,0.145108,0.540237,0.965356,0.411529,0.273226,0.31104,0.579825,0.728297,0.779154,0.593198,0.147391,0.587234,0.0158901,0.808932,0.752637,0.192092,0.418693,0.699222,0.541612,0.0652803,0.320428,0.941368,0.473221,0.37317,0.24979,0.0500613,0.295582,0.0941569,0.192272,0.773164,0.778637,0.319834,0.10303,0.923303,0.884547,0.0507773,0.656215,0.26075,0.66037,0.947989,0.585972,0.36498,0.382425,0.616136,0.00229031,0.0473883,0.386997,0.154929,0.719003,0.404441,0.57232,0.894179,0.559051,0.444735,0.290059,0.851039,0.827907,0.898133,0.818828,0.524395,0.284317,0.31874,0.410137,0.976423,0.442956,0.584009,0.459408,0.456004,0.269292,0.0669013,0.949941,0.0581655,0.50972,0.785784,0.822719,0.143715,0.0984119,0.292776,0.1311,0.0240136,0.60058,0.992111,0.173027,0.967152,0.0582557,0.295141,0.100605,0.441408,0.384815,0.787617,0.891677,0.637011,0.703805,0.375236,0.298518,0.181318,0.799996,0.32596,0.0476595,0.206818,0.0390644,0.354596,0.344053,0.76021,0.17832,0.30288,0.280657,0.558639,0.0886624,0.381716,0.00454861,0.840466,0.72063,0.0811505,0.0947828,0.342039,0.818753,0.291875,0.962439,0.539362,0.567685,0.955826,0.241012,0.580343,0.849283,0.982089,0.904837,0.87899,0.19965,0.107335,0.0714713,0.0348745,0.0262467,0.759404,0.0882124,0.0579439,0.0490285,0.460514,0.855446,0.747893,0.0579848,0.177213,0.603491,0.300679,0.690343,0.73389,0.729333,0.512314,0.620511,0.242191,0.401432,0.546372,0.18062,0.103454,0.884281,0.494914,0.838138,0.313622,0.814717,0.86494,0.518502,0.0382572,0.50158,0.619257,0.483969,0.33148,0.634997,0.25666,0.779751,0.270265,0.841389,0.826403,0.213731,0.910229,0.570095,0.47904,0.815871,0.153316,0.194662,0.413815,0.787544,0.944741,0.810199,0.024201,0.931508,0.624158,0.0994059,0.822135,0.606904,0.476978,0.258383,0.0033024,0.171509,0.559306,0.554927,0.55368,0.940407,0.0698516,0.546869,0.00698763,0.62338,0.172982,0.600329,0.144017,0.90374,0.0977036,0.147169,0.860403,0.070806,0.344502,0.460996,0.53619,0.642904,0.954046,0.541903,0.0789375,0.502176,0.945674,0.487795,0.429427,0.811988,0.574584,0.263505,0.295043,0.437851,0.0232433,0.900234,0.364799,0.284858,0.149452,0.365705,0.812269,0.712051,0.134285,0.796939,0.116976,0.630303,0.0781359,0.15741,0.32648,0.190914,0.234716,0.751573,0.00448281,0.950151,0.958552,0.797793,0.844401,0.978062,0.681892,0.793435,0.109823,0.675267,0.88555,0.736108,0.0575839,0.571406,0.0868672,0.0388532,0.832376,0.403486,0.520039,0.928172,0.927238,0.372324,0.468892,0.712331,0.303725,0.0914521,0.194953,0.834805,0.776044,0.0685542,0.426858,0.212958,0.573292,0.957555,0.0712259,0.337024,0.340949,0.289461,0.784669,0.0164604,0.498332,0.394599,0.127086,0.247896,0.792648,0.10544,0.311704,0.981073,0.244242,0.60547,0.244163,0.525656,0.574041,0.492358,0.4065,0.995044,0.00222301,0.704386,0.957034,0.338278,0.0649178,0.630306,0.018433,0.901843,0.364338,0.842228,0.622059,0.585504,0.305262,0.356045,0.576955,0.876688,0.694545,0.256,0.622364,0.238106,0.704868,0.734276,0.565369,0.981061,0.682314,0.683913,0.0251232,0.456962,0.488377,0.899094,0.853166,0.883858,0.874499,0.099415,0.456514,0.932072,0.355407,0.0317437,0.849012,0.601761,0.59937,0.0915629,0.291914,0.882364,0.487576,0.756757,0.552214,0.817792,0.317482,0.466887,0.530758,0.315793,0.541474,0.572959,0.566627,0.366057,0.194682,0.376515,0.266388,0.220311,0.647379,0.240578,0.190439,0.707072,0.864734,0.728094,0.467336,0.0577188,0.531738,0.705788,0.12449,0.0326793,0.0960773,0.0453421,0.918555,0.0105581,0.580913,0.539083,0.525633,0.190729,0.812964,0.585016,0.199839,0.875413,0.356287,0.973759,0.211741,0.522354,0.989505,0.280823,0.970839,0.118349,0.888865,0.883708,0.790218,0.214475,0.38092,0.600406,0.0583885,0.17125,0.819583,0.601737,0.572441,0.201883,0.354803,0.485519,0.645282,0.578896,0.360417,0.892108,0.0512183,0.164419,0.631984,0.686342,0.935996,0.109253,0.0752075,0.580288,0.227155,0.995335,0.042154,0.765908,0.699913,0.168285,0.765427,0.0585549,0.692394,0.230611,0.431843,0.0207504,0.724016,0.83217,0.705545,0.71964,0.343905,0.766611,0.6809,0.482775,0.538866,0.928788,0.304122,0.89733,0.190783,0.936646,0.946456,0.313601,0.0197209,0.620255,0.369882,0.553325,0.75136,0.833266,0.935838,0.859713,0.852261,0.681675,0.279336,0.287553,0.865758,0.0562597,0.0713468,0.670879,0.399271,0.409866,0.265289,0.458224,0.742963,0.57053,0.851003,0.379166,0.74966,0.822438,0.327252,0.845847,0.70811,0.264284,0.334207,0.932622,0.458514,0.745165,0.974968,0.961352,0.70517,0.954625,0.714108,0.149273,0.11375,0.272081,0.450595,0.594913,0.0855336,0.149588,0.678682,0.916713,0.925674,0.641837,0.126891,0.561299,0.703893,0.564923,0.885957,0.215738,0.985123,0.684833,0.377833,0.400516,0.326259,0.278713,0.117718,0.844424,0.282221,0.534694,0.478004,0.336281,0.522044,0.339109,0.359105,0.977244,0.852852,0.234118,0.579989,0.533173,0.714385,0.889426,0.984631,0.689106,0.949047,0.776706,0.0552071,0.963068,0.444161,0.182578,0.686973,0.19652,0.32612,0.336346,0.844147,0.441437,0.921602,0.502747,0.581724,0.859615,0.504247,0.472428,0.590853,0.814809,0.672561,0.338628,0.787265,0.944812,0.43801,0.715174,0.726339,0.856124,0.922974,0.781167,0.00175554,0.897786,0.204024,0.694317,|0.441905,0.109022,0.721986,0.448564,0.716514,0.945892,0.781841,0.474777,0.525402,0.815106,0.284138,0.599607,0.564035,0.918376,0.776371,0.52898,0.551952,0.933765,0.0414906,0.118635,0.0727881,0.643368,0.408793,0.801407,0.895845,0.286116,0.297428,0.689047,0.291867,0.356398,0.195681,0.72434,0.564387,0.908391,0.0949178,0.326685,0.210549,0.0587654,0.427388,0.422931,0.237961,0.297251,0.949806,0.000934303,0.672452,0.747444,0.478642,0.730494,0.121039,0.302148,0.883393,0.364248,0.294343,0.50193,0.795453,0.525467,0.105535,0.040729,0.926706,0.299613,0.273437,0.202442,0.391809,0.761683,0.158736,0.714848,0.898849,0.290658,0.716305,0.822072,0.208544,0.0840054,0.429229,0.329282,0.0673016,0.405385,0.0974717,0.532705,0.362814,0.103917,0.852392,0.461894,0.326631,0.826761,0.253376,0.161271,0.433698,0.581345,0.278427,0.0141998,0.648018,0.553556,0.173895,0.149652,0.226352,0.899715,0.3599,0.642992,0.815341,0.534036,0.583571,0.791359,0.204388,0.787889,0.598269,0.306917,0.865993,0.0260461,0.930022,0.381785,0.030818,0.101671,0.463926,0.602002,0.704841,0.774346,0.720344,0.580373,0.900762,0.615058,0.335464,0.102611,0.716047,0.29731,0.956128,0.148556,0.641077,0.238309,0.425475,0.759303,0.209764,0.280668,0.954067,0.742887,0.950457,0.245119,0.298083,0.716018,0.758006,0.444487,0.824043,0.0701609,0.786251,0.294734,0.36575,0.316446,0.310546,0.0292827,0.135785,0.586831,0.21854,0.312344,0.633853,0.306099,0.566513,0.871258,0.820498,0.373064,0.673876,0.118915,0.395415,0.189653,0.313034,0.91199,0.661375,0.358366,0.0363459,0.554352,0.812398,0.784091,0.220892,0.584264,0.960185,0.294113,0.217988,0.497836,0.920786,0.204286,0.864399,0.108151,0.626559,0.539555,0.427404,0.607286,0.977188,0.715905,0.66245,0.109309,0.846887,0.845627,0.697779,0.522102,0.259557,0.946369,0.854196,0.405688,0.118832,0.868533,0.224403,0.777833,0.460794,0.333316,0.901069,0.773633,0.124385,0.270034,0.722066,0.409941,0.739316,0.0414374,0.730442,0.018135,0.164749,0.856504,0.16156,0.864154,0.188625,0.22033,0.144255,0.509431,0.295391,0.0302525,0.59134,0.989826,0.120217,0.149391,0.472666,0.788431,0.651672,0.410964,0.964731,0.636837,0.177372,0.355264,0.785643,0.795083,0.352444,0.375316,0.867425,0.718618,0.863919,0.776421,0.314348,0.033089,0.0614837,0.0580385,0.0386847,0.2171,0.298489,0.0287021,0.946972,0.786483,0.837653,0.998933,0.0764041,0.161768,0.060627,0.322224,0.470679,0.778258,0.621296,0.406999,0.385045,0.876072,0.709804,0.543294,0.896723,0.905243,0.0744987,0.549225,0.912644,0.524929,0.879158,0.503811,0.661649,0.0229609,0.236242,0.712671,0.796819,0.794696,0.0942512,0.271512,0.18148,0.995298,0.135605,0.546796,0.908778,0.634874,0.28428,0.00251991,0.683082,0.984634,0.380358,0.355698,0.318424,0.880322,0.40237,0.511296,0.0726206,0.845453,0.941856,0.882808,0.741738,0.958682,0.994018,0.636196,0.377939,0.345663,0.444322,0.697767,0.300504,0.31175,0.71969,0.88403,0.626445,0.685181,0.979561,0.0309692,0.602876,0.966309,0.796145,0.713601,0.0166702,0.0494719,0.0239546,0.113166,0.468072,0.98083,0.553176,0.00183606,0.772247,0.809295,0.866013,0.983859,0.633537,0.856353,0.427661,0.562734,0.248021,0.993543,0.247402,0.537475,0.581305,0.742144,0.615953,0.317883,0.454658,0.95163,0.137183,0.599674,0.324119,0.342201,0.795408,0.609332,0.878131,0.483897,0.0875977,0.804029,0.124922,0.307609,0.308448,0.955044,0.286781,0.647067,0.214234,0.393659,0.837026,0.864362,0.850285,0.441006,0.0765982,0.345097,0.561415,0.403081,0.393265,0.0165457,0.444338,0.229825,0.6584,0.936612,0.969469,0.723403,0.337655,0.303209,0.806991,0.123495,0.160674,0.270343,0.903907,0.65128,0.952782,0.0800765,0.144332,0.962682,0.196536,0.995734,0.677666,0.543854,0.446492,0.365236,0.377366,0.893441,0.839518,0.332218,0.0960161,0.919193,0.207972,0.367508,0.790229,0.337786,0.426629,0.159244,0.853901,0.691929,0.829515,0.27371,0.727863,0.0847006,0.248986,0.721934,0.585501,0.0781417,0.444538,0.309206,0.0554981,0.463123,0.714761,0.998214,0.508394,0.719817,0.864188,0.488975,0.483511,0.952889,0.439786,0.749389,0.533389,0.431332,0.492225,0.984793,0.9866,0.89862,0.441873,0.408582,0.118596,0.669657,0.974179,0.338601,0.360008,0.0906236,0.864424,0.115454,0.746897,0.838091,0.917958,0.0995343,0.345504,0.853823,0.453021,0.604555,0.498421,0.158378,0.304897,0.0742132,0.412966,0.768477,0.59188,0.199852,0.537112,0.942797,0.600909,0.367565,0.230783,0.919659,0.479759,0.672765,0.0120224,0.544743,0.899781,0.710741,0.469634,0.432784,0.767164,0.710105,0.283013,0.822051,0.829203,0.922644,0.780597,0.406274,0.946126,0.244766,0.553051,0.749183,0.261498,0.253877,0.983893,0.0460748,0.758908,0.319343,0.844846,0.939644,0.90177,0.758198,0.08295,0.660078,0.641708,0.892067,0.077766,0.891229,0.626003,0.560163,0.677825,0.552953,0.221984,0.0919552,0.898517,0.678622,0.144319,0.241081,0.679361,0.966248,0.693005,0.825541,0.96706,0.0230746,0.83296,0.138849,0.168895,0.930833,0.0632534,0.207844,0.904546,0.165003,0.506524,0.838202,0.816505,0.209899,0.875784,0.615596,0.147985,0.195169,0.223411,0.953735,0.776289,0.893838,0.0330569,0.375355,0.921983,0.210635,0.507495,0.0775621,0.0708495,0.673459,0.575396,0.50497,0.303888,0.901478,0.26459,0.824977,0.986453,0.393687,0.875697,0.379827,0.490333,0.135358,0.803089,0.0247325,0.997553,0.139317,0.983251,0.99926,0.807633,0.723863,0.51822,0.702273,0.0489743,0.246242,0.583859,0.144777,0.646911,0.452521,0.295589,0.641676,0.509259,0.682955,0.605621,0.663553,0.553548,0.219515,0.829005,0.882584,0.333885,0.656002,0.133379,0.772806,0.330597,0.259896,0.0973162,0.744665,0.158026,0.441946,0.0827796,0.576824,0.364446,0.95812,0.646115,0.55547,0.779667,0.268571,0.199474,0.37886,0.17138,0.0843349,0.312916,0.0973945,0.848419,0.500992,0.767008,0.138877,0.0449511,0.91539,0.313434,0.0333263,0.804025,0.156058,0.427811,0.0837977,0.877311,0.629061,0.35006,0.409051,0.586969,0.965825,0.933566,0.0174209,0.942347,0.608934,0.285694,0.574896,0.79407,0.588873,0.430548,0.760673,0.852058,0.133517,0.188033,0.399688,0.369876,0.716706,0.896835,0.599934,0.425437,0.335598,0.770902,0.334223,0.0791067,0.695994,0.653068,0.49921,0.732909,0.177757,0.576514,0.251374,0.119301,0.0402759,0.165812,0.565533,0.762509,0.424079,0.753771,0.650848,0.272114,0.898088,0.900972,0.177488,0.40268,0.92809,0.463841,0.550486,0.709057,0.545772,0.633494,0.982709,0.170962,0.113886,0.470475,0.0327992,0.286377,0.297157,0.364894,0.263004,0.573993,0.463628,0.511238,0.282467,0.130061,0.918166,0.702561,0.273563,0.476581,0.587424,0.0477728,0.696543,0.071308,0.550479,0.606068,0.871004,0.594912,0.350084,0.955482,0.801604,0.342943,0.904272,0.777204,0.711986,0.256596,0.80881,0.758593,0.804204,0.283344,0.0392796,0.0560179,0.0301627,0.449057,0.71193,0.724874,0.730682,0.0575752,0.998871,0.891856,0.690649,0.46643,0.148809,0.63613,0.469262,0.38642,0.458881,0.431484,0.338005,0.676079,0.48464,0.726031,0.972987,0.626868,0.918798,0.9056,0.833398,0.798013,0.213086,0.859503,0.198973,0.507227,0.471094,0.865407,0.417311,0.64908,0.499097,0.77544,0.39934,0.69231,0.868527,0.344583,0.388339,0.0712953,0.623592,0.758108,0.545275,0.212056,0.397598,0.547309,0.232138,0.401352,0.585595,0.166295,0.238014,0.228863,0.634781,0.651449,0.787607,0.428657,0.808289,0.0568564,0.744969,0.00254571,0.238295,0.709917,0.158767,0.658425,0.819558,0.647485,0.85179,0.533807,0.654732,0.398721,0.184904,0.84856,0.443123,0.146224,0.108143,0.791335,0.68823,0.461551,0.896897,0.199965,0.21526,0.612758,0.207506,0.0498526,0.575374,0.63873,0.535045,0.490407,0.769247,0.159102,0.829464,0.910257,0.491329,0.271484,0.678319,0.124361,0.0970981,0.475137,0.149038,0.335548,0.505988,0.822729,0.897679,0.742562,0.113673,0.92132,0.787748,0.212973,0.655693,0.949797,0.212995,0.400881,0.0250497,0.511334,0.476981,0.19477,0.606147,0.219421,0.624765,0.586474,0.168341,0.988921,0.443518,0.823139,0.0467942,0.814457,0.622352,0.610044,0.788255,0.720691,0.00825429,0.301233,0.254484,0.00225532,0.464361,0.390797,0.316266,0.167437,0.0100101,0.407247,0.525547,0.898464,0.967277,0.768454,0.937978,0.538087,0.164117,0.0916933,0.412018,0.471283,0.379045,0.818592,0.400641,0.688694,0.723366,0.67619,0.0591908,0.939341,0.853631,0.871585,0.554257,0.611449,0.641349,0.171611,0.484201,0.530826,0.210843,0.517442,0.058387,0.621346,0.560617,0.885555,0.87966,0.0736232,0.722234,0.889792,0.46855,0.771902,0.20428,0.1708,0.476761,0.239717,0.0782664,0.157133,0.49579,0.190788,0.834765,0.180885,0.585079,0.328065,0.375599,0.90742,0.0234101,0.915014,0.994208,0.18607,0.372436,0.117424,0.660019,0.637808,0.77333,0.210059,0.492645,0.275526,0.508538,0.0148453,0.306156,0.645078,0.033349,0.0941969,0.277039,0.691494,0.671126,0.196412,0.750062,0.31543,0.108455,0.506623,0.630779,0.848039,0.929577,0.686814,0.118784,0.804708,0.324923,0.284049,0.739256,0.0992649,0.272862,0.68926,0.990162,0.865115,0.935274,0.975222,0.624877,0.374265,0.466106,0.238317,0.362716,0.951099,0.00684547,0.592071,0.905106,0.419971,0.298461,0.682629,0.725798,0.591326,0.135321,0.895631,0.0876601,0.634543,0.726461,0.349117,0.707111,0.462316,0.689336,0.856829,0.807224,0.403324,0.316552,0.731317,0.830958,0.206288,0.400821,0.134586,0.971936,0.222185,0.949594,0.247056,0.476449,0.98279,0.22325,0.30641,0.048727,|0.0858415,0.529907,0.867968,0.254634,0.0191031,0.326163,0.972751,0.727091,0.0126128,0.777322,0.557897,0.474377,0.727259,0.300837,0.315108,0.323976,0.708205,0.479105,0.494128,0.407349,0.014048,0.815252,0.137627,0.568045,0.608153,0.179644,0.934531,0.614592,0.566474,0.893328,0.864004,0.206978,0.550247,0.474057,0.1386,0.349392,0.782019,0.723888,0.82126,0.198369,0.14462,0.633321,0.84596,0.0718244,0.706721,0.993552,0.775234,0.853611,0.326936,0.755907,0.941156,0.173082,0.315148,0.823138,0.667472,0.95138,0.14184,0.231635,0.627604,0.287564,0.484565,0.318881,0.429381,0.248737,0.0645586,0.900937,0.140283,0.118699,0.372912,0.509133,0.721547,0.0297312,0.705206,0.0940198,0.192013,0.797819,0.795636,0.847222,0.0425573,0.235276,0.10903,0.616797,0.933066,0.262106,0.972868,0.00740147,0.497279,0.0149552,0.971874,0.26323,0.5544,0.850015,0.888724,0.365457,0.27916,0.308439,0.79366,0.741593,0.124515,0.578472,0.85441,0.679972,0.319762,0.0936193,0.164098,0.388659,0.0148326,0.884643,0.463972,0.270671,0.392408,0.0761217,0.884852,0.438151,0.638724,0.569096,0.0941855,0.794112,0.183236,0.251021,0.97172,0.645831,0.290136,0.149415,0.599772,0.495027,0.475324,0.319046,0.246499,0.523635,0.763883,0.383155,0.19489,0.443973,0.343453,0.816775,0.720616,0.954034,0.920319,0.0416979,0.525117,0.300756,0.021173,0.964909,0.167683,0.577619,0.928719,0.829917,0.679475,0.179035,0.25717,0.14064,0.631466,0.661787,0.605298,0.786235,0.820305,0.403961,0.282283,0.959647,0.675867,0.105931,0.123556,0.0206032,0.206331,0.0663919,0.0169127,0.505133,0.501729,0.507632,0.182736,0.374084,0.676403,0.924938,0.0790389,0.704672,0.153665,0.851231,0.569259,0.120096,0.385399,0.792803,0.284014,0.466657,0.82907,0.98868,0.990762,0.328994,0.774524,0.618659,0.384837,0.928978,0.0689113,0.193479,0.382464,0.747918,0.372403,0.216653,0.105867,0.947462,0.971325,0.105088,0.467233,0.888808,0.639922,0.340906,0.233659,0.0657951,0.441954,0.319512,0.798007,0.573038,0.245529,0.145438,0.894185,0.577948,0.121149,0.666665,0.836351,0.782502,0.206174,0.938026,0.376645,0.21789,0.53132,0.88958,0.323149,0.470934,0.490679,0.981172,0.289661,0.825727,0.849046,0.833028,0.584662,0.421153,0.330923,0.895173,0.230299,0.328744,0.710483,0.0947738,0.0167997,0.660484,0.613525,0.281462,0.942716,0.99103,0.877503,0.430861,0.377492,0.832864,0.147234,0.356457,0.230307,0.890736,0.745553,0.142466,0.058448,0.0176072,0.605288,0.139149,0.800368,0.720658,0.395874,0.390298,0.0353875,0.68419,0.170911,0.520992,0.0605627,0.989043,0.108235,0.288784,0.585929,0.991641,0.712426,0.133974,0.818878,0.775129,0.165191,0.866106,0.690691,0.207738,0.59676,0.365648,0.087216,0.249328,0.919544,0.3229,0.402859,0.650488,0.211422,0.499577,0.232805,0.379462,0.242793,0.656103,0.451103,0.502006,0.805909,0.00429833,0.870783,0.00112736,0.0207291,0.607249,0.3946,0.359983,0.620781,0.485709,0.42394,0.358717,0.00750834,0.358242,0.788275,0.115483,0.865804,0.0345649,0.423424,0.792086,0.179739,0.928424,0.145251,0.5019,0.346895,0.129257,0.30559,0.480255,0.551337,0.904473,0.739369,0.2683,0.362219,0.649239,0.135312,0.990025,0.639256,0.622088,0.908162,0.198403,0.619657,0.667836,0.618993,0.764287,0.452572,0.691531,0.929156,0.05115,0.0671949,0.475303,0.583182,0.0109571,0.265343,0.541335,0.964424,0.0305737,0.484481,0.84843,0.298869,0.0141937,0.567411,0.797885,0.886799,0.0233058,0.551037,0.556566,0.855297,0.367111,0.341389,0.0545937,0.671905,0.991472,0.269107,0.3416,0.740961,0.583001,0.711872,0.333161,0.0926679,0.582945,0.399474,0.978212,0.995714,0.550913,0.0770582,0.412287,0.340279,0.558028,0.619096,0.818361,0.317651,0.934183,0.592025,0.120583,0.517138,0.769734,0.858932,0.130619,0.759406,0.386544,0.0520259,0.794384,0.889517,0.323474,0.97639,0.783527,0.0760421,0.960208,0.890086,0.861651,0.0952094,0.458289,0.336236,0.284143,0.749478,0.0710795,0.640743,0.376153,0.899552,0.208786,0.914748,0.238192,0.191323,0.483586,0.152767,0.633379,0.522797,0.330647,0.252622,0.279146,0.80175,0.432455,0.553275,0.546819,0.818495,0.682085,0.00855929,0.229584,0.442696,0.604502,0.853893,0.880528,0.759376,0.506542,0.0874749,0.168384,0.728005,0.350055,0.0114791,0.977921,0.417942,0.472217,0.330779,0.340542,0.212062,0.924347,0.885821,0.520724,0.0216834,0.279001,0.38162,0.873379,0.870727,0.589308,0.923559,0.451155,0.735703,0.451979,0.0298426,0.981206,0.337282,0.745899,0.410083,0.0443907,0.843941,0.170804,0.152622,0.72715,0.643105,0.0994459,0.18562,0.431264,0.585479,0.572196,0.322181,0.350112,0.946135,0.0215331,0.998658,0.244685,0.0731732,0.714368,0.288172,0.373377,0.68549,0.206056,0.816497,0.194252,0.60943,0.929285,0.0621396,0.227493,0.594684,0.0503926,0.559908,0.66368,0.187248,0.642606,0.890918,0.263635,0.823358,0.625005,0.173082,0.365649,0.911111,0.63418,0.0475848,0.0513828,0.913936,0.82426,0.399361,0.829585,0.95579,0.411272,0.64163,0.845965,0.677625,0.529341,0.146866,0.0480984,0.611258,0.93882,0.850122,0.229781,0.0179079,0.180296,0.742895,0.442696,0.118952,0.69967,0.935643,0.0629657,0.508179,0.544343,0.698687,0.0125103,0.0192308,0.267819,0.545964,0.365798,0.310917,0.623268,0.645263,0.302335,0.574214,0.677208,0.642024,0.662746,0.677802,0.104758,0.220658,0.97964,0.126894,0.328734,0.874623,0.542046,0.774015,0.452919,0.45929,0.380846,0.189231,0.278252,0.287548,0.634044,0.784705,0.0634015,0.478888,0.478338,0.881767,0.880972,0.857411,0.176733,0.0698614,0.87504,0.228128,0.932101,0.169822,0.962523,0.0979706,0.966195,0.882496,0.424193,0.429209,0.916683,0.0802591,0.662588,0.558341,0.134059,0.983229,0.97092,0.123505,0.932447,0.598249,0.0609984,0.252392,0.701464,0.846895,0.47844,0.589242,0.659629,0.0316561,0.213987,0.535469,0.952513,0.412733,0.553943,0.640169,0.534486,0.505522,0.40923,0.135136,0.30939,0.365805,0.894606,0.582001,0.419453,0.226808,0.536719,0.075567,0.380936,0.151784,0.652951,0.298102,0.102922,0.7151,0.0600608,0.980092,0.596816,0.00740731,0.992439,0.289102,0.624487,0.316766,0.994325,0.0407938,0.303377,0.794301,0.615519,0.949946,0.341611,0.60067,0.574421,0.292169,0.48107,0.688331,0.96928,0.553843,0.0669747,0.349071,0.335076,0.130921,0.399083,0.771421,0.337798,0.535755,0.975401,0.810929,0.642464,0.626043,0.846379,0.389538,0.891847,0.869463,0.8044,0.877189,0.443,0.0233855,0.746194,0.983855,0.328542,0.333927,0.704124,0.132839,0.208693,0.885276,0.606327,0.481644,0.277371,0.736663,0.15565,0.063341,0.782356,0.342374,0.250083,0.614337,0.959213,0.292217,0.487152,0.829131,0.120767,0.143399,0.666555,0.576102,0.588607,0.134147,0.637495,0.44872,0.463273,0.855222,0.909831,0.907015,0.484745,0.789388,0.0497586,0.0188299,0.232321,0.080521,0.829266,0.422279,0.119256,0.0681708,0.699231,0.708484,0.871782,0.831284,0.558412,0.830404,0.443296,0.00413311,0.84374,0.737526,0.912168,0.4087,0.32078,0.769428,0.121713,0.454857,0.568257,0.175451,0.161905,0.817435,0.984878,0.930707,0.903798,0.667262,0.813226,0.984116,0.444791,0.230985,0.839537,0.666035,0.381445,0.418286,0.96082,0.368618,0.31133,0.761841,0.70833,0.915472,0.905146,0.786454,0.972032,0.578723,0.779868,0.76742,0.528042,0.280747,0.927054,0.87109,0.0868713,0.496565,0.789492,0.18033,0.0748433,0.3047,0.194132,0.0988277,0.528105,0.337709,0.377563,0.554189,0.793111,0.638837,0.377494,0.336679,0.0564454,0.727209,0.818927,0.491637,0.0743353,0.119566,0.0257745,0.5043,0.0616326,0.537538,0.874368,0.0475959,0.657559,0.0911515,0.912601,0.787022,0.172021,0.227599,0.817198,0.581371,0.849935,0.3798,0.776859,0.7403,0.721933,0.357092,0.663683,0.246515,0.897327,0.534677,0.916104,0.728364,0.275355,0.168717,0.739926,0.200066,0.239738,0.540488,0.324496,0.570336,0.734035,0.57761,0.69073,0.125717,0.923776,0.434781,0.24175,0.867419,0.263183,0.705408,0.791365,0.63671,0.292734,0.985672,0.557729,0.154766,0.452138,0.789129,0.687845,0.354609,0.829775,0.0820541,0.715667,0.280745,0.399739,0.0469806,0.440417,0.324976,0.150196,0.859638,0.06666,0.488743,0.136045,0.784469,0.943541,0.673124,0.0970787,0.306514,0.735475,0.431386,0.0191811,0.352227,0.185017,0.150792,0.613561,0.235333,0.579867,0.598873,0.0892456,0.0736248,0.723703,0.97422,0.667321,0.354637,0.650014,0.338148,0.597864,0.237166,0.646471,0.988303,0.597273,0.892336,0.791702,0.593688,0.988444,0.313194,0.608916,0.480072,0.904329,0.70637,0.27777,0.119993,0.898263,0.431258,0.655598,0.748932,0.533857,0.00156379,0.713806,0.0249288,0.753543,0.715539,0.615331,0.779819,0.220306,0.843585,0.497258,0.507049,0.60717,0.954891,0.801533,0.573491,0.473547,0.973291,0.933965,0.644567,0.63368,0.0487349,0.784028,0.218868,0.339861,0.325253,0.513919,0.426455,0.0312368,0.832965,0.119902,0.0549637,0.656872,0.224921,0.98525,0.633944,0.021748,0.489379,0.366359,0.0624907,0.860813,0.460778,0.921529,0.148248,0.665224,0.548596,0.594635,0.0967844,0.234479,0.730313,0.461268,0.677268,0.978113,0.957515,0.541497,0.829883,0.805912,0.781817,0.438089,0.691612,0.835977,0.820027,0.417541,0.559503,0.499902,0.841373,0.517756,0.972994,0.302527,0.861033,0.290617,0.136332,0.236654,0.374328,0.244541,0.784022,0.666187,0.231389,0.321269,0.241977,0.990356,0.00782299,0.0283942,0.695715,0.125977,0.648369,0.362887,0.513869,0.648364,0.956146,0.690487,0.061591,0.950028,0.253391,0.932996,0.0204527,0.594178,0.534918,0.467534,|0.32348,0.519153,0.20009,0.731648,0.0399679,0.213797,0.600009,0.861216,0.637228,0.945249,0.536931,0.409154,0.239258,0.887564,0.590809,0.360306,0.721613,0.279809,0.981773,0.789915,0.337238,0.522327,0.799901,0.127196,0.1945,0.256193,0.308729,0.13891,0.143797,0.490702,0.0748849,0.0628854,0.749175,0.204507,0.56043,0.681972,0.363823,0.839845,0.1243,0.0192003,0.0197629,0.841838,0.891016,0.0389887,0.912721,0.0463049,0.459763,0.207455,0.661097,0.503951,0.260497,0.0051012,0.454257,0.902315,0.0173712,0.771559,0.792879,0.0345146,0.0115706,0.999199,0.394096,0.507167,0.66979,0.887399,0.149926,0.0231306,0.277191,0.561737,0.573466,0.755545,0.308387,0.496767,0.351781,0.388096,0.205491,0.686565,0.659325,0.717938,0.780709,0.560572,0.686597,0.000689268,0.225315,0.806826,0.315544,0.556195,0.667428,0.880074,0.740359,0.715941,0.879816,0.326141,0.981435,0.167052,0.0182808,0.66011,0.937345,0.470031,0.31152,0.482466,0.490959,0.656049,0.802358,0.021058,0.727595,0.515104,0.212789,0.505449,0.0551578,0.58377,0.346102,0.395114,0.0820791,0.943311,0.29645,0.661536,0.258885,0.231558,0.714609,0.908613,0.812271,0.629926,0.888745,0.0178524,0.453039,0.571191,0.690445,0.48897,0.187434,0.0434245,0.154965,0.326521,0.125135,0.489775,0.529124,0.764425,0.696628,0.26749,0.930024,0.297141,0.199004,0.0709363,0.968541,0.28209,0.581641,0.646513,0.862897,0.296899,0.865541,0.615566,0.313565,0.0191148,0.0762251,0.27047,0.0601954,0.568425,0.626944,0.833005,0.672244,0.198992,0.887957,0.542814,0.172517,0.389635,0.386898,0.743103,0.288957,0.461237,0.953607,0.222313,0.941298,0.486224,0.388929,0.478168,0.426991,0.731987,0.381253,0.0588146,0.47186,0.152115,0.0285892,0.430205,0.431981,0.823933,0.613551,0.614361,0.0139025,0.281313,0.438926,0.546223,0.634315,0.0258313,0.675429,0.182127,0.593044,0.379512,0.21998,0.952197,0.275391,0.438287,0.68089,0.418112,0.259063,0.878506,0.734495,0.955167,0.380075,0.805588,0.233853,0.764251,0.98935,0.509092,0.69461,0.502142,0.802221,0.193263,0.0948642,0.376858,0.559761,0.315361,0.675616,0.185218,0.734812,0.529573,0.298863,0.0925408,0.292878,0.55434,0.91178,0.576827,0.447749,0.491213,0.581124,0.495176,0.815591,0.970044,0.155463,0.0612907,0.0808664,0.0934848,0.209624,0.96423,0.12969,0.769467,0.404385,0.116487,0.903884,0.946069,0.121554,0.240698,0.378932,0.859217,0.471732,0.514082,0.850517,0.513022,0.111757,0.00291145,0.919459,0.00348043,0.948796,0.334822,0.250094,0.467046,0.0149113,0.612755,0.426823,0.5247,0.917084,0.169664,0.0240393,0.593219,0.437964,0.111719,0.632288,0.754836,0.117286,0.590672,0.147749,0.454786,0.504807,0.329305,0.0341287,0.403151,0.0498475,0.0270182,0.0270119,0.803554,0.951555,0.7224,0.798408,0.844971,0.763874,0.48004,0.579076,0.590842,0.690008,0.341946,0.00813586,0.159659,0.386128,0.142786,0.608654,0.773078,0.386099,0.468942,0.973045,0.32844,0.817048,0.306853,0.785761,0.792379,0.332938,0.44065,0.97298,0.440444,0.494401,0.540816,0.31249,0.945022,0.916565,0.095097,0.774709,0.0420704,0.82571,0.76879,0.675924,0.618967,0.0714601,0.607316,0.94873,0.930585,0.0641247,0.245178,0.705203,0.624426,0.598542,0.558968,0.283858,0.0205122,0.81515,0.403364,0.249903,0.573619,0.985965,0.839355,0.57633,0.879149,0.887146,0.501475,0.336639,0.644518,0.632189,0.357656,0.651602,0.690429,0.834815,0.742591,0.452912,0.397548,0.5481,0.409886,0.0687534,0.728019,0.0915937,0.397257,0.902591,0.0352866,0.715756,0.796013,0.0179924,0.988987,0.218367,0.907369,0.359326,0.843273,0.0864066,0.91494,0.381759,0.797922,0.32492,0.416556,0.76232,0.297053,0.473625,0.797633,0.31278,0.53196,0.317885,0.508201,0.435021,0.379041,0.300105,0.592315,0.37035,0.376287,0.512875,0.486102,0.0293598,0.222043,0.714322,0.821182,0.0990029,0.975824,0.0371687,0.0550485,0.185706,0.840299,0.172409,0.0651776,0.922595,0.121437,0.258254,0.583115,0.470965,0.966364,0.0822728,0.6808,0.0272763,0.918955,0.292109,0.578289,0.543053,0.615459,0.0502237,0.065064,0.67923,0.842204,0.796171,0.843425,0.207983,0.874589,0.852605,0.666426,0.815906,0.443227,0.843251,0.522667,0.577581,0.553161,0.365312,0.855264,0.748711,0.457944,0.545846,0.113179,0.652066,0.215816,0.272351,0.977651,0.532021,0.927932,0.334731,0.314725,0.968645,0.675301,0.637215,0.482277,0.114748,0.944441,0.0420658,0.0668198,0.927687,0.861873,0.373112,0.957723,0.193407,0.49124,0.70404,0.0774819,0.809538,0.599084,0.936212,0.169913,0.418518,0.101387,0.549738,0.0108052,0.649323,0.60312,0.677695,0.387388,0.00176978,0.824454,0.216352,0.218923,0.411384,0.450922,0.746262,0.695721,0.159916,0.653686,0.388147,0.76001,0.132018,0.517769,0.840282,0.623387,0.232347,0.406529,0.336001,0.179298,0.556525,0.411315,0.308999,0.417308,0.351474,0.223581,0.89696,0.340715,0.464261,0.865805,0.0927553,0.0673383,0.584959,0.213697,0.526099,0.628596,0.877736,0.557152,0.812636,0.506679,0.0441056,0.590279,0.169414,0.383975,0.376569,0.46356,0.135857,0.00947934,0.925553,0.900815,0.75243,0.758221,0.431995,0.659514,0.183349,0.932159,0.683775,0.881379,0.707113,0.210762,0.0690503,0.970101,0.150036,0.982866,0.47629,0.828849,0.285201,0.450189,0.637318,0.656832,0.076054,0.173122,0.216546,0.934305,0.997304,0.884586,0.179519,0.497671,0.394619,0.0885566,0.243727,0.296526,0.510847,0.931058,0.86318,0.425785,0.111266,0.292051,0.755094,0.138062,0.00252855,0.583917,0.224182,0.146519,0.442728,0.389331,0.576507,0.169059,0.542171,0.291427,0.472088,0.96871,0.54024,0.710023,0.500558,0.162271,0.272124,0.855039,0.807589,0.946891,0.0358686,0.632818,0.313939,0.714133,0.224712,0.0236383,0.817036,0.811966,0.901552,0.653865,0.184324,0.170448,0.565256,0.382111,0.673929,0.856531,0.597582,0.175531,0.205171,0.808195,0.674885,0.62407,0.0894849,0.995934,0.412464,0.747085,0.61454,0.858625,0.411963,0.980574,0.899688,0.290359,0.0491189,0.910784,0.0391746,0.0190436,0.630821,0.0362765,0.484993,0.0925603,0.370373,0.151103,0.155159,0.293301,0.881172,0.835552,0.879481,0.550991,0.37668,0.548385,0.723288,0.226151,0.732928,0.00245476,0.855703,0.078364,0.759596,0.696986,0.831915,0.671476,0.227926,0.689554,0.0117977,0.0112097,0.535538,0.276964,0.0188852,0.560072,0.759464,0.610337,0.433685,0.733737,0.116531,0.157966,0.175186,0.884427,0.0372254,0.258516,0.775663,0.16658,0.523401,0.619149,0.671159,0.978567,0.720918,0.194574,0.186108,0.106585,0.979502,0.582005,0.0814801,0.138317,0.0422762,0.0713108,0.91957,0.120067,0.920795,0.771594,0.110621,0.238155,0.260826,0.887963,0.155612,0.52553,0.383838,0.592181,0.77882,0.661312,0.452303,0.1689,0.994133,0.354477,0.0864692,0.855423,0.183348,0.340588,0.555226,0.869093,0.911851,0.778804,0.893479,0.952463,0.627023,0.934515,0.255375,0.642484,0.448202,0.956128,0.758833,0.376163,0.921161,0.564927,0.847782,0.330491,0.577539,0.186736,0.518684,0.155769,0.807979,0.297638,0.00311136,0.735246,0.664122,0.649856,0.111984,0.176615,0.165548,0.980268,0.709076,0.947357,0.300757,0.879055,0.651733,0.341776,0.284182,0.469934,0.730183,0.429388,0.141573,0.748227,0.395615,0.523703,0.84326,0.230121,0.851407,0.0293629,0.0463252,0.6442,0.368609,0.984345,0.382573,0.150877,0.650616,0.386442,0.103126,0.970495,0.219726,0.110258,0.17395,0.586834,0.343314,0.251131,0.316531,0.769225,0.443306,0.302581,0.941725,0.945518,0.384095,0.33469,0.908791,0.493249,0.791685,0.509053,0.678422,0.0250583,0.119883,0.108485,0.0533439,0.951364,0.685459,0.0554574,0.976857,0.536565,0.345379,0.327537,0.824871,0.801915,0.369279,0.81837,0.807487,0.186758,0.113584,0.227415,0.64937,0.67319,0.128345,0.27495,0.379926,0.530712,0.270828,0.586496,0.0915398,0.545761,0.665489,0.924895,0.0725663,0.0370977,0.0384175,0.288392,0.192562,0.263448,0.0470506,0.348738,0.359287,0.786129,0.922799,0.758708,0.0463609,0.751959,0.363839,0.325185,0.593405,0.162394,0.110547,0.461608,0.310153,0.966163,0.944714,0.742435,0.128983,0.205893,0.0046429,0.428876,0.239551,0.0256495,0.462548,0.244846,0.0170791,0.805869,0.45731,0.652812,0.221374,0.558263,0.671208,0.904162,0.802727,0.556016,0.211496,0.549574,0.230851,0.265708,0.694774,0.97832,0.48948,0.197131,0.592738,0.315441,0.666469,0.576922,0.186915,0.230388,0.836531,0.825113,0.567743,0.896251,0.962865,0.678909,0.319757,0.859349,0.549731,0.7997,0.259493,0.0572316,0.127665,0.0633965,0.521743,0.460199,0.0443611,0.62064,0.0243026,0.211883,0.822205,0.923873,0.939486,0.0782158,0.437022,0.255664,0.332578,0.240281,0.185189,0.05366,0.554183,0.391568,0.876591,0.938037,0.866865,0.241259,0.402045,0.588429,0.0842405,0.170234,0.52194,0.146362,0.601594,0.0707067,0.593891,0.624826,0.591382,0.0115929,0.0471882,0.677062,0.753158,0.924231,0.129028,0.161957,0.429868,0.258323,0.56339,0.118907,0.364068,0.266816,0.0487227,0.189562,0.322766,0.720278,0.33737,0.417815,0.560871,0.480116,0.717046,0.656957,0.0531857,0.265847,0.506506,0.0104725,0.0828898,0.623167,0.695889,0.391124,0.334409,0.43974,0.563843,0.920832,0.393891,0.194529,0.34268,0.552479,0.46399,0.532609,0.106898,0.332097,0.0598311,0.669625,0.0721132,0.816327,0.542715,0.876682,0.165045,0.925167,0.27762,0.537916,0.886325,0.613215,0.470308,0.302868,0.712746,0.290631,0.638465,0.245361,0.113266,0.880692,0.513509,0.913508,0.623692,0.853852,0.428229,0.818339,0.177899,0.957943,0.869968,0.299672,0.45316,0.364282,0.157072,0.587315,0.686708,0.0199385,|0.266387,0.722659,0.98503,0.396279,0.731636,0.473532,0.44855,0.614464,0.169183,0.648302,0.604611,0.775128,0.881736,0.798595,0.403755,0.763428,0.470726,0.133805,0.169501,0.898945,0.181071,0.473543,0.569745,0.177155,0.536443,0.558052,0.412142,0.990609,0.513977,0.215771,0.46944,0.901692,0.333539,0.792288,0.585133,0.466428,0.970704,0.765956,0.792153,0.441567,0.263642,0.537344,0.878231,0.685518,0.640487,0.786222,0.276448,0.0815191,0.751572,0.814812,0.87604,0.370354,0.93482,0.575229,0.614267,0.56497,0.0676657,0.913821,0.963546,0.0700315,0.249979,0.712328,0.272103,0.905242,0.532723,0.859329,0.946061,0.0105182,0.754958,0.434467,0.370321,0.517036,0.946462,0.354152,0.992951,0.614714,0.758491,0.308577,0.194899,0.312831,0.656132,0.611435,0.279197,0.223496,0.117119,0.477508,0.554373,0.73229,0.630296,0.0103764,0.0047785,0.577322,0.690578,0.713478,0.073255,0.0281537,0.537395,0.712092,0.943437,0.545283,0.0301008,0.958357,0.689351,0.789707,0.49233,0.313107,0.725002,0.419437,0.042706,0.863765,0.13803,0.134689,0.912564,0.268686,0.737881,0.667967,0.550865,0.357535,0.0945616,0.297717,0.120652,0.679807,0.891315,0.587834,0.243134,0.0997573,0.976028,0.583135,0.382051,0.873987,0.319054,0.0401536,0.829804,0.824971,0.326918,0.596323,0.838124,0.0677419,0.600166,0.648451,0.220662,0.512721,0.803103,0.683536,0.293461,0.0799495,0.219354,0.536236,0.263335,0.678716,0.347992,0.475005,0.841891,0.166546,0.50447,0.640961,0.593426,0.0147977,0.596142,0.89877,0.0209909,0.07861,0.245566,0.624438,0.29375,0.834548,0.152007,0.622397,0.250089,0.254545,0.217102,0.719993,0.325511,0.071689,0.38465,0.38103,0.378758,0.747433,0.633479,0.349234,0.398578,0.621661,0.169169,0.862013,0.77719,0.84817,0.597337,0.0662047,0.886254,0.747137,0.44466,0.912656,0.925576,0.983285,0.392371,0.628752,0.550205,0.569687,0.739088,0.742279,0.345899,0.669309,0.649519,0.921998,0.258076,0.715981,0.4362,0.0967517,0.849493,0.779793,0.385789,0.46323,0.564473,0.996007,0.844716,0.619514,0.468749,0.138752,0.719198,0.823406,0.490256,0.303735,0.904687,0.545069,0.212561,0.0340714,0.259531,0.241693,0.979773,0.00904322,0.325628,0.316554,0.695546,0.0474156,0.409336,0.828245,0.261812,0.256236,0.326242,0.339299,0.451721,0.205416,0.529159,0.521222,0.405074,0.2966,0.439624,0.0211083,0.579979,0.637218,0.484113,0.283953,0.946851,0.759452,0.983528,0.70702,0.862284,0.815632,0.7374,0.673943,0.265421,0.886754,0.560314,0.497045,0.196272,0.841482,0.572393,0.543216,0.0608636,0.0601438,0.155029,0.49016,0.0316606,0.580256,0.653324,0.837766,0.360842,0.450254,0.0435335,0.990096,0.638235,0.0304114,0.789654,0.197786,0.850165,0.802326,0.672209,0.113821,0.326657,0.819015,0.951026,0.392898,0.139717,0.57102,0.488547,0.969229,0.766852,0.463776,0.965431,0.234176,0.32028,0.281532,0.498856,0.435789,0.874907,0.221527,0.662331,0.0612617,0.515153,0.72518,0.847294,0.179025,0.0071975,0.615747,0.494885,0.111205,0.338191,0.439697,0.130936,0.789558,0.697436,0.634216,0.937406,0.327079,0.977954,0.342208,0.919856,0.461349,0.666129,0.302488,0.118018,0.178446,0.490696,0.584578,0.53697,0.846452,0.566244,0.995307,0.452948,0.520462,0.862379,0.97168,0.864788,0.973507,0.973989,0.136847,0.533977,0.131855,0.549859,0.731822,0.641171,0.391562,0.595862,0.00115836,0.499931,0.95202,0.679475,0.971913,0.844108,0.994659,0.277051,0.789917,0.664753,0.954623,0.53563,0.360731,0.769379,0.202561,0.854187,0.991557,0.405585,0.769034,0.211902,0.497468,0.641428,0.964022,0.463979,0.690539,0.0913819,0.639084,0.158703,0.164257,0.537477,0.605395,0.548092,0.928661,0.571548,0.634185,0.974132,0.796413,0.440277,0.107376,0.0117624,0.497477,0.507064,0.0118965,0.145281,0.557577,0.114967,0.483193,0.33592,0.619224,0.176018,0.334117,0.0005005,0.84164,0.913481,0.216866,0.223486,0.662969,0.0212544,0.845455,0.766357,0.464704,0.556119,0.253707,0.706052,0.353047,0.523784,0.566796,0.180653,0.417156,0.218863,0.707911,0.959494,0.472144,0.474272,0.79472,0.371438,0.535728,0.31372,0.427325,0.768603,0.0125405,0.172561,0.880606,0.980461,0.533704,0.642096,0.258965,0.430143,0.412676,0.309679,0.527088,0.244468,0.0982988,0.445313,0.548442,0.392849,0.175684,0.948162,0.0811648,0.822883,0.0984102,0.435186,0.304442,0.500743,0.691019,0.298259,0.134867,0.712374,0.278571,0.363239,0.770844,0.453788,0.210039,0.409124,0.130373,0.80868,0.387548,0.134686,0.942302,0.0746192,0.700043,0.255916,0.746306,0.598852,0.236653,0.916788,0.355242,0.740738,0.239003,0.308997,0.567428,0.72583,0.418271,0.804654,0.935521,0.799285,0.145103,0.255309,0.623772,0.550713,0.0111979,0.0443056,0.616026,0.998488,0.382002,0.240877,0.304485,0.993435,0.440813,0.98183,0.941279,0.223208,0.49736,0.461108,0.512171,0.905007,0.877795,0.224056,0.414288,0.189049,0.217933,0.179603,0.98139,0.35856,0.689774,0.602559,0.613407,0.884075,0.2834,0.225332,0.712537,0.124523,0.464332,0.810686,0.346615,0.113991,0.213422,0.947945,0.247632,0.714257,0.990709,0.251967,0.397126,0.5795,0.529291,0.385317,0.685415,0.37559,0.422706,0.171076,0.752322,0.40397,0.618655,0.480661,0.771851,0.337973,0.0956417,0.834204,0.968789,0.215345,0.428155,0.969858,0.0279556,0.711858,0.535576,0.227837,0.990934,0.911759,0.955794,0.98827,0.794031,0.918086,0.0111531,0.524613,0.199502,0.475532,0.128908,0.0432779,0.324043,0.502219,0.242888,0.637422,0.525349,0.532268,0.0129147,0.469754,0.959394,0.811825,0.523485,0.0865231,0.670079,0.98511,0.572319,0.99004,0.655346,0.192649,0.211363,0.582496,0.0179044,0.306838,0.956489,0.510171,0.845274,0.226619,0.505651,0.651402,0.202553,0.119653,0.560018,0.447491,0.940103,0.998323,0.341298,0.02086,0.569383,0.894426,0.587719,0.0184477,0.777613,0.298181,0.233972,0.590306,0.638419,0.774076,0.857454,0.680839,0.76908,0.660025,0.0295994,0.400847,0.841549,0.835298,0.459342,0.798405,0.935007,0.421798,0.818332,0.332481,0.610795,0.367485,0.0257325,0.95575,0.621637,0.617424,0.512369,0.447146,0.695531,0.848593,0.047858,0.10299,0.288103,0.115038,0.348655,0.188339,0.120637,0.166277,0.2411,0.0343771,0.523808,0.469981,0.208819,0.38272,0.741683,0.476649,0.0103007,0.202747,0.933752,0.745609,0.971992,0.092575,0.730931,0.379192,0.659943,0.523541,0.879958,0.390993,0.736654,0.547564,0.0791554,0.75413,0.309407,0.0778763,0.0197535,0.128874,0.574779,0.856203,0.0446531,0.479015,0.667738,0.620694,0.0521613,0.040386,0.989194,0.361365,0.191775,0.0657954,0.742087,0.156891,0.02715,0.389491,0.10163,0.225408,0.318792,0.666585,0.173491,0.330151,0.0130385,0.494353,0.630827,0.29905,0.132431,0.929297,0.478207,0.583896,0.648435,0.262422,0.807672,0.94534,0.827634,0.549053,0.24728,0.202,0.181573,0.42019,0.202424,0.566458,0.63486,0.538818,0.0904828,0.790742,0.198424,0.0866558,0.407762,0.264376,0.00956571,0.29045,0.587308,0.867792,0.0423318,0.0632971,0.213118,0.309507,0.574208,0.570171,0.722311,0.0603847,0.369679,0.181525,0.317505,0.940179,0.495116,0.617656,0.674239,0.269404,0.180852,0.700281,0.351138,0.452253,0.0764912,0.771466,0.215909,0.88432,0.661574,0.0176003,0.52346,0.940486,0.806036,0.319526,0.590682,0.248203,0.328596,0.80638,0.632839,0.746322,0.725986,0.0567868,0.55608,0.0734326,0.462744,0.172119,0.961696,0.849703,0.11291,0.231896,0.0985544,0.386987,0.277558,0.45345,0.979149,0.955745,0.0882615,0.0407621,0.482775,0.338591,0.478158,0.040413,0.684813,0.976878,0.988228,0.129189,0.921159,0.696307,0.174831,0.201531,0.0139761,0.375414,0.50193,0.320361,0.362618,0.0710385,0.668228,0.244672,0.557821,0.505524,0.538694,0.793032,0.803036,0.435303,0.405978,0.361306,0.0636883,0.637101,0.479259,0.902621,0.178373,0.888599,0.747752,0.156541,0.968056,0.985537,0.305642,0.861145,0.522984,0.775815,0.2666,0.213538,0.259488,0.662351,0.596333,0.904195,0.941958,0.323673,0.468012,0.117307,0.298667,0.693861,0.957087,0.111133,0.631715,0.78505,0.638059,0.752941,0.556449,0.182438,0.0412934,0.992627,0.741873,0.955334,0.813491,0.339791,0.627663,0.512767,0.302932,0.118241,0.261436,0.377358,0.618737,0.937321,0.475766,0.219588,0.232924,0.464534,0.123253,0.485788,0.762324,0.0774915,0.546783,0.564876,0.36064,0.313228,0.643856,0.736666,0.933824,0.161898,0.0349288,0.22702,0.442351,0.0943851,0.238206,0.836262,0.528736,0.442735,0.547827,0.5038,0.532727,0.97548,0.699107,0.857746,0.450429,0.101782,0.515636,0.133637,0.740946,0.758197,0.1171,0.136535,0.909764,0.428951,0.210943,0.572791,0.769663,0.809263,0.344238,0.641236,0.897735,0.835883,0.503852,0.876346,0.809517,0.168477,0.840281,0.782896,0.900257,0.298443,0.750447,0.815497,0.925626,0.431097,0.741042,0.848759,0.702214,0.51341,0.568704,0.38786,0.396851,0.877455,0.24515,0.999425,0.554278,0.831084,0.734982,0.663474,0.664664,0.920359,0.841903,0.719312,0.762246,0.248001,0.513024,0.856034,0.562643,0.383144,0.366519,0.407801,0.85133,0.777676,0.708581,0.552369,0.632217,0.510062,0.929455,0.763759,0.413464,0.0755008,0.000326037,0.442015,0.945151,0.701472,0.284408,0.553249,0.69203,0.773971,0.854157,0.908025,0.0245571,0.865093,0.759905,0.491226,0.0860959,0.259799,0.77268,0.0706061,0.867243,0.578213,0.50988,0.474741,0.927271,0.228723,0.0418139,0.877587,0.831659,0.853303,0.758968,0.689426,0.784561,0.42978,0.535614,0.315169,0.0695145,0.420027,0.478565,0.849326,0.91706,0.334186,0.609196,0.281994,0.83065,|0.648039,0.557383,0.887138,0.023406,0.191024,0.7368,0.115231,0.225936,0.0479991,0.128011,0.561456,0.155693,0.818598,0.932141,0.694502,0.3983,0.649694,0.994861,0.078571,0.650734,0.87997,0.123051,0.706757,0.619556,0.766192,0.0656751,0.46177,0.601631,0.132985,0.367068,0.578346,0.00103605,0.52739,0.589099,0.412626,0.72777,0.0797839,0.475082,0.871719,0.213087,0.0236251,0.664141,0.150209,0.856471,0.99159,0.660938,0.360789,0.71457,0.328024,0.699433,0.931827,0.73617,0.690516,0.747055,0.624116,0.237748,0.0886508,0.134612,0.254483,0.0156357,0.934953,0.368677,0.327802,0.94312,0.48611,0.118833,0.541792,0.661365,0.195315,0.483125,0.643085,0.254797,0.173119,0.914213,0.0737839,0.834228,0.59276,0.911892,0.817018,0.308269,0.093882,0.884542,0.154259,0.874963,0.400864,0.659843,0.158478,0.400762,0.994551,0.941719,0.459935,0.923876,0.228488,0.650133,0.545431,0.981607,0.127461,0.825955,0.775438,0.907473,0.455854,0.969603,0.185451,0.705898,0.247834,0.799443,0.0348231,0.248047,0.15716,0.9032,0.857644,0.342933,0.0297424,0.357771,0.11705,0.625995,0.14134,0.578137,0.184061,0.84278,0.640003,0.71053,0.307985,0.196743,0.933286,0.288854,0.966711,0.713665,0.724373,0.0436931,0.452616,0.00585574,0.206622,0.241604,0.839611,0.990528,0.556125,0.746206,0.840154,0.251137,0.415235,0.554875,0.50923,0.848895,0.578633,0.879032,0.288271,0.788386,0.557046,0.515757,0.415012,0.427112,0.256311,0.594984,0.353067,0.0430821,0.340703,0.755347,0.938963,0.134722,0.513784,0.0866762,0.965205,0.414054,0.931803,0.185843,0.533317,0.888394,0.110196,0.854048,0.296088,0.301094,0.00437862,0.248681,0.488362,0.899019,0.693783,0.325483,0.39932,0.266761,0.601069,0.471491,0.440505,0.120834,0.927111,0.79679,0.932277,0.0367793,0.479953,0.8863,0.144336,0.617262,0.596549,0.0712551,0.16091,0.398514,0.624853,0.923331,0.895658,0.208167,0.504633,0.61683,0.522706,0.143098,0.583019,0.709241,0.120554,0.374099,0.121596,0.402952,0.750939,0.313852,0.411935,0.206872,0.465244,0.375733,0.956166,0.0229135,0.836117,0.258798,0.710881,0.821475,0.300361,0.781746,0.634116,0.13105,0.196489,0.758921,0.587759,0.838459,0.205146,0.291881,0.139986,0.585431,0.291598,0.16295,0.110939,0.748668,0.816577,0.3752,0.422435,0.286174,0.931558,0.922056,0.818802,0.933215,0.381088,0.882015,0.876081,0.887563,0.478083,0.314869,0.0935603,0.606906,0.205617,0.30725,0.71283,0.733349,0.548474,0.633473,0.975307,0.965084,0.0951276,0.622638,0.35113,0.198131,0.863203,0.222768,0.795926,0.652097,0.821579,0.23239,0.110746,0.164565,0.492089,0.0778285,0.716709,0.601238,0.261494,0.627263,0.372742,0.814059,0.310139,0.87575,0.467099,0.233241,0.787896,0.28331,0.145588,0.737584,0.554469,0.861075,0.848783,0.504525,0.722245,0.274214,0.919228,0.342027,0.310654,0.399928,0.264711,0.821661,0.547221,0.788402,0.586238,0.877736,0.299865,0.800629,0.5098,0.888653,0.014702,0.310635,0.114348,0.314105,0.17426,0.35611,0.0982451,0.0874971,0.556422,0.725822,0.357296,0.596281,0.0570323,0.879611,0.507772,0.555142,0.646698,0.723226,0.509636,0.740915,0.641043,0.838239,0.193301,0.791269,0.410722,0.233788,0.817142,0.237776,0.786856,0.813447,0.390458,0.458059,0.81409,0.780859,0.495898,0.0953885,0.909541,0.369084,0.286592,0.914137,0.576426,0.434768,0.638857,0.720197,0.370269,0.8646,0.999882,0.996515,0.0134914,0.706023,0.105036,0.962947,0.534888,0.493259,0.148032,0.905658,0.907406,0.479249,0.53999,0.771657,0.494216,0.590607,0.658296,0.0583948,0.413187,0.114574,0.78052,0.662394,0.403001,0.49601,0.22412,0.456769,0.162687,0.111432,0.983723,0.271388,0.497202,0.891614,0.851543,0.423097,0.16922,0.936725,0.646364,0.146619,0.0213802,0.646492,0.766254,0.18916,0.698586,0.78569,0.820019,0.853128,0.907293,0.58041,0.318778,0.915402,0.197811,0.917274,0.0151959,0.382549,0.780613,0.340211,0.556605,0.592327,0.303516,0.969588,0.394168,0.876361,0.511368,0.82977,0.188267,0.150837,0.437038,0.830582,0.829239,0.549981,0.273266,0.257058,0.558946,0.870354,0.230859,0.636107,0.0191655,0.996819,0.890299,0.229041,0.775302,0.127499,0.800797,0.828628,0.689498,0.487581,0.50044,0.130432,0.584931,0.616268,0.425663,0.0782369,0.127829,0.963902,0.364846,0.374716,0.0791367,0.581035,0.0973935,0.112957,0.279763,0.413929,0.0916327,0.978981,0.551696,0.97236,0.966694,0.175465,0.840227,0.362876,0.321442,0.791515,0.447623,0.679082,0.264536,0.912751,0.577434,0.376974,0.85511,0.237129,0.62611,0.510495,0.310624,0.800456,0.307354,0.860213,0.467551,0.573813,0.359361,0.294266,0.691087,0.126429,0.405092,0.924038,0.99474,0.29075,0.211499,0.904799,0.352551,0.204413,0.734923,0.655296,0.666465,0.0797028,0.70872,0.295905,0.636881,0.766601,0.980123,0.872137,0.266299,0.31293,0.21422,0.660483,0.492341,0.322291,0.0751849,0.405202,0.727909,0.766319,0.779694,0.012985,0.70115,0.0913271,0.533125,0.147184,0.870373,0.707021,0.760593,0.347961,0.0963312,0.511895,0.00839025,0.952321,0.380642,0.260379,0.814183,0.0876777,0.855286,0.83255,0.0722884,0.903597,0.878988,0.887848,0.0902785,0.244063,0.562415,0.54627,0.93849,0.0116015,0.337934,0.721725,0.176584,0.359742,0.666296,0.219994,0.392211,0.492528,0.845622,0.0756395,0.478163,0.548085,0.222424,0.195438,0.917074,0.433579,0.336925,0.84173,0.144989,0.114977,0.608445,0.196004,0.667149,0.948772,0.176151,0.908525,0.959263,0.0966823,0.409502,0.489643,0.710009,0.973584,0.991805,0.233714,0.621653,0.315922,0.976625,0.660776,0.1533,0.575339,0.672907,0.069468,0.667351,0.437644,0.254515,0.240316,0.677824,0.415112,0.510077,0.716549,0.93901,0.769078,0.833045,0.343126,0.981751,0.9121,0.21889,0.778931,0.583151,0.0236529,0.517973,0.714245,0.0276931,0.30759,0.932002,0.00810438,0.572706,0.607552,0.0614079,0.225066,0.716702,0.101023,0.0839759,0.89072,0.756604,0.331984,0.488346,0.186352,0.391779,0.0204313,0.258181,0.76377,0.945503,0.262021,0.628744,0.505533,0.909566,0.399062,0.715583,0.965999,0.275465,0.958449,0.3384,0.33067,0.0863311,0.511654,0.0741209,0.316524,0.612845,0.588044,0.282774,0.374955,0.32385,0.457393,0.0514416,0.82558,0.185178,0.106859,0.167544,0.0540375,0.115106,0.0244836,0.367283,0.0786054,0.283722,0.0799901,0.698883,0.764253,0.655676,0.486244,0.0460896,0.854129,0.406386,0.384096,0.333074,0.274675,0.642223,0.868748,0.525562,0.614456,0.311418,0.835242,0.302662,0.780529,0.566225,0.621138,0.458532,0.813423,0.433363,0.0981953,0.648221,0.532329,0.212084,0.310842,0.769819,0.774592,0.468181,0.770551,0.43571,0.655284,0.0541471,0.327569,0.241361,0.563745,0.192199,0.53926,0.533531,0.171207,0.969276,0.51668,0.079842,0.878271,0.413145,0.139476,0.385402,0.265926,0.0917376,0.699996,0.415,0.966793,0.714866,0.548711,0.80371,0.273655,0.873376,0.00179112,0.0476516,0.971301,0.311925,0.182257,0.318195,0.988937,0.816014,0.52079,0.740179,0.850545,0.814809,0.781064,0.0283281,0.2695,0.545833,0.50919,0.244739,0.569658,0.415661,0.592919,0.0647103,0.0888152,0.555071,0.953918,0.536977,0.0876342,0.777106,0.122605,0.281963,0.88381,0.0902115,0.961758,0.860166,0.807845,0.986327,0.179445,0.292841,0.789244,0.0637053,0.630619,0.857595,0.706241,0.0568966,0.424275,0.250395,0.328969,0.0931623,0.681144,0.132868,0.441097,0.00642884,0.230373,0.0556855,0.276524,0.811369,0.661349,0.950601,0.0633128,0.235258,0.891606,0.431886,0.269012,0.13139,0.689519,0.0295685,0.236253,0.414933,0.265653,0.76632,0.674634,0.840053,0.478115,0.881161,0.658944,0.455676,0.730686,0.0422813,0.92361,0.192537,0.496635,0.301873,0.982056,0.104824,0.869802,0.304845,0.447863,0.523221,0.333026,0.0654451,0.209766,0.634755,0.144017,0.414415,0.641599,0.599509,0.450355,0.898686,0.226668,0.589788,0.259606,0.189834,0.21138,0.145482,0.617291,0.663239,0.00845283,0.7046,0.893489,0.0599577,0.302977,0.272416,0.712717,0.56428,0.893196,0.930619,0.491814,0.288923,0.918202,0.737731,0.171383,0.795595,0.727289,0.285687,0.279365,0.473844,0.681437,0.705656,0.853892,0.541079,0.634954,0.74722,0.832411,0.664935,0.137961,0.797566,0.0915948,0.271155,0.131743,0.35269,0.880841,0.606174,0.524361,0.404746,0.479357,0.207947,0.574372,0.446849,0.49342,0.903425,0.832657,0.0911067,0.624391,0.510047,0.391303,0.397497,0.135063,0.0140208,0.791185,0.227648,0.085573,0.12975,0.721197,0.969678,0.511929,0.105922,0.730972,0.709402,0.862313,0.617089,0.998562,0.618835,0.780482,0.975037,0.250771,0.601497,0.0316834,0.153156,0.402249,0.334336,0.644685,0.4217,0.315133,0.205248,0.765456,0.721244,0.319943,0.597021,0.793772,0.267358,0.319258,0.55819,0.814849,0.914757,0.13128,0.47951,0.79723,0.26951,0.860832,0.290463,0.534609,0.0612949,0.136235,0.0935718,0.158624,0.630203,0.558227,0.804773,0.401789,0.503167,0.692576,0.505835,0.397049,0.976089,0.571755,0.254114,0.00129551,0.151242,0.973463,0.513915,0.930425,0.213928,0.452581,0.765894,0.225754,0.791713,0.33833,0.985961,0.0604042,0.404478,0.485419,0.0776843,0.0225853,0.00224441,0.0400248,0.568101,0.910657,0.159157,0.282197,0.402849,0.901038,0.880068,0.670101,0.501279,0.800467,0.705217,0.543619,0.721412,0.858006,0.0315278,0.921096,0.427872,0.899115,0.360437,0.835764,0.565412,0.899165,0.887895,0.738455,0.386131,0.848259,0.451057,0.312393,0.187439,0.593634,0.539053,0.643399,0.239354,0.242677,0.565885,0.636392,0.853355,0.543139,0.0932117,0.902286,0.149943,0.71438,0.749922,0.283703,|0.0907732,0.63547,0.115847,0.47449,0.04175,0.402968,0.269853,0.540651,0.290303,0.817784,0.71014,0.45841,0.347391,0.667508,0.0415909,0.109757,0.584777,0.570572,0.567427,0.4171,0.733845,0.587305,0.142025,0.592649,0.322583,0.236437,0.685208,0.441488,0.396874,0.769354,0.520664,0.249214,0.590868,0.764671,0.353746,0.59245,0.335132,0.101101,0.790572,0.757118,0.163084,0.0248975,0.223359,0.457744,0.784022,0.782155,0.557658,0.682143,0.655494,0.374415,0.585013,0.274831,0.85545,0.812034,0.217652,0.877769,0.653793,0.571222,0.295553,0.725189,0.546793,0.895577,0.93934,0.873308,0.207921,0.298518,0.776076,0.92122,0.831851,0.784335,0.0422863,0.980738,0.369432,0.835961,0.744309,0.635702,0.620774,0.897933,0.708491,0.336583,0.751521,0.352439,0.332951,0.880431,0.762479,0.927568,0.751495,0.0865039,0.0355808,0.978086,0.47929,0.714612,0.283961,0.741911,0.776942,0.600754,0.123458,0.744058,0.138472,0.666214,0.32797,0.743339,0.491313,0.611667,0.28323,0.427422,0.480166,0.797728,0.123067,0.837744,0.602475,0.15028,0.841428,0.23813,0.699354,0.218647,0.6308,0.37869,0.40545,0.758017,0.422174,0.462105,0.91444,0.209945,0.0907441,0.37529,0.745108,0.613476,0.769322,0.761243,0.67524,0.957038,0.447219,0.541856,0.865967,0.621568,0.144074,0.609929,0.165097,0.242378,0.17664,0.641119,0.197275,0.670264,0.290708,0.303837,0.492773,0.705774,0.538631,0.00704581,0.236747,0.968851,0.702184,0.541458,0.242309,0.97617,0.247346,0.539391,0.763811,0.628765,0.0927635,0.610638,0.887424,0.491089,0.529896,0.368432,0.0440823,0.0617555,0.17161,0.989267,0.227034,0.44127,0.392679,0.839193,0.105783,0.216778,0.189157,0.829991,0.720367,0.683719,0.345684,0.00956947,0.836362,0.00512838,0.304844,0.708888,0.0867857,0.424369,0.5265,0.896612,0.216261,0.32148,0.0505454,0.0961229,0.603084,0.592998,0.692577,0.504955,0.835523,0.758792,0.389291,0.690989,0.968582,0.0797862,0.802101,0.148618,0.0346221,0.0634509,0.863459,0.619162,0.659333,0.931455,0.335406,0.402104,0.310002,0.101157,0.287401,0.47995,0.302387,0.305312,0.037461,0.393199,0.732104,0.673974,0.973515,0.6783,0.594201,0.152966,0.00175685,0.976234,0.429942,0.553763,0.968995,0.0526704,0.25023,0.76383,0.12533,0.152077,0.16697,0.475548,0.265454,0.161435,0.342017,0.467574,0.341084,0.197897,0.951494,0.244708,0.790725,0.81424,0.680422,0.104693,0.650152,0.878112,0.533326,0.364102,0.0981854,0.853637,0.336882,0.179403,0.129166,0.230365,0.137894,0.43839,0.438512,0.404661,0.432005,0.400874,0.659627,0.26159,0.650807,0.673496,0.348784,0.235471,0.726493,0.903641,0.167176,0.919387,0.900365,0.841975,0.76056,0.136023,0.244281,0.65493,0.598142,0.213145,0.279442,0.863596,0.214638,0.0511892,0.873184,0.440314,0.163725,0.519958,0.786287,0.491703,0.389012,0.563917,0.619117,0.794319,0.0335312,0.353936,0.588324,0.389358,0.146372,0.746933,0.850805,0.533166,0.550103,0.0371894,0.831477,0.645602,0.540953,0.431772,0.588178,0.504619,0.576007,0.493383,0.095463,0.195521,0.698459,0.161301,0.866173,0.412311,0.0280788,0.243038,0.825624,0.52102,0.360916,0.337737,0.761439,0.981753,0.74525,0.0726777,0.347545,0.350436,0.382333,0.72443,0.24525,0.460976,0.115739,0.873843,0.792344,0.300635,0.205662,0.356845,0.570939,0.0107881,0.7734,0.458707,0.364959,0.899363,0.309223,0.491769,0.987307,0.324102,0.120351,0.871759,0.413395,0.110081,0.29301,0.055271,0.431476,0.594547,0.125095,0.446724,0.643622,0.766616,0.933105,0.58092,0.68408,0.872055,0.27957,0.306973,0.9846,0.6945,0.763983,0.0343529,0.261646,0.664591,0.316483,0.0547516,0.504638,0.765135,0.481411,0.832469,0.12347,0.0691902,0.0986542,0.541057,0.106097,0.846101,0.362411,0.575866,0.281482,0.213334,0.128359,0.40952,0.0422857,0.672439,0.774921,0.310159,0.179674,0.402212,0.0596694,0.980748,0.119119,0.678091,0.1421,0.176615,0.59342,0.992651,0.884497,0.457745,0.979108,0.214498,0.425231,0.892038,0.750457,0.46499,0.17641,0.951098,0.791682,0.354561,0.296831,0.645081,0.763208,0.382947,0.191558,0.409607,0.717203,0.839931,0.294017,0.792203,0.831964,0.420095,0.191505,0.496703,0.00197119,0.00526279,0.345117,0.108553,0.414788,0.924595,0.0532773,0.479446,0.549423,0.680548,0.156084,0.36411,0.0334508,0.961434,0.50742,0.892103,0.885202,0.806335,0.935671,0.945731,0.657354,0.932059,0.0736284,0.909447,0.566234,0.425593,0.509779,0.0147895,0.672096,0.324892,0.688441,0.270837,0.389555,0.595577,0.0550164,0.288238,0.71342,0.509351,0.937867,0.828828,0.149766,0.321726,0.10464,0.492843,0.478805,0.14589,0.705021,0.583654,0.82977,0.229665,0.371079,0.566714,0.0697944,0.557521,0.656858,0.740645,0.227621,0.867142,0.987086,0.434934,0.993144,0.599979,0.267112,0.900812,0.880819,0.493531,0.408717,0.102365,0.574116,0.848677,0.134977,0.39672,0.232619,0.158491,0.0591763,0.212161,0.0812113,0.984191,0.595631,0.782369,0.492749,0.877199,0.835076,0.719109,0.845416,0.266244,0.846399,0.242487,0.903606,0.947215,0.841451,0.0553632,0.303583,0.193874,0.144751,0.719547,0.82805,0.318407,0.624152,0.493988,0.399047,0.135094,0.208407,0.449072,0.276264,0.15097,0.237396,0.178442,0.659282,0.543385,0.903416,0.960632,0.269815,0.955758,0.349546,0.584999,0.64892,0.704027,0.572182,0.269318,0.980086,0.210151,0.673218,0.728385,0.699785,0.343654,0.7179,0.810831,0.547114,0.164145,0.60306,0.590652,0.504498,0.224282,0.127596,0.378819,0.449862,0.896049,0.294278,0.601708,0.895992,0.937331,0.395771,0.0838056,0.384013,0.695921,0.101371,0.39859,0.10428,0.273669,0.481012,0.768222,0.276091,0.551876,0.326685,0.781625,0.922342,0.34753,0.720085,0.276564,0.969051,0.00688368,0.486864,0.233022,0.66973,0.88662,0.23866,0.220631,0.421265,0.515162,0.68444,0.390322,0.151895,0.387089,0.876765,0.549742,0.0858261,0.215112,0.476814,0.348808,0.917835,0.614094,0.0981981,0.118361,0.604577,0.438047,0.37185,0.47595,0.465646,0.598508,0.233552,0.139732,0.326806,0.680229,0.0936725,0.426428,0.312487,0.122635,0.206781,0.344259,0.0391424,0.82367,0.153056,0.428255,0.670914,0.834885,0.0745804,0.873164,0.302679,0.499283,0.0361168,0.971043,0.446177,0.587287,0.163404,0.612298,0.849053,0.993266,0.406937,0.32158,0.585178,0.409289,0.155745,0.886361,0.348575,0.0227397,0.0914817,0.659573,0.321583,0.455143,0.847298,0.396496,0.968022,0.0986614,0.498872,0.221934,0.493546,0.270592,0.563967,0.335093,0.177463,0.980201,0.107055,0.465181,0.517945,0.390912,0.388584,0.804386,0.146557,0.496821,0.195368,0.265624,0.248537,0.563675,0.791159,0.0949851,0.104883,0.252658,0.357356,0.367048,0.243029,0.097942,0.337045,0.448983,0.647177,0.614355,0.166422,0.385967,0.0270513,0.620507,0.533379,0.919682,0.396592,0.558127,0.959606,0.00805479,0.401441,0.411037,0.969475,0.644156,0.351486,0.847284,0.0220995,0.989297,0.0891129,0.103871,0.140181,0.577429,0.127872,0.660128,0.681221,0.804326,0.2604,0.188361,0.735009,0.55282,0.345924,0.410695,0.932013,0.413765,0.359833,0.509772,0.503512,0.159069,0.150797,0.892453,0.337864,0.405289,0.389397,0.871375,0.924679,0.900085,0.815027,0.343179,0.769879,0.852319,0.646479,0.938046,0.728788,0.639671,0.486385,0.169343,0.575195,0.132834,0.426463,0.238044,0.242629,0.818953,0.902042,0.583136,0.646568,0.93829,0.693362,0.895658,0.207524,0.805485,0.138222,0.0863744,0.0166324,0.846987,0.792326,0.204442,0.176461,0.963825,0.620422,0.0262418,0.208295,0.32555,0.840399,0.401622,0.488812,0.011555,0.815592,0.926795,0.519157,0.429555,0.102305,0.235694,0.506566,0.934526,0.599035,0.508831,0.514875,0.625714,0.61064,0.653839,0.095278,0.885314,0.950411,0.565544,0.339788,0.691172,0.339029,0.155721,0.523271,0.124182,0.508447,0.802457,0.804841,0.968878,0.576723,0.341028,0.981537,0.970865,0.570535,0.0268463,0.228326,0.949653,0.804296,0.658029,0.599052,0.156534,0.68729,0.960507,0.14156,0.0714368,0.876763,0.908687,0.732313,0.336468,0.688519,0.0575249,0.812307,0.987043,0.590813,0.679686,0.811665,0.775175,0.363812,0.117448,0.794632,0.73611,0.215418,0.614976,0.121195,0.899577,0.812082,0.567614,0.735788,0.230693,0.00841594,0.0806273,0.788229,0.27376,0.169515,0.883927,0.78564,0.807784,0.986101,0.377559,0.770145,0.0931423,0.80208,0.587356,0.63225,0.622193,0.337686,0.628449,0.50349,0.667244,0.774962,0.176594,0.664087,0.0284542,0.386289,0.602883,0.682478,0.473133,0.953015,0.43938,0.144708,0.0205144,0.0198758,0.471139,0.790708,0.209814,0.0988163,0.0632042,0.628961,0.892382,0.710284,0.93033,0.0410969,0.621674,0.094602,0.222374,0.654982,0.0719191,0.0844764,0.859239,0.470837,0.138873,0.240131,0.931901,0.734277,0.279687,0.516362,0.19147,0.676405,0.965191,0.446692,0.524677,0.295974,0.698267,0.612342,0.591777,0.768855,0.333652,0.437187,0.0213566,0.940965,0.46002,0.666964,0.404573,0.942843,0.033529,0.403444,0.282639,0.340403,0.921213,0.847789,0.395345,0.478651,0.615227,0.178329,0.304689,0.321177,0.415072,0.56014,0.729813,0.248802,0.32062,0.920092,0.51358,0.63882,0.803833,0.344175,0.106046,0.884259,0.731849,0.849004,0.0176675,0.389953,0.958033,0.255907,0.640317,0.819806,0.680262,0.0252209,0.954342,0.0473209,0.0201106,0.15378,0.892132,0.952885,0.496425,0.647212,0.926377,0.0264116,0.971644,0.847724,0.371561,0.0082792,0.697154,0.654433,0.377611,0.0371553,0.14487,0.220037,0.974416,0.241834,0.503791,0.527801,0.250476,0.925471,0.0725154,0.658172,0.0807006,0.761795,0.664368,0.964297,0.0832354,|0.193869,0.251788,0.39796,0.288404,0.236733,0.427996,0.289654,0.294244,0.989463,0.878034,0.364967,0.237949,0.39638,0.899509,0.692435,0.258705,0.574582,0.767228,0.317617,0.00240499,0.468393,0.0645491,0.202273,0.569521,0.8719,0.0857181,0.285642,0.0480383,0.81034,0.121742,0.947815,0.840696,0.650959,0.426824,0.353191,0.421954,0.344614,0.0691648,0.884424,0.350409,0.0530796,0.784826,0.312182,0.0381415,0.571917,0.39823,0.964572,0.0770444,0.755257,0.437366,0.822246,0.247025,0.611455,0.387526,0.101387,0.953866,0.050066,0.471819,0.568281,0.921276,0.729563,0.53514,0.559487,0.220629,0.694893,0.687827,0.917153,0.811884,0.904584,0.0877019,0.930586,0.32771,0.345915,0.0159487,0.687474,0.508877,0.511703,0.497602,0.341541,0.484975,0.506108,0.721603,0.621395,0.230993,0.671776,0.367856,0.610636,0.430029,0.539527,0.108264,0.20544,0.603848,0.452899,0.622348,0.84752,0.821183,0.112889,0.942224,0.495848,0.964057,0.278607,0.497255,0.23007,0.841346,0.397107,0.729812,0.63562,0.450561,0.264275,0.128503,0.881782,0.496539,0.745601,0.888062,0.848616,0.96442,0.0534545,0.317362,0.322468,0.544309,0.837817,0.094896,0.469957,0.432612,0.138916,0.5667,0.0859,0.271426,0.0878334,0.584381,0.183814,0.311868,0.32649,0.798071,0.299533,0.292438,0.802628,0.923174,0.782476,0.0541157,0.634999,0.426913,0.177751,0.946298,0.488414,0.328474,0.78158,0.220974,0.189732,0.357213,0.953652,0.95463,0.273857,0.0979423,0.526888,0.412653,0.565267,0.070788,0.310135,0.697377,0.664892,0.163962,0.613547,0.144318,0.239628,0.0836961,0.400045,0.866421,0.336595,0.411413,0.487085,0.0392307,0.738407,0.983597,0.42274,0.915402,0.715927,0.504717,0.536173,0.191591,0.229409,0.873767,0.473478,0.964254,0.561094,0.508807,0.98086,0.939935,0.641889,0.0885539,0.86361,0.264705,0.00401276,0.365669,0.152949,0.270614,0.622459,0.977454,0.161854,0.746918,0.601708,0.729305,0.57682,0.47803,0.0965995,0.537828,0.166386,0.293892,0.785679,0.593329,0.0581428,0.553393,0.0787163,0.320776,0.182692,0.252873,0.380607,0.642796,0.176831,0.26079,0.207184,0.213891,0.0485679,0.0180626,0.532136,0.387349,0.657059,0.412241,0.901611,0.106118,0.380032,0.907466,0.956606,0.991712,0.882151,0.712746,0.614245,0.703505,0.0723471,0.374112,0.876237,0.98614,0.607632,0.304997,0.106416,0.921878,0.117989,0.22159,0.182238,0.462725,0.500386,0.65573,0.599774,0.033505,0.486573,0.370791,0.778697,0.121767,0.201387,0.483572,0.16699,0.0439565,0.544345,0.172955,0.333102,0.673163,0.463778,0.948858,0.7385,0.342425,0.15384,0.286899,0.978114,0.811614,0.813915,0.62667,0.25925,0.18114,0.723448,0.0459867,0.677434,0.567686,0.408018,0.559156,0.884789,0.107908,0.87285,0.976719,0.570886,0.923771,0.358847,0.579622,0.147671,0.270551,0.325129,0.417901,0.898849,0.176612,0.9308,0.384181,0.417059,0.636929,0.266131,0.618632,0.781731,0.55376,0.48276,0.400044,0.143426,0.555183,0.350609,0.381493,0.425656,0.94063,0.188079,0.717992,0.203053,0.698316,0.563365,0.255584,0.335106,0.864024,0.924157,0.836346,0.115776,0.429927,0.769005,0.462077,0.658165,0.834533,0.559157,0.207484,0.877938,0.00135219,0.242957,0.795494,0.427111,0.258603,0.184107,0.0828326,0.275892,0.639515,0.986317,0.103972,0.533989,0.190313,0.584788,0.689889,0.738341,0.678721,0.562229,0.470315,0.280566,0.295771,0.672532,0.602464,0.960921,0.57909,0.948075,0.94816,0.0308028,0.95675,0.474261,0.166886,0.72708,0.0402022,0.605651,0.936109,0.130598,0.44671,0.89525,0.599538,0.202805,0.138595,0.417798,0.405059,0.396767,0.13637,0.376196,0.619792,0.609662,0.203648,0.963459,0.469581,0.836893,0.354873,0.987015,0.0936704,0.272548,0.00449246,0.155317,0.242104,0.664715,0.750296,0.346672,0.531016,0.145115,0.880288,0.792804,0.541247,0.214947,0.559183,0.222743,0.882601,0.444941,0.553402,0.303855,0.589159,0.850864,0.51015,0.459125,0.196382,0.421191,0.150893,0.621627,0.106342,0.0815168,0.246587,0.56324,0.774282,0.640497,0.636415,0.129621,0.479116,0.899594,0.36288,0.113566,0.75986,0.943961,0.384803,0.56338,0.214909,0.261584,0.478179,0.149674,0.560706,0.871999,0.228612,0.87284,0.626691,0.72628,0.00669837,0.406251,0.170988,0.449775,0.898751,0.0641909,0.900546,0.138666,0.0343968,0.422859,0.591474,0.0421515,0.938682,0.457103,0.403008,0.52054,0.285898,0.244502,0.0246585,0.719993,0.192577,0.112551,0.489597,0.382888,0.275581,0.652111,0.604725,0.583002,0.984976,0.0228659,0.532189,0.675228,0.20825,0.839546,0.114856,0.870666,0.739745,0.10511,0.949208,0.308864,0.930878,0.688964,0.236814,0.280431,0.775556,0.396164,0.967642,0.087567,0.693019,0.643028,0.0846781,0.0478587,0.450773,0.170206,0.576589,0.399498,0.359478,0.85448,0.243155,0.979132,0.541704,0.47765,0.149086,0.00876004,0.151593,0.480121,0.594398,0.858409,0.877481,0.13,0.5112,0.785971,0.68121,0.789741,0.100947,0.570121,0.378605,0.158514,0.131733,0.86686,0.727827,0.0476667,0.266097,0.0911382,0.35379,0.302393,0.637539,0.667323,0.489844,0.635208,0.916819,0.566923,0.569996,0.489169,0.488421,0.274507,0.528147,0.0865642,0.54111,0.00322121,0.476329,0.843732,0.768101,0.885987,0.972784,0.477498,0.258581,0.958086,0.228008,0.0592936,0.598357,0.771301,0.927849,0.475346,0.814447,0.910275,0.799275,0.493626,0.212127,0.843093,0.718154,0.588958,0.554859,0.541058,0.0754984,0.616331,0.76669,0.579176,0.87018,0.495729,0.693138,0.108658,0.803069,0.0156347,0.168628,0.335685,0.00209492,0.56153,0.218495,0.782308,0.919296,0.259207,0.601544,0.00572169,0.784607,0.560326,0.901394,0.0521109,0.986638,0.390472,0.440937,0.552045,0.0326899,0.409527,0.133888,0.272878,0.148275,0.224043,0.187371,0.0464851,0.31026,0.512928,0.672698,0.578923,0.677806,0.446263,0.955168,0.551791,0.68305,0.28689,0.697684,0.481574,0.26389,0.879061,0.741413,0.690037,0.218732,0.765958,0.529248,0.239844,0.581774,0.559329,0.795808,0.388694,0.00873518,0.413843,0.831422,0.464144,0.951056,0.548757,0.0774075,0.325969,0.294493,0.196008,0.0601571,0.365778,0.153382,0.843097,0.248657,0.529054,0.00833708,0.118149,0.735952,0.892424,0.742684,0.482918,0.447724,0.330021,0.362738,0.108484,0.011943,0.280329,0.384762,0.513384,0.807892,0.30499,0.0387076,0.0236644,0.685112,0.413308,0.677391,0.510868,0.711242,0.914108,0.236538,0.990324,0.986079,0.291668,0.740956,0.843783,0.419342,0.521276,0.0392793,0.720696,0.867185,0.569707,0.51134,0.393077,0.361945,0.139908,0.377472,0.816967,0.861824,0.717396,0.26818,0.896914,0.0580189,0.40497,0.0559996,0.213298,0.805977,0.206018,0.769038,0.764652,0.720905,0.581738,0.29316,0.675502,0.74661,0.2645,0.564146,0.722491,0.390881,0.166019,0.35816,0.567613,0.3206,0.300768,0.697647,0.415546,0.775514,0.54306,0.28059,0.931424,0.456873,0.711089,0.302799,0.704642,0.115733,0.490103,0.621213,0.579311,0.698107,0.194474,0.924204,0.920615,0.559942,0.586117,0.702232,0.00931221,0.749687,0.636006,0.355825,0.452123,0.0747061,0.234319,0.722616,0.0688265,0.837796,0.32857,0.815568,0.862652,0.339783,0.993574,0.616376,0.101231,0.64637,0.550688,0.813322,0.475917,0.67655,0.636936,0.452027,0.00641841,0.401655,0.503945,0.28615,0.852646,0.931308,0.222283,0.124759,0.927609,0.286041,0.742039,0.384272,0.434684,0.197772,0.895064,0.525552,0.690223,0.0603309,0.331469,0.829292,0.533461,0.528391,0.0594446,0.0348638,0.0657459,0.526984,0.844957,0.705347,0.17349,0.693268,0.755024,0.497147,0.822556,0.342348,0.504443,0.842016,0.138052,0.547676,0.655925,0.0787539,0.282233,0.481111,0.607893,0.754484,0.879928,0.137215,0.691189,0.755143,0.938122,0.56412,0.936902,0.483698,0.0992006,0.622016,0.240382,0.0653241,0.71572,0.188576,0.824989,0.28282,0.983286,0.358155,0.448382,0.761978,0.222313,0.00736976,0.560768,0.641675,0.861955,0.104434,0.73205,0.73114,0.316411,0.242505,0.656328,0.581575,0.866478,0.508672,0.950449,0.456093,0.616132,0.68037,0.0794702,0.556448,0.562307,0.71586,0.246243,0.206392,0.411245,0.24573,0.601987,0.46271,0.716461,0.757133,0.524825,0.710191,0.745852,0.891317,0.531646,0.20466,0.724277,0.399857,0.494924,0.154747,0.742614,0.706721,0.0984561,0.845972,0.0488546,0.354671,0.469534,0.356417,0.550667,0.657099,0.100953,0.798925,0.548216,0.905811,0.601912,0.572302,0.533332,0.171278,0.667447,0.642151,0.779533,0.367195,0.0132718,0.648259,0.600504,0.548524,0.463859,0.644268,0.0609438,0.985451,0.928828,0.817348,0.563839,0.301508,0.499066,0.916314,0.0214349,0.898206,0.231644,0.268236,0.312834,0.892414,0.449456,0.168931,0.0321734,0.11572,0.795619,0.0461433,0.420685,0.856545,0.0309256,0.938094,0.437372,0.168165,0.930311,0.716018,0.616426,0.101931,0.316824,0.187668,0.432701,0.883322,0.264438,0.389091,0.262441,0.506936,0.775298,0.983665,0.40687,0.583246,0.296692,0.633127,0.781773,0.406776,0.744025,0.992911,0.813564,0.27929,0.743522,0.585958,0.356747,0.509777,0.0512029,0.219262,0.505896,0.361456,0.135204,0.301371,0.541308,0.305904,0.198769,0.103125,0.579845,0.31459,0.99799,0.996322,0.00191718,0.419735,0.482067,0.6595,0.758234,0.915063,0.957468,0.311014,0.14116,0.973216,0.369071,0.341581,0.156698,0.818011,0.248339,0.837158,0.747897,0.728572,0.558376,0.82649,0.312762,0.408655,0.107642,0.510879,0.396369,0.699901,0.091553,0.0987313,0.0958312,0.424617,0.146334,0.406141,0.404567,0.999864,0.786567,0.539711,0.901285,0.429788,0.116478,0.37424,0.474579,0.844168,0.745658,0.316716,0.392862,0.696109,|0.494111,0.623824,0.733069,0.360231,0.0992796,0.566333,0.615249,0.460148,0.870607,0.888352,0.560105,0.721105,0.197706,0.532889,0.471904,0.702692,0.0278468,0.925839,0.622079,0.697418,0.851175,0.0889719,0.00229818,0.286886,0.751329,0.381516,0.252422,0.826093,0.655205,0.219125,0.505114,0.678896,0.351751,0.951526,0.443428,0.586607,0.0271292,0.970641,0.465823,0.100205,0.636156,0.370332,0.698346,0.662846,0.490731,0.69566,0.985149,0.23571,0.729288,0.920014,0.141976,0.386919,0.427074,0.0425355,0.263179,0.766052,0.437031,0.793121,0.0299624,0.206083,0.539879,0.952149,0.778826,0.416702,0.384212,0.629535,0.708854,0.838272,0.881461,0.873401,0.374801,0.953775,0.125931,0.700219,0.431852,0.234858,0.619131,0.877327,0.476897,0.902739,0.524098,0.204877,0.693886,0.306672,0.689907,0.303113,0.493567,0.842422,0.344167,0.76852,0.0662255,0.507929,0.242291,0.11711,0.00670236,0.426938,0.713388,0.577069,0.187817,0.301153,0.185717,0.505935,0.470772,0.855486,0.907788,0.0101407,0.294625,0.0856112,0.176343,0.8091,0.774423,0.358811,0.814867,0.111772,0.549943,0.827892,0.55593,0.567319,0.460389,0.304743,0.227698,0.246325,0.0280635,0.592084,0.367142,0.0906417,0.64907,0.71478,0.300541,0.815172,0.620325,0.992308,0.657135,0.148293,0.766309,0.122961,0.15298,0.013442,0.49342,0.319318,0.239305,0.464326,0.554248,0.00291067,0.0821574,0.0369932,0.908734,0.758175,0.290413,0.241486,0.42998,0.324381,0.00691605,0.921796,0.592113,0.199608,0.812083,0.317541,0.477513,0.647993,0.417883,0.908869,0.529255,0.973969,0.415717,0.735861,0.625043,0.77027,0.961512,0.716698,0.304626,0.3851,0.497887,0.12696,0.609621,0.840636,0.52574,0.983705,0.421048,0.465021,0.790703,0.629092,0.862862,0.217372,0.872006,0.305612,0.339253,0.947269,0.40342,0.351254,0.071813,0.463486,0.868745,0.758093,0.243313,0.695058,0.841487,0.353044,0.54365,0.822115,0.887578,0.681531,0.151218,0.30193,0.0281874,0.766783,0.489267,0.948812,0.612281,0.229072,0.289481,0.932572,0.582753,0.624876,0.662338,0.48606,0.708334,0.88149,0.566991,0.386919,0.610521,0.249116,0.823608,0.00125146,0.667608,0.219154,0.82914,0.37942,0.626131,0.185536,0.958981,0.111479,0.14507,0.712357,0.0461363,0.442991,0.506706,0.763408,0.368742,0.353923,0.277389,0.88328,0.0165502,0.768743,0.854132,0.51884,0.225812,0.967748,0.628974,0.985967,0.952293,0.856962,0.813959,0.932439,0.233579,0.333812,0.892134,0.431682,0.943162,0.728811,0.990521,0.410793,0.277341,0.984027,0.984606,0.0158212,0.459157,0.644243,0.612161,0.949165,0.987474,0.830798,0.166435,0.15381,0.824922,0.122985,0.340961,0.478969,0.0816859,0.898687,0.142335,0.127555,0.0737714,0.891687,0.164406,0.906028,0.930856,0.448741,0.101317,0.193833,0.0118852,0.435428,0.989764,0.69459,0.719244,0.110366,0.335368,0.736509,0.747155,0.168707,0.368479,0.310773,0.650324,0.700129,0.644671,0.418188,0.833131,0.916006,0.633976,0.739349,0.630967,0.891959,0.944554,0.8552,0.194559,0.804892,0.416996,0.495945,0.865783,0.795829,0.510314,0.886249,0.40202,0.637289,0.232233,0.291389,0.0626146,0.472749,0.741876,0.858292,0.296573,0.03101,0.459084,0.170385,0.452883,0.326411,0.664284,0.470888,0.0097031,0.839418,0.936097,0.161985,0.208714,0.715037,0.700867,0.46129,0.220013,0.595208,0.173339,0.944001,0.452679,0.897801,0.888822,0.334792,0.562824,0.855586,0.153042,0.657638,0.889458,0.933133,0.461905,0.131219,0.441301,0.918916,0.804365,0.840949,0.751018,0.41049,0.21958,0.92593,0.0448024,0.245412,0.600737,0.295602,0.440326,0.538391,0.131439,0.763427,0.540525,0.13027,0.299623,0.335112,0.658425,0.121536,0.255899,0.319511,0.317236,0.217911,0.0246665,0.939387,0.987961,0.735043,0.214515,0.546091,0.463597,0.351731,0.610767,0.831321,0.167481,0.34772,0.593561,0.100984,0.0442852,0.0676069,0.280535,0.920461,0.227752,0.0120012,0.818065,0.566577,0.101249,0.155061,0.24006,0.257813,0.609064,0.229943,0.594365,0.409241,0.665977,0.500997,0.625121,0.995804,0.82616,0.0684422,0.274505,0.727662,0.0080604,0.387976,0.589914,0.209193,0.878429,0.319201,0.671371,0.389865,0.370366,0.66699,0.710135,0.929886,0.539739,0.873876,0.0329993,0.559234,0.80968,0.635812,0.615727,0.106192,0.339008,0.0408679,0.571906,0.690962,0.353763,0.362745,0.658364,0.674801,0.626708,0.517476,0.550057,0.0680984,0.0837467,0.936494,0.556874,0.016093,0.378906,0.826308,0.569222,0.241088,0.733423,0.289839,0.697858,0.555632,0.389606,0.748032,0.450437,0.98489,0.761751,0.892299,0.835513,0.434541,0.363973,0.276052,0.132088,0.577451,0.30725,0.739761,0.325133,0.887179,0.536411,0.812475,0.921386,0.57603,0.576403,0.135033,0.612378,0.111417,0.906304,0.77215,0.0569628,0.282266,0.563582,0.305879,0.184548,0.831471,0.990942,0.435616,0.983967,0.275166,0.330934,0.564868,0.0377494,0.168528,0.720351,0.609139,0.819932,0.98616,0.744683,0.133265,0.982713,0.0281872,0.74207,0.302861,0.932643,0.645735,0.470478,0.384652,0.159582,0.991496,0.90432,0.753728,0.00400001,0.0900675,0.00502867,0.564039,0.55683,0.784356,0.835629,0.419798,0.670982,0.877854,0.880422,0.678647,0.706009,0.212527,0.552632,0.865911,0.691455,0.334472,0.833371,0.411466,0.0408488,0.0296806,0.637922,0.14368,0.503823,0.0560364,0.731075,0.42429,0.0848482,0.259139,0.98699,0.334697,0.200003,0.654722,0.280597,0.0690839,0.275847,0.0374255,0.0841922,0.0835168,0.33104,0.70668,0.534674,0.476004,0.510501,0.427423,0.0531896,0.579829,0.54931,0.721062,0.772774,0.893432,0.11746,0.566185,0.65357,0.389646,0.868212,0.130633,0.469264,0.438819,0.649565,0.804359,0.443186,0.827087,0.66614,0.0250731,0.682596,0.504606,0.917876,0.230916,0.909908,0.838739,0.99691,0.514665,0.748933,0.579498,0.656703,0.296355,0.469997,0.177033,0.927255,0.00429404,0.673467,0.609117,0.518871,0.0870824,0.0158575,0.288675,0.869048,0.622535,0.235632,0.86023,0.963428,0.91176,0.356409,0.442128,0.617351,0.741885,0.184065,0.094888,0.924664,0.627497,0.890104,0.0564561,0.961615,0.593133,0.657112,0.362859,0.996545,0.860754,0.968852,0.952561,0.628714,0.379581,0.904722,0.321804,0.87389,0.614021,0.597741,0.431699,0.504583,0.25852,0.924592,0.760429,0.263535,0.197864,0.0664421,0.539579,0.604445,0.0813556,0.00244498,0.237582,0.749016,0.732372,0.328085,0.225884,0.971065,0.508251,0.719424,0.456947,0.046635,0.477309,0.897275,0.502505,0.413373,0.78605,0.389147,0.773406,0.979104,0.380337,0.157321,0.25504,0.58253,0.556832,0.438967,0.69833,0.509212,0.538094,0.421463,0.924499,0.475509,0.873482,0.16801,0.512896,0.275297,0.877456,0.750481,0.490566,0.892253,0.892925,0.901526,0.977956,0.0229973,0.783495,0.0475014,0.174999,0.0862951,0.668205,0.991653,0.210807,0.100641,0.572175,0.404795,0.328199,0.71774,0.219911,0.417833,0.810596,0.0920411,0.764024,0.982442,0.211953,0.717013,0.508045,0.520192,0.675187,0.886807,0.38417,0.169132,0.766761,0.87119,0.333115,0.299811,0.728084,0.629087,0.996013,0.313759,0.17247,0.102377,0.332327,0.686588,0.611833,0.439682,0.896436,0.259014,0.464634,0.46162,0.0904804,0.257278,0.117424,0.0750736,0.328339,0.0197568,0.94619,0.598745,0.895619,0.0513951,0.877747,0.331127,0.15056,0.312112,0.162669,0.863309,0.199455,0.603685,0.806805,0.00760221,0.578155,0.189243,0.100899,0.177165,0.421128,0.0247077,0.403487,0.570994,0.976193,0.601602,0.503158,0.808095,0.272219,0.0683501,0.160012,0.922854,0.3729,0.430259,0.313259,0.159692,0.00353223,0.646045,0.109212,0.328285,0.114924,0.381655,0.359166,0.173831,0.107073,0.498653,0.794232,0.0638491,0.341423,0.327431,0.480125,0.546462,0.207547,0.919646,0.566426,0.750074,0.505182,0.906811,0.970687,0.275962,0.281069,0.240674,0.289747,0.662896,0.135056,0.456827,0.526382,0.740586,0.677322,0.837223,0.0106452,0.00925958,0.870208,0.0140361,0.108881,0.333008,0.77248,0.283971,0.535309,0.66419,0.574848,0.645083,0.772407,0.934114,0.530267,0.364051,0.372536,0.719437,0.480702,0.408672,0.448713,0.092327,0.304969,0.125731,0.275438,0.892368,0.579931,0.997197,0.353654,0.474535,0.364975,0.955099,0.390198,0.0329808,0.241935,0.396473,0.798506,0.244075,0.85669,0.794036,0.984223,0.172278,0.548921,0.702816,0.539321,0.517976,0.187135,0.847065,0.819969,0.215483,0.638182,0.639884,0.749227,0.937944,0.75813,0.92454,0.265656,0.584568,0.297326,0.379317,0.579666,0.93715,0.603616,0.0262516,0.888062,0.8822,0.480831,0.931956,0.388676,0.110482,0.447749,0.59814,0.560357,0.156077,0.238676,0.501778,0.931044,0.237432,0.98396,0.532012,0.972713,0.340945,0.625091,0.000119925,0.900869,0.83282,0.298976,0.530846,0.656976,0.037596,0.939417,0.691018,0.138357,0.826388,0.272331,0.78698,0.593365,0.0110741,0.656085,0.142745,0.82984,0.447606,0.280067,0.0356631,0.233767,0.300994,0.678594,0.19517,0.801223,0.281891,0.275883,0.798719,0.0708214,0.153885,0.0421881,0.125518,0.60085,0.0715333,0.701771,0.198882,0.867157,0.619945,0.64682,0.162089,0.903435,0.238908,0.0135447,0.676344,0.400553,0.211455,0.850505,0.7558,0.783985,0.881055,0.742276,0.817562,0.337275,0.893288,0.137459,0.946403,0.578049,0.448748,0.0617966,0.882058,0.069189,0.990945,0.916986,0.608254,0.502438,0.413076,0.363699,0.689827,0.788076,0.810163,0.430404,0.77845,0.0556945,0.689955,0.965266,0.200704,0.189901,0.166318,0.0547398,0.19888,0.979537,0.0317207,0.884593,0.846546,0.68023,0.166942,0.277808,0.528922,0.171935,0.680825,0.7177,0.577434,0.118922,0.586963,0.333156,0.158847,0.990636,|0.847533,0.623514,0.443985,0.92072,0.833468,0.152329,0.981731,0.159933,0.250224,0.403954,0.229859,0.289714,0.219517,0.0577949,0.577137,0.340928,0.820352,0.916498,0.524844,0.509992,0.270629,0.606539,0.826301,0.409508,0.837612,0.751697,0.549103,0.593156,0.242967,0.261097,0.401449,0.739922,0.349662,0.760412,0.614754,0.22414,0.238971,0.631596,0.712052,0.602201,0.584731,0.00241488,0.0930532,0.51925,0.979589,0.441096,0.625917,0.170966,0.176543,0.237902,0.293469,0.937258,0.878523,0.0341451,0.719279,0.42407,0.325662,0.727454,0.84497,0.916849,0.931239,0.00193632,0.242109,0.339453,0.963075,0.250947,0.452921,0.612828,0.826714,0.376986,0.864248,0.0608924,0.113229,0.280813,0.395376,0.80175,0.645601,0.00917614,0.418561,0.767259,0.936565,0.518446,0.0915176,0.891486,0.604743,0.413703,0.702864,0.578465,0.624851,0.597369,0.0132239,0.889349,0.240674,0.506919,0.772811,0.320643,0.0536504,0.506852,0.717473,0.788266,0.274231,0.470625,0.703473,0.704626,0.918393,0.163743,0.594627,0.151108,0.698402,0.0611496,0.371726,0.514739,0.902138,0.316219,0.515943,0.811664,0.0747308,0.302437,0.651749,0.206582,0.396632,0.150786,0.839437,0.205728,0.273479,0.173075,0.122625,0.549868,0.0658746,0.889017,0.89474,0.141836,0.401701,0.169547,0.0552744,0.590801,0.24292,0.139383,0.787227,0.598093,0.685856,0.136093,0.938107,0.326811,0.415477,0.370933,0.678878,0.834926,0.188822,0.373249,0.582754,0.282751,0.222025,0.37919,0.960423,0.327004,0.0878314,0.954053,0.498015,0.0830495,0.932594,0.173892,0.273569,0.031582,0.890042,0.780034,0.703528,0.774197,0.84689,0.857753,0.923386,0.234485,0.900537,0.902787,0.64804,0.807649,0.569922,0.316195,0.850844,0.456679,0.973902,0.272504,0.968842,0.367103,0.651554,0.971925,0.254008,0.0838885,0.666514,0.673345,0.085628,0.998953,0.114369,0.1592,0.0861425,0.172042,0.708806,0.500455,0.756206,0.103167,0.639276,0.630497,0.524649,0.0666124,0.248068,0.937943,0.429467,0.144788,0.632957,0.929195,0.910521,0.97058,0.04298,0.326572,0.950277,0.248924,0.400571,0.123658,0.393546,0.748632,0.257698,0.0592468,0.890988,0.205573,0.812791,0.136996,0.885,0.622948,0.919083,0.212939,0.146126,0.204148,0.195938,0.438286,0.352928,0.821487,0.32772,0.280099,0.0202396,0.746206,0.418253,0.525349,0.122336,0.294151,0.14429,0.247545,0.197367,0.274641,0.176923,0.0750201,0.645643,0.177045,0.40426,0.220796,0.660033,0.550632,0.832573,0.226062,0.431778,0.975992,0.504029,0.177079,0.955116,0.229795,0.177795,0.777045,0.80339,0.967452,0.408542,0.239115,0.502616,0.972129,0.771646,0.648242,0.129061,0.637813,0.239639,0.111547,0.112693,0.464254,0.0746458,0.0791017,0.938303,0.16474,0.751402,0.0271233,0.915788,0.940992,0.759883,0.0370371,0.508272,0.71835,0.963037,0.287276,0.00605547,0.794315,0.658305,0.742606,0.419751,0.113685,0.753199,0.919203,0.460012,0.448545,0.155024,0.843743,0.4129,0.752884,0.650827,0.355367,0.840967,0.431531,0.99563,0.0696961,0.918874,0.862435,0.0378913,0.0798585,0.460515,0.566937,0.0197811,0.252204,0.119227,0.421957,0.949675,0.837254,0.881416,0.451965,0.345271,0.703777,0.364124,0.993766,0.66504,0.139149,0.680307,0.495858,0.37694,0.705272,0.629109,0.34214,0.581313,0.371893,0.130991,0.237324,0.486181,0.447042,0.468366,0.437817,0.421006,0.181949,0.669565,0.87088,0.033381,0.577312,0.624841,0.110789,0.199632,0.673292,0.870252,0.0329847,0.569832,0.804766,0.150042,0.540644,0.266004,0.89595,0.109438,0.41183,0.193255,0.729513,0.704443,0.330959,0.521979,0.707542,0.372932,0.399954,0.0615361,0.101872,0.81581,0.27815,0.0348965,0.472826,0.689003,0.191493,0.243602,0.629742,0.799163,0.812063,0.592238,0.699405,0.567878,0.470673,0.0916615,0.334516,0.417921,0.657258,0.351836,0.455906,0.236057,0.196189,0.650295,0.30117,0.541421,0.349209,0.814342,0.17297,0.265282,0.107099,0.379671,0.868688,0.161227,0.0179167,0.159559,0.25785,0.844079,0.274169,0.652542,0.629836,0.351003,0.384086,0.473835,0.910165,0.760206,0.528086,0.768041,0.828247,0.434656,0.0698025,0.576215,0.777941,0.905327,0.219108,0.3775,0.728587,0.0158275,0.673237,0.300758,0.708139,0.640676,0.978537,0.365847,0.413328,0.279827,0.130718,0.823079,0.263955,0.487078,0.641469,0.0977873,0.425633,0.630648,0.046297,0.578807,0.648508,0.903349,0.299616,0.580687,0.310017,0.241188,0.905052,0.740564,0.7819,0.0906888,0.207746,0.295979,0.506466,0.0950099,0.356626,0.66394,0.0888898,0.321756,0.883108,0.64963,0.235615,0.652609,0.932555,0.512822,0.0587754,0.576833,0.617173,0.133558,0.627578,0.199028,0.103236,0.4382,0.126183,0.68218,0.273181,0.823422,0.884115,0.960577,0.532919,0.0884512,0.114788,0.223582,0.0399068,0.0189516,0.388936,0.460501,0.955747,0.0961313,0.867338,0.575467,0.614951,0.505763,0.0230705,0.659747,0.451449,0.543684,0.234818,0.0486461,0.336745,0.602498,0.791988,0.153048,0.394238,0.801581,0.00704396,0.792255,0.403963,0.754118,0.106483,0.795301,0.919948,0.286421,0.871962,0.0653268,0.488665,0.139285,0.366955,0.862036,0.608738,0.573298,0.890144,0.081194,0.496305,0.288862,0.534912,0.267598,0.566026,0.73367,0.247853,0.0197347,0.536468,0.831788,0.174076,0.568639,0.736943,0.123481,0.892838,0.244809,0.921871,0.545991,0.302319,0.97633,0.898774,0.900269,0.288668,0.798863,0.676453,0.106389,0.640356,0.607255,0.853379,0.382385,0.98507,0.999762,0.620014,0.810312,0.774087,0.387788,0.171125,0.188332,0.912291,0.606008,0.676133,0.997144,0.513868,0.80529,0.668584,0.112418,0.602988,0.472891,0.22131,0.36696,0.946414,0.974045,0.98392,0.904617,0.396914,0.415135,0.069469,0.940524,0.904153,0.776463,0.17323,0.0193809,0.616141,0.646994,0.713929,0.615284,0.365152,0.153063,0.395925,0.266129,0.206839,0.389297,0.585196,0.10493,0.190803,0.68152,0.666209,0.415907,0.0465021,0.589738,0.220775,0.456876,0.114855,0.896899,0.287993,0.859627,0.953527,0.665733,0.476605,0.862713,0.443972,0.902386,0.878729,0.364229,0.350827,0.728768,0.511285,0.70485,0.875527,0.403572,0.153578,0.625374,0.130951,0.103813,0.767397,0.273159,0.252607,0.800081,0.763149,0.625635,0.237056,0.375934,0.316273,0.376131,0.994961,0.510416,0.763349,0.59952,0.360524,0.596743,0.701912,0.636388,0.869419,0.446948,0.307337,0.248687,0.733556,0.225856,0.213415,0.279039,0.756355,0.822998,0.826328,0.216205,0.735189,0.774508,0.940602,0.0409489,0.760536,0.402538,0.0960361,0.44276,0.982588,0.0544469,0.455323,0.977794,0.127385,0.537567,0.551936,0.694958,0.24373,0.458924,0.841839,0.738343,0.411754,0.749581,0.0961307,0.563918,0.157749,0.0705506,0.663883,0.488852,0.993697,0.520961,0.192803,0.45956,0.709054,0.937753,0.856107,0.876618,0.497706,0.00607908,0.0703714,0.113442,0.856848,0.133951,0.840535,0.556229,0.139343,0.00452679,0.839854,0.191659,0.154622,0.123146,0.897225,0.718976,0.55116,0.997984,0.253044,0.817945,0.781076,0.448024,0.26267,0.833218,0.026539,0.859198,0.0107846,0.257851,0.907955,0.458583,0.0602392,0.239706,0.588509,0.384998,0.951831,0.865865,0.869115,0.0711895,0.510298,0.523622,0.744925,0.999142,0.160178,0.488589,0.169502,0.615961,0.373129,0.482884,0.036972,0.449429,0.97196,0.214251,0.800449,0.494853,0.964822,0.531965,0.685955,0.559164,0.395649,0.396526,0.933774,0.0166477,0.406376,0.0530811,0.835891,0.983301,0.937314,0.782663,0.711138,0.815711,0.877227,0.0484596,0.861669,0.347058,0.986937,0.0888405,0.207458,0.0151907,0.835677,0.488938,0.614515,0.575831,0.976833,0.333066,0.976664,0.190146,0.464436,0.0631649,0.473764,0.441682,0.645825,0.313187,0.165939,0.178923,0.555603,0.383386,0.979632,0.687208,0.657439,0.742546,0.488467,0.268946,0.924514,0.274764,0.579983,0.431531,0.948059,0.527498,0.602153,0.674913,0.344934,0.717042,0.462594,0.981704,0.340733,0.470558,0.917582,0.84445,0.937638,0.158554,0.562565,0.302087,0.608908,0.387292,0.946578,0.269352,0.813874,0.394372,0.523104,0.928631,0.875211,0.286455,0.908475,0.59777,0.242417,0.950903,0.222205,0.387905,0.572347,0.756042,0.263819,0.793636,0.98236,0.507133,0.592091,0.929102,0.551741,0.29228,0.929333,0.497363,0.770446,0.106365,0.740078,0.350266,0.362283,0.12448,0.919394,0.196733,0.326841,0.0558134,0.721825,0.484922,0.295794,0.650013,0.462125,0.315308,0.69707,0.627791,0.825072,0.961751,0.489163,0.375208,0.0818061,0.567227,0.115932,0.780308,0.966921,0.278565,0.827219,0.289528,0.0635158,0.155338,0.302365,0.584951,0.482958,0.192729,0.768851,0.449879,0.0724137,0.00105476,0.928851,0.337891,0.0384325,0.534044,0.104952,0.0557719,0.17566,0.420476,0.862166,0.707705,0.928165,0.115005,0.0807639,0.159522,0.866225,0.257715,0.503192,0.121121,0.263351,0.752468,0.814961,0.726566,0.357135,0.900272,0.501041,0.811977,0.764271,0.62321,0.564197,0.480503,0.678125,0.312229,0.576427,0.988137,0.439966,0.631142,0.0370781,0.0311446,0.679378,0.0112336,0.595233,0.181899,0.11578,0.180593,0.500339,0.357097,0.665182,0.299211,0.0552768,0.153067,0.541072,0.656728,0.445419,0.567929,0.201905,0.831963,0.923839,0.880097,0.494034,0.537771,0.0440003,0.888782,0.817927,0.872919,0.992974,0.959684,0.467954,0.807084,0.623876,0.850691,0.654727,0.821475,0.417396,0.399754,0.184805,0.932649,0.954251,0.64776,0.975966,0.931555,0.0495616,0.0230961,0.952006,0.329306,0.104654,0.958912,0.0724585,0.127856,0.988779,0.0837737,0.150956,0.0168042,0.279591,0.0118724,0.406424,0.825469,0.0508469,0.474522,0.555285,0.754243,0.46353,0.669653,0.159947,0.646155,0.728958,|0.821335,0.954943,0.626555,0.123055,0.113505,0.720149,0.765058,0.167703,0.363909,0.993366,0.794327,0.0876588,0.640769,0.773899,0.377876,0.818319,0.594773,0.356497,0.741782,0.761696,0.713875,0.410162,0.943821,0.744771,0.535656,0.697185,0.260745,0.574589,0.0515356,0.833095,0.637592,0.168125,0.757769,0.566541,0.532777,0.0225376,0.0435758,0.963634,0.245912,0.131741,0.105485,0.745445,0.512004,0.538196,0.625246,0.587465,0.575345,0.547682,0.600322,0.180359,0.934823,0.379224,0.310526,0.93122,0.542282,0.794843,0.398421,0.606181,0.651848,0.809378,0.0579641,0.0374904,0.354478,0.052612,0.553531,0.800787,0.874169,0.535315,0.106977,0.780768,0.223824,0.740452,0.582822,0.19301,0.853895,0.274785,0.659867,0.00276333,0.280884,0.636491,0.0513737,0.879744,0.4763,0.0859438,0.981145,0.74795,0.00341451,0.637073,0.960609,0.178705,0.155102,0.0484489,0.557468,0.942998,0.750204,0.449034,0.962709,0.826134,0.763958,0.165865,0.617888,0.483211,0.934577,0.848591,0.598597,0.192657,0.587532,0.260268,0.947135,0.247652,0.883649,0.250346,0.403625,0.580702,0.63233,0.822058,0.302657,0.250785,0.581411,0.783329,0.515709,0.587959,0.0863486,0.859779,0.538147,0.195705,0.965976,0.637295,0.560233,0.730081,0.529679,0.43129,0.974206,0.292236,0.0102944,0.1288,0.0705803,0.319859,0.304222,0.207387,0.276762,0.707013,0.320931,0.928962,0.990354,0.941211,0.664622,0.570071,0.830201,0.252792,0.620163,0.499514,0.340238,0.470914,0.628575,0.259675,0.370184,0.979547,0.981321,0.792428,0.543151,0.67423,0.43865,0.321872,0.763125,0.901574,0.705299,0.689012,0.79285,0.353012,0.975617,0.246704,0.669362,0.0110162,0.213068,0.122343,0.14459,0.666595,0.97539,0.112527,0.0410981,0.819257,0.962699,0.221538,0.0698251,0.540597,0.126181,0.843911,0.258776,0.1643,0.851412,0.511341,0.383825,0.587078,0.385328,0.945997,0.363713,0.32442,0.340934,0.515991,0.71006,0.0500291,0.431286,0.275835,0.917536,0.265003,0.580192,0.349895,0.495465,0.353117,0.549547,0.445723,0.646429,0.555288,0.605582,0.61246,0.891094,0.274097,0.301438,0.117159,0.488311,0.175412,0.477174,0.76205,0.913855,0.518005,0.962146,0.757414,0.544228,0.582167,0.18728,0.837874,0.0155617,0.164693,0.0305434,0.224027,0.549208,0.413726,0.726698,0.561678,0.0870512,0.201617,0.617422,0.178589,0.558099,0.195755,0.399178,0.971878,0.994682,0.961014,0.700347,0.274398,0.300921,0.0757024,0.373663,0.884514,0.859627,0.414514,0.178251,0.590073,0.486196,0.875348,0.596688,0.255885,0.627708,0.527212,0.00869018,0.0625696,0.258267,0.418057,0.787208,0.918734,0.104418,0.729849,0.466691,0.378311,0.154934,0.511581,0.513492,0.490761,0.68202,0.892449,0.100903,0.11906,0.308127,0.651525,0.194758,0.0791566,0.498636,0.450161,0.597274,0.224761,0.702975,0.151149,0.616932,0.128959,0.718438,0.493503,0.20242,0.00953907,0.316899,0.508753,0.872543,0.125234,0.890521,0.384217,0.0513907,0.349983,0.87136,0.0306404,0.714118,0.368453,0.364318,0.191067,0.955415,0.19241,0.771105,0.349065,0.881849,0.823157,0.49743,0.151886,0.686431,0.950089,0.0543113,0.514848,0.0745906,0.764116,0.327446,0.728198,0.575325,0.0399995,0.0307903,0.908873,0.311272,0.670772,0.0730672,0.373415,0.279709,0.0326393,0.979054,0.146207,0.563891,0.627616,0.305583,0.329667,0.162019,0.115942,0.825685,0.49152,0.0588877,0.95663,0.881782,0.438697,0.147249,0.684211,0.422138,0.0318662,0.0978988,0.7043,0.39556,0.648252,0.468625,0.337557,0.394687,0.15511,0.428163,0.55548,0.63888,0.208399,0.193793,0.805478,0.0590702,0.112293,0.979802,0.56118,0.282772,0.304738,0.467006,0.517851,0.477449,0.107708,0.63285,0.563927,0.999115,0.290656,0.59315,0.579202,0.421242,0.155072,0.390593,0.780231,0.437144,0.374303,0.372563,0.757681,0.896845,0.270187,0.727982,0.0521046,0.319378,0.144926,0.291211,0.301432,0.71242,0.906272,0.255069,0.085053,0.839403,0.742568,0.478748,0.215726,0.616682,0.460155,0.843117,0.861564,0.772952,0.435158,0.0736782,0.833022,0.395562,0.430062,0.340146,0.852139,0.162528,0.456036,0.925167,0.813312,0.715521,0.517686,0.635452,0.392107,0.973946,0.346282,0.565843,0.940303,0.713265,0.152262,0.32817,0.836601,0.876989,0.718298,0.797216,0.754173,0.362966,0.248112,0.242057,0.629849,0.524516,0.574084,0.228725,0.524516,0.988793,0.849893,0.166375,0.707402,0.672023,0.0625158,0.992096,0.183459,0.464222,0.904548,0.890557,0.421923,0.288361,0.178445,0.419632,0.4631,0.997528,0.0296953,0.246045,0.492186,0.985495,0.523156,0.475701,0.399946,0.605132,0.583374,0.49998,0.0953627,0.396261,0.281462,0.444017,0.919793,0.0607995,0.991961,0.298502,0.128274,0.343584,0.825666,0.19625,0.181891,0.672606,0.548161,0.163964,0.238281,0.301658,0.123635,0.489031,0.672651,0.0905739,0.873593,0.00525105,0.871125,0.843876,0.187341,0.741812,0.746688,0.0428966,0.199617,0.346261,0.728385,0.146541,0.0406142,0.504613,0.867468,0.0725573,0.965234,0.158785,0.0479075,0.690578,0.700729,0.030502,0.327151,0.78998,0.160889,0.636433,0.0683905,0.0353271,0.240123,0.395702,0.512035,0.675849,0.282322,0.794662,0.798909,0.0618044,0.0829872,0.287713,0.963877,0.537818,0.00522608,0.487334,0.160393,0.426346,0.281698,0.632378,0.971788,0.786628,0.454715,0.227092,0.573925,0.97539,0.0188758,0.936086,0.800906,0.625227,0.155221,0.742366,0.449166,0.931597,0.192136,0.799564,0.276058,0.824326,0.656014,0.477665,0.0616811,0.583761,0.54284,0.381704,0.444752,0.676167,0.133761,0.379617,0.0389714,0.520904,0.0621477,0.51452,0.69329,0.835807,0.591885,0.475196,0.64539,0.666399,0.956708,0.917819,0.810808,0.215341,0.332284,0.425404,0.729627,0.00542819,0.253349,0.713911,0.879045,0.462745,0.570494,0.20125,0.889764,0.782847,0.570653,0.152977,0.772277,0.976229,0.695736,0.0573947,0.508683,0.0319209,0.867676,0.29887,0.519088,0.439963,0.0706361,0.930502,0.872924,0.450078,0.126849,0.165817,0.855674,0.737986,0.698292,0.157909,0.506027,0.240814,0.910899,0.0916854,0.493791,0.536336,0.134222,0.337075,0.864537,0.945799,0.278498,0.911373,0.234573,0.755728,0.234129,0.0345941,0.952487,0.0951791,0.822514,0.0511009,0.602801,0.145013,0.820866,0.059284,0.159552,0.371014,0.709009,0.757703,0.424022,0.889052,0.669166,0.384744,0.674085,0.956357,0.273492,0.14651,0.206125,0.652945,0.785128,0.937244,0.837181,0.371017,0.694824,0.710105,0.520247,0.239059,0.402108,0.228739,0.753532,0.0371956,0.409278,0.278955,0.628336,0.0733323,0.410255,0.565418,0.565516,0.402396,0.5244,0.751647,0.443477,0.465729,0.305519,0.577403,0.0493007,0.289506,0.122729,0.361228,0.678417,0.132864,0.355528,0.0168369,0.781178,0.793896,0.181889,0.413618,0.772229,0.0793177,0.325726,0.817751,0.165422,0.815239,0.582434,0.477295,0.326676,0.332013,0.229227,0.539856,0.00632113,0.203323,0.147854,0.273157,0.106156,0.154521,0.0496748,0.582697,0.712457,0.374223,0.104606,0.4754,0.370968,0.0717887,0.0957331,0.306709,0.0558274,0.682835,0.195222,0.394515,0.782058,0.655693,0.639567,0.608564,0.132825,0.592981,0.128168,0.761132,0.387239,0.471409,0.146464,0.94754,0.0967034,0.373148,0.580596,0.683501,0.87988,0.488417,0.105224,0.383422,0.0154076,0.111329,0.791695,0.585016,0.606049,0.124893,0.493832,0.528142,0.639616,0.664915,0.892861,0.872134,0.582822,0.541263,0.196046,0.209648,0.202715,0.843353,0.259577,0.504824,0.0817747,0.302753,0.0188984,0.441557,0.805486,0.887959,0.776516,0.495202,0.0382375,0.444258,0.177765,0.212624,0.357602,0.88621,0.94826,0.556485,0.770472,0.707232,0.23001,0.515037,0.496438,0.826063,0.927688,0.124235,0.206059,0.994261,0.882071,0.512166,0.0065099,0.45649,0.964127,0.309483,0.279904,0.462757,0.0612535,0.231691,0.0511241,0.54778,0.759912,0.0597775,0.120691,0.767909,0.428976,0.933974,0.403191,0.347747,0.562595,0.0822127,0.306277,0.0728797,0.938605,0.149233,0.0658805,0.857194,0.589659,0.861441,0.634278,0.555784,0.856647,0.619818,0.341445,0.96642,0.759244,0.463634,0.50977,0.652954,0.981891,0.902627,0.358679,0.570687,0.281308,0.328861,0.956928,0.631018,0.232658,0.670705,0.439976,0.151941,0.209548,0.349967,0.0611104,0.771129,0.367165,0.192955,0.806954,0.955649,0.882374,0.320409,0.983751,0.428327,0.40896,0.548053,0.889478,0.0727464,0.186304,0.336336,0.53799,0.622644,0.668427,0.104731,0.467299,0.610354,0.584938,0.794148,0.562106,0.0718715,0.834296,0.346531,0.0717582,0.323359,0.487673,0.403044,0.721907,0.378147,0.260608,0.0696777,0.161595,0.632011,0.375419,0.601078,0.266024,0.41538,0.286138,0.0402209,0.592856,0.194361,0.931751,0.90137,0.801053,0.855913,0.902528,0.27349,0.637711,0.545171,0.64491,0.618954,0.570377,0.575146,0.0836068,0.505494,0.340126,0.725034,0.640019,0.257114,0.725887,0.61613,0.755662,0.806279,0.943052,0.0201228,0.272308,0.218432,0.550075,0.135528,0.234432,0.849911,0.63732,0.413452,0.234999,0.175303,0.35366,0.0297279,0.713825,0.776811,0.161222,0.253893,0.83549,0.362607,0.396736,0.210244,0.679946,0.0126616,0.789147,0.699859,0.481459,0.203793,0.190507,0.952454,0.611149,0.589166,0.435278,0.851533,0.103407,0.849075,0.73993,0.763847,0.391634,0.590167,0.603173,0.235868,0.921776,0.840306,0.849575,0.191509,0.165046,0.312105,0.641067,0.628796,0.741559,0.645835,0.30227,0.853586,0.0759947,0.681972,0.776329,0.852561,0.575562,0.347806,0.479334,0.855478,0.0494046,0.0540191,0.16705,0.211877,0.750121,0.425187,0.957923,0.590387,0.889292,0.676782,0.411099,0.35082,0.976222,0.637635,0.485641,0.83019,0.303006,0.851339,0.0122287,|0.781993,0.595656,0.186814,0.659115,0.113634,0.907776,0.585238,0.90164,0.364928,0.699092,0.00661045,0.92189,0.973131,0.497185,0.104497,0.93405,0.283784,0.044731,0.778242,0.237989,0.821681,0.622452,0.32275,0.0162379,0.838332,0.574373,0.374414,0.532872,0.71139,0.125179,0.503712,0.100355,0.440476,0.313351,0.843678,0.602535,0.142254,0.386387,0.220453,0.755776,0.811746,0.0889521,0.370807,0.332058,0.923804,0.576188,0.303399,0.0865318,0.838111,0.675865,0.500403,0.161534,0.728718,0.189821,0.869862,0.14268,0.139069,0.426037,0.215439,0.377907,0.283205,0.955695,0.0797535,0.556511,0.512008,0.135092,0.473603,0.846729,0.182996,0.728316,0.172632,0.701343,0.866615,0.763192,0.606021,0.437738,0.817037,0.0726628,0.818043,0.890192,0.625229,0.188771,0.52107,0.856207,0.793389,0.361498,0.73219,0.931536,0.880406,0.264804,0.725557,0.44443,0.180797,0.56949,0.776216,0.843848,0.820757,0.749898,0.972561,0.764032,0.402517,0.964369,0.0767077,0.0315595,0.186224,0.746852,0.00215197,0.843453,0.185161,0.34772,0.179676,0.204334,0.786442,0.660032,0.292042,0.547319,0.55692,0.159922,0.20545,0.79341,0.975011,0.465375,0.512412,0.476444,0.780146,0.505384,0.0791674,0.374549,0.471514,0.476655,0.827308,0.016611,0.932169,0.554116,0.687995,0.85397,0.782167,0.592226,0.376793,0.546341,0.661069,0.160937,0.100501,0.0316365,0.0873016,0.7627,0.513376,0.446871,0.910856,0.218161,0.726679,0.819856,0.0326663,0.570119,0.356121,0.0492698,0.982599,0.805767,0.259049,0.456881,0.409863,0.213028,0.189071,0.411742,0.97646,0.196102,0.907445,0.458375,0.318267,0.376834,0.280432,0.65195,0.676947,0.471178,0.251392,0.0443004,0.919233,0.200286,0.201516,0.801041,0.580758,0.891048,0.625455,0.136765,0.66608,0.273666,0.647971,0.331105,0.853269,0.177503,0.152148,0.163125,0.721752,0.084422,0.0183292,0.604428,0.636559,0.553157,0.644953,0.22785,0.360757,0.549308,0.103769,0.343545,0.998515,0.0844701,0.748985,0.34732,0.422725,0.750798,0.339121,0.393174,0.775354,0.696187,0.882767,0.903816,0.19969,0.684755,0.37107,0.200507,0.853734,0.112223,0.682156,0.224176,0.998212,0.933689,0.5945,0.665845,0.854892,0.568136,0.118949,0.00905222,0.623991,0.821621,0.0987551,0.293346,0.596737,0.113237,0.459177,0.603599,0.0469058,0.486869,0.575159,0.890915,0.286567,0.655273,0.507388,0.88163,0.862048,0.92015,0.160728,0.961858,0.615803,0.359796,0.926025,0.398354,0.967087,0.697068,0.251002,0.915605,0.931704,0.672908,0.741854,0.0932376,0.101402,0.419143,0.150389,0.629926,0.0480543,0.636464,0.644742,0.239053,0.744204,0.851326,0.901781,0.0446171,0.322378,0.121285,0.206445,0.031304,0.925803,0.423162,0.629915,0.972305,0.234755,0.00750166,0.143338,0.590673,0.269662,0.586293,0.572366,0.0213491,0.982188,0.573138,0.566503,0.230343,0.805824,0.183876,0.602798,0.394144,0.182147,0.478216,0.663024,0.510054,0.834224,0.746065,0.709008,0.766707,0.696804,0.688665,0.366293,0.283619,0.949184,0.0648439,0.599119,0.852262,0.710181,0.641029,0.133385,0.450205,0.891694,0.238239,0.171073,0.729139,0.917282,0.0833185,0.640748,0.8012,0.229006,0.000890672,0.548639,0.324814,0.857797,0.458916,0.417717,0.242874,0.124082,0.811391,0.567734,0.397179,0.636987,0.990978,0.89485,0.580678,0.873761,0.387542,0.566289,0.184378,0.406423,0.284674,0.276872,0.884776,0.914277,0.466888,0.53177,0.440851,0.887646,0.367447,0.685114,0.512323,0.515511,0.454419,0.353276,0.0182021,0.624068,0.529881,0.358015,0.506923,0.0170557,0.157345,0.349914,0.862426,0.936653,0.991133,0.973314,0.805193,0.00434852,0.182116,0.00689214,0.01135,0.393763,0.335053,0.737688,0.23024,0.792435,0.137386,0.948863,0.872261,0.659001,0.495595,0.119798,0.0935982,0.299212,0.841932,0.975445,0.783264,0.915979,0.280866,0.482855,0.838249,0.244659,0.394247,0.596449,0.405175,0.831655,0.471458,0.134499,0.334819,0.823866,0.374216,0.120229,0.0789682,0.339864,0.720809,0.736153,0.913787,0.586952,0.463021,0.0741169,0.890339,0.878754,0.650155,0.874679,0.79574,0.745907,0.683654,0.18277,0.905306,0.494628,0.800555,0.454579,0.625435,0.433468,0.237994,0.347098,0.733226,0.783824,0.995104,0.403881,0.346809,0.544403,0.786785,0.429039,0.364203,0.55965,0.474189,0.103862,0.762746,0.813398,0.0979102,0.735639,0.187876,0.224148,0.263889,0.519124,0.284642,0.704692,0.112507,0.978804,0.535862,0.357172,0.67639,0.799666,0.227096,0.787274,0.765991,0.541102,0.378764,0.58396,0.965526,0.770269,0.301614,0.598651,0.0431609,0.942525,0.512959,0.877053,0.0482543,0.295142,0.0683414,0.970556,0.430128,0.0265523,0.550987,0.453044,0.0982971,0.683296,0.762853,0.738129,0.974879,0.996515,0.804056,0.676998,0.908142,0.258705,0.516163,0.515129,0.457209,0.484091,0.992468,0.866666,0.63273,0.227465,0.248236,0.288147,0.208813,0.969599,0.203737,0.642008,0.601247,0.526846,0.216093,0.791031,0.0257823,0.887501,0.943609,0.908984,0.465897,0.581506,0.13215,0.88979,0.813516,0.0392734,0.110867,0.622973,0.366786,0.401833,0.508661,0.44072,0.850046,0.474881,0.668049,0.328617,0.105616,0.766899,0.00702876,0.0617099,0.0040834,0.0230843,0.917121,0.337558,0.890753,0.753438,0.71921,0.117131,0.435372,0.519697,0.964983,0.0511206,0.605929,0.395102,0.0272959,0.780437,0.481219,0.520231,0.132231,0.00425994,0.624132,0.986022,0.192114,0.84956,0.174497,0.781448,0.711197,0.0111223,0.48972,0.901107,0.710451,0.181913,0.301041,0.776165,0.183963,0.226658,0.426969,0.106332,0.951226,0.80665,0.0765455,0.241747,0.820792,0.739101,0.560133,0.932841,0.652032,0.821499,0.700225,0.0168774,0.368517,0.742639,0.134907,0.247438,0.3534,0.250692,0.149113,0.864847,0.128997,0.942645,0.929508,0.080677,0.371766,0.530309,0.109858,0.0454022,0.494438,0.363778,0.922738,0.250669,0.904097,0.748067,0.742152,0.251447,0.22323,0.401131,0.256053,0.174068,0.789867,0.895774,0.15234,0.80726,0.787863,0.14373,0.317025,0.215171,0.0511857,0.453138,0.576587,0.371306,0.259025,0.831059,0.842306,0.654302,0.38667,0.013741,0.080205,0.678832,0.459462,0.471467,0.311318,0.813224,0.788589,0.530072,0.4334,0.641951,0.496662,0.12567,0.667578,0.038193,0.494309,0.818923,0.66567,0.985298,0.384481,0.334679,0.995642,0.428326,0.846041,0.206405,0.653056,0.445911,0.317654,0.202963,0.0912951,0.71229,0.930093,0.752518,0.0328092,0.757568,0.0118419,0.187596,0.33452,0.161341,0.148696,0.709834,0.555343,0.324963,0.449501,0.5157,0.943248,0.838787,0.00717038,0.837473,0.298414,0.189421,0.812489,0.398215,0.259061,0.71191,0.21979,0.252175,0.651074,0.472416,0.71188,0.580394,0.341577,0.408484,0.0777857,0.787412,0.638588,0.743394,0.98463,0.636901,0.450169,0.327163,0.871318,0.140402,0.577616,0.863417,0.42875,0.158627,0.508071,0.835961,0.674506,0.423141,0.101399,0.539176,0.499148,0.510334,0.392577,0.880464,0.45147,0.226115,0.406825,0.00155431,0.855513,0.877325,0.0869539,0.22722,0.289911,0.385399,0.742112,0.969804,0.543023,0.817,0.464035,0.511342,0.858898,0.622639,0.907171,0.430085,0.665065,0.0909971,0.674485,0.911417,0.742844,0.911223,0.773947,0.178651,0.808905,0.429686,0.207939,0.533377,0.225553,0.0263676,0.662479,0.864987,0.19778,0.929779,0.137289,0.581364,0.476824,0.849741,0.752928,0.203817,0.797197,0.251521,0.536025,0.243063,0.917947,0.753413,0.120012,0.36834,0.749364,0.869486,0.578433,0.719994,0.69797,0.240305,0.940923,0.745696,0.452182,0.80864,0.0174859,0.749125,0.894328,0.337964,0.79975,0.0250512,0.370385,0.3681,0.3421,0.0333714,0.773556,0.423294,0.821585,0.773184,0.156276,0.407677,0.20568,0.701754,0.231205,0.662549,0.416392,0.162073,0.303485,0.876289,0.787537,0.292336,0.0114784,0.95344,0.944666,0.252375,0.122165,0.816121,0.0784054,0.56668,0.889216,0.811152,0.55012,0.191269,0.875494,0.817741,0.186386,0.316144,0.385544,0.385859,0.189686,0.581381,0.629345,0.653063,0.347822,0.233229,0.48105,0.724478,0.0346164,0.156753,0.557006,0.10879,0.379782,0.901466,0.976047,0.869929,0.916809,0.0413015,0.377156,0.150021,0.0512538,0.955148,0.664111,0.720533,0.760617,0.681796,0.589291,0.256019,0.0970004,0.711728,0.552189,0.799763,0.451054,0.997207,0.773165,0.920419,0.540104,0.228222,0.0943322,0.593172,0.712866,0.62515,0.519219,0.669522,0.209582,0.44832,0.435857,0.0350882,0.272866,0.613061,0.622945,0.809621,0.881498,0.0708184,0.0854303,0.0034942,0.0592282,0.415134,0.441478,0.371521,0.331169,0.940191,0.263157,0.646014,0.809767,0.890505,0.51291,0.955308,0.889899,0.91787,0.00328887,0.984523,0.820996,0.158994,0.108187,0.838513,0.806519,0.300876,0.0853504,0.69169,0.558496,0.501646,0.209666,0.254537,0.412704,0.115992,0.340477,0.987635,0.7915,0.301857,0.163541,0.530208,0.660115,0.950308,0.559419,0.593994,0.466313,0.947721,0.708462,0.19131,0.730763,0.957641,0.443407,0.521515,0.276685,0.498909,0.696314,0.43843,0.563803,0.656735,0.0911028,0.650062,0.960113,0.314812,0.836738,0.612521,0.0750247,0.245608,0.121712,0.482858,0.918585,0.591223,0.272822,0.768201,0.896165,0.549913,0.0468189,0.932,0.311844,0.880985,0.519622,0.643278,0.225279,0.903121,0.69078,0.686483,0.70616,0.275146,0.936529,0.195019,0.365137,0.101968,0.553323,0.996961,0.120275,0.697634,0.477497,0.073442,0.367117,0.543646,0.924902,0.679316,0.631158,0.6983,0.268602,0.0188621,0.272216,0.795959,0.218279,0.935373,0.0845482,0.337993,0.983875,0.0179526,0.283802,0.315443,0.102333,0.977164,0.300799,0.442478,0.600022,0.947892,0.937838,0.294766,0.912017,|0.528181,0.60057,0.728971,0.751055,0.902937,0.53059,0.88268,0.47228,0.431368,0.725613,0.889968,0.282053,0.806721,0.842849,0.803703,0.477328,0.983553,0.693384,0.118145,0.75205,0.176648,0.21474,0.0575369,0.233039,0.0564631,0.787956,0.388988,0.848133,0.415418,0.763513,0.569234,0.390159,0.182873,0.981985,0.254736,0.859932,0.354837,0.362117,0.544014,0.333557,0.425406,0.849179,0.161729,0.650235,0.704874,0.456345,0.99944,0.818267,0.0910246,0.136373,0.989709,0.868064,0.246002,0.859219,0.761547,0.577781,0.677862,0.0348315,0.509457,0.0493878,0.617772,0.365059,0.890718,0.286998,0.569683,0.187105,0.251928,0.828951,0.201067,0.574029,0.252287,0.205202,0.980208,0.97448,0.361011,0.745227,0.466321,0.942252,0.189261,0.595672,0.488549,0.10842,0.114307,0.522606,0.0316034,0.784622,0.0986279,0.874523,0.0765971,0.542944,0.255477,0.179271,0.289929,0.0813494,0.506378,0.130052,0.61709,0.252896,0.371219,0.958896,0.510117,0.630353,0.296389,0.645718,0.796608,0.533587,0.00898457,0.610153,0.111146,0.504349,0.493172,0.552982,0.871187,0.426221,0.0108591,0.935674,0.409191,0.674091,0.31424,0.0120748,0.0970424,0.936796,0.671881,0.929377,0.301952,0.335602,0.515076,0.525435,0.625145,0.711069,0.486735,0.214963,0.966258,0.0337487,0.922523,0.573736,0.899226,0.838746,0.323123,0.00752431,0.41746,0.894955,0.517468,0.615513,0.347627,0.339428,0.326961,0.179529,0.460196,0.0857282,0.76209,0.716394,0.717626,0.0370831,0.692095,0.0543852,0.914633,0.810194,0.254386,0.64369,0.462973,0.326482,0.0898066,0.437298,0.0953316,0.994656,0.0398205,0.0482268,0.294063,0.662833,0.471342,0.467175,0.928222,0.89463,0.616245,0.690356,0.652227,0.781837,0.716864,0.196877,0.960795,0.64655,0.983233,0.875785,0.127125,0.708294,0.538998,0.733947,0.978968,0.69984,0.735512,0.282657,0.387349,0.908555,0.148872,0.138178,0.239869,0.64546,0.173608,0.331485,0.428406,0.757684,0.239051,0.317648,0.070882,0.299426,0.622904,0.907497,0.00840634,0.520317,0.0410969,0.320704,0.704899,0.360235,0.154735,0.701691,0.697302,0.707009,0.168877,0.695714,0.828154,0.555624,0.499571,0.769492,0.578736,0.418254,0.85615,0.339997,0.745477,0.617519,0.251991,0.59341,0.107507,0.789765,0.289172,0.51693,0.900391,0.686888,0.762283,0.672852,0.428002,0.0382224,0.753181,0.538805,0.842953,0.573621,0.378713,0.734585,0.704179,0.205585,0.0622865,0.21838,0.472005,0.985102,0.685811,0.794001,0.614759,0.235815,0.00572205,0.610688,0.435275,0.782461,0.525044,0.503403,0.506953,0.973644,0.952914,0.457454,0.132002,0.675038,0.611975,0.287191,0.235476,0.408514,0.642658,0.827187,0.419167,0.28369,0.09163,0.89457,0.102559,0.963319,0.940265,0.72948,0.20353,0.17107,0.786713,0.721713,0.828801,0.64264,0.453672,0.629105,0.502853,0.976223,0.460078,0.301801,0.725399,0.844224,0.601117,0.158469,0.265583,0.251817,0.687924,0.689707,0.490205,0.601748,0.948339,0.84571,0.485883,0.911631,0.461884,0.978165,0.192731,0.0243835,0.151989,0.537424,0.131025,0.151432,0.583573,0.81126,0.320626,0.249883,0.78949,0.427729,0.217913,0.118289,0.92816,0.348214,0.163703,0.822548,0.194075,0.631654,0.174106,0.371508,0.109902,0.242036,0.685935,0.593549,0.782366,0.133911,0.316851,0.760774,0.0870485,0.175697,0.513406,0.429408,0.779877,0.605729,0.413716,0.797847,0.937789,0.397965,0.952003,0.60218,0.74211,0.520272,0.360106,0.874109,0.55997,0.558563,0.464648,0.793238,0.158843,0.521118,0.499724,0.168745,0.323497,0.207718,0.485613,0.437343,0.579654,0.426236,0.398174,0.607489,0.384453,0.408283,0.731067,0.180353,0.907353,0.050983,0.934568,0.33991,0.715261,0.100805,0.574672,0.828607,0.560422,0.0993011,0.148839,0.244398,0.996562,0.196445,0.934959,0.459778,0.150271,0.540746,0.545731,0.385075,0.649029,0.313549,0.252252,0.610768,0.265191,0.467798,0.643344,0.281709,0.757858,0.387439,0.849471,0.825887,0.239887,0.809237,0.105785,0.996324,0.0801222,0.623674,0.991593,0.289226,0.710946,0.578617,0.7958,0.957171,0.0242561,0.368774,0.457237,0.411262,0.196821,0.526815,0.0604923,0.00967556,0.0258237,0.242596,0.774413,0.924631,0.17559,0.807037,0.928404,0.341922,0.668943,0.633641,0.0424052,0.168955,0.938533,0.578738,0.387614,0.829735,0.274984,0.861503,0.202878,0.841899,0.288918,0.33202,0.446089,0.86829,0.91071,0.870846,0.388228,0.128058,0.87135,0.265486,0.437021,0.746601,0.0331123,0.651511,0.267239,0.970375,0.184032,0.637304,0.936507,0.0287383,0.927409,0.21534,0.013731,0.518575,0.405139,0.516631,0.168173,0.955721,0.819173,0.217332,0.386555,0.476386,0.913462,0.250947,0.451758,0.896648,0.626802,0.113569,0.314214,0.32749,0.170634,0.454531,0.367893,0.942777,0.305005,0.121376,0.251761,0.176974,0.874772,0.8004,0.628677,0.696553,0.0184807,0.996682,0.54457,0.477327,0.885517,0.613469,0.908853,0.66353,0.266209,0.994719,0.771134,0.763131,0.0838488,0.691898,0.151894,0.520541,0.0742126,0.424903,0.565706,0.236854,0.970965,0.171754,0.949154,0.532258,0.122581,0.970034,0.226549,0.901022,0.750796,0.729567,0.844436,0.124126,0.952034,0.79729,0.704244,0.977509,0.594363,0.925096,0.58458,0.406169,0.350915,0.341034,0.649218,0.767614,0.194392,0.122213,0.813739,0.777556,0.674032,0.751777,0.0456398,0.958712,0.865095,0.1338,0.17847,0.998155,0.426754,0.517922,0.462296,0.430314,0.799737,0.495066,0.357035,0.4737,0.257925,0.356702,0.446883,0.457456,0.976382,0.523397,0.852811,0.595357,0.393785,0.537483,0.0825403,0.978475,0.553405,0.768205,0.33244,0.289901,0.699166,0.0511748,0.564087,0.823218,0.0470583,0.602229,0.112608,0.625922,0.243288,0.312134,0.197023,0.865252,0.3183,0.140631,0.387757,0.353949,0.70437,0.658849,0.923279,0.89393,0.0991833,0.131689,0.957147,0.248596,0.096643,0.882963,0.426013,0.967459,0.088378,0.697249,0.0811725,0.670806,0.374705,0.480304,0.966453,0.948479,0.711868,0.769498,0.335971,0.939473,0.51374,0.613101,0.735179,0.743414,0.393387,0.14437,0.405264,0.161604,0.541334,0.0947635,0.999812,0.902895,0.331368,0.50825,0.221714,0.851722,0.579941,0.402315,0.993113,0.217649,0.35655,0.449033,0.246156,0.359511,0.312829,0.0170093,0.229596,0.741815,0.433122,0.126681,0.197329,0.354717,0.991653,0.654343,0.614074,0.533006,0.571894,0.623977,0.483662,0.691971,0.21121,0.143649,0.769818,0.157996,0.794966,0.119401,0.278214,0.857332,0.621912,0.0142387,0.537315,0.856498,0.441046,0.144775,0.0915603,0.592951,0.129907,0.588957,0.488832,0.518481,0.96101,0.426901,0.519158,0.609501,0.303602,0.436591,0.526034,0.118014,0.0204062,0.597672,0.755191,0.0745208,0.538646,0.342081,0.624401,0.442077,0.572926,0.383331,0.371586,0.206208,0.988286,0.214839,0.335054,0.498919,0.175896,0.558108,0.231097,0.872497,0.657021,0.671894,0.264568,0.377739,0.442783,0.695664,0.473628,0.323894,0.246145,0.418721,0.673807,0.742619,0.918685,0.206434,0.787708,0.215018,0.534909,0.200471,0.657296,0.139323,0.954108,0.909226,0.614918,0.991151,0.438979,0.212558,0.409066,0.44779,0.843194,0.373084,0.30355,0.338736,0.155269,0.753051,0.70309,0.634176,0.764456,0.189543,0.661411,0.60698,0.503442,0.746279,0.230593,0.633631,0.731451,0.17426,0.520663,0.703233,0.682906,0.672219,0.599589,0.630814,0.420508,0.390409,0.701031,0.633878,0.681401,0.742115,0.827438,0.375358,0.657093,0.216243,0.815568,0.0568056,0.917103,0.22664,0.833464,0.208792,0.572464,0.621958,0.7618,0.649672,0.417251,0.693663,0.593755,0.987655,0.339887,0.970319,0.646017,0.527962,0.138105,0.0945306,0.403106,0.817179,0.306852,0.297606,0.0442742,0.669571,0.706182,0.329746,0.00182438,0.725256,0.488916,0.193617,0.659309,0.971789,0.00594532,0.520317,0.739738,0.201795,0.438274,0.744641,0.756826,0.829017,0.63496,0.968993,0.481685,0.746796,0.793718,0.558191,0.647948,0.92626,0.842762,0.519312,0.822227,0.115614,0.190343,0.726831,0.58822,0.666918,0.91078,0.1494,0.152373,0.54808,0.96182,0.387304,0.234935,0.605736,0.87118,0.559926,0.649888,0.313137,0.106111,0.933593,0.177454,0.312974,0.0272811,0.398826,0.479017,0.254719,0.969972,0.139086,0.0831719,0.852995,0.0300389,0.217926,0.273621,0.752124,0.429223,0.666395,0.218039,0.694602,0.0968568,0.130398,0.996806,0.988666,0.335056,0.65484,0.846933,0.589677,0.71765,0.15247,0.897401,0.852388,0.455298,0.176194,0.887664,0.0921007,0.73889,0.501479,0.562196,0.940473,0.76697,0.23721,0.781075,0.661258,0.0858367,0.749923,0.72037,0.0756393,0.968103,0.521845,0.986154,0.938189,0.268045,0.514506,0.603053,0.906019,0.306332,0.428674,0.634168,0.4861,0.672982,0.691566,0.20076,0.200158,0.0316522,0.342655,0.862977,0.26258,0.812344,0.582338,0.0245265,0.230942,0.291378,0.0477928,0.607161,0.827947,0.771839,0.407954,0.829579,0.858375,0.896026,0.406227,0.257291,0.335509,0.411369,0.58326,0.63483,0.392506,0.782493,0.547898,0.60449,0.0402967,0.467057,0.343008,0.566661,0.413227,0.969778,0.677399,0.302091,0.547254,0.473329,0.336251,0.964326,0.502503,0.464916,6.77705e-05,0.389825,0.184477,0.117693,0.0870537,0.767645,0.133342,0.510285,0.957026,0.0892215,0.351805,0.278027,0.541317,0.463434,0.740169,0.581399,0.779172,0.900303,0.41261,0.129593,0.664742,0.738007,0.398014,0.830466,0.713089,0.985703,0.721777,0.828846,0.314411,0.700298,0.983906,0.0715503,0.0261951,0.128231,0.229327,0.880874,0.91081,0.0188894,0.762588,0.523449,0.292708,0.857306,0.254981,0.594117,0.18732,0.324464,0.273614,0.764764,0.0961973,0.303432,0.0394803,0.997369,0.0569878,|0.66869,0.799412,0.389994,0.343257,0.996019,0.532557,0.323271,0.108198,0.491581,0.166799,0.32431,0.637544,0.545487,0.697996,0.424924,0.888425,0.967243,0.0923052,0.136377,0.513875,0.256383,0.321541,0.000199914,0.41661,0.739434,0.586871,0.471505,0.640062,0.120525,0.151778,0.961963,0.909074,0.112233,0.897672,0.554102,0.145253,0.959753,0.525285,0.93596,0.433828,0.649885,0.0880963,0.171668,0.72938,0.557282,0.414332,0.189617,0.093253,0.658916,0.268068,0.758201,0.727799,0.189358,0.327483,0.675247,0.302559,0.884479,0.653778,0.868802,0.480716,0.281801,0.833063,0.00734425,0.0882,0.586504,0.820127,0.724612,0.0314889,0.675632,0.969734,0.564631,0.826426,0.489259,0.296688,0.872296,0.617126,0.589713,0.373267,0.599184,0.191299,0.419977,0.843119,0.717465,0.454684,0.645756,0.687846,0.453648,0.308898,0.507935,0.85198,0.0346365,0.590649,0.377685,0.885128,0.105835,0.797966,0.145078,0.786636,0.605334,0.299182,0.98622,0.279026,0.061018,0.942658,0.286868,0.756601,0.641671,0.492365,0.77571,0.961971,0.0644851,0.53311,0.897254,0.668303,0.151339,0.780045,0.434263,0.804807,0.816076,0.0081777,0.784611,0.572017,0.967206,0.481893,0.47192,0.601219,0.152184,0.745785,0.92902,0.523367,0.609014,0.27546,0.386693,0.732572,0.229937,0.369669,0.795801,0.992005,0.718849,0.49417,0.315815,0.285654,0.815158,0.876591,0.436925,0.140866,0.874673,0.08106,0.0270956,0.860654,0.964307,0.546356,0.889545,0.708606,0.407053,0.104878,0.322075,0.965325,0.17422,0.170452,0.223046,0.25167,0.155007,0.337165,0.143379,0.0822272,0.241389,0.639481,0.738608,0.218584,0.37845,0.803037,0.0155485,0.873918,0.0461762,0.15551,0.708721,0.909344,0.502659,0.90744,0.157719,0.438392,0.364058,0.985967,0.191218,0.647536,0.0564104,0.457056,0.940585,0.570337,0.307651,0.504112,0.657901,0.21905,0.730832,0.337686,0.28765,0.97821,0.0760471,0.727064,0.771501,0.80961,0.367472,0.956271,0.90266,0.131809,0.105792,0.3795,0.371703,0.296045,0.946414,0.31316,0.594748,0.58399,0.0371794,0.0793644,0.897137,0.535772,0.984959,0.171617,0.0317834,0.646788,0.345211,0.312939,0.380512,0.930278,0.251185,0.745969,0.00552237,0.685736,0.597919,0.303958,0.0429397,0.670781,0.181866,0.63026,0.245407,0.876049,0.459618,0.3091,0.795854,0.827227,0.108051,0.624016,0.878411,0.67049,0.673473,0.958528,0.639288,0.0673705,0.372283,0.0544492,0.832172,0.78411,0.593072,0.61736,0.0671973,0.346481,0.0883275,0.056267,0.0715553,0.837964,0.895893,0.46164,0.411754,0.369667,0.0784032,0.751049,0.058835,0.605402,0.268436,0.703435,0.273635,0.464289,0.595119,0.632156,0.938814,0.332547,0.454596,0.900653,0.892536,0.845808,0.149518,0.888279,0.669716,0.218164,0.855894,0.250202,0.471567,0.242059,0.396204,0.963242,0.576583,0.422796,0.483994,0.348309,0.982849,0.791141,0.240091,0.799151,0.676235,0.377126,0.346436,0.224525,0.558405,0.665167,0.139456,0.330759,0.185807,0.0514739,0.96871,0.464715,0.474325,0.983278,0.172631,0.141083,0.00773489,0.559834,0.256462,0.255415,0.931637,0.694473,0.950574,0.371144,0.238084,0.809904,0.0665332,0.773053,0.230355,0.321588,0.978963,0.872239,0.959557,0.0721053,0.634822,0.794385,0.693338,0.431727,0.325317,0.566723,0.332618,0.24905,0.797199,0.253514,0.575543,0.394209,0.307588,0.714956,0.646697,0.591823,0.663007,0.849757,0.280887,0.475313,0.747069,0.503403,0.423899,0.158205,0.013831,0.636324,0.376209,0.904263,0.454094,0.0655705,0.660657,0.404928,0.462924,0.255256,0.89807,0.912939,0.30678,0.82903,0.0535948,0.532449,0.334224,0.671777,0.634982,0.769513,0.112031,0.407342,0.359455,0.991527,0.0244791,0.789614,0.935668,0.000109255,0.269149,0.340785,0.89232,0.0180261,0.0713704,0.139133,0.0609844,0.171521,0.619338,0.726866,0.690116,0.769857,0.211066,0.895612,0.15845,0.555719,0.526042,0.870116,0.99116,0.0373675,0.416,0.769863,0.98983,0.768663,0.628353,0.158761,0.954505,0.856134,0.916562,0.801805,0.868433,0.354459,0.136712,0.255555,0.0290703,0.730245,0.710993,0.534016,0.862267,0.861712,0.771858,0.607051,0.0324603,0.656042,0.601935,0.866777,0.447141,0.0701799,0.293438,0.11341,0.0357169,0.0472659,0.643239,0.892911,0.562428,0.673048,0.783286,0.833116,0.189483,0.261597,0.307761,0.0998998,0.119001,0.377929,0.608001,0.668265,0.949355,0.856895,0.580908,0.606977,0.26783,0.351213,0.859086,0.530731,0.844255,0.315215,0.807987,0.284164,0.578324,0.201839,0.584578,0.790828,0.579497,0.613813,0.72072,0.695233,0.801135,0.710948,0.641067,0.942774,0.910749,0.711147,0.864497,0.194599,0.576773,0.393706,0.176172,0.439239,0.686264,0.00527251,0.703219,0.972369,0.980663,0.851015,0.343775,0.0709646,0.120854,0.220454,0.0558659,0.876213,0.0368192,0.0677087,0.281402,0.217558,0.410276,0.658133,0.836606,0.901318,0.242105,0.616405,0.988648,0.558339,0.189943,9.57251e-05,0.297394,0.480377,0.570166,0.729634,0.117096,0.23443,0.851862,0.776706,0.437784,0.480165,0.428123,0.25269,0.899489,0.560466,0.292592,0.0680129,0.185207,0.757408,0.465629,0.469414,0.529,0.89537,0.754019,0.975544,0.370247,0.304487,0.706797,0.33008,0.929358,0.905294,0.41607,0.756318,0.0996012,0.770091,0.534163,0.72479,0.0934614,0.754002,0.416629,0.682747,0.389174,0.604353,0.372222,0.545159,0.924075,0.795913,0.759568,0.876426,0.737202,0.198419,0.446993,0.136063,0.150495,0.243463,0.995964,0.617607,0.327907,0.174444,0.962955,0.599489,0.942081,0.149155,0.159014,0.159022,0.560241,0.841374,0.511183,0.674051,0.895659,0.930715,0.885098,0.969457,0.0466258,0.3481,0.129671,0.821936,0.673162,0.0519643,0.652696,0.553558,0.239181,0.966027,0.876627,0.854313,0.56778,0.721441,0.311881,0.350712,0.969856,0.675532,0.621011,0.322917,0.785114,0.11789,0.0776249,0.464553,0.596116,0.896024,0.818561,0.126928,0.160527,0.0630943,0.307596,0.494738,0.806242,0.861518,0.0134155,0.729394,0.954092,0.214149,0.596948,0.46065,0.736869,0.314504,0.926519,0.171981,0.0660734,0.553616,0.94667,0.810813,0.22498,0.52749,0.693713,0.669593,0.496669,0.0909306,0.885472,0.828783,0.983314,0.278012,0.977409,0.161043,0.985011,0.421108,0.929877,0.755298,0.747498,0.152433,0.93952,0.922161,0.401216,0.785955,0.299667,0.219119,0.646422,0.349303,0.537479,0.2728,0.733117,0.673016,0.575479,0.473802,0.578576,0.159413,0.439211,0.59756,0.711277,0.332543,0.889166,0.23214,0.900948,0.909773,0.0755211,0.144076,0.330878,0.0452588,0.547675,0.211715,0.147078,0.0939338,0.993533,0.399052,0.427921,0.95608,0.533025,0.284093,0.299101,0.743667,0.745063,0.00181419,0.567517,0.35025,0.960526,0.0844595,0.213955,0.37924,0.456963,0.126331,0.0430363,0.410743,0.480143,0.944602,0.485873,0.17975,0.641021,0.326143,0.782941,0.713733,0.879047,0.144372,0.0264316,0.205135,0.150316,0.297246,0.291729,0.754792,0.167425,0.548089,0.768114,0.68335,0.906512,0.00193208,0.18984,0.976804,0.658228,0.561687,0.062591,0.358174,0.0107879,0.524602,0.0956388,0.742923,0.115251,0.383927,0.583071,0.0863,0.834184,0.0520349,0.390763,0.11667,0.0447943,0.45585,0.756713,0.501035,0.681467,0.934847,0.703838,0.122316,0.533308,0.101364,0.811098,0.928944,0.824342,0.258157,0.508409,0.588734,0.653289,0.495461,0.407522,0.411872,0.673834,0.0273097,0.0754506,0.561042,0.0208715,0.761531,0.198696,0.333664,0.985326,0.4584,0.937084,0.0674513,0.283691,0.563979,0.546868,0.213755,0.306725,0.596453,0.557398,0.406105,0.492613,0.233687,0.875475,0.848013,0.500986,0.357496,0.395956,0.548599,0.667354,0.551903,0.0323798,0.959106,0.521324,0.991491,0.949333,0.259531,0.271086,0.0390609,0.127146,0.104107,0.292371,0.0733747,0.434407,0.250526,0.718887,0.675263,0.34933,0.319833,0.989714,0.736926,0.0942602,0.659211,0.222226,0.439331,0.359724,0.50204,0.0100999,0.0436021,0.430968,0.440821,0.477946,0.843046,0.994198,0.603651,0.314653,0.0942399,0.774434,0.369208,0.968115,0.599724,0.788233,0.656687,0.330539,0.665783,0.439216,0.00867301,0.437203,0.159795,0.903483,0.526384,0.917797,0.677459,0.127475,0.967502,0.209452,0.111325,0.837397,0.699578,0.614681,0.471415,0.428181,0.561829,0.923874,0.00222307,0.594892,0.56833,0.183168,0.447146,0.394561,0.253528,0.557751,0.641653,0.434101,0.0906014,0.19082,0.472536,0.162208,0.147974,0.535827,0.194921,0.772788,0.689169,0.443066,0.513815,0.546428,0.772671,0.658561,0.684306,0.381327,0.209197,0.825519,0.605102,0.358,0.32071,0.0500793,0.91184,0.816714,0.281543,0.114435,0.187324,0.588897,0.267717,0.858662,0.585389,0.509009,0.547539,0.283191,0.883792,0.340939,0.810532,0.460041,0.636288,0.52232,0.375329,0.0448575,0.81561,0.345191,0.768515,0.18402,0.980458,0.562554,0.71499,0.674812,0.0428668,0.592371,0.977195,0.300116,0.374548,0.0262746,0.0497351,0.110576,0.898515,0.0256829,0.947672,0.656561,0.477299,0.904188,0.833053,0.891195,0.87355,0.189335,0.494301,0.705807,0.360633,0.925278,0.950116,0.236905,0.746839,0.486792,0.793855,0.0766001,0.890899,0.522024,0.480656,0.110345,0.957874,0.360044,0.847903,0.618724,0.279116,0.564863,0.623555,0.250693,0.912752,0.523045,0.17208,0.255356,0.682275,0.201422,0.442552,0.955339,0.90686,0.634656,0.107511,0.0144146,0.292726,0.64559,0.128257,0.225956,0.148114,0.843254,0.0315038,0.289021,0.0250714,0.372439,0.089008,0.523305,0.0402841,0.190624,0.718592,0.102536,0.121669,0.777848,0.695035,0.283079,0.2197,0.204353,0.0242971,0.725885,0.566846,0.34411,0.306031,0.619785,0.777671,0.72876,0.201286,0.0511701,0.947735,0.961478,0.971223,|0.601051,0.613423,0.736648,0.358426,0.488668,0.501505,0.0443881,0.619247,0.191813,0.0257661,0.528339,0.620569,0.661044,0.0284516,0.73071,0.241102,0.925541,0.548942,0.602973,0.587373,0.079573,0.549668,0.775121,0.085144,0.90399,0.657088,0.98587,0.887186,0.479716,0.575903,0.392681,0.682483,0.150104,0.584132,0.510221,0.294353,0.796917,0.393068,0.545922,0.0195427,0.504115,0.258633,0.676823,0.546606,0.199699,0.112043,0.152819,0.726919,0.75151,0.642586,0.56857,0.853327,0.550837,0.689153,0.802497,0.812004,0.117613,0.614698,0.207443,0.85387,0.65576,0.668292,0.472484,0.613866,0.377341,0.255041,0.568633,0.301758,0.845823,0.735381,0.608527,0.731892,0.54472,0.694021,0.466231,0.257257,0.263183,0.804039,0.157065,0.875697,0.678487,0.745502,0.883964,0.569018,0.926343,0.278457,0.237702,0.247409,0.0599155,0.751206,0.735988,0.507847,0.607376,0.010561,0.685928,0.0760562,0.0475896,0.777578,0.858973,0.510455,0.361791,0.483155,0.710962,0.423275,0.039254,0.812974,0.11893,0.511656,0.607184,0.190191,0.641706,0.98972,0.159016,0.668116,0.337965,0.608814,0.737767,0.34116,0.991677,0.30075,0.999947,0.972189,0.371998,0.788578,0.881869,0.682475,0.983434,0.189359,0.272161,0.884099,0.317773,0.331013,0.727053,0.212112,0.913474,0.0614463,0.308333,0.0528424,0.857772,0.256674,0.751773,0.83852,0.778514,0.010244,0.540049,0.672874,0.83794,0.685011,0.216304,0.304637,0.323369,0.248301,0.342171,0.601487,0.866974,0.171647,0.043855,0.135277,0.18586,0.356489,0.397928,0.805474,0.0306033,0.0155048,0.952087,0.64769,0.308075,0.638234,0.849019,0.676363,0.958068,0.111066,0.382335,0.504256,0.311041,0.514565,0.71069,0.58229,0.302331,0.663088,0.591732,0.581972,0.0953462,0.132865,0.39647,0.773921,0.094757,0.124683,0.562989,0.970107,0.552815,0.875496,0.632185,0.129026,0.976932,0.878684,0.079167,0.498731,0.0593503,0.165938,0.63947,0.0313848,0.948658,0.763279,0.960648,0.29795,0.463181,0.294793,0.838195,0.455475,0.348121,0.741195,0.496418,0.977504,0.426759,0.53323,0.784416,0.381335,0.651476,0.0741565,0.964855,0.668265,0.365329,0.0365641,0.420314,0.415178,0.744172,0.0650153,0.460395,0.255265,0.13628,0.851763,0.787031,0.816776,0.716152,0.914979,0.87269,0.523773,0.555154,0.724844,0.931695,0.193836,0.0436798,0.9044,0.863165,0.072665,0.654187,0.178235,0.314177,0.416559,0.771433,0.699506,0.306333,0.00356817,0.191751,0.810986,0.797259,0.0420119,0.833957,0.0960152,0.304855,0.848522,0.445698,0.274338,0.662961,0.423099,0.541211,0.151769,0.682429,0.823631,0.527082,0.257618,0.469873,0.118675,0.171002,0.127382,0.560927,0.272504,0.21993,0.706567,0.54969,0.478287,0.872552,0.0635029,0.0201997,0.620458,0.944683,0.209439,0.654565,0.108412,0.780827,0.858966,0.700339,0.952617,0.217448,0.538328,0.774811,0.340528,0.558172,0.449574,0.360596,0.410744,0.985485,0.939384,0.481393,0.197062,0.688734,0.24959,0.508524,0.377232,0.32661,0.890937,0.791501,0.798376,0.268307,0.553697,0.410394,0.238243,0.701933,0.969826,0.640679,0.1124,0.706733,0.356179,0.754523,0.122506,0.699349,0.194108,0.0196316,0.93456,0.549739,0.470785,0.423452,0.0253804,0.198752,0.172808,0.210676,0.234965,0.804164,0.924795,0.24795,0.491829,0.395128,0.204926,0.329448,0.0462036,0.0663019,0.159808,0.988913,0.87028,0.535788,0.277331,0.59795,0.00564104,0.635062,0.393314,0.623813,0.0743691,0.789731,0.926114,0.404508,0.934539,0.97026,0.550841,0.453265,0.742927,0.927889,0.359905,0.945269,0.96515,0.950864,0.207553,0.835924,0.976395,0.12506,0.84425,0.137735,0.0152676,0.672659,0.382361,0.07404,0.820652,0.516669,0.217121,0.967931,0.201872,0.15946,0.281851,0.414154,0.0350611,0.168049,0.601565,0.324538,0.768901,0.0879422,0.0427889,0.45326,0.456697,0.123618,0.395562,0.42035,0.664941,0.196391,0.44038,0.682123,0.476481,0.331291,0.962573,0.0415146,0.582494,0.0805607,0.827474,0.838449,0.961097,0.303501,0.112499,0.56354,0.430998,0.834325,0.61499,0.818632,0.606417,0.376928,0.57169,0.60355,0.0762388,0.362627,0.0193325,0.0267372,0.955215,0.753208,0.298979,0.512276,0.099142,0.113391,0.851426,0.425888,0.322111,0.0837062,0.288567,0.690686,0.220251,0.339475,0.642479,0.908172,0.694083,0.728379,0.988936,0.0972888,0.209928,0.111951,0.710028,0.156028,0.643977,0.0321712,0.973728,0.657003,0.448466,0.663448,0.133377,0.742189,0.535724,0.964629,0.685318,0.427493,0.822498,0.732342,0.994486,0.199676,0.85719,0.925684,0.0737278,0.322923,0.674353,0.350118,0.0792235,0.411359,0.957704,0.258389,0.902002,0.408307,0.671009,0.80221,0.460353,0.5306,0.186598,0.486171,0.511116,0.625357,0.259293,0.97102,0.395201,0.641575,0.88917,0.799366,0.46527,0.331603,0.035916,0.616408,0.295866,0.941815,0.892895,0.510981,0.0779349,0.483913,0.146965,0.129787,0.914282,0.0468359,0.334231,0.556579,0.433502,0.752528,0.509847,0.850508,0.951191,0.0960941,0.316836,0.682936,0.119504,0.696261,0.659102,0.74775,0.737746,0.449806,0.868842,0.170939,0.84422,0.854271,0.56205,0.152177,0.936689,0.0281649,0.468514,0.905436,0.0756171,0.865852,0.467594,0.768745,0.526558,0.195479,0.671531,0.986357,0.129214,0.671886,0.0895869,0.0980788,0.890823,0.734173,0.0545726,0.806172,0.712102,0.324052,0.433883,0.0352271,0.854028,0.0728578,0.557357,0.322158,0.0221975,0.342625,0.366944,0.546975,0.452994,0.539439,0.405044,0.430573,0.228279,0.169615,0.146013,0.127872,0.169942,0.11353,0.366073,0.710644,0.252316,0.697837,0.250313,0.469916,0.232856,0.650304,0.135085,0.0109442,0.072702,0.359231,0.693476,0.745334,0.881851,0.718969,0.505919,0.0147655,0.0589004,0.628654,0.252857,0.595473,0.710969,0.585225,0.346053,0.701946,0.220923,0.870346,0.418507,0.235186,0.0512761,0.74547,0.659689,0.39968,0.903305,0.378058,0.359187,0.26642,0.97531,0.495962,0.0212644,0.441604,0.393555,0.180107,0.947294,0.373341,0.039057,0.0629265,0.666716,0.92704,0.41862,0.35306,0.326431,0.262247,0.100792,0.173752,0.980785,0.484686,0.731152,0.0122369,0.623167,0.922242,0.194348,0.916487,0.222319,0.0968755,0.469208,0.0789415,0.38573,0.136451,0.508875,0.685817,0.00886118,0.237003,0.203885,0.793223,0.547469,0.57979,0.796023,0.28727,0.508458,0.564247,0.65907,0.427673,0.134169,0.866993,0.724243,0.362143,0.648472,0.254115,0.453714,0.774587,0.769228,0.988953,0.569919,0.936153,0.155895,0.353537,0.959033,0.171165,0.913672,0.560014,0.270843,0.530039,0.806741,0.27113,0.447944,0.635359,0.592741,0.142353,0.546037,0.42991,0.750745,0.11091,0.782482,0.214681,0.950077,0.383807,0.146944,0.320446,0.982002,0.032649,0.0369766,0.712883,0.935632,0.561058,0.670303,0.343817,0.261773,0.734232,0.382399,0.368225,0.357403,0.576643,0.599429,0.509865,0.644286,0.0109481,0.93882,0.819182,0.716593,0.37148,0.121788,0.924325,0.0544427,0.88064,0.902557,0.814243,0.566275,0.4179,0.911436,0.935289,0.212229,0.0713624,0.0349138,0.349889,0.766226,0.840808,0.00773275,0.587195,0.448634,0.445093,0.442835,0.875245,0.638664,0.167409,0.546208,0.590813,0.214825,0.932605,0.969101,0.501145,0.108571,0.00106519,0.88512,0.47005,0.596471,0.566258,0.284196,0.847724,0.382827,0.110633,0.901568,0.652606,0.0314632,0.443582,0.840208,0.631603,0.4933,0.504562,0.831261,0.522766,0.828222,0.0148019,0.08294,0.52766,0.22702,0.736537,0.792608,0.610423,0.489081,0.603864,0.226383,0.381322,0.105239,0.828877,0.656264,0.285751,0.384269,0.597396,0.263907,0.275548,0.0499998,0.419247,0.0449901,0.471717,0.398963,0.636178,0.965269,0.105031,0.4455,0.584842,0.399838,0.169122,0.241303,0.62019,0.643119,0.879358,0.187147,0.112704,0.405996,0.557781,0.254718,0.615592,0.183378,0.565522,0.158856,0.949383,0.0434677,0.342428,0.341915,0.559926,0.441225,0.787444,0.321449,0.651818,0.359368,0.753816,0.365194,0.0273424,0.645318,0.297213,0.741712,0.0501241,0.525754,0.87125,0.7414,0.18846,0.133427,0.655012,0.318229,0.0138129,0.039732,0.508419,0.180289,0.78026,0.430236,0.404205,0.576077,0.945869,0.614918,0.652477,0.629645,0.756084,0.182439,0.299493,0.961067,0.582105,0.556357,0.439853,0.267724,0.692964,0.558912,0.641857,0.555675,0.496747,0.454226,0.335907,0.0560221,0.933206,0.228707,0.525743,0.168727,0.0600293,0.401466,0.36904,0.270698,0.861838,0.645224,0.525072,0.820891,0.573423,0.516166,0.593348,0.87719,0.245171,0.023986,0.552617,0.0993629,0.902382,0.478342,0.983211,0.4615,0.983031,0.572048,0.425496,0.0848547,0.612726,0.865135,0.552785,0.223966,0.553064,0.828138,0.0702159,0.22595,0.413795,0.671148,0.463232,0.0128894,0.164531,0.974274,0.519378,0.200848,0.532007,0.331756,0.0953917,0.885943,0.805018,0.411801,0.486424,0.560359,0.653113,0.176718,0.496522,0.352545,0.769248,0.729518,0.844895,0.48658,0.294574,0.238477,0.00254685,0.129561,0.109485,0.12568,0.58801,0.313165,0.953332,0.764591,0.176051,0.550014,0.880288,0.620482,0.785675,0.70053,0.239634,0.50922,0.484383,0.197081,0.309792,0.713044,0.703738,0.683855,0.518586,0.42431,0.159575,0.320473,0.875668,0.235506,0.62998,0.915128,0.294163,0.906139,0.751734,0.391017,0.564151,0.297167,0.8436,0.686549,0.78685,0.683016,0.621721,0.976142,0.556047,0.377905,0.29322,0.0399066,0.665282,0.917438,0.722529,0.30426,0.995957,0.0901574,0.0460381,0.448228,0.944981,0.979047,0.612986,0.845761,0.820855,0.262784,0.916796,0.317476,0.721003,0.586316,0.670137,0.725745,0.471326,0.554007,0.463156,0.368984,0.416051,0.984379,0.88665,0.794116,0.451785,0.520576,|0.206009,0.50549,0.534252,0.846951,0.633496,0.161774,0.568987,0.245642,0.272852,0.712838,0.97003,0.687928,0.379065,0.244977,0.934045,0.800066,0.632821,0.736237,0.668691,0.146792,0.762454,0.812345,0.862893,0.394935,0.104752,0.192296,0.0764889,0.870468,0.962462,0.737843,0.596132,0.606309,0.566776,0.553475,0.0638456,0.289312,0.522805,0.173162,0.991206,0.162005,0.0570351,0.0629709,0.444979,0.882641,0.172395,0.124232,0.852883,0.7937,0.148937,0.666783,0.957797,0.862751,0.797689,0.228062,0.815979,0.365629,0.711578,0.745796,0.297262,0.986862,0.143713,0.934492,0.806123,0.186826,0.0982977,0.179855,0.293189,0.722269,0.38975,0.886603,0.268006,0.735492,0.321928,0.753531,0.46522,0.372441,0.267122,0.913008,0.0158919,0.0826917,0.244529,0.0592186,0.207176,0.623878,0.0510843,0.656545,0.504964,0.315842,0.668621,0.377252,0.496613,0.421008,0.983967,0.646254,0.483675,0.765767,0.610866,0.866809,0.423648,0.63504,0.865889,0.139203,0.618203,0.73475,0.0638737,0.0478421,0.914966,0.179402,0.185376,0.487709,0.69757,0.315755,0.139985,0.953718,0.72468,0.961306,0.0814561,0.239596,0.0123375,0.314104,0.584134,0.759544,0.474697,0.293746,0.487043,0.343219,0.909144,0.565557,0.192191,0.0729154,0.178812,0.215343,0.25982,0.0507526,0.188847,0.924059,0.183712,0.340204,0.201416,0.610129,0.811822,0.649878,0.100273,0.0589057,0.860962,0.130969,0.158918,0.211338,0.881721,0.84209,0.953154,0.29041,0.512303,0.342853,0.544969,0.723493,0.148439,0.479836,0.981009,0.651759,0.237854,0.975979,0.412666,0.686644,0.561559,0.990865,0.702777,0.446044,0.967073,0.759374,0.29965,0.0472565,0.993199,0.0418797,0.231423,0.829191,0.209367,0.680808,0.630116,0.894282,0.125614,0.0870231,0.508696,0.982545,0.0293915,0.366854,0.682158,0.510584,0.18653,0.501837,0.174202,0.327764,0.771578,0.425918,0.113717,0.839621,0.649363,0.563331,0.59563,0.718228,0.72912,0.13827,0.914665,0.998168,0.684079,0.196422,0.266958,0.210166,0.0555412,0.908734,0.0123407,0.769782,0.645459,0.545123,0.351794,0.0904455,0.856032,0.739077,0.846924,0.218707,0.333747,0.671427,0.551228,0.410171,0.783064,0.0642122,0.813331,0.16361,0.126416,0.618189,0.0709013,0.968528,0.660549,0.575259,0.642134,0.809156,0.927768,0.643936,0.0105726,0.431241,0.00311357,0.817664,0.0383239,0.144342,0.0696878,0.0938905,0.941333,0.345049,0.606094,0.154064,0.0566254,0.497478,0.249978,0.178123,0.695409,0.239262,0.960258,0.278244,0.499324,0.814441,0.00688612,0.0059492,0.955441,0.637071,0.515711,0.466046,0.618025,0.809309,0.396794,0.69754,0.918504,0.422454,0.41488,0.0456316,0.653874,0.415494,0.457565,0.772243,0.366189,0.55357,0.154955,0.733943,0.497652,0.0803871,0.355529,0.728094,0.586538,0.45611,0.0836997,0.451722,0.076721,0.488217,0.642374,0.716136,0.385348,0.264135,0.085611,0.987119,0.138926,0.0986728,0.659224,0.783851,0.446228,0.862764,0.595985,0.342284,0.299899,0.0374889,0.893081,0.345894,0.107947,0.730701,0.124367,0.253172,0.814498,0.669365,0.786064,0.00157613,0.518875,0.362498,0.952865,0.895184,0.93202,0.669443,0.878077,0.61685,0.0536354,0.684667,0.963796,0.767673,0.232433,0.638293,0.987661,0.851544,0.374113,0.0110112,0.0856488,0.334859,0.40987,0.45052,0.757668,0.671104,0.416272,0.58053,0.309505,0.201197,0.00775844,0.898003,0.2902,0.84073,0.0134064,0.197013,0.921132,0.723443,0.446114,0.965685,0.484346,0.943558,0.969245,0.358542,0.621502,0.274118,0.626262,0.308561,0.230046,0.0957443,0.821821,0.209451,0.53685,0.816171,0.696313,0.213615,0.919776,0.301638,0.464721,0.416428,0.787447,0.0721846,0.399968,0.731434,0.471668,0.520447,0.477162,0.564573,0.664726,0.0380765,0.216474,0.0900906,0.562887,0.307503,0.0614761,0.889057,0.279112,0.384511,0.881542,0.231487,0.111388,0.954794,0.26174,0.906474,0.0250828,0.322009,0.498239,0.875239,0.532849,0.245335,0.103705,0.220833,0.255247,0.809595,0.22412,0.161072,0.335556,0.10824,0.268102,0.356383,0.317772,0.024932,0.967047,0.542077,0.563651,0.908323,0.766735,0.789232,0.598686,0.711584,0.522402,0.990932,0.905327,0.76263,0.35598,0.291424,0.466501,0.807747,0.96982,0.339369,0.120571,0.658806,0.465808,0.761165,0.0949719,0.385189,0.451466,0.338115,0.17371,0.80775,0.758667,0.690064,0.775564,0.310189,0.122743,0.189979,0.716865,0.757981,0.242615,0.266788,0.236424,0.654517,0.283512,0.646142,0.42084,0.582072,0.236462,0.293255,0.942377,0.308305,0.662412,0.96667,0.412055,0.813618,0.113811,0.876256,0.00127774,0.397382,0.0153978,0.483643,0.569199,0.912056,0.62085,0.2815,0.377471,0.416988,0.627649,0.51366,0.506151,0.823897,0.507457,0.24083,0.553496,0.54296,0.715829,0.494873,0.583016,0.942578,0.626506,0.281308,0.840709,0.955285,0.0325096,0.14918,0.33324,0.00569075,0.878826,0.290517,0.538507,0.641355,0.815272,0.52379,0.544735,0.846933,0.887073,0.0524781,0.638299,0.36791,0.703373,0.508026,0.943868,0.551709,0.862731,0.939674,0.0150681,0.596506,0.793129,0.308475,0.665327,0.161933,0.897528,0.689815,0.223897,0.447542,0.719605,0.796502,0.518101,0.391257,0.639319,0.591127,0.773463,0.773422,0.548596,0.0598308,0.863857,0.457145,0.73732,0.833721,0.409067,0.160985,0.013256,0.54302,0.46711,0.83825,0.815657,0.763917,0.662458,0.271676,0.866119,0.983722,0.0891421,0.525245,0.184374,0.267563,0.307386,0.59715,0.000193536,0.226029,0.377973,0.326134,0.258594,0.653359,0.290392,0.806552,0.908549,0.258672,0.0459471,0.441777,0.366754,0.162243,0.628227,0.638972,0.635364,0.284025,0.563736,0.771235,0.896235,0.533696,0.108172,0.0430369,0.809672,0.383208,0.526108,0.415828,0.765229,0.513167,0.670005,0.428178,0.636115,0.978961,0.015964,0.225271,0.872776,0.329974,0.0716048,0.985595,0.069861,0.455416,0.760402,0.584415,0.667988,0.689952,0.759118,0.0412609,0.737723,0.135484,0.354299,0.216627,0.529424,0.527716,0.00112379,0.455939,0.514817,0.463656,0.136793,0.261598,0.20326,0.210155,0.134061,0.890985,0.456222,0.764648,0.624453,0.871629,0.877408,0.462307,0.991037,0.846059,0.388185,0.799181,0.729472,0.0402371,0.71894,0.924984,0.160681,0.659492,0.428344,0.787516,0.627524,0.797469,0.301018,0.886175,0.859151,0.178469,0.215923,0.364264,0.762149,0.71848,0.800074,0.224278,0.303057,0.0175923,0.816904,0.429065,0.49901,0.555391,0.611695,0.562428,0.137199,0.340753,0.32056,0.769404,0.374021,0.632734,0.0740588,0.320738,0.662726,0.75274,0.429037,0.247034,0.806423,0.161835,0.144129,0.558839,0.306895,0.611847,0.488787,0.329011,0.911418,0.410182,0.365997,0.663136,0.374248,0.767079,0.429615,0.0534355,0.560043,0.841798,0.982587,0.536288,0.488909,0.255915,0.00981313,0.0631903,0.46617,0.42556,0.999612,0.161384,0.0145759,0.981677,0.121095,0.193184,0.198293,0.480181,0.83937,0.0386447,0.482711,0.214029,0.912097,0.434333,0.0260504,0.872141,0.952355,0.788596,0.95412,0.965274,0.0191543,0.839785,0.949284,0.261414,0.429414,0.221593,0.583779,0.0350298,0.495239,0.300322,0.221663,0.734693,0.399538,0.639731,0.914225,0.234355,0.719137,0.388237,0.676006,0.611606,0.21694,0.920525,0.271143,0.778841,0.06122,0.442094,0.993061,0.146629,0.94735,0.948738,0.694495,0.63719,0.2018,0.696135,0.722888,0.96478,0.348102,0.286767,0.128514,0.895209,0.27155,0.870957,0.536968,0.473892,0.513288,0.432857,0.394411,0.883657,0.382398,0.326019,0.732913,0.510761,0.198578,0.416217,0.692865,0.589839,0.557802,0.428515,0.776264,0.774486,0.0171682,0.319142,0.592373,0.440277,0.672863,0.434746,0.566404,0.00223231,0.566258,0.719356,0.886234,0.810525,0.45568,0.133089,0.692381,0.257437,0.814596,0.774523,0.000665128,0.784569,0.963399,0.711864,0.465888,0.420348,0.000740588,0.012971,0.876623,0.456101,0.180458,0.870846,0.161641,0.74453,0.97655,0.289862,0.883998,0.530468,0.966537,0.17755,0.252792,0.924464,0.599119,0.643062,0.094016,0.605775,0.591948,0.147429,0.0286004,0.958423,0.446142,0.358751,0.931784,0.841193,0.00258231,0.617317,0.860289,0.539291,0.856016,0.484716,0.32412,0.861683,0.00793117,0.946158,0.344917,0.351258,0.0855437,0.284867,0.693092,0.0114412,0.483451,0.0394285,0.940762,0.547392,0.469756,0.292999,0.0845937,0.10094,0.698268,0.251779,0.113903,0.563016,0.313091,0.639208,0.514044,0.909045,0.896188,0.836786,0.159629,0.699734,0.827412,0.194351,0.596501,0.195568,0.989709,0.548954,0.885736,0.713172,0.864619,0.171402,0.0583611,0.459793,0.230098,0.239538,0.350416,0.645596,0.675349,0.905848,0.547542,0.373272,0.19293,0.96984,0.512612,0.783677,0.890314,0.768314,0.69435,0.970445,0.230165,0.360285,0.820626,0.0622771,0.618405,0.405388,0.32661,0.112856,0.910608,0.72678,0.977899,0.478367,0.192037,0.973597,0.457483,0.344,0.262338,0.106969,0.291934,0.604089,0.283887,0.497841,0.7674,0.19176,0.641179,0.623863,0.950189,0.705288,0.92332,0.671485,0.366623,0.455949,0.803323,0.484016,0.378116,0.898133,0.577399,0.693784,0.739181,0.291032,0.547599,0.638102,0.30826,0.0912514,0.853187,0.271468,0.971804,0.9045,0.565428,0.205362,0.72372,0.838344,0.409689,0.717005,0.747916,0.00771815,0.00928342,0.594905,0.334594,0.869913,0.156817,0.735831,0.368839,0.488271,0.280345,0.933582,0.325499,0.969613,0.351753,0.832744,0.472308,0.748315,0.287429,0.613171,0.0573577,0.351946,0.382002,0.617323,0.954948,0.761926,0.468919,0.591233,0.401301,0.913415,0.0547076,0.397952,0.756792,0.953895,0.0292361,0.92418,0.8896,0.289466,0.331592,0.922598,0.644183,0.854723,0.211698,0.663369,0.292374,0.653548,0.991806,0.109173,|0.45498,0.868204,0.66407,0.954232,0.984945,0.630547,0.343852,0.868143,0.935617,0.806592,0.902862,0.857108,0.72168,0.208736,0.894033,0.0619969,0.169097,0.694206,0.948235,0.747444,0.580537,0.765172,0.328784,0.67377,0.242962,0.835628,0.915804,0.759559,0.65199,0.155144,0.987327,0.588356,0.289458,0.275669,0.385548,0.625944,0.36227,0.602376,0.700249,0.578467,0.486317,0.697478,0.477379,0.0659726,0.0615128,0.912162,0.309325,0.460703,0.561098,0.326643,0.948846,0.182872,0.481169,0.615434,0.495444,0.11868,0.71357,0.719876,0.724894,0.529015,0.463141,0.358829,0.122414,0.959297,0.950956,0.62645,0.0575248,0.218751,0.338706,0.116964,0.86084,0.580921,0.444072,0.396386,0.599598,0.799768,0.567063,0.901872,0.293871,0.899822,0.27876,0.4637,0.129216,0.364537,0.222027,0.361092,0.795752,0.254846,0.0530049,0.930807,0.631488,0.0686778,0.678412,0.897999,0.0702903,0.888494,0.303066,0.437207,0.399128,0.903358,0.568232,0.377176,0.310123,0.862229,0.0453894,0.613292,0.827335,0.17181,0.955079,0.83332,0.578863,0.776497,0.62494,0.424087,0.141211,0.646163,0.107905,0.367574,0.0815574,0.810826,0.893754,0.480094,0.394178,0.00102127,0.749424,0.753665,0.61051,0.970841,0.841111,0.0220677,0.0165666,0.987673,0.918898,0.686801,0.855704,0.386371,0.0861972,0.660904,0.851052,0.47432,0.773898,0.361033,0.425589,0.530417,0.721638,0.500524,0.832234,0.899732,0.791556,0.890569,0.879205,0.267269,0.338468,0.931668,0.0254622,0.686556,0.158126,0.158199,0.0386208,0.00106108,0.0965625,0.458842,0.856183,0.426314,0.907318,0.791103,0.299485,0.354553,0.965553,0.843476,0.0789416,0.0873159,0.853118,0.441264,0.889633,0.0377875,0.978917,0.719619,0.868736,0.355157,0.217368,0.246705,0.794237,0.963191,0.832706,0.248824,0.261037,0.797637,0.354122,0.637458,0.278415,0.813147,0.724377,0.37021,0.916849,0.854485,0.108002,0.365897,0.431325,0.787635,0.0847301,0.609532,0.809453,0.0712214,0.995014,0.82546,0.629276,0.713613,0.27886,0.737572,0.700539,0.621276,0.957473,0.889421,0.790216,0.612688,0.610418,0.686466,0.815513,0.773388,0.980488,0.820903,0.441234,0.0199932,0.208028,0.425334,0.0512161,0.0123819,0.767265,0.279797,0.508991,0.991759,0.270713,0.82688,0.0288237,0.00679064,0.0760008,0.590488,0.339497,0.347455,0.126704,0.444705,0.722317,0.757991,0.101246,0.0252921,0.415864,0.580777,0.737879,0.634769,0.83699,0.587881,0.8021,0.75694,0.681568,0.500792,0.740469,0.350015,0.533656,0.0470472,0.561506,0.146251,0.943528,0.649555,0.684401,0.731043,0.157357,0.219503,0.710366,0.852898,0.349635,0.421189,0.0845097,0.74175,0.636359,0.944715,0.972193,0.0408862,0.406057,0.59156,0.480482,0.10163,0.262129,0.120018,0.696822,0.382657,0.549809,0.132246,0.525133,0.00141352,0.874047,0.472971,0.525814,0.505909,0.626113,0.397839,0.253842,0.687649,0.992757,0.785709,0.974899,0.413213,0.516042,0.798232,0.958705,0.578159,0.517661,0.620344,0.785984,0.310357,0.822992,0.32666,0.72288,0.943611,0.962975,0.209539,0.0718839,0.748186,0.893743,0.929294,0.0792271,0.996208,0.504071,0.223583,0.728442,0.26522,0.292533,0.0871704,0.161219,0.988189,0.739009,0.566549,0.954168,0.729313,0.843797,0.75316,0.682175,0.330123,0.0558451,0.424679,0.442646,0.491077,0.736542,0.11621,0.491381,0.793505,0.796174,0.984718,0.42792,0.771399,0.940972,0.260861,0.575113,0.822859,0.949895,0.894012,0.841497,0.724591,0.328964,0.843958,0.110084,0.684028,0.369221,0.523826,0.130496,0.474271,0.17042,0.400279,0.274761,0.837488,0.425002,0.057265,0.795731,0.416737,0.959082,0.215461,0.612003,0.759899,0.120179,0.662045,0.154994,0.19681,0.70617,0.906607,0.48988,0.856817,0.432306,0.964313,0.20062,0.305455,0.178029,0.751044,0.93911,0.0721736,0.477285,0.879534,0.322802,0.975915,0.953535,0.612959,0.723675,0.335015,0.638341,0.549234,0.6988,0.246098,0.935728,0.183047,0.971524,0.0739011,0.470886,0.868593,0.385138,0.816595,0.741241,0.0383254,0.313108,0.0118799,0.0629063,0.0614284,0.744067,0.45754,0.576469,0.0756189,0.0961723,0.453396,0.0228412,0.547409,0.949764,0.800693,0.392681,0.597656,0.717402,0.968373,0.138387,0.806774,0.535981,0.6013,0.39294,0.451424,0.29774,0.0717956,0.117455,0.336087,0.69548,0.448351,0.156493,0.128241,0.303795,0.288496,0.136886,0.899572,0.763331,0.389832,0.860834,0.347498,0.791994,0.363341,0.560127,0.853478,0.748797,0.025997,0.226153,0.607715,0.398288,0.749227,0.378675,0.709124,0.457561,0.997135,0.906329,0.49556,0.0601628,0.642118,0.264968,0.866647,0.334068,0.803987,0.815683,0.424213,0.634866,0.0482505,0.0523107,0.787072,0.481984,0.935811,0.986118,0.141423,0.892403,0.451022,0.847029,0.767749,0.55499,0.120228,0.691505,0.00398588,0.644603,0.539331,0.392977,0.856508,0.35443,0.852039,0.220472,0.7099,0.658984,0.847521,0.269397,0.304305,0.730433,0.507061,0.98163,0.0336967,0.112925,0.171383,0.247387,0.75257,0.889083,0.581362,0.638476,0.0774495,0.0701843,0.0365868,0.630124,0.848164,0.302252,0.272428,0.465699,0.443624,0.689441,0.2507,0.0386814,0.186567,0.923072,0.258362,0.366862,0.443213,0.595499,0.494586,0.0142251,0.898463,0.405949,0.337157,0.276037,0.53595,0.77998,0.563862,0.345314,0.747319,0.838726,0.557337,0.687205,0.750851,0.839073,0.756989,0.890802,0.257167,0.13644,0.457626,0.894555,0.461168,0.0606029,0.797243,0.99568,0.317728,0.892416,0.0500613,0.0626161,0.876906,0.308199,0.598332,0.0216244,0.654079,0.316425,0.245425,0.951065,0.583981,0.208205,0.274337,0.380573,0.29657,0.476446,0.187246,0.0972787,0.519418,0.720436,0.836204,0.635054,0.303768,0.0760015,0.250197,0.77273,0.264055,0.550352,0.675714,0.989119,0.0450498,0.0683646,0.586086,0.47424,0.694658,0.251429,0.932705,0.32044,0.0957138,0.150919,0.128282,0.916657,0.34182,0.92802,0.56704,0.0348924,0.254766,0.12016,0.402856,0.459541,0.388118,0.905697,0.481307,0.280757,0.948401,0.510743,0.7086,0.552287,0.963797,0.0441751,0.516857,0.221569,0.565298,0.47996,0.395807,0.704135,0.854562,0.828381,0.921195,0.252293,0.950389,0.680069,0.118305,0.957373,0.304582,0.707112,0.673792,0.373207,0.831042,0.465289,0.137245,0.394174,0.129042,0.748982,0.715816,0.456103,0.303776,0.411572,0.060358,0.309595,0.169566,0.658285,0.203724,0.377922,0.132152,0.603695,0.997097,0.888386,0.155346,0.729775,0.0978569,0.990716,0.246309,0.591874,0.813537,0.111057,0.0972781,0.550569,0.383275,0.296608,0.876069,0.303938,0.758937,0.828936,0.474072,0.562048,0.32754,0.499175,0.0393296,0.742804,0.926955,0.544964,0.131192,0.686095,0.729034,0.340688,0.00771689,0.795231,0.638684,0.603991,0.33592,0.271497,0.851584,0.434303,0.700907,0.532984,0.907265,0.356409,0.0419889,0.715054,0.172663,0.213499,0.667482,0.0726359,0.254593,0.940134,0.867748,0.00575495,0.0563083,0.433657,0.528741,0.79016,0.321788,0.954867,0.79758,0.565874,0.139245,0.865158,0.901909,0.939328,0.187821,0.306894,0.291564,0.263843,0.386702,0.430522,0.172681,0.0330897,0.0324625,0.0414735,0.195542,0.156067,0.584848,0.377445,0.3997,0.597427,0.852632,0.696517,0.367344,0.317078,0.344853,0.939733,0.212128,0.86533,0.068882,0.303321,0.846101,0.692403,0.634531,0.847367,0.0698392,0.276364,0.271926,0.973573,0.864157,0.208596,0.364174,0.864327,0.495255,0.150676,0.0416449,0.657217,0.382443,0.705546,0.594512,0.335337,0.218761,0.506067,0.376308,0.524648,0.588068,0.974154,0.6837,0.334929,0.914427,0.408716,0.818426,0.138907,0.118863,0.0454631,0.350831,0.530491,0.607525,0.467546,0.708441,0.680719,0.446208,0.328582,0.196294,0.965754,0.230596,0.56607,0.0654374,0.437124,0.607842,0.0304077,0.864049,0.613978,0.456199,0.93293,0.0494016,0.133139,0.624399,0.594716,0.852546,0.449042,0.190188,0.975883,0.361486,0.440397,0.717471,0.652856,0.233574,0.330032,0.222288,0.0688591,0.330031,0.346878,0.385072,0.217101,0.950107,0.0721453,0.148019,0.273622,0.0703299,0.500851,0.562371,0.621282,0.263237,0.165949,0.649479,0.956901,0.669489,0.417736,0.649694,0.41205,0.986811,0.178395,0.534471,0.148425,0.759343,0.6748,0.565462,0.0944072,0.0754736,0.311113,0.846713,0.652448,0.249334,0.348932,0.534538,0.541782,0.395886,0.281724,0.393487,0.711846,0.603343,0.465684,0.613642,0.791198,0.883944,0.280479,0.745802,0.802049,0.0969232,0.137603,0.341847,0.242597,0.500754,0.189657,0.273971,0.903342,0.799966,0.748092,0.826504,0.0406458,0.918412,0.971293,0.217195,0.533475,0.122658,0.112901,0.269548,0.206996,0.877775,0.97318,0.692861,0.790127,0.740877,0.455214,0.160111,0.833568,0.854504,0.736922,0.0963596,0.61727,0.271586,0.778295,0.324817,0.0127829,0.787475,0.205493,0.37956,0.164156,0.256417,0.936729,0.683296,0.685488,0.810902,0.125279,0.0499114,0.420803,0.937448,0.0195439,0.480519,0.469012,0.380551,0.776223,0.423685,0.834225,0.781666,0.964614,0.583553,0.753462,0.20168,0.676685,0.140689,0.367561,0.525915,0.297434,0.752422,0.360848,0.67517,0.0556321,0.822648,0.176266,0.109737,0.765427,0.160104,0.230913,0.940556,0.946542,0.545323,0.566933,0.245836,0.992184,0.786823,0.947778,0.413308,0.636735,0.976449,0.720273,0.710808,0.0910312,0.781065,0.105972,0.0110444,0.178419,0.740315,0.255834,0.124997,0.245341,0.925157,0.575681,0.329928,0.749704,0.451343,0.897967,0.224563,0.0618465,0.415219,0.473957,0.385731,0.673104,0.48513,0.910768,0.621656,0.197475,0.894176,0.846868,0.348402,0.879232,0.831228,0.409783,0.757897,0.675437,0.756789,0.982431,0.395805,0.58461,0.959615,0.66862,0.560943,0.28259,0.390572,|0.802957,0.725907,0.0232089,0.211186,0.126997,0.69506,0.283382,0.662479,0.0851438,0.977622,0.614603,0.287819,0.569622,0.877653,0.908445,0.708177,0.235467,0.993521,0.271838,0.113559,0.641913,0.328977,0.972209,0.295079,0.317309,0.0152659,0.547728,0.361327,0.870223,0.575186,0.185067,0.381222,0.665973,0.256124,0.735989,0.142984,0.955173,0.781124,0.476131,0.710108,0.75154,0.162781,0.255174,0.811817,0.0691774,0.255982,0.607179,0.135982,0.994118,0.708797,0.581636,0.166593,0.140815,0.501415,0.315733,0.39556,0.466528,0.755019,0.641977,0.703022,0.836355,0.762683,0.800266,0.195391,0.496587,0.317782,0.521429,0.488069,0.746087,0.345286,0.93914,0.309931,0.85426,0.595297,0.684,0.692738,0.324638,0.465935,0.767629,0.158061,0.834166,0.504247,0.416749,0.574203,0.635991,0.83591,0.202943,0.0752846,0.135357,0.609015,0.0572761,0.763235,0.36825,0.973604,0.817556,0.207984,0.974817,0.433841,0.632063,0.999671,0.214691,0.714182,0.358498,0.178616,0.0465939,0.648242,0.354774,0.105444,0.0729095,0.223172,0.608229,0.25039,0.187395,0.178898,0.549111,0.74362,0.193349,0.451604,0.188877,0.687572,0.200193,0.242643,0.929643,0.515731,0.872774,0.848809,0.0657405,0.107487,0.825545,0.578662,0.573124,0.470298,0.610259,0.512702,0.921498,0.0227137,0.476237,0.122548,0.324865,0.273743,0.734325,0.859451,0.0545647,0.121048,0.435012,0.156439,0.118623,0.0978145,0.29233,0.27358,0.682867,0.527367,0.678694,0.880677,0.590349,0.507968,0.433851,0.682746,0.940172,0.80458,0.75367,0.582906,0.305421,0.661933,0.538815,0.625736,0.618804,0.895242,0.240394,0.284383,0.0731037,0.490087,0.0447134,0.717659,0.163965,0.286361,0.682408,0.374063,0.299944,0.759189,0.935849,0.926989,0.120981,0.895849,0.399194,0.0841017,0.217871,0.34839,0.566146,0.435829,0.196481,0.348515,0.129434,0.960632,0.968216,0.411476,0.808062,0.492858,0.4951,0.236962,0.00287551,0.0244132,0.250342,0.363019,0.733386,0.228773,0.737817,0.98497,0.1939,0.108964,0.470896,0.315974,0.917517,0.000520468,0.208081,0.923964,0.914672,0.00552046,0.34212,0.184304,0.417369,0.612703,0.907233,0.245777,0.466763,0.68178,0.113128,0.595423,0.722009,0.456607,0.527262,0.0568148,0.694675,0.366286,0.590582,0.741672,0.266234,0.000943124,0.655855,0.485725,0.510853,0.654879,0.592166,0.639007,0.952617,0.283401,0.271518,0.201056,0.337641,0.262629,0.72603,0.998012,0.319198,0.878646,0.376565,0.0252317,0.764574,0.921646,0.744093,0.429418,0.366924,0.267457,0.281792,0.256342,0.264251,0.896426,0.53667,0.336204,0.988896,0.795192,0.476133,0.713228,0.483257,0.237732,0.0411087,0.122667,0.378581,0.662969,0.623807,0.586708,0.141817,0.306481,0.715867,0.933064,0.580049,0.0596611,0.664745,0.5402,0.40369,0.00527871,0.490901,0.653262,0.874311,0.38254,0.745294,0.0676706,0.0105355,0.373091,0.753639,0.985868,0.304236,0.833255,0.515569,0.244865,0.141396,0.497763,0.642924,0.212626,0.770553,0.890534,0.0464441,0.698835,0.438478,0.0458162,0.305587,0.463929,0.921428,0.191766,0.542716,0.625148,0.161327,0.673906,0.957835,0.927462,0.905144,0.933253,0.049554,0.565775,0.848264,0.277085,0.722762,0.397764,0.611092,0.87695,0.488717,0.88156,0.707636,0.667309,0.537723,0.220949,0.922172,0.368921,0.142489,0.363459,0.828494,0.785343,0.460922,0.594905,0.244133,0.378806,0.914565,0.0844076,0.993179,0.261137,0.0768284,0.755405,0.562693,0.980071,0.0327146,0.058912,0.721459,0.60172,0.8656,0.670948,0.0878758,0.592058,0.593234,0.0213492,0.653273,0.978619,0.515419,0.259686,0.968239,0.0589184,0.962163,0.965169,0.066792,0.336339,0.729579,0.578689,0.796406,0.83784,0.0634628,0.484962,0.679172,0.618619,0.481126,0.101292,0.0681624,0.598848,0.478851,0.427648,0.932703,0.898388,0.524292,0.403609,0.444704,0.767159,0.237739,0.503599,0.608577,0.566277,0.986959,0.690953,0.662231,0.362467,0.0614465,0.738705,0.128711,0.922269,0.26861,0.703541,0.165437,0.00303531,0.420615,0.163247,0.498154,0.56831,0.926114,0.581886,0.682553,0.126291,0.00623447,0.401279,0.0842838,0.48129,0.383183,0.397374,0.301574,0.924981,0.931238,0.568044,0.827798,0.962553,0.941439,0.579825,0.172287,0.494906,0.883657,0.310266,0.870735,0.00663042,0.166251,0.442609,0.378915,0.921595,0.35921,0.979859,0.849645,0.46459,0.532689,0.697405,0.150287,0.446743,0.140036,0.273538,0.598953,0.52753,0.597345,0.635218,0.535608,0.769797,0.91134,0.938084,0.385143,0.246938,0.660369,0.0898501,0.521854,0.595218,0.316945,0.279223,0.663831,0.238637,0.845369,0.0294606,0.748762,0.739226,0.129072,0.00601763,0.725838,0.00894856,0.401565,0.898668,0.0217187,0.229025,0.452249,0.6187,0.447613,0.17395,0.545148,0.306949,0.586783,0.698774,0.0894647,0.76685,0.867418,0.0487565,0.769478,0.322118,0.793033,0.636887,0.0962359,0.0861738,0.933008,0.121807,0.178961,0.543992,0.134777,0.629134,0.592228,0.317576,0.999693,0.271756,0.642008,0.482996,0.209048,0.0103015,0.0837563,0.527813,0.784559,0.672945,0.441347,0.724583,0.861313,0.376854,0.217259,0.334682,0.5226,0.131849,0.197204,0.945146,0.923193,0.598027,0.823596,0.29533,0.672489,0.0403987,0.699528,0.29663,0.0786327,0.00562781,0.944638,0.432163,0.530764,0.493688,0.77206,0.523081,0.250853,0.401997,0.626832,0.074665,0.401795,0.0544248,0.665023,0.308168,0.784441,0.876688,0.668075,0.330799,0.961839,0.723408,0.724933,0.728562,0.101428,0.603424,0.995162,0.590911,0.340402,0.00846922,0.189745,0.380509,0.23882,0.162119,0.0344904,0.534547,0.963473,0.401982,0.415779,0.642056,0.592793,0.00394326,0.962962,0.517431,0.322737,0.232235,0.0868052,0.295558,0.786493,0.326003,0.22102,0.00825238,0.83473,0.341134,0.168017,0.973397,0.97262,0.594593,0.178838,0.0531315,0.291064,0.479227,0.0345989,0.121798,0.841317,0.641318,0.129297,0.856943,0.218363,0.395198,0.688713,0.83592,0.359194,0.753242,0.548567,0.930563,0.698765,0.470552,0.0517814,0.331718,0.497697,0.197473,0.838537,0.181535,0.00704229,0.152663,0.447717,0.532275,0.82237,0.180579,0.743346,0.135611,0.204522,0.294913,0.874155,0.563923,0.435655,0.14889,0.455046,0.64573,0.957769,0.13674,0.509675,0.900779,0.354544,0.681409,0.261622,0.990882,0.655826,0.754193,0.0980486,0.309011,0.354479,0.826658,0.433393,0.247343,0.202844,0.0292985,0.458421,0.134897,0.599753,0.0275146,0.24544,0.125982,0.539779,0.121314,0.826244,0.780664,0.448283,0.65612,0.703731,0.0582558,0.00120634,0.874763,0.600561,0.562019,0.0755975,0.884964,0.261461,0.228176,0.258156,0.0897666,0.666308,0.719199,0.89317,0.495751,0.833144,0.760167,0.0379164,0.649731,0.430256,0.614936,0.190134,0.847784,0.957001,0.150977,0.996716,0.841198,0.950607,0.393917,0.0909615,0.0530828,0.580698,0.616907,0.0478393,0.0422913,0.822024,0.974659,0.533561,0.0491814,0.502972,0.35623,0.127658,0.195508,0.46902,0.552548,0.490293,0.800264,0.803339,0.878332,0.611185,0.683128,0.550665,0.857633,0.488368,0.920155,0.275309,0.60982,0.187742,0.835257,0.664412,0.220809,0.921395,0.867506,0.292644,0.533143,0.0475177,0.173528,0.801237,0.366212,0.390589,0.694838,0.571496,0.580723,0.596967,0.818677,0.221127,0.0762991,0.589088,0.0680842,0.186177,0.0152221,0.332329,0.914127,0.455035,0.260726,0.0088473,0.125516,0.808832,0.775799,0.65205,0.83965,0.750607,0.31737,0.382572,0.354593,0.325813,0.575653,0.787416,0.849666,0.48438,0.486821,0.0648255,0.186004,0.322646,0.0129084,0.00445557,0.330954,0.962659,0.852192,0.187261,0.219431,0.904519,0.00814432,0.747964,0.609556,0.223507,0.591077,0.84131,0.2098,0.127123,0.887646,0.754071,0.383378,0.162195,0.750454,0.230627,0.589547,0.502584,0.7044,0.00714284,0.301471,0.935407,0.17399,0.85427,0.749762,0.935148,0.53627,0.23777,0.809974,0.472541,0.753981,0.955929,0.330777,0.536504,0.666626,0.131436,0.896763,0.257298,0.512501,0.687813,0.480928,0.929271,0.705962,0.8164,0.876593,0.751603,0.907887,0.200828,0.787026,0.348958,0.885467,0.0624433,0.0843716,0.89515,0.911756,0.821574,0.573953,0.888265,0.153665,0.248698,0.138057,0.85052,0.884826,0.33948,0.203322,0.685337,0.855036,0.0625057,0.123603,0.281335,0.0603554,0.485202,0.951831,0.52883,0.722597,0.164538,0.449887,0.833986,0.929319,0.521652,0.235659,0.494834,0.555387,0.0650685,0.863833,0.541044,0.369888,0.796614,0.260362,0.323595,0.232314,0.698753,0.804501,0.373629,0.0207444,0.958613,0.743244,0.543516,0.269478,0.313642,0.152858,0.523927,0.757293,0.958014,0.516133,0.901259,0.0969477,0.645048,0.204203,0.200444,0.207087,0.812372,0.329423,0.618951,0.890616,0.478911,0.729198,0.33209,0.628844,0.114965,0.878942,0.8383,0.529245,0.287886,0.5163,0.824925,0.555447,0.86737,0.208636,0.211504,0.941361,0.021981,0.637211,0.572553,0.989528,0.896501,0.139481,0.163095,0.111819,0.0958346,0.352631,0.0473135,0.741778,0.330548,0.0364739,0.550621,0.170115,0.368666,0.710471,0.049765,0.459912,0.216296,0.875081,0.730833,0.175851,0.297628,0.838322,0.711797,0.805787,0.0370517,0.6575,0.518839,0.132682,0.392842,0.563731,0.351839,0.534609,0.103256,0.107273,0.670952,0.0342234,0.318012,0.610725,0.642044,0.23282,0.485847,0.429241,0.433769,0.904009,0.622931,0.414218,0.072909,0.272224,0.464616,0.273635,0.104884,0.116485,0.0863483,0.415927,0.88409,0.579897,0.817972,0.547027,0.153115,0.733608,0.377336,0.773551,0.214466,0.798976,0.035857,0.0111752,0.125091,0.264515,0.625367,0.475299,0.684333,0.0040819,0.199014,0.793575,0.884983,0.630353,0.908353,0.672062,0.139383,0.100038,0.815954,0.0332139,0.935878,0.397266,|0.561087,0.650408,0.313987,0.084442,0.123794,0.17813,0.334692,0.108933,0.607504,0.906345,0.410757,0.514303,0.0563699,0.268856,0.41115,0.168766,0.0870945,0.709208,0.876006,0.844096,0.235951,0.695385,0.815578,0.0528998,0.271229,0.506793,0.488024,0.239262,0.684974,0.946071,0.371123,0.170091,0.405483,0.810537,0.450042,0.406961,0.0186069,0.03395,0.654819,0.00479645,0.103414,0.684575,0.116276,0.426125,0.448831,0.774293,0.363828,0.959274,0.65599,0.648408,0.25672,0.686941,0.463549,0.781541,0.0182903,0.950789,0.057018,0.462275,0.543311,0.496077,0.18111,0.758005,0.193685,0.409184,0.32894,0.702278,0.877383,0.910627,0.790089,0.0112306,0.360015,0.96485,0.269565,0.671783,0.517196,0.80933,0.794501,0.309025,0.428681,0.42344,0.639547,0.45474,0.349674,0.646015,0.36458,0.291095,0.677292,0.95665,0.457269,0.738431,0.361877,0.116918,0.352419,0.138666,0.153857,0.738173,0.52837,0.716555,0.833116,0.103457,0.142299,0.0950881,0.453722,0.154937,0.263316,0.322204,0.0529612,0.101733,0.734917,0.708296,0.0147285,0.419912,0.724003,0.605025,0.636785,0.705936,0.768046,0.543713,0.775393,0.144709,0.79709,0.835691,0.192741,0.34426,0.391449,0.2646,0.897368,0.0945367,0.448126,0.16754,0.715477,0.841342,0.714824,0.356758,0.45525,0.424969,0.727582,0.83976,0.677176,0.251394,0.506555,0.78591,0.174622,0.903985,0.45845,0.000630081,0.189976,0.460469,0.813936,0.0746629,0.482761,0.28259,0.241013,0.82369,0.857021,0.888489,0.748853,0.737545,0.0505507,0.73655,0.799576,0.0844238,0.883778,0.598633,0.743568,0.276663,0.100847,0.49047,0.983599,0.524171,0.769813,0.732967,0.228852,0.612396,0.810227,0.988598,0.182571,0.837233,0.376517,0.965071,0.737645,0.157499,0.259341,0.6529,0.0325356,0.425496,0.253492,0.919317,0.0890221,0.14318,0.928791,0.218083,0.112234,0.892953,0.158456,0.627321,0.854787,0.0670585,0.80263,0.108012,0.780893,0.0892206,0.874194,0.499248,0.931395,0.311374,0.499639,0.328663,0.162302,0.274473,0.632464,0.642476,0.790553,0.950808,0.396052,0.962478,0.892354,0.339857,0.43296,0.30454,0.636527,0.590607,0.57726,0.300433,0.948419,0.0305206,0.468543,0.692889,0.299887,0.532458,0.553197,0.566,0.639549,0.781146,0.49257,0.681318,0.157383,0.654839,0.785328,0.432852,0.100996,0.487165,0.763487,0.27145,0.0966109,0.774203,0.928026,0.405984,0.835796,0.872896,0.963399,0.326793,0.737445,0.0622177,0.949741,0.263864,0.988554,0.438607,0.242234,0.384166,0.617135,0.386703,0.0793024,0.0213748,0.521661,0.703955,0.894711,0.0273495,0.645964,0.203278,0.945088,0.306103,0.174243,0.379216,0.890032,0.532331,0.845571,0.633501,0.258989,0.728628,0.300747,0.964899,0.0668246,0.0851628,0.320979,0.433145,0.429983,0.811527,0.160824,0.953686,0.934417,0.377989,0.564414,0.184766,0.521487,0.627504,0.431667,0.419265,0.716264,0.325791,0.655875,0.314311,0.631513,0.455885,0.415094,0.45579,0.492495,0.393127,0.775542,0.96227,0.0645223,0.163662,0.880194,0.00209093,0.0404987,0.682661,0.329254,0.975651,0.633026,0.248874,0.644695,0.391795,0.148125,0.995746,0.385606,0.449528,0.370404,0.393587,0.37886,0.639736,0.794259,0.0621791,0.918733,0.437268,0.841783,0.215461,0.670322,0.418832,0.619341,0.615768,0.296189,0.624975,0.245856,0.687276,0.00237542,0.632361,0.840128,0.904457,0.399393,0.260231,0.810885,0.854298,0.205398,0.00372547,0.335621,0.184264,0.537138,0.457185,0.0813136,0.0155591,0.327036,0.848194,0.869621,0.508299,0.238283,0.463269,0.431594,0.925127,0.577583,0.216755,0.792787,0.913831,0.610145,0.909104,0.098552,0.874373,0.602,0.379462,0.757886,0.0918137,0.334585,0.874164,0.982518,0.415448,0.816958,0.593716,0.4509,0.132854,0.433808,0.351788,0.326663,0.58225,0.353567,0.0672694,0.204447,0.842199,0.379785,0.254316,0.331856,0.302622,0.785136,0.160101,0.496264,0.106398,0.408324,0.118443,0.437624,0.13235,0.37785,0.30233,0.686253,0.742246,0.584346,0.56021,0.43916,0.663464,0.292649,0.00183696,0.72135,0.809907,0.475654,0.100606,0.69342,0.632138,0.0560037,0.464277,0.106122,0.443221,0.287184,0.95296,0.208663,0.0635656,0.753004,0.952281,0.689875,0.0724499,0.832624,0.120591,0.869069,0.441826,0.835155,0.0551205,0.978468,0.45635,0.913256,0.884076,0.295265,0.0936988,0.0649391,0.548685,0.487673,0.478838,0.917853,0.904591,0.0419158,0.807658,0.953555,0.385991,0.377337,0.512138,0.797575,0.712281,0.768738,0.887447,0.982336,0.254353,0.688877,0.513817,0.0103666,0.540616,0.775034,0.701215,0.0858524,0.90957,0.0315572,0.0757789,0.0510069,0.759411,0.977289,0.52601,0.134614,0.296979,0.612352,0.730215,0.170698,0.256441,0.0448194,0.384948,0.0670528,0.386904,0.780873,0.695023,0.484498,0.148459,0.149226,0.280681,0.653027,0.647394,0.241523,0.491154,0.126969,0.146923,0.3012,0.644891,0.4818,0.802347,0.668329,0.630392,0.816019,0.804748,0.427927,0.350293,0.398533,0.228247,0.653561,0.702189,0.000627995,0.630166,0.127486,0.479928,0.536752,0.868981,0.120958,0.462077,0.0733477,0.726622,0.859362,0.923741,0.415907,0.712477,0.148705,0.494403,0.652189,0.0676004,0.632648,0.59408,0.809869,0.473468,0.541874,0.33723,0.825506,0.014424,0.574654,0.31251,0.314627,0.868605,0.117864,0.889752,0.17898,0.234925,0.283409,0.433388,0.0507368,0.343918,0.452094,0.023198,0.365153,0.960969,0.740388,0.093285,0.338278,0.540018,0.0687767,0.39016,0.45479,0.224434,0.135683,0.252572,0.131164,0.692402,0.146434,0.94663,0.893695,0.161986,0.289368,0.712564,0.663918,0.082165,0.93982,0.893347,0.639751,0.795019,0.872343,0.379597,0.326021,0.870493,0.231585,0.088771,0.180893,0.807554,0.391758,0.610796,0.317191,0.721229,0.708209,0.704385,0.284315,0.179406,0.387621,0.269252,0.472941,0.0868189,0.448417,0.188547,0.438727,0.718677,0.633234,0.490366,0.754234,0.0456427,0.110596,0.518584,0.983302,0.0262316,0.174454,0.58848,0.0559344,0.959948,0.648134,0.503087,0.0838076,0.845247,0.055226,0.205685,0.0913159,0.57082,0.0870081,0.0221683,0.367013,0.964497,0.931886,0.195898,0.905372,0.941382,0.339999,0.438143,0.813415,0.462861,0.212199,0.392285,0.228127,0.535999,0.841579,0.468632,0.648953,0.940883,0.263364,0.372053,0.483313,0.341299,0.63855,0.647896,0.0497723,0.74814,0.734436,0.724985,0.507332,0.603474,0.534969,0.774529,0.485232,0.684109,0.302485,0.694277,0.579942,0.408922,0.708191,0.642747,0.333042,0.437854,0.975568,0.708068,0.39396,0.764098,0.32407,0.43773,0.753456,0.271583,0.982486,0.452223,0.720957,0.822281,0.324518,0.264362,0.902673,0.458292,0.831266,0.852449,0.322717,0.130941,0.936443,0.949856,0.689354,0.599197,0.190364,0.414714,0.270206,0.838382,0.946481,0.909383,0.172435,0.587063,0.75548,0.130175,0.679422,0.0811592,0.450993,0.512274,0.149172,0.945356,0.595671,0.0904332,0.346096,0.952569,0.0940933,0.11562,0.281587,0.89034,0.522906,0.427286,0.474444,0.349386,0.683944,0.880498,0.481467,0.109119,0.689252,0.767108,0.637802,0.504225,0.940774,0.641838,0.574757,0.159124,0.706694,0.53781,0.575713,0.164552,0.722336,0.289856,0.918576,0.269304,0.807385,0.5687,0.802549,0.791338,0.122034,0.00218874,0.33503,0.0407977,0.436823,0.0499718,0.726213,0.455318,0.0293031,0.297219,0.114202,0.392259,0.248715,0.654907,0.264618,0.131183,0.994567,0.385163,0.25765,0.481938,0.150115,0.402965,0.766458,0.539569,0.83115,0.770773,0.153614,0.578652,0.400393,0.0429342,0.454857,0.441264,0.950199,0.541235,0.868985,0.544348,0.433829,0.51948,0.285519,0.922878,0.495787,0.571479,0.825177,0.406647,0.955766,0.588063,0.0525697,0.548849,0.789806,0.693616,0.985867,0.685963,0.368962,0.973122,0.749269,0.460267,0.818909,0.517061,0.533463,0.505067,0.570587,0.258986,0.840052,0.622945,0.281913,0.125449,0.506644,0.738594,0.659147,0.764261,0.35775,0.774899,0.276394,0.733982,0.952656,0.55403,0.307089,0.300731,0.647559,0.900313,0.450627,0.812541,0.354342,0.045819,0.509163,0.104015,0.156614,0.100736,0.753209,0.660698,0.545326,0.896239,0.217421,0.0592333,0.524633,0.076272,0.294405,0.513256,0.366654,0.0538957,0.889019,0.500203,0.696958,0.889298,0.538534,0.593196,0.0588493,0.605503,0.58659,0.160366,0.392594,0.608458,0.189262,0.376355,0.999694,0.531143,0.544787,0.84436,0.442553,0.0489794,0.905511,0.656788,0.791651,0.89531,0.246796,0.0491799,0.64454,0.792624,0.57163,0.146173,0.00322241,0.466485,0.399741,0.582573,0.660984,0.958195,0.235611,0.740314,0.995234,0.0558093,0.886214,0.284439,0.810401,0.888834,0.126945,0.0559158,0.827487,0.774124,0.196528,0.279031,0.199398,0.536857,0.0418653,0.878882,0.658353,0.381003,0.775546,0.0865735,0.373073,0.195333,0.517126,0.217775,0.0394647,0.25238,0.545729,0.029255,0.276505,0.352883,0.528686,0.639163,0.201774,0.0996315,0.7778,0.71259,0.0665784,0.857002,0.840827,0.727692,0.627273,0.380299,0.835474,0.82267,0.554633,0.169769,0.543843,0.329699,0.516299,0.905688,0.0109245,0.447446,0.990615,0.997712,0.544756,0.864912,0.34258,0.615629,0.900385,0.70881,0.259908,0.653269,0.526539,0.393482,0.324527,0.242691,0.325791,0.778018,0.562481,0.297104,0.009278,0.922272,0.326423,0.242033,0.239217,0.661717,0.690221,0.394509,0.749434,0.653849,0.690098,0.762407,0.912538,0.804229,0.666089,0.33968,0.401377,0.787939,0.763354,0.964606,0.138716,0.0421813,0.826057,0.353267,0.423705,0.502946,0.584366,0.390768,0.182962,0.681367,0.736521,0.374686,0.950737,0.793381,0.90153,0.110082,0.62916,0.587911,0.961458,0.374767,0.518323,0.902808,0.995655,0.201812,0.987574,0.467989,|0.817053,0.568681,0.865182,0.793576,0.276638,0.694149,0.283613,0.74668,0.719738,0.247166,0.0806131,0.137794,0.336707,0.523935,0.616967,0.170877,0.88358,0.139279,0.370849,0.634672,0.114869,0.774727,0.178743,0.293394,0.924409,0.396243,0.289298,0.519864,0.539523,0.355349,0.317505,0.203014,0.21102,0.51426,0.155893,0.0305678,0.168232,0.413206,0.440367,0.151299,0.988782,0.125721,0.728667,0.00344348,0.88513,0.0624079,0.317091,0.996078,0.164051,0.492257,0.76918,0.0102493,0.536526,0.911608,0.873061,0.098538,0.0823843,0.421661,0.366406,0.966096,0.898481,0.285488,0.998509,0.468199,0.598328,0.508425,0.737253,0.846507,0.304558,0.296605,0.682213,0.804522,0.95493,0.000861704,0.0252209,0.770603,0.333504,0.7217,0.0496178,0.452242,0.898775,0.170601,0.772002,0.0676994,0.312869,0.691432,0.0280018,0.711828,0.0669966,0.308542,0.65232,0.0203642,0.219865,0.986654,0.361034,0.0412713,0.555403,0.242825,0.27233,0.544613,0.680329,0.57965,0.0885704,0.579749,0.816024,0.794689,0.705674,0.0933185,0.153481,0.878314,0.563302,0.756817,0.896373,0.766584,0.603132,0.423801,0.594166,0.448784,0.813999,0.415909,0.388175,0.451239,0.36152,0.257901,0.553746,0.677663,0.598387,0.252659,0.666453,0.301225,0.298902,0.819965,0.195888,0.207644,0.614231,0.849436,0.331343,0.637269,0.609682,0.814602,0.754583,0.19136,0.0225393,0.799845,0.760254,0.0972729,0.207309,0.347433,0.551429,0.437812,0.693107,0.608051,0.794546,0.345287,0.870375,0.0898648,0.456806,0.246726,0.408531,0.745497,0.00843883,0.225249,0.0841534,0.897662,0.352492,0.0479934,0.786616,0.0654959,0.860501,0.294935,0.992065,0.538126,0.422459,0.0340514,0.971043,0.942953,0.428763,0.837041,0.78536,0.344841,0.909243,0.240139,0.889266,0.944605,0.692366,0.686295,0.906387,0.628826,0.527249,0.540776,0.916932,0.785855,0.808731,0.145967,0.809591,0.287743,0.34138,0.175452,0.680306,0.459925,0.508851,0.436035,0.586692,0.822146,0.485131,0.288888,0.943651,0.0219583,0.717608,0.350863,0.424809,0.177109,0.641221,0.229125,0.0916874,0.0141459,0.63557,0.485228,0.970272,0.802104,0.130403,0.118093,0.95706,0.466184,0.683318,0.0368559,0.171387,0.41537,0.265266,0.310918,0.541626,0.38546,0.225015,0.248327,0.561872,0.115373,0.533028,0.540277,0.531792,0.27492,0.89574,0.865391,0.0312709,0.505138,0.450713,0.878647,0.43704,0.119615,0.850964,0.403218,0.399759,0.860085,0.701669,0.557268,0.0885201,0.161494,0.719399,0.98375,0.842568,0.982915,0.241035,0.157248,0.812894,0.123132,0.174464,0.211058,0.688265,0.768231,0.292702,0.935074,0.47739,0.30521,0.295264,0.813902,0.133793,0.731795,0.702712,0.279406,0.421945,0.0403296,0.965666,0.218826,0.998246,0.754347,0.120973,0.935141,0.633107,0.878555,0.483825,0.0083791,0.826276,0.151828,0.650236,0.352727,0.681561,0.309029,0.254306,0.279488,0.203779,0.929396,0.893995,0.977919,0.316947,0.926795,0.729491,0.0801851,0.0919823,0.222124,0.785813,0.333278,0.197837,0.380469,0.156569,0.799069,0.443242,0.97708,0.381214,0.413265,0.833705,0.104961,0.641838,0.943691,0.511337,0.79153,0.143741,0.347983,0.5873,0.651267,0.710675,0.639753,0.164283,0.817493,0.915819,0.0183491,0.465562,0.0775009,0.273325,0.618962,0.401812,0.617684,0.632625,0.700844,0.438693,0.134411,0.0133833,0.83007,0.573635,0.128837,0.547321,0.556571,0.775897,0.639379,0.975227,0.705954,0.559286,0.250717,0.781273,0.366101,0.952627,0.128499,0.338526,0.62203,0.469262,0.175172,0.626563,0.154234,0.307051,0.761583,0.372497,0.925271,0.999164,0.92477,0.641698,0.272296,0.398652,0.971116,0.823956,0.369531,0.369204,0.852403,0.369512,0.412138,0.8642,0.0467079,0.552403,0.787838,0.17205,0.910977,0.813409,0.904496,0.740074,0.116576,0.0288682,0.810905,0.312627,0.131134,0.149365,0.101157,0.905637,0.18321,0.54705,0.527086,0.830821,0.290299,0.398001,0.666487,0.732032,0.693637,0.639754,0.979098,0.0238396,0.00990075,0.748107,0.765978,0.870617,0.450455,0.152979,0.417993,0.858213,0.533363,0.743158,0.99828,0.803469,0.499156,0.805122,0.0528601,0.283358,0.524757,0.911304,0.72632,0.435673,0.219828,0.254469,0.155152,0.323896,0.961003,0.608146,0.869759,0.904043,0.0624507,0.617053,0.573289,0.0489611,0.802185,0.99789,0.488693,0.754717,0.622432,0.878097,0.502617,0.693665,0.959312,0.173202,0.198943,0.0126715,0.265304,0.487447,0.974028,0.826199,0.134796,0.77571,0.432348,0.0306414,0.168729,0.267117,0.677495,0.0871255,0.0492103,0.0624412,0.0360228,0.533919,0.999313,0.884559,0.351916,0.518359,0.041685,0.539317,0.147981,0.0268505,0.243423,0.959181,0.500756,0.439304,0.492464,0.616953,0.216171,0.753034,0.0221097,0.820181,0.76736,0.761334,0.83011,0.463147,0.797781,0.549934,0.754121,0.237759,0.30505,0.420558,0.95249,0.964284,0.451079,0.953387,0.513463,0.63228,0.668796,0.0762706,0.0708246,0.995983,0.245981,0.458861,0.435204,0.336354,0.203184,0.840476,0.100327,0.349739,0.84154,0.385278,0.756543,0.0283642,0.302406,0.635668,0.809829,0.546927,0.0732523,0.732074,0.183382,0.00912213,0.709647,0.107686,0.216428,0.551628,0.886215,0.14728,0.872918,0.663548,0.0957347,0.914871,0.268568,0.475588,0.536333,0.943326,0.523098,0.816817,0.688357,0.641059,0.420991,0.723831,0.331567,0.0649074,0.263237,0.253894,0.155618,0.567754,0.0243771,0.305862,0.367066,0.342138,0.23022,0.796016,0.0189673,0.67697,0.438216,0.940571,0.834054,0.780214,0.546304,0.00817353,0.360032,0.509247,0.821281,0.968649,0.878999,0.124532,0.996931,0.34289,0.508271,0.535452,0.803011,0.461509,0.9629,0.461354,0.213119,0.129139,0.306049,0.903076,0.849616,0.98856,0.492334,0.426707,0.73325,0.0132097,0.798494,0.566113,0.351976,0.441932,0.605512,0.837963,0.572989,0.680203,0.108258,0.221066,0.74944,0.3435,0.478115,0.414705,0.170586,0.089203,0.271953,0.787809,0.275135,0.612624,0.20184,0.32428,0.172062,0.620975,0.456985,0.346739,0.911693,0.626382,0.296761,0.327294,0.708119,0.359457,0.112567,0.742684,0.175322,0.346097,0.107708,0.391012,0.373778,0.193524,0.662465,0.77779,0.0419993,0.0814174,0.720799,0.770893,0.103556,0.240669,0.722194,0.966669,0.920048,0.711189,0.812948,0.00336248,0.826546,0.10305,0.307548,0.373061,0.306368,0.316906,0.107148,0.766419,0.312122,0.512137,0.786593,0.388885,0.367978,0.431886,0.843941,0.642542,0.937577,0.77582,0.655001,0.54915,0.301492,0.0624371,0.313032,0.955102,0.934597,0.923433,0.262371,0.32142,0.799836,0.168476,0.863725,0.969996,0.237879,0.409275,0.573675,0.674079,0.636852,0.152576,0.463901,0.214326,0.803357,0.379942,0.782802,0.0172441,0.901619,0.434794,0.421389,0.95379,0.755061,0.590869,0.108337,0.855241,0.937905,0.00183141,0.940797,0.706983,0.0905457,0.744641,0.688969,0.93962,0.289254,0.725168,0.274287,0.209488,0.679118,0.869574,0.126025,0.843205,0.590013,0.759731,0.386993,0.764863,0.706826,0.62957,0.389583,0.41091,0.816264,0.594056,0.252043,0.884569,0.800372,0.813525,0.768419,0.727188,0.924153,0.487068,0.912601,0.230599,0.0759643,0.148382,0.681764,0.217955,0.00545311,0.562066,0.471593,0.73969,0.866466,0.434102,0.776917,0.780319,0.406634,0.226577,0.239212,0.52685,0.540685,0.253955,0.261008,0.704298,0.42749,0.488837,0.322603,0.817148,0.478521,0.700147,0.465925,0.120606,0.771672,0.356366,0.714925,0.705379,0.913138,0.382231,0.57613,0.719378,0.608277,0.274449,0.0244136,0.790474,0.626762,0.12228,0.684664,0.898509,0.449035,0.304982,0.919377,0.206374,0.859279,0.753936,0.388277,0.367819,0.563138,0.431127,0.508004,0.0862557,0.38129,0.119096,0.00824094,0.587167,0.61661,0.403882,0.0931233,0.395113,0.135093,0.0788549,0.0533223,0.62542,0.950405,0.827194,0.810125,0.748579,0.925899,0.686514,0.86778,0.0393815,0.824321,0.371386,0.279279,0.644711,0.600709,0.28559,0.296631,0.897384,0.267839,0.97341,0.825101,0.251665,0.330222,0.215765,0.139155,0.668284,0.367349,0.121159,0.869834,0.90007,0.693471,0.878554,0.0675606,0.875162,0.589322,0.351782,0.677697,0.265277,0.934608,0.725547,0.189001,0.0308883,0.287032,0.0594228,0.0111036,0.64342,0.845335,0.014939,0.215072,0.955449,0.560568,0.192736,0.450323,0.870091,0.730873,0.26134,0.873546,0.739936,0.0986592,0.0701542,0.093221,0.193106,0.502146,0.00710905,0.836271,0.207259,0.460409,0.0378472,0.723323,0.982873,0.365155,0.714036,0.447451,0.736284,0.48141,0.913812,0.875672,0.0155132,0.42615,0.562366,0.988706,0.808832,0.0655992,0.497873,0.80493,0.612346,0.144592,0.924568,0.998573,0.989073,0.195606,0.244561,0.952537,0.545806,0.747894,0.752149,0.0721496,0.185595,0.675484,0.286135,0.558846,0.29499,0.415843,0.97783,0.23567,0.906557,0.0832915,0.584781,0.102394,0.56218,0.609444,0.21753,0.00387383,0.792419,0.523329,0.129374,0.498134,0.529247,0.0339913,0.184782,0.052937,0.658689,0.444503,0.521196,0.133148,0.426656,0.088469,0.608442,0.971524,0.891862,0.953263,0.245362,0.178115,0.339335,0.91942,0.354061,0.150871,0.799567,0.0105058,0.597649,0.842066,0.704809,0.0353549,0.237214,0.370886,0.92498,0.979997,0.156438,0.291761,0.61828,0.899635,0.660786,0.376614,0.993717,0.690451,0.625117,0.362025,0.634666,0.459853,0.318256,0.347595,0.238393,0.286614,0.704276,0.225082,0.949375,0.481375,0.181573,0.0479366,0.545431,0.444263,0.351839,0.35714,0.781396,0.499291,0.985313,0.319695,0.509795,0.383478,0.448851,0.6538,0.247055,0.294919,0.963667,0.383951,0.639802,0.211398,0.95604,0.469851,0.469014,0.126575,0.987831,0.0121132,0.737239,0.686565,0.131102,0.825971,0.518694,0.193204,|0.282481,0.484025,0.229295,0.381806,0.609451,0.149794,0.993924,0.15067,0.160137,0.16457,0.672251,0.439385,0.960152,0.14587,0.288135,0.434901,0.281087,0.328487,0.47791,0.344987,0.454859,0.646564,0.0813056,0.22693,0.695643,0.551086,0.968494,0.0219082,0.71104,0.43439,0.224278,0.608134,0.147353,0.233812,0.662399,0.408897,0.137934,0.329226,0.299304,0.311733,0.0610516,0.522182,0.604351,0.27011,0.928501,0.396756,0.283427,0.251013,0.367022,0.124767,0.952639,0.0171008,0.843462,0.532794,0.823003,0.923233,0.901107,0.109929,0.0871477,0.0867894,0.0765026,0.468157,0.984623,0.0198988,0.059957,0.0897179,0.140306,0.891575,0.30783,0.600217,0.257361,0.892911,0.452208,0.424922,0.122388,0.0790352,0.381729,0.761741,0.231887,0.249388,0.638203,0.0575969,0.882116,0.175863,0.925072,0.687504,0.796979,0.861121,0.904448,0.129798,0.613465,0.955496,0.10025,0.202745,0.130133,0.429481,0.78994,0.082364,0.286533,0.615772,0.942907,0.228568,0.557647,0.143213,0.017132,0.702951,0.52506,0.0241697,0.32693,0.874892,0.658696,0.36385,0.650936,0.173662,0.217921,0.537986,0.752995,0.992019,0.810359,0.344488,0.280484,0.178624,0.976441,0.300752,0.704989,0.316213,0.955149,0.561653,0.868701,0.948113,0.75645,0.220498,0.575409,0.757091,0.454786,0.751158,0.0929644,0.114456,0.24719,0.532337,0.329272,0.37856,0.574999,0.669493,0.937879,0.277301,0.325838,0.296429,0.0901703,0.0656539,0.0225,0.367453,0.033544,0.778084,0.717142,0.311657,0.180057,0.90074,0.140812,0.334683,0.524686,0.0146547,0.092539,0.338478,0.260665,0.739828,0.999691,0.806187,0.757579,0.991814,0.912119,0.734167,0.806255,0.886552,0.819962,0.128514,0.343678,0.912034,0.961488,0.233347,0.644997,0.550863,0.207049,0.28456,0.840311,0.503904,0.227861,0.746861,0.817717,0.915575,0.672015,0.532671,0.488465,0.464507,0.0284475,0.322126,0.639128,0.612267,0.984824,0.122326,0.663316,0.415353,0.0662887,0.897884,0.053305,0.754097,0.158004,0.0532691,0.155105,0.507582,0.608027,0.338624,0.616129,0.623029,0.268324,0.734275,0.29777,0.736634,0.109738,0.273362,0.910337,0.709305,0.948227,0.602446,0.312166,0.294548,0.85801,0.464676,0.268931,0.251817,0.700601,0.342462,0.297761,0.994668,0.196801,0.305604,0.95122,0.953771,0.539073,0.0811887,0.0150142,0.138893,0.516308,0.814554,0.537693,0.987195,0.647575,0.221848,0.508584,0.994317,0.195766,0.917814,0.526608,0.207302,0.215389,0.729403,0.427509,0.628348,0.602568,0.0726928,0.290096,0.898211,0.489515,0.248377,0.290292,0.605619,0.24931,0.588222,0.19523,0.705169,0.870336,0.210873,0.955073,0.216747,0.873901,0.808517,0.201244,0.519915,0.130437,0.879916,0.372368,0.826789,0.622959,0.777763,0.544909,0.543455,0.951323,0.273144,0.0252008,0.115787,0.191312,0.608763,0.0381272,0.50939,0.559618,0.042626,0.691967,0.133133,0.402937,0.193359,0.476147,0.38682,0.249821,0.888416,0.604379,0.863116,0.294136,0.587723,0.928889,0.521092,0.612633,0.486943,0.602645,0.797184,0.543582,0.21295,0.39284,0.692663,0.0985862,0.448775,0.0197154,0.595001,0.245024,0.121272,0.281806,0.350259,0.265571,0.907384,0.894439,0.580452,0.170876,0.776313,0.00501221,0.75033,0.868004,0.44193,0.259916,0.14232,0.404001,0.861139,0.0272279,0.60398,0.546102,0.28485,0.0762599,0.793976,0.405832,0.228136,0.148735,0.893144,0.158585,0.397767,0.262879,0.18205,0.812872,0.156895,0.101759,0.662872,0.476998,0.857584,0.311119,0.869555,0.919068,0.679832,0.901513,0.721109,0.337559,0.398227,0.156288,0.374169,0.762128,0.669182,0.474211,0.769945,0.409439,0.319586,0.908148,0.504445,0.323245,0.144918,0.137545,0.497637,0.914017,0.312253,0.398201,0.721012,0.287601,0.948129,0.703684,0.683988,0.91842,0.00495255,0.584027,0.809535,0.905092,0.918397,0.446909,0.00723648,0.406887,0.719337,0.439856,0.506985,0.589328,0.673847,0.0549477,0.454156,0.55372,0.297927,0.0518044,0.100289,0.250748,0.684816,0.127009,0.67451,0.721211,0.0338084,0.0245712,0.952676,0.208512,0.0607918,0.367537,0.544515,0.561608,0.229875,0.812657,0.794878,0.804889,0.804814,0.271521,0.731457,0.660074,0.790874,0.875155,0.757421,0.142059,0.265893,0.601344,0.611352,0.359516,0.364798,0.725906,0.0568115,0.499453,0.248394,0.289857,0.829332,0.473156,0.020391,0.636512,0.88242,0.737351,0.179909,0.300673,0.484248,0.562929,0.0316782,0.00162756,0.247692,0.581188,0.289758,0.770951,0.836997,0.145429,0.280716,0.159224,0.326622,0.955968,0.243855,0.301735,0.130981,0.238773,0.514498,0.837469,0.966955,0.680399,0.335488,0.390503,0.982282,0.782468,0.0510453,0.085256,0.830004,0.332272,0.359111,0.484402,0.470986,0.624385,0.825683,0.179331,0.0351655,0.832063,0.275951,0.909007,0.222263,0.225914,0.0324771,0.652854,0.103335,0.588892,0.943639,0.522122,0.804503,0.152354,0.357623,0.618182,0.701153,0.732579,0.73288,0.688284,0.911651,0.143456,0.978618,0.451468,0.624404,0.794257,0.789024,0.13072,0.778263,0.402843,0.318362,0.506895,0.911965,0.866062,0.112509,0.252777,0.261263,0.245345,0.0401424,0.497881,0.925095,0.498421,0.0413751,0.219553,0.434579,0.214694,0.686257,0.632271,0.626732,0.765572,0.929964,0.880056,0.232415,0.746274,0.959784,0.661369,0.844733,0.168223,0.78445,0.147047,0.434462,0.0539539,0.927626,0.162737,0.883434,0.098581,0.802302,0.712399,0.0751421,0.854382,0.724863,0.0316688,0.285191,0.638473,0.576412,0.0380238,0.391377,0.257829,0.94438,0.791211,0.706277,0.698167,0.0847821,0.535323,0.0184875,0.674374,0.946056,0.53477,0.398725,0.366681,0.514726,0.541439,0.0730993,0.0672694,0.0856749,0.561758,0.552776,0.315479,0.873821,0.614587,0.765148,0.296702,0.658717,0.305116,0.877553,0.642944,0.673246,0.415013,0.118817,0.310065,0.302712,0.758949,0.708078,0.300848,0.532209,0.0100783,0.80838,0.363446,0.587149,0.328122,0.538475,0.379024,0.713379,0.711541,0.168639,0.357402,0.243388,0.704917,0.373118,0.750818,0.0436808,0.440019,0.862502,0.453206,0.574541,0.756346,0.0536822,0.111641,0.354409,0.0647137,0.453919,0.939438,0.183821,0.965678,0.728784,0.543704,0.328787,0.770485,0.803029,0.476957,0.188646,0.919741,0.995149,0.058812,0.484765,0.296122,0.0934276,0.183766,0.787295,0.828671,0.909418,0.839302,0.752152,0.0683084,0.211951,0.818389,0.206583,0.110314,0.21338,0.604576,0.354971,0.103183,0.867668,0.385032,0.955192,0.155566,0.66484,0.677637,0.170561,0.433413,0.574814,0.235961,0.658883,0.689942,0.293395,0.152083,0.0164726,0.840494,0.998112,0.918529,0.433191,0.557538,0.423978,0.0284898,0.537802,0.525015,0.668703,0.12341,0.137809,0.264145,0.775101,0.203029,0.500406,0.366761,0.0489748,0.543151,0.190525,0.758959,0.740364,0.757014,0.0945766,0.489759,0.766266,0.237998,0.165031,0.159039,0.890174,0.523157,0.754257,0.407019,0.708456,0.416418,0.230344,0.91096,0.326734,0.713069,0.971068,0.0897017,0.612143,0.467695,0.444157,0.44698,0.108455,0.779752,0.919761,0.883185,0.697385,0.611967,0.92786,0.135009,0.120614,0.87687,0.939758,0.645338,0.185733,0.907249,0.772617,0.415214,0.550657,0.0658174,0.974604,0.154655,0.578433,0.154683,0.861328,0.118967,0.539495,0.0924064,0.776214,0.376815,0.615101,0.0076713,0.97207,0.571936,0.787297,0.799644,0.0351696,0.922005,0.0334833,0.455417,0.840884,0.070595,0.702947,0.611066,0.862263,0.164175,0.175058,0.971525,0.824725,0.438537,0.430051,0.207436,0.845741,0.497675,0.417293,0.843805,0.691507,0.590269,0.427453,0.570509,0.0631491,0.493678,0.306135,0.434722,0.960928,0.0907931,0.679379,0.335771,0.53463,0.292728,0.57109,0.764481,0.33521,0.0881733,0.236852,0.217614,0.26209,0.479391,0.63602,0.388889,0.531043,0.48368,0.786217,0.611802,0.0846074,0.588298,0.62868,0.977117,0.162673,0.00437087,0.414625,0.498797,0.169438,0.666875,0.395495,0.12687,0.345324,0.58179,0.208072,0.930406,0.544035,0.654969,0.08069,0.824025,0.141104,0.817345,0.0145945,0.304123,0.467575,0.499816,0.571048,0.45908,0.787317,0.0151503,0.868851,0.821977,0.968981,0.765306,0.190383,0.390033,0.547392,0.00724053,0.0737977,0.1222,0.927635,0.851643,0.982084,0.149004,0.51977,0.77855,0.317182,0.945681,0.251944,0.214807,0.874645,0.98777,0.0868179,0.535719,0.864626,0.809344,0.284181,0.295078,0.75813,0.989418,0.301932,0.816728,0.864256,0.2804,0.571374,0.94563,0.28432,0.0135695,0.0167947,0.997514,0.450201,0.277049,0.627215,0.465615,0.197088,0.737597,0.481667,0.590851,0.594968,0.422207,0.168777,0.251587,0.815588,0.820621,0.391899,0.89287,0.722573,0.185244,0.392758,0.634378,0.468821,0.49046,0.722301,0.831191,0.55723,0.571238,0.390561,0.203025,0.550231,0.944979,0.916176,0.0824485,0.76473,0.0887898,0.41075,0.657425,0.943985,0.703396,0.174121,0.610796,0.529275,0.24937,0.655341,0.722362,0.410775,0.52771,0.446031,0.0803602,0.26204,0.151519,0.698752,0.0282717,0.735561,0.99898,0.35878,0.495917,0.235109,0.345305,0.367372,0.298845,0.873335,0.789701,0.103525,0.105171,0.162812,0.384501,0.448807,0.426315,0.666641,0.216833,0.595283,0.597861,0.381644,0.141284,0.860034,0.588452,0.579735,0.136417,0.267742,0.690369,0.808358,0.39977,0.974659,0.352579,0.885409,0.02308,0.843859,0.495711,0.402717,0.587888,0.924744,0.817057,0.613203,0.0276917,0.131475,0.292139,0.912393,0.21521,0.687074,0.657532,0.296614,0.598158,0.0135488,0.502951,0.743228,0.847932,0.27022,0.339436,0.972805,0.798194,0.347771,0.752531,0.551248,0.471575,0.0363268,0.0101014,0.0357035,0.574183,0.0813791,0.841828,0.537076,0.953915,0.573095,0.871467,0.310886,0.576374,0.903698,|0.448313,0.0994346,0.144893,0.822579,0.749551,0.174563,0.277262,0.559687,0.554614,0.250962,0.562075,0.658735,0.163676,0.825002,0.15138,0.210487,0.350362,0.539063,0.0469757,0.469879,0.373155,0.557894,0.340525,0.708983,0.793237,0.936313,0.159097,0.198547,0.154298,0.741294,0.551059,0.46825,0.142747,0.867234,0.219282,0.569387,0.0230766,0.317753,0.693387,0.81685,0.163771,0.312427,0.748998,0.301148,0.441116,0.577355,0.432376,0.739361,0.215729,0.0817182,0.816097,0.959952,0.766408,0.874813,0.261829,0.733867,0.676767,0.283638,0.180333,0.0246102,0.813528,0.215193,0.053588,0.201061,0.451464,0.816183,0.0199774,0.324295,0.634136,0.245977,0.995361,0.692185,0.712323,0.101396,0.625517,0.198613,0.00649428,0.542133,0.243492,0.756874,0.17929,0.944633,0.0878553,0.267209,0.82305,0.438204,0.758089,0.758142,0.437777,0.411625,0.249499,0.160764,0.179644,0.411939,0.0667769,0.842425,0.621366,0.107782,0.862758,0.864374,0.110646,0.200687,0.580885,0.499994,0.2065,0.674382,0.065788,0.482434,0.00640905,0.667167,0.97612,0.992814,0.34498,0.4286,0.942084,0.376311,0.253599,0.398443,0.825595,0.0265372,0.0417495,0.668806,0.426511,0.10274,0.473433,0.712101,0.607291,0.0473141,0.787235,0.556904,0.396893,0.359736,0.533389,0.556297,0.231189,0.239362,0.567591,0.918479,0.569303,0.495153,0.510257,0.67812,0.860398,0.81291,0.810391,0.236464,0.640707,0.477262,0.972867,0.688793,0.984376,0.356004,0.0535682,0.92713,0.115269,0.992215,0.650684,0.359991,0.367021,0.902991,0.857395,0.529943,0.996822,0.915421,0.237828,0.051212,0.215802,0.405395,0.834745,0.13559,0.84892,0.982456,0.0195872,0.107363,0.879309,0.206351,0.852014,0.153515,0.596667,0.101654,0.769109,0.188808,0.231542,0.588698,0.0209358,0.720339,0.81887,0.558683,0.447785,0.909077,0.796676,0.457528,0.912078,0.259464,0.89266,0.892898,0.268432,0.789727,0.744368,0.0602288,0.957338,0.0913503,0.672724,0.922831,0.656214,0.635441,0.763654,0.84007,0.60504,0.859507,0.304709,0.491759,0.405683,0.66068,0.158767,0.412888,0.662217,0.101701,0.11519,0.470298,0.476329,0.947449,0.316919,0.873319,0.158989,0.810614,0.252066,0.7843,0.503435,0.434214,0.346394,0.639369,0.749253,0.0621833,0.973127,0.568142,0.419389,0.329983,0.939456,0.338006,0.88289,0.611422,0.0760633,0.312731,0.909253,0.20775,0.899795,0.737064,0.0513582,0.721174,0.00546229,0.730553,0.649002,0.40489,0.824357,0.260934,0.820668,0.407624,0.213971,0.0166152,0.210186,0.78174,0.0662125,0.470852,0.350607,0.736315,0.293954,0.618985,0.568293,0.92468,0.738096,0.627429,0.000114143,0.376021,0.672535,0.777957,0.1218,0.966914,0.61339,0.0737589,0.628493,0.32328,0.205814,0.0724694,0.756452,0.276348,0.177457,0.730718,0.670793,0.371738,0.378022,0.935933,0.881004,0.183974,0.686164,0.617591,0.605648,0.7098,0.784492,0.844513,0.749443,0.102464,0.836386,0.928693,0.97867,0.233604,0.380882,0.127199,0.97021,0.368441,0.200157,0.362185,0.320489,0.641545,0.813449,0.46718,0.168894,0.879148,0.89282,0.0406029,0.928032,0.0986338,0.888048,0.0658317,0.485084,0.62042,0.175937,0.531033,0.181252,0.759144,0.324482,0.441938,0.270559,0.443078,0.805273,0.143252,0.978514,0.120454,0.605849,0.0560872,0.394521,0.152465,0.235276,0.554697,0.898316,0.98531,0.137669,0.689997,0.951548,0.370625,0.340284,0.0485379,0.619612,0.591174,0.11026,0.782474,0.583831,0.136096,0.472686,0.662604,0.076765,0.0290757,0.26109,0.490936,0.701845,0.503362,0.650269,0.86356,0.920925,0.461644,0.569732,0.422479,0.284353,0.78811,0.48234,0.953245,0.291616,0.547922,0.0753359,0.332402,0.978123,0.0847471,0.0595524,0.339718,0.669938,0.503765,0.142407,0.383532,0.274774,0.0474513,0.99401,0.256205,0.638101,0.990778,0.24004,0.334914,0.995107,0.439057,0.80668,0.984282,0.255414,0.914657,0.340853,0.241293,0.0482496,0.100967,0.388464,0.200196,0.484125,0.556046,0.460635,0.744585,0.536813,0.98955,0.966532,0.918815,0.501289,0.284885,0.370688,0.399134,0.235487,0.179669,0.141949,0.482651,0.0471451,0.271506,0.321543,0.629076,0.11113,0.647905,0.185969,0.38452,0.489223,0.737474,0.041075,0.11247,0.453469,0.751171,0.56145,0.657471,0.905537,0.721853,0.753159,0.18777,0.956643,0.717312,0.280914,0.271031,0.399195,0.142902,0.0427629,0.221121,0.171612,0.166618,0.182685,0.187045,0.243718,0.415926,0.33806,0.532468,0.930245,0.272934,0.826424,0.616761,0.936753,0.66884,0.612104,0.00889468,0.283843,0.787491,0.853092,0.0322271,0.764862,0.965269,0.226968,0.968409,0.76749,0.542374,0.422554,0.905799,0.743579,0.366638,0.99434,0.113347,0.682033,0.313436,0.739341,0.679674,0.0212705,0.629245,0.431217,0.42045,0.691238,0.0175647,0.697008,0.582711,0.192766,0.339351,0.35542,0.36043,0.323682,0.672128,0.47246,0.571952,0.00667214,0.626467,0.0718486,0.631981,0.405954,0.883092,0.660598,0.705831,0.295961,0.935081,0.350426,0.686707,0.808366,0.464378,0.58858,0.875233,0.889943,0.772226,0.367327,0.17074,0.99868,0.501941,0.677817,0.325397,0.178147,0.567623,0.338954,0.437621,0.20306,0.475989,0.264241,0.551733,0.559841,0.232933,0.62699,0.339878,0.975625,0.578575,0.241668,0.641658,0.549245,0.694018,0.426657,0.556421,0.909555,0.815382,0.883236,0.148139,0.129814,0.449102,0.988897,0.237419,0.376971,0.339285,0.936317,0.836431,0.562992,0.187364,0.736318,0.820001,0.956497,0.24937,0.703451,0.0954542,0.258745,0.868712,0.376705,0.59096,0.0560821,0.378931,0.681988,0.552033,0.0838076,0.533606,0.968442,0.196355,0.869423,0.130495,0.0969192,0.53769,0.808918,0.860322,0.150386,0.165739,0.132619,0.350756,0.590292,0.248115,0.359778,0.500337,0.407732,0.718343,0.13161,0.490937,0.372249,0.708747,0.662252,0.825596,0.549959,0.684254,0.553207,0.926818,0.357572,0.436886,0.293843,0.637058,0.802234,0.523677,0.486573,0.99297,0.411696,0.923504,0.747623,0.792922,0.96535,0.47219,0.561116,0.0929207,0.508518,0.641031,0.302831,0.304168,0.0755185,0.480663,0.649928,0.813009,0.939263,0.549593,0.0386504,0.105824,0.272411,0.224721,0.369439,0.14858,0.998938,0.27566,0.923862,0.627721,0.209503,0.914385,0.415691,0.321142,0.767823,0.078107,0.019501,0.663622,0.66519,0.733979,0.132598,0.247485,0.0280767,0.724259,0.092253,0.294444,0.969509,0.868572,0.953033,0.878953,0.840673,0.27099,0.824396,0.931331,0.525386,0.147406,0.322179,0.997083,0.309415,0.458415,0.108017,0.710253,0.0657875,0.783542,0.652487,0.511324,0.717684,0.432077,0.527429,0.764753,0.846965,0.527107,0.676911,0.451969,0.957904,0.296669,0.148779,0.483848,0.0843666,0.603018,0.500445,0.24345,0.729751,0.117811,0.0182719,0.899009,0.785833,0.360241,0.902843,0.826676,0.696116,0.830151,0.695909,0.746565,0.628701,0.224272,0.101848,0.765327,0.671927,0.346351,0.18422,0.148393,0.374894,0.922651,0.622822,0.0315885,0.10756,0.307081,0.494395,0.0787036,0.644047,0.665305,0.981118,0.960466,0.521301,0.265188,0.635037,0.768705,0.513544,0.810688,0.65226,0.825382,0.856366,0.777222,0.495412,0.228913,0.306379,0.90077,0.315747,0.674684,0.0307079,0.740469,0.903033,0.355311,0.324125,0.519299,0.226993,0.33037,0.724154,0.937774,0.53811,0.591898,0.0842791,0.98401,0.0794289,0.740125,0.555808,0.739599,0.998601,0.332175,0.446064,0.633646,0.88576,0.710796,0.431538,0.557315,0.773011,0.970833,0.00103575,0.105827,0.103463,0.870347,0.527715,0.433804,0.13341,0.521538,0.825154,0.636288,0.187848,0.912488,0.226802,0.270464,0.973809,0.699562,0.201421,0.96049,0.0101764,0.449843,0.843801,0.78889,0.306832,0.64055,0.853038,0.0333155,0.642188,0.498975,0.253474,0.906785,0.641775,0.43585,0.911941,0.765836,0.463572,0.966684,0.508287,0.840019,0.10648,0.111984,0.939282,0.0132638,0.159879,0.764213,0.562821,0.899222,0.944444,0.0129247,0.855582,0.744471,0.892713,0.801612,0.629482,0.290958,0.437812,0.737279,0.917623,0.665134,0.0275606,0.834099,0.375098,0.117277,0.743212,0.257073,0.457928,0.597249,0.180918,0.928335,0.6298,0.206271,0.416547,0.935479,0.713837,0.511645,0.626194,0.107385,0.203948,0.0540572,0.711161,0.836992,0.798751,0.923808,0.0596819,0.939199,0.362181,0.528837,0.840966,0.404524,0.485759,0.89954,0.403034,0.489409,0.25152,0.718364,0.0850904,0.238444,0.735092,0.44473,0.349928,0.0581787,0.768315,0.228592,0.964218,0.594119,0.823328,0.207866,0.50266,0.229483,0.912157,0.892111,0.506234,0.295909,0.188472,0.37011,0.944772,0.155077,0.156233,0.0717142,0.537556,0.0723104,0.157949,0.426124,0.405585,0.173166,0.0204622,0.569283,0.980183,0.328729,0.601292,0.957369,0.905089,0.545366,0.334846,0.400041,0.635155,0.89957,0.166054,0.387311,0.510601,0.0846888,0.715745,0.862227,0.765223,0.362465,0.871142,0.591535,0.923743,0.229036,0.398214,0.783884,0.777533,0.428959,0.105094,0.903002,0.0829052,0.770742,0.0402522,0.6044,0.777,0.609319,0.486243,0.249069,0.165669,0.358497,0.970557,0.969894,0.011129,0.592275,0.161469,0.409255,0.00997698,0.491675,0.52413,0.76655,0.974868,0.223316,0.912273,0.922812,0.707241,0.371682,0.47095,0.399115,0.91777,0.699431,0.0670499,0.311933,0.984081,0.219835,0.922035,0.339362,0.525911,0.0118288,0.282919,0.0489788,0.645982,0.16276,0.767843,0.980109,0.57602,0.670107,0.84908,0.265213,0.993626,0.276695,0.0133759,0.924585,0.208547,0.456061,0.952111,0.890127,0.928139,0.687961,0.181258,0.318721,0.536889,0.614669,0.669353,0.748547,0.879723,0.998594,0.892259,0.0480542,0.178753,0.767608,0.277531,0.703977,0.949005,0.240598,0.310478,0.974053,|0.963441,0.252989,0.594373,0.812194,0.472271,0.085791,0.865435,0.893135,0.408791,0.390289,0.720592,0.262374,0.861494,0.479782,0.752692,0.821206,0.708928,0.176807,0.46073,0.658546,0.303203,0.00863177,0.920438,0.352595,0.438618,0.478494,0.427998,0.930839,0.633149,0.869026,0.633159,0.762253,0.794036,0.102796,0.774004,0.126446,0.113756,0.642119,0.640771,0.757584,0.490876,0.74042,0.148205,0.113116,0.807351,0.369248,0.386308,0.248034,0.770803,0.181708,0.0454583,0.0310814,0.735383,0.0629048,0.635417,0.142592,0.438996,0.348813,0.28238,0.565264,0.690823,0.149728,0.746391,0.706662,0.079882,0.313926,0.206627,0.414579,0.100938,0.906355,0.837023,0.549842,0.95004,0.504861,0.242952,0.205578,0.471807,0.175912,0.113043,0.80351,0.871617,0.0930623,0.991357,0.51146,0.565878,0.804397,0.634,0.756534,0.339548,0.18623,0.30208,0.992573,0.269848,0.38988,0.777638,0.719563,0.793342,0.83095,0.267386,0.175571,0.0928392,0.34973,0.413484,0.515516,0.204385,0.455168,0.371334,0.231279,0.923192,0.720197,0.993886,0.636787,0.254,0.976506,0.0634431,0.733021,0.415894,0.495495,0.849716,0.893908,0.365702,0.532083,0.884149,0.0271935,0.508013,0.487327,0.466591,0.849466,0.181269,0.14149,0.928985,0.820016,0.99534,0.351066,0.207726,0.912072,0.120197,0.919172,0.743001,0.0665419,0.569455,0.383911,0.128312,0.439984,0.757905,0.723619,0.608681,0.61142,0.554117,0.396226,0.248031,0.814029,0.0868034,0.332479,0.27308,0.162597,0.761472,0.352602,0.172919,0.687184,0.527631,0.997923,0.839018,0.965661,0.98385,0.753345,0.339982,0.247135,0.27867,0.841765,0.134194,0.639264,0.934114,0.601909,0.315547,0.612227,0.0827292,0.203301,0.854474,0.425032,0.917563,0.302125,0.807682,0.590536,0.313594,0.919822,0.56939,0.701757,0.579537,0.109762,0.603262,0.241705,0.0694454,0.998939,0.558777,0.737179,0.0903866,0.789816,0.977795,0.332439,0.804317,0.675992,0.118831,0.713132,0.99338,0.273048,0.518602,0.898137,0.901133,0.599108,0.315632,0.610325,0.0027805,0.617844,0.474681,0.735769,0.133979,0.141184,0.671367,0.0423544,0.0725179,0.142173,0.469439,0.63962,0.648565,0.705818,0.402902,0.00735027,0.407095,0.640471,0.734213,0.590892,0.0742052,0.0466767,0.939934,0.803591,0.25256,0.943332,0.0721344,0.478078,0.307251,0.918731,0.289463,0.274122,0.488817,0.973017,0.408509,0.499043,0.0410433,0.402189,0.708393,0.0748675,0.995581,0.107485,0.2446,0.519894,0.940266,0.469113,0.97093,0.748157,0.59681,0.746673,0.925659,0.524553,0.385173,0.164792,0.381879,0.5299,0.16217,0.56495,0.673038,0.16104,0.863451,0.237521,0.193615,0.600062,0.583197,0.832625,0.84104,0.626205,0.23736,0.452513,0.250577,0.532714,0.332817,0.576158,0.900426,0.569323,0.755307,0.649707,0.280242,0.298488,0.775786,0.463179,0.898802,0.420984,0.654764,0.680005,0.710516,0.999825,0.0202351,0.0785182,0.730187,0.12385,0.231564,0.437178,0.475701,0.243411,0.524069,0.0371963,0.316465,0.830119,0.916953,0.267001,0.115591,0.299962,0.21198,0.399439,0.242319,0.833367,0.959861,0.495572,0.63895,0.366021,0.862379,0.433978,0.903479,0.818934,0.384918,0.521455,0.169512,0.654501,0.701777,0.0716574,0.558011,0.589381,0.276786,0.285211,0.409521,0.082925,0.215277,0.90569,0.528705,0.468728,0.147924,0.117674,0.388194,0.431933,0.321164,0.940199,0.730057,0.611977,0.777201,0.677107,0.977748,0.254013,0.319736,0.149593,0.785852,0.129259,0.806114,0.563126,0.25598,0.237446,0.221498,0.00127411,0.996431,0.206231,0.225268,0.447931,0.182887,0.0582216,0.660702,0.349857,0.0086174,0.587822,0.0177085,0.591484,0.397624,0.117761,0.85729,0.381156,0.00947291,0.210472,0.975006,0.845319,0.0682996,0.354675,0.0233441,0.0417123,0.118665,0.708263,0.503663,0.320645,0.888826,0.994032,0.672776,0.796863,0.957638,0.162504,0.139287,0.621777,0.489038,0.42558,0.00215,0.992094,0.387093,0.373917,0.490998,0.559806,0.308545,0.0494568,0.849688,0.86935,0.304598,0.111763,0.455546,0.163083,0.599068,0.54253,0.332359,0.203015,0.409783,0.614577,0.360101,0.796572,0.0254795,0.489892,0.889738,0.963141,0.295143,0.586207,0.854789,0.374088,0.551966,0.0456418,0.819827,0.557447,0.178076,0.511949,0.337052,0.987867,0.913993,0.115586,0.0567898,0.167034,0.821485,0.578783,0.537878,0.64577,0.752904,0.415498,0.0537902,0.247535,0.186713,0.603256,0.7212,0.655527,0.891752,0.672657,0.564224,0.482317,0.447188,0.895337,0.96999,0.107378,0.0176581,0.778611,0.936044,0.162374,0.278546,0.860624,0.195587,0.823156,0.616094,0.225586,0.128926,0.985323,0.335808,0.0953507,0.778008,0.297019,0.776079,0.493136,0.913281,0.444995,0.812108,0.89253,0.00272566,0.941381,0.660453,0.302456,0.811907,0.536825,0.616549,0.0599999,0.0790273,0.324109,0.717616,0.384881,0.896221,0.491513,0.454983,0.701865,0.0287848,0.0178874,0.0993649,0.714623,0.37111,0.50926,0.792632,0.767118,0.605891,0.376383,0.536087,0.0117363,0.278507,0.339184,0.440044,0.36932,0.121491,0.783875,0.47971,0.276946,0.509052,0.862168,0.310673,0.953968,0.165228,0.519285,0.393811,0.469058,0.326119,0.213731,0.13855,0.446112,0.335514,0.382471,0.889685,0.423397,0.597917,0.953576,0.220955,0.898849,0.413508,0.797298,0.163856,0.0608554,0.162986,0.147313,0.756991,0.811992,0.0684816,0.316488,0.185668,0.357772,0.968077,0.298615,0.727123,0.909397,0.0812554,0.232491,0.840273,0.339506,0.179971,0.437095,0.526597,0.101797,0.258643,0.357084,0.0970506,0.799936,0.929135,0.854594,0.200974,0.22686,0.820176,0.423068,0.452106,0.773409,0.962843,0.751505,0.420288,0.70564,0.668702,0.236773,0.448618,0.449745,0.47836,0.345445,0.73682,0.107276,0.361173,0.918943,0.637701,0.992983,0.193205,0.49181,0.334024,0.461082,0.391769,0.19952,0.11564,0.622684,0.270182,0.83547,0.666933,0.535766,0.236493,0.683142,0.954913,0.139357,0.467198,0.52525,0.872195,0.513153,0.853862,0.120483,0.37219,0.367944,0.563869,0.754959,0.307978,0.861113,0.830841,0.979852,0.132789,0.899027,0.813916,0.335214,0.0963907,0.0605012,0.337574,0.86965,0.183846,0.744072,0.195704,0.699114,0.765405,0.557211,0.208672,0.129894,0.314309,0.893743,0.714137,0.807396,0.673582,0.683554,0.456115,0.18822,0.589676,0.742006,0.22368,0.979578,0.113939,0.0732397,0.696198,0.385529,0.676866,0.279131,0.277139,0.636312,0.185261,0.0957534,0.784075,0.309698,0.877239,0.711443,0.535443,0.888852,0.81585,0.516544,0.932358,0.263565,0.798302,0.23695,0.301288,0.355721,0.953959,0.926182,0.527373,0.921631,0.700653,0.721777,0.147037,0.745693,0.0784643,0.539518,0.960137,0.844828,0.279315,0.463307,0.866585,0.371684,0.328684,0.42417,0.0159878,0.864291,0.522754,0.131814,0.814697,0.619038,0.302989,0.559821,0.709574,0.943194,0.410156,0.118107,0.0917886,0.65069,0.474879,0.862922,0.674682,0.0566621,0.881449,0.547589,0.837088,0.0432333,0.217327,0.857287,0.640936,0.854817,0.901127,0.282621,0.771977,0.424573,0.242649,0.958286,0.147693,0.747413,0.623146,0.382705,0.0538519,0.663354,0.937948,0.260857,0.00846851,0.0905221,0.0108466,0.942769,0.261279,0.154402,0.863869,0.699457,0.674778,0.434344,0.383632,0.910266,0.00878572,0.240504,0.119307,0.336508,0.545727,0.734528,0.740997,0.528181,0.116962,0.872581,0.202574,0.862081,0.87432,0.0183219,0.0549068,0.666889,0.85547,0.255708,0.477073,0.935991,0.0544522,0.325338,0.732033,0.260308,0.249587,0.919757,0.0584904,0.226546,0.689859,0.804539,0.744012,0.866467,0.787156,0.627622,0.333639,0.104596,0.759695,0.173851,0.703022,0.380459,0.277911,0.3275,0.896518,0.583945,0.945335,0.212483,0.298375,0.914199,0.199603,0.64254,0.814757,0.723917,0.359513,0.883999,0.906276,0.128411,0.945932,0.862451,0.554523,0.959706,0.876175,0.199527,0.776496,0.223202,0.511988,0.25058,0.368663,0.292765,0.312831,0.731773,0.896181,0.707718,0.834815,0.357019,0.217956,0.344007,0.823632,0.316184,0.283,0.266778,0.64588,0.635742,0.382772,0.169798,0.695404,0.0328726,0.577292,0.511422,0.236324,0.385765,0.55492,0.467588,0.578229,0.326287,0.380205,0.933711,0.92106,0.888968,0.155478,0.39867,0.417041,0.590566,0.452907,0.130253,0.28298,0.221906,0.851219,0.964846,0.655846,0.815413,0.241051,0.0633774,0.57768,0.263937,0.180421,0.960155,0.96585,0.162923,0.960907,0.853857,0.284829,0.34204,0.314651,0.314451,0.780674,0.0320158,0.698893,0.0356032,0.986493,0.0351174,0.961856,0.583926,0.665966,0.924257,0.126624,0.512402,0.897688,0.861475,0.414865,0.085094,0.369573,0.934604,0.876364,0.915647,0.392923,0.885562,0.410174,0.76216,0.369287,0.421211,0.658611,0.884701,0.281567,0.851199,0.867582,0.219581,0.834207,0.741871,0.823868,0.990549,0.265353,0.566718,0.143895,0.146451,0.494139,0.254338,0.940853,0.266417,0.420461,0.829686,0.419356,0.388214,0.102153,0.615122,0.440071,0.736791,0.291819,0.757173,0.229272,0.652552,0.474577,0.897409,0.811626,0.269275,0.976139,0.189742,0.197178,0.940018,0.745762,0.379162,0.745106,0.777091,0.541665,0.521699,0.802596,0.29218,0.309803,0.24466,0.827731,0.397905,0.483361,0.191473,0.500659,0.302743,0.500272,0.761842,0.867832,0.434814,0.150219,0.838962,0.452436,0.171748,0.197882,0.88582,0.0524767,0.673398,0.70707,0.305434,0.11215,0.82066,0.653989,0.288414,0.794589,0.196772,0.294884,0.153786,0.953712,0.819257,0.955321,0.0110433,0.0720949,0.269313,0.157912,0.311178,0.288368,0.257506,0.189978,0.777912,0.482589,0.959441,0.035352,0.275008,0.882788,0.825831,0.25117,0.538062,0.0324669,0.0488709,0.782572,0.500518,0.921576,0.33559,|0.0562727,0.573166,0.527564,0.196808,0.635249,0.881489,0.6698,0.238248,0.6171,0.705612,0.352136,0.790014,0.401185,0.980832,0.665765,0.978182,0.0189292,0.42741,0.372068,0.735789,0.632304,0.308952,0.52605,0.167067,0.924507,0.150729,0.0743896,0.311964,0.624573,0.189503,0.66232,0.768142,0.0322291,0.275847,0.0264032,0.968722,0.0734977,0.518992,0.790282,0.198654,0.569315,0.747794,0.919988,0.641288,0.157714,0.780759,0.000987113,0.8529,0.704577,0.734788,0.516314,0.798944,0.612294,0.0722278,0.739897,0.578074,0.447157,0.0280237,0.29513,0.112215,0.452762,0.667648,0.116492,0.753447,0.316015,0.840842,0.892481,0.982867,0.79866,0.795987,0.783678,0.316747,0.6196,0.711922,0.0539692,0.663798,0.535968,0.708482,0.250836,0.555102,0.860494,0.0231309,0.345145,0.291883,0.120675,0.161716,0.909683,0.666398,0.291726,0.442511,0.792549,0.780553,0.00684369,0.44565,0.915303,0.847516,0.123205,0.70964,0.0163918,0.493085,0.615335,0.76199,0.699547,0.583959,0.575085,0.504561,0.338596,0.287718,0.704377,0.505032,0.6318,0.633625,0.852804,0.222102,0.0613962,0.11584,0.0789344,0.591635,0.251894,0.6553,0.569424,0.619517,0.379361,0.797765,0.536755,0.897389,0.505183,0.0709708,0.290987,0.249809,0.102789,0.561435,0.730665,0.516887,0.396941,0.962713,0.313531,0.531978,0.341337,0.430409,0.49464,0.889865,0.629987,0.781135,0.641771,0.166115,0.521561,0.31795,0.76347,0.598525,0.356779,0.357684,0.10457,0.530522,0.227898,0.778411,0.999771,0.00904304,0.508228,0.441225,0.252476,0.580945,0.97799,0.998245,0.0566471,0.7659,0.358958,0.96577,0.487766,0.125151,0.368242,0.547533,0.0807346,0.673126,0.421794,0.540455,0.0374548,0.497937,0.0421041,0.818292,0.922457,0.8398,0.834499,0.565362,0.794472,0.954681,0.869063,0.9301,0.390173,0.332025,0.355961,0.386604,0.188961,0.931819,0.386101,0.490563,0.765753,0.520165,0.549162,0.55373,0.55364,0.344346,0.449475,0.841518,0.327793,0.578698,0.334967,0.229834,0.379047,0.558433,0.323123,0.121159,0.0377012,0.697668,0.896072,0.935732,0.0366811,0.80328,0.321889,0.62455,0.280622,0.613049,0.404914,0.819923,0.480623,0.573677,0.13716,0.474981,0.834018,0.57859,0.326226,0.865681,0.45468,0.625294,0.0248923,0.512564,0.939784,0.328289,0.985839,0.303449,0.490128,0.0557508,0.884901,0.721488,0.351628,0.480934,0.99353,0.427825,0.379679,0.901286,0.650313,0.213107,0.215666,0.468495,0.926432,0.114358,0.717317,0.231228,0.0681791,0.385142,0.514402,0.683152,0.198214,0.398509,0.743523,0.480691,0.379843,0.0883796,0.514902,0.525636,0.474808,0.220698,0.104105,0.572129,0.760577,0.515349,0.781009,0.0962284,0.703498,0.291881,0.0556907,0.18652,0.390392,0.663057,0.8376,0.0917127,0.110473,0.819731,0.133611,0.644083,0.20963,0.445512,0.191047,0.492212,0.0323563,0.515321,0.639566,0.0914407,0.121266,0.686032,0.434228,0.549847,0.568882,0.0554433,0.590881,0.50526,0.798138,0.315435,0.817177,0.781758,0.897617,0.86613,0.63615,0.643099,0.772563,0.27047,0.829145,0.502568,0.755274,0.770928,0.617634,0.30636,0.553919,0.0513232,0.816432,0.275767,0.315419,0.125861,0.73209,0.981762,0.212473,0.835651,0.0727636,0.323446,0.727111,0.338352,0.650885,0.986387,0.775329,0.526074,0.79278,0.434524,0.731056,0.793043,0.451454,0.67251,0.739911,0.974723,0.0129312,0.628972,0.92485,0.746553,0.996024,0.649255,0.225838,0.237331,0.510089,0.287962,0.567928,0.0942622,0.264233,0.941161,0.873822,0.729675,0.210292,0.678189,0.204408,0.994949,0.268841,0.161126,0.253841,0.243446,0.31026,0.599153,0.710136,0.426265,0.883184,0.310208,0.595641,0.181212,0.401107,0.777979,0.628138,0.780188,0.266526,0.790322,0.181583,0.206738,0.944569,0.777051,0.197323,0.793005,0.842931,0.201634,0.440512,0.702812,0.35194,0.991026,0.328349,0.0450473,0.399437,0.362549,0.073626,0.473244,0.485251,0.103085,0.990791,0.0233607,0.539525,0.518785,0.0885336,0.151618,0.187547,0.18178,0.522132,0.908331,0.806992,0.717723,0.414048,0.421989,0.606094,0.340493,0.174448,0.193154,0.611911,0.147788,0.461492,0.794816,0.192155,0.623291,0.180729,0.140081,0.9907,0.93021,0.0559094,0.421136,0.796161,0.730543,0.149207,0.191637,0.151009,0.305807,0.420154,0.600653,0.235108,0.867711,0.958355,0.80547,0.206505,0.200757,0.75201,0.593395,0.275521,0.467875,0.747045,0.189878,0.339493,0.280314,0.428246,0.295156,0.108239,0.175448,0.337977,0.601038,0.639054,0.576624,0.274668,0.835801,0.114101,0.125473,0.334784,0.911843,0.616504,0.00736797,0.214257,0.929216,0.567893,0.82245,0.579138,0.407706,0.131476,0.135118,0.605739,0.707016,0.578017,0.249059,0.0241085,0.882144,0.958734,0.819042,0.210738,0.0467113,0.445723,0.409692,0.764154,0.651011,0.747779,0.154647,0.130294,0.603586,0.518837,0.725742,0.898675,0.914673,0.0709034,0.723252,0.726324,0.0384948,0.537676,0.166819,0.000424385,0.206413,0.73249,0.471125,0.302262,0.715004,0.925749,0.0524502,0.0815784,0.768098,0.0794956,0.170514,0.774943,0.208997,0.45667,0.197595,0.978572,0.543505,0.492176,0.557658,0.621144,0.393311,0.904392,0.0743339,0.959709,0.740064,0.590385,0.194488,0.809608,0.174034,0.355343,0.100195,0.46737,0.231992,0.48381,0.1813,0.381452,0.00218141,0.596288,0.204793,0.845524,0.818391,0.998156,0.516218,0.406691,0.507406,0.476622,0.994401,0.708478,0.669341,0.144394,0.0337474,0.580384,0.667996,0.853981,0.487493,0.514454,0.344084,0.965349,0.185322,0.150993,0.167321,0.46301,0.401641,0.879449,0.838722,0.66631,0.487848,0.490047,0.911907,0.520991,0.0533192,0.0111202,0.215288,0.306205,0.438016,0.894526,0.481576,0.233279,0.590355,0.262174,0.960194,0.840162,0.913597,0.267617,0.266034,0.174262,0.627788,0.767751,0.344327,0.20243,0.490734,0.494462,0.44758,0.199838,0.355853,0.991588,0.806117,0.959177,0.00804377,0.341637,0.666544,0.0260357,0.457558,0.887603,0.706146,0.749748,0.591572,0.885421,0.931125,0.930296,0.835089,0.307738,0.91766,0.292158,0.110952,0.975491,0.802064,0.355368,0.189788,0.975109,0.725796,0.825753,0.153544,0.0695444,0.944855,0.761157,0.224022,0.443229,0.96959,0.0502406,0.602393,0.811739,0.744915,0.49093,0.0322046,0.49215,0.0992184,0.0421982,0.320378,0.300085,0.0338602,0.696701,0.651981,0.169494,0.677313,0.958696,0.554414,0.327771,0.729064,0.662957,0.153241,0.526643,0.146944,0.905727,0.840981,0.305547,0.510226,0.396878,0.873545,0.922149,0.722441,0.779887,0.511056,0.344923,0.158898,0.468232,0.68765,0.77876,0.415759,0.574054,0.673334,0.306166,0.701184,0.872021,0.410789,0.15232,0.0504599,0.748337,0.539399,0.0773416,0.983946,0.331825,0.0742785,0.443371,0.10713,0.963409,0.218058,0.268545,0.67943,0.323349,0.902122,0.0866779,0.225788,0.935787,0.989521,0.556091,0.576191,0.146952,0.109548,0.299264,0.830953,0.396558,0.508079,0.431281,0.248719,0.712302,0.470269,0.571973,0.392289,0.847298,0.913967,0.0777844,0.206775,0.237439,0.542688,0.94477,0.891296,0.544829,0.148654,0.110051,0.120732,0.236185,0.045466,0.390975,0.869905,0.402102,0.602368,0.112366,0.926724,0.844905,0.997284,0.824698,0.382065,0.165921,0.29066,0.646827,0.810102,0.166878,0.0539237,0.607233,0.581721,0.124625,0.476082,0.361072,0.480755,0.667918,0.709179,0.47918,0.161305,0.856023,0.376677,0.846106,0.83351,0.769764,0.0652368,0.538041,0.311056,0.517948,0.332116,0.979345,0.599962,0.922954,0.0803445,0.431631,0.229603,0.923599,0.198111,0.270925,0.722182,0.523692,0.992985,0.267161,0.236138,0.286481,0.693863,0.762402,0.496995,0.919346,0.00221765,0.583035,0.803232,0.861227,0.579385,0.302164,0.448131,0.325928,0.978082,0.0227094,0.526469,0.0820793,0.620608,0.676933,0.573628,0.752189,0.241053,0.945054,0.236314,0.310172,0.92428,0.203604,0.701831,0.615494,0.918157,0.748233,0.973378,0.88691,0.481213,0.760499,0.861403,0.919675,0.926545,0.168708,0.698366,0.351849,0.606923,0.572353,0.618018,0.11086,0.599307,0.769288,0.365157,0.041173,0.252827,0.954228,0.919128,0.591727,0.761875,0.785791,0.151139,0.545904,0.279121,0.7192,0.649887,0.331216,0.86228,0.751498,0.386654,0.48835,0.363149,0.131356,0.564301,0.150392,0.121459,0.298877,0.306514,0.229344,0.727878,0.0943612,0.925934,0.263357,0.754604,0.803845,0.00958496,0.0830576,0.313517,0.493338,0.810834,0.124647,0.840493,0.93783,0.394297,0.804839,0.373456,0.719636,0.0996066,0.619867,0.854503,0.67139,0.439091,0.279767,0.0677041,0.389512,0.367537,0.275688,0.599986,0.721735,0.63025,0.379555,0.753403,0.503969,0.949585,0.344394,0.89476,0.460727,0.494639,0.728152,0.00811815,0.834524,0.270692,0.487303,0.0560208,0.445873,0.758699,0.571868,0.0897052,0.198244,0.261088,0.0778549,0.628848,0.972306,0.0078451,0.454432,0.814298,0.124986,0.778527,0.0449989,0.959506,0.127981,0.121507,0.00622708,0.420268,0.999556,0.105166,0.184875,0.170866,0.970908,0.0688405,0.361375,0.458205,0.884961,0.835959,0.824818,0.407486,0.462381,0.378267,0.110559,0.162119,0.719327,0.782292,0.873596,0.56197,0.937904,0.114243,0.73163,0.425641,0.0691195,0.0326055,0.589125,0.380508,0.479093,0.203459,0.646328,0.0596378,0.352326,0.918229,0.758227,0.590878,0.528754,0.508832,0.0926225,0.808722,0.740804,0.325728,0.209058,0.64082,0.868587,0.462675,0.960372,0.277334,0.575085,0.692711,0.396883,0.704436,0.504541,0.375457,0.563697,0.272992,0.0430833,0.16514,0.569388,0.203915,0.976876,0.466411,0.277357,0.181681,0.852513,0.612848,0.119282,0.383412,0.250212,0.415365,0.62216,0.753091,0.428914,0.619192,0.968544,0.54416,0.264465,0.385376,|0.115756,0.665016,0.626948,0.603737,0.956543,0.900038,0.872758,0.548257,0.356232,0.213178,0.61772,0.605317,0.0904047,0.770212,0.245407,0.773555,0.482758,0.39965,0.654624,0.33523,0.323742,0.249788,0.0844964,0.768408,0.788596,0.318778,0.744607,0.0275429,0.77468,0.82333,0.210942,0.555487,0.901608,0.3768,0.860165,0.574334,0.546744,0.598051,0.468628,0.380778,0.162678,0.723148,0.763063,0.712004,0.91089,0.16316,0.459985,0.306315,0.692179,0.315441,0.858514,0.0856357,0.00256222,0.367625,0.237486,0.801341,0.730534,0.876103,0.262865,0.0256202,0.803771,0.855667,0.920874,0.031344,0.0593211,0.396412,0.59276,0.566923,0.192892,0.576133,0.417938,0.0647568,0.470073,0.290254,0.447573,0.986915,0.423157,0.717411,0.800367,0.85177,0.323504,0.370063,0.515303,0.249749,0.851775,0.443895,0.20065,0.092553,0.989207,0.970552,0.306714,0.710656,0.390099,0.323501,0.239872,0.575615,0.181299,0.721531,0.289503,0.768966,0.791896,0.621174,0.328523,0.679887,0.695794,0.646888,0.87079,0.529719,0.24178,0.0561009,0.430362,0.11077,0.668599,0.813449,0.0856231,0.877374,0.799517,0.443241,0.798144,0.426252,0.341293,0.0227968,0.679545,0.716456,0.13905,0.789176,0.760691,0.360057,0.223607,0.346878,0.532574,0.869342,0.281872,0.732486,0.821064,0.973817,0.436274,0.709569,0.937547,0.878549,0.202347,0.777535,0.721108,0.595892,0.142917,0.75392,0.404282,0.886728,0.568057,0.898853,0.249505,0.0292712,0.278248,0.350314,0.869933,0.378256,0.75057,0.95977,0.600554,0.127931,0.886873,0.112993,0.845334,0.141143,0.492037,0.609407,0.832185,0.484394,0.943158,0.17995,0.951829,0.77868,0.711478,0.177207,0.853941,0.528273,0.266203,0.335479,0.0632694,0.865698,0.335971,0.918625,0.75459,0.678978,0.793793,0.427771,0.822025,0.688929,0.834704,0.182355,0.898849,0.418105,0.953595,0.879792,0.689498,0.479011,0.424122,0.364832,0.469194,0.863687,0.761848,0.095251,0.122269,0.854179,0.334139,0.546343,0.701403,0.180679,0.881648,0.298192,0.00558585,0.39199,0.241467,0.176538,0.650128,0.698585,0.35713,0.996285,0.378741,0.953126,0.392339,0.812934,0.18734,0.291405,0.541619,0.328999,0.86424,0.846228,0.180635,0.762065,0.778819,0.958121,0.947376,0.473525,0.46641,0.635872,0.955199,0.59698,0.317031,0.685567,0.445792,0.222116,0.789373,0.354386,0.739281,0.0712629,0.560445,0.470092,0.853274,0.394561,0.384551,0.273495,0.722589,0.784655,0.262593,0.411332,0.0860785,0.908691,0.128428,0.745902,0.981755,0.468391,0.417707,0.318675,0.823742,0.794957,0.795886,0.85946,0.836842,0.0747934,0.722975,0.0508918,0.548905,0.215931,0.0628639,0.723974,0.568385,0.354719,0.871302,0.978932,0.150129,0.136381,0.0245944,0.577489,0.136305,0.352283,0.521597,0.33923,0.185686,0.408204,0.0574176,0.0662769,0.455147,0.823091,0.34111,0.957813,0.275415,0.305902,0.793038,0.910624,0.214019,0.426892,0.35724,0.674343,0.0905803,0.42232,0.364803,0.0107667,0.986012,0.00352317,0.601903,0.14217,0.157413,0.346145,0.256741,0.157033,0.17283,0.936962,0.82263,0.581966,0.199779,0.148298,0.438382,0.896706,0.15869,0.096546,0.749262,0.749357,0.566913,0.64302,0.111158,0.993861,0.921585,0.66704,0.997967,0.719872,0.99221,0.322272,0.0423285,0.440448,0.164226,0.126419,0.87878,0.25521,0.385833,0.0127891,0.418566,0.78368,0.889493,0.445139,0.974091,0.0183348,0.366248,0.430683,0.787722,0.657867,0.682958,0.192648,0.340264,0.811636,0.0629405,0.806635,0.644563,0.40552,0.119742,0.499267,0.476742,0.484091,0.230822,0.202338,0.746035,0.159471,0.0525493,0.121625,0.59885,0.572845,0.0277629,0.261055,0.16626,0.733377,0.0622655,0.0737489,0.469597,0.126096,0.801976,0.622486,0.592785,0.563035,0.0292444,0.624627,0.649163,0.729529,0.413431,0.861852,0.622342,0.348552,0.281344,0.978807,0.0767474,0.148261,0.596464,0.420232,0.0360935,0.073986,0.254613,0.263779,0.838974,0.740505,0.286507,0.84218,0.443296,0.928478,0.370842,0.827221,0.818456,0.556175,0.442608,0.696934,0.727683,0.844566,0.209754,0.465114,0.487045,0.381539,0.846646,0.931031,0.667719,0.342166,0.360275,0.742619,0.0446932,0.496008,0.1539,0.261828,0.53559,0.377589,0.787045,0.739422,0.125156,0.590127,0.646425,0.24561,0.649261,0.0877133,0.442733,0.144262,0.798076,0.0235115,0.129206,0.571459,0.223041,0.557606,0.732776,0.744128,0.846381,0.695105,0.399121,0.207925,0.714919,0.875655,0.458147,0.491915,0.192895,0.0994177,0.288432,0.164194,0.201823,0.159072,0.808299,0.75865,0.236218,0.501004,0.335853,0.604458,0.363884,0.93588,0.93962,0.0204595,0.715376,0.439222,0.271465,0.157732,0.404524,0.0744277,0.308574,0.410446,0.0804986,0.950602,0.963612,0.29468,0.483431,0.3985,0.253234,0.53045,0.97001,0.521289,0.577769,0.141817,0.959582,0.0564643,0.837465,0.538474,0.550121,0.527355,0.489601,0.589414,0.331584,0.634586,0.170492,0.851845,0.725923,0.42371,0.408801,0.575168,0.82563,0.993254,0.535564,0.373462,0.890135,0.883956,0.519906,0.77332,0.0373484,0.51339,0.342287,0.73647,0.860332,0.85402,0.263129,0.510767,0.62311,0.517847,0.779904,0.00218296,0.237579,0.524283,0.293307,0.748645,0.519197,0.768065,0.664798,0.10398,0.582071,0.425119,0.426612,0.938246,0.943304,0.921678,0.508228,0.0390881,0.857177,0.324786,0.265632,0.34425,0.778276,0.995374,0.450883,0.42209,0.793582,0.158622,0.48377,0.777513,0.624481,0.456194,0.547886,0.629042,0.85077,0.459765,0.942497,0.0176519,0.562882,0.903323,0.773066,0.246874,0.589384,0.0961086,0.410508,0.529427,0.478732,0.530176,0.502632,0.215103,0.780803,0.358042,0.925247,0.215237,0.367144,0.27293,0.341258,0.724824,0.919948,0.0991735,0.0731164,0.168596,0.438153,0.6766,0.142304,0.336125,0.721007,0.973783,0.631753,0.0458333,0.683587,0.898651,0.831777,0.400202,0.545003,0.509737,0.817518,0.545169,0.950464,0.657941,0.336296,0.652147,0.764402,0.901296,0.769201,0.0426599,0.802243,0.297098,0.748677,0.543232,0.853416,0.959308,0.871314,0.649717,0.343827,0.779624,0.875766,0.0421343,0.108706,0.640578,0.705358,0.885396,0.409223,0.225423,0.350771,0.636635,0.369986,0.747237,0.108025,0.830026,0.162859,0.717622,0.645718,0.815699,0.288314,0.327174,0.144961,0.0743291,0.62071,0.054942,0.28782,0.0454127,0.801309,0.468624,0.333849,0.0188684,0.182925,0.613432,0.0867483,0.908507,0.00803334,0.339862,0.842317,0.654093,0.0555238,0.207598,0.646464,0.122434,0.898781,0.685052,0.00605297,0.522855,0.100197,0.486654,0.868393,0.102746,0.0828928,0.556423,0.620219,0.918949,0.150324,0.869204,0.619719,0.518748,0.10017,0.333034,0.631222,0.757422,0.122837,0.699526,0.313013,0.960162,0.855379,0.185285,0.185194,0.38761,0.353635,0.851934,0.940294,0.500109,0.272239,0.525429,0.751455,0.875703,0.538522,0.928323,0.305839,0.793329,0.496336,0.171182,0.739128,0.5003,0.0569904,0.620894,0.665239,0.328346,0.604592,0.715716,0.718813,0.0616263,0.989289,0.581699,0.367171,0.862005,0.287231,0.832431,0.421309,0.015795,0.744239,0.0781505,0.860891,0.953406,0.527508,0.586903,0.713306,0.799902,0.691179,0.381504,0.766081,0.91888,0.171758,0.0662065,0.0653229,0.940011,0.785116,0.0843631,0.151518,0.526001,0.3272,0.707255,0.821151,0.810689,0.338035,0.0307502,0.431953,0.390593,0.588041,0.315843,0.601399,0.250807,0.618831,0.264657,0.0303103,0.226725,0.328207,0.578358,0.909743,0.177016,0.4872,0.535923,0.536169,0.502252,0.201537,0.129244,0.678066,0.580151,0.305955,0.719048,0.702327,0.677292,0.679588,0.704115,0.266411,0.882479,0.454275,0.950504,0.264506,0.986498,0.582261,0.480888,0.550978,0.548918,0.601447,0.0232117,0.167998,0.455459,0.0117264,0.756388,0.226541,0.213331,0.0531782,0.892382,0.463039,0.188626,0.992567,0.826535,0.584789,0.672956,0.457138,0.460718,0.971267,0.0216569,0.0581067,0.718428,0.214644,0.3095,0.305728,0.17156,0.909841,0.15376,0.10387,0.444929,0.483647,0.333455,0.423593,0.0254999,0.646264,0.641112,0.841433,0.620337,0.760969,0.269551,0.370593,0.384256,0.133712,0.964266,0.368887,0.399172,0.716483,0.181324,0.919837,0.689004,0.447391,0.121442,0.810321,0.869341,0.912828,0.884409,0.0882683,0.189475,0.373396,0.829224,0.893709,0.754907,0.14658,0.341031,0.895072,0.76858,0.55595,0.535105,0.166013,0.310883,0.849714,0.939739,0.806313,0.527467,0.413196,0.852095,0.866007,0.611794,0.658142,0.283165,0.56686,0.690666,0.295938,0.409609,0.877055,0.611652,0.950065,0.46151,0.0577062,0.148628,0.666945,0.934991,0.0448663,0.321421,0.93391,0.963795,0.872679,0.857423,0.53095,0.462958,0.0492703,0.383101,0.0857213,0.442302,0.996235,0.516803,0.0945424,0.998064,0.706336,0.217136,0.426777,0.915796,0.153939,0.897106,0.211764,0.898733,0.0174915,0.811343,0.524088,0.929505,0.621951,0.890919,0.416616,0.0903545,0.922331,0.245377,0.256407,0.970233,0.154972,0.683279,0.622597,0.0653536,0.932822,0.130681,0.00614315,0.634338,0.582989,0.606327,0.393898,0.183699,0.0804424,0.18423,0.837221,0.259991,0.562581,0.364181,0.999894,0.16212,0.159167,0.3832,0.777995,0.518385,0.895589,0.211904,0.853464,0.50963,0.000270844,0.595592,0.852267,0.79913,0.604564,0.250093,0.411348,0.764275,0.0494814,0.461432,0.865556,0.500174,0.758849,0.558079,0.50812,0.15411,0.602575,0.735006,0.773696,0.938232,0.249361,0.0547121,0.947213,0.162991,0.479557,0.630759,0.716714,0.623384,0.399915,0.168212,0.913842,0.265106,0.215072,0.676871,0.663847,0.990775,0.555637,0.744352,0.339738,0.618808,0.292679,0.205543,0.0180662,0.807741,0.582934,0.932459,0.232251,0.516041,0.993757,0.574401,|0.681062,0.792928,0.235277,0.598433,0.268877,0.758191,0.982759,0.329626,0.503071,0.308331,0.436824,0.911831,0.820653,0.689206,0.994388,0.328381,0.818944,0.354711,0.688492,0.510926,0.119198,0.36509,0.61044,0.143576,0.767681,0.621189,0.743044,0.360006,0.445896,0.493343,0.430703,0.995219,0.625197,0.167988,0.399612,0.654079,0.663493,0.220824,0.0781254,0.0640102,0.60045,0.270591,0.819471,0.836659,0.540056,0.892616,0.714339,0.708149,0.918618,0.243804,0.373346,0.987993,0.354681,0.935115,0.616022,0.901278,0.552115,0.0916502,0.423412,0.629717,0.799927,0.349299,0.736721,0.915462,0.397208,0.467838,0.409297,0.707539,0.0655046,0.331371,0.0799599,0.173196,0.591375,0.804585,0.542471,0.755949,0.0586012,0.030686,0.953652,0.441217,0.101369,0.725027,0.485807,0.0937968,0.729551,0.702197,0.769307,0.0402281,0.946673,0.360552,0.489455,0.351879,0.546922,0.90192,0.403111,0.989256,0.0196445,0.0736405,0.059027,0.124241,0.657886,0.702997,0.657351,0.984165,0.932011,0.495496,0.518966,0.643162,0.452675,0.238415,0.28017,0.186524,0.0690864,0.090225,0.795769,0.46705,0.194619,0.452914,0.115598,0.757914,0.96962,0.363189,0.787165,0.27375,0.347891,0.77728,0.75978,0.319299,0.66189,0.0294671,0.303918,0.232972,0.312679,0.989083,0.367832,0.906076,0.25981,0.286942,0.562722,0.687284,0.206579,0.631705,0.341393,0.752429,0.0359398,0.69934,0.434687,0.186157,0.830933,0.197619,0.372743,0.843613,0.279642,0.761943,0.999702,0.0134823,0.111704,0.649854,0.569542,0.885295,0.515142,0.390408,0.935873,0.0626731,0.461829,0.66415,0.634449,0.224782,0.51706,0.666333,0.932254,0.421276,0.61075,0.454221,0.0121652,0.620672,0.96897,0.593658,0.689915,0.382535,0.0988247,0.167671,0.733163,0.904271,0.830251,0.360587,0.115139,0.295088,0.410105,0.854819,0.211325,0.36294,0.833857,0.907035,0.738797,0.38372,0.637175,0.00713849,0.314443,0.0201412,0.623653,0.941807,0.902851,0.666106,0.145098,0.178694,0.00216502,0.920828,0.592017,0.173128,0.91909,0.779153,0.471784,0.372685,0.154602,0.0719315,0.280472,0.876074,0.264309,0.255149,0.879915,0.00589675,0.381024,0.380966,0.806977,0.838723,0.943319,0.896586,0.58287,0.361514,0.705228,0.0257998,0.16592,0.319124,0.800473,0.962946,0.641301,0.663889,0.546353,0.62564,0.099124,0.333959,0.429763,0.133692,0.631812,0.298958,0.440022,0.608126,0.363085,0.461343,0.512596,0.0420266,0.255687,0.0726322,0.815182,0.836776,0.380564,0.137093,0.340718,0.905642,0.85459,0.632274,0.939723,0.663462,0.0166247,0.219902,0.205219,0.402925,0.383663,0.851961,0.671174,0.497591,0.897759,0.126629,0.221015,0.839201,0.300433,0.807472,0.946556,0.957545,0.325383,0.723016,0.0539126,0.407509,0.557064,0.416513,0.711462,0.49413,0.945782,0.727369,0.443577,0.1418,0.593183,0.905109,0.703197,0.218044,0.494079,0.0704837,0.800358,0.894463,0.202277,0.955287,0.323008,0.540265,0.809481,0.0395055,0.181961,0.709918,0.224762,0.0430056,0.206343,0.875136,0.677376,0.973676,0.28682,0.804535,0.0316637,0.57411,0.362368,0.15568,0.979124,0.966399,0.683333,0.922081,0.257225,0.726333,0.181654,0.780906,0.0434206,0.747085,0.834898,0.241041,0.867046,0.454852,0.745257,0.178884,0.233606,0.843215,0.131521,0.45651,0.3764,0.91248,0.841047,0.102907,0.361883,0.759272,0.396024,0.83949,0.422105,0.641175,0.587704,0.651551,0.047326,0.589096,0.845972,0.482174,0.370845,0.861683,0.755225,0.500601,0.485566,0.00526565,0.300508,0.616668,0.884896,0.645185,0.0322824,0.0803084,0.531034,0.483723,0.773207,0.775302,0.662952,0.157372,0.659133,0.823482,0.182806,0.871825,0.86115,0.00262278,0.77004,0.711444,0.296319,0.0646018,0.855124,0.296691,0.621417,0.174054,0.89761,0.313525,0.101758,0.740651,0.835316,0.940777,0.970979,0.250568,0.430613,0.402067,0.500798,0.890264,0.672834,0.864614,0.503081,0.0349787,0.398736,0.911714,0.319492,0.478611,0.673891,0.685141,0.661692,0.84322,0.331379,0.582329,0.529105,0.0603474,0.398752,0.776227,0.36438,0.559722,0.95664,0.771633,0.444214,0.764835,0.0940188,0.181381,0.177159,0.310259,0.97224,0.149415,0.459674,0.165428,0.950383,0.834806,0.475615,0.249015,0.358716,0.434728,0.0786453,0.424811,0.85057,0.612972,0.696843,0.392039,0.252541,0.804952,0.839351,0.490151,0.784391,0.248778,0.652987,0.307649,0.401569,0.317793,0.96917,0.900055,0.016418,0.62137,0.447054,0.114091,0.199543,0.428323,0.189628,0.0487688,0.665588,0.348307,0.291801,0.545334,0.959622,0.69624,0.339353,0.132841,0.597084,0.5056,0.0666583,0.798804,0.116478,0.284118,0.364973,0.140932,0.929398,0.701643,0.511584,0.944758,0.818985,0.365841,0.467071,0.0813891,0.566346,0.768135,0.680925,0.282043,0.706953,0.556794,0.0629392,0.844931,0.0146113,0.279495,0.594137,0.760219,0.951567,0.14458,0.493521,0.801265,0.547001,0.791302,0.159375,0.895475,0.189454,0.441094,0.683776,0.412427,0.397676,0.393167,0.604522,0.897184,0.41003,0.00374478,0.925694,0.0183752,0.269551,0.561583,0.777217,0.978001,0.216246,0.943649,0.39705,0.285319,0.644986,0.295201,0.394459,0.749561,0.650654,0.669332,0.981612,0.628124,0.978689,0.459296,0.345141,0.0903526,0.873155,0.975407,0.413419,0.92505,0.890365,0.301235,0.0877748,0.611432,0.044448,0.201949,0.887107,0.105002,0.501217,0.552754,0.255236,0.611359,0.8846,0.366994,0.464533,0.240112,0.515039,0.801459,0.400529,0.943811,0.637055,0.980231,0.685101,0.520749,0.37846,0.263211,0.241343,0.643102,0.592133,0.0586537,0.870705,0.278307,0.702973,0.368019,0.968586,0.0418268,0.783535,0.806149,0.728605,0.352907,0.106692,0.399474,0.0484207,0.0141492,0.719042,0.905136,0.947629,0.437935,0.500848,0.907666,0.802071,0.165753,0.166096,0.964735,0.363093,0.678985,0.119934,0.430822,0.428343,0.323621,0.0396165,0.532642,0.368892,0.165546,0.180529,0.0916377,0.82281,0.775919,0.485454,0.304026,0.173697,0.816183,0.419863,0.114534,0.555562,0.862011,0.818328,0.023511,0.765555,0.375708,0.77133,0.5661,0.855291,0.978984,0.754845,0.19398,0.645242,0.712386,0.592536,0.684301,0.968077,0.781157,0.0932189,0.202208,0.61429,0.871732,0.119825,0.152389,0.014617,0.709653,0.651949,0.418518,0.645703,0.617841,0.00264466,0.932012,0.629233,0.623703,0.939303,0.802695,0.451655,0.537568,0.412987,0.0814576,0.0927295,0.349067,0.58958,0.524404,0.0105058,0.822247,0.168656,0.0840861,0.908217,0.232934,0.220271,0.383439,0.445251,0.780588,0.250134,0.890421,0.0992931,0.380909,0.722243,0.304385,0.553404,0.838817,0.965627,0.239079,0.469743,0.175632,0.0182757,0.765722,0.243878,0.116399,0.58621,0.533342,0.268261,0.611532,0.157935,0.319879,0.609258,0.0628403,0.146446,0.819986,0.804952,0.352852,0.408565,0.302319,0.680824,0.493077,0.632647,0.919709,0.815909,0.941425,0.727135,0.674638,0.769356,0.869212,0.985143,0.801431,0.555999,0.874871,0.969631,0.457854,0.254019,0.622148,0.478958,0.394146,0.900873,0.0153899,0.814373,0.0561577,0.94049,0.319949,0.535903,0.500979,0.641718,0.125938,0.0787158,0.286182,0.889499,0.344586,0.259882,0.942169,0.13444,0.144631,0.348696,0.511869,0.764618,0.0502779,0.501601,0.899331,0.00713468,0.661222,0.0496479,0.441518,0.885083,0.53802,0.905668,0.217696,0.865598,0.771649,0.978449,0.398626,0.302461,0.578942,0.816269,0.250904,0.598742,0.831432,0.212083,0.373574,0.222704,0.395625,0.222579,0.616342,0.686039,0.155334,0.108575,0.0473732,0.504553,0.667292,0.698004,0.404888,0.402944,0.756101,0.917634,0.332017,0.40604,0.204542,0.000203133,0.777895,0.148358,0.463705,0.207249,0.497903,0.531607,0.373816,0.725146,0.946693,0.639384,0.454185,0.439018,0.756254,0.824044,0.269268,0.971878,0.325059,0.784646,0.0401002,0.81527,0.310225,0.720397,0.452561,0.155187,0.732064,0.7983,0.428559,0.604505,0.0160346,0.511748,0.668621,0.741215,0.368671,0.888217,0.847196,0.977077,0.266192,0.888451,0.231527,0.606689,0.391949,0.646208,0.0650675,0.140411,0.00945425,0.0569974,0.163349,0.800296,0.177637,0.549042,0.283018,0.445536,0.891573,0.738777,0.931629,0.211929,0.0450308,0.309207,0.0249904,0.461145,0.450056,0.434517,0.44289,0.0534404,0.907907,0.365518,0.112864,0.782858,0.374053,0.907109,0.206383,0.615399,0.609503,0.258237,0.499783,0.375267,0.304795,0.0435438,0.827485,0.833162,0.459309,0.974593,0.019086,0.668001,0.0299051,0.467552,0.665452,0.182672,0.235942,0.098794,0.0324748,0.530249,0.394388,0.16524,0.0133672,0.740437,0.721918,0.67594,0.238841,0.844009,0.185317,0.325807,0.134748,0.57997,0.0583323,0.513782,0.43904,0.537168,0.965013,0.706796,0.48645,0.0495265,0.425355,0.869698,0.512109,0.921897,0.581901,0.00382185,0.203753,0.229725,0.440548,0.504479,0.0119146,0.175587,0.598996,0.869693,0.0590482,0.00850368,0.738415,0.688639,0.40302,0.554553,0.233146,0.639572,0.722383,0.282398,0.194965,0.989262,0.966839,0.441562,0.281378,0.90286,0.780544,0.616601,0.642886,0.554285,0.48632,0.286808,0.714078,0.308904,0.33761,0.4292,0.641078,0.738722,0.627818,0.245814,0.318483,0.0334626,0.00622785,0.596458,0.66303,0.316573,0.782677,0.591407,0.151558,0.597564,0.66734,0.745695,0.523425,0.339507,0.455386,0.260434,0.813685,0.721281,0.590598,0.618713,0.225878,0.798882,0.262751,0.212028,0.512875,0.652731,0.258051,0.48577,0.687962,0.320291,0.310286,0.397938,0.653578,0.360016,0.225299,0.8285,0.633692,0.268495,0.549641,0.623895,0.495854,0.429262,0.511687,0.703863,0.803611,0.781223,0.705535,0.941526,0.44135,0.857635,0.284078,0.273995,0.339747,0.344563,0.0265747,0.943928,0.165482,0.625114,0.710107,|0.4508,0.610058,0.96477,0.95347,0.0373253,0.885183,0.0916135,0.670671,0.540767,0.910705,0.182891,0.699862,0.338287,0.285116,0.990246,0.286993,0.221037,0.473802,0.921961,0.961218,0.764894,0.0576363,0.586706,0.241313,0.365802,0.339648,0.197833,0.249746,0.555949,0.609535,0.900721,0.452785,0.412724,0.647854,0.265326,0.0882844,0.0423769,0.656557,0.493381,0.312743,0.841129,0.36309,0.176837,0.416879,0.000615418,0.417971,0.804577,0.41566,0.363349,0.399209,0.410231,0.847967,0.752417,0.920282,0.472779,0.101247,0.34372,0.623164,0.245067,0.307857,0.367832,0.516401,0.301646,0.998996,0.272244,0.0761662,0.579679,0.98306,0.555877,0.47561,0.94292,0.417271,0.794112,0.668933,0.225659,0.00317091,0.778997,0.0896377,0.727911,0.0358335,0.0242524,0.92101,0.844609,0.414609,0.294972,0.491544,0.768876,0.690354,0.637914,0.430927,0.987789,0.158711,0.304987,0.809194,0.668051,0.910422,0.556428,0.186869,0.648654,0.43596,0.299073,0.958428,0.0987339,0.0909055,0.349175,0.861304,0.193963,0.392039,0.602515,0.575316,0.463859,0.961923,0.562949,0.302975,0.558229,0.449716,0.304825,0.886095,0.41494,0.168562,0.485866,0.0372171,0.214927,0.917226,0.834534,0.639363,0.632798,0.819596,0.43856,0.325559,0.503149,0.139756,0.895825,0.632293,0.855559,0.941656,0.921252,0.907765,0.75152,0.95327,0.969343,0.151996,0.0756068,0.288451,0.230036,0.818118,0.274249,0.467314,0.112199,0.159716,0.694718,0.668175,0.459741,0.715157,0.79855,0.132067,0.184339,0.311129,0.247958,0.314582,0.772111,0.206534,0.439481,0.919104,0.154757,0.932577,0.392346,0.0788333,0.359044,0.694187,0.169244,0.711859,0.0902874,0.146358,0.276022,0.091108,0.806253,0.110129,0.901788,0.202949,0.995066,0.935763,0.0602067,0.850684,0.407036,0.809138,0.365435,0.620502,0.0789952,0.68093,0.773249,0.722453,0.128557,0.919177,0.711001,0.573599,0.158558,0.546271,0.491382,0.108549,0.942584,0.589467,0.715372,0.890623,0.0745564,0.490417,0.750264,0.911108,0.87038,0.514998,0.951476,0.377281,0.445103,0.270782,0.0277198,0.594144,0.687082,0.0198722,0.429651,0.723919,0.141874,0.296433,0.882294,0.822404,0.668398,0.0542399,0.645302,0.556205,0.471883,0.832516,0.772027,0.489981,0.818198,0.272747,0.830661,0.0282379,0.695837,0.541003,0.549885,0.403697,0.175907,0.354095,0.563524,0.572737,0.7922,0.648072,0.599118,0.748077,0.0777371,0.316233,0.163187,0.325025,0.922794,0.37723,0.954521,0.295763,0.0332767,0.730984,0.252318,0.406899,0.794599,0.00658619,0.589897,0.971833,0.266846,0.510333,0.0114253,0.768618,0.0623879,0.200719,0.594268,0.0424115,0.488498,0.355039,0.387304,0.103065,0.0319479,0.0287997,0.166261,0.272272,0.274338,0.205861,0.0713441,0.191027,0.33528,0.657209,0.431524,0.528561,0.0285561,0.882724,0.60339,0.355219,0.0124449,0.612852,0.0740904,0.314778,0.302254,0.134527,0.301138,0.785257,0.974251,0.601368,0.279861,0.914534,0.878435,0.273653,0.658992,0.652815,0.573322,0.0542698,0.364666,0.581412,0.94462,0.763911,0.897268,0.544075,0.525982,0.693754,0.41493,0.345987,0.0973043,0.476627,0.368242,0.631658,0.133275,0.226847,0.093098,0.182279,0.416477,0.617764,0.350684,0.598788,0.15934,0.643638,0.634101,0.985222,0.338413,0.274824,0.599152,0.711066,0.422769,0.0948286,0.0154012,0.972145,0.308145,0.732718,0.551638,0.109907,0.783115,0.692457,0.190929,0.639183,0.331258,0.802459,0.970846,0.863853,0.000428021,0.660861,0.535659,0.773476,0.671448,0.806664,0.693709,0.333005,0.797891,0.105303,0.399048,0.679222,0.966197,0.40172,0.28903,0.34032,0.738982,0.0615854,0.987829,0.378736,0.376827,0.644337,0.294933,0.89795,0.685506,0.339028,0.638571,0.540581,0.782812,0.95471,0.212114,0.433442,0.344303,0.404503,0.281086,0.0568816,0.353965,0.725461,0.557094,0.248739,0.654416,0.318589,0.99546,0.826242,0.206243,0.232237,0.00285131,0.57003,0.739049,0.184688,0.456097,0.211706,0.446403,0.759955,0.724229,0.383947,0.536252,0.525699,0.81882,0.56349,0.705843,0.233155,0.289306,0.565971,0.124283,0.524724,0.0199046,0.715331,0.873761,0.436311,0.526684,0.616343,0.306912,0.423746,0.912144,0.643994,0.703647,0.525896,0.800141,0.583257,0.574705,0.690043,0.4603,0.997087,0.950461,0.627928,0.630203,0.0633371,0.63202,0.142424,0.880976,0.335976,0.123578,0.567726,0.707991,0.639723,0.566824,0.00907421,0.809745,0.900522,0.279806,0.791334,0.190915,0.743626,0.558631,0.426149,0.0352793,0.161669,0.608058,0.370398,0.352764,0.997123,0.517702,0.766593,0.931752,0.294642,0.095732,0.308823,0.0305702,0.955897,0.615099,0.195216,0.897093,0.160953,0.732729,0.816643,0.218319,0.582254,0.138233,0.820218,0.724044,0.268257,0.0796218,0.292084,0.123213,0.310411,0.0621883,0.0248241,0.493759,0.774178,0.76354,0.837264,0.700555,0.668842,0.981688,0.508292,0.780673,0.572402,0.369605,0.917551,0.447548,0.758634,0.345568,0.421199,0.552265,0.0110013,0.520511,0.736346,0.0438989,0.0362531,0.38015,0.524473,0.771157,0.219944,0.938275,0.0988967,0.551172,0.742407,0.230746,0.444346,0.591583,0.753363,0.810679,0.234225,0.505456,0.261969,0.81904,0.181598,0.287268,0.156863,0.561899,0.445111,0.719511,0.228269,0.755491,0.661798,0.536196,0.635423,0.62408,0.663785,0.683886,0.190116,0.433783,0.908041,0.0307621,0.761978,0.886852,0.128886,0.691901,0.884578,0.876325,0.98306,0.0641648,0.726553,0.985571,0.212638,0.985833,0.890836,0.48495,0.163075,0.52576,0.619276,0.455194,0.833997,0.413594,0.649205,0.337399,0.510167,0.419695,0.0799807,0.0599366,0.208626,0.2311,0.599341,0.78734,0.897293,0.395004,0.724029,0.449045,0.843325,0.346318,0.360759,0.665753,0.688244,0.111808,0.788583,0.843903,0.454578,0.953898,0.042851,0.610316,0.622907,0.166986,0.322826,0.894563,0.904072,0.109236,0.725075,0.981519,0.37131,0.251948,0.315072,0.106414,0.610392,0.944172,0.424685,0.223925,0.708066,0.590238,0.670374,0.879323,0.75589,0.0412623,0.3799,0.213947,0.467551,0.5741,0.265097,0.168088,0.853662,0.0302095,0.643145,0.0706371,0.336832,0.811516,0.69394,0.974812,0.257322,0.830377,0.000270128,0.407565,0.610379,0.830291,0.788487,0.935814,0.550517,0.972063,0.848795,0.799047,0.247028,0.266011,0.0607525,0.487779,0.43007,0.536751,0.501955,0.214,0.485891,0.475145,0.909474,0.106722,0.621155,0.782604,0.514109,0.220587,0.663946,0.602949,0.125144,0.687744,0.0806441,0.45997,0.867905,0.279897,0.831149,0.466334,0.867611,0.486039,0.526103,0.879551,0.867268,0.986445,0.135134,0.935643,0.163834,0.519006,0.65381,0.0737452,0.167003,0.63683,0.849492,0.676136,0.349633,0.937041,0.211298,0.363949,0.287783,0.712995,0.0449266,0.40393,0.922257,0.991875,0.873193,0.241291,0.846513,0.148142,0.9806,0.758497,0.517436,0.685864,0.460683,0.122688,0.419537,0.861796,0.154844,0.726199,0.779815,0.960338,0.333918,0.0156345,0.0879186,0.360193,0.999852,0.000496626,0.961675,0.756714,0.690073,0.239969,0.0400124,0.108297,0.932134,0.480616,0.783721,0.12692,0.846398,0.262166,0.00663364,0.20632,0.302585,0.63351,0.897298,0.843187,0.0450452,0.92869,0.118444,0.12045,0.594313,0.456469,0.440277,0.515585,0.506795,0.644784,0.58518,0.128003,0.517941,0.572628,0.175147,0.634033,0.310006,0.904959,0.937967,0.072126,0.146362,0.255221,0.291247,0.561626,0.205003,0.0276588,0.0270776,0.578751,0.513559,0.158862,0.21093,0.620721,0.279989,0.786553,0.683353,0.548829,0.187107,0.79571,0.814308,0.163033,0.87448,0.170188,0.177487,0.151817,0.748544,0.57518,0.00211072,0.266975,0.0991474,0.0706548,0.706402,0.470088,0.218948,0.114109,0.820696,0.914092,0.133355,0.342597,0.825741,0.574987,0.77793,0.996975,0.877732,0.418641,0.415963,0.496963,0.0997126,0.499367,0.485838,0.612619,0.382052,0.121448,0.0498801,0.214286,0.190574,0.191127,0.0113289,0.844486,0.582901,0.595402,0.205717,0.666466,0.21136,0.378585,0.47652,0.232281,0.24869,0.167761,0.539699,0.179934,0.790958,0.827235,0.362607,0.244718,0.77383,0.246565,0.0347976,0.118017,0.226005,0.0401375,0.255085,0.919448,0.753678,0.180028,0.70204,0.57992,0.359938,0.061487,0.885246,0.858948,0.827927,0.785967,0.251628,0.542477,0.389066,0.87282,0.207898,0.541503,0.201876,0.935666,0.182844,0.922309,0.10832,0.366291,0.974951,0.898753,0.50249,0.8214,0.864705,0.0387433,0.200959,0.00749272,0.111826,0.621276,0.369192,0.280946,0.409139,0.212527,0.877363,0.341864,0.58524,0.339377,0.0183073,0.78381,0.327673,0.132627,0.870497,0.812617,0.814622,0.233428,0.336644,0.48261,0.509634,0.614665,0.558544,0.68913,0.487426,0.878807,0.625684,0.260592,0.643603,0.787648,0.685137,0.784996,0.549508,0.3277,0.386578,0.922359,0.107433,0.659936,0.393266,0.797111,0.290917,0.0060001,0.584706,0.289014,0.13857,0.345713,0.588989,0.32094,0.727207,0.161682,0.402447,0.199924,0.0510662,0.275536,0.694941,0.81412,0.756803,0.667732,0.910466,0.642478,0.367049,0.345368,0.134273,0.638139,0.302621,0.483089,0.824362,0.514154,0.946629,0.243559,0.69309,0.42572,0.367018,0.61726,0.750746,0.277859,0.757994,0.819041,0.176887,0.886878,0.331189,0.884229,0.978641,0.983667,0.00649297,0.448918,0.79536,0.218261,0.235761,0.622796,0.310962,0.665359,0.692551,0.219271,0.016111,0.877534,0.442312,0.9027,0.264228,0.424381,0.910369,0.21311,0.0753105,0.481433,0.812195,0.560977,0.224883,0.848213,0.188861,0.0751995,0.72282,0.92825,0.507339,0.883752,0.738856,0.867368,0.526449,0.0739666,0.378616,0.879294,0.710135,0.514054,0.014834,0.816699,0.0845857,0.127489,0.242009,0.00700039,0.422477,0.104913,0.61664,|0.25375,0.760805,0.351336,0.201699,0.299951,0.648604,0.563356,0.0840964,0.443482,0.845146,0.870053,0.575153,0.096152,0.140353,0.75067,0.716464,0.150082,0.759742,0.235535,0.817189,0.696923,0.333079,0.268353,0.362689,0.500169,0.777337,0.714278,0.517054,0.287709,0.989034,0.481744,0.7748,0.0498559,0.3182,0.193927,0.229566,0.462621,0.898486,0.0636291,0.77263,0.419599,0.969747,0.124309,0.881794,0.948732,0.172431,0.464037,0.592536,0.724131,0.514071,0.768302,0.734172,0.586417,0.597521,0.0164818,0.930995,0.0609896,0.960217,0.483127,0.438315,0.155003,0.174462,0.672501,0.408248,0.714463,0.734398,0.287704,0.0501453,0.448061,0.538276,0.0480242,0.384443,0.731652,0.463287,0.649484,0.949243,0.551748,0.94314,0.420077,0.533967,0.282489,0.883243,0.146829,0.0965207,0.227706,0.526468,0.691809,0.263956,0.949927,0.671981,0.446917,0.0809052,0.0631574,0.251771,0.33389,0.267796,0.559061,0.329473,0.752883,0.346205,0.990226,0.539969,0.511233,0.394577,0.363058,0.866493,0.543243,0.360777,0.252469,0.964735,0.78542,0.719704,0.981174,0.868209,0.991391,0.171513,0.629461,0.965049,0.335748,0.485329,0.664421,0.928788,0.592518,0.575858,0.388451,0.306802,0.95861,0.639719,0.661843,0.351494,0.432725,0.137953,0.602747,0.966582,0.827312,0.871184,0.0321254,0.158905,0.0399085,0.671833,0.696505,0.109064,0.680261,0.189371,0.672581,0.646886,0.262385,0.0859523,0.8481,0.865289,0.207495,0.385555,0.563378,0.143803,0.990678,0.819794,0.374185,0.337877,0.422732,0.821085,0.320111,0.264345,0.551881,0.726295,0.195463,0.462859,0.581223,0.463267,0.398329,0.879528,0.0619916,0.790432,0.155449,0.647075,0.036299,0.665968,0.144913,0.219226,0.405533,0.101032,0.877635,0.635426,0.323996,0.028512,0.680729,0.767064,0.854218,0.0451155,0.00255084,0.358912,0.673743,0.0961322,0.0798024,0.500999,0.172614,0.109411,0.376203,0.29005,0.463608,0.982036,0.565969,0.172251,0.517618,0.272225,0.0369298,0.324542,0.392011,0.685358,0.686298,0.0459094,0.202025,0.203562,0.425579,0.391864,0.592099,0.460725,0.685733,0.162238,0.391523,0.565667,0.0997116,0.81895,0.960172,0.532468,0.721003,0.621624,0.943817,0.657038,0.965684,0.303454,0.421754,0.103005,0.135328,0.629901,0.955803,0.649774,0.977731,0.65665,0.492753,0.71043,0.468868,0.546344,0.561596,0.897817,0.195095,0.657299,0.14297,0.0315817,0.873207,0.298504,0.358808,0.550807,0.696947,0.0223861,0.206228,0.993346,0.0326365,0.0770164,0.214737,0.915025,0.628793,0.0508311,0.0950571,0.395113,0.0406473,0.387952,0.493848,0.0419912,0.341181,0.747269,0.956728,0.104685,0.332171,0.766563,0.898108,0.87749,0.0136624,0.0186492,0.507533,0.781696,0.528657,0.532925,0.637415,0.35359,0.113332,0.41187,0.428018,0.509683,0.573825,0.622314,0.751839,0.72777,0.899241,0.786526,0.213677,0.412371,0.854248,0.691053,0.383709,0.419431,0.37905,0.536468,0.0791436,0.231928,0.414666,0.613979,0.935553,0.287803,0.818495,0.0499606,0.540401,0.318676,0.934484,0.823195,0.996047,0.273069,0.369645,0.38361,0.456392,0.961991,0.740131,0.774034,0.469245,0.895287,0.79204,0.342936,0.0963825,0.020939,0.812764,0.254792,0.305445,0.385813,0.266954,0.155815,0.995085,0.503254,0.565073,0.298147,0.358797,0.425689,0.0507267,0.419739,0.537426,0.743132,0.763772,0.148465,0.19381,0.498464,0.582877,0.572316,0.522607,0.648875,0.744961,0.227932,0.730611,0.757596,0.23107,0.960932,0.978031,0.762377,0.64944,0.945045,0.65023,0.981597,0.462326,0.948354,0.46701,0.34733,0.531003,0.532903,0.419299,0.338998,0.590763,0.865389,0.481586,0.382862,0.195458,0.952815,0.102749,0.786461,0.315256,0.887,0.665098,0.976923,0.167746,0.269506,0.292834,0.171074,0.675838,0.673615,0.577963,0.516536,0.372578,0.493208,0.57677,0.746623,0.101154,0.0194269,0.633471,0.590861,0.0549069,0.967168,0.851298,0.839936,0.224699,0.509286,0.245781,0.488092,0.0485337,0.850617,0.17436,0.571842,0.47153,0.755597,0.431057,0.232743,0.117914,0.928086,0.508631,0.871438,0.698795,0.574812,0.579324,0.923903,0.0351802,0.47049,0.152501,0.648944,0.800792,0.25308,0.993578,0.466124,0.452901,0.977999,0.892501,0.743528,0.274577,0.028777,0.703063,0.474728,0.725475,0.982089,0.898074,0.957191,0.578958,0.211282,0.122864,0.818278,0.598921,0.573168,0.132669,0.917914,0.302865,0.386733,0.527843,0.304835,0.678563,0.384633,0.214339,0.0841119,0.225795,0.60025,0.757559,0.227251,0.645548,0.0119327,0.177539,0.851116,0.693537,0.691014,0.0459407,0.772936,0.0528157,0.596594,0.398151,0.975035,0.856971,0.952903,0.852698,0.175083,0.431127,0.203284,0.938305,0.830716,0.100954,0.956644,0.379234,0.486315,0.484607,0.868216,0.148637,0.550878,0.990562,0.156641,0.719301,0.410675,0.234434,0.709655,0.379678,0.377424,0.512947,0.231218,0.647806,0.362246,0.789769,0.120328,0.813989,0.888663,0.347984,0.371279,0.978393,0.446925,0.230464,0.95735,0.187307,0.847953,0.117849,0.729402,0.786866,0.363582,0.531504,0.291147,0.259663,0.385349,0.940629,0.27264,0.779562,0.760519,0.424047,0.385894,0.364233,0.869453,0.908801,0.792601,0.615857,0.657401,0.314386,0.149612,0.765135,0.693815,0.692579,0.301054,0.115379,0.35263,0.997674,0.177626,0.632322,0.681226,0.249562,0.79752,0.330546,0.815074,0.941892,0.845363,0.739611,0.155212,0.317202,0.902023,0.157151,0.168056,0.695097,0.218212,0.797851,0.863726,0.42659,0.481238,0.642395,0.228781,0.202067,0.733476,0.684441,0.49087,0.19806,0.697847,0.747967,0.282753,0.129365,0.955577,0.0378213,0.919448,0.762766,0.781443,0.774204,0.970753,0.205059,0.90029,0.140884,0.406365,0.374407,0.0710032,0.234007,0.0388583,0.789073,0.500529,0.749911,0.577299,0.204139,0.823277,0.79416,0.393353,0.00266355,0.355625,0.877085,0.591286,0.903445,0.758606,0.312958,0.672773,0.251148,0.306311,0.603058,0.469867,0.730743,0.154613,0.0719775,0.384932,0.672801,0.894906,0.565209,0.345154,0.235598,0.163318,0.0344635,0.706663,0.29436,0.459036,0.776798,0.282623,0.995481,0.821119,0.086618,0.278039,0.983877,0.938803,0.39726,0.536492,0.0189133,0.890509,0.871787,0.377265,0.584674,0.991339,0.95362,0.0429458,0.164268,0.113887,0.809285,0.689416,0.0334442,0.169986,0.347779,0.41733,0.691773,0.995731,0.709072,0.916141,0.837408,0.600821,0.118804,0.0590537,0.0925899,0.594751,0.907997,0.239495,0.401488,0.686247,0.729126,0.360691,0.493466,0.748497,0.51344,0.336718,0.691976,0.824974,0.617789,0.308104,0.61587,0.791956,0.876497,0.468595,0.686241,0.0103005,0.970468,0.302533,0.969251,0.323847,0.295158,0.658296,0.601845,0.0828057,0.615438,0.368417,0.483821,0.847201,0.088475,0.0404183,0.275325,0.203378,0.167295,0.0127138,0.635567,0.210438,0.494047,0.710027,0.753563,0.519416,0.299295,0.896693,0.718341,0.943065,0.350327,0.753298,0.443599,0.233318,0.436586,0.689318,0.514272,0.373801,0.324889,0.834919,0.160018,0.410516,0.408405,0.641497,0.706207,0.0447955,0.021486,0.433514,0.760156,0.349959,0.503637,0.558263,0.305899,0.41363,0.888955,0.654602,0.817057,0.219787,0.963962,0.162981,0.207614,0.541949,0.770746,0.984376,0.280792,0.231828,0.793233,0.276666,0.352716,0.646411,0.0741649,0.805321,0.135083,0.510668,0.110607,0.509932,0.720545,0.625333,0.135323,0.452755,0.615027,0.307682,0.107991,0.919431,0.919299,0.350228,0.857138,0.740008,0.120152,0.515984,0.757744,0.423396,0.908545,0.321124,0.00776303,0.179273,0.0374961,0.017222,0.238379,0.494407,0.161122,0.891093,0.159609,0.992142,0.865973,0.252732,0.542009,0.484327,0.664417,0.672347,0.441085,0.114514,0.165565,0.105209,0.0978715,0.749732,0.265028,0.82352,0.368383,0.33417,0.349664,0.735794,0.852483,0.949322,0.0628216,0.267592,0.861749,0.100147,0.509129,0.243792,0.244938,0.113837,0.505534,0.0790343,0.751417,0.678704,0.681399,0.848928,0.0171905,0.831709,0.177038,0.931907,0.680427,0.240477,0.678757,0.185787,0.525958,0.59314,0.786696,0.0739499,0.962465,0.699737,0.232737,0.283483,0.42171,0.956223,0.108021,0.671878,0.101621,0.258052,0.103157,0.506673,0.668843,0.220522,0.231921,0.748792,0.254081,0.307889,0.187992,0.709413,0.361254,0.0241993,0.430514,0.301112,0.576342,0.62298,0.0562963,0.37017,0.616792,0.884928,0.710443,0.471213,0.584656,0.434717,0.736619,0.774369,0.261318,0.0535218,0.282414,0.930965,0.389866,0.944373,0.270047,0.0212812,0.0217667,0.844868,0.566125,0.0526534,0.879948,0.446476,0.251212,0.178038,0.572048,0.228235,0.960943,0.768164,0.485181,0.866865,0.908498,0.950141,0.828824,0.58547,0.0354211,0.863448,0.417119,0.914913,0.719502,0.421806,0.916882,0.582812,0.635866,0.630445,0.72948,0.305116,0.174335,0.56487,0.157588,0.746512,0.264379,0.473621,0.816859,0.552063,0.933209,0.206142,0.918331,0.732846,0.185603,0.616233,0.774513,0.765818,0.324343,0.293709,0.273221,0.765195,0.317086,0.673436,0.742481,0.240817,0.921953,0.807577,0.82207,0.969089,0.553031,0.43193,0.772967,0.723906,0.0960246,0.210073,0.593063,0.095719,0.788076,0.431871,0.277859,0.834159,0.383274,0.66722,0.705274,0.305876,0.432814,0.38727,0.443053,0.50723,0.800265,0.995544,0.245666,0.881357,0.80191,0.0959522,0.806602,0.00241232,0.295999,0.360485,0.340035,0.148934,0.89439,0.444051,0.0233334,0.757895,0.815756,0.206673,0.0287663,0.368307,0.94954,0.530656,0.402248,0.640438,0.770272,0.300615,0.709807,0.422967,0.00345695,0.682029,0.603013,0.641911,0.292323,0.398961,0.4385,0.381291,0.438495,0.220582,0.563019,0.808139,0.608025,0.75555,0.52116,0.708059,0.134142,0.685385,0.850798,0.943607,|0.844442,0.164057,0.352562,0.0147642,0.300254,0.0982249,0.840888,0.0354181,0.956251,0.260189,0.223992,0.712871,0.113565,0.542819,0.998285,0.225003,0.928681,0.604982,0.351744,0.215816,0.0158063,0.746805,0.742358,0.438143,0.243483,0.232189,0.510242,0.631477,0.592354,0.136942,0.177647,0.585604,0.812552,0.484045,0.630878,0.310156,0.263121,0.0911938,0.440349,0.599287,0.348449,0.556704,0.405524,0.999985,0.994242,0.966438,0.374817,0.871297,0.343715,0.119783,0.236176,0.114713,0.195682,0.732033,0.729904,0.674899,0.663308,0.697287,0.256404,0.0360389,0.19305,0.690918,0.696424,0.755516,0.668016,0.577806,0.83531,0.0305929,0.2491,0.604569,0.777206,0.640812,0.367369,0.899009,0.382029,0.610287,0.128984,0.0703976,0.0883134,0.685881,0.832388,0.476859,0.813388,0.901721,0.0576695,0.719003,0.546351,0.427903,0.872461,0.595835,0.0140143,0.0442765,0.32546,0.0983507,0.425745,0.235809,0.869942,0.533838,0.0798239,0.971754,0.86972,0.394042,0.327308,0.738897,0.324729,0.988293,0.515867,0.143215,0.58809,0.696779,0.552481,0.216654,0.349574,0.406865,0.142963,0.552289,0.977194,0.5248,0.102691,0.908727,0.904696,0.863875,0.875407,0.286317,0.211276,0.790821,0.0535132,0.431615,0.71657,0.689161,0.882091,0.52029,0.941261,0.850085,0.0571744,0.173119,0.065319,0.0341785,0.354518,0.101769,0.375967,0.785988,0.493051,0.789712,0.323685,0.816548,0.427202,0.287618,0.0655966,0.918489,0.0643696,0.432175,0.927826,0.316,0.196166,0.228466,0.575094,0.235235,0.409862,0.79712,0.391396,0.319796,0.19868,0.552495,0.110757,0.956117,0.271593,0.245974,0.714999,0.409156,0.973498,0.389562,0.0867757,0.894971,0.950004,0.579958,0.108392,0.675309,0.916993,0.489875,0.371424,0.256397,0.413336,0.750947,0.519848,0.0945997,0.107044,0.455951,0.384698,0.248633,0.066614,0.0341501,0.35801,0.569127,0.297866,0.650556,0.897704,0.217245,0.233586,0.828883,0.0039677,0.354841,0.0168499,0.847829,0.970109,0.19646,0.224873,0.784945,0.850685,0.089514,0.387309,0.502404,0.949142,0.354423,0.997953,0.541249,0.663272,0.484876,0.2942,0.424455,0.77523,0.0996293,0.668292,0.137809,0.551832,0.672539,0.138059,0.100817,0.936201,0.997151,0.95442,0.260046,0.311343,0.0524731,0.717302,0.761405,0.0746583,0.405057,0.99332,0.834107,0.725858,0.144457,0.710537,0.554221,0.655024,0.415891,0.190961,0.114453,0.260262,0.082465,0.575427,0.297477,0.0835327,0.343103,0.162513,0.488023,0.725086,0.21861,0.720018,0.622585,0.153075,0.701188,0.112662,0.500507,0.06062,0.12328,0.391209,0.751105,0.353987,0.302195,0.44266,0.922675,0.603801,0.45485,0.448759,0.561423,0.695429,0.818825,0.896455,0.00189185,0.468008,0.405879,0.619962,0.975944,0.80461,0.751135,0.0498815,0.235447,0.0238869,0.124507,0.0442609,0.340112,0.0803244,0.356791,0.569944,0.818799,0.0972406,0.990263,0.972727,0.321692,0.561075,0.379808,0.158423,0.641709,0.505772,0.979935,0.148698,0.613533,0.094187,0.0411766,0.712155,0.373969,0.25368,0.0430149,0.651331,0.845674,0.700578,0.422658,0.696364,0.722882,0.933622,0.978457,0.0845224,0.769486,0.89693,0.833821,0.327561,0.271767,0.89117,0.391374,0.901647,0.0361804,0.12226,0.00273788,0.435789,0.97828,0.455241,0.679731,0.338349,0.459839,0.00086993,0.335467,0.719937,0.245333,0.958488,0.12525,0.994748,0.220739,0.835138,0.542549,0.821122,0.399628,0.925983,0.591695,0.4023,0.0902058,0.399785,0.507333,0.110819,0.540899,0.580677,0.716542,0.889726,0.719849,0.844621,0.134214,0.781814,0.599836,0.578123,0.846846,0.172905,0.108361,0.311257,0.357033,0.203234,0.742055,0.676679,0.683129,0.813522,0.985275,0.373013,0.555474,0.104127,0.691948,0.891254,0.296146,0.443038,0.227877,0.507879,0.487867,0.772874,0.83532,0.671092,0.65045,0.859514,0.0604074,0.402036,0.786099,0.684959,0.810832,0.465303,0.277941,0.25289,0.234166,0.389974,0.0206779,0.963282,0.608444,0.0864037,0.737415,0.910395,0.569206,0.240739,0.708968,0.778987,0.593354,0.595288,0.182111,0.228359,0.759977,0.181764,0.581559,0.0857481,0.9255,0.578033,0.275451,0.132122,0.970868,0.0398816,0.892848,0.158675,0.667887,0.42624,0.586441,0.90962,0.176716,0.098794,0.298608,0.671224,0.527878,0.392823,0.68334,0.547511,0.874344,0.590856,0.419003,0.152889,0.00709909,0.987854,0.087468,0.272079,0.610586,0.410204,0.369753,0.338448,0.592586,0.036294,0.940594,0.376747,0.713422,0.232334,0.940465,0.0615544,0.992911,0.942053,0.61073,0.748805,0.38901,0.942598,0.461669,0.489829,0.232545,0.809776,0.55309,0.213507,0.905242,0.0994183,0.63804,0.512497,0.637514,0.0682395,0.646688,0.911395,0.469561,0.874973,0.344478,0.486332,0.968974,0.228862,0.315403,0.562284,0.660973,0.177852,0.914593,0.932487,0.923756,0.962649,0.690119,0.947968,0.469886,0.20239,0.894837,0.466374,0.0913638,0.0282577,0.24767,0.631034,0.221796,0.26029,0.544384,0.122986,0.335313,0.5629,0.582935,0.433453,0.442905,0.251624,0.257495,0.032903,0.036594,0.38595,0.135355,0.499478,0.00820059,0.199678,0.0513694,0.16939,0.00094825,0.31559,0.716439,0.53388,0.391147,0.0987971,0.310722,0.391527,0.323472,0.717072,0.72414,0.205172,0.11284,0.931517,0.650691,0.941666,0.712786,0.297109,0.925951,0.1996,0.0546124,0.913504,0.930048,0.408993,0.35803,0.081706,0.281107,0.787786,0.854029,0.311051,0.251766,0.428288,0.00751746,0.356911,0.0891986,0.454092,0.286864,0.757897,0.849192,0.94992,0.209158,0.00275189,0.438832,0.223557,0.258829,0.642074,0.473024,0.719472,0.426947,0.41354,0.482955,0.230936,0.540558,0.170815,0.188918,0.527903,0.4639,0.787101,0.720189,0.757808,0.992912,0.395807,0.739244,0.0431402,0.529105,0.991924,0.956427,0.74997,0.311775,0.295792,0.666034,0.703425,0.906063,0.452789,0.890933,0.604779,0.831086,0.147876,0.066657,0.253076,0.722393,0.70398,0.500734,0.62978,0.289431,0.0306354,0.220924,0.0723162,0.47067,0.414267,0.46782,0.332734,0.450881,0.226197,0.770388,0.916697,0.109183,0.224315,0.289245,0.0267051,0.223163,0.140051,0.1271,0.840572,0.926148,0.191412,0.907671,0.950324,0.111378,0.378287,0.526909,0.0608324,0.345877,0.261667,0.19489,0.280606,0.936363,0.0640635,0.0523086,0.742068,0.752573,0.329893,0.836868,0.828408,0.789132,0.243654,0.359726,0.887311,0.619061,0.287458,0.627549,0.569477,0.198499,0.876995,0.858456,0.846604,0.0432135,0.998327,0.289327,0.00489146,0.0813901,0.98837,0.910805,0.0109307,0.676332,0.228229,0.362556,0.825901,0.909302,0.13405,0.555313,0.261027,0.178324,0.287105,0.632781,0.465772,0.124333,0.212785,0.261383,0.568724,0.416448,0.189828,0.500441,0.912364,0.869954,0.630099,0.625524,0.911847,0.594136,0.11346,0.458355,0.956885,0.289246,0.683918,0.0175085,0.918837,0.379454,0.739323,0.937027,0.0739504,0.447838,0.00520903,0.575132,0.783896,0.339323,0.327016,0.838112,0.69856,0.325526,0.909242,0.682,0.925191,0.323085,0.137055,0.511204,0.00213385,0.111574,0.52987,0.811877,0.889314,0.317055,0.231335,0.624916,0.0709956,0.889143,0.68561,0.87267,0.279516,0.998103,0.826445,0.161218,0.488585,0.999379,0.203566,0.124729,0.881911,0.310654,0.603498,0.871781,0.279225,0.122438,0.281968,0.88746,0.508631,0.0524879,0.87604,0.958731,0.111342,0.93552,0.585099,0.395541,0.00955433,0.365082,0.136228,0.421246,0.0219954,0.073947,0.793803,0.323843,0.753662,0.979265,0.931785,0.112631,0.635003,0.762777,0.0821242,0.848222,0.335452,0.329861,0.4745,0.385866,0.567739,0.0994974,0.0759171,0.531868,0.513585,0.57726,0.137315,0.0403751,0.965656,0.835207,0.0948375,0.801432,0.00688386,0.170043,0.228785,0.268683,0.115072,0.993591,0.877089,0.237732,0.64683,0.894166,0.265226,0.916456,0.470249,0.602359,0.59403,0.819538,0.959391,0.331632,0.794661,0.451515,0.121098,0.0885831,0.250579,0.520083,0.617628,0.661549,0.0964457,0.271212,0.249757,0.877963,0.438712,0.0963498,0.270117,0.634374,0.0842971,0.854389,0.155091,0.3367,0.602036,0.702893,0.710245,0.626718,0.464768,0.226347,0.786481,0.334547,0.524423,0.942056,0.453815,0.383364,0.969698,0.173224,0.891931,0.825026,0.410479,0.903691,0.674045,0.559348,0.825431,0.0783954,0.827249,0.489542,0.705082,0.465137,0.63908,0.110369,0.318464,0.277829,0.466748,0.270562,0.831697,0.795481,0.463439,0.157396,0.0435786,0.085538,0.844968,0.845078,0.0376489,0.892309,0.137565,0.130365,0.241575,0.295009,0.0669149,0.611687,0.814468,0.563187,0.154118,0.275807,0.559739,0.272022,0.133141,0.0707141,0.607953,0.806773,0.165359,0.457737,0.785083,0.12006,0.941993,0.907301,0.95318,0.206417,0.408936,0.628164,0.720704,0.382115,0.515318,0.0768453,0.606888,0.755933,0.821391,0.443713,0.852425,0.128378,0.0445852,0.945918,0.664557,0.236445,0.121983,0.839542,0.402962,0.177477,0.349007,0.774185,0.680915,0.739119,0.95325,0.204896,0.444365,0.180473,0.954034,0.262943,0.255594,0.826299,0.18281,0.527541,0.863653,0.20235,0.520435,0.562726,0.744036,0.319919,0.911024,0.231239,0.179536,0.148578,0.22901,0.246669,0.515126,0.0252367,0.89588,0.0276232,0.924209,0.00367904,0.676717,0.81726,0.863198,0.892195,0.429648,0.74492,0.763425,0.81981,0.353886,0.837967,0.919232,0.0754153,0.333275,0.288568,0.0618317,0.0902476,0.434316,0.007644,0.0648619,0.0992395,0.98828,0.375839,0.727952,0.298139,0.30406,0.322085,0.844226,0.946678,0.777039,0.696598,0.395305,0.860905,0.419998,0.315018,0.464814,0.427186,0.677638,0.294892,0.456931,0.934283,0.804649,0.378656,0.585165,0.38006,0.0423391,0.554068,0.329298,0.426428,0.224911,0.088737,0.275229,0.426096,0.8847,0.301561,|0.780132,0.40404,0.238647,0.683688,0.456028,0.951852,0.872447,0.282325,0.834909,0.860899,0.594675,0.742393,0.486318,0.642639,0.00431198,0.731614,0.837578,0.0748023,0.144847,0.982854,0.0752856,0.946752,0.875867,0.97503,0.283526,0.999822,0.556159,0.664121,0.855542,0.08182,0.313519,0.934231,0.783188,0.514216,0.695996,0.952544,0.833217,0.35348,0.750846,0.191657,0.289119,0.0431612,0.626308,0.0282767,0.198878,0.268321,0.059269,0.326951,0.264634,0.0487359,0.518617,0.20607,0.971735,0.100202,0.000716984,0.201474,0.305885,0.126574,0.826222,0.0283117,0.660652,0.681415,0.841474,0.793824,0.342575,0.939571,0.424446,0.43619,0.410751,0.726534,0.272497,0.866811,0.625716,0.829146,0.918037,0.34315,0.333123,0.84715,0.543182,0.107552,0.891945,0.775165,0.871311,0.677016,0.583135,0.433436,0.253866,0.495446,0.669896,0.496571,0.926493,0.778515,0.0101256,0.428769,0.0838891,0.0412728,0.00925744,0.0819718,0.123241,0.365761,0.372549,0.153148,0.399926,0.227098,0.577661,0.117758,0.959902,0.505935,0.766428,0.724217,0.267163,0.775817,0.622048,0.726232,0.91879,0.785478,0.793905,0.548727,0.185974,0.0728264,0.643408,0.348082,0.590773,0.570513,0.830407,0.698049,0.565697,0.203642,0.732908,0.993289,0.590357,0.200994,0.5777,0.395278,0.386916,0.00468898,0.923961,0.555821,0.127333,0.129664,0.443774,0.798629,0.529229,0.696466,0.751203,0.768323,0.359141,0.293481,0.0111758,0.126961,0.589039,0.502554,0.383516,0.80544,0.119742,0.187349,0.969255,0.547634,0.358636,0.974275,0.40929,0.0706761,0.866056,0.728988,0.906118,0.800203,0.0857946,0.137991,0.537845,0.504952,0.37036,0.383136,0.129893,0.0492893,0.453084,0.595893,0.749975,0.331189,0.484012,0.489713,0.168406,0.691854,0.853367,0.890473,0.643154,0.637442,0.80735,0.745737,0.0274432,0.375952,0.990908,0.53338,0.664205,0.24433,0.273404,0.995095,0.201876,0.410388,0.443432,0.594061,0.0270914,0.822751,0.732489,0.708859,0.211721,0.238444,0.0725647,0.686726,0.957194,0.765856,0.0222856,0.796976,0.306481,0.676461,0.0510949,0.960053,0.29057,0.0147148,0.887696,0.559594,0.594676,0.236927,0.988855,0.928176,0.979643,0.727176,0.764302,0.725807,0.17367,0.537734,0.725327,0.0809394,0.319644,0.416789,0.419168,0.0621196,0.712421,0.659604,0.0821414,0.00328219,0.155724,0.924208,0.509012,0.267189,0.527282,0.0137415,0.423723,0.679812,0.619306,0.177097,0.678387,0.620078,0.944199,0.353969,0.391241,0.651962,0.977936,0.28962,0.96267,0.28619,0.604959,0.893995,0.349057,0.880442,0.975377,0.762774,0.289187,0.588059,0.192899,0.060501,0.0280148,0.117835,0.849249,0.0427774,0.564447,0.373976,0.674926,0.486634,0.823711,0.200259,0.369251,0.659506,0.956616,0.217617,0.574637,0.526447,0.827752,0.902278,0.495339,0.639886,0.592299,0.0445749,0.230589,0.0674709,0.706452,0.238735,0.47671,0.0614584,0.685365,0.0138555,0.335872,0.128289,0.63522,0.0986892,0.998537,0.958355,0.827464,0.14855,0.0147272,0.535016,0.929842,0.333774,0.404364,0.609713,0.639417,0.456762,0.323465,0.644634,0.795599,0.923741,0.511527,0.677906,0.825656,0.480664,0.0557222,0.58433,0.381725,0.531981,0.301828,0.743709,0.271908,0.774851,0.526542,0.0450905,0.626195,0.68334,0.756569,0.558946,0.964395,0.868513,0.987971,0.198617,0.617305,0.716071,0.155998,0.534855,0.781824,0.859754,0.159899,0.12642,0.528715,0.243409,0.888503,0.191222,0.234228,0.0451636,0.805871,0.246101,0.795831,0.613737,0.506631,0.69667,0.523897,0.619399,0.24102,0.575889,0.358747,0.814206,0.941494,0.31518,0.996857,0.45166,0.910099,0.584697,0.621352,0.187039,0.520355,0.178319,0.211966,0.516134,0.496753,0.513093,0.893978,0.606339,0.214596,0.757692,0.706299,0.293911,0.0531785,0.312224,0.456178,0.584414,0.762811,0.341255,0.339574,0.961888,0.117611,0.679534,0.196436,0.482843,0.92537,0.380961,0.160027,0.117032,0.282193,0.591173,0.665205,0.545978,0.551515,0.710997,0.596745,0.0305157,0.108701,0.303342,0.985936,0.22942,0.697157,0.870573,0.9914,0.25921,0.20513,0.459842,0.378672,0.783677,0.674034,0.835151,0.426809,0.644421,0.722014,0.287613,0.185724,0.00974739,0.676778,0.910057,0.745713,0.546218,0.416747,0.957069,0.21441,0.797702,0.320802,0.326604,0.17634,0.898591,0.664653,0.013181,0.820112,0.3971,0.926512,0.325743,0.725224,0.783723,0.10279,0.464027,0.611588,0.00715137,0.667603,0.765283,0.170058,0.667965,0.538745,0.365332,0.674679,0.428965,0.00823724,0.0514596,0.260324,0.52445,0.859702,0.262008,0.258147,0.617717,0.974901,0.782349,0.532501,0.237401,0.0813587,0.946661,0.918472,0.40283,0.63097,0.521911,0.493725,0.139473,0.736302,0.628754,0.450786,0.89906,0.00820613,0.00709307,0.963433,0.684401,0.858315,0.779609,0.259838,0.675328,0.08363,0.276507,0.506765,0.30692,0.0891622,0.911383,0.048974,0.0828655,0.284312,0.632723,0.298118,0.835771,0.345279,0.782696,0.236108,0.537926,0.558448,0.689654,0.550384,0.0294148,0.224402,0.249505,0.479914,0.562166,0.33062,0.627517,0.783264,0.251516,0.756731,0.764155,0.35661,0.789866,0.839432,0.536257,0.576603,0.113311,0.0862252,0.29268,0.960794,0.37887,0.629336,0.379898,0.576913,0.709366,0.454421,0.103155,0.414674,0.92114,0.797692,0.098121,0.262031,0.091625,0.969479,0.881605,0.370242,0.0911114,0.504061,0.252447,0.208566,0.641388,0.424364,0.390233,0.258233,0.524107,0.197483,0.733366,0.807761,0.382388,0.127161,0.787292,0.0764672,0.272981,0.711568,0.604802,0.644386,0.182514,0.614384,0.47539,0.614903,0.365646,0.817741,0.835969,0.237624,0.133167,0.235905,0.318657,0.0445867,0.491047,0.167043,0.927307,0.200044,0.661706,0.584736,0.143682,0.789531,0.303867,0.184811,0.925104,0.844965,0.467963,0.854098,0.497683,0.181381,0.217385,0.641522,0.742242,0.608047,0.653969,0.950692,0.126145,0.152076,0.191629,0.670043,0.37139,0.464487,0.461491,0.396633,0.567579,0.162535,0.974737,0.922711,0.181481,0.652856,0.778858,0.349881,0.70065,0.483041,0.179464,0.449764,0.829718,0.282135,0.923642,0.47491,0.677746,0.650688,0.149588,0.92576,0.165443,0.0708607,0.625927,0.466059,0.490148,0.0216823,0.126152,0.0720783,0.602221,0.96143,0.440146,0.777325,0.76087,0.971722,0.833294,0.74941,0.223741,0.886658,0.0122622,0.824647,0.00524271,0.322707,0.841164,0.406625,0.588424,0.0226518,0.156386,0.489713,0.863193,0.724845,0.272873,0.195833,0.0793454,0.48803,0.932169,0.0378887,0.894819,0.38825,0.452023,0.844284,0.111757,0.355575,0.137777,0.990203,0.00472385,0.37839,0.501984,0.218349,0.912098,0.649303,0.751846,0.165559,0.992123,0.282652,0.639837,0.782242,0.547998,0.288372,0.700657,0.45797,0.561474,0.267803,0.187175,0.170035,0.695355,0.856414,0.911356,0.532141,0.734249,0.994504,0.781322,0.473617,0.455686,0.81275,0.58024,0.13782,0.330106,0.371168,0.324789,0.34209,0.417091,0.800651,0.198361,0.779847,0.895777,0.0241839,0.107007,0.0960412,0.281307,0.170657,0.469054,0.180486,0.154066,0.928259,0.218274,0.364715,0.733017,0.392124,0.887356,0.3146,0.394378,0.504634,0.841947,0.579548,0.211108,0.333222,0.496372,0.84618,0.779765,0.241157,0.38249,0.826689,0.283548,0.571763,0.76688,0.685733,0.301227,0.493058,0.402583,0.937314,0.477559,0.00182843,0.701681,0.376891,0.595765,0.151952,0.0494682,0.526319,0.973831,0.430462,0.521564,0.399042,0.450412,0.890588,0.578409,0.69379,0.11881,0.955838,0.239568,0.0269792,0.133388,0.118566,0.713064,0.919608,0.368402,0.750454,0.666083,0.215468,0.0851243,0.825196,0.314815,0.455858,0.535465,0.476122,0.115245,0.406993,0.628522,0.419992,0.151123,0.21338,0.796292,0.359004,0.224605,0.261621,0.647768,0.353426,0.883853,0.768636,0.429989,0.0192094,0.994324,0.264815,0.308394,0.713913,0.263082,0.410943,0.653382,0.844251,0.0018028,0.977455,0.352935,0.205954,0.49913,0.0800421,0.00829899,0.395483,0.164671,0.486662,0.83112,0.534425,0.223446,0.0123395,0.485855,0.953127,0.531762,0.778327,0.915641,0.414059,0.35224,0.460988,0.993533,0.688983,0.20162,0.262573,0.370095,0.984646,0.108408,0.213618,0.957291,0.20283,0.694645,0.383362,0.137916,0.838826,0.079639,0.963246,0.619594,0.940567,0.304739,0.221761,0.657312,0.245328,0.524475,0.431008,0.651759,0.03019,0.291774,0.808763,0.0610346,0.757443,0.325072,0.265027,0.546916,0.043098,0.570782,0.0636547,0.380127,0.911029,0.550659,0.105966,0.233902,0.821816,0.530615,0.639271,0.953381,0.872158,0.84271,0.512146,0.349212,0.878606,0.387832,0.248673,0.426463,0.82189,0.626798,0.114441,0.788247,0.992149,0.567003,0.182006,0.504929,0.660005,0.116681,0.159122,0.0874919,0.709601,0.042292,0.454218,0.66024,0.0144675,0.188893,0.096914,0.563327,0.945562,0.601518,0.721963,0.17343,0.330185,0.124451,0.762885,0.760695,0.242506,0.725228,0.449959,0.666564,0.838974,0.131413,0.939545,0.364339,0.632586,0.186776,0.237074,0.84772,0.971416,0.847345,0.765182,0.955624,0.236463,0.989844,0.964621,0.472442,0.0694417,0.804178,0.854375,0.764102,0.657831,0.41553,0.903812,0.966919,0.479384,0.499889,0.848759,0.445074,0.94829,0.20592,0.265117,0.396867,0.162204,0.630872,0.743205,0.0866566,0.570539,0.14798,0.465276,0.862117,0.819495,0.0173961,0.608761,0.900546,0.0710524,0.980259,0.285356,0.176376,0.689585,0.796265,0.133099,0.488375,0.00597763,0.499691,0.245911,0.0726942,0.931127,0.527256,0.0862673,0.499867,0.834784,0.752311,0.882779,0.936062,0.268418,0.799751,0.432947,0.973161,0.00476944,0.598646,0.719299,0.600424,0.233471,0.243658,0.630876,0.67013,0.611718,0.175056,0.384926,0.548592,0.809722,0.901059,|0.047356,0.586451,0.609558,0.950304,0.647029,0.6926,0.349495,0.456608,0.0402602,0.543749,0.549038,0.525679,0.276849,0.999311,0.194214,0.177042,0.388367,0.75678,0.220538,0.331059,0.261349,0.455194,0.513343,0.260993,0.649447,0.0491124,0.773,0.439931,0.18667,0.890831,0.320487,0.00812328,0.575493,0.311024,0.00301081,0.635738,0.126753,0.445248,0.344919,0.135011,0.0659102,0.207928,0.669106,0.666187,0.34061,0.436574,0.495705,0.32502,0.791159,0.121455,0.670074,0.892908,0.390576,0.670419,0.602128,0.632743,0.647345,0.961852,0.345521,0.445647,0.808553,0.833203,0.0387948,0.515409,0.270008,0.614284,0.488583,0.400964,0.117067,0.655175,0.316626,0.925996,0.959693,0.397319,0.977099,0.827011,0.311048,0.661266,0.684475,0.217503,0.702892,0.623134,0.682921,0.124508,0.124778,0.018866,0.142029,0.514508,0.322273,0.331054,0.184648,0.926745,0.356438,0.133853,0.677927,0.540236,0.222759,0.0464486,0.36044,0.85256,0.697942,0.57768,0.98633,0.0644853,0.971865,0.600569,0.462229,0.425393,0.386154,0.930595,0.030748,0.435554,0.304133,0.349025,0.612684,0.870116,0.158692,0.573506,0.866906,0.145647,0.225328,0.925261,0.37315,0.257366,0.30126,0.959903,0.074069,0.573757,0.0805314,0.274916,0.0317405,0.982876,0.302413,0.784028,0.166868,0.893557,0.594258,0.37233,0.148285,0.112056,0.925971,0.202126,0.62735,0.0452657,0.955817,0.716635,0.0646057,0.506736,0.893618,0.233909,0.907885,0.838582,0.18803,0.874767,0.43438,0.200593,0.990515,0.478836,0.431493,0.688915,0.138407,0.670121,0.105478,0.476208,0.221348,0.118161,0.11254,0.208668,0.707196,0.526819,0.923019,0.480345,0.144148,0.637605,0.975873,0.389304,0.137426,0.0169871,0.583073,0.727893,0.50242,0.471676,0.487788,0.227469,0.00607061,0.0205861,0.00535476,0.440408,0.0329165,0.580918,0.321319,0.867417,0.902471,0.413522,0.301427,0.255919,0.577681,0.133969,0.670531,0.528887,0.694442,0.38573,0.725238,0.651755,0.000831008,0.822531,0.196842,0.115922,0.352544,0.151218,0.82247,0.0271808,0.460274,0.589751,0.992247,0.433374,0.558514,0.0941279,0.0658192,0.167667,0.258855,0.491882,0.460649,0.0311675,0.187748,0.117993,0.573766,0.0270008,0.967598,0.12788,0.674134,0.750174,0.143773,0.719617,0.772148,0.850374,0.157762,0.00178421,0.248635,0.521176,0.714051,0.151537,0.519851,0.115498,0.771512,0.35586,0.281515,0.814609,0.962811,0.616417,0.299322,0.466795,0.0312641,0.1061,0.699661,0.276225,0.394867,0.26804,0.145937,0.384697,0.192594,0.08936,0.640817,0.446929,0.655108,0.783514,0.14116,0.256774,0.932756,0.155701,0.381158,0.508617,0.236289,0.800491,0.879924,0.276795,0.542811,0.162554,0.167247,0.874751,0.282352,0.38086,0.85204,0.439519,0.242741,0.84687,0.823042,0.392227,0.539966,0.653152,0.889358,0.973001,0.655059,0.0300635,0.219254,0.197436,0.182458,0.146098,0.311425,0.742557,0.998069,0.488175,0.938392,0.438164,0.833875,0.546048,0.551658,0.1066,0.641522,0.319193,0.611318,0.0396402,0.610238,0.253054,0.400353,0.601896,0.0258072,0.944836,0.0660064,0.251693,0.542025,0.370316,0.170313,0.731836,0.153463,0.18084,0.580528,0.489951,0.86051,0.0728439,0.756445,0.329716,0.0330747,0.296902,0.926932,0.810434,0.831097,0.388748,0.940534,0.930233,0.257216,0.445959,0.437448,0.498716,0.334195,0.155767,0.177101,0.412124,0.234398,0.344565,0.402185,0.891989,0.875293,0.0671518,0.996493,0.881375,0.444493,0.177873,0.278339,0.49822,0.519974,0.325287,0.833387,0.168563,0.857252,0.489029,0.38608,0.223501,0.0191294,0.423738,0.115262,0.963839,0.71159,0.137844,0.664584,0.900445,0.343737,0.488557,0.0646699,0.356501,0.782957,0.634678,0.255542,0.107373,0.189522,0.880559,0.424426,0.075025,0.769501,0.00309092,0.745416,0.627486,0.644622,0.297473,0.737885,0.896931,0.164021,0.843142,0.39277,0.0899029,0.570264,0.710504,0.914875,0.616579,0.77118,0.971301,0.638974,0.771901,0.900693,0.0598063,0.62994,0.895739,0.488384,0.183558,0.403805,0.210797,0.808423,0.869856,0.24098,0.214887,0.128172,0.779562,0.348013,0.772972,0.654084,0.440113,0.860971,0.645172,0.855288,0.102941,0.996249,0.435556,0.842747,0.731174,0.757399,0.236709,0.330551,0.284814,0.946199,0.392896,0.989319,0.810111,0.00626057,0.837699,0.10154,0.999047,0.818813,0.790642,0.549685,0.823458,0.255494,0.620544,0.522872,0.467337,0.255443,0.483631,0.75763,0.909334,0.94557,0.150542,0.168259,0.483071,0.123717,0.358125,0.166413,0.641188,0.198795,0.868204,0.056511,0.413892,0.589544,0.599879,0.495503,0.711426,0.969749,0.601465,0.158511,0.129464,0.683164,0.294124,0.864128,0.290857,0.902234,0.970463,0.640744,0.909173,0.537541,0.551102,0.126229,0.791259,0.0464346,0.878861,0.0964755,0.258727,0.646976,0.429544,0.924545,0.737751,0.367239,0.160947,0.48013,0.481262,0.100995,0.282312,0.640929,0.660811,0.102109,0.0209082,0.423485,0.769267,0.927656,0.531659,0.946928,0.910363,0.516356,0.644158,0.116943,0.476794,0.91294,0.712032,0.593914,0.707406,0.36866,0.826558,0.35808,0.474374,0.46912,0.582217,0.779689,0.585141,0.884571,0.638659,0.425183,0.691726,0.678808,0.878584,0.281098,0.426854,0.673878,0.511054,0.947961,0.616667,0.446169,0.314013,0.225863,0.0477006,0.207929,0.633921,0.737899,0.985402,0.383354,0.119608,0.957562,0.886325,0.96427,0.405164,0.566299,0.720923,0.436033,0.116318,0.420498,0.943911,0.331702,0.926844,0.682035,0.229476,0.373003,0.238989,0.231222,0.629339,0.878066,0.914763,0.215179,0.822219,0.862086,0.962969,0.966746,0.65686,0.237429,0.307158,0.870107,0.613865,0.898517,0.865071,0.225561,0.985921,0.14553,0.319465,0.699009,0.66625,0.66392,0.07041,0.884472,0.0047965,0.19437,0.0513456,0.322712,0.685601,0.708085,0.896418,0.974129,0.811686,0.767624,0.372551,0.902882,0.75342,0.0437499,0.115888,0.437428,0.251918,0.864306,0.278562,0.815262,0.516196,0.607285,0.612346,0.734116,0.0845717,0.0119026,0.48155,0.382584,0.271033,0.335244,0.105707,0.0853359,0.7281,0.510277,0.773204,0.967761,0.0102514,0.0484525,0.832456,0.499916,0.528376,0.0850389,0.938337,0.185627,0.0697016,0.561164,0.429985,0.867348,0.604028,0.507266,0.12159,0.460898,0.275919,0.368497,0.839915,0.452453,0.104965,0.425412,0.0190071,0.110362,0.176443,0.356231,0.719463,0.832339,0.817796,0.381687,0.68932,0.766218,0.128157,0.400207,0.0605159,0.781962,0.620559,0.161385,0.60669,0.292659,0.659335,0.571198,0.485904,0.594424,0.150955,0.552598,0.133288,0.0995677,0.819371,0.556922,0.550802,0.841386,0.640693,0.293071,0.324745,0.734585,0.142457,0.275888,0.243618,0.991759,0.482677,0.722609,0.34336,0.479145,0.832315,0.407053,0.659643,0.869505,0.713684,0.372365,0.0811149,0.313003,0.279723,0.0392281,0.126822,0.144734,0.329676,0.808097,0.0854829,0.722714,0.794505,0.215155,0.744351,0.613557,0.0991881,0.106146,0.916282,0.562233,0.0225726,0.366587,0.737337,0.887279,0.0748094,0.495668,0.33773,0.210366,0.163908,0.597507,0.101434,0.0129267,0.000507474,0.0749864,0.665173,0.0800079,0.884724,0.61837,0.810755,0.798464,0.941205,0.112647,0.202501,0.84291,0.43313,0.800116,0.641544,0.910397,0.705518,0.00848293,0.814589,0.64272,0.804156,0.379162,0.779865,0.42608,0.152615,0.376446,0.390551,0.430709,0.325172,0.287317,0.632091,0.110256,0.113657,0.431907,0.738125,0.879843,0.411657,0.810105,0.867891,0.340213,0.77705,0.696193,0.69981,0.290668,0.670856,0.452366,0.480128,0.900167,0.2741,0.356573,0.735959,0.889595,0.848965,0.266779,0.00754124,0.504366,0.768979,0.440584,0.339606,0.963533,0.134823,0.460767,0.669565,0.974608,0.447175,0.279451,0.518768,0.821589,0.188558,0.481369,0.166824,0.456077,0.00377852,0.803398,0.976718,0.541406,0.738082,0.490152,0.866021,0.656959,0.553015,0.388535,0.199139,0.13871,0.171822,0.472481,0.174186,0.420828,0.389578,0.754736,0.234239,0.923386,0.849652,0.168579,0.891466,0.933406,0.245995,0.883359,0.735324,0.848604,0.0980073,0.0301685,0.998656,0.77337,0.302577,0.971093,0.654113,0.255786,0.228026,0.540739,0.116227,0.366717,0.894401,0.462528,0.402855,0.794821,0.191124,0.924804,0.846923,0.0290526,0.826901,0.286268,0.126829,0.609119,0.160324,0.118044,0.121097,0.823563,0.524324,0.457781,0.29416,0.367867,0.377453,0.760992,0.958702,0.843213,0.875786,0.704306,0.664475,0.957411,0.96517,0.403292,0.56528,0.498072,0.296238,0.323653,0.692153,0.0293943,0.415987,0.842465,0.849421,0.129627,0.730893,0.1008,0.587795,0.89693,0.438565,0.28113,0.817144,0.656409,0.717038,0.647152,0.266614,0.374864,0.967676,0.917138,0.0784789,0.330732,0.407184,0.227494,0.596754,0.95102,0.150677,0.104009,0.779163,0.762899,0.098404,0.0514824,0.625143,0.5747,0.337886,0.0818093,0.983884,0.873397,0.608088,0.457101,0.613448,0.529123,0.41942,0.241499,0.082231,0.598709,0.0826229,0.398902,0.290057,0.268735,0.797209,0.146104,0.733835,0.959608,0.863541,0.824764,0.22194,0.18131,0.102939,0.780269,0.193698,0.560154,0.0266936,0.718297,0.59684,0.303753,0.898328,0.715702,0.65017,0.57174,0.529428,0.559014,0.248087,0.93895,0.435612,0.208652,0.577758,0.948179,0.471812,0.204253,0.0303769,0.511234,0.880912,0.883092,0.43323,0.455549,0.583484,0.184631,0.861111,0.83016,0.693214,0.913282,0.113116,0.199283,0.377593,0.953517,0.894715,0.518618,0.508836,0.857169,0.643114,0.331088,0.0475672,0.0926251,0.726084,0.145148,0.84078,0.961821,0.556373,0.896887,0.638434,0.377468,0.670943,0.859751,0.309008,0.689472,0.0361491,0.548821,0.393412,0.258792,0.243824,0.223619,0.757445,0.790503,0.665015,|0.989708,0.352849,0.120671,0.328048,0.803524,0.268844,0.611195,0.114511,0.962231,0.892873,0.0498585,0.119049,0.623748,0.00761962,0.421739,0.410959,0.637526,0.331456,0.463557,0.223086,0.0533773,0.703518,0.644626,0.873414,0.617689,0.272052,0.180522,0.795856,0.895526,0.151385,0.560514,0.70621,0.700404,0.325435,0.372606,0.905917,0.229299,0.548641,0.442906,0.534042,0.387739,0.190833,0.845053,0.340086,0.714498,0.586949,0.292701,0.565618,0.419372,0.283276,0.0102364,0.0826433,0.944885,0.080973,0.266659,0.230256,0.0114247,0.588328,0.703419,0.852944,0.41418,0.229363,0.477442,0.736756,0.455966,0.281144,0.441443,0.0608622,0.604035,0.101394,0.755144,0.382672,0.648068,0.971092,0.903479,0.156324,0.747983,0.14368,0.878473,0.726121,0.970131,0.167476,0.107857,0.852385,0.954689,0.239346,0.234126,0.295327,0.20276,0.0967573,0.468757,0.611206,0.458396,0.539263,0.811434,0.846512,0.526424,0.276944,0.111685,0.0052411,0.978901,0.306059,0.906232,0.158299,0.608456,0.798989,0.770742,0.447978,0.613382,0.577084,0.566603,0.498128,0.0225295,0.233903,0.098528,0.637508,0.808932,0.366336,0.268295,0.172386,0.753526,0.0810627,0.916535,0.887626,0.244896,0.334995,0.657358,0.180368,0.414564,0.693289,0.729813,0.783958,0.356212,0.85454,0.477741,0.327202,0.798475,0.0687112,0.408196,0.90135,0.20431,0.15145,0.428563,0.364238,0.56932,0.58063,0.0257465,0.112798,0.892513,0.87572,0.111579,0.859659,0.657451,0.434343,0.145187,0.348874,0.0302495,0.7118,0.686124,0.95593,0.873593,0.705905,0.937971,0.438142,0.112205,0.56644,0.243938,0.752416,0.58169,0.575266,0.778199,0.103976,0.0157173,0.0621949,0.503139,0.972265,0.189248,0.583933,0.596963,0.806145,0.949941,0.365265,0.357213,0.0617609,0.656107,0.937608,0.293253,0.489227,0.102275,0.234167,0.926139,0.191829,0.256093,0.221503,0.505843,0.356765,0.330645,0.720405,0.843563,0.31385,0.79488,0.243502,0.0892431,0.211539,0.69436,0.422653,0.37237,0.791944,0.764389,0.867586,0.0513189,0.832001,0.136441,0.254102,0.708521,0.219878,0.722675,0.626987,0.333542,0.339318,0.554117,0.471395,0.258055,0.973261,0.937824,0.5636,0.761066,0.059227,0.993284,0.70544,0.199199,0.177266,0.450511,0.604702,0.0582865,0.575792,0.992405,0.640043,0.880169,0.690795,0.893204,0.182059,0.371096,0.318111,0.417835,0.145811,0.911943,0.769679,0.640185,0.212413,0.0877282,0.539502,0.500389,0.73912,0.766191,0.0866325,0.530031,0.0943145,0.929267,0.443813,0.874726,0.54084,0.565546,0.899275,0.397738,0.447391,0.762416,0.988869,0.480888,0.585428,0.700589,0.184041,0.235142,0.636357,0.211717,0.792813,0.798889,0.484186,0.61374,0.429514,0.624742,0.0892813,0.144795,0.271538,0.306007,0.33452,0.516299,0.42048,0.38061,0.223808,0.308275,0.42937,0.993918,0.478812,0.679784,0.0816136,0.887902,0.647481,0.485398,0.0189929,0.195952,0.640386,0.168671,0.670595,0.255595,0.808259,0.997656,0.756205,0.00134194,0.483551,0.363114,0.415753,0.598801,0.29221,0.379853,0.567843,0.194092,0.635135,0.800732,0.98218,0.0722141,0.269131,0.52169,0.171223,0.617946,0.726574,0.284596,0.883273,0.57292,0.886433,0.40983,0.560398,0.641444,0.753116,0.733608,0.7115,0.924541,0.0315404,0.102315,0.179839,0.622248,0.230811,0.784048,0.280598,0.153282,0.43932,0.291694,0.472836,0.882568,0.00424665,0.0461417,0.639939,0.685109,0.662946,0.665743,0.117593,0.433019,0.051407,0.0458705,0.134437,0.811826,0.776343,0.36069,0.344642,0.773134,0.750254,0.923235,0.0116336,0.758299,0.102561,0.84293,0.855273,0.282675,0.354613,0.466931,0.95508,0.592092,0.830435,0.141008,0.564646,0.758361,0.976306,0.22737,0.299097,0.107948,0.884594,0.896902,0.235323,0.411089,0.987547,0.642426,0.330812,0.934995,0.881807,0.765734,0.849939,0.0348156,0.254492,0.503087,0.717107,0.765139,0.175101,0.687271,0.209249,0.58344,0.460266,0.979097,0.639303,0.117712,0.916766,0.612529,0.286261,0.421144,0.562561,0.287381,0.576085,0.276007,0.450805,0.712149,0.156179,0.82394,0.963883,0.844746,0.936069,0.15216,0.82549,0.620791,0.174226,0.964455,0.0423643,0.741399,0.687563,0.890734,0.215218,0.952461,0.878043,0.317825,0.610633,0.352432,0.818228,0.462222,0.618471,0.201956,0.198641,0.503963,0.49104,0.992807,0.55704,0.707358,0.402498,0.269288,0.940329,0.604417,0.921792,0.103725,0.286013,0.538554,0.506323,0.610656,0.00484103,0.987169,0.514227,0.761484,0.489286,0.727149,0.191536,0.52255,0.300891,0.477515,0.762613,0.351848,0.290695,0.0249521,0.652613,0.69552,0.33766,0.869676,0.581733,0.199076,0.454318,0.288088,0.468328,0.38111,0.22569,0.695023,0.160151,0.940524,0.781108,0.41533,0.223179,0.375117,0.140356,0.889116,0.248334,0.173808,0.418151,0.737859,0.693826,0.151122,0.824268,0.942532,0.726334,0.316682,0.307478,0.284906,0.231735,0.523631,0.181818,0.0622634,0.129503,0.698743,0.0439574,0.376134,0.995582,0.534762,0.486009,0.382043,0.123097,0.616795,0.610185,0.678655,0.105336,0.111616,0.16073,0.880528,0.183557,0.900014,0.0698106,0.218705,0.256802,0.0648588,0.535021,0.380132,0.520579,0.500493,0.832008,0.390571,0.666564,0.240325,0.889227,0.716279,0.112674,0.36313,0.756598,0.22681,0.0392877,0.401867,0.311692,0.567735,0.270792,0.0316234,0.0389895,0.199311,0.98076,0.0547305,0.108962,0.621919,0.331712,0.424164,0.853543,0.996498,0.629353,0.999834,0.805436,0.0435812,0.138229,0.929011,0.610444,0.237982,0.561993,0.613012,0.679905,0.751619,0.565041,0.544038,0.341375,0.892421,0.775858,0.231198,0.487314,0.340952,0.827227,0.171864,0.485207,0.212053,0.496767,0.403687,0.360091,0.513237,0.124086,0.75104,0.307411,0.368537,0.872784,0.170916,0.381028,0.824574,0.0845298,0.869311,0.631126,0.407482,0.879484,0.867779,0.0553669,0.184381,0.839012,0.758124,0.837171,0.945453,0.497763,0.751765,0.00481653,0.30386,0.352817,0.0406405,0.732586,0.829396,0.482072,0.650922,0.827998,0.550619,0.983437,0.392617,0.946948,0.581865,0.720534,0.240688,0.937852,0.851227,0.590261,0.0599189,0.513414,0.373547,0.259308,0.561348,0.956595,0.872692,0.182174,0.646698,0.536603,0.385286,0.026804,0.956445,0.251236,0.580757,0.610839,0.486149,0.797245,0.0752794,0.939231,0.432171,0.469988,0.288887,0.671966,0.965964,0.836337,0.219183,0.960629,0.488138,0.425183,0.797723,0.448196,0.6313,0.479088,0.755928,0.334011,0.199733,0.263,0.341711,0.623344,0.25474,0.738016,0.300094,0.737256,0.710797,0.268198,0.302216,0.472019,0.445459,0.376566,0.899782,0.484179,0.0760469,0.919219,0.651332,0.451613,0.885283,0.638008,0.279556,0.659605,0.378638,0.819782,0.984935,0.475929,0.191378,0.894984,0.449083,0.668461,0.126117,0.543201,0.35631,0.578965,0.845284,0.560655,0.0900263,0.944327,0.867423,0.996087,0.668364,0.451051,0.432062,0.189215,0.552079,0.65075,0.466593,0.541496,0.535064,0.41928,0.435124,0.532673,0.0464035,0.223541,0.188754,0.835405,0.633369,0.175775,0.578605,0.294422,0.634992,0.0631006,0.286834,0.566564,0.207332,0.276014,0.493816,0.968908,0.409197,0.927564,0.41409,0.458596,0.326695,0.502145,0.842158,0.691409,0.874078,0.449631,0.405583,0.168783,0.654284,0.716515,0.879714,0.0302907,0.57789,0.648405,0.124157,0.234637,0.898998,0.548838,0.651419,0.442108,0.814226,0.759392,0.628856,0.5386,0.720163,0.546557,0.162381,0.288555,0.963755,0.577721,0.948159,0.311611,0.809919,0.871068,0.845991,0.338904,0.101001,0.968206,0.520925,0.297541,0.990803,0.977119,0.0877827,0.0491652,0.908141,0.789865,0.632733,0.381208,0.040125,0.282142,0.0477896,0.392823,0.388107,0.862274,0.262027,0.592921,0.259559,0.579212,0.575684,0.205241,0.684442,0.996827,0.024467,0.45453,0.658709,0.688887,0.00335729,0.711551,0.502749,0.617342,0.999574,0.0576443,0.543657,0.381735,0.285033,0.703217,0.494081,0.879229,0.604647,0.785193,0.645736,0.516414,0.952446,0.37779,0.70777,0.598867,0.859845,0.605316,0.164936,0.976851,0.00583768,0.424743,0.0188066,0.555723,0.262817,0.368374,0.683511,0.751115,0.721287,0.528563,0.0736086,0.777399,0.910815,0.905481,0.622405,0.153206,0.177418,0.396531,0.782371,0.842163,0.68744,0.851488,0.198552,0.206452,0.408779,0.191353,0.985838,0.279248,0.646616,0.906685,0.401574,0.586956,0.545956,0.369506,0.216572,0.872255,0.957903,0.14963,0.0612432,0.00577295,0.659113,0.660057,0.166987,0.133173,0.280014,0.0468143,0.220807,0.906643,0.78531,0.757268,0.17079,0.12066,0.692212,0.728983,0.374585,0.948768,0.449973,0.72944,0.6322,0.294035,0.0944604,0.6118,0.723614,0.0921001,0.727963,0.380242,0.239693,0.241107,0.868206,0.108023,0.471231,0.231359,0.352178,0.773411,0.297712,0.399198,0.722777,0.408196,0.71042,0.893307,0.866017,0.3122,0.443571,0.643914,0.172306,0.776904,0.381246,0.0560077,0.965348,0.688548,0.923599,0.960114,0.75466,0.724901,0.0263875,0.311295,0.274417,0.400194,0.336044,0.251883,0.210109,0.443235,0.991699,0.0561896,0.921822,0.748833,0.661053,0.789632,0.985727,0.410347,0.453006,0.989916,0.00142407,0.565583,0.836297,0.665126,0.0279934,0.163509,0.0652842,0.550159,0.423383,0.739626,0.846197,0.307797,0.247595,0.307484,0.648307,0.359848,0.984286,0.0964797,0.121103,0.440767,0.768759,0.890164,0.840843,0.96163,0.322949,0.932866,0.411263,0.810549,0.318669,0.484657,0.159324,0.2962,0.266897,0.953522,0.770252,0.260886,0.593392,0.437895,0.691431,0.10283,0.594154,0.0557157,0.277425,0.638193,0.0199977,0.930697,0.93264,0.978671,0.142262,0.0450468,0.823748,0.521863,0.678223,0.524257,0.451393,0.52371,0.967851,0.978814,|0.972107,0.613909,0.886475,0.833608,0.36297,0.643586,0.558487,0.699946,0.84826,0.641001,0.320121,0.397832,0.0391788,0.736104,0.0656512,0.0653647,0.719028,0.759051,0.28736,0.0576047,0.169021,0.486282,0.770177,0.531581,0.0204337,0.318282,0.493683,0.690368,0.0128154,0.195083,0.198182,0.0370986,0.484873,0.283674,0.312389,0.630424,0.262274,0.817736,0.926724,0.457686,0.187202,0.508115,0.0880498,0.473225,0.77579,0.195628,0.444635,0.52865,0.0845858,0.906689,0.599673,0.288505,0.981439,0.485793,0.237508,0.776696,0.536572,0.413548,0.670134,0.0166826,0.279523,0.757428,0.306913,0.848074,0.395884,0.232028,0.65982,0.668784,0.343784,0.667835,0.749372,0.534973,0.442936,0.00831622,0.204984,0.169495,0.982816,0.0897914,0.865367,0.149338,0.0704361,0.64097,0.271403,0.352962,0.945814,0.553147,0.0889819,0.362615,0.229327,0.699608,0.878565,0.0292096,0.992978,0.570878,0.647321,0.716271,0.615451,0.198391,0.586024,0.229639,0.576814,0.234665,0.714656,0.192106,0.605685,0.933336,0.317231,0.237605,0.686374,0.197315,0.241346,0.884046,0.277457,0.931332,0.283009,0.076168,0.771336,0.811546,0.08834,0.408133,0.433427,0.231254,0.837024,0.0363513,0.375817,0.560893,0.847575,0.0447437,0.581913,0.421514,0.734544,0.35218,0.465208,0.996167,0.711003,0.0954915,0.28578,0.453589,0.0353279,0.957615,0.69371,0.0248551,0.286243,0.787846,0.650368,0.326034,0.267269,0.522942,0.741189,0.495666,0.23609,0.487284,0.0573221,0.888525,0.0918816,0.335364,0.12584,0.403121,0.407482,0.0913589,0.513535,0.13403,0.7288,0.240328,0.515901,0.550554,0.0556255,0.63353,0.395736,0.891818,0.764311,0.334382,0.833366,0.152812,0.320069,0.144127,0.0405018,0.943292,0.941727,0.232851,0.779528,0.784565,0.429216,0.653654,0.986704,0.110976,0.896005,0.875239,0.947999,0.202725,0.902023,0.0749698,0.540428,0.0842883,0.0405157,0.768671,0.469962,0.90101,0.884627,0.218679,0.226177,0.506025,0.0679504,0.368592,0.412915,0.248102,0.788036,0.213155,0.212158,0.157962,0.866501,0.998734,0.747197,0.192423,0.55702,0.240064,0.05849,0.791477,0.181634,0.550094,0.768553,0.709795,0.956126,0.612242,0.846613,0.329181,0.323492,0.599826,0.208092,0.480516,0.800413,0.676677,0.579286,0.0780632,0.155642,0.80116,0.589066,0.267794,0.602652,0.175362,0.885014,0.62481,0.83386,0.910577,0.665951,0.355386,0.0302044,0.502591,0.59579,0.836179,0.156964,0.909018,0.133535,0.628475,0.089718,0.432097,0.871471,0.316284,0.645147,0.613825,0.802663,0.808257,0.14048,0.026139,0.782312,0.575469,0.742668,0.675828,0.627957,0.0173218,0.802375,0.923743,0.640463,0.623768,0.0168938,0.918749,0.368491,0.323185,0.68248,0.309759,0.00397205,0.137577,0.0608499,0.188442,0.489643,0.928795,0.0803829,0.249388,0.134669,0.0872141,0.909638,0.577185,0.588524,0.413162,0.649071,0.439819,0.791434,0.493918,0.704522,0.721112,0.270792,0.429796,0.0687003,0.225275,0.141131,0.57795,0.559599,0.930086,0.35455,0.55393,0.798948,0.0233048,0.469305,0.395374,0.711686,0.519687,0.506457,0.179124,0.198731,0.0779027,0.976359,0.837716,0.999273,0.498872,0.551677,0.856179,0.913625,0.560265,0.235846,0.25416,0.629306,0.352103,0.363399,0.591357,0.515505,0.123969,0.770281,0.0274796,0.0612651,0.151395,0.750623,0.968562,0.216248,0.420504,0.747147,0.661944,0.0604678,0.606534,0.825947,0.682035,0.160937,0.822995,0.292251,0.537231,0.610986,0.0370053,0.660492,0.998048,0.995393,0.808043,0.298737,0.30569,0.656519,0.766047,0.434024,0.406787,0.878149,0.400553,0.00154996,0.731205,0.663967,0.435808,0.083235,0.0334533,0.135248,0.9119,0.500657,0.595524,0.175268,0.377206,0.647302,0.402537,0.475482,0.0214844,0.107467,0.189892,0.109379,0.169306,0.388724,0.0876957,0.0320722,0.234916,0.379905,0.295222,0.71037,0.686576,0.551929,0.0112486,0.0440114,0.167389,0.534866,0.68091,0.989631,0.643202,0.189971,0.871996,0.632282,0.782601,0.761006,0.911269,0.0614337,0.832889,0.749124,0.462924,0.162454,0.405853,0.505937,0.11427,0.525989,0.858071,0.763068,0.460545,0.650074,0.754781,0.107352,0.577391,0.520445,0.99048,0.728589,0.776426,0.778698,0.305505,0.941319,0.496461,0.221333,0.837954,0.795117,0.915572,0.675664,0.766376,0.9129,0.359218,0.228913,0.567518,0.44444,0.225185,0.807661,0.339161,0.668387,0.80251,0.773631,0.235314,0.504796,0.761926,0.166177,0.0595794,0.774201,0.69445,0.88904,0.533593,0.165334,0.5535,0.0356414,0.161227,0.459425,0.430709,0.0646781,0.291723,0.601455,0.479141,0.042699,0.716074,0.162998,0.930103,0.461415,0.255902,0.6195,0.368814,0.704368,0.979748,0.625491,0.573346,0.0080685,0.0772535,0.149766,0.429286,0.760018,0.375079,0.669118,0.970549,0.781656,0.34798,0.47187,0.133253,0.707112,0.721739,0.266944,0.0435446,0.444499,0.976112,0.529703,0.303645,0.416763,0.2906,0.186362,0.597868,0.12709,0.206557,0.204622,0.556891,0.560041,0.858551,0.828442,0.744019,0.995537,0.832804,0.529725,0.0669565,0.0201609,0.934959,0.926418,0.191016,0.27388,0.742999,0.557878,0.0346266,0.591918,0.193995,0.926676,0.53195,0.188884,0.82588,0.503629,0.336577,0.0185118,0.0497097,0.573567,0.0584729,0.72088,0.0755752,0.987235,0.347771,0.972088,0.0145667,0.317437,0.587838,0.634832,0.422022,0.457685,0.44797,0.371154,0.831307,0.723733,0.0871705,0.376729,0.800161,0.866067,0.78468,0.549856,0.17933,0.406849,0.686857,0.408974,0.23074,0.815278,0.129632,0.69807,0.726664,0.127801,0.803441,0.0412581,0.44787,0.210829,0.139891,0.00923097,0.338878,0.371034,0.936535,0.468756,0.510707,0.846339,0.527207,0.76257,0.995989,0.360352,0.113563,0.274305,0.616335,0.149922,0.289843,0.241029,0.850408,0.031428,0.641322,0.566595,0.294042,0.252699,0.679607,0.225398,0.575434,0.746631,0.140097,0.308965,0.715234,0.898463,0.509579,0.919932,0.850167,0.61349,0.499298,0.964942,0.841579,0.963729,0.467515,0.616065,0.506379,0.246135,0.980678,0.166433,0.342763,0.674445,0.745235,0.343321,0.816475,0.714977,0.0686418,0.58751,0.48788,0.142334,0.217483,0.903273,0.432355,0.0294757,0.321798,0.0682696,0.496499,0.479319,0.217076,0.268139,0.531202,0.506922,0.02237,0.828874,0.991752,0.714662,0.370426,0.691718,0.808946,0.717198,0.61929,0.127835,0.946512,0.677362,0.610607,0.900763,0.771103,0.839103,0.855305,0.144543,0.462735,0.701696,0.44705,0.589217,0.548225,0.803658,0.81065,0.164839,0.777673,0.626335,0.0674708,0.95626,0.741716,0.211279,0.665207,0.48161,0.260457,0.394672,0.686966,0.43242,0.699438,0.288085,0.243566,0.543983,0.00406635,0.554924,0.666509,0.252674,0.0567864,0.905173,0.900678,0.446969,0.931109,0.567255,0.105475,0.942534,0.820215,0.735635,0.0952235,0.0346724,0.35234,0.884051,0.77266,0.056012,0.409794,0.95561,0.332452,0.1751,0.494083,0.478576,0.0431083,0.355705,0.362161,0.134005,0.22338,0.0829241,0.638721,0.870755,0.318028,0.489054,0.69964,0.217953,0.0471797,0.481547,0.408418,0.588168,0.134256,0.782601,0.77219,0.937609,0.646337,0.927388,0.304941,0.480805,0.98982,0.683717,0.791787,0.997279,0.480279,0.507286,0.658476,0.770866,0.551649,0.84972,0.214997,0.703696,0.437717,0.0096994,0.705174,0.314937,0.257677,0.185999,0.715533,0.288142,0.399732,0.0527526,0.49183,0.101475,0.300149,0.180293,0.614684,0.54983,0.936606,0.749163,0.13814,0.86268,0.278135,0.841067,0.634298,0.726509,0.998892,0.438643,0.671567,0.376366,0.894184,0.0838797,0.282557,0.512778,0.411045,0.570559,0.3527,0.711833,0.0923932,0.814613,0.819749,0.413183,0.765498,0.196165,0.388128,0.855548,0.100194,0.592797,0.665583,0.205515,0.704616,0.559354,0.089689,0.0475452,0.168151,0.767356,0.759287,0.667131,0.361824,0.478694,0.90587,0.760186,0.459166,0.945414,0.263578,0.51538,0.461173,0.361293,0.984052,0.0456045,0.208408,0.598264,0.22518,0.163846,0.343501,0.899218,0.229122,0.00323069,0.690833,0.248669,0.950371,0.501641,0.850552,0.244864,0.598472,0.724198,0.132822,0.946782,0.477001,0.518436,0.356384,0.87558,0.628795,0.82444,0.735861,0.53631,0.813151,0.368192,0.12346,0.984876,0.486395,0.137918,0.42214,0.416422,0.992974,0.0262097,0.483573,0.292774,0.361719,0.0562919,0.468548,0.990176,0.255745,0.592049,0.772306,0.293162,0.186527,0.996239,0.492714,0.839297,0.753899,0.406864,0.703925,0.149182,0.953438,0.663607,0.204891,0.694311,0.550687,0.953171,0.487509,0.509307,0.725011,0.131997,0.854215,0.218299,0.278142,0.20504,0.312841,0.214989,0.810201,0.156232,0.813092,0.806259,0.0676442,0.836708,0.783372,0.952507,0.468899,0.24327,0.893735,0.0989797,0.0383482,0.333413,0.186084,0.0442564,0.653537,0.940011,0.0698281,0.519758,0.913423,0.871313,0.225391,0.159133,0.161614,0.78393,0.0454315,0.978025,0.881482,0.996927,0.671521,0.297613,0.0132895,0.211163,0.81837,0.608999,0.390023,0.200389,0.705128,0.239558,0.259181,0.612152,0.542737,0.226904,0.0391255,0.153357,0.466655,0.334725,0.276289,0.449681,0.132197,0.467382,0.178518,0.881587,0.5473,0.321123,0.47562,0.913081,0.589073,0.906406,0.441471,0.236848,0.172852,0.552085,0.832948,0.00997972,0.0296862,0.0144556,0.961829,0.457246,0.946635,0.636361,0.696389,0.360874,0.0693999,0.442297,0.843939,0.217954,0.120293,0.313201,0.0378173,0.0744085,0.67923,0.401167,0.173316,0.159831,0.62394,0.241025,0.292372,0.720138,0.409579,0.52513,0.0606114,0.650448,0.368546,0.715535,0.914109,0.57357,0.76938,0.289138,0.0794431,0.376344,0.394552,0.769346,0.306165,0.406552,0.267201,0.976,0.951257,0.823624,0.0985538,0.21381,0.691837,0.583815,0.455974,0.571136,0.53164,|0.996411,0.977561,0.791521,0.602284,0.339614,0.212452,0.462125,0.501275,0.543942,0.95633,0.674203,0.196422,0.242359,0.805922,0.258518,0.903433,0.399418,0.794734,0.942461,0.890412,0.482436,0.704248,0.537875,0.374644,0.387507,0.437658,0.069,0.715676,0.733631,0.582848,0.227379,0.246685,0.199086,0.298271,0.319187,0.458219,0.964537,0.632158,0.426958,0.902766,0.241556,0.738314,0.621822,0.40134,0.140769,0.921543,0.54816,0.361102,0.0115141,0.776977,0.717489,0.828418,0.346072,0.432197,0.986197,0.661124,0.941104,0.924024,0.0731844,0.231159,0.709216,0.971668,0.921785,0.703132,0.231901,0.587063,0.0530766,0.684362,0.428799,0.778066,0.377929,0.351707,0.784908,0.115309,0.616547,0.86064,0.922523,0.722783,0.580023,0.11462,0.184211,0.358413,0.279051,0.496273,0.0217382,0.0910153,0.237605,0.647404,0.0198596,0.59756,0.864945,0.193616,0.874374,0.532214,0.637946,0.917313,0.809714,0.371154,0.974337,0.758585,0.216748,0.0338755,0.56202,0.72625,0.482189,0.269501,0.00349033,0.728281,0.608671,0.92893,0.255445,0.873004,0.834431,0.234832,0.697497,0.30071,0.507831,0.176546,0.830445,0.604222,0.68963,0.585301,0.731271,0.912606,0.561637,0.186725,0.124945,0.567758,0.507821,0.728752,0.418211,0.334629,0.275276,0.68863,0.0543892,0.196445,0.0229287,0.411633,0.734428,0.510916,0.387416,0.544747,0.56696,0.143387,0.23801,0.925331,0.645695,0.649183,0.477015,0.984282,0.534031,0.973933,0.699978,0.350495,0.26138,0.116467,0.968806,0.531461,0.915944,0.544983,0.778777,0.00644094,0.961967,0.47531,0.22949,0.466767,0.341027,0.528726,0.64512,0.327616,0.845725,0.347872,0.0998617,0.503149,0.842072,0.436147,0.301875,0.139171,0.914248,0.161637,0.403014,0.854071,0.569604,0.686405,0.770003,0.0644658,0.742008,0.765098,0.0177487,0.227393,0.511086,0.221496,0.128713,0.111731,0.924624,0.26526,0.783568,0.886839,0.142997,0.613383,0.361601,0.148635,0.574345,0.0181231,0.736104,0.550504,0.706949,0.182241,0.313345,0.70913,0.186021,0.138612,0.945181,0.0200913,0.0843538,0.694533,0.100308,0.583266,0.410118,0.359909,0.666908,0.687146,0.354954,0.353502,0.247179,0.767429,0.803797,0.991335,0.00114799,0.130107,0.930327,0.160765,0.398939,0.717877,0.736879,0.474638,0.247677,0.434586,0.301857,0.265988,0.211603,0.376785,0.953125,0.0150656,0.974598,0.697536,0.0982371,0.91242,0.885342,0.109185,0.212562,0.372605,0.292802,0.178053,0.479457,0.890645,0.454479,0.943782,0.693202,0.493878,0.214635,0.357524,0.9412,0.0812744,0.224754,0.838091,0.306731,0.950144,0.449577,0.282865,0.480415,0.471074,0.153423,0.0611823,0.336362,0.675253,0.98734,0.762872,0.253936,0.310036,0.703327,0.121288,0.0561683,0.941081,0.667484,0.595981,0.988525,0.632938,0.87647,0.461441,0.621181,0.822282,0.367119,0.103656,0.0335372,0.025279,0.173224,0.817881,0.132419,0.472335,0.892757,0.628991,0.811183,0.964165,0.503447,0.613853,0.512766,0.976255,0.305965,0.887263,0.0429686,0.0413846,0.771359,0.517477,0.052946,0.526663,0.377362,0.0895173,0.637367,0.883853,0.468406,0.31132,0.349048,0.210835,0.627886,0.882698,0.408082,0.903452,0.735138,0.807273,0.701179,0.694003,0.00830919,0.964895,0.139097,0.478678,0.808269,0.951333,0.830012,0.689162,0.97697,0.767126,0.512086,0.933483,0.993803,0.0483472,0.286759,0.469423,0.249534,0.379534,0.539758,0.729369,0.888213,0.0715077,0.42562,0.97539,0.276699,0.945678,0.0679407,0.498948,0.396624,0.939956,0.658731,0.540326,0.621911,0.152967,0.0265102,0.0468916,0.517137,0.456621,0.927182,0.433793,0.753317,0.181051,0.224779,0.335246,0.371148,0.527633,0.583291,0.253174,0.7406,0.725186,0.870738,0.396278,0.761616,0.748071,0.0771487,0.232551,0.0626154,0.680604,0.0950491,0.421082,0.55187,0.857946,0.564086,0.282282,0.604776,0.248622,0.347683,0.517572,0.760617,0.534731,0.0790477,0.254833,0.831171,0.038812,0.963412,0.0685606,0.480029,0.904319,0.955137,0.0532206,0.348104,0.276922,0.654825,0.346614,0.644352,0.419377,0.356866,0.0905464,0.565994,0.180328,0.137444,0.40119,0.312801,0.15925,0.822241,0.550154,0.992761,0.144766,0.800993,0.824858,0.143355,0.9983,0.363481,0.710425,0.647947,0.965254,0.259019,0.358895,0.361766,0.717175,0.0325093,0.00238937,0.198519,0.452248,0.302611,0.686802,0.517778,0.235975,0.0901408,0.453735,0.312337,0.855846,0.606662,0.24481,0.327855,0.619588,0.0860782,0.797288,0.829465,0.836032,0.810218,0.680075,0.684022,0.806385,0.894066,0.0823964,0.153326,0.784094,0.426747,0.707165,0.774926,0.368663,0.770126,0.711159,0.549493,0.142759,0.00208122,0.624994,0.695024,0.158379,0.248999,0.402386,0.582832,0.968832,0.162962,0.168873,0.386506,0.669267,0.554601,0.158352,0.646021,0.899736,0.844423,0.125714,0.977987,0.481318,0.324352,0.796345,0.830988,0.968362,0.419077,0.370397,0.668471,0.632767,0.222413,0.976008,0.590317,0.0560228,0.126826,0.00421768,0.623035,0.855138,0.103232,0.960955,0.495418,0.892047,0.596389,0.313311,0.905912,0.249145,0.907679,0.107652,0.906848,0.209087,0.808914,0.288168,0.196966,0.857113,0.933423,0.3011,0.475304,0.775971,0.327685,0.460975,0.526116,0.609619,0.251464,0.919763,0.413625,0.217807,0.399529,0.167112,0.89955,0.621537,0.625543,0.858142,0.221522,0.614893,0.242311,0.465935,0.428077,0.365394,0.46856,0.378908,0.496104,0.870463,0.85262,0.591896,0.522843,0.619118,0.343776,0.883306,0.545805,0.0576303,0.543112,0.47957,0.0569491,0.0158269,0.154088,0.923107,0.382908,0.539052,0.209036,0.460565,0.838875,0.619969,0.921193,0.0754672,0.820625,0.482806,0.604075,0.916592,0.0272423,0.712138,0.303446,0.110341,0.232832,0.256716,0.967414,0.298978,0.527782,0.366641,0.47786,0.784765,0.207597,0.118829,0.366204,0.475177,0.470601,0.0209336,0.809535,0.742188,0.425253,0.0434657,0.713073,0.0122405,0.545635,0.743622,0.621901,0.774113,0.312798,0.0456797,0.378115,0.0418563,0.185284,0.535593,0.590754,0.0169274,0.860067,0.976347,0.468845,0.845317,0.0164726,0.532246,0.866508,0.429314,0.121472,0.256928,0.826405,0.0134864,0.402499,0.150151,0.696475,0.144352,0.92506,0.329555,0.357029,0.174184,0.0784584,0.0569695,0.514846,0.871994,0.100687,0.314402,0.254876,0.224404,0.464741,0.0297506,0.451527,0.726147,0.0134589,0.128696,0.875427,0.657013,0.749386,0.477725,0.808771,0.67895,0.2103,0.996265,0.237425,0.869785,0.239793,0.732677,0.260296,0.032019,0.0334268,0.911321,0.981807,0.824375,0.246413,0.104528,0.661555,0.792677,0.324979,0.340504,0.284539,0.0491185,0.43039,0.390483,0.662124,0.785641,0.0587959,0.781886,0.379061,0.551848,0.975481,0.572976,0.0480503,0.455119,0.880218,0.724538,0.0609295,0.915244,0.685359,0.38228,0.618391,0.0811356,0.212562,0.336175,0.927936,0.125734,0.595877,0.628065,0.253865,0.449857,0.432056,0.125273,0.505001,0.175549,0.79878,0.838116,0.437906,0.367628,0.482936,0.868993,0.820246,0.706874,0.644866,0.544628,0.180201,0.0455816,0.0362355,0.789218,0.838089,0.298516,0.819601,0.545464,0.863866,0.554845,0.441074,0.474211,0.886023,0.684427,0.882088,0.681558,0.252448,0.529595,0.0751508,0.295567,0.57112,0.868057,0.0121071,0.886031,0.0137621,0.909515,0.663451,0.942629,0.78883,0.379379,0.9825,0.440253,0.118307,0.0671618,0.356736,0.451618,0.700775,0.0393836,0.596009,0.198243,0.934322,0.967095,0.360278,0.430674,0.58811,0.737543,0.133263,0.549101,0.100112,0.863873,0.575175,0.787106,0.17568,0.151238,0.673884,0.0311999,0.583501,0.56284,0.820567,0.88493,0.153601,0.672567,0.80719,0.7069,0.511378,0.106688,0.329122,0.539404,0.925804,0.306395,0.342302,0.636649,0.636827,0.169139,0.213759,0.170696,0.130516,0.343982,0.111049,0.000590146,0.999286,0.396606,0.525589,0.548478,0.864819,0.76937,0.414347,0.00301319,0.167985,0.146595,0.308916,0.911308,0.639455,0.383862,0.0270087,0.115936,0.496642,0.82014,0.123825,0.111836,0.788026,0.305106,0.417533,0.698688,0.643379,0.30191,0.568881,0.449965,0.287041,0.173246,0.497783,0.145216,0.586101,0.186941,0.516571,0.390452,0.321685,0.27991,0.175555,0.432677,0.694544,0.997247,0.395528,0.301762,0.422359,0.488351,0.00269294,0.823558,0.596557,0.599385,0.398542,0.252994,0.288682,0.60475,0.564072,0.0278035,0.405931,0.701406,0.151423,0.0903589,0.408459,0.734526,0.345751,0.458444,0.498851,0.65324,0.483173,0.38315,0.198873,0.654674,0.522283,0.255901,0.774152,0.198909,0.745799,0.539204,0.059946,0.508806,0.705732,0.412433,0.226872,0.771332,0.876125,0.74396,0.343489,0.636515,0.785405,0.574846,0.465737,0.556866,0.669124,0.039758,0.24161,0.18498,0.726885,0.00473666,0.0189629,0.275901,0.420687,0.330952,0.705807,0.972133,0.312191,0.744345,0.380649,0.495059,0.35088,0.556299,0.430915,0.318885,0.573314,0.216183,0.773031,0.0618461,0.615038,0.861504,0.230743,0.358893,0.956945,0.418591,0.89222,0.166017,0.941892,0.771895,0.0508133,0.864361,0.375917,0.512464,0.785211,0.339421,0.601251,0.395407,0.847352,0.991243,0.99694,0.746703,0.839471,0.693401,0.708642,0.662174,0.576798,0.44931,0.382323,0.0547435,0.760452,0.828034,0.870193,0.651303,0.0790914,0.890425,0.0882242,0.178508,0.461319,0.422327,0.795238,0.201996,0.805973,0.223361,0.265424,0.0540839,0.00838131,0.134721,0.126379,0.423813,0.247231,0.31615,0.189799,0.185254,0.591,0.579674,0.912152,0.601167,0.906869,0.418594,0.795051,0.284382,0.68098,0.493969,0.367845,0.254224,0.326496,0.501571,0.453385,0.844997,0.0975754,0.872546,0.815528,0.454012,0.93195,0.539818,0.809157,0.76994,0.59965,0.620351,0.944536,0.535612,0.10953,0.290874,|0.426413,0.648754,0.688877,0.078311,0.561637,0.796998,0.582167,0.752814,0.188836,0.209107,0.94051,0.125678,0.901706,0.77055,0.958366,0.60106,0.515851,0.0242183,0.101438,0.28174,0.593266,0.721683,0.624034,0.810156,0.698232,0.843572,0.13444,0.588511,0.57397,0.507554,0.989736,0.797111,0.404042,0.592428,0.567058,0.448539,0.436119,0.663869,0.398331,0.838725,0.98055,0.607675,0.959914,0.625187,0.143245,0.613483,0.672679,0.210767,0.325745,0.100845,0.905876,0.754976,0.736551,0.412155,0.359505,0.962999,0.0813069,0.863907,0.504961,0.386111,0.173615,0.364332,0.525757,0.745222,0.658027,0.779959,0.89578,0.050319,0.349553,0.298438,0.165849,0.218752,0.646485,0.615474,0.0756866,0.113663,0.347115,0.67524,0.504291,0.306231,0.0113857,0.84325,0.248948,0.634244,0.778811,0.310161,0.200199,0.416434,0.556702,0.228511,0.751755,0.628878,0.401419,0.800602,0.864313,0.959392,0.177641,0.863113,0.884713,0.0414099,0.612146,0.062719,0.414311,0.200346,0.0672119,0.0747517,0.767268,0.882185,0.830332,0.168103,0.000493824,0.99623,0.676162,0.418802,0.741811,0.824576,0.661783,0.259916,0.318437,0.106399,0.725039,0.945346,0.933995,0.245831,0.86023,0.881481,0.556444,0.525602,0.678965,0.592509,0.638619,0.648153,0.97494,0.471807,0.383277,0.173863,0.740256,0.362847,0.134836,0.661002,0.101805,0.512997,0.291848,0.141321,0.885536,0.77474,0.343641,0.525563,0.695062,0.775544,0.319636,0.513461,0.198023,0.301698,0.675754,0.363499,0.647066,0.881581,0.560931,0.669651,0.0432947,0.491007,0.493266,0.444689,0.404141,0.264557,0.566398,0.0604345,0.576795,0.229153,0.611756,0.667399,0.639884,0.206961,0.562995,0.430387,0.371044,0.0283214,0.0606779,0.589025,0.0670502,0.397565,0.745183,0.446498,0.940563,0.785612,0.827633,0.602119,0.225789,0.319937,0.33274,0.652944,0.454221,0.782601,0.519118,0.144658,0.48062,0.21867,0.593405,0.153478,0.127204,0.493031,0.284939,0.970038,0.41198,0.511775,0.862848,0.15427,0.573816,0.317267,0.544107,0.212486,0.209969,0.68318,0.322988,0.0557194,0.442939,0.326997,0.359233,0.545224,0.520296,0.0535353,0.253364,0.498021,0.989039,0.607214,0.33385,0.150891,0.251828,0.86984,0.820959,0.75643,0.00112867,0.694638,0.196696,0.965564,0.9768,0.42234,0.62779,0.0592791,0.936309,0.621341,0.741332,0.501785,0.877958,0.470607,0.245037,0.767367,0.205369,0.223787,0.779947,0.193178,0.428435,0.882241,0.91874,0.132662,0.023499,0.989376,0.157755,0.693457,0.800825,0.979089,0.523825,0.20543,0.747884,0.549807,0.978359,0.53187,0.0312109,0.414927,0.443468,0.197388,0.199954,0.89577,0.228422,0.677415,0.914418,0.311476,0.0155549,0.486249,0.956724,0.00315112,0.65369,0.718827,0.0321156,0.181783,0.820258,0.748623,0.55723,0.211464,0.135555,0.0727449,0.53794,0.0310081,0.152351,0.488794,0.217045,0.703621,0.522999,0.919685,0.523632,0.833076,0.583881,0.399879,0.01724,0.801864,0.645893,0.177123,0.136618,0.363903,0.188643,0.814976,0.977359,0.837031,0.373591,0.475918,0.157695,0.0885032,0.460142,0.750131,0.327515,0.524142,0.93437,0.952771,0.717408,0.958621,0.908787,0.441225,0.230759,0.3314,0.939108,0.895066,0.0624326,0.268519,0.905122,0.919196,0.0587956,0.075798,0.148622,0.136559,0.928415,0.560647,0.91974,0.761118,0.818848,0.00919396,0.379653,0.00488883,0.757603,0.90642,0.973901,0.717412,0.821938,0.437351,0.390476,0.333993,0.474413,0.370318,0.773355,0.431812,0.0135093,0.735099,0.378866,0.179394,0.979196,0.158879,0.0696333,0.022831,0.967842,0.976057,0.428759,0.982534,0.198969,0.565247,0.0305344,0.199772,0.506201,0.0939147,0.764494,0.0242202,0.490186,0.83992,0.282939,0.0933917,0.712517,0.703542,0.997325,0.853386,0.649577,0.0671386,0.414477,0.571166,0.811066,0.300382,0.934685,0.214437,0.104211,0.488792,0.812497,0.0722758,0.844148,0.621546,0.922663,0.90732,0.275104,0.181678,0.150451,0.572243,0.629414,0.342088,0.758959,0.501926,0.402171,0.295866,0.225637,0.360638,0.555406,0.891492,0.415299,0.814409,0.271408,0.0302298,0.539588,0.759342,0.791,0.919764,0.42058,0.290327,0.108036,0.336939,0.934194,0.542512,0.115765,0.200047,0.948993,0.867272,0.621116,0.0662783,0.958307,0.0424703,0.760511,0.388331,0.334436,0.928973,0.961545,0.600195,0.797333,0.981968,0.0470884,0.669996,0.367951,0.645586,0.679252,0.487364,0.0656034,0.58501,0.0845551,0.344162,0.194169,0.306318,0.44711,0.546191,0.141424,0.0598177,0.308061,0.0420826,0.287391,0.917466,0.697121,0.307215,0.673411,0.384816,0.91073,0.560425,0.927134,0.598686,0.798762,0.633864,0.371712,0.573148,0.583192,0.133861,0.431529,0.773943,0.641462,0.742456,0.0180745,0.256371,0.371779,0.636703,0.370067,0.602409,0.917329,0.721574,0.868955,0.644588,0.0649744,0.911563,0.718661,0.906694,0.242537,0.944784,0.791849,0.340931,0.335297,0.603537,0.37709,0.0843481,0.735766,0.0661504,0.798178,0.0951198,0.259948,0.323934,0.680659,0.614824,0.0804074,0.243502,0.814797,0.979625,0.810646,0.0394576,0.517962,0.993766,0.442832,0.704136,0.960234,0.670811,0.394712,0.354971,0.283275,0.592249,0.472289,0.665379,0.381668,0.289705,0.378193,0.272564,0.534185,0.794329,0.25499,0.325221,0.939973,0.609619,0.998944,0.0640591,0.902024,0.751499,0.298513,0.788228,0.788518,0.700056,0.465638,0.895548,0.180259,0.236525,0.638958,0.61036,0.967413,0.808013,0.0898891,0.409415,0.440741,0.970444,0.0157707,0.410825,0.890471,0.23361,0.277376,0.0943796,0.487563,0.995344,0.0117598,0.551407,0.530359,0.306726,0.492134,0.664706,0.0109491,0.895035,0.15186,0.401581,0.535868,0.146912,0.872297,0.266211,0.392361,0.605952,0.526276,0.398247,0.240126,0.8315,0.0869194,0.0180648,0.629722,0.257647,0.46729,0.67479,0.410537,0.524847,0.723688,0.545569,0.180692,0.617172,0.81481,0.456033,0.11639,0.125144,0.527902,0.385238,0.596951,0.796317,0.791743,0.890647,0.429364,0.622594,0.382164,0.784798,0.246935,0.267857,0.239473,0.903453,0.814971,0.41981,0.738795,0.966671,0.156473,0.904602,0.895903,0.572158,0.634618,0.523848,0.454142,0.988845,0.169784,0.564484,0.107504,0.868716,0.243942,0.408533,0.827246,0.47764,0.705558,0.431809,0.867479,0.763949,0.732426,0.838826,0.868033,0.594391,0.230725,0.514753,0.948181,0.358463,0.704641,0.557496,0.264125,0.176333,0.46705,0.60346,0.043996,0.791219,0.0449501,0.484245,0.619481,0.608045,0.806413,0.0743251,0.572856,0.20929,0.34328,0.0236902,0.857224,0.739369,0.653803,0.117346,0.402862,0.634869,0.627594,0.873747,0.588303,0.552272,0.44845,0.0837562,0.0927587,0.772604,0.375192,0.58452,0.252806,0.47318,0.898853,0.370683,0.447556,0.403438,0.0394383,0.358479,0.246306,0.840964,0.965547,0.731301,0.367969,0.327223,0.241041,0.257076,0.00268203,0.387985,0.877636,0.198055,0.689353,0.981908,0.430108,0.744888,0.21126,0.833658,0.382218,0.65109,0.919656,0.349304,0.136165,0.755317,0.839682,0.619356,0.097333,0.983992,0.170477,0.7203,0.328642,0.518478,0.30401,0.123585,0.696915,0.242176,0.267606,0.271619,0.175798,0.908012,0.429825,0.601946,0.168864,0.222914,0.193513,0.924133,0.697028,0.405665,0.471191,0.427228,0.932617,0.0845785,0.0465642,0.114943,0.620102,0.0995156,0.0977709,0.278436,0.58728,0.707956,0.449419,0.0597512,0.734976,0.158469,0.121846,0.264027,0.257314,0.464051,0.816985,0.922581,0.524544,0.240711,0.0397363,0.657659,0.139668,0.997892,0.863949,0.249114,0.906814,0.930929,0.44097,0.496344,0.259388,0.633826,0.059209,0.232485,0.633373,0.387804,0.114355,0.984338,0.0269254,0.85504,0.653691,0.252182,0.991039,0.507188,0.734015,0.957059,0.349098,0.681781,0.905415,0.481701,0.222339,0.410486,0.784111,0.0917275,0.225713,0.474455,0.801635,0.80285,0.638541,0.98584,0.335203,0.289384,0.41886,0.613922,0.628636,0.317197,0.938317,0.876524,0.0188479,0.68459,0.184403,0.90896,0.783575,0.328808,0.507113,0.215474,0.237698,0.331064,0.519729,0.482448,0.78841,0.158005,0.461573,0.248649,0.251467,0.894655,0.0563885,0.883223,0.762498,0.983591,0.2317,0.660497,0.461478,0.444298,0.974575,0.483428,0.169032,0.394665,0.0614545,0.883669,0.537482,0.574779,0.066577,0.799506,0.781037,0.348253,0.27578,0.338016,0.528208,0.974479,0.305683,0.583939,0.487708,0.920493,0.64554,0.847736,0.432443,0.115278,0.102219,0.440942,0.904121,0.780957,0.181529,0.334731,0.648661,0.865556,0.776236,0.755786,0.523099,0.632805,0.540481,0.0909336,0.787106,0.719936,0.476235,0.873218,0.570916,0.432351,0.709102,0.951414,0.879157,0.669218,0.96717,0.112617,0.361135,0.600267,0.896861,0.338718,0.739266,0.424945,0.220473,0.35727,0.961875,0.143817,0.481893,0.314065,0.78417,0.739108,0.337098,0.744601,0.199333,0.695038,0.255743,0.04826,0.882596,0.583625,0.115631,0.0203156,0.295405,0.243878,0.874607,0.570585,0.234931,0.725569,0.201781,0.593307,0.786368,0.0072785,0.557769,0.182799,0.947951,0.67697,0.222696,0.863532,0.806909,0.909034,0.375266,0.684464,0.818339,0.00107211,0.984688,0.767058,0.695265,0.0645563,0.942996,0.658201,0.796322,0.18347,0.325657,0.705321,0.815982,0.477598,0.569221,0.191012,0.875198,0.0359895,0.814198,0.167565,0.0402868,0.672597,0.847462,0.948586,0.948247,0.158119,0.40748,0.675752,0.449888,0.288426,0.788764,0.646001,0.447075,0.383243,0.795295,0.787706,0.716061,0.129047,0.285139,0.437286,0.427249,0.638279,0.1725,0.499387,0.0963795,0.400493,0.296114,0.43199,0.153545,0.176522,0.554811,0.991643,0.80366,0.253668,0.420702,0.940958,0.000905931,0.279662,0.995126,0.884632,0.0576007,0.328262,0.776624,0.616554,|0.610388,0.996505,0.292342,0.401972,0.0906253,0.381869,0.707734,0.112913,0.417141,0.175293,0.181082,0.234188,0.091702,0.782456,0.798315,0.207248,0.250997,0.880366,0.343123,0.00151819,0.647692,0.787533,0.208756,0.258658,0.19917,0.284277,0.846481,0.162837,0.402178,0.102464,0.401561,0.478934,0.533572,0.938572,0.813179,0.0203558,0.449707,0.473845,0.020702,0.0563838,0.936433,0.06387,0.0443026,0.581751,0.980619,0.989939,0.912195,0.452732,0.835779,0.146617,0.175919,0.497361,0.558824,0.366522,0.632512,0.404307,0.166247,0.101999,0.302954,0.287178,0.252925,0.577057,0.908132,0.106079,0.863807,0.3103,0.519551,0.502113,0.824294,0.0485954,0.425113,0.117867,0.288131,0.94554,0.55805,0.915822,0.722463,0.498903,0.907877,0.36383,0.264349,0.936819,0.989608,0.402015,0.0172674,0.418092,0.582459,0.957123,0.538361,0.41607,0.99453,0.0954442,0.708283,0.716378,0.667198,0.50344,0.942583,0.996198,0.504364,0.338093,0.927571,0.287952,0.233013,0.676724,0.232769,0.0388926,0.747391,0.936446,0.466518,0.961924,0.601994,0.296571,0.362568,0.95807,0.717095,0.613028,0.781972,0.19862,0.509105,0.0322341,0.25609,0.830988,0.215992,0.0695277,0.327959,0.237273,0.038632,0.226852,0.201205,0.712471,0.0673122,0.250207,0.387649,0.635755,0.851962,0.793797,0.346342,0.324789,0.268868,0.869048,0.791554,0.918937,0.00106025,0.507656,0.17395,0.66479,0.669901,0.283959,0.466938,0.392403,0.956867,0.220893,0.39464,0.439908,0.181071,0.331587,0.970055,0.147677,0.431611,0.771097,0.778694,0.954084,0.482856,0.290872,0.198768,0.819978,0.795971,0.544038,0.300545,0.710694,0.305234,0.591878,0.112595,0.230628,0.478965,0.243735,0.59559,0.267925,0.0607591,0.371222,0.595804,0.871392,0.538333,0.496279,0.328844,0.98393,0.364827,0.804822,0.0808291,0.0410762,0.150574,0.442145,0.594194,0.20363,0.481424,0.51803,0.0710307,0.107259,0.842824,0.748201,0.736807,0.859166,0.556683,0.741801,0.313586,0.833202,0.950655,0.0970985,0.00643981,0.0557349,0.102372,0.0692628,0.942846,0.842889,0.174179,0.666879,0.453072,0.926916,0.484303,0.78603,0.244715,0.0587435,0.342243,0.273356,0.281314,0.363898,0.0649423,0.642319,0.756601,0.414273,0.00387841,0.143477,0.233548,0.97601,0.390546,0.21589,0.433775,0.605108,0.669345,0.858987,0.633295,0.755381,0.58814,0.911873,0.555857,0.366692,0.39567,0.139819,0.611888,0.226497,0.71072,0.546448,0.249385,0.714667,0.566432,0.570776,0.158534,0.922439,0.927492,0.143163,0.563058,0.938501,0.330273,0.976413,0.716525,0.154851,0.282711,0.737069,0.912479,0.974732,0.372952,0.113072,0.790609,0.208223,0.851336,0.251785,0.566569,0.400409,0.250061,0.237196,0.468651,0.644652,0.520402,0.180805,0.951553,0.642782,0.582437,0.179785,0.424133,0.554462,0.416557,0.0982936,0.0598712,0.813204,0.091848,0.947075,0.805578,0.377937,0.776622,0.504097,0.0415111,0.867786,0.219641,0.403117,0.541063,0.663068,0.61562,0.439902,0.187384,0.652063,0.780844,0.446517,0.994239,0.0705733,0.843116,0.610265,0.0595427,0.487518,0.387719,0.802145,0.56426,0.445828,0.0751274,0.513878,0.282275,0.113243,0.208797,0.0307249,0.146918,0.799074,0.545123,0.921685,0.572512,0.775249,0.398255,0.0816786,0.355098,0.790654,0.63946,0.4084,0.766357,0.752066,0.779152,0.932229,0.173792,0.296558,0.262722,0.462175,0.976945,0.710623,0.431493,0.571177,0.701022,0.866663,0.79543,0.227116,0.742378,0.0531946,0.159795,0.60853,0.582033,0.590393,0.28864,0.140008,0.0611954,0.275565,0.455326,0.469204,0.022114,0.0665396,0.608833,0.673516,0.516435,0.386983,0.33509,0.147828,0.931818,0.448316,0.71128,0.726667,0.950219,0.846414,0.83946,0.143557,0.233923,0.209935,0.967429,0.939707,0.0307364,0.917938,0.916236,0.381523,0.384123,0.702908,0.00085628,0.767303,0.146357,0.0207982,0.672997,0.858023,0.167992,0.201953,0.751556,0.449128,0.0705603,0.496189,0.330533,0.681362,0.601326,0.618642,0.974755,0.859546,0.526957,0.170983,0.342829,0.860764,0.997548,0.616413,0.937983,0.644593,0.455136,0.0708957,0.864959,0.452551,0.0681401,0.814273,0.222978,0.734718,0.276729,0.0652635,0.94146,0.285029,0.95438,0.0517068,0.255541,0.0798766,0.470619,0.841582,0.346148,0.675629,0.64649,0.171351,0.750613,0.292053,0.740086,0.580492,0.436627,0.558426,0.730252,0.250326,0.0438759,0.801281,0.319468,0.383546,0.38308,0.151025,0.611542,0.39035,0.841327,0.193715,0.596609,0.931386,0.993201,0.916912,0.875655,0.260799,0.680184,0.0924923,0.503002,0.635368,0.0384334,0.188431,0.832161,0.10048,0.279231,0.14359,0.715402,0.137286,0.430219,0.757499,0.441127,0.270056,0.988406,0.997918,0.982892,0.348937,0.587561,0.080357,0.695932,0.537148,0.296145,0.721063,0.891343,0.139953,0.617332,0.468116,0.369778,0.835836,0.791896,0.292625,0.00480801,0.788044,0.192513,0.253244,0.147723,0.330101,0.600455,0.884628,0.895812,0.243393,0.554038,0.619803,0.392733,0.728297,0.284958,0.431444,0.909834,0.735728,0.342693,0.245586,0.998365,0.539659,0.605705,0.0544858,0.548914,0.219633,0.970321,0.342659,0.170968,0.264409,0.199343,0.0512224,0.645595,0.79825,0.0659804,0.499595,0.489086,0.517428,0.497719,0.497098,0.956887,0.210911,0.176373,0.853605,0.987737,0.217016,0.657202,0.417463,0.521254,0.735296,0.729781,0.11526,0.363503,0.68852,0.132894,0.180682,0.928767,0.219147,0.635114,0.579243,0.754174,0.569848,0.790674,0.967806,0.128999,0.781974,0.810416,0.996952,0.253197,0.562531,0.0975236,0.226758,0.461631,0.659708,0.343462,0.521633,0.249732,0.0441647,0.661091,0.271148,0.800811,0.462636,0.938811,0.218872,0.276886,0.966747,0.404663,0.979631,0.40415,0.269051,0.0180387,0.201093,0.504938,0.527909,0.41447,0.433147,0.372858,0.052873,0.225468,0.879299,0.911778,0.511081,0.799228,0.732991,0.442459,0.874832,0.414716,0.471089,0.121256,0.679763,0.328831,0.0705894,0.471785,0.261069,0.657265,0.420546,0.753291,0.00756776,0.416384,0.351745,0.964628,0.793622,0.741324,0.625637,0.700659,0.801811,0.430937,0.623802,0.429751,0.220339,0.739214,0.915385,0.344608,0.778655,0.491095,0.621024,0.636325,0.745615,0.868813,0.949657,0.581199,0.470378,0.0260052,0.531083,0.615583,0.479892,0.59847,0.40157,0.760439,0.95935,0.348419,0.408938,0.373645,0.908316,0.554238,0.66198,0.984458,0.389313,0.0644185,0.0757155,0.279801,0.164933,0.804325,0.258883,0.9127,0.34111,0.124734,0.0817974,0.647832,0.535041,0.761198,0.124166,0.593986,0.669683,0.717975,0.668242,0.986579,0.561772,0.306732,0.593783,0.688388,0.216263,0.836263,0.181347,0.567419,0.393286,0.2838,0.402586,0.305453,0.689812,0.900941,0.200787,0.129683,0.637144,0.596569,0.699898,0.558246,0.288518,0.349818,0.214554,0.242655,0.140562,0.331529,0.917646,0.655604,0.29583,0.467394,0.667316,0.037917,0.967773,0.636357,0.20153,0.753376,0.409968,0.257478,0.798129,0.178594,0.715662,0.165815,0.138806,0.101273,0.137704,0.19731,0.905814,0.0421684,0.0754485,0.303515,0.122437,0.134148,0.198174,0.989301,0.927133,0.920248,0.906854,0.814989,0.502574,0.252984,0.332023,0.18386,0.476297,0.732047,0.195654,0.472317,0.224408,0.912264,0.180734,0.714181,0.961303,0.0247752,0.821985,0.560743,0.609876,0.376919,0.232142,0.045294,0.269408,0.111924,0.0781526,0.635158,0.97456,0.519771,0.817435,0.531369,0.166605,0.257454,0.382987,0.0693551,0.0576501,0.980358,0.810102,0.581189,0.731706,0.0727747,0.319808,0.653104,0.182959,0.954409,0.616318,0.208174,0.566225,0.0073325,0.152785,0.447688,0.219201,0.209696,0.0388513,0.763549,0.941062,0.973547,0.240427,0.159837,0.716843,0.841763,0.85953,0.320693,0.718111,0.664718,0.186075,0.0955829,0.72889,0.208979,0.634404,0.78685,0.474305,0.532066,0.771096,0.971006,0.112801,0.945055,0.69292,0.838056,0.898518,0.59987,0.616734,0.621361,0.238997,0.883171,0.308276,0.454708,0.645607,0.897466,0.223982,0.279054,0.657297,0.760104,0.924279,0.330144,0.677521,0.751806,0.718758,0.511024,0.0487832,0.610122,0.80978,0.382297,0.683412,0.595131,0.57261,0.799902,0.266038,0.131972,0.791693,0.943703,0.768465,0.374241,0.669342,0.991397,0.551586,0.351485,0.406507,0.219293,0.547933,0.259943,0.846002,0.302892,0.690356,0.582749,0.95811,0.679273,0.637096,0.475507,0.527632,0.605749,0.598918,0.616765,0.67404,0.965081,0.166379,0.698417,0.957963,0.289982,0.147367,0.0855409,0.668548,0.459077,0.417628,0.187573,0.195032,0.293298,0.586106,0.781139,0.725463,0.927459,0.343625,0.488362,0.0793506,0.831796,0.426616,0.000101388,0.874843,0.681597,0.806868,0.261952,0.973569,0.315325,0.284184,0.479657,0.317559,0.881096,0.117356,0.215727,0.670436,0.0217419,0.52233,0.23876,0.62659,0.771122,0.465219,0.574309,0.465358,0.235763,0.389406,0.17279,0.643148,0.17226,0.626658,0.688063,0.625951,0.855229,0.129534,0.612027,0.524906,0.899585,0.366848,0.624267,0.675149,0.844572,0.64477,0.117861,0.785887,0.486513,0.40458,0.248724,0.679227,0.928856,0.797811,0.20706,0.372465,0.491857,0.0443926,0.13719,0.03455,0.949741,0.336874,0.933032,0.640745,0.619622,0.446608,0.45445,0.853844,0.0434168,0.00928867,0.666766,0.731759,0.0104292,0.0944271,0.497278,0.600632,0.726309,0.306917,0.764914,0.912017,0.278384,0.0682055,0.605073,0.599122,0.649244,0.108404,0.146731,0.109686,0.00782603,0.369524,0.388317,0.692588,0.246704,0.459295,0.513786,0.0649399,0.830828,0.0171574,0.436834,0.767013,0.228941,0.07205,0.771609,0.388627,0.492772,0.970734,0.317321,0.809787,0.875045,0.56812,0.276842,0.830222,0.793034,0.0314956,0.357314,0.746128,0.440495,0.965492,|0.703488,0.350401,0.194753,0.982791,0.837989,0.583493,0.94547,0.576264,0.431599,0.233443,0.959794,0.602097,0.281228,0.51469,0.437679,0.62725,0.519794,0.8942,0.484683,0.666471,0.717259,0.743864,0.276853,0.279173,0.62343,0.0202405,0.489905,0.498316,0.3138,0.316133,0.580883,0.64263,0.330369,0.637435,0.440081,0.84537,0.180002,0.578132,0.478455,0.245974,0.952026,0.80297,0.721085,0.326934,0.544131,0.139878,0.745545,0.306322,0.449481,0.395812,0.0250019,0.287456,0.854851,0.529735,0.321481,0.221556,0.274704,0.21848,0.939341,0.395107,0.0359044,0.640468,0.380901,0.286073,0.71296,0.357328,0.217802,0.522365,0.236946,0.742327,0.597816,0.40591,0.650632,0.154759,0.687796,0.0120289,0.502942,0.433556,0.676804,0.940285,0.181418,0.0378419,0.545059,0.625974,0.703422,0.911895,0.172605,0.25031,0.976433,0.141363,0.730158,0.0433589,0.985678,0.54265,0.404386,0.832007,0.537454,0.114429,0.575439,0.838268,0.537934,0.405874,0.513157,0.446353,0.85656,0.610747,0.64465,0.201704,0.901006,0.727148,0.612616,0.965105,0.0587124,0.157636,0.455139,0.249109,0.341816,0.200273,0.0842025,0.668659,0.695643,0.510471,0.259741,0.361359,0.0511644,0.761491,0.102524,0.934335,0.614604,0.164224,0.0608006,0.855978,0.679861,0.0409061,0.384873,0.27539,0.704081,0.529395,0.444241,0.618425,0.203525,0.656197,0.487261,0.0417027,0.961734,0.382684,0.688933,0.279832,0.699103,0.383631,0.85821,0.193156,0.162647,0.417944,0.10665,0.626946,0.477065,0.886939,0.934617,0.750314,0.870757,0.0898439,0.983827,0.500076,0.0792724,0.245236,0.128056,0.20188,0.0909134,0.308572,0.205053,0.68854,0.751477,0.488343,0.994261,0.734537,0.360838,0.88533,0.976425,0.216833,0.109308,0.352698,0.689027,0.794194,0.176775,0.531472,0.575596,0.293375,0.217943,0.239821,0.772799,0.153033,0.0248342,0.979422,0.387944,0.0927551,0.670714,0.0398425,0.914628,0.786028,0.843682,0.0587146,0.600883,0.424621,0.992379,0.308006,0.309501,0.0318406,0.0443311,0.0385768,0.947474,0.543592,0.765294,0.202735,0.67706,0.964577,0.678013,0.772401,0.0621303,0.670192,0.0364724,0.222088,0.0532281,0.631876,0.488455,0.418268,0.0244488,0.243913,0.710597,0.214575,0.126752,0.587973,0.617352,0.571031,0.0936079,0.771642,0.276301,0.474226,0.0994084,0.399636,0.471817,0.731032,0.963008,0.559009,0.374823,0.529631,0.425564,0.0137928,0.739072,0.204134,0.685704,0.370372,0.981409,0.664555,0.0694849,0.940075,0.285377,0.0601402,0.174521,0.531687,0.188928,0.841583,0.250862,0.887075,0.658817,0.350865,0.792124,0.954145,0.998968,0.233917,0.22556,0.999858,0.299493,0.402493,0.5957,0.345805,0.243028,0.374504,0.439904,0.70221,0.940498,0.350808,0.468764,0.30793,0.72819,0.226015,0.35072,0.610852,0.0617229,0.944563,0.482958,0.319581,0.288256,0.29006,0.214718,0.763498,0.953651,0.105529,0.475107,0.677171,0.999614,0.682657,0.625797,0.0851182,0.352235,0.271183,0.691018,0.0839416,0.462136,0.0684073,0.446092,0.627901,0.920747,0.953868,0.337192,0.49009,0.730796,0.0788558,0.771007,0.903073,0.818597,0.906202,0.0941516,0.44812,0.201621,0.716564,0.516703,0.93649,0.356764,0.530833,0.52358,0.388865,0.638886,0.282544,0.101163,0.824215,0.659321,0.685266,0.00329173,0.695822,0.0645834,0.778605,0.716395,0.291804,0.754438,0.537123,0.859793,0.0711604,0.059334,0.752891,0.514129,0.35739,0.631549,0.931096,0.798447,0.556077,0.0043627,0.159083,0.427801,0.346204,0.240112,0.257615,0.125438,0.517816,0.91617,0.275594,0.709765,0.137518,0.559745,0.168756,0.857703,0.883561,0.534899,0.603895,0.0865623,0.995833,0.397032,0.309673,0.0299292,0.290588,0.777089,0.140871,0.46583,0.508867,0.876864,0.913537,0.72216,0.342979,0.218275,0.142606,0.254587,0.0115307,0.105905,0.753774,0.418183,0.980952,0.600017,0.704194,0.237652,0.146434,0.217552,0.0126603,0.954583,0.298153,0.452886,0.978764,0.423815,0.770812,0.722886,0.939466,0.60281,0.862359,0.302454,0.727765,0.331143,0.922855,0.472926,0.109598,0.0797529,0.52506,0.877648,0.656853,0.0603872,0.329146,0.496184,0.994411,0.465582,0.216416,0.455952,0.899972,0.00685871,0.163227,0.168207,0.550045,0.627943,0.244846,0.44422,0.304466,0.88961,0.216693,0.327593,0.0786933,0.0340084,0.943219,0.977864,0.61426,0.356785,0.977139,0.739188,0.120966,0.924006,0.287577,0.496027,0.149948,0.50148,0.3455,0.522299,0.530844,0.955445,0.271428,0.610667,0.0479977,0.0875827,0.769351,0.409148,0.0395071,0.605069,0.383012,0.806451,0.479678,0.732941,0.544615,0.0772695,0.109464,0.819276,0.963408,0.640249,0.00396413,0.152122,0.409551,0.966162,0.441187,0.41747,0.828516,0.413978,0.28552,0.909923,0.954586,0.0797046,0.840935,0.809687,0.458648,0.403564,0.982525,0.0294909,0.579585,0.728609,0.971408,0.575966,0.0210014,0.661206,0.883509,0.389923,0.033248,0.200891,0.151606,0.203098,0.324655,0.380164,0.976077,0.658065,0.72748,0.0603213,0.0888977,0.586692,0.171103,0.752563,0.755015,0.199366,0.865326,0.900672,0.912151,0.0467342,0.971125,0.925845,0.664911,0.647194,0.0580715,0.0752236,0.470911,0.336623,0.654648,0.290183,0.545762,0.771237,0.895525,0.269539,0.937233,0.0612974,0.330867,0.732744,0.969856,0.648049,0.845898,0.384132,0.644863,0.567661,0.0567406,0.926523,0.0706489,0.235657,0.220897,0.95449,0.785892,0.934054,0.751616,0.96737,0.785873,0.0752001,0.489936,0.515026,0.864044,0.0978196,0.985029,0.814465,0.876792,0.359888,0.232651,0.995808,0.572846,0.676347,0.296717,0.213118,0.230943,0.763663,0.495724,0.0926749,0.0448205,0.760804,0.0399162,0.244371,0.819328,0.342385,0.198772,0.703997,0.0969141,0.749178,0.684356,0.662589,0.955127,0.849682,0.653251,0.176696,0.262771,0.613392,0.827152,0.0920191,0.846295,0.870976,0.887832,0.784194,0.605239,0.123768,0.81859,0.0422614,0.572771,0.331195,0.884978,0.801295,0.859098,0.214983,0.628669,0.644455,0.279548,0.409677,0.618359,0.955767,0.787419,0.227746,0.0233722,0.317913,0.154715,0.564063,0.622832,0.427847,0.394361,0.306082,0.144158,0.617381,0.78757,0.133438,0.525065,0.923223,0.922815,0.00391066,0.17541,0.542034,0.200353,0.9803,0.064842,0.542146,0.370385,0.85878,0.676197,0.557563,0.935864,0.734713,0.892874,0.2412,0.085376,0.591817,0.439741,0.647165,0.92543,0.470971,0.890764,0.123238,0.464416,0.0563001,0.874241,0.0750231,0.38899,0.715971,0.00795692,0.955879,0.713733,0.10219,0.199105,0.907786,0.408074,0.705841,0.949091,0.824423,0.183455,0.363141,0.183934,0.374789,0.794013,0.196505,0.331424,0.0409069,0.902868,0.912929,0.432889,0.942449,0.467328,0.575527,0.360036,0.382169,0.210435,0.0405874,0.202886,0.317593,0.504141,0.798421,0.094437,0.574523,0.0470848,0.0305914,0.850533,0.573099,0.819964,0.358397,0.669241,0.271799,0.918962,0.856034,0.199507,0.19557,0.0959645,0.264174,0.749353,0.590838,0.26202,0.115638,0.948625,0.13123,0.217109,0.744093,0.705775,0.532803,0.875964,0.660064,0.420558,0.99447,0.0143345,0.455009,0.882063,0.662228,0.543536,0.484246,0.689423,0.424807,0.513306,0.487151,0.990363,0.99409,0.137085,0.0472285,0.943464,0.783004,0.281021,0.808006,0.42337,0.420797,0.640834,0.0302485,0.715872,0.30601,0.250776,0.922754,0.158613,0.808479,0.915946,0.57184,0.275402,0.85753,0.625019,0.358628,0.248217,0.231434,0.480452,0.677254,0.161362,0.142142,0.568199,0.814824,0.731702,0.458131,0.942227,0.0073024,0.556437,0.871483,0.573491,0.931374,0.830685,0.0920216,0.523719,0.307708,0.653911,0.441478,0.210912,0.178299,0.956002,0.118487,0.130543,0.219014,0.486996,0.780291,0.414815,0.339661,0.149646,0.845216,0.977547,0.559641,0.482879,0.874885,0.00837767,0.565896,0.334427,0.0270795,0.744196,0.933317,0.983339,0.668996,0.346826,0.943877,0.0835053,0.477142,0.00364178,0.68768,0.388266,0.515141,0.369929,0.715742,0.685489,0.726639,0.81603,0.193174,0.0427496,0.294801,0.699067,0.138146,0.512046,0.212201,0.578979,0.60086,0.670228,0.0817335,0.190357,0.565564,0.917718,0.832781,0.59082,0.223506,0.823414,0.667919,0.617317,0.88322,0.286143,0.884093,0.819179,0.476816,0.15617,0.678085,0.596713,0.689683,0.160139,0.756892,0.397579,0.178848,0.643041,0.411383,0.27758,0.726867,0.466866,0.470145,0.129703,0.113164,0.00175846,0.246266,0.264919,0.373453,0.419228,0.932767,0.297686,0.501119,0.535882,0.898429,0.451914,0.146722,0.233985,0.784825,0.681702,0.966076,0.148757,0.198329,0.774978,0.420789,0.554435,0.597122,0.755848,0.856005,0.255876,0.430034,0.226459,0.87227,0.428658,0.268159,0.255048,0.00864422,0.170449,0.997947,0.712209,0.87226,0.337057,0.23726,0.978533,0.292541,0.140556,0.0265557,0.975564,0.0261834,0.00578928,0.56057,0.562366,0.327933,0.00245559,0.529637,0.629143,0.91794,0.894597,0.28483,0.274399,0.888848,0.581797,0.456635,0.927419,0.15131,0.905697,0.359065,0.902435,0.739258,0.0891544,0.881306,0.431147,0.168529,0.246133,0.574854,0.787569,0.831076,0.614026,0.976147,0.195134,0.42462,0.343318,0.942068,0.310035,0.346846,0.876112,0.955451,0.0138758,0.233051,0.414483,0.173136,0.0517917,0.48817,0.849968,0.302087,0.823619,0.676051,0.026328,0.549353,0.654931,0.243779,0.874435,0.588862,0.748579,0.658389,0.877428,0.310379,0.583128,0.39691,0.0411544,0.442563,0.687485,0.0235698,0.889515,0.914584,0.346875,0.367126,0.746885,0.0342321,0.929308,0.259049,0.698066,0.460623,0.733775,0.582672,0.204728,0.493706,0.406249,0.483891,0.257686,0.429415,0.277093,0.761,0.944679,0.933781,0.938216,0.240891,0.499332,0.608786,0.112795,0.645453,0.436595,0.404249,0.436185,0.784555,0.607167,|0.520151,0.200068,0.769271,0.851191,0.378729,0.71591,0.503288,0.00729841,0.540881,0.389227,0.99046,0.313838,0.182312,0.0183687,0.419322,0.134486,0.249739,0.3746,0.627131,0.794416,0.300225,0.370266,0.0134576,0.149339,0.73343,0.851011,0.910006,0.914573,0.226696,0.695998,0.615894,0.464397,0.289557,0.415061,0.825598,0.45502,0.371529,0.0373105,0.652047,0.119153,0.120104,0.644811,0.905635,0.142309,0.520214,0.489362,0.575607,0.778221,0.132064,0.153187,0.755997,0.709714,0.528275,0.0865017,0.688641,0.281875,0.674508,0.783955,0.190025,0.784547,0.83462,0.281504,0.557165,0.834859,0.187365,0.0712774,0.582085,0.486987,0.443157,0.139508,0.30534,0.910503,0.039923,0.627591,0.705172,0.701619,0.85044,0.348827,0.677118,0.773014,0.536999,0.455702,0.58337,0.21534,0.691619,0.218749,0.971338,0.285217,0.27256,0.448125,0.069863,0.23461,0.274352,0.0661297,0.154186,0.403252,0.828462,0.771869,0.0642245,0.759623,0.112984,0.352202,0.719453,0.0102261,0.585701,0.913894,0.610992,0.824704,0.892706,0.997654,0.105606,0.838834,0.334237,0.677822,0.466897,0.7005,0.487511,0.000248551,0.471864,0.454884,0.928066,0.465768,0.703618,0.558529,0.0383539,0.0543153,0.503653,0.358869,0.373498,0.25696,0.614481,0.559211,0.603971,0.15003,0.643783,0.308271,0.797614,0.135418,0.256206,0.104619,0.388177,0.671567,0.790174,0.817803,0.177224,0.779751,0.684893,0.0373427,0.360321,0.249973,0.853705,0.197691,0.851057,0.171991,0.594503,0.129323,0.787724,0.365966,0.711593,0.581978,0.195337,0.056697,0.349711,0.568293,0.136457,0.999935,0.829406,0.406093,0.402828,0.872799,0.443763,0.0598615,0.881379,0.673423,0.966818,0.53572,0.396947,0.0465829,0.831752,0.464281,0.436221,0.57507,0.844159,0.337367,0.427316,0.333809,0.339543,0.758605,0.379617,0.119731,0.670663,0.727524,0.218433,0.170535,0.127217,0.426443,0.976692,0.350504,0.756662,0.482579,0.309361,0.198099,0.135556,0.702318,0.923253,0.39821,0.337921,0.70828,0.0319618,0.830091,0.894504,0.548192,0.589026,0.254691,0.637663,0.925508,0.604506,0.779735,0.678072,0.665419,0.420006,0.923147,0.126652,0.150923,0.194118,0.0647836,0.961027,0.994322,0.0318972,0.398946,0.0740432,0.905972,0.611098,0.23657,0.59577,0.339211,0.595233,0.978015,0.0182733,0.414325,0.204721,0.737603,0.0931044,0.365664,0.667691,0.935442,0.463213,0.854345,0.0952605,0.118675,0.12494,0.973699,0.439333,0.413818,0.211573,0.000252366,0.947412,0.965122,0.643437,0.720707,0.097411,0.182741,0.0238656,0.0288175,0.682206,0.0204555,0.730576,0.808048,0.922262,0.509306,0.265,0.716264,0.965134,0.954471,0.857814,0.791177,0.450416,0.636,0.664067,0.308733,0.942438,0.568191,0.215936,0.0188922,0.821355,0.30846,0.328679,0.556918,0.0467891,0.938288,0.631583,0.611232,0.250009,0.163631,0.831154,0.710525,0.0225344,0.518773,0.739203,0.621902,0.718772,0.38541,0.0494921,0.53711,0.510978,0.397649,0.788312,0.60777,0.562083,0.15521,0.133827,0.794543,0.451424,0.611982,0.778392,0.461722,0.177265,0.160805,0.0211971,0.579234,0.602675,0.549474,0.73136,0.053134,0.0326678,0.257297,0.867772,0.0360222,0.785077,0.19445,0.00434238,0.399656,0.0715567,0.85012,0.277164,0.525084,0.645295,0.923807,0.0896664,0.154875,0.0504986,0.711467,0.746465,0.377896,0.406722,0.389539,0.110256,0.00244814,0.441739,0.396185,0.0894084,0.896177,0.824421,0.154544,0.532592,0.20446,0.557015,0.724528,0.550699,0.944833,0.699127,0.75685,0.29936,0.188466,0.298521,0.460351,0.38546,0.802429,0.233854,0.0423588,0.207198,0.11025,0.042182,0.753921,0.559242,0.145816,0.355969,0.934565,0.697121,0.0774221,0.976708,0.872282,0.963047,0.544339,0.0971709,0.86447,0.695092,0.816406,0.449447,0.818824,0.0384331,0.404616,0.679678,0.632367,0.118473,0.428943,0.48186,0.428216,0.0450026,0.827783,0.709496,0.367552,0.137157,0.536255,0.137269,0.578528,0.56498,0.254359,0.291067,0.249439,0.896357,0.953872,0.812412,0.0486427,0.425779,0.804703,0.370886,0.941814,0.92727,0.86281,0.18341,0.00317824,0.00734907,0.533804,0.230289,0.128679,0.543597,0.662624,0.82911,0.858616,0.384121,0.0238537,0.514149,0.138667,0.367284,0.29067,0.493968,0.548545,0.287671,0.527577,0.979287,0.739911,0.643958,0.713369,0.990836,0.736784,0.00511932,0.227454,0.735118,0.248803,0.373008,0.25749,0.967634,0.482923,0.529384,0.978174,0.338765,0.836767,0.653308,0.107243,0.459813,0.962816,0.811373,0.951544,0.44519,0.125483,0.500654,0.489841,0.346302,0.146116,0.780615,0.624208,0.335241,0.88618,0.312524,0.588071,0.335767,0.985251,0.213662,0.780765,0.477908,0.972763,0.892434,0.921922,0.00759268,0.0980136,0.796678,0.183577,0.610969,0.399975,0.668094,0.613887,0.279339,0.261508,0.364789,0.0107133,0.136565,0.394939,0.537668,0.908455,0.885245,0.232467,0.311414,0.0510868,0.222603,0.970635,0.809463,0.0259021,0.790022,0.991444,0.463783,0.690115,0.809769,0.397123,0.386257,0.496555,0.858161,0.792358,0.902955,0.131694,0.22328,0.400381,0.494796,0.158399,0.264218,0.460415,0.458077,0.43117,0.776141,0.605068,0.0648921,0.710375,0.180438,0.371263,0.0317938,0.0330865,0.304308,0.0721173,0.579125,0.314648,0.215513,0.731352,0.164998,0.0597125,0.462533,0.618322,0.667319,0.0224586,0.731791,0.388305,0.434539,0.0324368,0.395955,0.581037,0.35768,0.564684,0.452906,0.611611,0.860867,0.820159,0.975802,0.567014,0.788597,0.684025,0.458535,0.579249,0.407665,0.668385,0.963211,0.146707,0.701758,0.0560584,0.065989,0.376104,0.0952226,0.952816,0.218904,0.988447,0.83998,0.153338,0.322395,0.758791,0.220397,0.375535,0.836431,0.469903,0.939989,0.0147486,0.198549,0.768607,0.826933,0.675291,0.802121,0.605478,0.278922,0.905949,0.142551,0.478254,0.875237,0.817231,0.814096,0.803774,0.843808,0.226361,0.0204678,0.6212,0.458534,0.15013,0.532669,0.564807,0.68525,0.636253,0.513707,0.783365,0.0840659,0.419951,0.225551,0.465016,0.154452,0.418515,0.446347,0.159981,0.456335,0.276084,0.358419,0.653058,0.720814,0.649122,0.742562,0.889547,0.80195,0.261545,0.767117,0.630779,0.138852,0.846065,0.482389,0.416734,0.707902,0.63005,0.37916,0.20527,0.960731,0.884946,0.575041,0.298648,0.819961,0.973672,0.519848,0.51973,0.914855,0.655315,0.46116,0.327842,0.360801,0.19339,0.835502,0.352117,0.624347,0.915664,0.15098,0.773464,0.519963,0.438074,0.328632,0.655683,0.456373,0.415613,0.763732,0.0765172,0.730932,0.293251,0.146897,0.907695,0.527534,0.316653,0.693807,0.760844,0.405309,0.00725281,0.0425863,0.483808,0.129786,0.726815,0.86329,0.222492,0.214584,0.779432,0.486595,0.715743,0.986726,0.836199,0.770826,0.570462,0.347053,0.238228,0.632638,0.906826,0.369792,0.283054,0.649146,0.0245551,0.414713,0.0468796,0.561571,0.417229,0.149377,0.775471,0.963331,0.0622856,0.850943,0.804444,0.999437,0.501599,0.0518219,0.517838,0.895509,0.633731,0.611191,0.726896,0.963834,0.896417,0.821984,0.228417,0.578437,0.879882,0.114567,0.609838,0.576736,0.876718,0.589961,0.187649,0.439855,0.330866,0.727534,0.681766,0.0887074,0.97342,0.10777,0.355334,0.624213,0.942812,0.0747256,0.293637,0.237738,0.903486,0.463031,0.511936,0.754611,0.536529,0.171642,0.99942,0.842575,0.690523,0.522549,0.976702,0.987302,0.644423,0.614315,0.208,0.595325,0.516592,0.214477,0.454957,0.524414,0.55384,0.707733,0.846531,0.424624,0.262545,0.0140833,0.111619,0.2612,0.859464,0.731246,0.454426,0.893231,0.108116,0.965898,0.321755,0.843324,0.873545,0.646457,0.130471,0.592918,0.692381,0.340499,0.532972,0.64577,0.395893,0.366861,0.999334,0.110495,0.752083,0.170459,0.481306,0.406727,0.14723,0.916376,0.686445,0.296461,0.907389,0.698952,0.942296,0.478316,0.0403678,0.569092,0.871289,0.647308,0.850286,0.224125,0.0220912,0.0313212,0.500469,0.88463,0.16522,0.313119,0.669943,0.931241,0.0203308,0.260202,0.293218,0.973377,0.668981,0.88383,0.188146,0.250324,0.643068,0.139308,0.701638,0.472218,0.697021,0.29153,0.680372,0.733852,0.366108,0.673325,0.178971,0.200787,0.249837,0.766694,0.853996,0.0297504,0.290196,0.221235,0.320522,0.989518,0.250323,0.735138,0.974508,0.817769,0.397261,0.611784,0.914697,0.497165,0.504443,0.494105,0.285782,0.397583,0.153261,0.049499,0.332347,0.330167,0.70728,0.883613,0.0158848,0.378494,0.13923,0.146955,0.55056,0.467995,0.620674,0.427172,0.968463,0.124885,0.614246,0.81141,0.165631,0.250561,0.517139,0.463279,0.540331,0.119431,0.382627,0.842027,0.865723,0.18327,0.730552,0.698599,0.836003,0.885511,0.29751,0.578348,0.262165,0.147469,0.267071,0.832716,0.616462,0.169991,0.685449,0.205407,0.55698,0.988186,0.210338,0.720707,0.851776,0.963993,0.417202,0.895729,0.834713,0.860145,0.998898,0.0722414,0.398629,0.582016,0.348222,0.717876,0.757897,0.462457,0.859887,0.743227,0.60895,0.746246,0.298204,0.706748,0.871366,0.75244,0.0018602,0.367343,0.118517,0.0562697,0.415251,0.322341,0.312501,0.163495,0.532525,0.637996,0.302559,0.139283,0.333337,0.356059,0.543763,0.914623,0.428381,0.186184,0.864922,0.394924,0.846957,0.594616,0.526263,0.918928,0.929263,0.290374,0.722065,0.826384,0.766036,0.380101,0.953535,0.664696,0.628021,0.0689034,0.196482,0.55509,0.169336,0.0558265,0.212644,0.957644,0.482995,0.764795,0.803472,0.309504,0.38269,0.950854,0.409987,0.157574,0.6221,0.899433,0.577363,0.212337,0.136565,0.484711,0.94219,0.980677,0.0742964,0.182737,0.43537,0.0703298,0.747575,0.883051,0.361068,0.378104,0.825169,0.639813,0.106267,0.16227,0.125813,0.826507,0.510367,0.861827,0.0747544,|0.457204,0.230025,0.7262,0.0407789,0.769756,0.89391,0.0327966,0.304673,0.612354,0.634651,0.139183,0.271811,0.9397,0.515004,0.852308,0.939292,0.606871,0.505074,0.84759,0.667107,0.448646,0.869577,0.152734,0.299602,0.802848,0.39376,0.998763,0.0549076,0.200875,0.655347,0.787611,0.132539,0.412173,0.0986474,0.845722,0.693368,0.749908,0.863158,0.00039047,0.0109134,0.169238,0.574837,0.441869,0.814217,0.40355,0.64223,0.599101,0.605416,0.286626,0.434744,0.48079,0.520497,0.997016,0.290552,0.0632652,0.386872,0.865066,0.890921,0.377564,0.862639,0.389412,0.0846985,0.943399,0.952943,0.149614,0.0180106,0.961143,0.800296,0.352052,0.141176,0.390124,0.637279,0.272271,0.362432,0.887353,0.944056,0.954531,0.0866046,0.410275,0.468691,0.0186758,0.13099,0.577218,0.58058,0.723715,0.742382,0.56798,0.060892,0.158084,0.279815,0.375544,0.0295138,0.938127,0.980856,0.481869,0.730189,0.242936,0.677121,0.257839,0.784917,0.116339,0.847227,0.753481,0.272966,0.90196,0.739302,0.736977,0.653779,0.659612,0.0873602,0.642829,0.359387,0.380293,0.742327,0.264945,0.554383,0.735309,0.478804,0.44308,0.0921001,0.254551,0.649064,0.785224,0.765785,0.426891,0.671459,0.875056,0.915516,0.045995,0.221322,0.512431,0.0543361,0.0724857,0.0151541,0.593455,0.272382,0.334959,0.314078,0.526892,0.43217,0.205474,0.952884,0.709127,0.477834,0.54862,0.0379756,0.0157101,0.410846,0.679697,0.180028,0.0951396,0.671938,0.359053,0.753113,0.732143,0.419171,0.141794,0.303598,0.869405,0.466231,0.33767,0.379563,0.666495,0.92892,0.807666,0.72907,0.688472,0.740371,0.117482,0.2253,0.586765,0.963158,0.0541481,0.0218491,0.350582,0.603131,0.275434,0.878627,0.0921186,0.571623,0.921656,0.595114,0.759315,0.667584,0.0949056,0.748206,0.851009,0.600916,0.133718,0.806948,0.904375,0.0073216,0.447664,0.023322,0.128613,0.389766,0.86799,0.29433,0.201068,0.0978821,0.216324,0.888168,0.185801,0.959717,0.944338,0.922026,0.36868,0.165274,0.561279,0.558457,0.754462,0.735893,0.350149,0.450697,0.793447,0.588014,0.916087,0.244882,0.787788,0.315833,0.813617,0.734941,0.486268,0.17043,0.746599,0.31887,0.500586,0.844933,0.544044,0.995021,0.784194,0.910056,0.266918,0.068825,0.995813,0.631875,0.442317,0.251712,0.799009,0.139105,0.472288,0.631682,0.546984,0.429889,0.133989,0.0949554,0.286197,0.750009,0.255664,0.307474,0.180147,0.322934,0.979251,0.369302,0.290119,0.551042,0.0831399,0.54675,0.829843,0.398523,0.0700099,0.0782123,0.512413,0.879737,0.970993,0.688461,0.196413,0.227533,0.321128,0.170637,0.487864,0.466376,0.103283,0.567841,0.0898582,0.168951,0.23817,0.570917,0.991589,0.696172,0.117979,0.189819,0.442444,0.831857,0.764493,0.0863285,0.519086,0.260168,0.717887,0.395614,0.188022,0.359706,0.763928,0.166131,0.781925,0.37755,0.397732,0.791737,0.801358,0.671692,0.583341,0.484709,0.0311694,0.615863,0.920525,0.472486,0.916436,0.0486033,0.118199,0.881787,0.276012,0.518956,0.943004,0.823748,0.943988,0.114973,0.502151,0.232798,0.859956,0.420284,0.616618,0.271166,0.653752,0.564505,0.266512,0.510894,0.359033,0.102618,0.0959534,0.723368,0.850095,0.197774,0.183488,0.117657,0.229068,0.0697319,0.195108,0.0905111,0.794113,0.274175,0.343085,0.205404,0.831652,0.00339961,0.732581,0.661558,0.399047,0.0453242,0.972557,0.145428,0.344491,0.99406,0.506281,0.866818,0.0825812,0.157736,0.308253,0.974676,0.51218,0.503524,0.669914,0.590586,0.730709,0.347761,0.952832,0.451032,0.0246891,0.889901,0.775221,0.777959,0.988043,0.801711,0.596128,0.816391,0.689737,0.291064,0.795774,0.0415025,0.529623,0.845232,0.638278,0.291921,0.827588,0.846054,0.952389,0.947388,0.675404,0.293949,0.305246,0.202874,0.100734,0.879029,0.81476,0.0625746,0.933773,0.897685,0.201109,0.311262,0.706981,0.0186165,0.443981,0.866407,0.0315509,0.595483,0.360936,0.148077,0.699921,0.672657,0.300917,0.363041,0.0665983,0.915517,0.192243,0.834064,0.0947411,0.772607,0.0925488,0.913695,0.328002,0.310936,0.854661,0.10799,0.0447455,0.137042,0.444669,0.565668,0.376668,0.0406886,0.97835,0.953615,0.0237627,0.107334,0.320801,0.215859,0.116504,0.534019,0.999531,0.697203,0.122133,0.932487,0.711129,0.160513,0.5604,0.0665411,0.795617,0.33692,0.494896,0.0795848,0.214648,0.526758,0.49998,0.779518,0.700216,0.816319,0.96563,0.64697,0.0353953,0.692292,0.282524,0.750711,0.383827,0.728772,0.794113,0.554207,0.6002,0.36861,0.964111,0.612902,0.309955,0.232395,0.496827,0.527264,0.755075,0.761031,0.201466,0.0427116,0.573914,0.591422,0.245236,0.482287,0.100909,0.0608724,0.486615,0.661743,0.533362,0.621915,0.282365,0.244442,0.759124,0.472277,0.899855,0.537201,0.118996,0.545154,0.819622,0.232884,0.387621,0.0218397,0.317589,0.447772,0.974548,0.367897,0.733262,0.144821,0.479073,0.817782,0.540612,0.765258,0.637431,0.126794,0.179717,0.99714,0.230365,0.137825,0.10707,0.881912,0.58156,0.573762,0.68115,0.312548,0.549392,0.376367,0.655662,0.50076,0.414139,0.802007,0.305419,0.350645,0.63416,0.274727,0.236491,0.562963,0.853699,0.750281,0.208877,0.0874177,0.744104,0.933882,0.202442,0.266737,0.301317,0.402117,0.00743252,0.918687,0.919802,0.79489,0.196629,0.00598431,0.912876,0.0587499,0.230998,0.543803,0.716341,0.0536378,0.142118,0.420523,0.631754,0.321041,0.42714,0.36357,0.155113,0.236137,0.228192,0.242232,0.474727,0.912579,0.783331,0.011893,0.7981,0.787937,0.699711,0.698126,0.119182,0.207126,0.657202,0.274251,0.952749,0.400186,0.759173,0.469246,0.10704,0.425081,0.367093,0.281286,0.00742036,0.477311,0.370416,0.481823,0.673964,0.524202,0.638994,0.303488,0.216516,0.0613855,0.986181,0.856125,0.561585,0.0457057,0.72366,0.732856,0.607183,0.171899,0.210826,0.769123,0.656842,0.81596,0.887327,0.582488,0.209474,0.568986,0.521634,0.635969,0.212313,0.359584,0.0842335,0.741295,0.227109,0.00912368,0.0170082,0.670153,0.302721,0.232579,0.510001,0.068886,0.815373,0.0667461,0.950091,0.653482,0.760668,0.178943,0.278,0.68527,0.110606,0.600817,0.982592,0.86586,0.71518,0.86876,0.2708,0.0681526,0.211952,0.898263,0.073051,0.695487,0.357885,0.111609,0.351302,0.645423,0.572308,0.490189,0.971697,0.97359,0.841733,0.736598,0.241567,0.95408,0.64272,0.122744,0.212536,0.97113,0.810081,0.971873,0.603507,0.618285,0.979584,0.592052,0.263693,0.559891,0.53827,0.756191,0.106574,0.502595,0.642824,0.241255,0.593141,0.519184,0.420714,0.665727,0.0193722,0.157102,0.59203,0.779463,0.705249,0.120072,0.235978,0.70791,0.53179,0.546683,0.0259309,0.156256,0.920278,0.799176,0.651825,0.902478,0.862243,0.476561,0.614575,0.638058,0.384534,0.461976,0.869416,0.779325,0.899067,0.169374,0.379692,0.299012,0.634187,0.659152,0.561348,0.781492,0.194456,0.877608,0.98269,0.20702,0.302764,0.261988,0.269219,0.598752,0.748755,0.945256,0.315677,0.23298,0.435239,0.536875,0.893634,0.113932,0.756131,0.874722,0.831524,0.594501,0.780757,0.788116,0.454473,0.563144,0.170361,0.357942,0.144691,0.936167,0.207687,0.735257,0.092857,0.440401,0.608414,0.550877,0.918545,0.199161,0.887463,0.241262,0.305723,0.423089,0.63394,0.158384,0.982483,0.266917,0.544209,0.08848,0.918359,0.305463,0.802609,0.911651,0.350281,0.506833,0.803666,0.895012,0.383353,0.923204,0.883837,0.216255,0.213031,0.650602,0.12184,0.804214,0.409954,0.0194799,0.698618,0.819632,0.518456,0.662424,0.261804,0.599386,0.911467,0.770376,0.603856,0.937398,0.317461,0.080006,0.997567,0.3095,0.639531,0.158595,0.620656,0.983085,0.482537,0.695827,0.117726,0.483816,0.0631203,0.337058,0.487143,0.873741,0.645184,0.945777,0.673447,0.229947,0.194936,0.870316,0.489404,0.339498,0.70904,0.843212,0.30715,0.375507,0.277336,0.595397,0.357117,0.603792,0.959107,0.100063,0.316748,0.747097,0.342968,0.0967556,0.522458,0.476841,0.532137,0.27701,0.25221,0.558545,0.582603,0.132029,0.382219,0.584659,0.862949,0.758978,0.095939,0.421522,0.779739,0.713768,0.0502712,0.400608,0.457696,0.307648,0.824791,0.834552,0.191497,0.980911,0.0873434,0.88139,0.665885,0.0512487,0.542318,0.780841,0.308244,0.837872,0.626666,0.180928,0.746936,0.268305,0.56131,0.221758,0.640331,0.289299,0.211259,0.191645,0.73762,0.0894061,0.77094,0.0303299,0.177074,0.367401,0.874746,0.286396,0.564796,0.421429,0.66547,0.0502421,0.473124,0.891887,0.41384,0.83828,0.37516,0.344668,0.568489,0.277512,0.633297,0.454258,0.467319,0.0769328,0.392762,0.366175,0.203888,0.212474,0.314346,0.394815,0.945433,0.764002,0.748323,0.40773,0.510123,0.0360774,0.404437,0.0166344,0.102142,0.638577,0.622603,0.588096,0.633759,0.208197,0.290878,0.247412,0.324661,0.909166,0.780048,0.953504,0.00476635,0.811776,0.109788,0.745297,0.919768,0.268789,0.596949,0.0636416,0.188606,0.116228,0.255232,0.459029,0.640606,0.840945,0.365152,0.952852,0.756829,0.840622,0.807771,0.191416,0.234668,0.867988,0.351499,0.533553,0.0743766,0.720547,0.936222,0.322672,0.564468,0.0418007,0.544352,0.235419,0.764755,0.980706,0.0260248,0.599983,0.518359,0.278536,0.233283,0.900245,0.916184,0.412219,0.0423136,0.574147,0.110532,0.477434,0.564352,0.603666,0.284086,0.416366,0.672508,0.355735,0.747164,0.620309,0.934143,0.13513,0.0401751,0.0214461,0.432067,0.135379,0.449773,0.949932,0.531594,0.829341,0.896572,0.266821,0.534234,0.536752,0.71045,0.866812,0.713076,0.247515,0.618826,0.889737,0.805291,0.134462,0.970982,0.46016,0.753338,0.0132347,0.930067,0.632578,0.77114,0.123948,0.852224,0.833624,|0.358719,0.543576,0.563169,0.442686,0.703857,0.3919,0.560757,0.425885,0.844913,0.716697,0.404951,0.432418,0.198366,0.237241,0.908797,0.653647,0.067221,0.31719,0.476792,0.516627,0.856095,0.917153,0.521563,0.979189,0.650964,0.975797,0.467778,0.21338,0.721493,0.227183,0.512826,0.281839,0.117409,0.764139,0.576434,0.810253,0.243388,0.212359,0.629257,0.0864075,0.752973,0.551173,0.87163,0.44291,0.448291,0.557449,0.71453,0.653824,0.318296,0.0629429,0.0711576,0.497076,0.652576,0.464813,0.0591955,0.481198,0.321453,0.764667,0.3169,0.71224,0.306974,0.882126,0.105812,0.560708,0.587471,0.443746,0.794968,0.106716,0.638006,0.43633,0.930397,0.254665,0.920175,0.355398,0.506767,0.280631,0.171914,0.0703302,0.370127,0.0401092,0.268216,0.233559,0.811507,0.766613,0.793084,0.326321,0.514162,0.929556,0.0175719,0.605114,0.54659,0.434248,0.423688,0.276188,0.0368257,0.875831,0.936263,0.762113,0.720678,0.344429,0.332057,0.559107,0.734534,0.129894,0.62487,0.455826,0.088783,0.665056,0.542394,0.964044,0.819722,0.0928861,0.220626,0.123557,0.83939,0.885084,0.0573683,0.0836074,0.193529,0.903644,0.75278,0.808227,0.720463,0.965637,0.463569,0.589494,0.566683,0.650607,0.896971,0.257982,0.813874,0.985583,0.25017,0.518786,0.214628,0.771792,0.273184,0.885833,0.533117,0.185615,0.474251,0.570012,0.149903,0.915164,0.97385,0.106678,0.345507,0.0229945,0.512881,0.670622,0.721186,0.874374,0.75084,0.951855,0.976283,0.609296,0.265078,0.420667,0.403082,0.862367,0.195445,0.817373,0.901231,0.732756,0.661994,0.470335,0.536998,0.0912694,0.809161,0.00963771,0.860287,0.528494,0.694046,0.830636,0.45992,0.961034,0.36621,0.407399,0.859859,0.245387,0.473565,0.503314,0.830853,0.435707,0.583457,0.344247,0.295729,0.903348,0.176552,0.42149,0.764173,0.134136,0.488684,0.476641,0.596928,0.774326,0.988696,0.850008,0.273889,0.533199,0.789678,0.657139,0.476136,0.829039,0.326636,0.234693,0.0998242,0.184415,0.320311,0.0552396,0.613892,0.736508,0.844617,0.608454,0.00993031,0.951837,0.0464904,0.219943,0.372471,0.466902,0.699192,0.824868,0.238152,0.958638,0.559246,0.96109,0.882538,0.584069,0.104886,0.893893,0.651816,0.472084,0.356369,0.800438,0.646653,0.494663,0.380371,0.192895,0.0704432,0.946501,0.684305,0.389214,0.935497,0.265561,0.29392,0.293544,0.488902,0.0454358,0.255513,0.912221,0.060957,0.530506,0.637973,0.776139,0.691146,0.271904,0.469585,0.117974,0.61665,0.112778,0.73473,0.11702,0.16707,0.246888,0.394965,0.41453,0.241908,0.500781,0.74283,0.348545,0.979462,0.0333167,0.593797,0.377027,0.947286,0.496023,0.892498,0.200649,0.908059,0.0912043,0.679632,0.359313,0.988898,0.214188,0.395771,0.989792,0.178989,0.822226,0.557968,0.25982,0.268149,0.66592,0.753747,0.275949,0.443566,0.358409,0.0913789,0.629433,0.776371,0.845652,0.998794,0.175814,0.582466,0.184719,0.797971,0.691819,0.334476,0.65842,0.256663,0.218625,0.12601,0.203596,0.506706,0.3381,0.975086,0.978219,0.903843,0.7576,0.46079,0.789776,0.903822,0.0908715,0.182031,0.470241,0.452341,0.416209,0.03772,0.678415,0.850898,0.629666,0.433261,0.0298486,0.342177,0.653525,0.992026,0.457094,0.236286,0.00126672,0.453419,0.733982,0.0472077,0.836221,0.38857,0.582203,0.245445,0.105885,0.715699,0.934744,0.838545,0.461991,0.839403,0.29137,0.115173,0.866218,0.572717,0.999382,0.00112581,0.0848699,0.630829,0.888896,0.202649,0.902686,0.34836,0.11325,0.469416,0.178852,0.792879,0.145715,0.128432,0.24163,0.40697,0.133993,0.815302,0.657832,0.0315845,0.348074,0.2449,0.780293,0.868205,0.201631,0.591717,0.86065,0.640777,0.464932,0.851396,0.350621,0.66889,0.494257,0.186866,0.930719,0.322149,0.177736,0.249051,0.432564,0.409134,0.0508223,0.499323,0.914478,0.973626,0.596271,0.373312,0.180482,0.741852,0.805708,0.792759,0.808139,0.294393,0.0534211,0.805631,0.830286,0.553158,0.795509,0.917015,0.0177444,0.345009,0.214957,0.161165,0.42809,0.866872,0.514766,0.384542,0.459699,0.0544954,0.00647604,0.629552,0.915029,0.41322,0.174805,0.547119,0.160689,0.157429,0.9475,0.190988,0.557682,0.120163,0.373406,0.80883,0.827189,0.585184,0.318849,0.774238,0.536674,0.979555,0.952865,0.393659,0.628845,0.90453,0.268555,0.69416,0.763485,0.181707,0.172719,0.439199,0.658625,0.360617,0.901061,0.326721,0.246849,0.952941,0.264613,0.615066,0.706234,0.0228238,0.129227,0.559004,0.352811,0.683579,0.441813,0.882775,0.0840765,0.728437,0.00983328,0.712075,0.338198,0.328464,0.993039,0.473421,0.472745,0.173427,0.455283,0.907166,0.0762028,0.0238665,0.570222,0.682918,0.0715045,0.056155,0.157506,0.132522,0.844174,0.948723,0.990259,0.738884,0.275356,0.204888,0.38873,0.306632,0.998846,0.778023,0.853267,0.482297,0.565691,0.680602,0.671308,0.787887,0.107799,0.81311,0.602055,0.0370753,0.0102266,0.896065,0.307787,0.543499,0.442115,0.392253,0.169513,0.152876,0.336786,0.842712,0.452784,0.016294,0.468089,0.853648,0.481853,0.37096,0.964425,0.894503,0.813959,0.927411,0.396399,0.436764,0.273368,0.206019,0.754933,0.248594,0.635382,0.195858,0.29106,0.966476,0.283467,0.596634,0.503124,0.655668,0.459939,0.622459,0.117548,0.90171,0.671049,0.7604,0.26105,0.731153,0.608336,0.540058,0.992222,0.287758,0.10982,0.813042,0.758949,0.897938,0.505355,0.960796,0.899707,0.12088,0.457526,0.273927,0.262227,0.834793,0.285771,0.813174,0.0977526,0.217872,0.259407,0.648056,0.167966,0.822659,0.25365,0.881762,0.362268,0.0396698,0.477217,0.971486,0.343808,0.0124072,0.576531,0.48862,0.944974,0.0939735,0.221234,0.65879,0.98397,0.366098,0.704776,0.252131,0.159117,0.32478,0.415207,0.178514,0.0588762,0.865322,0.819094,0.824019,0.753139,0.473581,0.358152,0.719823,0.537231,0.184695,0.563765,0.425841,0.03692,0.599115,0.817973,0.562422,0.352905,0.0456539,0.603943,0.893488,0.626317,0.589415,0.363418,0.909314,0.120501,0.427604,0.426509,0.376358,0.480434,0.391996,0.513313,0.614237,0.321506,0.397739,0.331825,0.206677,0.473491,0.574813,0.485706,0.157802,0.826526,0.366121,0.342738,0.0927572,0.0889231,0.921056,0.318969,0.396363,0.166194,0.161631,0.933962,0.562326,0.0329266,0.958157,0.80495,0.868643,0.113936,0.513886,0.123424,0.0471188,0.756199,0.576318,0.720177,0.572639,0.317814,0.705529,0.681163,0.95277,0.403189,0.634871,0.156354,0.338872,0.331438,0.258851,0.997783,0.28419,0.154774,0.515024,0.576703,0.329374,0.302091,0.428299,0.0896089,0.606053,0.373424,0.409717,0.164574,0.791156,0.956398,0.48701,0.96351,0.610202,0.394485,0.889012,0.846594,0.741734,0.413715,0.326407,0.471929,0.798228,0.665765,0.975037,0.849879,0.418353,0.59624,0.614435,0.537777,0.710712,0.114511,0.748707,0.215615,0.22864,0.216084,0.17571,0.892525,0.599456,0.402958,0.405622,0.104387,0.485429,0.538147,0.0710375,0.578543,0.0664381,0.578746,0.193199,0.621492,0.647091,0.930571,0.290859,0.552763,0.104978,0.575613,0.724745,0.337448,0.560144,0.931813,0.854024,0.200015,0.307069,0.973554,0.94504,0.435803,0.21527,0.565684,0.747928,0.0702479,0.508733,0.521758,0.42421,0.0344795,0.649505,0.351839,0.41031,0.560544,0.0808019,0.314344,0.718001,0.512398,0.391677,0.752789,0.352339,0.250158,0.21825,0.629712,0.799519,0.0421675,0.279903,0.68394,0.0212364,0.548443,0.365201,0.199957,0.317381,0.406336,0.965829,0.824031,0.548082,0.928589,0.149168,0.316307,0.0215276,0.982391,0.80654,0.180054,0.922076,0.411045,0.912113,0.446298,0.155739,0.930189,0.634772,0.941477,0.612766,0.402243,0.191018,0.312469,0.942196,0.517618,0.989908,0.942654,0.740691,0.497958,0.22455,0.164596,0.831037,0.941101,0.1315,0.864859,0.825258,0.109135,0.185809,0.131406,0.932086,0.986333,0.237259,0.649972,0.795053,0.288437,0.881611,0.506385,0.0603766,0.473505,0.00702161,0.74784,0.584648,0.490408,0.687425,0.336113,0.000133336,0.025359,0.983392,0.599917,0.571083,0.58563,0.655289,0.184053,0.899125,0.343422,0.87645,0.499071,0.38514,0.932975,0.0482938,0.617642,0.0249918,0.519194,0.615771,0.0654777,0.29271,0.374256,0.716178,0.0999939,0.0689806,0.066968,0.730165,0.954782,0.371278,0.214249,0.339802,0.157195,0.662511,0.0148827,0.780692,0.520334,0.871585,0.979325,0.444843,0.137053,0.872103,0.0984223,0.413717,0.205733,0.947623,0.522284,0.502608,0.481205,0.422148,0.0951957,0.959948,0.438993,0.886131,0.199252,0.560835,0.707122,0.778023,0.18703,0.166301,0.0784536,0.111705,0.752575,0.871061,0.740867,0.80351,0.402734,0.494343,0.260201,0.490822,0.383552,0.0852804,0.303725,0.00193679,0.327555,0.719368,0.430886,0.325621,0.892916,0.363776,0.332778,0.196272,0.290014,0.308185,0.10981,0.985067,0.711361,0.0930172,0.475579,0.693113,0.323311,0.178624,0.147563,0.381801,0.147103,0.647463,0.136387,0.671131,0.389816,0.575969,0.324667,0.186781,0.971022,0.296514,0.532957,0.242471,0.905939,0.107614,0.272277,0.510286,0.990791,0.612113,0.635495,0.701581,0.401153,0.136212,0.752325,0.29627,0.340738,0.416733,0.982261,0.705606,0.919878,0.0678833,0.308511,0.669486,0.227403,0.473323,0.761917,0.649557,0.672837,0.922212,0.0896367,0.910883,0.926752,0.49815,0.301067,0.0995216,0.954751,0.223903,0.0197523,0.747904,0.448117,0.859737,0.269426,0.277489,0.539,0.45737,0.435714,0.960095,0.170482,0.906454,0.850148,0.151935,0.566885,0.860744,0.552658,0.247956,0.679165,0.68469,0.921482,0.576095,0.749857,0.541284,0.329481,0.639806,0.557229,0.220331,0.297825,0.231422,0.0101432,0.92247,0.149713,0.607265,0.90168,|0.794903,0.281401,0.240442,0.795187,0.00870639,0.755055,0.0749596,0.787252,0.825859,0.0356998,0.578503,0.92076,0.561295,0.491764,0.393549,0.367316,0.982507,0.0188936,0.838406,0.0696669,0.995844,0.343029,0.960449,0.776333,0.861372,0.993567,0.0216291,0.242103,0.179526,0.021104,0.200392,0.282235,0.236676,0.271358,0.411501,0.468376,0.045971,0.212233,0.553539,0.637355,0.106493,0.597972,0.693148,0.197475,0.769175,0.283864,0.34878,0.650494,0.360789,0.789735,0.512555,0.559409,0.0819394,0.324209,0.73474,0.327755,0.300477,0.989952,0.258382,0.918032,0.0933778,0.722965,0.813627,0.231638,0.781271,0.418389,0.539923,0.0391279,0.368081,0.0405354,0.659029,0.660286,0.558048,0.422897,0.349855,0.446827,0.611969,0.153665,0.723809,0.980191,0.53195,0.928966,0.861032,0.456454,0.708051,0.705916,0.745397,0.185205,0.89155,0.0956852,0.282231,0.284151,0.163261,0.0203316,0.486966,0.649092,0.588767,0.370162,0.96594,0.580391,0.282317,0.282055,0.289001,0.561691,0.987484,0.678786,0.275595,0.826639,0.90158,0.34168,0.654525,0.554618,0.0623024,0.490127,0.476823,0.611572,0.692958,0.0920171,0.545023,0.102618,0.0563822,0.692114,0.875919,0.279781,0.609834,0.802623,0.379188,0.013687,0.409404,0.968119,0.317078,0.219383,0.276073,0.375944,0.000914454,0.307662,0.822792,0.191565,0.577296,0.950317,0.155875,0.107097,0.587522,0.141724,0.319771,0.210293,0.566383,0.378925,0.781564,0.628535,0.523596,0.0979069,0.199966,0.372703,0.652482,0.648941,0.0888613,0.283626,0.867425,0.913136,0.559338,0.0911278,0.241708,0.87121,0.353024,0.226712,0.631221,0.756432,0.468803,0.865231,0.170646,0.994561,0.241893,0.113666,0.983276,0.251269,0.905531,0.0910352,0.365571,0.727496,0.284842,0.81778,0.981966,0.398481,0.156736,0.251393,0.75727,0.209419,0.951562,0.284432,0.364941,0.960201,0.64666,0.24075,0.193286,0.0761383,0.288889,0.266824,0.953548,0.323853,0.565012,0.310774,0.054195,0.264082,0.573798,0.30926,0.682748,0.387652,0.874739,0.735366,0.973907,0.0100102,0.54375,0.236792,0.482459,0.684875,0.23711,0.856556,0.267515,0.357885,0.0560241,0.22713,0.84196,0.397741,0.768032,0.570592,0.341835,0.618758,0.96129,0.458846,0.185371,0.162891,0.95647,0.786576,0.0704597,0.958079,0.95153,0.111116,0.546086,0.558426,0.193954,0.944845,0.0812834,0.872052,0.783013,0.092424,0.750921,0.491964,0.860886,0.874519,0.0536951,0.51604,0.0976872,0.648786,0.897819,0.736454,0.138102,0.22568,0.855797,0.1275,0.209443,0.721858,0.0716363,0.312208,0.382005,0.877537,0.458009,0.398466,0.234764,0.123958,0.261663,0.819511,0.657411,0.788578,0.948467,0.64807,0.667179,0.781052,0.0432625,0.853917,0.779909,0.241921,0.807242,0.980224,0.0580001,0.730698,0.459786,0.950835,0.938271,0.800593,0.313241,0.29093,0.725156,0.343674,0.906834,0.391652,0.0390713,0.49986,0.692495,0.0220625,0.35203,0.000124395,0.691527,0.442807,0.437654,0.791296,0.82265,0.441059,0.878917,0.211741,0.856515,0.193184,0.226325,0.452565,0.796836,0.438724,0.131901,0.662598,0.930747,0.327565,0.853485,0.828769,0.511078,0.110854,0.610045,0.765681,0.718504,0.808448,0.623092,0.447919,0.939991,0.726084,0.0570542,0.858847,0.780209,0.293589,0.751987,0.589921,0.505037,0.723095,0.854547,0.829143,0.30481,0.330592,0.808089,0.471786,0.631347,0.884208,0.0960431,0.896403,0.599557,0.153713,0.341951,0.158569,0.833653,0.504359,0.548951,0.17241,0.973715,0.826169,0.437984,0.182107,0.963289,0.0681592,0.124691,0.769144,0.257519,0.844196,0.591102,0.871038,0.100194,0.322032,0.569159,0.0538278,0.585798,0.973996,0.642978,0.758324,0.752029,0.369372,0.776985,0.406528,0.744059,0.0637929,0.683026,0.263805,0.59869,0.951257,0.128415,0.765036,0.899019,0.791629,0.925636,0.994854,0.157766,0.075489,0.58342,0.322455,0.210117,0.489246,0.343856,0.833215,0.990727,0.687128,0.366205,0.748663,0.461685,0.858707,0.622303,0.484707,0.764303,0.432196,0.284866,0.56377,0.719846,0.993024,0.293432,0.317386,0.231479,0.0987732,0.64389,0.244076,0.20301,0.459156,0.146438,0.674364,0.945589,0.164755,0.228679,0.217125,0.578997,0.398591,0.964606,0.716713,0.244511,0.322774,0.886141,0.652082,0.298692,0.211226,0.560125,0.892309,0.298455,0.478032,0.220949,0.891827,0.498938,0.645549,0.12804,0.927674,0.206499,0.947788,0.730557,0.902736,0.953895,0.745874,0.262424,0.167117,0.24413,0.805779,0.432025,0.076717,0.530807,0.223324,0.0204257,0.795248,0.543758,0.772377,0.0370923,0.895279,0.412603,0.683165,0.912562,0.815741,0.618481,0.720004,0.157465,0.478866,0.74473,0.780587,0.873843,0.677876,0.505995,0.69287,0.043007,0.131651,0.482925,0.432111,0.848276,0.443115,0.534425,0.955433,0.389387,0.972207,0.077585,0.521124,0.606068,0.489986,0.546993,0.662801,0.713208,0.44466,0.585799,0.466002,0.333143,0.568622,0.762858,0.669343,0.0115353,0.643511,0.91738,0.596929,0.678353,0.910053,0.364878,0.602528,0.548353,0.062831,0.0420273,0.153941,0.123882,0.22083,0.942735,0.0878197,0.975632,0.0405554,0.140657,0.813413,0.020458,0.633058,0.462588,0.471096,0.192597,0.680747,0.813191,0.10426,0.87319,0.900795,0.883319,0.230422,0.337199,0.0714602,0.287609,0.998246,0.667398,0.791801,0.258124,0.794677,0.583515,0.839724,0.666283,0.675816,0.627822,0.660224,0.484181,0.78772,0.0459569,0.819408,0.795231,0.544597,0.846993,0.386457,0.793827,0.797289,0.0876409,0.293272,0.403826,0.414462,0.397981,0.652423,0.149439,0.520848,0.560754,0.571354,0.869374,0.730072,0.91806,0.0607933,0.568293,0.0951828,0.357091,0.738116,0.757706,0.200447,0.564246,0.335553,0.955433,0.308989,0.307028,0.293542,0.0915352,0.404566,0.758837,0.579978,0.896474,0.684135,0.864508,0.0255176,0.44649,0.202363,0.922939,0.802845,0.546748,0.405417,0.913363,0.238766,0.00994241,0.755701,0.95498,0.519943,0.655871,0.776678,0.702834,0.426561,0.793198,0.197449,0.276068,0.77065,0.277587,0.211109,0.593123,0.130563,0.596604,0.978427,0.690213,0.0546307,0.823942,0.486089,0.693793,0.25763,0.404508,0.0429989,0.545541,0.153139,0.337455,0.136585,0.265558,0.77801,0.465265,0.64147,0.989417,0.198237,0.976109,0.328753,0.349485,0.2025,0.594049,0.0289251,0.516639,0.109069,0.920434,0.971994,0.780733,0.159945,0.518237,0.924753,0.53745,0.184407,0.965409,0.924374,0.757743,0.132338,0.134666,0.170652,0.484772,0.217957,0.970642,0.40174,0.3168,0.845634,0.0257634,0.609656,0.483476,0.82179,0.279833,0.373575,0.32509,0.19075,0.732325,0.326877,0.0464522,0.760614,0.940548,0.286502,0.932566,0.79774,0.641995,0.66978,0.93574,0.366147,0.108747,0.497554,0.998389,0.622257,0.803334,0.227085,0.175829,0.451984,0.42857,0.0976234,0.760352,0.538565,0.456055,0.831847,0.81999,0.725322,0.0480711,0.470459,0.523001,0.427388,0.430183,0.65653,0.86866,0.399181,0.669841,0.814619,0.369289,0.487753,0.504258,0.969993,0.633468,0.0622808,0.0763792,0.820533,0.76105,0.833511,0.0147101,0.703998,0.997778,0.301801,0.118297,0.132106,0.331101,0.0154262,0.0695449,0.881957,0.446877,0.545328,0.860577,0.575772,0.589789,0.225888,0.364893,0.966367,0.983227,0.975953,0.821891,0.156142,0.638679,0.640833,0.980215,0.289726,0.0325519,0.286138,0.602909,0.368471,0.849128,0.667407,0.930977,0.0751399,0.464261,0.610158,0.77363,0.918111,0.0859588,0.859215,0.266735,0.892827,0.0655916,0.981873,0.892576,0.415916,0.514704,0.475222,0.876112,0.402525,0.463339,0.07917,0.611575,0.0305487,0.777508,0.0828291,0.517761,0.566168,0.249088,0.510205,0.901956,0.492785,0.309375,0.419786,0.916446,0.437056,0.326536,0.124518,0.181975,0.239534,0.244949,0.371229,0.135197,0.539453,0.970316,0.190483,0.561758,0.175007,0.995534,0.44758,0.884976,0.674908,0.770331,0.818894,0.344528,0.660411,0.276003,0.141117,0.34696,0.60804,0.490684,0.843733,0.943775,0.547226,0.0998703,0.413372,0.0445535,0.342416,0.77366,0.228716,0.489282,0.180018,0.0852398,0.699013,0.843482,0.643933,0.171719,0.167901,0.406974,0.0263882,0.856623,0.217172,0.420215,0.952132,0.342766,0.616044,0.403913,0.626888,0.114864,0.102153,0.968022,0.0121959,0.666758,0.692674,0.666127,0.58961,0.947146,0.43864,0.723414,0.371803,0.394956,0.988169,0.155094,0.293432,0.968665,0.530292,0.936365,0.641208,0.12478,0.901368,0.973206,0.708141,0.413757,0.595659,0.0115067,0.811136,0.942062,0.201334,0.552386,0.288867,0.939093,0.218996,0.170442,0.605212,0.140994,0.887561,0.57025,0.263942,0.403306,0.502651,0.198656,0.994805,0.313463,0.940276,0.680977,0.707907,0.0771381,0.0195038,0.98568,0.563092,0.671773,0.77231,0.957439,0.388476,0.571126,0.0229808,0.320505,0.598817,0.291084,0.980652,0.978491,0.917732,0.0908733,0.546653,0.661256,0.716369,0.86421,0.679541,0.178349,0.084692,0.47679,0.734935,0.581912,0.053097,0.128562,0.987814,0.119054,0.164257,0.560148,0.854061,0.0813726,0.923299,0.771433,0.93467,0.00933838,0.931295,0.423668,0.772176,0.225179,0.596549,0.423472,0.99666,0.0883816,0.744457,0.659404,0.556526,0.968513,0.884284,0.504011,0.509639,0.288481,0.37125,0.586132,0.653603,0.78995,0.808065,0.692179,0.490866,0.575711,0.983805,0.47053,0.399431,0.643959,0.523175,0.0304244,0.981871,0.64374,0.764322,0.152721,0.560302,0.939856,0.334801,0.293889,0.735756,0.753173,0.0435197,0.236165,0.557937,0.775641,0.208729,0.323392,0.105043,0.743546,0.483039,0.645588,0.82577,0.814032,0.248471,0.0970734,0.228301,0.261501,0.0327575,0.872938,0.320298,0.796925,0.827942,0.20625,0.0952617,0.419381,0.898106,0.148408,0.6053,0.0597607,0.11315,|0.953169,0.811932,0.565487,0.847022,0.951792,0.0548975,0.451671,0.15599,0.760529,0.777998,0.705287,0.312678,0.579916,0.620868,0.0333557,0.436939,0.204517,0.627356,0.292449,0.759883,0.334556,0.358139,0.341688,0.749941,0.906344,0.628784,0.334507,0.954828,0.302564,0.068,0.177028,0.305028,0.630832,0.466377,0.113464,0.98883,0.983725,0.954995,0.0522156,0.0687665,0.532516,0.052716,0.715612,0.391516,0.709818,0.521675,0.394267,0.38586,0.21947,0.032714,0.210178,0.0767633,0.195627,0.189196,0.528377,0.792542,0.803541,0.718169,0.174483,0.31211,0.486872,0.0904984,0.984541,0.0444577,0.840502,0.59534,0.108307,0.393957,0.913606,0.345446,0.783088,0.135829,0.641355,0.776795,0.324605,0.242194,0.633402,0.884404,0.476714,0.951647,0.579663,0.525924,0.820666,0.0341212,0.496244,0.712492,0.936365,0.698825,0.727247,0.0754427,0.646128,0.558791,0.264488,0.782601,0.00899202,0.808634,0.949792,0.0343165,0.810314,0.496276,0.683433,0.177619,0.0201653,0.967182,0.90633,0.187919,0.763133,0.479818,0.715826,0.210889,0.950854,0.165261,0.142603,0.00763643,0.440183,0.495702,0.766022,0.817583,0.679202,0.0201777,0.238797,0.441498,0.302757,0.536116,0.368496,0.205565,0.117384,0.16035,0.227476,0.874103,0.0333207,0.232483,0.779906,0.613053,0.224529,0.979275,0.410246,0.0977412,0.496775,0.0500385,0.91276,0.84083,0.866671,0.251901,0.160242,0.511396,0.642917,0.331583,0.047833,0.411284,0.44885,0.930805,0.359522,0.880035,0.747867,0.237966,0.758758,0.67671,0.414153,0.881614,0.823975,0.470026,0.687555,0.24413,0.749955,0.398391,0.857889,0.908994,0.0783955,0.826056,0.675864,0.441943,0.844901,0.610232,0.662709,0.0772811,0.400677,0.76069,0.725781,0.682317,0.346907,0.836729,0.166447,0.261953,0.283691,0.995509,0.465539,0.668092,0.932254,0.42446,0.551964,0.307122,0.79972,0.0205321,0.545324,0.872843,0.27735,0.617539,0.522542,0.0190887,0.14789,0.34204,0.784454,0.195656,0.257792,0.278541,0.737337,0.102699,0.303213,0.665743,0.654361,0.456833,0.518657,0.0184152,0.746779,0.886954,0.0989273,0.469536,0.712241,0.560876,0.404129,0.866247,0.190189,0.00913334,0.710085,0.486955,0.657911,0.41749,0.0620751,0.847695,0.716945,0.273375,0.0667121,0.63883,0.592436,0.025795,0.019044,0.752856,0.792372,0.560888,0.271391,0.172237,0.47596,0.0427072,0.726944,0.606541,0.246684,0.978673,0.260207,0.395052,0.956344,0.0645866,0.0852133,0.650397,0.752373,0.598453,0.663231,0.277586,0.923981,0.269474,0.127926,0.283661,0.0358346,0.658086,0.198271,0.75588,0.335269,0.0408053,0.91933,0.31794,0.547512,0.252094,0.386889,0.666672,0.565531,0.482733,0.72497,0.462435,0.055468,0.524311,0.910826,0.872435,0.423217,0.935476,0.274253,0.269866,0.925981,0.477336,0.710167,0.297836,0.356491,0.0322728,0.657308,0.152371,0.0716255,0.975305,0.891878,0.917064,0.206749,0.373129,0.956129,0.999482,0.487,0.0498912,0.470395,0.666437,0.341807,0.339163,0.583959,0.435197,0.0850097,0.381174,0.361974,0.132212,0.794974,0.648739,0.476943,0.825755,0.182594,0.70759,0.774353,0.348244,0.00309861,0.057808,0.116868,0.926318,0.762813,0.83045,0.303363,0.606544,0.631107,0.367337,0.970724,0.707378,0.400069,0.100386,0.214427,0.756091,0.817453,0.183548,0.21616,0.813731,0.604505,0.859329,0.132086,0.951606,0.892046,0.480913,0.115469,0.983233,0.870962,0.634866,0.23709,0.021838,0.367277,0.65729,0.110567,0.704105,0.110078,0.216241,0.429423,0.663465,0.887427,0.735538,0.171449,0.00878048,0.74986,0.350944,0.696748,0.014258,0.195403,0.493496,0.453967,0.673113,0.0843821,0.656968,0.412978,0.540343,0.0419586,0.137431,0.73183,0.884334,0.92826,0.955396,0.159326,0.908959,0.319071,0.618796,0.712258,0.8688,0.127259,0.00366181,0.839944,0.297793,0.267535,0.74359,0.95123,0.671222,0.644624,0.65504,0.786487,0.959581,0.42189,0.867287,0.506838,0.173651,0.61224,0.259893,0.3098,0.088289,0.994206,0.163672,0.847871,0.580657,0.202779,0.800915,0.212058,0.295789,0.199831,0.122153,0.158494,0.132929,0.67166,0.356808,0.523953,0.427371,0.462927,0.194071,0.759708,0.144519,0.976411,0.0352553,0.890102,0.0931376,0.67619,0.0687721,0.29664,0.329688,0.452464,0.0326979,0.799357,0.418373,0.738721,0.70593,0.708475,0.92028,0.904732,0.275116,0.337156,0.654636,0.549738,0.419341,0.640618,0.987287,0.446466,0.536033,0.769895,0.446083,0.98031,0.687659,0.848204,0.182756,0.6996,0.997362,0.681498,0.665229,0.848602,0.570686,0.188028,0.364541,0.227436,0.00184208,0.935535,0.85132,0.568745,0.235037,0.65459,0.890498,0.904828,0.90939,0.114445,0.906263,0.116941,0.395507,0.550591,0.109886,0.291021,0.171888,0.713986,0.725876,0.324762,0.581433,0.975124,0.0311246,0.227217,0.980405,0.260864,0.200513,0.820849,0.647376,0.724618,0.21018,0.746355,0.65228,0.00590032,0.40485,0.831567,0.788572,0.660576,0.499959,0.0824324,0.0654297,0.807827,0.0830291,0.847029,0.818729,0.39953,0.836961,0.954625,0.723422,0.0684541,0.922172,0.642053,0.873612,0.930969,0.150101,0.0813658,0.373299,0.856921,0.767224,0.670957,0.504411,0.229098,0.371973,0.314698,0.990375,0.910512,0.144062,0.784734,0.65909,0.665312,0.541485,0.894737,0.638653,0.638173,0.113966,0.490438,0.922849,0.277987,0.45783,0.068197,0.122,0.424167,0.756404,0.840871,0.918222,0.512714,0.57301,0.443836,0.895497,0.556096,0.670297,0.413763,0.159652,0.526755,0.364579,0.269958,0.151592,0.144357,0.719216,0.598624,0.971989,0.122316,0.813433,0.379156,0.179374,0.802352,0.106419,0.335259,0.642396,0.18855,0.675568,0.694671,0.233455,0.0460027,0.548428,0.615915,0.169191,0.977916,0.137575,0.219422,0.187587,0.274939,0.705988,0.0161437,0.812354,0.0489479,0.173156,0.75879,0.713803,0.399479,0.567413,0.359435,0.114963,0.497098,0.895751,0.0566622,0.414587,0.923455,0.161334,0.415096,0.974648,0.318284,0.115097,0.525552,0.129248,0.372483,0.421657,0.328519,0.982646,0.884844,0.650964,0.195063,0.412103,0.48056,0.43526,0.162067,0.593674,0.609097,0.00786507,0.117777,0.196494,0.813664,0.581681,0.318271,0.577153,0.0193552,0.30468,0.0140097,0.926457,0.0993306,0.838758,0.313022,0.397889,0.712522,0.0426722,0.353224,0.730428,0.0536638,0.703171,0.00398654,0.52866,0.552267,0.984011,0.40817,0.74071,0.0916466,0.536296,0.936062,0.750095,0.698823,0.953914,0.887886,0.201995,0.394538,0.292565,0.830029,0.564569,0.293018,0.738423,0.339286,0.53305,0.287694,0.19942,0.237615,0.489656,0.227025,0.875434,0.874911,0.774524,0.216119,0.0449918,0.236528,0.329544,0.225906,0.420112,0.988941,0.580568,0.0636596,0.245638,0.641303,0.934666,0.67421,0.735977,0.13906,0.732568,0.308018,0.242507,0.423213,0.417691,0.784833,0.0655568,0.0259604,0.580468,0.838176,0.909736,0.495962,0.576714,0.799331,0.830209,0.731854,0.830121,0.953112,0.347242,0.867727,0.360199,0.385811,0.299118,0.4287,0.566854,0.844796,0.781142,0.648641,0.480072,0.347476,0.388918,0.353954,0.005081,0.860517,0.00627887,0.735153,0.489848,0.558256,0.0470338,0.0086211,0.0268907,0.687656,0.23042,0.737122,0.115368,0.781297,0.724649,0.836328,0.435684,0.274761,0.266251,0.456394,0.512465,0.670802,0.328873,0.0733399,0.441115,0.984559,0.907273,0.67397,0.0992205,0.41171,0.468326,0.355848,0.173565,0.745158,0.416517,0.937387,0.949003,0.34247,0.294771,0.65825,0.358414,0.924485,0.350701,0.821176,0.940957,0.744704,0.816653,0.196033,0.259383,0.38339,0.0022651,0.582554,0.529494,0.982412,0.819773,0.851478,0.287429,0.962398,0.0898399,0.0550312,0.0767844,0.288285,0.409172,0.69182,0.358218,0.687383,0.577904,0.854776,0.80567,0.472339,0.26322,0.547854,0.847809,0.531214,0.0948775,0.679682,0.95629,0.0417572,0.489321,0.295438,0.491046,0.783385,0.629907,0.771606,0.552806,0.204669,0.245524,0.169307,0.640654,0.654691,0.83993,0.219535,0.514498,0.253007,0.915756,0.335403,0.0631002,0.77907,0.707275,0.655089,0.895939,0.990213,0.020126,0.868915,0.392677,0.755261,0.702037,0.344206,0.853467,0.822318,0.699906,0.152635,0.124824,0.0376304,0.564178,0.449591,0.684652,0.991398,0.651829,0.755291,0.497795,0.00647879,0.618984,0.240061,0.844248,0.345287,0.245874,0.543396,0.206336,0.647612,0.129566,0.0504754,0.736169,0.342092,0.409433,0.168034,0.469453,0.180579,0.904787,0.533477,0.907145,0.23029,0.103045,0.0241843,0.0120587,0.676876,0.196416,0.84848,0.295362,0.10978,0.845657,0.65075,0.649076,0.79795,0.80052,0.272647,0.0825082,0.360608,0.525217,0.276511,0.39868,0.262244,0.680652,0.916855,0.142146,0.354491,0.895665,0.827631,0.575702,0.144864,0.226784,0.828083,0.358782,0.0100199,0.154145,0.450252,0.653047,0.260527,0.878564,0.0110538,0.292796,0.578139,0.580186,0.0239857,0.875408,0.901402,0.138782,0.1629,0.262094,0.721931,0.698046,0.0844125,0.165622,0.981731,0.00747114,0.276102,0.170329,0.595516,0.826284,0.931997,0.40709,0.360425,0.620548,0.707072,0.905078,0.618699,0.0751585,0.166736,0.663937,0.775112,0.276296,0.581475,0.523397,0.627094,0.797066,0.000587285,0.59151,0.877477,0.0163643,0.164022,0.426299,0.275639,0.353092,0.610969,0.419306,0.981578,0.478925,0.250082,0.146539,0.971214,0.839113,0.194138,0.0894861,0.367742,0.587189,0.248411,0.812976,0.933971,0.124971,0.348352,0.451644,0.397013,0.493126,0.345624,0.30351,0.887803,0.813212,0.841225,0.911583,0.967416,0.489449,0.709502,0.0779636,0.0187348,0.426497,0.793737,0.702997,0.587091,0.383053,0.609924,0.840389,0.905415,0.641931,0.975357,0.00285256,0.0653321,0.130687,0.0604333,0.945934,0.495817,0.865914,0.999504,0.355641,|0.947573,0.530969,0.288172,0.785795,0.0583275,0.586911,0.442913,0.455432,0.438506,0.122716,0.14227,0.468532,0.950096,0.326846,0.904536,0.313018,0.994577,0.246454,0.432942,0.0813804,0.57302,0.197378,0.943196,0.701206,0.176636,0.639755,0.284313,0.243648,0.307898,0.54347,0.0699865,0.016982,0.313651,0.575406,0.244739,0.689699,0.926544,0.965708,0.348845,0.80826,0.717213,0.118252,0.915269,0.750898,0.961648,0.533503,0.00283647,0.268259,0.746406,0.303496,0.793677,0.554763,0.991236,0.409597,0.751291,0.474466,0.00451285,0.491812,0.196266,0.973115,0.644681,0.366697,0.883431,0.205727,0.199661,0.992074,0.438199,0.296554,0.910345,0.270191,0.0503708,0.00772411,0.307294,0.465714,0.236512,0.0250835,0.396346,0.941506,0.18713,0.104857,0.84531,0.42472,0.277041,0.836683,0.959968,0.565917,0.954673,0.369517,0.775455,0.938303,0.483557,0.282806,0.0525522,0.24304,0.734614,0.432431,0.725839,0.553728,0.285853,0.432027,0.842222,0.241461,0.0659005,0.473694,0.374537,0.136375,0.0353773,0.596932,0.972874,0.870376,0.10621,0.897092,0.8166,0.209097,0.16448,0.48758,0.774918,0.571056,0.273778,0.28216,0.522332,0.428026,0.144159,0.502326,0.839882,0.725266,0.796167,0.101431,0.640597,0.839963,0.26463,0.713828,0.154469,0.950422,0.0791939,0.6759,0.645491,0.460922,0.628018,0.806297,0.605887,0.879252,0.286068,0.215856,0.0931981,0.215552,0.479838,0.297695,0.583764,0.38731,0.882472,0.239834,0.803601,0.0383411,0.539531,0.289606,0.965672,0.916253,0.83993,0.329483,0.839907,0.428019,0.148191,0.315731,0.746098,0.770309,0.611186,0.180295,0.225088,0.909342,0.908846,0.091924,0.468488,0.393959,0.0967029,0.665456,0.556623,0.24398,0.357299,0.752003,0.574105,0.140012,0.270862,0.581108,0.453553,0.100817,0.635359,0.902014,0.776321,0.512683,0.663002,0.720083,0.380159,0.241094,0.971696,0.460664,0.915899,0.254538,0.127292,0.0905337,0.568292,0.996743,0.172888,0.648335,0.303321,0.977381,0.135974,0.297862,0.462801,0.326971,0.331621,0.14201,0.786127,0.785196,0.269539,0.0414747,0.79302,0.351976,0.49958,0.752196,0.436844,0.537091,0.360879,0.0651644,0.0300567,0.252751,0.452095,0.277505,0.380879,0.0606494,0.681371,0.938302,0.350572,0.668471,0.377392,0.962038,0.480623,0.0697551,0.200531,0.712238,0.594387,0.123327,0.738937,0.736637,0.034924,0.796636,0.560141,0.0248827,0.959792,0.905247,0.744672,0.355869,0.0661429,0.353361,0.377844,0.806904,0.608931,0.309239,0.514246,0.415744,0.607565,0.737475,0.135046,0.824763,0.243127,0.657481,0.993196,0.345269,0.207147,0.464382,0.329686,0.806999,0.323576,0.133774,0.941064,0.35713,0.981092,0.888887,0.529031,0.00969344,0.770284,0.0374618,0.437376,0.890969,0.420604,0.42743,0.419333,0.382551,0.910901,0.500034,0.869742,0.715702,0.525203,0.650306,0.879688,0.799231,0.192983,0.35258,0.366639,0.100845,0.631926,0.832499,0.94358,0.706407,0.102381,0.747257,0.470379,0.732397,0.707881,0.891709,0.75797,0.90963,0.583643,0.865159,0.364656,0.987443,0.398491,0.784373,0.969349,0.124311,0.478825,0.534081,0.0534516,0.942716,0.489547,0.493789,0.236605,0.0211604,0.385005,0.0121552,0.257544,0.475955,0.659132,0.463321,0.170711,0.282307,0.362915,0.0269458,0.751996,0.573555,0.3444,0.75593,0.234647,0.664828,0.432395,0.965982,0.961173,0.209432,0.000759006,0.368336,0.413715,0.0128483,0.592687,0.844953,0.849818,0.344294,0.896759,0.9705,0.663396,0.459176,0.16601,0.448767,0.220867,0.981057,0.0930237,0.0961747,0.788718,0.337405,0.854153,0.925346,0.71547,0.656208,0.815495,0.432208,0.862813,0.379253,0.290734,0.382504,0.766403,0.387452,0.432617,0.934384,0.975674,0.880069,0.893441,0.35696,0.819733,0.102896,0.535628,0.758349,0.855945,0.949441,0.283914,0.725284,0.583771,0.223675,0.757572,0.871909,0.559613,0.552062,0.684629,0.266685,0.730678,0.252769,0.5782,0.397416,0.26597,0.905438,0.286334,0.51196,0.571812,0.636581,0.410226,0.626088,0.876396,0.282704,0.857526,0.349724,0.770915,0.632704,0.242781,0.111212,0.553189,0.490212,0.513296,0.479797,0.938658,0.236099,0.63724,0.653018,0.800425,0.721363,0.346929,0.627128,0.14696,0.237731,0.236395,0.419387,0.85967,0.114766,0.360855,0.655191,0.00591815,0.581526,0.939618,0.696015,0.270705,0.160262,0.56424,0.909686,0.658783,0.0491072,0.185696,0.209851,0.694531,0.27762,0.834905,0.671031,0.393477,0.699007,0.300911,0.910805,0.45958,0.733785,0.84361,0.127271,0.26541,0.701001,0.740095,0.556587,0.315627,0.67964,0.537471,0.571479,0.232532,0.737459,0.374882,0.248342,0.578116,0.755783,0.640579,0.567547,0.83655,0.281457,0.461074,0.194243,0.379093,0.929338,0.616927,0.567457,0.102491,0.581139,0.922588,0.613783,0.227927,0.421573,0.246251,0.779217,0.738652,0.19871,0.883072,0.325339,0.53612,0.317175,0.72302,0.0745165,0.245709,0.987573,0.178592,0.879899,0.775203,0.598304,0.755183,0.562288,0.668184,0.382637,0.376725,0.761377,0.635561,0.680862,0.469464,0.56756,0.576414,0.133449,0.249665,0.861782,0.435105,0.327906,0.538107,0.65632,0.996771,0.524119,0.107234,0.133493,0.415379,0.727982,0.899815,0.179948,0.618524,0.164066,0.186077,0.165646,0.911426,0.919742,0.673127,0.86591,0.979651,0.140167,0.347121,0.613581,0.29047,0.58969,0.490615,0.111493,0.245669,0.21288,0.446526,0.549136,0.944236,0.0830718,0.619874,0.134557,0.251012,0.379966,0.34979,0.923197,0.457877,0.580403,0.057099,0.690163,0.478245,0.335443,0.1576,0.261286,0.215938,0.212552,0.924302,0.032884,0.444138,0.385886,0.948327,0.289527,0.382808,0.107956,0.0315611,0.118109,0.186077,0.359268,0.305921,0.79792,0.497857,0.458779,0.190237,0.798522,0.485707,0.457922,0.306818,0.533486,0.456212,0.58145,0.35571,0.456876,0.837263,0.563764,0.701181,0.755879,0.534664,0.297073,0.682289,0.948509,0.922075,0.686447,0.834799,0.332061,0.573755,0.207594,0.0690061,0.067938,0.169493,0.342263,0.414322,0.62166,0.323417,0.753369,0.702812,0.0295116,0.492716,0.964565,0.68074,0.697102,0.386091,0.455221,0.251485,0.60437,0.953548,0.698852,0.034296,0.231827,0.11972,0.99418,0.103846,0.281986,0.770068,0.788717,0.83968,0.395351,0.339501,0.608355,0.100654,0.521582,0.087607,0.0900667,0.660522,0.704334,0.309918,0.859773,0.587908,0.96821,0.424096,0.491137,0.679985,0.215093,0.638205,0.777972,0.25845,0.725244,0.172526,0.751392,0.170641,0.208588,0.730614,0.914887,0.433686,0.812235,0.816738,0.831822,0.411738,0.033762,0.00334156,0.739276,0.832446,0.918059,0.422975,0.89835,0.0015794,0.48406,0.863349,0.815947,0.0565847,0.461766,0.917723,0.920812,0.369063,0.17349,0.0801371,0.178307,0.55574,0.0353709,0.174031,0.41738,0.299246,0.204937,0.127331,0.0679137,0.586148,0.12614,0.584024,0.869777,0.336445,0.0414466,0.571918,0.139251,0.850096,0.111677,0.233501,0.902731,0.664126,0.911641,0.523565,0.665464,0.126119,0.318812,0.512464,0.931475,0.92544,0.279501,0.662261,0.278952,0.587058,0.864951,0.118452,0.685568,0.278085,0.0753732,0.807114,0.675066,0.0179287,0.156413,0.14322,0.628375,0.565017,0.467993,0.545822,0.130011,0.64031,0.896637,0.609035,0.574826,0.897062,0.155871,0.589074,0.977695,0.502074,0.848593,0.374852,0.61245,0.694057,0.747586,0.886406,0.333949,0.238149,0.485401,0.980449,0.194044,0.545938,0.476438,0.067248,0.00970834,0.715129,0.00201792,0.964252,0.878708,0.188425,0.0179571,0.551809,0.91925,0.803428,0.267815,0.459569,0.228103,0.568752,0.311466,0.203937,0.896537,0.333835,0.747968,0.604085,0.486556,0.267326,0.651194,0.440983,0.763722,0.393243,0.787537,0.0263959,0.201724,0.254303,0.774049,0.130569,0.727999,0.637226,0.973696,0.528009,0.200329,0.967537,0.991039,0.892457,0.353159,0.0888779,0.635787,0.223716,0.497887,0.77353,0.726288,0.290372,0.687804,0.419289,0.322429,0.243549,0.984613,0.971665,0.690805,0.198402,0.446213,0.995465,0.98847,0.420313,0.752902,0.375779,0.715804,0.19134,0.624929,0.805681,0.872387,0.479266,0.910622,0.822375,0.908605,0.242026,0.0757734,0.660797,0.292529,0.321286,0.219609,0.592756,0.541909,0.381653,0.958478,0.192768,0.920715,0.683305,0.301009,0.798664,0.448591,0.865196,0.691778,0.696638,0.486699,0.834554,0.21693,0.02866,0.855773,0.645146,0.202673,0.916795,0.243291,0.218767,0.754218,0.054222,0.859106,0.165185,0.86476,0.189586,0.925004,0.72919,0.0227998,0.613896,0.835242,0.841249,0.27994,0.751873,0.966611,0.280652,0.341738,0.0470681,0.123012,0.186859,0.0927014,0.210785,0.113328,0.704178,0.255729,0.795131,0.664677,0.639816,0.656779,0.943639,0.6541,0.945384,0.510838,0.63196,0.575107,0.44147,0.181506,0.978171,0.335554,0.550967,0.625868,0.533136,0.227756,0.870557,0.47983,0.269434,0.648609,0.983611,0.745016,0.758049,0.609715,0.0865748,0.662694,0.949436,0.391232,0.38423,0.275464,0.7899,0.70926,0.397785,0.303555,0.419684,0.971397,0.154873,0.0929682,0.840083,0.463796,0.69423,0.120265,0.130217,0.365855,0.492994,0.633247,0.0841724,0.34805,0.276415,0.745308,0.421081,0.808638,0.458197,0.169183,0.905681,0.763364,0.820967,0.919815,0.13357,0.260233,0.873432,0.328815,0.759975,0.353441,0.666489,0.349773,0.375074,0.89804,0.150927,0.552656,0.975318,0.800685,0.432127,0.702669,0.635711,0.787828,0.317561,0.433349,0.657807,0.14921,0.851273,0.187639,0.0660871,0.110627,0.470561,0.679679,0.667207,0.602168,0.0295165,0.318435,0.149819,0.148516,0.743209,0.808611,0.437501,0.618157,0.428313,0.578837,0.650721,0.541426,0.752945,0.0612893,0.474912,0.530068,0.932884,0.187888,|0.867185,0.482048,0.589046,0.363472,0.496176,0.320106,0.744931,0.255502,0.419281,0.0695836,0.0817199,0.577249,0.572989,0.884068,0.472021,0.877759,0.505168,0.216419,0.166932,0.884805,0.761739,0.447429,0.968368,0.674218,0.732433,0.147485,0.604511,0.940196,0.187685,0.459822,0.413052,0.936582,0.990006,0.285525,0.679521,0.863597,0.667914,0.0337318,0.562591,0.240959,0.0621712,0.751083,0.565459,0.706365,0.0488895,0.405423,0.936148,0.801444,0.878112,0.45716,0.757656,0.834463,0.385672,0.583577,0.413518,0.128331,0.271034,0.840309,0.946537,0.846439,0.0901053,0.237387,0.937932,0.286239,0.571345,0.815529,0.0181557,0.447154,0.29508,0.407834,0.0685592,0.072367,0.0592802,0.660074,0.0695069,0.153813,0.744893,0.0488169,0.756471,0.377119,0.55005,0.597666,0.409474,0.645747,0.362133,0.17038,0.106764,0.874405,0.121912,0.047338,0.837806,0.656983,0.982353,0.961151,0.84527,0.433339,0.275049,0.962327,0.681543,0.436937,0.675591,0.0625486,0.420738,0.542004,0.797795,0.633287,0.459475,0.679065,0.461751,0.641581,0.186173,0.741066,0.671463,0.283908,0.165055,0.353948,0.93543,0.546446,0.170488,0.763682,0.149953,0.275308,0.201664,0.777441,0.390161,0.446053,0.92222,0.974964,0.104761,0.237561,0.47052,0.371375,0.352073,0.770044,0.899629,0.287907,0.79252,0.527576,0.907149,0.289494,0.28547,0.297767,0.560427,0.169061,0.91434,0.429476,0.662507,0.321174,0.301589,0.0726122,0.0300607,0.972496,0.490584,0.910062,0.890936,0.661456,0.0619565,0.00247097,0.29432,0.180116,0.893658,0.188725,0.151351,0.787124,0.738584,0.858856,0.774115,0.606746,0.280945,0.954857,0.294952,0.862677,0.77562,0.0710939,0.818085,0.877667,0.920571,0.464926,0.77749,0.254779,0.0971107,0.275972,0.59295,0.58053,0.954103,0.294404,0.199267,0.44386,0.350137,0.26777,0.73808,0.608441,0.897391,0.281771,0.688803,0.879737,0.077261,0.176771,0.534818,0.0806326,0.57346,0.539284,0.071391,0.656487,0.00363654,0.213373,0.898275,0.877913,0.135066,0.608857,0.633399,0.280235,0.989519,0.256835,0.957976,0.93273,0.0253681,0.577437,0.839616,0.634119,0.744929,0.708234,0.01243,0.122226,0.298884,0.272207,0.826123,0.50205,0.866556,0.31189,0.016525,0.289324,0.407208,0.558295,0.811768,0.181915,0.0189914,0.487147,0.25798,0.345976,0.276296,0.893771,0.41905,0.642217,0.0250448,0.756667,0.220382,0.756639,0.242044,0.53467,0.389365,0.797352,0.635402,0.175339,0.212405,0.753674,0.0836433,0.63985,0.349446,0.901949,0.240707,0.78393,0.760847,0.869151,0.305554,0.044693,0.139226,0.955724,0.903927,0.558577,0.148553,0.592554,0.835909,0.828573,0.376801,0.334271,0.0811302,0.191882,0.840082,0.116864,0.809856,0.167732,0.0848665,0.304239,0.596439,0.740848,0.464883,0.252035,0.360204,0.337284,0.206252,0.0527058,0.516696,0.208992,0.0965438,0.307879,0.961591,0.183992,0.207739,0.717985,0.178847,0.946381,0.654691,0.337693,0.879933,0.237665,0.472857,0.194957,0.36003,0.605245,0.830231,0.735995,0.372211,0.56334,0.554924,0.618248,0.738007,0.480702,0.629293,0.449995,0.663188,0.724919,0.572498,0.672325,0.141513,0.473012,0.779025,0.908242,0.11763,0.308435,0.35227,0.154126,0.466818,0.236442,0.698378,0.538003,0.913768,0.0891457,0.0503651,0.373967,0.213323,0.707635,0.177676,0.416246,0.410977,0.102597,0.961301,0.577557,0.0218226,0.0118606,0.342563,0.987738,0.985341,0.188551,0.496461,0.962168,0.668612,0.67134,0.137613,0.138088,0.272629,0.241644,0.285378,0.161624,0.464299,0.513137,0.764239,0.509838,0.0627653,0.779338,0.340573,0.151492,0.128873,0.964233,0.0715519,0.9369,0.666025,0.337076,0.696582,0.225552,0.158649,0.763769,0.567358,0.660068,0.184338,0.14921,0.163331,0.994456,0.344451,0.670621,0.553449,0.352885,0.850844,0.628071,0.817494,0.330315,0.382538,0.825488,0.938249,0.358377,0.497527,0.773745,0.405425,0.223102,0.548869,0.911662,0.515613,0.136844,0.827067,0.29986,0.527975,0.57737,0.353914,0.200098,0.0013113,0.493298,0.175972,0.992838,0.0715412,0.464298,0.164612,0.763218,0.157053,0.733034,0.817024,0.404112,0.751477,0.461695,0.668891,0.837805,0.644637,0.310072,0.190666,0.56349,0.485585,0.44338,0.896383,0.511708,0.749306,0.124738,0.649769,0.660006,0.963191,0.244511,0.586197,0.0309764,0.0332528,0.993236,0.605389,0.666003,0.57073,0.0765613,0.691876,0.707715,0.166492,0.11465,0.377076,0.44316,0.786809,0.916996,0.453167,0.0343841,0.527517,0.864308,0.457361,0.829166,0.465399,0.905391,0.883966,0.223906,0.266503,0.272685,0.744256,0.259165,0.51649,0.499911,0.479626,0.799562,0.232322,0.0217514,0.290901,0.590848,0.778147,0.946645,0.31108,0.526397,0.291659,0.684329,0.63688,0.257868,0.974456,0.289212,0.626386,0.546187,0.271093,0.475154,0.621015,0.0440329,0.401565,0.779754,0.185523,0.8826,0.791962,0.69608,0.608268,0.234304,0.420485,0.566405,0.945735,0.463676,0.625548,0.416097,0.198384,0.284844,0.985956,0.360092,0.721144,0.286429,0.795221,0.535535,0.211664,0.717806,0.319104,0.466344,0.417687,0.0563946,0.918448,0.54968,0.396295,0.288658,0.966471,0.627833,0.293207,0.64075,0.0450344,0.0655407,0.518813,0.7025,0.741274,0.864582,0.0303291,0.0690585,0.5961,0.0670853,0.839655,0.108684,0.811422,0.0638714,0.139405,0.275936,0.543544,0.0256929,0.24267,0.764503,0.269247,0.505215,0.128697,0.921787,0.713986,0.867282,0.149119,0.479317,0.930085,0.471621,0.999598,0.0853012,0.639882,0.694653,0.938587,0.693788,0.697364,0.736554,0.651169,0.412176,0.448645,0.417672,0.523089,0.803269,0.251604,0.843432,0.405084,0.486402,0.779389,0.524915,0.141641,0.36759,0.527075,0.826956,0.465936,0.437932,0.575522,0.205432,0.966958,0.966226,0.473213,0.965147,0.599049,0.844774,0.808052,0.544787,0.719949,0.847801,0.238289,0.850327,0.351816,0.354137,0.162269,0.732554,0.95798,0.184575,0.260501,0.769453,0.89154,0.921237,0.0141183,0.965013,0.794868,0.099214,0.917237,0.798839,0.387546,0.56838,0.688588,0.309654,0.835428,0.983403,0.576005,0.896462,0.205727,0.992387,0.350611,0.707734,0.105985,0.16081,0.563128,0.955033,0.0907514,0.0299402,0.438382,0.024807,0.556955,0.313168,0.532923,0.780037,0.264348,0.650145,0.954067,0.597728,0.19167,0.414705,0.152534,0.726143,0.3287,0.306489,0.0554888,0.475058,0.286801,0.601803,0.590353,0.310855,0.402758,0.427766,0.549325,0.793077,0.971919,0.561739,0.92674,0.056757,0.837788,0.147913,0.172255,0.108959,0.492912,0.962443,0.148592,0.620192,0.901692,0.786724,0.486085,0.592781,0.705842,0.698625,0.7512,0.262797,0.41704,0.91162,0.328057,0.640937,0.414903,0.901559,0.561859,0.224297,0.84028,0.908606,0.831158,0.15277,0.0945586,0.940148,0.00329721,0.0554035,0.256857,0.351979,0.328883,0.627887,0.694358,0.803005,0.495777,0.055153,0.671016,0.986295,0.12931,0.352085,0.424378,0.75901,0.902277,0.757331,0.112764,0.816779,0.0550022,0.113925,0.801429,0.83219,0.00800455,0.0656898,0.0773168,0.893464,0.778023,0.0348007,0.785882,0.292571,0.971307,0.932326,0.323983,0.482642,0.419107,0.688381,0.791098,0.302385,0.399795,0.742936,0.377674,0.318028,0.576279,0.998275,0.294598,0.765875,0.668959,0.655517,0.909048,0.871023,0.614548,0.0635117,0.00168622,0.591145,0.437179,0.768744,0.812492,0.246998,0.348573,0.863497,0.797114,0.871288,0.734051,0.995588,0.527959,0.396809,0.505453,0.340591,0.75968,0.446431,0.356739,0.307621,0.869181,0.511064,0.395719,0.492884,0.52472,0.368424,0.817975,0.430176,0.446711,0.851114,0.0709212,0.474438,0.193816,0.816665,0.350224,0.69683,0.951026,0.467669,0.33449,0.847661,0.00573748,0.764243,0.998095,0.637391,0.777221,0.621805,0.923631,0.490207,0.478896,0.901074,0.426625,0.759862,0.888436,0.273336,0.000523865,0.830738,0.925657,0.920049,0.379438,0.238172,0.260254,0.109615,0.538941,0.0412009,0.404348,0.476652,0.817343,0.333841,0.431679,0.892472,0.192274,0.602403,0.0798074,0.687687,0.976501,0.944318,0.0135703,0.404966,0.737423,0.678754,0.0793009,0.296451,0.446425,0.568819,0.720109,0.635847,0.707604,0.141995,0.455556,0.668287,0.671105,0.0435374,0.134743,0.756924,0.646021,0.424145,0.192367,0.206815,0.466936,0.0294958,0.892968,0.902468,0.955002,0.0265982,0.367141,0.199505,0.183919,0.923043,0.952354,0.754733,0.63522,0.29554,0.622693,0.674795,0.130176,0.440628,0.544481,0.321328,0.314677,0.0578764,0.801615,0.690967,0.454062,0.129904,0.291355,0.941311,0.282696,0.880665,0.49295,0.279762,0.291643,0.214322,0.718812,0.0644626,0.411429,0.153713,0.624287,0.0380703,0.116884,0.0923535,0.44004,0.0969772,0.785386,0.450204,0.18911,0.634695,0.509978,0.651897,0.49648,0.260198,0.311656,0.626842,0.150737,0.143465,0.00242555,0.798104,0.696641,0.847652,0.166423,0.982329,0.957905,0.0463555,0.434175,0.588219,0.973224,0.786113,0.0305577,0.594965,0.661279,0.437918,0.678062,0.272882,0.442621,0.867674,0.0170219,0.107436,0.592269,0.696286,0.405321,0.486639,0.661665,0.454545,0.279541,0.644871,0.179336,0.774788,0.895786,0.724903,0.318925,0.36694,0.242172,0.98848,0.198922,0.269066,0.306324,0.807287,0.222655,0.191847,0.740891,0.320993,0.542071,0.070277,0.967827,0.972372,0.896293,0.67591,0.611277,0.556608,0.806191,0.262257,0.74262,0.22851,0.18008,0.484875,0.241957,0.0812783,0.211705,0.254175,0.0547712,0.233891,0.38831,0.295659,0.537021,0.976557,0.089179,0.485987,0.447606,0.561663,0.00799775,0.265648,0.282014,0.308413,0.917719,0.0598971,0.795414,0.651029,0.100364,0.189043,0.359998,0.931009,0.570135,0.0978959,0.778508,0.701264,0.775485,0.208593,0.979564,0.743088,|0.00848222,0.355539,0.261313,0.469715,0.0575757,0.467489,0.202426,0.193202,0.255813,0.215382,0.120205,0.560284,0.0728494,0.554026,0.40499,0.726937,0.143294,0.170594,0.748154,0.492856,0.926748,0.211819,0.083404,0.887993,0.811441,0.941095,0.361102,0.149824,0.784238,0.562424,0.238121,0.252465,0.663406,0.426427,0.926659,0.127881,0.256973,0.812131,0.394344,0.989299,0.139139,0.554897,0.517849,0.212379,0.0919045,0.0819563,0.16013,0.755282,0.987248,0.0650377,0.192512,0.304839,0.381153,0.778346,0.108512,0.974967,0.385231,0.466502,0.541363,0.887452,0.21006,0.469164,0.962375,0.945111,0.411517,0.782235,0.668972,0.352717,0.123439,0.0326244,0.599981,0.495478,0.96058,0.74163,0.425026,0.570579,0.897452,0.38904,0.680825,0.30005,0.131072,0.494006,0.550366,0.796681,0.635635,0.13643,0.429421,0.753708,0.0481043,0.908984,0.199537,0.261831,0.0076552,0.218177,0.841427,0.0794421,0.554322,0.936884,0.441283,0.814103,0.318114,0.554528,0.239183,0.948151,0.63258,0.552051,0.65906,0.0621826,0.461046,0.657868,0.87865,0.378851,0.940528,0.783375,0.105364,0.882288,0.666905,0.387275,0.184746,0.230912,0.925769,0.256192,0.362737,0.806382,0.300264,0.673041,0.353709,0.391169,0.684813,0.881955,0.0333414,0.683358,0.904616,0.0451055,0.322445,0.848289,0.683348,0.975075,0.453279,0.330981,0.928186,0.464137,0.120483,0.215579,0.106848,0.634139,0.572828,0.456628,0.156433,0.601083,0.522979,0.267848,0.70288,0.17843,0.629617,0.428853,0.841442,0.528335,0.732908,0.842533,0.901448,0.876085,0.819611,0.0758457,0.0671494,0.670712,0.729271,0.783553,0.564642,0.470406,0.206235,0.191533,0.760353,0.690783,0.770486,0.414458,0.80959,0.0576625,0.594071,0.122754,0.165583,0.873785,0.606873,0.733901,0.7174,0.760365,0.269201,0.602763,0.593256,0.844478,0.531032,0.115916,0.0419134,0.0874664,0.193185,0.770823,0.329539,0.599869,0.664937,0.137498,0.0973171,0.323277,0.291901,0.844748,0.563183,0.534779,0.628823,0.807182,0.673915,0.220678,0.323992,0.792629,0.217459,0.303537,0.959552,0.474395,0.798034,0.0172415,0.135531,0.927058,0.81452,0.302527,0.635412,0.146676,0.60505,0.306069,0.792713,0.132525,0.820561,0.676773,0.461124,0.143336,0.490234,0.964433,0.545132,0.255898,0.172159,0.88029,0.917813,0.307896,0.772548,0.129815,0.57105,0.969532,0.0367076,0.846373,0.386341,0.767632,0.728869,0.812726,0.271339,0.685388,0.787124,0.847325,0.873424,0.892472,0.986013,0.392434,0.404175,0.193925,0.129013,0.459331,0.0926918,0.16861,0.233129,0.886332,0.18457,0.416518,0.967432,0.559367,0.722239,0.8486,0.930454,0.537687,0.0150921,0.703614,0.319493,0.0680543,0.587343,0.336258,0.0857872,0.269417,0.224016,0.307955,0.269244,0.140837,0.300838,0.194237,0.752741,0.152741,0.364647,0.45533,0.0720371,0.313466,0.472151,0.576166,0.552609,0.501963,0.609043,0.953998,0.651039,0.208494,0.200439,0.0789862,0.187637,0.594616,0.973279,0.110631,0.323838,0.58069,0.371543,0.8214,0.824752,0.222501,0.954982,0.930577,0.976252,0.67852,0.483687,0.179607,0.608693,0.499192,0.415951,0.820495,0.186957,0.660352,0.208146,0.456367,0.664745,0.523568,0.279237,0.172989,0.214564,0.786692,0.188918,0.276557,0.247936,0.449338,0.493815,0.127649,0.0502616,0.530041,0.159352,0.960047,0.00801188,0.865177,0.710975,0.329027,0.946229,0.310507,0.299682,0.423335,0.42345,0.974047,0.903906,0.293781,0.14793,0.238065,0.15937,0.302503,0.224066,0.559741,0.185656,0.647603,0.495895,0.365737,0.728179,0.917004,0.278876,0.160654,0.00126684,0.315574,0.472432,0.0208816,0.474528,0.381623,0.801441,0.161522,0.629781,0.334044,0.813284,0.892929,0.217739,0.6915,0.912637,0.46378,0.0727046,0.993534,0.822901,0.967201,0.678505,0.0194363,0.0969154,0.607875,0.668062,0.474451,0.0753422,0.0968777,0.221555,0.425289,0.0705496,0.176633,0.201756,0.299055,0.154063,0.45513,0.826112,0.922369,0.678992,0.497288,0.314103,0.211086,0.89392,0.551662,0.138892,0.726875,0.594115,0.695253,0.918833,0.404373,0.15316,0.31309,0.0266588,0.641509,0.538493,0.307651,0.118874,0.168781,0.00986725,0.948132,0.798655,0.578481,0.94723,0.289751,0.863538,0.460256,0.299721,0.59955,0.533848,0.772401,0.718197,0.319823,0.720944,0.853002,0.608141,0.49787,0.995163,0.033898,0.294043,0.265851,0.371731,0.496242,0.403138,0.256248,0.530534,0.123209,0.248345,0.89024,0.355837,0.151845,0.18857,0.193904,0.348738,0.579946,0.155303,0.0920573,0.772351,0.797105,0.617965,0.376929,0.873643,0.214507,0.150585,0.317037,0.602071,0.947439,0.557455,0.414075,0.562563,0.394759,0.993897,0.42952,0.485352,0.521832,0.682337,0.651165,0.346061,0.260826,0.949414,0.157296,0.612538,0.45117,0.52344,0.591015,0.288339,0.27439,0.180389,0.926582,0.963434,0.340953,0.6084,0.173855,0.372998,0.229833,0.674902,0.0539851,0.716749,0.336806,0.10231,0.399742,0.48596,0.443878,0.817053,0.833267,0.671913,0.540311,0.619087,0.933827,0.505562,0.395606,0.406052,0.307435,0.765547,0.652455,0.404324,0.3739,0.0789747,0.191455,0.278925,0.0202772,0.466822,0.738514,0.535856,0.960139,0.277308,0.762198,0.158133,0.485355,0.388231,0.86207,0.504481,0.34781,0.772539,0.777645,0.926881,0.876385,0.611488,0.0867468,0.96896,0.0856208,0.163576,0.289146,0.872951,0.896091,0.984409,0.358236,0.137291,0.583379,0.256263,0.496459,0.133426,0.636946,0.581814,0.987001,0.952074,0.270091,0.263229,0.0650631,0.922451,0.485036,0.880972,0.161591,0.148936,0.355592,0.945328,0.674036,0.759634,0.471711,0.815078,0.578396,0.894463,0.187608,0.95369,0.588143,0.850368,0.824162,0.0515812,0.309335,0.609103,0.56506,0.33485,0.275345,0.633337,0.832444,0.708625,0.0868233,0.202569,0.43984,0.537719,0.968138,0.586541,0.322781,0.883861,0.808733,0.927192,0.286038,0.256578,0.0980272,0.412221,0.784774,0.0519826,0.896549,0.164956,0.56725,0.730152,0.766075,0.269842,0.0695837,0.227221,0.0350659,0.358048,0.815515,0.858745,0.526083,0.426556,0.324295,0.393903,0.332258,0.869102,0.941182,0.275876,0.557615,0.864942,0.635157,0.554905,0.344045,0.619347,0.304946,0.608732,0.652481,0.541791,0.610669,0.638634,0.00242251,0.314881,0.0711887,0.820565,0.651178,0.982147,0.0184402,0.470187,0.81325,0.233487,0.201604,0.050922,0.554897,0.518529,0.607281,0.307145,0.735499,0.13322,0.480063,0.19879,0.409623,0.532048,0.441069,0.892177,0.232895,0.195848,0.575749,0.508474,0.84038,0.215619,0.687202,0.104085,0.14645,0.547792,0.629302,0.165312,0.42933,0.641779,0.154727,0.84635,0.509696,0.346338,0.0018549,0.885484,0.698746,0.125699,0.322203,0.342401,0.820885,0.125984,0.566361,0.851247,0.249923,0.667665,0.267777,0.448817,0.405299,0.035764,0.623978,0.975572,0.965587,0.142835,0.153116,0.419079,0.924265,0.783255,0.491863,0.951397,0.255522,0.927216,0.291681,0.991945,0.282413,0.730552,0.31495,0.295903,0.993317,0.912978,0.0301391,0.614981,0.966685,0.412309,0.0819514,0.866762,0.0742275,0.591149,0.479678,0.0056327,0.241531,0.681633,0.778686,0.348431,0.684499,0.76744,0.29506,0.291098,0.145968,0.318968,0.889827,0.564183,0.433339,0.554073,0.983016,0.912153,0.479245,0.578101,0.021504,0.157499,0.960875,0.767837,0.357563,0.846408,0.632369,0.333015,0.33746,0.537791,0.806554,0.931217,0.973469,0.0728111,0.000436723,0.628566,0.73008,0.861014,0.435591,0.784335,0.290943,0.00603878,0.288675,0.46605,0.137853,0.0173472,0.711463,0.564003,0.208923,0.590087,0.92619,0.739327,0.452285,0.685668,0.441525,0.622433,0.391138,0.281408,0.651342,0.967577,0.392812,0.339641,0.779291,0.734943,0.0583294,0.411316,0.653567,0.284977,0.960142,0.279818,0.892977,0.196813,0.297228,0.737031,0.928351,0.344708,0.140205,0.70573,0.172682,0.541533,0.635397,0.355802,0.0183777,0.501152,0.484935,0.579241,0.701971,0.910335,0.470459,0.610336,0.889885,0.746886,0.0871123,0.764834,0.658022,0.530896,0.260868,0.189304,0.885468,0.150473,0.508613,0.305334,0.396084,0.71087,0.229521,0.659566,0.140165,0.42602,0.991526,0.588241,0.725227,0.229799,0.67597,0.392856,0.434771,0.697118,0.6318,0.84005,0.557868,0.482513,0.0230907,0.073149,0.164895,0.851544,0.0320562,0.113317,0.482434,0.346427,0.563596,0.0717598,0.757346,0.865827,0.0198113,0.922819,0.308668,0.0948423,0.303367,0.378497,0.639528,0.88558,0.150713,0.744298,0.429038,0.717308,0.770136,0.943898,0.210507,0.345215,0.933312,0.208422,0.468695,0.972986,0.113399,0.519417,0.605075,0.349911,0.59085,0.239706,0.402432,0.681699,0.0272043,0.354634,0.777103,0.724746,0.200663,0.627943,0.748148,0.951819,0.897771,0.792521,0.0891494,0.992293,0.438341,0.9962,0.317576,0.0345193,0.166823,0.672162,0.701289,0.945328,0.582797,0.108818,0.0223852,0.899105,0.141918,0.241246,0.472915,0.403648,0.911015,0.0143578,0.213937,0.52043,0.318698,0.96052,0.220781,0.874176,0.586505,0.82335,0.127988,0.631565,0.128816,0.161095,0.578996,0.740355,0.406811,0.915824,0.849001,0.561912,0.393315,0.688719,0.282477,0.0188109,0.676581,0.818587,0.420909,0.678166,0.558657,0.00334114,0.275325,0.260459,0.703919,0.63567,0.475662,0.328526,0.212331,0.164435,0.278365,0.61548,0.80124,0.097886,0.98422,0.715069,0.748215,0.875088,0.242925,0.740756,0.686858,0.947421,0.955101,0.210151,0.28765,0.67354,0.333614,0.488524,0.0177045,0.464471,0.929289,0.0286522,0.304539,0.743972,0.279257,0.297566,0.764958,0.935013,0.530949,0.805554,0.80204,0.457616,0.680966,0.170019,0.908494,0.552863,0.162488,0.610731,0.167505,0.406814,0.568929,0.228424,0.83837,0.892122,0.458143,|0.89735,0.278418,0.197261,0.706468,0.792057,0.79882,0.476506,0.939236,0.879819,0.0861669,0.194708,0.118508,0.44865,0.585693,0.136838,0.0745386,0.703392,0.32531,0.826075,0.736673,0.846664,0.640864,0.468075,0.342241,0.205583,0.833069,0.872539,0.00074017,0.133179,0.77433,0.205013,0.662756,0.36306,0.692821,0.402284,0.0680307,0.600235,0.777143,0.0214798,0.111547,0.811388,0.298635,0.00737125,0.163346,0.833194,0.512233,0.775458,0.0558646,0.823131,0.0315863,0.061168,0.469841,0.982083,0.83228,0.026026,0.204437,0.246833,0.025808,0.845735,0.696034,0.0268195,0.255141,0.772002,0.330495,0.723393,0.231373,0.284229,0.317212,0.863131,0.904988,0.456297,0.0879556,0.877813,0.613563,0.355797,0.690634,0.212194,0.562838,0.396006,0.0272654,0.348069,0.618728,0.0811198,0.427961,0.776764,0.0460308,0.921894,0.628549,0.359449,0.0102404,0.20154,0.0449554,0.358949,0.181348,0.936151,0.40679,0.609941,0.294507,0.624882,0.545453,0.294434,0.476227,0.49302,0.128612,0.465614,0.302995,0.730187,0.308605,0.97438,0.936003,0.856492,0.775341,0.909497,0.453236,0.751436,0.0889443,0.736329,0.423506,0.390293,0.933569,0.858892,0.829726,0.513067,0.0206407,0.271955,0.594647,0.679433,0.86425,0.434576,0.85441,0.89379,0.999251,0.170293,0.274405,0.0543471,0.560307,0.845493,0.995629,0.865383,0.46629,0.151753,0.637756,0.0593891,0.186827,0.567293,0.686734,0.951589,0.179765,0.512217,0.728275,0.715562,0.945719,0.171701,0.41931,0.0840046,0.851621,0.583195,0.723757,0.0854428,0.0657182,0.486152,0.391368,0.650455,0.15305,0.0703838,0.83219,0.61047,0.724356,0.632825,0.563882,0.0865154,0.683353,0.690535,0.757659,0.160605,0.308554,0.833809,0.793116,0.222914,0.39748,0.998692,0.897156,0.743397,0.0378487,0.0336084,0.729606,0.820433,0.695316,0.206569,0.694023,0.553783,0.819627,0.680669,0.363132,0.327963,0.410056,0.691017,0.3839,0.190232,0.0401504,0.453168,0.300485,0.335008,0.635469,0.871852,0.258913,0.311361,0.597494,0.786632,0.319631,0.408961,0.433913,0.569445,0.832899,0.28309,0.609905,0.576391,0.883568,0.976268,0.0296642,0.0796966,0.769458,0.115365,0.164534,0.207342,0.287387,0.752894,0.718485,0.641452,0.795967,0.192556,0.700638,0.0773456,0.9106,0.952118,0.755716,0.5176,0.882312,0.005844,0.417739,0.233211,0.170906,0.43174,0.277333,0.618044,0.800855,0.533239,0.10788,0.545808,0.809832,0.624271,0.285941,0.142302,0.5106,0.434893,0.899394,0.348278,0.555167,0.49311,0.457956,0.449037,0.230938,0.722377,0.427296,0.72797,0.765741,0.356507,0.0113518,0.374118,0.817636,0.444683,0.666967,0.845323,0.41313,0.698991,0.732941,0.534309,0.478176,0.0313894,0.990482,0.00137639,0.232321,0.286392,0.518115,0.333596,0.91972,0.83161,0.722588,0.979974,0.735519,0.694678,0.0113037,0.434813,0.241008,0.719419,0.0123846,0.525915,0.374708,0.766157,0.566859,0.459939,0.783887,0.308212,0.543547,0.760094,0.12458,0.271388,0.267101,0.345862,0.581835,0.584912,0.962743,0.18173,0.409939,0.231042,0.763082,0.0459433,0.244614,0.546961,0.990668,0.905584,0.774985,0.895616,0.37058,0.595853,0.634852,0.225428,0.522101,0.199391,0.114938,0.162539,0.877353,0.205979,0.850543,0.129966,0.509774,0.70497,0.370383,0.0828595,0.388912,0.562647,0.129775,0.807399,0.13274,0.829666,0.290285,0.871313,0.142117,0.199846,0.86014,0.374057,0.995077,0.993979,0.676139,0.216318,0.901925,0.0260944,0.23533,0.57981,0.672066,0.466619,0.502938,0.374007,0.731571,0.848373,0.61186,0.488383,0.0155109,0.855178,0.975372,0.652937,0.134302,0.196884,0.811464,0.590887,0.424949,0.473087,0.846142,0.577144,0.259941,0.773679,0.879237,0.263381,0.178419,0.0898085,0.0468408,0.517801,0.836427,0.342288,0.0252695,0.842717,0.998397,0.926543,0.122858,0.474904,0.872836,0.964887,0.594017,0.108246,0.035606,0.178589,0.445917,0.410897,0.660305,0.797654,0.404894,0.0394782,0.205697,0.875073,0.95293,0.258422,0.332911,0.308768,0.926251,0.323243,0.581882,0.961502,0.60884,0.383061,0.70679,0.334727,0.599388,0.681034,0.175942,0.986599,0.0209576,0.394536,0.527056,0.559061,0.00568163,0.628768,0.795349,0.573165,0.399348,0.428015,0.0363801,0.945486,0.298961,0.304213,0.56448,0.671524,0.641705,0.286879,0.499209,0.295793,0.742723,0.479076,0.816662,0.430958,0.580692,0.10883,0.480058,0.2206,0.117342,0.822457,0.309132,0.58744,0.428931,0.809451,0.894386,0.315816,0.8552,0.828173,0.397624,0.937986,0.68726,0.132668,0.895911,0.967141,0.850282,0.45002,0.262451,0.195113,0.778349,0.417943,0.00154841,0.259905,0.948712,0.193395,0.176657,0.541546,0.731999,0.0356396,0.711213,0.153897,0.68953,0.207051,0.869123,0.914128,0.415907,0.539287,0.790438,0.470614,0.365241,0.321576,0.518413,0.114815,0.747325,0.0143833,0.241185,0.78907,0.368749,0.394872,0.624969,0.509124,0.628771,0.822342,0.736215,0.214002,0.468325,0.165087,0.240705,0.508102,0.777238,0.606368,0.805044,0.149348,0.0755022,0.0240178,0.0969379,0.713078,0.418974,0.555411,0.0240793,0.0215422,0.803266,0.503163,0.544433,0.235084,0.780412,0.198914,0.702065,0.173573,0.469239,0.610553,0.268738,0.771079,0.470923,0.457449,0.574348,0.833176,0.966496,0.546498,0.0957793,0.260369,0.842637,0.716274,0.133032,0.620429,0.430088,0.584394,0.0677581,0.547756,0.795372,0.0519489,0.558924,0.672266,0.359647,0.110835,0.275205,0.829584,0.163256,0.877762,0.559318,0.0982646,0.014273,0.356014,0.893883,0.279538,0.596053,0.84363,0.835435,0.548326,0.63392,0.780548,0.899632,0.166105,0.00615114,0.126197,0.0255326,0.357972,0.686814,0.784079,0.732093,0.170141,0.1164,0.221421,0.0858536,0.231222,0.501539,0.38671,0.383488,0.968373,0.19407,0.73994,0.0462647,0.634701,0.452683,0.0317743,0.439889,0.0858334,0.860994,0.130363,0.072898,0.4805,0.30232,0.0980115,0.841517,0.141557,0.32596,0.522487,0.641765,0.924741,0.955598,0.125506,0.846978,0.702113,0.501513,0.665869,0.00264472,0.832004,0.820228,0.903377,0.446094,0.883273,0.509664,0.865211,0.132746,0.233505,0.226891,0.817179,0.642592,0.383943,0.292192,0.950806,0.522782,0.476234,0.969961,0.0419602,0.494886,0.827918,0.371917,0.276245,0.2891,0.982486,0.0254298,0.257647,0.140848,0.675757,0.652957,0.439758,0.343072,0.990772,0.341807,0.532829,0.824806,0.248152,0.15857,0.0116726,0.766269,0.244026,0.459341,0.938256,0.219911,0.172393,0.303582,0.967556,0.155072,0.72893,0.849656,0.610622,0.078522,0.657155,0.248809,0.372642,0.169661,0.184517,0.840195,0.965334,0.764794,0.963747,0.824615,0.0479666,0.514018,0.561923,0.545671,0.589654,0.927226,0.400019,0.519454,0.527788,0.60653,0.53642,0.0991687,0.582454,0.608246,0.0258986,0.711081,0.0995452,0.0956652,0.609673,0.244681,0.796468,0.026746,0.447598,0.548646,0.475343,0.809761,0.779975,0.189405,0.240295,0.42489,0.0585545,0.483844,0.969487,0.629109,0.307411,0.414981,0.123507,0.261185,0.328054,0.134418,0.576079,0.172858,0.625749,0.513425,0.77697,0.774182,0.703312,0.602756,0.432274,0.968689,0.594694,0.00499624,0.769732,0.366229,0.837252,0.316855,0.950669,0.540415,0.889885,0.754415,0.111072,0.96661,0.277525,0.73473,0.447548,0.392406,0.364278,0.146642,0.64613,0.670619,0.514057,0.120695,0.395169,0.164708,0.892554,0.977764,0.922936,0.782312,0.0890394,0.618509,0.936835,0.489612,0.582412,0.804344,0.225883,0.996196,0.408172,0.224027,0.392069,0.915457,0.813455,0.534688,0.734948,0.716638,0.643222,0.334492,0.191275,0.589734,0.0386928,0.234268,0.140756,0.526875,0.856633,0.888439,0.30842,0.958548,0.795497,0.0389575,0.0141573,0.35136,0.429695,0.537686,0.406038,0.986355,0.038745,0.468421,0.287114,0.17128,0.654187,0.781035,0.340069,0.227695,0.789024,0.400264,0.83256,0.893724,0.751609,0.31235,0.137751,0.540644,0.78032,0.00970864,0.134076,0.995903,0.913715,0.995602,0.786526,0.576529,0.178814,0.672148,0.970592,0.480473,0.651205,0.975067,0.0445535,0.909061,0.29085,0.173889,0.971467,0.67944,0.168953,0.915806,0.715355,0.960877,0.188697,0.98885,0.413548,0.276866,0.496446,0.0715871,0.0654082,0.874406,0.207499,0.957795,0.255394,0.383264,0.366711,0.446021,0.871501,0.0787313,0.640506,0.570218,0.15435,0.540399,0.994393,0.0699648,0.597329,0.1612,0.529558,0.700401,0.941334,0.526313,0.200257,0.708895,0.686996,0.0157612,0.137817,0.112538,0.835366,0.150817,0.67646,0.464859,0.531941,0.876085,0.498682,0.620563,0.129433,0.51562,0.580726,0.783841,0.550923,0.602098,0.707124,0.961063,0.269338,0.282913,0.487893,0.443892,0.441089,0.769626,0.347099,0.697915,0.898256,0.758347,0.625277,0.924942,0.14943,0.71758,0.176448,0.880366,0.919359,0.033056,0.985477,0.0822814,0.777545,0.324005,0.0520304,0.0923393,0.432596,0.598881,0.329529,0.944406,0.457236,0.90629,0.895843,0.145266,0.935288,0.604986,0.0122977,0.534354,0.426642,0.215657,0.634287,0.0609941,0.960142,0.629825,0.84758,0.552246,0.915286,0.0103328,0.269994,0.186426,0.162683,0.960376,0.726408,0.996178,0.471667,0.34647,0.687816,0.730682,0.955782,0.735321,0.173697,0.340616,0.632242,0.910082,0.822049,0.711754,0.231228,0.0147824,0.17662,0.776226,0.555185,0.0561666,0.0111495,0.0636993,0.41802,0.683485,0.523332,0.125538,0.685159,0.91069,0.592236,0.716202,0.825115,0.593536,0.868991,0.462507,0.435408,0.399135,0.165515,0.130864,0.973239,0.354018,0.0856602,0.666037,0.491102,0.398316,0.415926,0.672011,0.860159,0.669206,0.577609,0.718775,0.924119,0.418754,0.948262,0.385313,0.7482,0.149269,0.230526,0.634578,0.00551689,0.78096,0.69571,0.120563,0.273973,0.876558,|0.310855,0.771517,0.701194,0.344784,0.557768,0.221471,0.881786,0.719814,0.238307,0.853028,0.326559,0.285086,0.479834,0.869078,0.759723,0.38322,0.344485,0.632115,0.433299,0.23444,0.516005,0.13077,0.111442,0.530907,0.439975,0.337595,0.181246,0.067439,0.993672,0.807865,0.834937,0.24692,0.118284,0.967854,0.147005,0.769431,0.273806,0.522251,0.505877,0.946121,0.80098,0.672933,0.718941,0.121255,0.918443,0.0873969,0.693781,0.407518,0.0622734,0.725594,0.143313,0.520127,0.753739,0.43667,0.675257,0.395922,0.42691,0.163072,0.626293,0.214545,0.036391,0.107617,0.531879,0.00512195,0.508774,0.479894,0.807911,0.630465,0.184749,0.889665,0.250122,0.277288,0.711792,0.0360202,0.449064,0.682238,0.736594,0.937068,0.0402418,0.956648,0.456781,0.796556,0.156908,0.91008,0.310311,0.108704,0.702357,0.0837933,0.888817,0.992088,0.319026,0.294617,0.226966,0.289357,0.0485664,0.785057,0.234355,0.736914,0.149452,0.938908,0.0428492,0.90878,0.827451,0.881486,0.0404282,0.736947,0.803039,0.150563,0.0518181,0.902229,0.402398,0.97691,0.00329912,0.579551,0.925466,0.904271,0.747461,0.572182,0.637792,0.590337,0.187075,0.299619,0.442992,0.464841,0.732877,0.382404,0.591491,0.621841,0.17932,0.988439,0.200132,0.793607,0.888489,0.854772,0.826519,0.32478,0.413177,0.0483642,0.00466609,0.603861,0.731529,0.972296,0.727982,0.132622,0.993966,0.180378,0.566194,0.260512,0.286682,0.569342,0.520993,0.193134,0.407201,0.511396,0.67453,0.652928,0.106101,0.0162231,0.280703,0.665941,0.0851807,0.937529,0.536672,0.185508,0.72101,0.0269753,0.0412177,0.0749635,0.736783,0.261007,0.50587,0.0645177,0.0185918,0.686984,0.730082,0.355345,0.881883,0.910165,0.680221,0.937037,0.744266,0.633928,0.352223,0.331906,0.948723,0.248743,0.200099,0.22359,0.828957,0.828998,0.493397,0.705032,0.824504,0.447366,0.572971,0.152387,0.0648835,0.198961,0.465459,0.60521,0.732808,0.837758,0.308339,0.159591,0.283576,0.581692,0.786581,0.694795,0.571933,0.992857,0.0772247,0.867783,0.952408,0.513938,0.5632,0.234682,0.205301,0.655445,0.301463,0.943468,0.882253,0.816709,0.701858,0.258032,0.0515018,0.760434,0.0125949,0.25662,0.127987,0.720536,0.358624,0.991124,0.420908,0.115766,0.408573,0.892506,0.220388,0.0204924,0.309934,0.415909,0.938893,0.462499,0.218711,0.222934,0.385941,0.7068,0.105579,0.165608,0.31316,0.64371,0.435785,0.323165,0.659831,0.0452964,0.122685,0.967372,0.627415,0.665493,0.95611,0.547597,0.748198,0.676256,0.303044,0.627271,0.700794,0.893236,0.196684,0.4292,0.907668,0.819989,0.667596,0.420157,0.770299,0.912931,0.122336,0.331284,0.111337,0.279433,0.919458,0.93909,0.89956,0.542507,0.641835,0.926718,0.327782,0.94123,0.864367,0.299614,0.487617,0.271146,0.989759,0.24129,0.748846,0.720296,0.467539,0.493677,0.707032,0.0852005,0.584036,0.973622,0.992295,0.347231,0.0667571,0.197692,0.369581,0.210994,0.886907,0.223039,0.851118,0.386859,0.348243,0.395832,0.856858,0.594823,0.086974,0.0673229,0.0390804,0.913581,0.756151,0.128326,0.276754,0.610147,0.163273,0.0260518,0.885439,0.146836,0.609921,0.455261,0.535141,0.744079,0.418207,0.847377,0.0180565,0.904449,0.503899,0.134943,0.224437,0.996638,0.902019,0.752878,0.416284,0.68238,0.776495,0.870301,0.0653568,0.98352,0.39142,0.842944,0.919362,0.301917,0.00414592,0.802347,0.355782,0.57195,0.645887,0.0833216,0.231643,0.363617,0.745081,0.0242537,0.22264,0.496843,0.579085,0.976375,0.953429,0.278441,0.915568,0.321794,0.678672,0.0883418,0.422484,0.0693692,0.293819,0.454857,0.444905,0.454567,0.331388,0.715925,0.472442,0.128302,0.579834,0.486019,0.402619,0.414259,0.10741,0.468973,0.828588,0.432557,0.677223,0.944281,0.562694,0.288492,0.2349,0.334343,0.61464,0.394259,0.179632,0.562929,0.978835,0.785698,0.068917,0.19157,0.550941,0.814083,0.336546,0.77707,0.214539,0.0155951,0.889149,0.641374,0.777696,0.238782,0.414509,0.282493,0.956504,0.248717,0.737584,0.726296,0.916606,0.203364,0.68695,0.450842,0.79117,0.919925,0.883905,0.701731,0.973057,0.055245,0.314707,0.646701,0.993482,0.645428,0.258116,0.693639,0.711224,0.0730988,0.980193,0.989033,0.018159,0.0152842,0.571534,0.682228,0.327842,0.410419,0.980151,0.66734,0.965303,0.190371,0.456474,0.38265,0.450282,0.672429,0.419311,0.0257468,0.560117,0.229691,0.0461423,0.889989,0.983152,0.0197141,0.890002,0.521573,0.391963,0.794232,0.439339,0.113431,0.107945,0.93073,0.882617,0.368486,0.101604,0.688887,0.359284,0.804269,0.845003,0.870316,0.798273,0.545772,0.688926,0.17624,0.232818,0.900465,0.363985,0.407956,0.834113,0.930704,0.701622,0.80333,0.737229,0.0511944,0.403406,0.253807,0.326732,0.420739,0.167648,0.595815,0.00230163,0.513518,0.934053,0.520361,0.35841,0.855718,0.242386,0.795353,0.0926612,0.655905,0.274505,0.308662,0.0148973,0.888333,0.555466,0.348163,0.589048,0.509353,0.929512,0.365171,0.972428,0.183149,0.498212,0.168918,0.412275,0.12211,0.165635,0.960032,0.38336,0.955957,0.435665,0.578357,0.220701,0.965843,0.778999,0.784241,0.00507015,0.368046,0.87115,0.169315,0.293285,0.767626,0.261783,0.340638,0.119125,0.765726,0.719598,0.946053,0.840797,0.52678,0.732313,0.694602,0.987928,0.197769,0.197855,0.663782,0.192372,0.946413,0.775538,0.651284,0.443783,0.792931,0.110745,0.567651,0.000407517,0.453187,0.181009,0.0875476,0.134969,0.243534,0.798346,0.0750376,0.00465572,0.622697,0.528684,0.135526,0.91377,0.347996,0.0509522,0.583396,0.0853221,0.232649,0.780905,0.272282,0.99684,0.697716,0.563351,0.308305,0.684732,0.446375,0.440288,0.738554,0.674288,0.00879264,0.810646,0.936444,0.467563,0.109765,0.925595,0.177074,0.684609,0.840307,0.269012,0.422271,0.954139,0.836075,0.781608,0.616332,0.132957,0.797551,0.0781283,0.401033,0.867119,0.86164,0.853858,0.148832,0.160962,0.941027,0.0894437,0.891504,0.826632,0.435932,0.57549,0.384211,0.387999,0.869672,0.100598,0.021033,0.639626,0.863437,0.93245,0.0301941,0.655529,0.687715,0.897105,0.83963,0.552048,0.567469,0.850702,0.434696,0.40339,0.680578,0.060477,0.603134,0.518377,0.0449845,0.180929,0.939394,0.267596,0.207633,0.906864,0.161824,0.327042,0.75343,0.526372,0.294316,0.695426,0.500372,0.21623,0.696324,0.0353795,0.447836,0.85367,0.399262,0.79663,0.495217,0.323559,0.90755,0.440322,0.17623,0.750032,0.00213158,0.15658,0.93513,0.983106,0.795623,0.699061,0.1453,0.615995,0.140469,0.101033,0.127374,0.735149,0.376193,0.00510526,0.666005,0.711196,0.264175,0.328916,0.00257915,0.112952,0.37616,0.547649,0.757943,0.226129,0.454191,0.848069,0.857322,0.867372,0.412294,0.259738,0.894013,0.238964,0.277608,0.275475,0.997064,0.999904,0.891607,0.162424,0.65624,0.0948392,0.57671,0.55738,0.451151,0.540703,0.0674454,0.0157539,0.2897,0.520313,0.235462,0.859929,0.159696,0.0489153,0.0841897,0.825794,0.00885469,0.300705,0.103078,0.519165,0.496359,0.359383,0.0270278,0.777327,0.327996,0.350189,0.51983,0.291725,0.718564,0.0563231,0.919188,0.180762,0.882815,0.0753986,0.863887,0.221021,0.52543,0.299695,0.765199,0.747667,0.608575,0.469661,0.415715,0.433417,0.742637,0.0457317,0.187521,0.865529,0.532121,0.0794793,0.793231,0.661754,0.662731,0.538375,0.820424,0.569629,0.943214,0.931374,0.310929,0.956051,0.447306,0.0435395,0.835582,0.440693,0.940696,0.768463,0.332281,0.0424997,0.0337619,0.458503,0.228306,0.477106,0.434262,0.325948,0.270023,0.109766,0.102925,0.694732,0.544705,0.112434,0.360939,0.439044,0.555392,0.55036,0.0791692,0.258846,0.672413,0.475368,0.957131,0.667615,0.780934,0.911851,0.0120772,0.474844,0.0499681,0.754615,0.440693,0.731956,0.629744,0.093478,0.794316,0.922672,0.799312,0.798623,0.0590911,0.510112,0.16441,0.240515,0.17627,0.955528,0.357925,0.855395,0.282066,0.263455,0.774453,0.744747,0.00737286,0.509369,0.703024,0.513502,0.946295,0.552438,0.532903,0.247571,0.466801,0.300744,0.639648,0.374664,0.0885518,0.275435,0.546907,0.76253,0.736311,0.803699,0.716101,0.191379,0.761431,0.968337,0.326492,0.519735,0.82482,0.520621,0.0789341,0.841514,0.713515,0.709881,0.351783,0.0531632,0.327433,0.640298,0.622855,0.327818,0.638294,0.844298,0.671685,0.817747,0.421849,0.350486,0.561871,0.201634,0.31009,0.666963,0.69033,0.842674,0.227363,0.41236,0.696778,0.517168,0.237084,0.518459,0.178243,0.497664,0.638517,0.252142,0.2236,0.666232,0.535318,0.717325,0.925693,0.61209,0.705292,0.575088,0.947558,0.439489,0.0504392,0.408945,0.894452,0.386878,0.405427,0.65724,0.738857,0.744059,0.130464,0.425178,0.895742,0.111216,0.356182,0.0791158,0.105856,0.996888,0.657326,0.18739,0.817696,0.975991,0.209262,0.423826,0.128581,0.883503,0.470272,0.710404,0.328228,0.983808,0.369102,0.507009,0.802657,0.723256,0.606233,0.657321,0.911736,0.679623,0.390995,0.0969834,0.460982,0.547172,0.215076,0.0313249,0.298493,0.245457,0.521547,0.411746,0.408974,0.374771,0.638238,0.326128,0.320329,0.294125,0.504837,0.733034,0.566081,0.496329,0.580944,0.0382228,0.709393,0.547285,0.640451,0.415835,0.792858,0.353932,0.542953,0.515206,0.778452,0.800029,0.756517,0.912218,0.294756,0.305942,0.82919,0.0319088,0.89344,0.349562,0.462982,0.0469794,0.125884,0.682715,0.000529647,0.856243,0.362272,0.828513,0.405425,0.844703,0.427628,0.888107,0.12271,0.657528,0.415036,0.34278,0.150184,0.221226,0.821267,0.381358,0.421555,0.199978,0.813074,0.595095,0.35713,0.58115,0.111157,0.60551,0.116947,0.511614,0.551233,0.820398,0.562859,0.309335,0.00684971,|0.43367,0.531882,0.0472035,0.257226,0.512015,0.332561,0.0378451,0.774364,0.941101,0.433073,0.269563,0.747098,0.621468,0.981277,0.680797,0.348502,0.518272,0.395698,0.459286,0.388541,0.596392,0.97902,0.0084461,0.759958,0.975681,0.568199,0.853829,0.950831,0.116178,0.209099,0.237144,0.00546652,0.658942,0.0395794,0.394023,0.544469,0.413361,0.131821,0.166128,0.0452884,0.461799,0.453324,0.915896,0.678235,0.702407,0.945817,0.991037,0.672335,0.702948,0.0683802,0.0348637,0.372654,0.236354,0.881547,0.25258,0.211688,0.0879119,0.901865,0.936568,0.866455,0.64805,0.396848,0.00887895,0.912484,0.51125,0.439439,0.672218,0.380255,0.821037,0.0635702,0.599119,0.439165,0.361812,0.241698,0.432997,0.111859,0.303115,0.767396,0.347932,0.0599018,0.261549,0.871582,0.5844,0.178425,0.135783,0.995785,0.428221,0.720033,0.167154,0.288076,0.497808,0.920963,0.687422,0.766028,0.87475,0.182189,0.496608,0.704038,0.601121,0.236535,0.74113,0.358703,0.0757893,0.324418,0.754091,0.635009,0.981152,0.481577,0.286167,0.81609,0.269664,0.96496,0.255908,0.705811,0.312607,0.207205,0.66637,0.392376,0.766567,0.731707,0.0862061,0.504476,0.345814,0.485096,0.0158791,0.624506,0.586811,0.686315,0.897186,0.1976,0.928722,0.889388,0.977383,0.549043,0.482909,0.585616,0.591576,0.711226,0.247259,0.920475,0.0769224,0.636117,0.344546,0.401683,0.145362,0.885438,0.837863,0.199569,0.216277,0.225429,0.411942,0.403117,0.987619,0.254211,0.363633,0.924289,0.20244,0.249757,0.118946,0.412495,0.163644,0.10168,0.106028,0.831989,0.475108,0.704862,0.977209,0.635071,0.0831309,0.34895,0.956459,0.169302,0.149117,0.142995,0.493454,0.770318,0.7263,0.22521,0.0224474,0.658868,0.505472,0.509395,0.212475,0.811447,0.577157,0.0870714,0.246442,0.355425,0.290784,0.777625,0.19799,0.114254,0.0982106,0.855218,0.365424,0.357377,0.481421,0.866388,0.623616,0.655854,0.472369,0.649369,0.111841,0.851603,0.758197,0.681988,0.278889,0.905425,0.0493319,0.7762,0.929952,0.37749,0.625351,0.681539,0.155704,0.209378,0.776025,0.419662,0.50564,0.595234,0.472698,0.883577,0.770025,0.481524,0.359873,0.128598,0.823651,0.416025,0.999142,0.248716,0.873817,0.183092,0.857931,0.362029,0.693262,0.1646,0.511784,0.719031,0.585809,0.572737,0.511975,0.629447,0.488127,0.258855,0.204907,0.485376,0.935389,0.190754,0.5149,0.529705,0.0858532,0.953087,0.787636,0.959299,0.862064,0.643114,0.777252,0.662312,0.441679,0.475082,0.374942,0.652715,0.957613,0.124332,0.653381,0.416526,0.496512,0.661339,0.458777,0.582438,0.29099,0.0572522,0.231146,0.325239,0.810708,0.564156,0.925021,0.0777957,0.614809,0.793202,0.968697,0.983567,0.843111,0.736905,0.595466,0.984019,0.26487,0.728584,0.890954,0.0939075,0.911514,0.959058,0.0607587,0.796701,0.642115,0.310384,0.691991,0.488299,0.731499,0.934696,0.273062,0.596879,0.346754,0.74209,0.0695553,0.384354,0.2949,0.314971,0.369489,0.266674,0.645117,0.889749,0.839191,0.625416,0.451085,0.858853,0.775541,0.708994,0.653832,0.140077,0.542404,0.94298,0.759124,0.942055,0.827182,0.475938,0.497646,0.581977,0.171562,0.105023,0.408088,0.370355,0.518483,0.339615,0.763391,0.303187,0.0163863,0.762283,0.562131,0.340253,0.350986,0.0483163,0.1868,0.0110133,0.878751,0.813288,0.191172,0.527962,0.546612,0.213329,0.897581,0.401053,0.911449,0.409699,0.14719,0.245618,0.360147,0.0405191,0.869491,0.388661,0.758091,0.170679,0.522444,0.806548,0.361402,0.115677,0.136438,0.462955,0.0711543,0.557126,0.16495,0.396487,0.0653754,0.0283784,0.713351,0.858264,0.876937,0.00605446,0.344581,0.809488,0.25246,0.636285,0.120691,0.415458,0.310175,0.924635,0.39599,0.953509,0.00998831,0.790756,0.18756,0.431285,0.975659,0.362494,0.648441,0.501383,0.406083,0.544934,0.262242,0.296483,0.41623,0.510544,0.74729,0.348862,0.929892,0.56751,0.842366,0.837758,0.691342,0.724416,0.870696,0.505437,0.680485,0.464711,0.0561471,0.602301,0.847324,0.3409,0.706863,0.489839,0.541894,0.0665234,0.410249,0.290557,0.0261925,0.303067,0.354544,0.14335,0.281567,0.440252,0.0447543,0.433117,0.470289,0.0314983,0.167758,0.671726,0.988511,0.162342,0.428704,0.0392334,0.632263,0.691696,0.436598,0.552378,0.67613,0.60317,0.655635,0.733878,0.997232,0.546655,0.871912,0.907632,0.338998,0.652941,0.264244,0.235254,0.948909,0.996388,0.539647,0.19592,0.70098,0.402616,0.106441,0.0228066,0.832902,0.862506,0.479242,0.635762,0.308204,0.179127,0.86495,0.758347,0.966482,0.410273,0.0411631,0.804799,0.719001,0.200791,0.182055,0.771084,0.550182,0.813388,0.495161,0.452211,0.134849,0.977083,0.893367,0.588591,0.717657,0.0896381,0.824007,0.395393,0.348731,0.206985,0.754826,0.594661,0.235326,0.833632,0.78119,0.188905,0.182934,0.730167,0.372225,0.834737,0.3713,0.960617,0.521807,0.140367,0.521932,0.4806,0.787591,0.321683,0.146065,0.990595,0.663948,0.976486,0.378356,0.688626,0.671092,0.208622,0.309127,0.513591,0.260772,0.699989,0.00890011,0.849617,0.449389,0.177228,0.911908,0.73932,0.579741,0.208269,0.532599,0.438652,0.0201699,0.819245,0.645889,0.0714783,0.39494,0.604193,0.704463,0.387745,0.509161,0.141585,0.408437,0.342836,0.711084,0.397627,0.629718,0.61901,0.11416,0.0235057,0.0491669,0.367697,0.582933,0.39401,0.203681,0.388717,0.443534,0.79055,0.658712,0.882065,0.430835,0.29605,0.918901,0.56433,0.951968,0.945106,0.605026,0.301985,0.143716,0.0791527,0.0820367,0.0735668,0.0359831,0.723084,0.1369,0.259516,0.673641,0.97794,0.0478851,0.99114,0.267995,0.326914,0.508701,0.629214,0.595553,0.958414,0.913427,0.258266,0.280883,0.310904,0.711063,0.692971,0.303469,0.73319,0.690989,0.661435,0.2639,0.627693,0.176978,0.380295,0.532694,0.520575,0.481361,0.289863,0.281654,0.228431,0.695661,0.829605,0.116209,0.568911,0.801427,0.755187,0.655265,0.969029,0.499922,0.577711,0.420059,0.332484,0.200213,0.437354,0.0495413,0.417016,0.599875,0.222503,0.349381,0.799102,0.803132,0.428434,0.259562,0.242452,0.74547,0.741031,0.492077,0.319485,0.525476,0.226783,0.407144,0.505487,0.248015,0.269339,0.286297,0.851934,0.312289,0.911173,0.866033,0.83621,0.0224305,0.799706,0.46721,0.319502,0.211419,0.662227,0.578399,0.261809,0.562301,0.0632794,0.727127,0.897307,0.315221,0.0741796,0.559854,0.0412094,0.28252,0.15044,0.801784,0.801051,0.494548,0.31249,0.187016,0.0928979,0.887635,0.164126,0.488439,0.996369,0.0280501,0.896697,0.356281,0.460134,0.370925,0.480238,0.933655,0.874601,0.950406,0.0302072,0.43056,0.673985,0.292831,0.117069,0.499002,0.0200099,0.593295,0.763007,0.988413,0.423275,0.294206,0.44816,0.340555,0.119304,0.323408,0.493873,0.531815,0.218384,0.22345,0.997971,0.756693,0.892659,0.245672,0.70506,0.790632,0.590236,0.936298,0.6115,0.51231,0.519096,0.203976,0.813895,0.868227,0.428864,0.726277,0.416944,0.933916,0.11313,0.871716,0.850017,0.864446,0.716226,0.189914,0.188584,0.166664,0.403156,0.296942,0.250928,0.936014,0.467433,0.902098,0.0051837,0.948169,0.35975,0.2164,0.979808,0.823261,0.581066,0.807895,0.827055,0.391384,0.101232,0.651749,0.469302,0.480016,0.443221,0.883754,0.688031,0.429514,0.879583,0.390186,0.73195,0.106008,0.0285566,0.467813,0.41033,0.995711,0.262096,0.225029,0.14914,0.0125,0.585221,0.252981,0.781672,0.763911,0.41564,0.32649,0.030755,0.338657,0.597203,0.286697,0.470788,0.176952,0.140173,0.775504,0.577073,0.341754,0.281697,0.0480994,0.953021,0.432642,0.106301,0.11207,0.353822,0.703998,0.807718,0.0871225,0.293584,0.165922,0.361185,0.380802,0.882295,0.781654,0.986938,0.804414,0.152301,0.29505,0.733095,0.31613,0.704051,0.512886,0.321823,0.683156,0.14481,0.163147,0.378109,0.631781,0.896361,0.793298,0.731093,0.23506,0.374389,0.627189,0.803188,0.127531,0.874456,0.598506,0.239828,0.905344,0.555855,0.270918,0.409949,0.712266,0.760132,0.691719,0.236273,0.707182,0.809596,0.802226,0.175746,0.292545,0.570409,0.131659,0.367063,0.947014,0.0846338,0.194279,0.607016,0.555622,0.822906,0.843864,0.862446,0.670762,0.930451,0.407953,0.882194,0.624223,0.281439,0.476658,0.563218,0.848117,0.661026,0.827043,0.0211333,0.287286,0.573801,0.766115,0.148938,0.449886,0.950923,0.542084,0.0284081,0.9893,0.490078,0.879371,0.487851,0.125964,0.312968,0.334344,0.470428,0.329331,0.702755,0.195126,0.969547,0.579506,0.629355,0.367048,0.406494,0.876465,0.500085,0.743702,0.315811,0.219575,0.36979,0.453027,0.826615,0.492644,0.0608413,0.127113,0.843407,0.787624,0.703331,0.937113,0.437805,0.555906,0.875792,0.58503,0.644578,0.283866,0.529549,0.505853,0.861406,0.162441,0.0315763,0.96114,0.724557,0.535815,0.663987,0.614753,0.122883,0.162856,0.48651,0.316071,0.589842,0.82341,0.443929,0.113591,0.554554,0.709948,0.625498,0.934177,0.26767,0.892909,0.659514,0.491938,0.860167,0.218171,0.456938,0.259249,0.44635,0.965128,0.734404,0.22345,0.426511,0.357788,0.704455,0.406707,0.974964,0.59536,0.492274,0.129059,0.914737,0.173421,0.923591,0.014957,0.929543,0.968727,0.992268,0.849146,0.611006,0.355984,0.800759,0.241512,0.363371,0.422248,0.418687,0.160674,0.178727,0.853368,0.0795671,0.974845,0.989732,0.866923,0.773484,0.636644,0.600142,0.951852,0.268387,0.0828192,0.660839,0.936821,0.825056,0.743885,0.353815,0.405715,0.753259,0.997531,0.0728611,0.547102,0.0877811,0.751319,0.680905,0.355919,0.757249,0.228063,0.767448,0.890563,0.269647,0.591672,0.999419,0.208742,0.586642,0.18766,0.965478,|0.0765551,0.760373,0.274021,0.318524,0.19401,0.191595,0.573408,0.722547,0.889483,0.248031,0.123548,0.563634,0.524734,0.692594,0.0160028,0.975354,0.717688,0.932938,0.964739,0.292407,0.780117,0.496246,0.820125,0.734278,0.495929,0.40951,0.310428,0.233934,0.314612,0.280226,0.103083,0.696089,0.705528,0.914506,0.605331,0.279824,0.618065,0.828023,0.998813,0.471642,0.532987,0.114198,0.71046,0.108654,0.175359,0.314307,0.654306,0.00840688,0.96279,0.706356,0.493955,0.859835,0.158294,0.364615,0.640508,0.457346,0.190431,0.145981,0.687234,0.472881,0.488974,0.0766935,0.236466,0.584001,0.512912,0.223677,0.564408,0.65967,0.0147187,0.545002,0.962364,0.41307,0.394153,0.671413,0.28157,0.966376,0.799105,0.72855,0.967317,0.553444,0.010321,0.486531,0.763523,0.737697,0.397631,0.487197,0.97626,0.113331,0.00208223,0.979649,0.329073,0.261762,0.417051,0.0357218,0.679655,0.707357,0.953788,0.529976,0.936984,0.529276,0.342977,0.366388,0.0905847,0.347031,0.153617,0.283069,0.790041,0.595653,0.513882,0.441188,0.958845,0.267378,0.29106,0.424985,0.635175,0.317187,0.151989,0.936491,0.629446,0.218215,0.565884,0.292789,0.0474016,0.160005,0.75897,0.0243474,0.656749,0.547217,0.192777,0.127271,0.971081,0.111934,0.482633,0.873002,0.873108,0.701478,0.699536,0.626768,0.578098,0.0823261,0.878807,0.298273,0.923274,0.441766,0.601915,0.426211,0.15764,0.856944,0.100123,0.520039,0.354373,0.188211,0.320891,0.0971117,0.426789,0.415402,0.522416,0.0827274,0.558582,0.672604,0.77889,0.723701,0.991833,0.405039,0.404571,0.598026,0.597856,0.744395,0.534706,0.757341,0.41348,0.232071,0.0640939,0.456173,0.412194,0.0834683,0.566476,0.732801,0.542623,0.530376,0.945976,0.132252,0.752978,0.229957,0.739344,0.0807969,0.0797555,0.56008,0.934357,0.0579734,0.675225,0.835501,0.00762898,0.622024,0.437919,0.277343,0.0427529,0.0217392,0.679523,0.307901,0.756916,0.997332,0.909876,0.230608,0.469336,0.585984,0.624831,0.877857,0.543115,0.296729,0.157124,0.607438,0.442993,0.0998653,0.26978,0.20376,0.799132,0.805939,0.053362,0.886675,0.492952,0.225889,0.406933,0.680482,0.266085,0.416744,0.0110646,0.3188,0.209398,0.848739,0.160574,0.571702,0.00167048,0.574518,0.136366,0.11679,0.936634,0.738774,0.992835,0.929828,0.222427,0.827646,0.52772,0.569783,0.441541,0.732828,0.562856,0.139659,0.762123,0.0272139,0.992909,0.964335,0.111981,0.246024,0.841859,0.40753,0.715515,0.444562,0.917906,0.295744,0.734798,0.360018,0.803227,0.563486,0.223603,0.536486,0.515715,0.931026,0.87611,0.300937,0.595955,0.259264,0.27299,0.941155,0.455455,0.085331,0.561188,0.820334,0.272612,0.293746,0.308461,0.165837,0.386861,0.0885726,0.255114,0.868276,0.000718296,0.513262,0.296832,0.745133,0.903591,0.0593832,0.407734,0.218913,0.14194,0.0277936,0.769822,0.61958,0.952744,0.737548,0.0993711,0.528053,0.372192,0.662809,0.0105578,0.30909,0.633679,0.190914,0.29942,0.691156,0.34857,0.468385,0.498748,0.538861,0.61106,0.548703,0.854955,0.269328,0.115517,0.545342,0.268499,0.241964,0.320577,0.991192,0.341763,0.296978,0.612535,0.760165,0.965059,0.409259,0.368855,0.918673,0.528674,0.245868,0.86532,0.0658928,0.144122,0.971806,0.228878,0.138378,0.592572,0.0509831,0.361218,0.903926,0.637127,0.793528,0.228628,0.557446,0.849473,0.485036,0.0115475,0.0900796,0.793896,0.751887,0.581286,0.717671,0.0285652,0.477056,0.636696,0.651183,0.984464,0.318808,0.450647,0.675217,0.995278,0.33187,0.866497,0.562326,0.273423,0.712359,0.336715,0.646467,0.580438,0.451093,0.613973,0.401933,0.534864,0.447642,0.975129,0.269205,0.65477,0.215557,0.652797,0.325447,0.978047,0.674577,0.879148,0.980348,0.861309,0.520733,0.650965,0.703778,0.0662884,0.0867913,0.894887,0.108962,0.753601,0.113357,0.900853,0.84144,0.821762,0.756711,0.903997,0.276359,0.374951,0.00665951,0.870846,0.106842,0.466542,0.455868,0.628391,0.243745,0.904424,0.929977,0.39069,0.154099,0.731445,0.473998,0.930126,0.158404,0.76918,0.246483,0.38831,0.837544,0.288931,0.561513,0.759007,0.0371583,0.891091,0.75117,0.860484,0.264443,0.130193,0.48898,0.520937,0.806451,0.669931,0.881743,0.155685,0.379326,0.840881,0.10286,0.447412,0.196447,0.529253,0.0193307,0.69285,0.40675,0.0428462,0.288827,0.188621,0.999121,0.890352,0.0619645,0.674622,0.757225,0.616506,0.432819,0.742169,0.376764,0.7065,0.415224,0.114762,0.383077,0.049201,0.679375,0.412171,0.182564,0.616589,0.439593,0.276641,0.168909,0.790031,0.628935,0.233278,0.721363,0.094779,0.544263,0.77322,0.132021,0.971334,0.184774,0.585445,0.301391,0.0222648,0.56289,0.633044,0.910788,0.609404,0.0272816,0.694097,0.800326,0.158386,0.709976,0.405767,0.264054,0.161686,0.677065,0.378451,0.100453,0.604127,0.879836,0.371565,0.949854,0.785845,0.527908,0.0657039,0.550043,0.045655,0.615967,0.311848,0.119656,0.31833,0.887588,0.955095,0.385899,0.548141,0.726181,0.523665,0.446813,0.538583,0.813035,0.741576,0.606705,0.325606,0.793189,0.590437,0.279221,0.212461,0.803247,0.455055,0.206092,0.125502,0.766944,0.857447,0.759063,0.29462,0.495322,0.0263643,0.439156,0.164409,0.831775,0.419608,0.368276,0.967042,0.304653,0.125616,0.0303143,0.463792,0.952041,0.78156,0.271348,0.694861,0.802229,0.368257,0.721515,0.128518,0.642923,0.0376751,0.418356,0.602588,0.326255,0.841949,0.120109,0.58961,0.711981,0.669352,0.264011,0.00412869,0.34198,0.0647031,0.863239,0.626673,0.897066,0.505578,0.260871,0.197266,0.97158,0.800631,0.296793,0.7127,0.274458,0.817874,0.7297,0.761072,0.13356,0.728447,0.536944,0.242791,0.811088,0.811802,0.777775,0.285436,0.54219,0.301738,0.642629,0.713799,0.470569,0.891375,0.708111,0.91522,0.179133,0.460482,0.0209926,0.217026,0.651209,0.198978,0.899728,0.271883,0.881867,0.377241,0.891765,0.912431,0.214917,0.355108,0.359457,0.60441,0.781848,0.191716,0.287595,0.508213,0.0754759,0.00202072,0.122974,0.389024,0.629219,0.297075,0.410643,0.719847,0.251641,0.486817,0.571724,0.235736,0.149108,0.0341425,0.59969,0.248985,0.471368,0.828934,0.698775,0.949053,0.94351,0.637061,0.624167,0.524905,0.885154,0.841393,0.983379,0.859653,0.634167,0.438507,0.376804,0.918058,0.894981,0.547537,0.437264,0.346232,0.726007,0.133808,0.300448,0.11583,0.645342,0.947891,0.948669,0.113559,0.560675,0.154473,0.306368,0.296261,0.462405,0.0483445,0.322694,0.265251,0.00743872,0.641834,0.957424,0.46386,0.275863,0.489088,0.0049575,0.0877594,0.684196,0.645419,0.416596,0.185442,0.965942,0.602878,0.705337,0.932634,0.602288,0.137308,0.7949,0.996242,0.207985,0.495815,0.199821,0.119654,0.756279,0.432346,0.549015,0.979924,0.540324,0.291479,0.789745,0.867115,0.791332,0.171374,0.0768812,0.746234,0.885376,0.997714,0.354924,0.834986,0.474489,0.721084,0.145912,0.953373,0.135343,0.11616,0.372355,0.656331,0.0930373,0.37492,0.265938,0.296115,0.0507312,0.850962,0.252575,0.321203,0.422245,0.316416,0.523359,0.819074,0.38453,0.176529,0.859675,0.781603,0.124707,0.924574,0.862239,0.149746,0.225743,0.977518,0.555253,0.380367,0.695925,0.182086,0.910099,0.0803835,0.387113,0.632519,0.703315,0.798409,0.921706,0.0508044,0.277673,0.829775,0.944587,0.171352,0.100159,0.80818,0.729927,0.563685,0.853422,0.546149,0.766208,0.265187,0.733379,0.727149,0.757995,0.508053,0.861598,0.412976,0.304347,0.64286,0.535754,0.622901,0.149173,0.110578,0.815827,0.142499,0.266063,0.901258,0.973405,0.264202,0.905679,0.665183,0.260364,0.945442,0.617923,0.654144,0.601078,0.0982829,0.378808,0.688228,0.16013,0.454823,0.201558,0.306384,0.518627,0.431434,0.790975,0.644277,0.919716,0.768234,0.85515,0.141566,0.819864,0.025958,0.28366,0.264516,0.0361854,0.388422,0.0249497,0.161326,0.0512323,0.743479,0.53231,0.920238,0.758378,0.922874,0.0357857,0.140669,0.0750917,0.194534,0.984758,0.957329,0.147538,0.11311,0.158903,0.0175632,0.298002,0.0280448,0.330844,0.946004,0.928742,0.270438,0.196299,0.565316,0.752471,0.833396,0.398499,0.455375,0.737164,0.374089,0.619675,0.604499,0.434284,0.889963,0.170049,0.18747,0.478553,0.887861,0.271038,0.203533,0.945246,0.628017,0.170343,0.827779,0.491934,0.765118,0.346188,0.928058,0.87055,0.144333,0.299239,0.56302,0.876499,0.613198,0.577353,0.280963,0.339073,0.933581,0.931081,0.897807,0.379609,0.102895,0.401375,0.164506,0.79674,0.500349,0.897274,0.334849,0.247651,0.261098,0.295988,0.770776,0.00537574,0.764621,0.042542,0.345249,0.461261,0.829726,0.136189,0.434505,0.441005,0.668982,0.931107,0.807039,0.545628,0.606348,0.0100359,0.0626578,0.531091,0.590581,0.775466,0.90927,0.208208,0.44683,0.331166,0.818741,0.366539,0.418404,0.844839,0.476558,0.598988,0.897224,0.433006,0.968765,0.38432,0.726878,0.049378,0.396933,0.636991,0.648129,0.283156,0.938255,0.680666,0.820153,0.16504,0.277438,0.157167,0.459517,0.357308,0.400458,0.670929,0.0308876,0.13051,0.469572,0.891737,0.611534,0.221178,0.574059,0.279038,0.417597,0.342628,0.493477,0.361776,0.684417,0.123822,0.544567,0.112823,0.390556,0.107529,0.36623,0.54301,0.833878,0.237448,0.841489,0.537587,0.780633,0.094268,0.270454,0.0520251,0.739282,0.0877493,0.804203,0.553201,0.231028,0.218734,0.486522,0.2168,0.928359,0.799255,0.332647,0.0865037,0.918215,0.424559,0.933594,0.964095,0.0268737,0.212452,0.308847,0.50496,0.885317,0.335001,0.592409,0.657275,0.0844315,0.65864,0.506816,0.08683,0.274526,0.98673,0.338435,0.357603,0.378174,0.913706,0.365846,0.964974,|0.240882,0.22087,0.319671,0.397922,0.973045,0.28228,0.782734,0.877409,0.663781,0.528728,0.731912,0.951919,0.453864,0.170866,0.555735,0.26369,0.180388,0.922037,0.250473,0.771611,0.651277,0.394334,0.827739,0.130174,0.384263,0.795841,0.327043,0.668148,0.721707,0.783625,0.637922,0.316296,0.247191,0.809023,0.798942,0.677406,0.0376784,0.63576,0.829608,0.516459,0.446759,0.720118,0.594505,0.445551,0.136948,0.500613,0.759207,0.79974,0.033692,0.191591,0.669175,0.118436,0.098555,0.468433,0.457557,0.756966,0.321426,0.22052,0.946898,0.721954,0.601121,0.925484,0.366635,0.431253,0.445775,0.633689,0.820187,0.981154,0.781011,0.91995,0.897778,0.227063,0.0710019,0.827675,0.760936,0.797654,0.414764,0.476608,0.721454,0.474324,0.0525476,0.36304,0.00228137,0.279658,0.707155,0.354447,0.781384,0.586948,0.868838,0.604898,0.511555,0.758012,0.0128873,0.765245,0.762391,0.961547,0.789117,0.316187,0.275513,0.946249,0.836855,0.955551,0.317883,0.889292,0.612435,0.400482,0.0815279,0.602051,0.884436,0.714397,0.638511,0.615161,0.201466,0.392108,0.495082,0.41585,0.868803,0.74703,0.0473617,0.50134,0.516763,0.310923,0.308958,0.833921,0.483995,0.717135,0.295,0.183883,0.40516,0.113329,0.602726,0.0891756,0.697508,0.337274,0.9246,0.387237,0.423008,0.29129,0.921573,0.861713,0.832611,0.961885,0.138609,0.0668832,0.0875617,0.612379,0.550698,0.825508,0.781871,0.619688,0.818159,0.888689,0.682443,0.366027,0.448874,0.731363,0.611122,0.373178,0.781249,0.340782,0.678813,0.637528,0.182116,0.582174,0.365436,0.0623158,0.234123,0.914348,0.333798,0.188999,0.732198,0.483173,0.215671,0.0420761,0.0572973,0.0588028,0.152309,0.138763,0.641416,0.115185,0.971766,0.268524,0.852301,0.793434,0.724092,0.591097,0.174073,0.561748,0.852055,0.168598,0.335558,0.519286,0.19589,0.178609,0.322682,0.0557721,0.373891,0.74372,0.817017,0.560031,0.148006,0.994744,0.601374,0.114032,0.928957,0.0286269,0.265162,0.306392,0.157651,0.260245,0.41031,0.143179,0.506099,0.514314,0.401841,0.615993,0.0465784,0.619925,0.283967,0.965801,0.241528,0.855089,0.773415,0.506667,0.131591,0.920928,0.145156,0.859683,0.815759,0.159972,0.0488616,0.946871,0.184394,0.195563,0.060329,0.863645,0.741116,0.236119,0.0122127,0.0749218,0.682421,0.469741,0.499161,0.845306,0.588605,0.491065,0.043364,0.440683,0.250972,0.13607,0.0950906,0.628724,0.390769,0.0973881,0.919137,0.88221,0.37266,0.664909,0.148513,0.0988122,0.90549,0.407636,0.419462,0.0965923,0.212461,0.789855,0.963129,0.220636,0.812455,0.53891,0.977335,0.819731,0.238392,0.741864,0.832869,0.906856,0.586991,0.867322,0.845693,0.947098,0.480558,0.414596,0.433765,0.819963,0.292054,0.919317,0.973031,0.583428,0.881274,0.325221,0.0978742,0.965842,0.741953,0.0281063,0.510433,0.30833,0.0317534,0.580404,0.109671,0.402666,0.0767574,0.807445,0.155281,0.118081,0.0433115,0.785233,0.842404,0.513277,0.594546,0.952317,0.373395,0.775191,0.53658,0.111818,0.142637,0.341563,0.0486892,0.141595,0.891832,0.303885,0.876303,0.189094,0.225613,0.553558,0.390541,0.266223,0.496993,0.0974268,0.689946,0.924555,0.787973,0.676824,0.0304351,0.574546,0.828247,0.294576,0.189349,0.643202,0.478246,0.964917,0.672754,0.999146,0.289047,0.7292,0.0260385,0.516808,0.509716,0.368907,0.842445,0.0184526,0.0917837,0.670811,0.810003,0.156457,0.667768,0.351855,0.884809,0.22425,0.558455,0.873782,0.431489,0.967446,0.903233,0.130545,0.369285,0.562732,0.500103,0.207903,0.790263,0.540898,0.174629,0.00311571,0.402432,0.0142704,0.578726,0.0979736,0.463416,0.9773,0.0563653,0.548189,0.536172,0.71672,0.947263,0.010181,0.528307,0.513444,0.0727986,0.780985,0.656989,0.888282,0.367944,0.955171,0.557205,0.971422,0.497658,0.952309,0.761653,0.55603,0.411369,0.740217,0.83481,0.777754,0.690634,0.694777,0.679829,0.515518,0.207068,0.634841,0.590007,0.968949,0.0663497,0.735827,0.691885,0.898685,0.484452,0.054684,0.360275,0.675706,0.920115,0.299378,0.630873,0.216838,0.834339,0.718638,0.770087,0.913034,0.423477,0.750616,0.744871,0.881323,0.867403,0.164552,0.429773,0.373769,0.251132,0.20782,0.923553,0.575977,0.0912067,0.981721,0.153247,0.801878,0.794997,0.253229,0.814577,0.558975,0.26764,0.581425,0.611707,0.210211,0.935538,0.92211,0.307329,0.854111,0.449713,0.596337,0.348303,0.18934,0.444546,0.46568,0.293467,0.831084,0.675835,0.0116798,0.332911,0.789219,0.60306,0.132465,0.893694,0.0640441,0.476114,0.0227829,0.383781,0.81152,0.303722,0.676,0.0127406,0.259515,0.112631,0.145553,0.121162,0.610826,0.39927,0.623572,0.606178,0.353568,0.31307,0.446087,0.810216,0.142071,0.332264,0.702854,0.637478,0.070328,0.892896,0.783506,0.633216,0.929291,0.666509,0.371377,0.502183,0.0824575,0.30127,0.137606,0.0778914,0.804571,0.384197,0.86753,0.20084,0.0137857,0.62776,0.17644,0.438904,0.982637,0.700375,0.950981,0.546175,0.161107,0.644808,0.959113,0.345534,0.480695,0.55013,0.0393156,0.812378,0.435833,0.324531,0.0478358,0.188522,0.493377,0.902702,0.943091,0.29572,0.503401,0.720904,0.857705,0.459112,0.179626,0.080626,0.524622,0.279786,0.461828,0.573933,0.687734,0.820005,0.0270588,0.899176,0.64196,0.29266,0.172017,0.513432,0.848925,0.660288,0.278183,0.114769,0.35736,0.374181,0.0245456,0.0924753,0.481462,0.116919,0.904195,0.389636,0.308745,0.958465,0.346755,0.83937,0.491622,0.393562,0.167664,0.0151273,0.186458,0.532749,0.241497,0.445283,0.749497,0.349657,0.913636,0.398556,0.687927,0.16765,0.259756,0.592177,0.548225,0.798319,0.185235,0.743563,0.33485,0.986012,0.0913076,0.387188,0.466831,0.89398,0.672987,0.359554,0.634963,0.476164,0.00959808,0.807056,0.612115,0.723269,0.968684,0.068881,0.431844,0.712796,0.0543247,0.786464,0.718519,0.585396,0.0457345,0.310813,0.434099,0.968979,0.6482,0.152122,0.573699,0.704423,0.479494,0.609024,0.790243,0.452885,0.494236,0.334086,0.490193,0.421777,0.878514,0.30757,0.12003,0.550021,0.346108,0.045923,0.297755,0.982813,0.626662,0.498593,0.897357,0.967649,0.352685,0.152919,0.861066,0.44662,0.391726,0.900952,0.964521,0.974043,0.369928,0.210261,0.849835,0.587982,0.868386,0.988526,0.319477,0.337256,0.610262,0.671718,0.357474,0.709083,0.27543,0.787848,0.394907,0.468809,0.452015,0.547832,0.0388644,0.0449769,0.270003,0.456616,0.969473,0.622806,0.212811,0.844982,0.825061,0.364765,0.891917,0.866758,0.217213,0.413671,0.0665538,0.45809,0.876853,0.412113,0.701715,0.315765,0.364238,0.278349,0.695625,0.611913,0.592871,0.0822918,0.0737341,0.441912,0.370994,0.737225,0.443285,0.0167669,0.594164,0.721207,0.515678,0.607877,0.0780994,0.474874,0.693507,0.965928,0.0293936,0.0646588,0.949938,0.983159,0.485239,0.84059,0.760758,0.430538,0.719674,0.0103845,0.535623,0.359006,0.399838,0.679398,0.860587,0.597331,0.379831,0.422489,0.288409,0.00594151,0.165647,0.901473,0.652358,0.53366,0.995087,0.388844,0.139801,0.256704,0.724959,0.117093,0.63063,0.33852,0.617491,0.724829,0.910596,0.00239873,0.754704,0.216683,0.732488,0.777538,0.285965,0.648284,0.213718,0.126912,0.208338,0.729419,0.484793,0.422668,0.410174,0.944822,0.418066,0.933299,0.210107,0.503761,0.183164,0.154429,0.611756,0.0804452,0.993532,0.495348,0.0128685,0.125578,0.753568,0.851711,0.51389,0.940404,0.37708,0.866241,0.464041,0.329127,0.490323,0.217805,0.92317,0.800525,0.0905126,0.354414,0.368087,0.655752,0.165285,0.207532,0.528043,0.119181,0.00779349,0.886055,0.91873,0.0701679,0.14721,0.9702,0.382161,0.580913,0.672805,0.393061,0.0622909,0.652622,0.763279,0.193904,0.328037,0.0616109,0.411267,0.451026,0.113486,0.61076,0.13565,0.860435,0.0984297,0.945842,0.71896,0.52162,0.583505,0.646872,0.335063,0.937406,0.503938,0.322582,0.641042,0.0404683,0.0365406,0.591808,0.229927,0.789166,0.292314,0.161403,0.459707,0.529582,0.242879,0.781468,0.0597695,0.952841,0.940175,0.417282,0.127348,0.73879,0.681405,0.734458,0.895939,0.0122703,0.110964,0.46639,0.605232,0.262583,0.283579,0.567327,0.148635,0.474706,0.39864,0.605046,0.415559,0.338317,0.0147402,0.898155,0.544758,0.975334,0.747523,0.204046,0.342169,0.631329,0.0802016,0.442105,0.628998,0.505734,0.64956,0.228654,0.455769,0.548852,0.773229,0.49707,0.841873,0.251171,0.852684,0.508972,0.789664,0.654855,0.755653,0.689194,0.213104,0.917587,0.85689,0.243331,0.949464,0.679769,0.762955,0.278845,0.80868,0.45095,0.997229,0.825087,0.271495,0.168693,0.23144,0.639807,0.277094,0.782981,0.435179,0.405646,0.491025,0.992439,0.880904,0.307446,0.0857881,0.266923,0.819866,0.576959,0.704278,0.653534,0.339685,0.774641,0.0888532,0.0615224,0.896298,0.0333983,0.370262,0.103345,0.576204,0.00301814,0.674569,0.355528,0.603151,0.0708057,0.994451,0.0820667,0.564383,0.186302,0.0923501,0.966569,0.924392,0.125091,0.273864,0.140697,0.171604,0.629138,0.937163,0.33543,0.0265925,0.290843,0.687939,0.258444,0.740646,0.0876443,0.909337,0.718414,0.420356,0.223717,0.94858,0.58743,0.672754,0.485479,0.175417,0.0715283,0.544051,0.889736,0.592778,0.197598,0.256218,0.610859,0.555245,0.488613,0.125563,0.706199,0.47224,0.618499,0.533162,0.2049,0.185671,0.620997,0.869674,0.912546,0.209311,0.880925,0.254117,0.722536,0.33389,0.0764655,0.753759,0.519718,0.0913466,0.332868,0.42713,0.031862,0.889495,0.729307,0.74608,0.000986934,0.0705559,0.698639,0.295941,0.106892,0.631134,0.85021,0.781343,0.33584,0.880605,0.0406297,0.966358,0.792787,0.0676831,0.696341,0.440973,|0.245169,0.629459,0.245453,0.201146,0.879375,0.31466,0.750019,0.291023,0.82071,0.826705,0.682108,0.126129,0.880343,0.695477,0.266338,0.657579,0.898298,0.982004,0.189349,0.941948,0.694937,0.975304,0.753498,0.567304,0.617926,0.0865837,0.641664,0.738741,0.5216,0.325082,0.477777,0.103066,0.13773,0.971888,0.837999,0.179743,0.0282609,0.707187,0.154234,0.285718,0.584078,0.909849,0.770086,0.664511,0.435501,0.76602,0.163456,0.834093,0.509733,0.921401,0.252675,0.347421,0.854621,0.951431,0.548473,0.408812,0.370646,0.403029,0.704079,0.814455,0.743233,0.00456613,0.8982,0.465723,0.336036,0.326223,0.157102,0.249833,0.48521,0.913905,0.718234,0.215608,0.990257,0.352764,0.964413,0.831588,0.742708,0.570449,0.625162,0.355649,0.549495,0.659875,0.851566,0.838355,0.469383,0.873235,0.627202,0.811346,0.736609,0.720036,0.691273,0.380853,0.239558,0.30983,0.859102,0.391715,0.295486,0.355639,0.758201,0.31662,0.486449,0.978203,0.76884,0.146784,0.0122917,0.00041467,0.439553,0.548567,0.086858,0.752429,0.837289,0.379292,0.578613,0.00320452,0.745924,0.063869,0.285174,0.546355,0.23335,0.148322,0.871604,0.397095,0.652773,0.715759,0.132601,0.0939445,0.88572,0.223324,0.985673,0.678682,0.28521,0.65162,0.58271,0.864815,0.510094,0.404975,0.274393,0.991333,0.391111,0.158508,0.771873,0.602409,0.936646,0.657573,0.123362,0.881452,0.0353397,0.350349,0.723966,0.949936,0.118772,0.619904,0.844141,0.590366,0.386597,0.0945118,0.147088,0.235721,0.420099,0.11323,0.121778,0.270013,0.535946,0.950742,0.660775,0.234738,0.0608411,0.587375,0.93677,0.379134,0.940979,0.659724,0.283989,0.989387,0.540768,0.40042,0.148353,0.921816,0.697552,0.917682,0.282105,0.764386,0.188289,0.377719,0.447267,0.557357,0.235523,0.756416,0.822795,0.503965,0.922775,0.960931,0.0554767,0.289446,0.652752,0.360293,0.549314,0.220579,0.588453,0.73314,0.947728,0.264668,0.631908,0.817978,0.925312,0.551571,0.671167,0.445004,0.50212,0.900716,0.806262,0.220437,0.691274,0.885284,0.186758,0.422502,0.991962,0.946519,0.346662,0.207753,0.742437,0.109176,0.222768,0.58054,0.772368,0.623554,0.730553,0.855855,0.760376,0.427949,0.324781,0.0830365,0.960043,0.311876,0.45763,0.292393,0.378697,0.890953,0.548016,0.191702,0.24923,0.19154,0.774061,0.283907,0.875248,0.982651,0.435149,0.668633,0.91188,0.0535843,0.792903,0.744796,0.740042,0.2264,0.441056,0.547434,0.283691,0.200865,0.243527,0.567524,0.952007,0.902737,0.402647,0.750458,0.911565,0.771234,0.63587,0.816376,0.670841,0.161684,0.67802,0.935946,0.639813,0.807667,0.0205563,0.76698,0.680024,0.580383,0.119177,0.758422,0.803931,0.811856,0.209951,0.12226,0.622908,0.155832,0.622486,0.763088,0.541257,0.107213,0.328105,0.209698,0.54191,0.497648,0.0531251,0.55023,0.770568,0.256047,0.648867,0.677112,0.379202,0.0218206,0.254336,0.746101,0.753795,0.270231,0.157476,0.0309345,0.548959,0.141371,0.547214,0.933887,0.375273,0.316237,0.9446,0.34473,0.701952,0.0842693,0.0942934,0.238804,0.248243,0.424004,0.459532,0.809349,0.278499,0.511331,0.990558,0.542149,0.609571,0.00732112,0.286461,0.884438,0.0930543,0.928654,0.361833,0.943619,0.498266,0.520629,0.975941,0.815478,0.16956,0.575589,0.355155,0.145889,0.200419,0.175313,0.562711,0.207615,0.649055,0.331146,0.824782,0.875499,0.744139,0.42779,0.166286,0.807147,0.24057,0.60518,0.354945,0.66912,0.529707,0.592095,0.867201,0.793559,0.855128,0.92365,0.783628,0.979377,0.77654,0.457902,0.182615,0.550781,0.978312,0.919482,0.688863,0.0413218,0.151806,0.539089,0.788206,0.586084,0.499255,0.608495,0.631473,0.467156,0.313971,0.123653,0.860121,0.986803,0.800542,0.70008,0.774589,0.318048,0.361521,0.858527,0.608562,0.92261,0.839207,0.881593,0.190004,0.342741,0.955217,0.76954,0.788075,0.324649,0.512154,0.679454,0.272472,0.480152,0.955523,0.0546547,0.364692,0.673058,0.786645,0.18634,0.993209,0.692825,0.634102,0.453394,0.952933,0.24403,0.931804,0.00961429,0.514803,0.467052,0.164719,0.0685596,0.165367,0.24739,0.286337,0.0412526,0.409049,0.578163,0.115735,0.0342622,0.0669261,0.291345,0.0096224,0.200826,0.210852,0.862741,0.86031,0.802282,0.457083,0.444225,0.0851889,0.340101,0.934311,0.218274,0.117781,0.0522642,0.97897,0.863876,0.430225,0.852967,0.576918,0.00162441,0.142602,0.734481,0.656718,0.5959,0.349478,0.547171,0.354087,0.506365,0.961134,0.395936,0.484456,0.516246,0.390072,0.0382103,0.33656,0.621019,0.785661,0.94656,0.174581,0.747145,0.33158,0.983562,0.36615,0.443208,0.744416,0.737853,0.751535,0.546736,0.883531,0.097463,0.432645,0.492091,0.153433,0.183267,0.990712,0.279519,0.481169,0.222483,0.650853,0.72241,0.906333,0.266642,0.415785,0.325452,0.878549,0.198788,0.326224,0.742607,0.993121,0.583424,0.579779,0.0911654,0.35244,0.951249,0.96659,0.0805789,0.934308,0.565792,0.39684,0.782476,0.145569,0.499021,0.431606,0.744465,0.351726,0.776564,0.705308,0.213824,0.00843191,0.687052,0.251538,0.772247,0.466614,0.64451,0.570283,0.598186,0.80338,0.765315,0.489879,0.15291,0.0750483,0.958081,0.20523,0.385558,0.787638,0.661987,0.517735,0.283214,0.844228,0.814228,0.153765,0.650225,0.132462,0.0989153,0.684266,0.514768,0.369034,0.792613,0.172787,0.17728,0.812963,0.248872,0.166322,0.699254,0.31798,0.334663,0.226201,0.481602,0.7562,0.904237,0.367403,0.42108,0.563608,0.215654,0.264391,0.952702,0.782854,0.688949,0.950439,0.723079,0.663775,0.729236,0.619152,0.948418,0.857718,0.796063,0.463694,0.293076,0.892515,0.5715,0.816269,0.460866,0.924471,0.893501,0.0198313,0.155239,0.0596321,0.753753,0.770999,0.903007,0.711551,0.772488,0.158272,0.95852,0.728416,0.488087,0.512252,0.420071,0.936601,0.719853,0.362007,0.519093,0.195129,0.644171,0.363496,0.801023,0.663123,0.984107,0.515091,0.142778,0.224033,0.386813,0.216289,0.902151,0.313057,0.85719,0.598156,0.211833,0.240212,0.995324,0.353411,0.538512,0.899517,0.971711,0.482662,0.671419,0.110748,0.595672,0.377442,0.876613,0.298431,0.572668,0.471018,0.896873,0.401485,0.936495,0.314484,0.135595,0.504181,0.0887651,0.0194507,0.326492,0.336411,0.442723,0.366254,0.382668,0.142006,0.0414088,0.179244,0.382268,0.132206,0.192503,0.95281,0.111981,0.920781,0.028468,0.207005,0.179223,0.056285,0.893184,0.483705,0.322163,0.575602,0.107281,0.424038,0.127275,0.940528,0.695575,0.272991,0.371777,0.631208,0.0381785,0.458157,0.444571,0.612896,0.658695,0.332667,0.852382,0.889751,0.0564453,0.867103,0.59801,0.402118,0.722008,0.0988511,0.745719,0.0754388,0.499679,0.73553,0.35083,0.939078,0.991996,0.775771,0.696827,0.367657,0.700927,0.319931,0.954293,0.0589158,0.0535501,0.021666,0.273839,0.0279765,0.0981669,0.294059,0.788202,0.687064,0.666459,0.867388,0.483085,0.270606,0.0666372,0.906242,0.210494,0.460402,0.896749,0.0508173,0.468214,0.332353,0.596575,0.739642,0.781814,0.662805,0.92929,0.276477,0.995808,0.890351,0.586012,0.979044,0.859013,0.243354,0.201989,0.0385251,0.544159,0.465884,0.0933951,0.907063,0.634539,0.843824,0.687024,0.480657,0.0727607,0.863113,0.242141,0.329722,0.503752,0.332571,0.386308,0.0900877,0.711618,0.0279685,0.74188,0.69916,0.178279,0.698803,0.0657257,0.265174,0.0773808,0.402368,0.683976,0.226371,0.305162,0.409425,0.456111,0.809907,0.725627,0.933547,0.0350344,0.986578,0.372387,0.188412,0.700163,0.406061,0.713751,0.79998,0.863393,0.644923,0.948251,0.122662,0.877752,0.871501,0.370282,0.675806,0.461784,0.602657,0.955659,0.394723,0.224226,0.0579712,0.875587,0.332771,0.398369,0.102542,0.880203,0.752008,0.188488,0.591486,0.926466,0.31655,0.900508,0.790027,0.0383992,0.903811,0.825262,0.61419,0.473903,0.363847,0.748363,0.207998,0.155026,0.65805,0.39369,0.50428,0.294957,0.0220999,0.915359,0.913109,0.525891,0.73745,0.816269,0.852467,0.941197,0.491129,0.691186,0.85296,0.0721823,0.755162,0.999757,0.518887,0.956454,0.942728,0.464536,0.848035,0.635759,0.831032,0.442759,0.867884,0.373552,0.127329,0.181913,0.489597,0.607344,0.0316834,0.543825,0.0997459,0.65505,0.809636,0.121149,0.47744,0.981435,0.0453963,0.294366,0.711113,0.15459,0.176115,0.974401,0.513742,0.301063,0.79317,0.76996,0.267282,0.855519,0.402502,0.425659,0.0523396,0.335059,0.978607,0.59925,0.287243,0.802635,0.796263,0.287111,0.896384,0.982804,0.593181,0.780501,0.788566,0.322204,0.692376,0.0986177,0.484235,0.905369,0.341967,0.246448,0.833494,0.249192,0.904721,0.228337,0.214853,0.559435,0.914494,0.497693,0.0856451,0.852425,0.0246295,0.920572,0.28477,0.884119,0.306119,0.318381,0.256868,0.318284,0.326323,0.0368421,0.233304,0.535791,0.66325,0.814248,0.443776,0.993198,0.393179,0.0376247,0.370248,0.265553,0.326621,0.353919,0.186115,0.0471603,0.871711,0.311159,0.332664,0.226402,0.364973,0.118876,0.242891,0.616884,0.144185,0.400428,0.149271,0.317487,0.734156,0.509426,0.723842,0.368165,0.0853943,0.22566,0.56969,0.393416,0.125067,0.144707,0.0600985,0.711865,0.945265,0.447214,0.792469,0.421166,0.0264486,0.536957,0.359156,0.151579,0.305294,0.142526,0.12909,0.0472462,0.784422,0.294733,0.238479,0.732772,0.326998,0.13813,0.812561,0.637026,0.764947,0.135247,0.935629,0.484264,0.823877,0.25109,0.164602,0.378837,0.471066,0.847423,0.0944965,0.446278,0.104999,0.795288,0.723068,0.235154,0.676737,0.838045,0.12839,0.753575,0.13039,0.88401,0.467585,0.868801,0.0122439,0.660458,0.308826,0.325604,0.0662372,0.563769,0.26974,0.553569,|0.314372,0.891993,0.532457,0.469341,0.600986,0.436647,0.463205,0.687262,0.487049,0.730869,0.0440934,0.722213,0.943739,0.458576,0.213252,0.820169,0.254375,0.658801,0.142228,0.145624,0.340624,0.208657,0.927866,0.209224,0.184839,0.223476,0.355744,0.166555,0.117421,0.876628,0.374495,0.128104,0.0480441,0.772195,0.301276,0.412675,0.691808,0.93821,0.36244,0.431528,0.209376,0.807424,0.790059,0.746346,0.354841,0.103334,0.198874,0.824471,0.494547,0.507513,0.0297573,0.0999449,0.446329,0.977027,0.319702,0.28169,0.305482,0.780725,0.558571,0.670337,0.872198,0.1885,0.99565,0.628154,0.0729073,0.5271,0.230237,0.310675,0.0226389,0.3647,0.299387,0.475663,0.852077,0.672746,0.380803,0.601003,0.778111,0.306698,0.542505,0.805431,0.871805,0.601034,0.506658,0.550543,0.922244,0.956245,0.937083,0.615521,0.299878,0.0184531,0.126016,0.891136,0.544329,0.898527,0.981081,0.566777,0.562876,0.276849,0.65512,0.303259,0.375207,0.564513,0.708631,0.0729677,0.645159,0.867976,0.871424,0.224529,0.649346,0.176604,0.845828,0.247854,0.372232,0.39471,0.59418,0.0330076,0.0481752,0.00279802,0.0676025,0.440003,0.727283,0.44894,0.0509648,0.108701,0.784587,0.20276,0.900432,0.379666,0.28862,0.39117,0.255302,0.91814,0.122459,0.0179313,0.161727,0.0453481,0.447861,0.333933,0.882079,0.203994,0.600231,0.246864,0.404336,0.995916,0.473988,0.196219,0.201473,0.834169,0.946413,0.406556,0.243473,0.536509,0.902572,0.702516,0.246,0.726423,0.684435,0.694152,0.834346,0.486502,0.626398,0.707222,0.487524,0.363918,0.384195,0.59253,0.860665,0.433846,0.372513,0.889213,0.929923,0.860928,0.0609942,0.344234,0.584025,0.113848,0.429006,0.674354,0.589345,0.647177,0.623624,0.27767,0.0266207,0.222374,0.144815,0.0637609,0.742692,0.743063,0.240305,0.638292,0.302388,0.472851,0.184884,0.594177,0.880727,0.521892,0.859498,0.852999,0.387811,0.728699,0.315275,0.482725,0.535794,0.725595,0.615876,0.332813,0.560871,0.233681,0.47246,0.255338,0.286355,0.336423,0.858414,0.163038,0.972877,0.786072,0.783317,0.025176,0.290227,0.411518,0.516033,0.676781,0.837526,0.233568,0.16543,0.867881,0.246617,0.866423,0.832163,0.733774,0.715452,0.1267,0.977273,0.872778,0.7909,0.269237,0.676599,0.288418,0.668602,0.797153,0.619141,0.559506,0.292632,0.621681,0.948014,0.635697,0.785749,0.274147,0.798211,0.194651,0.239779,0.73215,0.836515,0.789265,0.89766,0.708553,0.62287,0.32833,0.578251,0.0751933,0.472402,0.867277,0.850384,0.799941,0.45839,0.838488,0.632678,0.173744,0.604484,0.447601,0.219243,0.269271,0.528435,0.954114,0.115113,0.348204,0.301966,0.0170908,0.573191,0.0500172,0.888954,0.0285269,0.313131,0.0275893,0.548543,0.949924,0.638152,0.509795,0.816556,0.0722791,0.954378,0.912935,0.223265,0.343822,0.506037,0.400178,0.624829,0.61679,0.478697,0.164202,0.454276,0.207088,0.344211,0.184248,0.0852674,0.63599,0.505801,0.529131,0.607302,0.278541,0.746016,0.758361,0.586388,0.865935,0.203314,0.878125,0.594553,0.688284,0.17828,0.481444,0.0652189,0.448081,0.589216,0.89467,0.950585,0.984721,0.319493,0.526676,0.79064,0.6026,0.00355113,0.817653,0.476447,0.37437,0.976346,0.834455,0.377458,0.861096,0.166563,0.339102,0.0349388,0.332165,0.269352,0.643298,0.145368,0.864335,0.781191,0.847929,0.0451264,0.234626,0.0965838,0.343257,0.880576,0.752651,0.440012,0.790096,0.226222,0.742668,0.565493,0.353735,0.48934,0.0674389,0.590512,0.78804,0.941682,0.100095,0.549746,0.888163,0.956814,0.726095,0.102531,0.624426,0.431243,0.63526,0.951328,0.334031,0.259466,0.206657,0.27514,0.8166,0.946191,0.480981,0.144112,0.232868,0.702122,0.613083,0.730283,0.844932,0.948934,0.101194,0.294723,0.773992,0.771161,0.992603,0.931838,0.733472,0.631159,0.772569,0.215318,0.0957295,0.54483,0.633389,0.79742,0.311897,0.447736,0.861465,0.652844,0.492482,0.363447,0.559585,0.267807,0.650707,0.0269717,0.904855,0.951851,0.657757,0.738466,0.391481,0.568819,0.635303,0.532276,0.487601,0.815342,0.582324,0.989891,0.0614746,0.776473,0.422406,0.687784,0.00475478,0.602091,0.43689,0.254252,0.963846,0.0361939,0.838311,0.413722,0.147401,0.252902,0.564673,0.645304,0.85045,0.171036,0.443564,0.79535,0.121107,0.747393,0.688501,0.569524,0.780048,0.677133,0.726356,0.677887,0.29167,0.310088,0.390526,0.010188,0.251006,0.478806,0.542241,0.0225525,0.889742,0.494047,0.908982,0.812735,0.484314,0.510861,0.0513898,0.185164,0.922485,0.688934,0.618099,0.225375,0.902947,0.695048,0.596758,0.00841993,0.653694,0.992143,0.0226852,0.45136,0.947895,0.488868,0.806512,0.101342,0.530878,0.670932,0.463632,0.205884,0.917238,0.160146,0.811179,0.723158,0.885215,0.970926,0.109118,0.360447,0.998081,0.940546,0.87452,0.378119,0.390114,0.428326,0.473952,0.866818,0.864539,0.586686,0.72317,0.723446,0.95848,0.906815,0.832455,0.0629554,0.406466,0.325611,0.978593,0.917119,0.751943,0.966803,0.708062,0.947276,0.476061,0.242461,0.84415,0.927946,0.598316,0.428123,0.0722362,0.467755,0.347934,0.980011,0.00313127,0.449993,0.774547,0.475991,0.935199,0.147323,0.385556,0.180502,0.960537,0.713701,0.743976,0.467473,0.777649,0.166404,0.744852,0.51997,0.882087,0.470894,0.504266,0.0742201,0.768913,0.4042,0.495745,0.833472,0.983463,0.439493,0.80528,0.774569,0.22256,0.12439,0.702399,0.806587,0.994764,0.744361,0.180001,0.756023,0.625023,0.496342,0.0421687,0.905273,0.839013,0.718671,0.90001,0.426985,0.536711,0.502464,0.792313,0.0450507,0.297325,0.589073,0.0780507,0.223954,0.406818,0.919572,0.27712,0.659563,0.368351,0.157495,0.762333,0.849356,0.324696,0.393126,0.287929,0.712262,0.390394,0.342548,0.712568,0.803247,0.0419179,0.545182,0.172745,0.319151,0.0536637,0.460368,0.211783,0.549887,0.969901,0.0856235,0.62954,0.687656,0.365582,0.0751494,0.533454,0.608627,0.97976,0.939116,0.726551,0.85614,0.373356,0.486313,0.176122,0.0596915,0.079576,0.649035,0.0333125,0.50563,0.583635,0.630643,0.68855,0.241882,0.362595,0.545416,0.790532,0.086845,0.54584,0.129696,0.159792,0.85978,0.264056,0.313515,0.0961086,0.575503,0.231928,0.411166,0.060799,0.0628231,0.13642,0.975046,0.319959,0.760994,0.977729,0.439026,0.070043,0.584833,0.0131086,0.763324,0.148815,0.192491,0.186047,0.132844,0.903191,0.28715,0.282169,0.234427,0.332113,0.538684,0.530514,0.218467,0.562467,0.725837,0.184408,0.276439,0.531307,0.166037,0.152897,0.349811,0.883794,0.47021,0.9491,0.210828,0.599587,0.449332,0.79716,0.625148,0.627645,0.652059,0.923889,0.894619,0.865306,0.630802,0.677567,0.0788601,0.868113,0.606499,0.82047,0.62894,0.624101,0.977128,0.708682,0.579855,0.13273,0.280997,0.426515,0.364073,0.188801,0.707527,0.940859,0.408998,0.657984,0.105128,0.544836,0.702972,0.0263365,0.459773,0.682595,0.364733,0.118105,0.643879,0.143878,0.652491,0.604541,0.44534,0.0826977,0.572751,0.671763,0.623084,0.730734,0.39576,0.570342,0.630568,0.314663,0.639122,0.0373492,0.0632519,0.954091,0.758755,0.599815,0.990608,0.637616,0.0112453,0.389606,0.665354,0.933625,0.829073,0.636825,0.298996,0.268972,0.983736,0.159145,0.561971,0.78298,0.699298,0.747111,0.713222,0.172497,0.209897,0.657014,0.243442,0.139918,0.555875,0.923156,0.518764,0.891649,0.299609,0.679489,0.959113,0.023857,0.582481,0.398428,0.956972,0.160061,0.827568,0.881726,0.899196,0.254845,0.424719,0.278642,0.0116121,0.866342,0.736307,0.585819,0.846404,0.380094,0.036037,0.193144,0.454657,0.491542,0.543004,0.921918,0.855128,0.175613,0.279528,0.346358,0.64689,0.112085,0.719858,0.671881,0.272735,0.625006,0.0376558,0.0478274,0.0548084,0.347667,0.333539,0.530836,0.514141,0.101691,0.871655,0.914021,0.330818,0.826057,0.847678,0.408218,0.983126,0.976876,0.633175,0.675209,0.932603,0.203827,0.458328,0.00548226,0.761925,0.22708,0.970005,0.0106406,0.65375,0.186904,0.202338,0.0566557,0.0150696,0.294,0.623192,0.477226,0.0933092,0.594157,0.193797,0.186274,0.246125,0.238633,0.488561,0.637856,0.753527,0.18566,0.85029,0.519439,0.740807,0.409069,0.231211,0.516325,0.0640345,0.10203,0.645691,0.578284,0.10804,0.212127,0.274169,0.436182,0.300611,0.841908,0.138835,0.167648,0.986583,0.631456,0.359891,0.239846,0.255214,0.689141,0.27293,0.575408,0.987216,0.483979,0.698348,0.0088321,0.674974,0.841002,0.10524,0.947735,0.410498,0.321951,0.416732,0.524013,0.356738,0.940452,0.114532,0.854294,0.278585,0.80763,0.19249,0.45514,0.524015,0.0278915,0.119221,0.19465,0.679169,0.0800874,0.78615,0.540664,0.692685,0.0367047,0.139024,0.226445,0.679578,0.239656,0.600546,0.807849,0.735684,0.626046,0.247792,0.274708,0.798461,0.847085,0.447912,0.629153,0.23143,0.475037,0.697918,0.454056,0.564549,0.82491,0.939417,0.196572,0.753621,0.531964,0.28544,0.789043,0.565501,0.167757,0.777564,0.135641,0.143526,0.332197,0.204575,0.576084,0.257203,0.386412,0.0644326,0.339032,0.617952,0.0995009,0.219543,0.419045,0.60416,0.034935,0.767504,0.611313,0.0374452,0.853913,0.736658,0.0534549,0.924213,0.113501,0.568145,0.797662,0.882178,0.60582,0.237878,0.336367,0.559582,0.0865388,0.895191,0.661194,0.721248,0.855722,0.734998,0.833308,0.808889,0.108593,0.656345,0.745682,0.360554,0.19354,0.748587,0.267671,0.0642592,0.249104,0.589853,0.388676,0.564651,0.0831464,0.096505,0.129827,0.562859,0.539018,0.564618,0.683059,0.232124,0.366697,0.447877,0.391728,0.950119,0.109615,0.475926,0.401877,0.210906,0.838632,0.320195,0.152818,0.421657,0.680278,|0.580284,0.845688,0.789317,0.515522,0.507508,0.937133,0.921293,0.913006,0.515907,0.53689,0.177096,0.632119,0.101422,0.639847,0.56062,0.965106,0.283125,0.266917,0.208044,0.658989,0.340738,0.0230296,0.742694,0.669212,0.36556,0.222455,0.146673,0.176066,0.958273,0.498118,0.735591,0.880341,0.398934,0.209142,0.741242,0.537308,0.569923,0.662142,0.758111,0.4272,0.268735,0.0264606,0.803873,0.992767,0.131696,0.0240092,0.877548,0.74545,0.682301,0.359658,0.293032,0.391971,0.60413,0.454729,0.862227,0.774271,0.804794,0.136856,0.916903,0.887311,0.19565,0.359988,0.657731,0.647305,0.985221,0.0949387,0.157519,0.889454,0.491163,0.010951,0.479506,0.500652,0.617983,0.863032,0.79675,0.560422,0.899251,0.970529,0.162023,0.0187288,0.190922,0.382007,0.791029,0.580275,0.518868,0.180458,0.803274,0.340037,0.0061748,0.107259,0.0322503,0.168402,0.0673363,0.713838,0.515956,0.781043,0.976134,0.469746,0.905893,0.0419188,0.86609,0.0557744,0.0280043,0.0835741,0.384441,0.593804,0.302228,0.117729,0.296919,0.460127,0.521137,0.65611,0.130002,0.480107,0.843826,0.831654,0.682444,0.267614,0.666316,0.316599,0.393518,0.693664,0.274782,0.372692,0.704301,0.488048,0.465272,0.228092,0.565119,0.77433,0.819524,0.680306,0.573982,0.870269,0.179088,0.107589,0.133395,0.877019,0.000599742,0.735992,0.842364,0.570286,0.991041,0.873778,0.174493,0.11903,0.519855,0.376809,0.0340105,0.131241,0.436854,0.0158478,0.386029,0.994959,0.423037,0.0534688,0.835228,0.969953,0.919138,0.431204,0.150143,0.343831,0.728636,0.568787,0.504753,0.98906,0.403954,0.905404,0.135762,0.923615,0.751771,0.698116,0.339559,0.314457,0.914928,0.595919,0.199069,0.713124,0.449777,0.321108,0.109564,0.075308,0.309264,0.550508,0.814505,0.0357239,0.178443,0.868263,0.602203,0.764523,0.164164,0.304796,0.963259,0.787704,0.493167,0.658301,0.69606,0.94025,0.779377,0.719329,0.187478,0.603536,0.996791,0.391392,0.953451,0.296283,0.0705303,0.824377,0.226723,0.284214,0.315902,0.00306761,0.0137522,0.0886631,0.78644,0.637291,0.937782,0.394583,0.584123,0.962949,0.265911,0.936255,0.245808,0.562245,0.967456,0.527346,0.252901,0.0160348,0.942462,0.608179,0.869654,0.850807,0.932046,0.850405,0.134647,0.125569,0.157873,0.482678,0.530953,0.877354,0.0115523,0.932146,0.128442,0.364925,0.663887,0.364377,0.718492,0.0909231,0.806456,0.431284,0.273193,0.244908,0.441059,0.488007,0.129499,0.430326,0.524687,0.190496,0.489283,0.285386,0.846871,0.868589,0.46752,0.387556,0.5587,0.678851,0.131616,0.921377,0.388239,0.918431,0.805134,0.418149,0.781614,0.741165,0.53486,0.274002,0.787629,0.222736,0.962339,0.905917,0.818866,0.393108,0.070567,0.964557,0.0978819,0.401495,0.146994,0.613164,0.723614,0.393384,0.151376,0.687485,0.797233,0.956944,0.297194,0.360465,0.749898,0.951221,0.0934389,0.813619,0.468874,0.268804,0.526914,0.106961,0.34041,0.464365,0.0312386,0.774441,0.92362,0.919675,0.628888,0.103942,0.126751,0.257201,0.274755,0.102624,0.260394,0.0510251,0.486829,0.35841,0.945057,0.126675,0.554047,0.426268,0.91824,0.834098,0.238411,0.414723,0.592203,0.956759,0.266794,0.140876,0.266682,0.54174,0.465719,0.154175,0.523323,0.288738,0.0289608,0.877948,0.694688,0.553654,0.688219,0.0391358,0.286605,0.201351,0.731635,0.260772,0.672455,0.434496,0.286028,0.983625,0.619274,0.993389,0.278211,0.482312,0.957543,0.105536,0.207462,0.537642,0.902505,0.347685,0.424741,0.970466,0.00937742,0.401225,0.294517,0.983242,0.786381,0.874904,0.224842,0.0439429,0.059545,0.0606156,0.185401,0.921218,0.0113224,0.674985,0.0598932,0.325135,0.827454,0.463995,0.882783,0.332878,0.885986,0.478249,0.460168,0.447278,0.762016,0.272798,0.505312,0.505783,0.706145,0.788229,0.387614,0.612182,0.296058,0.74763,0.447146,0.56009,0.950575,0.190758,0.757969,0.709311,0.887492,0.526907,0.838366,0.136289,0.553518,0.39674,0.770562,0.142942,0.978603,0.853568,0.311038,0.109802,0.0273158,0.233963,0.0583304,0.272832,0.44109,0.841484,0.182507,0.272643,0.856237,0.1075,0.507004,0.14558,0.619726,0.170726,0.146822,0.344219,0.100546,0.716613,0.701234,0.970347,0.161503,0.256089,0.446415,0.297094,0.579646,0.405704,0.982561,0.804283,0.51162,0.75018,0.492335,0.304556,0.386947,0.0181032,0.59715,0.507951,0.561153,0.819225,0.179179,0.289493,0.980602,0.727983,0.452386,0.531624,0.809924,0.777032,0.817111,0.123699,0.623447,0.973296,0.459584,0.217824,0.0473598,0.521682,0.113724,0.267053,0.966477,0.363083,0.856192,0.121566,0.76718,0.0767204,0.959813,0.774321,0.951705,0.335306,0.329371,0.290392,0.801915,0.509747,0.185984,0.954429,0.366385,0.718787,0.169967,0.230728,0.560672,0.822582,0.139794,0.443365,0.842425,0.0128471,0.744077,0.432428,0.613469,0.290411,0.825432,0.236054,0.347572,0.556713,0.246615,0.974837,0.0834716,0.964641,0.657986,0.661873,0.545829,0.827899,0.65299,0.594,0.829548,0.39895,0.635389,0.827114,0.188296,0.498503,0.00745636,0.905545,0.644301,0.884863,0.206329,0.0891932,0.852342,0.639416,0.543228,0.442881,0.755209,0.484499,0.449271,0.83096,0.117691,0.00874913,0.196993,0.208754,0.809321,0.111923,0.44621,0.365452,0.678991,0.682553,0.619805,0.945702,0.51654,0.738474,0.179465,0.781259,0.644745,0.754062,0.370963,0.0619318,0.491247,0.707051,0.131216,0.949884,0.651589,0.588853,0.272058,0.62113,0.92379,0.233272,0.890472,0.724752,0.262175,0.354375,0.460271,0.579422,0.0208746,0.786562,0.358105,0.749505,0.00771797,0.207563,0.907725,0.780173,0.448743,0.888022,0.52573,0.945385,0.332799,0.381467,0.925523,0.757522,0.813242,0.293153,0.264129,0.440526,0.580749,0.0157432,0.126682,0.00572884,0.181051,0.218028,0.841527,0.282341,0.988947,0.0368821,0.259263,0.658998,0.306757,0.121623,0.893337,0.377797,0.00620157,0.188796,0.993288,0.817811,0.765369,0.542287,0.444335,0.709739,0.149121,0.69328,0.23191,0.764553,0.219852,0.437805,0.806992,0.218886,0.261549,0.313977,0.410017,0.0484653,0.63419,0.788018,0.113515,0.225585,0.901533,0.928167,0.284798,0.316453,0.044929,0.836395,0.69834,0.469196,0.296377,0.0351955,0.906327,0.979854,0.084736,0.535907,0.336805,0.95258,0.830102,0.246052,0.135061,0.359966,0.388095,0.55197,0.216313,0.0962439,0.488911,0.55071,0.226304,0.49225,0.0816557,0.846251,0.59719,0.637686,0.854801,0.0651578,0.89661,0.74844,0.363506,0.103517,0.879257,0.940681,0.595962,0.871546,0.0188805,0.0918905,0.608954,0.095741,0.299237,0.961724,0.565855,0.294657,0.564517,0.877018,0.361961,0.827195,0.403972,0.565222,0.752579,0.631043,0.19673,0.0492393,0.130456,0.540488,0.304327,0.54889,0.861674,0.982386,0.582573,0.794359,0.310142,0.582526,0.622842,0.395653,0.397859,0.494588,0.634869,0.183763,0.960963,0.885163,0.00556344,0.441833,0.452028,0.0350175,0.274483,0.0406804,0.702136,0.761864,0.657416,0.8751,0.672983,0.805168,0.51099,0.907077,0.718623,0.31189,0.468426,0.496355,0.909997,0.808195,0.560605,0.904859,0.774464,0.313418,0.780058,0.103419,0.901778,0.854204,0.18124,0.807733,0.149546,0.271331,0.688443,0.444116,0.855223,0.952796,0.758191,0.714992,0.402936,0.985697,0.0969595,0.970392,0.541744,0.653409,0.521548,0.980125,0.289231,0.230096,0.316199,0.877319,0.473684,0.00169933,0.800362,0.691585,0.734343,0.365929,0.03065,0.448704,0.292586,0.25579,0.70475,0.484468,0.841127,0.807153,0.506557,0.299901,0.872129,0.81276,0.230842,0.681845,0.631678,0.495765,0.575957,0.441543,0.410415,0.251783,0.457807,0.549751,0.822437,0.130591,0.738876,0.0818709,0.864683,0.975641,0.768508,0.83514,0.706976,0.145306,0.951621,0.167574,0.611901,0.811597,0.0513658,0.17244,0.343073,0.702292,0.780284,0.314822,0.422147,0.11517,0.0285587,0.954305,0.864182,0.840874,0.128011,0.97462,0.539075,0.976908,0.939092,0.245114,0.896227,0.577257,0.0933107,0.805814,0.941571,0.0975379,0.150353,0.319415,0.203953,0.643133,0.0823339,0.85466,0.302099,0.937948,0.0653697,0.23811,0.22815,0.369825,0.0291634,0.746733,0.879829,0.640187,0.474355,0.952128,0.989245,0.484778,0.533636,0.610302,0.929713,0.113906,0.388691,0.514975,0.861548,0.628168,0.163358,0.529684,0.832872,0.418659,0.951356,0.405109,0.677361,0.231,0.560387,0.0672376,0.0188518,0.642866,0.314087,0.322954,0.401751,0.00392538,0.791544,0.544485,0.456546,0.435965,0.962902,0.664584,0.153734,0.212871,0.72848,0.80055,0.450265,0.553533,0.795018,0.736138,0.461517,0.712327,0.810531,0.940775,0.811409,0.961901,0.177989,0.0985307,0.244298,0.16834,0.0861325,0.760917,0.900925,0.887541,0.990922,0.955152,0.352677,0.809131,0.325506,0.053255,0.899832,0.249096,0.349983,0.152888,0.951425,0.938913,0.589194,0.612297,0.486796,0.210517,0.405118,0.96346,0.759403,0.375519,0.16676,0.211012,0.636055,0.781628,0.165552,0.54873,0.664163,0.146767,0.0893254,0.706837,0.293531,0.620087,0.0540491,0.333645,0.294079,0.993686,0.933679,0.225917,0.468682,0.169553,0.765186,0.401728,0.147277,0.0270133,0.812178,0.888335,0.217016,0.495917,0.760044,0.59511,0.78202,0.947635,0.200637,0.984808,0.795342,0.466416,0.525664,0.727657,0.0753657,0.557411,0.691273,0.920127,0.301127,0.539521,0.973373,0.59806,0.762586,0.340528,0.134892,0.350457,0.446057,0.40448,0.351513,0.544289,0.178275,0.316981,0.319614,0.975248,0.83368,0.348484,0.0729296,0.693947,0.892534,0.481596,0.77078,0.779042,0.669829,0.124058,0.365686,0.50403,0.180716,0.986638,0.269845,0.547315,0.407576,0.781641,0.111949,0.835923,0.182026,0.052808,0.718783,0.659325,|0.508777,0.22945,0.603602,0.535001,0.851766,0.968334,0.446047,0.4385,0.808042,0.825716,0.555024,0.595555,0.670466,0.844938,0.832559,0.0692679,0.695219,0.087435,0.766909,0.310543,0.925602,0.567787,0.72583,0.994853,0.495832,0.594781,0.82373,0.562755,0.327722,0.619336,0.293712,0.676665,0.242353,0.730705,0.15476,0.825056,0.432429,0.168181,0.42362,0.704735,0.973382,0.626183,0.15935,0.157637,0.557641,0.156477,0.988582,0.860129,0.605487,0.37033,0.190376,0.310187,0.157572,0.0291259,0.556494,0.385141,0.14885,0.763691,0.482431,0.77043,0.932541,0.303911,0.63085,0.462445,0.750209,0.893564,0.435933,0.827055,0.101629,0.57928,0.555173,0.18434,0.351536,0.678682,0.593362,0.866392,0.234428,0.764905,0.0463744,0.404877,0.0407934,0.647225,0.576272,0.143958,0.840544,0.517008,0.442439,0.922237,0.520649,0.0324205,0.704174,0.332804,0.262537,0.885497,0.652633,0.663288,0.189607,0.57102,0.774918,0.295026,0.364735,0.977978,0.115902,0.461964,0.598491,0.844613,0.326359,0.461879,0.0533198,0.573026,0.178222,0.336829,0.753172,0.0967976,0.376842,0.687177,0.150506,0.703277,0.884601,0.407692,0.225296,0.478767,0.291992,0.565675,0.22687,0.105813,0.306169,0.866958,0.75391,0.792861,0.14253,0.0479053,0.740303,0.150696,0.737475,0.485521,0.963809,0.744745,0.311867,0.941741,0.028192,0.72244,0.291979,0.837053,0.666182,0.0357631,0.216397,0.40863,0.27193,0.8899,0.339073,0.31307,0.106068,0.605916,0.741515,0.97768,0.141494,0.514988,0.217481,0.82383,0.826604,0.894581,0.753668,0.650356,0.225381,0.0811448,0.665615,0.0709337,0.437981,0.860068,0.931935,0.637646,0.635599,0.452958,0.082305,0.262532,0.686921,0.145052,0.951339,0.620933,0.86003,0.954493,0.678665,0.463542,0.977778,0.478351,0.7534,0.894905,0.49727,0.57676,0.102877,0.0389336,0.219692,0.647863,0.660284,0.47567,0.627565,0.501923,0.478806,0.975257,0.687947,0.44106,0.20845,0.673099,0.961629,0.756894,0.0736743,0.99519,0.789629,0.365219,0.84718,0.619764,0.757594,0.631774,0.15663,0.189514,0.823805,0.703688,0.184164,0.0214864,0.645647,0.463879,0.229729,0.16311,0.470873,0.57228,0.066541,0.97251,0.756339,0.745877,0.0799628,0.943971,0.38933,0.290793,0.28586,0.0118719,0.266462,0.684267,0.215763,0.026341,0.766252,0.695219,0.779993,0.306404,0.645248,0.223329,0.928414,0.305051,0.197046,0.00700206,0.915843,0.77777,0.422039,0.563419,0.376886,0.305808,0.316475,0.01781,0.615276,0.774598,0.0133714,0.129447,0.812883,0.637955,0.140705,0.668456,0.755461,0.256481,0.367634,0.797989,0.0140055,0.710792,0.203421,0.805504,0.659417,0.79202,0.284212,0.70331,0.0697549,0.811304,0.958732,0.927583,0.876389,0.186792,0.0764933,0.313697,0.0287266,0.87144,0.873127,0.169651,0.116955,0.0381612,0.464302,0.359672,0.556482,0.0307986,0.703046,0.0729393,0.715811,0.32765,0.65432,0.774479,0.640815,0.814967,0.867192,0.606255,0.769306,0.38234,0.610883,0.905418,0.172912,0.0697721,0.987731,0.164585,0.27031,0.303894,0.278405,0.197007,0.525308,0.632761,0.0756613,0.67949,0.958811,0.634583,0.427351,0.654113,0.552968,0.607576,0.842462,0.416324,0.158245,0.749112,0.0974714,0.477611,0.361441,0.373692,0.74897,0.744076,0.162052,0.487963,0.0464749,0.723281,0.497535,0.753435,0.566899,0.739077,0.312753,0.126699,0.43327,0.946221,0.534574,0.157929,0.71861,0.559703,0.431265,0.379807,0.894983,0.929054,0.751581,0.500292,0.440837,0.266721,0.0322867,0.819804,0.924003,0.0121704,0.744365,0.843158,0.459694,0.858524,0.0982883,0.109243,0.612684,0.79287,0.87188,0.885056,0.967053,0.930124,0.78603,0.976855,0.802567,0.578503,0.304176,0.795387,0.132877,0.567229,0.294995,0.589282,0.900494,0.847164,0.738541,0.930321,0.493908,0.349093,0.404331,0.0925432,0.744246,0.530139,0.542317,0.989269,0.242608,0.808507,0.233017,0.0289749,0.881117,0.363608,0.327741,0.769102,0.569769,0.673895,0.884299,0.25853,0.000160217,0.497684,0.213944,0.219412,0.0655173,0.413266,0.852913,0.882527,0.739006,0.372928,0.11552,0.934002,0.470616,0.0171835,0.301962,0.769833,0.384118,0.75424,0.894069,0.596597,0.684441,0.44709,0.682347,0.480609,0.135043,0.408029,0.47413,0.810921,0.197882,0.0070945,0.777278,0.933825,0.890466,0.224896,0.77667,0.645982,0.342605,0.0736387,0.612505,0.851106,0.606285,0.929576,0.361891,0.832111,0.13576,0.943808,0.880899,0.549791,0.759236,0.683458,0.416741,0.979283,0.382038,0.178202,0.014109,0.400203,0.0484197,0.515695,0.190607,0.743074,0.171219,0.780775,0.839819,0.632287,0.660032,0.856184,0.91604,0.0676806,0.489947,0.319797,0.552337,0.946314,0.795648,0.616659,0.0677149,0.301288,0.599944,0.719542,0.370593,0.782826,0.18045,0.788285,0.819542,0.047879,0.415441,0.460476,0.131404,0.435194,0.478315,0.258743,0.956772,0.835518,0.147125,0.107245,0.579926,0.0487197,0.0281452,0.890519,0.333069,0.306997,0.714296,0.391413,0.0271031,0.0633153,0.773013,0.329639,0.336152,0.405701,0.266344,0.787564,0.59865,0.888974,0.0737876,0.83992,0.630429,0.42306,0.736782,0.0311315,0.935831,0.0829988,0.447316,0.402909,0.188213,0.568895,0.694026,0.984339,0.873132,0.120465,0.800862,0.398828,0.549179,0.472761,0.97336,0.531481,0.371511,0.501784,0.948,0.310709,0.6102,0.895393,0.614591,0.0433924,0.83676,0.70482,0.254347,0.23177,0.96169,0.983467,0.675051,0.0635986,0.427275,0.0121228,0.0463564,0.906178,0.938808,0.077933,0.683365,0.800026,0.181475,0.688983,0.708291,0.936947,0.793723,0.0622013,0.762635,0.745517,0.855503,0.764404,0.0100629,0.371525,0.15928,0.349994,0.475185,0.167393,0.767476,0.317265,0.805756,0.84154,0.196737,0.728781,0.484282,0.0540845,0.780571,0.998608,0.541637,0.583207,0.857149,0.285994,0.657494,0.965316,0.121135,0.0297169,0.0171626,0.227353,0.285326,0.457088,0.522735,0.995083,0.0756064,0.108712,0.0624173,0.156364,0.85303,0.459146,0.57166,0.108511,0.399857,0.455544,0.582816,0.716559,0.336868,0.409735,0.0780746,0.910977,0.617685,0.848763,0.878758,0.318328,0.904905,0.376585,0.575968,0.372324,0.0905621,0.0721159,0.279062,0.17738,0.639901,0.613995,0.461895,0.571868,0.092878,0.146231,0.409276,0.56814,0.0709395,0.245772,0.659973,0.570413,0.488804,0.166887,0.0673324,0.17046,0.310124,0.169542,0.421297,0.68322,0.206133,0.965056,0.865595,0.754784,0.272301,0.435138,0.980534,0.663028,0.318997,0.434519,0.840494,0.0818377,0.1535,0.555674,0.564132,0.828097,0.125632,0.0547373,0.209371,0.801763,0.47177,0.231545,0.749661,0.293591,0.672732,0.8877,0.737301,0.140589,0.730016,0.322183,0.959441,0.215291,0.184422,0.322833,0.408863,0.0836005,0.519738,0.739499,0.518204,0.417976,0.130307,0.263788,0.0176621,0.127578,0.608431,0.504371,0.07928,0.744459,0.754221,0.0144409,0.926427,0.721458,0.679698,0.70185,0.0184407,0.396013,0.93499,0.423802,0.174469,0.0615824,0.804504,0.901314,0.652914,0.373768,0.617747,0.458368,0.261894,0.899431,0.259486,0.878416,0.548099,0.776484,0.0336786,0.806119,0.92718,0.200624,0.532882,0.339216,0.989477,0.920895,0.711686,0.394316,0.390078,0.184447,0.95029,0.539912,0.813715,0.0471259,0.354482,0.790384,0.117553,0.368241,0.670411,0.00228357,0.216727,0.454577,0.111669,0.0540574,0.275746,0.26935,0.2635,0.341504,0.714616,0.130994,0.131486,0.385966,0.752874,0.432612,0.658113,0.799773,0.297914,0.858204,0.284921,0.640135,0.426759,0.826621,0.938757,0.89026,0.427859,0.554783,0.553679,0.469398,0.262769,0.681467,0.0223014,0.550881,0.722229,0.501105,0.432782,0.274964,0.915713,0.635667,0.454542,0.0271652,0.280097,0.410731,0.0599369,0.854934,0.804592,0.57859,0.512848,0.110494,0.784738,0.319582,0.902088,0.262206,0.560361,0.898061,0.278948,0.4849,0.688795,0.71765,0.500347,0.235223,0.373311,0.317844,0.762751,0.20005,0.350061,0.815677,0.463319,0.058024,0.690454,0.20575,0.530549,0.153624,0.711127,0.697261,0.304028,0.470158,0.678449,0.142899,0.26956,0.00285751,0.0817749,0.321638,0.891821,0.526697,0.592722,0.989408,0.125893,0.767153,0.727967,0.854193,0.051168,0.917206,0.521787,0.134082,0.73623,0.679272,0.172694,0.323358,0.675927,0.775063,0.607821,0.505346,0.266414,0.906243,0.174078,0.298585,0.288922,0.478479,0.165765,0.224586,0.0431663,0.132457,0.164902,0.5077,0.875206,0.00651109,0.417037,0.457972,0.86149,0.915281,0.483334,0.967133,0.515765,0.420898,0.261076,0.191196,0.863827,0.0390435,0.789317,0.377441,0.241414,0.0259869,0.242259,0.47308,0.94316,0.287104,0.795685,0.831245,0.388005,0.987285,0.875441,0.283618,0.8286,0.868688,0.74689,0.0543476,0.788205,0.305311,0.466953,0.526853,0.146005,0.674784,0.744619,0.0931161,0.331192,0.700365,0.419658,0.522451,0.618291,0.578287,0.604015,0.271315,0.990573,0.862766,0.676429,0.409401,0.630298,0.706513,0.88123,0.495846,0.950137,0.420956,0.950884,0.42327,0.96377,0.739551,0.761557,0.750849,0.400726,0.523039,0.173632,0.768527,0.145098,0.750419,0.898112,0.514056,0.303231,0.778285,0.400823,0.0538872,0.680404,0.954769,0.821672,0.177051,0.955943,0.443395,0.418713,0.521217,0.709155,0.0863413,0.179421,0.795935,0.663791,0.0445559,0.930893,0.329939,0.657817,0.978936,0.935254,0.128809,0.789999,0.454182,0.686499,0.898949,0.464408,0.123675,0.962716,0.348758,0.524545,0.165832,0.481309,0.801976,0.0286334,0.0264378,0.527814,0.971096,0.390998,0.141625,0.58985,0.477497,0.138608,0.0280519,0.920296,0.730981,0.583721,0.16677,0.368006,0.363774,0.210342,0.109883,0.214752,0.870044,0.757382,0.171296,0.697966,0.435693,0.35647,0.0153326,|0.386447,0.389941,0.831614,0.135686,0.878683,0.528634,0.464555,0.688356,0.881442,0.176889,0.0376211,0.124982,0.360408,0.933179,0.82243,0.741686,0.261779,0.151305,0.775801,0.865956,0.763863,0.317815,0.595423,0.630874,0.848826,0.87042,0.217635,0.931165,0.741318,0.152964,0.715821,0.202852,0.106629,0.319697,0.678032,0.532228,0.160154,0.993264,0.427233,0.239788,0.893792,0.209523,0.442643,0.942972,0.700071,0.563755,0.671011,0.266867,0.333931,0.933646,0.310387,0.0253717,0.806507,0.0352009,0.889287,0.185637,0.437878,0.464643,0.125187,0.23857,0.477661,0.48877,0.288555,0.811021,0.710023,0.537556,0.0598953,0.539462,0.698516,0.747174,0.724024,0.651329,0.854588,0.476488,0.732333,0.925944,0.141705,0.0408554,0.0534227,0.450671,0.374161,0.205141,0.956154,0.397598,0.968463,0.513136,0.906758,0.524566,0.431856,0.491561,0.974024,0.783315,0.0653163,0.10318,0.252436,0.864532,0.46273,0.461936,0.538003,0.27342,0.223671,0.585511,0.305153,0.751265,0.63538,0.871242,0.794435,0.930451,0.130992,0.815882,0.128304,0.590286,0.909314,0.251075,0.297703,0.107851,0.667286,0.18205,0.573355,0.507763,0.0748506,0.552842,0.922576,0.583302,0.570461,0.739009,0.0573783,0.989468,0.0559849,0.891719,0.731068,0.729039,0.430834,0.401753,0.746744,0.317958,0.294708,0.410279,0.164051,0.731581,0.181032,0.415065,0.448241,0.493542,0.285746,0.198116,0.782353,0.664663,0.694275,0.288136,0.143512,0.467778,0.140274,0.781565,0.150731,0.141903,0.878733,0.907789,0.904522,0.546902,0.458723,0.906483,0.173993,0.276145,0.393755,0.190458,0.0719102,0.881047,0.787289,0.572279,0.773856,0.0243568,0.0482446,0.00307554,0.69023,0.249914,0.107534,0.415597,0.166986,0.24378,0.280712,0.34086,0.209366,0.325378,0.0411119,0.973192,0.0718011,0.614967,0.964317,0.161368,0.741411,0.423401,0.806084,0.537318,0.443957,0.46116,0.938508,0.195602,0.128674,0.0027957,0.735064,0.670055,0.842575,0.846133,0.76047,0.643776,0.0578126,0.933971,0.923935,0.360093,0.853877,0.331087,0.115863,0.438298,0.785849,0.0170853,0.280854,0.250727,0.294176,0.570151,0.514651,0.902999,0.0867357,0.833377,0.294611,0.150917,0.125055,0.872795,0.0448756,0.0324574,0.77879,0.921886,0.814268,0.371455,0.120533,0.706791,0.234892,0.275131,0.0245014,0.574551,0.791242,0.963207,0.0334054,0.844091,0.800074,0.307721,0.867488,0.524355,0.375423,0.443901,0.371914,0.999673,0.0315426,0.89988,0.948564,0.16131,0.545576,0.704064,0.723969,0.00623065,0.674545,0.250637,0.369789,0.921706,0.0587503,0.859282,0.0448966,0.262451,0.264141,0.0721062,0.900132,0.860815,0.928353,0.494945,0.039042,0.817491,0.622542,0.111389,0.983549,0.907132,0.33709,0.170063,0.599494,0.323508,0.261498,0.416629,0.728779,0.029982,0.350534,0.368073,0.228462,0.459946,0.751373,0.636441,0.424356,0.761358,0.572015,0.810955,0.350635,0.595771,0.305717,0.499637,0.190975,0.0797353,0.928441,0.0458989,0.673272,0.0961701,0.565764,0.732449,0.0509776,0.422397,0.00190639,0.399358,0.139273,0.939166,0.37467,0.868414,0.589521,0.78035,0.0658715,0.0460898,0.619597,0.0711616,0.00546885,0.0342324,0.650102,0.874403,0.516115,0.95007,0.920358,0.66492,0.916286,0.0328797,0.0395306,0.229281,0.36967,0.401052,0.983524,0.702572,0.40354,0.311627,0.54543,0.369926,0.451967,0.211106,0.0701559,0.443873,0.189105,0.467451,0.794259,0.603794,0.447499,0.803729,0.986761,0.0998261,0.920704,0.707736,0.104554,0.0411673,0.0293614,0.850175,0.176935,0.633884,0.0963386,0.316943,0.863,0.120557,0.726149,0.170423,0.402561,0.363598,0.195125,0.644185,0.308845,0.918233,0.219597,0.986433,0.00495917,0.0483957,0.559712,0.134455,0.15886,0.507363,0.00633073,0.908457,0.765882,0.904266,0.765519,0.188112,0.542777,0.418461,0.676491,0.548146,0.303365,0.390255,0.421932,0.938441,0.136263,0.782059,0.588068,0.286923,0.680625,0.530114,0.279426,0.285045,0.886319,0.149591,0.374283,0.614638,0.785838,0.0993456,0.393942,0.771947,0.383268,0.73187,0.441636,0.961881,0.387981,0.512146,0.490738,0.87041,0.671562,0.825188,0.741825,0.448655,0.532105,0.0893914,0.967884,0.831456,0.66107,0.852758,0.309631,0.202424,0.232974,0.111215,0.0804867,0.26377,0.319533,0.107124,0.691702,0.962114,0.35824,0.122163,0.348509,0.279051,0.850241,0.819032,0.925089,0.796911,0.0082162,0.0903953,0.732942,0.916646,0.246922,0.188601,0.0978062,0.818323,0.0143033,0.60732,0.714439,0.735824,0.692214,0.835038,0.473272,0.647762,0.0154264,0.32111,0.365803,0.628042,0.740844,0.210259,0.711611,0.619574,0.0552625,0.723438,0.0619828,0.866158,0.381006,0.780907,0.146026,0.351181,0.10264,0.507269,0.294113,0.0815107,0.908277,0.719649,0.880485,0.65616,0.902377,0.147654,0.382738,0.882124,0.485314,0.117185,0.957171,0.920847,0.261471,0.721268,0.394944,0.243901,0.215984,0.762567,0.664766,0.656817,0.299003,0.610352,0.806374,0.26699,0.968005,0.616622,0.117439,0.0379489,0.286573,0.139768,0.995938,0.114777,0.487866,0.517582,0.164942,0.0291293,0.857541,0.339812,0.186815,0.854909,0.673754,0.360277,0.152488,0.208107,0.959621,0.869843,0.30603,0.638245,0.511404,0.683029,0.0511699,0.943872,0.344416,0.449638,0.988409,0.510597,0.0636781,0.232639,0.952349,0.317882,0.658339,0.555192,0.631073,0.743497,0.648141,0.627587,0.689142,0.228688,0.167197,0.836036,0.147765,0.804405,0.79507,0.130029,0.592692,0.0873404,0.0612574,0.671068,0.63013,0.0670965,0.161912,0.662979,0.637191,0.676838,0.344149,0.287184,0.385168,0.264324,0.173396,0.89372,0.197825,0.265564,0.0407166,0.714759,0.896668,0.578496,0.167214,0.15648,0.69618,0.0890099,0.398103,0.0562366,0.309713,0.337503,0.161876,0.50632,0.819636,0.0624919,0.488347,0.999602,0.530093,0.263774,0.0377463,0.329685,0.191602,0.657738,0.998441,0.109554,0.241653,0.838134,0.382823,0.312121,0.524339,0.943377,0.515314,0.825402,0.74035,0.895431,0.203748,0.398225,0.904485,0.107348,0.0898404,0.223387,0.764162,0.640887,0.51518,0.283216,0.941673,0.75942,0.506648,0.240564,0.0227497,0.744705,0.453906,0.814335,0.3039,0.359114,0.224725,0.0117155,0.598785,0.878274,0.162504,0.404083,0.0918934,0.778047,0.183914,0.289288,0.543251,0.622042,0.300217,0.44916,0.0198292,0.723956,0.139521,0.782081,0.105612,0.590665,0.824522,0.469221,0.214138,0.930602,0.803832,0.864316,0.608009,0.322234,0.272501,0.0818607,0.223348,0.386513,0.92062,0.723226,0.774031,0.331189,0.300641,0.544736,0.832839,0.251122,0.677389,0.831164,0.235101,0.0908478,0.238366,0.848382,0.846997,0.218605,0.796769,0.955456,0.70263,0.498478,0.277566,0.400253,0.0466847,0.946546,0.868321,0.687659,0.948381,0.984089,0.741753,0.937484,0.229775,0.467017,0.166926,0.604827,0.79651,0.897808,0.548844,0.820161,0.0661176,0.833211,0.756224,0.345393,0.455828,0.0153244,0.942007,0.871225,0.593992,0.608207,0.266007,0.976346,0.347823,0.751507,0.498172,0.787117,0.147248,0.737717,0.265906,0.280142,0.299485,0.868999,0.241805,0.597948,0.758299,0.898887,0.798769,0.71352,0.216549,0.473317,0.234953,0.21649,0.690708,0.644292,0.168439,0.682708,0.984342,0.588374,0.276834,0.42325,0.528907,0.908854,0.426047,0.75769,0.266849,0.216194,0.926702,0.014163,0.387026,0.796214,0.731452,0.650124,0.963947,0.0798315,0.220774,0.167789,0.641718,0.592425,0.902782,0.533813,0.397547,0.29437,0.944029,0.217612,0.588109,0.919549,0.641392,0.843879,0.295746,0.19177,0.266677,0.275464,0.175139,0.733831,0.796306,0.886706,0.0646622,0.602476,0.814297,0.886272,0.382959,0.276182,0.61561,0.637845,0.955451,0.685517,0.232526,0.818758,0.96761,0.917381,0.283039,0.613321,0.326728,0.308455,0.68829,0.269238,0.810096,0.08265,0.779543,0.463046,0.834785,0.0748863,0.920301,0.380913,0.395995,0.451915,0.613492,0.932337,0.612351,0.272151,0.119905,0.895674,0.864494,0.643599,0.135803,0.234635,0.912681,0.131692,0.881186,0.0449323,0.525759,0.651418,0.867347,0.334515,0.62835,0.951734,0.430819,0.560409,0.120704,0.65114,0.327648,0.425352,0.906125,0.154905,0.336671,0.796177,0.51232,0.657095,0.983293,0.742995,0.446492,0.0425342,0.123858,0.13409,0.530142,0.163284,0.0952834,0.257239,0.0485975,0.610789,0.202875,0.624002,0.214864,0.0219932,0.856358,0.268317,0.421669,0.504311,0.246033,0.691391,0.901567,0.718399,0.834219,0.321455,0.14645,0.0500833,0.992557,0.34457,0.623448,0.725036,0.225768,0.781134,0.059919,0.274328,0.947349,0.485608,0.64465,0.718196,0.280586,0.424412,0.504849,0.794833,0.967191,0.201727,0.861069,0.202784,0.392038,0.598331,0.35745,0.242082,0.44707,0.410037,0.967512,0.678084,0.565865,0.977861,0.0792023,0.712369,0.0299698,0.407275,0.0811495,0.989598,0.73408,0.835215,0.823251,0.968929,0.742806,0.73044,0.218716,0.555712,0.413345,0.542376,0.931861,0.884071,0.0340403,0.312059,0.661873,0.0666064,0.158054,0.505058,0.861553,0.561805,0.132368,0.340338,0.763566,0.521374,0.769927,0.860207,0.662435,0.813945,0.493484,0.85357,0.17812,0.146721,0.424834,0.767823,0.966618,0.061213,0.54619,0.997307,0.87685,0.764748,0.958243,0.128255,0.469578,0.954091,0.125718,0.726801,0.354403,0.720682,0.0972623,0.309002,0.255655,0.0610834,0.568649,0.488166,0.526606,0.653567,0.342658,0.355393,0.685022,0.375915,0.0203629,0.0856898,0.165869,0.780195,0.823082,0.473854,0.594356,0.469879,0.870532,0.818391,0.8305,0.120272,0.91981,0.126129,0.133533,0.71371,0.979884,0.714233,0.951269,0.15115,0.731769,0.311405,0.524814,0.316212,0.899212,0.433562,0.898909,0.574254,0.0264946,0.107332,0.15603,0.958392,0.0802565,0.928624,|0.766126,0.291042,0.754767,0.676984,0.156269,0.447673,0.917729,0.0987327,0.754003,0.794445,0.873914,0.666237,0.741094,0.514821,0.713033,0.17345,0.0584313,0.257795,0.269523,0.752897,0.737867,0.259666,0.544646,0.957376,0.776934,0.55934,0.364363,0.0923864,0.79891,0.497368,0.561475,0.480724,0.755685,0.941045,0.172262,0.331687,0.137693,0.99602,0.944314,0.127361,0.586239,0.841639,0.210822,0.320197,0.830734,0.825562,0.092143,0.107807,0.477022,0.312728,0.341776,0.39374,0.253755,0.985551,0.579042,0.349648,0.658859,0.826535,0.962881,0.25683,0.168887,0.207174,0.0280348,0.284016,0.173759,0.953233,0.794906,0.574479,0.111084,0.265752,0.143624,0.713274,0.460119,0.616525,0.852422,0.805844,0.938817,0.43546,0.654168,0.313344,0.307747,0.105631,0.0974262,0.25796,0.582829,0.946501,0.147926,0.781677,0.996713,0.730204,0.205698,0.471079,0.953519,0.541251,0.0537831,0.468693,0.270821,0.0640936,0.756954,0.0757436,0.377747,0.46542,0.643241,0.224862,0.29123,0.939103,0.134189,0.931833,0.777089,0.508617,0.583787,0.1743,0.0449389,0.856375,0.165136,0.968753,0.895401,0.795275,0.881638,0.591952,0.600862,0.582684,0.0727955,0.507641,0.931468,0.123503,0.0558006,0.479548,0.187847,0.495946,0.587678,0.713793,0.535133,0.754115,0.310471,0.948038,0.816703,0.227046,0.212885,0.566009,0.65038,0.405685,0.82539,0.546692,0.802656,0.979445,0.900573,0.311001,0.153156,0.0780972,0.98413,0.449773,0.019796,0.242136,0.241686,0.194683,0.151232,0.827974,0.381085,0.00896871,0.256773,0.227935,0.506705,0.117408,0.775822,0.963543,0.494166,0.917595,0.521812,0.192202,0.681849,0.677195,0.000636876,0.649541,0.325833,0.519489,0.77657,0.0489953,0.758992,0.54771,0.694293,0.13533,0.112152,0.482793,0.275895,0.218046,0.762921,0.0662539,0.275355,0.0693039,0.459127,0.0347723,0.514566,0.145064,0.350947,0.165147,0.211969,0.35928,0.603558,0.845717,0.320854,0.524049,0.136194,0.669054,0.291651,0.0690821,0.753712,0.0657762,0.983467,0.37343,0.177216,0.592291,0.555428,0.0868226,0.882491,0.389365,0.868061,0.983311,0.014269,0.765341,0.658643,0.562566,0.735714,0.376056,0.00247329,0.0190845,0.576625,0.343822,0.788325,0.65353,0.115994,0.170711,0.570734,0.444888,0.0602115,0.554595,0.163757,0.823262,0.812694,0.653186,0.703038,0.307888,0.149465,0.389406,0.517117,0.312513,0.503326,0.566811,0.211228,0.803969,0.4793,0.937809,0.135032,0.752074,0.496511,0.49583,0.46228,0.231916,0.996715,0.155918,0.787711,0.629204,0.633262,0.192896,0.537697,0.386066,0.0960581,0.941828,0.187508,0.821812,0.453969,0.806574,0.256985,0.982319,0.246896,0.195262,0.638069,0.258563,0.199112,0.405931,0.232555,0.5261,0.0868902,0.948141,0.856039,0.216541,0.203201,0.0613358,0.981083,0.532308,0.296042,0.23219,0.924133,0.272136,0.801593,0.163669,0.264156,0.239296,0.976524,0.0138166,0.444842,0.383013,0.30484,0.722767,0.569247,0.543098,0.116305,0.662276,0.303711,0.342386,0.58667,0.994893,0.554291,0.492131,0.0853587,0.0432994,0.472527,0.129596,0.560384,0.372048,0.899457,0.0142763,0.517496,0.96844,0.643148,0.468739,0.358734,0.905245,0.870675,0.129866,0.2277,0.851403,0.611739,0.0184889,0.716612,0.334457,0.980272,0.718435,0.693341,0.984091,0.120935,0.0250154,0.784436,0.07166,0.60819,0.268533,0.95739,0.679842,0.861144,0.985746,0.34134,0.248227,0.021945,0.0420422,0.303552,0.172546,0.661769,0.966876,0.7675,0.37946,0.937985,0.512408,0.318578,0.982792,0.626148,0.211795,0.110433,0.615149,0.37571,0.467584,0.689918,0.355036,0.706121,0.619693,0.51265,0.391204,0.984598,0.597675,0.588842,0.443861,0.00900722,0.690782,0.333428,0.795571,0.0313072,0.648053,0.255704,0.199257,0.274498,0.608485,0.465766,0.522249,0.202892,0.246794,0.506346,0.173677,0.27372,0.68016,0.666868,0.315165,0.0519282,0.906714,0.553498,0.798418,0.691735,0.431798,0.285014,0.635367,0.235147,0.363685,0.619979,0.960641,0.433049,0.501862,0.15586,0.707449,0.120059,0.0358859,0.418894,0.870842,0.193797,0.202627,0.644165,0.792356,0.0435563,0.44257,0.507859,0.57336,0.855067,0.83042,0.292636,0.0688882,0.990223,0.308133,0.0869505,0.0814137,0.38146,0.817715,0.646526,0.0465261,0.129556,0.307534,0.663677,0.634457,0.66921,0.528906,0.496572,0.926345,0.583749,0.0994055,0.328937,0.390193,0.190706,0.0487633,0.306546,0.700434,0.729274,0.571679,0.0206805,0.730545,0.80293,0.882509,0.976046,0.150642,0.290018,0.176561,0.642292,0.568363,0.941812,0.954326,0.854669,0.23427,0.191456,0.333733,0.59236,0.811234,0.808449,0.459447,0.654924,0.786917,0.0581532,0.754739,0.224448,0.990334,0.0507408,0.633435,0.944371,0.762727,0.93263,0.498841,0.974835,0.891905,0.588036,0.551426,0.0683174,0.56462,0.820469,0.129746,0.608433,0.910529,0.697324,0.145277,0.574078,0.731975,0.532499,0.251373,0.0367216,0.184231,0.124238,0.96423,0.669034,0.666133,0.130904,0.0532615,0.404888,0.288716,0.987024,0.575827,0.336197,0.277812,0.884997,0.10097,0.979792,0.825516,0.143721,0.867358,0.194535,0.768867,0.114037,0.0569144,0.380707,0.649568,0.155821,0.451564,0.117834,0.261882,0.731645,0.150837,0.942887,0.138259,0.670306,0.98201,0.578642,0.861037,0.686824,0.430995,0.866746,0.435645,0.592015,0.153601,0.70853,0.70877,0.0912953,0.0152503,0.761447,0.570413,0.91381,0.850854,0.512202,0.544188,0.807642,0.988321,0.155187,0.307266,0.0532436,0.203125,0.0650597,0.110973,0.987402,0.871673,0.0371989,0.115032,0.985004,0.266997,0.307848,0.0408721,0.32442,0.742599,0.7458,0.00485909,0.190101,0.182161,0.40967,0.835532,0.388386,0.28756,0.0886517,0.826098,0.442643,0.627896,0.764926,0.541028,0.0901778,0.798348,0.505998,0.78319,0.9103,0.22756,0.88779,0.731337,0.981166,0.716548,0.0817934,0.23675,0.0815474,0.517054,0.122954,0.199841,0.295774,0.590708,0.506872,0.74399,0.645226,0.405461,0.66327,0.841863,0.616683,0.173176,0.268239,0.626443,0.412701,0.0984389,0.254872,0.45213,0.731472,0.176231,0.986644,0.253289,0.0116979,0.777178,0.944937,0.24562,0.428198,0.535702,0.0738052,0.346389,0.499758,0.538729,0.521638,0.281843,0.882732,0.63306,0.260122,0.17046,0.43267,0.178783,0.0598142,0.745972,0.409491,0.679867,0.658081,0.620667,0.282684,0.360297,0.770464,0.386289,0.778759,0.112504,0.48551,0.698332,0.542307,0.174636,0.269409,0.021381,0.769232,0.52328,0.567083,0.401746,0.443137,0.898091,0.00424778,0.398241,0.277319,0.997006,0.435861,0.989217,0.109889,0.904561,0.182156,0.63169,0.106415,0.448116,0.997793,0.829716,0.512478,0.931908,0.131763,0.154502,0.0458998,0.681254,0.860545,0.19896,0.265527,0.453329,0.307349,0.722109,0.880672,0.923327,0.39611,0.565912,0.411982,0.844927,0.378405,0.467341,0.665911,0.484868,0.633567,0.927075,0.159,0.6233,0.382892,0.499102,0.287142,0.196506,0.431493,0.804503,0.82742,0.768054,0.572736,0.253724,0.634213,0.935648,0.362501,0.216132,0.931943,0.779219,0.311535,0.975295,0.669266,0.784132,0.778387,0.204442,0.385396,0.968898,0.272922,0.940473,0.859267,0.839644,0.9361,0.424895,0.323865,0.345495,0.503515,0.391968,0.427004,0.186958,0.773603,0.447161,0.264302,0.882763,0.684596,0.760256,0.65168,0.126699,0.899656,0.621607,0.53566,0.617747,0.220374,0.456279,0.671402,0.621084,0.297674,0.193318,0.829812,0.210396,0.673914,0.69565,0.157151,0.264288,0.79782,0.858015,0.966806,0.835639,0.499913,0.339033,0.203931,0.858211,0.394613,0.056742,0.0670128,0.577693,0.428873,0.388421,0.510849,0.71163,0.308221,0.667612,0.232362,0.665555,0.93841,0.174654,0.923855,0.150531,0.11065,0.798006,0.678221,0.472143,0.634602,0.176868,0.684361,0.112261,0.662088,0.765449,0.164225,0.816359,0.660033,0.794968,0.111633,0.497536,0.898009,0.349714,0.113244,0.0829355,0.428116,0.861827,0.672137,0.0993459,0.211525,0.789369,0.419772,0.540602,0.887749,0.133593,0.623314,0.489617,0.0118625,0.628364,0.537328,0.301341,0.627071,0.66705,0.863876,0.872099,0.145713,0.919839,0.730372,0.998807,0.534786,0.965809,0.15252,0.867135,0.656376,0.192954,0.682418,0.95955,0.632965,0.723942,0.0332791,0.647185,0.48827,0.488555,0.711928,0.0315939,0.349555,0.455624,0.0852241,0.278251,0.569685,0.981245,0.795282,0.622315,0.328397,0.26955,0.597388,0.889603,0.0403809,0.608041,0.80227,0.813692,0.748371,0.9871,0.823816,0.684226,0.755862,0.400718,0.366694,0.905928,0.903893,0.991052,0.826054,0.926264,0.656357,0.692072,0.39027,0.581418,0.661525,0.399382,0.600826,0.984212,0.951651,0.000833213,0.738561,0.246459,0.924887,0.0966935,0.723297,0.502358,0.291076,0.508446,0.812667,0.221741,0.615794,0.178841,0.454669,0.730379,0.0829318,0.0514352,0.593426,0.0866966,0.588069,0.455081,0.396651,0.281975,0.680533,0.27194,0.321588,0.33465,0.536327,0.856746,0.00762981,0.564782,0.734064,0.570685,0.487613,0.834592,0.617675,0.637609,0.670205,0.0172253,0.598379,0.360387,0.97764,0.478425,0.71818,0.545662,0.993041,0.446107,0.00481355,0.301376,0.196652,0.761346,0.259803,0.110178,0.445833,0.903087,0.946135,0.342436,0.511779,0.409856,0.341396,0.717383,0.888066,0.602519,0.402939,0.965279,0.275692,0.679429,0.935645,0.799194,0.219766,0.894817,0.721172,0.378316,0.772293,0.350872,0.615508,0.591184,0.348024,0.159247,0.586397,0.154177,0.320249,0.219364,0.744758,0.846259,0.990692,0.890232,0.118422,0.809026,0.551748,0.389275,0.988296,0.141477,0.392911,0.132341,0.198991,0.754089,0.823936,0.890915,0.276657,0.540967,0.10041,0.840439,0.792741,0.0740287,0.5036,0.349372,0.185749,0.30168,|0.0792718,0.893603,0.650148,0.531981,0.501211,0.395658,0.103387,0.348909,0.729063,0.644199,0.833002,0.296977,0.195076,0.95492,0.250606,0.706977,0.445818,0.564777,0.6391,0.853383,0.645516,0.611417,0.937778,0.0267959,0.583767,0.729208,0.279893,0.0606724,0.161823,0.130498,0.00201124,0.875191,0.808474,0.0625794,0.349801,0.871256,0.476941,0.430622,0.107528,0.305807,0.467183,0.0248416,0.534078,0.704729,0.556897,0.214375,0.558316,0.720026,0.0600984,0.156925,0.586227,0.723123,0.152916,0.0961066,0.900562,0.589884,0.181671,0.261503,0.865831,0.286956,0.896637,0.330799,0.637099,0.910224,0.828428,0.930059,0.00407004,0.489682,0.721358,0.621943,0.600684,0.685495,0.30644,0.379242,0.846212,0.994611,0.566188,0.238089,0.548011,0.849192,0.50179,0.589254,0.214123,0.872781,0.110442,0.528399,0.59602,0.0992079,0.928258,0.62457,0.763101,0.401406,0.678318,0.975704,0.828332,0.375777,0.228478,0.309029,0.131159,0.770221,0.781149,0.0592228,0.463635,0.278776,0.814972,0.596193,0.710081,0.652835,0.484914,0.613099,0.219594,0.809883,0.0309673,0.145976,0.794329,0.215425,0.0103056,0.13568,0.504516,0.32625,0.136465,0.624836,0.78134,0.301262,0.394741,0.85423,0.928264,0.364757,0.732618,0.296245,0.665383,0.350764,0.540742,0.557691,0.557072,0.0713799,0.0707307,0.585839,0.704936,0.30586,0.667197,0.880789,0.692046,0.621933,0.978755,0.940041,0.892685,0.709246,0.307988,0.687463,0.629367,0.858858,0.293143,0.272275,0.934999,0.840267,0.916626,0.645742,0.302651,0.668187,0.706933,0.0675045,0.749297,0.279213,0.0654266,0.634652,0.718663,0.323702,0.526611,0.630578,0.813819,0.129333,0.925326,0.642333,0.738113,0.599165,0.796305,0.342168,0.480918,0.268618,0.276004,0.72766,0.322469,0.559635,0.371009,0.333116,0.504908,0.837374,0.901448,0.892167,0.626871,0.507631,0.017998,0.291731,0.776591,0.957452,0.929602,0.116549,0.115947,0.126487,0.724147,0.679868,0.538167,0.436268,0.225444,0.804601,0.398878,0.167355,0.353088,0.86594,0.269094,0.928419,0.642768,0.644151,0.248361,0.0912079,0.717225,0.00680602,0.169831,0.602264,0.202751,0.877527,0.867039,0.0249378,0.831007,0.746245,0.837611,0.896127,0.784291,0.7085,0.286338,0.825113,0.983723,0.417854,0.98208,0.881484,0.464936,0.224665,0.699643,0.640407,0.384709,0.0867037,0.891137,0.76414,0.355261,0.796067,0.582399,0.872375,0.611866,0.108666,0.872879,0.453849,0.243843,0.935586,0.782729,0.946889,0.0815321,0.98826,0.409022,0.526154,0.836084,0.626551,0.812099,0.42001,0.596136,0.569498,0.56623,0.16708,0.519664,0.821607,0.941024,0.630017,0.906768,0.339527,0.88848,0.446794,0.349268,0.540283,0.849445,0.73462,0.489857,0.319885,0.122369,0.43014,0.662865,0.983368,0.989026,0.86792,0.735571,0.739481,0.362201,0.499597,0.951808,0.175304,0.779396,0.0119885,0.243661,0.177076,0.72139,0.996214,0.108747,0.238878,0.161164,0.429718,0.493649,0.898371,0.626829,0.562209,0.7377,0.769773,0.162656,0.471118,0.512226,0.330775,0.29967,0.545135,0.0123165,0.799294,0.208437,0.238802,0.110623,0.92849,0.804243,0.441186,0.968996,0.535397,0.253778,0.811258,0.427017,0.999,0.254675,0.0392846,0.141006,0.0119516,0.865397,0.272006,0.829404,0.133682,0.257427,0.235676,0.0905346,0.448804,0.652623,0.776949,0.276229,0.895368,0.995098,0.291956,0.893097,0.907212,0.689135,0.600643,0.252582,0.763111,0.639783,0.355218,0.383773,0.28467,0.300095,0.58005,0.0469866,0.316118,0.470069,0.498656,0.163527,0.768837,0.625925,0.173497,0.573699,0.897961,0.988494,0.0561943,0.350653,0.608515,0.723973,0.895505,0.895439,0.350858,0.697064,0.266628,0.0623856,0.708475,0.563599,0.392496,0.809238,0.963623,0.874447,0.800546,0.1008,0.422705,0.806052,0.98032,0.409116,0.0380694,0.32,0.432263,0.278234,0.927244,0.0609624,0.888522,0.0800252,0.882097,0.67709,0.219279,0.454272,0.872068,0.745499,0.703431,0.469422,0.436301,0.433788,0.305613,0.770536,0.581722,0.934166,0.40812,0.0314555,0.84768,0.760915,0.25004,0.332257,0.211243,0.681349,0.497822,0.0671438,0.091006,0.0636373,0.159459,0.884956,0.0510253,0.237989,0.873827,0.851382,0.256079,0.211656,0.760874,0.148772,0.44632,0.00955003,0.258375,0.841381,0.666164,0.109217,0.755494,0.69005,0.735876,0.662844,0.340339,0.99065,0.738997,0.855439,0.53955,0.98413,0.230636,0.894246,0.181813,0.032908,0.204673,0.914997,0.237669,0.386384,0.479791,0.862068,0.380277,0.253866,0.850294,0.660045,0.46137,0.441706,0.137787,0.278602,0.763124,0.0300605,0.619628,0.566753,0.234823,0.17405,0.362795,0.60714,0.519119,0.486963,0.91397,0.427253,0.921822,0.895438,0.113589,0.418918,0.764337,0.303832,0.518105,0.488105,0.749874,0.780601,0.972678,0.805266,0.62776,0.304655,0.905273,0.372101,0.171509,0.616604,0.0473059,0.164786,0.445002,0.435559,0.584147,0.896018,0.418438,0.488692,0.283156,0.451599,0.0997219,0.233234,0.828964,0.189424,0.439789,0.506151,0.593897,0.964715,0.506266,0.285431,0.573572,0.019437,0.546908,0.19204,0.524987,0.15797,0.307555,0.721607,0.207949,0.870297,0.0677978,0.344074,0.654368,0.602611,0.350894,0.241373,0.553181,0.74592,0.179288,0.263881,0.344851,0.925944,0.959004,0.587254,0.746019,0.332666,0.695692,0.018841,0.583359,0.520591,0.244085,0.0510784,0.0732391,0.0925844,0.641088,0.50959,0.149571,0.763489,0.365141,0.6501,0.00350958,0.915053,0.331745,0.760578,0.873749,0.602727,0.924259,0.738448,0.989536,0.520195,0.183559,0.785991,0.364408,0.235174,0.767982,0.702435,0.726,0.802878,0.637649,0.00405777,0.38135,0.994365,0.725048,0.464947,0.649503,0.508301,0.348393,0.59073,0.255638,0.52582,0.398324,0.286338,0.399423,0.99224,0.185091,0.162323,0.314407,0.0932222,0.0170696,0.631351,0.391533,0.0703362,0.808794,0.807191,0.690219,0.877959,0.541709,0.450691,0.995727,0.571206,0.598624,0.955097,0.489115,0.82839,0.219476,0.155793,0.0792022,0.483908,0.0792896,0.719662,0.325536,0.966507,0.912455,0.254602,0.607796,0.810162,0.824599,0.209362,0.0775345,0.00489479,0.455273,0.363894,0.455258,0.384637,0.676216,0.0113328,0.867204,0.4052,0.194276,0.97631,0.393906,0.477964,0.0702386,0.322192,0.571511,0.845984,0.361709,0.181124,0.295545,0.487636,0.491057,0.482484,0.995371,0.0879564,0.003434,0.231913,0.586416,0.802375,0.475138,0.834642,0.938202,0.613728,0.982673,0.311363,0.550767,0.991596,0.898152,0.806336,0.272974,0.978006,0.517878,0.315059,0.437374,0.100437,0.0282983,0.305279,0.187241,0.0953622,0.339474,0.106441,0.285756,0.0891473,0.770614,0.34459,0.409321,0.0400855,0.318912,0.709676,0.300305,0.592864,0.446192,0.466694,0.322966,0.890338,0.0427531,0.763822,0.200929,0.0213527,0.224558,0.521468,0.678546,0.601947,0.532179,0.0487174,0.57707,0.554412,0.541309,0.66205,0.75554,0.156956,0.922351,0.292681,0.335812,0.93555,0.0713432,0.0943649,0.533162,0.789948,0.944478,0.190473,0.637765,0.0423669,0.669839,0.890334,0.849179,0.910791,0.0534648,0.225876,0.0501303,0.357958,0.293508,0.961492,0.607703,0.217042,0.841634,0.585131,0.406264,0.538721,0.403692,0.25432,0.852131,0.111796,0.979306,0.876937,0.740661,0.254696,0.445877,0.836567,0.941781,0.0420641,0.809508,0.766828,0.711384,0.642754,0.293034,0.348082,0.819375,0.212,0.874935,0.538404,0.363852,0.954904,0.890461,0.0491189,0.783913,0.554226,0.625529,0.314297,0.447387,0.887594,0.018858,0.146924,0.598216,0.757842,0.483626,0.481523,0.055136,0.381704,0.974635,0.488642,0.108501,0.816378,0.77011,0.787562,0.18851,0.958292,0.0546913,0.607871,0.355373,0.9223,0.10092,0.334522,0.867617,0.892787,0.69785,0.515204,0.201339,0.0685408,0.433601,0.460149,0.906232,0.797932,0.12323,0.185651,0.785187,0.021015,0.912888,0.998402,0.537331,0.599551,0.900905,0.847692,0.127449,0.147729,0.576561,0.467216,0.576499,0.347775,0.826982,0.617537,0.551942,0.924567,0.865604,0.577181,0.48911,0.21595,0.44155,0.796024,0.974416,0.969641,0.694275,0.43035,0.246383,0.570171,0.689551,0.335208,0.659129,0.372048,0.342448,0.0315372,0.422587,0.62064,0.508232,0.627891,0.64731,0.339327,0.729561,0.192378,0.909896,0.657549,0.770018,0.947452,0.295501,0.766578,0.0174837,0.227466,0.157427,0.0897843,0.701311,0.336244,0.609828,0.448773,0.897684,0.245538,0.878147,0.852576,0.308016,0.514919,0.103,0.847272,0.748971,0.0365677,0.51633,0.44811,0.902092,0.331338,0.697111,0.773607,0.285129,0.55656,0.154173,0.515718,0.955977,0.295939,0.600246,0.258886,0.677575,0.739628,0.990701,0.749079,0.0859178,0.30069,0.838586,0.440416,0.970369,0.987207,0.488157,0.070414,0.859958,0.133424,0.412789,0.789739,0.440183,0.384572,0.565464,0.0818543,0.240336,0.0244344,0.169791,0.712034,0.176536,0.150041,0.728637,0.989305,0.789417,0.956327,0.350992,0.0341385,0.0372287,0.0443972,0.513326,0.764785,0.379323,0.702257,0.00758922,0.275993,0.542287,0.879012,0.857148,0.473006,0.049159,0.651516,0.0345407,0.781385,0.378023,0.746591,0.831217,0.968436,0.304565,0.630842,0.22513,0.143415,0.490142,0.712207,0.218604,0.783758,0.417443,0.822259,0.551043,0.657403,0.0235559,0.248514,0.46057,0.507133,0.47723,0.97143,0.825556,0.622756,0.0586914,0.118969,0.421054,0.522843,0.890926,0.333514,0.0610406,0.740929,0.715193,0.587376,0.288175,0.41622,0.192071,0.531472,0.902303,0.215878,0.0349453,0.408039,0.433749,0.822313,0.167469,0.641858,0.03691,0.441781,0.0256307,0.368385,0.12411,0.5767,0.296769,0.00567085,0.825478,0.60786,0.443464,0.347192,0.454189,0.261388,0.892175,0.507629,0.0269041,0.373679,0.470322,|0.127306,0.518446,0.274004,0.895131,0.940087,0.490984,0.970935,0.0477167,0.0461243,0.408622,0.503064,0.242153,0.602554,0.263362,0.457911,0.326856,0.898323,0.738421,0.311819,0.0645267,0.984098,0.443125,0.926425,0.312366,0.724718,0.31627,0.174745,0.290294,0.915118,0.392398,0.376747,0.117781,0.905166,0.452158,0.646234,0.0829714,0.169342,0.326484,0.610882,0.252485,0.865075,0.837375,0.802021,0.659039,0.394592,0.690912,0.936906,0.700992,0.562836,0.856543,0.801884,0.845199,0.16716,0.608619,0.433554,0.530373,0.958861,0.500696,0.0208758,0.706197,0.110504,0.733528,0.51559,0.511241,0.594657,0.566111,0.34483,0.58324,0.260211,0.0507764,0.702805,0.44234,0.337245,0.837093,0.146285,0.438993,0.82357,0.364329,0.520921,0.495466,0.00649142,0.211435,0.960189,0.489746,0.185027,0.183552,0.924756,0.414335,0.238462,0.440073,0.378655,0.552461,0.395734,0.858014,0.630426,0.339098,0.883807,0.0548383,0.11894,0.719357,0.189617,0.125437,0.753441,0.811902,0.239261,0.369082,0.381305,0.294569,0.353534,0.218789,0.191259,0.235298,0.551432,0.353166,0.641334,0.253184,0.64966,0.897803,0.0265549,0.468841,0.543142,0.271672,0.0297483,0.698659,0.607256,0.628187,0.48228,0.194626,0.948909,0.412481,0.918609,0.144751,0.0444944,0.292758,0.49753,0.126301,0.0516657,0.512483,0.0192505,0.697186,0.776589,0.403747,0.846769,0.791614,0.0931037,0.918532,0.771973,0.121623,0.694426,0.299106,0.280445,0.620619,0.449385,0.482915,0.237626,0.452365,0.780418,0.281492,0.0275296,0.212997,0.413682,0.972316,0.816892,0.868443,0.21347,0.293335,0.374162,0.737311,0.933068,0.93548,0.378727,0.732562,0.36282,0.0124485,0.741797,0.800433,0.336593,0.617562,0.335422,0.598785,0.698725,0.630256,0.0325328,0.200571,0.113575,0.318318,0.846057,0.742305,0.821079,0.57406,0.122891,0.78833,0.584999,0.82146,0.451348,0.489028,0.753778,0.352787,0.698228,0.821576,0.146931,0.67115,0.465005,0.388908,0.865953,0.374383,0.535954,0.795001,0.777425,0.785491,0.794967,0.16602,0.556197,0.0477405,0.482983,0.0477769,0.968623,0.773699,0.667596,0.265308,0.66835,0.376754,0.512671,0.258325,0.937773,0.497452,0.993004,0.292577,0.101481,0.636695,0.529304,0.339956,0.284459,0.472327,0.561597,0.747324,0.841221,0.724563,0.881933,0.25159,0.666595,0.121961,0.44778,0.891854,0.16995,0.687139,0.942818,0.280777,0.674968,0.0880624,0.746825,0.279918,0.889776,0.483844,0.874648,0.791152,0.996983,0.930122,0.880675,0.460348,0.077976,0.78577,0.0610213,0.520928,0.964345,0.107851,0.787959,0.871287,0.664674,0.46496,0.121597,0.907406,0.893857,0.085929,0.431901,0.11495,0.754286,0.857833,0.787206,0.246189,0.929952,0.961223,0.586434,0.426932,0.462852,0.508026,0.457869,0.9018,0.142999,0.94413,0.476063,0.171261,0.361557,0.917937,0.190258,0.959137,0.992303,0.776317,0.313323,0.234635,0.450925,0.695908,0.598924,0.997837,0.550792,0.175653,0.144845,0.404145,0.506283,0.0987868,0.877581,0.497836,0.472329,0.311395,0.0740498,0.719216,0.3107,0.405788,0.10898,0.91278,0.89334,0.925046,0.376926,0.244047,0.778866,0.769285,0.72042,0.638448,0.512277,0.0127718,0.940889,0.522907,0.654812,0.43962,0.937071,0.710367,0.621873,0.750013,0.477604,0.217526,0.293497,0.25962,0.211091,0.374469,0.0997223,0.456178,0.0737015,0.623074,0.0244032,0.193454,0.858593,0.621874,0.312177,0.253968,0.653252,0.79788,0.112326,0.651206,0.526518,0.254793,0.243153,0.201477,0.534188,0.515272,0.452343,0.208578,0.615153,0.290711,0.106248,0.260703,0.739066,0.140112,0.826208,0.429152,0.063014,0.711793,0.769952,0.53953,0.810159,0.0843283,0.802281,0.447305,0.443139,0.00456899,0.0952949,0.116685,0.926733,0.539194,0.829483,0.536796,0.747993,0.185057,0.238127,0.899916,0.706788,0.412065,0.595972,0.383967,0.993278,0.092229,0.540018,0.0672758,0.210916,0.783229,0.354026,0.213656,0.255848,0.587668,0.499976,0.813634,0.731703,0.146668,0.547219,0.393923,0.31932,0.67979,0.380888,0.849757,0.524498,0.425067,0.42046,0.573744,0.181826,0.19463,0.836528,0.262364,0.0938136,0.326918,0.610614,0.0415276,0.981426,0.914462,0.468732,0.697404,0.894731,0.139022,0.948749,0.204062,0.881045,0.470749,0.342083,0.896424,0.0118201,0.114737,0.250442,0.956506,0.804598,0.337114,0.955249,0.164059,0.474354,0.292407,0.846484,0.830424,0.659977,0.430867,0.352134,0.326402,0.706048,0.577358,0.612772,0.570282,0.915597,0.563992,0.0252057,0.762782,0.713293,0.312607,0.0906373,0.696856,0.0823773,0.876456,0.939968,0.982259,0.293683,0.245573,0.981549,0.703986,0.551305,0.538952,0.879132,0.148454,0.770876,0.174153,0.00343341,0.527671,0.880513,0.043519,0.157463,0.888111,0.39212,0.836511,0.197872,0.0617808,0.928978,0.90835,0.198662,0.940832,0.791339,0.694449,0.917187,0.926678,0.572927,0.0308966,0.346376,0.398774,0.497425,0.767243,0.395507,0.853791,0.817598,0.447632,0.990002,0.803537,0.328928,0.0486109,0.850256,0.506669,0.804786,0.910057,0.850335,0.914981,0.92914,0.983302,0.412903,0.42572,0.261024,0.977652,0.175847,0.10274,0.706959,0.643097,0.767613,0.8487,0.339187,0.290359,0.51182,0.145158,0.610287,0.925198,0.195355,0.975205,0.1632,0.800589,0.108816,0.379604,0.401605,0.845153,0.0903178,0.906366,0.0627506,0.91415,0.110159,0.631369,0.592161,0.573855,0.33039,0.261046,0.398573,0.994474,0.420037,0.621269,0.487661,0.732278,0.109747,0.159408,0.142346,0.224689,0.00234604,0.599327,0.427905,0.258359,0.958656,0.051662,0.254103,0.24414,0.692711,0.490949,0.714567,0.0604284,0.974994,0.929946,0.803084,0.0513839,0.29988,0.0528408,0.567881,0.318972,0.977942,0.908887,0.181696,0.940023,0.752601,0.645908,0.87958,0.614932,0.46184,0.788057,0.501818,0.748028,0.971893,0.0999191,0.193851,0.0173798,0.161978,0.816428,0.92692,0.509047,0.292744,0.380791,0.929703,0.645763,0.861797,0.131233,0.0194492,0.497215,0.292484,0.378973,0.594761,0.736064,0.119956,0.354928,0.493211,0.628212,0.921017,0.486865,0.344051,0.55065,0.308843,0.971154,0.481062,0.328815,0.208552,0.26356,0.808512,0.307792,0.694412,0.356553,0.152669,0.323792,0.965129,0.603438,0.964717,0.985183,0.34636,0.613909,0.067865,0.314631,0.0244401,0.0470473,0.0690649,0.262212,0.328256,0.417729,0.0852447,0.188451,0.886353,0.0717188,0.474294,0.746864,0.0133412,0.530947,0.0638907,0.859526,0.621853,0.159792,0.189063,0.621085,0.215147,0.651063,0.922275,0.236742,0.756392,0.377945,0.557683,0.939797,0.609201,0.442087,0.844488,0.132682,0.819934,0.940232,0.22649,0.699682,0.264302,0.696261,0.395772,0.335047,0.908919,0.995221,0.491731,0.308302,0.775295,0.962761,0.261152,0.952007,0.0989235,0.537473,0.89395,0.599681,0.301077,0.810678,0.288704,0.322681,0.0188277,0.861122,0.214931,0.291729,0.587768,0.556251,0.614786,0.446643,0.0931792,0.00267655,0.900808,0.447574,0.361062,0.858831,0.218389,0.935646,0.0742155,0.680394,0.0572122,0.834743,0.158296,0.116627,0.511709,0.879389,0.310104,0.0856005,0.485353,0.78973,0.991435,0.700691,0.0970956,0.0749855,0.802752,0.931033,0.132933,0.431764,0.410965,0.828291,0.173484,0.912235,0.712027,0.183692,0.860364,0.521143,0.447554,0.664585,0.190875,0.39103,0.380266,0.107647,0.507752,0.353306,0.88489,0.988845,0.883298,0.404255,0.297565,0.7288,0.245054,0.552713,0.665099,0.373676,0.510627,0.701351,0.0176535,0.766895,0.393428,0.18664,0.315896,0.0912811,0.5336,0.42405,0.403271,0.432798,0.555907,0.137623,0.910755,0.308975,0.974304,0.376765,0.914845,0.428792,0.478495,0.764117,0.319275,0.416375,0.47931,0.733615,0.932299,0.442367,0.621729,0.816158,0.501913,0.441938,0.504574,0.827884,0.62718,0.265271,0.695136,0.817375,0.0507206,0.455528,0.286296,0.584965,0.875395,0.152004,0.775717,0.255099,0.47732,0.410402,0.583974,0.540809,0.998188,0.494584,0.166116,0.952616,0.926649,0.734011,0.559097,0.494293,0.766431,0.0328085,0.522637,0.979066,0.314767,0.173899,0.320848,0.773417,0.483667,0.940763,0.292909,0.321871,0.643678,0.0705138,0.183879,0.25958,0.75966,0.919314,0.428319,0.960428,0.73449,0.140056,0.945565,0.684681,0.746855,0.0763028,0.729339,0.996367,0.242968,0.624773,0.965748,0.793735,0.0987061,0.908203,0.448968,0.913684,0.472211,0.0510526,0.731198,0.00379896,0.340163,0.0767671,0.082419,0.60251,0.766984,0.424734,0.393995,0.218799,0.791505,0.0487971,0.370651,0.505916,0.727743,0.408111,0.247422,0.928815,0.144012,0.445376,0.0304168,0.769935,0.0330926,0.773973,0.473418,0.495135,0.767782,0.573042,0.481558,0.913678,0.104141,0.115197,0.228366,0.209176,0.793014,0.518824,0.373399,0.749666,0.358969,0.197139,0.0273869,0.1564,0.862107,0.405346,0.606896,0.765009,0.657352,0.521388,0.850485,0.90186,0.36944,0.421946,0.303784,0.294459,0.155347,0.999862,0.0800937,0.156938,0.3916,0.76257,0.39325,0.239607,0.725588,0.915745,0.858054,0.276602,0.137114,0.696844,0.242516,0.390326,0.165058,0.706354,0.124085,0.607755,0.515781,0.764195,0.110328,0.173595,0.115714,0.461547,0.00520748,0.400692,0.844009,0.20691,0.869812,0.845623,0.356871,0.492456,0.687854,0.888834,0.0513627,0.632401,0.162884,0.830553,0.720995,0.280694,0.69147,0.311287,0.113424,0.306529,0.718913,0.579434,0.183665,0.947631,0.821067,0.915949,0.499749,0.499151,0.860277,0.23902,0.528989,0.42018,0.890485,0.0787804,0.00227273,0.213149,0.849304,0.247238,0.972816,0.628044,0.0101079,0.655495,0.942801,0.81568,0.316618,0.841302,0.332604,0.86641,0.0482779,0.28157,0.806898,0.777641,0.487131,0.467809,0.522227,0.953991,0.194048,0.794557,|0.0172791,0.831845,0.532922,0.484752,0.947782,0.510194,0.0788221,0.169266,0.658812,0.379332,0.216937,0.726626,0.897362,0.286345,0.22232,0.296381,0.49697,0.328205,0.440569,0.825817,0.869519,0.582196,0.307547,0.328358,0.0358906,0.566206,0.806453,0.709193,0.136125,0.425178,0.160544,0.756849,0.957234,0.802916,0.825352,0.481842,0.555297,0.240759,0.226555,0.666089,0.568421,0.729831,0.457868,0.443149,0.126834,0.568414,0.0917572,0.796903,0.473152,0.0330927,0.225905,0.999368,0.659425,0.270554,0.272942,0.70036,0.136203,0.182093,0.549131,0.178239,0.913932,0.0420294,0.498429,0.243157,0.258632,0.652103,0.434239,0.537847,0.904986,0.196272,0.755563,0.223843,0.143001,0.666766,0.639841,0.842992,0.523938,0.943046,0.841556,0.72506,0.233445,0.594851,0.555865,0.770292,0.850259,0.974082,0.483655,0.19898,0.211472,0.752604,0.470438,0.24439,0.558612,0.277666,0.15014,0.427972,0.84094,0.8469,0.204561,0.626304,0.0289801,0.659886,0.768799,0.759195,0.672593,0.783309,0.343395,0.317543,0.553644,0.922919,0.0213734,0.928672,0.214768,0.0823638,0.186249,0.81446,0.966074,0.738099,0.129613,0.545268,0.626728,0.32103,0.813403,0.864249,0.755602,0.0475953,0.465138,0.628422,0.918703,0.129497,0.671476,0.974025,0.103785,0.132327,0.500962,0.38402,0.538999,0.374402,0.846309,0.772703,0.139492,0.548383,0.799403,0.880813,0.400935,0.766835,0.0779436,0.838841,0.529362,0.77724,0.755024,0.905593,0.298098,0.602504,0.979608,0.617833,0.665584,0.308553,0.417145,0.767009,0.969706,0.399441,0.202652,0.866337,0.29476,0.502886,0.0200747,0.439433,0.553892,0.254463,0.547252,0.589539,0.36483,0.654938,0.140486,0.943768,0.315145,0.495644,0.873299,0.0317685,0.911568,0.966008,0.61257,0.260723,0.610216,0.911986,0.615477,0.525418,0.851344,0.461901,0.888646,0.198337,0.195266,0.707291,0.320702,0.409624,0.672958,0.27766,0.223781,0.326722,0.846457,0.969927,0.165219,0.426654,0.130293,0.712896,0.513854,0.397588,0.924388,0.778609,0.00334805,0.159107,0.716178,0.816264,0.421073,0.26285,0.949256,0.40512,0.345713,0.0287956,0.382717,0.189968,0.171702,0.940935,0.770743,0.0337971,0.907775,0.738345,0.545171,0.828918,0.978073,0.00169194,0.299853,0.46048,0.376061,0.436252,0.0729945,0.872141,0.587672,0.281848,0.923727,0.556048,0.0607978,0.544868,0.450617,0.974049,0.213629,0.387875,0.584508,0.719639,0.857629,0.740989,0.0934438,0.640014,0.720605,0.606096,0.0276024,0.604623,0.218163,0.137628,0.323227,0.590811,0.741831,0.622101,0.213822,0.644356,0.412794,0.388715,0.938738,0.243121,0.0285352,0.775572,0.655365,0.967806,0.390227,0.00380021,0.835241,0.109411,0.764513,0.0701017,0.579289,0.788388,0.414218,0.931065,0.811745,0.474057,0.97027,0.5966,0.0477642,0.0800182,0.892768,0.82129,0.357126,0.392253,0.115719,0.0891271,0.775658,0.269984,0.684861,0.97568,0.446856,0.952876,0.847883,0.855624,0.0139576,0.602642,0.597863,0.978941,0.754601,0.158662,0.362491,0.703726,0.217662,0.497794,0.274548,0.36477,0.0997769,0.309467,0.844089,0.367645,0.0569955,0.865284,0.851487,0.16982,0.745159,0.44206,0.0161303,0.469515,0.0308278,0.268282,0.629673,0.417085,0.174654,0.416859,0.651834,0.354702,0.890406,0.127199,0.740077,0.515907,0.798713,0.371522,0.4943,0.28987,0.604158,0.48177,0.699199,0.0942707,0.581735,0.197427,0.182971,0.170874,0.844317,0.48627,0.241551,0.0399939,0.508826,0.257584,0.6137,0.799819,0.105428,0.927898,0.967679,0.673698,0.448085,0.467026,0.563721,0.840243,0.72994,0.939403,0.141156,0.48769,0.219214,0.463186,0.518741,0.768783,0.111956,0.749505,0.137277,0.327302,0.822743,0.695354,0.566584,0.129781,0.987454,0.659474,0.504809,0.423178,0.653933,0.230939,0.466365,0.178342,0.000432432,0.892432,0.850042,0.161001,0.911942,0.485128,0.396541,0.867019,0.497442,0.308877,0.521954,0.665807,0.0569857,0.0293933,0.48094,0.535212,0.524382,0.10477,0.339538,0.953899,0.464844,0.0741995,0.759806,0.467126,0.711159,0.580341,0.0034734,0.12564,0.95657,0.274866,0.397514,0.166353,0.964164,0.599264,0.0526065,0.370582,0.874819,0.410865,0.803811,0.0369654,0.754834,0.788257,0.164586,0.468628,0.406916,0.466921,0.810387,0.209795,0.745794,0.802032,0.400302,0.555293,0.470515,0.929023,0.461883,0.445838,0.777319,0.266961,0.247807,0.579543,0.0432779,0.233059,0.52558,0.738604,0.590476,0.245617,0.760474,0.0760491,0.0202974,0.203898,0.973012,0.991407,0.551861,0.422728,0.872427,0.217672,0.20367,0.778056,0.106721,0.125579,0.554846,0.997845,0.244263,0.489267,0.417035,0.755011,0.44238,0.0152937,0.646484,0.18221,0.246824,0.123243,0.417419,0.66786,0.292095,0.281828,0.475175,0.932814,0.72561,0.0160007,0.501245,0.293626,0.198701,0.654196,0.848358,0.570428,0.413484,0.956397,0.769042,0.463656,0.806384,0.734229,0.455887,0.840938,0.829899,0.274838,0.406434,0.187637,0.344486,0.260685,0.493967,0.767946,0.00868756,0.892341,0.405703,0.959471,0.589272,0.391646,0.388716,0.447733,0.72612,0.340973,0.53975,0.757397,0.469499,0.883622,0.107596,0.684167,0.711902,0.373986,0.80194,0.745013,0.522569,0.00512505,0.856335,0.906868,0.482957,0.538689,0.226333,0.750281,0.967067,0.260529,0.346476,0.610969,0.808096,0.946012,0.390777,0.727926,0.401717,0.00974095,0.37936,0.54411,0.132321,0.245439,0.422712,0.821035,0.0583155,0.761595,0.466853,0.0193842,0.242167,0.541174,0.43167,0.939556,0.0691106,0.9955,0.540904,0.680843,0.729412,0.721735,0.959771,0.896271,0.149612,0.397765,0.0844614,0.91187,0.4193,0.808038,0.0462289,0.713027,0.738931,0.983821,0.478599,0.791012,0.296451,0.863744,0.809292,0.656324,0.337777,0.0139616,0.844939,0.187884,0.0231236,0.199004,0.223028,0.483794,0.876992,0.936928,0.844804,0.290583,0.144798,0.499828,0.565646,0.602489,0.19199,0.280241,0.520655,0.935282,0.294849,0.28841,0.583137,0.97369,0.906995,0.0144491,0.765979,0.0603697,0.109446,0.171629,0.267911,0.811003,0.176908,0.196753,0.949706,0.584872,0.53863,0.09708,0.469122,0.246364,0.497104,0.628726,0.466821,0.858034,0.984348,0.910132,0.628933,0.887526,0.195279,0.0572171,0.714067,0.568009,0.462615,0.497466,0.700261,0.45472,0.270867,0.664204,0.190839,0.853256,0.219446,0.398864,0.185114,0.896333,0.386389,0.43752,0.0248479,0.6306,0.547422,0.863961,0.142,0.0478254,0.035983,0.256867,0.924504,0.0399144,0.0663922,0.398184,0.982905,0.601868,0.01865,0.90593,0.319494,0.646523,0.256275,0.365645,0.724782,0.172301,0.446534,0.239284,0.472668,0.00923771,0.314934,0.194074,0.782142,0.139312,0.0482608,0.528931,0.802554,0.783727,0.624597,0.63513,0.354684,0.414575,0.562357,0.591939,0.711805,0.183855,0.667174,0.443936,0.28624,0.114626,0.0728315,0.539798,0.930502,0.323502,0.566421,0.898318,0.650846,0.391096,0.402541,0.0172868,0.312678,0.524782,0.106075,0.0567328,0.529069,0.763203,0.193937,0.47125,0.544108,0.857246,0.802963,0.727155,0.771384,0.490423,0.307656,0.774056,0.891589,0.0406528,0.821079,0.352355,0.525561,0.216429,0.578378,0.803448,0.256703,0.40731,0.469245,0.123756,0.0580879,0.454858,0.789782,0.916704,0.0550835,0.295957,0.985538,0.104295,0.0683913,0.100123,0.247309,0.724917,0.253844,0.595972,0.772976,0.893692,0.501124,0.372924,0.991148,0.6067,0.21381,0.516401,0.371642,0.587002,0.500361,0.363756,0.110533,0.133685,0.28842,0.397319,0.976955,0.420352,0.851264,0.310007,0.412596,0.881013,0.28259,0.805067,0.230628,0.182352,0.150719,0.673177,0.150713,0.797514,0.260482,0.624435,0.651908,0.118624,0.262438,0.490514,0.994773,0.338279,0.102187,0.316891,0.387562,0.441588,0.987963,0.900426,0.180025,0.540638,0.386414,0.616226,0.499738,0.551153,0.137923,0.199053,0.245433,0.540974,0.409309,0.539035,0.748003,0.520914,0.416272,0.645584,0.437983,0.811065,0.288213,0.518594,0.0879704,0.254472,0.795408,0.183203,0.358584,0.322085,0.416327,0.374504,0.501881,0.67336,0.354173,0.663436,0.0203251,0.512623,0.51568,0.857249,0.373783,0.362915,0.539628,0.674104,0.119073,0.751373,0.185531,0.269247,0.394042,0.242065,0.710222,0.17032,0.387106,0.899199,0.64585,0.398471,0.685444,0.908561,0.0328941,0.961787,0.98034,0.254284,0.759761,0.888191,0.881325,0.817718,0.357517,0.448144,0.183428,0.254062,0.968539,0.990668,0.440528,0.928007,0.359719,0.238255,0.0524262,0.977872,0.456765,0.511554,0.086419,0.941746,0.793504,0.309503,0.28242,0.110609,0.699068,0.447212,0.26802,0.906347,0.920812,0.797107,0.900804,0.722585,0.703401,0.434404,0.666855,0.835069,0.287134,0.555801,0.968742,0.507066,0.735121,0.14716,0.888392,0.450777,0.852929,0.813926,0.853015,0.926298,0.803014,0.736588,0.0726517,0.323459,0.838834,0.549343,0.741438,0.479651,0.776763,0.553174,0.322953,0.277548,0.915583,0.999024,0.0973098,0.469174,0.426959,0.423385,0.756195,0.803342,0.762727,0.763846,0.276753,0.0133708,0.819713,0.416503,0.522897,0.713877,0.0974741,0.427162,0.523821,0.809966,0.382856,0.525831,0.445018,0.975862,0.167623,0.108957,0.721055,0.728086,0.67624,0.218603,0.692448,0.435943,0.0594853,0.215279,0.582023,0.327467,0.586628,0.22566,0.0610819,0.514096,0.793246,0.0562043,0.781049,0.584421,0.374319,0.168895,0.975181,0.541885,0.23445,0.301124,0.689856,0.436359,0.217325,0.588894,0.116629,0.918212,0.937746,0.571836,0.78836,0.0122179,0.280924,0.835941,0.129576,0.222552,0.0767398,0.863307,0.597248,0.294597,0.926919,0.766437,0.164159,0.773461,0.690972,0.794155,0.644013,0.726071,0.885022,0.873393,0.168125,0.450305,0.613242,0.79268,0.238342,0.713138,|0.526825,0.720682,0.165135,0.506111,0.585225,0.0512553,0.739545,0.121946,0.94923,0.615286,0.350416,0.267382,0.804325,0.783681,0.428989,0.275436,0.832471,0.349516,0.962487,0.8962,0.360163,0.343262,0.576841,0.883881,0.39351,0.665765,0.762632,0.599223,0.31654,0.219486,0.475215,0.550385,0.921149,0.120983,0.320351,0.535581,0.818683,0.825,0.589923,0.534603,0.164885,0.810572,0.532422,0.425861,0.433859,0.873755,0.615768,0.761914,0.864988,0.0667748,0.626246,0.00594115,0.511929,0.509195,0.281512,0.266604,0.604698,0.985054,0.376775,0.236204,0.223464,0.601485,0.0642242,0.137542,0.749557,0.311413,0.14324,0.635431,0.252939,0.851668,0.112266,0.268545,0.524752,0.900865,0.547388,0.0568105,0.21275,0.702372,0.508441,0.742224,0.187052,0.305464,0.817682,0.200016,0.702895,0.94275,0.0595554,0.282407,0.432841,0.981113,0.748205,0.185563,0.723703,0.260098,0.881658,0.324333,0.217839,0.752587,0.0412617,0.981536,0.480685,0.947737,0.984319,0.872735,0.937438,0.32298,0.984526,0.291833,0.71907,0.456629,0.489686,0.406823,0.834497,0.0675551,0.712472,0.127888,0.359856,0.624093,0.410012,0.930272,0.290544,0.881779,0.661162,0.682244,0.885863,0.828839,0.109949,0.0760297,0.336601,0.246869,0.444296,0.113447,0.987532,0.276076,0.76863,0.911215,0.752543,0.930689,0.250047,0.8777,0.908004,0.706856,0.279103,0.899971,0.828625,0.499184,0.609176,0.0222336,0.796367,0.722553,0.785874,0.00553954,0.269188,0.908122,0.58355,0.316288,0.944316,0.861417,0.898068,0.886832,0.347716,0.994038,0.0498549,0.315385,0.370403,0.684667,0.513018,0.29387,0.989359,0.820281,0.112086,0.406106,0.493572,0.456751,0.0777096,0.521702,0.00657225,0.148794,0.930102,0.577707,0.164918,0.708711,0.209364,0.0296147,0.260787,0.573802,0.645333,0.531716,0.32855,0.502563,0.262298,0.656716,0.17376,0.682186,0.749627,0.832907,0.698269,0.523496,0.322492,0.56072,0.043798,0.932763,0.599719,0.555664,0.745232,0.272391,0.574444,0.349763,0.14565,0.478025,0.353388,0.534164,0.462834,0.42082,0.331974,0.388494,0.887794,0.583073,0.450183,0.484865,0.746384,0.160523,0.138139,0.534013,0.980989,0.269014,0.175482,0.244175,0.0563524,0.774464,0.523335,0.451795,0.0588269,0.416696,0.852344,0.391381,0.981568,0.453739,0.717622,0.561977,0.762073,0.685814,0.91865,0.429184,0.877503,0.789295,0.795896,0.662901,0.130388,0.469317,0.161418,0.29629,0.601797,0.701241,0.204158,0.19006,0.0120126,0.715056,0.823229,0.0784044,0.367938,0.200916,0.233419,0.867386,0.296333,0.109992,0.583323,0.786301,0.224775,0.580852,0.322809,0.218596,0.948845,0.118574,0.16129,0.545667,0.545572,0.75293,0.445862,0.892038,0.928166,0.555994,0.569659,0.471305,0.926997,0.787718,0.251158,0.00317782,0.629244,0.739251,0.704509,0.425781,0.695988,0.543035,0.368084,0.0971068,0.0392316,0.866737,0.778241,0.31673,0.976787,0.201706,0.714387,0.451216,0.708597,0.792367,0.594079,0.375063,0.841454,0.118858,0.499187,0.297548,0.680262,0.231087,0.246512,0.0719277,0.586509,0.998884,0.17866,0.115985,0.541441,0.685809,0.188639,0.936743,0.704292,0.753064,0.465769,0.821328,0.408462,0.194487,0.572771,0.0817136,0.934871,0.562193,0.104292,0.611644,0.385051,0.574097,0.828048,0.808643,0.461782,0.462486,0.137616,0.220887,0.287957,0.896103,0.296063,0.477425,0.711525,0.232275,0.494822,0.0757724,0.699859,0.266134,0.54431,0.120467,0.446033,0.425731,0.20662,0.706196,0.526224,0.0198411,0.31235,0.613038,0.792344,0.425319,0.416597,0.945161,0.184928,0.0430773,0.864135,0.0798329,0.744995,0.993979,0.617967,0.728613,0.571073,0.0734528,0.641698,0.460823,0.985431,0.387039,0.259016,0.982993,0.425581,0.946495,0.752032,0.108967,0.553949,0.801881,0.413301,0.417628,0.650397,0.612453,0.970471,0.373125,0.932229,0.257748,0.0524461,0.351028,0.294663,0.303257,0.686488,0.0396259,0.346934,0.533278,0.267247,0.590819,0.307829,0.561219,0.174389,0.974767,0.429969,0.644576,0.627089,0.107776,0.428971,0.900399,0.26527,0.152309,0.475096,0.0619847,0.969194,0.305329,0.718281,0.564265,0.605646,0.699558,0.347519,0.520396,0.91031,0.885847,0.645102,0.484214,0.970038,0.702,0.996124,0.525261,0.853884,0.855074,0.839243,0.862831,0.433281,0.0903702,0.607492,0.967372,0.575499,0.526221,0.140327,0.867676,0.534041,0.847507,0.872162,0.273259,0.698482,0.676315,0.0335413,0.217077,0.257096,0.194868,0.529306,0.859188,0.569246,0.662338,0.0317584,0.456449,0.605881,0.855002,0.811327,0.472301,0.84664,0.75724,0.714326,0.555222,0.00833702,0.79484,0.884014,0.888316,0.746727,0.86346,0.82148,0.0733826,0.0633923,0.175385,0.675105,0.955133,0.799323,0.922199,0.722781,0.1862,0.939154,0.295186,0.667625,0.908083,0.593243,0.648835,0.93809,0.635086,0.343946,0.0182447,0.790296,0.302844,0.19084,0.353506,0.129564,0.968961,0.838905,0.929829,0.573701,0.138867,0.299116,0.131398,0.267812,0.600656,0.393722,0.101342,0.750071,0.90898,0.538808,0.291019,0.286141,0.201295,0.825053,0.161733,0.478134,0.167478,0.798825,0.990086,0.520186,0.76387,0.110575,0.357085,0.0271088,0.687308,0.99937,0.867585,0.987218,0.318828,0.374681,0.286781,0.685332,0.214247,0.469556,0.0445023,0.837598,0.335247,0.29154,0.428814,0.0353435,0.0765699,0.227369,0.830254,0.810661,0.0355388,0.892537,0.805988,0.686758,0.871822,0.259979,0.230588,0.936229,0.424505,0.778622,0.667712,0.686532,0.121607,0.909545,0.541113,0.949611,0.257708,0.139791,0.0389413,0.390903,0.466316,0.703232,0.766993,0.024,0.960246,0.71886,0.53959,0.591521,0.109181,0.385451,0.235236,0.0528899,0.25042,0.0184118,0.917038,0.987658,0.79819,0.374997,0.981413,0.698365,0.245328,0.611993,0.593023,0.0873201,0.025458,0.117622,0.678495,0.265207,0.74821,0.267033,0.396116,0.167433,0.0601964,0.816939,0.26364,0.178163,0.837698,0.275602,0.809343,0.29595,0.0710803,0.960105,0.432962,0.732415,0.218126,0.376982,0.326686,0.0069567,0.164406,0.777897,0.636415,0.998734,0.0608247,0.71396,0.200772,0.783381,0.493259,0.484215,0.70758,0.735688,0.366477,0.0434029,0.765342,0.128071,0.980652,0.820089,0.976886,0.0249741,0.418731,0.117018,0.931036,0.853327,0.788795,0.256254,0.0433977,0.798179,0.827255,0.0446835,0.874006,0.825281,0.0555815,0.672231,0.0961335,0.972633,0.45271,0.716993,0.575066,0.358222,0.674494,0.530345,0.724303,0.654558,0.831964,0.480128,0.729004,0.684329,0.863198,0.385456,0.527575,0.510594,0.865541,0.63762,0.521706,0.259041,0.121368,0.839568,0.402348,0.851115,0.282507,0.467136,0.192587,0.942595,0.802204,0.629062,0.111843,0.901376,0.459769,0.656649,0.240447,0.887283,0.844573,0.143106,0.125859,0.329935,0.342238,0.356016,0.00433987,0.835529,0.507261,0.538966,0.0944973,0.219597,0.0635328,0.74608,0.777463,0.918812,0.263155,0.735456,0.735095,0.592579,0.635916,0.989787,0.83994,0.75655,0.0649408,0.1865,0.0142947,0.230431,0.479467,0.860365,0.640861,0.320908,0.994225,0.202784,0.570556,0.781957,0.559165,0.0633026,0.75894,0.718834,0.451152,0.469632,0.197011,0.446232,0.186199,0.100809,0.773408,0.854204,0.486396,0.954737,0.872193,0.847202,0.0471565,0.625492,0.434342,0.543565,0.262023,0.885154,0.556711,0.402548,0.910022,0.942696,0.471279,0.840767,0.4407,0.390746,0.110725,0.61543,0.000176311,0.29623,0.508381,0.342659,0.589606,0.242918,0.69899,0.917499,0.787442,0.81343,0.253326,0.182119,0.0271484,0.604171,0.489637,0.892489,0.583113,0.612754,0.0493729,0.797084,0.119411,0.106167,0.190318,0.465536,0.286609,0.316915,0.323377,0.684434,0.133306,0.93576,0.442201,0.0728115,0.236609,0.984708,0.0521212,0.39402,0.407109,0.397946,0.284327,0.48754,0.871261,0.390504,0.699695,0.866361,0.126877,0.192829,0.0684215,0.267235,0.663094,0.75907,0.0231638,0.146194,0.451828,0.349149,0.979346,0.0650465,0.613548,0.720439,0.739074,0.519763,0.494954,0.90882,0.342747,0.901738,0.994925,0.528866,0.429472,0.56082,0.692744,0.891434,0.515725,0.310725,0.00892687,0.623335,0.1147,0.92826,0.753768,0.414978,0.570988,0.733283,0.594339,0.458331,0.0228652,0.458198,0.815478,0.534063,0.896168,0.639644,0.85184,0.811852,0.0924754,0.579037,0.820024,0.0334823,0.453288,0.731269,0.986669,0.375678,0.748836,0.687535,0.561112,0.169605,0.144302,0.583038,0.341977,0.495121,0.687895,0.48062,0.654558,0.90034,0.123225,0.0492659,0.117403,0.11863,0.51061,0.647778,0.36769,0.0742302,0.659576,0.530854,0.185125,0.323967,0.875811,0.747978,0.296099,0.0607884,0.264306,0.461,0.756622,0.0687811,0.116931,0.162209,0.683502,0.382943,0.111858,0.575775,0.403441,0.0569877,0.989505,0.138313,0.577179,0.0671155,0.784885,0.0482783,0.733205,0.322859,0.259142,0.212634,0.9828,0.95652,0.233123,0.430287,0.756108,0.891484,0.0942796,0.232873,0.0166484,0.374906,0.0445943,0.713273,0.196103,0.125073,0.437695,0.364903,0.61055,0.0948085,0.501407,0.489821,0.609929,0.925752,0.303183,0.469276,0.0318469,0.207677,0.788464,0.39317,0.638814,0.320999,0.617793,0.990256,0.894814,0.780622,0.317466,0.253699,0.535649,0.687585,0.334827,0.439307,0.733517,0.705687,0.319216,0.121657,0.17962,0.875708,0.0925587,0.880059,0.719034,0.276753,0.679897,0.359721,0.621967,0.0666699,0.439441,0.584254,0.747366,0.340301,0.162597,0.684979,0.654678,0.638887,0.760876,0.322589,0.258593,0.180794,0.14649,0.0599147,0.796785,0.99625,0.878349,0.813916,0.581226,0.94801,0.262523,0.607174,0.742628,0.0394313,0.0873649,0.695133,0.362475,0.424519,0.36429,0.0141171,0.278458,0.93472,0.465009,0.610103,0.551251,0.196213,0.965228,|0.705668,0.128874,0.461076,0.927188,0.181654,0.591753,0.526142,0.882789,0.152511,0.552459,0.807424,0.197229,0.839419,0.993645,0.0809475,0.854057,0.97347,0.103086,0.840729,0.658237,0.67814,0.96011,0.879663,0.950082,0.105272,0.29395,0.115715,0.731331,0.590881,0.183288,0.317346,0.653227,0.635055,0.262057,0.320819,0.0897583,0.717108,0.81205,0.476014,0.0087387,0.173448,0.37634,0.168331,0.219235,0.0752152,0.965949,0.970029,0.878577,0.850008,0.0764058,0.176969,0.551526,0.20559,0.789366,0.707402,0.675178,0.929578,0.49003,0.206571,0.0878674,0.264347,0.502659,0.111652,0.989201,0.373057,0.196184,0.13299,0.292125,0.933804,0.528734,0.0403607,0.325331,0.286225,0.231367,0.0471912,0.777206,0.307074,0.790489,0.584273,0.364955,0.815561,0.78391,0.906217,0.0118875,0.35685,0.0437477,0.0948173,0.205084,0.492648,0.718563,0.987014,0.6799,0.669266,0.246348,0.293928,0.671125,0.796772,0.247167,0.819105,0.213913,0.679751,0.843571,0.493609,0.770138,0.755286,0.488875,0.108627,0.383326,0.970546,0.316869,0.151078,0.784722,0.518533,0.0478968,0.190243,0.748802,0.888447,0.6368,0.923221,0.578487,0.827556,0.0894974,0.463323,0.466809,0.452792,0.917746,0.994331,0.43908,0.427093,0.935326,0.899765,0.533129,0.923796,0.162825,0.192027,0.543083,0.448454,0.128919,0.472831,0.241261,0.197092,0.222291,0.570537,0.186033,0.26082,0.667365,0.435361,0.118402,0.140457,0.690881,0.561928,0.185573,0.596052,0.499734,0.665329,0.539885,0.745129,0.802374,0.631608,0.882408,0.990699,0.346865,0.096868,0.881159,0.0522351,0.337567,0.0396571,0.292382,0.749987,0.326216,0.741467,0.464567,0.0671025,0.166857,0.119449,0.117105,0.834419,0.446598,0.976551,0.154687,0.635371,0.818295,0.511769,0.419163,0.558694,0.433183,0.826231,0.425689,0.0322133,0.87152,0.27375,0.906517,0.296226,0.848589,0.515821,0.755508,0.781462,0.649551,0.556807,0.938719,0.953875,0.197292,0.824185,0.836568,0.83885,0.457106,0.349155,0.656417,0.134288,0.596547,0.354113,0.443543,0.724548,0.00594771,0.659953,0.539825,0.894302,0.0745943,0.101578,0.58558,0.971588,0.780947,0.941813,0.620682,0.131413,0.74861,0.00215113,0.241031,0.416578,0.143958,0.888627,0.0371016,0.444581,0.590478,0.270672,0.988048,0.85226,0.594062,0.0922994,0.666166,0.0418371,0.324752,0.928984,0.731603,0.771892,0.380611,0.002231,0.449845,0.708201,0.0714524,0.0134131,0.861625,0.786227,0.230812,0.106415,0.118165,0.830523,0.826143,0.527294,0.84119,0.620641,0.229309,0.885074,0.101725,0.328069,0.274495,0.967194,0.545058,0.808326,0.0453096,0.919219,0.43747,0.449908,0.248239,0.0546584,0.263766,0.330545,0.54111,0.734852,0.873809,0.73824,0.351322,0.981451,0.215487,0.018728,0.251151,0.487631,0.798142,0.922352,0.449682,0.862232,0.708672,0.664964,0.32638,0.217238,0.490137,0.42875,0.0361553,0.659813,0.635294,0.382028,0.27186,0.241038,0.0915953,0.470348,0.238765,0.342035,0.328331,0.911925,0.975632,0.811548,0.249156,0.610416,0.291268,0.325479,0.81199,0.765499,0.0814995,0.791953,0.0240492,0.210856,0.0424103,0.761349,0.442161,0.789069,0.475632,0.0324973,0.739342,0.738614,0.526866,0.763955,0.850662,0.554992,0.950647,0.403077,0.158069,0.339788,0.574277,0.546638,0.951953,0.648737,0.439213,0.841057,0.691143,0.0961038,0.940326,0.266962,0.181715,0.138951,0.552172,0.600904,0.58647,0.281705,0.504261,0.792103,0.119729,0.0808359,0.59824,0.0278537,0.99658,0.555613,0.930751,0.57718,0.751437,0.2501,0.673127,0.84924,0.898644,0.305586,0.649975,0.378972,0.234796,0.611581,0.866304,0.338408,0.53472,0.111553,0.0325614,0.861107,0.0277347,0.025532,0.152599,0.995224,0.479359,0.384621,0.88564,0.0159079,0.878568,0.325812,0.915406,0.36736,0.634397,0.778004,0.469084,0.224426,0.576402,0.819841,0.978438,0.0500918,0.905924,0.591286,0.653405,0.0342553,0.263223,0.7631,0.414721,0.107265,0.765072,0.571896,0.940395,0.969964,0.851302,0.135362,0.727587,0.640342,0.183591,0.0714829,0.42494,0.389751,0.466921,0.495689,0.603297,0.859969,0.108753,0.0544798,0.224916,0.192214,0.399255,0.700479,0.46225,0.473715,0.295755,0.603625,0.2133,0.595973,0.104349,0.104673,0.543752,0.526362,0.958255,0.789702,0.753542,0.916192,0.512132,0.929251,0.189667,0.00876868,0.384786,0.26829,0.14062,0.88348,0.815465,0.85443,0.128087,0.199398,0.0401376,0.682833,0.965318,0.781674,0.120645,0.717852,0.504289,0.503776,0.740676,0.86483,0.720897,0.888897,0.821569,0.302468,0.315517,0.736977,0.747751,0.695019,0.290346,0.267972,0.343252,0.846082,0.717334,0.212919,0.448885,0.536551,0.251724,0.500416,0.492763,0.472478,0.784335,0.885659,0.710666,0.225575,0.698884,0.957865,0.563725,0.24211,0.374223,0.402791,0.158001,0.296271,0.583953,0.192859,0.264395,0.879105,0.100825,0.796171,0.594655,0.844462,0.687615,0.70714,0.765926,0.967092,0.79771,0.29902,0.580571,0.824611,0.562576,0.118079,0.799378,0.490128,0.230377,0.4668,0.052765,0.349709,0.160362,0.521459,0.937796,0.537566,0.17433,0.0479947,0.131372,0.350972,0.753997,0.0346207,0.331446,0.252925,0.309271,0.288343,0.278513,0.0679271,0.616328,0.0147123,0.301022,0.41471,0.537179,0.0386699,0.297892,0.620236,0.5315,0.0412779,0.722795,0.752557,0.986663,0.782012,0.718455,0.778509,0.0977727,0.90946,0.540706,0.803938,0.655154,0.507931,0.048895,0.274222,0.729538,0.955017,0.539893,0.00788289,0.655053,0.199529,0.941309,0.906898,0.052317,0.53648,0.671807,0.525056,0.454152,0.783391,0.451784,0.763122,0.532231,0.84216,0.858644,0.0180846,0.835437,0.280248,0.262733,0.949556,0.428007,0.747243,0.271828,0.20081,0.686979,0.414846,0.657548,0.804135,0.253718,0.366048,0.541371,0.500813,0.478219,0.241355,0.844154,0.25357,0.643803,0.885583,0.531094,0.929629,0.805519,0.107695,0.402425,0.48233,0.661279,0.369442,0.0547667,0.175423,0.500404,0.50336,0.616356,0.0503879,0.489636,0.839637,0.129386,0.430718,0.244423,0.655566,0.394588,0.411127,0.671256,0.358437,0.886288,0.423387,0.209401,0.538153,0.160849,0.465063,0.319761,0.727193,0.555823,0.046701,0.440926,0.983522,0.160153,0.93853,0.59397,0.768822,0.931494,0.160455,0.439044,0.291897,0.863149,0.294534,0.119789,0.869713,0.125193,0.913527,0.363514,0.740399,0.707437,0.760833,0.286763,0.135831,0.407096,0.343869,0.186962,0.271581,0.0329163,0.139959,0.225547,0.450417,0.360429,0.806939,0.374522,0.824534,0.45492,0.533312,0.698186,0.156608,0.424162,0.60445,0.462012,0.131835,0.271208,0.190796,0.89875,0.453327,0.712152,0.868464,0.349027,0.853925,0.26039,0.717165,0.440645,0.940941,0.619462,0.0797051,0.735194,0.204676,0.499657,0.100274,0.768562,0.984324,0.462694,0.984904,0.402487,0.0978531,0.291947,0.557142,0.519654,0.209297,0.0283992,0.011744,0.691512,0.176042,0.305688,0.912868,0.373614,0.547723,0.174997,0.86779,0.701793,0.475682,0.159685,0.378844,0.108286,0.0396336,0.128988,0.61343,0.549159,0.498418,0.849098,0.200257,0.157541,0.953182,0.472142,0.262353,0.220268,0.9207,0.493998,0.291498,0.0010038,0.482784,0.492225,0.219677,0.0580422,0.552287,0.841248,0.201862,0.491836,0.249823,0.940195,0.189019,0.303812,0.401821,0.797773,0.51123,0.560577,0.0579315,0.0861706,0.427089,0.572973,0.794469,0.851207,0.128743,0.242965,0.180545,0.0447938,0.0817815,0.786932,0.558959,0.752814,0.713213,0.526587,0.170783,0.541699,0.41734,0.229418,0.889934,0.828556,0.874096,0.907317,0.358409,0.852738,0.632534,0.744225,0.579356,0.533238,0.183402,0.861532,0.154297,0.351342,0.875713,0.708047,0.794664,0.518692,0.431686,0.875723,0.73662,0.787146,0.52892,0.929593,0.925186,0.987517,0.695134,0.502094,0.194306,0.855692,0.759591,0.814918,0.800148,0.0389044,0.591422,0.911752,0.327879,0.645884,0.511054,0.172626,0.692819,0.245622,0.461658,0.541719,0.506774,0.40206,0.880425,0.908346,0.71958,0.327411,0.37324,0.141039,0.914553,0.452243,0.749727,0.357851,0.342475,0.735675,0.773652,0.891439,0.379386,0.33869,0.983733,0.663542,0.863662,0.763147,0.648149,0.044418,0.374907,0.413387,0.778923,0.335381,0.394746,0.290684,0.155257,0.923698,0.744274,0.314537,0.414134,0.915859,0.526021,0.475698,0.0911928,0.0333691,0.975526,0.188111,0.561564,0.492431,0.341551,0.547092,0.380025,0.476657,0.654956,0.917293,0.608863,0.0237182,0.236979,0.222558,0.371942,0.732262,0.291195,0.625954,0.0222327,0.386115,0.52023,0.517887,0.240607,0.666655,0.693262,0.440504,0.124282,0.846667,0.308269,0.917225,0.999406,0.28992,0.303427,0.524841,0.48474,0.681795,0.626279,0.719809,0.765353,0.732692,0.859779,0.0594451,0.0404899,0.436013,0.270655,0.855991,0.723674,0.0726106,0.550091,0.116346,0.328255,0.839614,0.208481,0.652585,0.572154,0.0121291,0.404386,0.561019,0.760121,0.817857,0.94089,0.0315197,0.849154,0.248922,0.156097,0.660658,0.980994,0.617617,0.63867,0.737232,0.307345,0.444994,0.311219,0.0841726,0.151391,0.569412,0.693137,0.21716,0.683337,0.245071,0.680787,0.0254771,0.13387,0.983836,0.91744,0.501749,0.615283,0.945717,0.200251,0.670475,0.309815,0.112516,0.581657,0.142434,0.95298,0.954307,0.615966,0.403996,0.545088,0.748901,0.0878279,0.535393,0.244053,0.904367,0.998208,0.515987,0.788965,0.717606,0.561012,0.614524,0.426909,0.463575,0.721332,0.974149,0.744518,0.832825,0.308693,0.5468,0.260006,0.736603,0.51923,0.452953,0.809443,0.672398,0.565923,0.273136,0.271616,0.983394,0.581374,0.986729,0.37309,0.3204,0.996628,0.190425,0.249493,0.746417,0.732784,0.281383,0.66694,0.561033,0.769019,0.627102,|0.80866,0.343679,0.933544,0.847992,0.530967,0.719696,0.964487,0.560436,0.439794,0.0944891,0.496022,0.375577,0.0667596,0.171246,0.0468206,0.164545,0.758301,0.532384,0.437241,0.913095,0.011568,0.295752,0.898499,0.775462,0.826373,0.228972,0.877897,0.0858466,0.874965,0.139061,0.889627,0.0980839,0.133253,0.425602,0.23587,0.318927,0.944072,0.609685,0.388303,0.0691999,0.278202,0.288104,0.80702,0.320437,0.955534,0.701091,0.88427,0.37524,0.16044,0.12408,0.047211,0.216341,0.959804,0.46291,0.0572698,0.610887,0.397581,0.912235,0.562634,0.701114,0.716587,0.104116,0.716294,0.985668,0.77362,0.277685,0.832256,0.268339,0.856744,0.61698,0.234203,0.553642,0.536256,0.792746,0.576684,0.570328,0.622379,0.515974,0.45501,0.979313,0.83902,0.0699095,0.170907,0.00263387,0.0457436,0.551716,0.572969,0.598725,0.497651,0.943846,0.603808,0.810392,0.805479,0.38187,0.649389,0.4091,0.866528,0.470429,0.121934,0.151578,0.233793,0.694304,0.955575,0.247512,0.0443775,0.276725,0.512838,0.0946289,0.831077,0.380396,0.854505,0.807633,0.449006,0.798812,0.670384,0.224454,0.751035,0.537065,0.0345982,0.326248,0.0656689,0.387829,0.791939,0.703551,0.998727,0.848014,0.710274,0.0230162,0.57988,0.19397,0.368543,0.952573,0.788038,0.300468,0.390906,0.187805,0.142758,0.986699,0.601862,0.129918,0.164515,0.372154,0.196397,0.361132,0.916161,0.731274,0.902333,0.682572,0.751186,0.605184,0.602753,0.333805,0.625107,0.160292,0.330845,0.786994,0.191952,0.356689,0.637169,0.549482,0.471264,0.617993,0.302902,0.563677,0.199293,0.749286,0.876585,0.0682141,0.97299,0.433784,0.169411,0.754579,0.30762,0.192489,0.680835,0.354753,0.522652,0.828825,0.548377,0.915621,0.125498,0.899406,0.99262,0.569571,0.98761,0.754825,0.0702441,0.363778,0.804001,0.260269,0.300349,0.226776,0.628174,0.86989,0.118964,0.0473967,0.495325,0.870049,0.125751,0.219483,0.536071,0.579596,0.770664,0.358919,0.321368,0.64844,0.357171,0.787035,0.388925,0.442295,0.865903,0.824577,0.290969,0.39167,0.251157,0.29895,0.877181,0.616461,0.417409,0.529752,0.144184,0.899213,0.286424,0.245611,0.765824,0.349881,0.752376,0.998075,0.49574,0.988939,0.569602,0.728784,0.377786,0.138816,0.232612,0.620828,0.476413,0.787926,0.430243,0.971649,0.0344432,0.950621,0.778077,0.681817,0.361815,0.859536,0.536691,0.606052,0.450232,0.257716,0.187274,0.876116,0.156043,0.0710949,0.420175,0.567922,0.6311,0.121482,0.60019,0.608665,0.375782,0.946971,0.577438,0.134146,0.681393,0.352157,0.73562,0.52831,0.147419,0.518172,0.276181,0.629558,0.627146,0.513775,0.620682,0.351953,0.53244,0.732902,0.171595,0.746912,0.740285,0.989213,0.600008,0.0178366,0.951661,0.466162,0.878432,0.383303,0.245427,0.802599,0.0269592,0.00534695,0.231227,0.876105,0.14234,0.849102,0.982967,0.890507,0.709019,0.615633,0.515729,0.656503,0.641164,0.402099,0.458697,0.869156,0.39128,0.389283,0.493235,0.47666,0.485349,0.602997,0.131765,0.403369,0.930534,0.147303,0.580159,0.862562,0.953833,0.959926,0.243894,0.917708,0.959488,0.611689,0.144099,0.625514,0.938682,0.969227,0.0156329,0.43116,0.782014,0.948359,0.0257421,0.418205,0.07665,0.812449,0.0590024,0.799566,0.080887,0.548812,0.561842,0.345085,0.711392,0.803282,0.191499,0.665933,0.663683,0.560148,0.522794,0.0729029,0.730925,0.934381,0.157068,0.54333,0.424115,0.315446,0.612278,0.00461102,0.0706778,0.51936,0.934467,0.907851,0.914789,0.347976,0.48592,0.650017,0.371939,0.684494,0.084911,0.268722,0.921441,0.207693,0.629651,0.817345,0.231097,0.617274,0.577515,0.874876,0.621857,0.0886341,0.0479913,0.335609,0.897481,0.873901,0.258835,0.398372,0.426289,0.673235,0.222885,0.980199,0.451534,0.773187,0.00113857,0.112211,0.979607,0.356889,0.954464,0.472387,0.211258,0.783048,0.612197,0.936865,0.486649,0.83905,0.119797,0.115145,0.41629,0.90506,0.983282,0.0394936,0.373275,0.390377,0.648545,0.294565,0.419173,0.968334,0.993504,0.365305,0.171174,0.32817,0.905723,0.220716,0.499627,0.247193,0.566646,0.979607,0.601322,0.179699,0.36531,0.05261,0.623014,0.0533437,0.0609236,0.472735,0.303003,0.0698211,0.740532,0.0355165,0.00118792,0.284597,0.793562,0.0676355,0.589527,0.364398,0.747838,0.523116,0.0102822,0.766353,0.71138,0.913546,0.20522,0.847345,0.0513662,0.255788,0.692486,0.805266,0.580792,0.591121,0.707622,0.784373,0.370254,0.694079,0.318774,0.0668219,0.764592,0.968267,0.448541,0.0591688,0.530687,0.901906,0.0669481,0.40374,0.655182,0.307692,0.676041,0.552065,0.488518,0.0260263,0.17856,0.643709,0.428259,0.707635,0.335536,0.470226,0.119532,0.857645,0.0206095,0.733074,0.00201416,0.8062,0.695961,0.367642,0.985137,0.833619,0.896745,0.486227,0.190707,0.144713,0.193023,0.502787,0.360056,0.220737,0.652136,0.788275,0.681938,0.347662,0.571574,0.021004,0.386941,0.744928,0.224859,0.524226,0.532968,0.196914,0.45026,0.129274,0.314735,0.398648,0.282025,0.165249,0.141253,0.847329,0.786633,0.506113,0.398298,0.331412,0.470054,0.169795,0.730794,0.872479,0.998985,0.637953,0.579387,0.137739,0.828213,0.455935,0.573644,0.712036,0.909885,0.577137,0.877736,0.984496,0.967731,0.58428,0.363521,0.210474,0.660368,0.809765,0.702728,0.136682,0.987235,0.799241,0.211791,0.922578,0.134264,0.254303,0.00791615,0.241228,0.597689,0.86141,0.116712,0.921362,0.902762,0.798628,0.580112,0.51357,0.325131,0.564593,0.783835,0.855945,0.522902,0.0884405,0.346884,0.931628,0.995427,0.488355,0.295014,0.987916,0.431056,0.470169,0.921859,0.0346209,0.108949,0.801803,0.214864,0.281305,0.597885,0.241327,0.16033,0.637822,0.683202,0.369574,0.344681,0.0240021,0.961275,0.870454,0.971567,0.866353,0.327234,0.920354,0.736401,0.31563,0.0434744,0.277435,0.507704,0.0485736,0.765054,0.0862609,0.585587,0.378603,0.970886,0.45641,0.682566,0.84884,0.0429227,0.962831,0.614074,0.172003,0.789042,0.215204,0.840072,0.153916,0.259098,0.962394,0.503983,0.852139,0.205126,0.178308,0.50943,0.716134,0.650735,0.964615,0.984022,0.246152,0.243391,0.446315,0.776082,0.393404,0.458603,0.993172,0.482207,0.260778,0.804233,0.540607,0.618159,0.884015,0.317417,0.135691,0.314285,0.168775,0.798829,0.214429,0.303971,0.714594,0.634999,0.454382,0.532902,0.829055,0.191707,0.538977,0.334064,0.761777,0.989889,0.964601,0.533482,0.0412428,0.561817,0.190296,0.654323,0.264254,0.822751,0.401582,0.888933,0.998524,0.939821,0.908005,0.431849,0.769309,0.586327,0.82621,0.550074,0.191917,0.0653276,0.0483676,0.981135,0.150278,0.963608,0.396976,0.202206,0.338095,0.284568,0.16364,0.019821,0.709833,0.793234,0.711361,0.404985,0.173738,0.853757,0.0235237,0.599354,0.901105,0.646394,0.52579,0.335672,0.26461,0.735305,0.318954,0.0253375,0.146304,0.806103,0.770429,0.24265,0.411485,0.448802,0.722926,0.0941167,0.449584,0.885251,0.508449,0.222316,0.483747,0.693812,0.0188639,0.86593,0.0571371,0.759665,0.78912,0.663359,0.906363,0.558782,0.647959,0.192958,0.764085,0.658357,0.548659,0.769765,0.975891,0.459698,0.741376,0.636191,0.732426,0.14522,0.480162,0.409199,0.414944,0.728989,0.876334,0.645614,0.472635,0.625799,0.524571,0.640628,0.363272,0.216891,0.0257862,0.472678,0.041208,0.905901,0.403161,0.590666,0.0350536,0.783592,0.856874,0.987698,0.0540777,0.173378,0.185525,0.0350521,0.0502815,0.731083,0.827466,0.544786,0.77531,0.434247,0.830548,0.639527,0.872165,0.944459,0.61319,0.52848,0.114097,0.143433,0.673985,0.912241,0.955922,0.0086537,0.240654,0.086695,0.657735,0.569222,0.218849,0.967786,0.540708,0.115557,0.260682,0.474028,0.863202,0.0832254,0.0189521,0.773881,0.224222,0.986462,0.855049,0.579546,0.536773,0.055608,0.917026,0.0640131,0.0896258,0.239327,0.356723,0.559462,0.476772,0.398571,0.232327,0.0432997,0.346422,0.00441819,0.681385,0.454176,0.848214,0.0415887,0.388084,0.825421,0.342857,0.39296,0.509949,0.542703,0.63873,0.129349,0.683027,0.0981816,0.985811,0.449356,0.297171,0.0879245,0.385249,0.766103,0.565258,0.743151,0.289097,0.791741,0.990587,0.409477,0.35003,0.544334,0.77937,0.448282,0.786488,0.886626,0.532208,0.656125,0.111574,0.432613,0.470614,0.987905,0.535194,0.425595,0.105308,0.241136,0.418173,0.341635,0.524132,0.348585,0.557523,0.0752894,0.32105,0.474972,0.328624,0.922083,0.465134,0.0115601,0.259214,0.624842,0.397651,0.290771,0.740967,0.13423,0.357557,0.98254,0.306267,0.863846,0.796686,0.260742,0.441964,0.728566,0.985615,0.564838,0.141366,0.563416,0.740807,0.609916,0.760431,0.796524,0.14775,0.771768,0.985811,0.409095,0.383829,0.704843,0.430167,0.663447,0.748713,0.223056,0.662308,0.782725,0.904771,0.205114,0.970361,0.786854,0.262614,0.880961,0.919149,0.614129,0.158602,0.519925,0.5876,0.492993,0.928573,0.417118,0.366995,0.645392,0.839762,0.912456,0.689173,0.378647,0.786013,0.500908,0.592252,0.748058,0.106512,0.867927,0.282688,0.909511,0.381698,0.729344,0.335778,0.0833074,0.482813,0.522439,0.976786,0.784659,0.081664,0.0533687,0.586926,0.885644,0.451926,0.401647,0.429874,0.925314,0.76851,0.740588,0.940049,0.267171,0.722229,0.30469,0.384968,0.784775,0.423872,0.880536,0.836341,0.99386,0.354821,0.225351,0.311025,0.180701,0.0652543,0.199191,0.654031,0.78144,0.475213,0.369459,0.00365257,0.325222,0.607492,0.499288,0.702323,0.582176,0.908535,0.803465,0.180822,0.103156,0.317412,0.163151,0.0262274,0.323375,0.443611,0.596767,0.807938,0.68868,0.205293,0.867137,0.603063,0.443946,0.17857,0.498559,0.825329,0.285848,0.22375,|0.902025,0.199045,0.806154,0.796798,0.238425,0.518984,0.506451,0.257891,0.252717,0.706065,0.268975,0.485806,0.00898266,0.665763,0.249731,0.285635,0.41413,0.83165,0.285863,0.589659,0.898161,0.171756,0.2899,0.561031,0.777538,0.236235,0.845355,0.768537,0.493928,0.785571,0.0450574,0.751983,0.46708,0.289361,0.723854,0.838398,0.209605,0.156081,0.955792,0.838216,0.0289521,0.443296,0.417554,0.192726,0.489294,0.699624,0.796396,0.356486,0.319016,0.501899,0.731565,0.461349,0.596572,0.030298,0.340869,0.778706,0.237997,0.180972,0.184864,0.250667,0.903057,0.238649,0.894193,0.43193,0.959204,0.565065,0.511156,0.0939485,0.35705,0.417501,0.530547,0.478425,0.0806926,0.395156,0.876916,0.613428,0.709372,0.777989,0.951409,0.46144,0.545552,0.916189,0.24903,0.67714,0.570492,0.169413,0.156489,0.456082,0.462852,0.394326,0.276379,0.494398,0.110256,0.955287,0.335993,0.400466,0.599128,0.457306,0.676096,0.126009,0.479133,0.798165,0.0483586,0.950985,0.146336,0.701817,0.60101,0.138161,0.846722,0.0342879,0.524961,0.0682275,0.672644,0.390415,0.0319756,0.0188772,0.0128711,0.986253,0.434235,0.325718,0.652146,0.491395,0.417355,0.200954,0.399934,0.948344,0.469878,0.779596,0.943426,0.338544,0.14747,0.804238,0.0565996,0.202803,0.36772,0.623045,0.310725,0.728894,0.940157,0.103278,0.775643,0.0672449,0.138761,0.538302,0.0098663,0.360383,0.645166,0.747908,0.252912,0.44509,0.74065,0.929041,0.0684799,0.360539,0.179236,0.668974,0.3648,0.627698,0.7279,0.23719,0.592272,0.101523,0.511158,0.77257,0.870754,0.11775,0.811251,0.0857545,0.551358,0.974909,0.639848,0.390208,0.965375,0.0942397,0.108909,0.60063,0.308806,0.860827,0.778304,0.010319,0.700016,0.248466,0.869517,0.486823,0.595802,0.322685,0.480376,0.558401,0.115917,0.622763,0.269262,0.364537,0.0205283,0.69961,0.497385,0.706582,0.252937,0.268772,0.890963,0.916948,0.0966696,0.86535,0.44394,0.56326,0.847522,0.918392,0.289778,0.98938,0.376547,0.502693,0.404159,0.527441,0.371653,0.616589,0.353409,0.631776,0.928517,0.730549,0.41307,0.221437,0.877048,0.823449,0.45689,0.178246,0.709567,0.794865,0.341339,0.0783395,0.663234,0.230081,0.704814,0.368764,0.814608,0.456558,0.71118,0.319434,0.572544,0.738526,0.447889,0.330368,0.786342,0.603552,0.991172,0.9287,0.160788,0.274475,0.020227,0.939728,0.122883,0.983956,0.48079,0.614674,0.568802,0.865612,0.343242,0.107543,0.531605,0.0169669,0.120839,0.410667,0.333592,0.166338,0.629226,0.200402,0.700777,0.621004,0.600084,0.499431,0.522947,0.447534,0.17295,0.287194,0.384388,0.0160443,0.620412,0.179255,0.829705,0.193072,0.208019,0.0161583,0.699684,0.868456,0.171489,0.0255148,0.358755,0.661086,0.258603,0.198887,0.706175,0.80823,0.439708,0.390266,0.788485,0.00930351,0.805406,0.0190034,0.35803,0.0556993,0.228723,0.6565,0.808321,0.216125,0.802161,0.590664,0.946717,0.677798,0.362776,0.650694,0.291739,0.00783932,0.991306,0.39743,0.418161,0.784169,0.610796,0.896719,0.798577,0.0805487,0.349172,0.345213,0.905115,0.747954,0.770698,0.686965,0.37764,0.768579,0.490012,0.40628,0.653365,0.694525,0.965302,0.691406,0.875685,0.124529,0.136628,0.264749,0.390548,0.429237,0.940188,0.745483,0.755819,0.276034,0.806226,0.761798,0.436775,0.0442279,0.128303,0.707192,0.266167,0.580274,0.114265,0.5338,0.876162,0.649629,0.763464,0.998894,0.0545717,0.737046,0.179606,0.270752,0.489627,0.3871,0.489355,0.498998,0.0873098,0.0766413,0.795433,0.373577,0.785168,0.965162,0.945554,0.876562,0.478437,0.28431,0.628632,0.741574,0.423218,0.462679,0.114869,0.871385,0.622922,0.989851,0.0817986,0.147119,0.97051,0.904931,0.666131,0.547116,0.0494683,0.441942,0.901036,0.771944,0.130953,0.0464157,0.0661626,0.845311,0.664452,0.0635133,0.491222,0.277127,0.561402,0.540139,0.876265,0.420877,0.639308,0.111066,0.310817,0.685028,0.830349,0.895329,0.276238,0.378676,0.428507,0.090661,0.956296,0.194169,0.464186,0.691779,0.413505,0.00486463,0.668352,0.638291,0.813205,0.931788,0.674475,0.78351,0.961123,0.20331,0.0109857,0.743531,0.444522,0.536606,0.685302,0.358088,0.930972,0.943366,0.845732,0.432486,0.0303589,0.569651,0.450774,0.263899,0.727954,0.486391,0.565979,0.691406,0.0786141,0.688089,0.816221,0.374263,0.97543,0.176778,0.265413,0.797696,0.777508,0.283249,0.409347,0.304287,0.168024,0.501988,0.550918,0.122449,0.827236,0.000599146,0.378442,0.870325,0.848814,0.0464857,0.179083,0.0146573,0.64702,0.642495,0.571862,0.720066,0.59139,0.87473,0.113156,0.00265038,0.433921,0.655316,0.667328,0.791384,0.984255,0.410233,0.123542,0.694741,0.606414,0.126624,0.956123,0.469447,0.893327,0.484281,0.161405,0.00236493,0.00387424,0.79993,0.240909,0.335372,0.358556,0.287327,0.259533,0.565213,0.162077,0.698037,0.544445,0.760494,0.220318,0.888348,0.852364,0.485949,0.875844,0.0451572,0.919885,0.996042,0.640895,0.526881,0.300098,0.797442,0.446478,0.373492,0.785777,0.993532,0.957976,0.665271,0.890893,0.162021,0.611618,0.526829,0.688933,0.421661,0.809391,0.862411,0.0453377,0.437644,0.0407104,0.308499,0.67416,0.180204,0.0932462,0.846307,0.911862,0.0472698,0.823892,0.369391,0.140622,0.536163,0.597754,0.646765,0.293743,0.947875,0.0405246,0.159002,0.257379,0.154718,0.263948,0.373974,0.372952,0.89914,0.270173,0.818714,0.443264,0.632295,0.0673517,0.8117,0.344701,0.699399,0.281979,0.0693697,0.34063,0.790869,0.515144,0.978154,0.715424,0.497767,0.264163,0.974641,0.477826,0.837009,0.0854792,0.850772,0.640425,0.0833069,0.190074,0.291326,0.556561,0.0274559,0.132906,0.278524,0.817799,0.575877,0.87468,0.620387,0.67251,0.64703,0.443219,0.678793,0.836101,0.466408,0.463762,0.0121524,0.743306,0.460064,0.720732,0.670256,0.854807,0.83163,0.629892,0.483844,0.301235,0.666073,0.963771,0.183418,0.46673,0.276622,0.0686432,0.261899,0.326445,0.455236,0.190583,0.305593,0.0158518,0.316118,0.491432,0.305019,0.149331,0.6929,0.219652,0.758651,0.739876,0.110045,0.608302,0.708111,0.798416,0.827816,0.859843,0.98342,0.193649,0.871792,0.233837,0.0763943,0.289574,0.868293,0.246695,0.292823,0.837848,0.136719,0.266882,0.92231,0.0569496,0.430717,0.56091,0.86515,0.48535,0.00672126,0.488006,0.0819548,0.713535,0.0897893,0.0743777,0.190207,0.191958,0.696579,0.85571,0.719221,0.368199,0.378796,0.56718,0.369383,0.922502,0.874498,0.431257,0.927732,0.701882,0.365864,0.0814993,0.129986,0.255152,0.786983,0.510742,0.248658,0.40423,0.428191,0.639931,0.128687,0.221817,0.897071,0.375414,0.191076,0.602121,0.905926,0.190027,0.69037,0.891483,0.000832975,0.738864,0.241264,0.557446,0.216054,0.225198,0.538176,0.130559,0.631079,0.516021,0.442917,0.683943,0.947834,0.406414,0.625199,0.105017,0.000407755,0.895178,0.119414,0.375814,0.455038,0.219146,0.0792869,0.0168403,0.908428,0.923568,0.291456,0.45253,0.0877556,0.10965,0.0196808,0.0488507,0.954654,0.104208,0.131164,0.527228,0.811276,0.907275,0.489107,0.68478,0.984955,0.272157,0.536307,0.688704,0.372538,0.33675,0.14851,0.799152,0.565108,0.373468,0.433094,0.681512,0.415418,0.932021,0.695965,0.550545,0.281274,0.351384,0.768721,0.0149059,0.283076,0.0202918,0.149779,0.271626,0.860861,0.57403,0.59861,0.747229,0.863424,0.189448,0.458809,0.885936,0.223327,0.170368,0.836562,0.745407,0.422967,0.219734,0.951529,0.70001,0.892038,0.923779,0.670207,0.261418,0.844568,0.156925,0.591971,0.729025,0.161065,0.0440786,0.602075,0.788536,0.443228,0.386069,0.0466318,0.19129,0.971912,0.382553,0.593219,0.758571,0.119868,0.372179,0.271099,0.120172,0.0689895,0.129307,0.143064,0.854595,0.458331,0.820114,0.426662,0.384747,0.209847,0.434981,0.849963,0.276719,0.489679,0.785987,0.290472,0.152184,0.672197,0.39735,0.834509,0.264943,0.0170273,0.407212,0.927016,0.547798,0.17179,0.328897,0.961816,0.912516,0.962869,0.0626884,0.355542,0.454938,0.738688,0.64688,0.650883,0.171426,0.158653,0.480005,0.69173,0.478732,0.623547,0.755337,0.57104,0.0616847,0.717693,0.630196,0.878462,0.795382,0.300967,0.89138,0.605218,0.317184,0.875556,0.19344,0.879688,0.723221,0.837196,0.673529,0.531411,0.253679,0.692861,0.562301,0.715165,0.791298,0.857988,0.864672,0.278807,0.587239,0.53738,0.337926,0.220265,0.442578,0.069464,0.376149,0.0778871,0.876348,0.415426,0.381572,0.409674,0.816257,0.367358,0.818461,0.933649,0.68857,0.766965,0.0186104,0.495042,0.161558,0.416356,0.00663251,0.971006,0.689896,0.388236,0.211258,0.512681,0.787848,0.227285,0.986212,0.982529,0.670692,0.457809,0.724675,0.521429,0.592135,0.875418,0.203643,0.243414,0.883348,0.942385,0.450234,0.156727,0.00306213,0.882893,0.78455,0.329703,0.335217,0.683575,0.36658,0.184383,0.0562255,0.780217,0.0198917,0.466756,0.546062,0.215254,0.0883031,0.14961,0.301273,0.694654,0.293456,0.479008,0.390884,0.502463,0.59241,0.76621,0.0786598,0.374963,0.993351,0.747605,0.202365,0.231837,0.668637,0.16973,0.103467,0.529461,0.94871,0.125453,0.663533,0.400491,0.971668,0.179033,0.14994,0.971472,0.527036,0.239391,0.750854,0.434815,0.271603,0.246654,0.980451,0.221347,0.0712196,0.512401,0.346843,0.990039,0.219287,0.800802,0.182462,0.0244833,0.759195,0.0362353,0.923726,0.115141,0.649449,0.133203,0.367134,0.489041,0.23735,0.997086,0.256554,0.838787,0.615017,0.409811,0.320724,0.350576,0.738835,0.825132,0.0366852,0.319058,0.995905,0.444481,0.154495,0.893806,0.79599,0.932623,0.841834,0.24292,0.967009,0.894791,0.600368,0.793971,0.582192,0.286628,|0.586754,0.772425,0.663064,0.290528,0.029945,0.749301,0.210141,0.667404,0.305794,0.849966,0.700379,0.0865397,0.96409,0.359954,0.52513,0.158506,0.834199,0.288997,0.610997,0.432076,0.62032,0.933044,0.447295,0.686319,0.566728,0.401858,0.0865741,0.770767,0.769141,0.750817,0.000839651,0.817272,0.989937,0.0521014,0.492972,0.261279,0.0958439,0.162387,0.821463,0.771747,0.833836,0.27766,0.401703,0.0265622,0.150543,0.368007,0.599481,0.519713,0.184519,0.84565,0.96203,0.256112,0.231112,0.342738,0.707353,0.132118,0.426829,0.476062,0.353936,0.0943389,0.29888,0.428962,0.800164,0.895732,0.224527,0.505961,0.615183,0.590859,0.130886,0.460206,0.196729,0.857,0.943062,0.887793,0.969725,0.572731,0.147998,0.0554399,0.318842,0.328205,0.90412,0.591037,0.416135,0.138424,0.684473,0.432412,0.0768678,0.454211,0.544826,0.716777,0.289219,0.0636632,0.10511,0.215764,0.60057,0.0907395,0.328584,0.489919,0.213654,0.730027,0.673549,0.00710529,0.733444,0.436708,0.176907,0.0399414,0.966057,0.304591,0.0652546,0.857824,0.395837,0.962199,0.165077,0.605945,0.115192,0.277515,0.495697,0.516699,0.18155,0.5628,0.101115,0.863307,0.349781,0.513532,0.937822,0.713741,0.39062,0.272322,0.632574,0.736045,0.242799,0.530263,0.978382,0.273658,0.26292,0.35873,0.651896,0.128853,0.868906,0.408379,0.280519,0.122715,0.373699,0.721979,0.311006,0.724321,0.292093,0.076006,0.68248,0.541827,0.58109,0.33125,0.143946,0.824652,0.729666,0.581272,0.644356,0.276927,0.783297,0.379464,0.569716,0.696075,0.217178,0.488699,0.640184,0.957423,0.864869,0.611887,0.805598,0.99149,0.738949,0.856503,0.301721,0.0751242,0.579216,0.203097,0.523952,0.202848,0.934319,0.936747,0.151199,0.271388,0.987848,0.100001,0.680923,0.597328,0.0681803,0.39383,0.639351,0.94432,0.175994,0.988474,0.145247,0.364714,0.618855,0.0605277,0.263295,0.679091,0.545438,0.260935,0.434216,0.593536,0.527965,0.345766,0.197891,0.784158,0.688509,0.386558,0.124551,0.731287,0.826853,0.277429,0.937667,0.897125,0.331508,0.202615,0.516085,0.804658,0.429673,0.312442,0.0725852,0.747542,0.749243,0.303217,0.931703,0.265883,0.676776,0.682436,0.753812,0.0427576,0.924597,0.499919,0.99694,0.583768,0.456503,0.592333,0.849599,0.955476,0.629167,0.763088,0.335799,0.0363104,0.260032,0.876659,0.962254,0.666071,0.102622,0.399704,0.845584,0.123997,0.354405,0.739756,0.114324,0.397545,0.976787,0.987253,0.985532,0.772797,0.428796,0.0506403,0.775435,0.94473,0.987171,0.48947,0.387224,0.327698,0.313923,0.872973,0.52058,0.515972,0.752872,0.818829,0.142524,0.656744,0.687674,0.0363036,0.151567,0.673623,0.264822,0.782071,0.321135,0.0442063,0.300863,0.89322,0.551013,0.114699,0.0313452,0.495525,0.907265,0.262273,0.332171,0.672435,0.531592,0.724509,0.0724401,0.714539,0.487045,0.157241,0.0312865,0.905838,0.0817224,0.122886,0.173106,0.448972,0.958548,0.144618,0.58718,0.186923,0.159431,0.24619,0.161067,0.666601,0.937304,0.192704,0.855962,0.198788,0.245153,0.739169,0.531205,0.0659584,0.978358,0.937834,0.258968,0.970131,0.386492,0.0636238,0.105316,0.0365815,0.16477,0.258229,0.828366,0.470924,0.431932,0.57682,0.376513,0.302673,0.284146,0.384709,0.431672,0.737587,0.0869205,0.703833,0.580372,0.463084,0.00692385,0.925893,0.998974,0.954485,0.921878,0.47975,0.300692,0.0792262,0.476854,0.215927,0.442353,0.164461,0.26244,0.783417,0.547291,0.739177,0.154018,0.581183,0.35036,0.41766,0.281594,0.649694,0.640608,0.0376618,0.900916,0.0670819,0.00298262,0.214647,0.236296,0.182209,0.915178,0.0268878,0.576895,0.25549,0.484123,0.872891,0.381294,0.919878,0.413419,0.378627,0.913117,0.761252,0.40384,0.910696,0.330396,0.990044,0.63133,0.503774,0.568774,0.192304,0.19857,0.221111,0.454022,0.509416,0.0396145,0.621302,0.327231,0.605383,0.292856,0.715908,0.389104,0.0238199,0.301939,0.902694,0.793426,0.204954,0.723314,0.985832,0.674914,0.144365,0.1141,0.681009,0.494461,0.60555,0.0503292,0.969769,0.389843,0.480068,0.762576,0.195203,0.19246,0.872505,0.926521,0.627687,0.0394309,0.387996,0.899323,0.848373,0.878518,0.834031,0.378213,0.577401,0.0938819,0.813196,0.514626,0.0814593,0.504122,0.0573426,0.828458,0.306739,0.36699,0.518519,0.703607,0.911404,0.197181,0.0502638,0.922928,0.54866,0.872829,0.0974185,0.758324,0.890412,0.607841,0.842616,0.97474,0.257839,0.625264,0.848954,0.478835,0.00327104,0.330277,0.0761951,0.0893682,0.195158,0.502032,0.749245,0.0484763,0.508413,0.075622,0.277806,0.596037,0.577739,0.632899,0.879253,0.404749,0.0310224,0.906643,0.946869,0.720595,0.243297,0.548166,0.303836,0.787738,0.913642,0.290698,0.985731,0.825801,0.650943,0.527217,0.0795954,0.85759,0.687837,0.160342,0.38561,0.514837,0.465673,0.110544,0.205374,0.24577,0.0840769,0.476374,0.435291,0.266463,0.257773,0.763804,0.221265,0.704723,0.840517,0.426317,0.363592,0.0891589,0.0432691,0.962319,0.262435,0.707458,0.288066,0.845069,0.0326088,0.906085,0.832053,0.315104,0.355281,0.32268,0.0860901,0.849588,0.573021,0.464187,0.568706,0.225087,0.577098,0.388865,0.911303,0.139223,0.533881,0.415234,0.760049,0.616945,0.483762,0.940531,0.514275,0.329597,0.204413,0.181223,0.173538,0.0104821,0.702663,0.664527,0.764185,0.965558,0.641864,0.774078,0.351356,0.86003,0.741848,0.535445,0.167936,0.830955,0.415798,0.0708268,0.163347,0.850023,0.753561,0.891133,0.156007,0.73916,0.973258,0.316705,0.990128,0.920061,0.73172,0.667535,0.477925,0.994557,0.340898,0.807408,0.954138,0.798851,0.388437,0.877714,0.414144,0.81886,0.639673,0.964286,0.807962,0.441985,0.585559,0.617185,0.987871,0.704794,0.945923,0.146925,0.223709,0.785875,0.429352,0.0132453,0.457227,0.928472,0.0556835,0.0412897,0.349323,0.402551,0.208895,0.594014,0.583167,0.504581,0.445474,0.813955,0.935549,0.58951,0.301768,0.871759,0.405597,0.15871,0.019599,0.690752,0.0888578,0.114854,0.56649,0.190531,0.946133,0.129658,0.464369,0.566233,0.732891,0.275045,0.150544,0.144717,0.208527,0.978812,0.592686,0.602852,0.554256,0.234294,0.419731,0.677715,0.439904,0.83459,0.34533,0.541723,0.0664228,0.566295,0.181249,0.372506,0.0741982,0.816644,0.270063,0.320929,0.892512,0.193303,0.601173,0.299491,0.52641,0.556662,0.696206,0.300608,0.929836,0.340863,0.55288,0.530008,0.299706,0.321682,0.236563,0.625403,0.596971,0.391239,0.178472,0.155643,0.968928,0.643917,0.0555364,0.00549221,0.580975,0.700278,0.860458,0.38763,0.88427,0.651814,0.910918,0.715793,0.863948,0.535584,0.560427,0.715638,0.653281,0.0515322,0.801207,0.459581,0.185714,0.340685,0.864966,0.230112,0.104513,0.244234,0.516241,0.649286,0.116427,0.619035,0.867575,0.989018,0.731751,0.873625,0.996869,0.560067,0.994715,0.184001,0.956017,0.812348,0.602083,0.438982,0.562214,0.183246,0.741087,0.685977,0.649771,0.181957,0.574967,0.639972,0.702426,0.0234547,0.675592,0.232023,0.369795,0.773637,0.253893,0.602502,0.960529,0.975624,0.08608,0.288023,0.326621,0.648681,0.0195552,0.333091,0.476086,0.0535126,0.190993,0.680258,0.925866,0.454845,0.34151,0.771288,0.599029,0.680698,0.435034,0.926342,0.455905,0.462233,0.187742,0.122637,0.681266,0.726917,0.460604,0.809638,0.496434,0.918555,0.484099,0.619481,0.0374118,0.325457,0.446501,0.30257,0.402099,0.439594,0.293112,0.253971,0.501842,0.00578594,0.923884,0.120447,0.273299,0.253524,0.980419,0.148487,0.454481,0.616501,0.783508,0.619284,0.737238,0.358117,0.248692,0.484608,0.674834,0.725007,0.518256,0.16459,0.825979,0.902295,0.139494,0.532582,0.838456,0.857523,0.0451868,0.73119,0.115153,0.536667,0.303391,0.0122844,0.0197852,0.229151,0.508687,0.251574,0.263948,0.765699,0.651464,0.445603,0.0500898,0.833467,0.651853,0.499275,0.0453944,0.26977,0.851714,0.815483,0.416185,0.326851,0.347049,0.601705,0.211136,0.73339,0.641649,0.0716758,0.392738,0.0363544,0.946225,0.782616,0.586779,0.808194,0.130788,0.159214,0.789296,0.786803,0.654731,0.885055,0.130697,0.26339,0.83442,0.0477005,0.790783,0.53049,0.387575,0.586874,0.519885,0.191358,0.626807,0.627058,0.561791,0.471818,0.584372,0.475347,0.252153,0.0365365,0.68381,0.59361,0.511108,0.72953,0.135875,0.821902,0.6159,0.350352,0.313585,0.87388,0.924898,0.213183,0.879588,0.585076,0.037198,0.486204,0.655627,0.308757,0.20369,0.408323,0.819915,0.60846,0.475279,0.691588,0.329375,0.292132,0.689992,0.889999,0.347182,0.0155592,0.880046,0.574966,0.438798,0.547734,0.722115,0.524886,0.246073,0.40027,0.220514,0.644808,0.9692,0.472545,0.219554,0.534804,0.841208,0.291607,0.628116,0.0436452,0.506788,0.396525,0.140341,0.76374,0.93167,0.192507,0.837604,0.248317,0.224527,0.550215,0.275179,0.654108,0.625204,0.0882123,0.890286,0.652856,0.467088,0.556019,0.758543,0.95957,0.772562,0.485882,0.672482,0.345254,0.649842,0.107996,0.220017,0.50192,0.579821,0.327351,0.189085,0.571694,0.542543,0.643425,0.730474,0.000977695,0.324743,0.119799,0.573977,0.759456,0.317775,0.642832,0.436506,0.810084,0.0176966,0.368623,0.740794,0.168848,0.272151,0.420523,0.165709,0.745991,0.734246,0.897863,0.318344,0.015173,0.770598,0.427388,0.14179,0.123416,0.859398,0.375246,0.450195,0.998663,0.349167,0.00413525,0.162244,0.671808,0.757187,0.231356,0.541081,0.0555443,0.808121,0.896371,0.164031,0.0618946,0.645184,0.497585,0.308687,0.479993,0.398559,0.0412194,0.382408,0.372323,0.886289,0.779321,0.127948,0.235192,0.00355172,0.663473,0.387769,0.769994,0.579775,0.39236,0.85975,0.208114,0.392463,|0.311689,0.878299,0.848574,0.694377,0.169278,0.668369,0.0955334,0.00967926,0.6285,0.0411097,0.882156,0.255093,0.89287,0.45914,0.28155,0.781496,0.284778,0.791762,0.282227,0.287969,0.385193,0.440185,0.997082,0.646774,0.766784,0.880055,0.214125,0.205471,0.401019,0.20921,0.598956,0.243893,0.663994,0.0102019,0.892324,0.928974,0.190585,0.961013,0.752256,0.291292,0.650718,0.502652,0.559841,0.31306,0.019174,0.980415,0.270118,0.869488,0.64655,0.428944,0.947668,0.825641,0.479631,0.574264,0.287799,0.0179474,0.788773,0.680609,0.889466,0.308455,0.0953807,0.17812,0.922774,0.969061,0.920339,0.774521,0.287393,0.179393,0.613542,0.0560659,0.323176,0.862294,0.330081,0.613556,0.713189,0.0305532,0.0713389,0.830973,0.960374,0.146471,0.29182,0.239799,0.924268,0.225261,0.570558,0.164421,0.901257,0.793009,0.276519,0.331138,0.440314,0.563385,0.324697,0.408389,0.039184,0.260923,0.115242,0.927329,0.658121,0.113999,0.132887,0.78499,0.527429,0.772564,0.76574,0.0350164,0.393494,0.355886,0.148621,0.214585,0.58327,0.405239,0.0333521,0.0638198,0.00939077,0.0668194,0.884133,0.6879,0.795066,0.925016,0.31881,0.903304,0.0350773,0.456384,0.885887,0.28991,0.578234,0.771804,0.85309,0.521839,0.766828,0.411181,0.809575,0.726518,0.285066,0.582909,0.308159,0.237607,0.711505,0.16765,0.0785991,0.9836,0.0470705,0.570183,0.362733,0.696963,0.0218723,0.981293,0.707828,0.339785,0.862605,0.0789391,0.495419,0.213552,0.823987,0.373411,0.997907,0.12172,0.0259843,0.65569,0.985092,0.88145,0.937148,0.968085,0.00413227,0.70411,0.640021,0.0460737,0.853083,0.387552,0.0913146,0.0736132,0.277221,0.886111,0.734931,0.166101,0.393334,0.00139433,0.047803,0.655654,0.54256,0.825227,0.784975,0.714741,0.916141,0.133345,0.637689,0.0838147,0.0662352,0.639425,0.608765,0.83318,0.800865,0.889087,0.193878,0.306425,0.859993,0.671916,0.893766,0.650234,0.821643,0.417979,0.530614,0.306383,0.756411,0.394717,0.452443,0.92209,0.120819,0.71707,0.681955,0.254575,0.902893,0.618384,0.480999,0.476148,0.702036,0.793286,0.626793,0.282031,0.747682,0.235482,0.666152,0.107809,0.405768,0.0264055,0.575671,0.874649,0.206127,0.168949,0.156282,0.912647,0.0530863,0.146249,0.723025,0.168751,0.897932,0.39179,0.64378,0.192124,0.592175,0.397036,0.0430158,0.929906,0.10698,0.806777,0.541211,0.0490023,0.389055,0.392176,0.891678,0.397699,0.623815,0.0167595,0.938813,0.92499,0.996377,0.614623,0.302312,0.76929,0.388378,0.989668,0.921812,0.108438,0.215586,0.610147,0.692495,0.0537504,0.761361,0.56742,0.434883,0.743538,0.472132,0.157803,0.671442,0.0818404,0.309705,0.170773,0.756793,0.57061,0.897194,0.175638,0.328613,0.0200593,0.9934,0.985583,0.0889214,0.699382,0.675723,0.287549,0.0542241,0.605682,0.502178,0.94414,0.671138,0.210263,0.882728,0.666065,0.654758,0.808737,0.495932,0.749351,0.377699,0.790682,0.480113,0.647744,0.980242,0.968426,0.646791,0.422436,0.678089,0.457189,0.988347,0.53551,0.0903788,0.0191699,0.240889,0.270957,0.256545,0.0319471,0.881351,0.813992,0.67491,0.87992,0.521679,0.100737,0.174528,0.0623431,0.681345,0.20852,0.519081,0.646716,0.27232,0.581085,0.524484,0.542934,0.869207,0.442572,0.830279,0.804489,0.552206,0.0645504,0.823014,0.454898,0.722194,0.579387,0.25181,0.338756,0.686923,0.756513,0.76195,0.817049,0.590069,0.546432,0.558973,0.174256,0.0096038,0.00122195,0.120182,0.685039,0.406711,0.0387118,0.336311,0.504059,0.127414,0.52955,0.300051,0.433456,0.28475,0.832803,0.174013,0.781789,0.603966,0.419047,0.699834,0.989548,0.742651,0.0677144,0.541605,0.587318,0.851976,0.811727,0.0444462,0.732956,0.921941,0.717032,0.767692,0.0616334,0.381819,0.184708,0.821327,0.844492,0.881166,0.0463723,0.854191,0.49334,0.242466,0.574035,0.612314,0.537189,0.848366,0.242836,0.768931,0.711133,0.671191,0.492108,0.667502,0.989682,0.0491003,0.613431,0.15684,0.458921,0.134833,0.195621,0.807417,0.325552,0.194293,0.598363,0.558246,0.986086,0.720191,0.241909,0.56507,0.990349,0.448485,0.905627,0.2889,0.278396,0.283144,0.771133,0.433147,0.605354,0.511493,0.839128,0.959809,0.0512337,0.452241,0.172219,0.0524462,0.659844,0.615279,0.170841,0.743393,0.985749,0.402028,0.0479046,0.717835,0.367188,0.0803608,0.585889,0.960766,0.623183,0.319827,0.905949,0.899354,0.43627,0.141091,0.325128,0.0402527,0.583148,0.135735,0.854276,0.217981,0.644499,0.242425,0.654828,0.914163,0.0691555,0.815102,0.661013,0.462228,0.512597,0.809077,0.754287,0.235057,0.223446,0.418849,0.375675,0.433235,0.176132,0.855698,0.690889,0.469191,0.382305,0.480999,0.431842,0.754659,0.582021,0.661085,0.260662,0.276717,0.903735,0.700323,0.31265,0.973261,0.178237,0.0581822,0.353257,0.537935,0.235666,0.486949,0.344089,0.513652,0.887097,0.356753,0.167488,0.13912,0.995061,0.00986767,0.166847,0.577735,0.694761,0.809189,0.482962,0.0152842,0.0352457,0.986258,0.729018,0.557685,0.333537,0.130222,0.565282,0.239183,0.428597,0.253794,0.287415,0.154669,0.441867,0.88461,0.965482,0.58654,0.272507,0.372119,0.220152,0.628706,0.763893,0.838257,0.340635,0.216157,0.406087,0.922094,0.702298,0.253285,0.228305,0.673537,0.0222125,0.746929,0.967335,0.10315,0.0830251,0.237714,0.785298,0.134299,0.135539,0.995714,0.93978,8.2016e-05,0.497306,0.976874,0.143558,0.0702946,0.606702,0.133146,0.0909827,0.444647,0.404407,0.391393,0.165458,0.64948,0.589616,0.511789,0.508066,0.563852,0.872885,0.931129,0.958235,0.0929345,0.486504,0.808445,0.880938,0.965446,0.752391,0.132415,0.444908,0.471981,0.659148,0.603457,0.702079,0.0766752,0.838675,0.918967,0.223811,0.158926,0.470345,0.773036,0.742948,0.865142,0.738518,0.660658,0.353823,0.713409,0.384129,0.791263,0.0681258,0.823539,0.0216767,0.262598,0.0384199,0.0612856,0.0854574,0.928741,0.704039,0.55448,0.00852615,0.683572,0.191732,0.147811,0.256246,0.635022,0.211388,0.0343859,0.96162,0.9626,0.0296068,0.889571,0.41772,0.212222,0.0367886,0.321482,0.173243,0.758615,0.0324812,0.416099,0.606514,0.237309,0.135594,0.83361,0.998346,0.486818,0.732381,0.623323,0.556911,0.103386,0.655182,0.999288,0.952978,0.900716,0.95589,0.585542,0.304294,0.962181,0.802162,0.556032,0.148762,0.53698,0.317648,0.406263,0.705831,0.388978,0.437346,0.251762,0.0431674,0.543858,0.827993,0.971262,0.0121818,0.00539345,0.314822,0.0444962,0.360959,0.627372,0.708961,0.816912,0.761997,0.317886,0.316689,0.0886719,0.20529,0.975726,0.303398,0.921662,0.490764,0.0229095,0.733941,0.674262,0.170876,0.469105,0.153196,0.751466,0.218661,0.572801,0.955944,0.812313,0.711955,0.423407,0.8626,0.824906,0.117747,0.741513,0.976193,0.471372,0.531571,0.753173,0.0699873,0.0300086,0.522348,0.990269,0.867343,0.120872,0.515572,0.0131751,0.769441,0.685073,0.596654,0.650727,0.640664,0.834623,0.379475,0.628534,0.761463,0.171233,0.631067,0.577587,0.928276,0.590783,0.589429,0.271492,0.926388,0.151854,0.590136,0.720161,0.835509,0.566505,0.383575,0.744772,0.75043,0.318268,0.921386,0.603715,0.280145,0.40691,0.0861003,0.760919,0.287893,0.658337,0.773312,0.39887,0.452118,0.983721,0.519746,0.465922,0.893564,0.17972,0.439135,0.15376,0.793769,0.772694,0.195922,0.17986,0.25881,0.0173233,0.287543,0.0200905,0.0150425,0.0262861,0.25234,0.671585,0.387136,0.610826,0.886733,0.578795,0.360704,0.672651,0.508098,0.0516449,0.777095,0.148114,0.560738,0.537652,0.0263015,0.17196,0.783065,0.466663,0.304742,0.745902,0.972799,0.140785,0.0839728,0.2994,0.846867,0.459059,0.263802,0.646755,0.383028,0.724641,0.89033,0.194049,0.233157,0.997691,0.895974,0.479402,0.141576,0.913543,0.856527,0.239447,0.0973553,0.243054,0.657216,0.666515,0.333501,0.123264,0.233699,0.605161,0.308144,0.252708,0.62517,0.016164,0.178982,0.361936,0.85992,0.137914,0.213852,0.0933281,0.787315,0.630274,0.512995,0.19098,0.415587,0.00811237,0.587881,0.840446,0.267689,0.444319,0.137554,0.339367,0.231737,0.497432,0.922103,0.00642461,0.513379,0.451638,0.901135,0.888999,0.77403,0.491777,0.553682,0.732755,0.0352755,0.746678,0.895186,0.423465,0.369545,0.248744,0.159074,0.147124,0.715369,0.618996,0.813121,0.062152,0.769152,0.683152,0.202805,0.656495,0.384167,0.0990803,0.359029,0.383531,0.396542,0.295348,0.732274,0.181455,0.798706,0.272023,0.590002,0.197415,0.422365,0.913037,0.673971,0.477694,0.0631033,0.145172,0.584631,0.240695,0.824466,0.0787731,0.667769,0.336506,0.634669,0.459666,0.106859,0.28264,0.527027,0.20275,0.70845,0.0594078,0.282094,0.550351,0.751756,0.387705,0.293255,0.119463,0.9286,0.021756,0.204427,0.808884,0.75444,0.499812,0.324454,0.206289,0.669245,0.778278,0.612837,0.243105,0.57424,0.547348,0.492242,0.782465,0.639898,0.0481984,0.920575,0.23431,0.913334,0.198802,0.105751,0.205439,0.0815463,0.801266,0.65969,0.935787,0.18643,0.979089,0.568058,0.595996,0.13221,0.410297,0.309755,0.739525,0.179654,0.903431,0.195636,0.836334,0.26676,0.475859,0.402391,0.320089,0.63059,0.315052,0.152194,0.453498,0.5026,0.63971,0.999277,0.437635,0.448274,0.202646,0.718249,0.250673,0.0594981,0.772111,0.6099,0.665039,0.864046,0.44397,0.731439,0.941056,0.460871,0.276173,0.0472198,0.750251,0.884946,0.43539,0.0529749,0.627953,0.0283238,0.519499,0.517926,0.654375,0.510574,0.0883033,0.587819,0.815746,0.582344,0.256764,0.329284,0.405184,0.413432,0.384785,0.687742,0.348187,0.523823,0.30705,0.347101,0.116253,0.0412292,0.940842,0.403194,0.403233,0.954579,0.536128,0.863084,|0.980765,0.616549,0.874502,0.103934,0.373696,0.44194,0.92716,0.418097,0.760285,0.596657,0.803437,0.964961,0.970686,0.462287,0.337753,0.901896,0.519584,0.256697,0.133321,0.322107,0.515697,0.126082,0.838285,0.442841,0.623839,0.40426,0.0909476,0.404046,0.275946,0.510703,0.628835,0.575087,0.204069,0.0144531,0.215259,0.0349213,0.775548,0.265265,0.0130426,0.522423,0.425851,0.537758,0.179197,0.767346,0.301453,0.0366045,0.133226,0.650107,0.238407,0.359963,0.168546,0.920126,0.931243,0.463621,0.94635,0.718308,0.601637,0.0188847,0.978444,0.261118,0.914075,0.420449,0.642724,0.259345,0.455931,0.707635,0.109763,0.566907,0.563795,0.126956,0.0797105,0.920493,0.0372065,0.612453,0.00466335,0.281044,0.358907,0.332941,0.691758,0.336515,0.851434,0.950099,0.318231,0.137078,0.0173131,0.526721,0.0776864,0.469198,0.798283,0.111784,0.641693,0.158696,0.80281,0.159539,0.244472,0.986061,0.206861,0.608139,0.182559,0.453393,0.830375,0.599596,0.145268,0.732586,0.146367,0.994672,0.61015,0.879517,0.374486,0.332397,0.28211,0.789258,0.440807,0.94128,0.0228663,0.874574,0.719767,0.0908386,0.777644,0.973088,0.300494,0.0126783,0.755066,0.50763,0.724951,0.648693,0.587001,0.303506,0.229936,0.664236,0.182533,0.353271,0.46928,0.397771,0.952546,0.414895,0.0139223,0.0974331,0.754457,0.329573,0.839951,0.828076,0.462818,0.737308,0.991417,0.930319,0.488838,0.958936,0.549724,0.401608,0.347864,0.909617,0.541036,0.729715,0.0286639,0.000950098,0.136473,0.451485,0.225523,0.274104,0.754863,0.351444,0.276765,0.674289,0.982192,0.633903,0.692151,0.951879,0.769886,0.427192,0.732545,0.798998,0.0801539,0.248523,0.295871,0.180871,0.0287784,0.221459,0.438442,0.190747,0.195832,0.502501,0.0933973,0.0478169,0.940057,0.369425,0.96071,0.447036,0.868427,0.46848,0.467161,0.399101,0.890344,0.0906288,0.611151,0.378566,0.56732,0.610394,0.353902,0.654571,0.440022,0.336648,0.202922,0.911359,0.78136,0.793568,0.977533,0.537953,0.986698,0.404585,0.721662,0.154547,0.720867,0.958314,0.4732,0.467903,0.176021,0.779987,0.584806,0.884592,0.420586,0.275308,0.737195,0.954877,0.774508,0.485373,0.79837,0.506519,0.585862,0.284732,0.217362,0.105147,0.270264,0.851877,0.206472,0.58201,0.785575,0.0396737,0.708155,0.361754,0.315293,0.844792,0.450796,0.803614,0.841951,0.702156,0.281568,0.997993,0.882292,0.13081,0.725091,0.446315,0.476809,0.0163275,0.0546356,0.0926713,0.978868,0.067798,0.327965,0.184344,0.138049,0.929714,0.804195,0.509515,0.0708094,0.167107,0.167302,0.0320458,0.172265,0.0897666,0.481824,0.147015,0.858114,0.0819322,0.811016,0.069631,0.867289,0.359752,0.635188,0.00516903,0.584554,0.568113,0.189082,0.0055427,0.192304,0.996874,0.768565,0.151275,0.887929,0.52126,0.971129,0.596691,0.464943,0.438132,0.884342,0.968089,0.290717,0.558699,0.738756,0.0194425,0.457373,0.0847639,0.129336,0.452679,0.339692,0.90492,0.154769,0.406013,0.981688,0.949093,0.00492829,0.724782,0.474743,0.608568,0.433591,0.864674,0.457695,0.797053,0.82752,0.808642,0.155735,0.527417,0.772098,0.66305,0.905528,0.583829,0.34047,0.5265,0.548012,0.953255,0.692114,0.68891,0.0454134,0.790958,0.0652937,0.536564,0.19624,0.921508,0.194217,0.986682,0.659755,0.772687,0.0947218,0.780191,0.901775,0.293799,0.684417,0.0364695,0.904868,0.790998,0.853406,0.249968,0.765815,0.824656,0.77591,0.228177,0.319153,0.823308,0.928357,0.0012033,0.621412,0.551138,0.823061,0.10576,0.959013,0.403875,0.630074,0.33329,0.453177,0.762052,0.245468,0.59937,0.0137174,0.216844,0.211124,0.887637,0.745162,0.0526527,0.806693,0.980266,0.0202383,0.374521,0.805584,0.154297,0.53828,0.353607,0.0696548,0.0775128,0.37067,0.0345403,0.73235,0.782321,0.408675,0.633355,0.31428,0.0313498,0.161424,0.347975,0.901219,0.844241,0.187613,0.966807,0.379886,0.903634,0.0814628,0.853597,0.816235,0.916891,0.370214,0.649633,0.395018,0.363508,0.774413,0.487823,0.872543,0.802357,0.630238,0.765265,0.23523,0.0176904,0.624796,0.855551,0.422575,0.657464,0.790476,0.812298,0.273278,0.0508821,0.205007,0.950165,0.185106,0.327707,0.174049,0.971344,0.97111,0.746821,0.321813,0.455878,0.66732,0.39334,0.0919033,0.569464,0.830158,0.0690085,0.70964,0.741922,0.526922,0.15101,0.479981,0.151806,0.0773373,0.297209,0.289449,0.295968,0.783519,0.499579,0.733581,0.674646,0.64868,0.212096,0.931686,0.754661,0.739908,0.0772172,0.867962,0.623535,0.729066,0.213091,0.360744,0.904664,0.45929,0.82925,0.438268,0.929008,0.808705,0.886811,0.0508138,0.787497,0.946751,0.885244,0.90847,0.54704,0.267535,0.288604,0.599369,0.118518,0.89143,0.139255,0.27549,0.726775,0.278342,0.39245,0.239172,0.0157682,0.212481,0.962503,0.347068,0.682974,0.72826,0.474997,0.717718,0.883094,0.660041,0.819041,0.919081,0.843095,0.042424,0.936868,0.53928,0.114739,0.0819077,0.652654,0.668932,0.624278,0.017203,0.119852,0.470147,0.458614,0.255422,0.983131,0.0226901,0.916197,0.401694,0.719631,0.366275,0.0413557,0.209564,0.613882,0.172162,0.130355,0.327648,0.0332946,0.277671,0.952306,0.576021,0.752588,0.576613,0.409588,0.256667,0.859403,0.621403,0.13693,0.715948,0.925415,0.883749,0.673514,0.901658,0.703074,0.444708,0.80023,0.988145,0.412269,0.792679,0.922073,0.678842,0.512605,0.96606,0.114184,0.317222,0.830323,0.870827,0.124114,0.226476,0.0123084,0.756197,0.545576,0.627101,0.712299,0.470207,0.79476,0.468906,0.726786,0.774688,0.894082,0.0587121,0.732188,0.177611,0.760275,0.589571,0.103059,0.330001,0.899599,0.0863974,0.897871,0.433293,0.674209,0.635609,0.724072,0.0117785,0.5698,0.181617,0.0377973,0.913641,0.0139199,0.859427,0.0772352,0.38788,0.152256,0.982429,0.598343,0.233142,0.923304,0.505229,0.622151,0.611712,0.508355,0.861912,0.0928939,0.722542,0.842825,0.289863,0.769927,0.146146,0.843642,0.0600998,0.300136,0.187493,0.110257,0.750407,0.708551,0.323387,0.0879799,0.848015,0.899859,0.362985,0.766762,0.688738,0.297351,0.0610596,0.393562,0.626708,0.0789134,0.528936,0.567265,0.0685275,0.760195,0.789144,0.1373,0.42463,0.57963,0.911271,0.89655,0.587295,0.729983,0.406978,0.252784,0.485984,0.646618,0.033632,0.489776,0.363809,0.609461,0.557912,0.0372106,0.665115,0.556044,0.549108,0.792324,0.890238,0.0785556,0.948272,0.182805,0.504396,0.00494301,0.817188,0.682957,0.173247,0.101022,0.840149,0.163125,0.203822,0.983537,0.161503,0.49372,0.734073,0.817393,0.148048,0.215439,0.866083,0.98847,0.921917,0.635582,0.607423,0.648636,0.0757711,0.403658,0.246796,0.326386,0.344696,0.195658,0.426943,0.233419,0.366947,0.163605,0.39595,0.32159,0.910666,0.623267,0.947755,0.911651,0.9967,0.408758,0.97276,0.124618,0.876106,0.953268,0.885907,0.238665,0.792244,0.90127,0.593852,0.685721,0.143313,0.30879,0.192646,0.259565,0.291887,0.904009,0.496105,0.779461,0.134648,0.4623,0.887851,0.641379,0.292554,0.322918,0.645785,0.163323,0.765902,0.90508,0.934699,0.593177,0.17596,0.414537,0.517636,0.407944,0.350772,0.0638142,0.799171,0.0592943,0.488261,0.957595,0.277136,0.780146,0.0271945,0.624261,0.383658,0.817767,0.880339,0.259912,0.956637,0.315442,0.470207,0.885936,0.928757,0.37186,0.132035,0.0680831,0.637104,0.612189,0.605909,0.601304,0.501566,0.386684,0.421184,0.503881,0.846176,0.538862,0.916782,0.944828,0.940847,0.910529,0.977214,0.511668,0.13486,0.792443,0.00831831,0.805853,0.854051,0.586444,0.739379,0.404025,0.133949,0.032174,0.298772,0.630082,0.580881,0.739182,0.578355,0.747771,0.169941,0.635108,0.83218,0.664746,0.416482,0.225216,0.0694894,0.724267,0.217825,0.0577701,0.0514488,0.344238,0.196824,0.213527,0.996714,0.892327,0.594655,0.938105,0.201845,0.388592,0.260078,0.860943,0.285464,0.795909,0.724716,0.39849,0.396193,0.523697,0.0255821,0.69609,0.862646,0.155759,0.19486,0.827169,0.325011,0.940184,0.144196,0.978123,0.82575,0.699468,0.505866,0.397598,0.50385,0.0888684,0.100149,0.809262,0.357219,0.575867,0.393847,0.424696,0.545086,0.365115,0.566353,0.457458,0.892284,0.0843074,0.632183,0.980819,0.664212,0.0198012,0.982398,0.643196,0.96091,0.057839,0.805377,0.92401,0.746247,0.909019,0.652628,0.758713,0.00349504,0.510966,0.57115,0.730809,0.599139,0.114091,0.536938,0.0736866,0.182627,0.219835,0.265359,0.831556,0.759798,0.271628,0.561305,0.202944,0.6899,0.821094,0.373878,0.721438,0.902899,0.334443,0.138745,0.560548,0.442658,0.461096,0.324521,0.370854,0.638877,0.0523807,0.225335,0.942088,0.551551,0.13993,0.441634,0.169986,0.278866,0.167588,0.128362,0.266723,0.160793,0.97795,0.0789483,0.134636,0.949583,0.102817,0.114089,0.622378,0.00157344,0.834436,0.814175,0.116022,0.830541,0.0307769,0.916336,0.0932691,0.318785,0.207322,0.0905146,0.780737,0.274973,0.858494,0.0581033,0.324741,0.817381,0.338427,0.541963,0.513169,0.816678,0.820789,0.644812,0.825628,0.880825,0.545862,0.158872,0.704678,0.890756,0.0332506,0.635215,0.201896,0.605337,0.548752,0.046461,0.490368,0.217024,0.214124,0.193883,0.244076,0.539074,0.671958,0.0305851,0.456208,0.361338,0.106329,0.728728,0.818047,0.247006,0.668238,0.107644,0.533502,0.0538331,0.273842,0.323691,0.254114,0.848368,0.0546531,0.477332,0.672959,0.217327,0.383639,0.216346,0.20976,0.702782,0.598864,0.244511,0.85191,0.395988,0.385198,0.264379,0.494937,0.0318201,0.844452,0.757905,0.0231808,0.134092,0.767159,0.828714,0.743733,0.0987707,0.86081,0.837219,0.424134,0.147623,0.224402,0.202918,0.774027,0.688065,0.356541,0.65851,0.287187,|0.167684,0.884788,0.458909,0.851691,0.52764,0.17625,0.644406,0.61859,0.12756,0.143866,0.00954491,0.826008,0.828258,0.927198,0.974481,0.76695,0.399402,0.745534,0.10358,0.77694,0.244781,0.673863,0.421841,0.764117,0.979344,0.128415,0.810469,0.165838,0.264043,0.377799,0.537677,0.062747,0.74545,0.908564,0.939184,0.000507414,0.208138,0.763403,0.588706,0.164574,0.143251,0.326635,0.477361,0.234925,0.741958,0.233298,0.180863,0.756355,0.982969,0.190754,0.8044,0.265214,0.408785,0.231953,0.723597,0.747557,0.251098,0.828826,0.508026,0.54462,0.427424,0.670565,0.415258,0.736408,0.974825,0.0865695,0.126,0.898128,0.773283,0.316077,0.73766,0.693672,0.609093,0.481278,0.780152,0.936584,0.423981,0.654803,0.512714,0.847164,0.164984,0.129011,0.481155,0.641901,0.176315,0.130781,0.372735,0.148221,0.365669,0.881511,0.423063,0.120819,0.115412,0.0515353,0.740586,0.673129,0.396537,0.104723,0.206552,0.635842,0.0135869,0.242168,0.801376,0.733084,0.461644,0.229581,0.109859,0.20059,0.87407,0.262032,0.886035,0.575593,0.511168,0.248435,0.00933963,0.66847,0.888034,0.906907,0.998875,0.938441,0.680506,0.982835,0.614885,0.231692,0.903058,0.351713,0.465357,0.267453,0.183705,0.189009,0.0239774,0.593377,0.776052,0.245629,0.339524,0.79998,0.610784,0.998861,0.387068,0.371122,0.590474,0.43051,0.404463,0.928755,0.569012,0.431783,0.928064,0.251478,0.253078,0.771614,0.777151,0.52058,0.890833,0.351464,0.735044,0.817543,0.627557,0.613474,0.513691,0.298581,0.973775,0.477193,0.852449,0.0974141,0.0708994,0.865844,0.10843,0.675186,0.211689,0.45283,0.147962,0.0924756,0.1229,0.968007,0.368418,0.00947195,0.898158,0.915986,0.00726533,0.35092,0.920011,0.395175,0.104245,0.823601,0.306499,0.166788,0.015668,0.921742,0.241635,0.790117,0.959883,0.527418,0.424571,0.664352,0.0201042,0.630199,0.444476,0.513803,0.612256,0.77969,0.180601,0.351046,0.384046,0.507831,0.0160452,0.0700478,0.170378,0.00121903,0.493515,0.794284,0.137485,0.154369,0.608434,0.435866,0.921251,0.6923,0.0216879,0.00222826,0.204693,0.236046,0.235156,0.763516,0.884923,0.487161,0.0483287,0.418397,0.8109,0.939679,0.296273,0.979435,0.124448,0.53219,0.276708,0.556842,0.861137,0.192674,0.112192,0.344615,0.745955,0.59754,0.0825405,0.0175506,0.577163,0.354995,0.230161,0.804926,0.860207,0.710396,0.249762,0.611637,0.199869,0.369517,0.185449,0.73626,0.765925,0.683906,0.968943,0.82712,0.251267,0.893473,0.0226932,0.945135,0.483413,0.762146,0.719123,0.0564008,0.419877,0.526806,0.533606,0.451241,0.570582,0.279235,0.934371,0.530365,0.781255,0.614741,0.452961,0.365649,0.643646,0.945875,0.963056,0.0882939,0.781802,0.240774,0.582906,0.0551356,0.620694,0.0287255,0.190438,0.985445,0.0674468,0.544063,0.773152,0.488406,0.638399,0.0612616,0.384811,0.11433,0.0399113,0.459941,0.327376,0.905007,0.770726,0.921801,0.37964,0.391152,0.553425,0.629093,0.384294,0.755176,0.719903,0.612971,0.0353842,0.683196,0.592511,0.401344,0.469785,0.904225,0.837031,0.67792,0.747971,0.993304,0.690083,0.931822,0.976762,0.00838703,0.0555493,0.212215,0.235979,0.355061,0.549601,0.245336,0.744482,0.551004,0.121059,0.025328,0.703511,0.822755,0.441172,0.987618,0.184604,0.569527,0.302715,0.684968,0.942208,0.91665,0.10965,0.755977,0.928954,0.88672,0.632911,0.974623,0.158827,0.786414,0.933306,0.563496,0.331175,0.92945,0.658026,0.187651,0.621603,0.744804,0.0926405,0.947918,0.549252,0.835636,0.828116,0.72036,0.693209,0.69762,0.453255,0.736443,0.324666,0.585663,0.873535,0.469215,0.558944,0.861697,0.244712,0.665247,0.334646,0.369534,0.499797,0.42038,0.36017,0.167346,0.628983,0.804031,0.0618786,0.559268,0.133873,0.225049,0.354623,0.870009,0.113697,0.786109,0.0125149,0.835613,0.263448,0.331912,0.306435,0.909685,0.534597,0.656756,0.0644704,0.253231,0.144158,0.268449,0.988619,0.849627,0.962099,0.24399,0.237911,0.930501,0.428357,0.562606,0.122412,0.140102,0.749374,0.366543,0.328583,0.761446,0.101589,0.382152,0.356681,0.179548,0.920411,0.473582,0.1002,0.847555,0.294102,0.307723,0.283107,0.792581,0.183829,0.854653,0.487897,0.617796,0.843978,0.762051,0.714007,0.299928,0.967411,0.459606,0.242456,0.390215,0.753224,0.776682,0.325652,0.586204,0.359406,0.80473,0.539065,0.285325,0.567383,0.642623,0.32123,0.142935,0.0149429,0.829166,0.233861,0.0913621,0.0881129,0.765422,0.566346,0.946451,0.625167,0.569232,0.112809,0.481817,0.943271,0.473192,0.573061,0.0504672,0.137705,0.735417,0.797606,0.601122,0.648229,0.220807,0.707472,0.314332,0.935862,0.655428,0.100155,0.160406,0.878574,0.228314,0.697942,0.812218,0.964759,0.0307353,0.224983,0.0799148,0.0974163,0.650467,0.909178,0.841356,0.0530927,0.374069,0.584451,0.341931,0.383315,0.755135,0.721936,0.780304,0.911899,0.134268,0.48254,0.37171,0.540468,0.682997,0.00280017,0.202239,0.973274,0.170903,0.99654,0.526197,0.189374,0.456204,0.656725,0.709149,0.482221,0.299071,0.33235,0.787782,0.28925,0.81414,0.397981,0.848439,0.185333,0.0184705,0.868081,0.648716,0.603198,0.991945,0.292908,0.558738,0.476404,0.855696,0.361709,0.149913,0.86572,0.807601,0.199714,0.877684,0.396114,0.0421926,0.321655,0.451905,0.538735,0.74677,0.707718,0.134968,0.235313,0.052974,0.0794691,0.232191,0.324863,0.768451,0.846849,0.580318,0.0933346,0.901426,0.524586,0.53266,0.495944,0.147749,0.911034,0.990168,0.970805,0.918596,0.806664,0.221642,0.550351,0.632319,0.169848,0.883326,0.801256,0.352651,0.109538,0.758334,0.199081,0.485294,0.21091,0.647032,0.758019,0.411786,0.279333,0.474219,0.940541,0.514091,0.860573,0.791391,0.565836,0.218022,0.217655,0.230849,0.547485,0.815367,0.144743,0.420511,0.273379,0.279865,0.531226,0.938507,0.142766,0.952661,0.667554,0.997323,0.589634,0.566636,0.891974,0.0324351,0.759537,0.681809,0.396915,0.337672,0.524123,0.739459,0.9802,0.687045,0.49778,0.633792,0.750674,0.0473701,0.903973,0.314364,0.456824,0.923436,0.118494,0.865055,0.569483,0.195839,0.408032,0.877724,0.524591,0.93951,0.558821,0.214408,0.13062,0.223886,0.510913,0.121516,0.0158793,0.506518,0.737653,0.753116,0.0108885,0.689617,0.0762277,0.340668,0.941908,0.614163,0.327222,0.0124253,0.42244,0.0262788,0.900804,0.646424,0.104182,0.782489,0.12924,0.552715,0.330432,0.607483,0.108829,0.828169,0.09778,0.19373,0.940057,0.704542,0.965281,0.96847,0.663951,0.4664,0.104938,0.684009,0.0923738,0.490063,0.595829,0.342133,0.788489,0.788242,0.886935,0.758792,0.989685,0.798009,0.479017,0.10399,0.472716,0.606182,0.551597,0.948398,0.532904,0.886199,0.0734921,0.992027,0.629793,0.940509,0.926805,0.418347,0.738647,0.244835,0.635667,0.126195,0.593628,0.10603,0.602505,0.872994,0.661838,0.86368,0.447911,0.0628414,0.0686343,0.53361,0.362741,0.965212,0.224368,0.251485,0.856448,0.347762,0.868011,0.217744,0.281154,0.335905,0.799966,0.479737,0.249443,0.0585405,0.219494,0.66193,0.561342,0.774095,0.662469,0.850785,0.0535684,0.515939,0.970921,0.149664,0.790265,0.75776,0.847047,0.657066,0.19859,0.372318,0.828115,0.199336,0.0338135,0.932208,0.689489,0.94084,0.603802,0.736838,0.695595,0.137965,0.819229,0.987109,0.606484,0.676157,0.604796,0.909518,0.942671,0.444629,0.462672,0.319403,0.128602,0.355254,0.182401,0.111606,0.709707,0.182485,0.672053,0.10903,0.522518,0.803471,0.980734,0.8994,0.79031,0.87959,0.709805,0.516117,0.0517005,0.0778906,0.34608,0.912997,0.599883,0.695968,0.973008,0.67936,0.268505,0.665672,0.525747,0.818089,0.473939,0.463591,0.920192,0.332541,0.352509,0.589615,0.898828,0.528749,0.401022,0.355721,0.503455,0.810879,0.421139,0.709402,0.478212,0.0269564,0.178497,0.27619,0.37878,0.845471,0.103323,0.00291264,0.921718,0.807898,0.0739039,0.897662,0.453768,0.589381,0.280677,0.923868,0.408718,0.128248,0.182264,0.458138,0.611686,0.698087,0.442439,0.260016,0.384774,0.842878,0.385629,0.531437,0.253977,0.521982,0.18014,0.694303,0.157706,0.866557,0.753496,0.46375,0.479217,0.555778,0.105551,0.593275,0.896552,0.870996,0.777524,0.659452,0.535409,0.282465,0.120988,0.263059,0.359477,0.369419,0.796332,0.131632,0.441697,0.537269,0.700422,0.179065,0.699811,0.404283,0.127963,0.876378,0.0126794,0.921806,0.950322,0.596599,0.401783,0.944745,0.0283464,0.282168,0.595283,0.305345,0.702638,0.494877,0.355335,0.425206,0.225581,0.752207,0.122967,0.871747,0.682915,0.690255,0.191311,0.602224,0.769691,0.260931,0.639698,0.451794,0.373814,0.499947,0.463887,0.192093,0.416229,0.335374,0.121535,0.319561,0.0697076,0.926526,0.546969,0.330339,0.187232,0.916981,0.780632,0.761983,0.232262,0.555896,0.489039,0.980284,0.853449,0.785122,0.248793,0.876308,0.0139305,0.0213726,0.282836,0.839935,0.455548,0.496538,0.27717,0.862957,0.731393,0.153162,0.509933,0.17509,0.995426,0.485447,0.149931,0.143453,0.0908433,0.947813,0.805688,0.0206645,0.476302,0.812037,0.170658,0.0895183,0.298725,0.281828,0.865935,0.456591,0.941445,0.157925,0.722837,0.810301,0.515407,0.973405,0.322029,0.337875,0.345769,0.637142,0.971697,0.414201,0.151322,0.740813,0.121299,0.432909,0.265762,0.952074,0.529302,0.974841,0.0983005,0.478465,0.0887254,0.767961,0.510688,0.0867795,0.300221,0.311907,0.28837,0.00565141,0.738523,0.535203,0.393939,0.84694,0.0547262,0.997642,0.231304,0.810611,0.876317,0.0877365,0.746835,0.227386,0.759228,0.905317,0.482068,0.187588,0.383811,0.716321,0.929217,0.981087,0.169293,0.593299,0.0429415,0.157425,|0.565804,0.00497019,0.93501,0.955043,0.331139,0.325056,0.795086,0.982306,0.796217,0.432289,0.0236848,0.280052,0.1281,0.985293,0.914012,0.0248278,0.613753,0.186486,0.614188,0.384057,0.0506576,0.592026,0.513529,0.131207,0.00465304,0.120625,0.956743,0.94948,0.0917602,0.380829,0.344563,0.974209,0.63096,0.919973,0.249179,0.127049,0.197999,0.807637,0.157562,0.998202,0.2612,0.116763,0.434255,0.98782,0.808228,0.681186,0.0806348,0.869845,0.0964744,0.495883,0.946049,0.493458,0.814505,0.149763,0.996464,0.633432,0.460672,0.0893798,0.829538,0.782528,0.619618,0.913921,0.637468,0.910118,0.257639,0.647142,0.527189,0.092374,0.161459,0.97053,0.263758,0.292364,0.594707,0.176962,0.0199958,0.435997,0.845311,0.437666,0.981303,0.446266,0.285961,0.668839,0.902374,0.476094,0.58055,0.701407,0.11406,0.588357,0.612163,0.357361,0.987605,0.340553,0.639346,0.532725,0.0137616,0.828815,0.532685,0.333758,0.401606,0.0698668,0.973995,0.34129,0.558017,0.0432245,0.820604,0.378992,0.0741961,0.0313503,0.905328,0.879465,0.649667,0.798281,0.487629,0.990607,0.415877,0.466413,0.948578,0.616163,0.00671452,0.190804,0.554655,0.587974,0.630865,0.554292,0.298396,0.737593,0.603763,0.181417,0.799424,0.59704,0.104357,0.843033,0.0987076,0.736373,0.750157,0.706559,0.669491,0.540287,0.371985,0.739334,0.405457,0.264054,0.67043,0.782178,0.80279,0.707682,0.225154,0.432053,0.47651,0.852918,0.961087,0.969763,0.62479,0.582332,0.372079,0.775437,0.516411,0.0650881,0.663024,0.688872,0.0578246,0.148836,0.941173,0.971184,0.999843,0.123631,0.927582,0.707027,0.294181,0.343567,0.961862,0.732755,0.960593,0.160198,0.6406,0.22286,0.907301,0.589645,0.257209,0.480586,0.234392,0.386251,0.492433,0.267457,0.0605676,0.977112,0.830136,0.603876,0.261382,0.668649,0.326775,0.597254,0.392533,0.736371,0.497633,0.235775,0.456987,0.371292,0.93059,0.723494,0.620425,0.0437621,0.418223,0.457144,0.501731,0.235547,0.0488113,0.904944,0.393707,0.361127,0.232568,0.797347,0.359053,0.82221,0.633092,0.0943912,0.0704896,0.224638,0.915974,0.454692,0.947668,0.918785,0.571589,0.776433,0.369905,0.738462,0.227643,0.780912,0.955791,0.0838402,0.119452,0.612691,0.26253,0.577337,0.936804,0.65855,0.061428,0.275075,0.876824,0.973081,0.934202,0.0444841,0.612248,0.131295,0.288138,0.897112,0.443955,0.175453,0.590338,0.986253,0.812224,0.729184,0.700035,0.761665,0.752629,0.918352,0.601903,0.499359,0.516945,0.493171,0.743968,0.0636308,0.397486,0.633548,0.115126,0.201191,0.414971,0.260797,0.330538,0.863756,0.162018,0.0530034,0.0224873,0.644989,0.399385,0.301436,0.98307,0.43362,0.6345,0.34348,0.181872,0.462551,0.559508,0.630922,0.14651,0.199227,0.913122,0.352325,0.0737696,0.240795,0.916979,0.670998,0.804917,0.397073,0.436403,0.371574,0.701635,0.988927,0.605655,0.326807,0.821855,0.199792,0.26562,0.547944,0.944823,0.220279,0.544184,0.864653,0.0648817,0.295645,0.070147,0.983691,0.356956,0.0685655,0.439649,0.745643,0.782147,0.904504,0.674203,0.244266,0.633299,0.842045,0.668099,0.142369,0.234499,0.420838,0.457793,0.275325,0.54,0.129412,0.448458,0.396771,0.219619,0.783878,0.831562,0.418599,0.17723,0.359888,0.965184,0.817357,0.417159,0.18298,0.876379,0.0840319,0.481412,0.862947,0.742364,0.21945,0.857408,0.0821892,0.361961,0.362914,0.150447,0.103907,0.790952,0.888271,0.57678,0.859338,0.41166,0.297313,0.465666,0.637726,0.382475,0.27957,0.723171,0.211597,0.633071,0.968274,0.650017,0.90777,0.714333,0.428478,0.378048,0.100916,0.910286,0.448512,0.25956,0.401375,0.204556,0.963118,0.370996,0.997935,0.598037,0.567424,0.491774,0.0724488,0.0609125,0.846466,0.721435,0.645436,0.0768383,0.212789,0.355873,0.089111,0.912737,0.940349,0.355702,0.587491,0.149768,0.173044,0.0951535,0.361384,0.448404,0.981558,0.979373,0.169054,0.300696,0.594928,0.379698,0.955943,0.683765,0.0957947,0.336888,0.721918,0.295998,0.623919,0.715068,0.523133,0.715331,0.555207,0.00664467,0.0607642,0.683439,0.787077,0.0322297,0.233518,0.0242955,0.452501,0.319957,0.890173,0.51899,0.581726,0.68796,0.0813846,0.0148777,0.424012,0.178498,0.6961,0.828892,0.943962,0.69021,0.307296,0.248698,0.363792,0.666311,0.849845,0.129883,0.436514,0.666968,0.501885,0.627449,0.746791,0.626031,0.201628,0.977358,0.364056,0.564711,0.529001,0.948369,0.289039,0.442568,0.165434,0.964054,0.890672,0.767255,0.668085,0.548174,0.581862,0.361409,0.556649,0.711523,0.66165,0.242365,0.939498,0.127637,0.681944,0.380625,0.79706,0.363887,0.172127,0.56014,0.720005,0.552309,0.391276,0.745052,0.903562,0.174763,0.814216,0.936477,0.771049,0.193702,0.194689,0.143583,0.257718,0.0177206,0.711842,0.946243,0.658265,0.608137,0.554866,0.239039,0.339963,0.52557,0.437883,0.207511,0.681384,0.0676492,0.461309,0.873114,0.849067,0.808613,0.593501,0.355798,0.104333,0.226155,0.42506,0.525495,0.367444,0.456255,0.268521,0.379885,0.817505,0.873194,0.3064,0.30072,0.935287,0.656784,0.715916,0.170079,0.526373,0.944924,0.143351,0.841781,0.288405,0.237492,0.671732,0.317352,0.290971,0.223083,0.144841,0.824062,0.123117,0.563554,0.0826835,0.209616,0.477386,0.955806,0.383907,0.43282,0.28863,0.573657,0.987951,0.932819,0.946646,0.529815,0.347885,0.626394,0.229459,0.954751,0.868793,0.0269751,0.188359,0.483406,0.846271,0.16737,0.049235,0.849325,0.811755,0.277708,0.673193,0.651379,0.219489,0.686409,0.0911667,0.265612,0.899922,0.268763,0.23462,0.718928,0.103053,0.455533,0.0388042,0.84792,0.947831,0.927267,0.253099,0.713521,0.887599,0.218558,0.308121,0.282696,0.233883,0.786512,0.987813,0.729665,0.567092,0.330435,0.940091,0.386281,0.92517,0.375922,0.724203,0.310139,0.944419,0.278897,0.0583786,0.528913,0.521127,0.18638,0.892435,0.394069,0.700165,0.349701,0.478824,0.642,0.883811,0.554265,0.38221,0.141593,0.785453,0.763023,0.882003,0.834744,0.191502,0.896381,0.98147,0.615943,0.172008,0.57041,0.414894,0.269608,0.161128,0.19584,0.871685,0.571753,0.315004,0.806332,0.0939464,0.361462,0.569495,0.986047,0.888775,0.105556,0.782625,0.826252,0.69431,0.339107,0.222571,0.798332,0.298727,0.719429,0.0887049,0.160045,0.939966,0.402723,0.474931,0.853681,0.838997,0.804291,0.894991,0.327257,0.807889,0.402641,0.364694,0.740176,0.152641,0.641769,0.855194,0.915645,0.270595,0.381473,0.487152,0.867705,0.0648609,0.937251,0.620782,0.294148,0.583013,0.415761,0.0332429,0.0398969,0.124886,0.958237,0.373668,0.827634,0.201722,0.15708,0.314744,0.571463,0.863525,0.622431,0.967838,0.755398,0.761056,0.236335,0.575798,0.810929,0.996935,0.426826,0.194511,0.0295188,0.0312321,0.497619,0.83104,0.599987,0.633317,0.867909,0.172039,0.0563562,0.0454918,0.312768,0.812086,0.446306,0.913172,0.694759,0.792403,0.909513,0.468671,0.601187,0.586621,0.439389,0.388592,0.834342,0.705104,0.180703,0.778428,0.138788,0.141123,0.364188,0.132972,0.344652,0.186245,0.236778,0.351127,0.853576,0.818018,0.328053,0.876116,0.420015,0.0546665,0.799821,0.924881,0.0893582,0.0740475,0.58937,0.7285,0.0810199,0.258163,0.224679,0.664543,0.661018,0.124455,0.041933,0.0422657,0.743787,0.551566,0.802242,0.608,0.423306,0.310319,0.17607,0.533501,0.196015,0.990527,0.0987976,0.294713,0.943003,0.657621,0.731327,0.208034,0.815154,0.806791,0.0203162,0.912699,0.0860568,0.613869,0.98989,0.556344,0.646376,0.388398,0.267043,0.742711,0.723442,0.157123,0.348202,0.122765,0.616378,0.762198,0.313865,0.959965,0.642844,0.114232,0.384329,0.751397,0.894697,0.761296,0.65118,0.218162,0.701906,0.0501115,0.227237,0.012993,0.821459,0.184818,0.618481,0.396127,0.180198,0.971896,0.794882,0.165206,0.790227,0.611545,0.970286,0.293306,0.394534,0.457832,0.740953,0.778667,0.856962,0.420126,0.724603,0.0523646,0.258639,0.426908,0.813402,0.127127,0.925417,0.735204,0.565108,0.218278,0.846508,0.805957,0.253873,0.793267,0.556832,0.787868,0.547907,0.47783,0.84078,0.656309,0.0784778,0.0284987,0.768677,0.414825,0.711969,0.159792,0.0984495,0.0763384,0.821038,0.0971147,0.800565,0.207171,0.412435,0.864629,0.596541,0.673015,0.218232,0.860096,0.838315,0.0509312,0.757524,0.0594094,0.434397,0.739379,0.328315,0.583179,0.496588,0.254224,0.475634,0.394053,0.572749,0.0882565,0.379589,0.957214,0.592151,0.786333,0.871199,0.396043,0.185631,0.283957,0.360683,0.806198,0.697025,0.298234,0.395655,0.810947,0.474288,0.194395,0.350216,0.0291374,0.458014,0.134315,0.79762,0.272008,0.430754,0.0752921,0.0227656,0.600155,0.681006,0.662579,0.966008,0.59006,0.506929,0.104363,0.756136,0.149169,0.707387,0.128926,0.370339,0.707871,0.727088,0.32182,0.449803,0.561396,0.534796,0.292794,0.698378,0.847261,0.625861,0.987966,0.35237,0.393427,0.00101745,0.281591,0.815017,0.369247,0.562297,0.367021,0.0807846,0.14601,0.673568,0.835283,0.877522,0.44536,0.251261,0.868655,0.438133,0.718985,0.697533,0.550638,0.624808,0.450102,0.92372,0.982279,0.106427,0.541294,0.845687,0.136972,0.0761502,0.200059,0.762923,0.239384,0.688029,0.884016,0.472075,0.0358507,0.657829,0.0608357,0.3285,0.891877,0.911962,0.752294,0.793472,0.86715,0.484629,0.0245723,0.0673816,0.612766,0.101417,0.914614,0.0525971,0.95639,0.905949,0.135742,0.375561,0.787039,0.0551947,0.965877,0.0091145,0.438923,0.076766,0.621601,0.196452,0.855943,0.401098,0.53647,0.816049,0.380853,0.800582,0.553027,0.13864,0.460214,0.547708,0.402187,0.352187,0.105149,0.373949,0.159519,0.193098,0.478123,|0.42137,0.80308,0.183548,0.871965,0.0410686,0.801838,0.710754,0.289677,0.373222,0.235481,0.539813,0.497787,0.81051,0.995222,0.392143,0.816943,0.636861,0.221826,0.423401,0.307815,0.594632,0.572571,0.21576,0.818367,0.22501,0.311512,0.899605,0.900099,0.71755,0.924072,0.720751,0.345703,0.0284441,0.587217,0.943762,0.74794,0.572277,0.98231,0.746926,0.611697,0.877728,0.378551,0.629595,0.11678,0.769003,0.394287,0.378056,0.413382,0.204787,0.38086,0.750406,0.480686,0.642757,0.770996,0.811219,0.790032,0.439266,0.396889,0.775673,0.513159,0.772256,0.828495,0.433675,0.813933,0.243553,0.470798,0.984347,0.659148,0.977457,0.344056,0.18721,0.697822,0.504285,0.548499,0.319914,0.645138,0.238726,0.888839,0.857307,0.652315,0.572136,0.441473,0.634494,0.664385,0.255162,0.428663,0.326352,0.850233,0.993911,0.527966,0.408855,0.147778,0.0370773,0.641071,0.210137,0.3649,0.785553,0.602004,0.861938,0.100167,0.132581,0.114992,0.405947,0.290076,0.716278,0.680438,0.449102,0.829495,0.38743,6.65188e-05,0.835835,0.379472,0.821199,0.235839,0.817868,0.512434,0.59888,0.97739,0.666854,0.487768,0.236274,0.538167,0.408889,0.744977,0.86782,0.329645,0.652126,0.426533,0.337856,0.334876,0.828681,0.942993,0.139999,0.0979139,0.614131,0.0182197,0.20194,0.652922,0.599657,0.0543783,0.658858,0.420007,0.427786,0.899028,0.510869,0.748462,0.837217,0.762895,0.982029,0.743441,0.993546,0.735114,0.454669,0.826007,0.988374,0.182736,0.952736,0.201235,0.645445,0.779451,0.594779,0.500538,0.338746,0.264273,0.489567,0.350302,0.0599972,0.523874,0.833238,0.0863856,0.532547,0.130522,0.610238,0.328675,0.617061,0.00333297,0.0270751,0.0304544,0.968971,0.758847,0.558236,0.691276,0.530297,0.120356,0.817183,0.292245,0.252186,0.260621,0.522381,0.226514,0.538626,0.24328,0.997233,0.0621044,0.559969,0.336107,0.794453,0.535898,0.525291,0.232248,0.373166,0.629536,0.8044,0.373071,0.472796,0.0977758,0.109333,0.146797,0.151738,0.1003,0.495275,0.443187,0.544291,0.784905,0.742059,0.863128,0.166185,0.970103,0.528326,0.0344296,0.559588,0.861732,0.00632477,0.0404101,0.381407,0.23145,0.208826,0.597295,0.715865,0.383305,0.386051,0.881369,0.336502,0.444121,0.298992,0.830109,0.373961,0.235887,0.410373,0.572941,0.0257295,0.388793,0.590794,0.84931,0.977894,0.3038,0.460183,0.227963,0.353365,0.511376,0.451149,0.191382,0.726855,0.829027,0.987513,0.961428,0.347748,0.71633,0.90596,0.0786948,0.302178,0.340897,0.437363,0.84623,0.805783,0.241436,0.538188,0.0686129,0.607201,0.69189,0.643057,0.429531,0.872983,0.371157,0.771985,0.881197,0.0942472,0.23543,0.793047,0.916877,0.836723,0.679752,0.273323,0.636524,0.0841062,0.245866,0.111168,0.840432,0.105671,0.611917,0.0396479,0.428478,0.389428,0.739463,0.568311,0.265499,0.260837,0.413833,0.130521,0.925025,0.963057,0.57245,0.13321,0.457791,0.319315,0.924853,0.379151,0.221493,0.31745,0.0360569,0.176206,0.138747,0.326915,0.787994,0.570719,0.742947,0.565259,0.334254,0.172111,0.863371,0.388886,0.265919,0.162,0.0212924,0.323143,0.738762,0.231466,0.0548661,0.592656,0.549522,0.446752,0.354743,0.0335418,0.5187,0.0573534,0.906955,0.322348,0.980155,0.678282,0.110656,0.53502,0.418204,0.687304,0.591314,0.151399,0.449262,0.478325,0.375982,0.471371,0.214942,0.288803,0.719039,0.806914,0.474768,0.0600172,0.0385052,0.36186,0.0747972,0.585939,0.942022,0.147358,0.888684,0.442387,0.811194,0.4522,0.7289,0.335496,0.0793396,0.251107,0.172945,0.511986,0.673649,0.543825,0.540449,0.230181,0.233407,0.800367,0.832406,0.944158,0.663832,0.0296641,0.563429,0.150816,0.211837,0.0605484,0.134891,0.211542,0.775362,0.0841767,0.0518145,0.982943,0.675932,0.401291,0.709827,0.389176,0.850404,0.499033,0.0923919,0.66472,0.161356,0.346863,0.938303,0.974307,0.626264,0.289512,0.743357,0.254818,0.702329,0.994803,0.471986,0.0533673,0.914032,0.870325,0.496045,0.763211,0.0368338,0.0812923,0.931779,0.13869,0.925156,0.862822,0.289299,0.435706,0.0682039,0.804607,0.258784,0.802669,0.199869,0.609208,0.785135,0.225588,0.538249,0.718113,0.520379,0.218503,0.148031,0.107838,0.254198,0.125681,0.134641,0.339061,0.951977,0.703009,0.962679,0.249543,0.635195,0.693643,0.183779,0.83084,0.163477,0.948673,0.405833,0.0129626,0.388315,0.146896,0.447669,0.877939,0.896859,0.610903,0.414357,0.0774715,0.226822,0.227953,0.386733,0.794801,0.209187,0.431995,0.405415,0.301892,0.99115,0.115417,0.909712,0.000477612,0.014532,0.881257,0.922742,0.153589,0.804882,0.166466,0.176489,0.41468,0.992139,0.41791,0.334781,0.165784,0.0668017,0.500277,0.944023,0.570081,0.296942,0.157296,0.301446,0.0249336,0.284997,0.661056,0.871116,0.525944,0.415623,0.304054,0.407002,0.158854,0.2853,0.842418,0.856426,0.703182,0.0104008,0.79214,0.458825,0.671316,0.661967,0.584643,0.416148,0.544233,0.973092,0.672583,0.720723,0.303945,0.666821,0.276558,0.737134,0.68405,0.126374,0.486353,0.433368,0.925806,0.350619,0.799808,0.188612,0.117199,0.181907,0.487773,0.905816,0.459887,0.794812,0.40763,0.801509,0.657205,0.814405,0.875971,0.671933,0.969046,0.41922,0.486782,0.739242,0.247313,0.535103,0.365959,0.480067,0.729014,0.725666,0.343956,0.282801,0.964187,0.786014,0.246594,0.650882,0.632892,0.505172,0.549438,0.604694,0.676079,0.277943,0.218017,0.180357,0.928848,0.902447,0.399612,0.143226,0.937616,0.645795,0.454406,0.579676,0.94917,0.781429,0.439767,0.97292,0.52432,0.949916,0.838315,0.539772,0.00446153,0.340274,0.214364,0.152495,0.218803,0.987882,0.976879,0.807706,0.145707,0.0946513,0.378326,0.526253,0.237178,0.206816,0.312384,0.893651,0.427269,0.648843,0.90796,0.972393,0.168846,0.263735,0.480647,0.832212,0.617733,0.966994,0.7124,0.417144,0.446878,0.850988,0.371582,0.501971,0.526156,0.145397,0.0067417,0.606649,0.53196,0.124479,0.35577,0.328514,0.805414,0.54974,0.961632,0.779038,0.970745,0.43988,0.387235,0.173758,0.773567,0.46706,0.0501403,0.571279,0.778275,0.232333,0.721319,0.762151,0.177134,0.969025,0.0214911,0.338576,0.333361,0.97371,0.573006,0.966298,0.0803717,0.918423,0.0497311,0.492226,0.0483966,0.319958,0.506018,0.1913,0.884806,0.637976,0.722716,0.146102,0.393936,0.994413,0.364678,0.544018,0.641629,0.695675,0.190385,0.969552,0.0637115,0.581451,0.236641,0.597397,0.204498,0.481704,0.787022,0.872713,0.377748,0.253324,0.742695,0.67254,0.00349635,0.0526304,0.47058,0.195035,0.744453,0.502293,0.439384,0.166763,0.377951,0.535029,0.98596,0.301198,0.987329,0.325614,0.976469,0.59827,0.859033,0.183119,0.534761,0.0195223,0.195936,0.217657,0.167822,0.316572,0.146816,0.176048,0.787976,0.28318,0.689802,0.561263,0.816655,0.885984,0.936123,0.564695,0.337198,0.21363,0.680193,0.907281,0.904952,0.0693747,0.182672,0.291085,0.591579,0.317652,0.0680187,0.993885,0.573825,0.758323,0.0710202,0.157725,0.601762,0.887093,0.660936,0.561625,0.234202,0.785669,0.0303925,0.926243,0.776254,0.880928,0.675301,0.763512,0.451432,0.0407286,0.168339,0.00934047,0.536283,0.277235,0.510278,0.779575,0.617865,0.299758,0.0951047,0.563591,0.766973,0.201197,0.718452,0.793861,0.995723,0.123331,0.0118383,0.231544,0.763125,0.606415,0.0686126,0.489027,0.169248,0.400111,0.626038,0.261277,0.402857,0.831957,0.0264738,0.909032,0.112446,0.797726,0.161968,0.656077,0.941496,0.185364,0.507229,0.864914,0.609698,0.969999,0.493177,0.619322,0.358634,0.635047,0.480542,0.674585,0.678698,0.044284,0.467964,0.601269,0.68287,0.529155,0.656089,0.477938,0.666755,0.941061,0.879837,0.780182,0.439528,0.778994,0.924385,0.0574522,0.86511,0.844467,0.72137,0.193555,0.882191,0.700297,0.932876,0.839853,0.0459815,0.448782,0.582892,0.0142724,0.925109,0.179622,0.0164731,0.670786,0.0206811,0.607808,0.342145,0.965463,0.0644807,0.899614,0.71765,0.48102,0.809058,0.596892,0.637064,0.661237,0.927453,0.105193,0.209308,0.835063,0.431718,0.740538,0.010274,0.445656,0.824225,0.859652,0.130979,0.923768,0.778271,0.610417,0.197562,0.953065,0.121164,0.997331,0.319637,0.605937,0.183553,0.992966,0.491486,0.770639,0.184607,0.348105,0.706333,0.256321,0.042845,0.405747,0.244165,0.652934,0.897993,0.192628,0.21602,0.524256,0.385863,0.314664,0.373293,0.266855,0.824377,0.545843,0.693836,0.158682,0.167338,0.912882,0.531863,0.604891,0.669869,0.993662,0.449062,0.558309,0.508783,0.506733,0.882813,0.738167,0.227446,0.480358,0.0683622,0.766769,0.73056,0.274743,0.170056,0.728481,0.57384,0.521768,0.855122,0.614083,0.380941,0.229909,0.352488,0.157711,0.987365,0.435209,0.187101,0.849401,0.616935,0.18758,0.936336,0.865032,0.848121,0.931904,0.136535,0.680339,0.526908,0.0726323,0.814535,0.79216,0.492549,0.735792,0.727071,0.410822,0.68061,0.702873,0.00735569,0.732971,0.0636895,0.0924761,0.725576,0.263995,0.739136,0.90975,0.248162,0.212258,0.787064,0.840889,0.69032,0.216235,0.489065,0.53727,0.164851,0.0578471,0.614891,0.794848,0.280281,0.123403,0.996483,0.949667,0.708392,0.975786,0.656923,0.510951,0.342064,0.692543,0.482924,0.231083,0.236766,0.671193,0.0418563,0.0562324,0.954537,0.5596,0.707134,0.279602,0.846044,0.878091,0.200715,0.013688,0.926778,0.188594,0.127674,0.225609,0.378747,0.684516,0.8848,0.123092,0.8201,0.430156,0.673961,0.954875,0.921595,0.26596,0.905945,0.291109,0.998775,0.970373,0.0794963,0.254796,0.478206,0.300213,0.293078,0.44437,0.00257552,0.0819977,0.283282,0.174641,0.166058,0.597129,0.668169,0.511797,|0.7447,0.739802,0.65739,0.566893,0.502307,0.573082,0.69886,0.200061,0.516009,0.960168,0.911344,0.280035,0.683506,0.90882,0.0286583,0.16072,0.963,0.101856,0.740205,0.62274,0.209019,0.0917524,0.108005,0.217056,0.511939,0.399048,0.821819,0.240306,0.140918,0.422863,0.957147,0.483128,0.825626,0.0898927,0.915207,0.630525,0.0110067,0.862141,0.684677,0.376005,0.683576,0.894878,0.738919,0.827559,0.44898,0.822531,0.450602,0.452992,0.792522,0.819938,0.402415,0.327608,0.329311,0.573034,0.040266,0.177737,0.475412,0.343923,0.785493,0.256876,0.669831,0.75053,0.605935,0.808609,0.309357,0.735978,0.286187,0.988556,0.491495,0.993656,0.123599,0.796305,0.0391926,0.957156,0.482797,0.828238,0.827647,0.566856,0.292383,0.778682,0.668682,0.528866,0.341508,0.814545,0.655876,0.7337,0.394319,0.436991,0.1041,0.753151,0.600832,0.781662,0.258987,0.880825,0.125008,0.969621,0.0740329,0.939069,0.0184637,0.337323,0.762774,0.968931,0.870391,0.98132,0.593932,0.0986005,0.34426,0.707172,0.244092,0.299232,0.473202,0.0664608,0.539119,0.0275642,0.552653,0.667705,0.999927,0.436461,0.841565,0.230859,0.210281,0.36963,0.969318,0.357222,0.0690984,0.515258,0.27044,0.71996,0.182002,0.216123,0.399926,0.340237,0.250993,0.522393,0.451717,0.524567,0.285243,0.628221,0.250396,0.604163,0.848788,0.606811,0.821019,0.430002,0.861881,0.745093,0.252366,0.963983,0.658266,0.643237,0.442849,0.364756,0.579647,0.961489,0.960079,0.695446,0.486767,0.167732,0.378297,0.957096,0.16638,0.0295914,0.151562,0.961808,0.837199,0.322292,0.214754,0.291228,0.831977,0.00647879,0.705699,0.283199,0.500246,0.293711,0.655389,0.423403,0.161067,0.592068,0.110692,0.0921322,0.96303,0.562324,0.615155,0.214884,0.964239,0.60206,0.573902,0.734819,0.518279,0.287844,0.994817,0.539079,0.482074,0.365861,0.746299,0.761219,0.568379,0.0651426,0.713454,0.438692,0.309928,0.655001,0.780682,0.621377,0.130089,0.776402,0.55498,0.784588,0.875265,0.861079,0.635755,0.980157,0.888416,0.0838663,0.656149,0.477913,0.939395,0.17225,0.533737,0.65528,0.883825,0.783563,0.655282,0.0811545,0.6452,0.315846,0.627775,0.219681,0.888257,0.166332,0.136665,0.716224,0.874725,0.0277289,0.0127606,0.932459,0.0697483,0.617356,0.178315,0.851021,0.194115,0.697546,0.417998,0.851617,0.476825,0.287558,0.750282,0.472206,0.140037,0.11496,0.926616,0.425338,0.966037,0.469756,0.249082,0.638247,0.775646,0.721551,0.258412,0.411507,0.243831,0.424673,0.96961,0.693305,0.615815,0.133586,0.894878,0.57086,0.347012,0.998779,0.876561,0.64463,0.860678,0.160479,0.941486,0.740789,0.890788,0.684413,0.00644892,0.134213,0.414074,0.335266,0.4156,0.491083,0.0416177,0.801596,0.226079,0.79003,0.829526,0.866213,0.908119,0.0853607,0.158108,0.0625337,0.934464,0.570068,0.23386,0.416262,0.703337,0.390185,0.267015,0.0850694,0.761934,0.365387,0.591946,0.832067,0.791229,0.740816,0.704629,0.0486919,0.788861,0.0849898,0.17641,0.967992,0.16875,0.525092,0.013873,0.469904,0.538016,0.930365,0.506813,0.311037,0.822626,0.687226,0.728546,0.460142,0.481745,0.104365,0.378506,0.911959,0.700384,0.196494,0.361329,0.244288,0.0339562,0.734901,0.668667,0.308275,0.559442,0.080501,0.195163,0.209764,0.229286,0.717848,0.795371,0.601044,0.732731,0.319099,0.544934,0.278843,0.470265,0.964539,0.899263,0.439049,0.0629067,0.561804,0.316457,0.608883,0.857491,0.907781,0.0835093,0.791672,0.829819,0.440751,0.394836,0.136547,0.17401,0.60893,0.200561,0.133136,0.786579,0.632106,0.646877,0.316687,0.657429,0.458403,0.736424,0.980225,0.4152,0.0358977,0.372308,0.962791,0.230925,0.779034,0.624344,0.499574,0.694313,0.052457,0.784113,0.655255,0.492113,0.133844,0.585537,0.631305,0.773792,0.491603,0.841793,0.378038,0.288965,0.480088,0.148679,0.194026,0.655766,0.567399,0.914633,0.118906,0.182046,0.0817187,0.542075,0.174581,0.645179,0.100686,0.0886275,0.12677,0.99639,0.511085,0.646084,0.557714,0.91433,0.518395,0.210169,0.259542,0.449516,0.240756,0.695688,0.720339,0.440369,0.593413,0.275008,0.249694,0.341712,0.450812,0.103805,0.182129,0.914984,0.0158773,0.624776,0.89319,0.19931,0.619105,0.387684,0.381228,0.695356,0.0113675,0.357053,0.391038,0.498658,0.395171,0.63235,0.185735,0.426448,0.424609,0.93275,0.739568,0.27163,0.697358,0.930481,0.241041,0.525242,0.839991,0.392888,0.164404,0.721536,0.487833,0.978566,0.437107,0.80477,0.877908,0.21802,0.903611,0.540909,0.150238,0.0661204,0.501304,0.522781,0.917943,0.265212,0.365531,0.523594,0.222449,0.627811,0.708475,0.664225,0.0433228,0.146571,0.332802,0.858297,0.964063,0.282121,0.0154748,0.911718,0.424601,0.0135109,0.436159,0.481862,0.552534,0.520764,0.201225,0.165953,0.638491,0.639998,0.139449,0.607485,0.606397,0.675331,0.00921291,0.260127,0.0247203,0.00735599,0.203837,0.788857,0.997332,0.616581,0.146371,0.701046,0.883635,0.0997424,0.689392,0.870162,0.396401,0.277973,0.238658,0.836768,0.227379,0.645742,0.11168,0.929699,0.00878692,0.839229,0.551761,0.30964,0.119704,0.104327,0.779193,0.157973,0.283998,0.547698,0.206379,0.711699,0.63022,0.358318,0.583957,0.472987,0.351108,0.37675,0.235389,0.479633,0.581784,0.946376,0.301833,0.556917,0.730302,0.743542,0.336753,0.509492,0.97441,0.105123,0.0235493,0.0881095,0.184086,0.70302,0.805117,0.452145,0.78875,0.033118,0.728857,0.574281,0.955669,0.313961,0.230346,0.825949,0.487071,0.147156,0.0766028,0.146557,0.0866026,0.857553,0.223224,0.362532,0.485541,0.0108212,0.07487,0.913713,0.837238,0.505936,0.381797,0.595811,0.445368,0.0975156,0.674407,0.914375,0.32915,0.528556,0.441172,0.337787,0.470613,0.470508,0.904783,0.415613,0.434664,0.810988,0.874338,0.222508,0.796427,0.848172,0.863623,0.605345,0.527164,0.48021,0.657756,0.247399,0.177763,0.0509454,0.64046,0.628773,0.497356,0.0815165,0.359125,0.319912,0.910372,0.651169,0.914218,0.98365,0.611715,0.953535,0.150045,0.277295,0.998289,0.840621,0.215628,0.87046,0.936545,0.692061,0.529893,0.309163,0.503765,0.0433406,0.969814,0.126709,0.722499,0.400513,0.491683,0.701833,0.220146,0.0671954,0.320064,0.0479875,0.888157,0.311659,0.607307,0.284855,0.650549,0.0220668,0.18249,0.439634,0.157633,0.593031,0.36506,0.364328,0.901541,0.23809,0.789661,0.236208,0.477974,0.0348915,0.429231,0.91349,0.210555,0.965425,0.102314,0.966002,0.0164591,0.883309,0.430465,0.9855,0.369126,0.673064,0.364791,0.200041,0.0395725,0.786109,0.239274,0.655395,0.515576,0.610954,0.846125,0.443286,0.591406,0.265183,0.3495,0.0466354,0.676552,0.372399,0.970112,0.324832,0.0550942,0.146676,0.88059,0.543645,0.833305,0.142606,0.952141,0.19655,0.432028,0.305172,0.508675,0.223664,0.953467,0.766643,0.441566,0.220829,0.53994,0.704025,0.513373,0.525682,0.476674,0.727694,0.509049,0.267654,0.416955,0.71873,0.620306,0.0402736,0.653919,0.539019,0.075564,0.260707,0.0612723,0.611219,0.922339,0.592771,0.351019,0.662808,0.0125096,0.298643,0.360066,0.952613,0.297165,0.427669,0.269285,0.15779,0.781874,0.957514,0.798818,0.0496833,0.322649,0.633315,0.561387,0.397635,0.855318,0.922087,0.916739,0.950131,0.841899,0.336809,0.896685,0.88869,0.730935,0.623726,0.306479,0.0950889,0.648307,0.104168,0.0643318,0.923318,0.327042,0.0629599,0.396545,0.941917,0.570834,0.136067,0.424459,0.947796,0.772459,0.336396,0.766033,0.96898,0.503425,0.97648,0.697831,0.993149,0.291374,0.930073,0.151013,0.222747,0.866578,0.280747,0.529503,0.459728,0.992064,0.797695,0.306039,0.726349,0.31937,0.586713,0.164202,0.348943,0.460229,0.432505,0.258515,0.258964,0.963078,0.144652,0.661263,0.795233,0.688862,0.715339,0.416846,0.0300976,0.112883,0.801215,0.760212,0.382581,0.506646,0.937347,0.3953,0.505625,0.74693,0.527773,0.487541,0.405029,0.301829,0.183268,0.00927788,0.412923,0.439405,0.799796,0.908856,0.391336,0.775128,0.211741,0.257864,0.187181,0.370028,0.00875366,0.239293,0.329783,0.13923,0.901106,0.24599,0.423073,0.864413,0.337801,0.914271,0.334121,0.545307,0.657426,0.299058,0.431421,0.286584,0.137413,0.61338,0.88994,0.17056,0.00837648,0.743687,0.421513,0.53835,0.0225757,0.929872,0.007572,0.687306,0.650421,0.523658,0.888989,0.564019,0.827344,0.420913,0.395539,0.405596,0.570257,0.00429994,0.273548,0.815441,0.802798,0.947596,0.13852,0.463946,0.833048,0.433731,0.688825,0.772481,0.797037,0.361435,0.946045,0.0494778,0.913146,0.966354,0.1177,0.86985,0.426413,0.609621,0.925673,0.36891,0.0490569,0.447713,0.606007,0.189367,0.594311,0.367779,0.621309,0.130068,0.911496,0.76122,0.188342,0.974334,0.392623,0.081635,0.740303,0.108859,0.480225,0.516339,0.205618,0.775433,0.458909,0.706516,0.0833635,0.185777,0.621323,0.967311,0.647377,0.196221,0.204624,0.481913,0.84555,0.538729,0.237948,0.204522,0.101381,0.381612,0.245561,0.0268304,0.634019,0.818416,0.807393,0.245605,0.118078,0.000899553,0.934572,0.482232,0.325453,0.578069,0.26758,0.0275317,0.456668,0.725151,0.569039,0.589941,0.656305,0.257942,0.714281,0.530765,0.266286,0.338825,0.376387,0.149373,0.830219,0.0950672,0.974727,0.813971,0.481669,0.590243,0.65707,0.694272,0.0725458,0.858952,0.0894962,0.991329,0.279644,0.30475,0.102823,0.562095,0.583297,0.603013,0.541335,0.404813,0.751072,0.51718,0.827179,0.280211,0.554997,0.0268707,0.100213,0.278505,0.51276,0.43703,0.102809,0.278926,0.678683,0.942326,0.752049,0.304735,0.513842,0.334083,0.460183,0.824228,0.536575,0.879003,0.987378,0.897682,|0.124573,0.940882,0.618468,0.863792,0.271213,0.125304,0.696227,0.563141,0.219274,0.185364,0.428673,0.965723,0.525926,0.866288,0.113022,0.554625,0.124223,0.161885,0.783519,0.44672,0.116225,0.614443,0.294368,0.227727,0.00197649,0.327699,0.173644,0.927861,0.644113,0.73085,0.622347,0.344558,0.509006,0.471938,0.040346,0.2776,0.78552,0.393062,0.0233417,0.539691,0.705641,0.449696,0.621262,0.56026,0.318661,0.715664,0.367567,0.0294303,0.100886,0.530555,0.526028,0.795463,0.980528,0.571158,0.719586,0.548839,0.841553,0.160375,0.318275,0.760769,0.184434,0.477614,0.337757,0.349603,0.268581,0.55601,0.355004,0.995341,0.0808666,0.608602,0.891731,0.228399,0.0181582,0.944192,0.552201,0.755449,0.270086,0.305989,0.630436,0.848098,0.961743,0.00199664,0.801721,0.714305,0.531386,0.735518,0.635052,0.401056,0.665873,0.126145,0.565598,0.254499,0.580792,0.56283,0.0734117,0.554946,0.569284,0.478152,0.343925,0.774777,0.427444,0.182753,0.550046,0.342379,0.437975,0.598601,0.955398,0.315101,0.916733,0.667775,0.787398,0.322739,0.747221,0.985818,0.703458,0.302628,0.788015,0.84237,0.691443,0.123379,0.681575,0.311572,0.503972,0.926453,0.0664625,0.107533,0.646553,0.325974,0.186947,0.640333,0.24827,0.145706,0.825555,0.571164,0.244588,0.46874,0.769995,0.104157,0.864794,0.923458,0.615225,0.52119,0.156437,0.268371,0.690311,0.695681,0.259845,0.911784,0.377593,0.515196,0.13278,0.634871,0.428929,0.0593993,0.932852,0.286388,0.156629,0.107317,0.859209,0.188263,0.664088,0.40424,0.487079,0.16014,0.683648,0.905241,0.531858,0.910768,0.571288,0.778725,0.176907,0.303086,0.146451,0.144498,0.798565,0.444505,0.751365,0.779167,0.834661,0.866526,0.745493,0.140283,0.272338,0.0308127,0.20622,0.886973,0.154534,0.0235432,0.66021,0.994475,0.779099,0.213246,0.857747,0.118327,0.366661,0.190851,0.361942,0.0957738,0.185655,0.51014,0.275435,0.506016,0.187837,0.774356,0.822398,0.74924,0.76086,0.695397,0.560587,0.76482,0.886909,0.729659,0.0202116,0.715786,0.537948,0.285115,0.556073,0.312327,0.800546,0.209241,0.768705,0.580781,0.250105,0.612634,0.165025,0.644935,0.748573,0.744969,0.297893,0.00280744,0.532586,0.56801,0.836183,0.515674,0.947238,0.103955,0.783469,0.164435,0.157019,0.736702,0.971513,0.387349,0.534739,0.349984,0.518356,0.599446,0.0345008,0.654688,0.386946,0.358629,0.38445,0.638174,0.448495,0.735701,0.99475,0.649363,0.604443,0.440543,0.832235,0.670116,0.210914,0.943747,0.452713,0.881245,0.996927,0.152707,0.376328,0.686586,0.929303,0.437474,0.215326,0.938051,0.394225,0.70314,0.365618,0.802363,0.965519,0.869544,0.335865,0.628294,0.440004,0.939494,0.302415,0.666359,0.803444,0.390549,0.79078,0.360697,0.844369,0.269779,0.741292,0.599009,0.332964,0.702806,0.479475,0.935578,0.769162,0.567522,0.501932,0.191971,0.307618,0.62323,0.441939,0.657305,0.0252398,0.666037,0.0201171,0.308136,0.376596,0.892827,0.79142,0.380465,0.527702,0.434794,0.113886,0.627896,0.266164,0.164489,0.291928,0.330277,0.0139804,0.991736,0.19142,0.865492,0.959436,0.652191,0.291785,0.192674,0.69772,0.610117,0.555385,0.13935,0.759882,0.679592,0.0666943,0.157984,0.647861,0.5275,0.8086,0.765272,0.315423,0.22619,0.269096,0.828865,0.207525,0.138288,0.519211,0.3729,0.354505,0.47805,0.821997,0.191069,0.169676,0.327874,0.246417,0.13419,0.329491,0.538957,0.67936,0.612254,0.604128,0.730494,0.0449671,0.750603,0.410725,0.752287,0.245545,0.371805,0.566976,0.0493893,0.143204,0.246139,0.263374,0.519716,0.473525,0.627325,0.351453,0.131894,0.705143,0.453292,0.138812,0.697311,0.192787,0.894711,0.76572,0.159508,0.799127,0.888168,0.664178,0.126629,0.871756,0.348504,0.807085,0.654621,0.500461,0.64127,0.976711,0.105377,0.694643,0.613227,0.506908,0.519939,0.379643,0.306068,0.704527,0.448133,0.234482,0.865717,0.495007,0.541581,0.281467,0.901838,0.542851,0.292405,0.563659,0.537853,0.804196,0.200539,0.959811,0.424277,0.36768,0.532629,0.801109,0.608796,0.284669,0.746457,0.296489,0.0506198,0.222008,0.156295,0.522986,0.777726,0.524905,0.0828177,0.270906,0.479767,0.27304,0.945707,0.529833,0.272113,0.482642,0.242497,0.133647,0.078291,0.943881,0.967302,0.73306,0.818752,0.178363,0.841017,0.843212,0.773452,0.514715,0.214252,0.0146183,0.332422,0.716384,0.556399,0.873322,0.721734,0.993888,0.199157,0.500885,0.865834,0.397912,0.719689,0.559268,0.903337,0.883131,0.189497,0.68978,0.778207,0.525237,0.550868,0.597753,0.771736,0.933878,0.15363,0.827395,0.934301,0.390385,0.539017,0.905454,0.522808,0.782888,0.685561,0.973498,0.871566,0.936173,0.413834,0.184565,0.234934,0.11267,0.11793,0.820329,0.105276,0.64571,0.107987,0.579241,0.948399,0.351042,0.513293,0.298643,0.727257,0.31805,0.977483,0.00219238,0.627142,0.015251,0.741495,0.213174,0.936167,0.466889,0.483687,0.4848,0.298972,0.754103,0.814212,0.97731,0.473992,0.958619,0.312765,0.256825,0.507037,0.994802,0.96332,0.01004,0.327452,0.114596,0.232117,0.724541,0.466646,0.500497,0.583678,0.0228568,0.287975,0.987892,0.609246,0.950534,0.493826,0.864087,0.363242,0.229617,0.255418,0.407605,0.185618,0.365106,0.0561392,0.911902,0.840678,0.676247,0.764132,0.309149,0.645804,0.755577,0.389024,0.622733,0.0362991,0.476493,0.27115,0.0444549,0.059347,0.367359,0.358116,0.181732,0.515798,0.124648,0.11892,0.796274,0.188779,0.984346,0.649139,0.331159,0.721759,0.157263,0.582865,0.444976,0.950004,0.273975,0.998224,0.000832021,0.98194,0.440402,0.477871,0.658254,0.427302,0.132252,0.507576,0.861934,0.793099,0.519291,0.894046,0.975041,0.483221,0.266784,0.681369,0.916695,0.515987,0.523607,0.689357,0.681827,0.625352,0.248425,0.885082,0.399337,0.0303388,0.774299,0.256062,0.333837,0.731393,0.630029,0.818304,0.267932,0.617127,0.377163,0.204442,0.0114777,0.19452,0.62493,0.249027,0.653035,0.0338382,0.207373,0.168214,0.230573,0.725457,0.518989,0.619992,0.179897,0.713084,0.153323,0.972375,0.537865,0.373126,0.172848,0.0484164,0.170203,0.946827,0.313103,0.664497,0.184574,0.138674,0.314744,0.931917,0.425641,0.758599,0.222829,0.389669,0.577069,0.714069,0.0725455,0.907775,0.151697,0.854259,0.644928,0.759146,0.894134,0.852077,0.181745,0.382187,0.407128,0.485083,0.131741,0.716897,0.00791693,0.421373,0.606453,0.257583,0.869664,0.142906,0.990001,0.166395,0.205634,0.335612,0.960995,0.350011,0.921192,0.0472077,0.71271,0.746733,0.610181,0.578047,0.969117,0.119477,0.334336,0.884988,0.287708,0.952824,0.549692,0.00192386,0.587216,0.945476,0.881573,0.86434,0.744293,0.411176,0.527553,0.73555,0.00560218,0.87599,0.44853,0.0852016,0.848329,0.731645,0.393739,0.746722,0.026875,0.361479,0.521375,0.744368,0.0611507,0.675921,0.683482,0.625529,0.77697,0.317948,0.0561331,0.657092,0.920541,0.349052,0.812871,0.256096,0.336423,0.912798,0.225838,0.784346,0.39173,0.100593,0.437467,0.610304,0.598327,0.995764,0.988219,0.579621,0.75436,0.170591,0.440679,0.273693,0.386468,0.687686,0.0419804,0.81796,0.208924,0.402589,0.383002,0.869775,0.107964,0.695713,0.00460249,0.472061,0.642148,0.143042,0.571318,0.479694,0.482952,0.541466,0.697217,0.881633,0.349205,0.236241,0.841941,0.909039,0.0130579,0.114008,0.388904,0.192256,0.0869172,0.0703672,0.898282,0.325897,0.315381,0.232326,0.487958,0.826054,0.993519,0.447796,0.315756,0.600729,0.860412,0.47085,0.872141,0.745418,0.958361,0.549376,0.123759,0.043973,0.547248,0.515581,0.49484,0.993316,0.76136,0.796652,0.850334,0.748633,0.878454,0.0690584,0.693768,0.135745,0.217556,0.0572228,0.269933,0.733316,0.219315,0.179173,0.317371,0.977559,0.232376,0.303632,0.539847,0.540933,0.397282,0.274778,0.00267845,0.130899,0.0733074,0.444593,0.809112,0.701356,0.00653714,0.856953,0.0183894,0.674065,0.10364,0.905229,0.397016,0.856647,0.188191,0.483178,0.311225,0.214487,0.898924,0.752241,0.525313,0.356516,0.235755,0.729768,0.609238,0.364094,0.107949,0.502066,0.0483965,0.736691,0.0149523,0.00655025,0.855142,0.535696,0.293505,0.546793,0.302614,0.742932,0.076331,0.36046,0.205306,0.764168,0.548992,0.808999,0.157335,0.811904,0.947253,0.0142087,0.260887,0.723106,0.742384,0.492064,0.039539,0.172044,0.0536154,0.590384,0.210831,0.678097,0.22929,0.526131,0.292419,0.85616,0.714265,0.519692,0.711925,0.497184,0.325608,0.135102,0.250845,0.0395954,0.207588,0.27336,0.637023,0.444526,0.601537,0.571892,0.857323,0.673785,0.327858,0.541048,0.418798,0.799366,0.76781,0.175212,0.262739,0.615485,0.449875,0.405263,0.352131,0.921057,0.336937,0.444573,0.891934,0.936793,0.322942,0.612931,0.0350934,0.438503,0.542035,0.930652,0.49934,0.76173,0.0834975,0.992199,0.939332,0.807868,0.886265,0.231129,0.96306,0.135443,0.122924,0.531587,0.632291,0.589124,0.247066,0.393699,0.277759,0.989419,0.347876,0.28289,0.178256,0.290249,0.107325,0.933321,0.747454,0.612269,0.32627,0.357395,0.693011,0.00608975,0.73837,0.242316,0.452031,0.780117,0.220807,0.00589067,0.630001,0.903948,0.962629,0.22878,0.640051,0.878318,0.54708,0.995541,0.758543,0.122615,0.632513,0.531337,0.573534,0.198839,0.762952,0.204359,0.275612,0.860529,0.733293,0.067826,0.376022,0.777916,0.00211048,0.378628,0.670685,0.898077,0.888957,0.175686,0.822972,0.854559,0.838683,0.701957,0.094734,0.483883,0.623971,0.681889,0.22962,0.975507,0.18684,0.600924,0.851157,0.0479071,0.906537,0.73882,0.545856,0.0258466,0.631527,0.117955,0.710208,0.354512,0.982627,0.723488,|0.0983356,0.172017,0.483881,0.670809,0.912881,0.716885,0.799977,0.475928,0.107943,0.117684,0.19243,0.251027,0.991023,0.781662,0.383718,0.224525,0.834345,0.623454,0.325152,0.870012,0.695045,0.54985,0.775013,0.966391,0.582188,0.504478,0.694135,0.626243,0.529507,0.869566,0.26043,0.862317,0.0911659,0.332126,0.337553,0.870475,0.703721,0.21874,0.859835,0.531041,0.470999,0.72683,0.854613,0.816084,0.656363,0.814155,0.852557,0.126056,0.861365,0.588099,0.960441,0.872545,0.0556351,0.822325,0.445536,0.389767,0.379454,0.324662,0.156891,0.406496,0.0217531,0.021196,0.395106,0.41467,0.0075438,0.724771,0.409272,0.773639,0.507634,0.666121,0.801949,0.125075,0.512311,0.0195458,0.656617,0.500068,0.00679421,0.857372,0.810971,0.2554,0.107283,0.260034,0.184106,0.637152,0.669521,0.876041,0.607111,0.955916,0.607449,0.409308,0.878234,0.0839918,0.592094,0.744904,0.801195,0.0419193,0.938174,0.624414,0.836845,0.286355,0.450797,0.0745358,0.584687,0.748643,0.594807,0.344612,0.0663452,0.602688,0.416186,0.72512,0.97315,0.922023,0.564558,0.270531,0.941586,0.394572,0.366217,0.0304689,0.651655,0.490045,0.189996,0.348547,0.993774,0.888544,0.421245,0.571305,0.0298628,0.433125,0.795029,0.606811,0.322819,0.398372,0.374216,0.39021,0.061972,0.873051,0.796104,0.64944,0.0375205,0.767998,0.320784,0.967368,0.574872,0.40326,0.909095,0.193344,0.109062,0.0433469,0.701998,0.719593,0.201452,0.446932,0.403713,0.29082,0.785266,0.389498,0.742734,0.266699,0.427177,0.665535,0.933907,0.71392,0.271869,0.176673,0.895819,0.70009,0.127427,0.286651,0.422394,0.425384,0.033182,0.391102,0.806091,0.626288,0.625768,0.201359,0.271789,0.247966,0.741191,0.54675,0.830108,0.491556,0.892256,0.497172,0.333224,0.600587,0.895707,0.858978,0.151936,0.650735,0.419134,0.593335,0.856821,0.331674,0.0549849,0.8799,0.138827,0.491682,0.141212,0.440644,0.451191,0.28601,0.893308,0.0160661,0.761208,0.244226,0.960305,0.742283,0.163125,0.844031,0.424435,0.788426,0.256282,0.304138,0.466972,0.91847,0.893103,0.247603,0.285433,0.144943,0.895468,0.857475,0.0757488,0.108448,0.292791,0.144982,0.386505,0.526964,0.446525,0.772651,0.690533,0.317102,0.87887,0.841054,0.591549,0.403837,0.756301,0.839822,0.612949,0.559148,0.346983,0.384522,0.0735909,0.680817,0.441319,0.615067,0.710496,0.368392,0.915318,0.679726,0.418175,0.0140532,0.786687,0.379066,0.970815,0.147565,0.131338,0.521249,0.313372,0.407047,0.37175,0.443126,0.0703659,0.732584,0.979724,0.631322,0.194198,0.355346,0.187541,0.0972082,0.100677,0.653624,0.658504,0.860193,0.409383,0.971471,0.751134,0.0461341,0.478567,0.166413,0.138709,0.783072,0.837028,0.660689,0.788055,0.645355,0.658049,0.121874,0.18792,0.940131,0.135762,0.432593,0.040795,0.905931,0.673732,0.474641,0.81421,0.447348,0.497305,0.98366,0.806929,0.608516,0.586378,0.0684388,0.364092,0.237427,0.0223292,0.926629,0.427548,0.352471,0.944781,0.856891,0.97146,0.960005,0.120256,0.439118,0.332913,0.297109,0.272605,0.409576,0.295202,0.749343,0.980597,0.517321,0.0582166,0.541638,0.598155,0.947407,0.455923,0.769945,0.169394,0.725484,0.796515,0.209872,0.301235,0.0451325,0.750616,0.950392,0.58716,0.713453,0.739486,0.785483,0.582421,0.760009,0.52526,0.82378,0.719903,0.985003,0.510972,0.647289,0.56132,0.0353539,0.654815,0.903817,0.175492,0.877662,0.818976,0.0507895,0.500199,0.312315,0.388042,0.469532,0.437722,0.0110231,0.415373,0.498445,0.307818,0.321339,0.0574319,0.166534,0.84303,0.451699,0.491844,0.125684,0.827132,0.281722,0.126962,0.890847,0.0205717,0.563807,0.986059,0.452799,0.807385,0.959946,0.759127,0.760685,0.183679,0.156015,0.371179,0.429511,0.374277,0.757883,0.0554023,0.578143,0.227696,0.689437,0.948663,0.192988,0.228982,0.170535,0.0300036,0.398615,0.190765,0.999142,0.0734385,0.837133,0.771389,0.87464,0.937845,0.52646,0.172143,0.362076,0.743126,0.384174,0.913968,0.611392,0.711714,0.942092,0.185747,0.593722,0.936277,0.607417,0.894304,0.0316538,0.660911,0.10432,0.461882,0.924462,0.363369,0.172615,0.460553,0.867221,0.756256,0.234356,0.116477,0.391428,0.297042,0.877598,0.501065,0.412907,0.691396,0.180645,0.284245,0.596613,0.162437,0.657412,0.0798644,0.623256,0.250164,0.0391654,0.663597,0.732078,0.986366,0.727024,0.223233,0.487104,0.355201,0.42739,0.86256,0.419382,0.748662,0.573041,0.674956,0.775265,0.130642,0.650056,0.805504,0.901606,0.0842268,0.599508,0.465469,0.519963,0.197833,0.792256,0.202674,0.139725,0.595809,0.550066,0.150911,0.0543591,0.158119,0.374506,0.282722,0.767575,0.821183,0.0774177,0.357437,0.0673784,0.644335,0.254525,0.617865,0.196113,0.473991,0.736234,0.98258,0.943164,0.0842682,0.441835,0.309226,0.450298,0.00626189,0.374139,0.648884,0.945665,0.15273,0.772891,0.526055,0.508913,0.501094,0.845347,0.75708,0.559521,0.936506,0.361217,0.833279,0.986629,0.970591,0.430427,0.470272,0.464171,0.42611,0.131176,0.822236,0.259997,0.419797,0.852184,0.120472,0.371665,0.34205,0.541875,0.240811,0.501443,0.0104008,0.995871,0.0836789,0.605395,0.985042,0.334768,0.706627,0.692991,0.280353,0.0106291,0.672252,0.518316,0.406862,0.00392717,0.481057,0.261922,0.635243,0.679862,0.313346,0.0103922,0.137583,0.509017,0.463586,0.0680664,0.297185,0.891409,0.686236,0.0712332,0.482353,0.204349,0.819843,0.215971,0.825259,0.969954,0.880747,0.798863,0.768867,0.204119,0.963824,0.375275,0.522232,0.491651,0.738222,0.534285,0.827154,0.596878,0.777349,0.1211,0.288919,0.374938,0.779128,0.996841,0.298684,0.973558,0.224998,0.585998,0.672933,0.641409,0.711234,0.492422,0.0234339,0.98332,0.520044,0.627891,0.909352,0.786274,0.179571,0.568127,0.139679,0.629658,0.722217,0.433227,0.416634,0.818914,0.149829,0.51474,0.949346,0.374194,0.615363,0.265054,0.498521,0.970328,0.552824,0.388671,0.079964,0.119306,0.839416,0.21647,0.140509,0.0244004,0.301366,0.296923,0.5588,0.605054,0.368959,0.647322,0.0301806,0.607823,0.233781,0.51636,0.663788,0.555424,0.949216,0.108208,0.633429,0.173192,0.669286,0.513419,0.418462,0.363617,0.736417,0.909479,0.223149,0.0632228,0.0817536,0.962092,0.327217,0.218634,0.569148,0.301336,0.302959,0.543073,0.0759315,0.0805909,0.938127,0.485145,0.503378,0.882851,0.777384,0.581703,0.267727,0.209127,0.411161,0.905116,0.214446,0.463207,0.377428,0.930699,0.818964,0.577028,0.522375,0.820528,0.41469,0.963471,0.497096,0.80049,0.743345,0.238319,0.690607,0.0258149,0.977969,0.333709,0.0558405,0.40811,0.0949101,0.0550684,0.798892,0.943763,0.534952,0.875329,0.186835,0.884354,0.094412,0.637916,0.0177667,0.720039,0.16173,0.558276,0.412224,0.575607,0.627755,0.622706,0.182014,0.897026,0.443317,0.934111,0.101422,0.892466,0.919852,0.428121,0.446577,0.5971,0.593625,0.517762,0.944726,0.235292,0.949392,0.0824383,0.981478,0.398559,0.689921,0.366512,0.166828,0.665101,0.0933585,0.493284,0.0513965,0.445864,0.288127,0.253683,0.582223,0.273129,0.819525,0.977758,0.588664,0.337097,0.159413,0.265465,0.613116,0.831245,0.419255,0.0521157,0.199082,0.534917,0.787277,0.420848,0.211073,0.231328,0.31946,0.189341,0.297666,0.439946,0.289227,0.722839,0.727163,0.550387,0.278155,0.079306,0.971589,0.751533,0.620971,0.103389,0.866214,0.202572,0.153715,0.209916,0.443108,0.0310919,0.357007,0.894979,0.648204,0.205629,0.917673,0.398266,0.537792,0.41934,0.701741,0.935427,0.19094,0.557886,0.111122,0.0323809,0.397579,0.251965,0.952167,0.540633,0.685073,0.506499,0.579403,0.168902,0.881691,0.0529003,0.43665,0.35245,0.304944,0.990907,0.141513,0.0458734,0.0469968,0.605458,0.552777,0.4986,0.506658,0.509234,0.300093,0.909907,0.47926,0.145131,0.239285,0.506671,0.808676,0.565412,0.888169,0.119246,0.533596,0.201726,0.440759,0.828684,0.652013,0.616547,0.651848,0.314914,0.531516,0.529853,0.651891,0.431697,0.447052,0.201771,0.475821,0.0951251,0.733397,0.868744,0.845132,0.987122,0.179492,0.276565,0.484233,0.824406,0.594319,0.0836335,0.0853588,0.784919,0.76339,0.739299,0.586993,0.102147,0.581423,0.902505,0.916738,0.417151,0.488823,0.301867,0.107781,0.958364,0.148177,0.324661,0.049418,0.849026,0.970853,0.0771616,0.394335,0.886814,0.415729,0.801716,0.949785,0.302451,0.0526478,0.487483,0.122196,0.731576,0.128812,0.84194,0.752979,0.0113791,0.972026,0.07091,0.642171,0.518805,0.166081,0.429917,0.194206,0.590066,0.898185,0.614495,0.218535,0.572107,0.260646,0.719553,0.621179,0.413798,0.252005,0.702936,0.128685,0.62126,0.508877,0.966988,0.318112,0.85521,0.693491,0.692064,0.837563,0.22632,0.00800264,0.982733,0.108236,0.521209,0.298948,0.79233,0.239685,0.646261,0.292524,0.105227,0.0652544,0.368899,0.464232,0.946738,0.249025,0.215081,0.882671,0.770348,0.107492,0.370075,0.659567,0.442561,0.123342,0.715806,0.110317,0.0287278,0.706435,0.733546,0.87518,0.509155,0.0451181,0.531501,0.681236,0.893813,0.509942,0.800022,0.201093,0.5395,0.886473,0.471885,0.179009,0.582254,0.479242,0.673505,0.925012,0.942046,0.847491,0.365201,0.541211,0.901638,0.312011,0.688942,0.314271,0.125822,0.296321,0.297141,0.305055,0.255321,0.367237,0.537421,0.486959,0.678511,0.563629,0.824243,0.246939,0.233836,0.933718,0.52062,0.242417,0.877361,0.248161,0.888369,0.310483,0.0941866,0.473528,0.521359,0.798582,0.507239,0.0221592,0.225985,0.0725044,0.994148,0.636529,0.54433,0.709988,0.0749499,0.135759,0.148016,0.690847,0.304045,0.0530128,0.145016,0.603699,0.432332,0.774058,0.975371,|0.225587,0.106864,0.525495,0.261413,0.739207,0.246944,0.646499,0.733505,0.909151,0.229031,0.87559,0.016173,0.468386,0.777824,0.244688,0.965771,0.39716,0.478865,0.372217,0.99722,0.0864996,0.596291,0.739238,0.442363,0.610025,0.0610439,0.747884,0.94912,0.172028,0.697396,0.770528,0.773766,0.461283,0.441533,0.841597,0.948227,0.314179,0.0480515,0.923054,0.462801,0.224276,0.0556676,0.414259,0.261196,0.0287215,0.501766,0.0572687,0.962449,0.437213,0.986261,0.0846466,0.0335196,0.836776,0.805929,0.775669,0.53066,0.352249,0.0463508,0.87368,0.434673,0.075491,0.144561,0.53593,0.985681,0.650585,0.452329,0.97106,0.545849,0.274502,0.374953,0.92334,0.614659,0.0698007,0.329935,0.186547,0.570324,0.0279975,0.563766,0.179144,0.91565,0.897286,0.415307,0.201485,0.583614,0.369489,0.682151,0.83799,0.0964572,0.825838,0.05575,0.051575,0.916301,0.455915,0.32806,0.0878972,0.85015,0.510514,0.568579,0.956235,0.13857,0.0797065,0.522366,0.218238,0.686774,0.787371,0.703659,0.108505,0.0360551,0.503559,0.293098,0.400113,0.554862,0.959166,0.868212,0.00992376,0.342479,0.673851,0.615498,0.54284,0.645629,0.309734,0.838463,0.395244,0.528553,0.26923,0.928276,0.297546,0.670579,0.568894,0.430103,0.378207,0.826866,0.877745,0.833712,0.960529,0.598228,0.860147,0.160036,0.624099,0.350696,0.59042,0.397819,0.644276,0.280864,0.0177646,0.463002,0.538927,0.981934,0.832606,0.590336,0.831703,0.90155,0.725898,0.5135,0.554697,0.341707,0.261259,0.847403,0.372047,0.982237,0.513501,0.586067,0.601613,0.280174,0.0436042,0.219297,0.443575,0.5532,0.0579427,0.0274214,0.289075,0.205801,0.117152,0.191655,0.00240189,0.767358,0.837335,0.383253,0.687139,0.91991,0.946141,0.109283,0.376653,0.0989983,0.0833225,0.57573,0.279949,0.0691954,0.905011,0.706163,0.994273,0.572351,0.380399,0.365498,0.0301911,0.325799,0.431388,0.471467,0.940415,0.998585,0.0622137,0.00225198,0.190089,0.971292,0.764814,0.782393,0.405278,0.258654,0.46606,0.623622,0.0864088,0.0762874,0.0346166,0.0490301,0.805693,0.645492,0.94517,0.935602,0.264756,0.163502,0.0886248,0.831065,0.29845,0.603732,0.891815,0.941182,0.665988,0.263244,0.681132,0.250268,0.807468,0.625751,0.467464,0.6646,0.0525795,0.506165,0.269011,0.267532,0.821148,0.160582,0.456895,0.52716,0.410326,0.288587,0.812359,0.104928,0.882635,0.39902,0.896989,0.143169,0.204617,0.513049,0.71086,0.986401,0.561163,0.0511868,0.565837,0.35508,0.142614,0.857622,0.235281,0.803239,0.437519,0.92115,0.758243,0.643763,0.0806384,0.591588,0.822836,0.291848,0.17854,0.481413,0.144607,0.754582,0.143823,0.598769,0.524084,0.341264,0.882383,0.616613,0.406996,0.955085,0.504987,0.337595,0.6896,0.176009,0.725683,0.192031,0.220735,0.453848,0.364109,0.841099,0.689057,0.0610948,0.0279233,0.0444824,0.306101,0.852052,0.173535,0.239225,0.322121,0.653892,0.921466,0.7771,0.85249,0.0471931,0.481505,0.163728,0.0733522,0.635564,0.574978,0.416658,0.563631,0.0505394,0.150359,0.641883,0.013324,0.719853,0.74481,0.999361,0.696152,0.0641196,0.726554,0.177231,0.280259,0.0599807,0.192973,0.363061,0.00738466,0.66507,0.498909,0.0262563,0.736108,0.411283,0.455821,0.84289,0.865573,0.320339,0.737305,0.686225,0.188242,0.736603,0.443833,0.254839,0.180847,0.532282,0.400365,0.575489,0.299158,0.126534,0.275063,0.743451,0.242289,0.06093,0.96905,0.546077,0.364957,0.296437,0.882957,0.429451,0.721407,0.293427,0.754354,0.411545,0.0895617,0.185863,0.943043,0.383212,0.428686,0.482793,0.68533,0.433027,0.731258,0.48674,0.425258,0.884445,0.104026,0.598127,0.729508,0.665582,0.144568,0.344584,0.460845,0.420293,0.188496,0.139925,0.234968,0.853216,0.998139,0.119522,0.0699298,0.772681,0.876563,0.655213,0.163716,0.163468,0.731717,0.686855,0.272891,0.141143,0.651551,0.145921,0.282948,0.348302,0.926303,0.620944,0.350829,0.664399,0.605129,0.0647155,0.695702,0.747225,0.367587,0.76142,0.901694,0.893946,0.384097,0.383519,0.0464453,0.230784,0.154879,0.530756,0.942631,0.24434,0.0815381,0.868622,0.394146,0.454069,0.272476,0.938722,0.383006,0.740809,0.580067,0.619139,0.673489,0.331966,0.220689,0.743066,0.264646,0.0372621,0.0821002,0.313575,0.535335,0.348598,0.340755,0.844616,0.794294,0.377023,0.332476,0.207789,0.422221,0.101368,0.337867,0.0346502,0.314957,0.717711,0.583826,0.207178,0.129131,0.855712,0.729471,0.852555,0.826333,0.623262,0.483035,0.0762545,0.105165,0.492987,0.0663729,0.693878,0.549794,0.00281328,0.0176239,0.844635,0.424286,0.402034,0.804266,0.659355,0.422208,0.646133,0.0256312,0.203115,0.784669,0.482238,0.0540006,0.210241,0.900836,0.784732,0.0114501,0.912598,0.327798,0.505271,0.546508,0.713438,0.697486,0.647008,0.655068,0.947425,0.767098,0.913547,0.416372,0.935809,0.933251,0.834687,0.176426,0.812411,0.0705394,0.206592,0.254951,0.0207724,0.544976,0.83932,0.421001,0.702464,0.423635,0.829609,0.395344,0.0789001,0.462599,0.837099,0.448096,0.456117,0.323525,0.596345,0.939572,0.0670999,0.724073,0.876661,0.756166,0.355611,0.382845,0.282178,0.709734,0.981032,0.438884,0.264878,0.132282,0.0456042,0.770895,0.53447,0.578854,0.030387,0.145294,0.185719,0.930318,0.631092,0.638875,0.554452,0.686632,0.163971,0.941109,0.542262,0.983833,0.185839,0.13304,0.0273758,0.019591,0.294577,0.670253,0.702655,0.981241,0.460885,0.0153111,0.970298,0.149036,0.200685,0.521939,0.994465,0.71429,0.183918,0.753827,0.649407,0.377538,0.658202,0.871103,0.683759,0.0890655,0.00391561,0.673819,0.0340073,0.755813,0.415178,0.592712,0.172168,0.362132,0.156849,0.775041,0.249814,0.278729,0.916088,0.329879,0.264855,0.212509,0.972683,0.352573,0.635514,0.925631,0.920943,0.494331,0.624172,0.551859,0.604209,0.443872,0.399271,0.403967,0.512912,0.634955,0.142708,0.377522,0.0263343,0.892103,0.509668,0.43385,0.790972,0.980399,0.781864,0.238229,0.0927461,0.657423,0.630577,0.500296,0.234642,0.541179,0.0825597,0.500147,0.835361,0.427688,0.220227,0.0682608,0.714645,0.621429,0.490651,0.47211,0.253953,0.28274,0.141449,0.804268,0.38959,0.91124,0.444474,0.771077,0.607224,0.765754,0.634911,0.506095,0.803259,0.528531,0.34779,0.17276,0.056223,0.0877844,0.569987,0.458134,0.753622,0.220227,0.440433,0.395613,0.143161,0.795369,0.304356,0.743372,0.923209,0.891997,0.451038,0.62142,0.151936,0.755961,0.380416,0.923511,0.756752,0.67781,0.853741,0.578545,0.201328,0.6639,0.631628,0.412104,0.850798,0.567201,0.704225,0.256719,0.563318,0.694626,0.0943931,0.0819831,0.494458,0.0511584,0.383335,0.264237,0.403283,0.571472,0.48698,0.272202,0.774486,0.290989,0.670911,0.165196,0.185496,0.952848,0.169869,0.493616,0.745983,0.668925,0.999658,0.0163184,0.24287,0.12746,0.264325,0.415343,0.963348,0.0111111,0.986452,0.541758,0.105975,0.409962,0.330017,0.714899,0.746127,0.292508,0.334574,0.667737,0.269299,0.390196,0.366131,0.217293,0.677477,0.484369,0.865764,0.345952,0.460751,0.17487,0.94253,0.026452,0.824441,0.714637,0.379272,0.453314,0.710736,0.997247,0.871353,0.239054,0.953703,0.886894,0.694288,0.507838,0.407747,0.828401,0.0137852,0.368077,0.344598,0.72695,0.512026,0.846336,0.480917,0.336567,0.554415,0.276677,0.666179,0.909133,0.511196,0.510735,0.460002,0.109444,0.430195,0.412688,0.732939,0.804463,0.601945,0.73431,0.835239,0.389214,0.0303886,0.0945415,0.0985479,0.143694,0.995213,0.485615,0.278436,0.699318,0.0644009,0.86679,0.281731,0.153742,0.65176,0.0113658,0.990699,0.160927,0.187688,0.219854,0.844661,0.294831,0.162149,0.35328,0.61649,0.396583,0.891014,0.503282,0.333539,0.349833,0.513732,0.392561,0.181754,0.143662,0.762315,0.850862,0.550738,0.803298,0.624834,0.573535,0.426214,0.468251,0.436399,0.0793139,0.962214,0.984192,0.69844,0.0627548,0.610923,0.408726,0.910964,0.86052,0.517055,0.677096,0.548363,0.0256002,0.50493,0.537702,0.178665,0.555106,0.573138,0.6424,0.727827,0.105337,0.853954,0.866682,0.32529,0.397207,0.983891,0.986555,0.599106,0.213715,0.141309,0.839701,0.329987,0.725165,0.605048,0.946305,0.379213,0.501515,0.935863,0.0043503,0.503108,0.474229,0.987083,0.31948,0.582765,0.866261,0.313578,0.697374,0.967724,0.78501,0.434833,0.516176,0.20223,0.195684,0.345572,0.631845,0.977774,0.806234,0.853438,0.0435044,0.698991,0.230219,0.747501,0.424166,0.30812,0.189876,0.514703,0.282748,0.0001055,0.697451,0.128796,0.142366,0.605922,0.128939,0.222084,0.0493766,0.308828,0.538549,0.269235,0.989281,0.067454,0.733947,0.0484744,0.168031,0.453314,0.447607,0.721469,0.299225,0.88541,0.17432,0.213853,0.0757508,0.356679,0.403441,0.688355,0.776258,0.195042,0.835208,0.757944,0.137306,0.273297,0.298142,0.489225,0.0433225,0.336955,0.00349867,0.335736,0.269635,0.154532,0.459761,0.465354,0.518429,0.854612,0.435261,0.863674,0.675953,0.812832,0.486546,0.55914,0.993196,0.745726,0.675736,0.618169,0.574269,0.801047,0.399288,0.0667323,0.0741587,0.014972,0.530851,0.947503,0.0689942,0.438465,0.0827171,0.398819,0.617014,0.021722,0.241526,0.00753826,0.62851,0.469076,0.324647,0.304867,0.382618,0.130975,0.581007,0.895945,0.338066,0.567307,0.229213,0.166651,0.592425,0.216154,0.936824,0.10743,0.102646,0.4619,0.695172,0.127549,0.956311,0.394144,0.764968,0.935807,0.441506,0.251647,0.0736378,0.455884,0.523239,0.0863616,0.358602,0.167241,0.920477,0.0941269,0.93189,0.00825536,0.741315,0.670031,0.0248533,0.912787,0.647014,0.21326,0.240555,0.718051,0.0521063,0.772147,0.620195,0.960775,0.843359,0.38754,|0.539373,0.906445,0.474299,0.640264,0.09539,0.601263,0.517371,0.357911,0.642177,0.445093,0.0821187,0.201309,0.875387,0.247578,0.580382,0.0164472,0.552181,0.109794,0.164875,0.307527,0.499792,0.310274,0.607344,0.497953,0.438727,0.708694,0.313635,0.414403,0.575815,0.414912,0.0376335,0.757175,0.82285,0.665421,0.50559,0.133953,0.709381,0.48608,0.526624,0.225954,0.228017,0.390941,0.768621,0.900931,0.823348,0.743679,0.85043,0.514889,0.705152,0.782487,0.932899,0.129989,0.12076,0.24081,0.930118,0.452543,0.178816,0.814458,0.595478,0.00480145,0.708683,0.20545,0.777347,0.360819,0.468219,0.917841,0.293475,0.711654,0.166997,0.0452446,0.37797,0.286766,0.459192,0.0743043,0.153861,0.691745,0.620809,0.0493306,0.163733,0.0436811,0.630628,0.164425,0.0710344,0.507826,0.564768,0.375735,0.32592,0.855004,0.30663,0.0130265,0.116417,0.200194,0.528033,0.669793,0.813909,0.757136,0.4542,0.0341568,0.13648,0.644623,0.108662,0.837485,0.649186,0.353077,0.879646,0.04859,0.638928,0.307027,0.308024,0.161073,0.556395,0.801453,0.817802,0.533856,0.875775,0.102135,0.669476,0.754024,0.979168,0.123675,0.559441,0.522405,0.140236,0.768803,0.945416,0.0644103,0.286173,0.442643,0.473834,0.13155,0.977247,0.802613,0.740203,0.101379,0.249682,0.00973278,0.195819,0.689152,0.899478,0.107833,0.843217,0.360556,0.520176,0.966845,0.453529,0.808788,0.652734,0.147702,0.340151,0.228852,0.0707689,0.478221,0.576768,0.785097,0.934908,0.21738,0.0654609,0.77536,0.981859,0.00101858,0.269746,0.395496,0.36688,0.564668,0.742655,0.38076,0.380072,0.298568,0.381848,0.166163,0.770639,0.544696,0.901818,0.11534,0.055882,0.356419,0.415444,0.150812,0.820794,0.890724,0.304082,0.388202,0.648739,0.159585,0.855879,0.944909,0.193518,0.398099,0.278218,0.00175828,0.162017,0.312411,0.57118,0.188254,0.719983,0.304873,0.684528,0.587339,0.263245,0.0696937,0.315691,0.0300387,0.055626,0.742614,0.463447,0.6412,0.0165746,0.54882,0.889819,0.772262,0.329083,0.561384,0.810874,0.176236,0.406395,0.6791,0.525082,0.418374,0.193609,0.687405,0.889488,0.511003,0.057636,0.832643,0.42583,0.322707,0.643623,0.574961,0.652424,0.422603,0.139028,0.319941,0.272115,0.835152,0.491066,0.648328,0.483981,0.161163,0.158963,0.284431,0.340679,0.246143,0.587223,0.639615,0.770806,0.175436,0.718483,0.752043,0.735857,0.180535,0.12378,0.838203,0.818937,0.186221,0.58051,0.522894,0.584003,0.627812,0.126981,0.947326,0.858033,0.600653,0.249158,0.656595,0.0657461,0.704403,0.0529394,0.428201,0.247548,0.477147,0.0303998,0.415717,0.768905,0.263208,0.600336,0.461373,0.454226,0.77985,0.603513,0.628543,0.709266,0.653033,0.853907,0.451239,0.969634,0.548073,0.135564,0.00538242,0.00608397,0.147175,0.289874,0.0082286,0.571215,0.224544,0.198803,0.421115,0.675168,0.539585,0.977084,0.0779046,0.617752,0.236128,0.133642,0.186739,0.347841,0.753039,0.3567,0.507655,0.348,0.0672092,0.300807,0.951586,0.198501,0.442828,0.201259,0.252597,0.325768,0.13886,0.325561,0.990091,0.19839,0.907959,0.750091,0.405239,0.266491,0.397762,0.717126,0.197887,0.163108,0.544949,0.462109,0.98354,0.184778,0.731151,0.559911,0.719172,0.403229,0.118411,0.63302,0.55681,0.39328,0.318624,0.657521,0.743885,0.242086,0.895672,0.0319991,0.550791,0.947358,0.473651,0.188768,0.903881,0.838979,0.451233,0.66242,0.831985,0.124661,0.61514,0.631849,0.0425424,0.61316,0.688617,0.527231,0.348606,0.892625,0.657414,0.517809,0.655537,0.791051,0.253544,0.256005,0.226885,0.392706,0.0883247,0.0350876,0.033215,0.392899,0.662552,0.636666,0.0402877,0.226081,0.635608,0.256735,0.899246,0.677058,0.306423,0.554909,0.295893,0.426677,0.488014,0.0568309,0.197986,0.851098,0.569283,0.903826,0.660879,0.713528,0.245489,0.9505,0.707474,0.00924021,0.996841,0.718945,0.833759,0.522588,0.319752,0.771608,0.0192721,0.930151,0.26329,0.523864,0.0491068,0.844291,0.702512,0.693693,0.169875,0.36991,0.455088,0.716322,0.775898,0.109102,0.268565,0.32391,0.380298,0.405176,0.656241,0.29627,0.932676,0.652593,0.990285,0.976522,0.685625,0.249284,0.860075,0.583041,0.336765,0.322551,0.751337,0.510894,0.910452,0.0297361,0.905329,0.442857,0.201381,0.140215,0.454811,0.584352,0.537796,0.308227,0.381632,0.718219,0.172383,0.102756,0.127631,0.341935,0.0604819,0.418495,0.10964,0.3216,0.00763679,0.517991,0.747564,0.605772,0.433636,0.574714,0.157033,0.990601,0.615654,0.68288,0.484376,0.845481,0.879349,0.357835,0.283093,0.694344,0.811888,0.379519,0.203858,0.485919,0.633977,0.598338,0.562577,0.129413,0.281295,0.0416051,0.766569,0.915463,0.0908726,0.170152,0.878227,0.364367,0.46163,0.518563,0.755035,0.101074,0.325827,0.974961,0.530082,0.766754,0.729665,0.291822,0.146403,0.379443,0.253729,0.377971,0.298149,0.671215,0.70677,0.670255,0.595707,0.655261,0.559401,0.48252,0.657117,0.364801,0.252911,0.257185,0.895014,0.102456,0.363925,0.651922,0.0839635,0.581572,0.0562822,0.244928,0.288852,0.0886595,0.824367,0.786632,0.240267,0.13267,0.226104,0.699325,0.54575,0.28661,0.326713,0.38784,0.175979,0.97666,0.980885,0.186443,0.760246,0.160024,0.169209,0.178033,0.442804,0.0259279,0.651284,0.129713,0.423389,0.835515,0.549362,0.395334,0.970136,0.291908,0.429623,0.725774,0.656733,0.35507,0.236316,0.891141,0.896664,0.465719,0.282125,0.915661,0.748072,0.720325,0.851354,0.860822,0.466519,0.06993,0.429489,0.656362,0.388737,0.0518116,0.747216,0.0804522,0.403916,0.122319,0.837384,0.395108,0.159842,0.331514,0.255367,0.686897,0.719891,0.428497,0.403472,0.15957,0.187691,0.420436,0.405634,0.99037,0.48121,0.394285,0.34544,0.0132157,0.998482,0.542142,0.364977,0.465309,0.588835,0.228646,0.53628,0.623071,0.835076,0.00504118,0.71946,0.665197,0.0963441,0.0726405,0.954437,0.778288,0.864024,0.371453,0.428837,0.569272,0.864041,0.151359,0.880334,0.277582,0.458008,0.728354,0.521894,0.0922531,0.426144,0.0651159,0.161471,0.747866,0.0897986,0.757816,0.650888,0.652046,0.719889,0.887532,0.137056,0.0496916,0.591661,0.48823,0.446162,0.837658,0.969225,0.952334,0.825602,0.892164,0.0426686,0.772479,0.0324595,0.213504,0.527846,0.206139,0.862091,0.905922,0.798987,0.506574,0.94112,0.940577,0.886242,0.725851,0.699691,0.20445,0.369961,0.463428,0.985887,0.60503,0.881197,0.454123,0.676611,0.979947,0.8235,0.409012,0.376306,0.525063,0.944692,0.4082,0.761013,0.856678,0.26069,0.29125,0.111649,0.307503,0.841127,0.977934,0.318265,0.506523,0.535028,0.769701,0.642012,0.954661,0.586133,0.720605,0.62955,0.619552,0.954692,0.930098,0.122531,0.443468,0.928301,0.356909,0.332694,0.808906,0.881833,0.317527,0.00890589,0.639028,0.698293,0.147082,0.164989,0.483595,0.257441,0.480725,0.808999,0.872674,0.945994,0.867573,0.45913,0.535616,0.823799,0.399311,0.289659,0.042645,0.187458,0.608325,0.821892,0.0371398,0.731249,0.150283,0.883197,0.782647,0.291191,0.0928832,0.794984,0.728229,0.456042,0.610889,0.748265,0.000303328,0.840525,0.718688,0.395163,0.851395,0.744725,0.627351,0.403856,0.743776,0.31774,0.1035,0.871646,0.530649,0.604043,0.239585,0.942029,0.642669,0.995555,0.250882,0.0256884,0.923428,0.833592,0.137922,0.554224,0.375575,0.331235,0.113119,0.0126793,0.15984,0.2098,0.411557,0.613623,0.588453,0.645579,0.354294,0.118515,0.568404,0.199719,0.3326,0.668292,0.1954,0.249013,0.4375,0.783622,0.37977,0.307803,0.977387,0.168496,0.707016,0.128369,0.669803,0.569795,0.283639,0.0864307,0.757481,0.678211,0.819791,0.97861,0.324241,0.499272,0.255521,0.911028,0.904221,0.303216,0.390859,0.939314,0.0251103,0.771034,0.275289,0.67259,0.26559,0.77969,0.728856,0.725371,0.153396,0.213281,0.890551,0.895977,0.414965,0.544883,0.43184,0.676516,0.112721,0.10493,0.622701,0.130854,0.554499,0.597787,0.317931,0.273291,0.48524,0.878234,0.968036,0.696215,0.115431,0.189303,0.327644,0.532589,0.988375,0.347602,0.994722,0.462951,0.675381,0.323942,0.3212,0.638977,0.509303,0.300361,0.194768,0.186173,0.582507,0.893182,0.321672,0.864934,0.264164,0.361469,0.637349,0.266891,0.713882,0.914638,0.0628101,0.758052,0.590487,0.737128,0.597509,0.157077,0.853658,0.122843,0.120253,0.992915,0.345874,0.557713,0.330382,0.608083,0.163939,0.0551885,0.889998,0.213039,0.605736,0.799193,0.67332,0.858885,0.578686,0.487356,0.950431,0.0102682,0.372015,0.111388,0.291123,0.956422,0.428144,0.209032,0.961116,0.919858,0.688422,0.275275,0.892934,0.946724,0.535028,0.795454,0.154685,0.511529,0.648756,0.387344,0.756717,0.720392,0.936989,0.91846,0.964441,0.604426,0.293286,0.46172,0.106908,0.127204,0.51824,0.690105,0.446711,0.498273,0.712493,0.378542,0.634639,0.332061,0.282966,0.14147,0.534732,0.681478,0.755347,0.482917,0.212309,0.608327,0.576607,0.799071,0.813109,0.923808,0.223576,0.380669,0.113113,0.940312,0.375666,0.818178,0.509627,0.0655851,0.743761,0.502998,0.240253,0.914711,0.148066,0.764143,0.0319233,0.0110536,0.708013,0.281066,0.0437831,0.346446,0.0279631,0.569513,0.220667,0.248894,0.733284,0.000141263,0.976786,0.211946,0.897187,0.728111,0.927539,0.532395,0.282823,0.506935,0.27993,0.239497,0.748311,0.0155451,0.651048,0.810435,0.013553,0.753979,0.290917,0.297556,0.633619,0.81279,0.545556,0.0187355,0.0157178,0.532176,0.846507,0.812944,0.105028,0.83126,0.0880538,0.84348,0.0185295,0.268784,0.921206,0.199078,0.935235,0.276981,0.388863,0.0462054,0.560641,0.324947,0.441912,0.737101,0.366633,0.0395979,|0.158719,0.834449,0.268164,0.873319,0.2878,0.527355,0.468875,0.442625,0.116425,0.697399,0.0965133,0.924577,0.0826848,0.83823,0.637781,0.880978,0.82656,0.904346,0.130322,0.11186,0.418332,0.972732,0.0839396,0.832886,0.634316,0.413292,0.269432,0.402288,0.786741,0.336192,0.735165,0.870602,0.549019,0.521899,0.901494,0.505933,0.734295,0.923347,0.0432741,0.783986,0.153175,0.821849,0.654911,0.257248,0.893319,0.0787584,0.545873,0.361596,0.122875,0.243283,0.0920202,0.60791,0.0192616,0.74592,0.69267,0.801595,0.281162,0.637296,0.102352,0.914595,0.0198212,0.949445,0.307412,0.69689,0.102129,0.464308,0.54109,0.149195,0.208515,0.641524,0.623076,0.663389,0.85873,0.044271,0.254704,0.640342,0.0440211,0.333984,0.417096,0.27357,0.811867,0.0765964,0.352121,0.16803,0.178427,0.678207,0.489133,0.306415,0.956242,0.114046,0.356219,0.296181,0.108035,0.478061,0.493333,0.321124,0.910855,0.594984,0.81417,0.891686,0.327116,0.707287,0.0792292,0.926119,0.888539,0.260893,0.349252,0.995936,0.436412,0.0346924,0.129493,0.931044,0.72311,0.106452,0.463403,0.0785763,0.377584,0.148733,0.729804,0.557123,0.294065,0.21961,0.394347,0.246595,0.0901209,0.354305,0.972399,0.722282,0.597241,0.977389,0.372987,0.94462,0.468501,0.204377,0.0600981,0.738231,0.845043,0.0232512,0.483025,0.365211,0.0823849,0.0541925,0.830609,0.882815,0.229469,0.117464,0.518276,0.649083,0.619769,0.488957,0.157663,0.578214,0.456695,0.984463,0.0630718,0.205575,0.171249,0.471001,0.778815,0.0934743,0.984156,0.289828,0.462952,0.548656,0.537632,0.846067,0.36392,0.91986,0.938319,0.908159,0.572436,0.908356,0.0261148,0.771038,0.528161,0.089738,0.522701,0.493197,0.431105,0.00700396,0.70964,0.46948,0.354424,0.708499,0.281567,0.821635,0.561558,0.134461,0.76639,0.456625,0.251959,0.510226,0.471943,0.581763,0.0886195,0.436503,0.18109,0.0213182,0.107652,0.870354,0.997592,0.538438,0.0827674,0.882273,0.666377,0.908644,0.561316,0.682647,0.638543,0.987028,0.726835,0.318957,0.96031,0.595737,0.999163,0.348782,0.977992,0.846409,0.313057,0.253852,0.926571,0.520275,0.227935,0.662143,0.491049,0.238523,0.541633,0.312211,0.646484,0.104511,0.295412,0.534282,0.304913,0.302313,0.100581,0.905977,0.228899,0.512392,0.394674,0.00715935,0.839996,0.222598,0.361131,0.327491,0.703278,0.975754,0.270486,0.94426,0.243171,0.930379,0.0888203,0.108595,0.898224,0.468478,0.647066,0.896579,0.424329,0.161166,0.166084,0.617985,0.799907,0.733869,0.309737,0.918896,0.411196,0.32352,0.470063,0.724181,0.69889,0.962077,0.880344,0.941493,0.815874,0.704869,0.0797416,0.212136,0.614244,0.464366,0.511812,0.949606,0.800764,0.0502305,0.772902,0.624549,0.372033,0.599228,0.713028,0.18575,0.757498,0.0281234,0.0876532,0.0333915,0.106105,0.514312,0.8649,0.337354,0.200416,0.416495,0.770259,0.202141,0.221957,0.0978304,0.850562,0.261342,0.116692,0.207931,0.239683,0.491835,0.396342,0.85846,0.0891903,0.130322,0.602824,0.276674,0.820618,0.750417,0.130268,0.2082,0.302099,0.751526,0.135081,0.476071,0.105742,0.155269,0.785115,0.0654454,0.263031,0.477991,0.353481,0.14642,0.985739,0.998071,0.463654,0.317204,0.181981,0.536524,0.526759,0.343654,0.91846,0.795103,0.454795,0.579469,0.0606112,0.527437,0.848054,0.180554,0.740284,0.744246,0.141431,0.698441,0.373242,0.481354,0.46354,0.488368,0.983723,0.249428,0.444849,0.228848,0.734563,0.835893,0.565338,0.749814,0.432539,0.468388,0.413069,0.41053,0.11801,0.677974,0.247248,0.142249,0.747362,0.480406,0.854152,0.948073,0.978536,0.836359,0.868018,0.900051,0.0873455,0.803163,0.463108,0.540359,0.110169,0.0637425,0.724696,0.635992,0.285795,0.457792,0.847449,0.475775,0.964988,0.716813,0.571885,0.472325,0.26742,0.753654,0.914356,0.801268,0.957288,0.855819,0.283415,0.686146,0.0719392,0.869418,0.777354,0.508284,0.744755,0.646825,0.190038,0.862966,0.0760161,0.646677,0.783074,0.966651,0.10666,0.952489,0.662394,0.958886,0.820772,0.115764,0.34814,0.0373189,0.548568,0.22001,0.967893,0.0434165,0.284344,0.000483155,0.953057,0.734723,0.620586,0.386496,0.279009,0.120716,0.423872,0.559074,0.662639,0.700438,0.813734,0.928031,0.527625,0.280876,0.492041,0.789883,0.819681,0.807031,0.527078,0.837558,0.87539,0.968614,0.892114,0.5024,0.979158,0.805801,0.589218,0.723129,0.665222,0.892783,0.487066,0.815929,0.705624,0.00028336,0.833413,0.197232,0.392993,0.287893,0.994365,0.965889,0.987821,0.52674,0.846525,0.460879,0.845984,0.172374,0.455194,0.842826,0.568096,0.467416,0.81545,0.956975,0.0739146,0.927343,0.416577,0.906416,0.859344,0.215803,0.392214,0.342832,0.364792,0.708152,0.825027,0.952991,0.333055,0.337117,0.955942,0.996696,0.898989,0.548021,0.796426,0.898612,0.261677,0.570185,0.894461,0.354786,0.905881,0.838612,0.991175,0.120219,0.170139,0.40994,0.31926,0.991379,0.517098,0.0530491,0.578308,0.71326,0.90694,0.613814,0.674805,0.517066,0.255289,0.452318,0.599209,0.840509,0.773511,0.887646,0.198649,0.0442761,0.654781,0.112555,0.604264,0.447755,0.487728,0.623707,0.151111,0.690284,0.215764,0.144453,0.636996,0.655656,0.724103,0.585526,0.955522,0.0342501,0.021246,0.721949,0.170469,0.895494,0.330848,0.875653,0.673698,0.403522,0.104708,0.320043,0.12019,0.510451,0.562895,0.548609,0.907559,0.630206,0.217777,0.878812,0.282921,0.343573,0.609399,0.882667,0.391334,0.639567,0.710379,0.682632,0.835294,0.533232,0.378538,0.197673,0.896632,0.572092,0.798562,0.74059,0.95354,0.205661,0.957472,0.615808,0.62482,0.933672,0.0935583,0.169182,0.0872887,0.936009,0.212056,0.352793,0.595871,0.170122,0.0146781,0.552362,0.78603,0.968735,0.516785,0.0454676,0.426976,0.183197,0.197349,0.0978398,0.218781,0.621095,0.477972,0.0250083,0.39001,0.897349,0.173484,0.827753,0.64529,0.351007,0.608079,0.468787,0.591042,0.866193,0.458174,0.0786211,0.332795,0.967932,0.268763,0.490146,0.429901,0.901885,0.348388,0.263655,0.133783,0.133421,0.94556,0.315425,0.680505,0.336614,0.531076,0.759151,0.943495,0.138746,0.251413,0.219858,0.450153,0.835206,0.824317,0.752674,0.466054,0.0909337,0.337861,0.874411,0.294334,0.384217,0.964726,0.925465,0.191877,0.972483,0.168856,0.564387,0.717904,0.552255,0.964319,0.953878,0.555123,0.318751,0.149745,0.361788,0.152075,0.423317,0.530135,0.657593,0.611676,0.871299,0.637665,0.484383,0.398363,0.72885,0.0182084,0.336548,0.499691,0.385499,0.352762,0.937687,0.492846,0.562747,0.363498,0.424921,0.567337,0.559057,0.546368,0.992998,0.779589,0.00443673,0.515143,0.396892,0.0454026,0.429894,0.809934,0.943256,0.132424,0.162468,0.372096,0.0149271,0.277529,0.8212,0.536372,0.0349203,0.919353,0.900264,0.732262,0.799243,0.379494,0.635284,0.188487,0.459882,0.771686,0.0880023,0.981627,0.696161,0.296003,0.355687,0.0268971,0.515341,0.545095,0.581447,0.702539,0.88548,0.696033,0.0766127,0.772598,0.209869,0.263346,0.917858,0.459135,0.56997,0.934482,0.65571,0.363159,0.480767,0.674407,0.880572,0.816751,0.734916,0.381844,0.669995,0.877162,0.994788,0.920956,0.00935835,0.644768,0.142619,0.0499442,0.265062,0.481175,0.197162,0.798538,0.606025,0.964756,0.848325,0.213351,0.44235,0.595688,0.0613187,0.0415998,0.636541,0.47091,0.574142,0.0410526,0.781916,0.267293,0.202307,0.0172666,0.602007,0.953255,0.0377011,0.573632,0.722744,0.195443,0.959486,0.468686,0.155069,0.771756,0.151998,0.239767,0.356982,0.0901551,0.915338,0.425637,0.681199,0.973942,0.983258,0.30803,0.395037,0.240451,0.293495,0.37756,0.329872,0.901309,0.427473,0.211618,0.162468,0.139367,0.401352,0.138423,0.676354,0.860203,0.495688,0.371138,0.861122,0.176939,0.0453439,0.811658,0.974913,0.797958,0.935967,0.0382187,0.359438,0.736213,0.65968,0.574602,0.402656,0.34598,0.703677,0.0296558,0.26908,0.22965,0.179964,0.0571538,0.93392,0.350516,0.742492,0.86586,0.315228,0.745949,0.749234,0.110925,0.0832428,0.545425,0.489283,0.468553,0.412473,0.083974,0.783483,0.813095,0.74292,0.568598,0.159082,0.126173,0.929438,0.409699,0.083977,0.507402,0.627608,0.357128,0.279239,0.515578,0.348769,0.286802,0.0603486,0.977466,0.0608827,0.182766,0.997036,0.424925,0.413215,0.34161,0.839961,0.840535,0.364902,0.49821,0.00339442,0.784312,0.530537,0.769406,0.613921,0.508047,0.979148,0.852831,0.352233,0.0897907,0.880708,0.375015,0.111508,0.525706,0.060885,0.685725,0.241349,0.839377,0.472269,0.488088,0.93941,0.463132,0.964057,0.126108,0.483089,0.288534,0.336893,0.876868,0.045111,0.213801,0.00651067,0.161275,0.604496,0.307844,0.24549,0.587873,0.45031,0.550429,0.18457,0.611033,0.88968,0.478134,0.876377,0.892851,0.518041,0.747691,0.784277,0.493906,0.350998,0.48675,0.473461,0.53129,0.672399,0.26554,0.720766,0.329924,0.365455,0.338999,0.140515,0.734924,0.518846,0.492682,0.677824,0.422061,0.353895,0.441076,0.631002,0.546726,0.780333,0.887943,0.601012,0.719171,0.0899809,0.380838,0.363745,0.139121,0.302672,0.425824,0.387852,0.0580732,0.878284,0.268505,0.184842,0.15401,0.483334,0.460096,0.10354,0.818953,0.409882,0.423054,0.44793,0.965269,0.0792027,0.461465,0.656789,0.416948,0.685648,0.546752,0.174223,0.256455,0.370931,0.0326062,0.848681,0.234692,0.358895,0.485216,0.955373,0.687575,0.521346,0.381602,0.854924,0.971187,0.650856,0.145783,0.31693,0.622647,0.674173,0.658243,0.70714,0.565768,0.745251,0.537392,0.988475,0.097113,0.999247,0.360536,0.368104,0.295636,0.53542,0.845418,0.935605,0.884655,0.494149,0.277492,0.477761,|0.936749,0.104609,0.459987,0.841947,0.22296,0.548458,0.56132,0.627591,0.463584,0.373844,0.811848,0.123873,0.151575,0.95015,0.329619,0.214595,0.949187,0.97101,0.447727,0.427598,0.609209,0.640922,0.413392,0.547105,0.555978,0.721459,0.115079,0.444758,0.977142,0.529406,0.375743,0.22682,0.400295,0.975569,0.535257,0.545106,0.497555,0.815935,0.153659,0.36125,0.861175,0.437179,0.95246,0.32579,0.396717,0.870822,0.14005,0.614532,0.0052104,0.432317,0.256396,0.906789,0.698904,0.607659,0.0834347,0.543744,0.386511,0.587546,0.77081,0.523492,0.74105,0.899447,0.931388,0.247826,0.922149,0.0681406,0.310006,0.414913,0.870409,0.0947904,0.133899,0.28782,0.139025,0.517932,0.818083,0.672505,0.0322018,0.894321,0.421746,0.735346,0.501434,0.615741,0.827121,0.653931,0.864764,0.774717,0.104299,0.232842,0.0595985,0.160448,0.341754,0.0430394,0.0919904,0.159558,0.856515,0.55759,0.519856,0.461132,0.148856,0.387008,0.52465,0.224677,0.424944,0.539254,0.259373,0.380398,0.706884,0.457513,0.346695,0.968407,0.62232,0.25016,0.269148,0.113057,0.644392,0.245356,0.901846,0.633433,0.170112,0.619151,0.127748,0.491636,0.503409,0.516677,0.15701,0.565149,0.633614,0.537084,0.123968,0.308556,0.245876,0.969755,0.369544,0.0754023,0.53828,0.766348,0.688362,0.910678,0.644812,0.789556,0.194942,0.243278,0.659195,0.883141,0.0280167,0.483137,0.989768,0.101996,0.0891383,0.00768864,0.811327,0.945796,0.744824,0.193481,0.111001,0.900966,0.0723816,0.84373,0.0292221,0.265209,0.223327,0.485088,0.464139,0.794276,0.830073,0.221978,0.342642,0.575909,0.0246432,0.0539128,0.962216,0.951444,0.454759,0.278684,0.399853,0.438149,0.0907547,0.626223,0.526712,0.672949,0.469297,0.802668,0.62981,0.844031,0.530869,0.113486,0.214323,0.315652,0.91955,0.367707,0.146398,0.289529,0.363561,0.309596,0.545248,0.669267,0.410545,2.36034e-05,0.881311,0.0421003,0.600306,0.427142,0.632017,0.67405,0.846723,0.777901,0.11256,0.385671,0.585692,0.395347,0.599055,0.0485542,0.887272,0.16889,0.49212,0.244114,0.810039,0.483273,0.662052,0.998463,0.206389,0.416985,0.35316,0.727728,0.206221,0.548439,0.225057,0.0858169,0.690153,0.827644,0.230067,0.779587,0.466295,0.00696826,0.973756,0.740048,0.37259,0.455257,0.980557,0.573169,0.314896,0.02575,0.645979,0.32955,0.49982,0.195446,0.552424,0.317044,0.0141179,0.42077,0.775987,0.895649,0.977413,0.978051,0.439413,0.693,0.348858,0.0685228,0.0354987,0.888252,0.402136,0.815412,0.272945,0.145789,0.700973,0.749491,0.263543,0.973001,0.613021,0.747334,0.69528,0.721849,0.940707,0.950119,0.672546,0.564888,0.677505,0.611705,0.132723,0.961875,0.720615,0.840537,0.618045,0.58048,0.833855,0.0199109,0.221948,0.248145,0.834774,0.976581,0.132715,0.838549,0.511083,0.0458549,0.719684,0.508518,0.423053,0.441004,0.605616,0.809564,0.539182,0.0768782,0.55637,0.194225,0.0953338,0.397514,0.983645,0.206959,0.635422,0.564507,0.0677369,0.56687,0.760862,0.796114,0.750064,0.114276,0.147141,0.552053,0.416187,0.923492,0.368792,0.895692,0.61391,0.244419,0.0453562,0.274784,0.981786,0.41219,0.438681,0.413806,0.575855,0.315584,0.249353,0.41046,0.268132,0.0823123,0.257711,0.541646,0.915253,0.798737,0.881086,0.584003,0.391317,0.521418,0.284849,0.707655,0.694889,0.176071,0.726066,0.186768,0.761038,0.711169,0.200751,0.431302,0.799572,0.0306935,0.273153,0.438168,0.488689,0.577001,0.534744,0.211481,0.888941,0.461166,0.227035,0.618373,0.783558,0.458399,0.178767,0.312576,0.602231,0.588175,0.350792,0.320274,0.0608971,0.405085,0.597119,0.0606464,0.162308,0.400822,0.624746,0.265135,0.502478,0.240659,0.481068,0.961807,0.0673223,0.774917,0.115419,0.718997,0.730104,0.301868,0.94386,0.200656,0.180705,0.30193,0.451338,0.82373,0.470028,0.000447631,0.861597,0.943141,0.0464166,0.928745,0.0047459,0.586264,0.726566,0.490174,0.53145,0.704917,0.161029,0.676437,0.103257,0.302893,0.961193,0.0276874,0.969508,0.893823,0.0931189,0.732657,0.593675,0.765634,0.981448,0.119439,0.640943,0.317671,0.847064,0.121143,0.109736,0.739623,0.195444,0.657105,0.396118,0.911878,0.634677,0.0321296,0.397113,0.309667,0.214941,0.356668,0.100088,0.917417,0.741172,0.628405,0.589503,0.0980341,0.840962,0.947714,0.624001,0.164876,0.807553,0.69707,0.122022,0.689324,0.0323637,0.116084,0.594478,0.813625,0.991138,0.499552,0.157885,0.385847,0.409729,0.865515,0.701433,0.368995,0.138908,0.175327,0.827729,0.908136,0.82281,0.464103,0.0251577,0.846125,0.337721,0.993637,0.916572,0.90913,0.738156,0.0493821,0.941514,0.976241,0.665418,0.488664,0.470589,0.961626,0.493373,0.215104,0.825351,0.546434,0.715031,0.607829,0.564776,0.048646,0.248703,0.913566,0.474862,0.0530072,0.644324,0.998191,0.705655,0.798669,0.545399,0.878236,0.429934,0.416135,0.75277,0.868248,0.804237,0.945738,0.446148,0.578764,0.342675,0.174355,0.218306,0.671941,0.642775,0.0409361,0.250607,0.915556,0.674765,0.176308,0.319852,0.0226783,0.221694,0.766302,0.503723,0.381148,0.379922,0.504618,0.50925,0.182795,0.803352,0.71765,0.846218,0.97347,0.00516146,0.382429,0.377186,0.258423,0.552261,0.770846,0.324235,0.583199,0.711058,0.0173666,0.401279,0.218606,0.660252,0.439945,0.140457,0.117668,0.363321,0.299284,0.328174,0.322652,0.107273,0.0935035,0.79539,0.580883,0.565163,0.345791,0.955512,0.416602,0.0596065,0.663121,0.0696446,0.456058,0.689833,0.898346,0.109959,0.642501,0.104425,0.993323,0.9547,0.600187,0.208346,0.909868,0.311776,0.345104,0.880038,0.996033,0.382103,0.93964,0.177695,0.612822,0.801817,0.393524,0.430387,0.180545,0.148167,0.417994,0.426478,0.319235,0.20625,0.10862,0.414688,0.484143,0.890949,0.703918,0.32638,0.539556,0.912934,0.093318,0.940625,0.484728,0.113211,0.108971,0.753156,0.749582,0.032195,0.53775,0.396368,0.205771,0.421133,0.782342,0.0391829,0.934795,0.430589,0.1616,0.904938,0.16785,0.805317,0.70594,0.157634,0.581059,0.784295,0.0858484,0.123483,0.350318,0.081609,0.637495,0.332667,0.0140851,0.043466,0.52819,0.992626,0.660056,0.234007,0.897907,0.214455,0.946766,0.504866,0.398076,0.931127,0.165786,0.24389,0.843774,0.143615,0.604726,0.343025,0.945649,0.149555,0.0867081,0.848445,0.538569,0.125987,0.447362,0.57916,0.313096,0.0705126,0.838254,0.576674,0.462885,0.426851,0.566152,0.909245,0.640326,0.0127112,0.713612,0.741789,0.00968719,0.5268,0.1761,0.223876,0.78413,0.808235,0.120065,0.788371,0.882921,0.813535,0.0621873,0.723026,0.97522,0.0273979,0.366466,0.941712,0.627368,0.487585,0.598424,0.962612,0.24386,0.88452,0.959054,0.576677,0.534245,0.82701,0.641152,0.287305,0.313539,0.726436,0.879107,0.129546,0.369588,0.263355,0.450454,0.649078,0.973189,0.784831,0.668514,0.333104,0.548785,0.655678,0.564527,0.698753,0.691372,0.826019,0.202571,0.194363,0.411293,0.713512,0.258207,0.575328,0.57471,0.723394,0.588943,0.109014,0.731462,0.965469,0.00857306,0.269012,0.662305,0.453703,0.28634,0.893481,0.130572,0.0486957,0.0956072,0.52951,0.678868,0.728474,0.854995,0.749059,0.84613,0.335194,0.143419,0.503521,0.587584,0.561695,0.284201,0.957636,0.35173,0.735231,0.635018,0.919949,0.602952,0.0707381,0.985607,0.770972,0.0811533,0.0477239,0.468361,0.139957,0.072321,0.5862,0.499616,0.685084,0.839987,0.0672649,0.363798,0.9702,0.596249,0.987752,0.0920826,0.408568,0.993599,0.1902,0.740718,0.149611,0.543127,0.631789,0.390997,0.500861,0.101607,0.737953,0.366713,0.110917,0.470676,0.253969,0.924413,0.997974,0.0587576,0.15127,0.946332,0.110115,0.100911,0.37718,0.800334,0.785495,0.528376,0.17345,0.0589756,0.749755,0.995193,0.994541,0.697206,0.571011,0.708879,0.34864,0.526117,0.196506,0.426425,0.0621,0.520085,0.642249,0.141473,0.397862,0.216665,0.760606,0.0247326,0.497162,0.0336211,0.0997607,0.625286,0.0660345,0.240184,0.724268,0.370088,0.186823,0.283903,0.714721,0.414488,0.839498,0.986559,0.848591,0.966168,0.567452,0.517989,0.557991,0.944858,0.783868,0.294519,0.427218,0.936548,0.485498,0.485224,0.0846764,0.969431,0.241275,0.512187,0.168582,0.865148,0.509155,0.262788,0.6877,0.673507,0.99043,0.625279,0.419618,0.564014,0.88178,0.975866,0.384762,0.273019,0.769542,0.079707,0.750419,0.116861,0.577442,0.494541,0.0769327,0.671439,0.830979,0.792444,0.613124,0.363348,0.51021,0.651223,0.134439,0.747826,0.434722,0.225972,0.464353,0.241732,0.66621,0.31369,0.169561,0.964738,0.553277,0.112612,0.70736,0.465405,0.837789,0.801311,0.940249,0.0720754,0.871663,0.183434,0.506681,0.243939,0.0441001,0.439589,0.992503,0.879918,0.0269573,0.603221,0.460796,0.539436,0.260949,0.146967,0.15329,0.465302,0.927349,0.917028,0.473831,0.537638,0.157827,0.823984,0.861847,0.954906,0.238338,0.641147,0.0874436,0.480295,0.473552,0.871046,0.0373445,0.713754,0.0824077,0.0416303,0.28528,0.477356,0.0611999,0.207699,0.866941,0.678755,0.760856,0.807918,0.192422,0.333601,0.843488,0.344429,0.682222,0.374933,0.296678,0.0958583,0.0174655,0.225796,0.321349,0.606286,0.778602,0.871998,0.498495,0.55894,0.6132,0.0483284,0.771455,0.974445,0.691626,0.782084,0.798319,0.74735,0.192181,0.937642,0.1748,0.643865,0.396009,0.741644,0.972361,0.766933,0.0952811,0.982707,0.28958,0.414257,0.496145,0.119283,0.163372,0.419077,0.452928,0.81752,0.0315631,0.0875444,0.512095,0.861086,0.34221,0.403976,0.387563,0.788319,0.342008,0.0497968,0.60156,0.706465,0.433539,0.423897,0.0562677,0.130655,0.00157309,0.229596,0.59659,0.312669,|0.628698,0.677413,0.580483,0.702396,0.0076893,0.181345,0.122156,0.608034,0.705783,0.61069,0.350825,0.992909,0.943153,0.0488744,0.486583,0.536559,0.483551,0.702531,0.366602,0.0396771,0.868477,0.162129,0.853278,0.935202,0.250686,0.697191,0.436679,0.601495,0.214648,0.86963,0.621931,0.406276,0.321887,0.79369,0.0760046,0.0226631,0.0736242,0.227644,0.564163,0.253587,0.081325,0.806085,0.772428,0.582458,0.160601,0.190584,0.870105,0.752088,0.976939,0.810926,0.805994,0.824069,0.255821,0.713417,0.732994,0.709789,0.953628,0.269987,0.887074,0.95897,0.983502,0.448484,0.627785,0.414705,0.103602,0.477064,0.299971,0.272773,0.191386,0.671005,0.966623,0.974427,0.409697,0.42294,0.280887,0.141714,0.439543,0.0677831,0.15037,0.291259,0.729892,0.942129,0.913471,0.0974665,0.539863,0.626421,0.372894,0.58823,0.669063,0.191952,0.0658213,0.581333,0.52206,0.324328,0.106204,0.87778,0.94594,0.144071,0.0880319,0.361206,0.953286,0.718463,0.272105,0.535214,0.577611,0.0913056,0.320804,0.923645,0.869206,0.823117,0.259929,0.0536191,0.314186,0.860892,0.473868,0.272556,0.166191,0.486942,0.178554,0.760216,0.51535,0.667582,0.472184,0.527698,0.205149,0.548948,0.470723,0.917564,0.877826,0.863325,0.563539,0.398802,0.369351,0.126373,0.393643,0.27576,0.968641,0.320523,0.243856,0.336097,0.100022,0.00634891,0.372506,0.637139,0.25565,0.554168,0.580234,0.37373,0.24011,0.246381,0.58474,0.418367,0.014258,0.771351,0.622201,0.91197,0.216406,0.344452,0.0806869,0.774971,0.627439,0.572092,0.901822,0.716635,0.947959,0.705899,0.653444,0.587826,0.368041,0.104209,0.290433,0.975317,0.094835,0.169731,0.953311,0.365705,0.251359,0.496759,0.444989,0.890009,0.0253354,0.0972097,0.50936,0.503575,0.655176,0.656324,0.421709,0.0701255,0.295611,0.0723698,0.668066,0.0485641,0.350898,0.655797,0.0849497,0.92156,0.915131,0.135025,0.206528,0.493255,0.896104,0.65761,0.708351,0.180961,0.415545,0.293566,0.35799,0.829438,0.60097,0.967459,0.528593,0.144337,0.219923,0.277721,0.808808,0.0379419,0.493022,0.94645,0.158993,0.56168,0.991461,0.903529,0.957022,0.433964,0.377788,0.210523,0.64229,0.101321,0.44718,0.660544,0.0688558,0.480642,0.255123,0.818195,0.750415,0.717388,0.21788,0.216673,0.611326,0.050387,0.464532,0.685641,0.222819,0.749588,0.988284,0.546096,0.509734,0.112063,0.934418,0.372423,0.540016,0.920246,0.274116,0.514121,0.185906,0.980513,0.870599,0.435264,0.739177,0.0682647,0.55069,0.751213,0.519075,0.289922,0.563419,0.454747,0.223247,0.174742,0.752776,0.173549,0.0333625,0.443119,0.743649,0.086296,0.258815,0.0272279,0.526168,0.459417,0.00182867,0.826944,0.84018,0.172543,0.945113,0.0495199,0.133987,0.91792,0.0365613,0.652008,0.581602,0.330115,0.0461962,0.0510694,0.971775,0.841326,0.865088,0.0470477,0.434636,0.156552,0.841021,0.0678472,0.984792,0.153547,0.348963,0.382791,0.527972,0.200293,0.260846,0.0242708,0.491429,0.286862,0.752801,0.446909,0.204328,0.457574,0.0995579,0.652067,0.753555,0.606801,0.283828,0.811876,0.4482,0.404427,0.90568,0.948644,0.0688158,0.736636,0.256469,0.508627,0.29821,0.871353,0.589767,0.174404,0.234101,0.697222,0.323637,0.0614715,0.218342,0.409722,0.677283,0.810904,0.131638,0.492124,0.473105,0.0455595,0.00758797,0.745863,0.511621,0.776533,0.235697,0.223777,0.432428,0.0891165,0.203744,0.103004,0.249881,0.578105,0.144419,0.179742,0.332321,0.598107,0.599708,0.418723,0.913312,0.0605577,0.664346,0.277538,0.911997,0.22607,0.441914,0.110418,0.428866,0.897433,0.460272,0.991093,0.280074,0.374827,0.749712,0.110149,0.465716,0.541982,0.64792,0.68281,0.281366,0.712566,0.0994997,0.895229,0.294541,0.371054,0.0995226,0.899765,0.156774,0.212121,0.0987384,0.116623,0.670308,0.227419,0.109964,0.675439,0.62117,0.580127,0.760692,0.044511,0.889141,0.239232,0.136093,0.256061,0.527482,0.256738,0.728099,0.0502485,0.501671,0.975359,0.594939,0.845279,0.538897,0.537552,0.923896,0.188653,0.429369,0.562606,0.357516,0.319622,0.876197,0.290907,0.047957,0.546732,0.427813,0.907269,0.807989,0.629509,0.248569,0.770119,0.838565,0.213415,0.954408,0.555775,0.425712,0.996513,0.625892,0.419107,0.273839,0.553806,0.113957,0.0641189,0.260897,0.794931,0.310399,0.53455,0.0135373,0.592608,0.64497,0.526625,0.858915,0.882621,0.46968,0.311079,0.853623,0.537306,0.0279446,0.940729,0.801769,0.953118,0.630957,0.319749,0.719537,0.160366,0.967051,0.505457,0.305634,0.869208,0.459292,0.463773,0.572457,0.50455,0.26212,0.0137399,0.17435,0.518487,0.121063,0.951566,0.873611,0.0153753,0.540886,0.422029,0.036951,0.270158,0.14338,0.844475,0.195254,0.833272,0.371769,0.957657,0.857891,0.512813,0.734224,0.757417,0.255329,0.902419,0.440308,0.399052,0.959153,0.404374,0.4571,0.849276,0.193132,0.337313,0.132529,0.443399,0.538037,0.165111,0.0976024,0.638419,0.477227,0.84071,0.384369,0.117239,0.925536,0.751343,0.644945,0.896304,0.972903,0.724059,0.499429,0.447476,0.942767,0.958253,0.540673,0.661501,0.713107,0.762083,0.429484,0.491058,0.427461,0.274577,0.110263,0.885328,0.143832,0.0517719,0.75906,0.721862,0.180626,0.0102089,0.894703,0.252335,0.914051,0.85648,0.032244,0.792578,0.817376,0.889844,0.500206,0.863333,0.870976,0.789039,0.998307,0.51548,0.970837,0.245974,0.458941,0.692161,0.696647,0.971787,0.0737184,0.872103,0.32408,0.501821,0.278424,0.980487,0.787686,0.00919592,0.101954,0.464802,0.972136,0.474976,0.748359,0.661784,0.165713,0.51044,0.830303,0.550599,0.547242,0.340271,0.441783,0.396181,0.615371,0.369378,0.477468,0.427994,0.543459,0.153008,0.135352,0.265474,0.705573,0.0767036,0.325202,0.743888,0.37951,0.25927,0.866085,0.104823,0.609402,0.149692,0.982937,0.499436,0.510073,0.971042,0.444701,0.156965,0.499325,0.808275,0.471564,0.813269,0.250468,0.111088,0.596224,0.288427,0.674558,0.710046,0.0709211,0.235799,0.586418,0.581804,0.898571,0.858025,0.518781,0.413336,0.508638,0.987109,0.629996,0.556391,0.0519225,0.750812,0.717981,0.490693,0.770323,0.301096,0.917801,0.698315,0.0872744,0.908357,0.558587,0.938887,0.64803,0.423368,0.550331,0.458367,0.75461,0.433134,0.936778,0.349089,0.454199,0.0782068,0.625962,0.579309,0.0156193,0.432276,0.67148,0.0589846,0.503362,0.380004,0.0893304,0.141786,0.649609,0.0737677,0.188509,0.483197,0.338935,0.556461,0.308941,0.0640697,0.280438,0.321261,0.374985,0.0142269,0.752735,0.167745,0.343666,0.161364,0.16479,0.298154,0.687495,0.945462,0.719267,0.294576,0.0877728,0.811709,0.937099,0.449367,0.860473,0.422728,0.932961,0.124056,0.0446941,0.933386,0.63884,0.744009,0.0248132,0.641762,0.47134,0.874579,0.500189,0.486554,0.343017,0.24878,0.916036,0.398568,0.096361,0.262124,0.0213135,0.169267,0.955063,0.252657,0.856955,0.490407,0.163417,0.47508,0.912903,0.556236,0.817459,0.0234786,0.961537,0.961489,0.0759326,0.717882,0.1084,0.317987,0.426561,0.308558,0.88108,0.496295,0.386813,0.50827,0.893915,0.070891,0.455524,0.998739,0.405882,0.34724,0.71942,0.717856,0.0555229,0.923776,0.677875,0.539489,0.76405,0.261784,0.545755,0.768075,0.471179,0.729815,0.821676,0.0557972,0.902172,0.0908448,0.49505,0.147266,0.0764714,0.863322,0.656455,0.495621,0.517561,0.587768,0.795155,0.597169,0.230429,0.953137,0.520326,0.144848,0.409521,0.0180851,0.129675,0.714686,0.183899,0.259829,0.458233,0.176002,0.85101,0.609895,0.293844,0.189161,0.0687162,0.405098,0.213158,0.817788,0.846257,0.294452,0.597996,0.67715,0.640067,0.507136,0.587671,0.810304,0.642335,0.634695,0.0383877,0.0483051,0.0174881,0.20798,0.60231,0.170387,0.920117,0.633024,0.435621,0.619897,0.75235,0.288638,0.686477,0.802898,0.202344,0.438152,0.672512,0.59981,0.756188,0.927695,0.468591,0.350063,0.665813,0.626172,0.596684,0.474387,0.0843927,0.803463,0.596352,0.982804,0.988686,0.196319,0.422872,0.771295,0.354806,0.424726,0.586047,0.106078,0.62179,0.0936903,0.808923,0.00754797,0.805026,0.0882214,0.936324,0.912516,0.385589,0.193014,0.72682,0.814637,0.789503,0.42299,0.665038,0.798278,0.581281,0.416884,0.771667,0.103378,0.273476,0.514555,0.969073,0.45288,0.710272,0.324073,0.31749,0.595413,0.35291,0.477639,0.150681,0.645925,0.515076,0.0211356,0.20877,0.388763,0.947669,0.811036,0.268702,0.468224,0.613844,0.879449,0.17902,0.51374,0.683326,0.346385,0.0608419,0.393136,0.372067,0.803445,0.542198,0.25143,0.180743,0.0222295,0.213219,0.408864,0.0296344,0.223689,0.328554,0.0475956,0.917809,0.848544,0.843021,0.196911,0.917077,0.535364,0.25502,0.0899321,0.459473,0.755397,0.0264896,0.519545,0.222537,0.384556,0.323919,0.814674,0.534308,0.827157,0.955601,0.405885,0.432805,0.334144,0.436539,0.81199,0.155773,0.195035,0.834882,0.138914,0.506193,0.140202,0.487046,0.8669,0.99062,0.287885,0.457999,0.945713,0.614694,0.870963,0.586351,0.468038,0.865405,0.62772,0.166029,0.689284,0.373754,0.232739,0.125649,0.853477,0.687357,0.365633,0.545217,0.988901,0.00271124,0.700087,0.965011,0.540333,0.487092,0.564936,0.124395,0.270884,0.443789,0.978437,0.0967042,0.444152,0.0108703,0.937545,0.382682,0.738385,0.382574,0.0450963,0.0687698,0.0484381,0.679925,0.297358,0.945894,0.174932,0.10422,0.671517,0.782188,0.931383,0.228035,0.854244,0.524859,0.82522,0.247582,0.138874,0.203964,0.555588,0.0458426,0.763856,0.447014,0.351942,0.139857,0.801777,0.358705,0.624256,0.272596,0.157907,0.168325,0.24688,0.143006,0.344593,0.669971,0.314781,0.0545816,0.877924,0.903973,0.963384,|0.805121,0.122437,0.245868,0.181029,0.386201,0.609638,0.92531,0.173227,0.90739,0.371247,0.489855,0.691307,0.480855,0.435968,0.33076,0.897783,0.837155,0.312839,0.194977,0.760096,0.70024,0.849818,0.638729,0.162186,0.797134,0.878116,0.838226,0.0229777,0.530564,0.367866,0.591658,0.868907,0.649638,0.243888,0.226788,0.559849,0.492359,0.417705,0.238793,0.954906,0.448976,0.143674,0.842199,0.566089,0.0975425,0.829517,0.541309,0.234543,0.59855,0.517434,0.844245,0.355844,0.290702,0.627812,0.246514,0.742461,0.219156,0.755238,0.678648,0.802045,0.102072,0.914655,0.864537,0.202746,0.00926745,0.0485684,0.374821,0.272345,0.0151978,0.396576,0.404858,0.95505,0.588359,0.831749,0.391317,0.36367,0.538223,0.672906,0.0730584,0.00260502,0.910948,0.0345881,0.281336,0.224875,0.410291,0.159344,0.174085,0.417691,0.0593905,0.604553,0.666254,0.88919,0.945298,0.549849,0.815126,0.778912,0.442596,0.859149,0.735615,0.598608,0.665676,0.980159,0.528165,0.675257,0.686731,0.0504773,0.5488,0.86861,0.900246,0.604178,0.0217957,0.63745,0.742795,0.137486,0.906426,0.365488,0.45,0.20338,0.588557,0.594125,0.768861,0.455788,0.468118,0.277533,0.592672,0.0865225,0.102201,0.6697,0.673984,0.239189,0.442773,0.418229,0.723222,0.50944,0.549878,0.724377,0.195236,0.470059,0.00908947,0.000609934,0.4304,0.289404,0.373849,0.137292,0.316972,0.429421,0.970209,0.881491,0.50561,0.574361,0.212292,0.011184,0.553089,0.50813,0.656853,0.53653,0.974696,0.409823,0.942027,0.086607,0.657798,0.165847,0.407085,0.216971,0.410022,0.732296,0.888758,0.309643,0.808615,0.402079,0.0598565,0.286327,0.863894,0.899117,0.395325,0.240563,0.448895,0.427284,0.812776,0.202416,0.00369793,0.789029,0.778215,0.54407,0.498181,0.574345,0.241832,0.420291,0.315021,0.987291,0.141339,0.942912,0.367289,0.995658,0.0864362,0.928206,0.675819,0.278987,0.980953,0.874105,0.274548,0.321665,0.418854,0.517468,0.909161,0.542071,0.266239,0.998627,0.250037,0.813461,0.824628,0.165964,0.658161,0.843928,0.431205,0.543853,0.406006,0.494602,0.990778,0.904374,0.669788,0.871553,0.0733703,0.891359,0.82072,0.739765,0.710059,0.333746,0.278162,0.487338,0.669731,0.29926,0.281133,0.631375,0.964564,0.396779,0.96387,0.733233,0.883467,0.972777,0.895552,0.894187,0.0246171,0.0408108,0.359825,0.47359,0.403442,0.192381,0.739369,0.367453,0.145265,0.662668,0.619337,0.494445,0.215761,0.506848,0.304076,0.948869,0.735431,0.242287,0.876433,0.0025984,0.810161,0.605691,0.00890517,0.769682,0.364406,0.819104,0.387511,0.290896,0.925323,0.834086,0.178167,0.990411,0.401294,0.0849609,0.238219,0.474459,0.146535,0.246412,0.154535,0.0458663,0.418978,0.945802,0.0945964,0.789904,0.754961,0.966013,0.777314,0.780408,0.0972623,0.06661,0.773278,0.410756,0.62689,0.875328,0.564306,0.767484,0.922565,0.862187,0.950404,0.592654,0.260967,0.71606,0.14131,0.947254,0.646746,0.532096,0.887958,0.913305,0.613926,0.949987,0.437852,0.419375,0.0182212,0.0234157,0.138843,0.30976,0.211136,0.713642,0.203263,0.992177,0.327939,0.39186,0.379451,0.365574,0.720026,0.325307,0.646512,0.60906,0.0484561,0.499468,0.423578,0.594868,0.148699,0.474153,0.520593,0.729172,0.0848117,0.490555,0.664934,0.57528,0.936622,0.0597588,0.619626,0.629602,0.72688,0.876524,0.262601,0.557262,0.183076,0.254998,0.45571,0.7363,0.639965,0.498267,0.350321,0.801886,0.769568,0.000755489,0.290391,0.556495,0.632761,0.889995,0.4534,0.226068,0.448227,0.878326,0.878032,0.446335,0.902837,0.74896,0.901266,0.600906,0.693035,0.427639,0.592907,0.956773,0.913122,0.251197,0.860109,0.155859,0.204642,0.0470076,0.558129,0.174261,0.77009,0.682801,0.271976,0.334643,0.79363,0.436858,0.970073,0.286598,0.0652336,0.930423,0.749467,0.938228,0.897132,0.939445,0.184709,0.237236,0.0503613,0.267782,0.460385,0.140513,0.351102,0.691694,0.902409,0.29265,0.645296,0.00240242,0.622076,0.808585,0.253447,0.195845,0.860181,0.740145,0.437837,0.583445,0.271501,0.75274,0.58748,0.0244688,0.288514,0.290642,0.234217,0.657186,0.227021,0.253027,0.753568,0.49237,0.511924,0.128407,0.308733,0.431058,0.965298,0.171626,0.711174,0.302809,0.168112,0.542741,0.858999,0.92027,0.614825,0.689454,0.0987756,0.174133,0.0554679,0.222746,0.242372,0.732877,0.862637,0.953938,0.833185,0.852603,0.789012,0.369156,0.14645,0.810706,0.523683,0.442187,0.656979,0.878947,0.776269,0.131574,0.135361,0.613271,0.774651,0.237041,0.473041,0.913866,0.827552,0.65311,0.187602,0.574011,0.473333,0.561675,0.0964483,0.372551,0.960603,0.0846251,0.0996315,0.0714111,0.358548,0.659139,0.56433,0.583107,0.0697504,0.797485,0.107142,0.273198,0.826808,0.688454,0.942306,0.225815,0.234917,0.746929,0.966594,0.262149,0.29443,0.704379,0.203049,0.40176,0.949225,0.46288,0.48796,0.704363,0.292979,0.00862825,0.946104,0.956418,0.708466,0.0951763,0.834655,0.76043,0.943953,0.602831,0.802736,0.666999,0.756809,0.62495,0.00784808,0.335105,0.0140363,0.62124,0.0759823,0.568105,0.274486,0.427127,0.00258011,0.666646,0.513701,0.00991619,0.771178,0.502167,0.145601,0.364833,0.951099,0.103521,0.092458,0.792073,0.525054,0.5474,0.0454845,0.600739,0.473449,0.65971,0.58171,0.40261,0.129682,0.888191,0.151927,0.230791,0.714244,0.34891,0.102096,0.505647,0.9409,0.32418,0.0733163,0.509903,0.019428,0.480823,0.925236,0.332969,0.478619,0.552666,0.919707,0.076656,0.767211,0.944713,0.642004,0.400689,0.0594714,0.410984,0.772695,0.634838,0.582547,0.538847,0.885055,0.476224,0.542616,0.219139,0.972725,0.42527,0.969559,0.278821,0.901424,0.156857,0.0519472,0.767967,0.0703629,0.97113,0.714776,0.873874,0.32753,0.00514734,0.454916,0.0536984,0.737644,0.687405,0.2802,0.524177,0.931893,0.978477,0.098404,0.742399,0.27762,0.861741,0.99872,0.373101,0.850794,0.0247489,0.884039,0.718686,0.983715,0.0941641,0.481434,0.289816,0.562295,0.496896,0.101152,0.513213,0.154622,0.0910441,0.798297,0.356295,0.562753,0.983314,0.395567,0.245339,0.188881,0.838179,0.87748,0.227532,0.337044,0.298807,0.880283,0.968809,0.54097,0.808586,0.7017,0.811692,0.767742,0.628324,0.859792,0.0244259,0.760697,0.656163,0.296967,0.905312,0.572303,0.00451553,0.223262,0.398301,0.775722,0.853248,0.0734933,0.361814,0.651176,0.580303,0.913398,0.184563,0.0942038,0.146596,0.715734,0.139354,0.68837,0.701834,0.276239,0.617065,0.21152,0.638788,0.165072,0.103757,0.11234,0.382204,0.0194637,0.370601,0.42163,0.556869,0.282977,0.134549,0.267812,0.260367,0.799528,0.824895,0.918653,0.971097,0.64719,0.347317,0.289786,0.423426,0.416448,0.76056,0.23397,0.584398,0.92041,0.720045,0.566266,0.738467,0.619861,0.975968,0.934748,0.535008,0.940422,0.0675415,0.73656,0.265538,0.928825,0.688845,0.61729,0.436264,0.151607,0.17284,0.866153,0.174985,0.192003,0.0664148,0.461557,0.920649,0.0556397,0.697834,0.668379,0.590856,0.465923,0.698896,0.833961,0.397142,0.507652,0.444492,0.282484,0.851103,0.73479,0.267812,0.524492,0.70573,0.903543,0.0311732,0.0604385,0.0949087,0.212523,0.985704,0.824182,0.166088,0.952763,0.578032,0.79238,0.498362,0.979195,0.422113,0.437723,0.271128,0.763808,0.441731,0.0586972,0.49982,0.908425,0.567,0.333425,0.303507,0.589023,0.132302,0.747062,0.603581,0.303017,0.377993,0.193247,0.875582,0.23259,0.477932,0.46718,0.231383,0.0257047,0.384865,0.308692,0.857631,0.870436,0.912184,0.87881,0.0200561,0.481238,0.231275,0.449926,0.331936,0.710089,0.00533491,0.763596,0.0581129,0.584215,0.791575,0.689019,0.302361,0.457499,0.635387,0.959513,0.395742,0.399291,0.397375,0.70342,0.0478911,0.554709,0.421329,0.494866,0.710872,0.0724154,0.436235,0.338779,0.611859,0.569501,0.987083,0.172963,0.386988,0.0927635,0.231922,0.640223,0.274484,0.577265,0.630866,0.00398397,0.185758,0.13808,0.857406,0.0106967,0.991917,0.165828,0.00145543,0.278654,0.836112,0.224306,0.275147,0.414191,0.827347,0.243793,0.0502144,0.59857,0.434958,0.760405,0.605385,0.660935,0.00702953,0.150097,0.459331,0.606525,0.271699,0.86711,0.789643,0.389651,0.466257,0.143551,0.67848,0.955605,0.245365,0.750546,0.626974,0.874319,0.232316,0.724331,0.78858,0.539128,0.424591,0.480239,0.128892,0.516493,0.737061,0.15642,0.57814,0.485158,0.406728,0.526028,0.0530462,0.15267,0.602084,0.813776,0.970584,0.972803,0.149927,0.872184,0.384568,0.173916,0.660248,0.110359,0.828258,0.0850589,0.34414,0.779024,0.534013,0.567099,0.579528,0.72995,0.084967,0.217913,0.0845467,0.527843,0.493761,0.448132,0.948569,0.451142,0.355253,0.209292,0.666321,0.032381,0.563322,0.166184,0.778209,0.470232,0.215373,0.355066,0.019309,0.401691,0.366599,0.824275,0.965455,0.0888322,0.452576,0.870889,0.534167,0.0701132,0.427014,0.0732593,0.744512,0.895242,0.608355,0.651282,0.869002,0.188478,0.319468,0.100978,0.884957,0.884997,0.805655,0.17849,0.231767,0.71235,0.32583,0.693944,0.807635,0.411756,0.917219,0.0742637,0.600615,0.650581,0.030547,0.0804634,0.243595,0.654266,0.567222,0.290291,0.931189,0.367224,0.836363,0.376587,0.889753,0.190282,0.464281,0.267067,0.989193,0.640118,0.298832,0.759548,0.701224,0.0838171,0.0199606,0.511615,0.0164969,0.235988,0.380488,0.566773,0.338784,0.251236,0.860445,0.506937,0.283082,0.636681,0.745488,0.886294,0.0518408,0.115713,0.582764,0.853232,0.11461,0.713131,0.924798,0.168286,0.182304,0.430217,0.0269317,0.175895,0.857537,0.712063,0.188637,0.139386,0.305963,0.103491,0.141836,0.845787,0.867131,0.121079,0.879166,|0.980088,0.522513,0.740308,0.946858,0.434055,0.888155,0.67027,0.483048,0.581751,0.797521,0.402859,0.0269603,0.286405,0.568335,0.293734,0.310728,0.255608,0.257757,0.242293,0.432446,0.697443,0.231572,0.824298,0.74725,0.845841,0.75787,0.931372,0.865783,0.217772,0.24184,0.864358,0.500386,0.114741,0.91746,0.445922,0.0737104,0.618236,0.309465,0.447934,0.591779,0.453151,0.474567,0.485618,0.601203,0.60979,0.442466,0.325929,0.316754,0.578585,0.587601,0.214285,0.674537,0.739709,0.770537,0.462904,0.0258835,0.230132,0.712549,0.746375,0.537613,0.83097,0.220195,0.655733,0.695194,0.679719,0.572628,0.50389,0.953014,0.309157,0.830152,0.114699,0.780943,0.695243,0.484167,0.276299,0.977874,0.0422369,0.0946918,0.604149,0.509243,0.324505,0.420849,0.457697,0.710961,0.609322,0.366379,0.726044,0.897495,0.376742,0.35892,0.200286,0.330088,0.897951,0.121222,0.791732,0.705414,0.291106,0.281543,0.2056,0.177577,0.110036,0.694822,0.0185841,0.935057,0.218204,0.425683,0.604386,0.877972,0.412208,0.344038,0.863155,0.871786,0.8102,0.0820203,0.381974,0.778306,0.394382,0.424605,0.583716,0.142938,0.543091,0.53196,0.388377,0.474299,0.770623,0.194163,0.95562,0.467403,0.992245,0.65489,0.578535,0.762827,0.707589,0.192323,0.713593,0.48443,0.810053,0.805339,0.0295124,0.723496,0.555559,0.286157,0.548493,0.340019,0.0128867,0.31821,0.283074,0.277566,0.184429,0.868914,0.205336,0.407976,0.807377,0.979797,0.573982,0.695109,0.133194,0.0496746,0.0675046,0.441795,0.127295,0.570107,0.947993,0.88343,0.784209,0.77371,0.362233,0.282492,0.659342,0.110363,0.725062,0.0292562,0.338664,0.385922,0.0311403,0.932875,0.0456983,0.71244,0.807575,0.160659,0.629587,0.764715,0.168143,0.0717272,0.826213,0.824658,0.157561,0.998595,0.907151,0.132695,0.255639,0.598248,0.495812,0.0477228,0.0656117,0.80283,0.775174,0.446424,0.430106,0.401517,0.633733,0.916171,0.307279,0.518351,0.528982,0.092591,0.782596,0.429084,0.150419,0.32102,0.362363,0.777376,0.238232,0.619749,0.845443,0.274864,0.631148,0.128503,0.243829,0.660415,0.334499,0.351832,0.98744,0.909279,0.196194,0.65009,0.140082,0.694936,0.0110942,0.766547,0.354621,0.108147,0.880337,0.63626,0.0836866,0.191493,0.0217949,0.704508,0.293676,0.204391,0.173299,0.268933,0.28709,0.187077,0.229663,0.0553049,0.851901,0.363519,0.392669,0.117751,0.116118,0.563566,0.736905,0.96464,0.988871,0.961525,0.50027,0.948275,0.951533,0.653684,0.569471,0.957845,0.274875,0.488149,0.318534,0.124783,0.857275,0.207107,0.518682,0.603473,0.610894,0.419055,0.348616,0.100556,0.437717,0.393879,0.989885,0.878953,0.367584,0.0618443,0.840308,0.947553,0.783011,0.809806,0.978537,0.297153,0.32177,0.0936596,0.865097,0.0377803,0.621764,0.826,0.686492,0.391037,0.789593,0.572165,0.431791,0.570969,0.851104,0.905789,0.439218,0.0165567,0.591998,0.539249,0.0100847,0.425911,0.915032,0.649463,0.496554,0.646225,0.734051,0.508314,0.697154,0.987804,0.753857,0.913726,0.347829,0.393583,0.950355,0.753065,0.767756,0.869531,0.587655,0.974953,0.880588,0.322387,0.861825,0.503961,0.0743707,0.221689,0.167379,0.0561576,0.697605,0.247196,0.426814,0.602189,0.483081,0.866573,0.859557,0.6629,0.109058,0.886833,0.587284,0.45232,0.952685,0.95494,0.987523,0.747697,0.209417,0.712173,0.38191,0.226815,0.512146,0.757295,0.258859,0.859157,0.0112747,0.601764,0.622352,0.165377,0.0669995,0.704336,0.488325,0.458985,0.288984,0.240965,0.685693,0.124729,0.461893,0.399653,0.991234,0.372607,0.233307,0.931101,0.820091,0.496592,0.561615,0.763311,0.106564,0.510111,0.537703,0.0775369,0.672238,0.949147,0.59044,0.928301,0.407269,0.623606,0.710082,0.69853,0.353706,0.284242,0.841083,0.68371,0.083461,0.725222,0.898974,0.651032,0.510344,0.030846,0.403974,0.0172824,0.436602,0.655811,0.987619,0.279034,0.3141,0.7328,0.179484,0.87918,0.952711,0.557902,0.957317,0.860731,0.418073,0.596501,0.909826,0.762551,0.452957,0.568566,0.525544,0.643331,0.252316,0.459965,0.534204,0.561812,0.731477,0.291229,0.198778,0.287021,0.618275,0.419392,0.903685,0.925664,0.809849,0.472951,0.405822,0.385417,0.351521,0.995786,0.780251,0.980248,0.785575,0.804187,0.234476,0.983555,0.42965,0.409965,0.674673,0.0729773,0.298279,0.204159,0.211995,0.0169839,0.83509,0.0152243,0.619735,0.875445,0.237641,0.242244,0.466367,0.77583,0.0415676,0.474526,0.523204,0.197313,0.790306,0.347769,0.514063,0.198421,0.667559,0.433692,0.0908945,0.058142,0.997962,0.890483,0.998334,0.727084,0.0818959,0.405851,0.760176,0.629787,0.31931,0.289425,0.958801,0.0934545,0.0138537,0.778135,0.480772,0.807927,0.659239,0.233312,0.345913,0.906549,0.451575,0.909369,0.362429,0.451573,0.00276017,0.905217,0.726516,0.364671,0.172429,0.648849,0.317142,0.256583,0.436333,0.25309,0.565156,0.927211,0.884787,0.806722,0.184826,0.0608712,0.713044,0.86635,0.182768,0.340349,0.627924,0.48944,0.175095,0.55284,0.259642,0.288651,0.478612,0.238701,0.150326,0.977613,0.00586665,0.782132,0.99594,0.468618,0.86712,0.973754,0.421103,0.023647,0.771439,0.920684,0.952879,0.437027,0.794408,0.765787,0.263499,0.393938,0.762244,0.613742,0.827068,0.533613,0.665915,0.708608,0.466146,0.817264,0.379269,0.548165,0.0805235,0.310853,0.0531985,0.726563,0.891563,0.644273,0.865006,0.205953,0.705004,0.796346,0.719888,0.0829881,0.141358,0.98652,0.566316,0.880848,0.658407,0.754187,0.693353,0.944619,0.773893,0.339983,0.671298,0.32914,0.864996,0.385637,0.896592,0.0725036,0.608147,0.958384,0.594746,0.732266,0.844822,0.207256,0.559051,0.93318,0.411775,0.575627,0.0830289,0.948373,0.734696,0.756212,0.737605,0.539147,0.316592,0.321832,0.440377,0.187179,0.417541,0.167744,0.159187,0.155477,0.172406,0.113269,0.00382853,0.0177283,0.118559,0.302865,0.688591,0.121743,0.936802,0.0247054,0.812806,0.623502,0.527509,0.24412,0.735788,0.0327067,0.378595,0.336458,0.578223,0.427996,0.75807,0.558881,0.321527,0.0756351,0.605114,0.161535,0.553383,0.748581,0.304367,0.482374,0.923145,0.323621,0.713711,0.0867236,0.44996,0.723892,0.701225,0.841185,0.435567,0.403245,0.962339,0.943136,0.724804,0.533734,0.800194,0.237491,0.367575,0.112099,0.351075,0.901119,0.216876,0.134815,0.472493,0.0244227,0.44992,0.908759,0.481924,0.924957,0.520576,0.0323948,0.489265,0.800015,0.99555,0.518106,0.168684,0.29511,0.805127,0.250679,0.988345,0.268318,0.158335,0.45164,0.72542,0.0874077,0.881189,0.143063,0.252614,0.220642,0.863141,0.705911,0.758727,0.709527,0.125827,0.349338,0.47861,0.267318,0.730222,0.36256,0.736069,0.528001,0.217514,0.656878,0.950488,0.28955,0.490679,0.375502,0.124508,0.418663,0.507479,0.302005,0.696973,0.476448,0.0663863,0.864422,0.587711,0.786479,0.117475,0.925183,0.842551,0.174907,0.807986,0.535236,0.98608,0.783918,0.597696,0.589186,0.67785,0.573938,0.0867636,0.110786,0.00366127,0.514567,0.929618,0.72788,0.625973,0.695839,0.260392,0.239062,0.43281,0.776538,0.867746,0.92009,0.559955,0.452295,0.963042,0.295977,0.172239,0.430493,0.792289,0.899222,0.594773,0.119945,0.719634,0.645548,0.745178,0.765007,0.35115,0.86845,0.314313,0.580452,0.0526798,0.768556,0.71594,0.350892,0.174869,0.907049,0.858963,0.397545,0.986324,0.133888,0.257236,0.113347,0.637966,0.220634,0.760901,0.0305504,0.791569,0.930448,0.0958484,0.824142,0.657574,0.0727935,0.0272202,0.703112,0.787915,0.227704,0.534798,0.946497,0.319032,0.0479859,0.0234085,0.567158,0.379913,0.358173,0.725993,0.839096,0.719229,0.834526,0.312853,0.76474,0.98959,0.321839,0.690403,0.0576137,0.91447,0.258529,0.826127,0.746741,0.410369,0.430178,0.562669,0.914305,0.207913,0.41297,0.79366,0.679845,0.0896325,0.740531,0.568634,0.207788,0.805816,0.137283,0.680208,0.334893,0.0695308,0.279371,0.823251,0.604572,0.329051,0.699106,0.713278,0.413513,0.770046,0.00170588,0.347723,0.289128,0.0929766,0.223544,0.0488879,0.751464,0.405863,0.195919,0.301629,0.329942,0.830141,0.624295,0.937527,0.341708,0.0262515,0.800379,0.415838,0.390382,0.864166,0.700533,0.632263,0.775882,0.533895,0.34954,0.651535,0.101399,0.0322087,0.618958,0.366144,0.213357,0.200221,0.803919,0.614399,0.359028,0.852056,0.160734,0.99768,0.0363309,0.705871,0.427556,0.399521,0.969941,0.436286,0.215505,0.818668,0.170883,0.095685,0.503173,0.479786,0.03071,0.573214,0.323288,0.655584,0.360067,0.275958,0.257334,0.374783,0.0255747,0.923819,0.0391427,0.852452,0.791274,0.342012,0.464787,0.553757,0.534548,0.291853,0.24441,0.375715,0.871935,0.522277,0.257926,0.935642,0.0144844,0.485967,0.587214,0.836344,0.283579,0.733502,0.419847,0.000109673,0.786548,0.953422,0.85758,0.132391,0.20122,0.625333,0.956292,0.00238842,0.435746,0.949744,0.135737,0.993921,0.710629,0.162625,0.955156,0.844841,0.276195,0.134777,0.245246,0.901623,0.248161,0.905989,0.577411,0.135286,0.0517194,0.223592,0.504513,0.300845,0.270954,0.1469,0.357937,0.869569,0.194639,0.996732,0.0441262,0.321755,0.159871,0.500372,0.757767,0.189677,0.882616,0.577413,0.507553,0.396062,0.767036,0.292714,0.649631,0.905807,0.788335,0.223333,0.641124,0.880627,0.47842,0.188722,0.62437,0.899423,0.0448544,0.136194,0.152252,0.0740117,0.648859,0.0568625,0.864023,0.0154696,0.401764,0.0546184,0.886854,0.649707,0.607658,0.216176,0.966232,0.00466186,0.691787,0.318694,0.488193,0.0151007,0.0846747,0.550189,0.911965,0.336803,0.324738,0.0726154,0.167105,0.723912,0.0182773,0.6193,0.38337,0.542949,0.884368,|0.445847,0.12548,0.669567,0.791557,0.325557,0.645203,0.559715,0.322853,0.662408,0.690126,0.577477,0.713484,0.613828,0.125751,0.480028,0.460203,0.569206,0.105666,0.375641,0.347113,0.8621,0.302633,0.0433615,0.763121,0.232794,0.577969,0.66541,0.119228,0.48853,0.772435,0.0538904,0.986299,0.676396,0.395244,0.0270674,0.946856,0.32769,0.187668,0.42133,0.463804,0.600177,0.548471,0.85134,0.581494,0.622033,0.366305,0.0394722,0.327057,0.465327,0.865701,0.352484,0.260971,0.140253,0.835089,0.428826,0.796213,0.0979791,0.447527,0.398257,0.604321,0.461586,0.829807,0.403249,0.480907,0.956175,0.231921,0.534979,0.405905,0.845429,0.255728,0.36419,0.0703883,0.516308,0.231764,0.60884,0.056563,0.423154,0.460815,0.0688896,0.137745,0.576121,0.728663,0.96322,0.0239201,0.998175,0.352648,0.628184,0.591837,0.612725,0.687001,0.334056,0.873543,0.681877,0.261278,0.490599,0.561617,0.375449,0.199539,0.0215522,0.335789,0.460363,0.663757,0.427638,0.264564,0.980286,0.751617,0.883017,0.401339,0.728203,0.821062,0.0054028,0.859324,0.857197,0.566321,0.902799,0.808861,0.0588752,0.185166,0.984,0.260535,0.647231,0.957633,0.149712,0.773902,0.107074,0.42654,0.329706,0.47401,0.0336351,0.102216,0.766362,0.0968179,0.320509,0.396241,0.912107,0.549676,0.837977,0.453502,0.0185258,0.432746,0.845551,0.815293,0.219128,0.157396,0.34325,0.394756,0.721288,0.364932,0.886451,0.162249,0.770981,0.871979,0.970712,0.914551,0.954399,0.845304,0.941541,0.39432,0.0751569,0.11156,0.917279,0.137735,0.822206,0.363856,0.459222,0.956734,0.0893816,0.425084,0.109825,0.945516,0.495435,0.0552885,0.776738,0.220282,0.575737,0.58016,0.624322,0.209381,0.454416,0.504239,0.569279,0.553874,0.887707,0.346269,0.418742,0.119281,0.394434,0.540701,0.675635,0.937104,0.242769,0.671636,0.782205,0.949723,0.928252,0.56109,0.291956,0.544482,0.487933,0.706753,0.704078,0.707847,0.332695,0.238662,0.550859,0.0155861,0.130116,0.460573,0.380744,0.311937,0.516955,0.665199,0.354863,0.437687,0.592819,0.506493,0.0677684,0.571105,0.369916,0.957758,0.664788,0.610274,0.304544,0.758314,0.738366,0.192315,0.804072,0.263157,0.338452,0.98416,0.640047,0.193854,0.411614,0.955081,0.794502,0.686256,0.413497,0.00851345,0.397812,0.32121,0.873932,0.495038,0.893667,0.0565057,0.0945573,0.310827,0.862429,0.394382,0.683036,0.668947,0.346395,0.0548031,0.784554,0.815928,0.534208,0.659662,0.339766,0.814147,0.609376,0.601073,0.156208,0.0249852,0.0447797,0.776976,0.529982,0.927849,0.946624,0.601563,0.621925,0.830471,0.963548,0.055515,0.0298414,0.962515,0.764766,0.144585,0.579254,0.238244,0.28508,0.909274,0.934676,0.340331,0.771401,0.861148,0.607853,0.713831,0.456925,0.84118,0.45192,0.692118,0.210204,0.240679,0.511884,0.674714,0.362686,0.317307,0.788266,0.168325,0.136688,0.691891,0.0294106,0.196486,0.757883,0.245293,0.306457,0.655462,0.167261,0.168035,0.28207,0.0614986,0.0905092,0.938433,0.358041,0.319376,0.256893,0.110831,0.691658,0.705432,0.00199807,0.762598,0.152425,0.207719,0.547344,0.931921,0.35031,0.424935,0.684019,0.732508,0.245512,0.848974,0.779526,0.797436,0.954618,0.0473453,0.292035,0.411009,0.390925,0.704073,0.402699,0.28865,0.982696,0.33501,0.341835,0.532692,0.92118,0.422136,0.314932,0.826545,0.182972,0.435209,0.341625,0.427258,0.0855615,0.406926,0.624519,0.370738,0.703983,0.876003,0.289702,0.8496,0.416719,0.334755,0.782218,0.594171,0.932593,0.345346,0.90454,0.153486,0.619797,0.147244,0.186462,0.296045,0.0533732,0.225408,0.648234,0.4123,0.210216,0.470348,0.874137,0.0396661,0.262752,0.132936,0.786727,0.0476939,0.614726,0.276659,0.744497,0.385453,0.5128,0.0344322,0.0839319,0.556639,0.785203,0.0566838,0.26128,0.401762,0.64584,0.236678,0.598908,0.523696,0.650707,0.704327,0.311524,0.533347,0.297757,0.199021,0.0811571,0.683789,0.771204,0.039605,0.532966,0.786274,0.855935,0.0921286,0.825922,0.899021,0.402439,0.655683,0.906988,0.0408933,0.195824,0.552225,0.991862,0.865309,0.257391,0.199841,0.720122,0.126235,0.754617,0.130134,0.905266,0.5409,0.921332,0.679354,0.12008,0.450627,0.811939,0.851087,0.828123,0.790039,0.544155,0.98987,0.445342,0.111364,0.908479,0.275185,0.168556,0.300976,0.47184,0.642737,0.636497,0.0289056,0.615997,0.941237,0.558736,0.638783,0.0674517,0.163002,0.568841,0.501794,0.25269,0.385453,0.784567,0.540121,0.230435,0.174212,0.670274,0.521978,0.578748,0.12508,0.683946,0.308724,0.427165,0.394821,0.763976,0.623039,0.670794,0.137428,0.294651,0.384483,0.753043,0.475945,0.0817169,0.51736,0.426575,0.941012,0.977984,0.75141,0.652495,0.887075,0.968868,0.292708,0.0758311,0.882311,0.00562418,0.81891,0.82627,0.630291,0.696608,0.984154,0.284646,0.936066,0.902066,0.691384,0.263794,0.981852,0.265755,0.861827,0.640768,0.320882,0.966899,0.813595,0.516266,0.701955,0.877755,0.867717,0.359525,0.878722,0.824929,0.567155,0.856224,0.0708761,0.435023,0.162006,0.361016,0.483359,0.586634,0.154025,0.931595,0.172782,0.574389,0.978186,0.464515,0.997398,0.742165,0.328587,0.729891,0.772917,0.412023,0.235781,0.863522,0.490365,0.347187,0.982977,0.109952,0.811445,0.0928326,0.376741,0.613677,0.507278,0.164445,0.777239,0.268564,0.416539,0.271346,0.409859,0.518979,0.747546,0.233412,0.528765,0.295509,0.824335,0.207241,0.372961,0.953024,0.252521,0.284746,0.0932798,0.250362,0.477521,0.598417,0.659128,0.102825,0.188202,0.987126,0.172001,0.23096,0.673687,0.917329,0.609925,0.319045,0.455323,0.892353,0.932661,0.037675,0.480052,0.351833,0.553691,0.938441,0.811967,0.680876,0.292926,0.406001,0.0929368,0.0201495,0.553222,0.723143,0.145164,0.404535,0.0974401,0.238462,0.276448,0.568959,0.724648,0.0480279,0.939451,0.838947,0.689793,0.76761,0.925035,0.215927,0.813062,0.327759,0.201407,0.892554,0.407374,0.715935,0.835836,0.301196,0.0545073,0.224706,0.507516,0.810796,0.379031,0.403506,0.639331,0.251082,0.060013,0.130431,0.127822,0.714989,0.335831,0.612348,0.384784,0.168199,0.706848,0.725108,0.7177,0.912261,0.814328,0.603037,0.621944,0.240104,0.124338,0.161681,0.00205237,0.658143,0.491707,0.991109,0.101853,0.47293,0.268927,0.544839,0.558133,0.242572,0.349297,0.927488,0.991994,0.295204,0.152471,0.276741,0.583317,0.427832,0.293926,0.171556,0.600815,0.0546064,0.607788,0.0920889,0.574672,0.715908,0.80436,0.819726,0.255741,0.586838,0.70359,0.70421,0.63866,0.74725,0.25832,0.738255,0.666069,0.651402,0.280425,0.222206,0.231268,0.38305,0.0730309,0.17484,0.5608,0.372229,0.662985,0.584186,0.864201,0.853944,0.786148,0.0125548,0.123345,0.13437,0.904486,0.934732,0.384309,0.169863,0.255574,0.514167,0.307875,0.276217,0.522588,0.690901,0.615496,0.240289,0.30733,0.570268,0.27535,0.256166,0.31408,0.268801,0.393972,0.256834,0.590966,0.908727,0.280186,0.38928,0.879704,0.833559,0.881285,0.995243,0.3924,0.743998,0.640573,0.768908,0.710879,0.894416,0.920155,0.359027,0.120677,0.273125,0.524015,0.886078,0.195438,0.697824,0.634336,0.983652,0.780856,0.472806,0.0230832,0.343975,0.118728,0.686897,0.277112,0.129196,0.995358,0.894331,0.302067,0.0255787,0.755388,0.549593,0.365606,0.938999,0.778312,0.208294,0.534371,0.415647,0.412149,0.635141,0.680403,0.662605,0.75834,0.514175,0.483136,0.762401,0.801201,0.40058,0.289531,0.716877,0.904125,0.684649,0.178288,0.0872405,0.645053,0.291234,0.434476,0.797233,0.612294,0.912186,0.524509,0.716352,0.654694,0.0175615,0.259103,0.421804,0.992436,0.333779,0.268632,0.56559,0.104566,0.962318,0.698546,0.014035,0.738795,0.505327,0.879787,0.399765,0.912274,0.413455,0.792418,0.780551,0.124026,0.437586,0.504493,0.239508,0.0468063,0.551408,0.251921,0.46101,0.340034,0.877129,0.883301,0.270193,0.713867,0.806557,0.61783,0.532767,0.537129,0.533719,0.219833,0.443187,0.348778,0.238173,0.597968,0.288309,0.405748,0.097733,0.164131,0.66655,0.408472,0.328181,0.902356,0.141143,0.768814,0.674372,0.440014,0.785744,0.384416,0.1372,0.886322,0.493249,0.169488,0.328552,0.167883,0.69307,0.759307,0.834634,0.189383,0.540922,0.215661,0.975771,0.527514,0.107613,0.622214,0.404952,0.536495,0.688285,0.556114,0.514616,0.435096,0.558745,0.471633,0.699206,0.645975,0.441917,0.96718,0.386667,0.738475,0.888016,0.776558,0.0174412,0.861342,0.0494447,0.0902482,0.316238,0.495492,0.0825205,0.0900057,0.102916,0.846899,0.73825,0.636593,0.745034,0.401297,0.23443,0.335207,0.0271605,0.406814,0.716776,0.353846,0.491914,0.259401,0.966282,0.939912,0.702766,0.900925,0.960186,0.0166886,0.565665,0.639005,0.642382,0.607987,0.996095,0.561819,0.72717,0.929852,0.816353,0.543865,0.417836,0.481587,0.102874,0.98436,0.240167,0.934854,0.88816,0.92545,0.791961,0.133342,0.762111,0.0907999,0.534364,0.200876,0.899627,0.517699,0.871593,0.124197,0.00574285,0.932749,0.429109,0.222021,0.0946002,0.382251,0.607215,0.389996,0.290972,0.178886,0.539403,0.850598,0.296918,0.446353,0.164708,0.948391,0.0312622,0.322746,0.00483418,0.710152,0.740783,0.606581,0.482278,0.0695336,0.610235,0.377227,0.0994034,0.0451881,0.254073,0.452696,0.199608,0.205138,0.063913,0.913765,0.413877,0.377757,0.220722,0.160238,0.622667,0.356577,0.955879,0.611131,0.244298,0.914284,0.571346,0.720125,0.117068,0.277932,0.735299,0.31676,0.453672,0.680617,0.576502,0.300802,0.913102,0.795071,0.263408,0.433937,0.402655,0.918139,0.905164,0.629636,0.375871,0.0330788,0.598919,0.0345402,0.0982507,0.255111,|0.286616,0.823085,0.869625,0.00627512,0.0910052,0.131407,0.342378,0.514287,0.124527,0.718645,0.470678,0.648375,0.0371822,0.478358,0.0129001,0.2701,0.39832,0.0477628,0.744792,0.686833,0.519515,0.786922,0.729357,0.951789,0.36988,0.375516,0.379772,0.753928,0.171431,0.690829,0.323241,0.937227,0.952557,0.448142,0.787701,0.0137362,0.432988,0.971961,0.0674906,0.0341213,0.863713,0.099838,0.325671,0.454681,0.905136,0.025465,0.048238,0.199982,0.944237,0.967906,0.31937,0.326962,0.458104,0.496019,0.778309,0.846946,0.616615,0.0214884,0.740467,0.404018,0.422814,0.116514,0.113996,0.911931,0.178125,0.0409185,0.46363,0.765241,0.258242,0.042491,0.718178,0.732325,0.561675,0.0657328,0.245785,0.583783,0.883453,0.735589,0.66756,0.341226,0.352108,0.487259,0.259181,0.515775,0.139974,0.71644,0.76769,0.524601,0.99825,0.978723,0.755655,0.0206802,0.228555,0.984557,0.942131,0.245244,0.0670706,0.739382,0.25717,0.498067,0.573454,0.0553432,0.122788,0.737295,0.728028,0.0966344,0.174358,0.192707,0.458212,0.551918,0.324617,0.208551,0.677608,0.0525509,0.462454,0.101139,0.0506452,0.270908,0.165073,0.198324,0.473535,0.493269,0.995847,0.439727,0.176048,0.331215,0.649655,0.370194,0.0177352,0.0357718,0.651776,0.877661,0.624229,0.280956,0.614208,0.0826976,0.512576,0.789142,0.82478,0.921572,0.581605,0.133819,0.864369,0.212403,0.840332,0.752745,0.672041,0.511793,0.806635,0.701918,0.513717,0.324945,0.670064,0.731105,0.761854,0.34957,0.0851262,0.878749,0.937038,0.824917,0.560934,0.529953,0.180429,0.593688,0.899107,0.79682,0.996025,0.969931,0.951433,0.784563,0.705196,0.224608,0.797472,0.388905,0.522374,0.877739,0.387391,0.962708,0.0832771,0.840576,0.917754,0.0358309,0.149949,0.297733,0.262072,0.22571,0.0625359,0.618132,0.817781,0.788129,0.151107,0.0975928,0.939843,0.0153529,0.209964,0.67349,0.486368,0.985225,0.0546564,0.676568,0.34674,0.465906,0.423801,0.788451,0.440982,0.699447,0.681731,0.59645,0.453212,0.21735,0.263633,0.270574,0.992114,0.132822,0.362886,0.344352,0.31076,0.156159,0.818234,0.299853,0.160216,0.154847,0.253267,0.100198,0.476053,0.207148,0.154925,0.180486,0.386657,0.357866,0.274839,0.233197,0.793412,0.00535566,0.982319,0.643859,0.872806,0.742324,0.907719,0.0448077,0.376782,0.0611945,0.586876,0.963584,0.175207,0.0564803,0.321688,0.278014,0.0789869,0.554511,0.660149,0.183624,0.297574,0.698734,0.46818,0.569238,0.894609,0.468999,0.0977209,0.01563,0.492507,0.452382,0.785149,0.990158,0.78379,0.529224,0.906944,0.553923,0.665462,0.0645247,0.243832,0.629536,0.929398,0.939698,0.299639,0.226704,0.127867,0.270665,0.837407,0.69552,0.525594,0.65914,0.748708,0.464595,0.478346,0.87983,0.718202,0.542109,0.735218,0.00604719,0.886405,0.621638,0.417935,0.165181,0.0939871,0.987878,0.922149,0.84534,0.657223,0.39964,0.806566,0.77358,0.106285,0.946091,0.2675,0.830755,0.712964,0.864589,0.100325,0.192256,0.852909,0.511954,0.689135,0.0452749,0.801459,0.457492,0.513588,0.804683,0.0277479,0.331822,0.841573,0.154974,0.96126,0.228955,0.339524,0.491073,0.125109,0.080882,0.766778,0.0451282,0.859611,0.330818,0.47838,0.0919357,0.460042,0.879675,0.386608,0.112982,0.168026,0.798617,0.274504,0.380562,0.0572,0.471924,0.510298,0.201726,0.237709,0.822012,0.95313,0.370158,0.240093,0.871349,0.15432,0.709822,0.104981,0.845067,0.503723,0.506798,0.859362,0.962836,0.192373,0.97489,0.921445,0.819913,0.642583,0.696584,0.869719,0.372783,0.131762,0.821789,0.580006,0.494209,0.693196,0.810377,0.488709,0.623281,0.236937,0.0432492,0.524974,0.764034,0.899589,0.639955,0.443393,0.513352,0.0703138,0.621432,0.483697,0.234173,0.642004,0.323612,0.309063,0.566745,0.156098,0.526174,0.410443,0.963129,0.330495,0.209615,0.254895,0.486989,0.230052,0.843139,0.457906,0.507547,0.287094,0.0885252,0.865655,0.37776,0.148553,0.886741,0.45418,0.351279,0.762003,0.526781,0.67527,0.431734,0.459911,0.401844,0.710901,0.236837,0.0414446,0.255794,0.291103,0.757108,0.455632,0.632597,0.474127,0.790833,0.463278,0.539988,0.616382,0.457843,0.730102,0.215846,0.338768,0.633022,0.174381,0.863425,0.341298,0.458395,0.731855,0.706732,0.692373,0.823119,0.891864,0.0829246,0.672306,0.451582,0.597753,0.63323,0.118612,0.761374,0.805763,0.900523,0.543552,0.466006,0.141407,0.737055,0.734868,0.557474,0.867435,0.686202,0.0658332,0.812357,0.573986,0.144129,0.256722,0.736801,0.939251,0.353629,0.946782,0.854052,0.987633,0.535082,0.599635,0.991578,0.799012,0.44544,0.0649133,0.507659,0.445784,0.219088,0.491189,0.405848,0.821227,0.346534,0.714453,0.299096,0.345507,0.1903,0.484101,0.860843,0.459447,0.505519,0.940163,0.908502,0.464509,0.812485,0.077206,0.972124,0.305562,0.52994,0.535642,0.201189,0.71398,0.916132,0.5084,0.432588,0.758062,0.329268,0.52393,0.99233,0.248583,0.879722,0.0712331,0.892386,0.305281,0.173142,0.459377,0.372814,0.109534,0.128298,0.169757,0.266715,0.979077,0.44572,0.333416,0.366626,0.559571,0.173979,0.502599,0.293816,0.118839,0.857466,0.633767,0.0468053,0.0627595,0.122634,0.833931,0.450913,0.621927,0.804115,0.837087,0.310891,0.145039,0.035707,0.654427,0.804467,0.933502,0.248628,0.762199,0.720132,0.112302,0.703352,0.938929,0.647402,0.459756,0.180327,0.582546,0.34336,0.628481,0.552149,0.68347,0.461471,0.509402,0.598895,0.0346032,0.88305,0.429375,0.620185,0.732886,0.46944,0.444103,0.57359,0.695194,0.827249,0.893601,0.0194473,0.218125,0.815115,0.0499386,0.569303,0.777861,0.0907756,0.729034,0.771981,0.843345,0.434524,0.105559,0.29895,0.853418,0.228785,0.198953,0.794994,0.615863,0.849627,0.0482599,0.991645,0.408001,0.850491,0.0846218,0.932464,0.640091,0.718359,0.403023,0.553231,0.845044,0.344346,0.996791,0.0259297,0.93022,0.344222,0.793441,0.36223,0.426495,0.964938,0.617689,0.83062,0.15587,0.51511,0.0667036,0.00498366,0.57165,0.498779,0.388546,0.9773,0.143988,0.802312,0.952708,0.216706,0.0139361,0.869375,0.0879444,0.162207,0.178009,0.672509,0.45904,0.064118,0.985554,0.731678,0.0372018,0.393459,0.531642,0.254868,0.442921,0.904191,0.180578,0.199332,0.0755925,0.305161,0.413858,0.429633,0.007379,0.797649,0.242048,0.964265,0.484973,0.100756,0.416596,0.152811,0.81773,0.348884,0.253583,0.17163,0.901014,0.149044,0.0244628,0.791771,0.718188,0.898364,0.188142,0.244526,0.150908,0.293833,0.654071,0.626157,0.103663,0.718372,0.811913,0.226739,0.242754,0.200335,0.924028,0.790571,0.0977032,0.772648,0.280944,0.245745,0.207415,0.80879,0.902526,0.504893,0.945726,0.138323,0.193304,0.376212,0.807785,0.80523,0.972134,0.0749364,0.291234,0.891871,0.770857,0.977648,0.805906,0.810684,0.686891,0.502369,0.482748,0.56159,0.615244,0.597519,0.582028,0.193738,0.939565,0.4411,0.164836,0.140475,0.157615,0.107876,0.462206,0.479887,0.39953,0.209694,0.598719,0.170612,0.320802,0.217576,0.926008,0.126011,0.906964,0.493502,0.0394033,0.10755,0.88529,0.457233,0.161849,0.790063,0.90109,0.348783,0.0155101,0.661295,0.547091,0.541179,0.118021,0.683366,0.972048,0.160807,0.626033,0.910224,0.659404,0.368458,0.730229,0.890385,0.166882,0.657917,0.507343,0.904102,0.533597,0.327507,0.331204,0.772694,0.376074,0.332863,0.0580944,0.468897,0.213163,0.278623,0.194542,0.636293,0.197521,0.763647,0.716037,0.790232,0.823591,0.0515399,0.44846,0.0629357,0.376587,0.562838,0.988088,0.351988,0.133979,0.767357,0.963285,0.35925,0.501574,0.533013,0.692834,0.385642,0.947826,0.976905,0.951462,0.267748,0.477281,0.812755,0.831933,0.419884,0.707839,0.146791,0.893557,0.424186,0.0470577,0.312307,0.542775,0.21073,0.775592,0.805575,0.610272,0.594957,0.748615,0.196413,0.166521,0.533344,0.386061,0.286699,0.229313,0.410205,0.667345,0.426959,0.303414,0.13145,0.668482,0.693388,0.0337697,0.885764,0.249025,0.723739,0.0046528,0.9496,0.80009,0.542142,0.535182,0.260824,0.327815,0.553996,0.00389475,0.732216,0.395879,0.652106,0.54208,0.538375,0.274887,0.7975,0.470301,0.865651,0.473692,0.273561,0.533513,0.953989,0.214045,0.379667,0.990497,0.911443,0.725296,0.538885,0.691371,0.206675,0.0913129,0.441833,0.963432,0.335802,0.340676,0.85458,0.0558586,0.711714,0.479737,0.320056,0.293911,0.326063,0.664828,0.885183,0.782604,0.897041,0.524747,0.43281,0.86042,0.29612,0.151276,0.0530385,0.917244,0.277937,0.389526,0.62255,0.0114944,0.01993,0.291029,0.890963,0.532423,0.778617,0.128454,0.931998,0.512468,0.862183,0.456069,0.0207198,0.745426,0.562855,0.386537,0.632039,0.799873,0.0905938,0.485866,0.227827,0.921246,0.576522,0.0101932,0.245017,0.387821,0.623292,0.0206821,0.577767,0.517182,0.370238,0.204781,0.417528,0.963508,0.467252,0.835523,0.28462,0.973823,0.92191,0.661327,0.854056,0.878665,0.0541524,0.0110187,0.913742,0.228211,0.695444,0.232072,0.759887,0.376466,0.362081,0.0852727,0.236063,0.134512,0.527367,0.129141,0.000885308,0.622122,0.337036,0.794085,0.198103,0.482927,0.33911,0.865458,0.689352,0.0381371,0.246687,0.938273,0.286806,0.207846,0.541851,0.768573,0.652538,0.162087,0.828916,0.347786,0.44664,0.758292,0.905231,0.0660859,0.659757,0.486082,0.234146,0.786344,0.186156,0.971778,0.904194,0.375668,0.0829952,0.593074,0.0320765,0.223425,0.234942,0.0059669,0.741288,0.710236,0.372764,0.470358,0.692065,0.0875202,0.304932,0.361757,0.937882,0.356427,0.372926,0.953422,0.607316,0.983684,0.016942,0.806618,0.124228,0.74113,0.179582,0.941176,0.941828,0.65292,0.777298,|0.37911,0.0118586,0.619742,0.24601,0.74033,0.336884,0.598751,0.624422,0.798476,0.85227,0.645232,0.677219,0.885089,0.69621,0.792913,0.64829,0.342117,0.547344,0.908052,0.81918,0.889522,0.735259,0.395131,0.290869,0.149793,0.0929278,0.141486,0.897102,0.866729,0.035221,0.149794,0.326612,0.740969,0.50267,0.97642,0.366467,0.216122,0.669086,0.432886,0.618358,0.0799888,0.361885,0.637748,0.30465,0.369241,0.403016,0.194961,0.64469,0.816265,0.129008,0.283301,0.945104,0.310323,0.510432,0.11402,0.904716,0.964702,0.908652,0.739441,0.476663,0.60304,0.965106,0.735113,0.668532,0.946081,0.730233,0.794032,0.739832,0.224867,0.91106,0.154413,0.951635,0.124944,0.309507,0.65435,0.0810301,0.541389,0.695258,0.49367,0.243739,0.611786,0.859189,0.0363769,0.510551,0.0401155,0.968068,0.0469236,0.710015,0.12061,0.214609,0.432431,0.191028,0.491516,0.109437,0.318565,0.277841,0.419186,0.995069,0.409786,0.563371,0.385302,0.602352,0.83798,0.405937,0.0985005,0.732043,0.276062,0.918364,0.882896,0.291568,0.20581,0.380854,0.932331,0.868623,0.145079,0.0359788,0.479931,0.59915,0.691416,0.619501,0.592502,0.0438572,0.428499,0.806578,0.801045,0.632892,0.838873,0.590862,0.438331,0.807262,0.0945334,0.944948,0.121969,0.591344,0.0657864,0.0472766,0.467896,0.0137515,0.429846,0.363142,0.0211548,0.653184,0.281237,0.418246,0.401147,0.439036,0.981247,0.464809,0.709655,0.0624247,0.0984602,0.555617,0.514934,0.508963,0.829044,0.847451,0.156118,0.859041,0.666028,0.975617,0.969963,0.802528,0.153675,0.313141,0.361365,0.587113,0.546518,0.274356,0.77286,0.354425,0.565217,0.366349,0.0949071,0.547167,0.394985,0.597441,0.667596,0.105851,0.214004,0.538185,0.403238,0.624529,0.336023,0.260098,0.0275652,0.856187,0.690476,0.309388,0.877187,0.249819,0.676256,0.441543,0.00839752,0.598053,0.409387,0.645436,0.134345,0.253608,0.3288,0.0620796,0.400136,0.270427,0.0844471,0.0474948,0.171968,0.547261,0.261137,0.590887,0.423469,0.0195749,0.623115,0.210433,0.723287,0.838417,0.170445,0.667441,0.472873,0.561583,0.838804,0.315612,0.00452375,0.604293,0.291464,0.416191,0.793988,0.276521,0.798626,0.255131,0.98351,0.160959,0.636767,0.826814,0.925469,0.630298,0.40284,0.584142,0.423164,0.25169,0.477754,0.979271,0.668477,0.247533,0.741634,0.00457036,0.831719,0.906609,0.270295,0.935254,0.120139,0.494387,0.500257,0.304525,0.948133,0.747674,0.957856,0.435617,0.198825,0.624796,0.788128,0.821709,0.748002,0.77406,0.595231,0.244818,0.119145,0.381195,0.67737,0.383968,0.129861,0.610731,0.494005,0.360343,0.0411406,0.786632,0.599886,0.316032,0.911168,0.416458,0.0876307,0.952137,0.411733,0.322224,0.843568,0.385352,0.34985,0.271489,0.833181,0.799151,0.321611,0.138611,0.609788,0.3278,0.679391,0.496164,0.996354,0.384423,0.755313,0.723932,0.330941,0.710345,0.326576,0.348715,0.223318,0.924774,0.0439136,0.0500546,0.0573742,0.357405,0.406032,0.903026,0.732814,0.951145,0.815484,0.174456,0.836051,0.774213,0.204507,0.07805,0.648994,0.934829,0.479183,0.383883,0.91444,0.996013,0.137762,0.835818,0.437712,0.316175,0.891579,0.72224,0.427568,0.598301,0.815643,0.959033,0.181279,0.225653,0.886373,0.290075,0.229875,0.456853,0.693265,0.210862,0.611495,0.419017,0.139457,0.932608,0.0510398,0.12394,0.60828,0.0477133,0.131003,0.364327,0.747984,0.722289,0.0820807,0.983641,0.724721,0.149187,0.849171,0.301737,0.198346,0.203618,0.428109,0.900784,0.65197,0.316294,0.0174546,0.199882,0.799574,0.536449,0.541629,0.025992,0.195391,0.645629,0.117225,0.737188,0.186495,0.0201102,0.307924,0.839946,0.956216,0.218946,0.93848,0.473455,0.111859,0.909258,0.179957,0.945465,0.858831,0.996137,0.672292,0.60173,0.77035,0.341002,0.25607,0.657644,0.171784,0.835679,0.659533,0.395592,0.437345,0.634395,0.563076,0.228191,0.905233,0.409447,0.28926,0.681968,0.292842,0.639725,0.386104,0.886748,0.919767,0.79528,0.88939,0.549221,0.614039,0.403441,0.496522,0.889583,0.735609,0.849403,0.362109,0.330801,0.992619,0.0160789,0.65273,0.944992,0.737916,0.0549798,0.37077,0.196864,0.368315,0.459795,0.0555592,0.690155,0.938607,0.26873,0.26864,0.42224,0.16543,0.61122,0.267304,0.0498104,0.437962,0.513405,0.848686,0.095959,0.665775,0.0366307,0.353276,0.891867,0.939317,0.290056,0.807064,0.283985,0.356288,0.516263,0.562452,0.696626,0.285727,0.773904,0.20656,0.4365,0.70625,0.515946,0.406907,0.898441,0.962363,0.480702,0.987764,0.587609,0.368273,0.552435,0.281873,0.941728,0.963045,0.626432,0.607298,0.627707,0.115156,0.953745,0.139096,0.261923,0.536995,0.73089,0.860832,0.579299,0.740171,0.87631,0.968792,0.335305,0.636085,0.867523,0.490286,0.603548,0.529682,0.581306,0.410334,0.217691,0.917049,0.629302,0.877047,0.943839,0.675887,0.490433,0.211107,0.296325,0.642547,0.244317,0.845176,0.6367,0.390236,0.251007,0.443262,0.135498,0.376787,0.178064,0.19667,0.0297107,0.81445,0.283261,0.0376755,0.153459,0.195222,0.299681,0.663625,0.867799,0.421905,0.792899,0.90905,0.413372,0.221891,0.635976,0.856729,0.268551,0.0828595,0.454595,0.189586,0.854071,0.0535786,0.843846,0.653457,0.938746,0.0910235,0.462643,0.576877,0.32037,0.585702,0.582266,0.231824,0.309869,0.0136704,0.696463,0.329128,0.397868,0.203174,0.839146,0.224417,0.474186,0.153024,0.867764,0.394194,0.0632992,0.500178,0.741196,0.884513,0.728911,0.499995,0.981234,0.396183,0.99393,0.902384,0.923168,0.671529,0.034139,0.951737,0.915677,0.34458,0.622487,0.730186,0.633332,0.203943,0.252032,0.58734,0.0981435,0.172072,0.451435,0.324626,0.839898,0.0311112,0.855247,0.0893625,0.539626,0.588533,0.23889,0.859891,0.96103,0.684024,0.583692,0.245081,0.583341,0.933203,0.238073,0.460327,0.629045,0.677662,0.541716,0.858744,0.119894,0.552427,0.881727,0.618794,0.504412,0.139028,0.379226,0.669987,0.480874,0.19978,0.889661,0.534491,0.434878,0.433237,0.994741,0.649721,0.166849,0.474413,0.470488,0.201237,0.272398,0.758109,0.793405,0.726922,0.266608,0.193986,0.146315,0.442091,0.585169,0.567923,0.0465791,0.538035,0.294556,0.723019,0.741001,0.7145,0.157311,0.966584,0.0267441,0.482154,0.250312,0.441339,0.505822,0.0543458,0.826105,0.0315608,0.109213,0.162439,0.83286,0.875709,0.575304,0.502503,0.648279,0.368772,0.0404896,0.428703,0.00543606,0.82473,0.30572,0.0926478,0.458677,0.211324,0.26821,0.633736,0.822026,0.73156,0.88448,0.0306614,0.830715,0.657495,0.713807,0.180159,0.196143,0.52222,0.930617,0.699777,0.315764,0.181844,0.375286,0.540767,0.224476,0.0361165,0.862019,0.323282,0.0791367,0.741978,0.431551,0.789896,0.393256,0.680953,0.767358,0.094537,0.0265402,0.819668,0.916069,0.668692,0.551063,0.0444001,0.531218,0.670237,0.400142,0.506941,0.86894,0.832208,0.238229,0.317566,0.895517,0.631568,0.648968,0.408383,0.0147921,0.69242,0.457548,0.9693,0.177321,0.705369,0.260369,0.242075,0.553031,0.953304,0.149033,0.348411,0.671381,0.503039,0.325733,0.586006,0.802897,0.171184,0.177268,0.78872,0.752815,0.656036,0.50668,0.0529529,0.251681,0.798236,0.836988,0.523408,0.243008,0.351628,0.375723,0.920439,0.791595,0.654113,0.354049,0.682549,0.3221,0.2036,0.961138,0.836505,0.507577,0.23947,0.777822,0.992836,0.776316,0.785855,0.352204,0.394811,0.385923,0.516705,0.99672,0.719319,0.624828,0.634015,0.320686,0.207922,0.602503,0.386274,0.765715,0.958161,0.00290984,0.543758,0.852511,0.486316,0.785489,0.722675,0.503054,0.0313135,0.684935,0.462696,0.648457,0.577621,0.325689,0.0600705,0.427891,0.0725333,0.0311893,0.812774,0.3896,0.713034,0.399851,0.882483,0.53913,0.429865,0.109299,0.943942,0.0984509,0.772884,0.263665,0.463076,0.485804,0.446842,0.857172,0.620821,0.549858,0.0366414,0.16641,0.19865,0.828029,0.232183,0.304664,0.817536,0.188238,0.606652,0.0762247,0.473781,0.734988,0.142262,0.637359,0.395766,0.116821,0.293772,0.0465334,0.606348,0.411156,0.140072,0.869258,0.187874,0.493082,0.824075,0.152733,0.289205,0.82112,0.693667,0.684322,0.462468,0.314316,0.770314,0.171583,0.472079,0.310097,0.500857,0.749061,0.411052,0.983326,0.538879,0.323043,0.575676,0.120347,0.756796,0.0659108,0.212367,0.761948,0.818365,0.114699,0.0196674,0.870838,0.874663,0.4047,0.887656,0.160322,0.80345,0.768124,0.564129,0.196367,0.0616834,0.880442,0.0813571,0.742787,0.786191,0.148484,0.810403,0.777849,0.147188,0.683692,0.843624,0.165245,0.291213,0.487863,0.671876,0.236418,0.926351,0.953632,0.032505,0.705647,0.399533,0.893774,0.167431,0.650252,0.41589,0.702587,0.115454,0.976202,0.781106,0.650431,0.19496,0.390041,0.308729,0.133563,0.272736,0.69855,0.858076,0.116776,0.763665,0.0126176,0.159887,0.290417,0.263238,0.416745,0.478705,0.636355,0.446013,0.486497,0.884494,0.360689,0.571843,0.717457,0.668418,0.361894,0.845885,0.433961,0.966873,0.282958,0.630752,0.683705,0.275414,0.908109,0.724364,0.713854,0.0302154,0.405445,0.361612,0.326761,0.664059,0.245695,0.960496,0.869902,0.4708,0.356385,0.783285,0.82986,0.297013,0.697785,0.551762,0.348896,0.987849,0.701742,0.258769,0.283165,0.238848,0.0154376,0.635654,0.0261565,0.0503441,0.479237,0.561537,0.81555,0.480367,0.226824,0.0870535,0.229577,0.276204,0.468172,0.0776804,0.538308,0.325378,0.101223,0.711767,0.215277,0.635934,0.827176,0.14324,0.403708,0.978646,0.963682,0.747029,0.591508,0.437192,0.641805,0.800017,0.621705,0.661505,0.200736,0.519588,0.476404,0.52483,0.128553,0.459949,0.785584,0.605306,0.720962,|0.421178,0.992751,0.0796626,0.445613,0.932466,0.627149,0.843973,0.208936,0.48043,0.0931411,0.289449,0.203072,0.711946,0.872231,0.638647,0.396008,0.196584,0.10415,0.0452399,0.721154,0.76016,0.681125,0.0134413,0.705773,0.343506,0.394553,0.653908,0.642391,0.0477319,0.754203,0.290303,0.826086,0.613332,0.722263,0.726673,0.655166,0.723786,0.342693,0.696181,0.451253,0.3788,0.574849,0.0399547,0.214973,0.0375378,0.308835,0.23966,0.346461,0.873119,0.34093,0.711408,0.0329204,0.256226,0.267476,0.168256,0.298834,0.0768597,0.291972,0.824876,0.194848,0.322443,0.525192,0.607093,0.134908,0.0900678,0.726538,0.273016,0.465534,0.663447,0.103272,0.769786,0.465941,0.391571,0.806465,0.257426,0.698887,0.519659,0.405137,0.988413,0.496139,0.353586,0.595325,0.598789,0.680926,0.645283,0.675237,0.932566,0.686229,0.991818,0.971736,0.403309,0.4736,0.166301,0.842967,0.0763314,0.825496,0.0408265,0.454057,0.43052,0.31381,0.598372,0.737111,0.363867,0.403203,0.43961,0.610392,0.262424,0.973883,0.0633768,0.187223,0.694648,0.660524,0.279092,0.269174,0.782841,0.61938,0.0140567,0.563913,0.240454,0.628577,0.0725513,0.185162,0.763841,0.978418,0.93755,0.0184835,0.68347,0.0648313,0.533348,0.99118,0.591701,0.633598,0.284585,0.62489,0.680876,0.0917212,0.975994,0.745045,0.663477,0.877748,0.0818936,0.967335,0.905998,0.525283,0.781294,0.836241,0.365862,0.715399,0.581832,0.719319,0.589727,0.763614,0.14061,0.412303,0.782627,0.271676,0.399021,0.839254,0.575813,0.179319,0.0264374,0.297562,0.832901,0.481374,0.455053,0.257649,0.0187277,0.151639,0.982457,0.0935965,0.741373,0.620894,0.844252,0.505507,0.297072,0.0998345,0.750008,0.30466,0.35166,0.344456,0.287926,0.7271,0.55748,0.126593,0.727784,0.384266,0.609824,0.125754,0.915883,0.119234,0.0756212,0.141472,0.203629,0.190509,0.785956,0.92444,0.930397,0.770754,0.769155,0.803074,0.869455,0.042565,0.36517,0.285455,0.422314,0.544516,0.726282,0.0358,0.271472,0.352522,0.71532,0.111771,0.0294179,0.123227,0.101744,0.83735,0.0975977,0.630297,0.525878,0.433482,0.399781,0.522412,0.690099,0.773026,0.485982,0.673054,0.857276,0.909723,0.117159,0.893115,0.278005,0.467045,0.684272,0.732569,0.940106,0.805279,0.450302,0.543561,0.397984,0.18143,0.100031,0.875508,0.0733539,0.0942556,0.992251,0.298364,0.679826,0.390932,0.657929,0.707006,0.0844099,0.196378,0.860302,0.53262,0.0225736,0.319489,0.908091,0.309147,0.75934,0.43739,0.60643,0.770695,0.39703,0.739324,0.479313,0.784053,0.447981,0.699884,0.445037,0.232476,0.755907,0.920734,0.114558,0.513569,0.491211,0.502572,0.971727,0.380798,0.257428,0.65743,0.0187636,0.541663,0.426001,0.0729307,0.868126,0.769379,0.869224,0.152009,0.381088,0.86687,0.690287,0.243928,0.652491,0.109112,0.312932,0.655528,0.0907124,0.387998,0.871179,0.140223,0.582527,0.0563854,0.718409,0.0811299,0.133321,0.237626,0.651104,0.809045,0.72613,0.783222,0.366431,0.569186,0.890092,0.829257,0.846307,0.440176,0.795816,0.782225,0.404506,0.392529,0.428624,0.109442,0.263068,0.27894,0.180183,0.771752,0.524901,0.317043,0.421489,0.475121,0.352971,0.626076,0.440616,0.369538,0.321565,0.845907,0.616645,0.282797,0.00418073,0.402209,0.379235,0.426808,0.181211,0.476287,0.861799,0.329514,0.956812,0.997506,0.0159199,0.658024,0.930937,0.733231,0.553259,0.943751,0.450128,0.0729225,0.319158,0.716825,0.210327,0.527599,0.363599,0.539641,0.0418292,0.84057,0.985805,0.568422,0.808058,0.985904,0.270997,0.814321,0.0480356,0.348448,0.82939,0.134834,0.61451,0.624773,0.149453,0.258228,0.864905,0.427368,0.605314,0.655137,0.875159,0.840339,0.0336088,0.756433,0.775615,0.180528,0.787171,0.197326,0.0284846,0.952221,0.230151,0.624153,0.329757,0.552643,0.0786153,0.201101,0.719634,0.646884,0.835198,0.334451,0.614674,0.321382,0.543827,0.465974,0.837893,0.188379,0.220521,0.451271,0.092982,0.833584,0.799883,0.228723,0.0885347,0.924119,0.339173,0.324743,0.535867,0.966571,0.646808,0.80198,0.901389,0.827083,0.00452447,0.485335,0.404911,0.0701022,0.239056,0.778724,0.392521,0.990672,0.50078,0.943966,0.150755,0.953574,0.940984,0.255582,0.399976,0.372569,0.149592,0.310279,0.00765586,0.38743,0.262513,0.335563,0.0822095,0.556204,0.145891,0.778449,0.289989,0.557395,0.0639278,0.458371,0.988808,0.848426,0.657798,0.971309,0.813967,0.722366,0.0885296,0.811877,0.204155,0.22406,0.577981,0.264811,0.605757,0.42207,0.917756,0.951081,0.955187,0.843095,0.586332,0.773638,0.664053,0.413045,0.674717,0.0317932,0.245796,0.739064,0.0248969,0.515303,0.761152,0.0720357,0.302595,0.660867,0.62878,0.0665752,0.57675,0.139141,0.401096,0.721858,0.881176,0.602515,0.729941,0.415422,0.146173,0.513546,0.948362,0.0551921,0.155035,0.462319,0.575676,0.529294,0.810874,0.319583,0.927339,0.502213,0.305619,0.902252,0.216988,0.650787,0.753577,0.598769,0.476004,0.924843,0.741281,0.802139,0.0540714,0.779589,0.565347,0.987118,0.429481,0.946522,0.23143,0.859749,0.999499,0.222139,0.367761,0.886484,0.241993,0.391632,0.715878,0.546236,0.635865,0.304868,0.371728,0.983489,0.844707,0.424554,0.467284,0.14659,0.386573,0.54227,0.0832112,0.810922,0.124814,0.549209,0.355201,0.254508,0.663229,0.348104,0.748268,0.79523,0.312813,0.866448,0.575307,0.890635,0.841453,0.54987,0.682049,0.264467,0.226343,0.67304,0.89385,0.232697,0.637966,0.265488,0.837224,0.0246987,0.776013,0.229957,0.751639,0.448888,0.48402,0.361604,0.294969,0.341278,0.413871,0.452706,0.437065,0.488516,0.072326,0.805703,0.655816,0.653724,0.806124,0.393327,0.2755,0.881675,0.746385,0.156412,0.917235,0.490831,0.994817,0.757076,0.88452,0.865822,0.794839,0.257075,0.803479,0.441016,0.746976,0.327836,0.551014,0.489617,0.628135,0.610812,0.266957,0.490948,0.987466,0.441615,0.341901,0.79122,0.490168,0.984796,0.759062,0.848218,0.128932,0.509355,0.81854,0.751117,0.103793,0.056275,0.809173,0.0639648,0.0126858,0.663645,0.233135,0.0465418,0.375829,0.368393,0.329576,0.0147508,0.621973,0.0209027,0.967417,0.39471,0.372398,0.859478,0.51897,0.72592,0.185757,0.130251,0.26329,0.548628,0.846165,0.364943,0.541872,0.421572,0.0706028,0.448508,0.620488,0.998038,0.133242,0.109834,0.577122,0.0281953,0.842728,0.91563,0.341947,0.244791,0.166568,0.393875,0.953826,0.65929,0.202834,0.232168,0.61642,0.235264,0.39117,0.126583,0.0195324,0.579433,0.265337,0.0144364,0.782185,0.877563,0.112065,0.56073,0.172403,0.0732061,0.392441,0.903005,0.711196,0.659072,0.717197,0.433873,0.127719,0.313325,0.938641,0.292094,0.538576,0.733354,0.951978,0.772924,0.554417,0.369692,0.147203,0.86632,0.485899,0.0827029,0.899037,0.546518,0.994219,0.859105,0.750124,0.206956,0.143488,0.148986,0.506188,0.550349,0.832528,0.357463,0.261508,0.770815,0.815237,0.793398,0.271618,0.814631,0.774044,0.0329961,0.554222,0.627506,0.564426,0.00582099,0.448815,0.461147,0.990817,0.845861,0.3941,0.725099,0.516322,0.0549126,0.0217628,0.466907,0.0926803,0.168462,0.168774,0.791984,0.167855,0.0566261,0.604087,0.173329,0.91603,0.104561,0.0376022,0.696903,0.826464,0.62291,0.450426,0.0750293,0.47015,0.901004,0.0894216,0.113176,0.61016,0.524721,0.0991107,0.199266,0.880024,0.828667,0.412413,0.24185,0.114761,0.595962,0.534863,0.596245,0.0667012,0.508777,0.75253,0.623811,0.483607,0.653552,0.222396,0.361864,0.377527,0.91381,0.40487,0.254196,0.0731727,0.534293,0.170392,0.266768,0.564809,0.326907,0.228459,0.535492,0.0273455,0.80783,0.0443888,0.949933,0.0427661,0.452911,0.889954,0.113929,0.272371,0.741919,0.269676,0.208025,0.610853,0.173444,0.595136,0.00184661,0.10965,0.125799,0.332055,0.0721136,0.824805,0.185953,0.590235,0.57351,0.712429,0.800502,0.428976,0.00400722,0.317006,0.580497,0.688948,0.149973,0.437347,0.830229,0.16139,0.805406,0.402741,0.149304,0.663826,0.366248,0.71525,0.463528,0.076021,0.1176,0.279853,0.29579,0.77961,0.651467,0.732381,0.167599,0.625229,0.417587,0.0887273,0.741426,0.332637,0.735113,0.593273,0.213179,0.148037,0.276427,0.848219,0.194348,0.673592,0.996327,0.125756,0.466149,0.381558,0.62548,0.00143534,0.0155955,0.166972,0.762579,0.707289,0.652852,0.402909,0.497671,0.560577,0.0981618,0.370201,0.606052,0.0288613,0.0876288,0.998953,0.909592,0.245307,0.58017,0.756646,0.730957,0.870786,0.783701,0.962779,0.82601,0.777721,0.762566,0.0568789,0.975686,0.0731688,0.108458,0.951741,0.359103,0.0511817,0.97685,0.397702,0.0529711,0.453858,0.308769,0.146533,0.902625,0.968308,0.0184653,0.368713,0.263566,0.0230145,0.878022,0.265817,0.461949,0.294202,0.0149311,0.417855,0.611988,0.751888,0.613269,0.895736,0.470611,0.785072,0.311827,0.996466,0.49193,0.055036,0.466357,0.565729,0.38453,0.638562,0.841093,0.214893,0.037338,0.310035,0.537225,0.240376,0.361695,0.705221,0.899038,0.143795,0.660354,0.536063,0.490651,0.18004,0.277873,0.0571836,0.775444,0.468461,0.458078,0.347188,0.11174,0.710896,0.630532,0.943374,0.782576,0.11235,0.833784,0.758076,0.473216,0.564276,0.503594,0.393034,0.0231148,0.635301,0.0382254,0.516572,0.679177,0.499656,0.452943,0.94838,0.126355,0.37793,0.987066,0.466443,0.785917,0.530357,0.831038,0.607228,0.75787,0.812855,0.343925,0.143917,0.339101,0.781887,0.745349,0.0380136,0.619523,0.103122,0.611226,0.442034,0.468237,0.655192,0.210217,0.82376,0.99964,0.257335,0.493667,0.921598,0.645674,0.846234,0.794785,0.426928,0.220606,0.118907,0.36735,0.275908,0.626734,0.421411,0.515615,|0.995543,0.320558,0.0741289,0.721715,0.371009,0.605261,0.114695,0.140501,0.909021,0.837478,0.0247791,0.0395344,0.472692,0.291639,0.442549,0.0216396,0.719132,0.670958,0.33655,0.20707,0.321637,0.336329,0.0233132,0.20447,0.273178,0.839621,0.932964,0.0535978,0.127409,0.134027,0.199091,0.106828,0.0216421,0.226641,0.973433,0.629964,0.188006,0.0313535,0.523719,0.88612,0.927771,0.837725,0.976216,0.786484,0.0472977,0.159861,0.55918,0.268865,0.541018,0.0565335,0.913923,0.405429,0.0728071,0.195108,0.193719,0.684056,0.35705,0.481256,0.996472,0.0850124,0.606258,0.916025,0.196239,0.96739,0.89543,0.18316,0.412345,0.828926,0.408322,0.596706,0.633142,0.419165,0.274722,0.801023,0.62492,0.858848,0.604726,0.772224,0.564365,0.314961,0.695764,0.0737888,0.700399,0.932574,0.283177,0.214786,0.666947,0.873909,0.440175,0.372976,0.0157859,0.0988424,0.95753,0.198188,0.12641,0.754037,0.663703,0.717002,0.591619,0.090778,0.480709,0.806348,0.113998,0.86734,0.889117,0.532701,0.23283,0.870919,0.445814,0.833104,0.703133,0.498018,0.534613,0.620154,0.28615,0.680382,0.0711024,0.427676,0.0527092,0.621561,0.467866,0.919873,0.010282,0.801253,0.0670356,0.472681,0.0786537,0.199608,0.0301661,0.0295436,0.0248345,0.118881,0.902923,0.767975,0.123268,0.806542,0.819177,0.705655,0.232845,0.654249,0.870583,0.569821,0.792356,0.314796,0.337243,0.693183,0.700367,0.114451,0.793682,0.270642,0.0109695,0.0790082,0.956336,0.0442083,0.0914997,0.570586,0.201807,0.811767,0.477514,0.709286,0.533807,0.758817,0.0814987,0.723705,0.418867,0.157419,0.0736739,0.908132,0.3421,0.178525,0.940913,0.114009,0.495104,0.336341,0.0377897,0.861613,0.918673,0.540823,0.887133,0.472616,0.199663,0.3483,0.282857,0.461304,0.59922,0.282595,0.626482,0.81118,0.662268,0.395403,0.850368,0.892997,0.231908,0.458157,0.297877,0.25604,0.394885,0.112856,0.973827,0.5678,0.124019,0.0598198,0.696726,0.682236,0.582111,0.293121,0.887273,0.485003,0.3495,0.798945,0.144712,0.807052,0.411487,0.187932,0.323788,0.342849,0.620397,0.0950362,0.850346,0.483646,0.752275,0.874915,0.239715,0.359123,0.794219,0.105383,0.0787596,0.234234,0.686875,0.209103,0.752382,0.863942,0.955777,0.556536,0.230561,0.226299,0.461159,0.484026,0.485778,0.722676,0.716453,0.903597,0.0887511,0.901969,0.806569,0.580908,0.15932,0.457845,0.605506,0.869957,0.359739,0.976126,0.261216,0.946074,0.544481,0.345689,0.273682,0.413131,0.133104,0.23763,0.342367,0.50769,0.297116,0.954021,0.606529,0.362405,0.698724,0.143267,0.976184,0.788461,0.881772,0.327384,0.321192,0.132436,0.23491,0.493271,0.221016,0.056132,0.448754,0.786259,0.973565,0.0589847,0.19608,0.550364,0.664349,0.331065,0.11547,0.819152,0.405036,0.377719,0.226217,0.458609,0.254801,0.742408,0.408988,0.326059,0.687934,0.665774,0.00568813,0.365228,0.984738,0.807541,0.191707,0.139039,0.961977,0.141834,0.578451,0.430545,0.360475,0.29797,0.7621,0.85394,0.139685,0.28858,0.526726,0.0265362,0.305188,0.110067,0.971128,0.786745,0.213633,0.0936853,0.077552,0.921799,0.282264,0.00746483,0.269489,0.64129,0.910731,0.032776,0.769443,0.45182,0.301447,0.0632809,0.721016,0.830155,0.266167,0.0949108,0.920919,0.133919,0.838571,0.912971,0.566605,0.930693,0.229824,0.708032,0.649566,0.993215,0.334088,0.642502,0.920483,0.7034,0.513579,0.0258148,0.612135,0.594559,0.477888,0.895998,0.5402,0.500666,0.165595,0.609773,0.150833,0.217065,0.0857033,0.312909,0.0270618,0.878781,0.179568,0.518172,0.657277,0.560807,0.718876,0.492426,0.243748,0.517161,0.647501,0.596728,0.260114,0.109829,0.766391,0.51757,0.458588,0.45588,0.227565,0.994472,0.0964047,0.116455,0.00971472,0.611572,0.150346,0.979451,0.18453,0.947649,0.605215,0.84603,0.286054,0.0823359,0.953439,0.695784,0.124655,0.957199,0.20037,0.586169,0.723292,0.255302,0.882501,0.173866,0.862067,0.384614,0.319577,0.393395,0.249221,0.542475,0.0490561,0.202771,0.282396,0.528221,0.215478,0.968234,0.418666,0.0104188,0.199033,0.697842,0.0766549,0.431409,0.921173,0.325778,0.838141,0.818854,0.894724,0.00329685,0.551508,0.586286,0.891371,0.761513,0.618091,0.836249,0.462247,0.160202,0.495984,0.944597,0.842441,0.908029,0.450535,0.848248,0.226101,0.810371,0.0304778,0.159079,0.662387,0.660552,0.798614,0.999306,0.639649,0.140869,0.38089,0.967657,0.706455,0.045386,0.167553,0.0249434,0.46096,0.68845,0.607053,0.341536,0.209584,0.700382,0.0152371,0.645512,0.0126248,0.520206,0.460419,0.608819,0.421991,0.25524,0.354397,0.427582,0.5054,0.663851,0.968524,0.664721,0.683754,0.620458,0.746593,0.539594,0.380099,0.734585,0.705839,0.924158,0.694565,0.0768203,0.734034,0.313455,0.757627,0.87325,0.328896,0.420198,0.729738,0.869423,0.961619,0.73102,0.844921,0.448261,0.369927,0.927961,0.271567,0.45845,0.545866,0.97559,0.00149292,0.589875,0.47554,0.979235,0.240985,0.802782,0.644514,0.602473,0.394786,0.789917,0.105668,0.354877,0.998592,0.0783264,0.421298,0.630489,0.035229,0.689785,0.598993,0.8402,0.920347,0.738676,0.0838501,0.272137,0.738787,0.0392654,0.0254713,0.00330955,0.953942,0.180538,0.985714,0.879962,0.640102,0.14321,0.0986949,0.0242178,0.742647,0.485803,0.851849,0.229962,0.630798,0.627257,0.728987,0.273472,0.362401,0.589319,0.407406,0.804461,0.649623,0.859696,0.340448,0.500735,0.431751,0.774827,0.217999,0.649042,0.0429258,0.716582,0.476978,0.69071,0.0107433,0.319578,0.812294,0.677843,0.582647,0.336015,0.170483,0.409246,0.799282,0.29657,0.272737,0.417607,0.374526,0.170032,0.348532,0.116674,0.601116,0.35281,0.293112,0.514428,0.464437,0.127877,0.485596,0.397629,0.611614,0.299098,0.987677,0.602646,0.0488958,0.614832,0.0692831,0.249081,0.519473,0.566133,0.542517,0.493446,0.269833,0.743436,0.74415,0.562516,0.885794,0.241008,0.654829,0.784517,0.654548,0.289878,0.993505,0.0702208,0.801516,0.03648,0.652779,0.358621,0.0963135,0.65759,0.389757,0.276181,0.901618,0.130461,0.807096,0.382841,0.985684,0.223052,0.827783,0.985197,0.833899,0.72302,0.047147,0.298389,0.823627,0.444118,0.364822,0.935432,0.9905,0.376482,0.147542,0.452456,0.548189,0.056236,0.963502,0.0673804,0.142603,0.682591,0.925359,0.086532,0.925879,0.0135397,0.665159,0.146734,0.975679,0.679659,0.935578,0.13412,0.00832933,0.505535,0.323653,0.776873,0.458876,0.655668,0.16124,0.494325,0.269315,0.26728,0.813249,0.0700479,0.557893,0.636149,0.921258,0.938953,0.759038,0.261759,0.933262,0.815325,0.810515,0.60308,0.489201,0.309768,0.548811,0.60147,0.497689,0.358246,0.424166,0.741831,0.878278,0.57785,0.564925,0.364156,0.332089,0.766525,0.628043,0.593418,0.606906,0.999538,0.697779,0.281657,0.143955,0.0940949,0.770515,0.519449,0.193641,0.321482,0.6564,0.026256,0.739416,0.713422,0.793078,0.798557,0.0877196,0.560909,0.142587,0.996533,0.876163,0.67365,0.724368,0.48168,0.425572,0.343473,0.620362,0.109247,0.185145,0.854416,0.511396,0.134761,0.386782,0.393615,0.492915,0.169767,0.200318,0.555464,0.445955,0.385975,0.921014,0.948603,0.535047,0.765151,0.279955,0.575316,0.910862,0.758644,0.00486279,0.116562,0.384726,0.26492,0.261682,0.629912,0.493929,0.853718,0.401103,0.446235,0.561868,0.648139,0.701647,0.263205,0.162121,0.913572,0.674254,0.67514,0.391657,4.65512e-05,0.925535,0.0390083,0.584317,0.16866,0.0778205,0.953249,0.190232,0.982139,0.470698,0.279246,0.0118613,0.978805,0.898859,0.0519168,0.0196813,0.330166,0.705068,0.599017,0.357375,0.829136,0.160205,0.214236,0.520748,0.740673,0.65622,0.693005,0.666583,0.5402,0.785592,0.212906,0.677645,0.309253,0.535448,0.209146,0.539564,0.545578,0.472718,0.164545,0.0340506,0.208098,0.0169892,0.178962,0.110401,0.283426,0.527297,0.0696705,0.838876,0.172155,0.207336,0.590656,0.00945234,0.387584,0.7587,0.4169,0.300003,0.635486,0.0773394,0.793681,0.00361276,0.585393,0.164649,0.672488,0.649962,0.689087,0.261206,0.114389,0.456111,0.943334,0.444291,0.865523,0.655754,0.996743,0.353407,0.639339,0.0593689,0.433869,0.315304,0.241612,0.762107,0.706979,0.00103706,0.463811,0.973335,0.472656,0.56254,0.553587,0.989088,0.272414,0.0771065,0.128288,0.270836,0.689607,0.328818,0.240128,0.425629,0.126685,0.903785,0.888892,0.315143,0.677558,0.151638,0.150672,0.945251,0.521337,0.452351,0.314614,0.587945,0.783664,0.702339,0.110295,0.709236,0.95889,0.821052,0.869864,0.52111,0.879864,0.845347,0.134985,0.18572,0.171768,0.440633,0.524714,0.836138,0.403301,0.342363,0.122346,0.0273819,0.863448,0.722638,0.928147,0.987421,0.334355,0.130046,0.213245,0.0399326,0.632602,0.783365,0.606827,0.909287,0.723374,0.10845,0.464807,0.737889,0.805195,0.0559455,0.133475,0.278326,0.670186,0.903082,0.217763,0.0183643,0.298554,0.941843,0.410276,0.688048,0.224651,0.690601,0.482572,0.855116,0.65449,0.251091,0.841175,0.563977,0.341049,0.775491,0.372817,0.176497,0.0218167,0.688133,0.706178,0.0195649,0.233834,0.990294,0.253535,0.844862,0.270293,0.877511,0.304522,0.904631,0.764734,0.368202,0.307164,0.0690239,0.136348,0.337829,0.946802,0.0410743,0.0256727,0.0286112,0.168631,0.309956,0.434088,0.751764,0.747652,0.841968,0.781603,0.175875,0.947604,0.994128,0.557252,0.203083,0.781321,0.459494,0.88342,0.588865,0.822444,0.768769,0.349959,0.0939888,0.445516,0.0477121,0.428682,0.303677,0.78373,0.228719,0.871942,0.588781,0.575139,0.851295,0.98692,0.106057,0.735665,0.585055,0.668524,0.861878,0.492728,0.111809,0.307794,0.896042,0.278964,0.509603,0.0886024,|0.787721,0.451895,0.822234,0.998819,0.665444,0.528247,0.0025962,0.0197125,0.198654,0.491124,0.00402212,0.237654,0.865683,0.0124525,0.769701,0.319036,0.014922,0.637642,0.66808,0.193987,0.244026,0.858584,0.776857,0.881837,0.733886,0.901222,0.179526,0.424244,0.135759,0.702117,0.234831,0.203026,0.128174,0.873392,0.333652,0.974351,0.67811,0.745773,0.351705,0.738453,0.305414,0.422265,0.270319,0.556428,0.624578,0.525818,0.989911,0.260144,0.947167,0.583912,0.558965,0.415151,0.905095,0.772,0.992134,0.742338,0.504787,0.414922,0.959662,0.723404,0.687375,0.937069,0.740219,0.842317,0.570109,0.775373,0.868233,0.0236605,0.712984,0.476276,0.928527,0.461223,0.00225013,0.948244,0.0839144,0.147313,0.176272,0.0364556,0.71737,0.771542,0.0186808,0.375503,0.702006,0.0351739,0.481028,0.172328,0.440892,0.844046,0.601245,0.283285,0.756524,0.309338,0.872555,0.546717,0.66027,0.832835,0.481153,0.83818,0.357856,0.110451,0.499198,0.996038,0.147081,0.671421,0.0428136,0.575626,0.307553,0.719114,0.688073,0.569186,0.826886,0.24033,0.658975,0.800942,0.184876,0.547548,0.656184,0.609946,0.293413,0.947327,0.933073,0.862136,0.78208,0.122499,0.0131223,0.193094,0.899175,0.934696,0.377167,0.577298,0.472723,0.831593,0.908254,0.618172,0.421139,0.427912,0.338844,0.158993,0.109736,0.7045,0.699941,0.790534,0.81223,0.378105,0.105629,0.870109,0.88322,0.988544,0.869424,0.219855,0.45977,0.939992,0.316576,0.504974,0.663432,0.208065,0.756695,0.463573,0.782877,0.0731348,0.795497,0.566457,0.713574,0.343902,0.0829267,0.097294,0.725645,0.35012,0.751753,0.762032,0.0695076,0.151169,0.566816,0.815474,0.706032,0.25279,0.0810245,0.728788,0.498104,0.900912,0.708957,0.553443,0.903662,0.213262,0.70283,0.299715,0.872746,0.206831,0.566918,0.585373,0.593779,0.688728,0.82597,0.966244,0.118493,0.988081,0.224623,0.0305341,0.817,0.124074,0.992485,0.797008,0.00714278,0.926577,0.687846,0.0956595,0.892025,0.175166,0.944722,0.201487,0.63398,0.31081,0.467677,0.618011,0.195245,0.779106,0.668737,0.726073,0.725224,0.6445,0.657749,0.649618,0.279996,0.736623,0.700376,0.180225,0.407041,0.913223,0.258276,0.410152,0.914746,0.135681,0.68096,0.913295,0.179501,0.733174,0.313835,0.797212,0.492399,0.779401,0.18679,0.703476,0.31159,0.849337,0.26441,0.966207,0.160282,0.395225,0.0709119,0.354931,0.960512,0.302904,0.56678,0.00133216,0.700577,0.854781,0.111949,0.209813,0.224693,0.335999,0.726742,0.445415,0.473422,0.927585,0.210352,0.264596,0.32175,0.813505,0.000681341,0.541214,0.884581,0.391279,0.0487416,0.142256,0.784706,0.512076,0.831132,0.648095,0.134848,0.197039,0.850154,0.777754,0.775415,0.588964,0.787916,0.492228,0.0106167,0.366537,0.641936,0.581734,0.447037,0.215058,0.579215,0.0159907,0.37224,0.404031,0.023098,0.579729,0.0667238,0.504079,0.117519,0.277253,0.711334,0.709527,0.442077,0.355656,0.63242,0.999446,0.927851,0.43225,0.136787,0.161221,0.84853,0.41276,0.202283,0.0164947,0.53583,0.267643,0.341764,0.302903,0.972567,0.0503988,0.669549,0.327307,0.191783,0.406552,0.67593,0.261899,0.918057,0.822567,0.779434,0.21241,0.965895,0.75528,0.793725,0.336186,0.0131881,0.455592,0.894531,0.427978,0.170757,0.936921,0.361745,0.852575,0.190313,0.626258,0.28424,0.110812,0.891056,0.425605,0.504152,0.109018,0.233079,0.286993,0.953409,0.218146,0.229577,0.10646,0.103798,0.411767,0.0792287,0.0477734,0.981144,0.326648,0.966405,0.642703,0.876356,0.115648,0.998025,0.436788,0.639912,0.00399506,0.0178574,0.70046,0.0839649,0.108932,0.262948,0.763414,0.151167,0.18691,0.730587,0.747598,0.277663,0.30923,0.968556,0.69606,0.340465,0.87218,0.066385,0.999438,0.596121,0.736092,0.463566,0.124001,0.602975,0.0609891,0.380988,0.75924,0.664908,0.872304,0.265913,0.743047,0.980945,0.943548,0.284706,0.918506,0.188963,0.26547,0.0157348,0.187843,0.542524,0.708636,0.850133,0.671972,0.687107,0.847359,0.379748,0.743492,0.657722,0.676118,0.423259,0.283058,0.702483,0.233461,0.572571,0.806377,0.268057,0.783414,0.414009,0.931799,0.732637,0.589245,0.798046,0.868831,0.302322,0.314122,0.67861,0.382308,0.236017,0.559805,0.676447,0.228773,0.294257,0.667407,0.256001,0.134307,0.782738,0.755549,0.425319,0.202455,0.718143,0.132615,0.0399414,0.792467,0.461854,0.7717,0.742667,0.555944,0.435301,0.258092,0.711221,0.50245,0.653623,0.989887,0.290473,0.00624156,0.0702729,0.75831,0.448877,0.276619,0.308951,0.375731,0.0843654,0.940481,0.534967,0.275874,0.598728,0.343115,0.0471151,0.540564,0.255857,0.252001,0.0864393,0.20545,0.710475,0.251334,0.860641,0.00786197,0.503339,0.207013,0.700855,0.857555,0.802612,0.131955,0.865762,0.901954,0.832056,0.343453,0.0942224,0.398453,0.671665,0.14138,0.518763,0.0348106,0.406265,0.1253,0.515535,0.827434,0.181894,0.436538,0.677033,0.885402,0.218553,0.81094,0.921679,0.843509,0.488804,0.95632,0.265203,0.996172,0.88556,0.724595,0.413529,0.913673,0.0821963,0.420979,0.763327,0.375656,0.293919,0.213043,0.303013,0.273935,0.28101,0.415053,0.562562,0.16935,0.00683761,0.223778,0.567664,0.734296,0.0714475,0.425115,0.809596,0.671641,0.45567,0.873992,0.544773,0.422886,0.309783,0.204062,0.510069,0.366539,0.97386,0.772432,0.212377,0.204695,0.819518,0.652839,0.889029,0.451843,0.201156,0.678292,0.327284,0.315241,0.157973,0.644997,0.243098,0.361683,0.138774,0.141808,0.614891,0.475831,0.0785099,0.729391,0.952909,0.389649,0.963936,0.922829,0.0225407,0.333137,0.230278,0.172059,0.292971,0.177744,0.614746,0.449121,0.951942,0.126781,0.603699,0.377323,0.554671,0.0120604,0.936106,0.944984,0.718232,0.532687,0.157721,0.0498728,0.54624,0.413146,0.955832,0.0427358,0.112261,0.440256,0.703931,0.491451,0.543966,0.407419,0.378198,0.800098,0.687777,0.877949,0.355258,0.0611479,0.902131,0.482187,0.843208,0.264648,0.891275,0.659285,0.685856,0.597616,0.784506,0.980016,0.825008,0.283654,0.642454,0.84761,0.172632,0.835206,0.254015,0.198739,0.899287,0.0569779,0.806192,0.784292,0.786463,0.191941,0.31345,0.074357,0.401509,0.285693,0.101365,0.37388,0.188717,0.120093,0.706772,0.0990952,0.133279,0.930245,0.566265,0.168454,0.57231,0.198234,0.209955,0.620287,0.13707,0.538042,0.213134,0.864984,0.774101,0.969722,0.0909688,0.495979,0.0323462,0.449346,0.658943,0.415,0.319652,0.625053,0.522006,0.77645,0.971108,0.965888,0.204257,0.18935,0.475095,0.961795,0.148699,0.661857,0.0329834,0.591007,0.559988,0.470798,0.255493,0.77282,0.771195,0.206434,0.781466,0.267535,0.285707,0.120372,0.903339,0.519543,0.590205,0.0638214,0.409792,0.205811,0.452038,0.843998,0.694652,0.976415,0.439009,0.177848,0.94278,0.606506,0.307391,0.838207,0.424115,0.46825,0.173949,0.111356,0.924865,0.360444,0.00576597,0.598019,0.157451,0.30724,0.655995,0.131071,0.208068,0.481759,0.819317,0.390305,0.560321,0.261501,0.371177,0.829845,0.0411892,0.759409,0.142467,0.494537,0.429359,0.618836,0.651693,0.0928427,0.0737076,0.770074,0.708165,0.467659,0.37852,0.935947,0.701887,0.644399,0.73673,0.326198,0.348613,0.676065,0.125037,0.996437,0.765411,0.642581,0.779766,0.548167,0.579649,0.233109,0.207861,0.642632,0.120832,0.695922,0.771023,0.764274,0.766129,0.783474,0.0925952,0.124609,0.732204,0.621056,0.435378,0.398949,0.267043,0.710082,0.621004,0.132775,0.280217,0.377863,0.75213,0.577811,0.173176,0.5219,0.130178,0.121167,0.349353,0.673119,0.846371,0.145695,0.527068,0.794998,0.0959343,0.569367,0.497481,0.221819,0.385641,0.562158,0.557994,0.0643022,0.187271,0.358659,0.381347,0.0472831,0.541812,0.108053,0.442796,0.32696,0.280107,0.530512,0.941677,0.200437,0.933455,0.204381,0.821852,0.822169,0.201013,0.415198,0.736725,0.917014,0.975662,0.989821,0.958798,0.865833,0.322803,0.688285,0.434537,0.23317,0.489247,0.711611,0.187846,0.473641,0.924262,0.86275,0.349131,0.579603,0.889906,0.592927,0.85771,0.0736595,0.853212,0.602757,0.919896,0.299905,0.0404473,0.241146,0.0952404,0.431006,0.203537,0.749664,0.495777,0.674736,0.8361,0.688015,0.703474,0.143189,0.904626,0.402259,0.482706,0.293629,0.706699,0.112548,0.877051,0.91564,0.868403,0.529757,0.0809707,0.135977,0.0937115,0.719857,0.283925,0.497548,0.378638,0.5016,0.614765,0.0627943,0.653518,0.256361,0.0849233,0.946751,0.166898,0.489985,0.148663,0.706264,0.118207,0.875546,0.479903,0.917052,0.805258,0.911685,0.0472857,0.169603,0.874826,0.395955,0.631364,0.486908,0.29147,0.481953,0.857022,0.0102735,0.165787,0.188894,0.983193,0.223357,0.121996,0.0139672,0.668286,0.140682,0.842707,0.0292144,0.636647,0.116916,0.609535,0.278533,0.521401,0.184369,0.519345,0.316631,0.127259,0.901953,0.192571,0.151739,0.815337,0.875802,0.471031,0.813556,0.544951,0.466252,0.679682,0.317603,0.560798,0.748789,0.879839,0.599807,0.776804,0.614349,0.0790845,0.856143,0.401802,0.165155,0.93683,0.427046,0.775323,0.936262,0.277746,0.177311,0.552504,0.273653,0.682829,0.665309,0.376853,0.942452,0.775948,0.788252,0.837147,0.000551105,0.43871,0.269111,0.199551,0.0385898,0.490746,0.00502962,0.48554,0.078375,0.185499,0.907524,0.816634,0.91947,0.169026,0.522683,0.729351,0.0807742,0.851544,0.967285,0.534211,0.769192,0.488417,0.281047,0.777167,0.571875,0.589822,0.208314,0.149111,0.141775,0.53209,0.383818,0.983364,0.745768,0.270024,0.36825,0.0863608,0.0409565,0.69047,0.354864,0.938236,0.955831,0.696814,0.1852,0.320587,0.513876,0.891772,0.857684,0.26022,0.699425,|0.645535,0.882386,0.322771,0.365559,0.785285,0.973536,0.83166,0.448176,0.986085,0.553359,0.143902,0.566665,0.245161,0.458192,0.635119,0.763159,0.911936,0.784155,0.644991,0.253955,0.936967,0.229204,0.0674313,0.763337,0.370453,0.554967,0.934449,0.454507,0.770097,0.0866127,0.904319,0.502007,0.91265,0.0421154,0.448732,0.843501,0.34292,0.385722,0.960296,0.335008,0.128466,0.29732,0.212052,0.230033,0.231482,0.791822,0.484293,0.979722,0.255193,0.778754,0.506524,0.369836,0.656341,0.359265,0.0655627,0.366358,0.498944,0.0618567,0.743244,0.550746,0.973164,0.384447,0.494963,0.0587569,0.0503088,0.00699073,0.41604,0.489429,0.581916,0.467688,0.604702,0.769179,0.687884,0.89357,0.100174,0.428803,0.579408,0.558945,0.63409,0.686983,0.908774,0.348498,0.309415,0.404379,0.819839,0.385983,0.13317,0.163397,0.827398,0.0213756,0.148295,0.753941,0.478711,0.214982,0.263373,0.102483,0.665876,0.433081,0.696964,0.0502794,0.48391,0.562362,0.863516,0.42327,0.640819,0.879847,0.493785,0.162745,0.500737,0.231521,0.23658,0.883419,0.723895,0.449212,0.593191,0.785699,0.772579,0.969968,0.633576,0.24229,0.944171,0.176757,0.729825,0.980383,0.607889,0.450868,0.200803,0.97511,0.292099,0.818263,0.102981,0.932288,0.656856,0.733729,0.286197,0.749464,0.578547,0.197804,0.915411,0.738046,0.712951,0.291688,0.667229,0.0602733,0.0227413,0.74636,0.893939,0.669297,0.270076,0.598452,0.612457,0.19312,0.902741,0.674693,0.40514,0.743365,0.907214,0.589688,0.37752,0.320501,0.880756,0.375647,0.000759184,0.00541979,0.899269,0.505126,0.766705,0.533997,0.697917,0.740193,0.246883,0.923476,0.344587,0.577945,0.743396,0.366342,0.837609,0.259889,0.744341,0.630379,0.0864104,0.863208,0.849448,0.191247,0.351808,0.14528,0.648315,0.96051,0.133834,0.40192,0.171821,0.669622,0.848422,0.348209,0.106224,0.932603,0.949484,0.160584,0.255013,0.514475,0.548197,0.552422,0.892183,0.863728,0.59614,0.0274306,0.0584874,0.597848,0.75655,0.408276,0.792919,0.540653,0.999796,0.182114,0.630647,0.959711,0.632984,0.858871,0.988314,0.776203,0.776262,0.448879,0.179259,0.908735,0.329923,0.949052,0.735426,0.473384,0.918271,0.774006,0.790505,0.410876,0.00120783,0.24401,0.51348,0.843358,0.621157,0.761312,0.650251,0.086727,0.37905,0.326004,0.511863,0.48942,0.14713,0.18505,0.857166,0.0310283,0.132634,0.134547,0.370672,0.0308702,0.437487,0.666543,0.336609,0.0809156,0.902716,0.30387,0.377345,0.24784,0.262797,0.839356,0.827007,0.275799,0.0477746,0.707872,0.968005,0.490667,0.565767,0.973491,0.515361,0.809444,0.285845,0.0917236,0.00940698,0.260218,0.520746,0.658397,0.486063,0.364699,0.606603,0.956607,0.65346,0.619911,0.357826,0.827615,0.283895,0.665207,0.297403,0.470156,0.783509,0.652614,0.140597,0.0621823,0.393413,0.983666,0.028348,0.766232,0.827523,0.946995,0.125108,0.869723,0.624918,0.797922,0.835298,0.388797,0.513956,0.0659714,0.373849,0.354817,0.109438,0.435167,0.0111151,0.495266,0.854799,0.399185,0.891423,0.6741,0.994505,0.28636,0.652692,0.992341,0.0974013,0.925184,0.688697,0.332002,0.16269,0.758294,0.602133,0.801252,0.239557,0.989654,0.375504,0.928307,0.857944,0.646898,0.963774,0.211979,0.526855,0.608352,0.861125,0.770128,0.829053,0.35421,0.356092,0.0108674,0.701354,0.505605,0.353062,0.350724,0.506563,0.133551,0.349018,0.0524058,0.636533,0.317967,0.36261,0.123197,0.522694,0.722875,0.200028,0.207369,0.0695554,0.474724,0.0643805,0.657112,0.861133,0.990418,0.681197,0.523726,0.947079,0.479433,0.0222685,0.607229,0.137248,0.359228,0.591154,0.543113,0.180695,0.607753,0.631455,0.39891,0.102546,0.304646,0.991853,0.016108,0.91748,0.308861,0.359918,0.803315,0.687873,0.386565,0.169894,0.0338107,0.190449,0.2283,0.154476,0.883045,0.871154,0.226657,0.937977,0.224541,0.194927,0.713951,0.23633,0.325086,0.250791,0.695512,0.274728,0.670688,0.500599,0.990348,0.399804,0.455704,0.71938,0.572312,0.549722,0.88563,0.630628,0.444047,0.394364,0.351471,0.115478,0.359466,0.808639,0.702436,0.757269,0.0780258,0.532062,0.3428,0.698059,0.00994515,0.556578,0.636198,0.656924,0.979769,0.0349113,0.813237,0.704775,0.58405,0.364172,0.453977,0.5628,0.107668,0.562897,0.794874,0.356263,0.938786,0.138263,0.904419,0.532861,0.758687,0.483528,0.587588,0.6572,0.538804,0.00261605,0.616404,0.391387,0.246185,0.429876,0.215956,0.0882846,0.25983,0.861713,0.0208685,0.0308968,0.780934,0.157596,0.604931,0.547194,0.0113899,0.353734,0.832958,0.849627,0.782877,0.437975,0.586288,0.957373,0.0118703,0.44349,0.30917,0.688905,0.884009,0.281329,0.30656,0.149411,0.343518,0.426644,0.545749,0.836977,0.628825,0.0759513,0.506669,0.137917,0.554298,0.134982,0.463979,0.756196,0.131744,0.890753,0.755047,0.0755789,0.111646,0.242557,0.479402,0.912804,0.669235,0.531302,0.575116,0.779293,0.63927,0.315934,0.555075,0.152714,0.259562,0.908074,0.758544,0.765888,0.61584,0.649478,0.941345,0.429226,0.578063,0.0678724,0.400164,0.614145,0.283276,0.988031,0.292919,0.272674,0.465294,0.992247,0.327336,0.412106,0.912216,0.269641,0.955064,0.69457,0.404114,0.221316,0.539494,0.426331,0.604282,0.137138,0.720717,0.390759,0.492715,0.569355,0.752328,0.264477,0.534879,0.536556,0.526066,0.739106,0.214324,0.74926,0.321226,0.0653513,0.00223398,0.922315,0.362714,0.198944,0.42138,0.491373,0.576599,0.438306,0.715236,0.974862,0.450483,0.372301,0.207068,0.799802,0.647336,0.860663,0.0977967,0.597003,0.0447789,0.29206,0.247481,0.465358,0.839741,0.211956,0.431115,0.637736,0.369713,0.373825,0.0459321,0.92754,0.182551,0.416031,0.597233,0.0273166,0.60581,0.67793,0.54701,0.880226,0.571759,0.619442,0.594961,0.406244,0.720291,0.609555,0.26693,0.0483193,0.756109,0.484972,0.914437,0.174953,0.478602,0.184458,0.05786,0.580057,0.852684,0.0812812,0.846458,0.101624,0.873951,0.17263,0.959522,0.52283,0.0111834,0.475045,0.171572,0.109147,0.543015,0.913518,0.86414,0.724988,0.589111,0.238333,0.617968,0.146375,0.683729,0.293561,0.166583,0.718761,0.599493,0.290123,0.537363,0.57893,0.0454333,0.384366,0.922713,0.0797695,0.212389,0.0881779,0.900538,0.0836886,0.510718,0.578585,0.487272,0.670389,0.665123,0.287666,0.0446891,0.728246,0.818833,0.146239,0.138224,0.116801,0.0383683,0.244897,0.259293,0.898185,0.423311,0.247703,0.92046,0.311222,0.333754,0.0331951,0.852078,0.093559,0.415725,0.409028,0.875886,0.863976,0.23861,0.928468,0.818276,0.724327,0.431279,0.214306,0.710868,0.799181,0.00694036,0.0355245,0.249263,0.230783,0.652353,0.583336,0.761286,0.389471,0.613631,0.910014,0.714185,0.698988,0.430173,0.224384,0.189257,0.284981,0.175839,0.775502,0.262227,0.330868,0.548348,0.814004,0.0218086,0.831374,0.226446,0.950316,0.37075,0.170075,0.745561,0.761829,0.962098,0.675777,0.77897,0.152977,0.70019,0.573556,0.0344128,0.495634,0.596697,0.260851,0.44971,0.77494,0.705503,0.522718,0.742906,0.00121361,0.0208634,0.972129,0.953455,0.958703,0.800377,0.62877,0.746751,0.771055,0.423098,0.865493,0.617401,0.463676,0.198297,0.411081,0.814686,0.665913,0.139375,0.351628,0.744002,0.862433,0.93432,0.0647503,0.640384,0.365677,0.0628448,0.653485,0.7771,0.145161,0.00236297,0.63939,0.874605,0.872875,0.944924,0.581105,0.00508523,0.880726,0.488729,0.712588,0.182483,0.081938,0.857317,0.609564,0.456657,0.499866,0.834666,0.072953,0.302483,0.73074,0.716083,0.482111,0.495795,0.357138,0.0988342,0.725786,0.722122,0.23505,0.648743,0.724945,0.905599,0.0362273,0.610279,0.717196,0.297208,0.84075,0.00330597,0.601956,0.668459,0.354385,0.742262,0.362823,0.543046,0.440853,0.883423,0.0173665,0.349305,0.228022,0.370688,0.561474,0.797029,0.911217,0.681521,0.424354,0.444911,0.608679,0.22597,0.971164,0.999969,0.0979748,0.623186,0.991196,0.090832,0.553825,0.814531,0.0670851,0.648211,0.871404,0.296308,0.594969,0.56346,0.619992,0.693926,0.327042,0.249672,0.251036,0.264166,0.687618,0.600071,0.115376,0.427087,0.132869,0.66608,0.551134,0.156008,0.450957,0.173738,0.296919,0.901376,0.133781,0.980418,0.9427,0.949879,0.294078,0.201679,0.285175,0.077619,0.875535,0.0740836,0.95007,0.331103,0.377353,0.135502,0.719536,0.096337,0.391979,0.910806,0.142057,0.242633,0.671596,0.0575136,0.982845,0.97825,0.297673,0.23658,0.843157,0.546512,0.239792,0.360998,0.749931,0.511138,0.143558,0.646686,0.357848,0.2181,0.165883,0.307474,0.369261,0.473677,0.675908,0.437302,0.869265,0.81859,0.648902,0.00012964,0.363496,0.57154,0.101425,0.858659,0.933962,0.096097,0.375419,0.378675,0.166487,0.0636353,0.00734162,0.739073,0.872154,0.839615,0.00492132,0.850257,0.655955,0.778514,0.226399,0.403712,0.986732,0.168687,0.694579,0.618579,0.199478,0.453246,0.290788,0.39095,0.920683,0.763881,0.455074,0.557024,0.696543,0.0937142,0.544881,0.758533,0.946862,0.0678527,0.587469,0.0105004,0.866022,0.952781,0.547951,0.892282,0.866362,0.123424,0.733091,0.46274,0.579718,0.166375,0.35615,0.18747,0.172637,0.131239,0.191357,0.775354,0.588907,0.0258515,0.094512,0.431439,0.429808,0.132368,0.325126,0.605885,0.114017,0.66411,0.760117,0.643138,0.496524,0.173072,0.191657,0.889568,0.453957,0.68194,0.064278,0.97005,0.833388,0.355627,0.396536,0.367066,0.0556779,0.576331,0.123113,0.347522,0.975044,0.363621,0.980567,0.684691,0.111146,0.892707,0.453816,0.932597,0.725278,0.772439,0.405453,0.370505,0.52632,0.929821,0.842735,0.788021,0.37367,0.400758,0.781493,0.417326,0.659083,0.0152236,|0.934119,0.297775,0.260832,0.684807,0.294356,0.970122,0.705418,0.719966,0.313416,0.493445,0.178589,0.799151,0.677357,0.99484,0.833831,0.428078,0.396266,0.357928,0.496574,0.0464064,0.738782,0.0612881,0.680426,0.977959,0.666768,0.0867452,0.661229,0.577852,0.125577,0.751235,0.580864,0.0609948,0.515397,0.451866,0.624567,0.283998,0.645188,0.998264,0.227406,0.496871,0.16499,0.552741,0.550538,0.264793,0.290764,0.012957,0.149806,0.305233,0.72755,0.133195,0.687026,0.721329,0.843505,0.295043,0.379797,6.00815e-05,0.833859,0.415573,0.0458131,0.300354,0.706939,0.179173,0.0298814,0.0604771,0.47062,0.932921,0.180001,0.331991,0.228671,0.674594,0.613958,0.319282,0.70928,0.26833,0.682612,0.679116,0.0365933,0.839946,0.283277,0.526117,0.0872307,0.958221,0.305926,0.536172,0.93806,0.626552,0.330047,0.489834,0.515816,0.127867,0.119901,0.144391,0.204796,0.485532,0.565894,0.0985476,0.813987,0.641122,0.709823,0.490504,0.332753,0.529875,0.341497,0.441492,0.512107,0.361472,0.0155899,0.937119,0.860469,0.792111,0.186472,0.993197,0.824097,0.15034,0.217781,0.404159,0.492076,0.529097,0.112564,0.504141,0.873401,0.206225,0.211312,0.324286,0.696123,0.202017,0.367994,0.0219483,0.587686,0.135294,0.0166861,0.480069,0.58649,0.0943049,0.0431022,0.321079,0.41513,0.0835936,0.773772,0.751142,0.358241,0.0912017,0.470718,0.374711,0.412699,0.7631,0.894799,0.228515,0.915697,0.689794,0.363808,0.478719,0.994289,0.421757,0.987929,0.707243,0.369329,0.302977,0.0951314,0.753189,0.951119,0.710122,0.459236,0.509634,0.796762,0.511413,0.102171,0.56362,0.658482,0.661825,0.428545,0.613428,0.0188218,0.0574892,0.106911,0.972996,0.2169,0.686993,0.755161,0.715118,0.757964,0.714288,0.901258,0.158646,0.0873368,0.689057,0.617849,0.633313,0.898184,0.448776,0.443627,0.994956,0.518956,0.312943,0.556325,0.614843,0.398002,0.135203,0.458354,0.196914,0.825801,0.491403,0.799705,0.480113,0.133341,0.0275978,0.355105,0.671382,0.504685,0.128095,0.396465,0.734748,0.791523,0.099987,0.982182,0.795089,0.950408,0.959558,0.271494,0.0245655,0.429646,0.748887,0.588454,0.0132136,0.467145,0.171478,0.340453,0.683209,0.399411,0.141776,0.623702,0.537327,0.440489,0.512963,0.48039,0.297259,0.502635,0.898021,0.535224,0.931046,0.516414,0.548949,0.891902,0.211295,0.60351,0.0193439,0.805913,0.944879,0.0258701,0.760209,0.00525689,0.122343,0.945142,0.00526112,0.612781,0.273293,0.0113136,0.789954,0.863033,0.504848,0.681281,0.0207544,0.422619,0.647938,0.269754,0.920575,0.635579,0.232733,0.731552,0.544414,0.526793,0.970668,0.339381,0.541916,0.24787,0.698801,0.133974,0.574447,0.863501,0.404294,0.451156,0.809783,0.55361,0.452571,0.372511,0.421609,0.0267119,0.0538962,0.874849,0.606002,0.650747,0.286253,0.127167,0.229614,0.227461,0.23754,0.573275,0.531987,0.502075,0.551896,0.363766,0.913974,0.0218028,0.411364,0.532521,0.97921,0.387754,0.366448,0.593972,0.960646,0.70332,0.219979,0.215074,0.435012,0.0163429,0.848001,0.397985,0.427375,0.0932947,0.435064,0.0614284,0.259505,0.6613,0.00548649,0.65348,0.140163,0.874412,0.156573,0.322449,0.343314,0.87948,0.233791,0.098411,0.781125,0.625936,0.143725,0.351546,0.374339,0.0260305,0.376476,0.423435,0.154634,0.918938,0.345825,0.875407,0.851577,0.237758,0.923571,0.760244,0.79244,0.27487,0.972735,0.1205,0.151015,0.926517,0.678753,0.791298,0.642688,0.830427,0.735787,0.0757412,0.17626,0.833628,0.789071,0.413159,0.14179,0.598099,0.809346,0.43239,0.850261,0.244179,0.185549,0.479828,0.553588,0.918813,0.452876,0.300299,0.989765,0.536542,0.757012,0.821589,0.223625,0.802127,0.353071,0.334643,0.510771,0.668276,0.104165,0.773572,0.606722,0.345786,0.764279,0.808757,0.787766,0.688608,0.475115,0.0525136,0.425513,0.239844,0.0602449,0.300738,0.536786,0.0330964,0.822905,0.945927,0.443076,0.754833,0.395583,0.170283,0.0547739,0.383965,0.330404,0.417976,0.510356,0.378116,0.073086,0.65965,0.425826,0.319202,0.261342,0.276345,0.268547,0.371219,0.772072,0.358165,0.622015,0.480829,0.192893,0.0390288,0.566249,0.460496,0.0669923,0.891006,0.481136,0.484859,0.316613,0.250851,0.834221,0.445123,0.0813709,0.965128,0.908892,0.530989,0.878263,0.146307,0.583832,0.00924516,0.655733,0.332947,0.505855,0.965682,0.852247,0.886456,0.35363,0.778314,0.941586,0.212717,0.605142,0.858442,0.807391,0.209054,0.804828,0.469012,0.933317,0.646389,0.460949,0.678328,0.854044,0.231747,0.668164,0.416773,0.370487,0.446979,0.618616,0.519661,0.66159,0.952859,0.373741,0.666691,0.191686,0.500462,0.0970319,0.0715153,0.966469,0.587446,0.898622,0.568543,0.581995,0.594079,0.802601,0.355334,0.290806,0.470096,0.489894,0.814848,0.378424,0.812136,0.43155,0.255995,0.861699,0.188452,0.442398,0.930696,0.015835,0.129899,0.797839,0.804843,0.69857,0.483837,0.618959,0.532594,0.208466,0.944592,0.43964,0.76236,0.88226,0.717234,0.271827,0.800668,0.0570047,0.440177,0.373373,0.0861605,0.351211,0.918221,0.619833,0.141507,0.630891,0.176068,0.785266,0.586229,0.697848,0.392037,0.867693,0.202265,0.334251,0.0130481,0.101642,0.787181,0.116324,0.804725,0.525941,0.949015,0.45445,0.252605,0.475046,0.977017,0.969739,0.813364,0.175145,0.402635,0.522086,0.79405,0.636729,0.828315,0.0473569,0.20289,0.0118158,0.987711,0.895298,0.68506,0.842855,0.534088,0.821873,0.0718122,0.378245,0.186323,0.8001,0.359853,0.777249,0.644381,0.770591,0.456807,0.565383,0.416148,0.467973,0.91281,0.884322,0.0308446,0.817024,0.677182,0.192071,0.692593,0.476561,0.613734,0.991806,0.326151,0.200911,0.116483,0.899614,0.139796,0.581626,0.807603,0.0712539,0.562158,0.311073,0.186,0.529413,0.310703,0.686126,0.591137,0.368827,0.479751,0.263193,0.370137,0.515164,0.504873,0.636313,0.290832,0.978576,0.725057,0.449205,0.168936,0.68706,0.399134,0.32565,0.399904,0.801609,0.194486,0.772777,0.856299,0.393317,0.0381499,0.182496,0.328111,0.498681,0.0822362,0.677435,0.119378,0.78171,0.512949,0.658748,0.143754,0.73878,0.962744,0.493936,0.960366,0.863926,0.455262,0.357124,0.37941,0.453901,0.0838204,0.0328052,0.501189,0.654474,0.778822,0.109412,0.709107,0.0820953,0.333044,0.656776,0.17221,0.0540165,0.208115,0.838986,0.800146,0.0832966,0.0167493,0.963744,0.701059,0.865278,0.322931,0.662304,0.761674,0.0320544,0.483725,0.394894,0.595334,0.986044,0.646556,0.871478,0.699725,0.67948,0.374845,0.925507,0.869115,0.637946,0.976547,0.65176,0.209937,0.177177,0.61764,0.668171,0.402625,0.142836,0.748112,0.813449,0.707179,0.235035,0.143725,0.316507,0.275935,0.6889,0.313493,0.354499,0.829868,0.325381,0.947712,0.865748,0.400119,0.474255,0.133539,0.256071,0.0847343,0.970229,0.788908,0.86227,0.900792,0.32644,0.963652,0.360814,0.943447,0.327985,0.812587,0.532681,0.112367,0.417053,0.435966,0.674632,0.637691,0.233982,0.443279,0.983195,0.51298,0.268826,0.653065,0.990821,0.974487,0.179719,0.595254,0.494307,0.80178,0.580777,0.0798525,0.803376,0.068152,0.867318,0.978175,0.285083,0.563338,0.619729,0.505027,0.606152,0.112483,0.719117,0.980711,0.0950577,0.529108,0.766526,0.0322703,0.752023,0.0144951,0.767377,0.271003,0.0981703,0.786787,0.74507,0.836207,0.870071,0.924196,0.303313,0.486802,0.772594,0.938699,0.00968397,0.566103,0.352662,0.0181238,0.684314,0.238404,0.617407,0.838992,0.239197,0.399575,0.599659,0.6815,0.220576,0.786481,0.0281493,0.724698,0.581265,0.490558,0.454654,0.793075,0.618095,0.592599,0.0258557,0.365762,0.503243,0.369324,0.309153,0.962238,0.0102516,0.698478,0.930341,0.138414,0.1985,0.669546,0.888469,0.491217,0.0933852,0.380647,0.0692816,0.225158,0.317864,0.371749,0.571689,0.594281,0.646165,0.148637,0.72601,0.577865,0.143695,0.158978,0.99076,0.0357706,0.992864,0.626979,0.523868,0.599068,0.58977,0.976359,0.428186,0.553725,0.552549,0.222991,0.499822,0.611631,0.572992,0.196782,0.798639,0.866587,0.468007,0.0877979,0.311448,0.866712,0.901455,0.274061,0.467708,0.31873,0.215519,0.456077,0.0255758,0.631343,0.826821,0.273377,0.770916,0.96627,0.837043,0.0241658,0.90471,0.760519,0.719105,0.15986,0.367577,0.837211,0.0199638,0.702307,0.630983,0.792239,0.892979,0.895,0.153686,0.87659,0.705572,0.621398,0.745331,0.290088,0.295126,0.920832,0.593111,0.310454,0.974563,0.673715,0.24382,0.46942,0.80532,0.782407,0.869451,0.992093,0.825921,0.0320604,0.797946,0.241481,0.502883,0.525258,0.633441,0.870738,0.12532,0.0943791,0.72014,0.850224,0.583854,0.290829,0.526063,0.924747,0.217908,0.367955,0.741248,0.450458,0.0963936,0.581367,0.0312283,0.361134,0.601995,0.481467,0.228213,0.906638,0.0817974,0.275878,0.832972,0.519568,0.809229,0.492191,0.176302,0.30872,0.886206,0.117931,0.37476,0.873809,0.398013,0.926615,0.926201,0.251374,0.154151,0.476366,0.944545,0.131016,0.0288804,0.124457,0.830733,0.324795,0.608547,0.545202,0.724174,0.367482,0.311038,0.828482,0.479669,0.496398,0.802466,0.180095,0.783078,0.660193,0.652588,0.593651,0.259381,0.497563,0.207814,0.171994,0.565653,0.388193,0.265497,0.110612,0.89215,0.752599,0.0168597,0.83073,0.105466,0.726837,0.606154,0.101893,0.271652,0.131931,0.806117,0.330395,0.0347565,0.0840302,0.634364,0.320939,0.631358,0.479326,0.127342,0.710018,0.64867,0.351077,0.155736,0.739403,0.659115,0.806682,0.792697,0.992263,0.746131,0.0364928,0.798523,0.652333,0.739478,0.906412,0.646891,0.440815,0.670212,0.863485,0.795474,0.262563,0.889756,0.899425,0.300998,0.981787,0.655922,|0.67063,0.737423,0.578118,0.975978,0.546666,0.971574,0.792177,0.593268,0.475607,0.387381,0.139872,0.821899,0.411812,0.0796691,0.550179,0.375617,0.233532,0.924857,0.706484,0.693637,0.753135,0.580595,0.227319,0.789716,0.843118,0.894432,0.70528,0.0558053,0.956863,0.659295,0.403404,0.598168,0.693549,0.812153,0.0803509,0.171779,0.601356,0.296879,0.816838,0.69777,0.296779,0.0512983,0.374408,0.933617,0.946401,0.361075,0.135037,0.518467,0.642031,0.871906,0.31149,0.422092,0.189041,0.454289,0.258348,0.819509,0.451515,0.508508,0.437825,0.786288,0.564183,0.685808,0.905418,0.0571945,0.457248,0.585487,0.351006,0.0922257,0.602407,0.0738533,0.366058,0.444142,0.958456,0.0379913,0.0118187,0.652672,0.950805,0.478317,0.938698,0.628316,0.947699,0.480507,0.0474196,0.939534,0.546093,0.764082,0.923961,0.61885,0.557442,0.937687,0.571085,0.993246,0.537717,0.23627,0.589784,0.650795,0.264817,0.880112,0.670405,0.973405,0.872073,0.833774,0.612438,0.566806,0.724647,0.621434,0.99313,0.859115,0.407388,0.188861,0.794031,0.156916,0.720998,0.922892,0.923131,0.229367,0.203196,0.517823,0.47494,0.580932,0.254465,0.905316,0.442029,0.550259,0.865322,0.845632,0.547688,0.164755,0.340317,0.776898,0.525118,0.680114,0.454255,0.376807,0.081138,0.123798,0.208118,0.604543,0.286049,0.961949,0.638496,0.25067,0.199167,0.214491,0.0890503,0.173311,0.155377,0.620289,0.952502,0.867008,0.811384,0.846177,0.832143,0.0593554,0.0171102,0.042743,0.723182,0.366183,0.400129,0.813802,0.994148,0.567995,0.837484,0.837416,0.910586,0.165343,0.922786,0.786649,0.786571,0.496497,0.574713,0.658012,0.406521,0.196441,0.298828,0.302787,0.018326,0.535232,0.426757,0.486181,0.490405,0.573965,0.390885,0.277131,0.189427,0.0843646,0.898352,0.412918,0.808182,0.687647,0.994266,0.000230432,0.451124,0.717698,0.627669,0.17135,0.0829368,0.264185,0.152076,0.742979,0.730695,0.454717,0.604768,0.46619,0.417207,0.417147,0.305893,0.520851,0.847969,0.731055,0.880192,0.438017,0.00923949,0.996622,0.45371,0.613041,0.137344,0.243934,0.606692,0.450366,0.987399,0.409045,0.203039,0.847719,0.406051,0.0492377,0.128682,0.957275,0.712692,0.10241,0.941837,0.658754,0.0700445,0.987647,0.0431857,0.0734496,0.157089,0.991193,0.715494,0.283374,0.235194,0.77721,0.670804,0.0380113,0.249965,0.292413,0.930213,0.570456,0.975829,0.116789,0.287077,0.353996,0.519926,0.72115,0.00332969,0.0643784,0.906025,0.615151,0.813099,0.877999,0.57537,0.888629,0.241606,0.710535,0.553054,0.949227,0.153764,0.175185,0.0220526,0.349458,0.683422,0.887309,0.590937,0.938055,0.656376,0.496657,0.315938,0.400951,0.92527,0.00401843,0.771291,0.131163,0.308879,0.976312,0.174186,0.759357,0.247971,0.760867,0.205593,0.571718,0.481487,0.872869,0.264006,0.160882,0.0255883,0.349844,0.906787,0.0267424,0.272572,0.906879,0.445859,0.32197,0.905656,0.775048,0.72082,0.383177,0.838053,0.0168438,0.826647,0.0929461,0.339371,0.744818,0.091562,0.828666,0.198277,0.0450422,0.96147,0.730667,0.385535,0.0724968,0.428355,0.873869,0.228832,0.1372,0.921405,0.964882,0.270788,0.920116,0.727696,0.0272588,0.863715,0.955816,0.706296,0.619051,0.800272,0.430159,0.670861,0.76738,0.0829986,0.72111,0.815619,0.388923,0.642737,0.307194,0.333021,0.9207,0.69993,0.572588,0.628631,0.718694,0.285699,0.100296,0.982842,0.581147,0.734454,0.857017,0.547452,0.972185,0.515934,0.375936,0.111867,0.756286,0.946023,0.392177,0.717778,0.0586538,0.258962,0.396457,0.471658,0.693052,0.985631,0.235004,0.492511,0.601221,0.263182,0.734637,0.393331,0.776934,0.708171,0.633324,0.269863,0.578099,0.0420508,0.885717,0.0816085,0.636829,0.548805,0.266453,0.459809,0.121177,0.909503,0.147534,0.0367886,0.88549,0.790936,0.553612,0.38105,0.267179,0.00147635,0.669786,0.787531,0.660302,0.630759,0.255122,0.223706,0.878893,0.0305365,0.0640351,0.930299,0.111726,0.828031,0.782386,0.803684,0.35567,0.394094,0.077691,0.0156505,0.597711,0.761325,0.443595,0.518882,0.865117,0.0495998,0.345486,0.228604,0.179505,0.323602,0.975755,0.198342,0.529978,0.849484,0.0735154,0.516747,0.223688,0.60274,0.218193,0.379274,0.880416,0.801384,0.569031,0.238125,0.134564,0.259715,0.710161,0.829257,0.873778,0.821663,0.300836,0.508078,0.420218,0.00638193,0.259013,0.876422,0.620449,0.0583621,0.594037,0.928904,0.323673,0.284437,0.130528,0.708164,0.740097,0.0391946,0.729666,0.286503,0.684331,0.922498,0.383995,0.110431,0.14824,0.914139,0.0283286,0.766853,0.604768,0.145091,0.188246,0.574361,0.302568,0.772434,0.89117,0.632773,0.493495,0.75112,0.700186,0.491177,0.653343,0.964342,0.0214877,0.71305,0.630625,0.884361,0.763226,0.0174763,0.0337952,0.855581,0.104414,0.388418,0.669934,0.587877,0.884716,0.138933,0.536029,0.437751,0.177247,0.884168,0.345853,0.553854,0.624463,0.144867,0.743776,0.320945,0.0244049,0.610494,0.611477,0.251336,0.514119,0.988204,0.64937,0.219796,0.163269,0.550608,0.653832,0.252082,0.578251,0.0489467,0.450918,0.620557,0.182794,0.811764,0.271937,0.280119,0.247221,0.178369,0.650335,0.963208,0.717064,0.684064,0.841736,0.689429,0.933749,0.170376,0.819798,0.32972,0.879488,0.54355,0.798358,0.957706,0.503971,0.584259,0.675316,0.147481,0.796817,0.553868,0.499517,0.252899,0.106068,0.177791,0.414364,0.115967,0.230558,0.675965,0.219843,0.562505,0.224111,0.160281,0.242986,0.648957,0.924282,0.630036,0.0798223,0.259975,0.479347,0.926561,0.767946,0.299363,0.170553,0.726806,0.778149,0.370441,0.366377,0.648344,0.948324,0.900218,0.314011,0.962512,0.92577,0.683437,0.06714,0.406577,0.359982,0.360865,0.781419,0.828996,0.836698,0.628352,0.832879,0.556007,0.900607,0.595508,0.232286,0.900422,0.217613,0.707904,0.396163,0.282424,0.998521,0.213078,0.355343,0.825306,0.594163,0.0990412,0.558791,0.88503,0.762251,0.252129,0.817058,0.322856,0.72388,0.575984,0.150589,0.182191,0.814487,0.648009,0.0773193,0.119329,0.975383,0.0793909,0.707587,0.121412,0.385608,0.558801,0.245807,0.193787,0.582494,0.964667,0.874029,0.0456973,0.758536,0.237594,0.375606,0.880109,0.866968,0.333497,0.796241,0.901627,0.235801,0.839096,0.934102,0.931578,0.913105,0.434285,0.252719,0.45833,0.322174,0.354477,0.802982,0.270595,0.366365,0.751366,0.436058,0.438818,0.868777,0.852104,0.419651,0.907653,0.961149,0.152097,0.0672256,0.630072,0.030412,0.341937,0.837413,0.532452,0.859973,0.469735,0.207983,0.155461,0.042173,0.101224,0.912479,0.734253,0.970759,0.373026,0.440728,0.420261,0.750574,0.332433,0.769046,0.815036,0.764072,0.954561,0.486358,0.548145,0.654252,0.106597,0.764427,0.991216,0.372738,0.825249,0.330791,0.435689,0.647717,0.986088,0.100066,0.925628,0.561038,0.270321,0.150283,0.0055244,0.485438,0.709889,0.984434,0.685371,0.512337,0.589747,0.386017,0.772109,0.774834,0.258102,0.208002,0.0892946,0.380754,0.711158,0.698958,0.531898,0.157076,0.91777,0.459122,0.334972,0.445559,0.263171,0.796627,0.491955,0.932649,0.992907,0.0388584,0.589929,0.557269,0.400594,0.933798,0.165176,0.230108,0.595521,0.167649,0.801238,0.465852,0.592667,0.422745,0.812983,0.956048,0.307249,0.715399,0.647317,0.882822,0.471429,0.320199,0.310674,0.21287,0.687021,0.36996,0.194964,0.860852,0.65252,0.932021,0.0539585,0.914062,0.975663,0.0878444,0.128022,0.665846,0.187123,0.544336,0.122861,0.36304,0.48502,0.326295,0.669492,0.0339265,0.233147,0.0235318,0.802628,0.358963,0.307377,0.764701,0.142777,0.523302,0.486276,0.929174,0.769055,0.639671,0.965071,0.017658,0.0201148,0.25447,0.967126,0.138679,0.272749,0.225142,0.941085,0.127749,0.0688062,0.861232,0.656808,0.215489,0.764925,0.296558,0.399572,0.223936,0.714324,0.959717,0.405456,0.631038,0.386591,0.358822,0.363812,0.0145327,0.0425134,0.542362,0.00709021,0.953962,0.297405,0.801557,0.979713,0.723404,0.570984,0.125263,0.662558,0.848938,0.282838,0.247151,0.684485,0.173292,0.87429,0.303642,0.188947,0.817854,0.162486,0.652313,0.882413,0.295386,0.905748,0.827344,0.669082,0.374144,0.842385,0.223577,0.697016,0.528333,0.127453,0.392742,0.925223,0.515577,0.16106,0.232312,0.962847,0.520134,0.776512,0.0845437,0.690161,0.114007,0.814133,0.835368,0.889137,0.107085,0.657495,0.136185,0.908466,0.770531,0.586888,0.956397,0.264911,0.16072,0.125419,0.0174881,0.14485,0.527938,0.658109,0.615278,0.0705456,0.116262,0.4696,0.574722,0.79829,0.281119,0.356441,0.417437,0.871326,0.398623,0.628677,0.0516378,0.318574,0.310669,0.56671,0.457481,0.557798,0.80664,0.54245,0.194498,0.363029,0.932263,0.462354,0.749148,0.336171,0.478255,0.581417,0.704539,0.579883,0.583368,0.521125,0.0517079,0.106892,0.728018,0.354882,0.805848,0.290846,0.24215,0.0875077,0.751168,0.630421,0.0707012,0.816446,0.0721081,0.977301,0.852279,0.476989,0.485986,0.680271,0.773441,0.328768,0.869405,0.0170816,0.0536751,0.0985678,0.30061,0.378148,0.374557,0.56035,0.584561,0.892286,0.685926,0.353929,0.483371,0.640788,0.756584,0.0703502,0.962326,0.717311,0.589467,0.570939,0.548392,0.67622,0.616073,0.36591,0.252487,0.88817,0.162786,0.770012,0.791657,0.878542,0.612149,0.127832,0.504626,0.312045,0.699878,0.234009,0.321103,0.418879,0.309328,0.72782,0.252344,0.605656,0.98796,0.201121,0.208775,0.0639806,0.763928,0.976365,0.334478,0.534643,0.78146,0.695003,0.903646,0.885134,0.214568,0.276994,0.416511,0.0557261,0.615575,0.563338,0.073817,0.279117,0.559846,0.417521,0.911874,0.144923,0.227609,0.678846,0.668111,0.642722,0.732579,|0.234776,0.344685,0.772553,0.0688071,0.182434,0.565193,0.959066,0.921361,0.65058,0.532932,0.847288,0.342278,0.946927,0.165484,0.625594,0.856855,0.953941,0.310749,0.0371341,0.668045,0.607605,0.435335,0.371591,0.909576,0.993704,0.677755,0.890792,0.145518,0.175331,0.234524,0.172622,0.789122,0.813742,0.751764,0.919791,0.900268,0.190995,0.559754,0.0973898,0.122069,0.100289,0.804072,0.417692,0.942163,0.293289,0.222989,0.090404,0.619058,0.618776,0.252405,0.841096,0.758144,0.534226,0.186279,0.645995,0.102922,0.315012,0.37991,0.550356,0.618561,0.103731,0.302775,0.225122,0.207907,0.358721,0.085937,0.00837505,0.618345,0.592616,0.797064,0.645491,0.0497814,0.745541,0.698894,0.319457,0.607225,0.337871,0.0985165,0.993842,0.910338,0.302419,0.420959,0.424132,0.684728,0.910878,0.590954,0.605241,0.0433877,0.0668831,0.94324,0.112736,0.434479,0.647017,0.127882,0.839951,0.425233,0.176635,0.973005,0.805508,0.261137,0.474477,0.245533,0.266983,0.311224,0.120334,0.338353,0.459008,0.78189,0.839298,0.785266,0.525172,0.118577,0.312429,0.425843,0.0647335,0.0615701,0.827368,0.771198,0.950217,0.287254,0.112254,0.328299,0.221326,0.611814,0.891273,0.664409,0.886669,0.178638,0.0473974,0.122498,0.833931,0.907439,0.0151309,0.968656,0.3505,0.946781,0.621179,0.231007,0.101922,0.89351,0.864483,0.286952,0.629099,0.508265,0.422345,0.649616,0.69555,0.918326,0.828269,0.929883,0.0247433,0.322231,0.114827,0.164117,0.911606,0.662516,0.176654,0.418285,0.620757,0.512624,0.662305,0.976716,0.901659,0.246938,0.144234,0.421157,0.739152,0.578022,0.379107,0.246826,0.596686,0.238114,0.953407,0.300027,0.812791,0.342407,0.0173746,0.402883,0.764988,0.0330294,0.206014,0.590974,0.0993176,0.117076,0.628911,0.980615,0.408973,0.8968,0.707589,0.078245,0.768242,0.960903,0.268488,0.812932,0.735523,0.0716861,0.229965,0.767235,0.481201,0.919592,0.221905,0.507547,0.475999,0.0308057,0.327162,0.887063,0.689916,0.670055,0.382831,0.392963,0.49496,0.902117,0.211,0.700133,0.907791,0.917517,0.301768,0.213655,0.235403,0.488935,0.203831,0.59666,0.978071,0.0267896,0.711934,0.405613,0.541729,0.139738,0.309973,0.474213,0.282725,0.982568,0.797201,0.378659,0.492749,0.217131,0.946809,0.968763,0.882001,0.879871,0.315577,0.478822,0.00142401,0.14998,0.912378,0.968371,0.195556,0.873005,0.775582,0.738792,0.606022,0.455656,0.201274,0.325744,0.243291,0.475227,0.390364,0.824779,0.53309,0.312705,0.602426,0.387424,0.944241,0.666643,0.711923,0.499308,0.191014,0.561028,0.0777135,0.885466,0.893369,0.632142,0.432085,0.412657,0.0259989,0.631129,0.505781,0.310283,0.716942,0.247764,0.30072,0.85083,0.242095,0.158092,0.432593,0.0970694,0.831908,0.857181,0.970158,0.406757,0.365686,0.886862,0.232816,0.0221347,0.215904,0.939623,0.627838,0.372847,0.984461,0.451877,0.685507,0.576264,0.0257343,0.0664041,0.148789,0.723709,0.692834,0.993296,0.909442,0.766557,0.798187,0.262313,0.420423,0.751192,0.750424,0.178316,0.130294,0.317556,0.785976,0.0930959,0.992318,0.170661,0.462539,0.617411,0.755701,0.293874,0.816689,0.623642,0.168286,0.418151,0.638984,0.837412,0.248252,0.618727,0.507223,0.429623,0.0543924,0.29459,0.517528,0.453049,0.773318,0.160088,0.699391,0.95226,0.923464,0.624525,0.531467,0.172855,0.414545,0.210773,0.547649,0.923147,0.925407,0.186295,0.984597,0.152119,0.973367,0.0671837,0.562595,0.135198,0.142499,0.74803,0.187957,0.292554,0.520572,0.615614,0.059463,0.463453,0.130308,0.781203,0.633285,0.0972074,0.423707,0.672072,0.758508,0.763519,0.50236,0.869802,0.393879,0.940432,0.315519,0.928692,0.780697,0.162886,0.848701,0.416819,0.448087,0.982157,0.782366,0.304772,0.558222,0.354928,0.145047,0.72771,0.899202,0.270153,0.359785,0.671649,0.113681,0.291899,0.558078,0.39795,0.720969,0.444724,0.151704,0.187076,0.294525,0.314234,0.0612602,0.982397,0.981677,0.939101,0.478006,0.443786,0.878531,0.630624,0.225529,0.826099,0.473182,0.892807,0.090431,0.533396,0.332779,0.583332,0.980134,0.61538,0.105716,0.556145,0.208026,0.845303,0.901037,0.0773318,0.119417,0.586533,0.493088,0.111679,0.321783,0.272842,0.449867,0.367195,0.549946,0.724945,0.496194,0.56054,0.0740655,0.186373,0.0164044,0.223134,0.188943,0.582155,0.976741,0.865395,0.0527932,0.593571,0.669005,0.136562,0.909715,0.90143,0.040882,0.269058,0.834918,0.0191503,0.864348,0.27602,0.837626,0.577015,0.73444,0.990386,0.846484,0.622367,0.944417,0.910626,0.495422,0.0584579,0.734473,0.379781,0.632279,0.670593,0.559176,0.844624,0.178773,0.00154805,0.070554,0.301386,0.531488,0.534457,0.263112,0.100909,0.979943,0.269509,0.746922,0.471548,0.511632,0.351162,0.816872,0.649612,0.627811,0.199448,0.365939,0.437892,0.321436,0.993616,0.610396,0.8365,0.892814,0.397708,0.374441,0.177177,0.424799,0.797479,0.152561,0.613614,0.396551,0.73453,0.818687,0.788404,0.0470382,0.788452,0.698565,0.673704,0.109529,0.641902,0.671742,0.418554,0.156749,0.714141,0.417164,0.0870153,0.427749,0.763436,0.0652893,0.373546,0.871755,0.997222,0.844307,0.855025,0.714203,0.715099,0.0559283,0.00341576,0.128127,0.979781,0.671124,0.511414,0.872269,0.17317,0.75842,0.897853,0.481333,0.780734,0.312725,0.629382,0.714742,0.190136,0.575929,0.156421,0.871173,0.298736,0.116484,0.420727,0.409814,0.940036,0.205204,0.345639,0.0663503,0.163474,0.77264,0.575762,0.789345,0.244765,0.880034,0.988281,0.836916,0.48617,0.525165,0.0505124,0.101888,0.360502,0.819435,0.966653,0.25399,0.839933,0.657994,0.758426,0.292947,0.587572,0.08651,0.148709,0.48158,0.067301,0.620827,0.475954,0.806857,0.32777,0.662208,0.54368,0.443032,0.278872,0.382588,0.767106,0.352087,0.772061,0.717417,0.298668,0.822015,0.778835,0.254626,0.823046,0.751221,0.617304,0.257306,0.914934,0.720529,0.457492,0.134383,0.819595,0.269068,0.691444,0.865485,0.455907,0.572751,0.926428,0.120858,0.598509,0.8287,0.853958,0.478922,0.672214,0.627086,0.856858,0.205949,0.478233,0.576672,0.271508,0.936566,0.0505091,0.595747,0.0292644,0.306758,0.269048,0.632933,0.456528,0.751161,0.803069,0.0825308,0.779608,0.916384,0.461222,0.725176,0.24297,0.900283,0.0150441,0.602085,0.732327,0.176628,0.502581,0.342189,0.405971,0.181467,0.256921,0.0333899,0.168279,0.639778,0.179676,0.204469,0.83229,0.224596,0.790162,0.603105,0.6764,0.573057,0.958973,0.163128,0.275729,0.462189,0.302399,0.40444,0.183339,0.00760084,0.766136,0.896657,0.653445,0.433446,0.0585977,0.913172,0.283774,0.84614,0.813462,0.66204,0.598533,0.977345,0.785212,0.369554,0.682886,0.04071,0.759351,0.125566,0.120896,0.541155,0.0810142,0.419791,0.219565,0.131255,0.947591,0.423606,0.0701594,0.447809,0.106021,0.628085,0.628586,0.624209,0.537151,0.708434,0.632707,0.658132,0.432049,0.907999,0.983908,0.993862,0.748834,0.874417,0.158502,0.338059,0.433925,0.198983,0.558636,0.545936,0.487518,0.965669,0.554175,0.843807,0.711035,0.425572,0.540023,0.616283,0.425557,0.236932,0.524261,0.0167098,0.330249,0.168358,0.441088,0.864203,0.664153,0.0398821,0.892028,0.53743,0.565373,0.185269,0.619389,0.337035,0.995958,0.605553,0.155333,0.18467,0.518386,0.808515,0.017577,0.246286,0.696702,0.743782,0.0186055,0.431698,0.609452,0.442552,0.874142,0.233375,0.296419,0.618363,0.259049,0.684479,0.657402,0.0834054,0.61508,0.0244306,0.778674,0.86129,0.778351,0.535309,0.551331,0.485319,0.525687,0.0632109,0.426573,0.206802,0.371303,0.454956,0.172816,0.282309,0.528396,0.788659,0.909469,0.905557,0.456351,0.283895,0.286425,0.462838,0.587952,0.480137,0.319906,0.16868,0.300885,0.991946,0.31862,0.89212,0.586256,0.80278,0.0200112,0.985707,0.591724,0.869764,0.108291,0.66592,0.0858453,0.630366,0.416251,0.0106422,0.0365126,0.333074,0.487953,0.386218,0.190728,0.942143,0.912838,0.355079,0.874343,0.687952,0.473154,0.00985384,0.76112,0.493656,0.154672,0.372195,0.94916,0.87766,0.384934,0.901111,0.0324029,0.125816,0.986282,0.722867,0.0513547,0.0451331,0.179228,0.54372,0.408824,0.574692,0.716284,0.752619,0.967922,0.154773,0.314336,0.142998,0.0390227,0.833137,0.822808,0.0193685,0.0544899,0.198177,0.297329,0.864156,0.31212,0.247866,0.557781,0.369442,0.583742,0.26714,0.210239,0.108896,0.287806,0.605386,0.524548,0.413534,0.533772,0.538097,0.298488,0.749631,0.135931,0.524217,0.937244,0.493341,0.728774,0.156612,0.303963,0.328579,0.167864,0.341589,0.00146359,0.850708,0.0266708,0.544441,0.0180128,0.0497897,0.699605,0.905523,0.443348,0.804034,0.606697,0.0988321,0.881809,0.0857692,0.0434037,0.00071919,0.27257,0.598746,0.844277,0.796601,0.480791,0.656592,0.985028,0.721591,0.546471,0.216925,0.36093,0.960019,0.927453,0.847981,0.816321,0.0152147,0.683309,0.72585,0.497386,0.270604,0.580747,0.459916,0.934604,0.708257,0.22435,0.584701,0.500487,0.305891,0.643483,0.215519,0.937351,0.840294,0.872809,0.577745,0.677425,0.0457728,0.464934,0.786581,0.335812,0.608856,0.246012,0.224303,0.166735,0.921858,0.286881,0.774304,0.665079,0.387414,0.235494,0.321589,0.96163,0.87096,0.757474,0.479686,0.841965,0.245826,0.57206,0.966423,0.795671,0.778985,0.775908,0.138427,0.629492,0.645843,0.277436,0.0881491,0.869201,0.227267,0.00900334,0.568729,0.461418,0.652198,0.13386,0.0815057,0.451959,0.571199,0.326634,0.745675,0.650371,0.795463,0.930058,0.221602,0.138041,0.38653,0.954486,0.10912,0.564798,0.797785,0.987884,0.393195,0.681751,0.0242795,0.657255,0.985861,0.476048,0.326799,0.958459,|0.661234,0.441519,0.302521,0.329279,0.0712434,0.353179,0.237546,0.565689,0.778608,0.0889755,0.895894,0.383191,0.574642,0.666419,0.288777,0.034406,0.39725,0.330629,0.00154424,0.315122,0.559093,0.815956,0.021391,0.921999,0.178531,0.342831,0.892481,0.993935,0.15239,0.782393,0.897542,0.407269,0.634238,0.934355,0.592069,0.105574,0.332336,0.445881,0.447594,0.741578,0.936706,0.542888,0.0685661,0.819901,0.22483,0.526781,0.159867,0.579938,0.712369,0.435305,0.273983,0.0676016,0.0586568,0.36127,0.16735,0.105291,0.428538,0.968862,0.217262,0.00339264,0.293815,0.656391,0.581429,0.166573,0.609417,0.799161,0.46507,0.0901268,0.0617808,0.13297,0.731463,0.0994304,0.216751,0.967607,0.40711,0.518121,0.271869,0.917696,0.01788,0.0888417,0.206541,0.455004,0.780551,0.801941,0.819733,0.542665,0.47037,0.711879,0.488607,0.273347,0.574733,0.00177455,0.780596,0.954101,0.055297,0.262444,0.178401,0.483652,0.256849,0.123115,0.47958,0.141755,0.605167,0.0760538,0.619811,0.224107,0.849075,0.439382,0.933235,0.685909,0.0473735,0.129759,0.0439843,0.661363,0.779184,0.184896,0.0960679,0.438239,0.142729,0.0985327,0.812535,0.197824,0.930012,0.966316,0.196357,0.121976,0.104108,0.201275,0.772305,0.0811377,0.077343,0.135703,0.185522,0.316037,0.459556,0.911732,0.932892,0.768766,0.273733,0.846554,0.322953,0.26842,0.357029,0.555565,0.982805,0.0996057,0.430015,0.875982,0.530399,0.745777,0.620122,0.696667,0.0251251,0.74596,0.414381,0.552816,0.996047,0.348017,0.0912327,0.322194,0.749595,0.680289,0.579917,0.0765212,0.112198,0.167572,0.0916904,0.814573,0.336147,0.79509,0.918524,0.929204,0.622303,0.254083,0.911706,0.228898,0.601351,0.855892,0.186256,0.26696,0.829551,0.465582,0.415582,0.0604282,0.579847,0.537634,0.413004,0.92642,0.0232673,0.869344,0.975809,0.6868,0.300065,0.142095,0.106862,0.9712,0.0996561,0.699495,0.626929,0.863476,0.549702,0.0233654,0.523412,0.0217726,0.250228,0.780122,0.584853,0.590655,0.206917,0.0758328,0.07189,0.904227,0.0451917,0.0469617,0.474634,0.30116,0.502551,0.372463,0.736935,0.821458,0.766816,0.968506,0.708663,0.967872,0.25976,0.807355,0.060608,0.595955,0.493364,0.671658,0.0432511,0.846913,0.738067,0.228914,0.711034,0.290108,0.544016,0.276236,0.890632,0.784917,0.119337,0.968308,0.267389,0.00294966,0.516813,0.838256,0.605594,0.184246,0.132836,0.550427,0.23965,0.95737,0.0364133,0.350695,0.473006,0.747963,0.50473,0.601147,0.0703352,0.6148,0.318931,0.693297,0.625847,0.551449,0.924161,0.621934,0.153514,0.452376,0.0905137,0.697529,0.334157,0.635303,0.139178,0.0592844,0.558911,0.348891,0.88854,0.346922,0.0914887,0.174797,0.470727,0.980236,0.468383,0.62774,0.610401,0.752543,0.736393,0.361619,0.657719,0.521027,0.177736,0.0142881,0.209722,0.0873184,0.344601,0.598904,0.297972,0.94742,0.200327,0.854267,0.00159359,0.312976,0.701214,0.768442,0.109872,0.91639,0.417925,0.90771,0.379335,0.467849,0.658448,0.327059,0.785041,0.474413,0.203935,0.72719,0.676869,0.476324,0.974285,0.127105,0.125789,0.730359,0.919603,0.185588,0.853494,0.451778,0.157789,0.918087,0.807036,0.590202,0.696215,0.438898,0.0129803,0.944947,0.76918,0.391045,0.0846938,0.834231,0.415226,0.423426,0.602125,0.731841,0.084062,0.973051,0.579734,0.581544,0.904559,0.572773,0.404433,0.307469,0.442818,0.44084,0.366725,0.745242,0.644565,0.51091,0.726867,0.379521,0.0984674,0.983781,0.193967,0.510841,0.299265,0.957336,0.94818,0.170552,0.440703,0.763864,0.951774,0.367935,0.520467,0.99136,0.343077,0.228407,0.294195,0.0369843,0.433407,0.0964642,0.709335,0.795689,0.348433,0.334087,0.809181,0.143304,0.26451,0.568252,0.189534,0.170956,0.974485,0.405015,0.579618,0.784969,0.846118,0.753291,0.726507,0.88633,0.0839457,0.591352,0.161195,0.868451,0.767174,0.136123,0.0374005,0.51428,0.692809,0.775297,0.460279,0.127387,0.530713,0.690087,0.251062,0.63169,0.0640539,0.14484,0.686191,0.418924,0.217146,0.411239,0.73797,0.540255,0.548986,0.457828,0.147285,0.0225047,0.286458,0.950006,0.859806,0.0219929,0.115464,0.941386,0.374114,0.519789,0.31182,0.376771,0.530057,0.435618,0.0710201,0.223656,0.00830173,0.426491,0.928039,0.760121,0.146026,0.17414,0.476464,0.370692,0.330871,0.587224,0.304627,0.675821,0.15213,0.600924,0.0380859,0.704527,0.445524,0.94163,0.12212,0.606904,0.238522,0.532379,0.422023,0.849598,0.254559,0.194447,0.958396,0.74939,0.665041,0.0923789,0.0613071,0.765691,0.771307,0.6611,0.123462,0.708534,0.00813174,0.725115,0.528976,0.691618,0.513056,0.297033,0.6503,0.292106,0.573295,0.837759,0.88109,0.415839,0.376748,0.49275,0.924899,0.177681,0.988973,0.576805,0.548414,0.23077,0.779649,0.960409,0.308558,0.69741,0.217706,0.753733,0.498368,0.677628,0.3618,0.886568,0.877207,0.0503986,0.483749,0.474823,0.0263975,0.997229,0.290497,0.873173,0.381335,0.903044,0.295229,0.385241,0.52629,0.887854,0.598946,0.224023,0.59806,0.607057,0.883278,0.368717,0.864724,0.448993,0.603776,0.228533,0.843852,0.480274,0.0697306,0.78161,0.807045,0.000703573,0.182792,0.0651079,0.0446177,0.926044,0.307594,0.363773,0.0480813,0.0305153,0.589288,0.374368,0.77106,0.570213,0.546489,0.559097,0.614398,0.245365,0.632554,0.902968,0.177875,0.599917,0.735874,0.375521,0.164649,0.372821,0.00760674,0.806976,0.821044,0.176647,0.542428,0.876667,0.383395,0.616408,0.00399119,0.460078,0.487492,0.850672,0.435263,0.308974,0.591995,0.0280409,0.985073,0.212042,0.0592396,0.431144,0.281604,0.764852,0.449617,0.111067,0.367701,0.70301,0.685796,0.999303,0.637071,0.155927,0.284342,0.0890937,0.655368,0.48071,0.849427,0.880679,0.876186,0.489472,0.525778,0.266286,0.822234,0.894535,0.341477,0.0482658,0.538564,0.154964,0.984568,0.377325,0.359243,0.554007,0.890493,0.314915,0.169044,0.388286,0.122168,0.825019,0.125118,0.538721,0.362629,0.981531,0.49894,0.528377,0.623203,0.179425,0.679014,0.93727,0.162612,0.449597,0.604785,0.099893,0.850468,0.602499,0.723829,0.674864,0.748676,0.309832,0.870516,0.685529,0.664694,0.0285345,0.760767,0.318084,0.0100082,0.653458,0.125071,0.127459,0.45565,0.858831,0.349751,0.206179,0.523873,0.164906,0.289461,0.627116,0.987775,0.575509,0.279578,0.279383,0.975823,0.273422,0.00284517,0.027978,0.636519,0.391176,0.879039,0.409606,0.251294,0.520797,0.631844,0.273926,0.558192,0.776754,0.412903,0.337907,0.367673,0.17376,0.917093,0.41421,0.659373,0.0806094,0.353653,0.812835,0.393592,0.374459,0.225693,0.118468,0.040979,0.809422,0.522613,0.799639,0.0925256,0.0149853,0.583996,0.782013,0.922622,0.308397,0.120379,0.24348,0.231786,0.656824,0.0381231,0.940881,0.545742,0.226654,0.675478,0.154868,0.579448,0.147408,0.741621,0.670342,0.381519,0.815887,0.497523,0.0588666,0.448176,0.915616,0.752409,0.415804,0.560403,0.944725,0.0333523,0.665857,0.368909,0.734771,0.943479,0.0781179,0.295863,0.282059,0.679099,0.754374,0.537838,0.593742,0.66327,0.643521,0.574272,0.081726,0.795479,0.709125,0.967732,0.982727,0.773496,0.667975,0.0386106,0.89178,0.589628,0.468813,0.514957,0.612346,0.905302,0.728604,0.0751642,0.769456,0.154658,0.297586,0.938189,0.688131,0.156459,0.00841671,0.369684,0.575393,0.367375,0.0574355,0.857518,0.247269,0.207095,0.236703,0.36203,0.103993,0.167828,0.441717,0.53281,0.535963,0.407934,0.434725,0.854145,0.117325,0.16404,0.468196,0.511194,0.78995,0.675324,0.881831,0.709543,0.780487,0.780624,0.207173,0.282256,0.189393,0.908417,0.0389225,0.61251,0.568213,0.0639215,0.0538133,0.142537,0.30657,0.963825,0.124541,0.615881,0.470537,0.389681,0.394077,0.697847,0.456072,0.578029,0.0137306,0.772728,0.957582,0.0538535,0.0525773,0.636077,0.447356,0.859142,0.0979269,0.909471,0.0938168,0.980762,0.570566,0.79291,0.673763,0.658032,0.221445,0.80686,0.285558,0.959209,0.0408329,0.59204,0.664707,0.0615474,0.0375482,0.998448,0.453704,0.201123,0.4044,0.0679669,0.586204,0.660216,0.903483,0.790767,0.835436,0.965697,0.010258,0.901163,0.0474816,0.399977,0.430023,0.168233,0.717744,0.62304,0.479181,0.995518,0.968825,0.96626,0.424337,0.0884671,0.347579,0.0523837,0.0341302,0.793882,0.105048,0.0343626,0.184745,0.0643486,0.612481,0.668429,0.656608,0.497792,0.951928,0.685694,0.0582366,0.637475,0.165182,0.324902,0.143754,0.289322,0.112632,0.564675,0.363442,0.641994,0.661482,0.00681126,0.0881241,0.405173,0.769769,0.394118,0.0747777,0.0110641,0.965051,0.953878,0.985109,0.450009,0.519622,0.876965,0.316332,0.104122,0.0320951,0.52712,0.0997504,0.400902,0.854617,0.0875769,0.435998,0.291615,0.245725,0.00376683,0.929252,0.595057,0.996482,0.545396,0.759132,0.711604,0.686455,0.849999,0.631928,0.101943,0.177585,0.621939,0.791151,0.172612,0.998923,0.531815,0.110677,0.726203,0.901034,0.329227,0.0837362,0.179567,0.647146,0.389645,0.613313,0.700214,0.464882,0.11503,0.911827,0.500231,0.985301,0.510503,0.0542029,0.152025,0.808469,0.160165,0.253082,0.65347,0.994217,0.94407,0.536889,0.526038,0.703449,0.156659,0.801757,0.19083,0.156059,0.461467,0.101089,0.936241,0.210282,0.443286,0.675599,0.17912,0.814906,0.30194,0.445815,0.269456,0.943167,0.230961,0.40417,0.965481,0.53359,0.561689,0.893854,0.145644,0.75304,0.181237,0.0621112,0.513904,0.310559,0.497709,0.426233,0.231545,0.339079,0.967548,0.645103,0.905188,0.915112,0.419042,0.970554,0.00602418,0.152141,0.242836,0.275087,0.193803,0.959384,0.694215,0.560209,0.0981173,0.183149,0.391819,0.855978,0.635308,0.842259,0.40417,0.680603,|0.475686,0.270132,0.480592,0.735398,0.344927,0.205378,0.479158,0.161645,0.568647,0.815029,0.793829,0.689589,0.487178,0.752756,0.710585,0.797954,0.698755,0.454744,0.236713,0.156506,0.0584103,0.438233,0.942127,0.313668,0.917055,0.8132,0.340084,0.881846,0.699729,0.230147,0.815802,0.934458,0.597463,0.669376,0.0765529,0.560148,0.385993,0.0644173,0.937442,0.867687,0.885699,0.796671,0.95029,0.922361,0.452443,0.0577552,0.132086,0.763469,0.431443,0.00950271,0.182364,0.597871,0.256022,0.431974,0.304606,0.0642294,0.215144,0.0720031,0.98231,0.583815,0.61677,0.614699,0.181416,0.573332,0.166224,0.855021,0.0864326,0.349772,0.337734,0.759541,0.718085,0.111588,0.588591,0.61166,0.61532,0.988736,0.28573,0.707858,0.966029,0.184264,0.231216,0.435246,0.846428,0.0707262,0.576546,0.7183,0.451387,0.701554,0.83052,0.387522,0.363639,0.213726,0.649445,0.293068,0.852667,0.113734,0.951266,0.858257,0.921034,0.172841,0.00912857,0.0494813,0.892167,0.347649,0.651294,0.133435,0.838175,0.695159,0.71019,0.359403,0.661967,0.348359,0.574989,0.19457,0.919897,0.982678,0.683489,0.0671983,0.227015,0.712321,0.965414,0.865508,0.517967,0.828986,0.0652664,0.990478,0.438799,0.24439,0.88672,0.848183,0.721378,0.54179,0.699397,0.344474,0.173057,0.979145,0.316181,0.4085,0.174673,0.269029,0.542145,0.907026,0.0814346,0.0641626,0.554309,0.79973,0.109942,0.711268,0.471382,0.40893,0.469074,0.0625252,0.937973,0.54178,0.217652,0.411167,0.799594,0.875691,0.164828,0.65533,0.363229,0.637732,0.952802,0.890175,0.216934,0.974691,0.641651,0.972199,0.181893,0.613253,0.0700853,0.2653,0.430915,0.0298644,0.0383077,0.0209461,0.63776,0.354528,0.574493,0.204189,0.589158,0.0253291,0.806263,0.252949,0.433576,0.2101,0.954364,0.972385,0.610287,0.812621,0.82009,0.416347,0.616467,0.38901,0.892065,0.830316,0.934784,0.0223089,0.126074,0.539292,0.504865,0.306318,0.0100697,0.666984,0.694177,0.228919,0.789311,0.203082,0.703582,0.999813,0.946803,0.981801,0.511943,0.956233,0.127403,0.587748,0.815952,0.0738397,0.168391,0.519009,0.716539,0.0241474,0.538663,0.092548,0.442704,0.113562,0.615501,0.300561,0.255099,0.0145915,0.688904,0.46363,0.760661,0.920642,0.834499,0.720223,0.575738,0.750585,0.651119,0.428001,0.0510867,0.819673,0.963315,0.205708,0.641905,0.316457,0.56759,0.660745,0.218426,0.035601,0.705789,0.0837153,0.748556,0.965059,0.648828,0.997325,0.450437,0.977402,0.542631,0.381301,0.2626,0.0461911,0.800051,0.491731,0.789694,0.733949,0.41821,0.0964293,0.544854,0.796216,0.476608,0.106331,0.0165712,0.0208387,0.211487,0.41991,0.783445,0.574365,0.721721,0.0529089,0.146966,0.48555,0.690889,0.856847,0.19507,0.920428,0.504867,0.152125,0.683714,0.91421,0.338506,0.373932,0.00862086,0.55535,0.454805,0.18349,0.871292,0.791871,0.761464,0.53507,0.0252118,0.479001,0.394164,0.112017,0.871586,0.420683,0.534093,0.986862,0.500024,0.875981,0.164174,0.643028,0.649133,0.00565058,0.823906,0.533611,0.514924,0.655304,0.931782,0.63824,0.866794,0.0580831,0.147819,0.618866,0.937083,0.271824,0.631825,0.0327247,0.0474377,0.238043,0.735444,0.164776,0.961993,0.317609,0.961555,0.332881,0.504058,0.799459,0.955047,0.213535,0.168932,0.88177,0.460694,0.503266,0.976443,0.289372,0.756084,0.188191,0.352979,0.323952,0.431454,0.524223,0.184872,0.538735,0.216478,0.862791,0.21699,0.0707967,0.806486,0.345953,0.583465,0.662299,0.837194,0.841384,0.435946,0.278836,0.0396638,0.491421,0.870724,0.530959,0.224759,0.214571,0.194871,0.640802,0.191077,0.951182,0.739495,0.280859,0.731008,0.419502,0.492636,0.74594,0.19001,0.556356,0.971331,0.0564589,0.868141,0.687921,0.763019,0.481312,0.37298,0.648674,0.537943,0.162343,0.89031,0.88622,0.165637,0.361684,0.96123,0.982434,0.0504091,0.136209,0.353771,0.0442706,0.742461,0.146497,0.785459,0.0225071,0.642605,0.436263,0.880399,0.487164,0.729567,0.381283,0.245282,0.536209,0.912594,0.365322,0.0773044,0.017298,0.250933,0.99995,0.10447,0.979516,0.289882,0.874435,0.161099,0.590532,0.715655,0.561818,0.799603,0.240859,0.0092392,0.129582,0.792556,0.64352,0.600864,0.247595,0.774697,0.108213,0.993132,0.0860623,0.915555,0.302838,0.671989,0.185911,0.812274,0.0351844,0.759809,0.547856,0.194429,0.00512511,0.0903124,0.451741,0.427662,0.457359,0.384577,0.208821,0.0136403,0.410284,0.822435,0.204586,0.49191,0.243695,0.510125,0.966564,0.627009,0.239566,0.33424,0.572801,0.517545,0.538254,0.552404,0.00110233,0.801161,0.617626,0.282358,0.843195,0.924738,0.563222,0.41319,0.585401,0.288097,0.0927449,0.109169,0.969149,0.619543,0.191177,0.514025,0.280949,0.998807,0.5932,0.490551,0.842286,0.801444,0.316427,0.528709,0.213629,0.616444,0.918352,0.302248,0.45623,0.610958,0.293921,0.63517,0.937527,0.246377,0.753446,0.288412,0.570143,0.809563,0.579108,0.850656,0.222396,0.136785,0.0999283,0.45236,0.0899214,0.603367,0.827663,0.767494,0.38905,0.202836,0.016473,0.174384,0.726859,0.265114,0.500856,0.491264,0.812537,0.698508,0.777249,0.716255,0.652453,0.293578,0.333576,0.196648,0.641814,0.085496,0.65095,0.266274,0.284907,0.462465,0.0745494,0.915409,0.527415,0.161391,0.0392302,0.721398,0.532098,0.504968,0.271922,0.665067,0.777599,0.729247,0.32312,0.315685,0.474877,0.152419,0.831355,0.933473,0.0143984,0.244182,0.219938,0.1147,0.834911,0.242905,0.257424,0.0706767,0.603779,0.792438,0.185314,0.431175,0.677033,0.263159,0.52558,0.417167,0.111262,0.640379,0.900854,0.380277,0.800204,0.0644239,0.0133538,0.517084,0.619443,0.537913,0.1653,0.749586,0.378147,0.975514,0.00835723,0.673099,0.0501726,0.984613,0.141687,0.411691,0.753401,0.208243,0.116162,0.842646,0.472465,0.490168,0.272698,0.80241,0.391584,0.645503,0.797796,0.752334,0.795324,0.872703,0.0511863,0.0894552,0.497563,0.574574,0.9911,0.653191,0.348944,0.167267,0.717257,0.892956,0.417746,0.472619,0.702518,0.317927,0.0394206,0.331357,0.642667,0.395157,0.76848,0.530297,0.479504,0.197088,0.672328,0.754407,0.166464,0.503435,0.642067,0.63293,0.0492945,0.555606,0.567409,0.181086,0.308933,0.570127,0.606266,0.607066,0.631845,0.169995,0.526548,0.558603,0.94754,0.228546,0.965904,0.570635,0.848691,0.577367,0.407254,0.990162,0.236724,0.888497,0.43382,0.0594524,0.0720826,0.512362,0.860848,0.161762,0.617658,0.251417,0.730652,0.0486068,0.362042,0.0393337,0.510775,0.968549,0.716677,0.244276,0.459106,0.488443,0.132386,0.496664,0.380211,0.334458,0.125021,0.298741,0.221646,0.553071,0.4464,0.738435,0.732812,0.376536,0.829518,0.980876,0.912229,0.157279,0.669751,0.459606,0.460863,0.0194311,0.96126,0.153902,0.0766506,0.287372,0.510965,0.295014,0.943859,0.0597939,0.65231,0.142253,0.431979,0.360203,0.613706,0.356136,0.959455,0.0812959,0.979804,0.50486,0.293719,0.217573,0.259539,0.878257,0.630338,0.84937,0.546506,0.725018,0.0427955,0.848631,0.822085,0.212996,0.049873,0.743061,0.112312,0.990152,0.489375,0.538069,0.0369372,0.0348995,0.05348,0.561916,0.522117,0.59903,0.350198,0.208796,0.995081,0.753813,0.467909,0.970656,0.923478,0.714889,0.286501,0.171895,0.186561,0.0207757,0.778357,0.125919,0.889125,0.635173,0.141429,0.0907147,0.26494,0.213272,0.59773,0.687019,0.592578,0.867372,0.990757,0.707168,0.098453,0.313836,0.562501,0.937061,0.735159,0.248189,0.568552,0.883651,0.849727,0.321285,0.430065,0.724554,0.512807,0.0537189,0.962169,0.284405,0.521916,0.509202,0.614412,0.814977,0.762856,0.329006,0.0999327,0.308089,0.595338,0.264053,0.552558,0.155625,0.802156,0.752232,0.725068,0.11895,0.336377,0.32543,0.116271,0.230369,0.727028,0.969908,0.230065,0.311802,0.369078,0.152843,0.793133,0.471726,0.968252,0.835376,0.351872,0.0378692,0.525887,0.837685,0.617864,0.273077,0.87868,0.88225,0.256177,0.931684,0.498733,0.742908,0.934847,0.0921707,0.870474,0.0437753,0.421959,0.639745,0.488141,0.062618,0.704591,0.440769,0.0648677,0.770965,0.0221934,0.341534,0.544646,0.323327,0.185855,0.978247,0.382875,0.200532,0.0314222,0.263314,0.219529,0.837484,0.70678,0.960875,0.834586,0.0101123,0.471198,0.905183,0.583069,0.611572,0.35546,0.509172,0.570335,0.658313,0.0605921,0.764009,0.753561,0.620054,0.946361,0.842104,0.599914,0.508865,0.566862,0.425135,0.822255,0.120486,0.336039,0.261024,0.00768143,0.691189,0.884502,0.45964,0.12473,0.552308,0.284448,0.080435,0.317542,0.9009,0.59146,0.474047,0.606992,0.581157,0.426158,0.530032,0.703761,0.556965,0.504678,0.833168,0.593302,0.377964,0.064605,0.831013,0.196199,0.729938,0.646821,0.852965,0.801758,0.597429,0.849549,0.347437,0.357977,0.822771,0.0879902,0.383228,0.50274,0.500725,0.0732934,0.162239,0.468935,0.375711,0.645075,0.622587,0.593036,0.461956,0.61305,0.455403,0.306701,0.456517,0.865214,0.339235,0.177117,0.5019,0.00742859,0.512087,0.920568,0.192386,0.683502,0.791613,0.600242,0.852788,0.229572,0.523655,0.226619,0.221414,0.343655,0.529494,0.911259,0.537197,0.499837,0.665337,0.0608623,0.304336,0.208951,0.495809,0.428503,0.457237,0.845957,0.934662,0.174328,0.408028,0.18042,0.684325,0.6297,0.745685,0.327337,0.307835,0.900101,0.2659,0.691692,0.575837,0.056059,0.986156,0.598484,0.726719,0.713077,0.41277,0.84523,0.89278,0.690135,0.199997,0.315848,0.646638,0.593036,0.397197,0.0543642,0.308856,0.757258,0.341608,0.984134,0.672059,0.239689,0.698091,0.347359,0.726153,0.881049,0.358671,0.4308,0.516595,0.85577,0.0835462,0.281897,0.336907,0.994394,|0.876302,0.798774,0.853994,0.700674,0.561819,0.114862,0.672408,0.976614,0.741669,0.603293,0.702369,0.472448,0.792595,0.102768,0.338677,0.36071,0.232625,0.599663,0.951482,0.0578191,0.678568,0.457122,0.0108964,0.293962,0.803012,0.00129944,0.0925638,0.311895,0.0397391,0.74506,0.242441,0.903964,0.901116,0.0640585,0.248459,0.632065,0.0733613,0.0579388,0.45545,0.11414,0.925253,0.00287926,0.37347,0.635113,0.0363442,0.0397504,0.808844,0.88874,0.696912,0.770031,0.0667763,0.734098,0.827215,0.320502,0.814152,0.322353,0.761554,0.837956,0.62539,0.365099,0.231356,0.512136,0.120515,0.959271,0.585367,0.749357,0.0202917,0.0702254,0.107453,0.655988,0.886616,0.960788,0.398723,0.100156,0.569515,0.364724,0.0158786,0.200726,0.638749,0.935871,0.0891279,0.729338,0.392136,0.800153,0.421332,0.514705,0.848181,0.462575,0.602574,0.499642,0.767321,0.662127,0.544963,0.439206,0.830133,0.51202,0.679491,0.45793,0.84658,0.286924,0.315007,0.22971,0.215936,0.848266,0.527748,0.851099,0.204183,0.680891,0.727751,0.689421,0.0991656,0.648338,0.893,0.334131,0.609724,0.837702,0.537116,0.259045,0.689564,0.668491,0.597602,0.692332,0.310394,0.401845,0.369109,0.73279,0.812708,0.798171,0.937842,0.57762,0.345097,0.0503927,0.251484,0.189753,0.357622,0.164092,0.56892,0.27298,0.414399,0.188901,0.0935746,0.919656,0.0425916,0.00164419,7.89762e-05,0.17152,0.0484072,0.553349,0.673594,0.719497,0.797525,0.762417,0.684421,0.976,0.327714,0.303067,0.330234,0.0626483,0.785053,0.0212017,0.91265,0.0193197,0.873444,0.440644,0.47537,0.0320891,0.553502,0.858287,0.604314,0.0461624,0.578503,0.270558,0.892933,0.58133,0.642551,0.402379,0.500117,0.45853,0.086951,0.37622,0.649635,0.304582,0.753992,0.211587,0.566278,0.387026,0.94904,0.0341216,0.243029,0.167059,0.998538,0.978561,0.922231,0.542676,0.894273,0.497791,0.468499,0.849694,0.234139,0.678256,0.177844,0.00167823,0.555599,0.94629,0.133401,0.139338,0.306815,0.565107,0.737558,0.232372,0.274103,0.0913647,0.433261,0.21179,0.801186,0.412265,0.981199,0.802247,0.922868,0.506607,0.121268,0.741358,0.050401,0.312815,0.137923,0.793873,0.862431,0.394557,0.881556,0.486203,0.888678,0.972878,0.371342,0.987031,0.0962608,0.668548,0.700847,0.634744,0.746622,0.897608,0.833892,0.71911,0.539467,0.446364,0.719746,0.860503,0.947911,0.969738,0.665783,0.721298,0.664349,0.791778,0.393653,0.33137,0.185205,0.638463,0.0897431,0.645872,0.805613,0.876392,0.255825,0.81015,0.0333627,0.524983,0.339298,0.126998,0.0532995,0.835937,0.84162,0.414021,0.362492,0.922015,0.402623,0.368724,0.104334,0.682033,0.608387,0.161768,0.27702,0.876855,0.956456,0.535284,0.256276,0.715525,0.0928317,0.542832,0.842299,0.978464,0.158014,0.561803,0.0118256,0.236213,0.233373,0.54183,0.042718,0.661601,0.759519,0.91787,0.255108,0.0278193,0.569057,0.0535911,0.85754,0.83972,0.448267,0.820475,0.243052,0.534275,0.502118,0.635835,0.583929,0.445478,0.0526763,0.882087,0.655477,0.822254,0.828126,0.52763,0.111221,0.555772,0.585936,0.0502679,0.111784,0.0339632,0.173814,0.254674,0.883047,0.299787,0.0182858,0.429046,0.0311443,0.578815,0.967306,0.375964,0.783832,0.495368,0.90798,0.990383,0.0832,0.232875,0.824409,0.523569,0.517356,0.31917,0.493803,0.698341,0.889028,0.496927,0.561621,0.413321,0.821797,0.441031,0.665057,0.28709,0.933275,0.691008,0.727665,0.386669,0.26585,0.384041,0.470116,0.286065,0.686253,0.185909,0.806367,0.427256,0.546548,0.352385,0.829022,0.360655,0.262483,0.375084,0.174863,0.252603,0.821251,0.329133,0.393144,0.652955,0.275799,0.0861194,0.388005,0.568241,0.0488583,0.955597,0.797805,0.401384,0.0998889,0.710164,0.9309,0.52844,0.340694,0.0589394,0.182296,0.750873,0.478879,0.0843335,0.802156,0.567245,0.718862,0.22194,0.179129,0.549369,0.81729,0.411846,0.93026,0.0582479,0.151595,0.482242,0.632835,0.705821,0.741034,0.498356,0.288852,0.72011,0.804741,0.136442,0.612184,0.950909,0.850657,0.412383,0.450709,0.222156,0.0687239,0.264913,0.109451,0.390097,0.719179,0.80483,0.305862,0.614133,0.791368,0.0417528,0.827364,0.428152,0.884274,0.973213,0.941155,0.718326,0.424505,0.797843,0.465599,0.0338175,0.137247,0.375408,0.423034,0.807388,0.751537,0.862998,0.480085,0.881465,0.784159,0.777625,0.623187,0.0815539,0.269939,0.443442,0.00372231,0.669455,0.565629,0.0799679,0.583526,0.752208,0.0296052,0.302747,0.194299,0.882976,0.0663331,0.00289398,0.218326,0.973549,0.52254,0.00796849,0.309867,0.471948,0.217499,0.138068,0.133264,0.660527,0.420839,0.665682,0.457093,0.472717,0.680401,0.414992,0.216757,0.606587,0.179489,0.825888,0.041167,0.155487,0.736154,0.31336,0.506023,0.531174,0.543676,0.14069,0.562276,0.201582,0.242734,0.977931,0.475237,0.409191,0.743114,0.468727,0.943442,0.0423562,0.827617,0.301007,0.164662,0.0960157,0.440493,0.562801,0.792232,0.490669,0.17035,0.662823,0.624845,0.176151,0.125357,0.785976,0.482147,0.258933,0.523222,0.698477,0.800477,0.450788,0.150805,0.916066,0.0281112,0.361096,0.95958,0.662783,0.0322267,0.428967,0.318303,0.0952028,0.497365,0.23274,0.027457,0.52703,0.0251259,0.199346,0.953955,0.458147,0.107514,0.804011,0.524491,0.30695,0.642063,0.0617748,0.65324,0.534654,0.289281,0.619213,0.00988913,0.338175,0.286696,0.315383,0.639604,0.13144,0.930861,0.190244,0.412105,0.596618,0.870788,0.263684,0.922473,0.187603,0.488421,0.826256,0.711601,0.020003,0.529609,0.165616,0.920225,0.645835,0.483233,0.819775,0.500027,0.981834,0.490854,0.140615,0.0705754,0.969287,0.58706,0.302386,0.0507243,0.324678,0.126369,0.256,0.638894,0.616801,0.0333385,0.0923783,0.962575,0.705144,0.0815802,0.364978,0.714538,0.141913,0.276459,0.817351,0.250478,0.500934,0.625274,0.560585,0.0448814,0.222094,0.729081,0.652896,0.0346997,0.748028,0.872302,0.424619,0.859713,0.442101,0.0644634,0.433938,0.772168,0.834709,0.684436,0.912457,0.121976,0.060028,0.315783,0.819839,0.0945754,0.894758,0.725441,0.00674731,0.856914,0.00629425,0.235362,0.759329,0.61456,0.88258,0.607502,0.658129,0.87166,0.435497,0.447005,0.000470161,0.60076,0.521934,0.0164909,0.549996,0.635605,0.684247,0.228766,0.932473,0.167498,0.703388,0.0116663,0.246012,0.690703,0.815016,0.667835,0.328922,0.844106,0.122877,0.393532,0.705892,0.963018,0.591195,0.774854,0.808514,0.469994,0.406814,0.98871,0.221743,0.441449,0.661224,0.81297,0.305217,0.303125,0.53605,0.97678,0.897058,0.2223,0.138266,0.487831,0.649715,0.298159,0.277784,0.250725,0.00416362,0.708582,0.301908,0.474144,0.781039,0.525336,0.327385,0.262448,0.134133,0.406879,0.074374,0.603158,0.804166,0.454979,0.74207,0.214667,0.608468,0.96298,0.809531,0.756507,0.456876,0.292078,0.369791,0.34888,0.0128168,0.479134,0.0439374,0.734007,0.0567269,0.824391,0.538546,0.633415,0.0827488,0.740525,0.735706,0.182443,0.417006,0.877609,0.359278,0.134232,0.548542,0.611417,0.962771,0.965852,0.938546,0.389881,0.106836,0.667415,0.983137,0.090767,0.60645,0.559748,0.42392,0.878958,0.0562065,0.421593,0.429833,0.220229,0.351761,0.978477,0.182426,0.90683,0.4029,0.736143,0.501455,0.814878,0.489233,0.836368,0.183072,0.0369603,0.0630247,0.670413,0.238145,0.612957,0.018952,0.544851,0.893654,0.799048,0.468036,0.735674,0.376231,0.0994909,0.184604,0.912262,0.970258,0.059786,0.376819,0.32505,0.342906,0.316327,0.332896,0.0450836,0.0711211,0.152253,0.620234,0.735004,0.932545,0.25158,0.665263,0.0960374,0.803098,0.530534,0.514032,0.961057,0.0568736,0.743138,0.163333,0.145715,0.611047,0.623831,0.661755,0.202653,0.924632,0.987804,0.626832,0.292179,0.140866,0.931378,0.365546,0.14118,0.435591,0.916767,0.982987,0.131615,0.649951,0.272103,0.0306478,0.183338,0.230278,0.191149,0.583718,0.932047,0.161701,0.332919,0.298014,0.749251,0.0133176,0.370722,0.119328,0.83575,0.455499,0.290925,0.858693,0.457904,0.0843764,0.676834,0.893251,0.858242,0.930317,0.442952,0.843223,0.0634758,0.69688,0.769016,0.0732975,0.272467,0.614829,0.19476,0.552578,0.703982,0.597717,0.822879,0.937129,0.0275873,0.108067,0.749052,0.255875,0.161299,0.455479,0.0984464,0.289769,0.487407,0.591613,0.244353,0.798354,0.774152,0.527327,0.478379,0.0383454,0.0233667,0.00999302,0.875937,0.319651,0.038694,0.904585,0.111417,0.981956,0.15187,0.441506,0.935771,0.424138,0.832248,0.879624,0.556665,0.247019,0.343846,0.894543,0.57966,0.393533,0.00934553,0.423932,0.766127,0.421462,0.659872,0.0214908,0.9551,0.810134,0.836195,0.26408,0.482434,0.884486,0.464531,0.00286227,0.351773,0.306993,0.861885,0.461299,0.668942,0.254707,0.417584,0.801084,0.417013,0.217606,0.542384,0.309765,0.456814,0.556751,0.794246,0.612334,0.608591,0.730318,0.978491,0.895784,0.265463,0.188858,0.0719603,0.554207,0.315514,0.521669,0.522536,0.698829,0.680857,0.574953,0.558445,0.97877,0.87563,0.449093,0.722416,0.627439,0.664233,0.765858,0.632578,0.233294,0.717052,0.589542,0.74794,0.42194,0.103704,0.0450037,0.230271,0.799368,0.399148,0.678353,0.032662,0.392734,0.870972,0.187242,0.219847,0.392579,0.804176,0.307511,0.864172,0.392799,0.846602,0.458517,0.239482,0.684901,0.892511,0.464725,0.816215,0.590063,0.192656,0.622136,0.357637,0.298737,0.910664,0.169537,0.890026,0.510755,0.606911,0.233675,0.627407,0.60655,0.198712,0.532463,0.914211,0.513874,0.471157,0.274674,0.0098021,0.418064,0.95062,0.362302,0.981705,0.0667731,0.0581429,0.442746,0.793423,0.00209612,0.104323,0.845758,0.811149,0.014653,0.435375,0.267705,|0.579448,0.295552,0.337929,0.391531,0.808842,0.556157,0.562393,0.125899,0.43786,0.890372,0.31578,0.653835,0.793933,0.657322,0.0368531,0.0270762,0.311792,0.990413,0.899916,0.296836,0.774865,0.257546,0.00569153,0.449812,0.480382,0.509234,0.967923,0.541377,0.145362,0.96296,0.276882,0.000632465,0.344528,0.90044,0.521419,0.704104,0.410477,0.128976,0.122493,0.117224,0.719427,0.330585,0.4155,0.986783,0.406706,0.0615687,0.40932,0.580015,0.346456,0.155038,0.159493,0.582793,0.930086,0.623279,0.00718147,0.193381,0.291816,0.162578,0.0804766,0.928872,0.63588,0.88183,0.231602,0.529253,0.573689,0.705111,0.531778,0.809639,0.155949,0.600564,0.455066,0.521121,0.401256,0.103816,0.380502,0.869117,0.223174,0.440322,0.152755,0.411398,0.354978,0.892668,0.188005,0.132113,0.947226,0.916197,0.59933,0.148803,0.453868,0.377143,0.371226,0.442752,0.210993,0.145772,0.651348,0.275391,0.633421,0.16522,0.840657,0.0429488,0.424107,0.667601,0.73928,0.825386,0.0691679,0.494261,0.654047,0.0110273,0.827401,0.456699,0.607451,0.0572606,0.34243,0.345506,0.146831,0.87003,0.00223684,0.249545,0.135708,0.223467,0.0411438,0.913538,0.929199,0.448126,0.998003,0.632004,0.672561,0.334475,0.054302,0.155774,0.728407,0.897625,0.514287,0.557441,0.626354,0.929179,0.391733,0.981818,0.336618,0.865782,0.325739,0.945396,0.984644,0.35791,0.413805,0.634885,0.0239921,0.531706,0.847608,0.288101,0.380789,0.503088,0.134133,0.540708,0.757122,0.188304,0.0563785,0.0510109,0.049753,0.759301,0.731749,0.771442,0.249039,0.78868,0.971374,0.23633,0.457087,0.573776,0.805924,0.2192,0.532248,0.745567,0.754228,0.162666,0.655999,0.197492,0.54007,0.69765,0.702621,0.46653,0.665871,0.723688,0.761066,0.0460529,0.469617,0.573072,0.488031,0.726036,0.574935,0.373965,0.638255,0.00397283,0.218635,0.376958,0.711109,0.252834,0.995438,0.961287,0.0907356,0.448098,0.473954,0.470181,0.77739,0.915072,0.530914,0.117473,0.798546,0.569284,0.323269,0.875627,0.935256,0.255266,0.474112,0.70491,0.33168,0.892982,0.405481,0.598503,0.793057,0.346311,0.0219949,0.0987962,0.454695,0.548265,0.0382718,0.41561,0.724312,0.282027,0.272031,0.778908,0.561152,0.327883,0.87059,0.488105,0.419543,0.266443,0.113116,0.621327,0.2009,0.269085,0.364552,0.283068,0.912752,0.450212,0.472071,0.00612408,0.757805,0.20856,0.815257,0.914598,0.441485,0.757204,0.0428766,0.646626,0.447203,0.391118,0.89411,0.216761,0.202053,0.650704,0.753337,0.688876,0.115497,0.986507,0.706376,0.900029,0.278649,0.137976,0.710699,0.34884,0.0247747,0.306004,0.751217,0.803563,0.971372,0.813876,0.662304,0.242408,0.334016,0.152219,0.380443,0.264808,0.614765,0.982118,0.421939,0.182779,0.270967,0.458128,0.211059,0.466503,0.375237,0.465474,0.484994,0.0929053,0.461192,0.137918,0.0492771,0.722391,0.695007,0.855027,0.202755,0.749285,0.24676,0.190626,0.59534,0.704754,0.0705354,0.769171,0.393961,0.385762,0.600945,0.705969,0.108082,0.644578,0.207066,0.543947,0.49135,0.00657701,0.463493,0.689759,0.585013,0.40493,0.376279,0.787344,0.892843,0.0121332,0.74323,0.854185,0.731171,0.616941,0.218542,0.0246656,0.439362,0.162383,0.583684,0.476732,0.317028,0.855334,0.396878,0.839597,0.961465,0.139226,0.915623,0.050034,0.740553,0.911283,0.859837,0.288406,0.390726,0.614616,0.353559,0.235926,0.384698,0.129796,0.106947,0.0902626,0.267884,0.0680219,0.84649,0.696573,0.198819,0.65262,0.407179,0.833891,0.364166,0.79794,0.677139,0.551543,0.0987392,0.0642623,0.18859,0.123855,0.830656,0.382441,0.141582,0.210555,0.333621,0.328505,0.589499,0.176477,0.29319,0.0376879,0.79505,0.310231,0.334952,0.63121,0.255565,0.00521046,0.091774,0.0033465,0.526124,0.478557,0.94023,0.753277,0.910148,0.449898,0.760675,0.355306,0.229501,0.364979,0.53404,0.661137,0.807123,0.136673,0.958473,0.849084,0.332604,0.436224,0.697408,0.311499,0.828059,0.701582,0.222558,0.759571,0.972173,0.690345,0.697832,0.190319,0.634227,0.986421,0.793624,0.651812,0.389235,0.896147,0.444932,0.260819,0.138437,0.869973,0.740186,0.740993,0.772583,0.145551,0.286042,0.266931,0.337798,0.678417,0.118876,0.867348,0.471232,0.79399,0.822898,0.160481,0.39285,0.787052,0.446176,0.276866,0.692686,0.268802,0.911942,0.19117,0.265579,0.981828,0.251088,0.598969,0.489481,0.21549,0.817431,0.240942,0.0146051,0.186136,0.88462,0.147417,0.677386,0.0801252,0.718879,0.433969,0.830797,0.348695,0.15334,0.406872,0.0325604,0.425799,0.131061,0.968255,0.618189,0.543873,0.55896,0.137804,0.267924,0.673534,0.535144,0.706639,0.31,0.863853,0.426555,0.572203,0.215547,0.0940703,0.52245,0.598222,0.180382,0.660279,0.179671,0.582286,0.674455,0.757501,0.854031,0.745366,0.143799,0.687892,0.744428,0.320964,0.484862,0.797463,0.392428,0.237788,0.689822,0.711559,0.54255,0.181218,0.725879,0.00749582,0.00826806,0.55485,0.00969702,0.778439,0.910973,0.740936,0.247637,0.0578195,0.0875113,0.00776947,0.269461,0.803842,0.397552,0.945201,0.253082,0.978592,0.442679,0.488647,0.798257,0.547347,0.361911,0.860793,0.756218,0.978907,0.351795,0.0324402,0.708366,0.934028,0.161226,0.295392,0.308143,0.781104,0.780957,0.645249,0.572051,0.434163,0.443021,0.814348,0.34854,0.277038,0.964991,0.480295,0.208615,0.0964541,0.449013,0.259082,0.796137,0.509806,0.730995,0.633909,0.575221,0.752355,0.33585,0.116944,0.165174,0.918737,0.867508,0.352897,0.821899,0.602348,0.622997,0.599144,0.854252,0.85497,0.756391,0.7413,0.596364,0.745057,0.608418,0.869509,0.247875,0.550533,0.921272,0.987976,0.821916,0.815287,0.611855,0.59066,0.78279,0.540102,0.501948,0.806408,0.803029,0.189509,0.611955,0.256385,0.463933,0.966563,0.152124,0.356181,0.650662,0.0305341,0.69583,0.93943,0.862628,0.848719,0.134499,0.531873,0.65795,0.0951297,0.530501,0.890302,0.921246,0.185421,0.326433,0.80525,0.201099,0.0782166,0.965948,0.516876,0.807574,0.710923,0.783756,0.674595,0.694914,0.501145,0.497777,0.662272,0.434741,0.485077,0.552968,0.434604,0.650624,0.999443,0.519785,0.219374,0.303438,0.690846,0.259458,0.815202,0.451494,0.476258,0.1984,0.18509,0.535044,0.400578,0.913011,0.806522,0.521455,0.383758,0.697737,0.2469,0.152494,0.286766,0.348937,0.209332,0.329369,0.753401,0.41707,0.299638,0.640109,0.0130734,0.444614,0.428253,0.380529,0.374253,0.523506,0.357161,0.3147,0.103691,0.898843,0.603997,0.506609,0.127825,0.875317,0.311878,0.0417593,0.759267,0.0278733,0.00536412,0.985443,0.804061,0.404257,0.613711,0.428514,0.376353,0.972662,0.894968,0.316202,0.235182,0.64093,0.186426,0.791245,0.965361,0.716299,0.270872,0.0436696,0.929776,0.708017,0.578543,0.534931,0.884569,0.696203,0.139007,0.679289,0.209174,0.265191,0.0119681,0.317538,0.0667029,0.987513,0.452297,0.0775782,0.841891,0.631557,0.705057,0.318222,0.98669,0.267945,0.334999,0.0965682,0.676111,0.316828,0.430927,0.802324,0.686547,0.603879,0.784607,0.00764847,0.220667,0.321496,0.864875,0.72366,0.701722,0.576666,0.028522,0.197913,0.610337,0.452496,0.836871,0.684859,0.939575,0.696456,0.327227,0.750064,0.934595,0.630569,0.691734,0.366389,0.673608,0.0303658,0.19757,0.0428972,0.211308,0.395119,0.991741,0.647384,0.755091,0.88463,0.358156,0.811354,0.0430748,0.536808,0.761677,0.124448,0.444917,0.328742,0.805745,0.605659,0.0208108,0.239823,0.0323062,0.835114,0.972881,0.991479,0.792491,0.844246,0.444321,0.0286828,0.389701,0.682953,0.420012,0.778734,0.780905,0.457265,0.390401,0.310156,0.730527,0.321109,0.300667,0.185225,0.676364,0.978421,0.186332,0.372401,0.90713,0.398862,0.0926684,0.835207,0.295195,0.724705,0.142826,0.87022,0.764547,0.610511,0.188873,0.164061,0.102737,0.266213,0.928935,0.00323421,0.966896,0.958977,0.106947,0.808202,0.886001,0.505105,0.607209,0.455851,0.0680408,0.551555,0.380006,0.295976,0.240266,0.20741,0.803045,0.553644,0.293864,0.342387,0.221791,0.75886,0.637721,0.755418,0.0839359,0.486328,0.00207567,0.375848,0.653073,0.9184,0.824812,0.285519,0.0070132,0.79423,0.0967541,0.858782,0.300822,0.0729984,0.519516,0.383958,0.636038,0.718925,0.420712,0.0385005,0.457999,0.644193,0.518056,0.57818,0.653106,0.00639278,0.0897878,0.562489,0.206627,0.937906,0.376239,0.0706048,0.0752311,0.953114,0.22092,0.19443,0.551922,0.463392,0.385434,0.653477,0.818699,0.00391316,0.119674,0.889553,0.762924,0.657654,0.303219,0.32211,0.224384,0.92361,0.79372,0.331854,0.253083,0.990104,0.0464191,0.386647,0.802373,0.155678,0.570858,0.52643,0.593271,0.317298,0.58587,0.192168,0.489136,0.828095,0.405797,0.4446,0.694603,0.207713,0.144506,0.268549,0.981537,0.0536771,0.999458,0.270429,0.467692,0.275704,0.988826,0.530101,0.357371,0.442032,0.317711,0.134796,0.495898,0.696322,0.908703,0.181697,0.589627,0.867875,0.31194,0.80031,0.2474,0.636199,0.749845,0.568943,0.390556,0.928763,0.348395,0.901709,0.486306,0.320754,0.761166,0.454925,0.628643,0.776968,0.320212,0.982286,0.351545,0.472751,0.755762,0.0460152,0.122608,0.984989,0.677745,0.312993,0.844971,0.571872,0.00142616,0.515861,0.111729,0.723055,0.086193,0.838763,0.642188,0.83344,0.806505,0.390015,0.672359,0.108996,0.568447,0.744735,0.462202,0.29853,0.453511,0.828514,0.772668,0.955575,0.509715,0.584473,0.528905,0.653823,0.0098055,0.465865,0.781046,0.268554,0.0632128,0.892311,0.597413,0.723962,0.528083,0.172174,0.307329,0.071031,0.911541,0.790614,0.92701,0.597962,0.257373,0.785675,0.0680403,0.489581,0.336868,0.334152,0.984378,|0.126416,0.937663,0.711291,0.857755,0.962941,0.262757,0.684278,0.575185,0.244371,0.453821,0.893423,0.730697,0.220449,0.218303,0.240753,0.374636,0.368572,0.0382037,0.485649,0.016518,0.133909,0.932566,0.757161,0.658974,0.951683,0.395749,0.477145,0.00847179,0.383641,0.184253,0.233607,0.129924,0.368453,0.673006,0.891905,0.0273815,0.995744,0.222827,0.603226,0.615768,0.624499,0.0153129,0.00808877,0.254681,0.313123,0.409169,0.75456,0.0878594,0.865539,0.499319,0.879936,0.486984,0.787573,0.521037,0.0504196,0.287919,0.537355,0.260593,0.626489,0.699462,0.432372,0.183594,0.918083,0.785549,0.0876223,0.38502,0.272635,0.175918,0.968782,0.187739,0.192166,0.791668,0.853313,0.370011,0.27851,0.823412,0.976526,0.0916161,0.386713,0.781029,0.462511,0.65532,0.552968,0.00304216,0.0804681,0.552517,0.577373,0.0922479,0.688774,0.810135,0.035961,0.272264,0.410509,0.449004,0.17055,0.143459,0.23396,0.361769,0.757771,0.398533,0.306458,0.82237,0.52239,0.672159,0.319879,0.241958,0.928975,0.993673,0.643625,0.292869,0.662166,0.386617,0.891024,0.0552885,0.484048,0.152648,0.23559,0.453783,0.26662,0.675277,0.516542,0.784923,0.797605,0.919376,0.434291,0.207221,0.504745,0.102248,0.510059,0.747419,0.578927,0.0458743,0.157482,0.918287,0.198993,0.683942,0.129758,0.650061,0.799424,0.570034,0.232528,0.134556,0.0261712,0.732222,0.027214,0.290037,0.369366,0.346509,0.587413,0.0786219,0.598968,0.585507,0.102945,0.844132,0.412836,0.904972,0.677061,0.160649,0.846465,0.103912,0.541309,0.164321,0.646168,0.305818,0.419786,0.575895,0.732468,0.654543,0.551283,0.228107,0.296931,0.712422,0.926395,0.933692,0.703412,0.804007,0.407264,0.808225,0.11854,0.11639,0.275472,0.532038,0.868148,0.736704,0.590021,0.773731,0.169383,0.47257,0.770209,0.780137,0.134786,0.425074,0.585008,0.709306,0.385409,0.295582,0.0640597,0.167408,0.946437,0.593758,0.645701,0.242754,0.699138,0.598039,0.145386,0.643367,0.870398,0.220345,0.551437,0.292718,0.971773,0.731048,0.230367,0.487574,0.856086,0.451534,0.0573276,0.296954,0.697156,0.541549,0.241669,0.685476,0.831265,0.317037,0.85684,0.268523,0.0495211,0.352652,0.926983,0.170819,0.643211,0.84945,0.91973,0.983644,0.538757,0.365026,0.281928,0.630186,0.965171,0.721945,0.420821,0.991645,0.572737,0.156198,0.623474,0.557565,0.520117,0.974258,0.705088,0.538175,0.752496,0.748221,0.820699,0.33067,0.087847,0.40628,0.17201,0.332456,0.939694,0.0998405,0.595637,0.0539929,0.281817,0.184224,0.699138,0.170889,0.0811607,0.275875,0.206227,0.603424,0.46548,0.190996,0.682682,0.626508,0.401145,0.938492,0.0450608,0.925615,0.499399,0.0973316,0.34683,0.122662,0.73864,0.884185,0.841763,0.649604,0.626602,0.807368,0.804926,0.769898,0.685092,0.095373,0.462623,0.230553,0.339538,0.223748,0.503128,0.268342,0.902544,0.869471,0.893451,0.19327,0.533829,0.91642,0.572415,0.781619,0.63635,0.383311,0.638443,0.155637,0.556245,0.828455,0.46646,0.757338,0.504691,0.764153,0.384296,0.513899,0.938355,0.16679,0.248946,0.501801,0.958335,0.0682616,0.339775,0.376564,0.506898,0.323543,0.308616,0.714474,0.447147,0.710414,0.309904,0.814284,0.636145,0.376203,0.47129,0.014845,0.650658,0.444714,0.044009,0.36708,0.518322,0.952254,0.259466,0.0539743,0.731165,0.66704,0.188604,0.55236,0.887062,0.959963,0.881329,0.559539,0.661764,0.0554602,0.276354,0.285594,0.703692,0.885723,0.336347,0.210775,0.350951,0.332703,0.110704,0.711869,0.617765,0.275557,0.38462,0.301911,0.537214,0.290703,0.608932,0.678086,0.118057,0.294711,0.0949441,0.145993,0.805838,0.306409,0.530774,0.123182,0.645042,0.509872,0.173277,0.583947,0.00381804,0.618706,0.78673,0.1177,0.194148,0.364664,0.313675,0.0870828,0.949506,0.317638,0.815425,0.909002,0.957492,0.326273,0.672796,0.575151,0.856988,0.681884,0.313101,0.194242,0.200847,0.564367,0.256293,0.108083,0.0738156,0.0543934,0.166936,0.938855,0.552251,0.218383,0.816642,0.0676321,0.980693,0.575155,0.32341,0.527472,0.320639,0.306287,0.162089,0.124245,0.963088,0.659346,0.874409,0.217023,0.251758,0.707249,0.422895,0.426526,0.174475,0.731323,0.581221,0.547308,0.638792,0.745558,0.625682,0.163925,0.49666,0.452528,0.0202531,0.13636,0.41378,0.808851,0.447296,0.422931,0.268021,0.209366,0.954767,0.143596,0.738545,0.356991,0.958344,0.0102231,0.976278,0.862028,0.0812299,0.969565,0.851214,0.311489,0.506974,0.0188559,0.564008,0.218254,0.952189,0.510752,0.955471,0.181693,0.738574,0.735174,0.875821,0.324104,0.0077849,0.409023,0.527078,0.977501,0.497015,0.210068,0.757808,0.910099,0.926228,0.250834,0.94651,0.409618,0.0900655,0.0905856,0.586954,0.513947,0.879773,0.0781637,0.164061,0.889884,0.250726,0.688449,0.494929,0.0472825,0.023042,0.756203,0.554622,0.834691,0.554745,0.14677,0.409341,0.576953,0.283798,0.720304,0.637668,0.137525,0.639929,0.569342,0.616092,0.946052,0.945726,0.00697863,0.267835,0.327745,0.580581,0.328942,0.731904,0.0759323,0.281051,0.742859,0.319982,0.548894,0.0553482,0.334277,0.406784,0.813532,0.387778,0.414843,0.103319,0.686563,0.18653,0.379343,0.342072,0.461335,0.201012,0.0222899,0.787562,0.0820819,0.055935,0.401698,0.8332,0.801945,0.297016,0.777274,0.511931,0.702018,0.921565,0.0526203,0.358425,0.854884,0.222488,0.83308,0.185899,0.600515,0.442597,0.21816,0.344984,0.677467,0.763151,0.654762,0.330822,0.480859,0.00560659,0.472954,0.867084,0.0510035,0.10131,0.695965,0.287145,0.31768,0.934637,0.689522,0.366818,0.417581,0.739806,0.898196,0.613985,0.903878,0.339533,0.315201,0.143393,0.470089,0.450727,0.742418,0.218936,0.959812,0.0710385,0.948161,0.0878612,0.95152,0.406822,0.534587,0.323318,0.470403,0.615558,0.117105,0.757552,0.798292,0.862639,0.94102,0.695054,0.417956,0.935911,0.12718,0.89111,0.974044,0.927683,0.420669,0.26181,0.87312,0.571995,0.211978,0.176826,0.020807,0.462311,0.155559,0.452257,0.597378,0.763351,0.328869,0.00260609,0.180573,0.384556,0.149887,0.124276,0.929284,0.0231903,0.494869,0.323624,0.714513,0.720565,0.685921,0.0544505,0.928794,0.326431,0.60615,0.2855,0.0243707,0.196784,0.723429,0.648747,0.349856,0.318555,0.807255,0.883494,0.301261,0.569933,0.0849562,0.182573,0.152096,0.476566,0.726019,0.683846,0.8244,0.617847,0.622272,0.796972,0.22342,0.558506,0.487184,0.428386,0.300372,0.948159,0.231967,0.349245,0.934027,0.828072,0.318345,0.576077,0.302769,0.473638,0.0562877,0.693495,0.61315,0.254699,0.787268,0.346649,0.102185,0.615064,0.327789,0.421399,0.980684,0.954686,0.461771,0.323918,0.688545,0.825662,0.697596,0.230504,0.123811,0.541454,0.654848,0.496956,0.0380927,0.782095,0.207506,0.27887,0.0378848,0.201172,0.389471,0.185231,0.0279651,0.197332,0.413138,0.0884104,0.246235,0.461853,0.288569,0.432179,0.62396,0.509602,0.712723,0.785586,0.767891,0.608984,0.510661,0.192533,0.31676,0.487329,0.00618708,0.885435,0.840199,0.303132,0.521095,0.935716,0.081508,0.822898,0.300132,0.925798,0.116575,0.667711,0.652453,0.231597,0.0923988,0.059291,0.604053,0.114026,0.559075,0.638645,0.104824,0.0399386,0.656059,0.0959345,0.13846,0.035676,0.981594,0.71031,0.397584,0.00497985,0.817871,0.800191,0.396106,0.542821,0.724037,0.779904,0.955555,0.10692,0.266097,0.686056,0.43204,0.447865,0.386382,0.411314,0.986048,0.407618,0.579699,0.358756,0.84201,0.267665,0.658972,0.088413,0.292033,0.698036,0.225905,0.394609,0.906024,0.934815,0.677101,0.450716,0.350266,0.42478,0.294029,0.592798,0.790607,0.128499,0.202224,0.321918,0.866782,0.999255,0.209544,0.533952,0.742473,0.450539,0.873468,0.470059,0.38292,0.536005,0.93384,0.574853,0.83017,0.4067,0.197514,0.646524,0.587753,0.407771,0.49191,0.941567,0.0425135,0.137225,0.430331,0.598486,0.931181,0.932001,0.45301,0.418167,0.6329,0.393037,0.96285,0.614715,0.800405,0.220823,0.185412,0.187425,0.0697241,0.151545,0.766053,0.74694,0.0593168,0.85351,0.0573838,0.449113,0.157207,0.916451,0.691636,0.230608,0.568332,0.393822,0.471697,0.751794,0.952061,0.66115,0.0235155,0.661765,0.251483,0.315537,0.349816,0.178838,0.0926304,0.282194,0.578937,0.908415,0.364386,0.0117863,0.346587,0.646157,0.30058,0.845517,0.810577,0.364571,0.219678,0.817887,0.649123,0.763592,0.497704,0.103711,0.710439,0.769028,0.586004,0.784481,0.684314,0.346231,0.299693,0.732343,0.347285,0.0823146,0.891519,0.719598,0.537579,0.59947,0.0653144,0.938755,0.601694,0.436381,0.0574281,0.56356,0.664459,0.300222,0.323366,0.829281,0.271405,0.841302,0.145002,0.0649381,0.876303,0.192215,0.566506,0.824482,0.455024,0.171525,0.826397,0.548926,0.0624612,0.606508,0.597637,0.0624437,0.377861,0.346229,0.966395,0.120941,0.707356,0.471065,0.417199,0.531705,0.12732,0.464828,0.640847,0.794587,0.502411,0.78896,0.196796,0.397437,0.658124,0.686661,0.467857,0.71414,0.792583,0.355726,0.878456,0.803071,0.51021,0.917468,0.222249,0.8473,0.941791,0.965648,0.885873,0.316243,0.889221,0.30492,0.328386,0.494384,0.759798,0.18437,0.717354,0.803664,0.701275,0.0157319,0.256544,0.750002,0.169579,0.101239,0.432119,0.544674,0.218557,0.752583,0.872808,0.459595,0.891011,0.881753,0.756462,0.783631,0.11436,0.587037,0.373194,0.688015,0.00867498,0.932497,0.286689,0.646547,0.128127,0.478539,0.198767,0.684347,0.88639,0.855422,0.85249,0.54917,0.897961,0.693974,0.268098,0.750363,0.755194,0.356776,0.604121,0.776245,0.589523,0.122576,0.432806,0.161171,0.514671,0.521331,0.0603269,0.117041,0.379282,|0.0731671,0.0178062,0.993441,0.975087,0.956317,0.736011,0.0674702,0.23448,0.54954,0.639851,0.110995,0.696316,0.0200235,0.0495427,0.671992,0.824462,0.826091,0.855198,0.778943,0.532631,0.651183,0.0212659,0.867991,0.0852041,0.963949,0.344289,0.707362,0.846082,0.216125,0.425465,0.566108,0.83085,0.105578,0.0132608,0.0795754,0.211987,0.564827,0.0936842,0.479166,0.558459,0.27466,0.781293,0.790401,0.468991,0.576944,0.00794339,0.14617,0.941447,0.562136,0.539487,0.980953,0.0322152,0.589587,0.133206,0.879224,0.512004,0.56449,0.995833,0.0870543,0.105982,0.473461,0.0192903,0.634955,0.983707,0.768889,0.4241,0.816358,0.68265,0.802026,0.798317,0.138625,0.196803,0.414644,0.645937,0.441258,0.937752,0.518013,0.524517,0.783741,0.507111,0.90211,0.815537,0.146393,0.820001,0.296416,0.330985,0.533955,0.365209,0.046108,0.34866,0.19517,0.976846,0.0311459,0.108272,0.881074,0.756754,0.728123,0.515752,0.730562,0.605408,0.618699,0.95509,0.493806,0.624222,0.145623,0.870676,0.200203,0.843672,0.943005,0.664616,0.43014,0.586424,0.445434,0.0028314,0.580127,0.974499,0.800192,0.61852,0.0943006,0.390071,0.115778,0.639902,0.553815,0.902413,0.969965,0.622035,0.786688,0.134232,0.129858,0.897792,0.624478,0.877241,0.17835,0.992874,0.700347,0.301148,0.315902,0.843783,0.469269,0.910914,0.262154,0.615334,0.758042,0.252557,0.904137,0.214412,0.700294,0.667325,0.223842,0.986676,0.28085,0.837493,0.843617,0.97802,0.680499,0.0980577,0.727219,0.439552,0.865698,0.964104,0.133358,0.665007,0.146932,0.544761,0.364911,0.621297,0.902357,0.703928,0.977532,0.701067,0.477654,0.599726,0.96021,0.750258,0.548042,0.253606,0.270259,0.18751,0.682835,0.311766,0.0754172,0.99575,0.867085,0.624797,0.455996,0.84591,0.42679,0.556522,0.72582,0.843109,0.574804,0.823899,0.296389,0.436524,0.0448484,0.133028,0.654982,0.357542,0.962968,0.271789,0.211437,0.932384,0.0310107,0.49417,0.0867911,0.664845,0.349493,0.761812,0.264465,0.883762,0.748521,0.29095,0.336199,0.0840868,0.321493,0.357358,0.947909,0.60913,0.451698,0.368757,0.5737,0.0623003,0.40616,0.345491,0.191066,0.0529234,0.716227,0.572057,0.874567,0.102282,0.770998,0.924744,0.210808,0.793288,0.574948,0.29324,0.757335,0.602035,0.761115,0.68314,0.0216523,0.0243628,0.780914,0.471049,0.750201,0.251383,0.730308,0.487218,0.118918,0.266891,0.43663,0.443922,0.103288,0.726221,0.075961,0.662951,0.187967,0.623077,0.692026,0.990331,0.643125,0.493225,0.0647582,0.38117,0.772508,0.428959,0.278758,0.626095,0.502355,0.804218,0.021753,0.473292,0.423411,0.831596,0.840521,0.372921,0.509217,0.377785,0.48511,0.158097,0.287635,0.0320419,0.265928,0.690157,0.0594327,0.923162,0.637884,0.312066,0.036717,0.617121,0.995332,0.96763,0.12715,0.658258,0.921858,0.962907,0.575963,0.802708,0.96228,0.788788,0.341488,0.0110747,0.499927,0.530895,0.213527,0.847506,0.470061,0.159252,0.232806,0.962313,0.706575,0.624122,0.178701,0.0160844,0.187314,0.734005,0.75878,0.0489723,0.626782,0.0504357,0.365159,0.553882,0.897724,0.180743,0.580486,0.774358,0.631605,0.165689,0.538619,0.0630709,0.713122,0.651805,0.0605749,0.947878,0.689573,0.794395,0.284275,0.426045,0.44124,0.738334,0.981387,0.872283,0.197363,0.133437,0.610343,0.134989,0.376244,0.848885,0.234596,0.455284,0.173005,0.508145,0.355611,0.32779,0.985483,0.760526,0.186933,0.810537,0.489468,0.953819,0.238795,0.401983,0.417432,0.250523,0.0304927,0.0175212,0.819315,0.20537,0.501221,0.700538,0.775078,0.62624,0.342141,0.192227,0.240555,0.392884,0.0620542,0.971751,0.36579,0.103191,0.102546,0.27666,0.243773,0.380138,0.545623,0.887334,0.889841,0.231044,0.512216,0.934088,0.484129,0.982813,0.898823,0.817456,0.138604,0.376534,0.725412,0.491436,0.398687,0.947407,0.415073,0.320596,0.709018,0.66715,0.605571,0.12821,0.206268,0.335277,0.0340658,0.586091,0.993262,0.752836,0.238799,0.837538,0.853911,0.615112,0.108751,0.324522,0.553414,0.632945,0.880509,0.479074,0.486036,0.360697,0.605147,0.184208,0.586402,0.439832,0.580614,0.035602,0.402327,0.881635,0.837238,0.246624,0.346953,0.238781,0.0171921,0.712468,0.657691,0.171782,0.357034,0.402766,0.127784,0.252204,0.772273,0.978705,0.70136,0.110507,0.0523615,0.802326,0.191139,0.506401,0.998618,0.429772,0.973023,0.325264,0.363665,0.554926,0.235755,0.141243,0.403567,0.127707,0.407747,0.405384,0.742352,0.891221,0.150235,0.599701,0.433712,0.759912,0.0747813,0.765122,0.999901,0.434957,0.726346,0.657028,0.731859,0.97434,0.615304,0.3876,0.267315,0.990905,0.26829,0.938418,0.52154,0.684495,0.104392,0.721972,0.105868,0.999571,0.919469,0.536956,0.931058,0.702029,0.528305,0.470582,0.542085,0.814473,0.511028,0.512512,0.635159,0.341864,0.218709,0.581249,0.245261,0.20221,0.55393,0.00982922,0.793735,0.169275,0.757165,0.258828,0.532729,0.361313,0.47801,0.195768,0.0135113,0.11503,0.773199,0.218675,0.686098,0.927653,0.743271,0.653141,0.941251,0.808743,0.560516,0.754252,0.441789,0.914666,0.0443895,0.237373,0.167992,0.928259,0.675103,0.297446,0.573778,0.114496,0.975966,0.235202,0.618595,0.0925636,0.82759,0.143395,0.111503,0.803496,0.241823,0.448639,0.775231,0.196722,0.596795,0.0826569,0.416709,0.92598,0.605197,0.379775,0.0983872,0.662569,0.840383,0.866578,0.29769,0.676999,0.144772,0.640824,0.640136,0.0759992,0.300429,0.318493,0.704638,0.912226,0.226349,0.49499,0.495474,0.29685,0.462888,0.642328,0.830028,0.369152,0.0468788,0.996644,0.199805,0.932464,0.586056,0.446162,0.162497,0.654958,0.450079,0.0191273,0.750476,0.352437,0.0512455,0.95586,0.791679,0.417319,0.359653,0.791156,0.0759839,0.0735477,0.76753,0.47275,0.0667059,0.584031,0.0549948,0.997966,0.583759,0.46462,0.16805,0.986549,0.382116,0.817726,0.643621,0.946275,0.845805,0.0263725,0.36436,0.167078,0.176155,0.951357,0.4726,0.850268,0.346691,0.686347,0.0131848,0.237922,0.00592977,0.523657,0.341007,0.394338,0.599598,0.49125,0.21652,0.00291228,0.754895,0.471756,0.960681,0.383906,0.355434,0.225876,0.685403,0.932274,0.595726,0.790687,0.126265,0.939017,0.185467,0.800433,0.0610216,0.517351,0.440239,0.569676,0.96038,0.360527,0.323706,0.664035,0.395716,0.223719,0.612665,0.0815462,0.321503,0.541589,0.662509,0.461319,0.805226,0.613328,0.718464,0.0154791,0.391162,0.398333,0.419468,0.967876,0.118007,0.576044,0.881553,0.89226,0.897467,0.331291,0.00220072,0.384023,0.173353,0.022164,0.908892,0.752703,0.720639,0.971668,0.318293,0.711829,0.618267,0.481161,0.908164,0.326083,0.697368,0.927554,0.52377,0.142357,0.602012,0.858362,0.562174,0.179376,0.831205,0.53219,0.773435,0.762829,0.586648,0.782438,0.576759,0.311089,0.905188,0.647068,0.862519,0.604878,0.594864,0.854643,0.406016,0.330349,0.286738,0.556601,0.92179,0.685739,0.780307,0.495109,0.822207,0.634718,0.682158,0.656195,0.41808,0.825484,0.821982,0.11236,0.250178,0.471478,0.497413,0.234668,0.15636,0.357152,0.878509,0.758192,0.303347,0.236382,0.958757,0.93018,0.973208,0.866036,0.331218,0.598053,0.726218,0.846654,0.290534,0.954673,0.510781,0.74433,0.930751,0.125979,0.380694,0.944694,0.982259,0.225787,0.561566,0.177181,0.804713,0.370411,0.0351725,0.489072,0.257951,0.986315,0.654273,0.392713,0.276643,0.502285,0.940809,0.720734,0.128046,0.354933,0.280767,0.366133,0.709776,0.582038,0.969246,0.821492,0.933082,0.0443758,0.0701606,0.0362903,0.0708185,0.66999,0.834057,0.278803,0.388899,0.115763,0.770503,0.251879,0.232217,0.920513,0.332145,0.231673,0.854693,0.926631,0.629044,0.385231,0.89687,0.345767,0.306002,0.0779268,0.279844,0.224265,0.684005,0.282158,0.268146,0.256329,0.16291,0.202007,0.334665,0.312334,0.433293,0.51761,0.669748,0.294132,0.107497,0.450297,0.687736,0.597941,0.791364,0.63615,0.969853,0.0759797,0.375219,0.788473,0.283104,0.541589,0.447607,0.474756,0.696563,0.587981,0.0435146,0.325098,0.0813763,0.284374,0.13384,0.748513,0.24013,0.176811,0.94643,0.21056,0.592768,0.787849,0.170281,0.66411,0.656263,0.154487,0.231877,0.00616378,0.28437,0.80505,0.804377,0.0455151,0.949556,0.0839298,0.769559,0.774436,0.219953,0.859037,0.141814,0.705085,0.243773,0.522171,0.236154,0.994402,0.80782,0.88451,0.610194,0.487912,0.0510192,0.0666828,0.824801,0.479966,0.257613,0.827982,0.614403,0.173287,0.108611,0.481481,0.870626,0.231248,0.790385,0.872892,0.796359,0.600315,0.800717,0.0894432,0.274888,0.0443537,0.45181,0.659965,0.53616,0.746101,0.32013,0.392883,0.261301,0.908732,0.115363,0.67255,0.840722,0.0614608,0.466604,0.528782,0.283726,0.334108,0.320126,0.463071,0.838736,0.645305,0.781591,0.00840664,0.0494267,0.0327753,0.155859,0.217407,0.713246,0.78864,0.624785,0.357733,0.992192,0.706513,0.199347,0.825893,0.455136,0.817462,0.855253,0.93554,0.0732663,0.287579,0.635167,0.408591,0.0412246,0.0251665,0.993075,0.202825,0.531025,0.453652,0.566086,0.0832493,0.887827,0.986762,0.233908,0.64016,0.484331,0.119963,0.189492,0.827526,0.468767,0.34645,0.000116885,0.523874,0.560824,0.237227,0.218928,0.395958,0.626554,0.839648,0.850898,0.00979674,0.923433,0.0999897,0.819398,0.248045,0.657604,0.187392,0.617802,0.391015,0.769493,0.94799,0.172969,0.206263,0.679384,0.705941,0.288872,0.0205851,0.230534,0.647287,0.793734,0.996278,0.5099,0.863737,0.556613,0.986012,0.72162,0.155069,0.801861,0.896958,0.788152,0.647751,0.179816,0.71619,0.0331804,0.827357,0.308631,0.892694,0.655316,0.635135,0.97795,0.647646,|0.211147,0.216994,0.274328,0.154968,0.481365,0.136909,0.527496,0.549309,0.849534,0.807776,0.967075,0.935336,0.550321,0.215933,0.101734,0.89048,0.150062,0.183177,0.540581,0.0764911,0.333407,0.936908,0.98628,0.961063,0.467551,0.701223,0.00555122,0.862688,0.668954,0.9028,0.367036,0.154024,0.868928,0.177999,0.585248,0.502314,0.809485,0.463233,0.727634,0.831428,0.892086,0.262616,0.942554,0.487148,0.833139,0.648743,0.714056,0.0440202,0.760835,0.158314,0.758685,0.352883,0.845837,0.556254,0.617881,0.8916,0.0588313,0.0554357,0.282075,0.0957602,0.0251579,0.630258,0.717096,0.962568,0.74123,0.974741,0.162899,0.398704,0.862317,0.157378,0.0654884,0.289737,0.396761,0.374637,0.174299,0.829163,0.894021,0.2394,0.498301,0.205193,0.418031,0.422124,0.362747,0.197226,0.966005,0.0341246,0.980348,0.387164,0.0448483,0.185601,0.36713,0.593185,0.994478,0.743928,0.889592,0.583511,0.274414,0.0493038,0.860392,0.860942,0.12908,0.50901,0.806019,0.150183,0.00494248,0.355319,0.398129,0.637917,0.627526,0.701991,0.818541,0.341065,0.578114,0.801579,0.0783861,0.515663,0.995749,0.658848,0.530811,0.806566,0.76908,0.380773,0.760666,0.188863,0.838336,0.875256,0.673424,0.153719,0.21995,0.715015,0.399972,0.935128,0.3975,0.427572,0.159675,0.221313,0.716293,0.307833,0.706474,0.88075,0.714194,0.0582026,0.416178,0.386506,0.984053,0.25231,0.128285,0.0379894,0.0330992,0.970698,0.342794,0.382774,0.48926,0.833413,0.734844,0.830921,0.110979,0.773357,0.261956,0.473315,0.0986329,0.396012,0.487404,0.861648,0.492275,0.534677,0.58482,0.258931,0.781272,0.372557,0.323041,0.507022,0.462353,0.286812,0.425001,0.0318298,0.162342,0.470399,0.684832,0.781517,0.64492,0.939852,0.936118,0.352423,0.396285,0.411476,0.314232,0.649262,0.262968,0.53953,0.83361,0.721014,0.275268,0.756814,0.0917244,0.14559,0.271197,0.389307,0.468783,0.427211,0.144559,0.235558,0.138667,0.178367,0.593388,0.661169,0.33998,0.00588208,0.457498,0.505774,0.779611,0.452492,0.412799,0.0736839,0.0118423,0.718599,0.120727,0.690675,0.608556,0.536369,0.50229,0.485113,0.514338,0.394291,0.0168867,0.262775,0.217701,0.775741,0.718116,0.364727,0.853961,0.809568,0.353813,0.881797,0.254258,0.715753,0.307975,0.464785,0.114377,0.486173,0.040773,0.0258658,0.418737,0.786089,0.669291,0.878723,0.417646,0.523089,0.383358,0.322325,0.331028,0.428017,0.214246,0.822554,0.698839,0.123258,0.223356,0.595051,0.72149,0.091215,0.705763,0.925978,0.797052,0.588947,0.272397,0.587825,0.797418,0.047464,0.74968,0.185325,0.316978,0.484739,0.90039,0.953325,0.163312,0.506125,0.494283,0.00711191,0.836801,0.0991123,0.325584,0.0252607,0.655691,0.892425,0.206208,0.298905,0.553789,0.368109,0.762316,0.449989,0.0507542,0.0885231,0.290917,0.975451,0.548915,0.248756,0.635399,0.901919,0.674724,0.69032,0.669541,0.209285,0.377205,0.571767,0.789329,0.766934,0.00852787,0.624851,0.658941,0.774393,0.588089,0.993878,0.0138725,0.0965624,0.101676,0.760951,0.196212,0.581871,0.700185,0.677438,0.973791,0.206411,0.94986,0.595727,0.0706628,0.737333,0.629001,0.723118,0.947785,0.158781,0.602344,0.227648,0.97936,0.0313309,0.671654,0.650061,0.540003,0.523165,0.69816,0.539401,0.0633602,0.344768,0.989246,0.207986,0.267384,0.00582564,0.671271,0.0794246,0.751502,0.69285,0.525748,0.285853,0.122099,0.90888,0.220397,0.939364,0.558341,0.198813,0.726216,0.679642,0.0167297,0.745585,0.377932,0.174974,0.786214,0.93167,0.261265,0.414281,0.389798,0.586755,0.894516,0.891862,0.662447,0.377922,0.221457,0.776346,0.563808,0.880117,0.410761,0.439425,0.232427,0.223917,0.32197,0.106997,0.61005,0.678055,0.378623,0.463401,0.0521297,0.816655,0.701366,0.261828,0.694202,0.652718,0.31432,0.176053,0.0821102,0.260203,0.981609,0.888608,0.0609613,0.101004,0.585388,0.909119,0.790131,0.779372,0.114061,0.469431,0.286449,0.288855,0.726541,0.112349,0.821471,0.984961,0.442193,0.996456,0.43912,0.533181,0.860432,0.828983,0.429468,0.00715882,0.293284,0.905726,0.341936,0.200734,0.680499,0.731473,0.567575,0.0176589,0.817829,0.411106,0.13868,0.86591,0.346009,0.977626,0.204543,0.946059,0.505108,0.727691,0.474685,0.957611,0.358436,0.51141,0.323823,0.610379,0.255151,0.461848,0.604003,0.823011,0.337591,0.972994,0.657726,0.349172,0.598362,0.543852,0.364641,0.115855,0.134208,0.525996,0.311321,0.297948,0.62173,0.357726,0.252927,0.212914,0.830699,0.481374,0.0633699,0.418217,0.508153,0.789376,0.820243,0.743704,0.733233,0.118548,0.632949,0.784153,0.755651,0.353781,0.44914,0.996503,0.143576,0.477871,0.0662668,0.591182,0.99655,0.361019,0.038968,0.191389,0.727165,0.540151,0.62999,0.777476,0.693389,0.681472,0.746382,0.659568,0.509121,0.218424,0.0931807,0.382306,0.135231,0.0702268,0.61588,0.391978,0.153668,0.828227,0.500188,0.19651,0.660867,0.358983,0.840007,0.779879,0.417328,0.182028,0.0959723,0.262964,0.234482,0.650487,0.00888896,0.298375,0.43135,0.299627,0.45884,0.484656,0.127646,0.139573,0.171193,0.0549468,0.156812,0.0541884,0.481979,0.702948,0.0776197,0.112103,0.488393,0.876478,0.468213,0.110278,0.325364,0.735018,0.640135,0.910604,0.966202,0.22014,0.31452,0.890702,0.394255,0.663005,0.888689,0.276938,0.346934,0.765827,0.966912,0.299612,0.547893,0.00580847,0.578272,0.199129,0.443765,0.293028,0.706247,0.11714,0.0929009,0.955972,0.8646,0.724475,0.5413,0.575414,0.0997425,0.0241024,0.586983,0.627228,0.231858,0.364706,0.445168,0.988346,0.382769,0.268577,0.142505,0.516072,0.105061,0.271942,0.287693,0.789628,0.0489165,0.633501,0.204778,0.772262,0.396719,0.0251575,0.735607,0.753204,0.46571,0.303671,0.36024,0.398199,0.966106,0.60709,0.926859,0.380118,0.655821,0.658295,0.831587,0.131709,0.828244,0.969315,0.216572,0.80608,0.659008,0.832084,0.465993,0.102206,0.970371,0.91969,0.692451,0.375945,0.869902,0.302105,0.345821,0.176747,0.454588,0.0629549,0.418396,0.460563,0.491906,0.35428,0.0479046,0.107326,0.297562,0.0145692,0.31297,0.0543975,0.760025,0.250412,0.913418,0.58592,0.546403,0.527828,0.406855,0.820076,0.942882,0.317518,0.968862,0.883186,0.621807,0.355151,0.458026,0.628316,0.7348,0.0875465,0.105826,0.202853,0.47809,0.820674,0.263986,0.779934,0.727576,0.597893,0.953051,0.551629,0.345285,0.207488,0.266492,0.465348,0.614298,0.504038,0.948713,0.621651,0.425911,0.983932,0.949519,0.0991154,0.302698,0.950811,0.887265,0.900027,0.416975,0.766592,0.599858,0.320259,0.0500804,0.329172,0.312946,0.776921,0.846,0.389697,0.383665,0.417275,0.693722,0.462518,0.556263,0.483201,0.0562918,0.0988076,0.467987,0.64291,0.0966443,0.885379,0.190121,0.249859,0.17274,0.716163,0.526222,0.429561,0.359012,0.548487,0.242112,0.366657,0.467514,0.764718,0.703449,0.232246,0.292386,0.755722,0.128362,0.360002,0.862418,0.413203,0.571669,0.239873,0.75133,0.602543,0.433578,0.575315,0.254666,0.0822681,0.554476,0.128601,0.348061,0.98264,0.351565,0.60884,0.306013,0.921606,0.898483,0.603874,0.639443,0.0467647,0.13801,0.773802,0.533922,0.387752,0.240196,0.351475,0.0147541,0.120682,0.0760112,0.432884,0.273779,0.714106,0.568963,0.373216,0.22452,0.733234,0.112446,0.576128,0.405455,0.445379,0.475559,0.776602,0.837557,0.298517,0.750517,0.692796,0.926488,0.892454,0.433508,0.517493,0.544822,0.559346,0.584376,0.571258,0.0568376,0.635228,0.0119085,0.747812,0.0857197,0.405101,0.310707,0.249955,0.186176,0.0685608,0.343249,0.163945,0.543226,0.381544,0.612167,0.966366,0.102767,0.746408,0.443568,0.821596,0.458185,0.92027,0.567467,0.68242,0.789917,0.891126,0.568662,0.879986,0.026714,0.957858,0.304677,0.448521,0.209938,0.234881,0.547883,0.222662,0.228708,0.667604,0.188895,0.0780144,0.144707,0.690607,0.213903,0.840949,0.0993561,0.283226,0.574964,0.215436,0.834169,0.84728,0.31515,0.191582,0.659561,0.289754,0.772054,0.789385,0.145092,0.725126,0.803146,0.322034,0.693273,0.148582,0.126534,0.247546,0.373063,0.426995,0.175831,0.758938,0.429872,0.489463,0.67787,0.836335,0.115381,0.255325,0.349103,0.350664,0.599153,0.262136,0.481769,0.256106,0.0212074,0.669363,0.576947,0.956455,0.204208,0.0153412,0.858144,0.192588,0.010084,0.761634,0.539532,0.114072,0.873843,0.374355,0.77908,0.845743,0.515465,0.734061,0.650993,0.987276,0.387298,0.946306,0.195605,0.849144,0.115967,0.61305,0.525963,0.387303,0.967868,0.282376,0.384953,0.301543,0.986312,0.615838,0.867645,0.930802,0.677028,0.836156,0.444792,0.942584,0.659884,0.00297505,0.354502,0.384701,0.935756,0.555606,0.441492,0.546308,0.115318,0.27967,0.272916,0.766732,0.316336,0.692497,0.715729,0.154403,0.25691,0.175404,0.305126,0.965763,0.165032,0.0634741,0.893843,0.360016,0.0284693,0.585375,0.177936,0.32676,0.433444,0.0297505,0.1832,0.601773,0.174778,0.0683421,0.896076,0.34009,0.468522,0.397119,0.7633,0.965644,0.35093,0.33321,0.557163,0.948726,0.346492,0.312158,0.7711,0.47103,0.1412,0.470629,0.740853,0.164551,0.579106,0.216224,0.100957,0.286015,0.655788,0.836688,0.415431,0.105701,0.131527,0.35388,0.688062,0.0324063,0.14194,0.472468,0.20019,0.389944,0.547951,0.404262,0.614354,0.121956,0.181458,0.944211,0.0127868,0.975664,0.419306,0.974113,0.201437,0.66345,0.364987,0.27887,0.992559,0.864309,0.565993,0.237054,0.222877,0.436147,0.132619,0.904982,0.650128,0.669702,0.0933018,0.113597,0.293438,0.781981,0.94345,0.389951,0.925857,0.465266,0.0807312,0.625592,0.551431,0.172784,0.864149,0.287638,|0.333407,0.306997,0.293709,0.214501,0.448271,0.880973,0.245165,0.760041,0.763712,0.0351722,0.491583,0.552679,0.621445,0.948353,0.889199,0.0777027,0.123808,0.609241,0.898356,0.442864,0.703891,0.904346,0.450247,0.354906,0.897943,0.823128,0.674197,0.508938,0.776065,0.522031,0.88439,0.646122,0.365851,0.216122,0.236261,0.310497,0.645867,0.163562,0.71164,0.140001,0.781401,0.921277,0.996167,0.946473,0.350381,0.861775,0.0796984,0.422283,0.61527,0.662915,0.559569,0.957424,0.225128,0.213038,0.409022,0.0828348,0.811512,0.252243,0.673392,0.213062,0.265557,0.85748,0.267796,0.271637,0.704861,0.872398,0.425201,0.659103,0.442301,0.659504,0.611234,0.903763,0.793472,0.537622,0.0105152,0.432133,0.387709,0.162917,0.603785,0.00697207,0.030949,0.992741,0.583642,0.471646,0.137823,0.618329,0.201725,0.22971,0.848535,0.968429,0.331232,0.443491,0.83482,0.556969,0.285992,0.493926,0.0472636,0.187304,0.347645,0.148607,0.465991,0.552287,0.0232988,0.429009,0.334795,0.990706,0.188018,0.90574,0.895509,0.614787,0.496124,0.601962,0.465364,0.89783,0.617371,0.78776,0.245588,0.896142,0.41434,0.185741,0.9124,0.684402,0.431379,0.217438,0.152698,0.975014,0.0244129,0.370693,0.180079,0.689835,0.311604,0.362494,0.42599,0.661325,0.0947362,0.883686,0.795962,0.277785,0.908411,0.943106,0.483998,0.823858,0.668798,0.855357,0.719561,0.431969,0.966904,0.983674,0.404724,0.605183,0.188608,0.768317,0.105032,0.414545,0.758685,0.816473,0.0747926,0.74534,0.579509,0.484901,0.955927,0.309837,0.861463,0.280765,0.0401781,0.0904911,0.475221,0.898463,0.383161,0.759783,0.401595,0.617418,0.470084,0.605004,0.536211,0.914066,0.494535,0.412809,0.973242,0.809274,0.595768,0.0919801,0.76469,0.689636,0.716302,0.70324,0.101261,0.332333,0.0575882,0.332779,0.418923,0.363749,0.498834,0.374497,0.25133,0.0420727,0.687348,0.422121,0.405401,0.29113,0.782608,0.917759,0.570042,0.978273,0.530564,0.619882,0.0647138,0.300776,0.425444,0.0686141,0.0385438,0.0708219,0.584448,0.171872,0.411011,0.367022,0.0164119,0.553546,0.634455,0.923362,0.589961,0.0274506,0.403321,0.999295,0.932924,0.668655,0.357902,0.735097,0.106056,0.83105,0.659793,0.378501,0.169568,0.681792,0.108071,0.877175,0.701114,0.789956,0.836467,0.571192,0.674698,0.646914,0.547885,0.494301,0.664903,0.937868,0.394258,0.0309806,0.103762,0.88266,0.150747,0.923422,0.0663255,0.545428,0.183078,0.610034,0.221394,0.790301,0.341497,0.508452,0.0917809,0.344011,0.299877,0.0375187,0.824322,0.0054841,0.671525,0.853009,0.321988,0.903203,0.817603,0.559226,0.303484,0.766335,0.00820392,0.920763,0.783902,0.440378,0.0745706,0.971529,0.521487,0.723742,0.967137,0.152929,0.546797,0.0640435,0.31947,0.152853,0.30238,0.667105,0.171265,0.509768,0.753818,0.639626,0.707337,0.799139,0.828439,0.655562,0.193466,0.792892,0.72891,0.173786,0.791153,0.78615,0.235642,0.348728,0.65204,0.581071,0.7029,0.505386,0.673525,0.901236,0.156562,0.0602375,0.914469,0.0108507,0.346175,0.285078,0.921494,0.618937,0.359177,0.974479,0.899747,0.479004,0.873179,0.765587,0.495579,0.0577013,0.545062,0.509514,0.747197,0.340622,0.709104,0.264913,0.884833,0.521377,0.96677,0.525476,0.657173,0.379083,0.895407,0.0848129,0.387439,0.851824,0.806209,0.527292,0.953288,0.66824,0.602068,0.517518,0.67781,0.761529,0.0793415,0.192212,0.322282,0.269017,0.37656,0.496882,0.823851,0.468257,0.975335,0.883311,0.276586,0.836037,0.665266,0.563393,0.989033,0.569363,0.301304,0.800036,0.389492,0.460624,0.386412,0.637614,0.613288,0.308509,0.969807,0.407602,0.560806,0.907641,0.342274,0.299146,0.4286,0.989969,0.804108,0.679255,0.641793,0.111644,0.246426,0.254499,0.295518,0.306269,0.987093,0.207419,0.548891,0.0693155,0.790037,0.840801,0.702769,0.867123,0.764768,0.128909,0.943207,0.451949,0.736696,0.0821682,0.535649,0.937147,0.815581,0.668829,0.320187,0.153409,0.394741,0.127156,0.167932,0.915279,0.411695,0.324326,0.864512,0.131103,0.503819,0.949893,0.762437,0.986206,0.861945,0.403095,0.48419,0.223878,0.256603,0.760039,0.0390948,0.701522,0.170815,0.0213537,0.590612,0.9454,0.492383,0.696355,0.0471709,0.924984,0.259455,0.218253,0.649771,0.170588,0.775933,0.262729,0.83324,0.00734127,0.0621378,0.818314,0.767568,0.600825,0.367733,0.668692,0.242735,0.249963,0.661185,0.0990988,0.496388,0.0998276,0.484817,0.841464,0.948959,0.436461,0.731821,0.603938,0.729797,0.25939,0.23102,0.679234,0.0999503,0.688682,0.911093,0.0962569,0.736613,0.775359,0.150796,0.735179,0.011674,0.491008,0.0790412,0.584517,0.0864604,0.130641,0.484058,0.0587035,0.961219,0.443138,0.040853,0.0972471,0.81608,0.833935,0.145369,0.547874,0.554799,0.370083,0.534479,0.778305,0.440779,0.365766,0.889913,0.123969,0.944584,0.283547,0.1713,0.845109,0.89989,0.591416,0.718666,0.359975,0.424026,0.254053,0.381546,0.992386,0.258902,0.434121,0.982027,0.994718,0.969802,0.246367,0.867153,0.87596,0.861495,0.594603,0.863298,0.558186,0.710196,0.939553,0.6301,0.901299,0.475534,0.79009,0.640104,0.381678,0.429073,0.60425,0.657548,0.976612,0.449116,0.464301,0.683543,0.528318,0.835098,0.238032,0.267586,0.68903,0.93436,0.439889,0.645383,0.465691,0.308043,0.472986,0.983368,0.190068,0.406238,0.387191,0.300648,0.387118,0.788857,0.418717,0.00120038,0.882125,0.455043,0.310534,0.0780284,0.234078,0.785937,0.840021,0.555845,0.634948,0.695824,0.236713,0.192462,0.751347,0.495146,0.477015,0.554485,0.119182,0.0562969,0.23306,0.713012,0.417646,0.864546,0.0767794,0.389935,0.0645158,0.305301,0.508722,0.882766,0.874142,0.735185,0.90627,0.70395,0.427461,0.229708,0.279682,0.198003,0.437937,0.70041,0.589806,0.361656,0.739073,0.929543,0.9533,0.904245,0.855941,0.435227,0.373274,0.709287,0.842645,0.155885,0.0604113,0.557059,0.776317,0.149852,0.203973,0.399762,0.815145,0.832228,0.317063,0.305067,0.503307,0.693039,0.0127139,0.876069,0.448018,0.345032,0.843882,0.219169,0.640225,0.575526,0.732105,0.965085,0.503696,0.973026,0.266973,0.685549,0.094614,0.898945,0.351987,0.804269,0.501987,0.454415,0.225138,0.243104,0.942295,0.478616,0.285603,0.0762427,0.174792,0.0454538,0.236886,0.382248,0.737209,0.463986,0.661516,0.616788,0.581165,0.488622,0.905857,0.00661075,0.695069,0.34933,0.93061,0.89205,0.908006,0.910803,0.957604,0.369382,0.647434,0.0994011,0.976518,0.146734,0.4418,0.358702,0.83419,0.874739,0.194377,0.977663,0.845573,0.478413,0.175508,0.957803,0.968902,0.434336,0.445513,0.473299,0.176641,0.102961,0.120687,0.192939,0.918213,0.909098,0.0892146,0.727027,0.606243,0.194607,0.0106221,0.785575,0.93563,0.0621125,0.907157,0.882888,0.453698,0.94032,0.317327,0.840671,0.971636,0.368912,0.352661,0.927706,0.413285,0.362551,0.111102,0.455309,0.53315,0.133402,0.236721,0.540436,0.878173,0.134864,0.984382,0.159917,0.477409,0.0646185,0.789812,0.572383,0.348538,0.717433,0.619161,0.129946,0.259529,0.10166,0.827075,0.362722,0.329555,0.943864,0.760105,0.247931,0.764539,0.649172,0.120611,0.682208,0.603575,0.295108,0.882639,0.553452,0.762482,0.199138,0.348703,0.136646,0.146768,0.344938,0.225854,0.833158,0.0659382,0.431336,0.42459,0.304825,0.967667,0.135979,0.228976,0.854698,0.215606,0.277024,0.219548,0.287699,0.983482,0.557745,0.075349,0.770867,0.738709,0.670918,0.494718,0.292602,0.768081,0.69622,0.858895,0.687752,0.721106,0.1541,0.493913,0.0105317,0.725503,0.626993,0.42955,0.0348882,0.896594,0.897283,0.244008,0.950875,0.305333,0.00567281,0.126861,0.0239363,0.769805,0.669222,0.519992,0.375105,0.764565,0.268588,0.585398,0.355386,0.829177,0.48287,0.70968,0.296204,0.985189,0.416886,0.165131,0.712501,0.457711,0.948206,0.254681,0.891692,0.503851,0.511894,0.443079,0.273647,0.44858,0.338549,0.129039,0.832252,0.447843,0.590479,0.720706,0.835938,0.652965,0.167008,0.00737125,0.0661331,0.680001,0.0995837,0.180251,0.521597,0.849682,0.0519678,0.359248,0.803228,0.957086,0.950258,0.788978,0.472681,0.327968,0.776071,0.987008,0.48802,0.0215058,0.134246,0.623984,0.0897775,0.579561,0.03877,0.429084,0.470859,0.0258787,0.307416,0.169859,0.0521832,0.582376,0.21533,0.0497692,0.895187,0.590921,0.34999,0.381631,0.595435,0.605894,0.00201631,0.252769,0.555162,0.616917,0.523121,0.387542,0.747526,0.157774,0.780102,0.448192,0.384476,0.161657,0.862518,0.827941,0.402098,0.0946618,0.434972,0.856575,0.023648,0.733292,0.0747328,0.599931,0.0740368,0.0706517,0.806871,0.208313,0.793215,0.331301,0.274215,0.393598,0.748108,0.73749,0.637695,0.187199,0.950723,0.553458,0.829642,0.532582,0.275535,0.00464201,0.449627,0.8729,0.786184,0.214556,0.709401,0.0583513,0.636671,0.325405,0.287717,0.519677,0.434928,0.538043,0.902753,0.193381,0.0647914,0.273686,0.381861,0.22859,0.332542,0.0769556,0.816427,0.976523,0.928264,0.0940948,0.303703,0.120553,0.0118543,0.814258,0.358788,0.612513,0.779989,0.972953,0.763303,0.0471155,0.301765,0.747725,0.501628,0.71404,0.86365,0.800372,0.875112,0.828593,0.965074,0.0775428,0.0850191,0.148023,0.922965,0.481989,0.798272,0.000815213,0.820393,0.603974,0.727272,0.27301,0.503929,0.0909142,0.478247,0.577104,0.485977,0.0265142,0.853547,0.218784,0.604025,0.270079,0.550165,0.318453,0.109241,0.884367,0.289811,0.908913,0.0853797,0.417639,0.981529,0.400387,0.56761,0.26617,0.603573,0.850421,0.359046,0.065736,0.30515,0.00964862,0.605566,0.948051,0.987857,0.129096,0.574903,0.152441,0.16724,0.486781,0.261126,0.0778419,|0.446195,0.898252,0.381059,0.673921,0.838907,0.00812334,0.147651,0.324515,0.512073,0.993005,0.728159,0.92527,0.547887,0.670749,0.966723,0.202236,0.281428,0.357907,0.604645,0.616493,0.133866,0.500451,0.509264,0.16296,0.103348,0.807128,0.4383,0.055066,0.434182,0.999082,0.642226,0.122654,0.379626,0.851537,0.0322227,0.982769,0.816468,0.692535,0.121188,0.129836,0.594532,0.0169863,0.115099,0.218235,0.590265,0.50099,0.699004,0.0918371,0.6347,0.0684756,0.419522,0.113481,0.80704,0.78375,0.310767,0.105197,0.363665,0.623626,0.737848,0.799689,0.346154,0.368483,0.0892515,0.77569,0.136102,0.81803,0.802659,0.343989,0.878321,0.847087,0.796449,0.154558,0.518656,0.0718397,0.261784,0.2144,0.363097,0.869057,0.983702,0.839086,0.213894,0.297146,0.994657,0.463364,0.841202,0.0641882,0.682112,0.150343,0.423443,0.708698,0.834055,0.773665,0.593547,0.876421,0.378909,0.928227,0.536984,0.102683,0.246805,0.836346,0.355147,0.163428,0.369263,0.222813,0.791064,0.28681,0.179887,0.159647,0.66899,0.718027,0.376129,0.129622,0.727911,0.896584,0.658254,0.929164,0.255383,0.743127,0.638067,0.942275,0.0999115,0.80082,0.451055,0.793815,0.25559,0.988503,0.025126,0.642472,0.956834,0.175568,0.30293,0.0967484,0.340808,0.132178,0.916862,0.580378,0.564505,0.629441,0.636316,0.208394,0.363006,0.216864,0.656098,0.25312,0.314237,0.289557,0.802027,0.612652,0.949619,0.509619,0.800917,0.508,0.125586,0.18068,0.11277,0.813665,0.505865,0.118914,0.521854,0.933716,0.960474,0.153456,0.790141,0.955082,0.398036,0.0159278,0.803859,0.517672,0.03161,0.849705,0.638642,0.541995,0.88786,0.356331,0.874067,0.61509,0.650817,0.510053,0.448651,0.790608,0.400978,0.204811,0.283617,0.789561,0.0362234,0.542345,0.460571,0.116845,0.621515,0.0264279,0.989385,0.0465988,0.820504,0.37673,0.461582,0.584822,0.96147,0.61645,0.170376,0.525213,0.351632,0.979325,0.0358243,0.935016,0.833467,0.904872,0.53605,0.470928,0.902069,0.686531,0.440768,0.00611091,0.474779,0.978235,0.576893,0.366042,0.225711,0.0238503,0.148512,0.486158,0.928045,0.389747,0.111968,0.300932,0.16028,0.903935,0.819517,0.931266,0.295433,0.775987,0.627475,0.147127,0.97341,0.242032,0.424666,0.00363183,0.111271,0.179782,0.187196,0.661993,0.812545,0.53222,0.94944,0.922317,0.999338,0.498263,0.755539,0.385222,0.932052,0.866215,0.33802,0.636961,0.214659,0.692154,0.631189,0.117784,0.112844,0.92704,0.387657,0.128774,0.414786,0.710484,0.643428,0.143451,0.539602,0.147345,0.394928,0.0596443,0.382022,0.423881,0.414255,0.10183,0.0922415,0.789843,0.958727,0.251277,0.785673,0.769775,0.231415,0.989997,0.489958,0.993493,0.314655,0.596315,0.494255,0.587777,0.62621,0.845338,0.446831,0.0418506,0.998286,0.518726,0.227859,0.705105,0.293353,0.0971677,0.24557,0.45668,0.339745,0.59153,0.0746463,0.107097,0.027905,0.377015,0.758393,0.951056,0.627979,0.235849,0.849201,0.42469,0.753918,0.540243,0.993763,0.194072,0.330053,0.770457,0.168224,0.946361,0.670263,0.63953,0.212154,0.457503,0.346893,0.961717,0.781665,0.995595,0.0752816,0.0393288,0.129774,0.0852937,0.320977,0.693746,0.6855,0.372264,0.875301,0.210836,0.739555,0.56693,0.132764,0.14168,0.868214,0.562752,0.490134,0.15419,0.386439,0.416817,0.640021,0.159094,0.317834,0.380074,0.259391,0.00115454,0.572421,0.676548,0.66924,0.815774,0.844443,0.40645,0.0907208,0.875034,0.701749,0.490627,0.351094,0.322753,0.979313,0.752496,0.49633,0.59033,0.325913,0.570748,0.513793,0.991862,0.466877,0.33836,0.132225,0.949323,0.766426,0.782705,0.176874,0.605446,0.785401,0.756315,0.865619,0.480381,0.370857,0.61437,0.989461,0.147607,0.162921,0.636816,0.779268,0.717896,0.307814,0.171319,0.458953,0.388763,0.183951,0.769939,0.688755,0.966993,0.8961,0.427991,0.568355,0.15011,0.675753,0.208492,0.0592796,0.613366,0.670917,0.293263,0.980768,0.82498,0.305689,0.27114,0.324615,0.848381,0.536858,0.54847,0.21158,0.253599,0.370738,0.630574,0.00224286,0.821278,0.314021,0.261717,0.0659824,0.233311,0.164498,0.770796,0.361605,0.297275,0.57475,0.995252,0.824499,0.777189,0.395615,0.413446,0.0605659,0.606741,0.784373,0.780992,0.537724,0.954748,0.499665,0.585533,0.147406,0.412399,0.51196,0.897521,0.267306,0.000856102,0.424712,0.621465,0.409589,0.019442,0.815488,0.545822,0.370007,0.53907,0.0949037,0.559925,0.0239055,0.111669,0.892141,0.502584,0.205894,0.403286,0.715997,0.869945,0.494916,0.00356483,0.811284,0.710646,0.768582,0.928925,0.773885,0.274721,0.287638,0.0246339,0.90158,0.854556,0.75007,0.858625,0.701652,0.263471,0.156751,0.385606,0.490552,0.488123,0.219828,0.403528,0.43672,0.815299,0.662255,0.214906,0.225703,0.542893,0.560088,0.739838,0.509213,0.614174,0.826074,0.19917,0.286978,0.43221,0.0547375,0.384374,0.0464143,0.178428,0.393408,0.207576,0.0826914,0.163898,0.00654107,0.798049,0.193867,0.623489,0.611459,0.0657811,0.439638,0.566054,0.43834,0.796006,0.692518,0.631802,0.144533,0.0539588,0.782182,0.490717,0.435723,0.59223,0.00458312,0.183746,0.330587,0.937294,0.638099,0.0923811,0.610749,0.781305,0.804922,0.544703,0.0454186,0.935116,0.619867,0.717663,0.768202,0.0482196,0.125823,0.405752,0.989698,0.0882587,0.120178,0.165097,0.839141,0.500158,0.81252,0.0329281,0.457114,0.413327,0.909028,0.0471399,0.76077,0.691468,0.693494,0.966412,0.86311,0.909794,0.19101,0.415703,0.666323,0.905879,0.601082,0.137969,0.40863,0.360758,0.461327,0.0291528,0.704632,0.0407158,0.0649996,0.494366,0.262315,0.31461,0.125649,0.198786,0.233569,0.633574,0.404221,0.433659,0.249598,0.951597,0.0103917,0.237076,0.467376,0.141522,0.543762,0.6479,0.1963,0.204371,0.72242,0.10621,0.399453,0.864828,0.318853,0.278237,0.0592338,0.360421,0.773,0.996358,0.0171279,0.743709,0.938222,0.0820536,0.157655,0.431149,0.167733,0.771863,0.0482787,0.405273,0.187577,0.831491,0.245521,0.229786,0.719936,0.0658754,0.675138,0.180762,0.0383811,0.729351,0.816658,0.683116,0.532891,0.633837,0.704648,0.0362682,0.665678,0.349374,0.189348,0.00979233,0.515274,0.131255,0.992881,0.826106,0.530662,0.769342,0.127744,0.444219,0.824533,0.370798,0.287859,0.845252,0.611028,0.263213,0.0309848,0.746398,0.57285,0.747353,0.0929556,0.981087,0.775403,0.700193,0.715546,0.975973,0.223564,0.18383,0.196724,0.218626,0.642649,0.806159,0.620529,0.323744,0.870834,0.984232,0.414073,0.963822,0.896106,0.294069,0.261878,0.977759,0.811066,0.0142078,0.198971,0.153842,0.0561986,0.18861,0.955029,0.969946,0.630654,0.165136,0.0434367,0.0889304,0.0986016,0.0675164,0.879694,0.102665,0.618389,0.802981,0.765036,0.14887,0.0832906,0.605335,0.959504,0.615845,0.349212,0.106301,0.102318,0.776237,0.0695484,0.031036,0.565866,0.233987,0.707842,0.0635449,0.781551,0.268147,0.0978161,0.190895,0.418549,0.935795,0.0992068,0.617043,0.068566,0.141073,0.322918,0.610554,0.457926,0.22218,0.974834,0.0842784,0.914972,0.979983,0.117968,0.959274,0.558671,0.427035,0.441856,0.981311,0.776583,0.724818,0.317695,0.190126,0.983663,0.402944,0.557484,0.917457,0.17606,0.442078,0.65731,0.299707,0.739513,0.583779,0.18295,0.507664,0.964947,0.364308,0.0339454,0.872581,0.737906,0.436375,0.594956,0.427426,0.45958,0.699506,0.341694,0.484787,0.710134,0.506127,0.904823,0.337605,0.363899,0.791775,0.312166,0.111651,0.259994,0.248725,0.909817,0.948838,0.893772,0.196632,0.80593,0.522791,0.974681,0.29603,0.420955,0.524811,0.408158,0.570614,0.553407,0.886657,0.586235,0.134836,0.351744,0.322461,0.672319,0.177427,0.736112,0.42183,0.567505,0.935969,0.918323,0.607231,0.327905,0.204437,0.177505,0.341473,0.410975,0.145198,0.673437,0.950114,0.832829,0.807411,0.398257,0.889651,0.723493,0.240387,0.852111,0.240537,0.523228,0.674817,0.759074,0.21883,0.571878,0.368362,0.793362,0.848273,0.693371,0.0623543,0.155383,0.879081,0.952367,0.971579,0.00903302,0.432401,0.891766,0.150481,0.120702,0.424522,0.620594,0.421472,0.965241,0.91123,0.598369,0.939809,0.662345,0.827861,0.733863,0.637107,0.438195,0.0751889,0.757949,0.860846,0.461513,0.102172,0.285558,0.456707,0.800737,0.209228,0.646796,0.737976,0.954506,0.628151,0.78352,0.93718,0.360954,0.562085,0.929458,0.902807,0.338894,0.109697,0.436592,0.341913,0.909691,0.826252,0.836491,0.642749,0.181086,0.628514,0.820764,0.702257,0.350467,0.378654,0.602712,0.185332,0.312124,0.974262,0.260533,0.151376,0.778711,0.0616219,0.0546701,0.555322,0.352857,0.318681,0.15404,0.0832875,0.622994,0.115568,0.591933,0.714145,0.331613,0.039919,0.691397,0.0494204,0.179698,0.390645,0.154813,0.620624,0.449239,0.120941,0.998779,0.977627,0.886866,0.0274674,0.859755,0.129037,0.164012,0.494832,0.126156,0.405407,0.00922722,0.935428,0.555311,0.665649,0.984987,0.906246,0.724115,0.830422,0.649016,0.501462,0.469726,0.0713391,0.659437,0.325547,0.525365,0.13995,0.571383,0.00833571,0.701105,0.803562,0.73153,0.176713,0.114239,0.347629,0.776802,0.428206,0.269531,0.532712,0.19532,0.853194,0.56602,0.769132,0.45086,0.0705008,0.443665,0.560608,0.721723,0.664336,0.268359,0.312307,0.998984,0.487525,0.94808,0.558267,0.426794,0.678877,0.459789,0.872132,0.16645,0.536019,0.4823,0.131277,0.243555,0.21594,0.0267395,0.867269,0.686621,0.997133,0.523927,0.608095,0.430815,0.0480215,0.952467,0.832793,0.265908,0.753169,0.0949733,0.894102,0.560464,0.940907,0.866673,0.703657,0.163056,0.397497,0.199452,0.421358,0.542302,0.997255,0.717756,0.361754,|0.619433,0.717165,0.326159,0.805319,0.634969,0.888135,0.856249,0.217143,0.101262,0.612887,0.786691,0.385248,0.236271,0.568559,0.0992209,0.677259,0.708503,0.0524198,0.369098,0.14057,0.787208,0.885513,0.728686,0.460917,0.580709,0.629729,0.606579,0.703944,0.866568,0.75822,0.379723,0.645195,0.969895,0.762621,0.563218,0.335722,0.383007,0.72496,0.476865,0.356119,0.893209,0.86577,0.0753969,0.686036,0.858609,0.649738,0.691058,0.207418,0.394917,0.374733,0.00156629,0.425246,0.0191635,0.584495,0.574948,0.200211,0.381607,0.612435,0.684753,0.26186,0.844448,0.406236,0.444757,0.506394,0.345494,0.0413996,0.295457,0.281706,0.19536,0.993941,0.209074,0.480401,0.241547,0.0126206,0.540955,0.428553,0.618852,0.455596,0.666173,0.601261,0.242027,0.519298,0.685509,0.832911,0.428437,0.549624,0.299902,0.0624276,0.806854,0.280337,0.248706,0.690959,0.92337,0.106863,0.0198902,0.250995,0.133562,0.178556,0.677531,0.398639,0.802103,0.396846,0.828048,0.648829,0.313364,0.801005,0.904883,0.247555,0.427912,0.0176488,0.140296,0.59535,0.919752,0.0875367,0.0880113,0.359321,0.775941,0.481275,0.830773,0.891062,0.723117,0.143506,0.743959,0.167994,0.98619,0.629551,0.201092,0.387619,0.17269,0.601992,0.645427,0.644702,0.58495,0.797111,0.510669,0.372122,0.398877,0.42122,0.0886862,0.770323,0.667436,0.308151,0.825628,0.255371,0.56142,0.0280775,0.329092,0.47358,0.415771,0.437596,0.21404,0.760534,0.514934,0.172151,0.784726,0.570418,0.581757,0.00693452,0.108674,0.100022,0.678123,0.713368,0.708455,0.342501,0.751447,0.658452,0.222322,0.714575,0.430366,0.365235,0.835617,0.00767058,0.768991,0.199715,0.7899,0.268005,0.822714,0.769978,0.622908,0.946082,0.34139,0.979635,0.863867,0.494824,0.629301,0.304988,0.583535,0.30958,0.00196105,0.502831,0.905773,0.722593,0.84834,0.338924,0.620883,0.448313,0.629348,0.945129,0.543151,0.563493,0.212848,0.624784,0.0510271,0.172827,0.402996,0.110641,0.724961,0.429332,0.761339,0.329431,0.147014,0.130078,0.798124,0.231031,0.885232,0.897641,0.470951,0.785473,0.529432,0.150395,0.973758,0.312659,0.507014,0.339854,0.0119542,0.618991,0.092445,0.669815,0.341597,0.134235,0.564577,0.926973,0.0365406,0.0975811,0.463766,0.409076,0.0183131,0.480735,0.249796,0.895693,0.320853,0.807848,0.131612,0.579683,0.422508,0.12548,0.102977,0.337104,0.00611234,0.243175,0.45,0.300864,0.526452,0.430791,0.307146,0.70152,0.825502,0.937385,0.989089,0.537813,0.907934,0.188014,0.413882,0.358716,0.681243,0.708505,0.586835,0.751879,0.969457,0.463978,0.563367,0.505769,0.21519,0.30138,0.959176,0.049826,0.0353051,0.729382,0.962737,0.678661,0.106029,0.19208,0.802855,0.463625,0.00198531,0.441643,0.723297,0.697385,0.886948,0.0917886,0.158376,0.338023,0.128346,0.464728,0.0906108,0.821272,0.918098,0.259766,0.457765,0.778466,0.971809,0.699105,0.419897,0.907762,0.052623,0.548237,0.477561,0.191445,0.256161,0.680414,0.672282,0.173246,0.384991,0.667986,0.660562,0.400291,0.0635679,0.681103,0.901199,0.214675,0.950789,0.574976,0.391181,0.689389,0.779064,0.305514,0.629408,0.273412,0.85267,0.870678,0.722742,0.504399,0.966202,0.711679,0.385989,0.518951,0.838184,0.105497,0.461817,0.0052765,0.412238,0.669161,0.831808,0.51906,0.988756,0.530429,0.896237,0.146452,0.993194,0.852867,0.680343,0.916708,0.355309,0.626914,0.157457,0.253031,0.167968,0.942544,0.133262,0.156151,0.25403,0.434586,0.9541,0.0713774,0.0389002,0.79574,0.631378,0.631171,0.407671,0.0995615,0.474108,0.564325,0.921579,0.779832,0.0381408,0.728584,0.434091,0.488358,0.281742,0.189838,0.152209,0.659484,0.880675,0.315629,0.385595,0.235199,0.510835,0.0369973,0.740045,0.25883,0.831353,0.329103,0.303208,0.284514,0.152876,0.315812,0.571917,0.921966,0.0805088,0.370077,0.36795,0.334257,0.709499,0.427333,0.342058,0.6242,0.182536,0.705867,0.318175,0.060688,0.589661,0.978253,0.482631,0.469321,0.618765,0.0620358,0.431142,0.147504,0.519801,0.547009,0.53253,0.618102,0.467414,0.845207,0.426339,0.108303,0.427619,0.683268,0.581659,0.365639,0.518005,0.70124,0.0235395,0.225154,0.0427795,0.860764,0.372689,0.889324,0.378201,0.865188,0.279975,0.402989,0.74793,0.233799,0.872107,0.995033,0.482642,0.747322,0.136288,0.709344,0.786571,0.0765052,0.150507,0.000970662,0.678563,0.491508,0.546883,0.372573,0.910624,0.0723876,0.663339,0.477472,0.0948812,0.128312,0.311693,0.00642872,0.154096,0.597319,0.539612,0.963143,0.847272,0.824774,0.57309,0.621833,0.557673,0.0845928,0.326477,0.447152,0.0278921,0.897364,0.333081,0.772978,0.218467,0.875561,0.426366,0.195069,0.328446,0.456745,0.792036,0.430035,0.0595533,0.662128,0.581327,0.822952,0.909636,0.446035,0.0977091,0.578508,0.535169,0.0998574,0.452791,0.63085,0.696302,0.0475895,0.942165,0.11942,0.52335,0.605356,0.709466,0.214594,0.180399,0.573449,0.0292758,0.308258,0.0941591,0.915496,0.91813,0.23172,0.506155,0.0811573,0.260077,0.186961,0.774229,0.196315,0.448779,0.464573,0.187815,0.714107,0.0615436,0.704375,0.0956941,0.197474,0.13293,0.289129,0.844219,0.900161,0.743452,0.160259,0.506724,0.0263404,0.63052,0.237378,0.221005,0.619592,0.887794,0.0919906,0.144641,0.655639,0.88552,0.692798,0.284685,0.474246,0.222497,0.871239,0.04689,0.398852,0.688094,0.218087,0.265787,0.228239,0.829235,0.488027,0.983597,0.309868,0.0844409,0.881936,0.364599,0.653699,0.316753,0.774575,0.913207,0.830528,0.91169,0.513774,0.231581,0.825841,0.596773,0.759256,0.769852,0.330787,0.945813,0.452572,0.656494,0.823732,0.155826,0.162201,0.0771394,0.792896,0.138768,0.49795,0.880117,0.15849,0.588767,0.799192,0.20533,0.95235,0.0365227,0.00575167,0.237328,0.232536,0.150616,0.385873,0.190919,0.847467,0.831166,0.955611,0.823748,0.0175337,0.0940335,0.279213,0.100978,0.420758,0.626722,0.984291,0.760276,0.928746,0.658837,0.502646,0.664343,0.78413,0.444122,0.89561,0.311608,0.777906,0.854218,0.928165,0.0788952,0.394418,0.307475,0.889592,0.248083,0.152818,0.180171,0.563006,0.285712,0.600151,0.83861,0.0897036,0.642423,0.648923,0.286925,0.299047,0.392817,0.860429,0.168891,0.874549,0.38255,0.988906,0.326099,0.806444,0.844189,0.710132,0.0214354,0.131053,0.0940554,0.257835,0.500282,0.124468,0.431443,0.788618,0.982327,0.319172,0.463825,0.202824,0.613437,0.159001,0.781588,0.0670692,0.767092,0.761481,0.173156,0.515043,0.954248,0.1364,0.286302,0.94353,0.861737,0.882689,0.990807,0.148422,0.612875,0.0340062,0.851776,0.620341,0.893205,0.99707,0.443616,0.505931,0.926059,0.633692,0.155261,0.979302,0.305987,0.83675,0.484462,0.248149,0.5571,0.592269,0.546232,0.774945,0.649804,0.0346751,0.291471,0.393198,0.770921,0.704813,0.435814,0.880901,0.31518,0.0142939,0.813932,0.546381,0.711372,0.886627,0.0711776,0.200451,0.305233,0.464756,0.150016,0.268474,0.755724,0.0771418,0.841896,0.808773,0.805424,0.857506,0.743679,0.760428,0.185017,0.982314,0.59103,0.728851,0.482085,0.545765,0.315521,0.879918,0.313013,0.211345,0.972254,0.398547,0.428827,0.614621,0.570084,0.583484,0.0905015,0.316056,0.446904,0.0615365,0.655503,0.227,0.948585,0.534215,0.208025,0.451024,0.857344,0.815561,0.896728,0.289167,0.513339,0.0974695,0.86945,0.727979,0.191385,0.261178,0.484966,0.651728,0.503267,0.385586,0.312497,0.0316059,0.629734,0.961245,0.0180483,0.897428,0.567612,0.222134,0.0444672,0.83941,0.988624,0.297916,0.520847,0.552154,0.75061,0.0513365,0.679643,0.0146414,0.787534,0.326445,0.948786,0.627168,0.316127,0.953446,0.459098,0.425021,0.399413,0.446283,0.22017,0.347125,0.697174,0.809525,0.360795,0.717882,0.58462,0.205291,0.926586,0.678937,0.883978,0.917357,0.131414,0.369144,0.509425,0.650691,0.179882,0.628929,0.24789,0.683187,0.453172,0.0875831,0.00504059,0.383373,0.275123,0.855434,0.173383,0.684982,0.805642,0.972393,0.677769,0.401683,0.136119,0.298504,0.588279,0.455935,0.769087,0.0169055,0.192537,0.944108,0.897865,0.547278,0.06834,0.599645,0.544073,0.666284,0.308661,0.832272,0.936307,0.637349,0.875508,0.223942,0.791769,0.82597,0.0965453,0.779138,0.930067,0.272916,0.156426,0.2126,0.0240925,0.971421,0.937581,0.298053,0.39246,0.450092,0.363394,0.724722,0.574292,0.841069,0.824051,0.579312,0.346762,0.0573586,0.731641,0.107217,0.906822,0.230804,0.047241,0.88057,0.262574,0.554279,0.157721,0.938962,0.922302,0.369369,0.0173168,0.189352,0.751057,0.925259,0.318997,0.744656,0.0905427,0.779993,0.0631894,0.619994,0.0225341,0.727367,0.0666237,0.506553,0.719731,0.261535,0.580092,0.792156,0.18902,0.616309,0.915125,0.127709,0.017685,0.697962,0.162011,0.119092,0.319566,0.129515,0.465138,0.456669,0.198308,0.464626,0.468826,0.372448,0.488326,0.0465245,0.821887,0.097171,0.0498784,0.339378,0.714159,0.902459,0.306125,0.480955,0.831538,0.945415,0.887405,0.528808,0.288059,0.0688734,0.0533165,0.197053,0.728158,0.0847172,0.172839,0.947541,0.74721,0.189168,0.915208,0.594474,0.219491,0.256396,0.545642,0.83406,0.109216,0.892039,0.413646,0.415637,0.00850457,0.665888,0.987563,0.172286,0.974553,0.014518,0.395745,0.524506,0.00966638,0.95115,0.884268,0.643613,0.769868,0.298313,0.0794597,0.217454,0.524314,0.41969,0.470733,0.485117,0.619717,0.404445,0.21238,0.20904,0.00561094,0.730714,0.155474,0.99473,0.633838,0.277925,0.570404,0.327539,0.322246,0.881021,0.89639,0.836846,0.402515,0.0602338,0.4911,0.850636,0.115262,0.465117,0.421288,0.168944,0.341803,0.449301,0.714247,0.86766,0.305705,0.168842,|0.606441,0.817515,0.812744,0.321339,0.637888,0.0111544,0.319508,0.0153838,0.969661,0.599004,0.480295,0.171309,0.266372,0.392343,0.296521,0.872182,0.052995,0.654959,0.306596,0.0356518,0.312939,0.555047,0.998255,0.587648,0.717196,0.591455,0.532148,0.645428,0.516064,0.984562,0.839846,0.357598,0.269773,0.77046,0.91071,0.424243,0.328472,0.14511,0.573444,0.848877,0.779835,0.261375,0.920991,0.512674,0.559551,0.591054,0.895716,0.0143622,0.54463,0.71922,0.639233,0.505533,0.790761,0.751823,0.825321,0.311549,0.928922,0.574042,0.640471,0.389288,0.838803,0.0432855,0.124721,0.991346,0.448671,0.632465,0.794437,0.910087,0.65941,0.152872,0.146676,0.640852,0.16329,0.736969,0.741173,0.569709,0.773042,0.352165,0.374231,0.875865,0.942511,0.996008,0.256078,0.999816,0.786122,0.498134,0.692884,0.56796,0.0532181,0.726939,0.859866,0.966991,0.639045,0.991617,0.374889,0.627334,0.227011,0.0846893,0.0361509,0.791621,0.212875,0.0460694,0.424595,0.961801,0.725616,0.370896,0.653072,0.378592,0.944355,0.449348,0.804492,0.652475,0.338425,0.283581,0.674881,0.491155,0.166044,0.132992,0.680731,0.363186,0.0111326,0.428778,0.176194,0.257931,0.349205,0.0883901,0.121807,0.885868,0.912347,0.110891,0.0171207,0.174424,0.741522,0.846055,0.906696,0.499891,0.768375,0.142326,0.814656,0.705251,0.791095,0.703908,0.887025,0.545792,0.211,0.970666,0.150982,0.446094,0.746759,0.596601,0.259683,0.010919,0.312687,0.670422,0.315934,0.158244,0.976533,0.3231,0.44134,0.662373,0.6592,0.588097,0.966655,0.265963,0.264641,0.978704,0.612797,0.755661,0.396774,0.191074,0.038672,0.196515,0.762497,0.476312,0.0850356,0.342174,0.216943,0.413137,0.660871,0.35026,0.868308,0.19608,0.633127,0.918259,0.908588,0.223494,0.423227,0.35429,0.651375,0.797691,0.643159,0.548969,0.644627,0.453089,0.437177,0.667957,0.180154,0.0324732,0.106136,0.822398,0.431751,0.00452584,0.443961,0.646493,0.0499292,0.299977,0.993027,0.974225,0.820312,0.434727,0.0693343,0.894247,0.621255,0.00245559,0.0660736,0.49486,0.199241,0.520679,0.0686051,0.832374,0.514841,0.395562,0.805319,0.240051,0.0967423,0.769158,0.753485,0.392488,0.161263,0.840321,0.825531,0.570173,0.539919,0.261343,0.599998,0.0677273,0.676639,0.801198,0.466014,0.493288,0.405226,0.936244,0.950099,0.327938,0.945884,0.121486,0.0563353,0.268795,0.796542,0.489529,0.914142,0.154803,0.257108,0.884692,0.571763,0.545372,0.178557,0.0158818,0.383645,0.593829,0.559822,0.261696,0.804081,0.988522,0.965144,0.76548,0.150232,0.099251,0.228754,0.958339,0.694239,0.780725,0.562167,0.34691,0.351935,0.313495,0.723542,0.211931,0.815697,0.457096,0.127957,0.522411,0.142012,0.740997,0.934309,0.38736,0.776458,0.640552,0.112592,0.969441,0.101243,0.202873,0.00848722,0.476354,0.100642,0.0916405,0.375185,0.750959,0.350403,0.596465,0.653285,0.434417,0.581064,0.765486,0.936833,0.678694,0.35971,0.24657,0.671386,0.584625,0.159292,0.942271,0.0840261,0.783132,0.650211,0.987639,0.292485,0.390613,0.576669,0.707096,0.0860584,0.81322,0.984423,0.299882,0.25295,0.990883,0.666378,0.776977,0.826311,0.299666,0.6452,0.0120117,0.599807,0.292799,0.281737,0.375991,0.900027,0.806252,0.256583,0.772065,0.100515,0.751232,0.101206,0.150978,0.814659,0.491,0.635933,0.453067,0.773912,0.956352,0.820103,0.830233,0.830436,0.455318,0.940107,0.143615,0.859871,0.80637,0.449154,0.938419,0.447483,0.0445381,0.0614587,0.706172,0.503673,0.342229,0.664915,0.510589,0.517103,0.156922,0.613393,0.566731,0.480487,0.533849,0.0115994,0.709774,0.697098,0.7833,0.87005,0.995688,0.896721,0.184697,0.341292,0.691397,0.355607,0.435644,0.653858,0.951018,0.836173,0.783873,0.298818,0.762317,0.654058,0.953212,0.382176,0.771501,0.0918482,0.300758,0.756521,0.219341,0.514185,0.68701,0.892528,0.120706,0.377325,0.454576,0.0571508,0.729406,0.435744,0.981128,0.5323,0.143726,0.437132,0.693283,0.717812,0.716881,0.631665,0.504297,0.636009,0.061763,0.460171,0.785634,0.696522,0.248971,0.0924594,0.432148,0.672799,0.329268,0.204804,0.741566,0.302951,0.0681345,0.515418,0.196619,0.877368,0.19642,0.229549,0.352873,0.671502,0.95505,0.178843,0.839881,0.906129,0.655239,0.0176857,0.41682,0.151325,0.670986,0.412848,0.858616,0.816649,0.184596,0.173089,0.721829,0.313964,0.216501,0.772455,0.417581,0.478787,0.515024,0.202377,0.834624,0.486733,0.0659574,0.388564,0.103348,0.0433831,0.614986,0.0499566,0.488025,0.299711,0.901128,0.334773,0.337971,0.923917,0.632184,0.847605,0.607539,0.481668,0.626966,0.191008,0.246743,0.591217,0.679697,0.139189,0.612518,0.734202,0.0443958,0.712879,0.31452,0.982186,0.103659,0.8136,0.000317454,0.599123,0.786204,0.0782771,0.932562,0.334977,0.828615,0.764082,0.966328,0.674481,0.456858,0.267013,0.219916,0.573018,0.459619,0.155776,0.447657,0.651706,0.720365,0.0496277,0.245405,0.603302,0.321976,0.180859,0.587079,0.233942,0.377042,0.247615,0.683928,0.533777,0.609291,0.707128,0.687964,0.0502859,0.884668,0.527524,0.745119,0.79336,0.00260842,0.118244,0.328813,0.947632,0.646961,0.514043,0.484566,0.544042,0.853421,0.986867,0.94309,0.0827935,0.465336,0.448082,0.664366,0.782198,0.791205,0.452928,0.548331,0.774125,0.84183,0.011872,0.765003,0.423635,0.295536,0.169319,0.105074,0.453567,0.9381,0.396873,0.487478,0.644262,0.786336,0.953064,0.00339192,0.300094,0.166156,0.840698,0.302118,0.0792156,0.154896,0.634893,0.263955,0.760567,0.147843,0.235841,0.338412,0.951537,0.745866,0.453525,0.0960899,0.641379,0.286908,0.577299,0.112823,0.242686,0.72682,0.217496,0.331104,0.370158,0.79143,0.742428,0.153863,0.428487,0.913075,0.766483,0.0636257,0.292903,0.341122,0.100819,0.157636,0.406005,0.961699,0.321348,0.659437,0.79718,0.178392,0.831129,0.866015,0.574977,0.557317,0.137836,0.928163,0.395327,0.515196,0.577794,0.033752,0.365845,0.352605,0.486678,0.509761,0.71044,0.316197,0.542717,0.500236,0.524784,0.576896,0.646542,0.488979,0.143418,0.184733,0.71953,0.914198,0.385105,0.863096,0.687459,0.300183,0.332999,0.671462,0.840931,0.747487,0.0197636,0.423483,0.387741,0.597487,0.815027,0.288972,0.523341,0.365998,0.566002,0.185964,0.864439,0.305376,0.439013,0.705839,0.912766,0.141428,0.725463,0.81985,0.858784,0.68168,0.257543,0.596413,0.441072,0.0958308,0.318361,0.533651,0.681192,0.133626,0.214366,0.559579,0.17909,0.416442,0.379393,0.908679,0.593719,0.0662552,0.258833,0.239655,0.924142,0.17714,0.595249,0.40314,0.784343,0.379691,0.845027,0.965983,0.0119734,0.941886,0.790593,0.323785,0.844397,0.0164154,0.828649,0.0698807,0.107005,0.420785,0.986574,0.172203,0.992592,0.523704,0.203138,0.261378,0.495482,0.661189,0.40744,0.82597,0.721992,0.00759137,0.245195,0.376055,0.985311,0.603949,0.0384236,0.0449939,0.555083,0.241915,0.535621,0.961186,0.751593,0.453108,0.110521,0.35313,0.545294,0.344365,0.694948,0.452097,0.0555948,0.75523,0.107811,0.732296,0.212174,0.732509,0.219486,0.639185,0.225572,0.773561,0.272669,0.974975,0.365906,0.827137,0.518392,0.351619,0.0926464,0.795453,0.831266,0.27898,0.603158,0.63759,0.470867,0.214953,0.87012,0.302785,0.0550812,0.358301,0.052386,0.0179958,0.440109,0.515758,0.660277,0.600893,0.57383,0.120349,0.87789,0.876039,0.804477,0.0169954,0.781323,0.238422,0.172392,0.160394,0.748725,0.750828,0.587965,0.306869,0.86879,0.803851,0.981667,0.539897,0.253792,0.175232,0.157809,0.388654,0.247608,0.154588,0.158698,0.369319,0.917385,0.284793,0.833035,0.804484,0.642595,0.062681,0.450752,0.286947,0.667454,0.200255,0.983357,0.502199,0.895209,0.160803,0.854019,0.69102,0.47839,0.372005,0.997634,0.594687,0.471163,0.890734,0.443193,0.460732,0.266394,0.780133,0.123191,0.891826,0.261563,0.125743,0.670983,0.780488,0.0360577,0.796216,0.545451,0.0537993,0.456521,0.502204,0.413194,0.283101,0.668964,0.159293,0.617808,0.7744,0.0255578,0.294729,0.434719,0.636155,0.0583382,0.953951,0.425155,0.646933,0.156884,0.072525,0.54021,0.649651,0.497748,0.145616,0.76972,0.467673,0.0197935,0.367615,0.0519247,0.730384,0.191575,0.0609783,0.708943,0.374735,0.0741242,0.444515,0.808824,0.462195,0.932096,0.123447,0.264041,0.437026,0.438784,0.641783,0.678584,0.666923,0.0841057,0.29151,0.52479,0.171288,0.0639612,0.182135,0.400434,0.926973,0.533885,0.228916,0.593723,0.462676,0.830598,0.150094,0.515372,0.24763,0.105526,0.0355608,0.558028,0.248762,0.327345,0.250718,0.388843,0.963637,0.517677,0.102071,0.177848,0.0305021,0.00609493,0.126268,0.332628,0.994217,0.634289,0.134823,0.159953,0.11934,0.34722,0.91086,0.447157,0.488626,0.915152,0.52725,0.476509,0.381364,0.807319,0.660099,0.583695,0.0559205,0.768604,0.54344,0.978421,0.110117,0.162614,0.0641093,0.622096,0.665949,0.266583,0.38488,0.774262,0.714813,0.513944,0.317597,0.416006,0.819356,0.486924,0.116159,0.0546243,0.0166196,0.133905,0.866201,0.806841,0.283314,0.523124,0.590044,0.914686,0.166616,0.937753,0.707793,0.219647,0.03528,0.689088,0.000957668,0.845676,0.216718,0.969089,0.939327,0.1951,0.286337,0.301254,0.993114,0.178037,0.526402,0.939691,0.0226335,0.00617069,0.41329,0.104342,0.0448099,0.815178,0.54997,0.16909,0.342941,0.216068,0.383647,0.206575,0.133006,0.244766,0.672725,0.574662,0.764713,0.952353,0.508172,0.450941,0.740462,0.359354,0.851469,0.613654,0.465496,0.679579,0.208179,0.928159,0.466181,0.778515,0.914876,0.822498,0.233535,0.772006,0.521678,0.853675,0.360894,0.647779,0.41529,|0.92346,0.933532,0.975169,0.555141,0.885171,0.677053,0.280381,0.479066,0.22999,0.14153,0.301819,0.800144,0.530342,0.367669,0.238837,0.188115,0.718571,0.758453,0.427729,0.663371,0.281153,0.0770534,0.380128,0.865543,0.8773,0.400107,0.157188,0.0424303,0.683756,0.385248,0.150577,0.708758,0.826044,0.253129,0.540197,0.572214,0.045324,0.504185,0.858879,0.867583,0.326545,0.0880879,0.631419,0.994546,0.20741,0.374343,0.580954,0.11549,0.0860924,0.737341,0.698372,0.0705449,0.706997,0.773827,0.817009,0.549939,0.102694,0.962115,0.707776,0.759275,0.916371,0.307326,0.03851,0.243307,0.464894,0.563384,0.981896,0.459406,0.330587,0.183207,0.265005,0.516391,0.378044,0.34562,0.553008,0.698389,0.183549,0.927615,0.0508399,0.738924,0.395473,0.870648,0.1705,0.299118,0.497062,0.899638,0.0227157,0.295068,0.948599,0.512061,0.22014,0.726726,0.636406,0.495881,0.343322,0.144805,0.114374,0.410809,0.172623,0.481183,0.063592,0.664263,0.700456,0.656638,0.7645,0.443921,0.937782,0.287385,0.732456,0.180799,0.560417,0.583608,0.967101,0.674207,0.131337,0.773302,0.312102,0.685363,0.702216,0.257792,0.16818,0.282418,0.561763,0.195006,0.0123889,0.464297,0.975429,0.312114,0.33045,0.625661,0.9409,0.968191,0.774678,0.0419728,0.549321,0.417382,0.626471,0.266505,0.406138,0.379639,0.642196,0.831072,0.178859,0.553355,0.509715,0.465443,0.422442,0.673402,0.597436,0.126062,0.199618,0.584489,0.416946,0.448753,0.965961,0.529217,0.0397627,0.38377,0.799643,0.852501,0.396559,0.855998,0.974053,0.711303,0.738638,0.925748,0.3522,0.0939364,0.0758768,0.533832,0.304696,0.452087,0.837469,0.73676,0.628266,0.312339,0.825314,0.0698038,0.559903,0.435541,0.190354,0.0335521,0.385548,0.596485,0.405857,0.653174,0.835934,0.431591,0.72539,0.443114,0.490107,0.84399,0.992302,0.904022,0.632612,0.145779,0.620356,0.576099,0.207549,0.906599,0.523767,0.623913,0.903554,0.691897,0.83386,0.0928348,0.151045,0.382244,0.677153,0.309296,0.268859,0.63711,0.450889,0.7034,0.995585,0.284757,0.482341,0.975106,0.510369,0.224347,0.45348,0.196554,0.943679,0.107188,0.721667,0.214614,0.0589306,0.87037,0.318484,0.684497,0.494638,0.183582,0.0940367,0.760669,0.820942,0.534302,0.629814,0.229089,0.975915,0.980313,0.0918196,0.824687,0.545391,0.778112,0.322016,0.130897,0.213726,0.651224,0.367027,0.794148,0.527675,0.218206,0.137855,0.0261301,0.0625594,0.759199,0.726563,0.316899,0.323494,0.426631,0.445262,0.715063,0.227339,0.951811,0.215285,0.418262,0.369143,0.0422721,0.718284,0.0759885,0.579762,0.480424,0.938408,0.828338,0.902603,0.043083,0.616192,0.935292,0.795124,0.348875,0.195723,0.731381,0.196035,0.881846,0.0928261,0.547646,0.750805,0.627166,0.194754,0.982041,0.0503502,0.863664,0.0510321,0.210209,0.926222,0.971361,0.049842,0.132502,0.52573,0.163937,0.457828,0.572679,0.105356,0.118291,0.861302,0.584569,0.739133,0.0748793,0.599649,0.120811,0.964086,0.735687,0.444752,0.828583,0.746822,0.435405,0.416847,0.744399,0.418309,0.198975,0.592053,0.80589,0.00420511,0.617216,0.626846,0.164184,0.763613,0.245822,0.176426,0.343143,0.706667,0.838932,0.358274,0.351041,0.635852,0.528246,0.73599,0.982213,0.0711396,0.294905,0.544342,0.414434,0.82467,0.0165709,0.74263,0.306734,0.227034,0.958797,0.257166,0.076714,0.31617,0.169407,0.402774,0.126902,0.841327,0.327188,0.113075,0.539847,0.432465,0.294308,0.395036,0.846405,0.971533,0.419543,0.242105,0.175105,0.646552,0.998804,0.835915,0.642857,0.64567,0.70272,0.567451,0.0986508,0.00321764,0.799261,0.209847,0.187926,0.689056,0.284167,0.964111,0.927319,0.0278111,0.365302,0.867923,0.753905,0.680908,0.857711,0.699131,0.828802,0.302432,0.239683,0.9787,0.822688,0.924988,0.655542,0.352265,0.645271,0.390751,0.286631,0.383747,0.000815332,0.728003,0.524703,0.46711,0.130017,0.571722,0.595042,0.984186,0.270288,0.305118,0.138337,0.759208,0.895266,0.861406,0.587927,0.485228,0.337227,0.888943,0.0733333,0.878091,0.942709,0.834673,0.218451,0.330746,0.323398,0.289512,0.52046,0.664549,0.909212,0.823206,0.072888,0.141028,0.788257,0.00879723,0.284106,0.0212646,0.955919,0.901257,0.66849,0.733422,0.653661,0.536947,0.143942,0.621459,0.849319,0.98455,0.400367,0.345202,0.720996,0.987437,0.934242,0.0668853,0.157253,0.244648,0.0972413,0.176587,0.790583,0.320678,0.428404,0.796427,0.305896,0.0725979,0.483481,0.162855,0.413408,0.200451,0.0376869,0.0997753,0.268426,0.36339,0.348436,0.3998,0.161483,0.163639,0.307435,0.938294,0.750033,0.295798,0.213453,0.748435,0.997531,0.909147,0.327443,0.200789,0.0494772,0.190113,0.49342,0.317229,0.190601,0.727312,0.77437,0.48812,0.249191,0.0979903,0.697775,0.537541,0.124888,0.66601,0.343135,0.313297,0.0519097,0.630152,0.318236,0.435876,0.35731,0.336626,0.637341,0.726867,0.862968,0.0759783,0.877347,0.912755,0.307272,0.439588,0.116283,0.795451,0.0624022,0.383579,0.54609,0.617337,0.49436,0.887488,0.669779,0.681285,0.113071,0.765131,0.296462,0.620208,0.254004,0.884968,0.763169,0.494609,0.440654,0.0325592,0.17929,0.0726689,0.700346,0.304173,0.581624,0.952013,0.313127,0.304709,0.517502,0.104193,0.0224215,0.566589,0.53316,0.124044,0.0250773,0.334446,0.834635,0.00913352,0.705387,0.143824,0.270208,0.501873,0.459342,0.894948,0.0259549,0.595504,0.866388,0.657036,0.606188,0.350001,0.238064,0.276087,0.539494,0.668471,0.0953388,0.301048,0.705559,0.32657,0.722442,0.619112,0.320596,0.356239,0.685404,0.700492,0.602581,0.32374,0.612952,0.166118,0.889018,0.225485,0.0593117,0.765461,0.859115,0.410259,0.899774,0.61674,0.344101,0.339455,0.863923,0.625325,0.29517,0.336064,0.56428,0.40263,0.663504,0.35974,0.925734,0.624202,0.812338,0.231773,0.657498,0.610913,0.670971,0.937075,0.735477,0.0804791,0.445166,0.112448,0.752235,0.64896,0.175319,0.0832207,0.486605,0.781854,0.123174,0.714254,0.748482,0.869444,0.187311,0.652291,0.814161,0.425497,0.174659,0.638731,0.705696,0.22429,0.633478,0.462677,0.182706,0.960922,0.89486,0.542538,0.79772,0.0320203,0.752081,0.953196,0.507477,0.326051,0.949076,0.789767,0.780821,0.13545,0.162216,0.162155,0.223546,0.0715442,0.361228,0.0599468,0.608448,0.705442,0.465879,0.595418,0.0721,0.651248,0.553393,0.125555,0.894627,0.756388,0.876198,0.342293,0.705135,0.99756,0.0487971,0.236307,0.123273,0.724358,0.485073,0.297834,0.567626,0.146686,0.655264,0.822241,0.119096,0.402489,0.340653,0.196832,0.176559,0.243671,0.646115,0.595309,0.402296,0.807509,0.0459681,0.143001,0.65031,0.0337607,0.357557,0.156729,0.610437,0.558152,0.904169,0.793876,0.2347,0.919246,0.840156,0.330075,0.442401,0.605323,0.150326,0.360495,0.622904,0.507406,0.274146,0.91203,0.0485588,0.16271,0.0445937,0.0417922,0.420283,0.128473,0.00810713,0.107158,0.270344,0.182037,0.78886,0.0157061,0.452905,0.886664,0.205494,0.840198,0.981634,0.940274,0.623984,0.0240701,0.410167,0.35372,0.596681,0.67851,0.66232,0.325646,0.080177,0.902141,0.392437,0.925471,0.543824,0.444211,0.399006,0.632815,0.856585,0.699248,0.725525,0.813857,0.802816,0.197368,0.0046823,0.147168,0.306367,0.160103,0.958316,0.934218,0.875951,0.36565,0.418989,0.535724,0.588616,0.215951,0.217541,0.696711,0.851171,0.294898,0.576518,0.681667,0.808445,0.441791,0.514131,0.756838,0.710594,0.218715,0.187941,0.0465301,0.107678,0.675852,0.903346,0.288603,0.583378,0.85,0.838807,0.398619,0.325352,0.699791,0.465011,0.241702,0.267192,0.701028,0.425464,0.00557709,0.955398,0.404626,0.88932,0.444486,0.232283,0.864182,0.0751795,0.28201,0.247518,0.932443,0.396528,0.0949944,0.133639,0.6322,0.79675,0.462073,0.599936,0.0349238,0.599756,0.314662,0.975683,0.859422,0.887124,0.365264,0.933952,0.211702,0.592113,0.698329,0.658509,0.00255132,0.204656,0.102906,0.239101,0.474522,0.307089,0.382021,0.81414,0.940542,0.553263,0.673331,0.831939,0.538695,0.169927,0.190752,0.586428,0.935439,0.853307,0.570854,0.322171,0.0198712,0.293074,0.460746,0.471815,0.890391,0.861219,0.213539,0.972325,0.981276,0.333092,0.398174,0.0903327,0.058138,0.0966773,0.10718,0.199857,0.623736,0.0298019,0.347171,0.58787,0.16831,0.230663,0.238447,0.965046,0.760861,0.668939,0.821208,0.268619,0.523968,0.815466,0.554611,0.970638,0.0823848,0.443383,0.329248,0.392406,0.841043,0.186976,0.925084,0.405639,0.207643,0.807497,0.992335,0.806186,0.52185,0.812554,0.855789,0.284627,0.402925,0.403534,0.744908,0.383705,0.283157,0.0971462,0.982924,0.691501,0.608966,0.817593,0.199472,0.770326,0.420153,0.984763,0.409571,0.68402,0.0970809,0.976933,0.626033,0.508841,0.339109,0.229654,0.724276,0.426588,0.797252,0.511636,0.870944,0.985906,0.860623,0.768286,0.543971,0.686459,0.937365,0.969283,0.949717,0.332455,0.317378,0.196179,0.546318,0.0105066,0.718293,0.0147614,0.324746,0.376661,0.871546,0.288584,0.780202,0.00398403,0.850868,0.657691,0.907615,0.782189,0.770673,0.990336,0.0226215,0.646096,0.924832,0.847662,0.197116,0.601512,0.391436,0.646594,0.348721,0.0194013,0.514755,0.128189,0.286837,0.49557,0.258361,0.845606,0.0750263,0.978093,0.524373,0.493377,0.983251,0.391193,0.690775,0.0788779,0.212268,0.449476,0.185538,0.341708,0.381262,0.328213,0.874179,0.324174,0.116564,0.800285,0.0295891,0.774981,0.107034,0.0733445,0.452569,0.297307,0.713073,0.0418705,0.200549,0.331995,0.698858,0.561715,0.667521,0.714116,0.750678,0.799785,0.984839,0.77712,0.768922,0.72365,0.816306,0.682015,0.242357,0.845951,|0.992841,0.570177,0.728083,0.957796,0.312913,0.630746,0.67356,0.125946,0.468865,0.181074,0.969004,0.403489,0.0435737,0.411867,0.350431,0.338659,0.144369,0.979336,0.665055,0.488254,0.0324258,0.926531,0.447801,0.378865,0.970652,0.701261,0.922472,0.900099,0.696607,0.657619,0.314171,0.61223,0.436749,0.246629,0.389299,0.679789,0.210963,0.144912,0.247431,0.259134,0.816932,0.499768,0.544694,0.830962,0.35544,0.625439,0.978123,0.541972,0.475483,0.501723,0.326463,0.84431,0.193898,0.103511,0.639216,0.189136,0.818039,0.923622,0.860007,0.742202,0.338304,0.535193,0.468573,0.725899,0.550384,0.0966406,0.212656,0.517339,0.382314,0.16708,0.267153,0.682205,0.560574,0.0719225,0.392983,0.907504,0.460296,0.671228,0.724476,0.511125,0.929196,0.793815,0.840766,0.657799,0.00613642,0.46058,0.210196,0.204685,0.443574,0.936797,0.453568,0.00645667,0.203554,0.0027889,0.488241,0.037097,0.277423,0.53714,0.313734,0.0889955,0.683567,0.13015,0.979623,0.96554,0.210208,0.639245,0.519789,0.353143,0.96835,0.443985,0.28536,0.379117,0.112377,0.623673,0.687462,0.212424,0.247344,0.928903,0.0174568,0.815256,0.35022,0.730705,0.469941,0.946889,0.167544,0.519577,0.280019,0.0195982,0.884317,0.855907,0.905322,0.720558,0.991752,0.137668,0.372203,0.107076,0.546907,0.855506,0.141569,0.724599,0.421464,0.81154,0.42182,0.309882,0.534002,0.926173,0.253903,0.133904,0.686982,0.303751,0.896838,0.426294,0.608483,0.24766,0.378301,0.536133,0.244912,0.642486,0.681553,0.812783,0.053196,0.0381599,0.510055,0.428265,0.150884,0.857139,0.906026,0.386169,0.925731,0.886651,0.77101,0.505946,0.0831662,0.346766,0.985684,0.847814,0.296486,0.914376,0.4925,0.772956,0.0450796,0.853933,0.538056,0.828023,0.53462,0.0893235,0.41609,0.433872,0.362271,0.583192,0.636644,0.378724,0.212146,0.412748,0.564153,0.365342,0.708689,0.648288,0.962682,0.477427,0.845837,0.646323,0.896087,0.944401,0.872133,0.225068,0.348665,0.745913,0.376103,0.619912,0.197655,0.192851,0.377835,0.670992,0.692574,0.824033,0.961046,0.653956,0.534519,0.459323,0.138225,0.891664,0.516833,0.958506,0.881474,0.260489,0.316925,0.21273,0.820604,0.177524,0.792459,0.352846,0.643631,0.291253,0.0419424,0.952822,0.585691,0.460344,0.635355,0.277118,0.561434,0.922213,0.687009,0.00406384,0.773584,0.490285,0.354296,0.0170703,0.0712909,0.681268,0.00164306,0.470016,0.436455,0.525691,0.119626,0.544819,0.717838,0.754645,0.171305,0.155569,0.349113,0.655152,0.395968,0.561471,0.89675,0.109551,0.733887,0.373207,0.301486,0.83953,0.223173,0.809021,0.898353,0.513676,0.904114,0.104182,0.516268,0.10895,0.31262,0.790579,0.915577,0.546456,0.998033,0.314478,0.731197,0.0686288,0.611836,0.466052,0.456559,0.4224,0.701385,0.291144,0.521546,0.41125,0.332102,0.564743,0.0905827,0.408798,0.156278,0.482665,0.219604,0.0925841,0.832881,0.807684,0.452995,0.288628,0.122791,0.147808,0.271651,0.761818,0.108488,0.132605,0.347704,0.0502453,0.0155428,0.452814,0.836043,0.109199,0.196441,0.690096,0.532567,0.497592,0.134806,0.146511,0.344273,0.500579,0.897215,0.0769958,0.254864,0.103353,0.0397331,0.0599649,0.14104,0.771277,0.627901,0.579515,0.438834,0.681279,0.53841,0.369508,0.360081,0.193649,0.920792,0.207417,0.958826,0.147353,0.53613,0.400857,0.644295,0.664008,0.267998,0.312414,0.00456417,0.852415,0.416911,0.003712,0.992293,0.333904,0.164879,0.729613,0.264588,0.175161,0.662715,0.522759,0.985964,0.158943,0.289538,0.923447,0.352425,0.46572,0.774179,0.132562,0.11383,0.50982,0.731215,0.49145,0.104594,0.360013,0.131931,0.0411943,0.857655,0.599452,0.721022,0.579241,0.295774,0.173025,0.276314,0.309887,0.132867,0.712538,0.0127869,0.259343,0.797018,0.287045,0.0141513,0.504184,0.0879613,0.398907,0.0871154,0.720558,0.705245,0.224333,0.626141,0.044519,0.373178,0.0996075,0.145757,0.810987,0.322798,0.656532,0.756366,0.520828,0.390669,0.0826245,0.522581,0.460315,0.298242,0.642993,0.731658,0.848038,0.423546,0.0647933,0.0227393,0.962686,0.055681,0.750552,0.739687,0.313136,0.410962,0.818155,0.482067,0.331436,0.263598,0.474489,0.312739,0.188974,0.677796,0.774456,0.935656,0.0570925,0.867393,0.123262,0.121827,0.210329,0.409474,0.912811,0.182718,0.751125,0.899269,0.884656,0.316039,0.425123,0.177479,0.308885,0.806146,0.187652,0.571491,0.358213,0.0921339,0.457292,0.511959,0.111896,0.352703,0.345497,0.191842,0.163488,0.0885,0.27985,0.581086,0.800641,0.768075,0.0891374,0.529325,0.560309,0.475786,0.148023,0.13891,0.777685,0.093217,0.160641,0.428934,0.946213,0.185607,0.30116,0.0250939,0.612697,0.837571,0.706274,0.217622,0.89536,0.199716,0.483966,0.0173834,0.673266,0.200775,0.0634561,0.604463,0.8404,0.404411,0.845285,0.336758,0.545715,0.361805,0.618635,0.0622295,0.620345,0.352362,0.602372,0.693434,0.339804,0.406339,0.689478,0.108521,0.793281,0.294908,0.734666,0.0769894,0.691619,0.141024,0.662743,0.337533,0.0170304,0.563054,0.758509,0.870446,0.0779446,0.899928,0.0652405,0.465286,0.647047,0.547965,0.0692143,0.880984,0.874957,0.132568,0.0196449,0.720834,0.178914,0.486045,0.879554,0.0623782,0.30001,0.118532,0.575218,0.0270513,0.787876,0.964022,0.561559,0.762023,0.247163,0.199366,0.579261,0.149092,0.229837,0.564397,0.142623,0.304038,0.460402,0.717844,0.118176,0.221513,0.580086,0.222012,0.719591,0.34095,0.264795,0.201767,0.73019,0.471673,0.825479,0.678923,0.751317,0.814645,0.862894,0.510911,0.488618,0.836281,0.477754,0.292583,0.503632,0.287771,0.754637,0.637856,0.315749,0.50695,0.757401,0.107211,0.0262637,0.882831,0.821856,0.709534,0.659158,0.973308,0.927726,0.846731,0.460654,0.966284,0.843749,0.272057,0.751823,0.388757,0.240892,0.207417,0.884265,0.0348092,0.885035,0.950592,0.99384,0.320254,0.0400435,0.141488,0.655019,0.811169,0.626185,0.916764,0.00999457,0.246353,0.844387,0.855102,0.605603,0.880517,0.596911,0.86133,0.221653,0.360202,0.35186,0.642638,0.553875,0.834093,0.131143,0.850286,0.414226,0.515987,0.996685,0.0896233,0.639754,0.337374,0.828469,0.837661,0.0886765,0.729513,0.94142,0.496396,0.494487,0.413513,0.0327989,0.950248,0.0925575,0.520967,0.126249,0.574631,0.97336,0.00126535,0.620548,0.945343,0.238956,0.0902866,0.658622,0.369046,0.623454,0.496925,0.620046,0.745326,0.756147,0.129944,0.571976,0.0974458,0.699654,0.78639,0.753455,0.116371,0.130436,0.917146,0.193975,0.646519,0.354746,0.861821,0.277271,0.402835,0.387312,0.133842,0.109353,0.951542,0.275984,0.176997,0.879342,0.571061,0.915966,0.281049,0.538365,0.57706,0.724187,0.942317,0.0331168,0.501304,0.459605,0.978315,0.601525,0.896393,0.454185,0.128924,0.609117,0.60147,0.308929,0.188811,0.302533,0.725955,0.496239,0.522325,0.385325,0.0409099,0.776315,0.963498,0.71334,0.208421,0.832415,0.548533,0.369063,0.193155,0.882703,0.942069,0.311114,0.0396953,0.0412098,0.34805,0.863608,0.691567,0.798149,0.49642,0.786136,0.0608342,0.36991,0.0148922,0.459304,0.757465,0.337388,0.923875,0.754959,0.948358,0.168794,0.356625,0.470502,0.959269,0.803999,0.103892,0.202953,0.60302,0.715148,0.646196,0.0453575,0.614103,0.0997954,0.702578,0.867729,0.210354,0.256613,0.442626,0.199577,0.450929,0.545431,0.963165,0.560294,0.973022,0.0468647,0.303002,0.294,0.921171,0.580947,0.930667,0.10706,0.37651,0.48093,0.918498,0.812827,0.112358,0.119688,0.845798,0.463619,0.881496,0.941614,0.982342,0.993578,0.510284,0.513494,0.722179,0.634528,0.851572,0.281397,0.120787,0.126975,0.214954,0.0476279,0.0545005,0.985566,0.0700811,0.692244,0.86682,0.245821,0.626405,0.94792,0.932966,0.998113,0.665871,0.268613,0.6854,0.534616,0.65588,0.0161148,0.77699,0.858436,0.367399,0.642705,0.8672,0.117444,0.982588,0.014533,0.512317,0.219362,0.730566,0.756054,0.86726,0.565142,0.14067,0.778138,0.423998,0.622215,0.231753,0.182852,0.141572,0.786586,0.966779,0.45107,0.668429,0.383969,0.61964,0.0867679,0.570355,0.0430869,0.0708416,0.519461,0.542653,0.734926,0.183105,0.605298,0.0881985,0.180909,0.549734,0.494499,0.339725,0.505565,0.0985264,0.690594,0.389471,0.324022,0.339738,0.953311,0.307723,0.0870835,0.859131,0.632695,0.290995,0.755567,0.309973,0.921784,0.319274,0.751863,0.107104,0.969418,0.127118,0.559558,0.784388,0.0579865,0.913548,0.0631046,0.80158,0.297603,0.12037,0.452102,0.502276,0.536589,0.188195,0.877256,0.313646,0.809041,0.228394,0.614482,0.312996,0.921111,0.172744,0.820812,0.00976914,0.77259,0.574057,0.49304,0.419089,0.00266498,0.48114,0.509404,0.792263,0.378656,0.72583,0.366917,0.544425,0.0566074,0.820817,0.0469691,0.916831,0.108377,0.741535,0.195988,0.918456,0.808458,0.213388,0.771393,0.66042,0.861716,0.925048,0.794996,0.159173,0.0590256,0.496886,0.441887,0.858946,0.290556,0.961451,0.0346996,0.616956,0.155957,0.138676,0.598615,0.448309,0.760777,0.754557,0.347135,0.348489,0.137849,0.160575,0.224359,0.0970616,0.204967,0.1075,0.804871,0.311499,0.800445,0.79005,0.31636,0.446006,0.231183,0.509824,0.883097,0.488788,0.470694,0.885758,0.687536,0.668248,0.755753,0.535434,0.930099,0.30478,0.664572,0.555913,0.219885,0.186048,0.277763,0.241007,0.709253,0.895508,0.3647,0.0159734,0.603633,0.775528,0.437017,0.230697,0.0702075,0.587583,0.45825,0.995152,0.0587249,0.0021947,0.267316,0.298187,0.527779,0.717522,0.499647,0.55872,0.142019,0.799237,0.257815,0.341614,0.780073,0.341151,0.852455,0.402991,0.26021,0.470401,0.843775,0.161551,0.7924,0.485329,0.509829,|0.825792,0.0568937,0.16351,0.41517,0.903627,0.440487,0.795981,0.235053,0.622405,0.9941,0.505226,0.856078,0.411164,0.586737,0.65258,0.725163,0.879521,0.072766,0.303457,0.243411,0.584723,0.261877,0.214018,0.956391,0.520185,0.110522,0.904623,0.110813,0.415601,0.558545,0.658144,0.362075,0.161422,0.233731,0.729614,0.468176,0.311857,0.962737,0.220202,0.981674,0.536779,0.200754,0.386194,0.568408,0.328767,0.737936,0.299656,0.381451,0.887473,0.0605826,0.700703,0.816953,0.422655,0.150384,0.393533,0.207229,0.640234,0.708385,0.320763,0.311038,0.294275,0.0973421,0.391802,0.594577,0.523279,0.411882,0.123769,0.795966,0.458093,0.515968,0.762109,0.895401,0.398245,0.435577,0.85369,0.767406,0.312194,0.713569,0.460597,0.190591,0.538609,0.131607,0.754498,0.478753,0.750535,0.0478464,0.162612,0.0880231,0.062165,0.912685,0.814308,0.701777,0.476274,0.570351,0.199593,0.049139,0.526629,0.9866,0.576937,0.546017,0.998917,0.917776,0.92965,0.548223,0.162531,0.343342,0.874798,0.880819,0.154938,0.983127,0.375906,0.1312,0.971241,0.540021,0.0869309,0.452666,0.957326,0.091862,0.583034,0.525835,0.151504,0.142586,0.774766,0.318352,0.968297,0.907737,0.407275,0.484357,0.503388,0.974709,0.654698,0.392687,0.322525,0.116388,0.994267,0.018441,0.894014,0.460616,0.836801,0.100552,0.629976,0.533182,0.126321,0.27739,0.916226,0.688526,0.25751,0.372332,0.396681,0.103616,0.478966,0.497466,0.882018,0.733054,0.342801,0.36871,0.827628,0.720866,0.966632,0.325684,0.170552,0.987756,0.0194408,0.943994,0.111461,0.535103,0.612009,0.35896,0.229175,0.164655,0.497294,0.210345,0.111176,0.528602,0.518268,0.0932418,0.633387,0.0628256,0.572091,0.6992,0.437032,0.310024,0.767937,0.11669,0.717087,0.964241,0.316119,0.973204,0.471004,0.801896,0.185196,0.0101306,0.424061,0.689683,0.17945,0.958655,0.521303,0.729137,0.709957,0.252146,0.825837,0.176005,0.236336,0.468461,0.479082,0.590522,0.841483,0.0943407,0.854285,0.141755,0.426737,0.456072,0.591058,0.0969017,0.586894,0.0108402,0.745034,0.732254,0.0694053,0.8803,0.00578225,0.0507715,0.924536,0.0341794,0.560214,0.939145,0.498538,0.986542,0.379872,0.736062,0.482612,0.925833,0.847916,0.116533,0.0208939,0.635072,0.199788,0.647752,0.891015,0.120482,0.160879,0.110131,0.539808,0.327826,0.0170572,0.0608333,0.640194,0.387035,0.729345,0.266274,0.722415,0.340227,0.322509,0.259061,0.644824,0.294005,0.0178229,0.74789,0.28213,0.295189,0.662522,0.322822,0.857286,0.0730896,0.93535,0.00335819,0.31177,0.0458195,0.395885,0.0417606,0.997635,0.533851,0.080874,0.195685,0.334535,0.94329,0.898967,0.36077,0.321216,0.589522,0.820594,0.0145551,0.164548,0.268383,0.0768545,0.395504,0.51389,0.150801,0.592093,0.435104,0.70925,0.283743,0.378425,0.577952,0.943853,0.33918,0.653057,0.643299,0.00546157,0.0649286,0.678443,0.984508,0.727438,0.239313,0.0190524,0.299775,0.134856,0.740791,0.964146,0.683771,0.80203,0.267841,0.451906,0.652866,0.831463,0.241442,0.935996,0.796382,0.494273,0.339144,0.948856,0.0507819,0.205842,0.600201,0.0859214,0.847654,0.844681,0.6077,0.166711,0.573582,0.56494,0.237076,0.703699,0.558888,0.0837576,0.384025,0.663313,0.636873,0.587851,0.898386,0.715544,0.405631,0.320533,0.28165,0.342363,0.270208,0.0564965,0.594076,0.294086,0.6873,0.921534,0.115849,0.795682,0.842777,0.862169,0.0611593,0.249201,0.036493,0.821638,0.793124,0.28441,0.445259,0.25755,0.296705,0.887121,0.0427096,0.0332491,0.0582117,0.267763,0.358848,0.368697,0.69251,0.555338,0.459001,0.130895,0.480935,0.116996,0.45863,0.484132,0.639464,0.0579129,0.800468,0.909161,0.511137,0.106773,0.578416,0.00907606,0.310662,0.270419,0.712701,0.95076,0.623573,0.0764425,0.640268,0.151528,0.183076,0.993394,0.87987,0.935863,0.0408089,0.636816,0.179137,0.927483,0.360873,0.658244,0.681508,0.824803,0.66052,0.373626,0.657877,0.419784,0.958589,0.168905,0.838704,0.904492,0.730394,0.784322,0.351153,0.523041,0.389728,0.751259,0.780962,0.361691,0.406858,0.0415368,0.168126,0.247391,0.119845,0.0787292,0.725244,0.192232,0.960725,0.469957,0.585738,0.638224,0.934883,0.777624,0.904173,0.999702,0.719263,0.600006,0.0909628,0.50599,0.734116,0.300094,0.26464,0.974463,0.130007,0.229426,0.220292,0.882061,0.798663,0.411559,0.0234029,0.303673,0.843392,0.849009,0.866197,0.264357,0.368176,0.790033,0.162781,0.23529,0.618409,0.824545,0.87923,0.592201,0.374435,0.0354554,0.670105,0.969891,0.832405,0.0664592,0.698536,0.642981,0.979007,0.451858,0.333056,0.371756,0.130863,0.253014,0.512628,0.723752,0.542073,0.335387,0.0389053,0.448903,0.200866,0.521769,0.848663,0.0954932,0.513502,0.962752,0.514527,0.869424,0.72674,0.11334,0.356794,0.0932205,0.812629,0.0390571,0.522835,0.906156,0.608616,0.349199,0.205612,0.507532,0.436664,0.408841,0.0344859,0.923454,0.273963,0.154984,0.305635,0.918592,0.840841,0.304304,0.499883,0.922343,0.46121,0.0540789,0.971896,0.891222,0.00234801,0.0650228,0.966336,0.223383,0.0344636,0.326717,0.67239,0.112419,0.587231,0.513629,0.0364774,0.842186,0.130269,0.812746,0.603587,0.9035,0.705659,0.679341,0.0844856,0.291222,0.428719,0.0598977,0.924572,0.104211,0.323261,0.239042,0.557939,0.641664,0.843531,0.730138,0.0276138,0.686978,0.185017,0.823152,0.0385951,0.394587,0.634371,0.237296,0.980725,0.749283,0.427495,0.733156,0.812338,0.920353,0.850447,0.388821,0.742299,0.351824,0.58347,0.159605,0.641263,0.924998,0.848984,0.708986,0.213726,0.192864,0.368205,0.141634,0.127108,0.643176,0.522723,0.746542,0.0816047,0.210378,0.427865,0.873155,0.252096,0.237774,0.0390774,0.68161,0.493147,0.552367,0.462797,0.0659038,0.889339,0.800315,0.276786,0.197716,0.380403,0.902599,0.476482,0.411169,0.407018,0.922007,0.167888,0.40943,0.51205,0.992957,0.61569,0.0502138,0.967217,0.777234,0.836783,0.705486,0.720001,0.420537,0.770867,0.250057,0.941904,0.882872,0.855369,0.818161,0.473413,0.173433,0.493791,0.676837,0.794039,0.463161,0.975537,0.257992,0.810764,0.0969094,0.757306,0.316856,0.209937,0.572498,0.936355,0.512591,0.179151,0.975726,0.0226792,0.157542,0.585019,0.36277,0.030894,0.514345,0.846107,0.460851,0.71927,0.224054,0.0868809,0.0921562,0.0743186,0.489151,0.81665,0.805601,0.513074,0.117245,0.90407,0.0826572,0.303164,0.25011,0.706929,0.945471,0.791251,0.827321,0.0826575,0.569603,0.105551,0.227302,0.0466117,0.392092,0.353258,0.166025,0.346004,0.360187,0.637292,0.0184836,0.100189,0.77598,0.935956,0.614298,0.990844,0.0524768,0.155989,0.912899,0.484414,0.35877,0.552845,0.181428,0.3607,0.382328,0.964168,0.743255,0.395417,0.166278,0.0588805,0.678321,0.811463,0.592471,0.431474,0.745147,0.666016,0.204686,0.196772,0.770833,0.473326,0.804922,0.0896788,0.796277,0.884211,0.0522681,0.304274,0.919137,0.614471,0.0300236,0.237564,0.489738,0.0647668,0.237344,0.969995,0.138057,0.944864,0.549072,0.844028,0.348963,0.416232,0.540253,0.676278,0.418828,0.594929,0.150421,0.414667,0.262729,0.210066,0.398461,0.255228,0.344498,0.607043,0.245275,0.461352,0.240132,0.648602,0.163151,0.260295,0.0893409,0.107551,0.708785,0.305061,0.0955644,0.974974,0.281639,0.121808,0.519406,0.147782,0.614246,0.0193253,0.358073,0.133428,0.81332,0.449651,0.530638,0.588622,0.345169,0.437812,0.24779,0.324077,0.489803,0.399738,0.595033,0.502098,0.324442,0.860665,0.79655,0.475136,0.532506,0.0695609,0.411688,0.448511,0.879477,0.369716,0.756349,0.112546,0.716146,0.925085,0.310083,0.2254,0.0884209,0.221034,0.720277,0.133334,0.950137,0.87533,0.903915,0.38127,0.336175,0.767563,0.459324,0.566331,0.298832,0.0393002,0.757859,0.457741,0.823715,0.273881,0.659281,0.158526,0.346434,0.486591,0.801079,0.0854278,0.173917,0.0198461,0.709997,0.770262,0.433018,0.642307,0.604728,0.732893,0.433771,0.887604,0.482781,0.48407,0.448142,0.874989,0.426753,0.783473,0.351354,0.845289,0.665924,0.606532,0.390139,0.847339,0.802047,0.809606,0.720004,0.88216,0.0702696,0.297051,0.731615,0.853051,0.847866,0.0389592,0.496898,0.543745,0.529752,0.66399,0.987913,0.900988,0.694263,0.592232,0.230572,0.907491,0.878911,0.970866,0.173899,0.628,0.650453,0.749914,0.498215,0.506801,0.947383,0.203358,0.223854,0.681298,0.763424,0.240075,0.896166,0.34537,0.0849124,0.420432,0.793225,0.582506,0.416542,0.180344,0.14188,0.432196,0.651736,0.911307,0.849689,0.203673,0.0583515,0.140182,0.169845,0.00621784,0.334413,0.489445,0.993521,0.309197,0.726622,0.0248432,0.965189,0.384908,0.260485,0.0402719,0.167271,0.64877,0.713181,0.948822,0.0693269,0.128423,0.119776,0.868496,0.967662,0.152104,0.230787,0.00593507,0.231249,0.42862,0.999756,0.342322,0.680692,0.732154,0.928015,0.699489,0.681806,0.657088,0.85373,0.540944,0.314198,0.964265,0.803984,0.213618,0.663602,0.97975,0.375193,0.335696,0.334244,0.40905,0.745149,0.729762,0.356772,0.482462,0.835251,0.950808,0.555851,0.160185,0.353434,0.685307,0.330272,0.032321,0.0563944,0.311549,0.348024,0.636061,0.160833,0.229731,0.416141,0.341451,0.19837,0.419707,0.908479,0.648196,0.450492,0.010519,0.69815,0.514354,0.143577,0.741741,0.764133,0.042792,0.869714,0.421241,0.485336,0.086389,0.877432,0.728999,0.62893,0.770463,0.317176,0.343787,0.514044,0.749092,0.508111,0.817774,0.77471,0.424309,0.48226,0.390378,0.477791,0.304966,0.143295,0.405743,0.821218,0.18181,0.975778,0.20796,0.754986,0.781313,0.286773,0.225648,0.129534,0.381789,0.677796,0.724562,0.121688,0.422193,|0.121658,0.266588,0.922875,0.205942,0.0849881,0.511673,0.31724,0.789346,0.538746,0.100383,0.683991,0.128598,0.730232,0.233737,0.975929,0.233845,0.438339,0.859478,0.970058,0.545335,0.0267197,0.0185252,0.778377,0.579985,0.50009,0.805848,0.880671,0.399227,0.32061,0.90931,0.569854,0.251738,0.855259,0.82337,0.0980979,0.107451,0.501633,0.876804,0.645958,0.00771207,0.701006,0.833562,0.256405,0.200373,0.0132785,0.575764,0.203012,0.36129,0.883643,0.31643,0.923367,0.44177,0.999934,0.626517,0.585375,0.901631,0.446009,0.772949,0.573368,0.156985,0.509255,0.369748,0.0443953,0.293136,0.910991,0.226755,0.200805,0.0405343,0.514674,0.811778,0.259498,0.328312,0.156239,0.682954,0.375854,0.967746,0.436234,0.28639,0.393494,0.967791,0.275803,0.585735,0.855842,0.867361,0.490367,0.521344,0.698597,0.415904,0.698211,0.928014,0.839774,0.556599,0.949604,0.0302076,0.888866,0.400594,0.0565557,0.116167,0.907877,0.931097,0.519943,0.000146031,0.0430778,0.340451,0.888634,0.473223,0.743111,0.568319,0.912886,0.852491,0.144563,0.319599,0.0240299,0.0854236,0.420598,0.331448,0.241697,0.304118,0.0829145,0.814708,0.803732,0.119855,0.0775664,0.177453,0.774249,0.212843,0.545552,0.62701,0.424048,0.680091,0.315363,0.29054,0.423912,0.997296,0.722993,0.0859573,0.900143,0.934334,0.268756,0.0552692,0.876686,0.125671,0.358702,0.952151,0.465962,0.187446,0.018515,0.502345,0.663712,0.369191,0.0183012,0.530933,0.455606,0.66438,0.375628,0.503646,0.281705,0.0646834,0.535567,0.0659894,0.658153,0.0752073,0.060077,0.22576,0.4632,0.917795,0.639884,0.0324673,0.931804,0.632697,0.536162,0.859328,0.70559,0.525849,0.532035,0.0870226,0.567141,0.318064,0.38222,0.671909,0.230985,0.277809,0.679853,0.211589,0.966239,0.0965649,0.497273,0.796978,0.972001,0.423025,0.975824,0.121301,0.0764515,0.00528151,0.0310674,0.747356,0.170162,0.181042,0.148333,0.893196,0.491127,0.0454909,0.0152443,0.267058,0.724016,0.0761783,0.738328,0.410287,0.0526124,0.476318,0.467406,0.88172,0.804319,0.133079,0.643377,0.956556,0.223395,0.424608,0.454083,0.692605,0.267538,0.73513,0.593907,0.956748,0.396672,0.489948,0.444993,0.987692,0.370181,0.579919,0.265198,0.942185,0.282601,0.89357,0.224786,0.0573531,0.673318,0.826241,0.363331,0.469839,0.130508,0.576669,0.737732,0.973547,0.210474,0.796645,0.423526,0.221097,0.00291431,0.335273,0.625715,0.607445,0.626304,0.109135,0.68467,0.466715,0.00425845,0.599216,0.0792634,0.588185,0.298621,0.656998,0.0672326,0.636658,0.620751,0.188813,0.882218,0.167841,0.895979,0.471174,0.382743,0.763815,0.273255,0.519659,0.285306,0.79173,0.630322,0.884995,0.643142,0.794413,0.484211,0.19787,0.570235,0.134878,0.066735,0.856846,0.34228,0.0203275,0.362166,0.768023,0.126688,0.463618,0.978499,0.387065,0.537297,0.177492,0.796648,0.713823,0.249728,0.34282,0.338885,0.431578,0.928511,0.590898,0.521762,0.00799346,0.190987,0.089479,0.36772,0.931912,0.719691,0.496231,0.229831,0.674565,0.339462,0.594833,0.0183976,0.422885,0.164415,0.147757,0.0183954,0.877618,0.222521,0.0134438,0.565798,0.308753,0.758784,0.160448,0.284546,0.0551186,0.257914,0.560124,0.025608,0.0149382,0.70998,0.92852,0.839959,0.602983,0.637529,0.885139,0.0691619,0.112189,0.349439,0.24637,0.809992,0.812011,0.796392,0.486542,0.24623,0.625074,0.244608,0.882615,0.839378,0.956898,0.0571603,0.655811,0.879545,0.870264,0.870955,0.875461,0.343326,0.0320965,0.0834107,0.0115074,0.659771,0.808567,0.300892,0.0346239,0.819165,0.100001,0.984802,0.576605,0.729756,0.270406,0.128507,0.231184,0.89495,0.183186,0.47296,0.813971,0.575204,0.56315,0.0860625,0.498748,0.0383597,0.462368,0.864588,0.421821,0.474011,0.908078,0.443286,0.103078,0.775752,0.423468,0.9308,0.659832,0.136459,0.711648,0.0482463,0.796459,0.572766,0.364977,0.95645,0.820216,0.00849724,0.725469,0.798925,0.319527,0.95376,0.417634,0.346743,0.696388,0.620463,0.391893,0.974398,0.119226,0.602891,0.233951,0.693923,0.335816,0.907869,0.432333,0.156062,0.791344,0.0285441,0.0472062,0.472571,0.394799,0.66358,0.383426,0.276674,0.840562,0.0198736,0.229647,0.0647168,0.583305,0.668137,0.184438,0.928024,0.808541,0.475204,0.158699,0.750562,0.365915,0.515333,0.323711,0.694954,0.174351,0.0664614,0.192675,0.978009,0.815295,0.930107,0.126759,0.238201,0.135022,0.652934,0.312857,0.864302,0.20559,0.627153,0.637461,0.198501,0.168507,0.715917,0.546455,0.499309,0.670029,0.804605,0.954355,0.50553,0.374907,0.501424,0.170175,0.177374,0.120894,0.858348,0.449263,0.443267,0.696116,0.471712,0.166035,0.727128,0.524315,0.928117,0.779685,0.994274,0.123652,0.410053,0.921681,0.0702516,0.0952922,0.726429,0.315864,0.525998,0.259199,0.77609,0.263515,0.527416,0.663628,0.140822,0.932781,0.374913,0.455303,0.841742,0.784519,0.65206,0.877869,0.562428,0.0805962,0.762133,0.572093,0.422331,0.271889,0.0501297,0.442191,0.13103,0.367944,0.889406,0.713432,0.849774,0.0791129,0.228041,0.228546,0.402612,0.158845,0.332502,0.547897,0.666258,0.984457,0.847949,0.311746,0.227723,0.0562266,0.19387,0.0943732,0.881764,0.329446,0.866093,0.299488,0.643209,0.474867,0.381137,0.177546,0.495565,0.201634,0.099784,0.648318,0.100644,0.971851,0.0330819,0.559196,0.200283,0.159996,0.676814,0.676285,0.128809,0.926151,0.0893542,0.054162,0.237425,0.354112,0.192067,0.634761,0.994394,0.969368,0.603096,0.32967,0.364167,0.152146,0.826565,0.367065,0.169108,0.298189,0.0872676,0.665077,0.44091,0.700011,0.610706,0.15047,0.804531,0.0699933,0.121751,0.140659,0.136584,0.727745,0.560073,0.074715,0.612317,0.920434,0.474118,0.928082,0.454393,0.511099,0.835838,0.0245783,0.778009,0.397121,0.297448,0.224086,0.142895,0.232629,0.995927,0.510632,0.279592,0.997886,0.234972,0.77432,0.80265,0.250631,0.0527735,0.852262,0.228602,0.13868,0.246361,0.454437,0.855423,0.719183,0.288408,0.285493,0.417467,0.277785,0.341186,0.60147,0.141778,0.657505,0.0974003,0.960523,0.0513963,0.321094,0.869652,0.808927,0.509003,0.782629,0.0974228,0.27751,0.16955,0.705162,0.523482,0.46966,0.635942,0.510305,0.221387,0.965519,0.491709,0.907877,0.336523,0.486848,0.636988,0.656742,0.762137,0.515732,0.332153,0.603345,0.902279,0.0597056,0.688785,0.35529,0.364264,0.287798,0.367318,0.960879,0.415706,0.596224,0.218532,0.702005,0.448255,0.962746,0.654191,0.76877,0.525209,0.905857,0.592633,0.136532,0.846643,0.876851,0.192452,0.317886,0.411248,0.24834,0.422319,0.899312,0.777405,0.725459,0.930785,0.178129,0.625459,0.420759,0.585429,0.595822,0.987215,0.876671,0.362342,0.089317,0.75049,0.900033,0.193723,0.780405,0.484471,0.215802,0.409135,0.248367,0.242117,0.883491,0.7676,0.75823,0.205655,0.21155,0.304349,0.532163,0.920928,0.0871615,0.102998,0.711583,0.948012,0.126305,0.732306,0.923967,0.640121,0.186885,0.228003,0.479428,0.848708,0.574286,0.127946,0.117404,0.0353589,0.206778,0.00672299,0.913738,0.872942,0.884169,0.806781,0.0120299,0.939603,0.810005,0.418785,0.722046,0.909477,0.780155,0.68504,0.332213,0.761228,0.313848,0.957894,0.866502,0.824146,0.746183,0.672117,0.523037,0.571246,0.550811,0.772836,0.0624384,0.532787,0.954328,0.810754,0.13754,0.994168,0.689854,0.178172,0.722901,0.385595,0.446777,0.00425696,0.779027,0.566967,0.10091,0.353336,0.746746,0.0870311,0.410919,0.0601867,0.738512,0.480851,0.984661,0.994905,0.00153112,0.450959,0.289096,0.763134,0.430507,0.252756,0.283364,0.90585,0.767395,0.22668,0.952216,0.057731,0.906179,0.644597,0.677033,0.314837,0.596765,0.311024,0.162287,0.131214,0.274045,0.93963,0.225477,0.579731,0.85598,0.884138,0.940904,0.774171,0.756468,0.945436,0.871936,0.246235,0.499543,0.353025,0.873304,0.816324,0.0779914,0.0102945,0.467025,0.806747,0.260886,0.886766,0.0834603,0.564406,0.894903,0.715525,0.632316,0.783134,0.331408,0.514495,0.394559,0.210704,0.551603,0.162768,0.838901,0.546007,0.130962,0.961347,0.440259,0.0790721,0.833035,0.965412,0.29941,0.342565,0.688368,0.441077,0.0708045,0.562584,0.168328,0.0017699,0.291715,0.402169,0.650942,0.255226,0.248056,0.2432,0.708074,0.42816,0.694121,0.546955,0.414548,0.695257,0.961476,0.612717,0.748951,0.0846708,0.410673,0.887282,0.516121,0.126826,0.962414,0.364384,0.694124,0.42905,0.0656056,0.743089,0.954555,0.963448,0.488679,0.361666,0.00861633,0.454833,0.840704,0.890175,0.0152715,0.112311,0.0620404,0.531695,0.785531,0.354304,0.43229,0.72804,0.0447628,0.101517,0.612972,0.344257,0.915751,0.064546,0.457834,0.528096,0.934632,0.899384,0.173,0.154976,0.661297,0.00675547,0.552997,0.167475,0.880234,0.475866,0.838163,0.32508,0.478385,0.250265,0.979362,0.503435,0.656335,0.49468,0.178435,0.468399,0.915576,0.671247,0.968738,0.958591,0.571489,0.360861,0.704319,0.585902,0.388176,0.233626,0.89662,0.0385093,0.325757,0.430254,0.269401,0.00574672,0.708262,0.118567,0.778856,0.491903,0.789364,0.8235,0.528272,0.779586,0.837672,0.337784,0.659806,0.43014,0.700146,0.621422,0.913441,0.0521781,0.76569,0.935812,0.735282,0.994463,0.163793,0.89272,0.366523,0.77775,0.199557,0.268082,0.577525,0.197263,0.420377,0.253625,0.855494,0.049304,0.100108,0.234889,0.203958,0.479403,0.483577,0.330273,0.821986,0.538536,0.951475,0.225831,0.528128,0.207834,0.233828,0.361866,0.569296,0.162652,0.299008,0.412262,0.622668,0.138087,0.76987,0.933601,0.369972,0.867206,0.18828,0.174397,0.280004,0.725027,0.367324,0.223522,0.56481,0.0393332,0.112723,0.682114,0.289501,|0.0511286,0.395513,0.28175,0.467487,0.851253,0.607858,0.758551,0.161604,0.429235,0.0734934,0.108176,0.773112,0.529552,0.755676,0.874265,0.625801,0.292544,0.617811,0.910105,0.356511,0.642311,0.657471,0.816956,0.321523,0.552864,0.69448,0.069016,0.617395,0.480116,0.939853,0.837917,0.389531,0.4708,0.454722,0.581984,0.796133,0.687722,0.664323,0.127598,0.115002,0.214508,0.743461,0.795375,0.66665,0.759181,0.162204,0.540336,0.0770897,0.376332,0.74718,0.481173,0.998026,0.218191,0.21495,0.6045,0.804652,0.324914,0.879057,0.178165,0.213724,0.692212,0.490447,0.71889,0.969048,0.947878,0.956536,0.201489,0.901154,0.181063,0.192959,0.210195,0.346379,0.433957,0.362797,0.31376,0.116805,0.787241,0.601302,0.204761,0.467922,0.171231,0.513296,0.379684,0.960262,0.523951,0.245454,0.578423,0.481695,0.890065,0.210261,0.84146,0.453153,0.796172,0.13283,0.929575,0.641817,0.835781,0.925791,0.0783319,0.67268,0.0113454,0.496257,0.948632,0.0968641,0.88686,0.173456,0.299955,0.765801,0.617903,0.698339,0.968252,0.695741,0.652318,0.328224,0.220779,0.188862,0.413422,0.776019,0.834087,0.558402,0.695295,0.56412,0.935223,0.980986,0.763271,0.564196,0.169436,0.388126,0.577082,0.447631,0.413884,0.564331,0.184365,0.638983,0.778273,0.169266,0.517539,0.363775,0.94631,0.948713,0.2414,0.200025,0.0550025,0.339754,0.424404,0.840807,0.622243,0.426955,0.823822,0.822423,0.4215,0.168669,0.638716,0.191016,0.247166,0.71428,0.761833,0.293702,0.895626,0.123835,0.575595,0.558914,0.0844943,0.827408,0.712362,0.144842,0.616358,0.0445945,0.418941,0.604738,0.460014,0.283718,0.168912,0.734561,0.349092,0.971329,0.937271,0.0839656,0.993802,0.162165,0.146716,0.0918128,0.482466,0.830022,0.418459,0.829559,0.658759,0.150218,0.574637,0.629375,0.133194,0.0829256,0.653086,0.515978,0.936278,0.323807,0.496121,0.812099,0.201958,0.385915,0.825817,0.240497,0.492022,0.836435,0.672744,0.573132,0.635016,0.502127,0.231446,0.844054,0.623539,0.548914,0.0849202,0.948084,0.548129,0.147477,0.366818,0.11899,0.599565,0.0394826,0.0726385,0.74708,0.703411,0.404561,0.774569,0.512102,0.142859,0.142628,0.986786,0.869026,0.829539,0.61233,0.942969,0.919285,0.988871,0.109272,0.722489,0.610874,0.027509,0.703317,0.161336,0.847153,0.437967,0.955668,0.515201,0.848944,0.299839,0.310972,0.853282,0.0147095,0.0860814,0.236403,0.539998,0.666063,0.427118,0.839311,0.632979,0.693437,0.96302,0.491618,0.166413,0.420422,0.0796139,0.276422,0.379356,0.934186,0.320813,0.787785,0.149544,0.475342,0.926426,0.093524,0.196968,0.0741382,0.67723,0.269962,0.785705,0.212155,0.695738,0.378252,0.0961877,0.462429,0.672671,0.856261,0.286791,0.396903,0.567662,0.36247,0.872732,0.324492,0.92071,0.457625,0.804041,0.266038,0.54051,0.672707,0.0283177,0.216385,0.391206,0.562444,0.0966326,0.0462682,0.0806236,0.559566,0.295809,0.913399,0.778779,0.93101,0.230911,0.832399,0.132145,0.787364,0.823802,0.758687,0.621057,0.848964,0.881052,0.65744,0.62919,0.175286,0.287501,0.705046,0.804905,0.82599,0.0222873,0.0117137,0.410555,0.584417,0.604957,0.865712,0.63188,0.0601708,0.552369,0.826091,0.582401,0.424165,0.419437,0.865113,0.44493,0.139506,0.317529,0.833591,0.395848,0.820695,0.251492,0.973609,0.924656,0.420592,0.849882,0.649985,0.47551,0.883887,0.500831,0.629384,0.249445,0.909273,0.82397,0.0578386,0.765975,0.204725,0.835026,0.425058,0.820705,0.704657,0.752899,0.405332,0.33707,0.373501,0.274405,0.0611175,0.606146,0.89795,0.668466,0.787146,0.341788,0.292849,0.947721,0.122275,0.76272,0.608764,0.905146,0.4155,0.533031,0.825563,0.791237,0.366074,0.455699,0.288848,0.397158,0.420835,0.322804,0.896036,0.1476,0.805781,0.338356,0.817061,0.804074,0.726272,0.621578,0.171066,0.452073,0.239548,0.23894,0.661465,0.778018,0.978715,0.862203,0.0892007,0.0439681,0.260935,0.502608,0.680915,0.577321,0.0612087,0.829467,0.764085,0.974099,0.0393824,0.829089,0.0413088,0.0463821,0.042144,0.903733,0.229515,0.0266948,0.201782,0.917003,0.854957,0.130971,0.770075,0.739365,0.614918,0.633455,0.136615,0.601483,0.87887,0.281069,0.131841,0.126898,0.748783,0.932153,0.227677,0.579576,0.525765,0.254215,0.316169,0.155904,0.732195,0.490385,0.124916,0.0269634,0.323438,0.673182,0.914627,0.580849,0.256805,0.272793,0.967389,0.290011,0.43913,0.969308,0.581415,0.734319,0.191801,0.436647,0.475373,0.643619,0.719379,0.911029,0.93654,0.668942,0.59533,0.621413,0.260443,0.492787,0.782142,0.419656,0.496908,0.755374,0.477531,0.587421,0.0221555,0.508056,0.00825661,0.997094,0.962735,0.381948,0.108876,0.27737,0.786866,0.704887,0.310078,0.242233,0.586708,0.0858757,0.315796,0.28449,0.934569,0.792613,0.162848,0.328093,0.715642,0.942134,0.265481,0.909735,0.472156,0.482175,0.297501,0.502764,0.0951322,0.942233,0.989592,0.848994,0.185247,0.13424,0.0091809,0.191649,0.204745,0.888755,0.158076,0.14228,0.883845,0.420787,0.852359,0.579257,0.613389,0.487986,0.492889,0.286172,0.413763,0.0715463,0.281954,0.380247,0.526157,0.185589,0.0520808,0.379703,0.417867,0.783295,0.943895,0.788748,0.3232,0.40158,0.572769,0.07999,0.581669,0.0127499,0.954086,0.541113,0.935278,0.24111,0.476818,0.682652,0.598748,0.369438,0.885183,0.362662,0.364828,0.370225,0.141471,0.680573,0.0169308,0.545344,0.0381774,0.540138,0.929075,0.875643,0.842842,0.920626,0.915895,0.986284,0.706786,0.792795,0.968043,0.243434,0.212778,0.243822,0.578276,0.69242,0.8332,0.480566,0.759202,0.26536,0.063929,0.86147,0.531768,0.474179,0.626369,0.412396,0.874703,0.944322,0.406554,0.0554032,0.926496,0.997839,0.0614936,0.765815,0.845138,0.971116,0.295859,0.216786,0.570694,0.599548,0.718155,0.41649,0.504426,0.344621,0.0627413,0.407535,0.673887,0.981286,0.385847,0.888453,0.699274,0.871923,0.192438,0.809327,0.499788,0.802301,0.0603878,0.793156,0.275963,0.0831971,0.0945657,0.717936,0.358924,0.501424,0.336205,0.472307,0.933099,0.271888,0.261666,0.187436,0.34297,0.787363,0.0539828,0.00641227,0.268857,0.569679,0.829538,0.637934,0.568829,0.0188583,0.987861,0.0781806,0.204317,0.0647384,0.349966,0.365002,0.43229,0.170433,0.472802,0.698676,0.421353,0.872951,0.223928,0.892433,0.0286662,0.676044,0.334278,0.0557892,0.559629,0.225864,0.0886512,0.639169,0.42239,0.802483,0.0579325,0.769894,0.617643,0.434755,0.863481,0.997328,0.287575,0.256402,0.145136,0.477211,0.163878,0.393321,0.569256,0.057385,0.253512,0.679782,0.274524,0.121003,0.0814186,0.973835,0.433986,0.742201,0.263402,0.726254,0.803958,0.468848,0.021521,0.310587,0.492761,0.245817,0.935011,0.612277,0.686518,0.352147,0.767771,0.202695,0.910244,0.0368373,0.275157,0.249921,0.0528095,0.0485986,0.0300149,0.359006,0.171288,0.574523,0.399312,0.517571,0.071724,0.604607,0.927194,0.936905,0.389627,0.116885,0.290505,0.450399,0.296603,0.919425,0.717839,0.743928,0.0655066,0.642978,0.849937,0.58515,0.276114,0.811733,0.45216,0.692363,0.251057,0.248776,0.901222,0.784575,0.328736,0.257126,0.177046,0.813907,0.595906,0.566144,0.00829947,0.185113,0.892582,0.0616051,0.533947,0.689713,0.297347,0.604411,0.820561,0.0931987,0.248366,0.883562,0.216902,0.343632,0.947014,0.758583,0.00339097,0.0373968,0.254741,0.634966,0.574532,0.0565672,0.780475,0.215972,0.882137,0.355909,0.951394,0.397938,0.882611,0.528788,0.616733,0.579716,0.404752,0.393632,0.121571,0.757483,0.0361773,0.220816,0.237758,0.774994,0.239002,0.457896,0.825726,0.858824,0.614104,0.934609,0.306787,0.629198,0.253287,0.407374,0.331199,0.912231,0.475942,0.112175,0.21689,0.871899,0.334069,0.695019,0.723391,0.592118,0.966073,0.891756,0.576657,0.980674,0.223599,0.580837,0.413733,0.0720267,0.319457,0.581036,0.580281,0.240884,0.27733,0.872372,0.519079,0.725817,0.487625,0.566465,0.338132,0.425976,0.419397,0.260336,0.209843,0.905744,0.806966,0.999043,0.783655,0.563555,0.333402,0.307326,0.786124,0.147406,0.561427,0.920685,0.878415,0.366569,0.00527507,0.358563,0.387604,0.00871485,0.607369,0.884592,0.426466,0.988516,0.984558,0.123432,0.988143,0.151221,0.729475,0.686267,0.765603,0.46026,0.538652,0.513938,0.422512,0.773406,0.332278,0.0923809,0.811934,0.647283,0.455471,0.154467,0.424864,0.0231787,0.738213,0.41931,0.508488,0.718139,0.787578,0.200018,0.0084998,0.67469,0.0383816,0.902093,0.246629,0.0449431,0.930415,0.640906,0.397431,0.456947,0.661747,0.637434,0.410686,0.513617,0.681402,0.902645,0.409834,0.995754,0.406664,0.0395976,0.570709,0.187514,0.57962,0.694514,0.943752,0.395773,0.955139,0.271705,0.439599,0.98606,0.533423,0.490768,0.823836,0.972925,0.669356,0.105748,0.235726,0.711605,0.46259,0.154243,0.926404,0.499587,0.506975,0.95858,0.293625,0.480109,0.724324,0.289946,0.555938,0.593021,0.678324,0.676381,0.190375,0.556063,0.133425,0.161732,0.93712,0.657124,0.466002,0.235747,0.470797,0.778678,0.98358,0.357604,0.775082,0.631828,0.40186,0.787414,0.75751,0.244653,0.852047,0.191585,0.865326,0.107215,0.908753,0.501932,0.52979,0.0958035,0.583036,0.620692,0.708985,0.829008,0.276354,0.37377,0.0857194,0.567414,0.980298,0.671847,0.264926,0.611747,0.923405,0.215719,0.692365,0.0546495,0.280256,0.248992,0.292259,0.94011,0.991307,0.14067,0.890698,0.327766,0.986364,0.566855,0.035123,0.840784,0.969689,0.943902,0.768958,0.863528,0.820786,0.304653,0.455159,0.571888,0.71505,0.698925,0.0751284,0.501857,0.246618,0.0881748,0.606101,0.21795,0.196403,0.0736681,0.970531,|0.0701169,0.738412,0.0814995,0.554262,0.0707526,0.081364,0.299354,0.513663,0.976203,0.573943,0.100686,0.888804,0.0321693,0.267338,0.813811,0.742803,0.307016,0.676147,0.0811333,0.721014,0.660874,0.158747,0.0897382,0.631235,0.856744,0.290518,0.19643,0.315383,0.57982,0.149559,0.399006,0.469583,0.275159,0.140901,0.930866,0.928715,0.625181,0.345352,0.223562,0.404073,0.86068,0.0597451,0.65673,0.249129,0.864308,0.434431,0.798378,9.39965e-05,0.627071,0.558164,0.60507,0.643762,0.775649,0.919907,0.547523,0.561845,0.196924,0.911845,0.330112,0.248223,0.809974,0.842811,0.931281,0.284173,0.0761013,0.76295,0.170059,0.338253,0.393595,0.24615,0.635912,0.30605,0.0658582,0.0618833,0.0347394,0.141023,0.192113,0.708852,0.0450019,0.0726908,0.465864,0.167735,0.661745,0.499736,0.0311413,0.625151,0.697549,0.184008,0.360695,0.208125,0.056383,0.14177,0.29114,0.382562,0.209434,0.87244,0.962866,0.545448,0.30346,0.0551912,0.569799,0.679641,0.930526,0.100212,0.40779,0.467678,0.752409,0.426815,0.333382,0.0628977,0.40861,0.165585,0.797906,0.703778,0.128717,0.831449,0.35421,0.930047,0.57817,0.927974,0.959613,0.615385,0.171382,0.753451,0.440691,0.0356327,0.372384,0.891563,0.999471,0.495697,0.520841,0.632391,0.364712,0.543381,0.10939,0.0152788,0.342135,0.343296,0.195095,0.0900978,0.322716,0.987884,0.892286,0.847714,0.529229,0.619942,0.798767,0.501742,0.521821,0.213731,0.29632,0.970198,0.0656158,0.998632,0.647685,0.432947,0.700733,0.0793179,0.533105,0.21371,0.289899,0.810092,0.390631,0.767347,0.327647,0.333759,0.457523,0.814342,0.806063,0.0885276,0.380388,0.151754,0.638218,0.31309,0.46809,0.592665,0.971852,0.821647,0.798751,0.593941,0.345147,0.157083,0.82151,0.0515768,0.135278,0.22876,0.400647,0.872919,0.730759,0.846228,0.565392,0.1994,0.0592182,0.0142761,0.713006,0.378517,0.418551,0.939054,0.558021,0.325714,0.855233,0.102439,0.304018,0.193758,0.494929,0.047981,0.364885,0.957455,0.139283,0.321435,0.728704,0.0805231,0.389372,0.768153,0.966942,0.244007,0.725763,0.816731,0.0707301,0.470556,0.253188,0.43193,0.557785,0.742394,0.310434,0.803159,0.508521,0.255577,0.0137189,0.0679841,0.327411,0.0497828,0.228403,0.34452,0.0626763,0.100526,0.661524,0.120971,0.145568,0.985256,0.312911,0.62415,0.348337,0.153483,0.609847,0.949039,0.283482,0.30328,0.304711,0.361838,0.698317,0.142026,0.249027,0.177846,0.0284886,0.180901,0.883508,0.120051,0.533151,0.542865,0.378585,0.446939,0.0846074,0.593709,0.0491168,0.891502,0.195117,0.734978,0.446555,0.585001,0.970766,0.830047,0.566701,0.128959,0.491041,0.599871,0.560422,0.708666,0.0869656,0.380827,0.675823,0.984076,0.0808361,0.0801595,0.906256,0.782592,0.0705836,0.478416,0.875081,0.281013,0.770224,0.781888,0.970638,0.715753,0.610079,0.37721,0.864324,0.522214,0.341978,0.754223,0.247893,0.0770457,0.0402296,0.648453,0.899633,0.343844,0.81866,0.947824,0.562987,0.872062,0.302658,0.649143,0.64598,0.250453,0.526618,0.780959,0.242332,0.17487,0.933676,0.906963,0.946466,0.326126,0.12044,0.511374,0.413956,0.665745,0.207029,0.0582064,0.622409,0.89524,0.588808,0.522881,0.118321,0.233588,0.743134,0.909188,0.683709,0.707355,0.996259,0.0186557,0.120006,0.51716,0.526095,0.667244,0.0915085,0.326068,0.0336658,0.658109,0.982997,0.129353,0.740127,0.471783,0.0748331,0.314763,0.225235,0.363177,0.197155,0.32882,0.338031,0.0719497,0.80987,0.956532,0.686482,0.63809,0.46875,0.504072,0.628814,0.544504,0.995213,0.817684,0.808996,0.867798,0.314455,0.945065,0.100681,0.392182,0.394,0.272235,0.547386,0.00916213,0.952813,0.0400698,0.729188,0.386175,0.445994,0.851602,0.603633,0.183796,0.0346332,0.611301,0.44227,0.458139,0.925206,0.940691,0.720122,0.422093,0.209969,0.150637,0.901357,0.436473,0.57125,0.781508,0.624891,0.159191,0.366352,0.426873,0.424636,0.194731,0.14995,0.168321,0.490092,0.815797,0.330602,0.48375,0.357436,0.586406,0.733302,0.491497,0.196791,0.626161,0.225268,0.201541,0.790685,0.715688,0.992821,0.852453,0.124661,0.765843,0.0172665,0.143709,0.119456,0.978341,0.156979,0.603051,0.312418,0.25065,0.495055,0.0477973,0.294714,0.91817,0.0696134,0.00199234,0.387629,0.122797,0.495787,0.235409,0.387816,0.784704,0.235844,0.56915,0.598795,0.102847,0.798737,0.690703,0.376207,0.601992,0.591033,0.206349,0.313106,0.884944,0.294634,0.30547,0.721957,0.981478,0.667899,0.329871,0.0389085,0.107082,0.257021,0.557619,0.712492,0.791306,0.136509,0.0144358,0.474991,0.994378,0.621184,0.113375,0.973957,0.886456,0.848917,0.389738,0.999427,0.865242,0.204212,0.220893,0.67327,0.725905,0.568015,0.772755,0.0429165,0.395379,0.256791,0.519826,0.267893,0.618572,0.0684226,0.347424,0.299542,0.970054,0.374701,0.546316,0.938194,0.991635,0.970352,0.078229,0.957969,0.300385,0.612119,0.462817,0.266702,0.711662,0.93209,0.895311,0.0648084,0.537326,0.768654,0.596442,0.31019,0.795058,0.574614,0.214104,0.416857,0.68536,0.0645051,0.799674,0.566832,0.127699,0.95047,0.467492,0.192528,0.910393,0.53533,0.902187,0.803357,0.842931,0.88399,0.282056,0.842488,0.526864,0.5836,0.0135491,0.168306,0.0300042,0.843699,0.286279,0.336413,0.353405,0.845836,0.280206,0.477012,0.99662,0.998192,0.717354,0.423969,0.20451,0.499202,0.241009,0.396027,0.686298,0.958434,0.652387,0.693438,0.21217,0.910132,0.254707,0.0126359,0.798232,0.3238,0.993128,0.763958,0.630024,0.670842,0.94282,0.194354,0.0629366,0.10498,0.341469,0.112991,0.21883,0.965732,0.403395,0.552405,0.63716,0.750781,0.807132,0.426761,0.962951,0.655167,0.456181,0.649833,0.431466,0.164536,0.260118,0.739136,0.170221,0.159114,0.296756,0.648045,0.7869,0.560942,0.45856,0.108394,0.832526,0.511534,0.272909,0.741454,0.91237,0.915357,0.522088,0.121493,0.630941,0.861992,0.850579,0.0101067,0.564763,0.0246877,0.645148,0.22975,0.315819,0.680471,0.627859,0.611103,0.497925,0.704014,0.706945,0.00714296,0.586051,0.60185,0.613637,0.969249,0.116572,0.447272,0.77213,0.913891,0.707901,0.806762,0.132018,0.571601,0.657148,0.630527,0.523708,0.912166,0.354036,0.0372511,0.792835,0.98109,0.109544,0.359785,0.4474,0.159489,0.900985,0.549249,0.816152,0.6828,0.81767,0.132167,0.853826,0.00292516,0.0345969,0.994089,0.618098,0.848808,0.955467,0.767612,0.320557,0.1748,0.513755,0.931271,0.743257,0.521336,0.972441,0.759606,0.259781,0.651918,0.982906,0.730724,0.03202,0.185004,0.118418,0.545838,0.959718,0.96681,0.921691,0.176907,0.679668,0.218563,0.453908,0.13631,0.426531,0.64101,0.391534,0.236348,0.70872,0.762815,0.36534,0.304899,0.643503,0.862332,0.0857314,0.389265,0.392953,0.608147,0.562542,0.193132,0.760085,0.271986,0.441051,0.434255,0.170316,0.499892,0.742282,0.126631,0.492529,0.0830166,0.0301052,0.359451,0.198594,0.0701052,0.0592786,0.259077,0.190763,0.549973,0.29818,0.402162,0.575577,0.459251,0.602038,0.715372,0.625604,0.777426,0.528186,0.1202,0.953421,0.704455,0.230259,0.0158005,0.935988,0.131158,0.442183,0.817591,0.108607,0.683627,0.957787,0.853245,0.0110888,0.753999,0.192351,0.923298,0.682365,0.926381,0.0829768,0.427945,0.450789,0.722397,0.167686,0.404431,0.0750768,0.671901,0.174628,0.782943,0.587459,0.0795048,0.760082,0.0152441,0.442556,0.551952,0.406407,0.639868,0.335178,0.80021,0.63761,0.916607,0.688601,0.665311,0.634118,0.981106,0.766222,0.987121,0.155326,0.646913,0.280207,0.466931,0.886038,0.422989,0.119933,0.0682928,0.312242,0.759666,0.616716,0.480914,0.971924,0.576912,0.054188,0.707205,0.193761,0.664832,0.756204,0.511426,0.524926,0.772549,0.208197,0.252696,0.300646,0.201591,0.835406,0.63705,0.0633089,0.0163447,0.534618,0.34529,0.0269896,0.419017,0.696726,0.790717,0.455423,0.294745,0.142874,0.634983,0.51009,0.15977,0.448064,0.968372,0.534326,0.422711,0.150297,0.426097,0.763117,0.978762,0.855087,0.756638,0.186712,0.559102,0.134453,0.425956,0.780232,0.0729538,0.586162,0.886223,0.90021,0.341121,0.907248,0.424548,0.288954,0.588655,0.518434,0.491458,0.197887,0.520982,0.919783,0.20307,0.721835,0.18988,0.0624924,0.827759,0.625648,0.285735,0.914622,0.338091,0.819066,0.749905,0.877019,0.482398,0.452293,0.558549,0.450768,0.388969,0.863892,0.141432,0.492462,0.325477,0.913101,0.222174,0.867178,0.835682,0.736045,0.266993,0.43709,0.482496,0.06331,0.0495445,0.357494,0.530283,0.890412,0.224657,0.664059,0.47533,0.692414,0.528156,0.189651,0.726479,0.819491,0.963438,0.149327,0.777568,0.118237,0.770365,0.297288,0.783852,0.210541,0.081722,0.00399268,0.483416,0.234126,0.885863,0.510491,0.687596,0.981228,0.975952,0.348739,0.0506423,0.242048,0.953587,0.831644,0.905244,0.0124905,0.149557,0.77462,0.840484,0.961958,0.823433,0.161099,0.795605,0.0383357,0.721748,0.223791,0.0690454,0.705326,0.125328,0.897403,0.999428,0.554331,0.204429,0.948127,0.482334,0.1588,0.909753,0.077808,0.891319,0.210019,0.424878,0.595084,0.836712,0.868991,0.856728,0.777032,0.141452,0.448336,0.992174,0.747993,0.0998783,0.929789,0.722551,0.73849,0.0741073,0.86584,0.802796,0.0995184,0.0859745,0.990272,0.542278,0.739037,0.289852,0.823071,0.797986,0.264101,0.0625454,0.115762,0.993012,0.19734,0.501972,0.498252,0.407906,0.667818,0.880063,0.566715,0.197736,0.250825,0.81566,0.970167,0.340243,0.492539,0.537658,0.0258072,0.167715,0.482799,0.465065,0.0806015,0.0725632,0.408748,0.612865,0.86819,0.642424,0.660155,0.471728,0.165727,0.160192,0.253365,0.274398,0.911712,|0.680478,0.214871,0.821854,0.849064,0.368409,0.729601,0.110001,0.0742121,0.441275,0.171465,0.945049,0.007994,0.385932,0.816735,0.219221,0.811526,0.440151,0.61463,0.918211,0.962698,0.839369,0.694767,0.248276,0.821655,0.511916,0.720591,0.757088,0.948982,0.322888,0.124038,0.669946,0.988464,0.847418,0.474921,0.970099,0.46714,0.603182,0.362125,0.882862,0.310387,0.228903,0.515318,0.0868812,0.309804,0.38313,0.387989,0.990886,0.785547,0.825793,0.23771,0.416411,0.90973,0.881882,0.832007,0.548308,0.0513844,0.49854,0.507464,0.989207,0.848895,0.262062,0.962134,0.0680634,0.75846,0.805048,0.0912517,0.46617,0.602474,0.963176,0.178919,0.185442,0.94635,0.0823068,0.389315,0.909155,0.321149,0.891126,0.814103,0.722922,0.0141085,0.275576,0.213996,0.208505,0.0109515,0.332226,0.0492418,0.877558,0.35227,0.970347,0.026623,0.191459,0.643662,0.175699,0.0837312,0.486273,0.786306,0.706734,0.934085,0.832846,0.171181,0.90783,0.453644,0.271354,0.983015,0.521915,0.496963,0.615631,0.859478,0.492758,0.896244,0.714205,0.785658,0.831474,0.171866,0.0835331,0.559602,0.892674,0.0464127,0.0715076,0.846218,0.336696,0.8195,0.524538,0.124172,0.439095,0.426759,0.121922,0.879874,0.934629,0.735135,0.342761,0.749076,0.790262,0.0142969,0.214634,0.45709,0.841291,0.325387,0.0996938,0.804277,0.859028,0.492328,0.891108,0.180116,0.728942,0.227617,0.527935,0.562004,0.220519,0.000815034,0.745187,0.802057,0.92654,0.527542,0.547355,0.439677,0.208551,0.1772,0.295174,0.435956,0.25557,0.93031,0.134151,0.0238679,0.511412,0.881787,0.649277,0.314079,0.0659789,0.809552,0.342823,0.716897,0.742477,0.203529,0.0877199,0.150309,0.0692554,0.990031,0.169624,0.658077,0.914647,0.441197,0.0473537,0.785132,0.141273,0.865766,0.57952,0.4454,0.0288662,0.385152,0.945109,0.931946,0.0596724,0.360269,0.0602274,0.576901,0.462168,0.164474,0.966433,0.351955,0.15692,0.544967,0.0342051,0.749748,0.741217,0.779652,0.264713,0.5351,0.924803,0.418685,0.0650007,0.19168,0.246501,0.460971,0.334225,0.30197,0.225832,0.861621,0.0841246,0.256215,0.396667,0.793361,0.0925478,0.81414,0.341174,0.943518,0.768157,0.40234,0.871962,0.42402,0.134574,0.673276,0.00825554,0.022925,0.649799,0.0660631,0.347953,0.0541824,0.96841,0.695644,0.743541,0.280842,0.817023,0.697464,0.114762,0.686799,0.262171,0.431762,0.951164,0.612371,0.721991,0.831322,0.550316,0.278376,0.289218,0.512767,0.67248,0.153072,0.371106,0.749831,0.650301,0.111053,0.902337,0.611026,0.713411,0.802559,0.70604,0.898552,0.9716,0.118619,0.855033,0.677865,0.677294,0.807406,0.11786,0.398771,0.608898,0.803218,0.807693,0.894356,0.244788,0.638446,0.270893,0.57789,0.879262,0.231102,0.957186,0.0398077,0.37052,0.824052,0.839785,0.991805,0.34638,0.240839,0.788997,0.937936,0.401329,0.470464,0.121724,0.160538,0.533857,0.67166,0.453435,0.277451,0.103813,0.890708,0.936861,0.809025,0.560867,0.347117,0.161125,0.342405,0.911611,0.616693,0.095548,0.903277,0.075051,0.428286,0.579924,0.417328,0.3792,0.0368823,0.508296,0.107293,0.656392,0.512149,0.550879,0.0483379,0.968555,0.78725,0.889847,0.31157,0.346914,0.87083,0.146137,0.945031,0.669466,0.624374,0.432513,0.0255666,0.188914,0.591852,0.389314,0.288634,0.715028,0.487664,0.0657657,0.296599,0.953328,0.0903627,0.962146,0.00217146,0.201419,0.772963,0.363485,0.582537,0.785344,0.0195342,0.405957,0.623891,0.179135,0.842434,0.610142,0.531761,0.00314409,0.672011,0.456039,0.791062,0.421726,0.204859,0.0680875,0.473093,0.578218,0.700487,0.437556,0.04383,0.726447,0.127052,0.60768,0.894267,0.921379,0.614991,0.234235,0.580612,0.608837,0.844719,0.572665,0.713126,0.692623,0.137726,0.390396,0.559917,0.866402,0.210492,0.0239694,0.756946,0.0484993,0.421294,0.97468,0.872468,0.0316953,0.440117,0.430873,0.444467,0.966254,0.207005,0.847629,0.00517863,0.625163,0.549949,0.2515,0.217791,0.538963,0.758451,0.542445,0.562552,0.0648553,0.53944,0.642461,0.663164,0.435796,0.122635,0.513076,0.723009,0.0479123,0.179238,0.97304,0.822191,0.329164,0.224652,0.265309,0.235213,0.399303,0.970889,0.457806,0.47004,0.2614,0.995415,0.450851,0.00690573,0.398195,0.71206,0.15638,0.861315,0.0473894,0.542617,0.0231557,0.521889,0.447266,0.483291,0.249202,0.160653,0.262267,0.651576,0.119042,0.382526,0.325187,0.532684,0.334106,0.432381,0.923247,0.0172744,0.495303,0.523944,0.781449,0.768637,0.00827289,0.943994,0.660965,0.70412,0.174469,0.472658,0.893242,0.376213,0.206715,0.954314,0.936368,0.343699,0.59529,0.843707,0.122727,0.587105,0.445681,0.718686,0.52458,0.0433024,0.170513,0.20594,0.398077,0.391493,0.683147,0.0592954,0.296978,0.576778,0.416717,0.563513,0.585829,0.767047,0.735499,0.763939,0.0150919,0.952902,0.657958,0.250542,0.711146,0.137861,0.953855,0.403518,0.33586,0.630292,0.290617,0.163895,0.42301,0.625066,0.93118,0.210579,0.742666,0.596519,0.675578,0.772505,0.0680708,0.232969,0.317056,0.87146,0.487536,0.829862,0.292652,0.239169,0.882534,0.138505,0.48628,0.932779,0.165121,0.697818,0.319238,0.231671,0.0512365,0.537618,0.125318,0.331059,0.873634,0.103245,0.326518,0.41866,0.00586838,0.309969,0.809232,0.853681,0.712118,0.852818,0.167399,0.385438,0.082036,0.946504,0.472479,0.976698,0.330453,0.566206,0.0857294,0.466901,0.404142,0.811608,0.869156,0.176736,0.540978,0.582978,0.27189,0.542033,0.885182,0.523716,0.51595,0.51857,0.554491,0.846438,0.0712497,0.748163,0.176167,0.741563,0.768847,0.627304,0.845458,0.883254,0.622343,0.923763,0.482029,0.51174,0.24765,0.106871,0.784,0.882198,0.160454,0.348007,0.737903,0.818858,0.0876035,0.154222,0.986983,0.0940561,0.886361,0.842431,0.815887,0.0686824,0.596762,0.311291,0.438812,0.222919,0.71046,0.850941,0.189773,0.858338,0.846183,0.0918465,0.257781,0.92938,0.580881,0.562388,0.294415,0.376664,0.897458,0.569046,0.879847,0.77887,0.0347803,0.321693,0.624238,0.782989,0.512914,0.300495,0.902281,0.657379,0.813054,0.0536526,0.377359,0.488149,0.161552,0.39325,0.62426,0.258346,0.502456,0.269127,0.222469,0.663652,0.268792,0.123376,0.471235,0.345587,0.578434,0.159865,0.616063,0.959396,0.751637,0.962929,0.971419,0.958266,0.480745,0.884696,0.631048,0.931153,0.132268,0.432063,0.363227,0.355439,0.40987,0.345255,0.289748,0.489299,0.539964,0.777881,0.87949,0.851871,0.734692,0.54356,0.408304,0.223727,0.770999,0.744775,0.690159,0.498482,0.182405,0.637387,0.264355,0.182587,0.782978,0.840028,0.890568,0.625849,0.345359,0.825391,0.498688,0.206257,0.397836,0.338066,0.478535,0.499279,0.429129,0.889108,0.51495,0.745454,0.691035,0.186907,0.891275,0.8721,0.472337,0.296871,0.417636,0.540643,0.801361,0.273446,0.479068,0.819191,0.211771,0.798058,0.437557,0.993182,0.290144,0.655643,0.803941,0.0042941,0.94341,0.35355,0.32788,0.197325,0.660856,0.899933,0.566653,0.143999,0.123229,0.417682,0.110373,0.0686885,0.98805,0.880875,0.384949,0.320123,0.563709,0.15888,0.0408118,0.3152,0.801581,0.594063,0.81612,0.227292,0.0895391,0.635689,0.967893,0.463056,0.030107,0.298028,0.29874,0.646596,0.451742,0.17474,0.228681,0.120891,0.220655,0.249376,0.490364,0.526483,0.27691,0.919318,0.462563,0.607985,0.000785112,0.06769,0.166228,0.328785,0.406583,0.407915,0.863261,0.17899,0.571965,0.0921079,0.103568,0.940332,0.322459,0.425985,0.699463,0.593296,0.446316,0.257013,0.964844,0.796588,0.792731,0.963301,0.279228,0.547787,0.943423,0.307539,0.310042,0.191769,0.407315,0.266387,0.320753,0.364546,0.360036,0.921845,0.383661,0.500441,0.655605,0.616087,0.451783,0.201271,0.312876,0.552178,0.0238955,0.375327,0.502729,0.00238359,0.580312,0.77138,0.759982,0.70462,0.442234,0.836872,0.370897,0.557125,0.424972,0.378875,0.0610881,0.74375,0.364381,0.859416,0.85234,0.70711,0.052318,0.762545,0.775034,0.319282,0.35849,0.284822,0.803761,0.977224,0.996732,0.480923,0.298114,0.0488729,0.642022,0.788749,0.583572,0.743044,0.549163,0.504184,0.139773,0.055859,0.406397,0.0217752,0.962205,0.250991,0.0111268,0.0560697,0.405821,0.770253,0.6082,0.0821157,0.990342,0.459206,0.738978,0.346959,0.431709,0.468985,0.918704,0.572396,0.47146,0.846622,0.146903,0.544186,0.0807973,0.839417,0.329284,0.294375,0.568642,0.612276,0.809468,0.191451,0.971886,0.171284,0.810652,0.67426,0.111023,0.324613,0.444703,0.322775,0.438255,0.841683,0.327524,0.219843,0.672852,0.172371,0.177775,0.479834,0.738108,0.51919,0.0956602,0.98041,0.716256,0.683278,0.770661,0.261144,0.740652,0.898509,0.267155,0.428059,0.73862,0.459927,0.636354,0.194964,0.329415,0.089669,0.962151,0.875467,0.886683,0.0785275,0.947118,0.552404,0.146876,0.493287,0.713409,0.368631,0.637579,0.371768,0.302399,0.427811,0.836504,0.709338,0.776419,0.568087,0.495572,0.943621,0.778249,0.0984216,0.790491,0.901987,0.674082,0.671221,0.48808,0.378161,0.998207,0.858455,0.101732,0.222427,0.85568,0.259197,0.35983,0.0960417,0.7467,0.575276,0.685306,0.237854,0.750867,0.129984,0.665774,0.621596,0.370013,0.734867,0.815718,0.878012,0.13778,0.0478386,0.0187017,0.985617,0.804282,0.910863,0.619036,0.759333,0.139262,0.223548,0.862772,0.0774758,0.841607,0.361639,0.877612,0.445041,0.0771294,0.991579,0.565484,0.796166,0.665068,0.145883,0.913093,0.48555,0.0535783,0.101715,0.537886,0.411444,0.553649,0.409267,0.343439,0.252867,0.392648,0.0182406,0.459616,0.9205,0.510451,0.0654415,0.00587267,0.506754,0.706838,0.224826,0.890511,0.816127,|0.352715,0.760338,0.508578,0.0766761,0.377435,0.354697,0.152918,0.693815,0.280477,0.771121,0.158665,0.685694,0.0201991,0.910851,0.17395,0.562864,0.869773,0.0181664,0.760424,0.698622,0.490526,0.944521,6.27637e-05,0.458159,0.636537,0.779764,0.0420591,0.993269,0.777488,0.0133353,0.653436,0.465955,0.729115,0.633309,0.096333,0.0240635,0.503831,0.0731015,0.348214,0.0963411,0.0462485,0.799619,0.419945,0.761127,0.0278307,0.209735,0.919213,0.551173,0.396708,0.399229,0.875757,0.490994,0.208353,0.210666,0.0471972,0.492365,0.312591,0.700136,0.967287,0.807274,0.307683,0.988281,0.777294,0.870031,0.374829,0.770959,0.294231,0.443404,0.949331,0.557263,0.0649467,0.815324,0.529061,0.775621,0.214673,0.947205,0.637288,0.21222,0.541787,0.654466,0.962497,0.255682,0.704858,0.903128,0.895457,0.710258,0.51744,0.131152,0.883777,0.0786583,0.67653,0.407095,0.997088,0.226826,0.50828,0.162041,0.279103,0.231974,0.0656163,0.178103,0.318442,0.108942,0.265847,0.0897983,0.643512,0.868663,0.323215,0.360067,0.309846,0.783084,0.522937,0.345201,0.791693,0.309878,0.491758,0.167208,0.181305,0.704623,0.0954559,0.540483,0.899305,0.782318,0.791158,0.680303,0.570556,0.263874,0.338887,0.0668409,0.792811,0.994193,0.478575,0.210331,0.26947,0.0103044,0.148102,0.56778,0.824201,0.997817,0.152866,0.626961,0.775952,0.651939,0.000346959,0.987742,0.0905876,0.783041,0.893058,0.192489,0.639104,0.551666,0.348532,0.148003,0.860229,0.608761,0.0320335,0.765843,0.868038,0.879148,0.172025,0.23494,0.518309,0.951718,0.0134828,0.569645,0.275045,0.409898,0.530208,0.220431,0.492636,0.863304,0.511835,0.272148,0.934196,0.710501,0.159862,0.131772,0.36791,0.445461,0.811838,0.577687,0.599015,0.191749,0.264067,0.501215,0.517614,0.680325,0.0151312,0.596318,0.907217,0.543855,0.428424,0.101231,0.210402,0.837025,0.147821,0.24272,0.647677,0.537179,0.169107,0.750482,0.129182,0.385204,0.080927,0.182415,0.0154043,0.0501173,0.834508,0.623556,0.750081,0.0236158,0.599219,0.970919,0.708099,0.286344,0.38346,0.671858,0.372812,0.851237,0.28616,0.587344,0.764035,0.811066,0.854825,0.275002,0.838001,0.76445,0.495072,0.846933,0.790807,0.660969,0.933264,0.81373,0.166336,0.952739,0.891711,0.390228,0.0668526,0.656219,0.217936,0.811803,0.601679,0.963306,0.110279,0.237949,0.0853083,0.530565,0.96113,0.831426,0.890241,0.276608,0.0430716,0.0216703,0.30698,0.733656,0.916739,0.946542,0.72894,0.213362,0.104987,0.497233,0.0640609,0.809505,0.416665,0.115927,0.542258,0.121733,0.128516,0.92297,0.570512,0.110751,0.709413,0.651504,0.649334,0.355435,0.23629,0.119369,0.325965,0.00943458,0.268081,0.703762,0.291091,0.730403,0.724199,0.381245,0.229067,0.842163,0.424922,0.149773,0.695586,0.461179,0.502446,0.0622169,0.296495,0.229072,0.427515,0.319971,0.0784914,0.998872,0.22995,0.186377,0.155091,0.818147,0.195177,0.839104,0.00902861,0.417018,0.28082,0.782162,0.0897533,0.129498,0.401409,0.785,0.760403,0.377766,0.864423,0.797951,0.139015,0.409614,0.959346,0.836611,0.0886275,0.889322,0.746121,0.948798,0.905276,0.264602,0.898062,0.878423,0.577486,0.400929,0.726306,0.0003317,0.814884,0.944906,0.895187,0.815243,0.457009,0.895261,0.397801,0.481391,0.823176,0.0183515,0.180287,0.886612,0.893417,0.105506,0.138455,0.228129,0.190354,0.556355,0.896307,0.0923158,0.985629,0.567326,0.144817,0.890935,0.345987,0.844227,0.269801,0.34403,0.324396,0.0712053,0.891476,0.052781,0.839389,0.284931,0.899972,0.235975,0.453462,0.591823,0.0668529,0.059303,0.447974,0.290918,0.277022,0.814221,0.29367,0.614357,0.193844,0.278971,0.787293,0.4259,0.938308,0.311694,0.619466,0.729726,0.80863,0.203283,0.107277,0.555267,0.0949304,0.454886,0.348769,0.830784,0.576719,0.00182271,0.603982,0.322238,0.653659,0.345521,0.230141,0.279425,0.725327,0.995122,0.0406359,0.344175,0.691673,0.179496,0.28228,0.533954,0.745994,0.393722,0.58054,0.923772,0.584793,0.199409,0.755167,0.855859,0.979933,0.253649,0.858007,0.880666,0.597324,0.060676,0.735282,0.890403,0.705196,0.34451,0.140106,0.78154,0.259009,0.833794,0.925671,0.0202435,0.468663,0.469774,0.467138,0.0852137,0.799952,0.968013,0.243833,0.436249,0.318209,0.928469,0.158465,0.729508,0.980858,0.639843,0.625098,0.881603,0.140611,0.68884,0.2727,0.536374,0.337965,0.65935,0.375149,0.377056,0.805959,0.413202,0.479044,0.495852,0.90068,0.0753692,0.983189,0.453502,0.136664,0.936257,0.200627,0.025545,0.396895,0.360931,0.915724,0.999119,0.439286,0.844029,0.592537,0.249996,0.218769,0.44545,0.0393521,0.993325,0.173259,0.56915,0.31243,0.593119,0.0125152,0.0167122,0.505463,0.163298,0.155862,0.59642,0.869925,0.826065,0.00674015,0.183546,0.637004,0.457111,0.0775437,0.813406,0.74929,0.714083,0.731692,0.482208,0.683522,0.854408,0.711499,0.289567,0.890871,0.158667,0.247477,0.646814,0.693121,0.603887,0.0995172,0.289878,0.328255,0.532894,0.509801,0.0847291,0.0170342,0.495492,0.261091,0.770639,0.0694363,0.115882,0.632942,0.239043,0.537554,0.748562,0.791435,0.515794,0.403309,0.759655,0.861664,0.353521,0.395751,0.0284739,0.730885,0.252802,0.628952,0.215016,0.337147,0.661492,0.906713,0.919147,0.436056,0.636856,0.0834776,0.316602,0.589418,0.199124,0.017514,0.420548,0.0897206,0.313954,0.426819,0.46991,0.726281,0.619773,0.535042,0.370016,0.135315,0.347188,0.392975,0.929624,0.342006,0.116863,0.688523,0.496461,0.900471,0.121677,0.297587,0.583995,0.201729,0.578491,0.705531,0.872764,0.586972,0.307535,0.552506,0.802318,0.305334,0.0185078,0.846462,0.351521,0.10118,0.0612776,0.0114515,0.768282,0.456515,0.359611,0.509409,0.830517,0.454853,0.54298,0.51085,0.153888,0.37217,0.101307,0.43357,0.0707023,0.627201,0.147192,0.753743,0.349608,0.286629,0.544208,0.230749,0.668244,0.564021,0.538264,0.841895,0.316679,0.1628,0.66272,0.784629,0.545692,0.0270985,0.478064,0.196718,0.891875,0.122255,0.730063,0.207532,0.412436,0.716276,0.739016,0.160385,0.598148,0.0286775,0.903189,0.745629,0.117776,0.466622,0.765832,0.629603,0.844108,0.898547,0.427409,0.198165,0.930121,0.900536,0.286937,0.129511,0.396975,0.170962,0.896723,0.239927,0.133628,0.564573,0.612326,0.892077,0.580454,0.798723,0.793795,0.302904,0.0336761,0.0517043,0.21053,0.690988,0.643679,0.858614,0.701828,0.166289,0.895233,0.213997,0.158175,0.303528,0.274402,0.105322,0.0831329,0.247485,0.401626,0.0272516,0.321778,0.658716,0.613524,0.255287,0.69964,0.986826,0.148509,0.468276,0.3061,0.293174,0.682441,0.870544,0.123792,0.775024,0.719545,0.378087,0.865697,0.656875,0.000163913,0.302788,0.62833,0.581321,0.694427,0.561202,0.245608,0.545436,0.0441123,0.375738,0.468635,0.617425,0.672975,0.03516,0.499129,0.541517,0.779734,0.440143,0.420647,0.496412,0.201104,0.341105,0.408603,0.406953,0.330436,0.588751,0.935088,0.717421,0.987396,0.86953,0.0725338,0.353574,0.486017,0.387622,0.877184,0.586516,0.964016,0.997026,0.487401,0.74975,0.59322,0.534194,0.958108,0.338885,0.261983,0.134145,0.965253,0.992346,0.846007,0.115764,0.0115786,0.0522443,0.563048,0.78104,0.780738,0.323682,0.441505,0.360478,0.221378,0.382712,0.0180548,0.620259,0.743889,0.998754,0.471747,0.410858,0.631613,0.482233,0.415599,0.0609688,0.546132,0.15139,0.117334,0.854315,0.618234,0.472555,0.238792,0.192623,0.271124,0.572884,0.574622,0.628589,0.148489,0.808969,0.817802,0.843938,0.520978,0.133162,0.343328,0.0332671,0.431383,0.0965503,0.121505,0.839451,0.976511,0.346269,0.584835,0.160254,0.334417,0.945617,0.673142,0.263289,0.2228,0.487731,0.727755,0.445364,0.754519,0.85097,0.603643,0.152492,0.834881,0.541055,0.189977,0.638041,0.473345,0.0566652,0.541014,0.739166,0.0617463,0.369485,0.496241,0.826074,0.786191,0.939503,0.0365828,0.768147,0.0389157,0.698259,0.0860133,0.640118,0.58597,0.756129,0.805196,0.712404,0.221056,0.449259,0.361373,0.698329,0.746842,0.0262859,0.651401,0.45811,0.751705,0.113242,0.74576,0.296981,0.365216,0.167557,0.433175,0.0091635,0.234751,0.804622,0.530322,0.183717,0.945975,0.571827,0.931628,0.300226,0.147327,0.624017,0.855806,0.218022,0.681437,0.203327,0.0130101,0.970453,0.635971,0.712578,0.612669,0.965103,0.042246,0.780498,0.40602,0.95192,0.254635,0.667603,0.664856,0.00832868,0.372685,0.450795,0.83798,0.995638,0.663238,0.372171,0.439685,0.463761,0.0954726,0.580829,0.789844,0.0511534,0.105671,0.60123,0.107401,0.81067,0.498239,0.748719,0.954761,0.525111,0.581609,0.311423,0.75018,0.624101,0.103893,0.0334172,0.601106,0.421529,0.0737187,0.550161,0.112744,0.259944,0.466435,0.882997,0.174582,0.679261,0.941557,0.401781,0.181204,0.0865666,0.450857,0.768412,0.593454,0.172234,0.66629,0.47664,0.709269,0.646883,0.463494,0.0366081,0.609681,0.766273,0.275003,0.563441,0.859672,0.38995,0.268881,0.920768,0.255626,0.775712,0.281466,0.405444,0.200882,0.847972,0.687754,0.0205725,0.0916834,0.202622,0.492662,0.784687,0.425965,0.678998,0.094803,0.701437,0.44538,0.401849,0.0717092,0.422713,0.366925,0.940014,0.464314,0.682631,0.889774,0.813207,0.897429,0.572574,0.228035,0.408553,0.738347,0.578792,0.297311,0.5009,0.836649,0.710735,0.0068624,0.147828,0.954914,0.845084,0.787839,0.130814,0.00362444,0.828269,0.468217,0.74701,0.303602,0.295716,0.785805,0.0193483,0.721106,0.341694,0.0150751,0.888039,0.0231149,0.177127,0.533885,0.631913,0.769239,0.150089,0.921597,0.0880772,0.998091,0.97468,0.241207,0.456236,0.460389,0.953208,0.394872,0.0760732,0.207303,|0.603164,0.495207,0.739564,0.398165,0.549983,0.792488,0.0643585,0.674229,0.262765,0.202271,0.703799,0.614494,0.660821,0.0258523,0.719738,0.96977,0.896851,0.820882,0.622863,0.666439,0.536305,0.546344,0.639898,0.77726,0.340876,0.660669,0.342139,0.762315,0.202782,0.547577,0.894406,0.219168,0.927841,0.33261,0.873843,0.120353,0.701709,0.819472,0.0666177,0.476359,0.405146,0.915098,0.745901,0.120925,0.444049,0.372034,0.34211,0.795793,0.549476,0.116457,0.338393,0.171922,0.281192,0.937663,0.401162,0.151378,0.534249,0.246072,0.837025,0.304353,0.972145,0.0579045,0.924718,0.545603,0.509076,0.91236,0.953161,0.918858,0.859795,0.00295812,0.241841,0.539767,0.446715,0.0567555,0.576482,0.826212,0.916001,0.732316,0.565644,0.0365378,0.528522,0.803663,0.728139,0.0754593,0.791146,0.919131,0.661807,0.538003,0.236032,0.927918,0.168689,0.514106,0.214848,0.35795,0.699973,0.200187,0.636621,0.451847,0.570917,0.156259,0.312656,0.121458,0.922607,0.770707,0.315281,0.912518,0.984039,0.861148,0.807027,0.136512,0.677225,0.154681,0.707328,0.436828,0.0640998,0.0573665,0.618463,0.182827,0.298068,0.591316,0.93649,0.368529,0.383131,0.568471,0.0603197,0.765606,0.566867,0.925826,0.980602,0.683603,0.721179,0.373996,0.0716133,0.996355,0.812426,0.337017,0.662113,0.866681,0.238175,0.388893,0.0599775,0.0438654,0.160179,0.477009,0.229088,0.0389619,0.191653,0.97617,0.888595,0.0134008,0.966644,0.936328,0.43541,0.106853,0.773096,0.818156,0.885924,0.213832,0.175021,0.400647,0.667872,0.0874828,0.324237,0.532778,0.363296,0.0285218,0.47904,0.195669,0.818037,0.533128,0.884659,0.128427,0.659823,0.99936,0.0726091,0.181083,0.00208187,0.255177,0.469713,0.512678,0.79,0.255727,0.144338,0.314869,0.0488824,0.337074,0.671463,0.390791,0.979921,0.13339,0.566958,0.8642,0.948571,0.59427,0.661889,0.808383,0.716305,0.515617,0.349429,0.735842,0.855886,0.772887,0.0291383,0.273336,0.314826,0.663466,0.234918,0.938685,0.868638,0.0458547,0.0911689,0.527212,0.629825,0.645216,0.830382,0.963387,0.379668,0.2614,0.248868,0.356314,0.406106,0.121825,0.830086,0.988795,0.913252,0.96048,0.82662,0.397174,0.429176,0.255466,0.552111,0.927223,0.570175,0.692824,0.105155,0.703814,0.683946,0.384976,0.346875,0.574254,0.684471,0.972222,0.675606,0.959191,0.125597,0.178913,0.235002,0.750142,0.202164,0.0268956,0.293738,0.932921,0.953136,0.241938,0.361598,0.771214,0.915851,0.401818,0.234847,0.344582,0.458899,0.225376,0.930441,0.311101,0.893824,0.00765514,0.26022,0.363675,0.7114,0.515634,0.342184,0.0299118,0.783441,0.913277,0.644971,0.992431,0.35155,0.548895,0.346011,0.975831,0.922769,0.498323,0.00885022,0.0152107,0.650101,0.353843,0.300138,0.339524,0.370838,0.416225,0.236196,0.463213,0.220202,0.0836496,0.58755,0.215082,0.588229,0.0726518,0.185456,0.920724,0.47233,0.250486,0.87712,0.383298,0.239199,0.454636,0.672123,0.99417,0.102381,0.563646,0.906149,0.659918,0.706099,0.723538,0.461482,0.830285,0.989541,0.629422,0.107083,0.444843,0.933427,0.270251,0.0745617,0.633232,0.973102,0.760226,0.848592,0.571251,0.371758,0.676611,0.288688,0.762324,0.923291,0.54696,0.636808,0.957106,0.99968,0.543305,0.89277,0.304214,0.691121,0.405211,0.992485,0.112994,0.0945179,0.663037,0.505318,0.390079,0.805043,0.654413,0.775916,0.870706,0.551704,0.553787,0.561884,0.163131,0.438793,0.278522,0.420627,0.351036,0.213567,0.958809,0.723697,0.531225,0.187288,0.856278,0.994774,0.795078,0.848441,0.971141,0.166343,0.168957,0.517256,0.293311,0.0916499,0.298356,0.468652,0.79128,0.838852,0.302091,0.0323579,0.116493,0.177305,0.940209,0.895539,0.088012,0.726364,0.434924,0.658664,0.913749,0.87929,0.10329,0.134265,0.0540588,0.621737,0.941949,0.521062,0.120086,0.858972,0.664288,0.009247,0.550761,0.48427,0.114936,0.315101,0.860182,0.710069,0.372626,0.550605,0.788286,0.886591,0.157292,0.0774473,0.624489,0.87709,0.62783,0.761624,0.67775,0.111457,0.806321,0.0519081,0.519228,0.177766,0.418479,0.240576,0.586708,0.526372,0.606003,0.480972,0.236765,0.486926,0.433416,0.0977292,0.106418,0.196845,0.0631397,0.435849,0.559791,0.0976124,0.918515,0.540186,0.743616,0.509615,0.476283,0.185569,0.81279,0.772399,0.301353,0.726725,0.245675,0.0327697,0.401652,0.532739,0.58935,0.798486,0.702519,0.837422,0.461129,0.0490897,0.274554,0.432655,0.283176,0.120473,0.0475121,0.470706,0.581443,0.160104,0.619029,0.278546,0.951057,0.654034,0.749139,0.998121,0.131914,0.905515,0.660861,0.227772,0.456322,0.43293,0.213696,0.596299,0.624402,0.122737,0.367674,0.261087,0.474468,0.457064,0.367222,0.449061,0.884541,0.494949,0.571048,0.110327,0.133253,0.275738,0.987267,0.765182,0.185487,0.274876,0.621289,0.10839,0.842075,0.00175011,0.952983,0.984817,0.0563936,0.664888,0.148679,0.00715655,0.42976,0.131707,0.425178,0.128806,0.360116,0.054198,0.100185,0.84427,0.395324,0.843668,0.65823,0.78372,0.313514,0.0840906,0.88959,0.971478,0.496994,0.825426,0.831401,0.0677618,0.75376,0.180244,0.465205,0.0462871,0.143998,0.977559,0.806713,0.326687,0.812268,0.511331,0.824609,0.943904,0.798545,0.191115,0.0537295,0.774778,0.237756,0.825868,0.940293,0.999452,0.982867,0.196674,0.870275,0.694934,0.434855,0.674803,0.758631,0.326474,0.947299,0.00517064,0.371668,0.539473,0.63157,0.484733,0.401442,0.369171,0.0706279,0.972538,0.181886,0.460334,0.722175,0.625278,0.370619,0.613128,0.908422,0.278736,0.346663,0.485673,0.383974,0.801242,0.530473,0.837404,0.193615,0.119102,0.736274,0.0474617,0.175122,0.303748,0.247695,0.0885803,0.787664,0.517297,0.912383,0.178299,0.456491,0.855999,0.616498,0.82658,0.0341542,0.143145,0.824743,0.154974,0.205473,0.46925,0.543823,0.314631,0.44772,0.263667,0.502986,0.939404,0.706929,0.021849,0.307253,0.773742,0.507897,0.868967,0.0125561,0.814117,0.339052,0.537725,0.603012,0.813708,0.175317,0.758995,0.203846,0.0224823,0.803203,0.868846,0.804023,0.877838,0.83724,0.693142,0.762814,0.501263,0.570998,0.687736,0.489879,0.144804,0.206959,0.148708,0.577616,0.606754,0.436926,0.831291,0.541928,0.603623,0.957713,0.0614289,0.547284,0.377156,0.570098,0.48561,0.25302,0.219984,0.673276,0.859353,0.368382,0.443043,0.822311,0.891291,0.967414,0.309337,0.598665,0.0290011,0.411032,0.193849,0.418016,0.719688,0.921366,0.506913,0.0852923,0.372125,0.31037,0.570021,0.878046,0.845735,0.16633,0.4192,0.83947,0.24503,0.739865,0.796552,0.925142,0.489849,0.00223845,0.0998263,0.0461628,0.931679,0.925387,0.449136,0.639758,0.844786,0.601294,0.110325,0.0436049,0.277076,0.572179,0.75322,0.261502,0.848148,0.033151,0.765792,0.0393828,0.561905,0.62314,0.839299,0.699545,0.627323,0.502498,0.484415,0.869735,0.800685,0.0372703,0.277543,0.692313,0.506219,0.862362,0.789811,0.814285,0.626458,0.132852,0.0843446,0.0138484,0.847876,0.132709,0.869814,0.798757,0.456464,0.710011,0.802335,0.145583,0.862167,0.757527,0.137177,0.203386,0.325845,0.801037,0.363134,0.504704,0.960305,0.289048,0.352655,0.819049,0.524284,0.361151,0.201177,0.454497,0.504406,0.532759,0.645804,0.138484,0.350604,0.0549612,0.185069,0.699122,0.853805,0.26555,0.882875,0.19258,0.0191697,0.375216,0.623964,0.730079,0.479859,0.241616,0.54467,0.324992,0.798411,0.870409,0.667574,0.776169,0.572744,0.466806,0.125143,0.111102,0.375606,0.890008,0.175334,0.63014,0.126309,0.999225,0.826503,0.122011,0.801099,0.438287,0.649022,0.0352331,0.517591,0.335594,0.122515,0.951528,0.38804,0.96589,0.398388,0.967372,0.0472709,0.889636,0.858879,0.960886,0.970944,0.676726,0.547391,0.894334,0.638404,0.238161,0.440471,0.495914,0.223662,0.838207,0.258307,0.790059,0.547478,0.132015,0.211962,0.510774,0.453583,0.277341,0.0634566,0.509234,0.981837,0.232529,0.210902,0.412928,0.479424,0.158613,0.903322,0.240699,0.18999,0.578675,0.884139,0.121006,0.791261,0.909475,0.417929,0.865423,0.806428,0.914996,0.120438,0.431087,0.503232,0.121692,0.970077,0.268275,0.323409,0.099659,0.441884,0.223139,0.471299,0.610297,0.824621,0.539848,0.354462,0.0578153,0.796897,0.180969,0.936332,0.788826,0.844552,0.866538,0.0679109,0.198154,0.371375,0.845585,0.879056,0.790033,0.148693,0.372708,0.361007,0.178856,0.695552,0.407891,0.479639,0.230864,0.453565,0.927018,0.993189,0.051422,0.690957,0.494218,0.326948,0.301081,0.960625,0.179419,0.23924,0.366618,0.46918,0.402909,0.324252,0.518133,0.0410016,0.070344,0.789805,0.279646,0.100235,0.182779,0.910597,0.366761,0.791486,0.608448,0.737283,0.954198,0.755312,0.40253,0.406385,0.586348,0.293966,0.94602,0.43474,0.447508,0.366615,0.0196135,0.690069,0.370412,0.81121,0.592735,0.591471,0.419569,0.234159,0.424028,0.881965,0.334208,0.938224,0.0525028,0.653276,0.721619,0.240141,0.399313,0.0264012,0.827723,0.948037,0.0153089,0.141578,0.333199,0.398405,0.212653,0.00714618,0.0417208,0.689191,0.34167,0.0436665,0.872588,0.939406,0.0350986,0.391718,0.290035,0.228445,0.567836,0.516953,0.669507,0.42401,0.0553688,0.449179,0.961594,0.0837675,0.248825,0.282489,0.879058,0.384501,0.227623,0.864653,0.916972,0.267534,0.722753,0.261372,0.171687,0.525804,0.104882,0.85386,0.981666,0.455417,0.289636,0.599516,0.113284,0.52146,0.797785,0.680639,0.575053,0.926615,0.482909,0.392329,0.906763,0.344437,0.496407,0.874423,0.745699,0.135141,0.0862354,0.665768,0.283582,0.317475,0.301526,0.281715,0.17816,0.216769,0.681555,0.612246,0.959724,0.671297,0.916017,0.265629,0.485305,|0.471938,0.490425,0.58327,0.710827,0.889097,0.54664,0.140169,0.900692,0.16781,0.993079,0.206215,0.147913,0.846334,0.531435,0.359412,0.408218,0.577975,0.561661,0.408194,0.219349,0.188206,0.358334,0.294539,0.170362,0.54017,0.929926,0.651509,0.84929,0.702835,0.857461,0.383468,0.123427,0.852763,0.800556,0.69289,0.725269,0.879613,0.650044,0.712683,0.0440084,0.713932,0.221728,0.350612,0.858375,0.257776,0.931993,0.479559,0.481159,0.461146,0.0407013,0.266573,0.729472,0.512299,0.393593,0.708891,0.189489,0.356268,0.196632,0.589307,0.999905,0.340186,0.0848208,0.179414,0.412465,0.409452,0.59396,0.219614,0.895981,0.990283,0.283182,0.255592,0.561403,0.202397,0.0705291,0.415508,0.358779,0.723877,0.438353,0.294708,0.0104933,0.115504,0.656298,0.61372,0.908841,0.290593,0.929236,0.280468,0.612494,0.813233,0.600809,0.00152194,0.679754,0.691207,0.659354,0.651675,0.897764,0.224143,0.279103,0.735569,0.319417,0.99195,0.0344664,0.558952,0.349852,0.722016,0.0515394,0.225746,0.180272,0.547303,0.055944,0.264319,0.0891561,0.260559,0.637218,0.932043,0.984462,0.28232,0.967159,0.0456164,0.340451,0.485733,0.521201,0.225728,0.87477,0.13789,0.985652,0.955532,0.878167,0.239683,0.251989,0.352794,0.66716,0.234611,0.874444,0.920975,0.928779,0.863037,0.58273,0.696188,0.354228,0.163368,0.73318,0.867562,0.200285,0.396573,0.128766,0.445605,0.883633,0.411274,0.555229,0.8754,0.982467,0.336825,0.145634,0.430886,0.10564,0.488348,0.785141,0.357546,0.892313,0.305336,0.325219,0.64445,0.130523,0.36395,0.747706,0.318033,0.0549862,0.772198,0.559029,0.683207,0.127539,0.709442,0.0365592,0.237201,0.346219,0.45291,0.286473,0.293332,0.412886,0.998629,0.00221813,0.908819,0.460051,0.524095,0.520063,0.521807,0.9179,0.100567,0.415784,0.740806,0.313601,0.439956,0.878052,0.505983,0.323719,0.979154,0.414045,0.954726,0.0185451,0.919739,0.653907,0.211668,0.223452,0.752324,0.191354,0.401991,0.871462,0.408085,0.0532671,0.892693,0.130267,0.577506,0.166984,0.290585,0.716942,0.234489,0.139404,0.853816,0.652738,0.150044,0.542362,0.269306,0.0293151,0.797706,0.941048,0.141718,0.968008,0.558941,0.330607,0.159141,0.816689,0.361414,0.598693,0.693448,0.584961,0.352214,0.0406027,0.579475,0.454309,0.927354,0.616018,0.616875,0.616216,0.856955,0.304038,0.89632,0.559141,0.0351928,0.0604373,0.397591,0.820066,0.138072,0.781804,0.917873,0.97798,0.397741,0.246274,0.128181,0.481042,0.774477,0.799391,0.929594,0.102323,0.174794,0.346887,0.903318,0.233835,0.11557,0.64429,0.882211,0.583493,0.4596,0.91665,0.457937,0.534344,0.669917,0.0496331,0.602447,0.462384,0.663248,0.449084,0.3251,0.727122,0.234666,0.491785,0.264455,0.635177,0.226177,0.342219,0.0530345,0.217658,0.173202,0.777663,0.567344,0.846376,0.243519,0.934248,0.989181,0.627447,0.526545,0.372405,0.677094,0.034035,0.974227,0.62936,0.36162,0.705951,0.102394,0.323641,0.893405,0.0639376,0.353859,0.183211,0.233777,0.258312,0.268481,0.558922,0.41254,0.452375,0.613682,0.824115,0.583318,0.546924,0.738864,0.976058,0.625944,0.579839,0.337428,0.78944,0.841109,0.982265,0.517453,0.186333,0.977372,0.0855244,0.24591,0.219308,0.997458,0.22066,0.0323946,0.544374,0.0921635,0.0531488,0.804838,0.756335,0.288583,0.0501778,0.381588,0.447797,0.179218,0.53338,0.872745,0.923695,0.878468,0.683768,0.494281,0.877171,0.542331,0.88025,0.798054,0.00663459,0.420481,0.391393,0.0401194,0.240167,0.770775,0.0721681,0.873585,0.719363,0.684306,0.527241,0.399578,0.258264,0.563569,0.185223,0.42564,0.781343,0.0727763,0.685858,0.491464,0.316628,0.796482,0.615535,0.229545,0.0363607,0.891965,0.483284,0.335997,0.631535,0.494616,0.441534,0.982221,0.6636,0.591614,0.735219,0.448017,0.31991,0.34608,0.232418,0.700222,0.237269,0.457248,0.476335,0.76901,0.613593,0.999151,0.739154,0.101917,0.139335,0.314249,0.30832,0.160788,0.542204,0.147739,0.783719,0.761796,0.860177,0.815356,0.427519,0.34639,0.454953,0.258669,0.976891,0.0553346,0.66957,0.715671,0.640803,0.415258,0.341957,0.107609,0.206784,0.0531415,0.628358,0.371507,0.140847,0.0497473,0.955535,0.891778,0.961773,0.0884631,0.456644,0.468994,0.197477,0.370584,0.724208,0.091179,0.979336,0.45145,0.955613,0.643605,0.282506,0.331109,0.729922,0.801306,0.805529,0.124323,0.422606,0.666991,0.330049,0.712337,0.786044,0.438289,0.0322303,0.665508,0.714597,0.707195,0.0510005,0.0155843,0.764779,0.0051266,0.274865,0.351517,0.287155,0.596553,0.333283,0.0827823,0.082756,0.856779,0.518827,0.804503,0.625658,0.749944,0.986544,0.318923,0.262029,0.46821,0.975073,0.192265,0.168663,0.796865,0.832949,0.506437,0.0416788,0.14058,0.721029,0.97326,0.558792,0.959837,0.262984,0.911647,0.0442804,0.896896,0.175421,0.858133,0.351895,0.933017,0.374453,0.815714,0.690487,0.124191,0.147156,0.961239,0.688487,0.00224757,0.884181,0.101367,0.595499,0.297468,0.612381,0.43,0.0764948,0.881492,0.966553,0.697715,0.956602,0.696145,0.228842,0.458104,0.6004,0.813528,0.270164,0.0117874,0.139967,0.736344,0.840629,0.828514,0.205746,0.399635,0.426813,0.932133,0.81076,0.0657994,0.441169,0.644064,0.991384,0.961475,0.0409874,0.128788,0.70034,0.745319,0.913988,0.793873,0.791857,0.76539,0.715104,0.0429835,0.333196,0.751328,0.388729,0.392352,0.163351,0.847181,0.16081,0.894175,0.315445,0.155928,0.539795,0.255875,0.077408,0.708008,0.81349,0.675141,0.2896,0.323686,0.133894,0.129061,0.525991,0.51677,0.124574,0.571844,0.679822,0.367308,0.0748276,0.174538,0.686552,0.204935,0.701203,0.774442,0.880164,0.850919,0.0242465,0.992982,0.852102,0.527367,0.938437,0.212962,0.616745,0.0506916,0.387019,0.485312,0.541357,0.116784,0.424729,0.347612,0.916112,0.0977131,0.732356,0.994533,0.0932169,0.882139,0.0591057,0.882222,0.0149038,0.402396,0.377268,0.604929,0.196103,0.174628,0.856135,0.593805,0.606993,0.110976,0.177098,0.581431,0.646763,0.416143,0.697538,0.497696,0.212822,0.147005,0.963256,0.266597,0.212339,0.718704,0.412865,0.351043,0.457384,0.385974,0.0646439,0.0741377,0.581314,0.584739,0.966572,0.692626,0.799119,0.0973805,0.0289652,0.395595,0.857032,0.074044,0.640969,0.429698,0.889562,0.891411,0.648319,0.920997,0.816001,0.795108,0.589948,0.670396,0.804495,0.138675,0.639017,0.532587,0.377214,0.721061,0.571237,0.284022,0.514728,0.907822,0.711939,0.0914445,0.102018,0.28653,0.981743,0.0753911,0.678701,0.174684,0.101401,0.7636,0.743052,0.835778,0.34136,0.891086,0.375316,0.977689,0.0954148,0.0145177,0.264463,0.438383,0.412333,0.349349,0.410694,0.352956,0.0233837,0.209945,0.181561,0.421506,0.653168,0.0493978,0.794053,0.93898,0.614807,0.806854,0.960809,0.897521,0.317399,0.854642,0.843512,0.416047,0.832883,0.758803,0.636103,0.466212,0.431235,0.632695,0.357982,0.275488,0.449615,0.891226,0.328197,0.952422,0.911833,0.0805084,0.49734,0.0790887,0.894778,0.912814,0.709778,0.509445,0.516312,0.151393,0.380083,0.088816,0.535128,0.0205596,0.125521,0.671199,0.686725,0.757089,0.350644,0.129224,0.0845951,0.2317,0.283603,0.551643,0.673587,0.643294,0.240583,0.61451,0.679351,0.567187,0.319199,0.489828,0.983002,0.337467,0.269209,0.0593436,0.706627,0.130017,0.0637304,0.473007,0.741625,0.585754,0.948939,0.234153,0.307324,0.977474,0.240998,0.879579,0.735917,0.437622,0.923694,0.357225,0.973789,0.246113,0.931098,0.155325,0.593901,0.106627,0.0864497,0.885744,0.17805,0.997438,0.473747,0.354521,0.284208,0.777579,0.0591825,0.837937,0.955894,0.297928,0.9833,0.710776,0.586296,0.299527,0.110135,0.645906,0.174575,0.765384,0.253746,0.427203,0.422149,0.889407,0.487156,0.505419,0.21798,0.805223,0.73798,0.749046,0.830984,0.904291,0.505292,0.0221024,0.985263,0.684593,0.484206,0.150001,0.247965,0.68168,0.941913,0.645159,0.23974,0.0141588,0.0792622,0.093245,0.625043,0.314496,0.795107,0.38921,0.0945774,0.640547,0.798011,0.662127,0.0639978,0.187126,0.114584,0.721112,0.58328,0.390766,0.923502,0.392078,0.962556,0.0136368,0.548068,0.987867,0.488748,0.483342,0.987778,0.306564,0.347015,0.304762,0.983602,0.506404,0.750859,0.655053,0.310241,0.894637,0.479903,0.409951,0.775263,0.0285271,0.832412,0.692499,0.854315,0.646673,0.580121,0.402294,0.0342495,0.695387,0.362847,0.38568,0.377351,0.956919,0.999875,0.805508,0.405597,0.483646,0.395498,0.278826,0.113053,0.136436,0.00340456,0.590181,0.153795,0.29275,0.815768,0.289086,0.241646,0.344531,0.426549,0.751857,0.949378,0.664509,0.989976,0.944288,0.17214,0.428823,0.723299,0.650237,0.251496,0.96259,0.425145,0.905487,0.972951,0.669223,0.467829,0.425601,0.301426,0.165776,0.343991,0.998952,0.571323,0.996978,0.364985,0.790319,0.00511998,0.0260607,0.396358,0.226762,0.69658,0.177382,0.558569,0.0952068,0.121294,0.258161,0.878835,0.858318,0.701843,0.633873,0.141142,0.302368,0.36615,0.0113322,0.386173,0.0486341,0.884434,0.394953,0.680198,0.11736,0.555619,0.638089,0.953463,0.943,0.97296,0.789455,0.658809,0.986312,0.264414,0.59596,0.0540774,0.098775,0.347955,0.459026,0.323803,0.644188,0.969244,0.0987075,0.245601,0.888606,0.019568,0.0934633,0.675148,0.509817,0.405153,0.786883,0.898324,0.492578,0.0681418,0.000535131,0.982592,0.253868,0.480853,0.818753,0.644118,0.445379,0.0156746,0.236933,0.465166,0.0758405,0.541249,0.309415,0.810479,0.645658,0.825365,0.369911,0.909056,0.180837,0.399102,0.239825,0.969044,0.779639,0.712225,0.74189,0.189923,0.165837,0.662463,0.382433,0.675429,|0.827714,0.386233,0.528288,0.818981,0.665223,0.953208,0.702619,0.651637,0.894086,0.519401,0.727399,0.0919812,0.600038,0.866861,0.69341,0.691352,0.938786,0.327707,0.454143,0.800521,0.173466,0.422213,0.294405,0.150036,0.253467,0.183277,0.866995,0.800064,0.411515,0.376615,0.989316,0.385779,0.762111,0.257279,0.650816,0.32995,0.77611,0.344458,0.887432,0.052689,0.204872,0.441184,0.855784,0.607611,0.19257,0.300418,0.739948,0.835254,0.605965,0.563582,0.583376,0.273804,0.610351,0.880402,0.47695,0.691794,0.520662,0.798181,0.667052,0.265672,0.393527,0.467042,0.478903,0.015532,0.137995,0.693597,0.897321,0.97709,0.406093,0.676332,0.0956295,0.789912,0.240753,0.486058,0.641241,0.763725,0.367356,0.740483,0.951689,0.243888,0.290043,0.384398,0.150403,0.808449,0.357681,0.0318667,0.247686,0.80124,0.0939145,0.335472,0.399207,0.338672,0.373101,0.615613,0.583131,0.324352,0.973345,0.471804,0.096166,0.598588,0.26091,0.885123,0.385074,0.294305,0.700227,0.173048,0.232291,0.883954,0.769326,0.112747,0.754443,0.52895,0.57871,0.51598,0.929944,0.987063,0.234001,0.595633,0.56611,0.639788,0.163558,0.938597,0.0356629,0.19484,0.153483,0.432276,0.320367,0.0373287,0.96779,0.600223,0.599144,0.0777461,0.669029,0.284623,0.568716,0.497314,0.42187,0.309888,0.217496,0.780799,0.00140673,0.743532,0.849812,0.915754,0.796642,0.842739,0.746772,0.87821,0.910373,0.366772,0.26603,0.516454,0.462132,0.854583,0.70649,0.25588,0.164244,0.757002,0.53733,0.785052,0.874667,0.800475,0.167886,0.952754,0.717218,0.562575,0.651556,0.309912,0.155386,0.106821,0.146235,0.0342016,0.72978,0.619837,0.889162,0.991356,0.437796,0.151741,0.0269248,0.1352,0.825214,0.885639,0.644497,0.369764,0.212926,0.129348,0.777327,0.152695,0.623877,0.0697464,0.641335,0.935469,0.439367,0.353614,0.443579,0.0449424,0.269755,0.632378,0.517094,0.304823,0.867195,0.730858,0.608528,0.525514,0.45858,0.141378,0.753097,0.216678,0.0312504,0.108562,0.893021,0.269254,0.478231,0.182473,0.881195,0.0569407,0.637263,0.567901,0.132571,0.598662,0.0688373,0.144387,0.738301,0.634581,0.999875,0.360489,0.487916,0.364266,0.256039,0.0071196,0.849171,0.699546,0.275884,0.0404926,0.0176072,0.908061,0.617044,0.798108,0.743592,0.467045,0.94543,0.675838,0.0886633,0.523966,0.344239,0.427581,0.277609,0.434647,0.499612,0.931995,0.560069,0.322858,0.980737,0.987499,0.583278,0.660885,0.0342223,0.923821,0.879351,0.644861,0.913806,0.330639,0.467079,0.173609,0.513224,0.418606,0.134735,0.722259,0.0449187,0.360605,0.00700128,0.962461,0.903781,0.193068,0.682248,0.178661,0.335708,0.822095,0.979858,0.0358589,0.297396,0.756333,0.880036,0.524729,0.814983,0.113508,0.678175,0.195536,0.582471,0.496683,0.314215,0.553587,0.891991,0.996495,0.502855,0.712573,0.915882,0.30523,0.540451,0.530809,0.55225,0.316161,0.124496,0.13914,0.152746,0.605011,0.435057,0.437362,0.322578,0.977448,0.770443,0.589334,0.131296,0.951284,0.513565,0.150623,0.21874,0.879381,0.856041,0.298015,0.231489,0.537783,0.249729,0.0614139,0.452692,0.558839,0.757559,0.0659733,0.820967,0.666458,0.590715,0.271347,0.275562,0.457478,0.157556,0.723692,0.574203,0.80613,0.0935258,0.793971,0.831533,0.199517,0.238228,0.451905,0.401299,0.950756,0.123819,0.317321,0.525857,0.653508,0.493996,0.232762,0.0889957,0.984518,0.97021,0.832626,0.832921,0.373326,0.187244,0.00780737,0.741616,0.605777,0.692079,0.683276,0.93854,0.305763,0.781212,0.401073,0.262099,0.431145,0.111021,0.111189,0.259653,0.556279,0.602098,0.83804,0.670814,0.338503,0.511254,0.0765311,0.490418,0.403468,0.104961,0.0836789,0.330558,0.848539,0.526793,0.342818,0.830262,0.556664,0.336434,0.180565,0.739145,0.579816,0.913555,0.865852,0.00631219,0.16659,0.738048,0.70677,0.675931,0.0475147,0.456253,0.384125,0.334869,0.733865,0.446433,0.0194556,0.117679,0.681277,0.333166,0.515457,0.416298,0.281404,0.887848,0.879921,0.837413,0.831405,0.831842,0.671851,0.332574,0.621842,0.343262,0.195944,0.611034,0.212526,0.481876,0.10683,0.103131,0.297441,0.539932,0.856676,0.0599368,0.283301,0.558065,0.836528,0.192403,0.703108,0.955755,0.375334,0.788243,0.155145,0.576594,0.851635,0.669957,0.834366,0.435709,0.178408,0.930232,0.976142,0.245408,0.806655,0.583883,0.693624,0.300311,0.722721,0.866082,0.847434,0.233295,0.255984,0.0500882,0.671561,0.723081,0.550967,0.752349,0.88649,0.628891,0.415944,0.523927,0.0209303,0.182942,0.572495,0.566337,0.557028,0.685244,0.291701,0.848069,0.856504,0.983193,0.396814,0.972118,0.830481,0.480363,0.13969,0.630682,0.573932,0.738087,0.0371985,0.0540962,0.999634,0.836714,0.468005,0.459329,0.788792,0.289374,0.957573,0.983156,0.506083,0.960951,0.401057,0.57258,0.756635,0.0998912,0.21611,0.854935,0.190848,0.283437,0.546554,0.976896,0.437766,0.479833,0.495814,0.759795,0.979201,0.166789,0.119248,0.184597,0.432498,0.691611,0.498882,0.284677,0.314885,0.0577275,0.947995,0.878615,0.767409,0.0335753,0.00628352,0.190364,0.0124326,0.530145,0.703485,0.236124,0.236831,0.81448,0.395673,0.942517,0.636486,0.715493,0.0643817,0.766105,0.929893,0.724308,0.76151,0.353987,0.8874,0.559865,0.756553,0.797065,0.27151,0.102393,0.0292857,0.669552,0.428667,0.842262,0.765526,0.839687,0.717419,0.121349,0.958962,0.188214,0.225895,0.238375,0.760592,0.0129774,0.918845,0.442472,0.503639,0.17088,0.0467765,0.312598,0.32496,0.878236,0.986654,0.108677,0.128347,0.442927,0.469701,0.463123,0.0483434,0.342386,0.483749,0.990289,0.460525,0.852987,0.870185,0.0128595,0.489862,0.813295,0.38481,0.481548,0.604857,0.478991,0.203231,0.749907,0.815344,0.799521,0.66597,0.0636365,0.10296,0.390739,0.959399,0.196522,0.0782914,0.501385,0.659482,0.494794,0.060089,0.0205454,0.547784,0.132747,0.915995,0.124054,0.127093,0.85441,0.0466338,0.112209,0.52405,0.228961,0.883474,0.215962,0.475349,0.0324822,0.1352,0.619219,0.992298,0.371243,0.107372,0.624842,0.0177052,0.863084,0.103305,0.679325,0.0994977,0.566836,0.973325,0.583626,0.757261,0.59722,0.0990974,0.358527,0.512333,0.559964,0.230104,0.669038,0.0377982,0.00774246,0.538718,0.552969,0.16878,0.978664,0.7632,0.113384,0.869614,0.115184,0.0585698,0.80664,0.463837,0.244824,0.915588,0.715827,0.393245,0.805128,0.996723,0.682619,0.763979,0.539938,0.591658,0.130883,0.0373952,0.2553,0.235862,0.69205,0.259307,0.5075,0.242041,0.296765,0.342488,0.266675,0.194581,0.371023,0.377318,0.774878,0.631291,0.940418,0.454813,0.258407,0.840328,0.695299,0.923862,0.601678,0.106626,0.24946,0.910745,0.000884533,0.182452,0.510593,0.530856,0.228674,0.357119,0.197364,0.547909,0.424957,0.664785,0.381198,0.214379,0.036985,0.872382,0.886144,0.637028,0.858675,0.475468,0.854549,0.239003,0.774423,0.700461,0.947988,0.989317,0.524358,0.925295,0.676272,0.62308,0.102988,0.483024,0.998676,0.166959,0.849259,0.917512,0.8402,0.234392,0.313866,0.542325,0.667241,0.0349147,0.966997,0.0829731,0.261476,0.683213,0.575367,0.358447,0.275675,0.588736,0.760663,0.351214,0.114207,0.916319,0.564828,0.887899,0.627676,0.518053,0.0860813,0.0612814,0.614125,0.300326,0.918207,0.897729,0.249514,0.443176,0.225083,0.0665058,0.991299,0.730282,0.730597,0.347095,0.309497,0.486803,0.746312,0.854214,0.151341,0.0174765,0.985585,0.259926,0.626966,0.239923,0.622054,0.325953,0.714611,0.73465,0.63765,0.345778,0.150501,0.656304,0.837809,0.058907,0.236594,0.575422,0.823225,0.814823,0.351348,0.320318,0.151776,0.683785,0.518513,0.653557,0.75979,0.3508,0.71393,0.0699776,0.198713,0.044014,0.46685,0.809087,0.851692,0.997679,0.915115,0.626872,0.536548,0.736085,0.354154,0.354951,0.704285,0.960161,0.0234957,0.678626,0.547737,0.907481,0.745555,0.163303,0.306973,0.585171,0.866389,0.370392,0.21175,0.519467,0.637858,0.984616,0.128823,0.342861,0.638997,0.0705097,0.381524,0.645744,0.303827,0.943913,0.634784,0.0673208,0.58494,0.140137,0.315429,0.733345,0.827461,0.0684284,0.621808,0.464129,0.618934,0.516408,0.964581,0.303616,0.0538155,0.629265,0.400582,0.495686,0.601272,0.13233,0.831847,0.0220246,0.352292,0.839451,0.957816,0.420359,0.625566,0.456374,0.022534,0.341878,0.625541,0.703902,0.0463888,0.84993,0.791403,0.596056,0.654314,0.530681,0.18736,0.667617,0.444858,0.411656,0.928065,0.84654,0.701868,0.199639,0.593928,0.0657651,0.178544,0.513275,0.412424,0.758799,0.857135,0.406947,0.116626,0.562673,0.64486,0.161272,0.095235,0.414635,0.976284,0.334902,0.526404,0.835822,0.709337,0.978814,0.789271,0.902303,0.4379,0.300991,0.679419,0.34124,0.867007,0.683365,0.0627989,0.783008,0.635543,0.491469,0.598604,0.604107,0.156156,0.721649,0.902369,0.516259,0.134463,0.211824,0.600361,0.3544,0.498065,0.631071,0.808106,0.705348,0.224758,0.867327,0.753849,0.246944,0.488237,0.672894,0.91839,0.429466,0.437187,0.439818,0.666032,0.00753284,0.0516349,0.752131,0.353114,0.143367,0.00206542,0.830211,0.557276,0.425303,0.489585,0.9398,0.25312,0.559753,0.896435,0.0512581,0.865061,0.644267,0.83107,0.408059,0.201585,0.0185704,0.78359,0.692416,0.0696768,0.61734,0.352904,0.954266,0.295426,0.757041,0.586354,0.604968,0.223666,0.685975,0.201104,0.584776,0.279523,0.270643,0.344326,0.648805,0.599654,0.734435,0.147714,0.391405,0.961619,0.284932,0.6138,0.274015,0.0137296,0.465405,0.247405,0.653282,0.890381,0.475071,0.97995,0.649118,0.606056,0.154859,0.0503225,0.0655438,0.820974,0.805767,0.385858,0.217998,|0.585858,0.325518,0.189743,0.555039,0.350927,0.200455,0.606454,0.121248,0.684692,0.811334,0.640243,0.655736,0.927308,0.45039,0.12704,0.109476,0.363721,0.0624419,0.0936854,0.0571151,0.837156,0.0148853,0.444913,0.523725,0.711759,0.141432,0.44128,0.782485,0.637375,0.750202,0.251864,0.693002,0.137506,0.609659,0.893955,0.762346,0.926788,0.0932716,0.0789657,0.767056,0.654249,0.547473,0.844874,0.963164,0.338917,0.452175,0.435962,0.408321,0.999744,0.235106,0.512363,0.348797,0.145836,0.0959942,0.398557,0.753831,0.0820548,0.490903,0.597584,0.325369,0.111476,0.119874,0.492053,0.44319,0.333559,0.429476,0.0608794,0.783667,0.708778,0.447734,0.666167,0.998065,0.323102,0.158097,0.653876,0.882012,0.464603,0.334215,0.982944,0.246785,0.56057,0.973021,0.488603,0.724598,0.0320311,0.645063,0.124352,0.139881,0.416464,0.0526653,0.959689,0.316224,0.906647,0.413217,0.578099,0.977434,0.574652,0.413008,0.598646,0.321218,0.984342,0.966955,0.438102,0.277029,0.948662,0.205196,0.58979,0.602787,0.584835,0.60343,0.428083,0.918207,0.0352309,0.995604,0.567659,0.192434,0.38953,0.626575,0.701998,0.889146,0.581949,0.751108,0.920727,0.34816,0.475775,0.800408,0.482831,0.151697,0.944699,0.769634,0.289097,0.867457,0.0423438,0.921597,0.565633,0.476614,0.320435,0.671195,0.648594,0.407279,0.823587,0.394401,0.985885,0.0982503,0.229699,0.754033,0.250595,0.469911,0.946243,0.715782,0.420091,0.175658,0.236512,0.845496,0.27435,0.628558,0.758919,0.604885,0.464689,0.664999,0.65463,0.00420189,0.49125,0.658753,0.731771,0.255329,0.268613,0.293451,0.382463,0.230792,0.425351,0.851315,0.237936,0.424223,0.0972628,0.198151,0.370308,0.256932,0.92424,0.023864,0.0378156,0.751618,0.831902,0.776009,0.643515,0.468968,0.524271,0.580812,0.514186,0.841017,0.068574,0.15301,0.535956,0.266162,0.452447,0.105636,0.968747,0.251645,0.495944,0.991557,0.901802,0.0975139,0.964232,0.320841,0.817907,0.853442,0.408254,0.0708096,0.0840439,0.024455,0.202663,0.331441,0.686142,0.0741032,0.484053,0.778474,0.578835,0.49285,0.539653,0.447725,0.56981,0.712501,0.412818,0.547919,0.913737,0.264809,0.802173,0.315674,0.12614,0.995555,0.537915,0.294364,0.308235,0.0794488,0.457483,0.0735114,0.373641,0.684646,0.308845,0.145368,0.534317,0.363549,0.593572,0.559929,0.182394,0.843034,0.615981,0.5183,0.968203,0.986906,0.149678,0.0005126,0.133784,0.913755,0.935762,0.770276,0.920683,0.0423762,0.756837,0.797637,0.189677,0.831587,0.153958,0.587174,0.80004,0.915722,0.540362,0.852606,0.902894,0.457972,0.347036,0.369954,0.942149,0.722456,0.943184,0.0250763,0.388008,0.834079,0.44461,0.529962,0.172895,0.774008,0.0047375,0.703093,0.835349,0.283906,0.370777,0.409533,0.358015,0.0544012,0.704102,0.173675,0.647564,0.743935,0.268299,0.580682,0.70901,0.0166934,0.938919,0.95198,0.0207947,0.745757,0.808089,0.209184,0.252675,0.0471027,0.282055,0.580608,0.409102,0.296275,0.0450841,0.709848,0.787559,0.210709,0.121068,0.38812,0.372956,0.13868,0.85888,0.419884,0.755349,0.517756,0.0775532,0.830079,0.82272,0.521865,0.799162,0.900715,0.842434,0.956259,0.475361,0.753187,0.932937,0.18362,0.837535,0.747346,0.232054,0.252672,0.559421,0.236601,0.268152,0.0320607,0.383445,0.521425,0.892643,0.649591,0.848845,0.895136,0.269695,0.20074,0.281978,0.699879,0.0192822,0.355373,0.214724,0.785769,0.0797347,0.794494,0.480115,0.878332,0.615764,0.450385,0.859026,0.858349,0.616389,0.120593,0.230125,0.824844,0.142761,0.240172,0.640442,0.0226869,0.676995,0.0591165,0.398033,0.483821,0.11575,0.448564,0.290123,0.995538,0.778696,0.516337,0.540315,0.232215,0.664274,0.594804,0.268672,0.130346,0.11483,0.588903,0.243177,0.884221,0.846495,0.722301,0.312823,0.0233611,0.674071,0.946155,0.579418,0.552848,0.165109,0.61764,0.155133,0.332239,0.613853,0.151391,0.838106,0.453199,0.38015,0.354858,0.0742832,0.621412,0.386766,0.81249,0.0766187,0.426454,0.803133,0.246755,0.798025,0.494069,0.144952,0.970251,0.327736,0.221721,0.776178,0.793254,0.874592,0.818643,0.501758,0.0525339,0.0867203,0.0601443,0.936062,0.497017,0.217401,0.599048,0.498284,0.684415,0.378426,0.899733,0.287452,0.607861,0.390056,0.981408,0.550199,0.86793,0.658424,0.157039,0.345989,0.739197,0.69819,0.122395,0.0515935,0.47741,0.109415,0.829587,0.725006,0.314148,0.729163,0.098469,0.242196,0.718598,0.366055,0.935083,0.929972,0.944322,0.386175,0.841088,0.488003,0.320648,0.649695,0.622104,0.7339,0.654488,0.0441803,0.574737,0.306379,0.525577,0.409341,0.177208,0.661778,0.71125,0.611818,0.112215,0.570638,0.0419725,0.616859,0.161489,0.203973,0.491482,0.0820107,0.146271,0.44406,0.0930844,0.523489,0.835536,0.981507,0.840142,0.293881,0.675639,0.335825,0.861036,0.408386,0.821792,0.978571,0.185687,0.143508,0.337862,0.711438,0.477037,0.925748,0.849649,0.108122,0.420556,0.949817,0.701703,0.559008,0.341479,0.752557,0.321237,0.0499449,0.211329,0.519333,0.846309,0.0556638,0.928134,0.111042,0.944237,0.906826,0.476905,0.408382,0.16332,0.680995,0.572027,0.519364,0.119423,0.945605,0.511986,0.70431,0.233077,0.267719,0.21089,0.0757318,0.825691,0.594094,0.700324,0.774664,0.849865,0.29172,0.969283,0.790643,0.505428,0.956661,0.437419,0.780618,0.411552,0.341889,0.561649,0.835953,0.76768,0.341923,0.143778,0.637289,0.962651,0.78507,0.58991,0.830914,0.931417,0.917577,0.925265,0.781899,0.177238,0.0426161,0.370647,0.470472,0.0492206,0.744036,0.0359136,0.892226,0.523663,0.50352,0.627742,0.0564045,0.205112,0.645004,0.598767,0.0156279,0.956004,0.866148,0.267838,0.788272,0.904056,0.546911,0.753776,0.528677,0.686914,0.104477,0.861572,0.676719,0.758083,0.786853,0.361393,0.0374256,0.442963,0.944734,0.43637,0.188545,0.20072,0.0191389,0.818742,0.847477,0.499048,0.469349,0.806955,0.219157,0.153,0.285646,0.840925,0.886803,0.94868,0.760534,0.539437,0.842295,0.400477,0.719333,0.321738,0.315252,0.661234,0.599544,0.977591,0.293436,0.0544047,0.522881,0.366386,0.0557169,0.817779,0.881326,0.283308,0.691811,0.0813088,0.288685,0.155257,0.204115,0.0874875,0.375104,0.971584,0.463703,0.404498,0.138225,0.422173,0.270979,0.867637,0.00536299,0.412305,0.198299,0.87525,0.28418,0.875685,0.177805,0.772884,0.174761,0.722421,0.385275,0.0348463,0.189978,0.305563,0.51691,0.106358,0.525322,0.199906,0.395188,0.0697125,0.237326,0.926492,0.650383,0.982234,0.704907,0.921242,0.0719808,0.775481,0.151432,0.450707,0.596708,0.253467,0.308029,0.019607,0.964735,0.154603,0.920211,0.945664,0.247908,0.881271,0.486857,0.774383,0.320572,0.288219,0.191163,0.214469,0.965307,0.359086,0.0777841,0.742944,0.752485,0.974166,0.828171,0.163607,0.443118,0.785195,0.583334,0.692207,0.576533,0.991542,0.499092,0.511506,0.811407,0.410148,0.0819125,0.4404,0.111463,0.316523,0.993351,0.729046,0.189184,0.459524,0.931756,0.647336,0.253991,0.894204,0.133314,0.0119136,0.82713,0.15031,0.604925,0.678379,0.832676,0.899338,0.482267,0.523348,0.535035,0.13051,0.112858,0.122549,0.231377,0.332474,0.818749,0.933375,0.754708,0.523025,0.633216,0.8757,0.800188,0.527865,0.090556,0.497546,0.0644616,0.323861,0.221866,0.820758,0.29998,0.615898,0.454355,0.123071,0.319281,0.955715,0.146703,0.818341,0.566347,0.488823,0.380441,0.5535,0.0388413,0.893013,0.958971,0.716771,0.919295,0.445348,0.419733,0.898966,0.222608,0.856454,0.898083,0.515887,0.15391,0.700092,0.5739,0.924203,0.0508174,0.242905,0.63899,0.569934,0.241099,0.96722,0.921276,0.834852,0.656901,0.0373865,0.671591,0.845068,0.947573,0.488517,0.868803,0.551833,0.795901,0.457447,0.552315,0.442325,0.164538,0.823583,0.149551,0.33466,0.399419,0.0500389,0.842401,0.0553866,0.579288,0.948038,0.269308,0.534311,0.500115,0.488746,0.53476,0.253805,0.327776,0.734842,0.158981,0.0576073,0.972422,0.534459,0.686509,0.633853,0.953749,0.0747094,0.21074,0.526473,0.881755,0.291332,0.104333,0.353353,0.0558506,0.5708,0.252129,0.643542,0.363968,0.0704569,0.718515,0.535176,0.147595,0.130433,0.125561,0.598888,0.172979,0.110709,0.35273,0.124868,0.119763,0.371184,0.65071,0.0780114,0.105948,0.808539,0.461258,0.850837,0.825782,0.200935,0.972416,0.584253,0.822549,0.644024,0.7805,0.638208,0.593308,0.498138,0.828734,0.905777,0.797094,0.105862,0.16746,0.716189,0.463029,0.503882,0.949956,0.20998,0.646055,0.0321442,0.908465,0.0723155,0.0218141,0.727125,0.582579,0.842213,0.309971,0.576028,0.659998,0.690913,0.177055,0.254932,0.514283,0.170298,0.797771,0.886578,0.119699,0.869565,0.366482,0.770526,0.907507,0.293466,0.252011,0.780558,0.0598078,0.404291,0.69411,0.731726,0.443014,0.751481,0.0543707,0.492641,0.50668,0.226175,0.361783,0.382412,0.25345,0.963364,0.187182,0.261989,0.211212,0.382944,0.34999,0.826042,0.974189,0.690938,0.936266,0.979398,0.681679,0.0760184,0.397367,0.752638,0.873976,0.78831,0.886415,0.827609,0.741391,0.578009,0.463886,0.681353,0.202836,0.385994,0.269457,0.249064,0.793789,0.499215,0.522227,0.0796343,0.903928,0.327854,0.843337,0.854715,0.0916796,0.151069,0.512061,0.629691,0.36215,0.665167,0.735275,0.83717,0.91352,0.482834,0.51784,0.409101,0.174263,0.637744,0.466814,0.789404,0.909407,0.809816,0.534344,0.263233,0.796819,0.160333,0.248858,0.357094,0.678309,0.00759137,0.705909,0.376066,0.923723,0.0475154,0.221222,0.406796,0.865079,0.711594,0.802287,0.517835,0.0628549,0.130948,0.66147,0.0610926,0.217965,0.200775,0.599584,0.50744,|0.843243,0.773834,0.315534,0.046703,0.821252,0.632956,0.461164,0.893897,0.178112,0.34477,0.338944,0.714996,0.718278,0.0266937,0.420424,0.276149,0.941516,0.873984,0.358788,0.44329,0.943312,0.184237,0.941047,0.638635,0.401095,0.00377828,0.981504,0.851373,0.246248,0.241807,0.200761,0.266841,0.301735,0.665806,0.381485,0.485097,0.127816,0.550024,0.363802,0.631015,0.265005,0.824181,0.520062,0.994385,0.255828,0.656675,0.598462,0.494626,0.504273,0.980379,0.990445,0.306877,0.91079,0.872425,0.877889,0.150539,0.22258,0.4419,0.94028,0.840753,0.658531,0.299099,0.836719,0.729925,0.948895,0.579463,0.85163,0.866702,0.189185,0.451259,0.257301,0.0677124,0.609665,0.293836,0.601721,0.350816,0.429827,0.324997,0.302876,0.419775,0.615586,0.834245,0.457304,0.47829,0.341855,0.127159,0.471237,0.0236332,0.669158,0.357018,0.0619405,0.569643,0.147284,0.246571,0.61141,0.225644,0.249598,0.141792,0.385048,0.295382,0.694132,0.146432,0.130219,0.528655,0.892186,0.307048,0.0179603,0.115562,0.319062,0.773962,0.0866913,0.962964,0.802169,0.718103,0.977111,0.656109,0.288528,0.30929,0.980693,0.151529,0.0929727,0.817354,0.935756,0.0330638,0.0921668,0.23177,0.347926,0.200242,0.155401,0.767406,0.919504,0.881877,0.0127574,0.960917,0.783881,0.0553672,0.155258,0.621685,0.446492,0.796409,0.211875,0.6545,0.659447,0.0899701,0.625961,0.804728,0.0752959,0.627523,0.816742,0.240634,0.995209,0.203103,0.132685,0.0132138,0.908966,0.4217,0.191993,0.00807232,0.374038,0.262628,0.736848,0.0420684,0.625877,0.733001,0.782134,0.750294,0.726667,0.368764,0.921174,0.850812,0.831398,0.46055,0.99594,0.0360947,0.332679,0.343519,0.455521,0.646443,0.552026,0.123276,0.401044,0.97506,0.713096,0.130113,0.17693,0.709925,0.422422,0.985965,0.294073,0.00763285,0.241407,0.619442,0.119003,0.212745,0.646078,0.221418,0.134675,0.704833,0.0742816,0.265847,0.0613723,0.441805,0.168122,0.0603669,0.681147,0.375345,0.455023,0.674611,0.688337,0.971553,0.283816,0.232114,0.712365,0.882432,0.0903983,0.733437,0.936963,0.459663,0.673128,0.312292,0.141856,0.746059,0.967677,0.169307,0.956331,0.155508,0.596803,0.415138,0.790901,0.368507,0.79773,0.0283884,0.722603,0.550544,0.281645,0.840278,0.912241,0.656754,0.728726,0.236823,0.215622,0.254524,0.385065,0.242097,0.380531,0.959804,0.213411,0.928632,0.904078,0.912753,0.853848,0.664181,0.421783,0.0600516,0.731333,0.655654,0.538438,0.230945,0.382883,0.940286,0.907292,0.938281,0.356794,0.116169,0.561672,0.737308,0.428007,0.139331,0.693564,0.544949,0.737442,0.889979,0.166787,0.87144,0.325469,0.400869,0.619673,0.182013,0.599574,0.146502,0.528652,0.0555874,0.488612,0.329986,0.40274,0.861791,0.674584,0.239961,0.47865,0.743979,0.279795,0.819784,0.0937583,0.491214,0.856643,0.35813,0.371171,0.191386,0.844561,0.467288,0.589294,0.812141,0.976433,0.557542,0.909795,0.76184,0.343306,0.0588035,0.363173,0.757378,0.500333,0.357077,0.133903,0.381512,0.340462,0.502138,0.994737,0.403468,0.120258,0.872416,0.0280551,0.91092,0.242279,0.120614,0.545249,0.357169,0.59145,0.526006,0.782526,0.932202,0.04518,0.167878,0.130896,0.363487,0.965689,0.448057,0.938734,0.63214,0.23131,0.764342,0.657643,0.319066,0.476737,0.234348,0.647614,0.962253,0.242251,0.280945,0.428225,0.429754,0.562877,0.71891,0.166119,0.689378,0.336715,0.936779,0.944934,0.28422,0.953484,0.406836,0.772582,0.118228,0.386735,0.185662,0.977985,0.80861,0.131778,0.160589,0.414238,0.798295,0.998046,0.0841841,0.234761,0.0689751,0.720496,0.698321,0.764063,0.149109,0.444709,0.355209,0.0547616,0.221147,0.223229,0.917746,0.409355,0.791412,0.928108,0.673015,0.744886,0.78839,0.28528,0.463587,0.64731,0.934534,0.00600696,0.14162,0.963376,0.972625,0.0505497,0.565947,0.734109,0.348916,0.054476,0.0173763,0.930441,0.609403,0.998995,0.84677,0.587372,0.199023,0.119688,0.856994,0.289133,0.0615846,0.419014,0.198944,0.737982,0.724547,0.295695,0.373276,0.414718,0.376459,0.229772,0.133549,0.794346,0.702008,0.619664,0.471645,0.560978,0.735435,0.808686,0.752385,0.325817,0.380623,0.033294,0.868051,0.39637,0.396766,0.648907,0.820782,0.855601,0.524979,0.550747,0.974589,0.431664,0.74846,0.565515,0.840355,0.521455,0.305368,0.955105,0.716353,0.663188,0.496824,0.412934,0.0757043,0.617695,0.0273921,0.441665,0.482848,0.728227,0.732068,0.11234,0.270293,0.553621,0.992003,0.0130991,0.472304,0.57493,0.163912,0.63947,0.00152683,0.379579,0.0992419,0.0760289,0.209872,0.820457,0.226671,0.600661,0.456616,0.129561,0.69807,0.693328,0.0241902,0.569491,0.030452,0.381294,0.550801,0.845401,0.409472,0.106484,0.620216,0.760661,0.249549,0.718697,0.582685,0.713177,0.865576,0.512148,0.522934,0.869086,0.241687,0.0644618,0.50243,0.0275046,0.653031,0.0844864,0.207876,0.173209,0.258142,0.413772,0.055112,0.659891,0.0452269,0.317401,0.785599,0.284384,0.0590121,0.535607,0.730411,0.776555,0.846785,0.797067,0.11015,0.834566,0.490417,0.400731,0.336966,0.469604,0.729148,0.590522,0.0566589,0.0970725,0.331498,0.370555,0.398629,0.677945,0.94462,0.124524,0.132419,0.429845,0.375802,0.364073,0.515219,0.587147,0.248265,0.230047,0.68759,0.800384,0.925207,0.0249926,0.62087,0.959762,0.158795,0.300487,0.413305,0.34623,0.516363,0.0479492,0.446909,0.51716,0.653433,0.989171,0.639869,0.118154,0.54107,0.579937,0.831516,0.996902,0.631343,0.985986,0.117571,0.294487,0.125501,0.0482803,0.926564,0.790766,0.493166,0.883682,0.483859,0.547973,0.99129,0.76163,0.263346,0.519499,0.751212,0.7843,0.741747,0.176601,0.409202,0.935003,0.401392,0.656784,0.598093,0.506466,0.667029,0.891777,0.107509,0.30165,0.862932,0.252628,0.604678,0.572012,0.411522,0.142521,0.460242,0.142282,0.955764,0.585351,0.297567,0.0346811,0.4597,0.609099,0.727732,0.514673,0.734686,0.468373,0.765139,0.749349,0.923724,0.94621,0.117322,0.317726,0.507844,0.260451,0.633389,0.111636,0.301584,0.00177032,0.199383,0.33418,0.459438,0.665703,0.941307,0.274386,0.410931,0.457803,0.136713,0.470767,0.475955,0.784965,0.641931,0.826488,0.459994,0.951037,0.333111,0.905374,0.565341,0.877212,0.719769,0.699885,0.66637,0.233123,0.406561,0.0389631,0.833235,0.370966,0.243232,0.365882,0.897337,0.869033,0.682729,0.13614,0.614161,0.774398,0.188955,0.677983,0.357552,0.601817,0.476573,0.154347,0.305467,0.476945,0.580746,0.500538,0.610376,0.132048,0.697055,0.724661,0.442872,0.354369,0.0429948,0.554921,0.119831,0.343132,0.643217,0.289053,0.488614,0.622049,0.603917,0.117027,0.744719,0.749319,0.0853649,0.542344,0.162985,0.714302,0.391581,0.793483,0.678289,0.924189,0.680003,0.170063,0.950359,0.0388981,0.350481,0.648805,0.268169,0.991609,0.199145,0.949562,0.859044,0.502715,0.575116,0.400946,0.976144,0.171819,0.566802,0.901789,0.0165226,0.423095,0.912429,0.424095,0.435255,0.777134,0.672462,0.626469,0.612037,0.656878,0.0780385,0.132846,0.382254,0.415578,0.79912,0.10231,0.40091,0.688546,0.207788,0.0504192,0.926422,0.998485,0.160818,0.0734658,0.581355,0.543641,0.251703,0.0687845,0.0811012,0.93526,0.937336,0.939796,0.606178,0.562531,0.0267229,0.0114515,0.688963,0.892127,0.599099,0.409791,0.664911,0.945715,0.890376,0.992542,0.114521,0.300413,0.632767,0.0119469,0.611443,0.404569,0.982781,0.829735,0.23195,0.586515,0.0557519,0.337593,0.190229,0.0670876,0.229043,0.103704,0.385405,0.333009,0.21952,0.594191,0.193668,0.0371882,0.348474,0.927513,0.192234,0.280375,0.173039,0.904294,0.367772,0.540206,0.626673,0.0592946,0.260945,0.917905,0.221323,0.590452,0.569668,0.511474,0.714516,0.667785,0.335076,0.94198,0.924337,0.655999,0.986756,0.648662,0.793751,0.239959,0.950836,0.107228,0.539404,0.623283,0.0467761,0.242654,0.5626,0.873055,0.761046,0.366161,0.369045,0.630417,0.0298951,0.270109,0.264599,0.00637603,0.635813,0.108512,0.712832,0.949356,0.45835,0.386557,0.127448,0.257641,0.308674,0.0718961,0.506927,0.424786,0.0960894,0.0428824,0.485072,0.0545304,0.295094,0.355263,0.24896,0.463677,0.365832,0.0957379,0.0207748,0.336366,0.00448769,0.122533,0.686915,0.0768485,0.765265,0.181851,0.384091,0.915729,0.0157751,0.624337,0.0803154,0.586209,0.308212,0.307734,0.888726,0.161307,0.0499608,0.325136,0.299047,0.68716,0.168552,0.221808,0.294318,0.739315,0.73933,0.585662,0.152074,0.422679,0.619962,0.416334,0.0348222,0.326326,0.936064,0.42309,0.0891082,0.734521,0.0986706,0.272939,0.459389,0.928811,0.544417,0.782673,0.425844,0.344175,0.685475,0.634082,0.594346,0.921867,0.603809,0.921082,0.411931,0.987189,0.0157742,0.549752,0.830089,0.0749153,0.262874,0.739338,0.34183,0.729556,0.816942,0.671618,0.966691,0.571267,0.68679,0.851789,0.540034,0.277441,0.796428,0.0461903,0.767812,0.854845,0.333191,0.906072,0.679833,0.319389,0.166546,0.91966,0.515759,0.892119,0.260614,0.582255,0.313972,0.326126,0.722467,0.815723,0.0432567,0.303578,0.162005,0.290765,0.279811,0.658194,0.895136,0.0512658,0.000416279,0.75186,0.828706,0.697048,0.0484611,0.996911,0.226883,0.537114,0.624438,0.811864,0.216182,0.956286,0.998534,0.761915,0.246627,0.38621,0.331948,0.431868,0.717434,0.369364,0.659086,0.233392,0.00372821,0.990818,0.0677025,0.331702,0.954159,0.523242,0.93723,0.774264,0.129574,0.459714,0.0136976,0.355369,0.723528,0.390639,0.31645,0.373526,0.71521,0.425581,0.618812,0.526466,0.180449,0.912822,0.99696,0.45205,0.562934,0.0650462,0.201101,0.250375,0.340504,0.118118,0.773261,0.356898,0.102013,|0.0688838,0.427945,0.951809,0.309754,0.291768,0.427589,0.0462478,0.342752,0.520521,0.220763,0.561305,0.105738,0.664245,0.66556,0.772953,0.766025,0.75629,0.792302,0.590032,0.787879,0.212798,0.82177,0.433805,0.851389,0.033676,0.342999,0.84831,0.832577,0.192772,0.660575,0.682902,0.0959412,0.316123,0.105651,0.575031,0.549379,0.229357,0.558568,0.818411,0.532884,0.720158,0.405242,0.276988,0.613099,0.711593,0.388882,0.252399,0.43508,0.221822,0.79091,0.353913,0.0686291,0.0659296,0.746436,0.440302,0.860848,0.578321,0.403914,0.649025,0.217718,0.667997,0.8708,0.105708,0.576617,0.388427,0.257839,0.119877,0.0400888,0.418657,0.732505,0.169931,0.741877,0.123128,0.876881,0.936224,0.844183,0.85615,0.0991233,0.531842,0.337169,0.166009,0.234934,0.31899,0.822656,0.845235,0.991283,0.437727,0.37971,0.920611,0.879796,0.731242,0.0849132,0.310782,0.0954656,0.38906,0.102294,0.101812,0.966391,0.872624,0.021569,0.863018,0.462284,0.974281,0.935043,0.685085,0.464813,0.783953,0.913303,0.0457024,0.663685,0.305229,0.543605,0.123025,0.100313,0.670008,0.85811,0.313351,0.0846025,0.937072,0.938633,0.857026,0.259528,0.731694,0.105287,0.73955,0.0265159,0.00124937,0.30628,0.0220886,0.282444,0.577083,0.447744,0.10231,0.234894,0.265616,0.095567,0.780199,0.987021,0.796138,0.962736,0.769376,0.0438436,0.688146,0.89735,0.753182,0.0549215,0.637478,0.425499,0.485707,0.307454,0.0787222,0.0798781,0.957449,0.312857,0.447309,0.719731,0.216253,0.835392,0.0946472,0.0827145,0.28837,0.837475,0.141456,0.949837,0.484959,0.0604294,0.552967,0.167496,0.259215,0.520755,0.0727408,0.837512,0.117786,0.315065,0.089784,0.718776,0.388008,0.596242,0.901178,0.516645,0.0218581,0.788733,0.705418,0.468736,0.859561,0.283134,0.139326,0.96788,0.202496,0.235999,0.0397415,0.341868,0.724801,0.551961,0.0331821,0.0882471,0.304815,0.143396,0.485711,0.60441,0.958685,0.000707686,0.714387,0.301461,0.897765,0.89863,0.0477655,0.333322,0.248362,0.651594,0.851972,0.883593,0.47435,0.83459,0.522336,0.234856,0.0593985,0.922468,0.386034,0.775965,0.715119,0.0271584,0.942676,0.805129,0.897237,0.462798,0.614117,0.253475,0.186914,0.0329813,0.37528,0.764715,0.0613758,0.358333,0.622982,0.69533,0.116422,0.024555,0.721513,0.76849,0.585497,0.594176,0.152362,0.220336,0.0110156,0.470105,0.938991,0.141728,0.22681,0.916235,0.507328,0.231488,0.797148,0.269406,0.0823399,0.173734,0.0968322,0.519482,0.336868,0.703989,0.906681,0.579592,0.64353,0.0128476,0.660785,0.590969,0.0796967,0.209213,0.0154635,0.808142,0.490925,0.760099,0.805543,0.031151,0.74287,0.210431,0.368443,0.0309626,0.0694852,0.0876823,0.435436,0.119334,0.315299,0.752653,0.0387366,0.430843,0.626355,0.423834,0.0451354,0.894287,0.396723,0.480739,0.418671,0.944939,0.810755,0.198931,0.45698,0.792964,0.20398,0.39137,0.224502,0.34196,0.822311,0.480559,0.419486,0.733345,0.392744,0.476088,0.835682,0.247879,0.523643,0.49029,0.180659,0.209856,0.519445,0.429278,0.133831,0.759938,0.1165,0.107089,0.708409,0.105483,0.899519,0.977355,0.031752,0.884513,0.0804352,0.141625,0.499812,0.643183,0.394468,0.368556,0.970532,0.618604,0.741985,0.814514,0.218404,0.543127,0.993741,0.490636,0.0104356,0.975586,0.383674,0.337462,0.0338671,0.98744,0.595834,0.655935,0.991006,0.33885,0.374089,0.544627,0.755396,0.258687,0.242303,0.481122,0.234005,0.155076,0.5332,0.293598,0.188344,0.148945,0.0860065,0.672088,0.900121,0.288393,0.315302,0.52196,0.584438,0.55982,0.841022,0.807094,0.933173,0.199848,0.932404,0.852075,0.270825,0.912662,0.49928,0.416629,0.882173,0.111529,0.266808,0.314761,0.361886,0.877891,0.593523,0.885757,0.705167,0.0663634,0.224346,0.319786,0.635625,0.0630284,0.146821,0.0994509,0.0989984,0.584191,0.877631,0.815486,0.100321,0.919473,0.910435,0.0685943,0.569973,0.224734,0.470374,0.573816,0.897224,0.27336,0.275467,0.88111,0.441704,0.956203,0.885817,0.6651,0.594932,0.239091,0.655692,0.529279,0.676203,0.954743,0.372458,0.785249,0.538528,0.00672436,0.177624,0.414802,0.665412,0.271146,0.90882,0.524886,0.718992,0.675647,0.931595,0.888849,0.218206,0.597368,0.953912,0.0946828,0.958768,0.59782,0.903977,0.13767,0.486223,0.367273,0.2945,0.0613064,0.925988,0.87838,0.911515,0.321914,0.274457,0.357808,0.890463,0.113809,0.623577,0.297181,0.696747,0.0481376,0.565586,0.151115,0.623081,0.657484,0.390117,0.439,0.260161,0.452855,0.558831,0.898863,0.928614,0.943555,0.971675,0.378229,0.876239,0.3099,0.493855,0.416937,0.927061,0.766563,0.409226,0.825813,0.978831,0.10319,0.413932,0.998758,0.144609,0.646489,0.205334,0.612363,0.117248,0.0265241,0.19911,0.26094,0.150042,0.185405,0.817717,0.781638,0.537665,0.119945,0.260947,0.522094,0.571168,0.811142,0.883704,0.13637,0.290556,0.695153,0.309429,0.196644,0.64408,0.976593,0.321414,0.568187,0.0197146,0.36544,0.117476,0.872336,0.587559,0.00518769,0.40963,0.752139,0.778763,0.0905586,0.975811,0.0510438,0.162392,0.697225,0.410288,0.87729,0.163566,0.733551,0.114154,0.714562,0.893508,0.347388,0.373385,0.641976,0.609728,0.489478,0.582763,0.69397,0.651636,0.869923,0.802802,0.697973,0.124624,0.0786265,0.754199,0.492714,0.13809,0.822943,0.395971,0.165585,0.358699,0.482267,0.380344,0.205593,0.028191,0.524304,0.706487,0.734907,0.544543,0.506125,0.6077,0.200371,0.755569,0.629889,0.249277,0.903234,0.156124,0.778914,0.404249,0.635309,0.116527,0.672336,0.816953,0.141642,0.610369,0.477113,0.0769095,0.555631,0.508438,0.97923,0.777308,0.348934,0.56272,0.321425,0.386747,0.778564,0.477053,0.5228,0.256828,0.501784,0.289097,0.929687,0.348783,0.47945,0.220449,0.0859044,0.550412,0.379452,0.821202,0.802968,0.484899,0.27411,0.825544,0.413961,0.100316,0.775638,0.47405,0.928679,0.221322,0.856428,0.79392,0.847607,0.728286,0.727701,0.0341236,0.899347,0.769208,0.964912,0.334913,0.853224,0.0578308,0.547919,0.737578,0.769066,0.661977,0.0615091,0.632966,0.524948,0.838032,0.605169,0.92315,0.786367,0.431563,0.596801,0.451899,0.128549,0.798409,0.863023,0.628741,0.625017,0.7716,0.992586,0.693982,0.337548,0.365088,0.792074,0.634641,0.807072,0.893763,0.667979,0.800314,0.693066,0.87037,0.796516,0.175841,0.106125,0.299338,0.528581,0.555446,0.0350359,0.264099,0.728396,0.982952,0.668843,0.49353,0.725222,0.720818,0.0838304,0.654309,0.955801,0.480002,0.203677,0.875153,0.86183,0.562885,0.660468,0.010501,0.676135,0.350166,0.453743,0.608862,0.180371,0.598636,0.325467,0.608094,0.422173,0.0349692,0.882209,0.175516,0.275886,0.252177,0.624489,0.950147,0.0764174,0.119848,0.780794,0.701251,0.356209,0.791191,0.621558,0.365287,0.981234,0.484413,0.179936,0.222877,0.174553,0.04331,0.737923,0.560956,0.0427504,0.262874,0.806522,0.527574,0.50606,0.250628,0.0244402,0.533555,0.153425,0.143124,0.0360797,0.916512,0.284419,0.621865,0.9461,0.756203,0.749839,0.834891,0.861386,0.734272,0.0401057,0.409097,0.896022,0.728558,0.633374,0.652261,0.0553787,0.810261,0.77425,0.418634,0.408348,0.105646,0.668067,0.637956,0.708063,0.638472,0.31608,0.603793,0.521056,0.911708,0.226622,0.459586,0.911197,0.893754,0.569855,0.461841,0.716331,0.330531,0.279643,0.552135,0.321262,0.588971,0.185708,0.508588,0.59295,0.632115,0.125111,0.245424,0.393472,0.957499,0.0624854,0.0075646,0.871894,0.843792,0.0186083,0.598757,0.670056,0.52206,0.522072,0.172253,0.0375515,0.31251,0.303276,0.391835,0.943047,0.270822,0.818186,0.131351,0.843475,0.388451,0.406658,0.805383,0.0758209,0.722315,0.872095,0.0137952,0.2595,0.0878375,0.947887,0.562392,0.224386,0.344573,0.753161,0.539334,0.0118171,0.643601,0.539889,0.106835,0.662603,0.461533,0.188018,0.3692,0.855122,0.87596,0.972887,0.636043,0.637414,0.923388,0.649061,0.232526,0.500118,0.958662,0.427661,0.288328,0.237049,0.277685,0.643174,0.413322,0.068729,0.606525,0.829029,0.244841,0.49179,0.5933,0.207959,0.448031,0.209448,0.0338036,0.63598,0.976731,0.708304,0.896202,0.463442,0.306345,0.107622,0.266997,0.955453,0.350508,0.992969,0.208031,0.12895,0.390221,0.64608,0.142047,0.596484,0.997417,0.56246,0.0670595,0.44757,0.542009,0.650779,0.525938,0.616335,0.58916,0.114132,0.299217,0.0869833,0.772086,0.700658,0.636415,0.141186,0.984404,0.74019,0.467254,0.844821,0.919174,0.308473,0.838061,0.494755,0.65241,0.458648,0.27033,0.970996,0.285757,0.201726,0.325809,0.159303,0.993335,0.530065,0.522133,0.508231,0.616012,0.177068,0.873699,0.0170103,0.470569,0.0232669,0.154102,0.441986,0.563125,0.024173,0.388336,0.900668,0.438706,0.426078,0.775557,0.101271,0.0520761,0.574977,0.30355,0.469419,0.968086,0.61546,0.367961,0.0365727,0.304724,0.882177,0.76569,0.0833865,0.560988,0.0378145,0.28566,0.446729,0.673893,0.877859,0.601941,0.223325,0.727485,0.532384,0.737665,0.157869,0.124708,0.554007,0.564494,0.609246,0.863807,0.945734,0.954668,0.552082,0.613426,0.624834,0.116377,0.766623,0.861083,0.539266,0.0618851,0.456644,0.738922,0.370138,0.573134,0.600163,0.823445,0.269879,0.271945,0.997351,0.723896,0.583854,0.560964,0.538297,0.916437,0.578437,0.580044,0.0842631,0.455355,0.63408,0.381278,0.793976,0.464331,0.580432,0.653215,0.758132,0.877078,0.282205,0.527551,0.701417,0.521875,0.175025,0.934448,0.304964,0.160934,0.837719,0.355809,0.0835845,0.725486,0.699266,0.94909,0.757526,0.590077,0.664983,0.0395746,0.698692,0.860486,0.688257,0.830722,0.205896,0.747953,0.735549,|0.823923,0.274246,0.936297,0.151968,0.999562,0.14949,0.237761,0.291988,0.840012,0.843805,0.46043,0.125615,0.645518,0.861263,0.293775,0.953721,0.553418,0.791482,0.395549,0.151681,0.369197,0.366333,0.576657,0.373037,0.23634,0.57559,0.328537,0.590659,0.0939583,0.366893,0.0278878,0.81325,0.921767,0.428583,0.464994,0.622423,0.512662,0.677718,0.204891,0.554507,0.754658,0.0847262,0.148003,0.922631,0.306165,0.33058,0.316462,0.989146,0.987322,0.990058,0.398765,0.386951,0.658636,0.264641,0.577718,0.388968,0.1425,0.570071,0.677133,0.100097,0.176921,0.551522,0.67831,0.21342,0.289909,0.958368,0.334641,0.263815,0.582815,0.925513,0.866497,0.600848,0.00576705,0.0836897,0.0224245,0.738386,0.660291,0.602219,0.134398,0.889111,0.240499,0.240058,0.169223,0.989863,0.0352467,0.966449,0.202897,0.956452,0.43314,0.564878,0.0349861,0.838737,0.533766,0.227089,0.265887,0.630921,0.01638,0.326419,0.277248,0.241169,0.358012,0.522864,0.106652,0.639222,0.834031,0.123673,0.488923,0.0411472,0.237842,0.131445,0.393702,0.2332,0.923608,0.56063,0.0585595,0.340279,0.608155,0.474313,0.444601,0.12833,0.625768,0.944343,0.364645,0.927999,0.310062,0.0204743,0.992454,0.269208,0.381235,0.98272,0.295854,0.0298147,0.472397,0.982506,0.750682,0.653701,0.0803649,0.887341,0.378079,0.945106,0.336065,0.401219,0.0385754,0.884307,0.632687,0.905029,0.606826,0.984105,0.741797,0.977876,0.65248,0.185155,0.192081,0.174004,0.713107,0.695804,0.0195427,0.98183,0.815557,0.823836,0.91893,0.114563,0.548949,0.94805,0.986587,0.932485,0.0502027,0.387166,0.507503,0.583698,0.265279,0.916666,0.670284,0.805593,0.0825673,0.746585,0.259255,0.432045,0.746824,0.540949,0.0051648,0.67739,0.446014,0.604616,0.0909469,0.280901,0.482349,0.780229,0.390614,0.494208,0.170278,0.512921,0.751179,0.160176,0.910142,0.969242,0.815731,0.468929,0.796664,0.915887,0.983822,0.257402,0.578472,0.959706,0.554831,0.564485,0.318263,0.29286,0.00904399,0.142949,0.956247,0.36499,0.339124,0.765733,0.653791,0.975013,0.475378,0.186335,0.571888,0.684209,0.998749,0.756603,0.693837,0.554444,0.433765,0.121092,0.118621,0.700964,0.164079,0.234259,0.916515,0.172551,0.420067,0.114366,0.150871,0.912891,0.270872,0.235706,0.545771,0.0135903,0.665881,0.410093,0.996792,0.875641,0.93802,0.897372,0.109418,0.329747,0.321369,0.0420389,0.452037,0.833911,0.755495,0.366021,0.510939,0.360447,0.902664,0.375102,0.847299,0.294649,0.380015,0.614304,0.535418,0.857044,0.191711,0.687176,0.455794,0.169572,0.172333,0.703661,0.573788,0.917563,0.549809,0.454728,0.283377,0.858593,0.343749,0.71399,0.051169,0.87841,0.461552,0.554415,0.449241,0.912697,0.893856,0.902272,0.875787,0.322552,0.936391,0.691963,0.442858,0.937436,0.818381,0.154336,0.512803,0.0565341,0.635203,0.360366,0.684147,0.486513,0.865844,0.664078,0.0471035,0.485361,0.917447,0.731949,0.156715,0.145579,0.377284,0.873646,0.305325,0.0819359,0.53118,0.885557,0.441747,0.289187,0.679201,0.00529885,0.3554,0.715903,0.982981,0.199131,0.50805,0.607235,0.841114,0.187116,0.329643,0.2059,0.0225326,0.927109,0.391012,0.478898,0.324192,0.854585,0.730979,0.202758,0.468747,0.533827,0.841088,0.335056,0.470481,0.469066,0.281145,0.580291,0.327036,0.730916,0.591546,0.153063,0.942427,0.788254,0.999544,0.361152,0.180584,0.283138,0.767633,0.574003,0.518871,0.00915664,0.618763,0.0202235,0.759111,0.860094,0.747119,0.597518,0.849168,0.910266,0.611372,0.165904,0.724938,0.957428,0.70836,0.372853,0.79298,0.630901,0.811164,0.288063,0.5195,0.0859094,0.184012,0.63431,0.500093,0.599898,0.610854,0.889688,0.803682,0.920908,0.837485,0.866679,0.383486,0.936827,0.431897,0.0605149,0.104913,0.289811,0.451929,0.285169,0.61308,0.640174,0.904421,0.896386,0.155943,0.311295,0.839915,0.0567898,0.599989,0.833951,0.0141323,0.693976,0.0995701,0.00614411,0.689872,0.211071,0.2822,0.864668,0.784358,0.904691,0.611963,0.576723,0.987207,0.630347,0.27937,0.866239,0.240786,0.634913,0.54903,0.441161,0.780059,0.441002,0.168039,0.959472,0.249096,0.370503,0.934734,0.682041,0.760997,0.0243194,0.689102,0.958311,0.313732,0.315584,0.0203435,0.545795,0.973181,0.208013,0.891306,0.688064,0.72706,0.106631,0.151424,0.526364,0.403761,0.370921,0.72793,0.46731,0.703822,0.097393,0.752928,0.471203,0.971242,0.993927,0.922738,0.490265,0.456582,0.289859,0.767813,0.959642,0.42405,0.416982,0.536112,0.664977,0.417666,0.0810777,0.490336,0.883408,0.745609,0.720864,0.458122,0.237944,0.57266,0.0943406,0.546267,0.970735,0.183165,0.140531,0.555327,0.489738,0.573336,0.740506,0.114595,0.631859,0.138181,0.0613312,0.438364,0.544374,0.737118,0.443573,0.8054,0.677343,0.371254,0.998964,0.139258,0.134966,0.183397,0.818485,0.651574,0.1129,0.192065,0.191535,0.52063,0.151407,0.494185,0.549105,0.713216,0.706097,0.0777569,0.668209,0.091212,0.817788,0.680995,0.747963,0.876748,0.70326,0.926494,0.945638,0.871369,0.151341,0.296662,0.22173,0.792377,0.00613248,0.152534,0.0615869,0.140135,0.0679109,0.0608035,0.745376,0.623055,0.391519,0.357319,0.923108,0.861193,0.0192029,0.865279,0.548449,0.69368,0.00481063,0.857284,0.191206,0.90401,0.985548,0.52525,0.374849,0.0514734,0.798134,0.0800981,0.558774,0.89885,0.62721,0.813594,0.956628,0.257666,0.932155,0.42609,0.420692,0.6707,0.0577379,0.580883,0.0869199,0.0411443,0.347492,0.6895,0.253869,0.855899,0.119541,0.760018,0.347323,0.815047,0.670315,0.839338,0.0419471,0.777882,0.488073,0.528734,0.14984,0.0848988,0.712385,0.974961,0.274402,0.652659,0.58342,0.478798,0.89381,0.0255539,0.70633,0.992986,0.75706,0.275429,0.373562,0.394163,0.231311,0.0858886,0.330211,0.821546,0.0779071,0.719165,0.412902,0.246095,0.0642424,0.989188,0.577538,0.993023,0.953613,0.816212,0.573086,0.924736,0.93792,0.347473,0.649531,0.167413,0.834654,0.498501,0.425648,0.391238,0.18727,0.242311,0.385149,0.605464,0.404287,0.46343,0.624767,0.383182,0.162453,0.876748,0.153584,0.214394,0.864644,0.456004,0.890267,0.598165,0.584436,0.667296,0.0650948,0.0534115,0.96634,0.0597712,0.689424,0.324623,0.812204,0.76565,0.960621,0.209511,0.627276,0.792715,0.746813,0.342636,0.273447,0.638746,0.327947,0.845976,0.591547,0.0582915,0.213366,0.911144,0.915749,0.413839,0.207848,0.32979,0.419405,0.661719,0.803718,0.678487,0.47512,0.997012,0.624231,0.732655,0.935359,0.0449978,0.489915,0.162001,0.396543,0.344851,0.799784,0.929032,0.560491,0.542685,0.499072,0.0818908,0.813806,0.878154,0.25202,0.354228,0.632713,0.10323,0.719225,0.776068,0.281033,0.116007,0.873007,0.943203,0.0913629,0.828827,0.928547,0.105357,0.436864,0.850169,0.279428,0.464879,0.287257,0.503838,0.838558,0.625628,0.43471,0.0392814,0.0201481,0.227724,0.963463,0.786112,0.323932,0.0480643,0.63962,0.108075,0.223699,0.688652,0.803212,0.137094,0.221142,0.697669,0.877045,0.170495,0.368149,0.960986,0.543074,0.501937,0.127603,0.887153,0.755146,0.0311469,0.954583,0.7549,0.987215,0.514914,0.370453,0.381201,0.0131276,0.153906,0.794544,0.00989062,0.20113,0.633623,0.294321,0.00345618,0.934588,0.627268,0.641563,0.375692,0.36004,0.307768,0.510733,0.630831,0.108272,0.901586,0.778611,0.399434,0.620323,0.989599,0.922899,0.84313,0.331243,0.881566,0.0523633,0.736477,0.520769,0.354592,0.164219,0.375988,0.480059,0.81397,0.413453,0.261478,0.0328343,0.0719928,0.807437,0.691441,0.998,0.261282,0.487438,0.975283,0.0852482,0.163051,0.725793,0.897447,0.166144,0.245087,0.0217268,0.541132,0.116759,0.96004,0.699881,0.0111898,0.917923,0.28219,0.773747,0.149207,0.725744,0.368156,0.343921,0.163387,0.654848,0.0898803,0.813559,0.161888,0.196852,0.841888,0.308238,0.326453,0.0440418,0.179102,0.944242,0.729749,0.564759,0.641441,0.714781,0.141138,0.260673,0.921218,0.335748,0.806966,0.903793,0.791915,0.951641,0.995646,0.67118,0.494501,0.142552,0.137079,0.590308,0.108408,0.246595,0.385023,0.624669,0.0301127,0.634941,0.0856251,0.862355,0.912957,0.906379,0.00834477,0.767682,0.220565,0.630629,0.397397,0.989245,0.1981,0.8455,0.576953,0.87283,0.916951,0.00223637,0.819789,0.48063,0.711343,0.0319126,0.349271,0.400991,0.263062,0.723802,0.129953,0.51123,0.872155,0.0526075,0.143631,0.23423,0.513852,0.982773,0.811786,0.692936,0.489072,0.91476,0.042634,0.916825,0.916606,0.132282,0.93978,0.694636,0.0663205,0.284957,0.114019,0.676807,0.1443,0.999324,0.0429641,0.289588,0.55653,0.641779,0.766654,0.725536,0.714678,0.250734,0.268982,0.63621,0.736438,0.229764,0.0692251,0.9682,0.176249,0.158386,0.471243,0.158828,0.154183,0.62368,0.392165,0.9753,0.383034,0.186466,0.737768,0.549761,0.39539,0.693337,0.999321,0.644188,0.546842,0.733963,0.164056,0.559579,0.937921,0.682449,0.605675,0.542226,0.255459,0.599618,0.765322,0.501305,0.132392,0.666759,0.45827,0.940879,0.374262,0.299116,0.0427961,0.861145,0.681732,0.265837,0.739881,0.463964,0.374867,0.486473,0.587025,0.804402,0.486239,0.331791,0.784731,0.990713,0.0127207,0.546272,0.912848,0.945662,0.366815,0.74273,0.379254,0.0733708,0.0505098,0.317264,0.514313,0.374429,0.453619,0.40657,0.363298,0.496354,0.643495,0.435756,0.792045,0.0778922,0.707024,0.97919,0.263323,0.409914,0.608777,0.207923,0.315755,0.752963,0.303309,0.172387,0.00737977,0.0876608,0.193517,0.394855,0.481836,0.204194,0.655164,0.80151,0.638639,0.252785,0.421662,0.147996,0.0163162,0.305674,0.6026,0.120596,0.566087,0.735693,|0.0725449,0.174894,0.186496,0.71769,0.970009,0.0588221,0.123291,0.938934,0.80009,0.0622147,0.254443,0.0597183,0.0644963,0.75694,0.564968,0.751652,0.255549,0.76823,0.393373,0.22942,0.640075,0.331392,0.992283,0.146222,0.692795,0.285525,0.633322,0.00316769,0.365016,0.121916,0.840472,0.566696,0.462517,0.595119,0.283399,0.493155,0.840946,0.968334,0.755182,0.330151,0.597076,0.056776,0.410543,0.0428704,0.989269,0.495159,0.896536,0.558706,0.221482,0.269927,0.0145328,0.834303,0.34851,0.213181,0.0634156,0.178602,0.253425,0.388279,0.970442,0.544103,0.313757,0.092687,0.144684,0.866187,0.539567,0.185378,0.900053,0.759084,0.355965,0.82511,0.826321,0.235069,0.40288,0.879929,0.452545,0.192041,0.111675,0.331802,0.942231,0.175168,0.510128,0.131416,0.456503,0.75528,0.453919,0.280649,0.694255,0.199217,0.123382,0.247975,0.805466,0.758617,0.137062,0.782875,0.229244,0.881497,0.674838,0.712639,0.643968,0.283334,0.860084,0.126578,0.887908,0.385594,0.0491829,0.198456,0.574571,0.303061,0.460141,0.0393419,0.573621,0.0242667,0.734269,0.243949,0.681949,0.435322,0.255001,0.867679,0.391845,0.791703,0.733742,0.20037,0.111967,0.0850164,0.897378,0.445862,0.170659,0.112118,0.759534,0.955855,0.00254852,0.628619,0.961791,0.673811,0.495858,0.243821,0.295956,0.254433,0.488179,0.383763,0.957891,0.99376,0.655064,0.124782,0.908044,0.104229,0.901746,0.461364,0.63506,0.848558,0.724551,0.603149,0.604737,0.0612131,0.106034,0.635362,0.745101,0.855805,0.0775769,0.618362,0.895285,0.991611,0.663807,0.606712,0.734876,0.723991,0.124143,0.527362,0.268729,0.986647,0.450519,0.740597,0.233731,0.996884,0.328506,0.893075,0.765753,0.308498,0.609648,0.155423,0.769908,0.594369,0.104801,0.268814,0.862608,0.124004,0.145152,0.888554,0.249946,0.152975,0.129234,0.0727051,0.379516,0.914608,0.789166,0.104722,0.306652,0.991655,0.0165316,0.164962,0.801451,0.267145,0.838264,0.507257,0.850768,0.0371414,0.671557,0.514939,0.536493,0.629529,0.894602,0.918598,0.124376,0.083586,0.211542,0.612686,0.791908,0.85058,0.936128,0.335506,0.235003,0.489645,0.755879,0.366672,0.391582,0.428435,0.626394,0.549649,0.159443,0.420231,0.364581,0.609939,0.853697,0.486714,0.556915,0.745055,0.403857,0.646593,0.0439191,0.116303,0.537911,0.86593,0.473164,0.632833,0.338457,0.925821,0.625814,0.549197,0.898759,0.836804,0.983786,0.0119386,0.61039,0.994604,0.220446,0.658297,0.385027,0.791716,0.381713,0.883218,0.673693,0.487869,0.730916,0.0158218,0.403329,0.212383,0.0558475,0.701594,0.430538,0.467277,0.26294,0.783238,0.0946742,0.134551,0.701991,0.400439,0.725821,0.166436,0.0652184,0.330971,0.823919,0.138398,0.762322,0.542419,0.343185,0.42681,0.680522,0.735773,0.926727,0.497911,0.828254,0.356932,0.0731399,0.373281,0.276455,0.168083,0.634096,0.270743,0.248543,0.521368,0.881604,0.458798,0.621523,0.940742,0.0948516,0.839252,0.166587,0.242671,0.031008,0.647127,0.403112,0.904484,0.430415,0.342455,0.581593,0.874751,0.343312,0.0490196,0.0219957,0.207246,0.982183,0.996148,0.975562,0.45316,0.638212,0.0828703,0.901294,0.131608,0.0533413,0.359537,0.136509,0.596168,0.16004,0.696982,0.364966,0.450033,0.789888,0.968998,0.997264,0.849554,0.111216,0.445076,0.498322,0.766884,0.844142,0.93229,0.465261,0.563108,0.789613,0.970521,0.246282,0.808209,0.0382988,0.716528,0.794843,0.88897,0.848894,0.198804,0.565851,0.567273,0.55956,0.660943,0.810589,0.266693,0.922069,0.314515,0.781571,0.713215,0.987608,0.475398,0.761352,0.142162,0.560137,0.772245,0.134856,0.582166,0.146251,0.0820183,0.598678,0.574968,0.861704,0.554926,0.494251,0.234228,0.276703,0.813121,0.686448,0.380671,0.502434,0.863496,0.76635,0.359895,0.354706,0.867098,0.214717,0.989994,0.0368311,0.638745,0.617509,0.748101,0.564695,0.366504,0.15833,0.406102,0.930972,0.0703816,0.797239,0.235006,0.791754,0.314475,0.437216,0.732413,0.133505,0.0189758,0.315307,0.19762,0.16649,0.954296,0.0912234,0.637773,0.644635,0.832961,0.635575,0.99956,0.204253,0.262702,0.0398735,0.812803,0.185295,0.784184,0.947734,0.730645,0.901803,0.87665,0.220551,0.95705,0.787949,0.187453,0.217968,0.329457,0.688888,0.167717,0.621983,0.0610734,0.67236,0.653248,0.800419,0.246918,0.0991323,0.804128,0.0878948,0.669932,0.513418,0.560506,0.804203,0.56158,0.986159,0.843494,0.626263,0.177606,0.903709,0.068125,0.0947075,0.270056,0.310169,0.899623,0.531784,0.496174,0.467515,0.828791,7.70688e-05,0.522818,0.845377,0.895894,0.41533,0.133801,0.363241,0.048126,0.918448,0.152826,0.0709847,0.504049,0.543555,0.922115,0.969828,0.249326,0.145167,0.198409,0.780681,0.702854,0.610126,0.708258,0.428803,0.546154,0.0364705,0.69425,0.543364,0.89757,0.699815,0.126117,0.835077,0.290333,0.715258,0.920386,0.0389458,0.443482,0.327833,0.143193,0.867414,0.337242,0.0737825,0.0669559,0.831452,0.722519,0.304899,0.571458,0.876678,0.222962,0.153613,0.398036,0.288677,0.0225115,0.0173439,0.207185,0.770225,0.0382152,0.359274,0.732197,0.235935,0.613164,0.143393,0.882085,0.94573,0.778049,0.887406,0.285115,0.530516,0.202517,0.448681,0.0853066,0.428633,0.181259,0.105731,0.345273,0.544299,0.505206,0.94987,0.129975,0.35464,0.541875,0.488021,0.815047,0.768065,0.952365,0.219998,0.619633,0.194153,0.335822,0.750934,0.688699,0.791698,0.554945,0.741048,0.168053,0.624848,0.0365549,0.704426,0.153974,0.246353,0.468352,0.265534,0.642736,0.0336457,0.0729946,0.125188,0.752842,0.233064,0.220845,0.39898,0.689799,0.593848,0.375461,0.359441,0.616984,0.149538,0.760986,0.11326,0.546704,0.0351968,0.475459,0.833449,0.753348,0.533934,0.0270073,0.750153,0.372832,0.129123,0.270843,0.306469,0.372537,0.066744,0.149788,0.069495,0.395166,0.397494,0.13873,0.00230813,0.959289,0.900526,0.819293,0.65285,0.590538,0.606287,0.380185,0.145041,0.198949,0.273026,0.686101,0.592804,0.601262,0.00727451,0.941346,0.234397,0.695413,0.27474,0.424053,0.666666,0.398579,0.372736,0.374552,0.621009,0.27601,0.924501,0.0868074,0.728512,0.825255,0.0728174,0.355816,0.242841,0.949471,0.174798,0.257262,0.152324,0.718029,0.940303,0.329085,0.903042,0.369896,0.287993,0.989715,0.820292,0.592131,0.175365,0.363024,0.446565,0.609227,0.569196,0.533111,0.284682,0.690625,0.952476,0.88008,0.0403832,0.747698,0.595574,0.282807,0.780298,0.652297,0.722222,0.368585,0.847235,0.498942,0.997117,0.868655,0.649288,0.36008,0.592368,0.0629642,0.633377,0.553048,0.659829,0.161058,0.617495,0.849153,0.553238,0.800723,0.938477,0.664682,0.716934,0.113442,0.0684518,0.339616,0.274304,0.547015,0.437436,0.892857,0.0778134,0.819882,0.37433,0.0620154,0.665235,0.0972766,0.590307,0.834853,0.301773,0.718544,0.725643,0.74417,0.171649,0.208627,0.170411,0.60991,0.869948,0.535723,0.247108,0.222259,0.152485,0.0914999,0.346585,0.950339,0.58204,0.0340322,0.768986,0.429838,0.414806,0.770668,0.44475,0.108903,0.189099,0.333552,0.668817,0.367008,0.445372,0.706812,0.515282,0.903798,0.148823,0.495004,0.0464562,0.204617,0.491168,0.662363,0.637008,0.668201,0.406669,0.102006,0.140838,0.00200844,0.599284,0.00103015,0.0707126,0.470914,0.160522,0.779122,0.433315,0.100386,0.28812,0.789882,0.6569,0.881204,0.412547,0.0503327,0.598358,0.459399,0.169552,0.856191,0.788214,0.25485,0.674632,0.151013,0.530875,0.618358,0.90522,0.451285,0.674297,0.931875,0.666475,0.523781,0.713669,0.47334,0.512899,0.0955317,0.573123,0.100552,0.632819,0.374077,0.381798,0.471547,0.651466,0.603737,0.205071,0.426693,0.994262,0.00889856,0.260643,0.332108,0.233296,0.0477107,0.260847,0.898227,0.602102,0.968308,0.756163,0.617525,0.503933,0.672825,0.954101,0.936393,0.0904387,0.0759353,0.9329,0.691789,0.681459,0.255505,0.510461,0.734607,0.465493,0.837677,0.710694,0.272511,0.0640778,0.0216911,0.887626,0.909539,0.382161,0.448988,0.545114,0.926655,0.205718,0.608126,0.240734,0.0838535,0.630222,0.452865,0.599041,0.810318,0.370502,0.300232,0.960878,0.249839,0.275716,0.725778,0.419629,0.736304,0.952531,0.193233,0.976176,0.266744,0.83481,0.137315,0.159929,0.0096308,0.90457,0.786092,0.30226,0.198133,0.82163,0.368986,0.335069,0.939995,0.427995,0.874876,0.0546028,0.155286,0.474278,0.688592,0.506003,0.568063,0.613662,0.88115,0.792791,0.329963,0.203364,0.592817,0.99711,0.0929855,0.737371,0.477578,0.646347,0.162217,0.22056,0.489075,0.653654,0.723728,0.145131,0.415153,0.579454,0.63041,0.72856,0.452066,0.351199,0.260803,0.722569,0.773367,0.844261,0.81843,0.449284,0.00061512,0.0961429,0.154035,0.698771,0.983897,0.637645,0.953748,0.801726,0.759621,0.866029,0.394153,0.279023,0.612285,0.846473,0.146897,0.33547,0.517725,0.921205,0.14344,0.176581,0.308693,0.989681,0.812659,0.395309,0.138491,0.736675,0.100636,0.127549,0.816707,0.668678,0.612269,0.284205,0.870026,0.501231,0.289106,0.840201,0.811379,0.0386608,0.611064,0.411069,0.0862697,0.392784,0.681415,0.399681,0.44648,0.583042,0.732656,0.155235,0.80378,0.0767167,0.24372,0.131672,0.726607,0.193232,0.812626,0.514929,0.315652,0.0835925,0.0559425,0.523605,0.858371,0.680814,0.113847,0.936469,0.756971,0.311236,0.0922613,0.88139,0.824409,0.657495,0.470643,0.836446,0.952948,0.203415,0.357542,0.00322586,0.999354,0.05087,0.680854,0.42601,0.284991,0.113337,0.333512,0.860802,0.909758,0.73278,0.813487,0.594922,0.912756,0.710163,0.561469,0.182397,0.154976,0.761587,0.540121,0.128595,0.498915,0.158942,0.362999,0.864886,0.439278,0.315149,0.481406,|0.813702,0.0902951,0.60978,0.290589,0.226271,0.124234,0.508761,0.784092,0.14696,0.380755,0.546371,0.337078,0.656301,0.560549,0.3077,0.757877,0.393799,0.746016,0.66304,0.802287,0.52359,0.119851,0.0623414,0.964757,0.457326,0.686717,0.0278241,0.911444,0.638633,0.293167,0.664257,0.544966,0.550208,0.0353058,0.324554,0.659506,0.784289,0.651957,0.577927,0.0214292,0.14766,0.379853,0.19528,0.695876,0.467572,0.850208,0.645385,0.283461,0.31574,0.968901,0.217293,0.840061,0.813468,0.335914,0.60586,0.894365,0.350454,0.121183,0.829532,0.220037,0.912896,0.452495,0.567956,0.0987924,0.0384242,0.694789,0.807246,0.295896,0.0307031,0.690335,0.24111,0.5348,0.132076,0.553973,0.78004,0.394583,0.587425,0.639617,0.365759,0.60667,0.659109,0.0465412,0.969057,0.555693,0.7289,0.479383,0.704342,0.017538,0.768532,0.416988,0.738763,0.233898,0.0473124,0.872661,0.917943,0.986052,0.230693,0.369796,0.0329864,0.933753,0.129607,0.882698,0.374617,0.11257,0.2795,0.129822,0.895691,0.401449,0.102251,0.369673,0.048507,0.0377495,0.913141,0.65074,0.611014,0.831844,0.124035,0.474079,0.484678,0.624,0.339148,0.440742,0.612197,0.0821122,0.452731,0.0370923,0.722825,0.0318231,0.28942,0.813859,0.329886,0.641962,0.096096,0.25967,0.438858,0.0492189,0.100248,0.216197,0.127131,0.125581,0.256492,0.185657,0.948275,0.199484,0.437886,0.293124,0.630344,0.392624,0.885661,0.870676,0.87388,0.379216,0.75236,0.930182,0.461468,0.10175,0.432197,0.636762,0.0892422,0.773172,0.549921,0.685151,0.748,0.276923,0.613278,0.776182,0.623225,0.122843,0.194356,0.260295,0.676413,0.341014,0.629049,0.81504,0.674924,0.425368,0.539328,0.15577,0.246691,0.710963,0.586989,0.924232,0.462852,0.178549,0.199688,0.50665,0.385518,0.433196,0.574472,0.0286897,0.782739,0.433347,0.502675,0.226912,0.243212,0.917487,0.585739,0.810671,0.794638,0.264538,0.690523,0.0299132,0.422531,0.710678,0.680998,0.762524,0.538155,0.991924,0.778265,0.473255,0.410219,0.21351,0.746959,0.300428,0.980312,0.742431,0.730697,0.549645,0.954399,0.531473,0.335777,0.278884,0.239462,0.0767531,0.12646,0.238808,0.482735,0.0600663,0.847432,0.136233,0.608416,0.823139,0.408942,0.233087,0.480898,0.705951,0.151871,0.0740709,0.424376,0.855349,0.590681,0.884354,0.328114,0.455319,0.933329,0.181406,0.660921,0.211238,0.15092,0.711681,0.31108,0.558168,0.378313,0.0871571,0.996086,0.936843,0.814599,0.345525,0.412424,0.943668,0.163046,0.118436,0.153847,0.949399,0.946988,0.452907,0.892298,0.346657,0.20002,0.941572,0.43508,0.974099,0.925945,0.955923,0.357127,0.643591,0.20079,0.769504,0.527235,0.80818,0.648016,0.326079,0.423774,0.626884,0.255822,0.0207128,0.717254,0.993449,0.136858,0.98617,0.957254,0.445503,0.761008,0.369955,0.213236,0.672673,0.60893,0.363732,0.593735,0.0842892,0.620993,0.0425047,0.893141,0.40641,0.417003,0.650975,0.889136,0.605752,0.379893,0.907568,0.133655,0.0392724,0.437719,0.275393,0.574321,0.229799,0.368664,0.285352,0.0721072,0.906361,0.920883,0.901742,0.976948,0.957841,0.655468,0.68917,0.0193304,0.78081,0.654195,0.522184,0.860265,0.892174,0.672469,0.393784,0.0544077,0.536168,0.571208,0.979112,0.460916,0.945213,0.460655,0.337945,0.812047,0.469463,0.59506,0.399091,0.320523,0.278696,0.0784438,0.896055,0.438446,0.0111455,0.773682,0.800098,0.435298,0.441705,0.449452,0.344691,0.172114,0.0106509,0.589956,0.243795,0.524181,0.239652,0.569714,0.193639,0.722329,0.576762,0.641725,0.796738,0.26008,0.277993,0.603415,0.317744,0.125648,0.142984,0.723856,0.191423,0.728275,0.879548,0.971954,0.551521,0.439139,0.125282,0.20047,0.869663,0.0964901,0.281882,0.977794,0.336453,0.968148,0.759978,0.123947,0.697456,0.573928,0.994265,0.0291607,0.0111799,0.873717,0.531147,0.609919,0.421665,0.340783,0.606272,0.471474,0.892888,0.720366,0.0882603,0.899817,0.391785,0.0760819,0.933293,0.904491,0.446845,0.527122,0.67487,0.775079,0.61479,0.559696,0.990726,0.972774,0.49913,0.935912,0.723348,0.104726,0.603731,0.745669,0.943301,0.472885,0.824721,0.95822,0.656169,0.0539515,0.782693,0.976692,0.349687,0.0532589,0.536896,0.0842589,0.71627,0.564773,0.844329,0.0745423,0.861324,0.354006,0.73408,0.769063,0.594472,0.744618,0.115077,0.047244,0.789096,0.0743539,0.25684,0.729794,0.994113,0.628818,0.640425,0.146053,0.63199,0.857714,0.0482584,0.2999,0.562806,0.527263,0.555027,0.509586,0.551036,0.835657,0.30831,0.0457402,0.311494,0.0836248,0.680785,0.628688,0.625765,0.464585,0.195751,0.478287,0.485117,0.98538,0.084057,0.37849,0.392022,0.475166,0.514757,0.133169,0.0842433,0.0212643,0.607882,0.321687,0.499812,0.127866,0.0679907,0.395695,0.537145,0.607281,0.82477,0.625074,0.241559,0.37285,0.421022,0.988876,0.584312,0.471483,0.705153,0.714518,0.50586,0.998098,0.0460367,0.997873,0.946449,0.739804,0.784117,0.769792,0.35018,0.762176,0.724738,0.126531,0.706539,0.495197,0.772928,0.529657,0.190182,0.449235,0.738496,0.799648,0.832947,0.486486,0.559362,0.408307,0.401857,0.223886,0.80311,0.874461,0.96402,0.647086,0.744663,0.429662,0.29093,0.141011,0.658732,0.411308,0.571143,0.103549,0.915095,0.459281,0.24731,0.591006,0.086064,0.518574,0.963979,0.233165,0.689155,0.167908,0.498205,0.549615,0.375674,0.999657,0.784044,0.446115,0.589303,0.227659,0.555913,0.223576,0.509412,0.168906,0.870581,0.699045,0.539369,0.757489,0.396476,0.361936,0.999507,0.377131,0.901823,0.0822071,0.520347,0.368011,0.773538,0.82064,0.180032,0.308255,0.0954178,0.0959448,0.295507,0.913387,0.0460506,0.877343,0.199458,0.135784,0.597094,0.444955,0.120215,0.512491,0.312472,0.541098,0.114795,0.964373,0.915631,0.666363,0.190145,0.709305,0.150109,0.108728,0.372359,0.832751,0.2144,0.375124,0.600142,0.641096,0.219844,0.193061,0.782681,0.879435,0.100912,0.84084,0.486418,0.174566,0.496509,0.0836537,0.463502,0.903198,0.882899,0.0525605,0.0210612,0.122289,0.515611,0.248562,0.0170287,0.592816,0.874122,0.549652,0.00275266,0.810598,0.716142,0.44121,0.865167,0.648395,0.95024,0.788186,0.320854,0.207512,0.52024,0.705416,0.0580685,0.682701,0.204081,0.732734,0.571955,0.763544,0.54642,0.579247,0.850219,0.237583,0.203262,0.638309,0.370296,0.421284,0.759578,0.495142,0.889191,0.0996011,0.00715303,0.942603,0.314129,0.212926,0.206499,0.701962,0.384593,0.862115,0.1917,0.880951,0.945195,0.621975,0.362506,0.348166,0.434719,0.467748,0.62565,0.418137,0.871696,0.641679,0.48133,0.656177,0.298049,0.723131,0.878286,0.823638,0.232971,0.134177,0.0827451,0.69049,0.196929,0.429502,0.534931,0.678884,0.928302,0.376173,0.0532697,0.884396,0.935672,0.385343,0.335024,0.666338,0.347481,0.883631,0.0425348,0.589957,0.868346,0.574347,0.530251,0.616033,0.389003,0.934374,0.136872,0.128295,0.948528,0.142804,0.0405073,0.978935,0.678347,0.0379253,0.260282,0.510267,0.849695,0.18619,0.794366,0.910886,0.636009,0.801881,0.345768,0.080112,0.272709,0.111435,0.188021,0.291353,0.657221,0.684526,0.392272,0.603642,0.218129,0.105987,0.372725,0.114737,0.137374,0.764205,0.252951,0.317824,0.904736,0.154538,0.20257,0.484232,0.600413,0.330318,0.100092,0.680011,0.298505,0.123227,0.652109,0.463806,0.537084,0.220786,0.35377,0.996854,0.921634,0.233603,0.940271,0.0400366,0.495078,0.983434,0.533979,0.225512,0.594759,0.679532,0.0501944,0.35482,0.0169623,0.332466,0.111331,0.0230396,0.0717382,0.230346,0.273605,0.0756521,0.414185,0.443661,0.319669,0.466999,0.786515,0.215721,0.0259421,0.661792,0.651876,0.483055,0.904022,0.0857481,0.0817062,0.206519,0.19011,0.628032,0.601316,0.47076,0.506549,0.62803,0.311543,0.0860651,0.622853,0.721155,0.836451,0.978571,0.934646,0.103563,0.508604,0.660284,0.649667,0.995156,0.767621,0.0799451,0.523277,0.936179,0.376793,0.834256,0.376454,0.18771,0.926959,0.219071,0.598723,0.194884,0.980782,0.176658,0.651975,0.31747,0.247007,0.208445,0.775373,0.42449,0.393632,0.245458,0.109392,0.0381343,0.432372,0.139802,0.477155,0.865621,0.224395,0.455013,0.419595,0.825548,0.446738,0.251197,0.308316,0.337755,0.267194,0.239671,0.988484,0.210241,0.602744,0.576815,0.561468,0.526141,0.803873,0.712,0.186319,0.866486,0.130615,0.753584,0.162853,0.239408,0.77785,0.972195,0.0465145,0.519952,0.338605,0.658618,0.30163,0.775761,0.111119,0.512207,0.176099,0.937096,0.632222,0.285313,0.0495113,0.119521,0.685659,0.742444,0.621875,0.991113,0.82997,0.601888,0.203563,0.0856015,0.475032,0.144581,0.893227,0.400447,0.41229,0.380386,0.541155,0.431595,0.641904,0.838783,0.604387,0.961289,0.347843,0.296299,0.371897,0.713892,0.648274,0.2405,0.541385,0.565512,0.893277,0.611328,0.257924,0.16981,0.708665,0.094238,0.65781,0.158572,0.939766,0.824116,0.364916,0.250206,0.577179,0.855071,0.99654,0.630684,0.774866,0.162326,0.875391,0.893554,0.791092,0.710472,0.642067,0.709791,0.153055,0.806785,0.771576,0.72256,0.18657,0.887026,0.0154198,0.701517,0.00953966,0.918305,0.697535,0.447698,0.763064,0.982028,0.280903,0.00436288,0.840708,0.777738,0.911891,0.375267,0.413716,0.0015803,0.264286,0.9577,0.309995,0.91497,0.288677,0.471912,0.609143,0.820968,0.658131,0.155774,0.262904,0.97814,0.690845,0.29519,0.226804,0.0917398,0.30631,0.978974,0.168812,0.536246,0.297537,0.128589,0.722144,0.0685925,0.511773,0.703412,0.605888,0.368532,0.204306,0.199723,0.836446,0.356389,0.388535,0.345597,0.301597,0.0234742,0.0175487,0.161941,0.932399,0.627137,0.430957,|0.710378,0.459755,0.751104,0.336442,0.852624,0.673332,0.939455,0.314709,0.405593,0.79313,0.318944,0.716114,0.990439,0.104659,0.815427,0.555517,0.736205,0.129516,0.310635,0.448558,0.471004,0.880891,0.136876,0.835234,0.451423,0.739081,0.744106,0.69411,0.969301,0.978097,0.716706,0.730141,0.274672,0.676628,0.600211,0.775526,0.477241,0.899006,0.877368,0.612513,0.240176,0.773061,0.329765,0.79078,0.190656,0.0470694,0.433731,0.300305,0.298805,0.761989,0.669608,0.624721,0.584729,0.688894,0.750812,0.830103,0.327627,0.389142,0.260335,0.813619,0.710458,0.66911,0.262042,0.433446,0.71935,0.431437,0.554031,0.309715,0.599675,0.00310475,0.65467,0.731499,0.401936,0.310397,0.477375,0.635095,0.528776,0.507774,0.261186,0.154869,0.755742,0.906225,0.65491,0.0400152,0.56429,0.0117582,0.183645,0.735009,0.834247,0.580247,0.416966,0.151207,0.0672413,0.288746,0.504174,0.326755,0.639084,0.433343,0.526937,0.59249,0.680346,0.647785,0.778787,0.179905,0.996067,0.349698,0.890247,0.056685,0.579981,0.13202,0.556374,0.517649,0.35245,0.394694,0.921421,0.482074,0.480241,0.953654,0.62635,0.220107,0.944413,0.615894,0.90498,0.958166,0.47844,0.816658,0.521486,0.63318,0.532496,0.146667,0.611959,0.363976,0.809037,0.291291,0.526035,0.255984,0.723446,0.768963,0.749051,0.553216,0.689964,0.169373,0.757649,0.316583,0.318122,0.586856,0.557787,0.788034,0.638026,0.204136,0.1449,0.760559,0.723068,0.889165,0.20226,0.627528,0.065161,0.0411619,0.313634,0.770015,0.00232625,0.368552,0.879952,0.090465,0.715485,0.796498,0.0286148,0.273411,0.441002,0.565056,0.518559,0.246777,0.289514,0.23898,0.950269,0.171423,0.706338,0.250743,0.74027,0.0374741,0.80945,0.0836181,0.457143,0.911258,0.551071,0.142333,0.256078,0.197364,0.243882,0.446534,0.361398,0.339289,0.4921,0.601266,0.0171914,0.611488,0.574386,0.607804,0.188253,0.165958,0.344512,0.628424,0.822324,0.115778,0.989856,0.851187,0.494318,0.00834614,0.773227,0.670485,0.378651,0.794288,0.261038,0.491911,0.824101,0.0168729,0.0871071,0.110566,0.140956,0.0764574,0.959642,0.514844,0.891426,0.248178,0.102647,0.421323,0.800536,0.810098,0.0817176,0.723048,0.104512,0.851863,0.701363,0.0559223,0.121706,0.228373,0.503026,0.611079,0.0170782,0.932909,0.999842,0.272501,0.170174,0.112319,0.0144942,0.478844,0.353286,0.876237,0.312706,0.952772,0.776429,0.365039,0.542155,0.199954,0.0154553,0.971503,0.323239,0.665685,0.325154,0.649582,0.333466,0.122561,0.374378,0.665484,0.667278,0.317522,0.208864,0.109361,0.49092,0.729319,0.483648,0.180479,0.817653,0.948131,0.934892,0.152674,0.420788,0.851541,0.467379,0.277843,0.393514,0.163111,0.770119,0.92024,0.57411,0.0859964,0.031067,0.777048,0.767391,0.985733,0.440345,0.735208,0.0478962,0.57813,0.574769,0.748773,0.042447,0.0830182,0.866988,0.19887,0.775943,0.245034,0.121286,0.372719,0.550319,0.00454265,0.627262,0.245538,0.638488,0.0941704,0.70448,0.637845,0.601136,0.835828,0.423464,0.128055,0.122246,0.964639,0.83348,0.414501,0.434736,0.681639,0.824612,0.959477,0.314489,0.540827,0.80332,0.715869,0.574993,0.600981,0.799822,0.642293,0.508163,0.129203,0.0593242,0.518268,0.278543,0.426808,0.0379174,0.91157,0.648087,0.641607,0.896934,0.327416,0.953858,0.908418,0.996035,0.763817,0.283841,0.41272,0.284531,0.034672,0.127667,0.614943,0.449003,0.125946,0.205895,0.248848,0.311912,0.845807,0.866641,0.558378,0.392741,0.326875,0.114484,0.0998971,0.965549,0.494263,0.846204,0.25866,0.726494,0.883971,0.0871333,0.960829,0.376332,0.0698514,0.841999,0.296488,0.929983,0.249328,0.825769,0.414889,0.312602,0.97,0.589989,0.443118,0.60837,0.973839,0.610989,0.674942,0.593187,0.279173,0.122636,0.436547,0.220928,0.269413,0.0708425,0.973717,0.0791243,0.138375,0.00919241,0.515543,0.595793,0.369176,0.854728,0.372708,0.497302,0.287902,0.647404,0.207447,0.920491,0.49884,0.100645,0.736657,0.40241,0.137293,0.216795,0.670076,0.2197,0.638189,0.625692,0.528742,0.81721,0.86566,0.551127,0.294267,0.623998,0.402166,0.0559223,0.807377,0.118375,0.163459,0.121869,0.212569,0.553312,0.829856,0.258853,0.179107,0.792987,0.232968,0.536925,0.783686,0.478333,0.508151,0.323556,0.826153,0.216106,0.636548,0.00946295,0.298312,0.231117,0.421276,0.552778,0.380246,0.0838649,0.0050962,0.719315,0.462902,0.83628,0.803996,0.256954,0.938678,0.0677733,0.838982,0.971548,0.559912,0.833505,0.0216614,0.195797,0.558766,0.874732,0.811876,0.491814,0.184496,0.0905769,0.69441,0.916703,0.0618842,0.316289,0.0869021,0.445899,0.683805,0.0978253,0.657125,0.458509,0.895694,0.14813,0.563166,0.194401,0.644329,0.252616,0.532401,0.861861,0.127053,0.814707,0.746872,0.995555,0.83187,0.0380248,0.211501,0.803935,0.502493,0.820572,0.277066,0.835037,0.243257,0.0162444,0.664469,0.765674,0.867416,0.140875,0.851974,0.220141,0.746202,0.984897,0.299768,0.0512289,0.945278,0.859401,0.72761,0.835299,0.882454,0.382726,0.845982,0.371698,0.846547,0.0630989,0.498204,0.249115,0.919639,0.0597739,0.704669,0.975611,0.377438,0.208062,0.358191,0.937022,0.440885,0.902567,0.204509,0.0998002,0.806921,0.471157,0.607138,0.993078,0.60942,0.452263,0.0647458,0.600784,0.389425,0.0493559,0.118817,0.748223,0.961603,0.574288,0.848448,0.514601,0.242213,0.753903,0.885847,0.857779,0.721398,0.636114,0.363842,0.65476,0.971879,0.78421,0.351872,0.535364,0.979196,0.0959511,0.498463,0.197887,0.868984,0.193514,0.710768,0.786135,0.847642,0.076806,0.527927,0.449737,0.277049,0.735813,0.483374,0.0608445,0.415733,0.933451,0.458371,0.803059,0.347466,0.322095,0.45046,0.27938,0.960621,0.722024,0.341795,0.517772,0.732482,0.123904,0.938553,0.108629,0.613282,0.107449,0.0833449,0.70125,0.477517,0.620586,0.699495,0.634981,0.336751,0.693589,0.711124,0.771624,0.973156,0.468564,0.335521,0.0234591,0.248308,0.666893,0.652949,0.76807,0.752936,0.110507,0.334409,0.702319,0.989736,0.94841,0.0794123,0.457454,0.0451921,0.194796,0.921475,0.546206,0.446319,0.679574,0.678078,0.992343,0.188119,0.990313,0.57278,0.936799,0.129374,0.834154,0.575268,0.316789,0.10814,0.845242,0.951452,0.797008,0.10674,0.83639,0.975214,0.53295,0.506344,0.746972,0.106101,0.914896,0.277959,0.338782,0.0322117,0.244619,0.289629,0.079872,0.0251549,0.413223,0.575978,0.549102,0.121374,0.265958,0.171001,0.656694,0.635945,0.821804,0.80424,0.749971,0.778857,0.404365,0.0884643,0.606793,0.496873,0.091997,0.440485,0.960708,0.87312,0.863144,0.363241,0.985902,0.385316,0.623302,0.221839,0.438878,0.381153,0.205254,0.270236,0.706959,0.0175208,0.354457,0.0946214,0.402359,0.343097,0.430718,0.306696,0.43888,0.720537,0.457625,0.773237,0.532278,0.0738635,0.461594,0.802114,0.266378,0.616226,0.96843,0.488318,0.180031,0.0380737,0.331327,0.26633,0.622504,0.645834,0.603922,0.436943,0.682537,0.69891,0.444494,0.0284349,0.240728,0.0593291,0.915595,0.264681,0.680507,0.75451,0.644216,0.255786,0.356014,0.85821,0.764475,0.13541,0.206255,0.456993,0.829957,0.13385,0.918675,0.786087,0.476504,0.0739197,0.729066,0.233178,0.442656,0.310528,0.939405,0.593043,0.826474,0.182817,0.172249,0.894995,0.786511,0.80814,0.729152,0.711091,0.526499,0.843021,0.828269,0.253396,0.757108,0.0958031,0.012845,0.98256,0.505998,0.0516775,0.570753,0.00643373,0.0971169,0.705202,0.16891,0.956313,0.996061,0.181778,0.0386413,0.647147,0.892078,0.911269,0.612209,0.65232,0.559141,0.252876,0.590584,0.699452,0.0434164,0.59222,0.310291,0.434741,0.101045,0.757096,0.0194597,0.14962,0.0363942,0.00132471,0.722392,0.927633,0.912285,0.544031,0.647858,0.633673,0.0252299,0.970035,0.128071,0.993732,0.649721,0.633252,0.626824,0.165181,0.0101417,0.0472078,5.93066e-05,0.456615,0.0913967,0.821099,0.483943,0.293789,0.643433,0.803043,0.0844515,0.765447,0.13212,0.500974,0.451493,0.368336,0.821614,0.676934,0.624186,0.249225,0.779648,0.122886,0.123425,0.814865,0.934888,0.206506,0.225373,0.213254,0.572337,0.787523,0.164586,0.723012,0.778689,0.99982,0.157264,0.20568,0.288393,0.182895,0.491879,0.870304,0.816799,0.0618568,0.611665,0.849482,0.876382,0.395168,0.292364,0.108377,0.737881,0.1289,0.213659,0.0193179,0.84808,0.465911,0.387549,0.408283,0.00122112,0.172763,0.0341575,0.584318,0.332601,0.161212,0.897252,0.230192,0.552502,0.852159,0.211526,0.573864,0.152431,0.423243,0.47349,0.873255,0.26034,0.316651,0.618639,0.995043,0.716722,0.103622,0.0503525,0.838183,0.829439,0.564094,0.780055,0.345028,0.472268,0.799286,0.59255,0.018335,0.0307581,0.886783,0.0293465,0.293224,0.911286,0.419623,0.913442,0.940553,0.498265,0.649098,0.195626,0.513313,0.961595,0.47013,0.0661475,0.448533,0.772111,0.0366608,0.581933,0.534913,0.0951515,0.226529,0.742302,0.431624,0.783604,0.300497,0.104185,0.213389,0.81654,0.00490606,0.330993,0.565109,0.0561202,0.339659,0.98765,0.812303,0.334497,0.69485,0.975048,0.699756,0.332719,0.370636,0.643021,0.33802,0.790481,0.693409,0.170401,0.465625,0.823984,0.733535,0.528788,0.146539,0.97945,0.613608,0.264076,0.20302,0.850692,0.0881909,0.577162,0.628801,0.605362,0.572931,0.745385,0.106588,0.724269,0.920018,0.344946,0.611647,0.679895,0.130902,0.501762,0.0790974,0.950187,0.00279361,0.911023,0.372235,0.0906962,0.808281,0.68992,0.904196,0.403894,0.795178,0.70138,0.944181,0.266871,0.532471,0.712113,0.989072,0.868205,0.220232,0.246805,0.99087,0.894394,0.474937,0.167261,0.464131,0.613929,0.560527,0.179483,0.219979,|0.342667,0.305581,0.0980139,0.999439,0.498903,0.641646,0.343545,0.893227,0.346135,0.642492,0.862517,0.349754,0.450465,0.428377,0.0167105,0.0413815,0.535088,0.266538,0.231478,0.71692,0.196075,0.436259,0.810084,0.44644,0.252764,0.00720572,0.73293,0.781293,0.446277,0.297635,0.552417,0.635228,0.108259,0.990518,0.908974,0.795995,0.295027,0.043083,0.0934547,0.892328,0.728683,0.536822,0.80918,0.21812,0.695752,0.632193,0.722777,0.136594,0.326781,0.427039,0.545208,0.670825,0.513478,0.517634,0.196902,0.756377,0.844241,0.733684,0.132672,0.537324,0.241627,0.226124,0.579678,0.323204,0.90016,0.241743,0.705084,0.445154,0.109045,0.554605,0.858014,0.842517,0.172937,0.137389,0.947949,0.0800382,0.861309,0.589985,0.181054,0.269955,0.217128,0.569188,0.56741,0.860598,0.567416,0.191128,0.495154,0.530097,0.358934,0.886687,0.699969,0.301721,0.400118,0.976998,0.0915651,0.455108,0.220616,0.783899,0.897231,0.311773,0.472972,0.646787,0.46569,0.0226659,0.583795,0.0751271,0.164153,0.0646349,0.431659,0.164434,0.473007,0.710375,0.544046,0.760985,0.781914,0.0813738,0.496368,0.112951,0.816961,0.0842969,0.401775,0.903915,0.969651,0.373124,0.760116,0.664935,0.552743,0.147253,0.26765,0.369148,0.00523895,0.271163,0.222314,0.812868,0.545236,0.786839,0.955119,0.575485,0.616577,0.515321,0.968189,0.692561,0.364014,0.351973,0.131995,0.478196,0.787471,0.805613,0.274247,0.0736089,0.130678,0.139166,0.647274,0.733519,0.421085,0.423391,0.795806,0.000193715,0.747144,0.217091,0.904361,0.765827,0.555936,0.966376,0.271416,0.851101,0.670887,0.804233,0.369812,0.636184,0.660813,0.938514,0.0184805,0.815158,0.594723,0.668193,0.904033,0.293707,0.237122,0.78666,0.832675,0.193388,0.658102,0.781322,0.675497,0.132247,0.796075,0.804726,0.114441,0.723693,0.833145,0.343458,0.372792,0.505636,0.714338,0.131809,0.190068,0.31143,0.584303,0.0471446,0.527641,0.652914,0.896626,0.870008,0.274604,0.0682848,0.882242,0.888279,0.724233,0.316897,0.599205,0.256179,0.833479,0.336136,0.760352,0.563742,0.0132613,0.207413,0.764567,0.127374,0.0923469,0.269577,0.752701,0.553087,0.911529,0.401699,0.208944,0.57074,0.792526,0.0255104,0.523753,0.194155,0.93741,0.731494,0.705732,0.848872,0.478377,0.140682,0.174258,0.832761,0.274117,0.878287,0.644848,0.0993868,0.650666,0.639035,0.236136,0.221343,0.89243,0.877219,0.177491,0.78322,0.732476,0.71215,0.0241324,0.955036,0.691268,0.925839,0.380719,0.772267,0.62822,0.687499,0.819192,0.143399,0.762618,0.327532,0.0884274,0.050621,0.102097,0.738679,0.895776,0.0311339,0.718377,0.0101844,0.95157,0.77002,0.197876,0.566339,0.170202,0.237252,0.410358,0.0617456,0.266661,0.475951,0.130554,0.601862,0.168675,0.842513,0.558318,0.763709,0.042224,0.614379,0.654821,0.453574,0.147347,0.047513,0.286763,0.436839,0.32144,0.600163,0.679144,0.347798,0.55457,0.52477,0.593424,0.859176,0.137141,0.989181,0.0736682,0.292918,0.318984,0.894109,0.731881,0.81755,0.27759,0.242883,0.622442,0.143609,0.318191,0.528815,0.397966,0.887737,0.292435,0.231801,0.438833,0.298455,0.239199,0.964804,0.577217,0.0862046,0.860577,0.756672,0.923984,0.840842,0.800299,0.754986,0.131227,0.116366,0.889867,0.283392,0.278444,0.725572,0.834956,0.71361,0.875116,0.093524,0.471549,0.992182,0.606408,0.482036,0.782927,0.23971,0.393834,0.469226,0.729789,0.787768,0.565936,0.7649,0.092084,0.505311,0.509918,0.83561,0.102666,0.986351,0.790388,0.0986359,0.218457,0.794341,0.412542,0.513274,0.943274,0.235628,0.250044,0.212258,0.79027,0.142404,0.920611,0.273717,0.393152,0.601243,0.625978,0.370142,0.0485346,0.615395,0.21704,0.39077,0.998478,0.321653,0.259672,0.409636,0.612425,0.932952,0.706701,0.908935,0.51102,0.0549709,0.454692,0.976943,0.106268,0.747458,0.0843392,0.279359,0.564937,0.469264,0.635236,0.55326,0.190784,0.133233,0.0638207,0.528248,0.926604,0.63845,0.889259,0.67876,0.25322,0.47321,0.209366,0.199943,0.69861,0.728845,0.821029,0.637216,0.557482,0.702214,0.289728,0.737306,0.292185,0.0780334,0.514122,0.665718,0.774882,0.549801,0.406448,0.0250869,0.620318,0.0370777,0.160534,0.0343046,0.819228,0.689709,0.312977,0.70017,0.328651,0.791695,0.533571,0.0163208,0.328498,0.0574687,0.979513,0.287197,0.0859019,0.86392,0.815207,0.110875,0.768165,0.779585,0.886753,0.535404,0.350022,0.486037,0.954176,0.933141,0.989766,0.504206,0.858743,0.239465,0.407759,0.841676,0.680665,0.353732,0.411615,0.589245,0.636523,0.696467,0.0205784,0.799412,0.247649,0.125141,0.40019,0.624093,0.207718,0.851431,0.656599,0.100152,0.87813,0.817102,0.671827,0.508114,0.519169,0.693687,0.273684,0.203688,0.891701,0.642394,0.610918,0.386531,0.684282,0.887131,0.410057,0.450126,0.818696,0.0571425,0.904914,0.24522,0.683088,0.81819,0.00152034,0.95556,0.168064,0.0916182,0.249202,0.615563,0.253054,0.45954,0.653876,0.214944,0.767514,0.162755,0.474938,0.0779359,0.870726,0.237671,0.466668,0.475372,0.27523,0.271551,0.92326,0.486105,0.746423,0.0581852,0.0556124,0.518077,0.619063,0.411479,0.506648,0.527622,0.398906,0.63353,0.0544619,0.493964,0.448012,0.368871,0.618078,0.760164,0.696852,0.0862142,0.529097,0.0350258,0.233372,0.0858465,0.0347002,0.237717,0.416798,0.06752,0.643568,0.841116,0.951314,0.375304,0.867889,0.20825,0.974429,0.449777,0.861467,0.737682,0.0110916,0.404688,0.0381683,0.445824,0.352584,0.253167,0.357861,0.868857,0.135291,0.454681,0.683032,0.0439249,0.391935,0.46793,0.267041,0.648694,0.389335,0.313291,0.0535197,0.326173,0.502488,0.445098,0.255877,0.524175,0.10972,0.17261,0.319034,0.0576181,0.646864,0.99772,0.546479,0.920413,0.870659,0.633697,0.222786,0.406467,0.311417,0.266452,0.487829,0.69725,0.519173,0.0506166,0.467054,0.10037,0.811279,0.381745,0.460039,0.216917,0.754569,0.528566,0.880722,0.227177,0.703819,0.792567,0.609835,0.515993,0.791598,0.752663,0.670598,0.292321,0.33567,0.309752,0.935547,0.815346,0.345361,0.570997,0.118311,0.983451,0.0155761,0.527645,0.568234,0.134042,0.592035,0.71548,0.592106,0.0936156,0.46801,0.516184,0.260257,0.0238526,0.993682,0.0223176,0.0460603,0.93386,0.0130375,0.390545,0.74084,0.749777,0.975955,0.893421,0.410554,0.374085,0.396865,0.00690889,0.736964,0.993157,0.255135,0.417666,0.91747,0.803246,0.458701,0.788002,0.215324,0.959457,0.577686,0.0234895,0.960552,0.898209,0.928974,0.379112,0.301055,0.863505,0.797502,0.388886,0.498073,0.0281652,0.206111,0.621899,0.92502,0.263558,0.425144,0.0697846,0.356034,0.768127,0.0855348,0.198076,0.837083,0.067009,0.876563,0.117386,0.0927793,0.347266,0.877484,0.0157374,0.883153,0.930758,0.69429,0.345651,0.935956,0.998818,0.559092,0.874899,0.657634,0.752355,0.636457,0.584295,0.331999,0.386088,0.190368,0.696022,0.853104,0.0495737,0.311998,0.260669,0.222324,0.375822,0.768036,0.649293,0.640195,0.505197,0.570409,0.52294,0.229218,0.555905,0.284527,0.256217,0.563489,0.00667846,0.991368,0.393525,0.818835,0.25675,0.0714838,0.157769,0.612423,0.00661469,0.821543,0.223007,0.965924,0.939863,0.319528,0.94367,0.519855,0.706901,0.881138,0.186514,0.479279,0.377136,0.934195,0.243044,0.283217,0.0486314,0.512596,0.905426,0.337499,0.518464,0.558043,0.824822,0.822272,0.866774,0.696192,0.201066,0.207264,0.260318,0.12388,0.0657706,0.837794,0.125313,0.632727,0.210751,0.262954,0.276577,0.218964,0.958553,0.214961,0.46669,0.752359,0.882747,0.544512,0.939189,0.421192,0.335472,0.166594,0.304141,0.453408,0.836379,0.501823,0.379913,0.221088,0.77846,0.0230761,0.720699,0.474747,0.67515,0.232356,0.316472,0.469746,0.801319,0.0758413,0.147752,0.053674,0.716258,0.811766,0.303266,0.737266,0.852773,0.326858,0.955225,0.793649,0.394255,0.415831,0.772228,0.0368947,0.623389,0.29751,0.976581,0.113356,0.201045,0.259728,0.464021,0.319926,0.89667,0.761147,0.734872,0.871251,0.103393,0.841266,0.944672,0.914867,0.969234,0.295817,0.801247,0.338329,0.773468,0.450214,0.754939,0.475547,0.101996,0.858695,0.165455,0.692795,0.246773,0.603415,0.672048,0.54973,0.670174,0.170141,0.830582,0.584165,0.694918,0.536007,0.491507,0.197418,0.490507,0.862581,0.988528,0.595579,0.755957,0.841436,0.777776,0.948787,0.298091,0.0408058,0.664971,0.0857041,0.966851,0.818557,0.0472956,0.902634,0.886027,0.570803,0.245717,0.434954,0.838479,0.3031,0.584749,0.58336,0.00512362,0.0312127,0.719484,0.452225,0.682797,0.694379,0.00417006,0.519233,0.360577,0.0777712,0.943066,0.547077,0.799018,0.278757,0.924785,0.768036,0.0389711,0.210428,0.045631,0.957133,0.426659,0.56737,0.0444382,0.48011,0.440923,0.0674095,0.68402,0.0850453,0.189137,0.321596,0.0643539,0.0479337,0.883585,0.856263,0.745657,0.296979,0.314098,0.450347,0.220558,0.717647,0.560048,0.233127,0.49429,0.187382,0.86655,0.98282,0.984578,0.435793,0.847185,0.633255,0.895426,0.218939,0.545506,0.509619,0.30973,0.180226,0.817193,0.352019,0.893891,0.258074,0.277727,0.994022,0.454843,0.830542,0.487381,0.0640348,0.891618,0.444609,0.378291,0.531495,0.228365,0.157122,0.587601,0.0680299,0.185564,0.511997,0.1509,0.997086,0.655971,0.282304,0.709207,0.189861,0.519864,0.302134,0.439299,0.985906,0.618244,0.656669,0.693933,0.719769,0.110988,0.472459,0.319495,0.556801,0.306355,0.944345,0.479926,0.294415,0.904686,0.0180569,0.430022,0.85218,0.502016,0.606056,0.604185,0.439948,0.765691,0.46527,0.306418,0.914005,0.217793,0.406265,0.412602,0.343789,0.575869,0.358202,0.439475,0.881095,0.529707,|0.040712,0.0869349,0.074107,0.521037,0.616992,0.582627,0.797463,0.351476,0.799307,0.470554,0.231781,0.618631,0.428748,0.932167,0.211059,0.520738,0.10129,0.0807569,0.206872,0.744103,0.593161,0.3381,0.00648183,0.939397,0.524837,0.430837,0.145808,0.95361,0.57706,0.0757061,0.408277,0.909499,0.845358,0.985308,0.101529,0.76885,0.812417,0.127267,0.585775,0.599473,0.249558,0.397476,0.557822,0.575722,0.607011,0.456633,0.285518,0.97338,0.0849445,0.787626,0.883096,0.0464487,0.345828,0.975775,0.0836792,0.77136,0.162037,0.267027,0.813118,0.275375,0.811923,0.998292,0.507128,0.337782,0.204066,0.00606799,0.594041,0.403029,0.730965,0.124023,0.00860339,0.0161118,0.26225,0.460403,0.418649,0.820829,0.305027,0.0179982,0.617037,0.943894,0.543628,0.981617,0.215183,0.140219,0.561275,0.580519,0.0647765,0.756377,0.843118,0.598862,0.927501,0.0359995,0.0219294,0.59111,0.997399,0.00988448,0.11889,0.61281,0.839233,0.0812207,0.22401,0.987493,0.120651,0.138055,0.876921,0.741879,0.412771,0.516679,0.548529,0.880609,0.726248,0.710898,0.500299,0.193726,0.448349,0.10185,0.943989,0.800523,0.859037,0.0646662,0.673783,0.300185,0.560341,0.132236,0.799184,0.93407,0.208054,0.626304,0.703086,0.736131,0.242967,0.9957,0.457454,0.296242,0.528726,0.0765835,0.707654,0.971411,0.306563,0.578568,0.834196,0.12618,0.0833212,0.732375,0.513829,0.984003,0.485761,0.752578,0.288991,0.597253,0.222827,0.384153,0.00462979,0.887515,0.305251,0.455483,0.700872,0.438553,0.443018,0.402166,0.791841,0.325955,0.726166,0.658482,0.858278,0.831923,0.0133697,0.381379,0.970203,0.0912927,0.216526,0.449451,0.230511,0.109226,0.314805,0.342626,0.448326,0.232703,0.0297161,0.572668,0.887962,0.73933,0.939054,0.866577,0.0853801,0.366284,0.116296,0.463358,0.254016,0.264317,0.637442,0.612442,0.337464,0.0294534,0.791096,0.587458,0.502127,0.994053,0.525894,0.164382,0.12324,0.360278,0.0716834,0.646473,0.965726,0.440337,0.64665,0.455041,0.327516,0.052123,0.530534,0.466347,0.600582,0.224008,0.677511,0.469628,0.984183,0.133512,0.542302,0.400077,0.0621959,0.547962,0.234425,0.102519,0.449341,0.69638,0.678389,0.178703,0.551147,0.266444,0.102934,0.411352,0.371932,0.675865,0.90788,0.029896,0.052103,0.284533,0.891155,0.589789,0.481515,0.340791,0.151213,0.734214,0.445818,0.537249,0.12058,0.118236,0.260813,0.218451,0.327827,0.134389,0.0707045,0.820031,0.522625,0.95071,0.432352,0.426066,0.14819,0.923457,0.945573,0.301423,0.587196,0.722886,0.154402,0.340069,0.717881,0.308158,0.648301,0.261187,0.839998,0.295805,0.803021,0.23374,0.401326,0.0489246,0.381159,0.953281,0.125982,0.669,0.799262,0.993646,0.848546,0.140607,0.384668,0.867143,0.819773,0.653668,0.926834,0.0750112,0.55811,0.417552,0.0152874,0.574846,0.183421,0.538692,0.273688,0.159408,0.535082,0.827517,0.658769,0.974697,0.260021,0.39953,0.61827,0.232558,0.334647,0.394324,0.943418,0.699769,0.544684,0.0867915,0.198866,0.911656,0.217176,0.281959,0.269351,0.785078,0.604926,0.147588,0.410172,0.240525,0.84088,0.932167,0.264374,0.652297,0.722211,0.963661,0.721954,0.691923,0.569645,0.945151,0.264235,0.718779,0.218265,0.613774,0.500023,0.442588,0.989542,0.408737,0.429516,0.0801897,0.838579,0.535783,0.136846,0.770919,0.0562198,0.668641,0.869595,0.872792,0.583813,0.479508,0.793753,0.0844769,0.734289,0.965727,0.453794,0.351274,0.164936,0.0256894,0.994362,0.380163,0.945802,0.0263838,0.998359,0.493643,0.241622,0.892221,0.0236667,0.13036,0.93973,0.487333,0.596897,0.931571,0.38837,0.128352,0.747626,0.887657,0.314719,0.0608805,0.70423,0.56722,0.191308,0.329303,0.721408,0.0289486,0.709481,0.360918,0.336001,0.381367,0.388803,0.587763,0.732159,0.316122,0.404595,0.530311,0.809895,0.899509,0.644631,0.943483,0.925174,0.482876,0.950876,0.515321,0.0762342,0.477319,0.0229753,0.395037,0.894851,0.891302,0.876776,0.781039,0.605967,0.494773,0.566894,0.161221,0.776569,0.549161,0.538093,0.206842,0.552114,0.670467,0.796632,0.356858,0.566634,0.849628,0.618124,0.84446,0.511775,0.595394,0.749959,0.311876,0.0257248,0.0254297,0.537648,0.805465,0.430923,0.051467,0.920108,0.209945,0.170155,0.635283,0.276696,0.487756,0.0805944,0.988159,0.964769,0.279412,0.115395,0.61769,0.983465,0.206254,0.390761,0.504794,0.959282,0.0323725,0.440599,0.282552,0.49438,0.967819,0.0304357,0.128853,0.963419,0.435843,0.0621413,0.736087,0.555782,0.979753,0.155761,0.42832,0.0163019,0.773808,0.912383,0.36551,0.106036,0.352065,0.721963,0.724719,0.000292301,0.782392,0.646282,0.411593,0.0412244,0.115285,0.030497,0.501494,0.157386,0.711908,0.607199,0.0878071,0.502506,0.609631,0.941422,0.0493994,0.96299,0.63408,0.384461,0.795482,0.791855,0.719679,0.782524,0.301387,0.371686,0.33896,0.702457,0.617931,0.00765568,0.44416,0.54109,0.767784,0.605096,0.940476,0.303159,0.902288,0.0287167,0.0574938,0.874894,0.455307,0.922646,0.269934,0.899368,0.565913,0.44041,0.21047,0.341919,0.687487,0.334579,0.252777,0.983962,0.472682,0.388954,0.357886,0.818706,0.0863314,0.959895,0.301889,0.774304,0.123672,0.00626582,0.777921,0.919378,0.454309,0.17706,0.565924,0.0398241,0.024481,0.494582,0.490668,0.765936,0.934661,0.906863,0.969559,0.315279,0.774303,0.380541,0.460944,0.00719345,0.832884,0.917632,0.79452,0.834106,0.0725673,0.176357,0.724941,0.721856,0.112349,0.762741,0.473506,0.669989,0.644083,0.231615,0.976818,0.636306,0.808641,0.201614,0.964903,0.863899,0.830533,0.418628,0.89521,0.674846,0.102305,0.491443,0.525989,0.940159,0.12942,0.880397,0.293694,0.466879,0.766094,0.927417,0.175872,0.38826,0.075431,0.939673,0.400406,0.927132,0.905741,0.597088,0.609271,0.854403,0.794725,0.905784,0.977658,0.25191,0.727197,0.360298,0.289752,0.0936369,0.777364,0.907076,0.684268,0.338253,0.534903,0.687838,0.89342,0.234831,0.343915,0.462063,0.328826,0.646092,0.680782,0.51841,0.368662,0.393022,0.107607,0.762712,0.320242,0.812506,0.182022,0.7846,0.277351,0.947871,0.687419,0.856442,0.685032,0.934927,0.542201,0.272093,0.199487,0.259938,0.569601,0.7782,0.382264,0.763653,0.755249,0.980098,0.285701,0.0324532,0.965042,0.788736,0.682095,0.551689,0.936996,0.761555,0.38287,0.825255,0.314422,0.388589,0.279704,0.535034,0.992827,0.89682,0.684099,0.534557,0.616401,0.445757,0.880099,0.20063,0.205957,0.278709,0.568753,0.476944,0.509,0.170374,0.563206,0.312295,0.445535,0.646399,0.27352,0.342079,0.948275,0.0491321,0.841225,0.931715,0.560325,0.69558,0.710117,0.11182,0.119886,0.557362,0.390673,0.0189577,0.0222754,0.514678,0.336219,0.513902,0.10757,0.889007,0.658897,0.566695,0.474259,0.472749,0.509627,0.488072,0.665191,0.832068,0.626175,0.143146,0.0613778,0.0622647,0.493924,0.221092,0.0216274,0.739076,0.421827,0.620361,0.0368078,0.27807,0.293261,0.632366,0.21643,0.762974,0.261461,0.910239,0.380383,0.340408,0.555901,0.84011,0.109574,0.239878,0.543838,0.87631,0.170776,0.730751,0.181973,0.55442,0.172279,0.1227,0.862858,0.739925,0.888713,0.917435,0.715418,0.927814,0.431375,0.982502,0.533462,0.510656,0.481101,0.606867,0.530192,0.169154,0.504793,0.678997,0.620199,0.766401,0.239089,0.0975499,0.687711,0.439503,0.502142,0.65312,0.264865,0.288083,0.571501,0.13567,0.927191,0.699214,0.501903,0.150355,0.961741,0.770537,0.483849,0.549422,0.674908,0.236679,0.910957,0.118032,0.111139,0.876774,0.171765,0.170697,0.811932,0.716577,0.272396,0.926088,0.728326,0.683535,0.395176,0.370442,0.138466,0.644312,0.124734,0.797568,0.521364,0.329475,0.523072,0.208694,0.892632,0.778631,0.506199,0.0483362,0.132829,0.176152,0.00393438,0.742392,0.161298,0.635147,0.00217456,0.534955,0.890064,0.460792,0.54592,0.17825,0.215638,0.740767,0.78796,0.974872,0.719066,0.0319963,0.452085,0.502509,0.747245,0.760959,0.714653,0.684238,0.938743,0.232443,0.188467,0.661821,0.448059,0.0639656,0.139864,0.230875,0.791609,0.57442,0.16032,0.489501,0.23887,0.710577,0.421006,0.31374,2.5034e-06,0.900061,0.296669,0.995189,0.41283,0.763453,0.157251,0.972679,0.828949,0.708533,0.264578,0.962608,0.435619,0.735671,0.85647,0.692405,0.824847,0.7314,0.665578,0.322381,0.638248,0.144378,0.870171,0.451779,0.230511,0.654268,0.233114,0.604385,0.979078,0.391395,0.657108,0.016761,0.171896,0.995126,0.782942,0.421418,0.0341702,0.117766,0.571716,0.299136,0.465478,0.53113,0.994447,0.853466,0.906987,0.509421,0.305477,0.862179,0.643041,0.145553,0.898685,0.0749982,0.252573,0.620573,0.585171,0.524228,0.769254,0.357056,0.950158,0.450635,0.139357,0.0475458,0.476284,0.200631,0.727625,0.982748,0.325862,0.433031,0.954063,0.831809,0.444106,0.43494,0.17607,0.69388,0.604312,0.737254,0.304606,0.837905,0.883423,0.989689,0.527789,0.936259,0.970663,0.00658941,0.0767595,0.984105,0.10214,0.809094,0.252603,0.453292,0.288927,0.578113,0.0194767,0.976375,0.897727,0.633139,0.479652,0.169779,0.807234,0.0330291,0.100362,0.424414,0.86457,0.177062,0.958233,0.138541,0.374377,0.0950564,0.730737,0.730576,0.182054,0.218192,0.0141942,0.250719,0.861231,0.683653,0.560593,0.276886,0.424133,0.975112,0.0356397,0.0995958,0.946835,0.675779,0.986237,0.765438,0.312078,0.0143562,0.293183,0.967423,0.465057,0.747577,0.755607,0.211295,0.928009,0.65707,0.286851,0.813932,0.456811,0.221725,0.278158,0.317383,0.641298,0.429717,0.0167437,0.327422,0.833258,0.965265,0.796672,0.527777,0.686539,0.0301887,0.440787,0.337016,0.418646,0.714996,0.686252,|0.60713,0.42829,0.83455,0.453812,0.409355,0.612399,0.446935,0.461143,0.487322,0.991711,0.362974,0.0956353,0.0595877,0.638863,0.767195,0.942092,0.373286,0.511711,0.433368,0.310834,0.149465,0.603463,0.887514,0.251377,0.203118,0.196048,0.38592,0.845434,0.733714,0.584959,0.97259,0.655277,0.808829,0.626206,0.300898,0.748325,0.285215,0.920435,0.775607,0.523605,0.709967,0.47762,0.823759,0.751329,0.816964,0.922063,0.948772,0.696902,0.918483,0.109496,0.204482,0.341924,0.771073,0.511799,0.963752,0.78772,0.788545,0.41226,0.56158,0.719378,0.920902,0.496832,0.215133,0.757099,0.601261,0.207918,0.0803056,0.635349,0.302992,0.481539,0.629716,0.639382,0.521708,0.418884,0.647329,0.579668,0.305337,0.758965,0.0631275,0.991535,0.453773,0.187099,0.00946128,0.226444,0.784153,0.384664,0.709876,0.545106,0.982122,0.466679,0.0941105,0.537501,0.764653,0.0820757,0.452231,0.154794,0.360372,0.843441,0.826473,0.514266,0.250949,0.727427,0.870875,0.571362,0.819197,0.360925,0.0444738,0.801465,0.10578,0.883887,0.276735,0.512494,0.980182,0.224175,0.81105,0.270278,0.703056,0.568744,0.11279,0.29793,0.661586,0.149203,0.0984604,0.212101,0.940516,0.262462,0.0140407,0.909192,0.182626,0.00791776,0.473649,0.277344,0.701137,0.773865,0.515882,0.181182,0.368915,0.136621,0.577333,0.0680099,0.278853,0.436433,0.625138,0.0876352,0.206573,0.60511,0.990317,0.170512,0.48886,0.543593,0.071103,0.720576,0.436771,0.17019,0.721048,0.484073,0.243032,0.912595,0.778196,0.328371,0.574865,0.795065,0.262606,0.0693801,0.416678,0.00120395,0.0217992,0.447213,0.485164,0.616716,0.84071,0.486844,0.996437,0.203406,0.0833635,0.094828,0.385149,0.396815,0.876038,0.373808,0.0236293,0.55752,0.894899,0.40331,0.210337,0.362692,0.842972,0.206729,0.0288067,0.89216,0.210925,0.468424,0.66349,0.463394,0.590431,0.548921,0.529666,0.462795,0.131285,0.402517,0.0552605,0.365189,0.851864,0.167651,0.635708,0.803051,0.362395,0.0565025,0.859514,0.393305,0.293283,0.911415,0.497466,0.903037,0.708292,0.669559,0.0830758,0.0682808,0.819054,0.216162,0.737143,0.260041,0.0531312,0.750481,0.379085,0.277706,0.660117,0.354664,0.0952492,0.0540012,0.223035,0.484821,0.511547,0.13032,0.205087,0.789802,0.261612,0.961622,0.878849,0.79483,0.529498,0.590201,0.50905,0.0686156,0.688356,0.801238,0.742467,0.868638,0.35698,0.534167,0.533229,0.230225,0.742036,0.697383,0.768388,0.0880555,0.360184,0.995246,0.383697,0.523895,0.726327,0.722989,0.99113,0.94145,0.383936,0.194628,0.699471,0.903621,0.433016,0.246332,0.0673546,0.540836,0.341866,0.678998,0.268751,0.352813,0.58551,0.408341,0.781561,0.354306,0.814178,0.183893,0.0307932,0.365674,0.56785,0.359775,0.373408,0.475228,0.250563,0.892215,0.162558,0.20254,0.910653,0.0702066,0.238255,0.632199,0.448489,0.278321,0.353519,0.642977,0.839036,0.0630836,0.199439,0.952393,0.911677,0.96219,0.603148,0.894144,0.71532,0.682648,0.0584209,0.492274,0.437718,0.738975,0.224034,0.880262,0.147563,0.735238,0.832612,0.757193,0.0300936,0.309934,0.907159,0.271152,0.391838,0.542011,0.0854058,0.203116,0.952273,0.118091,0.577363,0.933895,0.99007,0.550673,0.35511,0.838817,0.351872,0.852502,0.273643,0.545016,0.153855,0.703273,0.568255,0.048016,0.84578,0.325495,0.119246,0.862006,0.211257,0.562094,0.267854,0.889651,0.754337,0.715237,0.568076,0.109451,0.419086,0.0317444,0.518765,0.275323,0.8483,0.183458,0.885176,0.476684,0.14279,0.210653,0.693646,0.839382,0.720876,0.410501,0.804312,0.83109,0.85451,0.24589,0.0355396,0.385374,0.454935,0.331219,0.646812,0.36761,0.919473,0.127174,0.975712,0.288743,0.0186456,0.749747,0.447383,0.975283,0.988052,0.267545,0.419573,0.655135,0.632689,0.467653,0.583583,0.519355,0.490022,0.464033,0.496223,0.651963,0.0225364,0.694005,0.372004,0.746606,0.641755,0.422872,0.0983332,0.512992,0.25718,0.909782,0.570495,0.00515687,0.744788,0.12291,0.739937,0.201371,0.0424973,0.556862,0.0438627,0.438343,0.598347,0.26166,0.298835,0.734207,0.730555,0.291199,0.282809,0.532139,0.399633,0.108353,0.869609,0.23033,0.286613,0.531257,0.914241,0.20244,0.329826,0.685126,0.762537,0.00971848,0.299051,0.318029,0.936732,0.568836,0.892961,0.656059,0.943441,0.117892,0.851476,0.0802019,0.00275785,0.462636,0.094499,0.214188,0.300386,0.0400316,0.94754,0.674144,0.408632,0.87558,0.546576,0.688268,0.409521,0.56255,0.203911,0.415875,0.0567397,0.127584,0.508477,0.728361,0.0511932,0.35655,0.0435801,0.0349672,0.531049,0.823972,0.568787,0.362912,0.909603,0.425585,0.95976,0.796064,0.451363,0.368958,0.616723,0.0938131,0.545978,0.405728,0.368543,0.994735,0.802311,0.280897,0.399317,0.380297,0.731272,0.647629,0.724504,0.818778,0.442566,0.44326,0.271674,0.241848,0.809343,0.674873,0.689915,0.172462,0.610851,0.525627,0.751989,0.245486,0.0911077,0.861545,0.96527,0.167901,0.466027,0.550172,0.269388,0.59663,0.206101,0.496726,0.207246,0.196881,0.545252,0.747271,0.888428,0.681993,0.139107,0.178194,0.843558,0.707046,0.924355,0.0500517,0.00491649,0.351181,0.823967,0.467426,0.506906,0.712679,0.703891,0.619394,0.412085,0.204722,0.985013,0.924936,0.755317,0.62919,0.203284,0.540851,0.521351,0.835244,0.21403,0.405276,0.716335,0.405795,0.309993,0.689074,0.362652,0.452242,0.198901,0.921742,0.513198,0.814715,0.0197906,0.528496,0.834931,0.1466,0.780789,0.304116,0.915214,0.246493,0.0221742,0.189529,0.191854,0.518285,0.784872,0.289668,0.501186,0.767011,0.0353223,0.6027,0.991212,0.0353134,0.158898,0.503997,0.666683,0.527707,0.481113,0.545285,0.0350909,0.041831,0.985066,0.87609,0.389758,0.826649,0.178346,0.409669,0.200508,0.599085,0.122686,0.19278,0.878317,0.662926,0.30453,0.390033,0.288119,0.189876,0.657787,0.264465,0.969303,0.993526,0.568407,0.737374,0.984134,0.285627,0.547173,0.738463,0.408215,0.889708,0.733872,0.464163,0.392448,0.863447,0.0325502,0.439158,0.704739,0.48392,0.900008,0.89524,0.654831,0.458811,0.435369,0.575772,0.103878,0.513974,0.676356,0.13598,0.918908,0.61041,0.752869,0.26124,0.579279,0.272705,0.83775,0.224204,0.354594,0.405916,0.669144,0.176743,0.217606,0.291024,0.81411,0.540671,0.477465,0.0225223,0.922308,0.515568,0.0739466,0.944787,0.911966,0.155427,0.958099,0.650105,0.536101,0.892968,0.74353,0.434042,0.0222561,0.427852,0.797819,0.773248,0.247806,0.151646,0.837946,0.109388,0.607687,0.401274,0.68525,0.709053,0.212456,0.366559,0.145172,0.010262,0.801774,0.208275,0.197756,0.0900289,0.632992,0.366284,0.585073,0.764925,0.819387,0.00410271,0.128405,0.200423,0.467164,0.988852,0.887713,0.777881,0.769882,0.360338,0.414583,0.992888,0.536869,0.283709,0.475332,0.189961,0.686501,0.230404,0.579131,0.646049,0.272716,0.981668,0.727036,0.900539,0.303263,0.148145,0.823523,0.520563,0.434834,0.755414,0.0747914,0.307265,0.0303556,0.349971,0.925213,0.129734,0.700802,0.0128106,0.0337021,0.322509,0.29213,0.953335,0.566932,0.520872,0.0885307,0.727555,0.270087,0.934367,0.84808,0.583803,0.773725,0.28596,0.879839,0.372682,0.672892,0.912825,0.223497,0.254487,0.420642,0.518535,0.0246102,0.436195,0.400632,0.946387,0.10654,0.0570051,0.373622,0.993349,0.777031,0.2022,0.490649,0.402389,0.259319,0.32421,0.420804,0.292745,0.30045,0.467858,0.780661,0.562569,0.00943065,0.181799,0.669139,0.958382,0.234357,0.953392,0.830292,0.863143,0.36236,0.0451726,0.813935,0.321447,0.107606,0.745752,0.789873,0.610826,0.450752,0.188128,0.108083,0.991263,0.0855671,0.207202,0.475756,0.892764,0.425916,0.720242,0.186512,0.616698,0.142992,0.0193224,0.523969,0.0618719,0.634913,0.832612,0.502164,0.212423,0.0693103,0.0158862,0.272221,0.658396,0.869665,0.120227,0.903874,0.750092,0.309157,0.236656,0.78712,0.0562323,0.845032,0.216309,0.373826,0.736243,0.887791,0.698796,0.614757,0.377479,0.55912,0.460929,0.421802,0.721947,0.76145,0.928885,0.0439532,0.117095,0.57215,0.346304,0.851116,0.296555,0.739176,0.896405,0.112958,0.816101,0.519306,0.143989,0.615036,0.332562,0.547927,0.424361,0.695527,0.836086,0.305242,0.482383,0.368269,0.813,0.174002,0.198095,0.605626,0.474092,0.583935,0.779109,0.7941,0.800597,0.752852,0.518799,0.562797,0.319948,0.119384,0.496708,0.22521,0.47531,0.456107,0.776477,0.0207376,0.202086,0.978378,0.877127,0.313383,0.415811,0.831357,0.487153,0.631203,0.171647,0.748932,0.307278,0.965172,0.59141,0.130994,0.310874,0.196044,0.471109,0.222394,0.376263,0.931828,0.791363,0.15646,0.837944,0.343757,0.451533,0.961123,0.28002,0.0282721,0.475221,0.647102,0.00639379,0.881522,0.132761,0.665785,0.139616,0.450606,0.287916,0.834737,0.956904,0.26074,0.521797,0.537851,0.419832,0.921741,0.942644,0.0776265,0.271299,0.736927,0.940546,0.649001,0.0701861,0.050657,0.211062,0.490181,0.310009,0.910867,0.745423,0.619578,0.363326,0.567255,0.869053,0.971793,0.790094,0.137603,0.129742,0.819708,0.557329,0.410542,0.616791,0.240266,0.111241,0.0645537,0.233889,0.836463,0.40713,0.419855,0.679787,0.133285,0.108918,0.844523,0.139062,0.0943071,0.556688,0.995197,0.280702,0.4803,0.416931,0.245701,0.632638,0.674643,0.575362,0.874734,0.729367,0.554269,0.672693,0.244439,0.684611,0.551829,0.190721,0.200694,0.859406,0.206051,0.0511907,0.743143,0.691419,0.0288892,0.777264,0.941162,0.741332,0.184294,0.438079,0.0379257,0.76645,0.592155,0.215652,0.27502,0.809404,0.656317,0.562726,0.158266,0.377323,0.710268,0.785346,0.471318,0.880034,0.150488,0.0188878,|0.926584,0.217619,0.440116,0.0245191,0.319606,0.455106,0.30389,0.680201,0.983388,0.138765,0.0572649,0.111963,0.978086,0.0110765,0.756501,0.592311,0.7986,0.0277635,0.718442,0.239862,0.884823,0.424701,0.334762,0.765174,0.97824,0.500635,0.616052,0.278949,0.0194153,0.18406,0.66004,0.48501,0.0562981,0.0191758,0.863177,0.812095,0.563704,0.397846,0.48935,0.282899,0.897337,0.572169,0.00791883,0.228267,0.667316,0.304058,0.613379,0.747464,0.877808,0.442093,0.523389,0.124937,0.477482,0.0493816,0.751091,0.0125892,0.0827225,0.560405,0.636838,0.97288,0.0904332,0.721187,0.800003,0.364013,0.335826,0.669058,0.462201,0.764398,0.840046,0.864428,0.684876,0.317791,0.131043,0.807414,0.811407,0.574385,0.899787,0.897401,0.210449,0.323802,0.699978,0.90591,0.160559,0.918875,0.585743,0.802575,0.102144,0.285223,0.509004,0.15714,0.92288,0.0378249,0.917237,0.564811,0.27225,0.759137,0.345184,0.0325617,0.914781,0.205528,0.759348,0.566844,0.313424,0.184073,0.392548,0.794405,0.359124,0.350993,0.511077,0.000206709,0.964841,0.710379,0.350163,0.793567,0.491259,0.46039,0.59963,0.405648,0.977325,0.343018,0.896135,0.9432,0.999696,0.334718,0.998187,0.627882,0.832845,0.622659,0.71805,0.497507,0.720292,0.915684,0.466238,0.217345,0.069871,0.0201783,0.955239,0.707949,0.714175,0.639395,0.184533,0.160614,0.381458,0.275262,0.22879,0.697017,0.165248,0.0865209,0.913646,0.906433,0.390934,0.432591,0.832181,0.0956247,0.0386059,0.368939,0.660588,0.708401,0.384093,0.883463,0.54549,0.5376,0.110861,0.00819737,0.97752,0.0546931,0.353535,0.148658,0.612917,0.731933,0.478047,0.118453,0.500006,0.532123,0.209392,0.824483,0.100383,0.772205,0.431608,0.667734,0.627828,0.97885,0.347048,0.565573,0.10841,0.689942,0.226561,0.810596,0.582576,0.332184,0.438715,0.00133187,0.42794,0.699546,0.763546,0.54754,0.107232,0.666289,0.780804,0.354766,0.208267,0.0192373,0.722127,0.701956,0.0359606,0.97533,0.00571257,0.657679,0.306272,0.50877,0.176051,0.391747,0.671598,0.478564,0.76516,0.700891,0.907054,0.777029,0.657802,0.625285,0.426813,0.219175,0.416754,0.076156,0.0117239,0.548626,0.374197,0.254646,0.733409,0.41332,0.40683,0.128632,0.318242,0.537353,0.645529,0.0725257,0.735303,0.258194,0.7001,0.731541,0.659465,0.690438,0.0944459,0.692628,0.94401,0.267862,0.378292,0.711926,0.479471,0.623992,0.824577,0.281247,0.406786,0.812827,0.422671,0.55466,0.208636,0.0831641,0.947207,0.552322,0.35719,0.633429,0.827012,0.207508,0.711372,0.740794,0.652585,0.415339,0.479664,0.0576504,0.452648,0.232312,0.622533,0.362437,0.0730456,0.823943,0.862516,0.562715,0.482277,0.359092,0.859902,0.951354,0.563754,0.501044,0.860651,0.642328,0.336417,0.100652,0.705064,0.633375,0.698699,0.559685,0.745903,0.970629,0.467218,0.801154,0.649896,0.866036,0.75319,0.0430596,0.566725,0.98786,0.106006,0.136303,0.336563,0.647489,0.777318,0.0326981,0.481101,0.530223,0.570552,0.497738,0.797507,0.61977,0.811214,0.591179,0.311392,0.862463,0.189411,0.231763,0.680056,0.208519,0.313082,0.249321,0.377704,0.631044,0.721821,0.0729472,0.770285,0.595919,0.43332,0.922261,0.21611,0.685292,0.445986,0.645311,0.623803,0.244507,0.0431995,0.579301,0.14402,0.880779,0.503476,0.0751487,0.427653,0.510066,0.0449605,0.233615,0.226002,0.656042,0.119355,0.523269,0.364604,0.962073,0.172158,0.779594,0.538357,0.956453,0.479186,0.759853,0.788835,0.651433,0.675578,0.884595,0.987683,0.107776,0.582732,0.1894,0.557878,0.923982,0.663742,0.288072,0.380259,0.185172,0.855535,0.57112,0.762528,0.469578,0.556527,0.296205,0.879514,0.211,0.681167,0.838528,0.387537,0.548354,0.211226,0.32751,0.983826,0.421208,0.620805,0.630068,0.279466,0.977387,0.67865,0.873572,0.142061,0.00125426,0.0104732,0.170239,0.816897,0.293661,0.724286,0.056567,0.880323,0.299369,0.711607,0.610587,0.507756,0.439699,0.116794,0.783137,0.694945,0.195067,0.0412412,0.774687,0.0920232,0.820342,0.881068,0.764563,0.818098,0.470409,0.634801,0.256105,0.19249,0.446855,0.945533,0.690402,0.469537,0.874565,0.627196,0.0478476,0.865316,0.987117,0.521768,0.537511,0.886916,0.0313325,0.970038,0.583301,0.509974,0.381969,0.0800071,0.488439,0.134953,0.0618653,0.866074,0.179134,0.848303,0.864135,0.235974,0.164318,0.226032,0.829074,0.378854,0.361454,0.591795,0.221386,0.491753,0.212452,0.661022,0.762276,0.71979,0.717568,0.644062,0.669928,0.0205139,0.852692,0.789751,0.0511122,0.975619,0.554142,0.76576,0.292247,0.0553197,0.967327,0.780837,0.594085,0.0949072,0.789578,0.806809,0.406947,0.0363001,0.107399,0.362444,0.408241,0.304423,0.417572,0.744338,0.543769,0.872093,0.140141,0.683972,0.308953,0.724105,0.381901,0.351695,0.249581,0.939429,0.25929,0.761326,0.387742,0.00964475,0.874188,0.0537784,0.611345,0.447542,0.549012,0.981175,0.728672,0.306732,0.824423,0.221988,0.147286,0.250261,0.227565,0.135354,0.499961,0.301676,0.745642,0.844916,0.744053,0.890316,0.299797,0.0313961,0.74735,0.810057,0.927547,0.951776,0.411598,0.711451,0.111185,0.996452,0.826356,0.384481,0.705273,0.376778,0.390643,0.0372663,0.805068,0.961495,0.607429,0.720972,0.999424,0.975182,0.00421095,0.275082,0.656717,0.88207,0.348309,0.439272,0.565335,0.694752,0.706888,0.352573,0.134898,0.502182,0.412178,0.443484,0.945067,0.00055337,0.165389,0.545123,0.787358,0.0352483,0.105433,0.521221,0.182681,0.482491,0.414318,0.625391,0.935543,0.993864,0.639359,0.860055,0.0545374,0.255298,0.345157,0.0988356,0.511848,0.128405,0.396824,0.943091,0.926719,0.0385036,0.283585,0.676302,0.527414,0.761393,0.46282,0.293779,0.28888,0.0674057,0.263187,0.726789,0.942857,0.233955,0.65497,0.275331,0.0390598,0.76898,0.157319,0.497971,0.999025,0.455391,0.0988293,0.60771,0.533746,0.0298062,0.0840055,0.473333,0.522718,0.133119,0.90288,0.412564,0.412322,0.094984,0.866139,0.831456,0.248358,0.437403,0.471949,0.684208,0.921866,0.489873,0.182616,0.346657,0.644737,0.0571517,0.619191,0.374148,0.114203,0.595002,0.642981,0.205105,0.161967,0.288662,0.946361,0.150854,0.719415,0.821008,0.53277,0.620136,0.287332,0.0785167,0.751699,0.73988,0.639178,0.752323,0.331607,0.597801,0.759276,0.293527,0.221701,0.620692,0.804781,0.333061,0.548375,0.795729,0.96293,0.803928,0.0873387,0.816779,0.984645,0.579842,0.908483,0.784633,0.0869241,0.67858,0.684805,0.189044,0.74024,0.0889742,0.302938,0.779458,0.937567,0.584898,0.34252,0.337171,0.535749,0.53292,0.233928,0.309013,0.727565,0.918152,0.168109,0.30473,0.959248,0.824519,0.714498,0.23574,0.520521,0.250278,0.815376,0.637734,0.077366,0.605977,0.535127,0.300829,0.716305,0.727138,0.720654,0.05305,0.866374,0.597199,0.180383,0.764557,0.442414,0.340211,0.0199475,0.867348,0.788148,0.69636,0.778251,0.739225,0.379435,0.329312,0.969498,0.962015,0.00936055,0.265363,0.309892,0.219521,0.532686,0.173005,0.30096,0.331406,0.7408,0.602006,0.367596,0.764949,0.209395,0.0851767,0.345286,0.708343,0.564745,0.979738,0.132036,0.519244,0.684377,0.0569083,0.815711,0.920162,0.257988,0.133373,0.449021,0.247634,0.512805,0.0544645,0.303315,0.715613,0.655684,0.838317,0.174023,0.573899,0.847373,0.238774,0.515755,0.929681,0.664608,0.686156,0.0153393,0.395955,0.608523,0.0466487,0.591437,0.046607,0.448198,0.2734,0.140811,0.673664,0.493962,0.296994,0.400794,0.689248,0.325992,0.558553,0.778802,0.152678,0.943428,0.422959,0.507338,0.311003,0.56245,0.497082,0.978004,0.449557,0.00142092,0.695732,0.162609,0.293998,0.980767,0.585721,0.583221,0.28102,0.739721,0.464167,0.470437,0.794566,0.624056,0.343752,0.26839,0.439413,0.988458,0.443015,0.938161,0.242099,0.833549,0.825649,0.612011,0.128555,0.00617212,0.269673,0.174746,0.135729,0.0844508,0.190147,0.470901,0.99356,0.0444037,0.815538,0.4776,0.678992,0.89832,0.676454,0.473986,0.749728,0.497227,0.724581,0.810592,0.204513,0.823718,0.529171,0.417458,0.147,0.525039,0.129001,0.728074,0.357383,0.204065,0.722366,0.363666,0.667713,0.187066,0.187833,0.786139,0.804653,0.192852,0.987893,0.427883,0.731316,0.76086,0.501679,0.885464,0.792434,0.0933798,0.325695,0.810491,0.947954,0.109813,0.38661,0.182061,0.614998,0.0986102,0.314683,0.625229,0.742892,0.832758,0.357274,0.311291,0.141456,0.914541,0.641478,0.589709,0.426574,0.556628,0.204783,0.88018,0.916041,0.202062,0.274798,0.895706,0.366429,0.961225,0.861203,0.0470699,0.681906,0.378464,0.506585,0.834521,0.295477,0.754995,0.317853,0.00947726,0.637837,0.801352,0.40735,0.603691,0.386231,0.747133,0.863612,0.936163,0.956184,0.155692,0.0261434,0.576998,0.169388,0.434401,0.280922,0.0946612,0.661556,0.195097,0.792641,0.638654,0.507966,0.185383,0.0296991,0.0342259,0.46432,0.253882,0.0988662,0.207856,0.286393,0.582651,0.73509,0.09397,0.0815142,0.00461781,0.839312,0.515821,0.85352,0.630886,0.984749,0.60172,0.269671,0.961147,0.23902,0.948687,0.496862,0.354299,0.880184,0.019152,0.458527,0.664771,0.29059,0.213154,0.120725,0.961893,0.720114,0.0777792,0.835905,0.128763,0.571707,0.552175,0.954469,0.531692,0.140355,0.710431,0.550085,0.136005,0.415187,0.971006,0.331908,0.318998,0.777686,0.449748,0.961224,0.809162,0.801838,0.703404,0.0514187,0.125057,0.549296,0.146563,0.786146,0.631346,0.93137,0.407272,0.627534,0.768722,0.538021,0.104676,0.328284,0.945096,0.259595,0.765557,0.375095,0.71076,0.610359,0.497304,0.0735048,0.46514,0.482934,0.359633,0.159151,0.803856,0.741046,0.475196,0.384871,0.420745,|0.500994,0.662832,0.127013,0.717919,0.596668,0.273978,0.741677,0.37049,0.0469093,0.190581,0.0177503,0.147688,0.989661,0.570826,0.427331,0.296266,0.753366,0.660463,0.244136,0.420273,0.34094,0.715886,0.576921,0.412976,0.768047,0.384907,0.725279,0.536767,0.366004,0.174648,0.443607,0.343137,0.328207,0.195138,0.623489,0.283861,0.565344,0.664896,0.417472,0.168012,0.465226,0.28579,0.252291,0.582526,0.860175,0.261472,0.552471,0.736429,0.0105544,0.261887,0.585327,0.446677,0.759196,0.787732,0.742691,0.335202,0.792372,0.117267,0.710001,0.391012,0.871222,0.0255359,0.547526,0.0916762,0.89365,0.225772,0.943581,0.885452,0.0907238,0.343662,0.895304,0.742018,0.915223,0.557733,0.197972,0.0787714,0.82404,0.152588,0.839435,0.496211,0.150907,0.931457,0.414093,0.78354,0.497944,0.445473,0.902059,0.863141,0.704663,0.861424,0.53536,0.385943,0.335927,0.39104,0.322298,0.420554,0.0485377,0.695207,0.0302304,0.241016,0.403679,0.405957,0.68506,0.369244,0.458383,0.415737,0.284209,0.644599,0.339082,0.810107,0.791444,0.804832,0.926595,0.132899,0.161336,0.831849,0.0460768,0.384711,0.964461,0.647154,0.441294,0.365066,0.625556,0.2994,0.685295,0.480164,0.882814,0.333358,0.783525,0.858662,0.1402,0.160236,0.548014,0.241163,0.182266,0.626797,0.0399759,0.521726,0.687204,0.639169,0.162728,0.0215225,0.954957,0.555182,0.164336,0.684867,0.578019,0.773414,0.08661,0.872208,0.0826135,0.353625,0.34642,0.204835,0.0332476,0.474502,0.0894947,0.330494,0.101425,0.872366,0.612517,0.706856,0.989836,0.998086,0.0937009,0.30502,0.425371,0.826929,0.598255,0.160282,0.518888,0.649626,0.459225,0.0766082,0.885536,0.745294,0.513663,0.409578,0.152144,0.489191,0.212628,0.360803,0.240684,0.155041,0.376666,0.464529,0.426536,0.146231,0.677699,0.533962,0.932088,0.443955,0.81684,0.173481,0.973665,0.416902,0.563496,0.313198,0.14162,0.778831,0.448291,0.814497,0.76702,0.733257,0.719668,0.855973,0.852058,0.869027,0.775803,0.80535,0.703334,0.15722,0.129776,0.00526679,0.57273,0.756506,0.745076,0.777893,0.403862,0.362492,0.99199,0.163415,0.87359,0.427799,0.477534,0.0224925,0.271295,0.35828,0.801496,0.622198,0.111418,0.262678,0.363406,0.605863,0.0692861,0.223751,0.0440428,0.863293,0.592548,0.394433,0.735552,0.74251,0.88438,0.129314,0.313777,0.416682,0.410842,0.539938,0.0394607,0.709239,0.617956,0.676419,0.484895,0.696075,0.328177,0.939191,0.613584,0.96118,0.69029,0.243147,0.81614,0.94416,0.117067,0.970668,0.0288428,0.209088,0.808355,0.739532,0.928603,0.179393,0.0797487,0.609069,0.959998,0.435785,0.541962,0.235665,0.449454,0.514632,0.429777,0.120515,0.465308,0.785318,0.416509,0.872226,0.92693,0.531131,0.784089,0.439172,0.0543748,0.765115,0.569715,0.598074,0.00969774,0.909455,0.712061,0.487885,0.811844,0.637282,0.273792,0.958001,0.462629,0.0533797,0.979049,0.851928,0.0685161,0.0102843,0.386059,0.158214,0.233745,0.933707,0.23176,0.606884,0.618856,0.347255,0.64017,0.236481,0.32895,0.941278,0.504672,0.859472,0.906959,0.271012,0.911687,0.866321,0.282532,0.347537,0.746298,0.0831951,0.6539,0.947934,0.66648,0.287287,0.471665,0.259915,0.210982,0.262775,0.462929,0.7501,0.226622,0.450069,0.584833,0.338593,0.78386,0.331693,0.86343,0.77071,0.996465,0.363269,0.678093,0.875384,0.263187,0.166721,0.607765,0.432267,0.227667,0.702065,0.711583,0.335447,0.717131,0.500768,0.615676,0.749695,0.390649,0.531168,0.325,0.145769,0.00908577,0.941828,0.446947,0.147239,0.435118,0.0398448,0.523319,0.388548,0.50517,0.778813,0.901479,0.249347,0.558709,0.562754,0.406782,0.658155,0.46613,0.898413,0.0848634,0.367175,0.862673,0.238417,0.270857,0.683078,0.111385,0.757643,0.816899,0.132888,0.88032,0.455853,0.821465,0.718432,0.188779,0.884881,0.618836,0.529597,0.0548236,0.867643,0.478772,0.860558,0.700509,0.400247,0.6988,0.455172,0.280538,0.307577,0.637996,0.561576,0.643811,0.796984,0.67358,0.642789,0.783989,0.556538,0.572929,0.257806,0.0245594,0.628658,0.0570261,0.335139,0.643229,0.220354,0.110542,0.846496,0.765166,0.619336,0.579342,0.149012,0.0460148,0.381912,0.563263,0.853499,0.129123,0.54217,0.737264,0.164976,0.986992,0.899911,0.953851,0.319009,0.64546,0.244206,0.0869747,0.302868,0.0932617,0.185323,0.851256,0.474046,0.891272,0.629226,0.00720698,0.153111,0.169824,0.864732,0.0198728,0.16023,0.462768,0.601043,0.773388,0.971454,0.369927,0.850769,0.704016,0.698246,0.677834,0.713608,0.130009,0.84466,0.493197,0.397573,0.76825,0.39597,0.0829414,0.108156,0.454685,0.0766606,0.333964,0.657526,0.82218,0.136679,0.123998,0.266312,0.0994097,0.689121,0.727784,0.213702,0.494641,0.697654,0.687887,0.972672,0.209236,0.759158,0.608616,0.765811,0.374954,0.423485,0.743015,0.657612,0.914735,0.145711,0.716647,0.577904,0.102287,0.23228,0.917607,0.327569,0.817384,0.860989,0.990094,0.055724,0.725034,0.250664,0.613664,0.341123,0.232714,0.83642,0.818917,0.57285,0.100712,0.7833,0.214448,0.372541,0.630112,0.758418,0.0635647,0.590997,0.564778,0.808319,0.153943,0.357007,0.0741119,0.107343,0.282027,0.0680318,0.820061,0.0298803,0.450371,0.105417,0.806621,0.217778,0.9912,0.278417,0.112174,0.877564,0.98793,0.0442522,0.969546,0.181228,0.620304,0.270861,0.76746,0.095414,0.69629,0.333307,0.225918,0.333467,0.609382,0.0166849,0.205693,0.432787,0.0531443,0.720278,0.98103,0.145748,0.860421,0.991548,0.813857,0.889831,0.638935,0.681369,0.269414,0.563164,0.674215,0.5758,0.827517,0.788171,0.0758564,0.440113,0.189868,0.590719,0.444303,0.951857,0.381246,0.65819,0.859839,0.84522,0.750316,0.0983094,0.422109,0.00452685,0.882429,0.0795013,0.186388,0.820964,0.292502,0.908579,0.540846,0.255087,0.650652,0.419707,0.257472,0.151344,0.602884,0.799062,0.806594,0.662141,0.662142,0.891074,0.846246,0.146163,0.415357,0.0854735,0.264171,0.472575,0.186643,0.1298,0.706268,0.790501,0.60943,0.853297,0.657004,0.926625,0.100299,0.790662,0.842925,0.652033,0.528445,0.0128363,0.572794,0.533152,0.200019,0.133832,0.95401,0.34229,0.0870011,0.737269,0.724296,0.201062,0.502749,0.0416301,0.199958,0.159126,0.067881,0.550258,0.34252,0.869221,0.671811,0.212592,0.239892,0.647574,0.0437152,0.606547,0.169953,0.968959,0.987255,0.149202,0.957241,0.842449,0.820047,0.772175,0.0661446,0.69392,0.689188,0.650248,0.0128448,0.893403,0.547747,0.970138,0.818909,0.991854,0.572739,0.059137,0.864723,0.853135,0.706381,0.747643,0.235577,0.830836,0.939623,0.761656,0.350025,0.28177,0.860767,0.0725057,0.747003,0.826677,0.586754,0.864061,0.879781,0.032697,0.0589768,0.754539,0.521259,0.515798,0.618572,0.560285,0.425507,0.881397,0.500696,0.399705,0.580798,0.611921,0.188103,0.48364,0.208426,0.799778,0.520892,0.895324,0.674733,0.818172,0.535918,0.0984026,0.298285,0.374765,0.00986612,0.903093,0.34723,0.794507,0.141652,0.521727,0.423022,0.547103,0.958251,0.496869,0.358856,0.990753,0.255761,0.752295,0.134555,0.0751938,0.412364,0.783524,0.532211,0.228743,0.861908,0.165673,0.48212,0.913671,0.695923,0.0816318,0.740892,0.556474,0.652621,0.0467321,0.120259,0.620917,0.74116,0.51544,0.629092,0.474925,0.975808,0.539949,0.00150824,0.497829,0.97715,0.914609,0.580757,0.230093,0.0998397,0.782043,0.975795,0.674127,0.601194,0.880422,0.16914,0.625298,0.359679,0.76587,0.211311,0.787934,0.193945,0.894648,0.344708,0.844357,0.193136,0.252816,0.585441,0.151285,0.0576966,0.579208,0.9985,0.619357,0.680728,0.262626,0.740796,0.684511,0.170559,0.409824,0.776004,0.571016,0.537176,0.559469,0.88805,0.753452,0.137902,0.435084,0.773364,0.435906,0.0167462,0.564472,0.0737517,0.200074,0.30521,0.500516,0.965777,0.607356,0.0698666,0.29407,0.993002,0.822351,0.604674,0.968283,0.803186,0.995928,0.0819921,0.0739434,0.921657,0.416951,0.86281,0.736108,0.836325,0.423846,0.595394,0.177003,0.739655,0.641918,0.469984,0.213008,0.72347,0.991135,0.0373492,0.806594,0.95796,0.204207,0.178409,0.397364,0.827712,0.747253,0.0672621,0.00621235,0.182258,0.572034,0.189159,0.639539,0.258909,0.6896,0.317304,0.12411,0.102038,0.513652,0.519786,0.330538,0.180115,0.453274,0.0163526,0.909904,0.875083,0.60486,0.453636,0.8863,0.342554,0.215289,0.920842,0.907329,0.170379,0.41382,0.105032,0.863974,0.792713,0.0525153,0.690792,0.0253208,0.0844294,0.27654,0.462986,0.459973,0.664158,0.484089,0.734607,0.805577,0.445837,0.0390981,0.20078,0.651223,0.739934,0.830328,0.0639809,0.194582,0.451037,0.171478,0.0797331,0.829035,0.191209,0.614869,0.367505,0.0887388,0.12247,0.414997,0.604192,0.595498,0.194418,0.399574,0.0824477,0.0967516,0.595361,0.736318,0.233381,0.36768,0.968279,0.891554,0.356034,0.909085,0.537316,0.334867,0.164141,0.602236,0.154335,0.326334,0.282016,0.956672,0.749488,0.543586,0.887502,0.760338,0.497493,0.152951,0.13208,0.218092,0.840727,0.303797,0.643793,0.921728,0.994325,0.871481,0.978658,0.991416,0.583906,0.243298,0.691746,0.542733,0.839742,0.0205797,0.41866,0.518165,0.514759,0.0428137,0.77361,0.370347,0.558146,0.931316,0.143293,0.252905,0.968661,0.552798,0.0174033,0.569158,0.274482,0.884277,0.518577,0.313759,0.349725,0.431413,0.217231,0.520021,0.0259943,0.887553,0.443409,0.903198,0.480473,0.87964,0.373151,0.572678,0.980353,0.895082,0.224926,0.252642,0.630054,0.865564,0.0397381,0.93774,0.203624,0.6451,0.752,0.328352,0.465695,0.550192,0.72285,0.684115,0.753522,0.653234,0.0102737,0.0217369,0.584928,0.538728,|0.30235,0.102496,0.661584,0.838424,0.502222,0.120526,0.975065,0.368984,0.976759,0.827278,0.20017,0.507902,0.319273,0.848983,0.157298,0.176789,0.864498,0.789392,0.594012,0.969254,0.592805,0.930714,0.683881,0.703099,0.725975,0.408099,0.00789911,0.512537,0.746983,0.840079,0.204219,0.162459,0.993067,0.928968,0.505332,0.330942,0.90664,0.70616,0.80488,0.635823,0.25218,0.610374,0.833526,0.722664,0.024836,0.554125,0.571159,0.561958,0.053746,0.972323,0.746117,0.637398,0.22821,0.0205128,0.404687,0.518906,0.67625,0.598236,0.0281191,0.522691,0.373696,0.643274,0.816246,0.540855,0.470637,0.119553,0.270406,0.211659,0.373324,0.51573,0.611141,0.584371,0.999312,0.23588,0.108431,0.425815,0.901188,0.591273,0.885488,0.103927,0.186751,0.891324,0.186796,0.23394,0.963773,0.131635,0.195016,0.799613,0.378395,0.631771,0.112847,0.72395,0.695253,0.514072,0.96306,0.266886,0.368732,0.228762,0.276697,0.254228,0.614911,0.807594,0.958976,0.965127,0.271081,0.912286,0.780354,0.341414,0.122005,0.922714,0.586738,0.375038,0.102941,0.232832,0.116805,0.399821,0.356603,0.178498,0.687123,0.582802,0.585502,0.442175,0.643164,0.181892,0.756459,0.170879,0.0886509,0.713896,0.0374048,0.182955,0.322492,0.2197,0.0429734,0.0529299,0.391731,0.580486,0.270212,0.392973,0.0389091,0.403491,0.696346,0.715085,0.0324936,0.859884,0.168667,0.55819,0.804538,0.721833,0.961507,0.342235,0.180916,0.485278,0.0240346,0.603091,0.0381549,0.521695,0.607401,0.694067,0.539357,0.224132,0.345902,0.23003,0.426151,0.190596,0.260818,0.0412536,0.800887,0.00881445,0.815427,0.00210667,0.741822,0.678525,0.499957,0.779185,0.272425,0.113578,0.609357,0.58091,0.783204,0.930364,0.499625,0.476149,0.609923,0.933696,0.174492,0.609591,0.630949,0.964254,0.128851,0.0349767,0.340169,0.927372,0.568142,0.776853,0.84664,0.28483,0.662121,0.929011,0.302554,0.872399,0.531271,0.636791,0.877793,0.581631,0.824991,0.61684,0.947621,0.587338,0.287285,0.275765,0.188521,0.988603,0.739535,0.833901,0.562244,0.64479,0.15979,0.0684106,0.0609773,0.688335,0.340166,0.669483,0.542177,0.969076,0.565945,0.126408,0.20878,0.794452,0.344993,0.457026,0.507212,0.520458,0.280283,0.80917,0.349415,0.223777,0.00071919,0.128003,0.413201,0.793162,0.553462,0.198444,0.87263,0.733039,0.899182,0.78579,0.0415996,0.167036,0.176726,0.00623327,0.396279,0.540858,0.0292544,0.416429,0.329228,0.407743,0.352043,0.10371,0.305205,0.602918,0.898592,0.615775,0.229903,0.769267,0.736471,0.639217,0.8765,0.820607,0.615174,0.20495,0.495454,0.426428,0.229666,0.117977,0.204759,0.954263,0.378078,0.0889047,0.0759323,0.55509,0.263312,0.903795,0.577408,0.158974,0.0575255,0.808002,0.950698,0.101174,0.862425,0.195213,0.0225751,0.508704,0.504883,0.846608,0.575119,0.885729,0.340827,0.569656,0.660999,0.975797,0.522749,0.46406,0.360159,0.143314,0.544959,0.679575,0.967128,0.507787,0.928953,0.151834,0.296256,0.938555,0.54068,0.726067,0.745019,0.499079,0.039506,0.0335809,0.968956,0.106442,0.778838,0.310938,0.994905,0.33669,0.213682,0.857337,0.696005,0.477871,0.0205017,0.0135383,0.680459,0.888611,0.35746,0.682009,0.642039,0.876651,0.583084,0.584246,0.0089556,0.0980865,0.210663,0.461224,0.218711,0.174065,0.137605,0.280535,0.466013,0.831794,0.934763,0.685241,0.697971,0.431507,0.658597,0.575833,0.376551,0.721857,0.794456,0.659289,0.82151,0.631306,0.796024,0.270101,0.607446,0.104915,0.650823,0.860201,0.878772,0.661397,0.075164,0.125499,0.857397,0.687326,0.598071,0.247671,0.802657,0.934165,0.968229,0.328153,0.322782,0.294746,0.378476,0.854616,0.252964,0.446699,0.854566,0.691426,0.860408,0.741131,0.0285946,0.316558,0.936814,0.391796,0.619218,0.996124,0.596595,0.490527,0.12842,0.649276,0.590554,0.235463,0.560772,0.659108,0.389249,0.0497342,0.0773757,0.722454,0.645522,0.840617,0.818625,0.829175,0.335307,0.488922,0.973679,0.0250684,0.170509,0.634409,0.990537,0.348034,0.851106,0.383929,0.228752,0.648296,0.682822,0.55512,0.147013,0.137314,0.357073,0.364192,0.377163,0.6835,0.584956,0.605791,0.229702,0.325275,0.745574,0.553746,0.324282,0.381981,0.158139,0.538331,0.0818761,0.83846,0.000494182,0.184892,0.33211,0.150886,0.186812,0.181697,0.993495,0.217158,0.139895,0.748635,0.211418,0.425902,0.74773,0.972297,0.290837,0.225589,0.25684,0.167585,0.170119,0.710199,0.745168,0.851817,0.602314,0.126059,0.916087,0.43311,0.859318,0.872885,0.808594,0.396935,0.444452,0.0365031,0.545739,0.139334,0.554995,0.812873,0.842399,0.472256,0.363141,0.555648,0.41751,0.985027,0.0992656,0.823712,0.198165,0.644051,0.434188,0.626729,0.541375,0.736736,0.779813,0.626028,0.6332,0.348054,0.392912,0.135446,0.0976757,0.54559,0.205139,0.0596564,0.975327,0.735131,0.233607,0.384768,0.198339,0.214764,0.988351,0.689544,0.732453,0.573732,0.19904,0.0617686,0.413066,0.625296,0.979319,0.529492,0.360991,0.508297,0.150831,0.948252,0.432716,0.0823377,0.215616,0.91648,0.785032,0.688138,0.986887,0.312904,0.393141,0.732209,0.787384,0.638429,0.334747,0.46378,0.243017,0.106673,0.187058,0.694812,0.216027,0.353992,0.286415,0.562751,0.861479,0.870576,0.016168,0.778198,0.196724,0.781918,0.860646,0.0471544,0.888444,0.610404,0.97958,0.133089,0.520938,0.260017,0.642934,0.359096,0.119855,0.788727,0.446455,0.762282,0.0296985,0.140988,0.387436,0.119704,0.49125,0.952814,0.365014,0.847096,0.0906315,0.141285,0.509036,0.788442,0.218634,0.329223,0.11495,0.173148,0.227946,0.258826,0.362028,0.691789,0.968289,0.264088,0.856169,0.573778,0.150358,0.728556,0.405779,0.492792,0.734652,0.180355,0.953393,0.277331,0.0238824,0.105759,0.0701061,0.834565,0.841449,0.818886,0.73638,0.199325,0.42416,0.476791,0.919045,0.563996,0.548851,0.205085,0.889105,0.436192,0.381724,0.771966,0.466226,0.187934,0.872778,0.659541,0.0576885,0.977977,0.447081,0.781169,0.479083,0.669247,0.329995,0.248258,0.734876,0.361974,0.86979,0.559,0.422789,0.165402,0.0638663,0.851049,0.911398,0.47559,0.161553,0.526836,0.534105,0.408771,0.460898,0.517404,0.249094,0.522859,0.0122178,0.364273,0.71529,0.315016,0.683397,0.629637,0.0856436,0.376704,0.730814,0.0668358,0.0333033,0.156391,0.498216,0.111621,0.645862,0.594966,0.142854,0.333102,0.21971,0.724405,0.0549986,0.722636,0.0445136,0.276092,0.487506,0.117644,0.122995,0.190431,0.0950368,0.968683,0.992898,0.296815,0.307796,0.547035,0.146913,0.0506822,0.120348,0.510627,0.0235442,0.261614,0.932365,0.803564,0.0941818,0.942944,0.0604615,0.666822,0.911532,0.739622,0.28922,0.315073,0.324732,0.736435,0.919876,0.132304,0.919644,0.134727,0.707501,0.972298,0.111892,0.704782,0.119062,0.489715,0.685283,0.077768,0.277563,0.470427,0.244838,0.14489,0.88251,0.669831,0.437329,0.145455,0.589122,0.483797,0.697924,0.75658,0.620207,0.439775,0.756596,0.69071,0.368608,0.715767,0.54731,0.987725,0.879628,0.975593,0.109561,0.469925,0.17922,0.00119358,0.948934,0.797548,0.921006,0.307154,0.963927,0.770174,0.63323,0.938735,0.971487,0.546241,0.144132,0.370292,0.168733,0.394916,0.963001,0.485948,0.493413,0.47404,0.268926,0.118398,0.996191,0.873569,0.73013,0.974475,0.128497,0.922307,0.020037,0.917528,0.206734,0.357352,0.0492814,0.452611,0.311174,0.916272,0.494514,0.0316584,0.154204,0.109102,0.0213348,0.54317,0.173034,0.692466,0.104196,0.537611,0.496351,0.841873,0.986137,0.784494,0.94036,0.0375149,0.297221,0.425423,0.35966,0.642995,0.00304401,0.393071,0.74203,0.528504,0.154926,0.822877,0.455306,0.110808,0.790028,0.70638,0.705818,0.206008,0.607468,0.68211,0.612969,0.732331,0.0408282,0.281197,0.667024,0.746515,0.796258,0.795214,0.197937,0.733936,0.198022,0.00896239,0.395626,0.653419,0.673411,0.220318,0.282808,0.930854,0.0846177,0.468159,0.792423,0.729976,0.115809,0.686721,0.286618,0.587744,0.169054,0.292067,0.501365,0.214351,0.801211,0.387237,0.269308,0.398225,0.896164,0.0638972,0.473876,0.232887,0.455862,0.686617,0.920206,0.92976,0.0813581,0.849452,0.542388,0.998459,0.0813349,0.256277,0.557276,0.018406,0.708251,0.735285,0.376676,0.104882,0.891582,0.438006,0.0997185,0.914196,0.496248,0.835883,0.29815,0.640255,0.76646,0.34307,0.521951,0.663241,0.709042,0.329783,0.104894,0.490247,0.437352,0.0923735,0.749575,0.437932,0.420974,0.403159,0.197277,0.234912,0.854349,0.573506,0.744335,0.635382,0.320505,0.107367,0.825079,0.423912,0.728803,0.22079,0.520195,0.992451,0.973989,0.778264,0.97576,0.45922,0.345161,0.692259,0.894827,0.276283,0.448719,0.812204,0.257752,0.245882,0.0505783,0.174224,0.477875,0.98789,0.0640752,0.888135,0.0997676,0.377666,0.696342,0.400855,0.138341,0.50939,0.198172,0.0242218,0.128876,0.858582,0.885661,0.26388,0.936687,0.532184,0.239531,0.693294,0.00842029,0.630365,0.300831,0.205825,0.555909,0.713329,0.0806224,0.471641,0.547953,0.111693,0.629559,0.58205,0.723815,0.0830529,0.528159,0.590928,0.928952,0.653205,0.83759,0.654653,0.745803,0.787807,0.784698,0.815293,0.322841,0.347517,0.836587,0.585539,0.117631,0.896214,0.617221,0.196108,0.504427,0.693461,0.940039,0.743233,0.343133,0.876381,0.355047,0.175676,0.0803319,0.14307,0.772873,0.717071,0.878689,0.241886,0.437839,0.101335,0.956393,0.261258,0.124925,0.344065,0.435142,0.432395,0.318991,0.76442,0.0832534,0.264684,0.722271,0.00566649,0.236072,0.102657,0.693695,0.0881806,0.974491,0.376033,0.776917,0.938187,0.504767,0.426917,0.0863403,0.553632,0.519446,0.358729,|0.0807901,0.324816,0.874772,0.983098,0.72092,0.658078,0.306567,0.11116,0.483802,0.882957,0.299929,0.888117,0.951198,0.862413,0.190957,0.144714,0.310929,0.41956,0.5711,0.247523,0.785663,0.923474,0.305661,0.164425,0.0488946,0.302317,0.149067,0.436872,0.904411,0.242004,0.542575,0.258138,0.7,0.759315,0.693638,0.815847,0.769517,0.604869,0.302211,0.142843,0.483366,0.446603,0.725475,0.278626,0.0564631,0.402252,0.395478,0.268809,0.820722,0.803946,0.395194,0.972508,0.978502,0.624634,0.724445,0.282829,0.251164,0.954295,0.379071,0.779392,0.117659,0.362751,0.908885,0.924019,0.22384,0.5902,0.859579,0.261793,0.827781,0.0464136,0.401156,0.659282,0.0187806,0.747932,0.757956,0.897096,0.371309,0.743305,0.0148207,0.925216,0.0149519,0.379413,0.919229,0.242616,0.114246,0.031821,0.297423,0.688851,0.327104,0.145024,0.52728,0.280218,0.718322,0.224856,0.941418,0.103067,0.961466,0.713461,0.0151117,0.908094,0.0840598,0.381426,0.897593,0.477167,0.987703,0.0349669,0.952127,0.998414,0.475843,0.17144,0.821267,0.681476,0.63437,0.0451863,0.36572,0.806587,0.434002,0.308728,0.60512,0.774089,0.916495,0.367137,0.148792,0.0794148,0.670346,0.460058,0.48781,0.131903,0.368266,0.430374,0.255504,0.336227,0.0775561,0.936773,0.0946593,0.046865,0.230958,0.713311,0.370854,0.936026,0.366294,0.771535,0.428898,0.291178,0.0871281,0.184105,0.0466223,0.966871,0.757561,0.270683,0.897013,0.460544,0.511171,0.5658,0.904474,0.714052,0.455135,0.589556,0.308452,0.306569,0.239954,0.12214,0.464407,0.563747,0.926999,0.901506,0.691175,0.556743,0.501906,0.521011,0.220522,0.489231,0.80477,0.295358,0.501147,0.18239,0.451225,0.951768,0.500357,0.649719,0.462402,0.412982,0.626528,0.406774,0.444737,0.585949,0.559726,0.0552509,0.292812,0.750543,0.803434,0.641901,0.845024,0.509704,0.0287221,0.261994,0.45858,0.703367,0.639116,0.514706,0.676675,0.62341,0.0782229,0.120853,0.0391201,0.585298,0.757505,0.948682,0.877301,0.908796,0.960864,0.590877,0.00681758,0.254791,0.608585,0.670612,0.5915,0.643538,0.844963,0.635584,0.984129,0.739821,0.302448,0.844473,0.307217,0.0202613,0.470904,0.886916,0.822038,0.63922,0.309609,0.58141,0.144342,0.668521,0.604555,0.849896,0.590209,0.866834,0.754781,0.133738,0.848418,0.493029,0.868626,0.00944805,0.925726,0.631008,0.691497,0.631679,0.259346,0.282821,0.582589,0.53954,0.705123,0.0265727,0.774226,0.0186477,0.177302,0.86663,0.00215101,0.880674,0.0653014,0.911796,0.957604,0.515127,0.358949,0.719938,0.411698,0.00922126,0.360027,0.514931,0.941608,0.271106,0.0341082,0.198901,0.952972,0.111436,0.944063,0.575219,0.94893,0.865407,0.782948,0.166477,0.893107,0.821991,0.327873,0.990635,0.373875,0.6123,0.361062,0.850367,0.378045,0.783398,0.646329,0.109872,0.585771,0.220718,0.233093,0.323123,0.325152,0.299144,0.178135,0.640715,0.0797991,0.990036,0.95399,0.0135341,0.386975,0.503909,0.825497,0.513395,0.95884,0.860143,0.930474,0.869947,0.128155,0.190615,0.306756,0.0741605,0.140901,0.894101,0.713663,0.454169,0.791155,0.815682,0.576165,0.0181187,0.172832,0.79142,0.836586,0.208714,0.0750163,0.928751,0.290163,0.136179,0.247487,0.815402,0.42153,0.378056,0.723502,0.165563,0.384036,0.309492,0.150311,0.67213,0.672373,0.00686449,0.816412,0.00368446,0.941583,0.459343,0.785591,0.437151,0.762611,0.0600018,0.625338,0.621567,0.58325,0.487888,0.504921,0.220946,0.87337,0.587983,0.372039,0.785625,0.747924,0.190846,0.93962,0.74241,0.840176,0.906979,0.826996,0.191631,0.526642,0.309173,0.563717,0.872174,0.357147,0.189596,0.198629,0.148881,0.58787,0.752533,0.126217,0.419507,0.269668,0.970788,0.999054,0.063466,0.865326,0.934745,0.606312,0.7793,0.398107,0.858083,0.791803,0.396468,0.645287,0.0374535,0.846064,0.921051,0.306085,0.603324,0.446809,0.766897,0.140828,0.424523,0.3794,0.653208,0.161542,0.474364,0.244829,0.945311,0.439562,0.142701,0.657005,0.989104,0.312826,0.0789534,0.909588,0.821837,0.892063,0.997475,0.996931,0.393671,0.9028,0.916221,0.865736,0.703833,0.698349,0.181155,0.474239,0.484901,0.743319,0.149622,0.0471754,0.230921,0.383007,0.181277,0.944314,0.841822,0.303729,0.579232,0.928593,0.609006,0.51912,0.940954,0.806828,0.819875,0.724898,0.455976,0.663175,0.374781,0.33556,0.554193,0.609519,0.772905,0.668459,0.209407,0.899194,0.00968152,0.585237,0.704736,0.529407,0.907897,0.154164,0.00185484,0.781683,0.0878596,0.351937,0.809419,0.0095976,0.619341,0.273089,0.22047,0.568396,0.0116889,0.370337,0.660412,0.561652,0.00999296,0.692314,0.839917,0.170711,0.428075,0.0955615,0.563391,0.252518,0.94363,0.200667,0.6346,0.179901,0.803668,0.64482,0.620279,0.821959,0.983282,0.891008,0.219416,0.90159,0.6747,0.0595998,0.415555,0.00509351,0.131862,0.660448,0.0392747,0.640157,0.157759,0.69897,0.248356,0.747617,0.0331887,0.787263,0.920964,0.000333428,0.617266,0.0368582,0.292815,0.109386,0.476266,0.237951,0.0749694,0.31636,0.288547,0.867105,0.0264517,0.702745,0.285273,0.830415,0.655738,0.829973,0.531529,0.985431,0.125515,0.532026,0.910666,0.65177,0.191289,0.555238,0.950813,0.56432,0.942612,0.29807,0.73653,0.329255,0.691108,0.861448,0.89987,0.786627,0.497343,0.776833,0.962962,0.389081,0.215878,0.0781536,0.361092,0.377203,0.983916,0.725341,0.706631,0.756969,0.115227,0.309226,0.929898,0.304125,0.393632,0.441639,0.580409,0.220838,0.190159,0.177594,0.307206,0.373586,0.767526,0.0542735,0.49529,0.156541,0.0603207,0.534464,0.979367,0.787376,0.599546,0.513787,0.0462481,0.956982,0.225511,0.215795,0.149605,0.314997,0.260672,0.73307,0.362582,0.927169,0.600357,0.579028,0.628034,0.537506,0.653513,0.730249,0.297799,0.384787,0.753595,0.857134,0.49684,0.646127,0.947497,0.0457684,0.43404,0.206572,0.375871,0.60607,0.0650554,0.801503,0.245474,0.0543074,0.590031,0.986705,0.240007,0.755857,0.579219,0.179117,0.377909,0.0369108,0.234384,0.784718,0.321539,0.508575,0.102573,0.646245,0.363985,0.520541,0.666521,0.624574,0.463404,0.904007,0.153019,0.617487,0.887061,0.0598491,0.634188,0.485951,0.646427,0.0396572,0.937546,0.0529719,0.00239432,0.61515,0.228997,0.44704,0.992701,0.307034,0.229222,0.584789,0.374123,0.851638,0.392641,0.300013,0.0224783,0.933804,0.805724,0.423059,0.677448,0.0606164,0.93949,0.225695,0.030875,0.383248,0.343774,0.38814,0.273406,0.460672,0.150869,0.115345,0.872978,0.128802,0.839321,0.849421,0.275908,0.69781,0.190511,0.572755,0.825797,0.514656,0.818642,0.918594,0.263048,0.996765,0.858126,0.0784175,0.846078,0.509864,0.535735,0.197112,0.888425,0.550964,0.629157,0.269335,0.443985,0.870037,0.206184,0.731767,0.376728,0.532029,0.757147,0.829665,0.601658,0.764501,0.614857,0.741109,0.197031,0.544845,0.823571,0.266487,0.0948392,0.152562,0.237602,0.986038,0.135288,0.331856,0.674136,0.184195,0.785405,0.286492,0.4231,0.835947,0.20459,0.439395,0.373879,0.286652,0.86401,0.374919,0.0858886,0.0861071,0.812714,0.217081,0.968967,0.347313,0.720532,0.827465,0.724565,0.719834,0.3583,0.505077,0.42188,0.825041,0.343249,0.639694,0.183134,0.451615,0.981706,0.254739,0.94186,0.435263,0.574502,0.971659,0.112885,0.598937,0.858337,0.76441,0.165342,0.760422,0.388111,0.145712,0.355827,0.259174,0.794946,0.509444,0.892957,0.160245,0.658111,0.926765,0.552664,0.232007,0.575284,0.937461,0.310461,0.734447,0.655629,0.440302,0.239864,0.227817,0.946388,0.281796,0.0434579,0.200474,0.625992,0.93526,0.367832,0.333921,0.132821,0.171938,0.436278,0.151444,0.0389194,0.182198,0.212761,0.896069,0.627146,0.407895,0.221451,0.197796,0.0282065,0.811938,0.660444,0.351674,0.678092,0.59929,0.402457,0.791344,0.34256,0.927763,0.141716,0.0376702,0.822638,0.537005,0.638758,0.187532,0.0113934,0.525738,0.999123,0.487276,0.734266,0.943197,0.195741,0.0225173,0.76618,0.867465,0.411751,0.216077,0.822322,0.951639,0.760744,0.0501638,0.290202,0.144994,0.684609,0.850592,0.86792,0.606981,0.0384663,0.748512,0.485035,0.902808,0.780278,0.636884,0.945259,0.862692,0.0640863,0.305566,0.182014,0.122791,0.934874,0.440232,0.306071,0.255739,0.534649,0.99506,0.294346,0.820507,0.627704,0.538809,0.467324,0.970883,0.194436,0.254506,0.815504,0.635438,0.457758,0.13568,0.434088,0.869239,0.0740737,0.21713,0.51929,0.79404,0.194705,0.987699,0.321706,0.745774,0.73118,0.771881,0.766404,0.65263,0.534885,0.168404,0.48245,0.0674831,0.229571,0.562165,0.548073,0.718139,0.875031,0.260085,0.385987,0.989302,0.142615,0.718723,0.395372,0.882917,0.53355,0.325518,0.966044,0.433523,0.262322,0.387992,0.250703,0.282692,0.0514483,0.106534,0.769044,0.309176,0.310933,0.788679,0.854662,0.336849,0.23994,0.609617,0.378046,0.887231,0.711828,0.51585,0.26712,0.546154,0.439474,0.511581,0.729912,0.0589352,0.528096,0.852246,0.262424,0.122608,0.341646,0.389463,0.708158,0.442687,0.0392315,0.221307,0.892986,0.909284,0.62944,0.432482,0.553076,0.195171,0.972866,0.116555,0.838423,0.805142,0.594036,0.915222,0.311588,0.128895,0.285334,0.370094,0.392403,0.956928,0.764095,0.554265,0.46309,0.687514,0.667398,0.722582,0.128523,0.768232,0.805296,0.642181,0.1934,0.0497962,0.899995,0.108609,0.548204,0.674058,0.457704,0.198592,0.730863,0.44829,0.42547,0.843011,0.249557,0.373512,0.530427,0.459993,0.861635,0.323821,0.818513,0.267405,0.12331,0.685336,0.437499,0.168818,0.391329,0.834935,0.55857,0.694087,0.10946,0.884408,0.51424,0.184891,0.899811,0.618269,0.249502,|0.721447,0.400744,0.161999,0.864217,0.350519,0.54086,0.817771,0.910676,0.519971,0.676162,0.540926,0.185299,0.276501,0.714058,0.0274211,0.875203,0.885693,0.419988,0.183525,0.825011,0.714381,0.884558,0.517687,0.853458,0.902147,0.751198,0.302881,0.769338,0.144285,0.0948192,0.655919,0.644642,0.83747,0.945236,0.232508,0.731626,0.0997462,0.971422,0.31152,0.81179,0.756002,0.155285,0.111533,0.840353,0.43513,0.0198274,0.344657,0.33625,0.243179,0.756823,0.534258,0.953931,0.7422,0.929821,0.302387,0.801961,0.446032,0.138809,0.249697,0.65658,0.65729,0.181725,0.757795,0.683014,0.439049,0.0409661,0.234404,0.915261,0.189922,0.700816,0.0775934,0.488906,0.696095,0.295502,0.926934,0.926773,0.791765,0.136512,0.866556,0.542484,0.0908931,0.637944,0.795691,0.479361,0.824982,0.374752,0.496068,0.368542,0.574818,0.417672,0.563121,0.529335,0.500084,0.843318,0.810798,0.239347,0.225359,0.759345,0.885646,0.0970849,0.932433,0.30749,0.289273,0.443902,0.833273,0.258616,0.962173,0.510679,0.275614,0.662371,0.139692,0.898469,0.777756,0.30037,0.557604,0.928203,0.0160806,0.308067,0.385475,0.771556,0.146372,0.151582,0.0254624,0.510255,0.545059,0.148212,0.534199,0.0668417,0.174751,0.344966,0.82838,0.866124,0.978163,0.000551283,0.999534,0.425491,0.786061,0.0875921,0.995728,0.691916,0.111358,0.276859,0.762106,0.214816,0.296048,0.276715,0.659024,0.190679,0.845098,0.671683,0.064074,0.279316,0.952861,0.875311,0.783845,0.404687,0.454236,0.859663,0.611577,0.830767,0.565925,0.995709,0.38013,0.968032,0.319816,0.757223,0.608173,0.134958,0.215997,0.841245,0.0415316,0.64413,0.75503,0.985064,0.498222,0.509612,0.771853,0.613247,0.897648,0.190505,0.678904,0.751942,0.840801,0.574353,0.104668,0.0749813,0.271359,0.259915,0.599586,0.626669,0.8957,0.968793,0.893989,0.636205,0.460212,0.822999,0.646482,0.652931,0.612811,0.710561,0.479363,0.403091,0.320731,0.129229,0.79447,0.611007,0.404996,0.679173,0.793796,0.653635,0.478806,0.719742,0.937855,0.754176,0.675857,0.329753,0.543043,0.0976325,0.799513,0.402484,0.918945,0.106624,0.319172,0.108624,0.220765,0.0353645,0.699589,0.00188386,0.399876,0.470746,0.670097,0.334204,0.0151863,0.0443984,0.471545,0.18704,0.00690019,0.395724,0.800632,0.0227948,0.431006,0.108544,0.504663,0.205135,0.706016,0.899436,0.36066,0.831208,0.7584,0.499014,0.76741,0.272197,0.594735,0.46967,0.0259473,0.974281,0.100848,0.885811,0.305338,0.474503,0.387706,0.751844,0.792326,0.563488,0.923518,0.167154,0.453636,0.480783,0.0776844,0.754267,0.0389776,0.925565,0.788878,0.755458,0.698564,0.988732,0.00434548,0.856952,0.460847,0.817167,0.0357004,0.271689,0.285444,0.0333269,0.776856,0.874215,0.0327378,0.42874,0.901428,0.673206,0.287067,0.609005,0.913745,0.276351,0.856906,0.998771,0.055761,0.321329,0.952999,0.336949,0.778565,0.469471,0.881417,0.0685791,0.558046,0.855744,0.736619,0.923418,0.338846,0.719287,0.563761,0.814514,0.540433,0.267409,0.342488,0.19743,0.0522687,0.409569,0.203922,0.392952,0.0139741,0.8185,0.227233,0.187333,0.815341,0.0295416,0.897552,0.125159,0.922962,0.986494,0.130279,0.274626,0.697068,0.0181318,0.849576,0.848056,0.403945,0.633974,0.513901,0.183809,0.213689,0.774732,0.259392,0.617643,0.350748,0.512588,0.228087,0.73973,0.275273,0.640897,0.24765,0.873517,0.813856,0.572569,0.777646,0.254681,0.68246,0.751817,0.870277,0.479605,0.973619,0.706249,0.473479,0.829287,0.197775,0.290034,0.0531093,0.427809,0.164803,0.278552,0.472863,0.646739,0.00479609,0.079451,0.912243,0.47804,0.0853509,0.77107,0.554163,0.707889,0.824578,0.599416,0.690451,0.985466,0.195769,0.882229,0.329696,0.467295,0.976857,0.841175,0.176734,0.642497,0.173728,0.206745,0.163363,0.370238,0.297716,0.548896,0.498576,0.53888,0.865486,0.751082,0.815036,0.863151,0.815635,0.705323,0.631148,0.201297,0.349587,0.663643,0.106948,0.673755,0.93018,0.431484,0.969833,0.0416966,0.387616,0.614796,0.193638,0.114327,0.570216,0.383348,0.393699,0.368869,0.067997,0.0729862,0.297736,0.160712,0.637137,0.79146,0.8416,0.851213,0.0216138,0.452707,0.58655,0.988653,0.358811,0.510438,0.0471488,0.756739,0.881227,0.767242,0.508007,0.0106491,0.137537,0.274307,0.703729,0.599049,0.0825939,0.0680379,0.150378,0.489333,0.644872,0.718868,0.301425,0.130577,0.565298,0.679989,0.883579,0.539385,0.667872,0.0970282,0.762758,0.974403,0.615749,0.84634,0.0880085,0.158239,0.419633,0.340992,0.718894,0.567755,0.0919221,0.195473,0.583042,0.283029,0.280693,0.910248,0.840927,0.459493,0.801297,0.874961,0.958261,0.00691378,0.801236,0.732309,0.0907334,0.24294,0.91494,0.700043,0.366395,0.774519,0.236317,0.255662,0.081054,0.694071,0.670055,0.633697,0.874952,0.853176,0.237401,0.440372,0.848392,0.445823,0.261096,0.335573,0.969168,0.107216,0.956425,0.907318,0.737864,0.451262,0.407616,0.754317,0.16366,0.0263732,0.324895,0.0688641,0.209432,0.0524877,0.586167,0.421958,0.634768,0.30213,0.591633,0.499496,0.653337,0.236181,0.174212,0.482541,0.148106,0.0696606,0.988889,0.900782,0.25509,0.742507,0.0263653,0.824166,0.344455,0.118553,0.787832,0.923108,0.150219,0.559253,0.738696,0.992539,0.997434,0.937985,0.684932,0.610453,0.551554,0.666288,0.753599,0.200334,0.187906,0.767669,0.503701,0.313603,0.106958,0.397396,0.77756,0.883791,0.12003,0.720668,0.035149,0.0904388,0.571138,0.619459,0.174755,0.417373,0.67778,0.780519,0.462855,0.990244,0.690644,0.191148,0.0686719,0.042478,0.732006,0.936334,0.523396,0.44066,0.889624,0.0283316,0.31056,0.890843,0.0636665,0.773659,0.00287151,0.408536,0.95259,0.312344,0.274004,0.625128,0.543227,0.773684,0.873557,0.956267,0.813704,0.284104,0.0227653,0.601184,0.429018,0.590011,0.39518,0.435329,0.90676,0.775884,0.4026,0.581529,0.825808,0.0886376,0.91965,0.207809,0.13177,0.884052,0.955402,0.918405,0.674125,0.333682,0.225218,0.336417,0.0872638,0.14922,0.514982,0.956359,0.4204,0.402338,0.762173,0.434678,0.0231874,0.231901,0.784159,0.117462,0.952897,0.505008,0.466613,0.325297,0.81927,0.134613,0.04185,0.520859,0.240273,0.160196,0.862919,0.691655,0.462908,0.10691,0.863404,0.781114,0.159102,0.302547,0.0484256,0.465809,0.434287,0.819932,0.122508,0.791243,0.392737,0.891027,0.478793,0.887724,0.332462,0.261751,0.911786,0.503363,0.978271,0.891211,0.8571,0.420654,0.902223,0.455506,0.679825,0.000669062,0.0300537,0.752941,0.697128,0.0561728,0.489986,0.696841,0.474039,0.542588,0.0631008,0.911618,0.0919347,0.79814,0.176496,0.185123,0.939139,0.160062,0.319185,0.204121,0.543132,0.576349,0.113936,0.125092,0.53605,0.791766,0.990526,0.341495,0.476605,0.293902,0.0632542,0.983766,0.485973,0.830516,0.112612,0.836746,0.623542,0.202151,0.880144,0.259509,0.268657,0.547093,0.406362,0.114171,0.224837,0.744986,0.168949,0.168058,0.282334,0.572098,0.554269,0.289944,0.873886,0.991586,0.95242,0.786532,0.762675,0.218533,0.391967,0.345788,0.545959,0.987738,0.502292,0.925184,0.756384,0.0430403,0.65938,0.809916,0.273548,0.220624,0.733796,0.243056,0.883294,0.608054,0.331239,0.513584,0.5456,0.506759,0.794059,0.101222,0.348381,0.158214,0.0465648,0.488128,0.91367,0.87565,0.728097,0.235158,0.562231,0.616086,0.75074,0.384284,0.796347,0.648356,0.675386,0.18165,0.187944,0.831764,0.563421,0.51831,0.56023,0.329792,0.0110538,0.863585,0.31437,0.68547,0.60632,0.785057,0.0411232,0.337334,0.185407,0.980772,0.165894,0.575724,0.0202544,0.835583,0.726059,0.367359,0.917743,0.898559,0.128944,0.481709,0.475068,0.722146,0.699099,0.0923539,0.38096,0.0130822,0.0516911,0.338325,0.670756,0.0972188,0.185877,0.329798,0.163059,0.316192,0.829823,0.0449514,0.275975,0.596763,0.831514,0.742588,0.0215921,0.326573,0.072987,0.0607249,0.0180836,0.108548,0.679962,0.817382,0.574177,0.51917,0.423313,0.449313,0.790548,0.880791,0.743255,0.543803,0.373043,0.798058,0.259441,0.980528,0.997595,0.0727339,0.372166,0.830024,0.861984,0.264395,0.211357,0.953703,0.19761,0.760164,0.184098,0.179576,0.287501,0.175578,0.912948,0.530208,0.9333,0.379267,0.171083,0.400661,0.443053,0.284668,0.174835,0.239867,0.667726,0.159763,0.973719,0.19683,0.00603271,0.971569,0.867066,0.704356,0.474491,0.603396,0.766237,0.229707,0.16287,0.193322,0.44883,0.379598,0.713724,0.798497,0.228417,0.960238,0.575067,0.801383,0.124382,0.929003,0.0326505,0.801246,0.993656,0.148965,0.763277,0.873598,0.414577,0.475367,0.49133,0.993333,0.82316,0.78303,0.407182,0.345595,0.679466,0.350596,0.0653101,0.0272303,0.495371,0.179727,0.544473,0.137272,0.122674,0.233994,0.85742,0.69116,0.932867,0.891197,0.779042,0.624406,0.277842,0.382188,0.300729,0.174781,0.578566,0.777565,0.809425,0.748983,0.941966,0.75885,0.435487,0.16145,0.755677,0.0586346,0.521604,0.589862,0.864195,0.951562,0.588556,0.82871,0.614335,0.923927,0.523864,0.416866,0.599775,0.749981,0.589868,0.868607,0.181454,0.472056,0.657975,0.888446,0.15926,0.0058223,0.598436,0.519378,0.0457934,0.302222,0.319474,0.935544,0.817648,0.0212998,0.833584,0.688557,0.585143,0.304308,0.568743,0.384742,0.406344,0.310656,0.519843,0.77283,0.0300645,0.19901,0.297576,0.212258,0.581651,0.067443,0.866333,0.346258,0.302918,0.779543,0.612806,0.993922,0.877094,0.417506,0.770475,0.789778,0.628375,0.87009,0.175551,0.416675,0.453908,0.219796,0.195657,0.592933,0.214037,0.372499,0.220455,0.789263,0.267985,0.145826,0.984458,0.683575,0.605736,0.550923,0.279772,0.835887,|0.614822,0.700586,0.785869,0.469605,0.451364,0.144365,0.424436,0.0396371,0.148754,0.504243,0.962506,0.378172,0.59742,0.325261,0.396153,0.532655,0.758889,0.686867,0.815742,0.668278,0.156074,0.132727,0.631732,0.380019,0.513568,0.626717,0.038038,0.273179,0.879876,0.124822,0.0610307,0.60733,0.081499,0.693111,0.398586,0.372088,0.89017,0.90463,0.219488,0.679161,0.750119,0.609277,0.914535,0.128119,0.366013,0.592607,0.197196,0.540212,0.0910408,0.385401,0.16475,0.98235,0.615759,0.309432,0.00474787,0.748603,0.688203,0.0809327,0.535009,0.0574591,0.153762,0.757168,0.159574,0.827273,0.0137858,0.495284,0.524766,0.424256,0.48506,0.0295075,0.825197,0.148497,0.319051,0.553705,0.960711,0.69641,0.830886,0.939776,0.297661,0.68125,0.0209402,0.681249,0.590053,0.922704,0.0094943,0.5232,0.903876,0.236057,0.794235,0.847773,0.734715,0.571126,0.614391,0.507433,0.145434,0.544196,0.85289,0.336729,0.685994,0.079358,0.743657,0.384639,0.568228,0.347294,0.486503,0.897589,0.021174,0.0557438,0.283975,0.576336,0.320894,0.19831,0.791625,0.848523,0.411763,0.517468,0.953134,0.650508,0.457249,0.237111,0.0192959,0.926909,0.940081,0.819821,0.363716,0.573278,0.53317,0.642165,0.537045,0.689581,0.213906,0.19489,0.625143,0.13214,0.0400353,0.15261,0.944888,0.627349,0.756983,0.474456,0.982311,0.256652,0.846636,0.590801,0.883368,0.411686,0.648321,0.631119,0.282352,0.291103,0.914927,0.949632,0.590904,0.510763,0.327656,0.856985,0.201092,0.172712,0.317562,0.307678,0.120217,0.579061,0.0647966,0.534069,0.991253,0.48758,0.879619,0.136152,0.192163,0.592754,0.923618,0.295921,0.423751,0.453615,0.162861,0.559499,0.623079,0.333424,0.455481,0.316286,0.0809423,0.0119607,0.288345,0.392385,0.956119,0.138135,0.258632,0.273533,0.813188,0.0908326,0.672333,0.400567,0.42338,0.831605,0.522983,0.268207,0.157077,0.209459,0.867083,0.291514,0.93548,0.786609,0.0372553,0.906412,0.149604,0.544908,0.811784,0.878262,0.763035,0.807282,0.876294,0.383244,0.167739,0.667863,0.909837,0.378485,0.82748,0.806853,0.19482,0.0803244,0.216002,0.0765526,0.865174,0.220227,0.465387,0.585084,0.235372,0.687047,0.093914,0.601601,0.587734,0.709388,0.961374,0.523821,0.583633,0.469736,0.331582,0.463581,0.19501,0.336907,0.562481,0.026559,0.63929,0.307752,0.688584,0.750902,0.534872,0.118483,0.382156,0.824632,0.530504,0.620219,0.109469,0.756703,0.058507,0.13584,0.25603,0.896598,0.251604,0.578714,0.604759,0.0448648,0.449806,0.741593,0.0594433,0.567916,0.893325,0.819321,0.393705,0.264955,0.0283316,0.83933,0.0598946,0.7387,0.186343,0.623523,0.204406,0.709188,0.440273,0.464091,0.479768,0.565571,0.981601,0.301419,0.523603,0.27105,0.58526,0.358885,0.718007,0.084639,0.586507,0.837796,0.257994,0.0575029,0.269359,0.386607,0.710717,0.663735,0.939909,0.0948558,0.774225,0.503469,0.839184,0.138749,0.979032,0.661981,0.128902,0.591005,0.521315,0.296105,0.179221,0.812731,0.59576,0.737123,0.367571,0.525285,0.994188,0.988976,0.884122,0.0742918,0.403985,0.436614,0.507827,0.557277,0.178316,0.841746,0.509252,0.0432508,0.279616,0.634865,0.949294,0.918664,0.0451994,0.386821,0.436863,0.882907,0.346796,0.259001,0.159078,0.81717,0.864191,0.394469,0.318873,0.233038,0.882944,0.899443,0.285721,0.540153,0.482123,0.552666,0.38049,0.822524,0.0893416,0.922774,0.871405,0.660382,0.727027,0.351094,0.933338,0.0248896,0.0540196,0.549337,0.89666,0.870634,0.427594,0.366155,0.119636,0.797483,0.224391,0.756789,0.493944,0.148152,0.364544,0.623449,0.435353,0.306947,0.7751,0.200982,0.0610446,0.390725,0.100122,0.241741,0.305224,0.983072,0.536125,0.491859,0.0594466,0.0603865,0.748701,0.107993,0.908132,0.187698,0.001046,0.82305,0.0833665,0.264173,0.0325352,0.724712,0.428688,0.915855,0.581517,0.546698,0.18087,0.411441,0.570834,0.161853,0.106939,0.486972,0.27782,0.862492,0.449389,0.773771,0.209554,0.400601,0.690623,0.691438,0.787012,0.0758496,0.489538,0.526918,0.0753297,0.0381755,0.819005,0.168232,0.282365,0.519432,0.967741,0.00495416,0.27372,0.936337,0.810233,0.164365,0.131724,0.774981,0.390052,0.0534113,0.812273,0.451958,0.822344,0.969925,0.0427045,0.660265,0.870604,0.817139,0.805905,0.343479,0.303515,0.848626,0.132927,0.237693,0.4578,0.32181,0.99559,0.477977,0.981063,0.284525,0.190512,0.971323,0.600088,0.166813,0.59565,0.370024,0.454379,0.116604,0.758849,0.913354,0.874867,0.45771,0.5228,0.628606,0.841222,0.423785,0.95267,0.62407,0.783045,0.092515,0.306669,0.122026,0.0130109,0.0479402,0.0973675,0.79526,0.97811,0.422388,0.100543,0.555484,0.428748,0.449499,0.283141,0.290983,0.744025,0.805724,0.612651,0.738024,0.602133,0.190366,0.580857,0.799049,0.45761,0.470834,0.743284,0.920976,0.481769,0.0444874,0.353708,0.637692,0.546863,0.426604,0.0591089,0.814081,0.245024,0.614916,0.258476,0.414775,0.60419,0.75008,0.253852,0.134031,0.148538,0.828722,0.216579,0.776793,0.593333,0.823132,0.469552,0.763607,0.311146,0.266057,0.127888,0.228038,0.253058,0.506473,0.728266,0.884836,0.301657,0.775964,0.794177,0.711837,0.675585,0.605372,0.124581,0.891728,0.947176,0.758733,0.494118,0.894672,0.241147,0.740146,0.191202,0.702757,0.52171,0.875609,0.681527,0.0191145,0.0443229,0.813435,0.0568025,0.201508,0.507231,0.547266,0.944697,0.604752,0.663689,0.240905,0.246165,0.448895,0.433453,0.589621,0.775351,0.501188,0.950263,0.078428,0.211592,0.634153,0.916296,0.766362,0.599627,0.679406,0.17284,0.775284,0.701162,0.472533,0.326924,0.922143,0.0734753,0.213309,0.120203,0.510253,0.320572,0.713132,0.822378,0.360118,0.584809,0.496655,0.874421,0.916957,0.0291489,0.792758,0.688944,0.456296,0.457001,0.71312,0.349344,0.716663,0.167875,0.365023,0.603683,0.716528,0.588679,0.749535,0.187675,0.991512,0.0104294,0.256949,0.659145,0.25952,0.39335,0.574692,0.800279,0.341985,0.562543,0.364698,0.469044,0.756333,0.32812,0.119601,0.394014,0.649325,0.473355,0.157236,0.211251,0.275784,0.494434,0.816322,0.343772,0.840471,0.253103,0.223331,0.746439,0.606779,0.725601,0.872486,0.843446,0.807602,0.153606,0.469387,0.189994,0.447076,0.252085,0.646855,0.382146,0.13361,0.129509,0.684731,0.585961,0.134233,0.136812,0.766584,0.787296,0.567625,0.873054,0.316994,0.398562,0.680814,0.964616,0.0824789,0.359872,0.594919,0.91173,0.0248038,0.907754,0.922363,0.164687,0.607322,0.207247,0.443132,0.70457,0.853224,0.899041,0.308439,0.0890086,0.0443086,0.936373,0.096139,0.650096,0.617647,0.454956,0.709521,0.378718,0.0333397,0.289666,0.612681,0.713625,0.395385,0.168131,0.412126,0.258729,0.7567,0.292428,0.184665,0.704445,0.435891,0.465285,0.550393,0.181569,0.0832886,0.854996,0.717852,0.664346,0.757965,0.208846,0.0401542,0.802748,0.233452,0.760256,0.434366,0.339756,0.865174,0.938927,0.993352,0.760596,0.632644,0.292876,0.272721,0.852442,0.77192,0.337099,0.387657,0.757005,0.984083,0.624643,0.400629,0.737917,0.19248,0.005557,0.423688,0.425623,0.1975,0.104649,0.900498,0.938864,0.929823,0.501408,0.929405,0.212533,0.338114,0.0718015,0.680762,0.610825,0.690442,0.336418,0.915509,0.356455,0.387745,0.294908,0.542357,0.0837386,0.148208,0.0578657,0.0483903,0.16571,0.826689,0.0270172,0.0981286,0.811692,0.281675,0.338478,0.95858,0.650928,0.730593,0.00699759,0.23728,0.598924,0.580673,0.531256,0.503781,0.0295257,0.705162,0.543439,0.296771,0.498627,0.53659,0.520001,0.808089,0.701147,0.854683,0.815168,0.648219,0.68508,0.140471,0.837232,0.79602,0.594235,0.526622,0.0294204,0.207833,0.845185,0.92218,0.303869,0.741117,0.220346,0.894152,0.0263773,0.832676,0.660462,0.900112,0.853982,0.980682,0.953383,0.67002,0.661832,0.545587,0.347417,0.217549,0.902859,0.824831,0.116143,0.51688,0.788213,0.717644,0.29422,0.902677,0.484804,0.385676,0.691433,0.871816,0.488033,0.929851,0.524738,0.338132,0.12034,0.00880367,0.527542,0.622164,0.431864,0.424685,0.55281,0.0486211,0.076826,0.550572,0.787158,0.886694,0.405626,0.22867,0.746081,0.674129,0.988744,0.381198,0.84692,0.9615,0.877349,0.723864,0.680228,0.188656,0.743967,0.831367,0.942584,0.523998,0.473506,0.350631,0.680542,0.992245,0.959074,0.215247,0.952635,0.255044,0.277878,0.117451,0.219817,0.630789,0.177362,0.566717,0.758501,0.452289,0.176066,0.94702,0.917997,0.729459,0.762019,0.727673,0.414274,0.68267,0.516956,0.445358,0.836792,0.459233,0.664519,0.0189627,0.175221,0.927353,0.202943,0.283667,0.936537,0.439937,0.654973,0.0441845,0.520229,0.724325,0.255451,0.156691,0.244416,0.45121,0.472842,0.240561,0.377854,0.614892,0.758682,0.545324,0.543914,0.896654,0.415937,0.216826,0.402131,0.527097,0.431126,0.280104,0.500644,0.651267,0.544776,0.457449,0.323104,0.572885,0.552057,0.220495,0.0749795,0.93018,0.303582,0.458617,0.753345,0.737141,0.517157,0.906101,0.0839925,0.00876439,0.46642,0.398226,0.567174,0.344918,0.234223,0.00987673,0.314415,0.87442,0.186326,0.697162,0.145888,0.555879,0.198511,0.431594,0.132209,0.00899208,0.565405,0.425762,0.65087,0.705057,0.0686361,0.210077,0.270849,0.400594,0.135996,0.389899,0.788796,0.767883,0.337767,0.977561,0.0346169,0.935505,0.155512,0.131642,0.419217,0.461017,0.455894,0.0369062,0.629553,0.876584,0.340282,0.592351,0.148938,0.844244,0.909759,0.883638,0.691398,0.083785,0.492335,0.15695,0.504832,0.441103,0.939309,0.891245,0.190643,0.494478,0.0390043,0.245509,0.904453,0.0993348,0.289882,0.466336,0.490411,0.379842,0.25431,0.0852312,|0.821261,0.292779,0.16178,0.711906,0.0683391,0.00861043,0.541823,0.0925656,0.0609164,0.159201,0.52652,0.425261,0.204973,0.803102,0.810408,0.528849,0.370827,0.222242,0.108235,0.698418,0.190124,0.779228,0.00803411,0.333993,0.912857,0.53838,0.0872512,0.0916145,0.133836,0.727179,0.458971,0.88554,0.851075,0.477665,0.803138,0.108376,0.130662,0.583778,0.998071,0.60411,0.321274,0.764565,0.591453,0.564138,0.749613,0.496783,0.876276,0.733657,0.449726,0.507514,0.355809,0.836403,0.909507,0.504555,0.370407,0.537936,0.824946,0.683352,0.628365,0.474509,0.919362,0.598404,0.262922,0.187862,0.447985,0.145009,0.634522,0.480982,0.917084,0.328306,0.677215,0.561063,0.965108,0.676002,0.792105,0.490091,0.749851,0.121891,0.911368,0.0783443,0.428593,0.413965,0.636685,0.0775594,0.969689,0.779759,0.822245,0.582782,0.931829,0.148368,0.981325,0.947354,0.0223272,0.631153,0.19421,0.749126,0.440372,0.187756,0.564046,0.383965,0.411383,0.140454,0.870319,0.287826,0.266237,0.400956,0.356084,0.225877,0.574888,0.29305,0.371767,0.959107,0.876695,0.298936,0.479609,0.865478,0.267349,0.701868,0.813634,0.909288,0.620839,0.685747,0.793595,0.286667,0.494849,0.806469,0.473389,0.0139951,0.522354,0.790447,0.529849,0.668518,0.683761,0.249823,0.235969,0.519268,0.807767,0.19497,0.111768,0.561205,0.754501,0.542933,0.111803,0.381363,0.0727783,0.0376629,0.997931,0.943052,0.283889,0.959983,0.473131,0.194294,0.140224,0.378535,0.832008,0.815335,0.370647,0.215103,0.646985,0.0955877,0.165616,0.334877,0.950232,0.372061,0.227993,0.52231,0.461931,0.326259,0.691442,0.999336,0.349386,0.702021,0.611408,0.914739,0.992858,0.806115,0.403363,0.801383,0.234931,0.130138,0.600026,0.886452,0.794392,0.897742,0.348908,0.674509,0.560106,0.369435,0.0998918,0.229172,0.555967,0.428852,0.309659,0.959683,0.71426,0.336452,0.635102,0.969287,0.0283715,0.0387951,0.143395,0.553305,0.886776,0.454796,0.706193,0.529749,0.622673,0.490031,0.34246,0.738471,0.368294,0.640331,0.93815,0.823448,0.307519,0.60816,0.851991,0.41542,0.140302,0.349472,0.344424,0.538738,0.431003,0.119916,0.721201,0.743608,0.469959,0.410975,0.839397,0.939297,0.0252808,0.43028,0.561652,0.372013,0.631941,0.808499,0.322721,0.382625,0.904699,0.226181,0.599472,0.00607395,0.494903,0.725637,0.0847495,0.700254,0.465046,0.871467,0.52617,0.378397,0.250466,0.453967,0.405666,0.347533,0.471771,0.784231,0.355788,0.631725,0.487803,0.753392,0.456715,0.77609,0.748004,0.0208728,0.922302,0.195571,0.495019,0.349939,0.137573,0.666917,0.245723,0.276218,0.503663,0.0189015,0.207521,0.979468,0.21951,0.0884307,0.825989,0.259841,0.853455,0.0512898,0.0493156,0.662595,0.736213,0.85673,0.678803,0.187718,0.00469464,0.739372,0.51331,0.959651,0.826661,0.149396,0.205372,0.810083,0.967393,0.425576,0.925726,0.324307,0.272755,0.484734,0.709624,0.872646,0.118524,0.183097,0.936317,0.779581,0.560475,0.319261,0.53684,0.728386,0.681226,0.75688,0.35483,0.761093,0.585293,0.576154,0.199756,0.0013575,0.246918,0.682862,0.0434921,0.257084,0.0290922,0.390074,0.604288,0.627516,0.104809,0.148231,0.48228,0.298975,0.0824445,0.456297,0.0205918,0.142155,0.763579,0.25725,0.575922,0.901114,0.763364,0.792289,0.328393,0.685321,0.129374,0.758159,0.836391,0.742633,0.290127,0.0748835,0.0438123,0.0864918,0.484117,0.103494,0.598303,0.315651,0.82505,0.642402,0.0764778,0.156068,0.279403,0.0314605,0.990781,0.408563,0.554459,0.649636,0.360114,0.208899,0.747674,0.827661,0.745614,0.0371807,0.421338,0.244665,0.884506,0.757641,0.281769,0.918224,0.872979,0.295387,0.17949,0.0533535,0.572833,0.0807697,0.659622,0.0837953,0.479947,0.471405,0.610932,0.670994,0.73289,0.433702,0.56415,0.110157,0.211429,0.390016,0.943295,0.243417,0.326136,0.468221,0.884215,0.597259,0.532123,0.72684,0.820953,0.117016,0.694801,0.95029,0.346898,0.829366,0.839553,0.378432,0.783988,0.407395,0.760358,0.621973,0.969751,0.0205862,0.747124,0.737286,0.588549,0.51342,0.0422862,0.556096,0.688075,0.0745365,0.558053,0.0588015,0.367403,0.623669,0.831371,0.128225,0.431024,0.969728,0.591104,0.820852,0.477943,0.778053,0.968057,0.171186,0.988876,0.159018,0.00907189,0.456969,0.63805,0.778907,0.137053,0.035074,0.549236,0.411906,0.546181,0.976102,0.458699,0.917535,0.710917,0.683071,0.52371,0.627803,0.691405,0.185054,0.0303012,0.364323,0.533419,0.154327,0.051752,0.535205,0.00100261,0.686398,0.670533,0.137941,0.172659,0.00536782,0.798734,0.39032,0.579091,0.611047,0.027665,0.410091,0.855805,0.800071,0.839113,0.851805,0.0459899,0.322507,0.530078,0.639618,0.855,0.645589,0.964825,0.509046,0.141954,0.0493482,0.834692,0.489972,0.46361,0.0528503,0.454573,0.165432,0.613335,0.84516,0.912784,0.987093,0.569815,0.125803,0.315606,0.75311,0.508056,0.958509,0.0129735,0.180979,0.570595,0.96097,0.0869945,0.676834,0.363562,0.580561,0.497018,0.343732,0.304321,0.417342,0.647405,0.433436,0.391283,0.307723,0.449471,0.13556,0.852666,0.172249,0.384494,0.478895,0.727003,0.304672,0.798004,0.841866,0.764362,0.376338,0.742726,0.446006,0.601907,0.00348645,0.550429,0.204876,0.682435,0.659172,0.610832,0.636268,0.150412,0.0490284,0.200539,0.902357,0.52642,0.404294,0.541567,0.513898,0.753163,0.805095,0.571,0.220574,0.639139,0.0691038,0.717078,0.928616,0.460324,0.244293,0.802003,0.929984,0.772627,0.677401,0.302486,0.255704,0.673932,0.195059,0.301551,0.136563,0.681642,0.287285,0.128306,0.585026,0.109623,0.132243,0.420603,0.808541,0.80681,0.846671,0.278084,0.311945,0.610697,0.0911683,0.476488,0.346159,0.064418,0.74119,0.507732,0.0331693,0.486111,0.575077,0.890845,0.668835,0.280333,0.522662,0.676963,0.644709,0.438803,0.144246,0.194085,0.889878,0.722287,0.322728,0.63971,0.921138,0.455958,0.43956,0.85789,0.897294,0.348399,0.0447927,0.864849,0.236224,0.550413,0.699055,0.41434,0.373244,0.441545,0.0475993,0.932519,0.714608,0.50296,0.480156,0.475997,0.644932,0.0966944,0.939956,0.141889,0.436639,0.45004,0.91372,0.47654,0.207188,0.456412,0.721153,0.215338,0.614064,0.061039,0.97506,0.221151,0.965805,0.0333237,0.565844,0.223277,0.574261,0.561797,0.864923,0.772544,0.267604,0.943285,0.499145,0.352016,0.957978,0.0420892,0.801563,0.53574,0.916893,0.0959194,0.454633,0.756974,0.890802,0.689427,0.42543,0.610314,0.130372,0.985546,0.298225,0.784891,0.104475,0.899466,0.297747,0.728599,0.925732,0.434888,0.503786,0.46331,0.645705,0.231885,0.188852,0.786984,0.562526,0.878958,0.260857,0.536516,0.787255,0.83294,0.245788,0.751431,0.280686,0.0745787,0.307372,0.871769,0.603241,0.313739,0.306983,0.0104095,0.643657,0.281204,0.568043,0.079729,0.831329,0.034891,0.64757,0.0636173,0.625846,0.287357,0.377784,0.626622,0.97088,0.215866,0.339126,0.828482,0.760293,0.0838161,0.727326,0.515994,0.847547,0.466038,0.415981,0.798809,0.366571,0.887245,0.150193,0.333564,0.389468,0.257308,0.652532,0.772082,0.754531,0.305311,0.0812343,0.0932276,0.312819,0.359808,0.829836,0.0362698,0.874592,0.70293,0.654471,0.254627,0.152402,0.0396802,0.607264,0.131116,0.257873,0.180512,0.861582,0.216713,0.103047,0.597393,0.423788,0.648687,0.599559,0.36482,0.73385,0.547525,0.913064,0.013886,0.199478,0.832265,0.232557,0.357191,0.354417,0.7425,0.701808,0.942568,0.0298871,0.538989,0.772134,0.877601,0.518905,0.597111,0.338116,0.682039,0.544899,0.903306,0.763746,0.750654,0.141907,0.260035,0.122618,0.719114,0.773129,0.758363,0.986994,0.452979,0.388682,0.295752,0.892305,0.636514,0.804924,0.964932,0.939714,0.0239986,0.0389628,0.970519,0.170592,0.194415,0.0967465,0.983942,0.311147,0.455367,0.187564,0.0514553,0.683918,0.63932,0.96514,0.113449,0.00265992,0.555961,0.211289,0.081397,0.661482,0.65659,0.336387,0.880563,0.0165593,0.2959,0.0197741,0.539311,0.615014,0.279202,0.941479,0.825756,0.801789,0.0898759,0.813122,0.522634,0.827105,0.0477057,0.146148,0.0868877,0.754088,0.41977,0.856727,0.763948,0.106123,0.161131,0.350215,0.540033,0.608083,0.394989,0.972519,0.776666,0.846026,0.343566,0.0393921,0.764144,0.528457,0.977071,0.805349,0.522892,0.180962,0.684598,0.377959,0.227311,0.170384,0.676202,0.750174,0.0161372,0.752307,0.220516,0.572068,0.792267,0.971737,0.358603,0.64765,0.9433,0.315707,0.91594,0.0463039,0.53587,0.442522,0.342942,0.663675,0.674939,0.714305,0.913289,0.297674,0.305707,0.472348,0.419314,0.197472,0.197437,0.753469,0.984565,0.327362,0.93162,0.927714,0.273759,0.830627,0.42724,0.225741,0.395683,0.0466634,0.726414,0.906346,0.877832,0.00753444,0.529273,0.30249,0.169465,0.407905,0.294216,0.862934,0.00553596,0.632118,0.803694,0.667772,0.700857,0.991669,0.169864,0.568262,0.0954785,0.596484,0.481231,0.282462,0.151471,0.101108,0.759061,0.798267,0.47548,0.997268,0.0858366,0.125074,0.569332,0.340388,0.771293,0.290076,0.553023,0.411693,0.762645,0.994955,0.185509,0.756945,0.14472,0.0964727,0.171689,0.0479625,0.47358,0.444388,0.893162,0.832302,0.816195,0.944284,0.526721,0.803098,0.707002,0.832144,0.833779,0.203064,0.436754,0.911808,0.385759,0.629978,0.159968,0.609364,0.253515,0.765258,0.524021,0.0406911,0.724091,0.996855,0.0298812,0.453459,0.475778,0.331655,0.0867898,0.311091,0.162582,0.679878,0.655822,0.517071,0.0622184,0.0306158,0.685511,0.0881453,0.0705572,0.74144,0.951538,0.353926,0.134433,0.458935,0.75512,0.569869,0.216734,0.425688,0.445679,0.29926,0.167499,0.635051,0.55315,0.672515,0.669748,0.0715815,|0.585106,0.580231,0.0325107,0.155524,0.475736,0.90413,0.528772,0.169478,0.627065,0.170704,0.176772,0.866751,0.775329,0.243899,0.459002,0.584912,0.579334,0.291317,0.0476404,0.66167,0.302438,0.336724,0.796776,0.519291,0.307523,0.458967,0.352013,0.187207,0.25668,0.536404,0.342096,0.190653,0.163127,0.457656,0.394431,0.332794,0.332508,0.442334,0.813801,0.176497,0.272824,0.642062,0.202661,0.879222,0.116296,0.868367,0.747655,0.480017,0.378785,0.515723,0.579075,0.815397,0.0388394,0.644693,0.144245,0.459229,0.114386,0.268902,0.160851,0.928905,0.125673,0.744322,0.86925,0.17854,0.613204,0.976105,0.559435,0.57543,0.905896,0.335855,0.129912,0.932724,0.537645,0.928143,0.821594,0.0320404,0.139292,0.53528,0.5633,0.771098,0.786397,0.55846,0.724743,0.0807481,0.483857,0.158266,0.375095,0.553304,0.625427,0.781493,0.485576,0.664823,0.227587,0.19238,0.711521,0.413597,0.80004,0.0988833,0.969385,0.00594133,0.0288451,0.225727,0.166573,0.244304,0.693943,0.157988,0.587053,0.676616,0.336895,0.581684,0.605879,0.050994,0.522787,0.225464,0.275702,0.0271063,0.169189,0.0418659,0.68719,0.765651,0.978662,0.427759,0.124416,0.566184,0.735312,0.65953,0.148662,0.425082,0.540753,0.341005,0.175309,0.665454,0.585971,0.876026,0.7511,0.0673174,0.39025,0.649576,0.536541,0.91338,0.463968,0.955882,0.385472,0.333708,0.219453,0.944116,0.0107575,0.762426,0.936175,0.0859417,0.898177,0.547134,0.513523,0.0284949,0.800774,0.649536,0.447822,0.255598,0.641466,0.507946,0.909085,0.405826,0.197779,0.968879,0.726443,0.767168,0.756959,0.525857,0.603868,0.343517,0.51239,0.105952,0.507686,0.137202,0.745684,0.722796,0.925012,0.656995,0.633303,0.0321403,0.60652,0.444435,0.921957,0.443422,0.640929,0.664815,0.422612,0.290519,0.266516,0.161158,0.490287,0.400428,0.176678,0.078022,0.782035,0.290345,0.963,0.915017,0.352944,0.95902,0.170161,0.452736,0.312277,0.0181127,0.63989,0.554991,0.516887,0.526771,0.556771,0.115931,0.437291,0.577108,0.887979,0.274905,0.937214,0.188067,0.334471,0.729104,0.0161922,0.618575,0.0626341,0.32101,0.173889,0.450879,0.720286,0.592083,0.665577,0.694625,0.536653,0.911011,0.512176,0.0195133,0.87764,0.750257,0.345916,0.54288,0.755837,0.971782,0.108087,0.290612,0.763378,0.826641,0.05931,0.895863,0.00711173,0.456971,0.926629,0.661642,0.448433,0.413925,0.643967,0.934751,0.933983,0.223608,0.0175985,0.642149,0.637526,0.890185,0.374271,0.795826,0.172307,0.075766,0.332717,0.362397,0.786277,0.739472,0.642195,0.351536,0.870764,0.246111,0.349765,0.461723,0.58328,0.524943,0.182974,0.471404,0.45681,0.237254,0.994142,0.595592,0.651687,0.91113,0.932606,0.174654,0.177119,0.97408,0.673522,0.318147,0.743213,0.740653,0.216675,0.615841,0.812728,0.536989,0.682674,0.78282,0.416655,0.296886,0.185998,0.791635,0.456665,0.784041,0.145573,0.792004,0.268111,0.438877,0.416861,0.344257,0.805285,0.421352,0.359983,0.569887,0.765609,0.494919,0.895342,0.63009,0.780515,0.183056,0.0979169,0.935315,0.898805,0.207444,0.400971,0.751465,0.677633,0.808487,0.438232,0.239819,0.564939,0.0895527,0.273401,0.588914,0.980408,0.0612261,0.879148,0.0401096,0.447893,0.643903,0.906563,0.610764,0.0267527,0.493612,0.366684,0.298742,0.780913,0.86452,0.454962,0.220159,0.221612,0.584279,0.462991,0.527041,0.812804,0.6991,0.997946,0.568638,0.813275,0.459168,0.788926,0.564084,0.45451,0.0815877,0.401236,0.46399,0.622365,0.570717,0.402785,0.441268,0.735312,0.333754,0.732519,0.32192,0.860368,0.367198,0.638254,0.751553,0.447773,0.874152,0.653988,0.565573,0.276664,0.868431,0.470782,0.790355,0.867168,0.971024,0.727731,0.976906,0.211284,0.788205,0.771091,0.306286,0.490304,0.317398,0.792492,0.442073,0.219595,0.593784,0.567224,0.547238,0.173635,0.940799,0.640138,0.668553,0.442704,0.553669,0.512154,0.31999,0.500815,0.701821,0.114603,0.132049,0.526528,0.033491,0.376647,0.118183,0.264666,0.42151,0.968878,0.168546,0.902255,0.155728,0.259237,0.733201,0.285862,0.268828,0.889227,0.834472,0.625849,0.447103,0.0185084,0.260233,0.81709,0.0893742,0.713212,0.894385,0.0554223,0.380096,0.683353,0.704684,0.157964,0.688421,0.381077,0.534806,0.343424,0.175822,0.0835086,0.386817,0.625407,0.8185,0.636762,0.365323,0.0465333,0.917945,0.10645,0.00225163,0.101531,0.315696,0.447717,0.0921975,0.909519,0.518884,0.121337,0.448104,0.234185,0.0586482,0.901099,0.00213695,0.89955,0.0387672,0.331581,0.388529,0.141606,0.130024,0.907815,0.478919,0.721467,0.820839,0.765334,0.983174,0.430226,0.0674928,0.513601,0.702826,0.150434,0.207487,0.748953,0.370219,0.949941,0.219628,0.43116,0.789689,0.998861,0.588982,0.283538,0.221374,0.900869,0.934526,0.0261415,0.698663,0.575182,0.527123,0.826826,0.739127,0.0965328,0.840666,0.790864,0.517389,0.279202,0.427959,0.806648,0.992018,0.950664,0.420352,0.776123,0.59652,0.787528,0.244564,0.383868,0.958737,0.530455,0.0123354,0.622095,0.17499,0.0239083,0.0551224,0.897317,0.10657,0.344272,0.476826,0.455935,0.722646,0.607663,0.687735,0.668802,0.873132,0.11655,0.830326,0.593774,0.618622,0.169143,0.473674,0.152671,0.444097,0.693311,0.92178,0.246356,0.665261,0.182981,0.497611,0.452954,0.783062,0.16541,0.70394,0.81516,0.999086,0.66173,0.0554046,0.139732,0.181805,0.423795,0.706858,0.931976,0.517238,0.571414,0.194725,0.406655,0.796701,0.31904,0.392803,0.171385,0.816102,0.960355,0.118889,0.57237,0.626948,0.927717,0.0284819,0.119949,0.174069,0.860852,0.788444,0.929646,0.0261889,0.693381,0.580309,0.00966489,0.316354,0.0275549,0.0824954,0.725741,0.974698,0.168496,0.641448,0.490479,0.805448,0.511847,0.160773,0.768973,0.471302,0.895134,0.733741,0.313387,0.771792,0.768453,0.669215,0.467499,0.142258,0.811772,0.982101,0.0922924,0.454674,0.172148,0.194347,0.854742,0.728433,0.0184238,0.443568,0.373941,0.320939,0.494792,0.270561,0.842202,0.546131,0.910263,0.625997,0.0716168,0.706917,0.0769904,0.0279754,0.876746,0.395228,0.513478,0.467635,0.946342,0.519116,0.834368,0.985032,0.0954742,0.811217,0.885575,0.611072,0.438186,0.541925,0.580955,0.962073,0.683595,0.160706,0.719882,0.449345,0.277711,0.626509,0.769389,0.354515,0.780323,0.842558,0.798058,0.898435,0.800155,0.89583,0.777037,0.0599716,0.117164,0.799619,0.302892,0.0122127,0.501867,0.577287,0.689531,0.468711,0.264024,0.492079,0.576503,0.492824,0.0752314,0.955113,0.733007,0.315913,0.156278,0.57373,0.938289,0.936407,0.797577,0.0683028,0.626656,0.024571,0.709377,0.0447553,0.877171,0.212066,0.689441,0.830252,0.0218062,0.734666,0.305684,0.782048,0.841932,0.0806408,0.108543,0.655803,0.653012,0.950636,0.897793,0.323056,0.0843458,0.302461,0.841264,0.753803,0.695598,0.185444,0.164663,0.598418,0.0166283,0.983572,0.686255,0.548546,0.915193,0.543986,0.290795,0.0361329,0.512634,0.513464,0.378836,0.861027,0.686483,0.204624,0.771793,0.030753,0.46159,0.136994,0.446581,0.981745,0.535843,0.227779,0.581934,0.0154518,0.984971,0.795587,0.940609,0.0833376,0.396469,0.271266,0.167114,0.0980244,0.839265,0.547168,0.626865,0.847272,0.38294,0.856247,0.799292,0.240729,0.969781,0.352276,0.421508,0.61799,0.498895,0.0711061,0.953675,0.814274,0.135307,0.543236,0.953314,0.487713,0.0792724,0.986095,0.949503,0.320594,0.340611,0.139759,0.911199,0.268561,0.103849,0.70766,0.376525,0.422911,0.489695,0.386659,0.0985045,0.587932,0.410965,0.375976,0.91799,0.441359,0.612004,0.11006,0.401909,0.804376,0.698325,0.332854,0.359789,0.280192,0.410818,0.592846,0.608415,0.510169,0.869287,0.942707,0.171831,0.575919,0.984086,0.88505,0.321573,0.130196,0.98304,0.195423,0.950307,0.647015,0.167106,0.0805243,0.12947,0.465782,0.345354,0.21952,0.553285,0.569469,0.647459,0.147973,0.297029,0.526856,0.337071,0.699674,0.067239,0.675631,0.654382,0.730237,0.784734,0.699192,0.255539,0.773467,0.912867,0.694309,0.174739,0.440344,0.702989,0.997363,0.582475,0.0816261,0.7766,0.111111,0.468569,0.869055,0.90172,0.303274,0.982674,0.539953,0.156665,0.90998,0.461124,0.953049,0.556285,0.769673,0.779121,0.272646,0.939476,0.528643,0.943827,0.256336,0.373778,0.205724,0.186805,0.828876,0.539288,0.688006,0.979325,0.806544,0.92456,0.712285,0.0231452,0.180338,0.839731,0.0588683,0.740577,0.0863197,0.067916,0.757562,0.0581425,0.376212,0.508206,0.0239968,0.732462,0.406815,0.360321,0.475644,0.609605,0.726583,0.479664,0.54373,0.730321,0.317755,0.1367,0.690313,0.365623,0.446521,0.743847,0.931359,0.593488,0.0503672,0.435621,0.0543235,0.0471265,0.153589,0.998718,0.0357473,0.382563,0.828714,0.745539,0.637918,0.281935,0.716977,0.310998,0.19282,0.0268424,0.959883,0.233213,0.270626,0.996495,0.160337,0.433194,0.289313,0.567724,0.350848,0.784409,0.983221,0.995748,0.84326,0.151095,0.0333614,0.163097,0.887317,0.0606697,0.210145,0.921214,0.0814821,0.954958,0.257742,0.349966,0.0823045,0.401423,0.0302591,0.231268,0.958167,0.647868,0.380576,0.771458,0.726549,0.224686,0.00766778,0.156832,0.127896,0.533981,0.892484,0.573284,0.588819,0.501704,0.953392,0.598955,0.110483,0.973054,0.352168,0.989503,0.853489,0.581645,0.574181,0.476109,0.770191,0.872367,0.976138,0.423005,0.157094,0.499893,0.472386,0.949367,0.638505,0.94421,0.480732,0.693689,0.0485148,0.56721,0.135705,0.322176,0.0683551,0.202122,0.610344,0.407874,0.785337,0.438056,0.759002,0.0192768,0.505983,0.245119,0.429213,0.278902,0.886395,0.436101,0.0121768,0.940847,0.896823,0.528739,0.393441,|0.128619,0.759751,0.667171,0.840467,0.741994,0.296677,0.996126,0.782122,0.846025,0.565277,0.602205,0.504318,0.899388,0.878974,0.245598,0.546428,0.301013,0.176118,0.950953,0.111104,0.875524,0.788972,0.995152,0.948434,0.598533,0.646623,0.603592,0.641576,0.756837,0.0305461,0.13169,0.484813,0.377959,0.204593,0.291162,0.657425,0.437896,0.766067,0.53771,0.126779,0.357409,0.889975,0.536051,0.408334,0.474026,0.738736,0.714448,0.295527,0.555468,0.0622702,0.511465,0.977362,0.426313,0.437868,0.631146,0.252276,0.378324,0.666341,0.673213,0.240833,0.77249,0.125613,0.153442,0.502828,0.836608,0.945908,0.450268,0.311315,0.620283,0.76105,0.896574,0.12827,0.905956,0.566037,0.427448,0.9291,0.0110388,0.073236,0.499949,0.871639,0.458243,0.899762,0.667556,0.59708,0.73549,0.453678,0.246198,0.290742,0.977196,0.125529,0.26159,0.420826,0.612908,0.490167,0.103533,0.861206,0.784881,0.313379,0.737494,0.980113,0.775185,0.175745,0.63244,0.915049,0.0575063,0.429043,0.243324,0.481203,0.621723,0.0508135,0.169716,0.33435,0.994234,0.889491,0.415404,0.24138,0.964623,0.0624282,0.424705,0.839641,0.0193514,0.208275,0.435216,0.660619,0.715402,0.612772,0.772596,0.539537,0.863499,0.467366,0.503345,0.35509,0.424117,0.172731,0.169719,0.293563,0.868425,0.567267,0.483907,0.959223,0.14541,0.849436,0.802944,0.183663,0.523575,0.74868,0.905076,0.0283633,0.397482,0.0741451,0.418879,0.266415,0.614212,0.103009,0.230805,0.676292,0.162029,0.327163,0.508201,0.619674,0.260655,0.584553,0.458654,0.86982,0.0378667,0.182781,0.359382,0.785854,0.756968,0.348106,0.108808,0.499886,0.770512,0.926379,0.797304,0.219138,0.527756,0.52777,0.368889,0.372047,0.528598,0.306272,0.941009,0.241324,0.375071,0.956773,0.521979,0.463737,0.177973,0.0110437,0.913014,0.508203,0.0334118,0.5915,0.397201,0.261064,0.564122,0.37709,0.716795,0.176055,0.717133,0.131749,0.521406,0.624514,0.253095,0.0847803,0.135068,0.779809,0.836205,0.51046,0.372573,0.918095,0.892953,0.834953,0.40719,0.0793538,0.14282,0.351722,0.730444,0.871237,0.114155,0.540589,0.874606,0.865803,0.205295,0.840737,0.373027,0.104714,0.108805,0.945183,0.613948,0.333527,0.759141,0.921245,0.0253318,0.447815,0.167386,0.388705,0.749593,0.588803,0.20948,0.893268,0.909321,0.396543,0.825162,0.503373,0.918209,0.889198,0.646885,0.913433,0.76589,0.126776,0.114198,0.669975,0.359387,0.474304,0.687347,0.394681,0.15472,0.212879,0.253034,0.4062,0.802174,0.609313,0.970453,0.429338,0.590782,0.156938,0.327569,0.542461,0.25925,0.558551,0.0746509,0.0182528,0.772241,0.177398,0.956622,0.705554,0.33873,0.817524,0.114723,0.145009,0.804233,0.543296,0.938856,0.159039,0.662871,0.832455,0.999588,0.341744,0.7785,0.562615,0.818233,0.496829,0.381668,0.418954,0.203146,0.230496,0.184485,0.825364,0.953152,0.544512,0.496795,0.575132,0.519284,0.601794,0.555192,0.0377323,0.357753,0.380961,0.21461,0.116025,0.247686,0.769725,0.611663,0.921313,0.831445,0.526678,0.343763,0.156431,0.868272,0.425269,0.244204,0.915327,0.0870755,0.242244,0.530513,0.220479,0.182396,0.702279,0.788995,0.684381,0.652235,0.285895,0.449163,0.332377,0.900794,0.711037,0.397605,0.862989,0.200115,0.791451,0.728953,0.927711,0.00230992,0.593232,0.370471,0.864068,0.150601,0.202676,0.387304,0.388508,0.116497,0.297251,0.519303,0.528763,0.873437,0.596564,0.632131,0.824714,0.710718,0.970931,0.0540109,0.95266,0.970507,0.492134,0.699319,0.176611,0.595263,0.676527,0.604068,0.36942,0.399675,0.868696,0.57811,0.38457,0.367688,0.46111,0.528243,0.821084,0.377015,0.849293,0.671466,0.282201,0.174384,0.948772,0.798757,0.486631,0.729198,0.578868,0.432083,0.959047,0.909568,0.774757,0.092482,0.60692,0.0690574,0.0155809,0.836998,0.414671,0.409475,0.532322,0.788856,0.879151,0.428499,0.570218,0.348114,0.945144,0.319117,0.413039,0.510926,0.234677,0.427438,0.508765,0.967577,0.450477,0.331868,0.274142,0.34506,0.495308,0.063632,0.864268,0.18333,0.764485,0.535245,0.389546,0.857635,0.402099,0.341641,0.216844,0.526746,0.48724,0.4061,0.960765,0.593032,0.74288,0.289092,0.942707,0.967046,0.842105,0.636419,0.701654,0.822501,0.363677,0.631765,0.0390711,0.942169,0.267995,0.505931,0.348579,0.676972,0.500957,0.887789,0.181313,0.618509,0.489408,0.233979,0.396327,0.687639,0.594039,0.478768,0.0678598,0.255806,0.0103996,0.29429,0.296555,0.532138,0.338843,0.576346,0.837275,0.295387,0.965216,0.256875,0.271149,0.197999,0.663051,0.177138,0.0959445,0.497124,0.397098,0.746223,0.206553,0.755773,0.546298,0.203525,0.361977,0.509838,0.263075,0.483746,0.976059,0.602972,0.61364,0.781508,0.34284,0.849122,0.744759,0.938118,0.0641545,0.0924892,0.293564,0.297074,0.323046,0.799763,0.0554388,0.187735,0.879062,0.687562,0.670072,0.511016,0.634581,0.919035,0.519277,0.353036,0.924959,0.997987,0.061113,0.879084,0.382886,0.303951,0.709938,0.0540303,0.775538,0.234778,0.506777,0.858567,0.115143,0.292857,0.053732,0.231443,0.56477,0.147703,0.222506,0.21834,0.959343,0.427431,0.863725,0.811702,0.519536,0.154686,0.786959,0.479295,0.698997,0.145843,0.373417,0.708898,0.196225,0.46099,0.486393,0.24493,0.219563,0.858724,0.0675717,0.29077,0.934126,0.644922,0.567981,0.462472,0.193815,0.0338146,0.384553,0.157379,0.465618,0.271931,0.411145,0.650091,0.694589,0.871209,0.251117,0.455908,0.470462,0.0923746,0.0971439,0.313945,0.385998,0.330063,0.294617,0.536743,0.525862,0.421922,0.790357,0.166992,0.908787,0.466358,0.488742,0.078514,0.129425,0.737273,0.270681,0.590006,0.948297,0.493779,0.413009,0.0181804,0.203521,0.0474322,0.360658,0.968875,0.663575,0.939827,0.191579,0.0011577,0.59343,0.712727,0.718659,0.565096,0.670229,0.413108,0.0854391,0.717306,0.881312,0.284372,0.23454,0.185376,0.651368,0.0436689,0.524439,0.655991,0.671866,0.953968,0.187428,0.503645,0.782893,0.224354,0.47203,0.691336,0.754542,0.336161,0.56826,0.148902,0.495609,0.131209,0.301191,0.694615,0.268766,0.453439,0.591849,0.936587,0.708762,0.549254,0.614344,0.600745,0.147981,0.475815,0.73744,0.728207,0.0433362,0.261353,0.911898,0.315994,0.686836,0.402012,0.0547891,0.073253,0.878054,0.753119,0.855066,0.764364,0.934542,0.720726,0.661029,0.324584,0.172081,0.626677,0.316155,0.258008,0.835014,0.353729,0.0808053,0.475016,0.0324964,0.722849,0.481572,0.766082,0.558376,0.538838,0.12699,0.974354,0.961888,0.255975,0.613117,0.141519,0.273762,0.126834,0.153103,0.236018,0.680949,0.322463,0.573034,0.378533,0.755083,0.0924519,0.512667,0.417918,0.324492,0.688728,0.0745813,0.323326,0.701661,0.697504,0.324813,0.480509,0.376253,0.889736,0.235693,0.270542,0.14462,0.0621181,0.533744,0.757889,0.0739444,0.0466288,0.930437,0.343419,0.636157,0.880493,0.393896,0.0383729,0.671386,0.812277,0.270828,0.371775,0.226239,0.264774,0.940337,0.880287,0.587476,0.911299,0.0245627,0.61713,0.251358,0.101874,0.124717,0.0974349,0.243358,0.38475,0.883845,0.945184,0.241779,0.382365,0.944513,0.655752,0.939078,0.55051,0.642535,0.930063,0.585674,0.601761,0.400942,0.3188,0.540314,0.0347419,0.307546,0.582674,0.643774,0.0637885,0.248401,0.635625,0.400926,0.225187,0.0202032,0.823193,0.264063,0.45149,0.592457,0.881378,0.968677,0.094707,0.98744,0.0204852,0.846811,0.240925,0.292899,0.0133165,0.31285,0.2672,0.393766,0.59107,0.730157,0.271373,0.139841,0.9882,0.115338,0.352172,0.52254,0.196345,0.126773,0.915115,0.669284,0.354933,0.528145,0.976797,0.836584,0.497017,0.205818,0.03481,0.356122,0.524918,0.55522,0.539565,0.434199,0.825566,0.1705,0.44538,0.519513,0.805968,0.109842,0.744285,0.530981,0.897306,0.825337,0.785551,0.185577,0.967312,0.127482,0.831668,0.876283,0.201088,0.910665,0.274135,0.200206,0.538187,0.139257,0.237247,0.670495,0.968897,0.833797,0.320413,0.0311214,0.452398,0.598286,0.908091,0.56236,0.88623,0.377519,0.361154,0.824661,0.693859,0.678676,0.70871,0.59566,0.732973,0.413934,0.100792,0.580994,0.165084,0.202714,0.236224,0.294582,0.623344,0.499254,0.761832,0.795828,0.275497,0.926728,0.896567,0.559914,0.619616,0.734095,0.737176,0.888795,0.616052,0.369954,0.115372,0.619528,0.138677,0.402166,0.304136,0.362168,0.0354458,0.498776,0.371093,0.198993,0.388502,0.0844263,0.445539,0.625289,0.509801,0.661345,0.648853,0.473315,0.827002,0.0207602,0.366114,0.194719,0.682178,0.652098,0.265859,0.4574,0.55612,0.0609462,0.238784,0.785638,0.0950302,0.354,0.251289,0.0823564,0.204647,0.606253,0.243279,0.656855,0.836903,0.689301,0.83719,0.0263805,0.188852,0.329942,0.468798,0.290411,0.806668,0.3317,0.267291,0.069315,0.833385,0.853563,0.778598,0.43276,0.465679,0.847166,0.550563,0.493281,0.618871,0.500866,0.305737,0.36245,0.3397,0.757766,0.0223232,0.281305,0.475066,0.763083,0.525452,0.837858,0.378881,0.51179,0.898138,0.828173,0.286264,0.748599,0.638104,0.709165,0.379582,0.149777,0.525527,0.30193,0.59112,0.118245,0.662659,0.821205,0.422307,0.942411,0.404645,0.978064,0.148063,0.980281,0.991381,0.409229,0.60662,0.620503,0.43591,0.394091,0.367559,0.371699,0.837652,0.798357,0.563086,0.956334,0.649962,0.490406,0.496104,0.491556,0.0432827,0.132456,0.454128,0.523092,0.000124991,0.964341,0.914982,0.582625,0.409268,0.548721,0.274211,0.694989,0.47968,0.334217,0.944229,0.988713,0.391712,0.14505,0.0800256,0.878201,0.879954,0.478492,0.795462,0.0546529,0.86858,0.565854,0.983228,0.565043,0.442218,0.490195,|0.892381,0.26557,0.0167791,0.826163,0.695594,0.993158,0.455028,0.901628,0.39393,0.761215,0.414278,0.054562,0.744827,0.527362,0.879141,0.682394,0.654122,0.183686,0.515636,0.271171,0.651836,0.393783,0.994362,0.126958,0.701509,0.248875,0.470433,0.624761,0.313736,0.888059,0.130073,0.794596,0.669477,0.63402,0.443557,0.122929,0.193332,0.936098,0.57631,0.0380735,0.535581,0.679996,0.948167,0.307991,0.391905,0.199427,0.351923,0.00246376,0.944351,0.0770362,0.838014,0.628288,0.610646,0.873597,0.418057,0.125693,0.797928,0.282568,0.382124,0.454863,0.745279,0.789712,0.972759,0.305605,0.0998387,0.276034,0.158841,0.581553,0.80431,0.994959,0.616111,0.215043,0.0932057,0.991453,0.36574,0.986864,0.950875,0.0354698,0.532111,0.77162,0.515101,0.550402,0.22967,0.253163,0.622068,0.668929,0.91369,0.0758785,0.46266,0.797673,0.956119,0.106395,0.402964,0.971823,0.534393,0.563065,0.381607,0.138251,0.561891,0.0686395,0.458641,0.298959,0.60879,0.636445,0.995799,0.889247,0.221331,0.415665,0.909152,0.177635,0.789916,0.336861,0.00978458,0.506259,0.375113,0.291885,0.39877,0.942484,0.575955,0.841455,0.214281,0.809115,0.352206,0.777719,0.369644,0.180125,0.418883,0.94695,0.75779,0.151376,0.756015,0.0613236,0.820858,0.921308,0.335971,0.898747,0.0521994,0.507398,0.92316,0.427796,0.296394,0.105825,0.316449,0.478045,0.909427,0.954755,0.627002,0.0943363,0.175819,0.361074,0.0153044,0.398779,0.59739,0.867165,0.0159376,0.633856,0.706673,0.649342,0.986142,0.79912,0.54843,0.864319,0.437528,0.501962,0.499084,0.700571,0.829977,0.810583,0.944266,0.257578,0.876857,0.12582,0.0549638,0.463864,0.580535,0.950865,0.95095,0.591755,0.841185,0.394039,0.727991,0.740686,0.80652,0.863379,0.0265756,0.8017,0.0456348,0.115838,0.866324,0.932627,0.0974871,0.933135,0.0514044,0.43869,0.448313,0.680475,0.031086,0.668115,0.71798,0.340526,0.792283,0.951767,0.698444,0.69607,0.808014,0.135272,0.50061,0.940084,0.439834,0.0722148,0.961472,0.283862,0.202455,0.647775,0.288534,0.0893362,0.624235,0.434597,0.301838,0.117502,0.332348,0.458138,0.458621,0.67849,0.350487,0.951225,0.269012,0.729363,0.447163,0.245059,0.477547,0.689065,0.021472,0.168795,0.643749,0.714372,0.422059,0.101803,0.589583,0.769972,0.968766,0.913763,0.4524,0.97942,0.986938,0.679225,0.0242211,0.085317,0.734663,0.576445,0.765702,0.804263,0.963005,0.580156,0.629814,0.16031,0.674488,0.582692,0.425941,0.143309,0.247569,0.264908,0.654881,0.747468,0.308584,0.98021,0.0561556,0.375095,0.513344,0.887251,0.342229,0.876079,0.763317,0.564523,0.0142094,0.114675,0.0153117,0.247603,0.438512,0.182625,0.0879529,0.181252,0.698178,0.993278,0.0401759,0.0738119,0.301565,0.0042696,0.360782,0.0606217,0.685266,0.41801,0.0397591,0.0323017,0.67523,0.521092,0.244407,0.0262715,0.890344,0.0223315,0.347556,0.405974,0.114676,0.912194,0.465515,0.300496,0.794177,0.921339,0.304822,0.294215,0.112239,0.0163931,0.604603,0.197908,0.211203,0.898069,0.87857,0.00190842,0.457572,0.0231423,0.907271,0.136065,0.777851,0.875869,0.721313,0.71662,0.354046,0.841887,0.307144,0.65383,0.334978,0.8122,0.745273,0.807889,0.567248,0.513213,0.120726,0.516819,0.571069,0.201097,0.863153,0.755064,0.0349783,0.681536,0.920382,0.044494,0.888662,0.768554,0.859453,0.642008,0.546235,0.348507,0.755296,0.80368,0.0326909,0.49882,0.113315,0.533699,0.572371,0.384159,0.345073,0.351325,0.600412,0.440007,0.119073,0.376131,0.568057,0.188917,0.979907,0.863221,0.251788,0.149815,0.0656313,0.606983,0.14067,0.0115995,0.00418752,0.664346,0.83581,0.274244,0.599839,0.0951735,0.638054,0.650751,0.362093,0.429951,0.347026,0.845818,0.562485,0.247804,0.548822,0.935633,0.939478,0.017082,0.715958,0.706601,0.858959,0.0114673,0.797283,0.253848,0.886384,0.35624,0.36558,0.723435,0.0148558,0.792437,0.464957,0.0902997,0.202788,0.526514,0.571935,0.51692,0.629091,0.636821,0.520701,0.777113,0.694746,0.524854,0.0690646,0.626258,0.428216,0.956661,0.162393,0.0417342,0.712949,0.389044,0.534087,0.419897,0.763383,0.974341,0.233771,0.0712457,0.390192,0.51621,0.423594,0.00657684,0.931878,0.428763,0.157173,0.0125728,0.023524,0.293121,0.347332,0.554239,0.170212,0.637686,0.347481,0.836587,0.537277,0.444495,0.617018,0.377369,0.0962535,0.975554,0.876067,0.218617,0.35023,0.768794,0.00182688,0.0192917,0.12799,0.490463,0.74839,0.698404,0.700918,0.644332,0.803002,0.787337,0.650208,0.147677,0.53752,0.0522745,0.0918844,0.726075,0.674052,0.200826,0.574264,0.493044,0.679562,0.110053,0.945127,0.050077,0.155511,0.93782,0.129154,0.313545,0.855311,0.657463,0.352313,0.0232688,0.997861,0.425967,0.316911,0.747325,0.638169,0.676534,0.932765,0.239125,0.00340629,0.433566,0.598759,0.0668367,0.891213,0.402322,0.851593,0.00557965,0.788727,0.606827,0.415664,0.137477,0.309345,0.841969,0.709973,0.303939,0.3188,0.626616,0.382422,0.692723,0.684336,0.797256,0.685045,0.935995,0.574891,0.771972,0.357486,0.875806,0.348958,0.492094,0.185374,0.546449,0.643189,0.45662,0.776623,0.362572,0.14737,0.131069,0.539597,0.851337,0.799677,0.906055,0.0109478,0.400306,0.592893,0.414641,0.184273,0.289861,0.688119,0.00124007,0.675515,0.416234,0.730455,0.340193,0.0681846,0.875346,0.705438,0.320343,0.96096,0.468914,0.320874,0.149415,0.797321,0.69923,0.243458,0.934085,0.852024,0.437276,0.717257,0.359301,0.16558,0.591944,0.348286,0.358087,0.645741,0.627039,0.12175,0.52523,0.593174,0.499404,0.29223,0.762235,0.67756,0.715759,0.311904,0.00103801,0.891296,0.568515,0.518254,0.695651,0.431202,0.629833,0.0940654,0.411707,0.684605,0.866136,0.219528,0.558011,0.762273,0.696914,0.0598663,0.34844,0.453869,0.868037,0.629822,0.504345,0.829729,0.768102,0.436929,0.449126,0.832227,0.607583,0.491976,0.99084,0.996023,0.554128,0.465555,0.485853,0.411341,0.23174,0.79564,0.789036,0.826552,0.6576,0.594133,0.413057,0.697406,0.194798,0.423418,0.192955,0.951917,0.459763,0.148194,0.720773,0.635104,0.282662,0.18482,0.538145,0.362545,0.374163,0.433463,0.325685,0.361581,0.44332,0.396456,0.902579,0.663792,0.739867,0.222748,0.592546,0.844689,0.575059,0.44222,0.674629,0.186222,0.166518,0.417889,0.639897,0.999949,0.552652,0.508141,0.736174,0.396226,0.689001,0.548814,0.783864,0.758322,0.651232,0.118045,0.823528,0.680806,0.387185,0.980049,0.445438,0.216552,0.0685898,0.111546,0.302958,0.0823296,0.827075,0.807479,0.942208,0.972478,0.689663,0.0770605,0.377649,0.945172,0.43161,0.883785,0.997496,0.612601,0.346367,0.860957,0.206126,0.491758,0.184334,0.986792,0.100033,0.786855,0.526258,0.874824,0.523207,0.773778,0.16965,0.647812,0.932236,0.68213,0.729545,0.540722,0.61206,0.7444,0.533139,0.735832,0.302185,0.773248,0.361291,0.396784,0.558393,0.857382,0.506661,0.850976,0.565531,0.219549,0.122324,0.378577,0.217358,0.772972,0.652444,0.101476,0.23528,0.900433,0.299941,0.0231457,0.636429,0.672221,0.836996,0.795579,0.662658,0.228001,0.345532,0.9442,0.925218,0.756479,0.321548,0.868998,0.994075,0.972419,0.266102,0.803703,0.509491,0.471952,0.503048,0.561744,0.31542,0.0727471,0.169155,0.911721,0.228438,0.743836,0.0446448,0.80968,0.579184,0.990629,0.478823,0.592908,0.625076,0.64811,0.0351222,0.175199,0.919102,0.393547,0.993342,0.163638,0.480522,0.600446,0.418861,0.631763,0.0577433,0.865236,0.1969,0.59966,0.084613,0.505337,0.19084,0.764602,0.821699,0.984068,0.52546,0.447509,0.805737,0.0774661,0.7079,0.694163,0.814018,0.68784,0.0367548,0.0157626,0.737518,0.0479554,0.211305,0.863962,0.487336,0.352331,0.565856,0.454804,0.0550962,0.666444,0.313332,0.92322,0.672014,0.925696,0.132475,0.271469,0.196772,0.671758,0.141774,0.706326,0.999556,0.708275,0.095718,0.575172,0.575281,0.384861,0.985179,0.576619,0.0444815,0.788135,0.343432,0.492719,0.0649027,0.173866,0.520491,0.629059,0.614312,0.404903,0.578545,0.726617,0.37259,0.653492,0.73316,0.301818,0.862556,0.379543,0.841758,0.600125,0.387576,0.870874,0.328039,0.867582,0.27303,0.159293,0.808557,0.350138,0.295156,0.52946,0.429883,0.0289712,0.426606,0.241027,0.596257,0.963161,0.883927,0.850131,0.972942,0.641838,0.711333,0.555925,0.226273,0.481846,0.702193,0.283916,0.178987,0.797939,0.98429,0.125909,0.275246,0.399949,0.990576,0.87857,0.973134,0.149859,0.931684,0.741798,0.298148,0.0866435,0.0798725,0.365196,0.515516,0.00876141,0.179358,0.699644,0.225877,0.152915,0.984599,0.393069,0.576903,0.601423,0.40116,0.892975,0.0413865,0.488891,0.962884,0.792652,0.415132,0.0114298,0.209683,0.0716356,0.659141,0.00593513,0.753873,0.970393,0.420508,0.867496,0.63803,0.863628,0.080075,0.396913,0.144539,0.0215781,0.712571,0.582098,0.834553,0.282228,0.978368,0.209158,0.322097,0.768439,0.737194,0.87197,0.24963,0.596388,0.25457,0.605908,0.956471,0.116809,0.736572,0.882764,0.396138,0.183769,0.00201106,0.999916,0.449735,0.686263,0.0433735,0.989194,0.903191,0.878214,0.984551,0.34575,0.335473,0.656986,0.297921,0.48139,0.749695,0.302804,0.696379,0.370931,0.338862,0.311873,0.516073,0.621827,0.0254213,0.0411234,0.939894,0.798355,0.360634,0.347625,0.33288,0.66704,0.443593,0.0975831,0.36705,0.297186,0.548383,0.388284,0.0176553,0.239593,0.720472,0.246973,0.582866,0.480513,0.758106,0.114493,0.504747,0.202981,0.0856352,0.410299,0.417313,0.789167,0.651228,0.283045,0.27507,0.666889,0.385601,0.0302098,0.0992758,0.0612407,0.645014,0.236371,0.467907,0.275226,0.758174,|0.0325194,0.170396,0.248824,0.481349,0.456737,0.570232,0.569615,0.807293,0.197883,0.23164,0.459342,0.35579,0.678053,0.426486,0.0471216,0.631989,0.53425,0.797521,0.911561,0.469999,0.887844,0.355385,0.184593,0.0138443,0.670789,0.153883,0.891201,0.26561,0.876596,0.865805,0.647212,0.499197,0.173734,0.326544,0.355884,0.0217251,0.0246809,0.468644,0.898085,0.545238,0.414988,0.498692,0.151372,0.950863,0.521505,0.424296,0.159177,0.0907247,0.807998,0.327318,0.912569,0.598007,0.59987,0.701015,0.507906,0.609065,0.859787,0.360913,0.455889,0.00919706,0.567377,0.508815,0.844549,0.946883,0.576201,0.398172,0.810345,0.888557,0.556286,0.274672,0.515338,0.904223,0.795705,0.862776,0.269153,0.317764,0.697615,0.638629,0.130207,0.980358,0.873194,0.365593,0.397066,0.325062,0.631425,0.988021,0.417643,0.400683,0.514692,0.608855,0.784501,0.188577,0.85492,0.0964329,0.286837,0.578507,0.354914,0.58378,0.0318154,0.295275,0.860572,0.127499,0.678088,0.214682,0.115413,0.45522,0.194812,0.0700507,0.185036,0.535498,0.730754,0.85364,0.00344288,0.438104,0.712377,0.286343,0.172975,0.719799,0.385911,0.0243362,0.817168,0.00327265,0.458054,0.726965,0.753697,0.225072,0.858694,0.21873,0.4886,0.40263,0.974194,0.554544,0.00553447,0.54418,0.578409,0.785277,0.806628,0.935589,0.717659,0.417773,0.298733,0.728475,0.0799689,0.440319,0.0744846,0.713985,0.239425,0.150465,0.148672,0.306204,0.567083,0.908936,0.49935,0.102965,0.925348,0.614344,0.459039,0.796944,0.0588723,0.0293818,0.512417,0.125299,0.457722,0.792964,0.0679047,0.8416,0.916899,0.21625,0.792082,0.666822,0.168334,0.011119,0.056506,0.330662,0.631918,0.638764,0.186291,0.0625746,0.434833,0.589913,0.0656255,0.152658,0.219451,0.0857283,0.123202,0.785764,0.101091,0.575017,0.53147,0.229596,0.248665,0.888131,0.368372,0.159125,0.149537,0.276928,0.097599,0.488333,0.432003,0.673577,0.189747,0.115957,0.490683,0.363149,0.368267,0.586977,0.255846,0.633075,0.479079,0.0804477,0.432142,0.160601,0.975152,0.0777096,0.0219067,0.641144,0.414636,0.630208,0.765266,0.942828,0.107194,0.919736,0.736707,0.834237,0.0472903,0.904771,0.393088,0.0997024,0.735507,0.528637,0.796834,0.48272,0.188159,0.918241,0.206524,0.210817,0.262999,0.48767,0.662796,0.735113,0.924038,0.36385,0.250345,0.410335,0.0445682,0.385942,0.471305,0.587275,0.614119,0.211334,0.89947,0.0537621,0.662078,0.317384,0.773793,0.149744,0.167114,0.714008,0.722214,0.353371,0.408349,0.907005,0.064795,0.209438,0.153331,0.0557118,0.808866,0.706171,0.529222,0.999299,0.535047,0.169761,0.635832,0.655484,0.452246,0.528158,0.450423,0.441247,0.619517,0.969297,0.433726,0.508002,0.0749878,0.270338,0.808421,0.0880064,0.470147,0.835629,0.396183,0.213692,0.489543,0.336613,0.563719,0.989697,0.196329,0.706734,0.427947,0.650267,0.927279,0.224308,0.703626,0.459146,0.246583,0.0132546,0.139156,0.0198122,0.530851,0.00743741,0.421814,0.612862,0.234618,0.636132,0.205405,0.467299,0.485924,0.693236,0.525263,0.423178,0.67225,0.164423,0.521641,0.103893,0.540669,0.247821,0.159506,0.492899,0.42649,0.800069,0.74708,0.194532,0.0182925,0.398671,0.0625131,0.466092,0.0167668,0.0144135,0.857292,0.0621126,0.578209,0.122371,0.910503,0.0519955,0.617161,0.39955,0.952998,0.130405,0.593077,0.156839,0.966288,0.888076,0.204763,0.557983,0.703856,0.388689,0.712959,0.868095,0.24707,0.465309,0.322422,0.365382,0.28494,0.711175,0.116548,0.357109,0.0187397,0.273907,0.769498,0.172881,0.599382,0.289075,0.271005,0.836741,0.498825,0.393953,0.207318,0.175037,0.0869048,0.905248,0.0721031,0.498395,0.790082,0.712097,0.991617,0.0744907,0.964115,0.685972,0.0244573,0.482586,0.759616,0.134129,0.818683,0.216307,0.903932,0.0393533,0.158083,0.325054,0.206979,0.331875,0.745929,0.529231,0.103676,0.112808,0.536287,0.676997,0.191641,0.268831,0.534492,0.109211,0.693668,0.95264,0.0512669,0.747108,0.925759,0.758971,0.976836,0.248895,0.570107,0.311876,0.250836,0.77415,0.544163,0.364418,0.013546,0.950507,0.0845181,0.812559,0.560111,0.624441,0.042623,0.274632,0.554923,0.942927,0.245621,0.636293,0.317278,0.0163769,0.85264,0.862717,0.808429,0.276535,0.132193,0.63748,0.427364,0.386837,0.231272,0.504124,0.769539,0.877123,0.496153,0.571955,0.711841,0.584413,0.0334623,0.82427,0.101443,0.604204,0.273975,0.853862,0.194503,0.0949703,0.389549,0.623703,0.749316,0.92501,0.69635,0.467286,0.310935,0.606953,0.431832,0.739694,0.411683,0.841239,0.786956,0.774945,0.611109,0.949936,0.525244,0.882527,0.695903,0.932073,0.175208,0.753952,0.908647,0.621586,0.973711,0.717998,0.665627,0.700758,0.301571,0.233531,0.582338,0.635975,0.590344,0.48465,0.118055,0.421995,0.501561,0.273045,0.909807,0.203977,0.69785,0.860865,0.359651,0.554977,0.542825,0.945894,0.311227,0.119485,0.793611,0.0894905,0.10144,0.849395,0.568269,0.830692,0.417877,0.191873,0.447062,0.0688166,0.328032,0.587684,0.62863,0.825578,0.224912,0.212251,0.964788,0.483417,0.399933,0.580084,0.477297,0.521071,0.601604,0.768671,0.243061,0.929312,0.385168,0.991634,0.876185,0.364032,0.107692,0.493934,0.562084,0.195855,0.960523,0.810632,0.660085,0.0850832,0.688465,0.241395,0.946879,0.976767,0.043433,0.381418,0.870778,0.75528,0.0246689,0.664906,0.44267,0.659218,0.918803,0.599009,0.449644,0.400174,0.0607312,0.106906,0.657482,0.925244,0.566712,0.7161,0.893137,0.465739,0.474662,0.175261,0.597523,0.572564,0.937198,0.239441,0.786727,0.819096,0.0339971,0.607832,0.712722,0.882716,0.698748,0.90998,0.540944,0.00899136,0.955267,0.542698,0.664874,0.886706,0.270625,0.851408,0.640559,0.217454,0.084898,0.205462,0.418356,0.104794,0.658746,0.187381,0.0346746,0.465133,0.16065,0.698979,0.505238,0.87668,0.392318,0.407786,0.660182,0.981178,0.99864,0.245937,0.20521,0.163317,0.186996,0.528493,0.314041,0.209333,0.358819,0.651936,0.785882,0.874746,0.221721,0.268735,0.58576,0.231597,0.550845,0.115058,0.90501,0.443816,0.160873,0.427306,0.660847,0.374881,0.431576,0.658473,0.179752,0.973512,0.929301,0.181943,0.806227,0.687388,0.368519,0.297234,0.830791,0.225498,0.862491,0.988721,0.800368,0.0816258,0.169291,0.512943,0.391074,0.949781,0.0713636,0.45403,0.68864,0.717426,0.658734,0.0738429,0.414693,0.321424,0.870289,0.705485,0.520463,0.147864,0.892568,0.859512,0.228359,0.159701,0.348196,0.104328,0.00962245,0.179903,0.15438,0.343938,0.262103,0.656369,0.295006,0.509585,0.793225,0.224237,0.00538719,0.751805,0.676611,0.0546725,0.654413,0.245846,0.041612,0.127968,0.502621,0.194989,0.461681,0.0256674,0.467332,0.161999,0.491106,0.21394,0.902964,0.143518,0.369118,0.780118,0.305739,0.683548,0.721939,0.525935,0.946687,0.415198,0.982,0.385454,0.843509,0.33968,0.0990632,0.84845,0.276975,0.871223,0.857588,0.18261,0.314345,0.426241,0.59154,0.362184,0.310965,0.523654,0.615269,0.852762,0.412022,0.0980047,0.816061,0.421448,0.201604,0.0465814,0.848901,0.388988,0.835734,0.73139,0.772603,0.25794,0.552122,0.69501,0.730668,0.735472,0.112273,0.0469611,0.789817,0.111769,0.274963,0.34862,0.597377,0.452201,0.56912,0.127737,0.833408,0.812845,0.483928,0.908034,0.865267,0.448389,0.0776399,0.963136,0.0672358,0.714521,0.967003,0.941559,0.0800359,0.512695,0.629342,0.234176,0.954704,0.67266,0.167015,0.925694,0.578448,0.795635,0.682088,0.86081,0.452119,0.104463,0.391759,0.132381,0.363123,0.360158,0.0544648,0.102249,0.557129,0.632346,0.804773,0.0756713,0.147201,0.322035,0.801136,0.945635,0.435766,0.136729,0.373628,0.69778,0.728162,0.312982,0.228793,0.9857,0.239372,0.472707,0.192278,0.903467,0.361205,0.291201,0.811794,0.797893,0.228659,0.757862,0.0150086,0.934993,0.663836,0.837946,0.546537,0.480835,0.62431,0.433983,0.448785,0.261745,0.579273,0.387193,0.908259,0.156453,0.223417,0.425412,0.44891,0.295935,0.655532,0.113506,0.542216,0.551187,0.909949,0.813446,0.526923,0.685442,0.0105159,0.57658,0.506086,0.161696,0.920736,0.502386,0.55564,0.275139,0.590985,0.634355,0.165262,0.258267,0.223629,0.502114,0.520429,0.789953,0.980414,0.369854,0.673667,0.506969,0.65327,0.56346,0.474775,0.668178,0.109171,0.178795,0.734097,0.575687,0.295784,0.355741,0.223604,0.884613,0.967842,0.24259,0.791909,0.431946,0.0755613,0.601304,0.282079,0.432181,0.482889,0.918653,0.65667,0.0169515,0.860267,0.122901,0.701711,0.759298,0.989435,0.538349,0.850139,0.563085,0.134908,0.780922,0.429348,0.573248,0.863104,0.588346,0.509972,0.160515,0.567417,0.262915,0.518262,0.628803,0.570532,0.127275,0.848671,0.328131,0.43669,0.0923714,0.36149,0.855566,0.835947,0.169366,0.852265,0.860805,0.144038,0.15829,0.448477,0.464721,0.112329,0.153696,0.433947,0.949584,0.0640493,0.548826,0.719048,0.440626,0.22304,0.426404,0.429947,0.795948,0.542219,0.621712,0.994112,0.516394,0.264449,0.837214,0.534537,0.355563,0.514058,0.643878,0.0454684,0.0397008,0.623654,0.335511,0.756702,0.0229849,0.72706,0.900766,0.437113,0.616542,0.399679,0.38536,0.770933,0.488177,0.870719,0.729456,0.568683,0.570388,0.799418,0.745384,0.899207,0.0453491,0.588587,0.278918,0.310083,0.580234,0.194847,0.258867,0.856186,0.99632,0.215445,0.224109,0.734972,0.45635,0.751629,0.991233,0.137203,0.177485,0.199291,0.921044,0.0723445,0.980832,0.827779,0.19436,0.908874,0.691106,0.929457,0.695968,0.221051,0.144511,0.683742,0.945057,0.501948,0.888063,0.661693,0.0649355,0.813277,0.675622,0.727587,0.55283,0.955106,0.0917356,|0.0131564,0.0240591,0.330555,0.232842,0.353155,0.296636,0.280074,0.866861,0.116952,0.0560545,0.868952,0.824543,0.53206,0.041105,0.731889,0.454539,0.419744,0.0619383,0.502482,0.723038,0.127063,0.332011,0.602733,0.44933,0.887155,0.651675,0.477227,0.73401,0.0573074,0.633559,0.482153,0.128435,0.0120146,0.172994,0.070301,0.0837306,0.951707,0.363632,0.685084,0.192083,0.91541,0.138088,0.63813,0.964178,0.85693,0.499363,0.576425,0.620354,0.399926,0.0862316,0.179731,0.699355,0.673401,0.555553,0.919869,0.684635,0.608699,0.41744,0.230279,0.55742,0.599187,0.433477,0.58192,0.3097,0.035964,0.934036,0.0776795,0.732269,0.0822609,0.147448,0.895338,0.787598,0.259822,0.416868,0.416845,0.181387,0.306629,0.497183,0.644177,0.907954,0.207597,0.540783,0.788104,0.728484,0.513662,0.579032,0.170523,0.016819,0.92469,0.0743052,0.745164,0.516069,0.979886,0.152762,0.18739,0.481082,0.0151368,0.128668,0.662625,0.38248,0.160772,0.600586,0.158486,0.826369,0.179552,0.0704456,0.0189865,0.529795,0.422657,0.563764,0.0960774,0.724307,0.987038,0.113631,0.948833,0.119319,0.118648,0.0613638,0.689813,0.239161,0.353688,0.374843,0.592269,0.513788,0.764263,0.577794,0.999584,0.754618,0.219317,0.531682,0.0918191,0.6801,0.281263,0.818606,0.7408,0.616217,0.209789,0.187062,0.182711,0.171472,0.800121,0.786332,0.308866,0.89015,0.183694,0.612015,0.838589,0.936854,0.323525,0.768493,0.559872,0.00253659,0.654373,0.953525,0.138029,0.879502,0.803957,0.439789,0.255942,0.680723,0.923113,0.355209,0.165743,0.36427,0.710507,0.410207,0.265679,0.291867,0.509117,0.93942,0.633133,0.489818,0.1883,0.835732,0.00903076,0.782036,0.661703,0.316251,0.705829,0.64406,0.833955,0.680372,0.474599,0.241744,0.411513,0.803287,0.757637,0.167724,0.233898,0.394581,0.736047,0.387696,0.152757,0.956012,0.0895171,0.702842,0.441346,0.904381,0.764144,0.504001,0.881383,0.0528127,0.648313,0.828012,0.657335,0.0276538,0.958514,0.662829,0.581438,0.650458,0.975782,0.196254,0.820383,0.158022,0.645711,0.96492,0.530266,0.869118,0.672678,0.49075,0.623758,0.708951,0.355383,0.617891,0.391637,0.960193,0.957734,0.306684,0.257121,0.588205,0.691049,0.351652,0.971056,0.872198,0.382067,0.799274,0.674633,0.476731,0.925222,0.759316,0.670212,0.307371,0.438366,0.487294,0.814447,0.150307,0.34148,0.706352,0.623913,0.528816,0.736303,0.41363,0.871246,0.435146,0.444368,0.274322,0.94645,0.26062,0.758502,0.848545,0.117143,0.44763,0.00905645,0.265183,0.0331739,0.838034,0.187293,0.74516,0.718821,0.689725,0.967261,0.264623,0.358704,0.907938,0.97366,0.922316,0.648891,0.141982,0.536035,0.557446,0.96761,0.23476,0.133116,0.412794,0.768976,0.683299,0.887422,0.398054,0.938797,0.319113,0.540253,0.401223,0.578303,0.365569,0.130417,0.125267,0.681539,0.865123,0.660757,0.163325,0.816342,0.135071,0.853855,0.602238,0.26682,0.69229,0.924513,0.418531,0.264223,0.191895,0.544501,0.355183,0.094254,0.473342,0.957375,0.907139,0.820534,0.404971,0.191818,0.0379629,0.521472,0.962382,0.0344525,0.685388,0.292538,0.842797,0.963704,0.720285,0.572857,0.965834,0.325888,0.508972,0.655976,0.379947,0.41199,0.326797,0.295445,0.40679,0.560693,0.868971,0.19637,0.663101,0.679851,0.110523,0.622764,0.258219,0.743361,0.641583,0.329603,0.383143,0.396754,0.698344,0.814795,0.372888,0.15558,0.000699699,0.406195,0.222774,0.629102,0.239348,0.967393,0.134572,0.472906,0.631985,0.201052,0.175029,0.572866,0.461991,0.166763,0.676615,0.156511,0.899709,0.0230731,0.432053,0.626506,0.354435,0.486058,0.534832,0.235498,0.571544,0.884842,0.193131,0.10126,0.352426,0.308983,0.529025,0.732653,0.483549,0.880636,0.431667,0.653293,0.498328,0.462436,0.317549,0.000137031,0.376003,0.658656,0.32681,0.221462,0.69573,0.809998,0.313906,0.957494,0.950284,0.535288,0.909701,0.787387,0.786153,0.0624749,0.071995,0.130067,0.109903,0.872099,0.644241,0.691345,0.182258,0.0570757,0.104997,0.18886,0.764887,0.467365,0.238739,0.645719,0.795687,0.340129,0.326178,0.488422,0.024212,0.907099,0.958455,0.582766,0.536611,0.948186,0.296759,0.439824,0.852633,0.882342,0.679819,0.749416,0.378009,0.598754,0.27257,0.739778,0.749202,0.333538,0.491181,0.511723,0.843937,0.273289,0.857459,0.162657,0.0992867,0.915358,0.776165,0.328222,0.0113031,0.734844,0.559455,0.682374,0.928334,0.635477,0.954439,0.618978,0.8484,0.98926,0.986496,0.559083,0.938699,0.928204,0.30089,0.714106,0.404692,0.84994,0.534375,0.571542,0.249483,0.950217,0.409736,0.391227,0.551319,0.133405,0.435925,0.578247,0.223835,0.217217,0.223584,0.677556,0.296385,0.376032,0.175045,0.741073,0.834803,0.530435,0.469568,0.226129,0.944967,0.275113,0.702772,0.982437,0.375793,0.132837,0.57579,0.692202,0.607504,0.293602,0.052062,0.776665,0.00343299,0.696975,0.0529953,0.932066,0.211938,0.418682,0.234969,0.703948,0.693535,0.83322,0.897314,0.963918,0.924252,0.497866,0.803597,0.00674647,0.636459,0.255205,0.139446,0.962278,0.566311,0.494247,0.197942,0.157129,0.84675,0.594572,0.237377,0.318573,0.31725,0.263373,0.345259,0.852083,0.871936,0.87404,0.456437,0.0761796,0.0364085,0.679543,0.107954,0.247669,0.217199,0.437673,0.823505,0.724476,0.143537,0.262793,0.534845,0.769269,0.334675,0.26076,0.729159,0.499296,0.655047,0.493868,0.669379,0.525988,0.127471,0.0725194,0.388458,0.994402,0.493183,0.333517,0.620889,0.402042,0.655201,0.931371,0.912119,0.240226,0.868618,0.201014,0.132075,0.998906,0.89879,0.0180211,0.109552,0.965697,0.0329515,0.635253,0.17227,0.151053,0.920368,0.163729,0.754628,0.315042,0.0899855,0.178981,0.387833,0.208735,0.562387,0.965134,0.157006,0.883877,0.24951,0.337004,0.962955,0.918034,0.901536,0.778175,0.349168,0.652362,0.891794,0.738544,0.463857,0.030336,0.405726,0.943562,0.134889,0.655344,0.09219,0.43708,0.594118,0.44995,0.696913,0.846305,0.718391,0.982355,0.828595,0.366366,0.602092,0.937018,0.913406,0.84598,0.612982,0.145731,0.723134,0.283947,0.378933,0.267244,0.160513,0.834956,0.256675,0.634702,0.0659034,0.30179,0.976161,0.90497,0.658372,0.337379,0.855471,0.262069,0.444709,0.0112683,0.861443,0.00641519,0.454278,0.561873,0.248645,0.299911,0.354621,0.841502,0.329865,0.927798,0.4362,0.98252,0.450114,0.0577216,0.600031,0.47658,0.811215,0.924453,0.2643,0.0910754,0.546836,0.05632,0.47394,0.568277,0.34211,0.305055,0.462363,0.516283,0.0401812,0.484126,0.403372,0.528549,0.10463,0.707552,0.637568,0.882566,0.586525,0.384358,0.707499,0.583701,0.751459,0.5877,0.384606,0.203644,0.744452,0.604653,0.699383,0.455883,0.697539,0.718356,0.198322,0.189796,0.522164,0.798712,0.827987,0.857022,0.2351,0.335743,0.745259,0.739034,0.309886,0.0886497,0.971611,0.388747,0.223709,0.813665,0.767668,0.0577431,0.60215,0.478675,0.141079,0.387429,0.255474,0.572192,0.0541523,0.933627,0.210188,0.209463,0.701517,0.667651,0.0409854,0.593876,0.226577,0.294487,0.0690129,0.298385,0.763156,0.784029,0.874699,0.744767,0.54455,0.88088,0.629096,0.948363,0.581613,0.306002,0.45156,0.991132,0.321738,0.124083,0.612283,0.520324,0.912637,0.295499,0.797755,0.206432,0.391181,0.277756,0.483907,0.810272,0.651383,0.564795,0.359255,0.97568,0.254304,0.440192,0.338747,0.652228,0.141242,0.489413,0.0977318,0.00765586,0.217868,0.952356,0.814112,0.0827433,0.570084,0.0111797,0.981898,0.138781,0.26839,0.664669,0.985572,0.258987,0.421614,0.844159,0.00336003,0.443885,0.82475,0.275907,0.396234,0.376439,0.572033,0.161379,0.0254828,0.00615656,0.987587,0.147586,0.739896,0.454988,0.385882,0.899539,0.344859,0.768081,0.977577,0.327173,0.00900507,0.120552,0.230329,0.0958,0.198294,0.830427,0.756963,0.269913,0.553225,0.242638,0.720847,0.589671,0.0849514,0.738848,0.350691,0.313914,0.0246207,0.0496666,0.947541,0.111364,0.883963,0.927525,0.819189,0.71304,0.176559,0.831378,0.370461,0.0789155,0.854637,0.403479,0.286996,0.00263363,0.40048,0.856801,0.976673,0.79026,0.743836,0.364673,0.23214,0.543693,0.671156,0.523945,0.38617,0.868189,0.7608,0.498141,0.277468,0.0333735,0.0690374,0.988113,0.38951,0.904476,0.525615,0.983764,0.0723127,0.477075,0.186556,0.0154301,0.33034,0.925579,0.447447,0.763639,0.961609,0.489455,0.0898588,0.741817,0.215261,0.568262,0.987979,0.706769,0.164143,0.0935525,0.883476,0.757709,0.114878,0.0449916,0.560925,0.381879,0.592155,0.665513,0.53,0.512222,0.770601,0.960706,0.785757,0.593923,0.824158,0.816992,0.149905,0.134947,0.092229,0.217834,0.178803,0.0308913,0.0830466,0.115801,0.936489,0.467171,0.0526171,0.384465,0.376263,0.689458,0.386049,0.145466,0.170099,0.292295,0.11601,0.161586,0.690663,0.211335,0.846448,0.338529,0.512652,0.433077,0.121625,0.759044,0.0490509,0.952691,0.337183,0.724728,0.170297,0.0923481,0.628129,0.427778,0.387884,0.140401,0.850149,0.665362,0.482205,0.466962,0.745491,0.6024,0.687991,0.695904,0.345,0.664473,0.137468,0.141892,0.15416,0.390208,0.581254,0.334898,0.466811,0.75099,0.994309,0.415303,0.464407,0.418777,0.328552,0.481204,0.465146,0.582668,0.358745,0.443874,0.788735,0.975959,0.907485,0.781734,0.884693,0.471619,0.0933636,0.60871,0.711224,0.202501,0.820489,0.356454,0.420146,0.168677,0.255314,0.476952,0.384999,0.949313,0.600823,0.66481,0.72387,0.0300962,0.94568,0.0419517,0.593355,0.147019,0.384897,0.381588,0.790967,0.070239,0.450761,0.802511,0.332993,0.986428,0.388021,0.797503,0.215856,0.580585,0.529104,0.156058,0.044072,|0.830491,0.311277,0.225389,0.734867,0.528671,0.602705,0.378072,0.672056,0.195194,0.400231,0.706843,7.56979e-05,0.310389,0.875912,0.471007,0.754844,0.576693,0.550696,0.192802,0.313113,0.607067,0.750294,0.486848,0.875566,0.821062,0.174137,0.229211,0.0513599,0.685679,0.373301,0.00359499,0.884485,0.352854,0.316662,0.141785,0.904286,0.861608,0.799356,0.980771,0.220427,0.580683,0.951985,0.810604,0.0593885,0.702683,0.583398,0.621787,0.809383,0.188255,0.160002,0.212303,0.511201,0.804131,0.24054,0.642189,0.888099,0.622809,0.762471,0.0405484,0.209492,0.185591,0.487674,0.302649,0.457354,0.363732,0.807233,0.851013,0.26816,0.609182,0.617792,0.230229,0.1412,0.836965,0.751322,0.354962,0.955587,0.0696799,0.796005,0.628831,0.261656,0.978605,0.751039,0.98083,0.682835,0.017765,0.480524,0.0884988,0.399499,0.669814,0.803687,0.0581853,0.253311,0.880624,0.53645,0.759997,0.433514,0.762142,0.658621,0.417848,0.425562,0.0257211,0.981833,0.217089,0.717422,0.507518,0.773403,0.939613,0.0866115,0.476974,0.167987,0.573138,0.416167,0.577849,0.0355937,0.775016,0.797118,0.638007,0.193024,0.280166,0.0443073,0.973751,0.677174,0.396715,0.931034,0.987148,0.837663,0.637765,0.105341,0.792181,0.168819,0.741445,0.00329173,0.12379,0.609846,0.650933,0.0105198,0.868545,0.765939,0.413158,0.216933,0.418112,0.781623,0.370066,0.540768,0.866683,0.247646,0.563073,0.699893,0.0503976,0.700381,0.139208,0.407307,0.194838,0.918686,0.85103,0.211032,0.954128,0.00839663,0.827833,0.546035,0.743358,0.419579,0.443257,0.492774,0.848958,0.812623,0.319058,0.0348216,0.0407049,0.298875,0.818538,0.430247,0.491693,0.0747888,0.98042,0.199312,0.173477,0.692349,0.0552577,0.107828,0.219912,0.695552,0.900873,0.792433,0.487249,0.998381,0.629415,0.383199,0.838766,0.802361,0.995586,0.712548,0.410758,0.278797,0.599336,0.187149,0.143888,0.879913,0.797501,0.623759,0.499918,0.896664,0.154241,0.521364,0.165115,0.582876,0.206532,0.139021,0.565811,0.797571,0.100858,0.377379,0.192816,0.870419,0.621455,0.537476,0.635455,0.908094,0.483968,0.337691,0.537379,0.840109,0.934351,0.0583126,0.303783,0.662581,0.15735,0.923725,0.0625787,0.585066,0.281267,0.567358,0.910706,0.147139,0.604826,0.0199024,0.159575,0.736449,0.905835,0.463022,0.785118,0.867217,0.802716,0.546267,0.0573409,0.375393,0.680992,0.27938,0.429906,0.263455,0.474427,0.551631,0.97084,0.469092,0.968521,0.489064,0.555559,0.282472,0.598024,0.83534,0.0612782,0.00980723,0.827266,0.406964,0.313811,0.451973,0.716654,0.34345,0.395614,0.294673,0.406146,0.290354,0.687281,0.156758,0.199194,0.624048,0.221013,0.323211,0.174892,0.56335,0.834538,0.11417,0.455406,0.510705,0.34534,0.177634,0.690197,0.0910123,0.284256,0.672334,0.088294,0.62727,0.947842,0.636194,0.284572,0.990246,0.367663,0.0496404,0.918106,0.0495568,0.384309,0.543591,0.189185,0.964123,0.239396,0.364311,0.585551,0.633918,0.255481,0.101508,0.941454,0.46592,0.286356,0.651223,0.877672,0.419952,0.827244,0.650164,0.33535,0.727638,0.756559,0.572942,0.7127,0.939961,0.298614,0.726629,0.0673611,0.549865,0.874021,0.898865,0.595026,0.745586,0.436841,0.69214,0.714108,0.293636,0.337007,0.82496,0.706685,0.978048,0.960946,0.411082,0.406796,0.702225,0.112642,0.631421,0.506672,0.961468,0.111539,0.553345,0.271912,0.193209,0.487601,0.647646,0.0691332,0.387231,0.484036,0.372039,0.557099,0.761223,0.492245,0.0345444,0.0173517,0.644205,0.165356,0.734462,0.893251,0.513718,0.854189,0.115348,0.785999,0.404328,0.200267,0.0732173,0.525247,0.895774,0.971375,0.220933,0.395478,0.379712,0.803208,0.223556,0.379258,0.375494,0.0482414,0.507684,0.709828,0.676644,0.362273,0.665925,0.540154,0.222803,0.80098,0.22027,0.701066,0.143803,0.117912,0.32403,0.270665,0.245322,0.38252,0.328589,0.0255873,0.85925,0.125541,0.34051,0.497232,0.177815,0.129835,0.0220567,0.676277,0.993931,0.230974,0.512034,0.92151,0.24235,0.525125,0.713202,0.976889,0.84795,0.49835,0.759506,0.260512,0.228016,0.93996,0.874286,0.988006,0.245439,0.63693,0.357421,0.345279,0.099834,0.0208642,0.593233,0.480494,0.730034,0.927217,0.0579684,0.297209,0.761113,0.385693,0.187908,0.102583,0.129012,0.262376,0.210882,0.870733,0.847926,0.978026,0.544577,0.288104,0.724474,0.821618,0.221512,0.0300254,0.586307,0.53406,0.136281,0.893662,0.106176,0.167772,0.169146,0.117134,0.882746,0.981484,0.733985,0.332111,0.467517,0.0885624,0.294905,0.96667,0.17619,0.467081,0.547553,0.0680602,0.42377,0.873127,0.317257,0.780855,0.347699,0.0357541,0.270791,0.92644,0.560223,0.302131,0.808255,0.434401,0.669701,0.918727,0.422493,0.0197175,0.206599,0.390806,0.800046,0.152227,0.528304,0.636736,0.770528,0.861219,0.508336,0.834073,0.21018,0.00157326,0.122342,0.368434,0.335182,0.954994,0.797666,0.246003,0.501967,0.587923,0.728624,0.844484,0.268171,0.494332,0.674165,0.205961,0.488636,0.194328,0.472635,0.65098,0.494618,0.863789,0.833468,0.110735,0.823702,0.824556,0.289836,0.182687,0.565169,0.593147,0.907356,0.0242834,0.261717,0.9973,0.0883449,0.390879,0.0225793,0.742637,0.878429,0.748173,0.507908,0.169676,0.68622,0.801582,0.143501,0.308354,0.710672,0.943661,0.473993,0.781122,0.861779,0.277931,0.734847,0.613116,0.74472,0.544999,0.664547,0.459621,0.804262,0.842372,0.811962,0.00132358,0.342387,0.234824,0.807282,0.493031,0.159026,0.667851,0.624047,0.510464,0.105354,0.555239,0.496232,0.489906,0.390381,0.909788,0.379815,0.474161,0.851986,0.50434,0.190367,0.2483,0.915761,0.117635,0.486443,0.564771,0.756392,0.609646,0.405909,0.484133,0.187412,0.63946,0.1753,0.113069,0.657122,0.15739,0.161475,0.7053,0.337515,0.511109,0.306917,0.539014,0.493339,0.182446,0.795647,0.759358,0.572774,0.0894786,0.984299,0.465908,0.853766,0.312221,0.891054,0.232405,0.52717,0.112696,0.0385864,0.713623,0.169106,0.955848,0.848568,0.329304,0.666787,0.998042,0.154393,0.857843,0.891092,0.782546,0.555246,0.947784,0.149269,0.182491,0.755928,0.310148,0.222288,0.114976,0.417274,0.308481,0.613672,0.712897,0.290113,0.498077,0.881486,0.260373,0.158587,0.0088082,0.389594,0.723324,0.902495,0.435781,0.988691,0.797666,0.0028137,0.330139,0.0399609,0.215585,0.933123,0.703555,0.945674,0.0786232,0.938028,0.313324,0.104212,0.508375,0.114563,0.321644,0.38716,0.87631,0.840831,0.870023,0.622149,0.798384,0.777111,0.92682,0.493524,0.56246,0.796103,0.756634,0.752033,0.872773,0.0604327,0.753673,0.55212,0.776167,0.632603,0.856743,0.543275,0.302784,0.392939,0.968177,0.547148,0.977286,0.272042,0.00806922,0.699809,0.290183,0.46199,0.229192,0.555256,0.698417,0.67867,0.0844002,0.415544,0.678816,0.110132,0.96486,0.723293,0.248321,0.691913,0.964571,0.855251,0.428552,0.983821,0.847674,0.567201,0.444435,0.81802,0.477468,0.516944,0.0416052,0.288954,0.874833,0.561184,0.818643,0.52562,0.57442,0.711385,0.640064,0.831265,0.0561291,0.580265,0.0110357,0.540439,0.465103,0.428768,0.886124,0.189787,0.146785,0.129878,0.519611,0.476016,0.333892,0.314538,0.854641,0.0200029,0.815655,0.881606,0.391712,0.565325,0.215425,0.790987,0.818262,0.997441,0.0165768,0.340136,0.30879,0.189356,0.320979,0.00182259,0.84176,0.836216,0.0102156,0.168121,0.423333,0.270364,0.227938,0.556231,0.184816,0.232545,0.721078,0.0149441,0.350009,0.0872485,0.518733,0.599595,0.017457,0.233301,0.940871,0.0558002,0.659264,0.393094,0.573247,0.485589,0.204121,0.79857,0.955646,0.501588,0.787592,0.0320432,0.365706,0.00442958,0.224905,0.334351,0.346158,0.788734,0.0618348,0.0237653,0.133884,0.721164,0.876543,0.917227,0.813112,0.218004,0.418166,0.661278,0.97622,0.189442,0.353149,0.549477,0.838347,0.645295,0.194651,0.277269,0.763822,0.389968,0.646401,0.0892785,0.141379,0.969093,0.55874,0.27614,0.410416,0.448774,0.750488,0.529887,0.328494,0.444298,0.951072,0.493634,0.340394,0.287887,0.779806,0.680757,0.245005,0.340354,0.492871,0.42026,0.04554,0.589452,0.723705,0.341664,0.903259,0.713627,0.0454968,0.0832496,0.0944621,0.611414,0.413087,0.0239459,0.727599,0.962013,0.582945,0.450763,0.714015,0.128649,0.488171,0.765387,0.458567,0.493426,0.272722,0.011529,0.893849,0.054605,0.731937,0.847649,0.114591,0.966447,0.954262,0.696212,0.611976,0.289341,0.315016,0.685279,0.911758,0.332828,0.25283,0.752372,0.290445,0.925092,0.0444112,0.652706,0.0821189,0.889428,0.641271,0.194477,0.173249,0.424624,0.0149244,0.628017,0.884712,0.690543,0.867442,0.393719,0.688589,0.0116805,0.75953,0.998063,0.607533,0.684297,0.134512,0.527559,0.0153108,0.800265,0.379451,0.802099,0.208309,0.556845,0.313919,0.446637,0.105028,0.111805,0.503255,0.0929273,0.944739,0.33208,0.0979648,0.201392,0.0619406,0.320436,0.129307,0.725576,0.4803,0.683527,0.679975,0.948714,0.803713,0.024291,0.664358,0.360135,0.404123,0.315617,0.310144,0.289793,0.40714,0.667076,0.594605,0.814375,0.0816976,0.546399,0.747164,0.662522,0.80464,0.936252,0.128592,0.899576,0.0364693,0.173925,0.392115,0.276557,0.125035,0.0349232,0.869424,0.469161,0.784718,0.999508,0.11637,0.166341,0.260249,0.18095,0.258655,0.0192268,0.846842,0.669014,0.619684,0.790164,0.942788,0.194521,0.410433,0.122975,0.244573,0.171387,0.51025,0.240198,0.655477,0.226471,0.966177,0.954669,0.226902,0.832699,0.39989,0.342105,0.927641,0.760407,0.22195,0.905325,0.207182,0.106716,0.716479,0.239148,0.225541,0.589246,0.531808,0.375899,0.408223,0.136377,0.387148,0.603341,0.484701,0.920917,|0.227513,0.622296,0.325312,0.394117,0.306778,0.787752,0.3403,0.744817,0.0522998,0.40565,0.676997,0.632941,0.528726,0.636523,0.584236,0.488709,0.0566342,0.797315,0.992562,0.93993,0.811177,0.0262201,0.0853697,0.233363,0.824059,0.805547,0.932105,0.148521,0.611414,0.526314,0.311475,0.514971,0.952028,0.760451,0.205094,0.652192,0.267663,0.429335,0.496247,0.642182,0.215546,0.932683,0.0349405,0.264718,0.294003,0.877486,0.104065,0.0450865,0.334959,0.606893,0.448886,0.99328,0.604683,0.218831,0.828942,0.305521,0.0739263,0.88616,0.933897,0.48547,0.192944,0.76378,0.719586,0.34234,0.280506,0.957468,0.230798,0.787795,0.108804,0.951281,0.565704,0.557496,0.767052,0.712282,0.436863,0.620789,0.438038,0.736232,0.0328273,0.315102,0.419919,0.95442,0.458789,0.932421,0.125086,0.0565969,0.714626,0.049764,0.435846,0.714523,0.252958,0.60848,0.254539,0.94065,0.51029,0.0829573,0.682114,0.648783,0.170952,0.490102,0.0979875,0.0358008,0.0552144,0.195645,0.684431,0.531633,0.738528,0.0846865,0.37601,0.902842,0.756494,0.278657,0.532993,0.809215,0.869643,0.287661,0.380076,0.593814,0.983155,0.547279,0.441285,0.496468,0.247981,0.473295,0.04021,0.860788,0.205284,0.780725,0.910327,0.792396,0.418544,0.493443,0.0347321,0.275357,0.942372,0.156102,0.528458,0.982485,0.946911,0.195548,0.236827,0.606839,0.641476,0.915659,0.898835,0.797175,0.756109,0.124913,0.20766,0.0923001,0.485576,0.117142,0.723453,0.393096,0.873491,0.560769,0.990028,0.485664,0.243724,0.671242,0.920742,0.887922,0.816885,0.0562531,0.600292,0.167769,0.215031,0.531657,0.513019,0.0942159,0.245709,0.0197715,0.2799,0.889501,0.206719,0.217578,0.464369,0.745356,0.396678,0.738753,0.459181,0.754844,0.763842,0.994565,0.149999,0.388817,0.483476,0.394855,0.292169,0.200736,0.839122,0.593769,0.444808,0.0532691,0.701086,0.672543,0.702338,0.937103,0.224848,0.203756,0.915638,0.297557,0.124397,0.705791,0.70604,0.913307,0.759546,0.27604,0.553108,0.58339,0.111513,0.761613,0.351546,0.403982,0.130147,0.530375,0.300949,0.34266,0.143615,0.428232,0.310479,0.919562,0.787978,0.577244,0.869204,0.350825,0.408891,0.464325,0.0971403,0.0209933,0.379072,0.361199,0.874728,0.00744879,0.351339,0.159513,0.501697,0.487903,0.672143,0.240484,0.970466,0.727695,0.866753,0.188857,0.244506,0.812621,0.681692,0.366709,0.541753,0.496613,0.770957,0.365888,0.0664358,0.0363611,0.123023,0.314262,0.83068,0.360472,0.183717,0.543554,0.341522,0.230735,0.302402,0.544454,0.337938,0.432242,0.0669938,0.42237,0.311261,0.239012,0.545915,0.876446,0.891626,0.442746,0.999368,0.543252,0.782815,0.359006,0.261433,0.580631,0.533449,0.172386,0.666721,0.711221,0.353377,0.566518,0.450979,0.735564,0.427739,0.483911,0.721851,0.581744,0.571086,0.36057,0.102306,0.9065,0.649568,0.843139,0.627628,0.13873,0.185383,0.218322,0.0858254,0.813352,0.605209,0.342572,0.645916,0.426583,0.526319,0.682904,0.0793792,0.802426,0.302534,0.423342,0.508709,0.439372,0.222805,0.0725871,0.0909566,0.335769,0.24443,0.259992,0.972817,0.0696326,0.496167,0.622895,0.448925,0.0959516,0.0112541,0.465337,0.599447,0.678864,0.891773,0.222086,0.350638,0.184336,0.450137,0.595643,0.349567,0.974746,0.654941,0.997705,0.491565,0.0547858,0.0651663,0.470443,0.402236,0.386251,0.201377,0.356801,0.938866,0.737651,0.485151,0.649489,0.383586,0.13553,0.972925,0.55011,0.442684,0.811504,0.0743423,0.473599,0.216074,0.00119555,0.779911,0.0865972,0.199538,0.947245,0.603469,0.118134,0.266584,0.234306,0.0791729,0.0202125,0.0921804,0.749795,0.0234176,0.642653,0.492993,0.171583,0.0840364,0.99704,0.288561,0.288257,0.0831381,0.852057,0.685988,0.161162,0.687966,0.608247,0.991721,0.926553,0.714453,0.831825,0.385418,0.580895,0.0753724,0.879007,0.297429,0.468123,0.831175,0.397308,0.178284,0.455265,0.78651,0.320225,0.0400413,0.0333791,0.842996,0.686371,0.4456,0.0116463,0.0951695,0.056527,0.245572,0.0533567,0.329439,0.906776,0.126209,0.334041,0.648781,0.420548,0.305164,0.776912,0.400176,0.99864,0.777462,0.198531,0.528351,0.818766,0.326086,0.828674,0.463983,0.15387,0.305425,0.252196,0.0229125,0.113533,0.297463,0.75336,0.405851,0.92941,0.0813012,0.429478,0.333334,0.925438,0.840518,0.956115,0.484473,0.817505,0.257894,0.49646,0.109727,0.0349512,0.807816,0.636164,0.501267,0.442614,0.518337,0.0241494,0.796876,0.662812,0.612987,0.445456,0.193238,0.821221,0.79887,0.842025,0.79185,0.675326,0.73393,0.152986,0.396267,0.609952,0.754405,0.25491,0.986269,0.603712,0.203914,0.65952,0.695708,0.563909,0.254315,0.657933,0.713207,0.404991,0.691954,0.162048,0.400999,0.816765,0.288276,0.757631,0.73122,0.622524,0.852805,0.10122,0.811208,0.0218396,0.321527,0.37372,0.843301,0.991419,0.299361,0.466604,0.780802,0.769285,0.218898,0.195895,0.841855,0.657032,0.772071,0.779061,0.836156,0.219731,0.214186,0.166733,0.472259,0.879696,0.708745,0.019125,0.340952,0.78742,0.386263,0.203037,0.2373,0.619444,0.00456691,0.136053,0.906305,0.953038,0.0129857,0.97926,0.970895,0.663467,0.308441,0.33149,0.925831,0.803627,0.869722,0.289619,0.399758,0.473532,0.272815,0.423769,0.637708,0.205409,0.564699,0.248663,0.703809,0.635074,0.920071,0.374983,0.0225059,0.947984,0.0340938,0.201992,0.42257,0.760407,0.927142,0.732463,0.174853,0.415716,0.329577,0.519146,0.467139,0.924873,0.633809,0.785044,0.861895,0.97441,0.943836,0.500642,0.159602,0.10944,0.371828,0.826697,0.0150067,0.253157,0.138249,0.889991,0.973961,0.35246,0.00263625,0.898541,0.22769,0.287075,0.950928,0.210679,0.128804,0.20801,0.167136,0.943155,0.509575,0.318082,0.9494,0.813988,0.61829,0.159612,0.980225,0.503576,0.583698,0.105408,0.575105,0.0248012,0.147196,0.190662,0.625946,0.865777,0.309457,0.741771,0.903448,0.124371,0.171814,0.305029,0.245283,0.833341,0.744496,0.541549,0.840263,0.980688,0.470682,0.596515,0.987789,0.985638,0.508228,0.404081,0.519429,0.471359,0.665722,0.106863,0.670986,0.674979,0.0770573,0.302901,0.246737,0.335358,0.480535,0.978441,0.19991,0.383735,0.253811,0.446133,0.633513,0.355605,0.400027,0.828223,0.526249,0.509098,0.486512,0.965575,0.29111,0.375079,0.72538,0.246368,0.00873363,0.992345,0.968184,0.661434,0.481799,0.498823,0.58992,0.00835955,0.639022,0.564477,0.0242705,0.628862,0.56568,0.583009,0.220262,0.519614,0.445587,0.650781,0.823018,0.00371742,0.986498,0.423652,0.56865,0.484468,0.0960419,0.151884,0.561436,0.297864,0.635022,0.685314,0.162903,0.872951,0.530671,0.372073,0.0947928,0.488093,0.172687,0.78723,0.258332,0.725144,0.307775,0.83868,0.640214,0.246611,0.174294,0.900612,0.366302,0.928057,0.573974,0.769396,0.288833,0.335334,0.341069,0.134413,0.0834827,0.138657,0.638084,0.146786,0.83209,0.789762,0.0197796,0.190695,0.630691,0.0791398,0.381261,0.265461,0.725468,0.47299,0.369297,0.853716,0.101383,0.0739714,0.0804106,0.686351,0.532398,0.314641,0.812479,0.0730234,0.0682969,0.503043,0.710793,0.574356,0.495324,0.148625,0.414783,0.917672,0.386953,0.248041,0.913818,0.120055,0.0414535,0.0336335,0.292715,0.528415,0.116406,0.17299,0.134393,0.248924,0.0834428,0.359696,0.0959949,0.744725,0.905846,0.959906,0.758408,0.312777,0.705959,0.447833,0.576878,0.766473,0.252877,0.799651,0.902076,0.417252,0.588136,0.549285,0.0547498,0.150639,0.445675,0.936883,0.280528,0.843483,0.267846,0.082877,0.503588,0.59977,0.273066,0.94503,0.0747721,0.974081,0.30172,0.225465,0.238814,0.4663,0.951395,0.0566896,0.829727,0.52325,0.610825,0.515709,0.628022,0.873496,0.0426253,0.402357,0.724564,0.983695,0.075469,0.58759,0.175932,0.992639,0.414746,0.300018,0.524625,0.190422,0.678859,0.277427,0.419662,0.0149174,0.428134,0.275168,0.125525,0.5177,0.0773112,0.261909,0.453118,0.129751,0.602507,0.712851,0.816494,0.381537,0.484835,0.639715,0.763006,0.55964,0.013631,0.685913,0.598983,0.85983,0.0543451,0.305714,0.161904,0.936351,0.563086,0.130719,0.548308,0.983989,0.350117,0.301282,0.0722812,0.419296,0.0722194,0.78622,0.840216,0.0933115,0.174957,0.871252,0.245897,0.980587,0.336473,0.497199,0.489401,0.537721,0.420434,0.033619,0.887539,0.570795,0.903267,0.769953,0.287148,0.560408,0.275918,0.711829,0.0889279,0.958335,0.553511,0.0020417,0.371564,0.0503439,0.567772,0.695615,0.811116,0.86995,0.901147,0.0879414,0.404559,0.551686,0.631491,0.237395,0.67943,0.544103,0.474801,0.115287,0.00718665,0.497661,0.351838,0.844047,0.653237,0.625686,0.392353,0.945147,0.548474,0.262235,0.964981,0.914918,0.860652,0.958568,0.488168,0.871699,0.844889,0.0210249,0.453551,0.409256,0.391695,0.536663,0.0990375,0.411936,0.0450791,0.279103,0.121706,0.0302089,0.346253,0.773447,0.0378125,0.515709,0.634432,0.350335,0.436084,0.489147,0.898811,0.314528,0.694809,0.422383,0.434503,0.00837344,0.292946,0.0274881,0.488344,0.459769,0.642978,0.0622743,0.769105,0.234599,0.512098,0.384754,0.587334,0.995434,0.610674,0.839623,0.276186,0.500758,0.477311,0.867159,0.638759,0.340551,0.840103,0.465174,0.165855,0.234018,0.772307,0.992472,0.607374,0.417038,0.311906,0.788266,0.510879,0.476452,0.265425,0.499594,0.592333,0.185728,0.395749,0.250786,0.735022,0.903588,0.00267053,0.404076,0.231663,0.117858,0.0914413,0.714308,0.144744,0.809041,0.538944,0.454397,0.846133,0.482033,0.902907,0.755316,0.731268,0.888541,0.128906,0.245643,0.0480626,0.203184,0.865644,0.598627,0.947769,0.600721,0.642403,0.535613,0.244883,0.714623,0.90243,0.995147,0.547504,0.620029,|0.543759,0.408457,0.999106,0.166729,0.879313,0.238061,0.383738,0.765773,0.238057,0.0758355,0.731197,0.912002,0.624335,0.795667,0.069828,0.391018,0.850947,0.259531,0.885051,0.525494,0.861266,0.112595,0.692084,0.696811,0.204643,0.928226,0.359051,0.988632,0.160642,0.87597,0.00651872,0.227405,0.88415,0.352325,0.758582,0.92268,0.905071,0.365033,0.492191,0.846386,0.781181,0.373734,0.556872,0.6162,0.113031,0.560733,0.466401,0.197366,0.503651,0.279168,0.442508,0.376126,0.473453,0.600465,0.00401169,0.124394,0.676965,0.769022,0.922873,0.398032,0.891434,0.231986,0.544241,0.731149,0.0893217,0.9038,0.363933,0.888518,0.564466,0.223211,0.00660098,0.0255796,0.0911573,0.025551,0.798457,0.0104213,0.381702,0.138162,0.536258,0.990257,0.658227,0.172299,0.978007,0.114194,0.225691,0.0892917,0.161606,0.109309,0.349033,0.0821925,0.565615,0.382678,0.675465,0.815343,0.106325,0.0867788,0.819215,0.620156,0.645186,0.326394,0.966205,0.934169,0.601132,0.242672,0.863964,0.299983,0.758395,0.752807,0.900309,0.849661,0.859495,0.356853,0.164186,0.989153,0.366792,0.855463,0.371368,0.252472,0.699292,0.88749,0.095035,0.691686,0.371556,0.461844,0.301638,0.920554,0.723161,0.787526,0.901441,0.763917,0.246608,0.345299,0.628144,0.0646321,0.742146,0.296999,0.886456,0.260496,0.538874,0.209885,0.0237217,0.506347,0.701134,0.274303,0.660325,0.483159,0.540557,0.144215,0.462255,0.308101,0.741624,0.406395,0.834613,0.400674,0.337221,0.789969,0.276967,0.663302,0.377562,0.00881755,0.726142,0.799044,0.865932,0.77418,0.976445,0.949525,0.760879,0.968006,0.173072,0.741655,0.588584,0.340434,0.292073,0.639126,0.343011,0.525863,0.410157,0.65791,0.0610673,0.419365,0.63402,0.846068,0.790366,0.252307,0.755664,0.481515,0.148752,0.438591,0.0515888,0.975452,0.438667,0.216661,0.345416,0.391352,0.99076,0.425721,0.777356,0.185359,0.29763,0.249393,0.499687,0.960054,0.0686479,0.776305,0.181288,0.432969,0.137313,0.224544,0.967754,0.512361,0.514845,0.441077,0.149827,0.901514,0.953854,0.466366,0.468498,0.134036,0.699895,0.779807,0.669842,0.219992,0.136988,0.820032,0.421171,0.667918,0.808486,0.258441,0.332929,0.485433,0.659182,0.0607412,0.328431,0.111739,0.0618708,0.250689,0.763463,0.740132,0.34435,0.863486,0.441082,0.1234,0.86902,0.149457,0.516291,0.993804,0.628147,0.809622,0.878861,0.476209,0.893067,0.219392,0.408854,0.589652,0.719034,0.722234,0.817124,0.878929,0.898746,0.636792,0.436554,0.311239,0.849272,0.660944,0.860094,0.073884,0.414916,0.137753,0.680181,0.994277,0.301794,0.343882,0.692693,0.607429,0.223969,0.972904,0.881541,0.765512,0.31105,0.207728,0.365422,0.899895,0.722993,0.199155,0.392126,0.000619113,0.528722,0.665719,0.941285,0.649407,0.661445,0.319696,0.212834,0.0941263,0.585597,0.361744,0.298572,0.308237,0.528634,0.616076,0.524493,0.388653,0.688731,0.266136,0.534249,0.416988,0.772683,0.612809,0.112831,0.231298,0.072846,0.95509,0.714511,0.604745,0.0890272,0.488258,0.597205,0.235424,0.464059,0.874116,0.810553,0.341186,0.949437,0.458715,0.821218,0.432208,0.381528,0.320561,0.628846,0.966429,0.126601,0.0628006,0.781795,0.275259,0.531907,0.512818,0.375078,0.725317,0.174538,0.775849,0.192208,0.751843,0.4096,0.00582242,0.270061,0.798484,0.722361,0.160835,0.564037,0.182978,0.230803,0.767052,0.499994,0.890341,0.713905,0.461065,0.478578,0.950686,0.700605,0.176484,0.575432,0.896662,0.691983,0.954935,0.715586,0.358611,0.294688,0.17817,0.995107,0.41829,0.415299,0.136988,0.85454,0.710032,0.151367,0.184721,0.119444,0.678061,0.11045,0.716658,0.838463,0.774604,0.269636,0.125254,0.846052,0.0588121,0.451034,0.374349,0.402794,0.137198,0.533895,0.910693,0.204162,0.303674,0.657369,0.625699,0.560933,0.203369,0.88625,0.100482,0.95652,0.294063,0.464175,0.204027,0.585998,0.716248,0.95807,0.609771,0.623368,0.852466,0.813246,0.5879,0.456541,0.494973,0.113436,0.67352,0.518178,0.45157,0.674157,0.497476,0.50267,0.641349,0.0897318,0.87113,0.716551,0.613728,0.456138,0.0598559,0.299589,0.0984711,0.338475,0.0266931,0.727926,0.250653,0.134493,0.410708,0.110577,0.961616,0.603699,0.730314,0.414962,0.0966491,0.937772,0.835857,0.413484,0.893633,0.761593,0.678169,0.604689,0.209519,0.63086,0.885405,0.521227,0.105369,0.940678,0.520566,0.932518,0.0200952,0.027397,0.750135,0.399098,0.720221,0.847141,0.207662,0.0815839,0.441746,0.804685,0.00746775,0.405057,0.26028,0.691104,0.71619,0.356984,0.889821,0.160274,0.727562,0.857982,0.824838,0.165499,0.288569,0.509468,0.59847,0.181249,0.207485,0.801783,0.152465,0.139971,0.546412,0.574528,0.342245,0.451806,0.976076,0.195471,0.36101,0.661574,0.516903,0.94401,0.364988,0.0456834,0.387332,0.556218,0.790001,0.768632,0.412965,0.134085,0.98723,0.101621,0.899104,0.969188,0.67202,0.510449,0.866538,0.509431,0.585621,0.0355577,0.0892748,0.187863,0.521018,0.645593,0.721972,0.638337,0.631438,0.996706,0.352151,0.790527,0.569389,0.264493,0.551014,0.216213,0.475903,0.0857061,0.892442,0.638093,0.460186,0.87328,0.483538,0.016961,0.190498,0.283172,0.567926,0.352261,0.364196,0.224331,0.576222,0.830108,0.686307,0.928523,0.240617,0.792601,0.837513,0.377171,0.269201,0.162675,0.120285,0.479659,0.527448,0.363577,0.381804,0.904652,0.723283,0.476617,0.586816,0.430116,0.484733,0.702234,0.249892,0.92566,0.839108,0.492758,0.703935,0.917814,0.0521194,0.862754,0.950847,0.706336,0.840806,0.88884,0.412261,0.714639,0.418873,0.0258088,0.587711,0.893875,0.0852945,0.301062,0.0161999,0.621859,0.411536,0.410596,0.260685,0.445605,0.689643,0.000524402,0.742723,0.919835,0.301489,0.152133,0.778933,0.741781,0.0237185,0.269198,0.962653,0.210439,0.888983,0.703168,0.426372,0.696953,0.253381,0.429534,0.418423,0.376208,0.644242,0.611554,0.260458,0.728162,0.309115,0.713708,0.708537,0.425323,0.874467,0.767423,0.444369,0.57227,0.648618,0.457591,0.220407,0.348409,0.214463,0.416902,0.238977,0.19267,0.158973,0.597246,0.468977,0.185286,0.251179,0.806708,0.168511,0.616417,0.607988,0.374586,0.0127338,0.989469,0.987913,0.668097,0.730137,0.331243,0.785271,0.301992,0.0572272,0.167323,0.622168,0.954453,0.245645,0.764396,0.101371,0.346501,0.811269,0.637795,0.709973,0.251186,0.465934,0.728726,0.52392,0.837965,0.379442,0.0347946,0.664329,0.460972,0.346438,0.809463,0.747277,0.191487,0.712586,0.118476,0.590169,0.108088,0.150544,0.434519,0.227659,0.221125,0.840909,0.154069,0.275207,0.213896,0.98369,0.491637,0.329018,0.177129,0.35891,0.305858,0.640861,0.783777,0.160191,0.802403,0.718515,0.649111,0.354915,0.742146,0.861033,0.787775,0.699812,0.173618,0.840191,0.849973,0.30685,0.437886,0.05857,0.457279,0.366576,0.0401825,0.723174,0.158562,0.988825,0.271232,0.275309,0.987677,0.376364,0.0790954,0.0855825,0.467972,0.752015,0.766839,0.0639124,0.397327,0.548746,0.822541,0.346593,0.831882,0.78145,0.30176,0.35403,0.301605,0.580663,0.922282,0.535321,0.890232,0.144569,0.496178,0.706772,0.258163,0.750823,0.435604,0.65441,0.210267,0.87077,0.397128,0.891982,0.740601,0.910986,0.673158,0.841915,0.346474,0.53755,0.194869,0.224717,0.557697,0.991368,0.087781,0.226448,0.257944,0.973042,0.655405,0.583606,0.00691682,0.678408,0.303209,0.231279,0.58772,0.630113,0.0482157,0.651282,0.454221,0.918437,0.175851,0.40987,0.503225,0.0139886,0.811823,0.116281,0.0714034,0.677758,0.487437,0.676839,0.822837,0.963813,0.778987,0.246248,0.131895,0.409359,0.85619,0.570338,0.0771269,0.380409,0.298217,0.475502,0.018448,0.302425,0.708786,0.74439,0.766315,0.589925,0.112433,0.015255,0.0909032,0.38811,0.0659129,0.181323,0.340716,0.844375,0.828345,0.690022,0.183682,0.896994,0.830537,0.77706,0.924088,0.116967,0.618935,0.844799,0.949255,0.957531,0.15503,0.631602,0.432845,0.632469,0.164805,0.265794,0.890859,0.266256,0.119465,0.83221,0.652538,0.176211,0.527041,0.385023,0.328048,0.984601,0.0964023,0.544653,0.0356233,0.490655,0.818976,0.228468,0.033308,0.659916,0.742266,0.516578,0.312298,0.402227,0.197154,0.991121,0.882474,0.0564438,0.788441,0.376667,0.0582612,0.705942,0.125141,0.669773,0.0179855,0.932487,0.833214,0.893986,0.0444694,0.288772,0.0144214,0.365889,0.435365,0.463344,0.590759,0.496871,0.60503,0.904181,0.508661,0.221011,0.732083,0.874435,0.574403,0.430034,0.597524,0.363354,0.118354,0.0188273,0.70443,0.741046,0.76711,0.84674,0.369163,0.818164,0.311551,0.688209,0.0247619,0.0565934,0.728305,0.00780708,0.588899,0.0109853,0.859549,0.20595,0.838835,0.913406,0.883006,0.241022,0.65202,0.843965,0.264699,0.129687,0.0353788,0.221376,0.568292,0.419947,0.878251,0.274968,0.910388,0.0382029,0.0177994,0.0715722,0.390188,0.991108,0.998589,0.02808,0.763218,0.827476,0.634728,0.867801,0.18008,0.531875,0.375244,0.547791,0.446447,0.731726,0.440885,0.970649,0.360195,0.199833,0.633365,0.0738919,0.132422,0.797339,0.922287,0.394722,0.147263,0.284753,0.965669,0.3192,0.203083,0.562442,0.777235,0.65927,0.747644,0.0892024,0.73608,0.653901,0.710233,0.704129,0.528287,0.642294,0.842219,0.142027,0.532226,0.584103,0.642269,0.683579,0.6555,0.262313,0.607018,0.635429,0.954229,0.087674,0.194053,0.76765,0.368222,0.643444,0.566932,0.582115,0.785279,0.134191,0.532616,0.481468,0.274405,0.823735,0.110798,0.0485336,0.406934,0.486553,0.366546,0.590378,0.575457,0.381364,0.645799,0.311986,0.808254,0.411272,0.302393,0.966759,0.892161,0.750295,0.571738,0.121499,|0.31607,0.987739,0.9898,0.19343,0.24033,0.546758,0.362301,0.542122,0.472394,0.0396288,0.661352,0.113455,0.710665,0.101605,0.520489,0.618797,0.191964,0.0159546,0.0311807,0.237543,0.420182,0.105867,0.166964,0.70924,0.657782,0.342651,0.457859,0.976755,0.296567,0.197227,0.950177,0.744374,0.25518,0.25432,0.977107,0.677913,0.567583,0.128294,0.200974,0.423638,0.582373,0.693774,0.351465,0.750455,0.271281,0.960763,0.819462,0.044113,0.298719,0.389949,0.506333,0.754554,0.594943,0.798308,0.873003,0.786282,0.44194,0.789914,0.365573,0.080561,0.610646,0.598399,0.363841,0.318057,0.397099,0.10625,0.518301,0.684509,0.0102521,0.458564,0.284932,0.927444,0.38036,0.347349,0.363055,0.464652,0.434886,0.950695,0.112917,0.748914,0.308317,0.0305674,0.301584,0.12946,0.7885,0.869685,0.745804,0.682366,0.0671698,0.859864,0.00546837,0.0460802,0.982499,0.143512,0.348595,0.481202,0.0758948,0.981625,0.740493,0.47179,0.110833,0.769708,0.262258,0.322196,0.489212,0.962806,0.680383,0.207789,0.517842,0.247293,0.259466,0.792682,0.438301,0.0116681,0.164162,0.971495,0.994579,0.480599,0.00227702,0.0349914,0.959109,0.996512,0.60818,0.209465,0.914769,0.118099,0.043882,0.166408,0.0973757,0.980468,0.103031,0.391167,0.878955,0.868794,0.725697,0.0425962,0.0779353,0.549002,0.209827,0.970825,0.388538,0.753569,0.137734,0.825664,0.583095,0.325908,0.570829,0.778772,0.420476,0.241727,0.139248,0.423675,0.973039,0.65749,0.0644591,0.375177,0.16478,0.990816,0.171472,0.802346,0.27509,0.595827,0.258402,0.577411,0.336524,0.217859,0.39229,0.34355,0.260168,0.313208,0.567059,0.64817,0.775565,0.579323,0.686972,0.222024,0.896282,0.976166,0.937626,0.528738,0.890566,0.967984,0.926929,0.540911,0.14021,0.49102,0.429481,0.422812,0.759431,0.610421,0.533933,0.328915,0.632845,0.855589,0.370497,0.0658823,0.773044,0.707871,0.633614,0.325925,0.649254,0.603362,0.919858,0.190087,0.0875596,0.233549,0.00365609,0.442125,0.773461,0.294892,0.706317,0.543467,0.433195,0.613761,0.477955,0.971098,0.567887,0.351784,0.112807,0.4943,0.680068,0.471192,0.89364,0.235531,0.0996988,0.35154,0.449356,0.422083,0.296816,0.421786,0.304833,0.694086,0.70672,0.591757,0.855899,0.496173,0.781783,0.179025,0.270429,0.997003,0.484458,0.488412,0.339688,0.667804,0.782341,0.566331,0.382804,0.93272,0.744539,0.62462,0.804021,0.615798,0.661502,0.879127,0.366044,0.383718,0.845284,0.621361,0.187595,0.601756,0.0116277,0.896352,0.658936,0.250741,0.0981132,0.943138,0.362079,0.506198,0.372157,0.69028,0.902108,0.125206,0.831924,0.654134,0.00688243,0.233194,0.162999,0.728116,0.500045,0.465233,0.371005,0.291491,0.292749,0.119436,0.612922,0.491599,0.682772,0.154542,0.662131,0.928067,0.179105,0.607773,0.661466,0.147921,0.364182,0.49771,0.241111,0.846282,0.240147,0.650492,0.730961,0.836859,0.399591,0.990684,0.380969,0.909243,0.998785,0.29943,0.273956,0.969969,0.174269,0.392766,0.148251,0.871738,0.201896,0.125015,0.351389,0.160712,0.328467,0.955453,0.741854,0.215083,0.443973,0.905067,0.194386,0.744858,0.339975,0.7291,0.370606,0.541644,0.424046,0.647592,0.382014,0.874617,0.504265,0.601839,0.131341,0.166025,0.62795,0.839172,0.865199,0.621764,0.983352,0.148962,0.794701,0.842823,0.494386,0.710451,0.224303,0.774638,0.81089,0.453087,0.633355,0.306028,0.830118,0.886845,0.461992,0.106838,0.817518,0.112572,0.285889,0.0315683,0.713278,0.707443,0.160038,0.73543,0.174279,0.145265,0.13212,0.345007,0.703927,0.986367,0.533768,0.510623,0.842461,0.00710231,0.0124091,0.405085,0.800029,0.911948,0.753965,0.10607,0.799956,0.337865,0.68314,0.222483,0.0319629,0.301838,0.640474,0.776653,0.620276,0.315202,0.30731,0.476377,0.875267,0.132008,0.210291,0.07941,0.0977351,0.0637456,0.915553,0.234146,0.471345,0.151968,0.672053,0.848225,0.225999,0.786141,0.451129,0.00146031,0.11616,0.703999,0.0179386,0.62509,0.803663,0.68476,0.488903,0.394968,0.0142928,0.377419,0.258709,0.924236,0.98465,0.26728,0.887695,0.805524,0.539167,0.130606,0.244546,0.935668,0.378925,0.345226,0.14578,0.183271,0.57273,0.379081,0.890015,0.117025,0.355891,0.0070219,0.20252,0.642847,0.713195,0.10902,0.871173,0.796663,0.257514,0.662048,0.108803,0.522946,0.274538,0.458939,0.611513,0.0506251,0.913685,0.970052,0.237371,0.0285033,0.710965,0.407641,0.285778,0.696188,0.247299,0.703556,0.72866,0.788123,0.230609,0.37516,0.356578,0.614494,0.769436,0.866054,0.824375,0.257199,0.982017,0.419566,0.75145,0.199227,0.410893,0.52735,0.539676,0.968287,0.52424,0.957475,0.662276,0.413384,0.207403,0.468037,0.54967,0.858496,0.529677,0.681267,0.249732,0.546365,0.553925,0.330478,0.682514,0.0404978,0.482121,0.422247,0.761842,0.528569,0.87084,0.223026,0.592502,0.610898,0.251922,0.933722,0.121535,0.696087,0.0494788,0.468437,0.23112,0.746988,0.504538,0.22696,0.198947,0.30045,0.955114,0.0189195,0.00348032,0.00456959,0.605501,0.093103,0.937933,0.0832307,0.419696,0.995673,0.0696762,0.68177,0.535687,0.436074,0.284674,0.5745,0.946921,0.679993,0.797508,0.471423,0.824607,0.412467,0.0429747,0.746557,0.441468,0.160837,0.63424,0.3063,0.125538,0.427963,0.847389,0.967347,0.727814,0.950335,0.717969,0.291678,0.312443,0.329888,0.282661,0.248368,0.0135673,0.0410287,0.696779,0.0451046,0.731008,0.687517,0.764543,0.883167,0.617577,0.894622,0.507559,0.101756,0.663009,0.941285,0.45426,0.143793,0.571578,0.456006,0.999117,0.85253,0.0342208,0.2885,0.896264,0.471109,0.565739,0.0574166,0.87413,0.483889,0.265315,0.885106,0.401898,0.790616,0.760566,0.747733,0.543521,0.730164,0.758875,0.744175,0.266962,0.060704,0.106696,0.592543,0.449512,0.33109,0.333844,0.684798,0.211877,0.495369,0.793826,0.255004,0.0857948,0.221052,0.543451,0.35265,0.467179,0.727512,0.326091,0.852131,0.594683,0.296529,0.536845,0.380448,0.640629,0.235839,0.915826,0.231499,0.293988,0.601169,0.175772,0.335816,0.968773,0.172357,0.784272,0.414884,0.620538,0.658208,0.125252,0.801229,0.123004,0.372323,0.979831,0.78906,0.827092,0.105834,0.451064,0.260434,0.438959,0.662477,0.775755,0.322705,0.53162,0.202747,0.557918,0.966287,0.513345,0.205372,0.568864,0.792241,0.638837,0.794983,0.764027,0.340355,0.695977,0.481877,0.561342,0.585791,0.315737,0.499068,0.0197894,0.560009,0.94551,0.22591,0.513036,0.523059,0.14481,0.084711,0.35146,0.90624,0.558108,0.772412,0.557361,0.304775,0.0693066,0.689981,0.531271,0.83616,0.901412,0.396912,0.0733091,0.86276,0.52821,0.153025,0.0265117,0.148976,0.500833,0.197094,0.223891,0.530854,0.146958,0.693597,0.286213,0.803828,0.588747,0.170553,0.497186,0.96294,0.555853,0.588609,0.33978,0.801678,0.0441315,0.786529,0.96423,0.750091,0.234449,0.688324,0.842666,0.837353,0.00942993,0.94135,0.389274,0.637222,0.456028,0.652039,0.278592,0.801589,0.846734,0.243888,0.390417,0.909421,0.60425,0.723937,0.211563,0.725399,0.387109,0.352161,0.648162,0.812145,0.43823,0.815961,0.428527,0.693332,0.430375,0.339903,0.647078,0.278891,0.989246,0.173932,0.750004,0.619442,0.790819,0.0286135,0.862941,0.529844,0.0140342,0.60214,0.2674,0.0342013,0.887324,0.499236,0.289227,0.704355,0.582924,0.474409,0.538566,0.584959,0.862477,0.502153,0.38993,0.625351,0.259442,0.881003,0.242672,0.00573671,0.790629,0.725071,0.788911,0.947342,0.238316,0.0715823,0.230545,0.462812,0.545392,0.702756,0.428571,0.479941,0.85756,0.786515,0.417648,0.400421,0.296607,0.846081,0.893033,0.8584,0.59022,0.963992,0.166725,0.881527,0.558301,0.608334,0.0487093,0.156485,0.576765,0.782805,0.148744,0.522713,0.634282,0.69489,0.976487,0.148129,0.200706,0.322358,0.165261,0.443028,0.283516,0.416806,0.401038,0.480223,0.322899,0.627598,0.827054,0.132334,0.230581,0.73649,0.777012,0.155458,0.87333,0.161691,0.781915,0.740777,0.251956,0.181899,0.16155,0.105536,0.0270891,0.547553,0.942275,0.0873688,0.4807,0.0147554,0.911936,0.718759,0.0439546,0.190661,0.800674,0.233856,0.91699,0.732101,0.00674158,0.894062,0.721928,0.216781,0.769526,0.441138,0.85346,0.273324,0.862788,0.871187,0.0434873,0.435515,0.973599,0.411275,0.238558,0.128535,0.0744302,0.794748,0.69117,0.102246,0.735207,0.857976,0.909718,0.0874054,0.0298101,0.132515,0.33439,0.155813,0.257891,0.485733,0.156656,0.663888,0.837709,0.217039,0.230475,0.393205,0.761515,0.739201,0.344249,0.47314,0.0632306,0.537349,0.856822,0.67085,0.934311,0.45062,0.892094,0.630132,0.646191,0.137994,0.3961,0.00202715,0.957891,0.601838,0.576167,0.103002,0.980709,0.0541053,0.410463,0.475465,0.240442,0.0906458,0.909246,0.980256,0.354233,0.411595,0.898528,0.678362,0.138252,0.932581,0.761807,0.00673062,0.456624,0.537776,0.628079,0.00653058,0.200646,0.20415,0.281295,0.656669,0.66972,0.786405,0.778959,0.477615,0.948678,0.430587,0.947106,0.00297511,0.377526,0.708892,0.169596,0.104186,0.707513,0.960265,0.38325,0.16385,0.303646,0.0493053,0.378288,0.674184,0.980422,0.578404,0.1351,0.250925,0.903444,0.675276,0.63515,0.205028,0.490215,0.198103,0.201727,0.358768,0.894852,0.594646,0.583189,0.328979,0.303833,0.773803,0.407335,0.295166,0.934134,0.500401,0.872296,0.846872,0.48546,0.601914,0.80714,0.303902,0.948546,0.283114,0.795327,0.101348,0.338894,0.795705,0.726313,0.078531,0.174025,0.464357,0.192062,0.50315,0.29294,0.804943,0.0801844,0.428892,0.638617,0.409255,0.403325,0.853032,0.434739,0.0494692,0.484527,0.283647,0.00466377,0.556721,|0.0238991,0.825937,0.586315,0.470803,0.669304,0.537579,0.732629,0.682391,0.422989,0.0484744,0.795487,0.695173,0.8719,0.755914,0.826581,0.329236,0.0524913,0.0948384,0.064649,0.818211,0.073252,0.352735,0.366213,0.382271,0.858521,0.0175117,0.0272542,0.0733366,0.881073,0.141018,0.628666,0.916991,0.403691,0.258798,0.284665,0.367298,0.00326997,0.0879493,0.323932,0.0185665,0.236093,0.36895,0.440271,0.537193,0.0258598,0.374229,0.622734,0.649054,0.777177,0.331896,0.372451,0.971541,0.0718675,0.629964,0.969907,0.855566,0.559073,0.903166,0.868366,0.221656,0.884136,0.982847,0.182376,0.183074,0.0359101,0.243641,0.576355,0.644205,0.787868,0.908165,0.215883,0.587528,0.351995,0.632556,0.646514,0.374674,0.825471,0.0314536,0.274276,0.477809,0.257201,0.934608,0.508246,0.916012,0.426392,0.761405,0.680427,0.980473,0.26382,0.642671,0.337611,0.896538,0.5018,0.108955,0.168986,0.866756,0.83097,0.00374621,0.164417,0.523618,0.394976,0.896828,0.164769,0.930476,0.551971,0.581572,0.790778,0.229809,0.741211,0.485246,0.160363,0.667513,0.0146559,0.845688,0.119741,0.940902,0.0851398,0.136671,0.130635,0.408958,0.194823,0.787373,0.697031,0.146836,0.0820847,0.490485,0.415945,0.182549,0.363401,0.095439,0.309885,0.268597,0.176087,0.749707,0.714806,0.166773,0.990815,0.251565,0.0509433,0.571036,0.491087,0.496921,0.782671,0.30204,0.836055,0.582335,0.515431,0.73933,0.374502,0.598774,0.359987,0.696949,0.231244,0.799356,0.149104,0.502446,0.0845804,0.28337,0.977138,0.196727,0.906921,0.811799,0.912664,0.369515,0.560384,0.166699,0.993457,0.408698,0.102749,0.460728,0.798427,0.657794,0.447183,0.131493,0.0723333,0.559125,0.722778,0.166999,0.0711222,0.887069,0.482475,0.255279,0.0508918,0.123895,0.707612,0.814141,0.706346,0.551084,0.0755924,0.446578,0.120489,0.0693859,0.9964,0.732105,0.310044,0.798807,0.332563,0.849994,0.60903,0.00434035,0.754891,0.950453,0.849795,0.985994,0.824278,0.567618,0.701603,0.538372,0.226867,0.693157,0.357219,0.195145,0.0632703,0.215946,0.894058,0.537953,0.47637,0.599044,0.0774293,0.472633,0.418428,0.336758,0.197951,0.345662,0.575557,0.444507,0.299931,0.210052,0.415017,0.238573,0.64105,0.528072,0.890766,0.46307,0.549651,0.180378,0.963289,0.739944,0.399675,0.222647,0.544253,0.23178,0.49698,0.293219,0.878302,0.33895,0.432108,0.312791,0.72969,0.310744,0.33885,0.790211,0.120719,0.848227,0.520308,0.108349,0.334542,0.72166,0.702437,0.054513,0.594428,0.440479,0.202828,0.243413,0.948725,0.00706542,0.501197,0.827041,0.042069,0.945435,0.176923,0.637499,0.103591,0.0750495,0.510474,0.305179,0.0751939,0.34455,0.160761,0.896468,0.810765,0.0131007,0.962797,0.0470909,0.75222,0.497042,0.0984635,0.515871,0.641976,0.916141,0.881092,0.13675,0.989064,0.143065,0.769074,0.974271,0.968993,0.227978,0.500909,0.521622,0.560997,0.539802,0.295437,0.633318,0.831454,0.173433,0.255426,0.60285,0.223342,0.495648,0.139215,0.283754,0.370939,0.0738674,0.657272,0.177335,0.243983,0.738745,0.72116,0.732575,0.230833,0.194103,0.0823621,0.899294,0.895861,0.439702,0.687506,0.772694,0.811231,0.39578,0.978264,0.222417,0.161632,0.254146,0.844887,0.0961744,0.340409,0.120022,0.263866,0.144688,0.168834,0.244891,0.08005,0.130566,0.254142,0.913805,0.8589,0.571294,0.16622,0.725908,0.411854,0.483229,0.467837,0.369317,0.805988,0.504301,0.6215,0.0751255,0.0461984,0.0356928,0.743305,0.923317,0.119365,0.51582,0.690891,0.189919,0.358594,0.787272,0.226035,0.938486,0.37327,0.648717,0.222222,0.822647,0.468709,0.329948,0.855427,0.862484,0.205037,0.665653,0.225292,0.877501,0.154931,0.830646,0.500907,0.881959,0.246273,0.11083,0.0207235,0.912221,0.601847,0.305661,0.105466,0.95774,0.428978,0.470046,0.621409,0.824445,0.750008,0.445,0.0606696,0.194806,0.838564,0.395853,0.0676029,0.803576,0.99724,0.749128,0.0462363,0.603766,0.93965,0.218864,0.251572,0.602396,0.772276,0.192672,0.856026,0.731249,0.168334,0.960566,0.0422164,0.880956,0.860027,0.0719333,0.653473,0.695678,0.711689,0.553353,0.0631092,0.257944,0.305305,0.554516,0.225581,0.212294,0.0865657,0.752689,0.868007,0.841749,0.364739,0.330774,0.529214,0.192174,0.13543,0.782186,0.860816,0.271375,0.171762,0.604314,0.334306,0.0365608,0.835714,0.897144,0.290281,0.997386,0.282332,0.191469,0.434406,0.733758,0.548818,0.409939,0.637628,0.257325,0.0545499,0.665246,0.553166,0.348662,0.730051,0.131814,0.102736,0.286367,0.822771,0.910671,0.889307,0.160471,0.223479,0.413347,0.288372,0.578567,0.872653,0.533792,0.65768,0.257562,0.426011,0.589271,0.535349,0.134596,0.521465,0.490463,0.963081,0.729274,0.87671,0.189992,0.386695,0.117151,0.0595378,0.851579,0.114878,0.15616,0.63104,0.759074,0.264559,0.0966281,0.507719,0.570529,0.14966,0.845272,0.615923,0.529922,0.0769386,0.969298,0.929407,0.565586,0.148126,0.630124,0.197043,0.62472,0.183647,0.02246,0.701556,0.262441,0.0819474,0.808758,0.17031,0.917821,1.13845e-05,0.621272,0.749523,0.0450808,0.0692856,0.631332,0.374809,0.180903,0.788849,0.263293,0.44021,0.631306,0.519215,0.339422,0.219974,0.702266,0.594904,0.0610101,0.81131,0.687898,0.118028,0.539982,0.722171,0.860193,0.413892,0.391818,0.146912,0.0542195,0.554342,0.41584,0.680036,0.528502,0.999651,0.780542,0.537961,0.924787,0.413023,0.866307,0.324445,0.365999,0.507813,0.752988,0.326722,0.827076,0.271754,0.0945525,0.102675,0.620629,0.294534,0.382177,0.928423,0.227013,0.490635,0.0349591,0.262504,0.140742,0.315645,0.784546,0.854136,0.253895,0.682299,0.767877,0.540237,0.408067,0.925322,0.306075,0.203019,0.925401,0.13555,0.972875,0.987305,0.552479,0.539121,0.251095,0.584063,0.942694,0.78862,0.557485,0.571689,0.693714,0.686633,0.895815,0.694308,0.878781,0.392403,0.964411,0.258408,0.747542,0.195559,0.43176,0.499983,0.55391,0.996423,0.267967,0.684809,0.923796,0.336962,0.0893092,0.278015,0.00651932,0.153413,0.468391,0.0115457,0.326435,0.158925,0.524947,0.209965,0.968225,0.1233,0.407027,0.706929,0.435336,0.220622,0.0906506,0.776998,0.402354,0.428032,0.680302,0.43728,0.498098,0.721467,0.00206202,0.56154,0.677744,0.435293,0.785098,0.110783,0.686537,0.824941,0.118259,0.095084,0.991153,0.419434,0.757122,0.15236,0.659989,0.146633,0.676679,0.733368,0.82992,0.082739,0.152436,0.197277,0.743349,0.964074,0.0274199,0.785783,0.187132,0.845554,0.292205,0.899793,0.844767,0.688745,0.373125,0.349581,0.723944,0.836275,0.273081,0.622087,0.510705,0.101785,0.0696641,0.949535,0.976728,0.656372,0.286791,0.117234,0.842789,0.865934,0.953596,0.338335,0.447728,0.472805,0.436814,0.517063,0.914292,0.380842,0.3541,0.267152,0.622798,0.440143,0.391426,0.513932,0.385337,0.843354,0.801621,0.441209,0.597483,0.745611,0.769051,0.112199,0.621844,0.218864,0.46686,0.791233,0.638985,0.345697,0.975946,0.969979,0.0764349,0.478086,0.2666,0.40617,0.310216,0.0996931,0.723888,0.0108609,0.159942,0.091302,0.872066,0.797415,0.158451,0.595096,0.852569,0.275122,0.532713,0.391225,0.52762,0.109557,0.40696,0.201453,0.914931,0.115685,0.635962,0.888368,0.717307,0.459433,0.974307,0.861046,0.513366,0.929125,0.826272,0.483651,0.651174,0.460264,0.38213,0.793345,0.856661,0.110312,0.33354,0.438772,0.373577,0.999955,0.204731,0.511705,0.945178,0.777545,0.754841,0.628529,0.105638,0.609575,0.0059036,0.492651,0.843226,0.0674866,0.404057,0.879891,0.624917,0.674125,0.108576,0.075618,0.841189,0.0531755,0.945969,0.273535,0.426334,0.129252,0.113106,0.172026,0.687482,0.458589,0.831341,0.204032,0.516406,0.99014,0.798847,0.524112,0.412898,0.809723,0.969682,0.324843,0.935303,0.115266,0.294532,0.773605,0.736842,0.344539,0.965096,0.371588,0.914122,0.621339,0.310117,0.146062,0.0889057,0.35109,0.559847,0.7693,0.254177,0.88196,0.630736,0.581526,0.337421,0.779212,0.489137,0.296124,0.0517968,0.640855,0.039506,0.219607,0.814229,0.459188,0.230604,0.914152,0.794058,0.73841,0.00533551,0.417531,0.309604,0.0761327,0.364847,0.805521,0.346836,0.154976,0.122981,0.0799889,0.635313,0.647299,0.870816,0.764585,0.129787,0.958444,0.0870315,0.501701,0.088579,0.328201,0.959449,0.0144619,0.334865,0.442216,0.055641,0.864411,0.449863,0.345129,0.871677,0.821812,0.0488582,0.231101,0.49366,0.90793,0.316381,0.717761,0.788538,0.883416,0.192303,0.609389,0.44305,0.605039,0.390779,0.534989,0.537508,0.849775,0.977628,0.831971,0.547845,0.405735,0.0902254,0.588096,0.282056,0.0946501,0.560282,0.106447,0.244242,0.869054,0.00505102,0.962863,0.315313,0.148788,0.91466,0.406542,0.291902,0.148258,0.373132,0.211193,0.312706,0.663797,0.457762,0.864745,0.464172,0.105572,0.724254,0.176419,0.40657,0.834636,0.623615,0.428088,0.612666,0.258929,0.939062,0.463973,0.733709,0.481929,0.728086,0.737649,0.0599445,0.265959,0.38851,0.779028,0.792911,0.927051,0.0662007,0.938114,0.65513,0.0433254,0.600073,0.825269,0.932888,0.949252,0.604755,0.501178,0.973501,0.806611,0.0712352,0.258833,0.130144,0.389705,0.280022,0.701254,0.164234,0.438952,0.928433,0.967404,0.143456,0.627547,0.901374,0.177777,0.534832,0.643819,0.200014,0.186355,0.197361,0.172609,0.989872,0.525098,0.107263,0.378794,0.205844,0.793283,0.737106,0.271398,0.27016,0.223095,0.557453,0.213594,0.984877,0.189581,0.803055,0.520112,0.509341,0.471577,0.519902,0.536799,0.598536,0.544947,0.220616,0.718788,0.867933,0.999937,0.311941,0.944565,0.808354,0.790954,0.90724,0.0034281,0.0271145,0.887757,0.660112,|0.788214,0.224425,0.0996063,0.603153,0.738867,0.0614095,0.165852,0.781996,0.415827,0.727065,0.803631,0.668926,0.161411,0.766465,0.170148,0.841806,0.0707217,0.418894,0.739787,0.154465,0.880444,0.946417,0.595498,0.548728,0.3251,0.199908,0.691816,0.839238,0.563026,0.511735,0.331924,0.00406343,0.754474,0.0175279,0.979434,0.593428,0.467127,0.134205,0.714874,0.758451,0.151756,0.189585,0.532126,0.162287,0.0545025,0.423967,0.360884,0.641376,0.804926,0.0819163,0.228307,0.587045,0.669842,0.350951,0.0825225,0.579686,0.325531,0.858725,0.228369,0.73084,0.193504,0.109763,0.328056,0.895048,0.823178,0.157542,0.553227,0.203873,0.297008,0.248701,0.252882,0.432628,0.926636,0.643053,0.232506,0.63451,0.649139,0.10024,0.345061,0.0243028,0.702639,0.724097,0.415963,0.915784,0.41291,0.457164,0.0538443,0.948573,0.0734851,0.330339,0.610463,0.818495,0.00296515,0.372225,0.113334,0.934263,0.230499,0.753453,0.726953,0.534753,0.54182,0.131594,0.172671,0.321743,0.0391959,0.246906,0.813762,0.562656,0.900085,0.205308,0.10726,0.143073,0.357914,0.143089,0.949968,0.650776,0.649515,0.698838,0.418244,0.788956,0.88729,0.0836575,0.897288,0.634854,0.966301,0.545647,0.663458,0.854293,0.247865,0.100679,0.508364,0.145425,0.58232,0.376906,0.626243,0.736384,0.558278,0.105484,0.70944,0.705621,0.321759,0.630369,0.116127,0.960432,0.209427,0.708448,0.825782,0.953847,0.957376,0.579918,0.615032,0.126668,0.725922,0.372411,0.86379,0.828493,0.947908,0.944061,0.172141,0.2146,0.916219,0.313765,0.389261,0.915382,0.340694,0.435618,0.470283,0.802975,0.204047,0.802713,0.146381,0.632567,0.130547,0.595796,0.818811,0.868744,0.543222,0.106596,0.017675,0.561906,0.0710266,0.634737,0.889819,0.344867,0.926215,0.392579,0.286288,0.162258,0.385687,0.276599,0.899843,0.957012,0.0593283,0.151038,0.306546,0.610226,0.667804,0.41344,0.783177,0.690468,0.369387,0.990793,0.819535,0.348841,0.0778839,0.158126,0.700286,0.939524,0.671735,0.338608,0.671211,0.0723916,0.130269,0.976683,0.186821,0.0598637,0.431431,0.921367,0.511853,0.590959,0.259952,0.834605,0.466967,0.00939518,0.50934,0.0711417,0.983888,0.187017,0.228698,0.627098,0.90468,0.0575634,0.198143,0.6386,0.427791,0.81488,0.616044,0.198385,0.0546072,0.252944,0.882104,0.755785,0.292517,0.105562,0.875074,0.663972,0.915228,0.617851,0.763465,0.611231,0.669305,0.772236,0.416995,0.258539,0.984501,0.618164,0.952447,0.282013,0.202377,0.0591064,0.4972,0.626417,0.186055,0.974035,0.78655,0.380191,0.141407,0.976201,0.599163,0.601712,0.0595691,0.477591,0.503119,0.821274,0.0796319,0.346939,0.625797,0.115951,0.886928,0.863904,0.787496,0.511556,0.274739,0.100388,0.260017,0.628304,0.88668,0.882014,0.645364,0.142362,0.125093,0.016573,0.0196005,0.291543,0.837737,0.91557,0.299099,0.00493956,0.39212,0.621546,0.160415,0.788437,0.222374,0.76358,0.426161,0.57496,0.180427,0.484916,0.801331,0.540934,0.129346,0.772851,0.272012,0.407006,0.992731,0.586382,0.213046,0.856658,0.791242,0.356514,0.856126,0.510116,0.0276367,0.318806,0.370367,0.0257756,0.259974,0.715429,0.00852603,0.258321,0.135913,0.220154,0.557132,0.481572,0.794092,0.9319,0.129978,0.319819,0.130377,0.774626,0.611365,0.785039,0.298495,0.320504,0.407592,0.749541,0.614445,0.273313,0.161016,0.378667,0.874,0.191249,0.478717,0.263127,0.430634,0.0511659,0.876907,0.760799,0.0892382,0.770666,0.994621,0.999807,0.385828,0.685238,0.148576,0.311457,0.118335,0.0662233,0.578148,0.0449201,0.168343,0.0606307,0.390574,0.231829,0.741715,0.706717,0.290345,0.0399812,0.295276,0.0254495,0.0509289,0.498695,0.515738,0.932409,0.957709,0.326642,0.381492,0.762357,0.0325888,0.410666,0.595935,0.876169,0.988239,0.481819,0.525532,0.786116,0.317676,0.690627,0.690787,0.5556,0.288558,0.772293,0.972974,0.0371864,0.0523785,0.559559,0.21017,0.905726,0.94834,0.394297,0.656722,0.58466,0.296865,0.370104,0.444794,0.888561,0.535333,0.707276,0.0904771,0.813789,0.828513,0.12031,0.12456,0.481873,0.488703,0.171358,0.509158,0.277839,0.134597,0.551764,0.440617,0.319457,0.643195,0.0161052,0.0578497,0.901189,0.0356628,0.771565,0.520983,0.512852,0.19899,0.0524111,0.373572,0.809731,0.591088,0.718255,0.870994,0.735086,0.610053,0.190336,0.280121,0.0351261,0.484246,0.575556,0.841256,0.957117,0.421678,0.523807,0.14712,0.854699,0.726432,0.817335,0.416928,0.449194,0.541004,0.786882,0.490355,0.472633,0.572704,0.00666076,0.610893,0.300625,0.930024,0.932905,0.185652,0.0869028,0.159407,0.852484,0.350114,0.245666,0.203566,0.0708433,0.843435,0.913032,0.826325,0.914803,0.724201,0.433377,0.852094,0.308178,0.964402,0.199025,0.0299039,0.211825,0.639944,0.107712,0.630101,0.711593,0.74618,0.878148,0.127456,0.733935,0.93977,0.908264,0.956762,0.999006,0.585462,0.844239,0.480261,0.98153,0.115614,0.79496,0.982299,0.687497,0.304458,0.603793,0.772043,0.500391,0.815987,0.412804,0.777988,0.00436544,0.626451,0.312057,0.240397,0.36269,0.673086,0.728961,0.875297,0.302654,0.0684628,0.615634,0.566991,0.455744,0.807114,0.90724,0.745273,0.879827,0.22062,0.828817,0.949817,0.544163,0.917724,0.562938,0.68789,0.229407,0.754221,0.978899,0.613671,0.981747,0.862944,0.954755,0.458338,0.384389,0.810898,0.316604,0.708873,0.591415,0.281207,0.557246,0.10487,0.440235,0.679796,0.239966,0.416634,0.249277,0.629358,0.841789,0.024147,0.0872676,0.955292,0.0867945,0.275028,0.779169,0.943866,0.98986,0.412064,0.397377,0.0729686,0.41612,0.425995,0.213582,0.849387,0.616857,0.726882,0.962712,0.803306,0.00512248,0.410923,0.184756,0.860226,0.932228,0.725145,0.706679,0.684377,0.162756,0.415445,0.109662,0.120044,0.496343,0.471853,0.590382,0.348491,0.122123,0.934059,0.214523,0.428122,0.140266,0.904469,0.497063,0.253714,0.578421,0.242817,0.339357,0.460278,0.255807,0.173881,0.576679,0.0133825,0.704997,0.443944,0.318275,0.866011,0.389875,0.954224,0.461042,0.997325,0.542716,0.0394102,0.858492,0.49347,0.288238,0.215324,0.812804,0.971435,0.325722,0.267777,0.514281,0.953592,0.834452,0.851814,0.776736,0.243684,0.785459,0.944826,0.133832,0.512498,0.958962,0.25321,0.169786,0.174823,0.0640005,0.838876,0.0616139,0.253994,0.881918,0.936562,0.551588,0.348155,0.177761,0.996378,0.148861,0.677865,0.680647,0.673663,0.605606,0.720699,0.943623,0.19164,0.575247,0.18877,0.106079,0.62715,0.19318,0.623127,0.0866669,0.564119,0.571568,0.360612,0.63595,0.203311,0.423611,0.772878,0.970932,0.830272,0.372939,0.62011,0.386762,0.934898,0.891962,0.108033,0.0776602,0.611075,0.067146,0.156585,0.0545202,0.410081,0.453169,0.598452,0.425765,0.778702,0.0957693,0.749773,0.585012,0.894437,0.288195,0.896307,0.763771,0.0818224,0.76698,0.561874,0.770476,0.468481,0.517622,0.661598,0.704359,0.645384,0.124463,0.233024,0.200621,0.404536,0.108995,0.265722,0.0306945,0.611841,0.50185,0.0881005,0.159108,0.251477,0.49647,0.675779,0.97774,0.489066,0.161187,0.134703,0.428505,0.746547,0.381094,0.26148,0.701988,0.237784,0.850177,0.236768,0.211673,0.136845,0.72134,0.0875,0.629265,0.0980839,0.53863,0.229525,0.0326394,0.67253,0.515314,0.764447,0.638794,0.513131,0.215546,0.00573856,0.732977,0.785047,0.175025,0.118151,0.788146,0.508047,0.720617,0.285401,0.234494,0.165273,0.0982075,0.392266,0.0548843,0.233503,0.454141,0.00326383,0.891834,0.721232,0.668168,0.882552,0.637461,0.746423,0.975955,0.481985,0.383082,0.751824,0.0222999,0.740091,0.449328,0.910687,0.932044,0.56115,0.959133,0.317698,0.230864,0.540782,0.950092,0.389648,0.44395,0.28955,0.0613604,0.0399716,0.593966,0.216724,0.905932,0.605269,0.158212,0.987904,0.000490129,0.500816,0.0516168,0.640881,0.625812,0.912527,0.14726,0.959084,0.433248,0.48997,0.872567,0.953683,0.43666,0.906379,0.744641,0.509452,0.674467,0.908731,0.010213,0.419791,0.0461935,0.780037,0.0714958,0.0972486,0.611404,0.41364,0.721998,0.712427,0.253403,0.176397,0.823164,0.154405,0.396139,0.39662,0.823456,0.473377,0.280138,0.139341,0.588149,0.6823,0.479011,0.93399,0.786283,0.654474,0.785268,0.322287,0.753989,0.327692,0.280107,0.459638,0.395411,0.0962237,0.709547,0.332655,0.143766,0.335455,0.898414,0.823284,0.73955,0.369479,0.33026,0.63239,0.148679,0.452156,0.687606,0.556337,0.440646,0.222285,0.376315,0.981966,0.86604,0.821412,0.762034,0.582466,0.077195,0.133814,0.495521,0.880615,0.866206,0.873146,0.77513,0.344732,0.83221,0.343533,0.231515,0.0700111,0.36948,0.448991,0.404557,0.745522,0.925413,0.683293,0.365799,0.103744,0.666379,0.072296,0.82966,0.948897,0.439723,0.74873,0.38978,0.0316133,0.727691,0.947155,0.919527,0.0922047,0.296682,0.379708,0.218127,0.163299,0.405466,0.67329,0.833948,0.748286,0.355905,0.0445811,0.188094,0.285791,0.985088,0.266501,0.219941,0.132039,0.973755,0.718442,0.690982,0.400678,0.962152,0.325116,0.23488,0.841645,0.328217,0.181347,0.969963,0.847403,0.382314,0.176996,0.270846,0.382692,0.912609,0.161841,0.774331,0.356862,0.853592,0.153516,0.853483,0.268677,0.0735778,0.943286,0.0379197,0.176801,0.851947,0.348069,0.0967933,0.698464,0.725061,0.243861,0.883359,0.324115,0.0834877,0.750018,0.63338,0.16753,0.646848,0.113225,0.378058,0.703983,0.0838363,0.731385,0.323846,0.721848,0.743559,0.0174941,0.863595,0.667325,0.365758,0.264283,0.225746,0.290012,0.353856,0.163046,0.16964,0.885791,0.645128,0.542255,0.0106714,0.1886,0.947072,0.16917,0.0668068,0.488198,0.417881,0.166323,0.119477,|0.208829,0.932932,0.0900034,0.361187,0.711372,0.469278,0.22751,0.935094,0.255091,0.207623,0.099879,0.0349342,0.0474998,0.311131,0.787284,0.0120359,0.973557,0.799733,0.951304,0.634267,0.505789,0.900035,0.389726,0.938692,0.0555697,0.196633,0.823216,0.185461,0.0510657,0.0764039,0.299832,0.230184,0.62204,0.620987,0.852175,0.61183,0.522268,0.155992,0.650284,0.439483,0.989496,0.740224,0.538275,0.706276,0.619314,0.935933,0.125842,0.506512,0.492822,0.228222,0.750287,0.319102,0.383621,0.747838,0.0824848,0.540128,0.896296,0.431276,0.38078,0.434521,0.539012,0.335065,0.238106,0.410378,0.710654,0.954421,0.159354,0.454407,0.681965,0.287434,0.0285224,0.705627,0.530174,0.592471,0.31339,0.585027,0.486476,0.80331,0.573583,0.924648,0.811353,0.134803,0.553866,0.464558,0.588935,0.406717,0.408102,0.259045,0.947841,0.711543,0.346789,0.904663,0.805553,0.862357,0.710994,0.853633,0.574999,0.998041,0.403049,0.645949,0.63118,0.737829,0.717665,0.851331,0.0968423,0.905314,0.418685,0.497098,0.782249,0.798016,0.00684935,0.403933,0.821304,0.158648,0.888561,0.441198,0.717109,0.749331,0.202915,0.597426,0.525294,0.0368847,0.936981,0.261441,0.819479,0.188454,0.0347126,0.0316563,0.0574994,0.796506,0.235473,0.054378,0.741172,0.25549,0.0998319,0.275171,0.363363,0.33651,0.116533,0.249926,0.69733,0.63306,0.52805,0.836819,0.512266,0.776389,0.528884,0.325486,0.640029,0.857317,0.0267281,0.0603494,0.857457,0.144427,0.392536,0.0520396,0.743621,0.833621,0.508336,0.839393,0.900988,0.142907,0.631494,0.20372,0.929123,0.966014,0.689371,0.778685,0.0107278,0.525458,0.153778,0.449303,0.781217,0.238599,0.000503123,0.643971,0.862477,0.420817,0.970751,0.125923,0.170585,0.791246,0.361807,0.395381,0.241964,0.0306539,0.399974,0.948207,0.26437,0.697871,0.215556,0.195613,0.048251,0.831597,0.453934,0.339278,0.303762,0.732279,0.327518,0.445064,0.567269,0.48745,0.476083,0.376288,0.44522,0.301387,0.772272,0.0255111,0.621526,0.246841,0.759046,0.228994,0.610187,0.0691479,0.597668,0.813144,0.596704,0.0435486,0.615634,0.534253,0.889735,0.315809,0.941838,0.308335,0.690983,0.0749311,0.200005,0.282289,0.446547,0.694555,0.743766,0.393752,0.279365,0.874085,0.0709774,0.767424,0.922998,0.428508,0.967503,0.459538,0.629554,0.704786,0.573309,0.568218,0.656754,0.762473,0.888154,0.820387,0.15195,0.586014,0.66448,0.14963,0.300579,0.403775,0.526334,0.620839,0.0471449,0.0322182,0.373288,0.797092,0.160629,0.89363,0.200474,0.902873,0.0468209,0.866576,0.0107361,0.330313,0.831913,0.19929,0.313917,0.0550508,0.645141,0.720125,0.188666,0.907937,0.734505,0.401234,0.407404,0.0620266,0.0549595,0.301884,0.542367,0.186292,0.151898,0.316355,0.900378,0.794276,0.513141,0.6656,0.704501,0.749585,0.254732,0.709085,0.290254,0.954442,0.356896,0.197833,0.100036,0.876959,0.371026,0.776668,0.840436,0.518891,0.655764,0.843483,0.206412,0.609771,0.355787,0.220828,0.460396,0.587644,0.431847,0.0935133,0.940885,0.831911,0.674087,0.934511,0.560513,0.211153,0.44942,0.348754,0.379512,0.240944,0.929279,0.0876398,0.545084,0.276471,0.148581,0.273758,0.381986,0.940006,0.468516,0.696901,0.451532,0.977899,0.924695,0.150055,0.885903,0.676614,0.630955,0.539418,0.507632,0.337109,0.55789,0.277439,0.181545,0.170499,0.17945,0.0563699,0.716212,0.129966,0.503182,0.256278,0.735794,0.485374,0.217348,0.0997046,0.0592489,0.157654,0.307578,0.797701,0.062082,0.0455751,0.566715,0.206528,0.868738,0.628029,0.431061,0.530528,0.619938,0.305929,0.215948,0.628083,0.0306427,0.302462,0.315821,0.276093,0.482143,0.87955,0.114331,0.897754,0.712942,0.024171,0.597188,0.999627,0.528308,0.914663,0.815148,0.979712,0.336805,0.805627,0.327538,0.00240988,0.205221,0.499985,0.472487,0.5046,0.814881,0.998925,0.802612,0.259203,0.401987,0.0679582,0.822182,0.578259,0.0809673,0.4925,0.450982,0.658062,0.735359,0.539559,0.709302,0.480262,0.443161,0.815336,0.405763,0.713741,0.728974,0.570774,0.238666,0.288051,0.779801,0.864985,0.242168,0.354291,0.573896,0.729926,0.864777,0.865534,0.942612,0.293796,0.0426067,0.453658,0.742148,0.509139,0.835623,0.00414824,0.759373,0.499389,0.518578,0.0182323,0.4112,0.832437,0.912897,0.914501,0.946227,0.687229,0.651224,0.193714,0.1016,0.30782,0.648209,0.259924,0.856627,0.0623586,0.786944,0.99195,0.387733,0.143755,0.317775,0.178602,0.597422,0.613055,0.0932783,0.598312,0.712329,0.846398,0.146846,0.548789,0.686281,0.314393,0.902348,0.161254,0.44081,0.562078,0.928579,0.756684,0.497809,0.660527,0.00681448,0.241721,0.773932,0.055223,0.151059,0.926395,0.580284,0.0294574,0.311233,0.642295,0.325134,0.717596,0.888174,0.267174,0.543122,0.643591,0.488208,0.123281,0.824695,0.67838,0.270793,0.493447,0.5949,0.928512,0.801332,0.0705616,0.594243,0.827783,0.703554,0.54869,0.321162,0.197061,0.533208,0.333892,0.420532,0.294531,0.360924,0.897415,0.305114,0.463413,0.901209,0.223219,0.300996,0.462397,0.731723,0.675762,0.173789,0.821727,0.677481,0.687186,0.913877,0.439058,0.251128,0.725572,0.369841,0.545851,0.88143,0.187974,0.692388,0.830611,0.178928,0.472376,0.473528,0.884471,0.420371,0.477248,0.543686,0.627896,0.584048,0.245871,0.096592,0.810708,0.354768,0.798764,0.575829,0.805317,0.988681,0.220228,0.951882,0.859487,0.255309,0.677891,0.538595,0.186203,0.86664,0.71203,0.598541,0.982473,0.602678,0.250191,0.527618,0.794177,0.0758733,0.57717,0.668737,0.341171,0.0977602,0.379484,0.228889,0.968605,0.171376,0.795717,0.830487,0.0418869,0.899117,0.103759,0.237118,0.0439655,0.485415,0.251174,0.614219,0.0423445,0.806033,0.0920169,0.919999,0.404964,0.773322,0.422899,0.917898,0.737347,0.692508,0.429588,0.0607848,0.480455,0.89939,0.654666,0.426551,0.0646069,0.406524,0.473845,0.448004,0.447787,0.9605,0.79476,0.565102,0.486735,0.456916,0.113276,0.651971,0.0944865,0.0403538,0.0758986,0.36735,0.376637,0.677182,0.510954,0.786856,0.386313,0.309985,0.674849,0.349937,0.787362,0.058115,0.669561,0.430298,0.348495,0.863327,0.698385,0.170651,0.148526,0.805426,0.932474,0.955731,0.690586,0.278166,0.859361,0.927785,0.29698,0.0242032,0.984155,0.874758,0.250274,0.802455,0.872166,0.858654,0.952446,0.945085,0.125835,0.89245,0.29163,0.0799052,0.249479,0.915013,0.973603,0.517384,0.0187232,0.22607,0.322104,0.589258,0.458553,0.102784,0.912099,0.354406,0.882666,0.366971,0.736676,0.401602,0.186363,0.378266,0.0296083,0.380472,0.106757,0.11233,0.771355,0.640312,0.455664,0.965168,0.733697,0.0231315,0.151628,0.29678,0.985973,0.430407,0.934299,0.779898,0.924092,0.0356315,0.817051,0.726666,0.519787,0.970341,0.803104,0.305917,0.125665,0.0973176,0.953698,0.618402,0.543476,0.814955,0.911965,0.219438,0.90596,0.0874671,0.696358,0.436287,0.316091,0.80908,0.460292,0.964981,0.785507,0.0890499,0.257513,0.719966,0.230507,0.28078,0.559884,0.525972,0.632991,0.451236,0.834219,0.571945,0.230822,0.262764,0.197382,0.295873,0.44768,0.219534,0.560565,0.647363,0.746648,0.934149,0.287584,0.0141216,0.888422,0.882864,0.361588,0.344396,0.219702,0.945736,0.634548,0.626386,0.305614,0.433076,0.82352,0.41325,0.539412,0.714538,0.949285,0.40789,0.915744,0.740413,0.42038,0.917437,0.821212,0.395296,0.425454,0.177674,0.112663,0.3171,0.581658,0.368254,0.290615,0.58237,0.339818,0.671537,0.802706,0.730551,0.112998,0.0283317,0.91715,0.976676,0.644949,0.416082,0.4905,0.0830861,0.399469,0.73967,0.00946414,0.315778,0.518669,0.571514,0.115557,0.452536,0.692062,0.746694,0.87128,0.488883,0.136849,0.629877,0.794666,0.117183,0.719652,0.00850439,0.582068,0.37351,0.649041,0.774077,0.737706,0.691854,0.526202,0.849768,0.713858,0.0449685,0.540009,0.5712,0.244347,0.309119,0.825613,0.414329,0.98312,0.672788,0.120965,0.92012,0.334771,0.280278,0.81466,0.579659,0.147103,0.825141,0.649639,0.815293,0.0444735,0.877656,0.482084,0.882103,0.96968,0.516964,0.0657374,0.962383,0.0095551,0.629306,0.587421,0.110919,0.865877,0.978465,0.653845,0.406103,0.0185466,0.679232,0.780453,0.43952,0.758393,0.982707,0.837997,0.895415,0.626133,0.610845,0.949279,0.103296,0.916625,0.738665,0.402824,0.896864,0.73583,0.0271024,0.914056,0.663418,0.255664,0.406637,0.771102,0.896822,0.129757,0.66096,0.591315,0.179168,0.0810559,0.93277,0.885528,0.366002,0.104638,0.694367,0.987974,0.0955054,0.615949,0.851704,0.794132,0.820948,0.419564,0.535146,0.207455,0.614821,0.257872,0.232904,0.101636,0.429976,0.228153,0.43753,0.0721621,0.053188,0.522939,0.324395,0.119993,0.989018,0.289277,0.71206,0.336454,0.233189,0.553477,0.742693,0.0203268,0.374224,0.837696,0.0998408,0.689268,0.887795,0.0179254,0.83834,0.537008,0.914578,0.781324,0.515863,0.806398,0.978938,0.5981,0.997576,0.0896734,0.22176,0.47302,0.877222,0.193666,0.744158,0.841089,0.937491,0.185203,0.788069,0.305419,0.317242,0.226588,0.34837,0.666877,0.949643,0.21448,0.91778,0.231909,0.714034,0.903558,0.414941,0.786384,0.844878,0.0645676,0.567444,0.482086,0.0280418,0.190492,0.17785,0.167502,0.337306,0.287457,0.289093,0.347144,0.0487505,0.0835347,0.780161,0.604036,0.318396,0.326655,0.675678,0.998116,0.97593,0.381044,0.490089,0.995017,0.267462,0.691464,0.740595,0.719895,0.730389,0.518815,0.723833,0.71381,0.602474,0.187877,0.555175,0.413879,0.595959,0.805332,0.481397,0.173909,0.522021,0.244793,0.136169,0.920874,0.222047,0.838614,0.480196,0.0991593,0.210073,0.631982,0.985177,0.896658,|0.140375,0.90832,0.51016,0.640184,0.700448,0.244448,0.237718,0.342243,0.995441,0.398772,0.347267,0.221649,0.898662,0.167581,0.437798,0.116836,0.412274,0.805496,0.0349478,0.10057,0.101169,0.557807,0.869043,0.16409,0.487125,0.592986,0.192897,0.849019,0.787146,0.199994,0.129072,0.629049,0.00496024,0.424172,0.207512,0.377778,0.0234975,0.433061,0.989133,0.965182,0.57732,0.727827,0.58528,0.728037,0.332246,0.856188,0.858316,0.988064,0.313905,0.798057,0.309072,0.261297,0.735556,0.596108,0.0370564,0.0308822,0.361166,0.36145,0.239794,0.860135,0.812767,0.113918,0.995679,0.909774,0.881005,0.266313,0.455157,0.757766,0.0675896,0.57195,0.568715,0.460373,0.0821247,0.233355,0.631819,0.0805385,0.393574,0.259812,0.99104,0.519046,0.4319,0.912026,0.167721,0.362643,0.240456,0.805848,0.397664,0.873802,0.340494,0.179282,0.540386,0.0908356,0.580378,0.678128,0.368134,0.0389748,0.823247,0.452977,0.0149795,0.204057,0.00140893,0.289476,0.873575,0.754591,0.732349,0.596351,0.0457851,0.180893,0.638792,0.461325,0.487252,0.380161,0.532187,0.455817,0.220432,0.633146,0.157162,0.389257,0.551039,0.559231,0.622222,0.814494,0.257959,0.170393,0.476056,0.012326,0.550412,0.841616,0.726951,0.432563,0.173303,0.0692196,0.22195,0.634302,0.54043,0.0578219,0.299521,0.694045,0.035572,0.0768306,0.773622,0.304157,0.518903,0.654556,0.544725,0.015933,0.326027,0.585329,0.818759,0.6826,0.231152,0.411474,0.670774,0.728149,0.694541,0.640322,0.656644,0.114775,0.775075,0.362886,0.281393,0.83644,0.438412,0.803023,0.141728,0.886675,0.280651,0.761786,0.345266,0.26093,0.449821,0.15929,0.570179,0.816889,0.407282,0.0437458,0.337568,0.0195895,0.808292,0.297201,0.392072,0.0460362,0.268998,0.91732,0.544503,0.990472,0.59661,0.790145,0.543303,0.0137643,0.606959,0.950723,0.0428852,0.945233,0.202632,0.473011,0.972396,0.200179,0.787779,0.236174,0.514415,0.08947,0.519981,0.88651,0.991239,0.267073,0.545716,0.588555,0.687608,0.188001,0.534991,0.413985,0.317799,0.706785,0.709427,0.708732,0.203384,0.522013,0.890103,0.94123,0.590529,0.144055,0.0936673,0.0853232,0.139712,0.902149,0.71866,0.912062,0.472861,0.958493,0.380152,0.168785,0.519149,0.838671,0.783967,0.884091,0.440223,0.206567,0.131719,0.564078,0.36968,0.367444,0.098931,0.866667,0.438303,0.981496,0.809343,0.752401,0.870249,0.0261138,0.593161,0.56627,0.611484,0.969495,0.504871,0.127045,0.854504,0.498019,0.483543,0.804861,0.286048,0.264736,0.453911,0.624869,0.595157,0.837356,0.666387,0.339023,0.12344,0.882518,0.546685,0.807426,0.7025,0.0216594,0.367879,0.169131,0.880616,0.32036,0.87295,0.454493,0.261534,0.459652,0.666912,0.129921,0.539005,0.0965133,0.940806,0.517633,0.927259,0.904491,0.902105,0.433715,0.415397,0.972235,0.929277,0.0300724,0.805417,0.464032,0.650985,0.313643,0.620036,0.408541,0.849791,0.988604,0.591635,0.524921,0.317014,0.46342,0.0445575,0.795812,0.810102,0.214358,0.0596368,0.3535,0.0179099,0.927351,0.0724249,0.724921,0.458568,0.32703,0.215988,0.588034,0.154928,0.554591,0.387392,0.0183856,0.355892,0.686608,0.620652,0.0314389,0.986706,0.0663567,0.305512,0.62351,0.71853,0.480327,0.246359,0.154164,0.728465,0.571087,0.893775,0.815374,0.599601,0.416081,0.607358,0.266004,0.194774,0.446044,0.0150807,0.505898,0.328185,0.223122,0.116574,0.0223558,0.925724,0.184822,0.858404,0.603972,0.622947,0.890609,0.0298582,0.278236,0.562536,0.825409,0.697973,0.130306,0.972042,0.780517,0.0379964,0.681491,0.965255,0.225552,0.216581,0.38309,0.0969612,0.394982,0.935752,0.944385,0.251409,0.556193,0.920795,0.825601,0.33843,0.464657,0.79866,0.343485,0.471193,0.456126,0.873049,0.361438,0.0198525,0.252924,0.080748,0.515669,0.2273,0.727577,0.129482,0.433141,0.872433,0.759535,0.33967,0.795113,0.253104,0.513852,0.586665,0.136131,0.98768,0.103995,0.654709,0.605794,0.115561,0.642638,0.209313,0.379314,0.568387,0.502565,0.0219327,0.127741,0.0757378,0.875502,0.331388,0.117314,0.310505,0.603364,0.439684,0.275405,0.664422,0.43351,0.021201,0.128699,0.166381,0.120421,0.680823,0.668009,0.798274,0.106048,0.269314,0.753785,0.59047,0.402734,0.715627,0.699518,0.759,0.591658,0.499544,0.0430763,0.128404,0.535358,0.803897,0.914892,0.322989,0.283723,0.697029,0.959907,0.361244,0.254577,0.448388,0.880049,0.312322,0.833776,0.0552992,0.0593891,0.0967637,0.925205,0.25226,0.0216818,0.0519242,0.31443,0.950091,0.167256,0.307595,0.032508,0.584554,0.514451,0.265431,0.197558,0.418501,0.566536,0.303093,0.970011,0.598265,0.159228,0.653911,0.941463,0.455537,0.386668,0.915265,0.255334,0.298928,0.921242,0.35756,0.145478,0.706398,0.601922,0.697438,0.118659,0.443213,0.030958,0.566139,0.553309,0.146846,0.541203,0.115006,0.853388,0.894365,0.538899,0.337217,0.835851,0.728413,0.382933,0.663729,0.811611,0.609222,0.523704,0.195976,0.117209,0.871824,0.0785192,0.789461,0.908004,0.566131,0.891727,0.441079,0.939541,0.465214,0.877619,0.70942,0.401317,0.0687879,0.123426,0.552805,0.589858,0.746259,0.521621,0.194934,0.197318,0.691972,0.317664,0.826672,0.0169251,0.0800472,0.7137,0.660081,0.570346,0.558609,0.891973,0.608159,0.0202489,0.619703,0.23297,0.109146,0.556256,0.923544,0.192292,0.549323,0.578047,0.0583646,0.406268,0.0429381,0.26726,0.680172,0.414602,0.17236,0.290279,0.428382,0.403181,0.573165,0.314375,0.891046,0.52396,0.271212,0.962977,0.49693,0.0800931,0.876296,0.686233,0.8609,0.389402,0.132847,0.880381,0.582587,0.151398,0.93137,0.16495,0.267628,0.874671,0.620089,0.238636,0.793954,0.942618,0.922004,0.0567518,0.14225,0.19717,0.831439,0.214167,0.873739,0.918054,0.516022,0.824781,0.859106,0.118165,0.283431,0.0464306,0.139207,0.452784,0.659004,0.817047,0.14054,0.783014,0.62452,0.93539,0.734508,0.598828,0.514129,0.386264,0.707012,0.46072,0.391253,0.908253,0.989469,0.149622,0.384838,0.402625,0.471269,0.12508,0.907241,0.782534,0.871308,0.950578,0.644245,0.526104,0.653725,0.42632,0.346005,0.13853,0.956117,0.0475127,0.895878,0.990032,0.345769,0.628104,0.34963,0.756745,0.679525,0.854981,0.768365,0.864435,0.147236,0.725029,0.249328,0.380578,0.236466,0.467128,0.11229,0.422388,0.225505,0.408764,0.534466,0.993655,0.611248,0.515671,0.727009,0.305658,0.794741,0.908374,0.133265,0.234909,0.368607,0.394305,0.0473955,0.18751,0.99636,0.760462,0.462238,0.847653,0.364315,0.333972,0.783085,0.644323,0.215736,0.104439,0.586812,0.987156,0.444629,0.975861,0.230784,0.161722,0.878633,0.664978,0.0156484,0.0231802,0.966539,0.480061,0.946447,0.65696,0.965358,0.286754,0.00859302,0.0481048,0.720277,0.779344,0.415635,0.95904,0.378674,0.623118,0.759864,0.660286,0.386453,0.392565,0.726651,0.816656,0.596004,0.686609,0.430505,0.346673,0.180018,0.808842,0.337731,0.459912,0.241891,0.784798,0.140279,0.694724,0.0833066,0.185505,0.396533,0.264743,0.070197,0.504578,0.65969,0.662154,0.835552,0.268231,0.138717,0.195456,0.516659,0.832442,0.577191,0.379023,0.157487,0.242429,0.270496,0.347828,0.645052,0.696539,0.411995,0.427189,0.442552,0.308051,0.475304,0.990117,0.575664,0.179601,0.364884,0.500323,0.452636,0.276177,0.615807,0.996284,0.153554,0.63349,0.705115,0.973571,0.0882024,0.272552,0.772588,0.638075,0.279576,0.069414,0.119788,0.341845,0.852403,0.899205,0.712636,0.381241,0.402647,0.487436,0.501152,0.756596,0.78235,0.711564,0.997211,0.055362,0.311116,0.0303852,0.918776,0.0969437,0.926055,0.350889,0.525131,0.0787539,0.358482,0.580586,0.214761,0.492071,0.18062,0.32332,0.696154,0.608161,0.405031,0.579309,0.542867,0.294638,0.385302,0.740309,0.361178,0.180727,0.711126,0.208408,0.620922,0.129843,0.591139,0.735409,0.790039,0.846651,0.624771,0.549364,0.647632,0.164503,0.856321,0.705905,0.815087,0.335036,0.0887533,0.841211,0.370947,0.246113,0.397477,0.395967,0.408418,0.119553,0.449782,0.949581,0.114887,0.159995,0.0505332,0.0513191,0.947416,0.304206,0.049626,0.491048,0.274153,0.0140137,0.66517,0.80646,0.547859,0.45563,0.316874,0.510415,0.218094,0.354439,0.438275,0.324921,0.862755,0.10659,0.0207404,0.846188,0.878479,0.768883,0.343877,0.171289,0.0685347,0.730914,0.193609,0.769693,0.463781,0.737977,0.659776,0.208954,0.94368,0.0208212,0.926879,0.646139,0.892402,0.570487,0.936548,0.0619889,0.813214,0.0366277,0.0867318,0.368866,0.865889,0.38608,0.0808139,0.189674,0.232597,0.376318,0.810111,0.137255,0.96577,0.873526,0.998136,0.521989,0.75918,0.463878,0.804499,0.73711,0.61656,0.815058,0.275244,0.0847974,0.281551,0.47452,0.827149,0.838223,0.340752,0.432551,0.881862,0.844769,0.864669,0.860501,0.861877,0.601944,0.82058,0.441148,0.569068,0.881676,0.415904,0.0455507,0.393769,0.226332,0.890068,0.633347,0.267532,0.774993,0.661765,0.39202,0.724715,0.203809,0.168574,0.873669,0.567325,0.422107,0.903425,0.443352,0.475222,0.447699,0.852882,0.0354884,0.405193,0.0364443,0.845878,0.540442,0.618673,0.689234,0.678363,0.187743,0.422758,0.910325,0.569212,0.637156,0.441801,0.776043,0.449064,0.246512,0.875915,0.941934,0.622814,0.269371,0.378089,0.156037,0.802415,0.3859,0.875142,0.501984,0.657577,0.302264,0.815293,0.863345,0.289418,0.0450227,0.413904,0.634999,0.689821,0.742068,0.862061,0.27027,0.827917,0.153054,0.989435,0.754103,0.371144,0.468282,0.680458,0.975314,0.0737013,0.853505,0.112052,0.989408,0.181348,0.531444,0.557858,0.256306,0.942764,0.816127,0.350532,0.125755,0.220077,0.7546,|0.186182,0.131789,0.592423,0.284446,0.823213,0.803319,0.14433,0.641342,0.800628,0.286426,0.952665,0.218086,0.266948,0.761568,0.642141,0.535689,0.637816,0.38219,0.61541,0.460729,0.681756,0.150579,0.0783151,0.147418,0.985343,0.353637,0.854512,0.578493,0.705299,0.679598,0.836751,0.745087,0.343406,0.108993,0.422852,0.651506,0.975919,0.898846,0.135475,0.692803,0.137232,0.411718,0.136585,0.534153,0.841154,0.592688,0.0148908,0.575365,0.870062,0.413569,0.185093,0.0625499,0.259798,0.763227,0.470752,0.616167,0.876827,0.219763,0.781234,0.991832,0.0813733,0.794793,0.591665,0.0471522,0.146524,0.693378,0.924891,0.556697,0.564155,0.839114,0.112996,0.716556,0.715146,0.329295,0.0459728,0.273078,0.524357,0.667116,0.839708,0.0517917,0.429044,0.969848,0.896529,0.336933,0.941842,0.55939,0.986269,0.925813,0.565708,0.382004,0.795129,0.924253,0.442136,0.761342,0.856412,0.833234,0.0761673,0.0696174,0.0934018,0.538262,0.8838,0.856854,0.230858,0.930601,0.0903553,0.445979,0.47035,0.690076,0.145608,0.162831,0.736479,0.327968,0.11182,0.163386,0.156443,0.064881,0.336295,0.0454173,0.163525,0.97977,0.342517,0.302615,0.141713,0.657506,0.928436,0.938173,0.721948,0.821496,0.948342,0.326583,0.355906,0.643174,0.84824,0.220438,0.440266,0.237629,0.412954,0.177778,0.972555,0.22718,0.912181,0.57756,0.663927,0.632325,0.561424,0.688906,0.725438,0.566333,0.963867,0.530976,0.344081,0.543763,0.463297,0.771997,0.428147,0.491683,0.109112,0.74025,0.545856,0.771984,0.263739,0.505278,0.353296,0.053825,0.124105,0.58576,0.386838,0.21999,0.444982,0.49474,0.98408,0.945172,0.776456,0.483512,0.275987,0.567642,0.384917,0.384088,0.612408,0.569247,0.861081,0.0809262,0.921959,0.770081,0.520382,0.745704,0.877094,0.886104,0.130491,0.858955,0.821195,0.274567,0.178152,0.530329,0.627474,0.065845,0.751787,0.100244,0.955378,0.925518,0.635998,0.191139,0.50984,0.614421,0.498755,0.650975,0.679617,0.469513,0.955812,0.317984,0.68354,0.44217,0.611797,0.155365,0.796766,0.0284354,0.750435,0.583044,0.390125,0.789542,0.939586,0.344366,0.277825,0.791058,0.234641,0.164437,0.0438684,0.101621,0.310672,0.952172,0.770322,0.390109,0.959378,0.0961689,0.217262,0.328986,0.849683,0.564861,0.528142,0.850104,0.162913,0.711167,0.600243,0.236668,0.617547,0.168491,0.894558,0.487808,0.927681,0.638427,0.687364,0.701832,0.318217,0.00333434,0.771912,0.0805309,0.677964,0.495744,0.927812,0.78767,0.857916,0.492879,0.450663,0.859346,0.322675,0.677093,0.172336,0.468322,0.330088,0.983839,0.682496,0.237944,0.450712,0.698249,0.909909,0.267518,0.0918713,0.3175,0.957224,0.178656,0.0110944,0.392991,0.158315,0.994141,0.672376,0.639578,0.181004,0.912266,0.275082,0.00494379,0.803157,0.307723,0.354363,0.60985,0.779688,0.710467,0.24821,0.725911,0.155446,0.207743,0.200471,0.160196,0.173752,0.388394,0.383504,0.748354,0.56959,0.458668,0.220838,0.64982,0.751544,0.382787,0.961077,0.420245,0.267813,0.481723,0.613012,0.00540662,0.825002,0.82461,0.685505,0.830631,0.492117,0.804234,0.45774,0.392058,0.87331,0.301936,0.340303,0.21683,0.855887,0.215701,0.99667,0.713862,0.77177,0.373001,0.545921,0.635153,0.071133,0.257225,0.984171,0.0826969,0.0577067,0.39629,0.255414,0.120864,0.0193415,0.0970761,0.242241,0.931061,0.21647,0.295399,0.735818,0.383445,0.489024,0.536311,0.325406,0.199767,0.503052,0.0560373,0.0305694,0.515274,0.368888,0.864532,0.230228,0.98448,0.122533,0.736016,0.838032,0.280292,0.463538,0.377063,0.366465,0.4946,0.300163,0.419336,0.619342,0.240554,0.471934,0.885053,0.1139,0.814866,0.478782,0.313479,0.149363,0.766206,0.868328,0.338613,0.490842,0.736821,0.962817,0.118823,0.541323,0.775106,0.184995,0.105199,0.310869,0.845195,0.179937,0.992612,0.997655,0.0196147,0.781355,0.453959,0.165243,0.546905,0.375748,0.797391,0.929864,0.0164403,0.670493,0.923325,0.0463541,0.802041,0.249965,0.256939,0.628972,0.565015,0.451439,0.495082,0.592013,0.0590102,0.189559,0.180578,0.946549,0.103801,0.776035,0.405208,0.097817,0.732756,0.728701,0.0672998,0.0556925,0.233686,0.965804,0.723514,0.733151,0.769585,0.153692,0.798177,0.866615,0.922501,0.983939,0.601289,0.95783,0.365792,0.180816,0.726457,0.629578,0.478926,0.573096,0.573815,0.296908,0.612973,0.971659,0.153537,0.223724,0.253245,0.0574166,0.364786,0.419919,0.983099,0.672017,0.858969,0.536424,0.0351102,0.586491,0.540142,0.353477,0.236292,0.482843,0.0615643,0.831497,0.734804,0.869747,0.434327,0.19755,0.684348,0.882683,0.867079,0.0958341,0.159734,0.821057,0.808512,0.62835,0.518955,0.928981,0.0157567,0.835939,0.263427,0.269929,0.0989926,0.44321,0.109173,0.58592,0.752577,0.124543,0.00546819,0.730108,0.865229,0.574082,0.903185,0.0519828,0.414398,0.182545,0.710784,0.751036,0.105633,0.511568,0.0839496,0.188866,0.575923,0.90466,0.223603,0.597397,0.884822,0.196235,0.751621,0.425331,0.590377,0.70009,0.159772,0.762006,0.712626,0.96284,0.178649,0.653743,0.348383,0.681932,0.478079,0.830048,0.44417,0.662868,0.790247,0.464286,0.73229,0.474257,0.0464693,0.514215,0.309158,0.92409,0.988321,0.914281,0.267415,0.447872,0.2812,0.765818,0.780767,0.629948,0.168321,0.398957,0.00986665,0.866432,0.23866,0.247462,0.563926,0.334659,0.547188,0.12146,0.444018,0.970164,0.174874,0.401439,0.863148,0.381123,0.45789,0.0271038,0.766834,0.62974,0.711397,0.811889,0.609403,0.109156,0.329526,0.617634,0.386615,0.92044,0.467296,0.974535,0.480723,0.571768,0.62723,0.0207145,0.481898,0.933669,0.350141,0.378911,0.614707,0.676355,0.851772,0.0726282,0.689947,0.179613,0.52503,0.628102,0.741309,0.648358,0.695595,0.178536,0.480722,0.805017,0.0242971,0.458244,0.388053,0.219152,0.461592,0.37577,0.792437,0.613272,0.533471,0.285117,0.164369,0.192177,0.506859,0.218058,0.949466,0.205315,0.591309,0.401054,0.51688,0.574835,0.120646,0.183114,0.774673,0.608742,0.0945631,0.530114,0.132025,0.0683543,0.0494038,0.312795,0.520023,0.679932,0.461448,0.912072,0.466135,0.629491,0.772138,0.533256,0.0640926,0.700072,0.220431,0.808167,0.570848,0.990709,0.0844442,0.750093,0.613264,0.776449,0.672632,0.584936,0.581374,0.735506,0.365897,0.644782,0.180061,0.937548,0.627414,0.427333,0.685532,0.21176,0.480434,0.1452,0.749265,0.291086,0.738561,0.446692,0.445759,0.781451,0.634643,0.618205,0.592429,0.336652,0.662933,0.517316,0.908665,0.780893,0.730369,0.142894,0.757405,0.545391,0.0607478,0.247805,0.773323,0.197046,0.887544,0.755634,0.710534,0.399649,0.636222,0.782652,0.131723,0.191049,0.296735,0.218664,0.939404,0.959889,0.57727,0.228136,0.164869,0.452742,0.911059,0.0844464,0.54855,0.611358,0.755875,0.511908,0.133481,0.248819,0.835279,0.0302967,0.0613072,0.458422,0.718873,0.928568,0.979099,0.87777,0.346157,0.217104,0.442931,0.788544,0.857682,0.85898,0.727219,0.628029,0.323289,0.238026,0.88771,0.924758,0.869993,0.500489,0.0869525,0.68246,0.895958,0.484374,0.527566,0.64494,0.016019,0.835892,0.545769,0.466387,0.10352,0.839296,0.938365,0.868836,0.265257,0.22709,0.057483,0.358255,0.46696,0.0416597,0.262327,0.435233,0.383918,0.722853,0.368713,0.825736,0.593202,0.0897387,0.145944,0.840521,0.936925,0.83863,0.407208,0.760198,0.193116,0.130273,0.326219,0.213451,0.402898,0.882685,0.671611,0.826211,0.165056,0.833121,0.968103,0.742193,0.647649,0.203558,0.696879,0.516039,0.519444,0.617581,0.785861,0.404968,0.699248,0.887417,0.846766,0.17038,0.527739,0.472129,0.76274,0.260615,0.443426,0.297046,0.818041,0.0170962,0.285407,0.104137,0.878527,0.670925,0.901657,0.443003,0.322407,0.460966,0.177632,0.925601,0.297461,0.281438,0.8566,0.809392,0.45024,0.413898,0.429427,0.0016098,0.479804,0.274882,0.117354,0.442318,0.674632,0.602494,0.696677,0.962533,0.829484,0.0482873,0.0247909,0.609036,0.973498,0.252167,0.00820625,0.27834,0.525687,0.033535,0.26337,0.26245,0.943114,0.809789,0.380007,0.92262,0.770336,0.102258,0.359019,0.745117,0.863195,0.314033,0.675689,0.953801,0.715913,0.565033,0.679815,0.878431,0.0861508,0.966906,0.93436,0.128007,0.258196,0.12699,0.530358,0.923479,0.181104,0.936117,0.368568,0.960666,0.243267,0.970101,0.345712,0.98942,0.218391,0.909234,1.38283e-05,0.987329,0.597704,0.553986,0.850836,0.596266,0.159779,0.528943,0.0682948,0.588463,0.496369,0.568945,0.243646,0.524831,0.28454,0.0481188,0.260462,0.422745,0.078917,0.424915,0.0213408,0.44371,0.128937,0.809581,0.770577,0.235857,0.176462,0.0545701,0.220025,0.297474,0.982031,0.834921,0.456873,0.265512,0.912136,0.514282,0.946024,0.725222,0.211508,0.236436,0.438065,0.243585,0.308979,0.62091,0.624544,0.0440663,0.169994,0.800116,0.398631,0.443269,0.999486,0.502519,0.244998,0.945104,0.773966,0.244596,0.0839052,0.578144,0.0670258,0.262347,0.263893,0.951294,0.918986,0.501668,0.127865,0.978984,0.351306,0.648401,0.547952,0.732337,0.489926,0.624121,0.374231,0.00294691,0.0781671,0.0476566,0.423211,0.653907,0.980276,0.169809,0.0963326,0.661754,0.156985,0.15495,0.346374,0.835518,0.329783,0.620328,0.703868,0.782949,0.819428,0.869617,0.822447,0.80234,0.81563,0.15506,0.406966,0.882329,0.273596,0.903232,0.354024,0.410649,0.0706325,0.0138059,0.000284016,0.644603,0.970799,0.0878981,0.221421,0.163518,0.186319,0.180723,0.286986,0.796471,0.57816,0.683947,0.261278,0.422516,0.62297,0.300461,0.016341,0.180852,0.22705,0.0350108,0.732737,0.0332879,0.32641,0.955884,0.875121,0.0711268,0.236765,|0.638024,0.45541,0.704689,0.485797,0.50543,0.987221,0.645855,0.373905,0.45663,0.385278,0.191634,0.814408,0.292423,0.700987,0.994475,0.670516,0.99356,0.638693,0.13225,0.10902,0.423711,0.872534,0.831616,0.148029,0.495757,0.605739,0.155038,0.527531,0.000937402,0.826192,0.00956935,0.943,0.0973021,0.608832,0.648847,0.355868,0.557629,0.614879,0.592495,0.200038,0.16876,0.0586361,0.5326,0.321163,0.142051,0.763459,0.840544,0.536206,0.463164,0.474153,0.0511011,0.712571,0.266664,0.522078,0.985698,0.558725,0.294178,0.66671,0.059022,0.583303,0.830449,0.733114,0.386317,0.828529,0.236668,0.910811,0.532092,0.27063,0.133395,0.477249,0.869926,0.989327,0.699884,0.324784,0.896071,0.956459,0.56329,0.744336,0.885571,0.900504,0.588685,0.611544,0.319518,0.560019,0.905411,0.457524,0.172204,0.244104,0.667234,0.440465,0.767611,0.531919,0.519295,0.828877,0.579889,0.772624,0.674754,0.683591,0.537916,0.736762,0.141145,0.320444,0.411157,0.851518,0.426566,0.00725091,0.690867,0.202916,0.505624,0.424094,0.998113,0.728357,0.200433,0.966858,0.797034,0.424284,0.248297,0.101204,0.0392077,0.643539,0.718832,0.947092,0.886341,0.807949,0.746682,0.321874,0.710322,0.82574,0.689914,0.452577,0.838982,0.908037,0.76027,0.844103,0.116475,0.394804,0.772548,0.586716,0.293889,0.71611,0.887719,0.748937,0.720672,0.178235,0.111707,0.169846,0.0747652,0.397844,0.121323,0.935542,0.030251,0.40027,0.210222,0.916466,0.147268,0.43073,0.971235,0.180544,0.634444,0.0897217,0.100669,0.543614,0.175493,0.996907,0.656008,0.323787,0.174846,0.686042,0.680618,0.0530793,0.204503,0.164231,0.966902,0.908522,0.7959,0.859375,0.996084,0.174131,0.793155,0.793844,0.588257,0.716265,0.667361,0.214634,0.0526556,0.819469,0.136588,0.013808,0.218102,0.542526,0.527272,0.872954,0.601207,0.917493,0.370299,0.769426,0.249825,0.237569,0.0937181,0.305993,0.621157,0.609003,0.179007,0.239727,0.133044,0.640521,0.323586,0.864512,0.715053,0.614633,0.541568,0.421853,0.92467,0.341385,0.52153,0.424675,0.59203,0.233044,0.582493,0.403858,0.842277,0.750847,0.97366,0.775754,0.510966,0.300762,0.674313,0.245197,0.235052,0.00969505,0.219346,0.200952,0.429031,0.176851,0.877898,0.966138,0.681318,0.992054,0.690702,0.623439,0.219699,0.5515,0.459498,0.603668,0.701536,0.889168,0.0633098,0.562244,0.762385,0.0521505,0.71617,0.652555,0.459062,0.785742,0.334069,0.851505,0.809858,0.737949,0.600525,0.0337,0.0361094,0.459511,0.619429,0.399407,0.90253,0.371469,0.231032,0.752435,0.953185,0.571764,0.923548,0.10063,0.307109,0.183307,0.358809,0.432615,0.170377,0.105548,0.588436,0.135068,0.287893,0.737599,0.868461,0.606881,0.113983,0.455872,0.17882,0.341702,0.868347,0.0730892,0.435924,0.174423,0.0611321,0.555363,0.263964,0.711498,0.07101,0.29505,0.780452,0.526083,0.802065,0.419672,0.754594,0.947452,0.635378,0.091222,0.876916,0.675864,0.584786,0.115491,0.358456,0.136468,0.752566,0.087342,0.949113,0.675064,0.223286,0.283104,0.522349,0.295015,0.472328,0.077651,0.909872,0.56615,0.211125,0.819269,0.0326353,0.782449,0.443901,0.0129519,0.83122,0.136538,0.0468738,0.370938,0.33601,0.793346,0.997186,0.742487,0.103312,0.92657,0.625915,0.454128,0.311178,0.899079,0.519038,0.134439,0.723654,0.0411027,0.299982,0.543916,0.579101,0.94434,0.246278,0.533629,0.365434,0.608546,0.722547,0.426617,0.345105,0.503461,0.0511611,0.0182129,0.392365,0.624031,0.321164,0.0135732,0.680825,0.0746022,0.815404,0.892416,0.820654,0.763844,0.840203,0.052862,0.22345,0.439825,0.117497,0.889266,0.910133,0.491104,0.58749,0.695539,0.253373,0.118712,0.734604,0.193264,0.941908,0.871587,0.268614,0.294515,0.360993,0.129344,0.357124,0.277513,0.890923,0.803476,0.886291,0.730303,0.342473,0.505487,0.336666,0.873617,0.411221,0.967198,0.172551,0.723446,0.442561,0.445405,0.0682504,0.323251,0.358006,0.426142,0.956764,0.436377,0.972205,0.124008,0.793607,0.252601,0.857335,0.450842,0.874324,0.182576,0.676357,0.241808,0.80118,0.459059,0.16754,0.576718,0.17805,0.981221,0.320731,0.409553,0.369101,0.0355918,0.788028,0.809177,0.0767704,0.539074,0.740651,0.728878,0.596524,0.0222542,0.631024,0.0298606,0.860974,0.725424,0.102708,0.936996,0.0660323,0.726945,0.523342,0.10614,0.636688,0.592921,0.824249,0.0947747,0.426955,0.764439,0.764898,0.905571,0.990106,0.75673,0.411967,0.638061,0.292372,0.468501,0.331659,0.718464,0.419757,0.22895,0.598871,0.625265,0.854181,0.323325,0.479279,0.4725,0.967484,0.441608,0.869001,0.911237,0.223457,0.131482,0.648813,0.976387,0.850638,0.920643,0.660184,0.239849,0.619888,0.412266,0.0281348,0.0144672,0.234344,0.680622,0.324604,0.178707,0.777971,0.434738,0.670259,0.363676,0.672383,0.121816,0.00400406,0.253603,0.378546,0.149245,0.62828,0.819626,0.638794,0.0824718,0.810539,0.76028,0.896607,0.62963,0.211749,0.712785,0.638,0.836573,0.559329,0.127454,0.308594,0.346388,0.971611,0.610722,0.760203,0.0347151,0.0677562,0.685199,0.802004,0.338922,0.534572,0.833162,0.317028,0.0542789,0.512388,0.768603,0.0826478,0.547123,0.722716,0.552968,0.667104,0.679918,0.472434,0.904539,0.384856,0.184824,0.16929,0.574553,0.351235,0.445024,0.988449,0.385031,0.880698,0.119621,0.620641,0.385873,0.86833,0.529243,0.659215,0.910066,0.00833833,0.435405,0.527649,0.76005,0.729972,0.30265,0.114317,0.387394,0.636634,0.171202,0.638461,0.769772,0.403727,0.0997269,0.122439,0.935284,0.276398,0.0403786,0.570948,0.444894,0.807566,0.552231,0.265334,0.655592,0.228405,0.723989,0.347418,0.227452,0.645398,0.886165,0.996443,0.3124,0.449589,0.211824,0.222916,0.908933,0.115957,0.923353,0.663584,0.622449,0.048128,0.151365,0.226697,0.40168,0.181249,0.0600387,0.959457,0.707522,0.278607,0.968714,0.656377,0.601531,0.28005,0.569094,0.342911,0.084709,0.157336,0.890743,0.559116,0.693871,0.573189,0.886525,0.134511,0.562631,0.821342,0.690361,0.586121,0.85675,0.5698,0.31083,0.237442,0.437045,0.718371,0.930752,0.37275,0.360061,0.136561,0.586055,0.0698892,0.271044,0.927039,0.470699,0.506949,0.0376025,0.759765,0.25314,0.287028,0.338874,0.989878,0.0831862,0.385017,0.587524,0.0906736,0.986151,0.123306,0.721319,0.0719013,0.166237,0.303301,0.182785,0.814292,0.144094,0.89441,0.669746,0.567521,0.925731,0.0615116,0.269469,0.700878,0.211598,0.346385,0.61219,0.743823,0.243344,0.954123,0.159492,0.869058,0.653238,0.118363,0.554412,0.776313,0.56546,0.861737,0.830779,0.810626,0.313461,0.5975,0.717214,0.834355,0.00585908,0.332588,0.978746,0.979525,0.956187,0.156646,0.634468,0.853754,0.532099,0.819398,0.902795,0.0629289,0.27168,0.180439,0.802426,0.570237,0.931446,0.823957,0.406236,0.00212163,0.388324,0.217256,0.22508,0.969039,0.340891,0.860727,0.554487,0.10446,0.71345,0.247572,0.201218,0.100765,0.577296,0.384085,0.168095,0.945016,0.39051,0.551345,0.946725,0.492194,0.943631,0.797396,0.912126,0.932902,0.98529,0.209266,0.979199,0.179633,0.908992,0.915737,0.0819157,0.90506,0.334087,0.27678,0.933251,0.316422,0.33682,0.712733,0.270433,0.115944,0.357265,0.824297,0.467757,0.97,0.926931,0.530926,0.583816,0.876862,0.840611,0.724232,0.714507,0.456064,0.556309,0.985044,0.284829,0.79906,0.133053,0.837867,0.978693,0.837304,0.382668,0.533906,0.923512,0.990324,0.604156,0.477788,0.622777,0.271302,0.622904,0.477753,0.819278,0.778342,0.132326,0.791305,0.160207,0.19039,0.319806,0.647049,0.288246,0.853663,0.841056,0.549006,0.633918,0.435635,0.761383,0.885181,0.622646,0.0106894,0.705728,0.0338304,0.995104,0.694715,0.406336,0.805282,0.994952,0.979061,0.581355,0.860377,0.333405,0.268609,0.711591,0.984004,0.246095,0.170891,0.346278,0.917473,0.911773,0.147033,0.380975,0.620475,0.657964,0.507082,0.212268,0.491843,0.42358,0.486773,0.232459,0.99138,0.00643957,0.138518,0.146101,0.895348,0.818774,0.936355,0.818429,0.0393704,0.661405,0.338678,0.376141,0.954232,0.265032,0.927349,0.953028,0.778116,0.663031,0.972681,0.127347,0.23736,0.740236,0.289112,0.930735,0.185708,0.0418542,0.163093,0.722798,0.464296,0.00739574,0.242788,0.514818,0.560354,0.279605,0.657875,0.782512,0.338266,0.486179,0.241225,0.59054,0.590675,0.194517,0.939857,0.387567,0.640649,0.414115,0.580866,0.970855,0.433553,0.499114,0.408388,0.610704,0.784453,0.911913,0.791298,0.531431,0.347626,0.201749,0.145715,0.142072,0.903573,0.506005,0.431717,0.827209,0.712801,0.575378,0.0704863,0.873033,0.933964,0.944451,0.537343,0.749918,0.52825,0.755281,0.66299,0.547911,0.636001,0.243565,0.6024,0.915627,0.374461,0.380211,0.643535,0.780177,0.130571,0.114121,0.204978,0.815915,0.488368,0.868813,0.858285,0.233053,0.124342,0.748074,0.395335,0.260297,0.34995,0.469904,0.493133,0.237128,0.45261,0.356886,0.206519,0.298801,0.235554,0.355668,0.508051,0.782995,0.0915915,0.535719,0.812971,0.200364,0.544606,0.914378,0.505455,0.685236,0.0530719,0.282229,0.647859,0.908719,0.862399,0.621927,0.262736,0.694976,0.508356,0.076297,0.389901,0.783939,0.255381,0.041686,0.577515,0.596594,0.413164,0.425254,0.208814,0.283216,0.85794,0.337196,0.653661,0.161091,0.628515,0.420185,0.597069,0.26841,0.503979,0.709559,0.0126243,0.0446094,0.770238,0.219668,0.142129,0.483134,0.00791728,0.217288,0.301959,0.362671,0.487628,0.561059,0.973923,0.707387,0.0107616,0.502713,0.593035,0.125057,0.960103,0.139226,0.778743,0.0947522,0.753686,0.809156,0.383338,0.14921,0.496592,0.853926,|0.860478,0.0299647,0.0144593,0.541862,0.209738,0.824668,0.739877,0.427356,0.692384,0.935241,0.284369,0.4019,0.999491,0.818979,0.0605325,0.580905,0.503076,0.0135425,0.990247,0.203303,0.545888,0.0477711,0.128615,0.720185,0.392855,0.433478,0.400749,0.639226,0.4644,0.859102,0.209364,0.846777,0.764347,0.757697,0.612312,0.0025875,0.479226,0.741816,0.5097,0.70309,0.748965,0.26623,0.00533485,0.0350618,0.364499,0.415736,0.209301,0.600889,0.0386978,0.140299,0.817555,0.596179,0.834027,0.585637,0.22036,0.197307,0.498793,0.576605,0.670549,0.295905,0.354805,0.0173107,0.156333,0.2151,0.233174,0.76333,0.691389,0.219554,0.249763,0.727528,0.825576,0.334921,0.696983,0.866326,0.277687,0.197381,0.853304,0.999839,0.381966,0.856733,0.451961,0.781474,0.122903,0.108724,0.976628,0.830206,0.730051,0.0742698,0.00902885,0.736507,0.366175,0.995929,0.817978,0.880902,0.440988,0.926062,0.0948569,0.213042,0.506344,0.492515,0.170482,0.645415,0.949853,0.599541,0.195967,0.0536229,0.889085,0.389977,0.93542,0.311406,0.877669,0.262265,0.325725,0.803355,0.678642,0.566326,0.304932,0.718791,0.818061,0.45119,0.0174001,0.558668,0.382282,0.604474,0.310547,0.954096,0.638495,0.0891258,0.989563,0.0992524,0.641022,0.46288,0.031279,0.319253,0.185546,0.435104,0.290714,0.0421433,0.385735,0.400711,0.785689,0.43819,0.668559,0.518256,0.0585722,0.342447,0.498288,0.722041,0.245759,0.942297,0.921357,0.169941,0.417424,0.439616,0.105415,0.491476,0.351594,0.923728,0.000683427,0.490309,0.883442,0.176046,0.0508093,0.708183,0.658293,0.529748,0.322603,0.0254326,0.560312,0.501276,0.855724,0.507452,0.764828,0.542911,0.347946,0.445086,0.192333,0.970203,0.139321,0.280257,0.594637,0.691973,0.837525,0.498181,0.772577,0.864822,0.950466,0.327822,0.583799,0.159418,0.642256,0.0622845,0.239527,0.781409,0.359689,0.137911,0.932391,0.0869192,0.0272871,0.294279,0.508136,0.963265,0.539043,0.662181,0.826669,0.746171,0.755111,0.44299,0.407231,0.00563097,0.343364,0.193403,0.816949,0.507539,0.608582,0.737488,0.417955,0.854636,0.376632,0.361773,0.209121,0.867841,0.66897,0.211201,0.318648,0.651686,0.665403,0.753916,0.653353,0.174628,0.178,0.0971445,0.13993,0.795692,0.361046,0.0108418,0.901638,0.991957,0.300904,0.28345,0.0802425,0.810244,0.000580668,0.145909,0.180865,0.949116,0.943022,0.486282,0.18385,0.666299,0.973646,0.502876,0.343632,0.481173,0.161288,0.0148666,0.109174,0.118632,0.985983,0.113147,0.630298,0.812215,0.143973,0.224653,0.457416,0.588972,0.439934,0.823147,0.889642,0.743242,0.0393537,0.369424,0.0308018,0.830517,0.833706,0.393466,0.307506,0.473378,0.972854,0.550112,0.315695,0.831656,0.0770822,0.888821,0.139993,0.985051,0.974323,0.908063,0.553437,0.211269,0.918143,0.517286,0.471052,0.0200517,0.528194,0.767953,0.724341,0.874333,0.00335491,0.413114,0.591876,0.103856,0.173186,0.204886,0.644334,0.953041,0.0868021,0.240588,0.542202,0.954999,0.809942,0.609357,0.143091,0.392597,0.986428,0.349581,0.991897,0.865044,0.170521,0.0302118,0.983173,0.0181578,0.44244,0.556568,0.444018,0.955492,0.983562,0.432731,0.172662,0.880683,0.0876135,0.633207,0.689969,0.580207,0.81927,0.9207,0.443775,0.736874,0.557912,0.408525,0.846306,0.200783,0.530166,0.23739,0.71538,0.348479,0.723271,0.0744739,0.670014,0.599275,0.24215,0.0753067,0.697203,0.781555,0.760551,0.234308,0.385315,0.881913,0.256152,0.796755,0.369204,0.643885,0.792637,0.633738,0.962667,0.699206,0.716397,0.0779024,0.983724,0.701404,0.57986,0.942699,0.147794,0.96324,0.191091,0.328796,0.258411,0.993563,0.624866,0.256332,0.0925385,0.571688,0.356126,0.961543,0.309822,0.384104,0.514325,0.779526,0.83465,0.335476,0.470242,0.973057,0.82442,0.100936,0.578965,0.36162,0.523101,0.385884,0.244606,0.780051,0.31579,0.00415152,0.10325,0.0669768,0.404614,0.368482,0.958226,0.317401,0.0666539,0.209689,0.566006,0.504676,0.571691,0.423471,0.598824,0.864968,0.426617,0.286369,0.956077,0.616808,0.71237,0.579048,0.921566,0.653671,0.635218,0.715949,0.770067,0.501576,0.631444,0.27891,0.576889,0.990113,0.0143801,0.508037,0.882028,0.497495,0.225781,0.724602,0.893168,0.471615,0.598388,0.944571,0.281328,0.578279,0.329086,0.439367,0.842703,0.232844,0.921535,0.0281927,0.334861,0.70894,0.599818,0.260657,0.97973,0.160486,0.313619,0.0045079,0.14696,0.0426424,0.954039,0.960843,0.58637,0.0641329,0.115277,0.940624,0.251422,0.238226,0.848617,0.421468,0.655912,0.0726106,0.210386,0.0166003,0.0573226,0.175137,0.5488,0.758291,0.204587,0.827761,0.0188214,0.660017,0.710559,0.518277,0.894597,0.39393,0.979643,0.919322,0.994294,0.254956,0.2826,0.591175,0.958205,0.99714,0.665421,0.014778,0.732958,0.893122,0.551064,0.837815,0.432029,0.655604,0.349935,0.660996,0.548183,0.104555,0.634696,0.40232,0.0204483,0.711918,0.397651,0.522511,0.0726328,0.294738,0.587877,0.270296,0.172697,0.491572,0.595757,0.704257,0.639579,0.577961,0.779234,0.00566173,0.756868,0.245845,0.688435,0.783265,0.31366,0.881076,0.628221,0.42088,0.452607,0.28601,0.185349,0.876563,0.618441,0.97935,0.1609,0.692523,0.591736,0.160556,0.557496,0.365583,0.330925,0.0717159,0.296362,0.334097,0.439498,0.554315,0.211354,0.0892714,0.383868,0.450906,0.414255,0.348414,0.558074,0.531222,0.880971,0.20931,0.182912,0.533523,0.103042,0.733592,0.707437,0.609157,0.632985,0.45912,0.100129,0.266921,0.985341,0.917876,0.744994,0.224289,0.0992601,0.926802,0.977534,0.421442,0.423041,0.0294712,0.264412,0.991278,0.174794,0.0543568,0.0562952,0.061431,0.655315,0.732849,0.291898,0.847414,0.960259,0.915039,0.288696,0.71351,0.404037,0.772411,0.911262,0.406808,0.567578,0.301841,0.0914067,0.792631,0.736901,0.334006,0.492359,0.689331,0.62876,0.625625,0.93206,0.602254,0.410166,0.425722,0.484601,0.98438,0.10161,0.361077,0.370694,0.50059,0.585618,0.939111,0.0184987,0.707474,0.245805,0.558175,0.491459,0.355626,0.250016,0.463001,0.129139,0.815344,0.102449,0.518225,0.38827,0.478822,0.484743,0.644874,0.770754,0.0795761,0.816523,0.448478,0.205298,0.994215,0.608667,0.787485,0.418214,0.0754652,0.855862,0.214685,0.233818,0.107583,0.094426,0.959966,0.164218,0.40259,0.650715,0.814006,0.362797,0.808644,0.724435,0.560906,0.896773,0.863116,0.95342,0.953089,0.978674,0.274791,0.53429,0.338101,0.64886,0.844793,0.928852,0.0181825,0.316306,0.581531,0.34445,0.486237,0.575004,0.210092,0.112961,0.575649,0.00879657,0.434512,0.0563757,0.554646,0.41646,0.0747787,0.674785,0.75675,0.482808,0.365812,0.871388,0.644662,0.803938,0.133908,0.370684,0.733986,0.505696,0.957296,0.456599,0.856422,0.104438,0.615327,0.392305,0.512615,0.206106,0.241546,0.143319,0.313963,0.262539,0.767023,0.742048,0.599487,0.648015,0.755134,0.485478,0.411286,0.369601,0.467013,0.964969,0.279564,0.352024,0.771103,0.469335,0.447374,0.635253,0.0372916,0.136217,0.00739908,0.215095,0.523259,0.955124,0.896527,0.601436,0.805351,0.736378,0.923942,0.878106,0.206852,0.42623,0.628829,0.921498,0.883347,0.479959,0.325484,0.721852,0.26588,0.263495,0.303328,0.352977,0.875374,0.872768,0.866144,0.0285485,0.467455,0.729787,0.488414,0.540817,0.369793,0.646932,0.598886,0.979324,0.439277,0.00625521,0.275617,0.0241444,0.421578,0.695439,0.520331,0.707285,0.0513817,0.875556,0.887359,0.824201,0.200112,0.923024,0.433648,0.964624,0.739049,0.635428,0.591588,0.565091,0.249077,0.163304,0.726924,0.860231,0.928243,0.0301185,0.303821,0.223321,0.268897,0.145162,0.281977,0.0615796,0.304198,0.599912,0.573612,0.613514,0.859157,0.837173,0.00262731,0.542562,0.752585,0.548949,0.525528,0.936822,0.631831,0.837108,0.154417,0.561596,0.468626,0.879222,0.1418,0.476647,0.165546,0.444131,0.644662,0.957743,0.908187,0.516399,0.152279,0.454039,0.555541,0.491049,0.666228,0.859211,0.861053,0.224719,0.519741,0.0130229,0.768796,0.975352,0.98328,0.708327,0.34808,0.211375,0.462306,0.976721,0.532408,0.880705,0.490385,0.784282,0.749085,0.555344,0.206127,0.763829,0.967938,0.925322,0.548912,0.670985,0.108976,0.657533,0.970943,0.296586,0.522788,0.949652,0.163329,0.962182,0.148208,0.45087,0.220059,0.740509,0.25068,0.0548307,0.332524,0.843808,0.595695,0.914743,0.0786626,0.085157,0.788032,0.00932819,0.436551,0.745814,0.46637,0.128689,0.783302,0.695873,0.81062,0.417938,0.685403,0.558845,0.867314,0.486293,0.968184,0.327839,0.681901,0.386518,0.105389,0.76433,0.274779,0.872926,0.487438,0.125493,0.378621,0.289524,0.501072,0.803787,0.678165,0.726422,0.821835,0.191757,0.436008,0.272921,0.996709,0.0235725,0.523605,0.218215,0.574444,0.671949,0.229651,0.171375,0.541146,0.514437,0.065679,0.642845,0.0351246,0.160462,0.340057,0.0753217,0.830682,0.0242529,0.600934,0.9355,0.390136,0.4491,0.434558,0.169303,0.376217,0.532332,0.70343,0.81974,0.373618,0.146017,0.37792,0.398806,0.506314,0.304774,0.803728,0.247674,0.436944,0.975695,0.579639,0.686009,0.352178,0.301811,0.477375,0.102514,0.544695,0.144131,0.636856,0.21824,0.937239,0.899246,0.780736,0.36619,0.468197,0.515266,0.886357,0.730581,0.897248,0.108802,0.215252,0.697763,0.421552,0.202042,0.676804,0.443812,0.608641,0.614659,0.110107,0.969646,0.820241,0.687259,0.759564,0.36053,0.0202786,0.507938,0.198096,0.454201,0.988399,0.269335,0.489683,0.90715,0.21752,0.275531,0.664996,0.308339,0.756666,0.691815,0.31649,0.570289,0.778755,0.29625,0.747713,0.183207,0.558852,0.244876,0.0966861,0.3997,0.341633,|0.892447,0.911622,0.384188,0.813444,0.205189,0.364783,0.737134,0.122318,0.733674,0.671022,0.523091,0.707503,0.198793,0.956409,0.208648,0.161613,0.488098,0.456255,0.0644643,0.18191,0.0018329,0.0652466,0.308463,0.230585,0.391374,0.695345,0.372556,0.465908,0.271475,0.685793,0.464803,0.512471,0.882969,0.823175,0.872281,0.501722,0.123297,0.737088,0.679251,0.0438099,0.129485,0.647729,0.371231,0.825662,0.524568,0.616008,0.777681,0.723183,0.30914,0.321495,0.243794,0.852693,0.754397,0.0181154,0.694801,0.0761757,0.0383162,0.327839,0.931952,0.0396202,0.478916,0.153951,0.858964,0.449578,0.864906,0.909255,0.620206,0.176224,0.100751,0.473198,0.261515,0.361791,0.180201,0.151919,0.803787,0.184272,0.0406392,0.354646,0.0405545,0.461467,0.00659966,0.0750263,0.247961,0.339163,0.766974,0.0870482,0.731853,0.295869,0.431418,0.200572,0.302927,0.203882,0.693243,0.327186,0.920677,0.138881,0.676887,0.482113,0.16614,0.329924,0.142955,0.304547,0.53438,0.893705,0.751186,0.20385,0.817055,0.11592,0.672927,0.933181,0.857474,0.809971,0.188252,0.735724,0.868735,0.925901,0.923412,0.294249,0.321612,0.662437,0.39504,0.276294,0.0591168,0.959029,0.707431,0.0700091,0.525052,0.0524062,0.311336,0.628956,0.0122803,0.168281,0.377503,0.593684,0.848095,0.219007,0.0717184,0.540569,0.329317,0.875891,0.621061,0.651581,0.188735,0.362098,0.194076,0.933801,0.51738,0.25686,0.544273,0.693235,0.0195944,0.974478,0.29174,0.751254,0.822629,0.871309,0.978121,0.27759,0.375469,0.632322,0.134898,0.218796,0.230159,0.801429,0.822875,0.17075,0.842155,0.0624969,0.168081,0.175098,0.167418,0.861519,0.0372642,0.876273,0.154429,0.143809,0.648214,0.0882654,0.0323941,0.160131,0.804141,0.945561,0.0913341,0.481319,0.592258,0.263778,0.624328,0.948994,0.714013,0.287225,0.472385,0.437063,0.344159,0.641785,0.014548,0.389559,0.83415,0.220244,0.0339048,0.403242,0.208001,0.295643,0.470946,0.0229668,0.436343,0.342364,0.242861,0.577689,0.554385,0.815788,0.764155,0.470832,0.58231,0.0421478,0.430033,0.381854,0.621731,0.489248,0.946962,0.426964,0.705472,0.337081,0.28784,0.700694,0.598986,0.949816,0.871758,0.660346,0.2242,0.759383,0.992883,0.0214793,0.00499356,0.889861,0.268973,0.475378,0.679381,0.328815,0.543526,0.705997,0.518291,0.4251,0.441521,0.103039,0.712632,0.0870463,0.345256,0.565914,0.869261,0.502445,0.73389,0.690075,0.49975,0.857111,0.502122,0.672076,0.127126,0.0240985,0.58998,0.444167,0.512538,0.332932,0.10814,0.929402,0.715626,0.830474,0.727994,0.822371,0.482774,0.300286,0.183639,0.425885,0.142853,0.268214,0.0997754,0.541583,0.0801688,0.0208053,0.114419,0.776368,0.0488665,0.870775,0.0394491,0.0202649,0.693668,0.909554,0.964499,0.158512,0.724206,0.932442,0.91407,0.888166,0.0138169,0.369778,0.245463,0.399344,0.16545,0.279881,0.590973,0.384165,0.998247,0.689261,0.615854,0.771162,0.0639321,0.770708,0.455525,0.142014,0.770341,0.535639,0.989256,0.985774,0.0713638,0.999337,0.321551,0.810647,0.289343,0.474479,0.852758,0.124857,0.237592,0.464915,0.111474,0.173937,0.905358,0.999827,0.134508,0.808325,0.0728337,0.704283,0.97166,0.54815,0.0150623,0.195942,0.667755,0.780464,0.9244,0.438063,0.973448,0.501161,0.297861,0.272246,0.172966,0.483071,0.622862,0.91763,0.189943,0.160711,0.187045,0.982831,0.90994,0.716724,0.504611,0.581251,0.709839,0.781825,0.354254,0.572484,0.636887,0.434633,0.440319,0.769936,0.542633,0.492561,0.812573,0.225303,0.323095,0.782224,0.884983,0.543146,0.05654,0.835541,0.79293,0.972885,0.393349,0.604307,0.518843,0.809464,0.852461,0.41738,0.685884,0.0965042,0.98478,0.568902,0.38847,0.248686,0.703675,0.920423,0.995275,0.370858,0.286218,0.371967,0.444067,0.639897,0.158444,0.0680008,0.659438,0.333811,0.214699,0.183523,0.10068,0.324887,0.367697,0.145277,0.687501,0.0563856,0.466336,0.31568,0.270927,0.736965,0.310141,0.633421,0.165028,0.414049,0.578603,0.0965768,0.781938,0.963104,0.691185,0.345697,0.703555,0.75826,0.761542,0.351149,0.263195,0.692377,0.243619,0.0976173,0.319629,0.805451,0.815198,0.915604,0.36516,0.880501,0.426136,0.212808,0.313602,0.00717014,0.357186,0.181344,0.43412,0.978734,0.30538,0.090548,0.336101,0.921619,0.447158,0.784895,0.335957,0.335554,0.979896,0.6928,0.763019,0.390111,0.888378,0.883873,0.206374,0.181341,0.117185,0.95332,0.603856,0.805408,0.681495,0.00984037,0.807426,0.202207,0.296531,0.626148,0.874881,0.862806,0.285083,0.990894,0.727692,0.476346,0.401466,0.573727,0.311266,0.565428,0.463815,0.43878,0.408528,0.914253,0.23808,0.556614,0.610291,0.276608,0.938302,0.828006,0.0932804,0.542985,0.656166,0.633978,0.720955,0.211651,0.622993,0.967175,0.649742,0.0210193,0.733814,0.296207,0.919883,0.166218,0.879493,0.417318,0.494621,0.392173,0.0709161,0.284265,0.0388869,0.478392,0.707813,0.334241,0.769724,0.199489,0.679767,0.936051,0.257371,0.436562,0.515192,0.967793,0.533151,0.705589,0.330587,0.697079,0.225961,0.719083,0.944814,0.21203,0.294455,0.785252,0.590374,0.845654,0.831401,0.56603,0.597732,0.555184,0.179262,0.233844,0.370459,0.409087,0.592619,0.0465764,0.505356,0.0680982,0.0916618,0.576393,0.599912,0.579323,0.197388,0.720392,0.228283,0.646286,0.784614,0.777906,0.0956241,0.395135,0.367431,0.776482,0.747406,0.889035,0.145643,0.134602,0.624148,0.51243,0.809468,0.865862,0.388046,0.230548,0.78913,0.73057,0.0960307,0.362682,0.763754,0.68063,0.66208,0.639835,0.936109,0.0644777,0.663093,0.568254,0.0290613,0.573699,0.960971,0.712472,0.697933,0.740861,0.603546,0.502371,0.365898,0.754043,0.199071,0.994541,0.234703,0.269243,0.519543,0.0602005,0.441251,0.574528,0.208088,0.437325,0.878604,0.469755,0.966413,0.744427,0.901437,0.137488,0.173929,0.837956,0.837153,0.480148,0.975407,0.745827,0.173957,0.308147,0.329794,0.290398,0.11661,0.820783,0.8748,0.296832,0.0543519,0.977959,0.540228,0.958693,0.723191,0.891521,0.652734,0.221509,0.841726,0.06964,0.316751,0.622861,0.651996,0.162971,0.207624,0.345999,0.103102,0.364036,0.54185,0.454562,0.556249,0.316881,0.946918,0.15938,0.844454,0.610981,0.974408,0.635957,0.660544,0.642024,0.147909,0.223027,0.0308409,0.31917,0.399646,0.461837,0.0457922,0.194309,0.616037,0.609616,0.785599,0.798127,0.360182,0.165573,0.691925,0.748101,0.0865452,0.0126206,0.745966,0.0811312,0.0899292,0.659995,0.221389,0.275142,0.00828433,0.347405,0.158846,0.557546,0.170961,0.854354,0.539897,0.982406,0.609543,0.390367,0.826523,0.499693,0.770977,0.105412,0.356885,0.538419,0.0731323,0.0165217,0.279436,0.737577,0.175821,0.784913,0.634104,0.312846,0.864714,0.873847,0.400492,0.908862,0.666927,0.829004,0.137134,0.958658,0.705728,0.561279,0.0952514,0.0384907,0.984632,0.983084,0.523524,0.0260596,0.142729,0.173799,0.316045,0.223453,0.674581,0.738232,0.51091,0.0179235,0.167765,0.636759,0.852525,0.566359,0.766654,0.8384,0.200041,0.651691,0.93203,0.0699002,0.691071,0.493198,0.36127,0.390662,0.0030548,0.629745,0.571223,0.126057,0.720071,0.269187,0.996359,0.219458,0.629639,0.167343,0.0350353,0.0729349,0.560736,0.386025,0.506152,0.728962,0.34237,0.817193,0.955698,0.752449,0.188878,0.715223,0.254294,0.589463,0.688719,0.255843,0.253846,0.473861,0.67021,0.0631664,0.744699,0.164652,0.917327,0.375328,0.211334,0.0104113,0.194593,0.956015,0.839218,0.130676,0.817291,0.843428,0.457093,0.96648,0.80264,0.424579,0.680406,0.902962,0.483315,0.270437,0.783292,0.886864,0.054505,0.796125,0.945546,0.843354,0.373356,0.322589,0.0357082,0.710875,0.528615,0.168717,0.969817,0.48236,0.802525,0.669734,0.298238,0.0699558,0.236611,0.602681,0.651553,0.809563,0.79042,0.884724,0.925193,0.160769,0.335383,0.612146,0.849885,0.396559,0.894277,0.431967,0.324719,0.517433,0.663165,0.869098,0.842005,0.132762,0.322216,0.529134,0.537756,0.915375,0.460749,0.736833,0.627566,0.37839,0.555911,0.134693,0.36107,0.31547,0.349696,0.989873,0.0373908,0.829206,0.686091,0.501589,0.92099,0.389691,0.238356,0.381038,0.593162,0.383848,0.165994,0.747833,0.284889,0.585218,0.590227,0.00528526,0.845348,0.710612,0.376861,0.972169,0.663851,0.477624,0.697631,0.353262,0.70618,0.148531,0.919908,0.572804,0.346969,0.936968,0.674074,0.474796,0.410718,0.490105,0.951962,0.392083,0.485814,0.881725,0.485645,0.0277001,0.994758,0.785035,0.245509,0.756408,0.503656,0.637282,0.27896,0.758768,0.227189,0.131767,0.472271,0.354033,0.29698,0.482141,0.515541,0.89829,0.908583,0.713018,0.240648,0.0348842,0.38697,0.646698,0.743347,0.726138,0.998394,0.0742605,0.703778,0.243374,0.958091,0.599329,0.342179,0.0133086,0.272293,0.546431,0.410306,0.292051,0.870547,0.40945,0.558894,0.279582,0.259278,0.923703,0.0539169,0.653145,0.29177,0.429031,0.0537288,0.652959,0.142642,0.132348,0.914606,0.289942,0.837084,0.981416,0.891692,0.355636,0.281288,0.902271,0.000926554,0.163557,0.892411,0.602248,0.450134,0.900025,0.528336,0.800685,0.168837,0.242324,0.421043,0.30589,0.292636,0.616474,0.941367,0.139562,0.399196,0.699699,0.717157,0.177264,0.598741,0.0615823,0.761074,0.718089,0.561287,0.0322362,0.646668,0.75031,0.608472,0.913366,0.244738,0.275708,0.892254,0.092489,0.51197,0.70695,0.822291,0.101964,0.397777,0.229222,0.379549,0.802159,0.200998,0.666127,0.745353,0.0691237,0.677639,0.723278,0.204005,0.207173,0.837408,0.465268,0.064953,0.297121,0.791079,0.000749707,0.125422,0.0593511,0.294396,0.932902,0.495484,0.994525,0.465667,0.337517,|0.730977,0.574381,0.531092,0.689858,0.0647449,0.872422,0.119692,0.0552522,0.930357,0.478155,0.930299,0.704072,0.436366,0.733194,0.916223,0.771646,0.570678,0.274922,0.585289,0.0679326,0.458574,0.011169,0.945517,0.905699,0.583953,0.141029,0.418481,0.165275,0.995466,0.332462,0.0215201,0.0604147,0.522514,0.741609,0.265112,0.364056,0.723449,0.127402,0.540359,0.545078,0.636765,0.124142,0.128346,0.584759,0.56229,0.066384,0.890665,0.812666,0.327074,0.275572,0.735946,0.0127967,0.0733707,0.836067,0.453045,0.0287241,0.567295,0.72067,0.649012,0.195272,0.53972,0.755024,0.92945,0.619967,0.567679,0.382969,0.21242,0.847503,0.357053,0.582086,0.26742,0.238997,0.843869,0.472843,0.696563,0.377389,0.582114,0.150686,0.424588,0.218582,0.102207,0.99104,0.44119,0.954597,0.103847,0.21636,0.392085,0.582665,0.424248,0.45594,0.540999,0.977822,0.193127,0.131057,0.112069,0.374098,0.123758,0.580792,0.552435,0.133156,0.871574,0.525741,0.682759,0.501735,0.839828,0.392831,0.780794,0.840846,0.440592,0.651716,0.0450558,0.752897,0.118324,0.0422186,0.639093,0.833568,0.447466,0.970033,0.543745,0.725443,0.268517,0.962532,0.437783,0.687554,0.149004,0.683124,0.644051,0.835524,0.535382,0.103586,0.103692,0.997397,0.988633,0.415221,0.898548,0.421002,0.867206,0.111334,0.4173,0.059875,0.41209,0.160215,0.942173,0.327953,0.85242,0.314838,0.124526,0.507726,0.0693132,0.35582,0.577165,0.362332,0.849823,0.294942,0.211264,0.536419,0.00378543,0.298726,0.957141,0.336488,0.337548,0.773359,0.963706,0.275275,0.195658,0.48646,0.0636792,0.269083,0.630856,0.752869,0.161399,0.80951,0.628451,0.703457,0.616375,0.76224,0.875151,0.258624,0.944824,0.992486,0.528879,0.202583,0.417777,0.840048,0.32345,0.327287,0.337673,0.138842,0.396141,0.863829,0.183008,0.816999,0.51129,0.224407,0.503024,0.439282,0.51273,0.52492,0.297869,0.828706,0.0522536,0.979554,0.650522,0.390027,0.110537,0.560916,0.889791,0.978952,0.0554551,0.296672,0.261771,0.782429,0.696063,0.666883,0.022343,0.554861,0.347857,0.905727,0.764552,0.765681,0.671045,0.589632,0.206043,0.371927,0.1812,0.754095,0.823472,0.199154,0.85613,0.655993,0.34723,0.653302,0.978237,0.890854,0.803575,0.0678362,0.696981,0.981443,0.307804,0.4836,0.495636,0.255359,0.49947,0.448637,0.129363,0.693902,0.949037,0.0270523,0.336553,0.169079,0.636936,0.0046801,0.925121,0.683481,0.320751,0.756838,0.575312,0.30747,0.595202,0.821969,0.573108,0.274631,0.602893,0.156637,0.866949,0.220392,0.543206,0.0228174,0.330192,0.572768,0.794518,0.257868,0.257836,0.0987555,0.307346,0.885706,0.618133,0.777714,0.00296915,0.522994,0.30273,0.536484,0.526201,0.813785,0.599467,0.141685,0.16145,0.994515,0.518567,0.980637,0.079946,0.800741,0.937723,0.00897819,0.555921,0.53583,0.18467,0.134012,0.764468,0.276713,0.135298,0.143601,0.802442,0.718778,0.468318,0.793464,0.211252,0.208388,0.191996,0.803974,0.468927,0.344113,0.878378,0.836079,0.708081,0.990982,0.384371,0.101347,0.704654,0.908212,0.56999,0.918706,0.191459,0.156335,0.843388,0.722229,0.571726,0.048647,0.354048,0.0799339,0.641907,0.797429,0.551751,0.375724,0.772221,0.425584,0.35109,0.662383,0.144492,0.200571,0.936954,0.881666,0.167752,0.6525,0.379335,0.22625,0.888577,0.49355,0.602911,0.112481,0.679384,0.516679,0.059735,0.423687,0.495245,0.419165,0.121985,0.973597,0.289094,0.818818,0.809924,0.416468,0.686098,0.806451,0.534229,0.215575,0.844064,0.415731,0.809107,0.467586,0.0592206,0.966756,0.409683,0.689917,0.57814,0.708194,0.898826,0.715698,0.138842,0.226904,0.10464,0.407677,0.722821,0.324585,0.660055,0.715737,0.399686,0.283099,0.47872,0.475445,0.70973,0.777488,0.683258,0.988645,0.0187601,0.649766,0.905096,0.830611,0.968259,0.356419,0.105541,0.709404,0.663727,0.587272,0.57357,0.996406,0.725423,0.940615,0.182467,0.782021,0.517537,0.228742,0.0789824,0.531953,0.287831,0.295379,0.265283,0.677814,0.0709811,0.524339,0.44317,0.65859,0.427878,0.629523,0.596076,0.66768,0.0969431,0.383667,0.410333,0.643011,0.971395,0.600615,0.148637,0.835146,0.968663,0.772129,0.91526,0.963067,0.65403,0.75106,0.639839,0.0890182,0.453209,0.339157,0.197976,0.457856,0.960122,0.371406,0.31528,0.587906,0.314812,0.709362,0.537418,0.407197,0.463851,0.043338,0.910765,0.292925,0.521579,0.386443,0.681331,0.143508,0.553217,0.421529,0.949644,0.892388,0.329178,0.483696,0.0719454,0.0972567,0.951318,0.242169,0.645987,0.648877,0.670302,0.664892,0.585831,0.798844,0.0104915,0.296923,0.78809,0.927363,0.119824,0.182004,0.320215,0.582348,0.747255,0.837116,0.0919935,0.911152,0.404898,0.311217,0.51369,0.315623,0.248702,0.367459,0.0658795,0.0617017,0.776376,0.362094,0.680498,0.790585,0.996637,0.964307,0.555441,0.732994,0.136592,0.622721,0.390488,0.424875,0.724064,0.554783,0.832611,0.273999,0.0400201,0.538929,0.845455,0.783288,0.434599,0.324978,0.468702,0.70037,0.930967,0.899005,0.258062,0.432566,0.720055,0.530027,0.312611,0.910926,0.301466,0.738704,0.819034,0.597639,0.468852,0.65754,0.168942,0.359584,0.451437,0.155247,0.176195,0.995721,0.733053,0.322551,0.749431,0.481057,0.20415,0.689662,0.354195,0.593421,0.166569,0.557942,0.736683,0.428884,0.738381,0.774721,0.734351,0.240379,0.571141,0.197137,0.156787,0.0697102,0.238773,0.967736,0.164201,0.562815,0.196377,0.24163,0.629052,0.670104,0.692228,0.833796,0.554842,0.51905,0.850333,0.32091,0.977021,0.421826,0.555361,0.10384,0.678459,0.956866,0.953234,0.47004,0.716794,0.101848,0.128747,0.716257,0.878908,0.0278315,0.0402228,0.974135,0.985767,0.844881,0.33176,0.501729,0.636269,0.859523,0.614707,0.383478,0.641974,0.074984,0.997138,0.170489,0.404356,0.497137,0.348688,0.26129,0.359073,0.388156,0.503111,0.0954652,0.683592,0.732592,0.847701,0.519474,0.934113,0.195539,0.49176,0.464254,0.506969,0.453628,0.240834,0.157785,0.533778,0.340095,0.964484,0.926543,0.600947,0.117423,0.142989,0.396244,0.0944924,0.814309,0.350444,0.064617,0.206455,0.206693,0.706851,0.685028,0.704873,0.224805,0.811174,0.918724,0.0411935,0.496803,0.846353,0.904896,0.748679,0.160313,0.0415651,0.683325,0.373371,0.118815,0.386151,0.132893,0.181358,0.0177867,0.847963,0.137819,0.430752,0.00497407,0.491783,0.653272,0.0585615,0.675773,0.367198,0.620307,0.907018,0.224803,0.850234,0.97443,0.146757,0.293531,0.904499,0.274812,0.413939,0.710939,0.995069,0.0197673,0.906867,0.0431194,0.455296,0.584365,0.0383554,0.992795,0.348467,0.898836,0.0672476,0.334473,0.334064,0.305169,0.715178,0.705245,0.190673,0.394101,0.263003,0.63782,0.195399,0.937245,0.919798,0.114356,0.107709,0.993575,0.113677,0.180543,0.715349,0.358776,0.640014,0.202477,0.975014,0.806636,0.92591,0.393636,0.933839,0.775856,0.250414,0.826288,0.54171,0.433364,0.853853,0.677228,0.278598,0.632677,0.913765,0.131233,0.358702,0.871647,0.526733,0.853511,0.15894,0.910979,0.792139,0.00663501,0.201629,0.991518,0.862677,0.918126,0.384265,0.643788,0.911813,0.0483775,0.272051,0.948083,0.48878,0.0407098,0.894141,0.229891,0.624805,0.243165,0.00653607,0.657503,0.904626,0.470394,0.0776097,0.131207,0.762732,0.55578,0.789585,0.991262,0.44814,0.12542,0.00346005,0.21335,0.758434,0.831123,0.94809,0.222763,0.612722,0.50492,0.757105,0.266806,0.17679,0.948811,0.734289,0.883493,0.384292,0.06521,0.76682,0.631173,0.618763,0.967141,0.507436,0.286861,0.546556,0.163509,0.979525,0.442185,0.609125,0.226012,0.786559,0.715725,0.535965,0.31298,0.68472,0.0363251,0.621315,0.602406,0.412998,0.442118,0.710785,0.411461,0.592951,0.642939,0.077204,0.118534,0.32523,0.648096,0.72882,0.0313765,0.457722,0.0728273,0.364085,0.170149,0.9608,0.619601,0.797148,0.0573371,0.595806,0.174797,0.214774,0.388237,0.961465,0.669582,0.477025,0.643756,0.077927,0.379806,0.746592,0.810989,0.0269102,0.451796,0.0728067,0.998093,0.166024,0.0809671,0.336703,0.568298,0.152299,0.297495,0.356336,0.915428,0.143929,0.761492,0.746844,0.796853,0.818414,0.270903,0.713373,0.351497,0.656428,0.912797,0.988069,0.928833,0.289365,0.943122,0.573494,0.500521,0.0477382,0.969921,0.536158,0.703777,0.221324,0.0802317,0.632475,0.131955,0.130446,0.293626,0.0517923,0.323691,0.192623,0.840078,0.454921,0.545555,0.124719,0.0827226,0.994671,0.613527,0.467802,0.274583,0.74162,0.26891,0.0286597,0.816685,0.101684,0.461665,0.765268,0.00888234,0.616709,0.290994,0.690722,0.310833,0.928141,0.41513,0.243228,0.458244,0.173461,0.931871,0.503771,0.945462,0.584092,0.627218,0.595908,0.502842,0.645728,0.510883,0.841697,0.725345,0.171844,0.512905,0.771557,0.394059,0.076978,0.128711,0.912061,0.793837,0.75819,0.447175,0.176864,0.542691,0.346109,0.667182,0.851452,0.455766,0.736985,0.366509,0.0232804,0.586305,0.259302,0.46389,0.391459,0.369883,0.738441,0.531128,0.961066,0.384359,0.71301,0.81893,0.208205,0.994411,0.864334,0.906514,0.315107,0.064546,0.121656,0.446929,0.568151,0.55943,0.243659,0.267262,0.220274,0.943938,0.662945,0.324522,0.765178,0.791967,0.696855,0.135671,0.511369,0.967667,0.579787,0.371692,0.863706,0.382828,0.472358,0.364647,0.281295,0.952935,0.0762743,0.967619,0.36042,0.371615,0.0336586,0.912831,0.943142,0.686624,0.431873,0.719913,0.441388,0.695851,0.889308,0.117166,0.0386695,0.668731,0.1077,0.943683,0.382943,0.892085,0.184192,0.160361,0.265137,0.760446,0.97577,0.648396,0.851012,0.96415,0.22853,0.85285,0.49387,0.0565425,|0.502422,0.501821,0.758128,0.700852,0.28654,0.120358,0.582555,0.796932,0.208552,0.264746,0.879853,0.210172,0.44959,0.374673,0.825846,0.0233847,0.283527,0.780682,0.325843,0.303665,0.312813,0.86182,0.361632,0.574882,0.124999,0.745206,0.612773,0.122808,0.22435,0.491878,0.814238,0.252536,0.590347,0.298059,0.419786,0.93457,0.540882,0.828839,0.57292,0.563908,0.089181,0.0699555,0.216435,0.409637,0.383495,0.629554,0.914796,0.607993,0.52995,0.776024,0.572325,0.826301,0.639358,0.322281,0.262836,0.871281,0.488144,0.0649741,0.298837,0.228897,0.0304575,0.144289,0.43493,0.363054,0.623489,0.935651,0.103607,0.448737,0.869264,0.211376,0.320451,0.268025,0.813692,0.543543,0.366583,0.599771,0.921633,0.485956,0.536291,0.761448,0.66769,0.578109,0.935128,0.792437,0.0226183,0.0735645,0.157037,0.650847,0.0551022,0.770914,0.823518,0.70264,0.724052,0.178145,0.740006,0.21659,0.554946,0.910371,0.477341,0.280156,0.0548437,0.408507,0.178909,0.677543,0.466889,0.576793,0.706782,0.630846,0.208742,0.263567,0.866329,0.890935,0.238983,0.555301,0.374352,0.161947,0.659316,0.196959,0.112257,0.132159,0.0661671,0.0495384,0.495882,0.542314,0.75626,0.728514,0.130463,0.833742,0.380966,0.689837,0.216553,0.92508,0.21589,0.899111,0.417674,0.258931,0.139392,0.630089,0.4825,0.721602,0.314551,0.584487,0.523676,0.92188,0.899996,0.845779,0.190525,0.946694,0.664101,0.196129,0.462663,0.421593,0.903075,0.80235,0.702641,0.635076,0.454729,0.474837,0.851254,0.248062,0.0187523,0.31568,0.777775,0.116838,0.892086,0.166616,0.585293,0.346649,0.745062,0.328224,0.560919,0.826442,0.508481,0.519156,0.798113,0.523436,0.299302,0.762922,0.204973,0.949405,0.153767,0.353402,0.919751,0.088352,0.353719,0.932378,0.0862588,0.869478,0.563575,0.67521,0.0591328,0.0636555,0.178345,0.493021,0.730223,0.758056,0.96187,0.0723892,0.658057,0.67565,0.703327,0.133478,0.0583754,0.410268,0.565148,0.307986,0.190288,0.786916,0.360529,0.934752,0.242748,0.267614,0.996791,0.863251,0.543098,0.0271159,0.261664,0.0950169,0.278904,0.606199,0.0710492,0.277796,0.047474,0.613595,0.902708,0.329215,0.168533,0.913604,0.746565,0.9794,0.0146735,0.268636,0.903667,0.269128,0.121961,0.41171,0.136652,0.188017,0.287335,0.653097,0.249965,0.138352,0.655683,0.163795,0.378587,0.17151,0.593328,0.123508,0.473152,0.448833,0.0527615,0.124604,0.310864,0.600621,0.759958,0.1959,0.120183,0.293688,0.513449,0.503895,0.53507,0.456899,0.740662,0.537686,0.71015,0.277865,0.341793,0.821707,0.410787,0.178402,0.245822,0.3824,0.259863,0.0409837,0.242696,0.422587,0.987226,0.742458,0.849877,0.618207,0.442973,0.995104,0.833226,0.600579,0.626975,0.474485,0.909451,0.838715,0.878939,0.898536,0.971535,0.49436,0.278314,0.458912,0.136247,0.631777,0.094503,0.834665,0.24185,0.8592,0.682344,0.18415,0.046876,0.661411,0.879176,0.816957,0.00223124,0.912161,0.98313,0.343083,0.449952,0.715441,0.165716,0.234459,0.525967,0.55994,0.307344,0.467648,0.317345,0.610267,0.745479,0.865938,0.770732,0.100487,0.0471506,0.500568,0.349114,0.175171,0.369077,0.285283,0.343168,0.597151,0.217378,0.749059,0.117189,0.265087,0.0515909,0.107486,0.135172,0.607893,0.89646,0.439241,0.0715127,0.799808,0.737725,0.510429,0.452986,0.872653,0.98155,0.418234,0.80327,0.792758,0.320548,0.0504104,0.828197,0.0625156,0.7193,0.513763,0.254968,0.222172,0.88399,0.762147,0.922544,0.743376,0.558953,0.163323,0.624656,0.94364,0.563301,0.973997,0.0237142,0.659912,0.59294,0.0539737,0.208443,0.369541,0.893707,0.150545,0.162821,0.974633,0.796438,0.666096,0.722288,0.958696,0.452656,0.599579,0.488038,0.375009,0.196791,0.255207,0.792876,0.528865,0.326448,0.458662,0.822367,0.283558,0.68481,0.420228,0.589719,0.779898,0.85319,0.875109,0.552541,0.256174,0.831826,0.99656,0.754166,0.0139806,0.151628,0.762719,0.200973,0.591563,0.628157,0.589004,0.363255,0.771088,0.0701498,0.375983,0.281568,0.646385,0.020187,0.315251,0.372466,0.215486,0.140321,0.724353,0.116454,0.257674,0.0162954,0.149779,0.183898,0.544909,0.815429,0.572316,0.988091,0.737737,0.859039,0.642833,0.0506029,0.951722,0.942972,0.737225,0.805759,0.874848,0.429784,0.336406,0.511733,0.690681,0.577012,0.101456,0.956028,0.850427,0.7241,0.694986,0.875405,0.494757,0.819436,0.781521,0.763,0.932249,0.357213,0.370207,0.503951,0.0341046,0.499377,0.610442,0.825532,0.875439,0.250307,0.051813,0.914738,0.244816,0.173846,0.338522,0.31147,0.689841,0.601373,0.573278,0.233939,0.323997,0.683974,0.534239,0.15068,0.425682,0.722023,0.433372,0.272968,0.241258,0.886084,0.63781,0.726743,0.699879,0.359227,0.660707,0.996247,0.228793,0.667062,0.922877,0.400957,0.585711,0.722799,0.735667,0.962905,0.485973,0.729197,0.65924,0.742671,0.943808,0.457608,0.155993,0.419387,0.679519,0.873084,0.115556,0.501147,0.751391,0.915242,0.994381,0.32722,0.790085,0.0891409,0.0322242,0.573282,0.520472,0.1564,0.601151,0.234101,0.646351,0.819535,0.751863,0.357862,0.971131,0.120056,0.903058,0.93923,0.0881569,0.638739,0.463587,0.526498,0.71711,0.449931,0.693601,0.834017,0.186999,0.10597,0.716887,0.942466,0.198904,0.821662,0.175468,0.625359,0.339787,0.834726,0.723362,0.735309,0.0894352,0.0646093,0.352908,0.944405,0.0528044,0.696649,0.403357,0.335643,0.261054,0.477998,0.524005,0.264382,0.00691444,0.676828,0.858135,0.295509,0.388936,0.830213,0.808862,0.130202,0.313811,0.425765,0.966794,0.757763,0.596821,0.217788,0.929505,0.320362,0.992211,0.489348,0.873214,0.0442165,0.666689,0.27747,0.193747,0.816731,0.362986,0.279976,0.89922,0.0673906,0.621268,0.144626,0.738669,0.616117,0.0972405,0.833983,0.787364,0.404826,0.804663,0.0976101,0.268707,0.0200961,0.297832,0.778152,0.937895,0.325593,0.438031,0.503393,0.895649,0.0266981,0.278033,0.320092,0.372928,0.185039,0.488217,0.374786,0.661208,0.501378,0.479594,0.768722,0.046888,0.229518,0.758077,0.06574,0.83677,0.423852,0.710989,0.0527772,0.972984,0.849845,0.827769,0.303573,0.322596,0.498939,0.856148,0.0121066,0.412987,0.681546,0.87098,0.513974,0.584657,0.273758,0.408946,0.469489,0.350992,0.848872,0.958737,0.410173,0.13968,0.331626,0.421446,0.696357,0.952222,0.634628,0.707567,0.887678,0.0689854,0.339489,0.259251,0.369569,0.131862,0.401283,0.555709,0.906007,0.563436,0.731076,0.199114,0.81954,0.107439,0.980478,0.952117,0.326985,0.680884,0.108544,0.512308,0.641844,0.617978,0.167266,0.913464,0.826972,0.444803,0.326955,0.228265,0.51849,0.16664,0.407528,0.399375,0.594472,0.804254,0.766921,0.741222,0.253207,0.874833,0.462647,0.458944,0.599526,0.0660442,0.0369694,0.118543,0.363415,0.830444,0.204069,0.0862526,0.191144,0.517986,0.0880108,0.800637,0.59008,0.442838,0.397301,0.192152,0.129498,0.879615,0.440987,0.972108,0.23897,0.565599,0.920488,0.489099,0.841504,0.600763,0.99621,0.96757,0.419965,0.402217,0.536957,0.740179,0.346966,0.185933,0.384059,0.651335,0.398487,0.451698,0.101253,0.794475,0.170866,0.540764,0.381778,0.551635,0.58733,0.843935,0.186673,0.898361,0.0266444,0.300811,0.656109,0.119226,0.399353,0.290855,0.705883,0.520126,0.802968,0.722461,0.641689,0.303688,0.603396,0.176405,0.086208,0.648416,0.142898,0.120303,0.73732,0.150688,0.843715,0.596296,0.479302,0.425181,0.181882,0.304653,0.119836,0.151798,0.610943,0.649048,0.920545,0.761315,0.795649,0.982284,0.824475,0.62604,0.264969,0.954176,0.211339,0.940351,0.970761,0.326873,0.146503,0.580801,0.669425,0.170535,0.789957,0.226902,0.273552,0.979529,0.717115,0.764318,0.286902,0.154219,0.0692653,0.582408,0.945119,0.893718,0.178634,0.475756,0.532354,0.59941,0.492205,0.526637,0.728487,0.413862,0.844115,0.211746,0.912335,0.28858,0.248409,0.495941,0.689315,0.778758,0.594983,0.600531,0.961529,0.401771,0.669039,0.0730705,0.461382,0.229151,0.432468,0.433793,0.722344,0.641723,0.811869,0.931114,0.923187,0.103516,0.582539,0.137613,0.418666,0.736715,0.194308,0.191113,0.833899,0.880856,0.254492,0.893682,0.979338,0.172263,0.664031,0.904455,0.26965,0.539517,0.825134,0.563266,0.00907189,0.648843,0.85071,0.55544,0.12522,0.406339,0.29292,0.96967,0.406528,0.0533234,0.134464,0.186044,0.511382,0.472409,0.564356,0.930385,0.396629,0.858435,0.0855013,0.747475,0.155435,0.755834,0.340583,0.83155,0.408091,0.812357,0.088817,0.398391,0.823509,0.895185,0.0410171,0.0242545,0.808684,0.342722,0.0830285,0.905606,0.22488,0.173959,0.687693,0.028633,0.92676,0.449273,0.59117,0.217708,0.633608,0.0866667,0.479971,0.234517,0.542212,0.108965,0.857276,0.360334,0.565775,0.484116,0.668621,0.546901,0.729347,0.147834,0.900263,0.926883,0.503554,0.542173,0.0489952,0.638381,0.834297,0.856303,0.524579,0.610442,0.271409,0.701881,0.169955,0.532569,0.779673,0.441051,0.925623,0.0717577,0.367783,0.431741,0.348262,0.0658964,0.153063,0.867117,0.83116,0.0613627,0.46454,0.643504,0.727431,0.549635,0.0977907,0.187091,0.149641,0.728465,0.976832,0.312952,0.615328,0.119614,0.102314,0.182747,0.372439,0.698292,0.29255,0.844772,0.802141,0.686073,0.365065,0.335413,0.734025,0.541161,0.617339,0.506836,0.971047,0.299161,0.474257,0.716988,0.977335,0.923373,0.750817,0.720171,0.632203,0.27183,0.497984,0.866221,0.137,0.945849,0.43325,0.0281557,0.615699,0.136539,0.831791,0.0433127,0.621773,0.837115,0.483639,0.0681513,0.949782,0.833617,0.257859,0.38383,0.177296,0.597444,0.968587,0.789524,0.202176,0.792515,|0.076616,0.472822,0.395375,0.805482,0.772295,0.120546,0.170143,0.68212,0.380505,0.849855,0.252397,0.541119,0.510301,0.350072,0.690354,0.661744,0.7774,0.690263,0.0865783,0.00813854,0.656267,0.649547,0.988708,0.0281907,0.965366,0.50919,0.509458,0.00507981,0.72128,0.732047,0.555051,0.968254,0.588799,0.337234,0.195862,0.201478,0.154454,0.856177,0.511268,0.151744,0.525207,0.0585389,0.312796,0.739401,0.745823,0.0947371,0.663923,0.717984,0.0315306,0.464902,0.253701,0.908473,0.354711,0.930608,0.208883,0.146669,0.867297,0.321854,0.135062,0.221448,0.117174,0.523327,0.658451,0.301296,0.553996,0.776018,0.229518,0.416437,0.228219,0.948568,0.384513,0.0737345,0.996574,0.115612,0.0465789,0.461993,0.991818,0.380442,0.482746,0.131998,0.850154,0.26735,0.434917,0.22843,0.12119,0.909083,0.347413,0.347064,0.829473,0.412359,0.348789,0.0871459,0.12584,0.118891,0.990795,0.259619,0.177262,0.292512,0.847638,0.485914,0.823875,0.391631,0.0819281,0.362469,0.408773,0.757906,0.67357,0.798293,0.768492,0.363504,0.303588,0.417444,0.912639,0.777242,0.0116282,0.445949,0.0791946,0.907714,0.817113,0.357553,0.305903,0.719023,0.542974,0.323335,0.834405,0.23875,0.324077,0.858125,0.991736,0.10288,0.826837,0.410337,0.836713,0.522617,0.46141,0.698548,0.248961,0.786567,0.982146,0.97237,0.939586,0.209783,0.0144212,0.184257,0.445287,0.464019,0.765831,0.662391,0.926742,0.377655,0.295078,0.351986,0.446881,0.258477,0.486521,0.78859,0.940779,0.731978,0.133461,0.341485,0.697272,0.981621,0.480358,0.309578,0.782646,0.412196,0.589924,0.330792,0.832892,0.320184,0.401109,0.248544,0.154544,0.194608,0.510518,0.806216,0.586664,0.394734,0.757415,0.559149,0.638055,0.658301,0.119203,0.205679,0.0416105,0.0447946,0.277095,0.232091,0.827221,0.394327,0.15556,0.868815,0.305367,0.104297,0.99511,0.50739,0.0539333,0.96915,0.322896,0.509828,0.116921,0.116863,0.907454,0.500449,0.528606,0.569645,0.652127,0.953145,0.545507,0.0838953,0.279485,0.574717,0.7612,0.0134334,0.787081,0.042254,0.876566,0.652637,0.483175,0.906222,0.636266,0.0549993,0.966743,0.529031,0.847523,0.59217,0.812437,0.465804,0.170294,0.338223,0.65885,0.096362,0.108079,0.538536,0.610614,0.729944,0.0999019,0.911263,0.0194505,0.109101,0.857844,0.668417,0.124904,0.882986,0.781238,0.852388,0.528987,0.825808,0.12635,0.212161,0.869404,0.45172,0.00274056,0.675089,0.507845,0.404906,0.730915,0.86612,0.988061,0.452932,0.700019,0.438763,0.253758,0.089118,0.241453,0.249961,0.65711,0.435278,0.0761926,0.821485,0.377641,0.81886,0.875976,0.420106,0.746013,0.167002,0.777996,0.28199,0.356336,0.188409,0.0527229,0.344479,0.350519,0.127555,0.505964,0.882751,0.189501,0.171292,0.0264652,0.429974,0.48666,0.652125,0.398516,0.604563,0.238303,0.702022,0.244074,0.865581,0.0184509,0.657328,0.693921,0.203714,0.896783,0.415772,0.228592,0.964175,0.0705472,0.0161191,0.405252,0.153371,0.366254,0.468958,0.0313236,0.103503,0.521803,0.958834,0.105614,0.923271,0.35294,0.762844,0.654941,0.65842,0.639586,0.898742,0.817131,0.438096,0.793629,0.641164,0.126126,0.256278,0.320952,0.339995,0.586583,0.590698,0.762296,0.333966,0.826706,0.496824,0.552492,0.5416,0.440073,0.662372,0.655665,0.358687,0.0923432,0.817611,0.551949,0.541753,0.795793,0.727956,0.643253,0.0608096,0.817245,0.779392,0.770753,0.672366,0.153476,0.335453,0.128227,0.503086,0.885893,0.880727,0.0700746,0.499156,0.270291,0.0858663,0.0305712,0.506498,0.252003,0.804573,0.681773,0.993778,0.670007,0.0619903,0.33909,0.215258,0.581416,0.0227457,0.14688,0.980597,0.147143,0.748415,0.156782,0.266623,0.252363,0.935998,0.962817,0.656537,0.528659,0.0381692,0.118075,0.711588,0.521174,0.266463,0.320883,0.781317,0.801417,0.181714,0.771536,0.0857891,0.775875,0.712211,0.656654,0.753859,0.140113,0.647055,0.0381731,0.378996,0.532512,0.540865,0.172681,0.540668,0.864977,0.725912,0.252633,0.905312,0.689652,0.417787,0.074307,0.579166,0.183839,0.232584,0.0683867,0.571688,0.924201,0.0702376,0.754026,0.960742,0.810361,0.880124,0.392496,0.991812,0.748398,0.00586897,0.769042,0.367006,0.849865,0.257661,0.954627,0.639996,0.873961,0.850588,0.223189,0.0747218,0.976287,0.0735058,0.539888,0.600079,0.29242,0.160453,0.854871,0.0176695,0.653881,0.340296,0.936493,0.791017,0.374333,0.786878,0.945267,0.947426,0.245816,0.665109,0.382066,0.891142,0.0110164,0.194288,0.500895,0.872049,0.260641,0.700469,0.481131,0.210917,0.701983,0.300638,0.769229,0.462267,0.613551,0.202553,0.0817471,0.295745,0.534142,0.0617884,0.479458,0.816806,0.497274,0.883046,0.79957,0.757793,0.430828,0.660369,0.169917,0.526938,0.610331,0.30562,0.830975,0.677114,0.075667,0.339893,0.430261,0.670947,0.742528,0.559343,0.00825417,0.00332212,0.896128,0.872031,0.489173,0.0409452,0.608684,0.807488,0.977112,0.931034,0.609591,0.345528,0.861365,0.31616,0.859682,0.906339,0.554343,0.632775,0.162145,0.661512,0.338269,0.305317,0.847906,0.809827,0.746138,0.257066,0.372412,0.37346,0.615796,0.621698,0.57853,0.705327,0.631057,0.919625,0.487335,0.86862,0.485146,0.586088,0.140359,0.203116,0.610186,0.515946,0.229567,0.565454,0.157644,0.871495,0.908116,0.386935,0.105439,0.762942,0.406938,0.592428,0.421633,0.792404,0.297702,0.932237,0.961721,0.540469,0.318278,0.862176,0.924606,0.106067,0.257104,0.536321,0.250388,0.0419428,0.629225,0.031964,0.423296,0.154608,0.941785,0.600732,0.0275405,0.428587,0.146943,0.507844,0.749033,0.273013,0.917131,0.296032,0.0106486,0.683926,0.466277,0.495436,0.662547,0.400631,0.934646,0.0304138,0.16927,0.342899,0.136207,0.358666,0.149126,0.0123282,0.214696,0.808094,0.589368,0.916183,0.240764,0.0220299,0.248157,0.48426,0.773884,0.377529,0.675286,0.740576,0.928212,0.482832,0.687003,0.500353,0.0318582,0.263954,0.0749335,0.756542,0.597844,0.848571,0.898684,0.369871,0.862085,0.589063,0.782174,0.854553,0.508381,0.294518,0.020872,0.248437,0.617902,0.275738,0.773138,0.371927,0.664703,0.767209,0.682948,0.0662139,0.914237,0.305318,0.561564,0.0973256,0.262006,0.0717227,0.639494,0.784398,0.168831,0.58438,0.415191,0.263367,0.211343,0.762683,0.666464,0.283073,0.594869,0.989041,0.71985,0.230727,0.33847,0.323679,0.111977,0.920368,0.592537,0.599784,0.35541,0.532113,0.0128631,0.141373,0.221165,0.118149,0.239932,0.79619,0.455158,0.576053,0.00694847,0.468145,0.100048,0.10723,0.881421,0.0827245,0.706006,0.454857,0.455721,0.146977,0.535048,0.267174,0.611273,0.817701,0.269598,0.560564,0.793827,0.537707,0.102121,0.212703,0.277626,0.402617,0.328245,0.280785,0.66793,0.564527,0.367032,0.404845,0.371034,0.39141,0.784567,0.159075,0.933156,0.433974,0.894975,0.599172,0.402131,0.115055,0.26311,0.528457,0.251786,0.56953,0.438174,0.352803,0.795176,0.804724,0.129483,0.985712,0.705031,0.176315,0.461033,0.487867,0.456117,0.998488,0.91348,0.504864,0.750338,0.876174,0.476098,0.0261647,0.573124,0.949523,0.601516,0.220739,0.0921941,0.332331,0.628494,0.0442603,0.368388,0.350302,0.368271,0.917301,0.00346386,0.211563,0.304823,0.94123,0.0248967,0.393996,0.430608,0.100527,0.390357,0.115557,0.763684,0.761335,0.779834,0.83901,0.141043,0.889028,0.364166,0.428106,0.177282,0.831292,0.607992,0.417376,0.467111,0.615342,0.870741,0.168373,0.767217,0.158743,0.496535,0.156513,0.908766,0.85493,0.266644,0.351213,0.404979,0.202889,0.00104326,0.398867,0.186961,0.329639,0.247333,0.507811,0.878826,0.344336,0.719911,0.729173,0.976382,0.227084,0.828076,0.136785,0.0409876,0.93067,0.470571,0.490941,0.720434,0.173725,0.106311,0.00030756,0.219329,0.456856,0.546467,0.706181,0.838789,0.1464,0.695,0.377136,0.876632,0.163214,0.438553,0.438212,0.30986,0.310067,0.73154,0.831268,0.534335,0.0400989,0.464265,0.55725,0.692849,0.781564,0.64959,0.629795,0.39069,0.37007,0.312833,0.751512,0.939587,0.182278,0.400482,0.797536,0.614922,0.508773,0.128068,0.409081,0.479422,0.537216,0.377376,0.963604,0.676427,0.963309,0.426752,0.986945,0.55776,0.754124,0.969326,0.0845272,0.262624,0.519389,0.734548,0.0937052,0.0565107,0.803233,0.815632,0.147155,0.0467353,0.806644,0.320835,0.242771,0.597365,0.860371,0.595474,0.806081,0.852068,0.239034,0.947516,0.485754,0.695268,0.239005,0.832938,0.701732,0.182427,0.834925,0.841388,0.11189,0.837689,0.613446,0.0752357,0.123697,0.959715,0.96899,0.781923,0.193979,0.490503,0.467312,0.541379,0.645323,0.348571,0.820439,0.47499,0.570647,0.0743959,0.864564,0.771825,0.844287,0.0460687,0.231762,0.950183,0.225195,0.0781325,0.0416454,0.769723,0.254765,0.283035,0.7998,0.525283,0.550862,0.759596,0.110558,0.322145,0.143292,0.744698,0.514026,0.625407,0.313436,0.547607,0.504663,0.711271,0.602803,0.296452,0.194552,0.351418,0.569708,0.443148,0.0165258,0.946127,0.68486,0.636617,0.269741,0.353717,0.220793,0.427829,0.807536,0.371751,0.576276,0.64084,0.522716,0.0526392,0.44171,0.863648,0.1845,0.497599,0.693715,0.841486,0.568358,0.116393,0.675833,0.841278,0.96006,0.431352,0.682877,0.814398,0.413599,0.125988,0.811348,0.308204,0.951392,0.911606,0.908636,0.154874,0.0640965,0.719957,0.393805,0.315001,0.811823,0.398223,0.87721,0.492737,0.303902,0.837429,0.788872,0.700067,0.0892298,0.651807,0.595077,0.385245,0.336858,0.657814,0.74414,0.284114,0.538138,0.502313,0.22818,0.384227,0.764024,0.307084,0.89432,0.774516,0.990382,0.321872,0.31748,0.175817,0.984325,0.896254,0.377603,0.160218,0.782561,|0.941407,0.331931,0.591995,0.536363,0.0008412,0.516954,0.539937,0.090142,0.928716,0.547395,0.629288,0.193744,0.188735,0.124314,0.0752782,0.494858,0.648115,0.259398,0.274886,0.293296,0.142979,0.0368258,0.771925,0.0452778,0.77443,0.95744,0.0474555,0.673678,0.391014,0.280417,0.00730258,0.459103,0.398934,0.884137,0.337394,0.711754,0.463408,0.550607,0.478446,0.132225,0.713537,0.817566,0.447828,0.0654781,0.959558,0.255695,0.669682,0.93763,0.896547,0.145923,0.580331,0.687323,0.508428,0.397614,0.895424,0.782994,0.603271,0.280412,0.439476,0.857929,0.998149,0.0408143,0.637573,0.728005,0.78732,0.106188,0.734667,0.0639492,0.449684,0.426973,0.7747,0.214087,0.705814,0.232796,0.647696,0.0667379,0.0725909,0.165953,0.118418,0.416137,0.339298,0.327234,0.0439606,0.448802,0.737772,0.285609,0.871744,0.969162,0.334311,0.423934,0.721035,0.727443,0.0220592,0.76042,0.657744,0.508681,0.44352,0.0972334,0.863598,0.957916,0.366242,0.273374,0.154058,0.323215,0.746008,0.0406059,0.0368962,0.287232,0.611931,0.701779,0.399143,0.0236172,0.898716,0.362699,0.972812,0.192449,0.503337,0.253512,0.535585,0.37464,0.799456,0.812152,0.580587,0.415247,0.032005,0.411956,0.376827,0.202098,0.0413252,0.238634,0.820378,0.198453,0.613689,0.996312,0.9468,0.0932318,0.0718327,0.441763,0.920095,0.174809,0.359797,0.166341,0.512857,0.985788,0.755761,0.496225,0.144496,0.0151196,0.549259,0.149615,0.0406086,0.255722,0.390621,0.819304,0.353683,0.0281826,0.999764,0.935962,0.859854,0.342851,0.265355,0.461003,0.0851187,0.480524,0.807707,0.26682,0.864481,0.0821823,0.535018,0.263306,0.324425,0.062896,0.671375,0.119606,0.760499,0.956142,0.696561,0.843885,0.312136,0.969267,0.475225,0.327069,0.240389,0.0420927,0.961426,0.8138,0.738562,0.64155,0.362881,0.662918,0.829964,0.434471,0.496523,0.9354,0.692264,0.263958,0.689572,0.644904,0.521521,0.684497,0.569401,0.966008,0.391722,0.612895,0.666603,0.927145,0.268801,0.21107,0.938016,0.983153,0.710325,0.922803,0.84249,0.403138,0.78497,0.784849,0.526838,0.33182,0.0934232,0.187484,0.254868,0.6183,0.912736,0.79382,0.642524,0.36392,0.404817,0.259516,0.964005,0.491785,0.679365,0.959958,0.818757,0.600557,0.746066,0.110875,0.390194,0.773508,0.0881572,0.761516,0.864148,0.4484,0.875541,0.850292,0.231704,0.667457,0.898009,0.935616,0.173629,0.342534,0.182505,0.199665,0.872943,0.238846,0.949264,0.0104511,0.620669,0.686391,0.509743,0.39246,0.683012,0.383146,0.804795,0.159675,0.142198,0.256791,0.96661,0.640074,0.578089,0.0150347,0.560521,0.157815,0.0736768,0.218001,0.210447,0.304381,0.899183,0.535518,0.272745,0.688854,0.850879,0.698678,0.752249,0.342501,0.0863342,0.515248,0.701385,0.0919069,0.66684,0.691892,0.976574,0.932561,0.61464,0.881096,0.294482,0.652853,0.841256,0.14955,0.276938,0.148939,0.247566,0.301326,0.571225,0.333729,0.166062,0.368185,0.398589,0.916262,0.352911,0.840133,0.184431,0.459133,0.287083,0.0427452,0.396926,0.482004,0.636078,0.790987,0.177192,0.701502,0.064769,0.821696,0.911666,0.276744,0.693002,0.884212,0.691721,0.164411,0.0797035,0.0442583,0.0366633,0.291466,0.201667,0.988679,0.816787,0.928206,0.0315273,0.378808,0.234683,0.577569,0.894216,0.616699,0.828489,0.504156,0.581152,0.370168,0.857131,0.804273,0.157215,0.812633,0.561015,0.188703,0.666307,0.592588,0.660805,0.00350982,0.281456,0.265054,0.805343,0.845583,0.385637,0.777221,0.567134,0.239451,0.864129,0.628545,0.239127,0.410357,0.318034,0.865948,0.135715,0.16854,0.135003,0.383202,0.490538,0.576773,0.785405,0.0781389,0.0957868,0.691096,0.735004,0.488664,0.419617,0.835599,0.679454,0.362444,0.0797155,0.334547,0.791893,0.359471,0.205325,0.129375,0.157787,0.639861,0.794939,0.683067,0.267027,0.923845,0.279149,0.203586,0.310151,0.65779,0.23572,0.750402,0.950607,0.232669,0.670294,0.0878709,0.340657,0.793268,0.569789,0.721371,0.632852,0.145324,0.15801,0.155379,0.178398,0.767196,0.231005,0.679502,0.402484,0.592162,0.713275,0.614116,0.450978,0.982245,0.454633,0.759341,0.962518,0.589899,0.868705,0.425403,0.731979,0.538345,0.761673,0.288433,0.230895,0.133878,0.366223,0.973338,0.506784,0.209408,0.366205,0.966493,0.691307,0.133498,0.234012,0.245857,0.000312567,0.440936,0.505315,0.342776,0.380893,0.294222,0.495275,0.42693,0.106983,0.64448,0.30243,0.00234503,0.682637,0.902231,0.646747,0.298593,0.398114,0.260214,0.687769,0.992243,0.896195,0.3098,0.0394953,0.23626,0.110414,0.540563,0.135522,0.388102,0.379192,0.751144,0.669905,0.879992,0.387088,0.295914,0.486119,0.883662,0.927005,0.4662,0.248668,0.275967,0.258096,0.205659,0.0777407,0.987418,0.0566851,0.861922,0.794667,0.762347,0.224294,0.862687,0.81796,0.944722,0.115833,0.445732,0.713485,0.817573,0.336613,0.788677,0.117405,0.495076,0.0554186,0.0735231,0.0176724,0.755665,0.397641,0.493929,0.427331,0.750456,0.724685,0.0552518,0.355284,0.0269001,0.826531,0.0348513,0.166321,0.171165,0.196395,0.839895,0.100681,0.378443,0.589984,0.362523,0.0670705,0.754686,0.907012,0.566071,0.894738,0.354978,0.907835,0.384104,0.0402569,0.479703,0.371713,0.645151,0.535538,0.838031,0.0188724,0.254868,0.868527,0.826905,0.847597,0.926591,0.886762,0.280825,0.0931619,0.290733,0.735662,0.354349,0.990802,0.540142,0.639937,0.485994,0.74285,0.252988,0.576329,0.530456,0.68947,0.31325,0.668961,0.700863,0.132954,0.24925,0.736685,0.507906,0.727091,0.735998,0.36394,0.0593859,0.386137,0.790961,0.638886,0.794367,0.777217,0.601955,0.0489275,0.0760478,0.59049,0.76341,0.641612,0.467391,0.168966,0.759535,0.429126,0.177465,0.220236,0.706578,0.53404,0.731783,0.42771,0.144957,0.419034,0.301902,0.950278,0.161301,0.65278,0.222209,0.257924,0.121699,0.715639,0.859963,0.347617,0.687066,0.559444,0.770554,0.956639,0.147373,0.501566,0.176404,0.599188,0.465903,0.176892,0.853663,0.16207,0.404652,0.842276,0.902994,0.0720646,0.882974,0.553309,0.902471,0.0138149,0.529015,0.0108738,0.0956424,0.166709,0.366719,0.142163,0.792604,0.405994,0.311818,0.647729,0.0544186,0.0618752,0.342487,0.907802,0.470274,0.801608,0.313022,0.619016,0.487105,0.316509,0.350906,0.946029,0.839399,0.129353,0.357644,0.813704,0.0629577,0.425487,0.204203,0.22372,0.663117,0.333452,0.535088,0.764838,0.459252,0.997182,0.30695,0.481997,0.883904,0.524107,0.393656,0.657583,0.742134,0.192063,0.586804,0.0881293,0.0481739,0.110556,0.237706,0.133021,0.177468,0.854344,0.748119,0.675984,0.242097,0.167048,0.792752,0.803399,0.231139,0.758429,0.559552,0.762637,0.493397,0.40971,0.792678,0.927763,0.605493,0.899571,0.632072,0.175861,0.0950601,0.447963,0.0708582,0.442154,0.919553,0.0134117,0.423858,0.59331,0.492633,0.26049,0.487822,0.69226,0.952549,0.802773,0.575292,0.370695,0.429976,0.757176,0.348569,0.821488,0.178975,0.358762,0.390567,0.00645632,0.82679,0.552433,0.665694,0.332981,0.790117,0.483015,0.804303,0.701857,0.763475,0.89672,0.318227,0.575274,0.251227,0.477802,0.158202,0.848305,0.150705,0.561794,0.188426,0.840277,0.455684,0.1639,0.661498,0.513618,0.857711,0.537359,0.360217,0.927453,0.176429,0.0788799,0.861032,0.178517,0.2807,0.977014,0.385609,0.631365,0.30422,0.674053,0.235302,0.481958,0.0104938,0.205301,0.316784,0.858747,0.756059,0.194042,0.784335,0.409559,0.000422776,0.912435,0.364576,0.725531,0.486546,0.889181,0.140291,0.529919,0.139087,0.034847,0.469734,0.582648,0.845496,0.246765,0.479628,0.447129,0.788755,0.241108,0.427898,0.81578,0.153772,0.111684,0.119845,0.867292,0.671435,0.511151,0.467167,0.470257,0.725145,0.0513678,0.067901,0.979648,0.528647,0.178077,0.381533,0.776087,0.00615853,0.52622,0.585511,0.410755,0.707336,0.902597,0.663248,0.257575,0.679394,0.782579,0.134299,0.0206754,0.320454,0.717587,0.76274,0.449174,0.612443,0.484339,0.377268,0.282752,0.397081,0.555718,0.0486087,0.972115,0.124012,0.675162,0.0478211,0.432245,0.363921,0.597134,0.213774,0.880405,0.177218,0.43954,0.0644132,0.946952,0.748831,0.0752251,0.147943,0.252568,0.377979,0.0443987,0.107726,0.758956,0.693837,0.910453,0.85994,0.563082,0.0156007,0.72834,0.191443,0.595214,0.861491,0.590802,0.0950984,0.0873384,0.757908,0.647859,0.544046,0.665564,0.899716,0.633221,0.91983,0.482817,0.0944831,0.955631,0.231833,0.176739,0.980318,0.0979134,0.488466,0.94274,0.635072,0.478208,0.40432,0.489937,0.0329913,0.0981362,0.649259,0.354163,0.230477,0.322387,0.479864,0.454786,0.154476,0.487723,0.999003,0.736103,0.183062,0.83337,0.401358,0.672195,0.743397,0.508989,0.556483,0.901575,0.34605,0.657171,0.516247,0.652845,0.686062,0.309104,0.867301,0.94585,0.745802,0.24349,0.0539402,0.287915,0.100062,0.660435,0.943899,0.768716,0.883239,0.105331,0.798266,0.466434,0.31274,0.26101,0.819574,0.127694,0.650918,0.653695,0.17669,0.512607,0.386783,0.221086,0.362241,0.606091,0.0976762,0.88377,0.790152,0.442428,0.745222,0.455628,0.809255,0.397683,0.3747,0.41992,0.456785,0.058025,0.421348,0.53859,0.790131,0.672172,0.751554,0.123463,0.082651,0.956899,0.599333,0.555626,0.771812,0.357867,0.653032,0.666438,0.519725,0.472349,0.876538,0.0554452,0.31314,0.691706,0.572193,0.391819,0.675136,0.959582,0.666982,0.633685,0.816496,0.81306,0.476417,0.478687,0.200013,0.608846,0.885319,0.946737,0.555815,0.140988,0.751026,0.0347954,0.700671,0.438102,0.661497,0.147429,0.688119,0.994157,0.634674,0.242802,0.611366,0.234655,0.248578,0.884363,0.147382,0.313409,0.392853,|0.320554,0.583449,0.567674,0.270761,0.623866,0.909949,0.548426,0.282793,0.968508,0.509013,0.918659,0.923194,0.633213,0.906638,0.627348,0.276696,0.259272,0.976475,0.64531,0.613803,0.721171,0.266498,0.84012,0.914688,0.390913,0.0641496,0.223053,0.966896,0.753835,0.498192,0.00962186,0.0809109,0.576886,0.317676,0.702183,0.535874,0.714032,0.18726,0.523183,0.0904773,0.341792,0.459491,0.322627,0.877888,0.436203,0.0610465,0.382521,0.604805,0.224939,0.636862,0.640156,0.814192,0.847928,0.542068,0.992781,0.419831,0.867313,0.316075,0.900754,0.154599,0.296299,0.611955,0.298891,0.874569,0.673881,0.876388,0.379695,0.733941,0.917502,0.768553,0.752358,0.780868,0.209991,0.800242,0.899488,0.492607,0.760367,0.249881,0.705063,0.271518,0.154809,0.847694,0.360455,0.708536,0.278358,0.494698,0.320993,0.722053,0.320599,0.412867,0.224041,0.988005,0.926907,0.654825,0.448973,0.276116,0.0294835,0.367108,0.54466,0.840982,0.211566,0.472492,0.529744,0.00107199,0.838976,0.929729,0.996033,0.0329424,0.963803,0.59952,0.973752,0.46107,0.00496835,0.999992,0.985683,0.107959,0.0735916,0.211774,0.902588,0.545255,0.113604,0.796702,0.557957,0.891565,0.0776163,0.609484,0.365443,0.860727,0.978976,0.065221,0.034533,0.611566,0.705757,0.0825194,0.226653,0.162483,0.044426,0.76884,0.40123,0.881092,0.00591081,0.280218,0.552015,0.925379,0.332487,0.656188,0.827045,0.167686,0.843627,0.791096,0.8332,0.956162,0.674188,0.892444,0.343261,0.467928,0.641723,0.964684,0.437461,0.770675,0.153818,0.414224,0.0573602,0.342605,0.491644,0.752575,0.978316,0.81496,0.158879,0.142417,0.599569,0.0352797,0.188782,0.230046,0.298284,0.935683,0.198102,0.852045,0.867574,0.908602,0.506412,0.677532,0.229181,0.254017,0.148281,0.57047,0.362831,0.0151396,0.282553,0.0463064,0.0418348,0.281389,0.18254,0.264473,0.369408,0.786998,0.29926,0.950475,0.513808,0.498178,0.64231,0.985398,0.876085,0.56122,0.536116,0.110463,0.202653,0.304281,0.130094,0.595132,0.947762,0.734761,0.743257,0.159371,0.834526,0.880849,0.201301,0.893445,0.803937,0.561321,0.307016,0.619406,0.340038,0.0315557,0.176053,0.0856035,0.639784,0.638111,0.766216,0.313104,0.624138,0.16364,0.554804,0.417156,0.928395,0.180731,0.772498,0.154073,0.537134,0.197924,0.441656,0.263594,0.870436,0.567861,0.641237,0.455311,0.258858,0.686265,0.671705,0.560483,0.0764386,0.263466,0.24805,0.175568,0.150435,0.858568,0.417194,0.544988,0.432443,0.324309,0.360608,0.781888,0.721667,0.481567,0.724037,0.650846,0.443935,0.281835,0.314156,0.419943,0.685063,0.678186,0.979186,0.195248,0.0726612,0.612999,0.944729,0.312842,0.411636,0.961088,0.802657,0.728075,0.0606363,0.923663,0.865224,0.885806,0.947757,0.913801,0.181447,0.877637,0.515389,0.0546452,0.336382,0.67384,0.779962,0.6732,0.985822,0.934193,0.315127,0.163902,0.0921488,0.51214,0.499868,0.904127,0.0661097,0.599591,0.28378,0.869874,0.920888,0.613201,0.162798,0.480752,0.0623732,0.282648,0.688617,0.050288,0.744178,0.701685,0.243061,0.139031,0.522058,0.538172,0.869055,0.367806,0.168761,0.716178,0.0880837,0.333582,0.579648,0.286521,0.704317,0.58732,0.270205,0.581741,0.180446,0.937352,0.647383,0.241175,0.0216973,0.983833,0.421324,0.815696,0.68364,0.876694,0.12646,0.906471,0.256121,0.00680059,0.424975,0.877035,0.267601,0.609352,0.494816,0.256901,0.108384,0.151327,0.0236409,0.403433,0.643705,0.822914,0.165719,0.601773,0.348569,0.599122,0.363297,0.785456,0.720964,0.785909,0.328375,0.914592,0.0488831,0.845367,0.257883,0.21577,0.23973,0.226245,0.385293,0.397329,0.680789,0.808582,0.819584,0.433477,0.210999,0.701695,0.818107,0.0228816,0.195815,0.609117,0.696388,0.334996,0.584219,0.873771,0.320762,0.314341,0.120662,0.178258,0.893998,0.283551,0.900099,0.461652,0.584167,0.819485,0.403766,0.04294,0.936866,0.565939,0.246139,0.200917,0.700961,0.528432,0.343388,0.289632,0.760238,0.56723,0.581341,0.789616,0.127283,0.815008,0.133492,0.960763,0.0238237,0.115751,0.752834,0.495113,0.381093,0.801489,0.895955,0.05455,0.894402,0.264349,0.329947,0.675372,0.430051,0.593542,0.131535,0.532462,0.11526,0.804866,0.741809,0.348682,0.278681,0.412816,0.895405,0.176336,0.214716,0.132985,0.702784,0.49611,0.0741963,0.749441,0.494379,0.682443,0.491229,0.517624,0.245403,0.548523,0.759544,0.645655,0.923785,0.190821,0.165694,0.995854,0.831688,0.924317,0.479316,0.725241,0.49242,0.351026,0.909941,0.0714192,0.927137,0.0235098,0.792747,0.632854,0.507426,0.693115,0.732107,0.830779,0.15893,0.93271,0.374943,0.321278,0.915248,0.367037,0.223903,0.935222,0.254778,0.284474,0.888958,0.27577,0.51698,0.889249,0.120519,0.0659882,0.94942,0.233801,0.998633,0.604604,0.239644,0.986252,0.961471,0.138852,0.321225,0.550486,0.989369,0.710334,0.182682,0.0479885,0.901246,0.172827,0.081194,0.624683,0.450134,0.581933,0.484084,0.864492,0.297007,0.738264,0.769383,0.457311,0.351853,0.213208,0.565212,0.156485,0.305918,0.419173,0.0205551,0.992465,0.183074,0.0754142,0.485888,0.562153,0.984766,0.332136,0.690558,0.0396276,0.111134,0.668502,0.421533,0.804607,0.372601,0.568654,0.150251,0.354383,0.737547,0.678953,0.978029,0.481471,0.285224,0.875552,0.740015,0.989573,0.238185,0.786522,0.677833,0.744014,0.219676,0.649007,0.470123,0.768602,0.556266,0.74813,0.676127,0.398194,0.410817,0.365186,0.738288,0.142956,0.238797,0.490443,0.767409,0.550298,0.468728,0.485459,0.865657,0.0532854,0.109255,0.0708499,0.576559,0.859768,0.834342,0.172056,0.553623,0.00162607,0.432248,0.0528638,0.283222,0.528051,0.129305,0.0706965,0.737496,0.301097,0.862147,0.777459,0.235283,0.409867,0.132111,0.936373,0.828019,0.5212,0.569092,0.180209,0.207771,0.734337,0.907569,0.926298,0.917116,0.0309376,0.897546,0.581704,0.285153,0.26242,0.710383,0.304393,0.134955,0.195203,0.961965,0.303275,0.769431,0.408892,0.760604,0.113404,0.728978,0.807854,0.754851,0.728875,0.385251,0.100056,0.0340081,0.289913,0.65636,0.619575,0.553811,0.192391,0.206139,0.594371,0.527939,0.510207,0.769553,0.0901548,0.499243,0.306175,0.414006,0.285188,0.992772,0.850833,0.974988,0.751552,0.324196,0.829818,0.844768,0.284385,0.676426,0.262382,0.193512,0.867065,0.544469,0.530593,0.406174,0.683585,0.929311,0.696293,0.64207,0.402233,0.813424,0.98274,0.45316,0.308805,0.964666,0.681741,0.91906,0.233749,0.35917,0.216664,0.105991,0.749509,0.187333,0.946198,0.211956,0.622004,0.358334,0.971809,0.313011,0.86217,0.732503,0.837287,0.0458967,0.918962,0.44922,0.484465,0.0324169,0.461347,0.603327,0.134189,0.19619,0.805303,0.222989,0.746301,0.392342,0.7681,0.480001,0.282634,0.587173,0.441792,0.960742,0.541183,0.824474,0.983134,0.12449,0.311393,0.102885,0.764432,0.480835,0.317773,0.00590402,0.794006,0.928162,0.00854605,0.250475,0.442528,0.401379,0.44385,0.468554,0.304867,0.517133,0.482664,0.389497,0.594647,0.845556,0.230559,0.71585,0.129204,0.625152,0.230521,0.364221,0.657158,0.739997,0.672859,0.76954,0.509502,0.871772,0.285128,0.477465,0.715298,0.829801,0.137204,0.41682,0.0966783,0.0699921,0.480185,0.360239,0.522365,0.0789156,0.793734,0.00700164,0.54535,0.311114,0.821964,0.161618,0.0789294,0.177391,0.322409,0.392375,0.297162,0.868874,0.28987,0.506355,0.674079,0.0111305,0.49872,0.309592,0.519782,0.961975,0.336501,0.618942,0.406664,0.36633,0.208886,0.318742,0.285103,0.962161,0.155533,0.11585,0.175646,0.839085,0.0427015,0.118849,0.982071,0.282109,0.108037,0.125579,0.4096,0.88027,0.817997,0.565416,0.707489,0.747746,0.303297,0.704225,0.0617569,0.0424049,0.993917,0.257868,0.814852,0.731227,0.821222,0.288153,0.846525,0.476621,0.12124,0.227349,0.695874,0.353817,0.524708,0.351983,0.366826,0.173711,0.879464,0.256068,0.404904,0.272859,0.946099,0.377927,0.622158,0.228375,0.193745,0.0208639,0.736121,0.458402,0.570747,0.730313,0.472792,0.579473,0.0703977,0.590665,0.580863,0.015814,0.850773,0.928803,0.12643,0.117805,0.514755,0.730499,0.635362,0.410642,0.440689,0.0124752,0.327972,0.642565,0.285756,0.218603,0.532203,0.337782,0.0507349,0.143738,0.830886,0.962841,0.944986,0.950116,0.62859,0.994687,0.413413,0.270711,0.696819,0.13215,0.00363958,0.135927,0.238481,0.943803,0.0504681,0.008928,0.353574,0.229798,0.739422,0.524945,0.834336,0.535716,0.592741,0.750687,0.120131,0.791152,0.338524,0.23826,0.41027,0.289374,0.447316,0.199351,0.815294,0.456345,0.369261,0.507771,0.659492,0.0805775,0.0928808,0.0742408,0.259242,0.533284,0.843404,0.549021,0.61357,0.248193,0.286697,0.617027,0.496848,0.853011,0.755116,0.0878282,0.558721,0.499101,0.418389,0.48103,0.254995,0.569736,0.150398,0.422987,0.852194,0.964729,0.929939,0.153621,0.385683,0.735337,0.57876,0.155448,0.165524,0.38266,0.858734,0.0743772,0.75085,0.306691,0.790997,0.914607,0.359292,0.260649,0.571906,0.835974,0.766891,0.391649,0.0112317,0.661014,0.280482,0.0238729,0.1885,0.738685,0.595257,0.0072906,0.383627,0.847773,0.686812,0.341422,0.504107,0.738393,0.946514,0.908015,0.949166,0.207931,0.315224,0.97092,0.966661,0.454218,0.153014,0.396861,0.904152,0.689712,0.593459,0.298435,0.00208968,0.465572,0.390386,0.756931,0.810886,0.386797,0.502563,0.803655,0.791108,0.60591,0.704028,0.380843,0.0138105,0.184576,0.695417,0.227859,0.856008,0.71334,0.0910633,0.0157731,0.831661,0.34312,0.192866,0.688625,0.262611,0.3515,0.444256,0.900055,0.6187,0.479653,0.300157,0.376554,0.589207,0.578935,0.551548,|0.126059,0.195527,0.930296,0.0662274,0.0514419,0.805655,0.309155,0.0574814,0.97845,0.113403,0.75503,0.963609,0.632838,0.0606049,0.0616097,0.522855,0.218413,0.300627,0.0152645,0.971415,0.707478,0.604199,0.436013,0.246023,0.125948,0.864067,0.688292,0.506795,0.187441,0.305257,0.334293,0.90935,0.564777,0.342243,0.495251,0.154063,0.873805,0.290487,0.721525,0.211144,0.84058,0.192688,0.639714,0.402632,0.763612,0.593033,0.618773,0.270545,0.80221,0.311622,0.239927,0.138355,0.378957,0.163177,0.357319,0.919406,0.44339,0.229658,0.332393,0.91681,0.807047,0.16287,0.208369,0.863388,0.795231,0.99185,0.287818,0.378443,0.292949,0.209547,0.260503,0.32023,0.997151,0.859942,0.843393,0.537605,0.295451,0.395634,0.483031,0.914421,0.69291,0.736298,0.184015,0.93346,0.461009,0.435404,0.730138,0.0658678,0.25791,0.959888,0.297901,0.241021,0.0456553,0.127334,0.941658,0.635165,0.022418,0.593113,0.687079,0.0661959,0.476065,0.931755,0.730476,0.38022,0.661116,0.56664,0.406153,0.36286,0.243926,0.629654,0.644845,0.564204,0.618122,0.296277,0.694551,0.326096,0.043223,0.739443,0.303067,0.966901,0.742202,0.190306,0.739681,0.456124,0.77153,0.617493,0.256234,0.628993,0.0115798,0.269388,0.34244,0.155259,0.352099,0.644463,0.960058,0.728478,0.889388,0.398838,0.0791612,0.670891,0.62234,0.554862,0.846014,0.56742,0.671934,0.657617,0.932817,0.762288,0.772886,0.23928,0.412629,0.129551,0.137883,0.179435,0.840635,0.115035,0.767485,0.19543,0.338307,0.144393,0.355829,0.190124,0.217462,0.649268,0.833441,0.631321,0.939021,0.612943,0.39348,0.835547,0.416926,0.629241,0.0638666,0.125601,0.060663,0.331355,0.182697,0.221466,0.832574,0.938853,0.0788346,0.439459,0.115779,0.424167,0.597514,0.669149,0.325729,0.44079,0.965151,0.0107843,0.00996381,0.23903,0.913475,0.346357,0.590855,0.625337,0.53275,0.675379,0.497338,0.41572,0.63624,0.000727415,0.307667,0.52077,0.630054,0.983315,0.77347,0.912772,0.916469,0.53163,0.233194,0.349502,0.704274,0.127429,0.784691,0.549448,0.107948,0.0668138,0.317583,0.904957,0.971902,0.219112,0.992964,0.914732,0.735677,0.814896,0.777432,0.0501766,0.901502,0.761816,0.906153,0.800463,0.0756826,0.786088,0.551924,0.0136701,0.796989,0.98074,0.223733,0.256586,0.35825,0.516148,0.295181,0.746264,0.703994,0.209857,0.466558,0.92793,0.497924,0.087796,0.590359,0.428038,0.0765496,0.619841,0.285939,0.432313,0.630688,0.276171,0.0182975,0.977347,0.444437,0.770014,0.608575,0.325476,0.305807,0.318825,0.273094,0.292222,0.282126,0.104477,0.557555,0.701765,0.0578718,0.328974,0.333652,0.933335,0.827567,0.884945,0.67041,0.250579,0.719951,0.21442,0.440421,0.500254,0.972747,0.253922,0.85489,0.441038,0.577837,0.711763,0.235851,0.717643,0.686052,0.653791,0.607391,0.265965,0.654615,0.247569,0.13177,0.283962,0.570244,0.971001,0.514724,0.339296,0.69182,0.656326,0.202125,0.818378,0.848321,0.1683,0.938258,0.196872,0.977678,0.53129,0.264422,0.472303,0.361611,0.0104226,0.370702,0.942408,0.516223,0.122229,0.840638,0.0516225,0.697342,0.455048,0.788265,0.123975,0.0935072,0.047316,0.424127,0.410697,0.151637,0.53362,0.705433,0.289791,0.0250148,0.21714,0.0431132,0.079805,0.196184,0.692804,0.364802,0.173277,0.926771,0.775699,0.578038,0.313663,0.916509,0.728185,0.100174,0.253661,0.736199,0.163402,0.802574,0.511953,0.253882,0.173082,0.245171,0.887237,0.221062,0.440168,0.398793,0.676713,0.541813,0.897057,0.587193,0.0990071,0.637298,0.736147,0.432751,0.909485,0.569878,0.631112,0.453105,0.330988,0.980359,0.951557,0.974157,0.724951,0.605356,0.578746,0.459902,0.0803427,0.263648,0.761386,0.743666,0.145711,0.111253,0.364441,0.292714,0.723338,0.596484,0.65095,0.619495,0.956153,0.611746,0.709444,0.638403,0.77406,0.502828,0.306089,0.0976874,0.85822,0.198296,0.927433,0.75486,0.121398,0.506379,0.228173,0.509125,0.514329,0.512866,0.601017,0.335171,0.715301,0.263117,0.832719,0.377677,0.58905,0.0634313,0.375338,0.255442,0.107027,0.136675,0.54329,0.176112,0.0168241,0.10927,0.693979,0.677806,0.578932,0.495928,0.597917,0.178244,0.704803,0.717624,0.865685,0.955287,0.159384,0.561829,0.890563,0.438146,0.457874,0.068691,0.948377,0.595159,0.072767,0.0150036,0.76266,0.493653,0.841256,0.248345,0.109372,0.883851,0.154015,0.839295,0.247943,0.318233,0.951546,0.797533,0.302138,0.933807,0.273242,0.182783,0.158231,0.103096,0.541627,0.0856514,0.830446,0.722386,0.367639,0.580307,0.740554,0.328825,0.0108169,0.6448,0.659044,0.00795829,0.215639,0.0858825,0.268746,0.357751,0.653208,0.742911,0.528138,0.733772,0.433696,0.352393,0.965102,0.467613,0.043375,0.680366,0.621417,0.0904544,0.0313529,0.948648,0.62512,0.310239,0.172406,0.0279095,0.516573,0.667769,0.306093,0.990845,0.0201411,0.252476,0.0918115,0.563196,0.284756,0.670447,0.931323,0.634621,0.0218967,0.742437,0.286099,0.726871,0.666912,0.0614461,0.105792,0.558778,0.573351,0.496341,0.506846,0.421212,0.276601,0.627263,0.723594,0.963308,0.399153,0.179268,0.755565,0.455018,0.666973,0.504866,0.0490782,0.232189,0.974775,0.96315,0.413665,0.17095,0.0872551,0.202994,0.673263,0.00442439,0.473952,0.501489,0.123523,0.163972,0.810368,0.890334,0.664189,0.163132,0.329824,0.935794,0.149447,0.351655,0.557404,0.53651,0.0953466,0.920496,0.139646,0.275133,0.120535,0.725028,0.74152,0.985537,0.552206,0.935453,0.559007,0.181758,0.363248,0.829315,0.796524,0.191811,0.0492631,0.373113,0.33595,0.642624,0.262913,0.17732,0.379178,0.638714,0.567736,0.317944,0.678747,0.252396,0.648903,0.319879,0.359495,0.658178,0.925321,0.347081,0.905254,0.823753,0.760017,0.12506,0.0927454,0.845911,0.884724,0.571897,0.598988,0.974595,0.551196,0.313973,0.296608,0.256876,0.10144,0.590981,0.200305,0.326881,0.64623,0.346058,0.177769,0.949804,0.432282,0.682463,0.622078,0.0530605,0.0696995,0.0256857,0.888659,0.544086,0.500591,0.396867,0.385452,0.465784,0.948289,0.555348,0.922172,0.884779,0.486354,0.254381,0.0536319,0.909896,0.880056,0.8617,0.238063,0.158807,0.48015,0.419608,0.580544,0.462828,0.510125,0.0666438,0.845033,0.209331,0.819812,0.523801,0.973164,0.869397,0.97716,0.697566,0.0981153,0.506305,0.0934346,0.957246,0.262112,0.384486,0.308451,0.843005,0.700935,0.0800181,0.287051,0.873777,0.234809,0.577341,0.381256,0.244807,0.287532,0.887984,0.975717,0.488806,0.67813,0.0864239,0.952745,0.385736,0.252421,0.545616,0.390603,0.288412,0.337215,0.29926,0.681165,0.699489,0.358298,0.855981,0.694868,0.235991,0.434909,0.0149786,0.426217,0.944273,0.94319,0.564042,0.73304,0.557938,0.85274,0.218443,0.670096,0.397636,0.504978,0.904819,0.0639938,0.90816,0.296756,0.73164,0.893475,0.721806,0.86108,0.276608,0.111136,0.567835,0.88636,0.0170748,0.232723,0.348683,0.102749,0.00565368,0.91488,0.758266,0.26397,0.288092,0.714616,0.506084,0.437526,0.907206,0.735295,0.111064,0.434983,0.367922,0.553787,0.253969,0.421523,0.821046,0.401776,0.319373,0.110206,0.764287,0.0841671,0.488289,0.673881,0.618205,0.37139,0.201264,0.636612,0.820743,0.993414,0.160304,0.0211301,0.634143,0.485781,0.720354,0.645275,0.0212428,0.911324,0.371432,0.642453,0.325364,0.993044,0.0225982,0.0605578,0.647803,0.698007,0.739504,0.027057,0.442414,0.841237,0.0902329,0.0920305,0.0311075,0.767417,0.133114,0.734071,0.553285,0.119066,0.123511,0.0545921,0.40063,0.126415,0.000991225,0.0917332,0.0370227,0.949597,0.934972,0.144311,0.219809,0.0482163,0.11712,0.0709116,0.772639,0.198123,0.209015,0.506808,0.920148,0.977029,0.716021,0.889964,0.537282,0.266403,0.858089,0.715336,0.511636,0.255767,0.807377,0.87858,0.194426,0.647205,0.663197,0.342809,0.911014,0.539607,0.982359,0.995966,0.966294,0.597027,0.205489,0.627365,0.634969,0.572447,0.20456,0.682192,0.326405,0.450474,0.620502,0.39406,0.126064,0.550592,0.314943,0.0725868,0.0405114,0.239227,0.459197,0.0544595,0.733313,0.378243,0.46372,0.245286,0.163222,0.562855,0.98659,0.152926,0.254892,0.67466,0.10852,0.695744,0.509954,0.063267,0.59054,0.126026,0.836325,0.756295,0.311062,0.534436,0.866258,0.739532,0.726602,0.753646,0.21598,0.0697019,0.840937,0.0362684,0.991086,0.411257,0.136756,0.452053,0.711007,0.619304,0.34291,0.383026,0.314545,0.18184,0.769287,0.895839,0.650783,0.480724,0.545639,0.952679,0.466936,0.726625,0.704722,0.566264,0.469653,0.845366,0.62585,0.833659,0.998705,0.270723,0.455782,0.813242,0.0110084,0.500223,0.703646,0.477717,0.774728,0.698868,0.454828,0.317312,0.641771,0.336024,0.454461,0.307018,0.24751,0.349813,0.0711926,0.960432,0.927359,0.242579,0.721984,0.985578,0.0364147,0.450816,0.817139,0.511854,0.560167,0.298393,0.326893,0.190475,0.824313,0.576976,0.582067,0.808704,0.724775,0.509769,0.835298,0.698151,0.878774,0.942801,0.817303,0.78056,0.683605,0.600494,0.347098,0.187097,0.688305,0.488642,0.179566,0.917837,0.660164,0.00862324,0.621328,0.918966,0.180833,0.481751,0.0221773,0.447489,0.0897235,0.781905,0.530217,0.764839,0.0553564,0.764559,0.872471,0.0564989,0.791538,0.907796,0.60389,0.19427,0.224933,0.635024,0.304133,0.404151,0.600374,0.16809,0.211785,0.336034,0.604981,0.193567,0.269196,0.520643,0.466617,0.388605,0.565103,0.027557,0.661896,0.506031,0.0928355,0.528814,0.959773,0.951548,0.983025,0.134739,0.233225,0.0735771,0.786955,0.0342505,0.0837866,0.0236362,0.186116,0.924232,0.832219,0.0241058,0.153417,0.271572,0.428079,0.562311,0.0215948,0.35582,0.830094,0.493278,|0.0414641,0.867466,0.964817,0.911788,0.00313115,0.235922,0.620165,0.845404,0.483415,0.540419,0.0964103,0.212466,0.909033,0.333132,0.925979,0.0343794,0.0925798,0.0459636,0.187135,0.179209,0.798363,0.159711,0.0945148,0.0041815,0.140935,0.302476,0.426448,0.69257,0.605044,0.10143,0.95108,0.923815,0.250815,0.355737,0.955142,0.406954,0.0932149,0.819803,0.399417,0.33094,0.532028,0.905169,0.454585,0.32306,0.211629,0.298307,0.6245,0.285459,0.625538,0.494509,0.888832,0.238521,0.790355,0.731235,0.626887,0.659902,0.912943,0.603438,0.890468,0.27414,0.912769,0.927953,0.31885,0.663438,0.016574,0.237484,0.0601832,0.876947,0.641772,0.476702,0.134564,0.014504,0.778457,0.522471,0.43459,0.785472,0.916933,0.626827,0.338303,0.656783,0.0738694,0.309171,0.411814,0.925907,0.325174,0.493763,0.290381,0.776072,0.685799,0.56192,0.981234,0.936594,0.696635,0.397321,0.43668,0.801967,0.561581,0.274395,0.0393936,0.398819,0.849448,0.233401,0.201314,0.320156,0.191665,0.854286,0.896682,0.572209,0.162767,0.5835,0.555118,0.213839,0.282977,0.033305,0.254264,0.234322,0.0930887,0.855738,0.511128,0.283239,0.332641,0.449813,0.80173,0.0774883,0.744526,0.729566,0.409083,0.238629,0.563863,0.502647,0.549794,0.90329,0.676108,0.450105,0.304938,0.2142,0.14538,0.134036,0.895602,0.708173,0.176824,0.0829774,0.0408408,0.0217693,0.750073,0.677583,0.715259,0.531018,0.853634,0.409021,0.199313,0.492224,0.508077,0.304566,0.217998,0.955508,0.413568,0.519453,0.916206,0.302616,0.299472,0.742325,0.0609123,0.207121,0.311007,0.582936,0.551694,0.0501963,0.176229,0.844992,0.864801,0.635213,0.00477505,0.369142,0.365531,0.952157,0.351195,0.901196,0.93725,0.606164,0.174431,0.00458658,0.875098,0.339246,0.432845,0.756377,0.130517,0.231782,0.634543,0.820209,0.741919,0.0963157,0.582524,0.596693,0.590319,0.354776,0.672201,0.968246,0.717246,0.94902,0.0433406,0.589304,0.54477,0.405227,0.888579,0.0718326,0.0938121,0.529191,0.87851,0.623549,0.0747669,0.728667,0.192483,0.9444,0.243812,0.668008,0.045543,0.34775,0.484161,0.706548,0.323271,0.731178,0.302137,0.376396,0.496901,0.612241,0.81537,0.394399,0.636021,0.890223,0.591728,0.376706,0.47962,0.742388,0.837834,0.348162,0.304624,0.853778,0.0772604,0.233842,0.547348,0.383878,0.457907,0.100387,0.708649,0.155332,0.594756,0.912357,0.830619,0.893243,0.435356,0.677091,0.165486,0.533866,0.58291,0.444694,0.614931,0.802962,0.917628,0.896215,0.168084,0.270334,0.680605,0.766833,0.783337,0.567204,0.685888,0.683839,0.264812,0.679974,0.172581,0.794117,0.964501,0.58733,0.718489,0.635687,0.131326,0.090524,0.60137,0.0303741,0.746131,0.695737,0.358395,0.0421295,0.247777,0.838259,0.956807,0.150638,0.588308,0.972486,0.345385,0.441679,0.451888,0.0565275,0.594556,0.349686,0.767277,0.177242,0.867703,0.97645,0.767676,0.321384,0.706488,0.299344,0.354835,0.536603,0.525783,0.225187,0.661059,0.405024,0.875297,0.272398,0.46423,0.945075,0.849846,0.800377,0.386286,0.242362,0.378347,0.863934,0.915921,0.777084,0.182447,0.342662,0.81595,0.655459,0.983887,0.588043,0.934666,0.702947,0.954633,0.0165163,0.88359,0.876828,0.165629,0.31064,0.898404,0.587316,0.453006,0.779054,0.437728,0.738303,0.0715899,0.348077,0.935756,0.349758,0.343087,0.83284,0.457482,0.949979,0.645997,0.737732,0.681814,0.309405,0.277119,0.472758,0.327629,0.478395,0.871678,0.26491,0.329206,0.606621,0.0955321,0.585778,0.925788,0.765947,0.937857,0.882359,0.427328,0.405203,0.101467,0.101177,0.825495,0.186371,0.854417,0.568729,0.573245,0.651518,0.7554,0.792858,0.54254,0.358213,0.178453,0.684145,0.945261,0.184502,0.276447,0.181309,0.809106,0.375514,0.628656,0.595155,0.39455,0.123763,0.0810131,0.975648,0.224316,0.953908,0.404432,0.823207,0.321958,0.927615,0.525733,0.530621,0.800982,0.506531,0.133769,0.528967,0.9123,0.175101,0.855942,0.49612,0.949899,0.953466,0.740752,0.819433,0.667645,0.0724223,0.316656,0.481672,0.337482,0.39098,0.578841,0.527455,0.455297,0.323719,0.654538,0.853847,0.194823,0.188782,0.650743,0.989969,0.775169,0.209874,0.385743,0.935079,0.847767,0.0767866,0.179863,0.212335,0.24986,0.616955,0.396301,0.461544,0.168814,0.618677,0.845923,0.373393,0.298383,0.615583,0.764442,0.975502,0.8381,0.680991,0.45547,0.820481,0.0070824,0.150656,0.277145,0.45847,0.417636,0.521813,0.14866,0.43584,0.183235,0.760355,0.0362922,0.408809,0.100897,0.31056,0.351565,0.245181,0.63984,0.775823,0.957362,0.559688,0.569771,0.91139,0.924684,0.516451,0.310322,0.299747,0.898839,0.776482,0.914593,0.683457,0.383244,0.108997,0.153947,0.297629,0.643775,0.375483,0.52254,0.319112,0.591726,0.385453,0.395342,0.976232,0.110825,0.689474,0.476736,0.827814,0.821724,0.598767,0.51371,0.0270787,0.73539,0.0670502,0.906692,0.85516,0.346342,0.449941,0.901887,0.267189,0.772832,0.433254,0.234949,0.42463,0.79016,0.662262,0.587652,0.925272,0.630475,0.54361,0.913661,0.54695,0.851923,0.954705,0.763793,0.342421,0.671281,0.795031,0.466677,0.112164,0.53865,0.470295,0.57131,0.929968,0.824266,0.990223,0.541451,0.985381,0.943589,0.606663,0.485038,0.645589,0.878862,0.820521,0.988257,0.254193,0.693751,0.21492,0.553591,0.0268757,0.78301,0.778354,0.807219,0.332721,0.650042,0.644691,0.489786,0.303123,0.772045,0.999354,0.037675,0.779206,0.545804,0.0374681,0.530897,0.819991,0.375498,0.0450188,0.65343,0.615743,0.731886,0.59185,0.313681,0.868325,0.413727,0.932393,0.484908,0.680825,0.328736,0.449555,0.244733,0.620906,0.246872,0.00499797,0.323896,0.940546,0.806727,0.53277,0.513718,0.0140871,0.390922,0.604572,0.634905,0.742872,0.0702729,0.422579,0.0018602,0.594433,0.352957,0.544472,0.098596,0.910714,0.592305,0.509439,0.796341,0.902734,0.995996,0.589707,0.0116432,0.556417,0.672942,0.139239,0.762537,0.942215,0.704425,0.896909,0.3765,0.289024,0.0572174,0.833027,0.339662,0.78607,0.373703,0.93443,0.484038,0.347269,0.356118,0.871665,0.107169,0.869949,0.711817,0.0380981,0.326654,0.911721,0.899688,0.0975275,0.573994,0.975276,0.62288,0.577699,0.306108,0.0794736,0.00736648,0.314812,0.94458,0.305795,0.406861,0.430879,0.34343,0.351218,0.627875,0.290762,0.787652,0.512398,0.453579,0.686313,0.699218,0.487441,0.240158,0.021627,0.78866,0.634398,0.512275,0.275179,0.0562967,0.268911,0.46225,0.488116,0.649224,0.22959,0.17201,0.0454218,0.170381,0.888915,0.140162,0.444383,0.700876,0.366743,0.76466,0.639862,0.160684,0.824876,0.227806,0.16937,0.872072,0.640078,0.744407,0.723769,0.619001,0.531451,0.95584,0.571283,0.360376,0.458924,0.0429721,0.476482,0.91037,0.588458,0.186824,0.46717,0.689009,0.453927,0.3258,0.748325,0.258538,0.017985,0.940898,0.655825,0.63811,0.166767,0.460169,0.0883684,0.98747,0.189896,0.206634,0.302613,0.574835,0.670467,0.745579,0.624282,0.567562,0.262413,0.0350749,0.35304,0.856304,0.215484,0.585132,0.210252,0.579122,0.0691674,0.522608,0.0368955,0.593217,0.375963,0.919718,0.55477,0.487516,0.255236,0.708819,0.125965,0.318489,0.19338,0.304034,0.269744,0.506392,0.695817,0.130554,0.0302625,0.820714,0.302888,0.583027,0.757431,0.269887,0.58594,0.304579,0.756751,0.0519884,0.946597,0.36403,0.83606,0.134363,0.288392,0.849452,0.246085,0.802943,0.364432,0.51774,0.0331238,0.280226,0.592184,0.948502,0.319579,0.845707,0.945121,0.0945469,0.845565,0.731107,0.0568327,0.499147,0.591054,0.576395,0.165823,0.863451,0.661368,0.832493,0.930203,0.773771,0.0308622,0.0996004,0.351507,0.10245,0.120777,0.700237,0.528651,0.155438,0.27694,0.483499,0.408392,0.875666,0.653659,0.108777,0.235967,0.441488,0.594294,0.583085,0.405366,0.149407,0.0401259,0.791447,0.243144,0.997604,0.816775,0.28341,0.121709,0.94128,0.173249,0.973884,0.384451,0.0520906,0.124695,0.372382,0.404574,0.480577,0.571889,0.470873,0.48745,0.350847,0.766264,0.682539,0.742875,0.371518,0.0552917,0.234334,0.0325125,0.859888,0.758616,0.665213,0.175871,0.539859,0.708731,0.982728,0.85939,0.307925,0.211169,0.242416,0.664486,0.967202,0.0404967,0.325632,0.45058,0.139241,0.791324,0.228383,0.947917,0.956646,0.727397,0.597569,0.295657,0.210076,0.0303011,0.716937,0.882115,0.263374,0.680544,0.261117,0.925125,0.545959,0.559206,0.191377,0.226379,0.0854157,0.365901,0.29034,0.661154,0.124057,0.852948,0.854152,0.997279,0.183328,0.35902,0.366708,0.207758,0.788962,0.516822,0.0778376,0.901252,0.900838,0.612207,0.930979,0.452845,0.118056,0.919904,0.148758,0.613012,0.0127082,0.56417,0.208096,0.910246,0.162507,0.734252,0.984148,0.700511,0.274408,0.618009,0.118762,0.741382,0.975008,0.597997,0.582291,0.959592,0.607324,0.41248,0.139916,0.033555,0.159426,0.794109,0.505592,0.440108,0.671175,0.428537,0.0788409,0.181678,0.856945,0.747749,0.0245825,0.0386213,0.18857,0.679686,0.910075,0.530953,0.763777,0.232886,0.339233,0.621495,0.146877,0.690859,0.476759,0.942529,0.0422252,0.769215,0.783521,0.367249,0.620909,0.324633,0.155873,0.899538,0.92181,0.965287,0.978008,0.0771235,0.467783,0.612389,0.757113,0.922546,0.0448226,0.515044,0.32105,0.733322,0.221954,0.343279,0.610336,0.770003,0.550635,0.600926,0.932903,0.278896,0.408763,0.443444,0.0672492,0.691467,0.419891,0.040787,0.354899,0.198641,0.344922,0.615204,0.693675,0.66016,0.635085,0.525276,0.497664,0.972191,0.922172,0.275915,0.682125,0.675053,0.725489,0.922197,0.412707,0.897772,0.579294,0.867593,0.889218,0.390687,0.0672368,0.643327,|0.331327,0.80277,0.471562,0.945402,0.874684,0.841453,0.678096,0.803389,0.708556,0.678296,0.657435,0.604044,0.387775,0.187567,0.20806,0.617216,0.381922,0.107195,0.248452,0.541165,0.915956,0.407882,0.627079,0.266227,0.0245655,0.954493,0.846352,0.555533,0.711106,0.58857,0.930074,0.230034,0.233889,0.0883631,0.550129,0.744386,0.693849,0.726344,0.19176,0.831678,0.278654,0.27267,0.857681,0.0733876,0.551448,0.639029,0.846011,0.0151919,0.619701,0.915674,0.71704,0.874377,0.172517,0.0759469,0.361657,0.855136,0.0757931,0.431033,0.413913,0.325958,0.551964,0.90419,0.335794,0.775174,0.583354,0.282469,0.370548,0.764202,0.207393,0.640566,0.341813,0.610274,0.144,0.369893,0.460874,0.0346845,0.886368,0.865154,0.904402,0.866085,0.0252771,0.808747,0.881978,0.790873,0.890221,0.731186,0.936912,0.722363,0.62771,0.611197,0.488662,0.640685,0.190464,0.721182,0.290226,0.445484,0.400212,0.0677165,0.621596,0.434036,0.990995,0.234593,0.0118689,0.946102,0.336341,0.829767,0.960207,0.792553,0.790722,0.30494,0.257208,0.886294,0.433833,0.830528,0.381716,0.592673,0.684083,0.686385,0.08799,0.600765,0.0657287,0.212177,0.0583384,0.133879,0.0975947,0.673782,0.878331,0.123977,0.120693,0.369135,0.218613,0.529845,0.563724,0.595297,0.847065,0.960177,0.776763,0.395661,0.677551,0.112187,0.690874,0.733638,0.515329,0.357694,0.99157,0.604625,0.343777,0.720057,0.155057,0.912216,0.684825,0.948305,0.264451,0.341222,0.552891,0.902545,0.689845,0.327165,0.777445,0.769377,0.245392,0.204837,0.769118,0.957324,0.172178,0.999652,0.00508803,0.57889,0.899296,0.673484,0.905873,0.221563,0.641368,0.540305,0.754861,0.290645,0.46139,0.278102,0.563577,0.274148,0.625939,0.937037,0.853049,0.601267,0.885067,0.936742,0.736331,0.299993,0.000701487,0.64817,0.0451471,0.0333965,0.958161,0.865123,0.284319,0.853801,0.536211,0.845166,0.317036,0.336001,0.812842,0.488564,0.991411,0.784918,0.693829,0.568326,0.769471,0.31634,0.553679,0.028379,0.230032,0.447112,0.0382089,0.453104,0.718225,0.0267721,0.0867144,0.476415,0.854087,0.351909,0.592682,0.674707,0.476095,0.329733,0.613615,0.281666,0.664187,0.420818,0.399807,0.124989,0.563177,0.758045,0.935838,0.91829,0.657188,0.881826,0.724316,0.237627,0.857004,0.930951,0.454115,0.795577,0.91085,0.3757,0.253447,0.648338,0.608926,0.760862,0.704304,0.206458,0.558454,0.220289,0.725494,0.296781,0.966239,0.953223,0.371365,0.069369,0.541634,0.771431,0.983756,0.891502,0.153228,0.466323,0.959491,0.860101,0.264879,0.256138,0.314706,0.476181,0.360567,0.59724,0.513323,0.692541,0.0140432,0.330572,0.939659,0.893725,0.784944,0.79098,0.294822,0.882015,0.916641,0.584327,0.0455676,0.194039,0.679324,0.684203,0.604486,0.809114,0.448042,0.724754,0.504788,0.779872,0.409174,0.216076,0.155414,0.770259,0.824549,0.507731,0.653335,0.157684,0.364292,0.319042,0.0526908,0.406169,0.713087,0.458854,0.301401,0.586044,0.204199,0.706341,0.818997,0.0490221,0.736604,0.882366,0.484805,0.816357,0.024673,0.223876,0.420066,0.588483,0.746352,0.762508,0.562309,0.315973,0.603432,0.581267,0.498248,0.675696,0.434769,0.183194,0.414598,0.0474809,0.838646,0.996714,0.282488,0.907609,0.381698,0.653532,0.661167,0.360204,0.527492,0.588829,0.514328,0.433765,0.0870548,0.793373,0.889455,0.999406,0.731414,0.459762,0.708598,0.881995,0.759834,0.548586,0.309065,0.804328,0.466123,0.82268,0.826732,0.876776,0.479664,0.753566,0.979425,0.697735,0.174437,0.445046,0.177803,0.846685,0.447382,0.506937,0.353826,0.91747,0.232896,0.569507,0.727794,0.098177,0.69005,0.209372,0.428978,0.233808,0.509095,0.983664,0.675226,0.769845,0.991272,0.964755,0.604713,0.555905,0.329662,0.31415,0.184425,0.412511,0.202426,0.0904265,0.0229797,0.973579,0.962981,0.221503,0.214514,0.0061115,0.30858,0.750644,0.920238,0.247874,0.66556,0.152163,0.484215,0.92192,0.703034,0.444879,0.0904995,0.0970591,0.951957,0.222985,0.736375,0.130939,0.184816,0.34244,0.146069,0.548649,0.28271,0.0456644,0.468153,0.711004,0.846244,0.0523943,0.455031,0.157342,0.870739,0.627435,0.19125,0.794908,0.282346,0.92695,0.388526,0.597942,0.272723,0.209572,0.788088,0.858949,0.990475,0.917644,0.580587,0.485909,0.00620359,0.388688,0.518264,0.036946,0.0852352,0.201323,0.812633,0.20154,0.723273,0.0476658,0.754223,0.558895,0.494613,0.75289,0.720409,0.181681,0.406432,0.0826598,0.680421,0.493072,0.815407,0.474739,0.567988,0.416878,0.860474,0.153281,0.565994,0.627472,0.0598524,0.513267,0.556165,0.7334,0.28071,0.735008,0.462961,0.653825,0.327103,0.443216,0.964109,0.904484,0.483174,0.400519,0.265344,0.700701,0.052345,0.454511,0.073589,0.928864,0.72398,0.138196,0.0132959,0.0472783,0.916725,0.436212,0.644354,0.063581,0.549301,0.729385,0.61856,0.453589,0.303405,0.994269,0.983475,0.393531,0.297187,0.31556,0.451527,0.546946,0.365854,0.519085,0.00499398,0.198295,0.0876194,0.157941,0.555771,0.361628,0.219387,0.323418,0.985518,0.495166,0.532527,0.210594,0.541029,0.665707,0.876868,0.725812,0.631349,0.124931,0.112396,0.123646,0.427963,0.910349,0.995581,0.943866,0.28484,0.30915,0.48865,0.269356,0.219307,0.637671,0.57617,0.673691,0.368472,0.14789,0.47017,0.290175,0.685206,0.318923,0.0407814,0.242503,0.0138802,0.503304,0.411493,0.147153,0.772429,0.997351,0.401064,0.284213,0.00757366,0.049249,0.391194,0.613429,0.877845,0.711881,0.0984843,0.739881,0.0696329,0.306405,0.186131,0.753481,0.407318,0.448202,0.840181,0.957035,0.237409,0.504861,0.872037,0.22309,0.311871,0.792351,0.267291,0.932464,0.0396169,0.548828,0.942144,0.527244,0.832332,0.488844,0.973049,0.195143,0.79927,0.530083,0.763915,0.666356,0.747966,0.207991,0.643448,0.972165,0.369971,0.94298,0.876131,0.127538,0.137923,0.231953,0.618489,0.596481,0.152326,0.934798,0.131681,0.206918,0.690354,0.382198,0.367162,0.67802,0.666537,0.228586,0.821662,0.906079,0.282336,0.123357,0.0997763,0.479267,0.259435,0.131625,0.0229968,0.351667,0.854578,0.534138,0.816374,0.845192,0.381002,0.723633,0.527858,0.836168,0.694756,0.766828,0.303093,0.8814,0.0720234,0.471372,0.803003,0.121862,0.910757,0.262,0.599385,0.369784,0.984082,0.967544,0.571225,0.492553,0.364495,0.430762,0.219025,0.246801,0.670014,0.460028,0.490119,0.703866,0.704232,0.522786,0.217825,0.0184683,0.289944,0.719432,0.172078,0.870123,0.353412,0.825552,0.117119,0.579843,0.0861954,0.601957,0.218859,0.609687,0.759153,0.628872,0.233737,0.428159,0.194966,0.560107,0.834712,0.971587,0.182356,0.218563,0.619726,0.676134,0.887153,0.833207,0.84208,0.0577478,0.750167,0.687328,0.545484,0.8038,0.110679,0.578428,0.710811,0.453114,0.695065,0.63645,0.234675,0.299683,0.681141,0.351329,0.8612,0.420357,0.340439,0.57362,0.575779,0.501869,0.204368,0.205824,0.483983,0.27233,0.566635,0.919299,0.438448,0.147684,0.9911,0.555594,0.45692,0.219645,0.937427,0.807659,0.502375,0.228242,0.930207,0.686156,0.416135,0.394471,0.35944,0.458802,0.981648,0.0330448,0.0220819,0.134644,0.304949,0.6313,0.0914397,0.781375,0.0322878,0.917618,0.384047,0.900729,0.148204,0.774202,0.337627,0.0963224,0.509947,0.0408058,0.0699844,0.0658494,0.0592313,0.314496,0.852137,0.975352,0.226197,0.857932,0.881417,0.0895281,0.640325,0.910768,0.552552,0.682405,0.953966,0.449817,0.956926,0.487894,0.738769,0.0360402,0.506859,0.771522,0.874184,0.726479,0.120433,0.102251,0.967043,0.863811,0.205891,0.643742,0.192209,0.369149,0.430865,0.603238,0.135569,0.10221,0.561252,0.884746,0.0145974,0.888635,0.429083,0.517904,0.730244,0.790565,0.600668,0.903635,0.98873,0.299548,0.820625,0.972102,0.833036,0.292615,0.202442,0.30741,0.173238,0.797697,0.388955,0.28734,0.640346,0.656079,0.129354,0.772703,0.931292,0.127478,0.974099,0.0128044,0.986862,0.621386,0.517426,0.859535,0.532228,0.126479,0.109565,0.548069,0.825496,0.69146,0.325196,0.212533,0.270725,0.168133,0.385864,0.672163,0.711209,0.963487,0.845442,0.971394,0.884026,0.105834,0.524892,0.490652,0.220898,0.43611,0.194278,0.0594268,0.85839,0.500687,0.630853,0.0308884,0.177221,0.718544,0.101528,0.60272,0.137894,0.798548,0.366441,0.78423,0.201483,0.218628,0.688695,0.796578,0.406295,0.445649,0.107238,0.290223,0.494331,0.419137,0.0562985,0.271702,0.792645,0.177381,0.03576,0.28596,0.587234,0.264187,0.610561,0.819368,0.67127,0.220691,0.970999,0.0851833,0.995485,0.770529,0.471001,0.196624,0.558691,0.0957058,0.732492,0.505499,0.501193,0.324027,0.326126,0.0727279,0.435123,0.24612,0.439502,0.545793,0.202561,0.181336,0.476796,0.232639,0.733544,0.993354,0.800576,0.633415,0.103379,0.814601,0.347547,0.851031,0.755764,0.57336,0.716051,0.733209,0.130414,0.0763562,0.0212234,0.218548,0.519883,0.986792,0.436411,0.742418,0.303281,0.795871,0.764056,0.139067,0.480968,0.759034,0.967907,0.875005,0.281942,0.576755,0.434488,0.453873,0.58618,0.322834,0.424022,0.100705,0.184206,0.380228,0.219076,0.243596,0.158378,0.514056,0.219313,0.122803,0.549908,0.291433,0.876497,0.305181,0.00417918,0.676275,0.429086,0.469569,0.321272,0.859693,0.181097,0.313566,0.294285,0.145581,0.197511,0.660962,0.930377,0.330213,0.894393,0.304523,0.370612,0.219175,0.738646,0.372543,0.932679,0.463046,0.0864151,0.846776,0.495372,0.134648,0.586017,0.0887101,0.301872,0.311617,0.893039,0.656379,0.391482,0.269998,0.138667,0.282598,0.582908,0.4071,0.810221,0.802574,0.455518,0.598066,0.508028,0.0500283,0.86791,0.785611,|0.474051,0.959771,0.210238,0.875189,0.33698,0.195456,0.201422,0.743467,0.694553,0.224445,0.916902,0.404836,0.405065,0.0909902,0.897074,0.999936,0.661736,0.287524,0.273177,0.621187,0.47319,0.179479,0.391405,0.431352,0.580577,0.248193,0.872647,0.611403,0.980499,0.91083,0.00391698,0.286441,0.71656,0.328541,0.213742,0.439767,0.757396,0.153804,0.0265007,0.687417,0.878077,0.0997165,0.254754,0.257903,0.630714,0.849461,0.814513,0.259928,0.626204,0.386367,0.344213,0.673243,0.785297,0.414557,0.928383,0.792099,0.551254,0.945817,0.140305,0.0979838,0.47186,0.139936,0.876616,0.148111,0.918427,0.815095,0.718282,0.871232,0.25838,0.26627,0.000606239,0.647171,0.597442,0.996197,0.191889,0.697605,0.399007,0.516524,0.245357,0.311526,0.288259,0.938505,0.924358,0.2304,0.298344,0.526625,0.813363,0.330303,0.0831265,0.00648993,0.762704,0.0710983,0.68105,0.463793,0.551374,0.604703,0.604786,0.978513,0.437843,0.962057,0.00293052,0.55928,0.144158,0.547108,0.597896,0.402052,0.0269265,0.160235,0.306176,0.942585,0.42771,0.960406,0.573378,0.621249,0.826615,0.966913,0.447443,0.142144,0.480228,0.636696,0.395409,0.865233,0.891104,0.599858,0.769156,0.998843,0.927067,0.510627,0.920017,0.478093,0.898438,0.0753957,0.642211,0.891993,0.283886,0.918609,0.371172,0.10149,0.77428,0.143687,0.550251,0.328085,0.288517,0.25126,0.72718,0.513824,0.496217,0.495939,0.717872,0.185915,0.998319,0.0128356,0.929084,0.210103,0.612734,0.867936,0.805505,0.623147,0.0957323,0.0113144,0.771282,0.255556,0.835174,0.333268,0.280881,0.641854,0.844803,0.592177,0.810033,0.976488,0.783809,0.149996,0.38912,0.117907,0.661529,0.810328,0.793485,0.059577,0.38968,0.659988,0.752549,0.340976,0.66662,0.72781,0.713674,0.579519,0.678813,0.657388,0.690966,0.888367,0.312914,0.36707,0.947505,0.959121,0.773266,0.323843,0.11287,0.3191,0.82844,0.405683,0.46699,0.931639,0.408021,0.306479,0.289824,0.00157505,0.806475,0.945887,0.636272,0.997506,0.0480554,0.62401,0.637373,0.119059,0.826285,0.170793,0.8181,0.684052,0.456388,0.140027,0.342258,0.272576,0.118421,0.591463,0.481489,0.438977,0.549889,0.45496,0.826396,0.812037,0.354896,0.519702,0.699596,0.642886,0.649536,0.0104629,0.478417,0.803516,0.979662,0.595725,0.812766,0.191838,0.238546,0.551851,0.447513,0.0759813,0.977126,0.544479,0.961295,0.107978,0.473535,0.0281735,0.849613,0.580478,0.482748,0.00675386,0.402935,0.786805,0.326666,0.79086,0.644746,0.5867,0.684729,0.701622,0.749141,0.403811,0.721924,0.799372,0.391658,0.069712,0.268018,0.954194,0.745225,0.999977,0.887024,0.611846,0.346441,0.913439,0.702249,0.809501,0.569011,0.377038,0.218582,0.131585,0.897388,0.197449,0.626638,0.870104,0.687283,0.692413,0.181713,0.784723,0.651644,0.874498,0.188627,0.826535,0.0456353,0.581148,0.127264,0.659025,0.441034,0.0986965,0.43413,0.848236,0.256082,0.422432,0.126091,0.986072,0.424935,0.46574,0.0990557,0.0404761,0.859627,0.243956,0.20229,0.995661,0.6979,0.874254,0.220185,0.667833,0.0816665,0.263684,0.928188,0.551099,0.260349,0.43561,0.99739,0.616159,0.693927,0.330517,0.155664,0.877862,0.34893,0.462147,0.124405,0.986158,0.9743,0.15386,0.487722,0.342489,0.568245,0.492966,0.496553,0.709014,0.201717,0.494246,0.833718,0.733769,0.00470591,0.80647,0.891357,0.679612,0.313867,0.45858,0.0745389,0.648642,0.842925,0.873052,0.852912,0.71725,0.501422,0.572153,0.702957,0.827905,0.632366,0.92146,0.668861,0.933441,0.109891,0.379087,0.528948,0.913778,0.905842,0.970173,0.78739,0.0465235,0.710972,0.460858,0.941293,0.581769,0.485662,0.53306,0.900118,0.297438,0.948198,0.719915,0.161123,0.132376,0.776431,0.992913,0.211682,0.273659,0.233192,0.550311,0.108822,0.27821,0.682989,0.210031,0.549818,0.569183,0.993112,0.66525,0.938854,0.417804,0.315255,0.987426,0.855467,0.474517,0.876682,0.373923,0.373986,0.171378,0.954925,0.184319,0.990634,0.619395,0.607324,0.0884203,0.221545,0.526072,0.465091,0.660723,0.163431,0.330441,0.325105,0.370451,0.910053,0.576981,0.391693,0.804875,0.232678,0.209166,0.895019,0.596019,0.087088,0.318343,0.361285,0.63277,0.710356,0.747363,0.318631,0.447118,0.151505,0.0258101,0.97853,0.329887,0.423181,0.993834,0.924171,0.102963,0.625993,0.2021,0.357048,0.0779042,0.242112,0.12891,0.654887,0.329803,0.507724,0.307942,0.834504,0.849562,0.635769,0.81213,0.509682,0.92741,0.344035,0.215933,0.854636,0.592359,0.81332,0.844856,0.787465,0.954135,0.0378969,0.457136,0.577494,0.677768,0.16897,0.495135,0.624775,0.833694,0.632184,0.916031,0.714971,0.452106,0.0274994,0.170036,0.116872,0.0113685,0.828133,0.86249,0.0960097,0.0979348,0.771093,0.157361,0.130384,0.917123,0.933945,0.425963,0.720244,0.0145563,0.167173,0.25414,0.461422,0.96402,0.137065,0.939529,0.517856,0.448835,0.711177,0.843041,0.743998,0.351383,0.822264,0.250414,0.847167,0.43602,0.73988,0.624957,0.0968937,0.153201,0.755245,0.588464,0.627608,0.0969383,0.40832,0.422424,0.378107,0.821047,0.49169,0.409362,0.350526,0.187507,0.596556,0.443699,0.377868,0.662444,0.417092,0.754351,0.0255996,0.145645,0.557987,0.00882173,0.733707,0.128035,0.75126,0.400809,0.152694,0.672367,0.961933,0.615595,0.791448,0.898662,0.916238,0.684771,0.71997,0.63352,0.657875,0.212649,0.767126,0.371945,0.397076,0.64497,0.840695,0.00336307,0.992376,0.33784,0.685798,0.212368,0.0171163,0.642907,0.903659,0.396942,0.910702,0.513065,0.324505,0.997073,0.952729,0.526384,0.706439,0.348325,0.0424006,0.371309,0.9753,0.230613,0.14165,0.123563,0.805979,0.858799,0.464668,0.185623,0.0380787,0.0706125,0.116541,0.470385,0.548724,0.901142,0.0960774,0.063729,0.53705,0.260473,0.249637,0.251344,0.345892,0.495298,0.674751,0.615206,0.288609,0.540247,0.17557,0.263482,0.254643,0.650392,0.436903,0.115566,0.388769,0.218668,0.295639,0.0683684,0.255113,0.264926,0.200499,0.286574,0.0871546,0.252446,0.199997,0.74596,0.478315,0.595207,0.662555,0.169395,0.583042,0.174839,0.181229,0.976471,0.167968,0.998823,0.720081,0.791842,0.893342,0.116305,0.413352,0.679522,0.903706,0.144442,0.922893,0.714406,0.899692,0.853634,0.413432,0.164988,0.301004,0.792031,0.22602,0.962125,0.974543,0.345202,0.981771,0.674154,0.016385,0.166157,0.0763896,0.353369,0.24781,0.795882,0.435485,0.559501,0.958336,0.132597,0.817797,0.833438,0.845929,0.589302,0.719364,0.869699,0.8214,0.242916,0.309896,0.0899441,0.0549899,0.537507,0.234352,0.790076,0.770322,0.661512,0.356888,0.70431,0.853465,0.926743,0.458629,0.102817,0.353495,0.57795,0.549835,0.635498,0.662562,0.555207,0.50048,0.15547,0.941353,0.27088,0.719908,0.712876,0.847601,0.694188,0.24806,0.481386,0.287958,0.922541,0.243564,0.598318,0.565031,0.880019,0.100642,0.130959,0.46326,0.78926,0.633923,0.684789,0.0468916,0.17093,0.926587,0.344345,0.465072,0.390199,0.847943,0.361972,0.754521,0.226241,0.951063,0.435412,0.232928,0.59651,0.723757,0.936557,0.947897,0.586257,0.451563,0.478291,0.74896,0.22941,0.780098,0.639065,0.100462,0.0805359,0.818839,0.0889115,0.609133,0.64943,0.799393,0.0523797,0.175582,0.731337,0.736502,0.254489,0.961973,0.0345904,0.142283,0.964067,0.812769,0.872634,0.287203,0.94287,0.0514013,0.230113,0.00466126,0.513047,0.631301,0.241623,0.595661,0.605177,0.270039,0.200595,0.324754,0.350785,0.264121,0.337855,0.041135,0.629297,0.57247,0.35199,0.673417,0.267846,0.296177,0.639391,0.440829,0.935666,0.506594,0.163482,0.492368,0.0324005,0.0550569,0.27179,0.0774179,0.0132239,0.624358,0.637855,0.105238,0.507464,0.694189,0.940336,0.87494,0.877544,0.675898,0.316214,0.635624,0.121304,0.829932,0.52076,0.657014,0.672687,0.46039,0.149238,0.75923,0.300676,0.939069,0.633315,0.807871,0.274577,0.78174,0.215173,0.972132,0.795263,0.72676,0.567587,0.626528,0.00833952,0.798935,0.337547,0.045262,0.660466,0.103477,0.0978805,0.474444,0.453245,0.699109,0.805843,0.659216,0.464151,0.419628,0.481004,0.562577,0.383542,0.427946,0.975979,0.668529,0.237141,0.97032,0.0113019,0.603465,0.401276,0.0434069,0.117586,0.668693,0.99187,0.138377,0.651675,0.899785,0.0150866,0.950288,0.193421,0.349851,0.774943,0.109789,0.139193,0.269365,0.43844,0.395372,0.463919,0.522926,0.190323,0.580595,0.412418,0.572471,0.345065,0.78594,0.477969,0.404708,0.35212,0.843831,0.319487,0.42223,0.660774,0.461871,0.574378,0.214493,0.230606,0.181034,0.441462,0.0316084,0.261377,0.355774,0.595339,0.0215231,0.170834,0.9759,0.650913,0.224764,0.912384,0.0492705,0.0709631,0.629144,0.279261,0.587856,0.203727,0.330261,0.587911,0.982185,0.249813,0.132788,0.417806,0.83801,0.237939,0.919165,0.789151,0.0899359,0.678313,0.404613,0.218902,0.0594357,0.936296,0.0794351,0.917209,0.934497,0.297992,0.189635,0.581803,0.803765,0.412252,0.0356485,0.21546,0.635447,0.0586312,0.18457,0.152416,0.669275,0.692723,0.274715,0.131388,0.600044,0.574715,0.773892,0.757769,0.39395,0.963663,0.927787,0.457092,0.0857933,0.110306,0.832172,0.696655,0.456558,0.887285,0.116836,0.897349,0.933318,0.803521,0.719777,0.287663,0.945235,0.506144,0.482968,0.147762,0.204186,0.674227,0.724501,0.883453,0.671204,0.910605,0.1816,0.519001,0.153434,0.64999,0.294883,0.457339,0.471113,0.286287,0.819793,0.58796,0.0926969,0.586788,0.0920649,0.258105,0.176711,0.230357,0.642184,0.466281,0.796473,0.643206,0.719757,0.409477,0.695424,0.740188,0.370864,0.231671,0.858488,0.803606,0.688019,0.570881,|0.987592,0.306106,0.932764,0.830891,0.2994,0.447725,0.439542,0.054373,0.427439,0.419781,0.118507,0.438032,0.574337,0.761218,0.695668,0.461086,0.72396,0.923393,0.83584,0.0366548,0.666941,0.365136,0.470337,0.658556,0.833832,0.185584,0.02713,0.224329,0.0680784,0.0937961,0.319022,0.830022,0.145827,0.489059,0.373391,0.977044,0.777806,0.924955,0.738062,0.138577,0.0272505,0.258465,0.146492,0.429329,0.467475,0.826541,0.954327,0.493575,0.927964,0.940047,0.981143,0.185199,0.337379,0.819924,0.359181,0.604514,0.762974,0.809054,0.702047,0.49558,0.0871775,0.80796,0.955793,0.66423,0.442019,0.585288,0.607666,0.541847,0.991042,0.758208,0.972119,0.536907,0.099983,0.452274,0.979442,0.225586,0.379488,0.722763,0.956388,0.923232,0.302362,0.643398,0.20983,0.487995,0.965113,0.946064,0.952559,0.178211,0.970424,0.0462458,0.7233,0.75918,0.350827,0.489017,0.552024,0.392009,0.7634,0.844123,0.881415,0.961103,0.161553,0.849584,0.885198,0.513725,0.961823,0.87489,0.226196,0.056132,0.356722,0.639901,0.935612,0.782183,0.694963,0.372883,0.363627,0.0835626,0.0278819,0.231167,0.593641,0.204576,0.358491,0.0202224,0.401543,0.166936,0.334298,0.581278,0.174774,0.775188,0.963479,0.478267,0.125325,0.287047,0.19481,0.0972004,0.422877,0.813288,0.452805,0.34407,0.328135,0.38183,0.251617,0.997322,0.164883,0.472786,0.70786,0.712553,0.269,0.621694,0.190493,0.305361,0.752029,0.355421,0.748708,0.176459,0.662873,0.303761,0.950656,0.577079,0.920327,0.199935,0.909361,0.0916638,0.966152,0.521225,0.870823,0.228534,0.570289,0.963757,0.283599,0.977656,0.820469,0.0285135,0.467488,0.461833,0.0566608,0.372572,0.912441,0.275469,0.346041,0.991999,0.330222,0.472612,0.391343,0.855573,0.852867,0.456081,0.819577,0.304609,0.714342,0.240042,0.880095,0.65768,0.991195,0.864907,0.0706393,0.964642,0.662463,0.706389,0.824321,0.987305,0.309863,0.78529,0.398476,0.137964,0.97006,0.974326,0.762211,0.0516207,0.470754,0.435518,0.984866,0.654195,0.874348,0.00635976,0.87556,0.417067,0.710544,0.680982,0.651046,0.322244,0.73681,0.267133,0.314126,0.629321,0.0223687,0.628728,0.0106235,0.791937,0.0460565,0.93038,0.357631,0.776783,0.2052,0.461348,0.361705,0.958314,0.356372,0.517759,0.185227,0.352339,0.469475,0.0240203,0.102207,0.490613,0.887823,0.413138,0.0738252,0.424726,0.368174,0.578124,0.626702,0.520602,0.559283,0.648813,0.849969,0.53069,0.767217,0.826135,0.0728784,0.000789762,0.43593,0.491251,0.488716,0.0665271,0.941798,0.154349,0.364898,0.388326,0.771233,0.652516,0.317765,0.851148,0.206608,0.912308,0.234457,0.544057,0.382368,0.890931,0.279404,0.233316,0.80461,0.890898,0.204149,0.662459,0.629277,0.251611,0.204531,0.561878,0.852911,0.904718,0.328899,0.0476552,0.473503,0.768718,0.785755,0.324622,0.522527,0.766576,0.229043,0.940432,0.256643,0.586117,0.157763,0.877312,0.580116,0.665331,0.953416,0.552383,0.450268,0.00102884,0.893636,0.39876,0.495846,0.815961,0.13803,0.559696,0.617818,0.756238,0.821351,0.144985,0.856611,0.245381,0.458582,0.496068,0.125922,0.382024,0.123368,0.312558,0.886854,0.797707,0.701627,0.890146,0.950877,0.727328,0.382354,0.846255,0.513018,0.907954,0.903958,0.0972731,0.969548,0.707785,0.609423,0.745997,0.895575,0.531233,0.0300969,0.618281,0.210559,0.697985,0.624413,0.609922,0.627176,0.60013,0.480147,0.7514,0.168448,0.78277,0.734365,0.506497,0.194234,0.229049,0.551552,0.740515,0.266139,0.223459,0.206559,0.169781,0.180721,0.355901,0.699881,0.783037,0.207402,0.270933,0.183231,0.552331,0.438599,0.0783488,0.614971,0.0556092,0.48904,0.446775,0.0474975,0.276963,0.269186,0.818575,0.189448,0.401296,0.289181,0.476163,0.486457,0.271379,0.674586,0.309221,0.00969654,0.738345,0.935665,0.558027,0.684127,0.645959,0.747766,0.480173,0.14485,0.231179,0.868688,0.77367,0.556669,0.185162,0.733387,0.157624,0.695882,0.212942,0.301369,0.653487,0.484619,0.62519,0.599341,0.582518,0.945925,0.32618,0.988623,0.636892,0.846612,0.635999,0.388818,0.650341,0.347634,0.743935,0.91228,0.651779,0.153265,0.171887,0.289623,0.0476751,0.676442,0.990472,0.769724,0.363237,0.214938,0.730344,0.475908,0.923803,0.151503,0.82167,0.55909,0.472118,0.688481,0.407289,0.767579,0.581068,0.742145,0.935393,0.094443,0.600585,0.907705,0.230077,0.599488,0.148174,0.829703,0.085631,0.502275,0.679962,0.941075,0.957103,0.341686,0.935396,0.193218,0.211411,0.714829,0.222178,0.741926,0.876289,0.742018,0.847773,0.188184,0.485009,0.336682,0.8105,0.379829,0.233494,0.354088,0.859394,0.166531,0.571738,0.235546,0.386835,0.935092,0.194653,0.110285,0.26994,0.939624,0.775482,0.308266,0.657085,0.295823,0.150683,0.810041,0.0425918,0.581656,0.867866,0.00817955,0.252461,0.348117,0.901623,0.322275,0.734832,0.523987,0.32716,0.936625,0.356178,0.387488,0.94807,0.0612453,0.906235,0.682404,0.923153,0.566741,0.707204,0.248132,0.937004,0.013765,0.35352,0.862665,0.226083,0.747976,0.237689,0.815228,0.408519,0.531329,0.378228,0.704201,0.110014,0.165669,0.778488,0.44715,0.763239,0.994715,0.694818,0.0519207,0.992081,0.62748,0.993419,0.789405,0.421216,0.0237496,0.448156,0.200377,0.743047,0.328928,0.0513997,0.127798,0.697673,0.710564,0.525263,0.447048,0.362486,0.599463,0.21335,0.30797,0.351674,0.140441,0.651386,0.681642,0.162389,0.156618,0.26085,0.518246,0.477258,0.667056,0.893455,0.52676,0.20179,0.0863525,0.821153,0.802958,0.99758,0.571545,0.0185256,0.89375,0.362192,0.893786,0.791363,0.182718,0.298381,0.758172,0.876841,0.182388,0.487091,0.414133,0.779764,0.874894,0.941692,0.77964,0.520953,0.239707,0.0132948,0.689849,0.544139,0.57656,0.755602,0.154323,0.339588,0.773371,0.840031,0.986394,0.442966,0.227545,0.596259,0.445163,0.823779,0.468597,0.382749,0.685692,0.284174,0.314764,0.819241,0.631415,0.169118,0.206144,0.770653,0.846956,0.74079,0.488956,0.885857,0.6099,0.88101,0.0324818,0.39497,0.607447,0.350665,0.763524,0.381075,0.439128,0.781776,0.363456,0.835351,0.0170422,0.931046,0.276864,0.159767,0.259679,0.968428,0.0150169,0.0103249,0.0285228,0.438224,0.116922,0.328642,0.363092,0.20538,0.448646,0.716183,0.16576,0.944806,0.812677,0.384098,0.5318,0.514355,0.941307,0.0608872,0.936126,0.464149,0.278486,0.926361,0.274643,0.970498,0.639553,0.372029,0.440613,0.385697,0.443684,0.268989,0.206627,0.561538,0.297234,0.629481,0.512184,0.128061,0.544987,0.154426,0.763383,0.825759,0.88428,0.164232,0.726013,0.557747,0.384469,0.667269,0.460839,0.360885,0.249767,0.154384,0.172978,0.776782,0.846637,0.976083,0.286404,0.427211,0.929657,0.148317,0.593367,0.0532548,0.203212,0.297725,0.974509,0.31719,0.418351,0.628026,0.288838,0.212063,0.756857,0.0254038,0.964067,0.294275,0.910906,0.866827,0.693842,0.704544,0.183262,0.734082,0.187712,0.902664,0.779238,0.475866,0.915358,0.0611555,0.153122,0.819584,0.257388,0.0470074,0.264388,0.75442,0.612915,0.509265,0.921979,0.62367,0.514845,0.166843,0.767492,0.221579,0.568763,0.788722,0.632921,0.872809,0.414295,0.733989,0.0831483,0.930226,0.847679,0.172534,0.663516,0.313689,0.381024,0.894309,0.151168,0.887479,0.227202,0.309128,0.682397,0.93841,0.0475863,0.389955,0.0145445,0.0221409,0.642888,0.637781,0.162169,0.49666,0.127339,0.376567,0.657364,0.903461,0.534393,0.119529,0.667151,0.401,0.132705,0.539429,0.168527,0.315198,0.0958623,0.469255,0.176396,0.443812,0.260073,0.489701,0.648146,0.105303,0.814079,0.736841,0.731196,0.39896,0.408572,0.552398,0.774225,0.675791,0.176399,0.595228,0.941699,0.632354,0.541814,0.728166,0.674923,0.106994,0.821727,0.330156,0.455671,0.769426,0.135518,0.595002,0.63934,0.901552,0.0574228,0.449577,0.657535,0.469953,0.477925,0.039122,0.451394,0.276133,0.253391,0.528528,0.872669,0.866809,0.453788,0.98695,0.452872,0.252245,0.234931,0.12704,0.145035,0.402179,0.667764,0.360935,0.0324284,0.960119,0.5614,0.53343,0.190614,0.0267933,0.391878,0.460543,0.742528,0.0386846,0.28517,0.655,0.920373,0.941303,0.545625,0.258633,0.707458,0.838806,0.0961868,0.672892,0.0222653,0.0778868,0.619354,0.482971,0.981744,0.996042,0.00389045,0.448827,0.269017,0.689984,0.775766,0.690969,0.624138,0.359542,0.0839049,0.643358,0.495996,0.58688,0.428457,0.376743,0.779886,0.991262,0.118859,0.845076,0.824097,0.228383,0.793246,0.344119,0.217401,0.199952,0.864709,0.657972,0.788647,0.339369,0.336844,0.149767,0.491047,0.383335,0.511629,0.002707,0.0764073,0.989284,0.0188664,0.0168358,0.803147,0.43681,0.252909,0.84927,0.646411,0.502997,0.975139,0.619461,0.856957,0.979098,0.446173,0.432916,0.157,0.376692,0.868658,0.244964,0.74504,0.983111,0.89026,0.278119,0.866583,0.359619,0.22684,0.370973,0.42915,0.337475,0.913841,0.483046,0.191526,0.798786,0.564126,0.321971,0.119907,0.539907,0.279773,0.0127789,0.7267,0.93025,0.520099,0.0707418,0.957034,0.530313,0.0741842,0.334981,0.623798,0.107463,0.0312811,0.813595,0.983632,0.155323,0.63457,0.310453,0.805997,0.820465,0.0367978,0.232648,0.949916,0.0726926,0.813242,0.526721,0.0224965,0.541501,0.852706,0.457903,0.992638,0.340635,0.299864,0.745322,0.0278116,0.864754,0.755836,0.85534,0.936453,0.258251,0.796562,0.529469,0.211664,0.630194,0.00911427,0.347304,0.201725,0.503711,0.613572,0.252407,0.13921,0.462688,0.750113,0.732309,0.709952,0.47097,0.13025,0.229317,0.151518,0.487055,0.643084,0.789092,0.376868,0.281753,0.558217,0.523393,0.802026,0.240589,|0.779567,0.713542,0.129164,0.286701,0.956515,0.724186,0.670284,0.512966,0.529722,0.709079,0.34464,0.0130515,0.157377,0.484378,0.568183,0.177906,0.447903,0.0600441,0.99673,0.533456,0.325197,0.11594,0.481297,0.443038,0.917124,0.924445,0.929279,0.516626,0.66939,0.926942,0.986478,0.791471,0.53152,0.356089,0.272714,0.0476335,0.313033,0.50194,0.800957,0.480999,0.233788,0.310352,0.691369,0.370198,0.359526,0.320405,0.857178,0.236979,0.165359,0.0273063,0.263975,0.752274,0.58961,0.125224,0.0410835,0.12875,0.379678,0.678955,0.601861,0.261467,0.610429,0.829086,0.910367,0.839181,0.191674,0.60857,0.995657,0.92472,0.680504,0.0782194,0.901019,0.119116,0.914262,0.986005,0.716394,0.247775,0.642803,0.718339,0.221786,0.29893,0.981831,0.839744,0.288081,0.68418,0.10987,0.354953,0.241102,0.815718,0.696177,0.712509,0.728146,0.227657,0.991233,0.998091,0.554802,0.619112,0.637966,0.812906,0.593184,0.212892,0.257312,0.414087,0.44886,0.31005,0.412897,0.705903,0.106928,0.545543,0.821489,0.0765831,0.0553461,0.747615,0.369289,0.626109,0.0340995,0.837168,0.40509,0.122564,0.685031,0.0489991,0.167218,0.170913,0.737825,0.031629,0.43403,0.369133,0.553503,0.666235,0.206357,0.686055,0.348516,0.969758,0.836288,0.449212,0.02741,0.667539,0.848928,0.456302,0.329223,0.526941,0.434492,0.422238,0.686802,0.585392,0.930264,0.964965,0.359757,0.0319673,0.158375,0.718473,0.00705636,0.58552,0.589749,0.397976,0.774491,0.316607,0.442669,0.398324,0.775145,0.349648,0.686451,0.17889,0.568986,0.168117,0.294655,0.150088,0.470336,0.466395,0.901333,0.999506,0.0307361,0.645221,0.521324,0.300874,0.61323,0.193138,0.91558,0.606933,0.0681828,0.26894,0.255091,0.0378764,0.877436,0.38371,0.910839,0.144814,0.0539142,0.544917,0.0548156,0.406991,0.306798,0.455002,0.601268,0.0107395,0.371212,0.553782,0.497289,0.783935,0.45286,0.509752,0.767289,0.923465,0.994318,0.8151,0.0213221,0.867239,0.566691,0.772878,0.0111415,0.342128,0.730031,0.599909,0.92388,0.642205,0.0100728,0.168278,0.343928,0.976779,0.0843351,0.00946671,0.729708,0.0696602,0.774862,0.949872,0.667731,0.61134,0.347062,0.891213,0.604837,0.206829,0.633349,0.394228,0.558765,0.489508,0.54797,0.734182,0.119444,0.267015,0.492332,0.199848,0.570579,0.588978,0.654818,0.801144,0.876358,0.758284,0.607042,0.788071,0.929488,0.289574,0.0552536,0.850322,0.771516,0.233247,0.376093,0.430217,0.504547,0.758694,0.699237,0.0735757,0.492949,0.136481,0.24888,0.81,0.215483,0.252609,0.235889,0.16803,0.0604884,0.988996,0.314227,0.420938,0.712232,0.787315,0.7597,0.578599,0.698941,0.831966,0.446688,0.0968735,0.624363,0.901371,0.812712,0.980018,0.569897,0.573964,0.162626,0.212842,0.986168,0.415882,0.490657,0.981765,0.486849,0.0743083,0.194274,0.388999,0.113788,0.601544,0.176006,0.301141,0.963007,0.43284,0.39208,0.650718,0.242475,0.685257,0.701267,0.570188,0.711288,0.560083,0.289001,0.672489,0.671446,0.426534,0.770147,0.589571,0.752195,0.976811,0.292521,0.704118,0.205877,0.866587,0.591552,0.119611,0.0579785,0.904237,0.0446102,0.768918,0.768315,0.831812,0.951789,0.0986933,0.753611,0.665002,0.102987,0.714816,0.555482,0.177933,0.30059,0.343298,0.488279,0.943418,0.133186,0.865588,0.0886918,0.804265,0.0195897,0.0850379,0.0190222,0.486575,0.268944,0.888865,0.811677,0.392549,0.716216,0.158013,0.878781,0.923863,0.667009,0.860311,0.592575,0.376979,0.415569,0.655296,0.940719,0.152986,0.813603,0.497516,0.197332,0.534124,0.254006,0.547281,0.48027,0.206074,0.426613,0.891857,0.567717,0.459664,0.518416,0.374034,0.479754,0.278158,0.509394,0.463683,0.803733,0.0145161,0.941098,0.0889483,0.548877,0.78416,0.0439072,0.998754,0.538394,0.257665,0.718502,0.976566,0.289132,0.869294,0.890469,0.695886,0.971734,0.114185,0.155787,0.292256,0.316427,0.141267,0.764154,0.781788,0.281314,0.406516,0.492598,0.374796,0.802081,0.594245,0.530935,0.900415,0.973653,0.0297517,0.99685,0.676266,0.231649,0.638597,0.340865,0.691425,0.812875,0.0577561,0.837416,0.935901,0.580981,0.740426,0.333069,0.812995,0.620856,0.237143,0.260292,0.648034,0.827936,0.15135,0.367634,0.366601,0.500684,0.436998,0.815452,0.351146,0.13544,0.395218,0.182551,0.151987,0.826451,0.576312,0.943025,0.366986,0.985722,0.898316,0.735164,0.453749,0.289664,0.389485,0.185994,0.660124,0.897441,0.62803,0.174539,0.746813,0.706765,0.64615,0.929839,0.804675,0.750539,0.0692324,0.125993,0.309625,0.775475,0.275984,0.354824,0.797731,0.772072,0.937698,0.169553,0.353402,0.045464,0.423956,0.86265,0.532342,0.489231,0.964597,0.445404,0.703198,0.403398,0.301504,0.708546,0.0722147,0.498769,0.366921,0.0428709,0.461845,0.934234,0.208708,0.00445169,0.0102214,0.948807,0.115346,0.191129,0.206492,0.406719,0.784096,0.069319,0.564229,0.195293,0.27324,0.409832,0.266424,0.575494,0.948336,0.251042,0.0229064,0.716137,0.408456,0.644993,0.79031,0.565376,0.0323855,0.191768,0.556458,0.346436,0.672654,0.252479,0.0815162,0.382514,0.560639,0.646846,0.0778913,0.159049,0.41623,0.905675,0.0645801,0.228156,0.930299,0.794053,0.417984,0.712751,0.155475,0.368963,0.560539,0.469148,0.994953,0.649178,0.342464,0.12302,0.336454,0.0495988,0.847675,0.396372,0.910682,0.206104,0.229543,0.790033,0.186089,0.750599,0.991667,0.763956,0.928703,0.159029,0.762206,0.198313,0.528033,0.0676688,0.48136,0.381291,0.584068,0.718927,0.318356,0.770033,0.875071,0.233974,0.298267,0.755218,0.0456238,0.302403,0.985048,0.262145,0.473957,0.100922,0.171464,0.63712,0.547109,0.00127679,0.280692,0.904037,0.844426,0.602489,0.496734,0.462233,0.578636,0.412019,0.556275,0.889957,0.277205,0.150257,0.0355082,0.414109,0.520135,0.803764,0.120656,0.605363,0.107089,0.00948828,0.012518,0.508381,0.746989,0.423733,0.289617,0.149034,0.978217,0.424165,0.770528,0.305567,0.188402,0.356785,0.617815,0.939507,0.500688,0.163514,0.54852,0.495547,0.686001,0.313442,0.92366,0.603311,0.0964267,0.86859,0.114908,0.234014,0.539551,0.436246,0.445098,0.158327,0.621173,0.0523462,0.106013,0.988107,0.106896,0.71201,0.33433,0.932764,0.293621,0.75113,0.293372,0.445521,0.0640749,0.692608,0.65571,0.179038,0.817441,0.0587434,0.532094,0.56606,0.739357,0.75508,0.575343,0.567887,0.0227341,0.401592,0.0696638,0.107279,0.646211,0.644319,0.557476,0.550704,0.300547,0.821636,0.441261,0.617889,0.396064,0.860677,0.968785,0.0566666,0.789414,0.536043,0.0842151,0.168858,0.934193,0.899994,0.567699,0.785698,0.113578,0.462015,0.219012,0.893784,0.0528347,0.393306,0.660339,0.253738,0.867536,0.701916,0.557866,0.111596,0.330687,0.572775,0.296391,0.630116,0.434024,0.26124,0.832041,0.737561,0.873589,0.468706,0.745086,0.613787,0.244436,0.46141,0.264035,0.362292,0.493432,0.479447,0.0510636,0.726808,0.879668,0.319442,0.000791788,0.528388,0.29893,0.0257024,0.102948,0.329079,0.220369,0.396047,0.616831,0.651956,0.500224,0.448276,0.755268,0.291584,0.892907,0.294041,0.0703367,0.25933,0.412344,0.127043,0.140305,0.103072,0.1565,0.308246,0.112138,0.227768,0.648847,0.424138,0.337826,0.537397,0.537263,0.315459,0.21453,0.0825267,0.559323,0.555951,0.284427,0.76312,0.593236,0.484138,0.60695,0.917961,0.0556071,0.837563,0.616214,0.170472,0.577037,0.21202,0.805253,0.367693,0.371648,0.192821,0.087595,0.387079,0.957524,0.776726,0.482189,0.958052,0.941023,0.0489507,0.216602,0.2402,0.684534,0.941686,0.904579,0.371162,0.554089,0.346588,0.489826,0.960671,0.852846,0.361681,0.236331,0.606516,0.825684,0.316643,0.231716,0.762297,0.735296,0.7159,0.263628,0.712438,0.81711,0.537298,0.838389,0.413194,0.199952,0.663951,0.142305,0.122712,0.51902,0.385938,0.9715,0.755605,0.675887,0.190951,0.131017,0.154161,0.049397,0.490155,0.131916,0.346774,0.481015,0.572264,0.939385,0.763891,0.676904,0.0675985,0.197069,0.977842,0.146227,0.076978,0.443977,0.702882,0.203893,0.411569,0.825749,0.309973,0.74632,0.252218,0.683112,0.056918,0.929283,0.953946,0.967298,0.0250108,0.474123,0.217579,0.946471,0.537994,0.893682,0.665802,0.156885,0.228563,0.977476,0.19604,0.666691,0.317974,0.776435,0.172676,0.311162,0.106346,0.947282,0.319205,0.869168,0.176306,0.0955941,0.755971,0.396803,0.110444,0.580108,0.189934,0.739081,0.626267,0.544132,0.839496,0.53367,0.233663,0.190148,0.0291018,0.209178,0.736367,0.63765,0.257479,0.605206,0.257923,0.564224,0.925917,0.315869,0.141415,0.0125796,0.548426,0.550386,0.0657415,0.442737,0.911411,0.117212,0.745605,0.770308,0.899944,0.819631,0.0592944,0.352447,0.695844,0.626995,0.0565612,0.00624192,0.785142,0.185113,0.356206,0.0391065,0.917466,0.847514,0.0514251,0.250085,0.0944029,0.112465,0.904883,0.817814,0.472924,0.482453,0.725913,0.125895,0.647666,0.0945491,0.0843012,0.589811,0.501758,0.561015,0.338126,0.645723,0.256056,0.265055,0.14221,0.10205,0.874033,0.59976,0.804509,0.61947,0.349783,0.424687,0.216371,0.433755,0.638029,0.0452778,0.939475,0.0724185,0.0985056,0.169594,0.352948,0.135931,0.826635,0.848018,0.26723,0.82975,0.190502,0.836688,0.333517,0.176976,0.162679,0.403513,0.741306,0.476477,0.0112431,0.724107,0.279785,0.40486,0.470121,0.968535,0.644616,0.775753,0.43425,0.866282,0.130837,0.247745,0.127365,0.653987,0.433696,0.449328,0.733154,0.280357,0.800997,0.935324,0.62071,0.74582,0.628067,0.496976,0.851684,0.408766,0.391641,0.615937,0.963817,0.374776,0.187946,0.965702,0.694095,0.75954,0.447915,0.579675,0.000844538,0.506541,|0.576603,0.77071,0.450195,0.689826,0.499355,0.66551,0.177517,0.620747,0.563949,0.0260788,0.791429,0.444283,0.83487,0.113302,0.947645,0.698669,0.650296,0.103764,0.0102185,0.779097,0.0546606,0.247766,0.217635,0.488908,0.54568,0.379551,0.686577,0.0235122,0.85969,0.162126,0.163516,0.176955,0.617777,0.783327,0.670093,0.486432,0.929714,0.773833,0.853462,0.866526,0.42237,0.329123,0.322175,0.974582,0.238315,0.926134,0.809244,0.184832,0.0489313,0.88741,0.227674,0.291281,0.0100998,0.589905,0.782089,0.183881,0.0565618,0.369796,0.0304979,0.509547,0.230105,0.435222,0.744798,0.224459,0.825841,0.197265,0.351384,0.490858,0.298409,0.60736,0.0439261,0.977673,0.154821,0.175344,0.476267,0.627738,0.584647,0.344105,0.955581,0.811919,0.612808,0.738151,0.614989,0.141146,0.40558,0.20626,0.179861,0.386923,0.411831,0.794375,0.618171,0.775594,0.974885,0.579563,0.990108,0.345185,0.0127518,0.907069,0.890466,0.688351,0.138983,0.688836,0.47891,0.449217,0.372019,0.184167,0.79159,0.984782,0.65034,0.208926,0.759752,0.414164,0.295557,0.851239,0.884147,0.574876,0.763964,0.358251,0.699943,0.0450801,0.534304,0.500137,0.326173,0.900156,0.4565,0.513305,0.585299,0.36416,0.344703,0.786211,0.987686,0.637091,0.103596,0.233291,0.0553234,0.798023,0.996049,0.553266,0.379935,0.821363,0.298926,0.281591,0.151231,0.814746,0.468118,0.94408,0.14352,0.672332,0.340632,0.631894,0.911143,0.54564,0.988352,0.867076,0.567535,0.270184,0.675958,0.888131,0.119733,0.746053,0.252799,0.616789,0.679429,0.791163,0.960825,0.00304627,0.0614417,0.540854,0.277203,0.855819,0.729667,0.679244,0.527335,0.830386,0.939897,0.188639,0.0984229,0.308873,0.465449,0.829822,0.591799,0.997544,0.282799,0.702046,0.708172,0.540082,0.331217,0.956523,0.948714,0.837928,0.125107,0.474574,0.258575,0.504832,0.00206095,0.0793881,0.685584,0.799976,0.811552,0.204015,0.608692,0.461492,0.644996,0.821974,0.942277,0.693418,0.475817,0.93941,0.849114,0.809395,0.767352,0.759895,0.71838,0.384844,0.589646,0.119335,0.279762,0.747604,0.865588,0.932412,0.601368,0.060974,0.931591,0.00997669,0.695017,0.106181,0.598137,0.59034,0.407154,0.970399,0.477785,0.0329471,0.42199,0.584996,0.663149,0.710399,0.561179,0.557834,0.676094,0.691404,0.77748,0.560609,0.324695,0.364609,0.564119,0.911963,0.667302,0.7621,0.573788,0.807495,0.706779,0.405535,0.844367,0.820537,0.687205,0.750228,0.422035,0.258392,0.00357068,0.658949,0.10633,0.226451,0.103838,0.949683,0.397256,0.803132,0.675296,0.139641,0.20102,0.815266,0.0204275,0.979658,0.492949,0.0521507,0.29298,0.124954,0.393534,0.0403134,0.984541,0.294333,0.817687,0.794581,0.882056,0.289224,0.659634,0.30097,0.355005,0.634896,0.60509,0.948601,0.789048,0.206714,0.905812,0.266186,0.871432,0.547681,0.986771,0.703677,0.734313,0.485929,0.869148,0.809222,0.598702,0.710877,0.099678,0.125881,0.75662,0.908977,0.226221,0.158504,0.433255,0.949501,0.866135,0.710428,0.0649059,0.208534,0.341196,0.644693,0.534209,0.257551,0.392765,0.896082,0.5956,0.676076,0.0786025,0.066134,0.850969,0.575678,0.559198,0.837132,0.729361,0.504699,0.524361,0.00622362,0.117255,0.0174326,0.971678,0.895965,0.685801,0.778069,0.208321,0.812346,0.210538,0.66184,0.473327,0.166681,0.552774,0.608104,0.0159808,0.204279,0.60977,0.580749,0.0517312,0.376069,0.466896,0.917032,0.156461,0.702319,0.454527,0.201618,0.305246,0.666297,0.90638,0.323748,0.913722,0.122389,0.501391,0.621463,0.236114,0.988774,0.318397,0.981879,0.898833,0.280864,0.00618398,0.321063,0.382349,0.834423,0.98172,0.747505,0.562179,0.60027,0.105718,0.830107,0.679087,0.921226,0.252119,0.923557,0.995354,0.475355,0.404678,0.0155568,0.153229,0.381547,0.540563,0.875641,0.803306,0.821028,0.780993,0.955199,0.627723,0.44426,0.688164,0.516122,0.339308,0.238665,0.29341,0.587621,0.00731725,0.157634,0.164619,0.419509,0.117609,0.433377,0.524296,0.584086,0.309043,0.745264,0.532475,0.01347,0.963365,0.188733,0.846394,0.4605,0.871158,0.415088,0.913687,0.324844,0.580344,0.269717,0.625388,0.558605,0.81356,0.128319,0.66337,0.280513,0.00415194,0.0906066,0.370576,0.204656,0.647944,0.422657,0.247253,0.683642,0.576551,0.744755,0.115935,0.961975,0.656533,0.461096,0.669642,0.350752,0.297246,0.70547,0.572631,0.516585,0.26829,0.356005,0.658274,0.398992,0.22221,0.0919121,0.599741,0.764524,0.257972,0.680532,0.426022,0.471312,0.256426,0.469735,0.37561,0.59681,0.279175,0.291466,0.365319,0.953872,0.402285,0.135347,0.961544,0.757508,0.310302,0.844085,0.217725,0.732445,0.897955,0.619525,0.931326,0.00857556,0.183007,0.646787,0.357192,0.752389,0.88344,0.762592,0.353854,0.895285,0.0533354,0.00256062,0.0147576,0.50582,0.647829,0.236604,0.0987518,0.975702,0.968768,0.873164,0.45339,0.0463974,0.811818,0.0256298,0.579089,0.265645,0.474154,0.499485,0.588423,0.287112,0.212797,0.284527,0.838131,0.97944,0.811676,0.993279,0.630554,0.375656,0.218103,0.229943,0.761781,0.145386,0.0116524,0.692299,0.919814,0.53766,0.111697,0.496386,0.633989,0.243043,0.534703,0.928367,0.353769,0.727796,0.212891,0.29299,0.769457,0.878246,0.454348,0.817839,0.323225,0.0838862,0.0367793,0.0781595,0.778133,0.272321,0.0114307,0.794064,0.972479,0.541381,0.537185,0.964059,0.856904,0.153717,0.489717,0.836219,0.492762,0.700358,0.805983,0.387684,0.598629,0.617441,0.556448,0.974988,0.223775,0.901965,0.737924,0.161558,0.59983,0.57965,0.92548,0.413796,0.662826,0.936271,0.494429,0.358778,0.727622,0.0425931,0.880606,0.828656,0.245048,0.0738837,0.330612,0.639791,0.819376,0.253767,0.232196,0.00943524,0.136598,0.801027,0.823094,0.866569,0.479447,0.304684,0.226216,0.276752,0.964499,0.704301,0.0280438,0.0824232,0.0897568,0.489719,0.997653,0.995266,0.15282,0.0546282,0.887623,0.34516,0.790474,0.898288,0.77057,0.499937,0.876722,0.991848,0.641701,0.380947,0.888117,0.861839,0.551474,0.683668,0.809413,0.765867,0.29837,0.888647,0.311142,0.340212,0.750039,0.162057,0.829958,0.427556,0.298224,0.429979,0.653304,0.899969,0.391069,0.757248,0.102248,0.612789,0.733842,0.248879,0.50322,0.444917,0.795677,0.700883,0.968395,0.173213,0.234275,0.172411,0.267535,0.397489,0.502714,0.292372,0.672945,0.872159,0.218526,0.146544,0.345727,0.594832,0.99985,0.468307,0.299988,0.267169,0.875452,0.505986,0.863822,0.0708719,0.210837,0.531384,0.810046,0.852787,0.410186,0.243528,0.707245,0.11913,0.347273,0.961453,0.955038,0.488521,0.344128,0.373554,0.895304,0.294381,0.180862,0.758752,0.746237,0.255642,0.253696,0.374782,0.605338,0.0966274,0.52543,0.880651,0.00336337,0.783941,0.110154,0.692444,0.887235,0.956818,0.75619,0.562842,0.860442,0.321975,0.260569,0.0670609,0.230537,0.262291,0.886161,0.479908,0.0928991,0.964457,0.823983,0.123619,0.73994,0.679104,0.789626,0.0127724,0.363833,0.853688,0.550237,0.737833,0.788148,0.466483,0.684394,0.406799,0.357931,0.0524997,0.29436,0.204524,0.100438,0.0317936,0.288905,0.21543,0.345078,0.664936,0.294881,0.393152,0.880629,0.772765,0.0436985,0.537897,0.897894,0.444934,0.25498,0.288721,0.813645,0.892358,0.0459844,0.146609,0.821426,0.410779,0.864073,0.0969833,0.986573,0.240551,0.000356019,0.89436,0.596489,0.0374974,0.166028,0.874448,0.234761,0.37976,0.291155,0.333837,0.00273067,0.493499,0.0195984,0.316603,0.481867,0.666284,0.398971,0.158978,0.071479,0.187907,0.498756,0.806302,0.94741,0.0720962,0.129618,0.639443,0.0162374,0.644616,0.252744,0.246566,0.560065,0.641976,0.12103,0.148081,0.7119,0.404057,0.886594,0.714168,0.933096,0.203961,0.608419,0.296066,0.769903,0.680077,0.959478,0.683817,0.916585,0.72976,0.302011,0.859756,0.585322,0.451489,0.0284396,0.651424,0.71985,0.588634,0.374548,0.946732,0.605397,0.588996,0.670906,0.626783,0.366491,0.146554,0.713054,0.292378,0.204342,0.207082,0.75504,0.554797,0.740417,0.435778,0.0573358,0.959882,0.215301,0.210998,0.110554,0.0741384,0.908193,0.63614,0.757759,0.492472,0.487981,0.946358,0.909131,0.115864,0.36732,0.26208,0.319326,0.867875,0.510166,0.126038,0.0846034,0.661251,0.109414,0.573316,0.8362,0.914928,0.541656,0.896293,0.029713,0.0901152,0.516708,0.149625,0.272329,0.919464,0.0130758,0.886734,0.941851,0.0814568,0.611643,0.212367,0.664704,0.710677,0.257298,0.579526,0.568301,0.143907,0.913333,0.226993,0.663336,0.162332,0.597434,0.812179,0.848023,0.325908,0.723875,0.288585,0.836066,0.707683,0.364376,0.142002,0.916271,0.924083,0.829794,0.175094,0.847096,0.484204,0.451812,0.986154,0.143893,0.786135,0.583086,0.105023,0.173961,0.50725,0.0219733,0.210923,0.48493,0.744568,0.766659,0.667688,0.650946,0.969377,0.389182,0.820064,0.324018,0.268327,0.6436,0.851519,0.925616,0.865434,0.95603,0.922773,0.485627,0.573762,0.804297,0.200413,0.961984,0.990083,0.926741,0.0575578,0.651861,0.482466,0.427826,0.234069,0.794075,0.629855,0.513263,0.0857695,0.917241,0.895857,0.426312,0.231813,0.716654,0.971085,0.144641,0.150607,0.115886,0.0915533,0.772019,0.299634,0.274189,0.362241,0.620698,0.0751297,0.508177,0.612573,0.810964,0.963144,0.0857791,0.659657,0.723701,0.594024,0.625737,0.794808,0.666848,0.654768,0.0813734,0.122879,0.0686721,0.0508229,0.190548,0.158182,0.41849,0.530427,0.212092,0.428466,0.859401,0.543616,0.812468,0.0413619,0.457003,0.0541034,0.235329,0.126231,0.0876251,0.916924,0.59755,0.854777,0.925517,0.0742147,0.665156,0.843277,0.355634,0.732479,0.0135245,0.880765,0.708364,0.395085,|0.79893,0.0557342,0.715046,0.799085,0.530862,0.46712,0.762729,0.187953,0.532324,0.000539243,0.2745,0.973489,0.72629,0.885078,0.443321,0.328161,0.182195,0.102523,0.64697,0.937884,0.546351,0.21377,0.28165,0.901092,0.272155,0.834959,0.265001,0.858018,0.903124,0.80214,0.178764,0.911024,0.399033,0.761406,0.664886,0.669518,0.555431,0.957571,0.288039,0.873635,0.431536,0.571806,0.181076,0.724579,0.0328589,0.993504,0.371009,0.944867,0.110205,0.730429,0.469417,0.0342569,0.719889,0.232751,0.205385,0.723701,0.789051,0.262989,0.0760657,0.118045,0.273533,0.307429,0.00699645,0.328193,0.632478,0.837522,0.0197329,0.931173,0.403573,0.038889,0.21378,0.504763,0.0504069,0.343619,0.972687,0.250244,0.152101,0.536725,0.437117,0.420616,0.480443,0.771756,0.957708,0.570609,0.563878,0.9732,0.865381,0.0110041,0.802274,0.80229,0.953715,0.451411,0.0747873,0.764514,0.743591,0.0275146,0.277205,0.181975,0.486641,0.061437,0.989809,0.912332,0.658653,0.744913,0.876279,0.459129,0.978111,0.127299,0.801355,0.550548,0.819704,0.922587,0.397888,0.38813,0.772087,0.343599,0.587103,0.288671,0.458288,0.93802,0.7705,0.986488,0.0641877,0.175966,0.820668,0.97825,0.544326,0.412217,0.890014,0.543071,0.970731,0.543407,0.0645547,0.300083,0.594668,0.72679,0.20084,0.261075,0.13512,0.842181,0.394662,0.50483,0.412422,0.908948,0.668161,0.418962,0.663622,0.489796,0.561527,0.376384,0.704053,0.261524,0.791831,0.740735,0.711538,0.762717,0.594944,0.267326,0.736529,0.133593,0.0747172,0.185778,0.270199,0.0880951,0.614715,0.733756,0.754673,0.623494,0.120606,0.869909,0.0198846,0.742303,0.216492,0.713743,0.550112,0.233657,0.338741,0.971922,0.908051,0.882982,0.831747,0.536542,0.507684,0.323962,0.417276,0.558006,0.652916,0.467818,0.806974,0.556966,0.247213,0.417033,0.731656,0.437325,0.791277,0.9777,0.404508,0.843137,0.631185,0.184649,0.292954,0.675858,0.158444,0.121717,0.852041,0.401097,0.293374,0.171702,0.525078,0.188773,0.814139,0.481612,0.393732,0.917253,0.363127,0.840231,0.701877,0.0535954,0.591295,0.91399,0.644003,0.138804,0.570624,0.635056,0.955931,0.203603,0.615824,0.176308,0.845903,0.0458583,0.0438425,0.194985,0.493537,0.945125,0.155445,0.0475965,0.141645,0.66236,0.704836,0.91572,0.37624,0.849482,0.753089,0.757066,0.977421,0.661975,0.407989,0.38237,0.94664,0.183551,0.461505,0.732144,0.112831,0.48875,0.538975,0.504257,0.583766,0.0138895,0.546434,0.88344,0.014945,0.108473,0.263514,0.357526,0.933158,0.405629,0.744207,0.00600761,0.470715,0.406651,0.469451,0.659657,0.503215,0.775877,0.823067,0.43844,0.987449,0.217933,0.605466,0.0784587,0.0718645,0.432309,0.655019,0.232593,0.67595,0.416843,0.798589,0.180755,0.199034,0.17507,0.845472,0.0892931,0.305066,0.531022,0.613155,0.453012,0.325908,0.0952124,0.867603,0.944779,0.848024,0.966652,0.800114,0.128744,0.70289,0.423307,0.135665,0.301891,0.361774,0.424607,0.489851,0.472986,0.635968,0.967492,0.715146,0.663546,0.95405,0.238217,0.345327,0.253434,0.429164,0.183509,0.527518,0.672513,0.378108,0.959446,0.00725687,0.874816,0.678981,0.180072,0.069259,0.128677,0.945177,0.760635,0.323419,0.13978,0.396098,0.406366,0.738742,0.982943,0.543018,0.785275,0.0658653,0.685587,0.966743,0.861984,0.973119,0.921382,0.659092,0.224075,0.0124248,0.896152,0.724531,0.378111,0.969222,0.0672357,0.876673,0.131037,0.767949,0.293557,0.548719,0.686951,0.788847,0.195285,0.12375,0.683283,0.927687,0.160812,0.400301,0.374976,0.220087,0.946393,0.282892,0.147449,0.719672,0.816213,0.860102,0.0521213,0.211187,0.265757,0.768765,0.285378,0.582565,0.821477,0.488905,0.479935,0.74519,0.729494,0.248567,0.479696,0.105304,0.165678,0.164164,0.285188,0.0558498,0.173076,0.768521,0.117066,0.257113,0.0479082,0.406045,0.476299,0.674335,0.902463,0.544846,0.577449,0.0808165,0.841447,0.612453,0.361822,0.727771,0.100034,0.117065,0.518363,0.201484,0.876187,0.17782,0.771873,0.942128,0.211046,0.231287,0.254054,0.149295,0.645472,0.709061,0.497079,0.135141,0.811494,0.778748,0.590168,0.873588,0.540449,0.747016,0.614756,0.814262,0.749079,0.14132,0.102348,0.207733,0.426056,0.883645,0.879401,0.34777,0.196296,0.0812269,0.228953,0.570735,0.0430492,0.76043,0.0801174,0.210109,0.840788,0.575017,0.681999,0.548722,0.0140574,0.731156,0.0460227,0.0732518,0.581199,0.272105,0.743168,0.565815,0.230303,0.0398767,0.500772,0.415686,0.441953,0.380785,0.360569,0.0479903,0.684075,0.519187,0.812613,0.475959,0.062359,0.598658,0.165834,0.556501,0.674488,0.169826,0.674103,0.571916,0.94856,0.939008,0.0802048,0.42415,0.12638,0.281185,0.692767,0.67208,0.394362,0.895246,0.872589,0.921718,0.0826216,0.266661,0.848106,0.967172,0.846959,0.46483,0.406268,0.16828,0.894982,0.442641,0.0464339,0.546007,0.868314,0.0341068,0.139816,0.852824,0.646608,0.580413,0.843109,0.405489,0.0813397,0.160145,0.950895,0.648288,0.641999,0.081354,0.219876,0.301494,0.124909,0.18767,0.900445,0.374975,0.280429,0.631413,0.102784,0.731792,0.883577,0.386507,0.0967268,0.581825,0.327825,0.0258491,0.960395,0.727076,0.829009,0.812984,0.709485,0.50368,0.439396,0.100896,0.720139,0.733229,0.151889,0.717736,0.750447,0.60935,0.622522,0.544146,0.22189,0.132783,0.248227,0.273676,0.854145,0.0340383,0.384184,0.318491,0.324212,0.928085,0.445091,0.0811991,0.957793,0.816564,0.292376,0.57312,0.522951,0.799941,0.889986,0.212534,0.789203,0.846649,0.342025,0.560741,0.320177,0.0802161,0.615347,0.80407,0.861328,0.0057047,0.795738,0.216402,0.110969,0.779285,0.895878,0.0630635,0.205776,0.266722,0.0382584,0.953625,0.20683,0.745706,0.157141,0.24957,0.953086,0.340484,0.774618,0.0628557,0.344322,0.124484,0.633731,0.377023,0.554187,0.468085,0.956045,0.882747,0.238085,0.0245732,0.48852,0.0395136,0.196511,0.154786,0.506746,0.432324,0.198432,0.474256,0.614124,0.602996,0.705577,0.99989,0.0954053,0.402065,0.949272,0.236605,0.12063,0.515407,0.212396,0.541381,0.601266,0.317379,0.735328,0.779188,0.723056,0.400411,0.872734,0.1944,0.00426966,0.109123,0.345903,0.2702,0.838692,0.518926,0.720842,0.0587184,0.847722,0.467805,0.580284,0.0260378,0.0510752,0.831349,0.361719,0.503136,0.730564,0.83176,0.981958,0.106151,0.592659,0.528399,0.574174,0.301224,0.0412036,0.394466,0.321083,0.9697,0.561222,0.905404,0.215561,0.761326,0.826453,0.518526,0.645884,0.672852,0.706128,0.650915,0.690227,0.620111,0.757819,0.463338,0.276305,0.305352,0.865994,0.557561,0.142834,0.33069,0.58072,0.506595,0.941275,0.258637,0.335791,0.950279,0.424359,0.88574,0.182837,0.774433,0.543189,0.425814,0.336021,0.963564,0.382926,0.0980959,0.880443,0.0306913,0.873294,0.0502809,0.166606,0.868551,0.566683,0.193687,0.218467,0.581765,0.0463678,0.302766,0.685019,0.578027,0.902838,0.597935,0.563661,0.074535,0.9798,0.539346,0.777453,0.852051,0.396377,0.407746,0.574777,0.320058,0.29503,0.576999,0.807826,0.511563,0.302737,0.97858,0.065351,0.474845,0.772101,0.363497,0.135005,0.955086,0.509682,0.105748,0.544925,0.480298,0.996706,0.146775,0.756303,0.94436,0.686366,0.444057,0.598912,0.203475,0.582063,0.240067,0.730348,0.508494,0.640671,0.189787,0.60797,0.694917,0.234342,0.138791,0.764087,0.663255,0.178221,0.524801,0.0839648,0.90094,0.640738,0.99279,0.994217,0.240253,0.457541,0.209237,0.0110909,0.687962,0.357742,0.938313,0.759982,0.863412,0.268193,0.706585,0.612732,0.141298,0.231394,0.660696,0.188609,0.160757,0.642597,0.910506,0.920128,0.374521,0.828306,0.176165,0.518146,0.159054,0.704559,0.364685,0.751918,0.569294,0.381873,0.0934075,0.397813,0.670782,0.0624766,0.783083,0.475523,0.206254,0.429028,0.818345,0.639991,0.31077,0.359232,0.627316,0.225948,0.683996,0.303886,0.586641,0.382945,0.722308,0.998895,0.906235,0.188744,0.1905,0.208874,0.370565,0.743855,0.705479,0.970528,0.209545,0.859768,0.13288,0.684864,0.069557,0.968149,0.054795,0.940344,0.171949,0.79411,0.571321,0.342064,0.623788,0.931623,0.886819,0.554526,0.260993,0.149209,0.0696462,0.143527,0.0301321,0.930496,0.95153,0.0988984,0.474879,0.156926,0.87924,0.889445,0.272625,0.766919,0.363486,0.440972,0.526649,0.0595405,0.0800756,0.351599,0.306278,0.377487,0.312571,0.874372,0.249854,0.616571,0.887881,0.255856,0.389717,0.638531,0.990912,0.911534,0.506797,0.164392,0.00306565,0.587899,0.0663102,0.410861,0.145102,0.0230486,0.425476,0.0954121,0.819754,0.716099,0.353691,0.843625,0.14101,0.0348849,0.493378,0.813068,0.782195,0.387838,0.756079,0.412466,0.591047,0.827834,0.777669,0.95485,0.269118,0.139342,0.609961,0.595995,0.796814,0.861562,0.677971,0.182145,0.712457,0.889678,0.776223,0.772555,0.928535,0.213241,0.894978,0.774195,0.40111,0.871733,0.94575,0.131,0.0620815,0.539623,0.488014,0.401124,0.507886,0.981813,0.755055,0.0146858,0.0606025,0.189616,0.53772,0.0806157,0.506647,0.553845,0.525987,0.0677897,0.749724,0.0242314,0.272401,0.635413,0.645174,0.108631,0.386898,0.979306,0.00275785,0.312784,0.153474,0.965531,0.693637,0.923938,0.726384,0.0303607,0.698372,0.483475,0.294771,0.396827,0.527867,0.420057,0.258562,0.328043,0.111305,0.872817,0.779027,0.592301,0.735696,0.00789332,0.712823,0.795865,0.47419,0.246697,0.276081,0.262745,0.263061,0.530506,0.155051,0.0847893,0.777544,0.724495,0.299123,0.608828,0.819028,0.954094,0.683164,0.236578,0.777202,0.598708,0.20515,0.0671654,0.262315,0.354167,0.107024,0.802665,0.109252,0.0896732,0.549468,0.639746,|0.0566718,0.973092,0.434319,0.618618,0.114649,0.341034,0.850509,0.954073,0.989278,0.185322,0.597601,0.575314,0.503192,0.429667,0.12074,0.891946,0.688187,0.393723,0.182838,0.319125,0.853685,0.398903,0.861492,0.893222,0.979228,0.360693,0.183412,0.86863,0.524731,0.342599,0.2548,0.437573,0.0391011,0.881849,0.590638,0.317281,0.591023,0.238709,0.37285,0.807191,0.490836,0.0561128,0.182717,0.181228,0.946199,0.930505,0.605682,0.31669,0.823874,0.76551,0.779527,0.414519,0.701386,0.260028,0.257266,0.546034,0.438603,0.757709,0.407945,0.265535,0.611494,0.098132,0.759411,0.0312724,0.582352,0.852737,0.991343,0.833038,0.921185,0.211615,0.572867,0.237628,0.708772,0.993632,0.500197,0.881925,0.669596,0.555609,0.740762,0.553644,0.981655,0.401193,0.65928,0.821226,0.0538197,0.374979,0.100701,0.0451062,0.518061,0.063958,0.0982132,0.527072,0.672283,0.595377,0.551889,0.46838,0.425818,0.82481,0.443143,0.632646,0.707759,0.107435,0.439175,0.403439,0.961861,0.979045,0.193697,0.925714,0.522336,0.359357,0.520475,0.623561,0.599341,0.639688,0.546795,0.520025,0.140845,0.750939,0.588978,0.638108,0.91173,0.653343,0.130179,0.353887,0.329332,0.444844,0.931462,0.976895,0.318655,0.665542,0.584646,0.52402,0.744728,0.595568,0.66374,0.687647,0.065198,0.854971,0.541245,0.805897,0.157313,0.537101,0.620716,0.126524,0.511946,0.35592,0.935483,0.845244,0.438053,0.301058,0.287098,0.736933,0.987749,0.73341,0.215841,0.127293,0.642889,0.379639,0.42891,0.732406,0.99551,0.897633,0.453507,0.107959,0.316331,0.137096,0.243122,0.246608,0.709357,0.890858,0.758786,0.939951,0.889115,0.756096,0.900848,0.959488,0.994345,0.319077,0.937627,0.530242,0.373914,0.0980808,0.460176,0.208183,0.670347,0.364528,0.611542,0.0770342,0.386068,0.207526,0.368716,0.538646,0.0205072,0.707566,0.756912,0.828665,0.659376,0.917689,0.0510674,0.562098,0.848372,0.537033,0.894876,0.488518,0.723106,0.450795,0.165836,0.140779,0.448207,0.667777,0.327975,0.704264,0.796369,0.440023,0.525821,0.231254,0.314101,0.264996,0.0810538,0.165645,0.0497152,0.26971,0.826901,0.430058,0.0978099,0.552295,0.415448,0.121972,0.0218877,0.108704,0.518103,0.574997,0.569267,0.638573,0.316416,0.18847,0.858261,0.330609,0.95589,0.643172,0.955615,0.457218,0.0209049,0.124349,0.962869,0.648453,0.610004,0.139171,0.0108793,0.13804,0.0145438,0.637911,0.587374,0.723565,0.747433,0.504229,0.686189,0.769033,0.899634,0.933922,0.0652589,0.655835,0.89069,0.883181,0.707483,0.677167,0.109751,0.719496,0.999851,0.71106,0.841159,0.20519,0.530557,0.41507,0.293151,0.793613,0.795284,0.190368,0.812312,0.504961,0.0585482,0.886581,0.579611,0.456556,0.587935,0.517461,0.87301,0.523238,0.231925,0.316676,0.259861,0.919935,0.0120702,0.392266,0.477039,0.900827,0.61297,0.719051,0.60648,0.638705,0.764557,0.114735,0.010472,0.446303,0.0532078,0.178398,0.244628,0.480179,0.237779,0.146002,0.227649,0.524963,0.538952,0.793144,0.826414,0.327435,0.392852,0.879625,0.100174,0.883081,0.515389,0.173512,0.35935,0.241885,0.412351,0.464377,0.339769,0.338323,0.565579,0.755413,0.495301,0.136967,0.866228,0.69422,0.994326,0.294744,0.762537,0.81153,0.28558,0.675472,0.603666,0.180267,0.59537,0.457535,0.721543,0.478136,0.601266,0.680255,0.735021,0.9848,0.514269,0.659065,0.163247,0.491393,0.854611,0.16284,0.0406132,0.330327,0.131808,0.390511,0.122117,0.85886,0.52035,0.209351,0.559892,0.2741,0.113115,0.97074,0.839534,0.972711,0.126204,0.540625,0.886765,0.468296,0.294486,0.0995929,0.370804,0.723569,0.298394,0.795277,0.573687,0.673411,0.356383,0.460757,0.214161,0.266508,0.0145319,0.0110017,0.419343,0.72239,0.776165,0.368746,0.489641,0.205424,0.375568,0.667245,0.843873,0.620314,0.161826,0.924118,0.619188,0.700599,0.54815,0.522971,0.602429,0.821696,0.0942919,0.966008,0.487932,0.839097,0.529272,0.534041,0.548064,0.266182,0.345882,0.405108,0.203796,0.436343,0.13715,0.0141666,0.329033,0.743691,0.272104,0.196218,0.465168,0.548837,0.489169,0.552967,0.680636,0.718084,0.867164,0.995979,0.0637389,0.13674,0.677475,0.562753,0.3067,0.979663,0.412238,0.514369,0.954014,0.652713,0.380332,0.65257,0.217682,0.0937382,0.308711,0.435402,0.17868,0.659618,0.737207,0.221618,0.629712,0.312525,0.790411,0.129957,0.822637,0.455082,0.155319,0.978568,0.39764,0.473025,0.935846,0.429071,0.0823188,0.84608,0.179113,0.445345,0.686821,0.955817,0.580624,0.702108,0.886632,0.0183544,0.551444,0.193891,0.117588,0.575865,0.647331,0.608877,0.0859396,0.730557,0.16291,0.214095,0.674101,0.285928,0.156326,0.387324,0.0635674,0.0473825,0.890764,0.603622,0.752203,0.129973,0.0732428,0.063715,0.0415685,0.377391,0.0100644,0.860008,0.627134,0.293013,0.420075,0.313238,0.893228,0.712251,0.0452284,0.21682,0.808864,0.00878054,0.564407,0.263741,0.388784,0.467992,0.975262,0.411141,0.971736,0.597043,0.800963,0.955259,0.328911,0.358776,0.880087,0.452533,0.713571,0.751347,0.97812,0.0383081,0.153325,0.369623,0.448413,0.321329,0.105944,0.332695,0.86671,0.729889,0.032311,0.435155,0.416653,0.155439,0.55407,0.365532,0.790865,0.371398,0.935849,0.574039,0.330007,0.0900378,0.688763,0.741445,0.827344,0.126861,0.427363,0.460857,0.819821,0.335561,0.961199,0.722961,0.30447,0.808473,0.349274,0.553856,0.490308,0.0580497,0.53519,0.354569,0.257737,0.630083,0.948385,0.075503,0.825529,0.775487,0.489966,0.141367,0.690476,0.901508,0.514334,0.885537,0.439985,0.416967,0.603243,0.0656646,0.670353,0.095367,0.404444,0.288732,0.429898,0.0896925,0.0455388,0.429551,0.529769,0.839535,0.116298,0.362723,0.364622,0.890763,0.635257,0.324487,0.343118,0.912251,0.272808,0.276822,0.206142,0.887965,0.167626,0.548279,0.269831,0.810838,0.954741,0.79573,0.934063,0.44698,0.510114,0.88502,0.0518923,0.828334,0.622278,0.955577,0.56294,0.369421,0.625357,0.986327,0.377891,0.88662,0.868852,0.591194,0.478575,0.71216,0.250762,0.683124,0.677231,0.771822,0.661642,0.16716,0.574699,0.908269,0.673143,0.0562601,0.718632,0.537778,0.0573455,0.935154,0.640194,0.00437939,0.313072,0.775323,0.47281,0.664165,0.769194,0.436775,0.874078,0.849713,0.331932,0.248893,0.0506192,0.646933,0.619695,0.819533,0.684914,0.798231,0.436276,0.311091,0.0022583,0.570659,0.0929717,0.76955,0.756172,0.109548,0.491499,0.31048,0.623058,0.752763,0.025476,0.0313526,0.558998,0.0776806,0.456865,0.929769,0.546808,0.74946,0.346914,0.0521841,0.610086,0.795408,0.398136,0.0691282,0.774295,0.083724,0.0827175,0.360326,0.681448,0.394308,0.545733,0.0954771,0.25909,0.394757,0.500625,0.531556,0.799833,0.332587,0.0467092,0.165024,0.997437,0.6767,0.544376,0.954328,0.195706,0.365121,0.743265,0.253426,0.765235,0.574529,0.293832,0.342546,0.0178168,0.358669,0.662754,0.816462,0.55673,0.339196,0.617357,0.579756,0.50454,0.414885,0.242564,0.643363,0.166952,0.231362,0.489525,0.341646,0.935097,0.441917,0.252381,0.371437,0.679047,0.359622,0.575095,0.46898,0.636067,0.871785,0.21516,0.837738,0.482593,0.561219,0.139666,0.68812,0.82994,0.493358,0.278279,0.183102,0.0250549,0.39934,0.0148881,0.0310702,0.10105,0.163512,0.916619,0.850223,0.938994,0.0147649,0.506278,0.0414059,0.215072,0.215169,0.972661,0.638996,0.650878,0.545904,0.686461,0.0905079,0.885931,0.644869,0.366091,0.130143,0.189629,0.603526,0.293462,0.67406,0.188959,0.263865,0.963323,0.719629,0.381206,0.04589,0.699503,0.439758,0.364889,0.753313,0.0192133,0.200037,0.4829,0.0884441,0.266508,0.875324,0.96553,0.266482,0.565881,0.348371,0.602159,0.0425432,0.691236,0.796913,0.138725,0.439212,0.838089,0.40374,0.286916,0.465561,0.590347,0.38742,0.693925,0.134061,0.379378,0.972609,0.369704,0.796439,0.13594,0.103595,0.662154,0.60264,0.793342,0.0561065,0.560521,0.0817368,0.529543,0.604603,0.817708,0.752056,0.846003,0.580693,0.817779,0.634937,0.821078,0.13434,0.887886,0.677075,0.243117,0.946172,0.193604,0.103314,0.822316,0.748433,0.982947,0.138455,0.479226,0.419777,0.437105,0.931104,0.390311,0.0753328,0.0911208,0.12626,0.765639,0.394988,0.84809,0.213628,0.326896,0.145179,0.60246,0.514884,0.55707,0.4282,0.034789,0.878363,0.208067,0.797091,0.209652,0.353386,0.0124502,0.148852,0.45526,0.837355,0.792274,0.44412,0.230868,0.644396,0.603072,0.95152,0.540361,0.833698,0.241463,0.572936,0.97301,0.462989,0.599652,0.982355,0.812257,0.748252,0.391137,0.395542,0.708554,0.740249,0.975482,0.0565147,0.549611,0.592333,0.466011,0.934906,0.41811,0.530645,0.573493,0.533369,0.105157,0.869001,0.337087,0.493806,0.197565,0.413404,0.161549,0.684254,0.794751,0.462332,0.660736,0.0861674,0.611553,0.236585,0.619513,0.755941,0.40116,0.0480767,0.0509568,0.174114,0.532705,0.840737,0.523024,0.595373,0.106555,0.601411,0.44044,0.645009,0.05657,0.589893,0.664701,0.596857,0.0122504,0.052678,0.81752,0.607272,0.668303,0.660678,0.867654,0.1764,0.0683391,0.438631,0.972639,0.934225,0.838016,0.653147,0.0448948,0.318232,0.81409,0.360387,0.706797,0.639274,0.691064,0.52389,0.406621,0.319949,0.435786,0.0287012,0.352838,0.252465,0.94013,0.746402,0.0222815,0.374319,0.501912,0.636866,0.84783,0.437659,0.152221,0.726225,0.920867,0.155118,0.527459,0.763707,0.4949,0.554569,0.327478,0.800573,0.706167,0.991952,0.0558751,0.27337,0.93918,0.127479,0.174862,0.933433,0.388925,0.0907779,0.847176,0.837756,0.0372741,0.683557,0.674495,0.771982,0.0734832,0.812896,0.714936,0.474584,|0.660025,0.420829,0.921028,0.739793,0.136497,0.548757,0.345734,0.978878,0.63281,0.630089,0.169758,0.661938,0.320458,0.654892,0.410352,0.0127247,0.44874,0.302087,0.369608,0.449311,0.287145,0.591779,0.801518,0.962844,0.701464,0.856988,0.633978,0.459179,0.34667,0.743244,0.532715,0.465744,0.436731,0.384864,0.395984,0.891222,0.797991,0.530092,0.891222,0.449281,0.827843,0.80366,0.0698482,0.244595,0.316766,0.694037,0.552,0.649919,0.819235,0.260722,0.590707,0.160128,0.651751,0.386727,0.622036,0.121536,0.993759,0.561872,0.599005,0.973793,0.231948,0.458362,0.760699,0.153088,0.554121,0.248763,0.661717,0.182881,0.353301,0.303461,0.0138513,0.129701,0.858176,0.276561,0.748167,0.468871,0.613824,0.27571,0.0044446,0.0464578,0.148657,0.718596,0.307109,0.571076,0.0221303,0.231399,0.0194247,0.530828,0.101203,0.318978,0.54058,0.475895,0.0094772,0.281197,0.988408,0.744648,0.26624,0.272369,0.874581,0.562156,0.103919,0.576272,0.451251,0.931631,0.651887,0.209109,0.503679,0.803368,0.503923,0.122593,0.542313,0.930928,0.375563,0.671909,0.0727566,0.301835,0.921027,0.997205,0.442856,0.976102,0.776516,0.0807699,0.810973,0.308306,0.317222,0.507085,0.276988,0.468507,0.135893,0.845419,0.783782,0.613165,0.860913,0.555494,0.233746,0.114101,0.274335,0.924964,0.702276,0.830599,0.0228392,0.228644,0.0322435,0.232864,0.734735,0.697185,0.25034,0.214255,0.936067,0.856783,0.728814,0.720391,0.128024,0.669474,0.732906,0.429561,0.778483,0.550153,0.814771,0.925794,0.577522,0.270573,0.941014,0.392601,0.461385,0.236345,0.440705,0.492845,0.977302,0.545207,0.709932,0.460398,0.10283,0.119202,0.00353861,0.580983,0.91082,0.64602,0.358676,0.787749,0.614392,0.693049,0.674028,0.598082,0.0540364,0.668151,0.0351685,0.034681,0.254949,0.980183,0.983581,0.748101,0.0531248,0.519991,0.247314,0.264515,0.0236218,0.557477,0.633241,0.108035,0.264669,0.720713,0.170205,0.55448,0.0746346,0.000612676,0.850992,0.477035,0.204011,0.907469,0.820704,0.762804,0.555956,0.0262818,0.709695,0.24215,0.435537,0.387754,0.760918,0.634458,0.0157893,0.424007,0.828038,0.0589988,0.630599,0.502698,0.532715,0.769908,0.961753,0.445677,0.244136,0.486421,0.257602,0.263219,0.861351,0.303721,0.925805,0.420217,0.289448,0.894127,0.470225,0.692759,0.511031,0.109557,0.841062,0.723394,0.715096,0.780829,0.977257,0.221461,0.226849,0.288593,0.553931,0.676463,0.0311807,0.828847,0.332728,0.774524,0.275402,0.566089,0.140452,0.627505,0.759391,0.691712,0.782151,0.766607,0.554238,0.110815,0.214526,0.424223,0.662573,0.898861,0.446621,0.725538,0.413,0.100596,0.616075,0.997275,0.858245,0.80605,0.570662,0.0943955,0.421424,0.827736,0.0662625,0.333701,0.324781,0.326391,0.674514,0.292674,0.721266,0.187028,0.848267,0.635328,0.603285,0.311922,0.20547,0.864917,0.608383,0.853302,0.319522,0.980479,0.796444,0.289563,0.197127,0.264404,0.606802,0.587645,0.743153,0.214214,0.436934,0.467659,0.520422,0.262015,0.455548,0.905671,0.942943,0.77487,0.676798,0.304264,0.229443,0.543488,0.663317,0.210721,0.0143287,0.486907,0.709171,0.604586,0.145039,0.629633,0.323149,0.767964,0.397246,0.128525,0.168128,0.213885,0.962359,0.13459,0.159309,0.531448,0.680425,0.794669,0.765215,0.092692,0.0252326,0.974479,0.0316127,0.598844,0.251922,0.121166,0.428535,0.300012,0.323914,0.962937,0.211844,0.36823,0.827475,0.260225,0.0723727,0.226222,0.733387,0.590414,0.0555067,0.188096,0.216356,0.553994,0.77996,0.997945,0.611575,0.282598,0.523025,0.81837,0.442417,0.828968,0.859687,0.281019,0.51086,0.989687,0.612657,0.278744,0.0320029,0.0292178,0.732983,0.011059,0.126504,0.630327,0.605807,0.430155,0.879865,0.0241433,0.385341,0.538798,0.806687,0.963584,0.977985,0.11682,0.301209,0.558398,0.990238,0.84019,0.487335,0.973842,0.912707,0.95952,0.392559,0.582171,0.869931,0.566085,0.577018,0.247245,0.586762,0.757919,0.71626,0.883013,0.406053,0.0931975,0.970312,0.754183,0.946115,0.737298,0.561809,0.167406,0.189011,0.355576,0.973326,0.555702,0.629129,0.932818,0.166616,0.313111,0.00921893,0.469407,0.886222,0.436423,0.732996,0.844205,0.291353,0.802399,0.899183,0.770793,0.438335,0.204612,0.0758845,0.171985,0.277758,0.86849,0.708504,0.782054,0.560408,0.791373,0.599883,0.778183,0.129653,0.97674,0.270972,0.767163,0.0187382,0.533319,0.876873,0.123781,0.169272,0.803837,0.873208,0.176692,0.318739,0.353944,0.725436,0.839313,0.0695188,0.124828,0.233155,0.780639,0.0814056,0.549951,0.78894,0.846717,0.473756,0.543682,0.613899,0.357087,0.661744,0.100783,0.60784,0.0927909,0.134943,0.685327,0.942373,0.103802,0.946662,0.326157,0.670529,0.0440712,0.495363,0.920032,0.863439,0.765778,0.388493,0.742698,0.810428,0.914482,0.0236564,0.591398,0.665288,0.654195,0.0858846,0.541314,0.382203,0.780269,0.728295,0.566504,0.30229,0.532795,0.274692,0.946232,0.745012,0.0128617,0.664733,0.785314,0.0376425,0.500721,0.767518,0.153431,0.666765,0.169152,0.172953,0.548936,0.0212166,0.555453,0.835644,0.371042,0.843095,0.0201276,0.615891,0.557533,0.768507,0.279551,0.471991,0.467773,0.808407,0.442625,0.348689,0.297414,0.254425,0.64779,0.505209,0.854054,0.843186,0.291443,0.655186,0.756277,0.232552,0.0424271,0.249384,0.421389,0.907166,0.57152,0.260847,0.579427,0.119834,0.882432,0.633899,0.0176346,0.344283,0.957817,0.323872,0.934522,0.744794,0.609755,0.626556,0.308557,0.890132,0.0815582,0.542566,0.36342,0.414199,0.691966,0.22143,0.839266,0.0452219,0.153803,0.710748,0.686726,0.127802,0.0279174,0.913592,0.911322,0.24544,0.0306589,0.31951,0.563995,0.964314,0.0965047,0.719964,0.844883,0.405749,0.481531,0.812344,0.73216,0.708258,0.0141169,0.649408,0.794368,0.335511,0.727168,0.524545,0.924383,0.253784,0.549428,0.265004,0.616888,0.700455,0.21956,0.0811667,0.504076,0.763712,0.183017,0.627489,0.991719,0.588287,0.993492,0.442892,0.148285,0.177902,0.879534,0.349028,0.445245,0.709655,0.743635,0.970121,0.596714,0.837064,0.11037,0.862696,0.526919,0.810292,0.515652,0.124898,0.806299,0.832928,0.860263,0.263157,0.0840338,0.596215,0.951268,0.824124,0.609975,0.401573,0.562155,0.214623,0.383204,0.0802262,0.396286,0.769685,0.989656,0.626779,0.605077,0.124004,0.101047,0.417316,0.855441,0.547784,0.210847,0.541969,0.817652,0.894173,0.201634,0.585484,0.204937,0.30469,0.27289,0.164269,0.525001,0.327392,0.588886,0.545061,0.261265,0.326907,0.600209,0.707465,0.379887,0.149246,0.868988,0.04232,0.222191,0.866023,0.347757,0.945131,0.835798,0.801119,0.584799,0.643204,0.97782,0.0144983,0.437977,0.073555,0.115247,0.699931,0.211984,0.814571,0.410431,0.763512,0.285615,0.58999,0.87323,0.253027,0.218748,0.781155,0.105595,0.725408,0.708306,0.501533,0.462742,0.354913,0.0056414,0.583528,0.279203,0.231,0.750884,0.323435,0.538657,0.344418,0.674827,0.818289,0.110764,0.428308,0.113244,0.359594,0.279703,0.943127,0.166592,0.976642,0.0678949,0.864492,0.171965,0.281092,0.636217,0.374899,0.420535,0.161116,0.538302,0.398408,0.26249,0.317164,0.100316,0.527693,0.776199,0.576453,0.32613,0.899815,0.164806,0.743006,0.488001,0.218835,0.0919796,0.610844,0.708817,0.879729,0.807074,0.241936,0.307481,0.0103431,0.812327,0.167789,0.564302,0.927013,0.633789,0.614242,0.970028,0.0755488,0.284755,0.900418,0.237372,0.155855,0.281408,0.308561,0.136106,0.0692981,0.59389,0.0247241,0.43923,0.925891,0.0772783,0.980864,0.943493,0.360337,0.791909,0.639338,0.160701,0.662127,0.640294,0.457,0.549834,0.955528,0.810591,0.0968049,0.438061,0.184544,0.914037,0.611068,0.592405,0.0387018,0.237932,0.428797,0.474243,0.0878255,0.372773,0.520227,0.257581,0.850402,0.998033,0.0907584,0.047929,0.233089,0.248303,0.974303,0.783175,0.448622,0.409079,0.565257,0.694157,0.672509,0.179582,0.664254,0.913981,0.377577,0.0132887,0.733035,0.505584,0.133804,0.214084,0.396366,0.729739,0.95692,0.477273,0.850617,0.936973,0.99978,0.538926,0.874711,0.34406,0.77059,0.432237,0.372368,0.0877818,0.934463,0.836284,0.0201326,0.993699,0.77763,0.0482216,0.357947,0.0361935,0.570327,0.11095,0.813446,0.8849,0.634338,0.221924,0.178389,0.0693287,0.632127,0.699286,0.210377,0.532106,0.526871,0.0753074,0.830664,0.952909,0.515597,0.289114,0.729141,0.413417,0.696019,0.0550682,0.39732,0.404615,0.000883043,0.43782,0.515658,0.899612,0.246161,0.922237,0.102386,0.96124,0.00262052,0.746964,0.61924,0.49011,0.800346,0.364582,0.924979,0.401189,0.639785,0.988123,0.321545,0.0854586,0.32876,0.34651,0.844152,0.963768,0.760453,0.391636,0.579081,0.506244,0.0851243,0.822687,0.494865,0.531804,0.801062,0.241136,0.151506,0.991758,0.486037,0.136738,0.230753,0.4811,0.412157,0.542164,0.601707,0.334871,0.745192,0.432361,0.404896,0.95435,0.0944497,0.941514,0.216861,0.970335,0.0908047,0.566354,0.817876,0.883855,0.742847,0.983509,0.740893,0.477839,0.681263,0.805561,0.474547,0.119472,0.703399,0.34205,0.452618,0.611082,0.996083,0.545057,0.864782,0.517018,0.420136,0.657144,0.66086,0.84622,0.786245,0.935869,0.366625,0.0535793,0.81088,0.670623,0.840279,0.369795,0.879729,0.361787,0.13948,0.437796,0.0442299,0.918518,0.263497,0.938897,0.0765569,0.2353,0.341253,0.538528,0.645846,0.45854,0.0381425,0.674218,0.837628,0.591778,0.00969529,0.115571,0.875693,0.0825908,0.194265,0.836249,0.65046,0.943276,0.119973,0.144832,0.998807,0.942241,0.795835,0.463346,0.0792284,0.945053,0.948673,0.725448,0.00880396,0.476344,0.655038,0.103618,|0.801849,0.274041,0.581734,0.95425,0.0811079,0.239971,0.249457,0.16009,0.613296,0.36151,0.593748,0.760869,0.217105,0.475829,0.624718,0.29125,0.224016,0.946551,0.960455,0.302049,0.0149057,0.817156,0.516407,0.512376,0.623019,0.0911032,0.00657779,0.304059,0.787248,0.575699,0.118962,0.522667,0.832607,0.839493,0.744085,0.135912,0.472351,0.783438,0.909937,0.263708,0.0087415,0.176625,0.935161,0.507933,0.196746,0.295637,0.946272,0.146261,0.0713311,0.221317,0.52762,0.120025,0.647037,0.704127,0.433988,0.898977,0.487128,0.0201135,0.0644968,0.55714,0.987831,0.630497,0.727364,0.0917534,0.945896,0.962098,0.472462,0.734461,0.394516,0.404567,0.0806367,0.143596,0.685331,0.950049,0.684975,0.285949,0.885935,0.386174,0.0138856,0.392419,0.387762,0.235474,0.82613,0.469924,0.768314,0.119917,0.750851,0.923143,0.202176,0.0420841,0.94736,0.615002,0.597272,0.340201,0.831057,0.908293,0.761524,0.123251,0.0462679,0.91859,0.917425,0.576407,0.940871,0.453764,0.522891,0.015067,0.57724,0.733105,0.548549,0.465759,0.901298,0.737661,0.31832,0.240601,0.5093,0.523289,0.162565,0.378088,0.00814557,0.843395,0.56939,0.807354,0.116226,0.655066,0.598583,0.0635223,0.258396,0.936001,0.934564,0.652322,0.526814,0.83446,0.910418,0.812759,0.106069,0.020815,0.130296,0.674627,0.830598,0.74527,2.93255e-05,0.496104,0.622829,0.215715,0.0117377,0.558718,0.0790055,0.189042,0.647547,0.354443,0.361868,0.284919,0.409302,0.379432,0.0546045,0.119089,0.394029,0.756304,0.766151,0.612304,0.540634,0.650713,0.322579,0.404971,0.929771,0.0254066,0.9939,0.367345,0.451765,0.679226,0.783615,0.906831,0.695159,0.546075,0.174932,0.0087024,0.314994,0.920952,0.858806,0.891254,0.12203,0.669927,0.419724,0.674238,0.645263,0.475301,0.760514,0.784044,0.0582467,0.941865,0.125199,0.414849,0.838254,0.867564,0.369921,0.0872236,0.827172,0.496738,0.843877,0.3134,0.948991,0.193516,0.0880029,0.359533,0.00562805,0.469177,0.331752,0.668987,0.266731,0.503433,0.0709224,0.781972,0.846695,0.964023,0.58919,0.781601,0.462483,0.175645,0.71841,0.999944,0.640805,0.29319,0.911819,0.231057,0.505312,0.00439453,0.0576244,0.160858,0.299917,0.560819,0.427382,0.176723,0.730651,0.975952,0.889737,0.182608,0.402027,0.473608,0.694376,0.310061,0.771516,0.348027,0.725055,0.92325,0.928069,0.353257,0.203603,0.912265,0.972162,0.422865,0.0923401,0.493293,0.556187,0.369948,0.832143,0.539562,0.841653,0.691512,0.250482,0.819152,0.286903,0.913108,0.215389,0.752004,0.879491,0.312405,0.36945,0.83868,0.122268,0.947419,0.76971,0.190462,0.280524,0.883252,0.775618,0.65814,0.508483,0.893717,0.785809,0.151365,0.871986,0.952497,0.601814,0.78401,0.485436,0.759109,0.169895,0.901361,0.763117,0.951698,0.895454,0.450766,0.409938,0.698437,0.0164832,0.0479211,0.888184,0.354351,0.751633,0.904983,0.303708,0.0498389,0.549949,0.762953,0.681299,0.870065,0.937903,0.380212,0.440358,0.238029,0.772965,0.698427,0.317159,0.196528,0.408076,0.442137,0.792294,0.270573,0.440374,0.74229,0.955062,0.128198,0.816975,0.629225,0.101177,0.0504844,0.704433,0.423965,0.898226,0.0966751,0.19509,0.0410243,0.866731,0.783578,0.344457,0.106932,0.455919,0.793196,0.32063,0.43348,0.262143,0.927052,0.879357,0.896802,0.637924,0.509368,0.646398,0.553635,0.955323,0.0986108,0.342645,0.137114,0.605514,0.621292,0.289292,0.772324,0.861769,0.123829,0.390654,0.595316,0.415972,0.418907,0.810432,0.706824,0.898785,0.708905,0.291444,0.396778,0.099537,0.0865555,0.286277,0.470906,0.477614,0.954704,0.522851,0.540585,0.942741,0.518297,0.855394,0.177342,0.394125,0.166035,0.102097,0.399336,0.72219,0.194174,0.884016,0.376662,0.974655,0.489174,0.172177,0.466921,0.884306,0.383747,0.808043,0.066754,0.726417,0.454236,0.887941,0.362607,0.812955,0.656908,0.28772,0.0278279,0.756202,0.00215322,0.237631,0.29006,0.31933,0.700057,0.386734,0.147526,0.0764179,0.612075,0.0126112,0.818879,0.324197,0.887659,0.40197,0.223735,0.725515,0.476036,0.515415,0.839759,0.218834,0.655736,0.796238,0.263755,0.123887,0.617724,0.589172,0.0831912,0.638593,0.154621,0.036641,0.579202,0.709894,0.435498,0.599646,0.922523,0.787077,0.154078,0.767717,0.705777,0.518065,0.0133315,0.0988849,0.326809,0.14291,0.638498,0.892395,0.338024,0.291987,0.896075,0.343563,0.0925673,0.442397,0.739199,0.79914,0.954413,0.913602,0.870074,0.488865,0.72015,0.754679,0.870288,0.633816,0.786722,0.933436,0.932167,0.3349,0.593761,0.140548,0.414936,0.162454,0.467914,0.241957,0.425964,0.246449,0.711081,0.3743,0.444268,0.730509,0.153148,0.116095,0.628495,0.161911,0.1386,0.545317,0.20077,0.996,0.804472,0.460459,0.371624,0.663639,0.125099,0.361359,0.482096,0.881318,0.584905,0.953298,0.161258,0.232705,0.280669,0.906666,0.892968,0.749625,0.049915,0.188067,0.173181,0.606103,0.18007,0.122159,0.222761,0.542644,0.551901,0.253202,0.167574,0.945793,0.366397,0.95537,0.230403,0.535271,0.740773,0.88499,0.980484,0.46769,0.573865,0.930392,0.809147,0.038169,0.770411,0.302892,0.926031,0.779555,0.456923,0.858178,0.0228239,0.0247037,0.181425,0.643161,0.848531,0.833955,0.0217783,0.473286,0.341066,0.709968,0.599658,0.999612,0.703988,0.611036,0.690507,0.0596122,0.280865,0.576512,0.887911,0.672605,0.662799,0.0496212,0.0567209,0.616333,0.63264,0.00323671,0.34577,0.847841,0.0612696,0.29104,0.453806,0.936091,0.214133,0.252192,0.598281,0.897311,0.932436,0.620611,0.433024,0.409906,0.381734,0.859818,0.693166,0.0566037,0.341772,0.392716,0.178162,0.350595,0.430578,0.885279,0.576525,0.651234,0.898361,0.488717,0.0438828,0.515477,0.833851,0.969981,0.929459,0.552284,0.574351,0.308135,0.422115,0.201248,0.784911,0.150643,0.528064,0.709977,0.102537,0.802606,0.247818,0.198781,0.321651,0.786071,0.430359,0.22606,0.85039,0.16952,0.65009,0.994304,0.311654,0.357142,0.732536,0.296058,0.0392367,0.0949949,0.997601,0.40422,0.929034,0.460774,0.28859,0.325257,0.986265,0.599547,0.75787,0.448227,0.899926,0.498946,0.778517,0.396186,0.83559,0.101242,0.236949,0.387741,0.807854,0.510008,0.256965,0.399779,0.0994228,0.0258984,0.201959,0.224145,0.076993,0.857993,0.540219,0.18676,0.530428,0.893749,0.425832,0.973232,0.630383,0.0536844,0.0853073,0.218891,0.423995,0.464787,0.324372,0.536225,0.730139,0.85066,0.296921,0.85496,0.438157,0.982127,0.951032,0.754459,0.370196,0.601506,0.129975,0.657751,0.597094,0.905966,0.378828,0.491442,0.358569,0.651705,0.275376,0.571694,0.972078,0.697132,0.693348,0.732766,0.76705,0.0349061,0.372949,0.813114,0.226457,0.578264,0.0463869,0.19319,0.145136,0.381399,0.486319,0.170926,0.709913,0.874325,0.650918,0.213913,0.208915,0.828159,0.0186458,0.252438,0.0276132,0.964017,0.529181,0.650489,0.100212,0.456493,0.198148,0.303695,0.72506,0.674634,0.834416,0.0144619,0.619917,0.499432,0.803498,0.632356,0.511561,0.309152,0.347269,0.920405,0.860231,0.764128,0.35672,0.69746,0.116481,0.654851,0.173786,0.778368,0.805943,0.0848223,0.769609,0.0864346,0.0746669,0.85567,0.794221,0.651833,0.184486,0.364017,0.579101,0.243005,0.735226,0.711892,0.83613,0.149102,0.136816,0.0652721,0.281203,0.172298,0.321578,0.0222078,0.285963,0.922293,0.530134,0.00912249,0.90998,0.952576,0.482386,0.183439,0.811237,0.97418,0.380796,0.594107,0.870886,0.70789,0.933409,0.325973,0.158148,0.628926,0.140374,0.514235,0.41426,0.297689,0.0242808,0.0624886,0.109506,0.523083,0.420506,0.910258,0.583856,0.0485719,0.133131,0.990827,0.945979,0.277181,0.425746,0.714337,0.654222,0.87062,0.371454,0.43005,0.0352734,0.99378,0.40601,0.84562,0.839656,0.467165,0.418492,0.550221,0.010334,0.503484,0.31129,0.801348,0.652234,0.862561,0.29938,0.201847,0.901024,0.277515,0.283952,0.714509,0.482658,0.326951,0.492125,0.366752,0.823865,0.417234,0.628883,0.102867,0.326552,0.744737,0.178564,0.129779,0.0216063,0.0529506,0.754441,0.188717,0.650221,0.584257,0.200802,0.266961,0.580624,0.458901,0.216877,0.971955,0.345146,0.834923,0.365815,0.213166,0.425803,0.0902446,0.464382,0.876367,0.977815,0.32838,0.0778283,0.135499,0.420052,0.633682,0.452002,0.00711316,0.00239676,0.44573,0.565031,0.674217,0.59823,0.997865,0.504746,0.228509,0.253042,0.455423,0.44561,0.177321,0.475647,0.508938,0.478343,0.771917,0.654005,0.555994,0.901634,0.555719,0.589951,0.416111,0.530607,0.641396,0.741343,0.530108,0.471084,0.749829,0.315261,0.0796723,0.964055,0.362908,0.703677,0.358025,0.299487,0.584206,0.555084,0.168191,0.944608,0.581418,0.280931,0.60937,0.411067,0.759978,0.939207,0.501468,0.992298,0.138922,0.83404,0.234503,0.322942,0.0694394,0.219143,0.609125,0.277126,0.47373,0.406958,0.731484,0.250339,0.820646,0.970419,0.165135,0.969247,0.8555,0.618251,0.0480886,0.149445,0.189884,0.887094,0.247262,0.524173,0.0701137,0.534075,0.117752,0.957283,0.111155,0.769482,0.829857,0.760056,0.00991184,0.779994,0.921034,0.737515,0.583513,0.10964,0.0718746,0.919468,0.491201,0.0365884,0.627359,0.0473204,0.836191,0.801172,0.0454589,0.686584,0.743801,0.49399,0.746584,0.633873,0.135884,0.372151,0.144989,0.870878,0.350131,0.648319,0.856085,0.00816655,0.613041,0.660073,0.893496,0.737032,0.744454,0.662553,0.142057,0.187394,0.637146,0.438037,0.64399,0.506878,0.289476,0.258369,0.9727,0.774844,0.677912,0.934877,0.841987,0.108314,0.0373541,0.637759,0.212305,0.475629,0.258982,0.757381,0.97377,0.396795,0.55827,0.651523,0.78176,0.189921,0.427386,0.803852,|0.284317,0.194441,0.301613,0.404448,0.134265,0.054408,0.153699,0.2681,0.896977,0.775666,0.972242,0.775243,0.889919,0.0239109,0.0240669,0.230076,0.516799,0.791139,0.253694,0.132138,0.226853,0.185102,0.2613,0.965851,0.933229,0.631397,0.499871,0.773232,0.241144,0.240125,0.242047,0.129001,0.559803,0.544262,0.871979,0.675933,0.780088,0.0515381,0.621557,0.111055,0.0796553,0.871335,0.0866351,0.213113,0.62314,0.30052,0.795594,0.300454,0.0967913,0.161251,0.147891,0.0391877,0.353269,0.646154,0.514068,0.239337,0.221005,0.298167,0.383179,0.671467,0.265262,0.524462,0.842113,0.305898,0.398967,0.25876,0.546579,0.808034,0.801619,0.121759,0.407866,0.486236,0.689608,0.43173,0.140191,0.765282,0.238873,0.8104,0.897901,0.613622,0.129262,0.766212,0.0970938,0.0226968,0.827268,0.600486,0.844249,0.898523,0.0734363,0.660344,0.812893,0.770661,0.575273,0.523541,0.355214,0.203594,0.888137,0.829142,0.538305,0.207125,0.444865,0.781664,0.420099,0.497118,0.946242,0.338392,0.222485,0.905597,0.377416,0.807333,0.488496,0.117956,0.916918,0.914453,0.98146,0.0488388,0.422842,0.208277,0.24477,0.342483,0.862381,0.767007,0.26949,0.652098,0.458155,0.832568,0.317648,0.298962,0.487015,0.794582,0.825935,0.928734,0.166726,0.905192,0.125953,0.473988,0.722562,0.353528,0.502004,0.476812,0.823575,0.843606,0.94769,0.621245,0.305882,0.952664,0.425918,0.920631,0.537525,0.455417,0.814712,0.461026,0.760515,0.892081,0.0377002,0.711321,0.480961,0.510051,0.29827,0.789183,0.0547628,0.457737,0.0525255,0.75065,0.293248,0.65582,0.56486,0.750002,0.625129,0.314645,0.757138,0.87369,0.237026,0.278613,0.0678802,0.0532798,0.599159,0.135015,0.927057,0.877922,0.672442,0.640041,0.286532,0.318849,0.215664,0.174229,0.63177,0.548986,0.396264,0.123046,0.138025,0.481688,0.494857,0.340153,0.179617,0.764171,0.404774,0.539745,0.105139,0.180645,0.775134,0.292428,0.300274,0.360946,0.81765,0.730249,0.511336,0.423475,0.169459,0.160603,0.752286,0.897356,0.655787,0.621909,0.697157,0.81585,0.590287,0.759395,0.496204,0.154064,0.303166,0.665517,0.286488,0.588987,0.662545,0.897488,0.476833,0.891981,0.3091,0.413405,0.126294,0.751002,0.610192,0.472561,0.376642,0.213694,0.690422,0.110038,0.770888,0.488644,0.72444,0.578314,0.337712,0.460991,0.188267,0.373449,0.348392,0.542113,0.800951,0.972266,0.937856,0.165092,0.592361,0.256959,0.621489,0.215042,0.507222,0.589605,0.625287,0.491262,0.7703,0.909482,0.894352,0.382497,0.641382,0.129841,0.152864,0.727219,0.695826,0.466383,0.895045,0.339289,0.838818,0.798198,0.828149,0.719056,0.906817,0.775547,0.218712,0.732642,0.0939579,0.492252,0.976399,0.514134,0.0349247,0.505467,0.67749,0.606971,0.481179,0.293585,0.0118194,0.254155,0.68836,0.0542693,0.531208,0.667797,0.270082,0.0611534,0.00565577,0.726409,0.575132,0.554586,0.713891,0.896933,0.776397,0.245117,0.914402,0.875285,0.28944,0.764407,0.436219,0.0129812,0.0144385,0.602499,0.563883,0.31429,0.244216,0.425134,0.395188,0.737578,0.55515,0.431017,0.601583,0.0638971,0.433651,0.313001,0.750798,0.307274,0.033444,0.0866648,0.0675713,0.915473,0.580436,0.825826,0.633837,0.210698,0.527973,0.878172,0.207169,0.293882,0.805163,0.428644,0.20912,0.259327,0.583667,0.54433,0.612532,0.778517,0.692046,0.683702,0.0857072,0.590727,0.226217,0.219462,0.492766,0.135111,0.492837,0.244525,0.312455,0.614108,0.61406,0.983353,0.753573,0.11885,0.874166,0.833605,0.217859,0.681177,0.448052,0.338014,0.220144,0.519857,0.500409,0.00364602,0.364984,0.131527,0.755879,0.267816,0.322799,0.141294,0.595426,0.372626,0.798596,0.731748,0.762413,0.958783,0.898949,0.893123,0.113474,0.677092,0.699266,0.987213,0.851977,0.131851,0.366322,0.00155956,0.587628,0.930797,0.637193,0.903825,0.897663,0.0644739,0.356403,0.0922217,0.907632,0.930079,0.403162,0.241614,0.669053,0.907983,0.915164,0.419645,0.33901,0.788162,0.998917,0.762589,0.577098,0.624248,0.740065,0.0392005,0.986155,0.675752,0.844152,0.108877,0.53402,0.601149,0.652218,0.58899,0.10506,0.233936,0.406358,0.100234,0.684922,0.204431,0.599996,0.544634,0.796727,0.585781,0.568455,0.423702,0.230486,0.611425,0.33836,0.0926976,0.430449,0.821834,0.471313,0.779474,0.490401,0.238506,0.830269,0.787858,0.0709259,0.962094,0.136749,0.476974,0.972843,0.970877,0.818689,0.358417,0.875062,0.732009,0.898588,0.727063,0.638698,0.47658,0.899966,0.281349,0.512883,0.0792389,0.0329836,0.288708,0.0554265,0.206223,0.690261,0.305734,0.53036,0.0364857,0.3719,0.273609,0.732791,0.438747,0.56348,0.84148,0.0340156,0.278688,0.517903,0.452211,0.691251,0.205742,0.975276,0.699053,0.479911,0.115467,0.814663,0.593541,0.0522537,0.848204,0.897446,0.140932,0.688555,0.0281461,0.953071,0.920853,0.866161,0.233907,0.471666,0.816441,0.295089,0.921986,0.386524,0.177402,0.526077,0.285106,0.787805,0.879286,0.0745474,0.0784124,0.179168,0.810277,0.547873,0.903912,0.108284,0.885705,0.786774,0.950646,0.10537,0.680573,0.250845,0.0946597,0.574232,0.628004,0.317861,0.708797,0.844167,0.307899,0.898222,0.6305,0.721033,0.667819,0.601627,0.244791,0.774092,0.502513,0.481475,0.632018,0.795441,0.66059,0.218438,0.77436,0.077444,0.173002,0.0957883,0.262964,0.455455,0.187329,0.0262055,0.101351,0.121812,0.530386,0.725481,0.963311,0.267756,0.514993,0.86564,0.901145,0.193158,0.105206,0.904836,0.147836,0.222509,0.832717,0.681771,0.976415,0.791888,0.599634,0.0245786,0.0830424,0.15758,0.444142,0.118169,0.563011,0.439594,0.848797,0.871287,0.336484,0.898639,0.0744717,0.719878,0.658647,0.440033,0.32047,0.65078,0.247518,0.982277,0.957095,0.153328,0.891638,0.554611,0.516916,0.639148,0.347331,0.132168,0.258416,0.4215,0.951983,0.64778,0.762971,0.591776,0.431631,0.383234,0.539393,0.653426,0.570056,0.518025,0.892702,0.135657,0.89521,0.229713,0.211079,0.689161,0.776273,0.28428,0.210195,0.530717,0.530166,0.0335702,0.124883,0.698893,0.932857,0.0217214,0.0617319,0.373901,0.602101,0.702788,0.235691,0.634224,0.546225,0.354763,0.572629,0.0575768,0.973539,0.121217,0.237463,0.777655,0.614037,0.275412,0.0503713,0.982911,0.0975141,0.489,0.715261,0.451162,0.0353025,0.898219,0.621683,0.512915,0.810235,0.359571,0.346559,0.962896,0.571782,0.803857,0.564628,0.967374,0.894061,0.472642,0.145302,0.774953,0.13156,0.0656173,0.14583,0.271692,0.622085,0.115497,0.422528,0.488556,0.267721,0.745063,0.52757,0.688916,0.0895812,0.679454,0.63564,0.345883,0.217983,0.330249,0.925157,0.680409,0.632285,0.437653,0.564249,0.895281,0.885532,0.312392,0.362624,0.911142,0.555429,0.932909,0.725204,0.446481,0.869594,0.498728,0.366005,0.560759,0.437718,0.337443,0.362623,0.92175,0.145244,0.00789976,0.0273248,0.883736,0.371644,0.408221,0.200808,0.675176,0.926293,0.81317,0.79455,0.658825,0.570204,0.172715,0.775769,0.776905,0.71636,0.441866,0.578057,0.52823,0.220431,0.259062,0.716642,0.0730375,0.867377,0.821613,0.85206,0.751167,0.318487,0.626965,0.799031,0.624677,0.27433,0.577944,0.185339,0.802426,0.792156,0.868207,0.353823,0.798659,0.0915566,0.516195,0.093326,0.0643324,0.40533,0.200794,0.609001,0.544542,0.374968,0.803246,0.458102,0.602722,0.485304,0.411679,0.94897,0.683461,0.800934,0.471574,0.310507,0.594745,0.701421,0.0963876,0.537754,0.136108,0.479632,0.20179,0.661248,0.566415,0.254053,0.221776,0.383373,0.329876,0.355049,0.794521,0.729179,0.391935,0.73017,0.814346,0.439493,0.343513,0.598519,0.543605,0.806444,0.915306,0.117777,0.750392,0.657466,0.57976,0.635727,0.424723,0.547819,0.46385,0.610438,0.391183,0.771751,0.389972,0.783667,0.709682,0.713476,0.0504121,0.529751,0.101683,0.373313,0.549406,0.655275,0.417523,0.671025,0.166022,0.255057,0.590448,0.111967,0.476536,0.628176,0.809377,0.561565,0.868149,0.302348,0.513068,0.899742,0.922774,0.423802,0.594413,0.948032,0.841802,0.825389,0.995889,0.709865,0.00293332,0.288339,0.899332,0.0543069,0.532923,0.419074,0.217779,0.397419,0.586139,0.57509,0.307501,0.457416,0.744306,0.894329,0.446111,0.595335,0.760592,0.0981454,0.787625,0.231016,0.359852,0.246657,0.227894,0.035364,0.793375,0.638188,0.713664,0.366772,0.980059,0.466455,0.895569,0.300769,0.450726,0.792532,0.803101,0.601869,0.139092,0.331964,0.720346,0.288898,0.152633,0.360172,0.939083,0.847254,0.645264,0.64474,0.152971,0.222079,0.227251,0.604467,0.12575,0.192042,0.811527,0.30721,0.272916,0.710932,0.250797,0.0311698,0.578046,0.219541,0.276599,0.390419,0.483947,0.929311,0.466511,0.997693,0.849957,0.720279,0.194794,0.85802,0.535491,0.656303,0.0598484,0.924272,0.72719,0.610664,0.773575,0.849443,0.418743,0.626048,0.561634,0.825276,0.0632048,0.633959,0.621272,0.926044,0.453003,0.21999,0.115607,0.928746,0.67067,0.0496998,0.289562,0.233018,0.291469,0.019022,0.00629336,0.782061,0.908,0.783746,0.23795,0.700099,0.361472,0.232802,0.686927,0.576974,0.0285574,0.847291,0.306809,0.499665,0.476555,0.429732,0.649241,0.745993,0.500329,0.720779,0.48022,0.191548,0.0262953,0.35673,0.264099,0.177875,0.699651,0.883836,0.0824326,0.109171,0.450489,0.682303,0.841318,0.955376,0.924651,0.532712,0.593869,0.887309,0.163664,0.510268,0.313595,0.414665,0.174039,0.869492,0.369491,0.290605,0.75074,0.720719,0.242702,0.670865,0.424435,0.463021,0.818989,0.114551,0.354684,0.686094,0.419851,0.732374,0.866029,0.682498,0.891425,0.646191,0.23364,0.230342,0.353264,0.725883,0.397036,0.426256,|0.631072,0.555807,0.661183,0.657765,0.527679,0.302374,0.612002,0.636119,0.944429,0.988628,0.225717,0.128163,0.889998,0.0869425,0.0587395,0.906152,0.837407,0.991787,0.0638285,0.660592,0.0993699,0.0279192,0.638928,0.456184,0.400921,0.828248,0.256258,0.598968,0.910254,0.0638121,0.148878,0.285206,0.697111,0.514769,0.722369,0.923741,0.485422,0.945866,0.253923,0.785632,0.998411,0.0173838,0.564079,0.208444,0.228938,0.824237,0.683209,0.453688,0.520021,0.943903,0.0260256,0.967465,0.932303,0.185162,0.31351,0.236472,0.00747806,0.4067,0.0572678,0.384848,0.939111,0.145161,0.810326,0.425597,0.396177,0.819447,0.348332,0.729425,0.812814,0.84564,0.605387,0.140897,0.861483,0.726979,0.459524,0.865681,0.010755,0.920166,0.972118,0.474469,0.620665,0.710397,0.837597,0.254639,0.563005,0.685269,0.040633,0.718094,0.267822,0.147571,0.245903,0.121501,0.727077,0.318604,0.304675,0.0359286,0.658273,0.893796,0.272132,0.470882,0.176576,0.714899,0.0453542,0.787639,0.844817,0.33823,0.462113,0.652019,0.786927,0.12994,0.357401,0.495093,0.747983,0.665665,0.901525,0.379169,0.578355,0.0341654,0.344552,0.548168,0.745109,0.932722,0.983454,0.540747,0.348218,0.00594062,0.0334237,0.54411,0.0195007,0.172426,0.400156,0.986462,0.595916,0.629067,0.809147,0.537859,0.0319977,0.37259,0.542662,0.737839,0.47176,0.724231,0.514111,0.331989,0.953204,0.0604875,0.434758,0.542281,0.41565,0.0306987,0.920876,0.437981,0.948623,0.114318,0.76662,0.516197,0.0394878,0.837319,0.276008,0.0380195,0.459563,0.0108887,0.257998,0.0426521,0.630353,0.298166,0.527091,0.454042,0.309183,0.691393,0.168971,0.698334,0.517175,0.364513,0.235479,0.579041,0.421959,0.332194,0.539432,0.923348,0.742266,0.136274,0.672123,0.738622,0.287802,0.933558,0.364363,0.0703207,0.468378,0.44584,0.160085,0.934858,0.794846,0.24908,0.701035,0.426306,0.501561,0.107502,0.208861,0.766031,0.0455579,0.666004,0.398587,0.174799,0.783955,0.12989,0.53609,0.171522,0.133869,0.309799,0.722099,0.0879523,0.136436,0.962758,0.0844696,0.379011,0.691727,0.349568,0.717418,0.184501,0.871439,0.632294,0.363717,0.610186,0.603994,0.382497,0.409616,0.342737,0.183372,0.237312,0.442483,0.399955,0.317505,0.530468,0.743644,0.779311,0.071533,0.889726,0.97395,0.884873,0.25963,0.0120289,0.275025,0.65917,0.0303494,0.257357,0.461416,0.931649,0.485674,0.993366,0.305726,0.579827,0.92241,0.813858,0.515475,0.963804,0.207173,0.00926131,0.184847,0.438806,0.53626,0.337462,0.656657,0.798607,0.918257,0.940929,0.99299,0.166906,0.129605,0.620103,0.509584,0.121593,0.936482,0.327053,0.800852,0.91632,0.945675,0.122681,0.388972,0.212617,0.756004,0.664721,0.596794,0.705028,0.504952,0.0310137,0.530234,0.116109,0.954449,0.45994,0.429581,0.357972,0.741067,0.48634,0.0314315,0.0260409,0.375548,0.250662,0.142954,0.336539,0.272851,0.588951,0.781236,0.104354,0.128024,0.935421,0.552908,0.978342,0.0218583,0.512386,0.69532,0.556612,0.806568,0.0858015,0.555517,0.0744542,0.233301,0.370158,0.920761,0.674866,0.396987,0.721231,0.0520015,0.365962,0.993735,0.625825,0.529107,0.201251,0.171089,0.777391,0.0821728,0.228735,0.394385,0.0162555,0.542747,0.203215,0.665515,0.00390607,0.217665,0.0804744,0.914934,0.0558415,0.573888,0.211609,0.975223,0.887518,0.0984877,0.232179,0.350458,0.437021,0.417174,0.512502,0.0488339,0.828122,0.402395,0.624018,0.607861,0.097351,0.0679314,0.443964,0.602983,0.230413,0.578414,0.908051,0.964809,0.411227,0.0916492,0.275969,0.993805,0.113954,0.188884,0.245127,0.710972,0.986233,0.719303,0.511983,0.532966,0.636045,0.577004,0.731516,0.847261,0.898834,0.690847,0.973409,0.41934,0.124115,0.106886,0.0802675,0.658942,0.879449,0.814227,0.790756,0.629873,0.607203,0.403902,0.371235,0.668622,0.544462,0.765314,0.549075,0.251492,0.534552,0.730557,0.690033,0.782663,0.572273,0.472385,0.0920486,0.0996936,0.32594,0.805941,0.878101,0.35597,0.56861,0.510327,0.806468,0.165516,0.77565,0.485904,0.638534,0.0281624,0.622083,0.577669,0.0372518,0.39392,0.605829,0.610854,0.601273,0.665363,0.784171,0.68967,0.0985274,0.344616,0.335108,0.547154,0.269481,0.534143,0.586084,0.147317,0.483501,0.690526,0.0559467,0.0902865,0.158324,0.111767,0.836591,0.47458,0.257921,0.954751,0.854454,0.999688,0.177748,0.442801,0.447695,0.423223,0.706663,0.195176,0.0612988,0.896069,0.0521312,0.407687,0.120352,0.673918,0.777499,0.263662,0.34807,0.0273368,0.496314,0.176304,0.310242,0.0533299,0.95475,0.787721,0.391277,0.302585,0.744309,0.737684,0.795064,0.0620451,0.40609,0.10807,0.326683,0.963987,0.612593,0.659438,0.0505344,0.964318,0.779893,0.215015,0.849791,0.288699,0.975284,0.806362,0.17573,0.477688,0.833329,0.936184,0.472164,0.433364,0.245638,0.678628,0.811675,0.302833,0.0978997,0.0998977,0.0679644,0.388253,0.78368,0.229861,0.491896,0.341916,0.504449,0.116159,0.545246,0.766388,0.347761,0.24005,0.258433,0.183216,0.176812,0.696335,0.657979,0.316732,0.701048,0.374462,0.506176,0.098772,0.130058,0.706653,0.518916,0.652184,0.00811493,0.994091,0.520285,0.00276309,0.266326,0.81803,0.0958621,0.82408,0.136751,0.00492525,0.355177,0.405917,0.6647,0.888292,0.888964,0.69805,0.66033,0.171065,0.63131,0.127126,0.542936,0.824273,0.672783,0.600136,0.102234,0.998958,0.492104,0.0677221,0.768952,0.469815,0.646042,0.682742,0.746352,0.470091,0.0682374,0.381527,0.327285,0.799404,0.814762,0.418514,0.871968,0.0336524,0.0297444,0.433134,0.698495,0.924619,0.895843,0.215623,0.403391,0.811857,0.595556,0.927485,0.79912,0.788796,0.716397,0.139052,0.682661,0.2617,0.214721,0.833842,0.283693,0.683992,0.095292,0.894773,0.235379,0.713021,0.787975,0.894766,0.400141,0.876114,0.146876,0.0319178,0.34545,0.0866339,0.754946,0.405657,0.780555,0.922818,0.844743,0.0568883,0.63089,0.802107,0.773083,0.614185,0.965463,0.765348,0.097064,0.977903,0.338488,0.98586,0.822569,0.876053,0.0379509,0.503686,0.204006,0.274115,0.405037,0.479716,0.382145,0.380557,0.940228,0.805922,0.508235,0.442019,0.0418,0.389984,0.614349,0.956656,0.733372,0.567822,0.593616,0.502608,0.0989419,0.0294877,0.972927,0.273265,0.716051,0.362456,0.964431,0.664615,0.345931,0.808658,0.691958,0.831911,0.441439,0.66593,0.912045,0.614299,0.757394,0.475877,0.825374,0.263217,0.4672,0.644776,0.363114,0.528773,0.35887,0.169751,0.999766,0.835542,0.695657,0.463532,0.941194,0.189411,0.921455,0.658672,0.995911,0.488341,0.94265,0.664971,0.479471,0.894981,0.707637,0.756193,0.0579095,0.605603,0.111019,0.945409,0.458231,0.176884,0.121153,0.633966,0.188966,0.782459,0.961668,0.162061,0.524714,0.686624,0.53207,0.163945,0.724192,0.370489,0.798701,0.138771,0.128096,0.14197,0.845411,0.555938,0.622516,0.542629,0.202897,0.594243,0.696589,0.0962915,0.180995,0.645009,0.939331,0.929613,0.660514,0.0820501,0.300468,0.592257,0.0769265,0.430954,0.804839,0.499995,0.855266,0.0803117,0.828388,0.265729,0.620492,0.880519,0.81108,0.30671,0.577017,0.41694,0.533914,0.132024,0.083243,0.795699,0.881017,0.914724,0.184562,0.39941,0.474622,0.342868,0.616793,0.942995,0.0920954,0.705886,0.659078,0.823663,0.538467,0.419183,0.0917242,0.229337,0.0834404,0.569859,0.0310087,0.102949,0.978388,0.428624,0.280871,0.610678,0.581993,0.446855,0.128435,0.102201,0.734075,0.993078,0.535369,0.698365,0.0807145,0.851548,0.589053,0.250044,0.194047,0.103711,0.861469,0.0436026,0.691373,0.218633,0.50824,0.698738,0.166029,0.141017,0.21508,0.472738,0.28052,0.00293064,0.936471,0.964774,0.426587,0.756387,0.7354,0.99301,0.335625,0.90858,0.76735,0.518755,0.782439,0.0589209,0.999087,0.00144047,0.672811,0.182633,0.590495,0.664245,0.206658,0.138396,0.943448,0.417081,0.221326,0.128055,0.26946,0.0383977,0.740463,0.37399,0.764437,0.901605,0.0904743,0.735459,0.501064,0.274234,0.665852,0.713601,0.873499,0.330413,0.55522,0.792102,0.557803,0.292012,0.8359,0.0631053,0.227018,0.168584,0.548243,0.687428,0.431823,0.97136,0.395884,0.788819,0.438793,0.698485,0.15404,0.630314,0.354911,0.213013,0.37869,0.0722048,0.975743,0.671747,0.219438,0.376064,0.798064,0.935727,0.249269,0.978644,0.83067,0.409172,0.582468,0.561678,0.0457154,0.548246,0.55561,0.107238,0.987992,0.960295,0.851282,0.321025,0.557115,0.40003,0.375892,0.243741,0.0933628,0.457922,0.109304,0.912643,0.964851,0.461233,0.15093,0.565126,0.524681,0.184487,0.822216,0.011087,0.644031,0.525136,0.314826,0.000394583,0.36161,0.073111,0.116085,0.498531,0.39955,0.893509,0.454221,0.889815,0.728699,0.329937,0.575739,0.804288,0.485027,0.764632,0.388915,0.52004,0.485794,0.112557,0.500882,0.0786467,0.13179,0.612123,0.958079,0.989154,0.898918,0.065353,0.750616,0.512779,0.483983,0.514272,0.311268,0.264418,0.891773,0.484209,0.505778,0.136322,0.882486,0.241601,0.768232,0.394405,0.0354149,0.770128,0.513308,0.658597,0.477745,0.788699,0.383034,0.435668,0.14363,0.647182,0.863329,0.325213,0.186405,0.199432,0.176719,0.592322,0.29465,0.666031,0.0207987,0.429374,0.462833,0.361862,0.0736955,0.106119,0.836678,0.69542,0.685503,0.838539,0.107201,0.45832,0.480028,0.129113,0.0857919,0.939367,0.660488,0.0722753,0.381306,0.139872,0.510757,0.750017,0.271521,0.934001,0.0325716,0.929055,0.690301,0.516922,0.759785,0.113757,0.0414079,0.0451973,0.723996,0.54474,0.993295,0.293989,0.849561,0.623702,0.824572,0.837068,0.661264,0.267194,0.00640833,0.546091,0.375432,0.405773,0.407083,0.909606,0.681489,0.358096,0.0872438,|0.147384,0.327036,0.183922,0.487779,0.0809498,0.122502,0.682608,0.333373,0.5581,0.748921,0.481733,0.637735,0.665859,0.218274,0.6477,0.925379,0.660526,0.535701,0.132792,0.363823,0.151937,0.469179,0.447316,0.0827286,0.386705,0.895988,0.211769,0.742127,0.0887301,0.100916,0.505711,0.29568,0.158676,0.48345,0.537792,0.0500792,0.31824,0.458242,0.480131,0.251281,0.317823,0.56072,0.170587,0.49418,0.191262,0.708085,0.617228,0.476335,0.42237,0.327956,0.703018,0.779373,0.19158,0.332171,0.687675,0.0538741,0.425032,0.48293,0.219061,0.10475,0.480313,0.168268,0.530886,0.796431,0.668958,0.493264,0.12852,0.233546,0.100308,0.795358,0.906427,0.952457,0.992119,0.529058,0.628508,0.0273541,0.145719,0.0601134,0.620295,0.351643,0.830095,0.0449914,0.806208,0.899313,0.930417,0.667938,0.0367455,0.932939,0.6819,0.408442,0.529908,0.939302,0.607138,0.14199,0.761878,0.613647,0.680304,0.941016,0.348071,0.237742,0.576993,0.358847,0.671975,0.43236,0.723175,0.862204,0.703196,0.0653917,0.750301,0.345567,0.501512,0.852598,0.691473,0.683325,0.773655,0.723326,0.149594,0.290756,0.64266,0.0828949,0.890915,0.783805,0.96532,0.907267,0.148903,0.161232,0.989528,0.817765,0.41585,0.847756,0.263361,0.466332,0.211819,0.843308,0.0403945,0.144634,0.0404794,0.692744,0.19685,0.181331,0.315262,0.0739457,0.307324,0.854103,0.287779,0.482182,0.61465,0.155444,0.423082,0.125924,0.179689,0.149083,0.0366077,0.508857,0.154202,0.437419,0.412375,0.933911,0.372648,0.573083,0.177366,0.36849,0.363971,0.494295,0.034081,0.72306,0.974404,0.609905,0.412298,0.320247,0.041024,0.300631,0.36623,0.634819,0.724692,0.149819,0.589359,0.124521,0.106723,0.415737,0.339924,0.998597,0.787037,0.371271,0.591922,0.700156,0.581679,0.996685,0.162348,0.0722182,0.505432,0.386981,0.422807,0.583436,0.0832171,0.549804,0.649145,0.672518,0.453249,0.751853,0.371,0.552886,0.337354,0.469453,0.232295,0.686152,0.779241,0.0751006,0.150853,0.789142,0.080119,0.956884,0.504928,0.896678,0.168679,0.423754,0.477008,0.203442,0.459878,0.676612,0.474507,0.352192,0.0595281,0.746957,0.476897,0.834187,0.825578,0.416162,0.737042,0.221698,0.546821,0.741623,0.955578,0.646854,0.426984,0.4498,0.628323,0.867741,0.304033,0.824589,0.435526,0.75232,0.914808,0.490613,0.0257666,0.62217,0.13587,0.125381,0.161361,0.995852,0.901212,0.492715,0.407272,0.388939,0.58458,0.390673,0.35825,0.238935,0.695715,0.572045,0.113499,0.447163,0.00864917,0.20581,0.367316,0.291039,0.718756,0.79488,0.343106,0.836344,0.50694,0.639481,0.633207,0.905616,0.76232,0.396853,0.325331,0.768513,0.869255,0.0896528,0.108864,0.854996,0.911664,0.220418,0.0278103,0.855854,0.754705,0.1348,0.335839,0.12394,0.29231,0.538677,0.448508,0.683255,0.419735,0.269667,0.997637,0.208528,0.940956,0.468644,0.604316,0.241274,0.110113,0.891821,0.532983,0.708542,0.251913,0.621019,0.377371,0.522735,0.847646,0.456154,0.0631955,0.0451197,0.233152,0.743548,0.23904,0.64764,0.881402,0.774517,0.993153,0.0925179,0.189699,0.355065,0.375271,0.434622,0.0130439,0.218717,0.445397,0.386407,0.345776,0.530767,0.4004,0.156308,0.407521,0.662414,0.638259,0.0670402,0.509518,0.449623,0.55843,0.15692,0.0432776,0.632242,0.0116536,0.426766,0.0982043,0.14173,0.380303,0.546144,0.0738132,0.757093,0.325108,0.0468081,0.92403,0.950445,0.246296,0.405463,0.465189,0.9355,0.552114,0.851981,0.91518,0.234863,0.818274,0.56208,0.617753,0.900352,0.355882,0.147784,0.63113,0.282174,0.369834,0.298199,0.343412,0.565627,0.662691,0.635522,0.116838,0.829962,0.192806,0.669378,0.377258,0.973051,0.0170036,0.656081,0.667901,0.883293,0.315349,0.618435,0.796278,0.455183,0.880862,0.958281,0.73338,0.103396,0.322624,0.143117,0.33166,0.939681,0.120332,0.577432,0.994074,0.354885,0.717394,0.173998,0.206919,0.087472,0.91789,0.808004,0.0245197,0.505494,0.0872302,0.686881,0.306423,0.121869,0.271699,0.453565,0.776544,0.109437,0.574575,0.515822,0.239167,0.247179,0.371544,0.45162,0.204723,0.488279,0.759599,0.731684,0.105204,0.486345,0.252999,0.442598,0.309328,0.184368,0.0352951,0.300747,0.33887,0.37555,0.551994,0.712231,0.0518797,0.279188,0.850989,0.450541,0.675884,0.521889,0.0188223,0.253058,0.661527,0.0175526,0.96815,0.0818463,0.522216,0.526887,0.124604,0.131625,0.228734,0.321585,0.54417,0.930971,0.471659,0.952887,0.959855,0.224841,0.420522,0.542892,0.0650484,0.176176,0.967778,0.700743,0.716163,0.108019,0.0742463,0.561183,0.974958,0.216114,0.480872,0.429953,0.86038,0.61687,0.25768,0.0339646,0.755549,0.764415,0.798788,0.772238,0.924036,0.17853,0.365076,0.115092,0.861688,0.992599,0.711392,0.918593,0.2076,0.89587,0.727582,0.784238,0.652863,0.139472,0.0841891,0.302316,0.995339,0.0661925,0.953341,0.953825,0.125847,0.854494,0.680494,0.982467,0.314141,0.854704,0.328889,0.383317,0.957874,0.14752,0.959719,0.266733,0.933795,0.227768,0.728058,0.738305,0.258879,0.248663,0.455676,0.0618363,0.0320635,0.11987,0.231405,0.66728,0.886321,0.194676,0.344711,0.194541,0.732102,0.844547,0.600928,0.234509,0.726317,0.820144,0.51597,0.00557917,0.149893,0.900978,0.859587,0.155925,0.0322527,0.383066,0.936899,0.191008,0.509479,0.890549,0.225363,0.96853,0.695138,0.996768,0.590461,0.840662,0.316195,0.0587732,0.841289,0.513804,0.36926,0.0251812,0.812848,0.355343,0.117804,0.731875,0.986952,0.640772,0.550328,0.158313,0.401331,0.258655,0.0749534,0.900891,0.82281,0.720855,0.48012,0.551628,0.929452,0.628705,0.70881,0.62493,0.578183,0.879247,0.84678,0.436639,0.644028,0.0223732,0.488754,0.713018,0.665461,0.426813,0.311201,0.289743,0.735206,0.706959,0.204683,0.412449,0.624971,0.520795,0.616862,0.0131604,0.72648,0.00716519,0.160011,0.609245,0.252347,0.561831,0.233272,0.37099,0.448204,0.309611,0.267839,0.182963,0.387844,0.0790859,0.309887,0.538899,0.267161,0.871952,0.874275,0.0791309,0.0353397,0.154453,0.992543,0.863023,0.403748,0.729305,0.456685,0.11647,0.998481,0.997316,0.616538,0.517878,0.325555,0.376858,0.858388,0.379681,0.0528222,0.440061,0.0187778,0.400808,0.454391,0.577465,0.66802,0.605439,0.597382,0.36088,0.733852,0.0995282,0.182012,0.171668,0.671884,0.808153,0.251003,0.0207866,0.824948,0.991947,0.684186,0.740232,0.631666,0.433854,0.35529,0.421532,0.650903,0.668378,0.732995,0.967233,0.214491,0.609054,0.801133,0.777918,0.900571,0.505929,0.674343,0.40306,0.999933,0.404602,0.452379,0.307272,0.338069,0.0311974,0.864491,0.336885,0.582686,0.602601,0.392404,0.38835,0.260032,0.161171,0.574251,0.423972,0.488461,0.757928,0.960978,0.461924,0.811996,0.622035,0.438527,0.265118,0.131449,0.124598,0.0327869,0.112751,0.571699,0.685461,0.441599,0.0423429,0.0864882,0.50509,0.112745,0.83802,0.587878,0.0993708,0.425476,0.0971036,0.843143,0.651731,0.26053,0.71276,0.593445,0.292957,0.974989,0.550204,0.836272,0.107281,0.170563,0.28224,0.281563,0.814569,0.337976,0.907738,0.0106759,0.348024,0.788974,0.602956,0.23447,0.467106,0.758495,0.545587,0.0155342,0.814852,0.183934,0.0073148,0.255987,0.384482,0.350396,0.561019,0.859633,0.20849,0.9993,0.221856,0.373437,0.234407,0.503553,0.00255811,0.038989,0.344391,0.458552,0.454244,0.0174106,0.13647,0.129269,0.824536,0.710122,0.784767,0.105559,0.143765,0.733954,0.327662,0.340206,0.225398,0.0527275,0.427496,0.528772,0.0905179,0.251379,0.712362,0.153696,0.38664,0.509013,0.183846,0.439231,0.231798,0.257026,0.814982,0.669135,0.656064,0.855536,0.735427,0.475457,0.584797,0.262024,0.307769,0.213454,0.838528,0.31451,0.205229,0.141046,0.43825,0.636162,0.997393,0.70161,0.533622,0.106707,0.387058,0.269172,0.10479,0.580379,0.60853,0.620792,0.539331,0.720251,0.936534,0.0201768,0.528681,0.252366,0.312387,0.623045,0.159959,0.304627,0.100621,0.416826,0.222175,0.176681,0.519434,0.469012,0.866392,0.356217,0.632042,0.430456,0.653627,0.175173,0.354227,0.501505,0.21729,0.817272,0.0783525,0.810631,0.409456,0.662862,0.680462,0.47162,0.930163,0.677348,0.34872,0.905999,0.809263,0.377819,0.172011,0.79672,0.758961,0.744464,0.526229,0.516875,0.450788,0.811996,0.123449,0.276134,0.506893,0.394947,0.769991,0.529399,0.091782,0.874045,0.804904,0.259427,0.416968,0.685984,0.0150697,0.726419,0.766255,0.487643,0.872262,0.862157,0.233065,0.640576,0.442622,0.912785,0.402147,0.160076,0.923267,0.771281,0.997259,0.595404,0.157687,0.440135,0.805516,0.399,0.723524,0.947098,0.951711,0.242832,0.75727,0.040223,0.689465,0.839429,0.600186,0.939327,0.616989,0.68028,0.00327063,0.623431,0.220515,0.856181,0.0342602,0.89808,0.43449,0.581505,0.00924414,0.9622,0.191385,0.703588,0.356612,0.43205,0.316664,0.981728,0.293952,0.850607,0.486092,0.913396,0.347986,0.246105,0.873889,0.0842853,0.184057,0.920586,0.4158,0.56856,0.193961,0.00510633,0.117952,0.696753,0.947806,0.344321,0.343652,0.432534,0.554418,0.195731,0.149782,0.507208,0.95074,0.20579,0.925257,0.36516,0.496335,0.212004,0.78854,0.757337,0.685432,0.941236,0.382442,0.00219041,0.857781,0.595846,0.272042,0.467354,0.876486,0.900249,0.654868,0.872511,0.556747,0.692721,0.357225,0.171138,0.47795,0.828649,0.0518383,0.227055,0.17333,0.433138,0.720227,0.957362,0.339375,0.605799,0.971461,0.728186,0.762751,0.980041,0.94359,0.392361,0.671445,0.678038,0.841401,0.341295,0.550805,0.234543,0.340616,0.569901,0.160952,0.588844,0.975956,0.966716,0.872098,0.763851,0.663975,|0.872515,0.514804,0.800924,0.490912,0.306036,0.169596,0.0166505,0.213502,0.208455,0.482518,0.44534,0.896024,0.379142,0.410753,0.646533,0.610242,0.387043,0.782775,0.746186,0.676153,0.486238,0.0866445,0.861446,0.709318,0.973008,0.394099,0.186702,0.318997,0.669161,0.80244,0.534147,0.0316702,0.958382,0.468197,0.434251,0.48632,0.585037,0.286904,0.665096,0.475639,0.931816,0.0130316,0.510467,0.545279,0.0150283,0.0571037,0.395883,0.5254,0.756421,0.311457,0.494177,0.877323,0.513407,0.893535,0.274927,0.395795,0.421948,0.418876,0.778025,0.372503,0.0553745,0.764496,0.237943,0.888599,0.351871,0.620252,0.232379,0.561211,0.621203,0.872483,0.441911,0.536692,0.329733,0.725594,0.402848,0.566531,0.634423,0.644306,0.747548,0.887813,0.963482,0.0100445,0.0408404,0.260618,0.757809,0.610303,0.89774,0.613939,3.91006e-05,0.9001,0.146978,0.216193,0.606701,0.454722,0.983229,0.799094,0.0441208,0.983854,0.0704731,0.282979,0.831923,0.262116,0.228585,0.833759,0.65651,0.904317,0.585903,0.897651,0.0770583,0.792597,0.153257,0.222359,0.933138,0.525767,0.720156,0.635844,0.670944,0.610599,0.0918685,0.848383,0.708744,0.878267,0.0626935,0.0689989,0.650085,0.741508,0.124637,0.953065,0.93116,0.560702,0.501684,0.382966,0.737486,0.678545,0.400733,0.449669,0.139941,0.575284,0.462823,0.0967218,0.688252,0.561733,0.826035,0.956502,0.527503,0.0440065,0.201277,0.771634,0.912668,0.392603,0.877629,0.742894,0.627225,0.968722,0.644555,0.772814,0.334687,0.726068,0.687606,0.860096,0.985911,0.091674,0.454813,0.754017,0.439217,0.924395,0.244497,0.342566,0.0287232,0.828786,0.416111,0.521823,0.263908,0.185417,0.747247,0.215304,0.885168,0.202939,0.84721,0.636262,0.828157,0.375041,0.244627,0.873951,0.20652,0.629547,0.539977,0.943371,0.397237,0.0939406,0.806316,0.605928,0.571594,0.0914755,0.42422,0.73096,0.228575,0.311735,0.43675,0.16877,0.799064,0.610408,0.103621,0.921349,0.694621,0.639744,0.774258,0.717111,0.335059,0.622708,0.996555,0.214634,0.718922,0.0306624,0.488583,0.477979,0.602777,0.959324,0.137911,0.829817,0.436878,0.569158,0.482681,0.836514,0.285366,0.445258,0.939879,0.93035,0.986809,0.384548,0.120834,0.739769,0.235154,0.694934,0.443915,0.865707,0.466813,0.224123,0.303913,0.996258,0.69647,0.037342,0.699516,0.865433,0.388078,0.213303,0.944645,0.394121,0.447083,0.214579,0.678271,0.482884,0.146049,0.073944,0.853339,0.142251,0.450483,0.195074,0.0472296,0.03321,0.298848,0.908332,0.201728,0.0224346,0.668542,0.0117839,0.158888,0.590692,0.189553,0.409907,0.431456,0.585131,0.181226,0.910146,0.275455,0.1813,0.903788,0.494821,0.452795,0.265669,0.0626503,0.386322,0.997883,0.85227,0.379457,0.406582,0.543285,0.896924,0.465498,0.109354,0.477265,0.372676,0.964629,0.151873,0.959465,0.74803,0.843331,0.780691,0.486924,0.247216,0.204544,0.0786695,0.707943,0.289685,0.868468,0.585513,0.574399,0.734487,0.190807,0.0269557,0.365885,0.0257306,0.294431,0.198315,0.0438792,0.258672,0.98065,0.26613,0.774253,0.807815,0.951528,0.926068,0.350111,0.826943,0.318345,0.755522,0.449087,0.129124,0.711833,0.592266,0.516296,0.110168,0.742612,0.838885,0.623546,0.175082,0.216233,0.387354,0.800681,0.830503,0.399107,0.721767,0.603296,0.94348,0.189285,0.139354,0.637504,0.673549,0.0768623,0.61972,0.18798,0.00971794,0.935824,0.876901,0.216227,0.470585,0.180252,0.479638,0.158527,0.301188,0.63323,0.854597,0.502956,0.930728,0.739829,0.0469311,0.241284,0.737973,0.216478,0.299789,0.991179,0.497321,0.976126,0.342658,0.681548,0.988232,0.989198,0.686824,0.499958,0.956231,0.889037,0.348751,0.0220776,0.32588,0.0761595,0.0147313,0.158596,0.233267,0.651907,0.142111,0.251758,0.662206,0.34773,0.607597,0.499412,0.0546595,0.772063,0.915855,0.700485,0.392828,0.10624,0.470981,0.540131,0.546912,0.220525,0.694393,0.453391,0.139361,0.2012,0.289496,0.835358,0.962732,0.552234,0.857341,0.968389,0.523108,0.925537,0.302292,0.29943,0.954745,0.929347,0.692415,0.987738,0.451943,0.331254,0.652457,0.759143,0.240241,0.913118,0.603551,0.0427833,0.806189,0.0338271,0.455938,0.0996151,0.305298,0.986369,0.427604,0.523088,0.116569,0.278732,0.888736,0.449609,0.564428,0.744086,0.990112,0.0200957,0.285801,0.14759,0.821069,0.369134,0.948302,0.148611,0.927869,0.784642,0.674072,0.841266,0.141673,0.432501,0.610766,0.255052,0.92144,0.428659,0.461986,0.416574,0.00732654,0.935464,0.0386665,0.520242,0.144105,0.336651,0.0764544,0.829175,0.806005,0.433907,0.917076,0.391078,0.270551,0.142709,0.957424,0.43627,0.27301,0.365269,0.008439,0.885501,0.493587,0.0135083,0.713695,0.519483,0.843829,0.777932,0.929254,0.59626,0.821341,0.573615,0.932991,0.410707,0.63861,0.985032,0.668141,0.996363,0.135872,0.303201,0.67776,0.0711958,0.0343537,0.00125283,0.148228,0.547672,0.881654,0.264194,0.647486,0.0484792,0.76796,0.328356,0.77655,0.855431,0.969421,0.386885,0.293772,0.0328876,0.00643963,0.592373,0.939326,0.188918,0.120834,0.503248,0.256462,0.278143,0.72419,0.248376,0.4574,0.707813,0.90462,0.229499,0.650681,0.320795,0.357535,0.106151,0.993326,0.412938,0.995965,0.28389,0.400106,0.504835,0.429194,0.62901,0.040679,0.836345,0.69684,0.260503,0.0364056,0.696998,0.475037,0.04067,0.155181,0.0266518,0.0739068,0.577868,0.858007,0.817923,0.740722,0.145946,0.164713,0.651758,0.460534,0.286051,0.0602399,0.285425,0.887803,0.858087,0.502717,0.229328,0.0151123,0.429541,0.450686,0.581359,0.507221,0.145938,0.19177,0.170125,0.0197362,0.708802,0.299515,0.842811,0.20162,0.627478,0.290726,0.199895,0.369498,0.919405,0.200429,0.849258,0.6147,0.715331,0.515993,0.0511621,0.291139,0.588263,0.892752,0.529681,0.713687,0.825523,0.980209,0.0592301,0.550916,0.307272,0.632785,0.236078,0.692199,0.612014,0.250434,0.649431,0.651182,0.899596,0.267266,0.733086,0.970137,0.322311,0.591901,0.0642028,0.0152152,0.215413,0.646525,0.274868,0.398829,0.253563,0.137871,0.00375736,0.684945,0.372372,0.025044,0.994168,0.256692,0.735781,0.243688,0.155772,0.428439,0.220222,0.220358,0.210151,0.835038,0.390706,0.757327,0.164252,0.697494,0.476087,0.742792,0.413083,0.585417,0.86452,0.829372,0.288738,0.0493724,0.194945,0.417836,0.868344,0.441201,0.692376,0.189494,0.828932,0.350996,0.430754,0.729389,0.661548,0.823357,0.595244,0.758053,0.583481,0.524645,0.775558,0.622954,0.709756,0.148302,0.243291,0.104087,0.96321,0.733248,0.416304,0.890836,0.301499,0.291333,0.983885,0.925502,0.325996,0.804394,0.425401,0.253312,0.0998419,0.411097,0.0910676,0.802384,0.771948,0.956723,0.105273,0.34452,0.820711,0.907761,0.652021,0.203871,0.812041,0.955063,0.307106,0.527459,0.551485,0.260027,0.240774,0.467155,0.371768,0.968046,0.986304,0.754419,0.0413636,0.875765,0.179589,0.261758,0.502595,0.408087,0.713901,0.270141,0.875028,0.360568,0.750205,0.659397,0.593359,0.449813,0.45236,0.724501,0.263734,0.231362,0.519657,0.245163,0.680678,0.744718,0.687631,0.638904,0.390365,0.731439,0.634179,0.13844,0.302773,0.659928,0.693699,0.92526,0.42208,0.175496,0.216707,0.828965,0.967969,0.0477145,0.393423,0.692975,0.223043,0.955395,0.219286,0.687133,0.0957059,0.629935,0.368864,0.736705,0.950279,0.0940281,0.078351,0.427867,0.629804,0.392755,0.389615,0.555215,0.392992,0.43475,0.849722,0.973984,0.916339,0.505549,0.0436008,0.428073,0.30967,0.233657,0.269784,0.559838,0.342953,0.635499,0.612774,0.807663,0.944815,0.887405,0.114998,0.3499,0.323321,0.486463,0.750317,0.229655,0.37222,0.490315,0.13096,0.671815,0.623866,0.650116,0.0750451,0.0494229,0.47933,0.663272,0.876234,0.654609,0.293699,0.389196,0.0147135,0.198735,0.400511,0.66874,0.949371,0.717493,0.10968,0.0472808,0.744034,0.771943,0.945505,0.910527,0.670437,0.895674,0.909144,0.929689,0.161047,0.486433,0.23784,0.990048,0.949127,0.730298,0.243602,0.139646,0.421725,0.973586,0.902694,0.106286,0.630405,0.654911,0.251081,0.471533,0.382001,0.638764,0.807699,0.37952,0.078536,0.781671,0.841065,0.868285,0.969608,0.909549,0.693637,0.481597,0.571123,0.157849,0.613256,0.882029,0.838792,0.0491942,0.6862,0.549071,0.622212,0.594188,0.570916,0.745914,0.11216,0.190879,0.368499,0.716918,0.26698,0.895485,0.0255926,0.362064,0.00308824,0.500363,0.922027,0.402455,0.479106,0.680026,0.784632,0.833641,0.420362,0.0922818,0.0971709,0.208066,0.269673,0.471391,0.797646,0.928795,0.331749,0.9577,0.89291,0.621905,0.988469,0.179535,0.67314,0.0922091,0.461046,0.368612,0.730947,0.0361257,0.598923,0.803628,0.211,0.400826,0.0674237,0.648764,0.0757993,0.969485,0.949043,0.598736,0.685598,0.115688,0.610277,0.834799,0.0767304,0.800304,0.619313,0.95015,0.18855,0.671027,0.355533,0.146723,0.471797,0.910943,0.272879,0.634243,0.52209,0.489693,0.451114,0.860182,0.61611,0.0882202,0.363434,0.906305,0.00018996,0.934203,0.5019,0.829319,0.12312,0.920171,0.0397539,0.521846,0.500588,0.941543,0.264602,0.0324686,0.943426,0.698269,0.0112932,0.364322,0.368575,0.692435,0.467333,0.219331,0.926484,0.171678,0.10161,0.122314,0.818107,0.0803554,0.013746,0.919323,0.56157,0.226722,0.0519201,0.414285,0.275466,0.276823,0.706713,0.805181,0.59555,0.927007,0.660895,0.800201,0.0712911,0.924368,0.270727,0.931381,0.948626,0.988639,0.705834,0.573548,0.00679761,0.751772,0.274314,0.191522,0.630073,0.137172,0.955701,0.183366,0.372009,0.707318,0.406037,0.230653,0.483767,0.00438672,0.695677,0.09337,0.0805211,0.720002,0.567168,0.714847,|0.0565664,0.992165,0.946304,0.110935,0.729896,0.154247,0.78151,0.599537,0.0865272,0.0421966,0.653303,0.122682,0.859513,0.859243,0.356508,0.852628,0.898951,0.857666,0.117079,0.985056,0.886503,0.00875312,0.255438,0.403835,0.111026,0.222577,0.268775,0.680834,0.845144,0.409315,0.60828,0.358727,0.741834,0.77486,0.377985,0.598983,0.768828,0.87895,0.0727784,0.218925,0.383957,0.00704014,0.950586,0.221126,0.716742,0.657478,0.588766,0.276137,0.109823,0.470327,0.375292,0.911679,0.394154,0.686784,0.871008,0.575156,0.802924,0.587327,0.654754,0.75113,0.973306,0.916699,0.645531,0.713112,0.469093,0.250347,0.176313,0.66073,0.780881,0.714545,0.49195,0.0678809,0.15947,0.695707,0.139353,0.748229,0.39202,0.522951,0.750992,0.35692,0.280841,0.840869,0.654329,0.549336,0.473171,0.587021,0.552176,0.655367,0.942656,0.545356,0.995537,0.209835,0.206519,0.498951,0.163576,0.345444,0.90868,0.149059,0.373421,0.493697,0.752345,0.0538126,0.95617,0.601815,0.950949,0.827761,0.976169,0.605428,0.250429,0.821458,0.550163,0.870349,0.66207,0.820084,0.670065,0.838724,0.959039,0.480565,0.729469,0.22348,0.538036,0.213624,0.27252,0.654144,0.692773,0.143501,0.297122,0.932013,0.788422,0.840602,0.8289,0.697895,0.972155,0.652219,0.262479,0.64542,0.0980843,0.255797,0.209482,0.734363,0.171372,0.714961,0.572496,0.29068,0.785623,0.175291,0.917792,0.863746,0.237287,0.33358,0.768325,0.766962,0.157595,0.619337,0.84405,0.85273,0.813019,0.228968,0.46556,0.24658,0.326732,0.705,0.918756,0.762672,0.113442,0.505636,0.618143,0.99395,0.791774,0.4847,0.757129,0.0860291,0.776894,0.462131,0.303381,0.444413,0.801992,0.659564,0.80882,0.186093,0.273009,0.902987,0.799068,0.181158,0.13364,0.35404,0.600408,0.329919,0.884453,0.429536,0.441351,0.329446,0.667328,0.937712,0.0124718,0.701666,0.669453,0.578111,0.393373,0.544223,0.657782,0.192903,0.100106,0.347081,0.428363,0.753255,0.403047,0.35664,0.837491,0.655551,0.829057,0.470404,0.0641911,0.962679,0.378884,0.135135,0.917025,0.118575,0.204321,0.850516,0.42739,0.191409,0.996484,0.619276,0.367096,0.865747,0.81654,0.889413,0.717626,0.581186,0.446465,0.473979,0.834022,0.800945,0.631133,0.981548,0.699876,0.0451704,0.947306,0.248926,0.780254,0.999145,0.549248,0.447727,0.609155,0.102096,0.833926,0.658229,0.333821,0.992281,0.714372,0.223653,0.421223,0.323467,0.167488,0.442327,0.284565,0.466347,0.829736,0.775028,0.533397,0.802512,0.162211,0.985344,0.376112,0.48179,0.830172,0.371848,0.66113,0.273048,0.55603,0.396381,0.225207,0.528907,0.74211,0.524685,0.322718,0.031533,0.430085,0.60013,0.519934,0.750874,0.152507,0.72995,0.984486,0.0274556,0.456189,0.856066,0.677611,0.278735,0.735436,0.18912,0.946238,0.809293,0.47224,0.987982,0.546179,0.295387,0.613558,0.525429,0.541025,0.305872,0.771005,0.706565,0.170624,0.250055,0.286978,0.18897,0.191883,0.691968,0.605241,0.663381,0.106863,0.12194,0.19722,0.161947,0.363636,0.474219,0.20669,0.33059,0.0583239,0.375284,0.916932,0.696773,0.305721,0.246694,0.385926,0.767142,0.914177,0.359345,0.512896,0.344292,0.313908,0.136783,0.784986,0.493621,0.0758618,0.271774,0.601398,0.969826,0.93122,0.613067,0.985376,0.766444,0.527659,0.495376,0.0117836,0.537355,0.408754,0.29095,0.917458,0.487226,0.444763,0.571252,0.255866,0.816842,0.499614,0.243224,0.219886,0.684331,0.0454217,0.103245,0.95216,0.393277,0.192572,0.472651,0.20247,0.434723,0.565009,0.644452,0.947286,0.854304,0.890676,0.168744,0.716139,0.501662,0.2773,0.00459838,0.219516,0.842314,0.522244,0.956426,0.64514,0.934213,0.663148,0.776321,0.766284,0.147362,0.946192,0.816776,0.745529,0.112984,0.799466,0.0183843,0.435358,0.450318,0.884082,0.719755,0.429979,0.614572,0.814784,0.811902,0.468137,0.963547,0.283503,0.305234,0.681595,0.64468,0.702815,0.57866,0.56065,0.150959,0.701452,0.685716,0.59302,0.0551929,0.509255,0.863981,0.348606,0.770225,0.369019,0.610647,0.363141,0.386829,0.304039,0.553982,0.155473,0.309965,0.413838,0.83445,0.537429,0.0219627,0.251534,0.34332,0.487916,0.399598,0.747433,0.285518,0.327884,0.785162,0.858708,0.825658,0.638952,0.136085,0.797989,0.524155,0.286827,0.656427,0.465427,0.751268,0.38975,0.176426,0.244197,0.936952,0.521893,0.777494,0.740321,0.963929,0.770877,0.122961,0.923724,0.152274,0.900155,0.909648,0.0529437,0.759596,0.726893,0.852448,0.742014,0.888295,0.945256,0.448721,0.575044,0.820893,0.925029,0.104883,0.807201,0.897278,0.933398,0.887354,0.120204,0.625568,0.106346,0.811049,0.464274,0.716875,0.86486,0.356079,0.374959,0.11691,0.791232,0.167896,0.221285,0.536101,0.108217,0.985781,0.863085,0.456623,0.657996,0.160625,0.051138,0.873319,0.064414,0.708962,0.0382072,0.672479,0.00902104,0.373792,0.558735,0.0860293,0.119948,0.0188288,0.803794,0.959293,0.374236,0.589523,0.791902,0.0886835,0.445665,0.803971,0.988624,0.211713,0.139341,0.62488,0.0568113,0.500437,0.396394,0.494766,0.405957,0.0122198,0.960716,0.928051,0.524979,0.832521,0.450932,0.769003,0.244789,0.928726,0.971984,0.02266,0.469652,0.750899,0.355287,0.095605,0.592932,0.35303,0.290927,0.103018,0.756379,0.970152,0.955724,0.43462,0.092267,0.95284,0.954253,0.649347,0.0484845,0.99492,0.927729,0.0949004,0.373363,0.931785,0.673801,0.441297,0.920946,0.255923,0.85112,0.820141,0.390878,0.869757,0.0814532,0.775017,0.293728,0.0379354,0.0908777,0.486636,0.631588,0.661227,0.17174,0.323599,0.213894,0.938581,0.677922,0.569953,0.906464,0.745558,0.652799,0.171985,0.468574,0.00870252,0.0603149,0.126031,0.139819,0.531327,0.171483,0.640617,0.465521,0.605881,0.668093,0.141713,0.862623,0.589588,0.548285,0.987062,0.987185,0.903815,0.297905,0.397238,0.863149,0.0451551,0.0810863,0.519761,0.159447,0.54856,0.655801,0.5693,0.913685,0.00219226,0.977862,0.358758,0.812312,0.405576,0.685383,0.778053,0.547182,0.936569,0.310285,0.465111,0.992879,0.161883,0.814041,0.892417,0.436668,0.950096,0.373962,0.299701,0.315312,0.0406932,0.315398,0.401835,0.834338,0.291919,0.460247,0.49225,0.458845,0.314863,0.544315,0.117642,0.51827,0.323229,0.69454,0.628431,0.282478,0.919508,0.558069,0.414962,0.26924,0.912075,0.642916,0.234619,0.410563,0.122887,0.297283,0.342725,0.724672,0.938549,0.967207,0.189336,0.209839,0.348919,0.337644,0.859757,0.481773,0.172188,0.943397,0.230626,0.650497,0.762308,0.0984136,0.00482714,0.0516068,0.700471,0.589557,0.0503886,0.999551,0.936217,0.224727,0.501927,0.899746,0.75015,0.688114,0.257661,0.741441,0.103719,0.925822,0.265404,0.950375,0.626188,0.971622,0.298496,0.0250042,0.28409,0.570634,0.126898,0.529228,0.753086,0.798601,0.956712,0.714919,0.54997,0.266263,0.894324,0.922405,0.0593886,0.874662,0.710571,0.18956,0.631733,0.747545,0.0959193,0.564781,0.27958,0.594714,0.108352,0.719188,0.141334,0.416958,0.600676,0.351985,0.664948,0.965313,0.39038,0.417085,0.929829,0.766706,0.0452254,0.643367,0.800634,0.184921,0.233468,0.898476,0.0753567,0.994357,0.624628,0.589109,0.340757,0.077729,0.546604,0.0268863,0.970892,0.436291,0.755956,0.323426,0.959813,0.405564,0.896836,0.390771,0.266476,0.706653,0.301925,0.314803,0.614527,0.700399,0.681846,0.965731,0.606495,0.513558,0.429074,0.124569,0.225053,0.0300017,0.648106,0.40719,0.467555,0.134765,0.999493,0.895548,0.539583,0.147739,0.943444,0.197103,0.814253,0.240251,0.795656,0.682663,0.76303,0.844874,0.814113,0.54847,0.912453,0.672128,0.495667,0.641307,0.370653,0.256953,0.64816,0.219923,0.550596,0.664117,0.9957,0.494991,0.164146,0.263502,0.222858,0.432614,0.834041,0.615759,0.892209,0.302229,0.301901,0.381511,0.650072,0.183289,0.395526,0.378197,0.447331,0.631547,0.873028,0.867209,0.650214,0.683139,0.864256,0.992025,0.285865,0.414272,0.167398,0.510758,0.0844415,0.675583,0.371188,0.566611,0.453033,0.91899,0.591381,0.936624,0.402777,0.686664,0.8578,0.744947,0.136683,0.0515352,0.812856,0.243928,0.654594,0.441939,0.362299,0.190152,0.181899,0.169034,0.33316,0.265361,0.988664,0.84638,0.455873,0.845998,0.21424,0.925162,0.03358,0.12901,0.85679,0.83913,0.486317,0.0211109,0.213104,0.626041,0.839354,0.536654,0.44355,0.0203448,0.819189,0.745852,0.974527,0.633154,0.351816,0.909984,0.0398885,0.485294,0.0366805,0.558263,0.3615,0.366497,0.93539,0.780235,0.398257,0.280593,0.120333,0.176718,0.534354,0.976531,0.904855,0.62174,0.707012,0.317237,0.438015,0.421544,0.946362,0.330983,0.770265,0.495806,0.595493,0.324621,0.624535,0.763359,0.0146366,0.136403,0.982013,0.331397,0.869971,0.155865,0.467503,0.644216,0.0938061,0.7118,0.51215,0.615703,0.968731,0.299635,0.371818,0.277665,0.876698,0.951205,0.51501,0.680947,0.780751,0.54403,0.982348,0.73486,0.284002,0.868897,0.752051,0.296287,0.219124,0.828347,0.293246,0.434878,0.741138,0.630881,0.825151,0.10194,0.108855,0.688393,0.431668,0.0164157,0.297737,0.898486,0.152214,0.367105,0.163998,0.378802,0.443405,0.446329,0.897838,0.772103,0.602436,0.628027,0.551106,0.999267,0.00419116,0.214886,0.681757,0.872869,0.237389,0.0779072,0.76317,0.999824,0.427785,0.425717,0.204215,0.975303,0.417329,0.389416,0.431509,0.311577,0.270958,0.693046,0.161228,0.411076,0.875762,0.552737,0.841006,0.603982,0.156583,0.611834,0.951486,0.185126,0.960488,0.729563,0.918336,0.389027,0.128388,0.573848,0.209281,0.887254,0.749916,0.106096,0.706482,0.0484621,0.654706,0.796067,0.914955,|0.1822,0.887912,0.730597,0.364222,0.623247,0.867881,0.102455,0.307898,0.548205,0.604518,0.28245,0.927765,0.795294,0.0231773,0.978497,0.320797,0.400842,0.171935,0.0190188,0.0610248,0.868271,0.805168,0.693103,0.681328,0.555412,0.032997,0.325861,0.869289,0.226878,0.307312,0.846008,0.346767,0.252629,0.00270993,0.855042,0.542355,0.554494,0.421401,0.187877,0.928988,0.231936,0.857,0.331181,0.617921,0.402362,0.257983,0.641846,0.040597,0.326252,0.132596,0.0248601,0.825257,0.131791,0.315577,0.779076,0.253917,0.367467,0.339709,0.291077,0.869343,0.581145,0.520149,0.839169,0.624603,0.438629,0.895367,0.289284,0.935724,0.942528,0.789978,0.54759,0.175532,0.0821784,0.0863999,0.865455,0.284837,0.918344,0.575609,0.529793,0.786804,0.694004,0.065765,0.757975,0.333056,0.25292,0.9663,0.896536,0.736502,0.331385,0.398533,0.764229,0.849656,0.105229,0.134596,0.32956,0.246614,0.310943,0.605451,0.207048,0.420015,0.981878,0.39164,0.694324,0.130601,0.735106,0.587372,0.704521,0.417157,0.576424,0.715016,0.848358,0.821252,0.0244829,0.0126128,0.679089,0.370152,0.192399,0.101001,0.569246,0.438993,0.83617,0.634097,0.312096,0.0994263,0.357773,0.847926,0.329984,0.684938,0.0639101,0.486775,0.222328,0.487131,0.097219,0.31464,0.426795,0.731128,0.553725,0.571573,0.163792,0.41816,0.192845,0.258851,0.940114,0.756667,0.501248,0.405971,0.824997,0.0771274,0.900069,0.19034,0.312604,0.0663669,0.0773627,0.668308,0.464391,0.993302,0.241738,0.692534,0.732753,0.303196,0.429195,0.469141,0.770288,0.00673288,0.2304,0.868373,0.625963,0.56251,0.612472,0.668896,0.737285,0.355515,0.139019,0.871162,0.925708,0.626452,0.991011,0.599529,0.237403,0.946999,0.398261,0.861579,0.868643,0.477329,0.683513,0.683428,0.87394,0.993111,0.693451,0.820166,0.140733,0.37374,0.287579,0.598713,0.554876,0.860739,0.492497,0.267116,0.179825,0.276254,0.950054,0.932355,0.0469581,0.139325,0.0766913,0.313569,0.252006,0.485313,0.143025,0.662008,0.944215,0.623324,0.143684,0.185527,0.850185,0.382152,0.652548,0.789987,0.138928,0.229227,0.511152,0.98804,0.696507,0.136381,0.206269,0.372495,0.600147,0.983515,0.88817,0.529083,0.109083,0.94253,0.268599,0.319617,0.167526,0.376322,0.64485,0.659291,0.20257,0.981929,0.949272,0.714232,0.471724,0.19572,0.219214,0.780815,0.0424273,0.905401,0.257048,0.212702,0.326903,0.286039,0.89025,0.175014,0.0603454,0.251049,0.689938,0.899821,0.906347,0.43552,0.305175,0.871548,0.844673,0.117582,0.497619,0.17962,0.195344,0.0172678,0.769111,0.312481,0.362833,0.773389,0.128629,0.0343876,0.418232,0.865375,0.349201,0.118642,0.505642,0.241631,0.829105,0.815683,0.718819,0.564153,0.264278,0.629841,0.0719715,0.249069,0.425906,0.344764,0.652462,0.995772,0.609844,0.194387,0.130239,0.0257396,0.19244,0.783993,0.0537705,0.341001,0.108001,0.0110365,0.992009,0.618295,0.976979,0.865988,0.940853,0.434202,0.533741,0.424487,0.631065,0.468771,0.73143,0.970991,0.960832,0.914441,0.55913,0.215735,0.0496073,0.565887,0.397176,0.0435509,0.288663,0.17731,0.945972,0.203851,0.652474,0.671164,0.569072,0.800451,0.446876,0.245839,0.549389,0.155319,0.615306,0.281384,0.222855,0.00194144,0.379484,0.485436,0.173497,0.86196,0.225259,0.0726552,0.707896,0.773617,0.916007,0.444896,0.565165,0.595319,0.824868,0.449591,0.576217,0.423001,0.211358,0.99937,0.729396,0.996255,0.320498,0.959869,0.601286,0.760592,0.788613,0.606613,0.94224,0.0841146,0.796441,0.731514,0.364071,0.965248,0.188438,0.176452,0.616197,0.265785,0.252907,0.389799,0.874741,0.30226,0.395023,0.668626,0.308031,0.517714,0.95509,0.065226,0.502422,0.336441,0.169811,0.359823,0.491199,0.808821,0.0732606,0.538256,0.959904,0.826466,0.767472,0.306691,0.593133,0.806658,0.887783,0.924018,0.359042,0.199534,0.443488,0.0891035,0.315014,0.589638,0.578132,0.966018,0.29446,0.475287,0.695523,0.432207,0.501056,0.647334,0.592696,0.856428,0.102505,0.639021,0.631416,0.10761,0.865302,0.313919,0.608616,0.769062,0.642475,0.168542,0.254559,0.79885,0.577954,0.752229,0.0477252,0.771703,0.383286,0.233941,0.730655,0.630862,0.714664,0.623042,0.346881,0.509826,0.118527,0.943921,0.670061,0.88027,0.713166,0.337674,0.24652,0.930111,0.422754,0.202346,0.89876,0.595417,0.773628,0.667505,0.685614,0.75058,0.224652,0.236312,0.027954,0.481957,0.0635955,0.544746,0.366033,0.0101309,0.192731,0.570403,0.574316,0.19403,0.0420351,0.955413,0.502781,0.637568,0.733393,0.433558,0.964571,0.986808,0.940062,0.67851,0.0731009,0.639487,0.268925,0.803763,0.822031,0.262139,0.759142,0.741313,0.283726,0.925691,0.559319,0.854247,0.566365,0.592851,0.993984,0.412325,0.0128604,0.523819,0.465544,0.344334,0.32564,0.760611,0.731002,0.762565,0.224101,0.304474,0.313042,0.102782,0.985615,0.0624785,0.435935,0.643894,0.982829,0.812333,0.839902,0.756507,0.257349,0.82167,0.904541,0.0719929,0.698499,0.997104,0.966992,0.285848,0.122414,0.124879,0.829756,0.44036,0.378981,0.0976666,0.0117651,0.0245143,0.396448,0.115783,0.561361,0.485844,0.418187,0.909202,0.760605,0.286454,0.565534,0.556136,0.277955,0.19543,0.763385,0.443668,0.693586,0.55892,0.970309,0.0565684,0.430221,0.658584,0.824314,0.772802,0.931485,0.920117,0.693185,0.124396,0.663386,0.866685,0.178747,0.500371,0.341576,0.746206,0.335951,0.141646,0.968921,0.890762,0.828945,0.770402,0.175904,0.81287,0.00716817,0.690306,0.776843,0.000837445,0.435548,0.509358,0.0564048,0.795888,0.233958,0.866502,0.490663,0.140354,0.134783,0.26475,0.0954782,0.282529,0.78097,0.948493,0.525362,0.418776,0.857448,0.628434,0.99882,0.0648628,0.125932,0.785811,0.831601,0.856219,0.403519,0.811538,0.249248,0.96791,0.043846,0.330912,0.993616,0.939728,0.712028,0.390064,0.494537,0.256641,0.513265,0.71435,0.245923,0.0364782,0.821594,0.512057,0.201657,0.978298,0.602027,0.728395,0.495063,0.682596,0.0390227,0.0288212,0.940036,0.897361,0.941006,0.0231391,0.841552,0.847502,0.584151,0.701016,0.503975,0.44311,0.190339,0.634481,0.533592,0.523059,0.752119,0.838347,0.858457,0.468795,0.791402,0.533605,0.0568492,0.727378,0.404327,0.418741,0.575392,0.945347,0.111235,0.943278,0.457116,0.327728,0.858539,0.330329,0.818267,0.529402,0.819802,0.76171,0.0672893,0.452726,0.401555,0.824316,0.158679,0.800405,0.397325,0.146474,0.745676,0.788585,0.249184,0.259371,0.579896,0.112307,0.244049,0.911895,0.929142,0.381417,0.40277,0.502452,0.435481,0.552884,0.320318,0.721128,0.382756,0.625186,0.308638,0.17368,0.369268,0.269035,0.134794,0.0388218,0.774931,0.928743,0.748274,0.0331764,0.314302,0.0911506,0.0399694,0.395542,0.830658,0.178777,0.952314,0.491042,0.416706,0.530137,0.744018,0.689615,0.404568,0.139564,0.360507,0.746416,0.804132,0.256162,0.382701,0.106163,0.120318,0.555736,0.514573,0.22993,0.392057,0.375258,0.000909209,0.645463,0.609941,0.526794,0.984089,0.551546,0.148132,0.946997,0.965345,0.39491,0.393222,0.803895,0.434354,0.130439,0.835871,0.854271,0.00592184,0.534318,0.74558,0.907784,0.499927,0.743171,0.763892,0.844542,0.246682,0.403877,0.781826,0.941982,0.880868,0.66683,0.257623,0.267172,0.654538,0.935674,0.10553,0.81014,0.770641,0.533334,0.660567,0.529906,0.746304,0.384566,0.581299,0.227048,0.0627577,0.971327,0.412645,0.134723,0.20448,0.151647,0.352318,0.677537,0.0169441,0.213849,0.261742,0.625635,0.800452,0.185497,0.567905,0.64977,0.987302,0.894839,0.32111,0.599845,0.772091,0.142517,0.236217,0.827721,0.975026,0.374453,0.797772,0.305469,0.740603,0.307252,0.699662,0.592426,0.916469,0.836015,0.725039,0.0532634,0.998003,0.446137,0.625223,0.0899596,0.547876,0.357868,0.919405,0.998278,0.18426,0.163339,0.397395,0.141794,0.640432,0.302774,0.838945,0.850841,0.465695,0.656104,0.607766,0.802562,0.44685,0.611254,0.203925,0.965858,0.4414,0.37154,0.874682,0.308471,0.408513,0.746215,0.924159,0.509171,0.40089,0.193994,0.191674,0.470182,0.208564,0.266313,0.663188,0.0965933,0.850195,0.606575,0.396271,0.82088,0.837468,0.103456,0.947002,0.661436,0.845185,0.991439,0.504466,0.520211,0.470442,0.563291,0.114056,0.85252,0.573253,0.235039,0.463672,0.582983,0.983408,0.035774,0.107035,0.725262,0.925937,0.657999,0.332265,0.713053,0.612914,0.643474,0.479209,0.603412,0.924515,0.879148,0.674581,0.496732,0.0498394,0.0145653,0.994723,0.34527,0.271521,0.613349,0.502038,0.809394,0.158873,0.490247,0.649094,0.966864,0.661916,0.763707,0.0931751,0.584054,0.977823,0.882521,0.21002,0.297761,0.352161,0.971018,0.376146,0.264142,0.907189,0.0815336,0.181503,0.251899,0.156413,0.0124921,0.691972,0.0777266,0.992967,0.467474,0.548787,0.490684,0.746647,0.281994,0.445512,0.983085,0.490462,0.875872,0.950856,0.728128,0.760572,0.116498,0.983083,0.31921,0.251694,0.520288,0.426749,0.50488,0.551002,0.644593,0.665999,0.421509,0.340959,0.696505,0.737736,0.116576,0.568628,0.437816,0.611687,0.515135,0.201542,0.0598878,0.216452,0.684181,0.521618,0.0720648,0.346279,0.437571,0.506836,0.791996,0.322816,0.791707,0.648224,0.471895,0.182135,0.362268,0.560149,0.192503,0.271124,0.444914,0.475884,0.238609,0.00289154,0.789936,0.207383,0.319335,0.0688704,0.402194,0.436793,0.926316,0.286047,0.212747,0.845874,0.995365,0.349065,0.822677,0.829511,0.599814,0.0699621,0.829504,0.542057,0.250975,0.687307,0.702332,0.273944,0.915525,0.242556,0.10889,0.545856,0.958915,0.211468,0.764795,0.667983,0.437737,0.539746,0.565736,0.872208,0.998041,|0.928926,0.502285,0.202128,0.808783,0.999521,0.30343,0.913623,0.534797,0.728569,0.99202,0.696474,0.968995,0.745655,0.389213,0.318892,0.30428,0.608177,0.915633,0.899294,0.322827,0.943819,0.332951,0.785694,0.226691,0.70453,0.720639,0.648714,0.897747,0.978786,0.540056,0.824596,0.523623,0.160765,0.254216,0.44137,0.726863,0.254234,0.652057,0.563008,0.353848,0.100532,0.6268,0.810885,0.277018,0.778784,0.155811,0.102141,0.124638,0.336172,0.481057,0.797961,0.0852264,0.128676,0.724452,0.440818,0.768459,0.665126,0.151815,0.869328,0.464332,0.456093,0.208934,0.381679,0.187632,0.455973,0.435749,0.282414,0.0442334,0.178334,0.276148,0.658165,0.408716,0.352412,0.210545,0.301482,0.0776919,0.0774005,0.393241,0.385772,0.0299063,0.271903,0.230627,0.663068,0.17507,0.866914,0.740114,0.945648,0.402901,0.0907694,0.248345,0.00496346,0.210318,0.443934,0.498736,0.992167,0.605635,0.209105,0.649778,0.709553,0.0865003,0.522167,0.0348068,0.891872,0.625493,0.655308,0.107365,0.0287652,0.812638,0.237035,0.180688,0.817994,0.200254,0.915964,0.3503,0.73781,0.795905,0.149098,0.31607,0.85616,0.790782,0.90935,0.907908,0.82886,0.222302,0.974821,0.139074,0.871503,0.920394,0.103036,0.114474,0.788016,0.270287,0.368858,0.613278,0.609221,0.704763,0.269657,0.745024,0.84796,0.599008,0.116116,0.853303,0.908187,0.443996,0.73721,0.0571182,0.0789996,0.581287,0.00807428,0.906716,0.915176,0.412367,0.0471734,0.617073,0.666116,0.142008,0.435963,0.915705,0.220173,0.894323,0.0105636,0.176787,0.61493,0.62656,0.193126,0.752944,0.295269,0.0262163,0.762445,0.389499,0.509999,0.734987,0.670625,0.0108652,0.487186,0.496816,0.461733,0.823974,0.295481,0.0601513,0.357097,0.15218,0.408415,0.300808,0.881947,0.976131,0.609034,0.849185,0.69074,0.431111,0.606115,0.280217,0.914927,0.268154,0.386646,0.0265104,0.277053,0.73502,0.189863,0.129395,0.316674,0.904926,0.0886258,0.888879,0.279648,0.856073,0.609124,0.249426,0.353797,0.841849,0.173225,0.716355,0.558722,0.539524,0.824931,0.862521,0.404706,0.155888,0.775741,0.948089,0.732936,0.989835,0.363327,0.277473,0.511174,0.567681,0.388999,0.867843,0.901103,0.898859,0.433178,0.489024,0.348298,0.132075,0.149892,0.0359099,0.96636,0.829546,0.898786,0.119968,0.328145,0.406884,0.181931,0.946364,0.606163,0.235005,0.591604,0.566067,0.95237,0.204105,0.800081,0.751408,0.359467,0.749515,0.114674,0.563895,0.293242,0.579681,0.291323,0.0455245,0.252827,0.90755,0.348542,0.82652,0.997547,0.908085,0.952505,0.790479,0.42871,0.635586,0.484142,0.399302,0.768649,0.0606815,0.0771672,0.730842,0.490933,0.393042,0.251191,0.728555,0.591648,0.508414,0.997493,0.0196001,0.147268,0.239376,0.385662,0.288005,0.137685,0.826317,0.859316,0.249373,0.691144,0.59995,0.93136,0.0589707,0.290823,0.778666,0.220969,0.967541,0.341952,0.925375,0.991492,0.723697,0.264824,0.613341,0.51304,0.754211,0.704946,0.0586045,0.540417,0.577439,0.703708,0.709457,0.252785,0.581852,0.693519,0.249737,0.471445,0.75443,0.258723,0.672117,0.282494,0.00990719,0.188061,0.957238,0.82241,0.746584,0.572598,0.362982,0.469895,0.245915,0.549637,0.2039,0.41745,0.847588,0.726038,0.100015,0.0781937,0.261769,0.904539,0.432369,0.285173,0.285445,0.0981067,0.593701,0.166657,0.166839,0.0293542,0.365708,0.264756,0.355709,0.0538005,0.211558,0.477992,0.742706,0.495584,0.937307,0.110369,0.672241,0.143294,0.754752,0.117083,0.296782,0.812785,0.879108,0.15117,0.894892,0.474705,0.223036,0.271741,0.910689,0.685727,0.682754,0.540572,0.614713,0.782793,0.852958,0.790151,0.849196,0.923431,0.836957,0.685262,0.177953,0.635496,0.751172,0.562137,0.257505,0.329842,0.28672,0.198547,0.590759,0.88552,0.858407,0.395853,0.737013,0.865386,0.938815,0.847536,0.751284,0.154434,0.0722994,0.809192,0.274097,0.889058,0.847609,0.753362,0.742593,0.369171,0.666105,0.49944,0.0848548,0.255407,0.648428,0.962815,0.911519,0.255385,0.250936,0.458218,0.683835,0.721747,0.57947,0.380197,0.303359,0.325356,0.226545,0.0386522,0.429812,0.54034,0.718889,0.121776,0.843037,0.897112,0.740668,0.473802,0.239926,0.383948,0.681566,0.785948,0.416347,0.250896,0.463666,0.826777,0.764351,0.724994,0.160866,0.190281,0.150273,0.105922,0.776298,0.71973,0.55756,0.648839,0.631302,0.670376,0.92715,0.834136,0.075709,0.506215,0.897266,0.833044,0.559936,0.813358,0.722966,0.28806,0.482883,0.947837,0.231521,0.342711,0.399892,0.797338,0.291005,0.198088,0.923583,0.749697,0.591757,0.280931,0.0593457,0.38446,0.562525,0.341767,0.632909,0.978612,0.260667,0.253662,0.100738,0.996929,0.823568,0.48433,0.222284,0.229978,0.0545508,0.516023,0.821543,0.554927,0.804202,0.849701,0.862248,0.819488,0.628959,0.360012,0.794916,0.80872,0.633757,0.217178,0.359743,0.765883,0.722306,0.182109,0.0368395,0.925789,0.527222,0.605881,0.530282,0.256642,0.709242,0.934567,0.327476,0.843775,0.1476,0.252036,0.826382,0.249809,0.236219,0.709685,0.520233,0.872717,0.888837,0.815656,0.272693,0.0330256,0.973434,0.663365,0.57999,0.634912,0.557025,0.688328,0.0597261,0.382361,0.332658,0.165312,0.402118,0.962546,0.893279,0.257408,0.432013,0.335622,0.780195,0.442741,0.447739,0.34526,0.474938,0.702988,0.87398,0.931287,0.427826,0.821326,0.495856,0.901255,0.751664,0.91046,0.19765,0.0547055,0.23377,0.447986,0.664166,0.532752,0.481416,0.085649,0.889935,0.446573,0.80998,0.0858555,0.957602,0.508169,0.71474,0.865778,0.399794,0.524284,0.0544901,0.00228119,0.893745,0.421779,0.938327,0.308432,0.150903,0.70039,0.453558,0.229634,0.978248,0.528209,0.158323,0.368893,0.86992,0.249664,0.303146,0.158123,0.444024,0.905551,0.531571,0.785671,0.604041,0.752857,0.118668,0.161753,0.280585,0.122136,0.00507128,0.981477,0.373168,0.0555224,0.723286,0.298733,0.540948,0.433214,0.631645,0.563157,0.711721,0.992852,0.0459505,0.614559,0.558759,0.780634,0.0896736,0.147005,0.862583,0.1107,0.684796,0.962481,0.593565,0.302163,0.958399,0.192129,0.588775,0.367806,0.315236,0.338711,0.217943,0.770942,0.999407,0.53284,0.267761,0.262619,0.0531686,0.344114,0.942929,0.210387,0.624382,0.224344,0.385987,0.227105,0.996151,0.245251,0.345122,0.367577,0.192618,0.677802,0.752373,0.103246,0.543743,0.488632,0.951607,0.690207,0.497871,0.89663,0.822266,0.768707,0.255613,0.744939,0.963276,0.843343,0.670612,0.46751,0.339582,0.910794,0.67695,0.523134,0.792919,0.395695,0.11349,0.446382,0.13648,0.0168759,0.465122,0.401873,0.585223,0.237392,0.611679,0.52286,0.463756,0.388599,0.319993,0.006787,0.369898,0.510927,0.977794,0.0534005,0.784849,0.164288,0.0682604,0.649286,0.402311,0.542191,0.403281,0.33272,0.827442,0.972498,0.885602,0.523216,0.0564442,0.716103,0.939442,0.15423,0.406746,0.31758,0.191371,0.160532,0.0356495,0.446374,0.966941,0.524419,0.876777,0.60267,0.639156,0.669856,0.584732,0.646635,0.719427,0.469658,0.9106,0.243621,0.509697,0.821605,0.509076,0.133019,0.419567,0.00561404,0.44315,0.735287,0.932674,0.615718,0.929527,0.932623,0.170006,0.641083,0.860343,0.925299,0.846015,0.159763,0.455281,0.750056,0.0588028,0.451713,0.196087,0.454561,0.817102,0.382672,0.445708,0.570381,0.96635,0.409211,0.321085,0.270628,0.494968,0.643324,0.644649,0.0807016,0.203653,0.527565,0.370963,0.539257,0.935319,0.699364,0.400371,0.955022,0.890364,0.936642,0.337736,0.559962,0.23859,0.187345,0.223906,0.107516,0.335522,0.794556,0.594962,0.49635,0.0680902,0.913728,0.800441,0.562217,0.369239,0.295844,0.269725,0.910718,0.830915,0.579988,0.328961,0.0290014,0.931571,0.534784,0.50778,0.920218,0.289472,0.975102,0.0376155,0.617649,0.773448,0.479281,0.62259,0.376123,0.47521,0.280565,0.952145,0.493702,0.198741,0.49188,0.260593,0.399589,0.527352,0.854556,0.244137,0.363674,0.527153,0.0719826,0.692625,0.130912,0.220701,0.447497,0.824065,0.504809,0.35389,0.137472,0.36027,0.907991,0.23181,0.952822,0.887034,0.501698,0.711486,0.0835949,0.585072,0.236307,0.457635,0.434931,0.701674,0.0641593,0.41741,0.803213,0.32949,0.978962,0.0327896,0.424495,0.732532,0.757215,0.385142,0.896014,0.654122,0.722306,0.0299246,0.976485,0.90342,0.228736,0.914852,0.18111,0.150507,0.0904327,0.853789,0.109138,0.55766,0.138679,0.859508,0.770088,0.899925,0.663434,0.519233,0.656337,0.249518,0.745936,0.34908,0.323012,0.753106,0.172468,0.795742,0.855833,0.472188,0.472887,0.867151,0.685891,0.861569,0.820684,0.61098,0.142363,0.93795,0.826252,0.990948,0.902679,0.214182,0.18699,0.201704,0.222034,0.396332,0.0022279,0.195712,0.907712,0.579137,0.790384,0.229033,0.975693,0.795188,0.67165,0.655905,0.640738,0.931271,0.228304,0.968686,0.927616,0.878191,0.660254,0.290927,0.293343,0.181203,0.515175,0.450928,0.663358,0.446038,0.417939,0.247033,0.625815,0.500018,0.298867,0.821237,0.245255,0.998969,0.493213,0.114214,0.22197,0.344714,0.431031,0.604797,0.818463,0.85513,0.840325,0.131526,0.406467,0.742171,0.134438,0.0654465,0.240355,0.964713,0.943044,0.549451,0.756957,0.996981,0.139735,0.0208787,0.571913,0.558618,0.495672,0.578121,0.172785,0.611998,0.502768,0.682368,0.117865,0.854193,0.676465,0.59954,0.743339,0.560271,0.69821,0.21085,0.118756,0.136635,0.3961,0.111686,0.405699,0.361231,0.430781,0.898191,0.132522,0.869864,0.978986,0.985681,0.640508,0.768002,0.0977221,0.622553,0.111078,0.376225,0.0292358,0.993921,0.140061,0.650207,0.15596,0.940347,0.651779,0.654459,0.526267,0.129784,|0.720297,0.0263318,0.710933,0.998943,0.804767,0.629622,0.213994,0.51303,0.686394,0.177555,0.335833,0.584605,0.860795,0.909588,0.230228,0.305976,0.88232,0.792815,0.621335,0.782547,0.851452,0.736246,0.035686,0.863978,0.483205,0.343042,0.430717,0.23548,0.978387,0.141404,0.170568,0.900498,0.776234,0.565834,0.450355,0.20182,0.112141,0.75906,0.33636,0.74643,0.299965,0.406086,0.915488,0.26806,0.263294,0.025436,0.442236,0.0338658,0.922611,0.671838,0.540385,0.242268,0.361056,0.707081,0.761349,0.130217,0.863242,0.540074,0.6642,0.750884,0.0210195,0.260235,0.671477,0.148233,0.539108,0.808092,0.0920861,0.306534,0.78712,0.0634517,0.200659,0.389028,0.170413,0.647048,0.889481,0.107964,0.367612,0.142292,0.735095,0.819959,0.805855,0.790306,0.13735,0.834299,0.290125,0.363578,0.612285,0.99672,0.530857,0.527634,0.230361,0.274017,0.907514,0.0162552,0.236807,0.16806,0.184026,0.157933,0.171536,0.555255,0.616727,0.974277,0.338484,0.065872,0.641157,0.271028,0.655739,0.135434,0.786427,0.233805,0.364825,0.546438,0.955897,0.204815,0.63504,0.420868,0.15532,0.200715,0.913875,0.047264,0.181714,0.630407,0.183014,0.740378,0.653864,0.70414,0.794928,0.257649,0.0299693,0.978908,0.537772,0.441445,0.779363,0.186356,0.357034,0.329983,0.221598,0.215163,0.478326,0.0796423,0.537691,0.706253,0.522086,0.634902,0.812572,0.0160472,0.76364,0.11284,0.23757,0.740552,0.636151,0.584875,0.0916377,0.372452,0.128047,0.757833,0.758854,0.528551,0.0722137,0.650102,0.396787,0.312086,0.042235,0.99845,0.396387,0.728945,0.949299,0.170061,0.539485,0.963179,0.880424,0.30101,0.91162,0.658926,0.159923,0.820089,0.337538,0.359217,0.552433,0.7839,0.291449,0.380468,0.953093,0.265885,0.931227,0.0901095,0.463289,0.691555,0.372069,0.766161,0.288363,0.823069,0.489066,0.657707,0.94985,0.156414,0.637075,0.261268,0.528754,0.770536,0.294374,0.868463,0.87698,0.46967,0.797522,0.927942,0.200486,0.353705,0.822634,0.381364,0.561304,0.209465,0.982043,0.672482,0.470568,0.673574,0.891419,0.162262,0.429349,0.0552915,0.230111,0.352899,0.893458,0.355114,0.283162,0.0182645,0.157954,0.504438,0.427249,0.0388831,0.528093,0.998704,0.563288,0.808497,0.33624,0.270253,0.124528,0.964383,0.0743806,0.809509,0.368554,0.129573,0.782012,0.689875,0.0863065,0.388323,0.133602,0.638474,0.560814,0.550996,0.979336,0.92042,0.869738,0.745719,0.68831,0.577224,0.176965,0.709081,0.133869,0.881114,0.640718,0.423206,0.720167,0.866026,0.109639,0.922537,0.491436,0.371575,0.0720813,0.173184,0.394131,0.95869,0.68397,0.206543,0.110141,0.590184,0.637645,0.110556,0.220246,0.46654,0.45162,0.107371,0.190228,0.939592,0.410812,0.656308,0.0417818,0.412866,0.420294,0.562339,0.214457,0.523759,0.274156,0.554379,0.581499,0.962552,0.413169,0.713885,0.00727254,0.354575,0.572108,0.111374,0.526826,0.655253,0.778319,0.0725841,0.0754884,0.247562,0.273988,0.808372,0.51337,0.860473,0.89741,0.692761,0.76567,0.495166,0.796423,0.109322,0.92513,0.162052,0.303814,0.12208,0.746975,0.228698,0.0915114,0.785906,0.808119,0.0691609,0.246036,0.440774,0.76319,0.647312,0.830737,0.584399,0.863375,0.946841,0.343809,0.59475,0.58783,0.852496,0.0908949,0.501101,0.732618,0.333113,0.71929,0.791601,0.263383,0.769585,0.496573,0.740622,0.217701,0.683626,0.125696,0.953725,0.0431727,0.209018,0.0508182,0.610285,0.35778,0.25067,0.463385,0.392777,0.0551963,0.629082,0.217804,0.426627,0.41845,0.922318,0.759749,0.524442,0.530886,0.000991881,0.733046,0.177186,0.828623,0.985313,0.617964,0.97893,0.801476,0.43141,0.406926,0.143945,0.556507,0.323192,0.542875,0.802118,0.733538,0.82744,0.460328,0.99292,0.800834,0.686907,0.488198,0.547762,0.653457,0.805014,0.307314,0.586077,0.267635,0.72761,0.20462,0.873444,0.937761,0.948105,0.617556,0.73409,0.887857,0.415276,0.558859,0.677078,0.395279,0.772565,0.347218,0.766717,0.952896,0.647481,0.143686,0.074895,0.493379,0.0823437,0.00617641,0.480775,0.992738,0.115178,0.454769,0.450404,0.333722,0.631145,0.362615,0.376833,0.116659,0.426936,0.309499,0.312525,0.492069,0.40583,0.22832,0.88434,0.0356817,0.3934,0.651856,0.738827,0.174846,0.233633,0.0956036,0.404954,0.0999979,0.653464,0.0253301,0.913812,0.408846,0.00583458,0.319265,0.0123789,0.195494,0.484551,0.392001,0.237018,0.046159,0.314805,0.455404,0.00383425,0.255334,0.566141,0.363909,0.952923,0.191832,0.904364,0.0213792,0.582482,0.0928513,0.101436,0.39116,0.400068,0.442443,0.198556,0.950083,0.603281,0.759731,0.382894,0.562193,0.789332,0.0153253,0.478221,0.237965,0.150812,0.15123,0.353151,0.890119,0.715058,0.500572,0.0721248,0.37626,0.278376,0.944212,0.54439,0.490313,0.487046,0.427184,0.446745,0.0505228,0.7981,0.41313,0.673611,0.145313,0.830849,0.344638,0.0923345,0.455256,0.786693,0.230645,0.0358982,0.789038,0.373855,0.173699,0.999874,0.095399,0.268867,0.997039,0.0638634,0.688313,0.289952,0.813155,0.540928,0.790481,0.672008,0.410521,0.177876,0.842668,0.597796,0.797771,0.319497,0.991369,0.623649,0.702598,0.970787,0.874073,0.452625,0.439045,0.502785,0.482955,0.206456,0.0156085,0.0394491,0.556697,0.736001,0.992917,0.696012,0.818318,0.526569,0.12814,0.224911,0.00222075,0.626833,0.997953,0.0917124,0.700392,0.337557,0.413212,0.171967,0.435471,0.285856,0.578678,0.62866,0.829249,0.891214,0.127916,0.152305,0.971635,0.272443,0.366946,0.699837,0.00187802,0.00498617,0.908846,0.69774,0.718074,0.288041,0.349032,0.372981,0.853165,0.683086,0.148556,0.312966,0.370593,0.220465,0.824144,0.150573,0.635776,0.605923,0.881473,0.153359,0.277573,0.8055,0.913684,0.586812,0.331391,0.773962,0.655987,0.315698,0.773488,0.51477,0.908966,0.665284,0.619202,0.255491,0.705405,0.325428,0.0668947,0.29965,0.365498,0.807686,0.271234,0.437324,0.00469643,0.585609,0.518956,0.899572,0.542985,0.874914,0.00485665,0.119956,0.720841,0.879162,0.882536,0.507869,0.43622,0.512807,0.309286,0.269754,0.928362,0.583488,0.169427,0.923981,0.527488,0.760945,0.183708,0.815108,0.0314393,0.405169,0.346725,0.273466,0.761913,0.493465,0.523238,0.636875,0.0658183,0.596232,0.965158,0.981083,0.13936,0.259855,0.654493,0.267701,0.650673,0.596292,0.701663,0.222197,0.722156,0.751575,0.928137,0.444462,0.648269,0.409301,0.225192,0.790129,0.733769,0.828894,0.071474,0.135882,0.0133445,0.476407,0.0429913,0.248567,0.717075,0.286252,0.91144,0.308925,0.502694,0.447456,0.134807,0.594816,0.141235,0.387288,0.252646,0.0394191,0.421135,0.615838,0.455965,0.950701,0.769018,0.592926,0.646503,0.0653832,0.18108,0.646363,0.373041,0.206204,0.309372,0.455509,0.696603,0.503475,0.86704,0.059933,0.99773,0.180735,0.966597,0.786047,0.302242,0.253063,0.856406,0.880865,0.389285,0.996953,0.580203,0.523392,0.52365,0.904886,0.63947,0.958377,0.0588355,0.363734,0.519631,0.80916,0.906448,0.0321038,0.951656,0.294629,0.821612,0.522845,0.483215,0.0980055,0.81045,0.702613,0.104111,0.912272,0.637604,0.149452,0.609093,0.998934,0.599906,0.586604,0.432739,0.579038,0.875054,0.708446,0.960543,0.592174,0.600258,0.854037,0.715444,0.523228,0.325989,0.735027,0.275768,0.569664,0.209966,0.842218,0.398516,0.47918,0.47571,0.460702,0.491799,0.362147,0.727883,0.382232,0.171657,0.815307,0.463723,0.478956,0.870341,0.702969,0.561641,0.296824,0.298111,0.875871,0.558293,0.234121,0.408856,0.495084,0.3098,0.870149,0.249301,0.220978,0.334076,0.10623,0.116902,0.292849,0.658867,0.962729,0.938776,0.799868,0.790673,0.758269,0.203088,0.296796,0.0103592,0.856046,0.150072,0.138628,0.854643,0.151689,0.797686,0.504688,0.133498,0.468869,0.576045,0.557136,0.922718,0.462646,0.293661,0.171784,0.860656,0.482217,0.749741,0.851394,0.375083,0.471319,0.444999,0.502101,0.111286,0.106845,0.66155,0.424072,0.911993,0.254108,0.585449,0.207102,0.350302,0.200265,0.227021,0.645138,0.479066,0.910661,0.495082,0.408309,0.0772281,0.648175,0.175509,0.0337866,0.91072,0.419466,0.470622,0.631251,0.383281,0.71145,0.951231,0.379005,0.242777,0.603248,0.0435912,0.847513,0.576389,0.351464,0.918356,0.00595623,0.833568,0.539671,0.93995,0.439601,0.322877,0.818997,0.3813,0.0321184,0.357364,0.354114,0.494304,0.110473,0.20266,0.488172,0.419509,0.748058,0.648972,0.770559,0.425395,0.225896,0.425249,0.744298,0.118206,0.340073,0.476331,0.0913824,0.164415,0.388517,0.380203,0.170414,0.620256,0.420212,0.648954,0.961766,0.617079,0.431062,0.246179,0.393051,0.230814,0.0179935,0.803796,0.101497,0.530787,0.843916,0.857898,0.942752,0.0133104,0.598248,0.947309,0.940207,0.503696,0.61041,0.189488,0.694422,0.160198,0.266101,0.62223,0.703433,0.753061,0.375189,0.942714,0.43144,0.958047,0.024826,0.257755,0.578729,0.569137,0.691783,0.348252,0.0341539,0.358917,0.942225,0.414299,0.501098,0.54075,0.199562,0.865413,0.621959,0.213959,0.176987,0.196982,0.586939,0.486312,0.235613,0.900395,0.280718,0.509824,0.339746,0.790121,0.759287,0.835424,0.459358,0.188306,0.233992,0.571421,0.0988066,0.267678,0.815451,0.122345,0.420269,0.00589424,0.991414,0.826082,0.737503,0.636096,0.377691,0.586246,0.423052,0.746464,0.249713,0.0218149,0.915984,0.467426,0.236172,0.466701,0.394782,0.621394,0.877137,0.00541848,0.59854,0.334936,0.874174,0.982258,0.607118,0.856012,0.0745732,0.165949,0.878441,0.0508481,0.246097,0.748385,0.0751518,0.670632,0.361212,0.717948,0.0508471,0.857818,0.338438,0.778134,0.262695,0.511788,0.181337,0.861938,0.614129,|0.330617,0.461085,0.00544995,0.0247445,0.381895,0.411339,0.426716,0.575212,0.717183,0.116179,0.475945,0.688147,0.753222,0.449299,0.0674198,0.335764,0.0679235,0.969663,0.158993,0.814865,0.349954,0.658033,0.822711,0.277175,0.78125,0.963269,0.906492,0.870628,0.0721852,0.146703,0.640269,0.342786,0.727668,0.437292,0.386215,0.312761,0.644743,0.0817552,0.938752,0.711391,0.100018,0.505714,0.910275,0.377552,0.753464,0.805683,0.831457,0.463473,0.966628,0.856086,0.800129,0.296045,0.0721474,0.614171,0.215248,0.772553,0.708196,0.532149,0.0487387,0.765101,0.256406,0.108195,0.091671,0.578277,0.8062,0.86719,0.5676,0.300145,0.761581,0.505386,0.0289924,0.754299,0.886524,0.291343,0.76532,0.64124,0.518366,0.292493,0.922179,0.507762,0.787504,0.838634,0.865714,0.517765,0.151756,0.151111,0.369859,0.791672,0.494072,0.550586,0.846347,0.906549,0.686971,0.382892,0.941261,0.84722,0.562933,0.358367,0.238932,0.442957,0.161076,0.428296,0.885925,0.503123,0.484254,0.652799,0.228531,0.0302464,0.713073,0.954923,0.966992,0.631017,0.936454,0.663378,0.573869,0.652963,0.654957,0.498202,0.192186,0.112598,0.432309,0.143643,0.116933,0.553915,0.120279,0.745791,0.400993,0.619218,0.782382,0.546213,0.544758,0.0113283,0.929945,0.697859,0.841584,0.0776783,0.0557018,0.654967,0.397676,0.759358,0.0382764,0.550228,0.46713,0.471987,0.742311,0.00720155,0.342942,0.882456,0.941777,0.674012,0.860791,0.36687,0.878728,0.812265,0.627423,0.664616,0.446344,0.480423,0.207023,0.636836,0.475646,0.193906,0.801753,0.691534,0.404708,0.131885,0.0204499,0.970549,0.441794,0.161365,0.429129,0.219874,0.665887,0.780513,0.725894,0.207658,0.718675,0.240577,0.88561,0.642493,0.724599,0.0232975,0.0272872,0.790328,0.281671,0.307573,0.677143,0.340853,0.32078,0.863943,0.432852,0.0296088,0.821486,0.81609,0.94316,0.530602,0.210475,0.809746,0.0207353,0.0721477,0.633239,0.924603,0.554545,0.650359,0.206131,0.501337,0.86656,0.361043,0.416918,0.595249,0.942328,0.589439,0.199586,0.104361,0.335841,0.480793,0.272798,0.989192,0.937678,0.522196,0.447549,0.358459,0.866297,0.0628288,0.810033,0.578718,0.951137,0.791578,0.198902,0.610936,0.962814,0.0354444,0.367835,0.323218,0.448948,0.246622,0.89203,0.574483,0.182893,0.662801,0.748688,0.539784,0.695258,0.159038,0.831055,0.853803,0.0573031,0.239137,0.518884,0.604905,0.802849,0.317122,0.517082,0.363645,0.173385,0.624977,0.18019,0.43891,0.506782,0.736126,0.00436717,0.79558,0.167307,0.401884,0.0928466,0.54185,0.299569,0.275024,0.94119,0.865333,0.777484,0.97118,0.433391,0.888929,0.0653504,0.390105,0.899509,0.176563,0.904663,0.492071,0.88848,0.873813,0.567025,0.0758918,0.333775,0.994265,0.743638,0.92463,0.478871,0.464238,0.269177,0.0735937,0.916789,0.676882,0.646036,0.748189,0.109898,0.697312,0.321298,0.476931,0.109113,0.369293,0.649987,0.298214,0.228713,0.358726,0.565655,0.455504,0.0571361,0.566668,0.852619,0.424486,0.955651,0.442046,0.75492,0.995212,0.979737,0.661986,0.204821,0.0464866,0.262004,0.882505,0.441999,0.555322,0.64162,0.269295,0.216856,0.430439,0.891647,0.144032,0.134251,0.113572,0.98663,0.219929,0.902705,0.184146,0.938688,0.590654,0.646061,0.837875,0.156687,0.878197,0.283265,0.632053,0.253242,0.53707,0.182614,0.162705,0.457874,0.510718,0.365014,0.632538,0.384294,0.735757,0.116804,0.0823794,0.0490244,0.561154,0.539457,0.179529,0.544966,0.906255,0.0416182,0.997043,0.137433,0.787896,0.303267,0.782821,0.739897,0.935997,0.206914,0.391002,0.385469,0.592696,0.547748,0.385689,0.89835,0.0429121,0.191451,0.836515,0.703905,0.144945,0.723678,0.810867,0.945172,0.57611,0.90088,0.39504,0.931786,0.569234,0.00935751,0.0663543,0.989525,0.00869668,0.0860333,0.103703,0.56221,0.722916,0.59536,0.842774,0.568761,0.927092,0.243576,0.187387,0.75921,0.933199,0.246733,0.675703,0.395396,0.212309,0.309335,0.996961,0.5718,0.228575,0.740521,0.0662814,0.913652,0.806182,0.548756,0.412609,0.446858,0.634632,0.763626,0.255469,0.195177,0.236381,0.189778,0.204621,0.273634,0.676545,0.666911,0.158892,0.574945,0.00159973,0.559094,0.351261,0.0279787,0.0579381,0.610086,0.370547,0.826265,0.862875,0.634098,0.796683,0.215451,0.65531,0.881625,0.766087,0.18005,0.285661,0.563437,0.721281,0.281727,0.78995,0.362476,0.0563789,0.150953,0.571193,0.3913,0.990133,0.572331,0.0354989,0.977967,0.101517,0.0202789,0.742934,0.897821,0.913458,0.435224,0.493288,0.344431,0.905808,0.843573,0.734576,0.377768,0.631844,0.782851,0.536776,0.301069,0.124211,0.578172,0.530033,0.687598,0.33055,0.0838526,0.567161,0.843848,0.242809,0.161137,0.124024,0.212108,0.0423072,0.622799,0.100461,0.354675,0.480342,0.2379,0.194913,0.552231,0.477277,0.655222,0.314227,0.0261843,0.757421,0.315453,0.0756446,0.0188253,0.99741,0.666331,0.790604,0.561035,0.929743,0.868242,0.77179,0.170413,0.997757,0.274202,0.93255,0.712868,0.150804,0.738155,0.891397,0.950085,0.582766,0.615772,0.454799,0.651901,0.561927,0.0930561,0.862838,0.120147,0.00940669,0.212958,0.0565088,0.762162,0.320027,0.715063,0.474571,0.395996,0.800276,0.500331,0.910473,0.439887,0.204449,0.187358,0.159264,0.0893631,0.295256,0.251736,0.963388,0.260192,0.501426,0.93407,0.187775,0.973474,0.860938,0.0589837,0.64052,0.0480326,0.0746479,0.0130274,0.029097,0.268888,0.111942,0.0305094,0.660865,0.288471,0.262133,0.979632,0.227154,0.881904,0.636835,0.991587,0.756406,0.259943,0.777551,0.00129497,0.390375,0.248146,0.590336,0.759873,0.657325,0.105555,0.208308,0.0592508,0.377802,0.35381,0.973062,0.503123,0.529329,0.249395,0.685545,0.120598,0.378881,0.640354,0.0374823,0.471665,0.584963,0.108113,0.969978,0.456637,0.374748,0.203218,0.350648,0.600189,0.709123,0.951171,0.423268,0.390083,0.30345,0.748322,0.662595,0.205309,0.0372466,0.291599,0.0467705,0.0123674,0.0727472,0.759677,0.707009,0.00293308,0.477079,0.0608672,0.477892,0.324855,0.877129,0.553813,0.617907,0.112613,0.568373,0.101767,0.476193,0.751891,0.750905,0.571466,0.0857053,0.133697,0.998195,0.725786,0.741059,0.849283,0.328163,0.00657946,0.110467,0.306428,0.469028,0.764631,0.304408,0.122557,0.963664,0.659585,0.844709,0.469212,0.749039,0.169611,0.744524,0.13088,0.909896,0.666838,0.634442,0.683266,0.904383,0.231123,0.548398,0.130751,0.907464,0.857637,0.34379,0.333036,0.59719,0.217469,0.277522,0.0690507,0.742388,0.628384,0.14217,0.118551,0.206802,0.347653,0.529317,0.333195,0.743353,0.0864961,0.215004,0.0934529,0.442519,0.185577,0.892018,0.144567,0.421,0.928871,0.871844,0.795481,0.396107,0.0921793,0.0865384,0.219206,0.93572,0.315628,0.977901,0.518315,0.319695,0.0177025,0.623008,0.471391,0.184764,0.677344,0.241576,0.334276,0.419229,0.0123547,0.549013,0.544151,0.0701604,0.585034,0.965632,0.413222,0.659637,0.671612,0.4764,0.0662679,0.190462,0.0839072,0.686295,0.740789,0.915941,0.011834,0.191274,0.907808,0.882186,0.554699,0.905033,0.656365,0.107788,0.493075,0.851442,0.709844,0.483004,0.980927,0.758288,0.162709,0.295308,0.386485,0.391866,0.751998,0.289972,0.488426,0.122012,0.0635365,0.329584,0.886458,0.880287,0.174688,0.776876,0.496059,0.84048,0.858924,0.378479,0.0879746,0.290314,0.277066,0.337581,0.911647,0.116999,0.233669,0.840289,0.552202,0.901661,0.682273,0.0197948,0.11123,0.393661,0.759569,0.962757,0.190628,0.833934,0.745397,0.908555,0.609832,0.00575805,0.640856,0.766287,0.0282349,0.403054,0.889313,0.40947,0.06535,0.573476,0.247335,0.473912,0.498357,0.050482,0.882728,0.475403,0.823393,0.0217441,0.100897,0.402136,0.57109,0.00460422,0.907562,0.37253,0.850437,0.25653,0.698379,0.494932,0.956359,0.687686,0.451054,0.565322,0.38112,0.574401,0.221682,0.806278,0.424363,0.713233,0.417236,0.627897,0.906491,0.999711,0.803178,0.589396,0.997994,0.428929,0.714587,0.341429,0.551299,0.36481,0.706625,0.271792,0.637333,0.992077,0.373993,0.415622,0.281008,0.475666,0.579766,0.148671,0.955382,0.743483,0.0233744,0.475776,0.433202,0.919464,0.796463,0.924666,0.660593,0.685152,0.847743,0.792318,0.359577,0.439929,0.037951,0.915409,0.10375,0.171099,0.768298,0.183596,0.577771,0.000757575,0.28772,0.169365,0.215862,0.763709,0.573633,0.443289,0.0950124,0.419942,0.561858,0.612669,0.187192,0.81044,0.141328,0.804018,0.513292,0.0325169,0.106561,0.520238,0.779581,0.111237,0.259944,0.93334,0.940785,0.0170444,0.418589,0.406939,0.219971,0.399713,0.42694,0.776934,0.538275,0.748706,0.370708,0.156068,0.438497,0.089754,0.0979941,0.790811,0.48837,0.27705,0.0933837,0.573588,0.470161,0.144961,0.874804,0.688225,0.547732,0.806473,0.685105,0.938029,0.0988102,0.669596,0.739074,0.952205,0.233792,0.466437,0.0199122,0.814066,0.248065,0.848874,0.735364,0.428378,0.194759,0.128656,0.639333,0.884085,0.603995,0.743641,0.948871,0.125381,0.735032,0.0556738,0.456144,0.310748,0.489076,0.204322,0.564743,0.255142,0.658734,0.0813166,0.234926,0.245996,0.545984,0.181599,0.638074,0.537813,0.774834,0.550642,0.259287,0.0851654,0.816589,0.481572,0.601591,0.133427,0.241848,0.258585,0.720545,0.290289,0.398203,0.509078,0.180717,0.546253,0.954196,0.198597,0.557612,0.803252,0.775953,0.882174,0.798236,0.949354,0.337097,0.43867,0.42844,0.562855,0.414273,0.0621055,0.971555,0.814289,0.432119,0.491919,0.667808,0.610047,0.118561,0.368003,0.0644149,0.293566,0.470597,0.880013,0.977638,0.451348,0.597497,0.683721,0.527268,0.679128,0.718086,0.725545,0.497932,0.548105,0.45462,0.673627,|0.925357,0.306345,0.368619,0.704717,0.673509,0.566174,0.0900226,0.177669,0.563616,0.373488,0.635359,0.361431,0.501544,0.555144,0.258767,0.83027,0.0377321,0.818402,4.78625e-05,0.161369,0.898215,0.56031,0.905783,0.558455,0.362756,0.530592,0.0130562,0.479357,0.874317,0.489923,0.693131,0.736842,0.00848603,0.312851,0.706534,0.750667,0.908917,0.046456,0.814903,0.266294,0.857775,0.683384,0.158871,0.740116,0.882125,0.974929,0.108058,0.0104676,0.647727,0.65119,0.316385,0.672706,0.976112,0.347676,0.805202,0.246252,0.562104,0.727415,0.87209,0.119272,0.27635,0.589613,0.00211966,0.5313,0.0461057,0.51851,0.718879,0.86834,0.94157,0.649444,0.94644,0.863222,0.16073,0.431029,0.557002,0.932946,0.354587,0.544663,0.535749,0.557409,0.513065,0.714705,0.75934,0.0583012,0.131629,0.759366,0.953993,0.777555,0.311656,0.108065,0.621649,0.761305,0.596299,0.213206,0.889012,0.240993,0.0887032,0.0293072,0.796986,0.872736,0.926241,0.469008,0.675176,0.742492,0.410364,0.539979,0.835471,0.77761,0.995645,0.153288,0.827547,0.380071,0.806201,0.837165,0.284382,0.252461,0.077033,0.236211,0.997897,0.253544,0.230831,0.311285,0.585612,0.89123,0.232775,0.979152,0.291671,0.472815,0.285645,0.079379,0.0612457,0.267403,0.154456,0.528923,0.332658,0.342516,0.358038,0.361543,0.705383,0.341496,0.898377,0.557976,0.238748,0.416864,0.578737,0.964548,0.071609,0.931478,0.645927,0.150388,0.319394,0.45366,0.338811,0.608031,0.389841,0.286522,0.705763,0.89972,0.411493,0.677673,0.169826,0.685438,0.223542,0.933433,0.736061,0.101731,0.185994,0.667893,0.286842,0.0361336,0.0455834,0.446874,0.857378,0.0246838,0.277357,0.421994,0.622004,0.0890445,0.790632,0.954597,0.760662,0.796118,0.13415,0.549392,0.615011,0.217361,0.518249,0.22194,0.0188581,0.835946,0.337921,0.515787,0.40039,0.41696,0.672334,0.0974662,0.0998687,0.125088,0.0427005,0.52982,0.421828,0.370708,0.445003,0.949693,0.0435278,0.810759,0.544705,0.148071,0.556651,0.949706,0.606591,0.756037,0.150463,0.287899,0.0255753,0.477255,0.951544,0.768089,0.100538,0.0821704,0.608651,0.720313,0.593407,0.128764,0.954514,0.287098,0.26454,0.758553,0.294407,0.206012,0.286255,0.577844,0.853544,0.611752,0.440733,0.420518,0.856725,0.204813,0.911019,0.418973,0.807383,0.694345,0.701015,0.540652,0.531919,0.0982961,0.758403,0.717029,0.90739,0.0280893,0.152527,0.64854,0.724061,0.487939,0.325022,0.426662,0.0977173,0.910527,0.609246,0.0463003,0.569568,0.303806,0.296773,0.812187,0.571306,0.533418,0.911897,0.163831,0.0262622,0.3706,0.104913,0.752813,0.477772,0.904323,0.685843,0.342001,0.28608,0.200944,0.310988,0.849045,0.75626,0.858171,0.606045,0.714689,0.818798,0.766363,0.153137,0.136695,0.78311,0.551479,0.410854,0.145699,0.00962818,0.908041,0.736507,0.941163,0.323012,0.528947,0.436952,0.546281,0.84647,0.514669,0.00764662,0.281406,0.366996,0.782506,0.621578,0.923407,0.345801,0.460842,0.510758,0.949598,0.176219,0.921407,0.796199,0.976144,0.0323724,0.615583,0.251741,0.954776,0.118007,0.652296,0.287954,0.0987113,0.488604,0.316807,0.0234224,0.538065,0.340987,0.2375,0.84761,0.237184,0.88278,0.213755,0.188553,0.450532,0.940175,0.459867,0.677342,0.925634,0.50359,0.496133,0.31463,0.751038,0.0145682,0.873981,0.431561,0.844517,0.873571,0.0143704,0.959515,0.129191,0.282482,0.7883,0.876907,0.346143,0.795186,0.541239,0.764299,0.102237,0.713208,0.0784457,0.214522,0.152797,0.249979,0.798708,0.174332,0.0919698,0.957158,0.00639057,0.255564,0.253919,0.0547037,0.261925,0.172164,0.915538,0.196086,0.645897,0.702891,0.573418,0.131463,0.251677,0.233888,0.465066,0.0331386,0.211771,0.608322,0.982775,0.0286589,0.0704142,0.479578,0.646628,0.710232,0.949737,0.536377,0.549068,0.753472,0.180857,0.266804,0.0567576,0.0461063,0.908957,0.794897,0.536358,0.444481,0.19465,0.667234,0.706993,0.807027,0.354479,0.814727,0.878737,0.807495,0.761565,0.229471,0.908562,0.401504,0.230606,0.899228,0.411164,0.877823,0.307616,0.396238,0.35011,0.948311,0.375488,0.629673,0.622638,0.387559,0.85778,0.402291,0.658839,0.408414,0.737516,0.158633,0.498666,0.149984,0.769102,0.276724,0.141348,0.079813,0.248348,0.0441788,0.90206,0.112006,0.750134,0.413842,0.143781,0.862996,0.700512,0.615804,0.0144037,0.538415,0.547041,0.921819,0.640378,0.942873,0.698914,0.169192,0.64382,0.640632,0.264435,0.143992,0.21282,0.721812,0.646447,0.311938,0.101623,0.488318,0.216857,0.344003,0.0838776,0.742987,0.585437,0.531727,0.727796,0.922989,0.251916,0.236522,0.974797,0.621244,0.175057,0.221028,0.122957,0.390952,0.683546,0.643709,0.689736,0.482762,0.895196,0.389296,0.481702,0.753517,0.934299,0.0645179,0.0101296,0.0666491,0.130216,0.699198,0.933232,0.921802,0.317191,0.0359699,0.246435,0.684643,0.699103,0.318681,0.0872256,0.667737,0.711723,0.591201,0.178149,0.0962153,0.0837594,0.268,0.656876,0.386549,0.84017,0.989554,0.522501,0.878905,0.167604,0.665181,0.341457,0.884068,0.932844,0.746396,0.141222,0.227845,0.711265,0.0492709,0.531716,0.434787,0.249853,0.713743,0.856011,0.133518,0.284183,0.439185,0.134941,0.945999,0.654209,0.38141,0.347292,0.663005,0.148352,0.864424,0.558349,0.807733,0.949143,0.460161,0.319853,0.225562,0.0948028,0.628989,0.00154835,0.160411,0.696835,0.285504,0.274615,0.922764,0.320578,0.403551,0.779529,0.431923,0.986874,0.636674,0.992644,0.166831,0.551416,0.812598,0.634562,0.806631,0.876624,0.974443,0.661263,0.475528,0.161721,0.543475,0.932144,0.764712,0.254674,0.206556,0.0519286,0.460248,0.0957469,0.34524,0.100359,0.601551,0.390441,0.886132,0.501037,0.756141,0.563989,0.408797,0.154589,0.230775,0.70568,0.183899,0.951732,0.611447,0.621094,0.24781,0.54728,0.314163,0.693867,0.676604,0.352501,0.208677,0.12819,0.343524,0.129864,0.852652,0.70943,0.140359,0.198205,0.575707,0.429131,0.308499,0.65668,0.604741,0.28267,0.0966765,0.681311,0.636257,0.076297,0.0888116,0.338949,0.121322,0.842493,0.815213,0.128317,0.217086,0.144283,0.797456,0.824018,0.50575,0.244362,0.305551,0.538537,0.141656,0.810474,0.13988,0.814088,0.85496,0.367556,0.295631,0.228382,0.192241,0.210841,0.420886,0.964749,0.344107,0.238396,0.16209,0.316595,0.88662,0.439106,0.509913,0.613519,0.106984,0.176245,0.874782,0.19238,0.14183,0.623677,0.785238,0.328914,0.0814323,0.89038,0.334988,0.693759,0.85312,0.404175,0.632935,0.530374,0.0464954,0.677129,0.749036,0.751276,0.604838,0.0804815,0.540692,0.76828,0.078913,0.47353,0.409805,0.825526,0.729806,0.86709,0.0785231,0.540209,0.6933,0.0985228,0.539345,0.664385,0.658282,0.255499,0.449006,0.775442,0.401862,0.35987,0.802829,0.465538,0.91433,0.878963,0.940865,0.516137,0.326749,0.354113,0.816611,0.325619,0.939209,0.8847,0.876093,0.0597057,0.694212,0.0605298,0.537438,0.301206,0.179231,0.461394,0.697246,0.847786,0.0267267,0.766901,0.98204,0.925057,0.111268,0.0622936,0.394399,0.178808,0.491417,0.164786,0.170602,0.574046,0.995862,0.867853,0.916284,0.800594,0.330347,0.751214,0.591257,0.831162,0.941576,0.187479,0.693521,0.180665,0.786244,0.0997038,0.431304,0.628279,0.73773,0.797968,0.290782,0.378491,0.968289,0.391924,0.979251,0.941922,0.968387,0.0565234,0.945008,0.253946,0.252395,0.520425,0.420442,0.833623,0.913527,0.611368,0.116087,0.20738,0.3911,0.175907,0.408287,0.426708,0.477547,0.711602,0.233984,0.0579355,0.414781,0.607278,0.331039,0.503548,0.677101,0.351966,0.76767,0.643695,0.215391,0.12245,0.440664,0.803164,0.150981,0.691828,0.257672,0.748179,0.645793,0.356733,0.875673,0.163206,0.247007,0.753127,0.361612,0.860888,0.663801,0.119712,0.543688,0.778493,0.0664203,0.729068,0.436958,0.626863,0.156628,0.93877,0.192095,0.552472,0.927429,0.621416,0.653061,0.363048,0.12609,0.852762,0.669985,0.933393,0.332076,0.0181069,0.0761425,0.967449,0.0687274,0.764293,0.0475779,0.0260876,0.984522,0.385483,0.181703,0.691919,0.914206,0.0416229,0.210689,0.273996,0.694411,0.0444178,0.788879,0.350184,0.114645,0.853852,0.742158,0.509609,0.86948,0.939543,0.852662,0.0925725,0.70319,0.696146,0.844183,0.59441,0.845788,0.354018,0.561628,0.615537,0.667637,0.789412,0.26262,0.900456,0.241134,0.639872,0.113242,0.971482,0.797323,0.968996,0.24126,0.77621,0.425805,0.539681,0.492607,0.015087,0.885496,0.747812,0.292997,0.742115,0.935878,0.750156,0.453503,0.550973,0.298917,0.377866,0.113822,0.394098,0.471973,0.594673,0.747125,0.969276,0.879499,0.713634,0.916487,0.644443,0.486987,0.428126,0.143949,0.9961,0.622206,0.837332,0.36998,0.820743,0.141911,0.0486332,0.509555,0.72969,0.837595,0.0848212,0.609724,0.48304,0.778898,0.156506,0.801701,0.255675,0.185483,0.878069,0.0213308,0.212014,0.912018,0.53095,0.454683,0.797244,0.580188,0.304149,0.83275,0.806746,0.249416,0.244245,0.0902283,0.405641,0.192194,0.648123,0.925187,0.965684,0.373342,0.29619,0.0873736,0.385564,0.232603,0.78266,0.120301,0.403948,0.600132,0.181347,0.516212,0.288009,0.0426182,0.433876,0.904984,0.493809,0.386979,0.0902794,0.278418,0.942479,0.861834,0.219665,0.113842,0.825589,0.219908,0.504699,0.273179,0.350175,0.531471,0.609204,0.756151,0.343992,0.175468,0.0196786,0.0728579,0.536014,0.631344,0.105981,0.188125,0.392442,0.995764,0.271341,0.352208,0.321828,0.423204,0.287289,0.864411,0.97325,0.787617,0.944529,0.130509,0.929715,0.771325,0.791804,0.607013,0.149198,0.203924,0.0544033,0.343778,0.222588,0.710168,0.416512,0.695339,0.52515,|0.175475,0.176708,0.114891,0.47857,0.946017,0.32529,0.476659,0.913941,0.434479,0.191412,0.810126,0.412501,0.279732,0.75295,0.822679,0.201435,0.803592,0.805535,0.0449005,0.0932769,0.863456,0.898543,0.725249,0.14971,0.634926,0.956664,0.0936574,0.461719,0.633638,0.988009,0.90498,0.251812,0.628395,0.992859,0.792106,0.880954,0.129352,0.699824,0.842672,0.239927,0.142772,0.409738,0.60924,0.94862,0.916397,0.210025,0.0580789,0.110389,0.875951,0.976505,0.70753,0.623741,0.867402,0.417357,0.562919,0.177494,0.213854,0.138602,0.725056,0.392509,0.772956,0.421733,0.478129,0.990875,0.792999,0.466381,0.873061,0.924093,0.492948,0.8813,0.855049,0.996193,0.301305,0.684374,0.435289,0.124656,0.602127,0.737779,0.387826,0.119552,0.000368237,0.363076,0.57758,0.979043,0.455095,0.151352,0.868814,0.747097,0.786283,0.824871,0.453391,0.668186,0.989838,0.362478,0.142838,0.983535,0.318558,0.00583518,0.892777,0.112904,0.380725,0.755607,0.346446,0.272555,0.821728,0.02882,0.142326,0.671853,0.445978,0.384265,0.161704,0.288129,0.65015,0.358184,0.675344,0.858544,0.281412,0.240214,0.851176,0.777146,0.971105,0.566377,0.262061,0.12453,0.964791,0.39622,0.716492,0.726447,0.827292,0.298348,0.430344,0.611794,0.732302,0.113791,0.490526,0.727181,0.343288,0.48732,0.0805262,0.267855,0.192692,0.414197,0.609642,0.940721,0.505931,0.464879,0.774077,0.867347,0.00782287,0.266001,0.208518,0.632481,0.0717235,0.0825959,0.257934,0.884929,0.423224,0.198173,0.777838,0.909797,0.791399,0.335699,0.0552097,0.249413,0.337162,0.548994,0.639369,0.0474665,0.427445,0.148007,0.653382,0.68234,0.199638,0.593912,0.0410452,0.830806,0.216609,0.0210728,0.827431,0.146955,0.214622,0.836113,0.294897,0.405701,0.190147,0.696052,0.0260822,0.154073,0.921919,0.448616,0.0713235,0.679102,0.637573,0.478924,0.730403,0.664902,0.00110853,0.304961,0.0920638,0.853003,0.411646,0.575175,0.49436,0.491781,0.767084,0.432762,0.356711,0.559898,0.782314,0.916008,0.300261,0.570743,0.582064,0.728723,0.843536,0.757529,0.603182,0.703281,0.601376,0.755125,0.380897,0.918488,0.719395,0.593293,0.0765356,0.217635,0.0811849,0.671006,0.998718,0.374858,0.47647,0.392105,0.297056,0.595211,0.714874,0.510392,0.132731,0.347496,0.196851,0.290443,0.501664,0.817064,0.348031,0.577226,0.394071,0.154383,0.421536,0.887381,0.401326,0.90373,0.719595,0.112391,0.644727,0.210972,0.0906978,0.753101,0.673818,0.852481,0.114301,0.132555,0.241729,0.0640325,0.411648,0.833298,0.131085,0.6418,0.991904,0.608954,0.364621,0.857836,0.913957,0.029618,0.432846,0.277874,0.56219,0.374762,0.619957,0.870259,0.532464,0.910868,0.11401,0.570442,0.207897,0.913736,0.399805,0.538829,0.351834,0.953008,0.825298,0.915223,0.0684702,0.192184,0.234356,0.0459355,0.474926,0.878991,0.542198,0.867582,0.234132,0.868356,0.368952,0.440206,0.131753,0.807807,0.407306,0.742897,0.944848,0.268407,0.296818,0.780883,0.798765,0.227314,0.0669748,0.854095,0.578784,0.701023,0.0765484,0.694259,0.645194,0.179021,0.455537,0.582806,0.487596,0.528155,0.0421977,0.474864,0.767442,0.055328,0.320387,0.621895,0.160798,0.892598,0.46316,0.0489495,0.249177,0.765414,0.340352,0.815778,0.990592,0.895762,0.76936,0.385316,0.127926,0.886456,0.609465,0.744647,0.498607,0.158221,0.761896,0.964882,0.512154,0.441018,0.603698,0.819618,0.476588,0.00292122,0.37214,0.160606,0.613347,0.214744,0.491009,0.450201,0.294891,0.348375,0.741749,0.663084,0.867477,0.804547,0.893035,0.376598,0.798468,0.376209,0.469967,0.162259,0.61668,0.897134,0.751946,0.483523,0.691555,0.304365,0.16546,0.638288,0.672004,0.956391,0.111507,0.657887,0.85738,0.0207375,0.149108,0.834318,0.163601,0.74429,0.832596,0.130953,0.724392,0.569614,0.859545,0.914769,0.793809,0.36935,0.0861953,0.471596,0.49296,0.376354,0.0876386,0.275355,0.312227,0.420905,0.0103622,0.0420427,0.340069,0.501461,0.257878,0.0604514,0.921522,0.0110711,0.984363,0.524257,0.0756696,0.891297,0.0282767,0.719497,0.442797,0.449014,0.387134,0.701849,0.590424,0.614236,0.578319,0.47931,0.177237,0.35132,0.14432,0.307935,0.334006,0.0430675,0.668236,0.231515,0.923359,0.633654,0.572124,0.12256,0.680595,0.182834,0.548759,0.698253,0.436766,0.650915,0.820763,0.871421,0.91769,0.306954,0.451952,0.853385,0.825795,0.417598,0.704411,0.458316,0.436298,0.155988,0.919258,0.1,0.68114,0.0273329,0.599422,0.443231,0.384846,0.531302,0.869914,0.392787,0.944374,0.763826,0.568733,0.584194,0.177774,0.0263637,0.831361,0.0200471,0.968609,0.766697,0.0497507,0.054558,0.576664,0.614076,0.563803,0.633909,0.468094,0.0954235,0.905684,0.960188,0.407514,0.894111,0.580735,0.0597682,0.129572,0.808853,0.0545411,0.931863,0.0570872,0.0231021,0.234112,0.971247,0.237253,0.859739,0.435387,0.534432,0.414742,0.152231,0.0699064,0.47869,0.910662,0.402702,0.539786,0.592103,0.735003,0.379136,0.496372,0.056685,0.29158,0.461512,0.700442,0.58324,0.556447,0.274729,0.0803407,0.853887,0.660728,0.273981,0.905451,0.409248,0.879119,0.767308,0.156215,0.906219,0.00622326,0.15536,0.688424,0.938618,0.905927,0.770247,0.677966,0.552292,0.207821,0.285499,0.41419,0.373065,0.446593,0.711935,0.974092,0.103913,0.964999,0.904696,0.0696968,0.989549,0.701182,0.835813,0.604093,0.71739,0.453314,0.119806,0.755317,0.297355,0.77837,0.953039,0.455704,0.580314,0.409528,0.362928,0.0347906,0.0969979,0.980306,0.836737,0.83755,0.635295,0.207719,0.151849,0.0100352,0.187132,0.557897,0.791699,0.936702,0.324356,0.190218,0.498129,0.0988719,0.418411,0.110651,0.732575,0.311319,0.809151,0.323073,0.0819144,0.685783,0.582007,0.716261,0.102857,0.0601398,0.717816,0.863955,0.926637,0.918258,0.164903,0.197208,0.620385,0.181049,0.431571,0.0137463,0.494932,0.909503,0.0475799,0.68612,0.907266,0.293665,0.198352,0.671051,0.0162975,0.475918,0.186459,0.602352,0.60002,0.971403,0.949611,0.925056,0.167562,0.0212575,0.687161,0.0823235,0.445228,0.23902,0.626122,0.545608,0.602657,0.678118,0.726461,0.620538,0.114646,0.892175,0.756708,0.937307,0.946906,0.683865,0.625677,0.98007,0.361625,0.455434,0.321362,0.912242,0.481067,0.963561,0.167337,0.0694306,0.35026,0.949165,0.216308,0.533617,0.232514,0.853248,0.959665,0.269244,0.14409,0.0974742,0.0678321,0.431147,0.845162,0.98326,0.796231,0.961886,0.880338,0.546215,0.214229,0.866121,0.707019,0.418229,0.178278,0.920993,0.940866,0.218267,0.12934,0.635921,0.555983,0.873958,0.587168,0.921711,0.582608,0.0730071,0.174737,0.29573,0.697322,0.579854,0.655585,0.87874,0.666621,0.445269,0.917373,0.546464,0.955172,0.154414,0.559925,0.799479,0.101594,0.633931,0.739071,0.64655,0.611741,0.604705,0.45253,0.727495,0.977131,0.174704,0.0807261,0.519489,0.196071,0.738675,0.836981,0.909548,0.233086,0.952041,0.25086,0.673874,0.709277,0.396505,0.239349,0.0492271,0.896645,0.327893,0.763651,0.0535843,0.0179186,0.394234,0.503405,0.520803,0.441502,0.956359,0.841463,0.188168,0.749413,0.938014,0.804097,0.728465,0.935558,0.541002,0.129467,0.864746,0.731383,0.577205,0.798712,0.146783,0.824507,0.260155,0.165238,0.962229,0.0985371,0.944894,0.999239,0.951039,0.848941,0.724031,0.250428,0.0188155,0.64254,0.607285,0.155136,0.992513,0.818961,0.0769228,0.213957,0.274898,0.490326,0.126527,0.272659,0.496456,0.594959,0.33387,0.994083,0.11931,0.427418,0.941834,0.0235212,0.786616,0.462764,0.152099,0.244135,0.631697,0.372689,0.114646,0.636405,0.719979,0.294858,0.399971,0.343386,0.53686,0.0600597,0.940203,0.637829,0.379641,0.0947137,0.796613,0.11111,0.291932,0.0717643,0.893407,0.587369,0.609142,0.0189202,0.20912,0.675262,0.37867,0.559127,0.572631,0.438174,0.114006,0.685854,0.876345,0.461117,0.539392,0.535843,0.198104,0.653709,0.989102,0.847952,0.26595,0.346975,0.199582,0.313689,0.29874,0.541641,0.77461,0.48819,0.644372,0.659037,0.621827,0.437826,0.492276,0.773623,0.360319,0.049458,0.918142,0.0113973,0.316503,0.0197706,0.143913,0.211804,0.673835,0.677903,0.107462,0.952908,0.978937,0.653042,0.35991,0.937841,0.779076,0.291065,0.705735,0.429858,0.917835,0.0733528,0.734901,0.577406,0.923677,0.645993,0.92221,0.127771,0.566412,0.00198662,0.0127503,0.140555,0.601525,0.954883,0.0824768,0.817511,0.28981,0.804348,0.720184,0.765431,0.42072,0.751928,0.222288,0.690766,0.242246,0.622542,0.23591,0.437373,0.836557,0.167928,0.053295,0.909584,0.678381,0.279893,0.297406,0.0357931,0.499795,0.624526,0.350773,0.29696,0.0917473,0.324603,0.514812,0.278137,0.264156,0.868663,0.325404,0.957525,0.84538,0.468992,0.160684,0.184359,0.488968,0.724341,0.472484,0.934942,0.338265,0.155676,0.571919,0.539673,0.659366,0.900729,0.629981,0.166039,0.771633,0.13811,0.710407,0.132112,0.35952,0.566932,0.738763,0.484211,0.278291,0.600879,0.253845,0.222912,0.532831,0.411297,0.0726927,0.224506,0.313075,0.386047,0.00226581,0.0413427,0.592481,0.556952,0.271052,0.440218,0.387775,0.372423,0.862977,0.0351296,0.939598,0.699714,0.818436,0.821866,0.486578,0.960119,0.104534,0.0627776,0.642255,0.341566,0.368017,0.115489,0.0608782,0.637176,0.020164,0.704647,0.335811,0.83746,0.0222158,0.19148,0.778186,0.270987,0.867672,0.245992,0.933794,0.893684,0.259989,0.19135,0.654103,0.992944,0.242272,0.770121,0.489641,0.694618,0.174471,0.935653,0.836024,0.528143,0.890248,0.856348,0.72208,0.626016,0.801477,0.238112,0.846415,0.296803,0.48641,0.546042,0.638041,0.338837,0.598103,0.648176,0.110543,0.620814,|0.784352,0.107914,0.0898363,0.460392,0.59583,0.357314,0.709569,0.622984,0.441164,0.372499,0.477222,0.735385,0.44426,0.534854,0.532189,0.0276422,0.381064,0.679443,0.44293,0.405296,0.239565,0.148165,0.719102,0.710326,0.822777,0.577313,0.949463,0.969938,0.119054,0.481069,0.31269,0.050675,0.592085,0.409337,0.732013,0.347254,0.0590882,0.135458,0.289518,0.452695,0.750166,0.121388,0.903061,0.299395,0.385211,0.777117,0.371541,0.547698,0.0169083,0.899785,0.631427,0.800117,0.0769721,0.295888,0.267627,0.965949,0.326825,0.578204,0.642257,0.738906,0.156825,0.236004,0.509534,0.497423,0.982789,0.154916,0.154478,0.642291,0.0625673,0.173855,0.670395,0.820857,0.606292,0.301307,0.877153,0.526177,0.814119,0.9486,0.368782,0.515576,0.676337,0.483748,0.11906,0.0196724,0.797853,0.998865,0.711795,0.713507,0.499729,0.217011,0.783056,0.601621,0.883814,0.191263,0.229342,0.534745,0.248291,0.234882,0.108819,0.408478,0.0530647,0.689061,0.752423,0.395178,0.925918,0.957615,0.796705,0.621446,0.967566,0.416342,0.178646,0.598083,0.179674,0.732988,0.268716,0.888708,0.498137,0.381758,0.993601,0.0778857,0.38434,0.673612,0.752286,0.206051,0.0731139,0.491185,0.00974709,0.791196,0.632055,0.20418,0.833322,0.00681144,0.0360692,0.988123,0.29915,0.877591,0.459851,0.784737,0.814861,0.554573,0.510308,0.165278,0.255565,0.548188,0.597225,0.651112,0.774954,0.361098,0.0202791,0.818505,0.719529,0.526746,0.324595,0.182007,0.0151752,0.959598,0.625427,0.292048,0.431856,0.702087,0.0510978,0.74313,0.51936,0.783375,0.978163,0.198867,0.974185,0.524697,0.478645,0.663378,0.855752,0.6892,0.455128,0.758149,0.821512,0.72413,0.335617,0.25941,0.577709,0.47503,0.941617,0.912789,0.312165,0.559207,0.176329,0.132327,0.897559,0.49189,0.735444,0.520429,0.581531,0.190875,0.891312,0.281125,0.0349069,0.377889,0.751193,0.483436,0.846488,0.463726,0.112873,0.144672,0.0427676,0.574347,0.453265,0.784899,0.923424,0.170473,0.130057,0.830733,0.823188,0.678717,0.969297,0.292772,0.930088,0.948376,0.660404,0.297957,0.635014,0.671653,0.295914,0.787011,0.584363,0.159768,0.512832,0.636975,0.840833,0.667068,0.898667,0.631432,0.693993,0.504506,0.840603,0.318417,0.302406,0.669023,0.0674807,0.950142,0.449385,0.552386,0.7598,0.793588,0.542619,0.857765,0.534411,0.663882,0.796718,0.821486,0.17871,0.279888,0.197946,0.235188,0.5297,0.495829,0.460669,0.418789,0.521014,0.480764,0.820019,0.427666,0.794404,0.543257,0.736273,0.625423,0.783539,0.653543,0.405362,0.795228,0.82544,0.0143098,0.33263,0.198198,0.880996,0.0344526,0.148952,0.202018,0.154266,0.269012,0.454398,0.371819,0.934165,0.825642,0.198422,0.0876591,0.21578,0.991859,0.561449,0.613515,0.610186,0.743403,0.970212,0.227834,0.606683,0.872538,0.524103,0.747352,0.591091,0.153034,0.528847,0.990928,0.174978,0.0137994,0.322745,0.661205,0.38828,0.836996,0.642871,0.739202,0.375149,0.715537,0.674416,0.976906,0.110538,0.182362,0.531047,0.066869,0.659183,0.946386,0.227671,0.0398352,0.864704,0.836593,0.920808,0.681757,0.540898,0.946805,0.745013,0.936961,0.338564,0.362538,0.547463,0.868299,0.0953037,0.474369,0.140323,0.792837,0.0037201,0.394345,0.149578,0.562666,0.100062,0.740152,0.302893,0.296588,0.433779,0.653888,0.696108,0.59547,0.61453,0.64164,0.349695,0.667825,0.524588,0.729991,0.850382,0.167144,0.639473,0.243086,0.986821,0.907788,0.318323,0.162364,0.912885,0.613275,0.748308,0.583948,0.494334,0.817934,0.178498,0.275091,0.738117,0.920906,0.848294,0.69548,0.874051,0.815377,0.348332,0.316812,0.70925,0.940524,0.151192,0.468907,0.019128,0.392284,0.0675926,0.414708,0.292398,0.589048,0.0839664,0.463462,0.0622631,0.566101,0.427168,0.594606,0.0282803,0.567337,0.425393,0.107864,0.728032,0.147842,0.230031,0.0625652,0.990319,0.410614,0.810309,0.550871,0.374989,0.265883,0.705729,0.294267,0.132246,0.71304,0.0499703,0.770527,0.495669,0.825289,0.378579,0.781549,0.0424541,0.0986844,0.493515,0.821555,0.413669,0.511238,0.247742,0.200859,0.767057,0.595472,0.0429636,0.169438,0.680573,0.686452,0.0122778,0.512114,0.780571,0.375842,0.0547132,0.295159,0.479654,0.612978,0.480916,0.905837,0.209161,0.519644,0.716461,0.274576,0.662926,0.167079,0.35378,0.0045259,0.807158,0.985627,0.0537442,0.402334,0.973936,0.737684,0.394362,0.482362,0.884304,0.588159,0.196704,0.186823,0.578095,0.623259,0.179299,0.534877,0.600805,0.177374,0.128608,0.0139095,0.642917,0.995698,0.0465296,0.0420268,0.103489,0.155939,0.425698,0.546925,0.368662,0.267187,0.186531,0.246712,0.806636,0.0674941,0.109008,0.183222,0.168056,0.756727,0.0988816,0.397392,0.347662,0.706268,0.0189867,0.261036,0.664457,0.9111,0.340701,0.621957,0.580244,0.603207,0.071267,0.525079,0.451708,0.370017,0.291454,0.907894,0.944167,0.934773,0.13974,0.419638,0.758075,0.677817,0.365454,0.109556,0.240134,0.525721,0.930711,0.882572,0.518191,0.712651,0.227632,0.173793,0.506001,0.56444,0.187844,0.765478,0.242414,0.0579171,0.00418735,0.865399,0.536028,0.9732,0.384531,0.924626,0.12827,0.932925,0.414614,0.472851,0.71592,0.7715,0.954875,0.794611,0.478661,0.722286,0.918321,0.296082,0.530372,0.280404,0.66678,0.222505,0.268138,0.738843,0.802763,0.318348,0.399939,0.75763,0.142342,0.434647,0.0330507,0.609228,0.75958,0.0851393,0.412525,0.618154,0.357465,0.560584,0.0615667,0.909092,0.0326079,0.684345,0.534197,0.968352,0.972339,0.93677,0.685361,0.74848,0.565353,0.824771,0.0512785,0.176034,0.746512,0.682329,0.827411,0.297867,0.131365,0.0187961,0.803797,0.957583,0.536049,0.679206,0.553758,0.474064,0.132207,0.605554,0.111715,0.802136,0.693066,0.848969,0.740259,0.970261,0.150005,0.973633,0.750298,0.615084,0.484813,0.705782,0.174873,0.870704,0.96038,0.661092,0.682448,0.182234,0.348016,0.316679,0.811413,0.870049,0.529124,0.251342,0.941725,0.4587,0.434872,0.882389,0.601584,0.143043,0.350991,0.250144,0.80673,0.415098,0.558305,0.962987,0.0534689,0.569848,0.889093,0.653386,0.023978,0.299696,0.905428,0.619683,0.827589,0.00142097,0.53261,0.359834,0.0562442,0.316636,0.520744,0.555465,0.290847,0.113874,0.993437,0.966329,0.638613,0.840906,0.46901,0.912293,0.0772587,0.366002,0.880748,0.779765,0.727027,0.474423,0.0848445,0.105208,0.472236,0.426182,0.55243,0.842533,0.490732,0.727988,0.627355,0.305501,0.110015,0.863144,0.329506,0.109989,0.137804,0.243741,0.265236,0.763934,0.658008,0.279201,0.428342,0.814592,0.198637,0.868329,0.289502,0.019756,0.825539,0.327661,0.18544,0.261034,0.868047,0.713248,0.451442,0.075613,0.0183268,0.030363,0.70777,0.0892354,0.88025,0.987092,0.208849,0.958291,0.225913,0.486584,0.38583,0.747097,0.401687,0.458479,0.372979,0.153634,0.96402,0.836075,0.0925922,0.0290457,0.882004,0.170868,0.0342205,0.557661,0.20734,0.781175,0.0203725,0.495469,0.855645,0.917392,0.965582,0.778528,0.535546,0.0841508,0.512855,0.0106966,0.507655,0.770573,0.459877,0.599212,0.182327,0.991283,0.435512,0.781715,0.96094,0.871525,0.686031,0.873164,0.834272,0.176857,0.923132,0.0909939,0.340075,0.172072,0.25476,0.0421412,0.194998,0.606584,0.729121,0.335523,0.60353,0.864147,0.571289,0.291464,0.488871,0.00845379,0.343481,0.139108,0.249439,0.949192,0.878149,0.0976637,0.878104,0.824697,0.31279,0.732239,0.57963,0.108429,0.22603,0.669019,0.511282,0.926277,0.0314235,0.951552,0.289236,0.427346,0.257855,0.030117,0.549425,0.0615779,0.203088,0.401745,0.36193,0.956581,0.933525,0.553173,0.965888,0.22325,0.724306,0.725594,0.57884,0.149965,0.141747,0.110149,0.667233,0.741646,0.321132,0.0350906,0.926773,0.854289,0.6485,0.200273,0.536373,0.0770052,0.463291,0.347408,0.573232,0.646273,0.519497,0.983038,0.343297,0.649614,0.93059,0.36811,0.838383,0.680191,0.532687,0.233077,0.902739,0.299651,0.880252,0.425255,0.565458,0.92657,0.816998,0.834644,0.0929646,0.340197,0.796141,0.227487,0.02857,0.76545,0.520774,0.969914,0.159004,0.37316,0.71551,0.369498,0.586976,0.40681,0.32874,0.152548,0.0494487,0.430148,0.913024,0.622625,0.790272,0.799,0.889693,0.925834,0.868031,0.337924,0.0376655,0.174037,0.989074,0.58452,0.347414,0.140851,0.655627,0.812628,0.149986,0.500775,0.955391,0.36507,0.20664,0.81882,0.777719,0.494348,0.568492,0.498002,0.96966,0.226414,0.801699,0.890382,0.914909,0.341681,0.160565,0.923601,0.718864,0.0276292,0.778003,0.229368,0.597114,0.864845,0.485707,0.930218,0.950864,0.654225,0.145505,0.123081,0.0725805,0.596245,0.751548,0.844576,0.371341,0.729256,0.367277,0.978945,0.592693,0.67703,0.30365,0.901814,0.137679,0.61151,0.527671,0.611031,0.606698,0.546108,0.761925,0.539186,0.73359,0.397183,0.311106,0.941527,0.555957,0.33057,0.0667886,0.476087,0.706953,0.350311,0.615433,0.658392,0.354315,0.822662,0.965425,0.574849,0.827634,0.140887,0.979154,0.496949,0.752312,0.291488,0.269432,0.0761001,0.609407,0.929553,0.220947,0.508896,0.206023,0.702008,0.986992,0.564831,0.170547,0.89262,0.0100188,0.319834,0.148367,0.307159,0.63995,0.111263,0.553694,0.657903,0.196673,0.142365,0.515384,0.442265,0.650251,0.968933,0.933111,0.569873,0.515992,0.554592,0.774694,0.880673,0.508386,0.178801,0.653514,0.594462,0.448788,0.4973,0.591747,0.572252,0.173367,0.292297,0.987156,0.880949,0.231844,0.742495,0.0148273,0.740144,0.216493,0.465752,0.8384,0.950423,0.0601732,0.232129,0.696304,0.420425,0.500267,0.656672,0.764559,0.90304,0.728902,0.941784,0.394842,0.200417,|0.930252,0.381869,0.575002,0.655593,0.143129,0.500082,0.4194,0.268361,0.845225,0.911484,0.757965,0.004852,0.0188165,0.407966,0.430174,0.0700358,0.945034,0.704027,0.764714,0.589214,0.194512,0.645852,0.0783446,0.293685,0.819785,0.649879,0.522472,0.266637,0.615353,0.356033,0.539023,0.167031,0.179812,0.948073,0.0115901,0.778474,0.252919,0.534931,0.279056,0.682007,0.679324,0.0774878,0.549958,0.708633,0.926033,0.514439,0.229947,0.992641,0.207824,0.487079,0.0658335,0.120274,0.230293,0.176724,0.347251,0.506782,0.958525,0.612859,0.290073,0.353149,0.402591,0.922399,0.0720555,0.103189,0.375805,0.405974,0.490879,0.693303,0.423986,0.249483,0.991123,0.589619,0.332837,0.819648,0.397071,0.648464,0.910866,0.763935,0.898794,0.997489,0.0734845,0.419832,0.692444,0.246408,0.653419,0.892198,0.679159,0.875421,0.361507,0.404103,0.524055,0.620623,0.160969,0.180896,0.108821,0.184325,0.212568,0.662023,0.168842,0.773422,0.719833,0.640493,0.767582,0.702446,0.996316,0.562052,0.741969,0.926296,0.943239,0.774885,0.671376,0.0766218,0.131567,0.122705,0.288385,0.56038,0.200354,0.78705,0.519599,0.76,0.550502,0.374821,0.956577,0.952466,0.3847,0.843488,0.299346,0.862266,0.97616,0.844552,0.163268,0.0905669,0.764508,0.654047,0.989787,0.792431,0.899364,0.454073,0.0976908,0.354819,0.0434381,0.260932,0.864742,0.734438,0.307826,0.514567,0.187833,0.471986,0.956095,0.152143,0.436084,0.301353,0.111035,0.043439,0.909343,0.144719,0.915764,0.452172,0.184831,0.594697,0.0994716,0.0824283,0.06859,0.875713,0.350437,0.446356,0.679793,0.0896704,0.469898,0.402008,0.93423,0.23403,0.0536682,0.00750786,0.111322,0.351,0.98565,0.882679,0.974906,0.721233,0.516851,0.858077,0.496286,0.33479,0.565967,0.0965297,0.0372171,0.987224,0.977686,0.629794,0.0161986,0.535613,0.599239,0.501206,0.587251,0.0469335,0.968017,0.593695,0.99423,0.723636,0.0388287,0.302499,0.159186,0.419793,0.542046,0.310339,0.230905,0.907144,0.03693,0.882957,0.204236,0.340444,0.999981,0.855764,0.140381,0.908318,0.660282,0.169069,0.541709,0.370183,0.962329,0.495056,0.939339,0.373226,0.653107,0.725878,0.193951,0.534417,0.53436,0.465293,0.275367,0.906823,0.775334,0.7986,0.728201,0.905427,0.321435,0.273043,0.406128,0.0827518,0.0323156,0.0654936,0.722089,0.408657,0.693406,0.814801,0.305949,0.0506777,0.78252,0.957907,0.650706,0.482571,0.107638,0.735932,0.96515,0.0897804,0.158116,0.454947,0.81723,0.204546,0.395705,0.720073,0.996803,0.326747,0.489348,0.60988,0.696115,0.310068,0.705445,0.732355,0.93215,0.869918,0.424411,0.136213,0.147109,0.521729,0.314969,0.523001,0.165704,0.446811,0.728201,0.754091,0.69029,0.071122,0.367018,0.570294,0.76109,0.444062,0.921491,0.295275,0.742786,0.0536278,0.808834,0.522432,0.841599,0.284257,0.187907,0.294509,0.10452,0.0198475,0.19246,0.631564,0.69902,0.648712,0.962768,0.167193,0.992748,0.964676,0.72664,0.13784,0.908995,0.511319,0.114392,0.919269,0.471043,0.370398,0.263753,0.748072,0.973303,0.197054,0.0473897,0.83507,0.409083,0.108849,0.355269,0.967575,0.503149,0.78989,0.887654,0.932156,0.118135,0.315537,0.347177,0.0668967,0.637093,0.246455,0.802818,0.814635,0.750932,0.450846,0.0513409,0.891773,0.200559,0.890079,0.597324,0.695036,0.933565,0.285961,0.686813,0.272446,0.151334,0.976607,0.421214,0.139688,0.804012,0.0836975,0.0252357,0.0449772,0.795628,0.111579,0.114229,0.982807,0.52341,0.746784,0.63246,0.471131,0.0265704,0.0838828,0.04827,0.139263,0.717027,0.0673209,0.871237,0.967691,0.00857103,0.48378,0.968201,0.899754,0.681863,0.690103,0.150902,0.717014,0.994385,0.864476,0.537303,0.247336,0.623514,0.718421,0.295028,0.173379,0.368604,0.0600855,0.631417,0.762974,0.103951,0.0138216,0.649024,0.362623,0.06759,0.535666,0.691803,0.790532,0.336997,0.999282,0.19367,0.456863,0.879564,0.706526,0.699372,0.790835,0.0910494,0.919451,0.976632,0.329693,0.690132,0.341031,0.644655,0.515969,0.464296,0.0337369,0.252842,0.342923,0.660378,0.0929435,0.678451,0.514122,0.859254,0.51483,0.288172,0.244001,0.861304,0.737267,0.456056,0.890883,0.928778,0.472491,0.606687,0.0214936,0.720961,0.430185,0.365182,0.539143,0.0672138,0.853873,0.0716008,0.214495,0.281852,0.0901099,0.495386,0.648238,0.980441,0.450606,0.115938,0.143344,0.457368,0.705372,0.973362,0.251626,0.172962,0.120658,0.599096,0.291983,0.756422,0.408484,0.583935,0.771681,0.70556,0.199169,0.496706,0.772501,0.560002,0.510539,0.6912,0.0750523,0.832394,0.722216,0.430073,0.301537,0.756622,0.385822,0.613535,0.861153,0.685301,0.757632,0.896509,0.353988,0.950577,0.508933,0.227532,0.473615,0.0909884,0.528831,0.529514,0.825945,0.850079,0.9157,0.693914,0.793118,0.960308,0.418882,0.159205,0.246162,0.464493,0.444729,0.814645,0.858312,0.615255,0.538821,0.74556,0.112748,0.577679,0.0674807,0.663811,0.189013,0.392815,0.96849,0.449952,0.744495,0.0567814,0.266847,0.448368,0.803639,0.505064,0.858127,0.460443,0.0931563,0.75297,0.147104,0.336304,0.547445,0.235006,0.431,0.433188,0.660962,0.0142561,0.516858,0.173845,0.155179,0.0571752,0.606033,0.106637,0.288553,0.0685253,0.255226,0.167554,0.0139025,0.220713,0.615867,0.795506,0.789729,0.39135,0.314985,0.86688,0.738065,0.504193,0.227995,0.849894,0.466956,0.743849,0.730923,0.910395,0.843431,0.0949238,0.706797,0.690058,0.6012,0.887107,0.767558,0.483121,0.969962,0.688093,0.879526,0.493218,0.814845,0.0416895,0.177617,0.685884,0.886872,0.982649,0.363512,0.0504487,0.971799,0.114115,0.399438,0.290868,0.64729,0.157163,0.540911,0.898606,0.440047,0.335533,0.045756,0.400565,0.195334,0.383339,0.88372,0.599135,0.554688,0.941672,0.678115,0.1013,0.893881,0.244734,0.748637,0.301903,0.809387,0.467659,0.400576,0.973975,0.533477,0.503418,0.328075,0.0553886,0.523082,0.896559,0.447682,0.553413,0.302908,0.439189,0.629959,0.379589,0.864661,0.963274,0.937444,0.0458983,0.189705,0.910948,0.534628,0.27239,0.976627,0.488902,0.38926,0.902004,0.12322,0.804347,0.231253,0.618665,0.0528895,0.624498,0.721971,0.218515,0.0681397,0.821413,0.678072,0.228255,0.932524,0.309517,0.176753,0.550987,0.592114,0.498001,0.59554,0.831832,0.685237,0.251713,0.513575,0.206165,0.981072,0.927237,0.578264,0.826912,0.0278084,0.87691,0.571197,0.342867,0.0100744,0.38276,0.10395,0.943596,0.948961,0.656079,0.93458,0.67065,0.110901,0.491711,0.464355,0.301969,0.915969,0.964577,0.648004,0.333697,0.679249,0.0654352,0.624823,0.305694,0.804012,0.280633,0.107564,0.28782,0.524602,0.311745,0.228057,0.858366,0.0106054,0.0837625,0.576196,0.0693934,0.81326,0.130259,0.364152,0.927238,0.791839,0.298868,0.390243,0.0525149,0.301077,0.144175,0.357472,0.729071,0.464474,0.87007,0.902624,0.566345,0.507798,0.827647,0.743656,0.18667,0.715478,0.493799,0.534435,0.902744,0.32555,0.452876,0.706574,0.455327,0.42099,0.725955,0.789623,0.208087,0.713996,0.280812,0.0718739,0.0645761,0.273311,0.514268,0.164206,0.382062,0.836347,0.411105,0.988147,0.689563,0.634315,0.431753,0.640825,0.757278,0.700639,0.551585,0.586498,0.384096,0.742239,0.839223,0.493467,0.988188,0.696396,0.0795212,0.622068,0.455596,0.487832,0.063557,0.678522,0.649648,0.989917,0.102707,0.130727,0.670949,0.727531,0.26985,0.502446,0.367457,0.899022,0.3993,0.10324,0.0888989,0.626344,0.818258,0.455359,0.891817,0.708215,0.594088,0.915802,0.811047,0.67735,0.315292,0.530696,0.377778,0.0829627,0.185939,0.12257,0.4317,0.528189,0.155661,0.0560937,0.31953,0.912526,0.478881,0.768779,0.408865,0.674,0.902888,0.879583,0.935982,0.942026,0.328312,0.216503,0.874958,0.447892,0.444228,0.492368,0.536364,0.960246,0.195953,0.941044,0.443231,0.783831,0.251292,0.304941,0.488973,0.487259,0.0593362,0.680903,0.783702,0.835779,0.837476,0.918324,0.627954,0.931058,0.683844,0.0919188,0.662819,0.0282137,0.934326,0.988,0.109721,0.000927925,0.447475,0.74413,0.451509,0.81898,0.232425,0.43924,0.600451,0.524293,0.118797,0.99019,0.705222,0.615385,0.453858,0.883352,0.0116574,0.775298,0.538532,0.287801,0.959559,0.583894,0.133226,0.52553,0.30019,0.592758,0.58796,0.122443,0.941567,0.39561,0.199355,0.478948,0.135753,0.245619,0.386549,0.134522,0.189571,0.998871,0.223086,0.943971,0.0854336,0.934568,0.844933,0.32385,0.0752633,0.0840427,0.233065,0.606067,0.943285,0.991744,0.346166,0.442153,0.190093,0.14639,0.674841,0.693993,0.675879,0.18018,0.725212,0.153995,0.163841,0.0203965,0.744628,0.802927,0.619885,0.523589,0.342311,0.453669,0.775459,0.295989,0.856536,0.600624,0.403855,0.315963,0.566484,0.393861,0.377297,0.150403,0.535918,0.853942,0.826685,0.487384,0.381533,0.742096,0.953365,0.990977,0.889173,0.0145737,0.382403,0.4774,0.355208,0.47439,0.0896658,0.541528,0.915165,0.291974,0.28114,0.992536,0.189898,0.00775987,0.734783,0.665671,0.669995,0.590634,0.0131715,0.668098,0.476839,0.742817,0.791185,0.43737,0.427343,0.799203,0.266993,0.041656,0.957455,0.489462,0.346588,0.331442,0.915004,0.468164,0.984616,0.609231,0.32268,0.443106,0.641906,0.444272,0.0600665,0.184944,0.640328,0.753824,0.245801,0.413676,0.101085,0.24813,0.62182,0.207974,0.0816498,0.557157,0.136292,0.970695,0.342599,0.880095,0.347549,0.353858,0.913893,0.235564,0.704777,0.837737,0.88369,0.123117,0.53513,0.0102323,0.624841,0.766872,0.386601,0.960265,0.0738533,0.300928,0.544405,0.285363,0.227258,0.149856,0.802128,0.533916,0.919038,0.0221255,0.496146,0.779321,|0.540662,0.0400407,0.0989562,0.754472,0.343618,0.659131,0.131102,0.820899,0.268424,0.435331,0.613423,0.42424,0.127825,0.771518,0.524488,0.659726,0.447053,0.711908,0.57053,0.580682,0.993912,0.320823,0.305698,0.200445,0.331456,0.236781,0.787574,0.449895,0.662408,0.0405253,0.705884,0.285375,0.194827,0.450285,0.606994,0.52109,0.0633804,0.383518,0.326776,0.183512,0.424541,0.544856,0.370585,0.479383,0.730828,0.178899,0.171229,0.721817,0.148851,0.859017,0.781383,0.606144,0.221055,0.42222,0.904662,0.462177,0.383204,0.203415,0.542322,0.0828683,0.799176,0.479631,0.404727,0.454443,0.735689,0.0566335,0.547006,0.311512,0.340871,0.479612,0.825413,0.433857,0.00270009,0.820594,0.860074,0.221326,0.287403,0.784453,0.405892,0.336578,0.10905,0.638817,0.412641,0.912716,0.0541944,0.912196,0.165032,0.0545394,0.960615,0.132104,0.137077,0.14386,0.320974,0.960505,0.611799,0.736928,0.288231,0.444819,0.141576,0.930846,0.290448,0.615924,0.685441,0.527231,0.956177,0.397752,0.334708,0.483311,0.322465,0.360793,0.714548,0.0631284,0.109687,0.24743,0.75408,0.319765,0.119933,0.663163,0.83581,0.520085,0.561479,0.85007,0.53458,0.857249,0.579443,0.236939,0.8106,0.691305,0.331545,0.929076,0.221058,0.540299,0.0362456,0.147654,0.826692,0.363935,0.525282,0.666478,0.352428,0.463587,0.199016,0.336773,0.895287,0.767028,0.190937,0.716715,0.452989,0.869421,0.769132,0.960387,0.365711,0.503762,0.856897,0.492532,0.612239,0.253583,0.350256,0.966486,0.56255,0.056417,0.742546,0.944185,0.175931,0.201777,0.463925,0.733137,0.28489,0.649386,0.101657,0.0157939,0.651043,0.758982,0.129502,0.780393,0.882034,0.573552,0.918172,0.327723,0.371148,0.452991,0.0340211,0.280616,0.592579,0.999684,0.962622,0.942933,0.678632,0.751281,0.325776,0.932947,0.420134,0.682788,0.196693,0.236292,0.827787,0.403271,0.456469,0.455048,0.683634,0.240512,0.0856162,0.798617,0.0365294,0.639017,0.755481,0.833109,0.847031,0.45257,0.996867,0.426931,0.470832,0.172904,0.706788,0.555769,0.996717,0.70955,0.727655,0.919618,0.150776,0.195141,0.927655,0.975624,0.406018,0.253381,0.655554,0.0934118,0.495018,0.854337,0.95619,0.908309,0.109896,0.96961,0.540036,0.187847,0.0403466,0.622329,0.273536,0.499976,0.906251,0.85361,0.752364,0.43281,0.47429,0.0794141,0.457646,0.504175,0.0394675,0.753347,0.896996,0.467138,0.856275,0.987694,0.467424,0.0628571,0.128559,0.836773,0.875683,0.769348,0.617237,0.050597,0.605326,0.443604,0.31504,0.700286,0.161345,0.262877,0.871769,0.19695,0.977935,0.498874,0.230834,0.390099,0.153538,0.53815,0.623254,0.484994,0.620644,0.3287,0.204981,0.533878,0.53386,0.740634,0.239259,0.155817,0.363257,0.25492,0.749586,0.32104,0.638301,0.0440219,0.124885,0.160106,0.345077,0.827544,0.861023,0.635318,0.123582,0.0683438,0.782438,0.599481,0.782043,0.190799,0.558411,0.827898,0.673728,0.0725163,0.358893,0.82048,0.895881,0.394554,0.728115,0.534434,0.227715,0.425004,0.118712,0.250761,0.255157,0.971517,0.716384,0.235251,0.734358,0.315762,0.28983,0.0258118,0.770085,0.585674,0.365732,0.390304,0.885599,0.192062,0.818158,0.00632954,0.839969,0.614954,0.569216,0.504519,0.545729,0.0417354,0.710033,0.767918,0.298251,0.528328,0.969801,0.920479,0.72469,0.623833,0.304423,0.325528,0.821183,0.349419,0.971231,0.145919,0.0197629,0.561231,0.566616,0.555879,0.383547,0.497996,0.289414,0.16363,0.340028,0.172531,0.636779,0.538769,0.838856,0.318957,0.872997,0.654305,0.51408,0.0704058,0.379784,0.923765,0.0303624,0.0260714,0.927497,0.855779,0.0636342,0.124432,0.0331274,0.648736,0.584542,0.655348,0.221427,0.0660163,0.703221,0.934169,0.206727,0.903652,0.415327,0.345249,0.585477,0.940202,0.214416,0.413505,0.0570085,0.922491,0.573057,0.355229,0.833138,0.864819,0.922379,0.195851,0.285389,0.516926,0.343865,0.990209,0.721391,0.0194136,0.0309595,0.467639,0.0360122,0.0769225,0.148353,0.16336,0.0339186,0.950012,0.429285,0.282666,0.14039,0.685948,0.243538,0.241497,0.934676,0.120552,0.974257,0.172578,0.912785,0.447099,0.212419,0.347166,0.088655,0.648929,0.447437,0.799759,0.937936,0.118501,0.200144,0.379286,0.452397,0.227663,0.724306,0.498678,0.20236,0.235324,0.919535,0.350071,0.018959,0.517348,0.303802,0.638296,0.509008,0.354198,0.553591,0.954788,0.956546,0.8695,0.97863,0.599225,0.316852,0.194305,0.785959,0.400471,0.278405,0.166107,0.360857,0.328906,0.322617,0.275658,0.39608,0.107185,0.755505,0.240956,0.734044,0.0845982,0.180848,0.493771,0.44628,0.852871,0.774619,0.582323,0.164561,0.471104,0.569243,0.233331,0.281306,0.72609,0.114613,0.656723,0.356839,0.799709,0.685943,0.00397795,0.48768,0.123433,0.41228,0.0788953,0.283701,0.043241,0.54366,0.091358,0.102635,0.0131223,0.351591,0.48934,0.802028,0.343179,0.642682,0.424611,0.211537,0.0597216,0.317308,0.576773,0.791873,0.742128,0.358773,0.866192,0.0382951,0.0443577,0.0277199,0.920195,0.830758,0.883048,0.767468,0.442859,0.352192,0.637304,0.289429,0.203659,0.153144,0.578571,0.625231,0.698249,0.914093,0.0174851,0.60587,0.924238,0.975714,0.564384,0.175132,0.456336,0.38309,0.851935,0.48232,0.927087,0.0362867,0.292951,0.847373,0.321577,0.854215,0.859353,0.241733,0.937406,0.228689,0.34846,0.032537,0.655425,0.276411,0.85881,0.855296,0.135015,0.479545,0.488916,0.89459,0.0169644,0.0524106,0.900241,0.767298,0.881836,0.991651,0.570004,0.63708,0.483945,0.774848,0.321254,0.679766,0.0479844,0.208294,0.254548,0.176749,0.833605,0.405341,0.11828,0.851264,0.497777,0.446172,0.0901574,0.14358,0.604799,0.84832,0.854064,0.410368,0.441757,0.229593,0.569842,0.109253,0.843007,0.443389,0.297066,0.602382,0.728251,0.973816,0.898204,0.499443,0.130999,0.760355,0.868297,0.922157,0.360524,0.572054,0.515686,0.0442501,0.506364,0.139224,0.411183,0.366955,0.656239,0.933438,0.06217,0.114104,0.95384,0.492525,0.184742,0.0583172,0.565133,0.493122,0.589478,0.707831,0.751432,0.0236549,0.700918,0.967498,0.323233,0.920953,0.487981,0.775751,0.648208,0.0852519,0.84734,0.0589123,0.886265,0.953433,0.609069,0.0119818,0.838502,0.489369,0.518725,0.555685,0.343495,0.167398,0.322408,0.00424123,0.882342,0.162852,0.377475,0.906656,0.189017,0.861842,0.308888,0.307188,0.633191,0.484769,0.110546,0.884241,0.322895,0.0141882,0.497978,0.945005,0.631984,0.104324,0.0112732,0.438731,0.854906,0.312962,0.712561,0.290302,0.901271,0.224944,0.304976,0.899386,0.701902,0.958809,0.136806,0.874523,0.799915,0.497275,0.349513,0.552001,0.387012,0.695163,0.872502,0.937799,0.467166,0.987015,0.254218,0.26108,0.445667,0.463735,0.777101,0.220628,0.131092,0.526708,0.600512,0.641377,0.0145268,0.29173,0.337423,0.0708382,0.616257,0.806561,0.898091,0.867396,0.408506,0.437669,0.881089,0.713355,0.51813,0.935568,0.371027,0.474937,0.559315,0.397304,0.30467,0.0591728,0.707407,0.623422,0.848588,0.765866,0.766335,0.292391,0.109028,0.651886,0.358787,0.932787,0.334918,0.599158,0.854337,0.674802,0.718119,0.92314,0.120571,0.185212,0.963324,0.194965,0.752899,0.576745,0.176825,0.252097,0.190932,0.984938,0.684478,0.595662,0.208771,0.130812,0.902119,0.0418572,0.278896,0.518225,0.685746,0.961163,0.589219,0.00328553,0.0037623,0.519685,0.482024,0.869929,0.169226,0.800743,0.982992,0.371863,0.212567,0.865597,0.643375,0.488792,0.00656897,0.268331,0.122867,0.935684,0.752441,0.950543,0.844403,0.876207,0.695811,0.825761,0.891576,0.961055,0.226188,0.237541,0.13728,0.783785,0.319409,0.677466,0.645786,0.584603,0.232272,0.469448,0.921848,0.880608,0.0729948,0.837833,0.972038,0.719707,0.279414,0.879588,0.983913,0.265527,0.0711443,0.851096,0.161843,0.565285,0.0533825,0.404508,0.509121,0.906412,0.225056,0.993293,0.198789,0.251344,0.648422,0.418932,0.669886,0.026198,0.639839,0.672871,0.578694,0.357744,0.421597,0.0100952,0.776535,0.768049,0.348053,0.679064,0.391658,0.0378422,0.836224,0.220934,0.114738,0.532669,0.723168,0.160405,0.0196906,0.00119489,0.250124,0.881708,0.652477,0.301942,0.135329,0.278636,0.365976,0.440317,0.762267,0.580047,0.69725,0.842464,0.00404269,0.237358,0.684504,0.903491,0.635751,0.0305049,0.96231,0.567326,0.99094,0.742983,0.44212,0.151398,0.61364,0.10228,0.873852,0.83992,0.610674,0.175461,0.828754,0.777934,0.858331,0.517763,0.129764,0.730098,0.101735,0.306582,0.893478,0.505384,0.0950226,0.948019,0.525317,0.118556,0.424963,0.00069803,0.87252,0.474839,0.993497,0.235669,0.158346,0.176228,0.0356767,0.734379,0.143728,0.366672,0.309577,0.796023,0.179835,0.815384,0.227619,0.416928,0.527281,0.113247,0.623717,0.789021,0.367923,0.99261,0.433744,0.376445,0.304173,0.62388,0.269363,0.71832,0.82553,0.00782669,0.879341,0.240553,0.264447,0.57585,0.91175,0.167701,0.690513,0.920773,0.85838,0.280685,0.560266,0.291842,0.168079,0.865101,0.563957,0.69036,0.205154,0.0249417,0.842095,0.893598,0.0862828,0.0141397,0.49788,0.723145,0.208304,0.181152,0.790457,0.56049,0.245062,0.750877,0.862421,0.705455,0.487121,0.638544,0.647876,0.467304,0.0403062,0.82239,0.313321,0.196218,0.108755,0.977683,0.938678,0.316263,0.589557,0.304706,0.992655,0.634823,0.948744,0.186845,0.610155,0.442174,0.520304,0.376449,0.825871,0.339778,0.397739,0.251557,0.624873,0.591964,0.616688,0.934202,0.351542,0.665812,0.179899,0.138817,0.852552,0.314923,0.992598,0.132999,0.339029,0.947921,0.0116339,0.902499,0.6969,0.861089,0.307329,0.829214,0.398572,0.873704,0.609252,0.642681,0.949293,|0.122031,0.597771,0.763702,0.751498,0.934403,0.736764,0.305299,0.487417,0.590329,0.859825,0.563696,0.162339,0.198784,0.917376,0.348262,0.999283,0.310861,0.858503,0.184514,0.990153,0.0526938,0.612625,0.16753,0.161142,0.646795,0.441313,0.679909,0.799109,0.0802567,0.380201,0.040558,0.941808,0.406936,0.994841,0.547767,0.849664,0.801844,0.90175,0.599632,0.893109,0.660016,0.588943,0.241954,0.950309,0.233827,0.360863,0.250641,0.118554,0.250286,0.745197,0.521284,0.62209,0.230701,0.750977,0.775035,0.388206,0.047253,0.306826,0.977797,0.181488,0.524904,0.788047,0.700013,0.89279,0.957317,0.969951,0.105569,0.298462,0.140476,0.251789,0.328836,0.0298457,0.81301,0.467773,0.759386,0.238445,0.769299,0.919571,0.917799,0.561835,0.498552,0.0598231,0.335158,0.499649,0.842354,0.889023,0.638089,0.00111181,0.939406,0.109211,0.13197,0.629884,0.97336,0.112246,0.362917,0.0431409,0.57904,0.642178,0.313143,0.764805,0.00264567,0.974062,0.0182269,0.328975,0.259042,0.832752,0.460712,0.818824,0.753905,0.555418,0.0456266,0.0306929,0.945856,0.21308,0.506383,0.211911,0.670428,0.281199,0.693712,0.935005,0.62305,0.286816,0.644115,0.626141,0.921084,0.143536,0.145697,0.163179,0.3304,0.213267,0.171135,0.105069,0.214971,0.116126,0.49246,0.259913,0.211226,0.369672,0.375338,0.991346,0.0328696,0.334024,0.270586,0.0556796,0.70346,0.225126,0.221229,0.921133,0.587911,0.131555,0.670838,0.84633,0.118662,0.203391,0.16937,0.385818,0.21153,0.651997,0.984683,0.520722,0.317519,0.595496,0.15999,0.164998,0.0474642,0.651483,0.333613,0.49276,0.0189469,0.122451,0.248392,0.521593,0.494197,0.272657,0.967287,0.00788653,0.291806,0.822218,0.771886,0.369875,0.700346,0.00365406,0.859434,0.968307,0.349673,0.413617,0.530095,0.925951,0.935923,0.40766,0.104892,0.746193,0.665053,0.912043,0.361383,0.199684,0.411317,0.17161,0.658822,0.579053,0.770963,0.40584,0.144655,0.625844,0.421043,0.928239,0.135971,0.494188,0.920277,0.342105,0.354591,0.398199,0.880052,0.725899,0.71433,0.621227,0.877583,0.327287,0.102623,0.883172,0.208063,0.954772,0.0178322,0.127861,0.590448,0.31064,0.880499,0.154941,0.940431,0.0514362,0.546558,0.288104,0.071853,0.162039,0.0200589,0.872013,0.584684,0.297592,0.492577,0.771785,0.568957,0.661854,0.987451,0.159904,0.332193,0.945277,0.0854955,0.623173,0.0194992,0.706544,0.65563,0.183465,0.034156,0.988407,0.474376,0.128064,0.688895,0.287058,0.365705,0.238717,0.701192,0.28928,0.0954339,0.133598,0.868301,0.428687,0.326665,0.773027,0.103196,0.145006,0.99329,0.190683,0.73399,0.565664,0.290334,0.00830919,0.837378,0.520253,0.366847,0.28559,0.0747429,0.464171,0.813045,0.503617,0.780872,0.760368,0.617444,0.0485289,0.187542,0.440995,0.291203,0.773444,0.326342,0.119314,0.157175,0.33107,0.811117,0.694743,0.935039,0.517056,0.0132329,0.397568,0.457368,0.189762,0.52525,0.648571,0.0160551,0.0537905,0.975662,0.353098,0.651487,0.895641,0.0206163,0.22457,0.0681772,0.929543,0.681304,0.769838,0.570432,0.657737,0.834024,0.0804722,0.478307,0.0465724,0.961353,0.196784,0.970375,0.644206,0.625846,0.962113,0.992313,0.319447,0.468169,0.540245,0.598233,0.704078,0.704178,0.0883164,0.337954,0.669186,0.368434,0.0797037,0.972436,0.97128,0.0807207,0.444,0.355772,0.776761,0.195513,0.474339,0.355574,0.394931,0.00952095,0.403657,0.627059,0.178673,0.686376,0.735789,0.0289267,0.185499,0.992462,0.301675,0.779045,0.628849,0.263119,0.916597,0.48837,0.205739,0.977702,0.7589,0.62923,0.417452,0.343417,0.389358,0.932545,0.690582,0.134815,0.0725591,0.813448,0.721858,0.778339,0.86004,0.311164,0.669578,0.170321,0.632882,0.771688,0.762073,0.0831769,0.334463,0.993853,0.86428,0.337551,0.641563,0.278434,0.895132,0.482864,0.20361,0.743452,0.402054,0.0991653,0.560578,0.71442,0.0868536,0.882832,0.790574,0.0102369,0.793154,0.112868,0.722244,0.839466,0.197206,0.291859,0.6139,0.513336,0.450756,0.274612,0.768096,0.0576186,0.494727,0.382133,0.620576,0.386745,0.448693,0.713443,0.403451,0.092887,0.244504,0.319916,0.00532609,0.692903,0.42965,0.427797,0.418114,0.375676,0.699297,0.299685,0.265534,0.631487,0.464882,0.16578,0.869895,0.251438,0.557104,0.726937,0.643627,0.438145,0.934671,0.368816,0.312885,0.904307,0.682585,0.8542,0.0638177,0.722034,0.182971,0.76815,0.766376,0.36748,0.556393,0.811394,0.456839,0.828159,0.00707924,0.471885,0.890435,0.92448,0.855049,0.721757,0.526968,0.398477,0.787656,0.215249,0.959338,0.609232,0.233934,0.662885,0.912411,0.750015,0.63198,0.242731,0.780989,0.266475,0.0269844,0.539519,0.750434,0.700784,0.243293,0.63855,0.288,0.443907,0.602753,0.554608,0.77663,0.0991789,0.18545,0.0729828,0.917742,0.786879,0.349084,0.417408,0.630146,0.214007,0.859109,0.751862,0.642181,0.560333,0.516404,0.832325,0.204395,0.416395,0.839438,0.0814694,0.972432,0.288362,0.0593169,0.856333,0.154355,0.124809,0.647971,0.0105891,0.447855,0.44801,0.736285,0.860041,0.668467,0.953278,0.358492,0.626931,0.0330448,0.0919661,0.919904,0.0637739,0.0604686,0.812868,0.562039,0.119337,0.634428,0.00216496,0.362422,0.00659305,0.379251,0.695417,0.127665,0.311511,0.279813,0.0592638,0.577719,0.819486,0.434478,0.00795585,0.118251,0.859003,0.180055,0.148972,0.457693,0.922495,0.445758,0.289275,0.879968,0.864777,0.245265,0.394238,0.776268,0.606973,0.829889,0.486512,0.368947,0.868822,0.615451,0.728274,0.0212156,0.86497,0.495842,0.156911,0.199515,0.273616,0.60755,0.979978,0.593668,0.726386,0.236154,0.838315,0.509714,0.863493,0.164346,0.312138,0.358317,0.660241,0.945407,0.373368,0.35096,0.107054,0.934036,0.776383,0.509668,0.0512649,0.671649,0.204101,0.997494,0.194058,0.614624,0.261195,0.131367,0.355525,0.762396,0.955894,0.69785,0.549269,0.876312,0.0919,0.66565,0.369443,0.442807,0.386442,0.374823,0.282854,0.342734,0.918861,0.117246,0.315901,0.27954,0.27314,0.490042,0.41794,0.482382,0.113012,0.572939,0.0258539,0.909458,0.635827,0.698677,0.648688,0.894001,0.261804,0.157874,0.870825,0.0117876,0.229758,0.201978,0.139618,0.187286,0.382214,0.575117,0.38335,0.501797,0.625372,0.0137898,0.547811,0.735334,0.858771,0.511188,0.37479,0.122093,0.760583,0.696495,0.951937,0.974937,0.62866,0.457872,0.0669274,0.179752,0.277378,0.808627,0.126766,0.779032,0.706281,0.0902918,0.856008,0.143546,0.798066,0.605386,0.810657,0.0261211,0.714904,0.112345,0.358792,0.399641,0.266818,0.375307,0.999349,0.685499,0.0955175,0.559917,0.850751,0.525414,0.205528,0.421145,0.278035,0.781562,0.318606,0.978938,0.501898,0.772098,0.980278,0.261918,0.719555,0.0951672,0.321823,0.915516,0.270501,0.40618,0.997594,0.649364,0.697029,0.682226,0.0421257,0.525135,0.258253,0.326441,0.0786886,0.515044,0.34124,0.448005,0.344171,0.836528,0.407713,0.180198,0.999742,0.916244,0.564167,0.542656,0.282242,0.810384,0.785158,0.884253,0.383332,0.613124,0.419578,0.216312,0.0733796,0.0658471,0.198083,0.861528,0.988711,0.412299,0.252153,0.538446,0.373785,0.353361,0.433328,0.37411,0.426549,0.716026,0.0082556,0.568466,0.564442,0.862273,0.930261,0.664229,0.130635,0.238704,0.393561,0.432897,0.960574,0.687811,0.531334,0.341708,0.819528,0.396925,0.0282413,0.36396,0.973276,0.890039,0.996531,0.339384,0.176462,0.704412,0.92283,0.789115,0.428553,0.888491,0.251554,0.233274,0.319388,0.819149,0.701564,0.891989,0.408834,0.259579,0.186898,0.40189,0.125279,0.148744,0.453618,0.169512,0.64704,0.0467376,0.297638,0.599152,0.775269,0.0485123,0.170404,0.522901,0.944943,0.344351,0.641462,0.775453,0.937486,0.709332,0.789855,0.218857,0.481123,0.891762,0.241541,0.503367,0.797299,0.977241,0.0334585,0.508579,0.881596,0.790308,0.361837,0.480038,0.337804,0.743573,0.690677,0.131101,0.546289,0.760792,0.981292,0.197483,0.260282,0.282204,0.201601,0.482114,0.804782,0.3516,0.0602717,0.62576,0.461472,0.775158,0.236576,0.146451,0.0267873,0.913212,0.248393,0.476353,0.861275,0.57307,0.52634,0.827908,0.803831,0.236405,0.988749,0.529798,0.578901,0.0997414,0.59427,0.668781,0.547262,0.984093,0.0577211,0.193997,0.755616,0.984389,0.297345,0.521344,0.493907,0.179783,0.784782,0.461526,0.592127,0.962236,0.602659,0.383519,0.239983,0.75961,0.476691,0.478074,0.682571,0.174041,0.178745,0.890438,0.791014,0.244086,0.143377,0.45146,0.386318,0.591855,0.443158,0.9843,0.723073,0.681277,0.354008,0.048789,0.776598,0.314725,0.928595,0.677882,0.299586,0.0831003,0.621549,0.737568,0.950772,0.304325,0.261258,0.670803,0.582574,0.559609,0.407871,0.116942,0.222504,0.145651,0.804056,0.631597,0.130981,0.593988,0.811891,0.941238,0.549681,0.0545214,0.775215,0.337991,0.241554,0.578529,0.566569,0.419569,0.416871,0.519192,0.737023,0.944108,0.271955,0.544447,0.607208,0.801302,0.725908,0.840856,0.980692,0.494808,0.686206,0.50011,0.0695677,0.544151,0.511234,0.875613,0.263973,0.578359,0.552919,0.969104,0.389618,0.55869,0.661618,0.257304,0.949524,0.731394,0.301239,0.276045,0.764984,0.539382,0.61644,0.60896,0.329057,0.280029,0.360294,0.139145,0.288094,0.715805,0.129632,0.766555,0.293528,0.963375,0.922233,0.981526,0.373405,0.242909,0.656917,0.864246,0.28519,0.962219,0.675359,0.292581,0.727395,0.908935,0.345861,0.210738,0.861913,0.358029,0.891274,0.709324,0.343757,0.299777,0.784145,0.772239,0.322474,0.880028,0.287779,0.0318726,0.303106,0.261912,0.330455,0.235353,0.713271,0.439979,0.0471516,0.600612,0.212397,0.0579633,0.748187,0.607874,|0.285066,0.579503,0.0650094,0.106769,0.0220846,0.31908,0.894729,0.782922,0.571047,0.908882,0.135002,0.294692,0.894027,0.720047,0.261032,0.156379,0.976939,0.40474,0.303763,0.328414,0.907314,0.275833,0.0382057,0.416285,0.374667,0.242561,0.99452,0.787319,0.158476,0.560638,0.698473,0.754104,0.895502,0.377656,0.786888,0.839109,0.456068,0.742566,0.0955752,0.785994,0.0374472,0.944455,0.262321,0.393422,0.00147325,0.573557,0.609375,0.095579,0.536032,0.00983167,0.0904564,0.722359,0.0865886,0.660074,0.223589,0.17841,0.505774,0.371478,0.908781,0.621091,0.309328,0.265365,0.135503,0.570186,0.412225,0.824548,0.918773,0.797082,0.240588,0.389337,0.712213,0.890906,0.573435,0.0201141,0.999454,0.898957,0.677293,0.684238,0.511472,0.793604,0.98813,0.184359,0.710191,0.13311,0.522929,0.192728,0.780844,0.944196,0.379625,0.742662,0.909364,0.650278,0.0321496,0.261398,0.953081,0.762659,0.0936799,0.431351,0.175754,0.77074,0.47936,0.798002,0.619699,0.411956,0.92374,0.85292,0.637088,0.370606,0.022217,0.7755,0.977298,0.988019,0.598378,0.323376,0.254451,0.552529,0.473675,0.334955,0.455603,0.0923393,0.55406,0.570617,0.0767365,0.341125,0.452439,0.143079,0.39715,0.408581,0.412009,0.810278,0.0337177,0.842352,0.761434,0.402304,0.139712,0.468149,0.673249,0.903428,0.858333,0.315631,0.862782,0.78245,0.528792,0.754072,0.208328,0.315493,0.986805,0.890044,0.366522,0.850553,0.0974319,0.420029,0.800831,0.391118,0.0995635,0.370073,0.724083,0.686994,0.675809,0.552601,0.449231,0.845223,0.0463791,0.263185,0.43593,0.239999,0.142362,0.413492,0.966361,0.197786,0.441767,0.511044,0.857939,0.727149,0.0787058,0.531429,0.923184,0.018277,0.587818,0.271568,0.905506,0.342698,0.810187,0.866973,0.174967,0.388432,0.0158755,0.0430181,0.526675,0.456616,0.0447833,0.387205,0.655246,0.660245,0.671499,0.766612,0.969644,0.899252,0.0581898,0.327795,0.439818,0.842435,0.771005,0.482027,0.407577,0.222556,0.491286,0.745185,0.0816826,0.543938,0.903871,0.683058,0.542457,0.996452,0.923149,0.735549,0.947604,0.816486,0.483785,0.538573,0.133923,0.557681,0.0938812,0.178395,0.722397,0.292915,0.584958,0.332771,0.0432073,0.378475,0.763466,0.11252,0.950555,0.786756,0.248576,0.81549,0.610069,0.364109,0.911041,0.0523314,0.686678,0.903392,0.769933,0.697358,0.329897,0.935793,0.132932,0.0952942,0.092001,0.591171,0.152401,0.856019,0.586034,0.200883,0.902852,0.714096,0.455138,0.797545,0.345624,0.513864,0.86246,0.0435013,0.824313,0.290609,0.811629,0.00812948,0.522045,0.155368,0.112156,0.442638,0.617556,0.710367,0.981934,0.199332,0.275706,0.851642,0.356759,0.901957,0.224361,0.452383,0.924298,0.270351,0.992357,0.609301,0.212488,0.460337,0.962605,0.985863,0.85824,0.384506,0.045917,0.735117,0.09878,0.837497,0.774966,0.126361,0.456159,0.804107,0.779241,0.354487,0.942234,0.365284,0.959573,0.213126,0.500084,0.579718,0.823075,0.10415,0.060822,0.828468,0.373048,0.643582,0.683176,0.498976,0.90292,0.95209,0.720788,0.609496,0.845578,0.72721,0.745867,0.978327,0.435155,0.388858,0.825721,0.126518,0.149174,0.555874,0.604619,0.837193,0.554325,0.00663733,0.4695,0.927588,0.194091,0.857159,0.479916,0.0988348,0.289247,0.84152,0.0705984,0.478286,0.951453,0.954139,0.871034,0.909395,0.990697,0.717874,0.992944,0.294801,0.0208281,0.215364,0.429837,0.608553,0.827124,0.478106,0.411671,0.622452,0.0867597,0.955656,0.55066,0.948271,0.827977,0.639398,0.56583,0.392565,0.650641,0.64706,0.84382,0.542763,0.0767679,0.840646,0.281683,0.162563,0.577119,0.264087,0.285493,0.40796,0.792539,0.276051,0.494633,0.539713,0.826754,0.629416,0.117826,0.266259,0.405927,0.14814,0.163689,0.369901,0.640384,0.46424,0.125698,0.753644,0.899422,0.657464,0.955487,0.691842,0.438414,0.649669,0.0853265,0.442944,0.0901248,0.871422,0.267897,0.885741,0.836493,0.411947,0.150775,0.725802,0.648675,0.963742,0.20723,0.582709,0.873533,0.790003,0.396488,0.899106,0.775096,0.958719,0.540445,0.914786,0.359308,0.94832,0.512014,0.128514,0.144545,0.0734211,0.399437,0.534312,0.599352,0.392659,0.189374,0.189749,0.0509044,0.97472,0.00168395,0.650203,0.741532,0.127731,0.199586,0.350009,0.978938,0.588694,0.151779,0.419185,0.366152,0.41866,0.517399,0.743934,0.627156,0.135919,0.0854557,0.158313,0.884112,0.455876,0.0654067,0.708423,0.906508,0.0866109,0.210125,0.3162,0.378382,0.621044,0.0546518,0.755706,0.645475,0.210556,0.664277,0.756916,0.00748765,0.270683,0.253365,0.800032,0.040567,0.166174,0.000932515,0.317771,0.0116612,0.289047,0.641554,0.17281,0.59312,0.547208,0.993863,0.974953,0.817667,0.210082,0.643923,0.7566,0.554254,0.961458,0.809134,0.309879,0.939966,0.938581,0.579686,0.947842,0.474632,0.899397,0.388624,0.755684,0.00139391,0.528233,0.040325,0.0828084,0.691456,0.72095,0.598036,0.563959,0.449721,0.454961,0.629512,0.785489,0.921106,0.920724,0.369434,0.980732,0.382685,0.1123,0.253773,0.692683,0.543957,0.492032,0.622735,0.884245,0.308201,0.162922,0.71782,0.00450176,0.242553,0.39162,0.509777,0.196643,0.806561,0.0482659,0.20544,0.0166056,0.984326,0.432657,0.369784,0.680952,0.952946,0.896954,0.836,0.0208838,0.576174,0.0452667,0.615792,0.337818,0.997842,0.0470193,0.0130134,0.69983,0.656916,0.361079,0.477106,0.992931,0.651863,0.410498,0.853446,0.0792731,0.61704,0.521711,0.573843,0.325801,0.384774,0.850945,0.310645,0.544577,0.24222,0.18967,0.725246,0.853764,0.884906,0.702192,0.767203,0.121283,0.223183,0.161279,0.077473,0.0197588,0.300263,0.655185,0.305079,0.562644,0.727315,0.850155,0.655883,0.687218,0.298193,0.238197,0.325643,0.782624,0.582627,0.90329,0.378777,0.102201,0.289232,0.918074,0.559236,0.165005,0.121634,0.817211,0.126237,0.895884,0.684785,0.569574,0.732153,0.195632,0.946543,0.1159,0.0437822,0.286102,0.73362,0.587793,0.849493,0.628225,0.777641,0.54091,0.372172,0.147964,0.402387,0.514077,0.13851,0.91383,0.27244,0.875511,0.110022,0.0352576,0.459117,0.555193,0.511351,0.438331,0.303204,0.535781,0.455344,0.659873,0.661954,0.823648,0.582648,0.908425,0.913913,0.406916,0.463849,0.0896493,0.337957,0.84826,0.464669,0.0271241,0.38714,0.0903113,0.344488,0.0756735,0.772677,0.534867,0.0537094,0.777143,0.25119,0.53457,0.619131,0.583169,0.606792,0.470336,0.80558,0.086233,0.835166,0.123229,0.928499,0.37502,0.73698,0.0292541,0.958373,0.0861967,0.39946,0.38171,0.0111701,0.829053,0.805361,0.61855,0.375581,0.967612,0.655351,0.429305,0.654608,0.256188,0.417308,0.829431,0.824883,0.750207,0.533816,0.991177,0.607766,0.623711,0.785149,0.199221,0.708492,0.170428,0.360653,0.370189,0.121446,0.102253,0.280216,0.385879,0.585332,0.0508443,0.112716,0.554518,0.162431,0.258322,0.104217,0.688877,0.551074,0.497833,0.869176,0.469008,0.775108,0.549448,0.301454,0.977834,0.523853,0.483322,0.0824032,0.915601,0.566403,0.128102,0.748276,0.239377,0.0719587,0.28191,0.932214,0.823222,0.13826,0.322747,0.796128,0.209501,0.870489,0.0257827,0.754725,0.600759,0.180202,0.33953,0.851768,0.130349,0.960206,0.902266,0.846924,0.958121,0.103598,0.839718,0.536248,0.411507,0.799816,0.237598,0.2264,0.384153,0.183081,0.839731,0.185474,0.467647,0.082617,0.808877,0.716193,0.999387,0.0102333,0.112312,0.672222,0.509053,0.178205,0.432735,0.42517,0.759849,0.395609,0.28313,0.803807,0.303317,0.377014,0.460292,0.796127,0.243638,0.896136,0.70871,0.171837,0.218006,0.0701309,0.950275,0.32629,0.880836,0.333107,0.55943,0.095014,0.812262,0.859943,0.853782,0.503132,0.43588,0.157881,0.192252,0.298096,0.815416,0.867595,0.352302,0.830698,0.674394,0.969989,0.00274295,0.60716,0.0957726,0.341764,0.0753868,0.434414,0.488488,0.110174,0.742185,0.290123,0.123737,0.779717,0.88767,0.734903,0.673319,0.528657,0.0186198,0.835887,0.544571,0.931022,0.733172,0.472703,0.949878,0.312533,0.877762,0.255383,0.780532,0.877023,0.311515,0.620539,0.995844,0.407334,0.22583,0.649992,0.774638,0.72552,0.252525,0.601272,0.874642,0.576419,0.453227,0.00405258,0.466435,0.848742,0.17839,0.84867,0.0262203,0.515829,0.125621,0.935934,0.288331,0.93923,0.178791,0.252842,0.0953879,0.51657,0.686956,0.860016,0.445496,0.86531,0.0592704,0.866007,0.493304,0.303345,0.981954,0.720637,0.305718,0.955875,0.590439,0.498228,0.95514,0.896851,0.75918,0.772069,0.570242,0.902265,0.66337,0.367191,0.0747761,0.968853,0.834718,0.689364,0.407324,0.832928,0.0268209,0.897953,0.353346,0.525468,0.829647,0.124436,0.949032,0.836418,0.102338,0.625509,0.220726,0.250973,0.449821,0.0632041,0.399494,0.697043,0.0328487,0.146397,0.680514,0.121696,0.81452,0.464328,0.379028,0.63083,0.736735,0.289373,0.321921,0.468609,0.0324882,0.699896,0.704846,0.222792,0.772327,0.937683,0.283,0.822511,0.344821,0.219728,0.511107,0.575144,0.729666,0.226406,0.0819817,0.493917,0.344799,0.161915,0.765105,0.0788079,0.384538,0.856624,0.419617,0.174223,0.518943,0.885937,0.835437,0.187202,0.219378,0.114839,0.782326,0.132651,0.370913,0.751997,0.897324,0.0324618,0.959885,0.136455,0.866642,0.663292,0.615587,0.102106,0.535813,0.219057,0.74974,0.215237,0.98552,0.823577,0.163764,0.22688,0.731152,0.346019,0.746692,0.162008,0.488923,0.665087,0.184893,0.497091,0.810558,0.664405,0.853321,0.719382,0.00598389,0.543652,0.95493,0.216261,0.706131,0.666901,0.667071,0.522907,0.612164,0.287985,0.352362,0.907423,0.9999,0.275329,0.614307,0.392197,0.465356,0.810696,0.819508,0.0755327,0.569996,|0.300301,0.599101,0.510315,0.925723,0.73201,0.475062,0.093913,0.860743,0.786618,0.324243,0.718078,0.0661845,0.97874,0.017284,0.829864,0.628737,0.86972,0.648025,0.361637,0.462543,0.3351,0.679685,0.781329,0.492099,0.144671,0.558315,0.342822,0.364375,0.0267954,0.0763156,0.312564,0.0884061,0.702991,0.302011,0.517155,0.821292,0.557291,0.429045,0.236545,0.759877,0.595683,0.34807,0.273886,0.159995,0.193127,0.603209,0.254514,0.873293,0.230485,0.679416,0.410698,0.0571844,0.045952,0.709869,0.955697,0.141461,0.897861,0.70453,0.99619,0.262401,0.0207493,0.082044,0.342779,0.132977,0.143078,0.111324,0.219701,0.632195,0.44656,0.931854,0.891478,0.6096,0.319715,0.294353,0.102553,0.212543,0.032836,0.226398,0.797097,0.984267,0.118222,0.189504,0.228558,0.766123,0.918899,0.138949,0.587346,0.388649,0.27338,0.634436,0.541935,0.36794,0.238377,0.932468,0.260169,0.359045,0.69891,0.0323562,0.453865,0.990743,0.992534,0.197932,0.0628912,0.405795,0.00306785,0.183368,0.0753188,0.68064,0.434925,0.375398,0.433403,0.989016,0.501527,0.469575,0.802642,0.869254,0.693339,0.4722,0.0142192,0.62488,0.895143,0.523558,0.240066,0.419218,0.879678,0.391242,0.955625,0.0923674,0.585069,0.588957,0.0140586,0.0270244,0.19451,0.686673,0.802754,0.257879,0.0322664,0.116054,0.857116,0.264559,0.904518,0.177043,0.784121,0.141171,0.362916,0.229173,0.902641,0.319396,0.612603,0.808499,0.370051,0.427414,0.0350814,0.913227,0.547811,0.906371,0.225342,0.993341,0.968979,0.850162,0.602538,0.410026,0.884486,0.285863,0.397193,0.373917,0.187399,0.94121,0.743078,0.704308,0.509441,0.492504,0.838704,0.0924713,0.572647,0.819113,0.427385,0.85844,0.506803,0.358975,0.87354,0.682035,0.940281,0.608159,0.335198,0.788623,0.0066601,0.979941,0.897619,0.453072,0.855995,0.745487,0.439454,0.262977,0.334522,0.397904,0.867073,0.209148,0.441415,0.550705,0.102499,0.340211,0.405795,0.641483,0.853432,0.198099,0.764681,0.722613,0.515931,0.759644,0.424343,0.717513,0.136333,0.884756,0.441015,0.605834,0.113398,0.977078,0.22852,0.341797,0.125511,0.18802,0.391365,0.277862,0.796999,0.270711,0.872667,0.739047,0.354388,0.134278,0.793442,0.372205,0.951516,0.219786,0.0470417,0.095149,0.282084,0.964921,0.411916,0.895945,0.907931,0.952528,0.918589,0.636378,0.3772,0.445458,0.270525,0.383172,0.172585,0.426043,0.556612,0.299464,0.992745,0.0897338,0.2126,0.624184,0.304637,0.189685,0.442596,0.837648,0.458203,0.946064,0.611621,0.112555,0.147496,0.214924,0.35668,0.67158,0.432913,0.157394,0.424712,0.03646,0.557608,0.355848,0.845266,0.644641,0.750954,0.216579,0.76766,0.362762,0.686954,0.0966756,0.174525,0.56185,0.519384,0.49879,0.484799,0.29884,0.975608,0.562991,0.5376,0.334803,0.206249,0.0489488,0.788371,0.30985,0.395986,0.330253,0.180769,0.340517,0.729518,0.510964,0.0382889,0.788944,0.298891,0.00045687,0.611506,0.0590692,0.69431,0.516259,0.996319,0.435357,0.0147449,0.74405,0.745515,0.426403,0.542112,0.958826,0.983401,0.00750881,0.155586,0.975137,0.826992,0.142277,0.130147,0.798011,0.548545,0.206988,0.368244,0.798043,0.959915,0.733995,0.581684,0.592295,0.644948,0.0542204,0.10636,0.141179,0.401819,0.989368,0.477903,0.693637,0.0343635,0.789534,0.384288,0.335059,0.887613,0.430426,0.974224,0.0935947,0.0436686,0.337497,0.291761,0.566559,0.672742,0.202201,0.881343,0.269086,0.187445,0.165563,0.19359,0.945202,0.920802,0.262237,0.389723,0.0989842,0.954305,0.736158,0.726598,0.585205,0.339989,0.806605,0.840485,0.849039,0.771727,0.0270772,0.212502,0.995212,0.617463,0.985827,0.626332,0.774593,0.874718,0.885445,0.0795822,0.534017,0.627455,0.536408,0.0626966,0.768887,0.275362,0.875256,0.965716,0.996131,0.386765,0.0610062,0.603859,0.15036,0.487403,0.64808,0.856716,0.643836,0.652628,0.875194,0.875364,0.759032,0.835526,0.149214,0.708651,0.255995,0.776584,0.276134,0.903538,0.274024,0.220252,0.515489,0.180936,0.941316,0.0782332,0.342063,0.33511,0.196353,0.794758,0.128259,0.111704,0.189643,0.886549,0.102236,0.12432,0.188066,0.928905,0.550995,0.501202,0.0308012,0.537834,0.522076,0.0183912,0.378754,0.315138,0.35711,0.0550549,0.306346,0.854214,0.902329,0.732898,0.0108433,0.0675966,0.499782,0.103102,0.959278,0.309851,0.168156,0.788391,0.567669,0.683413,0.433162,0.303414,0.0703357,0.879615,0.711032,0.653778,0.500031,0.0770206,0.546072,0.149446,0.313936,0.475672,0.979312,0.822613,0.814399,0.600032,0.371312,0.368594,0.498752,0.350005,0.399095,0.876209,0.218,0.829872,0.3237,0.167482,0.340525,0.511894,0.398548,0.369318,0.230914,0.792432,0.324632,0.803524,0.456833,0.786555,0.295853,0.894524,0.993468,0.604759,0.597005,0.456082,0.234715,0.27274,0.903134,0.968007,0.960926,0.379659,0.719989,0.131642,0.409459,0.612554,0.645167,0.164553,0.76008,0.614089,0.865228,0.921528,0.128023,0.743629,0.67352,0.26747,0.305666,0.478963,0.897424,0.223211,0.905796,0.436649,0.780713,0.437558,0.556116,0.379385,0.816557,0.876682,0.27519,0.43441,0.64151,0.347738,0.555083,0.360338,0.14384,0.771814,0.08381,0.658366,0.134976,0.162538,0.3336,0.831232,0.0701648,0.71278,0.159353,0.339253,0.792213,0.151155,0.470956,0.820792,0.726071,0.99989,0.53116,0.826097,0.783364,0.241616,0.474948,0.998861,0.588263,0.895746,0.502382,0.960698,0.249109,0.523285,0.17377,0.760225,0.0821877,0.767834,0.668116,0.404372,0.921495,0.762126,0.953046,0.233729,0.408853,0.138379,0.689115,0.0412557,0.586952,0.948689,0.370379,0.0632493,0.966847,0.952446,0.531524,0.76569,0.123902,0.944227,0.136186,0.559056,0.0834552,0.772114,0.252096,0.0586193,0.302096,0.502701,0.840978,0.140875,0.699726,0.400315,0.1254,0.311779,0.0300683,0.983159,0.744642,0.692161,0.535793,0.538152,0.635062,0.0899513,0.827111,0.518605,0.0681649,0.0649128,0.343317,0.911521,0.180763,0.0282813,0.123712,0.621904,0.0766041,0.456237,0.176709,0.714383,0.346236,0.489936,0.34265,0.462629,0.223984,0.969898,0.769462,0.234014,0.95666,0.365378,0.794271,0.791001,0.39282,0.0806199,0.213772,0.702959,0.00249106,0.296134,0.14859,0.376223,0.177209,0.185914,0.902998,0.500737,0.370167,0.310521,0.639759,0.518204,0.131697,0.134741,0.656059,0.508018,0.277883,0.872561,0.0942692,0.197312,0.235329,0.277008,0.765447,0.103603,0.901291,0.956319,0.0606531,0.654564,0.419684,0.21388,0.540636,0.310899,0.760873,0.802523,0.654786,0.193318,0.362886,0.0923196,0.603393,0.547068,0.619113,0.140108,0.936237,0.911535,0.796562,0.326287,0.479506,0.997894,0.850698,0.120657,0.811369,0.846992,0.969889,0.780599,0.821921,0.335442,0.87424,0.467133,0.734536,0.885918,0.500363,0.312973,0.904383,0.298126,0.78015,0.294604,0.113317,0.236401,0.377582,0.394239,0.185457,0.93268,0.432019,0.265059,0.626949,0.467043,0.478688,0.123735,0.268415,0.988366,0.270801,0.885739,0.467376,0.907862,0.773309,0.79127,0.130629,0.549047,0.351591,0.269009,0.241232,0.452019,0.764181,0.576081,0.444256,0.8573,0.180591,0.338802,0.896665,0.031273,0.958802,0.908794,0.0857687,0.516522,0.0977935,0.245788,0.431665,0.484036,0.718829,0.146447,0.95114,0.35789,0.870966,0.0378868,0.274615,0.207908,0.779575,0.0786126,0.210871,0.464342,0.310725,0.314103,0.509197,0.803697,0.395863,0.676854,0.186678,0.622234,0.711903,0.611087,0.846945,0.0518704,0.397113,0.0822496,0.261832,0.581502,0.549532,0.740828,0.165987,0.139376,0.460318,0.861306,0.324931,0.1232,0.0742502,0.204663,0.369141,0.276634,0.115741,0.635427,0.01779,0.555544,0.56678,0.355619,0.75347,0.314017,0.808133,0.699516,0.730684,0.997123,0.0875984,0.785413,0.533176,0.495059,0.751903,0.859074,0.262197,0.667607,0.857233,0.102394,0.500979,0.376708,0.548294,0.901366,0.14099,0.148375,0.846519,0.890662,0.525283,0.836994,0.433307,0.513904,0.998082,0.624354,0.984341,0.26389,0.568208,0.00604916,0.724257,0.421067,0.917158,0.808873,0.906872,0.848503,0.495211,0.749836,0.21687,0.62304,0.668034,0.159854,0.647322,0.826582,0.697998,0.276936,0.0320243,0.886226,0.395295,0.563586,0.76643,0.794139,0.751885,0.510579,0.427819,0.675713,0.0381092,0.413472,0.667793,0.927728,0.9172,0.315208,0.582012,0.902086,0.682227,0.111314,0.236048,0.303859,0.249706,0.628833,0.821441,0.261723,0.462233,0.9009,0.601275,0.859986,0.928648,0.223637,0.460299,0.131746,0.714046,0.802372,0.308726,0.27163,0.946871,0.969296,0.762656,0.827199,0.735297,0.846296,0.110942,0.289416,0.799182,0.0845019,0.378067,0.621663,0.482668,0.0557602,0.985188,0.324347,0.0379311,0.852018,0.676438,0.63179,0.458235,0.446734,0.353543,0.563549,0.30823,0.76407,0.903918,0.85624,0.777206,0.311965,0.295348,0.296966,0.70233,0.219706,0.22585,0.190087,0.7618,0.55028,0.0534101,0.627214,0.13993,0.644583,0.634548,0.586936,0.755396,0.546823,0.795262,0.0011664,0.0899202,0.928702,0.0067659,0.91693,0.27584,0.666977,0.156078,0.0951555,0.637363,0.884455,0.811263,0.661986,0.849151,0.866816,0.842601,0.936092,0.35049,0.8179,0.496464,0.786211,0.10832,0.526777,0.0311686,0.0765436,0.653094,0.396013,0.145354,0.271952,0.264869,0.161256,0.862516,0.527482,0.544532,0.829183,0.170684,0.834569,0.848337,0.454591,0.405054,0.348272,0.365767,0.782342,0.670201,0.249145,0.476675,0.0171932,0.587314,0.257921,0.375651,0.855825,0.110335,0.458182,0.0935922,0.591258,0.654725,0.302584,0.0644246,0.061147,0.36979,0.135753,0.960183,0.164168,0.627673,0.0542143,0.479799,0.38445,0.423244,0.29659,0.0771663,|0.683179,0.999905,0.123213,0.517497,0.721185,0.990732,0.450001,0.997873,0.920984,0.240534,0.822856,0.298367,0.544543,0.716883,0.805713,0.443355,0.0924386,0.980761,0.886744,0.982397,0.282798,0.433343,0.645034,0.839966,0.498159,0.772511,0.243767,0.549617,0.610671,0.0797455,0.767487,0.641523,0.119108,0.687944,0.502322,0.787286,0.327522,0.683842,0.566163,0.763546,0.951745,0.597154,0.792673,0.557525,0.465811,0.77241,0.818851,0.400532,0.655195,0.304088,0.36824,0.62185,0.188432,0.288185,0.623774,0.725327,0.272372,0.796745,0.792519,0.242571,0.201755,0.0646976,0.655672,0.546639,0.130774,0.707715,0.599652,0.21311,0.869715,0.51091,0.0375426,0.155926,0.564313,0.219432,0.700559,0.559766,0.805534,0.419328,0.2225,0.633816,0.631656,0.362602,0.0912231,0.150935,0.386318,0.546987,0.485152,0.059052,0.54776,0.751411,0.123748,0.0562131,0.22712,0.892003,0.837783,0.335109,0.600524,0.201835,0.33815,0.468488,0.074907,0.119891,0.340762,0.23747,0.373629,0.645013,0.887349,0.922267,0.433073,0.530209,0.421543,0.0494704,0.0811357,0.316637,0.67669,0.378529,0.887957,0.154778,0.0255994,0.671657,0.690635,0.668181,0.331615,0.763842,0.463105,0.608787,0.345337,0.0902047,0.195494,0.801453,0.28707,0.551666,0.247206,0.536367,0.792184,0.110604,0.154004,0.346157,0.936488,0.478137,0.998709,0.622464,0.388604,0.702492,0.260932,0.570827,0.706803,0.538867,0.0945486,0.408339,0.278596,0.115478,0.656962,0.110126,0.0624162,0.521803,0.248893,0.897109,0.718759,0.680227,0.172276,0.674039,0.260755,0.789911,0.708259,0.111834,0.364272,0.0902538,0.745878,0.754626,0.316874,0.369044,0.0438062,0.286996,0.245314,0.817717,0.714984,0.818361,0.778361,0.358912,0.0457698,0.149201,0.975467,0.147656,0.611454,0.169996,0.463496,0.688513,0.226652,0.376942,0.0272427,0.968645,0.211117,0.509967,0.868695,0.378729,0.496864,0.780086,0.732701,0.820903,0.244366,0.250533,0.984803,0.188848,0.470684,0.864514,0.509096,0.290219,0.657299,0.620193,0.295218,0.383028,0.646587,0.323997,0.766058,0.409476,0.832909,0.775798,0.334285,0.906255,0.365044,0.315655,0.908752,0.711658,0.480009,0.61946,0.888457,0.485397,0.0499848,0.892941,0.812562,0.97491,0.0805371,0.240332,0.129565,0.726909,0.137259,0.468696,0.220446,0.425009,0.67688,0.41551,0.570072,0.109936,0.678363,0.542618,0.811314,0.982538,0.412346,0.856061,0.961936,0.941971,0.972929,0.184704,0.700086,0.768133,0.226411,0.842491,0.719535,0.427558,0.00470066,0.080501,0.247849,0.275156,0.393517,0.0308003,0.446857,0.877187,0.386582,0.812001,0.432786,0.830573,0.994414,0.444266,0.191521,0.64314,0.570496,0.183559,0.300259,0.0514503,0.997186,0.910035,0.0638168,0.586444,0.625448,0.951399,0.129603,0.259196,0.326048,0.739294,0.641749,0.175681,0.600743,0.231384,0.411275,0.753883,0.159056,0.182731,0.0244086,0.628273,0.629716,0.37459,0.259825,0.885873,0.523815,0.389537,0.951537,0.272903,0.0901334,0.100046,0.497103,0.622375,0.536475,0.366206,0.569431,0.681034,0.831463,0.962047,0.335342,0.894613,0.0790866,0.785185,0.502633,0.595234,0.0351542,0.448371,0.656182,0.970994,0.98499,0.407738,0.528459,0.0348733,0.857285,0.925457,0.350727,0.00120389,0.690332,0.0260576,0.0146392,0.997188,0.393822,0.120495,0.0598617,0.24815,0.0096699,0.569915,0.949193,0.837266,0.291889,0.792628,0.667108,0.154002,0.521506,0.0620552,0.646204,0.311964,0.80689,0.96329,0.679105,0.0120486,0.708885,0.55551,0.139032,0.635106,0.843056,0.756937,0.401864,0.976484,0.724935,0.175128,0.284901,0.47735,0.77633,0.23251,0.460542,0.140819,0.0263019,0.574006,0.993943,0.880627,0.190114,0.706133,0.358641,0.6865,0.297907,0.480647,0.356402,0.337434,0.0351118,0.269372,0.86846,0.256494,0.0968788,0.356858,0.457337,0.592957,0.473627,0.956752,0.676644,0.323356,0.0986094,0.573168,0.131295,0.240991,0.192918,0.881756,0.653007,0.236382,0.0105333,0.10358,0.443948,0.524152,0.0090701,0.967381,0.826427,0.485998,0.590275,0.611965,0.0129669,0.960123,0.403451,0.888356,0.664178,0.704693,0.056236,0.231307,0.203092,0.535925,0.731807,0.374011,0.698969,0.666037,0.506884,0.0401432,0.523362,0.232473,0.336838,0.686605,0.0739007,0.154939,0.61364,0.594391,0.207163,0.365278,0.226445,0.244824,0.719478,0.507151,0.468322,0.110411,0.510575,0.188982,0.00140119,0.581486,0.34192,0.780367,0.965302,0.241533,0.0037964,0.941016,0.575785,0.631339,0.0945595,0.805988,0.440451,0.363485,0.511282,0.852555,0.96303,0.0116757,0.529473,0.983713,0.0986177,0.165924,0.980853,0.296029,0.663078,0.187516,0.734406,0.469127,0.387644,0.387651,0.824137,0.150871,0.468159,0.442989,0.638674,0.0335113,0.911031,0.538675,0.709829,0.994694,0.738167,0.748313,0.74512,0.869078,0.63005,0.459845,0.573897,0.94632,0.320472,0.775712,0.115005,0.947519,0.305579,0.627198,0.572425,0.0502244,0.85959,0.982625,0.538381,0.905765,0.95742,0.962505,0.267813,0.123798,0.576811,0.810596,0.216776,0.278791,0.971319,0.824531,0.946738,0.114403,0.920156,0.238408,0.722052,0.435543,0.362631,0.552509,0.19511,0.691933,0.742002,0.869276,0.550468,0.412353,0.701574,0.809128,0.228404,0.527894,0.0622875,0.429571,0.979922,0.221322,0.163886,0.073262,0.442453,0.508045,0.135296,0.625036,0.736197,0.701274,0.319009,0.825717,0.0932281,0.395047,0.115735,0.211109,0.816779,0.158637,0.683436,0.365124,0.579235,0.660357,0.0389241,0.306738,0.862201,0.831276,0.72241,0.741089,0.498949,0.561388,0.284717,0.159954,0.717219,0.137977,0.0960108,0.066545,0.206813,0.557635,0.344444,0.282222,0.388369,0.360902,0.692116,0.170552,0.049108,0.500726,0.571202,0.381717,0.957146,0.769982,0.667882,0.224564,0.274027,0.669817,0.294374,0.195747,0.148329,0.472706,0.0574611,0.655414,0.198263,0.33439,0.913045,0.192353,0.0584698,0.350156,0.81023,0.728744,0.717606,0.109261,0.794275,0.441985,0.490357,0.442818,0.192513,0.415812,0.510182,0.903768,0.959356,0.945983,0.903347,0.0416524,0.0380226,0.917272,0.631613,0.230796,0.494749,0.849918,0.789855,0.688492,0.26556,0.895718,0.624956,0.193875,0.779966,0.6752,0.915557,0.882543,0.622676,0.64064,0.924304,0.128974,0.547474,0.541419,0.299766,0.855012,0.998893,0.965124,0.590489,0.202777,0.764119,0.601649,0.270637,0.0856376,0.391294,0.768784,0.225103,0.782065,0.700724,0.368278,0.182363,0.697509,0.494481,0.0231681,0.678777,0.859957,0.738049,0.369671,0.978639,0.365006,0.0194998,0.335208,0.793595,0.696141,0.895571,0.439623,0.142726,0.704165,0.25902,0.664193,0.611929,0.301401,0.740865,0.881913,0.476553,0.684253,0.265637,0.240833,0.124192,0.889195,0.270395,0.377768,0.144798,0.411247,0.425127,0.220334,0.227311,0.178411,0.159772,0.639293,0.865759,0.659136,0.172493,0.615548,0.495451,0.607231,0.487915,0.337624,0.754501,0.280875,0.566689,0.681979,0.577506,0.329094,0.723355,0.347817,0.809164,0.208693,0.813884,0.858511,0.498671,0.383921,0.789,0.0158973,0.451985,0.327443,0.469488,0.346458,0.824398,0.738879,0.724405,0.631254,0.956079,0.762256,0.234358,0.340894,0.933677,0.628297,0.222865,0.5362,0.941072,0.919918,0.432779,0.64752,0.881332,0.989648,0.146367,0.500308,0.053001,0.393297,0.276803,0.964095,0.701469,0.611389,0.69974,0.0456076,0.127893,0.798676,0.850719,0.0504522,0.345986,0.00860369,0.759809,0.112336,0.972595,0.900552,0.934416,0.461629,0.396012,0.0390327,0.00376034,0.912864,0.327062,0.423949,0.771756,0.100079,0.897032,0.69198,0.500366,0.185778,0.641342,0.694216,0.776326,0.0183609,0.654775,0.682002,0.0580968,0.68032,0.695125,0.121614,0.706236,0.0849845,0.499743,0.659876,0.619268,0.961367,0.441553,0.546641,0.0882902,0.838584,0.961136,0.96366,0.848807,0.0238142,0.617764,0.449576,0.346507,0.355558,0.435172,0.0914437,0.632875,0.12402,0.466936,0.806881,0.664396,0.353132,0.0238946,0.140284,0.886146,0.333052,0.650412,0.11401,0.303848,0.365587,0.908417,0.648986,0.172383,0.922462,0.010754,0.294428,0.646739,0.0656559,0.051106,0.895823,0.900377,0.235294,0.425903,0.362897,0.762486,0.418244,0.826341,0.65921,0.933857,0.630303,0.463213,0.562911,0.158933,0.783512,0.546649,0.191896,0.714728,0.172246,0.887876,0.261423,0.33389,0.0498233,0.907077,0.988141,0.597876,0.283411,0.380482,0.444421,0.971325,0.843562,0.324468,0.887269,0.274148,0.439764,0.381325,0.370879,0.642306,0.25871,0.548039,0.0315134,0.792922,0.940403,0.784807,0.290814,0.202429,0.84831,0.304097,0.855119,0.520179,0.0149472,0.00670487,0.877671,0.345695,0.595181,0.708076,0.645913,0.697691,0.0230899,0.132168,0.81662,0.361564,0.938967,0.974216,0.804235,0.549358,0.237001,0.471042,0.184117,0.18156,0.150739,0.504822,0.160883,0.297584,0.621739,0.0858016,0.327318,0.864241,0.615167,0.626694,0.065257,0.200239,0.849056,0.210247,0.714261,0.015698,0.652432,0.297968,0.508879,0.572718,0.967002,0.211667,0.671665,0.853523,0.279261,0.188285,0.673203,0.0586221,0.336442,0.822782,0.514982,0.692381,0.53297,0.136825,0.0517882,0.243297,0.550662,0.0539379,0.199761,0.158587,0.479254,0.0968135,0.912103,0.0967234,0.633564,0.642979,0.821892,0.111257,0.840073,0.0416588,0.60046,0.47756,0.178718,0.391691,0.193426,0.281638,0.326975,0.331766,0.773415,0.28642,0.660376,0.921718,0.476115,0.361612,0.663393,0.0370929,0.642644,0.789154,0.698155,0.353663,0.630211,0.0238039,0.701505,0.704534,0.645842,0.475155,0.870952,0.915016,0.210072,0.813672,0.628511,0.229945,0.935907,0.291788,0.39243,0.223305,0.740423,0.893941,0.40455,0.944507,0.169438,0.259873,0.812826,0.31359,0.000494301,|0.652582,0.991608,0.851235,0.000279844,0.307043,0.4068,0.62578,0.356516,0.867182,0.253856,0.314892,0.174514,0.879952,0.60453,0.03162,0.318847,0.31193,0.172195,0.802295,0.700276,0.262475,0.10475,0.142242,0.925392,0.840856,0.251555,0.978369,0.798871,0.278567,0.000938594,0.162607,0.696952,0.52946,0.0175155,0.462533,0.918754,0.181543,0.975694,0.598171,0.705537,0.945433,0.503047,0.0441275,0.252359,0.252085,0.359295,0.176375,0.293317,0.30261,0.314949,0.513859,0.759082,0.976399,0.898396,0.849385,0.79517,0.985269,0.288989,0.380652,0.997804,0.785499,0.91978,0.191094,0.429163,0.749399,0.77839,0.930578,0.447789,0.356815,0.675696,0.735283,0.141953,0.585029,0.690841,0.62518,0.289793,0.654799,0.408951,0.925402,0.0917013,0.39807,0.177315,0.217189,0.451908,0.931206,0.0484349,0.365871,0.135547,0.196519,0.733488,0.28988,0.474802,0.455653,0.610638,0.228729,0.131348,0.494435,0.0879593,0.384006,0.738361,0.968495,0.884493,0.875849,0.841439,0.788159,0.839529,0.767006,0.0363536,0.0954334,0.0405697,0.762109,0.22307,0.367536,0.998397,0.820693,0.906698,0.546172,0.389118,0.0861319,0.679557,0.0308912,0.912974,0.534658,0.250783,0.555992,0.0647877,0.390248,0.641635,0.365981,0.525042,0.671668,0.740756,0.425609,0.714266,0.928434,0.579112,0.186141,0.234335,0.153808,0.905052,0.0287341,0.347349,0.0941661,0.620932,0.322067,0.792695,0.368832,0.60547,0.0983713,0.565601,0.684052,0.730428,0.744176,0.0852814,0.155731,0.806143,0.096783,0.711828,0.253947,0.856372,0.697059,0.106101,0.0232326,0.563141,0.840886,0.311895,0.936693,0.156706,0.302006,0.148347,0.244686,0.603734,0.373589,0.127292,0.00559425,0.52952,0.260427,0.112283,0.756757,0.743339,0.410025,0.367066,0.808381,0.0256009,0.385111,0.964804,0.866375,0.297601,0.279519,0.931561,0.374373,0.417753,0.905978,0.604263,0.38561,0.129935,0.231541,0.0969455,0.467221,0.40278,0.938419,0.0602624,0.742979,0.466935,0.935534,0.189271,0.830951,0.698134,0.220042,0.826391,0.614554,0.925245,0.525874,0.0146052,0.137179,0.063805,0.831139,0.83477,0.981387,0.466215,0.831594,0.886609,0.14199,0.370491,0.0928029,0.77675,0.240731,0.28751,0.536104,0.841733,0.98121,0.16491,0.939875,0.996861,0.0039469,0.0179988,0.571588,0.408431,0.523597,0.748652,0.672161,0.18787,0.608059,0.117709,0.943594,0.960896,0.434282,0.846668,0.135708,0.647605,0.449206,0.106795,0.683596,0.239875,0.153722,0.0734987,0.643428,0.332651,0.441879,0.0788074,0.937572,0.825178,0.23866,0.732285,0.731706,0.85035,0.950793,0.895774,0.724906,0.817285,0.0860674,0.99586,0.499117,0.129586,0.865284,0.249023,0.540296,0.939254,0.597339,0.121904,0.44414,0.452807,0.861554,0.150239,0.851411,0.464986,0.667424,0.880572,0.718622,0.153104,0.703777,0.133432,0.102815,0.516348,0.833889,0.532692,0.23593,0.844933,0.176876,0.475088,0.589699,0.65646,0.829493,0.280578,0.122132,0.462722,0.718009,0.380753,0.0933607,0.198938,0.714641,0.0399986,0.690443,0.219302,0.308667,0.406702,0.402278,0.200546,0.0571045,0.577641,0.36123,0.538646,0.554311,0.134664,0.878738,0.820257,0.938757,0.468527,0.864163,0.573097,0.849533,0.38015,0.381536,0.961425,0.761785,0.682173,0.983191,0.995906,0.515894,0.859932,0.523054,0.664896,0.12546,0.210302,0.433622,0.440493,0.178133,0.991069,0.728373,0.504829,0.546816,0.96548,0.304985,0.780451,0.80723,0.63255,0.504423,0.796595,0.667632,0.0382801,0.0195807,0.920743,0.329324,0.948372,0.908739,0.866947,0.331798,0.258205,0.0795859,0.781432,0.484154,0.865383,0.206404,0.523486,0.00201327,0.74466,0.752968,0.519034,0.984812,0.686074,0.0400803,0.549787,0.180165,0.894857,0.472357,0.125291,0.0146829,0.934089,0.34042,0.490079,0.993913,0.610846,0.743406,0.671763,0.506287,0.964016,0.467458,0.535147,0.37012,0.218206,0.162643,0.449725,0.413216,0.916624,0.154927,0.443753,0.735557,0.86365,0.974447,0.176741,0.587053,0.4388,0.259712,0.797463,0.59425,0.0425587,0.471639,0.829695,0.802993,0.902268,0.152163,0.645258,0.790648,0.110694,0.250489,0.75804,0.545485,0.409973,0.379948,0.446428,0.948589,0.851431,0.807078,0.379536,0.58858,0.499736,0.725215,0.988858,0.723251,0.903434,0.267979,0.729532,0.52193,0.433279,0.30002,0.251081,0.54343,0.0679556,0.186321,0.359354,0.751662,0.559263,0.420306,0.397447,0.223138,0.59459,0.713704,0.545701,0.730551,0.518498,0.789658,0.617163,0.0933508,0.836474,0.13203,0.551737,0.0371928,0.0162897,0.321864,0.930537,0.75417,0.701407,0.577907,0.033085,0.735876,0.945834,0.795182,0.747063,0.0782204,0.927424,0.132005,0.00653762,0.195476,0.690258,0.63324,0.424972,0.534974,0.317464,0.32413,0.0568439,0.569892,0.468834,0.546765,0.386555,0.916524,0.388345,0.352129,0.651783,0.163939,0.737196,0.128366,0.531286,0.90609,0.154559,0.54032,0.131303,0.120376,0.762527,0.844191,0.75986,0.396049,0.545083,0.441168,0.156343,0.63898,0.923826,0.811891,0.65196,0.327682,0.339052,0.199344,0.728706,0.48297,0.112258,0.349673,0.206921,0.976403,0.0220405,0.215584,0.360611,0.762757,0.296996,0.792233,0.505416,0.861851,0.227393,0.265377,0.936343,0.782836,0.539493,0.0586357,0.653023,0.659419,0.67865,0.717687,0.470738,0.339645,0.975014,0.690456,0.952898,0.00705802,0.739953,0.228485,0.897606,0.199175,0.692093,0.33155,0.577906,0.331497,0.0262284,0.180795,0.547517,0.31134,0.755309,0.44929,0.462478,0.832381,0.431073,0.634132,0.699533,0.472009,0.610089,0.0226417,0.171031,0.131268,0.89086,0.602409,0.209966,0.207702,0.190765,0.293934,0.336893,0.888278,0.207404,0.182812,0.0731369,0.665516,0.413271,0.174148,0.800489,0.946113,0.36435,0.421314,0.158295,0.622611,0.976784,0.997649,0.226976,0.461579,0.681687,0.47694,0.481107,0.776664,0.000221848,0.990046,0.425515,0.149483,0.760159,0.466132,0.965205,0.815238,0.382065,0.671752,0.539225,0.595258,0.724643,0.622761,0.349743,0.64798,0.876446,0.124319,0.809425,0.702231,0.697189,0.380133,0.807328,0.457669,0.415909,0.129512,0.690435,0.344119,0.746958,0.064989,0.113231,0.0798954,0.174654,0.832584,0.635089,0.549622,0.61118,0.103128,0.749439,0.0925346,0.0326145,0.282955,0.341154,0.477115,0.129734,0.98132,0.0971873,0.22951,0.410471,0.217977,0.875182,0.284215,0.861441,0.276203,0.223559,0.823693,0.842285,0.43266,0.737682,0.858104,0.645246,0.170368,0.489755,0.547767,0.541989,0.404963,0.477953,0.362869,0.262752,0.0492069,0.145428,0.343644,0.0509384,0.600896,0.509406,0.0488322,0.999359,0.617948,0.692132,0.154392,0.887427,0.754928,0.834695,0.225956,0.98845,0.91672,0.917829,0.727893,0.79176,0.0438233,0.133405,0.978805,0.634032,0.149567,0.0935788,0.642572,0.681679,0.386231,0.192036,0.396566,0.348192,0.379712,0.337208,0.608032,0.649922,0.524655,0.269134,0.874281,0.567679,0.569963,0.240509,0.725583,0.410485,0.173413,0.528844,0.305739,0.154295,0.252791,0.957173,0.146434,0.341869,0.063437,0.0921351,0.240573,0.0624474,0.594338,0.774742,0.292528,0.205256,0.686567,0.398304,0.203774,0.180221,0.356642,0.345447,0.142534,0.43652,0.35366,0.419059,0.976617,0.994456,0.912772,0.440659,0.59111,0.905083,0.22989,0.614142,0.0439838,0.024083,0.325681,0.740091,0.366956,0.781115,0.0169225,0.263272,0.949954,0.134644,0.174975,0.0357407,0.885021,0.613678,0.547104,0.0873008,0.233411,0.533279,0.549745,0.965626,0.976235,0.372027,0.452007,0.21022,0.493335,0.423594,0.250211,0.957677,0.996274,0.398625,0.00819445,0.713117,0.31416,0.69504,0.166751,0.24921,0.900851,0.95721,0.564901,0.784427,0.843287,0.796186,0.1293,0.877746,0.592105,0.894614,0.790849,0.321435,0.653421,0.129112,0.310235,0.973205,0.402495,0.168404,0.140997,0.676949,0.810467,0.752768,0.751571,0.582165,0.506299,0.32827,0.930709,0.0069108,0.541735,0.564902,0.279106,0.205121,0.228223,0.35491,0.571813,0.1664,0.01118,0.318677,0.0252075,0.895853,0.26436,0.453967,0.572151,0.601719,0.688362,0.223338,0.659006,0.691339,0.490271,0.305963,0.0891613,0.58174,0.211601,0.838836,0.622667,0.0845895,0.0225264,0.434138,0.698636,0.982198,0.272854,0.493113,0.565331,0.247496,0.786241,0.697917,0.336885,0.141274,0.16705,0.743305,0.353323,0.166327,0.942944,0.133374,0.196974,0.587181,0.307332,0.369231,0.303283,0.742388,0.987462,0.528881,0.254385,0.214521,0.0557888,0.229232,0.852301,0.159149,0.106675,0.0984016,0.112508,0.293575,0.947315,0.611003,0.735062,0.13562,0.329942,0.504272,0.177985,0.339984,0.44696,0.278303,0.7111,0.783916,0.718794,0.565372,0.39756,0.533903,0.520394,0.1143,0.997795,0.0236638,0.664652,0.558377,0.218408,0.905393,0.375047,0.077624,0.244718,0.318112,0.955843,0.454101,0.613478,0.797109,0.338576,0.337692,0.614457,0.863234,0.731982,0.603803,0.147338,0.971052,0.369931,0.420433,0.0182906,0.864888,0.150968,0.0768862,0.330995,0.387345,0.426152,0.109764,0.870639,0.753528,0.0439047,0.317626,0.767398,0.71092,0.458887,0.708274,0.139789,0.965735,0.235114,0.600649,0.915702,0.0231177,0.510285,0.344881,0.544188,0.0712261,0.719409,0.917626,0.215706,0.6444,0.962295,0.226377,0.777426,0.26932,0.907774,0.443977,0.365339,0.20699,0.548252,0.238912,0.398921,0.0450429,0.218169,0.39942,0.406001,0.0390345,0.487355,0.943296,0.121303,0.348124,0.938235,0.184008,0.684055,0.511559,0.727703,0.913402,0.256983,0.678559,0.145482,0.689051,0.276145,0.871931,0.801849,0.850151,0.905965,0.188875,0.785798,0.984926,0.779855,0.365098,0.461587,0.835496,0.285061,0.580074,0.102959,0.820402,0.489912,0.853025,0.279964,0.503682,|0.423714,0.210451,0.189015,0.647847,0.713207,0.388462,0.198948,0.167517,0.926759,0.118491,0.811278,0.589937,0.336173,0.576866,0.252367,0.993588,0.442189,0.642491,0.608544,0.80425,0.230834,0.362199,0.15224,0.554912,0.029201,0.557493,0.71159,0.340604,0.945738,0.125869,0.187976,0.953283,0.400159,0.64665,0.501062,0.78928,0.00558007,0.661552,0.736227,0.164491,0.520973,0.91388,0.66009,0.76956,0.667255,0.0329428,0.0448187,0.341078,0.423242,0.54421,0.289126,0.702739,0.107581,0.12754,0.447591,0.656004,0.815138,0.974947,0.781013,0.272575,0.7091,0.948516,0.362321,0.138713,0.459413,0.545522,0.52776,0.372706,0.884013,0.938365,0.219992,0.059051,0.785198,0.892206,0.638722,0.899408,0.604474,0.155131,0.991323,0.591438,0.214454,0.306416,0.828492,0.357551,0.662992,0.777771,0.691548,0.133245,0.505471,0.0594216,0.653966,0.98695,0.587148,0.227901,0.875626,0.308327,0.639819,0.581291,0.386491,0.321779,0.306514,0.937671,0.253108,0.964644,0.34565,0.0367718,0.490703,0.0533525,0.231486,0.940358,0.666761,0.447037,0.095787,0.562277,0.713795,0.25991,0.805788,0.0528067,0.388957,0.829926,0.862803,0.240455,0.590027,0.472794,0.671769,0.837498,0.574831,0.0492799,0.89511,0.892711,0.639502,0.268742,0.761101,0.295622,0.16248,0.907864,0.729403,0.168265,0.266268,0.590046,0.502303,0.811313,0.875795,0.0690753,0.332298,0.411368,0.973675,0.116718,0.996953,0.408996,0.210147,0.520136,0.22057,0.00921732,0.690586,0.314364,0.481,0.894257,0.925861,0.549173,0.732813,0.77944,0.640403,0.463239,0.108836,0.0146403,0.607374,0.662229,0.504639,0.836587,0.476127,0.567607,0.247343,0.262406,0.105573,0.281528,0.249856,0.823778,0.751382,0.965056,0.305092,0.497395,0.672529,0.816536,0.910399,0.717308,0.705414,0.299191,0.565113,0.173148,0.837485,0.826053,0.729313,0.466789,0.542276,0.421994,0.894836,0.0135256,0.997649,0.668152,0.136547,0.219537,0.638351,0.701289,0.954543,0.643323,0.281852,0.639994,0.527159,0.138763,0.208717,0.333328,0.646422,0.851879,0.847496,0.978753,0.188276,0.564905,0.0675809,0.352193,0.811836,0.0450355,0.820948,0.275475,0.914054,0.799431,0.382899,0.898221,0.828415,0.182071,0.569303,0.130763,0.355034,0.594815,0.453555,0.0391294,0.259846,0.973929,0.812479,0.655033,0.733931,0.900419,0.642188,0.52133,0.211804,0.175173,0.459296,0.807201,0.287379,0.72919,0.90287,0.877441,0.184608,0.973525,0.235935,0.119699,0.640642,0.518598,0.110016,0.681261,0.95672,0.94048,0.921362,0.546661,0.270493,0.876426,0.196392,0.0243883,0.392292,0.943369,0.875669,0.468858,0.588659,0.447983,0.627671,0.137551,0.402174,0.66661,0.936539,0.360316,0.155254,0.441502,0.858179,0.852251,0.730765,0.725352,0.43855,0.457305,0.911157,0.973837,0.926074,0.943392,0.300744,0.753186,0.244393,0.478677,0.182438,0.231651,0.196736,0.966692,0.936118,0.0788959,0.605764,0.384586,0.9345,0.399603,0.452024,0.0723099,0.675389,0.670521,0.711639,0.80969,0.242476,0.741714,0.436134,0.274244,0.747288,0.0918053,0.404043,0.40855,0.871318,0.674052,0.52401,0.534512,0.450635,0.284813,0.747112,0.53593,0.398284,0.347074,0.344596,0.0805476,0.636879,0.449115,0.270002,0.415928,0.8361,0.898373,0.60171,0.0269748,0.667185,0.509344,0.0137953,0.1728,0.613242,0.788923,0.810704,0.803152,0.880804,0.679208,0.870389,0.864752,0.21328,0.556642,0.168765,0.389456,0.941753,0.772465,0.240075,0.728638,0.828063,0.83617,0.0484805,0.241415,0.27223,0.757661,0.600533,0.450719,0.644473,0.99034,0.670604,0.797875,0.910242,0.0827922,0.0769628,0.921409,0.951423,0.0184281,0.265443,0.27457,0.305902,0.621904,0.425457,0.105196,0.452654,0.95118,0.993734,0.366878,0.855954,0.157846,0.758151,0.221052,0.23533,0.363933,0.925748,0.0649229,0.546852,0.973083,0.970693,0.864333,0.709933,0.966822,0.759513,0.49026,0.0845456,0.986976,0.358012,0.647896,0.11589,0.716756,0.169275,0.650171,0.684806,0.867572,0.62852,0.207926,0.240099,0.613151,0.76865,0.221554,0.485678,0.657294,0.417265,0.491296,0.403371,0.375343,0.340201,0.645068,0.309395,0.841043,0.114951,0.651336,0.177495,0.724819,0.757443,0.400451,0.55242,0.451867,0.0482724,0.927753,0.0303333,0.847557,0.378378,0.41344,0.235907,0.424862,0.910898,0.487518,0.453506,0.742897,0.288945,0.952302,0.263265,0.717802,0.213863,0.862725,0.0862172,0.944473,0.0571033,0.526357,0.440372,0.351383,0.267503,0.792421,0.418597,0.293621,0.909127,0.232044,0.120482,0.600449,0.303671,0.539324,0.334671,0.461936,0.222401,0.545898,0.862925,0.890088,0.270397,0.360625,0.493797,0.939331,0.503033,0.937861,0.191687,0.0636526,0.915642,0.729632,0.870497,0.196307,0.304209,0.470911,0.315496,0.160228,0.712688,0.5087,0.220195,0.709292,0.602592,0.34936,0.0546483,0.562607,0.806681,0.402031,0.555706,0.598105,0.262331,0.413668,0.0783893,0.631777,0.557269,0.239072,0.982965,0.404215,0.951837,0.398496,0.598285,0.908043,0.426703,0.33875,0.507691,0.967717,0.360539,0.52104,0.268278,0.736438,0.445631,0.901027,0.395039,0.687883,0.894898,0.790628,0.0212809,0.140395,0.502614,0.937111,0.765843,0.658058,0.172212,0.0115629,0.896685,0.52031,0.906662,0.541378,0.949546,0.226679,0.432643,0.332879,0.363495,0.195685,0.972344,0.764199,0.00550228,0.587448,0.942249,0.880272,0.469782,0.512179,0.0828277,0.975932,0.188674,0.315136,0.994225,0.0448701,0.0514352,0.39571,0.00454432,0.931947,0.541705,0.58981,0.558049,0.253394,0.674452,0.322055,0.0249213,0.689317,0.633476,0.958675,0.476029,0.735412,0.589299,0.41779,0.84429,0.727003,0.215832,0.653598,0.285968,0.694747,0.775073,0.324591,0.894974,0.445839,0.710596,0.907544,0.115576,0.439444,0.0107599,0.997037,0.829188,0.266964,0.779876,0.734575,0.132515,0.408081,0.782966,0.137013,0.526861,0.717123,0.489436,0.614383,0.0601212,0.00538313,0.644354,0.413169,0.280124,0.717702,0.446951,0.901257,0.261065,0.540068,0.649304,0.479996,0.877986,0.160666,0.479739,0.188254,0.463224,0.475309,0.558884,0.402647,0.517041,0.544206,0.548398,0.376098,0.259096,0.497522,0.788056,0.569155,0.823292,0.53578,0.65344,0.9572,0.442343,0.97002,0.107187,0.036792,0.583427,0.765485,0.0499279,0.0456603,0.968154,0.412585,0.202862,0.513384,0.228953,0.900211,0.827773,0.557981,0.248652,0.390727,0.896501,0.122002,0.267781,0.0598968,0.259708,0.236877,0.902065,0.320503,0.0338755,0.633569,0.631776,0.467627,0.524521,0.0431326,0.0823975,0.791453,0.594642,0.827836,0.814228,0.389505,0.586138,0.203354,0.710719,0.517891,0.48296,0.148441,0.0997432,0.432969,0.678649,0.741833,0.696372,0.0659662,0.0985079,0.799274,0.514922,0.701743,0.176471,0.0282235,0.781315,0.910217,0.768354,0.168352,0.947473,0.467155,0.989825,0.732003,0.305333,0.557302,0.302198,0.0929396,0.296146,0.333526,0.939289,0.712891,0.504349,0.659945,0.728048,0.35353,0.70149,0.429193,0.189682,0.413118,0.018061,0.972301,0.411538,0.775876,0.756596,0.816831,0.838934,0.560691,0.407986,0.796351,0.364438,0.950668,0.026742,0.762188,0.420649,0.276752,0.330835,0.423063,0.745982,0.880316,0.210868,0.142536,0.235649,0.102381,0.371983,0.0425692,0.575501,0.700639,0.503292,0.734778,0.839373,0.872513,0.45192,0.330446,0.378495,0.340794,0.35161,0.999137,0.443539,0.165748,0.176278,0.195467,0.523267,0.922724,0.262667,0.80227,0.307105,0.212528,0.604596,0.0656118,0.556786,0.91138,0.843461,0.719345,0.0736563,0.765638,0.937394,0.259443,0.603281,0.943113,0.697349,0.963032,0.0688397,0.212133,0.985253,0.637583,0.202384,0.680199,0.257777,0.614996,0.724757,0.831073,0.3373,0.0273366,0.369223,0.734978,0.356027,0.256007,0.742463,0.61064,0.637179,0.844597,0.782335,0.715798,0.931314,0.471436,0.968068,0.842736,0.112571,0.0165709,0.861468,0.318274,0.469621,0.0048244,0.184902,0.823099,0.974593,0.520242,0.224984,0.0242788,0.429457,0.0619899,0.27791,0.416949,0.0760747,0.811487,0.108836,0.276046,0.277489,0.581589,0.0980024,0.580918,0.483576,0.0534638,0.905635,0.0836184,0.852507,0.596256,0.680729,0.532472,0.542526,0.487704,0.753516,0.924732,0.788701,0.877662,0.58227,0.772844,0.688816,0.37038,0.549743,0.99149,0.698745,0.175262,0.487404,0.180505,0.131201,0.688317,0.798033,0.75241,0.759364,0.0527125,0.107921,0.20992,0.274902,0.638422,0.831447,0.512484,0.704788,0.747278,0.271914,0.0680484,0.511561,0.774073,0.0284235,0.367007,0.548015,0.348947,0.490181,0.270319,0.645704,0.457074,0.197997,0.0371637,0.825647,0.19571,0.678471,0.938441,0.02961,0.0942158,0.583392,0.738054,0.907795,0.939671,0.774952,0.157732,0.757108,0.882894,0.781553,0.705226,0.115634,0.185558,0.541551,0.137509,0.816841,0.396142,0.537311,0.0799213,0.360205,0.733476,0.552793,0.850975,0.419389,0.834423,0.445132,0.385626,0.307149,0.431359,0.444554,0.520901,0.246473,0.45954,0.926986,0.114664,0.318355,0.829851,0.951515,0.264789,0.51952,0.519761,0.797617,0.0372051,0.68967,0.182998,0.0341284,0.462656,0.105392,0.439202,0.19883,0.338395,0.178581,0.771853,0.6385,0.690772,0.44052,0.691286,0.502311,0.857661,0.332519,0.735872,0.395223,0.183341,0.955519,0.823402,0.381452,0.080008,0.56396,0.430961,0.745962,0.395665,0.579744,0.552054,0.66959,0.189248,0.980996,0.470363,0.169764,0.478826,0.74878,0.218547,0.21014,0.607985,0.182909,0.651043,0.29994,0.627351,0.714887,0.743854,0.199352,0.00653023,0.0835049,0.955494,0.264908,0.12676,0.579743,0.810257,0.295799,0.256833,0.885459,0.61675,0.368765,0.631433,0.902428,0.0398815,0.315438,0.417003,0.852519,0.702158,|0.427033,0.98674,0.0370761,0.611647,0.995615,0.0487514,0.162764,0.468552,0.464492,0.200621,0.513919,0.348325,0.49619,0.304968,0.850169,0.149412,0.536221,0.182553,0.91835,0.540693,0.728317,0.853762,0.147745,0.690646,0.832786,0.804161,0.560969,0.891104,0.149604,0.203279,0.68897,0.509335,0.664934,0.0607024,0.131502,0.493937,0.996154,0.866133,0.84345,0.734717,0.207101,0.810787,0.00170386,0.854564,0.262305,0.605976,0.945645,0.433191,0.891607,0.701387,0.250625,0.0861946,0.303412,0.218404,0.692217,0.00998616,0.779581,0.277101,0.968465,0.691089,0.332131,0.350514,0.983328,0.810656,0.374761,0.78188,0.272147,0.582594,0.698584,0.312937,0.410263,0.495813,0.36486,0.87645,0.330723,0.433314,0.914933,0.596098,0.00441629,0.111611,0.813555,0.864795,0.505569,0.846505,0.781987,0.127617,0.755315,0.831854,0.621787,0.159113,0.36195,0.491216,0.387541,0.510191,0.784712,0.934107,0.935618,0.567313,0.274688,0.751777,0.0507007,0.150571,0.735446,0.679925,0.51573,0.705893,0.328941,0.52946,0.593232,0.119467,0.960189,0.960699,0.404258,0.414005,0.276494,0.36849,0.388916,0.690523,0.475895,0.181831,0.28985,0.792871,0.818195,0.955534,0.0635992,0.335371,0.667126,0.953842,0.674764,0.29255,0.850591,0.759775,0.444733,0.112601,0.636257,0.0899463,0.773268,0.870128,0.674937,0.390738,0.196674,0.915869,0.263293,0.798521,0.369346,0.458859,0.361245,0.413378,0.166587,0.970749,0.274989,0.165684,0.14927,0.347003,0.592044,0.434176,0.0423954,0.87824,0.459632,0.144929,0.951271,0.900118,0.0271922,0.592223,0.83026,0.582933,0.246517,0.511912,0.234491,0.386819,0.847442,0.232098,0.528285,0.149325,0.487518,0.356912,0.987212,0.793252,0.224226,0.724369,0.859687,0.599038,0.623996,0.745355,0.927113,0.139286,0.667337,0.560606,0.609459,0.366488,0.357887,0.345392,0.751427,0.67072,0.888873,0.551034,0.637055,0.421096,0.635741,0.0769413,0.861111,0.463492,0.950865,0.427253,0.0151396,0.312988,0.385714,0.690287,0.948143,0.736138,0.955765,0.394909,0.183934,0.854042,0.857795,0.481908,0.374736,0.797227,0.219961,0.923486,0.109166,0.982456,0.773795,0.388274,0.400584,0.029231,0.440966,0.985157,0.350618,0.705007,0.0285575,0.276623,0.871841,0.345117,0.702267,0.292594,0.0149055,0.810597,0.284575,0.626353,0.232026,0.709289,0.479895,0.772771,0.698214,0.639953,0.718804,0.0262536,0.886036,0.855822,0.819384,0.722956,0.604008,0.480473,0.782174,0.608726,0.127966,0.356076,0.783968,0.961619,0.886377,0.42288,0.347055,0.362872,0.693215,0.62909,0.552807,0.614392,0.156918,0.475642,0.537669,0.885571,0.00513363,0.205946,0.814608,0.308999,0.600338,0.0835729,0.203016,0.642533,0.600204,0.999631,0.833714,0.47194,0.773518,0.486764,0.0525293,0.734628,0.877326,0.831661,0.130343,0.950286,0.190093,0.771471,0.272241,0.384359,0.0311651,0.57268,0.248081,0.181303,0.330368,0.670715,0.318318,0.918479,0.437075,0.817882,0.305251,0.196261,0.177974,0.0456963,0.165398,0.872131,0.600956,0.944208,0.758581,0.95454,0.312552,0.14058,0.743083,0.134374,0.149311,0.361532,0.238162,0.735233,0.176302,0.416828,0.40824,0.410553,0.0926234,0.217556,0.00170547,0.781096,0.942959,0.102067,0.225957,0.248981,0.429628,0.571732,0.257078,0.89376,0.195022,0.863418,0.149893,0.732808,0.95355,0.0599638,0.210834,0.101558,0.927455,0.980175,0.0818864,0.184723,0.531494,0.430859,0.487522,0.500166,0.278279,0.912174,0.823004,0.0889493,0.583527,0.788885,0.212025,0.965072,0.506469,0.992184,0.0721647,0.531258,0.868502,0.0252891,0.879593,0.642846,0.488938,0.101332,0.575169,0.994714,0.690511,0.832184,0.511618,0.481718,0.515109,0.797818,0.857583,0.188994,0.591883,0.90852,0.399893,0.76419,0.93943,0.585176,0.499689,0.900213,0.91571,0.433681,0.858851,0.432962,0.297129,0.617943,0.10273,0.451064,0.407962,0.210187,0.705184,0.670709,0.421863,0.807708,0.689436,0.590998,0.380091,0.473446,0.864749,0.8656,0.689502,0.160768,0.325924,0.319826,0.630091,0.00637203,0.976404,0.387134,0.7066,0.118098,0.469907,0.136732,0.395948,0.26141,0.217097,0.476151,0.40293,0.636546,0.523199,0.128525,0.749568,0.446173,0.0874334,0.790639,0.513938,0.783929,0.901982,0.204968,0.670365,0.263085,0.787554,0.630653,0.0771099,0.281627,0.348711,0.726686,0.0682319,0.0491365,0.798909,0.0672405,0.158009,0.265999,0.967537,0.918309,0.254306,0.0376081,0.140046,0.916165,0.133319,0.86621,0.138106,0.424434,0.86093,0.869026,0.105247,0.238515,0.267525,0.83243,0.135898,0.00413013,0.594835,0.283169,0.415821,0.332337,0.370691,0.86883,0.672311,0.860809,0.56315,0.750025,0.24955,0.0720253,0.461636,0.972652,0.501675,0.132804,0.699398,0.179286,0.883188,0.768629,0.442603,0.952573,0.107366,0.123736,0.379945,0.626744,0.846911,0.365941,0.269994,0.304973,0.270529,0.962073,0.636694,0.568551,0.360333,0.596208,0.482795,0.796013,0.847105,0.646436,0.456773,0.681212,0.0484062,0.363806,0.0409237,0.197472,0.342199,0.090821,0.319839,0.068786,0.242817,0.854916,0.522484,0.420424,0.756468,0.426658,0.486159,0.0567092,0.634276,0.119768,0.269208,0.949746,0.162943,0.575341,0.209934,0.703546,0.242485,0.106392,0.392284,0.575725,0.942091,0.519715,0.295724,0.116555,0.923218,0.816205,0.0509977,0.47752,0.610934,0.255164,0.0705216,0.0939405,0.995987,0.77307,0.393867,0.239222,0.526894,0.85453,0.562532,0.886428,0.27756,0.804121,0.289128,0.244073,0.497986,0.216577,0.163743,0.467295,0.0229518,0.405671,0.256257,0.340201,0.636838,0.0992424,0.182561,0.603529,0.703337,0.710372,0.232684,0.377064,0.260653,0.884997,0.416097,0.836033,0.474633,0.904439,0.681974,0.633809,0.334927,0.300861,0.54104,0.0911325,0.161538,0.435792,0.318695,0.970149,0.928606,0.867581,0.389713,0.122473,0.751685,0.15144,0.374334,0.662996,0.101579,0.379461,0.0606574,0.58968,0.10292,8.52346e-05,0.95617,0.157702,0.543895,0.219727,0.890172,0.384037,0.236719,0.818581,0.532203,0.376737,0.309611,0.259541,0.845631,0.801801,0.203195,0.0354579,0.353001,0.626165,0.127797,0.389464,0.775015,0.545258,0.66787,0.959093,0.69284,0.65898,0.879216,0.965081,0.866462,0.333976,0.479901,0.405881,0.66634,0.016082,0.684367,0.854079,0.97741,0.599599,0.716606,0.870952,0.779307,0.70265,0.802886,0.270676,0.02587,0.222944,0.952975,0.345065,0.799998,0.654691,0.578087,0.979253,0.106336,0.745412,0.46766,0.157074,0.642244,0.258456,0.584154,0.470477,0.0807741,0.380315,0.787119,0.548373,0.360361,0.52472,0.738613,0.574107,0.555069,0.716015,0.479484,0.518505,0.338009,0.928058,0.970606,0.749927,0.538266,0.935853,0.842837,0.90997,0.437834,0.447081,0.915175,0.0158073,0.351772,0.846545,0.460695,0.23008,0.440205,0.796341,0.170459,0.899906,0.671047,0.769997,0.754332,0.956548,0.259295,0.205526,0.899951,0.196384,0.235146,0.533007,0.260752,0.188782,0.457577,0.738926,0.803532,0.848956,0.901933,0.69257,0.472773,0.53655,0.86608,0.734306,0.705848,0.108472,0.653715,0.0904853,0.797912,0.142971,0.466885,0.226671,0.178671,0.228282,0.606151,0.0676525,0.469124,0.354674,0.779254,0.811419,0.527952,0.785745,0.509473,0.270723,0.98604,0.878281,0.402125,0.856365,0.867764,0.898127,0.949592,0.617767,0.127155,0.95443,0.315531,0.733427,0.749199,0.441902,0.823792,0.324431,0.0375405,0.145434,0.472544,0.538045,0.0977886,0.846047,0.647062,0.906166,0.955643,0.329296,0.334694,0.0629295,0.960568,0.895058,0.443691,0.577942,0.940186,0.430893,0.530977,0.128789,0.711493,0.971845,0.778733,0.798197,0.119522,0.829943,0.390701,0.0618454,0.741417,0.745319,0.484951,0.156844,0.882108,0.925405,0.094271,0.088385,0.369351,0.818836,0.27122,0.667917,0.966729,0.321503,0.452594,0.45251,0.800011,0.901164,0.188581,0.0164401,0.325226,0.528511,0.375184,0.0964349,0.221737,0.871444,0.642891,0.878563,0.32106,0.504209,0.352903,0.7949,0.954064,0.00278342,0.292943,0.224217,0.344011,0.350306,0.653982,0.41756,0.495366,0.409651,0.379989,0.627222,0.276664,0.624349,0.4613,0.585834,0.766268,0.645473,0.411799,0.794679,0.452811,0.565738,0.0298005,0.91178,0.121446,0.518279,0.0347436,0.683125,0.807081,0.193363,0.767815,0.558033,0.649178,0.963536,0.511234,0.520587,0.352148,0.954945,0.723448,0.0907838,0.264975,0.107402,0.266427,0.0880453,0.96067,0.887427,0.74299,0.95008,0.717734,0.0436747,0.035678,0.561958,0.951806,0.940586,0.422713,0.144119,0.0251498,0.139664,0.588924,0.482296,0.165771,0.623907,0.128133,0.793404,0.150819,0.260881,0.645367,0.357952,0.121796,0.559662,0.0188673,0.281526,0.0168699,0.190187,0.773678,0.162607,0.814762,0.283263,0.908239,0.891466,0.279113,0.295997,0.65587,0.37005,0.644556,0.0926215,0.793253,0.532038,0.0926655,0.665946,0.709701,0.285913,0.447831,0.00426626,0.991988,0.166212,0.224847,0.721323,0.736484,0.156938,0.223265,0.0199834,0.275979,0.85774,0.209139,0.643166,0.902592,0.866812,0.847224,0.0784706,0.653884,0.672372,0.557035,0.644188,0.988828,0.993464,0.855482,0.161087,0.809307,0.372225,0.833517,0.131904,0.396501,0.187031,0.124752,0.623547,0.00658894,0.15374,0.169125,0.690513,0.0861553,0.21753,0.309495,0.483932,0.443761,0.564013,0.443676,0.574793,0.26223,0.351037,0.936114,0.397463,0.431806,0.0362291,0.180632,0.320209,0.758597,0.53418,0.590907,0.115304,0.0561116,0.614048,0.988509,0.405289,0.436545,0.0569065,0.624899,0.0332251,0.360359,0.251763,0.232623,0.967627,0.246129,0.590807,0.527344,0.236925,0.860226,0.265868,0.857394,0.659112,0.744973,0.531523,0.221391,0.951532,0.185689,0.703862,0.710205,0.396116,|0.653022,0.889607,0.0728834,0.436768,0.45015,0.267834,0.150665,0.229896,0.610222,0.809244,0.922819,0.0798902,0.276052,0.780147,0.852441,0.0660719,0.784464,0.392309,0.382808,0.635301,0.721199,0.96516,0.652245,0.907156,0.351104,0.569265,0.0944244,0.466401,0.157334,0.73473,0.716569,0.173251,0.189342,0.223223,0.493524,0.187384,0.0344461,0.120722,0.0268185,0.944275,0.455833,0.0113558,0.147323,0.25251,0.402962,0.221674,0.304964,0.670442,0.262795,0.912371,0.559923,0.663096,0.356193,0.78253,0.534436,0.434124,0.0369986,0.524705,0.835888,0.353516,0.153335,0.223514,0.45185,0.721535,0.794811,0.499266,0.808208,0.521007,0.695897,0.472747,0.622218,0.643988,0.0331957,0.364662,0.100053,0.296562,0.531033,0.634754,0.614886,0.762633,0.87676,0.93699,0.469992,0.0376962,0.576384,0.892997,0.151384,0.00250512,0.978962,0.462925,0.611492,0.938968,0.717124,0.266803,0.318922,0.526494,0.132893,0.686428,0.205185,0.724848,0.746605,0.509513,0.246039,0.180555,0.85135,0.768398,0.021161,0.0618623,0.709236,0.438318,0.679798,0.150628,0.518103,0.659599,0.451801,0.05645,0.789336,0.114951,0.540694,0.0878862,0.160043,0.717338,0.255619,0.48359,0.872978,0.126764,0.423048,0.274692,0.915103,0.3404,0.133294,0.947302,0.122527,0.130527,0.24683,0.966086,0.679868,0.104268,0.314452,0.300003,0.319213,0.768283,0.299757,0.144917,0.13934,0.650605,0.133848,0.520649,0.243772,0.330722,0.266385,0.443671,0.520547,0.105847,0.375384,0.891768,0.536315,0.0356078,0.595155,0.199876,0.282809,0.282595,0.197905,0.944291,0.913004,0.2404,0.487841,0.60186,0.272817,0.522169,0.279593,0.789584,0.959364,0.899386,0.0163022,0.177971,0.596627,0.876526,0.760853,0.136829,0.13855,0.46567,0.627697,0.422078,0.482021,0.678063,0.146602,0.0841745,0.0519881,0.221248,0.662156,0.193714,0.336887,0.793742,0.546884,0.529794,0.704565,0.725046,0.839188,0.246804,0.53377,0.555406,0.749463,0.735261,0.98467,0.949613,0.97591,0.258218,0.600684,0.12556,0.653811,0.134924,0.723217,0.273917,0.589864,0.222623,0.857077,0.751664,0.672298,0.469288,0.295897,0.207625,0.956885,0.341153,0.497827,0.0684433,0.910921,0.299723,0.0401009,0.912948,0.475972,0.786611,0.25805,0.627976,0.569695,0.798928,0.582422,0.947437,0.00763905,0.833302,0.878477,0.546192,0.250677,0.353491,0.504722,0.324128,0.885745,0.974395,0.649929,0.273405,0.459408,0.211397,0.867,0.285876,0.0370117,0.52398,0.252205,0.864352,0.925925,0.601918,0.310781,0.945646,0.41121,0.103172,0.275001,0.785053,0.681273,0.527244,0.133948,0.973197,0.696024,0.174069,0.677384,0.4062,0.0248188,0.84525,0.768048,0.258903,0.29232,0.485039,0.776644,0.355045,0.163456,0.415578,0.653539,0.0703563,0.43809,0.427931,0.338996,0.333841,0.873771,0.196632,0.0948938,0.652136,0.625218,0.964309,0.960621,0.962889,0.403097,0.472872,0.560345,0.174787,0.118518,0.714085,0.164833,0.224639,0.575692,0.419953,0.308773,0.266674,0.771662,0.430427,0.0821485,0.839449,0.347481,0.958394,0.0880018,0.971952,0.570269,0.878859,0.217268,0.982919,0.808564,0.527183,0.370129,0.24301,0.219328,0.193979,0.128225,0.479323,0.0438865,0.054509,0.00440896,0.374664,0.946043,0.0733033,0.954333,0.464003,0.443538,0.334509,0.499454,0.0690058,0.406135,0.899222,0.548459,0.238907,0.954268,0.599572,0.0798526,0.625195,0.540672,0.225448,0.266654,0.0458196,0.707566,0.856309,0.353403,0.999675,0.154809,0.629622,0.61033,0.761725,0.00583404,0.197413,0.652177,0.144282,0.92868,0.4939,0.187768,0.636949,0.15179,0.203875,0.849533,0.833563,0.30097,0.801275,0.131197,0.62573,0.659117,0.854632,0.840081,0.10122,0.13437,0.439373,0.151208,0.550556,0.519985,0.37213,0.534296,0.231132,0.453908,0.446463,0.165878,0.285902,0.611785,0.489796,0.264215,0.955867,0.0520266,0.473421,0.841044,0.356744,0.557738,0.469216,0.690032,0.792082,0.755616,0.956963,0.143276,0.518305,0.355376,0.567356,0.0756575,0.587735,0.823798,0.0520238,0.576858,0.442841,0.187024,0.829273,0.471519,0.333259,0.750607,0.373167,0.790446,0.134095,0.217072,0.0111309,0.745323,0.301086,0.602361,0.508632,0.626723,0.575403,0.329651,0.884831,0.699248,0.120665,0.855082,0.127785,0.021917,0.656968,0.76205,0.888026,0.780534,0.76504,0.119434,0.807511,0.0804441,0.701572,0.0679865,0.596201,0.872307,0.489508,0.689259,0.554402,0.307567,0.564427,0.481311,0.229008,0.0992265,0.366729,0.674769,0.556796,0.6067,0.525006,0.46343,0.0139384,0.829976,0.391264,0.728369,0.744322,0.607339,0.341986,0.508877,0.587386,0.0606781,0.333631,0.0410114,0.934857,0.968055,0.732657,0.584858,0.876346,0.406773,0.261517,0.236644,0.0711886,0.954734,0.817728,0.0554225,0.831089,0.499611,0.73801,0.923503,0.723373,0.803657,0.815422,0.642734,0.277365,0.344014,0.320637,0.439306,0.779372,0.191084,0.437613,0.976793,0.640943,0.6495,0.629552,0.931544,0.887008,0.753931,0.998067,0.810558,0.974383,0.54122,0.261623,0.382067,0.063954,0.576553,0.780959,0.599904,0.99657,0.84119,0.581267,0.354759,0.814984,0.0145742,0.655022,0.169564,0.228856,0.734049,0.0162341,0.628841,0.938514,0.00392509,0.101641,0.246982,0.033082,0.0136784,0.993116,0.244806,0.973897,0.600362,0.387445,0.102524,0.408758,0.40797,0.401384,0.525558,0.755483,0.116471,0.573391,0.989401,0.820693,0.671287,0.946253,0.74937,0.51912,0.269725,0.907804,0.3805,0.387013,0.901149,0.910847,0.698554,0.785095,0.606539,0.374292,0.138717,0.879288,0.023867,0.387818,0.297167,0.284221,0.152782,0.355604,0.456209,0.049176,0.344022,0.439419,0.312814,0.818688,0.573836,0.479027,0.202896,0.378804,0.605531,0.564818,0.998108,0.445652,0.45217,0.0989017,0.0927566,0.0959529,0.68729,0.72763,0.2319,0.0982665,0.526111,0.385329,0.662081,0.074261,0.441813,0.784922,0.911152,0.125061,0.478284,0.883337,0.161481,0.282622,0.251128,0.708657,0.737379,0.903417,0.479176,0.673858,0.768313,0.777781,0.182773,0.146291,0.880818,0.99525,0.643014,0.687315,0.766995,0.469463,0.666448,0.243825,0.748656,0.37488,0.608546,0.749986,0.650494,0.174385,0.656011,0.0270964,0.314563,0.181734,0.027256,0.970168,0.512971,0.282159,0.582181,0.883622,0.0628603,0.502471,0.470959,0.481446,0.237953,0.93384,0.219242,0.067237,0.723477,0.899817,0.170135,0.814591,0.799853,0.442864,0.74684,0.759398,0.848789,0.467226,0.261521,0.975135,0.695743,0.643819,0.430028,0.792974,0.239249,0.647577,0.348421,0.0998852,0.919174,0.486772,0.95229,0.493542,0.368931,0.275687,0.610238,0.999934,0.113349,0.407398,0.0377063,0.664579,0.626567,0.825019,0.534223,0.42659,0.939087,0.188063,0.630094,0.895362,0.930465,0.312044,0.185882,0.576643,0.682616,0.64868,0.329519,0.0752933,0.41667,0.692067,0.796736,0.254228,0.379814,0.847638,0.516257,0.734435,0.412088,0.391726,0.817785,0.844479,0.887088,0.160764,0.0155182,0.610973,0.0623245,0.616953,0.223604,0.820413,0.369631,0.166973,0.665123,0.0200241,0.503214,0.00126898,0.196161,0.671496,0.253227,0.424778,0.0679165,0.636223,0.466617,0.765711,0.334916,0.846961,0.78728,0.256034,0.566174,0.512515,0.757613,0.427301,0.0829186,0.697176,0.688832,0.358212,0.84749,0.907709,0.0334238,0.576914,0.904105,0.115489,0.890554,0.608305,0.843864,0.71288,0.266904,0.784151,0.395042,0.442214,0.96665,0.901064,0.285393,0.818638,0.238927,0.780572,0.795796,0.328807,0.545008,0.198068,0.522506,0.47236,0.515138,0.223203,0.32847,0.100009,0.622091,0.255663,0.492061,0.551569,0.856708,0.981535,0.991721,0.0572996,0.43946,0.262143,0.309179,0.926154,0.134637,0.997483,0.264434,0.885938,0.326088,0.211483,0.351486,0.86029,0.937769,0.273167,0.677254,0.97531,0.528156,0.911341,0.530834,0.104972,0.904548,0.772436,0.486741,0.56912,0.802127,0.812315,0.796989,0.377427,0.0350184,0.150953,0.625698,0.151913,0.65619,0.946253,0.908697,0.81839,0.507299,0.595737,0.169915,0.186174,0.582537,0.800314,0.843206,0.56082,0.0824038,0.527615,0.160172,0.318988,0.427747,0.542036,0.119877,0.998046,0.389804,0.632244,0.284515,0.726872,0.533414,0.543713,0.221694,0.563628,0.183595,0.562918,0.214567,0.0540929,0.441891,0.27025,0.267745,0.545752,0.776894,0.239152,0.297726,0.0553042,0.293466,0.207626,0.63801,0.922795,0.0892395,0.924216,0.264814,0.855161,0.750081,0.26801,0.784823,0.765088,0.527285,0.755644,0.202304,0.717129,0.489398,0.792471,0.520939,0.141921,0.145436,0.0684458,0.380873,0.357467,0.969882,0.878892,0.993494,0.323735,0.821263,0.184909,0.591914,0.79635,0.653039,0.321968,0.577383,0.303203,0.995345,0.0564221,0.546458,0.958967,0.00752908,0.912498,0.55149,0.620809,0.838281,0.576082,0.921255,0.463229,0.30384,0.148715,0.658565,0.563128,0.421578,0.488161,0.783337,0.563279,0.986766,0.94081,0.65314,0.45925,0.522946,0.387288,0.73194,0.306306,0.434405,0.939129,0.365028,0.2987,0.885423,0.00567526,0.291447,0.630608,0.121945,0.360506,0.32848,0.419401,0.675194,0.357315,0.880223,0.960083,0.638553,0.526079,0.986546,0.198595,0.478581,0.979641,0.171066,0.96792,0.465494,0.331488,0.246629,0.420613,0.194125,0.332509,0.291426,0.336129,0.146691,0.299778,0.487773,0.373916,0.988231,0.179071,0.276169,0.644134,0.948897,0.941978,0.204714,0.13667,0.0619836,0.122739,0.216101,0.248913,0.478369,0.593041,0.915119,0.449605,0.595259,0.978578,0.208918,0.269539,0.773949,0.0790373,0.387112,0.512381,0.713773,0.15066,0.675838,0.0468503,0.850526,0.638498,0.331257,0.51627,0.11134,0.70368,0.670974,0.612134,0.324877,0.735821,0.202688,0.413551,0.916963,0.364455,|0.166625,0.148929,0.180594,0.49372,0.22413,0.737977,0.936428,0.23632,0.530564,0.106416,0.792111,0.383315,0.522798,0.684317,0.519606,0.0819081,0.87726,0.785298,0.204643,0.745937,0.895334,0.874728,0.467322,0.3294,0.264511,0.215037,0.111697,0.635425,0.737055,0.0630406,0.354283,0.428995,0.533406,0.140855,0.986622,0.6156,0.911568,0.397425,0.2223,0.322686,0.0589254,0.864521,0.394906,0.972652,0.554005,0.810246,0.978897,0.196127,0.655846,0.442596,0.155303,0.540036,0.633255,0.736124,0.815664,0.0487162,0.895832,0.835691,0.37454,0.994056,0.424324,0.0415592,0.667482,0.896671,0.836582,0.0560911,0.674097,0.565152,0.460629,0.951443,0.521048,0.791619,0.866609,0.405682,0.596293,0.429779,0.496067,0.783316,0.668288,0.307849,0.129172,0.0758521,0.246016,0.70245,0.962471,0.645925,0.811101,0.253378,0.201313,0.510296,0.466895,0.68541,0.824349,0.918699,0.239463,0.946027,0.0186623,0.985176,0.51518,0.389693,0.776043,0.371748,0.840737,0.849173,0.965341,0.10184,0.528241,0.594802,0.464987,0.752811,0.863534,0.942118,0.262742,0.833926,0.67583,0.00122893,0.0982752,0.793377,0.754675,0.333369,0.515265,0.509712,0.729336,0.780716,0.290736,0.06995,0.111079,0.542331,0.563541,0.508942,0.953525,0.089165,0.0775281,0.475017,0.367052,0.636164,0.347754,0.553233,0.411253,0.325175,0.224147,0.223114,0.583001,0.498648,0.425056,0.230579,0.058479,0.377685,0.644287,0.2436,0.207847,0.436775,0.845026,0.11764,0.840336,0.168651,0.787081,0.580926,0.699041,0.82648,0.69143,0.752423,0.837693,0.943643,0.340881,0.582585,0.89351,0.971259,0.606906,0.839355,0.0582641,0.24779,0.954575,0.405357,0.338025,0.862962,0.775327,0.48973,0.336989,0.21694,0.311898,0.799107,0.605928,0.958716,0.934747,0.407902,0.349447,0.998868,0.352171,0.944909,0.101272,0.44772,0.440189,0.610497,0.027747,0.535203,0.90171,0.364,0.144069,0.905032,0.254473,0.589754,0.10518,0.585729,0.749017,0.281799,0.31231,0.184874,0.345387,0.379804,0.0277643,0.952215,0.33305,0.879504,0.920752,0.660538,0.739352,0.249684,0.766641,0.160267,0.039301,0.130112,0.833601,0.0752822,0.79637,0.360065,0.577188,0.311426,0.959882,0.102835,0.530094,0.730984,0.548321,0.030232,0.497443,0.166962,0.758429,0.794832,0.746337,0.875799,0.418802,0.146557,0.817896,0.674812,0.608533,0.271808,0.46535,0.0944181,0.468956,0.557704,0.509748,0.191725,0.86655,0.621879,0.653572,0.323403,0.279687,0.242929,0.860591,0.486151,0.219851,0.0956986,0.372413,0.658471,0.209576,0.588957,0.65227,0.977687,0.003654,0.362652,0.819659,0.347469,0.518274,0.904242,0.0452347,0.162238,0.893555,0.107388,0.861849,0.724298,0.340641,0.863428,0.343217,0.640928,0.808383,0.94925,0.588051,0.303794,0.731833,0.369676,0.514213,0.111391,0.19795,0.162482,0.616592,0.643614,0.0951731,0.566401,0.554828,0.804346,0.182409,0.14666,0.15811,0.279009,0.865574,0.829955,0.698668,0.150785,0.418803,0.910685,0.632985,0.0579712,0.305187,0.891484,0.531734,0.737366,0.913614,0.549639,0.945271,0.271614,0.770987,0.815599,0.687012,0.815968,0.405954,0.756038,0.820239,0.550455,0.379052,0.862819,0.889387,0.165178,0.604268,0.832466,0.270972,0.985816,0.402812,0.491986,0.422443,0.154157,0.835678,0.969536,0.0732253,0.265337,0.18556,0.394856,0.732464,0.32742,0.205075,0.487652,0.27023,0.660996,0.554481,0.864216,0.962859,0.0300339,0.439485,0.878466,0.331162,0.314883,0.307038,0.611759,0.26178,0.0729186,0.784147,0.739904,0.928829,0.0031634,0.0428995,0.706896,0.844944,0.525673,0.45804,0.00154382,0.716755,0.411186,0.724457,0.627153,0.410376,0.0877367,0.144883,0.603148,0.960171,0.223675,0.802187,0.152026,0.585311,0.277666,0.0289636,0.725999,0.472254,0.747206,0.988486,0.154033,0.187724,0.783257,0.473294,0.0571652,0.669453,0.706474,0.740038,0.636218,0.614701,0.209373,0.747501,0.0224842,0.163904,0.335142,0.141498,0.479549,0.446656,0.813917,0.610825,0.130063,0.819676,0.490724,0.227881,0.777391,0.638055,0.791088,0.44032,0.0242208,0.799377,0.40365,0.0547194,0.855895,0.0156074,0.96215,0.780039,0.739124,0.977976,0.526598,0.685007,0.502062,0.314405,0.476863,0.192101,0.87694,0.762403,0.802426,0.181483,0.577106,0.552218,0.636392,0.632098,0.6398,0.948427,0.549591,0.100971,0.564731,0.464487,0.142138,0.561204,0.104212,0.291231,0.493517,0.115771,0.347311,0.121123,0.730656,0.563667,0.284203,0.460772,0.696807,0.383322,0.487828,0.708534,0.572419,0.740834,0.363277,0.492586,0.796867,0.9074,0.0963932,0.602428,0.0676187,0.692536,0.0695847,0.0240875,0.825451,0.819157,0.123591,0.497039,0.718662,0.0987365,0.868147,0.312982,0.635757,0.746339,0.749419,0.390058,0.190148,0.865876,0.861491,0.930632,0.0258458,0.952087,0.17835,0.863966,0.29575,0.500804,0.00454789,0.178697,0.244935,0.470762,0.563214,0.912845,0.986455,0.50625,0.624906,0.359899,0.169589,0.865841,0.236923,0.807584,0.860164,0.590442,0.761799,0.787865,0.834519,0.948101,0.939573,0.802076,0.735524,0.126454,0.230341,0.662951,0.921178,0.282914,0.654848,0.777543,0.125221,0.515245,0.350359,0.172706,0.773908,0.249585,0.83595,0.362402,0.271855,0.181307,0.206698,0.0633973,0.465151,0.141818,0.735567,0.698937,0.497704,0.519888,0.00288653,0.0761371,0.235317,0.731691,0.562442,0.119209,0.0627532,0.214109,0.804288,0.550965,0.1876,0.846486,0.307397,0.310998,0.485574,0.0191108,0.524592,0.577114,0.390795,0.972359,0.908587,0.076148,0.643243,0.426721,0.900842,0.717908,0.255303,0.499,0.939087,0.663815,0.695101,0.29787,0.0256936,0.502917,0.920507,0.170511,0.436144,0.128147,0.911746,0.230218,0.959256,0.645782,0.665244,0.133988,0.0873774,0.478159,0.86057,0.32153,0.603358,0.895645,0.276117,0.597068,0.947583,0.263008,0.801677,0.645557,0.0913715,0.271088,0.203935,0.605558,0.494603,0.011417,0.542814,0.179357,0.0864873,0.681017,0.153328,0.851045,0.860585,0.837039,0.553562,0.0392342,0.202458,0.229577,0.666701,0.646297,0.610029,0.856535,0.514527,0.429622,0.523195,0.323935,0.384389,0.292154,0.0244049,0.0451382,0.909058,0.657027,0.840435,0.592496,0.794869,0.689876,0.0187631,0.518713,0.670978,0.860658,0.10814,0.899404,0.406571,0.49113,0.0266874,0.466057,0.887776,0.525669,0.627451,0.192403,0.264407,0.934747,0.774877,0.265118,0.558996,0.25261,0.899014,0.074145,0.48284,0.172232,0.757494,0.925204,0.545462,0.131646,0.0969733,0.658986,0.595303,0.53563,0.903949,0.30527,0.863362,0.755885,0.45487,0.155789,0.244863,0.178664,0.722089,0.446523,0.812867,0.315934,0.167861,0.65751,0.288893,0.572499,0.0961607,0.126268,0.807366,0.790741,0.950549,0.352273,0.781096,0.38309,0.325372,0.430888,0.569605,0.434332,0.432474,0.371595,0.628356,0.41146,0.432419,0.398532,0.265635,0.0943082,0.483282,0.278072,0.203057,0.216166,0.704059,0.514055,0.922898,0.212324,0.834389,0.0648127,0.787001,0.648754,0.573568,0.101704,0.594168,0.321187,0.945796,0.132873,0.714973,0.0913161,0.217745,0.52592,0.0416902,0.255459,0.760113,0.00801122,0.4399,0.150022,0.992545,0.361471,0.108257,0.509773,0.855963,0.967047,0.279471,0.389144,0.847048,0.00152421,0.259313,0.193458,0.161283,0.716739,0.387976,0.769579,0.847491,0.441165,0.511277,0.594631,0.849512,0.825547,0.0616992,0.731797,0.336546,0.980227,0.572225,0.837467,0.00572085,0.0386039,0.12007,0.889109,0.517849,0.466017,0.120363,0.715247,0.265371,0.441735,0.834767,0.130199,0.0399556,0.869199,0.0823129,0.615079,0.572439,0.902867,0.567452,0.266144,0.374841,0.385629,0.980611,0.516619,0.219023,0.132408,0.793526,0.176314,0.562668,0.867526,0.209758,0.83141,0.231506,0.517347,0.235334,0.299234,0.814668,0.32888,0.0132486,0.293167,0.0851145,0.484008,0.506356,0.263371,0.0757918,0.981423,0.29937,0.705605,0.272246,0.639866,0.5398,0.885378,0.312023,0.600535,0.624449,0.502462,0.668738,0.502319,0.0353032,0.195193,0.439031,0.0214893,0.605272,0.122775,0.0793706,0.711091,0.319845,0.188669,0.801986,0.664175,0.102395,0.0483602,0.812853,0.0145741,0.138406,0.921746,0.0521966,0.64906,0.736544,0.786608,0.66634,0.544552,0.2975,0.592161,0.235401,0.454091,0.334554,0.324415,0.410581,0.441108,0.734415,0.232631,0.775445,0.600477,0.66466,0.628978,0.994508,0.702608,0.568183,0.928824,0.315193,0.312043,0.241131,0.819626,0.050609,0.308422,0.631514,0.203113,0.557735,0.802625,0.505484,0.191392,0.570082,0.735577,0.614397,0.973417,0.376061,0.840145,0.967711,0.117937,0.0195891,0.379442,0.118183,0.919095,0.123,0.726696,0.632879,0.895292,0.456772,0.0663521,0.900753,0.854356,0.471883,0.817497,0.29254,0.256076,0.788888,0.186627,0.471971,0.316086,0.0207824,0.72349,0.896361,0.989219,0.388171,0.21967,0.305791,0.404976,0.927979,0.187335,0.115769,0.56166,0.502655,0.999656,0.58665,0.42896,0.163168,0.100817,0.614155,0.0131239,0.249717,0.765743,0.29544,0.0032208,0.519634,0.473843,0.204616,0.982519,0.427302,0.72634,0.845101,0.0857812,0.659836,0.584055,0.676698,0.971906,0.670517,0.290352,0.802551,0.357021,0.742953,0.0156083,0.486478,0.158553,0.947431,0.632499,0.753049,0.218186,0.811171,0.847452,0.0273097,0.121907,0.411508,0.319462,0.206316,0.415514,0.49661,0.996433,0.191664,0.176315,0.821676,0.638682,0.229287,0.562131,0.396601,0.739864,0.455061,0.791122,0.769319,0.428658,0.893679,0.00203919,0.807927,0.735101,0.68963,0.174643,0.564374,0.723441,0.553708,0.334782,0.901725,0.959696,0.691546,0.0609136,0.654513,0.734771,0.860228,0.42423,0.838526,0.835103,0.137721,0.0721018,0.682219,0.517696,0.0279927,|0.531603,0.362946,0.675259,0.800763,0.480022,0.403262,0.346588,0.0562965,0.977862,0.209921,0.440387,0.935959,0.941329,0.253584,0.339352,0.307546,0.957519,0.528333,0.474977,0.0289686,0.235534,0.941033,0.83407,0.964545,0.0691605,0.169431,0.404906,0.85385,0.326344,0.00419348,0.604647,0.0822186,0.621611,0.683069,0.601575,0.121283,0.50985,0.176686,0.154806,0.778197,0.981335,0.318389,0.717691,0.892543,0.811796,0.502425,0.236806,0.215888,0.340103,0.0149018,0.0768318,0.110377,0.900579,0.952786,0.41033,0.184155,0.620263,0.07266,0.21854,0.738021,0.247162,0.413743,0.124696,0.941229,0.91205,0.19092,0.925518,0.934534,0.329646,0.0120142,0.177217,0.284787,0.0876492,0.419642,0.0118452,0.371475,0.285875,0.189895,0.580372,0.220494,0.231962,0.777705,0.828569,0.837926,0.702237,0.681219,0.143743,0.0538997,0.891244,0.0999647,0.885661,0.068643,0.184102,0.499697,0.150525,0.439043,0.0783598,0.945286,0.397033,0.054328,0.339857,0.529568,0.86299,0.720903,0.626426,0.579721,0.402441,0.599943,0.917802,0.789419,0.255807,0.501086,0.49503,0.529559,0.908936,0.180127,0.0703745,0.602908,0.326947,0.602428,0.326846,0.965259,0.680977,0.965712,0.189352,0.367574,0.182551,0.872828,0.681685,0.0672156,0.386444,0.85658,0.895716,0.373685,0.558419,0.534428,0.964206,0.654959,0.0583172,0.627756,0.254657,0.618503,0.379479,0.0585927,0.637552,0.96392,0.686091,0.696105,0.709735,0.0545169,0.73991,0.111648,0.0874441,0.085705,0.976002,0.456747,0.131461,0.63861,0.552249,0.78124,0.229967,0.550629,0.225331,0.376535,0.239605,0.445978,0.717706,0.574468,0.173644,0.412058,0.106664,0.370668,0.37023,0.0902147,0.0539727,0.47711,0.937549,0.492538,0.927031,0.82446,0.189125,0.934578,0.679947,0.0379265,0.398851,0.483862,0.566692,0.72091,0.637494,0.633253,0.721616,0.540121,0.231842,0.555607,0.919761,0.948336,0.320752,0.615364,0.36851,0.641273,0.928516,0.904075,0.345095,0.916321,0.768833,0.99229,0.211423,0.598072,0.480869,0.326768,0.911803,0.092068,0.986241,0.781786,0.575191,0.811229,0.831424,0.714784,0.647399,0.560871,0.789291,0.716787,0.568283,0.442854,0.514727,0.54479,0.909525,0.409652,0.874261,0.258155,0.336091,0.642525,0.688569,0.839632,0.921918,0.690056,0.230355,0.833642,0.319419,0.970368,0.284309,0.199266,0.574115,0.981364,0.638041,0.448596,0.191112,0.0925649,0.388713,0.489174,0.552226,0.344351,0.356082,0.651474,0.967717,0.427029,0.158026,0.0697228,0.634978,0.580849,0.201215,0.455557,0.413736,0.00565714,0.0422782,0.743938,0.380636,0.796501,0.493539,0.665372,0.88329,0.21958,0.185508,0.183769,0.896829,0.893212,0.100944,0.411025,0.220926,0.606122,0.554757,0.799421,0.878585,0.0699803,0.454574,0.121858,0.758683,0.251892,0.285946,0.0665392,0.0795307,0.526758,0.743846,0.168525,0.150417,0.794869,0.903275,0.0556168,0.567359,0.909006,0.379872,0.522834,0.709394,0.356619,0.0393366,0.491398,0.125252,0.538156,0.631616,0.329179,0.880586,0.607464,0.672069,0.163687,0.267924,0.929257,0.166361,0.0820213,0.0504019,0.701045,0.578285,0.0412422,0.67297,0.717558,0.41065,0.0607719,0.452581,0.134955,0.638794,0.24511,0.756576,0.976345,0.675833,0.565419,0.634976,0.307564,0.731634,0.23022,0.417026,0.139448,0.951441,0.113376,0.0632147,0.356823,0.383963,0.835101,0.0457511,0.561568,0.720605,0.142148,0.507434,0.14149,0.0810346,0.323996,0.528275,0.53464,0.918929,0.938803,0.805735,0.428659,0.883636,0.260625,0.149611,0.0846911,0.940027,0.363086,0.553283,0.481265,0.413333,0.676167,0.996097,0.849905,0.53044,0.395672,0.119809,0.211603,0.931142,0.375166,0.574364,0.226958,0.0961146,0.0554505,0.952598,0.724075,0.717527,0.392593,0.230383,0.342182,0.187984,0.348841,0.471723,0.778513,0.90923,0.434251,0.377401,0.360142,0.296169,0.0633239,0.0942242,0.605686,0.964707,0.599479,0.298522,0.799796,0.605211,0.923482,0.466621,0.796761,0.897923,0.696774,0.822094,0.92884,0.817777,0.46277,0.0596172,0.0606759,0.264933,0.783781,0.74533,0.619249,0.687924,0.237987,0.319866,0.359327,0.490314,0.951643,0.46944,0.232392,0.581668,0.761944,0.0621747,0.0608778,0.369578,0.518445,0.751118,0.0931556,0.995983,0.550475,0.99076,0.314168,0.812407,0.268771,0.394006,0.987773,0.703367,0.792003,0.956889,0.198168,0.271359,0.48986,0.192787,0.0848075,0.292257,0.565066,0.153681,0.444226,0.247799,0.975866,0.835452,0.572071,0.982818,0.968183,0.805257,0.149494,0.576414,0.292638,0.185608,0.32268,0.21694,0.283206,0.202526,0.634783,0.38756,0.0972732,0.20348,0.231958,0.520365,0.809291,0.9249,0.302906,0.197662,0.310329,0.131583,0.416831,0.957241,0.298323,0.156889,0.588665,0.774123,0.795731,0.53089,0.755679,0.984523,0.75111,0.997247,0.333802,0.0524377,0.00686091,0.82391,0.586664,0.665385,0.343258,0.331445,0.0729733,0.172739,0.653961,0.32851,0.175056,0.286398,0.366283,0.890138,0.438452,0.460296,0.317183,0.942567,0.387392,0.553398,0.359786,0.555244,0.0843031,0.787138,0.781857,0.648571,0.834161,0.233315,0.363953,0.628383,0.671043,0.285125,0.191528,0.363137,0.4824,0.27002,0.809064,0.59519,0.297244,0.313258,0.308973,0.530497,0.0601876,0.814529,0.0983933,0.12068,0.430721,0.255167,0.556749,0.0751245,0.0275168,0.219908,0.429627,0.285464,0.47055,0.467861,0.399127,0.146979,0.0402931,0.356896,0.470818,0.0437286,0.664417,0.945274,0.880204,0.682282,0.517296,0.674337,0.746623,0.996415,0.517246,0.886327,0.104063,0.862757,0.877972,0.228068,0.010285,0.814325,0.320179,0.84921,0.322538,0.420784,0.103409,0.412226,0.67899,0.298663,0.642642,0.736313,0.086982,0.932314,0.0253369,0.118291,0.56586,0.464874,0.302429,0.352634,0.687406,0.644048,0.662822,0.859773,0.309675,0.604811,0.392816,0.635914,0.804361,0.428476,0.402057,0.583824,0.355861,0.0229921,0.190138,0.670148,0.771876,0.0954575,0.440212,0.510046,0.11756,0.100536,0.686704,0.056972,0.570952,0.314523,0.877847,0.501671,0.0871946,0.10544,0.283118,0.449347,0.895752,0.162692,0.867813,0.702729,0.342787,0.470449,0.200259,0.813555,0.487916,0.670513,0.856633,0.379574,0.113989,0.252037,0.951564,0.364836,0.99655,0.638094,0.52854,0.335385,0.368632,0.702425,0.639973,0.0727094,0.136315,0.010593,0.572108,0.721856,0.3497,0.0508624,0.737542,0.571973,0.247396,0.210549,0.304467,0.111406,0.804775,0.279526,0.976216,0.0506842,0.643878,0.647116,0.533011,0.4029,0.790277,0.0205786,0.366266,0.551717,0.328891,0.256681,0.689153,0.203843,0.547846,0.845213,0.478074,0.732202,0.90984,0.403966,0.892236,0.0817323,0.438845,0.78428,0.528881,0.768983,0.404223,0.0122634,0.231627,0.43144,0.861876,0.769173,0.69273,0.929484,0.625817,0.216948,0.842988,0.467118,0.298189,0.375052,0.454205,0.411773,0.262811,0.430664,0.879905,0.020301,0.629752,0.268843,0.542929,0.506109,0.906055,0.821436,0.0271524,0.0220687,0.510497,0.229883,0.764186,0.48788,0.37975,0.656051,0.503419,0.554186,0.385854,0.180626,0.947775,0.77906,0.546279,0.465921,0.0176476,0.52937,0.830356,0.0907755,0.143465,0.761001,0.89617,0.898742,0.264123,0.242384,0.757063,0.664915,0.074003,0.763408,0.920788,0.611756,0.03738,0.565079,0.849557,0.482093,0.8167,0.129224,0.715141,0.201561,0.721864,0.151706,0.301103,0.10809,0.667447,0.210122,0.402678,0.508594,0.278695,0.832054,0.814106,0.675324,0.636177,0.137444,0.532837,0.15634,0.484771,0.914055,0.0311382,0.140606,0.708062,0.496657,0.666924,0.577415,0.579428,0.118631,0.922146,0.983771,0.939678,0.140561,0.999587,0.959526,0.557382,0.318371,0.87101,0.854893,0.103268,0.847026,0.237088,0.563508,0.453993,0.348973,0.463895,0.248673,0.580513,0.148404,0.770967,0.689756,0.13772,0.406958,0.641453,0.429617,0.997103,0.424792,0.287124,0.431923,0.049978,0.245015,0.549629,0.971608,0.915199,0.897948,0.926213,0.790853,0.892912,0.356266,0.950739,0.370885,0.2074,0.2826,0.788603,0.554122,0.313393,0.552402,0.274986,0.397608,0.316221,0.574984,0.329947,0.0043782,0.39187,0.394617,0.834947,0.438592,0.120294,0.974587,0.0501623,0.365627,0.327571,0.821862,0.922828,0.179874,0.121531,0.70576,0.0202752,0.235382,0.321835,0.464249,0.558695,0.798893,0.109962,0.671198,0.156883,0.648207,0.883228,0.676766,0.344514,0.861147,0.694034,0.00283337,0.286338,0.0968384,0.18564,0.810202,0.609939,0.573469,0.594024,0.0327809,0.32169,0.322627,0.392877,0.184552,0.0687494,0.827852,0.283112,0.548306,0.777802,0.152448,0.651285,0.45407,0.811126,0.177971,0.174533,0.996466,0.769567,0.775215,0.233376,0.0927833,0.534145,0.329373,0.609647,0.571438,0.0800886,0.778441,0.282002,0.0805864,0.172568,0.345883,0.641742,0.686599,0.125242,0.0853012,0.69707,0.967,0.626391,0.145068,0.742425,0.205503,0.898813,0.134686,0.615974,0.812914,0.467655,0.94846,0.23418,0.77905,0.824359,0.303985,0.362509,0.549578,0.406327,0.421012,0.883552,0.318098,0.878898,0.369371,0.356167,0.250893,0.439408,0.528762,0.302168,0.759692,0.413772,0.75858,0.993622,0.385747,0.368823,0.558954,0.558386,0.867708,0.515945,0.519002,0.509045,0.264255,0.99328,0.654667,0.881388,0.151461,0.847677,0.0121347,0.367324,0.99702,0.197746,0.188347,0.294649,0.4933,0.998174,0.873262,0.305704,0.276427,0.248096,0.187569,0.974512,0.485372,0.264161,0.892273,0.290655,0.468903,0.320558,0.0178738,0.2835,0.680612,0.731608,0.509827,0.184909,0.84814,0.446759,0.926954,0.661585,0.773527,0.760019,0.595934,0.199565,0.456365,0.333285,0.693468,0.888226,0.866662,0.473937,0.285703,0.247935,0.908635,0.613893,0.899033,0.349296,|0.292703,0.0112139,0.44651,0.850088,0.792181,0.873721,0.410476,0.530957,0.062104,0.726974,0.719892,0.835893,0.633623,0.917535,0.87295,0.796186,0.247686,0.329095,0.908085,0.910583,0.444201,0.639883,0.213565,0.823582,0.819595,0.499838,0.850967,0.335352,0.890422,0.929819,0.230165,0.515338,0.798997,0.583571,0.662176,0.769075,0.0481727,0.823243,0.490161,0.612857,0.718879,0.815199,0.283421,0.517035,0.971178,0.246562,0.211554,0.997129,0.31991,0.968344,0.781132,0.939322,0.0937499,0.0439773,0.274468,0.500045,0.445331,0.575091,0.922579,0.286067,0.82529,0.00385123,0.426128,0.807185,0.672841,0.480383,0.549786,0.967687,0.489947,0.757497,0.807848,0.167024,0.839901,0.822339,0.798949,0.217547,0.68951,0.25576,0.287473,0.726458,0.671664,0.866629,0.627705,0.687814,0.873428,0.386776,0.554731,0.297109,0.294464,0.942523,0.639721,0.916467,0.04792,0.151684,0.935729,0.530117,0.0350181,0.804735,0.966225,0.320318,0.95114,0.0919739,0.884765,0.49901,0.975202,0.345176,0.607091,0.723226,0.656623,0.173729,0.272999,0.219741,0.755101,0.304806,0.124638,0.317527,0.70035,0.00792098,0.0428049,0.734477,0.0296704,0.670914,0.726243,0.84439,0.842205,0.290802,0.767807,0.0636882,0.127605,0.889135,0.196168,0.726034,0.547309,0.933491,0.672011,0.378161,0.162506,0.459127,0.534728,0.376778,0.54818,0.983389,0.153643,0.808684,0.722116,0.0397637,0.47024,0.89444,0.102103,0.251098,0.016827,0.151831,0.0326888,0.91936,0.205888,0.897612,0.229797,0.815711,0.709443,0.263237,0.502972,0.115846,0.538714,0.33652,0.273023,0.75379,0.981793,0.285884,0.68462,0.85119,0.263165,0.726454,0.781836,0.543219,0.433297,0.426415,0.868751,0.299927,0.808404,0.555854,0.967484,0.254066,0.966582,0.536611,0.517828,0.23961,0.914535,0.972227,0.8102,0.115273,0.310948,0.774081,0.652563,0.28001,0.873573,0.0869587,0.656231,0.350278,0.735046,0.180423,0.0909125,0.513097,0.222626,0.0144511,0.352761,0.73179,0.810184,0.13928,0.965227,0.659651,0.461875,0.144282,0.349384,0.523774,0.958024,0.280553,0.798879,0.680249,0.800473,0.736612,0.779051,0.712992,0.589179,0.62936,0.847753,0.575637,0.732519,0.993485,0.0194537,0.058746,0.888119,0.152069,0.00172156,0.499301,0.255914,0.449893,0.518389,0.67078,0.112102,0.528178,0.333789,0.684211,0.5539,0.990155,0.691361,0.879726,0.738641,0.166767,0.878654,0.582695,0.180025,0.940471,0.21876,0.45262,0.110867,0.207439,0.979086,0.216595,0.267235,0.100903,0.358001,0.827042,0.85201,0.0277402,0.499218,0.239549,0.817613,0.804192,0.906445,0.08689,0.478974,0.759113,0.377989,0.2578,0.595771,0.558316,0.142231,0.764458,0.473423,0.548588,0.502369,0.277023,0.916518,0.382313,0.113947,0.74699,0.213048,0.107133,0.154585,0.244062,0.865515,0.913719,0.703761,0.821855,0.945112,0.596476,0.327822,0.228027,0.655762,0.750149,0.115042,0.396049,0.322384,0.899878,0.946328,0.847661,0.134037,0.406242,0.531046,0.772468,0.0199904,0.748296,0.903408,0.521485,0.99389,0.596813,0.290829,0.384158,0.90408,0.835076,0.854019,0.3431,0.802405,0.427077,0.204316,0.284078,0.925779,0.69577,0.305899,0.262844,0.497957,0.483598,0.967633,0.876044,0.405675,0.481032,0.0824792,0.575118,0.305346,0.230724,0.541051,0.680164,0.23438,0.640359,0.0672489,0.679857,0.207242,0.258644,0.531206,0.159991,0.734184,0.524745,0.183998,0.591199,0.218911,0.952134,0.0860826,0.686741,0.967686,0.468769,0.551966,0.178901,0.382915,0.865485,0.322342,0.531822,0.766713,0.980131,0.314149,0.232454,0.641213,0.742202,0.536446,0.173251,0.171765,0.782193,0.858203,0.476284,0.69785,0.869236,0.29552,0.813657,0.458507,0.390273,0.136957,0.698329,0.979054,0.092298,0.838818,0.665237,0.197372,0.682607,0.688601,0.162167,0.126143,0.175853,0.203331,0.662673,0.415077,0.884496,0.500675,0.914461,0.304779,0.654288,0.70551,0.673645,0.778234,0.684362,0.00199997,0.573268,0.319912,0.929598,0.747239,0.828068,0.212342,0.982708,0.00668168,0.793517,0.132777,0.00958431,0.898752,0.189022,0.62872,0.547389,0.513222,0.865646,0.0376489,0.160637,0.657327,0.93226,0.399758,0.9869,0.849347,0.344981,0.99001,0.981109,0.883841,0.729945,0.726036,0.515151,0.94554,0.129894,0.692217,0.730438,0.327262,0.68963,0.713443,0.662621,0.764613,0.170715,0.089457,0.741065,0.725955,0.677436,0.206474,0.271558,0.471549,0.0111128,0.442833,0.862943,0.475416,0.164773,0.102479,0.759566,0.608745,0.347287,0.31869,0.855857,0.935681,0.0144323,0.434157,0.810416,0.838393,0.548045,0.260918,0.0945934,0.0469906,0.100323,0.761736,0.246595,0.166869,0.52702,0.0801979,0.292891,0.579768,0.206422,0.016822,0.992359,0.655501,0.536779,0.530191,0.458138,0.947047,0.0152791,0.777358,0.406067,0.245467,0.411574,0.241995,0.778737,0.392289,0.82827,0.960477,0.72401,0.0168921,0.0580048,0.784259,0.615994,0.30824,0.495539,0.30251,0.760914,0.0112511,0.362589,0.0903739,0.752508,0.188937,0.396239,0.649863,0.795039,0.245499,0.87116,0.536782,0.166159,0.243492,0.742261,0.346712,0.905991,0.931819,0.761553,0.543501,0.733698,0.998316,0.135654,0.426112,0.196099,0.692711,0.228456,0.541358,0.892283,0.788076,0.63067,0.58772,0.683989,0.0257309,0.940158,0.272023,0.334107,0.740754,0.9659,0.53264,0.812038,0.347843,0.959229,0.212804,0.0445668,0.682806,0.691577,0.572595,0.800339,0.389148,0.0883985,0.346595,0.162484,0.830992,0.276441,0.69963,0.1636,0.71869,0.686229,0.00424898,0.0839133,0.534338,0.761489,0.218007,0.698597,0.643127,0.801732,0.478797,0.760979,0.4052,0.105675,0.0624096,0.467699,0.954382,0.953026,0.77601,0.289078,0.241024,0.411532,0.0566162,0.107507,0.619882,0.29569,0.836489,0.49464,0.980582,0.460773,0.607489,0.713627,0.120855,0.938524,0.0736581,0.684918,0.519478,0.500605,0.481674,0.656271,0.00911969,0.274285,0.108172,0.331418,0.937391,0.918066,0.0342255,0.92524,0.768058,0.219114,0.361344,0.254831,0.486397,0.0296731,0.86504,0.665438,0.964975,0.0259913,0.262589,0.556994,0.275718,0.815013,0.927461,0.929406,0.984953,0.948403,0.692331,0.630761,0.560948,0.402286,0.404951,0.230536,0.213297,0.628057,0.0520133,0.836993,0.824999,0.0937437,0.620233,0.391852,0.841718,0.575895,0.971392,0.730345,0.864706,0.523615,0.0527304,0.0168766,0.0589849,0.803119,0.869425,0.853644,0.98975,0.476354,0.602061,0.334437,0.314927,0.513557,0.671957,0.721535,0.985398,0.098942,0.0868745,0.676486,0.208227,0.620175,0.0321699,0.233792,0.281218,0.689847,0.417871,0.595925,0.62047,0.82961,0.909847,0.364392,0.131278,0.438904,0.96246,0.190666,0.673627,0.838289,0.958223,0.656329,0.488948,0.0341584,0.976823,0.21321,0.29021,0.735449,0.36527,0.509948,0.22039,0.511202,0.335859,0.503158,0.855674,0.820504,0.0728673,0.256998,0.543549,0.999136,0.084295,0.241887,0.830603,0.42823,0.297992,0.987668,0.539308,0.0853456,0.929533,0.842551,0.196613,0.636648,0.948404,0.679337,0.617029,0.137841,0.753791,0.934087,0.359604,0.816328,0.534081,0.538712,0.458326,0.838093,0.480709,0.893574,0.246067,0.488536,0.484764,0.333946,0.385628,0.540176,0.418244,0.344827,0.256147,0.0695717,0.228771,0.72675,0.575345,0.0151159,0.817028,0.0540354,0.549005,0.472776,0.435146,0.369725,0.547451,0.453413,0.617023,0.0680692,0.0259474,0.915021,0.185327,0.273883,0.560024,0.420806,0.894468,0.485487,0.286584,0.0828365,0.899354,0.356329,0.510965,0.050459,0.175461,0.609559,0.443952,0.350134,0.289321,0.217103,0.8161,0.633444,0.0300876,0.300706,0.77395,0.628284,0.898488,0.571911,0.257236,0.187127,0.744152,0.0137972,0.317704,0.349529,0.541918,0.238218,0.467114,0.402114,0.302777,0.532714,0.899254,0.212518,0.137185,0.83839,0.307795,0.894706,0.200674,0.133754,0.167397,0.0417032,0.574985,0.939161,0.979566,0.153244,0.381423,0.332281,0.138494,0.0523,0.684527,0.953779,0.641314,0.645631,0.0987967,0.162167,0.655165,0.099274,0.699758,0.653044,0.34699,0.409654,0.354905,0.342887,0.617188,0.708698,0.345626,0.140561,0.868364,0.780381,0.846763,0.797627,0.399136,0.070087,0.290309,0.855164,0.958454,0.14002,0.80829,0.481147,0.831289,0.289967,0.173843,0.636209,0.621804,0.124352,0.358626,0.184592,0.45244,0.90579,0.742028,0.754796,0.583363,0.91027,0.34753,0.269966,0.365154,0.817764,0.953417,0.620536,0.709613,0.942899,0.479037,0.619614,0.674352,0.7246,0.728559,0.563527,0.312371,0.571373,0.699257,0.613525,0.0493984,0.0244757,0.600489,0.620041,0.62421,0.247246,0.358674,0.4714,0.949742,0.153311,0.871898,0.439739,0.616902,0.769842,0.215821,0.754054,0.671827,0.865775,0.932011,0.591705,0.554617,0.703116,0.692812,0.728327,0.235328,0.446243,0.797794,0.969319,0.770601,0.928703,0.197341,0.062153,0.411393,0.894327,0.76496,0.311241,0.382827,0.719232,0.720749,0.552333,0.708323,0.596554,0.801398,0.253989,0.880521,0.738733,0.562225,0.815376,0.0143663,0.481502,0.105894,0.652479,0.215336,0.576863,0.296259,0.241495,0.245109,0.140433,0.604952,0.0411118,0.889485,0.506595,0.625397,0.0210772,0.209603,0.256288,0.0567588,0.239186,0.664812,0.999609,0.00138259,0.423906,0.618528,0.92626,0.327082,0.858027,0.896835,0.862373,0.237796,0.41333,0.776812,0.150955,0.86417,0.00969696,0.239259,0.784469,0.0214571,0.183781,0.414526,0.0973353,0.177729,0.368181,0.613142,0.206526,0.616674,0.108525,0.0895973,0.225251,0.596555,0.831049,0.643709,0.823117,0.192823,0.93499,0.66797,0.715566,0.474888,0.84839,0.508497,0.357162,0.111951,0.702535,0.426016,0.138196,0.734478,0.53005,0.561969,0.492603,0.133275,0.265507,|0.878634,0.0765678,0.581193,0.27681,0.481758,0.56598,0.434969,0.170101,0.354931,0.568829,0.6707,0.30456,0.907203,0.0506316,0.564956,0.207662,0.914299,0.45433,0.0115658,0.886602,0.188692,0.487103,0.791182,0.927036,0.447838,0.99477,0.819166,0.606941,0.340537,0.842637,0.986795,0.693043,0.403014,0.0987647,0.964705,0.682456,0.426251,0.441905,0.961834,0.0691789,0.989061,0.989263,0.145889,0.0486492,0.425777,0.99585,0.0793316,0.48637,0.697335,0.30588,0.0995185,0.593047,0.844287,0.744013,0.331013,0.218773,0.310161,0.606699,0.211582,0.976844,0.648697,0.689441,0.439918,0.275416,0.376771,0.573468,0.380699,0.220287,0.679617,0.874731,0.765117,0.422713,0.459614,0.86831,0.448242,0.655977,0.124237,0.120806,0.0643526,0.918269,0.0031302,0.063337,0.142436,0.484658,0.648561,0.504345,0.7561,0.696063,0.836359,0.762852,0.118664,0.23232,0.0952075,0.849478,0.858419,0.748565,0.0670965,0.568427,0.20184,0.856018,0.416034,0.0744896,0.254351,0.537908,0.073633,0.821223,0.925149,0.0277691,0.325052,0.269183,0.537119,0.122897,0.641974,0.453096,0.178744,0.756553,0.154351,0.582483,0.622659,0.462241,0.10169,0.91522,0.684572,0.546131,0.542491,0.669844,0.280533,0.689141,0.714549,0.63392,0.30532,0.0138879,0.139472,0.188123,0.506371,0.143402,0.641306,0.0663669,0.502409,0.236618,0.287538,0.741403,0.667548,0.0906023,0.732641,0.573526,0.125888,0.40842,0.963366,0.277009,0.72897,0.300953,0.981888,0.296718,0.8526,0.635785,0.460983,0.647159,0.302561,0.414618,0.461586,0.561406,0.535305,0.509494,0.907197,0.561517,0.381549,0.96918,0.699993,0.396988,0.467199,0.522927,0.173788,0.390374,0.39118,0.337383,0.273946,0.980568,0.374109,0.626645,0.731395,0.717441,0.205746,0.461554,0.160963,0.67137,0.650493,0.926326,0.986139,0.0130344,0.40799,0.560032,0.140185,0.607095,0.190247,0.910758,0.203468,0.692282,0.688032,0.392762,0.399858,0.889685,0.784729,0.194185,0.902838,0.425012,0.232373,0.430544,0.39361,0.243487,0.42673,0.997245,0.683661,0.156403,0.498083,0.363096,0.542805,0.515608,0.836051,0.223384,0.599133,0.114151,0.721205,0.684048,0.131176,0.0597178,0.700326,0.401219,0.856446,0.234818,0.57536,0.46673,0.715485,0.382539,0.88392,0.323369,0.984183,0.967869,0.286148,0.532688,0.584675,0.98254,0.538344,0.0792509,0.40408,0.549908,0.875673,0.393115,0.548652,0.716922,0.208839,0.470048,0.578057,0.00864214,0.484707,0.229954,0.210421,0.333921,0.606567,0.394197,0.543958,0.705627,0.695685,0.170079,0.796219,0.56257,0.939145,0.672755,0.912094,0.762826,0.207508,0.418186,0.17279,0.801403,0.727389,0.779111,0.572321,0.144433,0.133535,0.257593,0.0586389,0.862876,0.740905,0.113194,0.181322,0.0135471,0.702375,0.0883834,0.515943,0.560739,0.681222,0.562985,0.229851,0.140903,0.884626,0.752761,0.946406,0.670414,0.803077,0.114041,0.643885,0.222793,0.703445,0.368601,0.769451,0.179645,0.772544,0.0721352,0.920649,0.988775,0.181498,0.810271,0.0674769,0.727412,0.393163,0.0012747,0.947948,0.392556,0.577565,0.148467,0.560987,0.256206,0.377118,0.0944115,0.171429,0.790019,0.555369,0.910387,0.737921,0.0262155,0.593566,0.927279,0.850086,0.72024,0.629731,0.202988,0.144317,0.0172231,0.15841,0.397749,0.277009,0.765112,0.552622,0.704713,0.875475,0.900975,0.802059,0.571845,0.928504,0.994837,0.110754,0.330429,0.796558,0.981596,0.672482,0.640569,0.543786,0.866874,0.0503851,0.199744,0.592089,0.365164,0.312544,0.0563718,0.973678,0.216356,0.654974,0.782187,0.0923889,0.655253,0.848313,0.547976,0.663837,0.260882,0.016836,0.873686,0.123657,0.412388,0.897209,0.374274,0.0618628,0.172248,0.271471,0.337546,0.338645,0.0615852,0.132242,0.95594,0.657393,0.812445,0.508284,0.125084,0.364591,0.299608,0.370242,0.752825,0.974081,0.296195,0.979826,0.775913,0.264598,0.992079,0.121391,0.859738,0.862278,0.858785,0.0132825,0.834704,0.0886608,0.241227,0.933236,0.802862,0.0544441,0.596518,0.67816,0.170163,0.324345,0.0127778,0.732607,0.0683873,0.957542,0.787161,0.306531,0.376612,0.954499,0.115451,0.614367,0.391375,0.0209357,0.0647682,0.187622,0.95453,0.271674,0.319641,0.981636,0.845883,0.549353,0.454835,0.22838,0.848356,0.772271,0.892339,0.700682,0.398463,0.223194,0.240418,0.445545,0.119762,0.13439,0.0569805,0.301102,0.689166,0.483159,0.960479,0.155206,0.746536,0.240412,0.600921,0.849293,0.856722,0.325589,0.311099,0.245518,0.517032,0.352058,0.361646,0.171397,0.636868,0.150483,0.168418,0.626437,0.362801,0.442065,0.571361,0.396285,0.00291526,0.645162,0.15477,0.835442,0.874914,0.552725,0.0914273,0.671981,0.853339,0.648445,0.294445,0.102447,0.425389,0.275283,0.150763,0.838589,0.947154,0.86318,0.326479,0.555937,0.627288,0.460442,0.496087,0.565947,0.0333999,0.406663,0.00191903,0.630267,0.866562,0.176886,0.139025,0.950943,0.16977,0.599046,0.554988,0.382106,0.320332,0.535278,0.935706,0.626095,0.974686,0.087151,0.863696,0.585202,0.925781,0.800843,0.879937,0.396244,0.811288,0.0036419,0.494027,0.398107,0.012723,0.432059,0.48653,0.832798,0.101081,0.451993,0.632074,0.268735,0.0355765,0.013512,0.405197,0.248432,0.353377,0.771502,0.219609,0.476718,0.771402,0.508679,0.585468,0.565979,0.834222,0.177003,0.0743809,0.331289,0.286502,0.809996,0.542539,0.993526,0.905725,0.258428,0.0777677,0.521817,0.87857,0.922021,0.609691,0.427132,0.064745,0.292257,0.576652,0.00236768,0.266998,0.343453,0.201613,0.251991,0.942116,0.19643,0.826982,0.311449,0.624517,0.603962,0.486678,0.442229,0.487527,0.0527932,0.555363,0.0573664,0.486326,0.163014,0.181458,0.211477,0.00969177,0.000978112,0.0278938,0.120424,0.469396,0.947326,0.14103,0.596094,0.0997443,0.724011,0.390755,0.786888,0.352722,0.201479,0.794116,0.283899,0.77895,0.290055,0.016046,0.447847,0.17511,0.501785,0.910587,0.585209,0.38241,0.677087,0.754635,0.168007,0.13573,0.365353,0.804637,0.400174,0.256148,0.334763,0.513139,0.39341,0.591321,0.0287548,0.0399446,0.68416,0.0418872,0.485171,0.474021,0.147318,0.0353669,0.11585,0.498605,0.212606,0.951352,0.686113,0.0174269,0.486535,0.217109,0.944637,0.916567,0.486216,0.194271,0.536446,0.64114,0.175004,0.0241995,0.868615,0.859647,0.600772,0.660887,0.288943,0.94536,0.719408,0.655015,0.337027,0.948364,0.46757,0.484891,0.120771,0.503557,0.555813,0.387899,0.636714,0.570518,0.257455,0.912774,0.247776,0.295241,0.975276,0.227169,0.178005,0.320345,0.380671,0.12147,0.204418,0.986428,0.801524,0.954467,0.0877239,0.371923,0.581968,0.824655,0.586774,0.0672891,0.436166,0.654146,0.180219,0.0604585,0.142096,0.700865,0.0420899,0.563137,0.705766,0.170237,0.695801,0.906946,0.00564003,0.00112057,0.173172,0.734765,0.885885,0.649964,0.386394,0.0839524,0.904916,0.349907,0.248534,0.657289,0.396762,0.355117,0.612995,0.630322,0.0684801,0.155369,0.735165,0.955959,0.684835,0.303988,0.780192,0.843143,0.300127,0.0212254,0.79728,0.830415,0.210098,0.988913,0.623192,0.630248,0.993983,0.629039,0.163997,0.0984415,0.0807799,0.570709,0.0929573,0.213971,0.320988,0.32955,0.276929,0.627513,0.785892,0.810939,0.443761,0.372038,0.222401,0.268299,0.644441,0.350016,0.705286,0.835542,0.15721,0.434526,0.510435,0.700569,0.893598,0.0708783,0.135992,0.631979,0.100088,0.779167,0.831723,0.620079,0.885659,0.679195,0.157335,0.0770156,0.172443,0.256291,0.0259179,0.0902924,0.414565,0.518987,0.998854,0.437334,0.0883875,0.160821,0.950911,0.449753,0.66881,0.85017,0.226944,0.779375,0.498428,0.157295,0.603422,0.950993,0.424555,0.968435,0.389984,0.814813,0.648032,0.374315,0.12873,0.0262824,0.458249,0.389277,0.362817,0.821123,0.830972,0.525646,0.576536,0.573395,0.723905,0.0946059,0.680606,0.137034,0.0516458,0.927144,0.218426,0.728562,0.554841,0.483941,0.807143,0.537276,0.903599,0.320692,0.69619,0.680557,0.533131,0.457219,0.665454,0.0529333,0.216788,0.497258,0.699802,0.0798208,0.752195,0.792224,0.618578,0.783892,0.11961,0.703037,0.907583,0.262798,0.060378,0.616072,0.361455,0.238666,0.872588,0.79919,0.850412,0.0750864,0.978542,0.6946,0.167386,0.851277,0.682551,0.28308,0.442129,0.423419,0.00707054,0.473979,0.800701,0.362889,0.808999,0.0470839,0.367261,0.270207,0.406172,0.0824769,0.330562,0.292119,0.953198,0.750667,0.419138,0.113847,0.160242,0.216802,0.839664,0.958994,0.685135,0.804112,0.569593,0.676405,0.624018,0.556426,0.771335,0.11356,0.194623,0.163386,0.488159,0.275699,0.212998,0.545145,0.0952176,0.264718,0.762759,0.801405,0.262982,0.815433,0.10801,0.496667,0.872706,0.80105,0.50773,0.272322,0.356592,0.522505,0.00789315,0.864592,0.0132335,0.692153,0.653665,0.08245,0.924484,0.933802,0.190724,0.288027,0.119887,0.720663,0.704025,0.0932261,0.698982,0.263125,0.621044,0.882409,0.577368,0.915088,0.0889865,0.136844,0.167063,0.271598,0.796905,0.834359,0.165924,0.753761,0.0136332,0.195735,0.490702,0.66845,0.787544,0.232883,0.225427,0.359726,0.0797535,0.65808,0.676445,0.0609981,0.660614,0.40561,0.515577,0.147161,0.961046,0.13115,0.799252,0.941752,0.795149,0.0160443,0.930136,0.803082,0.518965,0.306124,0.205238,0.31727,0.917492,0.535778,0.528388,0.699671,0.110423,0.00785249,0.95809,0.0428299,0.676076,0.164066,0.478096,0.982035,0.37972,0.150759,0.0408681,0.135834,0.5122,0.530441,0.614593,0.709413,0.657508,0.295707,0.317605,0.313517,0.233568,0.411374,0.997361,0.708006,0.205741,0.952062,0.543685,0.586964,0.733665,0.769241,0.0352632,0.910981,0.345724,0.896466,0.312621,0.396529,0.855038,0.0485694,0.909083,0.983199,|0.242683,0.926754,0.345976,0.989487,0.544943,0.548282,0.515436,0.490348,0.779002,0.270092,0.536615,0.628271,0.516863,0.0766234,0.40638,0.404522,0.395252,0.360636,0.835985,0.11404,0.124146,0.941861,0.592987,0.222597,0.642472,0.31812,0.206901,0.378135,0.773279,0.183344,0.223744,0.410332,0.399877,0.807909,0.860106,0.819349,0.644303,0.793299,0.940285,0.484324,0.383871,0.383168,0.345665,0.347338,0.247182,0.538422,0.556204,0.385856,0.813784,0.750508,0.099808,0.844887,0.618456,0.661496,0.806901,0.683879,0.865521,0.968471,0.844565,0.827647,0.34423,0.93328,0.943641,0.25457,0.636352,0.769622,0.507057,0.300426,0.608662,0.325019,0.779442,0.669014,0.0360197,0.559888,0.981567,0.418247,0.169371,0.762798,0.25264,0.0304274,0.45403,0.734358,0.797399,0.814154,0.247704,0.797464,0.715952,0.983276,0.285097,0.916331,0.623774,0.244738,0.998428,0.826996,0.960294,0.207823,0.418798,0.096244,0.701213,0.230652,0.931064,0.38582,0.704293,0.978714,0.273716,0.216321,0.767914,0.509192,0.784616,0.801724,0.0945666,0.385733,0.446077,0.325838,0.1466,0.688468,0.409009,0.813865,0.540299,0.0996964,0.155348,0.689129,0.576116,0.0263661,0.2338,0.173411,0.256964,0.463206,0.454893,0.273853,0.617575,0.297186,0.868686,0.942844,0.432266,0.568173,0.37746,0.0387145,0.779167,0.22897,0.823219,0.752171,0.902588,0.439734,0.940161,0.903167,0.146433,0.845577,0.054584,0.779136,0.890176,0.707269,0.465328,0.209533,0.72964,0.70179,0.0053314,0.00410753,0.372946,0.549433,0.849535,0.753857,0.929077,0.370495,0.219675,0.8038,0.664204,0.412338,0.988364,0.214131,0.904308,0.204849,0.868496,0.173781,0.846607,0.813477,0.119867,0.492921,0.723211,0.168063,0.704361,0.182544,0.448657,0.919412,0.339403,0.136936,0.859318,0.603582,0.486636,0.734585,0.327703,0.473552,0.506798,0.956004,0.530927,0.570351,0.308623,0.591688,0.0537512,0.775159,0.561448,0.360579,0.351297,0.818226,0.0359071,0.12155,0.205769,0.155174,0.875225,0.0751151,0.715837,0.0540496,0.889639,0.297043,0.957126,0.492341,0.551932,0.833888,0.282858,0.243613,0.0519985,0.718546,0.217875,0.0488531,0.593515,0.722026,0.592332,0.800199,0.886018,0.379809,0.959539,0.198665,0.9078,0.224492,0.476448,0.143123,0.0719395,0.282848,0.990267,0.177048,0.530497,0.55598,0.0716686,0.778259,0.323864,0.370061,0.732791,0.781259,0.288937,0.81961,0.365449,0.928902,0.922948,0.147147,0.973946,0.760637,0.911219,0.0215301,0.311993,0.694811,0.226434,0.987206,0.492396,0.295892,0.323378,0.226806,0.593421,0.641314,0.42546,0.134288,0.734852,0.642673,0.130927,0.607759,0.27961,0.734643,0.366619,0.525024,0.5462,0.487468,0.448735,0.458634,0.173976,0.461646,0.794724,0.59644,0.778932,0.588573,0.2987,0.984531,0.0350247,0.933583,0.486692,0.4459,0.86963,0.951616,0.0863439,0.529062,0.470674,0.496526,0.282581,0.772305,0.204583,0.112108,0.282264,0.607117,0.262162,0.85019,0.778039,0.724452,0.653114,0.887001,0.843021,0.66907,0.839302,0.585965,0.743813,0.0103844,0.199259,0.536649,0.82736,0.484091,0.501476,0.328486,0.209734,0.341777,0.128775,0.407558,0.106334,0.896653,0.076657,0.429351,0.407161,0.11541,0.307524,0.756072,0.270482,0.548633,0.234239,0.677025,0.126692,0.816281,0.843987,0.11995,0.272513,0.80508,0.208419,0.963454,0.375439,0.474496,0.2346,0.626905,0.37419,0.56488,0.403983,0.919091,0.26642,0.804939,0.446036,0.817032,0.352107,0.00235045,0.951658,0.0772787,0.439311,0.380393,0.298903,0.065818,0.0373811,0.356139,0.342548,0.268837,0.938796,0.897435,0.534492,0.61066,0.834136,0.898634,0.629888,0.86159,0.746401,0.33671,0.628843,0.0965929,0.729401,0.223209,0.984402,0.592629,0.554882,0.573815,0.213789,0.186589,0.558537,0.691452,0.782854,0.960894,0.460119,0.80988,0.217752,0.0531461,0.600203,0.964339,0.578085,0.226185,0.0884892,0.569004,0.468409,0.56019,0.943411,0.0907531,0.99304,0.308606,0.570234,0.864921,0.77421,0.949196,0.145441,0.419953,0.224309,0.645711,0.164011,0.152962,0.8391,0.956436,0.878687,0.322743,0.774279,0.209921,0.796141,0.144493,0.0252904,0.751073,0.242451,0.399022,0.416436,0.672962,0.680155,0.33413,0.228971,0.815582,0.909609,0.893084,0.394451,0.783578,0.36695,0.362224,0.439045,0.0826452,0.774296,0.399226,0.975138,0.764581,0.642575,0.419584,0.889647,0.408041,0.0849146,0.453444,0.993886,0.272856,0.278732,0.622018,0.285447,0.277327,0.505275,0.171737,0.337715,0.941663,0.757421,0.559291,0.584215,0.240135,0.320577,0.846516,0.270189,0.055065,0.339026,0.75147,0.412758,0.996843,0.134498,0.541858,0.734796,0.909239,0.512053,0.257341,0.329732,0.616899,0.409144,0.780909,0.195988,0.926678,0.404623,0.312828,0.677387,0.630991,0.823947,0.226866,0.403669,0.82674,0.0567017,0.834052,0.472368,0.87805,0.916666,0.32246,0.414063,0.603697,0.548356,0.39275,0.896041,0.0811559,0.519696,0.560157,0.493724,0.0695434,0.244482,0.926414,0.809042,0.536858,0.513775,0.953445,0.839551,0.383314,0.8094,0.885819,0.994351,0.705423,0.123811,0.621524,0.180317,0.443271,0.761939,0.0744213,0.0210632,0.121884,0.821459,0.462054,0.418504,0.0279797,0.921976,0.800114,0.722436,0.726751,0.809594,0.925377,0.387707,0.182614,0.100149,0.345209,0.308653,0.918984,0.810155,0.321694,0.824269,0.209282,0.17972,0.826714,0.180542,0.719812,0.45057,0.0644404,0.516947,0.105969,0.506594,0.773297,0.448677,0.379478,0.749493,0.00812,0.0279354,0.0696432,0.152267,0.409591,0.659196,0.315424,0.659535,0.871689,0.462395,0.4447,0.804837,0.0586619,0.755041,0.739761,0.891484,0.938349,0.110684,0.355714,0.00970227,0.755748,0.254309,0.656618,0.306501,0.103355,0.763506,0.670063,0.517463,0.239661,0.0515249,0.0954064,0.361005,0.245638,0.77335,0.129135,0.396446,0.949504,0.138472,0.638555,0.00234532,0.315164,0.41712,0.498269,0.717192,0.705616,0.140231,0.244843,0.639537,0.136027,0.728775,0.292999,0.347727,0.0817146,0.859198,0.449933,0.40243,0.607342,0.986812,0.774471,0.173999,0.707251,0.385627,0.964564,0.684252,0.83857,0.430258,0.445154,0.810159,0.618344,0.474308,0.102504,0.597333,0.152538,0.239208,0.951524,0.216873,0.53252,0.792861,0.917929,0.112731,0.586555,0.915995,0.349117,0.281415,0.892047,0.382651,0.8459,0.0148966,0.458726,0.275254,0.951796,0.0925125,0.656147,0.820836,0.706983,0.194994,0.364096,0.0456742,0.299122,0.0126821,0.952373,0.242915,0.596251,0.327366,0.535934,0.283315,0.418257,0.855789,0.852432,0.120336,0.299685,0.691237,0.753857,0.219506,0.00649655,0.919452,0.480213,0.849257,0.620107,0.0188935,0.0862539,0.583893,0.1302,0.730944,0.652825,0.975751,0.281231,0.481129,0.60333,0.400851,0.42939,0.998631,0.749887,0.971066,0.821402,0.734095,0.313314,0.0719196,0.189174,0.530608,0.468907,0.466155,0.0781842,0.663687,0.756038,0.389873,0.528625,0.726769,0.757742,0.984486,0.873703,0.419575,0.949908,0.957953,0.441546,0.768863,0.730523,0.153184,0.694298,0.831979,0.433411,0.260539,0.785909,0.656017,0.0236369,0.567224,0.126231,0.395175,0.503901,0.349002,0.750926,0.650284,0.499286,0.4727,0.238862,0.443606,0.534433,0.137991,0.800017,0.693795,0.747409,0.347244,0.424954,0.695388,0.134801,0.660911,0.417651,0.209263,0.652111,0.644199,0.473624,0.976368,0.279804,0.849058,0.329668,0.344532,0.59425,0.72458,0.919995,0.502273,0.818626,0.441297,0.355724,0.853629,0.457182,0.232918,0.0370548,0.277311,0.153272,0.559319,0.0439353,0.964177,0.350179,0.18513,0.156922,0.14807,0.0479205,0.227042,0.865132,0.720642,0.418276,0.92857,0.00772375,0.112421,0.470503,0.717709,0.199577,0.492188,0.776798,0.15594,0.178167,0.459851,0.419879,0.880334,0.797938,0.0692291,0.309891,0.497191,0.173538,0.109839,0.817571,0.234185,0.75754,0.583577,0.491353,0.788754,0.0520231,0.675274,0.223949,0.107397,0.782381,0.566773,0.322142,0.043434,0.641089,0.46579,0.577236,0.312441,0.435563,0.0490062,0.843264,0.0587423,0.520697,0.637232,0.137455,0.798144,0.389905,0.0514818,0.157027,0.667019,0.542784,0.596784,0.50987,0.569829,0.680093,0.841431,0.235836,0.29113,0.654495,0.867485,0.555981,0.353828,0.955947,0.119412,0.885623,0.925741,0.905059,0.67133,0.116567,0.865118,0.636413,0.40822,0.653126,0.792221,0.40185,0.990865,0.63932,0.503566,0.743779,0.207443,0.300167,0.366483,0.243289,0.827073,0.448601,0.0892416,0.875204,0.223597,0.660144,0.812342,0.51019,0.641826,0.543998,0.468094,0.888429,0.0653715,0.747691,0.691644,0.448771,0.184055,0.717851,0.98711,0.595767,0.127661,0.210857,0.954684,0.223671,0.681877,0.361094,0.376931,0.168243,0.547386,0.707891,0.0588864,0.207228,0.860036,0.431297,0.182402,0.37366,0.0986486,0.409476,0.181681,0.0111253,0.811351,0.634993,0.994927,0.243247,0.47736,0.839825,0.00306243,0.463542,0.921214,0.595568,0.14016,0.891591,0.338165,0.52379,0.572201,0.229796,0.469383,0.670381,0.520619,0.112378,0.416879,0.338589,0.527043,0.61847,0.90214,0.0491162,0.375155,0.917774,0.0565705,0.455752,0.218476,0.822739,0.550186,0.880612,0.0766214,0.446921,0.296663,0.485559,0.194334,0.361979,0.932462,0.835855,0.648616,0.267467,0.211089,0.807185,0.91139,0.930264,0.658729,0.94002,0.651732,0.760368,0.768475,0.961084,0.00347781,0.435532,0.0761728,0.424631,0.865405,0.776684,0.603565,0.235958,0.028747,0.63539,0.195035,0.174971,0.283842,0.15061,0.981376,0.21242,0.835333,0.56703,0.80712,0.501866,0.382447,0.768918,0.375439,0.00940293,0.199726,0.375767,0.954467,0.0208251,0.704896,0.209989,0.368958,0.659853,0.237057,0.0369316,|0.756817,0.1828,0.335823,0.861581,0.800285,0.8125,0.466407,0.0981187,0.470741,0.265302,0.531072,0.690441,0.666713,0.537514,0.0106347,0.0597907,0.356615,0.933222,0.281807,0.035237,0.509179,0.150491,0.721107,0.560139,0.86492,0.450164,0.773826,0.307946,0.063557,0.345619,0.292955,0.950309,0.986009,0.344015,0.194689,0.693919,0.894167,0.422701,0.852934,0.85761,0.328887,0.0577699,0.269289,0.0990516,0.889438,0.831513,0.212057,0.405199,0.918015,0.694348,0.536001,0.347121,0.758086,0.98192,0.324123,0.800109,0.543161,0.464776,0.477618,0.597483,0.124638,0.377421,0.353025,0.726899,0.624744,0.965296,0.528643,0.163164,0.922342,0.833615,0.496724,0.00131744,0.895674,0.17069,0.494797,0.510876,0.417502,0.861077,0.395348,0.111164,0.717133,0.98037,0.493408,0.753638,0.369806,0.954777,0.0121819,0.173779,0.11659,0.114936,0.564752,0.309057,0.69691,0.318938,0.64199,0.79193,0.315288,0.897913,0.84359,0.25878,0.448389,0.577852,0.375443,0.2755,0.462849,0.084832,0.740614,0.772888,0.365361,0.702054,0.314793,0.472003,0.212124,0.00375092,0.892825,0.405758,0.601217,0.753383,0.374961,0.0790725,0.389643,0.991162,0.498275,0.740142,0.307908,0.386883,0.68657,0.164287,0.765518,0.347378,0.387561,0.500503,0.544927,0.364704,0.214779,0.932985,0.658508,0.208714,0.0768535,0.41046,0.250519,0.0318955,0.192551,0.242331,0.199068,0.479086,0.073558,0.631495,0.813764,0.944773,0.150217,0.410055,0.843018,0.946892,0.966778,0.875315,0.891845,0.223445,0.374476,0.813998,0.0669007,0.0197745,0.866821,0.595041,0.00713325,0.593798,0.542722,0.350285,0.626408,0.644556,0.729644,0.307087,0.0122712,0.68184,0.0250027,0.0695121,0.00749099,0.68524,0.70095,0.126656,0.337467,0.405925,0.484363,0.827613,0.17175,0.337453,0.998182,0.125296,0.231012,0.0952415,0.725273,0.53618,0.711313,0.333248,0.329666,0.695946,0.388798,0.510177,0.259204,0.306914,0.142447,0.804172,0.567637,0.0768416,0.970596,0.320777,0.725102,0.610185,0.836361,0.640256,0.495525,0.178852,0.813798,0.73431,0.787285,0.752434,0.733983,0.585854,0.98863,0.700461,0.8266,0.288055,0.919513,0.529839,0.669175,0.650589,0.286356,0.0298529,0.807313,0.0239241,0.967872,0.680099,0.911269,0.995385,0.613613,0.232289,0.244507,0.0318297,0.964735,0.172037,0.160127,0.565113,0.956768,0.570576,0.651087,0.151412,0.653032,0.0251589,0.592113,0.257799,0.689016,0.0494904,0.285035,0.113854,0.0780522,0.525521,0.46359,0.768612,0.344272,0.510932,0.855305,0.201647,0.179452,0.337238,0.873951,0.00667959,0.815412,0.418533,0.0548698,0.707425,0.482382,0.888778,0.142548,0.251855,0.85537,0.781196,0.187305,0.960068,0.921507,0.276446,0.44985,0.103446,0.876949,0.193621,0.573364,0.920323,0.3098,0.985656,0.88518,0.272192,0.423714,0.981431,0.720306,0.247804,0.860135,0.694642,0.0866869,0.5019,0.855305,0.371134,0.716867,0.439196,0.967418,0.815487,0.355354,0.504583,0.317023,0.224442,0.506323,0.287083,0.401587,0.750602,0.404494,0.895735,0.49356,0.0313153,0.890997,0.280608,0.720959,0.241,0.481988,0.828022,0.738291,0.682007,0.318056,0.410887,0.744959,0.805939,0.0280688,0.309447,0.619837,0.183714,0.777238,0.0739385,0.165511,0.0777761,0.74623,0.0416788,0.902444,0.416172,0.508367,0.852365,0.981575,0.658434,0.926942,0.136094,0.401095,0.447168,0.760693,0.303169,0.652576,0.559214,0.205543,0.871193,0.424835,0.153811,0.976942,0.0928681,0.371929,0.0219582,0.144274,0.970197,0.300506,0.890545,0.532645,0.560107,0.239035,0.590702,0.716416,0.942143,0.451898,0.525389,0.37852,0.700952,0.472561,0.541025,0.801313,0.0593788,0.554016,0.247,0.797231,0.00557536,0.43093,0.298542,0.328266,0.0880143,0.444008,0.601855,0.00521171,0.665664,0.910111,0.839891,0.161862,0.997719,0.948217,0.159299,0.0701781,0.987262,0.462343,0.598298,0.621954,0.654867,0.720334,0.345828,0.85619,0.259146,0.225164,0.889532,0.769286,0.943518,0.596512,0.575345,0.587371,0.498626,0.368149,0.594405,0.0190409,0.677262,0.316027,0.754661,0.671131,0.0175498,0.254349,0.581601,0.594821,0.975181,0.211885,0.134296,0.86769,0.513924,0.692742,0.916836,0.514565,0.906507,0.311613,0.704495,0.408435,0.955824,0.42468,0.539782,0.181674,0.270286,0.785975,0.223929,0.630754,0.335139,0.963404,0.809277,0.386218,0.0454783,0.438164,0.19759,0.282624,0.489686,0.412054,0.661119,0.558522,0.734838,0.336212,0.478149,0.195251,0.36726,0.683412,0.681278,0.667781,0.895567,0.0816727,0.827649,0.0514878,0.322826,0.804249,0.0154007,0.271386,0.87581,0.497777,0.502713,0.590709,0.535382,0.117205,0.766729,0.618355,0.618381,0.342562,0.715225,0.202259,0.842179,0.305659,0.289491,0.643297,0.200043,0.599426,0.638858,0.796059,0.98498,0.998427,0.732839,0.374785,0.608259,0.941885,0.563968,0.518705,0.480985,0.391011,0.538789,0.980449,0.287982,0.010669,0.882968,0.611577,0.289453,0.959764,0.753555,0.715114,0.458054,0.263622,0.524886,0.411515,0.0566458,0.848772,0.335976,0.108709,0.74432,0.789355,0.161602,0.93579,0.229087,0.967264,0.132722,0.982584,0.294235,0.229559,0.845263,0.472664,0.60926,0.387338,0.0838003,0.964288,0.796011,0.640131,0.449764,0.0627809,0.140629,0.97644,0.906191,0.664221,0.494029,0.368506,0.128983,0.571584,0.556884,0.930502,0.946289,0.914391,0.863943,0.16729,0.182654,0.413454,0.12496,0.717698,0.435737,0.694832,0.150903,0.568619,0.24827,0.178635,0.24832,0.744886,0.0587946,0.898992,0.172405,0.130831,0.383701,0.953031,0.723959,0.941138,0.0768226,0.911054,0.224471,0.988681,0.842059,0.375018,0.504317,0.51726,0.0779282,0.421025,0.656126,0.255239,0.222581,0.275949,0.199812,0.359047,0.142996,0.758375,0.627812,0.240425,0.36838,0.396431,0.531803,0.105847,0.929421,0.249157,0.655486,0.655799,0.900994,0.912051,0.421753,0.583014,0.534651,0.547602,0.0333607,0.393409,0.837271,0.171906,0.210691,0.371298,0.131072,0.173401,0.57597,0.856211,0.463131,0.0519491,0.269801,0.262943,0.226986,0.1193,0.976552,0.235734,0.803772,0.130758,0.976672,0.952571,0.295587,0.351252,0.0384465,0.330362,0.652195,0.228783,0.107181,0.403585,0.848899,0.68901,0.358908,0.200179,0.85629,0.526562,0.730059,0.486324,0.824326,0.845094,0.200868,0.310341,0.0615497,0.140162,0.241098,0.0439432,0.151928,0.327868,0.819142,0.102289,0.74732,0.66551,0.435885,0.523317,0.119591,0.797525,0.271304,0.235297,0.775326,0.343905,0.703464,0.29958,0.0550812,0.70432,0.0649745,0.248116,0.034481,0.0415708,0.803834,0.161374,0.27233,0.143772,0.521613,0.610624,0.739112,0.869472,0.311826,0.278573,0.647727,0.764981,0.322819,0.236526,0.217886,0.210986,0.319099,0.232118,0.430394,0.93753,0.486864,0.0931801,0.153466,0.00938904,0.666916,0.718048,0.595687,0.256237,0.45104,0.477024,0.584695,0.67045,0.125466,0.498076,0.130683,0.707013,0.61924,0.455197,0.947664,0.417148,0.0429569,0.0921856,0.234747,0.569992,0.22345,0.751545,0.708986,0.683627,0.105387,0.549052,0.108976,0.993629,0.767616,0.716886,0.00434184,0.869164,0.848692,0.0912967,0.800188,0.670834,0.0832046,0.895123,0.476577,0.30534,0.998731,0.00410444,0.442983,0.868988,0.674153,0.98172,0.655559,0.125859,0.783804,0.643308,0.583816,0.354792,0.390855,0.424392,0.276342,0.332873,0.926393,0.358226,0.946927,0.46959,0.640441,0.571045,0.568899,0.11175,0.0434709,0.84046,0.00277972,0.0100899,0.134437,0.423422,0.132123,0.189494,0.0505063,0.888293,0.737692,0.664514,0.0609683,0.14567,0.503161,0.930135,0.49386,0.634925,0.353143,0.567488,0.134646,0.873904,0.170043,0.74747,0.306071,0.252277,0.684168,0.237668,0.567958,0.522041,0.416152,0.222399,0.146213,0.958494,0.53907,0.131652,0.180621,0.881943,0.0448335,0.493696,0.863528,0.964884,0.138306,0.816889,0.872975,0.242383,0.411373,0.284765,0.892522,0.0607867,0.961235,0.222507,0.636243,0.0269873,0.411095,0.790576,0.155856,0.941217,0.90935,0.460668,0.566155,0.319144,0.971683,0.16296,0.682582,0.678498,0.135365,0.507479,0.758614,0.897846,0.569635,0.390312,0.38715,0.684603,0.0233665,0.14885,0.336994,0.150425,0.835139,0.449773,0.911795,0.503239,0.454602,0.0663143,0.505371,0.0325432,0.73617,0.273798,0.536735,0.0528352,0.947186,0.700083,0.310056,0.0248994,0.186971,0.730451,0.837563,0.880485,0.359981,0.750158,0.00747412,0.0882701,0.567845,0.43264,0.749711,0.891038,0.876838,0.696292,0.0218728,0.912397,0.540895,0.629504,0.556069,0.409074,0.287932,0.589346,0.645649,0.745777,0.787731,0.747253,0.88569,0.0181623,0.715704,0.404221,0.335014,0.616683,0.435536,0.132607,0.929493,0.129898,0.281275,0.524703,0.722843,0.707487,0.164918,0.658994,0.149429,0.20011,0.508307,0.459287,0.687966,0.899775,0.837482,0.971237,0.783609,0.418595,0.595194,0.373272,0.697551,0.367425,0.675958,0.804032,0.901037,0.335997,0.143061,0.861214,0.776484,0.736847,0.654573,0.0837584,0.953852,0.398423,0.524582,0.855412,0.398372,0.686472,0.324865,0.433623,0.545789,0.679476,0.517014,0.382955,0.132735,0.261047,0.467921,0.0794654,0.329663,0.0662956,0.779887,0.985241,0.0754431,0.924952,0.887313,0.891309,0.0907141,0.543076,0.0215037,0.716308,0.396404,0.227624,0.467761,0.73684,0.159852,0.850524,0.307841,0.299791,0.509926,0.34308,0.857062,0.612163,0.0960022,0.828811,0.666619,0.658362,0.507109,0.314927,0.485631,0.331819,0.00827581,0.65645,0.146484,0.992058,0.0598187,0.595633,0.74904,0.329427,0.69035,0.425933,0.126753,0.0919928,0.361572,0.183115,0.80817,0.954046,0.165091,0.901763,0.334506,0.779885,0.744466,0.881477,0.387522,0.731597,0.305691,0.219959,0.181169,|0.146306,0.861412,0.312003,0.315897,0.072891,0.488824,0.337522,0.927257,0.606175,0.857234,0.463469,0.843717,0.79399,0.273651,0.120724,0.775147,0.775983,0.266334,0.868936,0.724512,0.247759,0.27586,0.55691,0.83528,0.252812,0.54887,0.534411,0.305287,0.56668,0.350284,0.765329,0.910351,0.466922,0.785284,0.193825,0.309735,0.193259,0.495592,0.641013,0.230363,0.435155,0.177538,0.510499,0.403732,0.586882,0.620743,0.264277,0.331241,0.76289,0.780901,0.154954,0.831921,0.0123215,0.11787,0.709593,0.984464,0.203574,0.915826,0.836092,0.0537661,0.203467,0.658483,0.857196,0.799984,0.172471,0.280934,0.330928,0.864589,0.552986,0.47656,0.906696,0.346601,0.0966876,0.433175,0.101174,0.793866,0.953822,0.7581,0.366366,0.655319,0.157697,0.184801,0.759802,0.986107,0.890055,0.460868,0.544893,0.354743,0.862441,0.386704,0.443115,0.996526,0.714808,0.359294,0.283589,0.84958,0.0634137,0.511086,0.60738,0.869154,0.135079,0.637054,0.431696,0.525386,0.373882,0.81663,0.878225,0.936024,0.196961,0.637271,0.861707,0.170715,0.518363,0.30571,0.472947,0.270212,0.414508,0.284175,0.849635,0.0159527,0.293025,0.15945,0.683679,0.864402,0.377199,0.784633,0.731973,0.000378609,0.257234,0.172622,0.665851,0.367903,0.145386,0.148361,0.268861,0.787517,0.348903,0.348716,0.641349,0.030379,0.593588,0.643796,0.485076,0.680444,0.639876,0.458154,0.95577,0.147095,0.133773,0.151857,0.627996,0.0392568,0.430399,0.748255,0.980805,0.436555,0.921889,0.862065,0.153006,0.0320977,0.638199,0.198639,0.961203,0.647509,0.847783,0.731031,0.208209,0.784634,0.365872,0.855699,0.341725,0.843782,0.477586,0.356063,0.823412,0.929265,0.658822,0.607408,0.184653,0.342474,0.647367,0.52471,0.659053,0.531012,0.60175,0.578105,0.96158,0.147675,0.571968,0.247449,0.415069,0.511355,0.48436,0.485389,0.552136,0.0877911,0.0904281,0.695297,0.101532,0.364117,0.690549,0.932257,0.79561,0.555223,0.461615,0.156001,0.890395,0.542014,0.154845,0.843227,0.677447,0.0062322,0.155484,0.244974,0.930145,0.418478,0.109235,0.821144,0.228466,0.0496129,0.424359,0.370321,0.734669,0.796507,0.87929,0.394886,0.928701,0.906432,0.403453,0.333908,0.143656,0.623454,0.0292677,0.818492,0.146993,0.503834,0.343418,0.0834464,0.042466,0.372944,0.32168,0.896568,0.800147,0.651313,0.603886,0.346456,0.618993,0.887205,0.330177,0.366856,0.486044,0.592192,0.621783,0.118398,0.726022,0.872502,0.761242,0.834718,0.331656,0.941392,0.421451,0.192309,0.105973,0.550417,0.522879,0.63067,0.0941001,0.692025,0.985967,0.666145,0.0541117,0.606946,0.439263,0.651149,0.138712,0.297786,0.203049,0.903253,0.684563,0.103098,0.705677,0.48276,0.437944,0.308403,0.0138854,0.20061,0.66488,0.748739,0.449516,0.491557,0.714875,0.770177,0.975265,0.923541,0.397762,0.445741,0.0620629,0.196372,0.811845,0.311334,0.622733,0.942949,0.989566,0.976975,0.911463,0.108894,0.588874,0.860333,0.828292,0.909952,0.81883,0.980779,0.258574,0.134565,0.949533,0.206663,0.455214,0.0461231,0.00843579,0.626884,0.645723,0.719195,0.954806,0.816199,0.822921,0.889752,0.845376,0.623238,0.737245,0.539909,0.407097,0.691747,0.0577395,0.889968,0.179024,0.276898,0.228051,0.235268,0.569543,0.730397,0.52116,0.672599,0.880972,0.208191,0.343543,0.720124,0.147021,0.529378,0.432464,0.926901,0.207149,0.568115,0.869734,0.298908,0.515613,0.427812,0.187141,0.939561,0.755467,0.415179,0.439164,0.465958,0.326473,0.484702,0.893773,0.171939,0.639809,0.555227,0.881648,0.222977,0.292053,0.309967,0.797373,0.88752,0.778713,0.138896,0.0838256,0.224521,0.99236,0.867086,0.532165,0.418045,0.126986,0.592447,0.029025,0.0433795,0.752918,0.57639,0.895242,0.121971,0.74711,0.787666,0.715691,0.0715623,0.149205,0.699836,0.00944173,0.770141,0.365152,0.645495,0.638564,0.414792,0.305384,0.00723112,0.42374,0.63148,0.654155,0.212043,0.0677007,0.551875,0.691357,0.0551785,0.428307,0.266493,0.486914,0.920798,0.663551,0.781587,0.348985,0.828574,0.382287,0.569035,0.0983168,0.325749,0.275461,0.418659,0.610072,0.294573,0.447426,0.565437,0.909163,0.0565916,0.763502,0.298649,0.480396,0.771968,0.258927,0.720451,0.37322,0.00899464,0.303897,0.0843655,0.190889,0.571864,0.261866,0.751052,0.924613,0.72817,0.314985,0.301628,0.898395,0.905489,0.167686,0.943794,0.808622,0.202442,0.689796,0.224373,0.328751,0.474999,0.233153,0.853602,0.0597958,0.405754,0.901333,0.920035,0.136285,0.642891,0.293815,0.218334,0.66384,0.674754,0.595427,0.318721,0.791619,0.81653,0.779431,0.395318,0.0101396,0.50582,0.310787,0.632551,0.779332,0.0039432,0.86968,0.6984,0.232549,0.66306,0.948941,0.775588,0.549735,0.463068,0.420176,0.689848,0.996741,0.466477,0.15801,0.151618,0.802031,0.877471,0.254627,0.130186,0.24364,0.0534773,0.86756,0.503445,0.80474,0.174389,0.851581,0.57246,0.944301,0.666886,0.993651,0.76395,0.38786,0.343665,0.132012,0.715264,0.762852,0.162472,0.559691,0.208855,0.392291,0.55777,0.573227,0.937363,0.0869107,0.797561,0.57138,0.920052,0.551932,0.0787455,0.671272,0.712204,0.673058,0.697211,0.612637,0.143735,0.665635,0.766595,0.904935,0.754535,0.789565,0.139836,0.0484176,0.234579,0.595795,0.824865,0.567262,0.141992,0.0738431,0.175635,0.576503,0.556214,0.877571,0.296782,0.739578,0.942214,0.57942,0.39391,0.778122,0.457943,0.223594,0.20252,0.739903,0.183621,0.0214583,0.574589,0.382861,0.737185,0.0171001,0.128883,0.0906712,0.160289,0.751279,0.889602,0.960147,0.161865,0.525932,0.107557,0.931784,0.687643,0.183645,0.680954,0.436955,0.368261,0.194166,0.314896,0.208996,0.849493,0.861315,0.331949,0.535458,0.745648,0.195592,0.0537445,0.252771,0.821288,0.47694,0.510207,0.28892,0.419951,0.431059,0.426771,0.388853,0.385229,0.497579,0.0209154,0.0660986,0.99196,0.613639,0.149132,0.246389,0.336897,0.995978,0.849041,0.85373,0.268201,0.0222314,0.155804,0.33167,0.619682,0.251398,0.928653,0.362215,0.913586,0.616876,0.734706,0.832461,0.922114,0.636399,0.663925,0.505849,0.277151,0.811564,0.905354,0.0712566,0.117769,0.480824,0.0985021,0.996111,0.185472,0.675389,0.845401,0.62516,0.117842,0.0785505,0.0704241,0.138529,0.889194,0.286068,0.534157,0.213978,0.000910461,0.514095,0.338372,0.904753,0.143511,0.0641012,0.940729,0.105637,0.518878,0.377404,0.0761672,0.974058,0.994166,0.56504,0.505375,0.699281,0.548472,0.804464,0.536361,0.242082,0.142368,0.159428,0.26922,0.2241,0.291465,0.00283867,0.20908,0.348958,0.377984,0.866383,0.0474002,0.775481,0.886141,0.128432,0.644137,0.669066,0.00649637,0.407284,0.712765,0.910465,0.496472,0.0959712,0.135132,0.803078,0.931315,0.847895,0.270744,0.573688,0.982109,0.523388,0.187167,0.080828,0.522832,0.987974,0.280011,0.0974308,0.510373,0.0616432,0.231545,0.525482,0.924608,0.249117,0.422422,0.740155,0.932518,0.766877,0.0195416,0.865206,0.612119,0.670928,0.588313,0.35553,0.0535314,0.816561,0.223503,0.0571079,0.32376,0.6532,0.25023,0.288649,0.538184,0.35952,0.579968,0.639704,0.745247,0.288527,0.639876,0.0227348,0.735846,0.0468578,0.762358,0.222633,0.766069,0.982782,0.624745,0.418951,0.97285,0.0904586,0.695756,0.491252,0.392234,0.439454,0.882273,0.987394,0.458705,0.609509,0.857949,0.434388,0.206253,0.360979,0.435357,0.352353,0.417164,0.541409,0.46927,0.310098,0.0311414,0.192979,0.16496,0.0320625,0.760249,0.250265,0.891272,0.373104,0.0325069,0.712537,0.531585,0.109977,0.437237,0.955759,0.0808906,0.472909,0.0649123,0.733851,0.306489,0.929197,0.719258,0.239765,0.990925,0.184927,0.186443,0.233028,0.541774,0.190004,0.491664,0.171851,0.29915,0.797041,0.944574,0.103707,0.883828,0.77636,0.749503,0.0706961,0.725455,0.508891,0.31925,0.429139,0.457305,0.324229,0.589661,0.00745714,0.368633,0.85395,0.0684435,0.16715,0.367958,0.936445,0.243439,0.475356,0.229276,0.619419,0.529516,0.364631,0.00165248,0.505302,0.576442,0.348848,0.0938921,0.6823,0.171433,0.963957,0.558452,0.241965,0.379382,0.404832,0.155118,0.614131,0.826876,0.889287,0.0691603,0.74219,0.91012,0.974388,0.713088,0.0795084,0.737002,0.952912,0.184186,0.0188717,0.191961,0.179365,0.58599,0.417898,0.680594,0.837639,0.405153,0.13432,0.162489,0.541621,0.993751,0.221211,0.383089,0.153769,0.821601,0.446726,0.951352,0.575134,0.210546,0.311052,0.583975,0.466726,0.133196,0.56864,0.454826,0.398036,0.180602,0.202781,0.967692,0.651586,0.740945,0.357883,0.58191,0.0204957,0.578354,0.0607532,0.179822,0.183111,0.245912,0.820298,0.354919,0.227069,0.85755,0.0472069,0.398806,0.315831,0.778961,0.654754,0.100263,0.311329,0.599336,0.369692,0.152869,0.300773,0.154508,0.568482,0.0500469,0.345689,0.201963,0.467847,0.987063,0.798783,0.321074,0.647445,0.479005,0.60597,0.253506,0.993038,0.0654532,0.00371957,0.865565,0.442334,0.607332,0.416796,0.124143,0.801086,0.248906,0.0964553,0.477107,0.13574,0.884926,0.31772,0.54321,0.879081,0.698998,0.692982,0.309341,0.947797,0.659541,0.65498,0.239565,0.127275,0.0810012,0.0856349,0.166909,0.69606,0.352758,0.887151,0.531474,0.769053,0.859165,0.0376204,0.966038,0.963361,0.707932,0.627799,0.149913,0.87331,0.649374,0.168989,0.983983,0.929622,0.99218,0.715734,0.884429,0.646864,0.582123,0.860445,0.533835,0.632458,0.818552,0.762234,0.0192435,0.431449,0.336969,0.661776,0.0972649,0.216739,0.948986,0.121329,0.860459,0.971231,0.845456,0.548307,0.947316,0.350014,0.81064,0.815837,0.458671,0.510718,0.0583779,0.84772,0.0023939,0.442513,0.88734,0.863976,0.594694,|0.998111,0.0170379,0.87052,0.253819,0.0238054,0.982067,0.989701,0.223696,0.168873,0.54066,0.433444,0.0564618,0.0496087,0.382378,0.104531,0.326829,0.758141,0.662721,0.276268,0.120828,0.336797,0.040554,0.985226,0.366855,0.859883,0.447582,0.604996,0.590582,0.484722,0.0784269,0.735446,0.0544262,0.342648,0.636534,0.276936,0.447337,0.0383134,0.393289,0.21244,0.269064,0.421589,0.688223,0.890689,0.443022,0.415915,0.836532,0.14902,0.198105,0.986002,0.569818,0.0809609,0.643816,0.131243,0.167274,0.892375,0.547461,0.805024,0.929486,0.197385,0.233505,0.594396,0.381584,0.961514,0.75723,0.0744544,0.869882,0.904945,0.806187,0.730621,0.622863,0.533051,0.165522,0.808775,0.993768,0.167111,0.311158,0.936914,0.973314,0.361893,0.660074,0.590354,0.0418462,0.680433,0.225016,0.708113,0.998564,0.315255,0.450384,0.397718,0.0476577,0.34082,0.165438,0.252246,0.0278416,0.266374,0.120542,0.183507,0.492772,0.0643665,0.566181,0.449995,0.632151,0.309979,0.0286192,0.924196,0.225112,0.632465,0.889168,0.461529,0.710569,0.821151,0.148899,0.813771,0.593882,0.0248166,0.133805,0.283134,0.665424,0.641972,0.984607,0.535736,0.847953,0.919142,0.0665553,0.515481,0.881336,0.545763,0.00437993,0.501106,0.865397,0.104793,0.105636,0.782062,0.291042,0.494552,0.63452,0.832416,0.569773,0.975816,0.639171,0.736358,0.0621501,0.984112,0.871034,0.679044,0.808951,0.045426,0.849432,0.346594,0.576543,0.835575,0.243768,0.278136,0.272678,0.584022,0.499083,0.289327,0.522348,0.963262,0.363614,0.327205,0.742837,0.417558,0.89451,0.774611,0.934999,0.44198,0.949985,0.281722,0.387067,0.348597,0.49791,0.405533,0.1606,0.676164,0.0492538,0.278974,0.927993,0.884641,0.0110331,0.157688,0.66699,0.735064,0.428569,0.256171,0.127546,0.475189,0.439503,0.563947,0.0545872,0.714767,0.37216,0.607417,0.835184,0.324605,0.0313557,0.0557886,0.392901,0.790955,0.744166,0.706977,0.370005,0.102688,0.88588,0.896385,0.736523,0.313046,0.513774,0.950085,0.65359,0.303822,0.396661,0.742145,0.492081,0.746032,0.877466,0.678463,0.888637,0.357219,0.328925,0.0612161,0.631215,0.637844,0.986881,0.800593,0.601669,0.993971,0.126905,0.486761,0.301079,0.0755624,0.959862,0.233045,0.621718,0.529666,0.488527,0.738064,0.329349,0.122002,0.501134,0.75622,0.372293,0.426531,0.00450283,0.0595134,0.290924,0.758626,0.473431,0.328845,0.86908,0.79205,0.407471,0.837932,0.6099,0.982007,0.514617,0.243463,0.709417,0.0901338,0.778889,0.143274,0.840966,0.0486743,0.563848,0.599205,0.027599,0.306526,0.570629,0.605679,0.504899,0.600817,0.135017,0.0173185,0.968082,0.977131,0.287632,0.116424,0.901237,0.880388,0.572065,0.646051,0.543753,0.325321,0.635917,0.574646,0.593269,0.775514,0.575999,0.00872809,0.825227,0.639051,0.305664,0.171848,0.0105819,0.995843,0.706425,0.960638,0.0264952,0.623103,0.427237,0.950555,0.83187,0.708958,0.371904,0.928413,0.551836,0.99257,0.0053829,0.673959,0.733005,0.508642,0.576941,0.293678,0.596027,0.954444,0.640438,0.461388,0.0363417,0.90408,0.987865,0.967364,0.723993,0.469145,0.487054,0.160673,0.0599499,0.391067,0.239637,0.352955,0.138515,0.69305,0.376324,0.827438,0.751112,0.405944,0.19972,0.683763,0.582455,0.195921,0.385531,0.585219,0.761473,0.580015,0.551553,0.95869,0.954182,0.587829,0.38878,0.0986543,0.508597,0.769035,0.983972,0.582762,0.939215,0.578866,0.938583,0.674406,0.795685,0.75376,0.0101708,0.0641882,0.948221,0.63816,0.890624,0.393378,0.865176,0.820334,0.812464,0.831828,0.192686,0.717447,0.109442,0.644565,0.57883,0.349921,0.602905,0.620071,0.747436,0.203514,0.202703,0.0240157,0.308471,0.364416,0.200706,0.967781,0.133431,0.59629,0.10636,0.714619,0.398386,0.991045,0.335579,0.439098,0.187277,0.262253,0.906179,0.793703,0.196485,0.966053,0.902121,0.0303389,0.266482,0.667173,0.197285,0.103603,0.177928,0.0427091,0.128374,0.278439,0.661291,0.389156,0.0810708,0.241782,0.43448,0.246618,0.516923,0.301839,0.725538,0.77096,0.394971,0.557838,0.516573,0.524674,0.184348,0.456331,0.0377068,0.105149,0.443368,0.197801,0.698071,0.38434,0.819619,0.0550994,0.156734,0.126686,0.199353,0.173658,0.523504,0.118143,0.61181,0.236564,0.513266,0.870753,0.209672,0.844843,0.299192,0.132198,0.254105,0.581541,0.953187,0.30894,0.273257,0.885704,0.0651038,0.291548,0.976197,0.21029,0.246645,0.752318,0.873914,0.492187,0.535372,0.679469,0.776529,0.707464,0.419059,0.864699,0.328296,0.830968,0.463438,0.336587,0.677845,0.216496,0.155337,0.630468,0.0954615,0.981349,0.219956,0.72822,0.257411,0.714914,0.710531,0.330451,0.143958,0.0512703,0.856292,0.838594,0.69883,0.461645,0.599482,0.926508,0.0718066,0.912447,0.347292,0.0828297,0.68954,0.554367,0.265787,0.0186228,0.948717,0.0147277,0.586345,0.416379,0.505759,0.433606,0.688091,0.936533,0.401406,0.793358,0.521616,0.75076,0.803065,0.291824,0.0410777,0.0279067,0.18379,0.679033,0.381519,0.623862,0.461111,0.357981,0.933271,0.41917,0.480515,0.809595,0.0486987,0.768703,0.975084,0.826686,0.842341,0.499893,0.744623,0.997867,0.0188671,0.916886,0.439714,0.862682,0.763484,0.293583,0.67915,0.350907,0.983052,0.758097,0.450727,0.911686,0.623936,0.841369,0.445283,0.180881,0.10878,0.0538988,0.336076,0.518182,0.140547,0.214585,0.274194,0.374786,0.00941336,0.163933,0.634779,0.40987,0.424641,0.852383,0.424935,0.794785,0.230669,0.33609,0.238835,0.74029,0.501247,0.724279,0.59183,0.399444,0.951448,0.766144,0.000958502,0.683587,0.870658,0.874155,0.951786,0.119514,0.160215,0.381274,0.0537186,0.953976,0.0667387,0.736695,0.4901,0.264563,0.918668,0.544956,0.13252,0.0285864,0.277256,0.940565,0.64882,0.814066,0.212798,0.485956,0.474684,0.974144,0.0303916,0.841181,0.99752,0.330409,0.591036,0.874904,0.831249,0.139902,0.344758,0.508356,0.0818456,0.987379,0.239932,0.0253539,0.255262,0.876124,0.353056,0.220332,0.00241518,0.888595,0.688911,0.473208,0.558976,0.516912,0.278691,0.292824,0.108618,0.356072,0.402838,0.667584,0.230295,0.941019,0.455472,0.213773,0.700901,0.0841614,0.749951,0.628951,0.93059,0.424531,0.62133,0.215381,0.990984,0.680524,0.524212,0.0514864,0.630465,0.492499,0.750884,0.363549,0.143157,0.69072,0.280988,0.583157,0.176886,0.203933,0.244038,0.696362,0.332958,0.799122,0.153436,0.919826,0.601855,0.142303,0.7784,0.956999,0.300659,0.0631925,0.722853,0.208475,0.805512,0.632936,0.308224,0.88256,0.350559,0.524392,0.789301,0.836664,0.100668,0.142853,0.163578,0.113716,0.777263,0.313883,0.785551,0.386364,0.963971,0.145349,0.967494,0.123937,0.91865,0.916609,0.335386,0.772101,0.0796015,0.0386271,0.87582,0.311774,0.787314,0.437746,0.959829,0.0638762,0.847488,0.1803,0.130283,0.537213,0.330389,0.781097,0.359551,0.214669,0.0187021,0.979389,0.975298,0.419036,0.704764,0.683646,0.00143379,0.530194,0.672696,0.263574,0.946383,0.758137,0.750098,0.387638,0.773955,0.0687789,0.929138,0.334969,0.332158,0.262831,0.742128,0.718418,0.268153,0.78128,0.470016,0.284295,0.535165,0.322575,0.0318519,0.91646,0.298569,0.926209,0.0470886,0.326282,0.284803,0.41891,0.762418,0.759524,0.46226,0.631543,0.312078,0.969959,0.602051,0.248165,0.785332,0.871436,0.917739,0.217893,0.64812,0.783344,0.493478,0.545983,0.935766,0.541314,0.881932,0.845897,0.602953,0.657449,0.529489,0.328113,0.207503,0.420229,0.787065,0.823367,0.546381,0.887843,0.498948,0.859036,0.526409,0.818776,0.825087,0.0306,0.972518,0.652986,0.335094,0.760663,0.129447,0.321467,0.649204,0.221337,0.505213,0.332288,0.126569,0.866751,0.259199,0.301026,0.189969,0.840498,0.638482,0.772927,0.778761,0.534097,0.52044,0.308067,0.0351022,0.0741515,0.567566,0.964052,0.270508,0.748178,0.49135,0.0583835,0.984558,0.094858,0.16611,0.441997,0.990848,0.494827,0.0931764,0.425543,0.0859858,0.425519,0.815161,0.301786,0.019848,0.550701,0.792462,0.172503,0.0539594,0.869329,0.714773,0.904985,0.485044,0.17167,0.346952,0.587672,0.902052,0.240639,0.537467,0.04444,0.459747,0.135557,0.796409,0.275403,0.73136,0.445621,0.769607,0.463185,0.994568,0.52158,0.638484,0.286955,0.503998,0.214243,0.797751,0.685511,0.820131,0.62097,0.467597,0.918662,0.817774,0.187732,0.755639,0.188662,0.742998,0.43994,0.78962,0.611802,0.470199,0.273846,0.784132,0.545488,0.742373,0.0131211,0.13956,0.489221,0.805171,0.763929,0.162627,0.203406,0.843886,0.743167,0.39797,0.242624,0.416924,0.449681,0.104272,0.864808,0.714847,0.221614,0.400152,0.338148,0.616179,0.171531,0.685537,0.0168478,0.152973,0.637342,0.1901,0.387804,0.627556,0.873534,0.275374,0.436705,0.0539209,0.0747913,0.740416,0.487319,0.198252,0.802094,0.893004,0.506676,0.819362,0.335479,0.605436,0.525083,0.506323,0.834086,0.294878,0.960114,0.0236909,0.530582,0.713316,0.509166,0.672089,0.767315,0.0635559,0.826326,0.746839,0.535767,0.457742,0.29819,0.958019,0.0784028,0.388824,0.184904,0.324153,0.699956,0.727301,0.0571907,0.90193,0.343982,0.149303,0.7528,0.908051,0.13693,0.935444,0.0950281,0.285686,0.796663,0.832939,0.476515,0.489173,0.993068,0.305706,0.398768,0.501877,0.561741,0.367869,0.864626,0.453879,0.333958,0.432515,0.101348,0.898437,0.727345,0.425149,0.116516,0.376637,0.794615,0.663891,0.163044,0.626237,0.423983,0.329901,0.644015,0.0455369,0.398288,0.588649,0.138932,0.00362593,0.362607,0.908605,0.981768,0.427242,0.674374,0.407957,0.386701,0.383872,0.0650675,0.0496383,0.476698,0.272089,0.273606,0.193004,0.654109,0.47416,0.56912,0.938197,|0.980648,0.106844,0.0163099,0.0142727,0.146722,0.570982,0.519044,0.614385,0.636532,0.472995,0.582077,0.638443,0.787027,0.723648,0.0758703,0.364198,0.418019,0.518895,0.216424,0.828569,0.469024,0.505812,0.951316,0.119542,0.308802,0.584766,0.409427,0.596831,0.648009,0.243505,0.923527,0.696737,0.867219,0.413482,0.17101,0.242902,0.638988,0.504265,0.744799,0.00540435,0.496322,0.99178,0.848269,0.895077,0.20102,0.970269,0.8973,0.312219,0.561225,0.85048,0.83352,0.585123,0.0592809,0.325857,0.986866,0.435199,0.0508843,0.543579,0.854138,0.516626,0.630306,0.212689,0.100546,0.521055,0.406025,0.952329,0.412496,0.89203,0.890895,0.775956,0.414152,0.903468,0.879294,0.740986,0.793705,0.71998,0.762724,0.379118,0.945853,0.786181,0.0335796,0.711294,0.945668,0.972902,0.393139,0.393878,0.666252,0.130579,0.100335,0.568732,0.30762,0.192377,0.907182,0.152046,0.69655,0.526758,0.639076,0.921461,0.714795,0.93117,0.01464,0.520088,0.415413,0.902654,0.247872,0.748992,0.713392,0.560917,0.39002,0.524282,0.636306,0.217994,0.363795,0.370016,0.306376,0.671976,0.366259,0.338331,0.718378,0.706968,0.864139,0.102138,0.201452,0.14788,0.971112,0.176185,0.497136,0.65763,0.441514,0.453004,0.637195,0.340569,0.281125,0.559486,0.902746,0.977156,0.676469,0.603423,0.133674,0.931182,0.598956,0.0628296,0.545266,0.587218,0.0710766,0.830692,0.483944,0.215262,0.665498,0.23525,0.856347,0.628736,0.841944,0.0310336,0.76345,0.588575,0.825033,0.865565,0.915383,0.508322,0.554639,0.586446,0.0471894,0.459395,0.79144,0.0672149,0.379716,0.323477,0.666293,0.0149334,0.561524,0.506653,0.124765,0.970303,0.452137,0.940099,0.00850385,0.0483872,0.162654,0.00774765,0.133502,0.825337,0.951272,0.60578,0.0662634,0.424076,0.852013,0.654189,0.0405573,0.202367,0.218503,0.0196149,0.547698,0.0648208,0.746032,0.400481,0.836842,0.502353,0.553969,0.924237,0.756284,0.394306,0.512012,0.910185,0.54392,0.688868,0.614453,0.992967,0.780057,0.0919833,0.0444456,0.618151,0.865403,0.571169,0.183937,0.0550103,0.420475,0.818177,0.0590361,0.467174,0.495319,0.917395,0.752009,0.0466814,0.467384,0.392989,0.612274,0.412417,0.483403,0.809764,0.729035,0.884036,0.814696,0.550636,0.254311,0.757756,0.488853,0.0852147,0.396744,0.599344,0.868483,0.82838,0.350359,0.663388,0.547626,0.490189,0.0318344,0.96645,0.98433,0.550797,0.53208,0.254641,0.0144345,0.509351,0.00716466,0.49089,0.94722,0.172627,0.544705,0.788594,0.704467,0.856273,0.199734,0.840029,0.330225,0.301708,0.0888744,0.471638,0.93908,0.279255,0.231016,0.675855,0.206877,0.0635427,0.866338,0.767701,0.0236213,0.803747,0.79135,0.527066,0.759776,0.766508,0.858813,0.337158,0.706509,0.817823,0.850766,0.344149,0.473873,0.400837,0.696321,0.256573,0.126188,0.129359,0.980262,0.3784,0.0791171,0.269212,0.632057,0.741316,0.710717,0.0834112,0.423169,0.158731,0.459138,0.618486,0.0529647,0.575272,0.19811,0.116164,0.523018,0.759222,0.735842,0.463205,0.0448963,0.781746,0.330982,0.679172,0.661522,0.12621,0.750386,0.302273,0.886603,0.140632,0.250941,0.662535,0.0993482,0.688901,0.0780658,0.927507,0.0936428,0.399834,0.554357,0.493392,0.0277568,0.190468,0.55171,0.22896,0.0430167,0.17956,0.898042,0.770896,0.463161,0.0953042,0.939729,0.349209,0.390048,0.292294,0.638064,0.80799,0.319332,0.324945,0.511762,0.653485,0.012591,0.531999,0.229528,0.337335,0.193299,0.526799,0.715638,0.38246,0.140896,0.123946,0.488427,0.0442013,0.634575,0.645607,0.99799,0.595744,0.866207,0.372753,0.23324,0.846943,0.68371,0.831974,0.574328,0.829736,0.243656,0.425709,0.0325063,0.95344,0.0355899,0.0776067,0.244172,0.0735453,0.649298,0.997672,0.222323,0.973978,0.180884,0.179779,0.401888,0.0991254,0.968803,0.759761,0.0200711,0.224793,0.548903,0.253365,0.178953,0.395961,0.0266684,0.494024,0.749618,0.96884,0.703758,0.198005,0.0581272,0.17522,0.912332,0.143275,0.459421,0.838721,0.23804,0.341122,0.370497,0.274728,0.458771,0.635151,0.760583,0.70636,0.403849,0.0881191,0.231686,0.749475,0.0209694,0.336452,0.713846,0.0920208,0.739591,0.57978,0.74606,0.51313,0.532513,0.858929,0.6662,0.393497,0.62259,0.760105,0.568991,0.732005,0.0945359,0.378562,0.440288,0.624402,0.857982,0.850698,0.822515,0.276243,0.424498,0.158289,0.0434884,0.133709,0.764426,0.274467,0.0402799,0.321425,0.356842,0.255454,0.970271,0.433743,0.0474196,0.29163,0.901521,0.467024,0.757523,0.242047,0.876261,0.512005,0.423144,0.765071,0.255733,0.871988,0.990628,0.729541,0.824541,0.837387,0.603298,0.398421,0.159907,0.136362,0.360647,0.619479,0.814832,0.0319167,0.773213,0.857462,0.876226,0.651654,0.173849,0.863658,0.841629,0.538004,0.767701,0.858046,0.987528,0.87087,0.0134941,0.597925,0.349859,0.489955,0.794183,0.599653,0.187278,0.915932,0.268824,0.157324,0.190355,0.0990018,0.260025,0.417057,0.528374,0.585409,0.12023,0.441055,0.937138,0.889532,0.12922,0.0616229,0.65149,0.470361,0.490736,0.935919,0.782395,0.952231,0.731385,0.276345,0.0975116,0.691033,0.0668303,0.924197,0.514664,0.705948,0.50088,0.742562,0.311028,0.59514,0.625562,0.898768,0.152527,0.489889,0.571464,0.497575,0.843202,0.389382,0.649729,0.334795,0.224664,0.476052,0.917474,0.90782,0.503885,0.906796,0.952752,0.907829,0.240835,0.0115153,0.79457,0.299933,0.0540661,0.928859,0.159726,0.0659636,0.682793,0.723407,0.907233,0.325939,0.0928514,0.368631,0.621703,0.148859,0.430568,0.990547,0.183369,0.127205,0.938646,0.363601,0.671216,0.230254,0.943298,0.704038,0.912834,0.225601,0.389718,0.708018,0.817299,0.301104,0.8899,0.70159,0.426588,0.336975,0.780389,0.549833,0.367852,0.251086,0.945443,0.0508257,0.18597,0.0620301,0.421375,0.606391,0.463632,0.430684,0.0742943,0.709144,0.842741,0.692895,0.736892,0.438712,0.1835,0.677636,0.744671,0.744597,0.346862,0.214298,0.687248,0.469809,0.81439,0.535315,0.0866048,0.430266,0.0293655,0.299491,0.18607,0.401955,0.449785,0.238095,0.116963,0.135421,0.464182,0.348447,0.798814,0.814435,0.243662,0.650031,0.420668,0.775141,0.900923,0.40836,0.740107,0.792258,0.395425,0.484489,0.649397,0.750361,0.697703,0.0395261,0.572094,0.93242,0.552169,0.690405,0.0620626,0.88498,0.355567,0.0797684,0.858874,0.696929,0.180835,0.425241,0.515709,0.37223,0.00926214,0.493291,0.261336,0.936644,0.45667,0.478638,0.14401,0.538817,0.649492,0.532813,0.604812,0.563403,0.323347,0.652835,0.528779,0.126719,0.596924,0.41548,0.602686,0.649548,0.923936,0.446006,0.316649,0.482481,0.62056,0.282501,0.499609,0.859649,0.045071,0.13381,0.223668,0.189334,0.262202,0.643357,0.209999,0.535802,0.889841,0.964389,0.97442,0.722016,0.905575,0.046241,0.411008,0.551493,0.606226,0.850169,0.889654,0.57513,0.613202,0.32866,0.864157,0.54836,0.90256,0.836106,0.699029,0.556381,0.789598,0.613256,0.624699,0.621363,0.631818,0.137334,0.0237171,0.600546,0.878122,0.225484,0.639518,0.829572,0.946684,0.770434,0.0156518,0.985485,0.831114,0.539108,0.10516,0.430601,0.697102,0.439012,0.867161,0.0980395,0.578386,0.646938,0.666829,0.0143942,0.525949,0.731531,0.0116843,0.988574,0.446482,0.800272,0.702113,0.0812017,0.665781,0.030852,0.321088,0.790214,0.91845,0.858008,0.413706,0.528213,0.101149,0.574761,0.60445,0.93921,0.552884,0.79461,0.0599216,0.670929,0.870038,0.643142,0.670745,0.662284,0.0646125,0.788129,0.609924,0.620235,0.053022,0.713431,0.958407,0.480889,0.169961,0.809456,0.620303,0.285883,0.348714,0.835351,0.00502455,0.375497,0.981759,0.275277,0.608979,0.719775,0.539051,0.264321,0.659456,0.274221,0.653811,0.107584,0.875067,0.750389,0.634733,0.761319,0.00072217,0.342503,0.569162,0.103062,0.775645,0.496783,0.879439,0.828143,0.0460954,0.123552,0.886319,0.381673,0.174025,0.50696,0.745191,0.0154777,0.55624,0.649484,0.691972,0.141392,0.422831,0.619888,0.761762,0.343441,0.564598,0.847195,0.310739,0.363943,0.505177,0.937699,0.466761,0.69174,0.179209,0.0772842,0.758392,0.551269,0.196045,0.9044,0.730314,0.542675,0.855619,0.497023,0.971122,0.900573,0.731331,0.845373,0.396477,0.630413,0.432312,0.632009,0.649571,0.580049,0.638912,0.604235,0.705272,0.819289,0.766673,0.741941,0.942452,0.854594,0.778395,0.837727,0.33604,0.605646,0.424103,0.685956,0.440074,0.208637,0.240408,0.439181,0.789684,0.928836,0.988669,0.250489,0.547853,0.349246,0.250298,0.807151,0.740521,0.706056,0.605708,0.0977265,0.435667,0.683087,0.897195,0.736047,0.867435,0.0893391,0.682429,0.93956,0.157976,0.990478,0.709725,0.652954,0.011251,0.6221,0.0635216,0.465482,0.310209,0.0807997,0.536401,0.995092,0.654514,0.188986,0.505319,0.879161,0.800088,0.594964,0.0585014,0.783885,0.660673,0.0774637,0.654045,0.414981,0.782522,0.192483,0.111738,0.410423,0.24502,0.841012,0.0981154,0.497053,0.160897,0.632899,0.291159,0.667438,0.987155,0.322532,0.295281,0.364903,0.51168,0.914981,0.248943,0.177003,0.433076,0.739088,0.988119,0.0812427,0.63973,0.936451,0.952224,0.236845,0.384964,0.639192,0.0175007,0.109412,0.560061,0.360745,0.409267,0.639362,0.237158,0.918519,0.567109,0.695704,0.394633,0.820808,0.935957,0.00783163,0.495179,0.154372,0.733252,0.425664,0.401368,0.129603,0.79592,0.649479,0.30012,0.344177,0.0394439,0.635767,0.727139,0.0791149,0.638199,0.680471,0.425012,0.576282,0.165854,0.615511,0.145913,0.848263,0.83926,0.213224,0.774391,0.679339,0.579324,0.466661,0.261327,0.353275,0.0549819,0.0578979,0.713839,0.778737,0.746188,0.855647,0.781857,0.588153,|0.809417,0.140255,0.397179,0.281374,0.892337,0.559619,0.88936,0.256278,0.102652,0.251102,0.65851,0.730174,0.836981,0.429428,0.00940949,0.568813,0.680455,0.415372,0.566113,0.391011,0.948052,0.666133,0.639883,0.552252,0.460605,0.220642,0.348752,0.558349,0.453133,0.746011,0.5629,0.254532,0.999176,0.26762,0.60459,0.404041,0.11217,0.309838,0.217529,0.0695279,0.408911,0.979856,0.0795724,0.367369,0.945684,0.152875,0.629458,0.233633,0.495992,0.445979,0.793326,0.993538,0.335495,0.747451,0.232898,0.679511,0.431954,0.496812,0.765679,0.898251,0.207022,0.128556,0.917917,0.077982,0.700539,0.0394821,0.257183,0.956667,0.877859,0.977467,0.297389,0.564529,0.574544,0.363186,0.275335,0.370416,0.644704,0.600251,0.89481,0.616806,0.979452,0.824149,0.0902821,0.871642,0.955285,0.600684,0.4076,0.502231,0.181446,0.784184,0.908095,0.931393,0.814865,0.0878936,0.406099,0.197783,0.523459,0.794833,0.190621,0.407352,0.94457,0.819109,0.327192,0.136893,0.00177717,0.181758,0.472956,0.142546,0.700039,0.350739,0.460056,0.292656,0.0334579,0.692598,0.543114,0.871816,0.0197747,0.782233,0.337475,0.164633,0.803366,0.23266,0.736505,0.950372,0.156137,0.929,0.565918,0.902212,0.250185,0.0644068,0.1019,0.292045,0.795231,0.959036,0.796254,0.306565,0.447968,0.850427,0.871838,0.724648,0.800613,0.525202,0.583212,0.208701,0.473616,0.0495768,0.254251,0.855539,0.574158,0.965805,0.434124,0.271354,0.65661,0.47491,0.19189,0.59482,0.371568,0.771093,0.570755,0.66214,0.634115,0.549492,0.513254,0.0316101,0.906611,0.346769,0.308006,0.894354,0.736755,0.0133933,0.0469646,0.208776,0.251203,0.629216,0.567398,0.410045,0.0200373,0.983589,0.700725,0.237475,0.791704,0.982762,0.0291858,0.613638,0.412568,0.875677,0.614611,0.292384,0.0651645,0.720295,0.822436,0.643795,0.67074,0.0794984,0.738697,0.315192,0.535281,0.0348939,0.37797,0.977039,0.467457,0.0327569,0.304055,0.00773114,0.838485,0.328549,0.517449,0.48875,0.0762786,0.578932,0.724476,0.694186,0.212118,0.517545,0.445893,0.60219,0.327028,0.6055,0.259128,0.527338,0.608134,0.986107,0.355003,0.730851,0.848939,0.523229,0.77484,0.909196,0.535693,0.998741,0.206322,0.429672,0.738448,0.627462,0.131583,0.0450249,0.444403,0.87833,0.00152642,0.423695,0.197715,0.171048,0.604617,0.455225,0.247427,0.898791,0.763529,0.883564,0.647548,0.942905,0.284644,0.343136,0.887987,0.498518,0.247113,0.656059,0.363918,0.610454,0.594903,0.00498199,0.697968,0.477951,0.35414,0.0803332,0.694364,0.0907758,0.966888,0.250074,0.497005,0.257433,0.893076,0.217257,0.960021,0.789198,0.545793,0.608917,0.0474172,0.349706,0.410677,0.0686272,0.879941,0.208114,0.884448,0.70516,0.392019,0.977623,0.577538,0.472299,0.54657,0.46962,0.460113,0.281135,0.15385,0.0688506,0.864567,0.850228,0.248039,0.870365,0.230536,0.856374,0.822191,0.970354,0.728888,0.352124,0.538519,0.135663,0.958468,0.468127,0.869642,0.914562,0.130192,0.20827,0.287608,0.945678,0.741244,0.135901,0.0115761,0.0851778,0.385759,0.461677,0.152006,0.849957,0.265037,0.676154,0.145276,0.142105,0.245806,0.0561586,0.688388,0.56028,0.0816978,0.255985,0.984568,0.00482821,0.650012,0.94633,0.187378,0.817886,0.0411078,0.590113,0.143837,0.574954,0.0329152,0.521131,0.818452,0.989986,0.967893,0.507825,0.776637,0.417362,0.11087,0.429136,0.0744816,0.300313,0.00283492,0.764296,0.276125,0.743403,0.619584,0.695209,0.267441,0.902153,0.91681,0.547912,0.34059,0.402668,0.0897136,0.564262,0.551893,0.281523,0.785801,0.963711,0.177217,0.196214,0.521269,0.183346,0.223337,0.562577,0.841197,0.491682,0.169531,0.259637,0.842358,0.273248,0.870631,0.869969,0.218156,0.313401,0.955764,0.0360485,0.4064,0.777043,0.17282,0.214098,0.544776,0.487922,0.359801,0.141505,0.186108,0.573872,0.0580797,0.844467,0.628962,0.455825,0.191537,0.41631,0.608039,0.209649,0.453645,0.151539,0.844502,0.066784,0.693313,0.915215,0.437745,0.0685709,0.270312,0.600187,0.757611,0.681001,0.74853,0.813976,0.140352,0.869494,0.331703,0.905545,0.575245,0.950425,0.83988,0.732826,0.711545,0.784862,0.587608,0.933619,0.781913,0.00783288,0.591788,0.502372,0.965333,0.171753,0.845281,0.00469887,0.187429,0.606849,0.0543635,0.369196,0.914756,0.844648,0.52748,0.56921,0.452323,0.766711,0.527683,0.883176,0.245932,0.144399,0.313837,0.17571,0.841992,0.248515,0.860166,0.872725,0.65841,0.015911,0.0200347,0.3951,0.257857,0.578359,0.490663,0.496675,0.48957,0.787302,0.482744,0.347602,0.663377,0.560262,0.41832,0.0886586,0.107178,0.889187,0.164609,0.631382,0.485943,0.722669,0.315646,0.740243,0.26728,0.799156,0.51339,0.356063,0.803527,0.93695,0.449215,0.0847247,0.512062,0.116903,0.0870017,0.688537,0.403087,0.866593,0.974943,0.674113,0.181797,0.832384,0.880417,0.884833,0.249207,0.137963,0.899148,0.769538,0.405538,0.626224,0.877666,0.607592,0.893192,0.42097,0.541821,0.183094,0.320444,0.965925,0.545437,0.307044,0.272055,0.456212,0.913954,0.891135,0.565091,0.501712,0.944973,0.167566,0.443256,0.678825,0.969873,0.136569,0.25149,0.754341,0.901417,0.811283,0.715981,0.889703,0.631944,0.977499,0.708961,0.754563,0.795575,0.761728,0.492207,0.206948,0.183526,0.317547,0.978294,0.479945,0.871312,0.801417,0.586815,0.215062,0.303696,0.700697,0.818039,0.864368,0.811969,0.377882,0.385026,0.221367,0.0457113,0.319411,0.33939,0.992931,0.0386282,0.950431,0.241403,0.69549,0.430208,0.650792,0.456051,0.875412,0.25593,0.264918,0.178775,0.934422,0.670824,0.602033,0.457391,0.173266,0.84377,0.0949004,0.335372,0.00418562,0.687668,0.538792,0.654289,0.00242102,0.359529,0.597274,0.376726,0.738282,0.382109,0.105678,0.860509,0.46986,0.999342,0.384318,0.950713,0.698194,0.665881,0.330202,0.980857,0.473484,0.337211,0.881448,0.499816,0.358169,0.516502,0.545846,0.959467,0.61224,0.433128,0.0775445,0.993067,0.157486,0.682292,0.13153,0.393992,0.730512,0.284077,0.921589,0.260163,0.630695,0.0213368,0.555873,0.29209,0.514204,0.975624,0.0451919,0.372734,0.5255,0.744466,0.355644,0.530839,0.576962,0.00990963,0.60271,0.381174,0.780178,0.708028,0.747669,0.122033,0.225606,0.855151,0.528995,0.72355,0.181324,0.293786,0.19065,0.791457,0.827723,0.258635,0.419518,0.187312,0.583082,0.217794,0.259343,0.169018,0.892053,0.487506,0.433461,0.916871,0.314251,0.12315,0.86212,0.874458,0.333473,0.679473,0.132247,0.498413,0.768232,0.324847,0.223958,0.904985,0.667886,0.163516,0.0276616,0.195586,0.904855,0.752678,0.216737,0.683953,0.334327,0.0710009,0.401831,0.000174642,0.135222,0.521164,0.506748,0.894177,0.289532,0.0799771,0.670239,0.652158,0.375914,0.13136,0.207721,0.186473,0.719862,0.0496454,0.436854,0.733779,0.186324,0.669787,0.546337,0.201956,0.257275,0.139456,0.357593,0.963133,0.696437,0.582846,0.690028,0.789837,0.769785,0.914543,0.723946,0.0559715,0.835752,0.702864,0.237811,0.261058,0.928087,0.785088,0.30592,0.392233,0.401557,0.518838,0.841721,0.822661,0.452837,0.576648,0.914657,0.678309,0.378131,0.523863,0.600318,0.173946,0.323456,0.0618946,0.831866,0.901221,0.509781,0.999087,0.446432,0.785872,0.862041,0.688675,0.151972,0.657721,0.291557,0.847538,0.868671,0.542127,0.332923,0.895683,0.0074262,0.731768,0.152505,0.581143,0.0448769,0.819982,0.978358,0.523004,0.463831,0.765249,0.07929,0.489547,0.255507,0.667962,0.769448,0.862017,0.907158,0.0355203,0.300238,0.956448,0.411832,0.597238,0.17576,0.462985,0.800296,0.979968,0.880697,0.566661,0.678654,0.0299128,0.590644,0.011649,0.904448,0.86684,0.683816,0.619021,0.905106,0.48433,0.517774,0.0911326,0.973726,0.382156,0.686328,0.217363,0.102844,0.332653,0.930337,0.88995,0.850908,0.311568,0.610054,0.798841,0.707431,0.540474,0.643904,0.934463,0.591273,0.285254,0.254321,0.178091,0.35525,0.988552,0.72393,0.20775,0.533464,0.52796,0.832088,0.131151,0.410594,0.400178,0.31142,0.521766,0.756679,0.708408,0.768647,0.252254,0.631807,0.469039,0.770107,0.788571,0.41106,0.435722,0.82927,0.153748,0.048238,0.417746,0.784508,0.801297,0.836983,0.329796,0.421011,0.492909,0.925186,0.893121,0.423956,0.529661,0.770559,0.757406,0.987431,0.652368,0.333683,0.561258,0.497127,0.188847,0.753567,0.525731,0.695107,0.882612,0.650691,0.302113,0.984942,0.8754,0.160739,0.926831,0.544884,0.0337901,0.598549,0.431351,0.0960566,0.516732,0.902661,0.424027,0.812237,0.878935,0.383909,0.626124,0.80731,0.345444,0.233555,0.0778125,0.986823,0.559739,0.458106,0.0424064,0.501752,0.355324,0.17039,0.937696,0.391854,0.252094,0.350986,0.0456417,0.141977,0.427844,0.508675,0.015154,0.9673,0.420084,0.618175,0.733282,0.779086,0.514323,0.0301204,0.441023,0.196957,0.588414,0.850874,0.0712661,0.237974,0.546981,0.384298,0.470531,0.0082826,0.188476,0.979408,0.245687,0.857693,0.325541,0.999188,0.139543,0.744516,0.422942,0.331797,0.726525,0.430661,0.0268941,0.233898,0.111017,0.984173,0.676735,0.836986,0.634407,0.736724,0.405234,0.0907924,0.87317,0.546757,0.879297,0.282486,0.645672,0.699704,0.192148,0.841599,0.358172,0.0752966,0.990639,0.244415,0.603529,0.832098,0.269476,0.803571,0.817422,0.58687,0.661438,0.673181,0.726096,0.685404,0.403369,0.510067,0.82335,0.853881,0.114065,0.129134,0.0335307,0.650801,0.784769,0.557971,0.529316,0.53726,0.979593,0.759156,0.329715,0.0982848,0.307475,0.956806,0.778856,0.457607,0.648761,0.0203356,0.254466,0.252721,0.183328,0.510325,0.805815,0.204275,0.369052,0.162497,0.30678,0.094826,|0.138878,0.496783,0.403449,0.130641,0.0524413,0.0931726,0.503395,0.953687,0.00281096,0.76312,0.524122,0.984604,0.102309,0.155825,0.115169,0.554981,0.753564,0.106921,0.786119,0.946756,0.360143,0.685937,0.322824,0.681106,0.720884,0.00558388,0.86242,0.510769,0.384011,0.502166,0.400252,0.352706,0.233908,0.865456,0.697973,0.150436,0.864705,0.805868,0.244966,0.123289,0.142002,0.194024,0.38001,0.373312,0.0123231,0.0177459,0.367129,0.115072,0.638278,0.677641,0.0663213,0.455663,0.520438,0.224661,0.00659889,0.193806,0.714742,0.885303,0.353219,0.154086,0.165136,0.54129,0.302312,0.259971,0.0260055,0.124623,0.996047,0.665605,0.402973,0.247988,0.197614,0.806185,0.422653,0.998993,0.788399,0.112096,0.534005,0.944209,0.825819,0.77729,0.392915,0.914909,0.981142,0.720754,0.311529,0.983444,0.283087,0.849666,0.907748,0.12922,0.49007,0.119569,0.490999,0.669003,0.174368,0.160903,0.228063,0.0635593,0.163522,0.804438,0.621139,0.318258,0.902507,0.00970185,0.548189,0.585028,0.298322,0.182114,0.502482,0.952885,0.646545,0.260527,0.825062,0.527391,0.281581,0.195505,0.678079,0.267838,0.494107,0.820397,0.683636,0.0414357,0.156325,0.584205,0.985147,0.374386,0.789832,0.059189,0.753219,0.608935,0.207902,0.329367,0.428233,0.966018,0.786764,0.732454,0.261634,0.0857192,0.38502,0.886621,0.264554,0.510948,0.176847,0.381819,0.696647,0.571368,0.588448,0.00313514,0.181727,0.244081,0.595642,0.970691,0.0830545,0.488143,0.515864,0.898362,0.200658,0.431622,0.773831,0.772504,0.340854,0.321952,0.954271,0.387919,0.244885,0.17945,0.623455,0.100185,0.444951,0.582574,0.507468,0.34399,0.546658,0.317393,0.144053,0.423904,0.676951,0.836129,0.368008,0.376803,0.320512,0.452696,0.831198,0.713467,0.707024,0.128354,0.256131,0.392049,0.443887,0.340377,0.644237,0.152073,0.350961,0.768052,0.50723,0.993172,0.172059,0.827455,0.533822,0.617526,0.429638,0.699954,0.22739,0.244356,0.12311,0.0853946,0.240001,0.212851,0.837722,0.284461,0.975366,0.677226,0.902969,0.3976,0.220061,0.510272,0.993213,0.945739,0.213737,0.171714,0.692923,0.492426,0.096735,0.510984,0.197851,0.100866,0.536885,0.462407,0.542594,0.976097,0.622068,0.0445013,0.602449,0.149046,0.601891,0.81454,0.0899968,0.577412,0.545287,0.271039,0.743627,0.914633,0.443264,0.870682,0.528271,0.597977,0.0690877,0.159286,0.467578,0.0269216,0.587733,0.669222,0.0390478,0.847088,0.790922,0.324025,0.766057,0.866253,0.329262,0.954841,0.796838,0.0850959,0.871542,0.756457,0.923232,0.45907,0.354278,0.932185,0.132232,0.582971,0.820703,0.0555925,0.179897,0.581845,0.30958,0.259569,0.680796,0.310629,0.0661317,0.76471,0.263688,0.062021,0.00294822,0.279211,0.584976,0.288254,0.2186,0.0658072,0.0948208,0.590542,0.1001,0.952215,0.190717,0.915556,0.155396,0.586206,0.500306,0.304754,0.287372,0.24503,0.625799,0.516791,0.00885218,0.435284,0.512494,0.185824,0.367172,0.97745,0.411587,0.72444,0.407264,0.790288,0.731132,0.803845,0.678357,0.866681,0.098944,0.118986,0.590866,0.427893,0.158685,0.0133857,0.924848,0.421275,0.0787849,0.170105,0.683165,0.616784,0.212907,0.131911,0.426955,0.108066,0.325656,0.0964735,0.476225,0.620269,0.221979,0.308841,0.269883,0.500312,0.924126,0.752066,0.129101,0.106264,0.446077,0.356929,0.872797,0.0705116,0.961942,0.851995,0.448216,0.337062,0.70802,0.949042,0.956789,0.859195,0.65015,0.057671,0.877379,0.71308,0.541873,0.107866,0.192165,0.113218,0.978581,0.607059,0.24358,0.508679,0.422218,0.902256,0.459631,0.0087316,0.72832,0.741159,0.317922,0.756555,0.44862,0.211565,0.286883,0.326369,0.775555,0.11296,0.513552,0.505819,0.58752,0.471176,0.520977,0.644742,0.950993,0.477661,0.553682,0.345564,0.954444,0.111692,0.737146,0.378584,0.824273,0.0147808,0.460669,0.439359,0.0134817,0.986052,0.650269,0.192209,0.227051,0.344329,0.641613,0.454078,0.930373,0.455724,0.601554,0.190955,0.941735,0.0789397,0.893268,0.607254,0.433506,0.932706,0.00971675,0.59051,0.0118653,0.345894,0.136101,0.449122,0.350115,0.532641,0.698191,0.15127,0.169683,0.477836,0.370063,0.607326,0.591035,0.668573,0.926639,0.245461,0.12967,0.207997,0.68156,0.295367,0.0757309,0.849368,0.351479,0.960236,0.844917,0.877772,0.0619783,0.750615,0.728094,0.79359,0.639228,0.786145,0.269829,0.107665,0.030679,0.675637,0.114888,0.837584,0.0294158,0.38703,0.219154,0.716715,0.869232,0.682851,0.627345,0.843978,0.189809,0.515936,0.33809,0.601563,0.905707,0.977047,0.762999,0.603746,0.429451,0.840552,0.106522,0.790128,0.852179,0.034724,0.0663235,0.0706245,0.492024,0.0912736,0.225223,0.839552,0.499622,0.739215,0.318038,0.726411,0.899969,0.828161,0.619051,0.925766,0.435853,0.786226,0.0434616,0.2865,0.170426,0.800292,0.11514,0.991699,0.457635,0.207225,0.732172,0.456879,0.582635,0.503918,0.504158,0.601519,0.751359,0.641208,0.356736,0.58237,0.92042,0.450992,0.475768,0.145769,0.357931,0.65926,0.295062,0.30295,0.863488,0.618392,0.996017,0.206177,0.318498,0.81538,0.0727882,0.502185,0.410253,0.854991,0.183107,0.0508134,0.434232,0.634805,0.180823,0.199135,0.285507,0.0583636,0.0223655,0.885104,0.942999,0.770719,0.659188,0.415726,0.298684,0.650838,0.815753,0.0571807,0.569539,0.845246,0.396955,0.379777,0.31122,0.0284712,0.366094,0.59706,0.608134,0.161052,0.157423,0.715528,0.668278,0.206295,0.864232,0.838408,0.488902,0.635386,0.688587,0.919382,0.335882,0.074535,0.766219,0.104308,0.914992,0.247363,0.37145,0.854745,0.734413,0.55232,0.51658,0.134195,0.432783,0.603948,0.27276,0.765357,0.750106,0.833204,0.784458,0.693669,0.171308,0.514273,0.311452,0.27153,0.360052,0.0823138,0.789187,0.486229,0.077457,0.832501,0.369195,0.924659,0.979992,0.414981,0.337745,0.349961,0.0343202,0.872741,0.183568,0.823905,0.823637,0.93851,0.287027,0.909585,0.890658,0.305885,0.69976,0.513847,0.473746,0.329823,0.48727,0.152388,0.130825,0.78137,0.815981,0.918125,0.361656,0.696251,0.987351,0.727298,0.115605,0.173483,0.550877,0.783375,0.500924,0.771614,0.636495,0.624883,0.560431,0.10879,0.290686,0.813174,0.0722733,0.541473,0.628309,0.251526,0.752027,0.389497,0.0161145,0.132112,0.520131,0.652463,0.226359,0.915035,0.996863,0.205487,0.256034,0.0171294,0.92159,0.780659,0.836087,0.639307,0.723743,0.473926,0.429426,0.431337,0.485468,0.123516,0.243207,0.69965,0.333696,0.0624399,0.399132,0.290325,0.392827,0.0522099,0.989497,0.952724,0.93991,0.474229,0.503342,0.806948,0.249383,0.863545,0.270893,0.715365,0.491418,0.500121,0.273912,0.283978,0.561432,0.309653,0.680045,0.817771,0.688547,0.129218,0.570182,0.149344,0.134125,0.817555,0.261338,0.90717,0.207469,0.951789,0.0797775,0.752358,0.569623,0.279887,0.831656,0.0914423,0.297536,0.883274,0.980247,0.125877,0.388842,0.664595,0.632006,0.467461,0.953193,0.443426,0.325998,0.181341,0.419977,0.57238,0.507625,0.955679,0.743993,0.716926,0.0886985,0.182561,0.318116,0.406417,0.885853,0.978,0.0349226,0.306954,0.672357,0.163535,0.777799,0.658307,0.798901,0.497403,0.576271,0.824072,0.750681,0.000155389,0.933651,0.272735,0.363421,0.221911,0.671072,0.540278,0.819605,0.55467,0.443163,0.400033,0.950694,0.0223904,0.0891678,0.62694,0.853986,0.650104,0.357826,0.136983,0.661158,0.210993,0.374946,0.277642,0.359121,0.306672,0.0539257,0.303591,0.356146,0.955077,0.955043,0.90247,0.716159,0.402691,0.712313,0.487682,0.379457,0.504054,0.539799,0.336276,0.0693736,0.523519,0.432226,0.944139,0.341478,0.0177177,0.983843,0.753641,0.0942371,0.928094,0.474114,0.679148,0.106082,0.134185,0.1043,0.117291,0.593319,0.419818,0.664718,0.772661,0.452036,0.764809,0.97507,0.788745,0.457037,0.777083,0.0920593,0.181975,0.191828,0.0740373,0.475899,0.545974,0.993765,0.516307,0.940938,0.710778,0.92318,0.323995,0.455808,0.857167,0.912596,0.12147,0.98469,0.343499,0.850929,0.495124,0.186829,0.434191,0.240622,0.795847,0.10002,0.246122,0.0579423,0.164854,0.428325,0.728227,0.0401559,0.536974,0.922047,0.913316,0.748461,0.0165048,0.730736,0.631655,0.773114,0.129641,0.744071,0.358771,0.357798,0.621892,0.993396,0.905536,0.282198,0.170635,0.647133,0.912061,0.509156,0.658871,0.0601305,0.778205,0.539371,0.650187,0.231793,0.20731,0.731137,0.242464,0.475687,0.131276,0.618605,0.274462,0.631764,0.542474,0.50313,0.449749,0.714743,0.190794,0.224334,0.689189,0.98055,0.0508775,0.734732,0.89896,0.987901,0.834238,0.606623,0.0153688,0.906766,0.611455,0.573653,0.390182,0.047632,0.54767,0.912093,0.620949,0.841034,0.254943,0.797855,0.532118,0.181621,0.903872,0.936313,0.0392802,0.204318,0.5421,0.620489,0.60791,0.575447,0.588132,0.32129,0.217914,0.941101,0.0134872,0.84059,0.645265,0.189738,0.284352,0.48498,0.0123186,0.212592,0.370176,0.524743,0.486832,0.315037,0.928976,0.763654,0.684092,0.414623,0.341964,0.101018,0.684388,0.372231,0.992807,0.785191,0.219147,0.328052,0.57745,0.423652,0.918058,0.43527,0.242493,0.0995125,0.147289,0.825086,0.428201,0.370561,0.168367,0.962559,0.969057,0.185013,0.756598,0.721624,0.722567,0.48132,0.488981,0.426581,0.747359,0.719318,0.0698025,0.666232,0.132315,0.285797,0.438592,0.460716,0.94204,0.431241,0.479766,0.32937,0.199297,0.43059,0.0990271,0.00396657,0.317859,0.258393,0.660961,0.058083,0.01286,0.20484,0.860264,0.628463,0.820174,0.850078,0.691584,0.307792,0.262976,0.664077,0.889042,0.39266,0.609613,0.375403,0.767872,0.425004,0.973139,0.659235,0.677459,0.114317,0.559661,|0.631634,0.21258,0.64082,0.755849,0.200064,0.983339,0.502072,0.299881,0.230074,0.234611,0.528633,0.482196,0.125193,0.535239,0.973795,0.728809,0.535838,0.913121,0.303874,0.0961402,0.464078,0.308472,0.854651,0.219412,0.825772,0.386746,0.580634,0.328763,0.563873,0.581885,0.991385,0.719895,0.0844984,0.110292,0.440517,0.294833,0.965984,0.598085,0.500803,0.862285,0.413197,0.733659,0.653441,0.986125,0.72667,0.793282,0.494929,0.0965753,0.235651,0.867079,0.955082,0.417398,0.985715,0.0313814,0.464537,0.357232,0.764747,0.319049,0.632792,0.25517,0.94483,0.243368,0.355595,0.793111,0.357001,0.125084,0.314169,0.180581,0.245854,0.491531,0.983745,0.255825,0.672911,0.104539,0.52249,0.851682,0.581444,0.296251,0.96615,0.297937,0.189285,0.787277,0.0304736,0.916252,0.340073,0.51085,0.284803,0.102051,0.435366,0.393111,0.878564,0.825381,0.223382,0.0623638,0.359005,0.257091,0.609819,0.609113,0.321988,0.465915,0.0872046,0.591649,0.309583,0.799239,0.466132,0.864412,0.0990332,0.687059,0.698186,0.9663,0.312791,0.0132959,0.988225,0.954012,0.902326,0.389485,0.262492,0.0559587,0.188594,0.874437,0.360842,0.419096,0.621877,0.917156,0.774957,0.105909,0.532208,0.196173,0.971012,0.934679,0.995066,0.998478,0.523326,0.500748,0.810335,0.650478,0.487474,0.826863,0.108569,0.443753,0.288926,0.444137,0.307412,0.0390589,0.197119,0.666206,0.183007,0.962571,0.265686,0.651067,0.00612557,0.476575,0.97086,0.413107,0.514683,0.819616,0.061056,0.421509,0.400211,0.617531,0.950933,0.818467,0.305615,0.903163,0.0317894,0.841346,0.578572,0.552892,0.0397974,0.934469,0.208947,0.8532,0.532223,0.842439,0.076629,0.127834,0.509935,0.381915,0.666839,0.98185,0.206828,0.636451,0.543769,0.759349,0.869292,0.396191,0.799292,0.408916,0.776411,0.706013,0.210278,0.605379,0.930709,0.396165,0.548688,0.305189,0.242491,0.0272213,0.720728,0.562997,0.075995,0.997872,0.929664,0.34462,0.49299,0.474687,0.408968,0.73591,0.272811,0.0397353,0.953307,0.371847,0.939267,0.279428,0.191605,0.266534,0.0491424,0.739746,0.927811,0.248427,0.781558,0.0619911,0.233012,0.492985,0.955304,0.864615,0.581848,0.883299,0.850475,0.371726,0.42818,0.218989,0.662378,0.849091,0.732809,0.172318,0.731643,0.196048,0.229383,0.974779,0.0852088,0.813361,0.477164,0.870476,0.476116,0.955967,0.988732,0.416029,0.718496,0.471141,0.030903,0.366135,0.325562,0.375988,0.113197,0.703836,0.0625478,0.0868189,0.126142,0.0963404,0.0492468,0.4,0.53033,0.0954218,0.50518,0.175367,0.740032,0.556649,0.841647,0.0859075,0.42699,0.888594,0.401031,0.695671,0.863743,0.125541,0.651242,0.483971,0.792885,0.970144,0.255702,0.909947,0.202594,0.452237,0.808031,0.864913,0.758872,0.748859,0.0926317,0.914752,0.257304,0.29195,0.179186,0.956111,0.828084,0.75062,0.910535,0.693572,0.794733,0.616625,0.701256,0.113838,0.990498,0.495193,0.781811,0.365759,0.956424,0.826403,0.218842,0.383292,0.204451,0.396946,0.937283,0.913987,0.226431,0.390755,0.282745,0.993003,0.725792,0.0173995,0.827356,0.579179,0.349517,0.0926995,0.966426,0.128459,0.365369,0.707399,0.0807018,0.213483,0.0373006,0.132844,0.300139,0.827367,0.899203,0.67174,0.414316,0.534897,0.12254,0.802048,0.380101,0.879359,0.740722,0.155719,0.167356,0.646779,0.153973,0.223522,0.0472091,0.166137,0.842949,0.45098,0.0987721,0.309423,0.0084486,0.678322,0.280182,0.775607,0.693022,0.44507,0.943524,0.652628,0.63055,0.380735,0.573434,0.568758,0.536796,0.780013,0.760618,0.0243659,0.921562,0.463957,0.823761,0.685491,0.406889,0.311025,0.871617,0.474213,0.125254,0.653417,0.618895,0.462713,0.190701,0.49472,0.952846,0.148377,0.0978172,0.0809206,0.0136365,0.2237,0.268238,0.874516,0.19623,0.468274,0.55167,0.594268,0.371832,0.602217,0.929781,0.509985,0.855592,0.671027,0.12119,0.355078,0.416317,0.762128,0.640895,0.459213,0.664733,0.950495,0.329787,0.0663816,0.309166,0.468689,0.363505,0.431588,0.249815,0.741308,0.14411,0.482852,0.128286,0.638308,0.0879931,0.115389,0.805969,0.530483,0.583463,0.709897,0.614705,0.707768,0.945735,0.0442843,0.442206,0.0135846,0.0998952,0.342689,0.177182,0.179606,0.801781,0.45308,0.921284,0.0990428,0.7288,0.368449,0.320998,0.773684,0.205519,0.889331,0.651382,0.994126,0.0369549,0.132213,0.828746,0.281687,0.490129,0.321875,0.17734,0.0432821,0.346846,0.736524,0.801505,0.362804,0.974711,0.595409,0.928562,0.365099,0.334537,0.166645,0.9189,0.921473,0.976077,0.347946,0.249178,0.097207,0.502653,0.0513453,0.0405006,0.952083,0.510063,0.905556,0.615938,0.448797,0.645776,0.134579,0.80239,0.961992,0.173482,0.956967,0.246164,0.803396,0.814558,0.905946,0.454597,0.940073,0.989811,0.665091,0.941782,0.222749,0.279915,0.0494764,0.177147,0.858366,0.730861,0.32568,0.327447,0.473795,0.970789,0.113572,0.657288,0.254612,0.377608,0.338,0.763024,0.440536,0.448822,0.108738,0.829138,0.0759737,0.86949,0.309403,0.441883,0.798536,0.703012,0.600959,0.600733,0.219504,0.166803,0.374796,0.298362,0.519767,0.95033,0.157295,0.0327502,0.0594917,0.339717,0.753191,0.671559,0.566534,0.587536,0.793617,0.518125,0.552788,0.583297,0.0958858,0.463743,0.795792,0.183385,0.425451,0.10206,0.388654,0.0427526,0.574229,0.297457,0.0553592,0.746875,0.450737,0.369172,0.593112,0.185484,0.636814,0.0246582,0.370688,0.635357,0.897936,0.533904,0.429237,0.680004,0.0287175,0.773221,0.377535,0.603895,0.606423,0.678664,0.0551031,0.932068,0.588419,0.967667,0.191383,0.268257,0.0557683,0.876637,0.202588,0.353902,0.771695,0.516668,0.58867,0.413153,0.0717757,0.718496,0.814578,0.570199,0.901667,0.711852,0.14278,0.372581,0.771871,0.131444,0.864608,0.6483,0.609683,0.183991,0.764622,0.104324,0.744702,0.886084,0.539553,0.557329,0.582462,0.43947,0.347116,0.931419,0.0193641,0.0466595,0.309487,0.553962,0.711351,0.317158,0.345832,0.0378421,0.738557,0.380957,0.493527,0.718864,0.834688,0.24604,0.613998,0.384086,0.225572,0.30927,0.00982332,0.115681,0.315489,0.223456,0.683721,0.737346,0.22665,0.758493,0.469914,0.708182,0.237695,0.150136,0.358924,0.563512,0.119189,0.522143,0.642649,0.19644,0.465434,0.311927,0.661247,0.500445,0.404842,0.746436,0.026321,0.100446,0.104935,0.716076,0.339452,0.682888,0.671943,0.587802,0.0865759,0.0288474,0.450281,0.416231,0.98062,0.347857,0.799801,0.505949,0.880709,0.199301,0.23899,0.969546,0.523416,0.0919691,0.780878,0.0526714,0.971734,0.154453,0.834236,0.0451607,0.657946,0.409366,0.435978,0.176404,0.0311368,0.232354,0.148375,0.29924,0.141799,0.538005,0.552663,0.836056,0.830147,0.154035,0.315751,0.294104,0.839354,0.801181,0.555238,0.579863,0.0567784,0.998391,0.203911,0.75645,0.828752,0.209932,0.415778,0.111518,0.529577,0.479765,0.22457,0.428413,0.714256,0.19226,0.519847,0.921174,0.898288,0.131819,0.331945,0.9968,0.498438,0.145702,0.637315,0.275689,0.520566,0.652557,0.32259,0.208186,0.296161,0.443725,0.232361,0.626791,0.899151,0.0781395,0.727367,0.130916,0.494434,0.520069,0.919271,0.86214,0.332866,0.0889778,0.250227,0.437326,0.964013,0.931866,0.75166,0.685249,0.647086,0.412848,0.876878,0.126338,0.931346,0.528166,0.748698,0.0304247,0.351811,0.173078,0.194515,0.235869,0.494842,0.296709,0.146563,0.1897,0.487432,0.598723,0.169355,0.535628,0.420839,0.30784,0.452325,0.125414,0.428872,0.683603,0.87894,0.610815,0.209196,0.323495,0.48736,0.604447,0.655161,0.832989,0.123924,0.458567,0.934471,0.163648,0.235384,0.549068,0.12696,0.403135,0.790607,0.723133,0.0777163,0.518486,0.986135,0.0760794,0.346557,0.53763,0.556509,0.0286455,0.343988,0.412405,0.652005,0.606749,0.599911,0.397477,0.611701,0.623,0.953766,0.00718027,0.732802,0.240126,0.13376,0.783718,0.633175,0.378694,0.566066,0.872677,0.000708997,0.829817,0.539126,0.539854,0.137222,0.30761,0.27584,0.146056,0.866419,0.787135,0.86096,0.807645,0.254438,0.71716,0.870421,0.936633,0.0187637,0.839685,0.370616,0.509409,0.381084,0.519031,0.503677,0.326998,0.32054,0.882468,0.180202,0.645832,0.638753,0.855973,0.576538,0.460076,0.845397,0.395726,0.56759,0.994879,0.204939,0.7199,0.991252,0.606047,0.41712,0.603071,0.0129831,0.627353,0.130326,0.371741,0.579117,0.345018,0.152915,0.889736,0.572686,0.884491,0.0537569,0.163154,0.431272,0.219053,0.967449,0.642823,0.731237,0.0470749,0.819345,0.268927,0.625837,0.178595,0.87753,0.27399,0.678093,0.310545,0.170885,0.107488,0.942855,0.252149,0.37294,0.853918,0.311149,0.88124,0.26962,0.942339,0.403773,0.402016,0.0383645,0.329013,0.0236263,0.0284361,0.408281,0.323398,0.89262,0.98755,0.0595649,0.720746,0.707573,0.739242,0.314521,0.531518,0.637584,0.301455,0.138602,0.812329,0.10578,0.0984117,0.108786,0.910864,0.160386,0.284441,0.150306,0.598022,0.950633,0.768989,0.850203,0.502577,0.848467,0.153424,0.561137,0.178423,0.147104,0.328455,0.84507,0.825521,0.041346,0.548247,0.948407,0.900828,0.78523,0.516023,0.789229,0.929354,0.580303,0.765411,0.479849,0.5601,0.470484,0.935888,0.659186,0.526988,0.923553,0.581195,0.136311,0.755997,0.259372,0.937506,0.586456,0.682299,0.211381,0.552624,0.598245,0.535856,0.149021,0.730109,0.49084,0.981524,0.610706,0.302359,0.159252,0.227065,0.862814,0.302173,0.777467,0.476802,0.870092,0.962967,0.219153,0.0132753,0.0318205,0.208262,0.110139,0.7019,0.576501,0.112796,0.884967,0.170366,0.106722,0.157236,0.748538,0.912233,0.419881,0.720461,0.816187,0.780634,0.421116,0.761466,0.201256,|0.0912108,0.490877,0.277684,0.324599,0.379796,0.762258,0.347224,0.848528,0.724185,0.415467,0.845979,0.398778,0.929931,0.513298,0.366118,0.0327311,0.769666,0.426944,0.847098,0.289734,0.618841,0.0864486,0.553058,0.475355,0.0489752,0.218474,0.598768,0.763005,0.799873,0.308145,0.221212,0.550011,0.192694,0.263422,0.231544,0.775884,0.195178,0.475293,0.998706,0.469535,0.944777,0.402732,0.669128,0.719581,0.346923,0.990105,0.215817,0.538898,0.989261,0.499389,0.179045,0.779305,0.202534,0.0495499,0.976598,0.591209,0.225048,0.700229,0.85808,0.259357,0.486305,0.185768,0.99252,0.0123705,0.022325,0.295632,0.108578,0.943971,0.377291,0.190752,0.646106,0.932162,0.770418,0.114378,0.311817,0.352285,0.637617,0.609116,0.725212,0.496631,0.090736,0.766623,0.378066,0.200134,0.162541,0.441052,0.923241,0.118465,0.972669,0.622937,0.147288,0.207922,0.684109,0.725504,0.768013,0.0150542,0.191637,0.962953,0.0472814,0.985423,0.665335,0.374636,0.887942,0.941538,0.215656,0.349254,0.296174,0.746198,0.973337,0.490511,0.571255,0.224225,0.950644,0.973731,0.0832349,0.544539,0.90407,0.487365,0.405035,0.89182,0.296683,0.232574,0.171197,0.575773,0.15265,0.00272447,0.785213,0.162582,0.401722,0.980634,0.871389,0.336364,0.85612,0.751091,0.389003,0.475735,0.404869,0.998834,0.396055,0.0790548,0.0300637,0.0494438,0.0437641,0.483981,0.134682,0.821254,0.225327,0.60485,0.94487,0.45665,0.809383,0.295831,0.236534,0.726607,0.107033,0.115652,0.984534,0.583709,0.763238,0.752286,0.600613,0.485233,0.846085,0.717654,0.708533,0.147007,0.717176,0.507344,0.22029,0.195934,0.590799,0.569303,0.163387,0.377908,0.899073,0.131866,0.231763,0.592657,0.00710535,0.83245,0.0586724,0.619195,0.671507,0.789844,0.70878,0.996586,0.928651,0.00858861,0.568878,0.745189,0.284121,0.306933,0.0818141,0.417018,0.781356,0.909697,0.23706,0.751836,0.729197,0.994651,0.347766,0.710849,0.656578,0.606758,0.577406,0.672187,0.723451,0.526883,0.231395,0.180575,0.171184,0.136694,0.952877,0.547347,0.719241,0.950121,0.455749,0.929521,0.96542,0.495166,0.701564,0.229046,0.40975,0.471176,0.0716874,0.484692,0.713657,0.453529,0.266922,0.105307,0.203305,0.765966,0.242905,0.853537,0.367074,0.461051,0.580258,0.930381,0.500897,0.316905,0.225861,0.105216,0.422648,0.58493,0.0960957,0.57943,0.523113,0.293736,0.168016,0.867347,0.466725,0.277074,0.908228,0.430914,0.120702,0.19957,0.5439,0.677335,0.708246,0.627442,0.159971,0.714577,0.697464,0.342738,0.0518752,0.671695,0.768598,0.134509,0.820168,0.245291,0.330138,0.938943,0.716738,0.602154,0.505793,0.768855,0.641455,0.0142595,0.87729,0.583966,0.558585,0.250595,0.734875,0.660538,0.992172,0.0480249,0.106471,0.306866,0.0851287,0.208521,0.276167,0.144056,0.070628,0.686055,0.281483,0.951592,0.602531,0.571014,0.0660335,0.30476,0.921418,0.976784,0.0160847,0.390467,0.986548,0.984428,0.892398,0.766437,0.37312,0.107953,0.812982,0.490261,0.518501,0.0140074,0.85561,0.834738,0.439515,0.50489,0.0162716,0.0731691,0.154236,0.754466,0.0920627,0.785977,0.729451,0.808781,0.88699,0.171293,0.67242,0.00710958,0.543573,0.0521692,0.61381,0.891097,0.498936,0.0471077,0.274335,0.159832,0.380382,0.977592,0.395329,0.0710385,0.335636,0.600637,0.0507373,0.566864,0.850159,0.371903,0.551502,0.954531,0.498271,0.152823,0.181221,0.216433,0.892339,0.493339,0.406901,0.816546,0.503471,0.351712,0.977789,0.652687,0.426681,0.0647123,0.83204,0.753602,0.168732,0.975174,0.773644,0.360577,0.386426,0.628867,0.00999862,0.467497,0.740674,0.53316,0.048329,0.179778,0.845547,0.109008,0.0112236,0.342734,0.420219,0.345129,0.601488,0.102957,0.413327,0.931877,0.362517,0.808051,0.541265,0.48176,0.716521,0.693955,0.315953,0.0176807,0.724543,0.725014,0.830203,0.751831,0.106116,0.310657,0.702945,0.745944,0.166611,0.00955492,0.567046,0.965379,0.614866,0.366872,0.626382,0.0754864,0.359726,0.961588,0.671273,0.263258,0.18579,0.00355637,0.397361,0.215421,0.958805,0.470434,0.88903,0.557303,0.362848,0.0609677,0.672968,0.96073,0.97624,0.822297,0.475949,0.43144,0.758881,0.915688,0.115906,0.209838,0.447186,0.0506006,0.228904,0.0353374,0.408182,0.118765,0.109232,0.06688,0.680315,0.47257,0.164588,0.162415,0.362965,0.113579,0.906378,0.889822,0.564783,0.850681,0.984122,0.0735061,0.0701786,0.163769,0.675623,0.0683509,0.305313,0.667836,0.342236,0.36953,0.472873,0.767773,0.0174002,0.526034,0.760397,0.769658,0.656051,0.177587,0.111603,0.321387,0.413303,0.415573,0.347261,0.507639,0.833643,0.743953,0.623473,0.448191,0.520613,0.744289,0.96473,0.178259,0.0796802,0.746952,0.888535,0.973328,0.724731,0.841421,0.59673,0.072083,0.35242,0.963308,0.134527,0.886027,0.296567,0.286622,0.776836,0.24786,0.736845,0.933998,0.1377,0.854824,0.942646,0.732575,0.966693,0.890538,0.4218,0.499569,0.218368,0.712002,0.781632,0.799889,0.0888649,0.0680415,0.422644,0.0550731,0.606146,0.645373,0.479879,0.0117609,0.525539,0.919478,0.038657,0.299805,0.297344,0.190094,0.501462,0.475296,0.398332,0.0523703,0.155738,0.58154,0.902208,0.0298724,0.328876,0.050633,0.798708,0.32728,0.922842,0.298303,0.0839563,0.452664,0.494959,0.0057528,0.46221,0.769361,0.613505,0.370197,0.952919,0.109871,0.690408,0.894558,0.295892,0.238769,0.614087,0.675322,0.232995,0.635618,0.877804,0.992747,0.827881,0.0462198,0.648996,0.755443,0.495351,0.00312895,0.168492,0.991331,0.464244,0.26732,0.0737437,0.92192,0.982623,0.170982,0.929896,0.19368,0.658562,0.69164,0.188163,0.482971,0.120092,0.986249,0.0885706,0.121588,0.576073,0.764872,0.0334728,0.991659,0.142174,0.654944,0.257295,0.449229,0.979256,0.287981,0.498782,0.430018,0.82037,0.871855,0.652042,0.434687,0.482814,0.134938,0.0420571,0.333517,0.589902,0.0424782,0.748272,0.908143,0.594102,0.985497,0.463076,0.361895,0.636237,0.406286,0.845435,0.706842,0.457656,0.358447,0.695367,0.863042,0.849929,0.183909,0.155315,0.374922,0.997328,0.734742,0.328015,0.746046,0.621381,0.224636,0.653824,0.0305257,0.625799,0.823123,0.347817,0.824838,0.812791,0.837346,0.785382,0.35351,0.436414,0.680587,0.0132193,0.655833,0.502535,0.557609,0.848635,0.448688,0.482524,0.15827,0.682772,0.21691,0.0363027,0.79326,0.453557,0.710438,0.997678,0.106883,0.945031,0.655891,0.749307,0.00540906,0.218394,0.961474,0.414944,0.187451,0.180361,0.993502,0.738707,0.47438,0.462863,0.197559,0.102553,0.987149,0.659757,0.270941,0.989763,0.838091,0.734062,0.815825,0.336917,0.283063,0.904439,0.902585,0.197193,0.387287,0.336603,0.131173,0.957763,0.215755,0.48404,0.306086,0.643637,0.286832,0.472794,0.52652,0.126785,0.162656,0.522077,0.391858,0.115947,0.851292,0.966093,0.137396,0.764839,0.672794,0.290359,0.361519,0.496214,0.372304,0.882206,0.532367,0.0921646,0.927707,0.315751,0.215073,0.1467,0.452923,0.817745,0.0597393,0.780246,0.319593,0.704967,0.942586,0.732953,0.714288,0.501868,0.206726,0.24858,0.473372,0.950076,0.867344,0.391436,0.0952827,0.668687,0.570336,0.875223,0.737511,0.305464,0.172188,0.381632,0.608591,0.934153,0.762004,0.617519,0.323436,0.197639,0.660742,0.436764,0.510221,0.79978,0.831893,0.561975,0.653874,0.991062,0.409381,0.671434,0.658714,0.794571,0.302099,0.373929,0.987794,0.908901,0.048097,0.976322,0.635982,0.305196,0.624131,0.0671835,0.477287,0.000290811,0.906744,0.0811077,0.202508,0.816521,0.456171,0.275887,0.674115,0.252847,0.746757,0.856181,0.868076,0.792583,0.803574,0.408554,0.916427,0.000773072,0.415696,0.763177,0.714625,0.63863,0.422742,0.0767751,0.392485,0.749799,0.297118,0.990514,0.0625159,0.300068,0.310433,0.787748,0.445052,0.793614,0.0795107,0.114497,0.744921,0.969449,0.526552,0.0173705,0.0261352,0.251583,0.150941,0.381437,0.281295,0.388223,0.041456,0.545057,0.281446,0.168613,0.540772,0.858303,0.977641,0.289467,0.242534,0.170566,0.672655,0.88218,0.43921,0.057025,0.790679,0.398735,0.956836,0.745238,0.836957,0.691866,0.326129,0.666905,0.134413,0.340179,0.676727,0.0338564,0.831427,0.856375,0.181986,0.997482,0.802443,0.0194011,0.468923,0.936025,0.106338,0.224355,0.482045,0.64028,0.75754,0.548406,0.683692,0.131348,0.162321,0.879674,0.474318,0.852868,0.0842004,0.635336,0.370444,0.947063,0.84516,0.741146,0.215518,0.499837,0.776185,0.00659424,0.647689,0.455203,0.258639,0.598893,0.673482,0.56658,0.157532,0.0703943,0.697182,0.27705,0.071489,0.425335,0.00966835,0.558627,0.203962,0.0369747,0.977976,0.874661,0.0795395,0.30635,0.634598,0.246536,0.938063,0.73898,0.183601,0.0200679,0.517172,0.102116,0.225857,0.284044,0.392886,0.73175,0.200614,0.647527,0.0126458,0.167487,0.0029313,0.271167,0.470975,0.334802,0.83091,0.0304994,0.83872,0.0516989,0.653194,0.726939,0.161219,0.0497268,0.644401,0.45045,0.75493,0.311498,0.646758,0.61301,0.94743,0.846919,0.326233,0.430371,0.382174,0.968279,0.870738,0.159422,0.588044,0.120683,0.657787,0.0611809,0.795349,0.4264,0.608571,0.330584,0.031529,0.682063,0.916814,0.486373,0.861708,0.44612,0.47728,0.696968,0.657565,0.871644,0.578214,0.542548,0.334889,0.489385,0.758829,0.969703,0.520077,0.499548,0.211314,0.534511,0.29041,0.792923,0.862313,0.845229,0.0545896,0.248923,0.0937437,0.00956732,0.691909,0.569556,0.554374,0.748909,0.665079,0.471134,0.481782,0.422291,0.67268,0.924739,0.40991,0.195195,0.231844,0.26774,0.480186,0.0239377,0.941833,0.494298,0.808881,0.175631,0.0969216,0.520236,0.421926,0.706373,0.465275,0.478469,0.0835088,|0.468513,0.527428,0.662699,0.256836,0.365549,0.820021,0.600879,0.664118,0.811113,0.493013,0.629855,0.0662485,0.802583,0.584729,0.379906,0.866139,0.544452,0.430705,0.0613195,0.922046,0.216308,0.538656,0.120187,0.222106,0.516381,0.0955868,0.720807,0.463459,0.774501,0.835636,0.32307,0.522183,0.258919,0.616516,0.424986,0.133403,0.367176,0.446071,0.623833,0.227108,0.301455,0.926428,0.45444,0.0885315,0.173301,0.966502,0.199154,0.967881,0.103359,0.885544,0.40421,0.62949,0.946555,0.708834,0.932642,0.86055,0.604598,0.724762,0.0638184,0.710077,0.778013,0.278296,0.422105,0.618579,0.450113,0.067256,0.120726,0.693835,0.476409,0.264992,0.351496,0.924051,0.235024,0.0486912,0.292772,0.29727,0.181227,0.893983,0.840935,0.60732,0.537298,0.557831,0.378919,0.243087,0.598204,0.996523,0.0712949,0.16423,0.857429,0.338293,0.959277,0.100201,0.873501,0.110284,0.924714,0.525136,0.2465,0.377288,0.278356,0.879864,0.437027,0.0542422,0.170478,0.233573,0.704013,0.196742,0.923309,0.422108,0.859005,0.962185,0.16933,0.413732,0.31076,0.411978,0.773638,0.976315,0.863656,0.980899,0.865224,0.924637,0.736833,0.0105318,0.59116,0.904737,0.356079,0.753264,0.365941,0.763059,0.268817,0.205175,0.653683,0.49382,0.914171,0.85785,0.205503,0.959544,0.0207034,0.596545,0.482936,0.367989,0.360335,0.197316,0.66519,0.236339,0.643424,0.905459,0.0459657,0.97106,0.631561,0.849074,0.767974,0.786787,0.624805,0.373663,0.130366,0.33314,0.937521,0.989559,0.207982,0.633279,0.314718,0.48712,0.761675,0.462974,0.818431,0.678229,0.830617,0.390907,0.588829,0.758592,0.837727,0.903691,0.590932,0.50444,0.384535,0.0820509,0.857005,0.703865,0.107006,0.797434,0.12475,0.834452,0.769941,0.819258,0.636793,0.407789,0.496392,0.932472,0.954055,0.0270127,0.625076,0.636694,0.176866,0.642091,0.617698,0.304298,0.557235,0.431113,0.844227,0.923638,0.660059,0.921241,0.183091,0.509848,0.176287,0.610148,0.67661,0.983737,0.401842,0.245975,0.510694,0.0878322,0.407837,0.794112,0.349444,0.42009,0.0830084,0.683209,0.0763164,0.673398,0.477433,0.827128,0.488898,0.276311,0.493023,0.865142,0.299884,0.136769,0.630263,0.477561,0.748776,0.555651,0.244021,0.577561,0.36562,0.918866,0.517711,0.0223088,0.0275948,0.70295,0.590147,0.951523,0.0993012,0.0554187,0.244846,0.344038,0.920889,0.743736,0.0296537,0.898952,0.24784,0.877177,0.579838,0.885876,0.624079,0.973491,0.673554,0.143125,0.0473471,0.952712,0.713058,0.594318,0.293172,0.032929,0.398605,0.586191,0.0349064,0.859775,0.69702,0.186183,0.422322,0.104535,0.741404,0.693587,0.485339,0.207092,0.946896,0.397118,0.168451,0.620236,0.264402,0.439883,0.490477,0.599817,0.277458,0.884164,0.602866,0.594418,0.720324,0.219161,0.958477,0.622922,0.926998,0.301231,0.767761,0.222185,0.519754,0.497378,0.0820229,0.374862,0.2276,0.477261,0.108838,0.403558,0.638443,0.288523,0.83887,0.126714,0.0221884,0.680963,0.143236,0.146248,0.386136,0.27878,0.388145,0.0750666,0.992108,0.604035,0.724421,0.392426,0.643007,0.440548,0.691574,0.343772,0.502467,0.0228662,0.644791,0.631617,0.520124,0.18262,0.0175912,0.662375,0.846359,0.0627146,0.0886999,0.725807,0.735214,0.241793,0.882174,0.409558,0.579942,0.693982,0.684343,0.862317,0.796477,0.696385,0.353002,0.115297,0.919649,0.827761,0.318621,0.760625,0.904323,0.73895,0.10399,0.365258,0.926284,0.818125,0.260387,0.918961,0.0179722,0.590922,0.608525,0.291607,0.140211,0.174005,0.806567,0.217387,0.686267,0.598856,0.124013,0.772346,0.392728,0.401619,0.0526793,0.360384,0.161388,0.297962,0.544735,0.617774,0.0687112,0.527069,0.885725,0.0688239,0.982163,0.258859,0.445652,0.567377,0.807796,0.175101,0.0122992,0.209968,0.390352,0.0159977,0.868313,0.616121,0.625747,0.865352,0.558694,0.0899716,0.798225,0.517127,0.333145,0.807804,0.251983,0.0763425,0.929602,0.459267,0.590095,0.543883,0.216984,0.178705,0.810718,0.947099,0.0649503,0.964676,0.81602,0.510731,0.502267,0.898238,0.278866,0.155312,0.351952,0.28983,0.485321,0.927209,0.454959,0.642507,0.910077,0.782809,0.133209,0.0954517,0.182122,0.638053,0.107364,0.890646,0.789181,0.972734,0.15978,0.862425,0.190655,0.133574,0.996842,0.953465,0.960339,0.63372,0.990406,0.928343,0.529711,0.462483,0.361318,0.0889434,0.470707,0.44669,0.549355,0.950978,0.467975,0.830683,0.963817,0.278643,0.305146,0.410313,0.740564,0.418245,0.945589,0.742501,0.730591,0.255524,0.885493,0.536848,0.535369,0.24515,0.731654,0.570495,0.857173,0.278788,0.177162,0.179416,0.321146,0.749945,0.704292,0.598672,0.713764,0.307025,0.536643,0.467105,0.463114,0.663643,0.638547,0.924804,0.436052,0.839668,0.627694,0.539238,0.134209,0.0952253,0.723382,0.338156,0.991466,0.518756,0.702794,0.569732,0.906242,0.809971,0.0804661,0.255404,0.978817,0.647585,0.651862,0.581469,0.982875,0.438696,0.254294,0.48608,0.273567,0.643129,0.495868,0.664371,0.159597,0.910343,0.474673,0.179617,0.393261,0.149633,0.324309,0.475372,0.224307,0.360175,0.99674,0.836148,0.818159,0.372814,0.468592,0.876762,0.475386,0.33009,0.255119,0.360273,0.858466,0.685883,0.943016,0.654499,0.8838,0.783717,0.634809,0.276472,0.185239,0.691548,0.957957,0.151038,0.279127,0.0300201,0.758839,0.0554443,0.715441,0.195299,0.597706,0.17236,0.737636,0.67653,0.248138,0.312556,0.431481,0.240847,0.902369,0.955321,0.0161356,0.230659,0.522833,0.574732,0.235249,0.290827,0.221002,0.460375,0.498756,0.566319,0.819453,0.0210324,0.181989,0.223573,0.770258,0.0572531,0.333565,0.842541,0.871911,0.633933,0.70496,0.760202,0.771256,0.824159,0.320452,0.800021,0.978302,0.726406,0.494986,0.756697,0.959963,0.981384,0.225012,0.696273,0.556972,0.747408,0.419535,0.662567,0.980795,0.184516,0.801535,0.142531,0.721055,0.735651,0.258751,0.719957,0.452431,0.778225,0.850866,0.169713,0.98583,0.389336,0.916675,0.968077,0.722246,0.772363,0.127249,0.238922,0.391644,0.148906,0.955388,0.229879,0.984984,0.0404733,0.23466,0.622262,0.50054,0.739342,0.370431,0.586514,0.180427,0.66287,0.211477,0.510661,0.158184,0.722428,0.30126,0.0427442,0.0352853,0.873768,0.714001,0.286489,0.877978,0.864201,0.0514153,0.260437,0.710018,0.318515,0.871351,0.0627569,0.680625,0.0925236,0.177356,0.808589,0.245726,0.466202,0.96987,0.264608,0.848969,0.413854,0.925469,0.239646,0.0209789,0.0415289,0.28652,0.00970501,0.555023,0.974113,0.623133,0.238873,0.084798,0.0195017,0.500268,0.522562,0.477916,0.455085,0.917393,0.650696,0.873137,0.0690826,0.723798,0.52131,0.918666,0.221069,0.178284,0.868454,0.245087,0.498983,0.0994399,0.115943,0.172095,0.176796,0.518876,0.65299,0.908102,0.875632,0.188305,0.441967,0.262974,0.704482,0.0931405,0.118538,0.290144,0.450652,0.496086,0.0331935,0.137315,0.0670696,0.547213,0.851533,0.102673,0.169541,0.843477,0.0970932,0.812857,0.615122,0.10105,0.486516,0.617396,0.575199,0.151588,0.38846,0.187134,0.351083,0.992998,0.653614,0.0693712,0.937472,0.14366,0.294306,0.966027,0.0444441,0.414551,0.809495,0.60193,0.108679,0.24381,0.013536,0.274904,0.755498,0.470797,0.636559,0.658515,0.601574,0.945346,0.438144,0.498022,0.55636,0.963049,0.754012,0.102925,0.784269,0.515881,0.880181,0.840267,0.684754,0.652137,0.976569,0.176068,0.0191572,0.312134,0.768314,0.371027,0.0219573,0.163298,0.841612,0.378145,0.985514,0.618954,0.155541,0.168482,0.476426,0.443878,0.583584,0.727371,0.556188,0.999713,0.901166,0.490199,0.416714,0.858814,0.963112,0.199367,0.148259,0.607432,0.931736,0.191855,0.691508,0.634576,0.182348,0.348508,0.22468,0.662351,0.377018,0.580927,0.80427,0.853312,0.537735,0.828347,0.608601,0.244997,0.24228,0.935336,0.914425,0.37304,0.168625,0.874767,0.0272753,0.461143,0.0321229,0.151911,0.427914,0.313329,0.342153,0.855619,0.00500757,0.679989,0.462235,0.775608,0.71918,0.779401,0.11515,0.123318,0.847518,0.649966,0.449745,0.585968,0.0623666,0.49384,0.778155,0.901333,0.155606,0.200639,0.585212,0.285307,0.377612,0.0613598,0.0889859,0.145607,0.937415,0.829647,0.755954,0.970199,0.607127,0.128758,0.924563,0.302428,0.589236,0.0852236,0.193656,0.128003,0.950653,0.0287354,0.323556,0.718021,0.343283,0.0501708,0.202342,0.635376,0.550874,0.554657,0.780731,0.274949,0.88715,0.746009,0.465623,0.574892,0.913481,0.890969,0.305675,0.0369637,0.128141,0.822371,0.164878,0.781756,0.628861,0.608689,0.562598,0.790529,0.51477,0.00250995,0.531839,0.136824,0.242765,0.526509,0.0994735,0.87963,0.501821,0.445484,0.010794,0.22217,0.549366,0.388708,0.161431,0.00934649,0.877578,0.383984,0.943976,0.934082,0.385031,0.801165,0.467401,0.168707,0.698514,0.566028,0.448096,0.578818,0.250791,0.563434,0.480676,0.326526,0.234378,0.0513861,0.519195,0.791406,0.660083,0.82064,0.318417,0.996965,0.303771,0.599976,0.28433,0.468964,0.436231,0.00258482,0.0776407,0.796104,0.698514,0.129533,0.325929,0.221784,0.860167,0.0667741,0.368669,0.223706,0.00370306,0.87931,0.292338,0.492698,0.985711,0.559887,0.886923,0.515509,0.428239,0.885414,0.742298,0.605276,0.235046,0.259043,0.578335,0.455289,0.983565,0.0900198,0.552434,0.824474,0.431221,0.879311,0.0306648,0.631928,0.0973189,0.444592,0.431528,0.343994,0.950985,0.152385,0.403546,0.143896,0.394977,0.91936,0.619849,0.881788,0.311649,0.765578,0.296884,0.711852,0.0364472,0.444242,0.857507,0.0266389,0.450064,0.304198,0.560242,0.400197,0.578964,0.30468,0.513187,0.953228,0.601261,0.76639,0.820689,0.824017,0.79627,0.0286891,0.194878,|0.417587,0.0182287,0.071858,0.892165,0.696648,0.103756,0.375265,0.285866,0.209998,0.109262,0.708144,0.984806,0.953177,0.378134,0.250104,0.439256,0.568536,0.00914955,0.616073,0.52575,0.794956,0.571953,0.567204,0.652086,0.11343,0.452707,0.403543,0.360406,0.127918,0.504157,0.672325,0.120369,0.0385345,0.799764,0.242406,0.589806,0.484078,0.186994,0.829844,0.780463,0.93983,0.582771,0.901823,0.841126,0.425427,0.802594,0.541034,0.859741,0.478293,0.791008,0.720485,0.0982224,0.75638,0.864351,0.47612,0.298714,0.715022,0.315996,0.266735,0.838218,0.408177,0.385747,0.222093,0.154934,0.239099,0.508748,0.848034,0.193428,0.456299,0.316094,0.533214,0.558542,0.884675,0.761821,0.396207,0.645062,0.60926,0.587084,0.942938,0.171418,0.379145,0.162166,0.578032,0.116749,0.280465,0.589629,0.389088,0.921921,0.702426,0.0771796,0.0672316,0.432298,0.125716,0.388824,0.935432,0.427266,0.721386,0.27162,0.0241404,0.330773,0.73194,0.801675,0.297402,0.301189,0.808889,0.933801,0.00608283,0.548032,0.0290853,0.90009,0.25209,0.641976,0.40752,0.362983,0.477234,0.347422,0.914513,0.0818835,0.523808,0.56877,0.867305,0.800418,0.600327,0.372439,0.551079,0.314306,0.285478,0.00607806,0.874918,0.30035,0.300529,0.574572,0.256639,0.894636,0.544946,0.716772,0.887636,0.748045,0.29536,0.692525,0.081254,0.81907,0.445162,0.252003,0.973831,0.599321,0.989718,0.81583,0.735943,0.000956953,0.583522,0.461134,0.0330361,0.240468,0.0118843,0.57957,0.799372,0.902619,0.381698,0.630666,0.143943,0.442851,0.13252,0.564532,0.164097,0.974468,0.18552,0.562034,0.858923,0.606214,0.442192,0.293711,0.894935,0.499422,0.491211,0.794422,0.786372,0.623444,0.266867,0.888654,0.162845,0.872398,0.873896,0.376731,0.966827,0.115226,0.10889,0.863737,0.197555,0.061654,0.613005,0.210466,0.244507,0.169923,0.622419,0.204178,0.478173,0.735655,0.79473,0.747181,0.146162,0.786411,0.136154,0.980229,0.968696,0.691733,0.0878925,0.408916,0.901817,0.739925,0.652003,0.371976,0.474303,0.386055,0.95563,0.25606,0.0150708,0.551918,0.00788975,0.544515,0.989215,0.741569,0.102676,0.741998,0.649574,0.0716522,0.238839,0.702311,0.244711,0.758249,0.540269,0.257902,0.965971,0.295105,0.617919,0.954184,0.557441,0.809996,0.368166,0.0684744,0.241512,0.68278,0.123358,0.107062,0.449576,0.0572574,0.323038,0.120744,0.0311233,0.862863,0.111102,0.167097,0.937959,0.747127,0.73373,0.228254,0.0594434,0.922555,0.890502,0.823328,0.125279,0.967587,0.976798,0.458911,0.378138,0.0273788,0.845997,0.225984,0.454954,0.751687,0.711925,0.904604,0.432222,0.479096,0.797,0.146393,0.242939,0.321085,0.972109,0.989926,0.534813,0.296152,0.00784439,0.416118,0.790695,0.379566,0.123976,0.451356,0.957422,0.141483,0.871244,0.666082,0.585928,0.0772967,0.528879,0.211506,0.104278,0.70257,0.082279,0.195854,0.910745,0.877097,0.369143,0.912824,0.765812,0.965977,0.439806,0.395242,0.516104,0.167641,0.79268,0.604965,0.00276864,0.0834322,0.506556,0.912096,0.62529,0.807759,0.532372,0.673472,0.0814073,0.968191,0.108542,0.180955,0.525372,0.885782,0.354058,0.0785121,0.427827,0.585769,0.742982,0.182144,0.756937,0.739804,0.0398721,0.0214092,0.209416,0.403384,0.63911,0.290731,0.974221,0.241584,0.905186,0.910381,0.231196,0.270886,0.894203,0.643371,0.583984,0.701386,0.118677,0.486937,0.775512,0.823611,0.663128,0.851571,0.767516,0.443767,0.889584,0.550653,0.879907,0.0841201,0.431542,0.667123,0.981651,0.539105,0.520274,0.560671,0.761908,0.0804701,0.519807,0.594685,0.640385,0.499866,0.366493,0.660199,0.336525,0.0672781,0.319493,0.963217,0.723903,0.979667,0.833852,0.662147,0.513679,0.254416,0.165225,0.67673,0.19503,0.39523,0.714779,0.00269926,0.77651,0.710319,0.918953,0.355716,0.670004,0.167068,0.0969185,0.483172,0.127124,0.77879,0.988616,0.0974165,0.266763,0.00223255,0.415649,0.482973,0.99507,0.641758,0.551475,0.639451,0.378224,0.685083,0.38928,0.213323,0.648552,0.313648,0.793312,0.723822,0.763941,0.958273,0.980458,0.902167,0.778772,0.249766,0.903624,0.238213,0.754143,0.441265,0.660926,0.987183,0.96546,0.148216,0.912277,0.562236,0.59568,0.768687,0.90831,0.638339,0.0952625,0.090382,0.773952,0.135525,0.312333,0.764966,0.233341,0.191716,0.293169,0.288948,0.221424,0.69877,0.972319,0.871794,0.0944268,0.931866,0.300935,0.635087,0.560835,0.387833,0.0670786,0.477593,0.268454,0.961071,0.959091,0.835845,0.155428,0.802774,0.122959,0.614019,0.484149,0.521038,0.593275,0.524404,0.569546,0.306799,0.364509,0.453723,0.275857,0.852917,0.0172675,0.755007,0.856626,0.27416,0.00491208,0.576057,0.325594,0.302323,0.595792,0.678635,0.118302,0.986359,0.0164769,0.0277191,0.616855,0.0499611,0.444664,0.271418,0.998417,0.324417,0.767149,0.115584,0.71661,0.698395,0.101218,0.418081,0.170758,0.752688,0.226359,0.573874,0.534575,0.789688,0.966443,0.935693,0.892526,0.286873,0.783819,0.89563,0.999688,0.284949,0.73793,0.715857,0.588623,0.266156,0.0868989,0.521376,0.284238,0.206825,0.921936,0.945519,0.14245,0.73408,0.358026,0.873297,0.33836,0.79114,0.195318,0.154174,0.019851,0.765326,0.542274,0.913445,0.965173,0.303915,0.676934,0.345394,0.782886,0.822029,0.132614,0.355282,0.917427,0.593953,0.398292,0.0270895,0.875595,0.852327,0.017858,0.192253,0.653568,0.551167,0.510559,0.975471,0.194984,0.20142,0.901367,0.867605,0.355652,0.040054,0.407608,0.992309,0.145235,0.827725,0.142109,0.952054,0.960133,0.847941,0.916464,0.649714,0.115818,0.522535,0.851313,0.00532532,0.744672,0.157236,0.751469,0.66863,0.332804,0.793606,0.502008,0.589262,0.890456,0.409553,0.640704,0.259877,0.863811,0.313183,0.893498,0.572731,0.169609,0.926101,0.535765,0.451253,0.462691,0.294535,0.282146,0.799748,0.68812,0.0262179,0.531755,0.573378,0.576421,0.0530869,0.453481,0.674198,0.665374,0.695101,0.204401,0.257215,0.0870188,0.425188,0.462989,0.969234,0.561958,0.438705,0.353889,0.97932,0.62775,0.913895,0.978635,0.539906,0.746879,0.670177,0.508076,0.214379,0.209373,0.819672,0.697753,0.708772,0.277476,0.497651,0.56897,0.161345,0.683245,0.935305,0.571226,0.801996,0.596836,0.981517,0.173883,0.562191,0.53477,0.389775,0.836297,0.794212,0.561556,0.61135,0.404872,0.135599,0.362441,0.617718,0.753747,0.785482,0.880665,0.290263,0.534356,0.683969,0.813346,0.623106,0.362441,0.303798,0.155279,0.883479,0.372559,0.415203,0.010945,0.966807,0.57859,0.311962,0.810767,0.560301,0.721845,0.141109,0.171007,0.95425,0.488719,0.86248,0.821077,0.711773,0.616221,0.604754,0.759955,0.0647978,0.497011,0.866534,0.31339,0.453105,0.839,0.30759,0.14428,0.358434,0.608487,0.641768,0.552753,0.731381,0.144484,0.997021,0.626957,0.0353534,0.356249,0.0893255,0.79571,0.680647,0.297781,0.164709,0.838741,0.13318,0.715823,0.899146,0.56388,0.684671,0.0811801,0.185268,0.0735595,0.983331,0.399786,0.538667,0.896696,0.854783,0.45014,0.0666079,0.579382,0.773188,0.233326,0.864907,0.761127,0.892763,0.780759,0.179001,0.317591,0.83992,0.621762,0.988781,0.912591,0.16384,0.0676025,0.571157,0.73567,0.482094,0.264434,0.467046,0.429813,0.0906085,0.179658,0.363104,0.409838,0.69609,0.626249,0.495227,0.567297,0.0204602,0.114492,0.0683581,0.287476,0.176648,0.498764,0.890231,0.0180522,0.547242,0.318094,0.909166,0.152747,0.402612,0.0273596,0.174627,0.882065,0.286801,0.446451,0.989478,0.184399,0.153616,0.561646,0.662996,0.800661,0.936161,0.343452,0.176056,0.76964,0.771517,0.926616,0.111357,0.116114,0.730201,0.594227,0.137931,0.119398,0.30119,0.361327,0.392081,0.846253,0.610465,0.257271,0.348877,0.79073,0.695414,0.479339,0.207067,0.50103,0.530816,0.453066,0.614924,0.370006,0.611245,0.210403,0.49956,0.803093,0.0175928,0.736153,0.637182,0.0139721,0.777426,0.974209,0.616736,0.972999,0.783476,0.420769,0.409094,0.707691,0.163571,0.148053,0.597738,0.107892,0.459406,0.0735083,0.727986,0.772999,0.565787,0.0331519,0.40758,0.567509,0.0987147,0.416209,0.502635,0.901131,0.468182,0.0407581,0.828404,0.3436,0.802216,0.285965,0.624723,0.337722,0.485223,0.767043,0.801255,0.461146,0.21486,0.745504,0.28463,0.321143,0.380816,0.555203,0.198331,0.499712,0.133547,0.206747,0.972893,0.350347,0.864208,0.107679,0.0564727,0.806141,0.884648,0.843245,0.754747,0.856285,0.468702,0.423778,0.535574,0.744128,0.416774,0.724867,0.884982,0.891269,0.338877,0.666247,0.394559,0.23406,0.630167,0.766182,0.999682,0.298035,0.0493766,0.431539,0.676919,0.025229,0.305403,0.298929,0.126037,0.37749,0.128988,0.267474,0.162629,0.926721,0.0745912,0.344084,0.0692258,0.849533,0.891683,0.198804,0.372483,0.689679,0.790611,0.372926,0.674238,0.878381,0.274995,0.378783,0.24898,0.282163,0.923302,0.582936,0.848716,0.349905,0.696612,0.746676,0.99536,0.895613,0.873851,0.729194,0.252574,0.961998,0.514772,0.00425333,0.0632349,0.162948,0.0657336,0.606363,0.424011,0.441438,0.214287,0.61653,0.943537,0.34031,0.738156,0.500596,0.0546593,0.500805,0.657929,0.471042,0.45515,0.125,0.628251,0.391696,0.0377243,0.438859,0.543535,0.990123,0.679655,0.651453,0.118097,0.70549,0.591267,0.756743,0.962667,0.662898,0.148986,0.00310761,0.296955,0.240075,0.132999,0.974399,0.183182,0.552471,0.392865,0.511835,0.926172,0.149809,0.116342,0.898834,0.297928,0.284051,0.225926,0.186474,0.746172,0.899395,0.98252,0.781628,0.910077,0.903326,0.458332,0.102216,0.418681,0.387478,0.219819,0.876239,0.80231,0.940247,0.912877,0.773644,0.184057,|0.427404,0.772537,0.683,0.60404,0.376604,0.0494046,0.604348,0.657547,0.375208,0.244628,0.414706,0.588977,0.0546572,0.449919,0.648851,0.611449,0.662019,0.389144,0.262397,0.455467,0.427125,0.971313,0.064168,0.520716,0.80402,0.372785,0.306733,0.474178,0.229281,0.134995,0.511939,0.698803,0.00166881,0.504377,0.935931,0.313164,0.775036,0.670303,0.090895,0.8477,0.0481811,0.364502,0.951606,0.256631,0.972137,0.689957,0.832167,0.44052,0.772272,0.440466,0.582336,0.660021,0.255279,0.721822,0.458834,0.253192,0.700399,0.966632,0.340494,0.75161,0.105034,0.817868,0.939088,0.852739,0.832099,0.236653,0.24128,0.594103,0.280657,0.632987,0.292718,0.283902,0.679689,0.628625,0.330575,0.214836,0.228341,0.845003,0.621868,0.698615,0.872833,0.280845,0.622945,0.635585,0.653256,0.666985,0.473741,0.235615,0.236264,0.261716,0.283971,0.711429,0.10329,0.89588,0.98496,0.0213463,0.651068,0.16186,0.388762,0.408534,0.407328,0.5583,0.239193,0.199072,0.013959,0.47417,0.00878602,0.399797,0.838625,0.257064,0.190259,0.606581,0.248824,0.0734087,0.765575,0.908423,0.556804,0.82455,0.350973,0.166236,0.926502,0.953544,0.282222,0.525864,0.40049,0.230852,0.991366,0.969629,0.940857,0.127121,0.644939,0.698116,0.214809,0.161648,0.730405,0.876203,0.418495,0.966897,0.866211,0.913505,0.232817,0.376101,0.704525,0.216971,0.81518,0.869688,0.213164,0.200904,0.294954,0.201172,0.476741,0.0582759,0.0295532,0.794529,0.190709,0.797488,0.0725266,0.0294703,0.571695,0.842977,0.126483,0.513626,0.288223,0.0390249,0.96668,0.392702,0.536487,0.0483379,0.0197126,0.825909,0.342979,0.434219,0.798519,0.754187,0.754845,0.401155,0.82351,0.332174,0.0419294,0.403111,0.282266,0.182636,0.0317115,0.0603053,0.977913,0.455753,0.734058,0.790975,0.0640227,0.142047,0.282032,0.382019,0.782303,0.485296,0.794874,0.826753,0.279988,0.595585,0.90761,0.892804,0.635102,0.221743,0.477937,0.284629,0.115483,0.964793,0.5504,0.892563,0.568692,0.19899,0.125435,0.0298996,0.984865,0.297613,0.741499,0.0732616,0.246871,0.619601,0.547029,0.263285,0.693123,0.296079,0.641418,0.59454,0.670147,0.239981,0.675171,0.620955,0.0640372,0.337527,0.129199,0.602184,0.29075,0.787722,0.0876792,0.921864,0.0445668,0.0728397,0.469827,0.376682,0.539657,0.10569,0.842657,0.599487,0.76259,0.30412,0.0881199,0.420688,0.457086,0.528295,0.794128,0.934812,0.332368,0.538938,0.438801,0.812685,0.553051,0.758251,0.489488,0.636345,0.249818,0.282539,0.0828657,0.00870746,0.725503,0.420282,0.0687942,0.564093,0.663621,0.838143,0.113871,0.0445957,0.385365,0.331161,0.989767,0.457834,0.929344,0.122849,0.941841,0.607886,0.343916,0.552637,0.750729,0.471019,0.211272,0.53962,0.891834,0.0283827,0.464846,0.221307,0.324927,0.203417,0.372037,0.187786,0.38542,0.0519875,0.377687,0.93673,0.836669,0.0377407,0.30995,0.291268,0.101005,0.663233,0.477963,0.809269,0.745456,0.0805964,0.411271,0.634849,0.0800799,0.901151,0.16762,0.188905,0.171163,0.0268195,0.825717,0.576878,0.533079,0.961984,0.561206,0.850609,0.408055,0.28625,0.390191,0.277325,0.729463,0.657931,0.880859,0.295217,0.106058,0.223251,0.405723,0.913711,0.512877,0.466463,0.587329,0.289701,0.0889174,0.414881,0.789194,0.56282,0.57692,0.704671,0.0351252,0.961783,0.977759,0.420684,0.684704,0.842626,0.410381,0.569964,0.346871,0.172597,0.993136,0.87892,0.155883,0.598104,0.824417,0.422242,0.963274,0.854765,0.0284498,0.199867,0.0990422,0.137774,0.0379249,0.85827,0.933914,0.890001,0.680998,0.56533,0.746778,0.908575,0.265347,0.252348,0.341731,0.19662,0.449411,0.872278,0.191683,0.207649,0.326598,0.561579,0.184059,0.562127,0.665544,0.781774,0.0954396,0.854231,0.731592,0.810679,0.213482,0.91205,0.102314,0.296567,0.0954371,0.276144,0.788992,0.113446,0.491662,0.926714,0.253085,0.654968,0.653282,0.856319,0.199207,0.913357,0.683831,0.0288782,0.31132,0.279324,0.8122,0.412832,0.0565661,0.239815,0.232281,0.302146,0.0902173,0.433105,0.108706,0.293138,0.944832,0.376875,0.462961,0.285378,0.429623,0.311591,0.707606,0.604447,0.689365,0.353225,0.33468,0.077431,0.646274,0.851373,0.439709,0.90341,0.4869,0.247768,0.640433,0.741674,0.834833,0.308721,0.277135,0.79867,0.534274,0.953819,0.738669,0.451899,0.213827,0.729562,0.446254,0.874209,0.717435,0.916325,0.695075,0.357999,0.478928,0.985034,0.920661,0.168666,0.74099,0.311288,0.694908,0.15863,0.176334,0.613661,0.643023,0.608388,0.196225,0.248843,0.613358,0.784882,0.0867357,0.0667133,0.891857,0.326616,0.528415,0.472948,0.53359,0.430187,0.196596,0.621406,0.585484,0.703649,0.818059,0.509826,0.426591,0.5264,0.111905,0.643229,0.797953,0.452545,0.0393659,0.750191,0.182145,0.391252,0.0373527,0.747184,0.600895,0.832263,0.545452,0.433377,0.43144,0.734708,0.187924,0.90539,0.321895,0.817335,0.688589,0.652985,0.36523,0.521838,0.786318,0.959396,0.579449,0.815911,0.0514498,0.542855,0.808485,0.846682,0.826756,0.351345,0.544527,0.262307,0.24137,0.0907292,0.994319,0.411656,0.575372,0.866372,0.610982,0.267785,0.472463,0.865025,0.975935,0.841325,0.66593,0.0689777,0.729823,0.617507,0.306123,0.167588,0.0750834,0.58054,0.936139,0.768607,0.60114,0.718194,0.79891,0.454911,0.0858312,0.729243,0.78116,0.294249,0.325779,0.688364,0.994901,0.723715,0.654546,0.810057,0.429223,0.639284,0.570004,0.582886,0.880637,0.638533,0.296568,0.588267,0.384469,0.256178,0.0328776,0.985083,0.569793,0.200105,0.656227,0.98043,0.579216,0.259854,0.566781,0.0312473,0.0733466,0.933762,0.91598,0.622108,0.00615239,0.848124,0.529115,0.424313,0.204193,0.179848,0.145675,0.0399156,0.447698,0.150279,0.849864,0.612438,0.882188,0.464992,0.617437,0.510591,0.497837,0.0542051,0.161388,0.835415,0.88685,0.318373,0.529579,0.303477,0.378043,0.91931,0.732206,0.971744,0.938694,0.262345,0.0403682,0.177784,0.956385,0.621846,0.77352,0.943723,0.514777,0.951065,0.0974498,0.350886,0.448603,0.969311,0.636965,0.354135,0.205932,0.86963,0.243939,0.0540696,0.949148,0.395549,0.29721,0.551906,0.771655,0.488629,0.0814509,0.0826938,0.0523944,0.89681,0.255479,0.165323,0.576447,0.0976962,0.473598,0.0610878,0.866722,0.237422,0.509512,0.246415,0.0718744,0.907376,0.0523524,0.138313,0.287659,0.594464,0.370208,0.637925,0.959131,0.564641,0.579474,0.078398,0.286336,0.628577,0.0380968,0.300478,0.75495,0.32785,0.119791,0.479068,0.317897,0.0712732,0.604504,0.617307,0.800741,0.540966,0.0151627,0.574335,0.231127,0.70166,0.589893,0.819787,0.0945567,0.544652,0.409118,0.476947,0.177607,0.266165,0.465901,0.904685,0.181978,0.963185,0.219398,0.135878,0.416458,0.217881,0.900168,0.770119,0.201934,0.236471,0.187659,0.389671,0.613164,0.529998,0.379924,0.584916,0.753374,0.787139,0.354288,0.346859,0.652239,0.378655,0.429126,0.197421,0.575559,0.0017187,0.644939,0.561924,0.435554,0.0180483,0.477009,0.13877,0.291795,0.680573,0.240223,0.100071,0.732068,0.719389,0.0315872,0.175943,0.856963,0.468218,0.557031,0.461098,0.902904,0.926214,0.562897,0.152514,0.382999,0.128246,0.230063,0.800171,0.805673,0.0923904,0.254196,0.687049,0.236999,0.542422,0.810771,0.848361,0.174885,0.298549,0.383744,0.401954,0.339603,0.816182,0.608049,0.686019,0.278679,0.568607,0.16908,0.622363,0.549198,0.801797,0.13058,0.663052,0.0248957,0.727324,0.312882,0.265015,0.159481,0.0809706,0.971698,0.429618,0.729202,0.767488,0.111041,0.822832,0.899915,0.242237,0.290914,0.725261,0.429461,0.107775,0.455427,0.447276,0.945688,0.902131,0.340715,0.895502,0.470367,0.136812,0.425453,0.664653,0.295174,0.362231,0.265539,0.6514,0.310555,0.0906926,0.195512,0.683733,0.33316,0.795421,0.148343,0.651998,0.498195,0.660188,0.397958,0.250013,0.228954,0.844126,0.715967,0.7821,0.345463,0.823526,0.186604,0.336761,0.955153,0.893894,0.872698,0.615515,0.0331281,0.80085,0.156984,0.976694,0.348152,0.223772,0.228408,0.834233,0.312327,0.252338,0.0344254,0.468683,0.625598,0.874345,0.373209,0.331803,0.420592,0.862132,0.699413,0.517333,0.00529307,0.623685,0.569265,0.309763,0.986647,0.799338,0.540247,0.947927,0.137879,0.663943,0.24467,0.696063,0.0590111,0.10341,0.333936,0.0814286,0.544243,0.97653,0.0405695,0.932515,0.633772,0.247494,0.567313,0.274422,0.161884,0.596768,0.790142,0.0412964,0.876057,0.396482,0.715874,0.803659,0.544182,0.0246317,0.938322,0.374627,0.395845,0.807046,0.162436,0.257206,0.342675,0.61926,0.176756,0.0440977,0.197918,0.786824,0.317639,0.195491,0.853965,0.594896,0.206223,0.620744,0.213539,0.901168,0.600676,0.103051,0.448591,0.171995,0.220442,0.9622,0.967219,0.673184,0.270466,0.432264,0.340702,0.587275,0.110052,0.29084,0.261784,0.379428,0.603936,0.561234,0.329754,0.635139,0.400186,0.455577,0.530713,0.0446218,0.732446,0.57036,0.416743,0.998046,0.0631958,0.146457,0.0794529,0.675555,0.317255,0.698552,0.344891,0.791685,0.315568,0.0705836,0.413334,0.075662,0.918791,0.338745,0.555416,0.48456,0.660597,0.188629,0.202632,0.568655,0.308888,0.964448,0.457659,0.261618,0.0871467,0.454692,0.470402,0.661407,0.404547,0.542935,0.731025,0.265393,0.522976,0.731277,0.544871,0.483778,0.231022,0.0325423,0.838661,0.65122,0.500014,0.16118,0.209785,0.933688,0.785509,0.775522,0.448304,0.751271,0.281962,0.00199986,0.27348,0.490457,0.769751,0.563037,0.191634,0.596414,0.677232,0.446471,0.350753,0.269032,0.365186,0.781005,0.391294,0.84862,0.607116,0.847167,0.651002,0.653046,0.929812,0.532139,0.881903,0.245631,|0.376355,0.66859,0.30686,0.693241,0.792838,0.0614452,0.822897,0.739463,0.858186,0.88883,0.269165,0.892402,0.682455,0.212035,0.171624,0.440784,0.969765,0.273507,0.0491822,0.0896283,0.416564,0.400414,0.209759,0.0774579,0.0636707,0.34196,0.540935,0.492307,0.338033,0.941093,0.0538291,0.360212,0.750035,0.0998655,0.499832,0.560178,0.467842,0.621173,0.310981,0.530283,0.49596,0.247872,0.449317,0.159794,0.110309,0.901631,0.40583,0.246044,0.818596,0.721407,0.299282,0.843522,0.722779,0.390092,0.99776,0.528563,0.487552,0.0820747,0.261648,0.230995,0.275959,0.501912,0.220847,0.900634,0.461073,0.827887,0.752843,0.283436,0.0670557,0.575602,0.398847,0.879767,0.108687,0.157907,0.551292,0.661543,0.880139,0.157049,0.0222991,0.93664,0.370534,0.139399,0.704882,0.613769,0.861077,0.990879,0.142927,0.246638,0.421166,0.200077,0.0428695,0.49228,0.984381,0.152205,0.862391,0.196985,0.972139,0.296218,0.000412345,0.726274,0.851094,0.9404,0.164364,0.499605,0.630034,0.286282,0.181676,0.035719,0.665048,0.47095,0.483155,0.661038,0.730418,0.538055,0.335522,0.23958,0.335873,0.55316,0.0430126,0.528479,0.79247,0.364225,0.682712,0.287971,0.115813,0.0421212,0.715106,0.489775,0.382526,0.814376,0.939542,0.179994,0.71095,0.316765,0.312254,0.205408,0.377458,0.416824,0.903704,0.0919442,0.818532,0.0634217,0.717423,0.385982,0.909205,0.788161,0.435952,0.0564013,0.0447839,0.173804,0.636369,0.745625,0.768171,0.344845,0.476685,0.204102,0.77239,0.849939,0.627179,0.91496,0.048561,0.00266504,0.381278,0.584682,0.252204,0.205074,0.937238,0.108979,0.607246,0.230015,0.633069,0.137931,0.807413,0.729676,0.424098,0.999475,0.120995,0.563911,0.830888,0.524844,0.0849947,0.253259,0.47963,0.688533,0.553488,0.503063,0.555924,0.00407416,0.488799,0.94642,0.243182,0.267643,0.952933,0.45092,0.135157,0.44744,0.475396,0.472945,0.904698,0.121488,0.973593,0.113536,0.238871,0.943158,0.155019,0.438186,0.684831,0.609335,0.486546,0.979521,0.583559,0.722671,0.324988,0.859986,0.689661,0.931735,0.329239,0.122854,0.814093,0.956417,0.177183,0.72502,0.890856,0.238895,0.407276,0.655565,0.403518,0.802833,0.0116771,0.577631,0.703364,0.887027,0.00529265,0.989303,0.0733691,0.532673,0.251022,0.828414,0.820877,0.208811,0.812371,0.703315,0.119175,0.169247,0.891494,0.958939,0.0589476,0.353287,0.446765,0.514766,0.541215,0.468409,0.31647,0.696575,0.330395,0.768872,0.705341,0.132246,0.477414,0.594813,0.0609848,0.52582,0.544535,0.120852,0.515176,0.351209,0.640832,0.169023,0.824308,0.0468823,0.577344,0.922112,0.0735652,0.529362,0.347759,0.303469,0.0432621,0.471109,0.765251,0.942576,0.541655,0.362835,0.183109,0.607665,0.0112316,0.163613,0.1925,0.915707,0.154986,0.332544,0.286639,0.157872,0.0589037,0.453098,0.978561,0.0860006,0.124883,0.44369,0.239944,0.928325,0.641577,0.111356,0.070105,0.577052,0.389466,0.339013,0.272539,0.509407,0.365402,0.659972,0.24386,0.993937,0.0260218,0.793298,0.591638,0.103767,0.808742,0.554657,0.614192,0.422756,0.593279,0.390794,0.306936,0.866488,0.809597,0.250947,0.48044,0.950647,0.239603,0.866182,0.540342,0.311943,0.122531,0.951801,0.468264,0.351864,0.341098,0.295017,0.188579,0.0191699,0.83991,0.752769,0.691975,0.759122,0.7877,0.950261,0.705944,0.443701,0.331734,0.486533,0.236443,0.00056529,0.271438,0.541401,0.760728,0.275059,0.5884,0.0846911,0.574699,0.32814,0.923295,0.772492,0.411547,0.711293,0.175766,0.579647,0.737798,0.272809,0.265996,0.549431,0.242936,0.313428,0.616966,0.554422,0.135471,0.513053,0.372881,0.909251,0.337112,0.622963,0.206896,0.149327,0.791906,0.699579,0.051623,0.0798792,0.0648787,0.908759,0.431868,0.764592,0.46542,0.55496,0.834875,0.011028,0.322532,0.136554,0.525422,0.827345,0.964816,0.337694,0.958954,0.911761,0.0850807,0.00172204,0.694971,0.0324694,0.687043,0.83895,0.505472,0.0513999,0.0106368,0.510114,0.297718,0.487099,0.390565,0.491141,0.913023,0.708616,0.339608,0.538883,0.292312,0.319947,0.616115,0.702917,0.170302,0.594127,0.538973,0.71473,0.374566,0.943403,0.890597,0.816905,0.63308,0.863048,0.86433,0.0892656,0.151417,0.982822,0.336292,0.463689,0.661172,0.274193,0.959306,0.263827,0.825253,0.988137,0.42779,0.561106,0.382257,0.226758,0.378745,0.138541,0.267894,0.578417,0.557075,0.880684,0.905959,0.0711832,0.362003,0.998198,0.451848,0.743229,0.365137,0.607767,0.7232,0.663154,0.444112,0.524275,0.199602,0.489375,0.606906,0.554049,0.29036,0.128537,0.612475,0.413077,0.283386,0.275091,0.634843,0.439399,0.715669,0.768575,0.0186049,0.0497402,0.402679,0.884805,0.672991,0.696655,0.587253,0.301268,0.65682,0.299385,0.0652076,0.653506,0.231312,0.844649,0.151606,0.471612,0.949011,0.638853,0.495078,0.563646,0.516451,0.530462,0.310184,0.694646,0.38707,0.880596,0.635884,0.833683,0.559028,0.137424,0.70732,0.932322,0.296468,0.928795,0.529906,0.52217,0.472032,0.728586,0.48633,0.437992,0.770719,0.143708,0.887166,0.782934,0.889705,0.552148,0.436772,0.328233,0.43607,0.547779,0.137048,0.0189984,0.396893,0.0496484,0.041425,0.273228,0.237189,0.593809,0.487432,0.0427091,0.277699,0.25029,0.173066,0.86284,0.121321,0.289734,0.222136,0.323004,0.0453115,0.966292,0.145023,0.345814,0.229406,0.872189,0.686802,0.903586,0.0653346,0.971677,0.936047,0.335977,0.639518,0.741111,0.997789,0.0946901,0.733107,0.589243,0.65115,0.592679,0.267084,0.189374,0.350555,0.268639,0.524721,0.460656,0.863346,0.139186,0.667958,0.651179,0.555656,0.773179,0.614018,0.21593,0.340167,0.30713,0.593531,0.732414,0.546369,0.47804,0.250575,0.616281,0.705868,0.572107,0.119713,0.848786,0.900144,0.221391,0.903864,0.166982,0.659508,0.0618522,0.734467,0.9684,0.299352,0.397383,0.541188,0.175988,0.0752536,0.745392,0.767004,0.160941,0.0871395,0.57354,0.504563,0.398531,0.749242,0.996284,0.260191,0.875885,0.34627,0.461648,0.502659,0.0885192,0.869711,0.989834,0.643619,0.757544,0.795683,0.753304,0.247811,0.89521,0.698627,0.423976,0.89789,0.831284,0.577384,0.0279422,0.594884,0.257392,0.530113,0.159502,0.186068,0.404058,0.0999396,0.87287,0.644297,0.313641,0.393145,0.317847,0.352263,0.742218,0.406304,0.728172,0.903573,0.867985,0.556067,0.95774,0.466378,0.311531,0.0163541,0.314814,0.046689,0.546596,0.958974,0.293397,0.53414,0.594198,0.745612,0.576454,0.52788,0.740617,0.299554,0.91227,0.446366,0.775196,0.139552,0.796176,0.591347,0.839617,0.632702,0.206055,0.341541,0.298386,0.218974,0.249822,0.693699,0.639562,0.208544,0.0413908,0.461422,0.128941,0.370772,0.124382,0.212451,0.0753923,0.208015,0.118319,0.113028,0.969388,0.515698,0.215459,0.482358,0.92338,0.897005,0.333861,0.538129,0.333803,0.858384,0.0377447,0.795273,0.800729,0.906728,0.204021,0.202468,0.0555775,0.863376,0.588958,0.538987,0.964172,0.205231,0.781462,0.263824,0.704469,0.151836,0.52985,0.256454,0.89475,0.17217,0.520873,0.963278,0.753195,0.587093,0.0567313,0.866642,0.320592,0.93175,0.908563,0.58365,0.361037,0.246369,0.577846,0.722248,0.712719,0.19957,0.408218,0.53724,0.32168,0.085145,0.809622,0.511292,0.489307,0.980873,0.141951,0.111738,0.422694,0.400255,0.449925,0.74684,0.214626,0.609154,0.871337,0.0563729,0.886232,0.317987,0.947661,0.436902,0.562891,0.274167,0.00917214,0.580718,0.130317,0.774094,0.895215,0.548649,0.596498,0.55582,0.150949,0.978803,0.384551,0.41735,0.292087,0.181826,0.66023,0.408326,0.323075,0.0661266,0.0562521,0.574009,0.0988142,0.311709,0.682358,0.382464,0.134975,0.618683,0.727104,0.398028,0.772341,0.227845,0.615868,0.443945,0.0289488,0.779448,0.5469,0.177618,0.26352,0.917865,0.0763524,0.301497,0.888602,0.178156,0.405224,0.643664,0.391726,0.722282,0.183002,0.520343,0.137983,0.997165,0.734289,0.00293547,0.674751,0.652561,0.254319,0.0844643,0.350159,0.215762,0.571675,0.361342,0.513589,0.511971,0.95595,0.40549,0.898743,0.062338,0.755199,0.294131,0.680981,0.192426,0.434218,0.612696,0.644912,0.673975,0.0588263,0.552305,0.512609,0.603874,0.724194,0.440227,0.00083667,0.726816,0.58057,0.499784,0.192925,0.279738,0.445116,0.0962616,0.262551,0.539445,0.878484,0.684791,0.439852,0.977452,0.0766397,0.809964,0.797066,0.100755,0.509524,0.815406,0.767235,0.431061,0.638176,0.214946,0.133246,0.937244,0.98935,0.882098,0.041481,0.620642,0.49634,0.469038,0.980186,0.442841,0.187636,0.917808,0.970851,0.837779,0.715555,0.0632227,0.876453,0.83982,0.387393,0.308473,0.0631445,0.742992,0.451094,0.249184,0.768415,0.98318,0.885468,0.582575,0.278136,0.909214,0.40627,0.803104,0.877976,0.766825,0.411719,0.789576,0.288897,0.252524,0.53087,0.154555,0.262371,0.530864,0.974096,0.330187,0.446923,0.293669,0.0139706,0.585636,0.95541,0.750406,0.603534,0.309827,0.923115,0.118275,0.239659,0.370835,0.266913,0.755962,0.980525,0.397135,0.0662292,0.506165,0.154634,0.175567,0.458148,0.84786,0.521674,0.340391,0.342072,0.107266,0.616573,0.0294339,0.165442,0.399737,0.401682,0.414664,0.469627,0.647883,0.747891,0.0497515,0.324342,0.871947,0.332353,0.123124,0.210272,0.460802,0.112137,0.209319,0.965267,0.94491,0.108914,0.177384,0.848913,0.363329,0.591556,0.723139,0.0615954,0.204572,0.55872,0.376887,0.269235,0.911585,0.545235,0.467635,0.202541,0.380222,0.822491,0.617305,0.937828,0.0140795,0.845466,0.682251,0.160997,0.470022,0.625986,0.825283,0.144638,0.575312,0.435241,0.651064,0.509963,0.872927,0.497703,0.481936,0.104806,0.411473,0.3231,|0.568143,0.13559,0.466873,0.807707,0.164977,0.657267,0.63538,0.810563,0.105815,0.91759,0.540161,0.779042,0.191501,0.174491,0.260262,0.962254,0.621147,0.209199,0.459621,0.853057,0.780471,0.931287,0.492441,0.0187117,0.439512,0.575156,0.44726,0.306862,0.498199,0.359345,0.827027,0.68645,0.764913,0.491979,0.484751,0.730242,0.473074,0.0396613,0.144822,0.175952,0.615038,0.372319,0.155595,0.955602,0.822529,0.557388,0.565669,0.142383,0.831939,0.813605,0.644432,0.931766,0.475572,0.878445,0.286669,0.884618,0.549005,0.819158,0.931341,0.66949,0.489187,0.909258,0.929429,0.5148,0.238847,0.57926,0.329825,0.0194634,0.414779,0.160408,0.379944,0.417431,0.737441,0.658227,0.00570375,0.360154,0.376707,0.796829,0.848657,0.144841,0.862462,0.190147,0.0066787,0.460589,0.12573,0.950804,0.265333,0.488122,0.562484,0.948252,0.347543,0.377025,0.513499,0.396483,0.758987,0.828556,0.272179,0.548658,0.19094,0.357188,0.457904,0.754112,0.126125,0.869305,0.278948,0.158065,0.904515,0.987508,0.29539,0.0305073,0.818689,0.484624,0.204724,0.722798,0.351987,0.15417,0.994413,0.0716332,0.958478,0.638952,0.229329,0.336895,0.963558,0.355614,0.315218,0.581829,0.326813,0.477023,0.390705,0.43142,0.627515,0.615232,0.232246,0.304723,0.923146,0.114475,0.493665,0.102981,0.187948,0.764104,0.633641,0.659366,0.526935,0.356369,0.374892,0.966121,0.176708,0.408516,0.830478,0.529395,0.614789,0.21582,0.779051,0.59324,0.136461,0.240198,0.980012,0.439987,0.986272,0.386101,0.971754,0.579821,0.416604,0.113728,0.0438045,0.303468,0.637559,0.209098,0.819286,0.917608,0.967361,0.940179,0.0109423,0.237714,0.204394,0.109912,0.721249,0.390876,0.410507,0.713197,0.102597,0.0347618,0.443811,0.283983,0.204435,0.935512,0.95919,0.58875,0.426377,0.551516,0.542243,0.30163,0.418142,0.718111,0.427209,0.527561,0.0366332,0.954349,0.048089,0.304171,0.771232,0.33131,0.348348,0.421462,0.266386,0.546855,0.198066,0.815768,0.416014,0.424947,0.946562,0.156768,0.601827,0.140902,0.798139,0.810577,0.0178356,0.29154,0.0790634,0.483968,0.994516,0.480951,0.51937,0.5189,0.207061,0.936334,0.799319,0.32307,0.817423,0.971026,0.119876,0.981337,0.636286,0.173908,0.512091,0.372543,0.875938,0.992269,0.418411,0.869897,0.646604,0.643114,0.0599362,0.626902,0.907422,0.263927,0.772666,0.170103,0.191195,0.218026,0.688573,0.600985,0.715055,0.618095,0.443739,0.260487,0.554855,0.0993002,0.940639,0.223786,0.574309,0.546824,0.218183,0.935891,0.694364,0.828299,0.161736,0.860978,0.630378,0.179654,0.502154,0.606739,0.721788,0.332781,0.137821,0.534284,0.780355,0.188114,0.597945,0.294171,0.763534,0.454432,0.911131,0.3522,0.851662,0.975742,0.900052,0.372997,0.218102,0.980581,0.373994,0.771573,0.565957,0.148493,0.45386,0.295878,0.97259,0.134871,0.618241,0.272926,0.556367,0.188218,0.585479,0.89576,0.694691,0.804666,0.413329,0.536103,0.201608,0.253061,0.215422,0.486651,0.780038,0.0725199,0.21295,0.328514,0.458085,0.915464,0.725917,0.964026,0.0492744,0.404827,0.366269,0.0925679,0.509624,0.53775,0.936267,0.848545,0.20868,0.419955,0.555321,0.291837,0.823538,0.609125,0.343354,0.403932,0.803468,0.373426,0.814532,0.343235,0.461332,0.207388,0.564788,0.657704,0.318851,0.40241,0.925374,0.0575578,0.327394,0.611554,0.364796,0.736124,0.0924383,0.809535,0.676156,0.150852,0.979135,0.109414,0.718751,0.959008,0.32792,0.866898,0.813231,0.166017,0.333791,0.340015,0.472436,0.501088,0.0752267,0.58044,0.459938,0.303723,0.467623,0.229935,0.175136,0.388871,0.19705,0.75772,0.13805,0.0536691,0.890198,0.804795,0.66012,0.55165,0.222931,0.53042,0.9375,0.583627,0.0502446,0.661599,0.415143,0.892149,0.182235,0.824916,0.310738,0.864842,0.73987,0.847464,0.118075,0.180019,0.804781,0.0624813,0.0978138,0.879548,0.542402,0.554076,0.0512064,0.670568,0.38502,0.883738,0.587312,0.078068,0.959431,0.532373,0.340054,0.787473,0.110978,0.367815,0.17863,0.169957,0.675514,0.300249,0.210523,0.650091,0.122143,0.952391,0.386447,0.438111,0.615295,0.0992559,0.544908,0.10055,0.392751,0.0789435,0.663861,0.757497,0.219155,0.269954,0.712539,0.702372,0.150224,0.190399,0.417142,0.749696,0.738891,0.124376,0.690298,0.171369,0.0642709,0.683778,0.908609,0.723383,0.788022,0.983812,0.691193,0.62322,0.791689,0.490179,0.189946,0.500379,0.871129,0.21577,0.277769,0.00286043,0.957499,0.209981,0.749334,0.578363,0.374942,0.617047,0.313501,0.906945,0.125929,0.93179,0.545379,0.593209,0.884479,0.20417,0.689764,0.103899,0.56733,0.886694,0.831704,0.185956,0.731707,0.428304,0.766111,0.539236,0.906411,0.170587,0.619393,0.80446,0.341185,0.0961861,0.465785,0.175101,0.751281,0.202853,0.594808,0.639289,0.938071,0.494208,0.969515,0.25427,0.305007,0.299461,0.0217924,0.86999,0.103968,0.142006,0.364369,0.289618,0.714038,0.958141,0.204662,0.0151748,0.879398,0.697579,0.38304,0.345687,0.558526,0.956545,0.864011,0.724688,0.509842,0.229492,0.915227,0.344223,0.352327,0.612297,0.774468,0.115394,0.424604,0.486539,0.523093,0.351964,0.039776,0.408381,0.158492,0.347229,0.0618986,0.619969,0.895444,0.585684,0.363999,0.596752,0.633472,0.571897,0.925972,0.90184,0.354089,0.11851,0.349219,0.684217,0.148071,0.151027,0.478842,0.485415,0.421624,0.574746,0.0711465,0.410866,0.0884793,0.0417328,0.521681,0.722786,0.942098,0.567222,0.391589,0.1978,0.637304,0.222818,0.613165,0.555276,0.731085,0.502822,0.734868,0.649569,0.450485,0.014236,0.690294,0.582838,0.959434,0.174471,0.172545,0.519446,0.572958,0.232077,0.846999,0.21555,0.140053,0.0581223,0.98778,0.87239,0.197555,0.115706,0.00458914,0.546853,0.886228,0.352279,0.795592,0.265971,0.712889,0.19306,0.78105,0.899636,0.895666,0.939891,0.374642,0.682223,0.644854,0.961837,0.231263,0.847145,0.549594,0.798983,0.96588,0.898605,0.588793,0.380678,0.0206437,0.129326,0.541655,0.323726,0.735859,0.0875537,0.71527,0.821942,0.0137139,0.66124,0.303397,0.434429,0.569791,0.663661,0.351651,0.187028,0.941823,0.744348,0.216821,0.152074,0.537744,0.281929,0.580038,0.648199,0.107069,0.492923,0.29727,0.263503,0.836806,0.744457,0.277536,0.281264,0.455638,0.250879,0.350256,0.0673356,0.0156986,0.0904936,0.654472,0.611328,0.663402,0.3619,0.602834,0.301513,0.130352,0.847539,0.837615,0.0270107,0.507129,0.214146,0.712874,0.0571703,0.680624,0.888412,0.120171,0.557946,0.436216,0.269929,0.308182,0.265004,0.479526,0.391322,0.646313,0.0911993,0.314697,0.175207,0.279324,0.20323,0.472289,0.158116,0.326407,0.245274,0.172095,0.193216,0.896268,0.265424,0.0986274,0.805483,0.81064,0.578204,0.883732,0.784586,0.683202,0.669925,0.279777,0.757129,0.0646067,0.721322,0.807569,0.358124,0.209215,0.80882,0.981915,0.157326,0.511912,0.32113,0.559844,0.218244,0.229465,0.10987,0.868506,0.514041,0.497341,0.368492,0.884197,0.771931,0.37125,0.0836281,0.387062,0.304788,0.639032,0.163819,0.535453,0.152804,0.0916173,0.811552,0.376003,0.83562,0.897267,0.195175,0.26663,0.526916,0.645972,0.984106,0.767958,0.825337,0.207297,0.0383465,0.472521,0.339424,0.216018,0.913369,0.829557,0.0914378,0.845882,0.604258,0.225635,0.249539,0.783753,0.0273915,0.437912,0.171212,0.01502,0.931795,0.652872,0.383056,0.0747188,0.267378,0.815473,0.628879,0.117579,0.899929,0.0315051,0.167358,0.373483,0.425924,0.463099,0.723638,0.939821,0.270605,0.957257,0.823987,0.528819,0.141895,0.990073,0.640817,0.375893,0.299042,0.873767,0.0194438,0.832751,0.488941,0.978163,0.634591,0.0887375,0.133997,0.259864,0.834072,0.404651,0.652626,0.850183,0.579266,0.380898,0.732419,0.183492,0.979412,0.897936,0.147197,0.791959,0.051892,0.186073,0.279918,0.0952517,0.155276,0.555452,0.534078,0.334846,0.278314,0.530782,0.835692,0.590624,0.509,0.0976502,0.41616,0.107651,0.867298,0.365931,0.521389,0.545217,0.689281,0.522243,0.665047,0.0944327,0.734127,0.248624,0.613318,0.0608324,0.691462,0.732542,0.431339,0.473948,0.395979,0.414404,0.252375,0.0269252,0.86349,0.977033,0.383868,0.834506,0.0581041,0.346928,0.880098,0.416845,0.591841,0.507627,0.551431,0.254819,0.336261,0.403508,0.191242,0.905715,0.544574,0.0875375,0.581397,0.019227,0.0139796,0.776406,0.831966,0.916367,0.0127017,0.132966,0.352586,0.365831,0.629474,0.34217,0.952373,0.613083,0.335972,0.788937,0.305171,0.175819,0.505958,0.585288,0.342102,0.425957,0.993143,0.270804,0.922544,0.384794,0.244527,0.730443,0.470186,0.162052,0.74393,0.157356,0.882137,0.74297,0.692856,0.599562,0.63827,0.20901,0.895322,0.854511,0.451266,0.66063,0.582363,0.113476,0.550834,0.635912,0.959024,0.622979,0.785607,0.876478,0.57954,0.776227,0.181215,0.236502,0.0651456,0.153312,0.448586,0.547905,0.146151,0.971153,0.995593,0.139018,0.0947511,0.440204,0.171381,0.113519,0.480876,0.909635,0.154768,0.708172,0.220654,0.632711,0.678499,0.649628,0.88644,0.702996,0.984044,0.431027,0.760413,0.895558,0.194951,0.870028,0.844952,0.812823,0.665185,0.202263,0.87143,0.937041,0.970427,0.991189,0.0181473,0.940645,0.11083,0.147628,0.136281,0.879886,0.12009,0.821755,0.800725,0.770381,0.941505,0.214145,0.0925445,0.480689,0.837541,0.226385,0.406815,0.0461106,0.444452,0.78349,0.383598,0.921491,0.280055,0.321932,0.079796,0.123797,0.494145,0.512496,0.789818,0.653561,0.713562,0.485005,0.976845,0.792487,0.180537,0.745537,0.15822,0.79095,0.262002,0.493156,0.520429,0.820669,0.080273,0.397256,0.649805,0.975459,0.605799,|0.874256,0.706406,0.985479,0.679787,0.372252,0.468836,0.732783,0.467105,0.908042,0.719999,0.167767,0.896047,0.382663,0.199387,0.278123,0.590466,0.82277,0.213384,0.623069,0.986445,0.52989,0.499582,0.148563,0.308115,0.48551,0.211481,0.532451,0.967685,0.365619,0.959775,0.312729,0.819229,0.912783,0.0632105,0.472833,0.0848422,0.312676,0.75996,0.75185,0.812175,0.97091,0.678745,0.0143065,0.947892,0.527913,0.654056,3.58224e-05,0.777814,0.767887,0.432139,0.0727364,0.766545,0.519412,0.832806,0.70393,0.329953,0.22255,0.288923,0.236145,0.470764,0.0372944,0.365782,0.417193,0.0057559,0.960496,0.50688,0.0148183,0.269815,0.206015,0.639655,0.669172,0.468599,0.803427,0.735181,0.612523,0.17752,0.227004,0.617153,0.974503,0.779889,0.848399,0.200365,0.407121,0.0104041,0.93082,0.523137,0.660114,0.556884,0.0382197,0.170204,0.663998,0.406625,0.299758,0.0569282,0.458282,0.788234,0.444537,0.544027,0.866377,0.732365,0.167342,0.623036,0.288351,0.350136,0.150292,0.586679,0.515086,0.742288,0.771929,0.941717,0.240923,0.602672,0.0322423,0.706981,0.592552,0.17526,0.892337,0.520324,0.019165,0.0311139,0.397528,0.220991,0.678306,0.793483,0.204471,0.543712,0.923278,0.452405,0.124932,0.0419027,0.623944,0.128142,0.244388,0.690334,0.933239,0.826285,0.133392,0.0392007,0.646774,0.0248235,0.407731,0.816571,0.669106,0.447668,0.238826,0.679858,0.69281,0.642343,0.980325,0.344358,0.883782,0.392543,0.0567454,0.848064,0.108485,0.339425,0.946711,0.705747,0.539342,0.15639,0.85881,0.314631,0.145221,0.1619,0.521973,0.830568,0.345778,0.379023,0.92434,0.15082,0.702192,0.533263,0.091068,0.740708,0.0915933,0.600726,0.62347,0.110496,0.243315,0.380761,0.256632,0.781036,0.152027,0.290428,0.455096,0.462051,0.91526,0.129408,0.189371,0.520985,0.307942,0.92663,0.715577,0.906795,0.907368,0.050962,0.0725282,0.271048,0.286244,0.813973,0.386815,0.926282,0.990122,0.657876,0.094929,0.041901,0.132156,0.796622,0.221909,0.202809,0.000816286,0.342428,0.464202,0.751468,0.106959,0.206331,0.474547,0.771758,0.898798,0.962788,0.481244,0.864617,0.129328,0.810252,0.208081,0.984443,0.395676,0.11039,0.108644,0.628976,0.401082,0.422756,0.472756,0.335916,0.98291,0.585519,0.0915341,0.56099,0.328171,0.347192,0.52988,0.431254,0.662455,0.395326,0.543548,0.366144,0.420427,0.0945281,0.290677,0.220676,0.774745,0.99974,0.621774,0.0340481,0.682124,0.415661,0.425321,0.931317,0.385635,0.538536,0.825777,0.363946,0.750228,0.0406626,0.507444,0.339487,0.725883,0.386655,0.511779,0.52315,0.276341,0.711469,0.963489,0.373487,0.958992,0.866972,0.460083,0.557388,0.311276,0.30166,0.0977383,0.135473,0.776954,0.738033,0.969049,0.439093,0.667045,0.65416,0.0700575,0.0343675,0.523783,0.361003,0.26852,0.491086,0.694771,0.214837,0.584477,0.534294,0.469895,0.446901,0.269048,0.0438231,0.351404,0.872426,0.0787793,0.56085,0.153085,0.646625,0.0423582,0.492462,0.442552,0.222111,0.849743,0.367419,0.220818,0.0190258,0.1063,0.926324,0.962505,0.287134,0.486725,0.270051,0.657692,0.633517,0.603047,0.331397,0.598248,0.368537,0.547192,0.975505,0.232718,0.191078,0.654455,0.314059,0.553438,0.216617,0.845196,0.411166,0.736037,0.118113,0.0902435,0.621454,0.429899,0.0978833,0.345965,0.174056,0.694521,0.403046,0.748459,0.118444,0.375566,0.196133,0.572751,0.994209,0.768944,0.335554,0.835695,0.940127,0.588007,0.924379,0.970552,0.891103,0.330968,0.806427,0.103811,0.0571586,0.0666606,0.432273,0.828852,0.542694,0.510679,0.0800917,0.0351629,0.602237,0.468897,0.205667,0.763708,0.133198,0.63046,0.844683,0.543149,0.287467,0.22412,0.976591,0.62423,0.5037,0.742246,0.988382,0.155781,0.571855,0.709611,0.392324,0.843894,0.784719,0.744764,0.69727,0.295744,0.539911,0.17154,0.138226,0.946297,0.576524,0.715755,0.580958,0.717447,0.886704,0.0679212,0.327428,0.239397,0.747404,0.335623,0.675882,0.500645,0.541149,0.113155,0.385147,0.353876,0.794633,0.28216,0.850463,0.927669,0.681241,0.846345,0.189091,0.951569,0.65279,0.504703,0.197955,0.149401,0.660797,0.391962,0.109745,0.97512,0.175644,0.48625,0.674589,0.24406,0.797879,0.67108,0.473263,0.47324,0.323266,0.91544,0.934011,0.118015,0.575751,0.169374,0.183898,0.560389,0.664009,0.00288224,0.139019,0.403003,0.414459,0.959785,0.347624,0.297481,0.474418,0.523424,0.796609,0.574995,0.991903,0.446856,0.817983,0.0825862,0.697289,0.391698,0.495393,0.822309,0.0415218,0.334213,0.0777028,0.655166,0.393249,0.600308,0.400062,0.982436,0.558562,0.916385,0.415116,0.0792199,0.936345,0.184099,0.697206,0.00802678,0.485762,0.5001,0.867451,0.450136,0.541413,0.801278,0.667709,0.900139,0.757219,0.390267,0.0511769,0.999043,0.66855,0.937257,0.987555,0.340134,0.59896,0.598658,0.13081,0.625412,0.425145,0.135092,0.266458,0.703502,0.515951,0.364811,0.516298,0.863025,0.704433,0.263006,0.958579,0.570969,0.644972,0.459524,0.365115,0.287951,0.958662,0.756395,0.424541,0.643915,0.183515,0.350695,0.0504323,0.61568,0.291029,0.179071,0.108207,0.0514163,0.378894,0.773213,0.883054,0.486178,0.607389,0.394867,0.587072,0.18592,0.072203,0.56976,0.173998,0.447721,0.563189,0.479775,0.658865,0.593628,0.892046,0.0191809,0.418422,0.939978,0.937961,0.285101,0.158975,0.597631,0.164402,0.24206,0.379001,0.409816,0.471974,0.575536,0.324453,0.514385,0.474012,0.717949,0.679977,0.617926,0.799145,0.826144,0.930586,0.607538,0.88278,0.604181,0.415822,0.22688,0.652103,0.111795,0.168445,0.636393,0.113989,0.46675,0.76761,0.0124073,0.792799,0.550793,0.635433,0.438354,0.220541,0.394088,0.0593494,0.152608,0.869148,0.619568,0.945406,0.850203,0.236568,0.97148,0.682002,0.487943,0.0176311,0.484245,0.0769752,0.28786,0.871586,0.238631,0.403345,0.0192297,0.321262,0.998253,0.458986,0.0682145,0.0156552,0.0497426,0.619409,0.156026,0.816475,0.811914,0.911801,0.87832,0.42877,0.321885,0.694442,0.0366861,0.95023,0.755929,0.797413,0.777969,0.118675,0.334018,0.0152624,0.889526,0.527993,0.526586,0.674853,0.071623,0.388459,0.311486,0.217222,0.264867,0.574509,0.614696,0.873428,0.481958,0.117221,0.16968,0.75451,0.412697,0.829917,0.359686,0.443882,0.486038,0.398966,0.358827,0.276591,0.0874865,0.804908,0.524258,0.0489299,0.976644,0.829932,0.734512,0.585951,0.501167,0.132403,0.828702,0.120709,0.863575,0.382523,0.231148,0.541803,0.773854,0.878302,0.0181307,0.107568,0.244023,0.382344,0.137153,0.620869,0.781096,0.938956,0.741677,0.0826165,0.426661,0.400646,0.29129,0.252203,0.944304,0.672049,0.171547,0.0595425,0.227219,0.494927,0.516352,0.0814021,0.318699,0.432061,0.202492,0.217795,0.0582808,0.88073,0.996599,0.674516,0.0833376,0.650733,0.679726,0.387146,0.540904,0.424876,0.549766,0.257852,0.827549,0.539441,0.634994,0.172462,0.985915,0.767905,0.757198,0.384685,0.638547,0.435704,0.0346755,0.534044,0.279592,0.859409,0.922614,0.20297,0.836949,0.413003,0.710015,0.924757,0.836349,0.463553,0.0675833,0.491162,0.9257,0.0588183,0.854443,0.291732,0.774001,0.800712,0.336132,0.744324,0.728957,0.61437,0.777381,0.17132,0.786149,0.442087,0.519406,0.504359,0.194376,0.737999,0.24023,0.209263,0.550491,0.123959,0.131298,0.674948,0.496015,0.154515,0.537699,0.395479,0.875136,0.452113,0.151025,0.693258,0.421767,0.428297,0.0872521,0.312174,0.340921,0.673977,0.78819,0.959676,0.0102034,0.0376831,0.422609,0.483179,0.329709,0.204797,0.997581,0.273739,0.494077,0.119142,0.177906,0.548879,0.407034,0.899164,0.345591,0.77889,0.219993,0.460158,0.360413,0.576719,0.574692,0.329757,0.873632,0.185097,0.680708,0.236683,0.127462,0.432728,0.0974746,0.753013,0.914364,0.800246,0.980133,0.369141,0.287739,0.947332,0.05453,0.180432,0.337714,0.796787,0.50708,0.615247,0.49924,0.873966,0.214676,0.30123,0.368449,0.00195825,0.775661,0.0800351,0.254833,0.127241,0.208221,0.568967,0.321041,0.643573,0.0191512,0.345181,0.475563,0.218298,0.63517,0.888352,0.0597438,0.964377,0.958941,0.819539,0.708895,0.778974,0.00202239,0.125443,0.436652,0.563898,0.889064,0.97008,0.732206,0.850635,0.339927,0.14042,0.816989,0.402122,0.324673,0.544345,0.732719,0.0395682,0.90355,0.400809,0.364933,0.825435,0.941924,0.130433,0.332352,0.123084,0.593995,0.141723,0.25849,0.777107,0.976454,0.584731,0.619511,0.886959,0.217963,0.817234,0.984074,0.78921,0.239569,0.00631094,0.607227,0.693101,0.617604,0.980472,0.199314,0.709011,0.682051,0.657593,0.1537,0.249969,0.231852,0.745547,0.252255,0.242813,0.372475,0.743804,0.417585,0.493357,0.0620578,0.545793,0.591511,0.827723,0.590907,0.747211,0.362951,0.89554,0.144921,0.411056,0.66964,0.880312,0.952699,0.507371,0.700257,0.895944,0.64192,0.554496,0.337705,0.672575,0.923732,0.381551,0.429248,0.68509,0.52496,0.671019,0.687984,0.290382,0.321009,0.0798725,0.00169092,0.394625,0.162437,0.0220873,0.784092,0.838759,0.300718,0.0428648,0.499268,0.527293,0.692244,0.635424,0.0819419,0.72738,0.896392,0.668841,0.365532,0.916801,0.271587,0.569479,0.686333,0.245137,0.726557,0.173211,0.758802,0.719092,0.683674,0.0352687,0.845504,0.946773,0.88114,0.53089,0.74001,0.646513,0.348072,0.687342,0.490201,0.545148,0.544677,0.0595606,0.748909,0.435716,0.00205177,0.73862,0.654102,0.542957,0.486558,0.917611,0.686844,0.946089,0.141535,0.126656,0.11489,0.492502,0.636566,0.0397919,0.228427,0.418022,0.691622,0.875029,0.591938,0.416394,0.250963,0.640746,0.320859,0.597803,0.595127,0.894793,0.400672,0.646403,|0.352901,0.724857,0.578539,0.29542,0.859105,0.95606,0.959602,0.684062,0.436888,0.779998,0.030912,0.429525,0.366893,0.700717,0.477387,0.0621515,0.14761,0.298867,0.704541,0.665473,0.303608,0.957643,0.115506,0.11032,0.956652,0.456715,0.675765,0.0181023,0.711585,0.229294,0.462522,0.540535,0.599399,0.190944,0.82747,0.048192,0.344124,0.822798,0.539185,0.544101,0.266642,0.339372,0.797772,0.857537,0.809839,0.483918,0.922294,0.021742,0.982253,0.797716,0.921127,0.0336258,0.608469,0.322196,0.747401,0.0125505,0.26817,0.829318,0.703193,0.0763444,0.337229,0.877664,0.139511,0.870204,0.387429,0.484941,0.995208,0.359843,0.408734,0.606502,0.402542,0.531987,0.26154,0.744578,0.814006,0.408649,0.500917,0.420383,0.0878561,0.120319,0.30961,0.634297,0.030582,0.890252,0.319557,0.609313,0.859097,0.550131,0.254695,0.55181,0.772814,0.849095,0.494471,0.394421,0.941726,0.173794,0.701688,0.606499,0.282123,0.163336,0.570461,0.0851139,0.0195892,0.32371,0.882556,0.424395,0.0618724,0.354473,0.576397,0.892764,0.937155,0.597973,0.17464,0.0179977,0.401384,0.256431,0.395288,0.0262531,0.660534,0.666252,0.657323,0.718194,0.861975,0.381311,0.635831,0.272672,0.523818,0.61567,0.0440865,0.0372295,0.0512174,0.0828264,0.496488,0.935995,0.668227,0.257873,0.651468,0.00228739,0.937033,0.906088,0.539569,0.886972,0.664965,0.85135,0.677557,0.307296,0.625896,0.152131,0.471503,0.643741,0.421091,0.578452,0.426865,0.181758,0.545943,0.501681,0.939989,0.121393,0.910973,0.443507,0.634608,0.773328,0.598159,0.382863,0.181411,0.310655,0.473721,0.612126,0.222224,0.733736,0.392739,0.315437,0.624457,0.667325,0.343888,0.202078,0.782304,0.01114,0.780231,0.506436,0.0807584,0.748507,0.658763,0.992714,0.807636,0.183978,0.978991,0.829781,0.857425,0.911424,0.200231,0.513507,0.64058,0.357852,0.454895,0.344904,0.374723,0.525383,0.0721142,0.895325,0.4325,0.838631,0.12134,0.20519,0.803656,0.598998,0.130514,0.760577,0.219708,0.587227,0.814776,0.756091,0.816821,0.152312,0.139869,0.637293,0.214236,0.452907,0.956714,0.89338,0.56565,0.0775239,0.268522,0.638839,0.856722,0.711985,0.724471,0.105173,0.871226,0.11517,0.370175,0.522576,0.744592,0.0443458,0.828863,0.979177,0.466225,0.0834414,0.808596,0.801531,0.607516,0.664481,0.913404,0.0714217,0.459547,0.598902,0.836622,0.0210259,0.174689,0.450539,0.266246,0.694648,0.44293,0.879979,0.809067,0.753429,0.829342,0.593422,0.812035,0.317744,0.116385,0.441333,0.413542,0.0364206,0.121881,0.930965,0.266335,0.601707,0.940281,0.948244,0.88921,0.962562,0.0970829,0.253114,0.177699,0.0523862,0.309805,0.729175,0.942908,0.0497218,0.707937,0.566877,0.724,0.581491,0.524991,0.288944,0.460477,0.482915,0.805141,0.226155,0.20697,0.941159,0.0266162,0.423482,0.340672,0.217643,0.0980262,0.252025,0.018181,0.967582,0.537277,0.640582,0.593469,0.707626,0.872492,0.447795,0.636707,0.329294,0.567299,0.754388,0.943914,0.924156,0.600457,0.140628,0.038977,0.453003,0.960581,0.343505,0.433701,0.231828,0.206551,0.267423,0.160469,0.451297,0.517115,0.191326,0.916956,0.490804,0.346751,0.0940935,0.321463,0.204046,0.830349,0.107332,0.462127,0.808401,0.955591,0.242816,0.614553,0.637152,0.379453,0.0885172,0.974187,0.331663,0.812112,0.436457,0.904923,0.935847,0.620291,0.117467,0.0945484,0.0684779,0.526084,0.190456,0.177229,0.818239,0.10834,0.743986,0.726111,0.566022,0.941236,0.740295,0.518465,0.694128,0.711302,0.479907,0.0213892,0.514819,0.525368,0.683385,0.149888,0.750996,0.331293,0.153788,0.164166,0.841583,0.555972,0.261225,0.15772,0.983724,0.988291,0.860821,0.551738,0.285639,0.475661,0.261193,0.943407,0.394041,0.572827,0.0610394,0.403794,0.255988,0.208673,0.00432497,0.512423,0.089774,0.355751,0.494792,0.0544775,0.250745,0.522018,0.982747,0.855773,0.822967,0.521587,0.501098,0.423631,0.958294,0.815917,0.746509,0.486749,0.104818,0.89835,0.813161,0.949663,0.914241,0.166142,0.940551,0.00890964,0.297994,0.165387,0.758972,0.673923,0.595526,0.413494,0.483734,0.807288,0.556941,0.656735,0.201111,0.466422,0.602195,0.534298,0.0873706,0.852788,0.959582,0.194158,0.583735,0.730919,0.679386,0.301682,0.968652,0.915285,0.564599,0.585468,0.315727,0.590122,0.475614,0.679427,0.926888,0.709829,0.73431,0.190695,0.710776,0.249401,0.497917,0.0467623,0.807773,0.318732,0.296286,0.859789,0.646362,0.620608,0.0486953,0.562444,0.662733,0.966605,0.557677,0.510787,0.697473,0.177686,0.515434,0.359997,0.718988,0.820967,0.687187,0.181438,0.31372,0.604174,0.0193092,0.174672,0.68113,0.311685,0.488269,0.706434,0.129759,0.881143,0.731516,0.805992,0.496484,0.790656,0.72367,0.271505,0.980804,0.0778712,0.598216,0.545272,0.99975,0.972571,0.21839,0.91905,0.0356013,0.861187,0.155362,0.988261,0.915549,0.396129,0.182652,0.845836,0.291842,0.428975,0.611905,0.905695,0.407477,0.50851,0.559944,0.232878,0.874157,0.984743,0.800554,0.784129,0.181762,0.205936,0.704076,0.833751,0.550275,0.0643628,0.257255,0.612945,0.829073,0.385702,0.398279,0.965115,0.206296,0.0222256,0.570259,0.161379,0.0281955,0.727411,0.524943,0.281567,0.311685,0.2367,0.266306,0.588646,0.914962,0.73984,0.249441,0.390733,0.0510151,0.727449,0.416645,0.969354,0.237955,0.960661,0.935041,0.887819,0.0108252,0.119875,0.682894,0.308913,0.542806,0.133812,0.816585,0.245718,0.763625,0.188447,0.914855,0.980813,0.592966,0.376733,0.707587,0.273044,0.445315,0.673649,0.357529,0.919077,0.531762,0.283156,0.656276,0.734414,0.943667,0.88998,0.869988,0.0708938,0.979725,0.555305,0.19791,0.14878,0.729286,0.601234,0.141681,0.0744,0.283448,0.382197,0.508363,0.219618,0.133718,0.928394,0.663498,0.47283,0.214559,0.602693,0.223603,0.462271,0.190257,0.772929,0.496876,0.372989,0.984775,0.907509,0.414795,0.741807,0.410155,0.117822,0.666781,0.7336,0.916433,0.448613,0.640519,0.0961179,0.203051,0.0790664,0.0579064,0.0386859,0.0714771,0.450933,0.785999,0.107946,0.0110056,0.337293,0.455841,0.192589,0.486011,0.940115,0.656505,0.527774,0.102101,0.872081,0.577066,0.0128448,0.87479,0.0784824,0.778798,0.955113,0.137392,0.990199,0.878069,0.197409,0.650728,0.337388,0.482536,0.867009,0.626749,0.662732,0.462604,0.440558,0.595602,0.779827,0.891144,0.49021,0.566384,0.847655,0.0123624,0.866493,0.285566,0.0834265,0.612965,0.619381,0.840381,0.406527,0.981611,0.20663,0.511333,0.0972995,0.756705,0.0845132,0.770436,0.490366,0.746653,0.968949,0.624503,0.51307,0.527806,0.0571698,0.0156554,0.968339,0.831387,0.887404,0.563076,0.493661,0.73222,0.427861,0.79535,0.871952,0.685703,0.684251,0.961697,0.811672,0.343057,0.23688,0.792064,0.660703,0.934046,0.849394,0.121457,0.973298,0.423495,0.18521,0.978835,0.635327,0.991432,0.894414,0.429796,0.93033,0.965146,0.730617,0.840826,0.417129,0.849244,0.40577,0.775659,0.682889,0.786602,0.176425,0.78552,0.253022,0.370512,0.0953284,0.856093,0.131686,0.453929,0.84599,0.788459,0.107699,0.215402,0.752073,0.773418,0.645129,0.302314,0.716922,0.544192,0.224757,0.00332522,0.701314,0.864868,0.640467,0.463344,0.0959049,0.95388,0.809726,0.113899,0.78069,0.61111,0.353735,0.436215,0.0834584,0.14093,0.806668,0.267858,0.151035,0.195118,0.393858,0.56206,0.466386,0.873594,0.212106,0.706005,0.66633,0.0340137,0.843512,0.638277,0.0112012,0.909807,0.766888,0.518343,0.372658,0.779862,0.610077,0.374221,0.446938,0.253657,0.564799,0.262138,0.545744,0.585619,0.00992447,0.931742,0.857949,0.485608,0.761172,0.522575,0.922095,0.867249,0.184676,0.428006,0.783663,0.523028,0.688551,0.45347,0.683607,0.24518,0.43672,0.996778,0.692852,0.707996,0.528804,0.312329,0.478789,0.347501,0.671696,0.641049,0.784019,0.291918,0.480105,0.58027,0.549482,0.599697,0.170452,0.11608,0.562732,0.728489,0.464807,0.682098,0.309448,0.174465,0.512448,0.916497,0.214405,0.0231508,0.334955,0.0402473,0.347165,0.726488,0.682908,0.746949,0.130756,0.418838,0.287732,0.613794,0.713831,0.34761,0.842264,0.105632,0.260252,0.680211,0.394773,0.947436,0.291025,0.0102895,0.82404,0.251063,0.647358,0.688939,0.89849,0.930567,0.696342,0.226729,0.064801,0.505204,0.196423,0.620907,0.808717,0.517246,0.0982895,0.600736,0.00031662,0.893153,0.78495,0.284066,0.971126,0.639293,0.877108,0.898061,0.185554,0.261885,0.602423,0.897238,0.104154,0.338365,0.345171,0.468571,0.658283,0.162452,0.35179,0.759936,0.227182,0.999322,0.308108,0.738166,0.316802,0.102616,0.104316,0.368539,0.129492,0.315603,0.30173,0.367487,0.887952,0.87165,0.983864,0.444199,0.422696,0.370535,0.784945,0.412322,0.460564,0.528699,0.353064,0.891668,0.639856,0.51389,0.435397,0.0150632,0.877854,0.98367,0.451677,0.773722,0.53918,0.261314,0.378007,0.503132,0.695689,0.776495,0.207296,0.0128316,0.107044,0.296012,0.194406,0.116747,0.482082,0.337473,0.436121,0.390467,0.453547,0.212224,0.397475,0.690316,0.978009,0.960999,0.609641,0.713374,0.717246,0.948588,0.0344121,0.166188,0.99304,0.558137,0.806739,0.182337,0.531033,0.59075,0.443977,0.044608,0.844578,0.828447,0.145058,0.0240641,0.450552,0.62013,0.883711,0.825837,0.459961,0.700586,0.945143,0.746997,0.611082,0.719769,0.654228,0.770764,0.058911,0.333838,0.296225,0.591765,0.3903,0.323722,0.969549,0.608556,0.571582,0.598647,0.862164,0.956994,0.813825,0.490541,0.647551,0.857659,0.767724,0.0298492,0.789093,0.670692,0.340425,0.134949,0.657508,0.986147,0.243624,0.704623,0.718794,0.63496,0.207543,0.251259,|0.0623664,0.703707,0.572134,0.697986,0.0616405,0.213323,0.154398,0.193263,0.262556,0.0915526,0.0112545,0.263727,0.513204,0.20562,0.97319,0.987482,0.619329,0.664266,0.252752,0.256288,0.557088,0.15603,0.02947,0.917098,0.327083,0.756029,0.548538,0.485442,0.105278,0.496725,0.618906,0.847519,0.195722,0.672468,0.294237,0.434609,0.426277,0.937102,0.929692,0.797177,0.197791,0.947943,0.642817,0.317364,0.460945,0.976273,0.841032,0.581734,0.281329,0.546983,0.293172,0.111939,0.345602,0.99891,0.216136,0.182442,0.6304,0.591926,0.0564099,0.139189,0.896085,0.75265,0.37298,0.446891,0.949054,0.117187,0.814622,0.515476,0.918991,0.627161,0.487842,0.734941,0.20243,0.0645774,0.0939301,0.334732,0.250503,0.378529,0.725612,0.0248651,0.888584,0.128813,0.57761,0.601797,0.608465,0.409602,0.427857,0.0366858,0.39288,0.779239,0.197352,0.464953,0.352787,0.872775,0.527497,0.83215,0.899485,0.338701,0.858183,0.174271,0.00349313,0.920491,0.1101,0.143648,0.66895,0.223912,0.922415,0.985533,0.0783079,0.0910392,0.329351,0.24695,0.608053,0.124761,0.35566,0.592417,0.181195,0.269952,0.555821,0.53012,0.716452,0.106959,0.63842,0.869011,0.628394,0.216924,0.126016,0.570376,0.510876,0.588559,0.979097,0.916411,0.602512,0.355476,0.308548,0.353549,0.269593,0.263091,0.9285,0.728658,0.263478,0.764542,0.110686,0.737326,0.316702,0.396143,0.696613,0.56926,0.516351,0.247848,0.734733,0.496868,0.943511,0.433747,0.78242,0.971844,0.436157,0.282981,0.744173,0.459576,0.499156,0.965089,0.474502,0.21818,0.105248,0.303528,0.585341,0.186937,0.0322249,0.263194,0.954244,0.601189,0.820136,0.831242,0.156699,0.802075,0.143682,0.86808,0.320681,0.214144,0.653565,0.600204,0.893965,0.123288,0.749762,0.0725226,0.873906,0.0580818,0.513801,0.915411,0.24577,0.389562,0.345819,0.120629,0.12388,0.106095,0.747844,0.254914,0.467917,0.918189,0.0228053,0.114873,0.832121,0.586232,0.94307,0.463044,0.549371,0.896805,0.38071,0.978172,0.88559,0.76819,0.636979,0.107621,0.698535,0.368374,0.274879,0.97248,0.852843,0.266129,0.512289,0.957069,0.206277,0.333187,0.887517,0.198949,0.0240935,0.169407,0.178931,0.751037,0.666747,0.589568,0.588186,0.533297,0.830064,0.446971,0.51024,0.726183,0.351949,0.580872,0.0792165,0.691816,0.433059,0.149089,0.705053,0.394491,0.832884,0.730515,0.31751,0.674345,0.38821,0.412529,0.998136,0.646627,0.329238,0.292133,0.0868096,0.0947044,0.559108,0.868023,0.0736409,0.236163,0.851665,0.687139,0.0545774,0.764741,0.471031,0.604741,0.852174,0.372042,0.227051,0.0823308,0.591109,0.270841,0.732319,0.149285,0.157595,0.475044,0.595662,0.698392,0.928286,0.404082,0.183606,0.943065,0.729731,0.992298,0.636491,0.887227,0.376728,0.251387,0.502395,0.0406049,0.964506,0.915418,0.830231,0.0760198,0.813332,0.00506228,0.801973,0.880526,0.672979,0.67133,0.345309,0.200532,0.311901,0.83862,0.71995,0.347325,0.553983,0.256158,0.278336,0.83315,0.81776,0.590266,0.832128,0.351937,0.481186,0.544527,0.477283,0.508788,0.607662,0.0109048,0.792865,0.196554,0.11034,0.240127,0.635207,0.421283,0.807107,0.624438,0.344544,0.578084,0.156208,0.895997,0.428766,0.266763,0.389375,0.499,0.372139,0.300914,0.652663,0.566503,0.809826,0.254984,0.761074,0.108299,0.204406,0.765701,0.396381,0.965565,0.219445,0.57966,0.930456,0.848275,0.9981,0.0447248,0.0531715,0.275035,0.744658,0.398918,0.300145,0.596254,0.0293904,0.315088,0.828842,0.885023,0.256062,0.107023,0.865595,0.281435,0.588238,0.476341,0.44089,0.649306,0.0522817,0.33578,0.428591,0.325314,0.810589,0.41308,0.202461,0.91741,0.321492,0.916018,0.43059,0.899727,0.698238,0.197321,0.471098,0.86189,0.221492,0.661076,0.385863,0.0665382,0.748627,0.619351,0.0698467,0.0282173,0.808291,0.210312,0.833905,0.969987,0.76118,0.742994,0.663493,0.374472,0.766717,0.942549,0.505263,0.815984,0.510181,0.252184,0.302789,0.00869924,0.263766,0.940569,0.277307,0.0652187,0.790088,0.0414925,0.810849,0.308407,0.206043,0.994839,0.14267,0.00408691,0.13864,0.808272,0.93668,0.464902,0.781944,0.638986,0.123191,0.512798,0.185909,0.563032,0.838577,0.897489,0.848799,0.0692169,0.713582,0.278439,0.886784,0.0707361,0.251474,0.820987,0.21239,0.54836,0.243017,0.0285568,0.538192,0.441808,0.61431,0.279906,0.604014,0.757708,0.646488,0.873151,0.986666,0.148652,0.849106,0.3142,0.817081,0.414011,0.970754,0.758326,0.791183,0.00296801,0.151119,0.796471,0.642269,0.355938,0.255126,0.519817,0.829768,0.583834,0.158662,0.632048,0.211389,0.518278,0.587761,0.854073,0.396688,0.962771,0.37738,0.0274752,0.693442,0.202734,0.319478,0.293041,0.273182,0.374126,0.878389,0.583888,0.799536,0.82221,0.729105,0.802767,0.180108,0.35505,0.326515,0.17321,0.000588477,0.960022,0.783438,0.481701,0.0213817,0.597098,0.587906,0.436647,0.983951,0.194965,0.620003,0.666366,0.476911,0.919105,0.824092,0.852086,0.582073,0.410895,0.901079,0.995472,0.079528,0.544871,0.595361,0.49897,0.138431,0.70798,0.898992,0.110157,0.414995,0.0884425,0.434705,0.490979,0.750009,0.344928,0.982147,0.674192,0.94543,0.748934,0.798958,0.36944,0.439009,0.212862,0.75455,0.44387,0.872173,0.842679,0.589281,0.658831,0.836612,0.372543,0.0877023,0.69424,0.0569562,0.207169,0.868019,0.624917,0.716092,0.978789,0.485121,0.196918,0.413313,0.0611263,0.0133806,0.8015,0.231824,0.419509,0.621569,0.580037,0.221474,0.33407,0.499044,0.684994,0.278897,0.00722748,0.509687,0.12203,0.872036,0.426611,0.889278,0.916767,0.639957,0.308797,0.396568,0.548774,0.261929,0.236399,0.84215,0.862192,0.135185,0.0980747,0.453142,0.133922,0.0763329,0.152595,0.899561,0.703084,0.0989268,0.425831,0.718573,0.000430167,0.0894389,0.501312,0.908493,0.550295,0.496116,0.99267,0.592066,0.679491,0.970533,0.0643451,0.713443,0.258307,0.0596794,0.792714,0.388556,0.0808908,0.178743,0.872347,0.927817,0.464279,0.736327,0.137501,0.298891,0.0723631,0.824199,0.515311,0.306424,0.861165,0.839517,0.874119,0.866258,0.0976821,0.290737,0.660638,0.607275,0.762277,0.653974,0.527078,0.401202,0.363791,0.541311,0.0029273,0.937221,0.843261,0.433696,0.889725,0.417827,0.102893,0.611081,0.65691,0.536457,0.714061,0.557711,0.257687,0.40152,0.0443518,0.178898,0.0948963,0.433287,0.823516,0.973801,0.846663,0.984706,0.56768,0.889227,0.315771,0.370077,0.360237,0.433394,0.337988,0.554567,0.564559,0.841818,0.19574,0.374297,0.53393,0.80485,0.221874,0.0754495,0.915669,0.50841,0.471782,0.216647,0.330214,0.44446,0.142055,0.667741,0.0361103,0.108868,0.176088,0.307286,0.151733,0.929732,0.892831,0.296697,0.946145,0.978871,0.92873,0.342771,0.362266,0.810041,0.55042,0.393796,0.851111,0.188612,0.0527125,0.325134,0.149178,0.103371,0.261054,0.597959,0.0406557,0.529284,0.743136,0.193021,0.556421,0.988242,0.59183,0.832867,0.412278,0.401471,0.671369,0.760892,0.505674,0.747318,0.676838,0.931291,0.124929,0.0744453,0.255359,0.342819,0.522882,0.354973,0.220757,0.607482,0.730231,0.638773,0.118762,0.998224,0.922585,0.589083,0.549874,0.835293,0.987864,0.69795,0.580759,0.737079,0.929669,0.553305,0.0753785,0.672285,0.202723,0.633025,0.752981,0.072886,0.574369,0.706671,0.291269,0.439443,0.58705,0.0362801,0.169274,0.142712,0.797215,0.100159,0.234374,0.450465,0.399558,0.749839,0.789908,0.706667,0.146461,0.252528,0.134997,0.294542,0.965889,0.740145,0.670307,0.655243,0.990514,0.289194,0.268776,0.0943439,0.676392,0.468953,0.807452,0.0631399,0.562214,0.042915,0.485173,0.816696,0.455746,0.719221,0.566878,0.407,0.953144,0.301368,0.460269,0.843923,0.525822,0.368208,0.658224,0.0444231,0.331398,0.196168,0.139473,0.116065,0.783255,0.381121,0.782806,0.72034,0.587781,0.326215,0.61249,0.276581,0.462843,0.491979,0.668351,0.19666,0.340504,0.224926,0.175878,0.480754,0.481378,0.628061,0.0990905,0.898348,0.731965,0.754724,0.267833,0.355562,0.210254,0.764707,0.159043,0.811379,0.20484,0.74677,0.335388,0.63644,0.0990276,0.655094,0.0461226,0.564812,0.551944,0.241899,0.445039,0.978912,0.851958,0.867047,0.32871,0.275085,0.372083,0.280207,0.31858,0.508919,0.676933,0.520638,0.31919,0.761421,0.504591,0.304657,0.156446,0.964015,0.633031,0.525782,0.483823,0.257777,0.158372,0.903488,0.756382,0.277977,0.615116,0.174446,0.997588,0.0221413,0.964998,0.993509,0.0497304,0.82334,0.926698,0.173859,0.387197,0.510129,0.142079,0.408521,0.68807,0.340085,0.98619,0.258649,0.0971869,0.0574396,0.0281029,0.536726,0.220786,0.554433,0.717778,0.499787,0.35428,0.408576,0.169999,0.5753,0.603776,0.10008,0.0844572,0.205687,0.644825,0.41996,0.201362,0.838188,0.714332,0.0414552,0.571937,0.756987,0.136547,0.452173,0.522833,0.209404,0.534733,0.943568,0.985395,0.689427,0.664046,0.839426,0.51851,0.0761575,0.858958,0.0169046,0.124258,0.724442,0.872046,0.167821,0.0892945,0.493482,0.75222,0.967895,0.93047,0.984013,0.618798,0.614551,0.883869,0.410522,0.850638,0.0959206,0.265986,0.114552,0.136599,0.37063,0.553712,0.894695,0.866465,0.942418,0.583888,0.76028,0.288054,0.769986,0.550508,0.882783,0.265075,0.664761,0.859778,0.0889549,0.797565,0.100959,0.785407,0.473944,0.674208,0.588719,0.291341,0.678999,0.377114,0.79259,0.0844171,0.596878,0.415383,0.467784,0.408968,0.0453594,0.923226,0.595727,0.509669,0.475613,0.242815,0.641737,0.689808,0.0776794,0.248315,0.270499,0.308466,0.631051,0.389667,0.059552,0.900003,0.558961,0.448883,0.948606,0.211656,0.347783,0.494001,|0.100319,0.650625,0.644857,0.614673,0.145349,0.0691134,0.00170749,0.341408,0.569019,0.491421,0.228968,0.4575,0.36177,0.298173,0.169619,0.0293902,0.421199,0.139116,0.884176,0.342438,0.785241,0.765807,0.19508,0.390255,0.610427,0.692148,0.495135,0.628576,0.264319,0.74268,0.904765,0.369456,0.978755,0.0880073,0.424181,0.0807871,0.878985,0.294446,0.299534,0.258643,0.448338,0.0960531,0.30354,0.405069,0.505798,0.96158,0.597151,0.608223,0.383331,0.264386,0.956981,0.010181,0.960018,0.86943,0.44412,0.789108,0.0463246,0.179751,0.194174,0.790732,0.529408,0.128671,0.138341,0.513615,0.740674,0.540112,0.814509,0.207357,0.480617,0.579122,0.888848,0.487804,0.364893,0.452131,0.863637,0.704665,0.947635,0.215652,0.152274,0.520754,0.835719,0.158852,0.635487,0.978415,0.0298188,0.377783,0.0553263,0.117496,0.0631103,0.872121,0.278989,0.503532,0.921618,0.600004,0.872282,0.906832,0.124345,0.337041,0.656439,0.225997,0.598382,0.305622,0.252265,0.586687,0.448076,0.331726,0.783952,0.494852,0.840088,0.0667717,0.519126,0.59807,0.069299,0.20166,0.914816,0.886528,0.357672,0.0372484,0.876997,0.927187,0.931248,0.212781,0.22849,0.353119,0.543412,0.484131,0.619782,0.446451,0.62278,0.723877,0.588919,0.112284,0.568358,0.845031,0.0260502,0.242592,0.568629,0.635288,0.881935,0.164388,0.64035,0.31512,0.491931,0.665391,0.238529,0.882126,0.113903,0.737965,0.013244,0.632251,0.98535,0.699195,0.0157038,0.0738011,0.718465,0.735853,0.307206,0.41627,0.897146,0.907928,0.58817,0.789173,0.80378,0.247866,0.309567,0.761869,0.228141,0.786462,0.577287,0.156984,0.827761,0.384719,0.487131,0.7499,0.747681,0.406502,0.55688,0.0617803,0.353749,0.258139,0.160764,0.79204,0.183871,0.826094,0.997908,0.817082,0.0171014,0.464919,0.638538,0.524474,0.541705,0.594965,0.142761,0.886377,0.229955,0.6992,0.999312,0.636202,0.0294628,0.896875,0.998111,0.0527119,0.479162,0.418471,0.736135,0.0325553,0.572674,0.626029,0.928626,0.787184,0.772402,0.662264,0.95661,0.402037,0.0143462,0.446064,0.337319,0.931625,0.283214,0.918988,0.345915,0.370108,0.573856,0.833497,0.665558,0.491088,0.494897,0.424883,0.805141,0.0524178,0.449823,0.968143,0.751695,0.168124,0.680296,0.118081,0.281509,0.795487,0.138181,0.738658,0.169291,0.774944,0.0645158,0.838571,0.297756,0.169117,0.718385,0.305029,0.916836,0.820935,0.105296,0.193895,0.707437,0.981365,0.0128293,0.77248,0.758172,0.282631,0.653048,0.662326,0.927362,0.869793,0.791532,0.969466,0.882738,0.471326,0.955097,0.0779345,0.82454,0.24978,0.919552,0.0837314,0.429394,0.0951353,0.78051,0.185907,0.594478,0.250845,0.985127,0.0699959,0.762282,0.712744,0.351822,0.989274,0.439902,0.496521,0.341692,0.0123968,0.679761,0.187706,0.11158,0.817821,0.961129,0.865946,0.126401,0.554101,0.846676,0.284904,0.362484,0.225254,0.533025,0.980504,0.715056,0.114565,0.235668,0.902738,0.975324,0.59725,0.991694,0.261821,0.122061,0.138411,0.721093,0.254364,0.8465,0.495148,0.0317069,0.00433558,0.425545,0.222178,0.428902,0.755566,0.155567,0.927447,0.298302,0.421645,0.949677,0.858843,0.567539,0.261091,0.311147,0.0817752,0.713099,0.764518,0.79342,0.622962,0.24567,0.286437,0.301039,0.5772,0.843244,0.589705,0.867996,0.527952,0.347253,0.29372,0.972483,0.4088,0.540294,0.979249,0.310659,0.594563,0.121159,0.35333,0.152401,0.601087,0.611718,0.928327,0.14606,0.506657,0.87628,0.332619,0.995558,0.0559619,0.412179,0.551578,0.131083,0.229751,0.532244,0.924379,0.372769,0.397533,0.623311,0.617459,0.325628,0.585124,0.5352,0.0994957,0.581119,0.428075,0.958344,0.254629,0.282556,0.802475,0.268338,0.793186,0.517382,0.183263,0.461489,0.469138,0.953013,0.786959,0.639275,0.0895541,0.587316,0.393333,0.918447,0.368618,0.212282,0.429335,0.755319,0.860477,0.0722486,0.216001,0.122421,0.216346,0.0145791,0.0343643,0.778036,0.690329,0.360067,0.0149717,0.913512,0.31804,0.513739,0.817772,0.864649,0.4427,0.492142,0.405682,0.905152,0.304933,0.203148,0.262032,0.0734785,0.6716,0.373856,0.46459,0.285127,0.189296,0.80456,0.279689,0.335939,0.789964,0.343693,0.363356,0.202458,0.929006,0.276758,0.295201,0.20523,0.810318,0.050082,0.0430348,0.991593,0.0140604,0.432078,0.385272,0.912204,0.222994,0.425028,0.368803,0.442193,0.421131,0.463095,0.935835,0.149928,0.291651,0.29979,0.481545,0.814127,0.355246,0.831422,0.999694,0.716783,0.357941,0.876068,0.523055,0.201718,0.438818,0.655953,0.196567,0.578375,0.878274,0.387619,0.803495,0.00266659,0.312301,0.68614,0.949018,0.0854988,0.417283,0.385117,0.903527,0.126741,0.754556,0.717493,0.949619,0.474178,0.665998,0.166268,0.838891,0.419221,0.948658,0.544359,0.7825,0.227367,0.277267,0.74308,0.230993,0.216596,0.279096,0.30223,0.260731,0.0725688,0.730725,0.773282,0.346006,0.375653,0.384327,0.105,0.427635,0.946586,0.904273,0.0141507,0.229407,0.676055,0.837561,0.115792,0.372043,0.737566,0.585054,0.86797,0.0270653,0.616297,0.889123,0.407497,0.680246,0.285945,0.420396,0.574114,0.419318,0.0466794,0.812292,0.532363,0.515691,0.590918,0.0614047,0.308561,0.959411,0.808487,0.604767,0.657315,0.751257,0.909614,0.384106,0.942699,0.0698789,0.764437,0.00509483,0.030772,0.132688,0.155661,0.452141,0.988524,0.372452,0.409906,0.886685,0.130501,0.0756228,0.164622,0.908951,0.0965371,0.820428,0.857057,0.184459,0.818523,0.340856,0.174473,0.901153,0.0501479,0.741698,0.804114,0.652031,0.00236958,0.664154,0.885993,0.191122,0.89971,0.0603428,0.12256,0.889501,0.675244,0.141708,0.735332,0.286721,0.342714,0.120231,0.147553,0.872075,0.938291,0.630826,0.210454,0.673783,0.272293,0.58665,0.541454,0.322447,0.796491,0.784541,0.64517,0.29101,0.657469,0.743175,0.0364553,0.339864,0.0449454,0.90269,0.394159,0.501976,0.415058,0.463988,0.483424,0.969746,0.262791,0.438738,0.353081,0.317876,0.790317,0.940486,0.241682,0.712742,0.498568,0.456487,0.570334,0.942417,0.801677,0.192473,0.00104195,0.817963,0.62998,0.404015,0.638552,0.01783,0.137074,0.843251,0.898159,0.589932,0.314558,0.341945,0.643337,0.702575,0.394601,0.40307,0.454082,0.854904,0.460976,0.411061,0.181064,0.662684,0.204718,0.787858,0.699661,0.181327,0.76234,0.469384,0.130383,0.584829,0.132375,0.0832161,0.949832,0.396688,0.351057,0.126639,0.984467,0.113802,0.43324,0.755265,0.706133,0.902329,0.437092,0.83989,0.615514,0.709133,0.408047,0.0167972,0.306121,0.336743,0.553038,0.498722,0.657199,0.230376,0.686981,0.999865,0.226739,0.100536,0.367813,0.477039,0.574574,0.403286,0.657781,0.588778,0.361146,0.223904,0.0339352,0.0778257,0.0569663,0.84402,0.809647,0.235816,0.166881,0.683103,0.64491,0.804027,0.982502,0.0918236,0.721543,0.581813,0.630539,0.403174,0.0524396,0.298507,0.590992,0.342737,0.202024,0.736226,0.295113,0.281538,0.969744,0.0212671,0.791118,0.722051,0.833179,0.344439,0.119117,0.887014,0.10463,0.910171,0.152308,0.348647,0.882397,0.689457,0.133645,0.152924,0.788437,0.370363,0.453923,0.810528,0.931294,0.510963,0.0757833,0.865785,0.227408,0.0481781,0.438407,0.746764,0.639059,0.523003,0.977613,0.0675535,0.323981,0.262528,0.762171,0.0257065,0.876062,0.016269,0.361885,0.477099,0.134693,0.643574,0.262793,0.172099,0.457272,0.473735,0.969183,0.588428,0.992377,0.192939,0.425153,0.797369,0.0559846,0.63215,0.266112,0.28094,0.173625,0.703598,0.638323,0.837519,0.987574,0.556844,0.457834,0.674302,0.119444,0.797914,0.593147,0.566294,0.603193,0.221415,0.688427,0.100067,0.146837,0.97778,0.966257,0.842722,0.528585,0.96252,0.427662,0.0530834,0.315835,0.0422724,0.57693,0.0871417,0.635018,0.584632,0.61741,0.996987,0.419971,0.874901,0.0846875,0.29381,0.975991,0.639253,0.726784,0.0253642,0.889944,0.948294,0.312777,0.603812,0.780848,0.684052,0.651929,0.382497,0.740981,0.318903,0.88598,0.325905,0.117097,0.860446,0.320079,0.195751,0.404956,0.126223,0.186511,0.809419,0.224003,0.93133,0.802783,0.0620592,0.21774,0.140023,0.463094,0.390216,0.233573,0.268914,0.719048,0.367952,0.690828,0.319035,0.606596,0.879424,0.113016,0.422051,0.531436,0.314016,0.386511,0.0663335,0.160082,0.871261,0.406055,0.98154,0.86513,0.380427,0.571302,0.242099,0.627065,0.728083,0.717252,0.338971,0.962065,0.140566,0.873794,0.90375,0.310721,0.163437,0.557195,0.738009,0.29733,0.00841528,0.289694,0.0442086,0.485064,0.221695,0.434409,0.018926,0.510227,0.910362,0.659575,0.260508,0.887007,0.599604,0.744048,0.615182,0.934764,0.551866,0.43102,0.777837,0.899521,0.742972,0.293236,0.0323751,0.483499,0.714626,0.0614425,0.255882,0.083761,0.0582093,0.57113,0.606862,0.55321,0.375055,0.282859,0.590161,0.327051,0.191557,0.159044,0.174894,0.505554,0.422401,0.724947,0.626244,0.952512,0.177161,0.984552,0.925189,0.134917,0.516685,0.519848,0.793261,0.721209,0.980261,0.34125,0.150742,0.0499087,0.324621,0.928132,0.326407,0.232658,0.374902,0.0110649,0.221049,0.0513931,0.658728,0.0881981,0.674572,0.623237,0.842557,0.0674689,0.98876,0.791732,0.34059,0.841631,0.0417899,0.163177,0.851406,0.296375,0.196231,0.937966,0.0559943,0.528672,0.808561,0.504209,0.945771,0.662951,0.165552,0.951921,0.7037,0.28072,0.276763,0.796444,0.563715,0.527032,0.741878,0.797452,0.205027,0.578786,0.200175,0.659096,0.351725,0.288742,0.170659,0.40817,0.480555,0.518399,0.535004,0.559317,0.762068,0.902463,0.824219,0.818381,0.31813,0.273385,0.712662,0.841005,0.72833,0.337164,0.258389,0.591855,0.496321,0.440657,0.169177,|0.302041,0.542273,0.841636,0.234422,0.642532,0.381445,0.689581,0.571535,0.945076,0.606239,0.896869,0.581215,0.340363,0.396232,0.584792,0.451726,0.995301,0.703296,0.228953,0.525981,0.686725,0.751621,0.366178,0.00814193,0.343807,0.38453,0.35142,0.922487,0.154561,0.650276,0.77422,0.134285,0.221466,0.422788,0.0749915,0.922664,0.640036,0.982046,0.712638,0.573611,0.742435,0.29384,0.492906,0.753515,0.394578,0.1994,0.658379,0.493318,0.876333,0.0237306,0.537392,0.858588,0.505227,0.585625,0.340599,0.849729,0.519336,0.962406,0.612074,0.156506,0.317928,0.269413,0.350849,0.808204,0.0090732,0.147315,0.305153,0.133143,0.52498,0.475917,0.702977,0.0653206,0.906242,0.545404,0.581525,0.363969,0.415606,0.282976,0.528275,0.0224512,0.570528,0.783123,0.389519,0.672874,0.830761,0.628224,0.857927,0.871148,0.193614,0.00472176,0.224868,0.842548,0.134943,0.984902,0.841065,0.252078,0.520582,0.96087,0.966622,0.82675,0.281112,0.796791,0.617468,0.124176,0.0502746,0.026099,0.512755,0.247099,0.768209,0.901441,0.463304,0.278682,0.662424,0.817532,0.349753,0.18864,0.247874,0.229797,0.140416,0.454239,0.870868,0.0738695,0.874104,0.478622,0.693054,0.586577,0.981338,0.31132,0.687419,0.828778,0.378662,0.100397,0.263024,0.624559,0.555951,0.451171,0.860952,0.262968,0.880937,0.979941,0.528436,0.657906,0.970063,0.770675,0.0787497,0.893129,0.483098,0.510716,0.654984,0.981059,0.37532,0.935866,0.739944,0.00568581,0.896968,0.241328,0.668242,0.704198,0.135339,0.519631,0.822631,0.359994,0.235988,0.381772,0.0428139,0.782422,0.445087,0.176286,0.525225,0.0820902,0.679923,0.112712,0.433379,0.744408,0.155855,0.325208,0.416295,0.765882,0.0378377,0.789433,0.287258,0.802088,0.818994,0.02817,0.736382,0.096338,0.831243,0.410289,0.489914,0.531933,0.87027,0.793907,0.278904,0.924352,0.168961,0.490344,0.390216,0.247255,0.930883,0.148647,0.933008,0.641568,0.903529,0.428691,0.787877,0.783864,0.178338,0.318249,0.102975,0.448353,0.134604,0.445253,0.377456,0.473369,0.101658,0.222647,0.464585,0.488027,0.966463,0.356555,0.549297,0.781759,0.279562,0.505807,0.575244,0.245073,0.800553,0.978643,0.202206,0.370197,0.141241,0.826233,0.157613,0.509228,0.69325,0.0883744,0.143977,0.0732322,0.324818,0.247968,0.342947,0.905075,0.967037,0.401383,0.237376,0.810006,0.454815,0.516434,0.485603,0.554274,0.894195,0.917492,0.650515,0.427672,0.946181,0.0225936,0.753614,0.633017,0.811536,0.175467,0.901234,0.1416,0.826166,0.911649,0.197582,0.0188758,0.211938,0.0613867,0.202732,0.411302,0.685105,0.400331,0.996057,0.0172188,0.597067,0.287953,0.0629893,0.109752,0.585357,0.440158,0.719951,0.510538,0.0911872,0.766769,0.026111,0.367338,0.467953,0.192513,0.202752,0.0821955,0.254066,0.0699733,0.640536,0.70329,0.294524,0.615621,0.0691711,0.304336,0.33006,0.367051,0.0954155,0.784306,0.252161,0.239854,0.169991,0.0702922,0.0425152,0.181394,0.819923,0.70191,0.235274,0.598386,0.627045,0.859823,0.87448,0.762336,0.299308,0.0474073,0.767339,0.848698,0.982902,0.133475,0.791096,0.712871,0.878346,0.787752,0.0129841,0.940807,0.622678,0.299748,0.610317,0.406853,0.391602,0.719532,0.80319,0.82122,0.633354,0.321549,0.823579,0.36905,0.836838,0.168504,0.119752,0.975338,0.186952,0.637144,0.379392,0.73252,0.701333,0.46661,0.158372,0.0413348,0.699207,0.974801,0.0432845,0.878125,0.870571,0.483283,0.721299,0.818404,0.278987,0.322912,0.0371599,0.13257,0.467553,0.964862,0.475599,0.570489,0.292092,0.791536,0.654857,0.476051,0.767055,0.582627,0.427531,0.729679,0.758864,0.139315,0.732437,0.332557,0.189244,0.205584,0.502058,0.113626,0.262488,0.958628,0.292891,0.309701,0.106345,0.170378,0.420384,0.436793,0.00821257,0.674864,0.147877,0.500207,0.396277,0.0598269,0.694773,0.333274,0.00026089,0.265779,0.942832,0.641151,0.701876,0.216493,0.115361,0.213355,0.0813633,0.63298,0.175435,0.587299,0.167732,0.952771,0.325786,0.817309,0.713668,0.509983,0.653139,0.468192,0.660718,0.551424,0.229114,0.893959,0.0658608,0.67069,0.0104195,0.423301,0.578081,0.542248,0.274076,0.393729,0.982539,0.942623,0.911942,0.596593,0.988258,0.783111,0.279749,0.18707,0.545678,0.707555,0.0931463,0.343643,0.608102,0.0155916,0.797195,0.554243,0.759059,0.4143,0.443142,0.246476,0.411391,0.502901,0.859831,0.765775,0.128854,0.0571666,0.627556,0.269794,0.466979,0.850831,0.549299,0.570988,0.42966,0.658394,0.359068,0.698864,0.868348,0.109679,0.928757,0.873109,0.976761,0.133871,0.863262,0.0662848,0.566146,0.928575,0.0449374,0.446628,0.253165,0.903861,0.701225,0.1429,0.817895,0.11904,0.613529,0.956613,0.0370017,0.487494,0.612759,0.182376,0.605882,0.522146,0.0332434,0.431638,0.2583,0.943122,0.199336,0.123409,0.274642,0.434101,0.597299,0.961064,0.491656,0.36703,0.988708,0.0202683,0.34049,0.85233,0.005041,0.649238,0.844267,0.388572,0.0283308,0.900632,0.28086,0.575593,0.318386,0.606641,0.623212,0.895315,0.405531,0.12997,0.681272,0.240261,0.583575,0.310967,0.733542,0.035526,0.067625,0.374112,0.118205,0.221783,0.238843,0.54238,0.851282,0.81855,0.706736,0.643298,0.0737077,0.615887,0.0195615,0.18589,0.497146,0.513307,0.711613,0.0103952,0.263788,0.119325,0.449411,0.956468,0.420028,0.863755,0.12769,0.268229,0.447296,0.975031,0.244049,0.289046,0.979966,0.828887,0.131333,0.123196,0.410265,0.586778,0.998275,0.0781726,0.00861913,0.880707,0.915698,0.688061,0.284747,0.98117,0.181415,0.861716,0.123734,0.690325,0.087377,0.838964,0.556002,0.292957,0.0766724,0.811061,0.236603,0.270179,0.258018,0.723423,0.367461,0.0843922,0.419731,0.796619,0.46199,0.159255,0.809987,0.388594,0.187455,0.992984,0.686646,0.925195,0.920473,0.142484,0.296961,0.842905,0.258356,0.875657,0.420448,0.192493,0.130072,0.6806,0.0654407,0.75625,0.902631,0.431867,0.164542,0.876146,0.227792,0.055996,0.348721,0.761833,0.158001,0.3378,0.495501,0.466519,0.459227,0.654469,0.534746,0.615058,0.38807,0.261207,0.594548,0.518595,0.843373,0.565966,0.0994548,0.469685,0.0691719,0.253099,0.720465,0.741561,0.288258,0.0773613,0.917925,0.44739,0.730574,0.541528,0.0244591,0.854778,0.674418,0.840233,0.461979,0.506708,0.369999,0.183125,0.0452458,0.660725,0.553926,0.376545,0.240692,0.471157,0.814313,0.65325,0.774727,0.291781,0.431772,0.235084,0.436783,0.552434,0.219459,0.516156,0.359433,0.59611,0.248848,0.252089,0.67027,0.217227,0.367418,0.385411,0.997189,0.760664,0.229432,0.765729,0.598769,0.47833,0.817498,0.743498,0.838052,0.117793,0.431141,0.998545,0.799504,0.203001,0.778949,0.154751,0.563266,0.0194474,0.450934,0.00778431,0.991423,0.653734,0.109082,0.566082,0.145922,0.000711739,0.287533,0.180285,0.973714,0.554605,0.713484,0.328014,0.260847,0.327021,0.908463,0.329448,0.354856,0.473821,0.647101,0.161786,0.441464,0.193349,0.230796,0.511615,0.181029,0.409576,0.815636,0.957222,0.388957,0.874893,0.269884,0.351887,0.937025,0.085377,0.449887,0.416168,0.686054,0.45514,0.567971,0.636657,0.647497,0.203084,0.508823,0.825742,0.516921,0.480282,0.0379807,0.616396,0.815802,0.602259,0.899023,0.013603,0.478838,0.730258,0.900827,0.0427433,0.594323,0.8369,0.698743,0.978604,0.553644,0.844949,0.893089,0.590369,0.238606,0.582734,0.3109,0.563253,0.636877,0.501283,0.968552,0.567491,0.0257817,0.724193,0.102082,0.965277,0.851972,0.944617,0.131915,0.941027,0.601471,0.461914,0.44924,0.666724,0.457622,0.819736,0.439825,0.127663,0.907002,0.975996,0.713111,0.0189284,0.895785,0.366151,0.636203,0.434495,0.544503,0.878666,0.125688,0.876966,0.541581,0.790543,0.182731,0.0368737,0.92562,0.567693,0.491347,0.182427,0.735008,0.299733,0.552052,0.420435,0.138,0.98322,0.584093,0.779994,0.363873,0.116781,0.774494,0.279683,0.337057,0.446383,0.52167,0.564217,0.980254,0.682453,0.585132,0.870511,0.219396,0.196847,0.578883,0.844452,0.0718513,0.875152,0.783987,0.920008,0.23477,0.0139577,0.0662856,0.380444,0.399728,0.65841,0.599707,0.682637,0.213349,0.380888,0.0315736,0.232302,0.939404,0.191279,0.501739,0.29206,0.0816787,0.579502,0.0245336,0.0554355,0.458015,0.00763345,0.783808,0.176885,0.639162,0.267555,0.650763,0.217527,0.680843,0.775539,0.744166,0.858629,0.771224,0.988264,0.0800211,0.834305,0.340761,0.521448,0.50758,0.49017,0.760489,0.30005,0.692046,0.1512,0.0976232,0.552935,0.898023,0.0860162,0.994492,0.56625,0.0306132,0.25233,0.517306,0.687339,0.0249835,0.47758,0.301998,0.263438,0.0277454,0.850817,0.764604,0.236257,0.7311,0.683035,0.432976,0.559427,0.471782,0.464765,0.111161,0.177074,0.626603,0.540933,0.935125,0.356777,0.950635,0.706148,0.772951,0.0212218,0.731092,0.90899,0.754321,0.101672,0.704001,0.545756,0.892828,0.090749,0.987817,0.308116,0.00775349,0.864475,0.58372,0.753384,0.967079,0.333511,0.981471,0.11934,0.675629,0.548207,0.294129,0.999085,0.161032,0.531358,0.517648,0.959979,0.99498,0.91443,0.334582,0.388907,0.336087,0.780351,0.518604,0.0617318,0.510809,0.382148,0.944189,0.142753,0.265683,0.665055,0.0790948,0.556485,0.191674,0.607455,0.483556,0.314158,0.165285,0.502964,0.237927,0.759931,0.663681,0.573598,0.321058,0.497719,0.660449,0.308962,0.291364,0.719588,0.8426,0.874315,0.308884,0.517726,0.14571,0.0122173,0.475345,0.661544,0.937032,0.839768,0.749169,0.392559,0.417381,0.888595,0.291398,0.227955,0.95087,0.169354,0.812155,0.0129296,0.144441,0.722463,0.265127,0.60099,0.501103,0.603462,0.615229,0.284096,0.0668963,0.987467,|0.509061,0.543076,0.820886,0.388981,0.632889,0.617549,0.598913,0.227151,0.848675,0.229908,0.593681,0.104876,0.570068,0.720829,0.124918,0.834602,0.114207,0.807963,0.80119,0.0954783,0.448047,0.108701,0.793495,0.423286,0.459641,0.285121,0.178999,0.0515259,0.465412,0.58893,0.966405,0.768728,0.0179467,0.118332,0.960935,0.361738,0.361105,0.993122,0.72919,0.333317,0.649996,0.156243,0.00356334,0.579785,0.818511,0.293056,0.0091334,0.0578713,0.679387,0.866619,0.701224,0.111027,0.0140865,0.319006,0.736448,0.291699,0.394898,0.723475,0.228017,0.543866,0.360041,0.0767866,0.449045,0.38568,0.590018,0.924274,0.437514,0.300018,0.264102,0.0132654,0.0628686,0.588917,0.23991,0.338315,0.319991,0.711462,0.268038,0.906259,0.154479,0.765023,0.760649,0.304394,0.673186,0.658273,0.259397,0.450043,0.799117,0.218173,0.0583546,0.976625,0.0162954,0.797743,0.430117,0.169755,0.871838,0.441227,0.116771,0.60587,0.929429,0.736049,0.583611,0.660798,0.465893,0.665015,0.569145,0.36593,0.642999,0.497501,0.514718,0.375992,0.0292582,0.284519,0.700792,0.908642,0.503063,0.273355,0.340113,0.494976,0.666261,0.092667,0.19187,0.593067,0.862513,0.169761,0.5706,0.422896,0.832729,0.786584,0.756031,0.825886,0.667504,0.0840616,0.263092,0.194261,0.436389,0.491127,0.300703,0.231374,0.570604,0.0152621,0.207915,0.945421,0.222409,0.944198,0.0164872,0.17233,0.352364,0.0991981,0.594901,0.501154,0.245721,0.337966,0.958721,0.366971,0.120814,0.204783,0.792715,0.944213,0.122931,0.196657,0.851699,0.657248,0.860736,0.764768,0.471392,0.597358,0.563925,0.370983,0.638887,0.372282,0.453395,0.297706,0.360537,0.775239,0.783633,0.931253,0.406685,0.116533,0.464868,0.48917,0.853166,0.711032,0.168976,0.864778,0.86697,0.581739,0.444493,0.773319,0.33208,0.534293,0.953875,0.402192,0.21935,0.625885,0.688285,0.10834,0.225567,0.379387,0.787809,0.711301,0.310639,0.653363,0.816,0.827065,0.988559,0.15687,0.543603,0.489636,0.445821,0.762767,0.661628,0.119834,0.488522,0.871695,0.864296,0.272827,0.467109,0.0538086,0.73415,0.605737,0.468468,0.73073,0.385909,0.492298,0.19755,0.384769,0.815814,0.763743,0.372153,0.364624,0.587743,0.785849,0.924181,0.777086,0.176129,0.784167,0.660078,0.215295,0.100499,0.720003,0.534891,0.575217,0.375939,0.807331,0.406179,0.4274,0.824357,0.29853,0.323451,0.325428,0.64918,0.963436,0.339985,0.133195,0.3109,0.134257,0.176298,0.556578,0.422914,0.739614,0.588152,0.117205,0.905991,0.18456,0.0938548,0.13473,0.233261,0.99084,0.640191,0.581862,0.00408179,0.787604,0.763863,0.575898,0.564106,0.750414,0.0723129,0.767469,0.809575,0.411722,0.307438,0.139226,0.873617,0.787918,0.346769,0.13853,0.916677,0.717687,0.604852,0.14083,0.63596,0.711881,0.969994,0.553655,0.12345,0.505639,0.844997,0.321524,0.537568,0.8418,0.469886,0.166984,0.624222,0.844163,0.572339,0.614705,0.932509,0.509235,0.918703,0.780947,0.880468,0.571485,0.138168,0.149335,0.16375,0.540424,0.751819,0.9991,0.597377,0.50888,0.657125,0.810706,0.294709,0.287553,0.463866,0.291088,0.621876,0.612609,0.840331,0.614366,0.554409,0.808196,0.589461,0.620461,0.172721,0.363579,0.237887,0.504018,0.0482665,0.547971,0.23254,0.0161767,0.867704,0.800332,0.107971,0.73761,0.867297,0.895138,0.960519,0.669803,0.726364,0.180682,0.0107038,0.797768,0.628916,0.523448,0.56064,0.335637,0.77096,0.701277,0.149997,0.0312608,0.524088,0.522862,0.306245,0.841549,0.227662,0.232203,0.275538,0.0668597,0.90998,0.884443,0.891391,0.426125,0.958758,0.114998,0.147409,0.234948,0.185318,0.371642,0.645279,0.192888,0.383389,0.790804,0.639592,0.677378,0.24108,0.285504,0.132659,0.278905,0.855986,0.56073,0.125174,0.757536,0.144978,0.747819,0.700404,0.930974,0.468287,0.0523442,0.191311,0.844681,0.813529,0.400625,0.905516,0.447464,0.618493,0.917106,0.668718,0.213745,0.290634,0.818738,0.0627297,0.363755,0.890264,0.314205,0.30636,0.604672,0.234837,0.825377,0.905292,0.0326346,0.825684,0.900407,0.499048,0.703514,0.14804,0.428104,0.521986,0.292413,0.276755,0.784351,0.325842,0.465489,0.962205,0.946006,0.126081,0.356532,0.130931,0.667614,0.834073,0.391776,0.415403,0.600546,0.711193,0.815765,0.676599,0.441723,0.181742,0.675251,0.179847,0.868278,0.0436164,0.273335,0.0190156,0.797477,0.489187,0.522101,0.716259,0.641521,0.284885,0.0617973,0.831245,0.479261,0.25063,0.0550128,0.0918442,0.909244,0.0199143,0.70166,0.0226055,0.511657,0.782862,0.718297,0.677309,0.406344,0.876893,0.557247,0.937207,0.00239211,0.462655,0.393768,0.235877,0.460684,0.878928,0.22912,0.896834,0.603049,0.0611653,0.0875998,0.862497,0.925995,0.0902675,0.172555,0.372955,0.836581,0.428642,0.349588,0.425203,0.254039,0.580512,0.685866,0.564582,0.0700497,0.181668,0.315188,0.751774,0.657958,0.272189,0.551045,0.519766,0.742861,0.0730888,0.681355,0.445104,0.68801,0.448288,0.957549,0.194724,0.731212,0.768047,0.146511,0.771649,0.0528315,0.457623,0.519335,0.23068,0.600547,0.830223,0.525809,0.780081,0.815756,0.0148723,0.661633,0.0694566,0.733054,0.70494,0.240077,0.989883,0.197219,0.299785,0.37443,0.564601,0.172778,0.291599,0.692749,0.936117,0.442247,0.77876,0.167671,0.443463,0.138936,0.98223,0.258955,0.965497,0.0656416,0.566386,0.742658,0.696436,0.776547,0.180646,0.890899,0.31264,0.664275,0.306171,0.756969,0.817676,0.687231,0.321657,0.947829,0.939872,0.774446,0.481508,0.46817,0.853933,0.261917,0.919746,0.899263,0.450238,0.598645,0.991446,0.802793,0.25889,0.701525,0.918836,0.221236,0.440299,0.799052,0.441001,0.669943,0.619789,0.868478,0.386732,0.316843,0.977099,0.960084,0.0456893,0.744375,0.842871,0.384431,0.676732,0.724792,0.311267,0.307507,0.366507,0.453706,0.434595,0.816274,0.905136,0.140072,0.89855,0.489399,0.982473,0.399811,0.44992,0.292683,0.0646241,0.406985,0.311503,0.340552,0.972831,0.1048,0.407044,0.784302,0.766401,0.75008,0.806028,0.329045,0.904881,0.0595043,0.348704,0.00738418,0.973554,0.00238818,0.624968,0.539286,0.520452,0.977362,0.383974,0.598537,0.216402,0.644204,0.547295,0.153923,0.62889,0.127991,0.0866929,0.113182,0.334112,0.716577,0.0267273,0.859484,0.053392,0.176559,0.901975,0.0711691,0.380083,0.27915,0.0217889,0.894004,0.467156,0.503331,0.407916,0.273278,0.542255,0.426644,0.384901,0.921669,0.392116,0.926334,0.456948,0.231225,0.10135,0.254378,0.162447,0.0550894,0.704069,0.233284,0.554698,0.674396,0.224432,0.994833,0.15966,0.434117,0.246897,0.458718,0.476928,0.0547543,0.898678,0.906405,0.655457,0.612166,0.114101,0.674095,0.149736,0.501933,0.957771,0.511175,0.871639,0.331181,0.708884,0.841975,0.088299,0.113877,0.0428008,0.358745,0.741312,0.742634,0.029493,0.453984,0.37658,0.652052,0.918448,0.682861,0.102067,0.762116,0.133796,0.323911,0.0762153,0.549017,0.752999,0.343657,0.883017,0.839899,0.989786,0.281611,0.540709,0.880952,0.143915,0.946699,0.637429,0.667886,0.896548,0.619798,0.410905,0.851918,0.405498,0.0404916,0.286084,0.618794,0.545695,0.989666,0.35824,0.637175,0.0813927,0.679853,0.805021,0.179929,0.620937,0.0208182,0.241339,0.534881,0.031209,0.38939,0.725761,0.718393,0.821647,0.687281,0.459216,0.232569,0.791624,0.459432,0.70326,0.241497,0.912941,0.369541,0.253613,0.0359122,0.954634,0.229898,0.79166,0.918735,0.580717,0.374355,0.788725,0.557209,0.242506,0.0174617,0.104199,0.176741,0.281523,0.25348,0.196269,0.665254,0.68678,0.719804,0.857444,0.863466,0.659475,0.201138,0.501228,0.784275,0.769104,0.8526,0.206915,0.342511,0.231055,0.722779,0.489574,0.657448,0.292368,0.113501,0.739634,0.288745,0.32925,0.223379,0.519499,0.318801,0.90429,0.508167,0.467298,0.447006,0.832893,0.540394,0.202505,0.0190743,0.611007,0.586742,0.555894,0.979458,0.747038,0.0582886,0.642535,0.123951,0.567539,0.880925,0.414982,0.493354,0.543015,0.809392,0.902361,0.801213,0.427468,0.800917,0.524078,0.417179,0.563247,0.0946612,0.0764863,0.174537,0.420674,0.93892,0.124898,0.103774,0.171849,0.518233,0.75343,0.350894,0.110411,0.889263,0.180415,0.0756984,0.841069,0.591995,0.745174,0.899421,0.475474,0.107177,0.372133,0.979227,0.738011,0.321997,0.259103,0.094869,0.7977,0.233998,0.0185013,0.0950775,0.675855,0.580402,0.275921,0.184097,0.921153,0.242427,0.425083,0.213866,0.772934,0.377492,0.484868,0.379245,0.352045,0.868987,0.885811,0.78801,0.0298933,0.86687,0.190788,0.78938,0.447329,0.835187,0.681291,0.344618,0.726783,0.470324,0.0843219,0.172931,0.911955,0.849195,0.239313,0.115267,0.41556,0.0919629,0.53454,0.756021,0.544341,0.965371,0.717956,0.73582,0.264724,0.094048,0.691231,0.854212,0.989807,0.405659,0.540981,0.746571,0.389848,0.0314159,0.183034,0.80396,0.208572,0.386415,0.402813,0.150546,0.488961,0.257777,0.054785,0.218183,0.62241,0.355933,0.876819,0.828817,0.463931,0.670658,0.968153,0.498721,0.0593807,0.899128,0.664926,0.0448832,0.208007,0.180947,0.819266,0.22744,0.824449,0.616732,0.994269,0.966712,0.405237,0.554775,0.222553,0.298333,0.86398,0.196663,0.626571,0.403502,0.225854,0.929222,0.138252,0.037073,0.321162,0.355974,0.0847135,0.140695,0.0716053,0.520356,0.323107,0.0393249,0.0850545,0.458196,0.218397,0.214449,0.0358942,0.106243,0.74207,0.229094,0.135382,0.767543,0.72147,0.722592,0.155648,0.145596,0.239012,0.37382,0.410511,0.0227937,0.700435,0.00856781,0.682387,0.756261,0.313998,0.124479,0.6154,0.0161455,0.123195,0.580099,0.216987,0.0376322,0.101522,0.521721,|0.919103,0.469865,0.776786,0.770658,0.633346,0.740431,0.98962,0.091228,0.986949,0.799828,0.26151,0.639437,0.397587,0.332194,0.215951,0.015177,0.789429,0.41336,0.567801,0.174966,0.678668,0.861636,0.65426,0.346537,0.066772,0.16296,0.0221055,0.728071,0.889187,0.0722328,0.909191,0.957181,0.962462,0.201968,0.57737,0.369095,0.584286,0.868064,0.229428,0.316917,0.55108,0.774996,0.987149,0.264405,0.86234,0.000195503,0.612196,0.730376,0.740419,0.363913,0.821435,0.495911,0.861477,0.115284,0.188303,0.49024,0.102086,0.823336,0.593083,0.0724145,0.19204,0.432685,0.894853,0.207522,0.578195,0.398647,0.316652,0.954087,0.430341,0.383794,0.822969,0.425435,0.717729,0.1006,0.881661,0.611572,0.419498,0.291086,0.227571,0.75692,0.00539863,0.595869,0.143877,0.0467213,0.453927,0.551375,0.507307,0.974047,0.173429,0.662005,0.208213,0.302249,0.329075,0.397461,0.380738,0.985312,0.363292,0.143975,0.685888,0.747998,0.402754,0.19811,0.885889,0.708006,0.860495,0.983963,0.860156,0.794058,0.38635,0.353032,0.394109,0.958851,0.544191,0.761546,0.852391,0.422318,0.838112,0.868414,0.845042,0.146631,0.10269,0.35805,0.374745,0.938284,0.51925,0.00271565,0.86677,0.074303,0.684756,0.321644,0.0411672,0.620379,0.856284,0.804036,0.0617439,0.397306,0.166245,0.726919,0.26313,0.0708488,0.736735,0.675937,0.132538,0.220461,0.7274,0.958136,0.223055,0.838725,0.338545,0.556207,0.897696,0.43285,0.947572,0.904256,0.255745,0.461199,0.867071,0.988484,0.983988,0.107301,0.985847,0.769053,0.617397,0.321803,0.930482,0.41277,0.096682,0.443227,0.813908,0.496717,0.749166,0.180129,0.305171,0.616932,0.73205,0.70941,0.98732,0.318291,0.673313,0.915689,0.790477,0.17935,0.795068,0.258518,0.0523046,0.60404,0.168259,0.981153,0.170989,0.680544,0.462658,0.385102,0.0735751,0.630175,0.44729,0.175416,0.543305,0.719431,0.872107,0.0168961,0.038096,0.326223,0.033498,0.00957757,0.058931,0.126799,0.309161,0.644566,0.85793,0.32018,0.037966,0.144592,0.0398373,0.542502,0.651134,0.470552,0.817162,0.603402,0.959476,0.300042,0.420658,0.0970856,0.998922,0.139283,0.361148,0.948661,0.0940737,0.512336,0.587135,0.535918,0.030414,0.597376,0.395249,0.646549,0.183946,0.184648,0.182454,0.682767,0.901695,0.20502,0.346817,0.224129,0.310112,0.604384,0.0819895,0.882706,0.35465,0.969036,0.366088,0.0865943,0.0192561,0.992953,0.67251,0.703544,0.53904,0.587895,0.963265,0.758037,0.62987,0.720201,0.24876,0.361745,0.0140301,0.371181,0.269018,0.136472,0.177028,0.830426,0.539876,0.638031,0.731898,0.479745,0.846517,0.497801,0.920059,0.866647,0.558125,0.322818,0.477333,0.774082,0.790319,0.663557,0.486501,0.0590507,0.668104,0.0559376,0.665969,0.526012,0.12053,0.371096,0.921079,0.370435,0.55554,0.493689,0.0834795,0.719279,0.0641976,0.679606,0.92754,0.294955,0.327131,0.713571,0.952475,0.66835,0.106939,0.0112871,0.217647,0.780637,0.627849,0.308549,0.904413,0.363513,0.0519392,0.712563,0.365916,0.926159,0.912418,0.944092,0.450974,0.835894,0.570735,0.836501,0.352989,0.176623,0.545402,0.0650578,0.940947,0.533366,0.253515,0.035403,0.757706,0.528414,0.888249,0.0835529,0.782519,0.894787,0.0168843,0.0527781,0.496831,0.599054,0.752659,0.225481,0.451536,0.212321,0.959732,0.182378,0.234372,0.415801,0.0418641,0.204696,0.542543,0.0221526,0.390266,0.0948347,0.825433,0.321874,0.405821,0.720786,0.732264,0.927751,0.526788,0.228998,0.499574,0.673123,0.47792,0.911771,0.678488,0.392805,0.573947,0.75753,0.531731,0.900004,0.471205,0.0419377,0.337373,0.414225,0.958173,0.32776,0.604686,0.780894,0.207095,0.877676,0.818809,0.428228,0.825641,0.39736,0.780376,0.863434,0.556427,0.728104,0.542634,0.00764227,0.181269,0.553082,0.793738,0.815088,0.828731,0.368799,0.638447,0.993327,0.394199,0.84602,0.919836,0.776449,0.284235,0.62868,0.988692,0.173462,0.154665,0.477342,0.599116,0.430222,0.748202,0.931582,0.631691,0.358726,0.144041,0.133613,0.269131,0.563941,0.984146,0.992066,0.715555,0.997788,0.523307,0.686541,0.072999,0.862243,0.532078,0.963872,0.959338,0.962763,0.226465,0.919157,0.981494,0.668846,0.316242,0.416048,0.994394,0.730642,0.973856,0.107212,0.492273,0.793469,0.786474,0.0985388,0.238033,0.251251,0.486819,0.311841,0.0646369,0.587577,0.294315,0.209081,0.975015,0.52652,0.275097,0.882038,0.581844,0.584798,0.424429,0.606503,0.42367,0.89908,0.0720921,0.105512,0.11297,0.423018,0.942769,0.0530977,0.103665,0.513401,0.514308,0.437053,0.80758,0.674698,0.805688,0.611407,0.686125,0.378455,0.297171,0.374147,0.152142,0.385054,0.87706,0.869927,0.719929,0.979365,0.858541,0.891498,0.116026,0.269238,0.625951,0.609246,0.689542,0.60096,0.055372,0.255729,0.740975,0.584552,0.715221,0.0934974,0.444112,0.836517,0.092878,0.211234,0.288769,0.508423,0.773088,0.29447,0.835544,0.366523,0.0218624,0.151937,0.0161957,0.188585,0.98332,0.07804,0.997843,0.0938308,0.378283,0.27083,0.321464,0.00319356,0.490986,0.47209,0.192409,0.65901,0.834482,0.99745,0.891363,0.420082,0.950122,0.905992,0.0169004,0.934247,0.121581,0.516256,0.316432,0.508355,0.351296,0.00198287,0.443069,0.393179,0.219315,0.448185,0.0361522,0.65638,0.986266,0.427363,0.163198,0.891163,0.535851,0.779967,0.238644,0.76829,0.26602,0.375482,0.816286,0.367421,0.509708,0.697852,0.478565,0.0229517,0.632549,0.706195,0.415504,0.551447,0.0531819,0.622622,0.480272,0.183552,0.237069,0.93746,0.522532,0.745683,0.147324,0.892066,0.303677,0.512724,0.394115,0.857023,0.794401,0.470032,0.0999665,0.0603521,0.206817,0.377285,0.0458569,0.435856,0.108888,0.52678,0.268603,0.245316,0.923266,0.758471,0.294727,0.752385,0.541853,0.744037,0.366716,0.878083,0.477323,0.517674,0.340759,0.945223,0.029487,0.898472,0.507842,0.18603,0.382219,0.582705,0.459856,0.853592,0.472918,0.192139,0.0473256,0.924415,0.793288,0.0442281,0.683879,0.287115,0.410924,0.507194,0.168316,0.260818,0.625994,0.170245,0.805769,0.0656356,0.970542,0.20625,0.764545,0.607655,0.405556,0.649125,0.0666465,0.370267,0.0220859,0.868039,0.252576,0.249844,0.868864,0.212069,0.309443,0.39435,0.642334,0.298112,0.569059,0.222188,0.0860752,0.681798,0.056302,0.47785,0.959346,0.416313,0.0350883,0.27012,0.974194,0.852218,0.952919,0.663576,0.0292637,0.780334,0.413911,0.600013,0.340863,0.42306,0.146071,0.485239,0.273529,0.19906,0.56208,0.96551,0.455215,0.727763,0.291957,0.22865,0.25574,0.00724405,0.851383,0.99964,0.363061,0.623105,0.494463,0.520414,0.287593,0.831089,0.608309,0.655738,0.792753,0.684676,0.665162,0.474309,0.529472,0.440971,0.619935,0.145353,0.516248,0.993814,0.538963,0.532545,0.691078,0.623508,0.667042,0.942955,0.398693,0.469774,0.448423,0.587687,0.765359,0.367474,0.750142,0.424491,0.0562727,0.805884,0.902677,0.450951,0.310767,0.0929113,0.996821,0.893299,0.871346,0.899349,0.305656,0.103755,0.858424,0.402814,0.0823064,0.865453,0.665207,0.487968,0.145285,0.898819,0.932371,0.499036,0.153219,0.329933,0.67544,0.697692,0.0934428,0.270866,0.441004,0.286612,0.76289,0.501162,0.217577,0.951305,0.951058,0.617646,0.480697,0.0467817,0.585026,0.658589,0.0429785,0.855646,0.993206,0.259462,0.334396,0.357745,0.0402598,0.951677,0.537453,0.312104,0.499367,0.226367,0.322384,0.323004,0.0429336,0.470338,0.0489023,0.644129,0.643721,0.0228524,0.557193,0.978949,0.898824,0.051389,0.00326276,0.312422,0.376389,0.790106,0.703067,0.932676,0.452331,0.632048,0.400925,0.515368,0.975952,0.36249,0.428908,0.509482,0.987756,0.909644,0.626011,0.918096,0.803305,0.615824,0.457385,0.802583,0.299922,0.449537,0.319713,0.969741,0.920202,0.0941983,0.712732,0.761283,0.710712,0.689224,0.158114,0.318247,0.773394,0.730681,0.597921,0.772467,0.627827,0.197776,0.448766,0.311454,0.292203,0.355782,0.964766,0.720041,0.55562,0.541825,0.13206,0.888677,0.631674,0.729614,0.917245,0.868973,0.0275944,0.642872,0.0915789,0.110392,0.256362,0.687802,0.70979,0.280764,0.847298,0.732887,0.572083,0.824103,0.435879,0.304031,0.148368,0.501105,0.0159891,0.880612,0.837721,0.793872,0.555257,0.869358,0.646639,0.948294,0.777827,0.8187,0.726044,0.696194,0.600942,0.112287,0.139129,0.415423,0.616057,0.124799,0.820653,0.611195,0.511724,0.307876,0.602274,0.0450866,0.960216,0.379236,0.257823,0.65087,0.521412,0.993552,0.540081,0.52717,0.848134,0.140386,0.672479,0.880286,0.580407,0.536532,0.794325,0.546672,0.257481,0.0738795,0.923091,0.438193,0.788506,0.593009,0.572364,0.638582,0.421427,0.497099,0.729277,0.181879,0.527498,0.814662,0.526557,0.556792,0.815121,0.329591,0.0931785,0.652238,0.756133,0.285259,0.81967,0.628339,0.744913,0.958823,0.409123,0.625577,0.856955,0.119555,0.0701298,0.0750499,0.598242,0.572901,0.525867,0.582105,0.455323,0.721734,0.856807,0.638611,0.985904,0.908341,0.702553,0.0674199,0.0969898,0.93008,0.906234,0.265213,0.650343,0.0541186,0.622626,0.816837,0.906187,0.631146,0.0600523,0.290535,0.486467,0.100673,0.991683,0.762799,0.928759,0.624365,0.631195,0.109715,0.840575,0.11829,0.911388,0.684555,0.938893,0.793885,0.986692,0.54253,0.0231329,0.62947,0.680646,0.312047,0.457061,0.420518,0.306783,0.0565907,0.966079,0.642783,0.783468,0.841881,0.327704,0.878969,0.668496,0.815823,0.579438,0.0332506,0.975765,0.189303,0.355485,0.00409561,0.66029,0.956682,0.660226,0.299575,0.798775,0.118849,0.947658,0.24668,0.131056,0.195337,0.593669,0.245845,0.0187284,0.939706,0.329221,0.151004,0.495827,0.423114,|0.353979,0.203866,0.471283,0.929975,0.409228,0.10679,0.374605,0.627129,0.861936,0.855103,0.150805,0.191694,0.242304,0.729244,0.506605,0.370797,0.611898,0.870943,0.564731,0.365675,0.347697,0.71898,0.290795,0.571145,0.68689,0.907685,0.41209,0.288961,0.583,0.527154,0.212194,0.91616,0.847243,0.241264,0.992747,0.122648,0.637596,0.0918776,0.424665,0.101867,0.630732,0.15448,0.461043,0.268004,0.338691,0.568657,0.602115,0.0536252,0.614123,0.246649,0.447842,0.0397657,0.229084,0.279732,0.00923032,0.432893,0.769251,0.6822,0.181051,0.0171564,0.753096,0.106517,0.177066,0.957372,0.371413,0.437237,0.22878,0.322717,0.89445,0.586236,0.724083,0.247533,0.577557,0.253908,0.655636,0.342548,0.0516025,0.382971,0.941477,0.439481,0.687387,0.320645,0.333474,0.407856,0.253231,0.609258,0.020191,0.835086,0.698664,0.783493,0.359903,0.68833,0.379885,0.479695,0.295009,0.934258,0.895952,0.640547,0.103428,0.578779,0.737454,0.519129,0.625711,0.351994,0.171183,0.156551,0.680244,0.79435,0.285543,0.697402,0.915859,0.335792,0.362084,0.662887,0.874728,0.431619,0.827864,0.126073,0.242027,0.407378,0.51009,0.647369,0.956187,0.745311,0.0367917,0.0868375,0.904718,0.515804,0.14249,0.902281,0.911387,0.922693,0.413232,0.840319,0.36606,0.421967,0.724116,0.591688,0.362541,0.490547,0.272115,0.633116,0.512187,0.350039,0.282895,0.757205,0.294856,0.331331,0.57974,0.513226,0.361797,0.332167,0.981291,0.540421,0.440063,0.45977,0.639231,0.871712,0.184658,0.679689,0.0878501,0.777979,0.531127,0.924751,0.0735661,0.264584,0.896497,0.518646,0.54491,0.0266066,0.700687,0.218004,0.638882,0.310504,0.770303,0.945451,0.303513,0.0413809,0.584069,0.0280556,0.160722,0.575536,0.175089,0.813396,0.77687,0.865687,0.937376,0.820004,0.349433,0.299026,0.198831,0.390653,0.841264,0.562565,0.0238262,0.342011,0.612156,0.484587,0.198355,0.252564,0.713663,0.727343,0.554246,0.883231,0.984458,0.585461,0.0888238,0.953211,0.370338,0.623028,0.63953,0.699616,0.918166,0.412955,0.689379,0.919264,0.75174,0.00521058,0.99124,0.575817,0.182166,0.0367306,0.907352,0.248034,0.797637,0.495257,0.203203,0.157395,0.188817,0.0605911,0.588186,0.0302075,0.256804,0.274863,0.603187,0.603644,0.0795382,0.433718,0.263474,0.203547,0.420535,0.333265,0.689638,0.49804,0.73995,0.807089,0.61848,0.945185,0.0314681,0.199136,0.990273,0.407702,0.544779,0.319901,0.128047,0.620639,0.632692,0.0756733,0.504496,0.439059,0.0134545,0.345028,0.61363,0.716527,0.377016,0.73019,0.685947,0.310029,0.433156,0.284463,0.713368,0.988917,0.495248,0.237917,0.527507,0.85393,0.135852,0.251217,0.74847,0.6946,0.966952,0.780973,0.74204,0.78173,0.162483,0.633246,0.307231,0.883192,0.340875,0.610941,0.30145,0.880092,0.929823,0.533486,0.866048,0.690255,0.119171,0.881796,0.271358,0.693601,0.508223,0.687057,0.949255,0.413937,0.556701,0.896273,0.0559379,0.0376595,0.986282,0.175969,0.7835,0.784374,0.708589,0.688688,0.633213,0.573345,0.767546,0.880898,0.254262,0.6425,0.791937,0.882986,0.413004,0.133201,0.753742,0.743301,0.348597,0.291653,0.401903,0.565631,0.360683,0.763876,0.879786,0.397342,0.0066697,0.752171,0.21676,0.947124,0.808001,0.127235,0.735155,0.692189,0.582539,0.451537,0.777279,0.414974,0.974106,0.530565,0.598425,0.399428,0.217591,0.0636005,0.0606474,0.824002,0.708889,0.353344,0.142915,0.137407,0.486649,0.902513,0.743422,0.459226,0.565662,0.245208,0.652295,0.706601,0.644193,0.0669938,0.647305,0.193961,0.675118,0.455176,0.171007,0.998616,0.372489,0.482926,0.286471,0.933125,0.422028,0.923638,0.124807,0.817043,0.63386,0.210473,0.86327,0.531197,0.140064,0.446539,0.11117,0.895626,0.906775,0.95397,0.754154,0.88246,0.0651429,0.07157,0.963258,0.388216,0.613375,0.868904,0.00557315,0.439165,0.137453,0.92843,0.740322,0.649332,0.30363,0.771067,0.880687,0.642177,0.0528404,0.608263,0.779502,0.49198,0.629937,0.891775,0.316042,0.391661,0.525606,0.823268,0.885116,0.314368,0.52803,0.559891,0.391586,0.642103,0.971078,0.289808,0.225978,0.372739,0.105676,0.120087,0.816734,0.264542,0.826452,0.578371,0.694761,0.721817,0.15727,0.105505,0.431874,0.0839032,0.941178,0.115088,0.798795,0.335295,0.00473726,0.161757,0.505415,0.611725,0.529359,0.31794,0.722735,0.498669,0.174997,0.279065,0.743011,0.0588913,0.188091,0.356119,0.614085,0.373064,0.156771,0.456139,0.554103,0.925593,0.266168,0.658231,0.774175,0.908854,0.605613,0.501006,0.412957,0.301454,0.721282,0.479615,0.0705457,0.228411,0.826341,0.743223,0.135406,0.455618,0.0421821,0.795074,0.976034,0.774581,0.774587,0.890404,0.632852,0.539491,0.42907,0.875538,0.408148,0.34959,0.736707,0.664703,0.434117,0.522477,0.624298,0.640011,0.764068,0.580634,0.227834,0.769052,0.956696,0.535127,0.241426,0.82359,0.965572,0.124812,0.968319,0.893956,0.595697,0.624753,0.247099,0.0542382,0.0162898,0.645467,0.679542,0.00521773,0.368057,0.850824,0.0123954,0.103096,0.941194,0.798436,0.624645,0.0359653,0.336976,0.988828,0.936524,0.0976807,0.142164,0.884307,0.890517,0.474511,0.629058,0.421926,0.30737,0.197978,0.101242,0.971942,0.29883,0.678617,0.0961831,0.579134,0.694529,0.528275,0.144655,0.875642,0.194252,0.168085,0.667179,0.798933,0.876664,0.192065,0.426653,0.0961969,0.727469,0.926506,0.58031,0.545048,0.435311,0.894737,0.841754,0.552206,0.00657171,0.344908,0.685711,0.545072,0.936293,0.319829,0.717496,0.792887,0.477231,0.0128649,0.989232,0.782739,0.261492,0.500114,0.361859,0.774316,0.848272,0.712132,0.358573,0.0377292,0.538134,0.250726,0.184967,0.372217,0.672829,0.686159,0.323686,0.180136,0.63802,0.326357,0.533122,0.48073,0.858141,0.0455206,0.341646,0.35377,0.927587,0.0862651,0.638981,0.507348,0.135899,0.76574,0.342076,0.851552,0.641313,0.0533173,0.382164,0.670399,0.233025,0.939769,0.828722,0.023501,0.41063,0.0737531,0.202606,0.667207,0.418523,0.820148,0.508179,0.107903,0.803726,0.285104,0.988954,0.377762,0.157291,0.850829,0.609858,0.877206,0.455991,0.709887,0.572856,0.798229,0.16724,0.624874,0.843897,0.423623,0.289012,0.407966,0.865219,0.699496,0.675103,0.0111075,0.487928,0.198512,0.764056,0.0521798,0.367493,0.473449,0.72946,0.371478,0.482339,0.99437,0.654862,0.573393,0.736576,0.876642,0.860812,0.414761,0.394315,0.158793,0.00997466,0.0462844,0.96569,0.42284,0.398966,0.54782,0.133303,0.721361,0.238165,0.632244,0.038986,0.348865,0.235397,0.172965,0.800753,0.0584354,0.842702,0.48153,0.414269,0.32887,0.0458257,0.900512,0.857146,0.979947,0.419498,0.344316,0.279534,0.783974,0.0407724,0.620465,0.948114,0.196334,0.293852,0.419735,0.00167269,0.0826367,0.658416,0.142019,0.854174,0.759163,0.588221,0.681867,0.00562555,0.247583,0.407352,0.971482,0.630052,0.92855,0.485508,0.0769481,0.437136,0.768495,0.677528,0.192443,0.921619,0.183654,0.390901,0.366602,0.769437,0.585965,0.304729,0.283224,0.479127,0.90169,0.64553,0.0809377,0.988114,0.0822234,0.41542,0.634982,0.439015,0.806116,0.105072,0.640955,0.160071,0.685659,0.0841055,0.682371,0.930696,0.0384745,0.13227,0.83754,0.509727,0.699103,0.146792,0.568136,0.850756,0.902804,0.702274,0.320399,0.255776,0.498511,0.0617597,0.833426,0.36698,0.745828,0.925387,0.644249,0.0822603,0.985561,0.495775,0.922655,0.521851,0.172367,0.866307,0.15123,0.119949,0.866965,0.176546,0.803849,0.903849,0.0204151,0.952198,0.379769,0.111609,0.157852,0.499717,0.879014,0.0799859,0.841946,0.0978166,0.9355,0.673134,0.842705,0.821527,0.491189,0.741376,0.570189,0.745424,0.521082,0.601752,0.431289,0.099704,0.770437,0.100626,0.0509331,0.482848,0.377645,0.682683,0.419137,0.0500696,0.49596,0.461383,0.246485,0.448729,0.369122,0.620639,0.845432,0.114535,0.0625944,0.81509,0.394407,0.30275,0.40778,0.0712517,0.918423,0.933565,0.421244,0.288442,0.111954,0.709888,0.056456,0.529814,0.480423,0.213491,0.594109,0.511528,0.926624,0.685645,0.100977,0.687881,0.140334,0.483933,0.289974,0.395482,0.160283,0.243317,0.528142,0.452951,0.159782,0.183793,0.41974,0.81913,0.626956,0.62905,0.0438518,0.653421,0.465652,0.998448,0.858248,0.750846,0.396656,0.955691,0.814361,0.338601,0.917972,0.853039,0.200066,0.56948,0.0730886,0.355533,0.00386059,0.94356,0.148829,0.875188,0.893409,0.722098,0.328839,0.653264,0.834844,0.0415308,0.334437,0.670829,0.732564,0.974195,0.282531,0.843431,0.94051,0.360442,0.519848,0.685349,0.136644,0.945437,0.654604,0.511999,0.0629979,0.598431,0.394777,0.906223,0.812091,0.290151,0.447754,0.958111,0.180291,0.584987,0.525037,0.166987,0.753012,0.18371,0.0625142,0.717074,0.0279658,0.299351,0.314016,0.807735,0.573341,0.0639306,0.7294,0.670483,0.539158,0.318213,0.209733,0.907574,0.745122,0.612217,0.0564641,0.343518,0.930916,0.0903678,0.255482,0.36037,0.952094,0.423353,0.663695,0.827065,0.60846,0.699754,0.0714971,0.513742,0.821938,0.0819203,0.65271,0.458149,0.833746,0.580327,0.567331,0.760653,0.373102,0.0953404,0.720414,0.391256,0.340994,0.558207,0.411528,0.550114,0.479285,0.294435,0.459004,0.0831142,0.916801,0.425865,0.485234,0.204388,0.478197,0.601255,0.53318,0.0592663,0.967037,0.382556,0.790262,0.123752,0.0476482,0.111986,0.369076,0.816765,0.263763,0.664986,0.154324,0.823529,0.00262636,0.309288,0.684416,0.19852,0.946514,0.604131,0.41606,0.916475,0.853987,0.984944,0.838144,0.246386,0.718784,0.030696,0.26103,0.246434,0.00395751,0.745294,0.801249,0.543522,0.513996,0.196414,0.500954,0.489589,0.243815,|0.518742,0.573281,0.555543,0.607853,0.232831,0.0850768,0.382685,0.565359,0.718371,0.159069,0.0604708,0.69787,0.0323994,0.141079,0.667259,0.136543,0.440878,0.299594,0.805494,0.278032,0.144624,0.806456,0.204103,0.873038,0.0706043,0.304175,0.589482,0.973271,0.491011,0.390311,0.94164,0.453737,0.0735099,0.176135,0.787552,0.304216,0.0280133,0.978802,0.719821,0.871881,0.259875,0.525808,0.206057,0.682624,0.547527,0.343477,0.733386,0.452159,0.450938,0.0284563,0.803141,0.716645,0.376599,0.149942,0.601157,0.992671,0.168385,0.494467,0.164716,0.187878,0.19437,0.971366,0.242599,0.0558512,0.545469,0.763305,0.661409,0.799164,0.343323,0.910755,0.437382,0.482689,0.800465,0.226475,0.561901,0.0322419,0.89657,0.952084,0.157028,0.473294,0.29045,0.0374068,0.600595,0.500434,0.591066,0.582722,0.516779,0.671918,0.563752,0.998936,0.0231449,0.743326,0.517138,0.612066,0.850173,0.254752,0.375506,0.76089,0.872081,0.0351966,0.241541,0.952119,0.917615,0.947628,0.608647,0.190516,0.906783,0.867982,0.826802,0.395063,0.121401,0.420197,0.1537,0.284703,0.689756,0.430888,0.0671032,0.307305,0.459316,0.504122,0.940419,0.70878,0.616871,0.150332,0.187557,0.896288,0.525677,0.365478,0.654574,0.753611,0.433245,0.36941,0.336075,0.326994,0.330463,0.650098,0.168919,0.530275,0.919472,0.925107,0.656496,0.0854049,0.552986,0.694509,0.318391,0.10983,0.865994,0.0656423,0.420029,0.956338,0.8273,0.0425351,0.480992,0.130378,0.427359,0.551303,0.109638,0.223531,0.215317,0.400892,0.604675,0.451204,0.171663,0.0110444,0.368265,0.0695223,0.994073,0.538695,0.932935,0.552384,0.792041,0.988532,0.952455,0.624267,0.734467,0.546115,0.796524,0.507228,0.309681,0.940589,0.684025,0.422807,0.998655,0.508054,0.570703,0.58559,0.874688,0.406034,0.110363,0.368927,0.721817,0.786874,0.923337,0.403869,0.284272,0.278279,0.527982,0.394938,0.597707,0.175406,0.52598,0.852446,0.271981,0.181417,0.943117,0.0741999,0.289572,0.138847,0.014025,0.164767,0.263199,0.682759,0.903717,0.400743,0.624366,0.454626,0.702402,0.280354,0.100276,0.341736,0.743312,0.580218,0.900278,0.597584,0.21296,0.74535,0.238254,0.25842,0.951984,0.704877,0.649349,0.996944,0.582421,0.594864,0.090128,0.998524,0.219485,0.436786,0.554484,0.662803,0.174753,0.789941,0.986945,0.0535845,0.0760449,0.806909,0.0327666,0.628004,0.991531,0.762674,0.0372787,0.786166,0.42076,0.723189,0.852433,0.49103,0.658866,0.898842,0.593226,0.405775,0.728119,0.427637,0.0834329,0.793772,0.994102,0.452289,0.907225,0.909539,0.745386,0.673066,0.366879,0.530223,0.372979,0.106281,0.0651252,0.808472,0.1439,0.520983,0.505739,0.102362,0.518216,0.0123979,0.587249,0.416739,0.886023,0.3575,0.192782,0.868003,0.494638,0.523219,0.844511,0.293471,0.276918,0.211309,0.734453,0.72225,0.552881,0.0513163,0.213673,0.239368,0.22787,0.911938,0.300009,0.625652,0.470779,0.832669,0.104411,0.79877,0.452162,0.112382,0.325787,0.310854,0.746284,0.124172,0.761049,0.631523,0.145603,0.194671,0.644509,0.892864,0.39343,0.520246,0.0388799,0.241618,0.447241,0.57967,0.381111,0.985098,0.327777,0.301297,0.610933,0.488095,0.488688,0.835899,0.361694,0.35083,0.0149147,0.720925,0.716714,0.0626799,0.443198,0.206969,0.659744,0.393221,0.865445,0.581106,0.701362,0.0325297,0.45522,0.524267,0.596801,0.275988,0.984976,0.628854,0.0752412,0.118462,0.75563,0.734604,0.818269,0.823905,0.0537738,0.0106621,0.714133,0.466633,0.359742,0.943492,0.636996,0.580449,0.397256,0.201164,0.0530322,0.0672694,0.990025,0.403597,0.801197,0.798924,0.415124,0.267671,0.682244,0.941471,0.291372,0.440185,0.932402,0.80288,0.154474,0.0602632,0.790986,0.195674,0.715102,0.467499,0.178776,0.288584,0.810558,0.490369,0.308472,0.272605,0.173648,0.991832,0.355173,0.950507,0.749835,0.211596,0.125775,0.930467,0.495758,0.615547,0.393721,0.139788,0.995984,0.0169414,0.476282,0.333837,0.937368,0.915466,0.0773985,0.852072,0.00633472,0.809983,0.314178,0.420639,0.837288,0.934883,0.70588,0.314889,0.894388,0.362069,0.150694,0.730979,0.217158,0.577164,0.0380955,0.733207,0.379158,0.369148,0.425469,0.446837,0.133049,0.955512,0.389494,0.168326,0.238224,0.986139,0.63434,0.00540829,0.13983,0.477458,0.889537,0.180435,0.977726,0.387901,0.058179,0.472157,0.660456,0.477914,0.394632,0.323546,0.68283,0.808319,0.80918,0.954015,0.658225,0.672481,0.68585,0.371669,0.804714,0.749515,0.171665,0.366726,0.296021,0.834637,0.916615,0.186487,0.973912,0.686817,0.545954,0.0111463,0.879194,0.874894,0.72201,0.812193,0.263473,0.638577,0.803362,0.43863,0.417452,0.501933,0.314369,0.924258,0.592458,0.763824,0.944597,0.582418,0.0492824,0.245281,0.525894,0.68334,0.743044,0.295066,0.668486,0.453617,0.325499,0.550305,0.876456,0.644446,0.610415,0.659446,0.00650895,0.875285,0.83262,0.824494,0.940669,0.294285,0.396712,0.172375,0.493139,0.517062,0.469077,0.358536,0.945837,0.318448,0.29115,0.32708,0.634545,0.899949,0.604079,0.863848,0.435776,0.280228,0.775179,0.107327,0.549142,0.961196,0.776419,0.661592,0.0568064,0.093267,0.604484,0.274093,0.951344,0.501242,0.122603,0.0855808,0.0742043,0.235429,0.271233,0.273064,0.918221,0.820694,0.87946,0.760654,0.89617,0.652888,0.0697106,0.381297,0.0763483,0.385383,0.343049,0.80965,0.00682211,0.845331,0.338523,0.475169,0.818806,0.678131,0.309063,0.784908,0.423177,0.814155,0.837665,0.616999,0.137588,0.833973,0.418192,0.952233,0.470299,0.475109,0.629337,0.570319,0.298544,0.396293,0.637224,0.503696,0.147314,0.525756,0.758597,0.903323,0.700753,0.662838,0.513965,0.834671,0.179388,0.39451,0.805019,0.140902,0.376198,0.108277,0.301564,0.170709,0.33753,0.022402,0.304078,0.294747,0.446798,0.263203,0.286209,0.872712,0.822991,0.00785768,0.969303,0.276187,0.0341652,0.944552,0.574452,0.562371,0.180541,0.532404,0.037787,0.62387,0.495158,0.744131,0.647818,0.927455,0.168838,0.746484,0.94216,0.200674,0.463199,0.823327,0.554745,0.227249,0.317893,0.703984,0.552893,0.572111,0.826326,0.115725,0.439565,0.599934,0.374438,0.707106,0.22388,0.817303,0.0227588,0.445957,0.221149,0.76008,0.737431,0.264779,0.512868,0.477309,0.749673,0.373483,0.571088,0.684325,0.768948,0.236668,0.629575,0.0076282,0.93143,0.31532,0.631615,0.0337343,0.563563,0.144764,0.649171,0.900335,0.831396,0.592583,0.138145,0.678436,0.840229,0.808275,0.954717,0.995191,0.0953379,0.287953,0.477456,0.316063,0.0768012,0.254056,0.173972,0.0680774,0.302702,0.772669,0.276053,0.23902,0.592026,0.279653,0.164331,0.098691,0.420796,0.452939,0.630397,0.479358,0.134206,0.783493,0.290862,0.930109,0.382576,0.884688,0.178948,0.784177,0.771487,0.432448,0.492422,0.200206,0.586345,0.946364,0.605251,0.979297,0.963323,0.854957,0.385001,0.112801,0.385487,0.8696,0.643479,0.636459,0.680554,0.607961,0.300327,0.155944,0.473742,0.0255608,0.768961,0.28075,0.287888,0.981275,0.0939062,0.276558,0.342332,0.284227,0.50853,0.729844,0.826249,0.134411,0.0516654,0.42402,0.123074,0.384817,0.367347,0.455826,0.244955,0.228656,0.878898,0.30274,0.527931,0.984211,0.390735,0.205436,0.922506,0.726647,0.873509,0.504901,0.700809,0.966986,0.510956,0.749786,0.342221,0.0315814,0.0494294,0.145106,0.403803,0.743714,0.474837,0.592279,0.68774,0.0019381,0.0985278,0.129329,0.891631,0.317364,0.164564,0.266905,0.508976,0.064384,0.349595,0.593376,0.912608,0.967014,0.518711,0.730995,0.00309682,0.461357,0.475604,0.00406563,0.116797,0.867884,0.176596,0.160809,0.304147,0.323879,0.100084,0.825583,0.934538,0.855746,0.28372,0.658204,0.114767,0.0610994,0.0408872,0.894176,0.287738,0.0534422,0.11457,0.568891,0.945364,0.00644284,0.136217,0.358212,0.787423,0.438438,0.105875,0.0467184,0.36175,0.529354,0.205047,0.859169,0.950174,0.702171,0.212583,0.579673,0.251751,0.36481,0.240017,0.518884,0.18276,0.148449,0.630735,0.173911,0.123986,0.382764,0.589451,0.121803,0.940832,0.385727,0.0944926,0.779724,0.0996751,0.0441034,0.821096,0.711777,0.450455,0.99324,0.187048,0.338101,0.415325,0.425202,0.524473,0.375545,0.59548,0.19396,0.860504,0.704424,0.41007,0.96452,0.256372,0.984806,0.647337,0.895226,0.848493,0.00436866,0.906969,0.747477,0.930184,0.699363,0.724444,0.502118,0.163735,0.371667,0.939692,0.25759,0.449301,0.788372,0.664413,0.936795,0.475415,0.879659,0.203633,0.970225,0.324841,0.472542,0.298891,0.750729,0.11545,0.99665,0.035731,0.713287,0.414825,0.594561,0.704268,0.743148,0.311812,0.57609,0.627529,0.299233,0.923357,0.885946,0.918194,0.350069,0.712117,0.229436,0.643707,0.314041,0.0678322,0.522865,0.279536,0.547285,0.483553,0.0641868,0.777793,0.403487,0.183001,0.283099,0.5662,0.366208,0.234479,0.466501,0.304439,0.728155,0.0409948,0.943319,0.560254,0.73265,0.664484,0.0259206,0.0516201,0.524847,0.891166,0.756017,0.132404,0.641282,0.78003,0.930619,0.338368,0.161083,0.376099,0.888131,0.0190367,0.626225,0.192188,0.434093,0.436231,0.282231,0.3678,0.363964,0.523904,0.106834,0.822059,0.242484,0.957079,0.0140287,0.598488,0.615046,0.451083,0.00733787,0.891839,0.201809,0.0573702,0.92833,0.151967,0.533711,0.388611,0.226421,0.311969,0.718058,0.0976782,0.438762,0.423551,0.540129,0.795004,0.527207,0.556796,0.889646,0.494618,0.701442,0.597182,0.0572613,0.0453532,0.763921,0.856324,0.648177,0.838446,0.120016,0.669734,0.868716,0.219136,0.469415,0.97371,0.790071,0.9532,0.230646,0.0865206,0.771716,0.272459,0.76713,0.94313,0.638186,0.124833,0.667441,|0.616242,0.519306,0.0833629,0.0384048,0.20964,0.87771,0.843531,0.776137,0.435789,0.343775,0.76465,0.153605,0.110623,0.686311,0.986895,0.89825,0.471968,0.400274,0.724656,0.423829,0.0110446,0.0594366,0.0618003,0.304629,0.213267,0.336146,0.91986,0.460307,0.121557,0.0516961,0.81906,0.382527,0.0232577,0.503287,0.395123,0.894698,0.103336,0.501768,0.845889,0.714087,0.885142,0.891072,0.699837,0.444775,0.386521,0.851105,0.622637,0.965786,0.285203,0.79473,0.406615,0.693267,0.247723,0.0322039,0.14838,0.811706,0.0102909,0.509052,0.39496,0.238708,0.600663,0.319325,0.52161,0.576563,0.82129,0.164242,0.524756,0.590233,0.335289,0.970851,0.557514,0.869844,0.00806487,0.257809,0.85514,0.453039,0.802625,0.327595,0.140941,0.061108,0.499021,0.829715,0.202277,0.466128,0.183288,0.496457,0.264564,0.980771,0.173132,0.0665349,0.804302,0.937707,0.638811,0.930051,0.338879,0.356196,0.21842,0.453077,0.203506,0.142352,0.507291,0.550505,0.420063,0.280434,0.993551,0.372879,0.0950808,0.0317051,0.150252,0.316654,0.903169,0.410376,0.705382,0.0535975,0.237908,0.877405,0.794347,0.903849,0.382732,0.732352,0.729473,0.622172,0.18036,0.189444,0.500143,0.437092,0.0718709,0.479876,0.945747,0.0079248,0.576546,0.677699,0.206127,0.697003,0.00617486,0.00107354,0.280126,0.139834,0.159226,0.213072,0.403221,0.154653,0.421856,0.980312,0.648726,0.139085,0.996047,0.586744,0.449659,0.766253,0.786001,0.523292,0.819823,0.11103,0.527518,0.795876,0.259967,0.802374,0.64435,0.378935,0.715643,0.616171,0.930953,0.222851,0.900575,0.141409,0.136487,0.496572,0.674909,0.200806,0.282408,0.667462,0.0731884,0.49861,0.784549,0.821929,0.839547,0.911123,0.653376,0.752357,0.427436,0.0194429,0.154453,0.951791,0.637837,0.860452,0.0464208,0.497065,0.444882,0.344898,0.370792,0.670091,0.0106128,0.414762,0.208315,0.711259,0.470257,0.848806,0.707132,0.416159,0.858421,0.1758,0.0639957,0.249299,0.437092,0.966303,0.728935,0.0221332,0.00901103,0.752838,0.66088,0.950616,0.848257,0.140821,0.855625,0.69713,0.371431,0.422788,0.451209,0.812653,0.0949101,0.0953096,0.510154,0.400391,0.727746,0.173305,0.621884,0.883327,0.305505,0.393681,0.599161,0.476366,0.215755,0.412622,0.128521,0.666085,0.119905,0.0603622,0.883365,0.769802,0.66307,0.330948,0.58112,0.783625,0.203568,0.521326,0.834997,0.588377,0.646967,0.412511,0.514091,0.719981,0.408552,0.328386,0.418739,0.780644,0.27445,0.964646,0.605217,0.762141,0.278487,0.959057,0.861555,0.0321857,0.185916,0.453306,0.645923,0.993869,0.729103,0.964822,0.131581,0.898883,0.123553,0.229747,0.25862,0.397058,0.712279,0.066615,0.390719,0.392596,0.227473,0.907431,0.512828,0.593636,0.876472,0.749406,0.604003,0.530512,0.688228,0.998796,0.658078,0.370127,0.9803,0.734053,0.974179,0.585026,0.261772,0.214259,0.628435,0.545632,0.537903,0.969487,0.803385,0.976004,0.9184,0.00285983,0.967087,0.624329,0.604847,0.54247,0.00650418,0.791722,0.914818,0.939713,0.890505,0.86644,0.639218,0.148979,0.545445,0.418989,0.384665,0.757796,0.369993,0.814909,0.657897,0.0010882,0.836644,0.156472,0.0121652,0.677892,0.627825,0.970728,0.127755,0.629384,0.073024,0.0414617,0.674861,0.664596,0.365424,0.370375,0.580202,0.492142,0.430057,0.0898734,0.295303,0.719188,0.281973,0.840496,0.164881,0.647531,0.997058,0.161574,0.184188,0.803306,0.114199,0.0294109,0.319516,0.823164,0.872906,0.414957,0.290725,0.28956,0.746239,0.533278,0.837853,0.852388,0.0742533,0.759064,0.367668,0.114682,0.0270177,0.875137,0.258969,0.869498,0.718748,0.788836,0.510826,0.0492811,0.111635,0.116662,0.908505,0.397882,0.661434,0.231806,0.127711,0.569846,0.663147,0.718356,0.992977,0.297016,0.969037,0.995184,0.29331,0.388854,0.0115362,0.0451753,0.356211,0.774428,0.242572,0.59466,0.111609,0.980173,0.952075,0.530056,0.943872,0.0905254,0.940162,0.143246,0.811396,0.679373,0.600507,0.490316,0.278155,0.416167,0.837802,0.0421407,0.648491,0.689434,0.1492,0.321661,0.689297,0.407295,0.424019,0.309791,0.777336,0.319797,0.146891,0.576121,0.254909,0.361107,0.313661,0.810729,0.740924,0.00823504,0.686441,0.866494,0.911394,0.763673,0.497086,0.939362,0.604689,0.944668,0.614908,0.876701,0.33976,0.350985,0.34044,0.600554,0.318356,0.487228,0.98392,0.676033,0.575539,0.0426599,0.684509,0.663686,0.376024,0.828697,0.295662,0.0336754,0.413384,0.326095,0.692656,0.103457,0.237108,0.0740266,0.111493,0.226389,0.960836,0.440365,0.731789,0.609377,0.740049,0.327713,0.995486,0.0354655,0.555367,0.669976,0.68192,0.972085,0.483586,0.826043,0.968866,0.589077,0.974342,0.37857,0.932134,0.969627,0.959045,0.216006,0.142493,0.39653,0.938423,0.499873,0.727813,0.0163897,0.169986,0.0766869,0.98486,0.91012,0.425507,0.641013,0.222032,0.232748,0.691022,0.0634055,0.127559,0.49081,0.679389,0.11188,0.459036,0.794558,0.92149,0.381165,0.293722,0.714368,0.129486,0.909748,0.769691,0.416387,0.559976,0.52275,0.105108,0.991297,0.555536,0.670285,0.703086,0.810667,0.19766,0.021116,0.118219,0.764163,0.93425,0.743872,0.314545,0.120444,0.0244818,0.100536,0.673683,0.137487,0.792238,0.677684,0.160656,0.400283,0.218547,0.310293,0.830489,0.172303,0.59574,0.735948,0.348675,0.383785,0.368862,0.940729,0.173739,0.791026,0.760824,0.775275,0.526382,0.436025,0.485835,0.203249,0.116168,0.577574,0.503232,0.35757,0.386668,0.54174,0.417953,0.574037,0.497495,0.636846,0.531955,0.167064,0.0962536,0.524666,0.175653,0.774011,0.679513,0.922498,0.623653,0.765473,0.351587,0.588796,0.0831035,0.721295,0.375356,0.550163,0.850798,0.913054,0.926592,0.0447211,0.44825,0.109402,0.115879,0.263317,0.359947,0.513034,0.815258,0.554145,0.535431,0.0153021,0.28459,0.60886,0.798445,0.880839,0.71583,0.666932,0.467117,0.511533,0.508798,0.365336,0.0315285,0.529839,0.846487,0.203123,0.955266,0.630063,0.837734,0.344016,0.965425,0.551558,0.657962,0.544101,0.144048,0.99555,0.345607,0.133966,0.642902,0.684312,0.520895,0.86183,0.480439,0.258451,0.234227,0.42149,0.76611,0.304296,0.489938,0.0110162,0.405372,0.170198,0.833039,0.486432,0.479064,0.816224,0.0810524,0.39449,0.0903721,0.691977,0.34698,0.421685,0.710822,0.859945,0.776323,0.469285,0.644978,0.973482,0.566249,0.089146,0.0860983,0.208623,0.259726,0.185948,0.163719,0.575573,0.896522,0.0261657,0.384088,0.764033,0.872174,0.0128415,0.691856,0.212359,0.294915,0.169582,0.117444,0.044435,0.41759,0.661229,0.299,0.1236,0.700152,0.911173,0.163808,0.776785,0.154452,0.162184,0.799227,0.84534,0.0607548,0.7116,0.925765,0.342006,0.101941,0.660549,0.360102,0.371668,0.382865,0.0827416,0.156208,0.678485,0.125212,0.162236,0.859957,0.0977634,0.109454,0.247744,0.975194,0.109539,0.766143,0.375719,0.654514,0.366558,0.669151,0.987536,0.0532343,0.66476,0.0185773,0.883123,0.245312,0.298177,0.239632,0.541628,0.758295,0.19124,0.858092,0.342251,0.271054,0.685382,0.783598,0.68426,0.447985,0.234669,0.15331,0.522656,0.890979,0.549808,0.1813,0.985453,0.294945,0.363958,0.64071,0.788007,0.922735,0.225691,0.770612,0.665602,0.888725,0.260726,0.763347,0.539645,0.228206,0.10106,0.372079,0.956037,0.426564,0.624989,0.0219774,0.612837,0.318098,0.325506,0.507708,0.718131,0.903235,0.205798,0.173729,0.426983,0.441087,0.990985,0.250303,0.575507,0.168759,0.271435,0.00263864,0.431389,0.130905,0.566829,0.0340099,0.806636,0.754517,0.620866,0.857909,0.761808,0.453952,0.101292,0.891175,0.709032,0.58225,0.0453026,0.982793,0.260481,0.66121,0.811917,0.695388,0.557071,0.0953304,0.459537,0.979475,0.114614,0.827266,0.931965,0.435599,0.103438,0.668607,0.10678,0.373526,0.677005,0.373804,0.0196477,0.333507,0.680852,0.894811,0.579787,0.0779366,0.349621,0.262811,0.286615,0.164519,0.945105,0.868447,0.647591,0.691681,0.57534,0.435727,0.877511,0.84409,0.669383,0.0228319,0.379867,0.647959,0.756103,0.63683,0.0863174,0.376788,0.67477,0.155585,0.0944422,0.246352,0.408713,0.447635,0.93134,0.782733,0.63266,0.142966,0.00476271,0.020535,0.747597,0.162633,0.116518,0.794842,0.288802,0.408435,0.228758,0.924572,0.806641,0.135045,0.368081,0.729626,0.465393,0.650529,0.736177,0.439412,0.212686,0.593017,0.829748,0.555375,0.269586,0.576486,0.184118,0.451795,0.227714,0.458549,0.744613,0.881722,0.167797,0.473133,0.524089,0.140274,0.81279,0.563514,0.896543,0.74541,0.450629,0.896593,0.606166,0.193322,0.0402734,0.271396,0.343035,0.821341,0.587751,0.477214,0.829678,0.897147,0.499876,0.981139,0.848032,0.614834,0.926333,0.870672,0.379819,0.548773,0.989093,0.612035,0.406968,0.132734,0.536982,0.538438,0.672568,0.383182,0.978462,0.0584552,0.0140768,0.388699,0.721187,0.931781,0.971194,0.0992317,0.408685,0.682241,0.391492,0.923979,0.0463086,0.385971,0.542499,0.62377,0.322814,0.599447,0.111367,0.640628,0.255706,0.445442,0.380131,0.859439,0.17191,0.298879,0.867694,0.581274,0.747839,0.770306,0.60167,0.476584,0.666516,0.737249,0.714568,0.0200982,0.0667312,0.873753,0.0737869,0.415334,0.641455,0.909999,0.0701252,0.877153,0.588802,0.174238,0.258362,0.854667,0.920167,0.0169834,0.0616216,0.936638,0.794421,0.497137,0.651221,0.478778,0.816207,0.807389,0.00209427,0.740605,0.393814,0.510458,0.54849,0.155023,0.169743,0.484441,0.220628,0.1886,0.244547,0.957416,0.254786,0.280177,0.379929,0.420441,0.231955,0.94338,0.216496,0.559639,0.11525,0.882187,0.303384,0.192205,0.621136,0.121658,0.904657,0.129162,0.251512,0.752582,0.13497,|0.790224,0.936409,0.554445,0.890656,0.641405,0.781055,0.1521,0.571278,0.61453,0.666448,0.883693,0.423343,0.477556,0.328239,0.664547,0.219864,0.0432674,0.360316,0.474037,0.227624,0.350331,0.781737,0.221528,0.196098,0.247076,0.847581,0.833687,0.645389,0.629953,0.0540454,0.490535,0.796017,0.0342904,0.922221,0.00859028,0.689235,0.665398,0.596017,0.480707,0.853045,0.0335919,0.293404,0.490243,0.276881,0.739602,0.606449,0.940536,0.266742,0.582372,0.277357,0.4255,0.769072,0.179793,0.648542,0.293675,0.892192,0.115133,0.565295,0.654678,0.769925,0.663824,0.98682,0.453752,0.869276,0.180709,0.898422,0.648004,0.611248,0.79546,0.902969,0.968656,0.592418,0.244295,0.803539,0.423005,0.607579,0.681227,0.162023,0.549193,0.203338,0.698887,0.566467,0.853522,0.323815,0.382771,0.228952,0.614191,0.600516,0.760936,0.40844,0.144285,0.441711,0.382854,0.14229,0.673036,0.90627,0.557464,0.53568,0.968475,0.897013,0.926307,0.922217,0.41323,0.953406,0.15252,0.105892,0.133851,0.909146,0.949472,0.856627,0.834278,0.501809,0.180881,0.642396,0.00494581,0.0681168,0.606312,0.639779,0.333605,0.655824,0.462471,0.0310848,0.765525,0.91629,0.925408,0.989468,0.268174,0.898691,0.122827,0.980789,0.27431,0.591212,0.257214,0.442169,0.00194669,0.14511,0.635682,0.337088,0.610052,0.0374579,0.766836,0.108953,0.287696,0.11689,0.0789079,0.611994,0.914696,0.521574,0.266431,0.245163,0.10527,0.509342,0.760176,0.716228,0.270115,0.658864,0.885669,0.207055,0.200042,0.551007,0.0920514,0.331742,0.813435,0.882297,0.795806,0.490208,0.983264,0.898028,0.908735,0.988441,0.0168531,0.15076,0.361682,0.206888,0.518451,0.148004,0.381731,0.369456,0.654875,0.730555,0.883517,0.655162,0.144785,0.961397,0.032034,0.746341,0.830167,0.535995,0.919803,0.26299,0.825978,0.47339,0.345506,0.694523,0.493072,0.173329,0.37485,0.369038,0.0544328,0.0827906,0.927694,0.42135,0.34682,0.266745,0.48278,0.752905,0.171595,0.336153,0.319744,0.710499,0.626086,0.230146,0.0733418,0.404746,0.973536,0.166697,0.0153096,0.625412,0.490338,0.96522,0.00853789,0.633825,0.890418,0.594836,0.117219,0.445003,0.825834,0.110444,0.67794,0.252753,0.723332,0.204793,0.794278,0.214665,0.692439,0.139851,0.495194,0.0806177,0.728278,0.212927,0.97999,0.0564132,0.438281,0.85158,0.0395417,0.959928,0.0990785,0.443626,0.0627452,0.449294,0.46144,0.574135,0.85714,0.645779,0.536807,0.349051,0.710172,0.206389,0.595168,0.0714085,0.332007,0.139227,0.52851,0.507687,0.138543,0.165656,0.779201,0.764424,0.565103,0.184956,0.411711,0.626133,0.571729,0.111936,0.303802,0.0838226,0.433495,0.0623874,0.890774,0.6197,0.105479,0.93678,0.964402,0.895333,0.245266,0.855143,0.713145,0.915129,0.782945,0.628923,0.79508,0.879533,0.583699,0.952592,0.414131,0.340362,0.0772947,0.417315,0.238645,0.2489,0.674199,0.84417,0.709999,0.095015,0.336813,0.300248,0.29154,0.180185,0.298602,0.874296,0.469693,0.300065,0.488096,0.438348,0.314864,0.778089,0.450506,0.455376,0.490196,0.702944,0.47134,0.498849,0.981636,0.558389,0.820246,0.696412,0.747819,0.253768,0.640115,0.899413,0.675672,0.178789,0.647508,0.0370201,0.916339,0.257946,0.417929,0.738416,0.24159,0.563986,0.207388,0.916458,0.702439,0.588774,0.228997,0.752686,0.529336,0.578269,0.302873,0.244193,0.198496,0.811842,0.392565,0.975981,0.477592,0.315589,0.796237,0.219204,0.694989,0.895549,0.658852,0.827784,0.436982,0.464468,0.884818,0.900407,0.267192,0.470408,0.697816,0.771693,0.552323,0.484551,0.514962,0.35904,0.25701,0.760429,0.618982,0.997858,0.740072,0.938639,0.42118,0.0607858,0.341313,0.217294,0.945206,0.725015,0.635484,0.517706,0.716528,0.131899,0.550326,0.437181,0.846503,0.290841,0.543491,0.568705,0.130328,0.556383,0.285122,0.990563,0.599933,0.377958,0.547621,0.883728,0.897731,0.973402,0.0784753,0.829971,0.692453,0.73946,0.811051,0.632003,0.54404,0.26695,0.243657,0.945941,0.0390121,0.0288267,0.193836,0.269463,0.582292,0.56345,0.607396,0.976264,0.720919,0.816018,0.293492,0.0975381,0.422239,0.740041,0.931705,0.156919,0.324632,0.963695,0.148618,0.84073,0.69203,0.478669,0.531547,0.534699,0.0330973,0.551984,0.373507,0.107984,0.527679,0.107556,0.665949,0.952445,0.105074,0.398413,0.90742,0.596123,0.545104,0.904689,0.78507,0.924968,0.871331,0.535231,0.602974,0.355863,0.640429,0.857331,0.40903,0.113939,0.238546,0.341312,0.199984,0.188795,0.344264,0.836913,0.83407,0.402872,0.265744,0.19962,0.747928,0.875268,0.56004,0.789547,0.428121,0.148884,0.502461,0.279667,0.747754,0.598991,0.362472,0.852767,0.162275,0.698004,0.173886,0.73615,0.369166,0.640793,0.504778,0.141364,0.744508,0.0710809,0.927332,0.743922,0.65161,0.581643,0.48253,0.72722,0.0559757,0.467542,0.0843714,0.403696,0.880867,0.413884,0.384521,0.57469,0.561621,0.600332,0.465464,0.237311,0.357966,0.922346,0.768907,0.231969,0.71582,0.488289,0.486045,0.447702,0.983161,0.693611,0.421708,0.579287,0.737381,0.0927218,0.732399,0.0385177,0.548734,0.565516,0.0417633,0.572006,0.376338,0.786789,0.646036,0.269324,0.566154,0.554277,0.661575,0.715258,0.311601,0.89791,0.768144,0.486278,0.0440612,0.153584,0.440711,0.70829,0.903931,0.78886,0.326707,0.480705,0.491952,0.675916,0.313932,0.456111,0.181044,0.623948,0.933748,0.280504,0.360412,0.669788,0.247078,0.689415,0.0777055,0.466194,0.601628,0.234723,0.230485,0.146448,0.363593,0.239771,0.280135,0.0614207,0.831501,0.000740409,0.990096,0.774845,0.443999,0.110988,0.790016,0.000348568,0.968741,0.372756,0.95864,0.90716,0.435762,0.911218,0.238953,0.460015,0.219695,0.449785,0.416858,0.732949,0.586689,0.290335,0.434399,0.690325,0.378622,0.200478,0.823577,0.996994,0.837235,0.0767991,0.0892004,0.168861,0.411213,0.437353,0.13201,0.554232,0.826143,0.882188,0.153403,0.155347,0.0172926,0.582443,0.983692,0.422856,0.682446,0.628098,0.466532,0.401491,0.329774,0.641142,0.0791802,0.835632,0.668352,0.736035,0.0224058,0.242837,0.987262,0.502952,0.128779,0.890388,0.948814,0.0673959,0.576551,0.145976,0.606489,0.1397,0.337648,0.327506,0.605535,0.30875,0.0156062,0.16991,0.309128,0.629824,0.608316,0.790104,0.257058,0.134062,0.983503,0.0400596,0.356664,0.763762,0.93999,0.724733,0.233451,0.275698,0.4276,0.0884129,0.348235,0.959994,0.589994,0.64622,0.101663,0.206457,0.135778,0.823881,0.689456,0.381918,0.775891,0.234682,0.304884,0.0867166,0.690093,0.643715,0.254041,0.807045,0.451054,0.120489,0.0770385,0.668816,0.295798,0.684961,0.3634,0.425732,0.191862,0.0123241,0.726971,0.328297,0.313305,0.607458,0.234604,0.267289,0.7972,0.347947,0.0125591,0.317543,0.0464799,0.224135,0.987269,0.921861,0.513384,0.755903,0.869356,0.280679,0.825163,0.126757,0.785572,0.101336,0.240479,0.165056,0.405795,0.852623,0.0801685,0.78923,0.0983268,0.10015,0.580476,0.170646,0.948439,0.36275,0.604037,0.743384,0.393391,0.316621,0.418667,0.485923,0.481293,0.736672,0.825492,0.436171,0.175619,0.246448,0.888953,0.62098,0.360611,0.381299,0.640174,0.434206,0.60973,0.113451,0.838176,0.72881,0.574577,0.543416,0.787462,0.137553,0.551709,0.676848,0.802451,0.249479,0.73821,0.597893,0.724302,0.794014,0.559843,0.773116,0.934201,0.738329,0.0279149,0.0462713,0.224765,0.88718,0.96792,0.200326,0.722737,0.915807,0.09604,0.731664,0.6177,0.244571,0.235187,0.741219,0.943771,0.131682,0.458338,0.607217,0.0421621,0.180741,0.685228,0.66094,0.577137,0.232814,0.0732986,0.0961495,0.657392,0.405354,0.724032,0.54429,0.595921,0.557086,0.691039,0.678253,0.646244,0.551785,0.935443,0.577897,0.459699,0.936982,0.0129318,0.591027,0.530233,0.853092,0.48175,0.289483,0.502342,0.0919752,0.473959,0.715387,0.89287,0.561646,0.555403,0.856148,0.48321,0.537682,0.69244,0.864236,0.213517,0.111238,0.638206,0.0448654,0.136836,0.0481929,0.131917,0.118673,0.545781,0.598422,0.499601,0.559917,0.744646,0.800701,0.334055,0.281463,0.972477,0.353367,0.95626,0.929174,0.491681,0.347089,0.263096,0.468034,0.284252,0.86946,0.439442,0.692494,0.440882,0.186034,0.882686,0.717935,0.482438,0.496994,0.511126,0.971433,0.044834,0.134863,0.58191,0.643939,0.0696022,0.475984,0.467629,0.966944,0.344744,0.0208479,0.681892,0.825511,0.0839901,0.368199,0.847136,0.787788,0.786195,0.15468,0.618995,0.0405975,0.0716216,0.578088,0.254464,0.907903,0.145002,0.877088,0.511308,0.630933,0.183488,0.781157,0.0308059,0.806642,0.698991,0.328917,0.400673,0.871803,0.834332,0.60858,0.553413,0.261067,0.241606,0.661477,0.986555,0.147027,0.879064,0.416506,0.0894291,0.960039,0.66989,0.0387632,0.617081,0.727973,0.605728,0.730405,0.592027,0.135232,0.195792,0.286222,0.273677,0.038989,0.319686,0.376134,0.247447,0.693841,0.569406,0.794802,0.833246,0.626346,0.791608,0.553997,0.986636,0.77449,0.174792,0.072459,0.400642,0.441545,0.433588,0.434607,0.75481,0.0825239,0.110417,0.947106,0.893863,0.412559,0.404418,0.0662366,0.966561,0.70032,0.245994,0.227655,0.117561,0.932038,0.0198249,0.636545,0.978919,0.747028,0.0524195,0.178519,0.800408,0.22314,0.47515,0.177943,0.232633,0.939897,0.474211,0.195605,0.867628,0.469766,0.285182,0.0101982,0.834229,0.291481,0.956106,0.425941,0.309263,0.653457,0.814115,0.875403,0.739793,0.626056,0.861256,0.239747,0.0407182,0.623814,0.764487,0.107975,0.811726,0.51511,0.930406,0.732956,0.796905,0.31969,0.542745,0.754482,0.202042,0.598826,0.405862,0.5284,0.988907,0.40098,0.432403,0.475135,|0.442071,0.478685,0.0193408,0.606208,0.737008,0.613523,0.0378115,0.163543,0.0891697,0.932126,0.190775,0.362414,0.63509,0.479722,0.0803112,0.738587,0.183145,0.51898,0.200444,0.827562,0.15512,0.526283,0.817294,0.732572,0.888113,0.94423,0.32693,0.752065,0.952818,0.388333,0.209516,0.569569,0.520006,0.509849,0.644765,0.738546,0.737632,0.526852,0.323533,0.184322,0.719664,0.4315,0.625227,0.0445628,0.595399,0.601038,0.490187,0.383776,0.132253,0.635984,0.203916,0.226613,0.179963,0.994805,0.663642,0.9248,0.514288,0.27795,0.281748,0.099474,0.201578,0.616647,0.772443,0.336947,0.275402,0.535681,0.593815,0.865957,0.85085,0.446548,0.00222141,0.810402,0.638022,0.177939,0.925628,0.515326,0.367935,0.726969,0.668824,0.886227,0.896737,0.702655,0.211798,0.63875,0.565866,0.838577,0.386978,0.3685,0.452381,0.877439,0.0292027,0.214515,0.0695607,0.0756966,0.438351,0.415314,0.739253,0.105261,0.924256,0.473717,0.816723,0.245118,0.284175,0.456626,0.272949,0.383846,0.507258,0.927608,0.920388,0.519723,0.904643,0.101734,0.836191,0.425126,0.351524,0.71276,0.428238,0.954604,0.965274,0.944329,0.490588,0.0619118,0.64746,0.918148,0.969399,0.691906,0.857302,0.781926,0.864019,0.354123,0.761295,0.728417,0.473159,0.459764,0.113514,0.602136,0.739741,0.379364,0.0964189,0.825449,0.0330301,0.324053,0.212802,0.917895,0.395821,0.990241,0.366572,0.673021,0.939877,0.583289,0.0716704,0.170224,0.921528,0.579206,0.956863,0.165018,0.898864,0.433373,0.126369,0.412587,0.177213,0.29744,0.107455,0.607056,0.800777,0.983359,0.524298,0.190262,0.726658,0.995565,0.743472,0.268664,0.288718,0.758239,0.913443,0.376662,0.739846,0.225443,0.415282,0.100582,0.469437,0.470709,0.12113,0.280306,0.751084,0.515125,0.148584,0.6105,0.87838,0.748495,0.472917,0.935932,0.512111,0.611643,0.136512,0.987284,0.785162,0.905634,0.14903,0.720126,0.815158,0.112391,0.659061,0.741398,0.110089,0.646288,0.0243471,0.62759,0.389602,0.639534,0.354649,0.326732,0.698324,0.348464,0.576834,0.517533,0.732693,0.830477,0.310834,0.0336534,0.896418,0.0055663,0.353313,0.866717,0.711193,0.146784,0.398724,0.995245,0.668857,0.572279,0.894249,0.0312833,0.361473,0.651958,0.798817,0.496131,0.838419,0.230306,0.212953,0.223569,0.981408,0.236048,0.303988,0.415232,0.841041,0.726924,0.750993,0.98594,0.0727924,0.122719,0.149363,0.378388,0.844746,0.998737,0.835279,0.0309584,0.97366,0.389827,0.23757,0.651626,0.967403,0.734394,0.448837,0.393751,0.508358,0.527339,0.134993,0.888931,0.971178,0.95977,0.597905,0.00428289,0.31769,0.991274,0.779544,0.967763,0.410227,0.675368,0.81481,0.539365,0.815571,0.364763,0.810154,0.823449,0.915519,0.525512,0.0550858,0.19941,0.530611,0.829754,0.992401,0.309278,0.0604988,0.128442,0.306096,0.289748,0.149935,0.404251,0.897456,0.302865,0.647368,0.603194,0.0790379,0.655702,0.254121,0.825732,0.714969,0.589031,0.407269,0.267412,0.456447,0.855395,0.0286741,0.466186,0.465745,0.797962,0.0828996,0.252786,0.449336,0.50364,0.139953,0.917264,0.585142,0.163444,0.169741,0.254034,0.868646,0.279663,0.834579,0.314649,0.877197,0.256819,0.835935,0.136948,0.326645,0.74617,0.210616,0.600438,0.579256,0.787934,0.772202,0.758262,0.594609,0.719646,0.736829,0.409568,0.628091,0.63131,0.489319,0.278602,0.391525,0.725668,0.782248,0.559679,0.271559,0.558311,0.387181,0.667739,0.897012,0.796807,0.557706,0.0930466,0.251164,0.440297,0.825839,0.83607,0.0716059,0.930923,0.894065,0.555696,0.675814,0.201587,0.48427,0.629695,0.718139,0.727997,0.292866,0.555785,0.105527,0.717421,0.655342,0.36111,0.560088,0.975982,0.741876,0.945368,0.72364,0.218123,0.240894,0.377109,0.626837,0.970543,0.565945,0.641627,0.905349,0.813016,0.356619,0.0675259,0.239561,0.0255511,0.3681,0.798183,0.661709,0.213475,0.281534,0.21266,0.169689,0.654432,0.0764527,0.456676,0.765858,0.433763,0.521886,0.506564,0.827039,0.693399,0.202456,0.698717,0.295102,0.135538,0.224338,0.147595,0.632127,0.359545,0.113266,0.703861,0.353399,0.269979,0.0382875,0.788096,0.539821,0.390373,0.109755,0.220065,0.961924,0.559257,0.387059,0.598693,0.19292,0.127029,0.999018,0.604483,0.0762876,0.941393,0.86143,0.399339,0.344821,0.701566,0.98536,0.862812,0.710072,0.173519,0.757439,0.0790952,0.381278,0.0510961,0.516118,0.0179144,0.450003,0.506256,0.0859405,0.903603,0.0106801,0.682338,0.863671,0.758412,0.974246,0.569489,0.654024,0.814057,0.251657,0.668784,0.291986,0.600059,0.562215,0.19321,0.788267,0.772077,0.438591,0.322729,0.427724,0.217471,0.770374,0.631253,0.063861,0.809383,0.210364,0.0674543,0.627722,0.943196,0.470196,0.287406,0.511485,0.740625,0.223847,0.783026,0.330086,0.510027,0.0402339,0.154157,0.223399,0.083469,0.514748,0.549495,0.191178,0.709175,0.999354,0.942396,0.479656,0.0240184,0.377069,0.327528,0.630033,0.352082,0.795319,0.623071,0.985569,0.720271,0.102401,0.249352,0.0422439,0.38741,0.294541,0.463859,0.231566,0.146137,0.930064,0.960865,0.827042,0.776152,0.788564,0.848556,0.536583,0.793673,0.0945868,0.232593,0.0458168,0.393174,0.937264,0.172634,0.119413,0.00570673,0.131811,0.559237,0.407481,0.333631,0.233178,0.305728,0.614239,0.107865,0.184236,0.926643,0.288776,0.435962,0.756012,0.551763,0.891895,0.668877,0.0601349,0.660464,0.343467,0.842099,0.349523,0.145492,0.9311,0.257507,0.873863,0.314159,0.65121,0.629476,0.138089,0.600184,0.0715978,0.332475,0.144167,0.977399,0.918497,0.980966,0.127694,0.383425,0.0737463,0.828411,0.0789593,0.308928,0.78024,0.550789,0.811646,0.436731,0.111135,0.381783,0.738677,0.229891,0.32441,0.406579,0.647439,0.284448,0.573225,0.59229,0.737171,0.941269,0.190377,0.87122,0.606937,0.244944,0.558978,0.59463,0.246164,0.716558,0.540838,0.942832,0.0144889,0.661527,0.974511,0.152837,0.479874,0.511986,0.0536178,0.0347424,0.0104207,0.285773,0.754311,0.0946991,0.123942,0.304376,0.576815,0.109862,0.403127,0.0414499,0.45691,0.540449,0.961399,0.639215,0.56393,0.179111,0.647568,0.065406,0.387618,0.20231,0.432358,0.710577,0.57913,0.367149,0.988829,0.776848,0.286818,0.259799,0.38033,0.378893,0.335723,0.316451,0.0694183,0.488041,0.498591,0.995483,0.307871,0.999832,0.0187219,0.855872,0.642582,0.340067,0.883346,0.319307,0.151555,0.547572,0.268959,0.205791,0.132995,0.446071,0.0667686,0.0608369,0.560592,0.513138,0.438721,0.684198,0.690994,0.220154,0.744318,0.0214882,0.934439,0.471793,0.062216,0.441104,0.346468,0.944496,0.742563,0.986091,0.48691,0.250159,0.830608,0.654649,0.302875,0.154841,0.460441,0.382218,0.696742,0.206339,0.0520064,0.651851,0.698772,0.0808009,0.969561,0.751113,0.641196,0.0595731,0.140385,0.148233,0.0638485,0.123172,0.64266,0.369963,0.422979,0.457057,0.326334,0.643521,0.190431,0.488772,0.0946388,0.256779,0.639997,0.995332,0.388286,0.255681,0.167518,0.725708,0.133909,0.122068,0.0944462,0.258695,0.090718,0.560683,0.532096,0.0832319,0.885069,0.451831,0.877662,0.598288,0.451491,0.0753602,0.475615,0.0855851,0.0686036,0.697173,0.959144,0.632592,0.141756,0.160085,0.330301,0.673077,0.82693,0.84144,0.695888,0.338522,0.214441,0.174535,0.546955,0.225434,0.815059,0.110968,0.218755,0.216394,0.142154,0.779277,0.375673,0.772783,0.930912,0.941549,0.948396,0.209438,0.683057,0.369212,0.961222,0.177693,0.490412,0.431733,0.0770373,0.263296,0.924078,0.952656,0.874516,0.22746,0.612599,0.637368,0.970014,0.933317,0.147531,0.54119,0.357184,0.601225,0.871643,0.660306,0.36371,0.492019,0.137117,0.781715,0.66771,0.430496,0.474137,0.299765,0.203987,0.237516,0.789546,0.254075,0.00859863,0.588686,0.292749,0.0918179,0.42428,0.51872,0.933945,0.143118,0.609676,0.578231,0.518065,0.759548,0.416426,0.461255,0.820765,0.653469,0.872213,0.616645,0.272063,0.87819,0.245571,0.569543,0.957588,0.347759,0.216341,0.704949,0.750551,0.0825629,0.263862,0.605981,0.884568,0.940516,0.852842,0.377156,0.339757,0.588598,0.311736,0.554445,0.67942,0.494122,0.0599445,0.231261,0.4295,0.0356173,0.0971635,0.595788,0.471054,0.16765,0.70146,0.98879,0.953239,0.884167,0.726818,0.52556,0.972229,0.763313,0.916645,0.817155,0.383637,0.369247,0.879646,0.24781,0.0302129,0.145322,0.258455,0.0946586,0.827501,0.229191,0.275835,0.437342,0.203089,0.186315,0.0760587,0.650742,0.544692,0.106877,0.0724199,0.113747,0.152505,0.181586,0.641276,0.152494,0.08112,0.737432,0.904675,0.734708,0.247405,0.799317,0.393008,0.784085,0.730563,0.690786,0.607947,0.971758,0.844017,0.829323,0.774523,0.851461,0.606502,0.302867,0.33793,0.704007,0.964729,0.75871,0.390408,0.555146,0.591938,0.881566,0.741911,0.968272,0.911836,0.513205,0.188356,0.832512,0.00514162,0.815192,0.494784,0.21697,0.121261,0.617152,0.332778,0.218576,0.473775,0.231822,0.43353,0.403714,0.00616872,0.989967,0.652515,0.558811,0.701118,0.397759,0.162523,0.388953,0.0454566,0.324617,0.852104,0.873989,0.601775,0.19894,0.661303,0.356066,0.797615,0.688877,0.0874889,0.657511,0.461163,0.00911528,0.337999,0.142007,0.948395,0.317205,0.0393877,0.186919,0.846789,0.880851,0.401579,0.966695,0.666338,0.873408,0.685522,0.0111924,0.50262,0.936498,0.925148,0.139007,0.832697,0.44047,0.14785,0.777761,0.373821,0.567407,0.478729,0.757703,0.439038,0.412529,0.499712,0.335097,0.748425,0.17129,0.523202,0.39489,0.865862,0.678266,0.597502,0.273221,0.0387371,0.338733,0.702347,0.40394,0.299645,0.301115,0.106648,0.545907,0.573842,0.548734,0.128978,0.129049,|0.377962,0.594167,0.538841,0.879885,0.623635,0.554932,0.83173,0.863678,0.756303,0.239057,0.0259716,0.374856,0.968943,0.824606,0.0478179,0.574238,0.567263,0.105404,0.820402,0.938717,0.0440269,0.814267,0.462414,0.5752,0.333191,0.443551,0.628665,0.522415,0.829139,0.124688,0.879101,0.247577,0.226825,0.277754,0.291064,0.814525,0.870528,0.787513,0.479218,0.776555,0.00272661,0.929177,0.117789,0.234409,0.832282,0.826057,0.0140272,0.12133,0.411293,0.25464,0.395031,0.774807,0.428734,0.96818,0.53761,0.052095,0.207755,0.313581,0.956212,0.0273304,0.193803,0.331919,0.141866,0.687508,0.694757,0.330118,0.621316,0.436764,0.974689,0.40628,0.741358,0.0724689,0.206116,0.401467,0.553787,0.324913,0.317002,0.888789,0.408994,0.503003,0.115576,0.493683,0.282271,0.128741,0.858484,0.761864,0.141703,0.893622,0.151129,0.211941,0.914448,0.0821773,0.641135,0.81948,0.697824,0.440047,0.327065,0.363886,0.720886,0.792717,0.658587,0.41244,0.505943,0.290077,0.33977,0.303237,0.611574,0.0551876,0.362065,0.0119859,0.135094,0.502299,0.651783,0.0843707,0.0813501,0.856528,0.892944,0.844574,0.741823,0.50636,0.596969,0.934946,0.376294,0.251837,0.538417,0.742196,0.897265,0.908367,0.815615,0.723971,0.00421333,0.311979,0.685695,0.425287,0.972492,0.4976,0.711641,0.230396,0.47547,0.0689337,0.863816,0.531463,0.143277,0.195141,0.736616,0.944493,0.1431,0.368502,0.176473,0.735145,0.131539,0.707779,0.665403,0.919314,0.709491,0.587997,0.266195,0.384129,0.574943,0.0558395,0.055214,0.592863,0.561048,0.801544,0.515242,0.0912703,0.105791,0.726474,0.704729,0.484086,0.786164,0.67724,0.68942,0.46135,0.300237,0.120644,0.0976351,0.583969,0.645133,0.537222,0.191247,0.492435,0.490222,0.659965,0.100072,0.0929067,0.537438,0.624581,0.53809,0.298182,0.756763,0.694332,0.340354,0.198264,0.943306,0.794397,0.444912,0.771986,0.83801,0.711966,0.91929,0.303203,0.646166,0.605751,0.4086,0.730089,0.579338,0.812515,0.427377,0.0401928,0.772834,0.937011,0.215163,0.500483,0.253311,0.65906,0.284378,0.46757,0.69304,0.104003,0.684586,0.838839,0.662804,0.0200978,0.99463,0.705906,0.177865,0.102531,0.0359588,0.381749,0.324661,0.454112,0.930472,0.905903,0.588322,0.956246,0.632289,0.74489,0.47602,0.315952,0.773389,0.997441,0.36437,0.938616,0.655466,0.032693,0.432585,0.110897,0.205884,0.20544,0.656256,0.369883,0.844881,0.497198,0.258417,0.844912,0.977112,0.175577,0.736422,0.976198,0.159785,0.352141,0.548366,0.105377,0.909521,0.324537,0.440983,0.934472,0.433322,0.909808,0.404857,0.424707,0.216778,0.501818,0.0673124,0.649041,0.890733,0.335657,0.336437,0.991298,0.973548,0.00479656,0.609289,0.0155935,0.61735,0.615009,0.332679,0.461613,0.634262,0.657141,0.751232,0.505819,0.417235,0.331243,0.0511094,0.460786,0.439648,0.970138,0.715227,0.0694377,0.623079,0.854347,0.439539,0.206552,0.000202119,0.827228,0.396964,0.416347,0.447623,0.719333,0.408724,0.347908,0.722977,0.272742,0.816845,0.787323,0.793715,0.152292,0.547271,0.463001,0.895562,0.242604,0.427046,0.898676,0.342044,0.776137,0.840768,0.210607,0.455905,0.0972168,0.209615,0.595421,0.815098,0.384949,0.0424652,0.02333,0.799976,0.613823,0.166146,0.149289,0.0370563,0.722186,0.877279,0.589614,0.62988,0.821883,0.632363,0.071779,0.828326,0.0614768,0.014192,0.0521665,0.0623809,0.86237,0.99577,0.989193,0.0941607,0.993924,0.551261,0.8766,0.476548,0.0932806,0.624441,0.038303,0.0811102,0.232719,0.397791,0.344214,0.976027,0.845837,0.149541,0.828055,0.0417544,0.181666,0.569746,0.195458,0.613197,0.853429,0.902955,0.116146,0.666742,0.954111,0.567769,0.377184,0.612936,0.388523,0.610078,0.594033,0.234898,0.129158,0.0958462,0.139743,0.241,0.253224,0.950464,0.573466,0.25381,0.41442,0.41167,0.807887,0.463494,0.489979,0.453453,0.627672,0.318958,0.133729,0.755327,0.651519,0.11265,0.92352,0.793536,0.697478,0.0823817,0.244986,0.222326,0.811113,0.551149,0.233811,0.213976,0.771408,0.429569,0.558618,0.0011887,0.321535,0.0967824,0.171292,0.938059,0.712058,0.00380349,0.68332,0.20338,0.839626,0.510673,0.0866342,0.213788,0.0689774,0.772082,0.431066,0.357149,0.16597,0.681179,0.417374,0.801628,0.250378,0.295469,0.688429,0.0102804,0.851148,0.482533,0.741844,0.0165524,0.241261,0.179629,0.308396,0.0248473,0.903314,0.719907,0.449853,0.300796,0.21032,0.58147,0.334264,0.146927,0.232047,0.609711,0.934011,0.479077,0.524307,0.290959,0.227228,0.908696,0.169033,0.535739,0.449985,0.0421715,0.701699,0.88825,0.861209,0.0584939,0.743152,0.995039,0.0683762,0.300052,0.0692606,0.269754,0.0295436,0.0897641,0.371398,0.62472,0.592631,0.246815,0.378016,0.530545,0.744785,0.991932,0.0898243,0.23601,0.214495,0.050486,0.149445,0.902979,0.157113,0.699913,0.352188,0.715428,0.0212085,0.552144,0.396416,0.968057,0.684844,0.941814,0.733289,0.841811,0.133169,0.627262,0.807236,0.240529,0.256828,0.285542,0.658927,0.571068,0.593361,0.382572,0.166379,0.17727,0.588885,0.121781,0.757463,0.0808845,0.122358,0.148896,0.121634,0.71064,0.724401,0.918596,0.558181,0.743583,0.329806,0.766767,0.799099,0.233708,0.0496138,0.0805521,0.937867,0.480768,0.12739,0.210045,0.0317654,0.135688,0.328351,0.19531,0.185696,0.9521,0.487927,0.450149,0.0942879,0.441021,0.957581,0.915346,0.7377,0.0235303,0.309378,0.348935,0.946757,0.0474802,0.941316,0.670302,0.797603,0.192289,0.935629,0.167231,0.867664,0.977848,0.0764956,0.733363,0.0319608,0.103017,0.745103,0.699553,0.841059,0.628967,0.609931,0.640119,0.988554,0.534686,0.0660929,0.926844,0.721098,0.810197,0.482697,0.963137,0.0558713,0.441238,0.96868,0.545084,0.54361,0.161271,0.505135,0.162983,0.802593,0.74794,0.957072,0.831134,0.655049,0.759485,0.852453,0.822135,0.187964,0.337519,0.515942,0.516347,0.217451,0.742969,0.43618,0.160929,0.195921,0.971872,0.447443,0.0867969,0.519511,0.884013,0.659742,0.997972,0.54728,0.348787,0.390819,0.0316759,0.771833,0.936994,0.810587,0.0583512,0.526933,0.140514,0.0069229,0.0257025,0.478327,0.819398,0.997896,0.812157,0.625459,0.0460919,0.137309,0.873891,0.356376,0.287356,0.00318044,0.475329,0.812778,0.224737,0.889513,0.334457,0.203602,0.110408,0.851275,0.155171,0.96539,0.983313,0.336007,0.696655,0.454915,0.177298,0.123103,0.218583,0.951797,0.491974,0.332744,0.771681,0.351483,0.508906,0.511737,0.531736,0.474846,0.358783,0.750889,0.0994262,0.575136,0.859176,0.19288,0.935453,0.77023,0.0803022,0.96731,0.381615,0.838402,0.702776,0.13101,0.924416,0.999868,0.0855302,0.381203,0.728611,0.0966874,0.473425,0.935101,0.813917,0.86315,0.318379,0.901433,0.679745,0.916282,0.428968,0.486339,0.246377,0.962949,0.0387417,0.847024,0.927696,0.367973,0.895469,0.820908,0.879395,0.765547,0.70832,0.642645,0.511405,0.0248365,0.0151733,0.964203,0.762614,0.251075,0.0970763,0.84284,0.869493,0.0327096,0.551505,0.152159,0.692258,0.200601,0.643554,0.996042,0.452475,0.920022,0.995,0.494613,0.645956,0.071689,0.909742,0.332917,0.597201,0.86253,0.70667,0.874182,0.499662,0.255935,0.886042,0.763389,0.952362,0.959082,0.908464,0.573559,0.834165,0.285725,0.0410429,0.62462,0.383293,0.360029,0.459395,0.12914,0.059322,0.62503,0.488728,0.600764,0.878495,0.437986,0.184343,0.975942,0.0697497,0.900087,0.123839,0.875442,0.407233,0.767848,0.805252,0.0368277,0.982514,0.475536,0.0884197,0.775175,0.902889,0.832186,0.931422,0.489992,0.435009,0.0629032,0.862832,0.702455,0.204311,0.4186,0.416286,0.566127,0.0117808,0.918933,0.106188,0.998578,0.93603,0.13215,0.163401,0.634669,0.561388,0.594999,0.09637,0.639094,0.999751,0.496442,0.136062,0.757544,0.966011,0.525275,0.545758,0.435342,0.371894,0.412841,0.653157,0.460513,0.205608,0.237291,0.253893,0.814361,0.764839,0.629341,0.980881,0.237416,0.581393,0.491408,0.587942,0.614382,0.595393,0.819131,0.859888,0.743491,0.175223,0.0261956,0.918987,0.644743,0.125382,0.665814,0.211625,0.820245,0.319412,0.141647,0.991583,0.608505,0.0868375,0.596181,0.942984,0.635209,0.235378,0.411561,0.942495,0.339635,0.416445,0.670552,0.74005,0.672048,0.19877,0.438499,0.99473,0.688926,0.618525,0.354363,0.228558,0.889923,0.965156,0.527239,0.0392679,0.352156,0.39858,0.671024,0.880187,0.0686728,0.617659,0.423946,0.814095,0.0989263,0.566575,0.937193,0.845547,0.95126,0.431429,0.674294,0.828168,0.819485,0.743376,0.138199,0.483741,0.0801495,0.682496,0.973786,0.305721,0.811822,0.543649,0.140851,0.667619,0.0243036,0.680925,0.403459,0.831627,0.430612,0.315818,0.389117,0.307677,0.424392,0.267686,0.890266,0.616932,0.223678,0.0840228,0.533589,0.978216,0.971712,0.84731,0.881116,0.379703,0.23361,0.919222,0.552961,0.266102,0.35867,0.783908,0.576584,0.660941,0.755066,0.746748,0.376937,0.00715011,0.843741,0.398043,0.582359,0.738652,0.195439,0.778622,0.563401,0.903648,0.315587,0.515516,0.225284,0.20018,0.0517806,0.182424,0.929618,0.103364,0.162591,0.514858,0.498074,0.337909,0.295834,0.774767,0.800147,0.954013,0.449229,0.285625,0.0788975,0.973107,0.0369623,0.817546,0.130818,0.278033,0.351257,0.898642,0.715644,0.702651,0.293375,0.291737,0.377506,0.219597,0.267055,0.520077,0.157607,0.90379,0.746152,0.932744,0.777174,0.253177,0.0427719,0.0989131,0.830556,0.966423,0.070945,0.568446,0.196916,0.839189,0.103771,0.27004,0.965846,0.544759,0.456234,0.839906,0.753425,0.90135,0.106111,0.781397,0.175701,0.0794499,0.507505,0.511623,0.028684,0.765474,0.185578,0.285278,0.30525,|0.432782,0.0862457,0.723446,0.684375,0.342548,0.868191,0.88899,0.578254,0.548085,0.0233862,0.677669,0.124921,0.0778098,0.597355,0.836591,0.714104,0.577563,0.834587,0.216877,0.80199,0.456496,0.581091,0.698014,0.706317,0.629538,0.184239,0.575159,0.475196,0.402649,0.245998,0.345266,0.321089,0.282615,0.309326,0.753549,0.921237,0.753603,0.398728,0.59607,0.480371,0.581295,0.918306,0.645972,0.881365,0.712053,0.716269,0.387463,0.845839,0.95408,0.812614,0.0221835,0.188963,0.781914,0.525233,0.139415,0.831429,0.0741678,0.270001,0.376324,0.15729,0.756957,0.0845366,0.722776,0.100491,0.601899,0.0421571,0.66966,0.234458,0.275053,0.788454,0.559292,0.336339,0.0427441,0.890021,0.0879593,0.597706,0.0123572,0.757388,0.722093,0.505219,0.618781,0.106191,0.28887,0.936137,0.181019,0.586142,0.941584,0.39888,0.791591,0.417376,0.0323106,0.00565094,0.0796251,0.598015,0.815017,0.0146568,0.908609,0.700885,0.605261,0.21136,0.756263,0.457073,0.693403,0.954128,0.625494,0.0446011,0.603682,0.486237,0.0519732,0.209533,0.700087,0.885966,0.582386,0.973127,0.161216,0.287307,0.420263,0.492736,0.937137,0.611387,0.426185,0.992472,0.511428,0.258752,0.244547,0.745831,0.806623,0.670708,0.0484902,0.211202,0.733484,0.571297,0.364073,0.535896,0.88109,0.587251,0.842864,0.960958,0.446607,0.521159,0.705247,0.0733014,0.151267,0.249757,0.419413,0.646472,0.404862,0.817969,0.330257,0.991137,0.968192,0.852095,0.689465,0.79866,0.00896209,0.0132913,0.599737,0.681861,0.768893,0.842157,0.981039,0.50979,0.942534,0.707717,0.273385,0.812461,0.907884,0.204331,0.784189,0.503145,0.751462,0.446526,0.583648,0.667994,0.675851,0.821586,0.593826,0.697838,0.969009,0.435577,0.84781,0.160986,0.888198,0.357903,0.66936,0.0687041,0.708657,0.0785964,0.840039,0.0152507,0.37707,0.928092,0.465534,0.758288,0.67066,0.315224,0.197484,0.468255,0.984622,0.391028,0.156991,0.0439474,0.240867,0.228992,0.169725,0.959201,0.523727,0.850096,0.852443,0.776121,0.397082,0.778391,0.916222,0.685363,0.635114,0.936989,0.0755576,0.0184456,0.778853,0.258628,0.867534,0.545282,0.807514,0.553685,0.0431225,0.378363,0.244552,0.253379,0.356453,0.651807,0.0455282,0.079897,0.290984,0.244728,0.564852,0.355784,0.690915,0.80938,0.695755,0.516077,0.7471,0.499858,0.187535,0.814278,0.828507,0.609602,0.169825,0.699821,0.573915,0.212097,0.55048,0.922388,0.310399,0.906956,0.451259,0.320405,0.759038,0.267155,0.824784,0.273187,0.286824,0.210535,0.546067,0.885035,0.248646,0.767828,0.963742,0.622371,0.252373,0.743885,0.268548,0.76309,0.479122,0.322581,0.67312,0.893503,0.458038,0.0808098,0.579577,0.910226,0.439395,0.479827,0.241797,0.814504,0.0675179,0.325156,0.174638,0.99141,0.871963,0.168297,0.542473,0.606757,0.930349,0.139447,0.919211,0.514546,0.441163,0.733169,0.463567,0.232732,0.780806,0.562949,0.647061,0.813873,0.2427,0.139711,0.676783,0.433446,0.942231,0.496536,0.096722,0.2059,0.978791,0.783892,0.508595,0.990676,0.219627,0.685549,0.122429,0.572136,0.288979,0.172224,0.461854,0.166196,0.315445,0.475557,0.837328,0.0805729,0.598094,0.750472,0.159945,0.276504,0.458041,0.768084,0.348871,0.211934,0.621593,0.348052,0.146699,0.186,0.0313312,0.307792,0.113882,0.440762,0.873588,0.813579,0.0669814,0.207403,0.268008,0.844401,0.203659,0.642004,0.0949155,0.109988,0.211771,0.828552,0.758586,0.83891,0.240681,0.857175,0.0464056,0.483445,0.938361,0.770818,0.244161,0.24,0.794908,0.0947861,0.844561,0.620389,0.588335,0.419278,0.812752,0.966188,0.672082,0.631884,0.995645,0.138261,0.438407,0.136154,0.837368,0.452745,0.113569,0.763167,0.708433,0.369792,0.0297893,0.662959,0.539355,0.282403,0.527261,0.941403,0.248874,0.089713,0.922181,0.643761,0.122072,0.869735,0.693427,0.0969411,0.093156,0.811676,0.581817,0.460556,0.0708365,0.443074,0.403996,0.480641,0.295247,0.362767,0.509856,0.0635985,0.687063,0.443007,0.613064,0.375093,0.317782,0.630579,0.679611,0.696056,0.724522,0.160944,0.398799,0.700353,0.605229,0.988191,0.861896,0.538855,0.125378,0.793226,0.0126687,0.0489619,0.939896,0.888687,0.967938,0.413191,0.944438,0.784028,0.94327,0.415472,0.0481767,0.251906,0.850396,0.61492,0.020937,0.650678,0.951022,0.882579,0.388937,0.937657,0.123556,0.915079,0.884693,0.547619,0.170154,0.157415,0.946699,0.954406,0.920485,0.825723,0.333394,0.72022,0.834286,0.442177,0.813216,0.467359,0.915854,0.795069,0.610185,0.620044,0.797306,0.988017,0.547434,0.974931,0.453308,0.066187,0.70821,0.92628,0.41886,0.977846,0.366236,0.845081,0.0153766,0.365707,0.441941,0.912666,0.154589,0.380352,0.138249,0.597574,0.745599,0.34693,0.771876,0.877567,0.514882,0.70133,0.604652,0.45067,0.253829,0.220858,0.039197,0.893846,0.786793,0.613467,0.579081,0.0761991,0.955298,0.485629,0.535257,0.0607604,0.404218,0.945539,0.938745,0.0595614,0.216225,0.71407,0.427136,0.665764,0.776504,0.0304686,0.133712,0.517417,0.0777811,0.829232,0.239848,0.994371,0.63622,0.378052,0.594422,0.412842,0.650255,0.893038,0.810248,0.711979,0.0247815,0.853435,0.753162,0.364227,0.0234235,0.53509,0.58537,0.294612,0.771942,0.151484,0.005988,0.220249,0.616737,0.74237,0.210111,0.463568,0.850767,0.573107,0.272272,0.263359,0.890977,0.448546,0.481291,0.316211,0.317156,0.42,0.937853,0.370014,0.338266,0.119132,0.387691,0.168839,0.379544,0.892347,0.840654,0.233096,0.931184,0.521622,0.511971,0.504292,0.0611593,0.391347,0.22236,0.236593,0.437487,0.21673,0.968987,0.145683,0.376644,0.660504,0.578112,0.260983,0.813412,0.512022,0.448452,0.092306,0.374381,0.326569,0.077906,0.346778,0.942025,0.532984,0.570796,0.367387,0.28497,0.767676,0.491081,0.766735,0.395089,0.13838,0.437759,0.813634,0.498335,0.65218,0.264396,0.306633,0.699228,0.220412,0.165073,0.705102,0.757542,0.0547923,0.506904,0.589248,0.899331,0.666958,0.591332,0.379401,0.553307,0.281594,0.0968414,0.763716,0.619948,0.270847,0.884617,0.154188,0.662544,0.885457,0.385132,0.369355,0.544466,0.814887,0.179998,0.885477,0.856977,0.894995,0.451089,0.0952528,0.835847,0.28927,0.264871,0.285805,0.822514,0.0823098,0.219546,0.748011,0.222737,0.238318,0.522808,0.818616,0.335532,0.444336,0.671155,0.168928,0.345474,0.407691,0.864826,0.0740662,0.866784,0.155718,0.847634,0.652496,0.606478,0.762873,0.797794,0.484784,0.895769,0.864683,0.392882,0.657652,0.0630289,0.614575,0.074213,0.813149,0.721492,0.835492,0.559486,0.855083,0.676404,0.482807,0.484191,0.155814,0.168398,0.7726,0.61903,0.559902,0.316803,0.375876,0.0652447,0.968782,0.275912,0.533193,0.84803,0.788512,0.675369,0.85471,0.94296,0.00777978,0.920651,0.880863,0.778498,0.542851,0.910212,0.854323,0.411468,0.41346,0.803992,0.586951,0.471657,0.110115,0.505392,0.870089,0.00771165,0.365695,0.852318,0.0382337,0.56486,0.784115,0.345038,0.124393,0.406171,0.0728068,0.666217,0.744051,0.409906,0.101341,0.132767,0.501275,0.362785,0.0878857,0.465665,0.916537,0.143534,0.352864,0.150841,0.12683,0.785479,0.16303,0.535657,0.0697583,0.156396,0.892997,0.599366,0.333459,0.594157,0.779838,0.24421,0.503527,0.0832041,0.594599,0.211388,0.319014,0.000655711,0.260116,0.0765575,0.934931,0.326711,0.220855,0.918752,0.0797969,0.0115404,0.369378,0.44214,0.0140321,0.979236,0.179114,0.0889012,0.104515,0.0550676,0.974482,0.524344,0.442235,0.505391,0.624951,0.91575,0.800879,0.369371,0.0432932,0.228009,0.883878,0.641974,0.674981,0.313672,0.361076,0.213048,0.546773,0.378826,0.857846,0.667278,0.32553,0.0129724,0.978622,0.774438,0.532847,0.0541919,0.454076,0.0400115,0.730646,0.154613,0.445071,0.630504,0.357333,0.81058,0.605733,0.275108,0.625204,0.620599,0.106326,0.971538,0.61028,0.989117,0.734449,0.087198,0.0403441,0.492009,0.706205,0.263189,0.640026,0.6632,0.201196,0.819132,0.776319,0.456129,0.256882,0.445784,0.998451,0.201466,0.0455347,0.235601,0.789864,0.0410891,0.337458,0.373269,0.934465,0.889347,0.498712,0.332547,0.354692,0.962525,0.271595,0.932986,0.0730205,0.496684,0.5673,0.610463,0.619313,0.651955,0.228915,0.408836,0.318926,0.569265,0.7298,0.799846,0.229439,0.616167,0.0113819,0.5204,0.581031,0.0643171,0.393761,0.95371,0.452413,0.791366,0.728505,0.122183,0.674405,0.419295,0.442154,0.149193,0.799628,0.960768,0.0891758,0.0646088,0.814558,0.0261596,0.805654,0.512245,0.55804,0.876412,0.133514,0.914855,0.338947,0.99226,0.75571,0.0764688,0.433646,0.403913,0.913001,0.834085,0.307501,0.497762,0.636612,0.66065,0.704141,0.0585377,0.890002,0.810475,0.688559,0.0656566,0.700873,0.855813,0.0144982,0.519153,0.933725,0.627832,0.996732,0.476957,0.090117,0.78161,0.225098,0.0941966,0.22993,0.76798,0.57998,0.480163,0.939108,0.329825,0.299212,0.872771,0.146784,0.274143,0.552315,0.983939,0.0395353,0.626604,0.59663,0.870327,0.431984,0.0974082,0.434571,0.518182,0.904635,0.547298,0.722874,0.602038,0.572882,0.336984,0.989243,0.731176,0.311898,0.26386,0.810309,0.426446,0.80168,0.346358,0.362258,0.657603,0.822699,0.450778,0.581668,0.0769473,0.612286,0.955642,0.122704,0.168961,0.461256,0.150434,0.378174,0.175388,0.0671065,0.110852,0.10577,0.583817,0.120372,0.748967,0.174459,0.158419,0.895937,0.976987,0.273776,0.352911,0.214963,0.729129,0.919415,0.0371132,0.336619,0.224691,0.0433187,0.998323,0.427287,0.0570396,0.778765,0.223539,0.327031,0.570103,0.128961,0.125468,0.12885,0.191715,0.81136,0.331122,0.905203,0.216233,0.902891,0.955907,0.678657,|0.923274,0.161016,0.523494,0.273293,0.314327,0.0210699,0.299483,0.748776,0.388152,0.0149284,0.383985,0.277743,0.553528,0.180591,0.356952,0.455249,0.0065906,0.495142,0.883965,0.650671,0.455473,0.449107,0.676584,0.0249832,0.336444,0.121581,0.85317,0.873169,0.705617,0.752877,0.571175,0.707401,0.728372,0.0251642,0.388873,0.991304,0.868372,0.514857,0.532636,0.304322,0.697049,0.0906351,0.844376,0.345986,0.0592522,0.63759,0.0214337,0.692696,0.308854,0.542479,0.519714,0.137037,0.160986,0.689011,0.890341,0.464488,0.845179,0.917655,0.064861,0.035885,0.224623,0.100362,0.352551,0.670467,0.851291,0.322839,0.00262296,0.641092,0.0470091,0.703864,0.768617,0.0816506,0.718085,0.480705,0.810726,0.832051,0.635687,0.384827,0.169578,0.298104,0.573637,0.63719,0.195247,0.925484,0.883347,0.726382,0.247612,0.638845,0.591706,0.331197,0.767419,0.759929,0.419735,0.796966,0.70771,0.484079,0.132611,0.517287,0.713124,0.986592,0.728651,0.50328,0.216194,0.691682,0.250024,0.00725085,0.254211,0.572883,0.760817,0.885144,0.993021,0.723754,0.479261,0.0111813,0.445577,0.985447,0.365264,0.845659,0.0571601,0.399476,0.755109,0.535284,0.527158,0.652399,0.943957,0.868757,0.17493,0.832361,0.892464,0.894409,0.505666,0.500636,0.226595,0.741408,0.27455,0.169915,0.0441441,0.269926,0.125046,0.222816,0.981599,0.797979,0.651769,0.260487,0.00381953,0.901062,0.437137,0.437112,0.276322,0.26508,0.743067,0.419792,0.480357,0.522617,0.0147483,0.471416,0.980683,0.019177,0.253595,0.777625,0.0978688,0.834191,0.400918,0.22165,0.416426,0.0167081,0.997244,0.863533,0.972255,0.321085,0.91604,0.0110288,0.161099,0.0096159,0.191964,0.430452,0.424782,0.505125,0.924124,0.458685,0.124049,0.765209,0.45757,0.199456,0.979053,0.0988232,0.980017,0.280201,0.286866,0.485697,0.270417,0.126439,0.651755,0.229166,0.572646,0.64336,0.400163,0.187838,0.313857,0.273618,0.435509,0.696912,0.18394,0.374656,0.800811,0.517758,0.257916,0.218038,0.00130892,0.823478,0.0513303,0.384321,0.983148,0.483686,0.32944,0.182757,0.0290449,0.645101,0.479009,0.0875058,0.958936,0.56366,0.576848,0.863139,0.935889,0.0596362,0.956081,0.0189606,0.36224,0.425036,0.429703,0.0453274,0.312468,0.117969,0.531643,0.935866,0.315888,0.564164,0.891176,0.610479,0.898671,0.365667,0.124257,0.650849,0.861816,0.870904,0.183296,0.104638,0.824331,0.446129,0.688926,0.969515,0.217621,0.271144,0.713527,0.747113,0.487489,0.777368,0.788983,0.582437,0.870187,0.204979,0.405085,0.461062,0.197896,0.588231,0.213816,0.46997,0.120333,0.180446,0.200861,0.862277,0.187478,0.809808,0.284723,0.398185,0.553154,0.147446,0.923707,0.618933,0.592344,0.529496,0.189551,0.294824,0.94197,0.672445,0.508253,0.265226,0.260344,0.934048,0.458047,0.280908,0.898499,0.0476182,0.554433,0.00537157,0.95501,0.544073,0.613154,0.946393,0.642418,0.344357,0.291648,0.832765,0.0596099,0.635352,0.44672,0.0601688,0.991861,0.864716,0.137658,0.274321,0.504047,0.527588,0.30987,0.477799,0.410795,0.257369,0.157697,0.902339,0.988222,0.0914924,0.0391724,0.764371,0.0939565,0.880547,0.277352,0.616621,0.753092,0.497759,0.709776,0.90744,0.430921,0.18493,0.458434,0.646906,0.0755814,0.464726,0.845049,0.0683181,0.243673,0.102806,0.733551,0.642643,0.106236,0.372755,0.994632,0.0343145,0.930425,0.998813,0.954668,0.839046,0.436099,0.162071,0.649605,0.348867,0.637494,0.351658,0.664003,0.784877,0.300818,0.00865006,0.277586,0.64867,0.623811,0.778319,0.457884,0.419631,0.371451,0.717112,0.783509,0.150064,0.780423,0.250195,0.830784,0.419791,0.0739638,0.0653435,0.302958,0.42754,0.415366,0.103433,0.750201,0.995716,0.900562,0.16891,0.12909,0.646122,0.326932,0.586174,0.375072,0.137571,0.447343,0.77574,0.331298,0.160789,0.0625167,0.98387,0.449041,0.792146,0.835008,0.195231,0.30147,0.455671,0.796216,0.341751,0.52269,0.645391,0.64854,0.134905,0.340089,0.134976,0.953395,0.182085,0.576005,0.92341,0.15464,0.9414,0.0337987,0.859891,0.902647,0.549212,0.850104,0.216314,0.113058,0.249633,0.377129,0.688328,0.67045,0.512506,0.55588,0.337288,0.638489,0.346863,0.948463,0.429935,0.061868,0.541142,0.511171,0.694098,0.114888,0.713885,0.66765,0.877152,0.0986136,0.921333,0.405371,0.570329,0.228507,0.868603,0.884467,0.226158,0.193842,0.812765,0.904405,0.604476,0.15271,0.694558,0.625978,0.924239,0.0886974,0.598722,0.339752,0.733713,0.546268,0.849905,0.56844,0.126266,0.191209,0.28974,0.0220613,0.550419,0.920901,0.537963,0.779663,0.050973,0.320084,0.661497,0.290656,0.116287,0.669817,0.564766,0.198719,0.241113,0.815522,0.139729,0.920456,0.373214,0.579241,0.624928,0.39172,0.34604,0.00304419,0.724557,0.170905,0.0908458,0.528921,0.334436,0.0203029,0.595794,0.821141,0.678852,0.363578,0.388198,0.625271,0.960453,0.174109,0.702672,0.519851,0.0426511,0.23203,0.908189,0.0328279,0.0317487,0.798603,0.15579,0.643538,0.487277,0.631647,0.604897,0.762564,0.815439,0.477745,0.497248,0.941718,0.191271,0.321526,0.798715,0.677636,0.892677,0.997189,0.317852,0.226041,0.278579,0.685936,0.134517,0.852516,0.798424,0.119323,0.0558744,0.963411,0.444587,0.519325,0.756627,0.756449,0.994606,0.434026,0.42201,0.0241333,0.555646,0.276564,0.319655,0.322996,0.182885,0.833223,0.213784,0.0963992,0.333824,0.416295,0.1149,0.503626,0.605962,0.830995,0.711378,0.726506,0.10419,0.445296,0.248018,0.512275,0.604344,0.0297188,0.392082,0.864403,0.128935,0.225493,0.036736,0.823352,0.64847,0.425555,0.553826,0.0114407,0.225267,0.332102,0.116966,0.0610018,0.443496,0.581944,0.572471,0.456156,0.616841,0.0749738,0.195121,0.853595,0.25764,0.670468,0.622943,0.355341,0.97926,0.771728,0.992983,0.344774,0.366557,0.0271945,0.229207,0.548381,0.87109,0.630358,0.144324,0.960928,0.572341,0.626361,0.534232,0.0374808,0.256076,0.772296,0.832191,0.668034,0.888818,0.357909,0.773349,0.531272,0.155692,0.375089,0.229442,0.0433669,0.0576116,0.769635,0.737806,0.858642,0.61732,0.540697,0.91031,0.792625,0.130766,0.567296,0.822963,0.0210795,0.238947,0.733118,0.477912,0.311226,0.735214,0.676679,0.556017,0.55906,0.835582,0.929955,0.272469,0.813452,0.157788,0.708198,0.711125,0.916317,0.342385,0.102433,0.355974,0.521592,0.345715,0.382295,0.920514,0.362228,0.222345,0.934908,0.841159,0.0971401,0.324071,0.732691,0.662971,0.394347,0.349108,0.710261,0.846458,0.732654,0.937079,0.738043,0.222202,0.885222,0.252074,0.443494,0.867789,0.0850157,0.521305,0.568987,0.128052,0.522217,0.126725,0.948615,0.19995,0.102333,0.249503,0.0631465,0.384687,0.6614,0.00641382,0.101913,0.700483,0.471948,0.531126,0.853109,0.0338887,0.687874,0.0795408,0.693357,0.178307,0.721857,0.122418,0.846835,0.287513,0.675528,0.0430959,0.834636,0.963525,0.483824,0.662464,0.210164,0.803123,0.898771,0.0541796,0.531822,0.32553,0.0834494,0.792342,0.982512,0.320672,0.229247,0.440839,0.917451,0.664552,0.620949,0.761973,0.0291808,0.26453,0.243887,0.481754,0.580781,0.404859,0.908973,0.831454,0.411967,0.0943636,0.767253,0.646754,0.0329761,0.85076,0.708981,0.344987,0.492812,0.720905,0.277744,0.512225,0.849092,0.108219,0.806673,0.186682,0.264469,0.287374,0.647761,0.720619,0.0860772,0.0508378,0.791889,0.0673581,0.447496,0.170477,0.892865,0.825886,0.8311,0.886151,0.43928,0.876025,0.315434,0.24447,0.334638,0.763168,0.58153,0.867511,0.260324,0.690117,0.0616101,0.710353,0.107061,0.860845,0.875062,0.610522,0.545093,0.735914,0.422161,0.714499,0.586604,0.274053,0.382992,0.290817,0.879108,0.530721,0.632565,0.543999,0.602392,0.446578,0.719708,0.727614,0.00567245,0.649325,0.985849,0.421393,0.525628,0.131869,0.0774385,0.459228,0.602305,0.996551,0.25613,0.90985,0.765463,0.473711,0.76311,0.897096,0.702857,0.346303,0.211749,0.652579,0.117647,0.78118,0.917883,0.706741,0.0681524,0.76066,0.439473,0.993189,0.579352,0.698837,0.947879,0.180433,0.12003,0.371774,0.721206,0.123336,0.685451,0.441757,0.821274,0.597639,0.27031,0.93041,0.752656,0.0524154,0.252511,0.872576,0.812236,0.715193,0.202531,0.977036,0.762356,0.595573,0.96592,0.45714,0.0275149,0.88431,0.0243956,0.179976,0.347245,0.407701,0.508785,0.676796,0.0822979,0.692198,0.92363,0.0697667,0.189906,0.302573,0.196648,0.197403,0.493582,0.268777,0.372393,0.968357,0.552847,0.231846,0.212859,0.088611,0.264878,0.697094,0.292829,0.0371541,0.530885,0.426934,0.00709665,0.36064,0.0542017,0.915232,0.268064,0.664481,0.77341,0.181726,0.538353,0.145352,0.374331,0.192101,0.143814,0.74796,0.13444,0.637365,0.908688,0.640416,0.379719,0.340742,0.814176,0.393194,0.0831258,0.36027,0.64486,0.997232,0.186564,0.871603,0.700647,0.32144,0.421045,0.81014,0.777285,0.716172,0.933689,0.892152,0.498283,0.916066,0.409602,0.604988,0.679294,0.0738379,0.100637,0.421143,0.255727,0.444361,0.797293,0.256123,0.977,0.36705,0.799224,0.105727,0.00647205,0.410409,0.210338,0.564475,0.296105,0.937305,0.495141,0.973316,0.744047,0.334114,0.422875,0.968829,0.191101,0.62227,0.53364,0.972765,0.947298,0.550762,0.444463,0.903534,0.697473,0.895923,0.0983211,0.710771,0.621497,0.18556,0.140857,0.487631,0.592314,0.528745,0.0242267,0.733764,0.0740329,0.00619644,0.729608,0.19592,0.0406393,0.0906124,0.559772,0.0403403,0.846258,0.571636,0.19083,0.195852,0.397892,0.198696,0.61365,0.889513,0.593204,0.0783783,0.792818,0.324745,0.195561,0.708542,0.185724,0.115348,0.359026,0.967108,0.693064,0.550062,0.982821,0.491733,0.95849,0.564162,|0.166745,0.983473,0.190366,0.152541,0.238782,0.790746,0.517619,0.593073,0.368307,0.727873,0.896322,0.659766,0.143346,0.876136,0.387147,0.0169057,0.590853,0.609652,0.112901,0.366108,0.122644,0.418127,0.0692299,0.773976,0.456885,0.141142,0.162715,0.743855,0.30649,0.0663659,0.957218,0.378092,0.752339,0.163596,0.662337,0.502155,0.366109,0.173683,0.917945,0.698713,0.778336,0.62051,0.638459,0.897551,0.784881,0.381102,0.745921,0.971442,0.44341,0.445333,0.653075,0.314456,0.889743,0.412207,0.896588,0.212434,0.968861,0.134216,0.428091,0.459175,0.137831,0.262007,0.821089,0.272225,0.0224088,0.282844,0.953916,0.112459,0.580605,0.985341,0.778081,0.866715,0.939443,0.430569,0.466021,0.618748,0.0992982,0.790864,0.0459259,0.953861,0.226891,0.0980387,0.198648,0.225298,0.328939,0.113049,0.00436687,0.311158,0.274278,0.696831,0.296971,0.02686,0.750022,0.414486,0.952854,0.827061,0.700821,0.0713868,0.426252,0.279401,0.919434,0.889669,0.356621,0.474119,0.479304,0.570311,0.417948,0.607721,0.562483,0.643282,0.278055,0.910479,0.104551,0.24741,0.609692,0.769125,0.977203,0.867997,0.375368,0.259341,0.473717,0.95002,0.310998,0.484682,0.121277,0.0021928,0.47211,0.100346,0.513919,0.970493,0.283807,0.520592,0.16554,0.333197,0.402298,0.655344,0.415588,0.945249,0.811066,0.781682,0.899046,0.364768,0.0945964,0.785143,0.264367,0.913659,0.691871,0.678686,0.444389,0.780807,0.521595,0.771172,0.723948,0.589476,0.899662,0.648334,0.485864,0.599026,0.801999,0.302994,0.609956,0.567995,0.546977,0.264813,0.089064,0.693458,0.382004,0.931858,0.714746,0.482981,0.580554,0.255483,0.808108,0.093006,0.349479,0.940151,0.076309,0.314697,0.158994,0.598283,0.225096,0.497404,0.613347,0.170856,0.413229,0.21183,0.388819,0.853955,0.69136,0.56319,0.180008,0.734827,0.462552,0.597648,0.0705576,0.635481,0.839378,0.268381,0.767117,0.443171,0.998744,0.962317,0.649576,0.0541803,0.896513,0.162469,0.0041796,0.174334,0.477361,0.506445,0.702136,0.419786,0.549868,0.622743,0.0853043,0.231194,0.437351,0.563084,0.994167,0.640995,0.65422,0.325219,0.96886,0.80931,0.514321,0.249021,0.170472,0.837587,0.615138,0.948737,0.248892,0.486614,0.947005,0.748255,0.109829,0.56056,0.0299074,0.345944,0.252182,0.252891,0.549111,0.181681,0.599733,0.90299,0.87717,0.261281,0.828303,0.388842,0.946283,0.793587,0.321203,0.923852,0.139843,0.192842,0.125912,0.123575,0.399817,0.00512832,0.948299,0.0229083,0.271881,0.492333,0.26433,0.271595,0.23887,0.549707,0.228932,0.885476,0.978323,0.747767,0.307888,0.971308,0.647437,0.115973,0.385244,0.0253839,0.529111,0.291846,0.465286,0.193986,0.994451,0.754699,0.883363,0.393191,0.0801787,0.348784,0.804693,0.885687,0.89319,0.236572,0.719144,0.857202,0.653524,0.971848,0.921048,0.987005,0.498764,0.463313,0.445109,0.444343,0.448218,0.579806,0.592027,0.991566,0.11652,0.642207,0.267244,0.960568,0.65498,0.33229,0.290452,0.862611,0.591434,0.209096,0.457905,0.0180933,0.288558,0.130734,0.786963,0.258813,0.972555,0.557874,0.672921,0.138502,0.0630991,0.850598,0.99383,0.748348,0.280423,0.716597,0.351819,0.940038,0.16992,0.329105,0.226888,0.254441,0.677273,0.837485,0.100373,0.718837,0.747384,0.144272,0.275066,0.577992,0.913202,0.760735,0.397016,0.877418,0.281434,0.719262,0.902853,0.0747267,0.826789,0.245637,0.631192,0.867393,0.284649,0.53786,0.978702,0.143787,0.608823,0.662633,0.0929804,0.0967981,0.0237809,0.76665,0.647784,0.809457,0.62913,0.523011,0.0777414,0.355565,0.795178,0.554177,0.416205,0.373927,0.241727,0.0143057,0.335381,0.796888,0.289176,0.230409,0.0719146,0.219142,0.551251,0.978253,0.812477,0.854237,0.714995,0.578621,0.652716,0.184294,0.630932,0.842079,0.983592,0.574093,0.268349,0.391632,0.860731,0.439772,0.210328,0.958514,0.412803,0.149679,0.739679,0.413263,0.337062,0.845026,0.75136,0.58502,0.428694,0.919326,0.289375,0.509619,0.686735,0.89576,0.779616,0.662114,0.558291,0.0113838,0.0519664,0.266018,0.707628,0.403354,0.054774,0.0802482,0.653644,0.964989,0.914301,0.410069,0.850732,0.134778,0.139726,0.955459,0.107731,0.782892,0.605544,0.352771,0.676472,0.701439,0.859505,0.435489,0.11439,0.0864723,0.0296579,0.146264,0.285797,0.917119,0.284944,0.196909,0.498194,0.339531,0.410835,0.234862,0.574617,0.87271,0.399641,0.374818,0.496918,0.0426351,0.544225,0.746283,0.939655,0.452767,0.912693,0.909409,0.108405,0.792078,0.512378,0.377715,0.452526,0.603823,0.410775,0.659471,0.419378,0.601501,0.0674378,0.848916,0.655329,0.618147,0.966677,0.233746,0.48801,0.706452,0.0681781,0.735901,0.650742,0.575006,0.700777,0.678523,0.989242,0.976554,0.357416,0.67969,0.644966,0.381867,0.776073,0.580944,0.359185,0.499354,0.402836,0.374743,0.641454,0.170455,0.510931,0.152875,0.717564,0.190822,0.932304,0.97748,0.901369,0.730779,0.934033,0.153836,0.774032,0.982643,0.63211,0.59573,0.845297,0.557766,0.689254,0.484999,0.578835,0.872877,0.758471,0.419605,0.00972074,0.521766,0.305059,0.293581,0.402107,0.961666,0.605947,0.0113006,0.342269,0.615013,0.926605,0.051238,0.410146,0.901376,0.18458,0.769886,0.943095,0.658698,0.867234,0.338383,0.947506,0.325574,0.94085,0.807074,0.0273223,0.620705,0.821056,0.616326,0.899159,0.728484,0.328394,0.275282,0.686155,0.737701,0.443385,0.2923,0.571843,0.515039,0.468005,0.0883905,0.348377,0.130107,0.843762,0.453026,0.624636,0.377681,0.0357378,0.937538,0.671928,0.418696,0.59579,0.238758,0.107837,0.661628,0.349394,0.211468,0.68331,0.899712,0.828523,0.926414,0.481987,0.721033,0.012907,0.393647,0.558567,0.405105,0.706099,0.788635,0.859924,0.484004,0.767649,0.603199,0.670631,0.97859,0.790569,0.973783,0.809251,0.889406,0.616969,0.0441352,0.199585,0.0491682,0.409092,0.492816,0.219863,0.42141,0.223749,0.158247,0.0598304,0.0587004,0.161045,0.882466,0.603382,0.821814,0.142303,0.113207,0.103805,0.676513,0.319646,0.200011,0.518898,0.523692,0.9141,0.801625,0.830809,0.696947,0.373697,0.939093,0.816987,0.361642,0.964193,0.0153808,0.592071,0.895378,0.591498,0.571002,0.829288,0.507042,0.356519,0.663982,0.891101,0.352188,0.975795,0.0776256,0.106266,0.939486,0.930778,0.308853,0.178603,0.997949,0.0705592,0.95656,0.477623,0.00939506,0.675333,0.0808291,0.646322,0.281481,0.997028,0.290353,0.868678,0.0218445,0.770342,0.0508428,0.420003,0.70747,0.337716,0.4041,0.759509,0.818249,0.778167,0.0408405,0.0911877,0.706684,0.152688,0.0325335,0.156608,0.362229,0.441648,0.968543,0.71905,0.269143,0.949563,0.0243299,0.577966,0.939943,0.135111,0.782519,0.406922,0.661451,0.307771,0.726185,0.97421,0.301802,0.609811,0.0946262,0.915691,0.194784,0.667448,0.895169,0.890751,0.0213108,0.942369,0.789832,0.95359,0.165664,0.733015,0.830909,0.0813516,0.34783,0.745021,0.789177,0.24309,0.829411,0.292012,0.871423,0.657678,0.521428,0.770412,0.117474,0.599489,0.817017,0.408312,0.00286549,0.268038,0.809104,0.288679,0.510285,0.724444,0.00895709,0.36192,0.774125,0.878704,0.175563,0.576344,0.0344743,0.219058,0.67788,0.598301,0.782809,0.556208,0.634105,0.338037,0.97691,0.738976,0.622043,0.895577,0.386307,0.565396,0.00285095,0.539167,0.70908,0.157706,0.204296,0.535174,0.266675,0.139364,0.71879,0.815812,0.648683,0.920265,0.458717,0.32193,0.271653,0.880727,0.65575,0.381293,0.0588737,0.477442,0.793203,0.561985,0.0910288,0.968032,0.0910389,0.236946,0.970583,0.87433,0.334368,0.518363,0.0350484,0.123774,0.0512937,0.10022,0.901994,0.0639665,0.101631,0.770049,0.597222,0.507527,0.361512,0.046836,0.446656,0.826178,0.517605,0.210355,0.947999,0.170473,0.0853453,0.615626,0.349362,0.993891,0.274429,0.767394,0.470116,0.39035,0.188445,0.185712,0.301978,0.920022,0.519479,0.155349,0.721186,0.734434,0.179381,0.788597,0.709138,0.202127,0.915311,0.496491,0.37451,0.837636,0.359218,0.873552,0.0609387,0.384942,0.0213905,0.0312318,0.575223,0.692457,0.937541,0.768072,0.642023,0.871985,0.353417,0.354477,0.558071,0.463017,0.242156,0.176284,0.0660312,0.180761,0.941768,0.0235393,0.663619,0.729086,0.457303,0.109507,0.597254,0.629031,0.226858,0.733287,0.205055,0.334633,0.23445,0.936247,0.596939,0.941551,0.925833,0.486879,0.139428,0.824894,0.122065,0.390324,0.717941,0.645352,0.532229,0.810186,0.793106,0.393253,0.0955534,0.0684951,0.623954,0.325787,0.392701,0.153016,0.0843128,0.287673,0.90868,0.628485,0.275632,0.825915,0.0205515,0.633434,0.502681,0.0416356,0.424241,0.396608,0.599504,0.539753,0.0252912,0.368183,0.211768,0.864906,0.838751,0.351066,0.0588854,0.473317,0.807504,0.0543542,0.267352,0.528454,0.126801,0.753314,0.411509,0.112691,0.991274,0.133521,0.35579,0.530287,0.0975389,0.422817,0.294512,0.934926,0.921574,0.861051,0.726599,0.0653672,0.25516,0.769688,0.76278,0.942157,0.391855,0.670155,0.157634,0.989627,0.399058,0.96389,0.741625,0.973784,0.786962,0.408053,0.637957,0.0567698,0.311812,0.198797,0.734697,0.537732,0.603339,0.415126,0.0240052,0.298052,0.100523,0.44731,0.50011,0.419099,0.986583,0.43202,0.943553,0.124375,0.516982,0.298781,0.824978,0.20889,0.948932,0.342046,0.801392,0.52962,0.197231,0.157992,0.297475,0.383154,0.128528,0.356053,0.488898,0.974137,0.596986,0.48382,0.508069,0.996319,0.57643,0.312957,0.665414,0.574866,0.861926,0.192484,0.477064,0.853316,0.47975,0.66612,0.0681365,0.111694,0.688824,0.452239,0.616238,0.311948,0.157617,0.504015,0.764987,0.507212,0.569244,0.000561774,0.856797,0.323837,0.878641,|0.668055,0.42563,0.177809,0.0653769,0.722497,0.494665,0.306727,0.944178,0.0708761,0.322019,0.487422,0.739428,0.223776,0.853712,0.0987053,0.0675949,0.0817044,0.908992,0.166543,0.136366,0.820057,0.669192,0.209161,0.286618,0.244638,0.204534,0.378789,0.839773,0.664166,0.0345302,0.243364,0.151693,0.74546,0.364432,0.537259,0.705884,0.843774,0.203081,0.0206721,0.88172,0.866554,0.630673,0.354886,0.795658,0.146119,0.947514,0.783994,0.1344,0.60783,0.811041,0.39464,0.74166,0.00444007,0.829061,0.649604,0.645661,0.256966,0.410782,0.818699,0.347978,0.253438,0.0656393,0.969451,0.802383,0.556728,0.985972,0.399613,0.331343,0.269542,0.676861,0.874891,0.96136,0.54573,0.757887,0.815482,0.185771,0.168167,0.306716,0.376237,0.217035,0.0234435,0.355885,0.00589961,0.549855,0.622117,0.561277,0.481283,0.218001,0.821779,0.576964,0.846658,0.405583,0.118085,0.694692,0.204567,0.0783245,0.97096,0.942775,0.886276,0.78673,0.827242,0.449334,0.176434,0.723353,0.706657,0.0200993,0.204933,0.240992,0.597426,0.380336,0.25699,0.937846,0.545916,0.843895,0.109824,0.60227,0.756561,0.420719,0.530184,0.658784,0.308611,0.777285,0.0222624,0.414927,0.796667,0.384879,0.959204,0.958811,0.474756,0.061784,0.35395,0.85199,0.835042,0.417956,0.762473,0.643608,0.14927,0.488588,0.942234,0.671563,0.243507,0.415837,0.869758,0.992118,0.810198,0.00804061,0.862026,0.453202,0.951112,0.341625,0.729861,0.875839,0.108123,0.129809,0.306182,0.169399,0.450278,0.824162,0.771199,0.700151,0.155212,0.253983,0.690298,0.765457,0.599422,0.0367599,0.230574,0.0422791,0.136942,0.88992,0.999663,0.0392085,0.230754,0.265381,0.144113,0.437333,0.214291,0.271561,0.572469,0.606585,0.924967,0.28205,0.189399,0.689801,0.186029,0.695664,0.935223,0.106897,0.733158,0.570421,0.0158209,0.389956,0.176487,0.761519,0.103919,0.98031,0.627201,0.29274,0.132798,0.59206,0.75576,0.892844,0.404069,0.982515,0.38973,0.0293267,0.350461,0.0800877,0.797632,0.907964,0.763016,0.105692,0.614958,0.754355,0.175248,0.817163,0.329461,0.0587242,0.821642,0.642267,0.713383,0.199911,0.627296,0.0943511,0.791016,0.781988,0.118018,0.940663,0.64643,0.981349,0.470354,0.705036,0.521065,0.904354,0.305966,0.313098,0.788492,0.183706,0.663981,0.399611,0.202719,0.772565,0.33187,0.0534124,0.442455,0.732034,0.394781,0.196113,0.104817,0.719121,0.749655,0.905223,0.997304,0.74859,0.683752,0.229024,0.478532,0.61086,0.428725,0.343763,0.633868,0.797642,0.312251,0.598209,0.349571,0.721394,0.0821405,0.342309,0.419325,0.355897,0.414611,0.607527,0.943856,0.641052,0.764012,0.472845,0.780578,0.475387,0.764753,0.897572,0.930947,0.296217,0.558194,0.927326,0.750004,0.0692039,0.854609,0.893652,0.892707,0.934313,0.541999,0.0672238,0.558592,0.272578,0.0334832,0.915818,0.817317,0.101771,0.234399,0.246861,0.137057,0.549212,0.596812,0.171119,0.609967,0.168973,0.532673,0.728564,0.509734,0.890398,0.615746,0.75556,0.917381,0.0882109,0.787057,0.881815,0.388971,0.373745,0.128275,0.12472,0.674327,0.8592,0.368908,0.659958,0.53493,0.944857,0.540814,0.134624,0.864325,0.976282,0.397331,0.0171643,0.791919,0.365741,0.510891,0.796337,0.408689,0.271447,0.78668,0.918531,0.802203,0.323701,0.678102,0.263745,0.691945,0.869978,0.180635,0.545771,0.215626,0.0773178,0.0125577,0.142753,0.432122,0.868872,0.139037,0.482418,0.774483,0.942785,0.569368,0.881943,0.000877798,0.636748,0.132606,0.0184074,0.508465,0.777853,0.639182,0.304138,0.561486,0.576486,0.807389,0.318791,0.659565,0.0393215,0.601352,0.735922,0.121983,0.861375,0.201526,0.564809,0.695959,0.131376,0.416471,0.4838,0.2074,0.258518,0.460323,0.29768,0.625427,0.577213,0.80489,0.393683,0.340082,0.986439,0.00152647,0.562489,0.283397,0.350444,0.0198004,0.0245119,0.320055,0.209856,0.624791,0.0774481,0.358686,0.848873,0.806937,0.443398,0.481958,0.291625,0.555185,0.975198,0.282741,0.30303,0.346717,0.322315,0.0646967,0.217235,0.456519,0.418776,0.529996,0.0177847,0.518664,0.2334,0.646687,0.51218,0.773869,0.490418,0.642532,0.756255,0.672033,0.186224,0.756315,0.773306,0.0746162,0.399698,0.235003,0.919891,0.585586,0.811377,0.668884,0.00286549,0.423594,0.539064,0.379698,0.453097,0.671742,0.640496,0.651979,0.548389,0.345882,0.694514,0.453085,0.510602,0.576173,0.827921,0.819879,0.599969,0.123637,0.34362,0.0546953,0.294676,0.416284,0.154646,0.607426,0.648231,0.269521,0.994829,0.872765,0.734487,0.203775,0.945779,0.822923,0.554307,0.828975,0.980256,0.47441,0.139593,0.31546,0.295755,0.00442475,0.492408,0.381669,0.949398,0.227834,0.984452,0.143403,0.0705121,0.578929,0.787229,0.655395,0.791164,0.548722,0.102484,0.580337,0.516077,0.58161,0.866425,0.59844,0.653714,0.432639,0.166168,0.917502,0.953101,0.354153,0.812981,0.0576106,0.304077,0.0773129,0.949345,0.972258,0.550365,0.903237,0.0435232,0.935225,0.138123,0.761322,0.314771,0.9399,0.0904632,0.744358,0.71615,0.975546,0.631923,0.0500343,0.705392,0.976105,0.426412,0.052786,0.206083,0.528771,0.128542,0.465893,0.373386,0.571098,0.484173,0.866662,0.798984,0.0544019,0.513213,0.139586,0.858999,0.912188,0.250884,0.592981,0.404432,0.825543,0.159652,0.755606,0.447849,0.257446,0.771018,0.0466664,0.12553,0.0857002,0.441366,0.752624,0.718158,0.89677,0.417103,0.645906,0.0341086,0.714974,0.763187,0.235483,0.220683,0.595288,0.785623,0.867269,0.0237147,0.207169,0.157281,0.398378,0.758402,0.27583,0.887422,0.343472,0.42604,0.580327,0.217802,0.466431,0.82788,0.603276,0.544731,0.634251,0.453721,0.157238,0.250919,0.245155,0.904805,0.711976,0.790851,0.887836,0.0189093,0.531706,0.601745,0.611269,0.0410612,0.429674,0.654619,0.805353,0.0382187,0.587878,0.321844,0.184142,0.406995,0.155192,0.627702,0.407221,0.609809,0.973582,0.0915061,0.690344,0.82234,0.41931,0.129983,0.028801,0.505025,0.38441,0.464228,0.396383,0.437086,0.507866,0.305395,0.311981,0.409551,0.75216,0.937049,0.438515,0.543996,0.0162798,0.197343,0.938647,0.74363,0.69991,0.132189,0.0564551,0.912157,0.535793,0.296529,0.274844,0.998787,0.649175,0.402768,0.103505,0.800122,0.0659953,0.850227,0.0914888,0.802557,0.97106,0.462641,0.40124,0.889146,0.00328249,0.158724,0.220093,0.968108,0.264192,0.824328,0.765677,0.113686,0.436919,0.549075,0.0515861,0.339955,0.574709,0.313408,0.219344,0.152615,0.293466,0.181621,0.186638,0.959224,0.307519,0.744828,0.896299,0.563203,0.574661,0.993235,0.507341,0.284452,0.986287,0.891214,0.665927,0.507738,0.719654,0.662012,0.248892,0.106259,0.57721,0.574599,0.735626,0.369772,0.927225,0.748327,0.906258,0.953161,0.483294,0.322966,0.543894,0.391093,0.521377,0.7871,0.0293092,0.134051,0.497296,0.736159,0.477429,0.125013,0.59088,0.950031,0.195602,0.510793,0.969721,0.0262722,0.0112696,0.873542,0.0542356,0.987816,0.76642,0.134393,0.748449,0.854437,0.259665,0.686284,0.309989,0.533994,0.798519,0.822532,0.423347,0.529678,0.553113,0.164039,0.579063,0.0247178,0.17911,0.154138,0.733734,0.258614,0.446256,0.637501,0.261699,0.637296,0.633339,0.292642,0.92625,0.185882,0.220865,0.0508968,0.587294,0.606179,0.929728,0.874231,0.81302,0.137227,0.788471,0.338365,0.975374,0.673058,0.268259,0.429579,0.545318,0.734241,0.150481,0.274158,0.141558,0.0510955,0.136739,0.124519,0.0587959,0.951447,0.486625,0.047752,0.0587227,0.0563235,0.192753,0.960894,0.73996,0.836683,0.260486,0.301523,0.10124,0.791596,0.0643793,0.0688112,0.527922,0.236505,0.343096,0.212822,0.590025,0.698369,0.550402,0.341251,0.125414,0.626207,0.868408,0.900474,0.0193515,0.0706543,0.0364849,0.125407,0.763448,0.26219,0.918469,0.318676,0.237173,0.887314,0.0996754,0.00750864,0.969696,0.558621,0.707371,0.278262,0.955907,0.406088,0.0368078,0.0526901,0.251744,0.85645,0.684739,0.458349,0.471812,0.997272,0.158498,0.11875,0.647629,0.564142,0.708201,0.617197,0.848649,0.434562,0.201992,0.593349,0.128909,0.149229,0.806601,0.961096,0.35602,0.839599,0.202843,0.688736,0.0235496,0.478827,0.0326449,0.395876,0.698067,0.10494,0.388586,0.796277,0.00523746,0.325735,0.102623,0.785381,0.35797,0.121587,0.537212,0.328035,0.814626,0.802,0.273566,0.313217,0.28967,0.0848397,0.507505,0.376979,0.263681,0.870386,0.21053,0.438984,0.210284,0.874148,0.621724,0.0174763,0.297952,0.604795,0.174702,0.594138,0.990084,0.384916,0.646474,0.818803,0.308062,0.5028,0.521913,0.224663,0.0593621,0.0224031,0.334122,0.422302,0.961915,0.520017,0.515174,0.661912,0.501217,0.836499,0.248211,0.914512,0.36699,0.612288,0.599583,0.184068,0.182046,0.335255,0.541032,0.0903226,0.942577,0.24702,0.395839,0.433727,0.375899,0.28035,0.984539,0.331226,0.554231,0.576261,0.775997,0.608738,0.768244,0.806145,0.578231,0.580365,0.612625,0.365276,0.0745658,0.477112,0.0362371,0.12145,0.758482,0.713484,0.604495,0.0123579,0.310268,0.390929,0.386243,0.20161,0.0738166,0.703611,0.688866,0.90269,0.29999,0.272238,0.799534,0.591479,0.767175,0.811294,0.622763,0.0133743,0.293555,0.801792,0.0445425,0.0551826,0.861357,0.783218,0.573798,0.0895249,0.373038,0.707241,0.294533,0.698202,0.0982776,0.0972942,0.0849286,0.268274,0.18534,0.487096,0.443117,0.856892,0.983476,0.493193,0.297903,0.510861,0.743521,0.198787,0.461456,0.6528,0.733589,0.654926,0.0755587,0.630154,0.358238,0.702705,0.387305,0.027531,0.0771277,0.25322,0.678342,0.621008,0.43198,0.895098,0.204224,0.406107,0.591789,0.368325,0.694198,0.62361,0.69204,0.828827,0.138809,0.727488,|0.560988,0.863214,0.031894,0.449834,0.949749,0.804066,0.0452872,0.625332,0.354477,0.837653,0.885929,0.426117,0.321393,0.406539,0.797599,0.587183,0.366048,0.455115,0.754135,0.84317,0.728594,0.506748,0.457882,0.809642,0.477224,0.840703,0.810702,0.603446,0.55089,0.728001,0.196257,0.953976,0.398334,0.97849,0.582543,0.0601873,0.472589,0.736758,0.272725,0.990956,0.792234,0.317019,0.432411,0.933706,0.984329,0.705548,0.396788,0.134098,0.608358,0.810528,0.984349,0.682795,0.137911,0.519915,0.679532,0.0197205,0.241135,0.614113,0.369833,0.0524616,0.143334,0.763423,0.529858,0.780071,0.195556,0.76027,0.398237,0.565995,0.0808818,0.752598,0.33679,0.0871931,0.11323,0.136965,0.372952,0.954772,0.70143,0.485411,0.174066,0.908222,0.0104514,0.290785,0.895253,0.720778,0.168339,0.694586,0.00444126,0.442903,0.607214,0.206755,0.969101,0.842919,0.175085,0.724217,0.222659,0.479457,0.263457,0.00403821,0.684441,0.787914,0.703035,0.178983,0.111832,0.537178,0.326404,0.502277,0.919478,0.834233,0.0727852,0.146962,0.305191,0.289342,0.787845,0.338995,0.507255,0.826641,0.0499533,0.751211,0.350559,0.803792,0.197727,0.150355,0.163659,0.551716,0.145836,0.568338,0.828936,0.0152204,0.541227,0.842851,0.271778,0.854455,0.793402,0.00475073,0.958154,0.636442,0.662926,0.278226,0.938867,0.53677,0.26944,0.984979,0.239297,0.619032,0.014264,0.503983,0.469971,0.881058,0.498989,0.718385,0.932256,0.768078,0.197245,0.0701123,0.103842,0.693873,0.559247,0.734504,0.807776,0.836528,0.352556,0.690388,0.465194,0.517941,0.345664,0.0618224,0.741724,0.321916,0.509905,0.281152,0.114491,0.319128,0.829452,0.874379,0.0737348,0.669302,0.769371,0.375536,0.167358,0.724108,0.469099,0.411525,0.0174614,0.586378,0.929603,0.240142,0.680863,0.26197,0.539841,0.399404,0.491608,0.574682,0.481523,0.381914,0.48135,0.468822,0.222102,0.169071,0.0425583,0.16524,0.756893,0.697369,0.88935,0.661493,0.873816,0.894337,0.885153,0.649692,0.676477,0.407688,0.489652,0.425006,0.530442,0.601409,0.522096,0.357615,0.441313,0.735471,0.899311,0.717234,0.263663,0.756645,0.981193,0.715953,0.740867,0.317219,0.0715234,0.793019,0.368603,0.520329,0.495024,0.863456,0.561544,0.382455,0.504393,0.6893,0.0632772,0.205135,0.208167,0.294559,0.713293,0.438876,0.657025,0.159448,0.437635,0.411907,0.381599,0.0299655,0.399647,0.755895,0.854979,0.075267,0.170634,0.774141,0.329159,0.644642,0.994274,0.707651,0.495599,0.471003,0.825264,0.983811,0.250696,0.679139,0.35624,0.407607,0.434464,0.502047,0.0507269,0.701654,0.503731,0.9194,0.636429,0.319765,0.466615,0.292085,0.553741,0.928458,0.35354,0.654462,0.23564,0.979545,0.63552,0.238724,0.162307,0.178033,0.608584,0.814944,0.283933,0.887148,0.25398,0.787282,0.661148,0.855797,0.822502,0.944058,0.799702,0.111012,0.589143,0.315715,0.47397,0.247557,0.667069,0.224524,0.656709,0.630606,0.749004,0.424266,0.220275,0.497095,0.880651,0.854022,0.427823,0.721942,0.0134222,0.897896,0.141166,0.995767,0.292184,0.392904,0.930278,0.942081,0.851581,0.297707,0.214879,0.764888,0.572186,0.796429,0.487977,0.388857,0.219154,0.313531,0.0347911,0.829802,0.966328,0.799912,0.726511,0.888443,0.563141,0.24538,0.76979,0.229159,0.504691,0.691072,0.25988,0.963257,0.338103,0.831716,0.163181,0.126991,0.492036,0.474308,0.965541,0.641817,0.46828,0.0590923,0.191566,0.561869,0.657755,0.442279,0.17143,0.299208,0.603589,0.390941,0.785871,0.81244,0.0730948,0.218666,0.134408,0.143128,0.980136,0.66483,0.637693,0.504389,0.557521,0.778036,0.747636,0.764102,0.342113,0.0433605,0.446505,0.250752,0.364134,0.525003,0.390888,0.855857,0.323685,0.0336522,0.918338,0.801782,0.315647,0.770906,0.659374,0.928533,0.477017,0.836228,0.719274,0.0563316,0.197293,0.569911,0.531479,0.927726,0.243965,0.720105,0.682619,0.143175,0.372087,0.734618,0.814578,0.410446,0.374965,0.106676,0.469604,0.566676,0.126107,0.507063,0.160727,0.557607,0.717884,0.659742,0.172605,0.394261,0.359609,0.714222,0.0949459,0.84878,0.226628,0.151479,0.672804,0.0742915,0.674858,0.0649693,0.378948,0.25868,0.909704,0.746827,0.707538,0.791312,0.595496,0.172242,0.962185,0.805863,0.106232,0.405681,0.350537,0.282907,0.336897,0.947732,0.752672,0.140055,0.927374,0.153557,0.915887,0.50763,0.0296379,0.922504,0.352031,0.903644,0.386085,0.634023,0.967623,0.497891,0.729887,0.913678,0.709723,0.836116,0.760728,0.0533656,0.0917705,0.477836,0.295108,0.79154,0.106556,0.529802,0.546637,0.550682,0.239064,0.00223821,0.950696,0.346477,0.857747,0.191632,0.621264,0.989986,0.967068,0.470773,0.318563,0.117587,0.15293,0.75917,0.605743,0.374301,0.435798,0.493373,0.182276,0.488788,0.6727,0.292337,0.439333,0.709924,0.965792,0.810601,0.235208,0.0752446,0.607464,0.895703,0.957963,0.878667,0.20676,0.885148,0.441779,0.893664,0.515865,0.0184742,0.521212,0.772772,0.946643,0.775237,0.14856,0.587086,0.494834,0.970475,0.482558,0.440457,0.699862,0.835598,0.748368,0.475854,0.0200659,0.160624,0.906841,0.392882,0.820968,0.908033,0.979415,0.924607,0.942774,0.489807,0.388218,0.926572,0.569062,0.777908,0.450559,0.89729,0.783813,0.131707,0.55788,0.654001,0.932783,0.285586,0.599622,0.421848,0.905659,0.530471,0.353925,0.399378,0.0643288,0.445206,0.955453,0.910299,0.609513,0.417975,0.446319,0.764131,0.284008,0.101536,0.208937,0.84968,0.179033,0.943686,0.845744,0.143421,0.135563,0.548455,0.635627,0.403964,0.323076,0.990132,0.309673,0.0879955,0.190079,0.422526,0.0656906,0.815763,0.259837,0.495821,0.879645,0.349843,0.797675,0.526813,0.522963,0.366151,0.556665,0.890459,0.577791,0.253048,0.527616,0.292084,0.765666,0.773752,0.503252,0.151649,0.250875,0.330996,0.547465,0.707989,0.604376,0.610587,0.948555,0.147256,0.861518,0.154963,0.967394,0.796313,0.344796,0.231846,0.0722879,0.653902,0.954227,0.0119749,0.942662,0.715354,0.399723,0.578163,0.737576,0.452451,0.273898,0.648826,0.486455,0.814116,0.152273,0.658237,0.694403,0.355168,0.447484,0.673349,0.341271,0.534604,0.988145,0.115838,0.0900892,0.949351,0.179192,0.490011,0.0372162,0.818352,0.0380342,0.197072,0.505249,0.657452,0.850729,0.25714,0.734337,0.539899,0.784278,0.0628194,0.489632,0.275136,0.735444,0.0786227,0.234593,0.699089,0.1251,0.512492,0.600266,0.808378,0.586773,0.39045,0.30624,0.365362,0.17213,0.13337,0.243007,0.820202,0.431892,0.39244,0.0142493,0.802602,0.793938,0.481528,0.663824,0.105498,0.65979,0.797603,0.401701,0.361519,0.776654,0.548358,0.0551435,0.0368494,0.475563,0.442463,0.178623,0.945548,0.999893,0.959414,0.226373,0.933088,0.392316,0.791682,0.587099,0.661346,0.453258,0.178298,0.860528,0.552132,0.758529,0.865037,0.721423,0.055169,0.548907,0.0800523,0.924515,0.975934,0.79188,0.210536,0.785639,0.904736,0.024191,0.848845,0.0635844,0.0189205,0.188137,0.934278,0.504908,0.441032,0.883226,0.93733,0.760277,0.290908,0.198666,0.104597,0.714598,0.0191682,0.0357615,0.830887,0.717447,0.339208,0.0226557,0.721332,0.114826,0.557174,0.457273,0.839154,0.265258,0.939455,0.302704,0.403445,0.938449,0.288677,0.493977,0.880491,0.314489,0.792338,0.938233,0.922137,0.17957,0.919213,0.0778753,0.410684,0.949148,0.0456115,0.377283,0.144794,0.825625,0.448737,0.511114,0.339034,0.726398,0.0738958,0.488216,0.543219,0.573884,0.650241,0.496042,0.670145,0.346048,0.346471,0.380165,0.851139,0.60607,0.0116542,0.854414,0.995256,0.729998,0.792099,0.272629,0.604,0.461001,0.821965,0.82019,0.881242,0.351573,0.340118,0.466356,0.574579,0.0303807,0.322894,0.676595,0.0978625,0.121301,0.14009,0.334754,0.578004,0.204726,0.816904,0.618357,0.829628,0.433225,0.624892,0.976937,0.356898,0.531977,0.732448,0.0493233,0.746406,0.993922,0.416368,0.221195,0.862608,0.623166,0.0512406,0.290228,0.67215,0.354494,0.149453,0.895462,0.660582,0.221894,0.0210727,0.65933,0.439259,0.307505,0.622944,0.0604931,0.727819,0.933711,0.738149,0.139957,0.792014,0.82965,0.811922,0.223108,0.150993,0.00664979,0.587055,0.128367,0.669997,0.116934,0.78696,0.268516,0.138373,0.0994331,0.661677,0.645251,0.855231,0.223977,0.13835,0.191826,0.298586,0.328291,0.152647,0.938815,0.310959,0.0254872,0.163066,0.36295,0.422122,0.0650077,0.497072,0.409608,0.298883,0.0741223,0.115093,0.980729,0.905982,0.677195,0.621016,0.335365,0.831558,0.868305,0.317276,0.62047,0.406194,0.793917,0.971336,0.860702,0.958955,0.37214,0.395489,0.424226,0.796282,0.901996,0.332736,0.4915,0.0773954,0.452393,0.13459,0.288614,0.646643,0.491089,0.735682,0.345029,0.299358,0.463168,0.531029,0.133351,0.33853,0.202605,0.810325,0.0022471,0.0728096,0.133105,0.645217,0.190419,0.816294,0.260263,0.257008,0.690524,0.518684,0.694316,0.669713,0.949327,0.617719,0.395803,0.696766,0.378014,0.583733,0.169211,0.535567,0.501774,0.985954,0.274637,0.98285,0.211784,0.71489,0.354137,0.95855,0.215732,0.19914,0.43206,0.0355151,0.620192,0.632084,0.829448,0.279796,0.12005,0.0815753,0.511115,0.112397,0.712838,0.535158,0.874435,0.240892,0.517107,0.739208,0.140875,0.846789,0.121759,0.546144,0.947426,0.950537,0.637677,0.47538,0.672525,0.766544,0.780338,0.23635,0.360927,0.344422,0.00463498,0.812648,0.789871,0.579834,0.668085,0.652998,0.126443,0.384134,0.101843,0.551399,0.430554,0.218039,0.512871,0.840223,0.552792,0.874396,0.817581,0.899778,0.568614,0.507852,0.671671,0.490748,0.973794,0.838933,0.228208,0.167057,0.581135,0.968818,0.405509,0.693205,|0.269297,0.719532,0.478121,0.449137,0.563176,0.15185,0.335814,0.629694,0.203085,0.355642,0.268326,0.0152021,0.847316,0.770927,0.861039,0.099504,0.564885,0.175071,0.12183,0.783395,0.861384,0.562787,0.775907,0.910132,0.454728,0.689727,0.906614,0.451093,0.827383,0.136098,0.162998,0.994193,0.943418,0.255101,0.838601,0.911622,0.875409,0.988978,0.647454,0.100412,0.673388,0.37813,0.895739,0.685657,0.21643,0.906255,0.0165555,0.329441,0.00108248,0.675138,0.823431,0.731938,0.207918,0.377401,0.186908,0.86883,0.161439,0.984495,0.190566,0.364779,0.716218,0.722069,0.229245,0.698789,0.971315,0.501075,0.26559,0.154916,0.181468,0.730888,0.86582,0.186566,0.0624648,0.193489,0.135062,0.833724,0.72484,0.283208,0.178437,0.0093618,0.830384,0.767312,0.476373,0.271369,0.249754,0.465544,0.559069,0.260667,0.826119,0.844389,0.218167,0.0395707,0.219715,0.36246,0.407567,0.327046,0.35836,0.637985,0.701459,0.0378976,0.177643,0.408705,0.196211,0.699814,0.0427778,0.386284,0.452925,0.917864,0.22954,0.82931,0.915143,0.351776,0.225508,0.33367,0.929025,0.740982,0.214142,0.476311,0.220876,0.233719,0.19329,0.816807,0.463715,0.707944,0.430524,0.830481,0.410789,0.39315,0.792632,0.494663,0.191316,0.531932,0.301127,0.0934766,0.151668,0.518174,0.304843,0.180537,0.324372,0.0603448,0.952409,0.881061,0.86184,0.157624,0.35106,0.441706,0.380867,0.644812,0.923307,0.480519,0.443947,0.255656,0.164351,0.665078,0.961114,0.249351,0.294878,0.952114,0.432817,0.593234,0.464909,0.722759,0.647166,0.154395,0.400924,0.99736,0.789591,0.890213,0.310714,0.064971,0.932027,0.171993,0.4234,0.716905,0.244004,0.0995941,0.652706,0.907106,0.806723,0.205316,0.452018,0.531016,0.568452,0.287058,0.127067,0.650966,0.0446591,0.0725788,0.0848951,0.235992,0.882712,0.0187871,0.248888,0.316143,0.150931,0.00375593,0.155498,0.165914,0.146096,0.068477,0.346155,0.989312,0.993225,0.344071,0.758446,0.363249,0.563589,0.39638,0.28259,0.389195,0.421043,0.739338,0.420651,0.998378,0.374834,0.417488,0.980583,0.802259,0.843058,0.290157,0.0509585,0.398482,0.665101,0.595802,0.311558,0.248186,0.931049,0.629909,0.0805563,0.144655,0.660407,0.717867,0.0178065,0.10505,0.775855,0.535482,0.574918,0.157548,0.803396,0.800786,0.0573812,0.112039,0.176526,0.254074,0.519312,0.294993,0.323315,0.0190367,0.419745,0.208403,0.122469,0.478535,0.385787,0.601554,0.920393,0.273444,0.610476,0.772917,0.728397,0.314695,0.476556,0.953421,0.301409,0.525492,0.975922,0.118369,0.638129,0.484933,0.450778,0.850328,0.314677,0.445868,0.668597,0.932279,0.508663,0.0157679,0.861953,0.969401,0.461463,0.00799906,0.891918,0.902686,0.872624,0.309186,0.960042,0.502839,0.610031,0.926675,0.654649,0.888199,0.239713,0.364842,0.0710981,0.279901,0.98315,0.170095,0.702629,0.432006,0.792332,0.458653,0.353188,0.702994,0.276951,0.117622,0.38672,0.832591,0.223681,0.295479,0.950611,0.149078,0.544756,0.232507,0.88356,0.593959,0.350027,0.335454,0.957517,0.653553,0.725721,0.390951,0.0551547,0.11366,0.680306,0.368688,0.193434,0.842674,0.368854,0.331173,0.164125,0.925906,0.00331891,0.985089,0.291978,0.660067,0.441597,0.21204,0.867433,0.8587,0.823989,0.232116,0.186849,0.901806,0.158982,0.271535,0.057328,0.886047,0.253662,0.374854,0.892801,0.898294,0.263381,0.927495,0.60437,0.387177,0.272707,0.20134,0.451445,0.076919,0.605571,0.639693,0.252428,0.760057,0.217334,0.505665,0.215111,0.792753,0.274105,0.243167,0.47203,0.20132,0.443436,0.0900912,0.051882,0.00173992,0.829181,0.350383,0.412571,0.836503,0.908339,0.142613,0.384612,0.764093,0.0762682,0.514627,0.108687,0.34066,0.208623,0.728917,0.83962,0.574339,0.30975,0.494278,0.254488,0.268411,0.795039,0.0718475,0.520985,0.859418,0.211821,0.766604,0.127244,0.810569,0.875128,0.0267835,0.45591,0.237191,0.669532,0.625791,0.119325,0.569836,0.499534,0.163026,0.614456,0.184164,0.545433,0.255155,0.782303,0.390761,0.748536,0.73657,0.493333,0.366235,0.181739,0.158829,0.910011,0.208821,0.788324,0.313184,0.0918359,0.864163,0.661817,0.569623,0.670736,0.0896943,0.816565,0.287783,0.091549,0.575335,0.536996,0.857139,0.184776,0.616026,0.573826,0.196306,0.815749,0.554126,0.577165,0.360061,0.11643,0.26266,0.359057,0.219683,0.810402,0.576014,0.992243,0.893195,0.902756,0.280433,0.28059,0.125784,0.780244,0.990406,0.498452,0.885572,0.792844,0.107409,0.0479679,0.341166,0.445407,0.0986694,0.702723,0.748226,0.429831,0.845661,0.704943,0.879867,0.113036,0.877129,0.520743,0.87191,0.302431,0.114235,0.184047,0.281792,0.965529,0.0822049,0.744567,0.346236,0.0540349,0.242663,0.869417,0.737905,0.182988,0.14623,0.23642,0.896931,0.345216,0.748835,0.758981,0.330205,0.29541,0.130177,0.976477,0.994496,0.990435,0.500817,0.045711,0.560808,0.213779,0.571856,0.940913,0.439515,0.707599,0.337157,0.909742,0.077705,0.187063,0.802446,0.685696,0.906656,0.013555,0.441933,0.443547,0.897128,0.452212,0.862126,0.392172,0.877825,0.279852,0.624291,0.884131,0.673693,0.0580946,0.632704,0.418573,0.0584241,0.160037,0.614296,0.337962,0.722099,0.532239,0.464624,0.660232,0.800506,0.994407,0.859706,0.740013,0.0454981,0.844339,0.864118,0.40341,0.754742,0.404216,0.616745,0.942998,0.605158,0.940887,0.899463,0.62903,0.445653,0.100397,0.938344,0.23796,0.643013,0.275433,0.840065,0.0156372,0.896852,0.691922,0.51491,0.831206,0.949227,0.801197,0.680839,0.384336,0.152915,0.673929,0.453604,0.544487,0.361679,0.560403,0.150631,0.766474,0.148754,0.457135,0.352593,0.0842278,0.46963,0.152063,0.759476,0.46776,0.458753,0.639379,0.975392,0.808294,0.737634,0.416569,0.235505,0.469528,0.605896,0.0224292,0.636981,0.453184,0.298028,0.743344,0.147975,0.970761,0.431697,0.0178092,0.643951,0.577548,0.593535,0.10962,0.912223,0.407466,0.500081,0.866293,0.896568,0.170904,0.351469,0.609387,0.162664,0.159676,0.623211,0.0525942,0.0132145,0.374664,0.94773,0.648756,0.685624,0.0273243,0.985635,0.728387,0.817574,0.642364,0.486079,4.82798e-05,0.853184,0.258402,0.839374,0.0419612,0.837422,0.217788,0.972399,0.965832,0.642891,0.675374,0.0105804,0.527516,0.0757636,0.989133,0.991947,0.289781,0.643291,0.673306,0.416264,0.209415,0.376201,0.639189,0.232171,0.104585,0.144844,0.23699,0.523345,0.447376,0.818351,0.273902,0.826301,0.672303,0.531109,0.697782,0.262043,0.661192,0.249696,0.0460276,0.143245,0.799048,0.966995,0.61312,0.612997,0.934105,0.767469,0.912403,0.165791,0.279818,0.609075,0.0456752,0.319448,0.544734,0.58778,0.832504,0.523002,0.560838,0.720339,0.546852,0.827066,0.137947,0.361349,0.787316,0.865196,0.336363,0.753976,0.998916,0.635158,0.238255,0.532025,0.0163958,0.15191,0.435186,0.739054,0.925492,0.805656,0.0201881,0.0399968,0.8566,0.0691432,0.0564185,0.670816,0.77558,0.710745,0.870826,0.276654,0.62918,0.079217,0.469889,0.405112,0.280589,0.0790427,0.234473,0.511288,0.856248,0.462227,0.453683,0.0134893,0.207898,0.688847,0.572204,0.0785161,0.784746,0.6705,0.0271872,0.292221,0.230799,0.0592678,0.250386,0.430086,0.63405,0.492638,0.608785,0.00341451,0.0618263,0.632518,0.329759,0.982,0.178813,0.109407,0.529794,0.846908,0.128718,0.368668,0.594314,0.463249,0.419658,0.38371,0.199557,0.289613,0.0908383,0.80037,0.907784,0.816587,0.890193,0.810294,0.216722,0.841549,0.228786,0.970744,0.556465,0.645897,0.368434,0.13934,0.540998,0.784722,0.656754,0.475763,0.164745,0.556141,0.467156,0.704249,0.3923,0.257822,0.387335,0.924415,0.251095,0.555616,0.289092,0.127176,0.403881,0.354843,0.367696,0.658978,0.609611,0.620334,0.467808,0.2711,0.93599,0.716309,0.649265,0.380397,0.0663202,0.841039,0.957282,0.718939,0.258167,0.366312,0.107659,0.343103,0.593776,0.119352,0.54772,0.465789,0.642402,0.721292,0.813726,0.848185,0.959145,0.918827,0.954771,0.493807,0.0712588,0.932549,0.413506,0.705299,0.782412,0.200229,0.141387,0.5917,0.272033,0.353553,0.926007,0.17185,0.332226,0.709267,0.552504,0.921651,0.237896,0.0747075,0.173431,0.0736196,0.596234,0.757894,0.311558,0.869313,0.0264252,0.203259,0.643756,0.0307426,0.90022,0.690643,0.584113,0.849304,0.26196,0.610712,0.780248,0.489682,0.168828,0.351325,0.293124,0.335578,0.91174,0.733241,0.2406,0.356189,0.66012,0.0310187,0.726366,0.740627,0.410621,0.126368,0.325049,0.707646,0.302901,0.850335,0.363522,0.560739,0.208275,0.556552,0.348579,0.717139,0.760221,0.447806,0.335938,0.469768,0.224282,0.0324743,0.223165,0.891488,0.784755,0.789022,0.725729,0.731319,0.09534,0.735676,0.828111,0.732815,0.912923,0.264847,0.896754,0.105793,0.879783,0.15107,0.431411,0.137153,0.847931,0.436547,0.525841,0.681171,0.0126756,0.136357,0.58004,0.684008,0.504955,0.496537,0.420556,0.384365,0.178858,0.0655203,0.871195,0.550546,0.0135559,0.911361,0.766251,0.742422,0.510665,0.491068,0.726254,0.132106,0.998644,0.897683,0.0334857,0.185718,0.74017,0.0736308,0.899495,0.618295,0.19457,0.270034,0.733714,0.0777777,0.328515,0.148564,0.0270168,0.450429,0.25194,0.553347,0.514522,0.411005,0.450698,0.897931,0.482877,0.693111,0.569108,0.35459,0.0204042,0.939955,0.213224,0.625478,0.576819,0.252797,0.364688,0.497954,0.87026,0.418401,0.0851912,0.545281,0.790788,0.633298,0.420087,0.910448,0.757528,0.392455,0.0886319,0.24671,0.607227,0.448274,0.409173,0.671432,0.237307,0.271338,0.409766,0.785085,0.455578,0.577647,0.539312,0.412666,0.467252,0.0406827,0.741862,0.127998,0.739006,0.749469,|0.103731,0.182219,0.675834,0.381128,0.235445,0.543704,0.225801,0.641135,0.845109,0.730651,0.0070371,0.59751,0.511022,0.307716,0.86382,0.737925,0.52573,0.0793967,0.616583,0.0534407,0.774155,0.998236,0.482001,0.0407628,0.335351,0.412352,0.438948,0.720773,0.850351,0.932394,0.379392,0.986466,0.763962,0.983078,0.957022,0.54778,0.213388,0.820241,0.922225,0.396084,0.0047105,0.196285,0.478303,0.435388,0.220342,0.489038,0.234076,0.688338,0.633077,0.250695,0.00441754,0.457869,0.583174,0.38636,0.548511,0.822292,0.891998,0.898602,0.47364,0.846377,0.59917,0.671692,0.40642,0.125855,0.736141,0.110459,0.90237,0.0673931,0.697515,0.0191663,0.38787,0.478489,0.94986,0.504482,0.970349,0.165464,0.696732,0.375627,0.435631,0.145521,0.0652018,0.420947,0.920856,0.0605588,0.550301,0.75926,0.655887,0.0736437,0.52153,0.319983,0.199834,0.654334,0.606242,0.822708,0.72496,0.569755,0.244176,0.875463,0.154966,0.945241,0.433083,0.506672,0.783003,0.00485998,0.817889,0.0529881,0.760367,0.896206,0.299656,0.559833,0.168066,0.763485,0.711653,0.536704,0.235525,0.207936,0.65438,0.0969502,0.348326,0.70801,0.840588,0.761956,0.578412,0.0436988,0.637483,0.315207,0.685715,0.546019,0.0825475,0.436951,0.714404,0.557002,0.77982,0.684237,0.427734,0.933857,0.840533,0.42678,0.0439485,0.946818,0.280716,0.36463,0.0989959,0.578666,0.311378,0.352037,0.866823,0.287187,0.607516,0.420222,0.550198,0.726549,0.128457,0.451229,0.86862,0.81904,0.000601828,0.260429,0.796661,0.131392,0.538032,0.168318,0.911363,0.612998,0.495295,0.79913,0.489072,0.736978,0.90254,0.343195,0.535226,0.518113,0.627408,0.0799527,0.129902,0.475779,0.328172,0.590195,0.570949,0.644545,0.372839,0.146917,0.973304,0.0979661,0.239863,0.0544405,0.726464,0.392399,0.373547,0.960797,0.101868,0.886791,0.370131,0.317374,0.166023,0.937854,0.619486,0.89885,0.767742,0.109203,0.365025,0.747403,0.241045,0.48857,0.253843,0.0728943,0.0154101,0.851063,0.517173,0.904712,0.16448,0.297876,0.268897,0.85527,0.896764,0.538402,0.961789,0.622832,0.192027,0.835629,0.010852,0.13516,0.952926,0.268231,0.386226,0.414551,0.430329,0.690664,0.994956,0.929896,0.743251,0.40849,0.739805,0.767979,0.386976,0.935942,0.775174,0.135214,0.396992,0.63565,0.8247,0.455947,0.520956,0.176131,0.569938,0.427896,0.903311,0.852202,0.689704,0.967489,0.294749,0.918395,0.352413,0.454311,0.707672,0.738099,0.95643,0.913891,0.529961,0.502757,0.944387,0.332499,0.286099,0.487292,0.180979,0.657632,0.0543803,0.291137,0.629345,0.33072,0.179572,0.338316,0.884377,0.560092,0.537768,0.550723,0.914949,0.289867,0.590538,0.373684,0.0771003,0.182379,0.138698,0.876348,0.530592,0.690798,0.96672,0.13662,0.539973,0.809606,0.712999,0.839079,0.501249,0.201489,0.548294,0.812444,0.71389,0.152728,0.159426,0.747713,0.604236,0.504014,0.591587,0.15313,0.604813,0.714416,0.719586,0.709817,0.946257,0.221072,0.862967,0.445444,0.35602,0.539199,0.112235,0.323876,0.594812,0.423419,0.857839,0.912555,0.985698,0.351798,0.763694,0.909812,0.424214,0.707897,0.123057,0.835242,0.485383,0.712681,0.953135,0.313882,0.663984,0.127809,0.808177,0.723171,0.659919,0.999706,0.232843,0.449251,0.348006,0.244781,0.0370573,0.0602609,0.930564,0.0719429,0.888644,0.173739,0.634404,0.688166,0.830886,0.124948,0.569051,0.125547,0.496794,0.783933,0.708846,0.547507,0.0073483,0.415734,0.123053,0.816136,0.957327,0.155696,0.312906,0.918235,0.967927,0.0905755,0.475545,0.791209,0.162465,0.946106,0.349065,0.239249,0.80446,0.639778,0.196473,0.360885,0.897353,0.517535,0.407668,0.535964,0.208181,0.655529,0.340022,0.64911,0.0383877,0.788589,0.955305,0.916767,0.988964,0.0383613,0.0396385,0.900765,0.64741,0.456541,0.708884,0.0142574,0.928442,0.853352,0.441607,0.911565,0.00573879,0.427827,0.657486,0.729381,0.956266,0.327609,0.642586,0.698458,0.849134,0.478907,0.474797,0.889015,0.194099,0.950684,0.0906065,0.723157,0.508282,0.0054267,0.888054,0.690825,0.510321,0.84016,0.850511,0.474694,0.566643,0.742521,0.72335,0.582709,0.957176,0.66448,0.0684409,0.327126,0.421723,0.542506,0.871652,0.239819,0.328955,0.778444,0.789028,0.959999,0.843635,0.539935,0.834362,0.576614,0.378332,0.438204,0.469684,0.704152,0.776936,0.87729,0.804999,0.331987,0.343775,0.179883,0.538871,0.0508879,0.718019,0.614158,0.0674495,0.445862,0.22805,0.487732,0.18532,0.13453,0.868133,0.342331,0.426124,0.321183,0.379991,0.9184,0.936506,0.340967,0.334307,0.444415,0.76905,0.409788,0.744568,0.921462,0.44827,0.83086,0.728949,0.00435418,0.841271,0.38057,0.934341,0.860914,0.162591,0.496546,0.192213,0.307484,0.962103,0.194571,0.38435,0.280391,0.78871,0.559171,0.0467662,0.731148,0.0170962,0.494058,0.0199453,0.0698312,0.544314,0.162043,0.557745,0.217398,0.162498,0.783883,0.329551,0.877219,0.745542,0.00190365,0.475669,0.0958081,0.612397,0.289124,0.344128,0.48209,0.433685,0.910243,0.0880554,0.946514,0.657065,0.00780153,0.547392,0.142444,0.467415,0.382655,0.744164,0.97909,0.542771,0.591351,0.926835,0.741004,0.698325,0.237986,0.996979,0.519712,0.437283,0.406004,0.522328,0.549073,0.505119,0.0600601,0.766471,0.112408,0.26063,0.922079,0.32605,0.109289,0.332267,0.408261,0.832111,0.0541275,0.330247,0.25645,0.250584,0.42598,0.465775,0.957034,0.689651,0.161698,0.0495112,0.299898,0.977117,0.959057,0.231187,0.258822,0.631882,0.419654,0.0938839,0.654332,0.599961,0.287344,0.422692,0.645592,0.458051,0.304925,0.741746,0.106461,0.361858,0.961883,0.586156,0.626636,0.0322844,0.606491,0.554586,0.547775,0.536451,0.112041,0.105211,0.499908,0.240516,0.727124,0.0663924,0.80001,0.148725,0.337223,0.43738,0.494231,0.114983,0.682622,0.836373,0.875591,0.104482,0.306847,0.442663,0.601433,0.984264,0.13369,0.359535,0.542596,0.613009,0.569762,0.874794,0.0919569,0.41173,0.992844,0.250032,0.505266,0.954749,0.201361,0.227137,0.142393,0.668471,0.922977,0.114243,0.733503,0.675482,0.372029,0.258871,0.621415,0.491627,0.117813,0.727399,0.2972,0.07081,0.915012,0.254764,0.550391,0.366915,0.78692,0.50319,0.388418,0.154239,0.105047,0.888668,0.749479,0.287228,0.24378,0.0632234,0.34576,0.078228,0.165713,0.193895,0.522208,0.27722,0.866568,0.980548,0.619884,0.631948,0.833677,0.206643,0.725002,0.639544,0.353804,0.557826,0.361683,0.750745,0.804906,0.776476,0.531194,0.191786,0.689682,0.0692593,0.455525,0.795974,0.0598947,0.913606,0.217213,0.767273,0.919306,0.648159,0.290767,0.474896,0.407029,0.886622,0.047924,0.766039,0.776231,0.0346677,0.386225,0.581644,0.537752,0.790369,0.80474,0.517917,0.129115,0.513995,0.225837,0.406285,0.953321,0.470216,0.13038,0.0150774,0.290888,0.980569,0.288719,0.0275278,0.545116,0.752536,0.1134,0.105994,0.710126,0.930411,0.668852,0.15114,0.0523066,0.171769,0.584825,0.244084,0.573057,0.846524,0.802537,0.0764852,0.563198,0.675994,0.01335,0.844786,0.502996,0.163098,0.500382,0.260227,0.482623,0.1593,0.978059,0.520836,0.295916,0.723363,0.366348,0.743171,0.339641,0.793894,0.926205,0.708175,0.228769,0.683823,0.251262,0.825254,0.825633,0.866693,0.454911,0.702964,0.879892,0.117871,0.825396,0.203328,0.717812,0.855193,0.195428,0.287228,0.919074,0.712073,0.0695036,0.678994,0.918531,0.952198,0.503523,0.924243,0.314257,0.196755,0.106965,0.857981,0.411751,0.339716,0.863774,0.0135849,0.92467,0.336269,0.396177,0.808959,0.63777,0.223971,0.450077,0.319512,0.769691,0.0833672,0.699712,0.946558,0.7144,0.415162,0.163339,0.249878,0.72436,0.21865,0.921542,0.778713,0.388059,0.39091,0.736587,0.834418,0.743701,0.613971,0.724804,0.79296,0.20539,0.82977,0.137741,0.215854,0.373116,0.485363,0.266395,0.484208,0.0572398,0.42321,0.567722,0.542377,0.20038,0.837114,0.639473,0.693526,0.504989,0.119161,0.514576,0.616967,0.585573,0.77404,0.925049,0.124034,0.376002,0.0209056,0.770377,0.908436,0.389466,0.686799,0.57772,0.704901,0.205499,0.430863,0.937031,0.548753,0.591382,0.465733,0.391064,0.797716,0.174486,0.301603,0.920432,0.833438,0.480138,0.912513,0.673558,0.118016,0.649376,0.707507,0.791883,0.265367,0.923122,0.85983,0.988083,0.77327,0.861835,0.178784,0.359753,0.846648,0.66202,0.773856,0.282202,0.845243,0.911206,0.153771,0.879757,0.0873017,0.831168,0.396722,0.19082,0.232631,0.508567,0.0303914,0.414093,0.96991,0.307821,0.855932,0.0971106,0.689168,0.76296,0.808653,0.156203,0.70586,0.0300862,0.090452,0.825028,0.762659,0.412771,0.973468,0.72399,0.933755,0.846723,0.524644,0.457633,0.369488,0.659726,0.400829,0.0115692,0.975014,0.227201,0.522102,0.566627,0.12009,0.0783385,0.388051,0.182997,0.0794162,0.447491,0.190479,0.727259,0.362849,0.634819,0.488855,0.845801,0.479481,0.0625094,0.510448,0.357246,0.506138,0.21465,0.62334,0.632699,0.802637,0.394354,0.203152,0.163585,0.495234,0.075815,0.479095,0.367489,0.557199,0.541717,0.300352,0.312044,0.8736,0.543567,0.477709,0.884962,0.303587,0.632809,0.674865,0.449784,0.951687,0.769648,0.506296,0.254646,0.723775,0.0931477,0.0137834,0.807814,0.0405672,0.947464,0.388559,0.366104,0.22206,0.314327,0.754032,0.111371,0.326337,0.472564,0.149216,0.712646,0.170387,0.623378,0.805924,0.158756,0.581281,0.97608,0.203287,0.0752853,0.789357,0.862417,0.571868,0.662885,0.290531,0.100521,0.798524,0.576534,0.489973,0.471178,0.458782,0.626899,0.473043,0.17891,0.768803,0.0537196,0.229871,0.456482,0.420405,0.563064,0.792073,0.587389,|0.278504,0.637406,0.89405,0.490045,0.403572,0.792957,0.363747,0.569359,0.307632,0.275707,0.643964,0.358292,0.00318891,0.302725,0.820765,0.53367,0.16399,0.339478,0.918944,0.179694,0.16798,0.945647,0.715152,0.614837,0.937475,0.0932208,0.295928,0.605243,0.973494,0.0530615,0.282616,0.508421,0.937105,0.571107,0.21753,0.707979,0.537553,0.438725,0.230754,0.850056,0.0264992,0.526735,0.0672843,0.255281,0.846222,0.28956,0.228974,0.615519,0.78503,0.519499,0.787017,0.535255,0.559461,0.177987,0.658108,0.840406,0.924411,0.65815,0.794931,0.0997337,0.921636,0.67456,0.450763,0.897422,0.316029,0.803471,0.667364,0.981481,0.654518,0.967379,0.372563,0.308362,0.325587,0.700052,0.712899,0.113554,0.893982,0.271589,0.0929679,0.910116,0.314798,0.662429,0.460055,0.476621,0.319766,0.75928,0.721503,0.78301,0.493003,0.108164,0.160788,0.475054,0.448591,0.994196,0.10365,0.397414,0.946772,0.718387,0.289405,0.956717,0.857079,0.933624,0.928499,0.205986,0.978858,0.595306,0.563299,0.532837,0.279063,0.535125,0.719764,0.642601,0.282484,0.686269,0.216807,0.911219,0.101921,0.762597,0.530823,0.792037,0.104833,0.681014,0.392925,0.973508,0.639225,0.584586,0.637025,0.861685,0.297989,0.590936,0.170421,0.768058,0.788138,0.233762,0.923966,0.126075,0.455357,0.363585,0.725475,0.248575,0.456955,0.792104,0.966959,0.435576,0.305109,0.76154,0.94361,0.623657,0.847612,0.718599,0.906148,0.734046,0.922402,0.144992,0.209136,0.423439,0.630963,0.421018,0.764779,0.183972,0.863995,0.121745,0.394463,0.0437074,0.839142,0.680127,0.504335,0.166714,0.402526,0.86441,0.854267,0.410841,0.163646,0.165737,0.75628,0.261651,0.200024,0.921262,0.529186,0.0860268,0.414953,0.727286,0.467453,0.731148,0.76556,0.285045,0.997129,0.816103,0.484639,0.246629,0.163901,0.0284502,0.994874,0.663454,0.418841,0.748577,0.0615205,0.990861,0.873569,0.410976,0.99661,0.670292,0.0655243,0.171956,0.767587,0.832929,0.469661,0.454207,0.18378,0.506281,0.676384,0.463346,0.154828,0.0680233,0.192197,0.173229,0.239893,0.452678,0.377779,0.0270009,0.532832,0.810914,0.978737,0.182739,0.0261912,0.847253,0.9793,0.650468,0.366525,0.203064,0.269118,0.363946,0.988381,0.739388,0.175437,0.587401,0.979376,0.137428,0.562665,0.608715,0.442159,0.178193,0.239778,0.0651782,0.299835,0.830367,0.327785,0.170466,0.415314,0.809064,0.897457,0.389677,0.110844,0.607291,0.230375,0.152494,0.32479,0.713865,0.701303,0.672403,0.322041,0.713732,0.19548,0.417131,0.671882,0.930664,0.206543,0.964793,0.235075,0.741372,0.612662,0.169744,0.575596,0.032222,0.342262,0.530959,0.469311,0.039521,0.984328,0.0916461,0.724834,0.120073,0.879416,0.853569,0.551007,0.493419,0.093697,0.792401,0.241461,0.17356,0.262245,0.719991,0.153564,0.831522,0.969036,0.855958,0.487876,0.675114,0.855415,0.589621,0.752595,0.333768,0.825713,0.73907,0.616898,0.340637,0.541705,0.149198,0.583193,0.0217511,0.399344,0.222087,0.348093,0.929205,0.704446,0.786731,0.8459,0.413383,0.252169,0.271369,0.315436,0.533584,0.00503653,0.089446,0.265229,0.944448,0.225614,0.95133,0.457044,0.76737,0.218047,0.293278,0.908922,0.465437,0.599385,0.566528,0.00777227,0.597456,0.253386,0.150189,0.982402,0.306927,0.776717,0.984892,0.294354,0.764482,0.54398,0.644265,0.17979,0.84968,0.580151,0.416754,0.0521811,0.755357,0.627592,0.755151,0.138734,0.602862,0.721955,0.614706,0.872863,0.267757,0.713292,0.7211,0.936176,0.705931,0.255405,0.128945,0.26017,0.493024,0.742348,0.164913,0.805272,0.772092,0.0199547,0.0480616,0.131404,0.438622,0.298768,0.417844,0.631303,0.363185,0.908996,0.90073,0.0223776,0.0567073,0.467297,0.256769,0.110336,0.453493,0.0986053,0.522131,0.0510576,0.522727,0.557328,0.223131,0.358851,0.586145,0.538986,0.170601,0.493848,0.0768167,0.733728,0.610464,0.473083,0.191471,0.585547,0.686961,0.707154,0.797591,0.788879,0.568111,0.957297,0.785331,0.769562,0.000718176,0.284725,0.208911,0.443599,0.201155,0.0457957,0.13534,0.285066,0.646705,0.348639,0.466,0.868995,0.858102,0.434319,0.308102,0.187561,0.54762,0.888584,0.890894,0.191737,0.690262,0.951874,0.568342,0.0124903,0.936665,0.755316,0.850039,0.507435,0.779521,0.480158,0.00709099,0.64668,0.465034,0.569911,0.323719,0.040363,0.272293,0.745763,0.833838,0.132646,0.50578,0.470429,0.284199,0.165466,0.704104,0.115192,0.843213,0.138856,0.896852,0.749141,0.469208,0.34981,0.234899,0.168414,0.841254,0.409995,0.308951,0.0076496,0.840254,0.846608,0.667073,0.650091,0.877573,0.573709,0.664163,0.541538,0.222645,0.224093,0.369787,0.38591,0.171982,0.337494,0.084568,0.476143,0.785594,0.941757,0.199099,0.359987,0.769875,0.589588,0.637765,0.427612,0.414559,0.532726,0.0669313,0.587423,0.727285,0.698578,0.284079,0.540888,0.323178,0.275289,0.458971,0.636645,0.774366,0.0202358,0.917829,0.997733,0.390336,0.347485,0.00328952,0.680096,0.517495,0.166641,0.59481,0.766767,0.0792876,0.0413759,0.500212,0.586881,0.898469,0.883038,0.532508,0.829953,0.0692632,0.701901,0.481768,0.154797,0.77762,0.535089,0.688962,0.53049,0.473676,0.361872,0.959309,0.606859,0.264806,0.948992,0.996639,0.122488,0.321783,0.810567,0.333037,0.375275,0.432994,0.997608,0.375343,0.326984,0.785618,0.658594,0.641595,0.932676,0.59047,0.784494,0.587068,0.893769,0.80621,0.448361,0.063799,0.172908,0.91131,0.14233,0.0241686,0.642012,0.61389,0.938034,0.252826,0.710429,0.467696,0.156242,0.759568,0.983196,0.72001,0.850091,0.110915,0.792379,0.408339,0.928501,0.779665,0.712422,0.171614,0.721497,0.314601,0.786991,0.270093,0.454083,0.238548,0.111721,0.0470833,0.999146,0.327037,0.346274,0.454132,0.342652,0.532326,0.181815,0.456767,0.791174,0.785273,0.156562,0.0685515,0.483175,0.0301577,0.241638,0.747473,0.521843,0.813028,0.20196,0.826468,0.166971,0.287063,0.137917,0.603025,0.715434,0.92426,0.00117308,0.119476,0.0277658,0.0923988,0.286543,0.930606,0.556588,0.451404,0.123778,0.561675,0.539282,0.689874,0.318225,0.451436,0.642484,0.572177,0.581311,0.431753,0.665018,0.815552,0.664015,0.429565,0.271215,0.734572,0.198152,0.479644,0.771582,0.533813,0.775314,0.0578073,0.352652,0.395636,0.195965,0.67589,0.252141,0.493738,0.564967,0.176926,0.344833,0.032796,0.0225785,0.828211,0.705697,0.523918,0.578581,0.641013,0.152723,0.414111,0.501988,0.781732,0.777139,0.178861,0.757405,0.325809,0.0501373,0.241712,0.0859921,0.829427,0.0163044,0.510423,0.268872,0.409937,0.188965,0.769323,0.132507,0.469787,0.659135,0.144359,0.314896,0.746908,0.67464,0.536849,0.914421,0.917107,0.971877,0.255703,0.491235,0.524405,0.733208,0.734838,0.544677,0.697732,0.619987,0.0575283,0.354773,0.548264,0.109659,0.263527,0.318966,0.0508464,0.434452,0.543036,0.643157,0.639508,0.452132,0.582665,0.114797,0.184934,0.729809,0.750573,0.254891,0.349956,0.332281,0.539406,0.512542,0.792017,0.887279,0.0623549,0.393063,0.223921,0.224826,0.383433,0.281093,0.164347,0.0954871,0.0852402,0.315755,0.793345,0.531918,0.167718,0.199722,0.0221751,0.938002,0.846938,0.925308,0.284331,0.157767,0.821745,0.131513,0.724953,0.206339,0.578271,0.0211044,0.8539,0.585238,0.334774,0.173967,0.444341,0.993383,0.523502,0.880303,0.0231628,0.856027,0.00176883,0.733314,0.497788,0.465639,0.901212,0.710709,0.319091,0.764249,0.731983,0.125769,0.322711,0.514248,0.63353,0.999638,0.4885,0.601181,0.128575,0.852167,0.352216,0.87748,0.529033,0.868016,0.217658,0.454814,0.975879,0.0634579,0.691229,0.943418,0.227735,0.129666,0.800048,0.644751,0.54932,0.534962,0.553391,0.899429,0.796144,0.0231795,0.313817,0.015859,0.813967,0.167326,0.426353,0.650385,0.219275,0.554121,0.449931,0.656864,0.813686,0.0977368,0.134556,0.723386,0.354475,0.00876135,0.867414,0.693449,0.61625,0.0143882,0.531886,0.868446,0.646018,0.01187,0.46136,0.840545,0.205309,0.57893,0.726727,0.761054,0.898662,0.703927,0.298687,0.589141,0.0888377,0.0899964,0.522347,0.975564,0.870527,0.175738,0.0653714,0.779693,0.60685,0.0885838,0.0103179,0.936799,0.739509,0.0764909,0.0737692,0.0530056,0.112476,0.731334,0.581705,0.514958,0.184768,0.536169,0.807322,0.296613,0.498776,0.582471,0.247191,0.462802,0.12812,0.409588,0.70443,0.847413,0.961599,0.387119,0.370524,0.204143,0.372761,0.420025,0.874539,0.93164,0.124472,0.0260066,0.738088,0.900315,0.400491,0.406397,0.363661,0.134791,0.241282,0.645736,0.971219,0.680286,0.388259,0.284274,0.71758,0.174239,0.75328,0.160572,0.643571,0.372865,0.41597,0.320522,0.208444,0.981698,0.980047,0.510703,0.184842,0.915183,0.901619,0.395225,0.52747,0.823993,0.523331,0.674072,0.891367,0.509426,0.864828,0.444132,0.0401852,0.383911,0.176109,0.738921,0.22895,0.388875,0.398118,0.472966,0.279905,0.0852664,0.816836,0.623097,0.751878,0.681665,0.241697,0.264474,0.988444,0.965142,0.455765,0.465081,0.0817249,0.137466,0.422547,0.638005,0.836081,0.602914,0.491487,0.587424,0.0306386,0.0375625,0.794506,0.882134,0.827748,0.11249,0.158275,0.709503,0.362615,0.819553,0.18523,0.113977,0.777519,0.166841,0.826329,0.99862,0.769726,0.0581375,0.780841,0.265951,0.506641,0.523141,0.173724,0.24901,0.458299,0.198653,0.484577,0.0738694,0.595253,0.930954,0.177815,0.718102,0.964678,0.81836,0.366966,0.664147,0.784696,0.681794,0.685649,0.446468,0.862177,0.293096,0.142696,0.891502,0.0911195,0.0621108,0.210494,0.304577,0.983513,0.265144,0.199676,0.702044,0.556867,0.723406,0.407687,0.963112,0.955773,0.266079,0.630792,|0.470379,0.547142,0.34661,0.805498,0.700228,0.64564,0.518999,0.188236,0.823758,0.12561,0.0332402,0.498484,0.239306,0.258767,0.382486,0.653185,0.402679,0.605554,0.197165,0.579306,0.346627,0.246301,0.644004,0.789072,0.59511,0.32798,0.988845,0.0151138,0.333371,0.700339,0.481982,0.0266248,0.644646,0.256347,0.312861,0.635806,0.97004,0.194827,0.37636,0.387277,0.968809,0.482217,0.835489,0.5807,0.851736,0.33649,0.810102,0.557765,0.984492,0.176743,0.0926139,0.281862,0.978627,0.482987,0.805331,0.268051,0.373877,0.556747,0.981095,0.828005,0.883082,0.428885,0.646527,0.854998,0.182931,0.634063,0.264262,0.892048,0.833032,0.811374,0.529329,0.77877,0.701396,0.133137,0.972428,0.217475,0.647539,0.849317,0.0765793,0.574959,0.646134,0.61195,0.738112,0.628783,0.625683,0.328126,0.931293,0.503768,0.439457,0.684542,0.666301,0.504301,0.532749,0.455493,0.831657,0.28827,0.0358294,0.179323,0.399232,0.0115992,0.960397,0.77916,0.0315692,0.307005,0.912231,0.840585,0.838983,0.961473,0.910686,0.976859,0.0367232,0.199024,0.358379,0.976556,0.538456,0.111714,0.176472,0.395007,0.646702,0.618195,0.558403,0.35028,0.3449,0.605648,0.795049,0.116558,0.389209,0.67274,0.355459,0.967194,0.558463,0.00721753,0.334399,0.522738,0.303124,0.696252,0.270663,0.342533,0.828065,0.301174,0.132915,0.10429,0.709031,0.913737,0.317295,0.711983,0.395968,0.265062,0.584915,0.0532438,0.635125,0.724283,0.80007,0.114213,0.585685,0.356301,0.909576,0.890104,0.428796,0.923817,0.543203,0.991762,0.962886,0.685811,0.626384,0.193817,0.182564,0.167324,0.807938,0.054885,0.848045,0.219684,0.76631,0.415348,0.176651,0.350152,0.201823,0.466321,0.488288,0.908118,0.708634,0.204311,0.119462,0.610293,0.515091,0.229073,0.235066,0.450994,0.368695,0.333527,0.783449,0.115271,0.405119,0.637194,0.435297,0.471668,0.303311,0.309757,0.463534,0.442071,0.60294,0.958843,0.337483,0.275975,0.93319,0.513318,0.29514,0.0175,0.782354,0.156756,0.694725,0.388109,0.284364,0.960779,0.172858,0.914286,0.514846,0.509003,0.0491167,0.312589,0.806976,0.9705,0.279057,0.768043,0.422238,0.92605,0.895164,0.573574,0.127027,0.485628,0.742713,0.466897,0.846738,0.400729,0.847989,0.764756,0.666855,0.000782073,0.475772,0.829183,0.904939,0.0539302,0.0288687,0.178082,0.210845,0.812156,0.9782,0.269046,0.0207502,0.143975,0.721843,0.453331,0.780053,0.0818291,0.776112,0.239574,0.337752,0.682555,0.18639,0.717452,0.397024,0.647981,0.222614,0.124631,0.73935,0.473384,0.0525976,0.83924,0.934934,0.484604,0.443503,0.341366,0.551241,0.18362,0.231083,0.900154,0.847827,0.318847,0.316761,0.476829,0.0516197,0.00230652,0.132662,0.701278,0.385225,0.348796,0.805951,0.629815,0.814883,0.722365,0.519191,0.581585,0.618104,0.24488,0.530901,0.104161,0.568913,0.0240446,0.297867,0.076307,0.563051,0.825599,0.911418,0.370448,0.268464,0.197806,0.110208,0.234949,0.503869,0.98827,0.699429,0.724163,0.49796,0.300812,0.673756,0.314484,0.659603,0.179546,0.948553,0.377013,0.338457,0.850414,0.0917959,0.211964,0.896734,0.861876,0.830306,0.973519,0.641296,0.440845,0.783613,0.856332,0.925988,0.67242,0.170807,0.547186,0.54849,0.203716,0.483899,0.0475669,0.979106,0.50601,0.283378,0.973828,0.222174,0.794184,0.925023,0.285304,0.924239,0.0433797,0.457875,0.723001,0.70291,0.600588,0.239895,0.875815,0.443451,0.499236,0.234114,0.833463,0.4169,0.174239,0.105136,0.468981,0.0399633,0.737521,0.0166121,0.130139,0.446738,0.250212,0.0662649,0.405146,0.522601,0.272128,0.834234,0.308434,0.75139,0.790849,0.553973,0.424862,0.751938,0.819977,0.552959,0.01555,0.00762671,0.21516,0.669916,0.865093,0.199107,0.769332,0.774305,0.956067,0.572445,0.486829,0.734102,0.62279,0.699449,0.161719,0.471718,0.974333,0.149896,0.00537354,0.668994,0.379637,0.301786,0.460479,0.416522,0.696874,0.607204,0.340864,0.0634931,0.497865,0.150531,0.608097,0.35621,0.745032,0.784424,0.00818759,0.999531,0.557841,0.142011,0.213887,0.0230412,0.820942,0.692796,0.705086,0.0615612,0.973107,0.922897,0.181202,0.801423,0.412496,0.366755,0.949778,0.850982,0.970174,0.52268,0.888481,0.796616,0.445254,0.759221,0.5098,0.217332,0.819423,0.335748,0.803505,0.241508,0.442203,0.0081296,0.481095,0.16616,0.342857,0.312459,0.146757,0.800914,0.539837,0.206111,0.877216,0.414035,0.859285,0.460687,0.24071,0.350089,0.344694,0.646341,0.219472,0.439172,0.465896,0.497978,0.511323,0.788576,0.900885,0.33069,0.240006,0.419307,0.740913,0.662506,0.55124,0.849786,0.741832,0.216088,0.803249,0.0800424,0.0877495,0.998662,0.902752,0.509235,0.518603,0.622467,0.00831378,0.573105,0.851076,0.340068,0.454371,0.603821,0.456727,0.625065,0.402424,0.691137,0.634969,0.702378,0.833137,0.899721,0.630602,0.0862016,0.592529,0.355477,0.934878,0.337026,0.275034,0.376229,0.206557,0.631957,0.713976,0.857137,0.971396,0.793256,0.986009,0.0352973,0.310081,0.993628,0.325872,0.53997,0.402808,0.460733,0.802483,0.515233,0.601805,0.379355,0.628476,0.821295,0.767345,0.962216,0.184129,0.781062,0.42851,0.292365,0.700258,0.800655,0.717109,0.379701,0.188352,0.771854,0.793679,0.529211,0.179278,0.79707,0.77896,0.425413,0.705757,0.548522,0.0876956,0.0740175,0.252209,0.493401,0.991854,0.61661,0.62199,0.937444,0.724631,0.65633,0.546646,0.184153,0.0552279,0.41023,0.0833762,0.0541239,0.669759,0.609503,0.306113,0.336507,0.204568,0.61736,0.022674,0.202797,0.481479,0.15361,0.71525,0.242582,0.106518,0.92868,0.474819,0.892081,0.915951,0.426237,0.354382,0.531848,0.22197,0.277117,0.886589,0.709757,0.556659,0.86077,0.789913,0.109234,0.82424,0.0957072,0.242427,0.903125,0.797559,0.646029,0.760448,0.965509,0.0661684,0.0443944,0.916518,0.871143,0.752713,0.155098,0.737382,0.776565,0.548961,0.220782,0.39446,0.822285,0.394249,0.374956,0.801712,0.0684457,0.929512,0.051458,0.900105,0.759595,0.258281,0.353935,0.0546907,0.723268,0.111908,0.997167,0.968354,0.778052,0.880378,0.809951,0.310582,0.500181,0.830441,0.567145,0.120617,0.637292,0.690976,0.23828,0.103398,0.33972,0.545687,0.221786,0.41691,0.942004,0.187871,0.786654,0.431228,0.606818,0.290154,0.777914,0.431702,0.0641419,0.994639,0.0179211,0.217457,0.707062,0.414266,0.638093,0.817574,0.121622,0.762249,0.832848,0.420161,0.563832,0.865546,0.747409,0.217848,0.676043,0.128242,0.852859,0.517129,0.921037,0.453082,0.613374,0.30231,0.748315,0.523892,0.0962011,0.412384,0.255056,0.280126,0.112754,0.48797,0.698534,0.522704,0.391232,0.74284,0.701414,0.750335,0.365443,0.860441,0.960666,0.884957,0.576722,0.921809,0.0789518,0.135371,0.689514,0.456925,0.45164,0.572548,0.620671,0.549816,0.150449,0.059345,0.909332,0.290712,0.948987,0.75706,0.923527,0.501943,0.355851,0.0947921,0.68212,0.136031,0.123812,0.972794,0.538859,0.490872,0.17924,0.454005,0.354865,0.68331,0.766117,0.445085,0.339952,0.595831,0.342813,0.877786,0.268717,0.600522,0.534703,0.0759428,0.203514,0.190919,0.163869,0.962662,0.16276,0.758476,0.821167,0.538086,0.128597,0.297757,0.617295,0.966787,0.718762,0.0648848,0.882287,0.846364,0.0098902,0.161414,0.814853,0.929576,0.824903,0.0590222,0.861157,0.536581,0.389427,0.466902,0.740589,0.638464,0.28265,0.997138,0.963883,0.700761,0.365712,0.781477,0.721645,0.662369,0.544058,0.707857,0.407278,0.20606,0.792851,0.631536,0.595983,0.240894,0.758863,0.728709,0.175947,0.664084,0.714276,0.656719,0.164462,0.161079,0.981775,0.152522,0.698749,0.894333,0.92211,0.897499,0.866489,0.488545,0.275413,0.33267,0.452687,0.307013,0.956421,0.773673,0.133141,0.870316,0.892883,0.544235,0.627757,0.623425,0.293815,0.751198,0.954939,0.788577,0.149396,0.304159,0.618079,0.920807,0.532688,0.29048,0.98049,0.320948,0.844686,0.866475,0.285147,0.382087,0.525195,0.814721,0.932432,0.514041,0.0159067,0.260591,0.846112,0.328584,0.898235,0.223314,0.783524,0.33688,0.637369,0.870702,0.49828,0.895583,0.706066,0.481378,0.826076,0.829513,0.999727,0.922016,0.897211,0.0178846,0.488639,0.674986,0.866426,0.351597,0.935508,0.692693,0.618921,0.00539696,0.511145,0.0347758,0.799469,0.157265,0.782774,0.446556,0.094624,0.0784109,0.721295,0.00517952,0.663647,0.146256,0.879299,0.298579,0.899639,0.969113,0.425593,0.165366,0.535674,0.652643,0.458589,0.965105,0.32686,0.0294112,0.391359,0.501433,0.825469,0.143957,0.968137,0.131523,0.302459,0.47918,0.602457,0.483052,0.402033,0.0410203,0.594069,0.0355469,0.324564,0.927137,0.694736,0.807362,0.218093,0.85645,0.556678,0.315099,0.518729,0.679175,0.966025,0.422738,0.0831969,0.834458,0.401088,0.165509,0.98794,0.810482,0.425986,0.397842,0.110241,0.00773329,0.765721,0.514333,0.0113382,0.70275,0.340288,0.373813,0.701231,0.644394,0.191561,0.0782853,0.970084,0.212553,0.896589,0.295009,0.572613,0.296871,0.294364,0.725531,0.700913,0.975026,0.6211,0.834666,0.334906,0.642324,0.769939,0.419633,0.525245,0.907863,0.730481,0.0745578,0.587351,0.779073,0.561752,0.802842,0.267095,0.57331,0.523269,0.0118845,0.56482,0.0692657,0.372389,0.813534,0.731198,0.187926,0.0720097,0.12059,0.293621,0.53487,0.538011,0.226728,0.831454,0.203114,0.681749,0.682384,0.829792,0.955117,0.877939,0.551194,0.352408,0.974626,0.936838,0.413765,0.949736,0.107712,0.84417,0.534975,0.954769,0.013744,0.294662,0.516715,0.477816,0.105599,0.035535,0.641717,0.597096,0.864127,0.924667,0.941129,0.60735,0.951995,0.415136,0.658398,0.595736,0.345526,|0.262583,0.135178,0.559799,0.468015,0.801371,0.191676,0.250848,0.482921,0.596554,0.473721,0.357317,0.184763,0.913187,0.550037,0.761678,0.174794,0.894295,0.535201,0.833382,0.823345,0.329808,0.639287,0.777951,0.265455,0.16484,0.828227,0.771191,0.0104522,0.876749,0.352323,0.698326,0.669622,0.687504,0.788119,0.642286,0.946642,0.183506,0.724955,0.3577,0.386352,0.995518,0.958161,0.125892,0.939472,0.792779,0.166392,0.588398,0.422052,0.991681,0.40522,0.0853238,0.630228,0.0278684,0.742669,0.155513,0.920443,0.122767,0.688528,0.802348,0.820878,0.555833,0.345135,0.626003,0.05533,0.425498,0.890167,0.279875,0.196734,0.0881906,0.850538,0.0720763,0.377278,0.719543,0.404155,0.515305,0.0224161,0.185162,0.982762,0.491376,0.133022,0.433299,0.418895,0.362045,0.64657,0.750996,0.726682,0.465818,0.246932,0.220248,0.782752,0.406507,0.997974,0.259405,0.446484,0.214664,0.0435736,0.672485,0.964485,0.40214,0.23448,0.660402,0.0265979,0.467609,0.554703,0.384212,0.529122,0.177989,0.163779,0.656941,0.179394,0.692842,0.918466,0.57517,0.283758,0.451974,0.81684,0.0552272,0.563315,0.637111,0.975725,0.480537,0.317009,0.819098,0.834341,0.743289,0.45037,0.0583308,0.702402,0.600639,0.162781,0.65509,0.243152,0.343297,0.719717,0.0353232,0.957069,0.229962,0.823398,0.883205,0.476322,0.978146,0.144943,0.121158,0.181485,0.600746,0.437122,0.875346,0.639464,0.294991,0.662232,0.196848,0.325764,0.946621,0.209804,0.9736,0.990016,0.68038,0.672974,0.0428657,0.783217,0.957832,0.2314,0.98181,0.27621,0.334811,0.684658,0.176862,0.457132,0.924015,0.712816,0.470338,0.764537,0.561755,0.0236881,0.0054388,0.842303,0.960061,0.90452,0.930328,0.206551,0.237218,0.972034,0.466729,0.149534,0.85523,0.314347,0.41523,0.57958,0.174754,0.288974,0.823091,0.192587,0.125089,0.132006,0.185598,0.298469,0.63333,0.119025,0.729472,0.514049,0.125506,0.332546,0.780466,0.521453,0.304846,0.297375,0.0712642,0.775949,0.861723,0.669507,0.516693,0.0875068,0.639695,0.866192,0.702411,0.885492,0.29887,0.481784,0.35195,0.245972,0.400474,0.626169,0.563878,0.853759,0.79904,0.0951043,0.95554,0.706506,0.216095,0.313368,0.351611,0.221898,0.917303,0.873903,0.429703,0.83443,0.242598,0.521507,0.909519,0.625211,0.854671,0.0583885,0.888745,0.570694,0.812668,0.14453,0.380638,0.11863,0.651681,0.0418021,0.275419,0.124985,0.367633,0.623487,0.497047,0.309141,0.287861,0.0136288,0.558496,0.26853,0.789348,0.597304,0.345709,0.494531,0.143556,0.11935,0.201183,0.652459,0.667209,0.649611,0.080053,0.134804,0.585671,0.59337,0.520532,0.00573289,0.621937,0.867399,0.329934,0.553406,0.989615,0.466014,0.728489,0.598601,0.789725,0.33702,0.764442,0.970495,0.388949,0.720429,0.668566,0.827974,0.716544,0.412095,0.565902,0.937296,0.592702,0.220582,0.0373778,0.381054,0.215671,0.536979,0.135099,0.473944,0.405504,0.671914,0.0127074,0.399736,0.160704,0.162899,0.907473,0.172277,0.190126,0.369696,0.730143,0.361357,0.215824,0.964374,0.149786,0.677872,0.314879,0.489246,0.36434,0.507507,0.795211,0.409082,0.857413,0.620872,0.17991,0.330572,0.932313,0.0468838,0.887667,0.0606943,0.316267,0.928658,0.351918,0.38911,0.175709,0.384961,0.767945,0.0824018,0.150521,0.688564,0.74009,0.0907029,0.294778,0.328364,0.845324,0.834829,0.95245,0.898825,0.23524,0.474835,0.272701,0.0521641,0.772167,0.465493,0.275424,0.226926,0.279621,0.359251,0.357461,0.449145,0.20601,0.463655,0.357138,0.920597,0.314086,0.830718,0.490518,0.943158,0.260858,0.102384,0.387195,0.399761,0.387789,0.608665,0.399439,0.473996,0.337748,0.566157,0.770978,0.900506,0.872534,0.448439,0.168526,0.466385,0.306033,0.706068,0.291655,0.624768,0.976555,0.0491505,0.623191,0.628506,0.061458,0.382408,0.463674,0.868126,0.639706,0.0307092,0.191492,0.401132,0.778189,0.392318,0.342008,0.371586,0.558253,0.659898,0.846514,0.832067,0.936671,0.964346,0.109599,0.569307,0.349928,0.534422,0.45012,0.0182829,0.166892,0.68105,0.510966,0.979962,0.933298,0.0796829,0.18473,0.189379,0.0424578,0.228348,0.0076803,0.806767,0.715115,0.442206,0.663858,0.740092,0.00325245,0.688198,0.582761,0.316398,0.355004,0.638176,0.480528,0.644946,0.060948,0.965043,0.695655,0.910323,0.842173,0.269755,0.855139,0.311876,0.488117,0.256055,0.0452936,0.537031,0.13955,0.416092,0.811554,0.679981,0.676907,0.322723,0.739683,0.303645,0.503168,0.420796,0.644271,0.950165,0.116484,0.561497,0.27433,0.515997,0.729556,0.323816,0.289881,0.884258,0.018324,0.247543,0.105391,0.706377,0.744647,0.528197,0.150715,0.484823,0.54052,0.979251,0.248482,0.31701,0.481628,0.592231,0.68683,0.294314,0.63211,0.0641807,0.88895,0.597985,0.226952,0.907724,0.586784,0.180017,0.870663,0.563009,0.291458,0.632279,0.0648907,0.890692,0.307967,0.504035,0.0480254,0.359253,0.341504,0.0146797,0.866258,0.747427,0.019841,0.521941,0.536381,0.980023,0.245895,0.591993,0.328286,0.412543,0.683558,0.802684,0.922107,0.439051,0.291861,0.902131,0.726621,0.800655,0.0646787,0.814014,0.848836,0.542192,0.967332,0.0331254,0.763467,0.561191,0.660537,0.0551406,0.738342,0.12123,0.624437,0.656233,0.198822,0.0817232,0.764979,0.323377,0.532098,0.155848,0.687418,0.234369,0.335842,0.721036,0.0631918,0.109674,0.230753,0.320951,0.462675,0.418965,0.104587,0.606092,0.0724396,0.0847402,0.92971,0.627367,0.158835,0.291002,0.606267,0.756614,0.936736,0.481137,0.799674,0.24209,0.446273,0.607639,0.160791,0.586626,0.702014,0.771479,0.39722,0.168948,0.111777,0.0696391,0.183812,0.52949,0.471767,0.15683,0.769709,0.391618,0.400834,0.336919,0.702555,0.91479,0.528595,0.913504,0.349589,0.407352,0.894649,0.430705,0.691947,0.457078,0.0201678,0.460486,0.788429,0.873622,0.908874,0.74479,0.629244,0.524908,0.0309355,0.649326,0.227036,0.157048,0.87233,0.59621,0.524068,0.04021,0.795506,0.127671,0.277517,0.206551,0.756768,0.282762,0.021272,0.956567,0.316672,0.692944,0.319197,0.141238,0.423944,0.191842,0.0819668,0.436041,0.0902666,0.181997,0.028003,0.0700864,0.736266,0.676243,0.461457,0.180776,0.644576,0.718845,0.647864,0.447542,0.122054,0.892711,0.434942,0.390474,0.066725,0.595417,0.40704,0.124532,0.167846,0.269449,0.451681,0.130322,0.81822,0.50715,0.893717,0.649237,0.118926,0.94866,0.730748,0.686562,0.606658,0.507866,0.565337,0.197396,0.773004,0.40269,0.247818,0.132535,0.708722,0.0775571,0.700993,0.448093,0.829541,0.842904,0.951903,0.100555,0.0250032,0.419996,0.831724,0.888908,0.49292,0.478457,0.159267,0.740957,0.924538,0.596362,0.568959,0.819348,0.764291,0.113908,0.0290558,0.887625,0.834651,0.452905,0.936327,0.505424,0.146082,0.982453,0.309177,0.893792,0.973609,0.983898,0.666944,0.868253,0.44077,0.7743,0.447523,0.033209,0.105706,0.0153825,0.296427,0.503886,0.786177,0.954665,0.0403387,0.334355,0.184222,0.569623,0.193898,0.557549,0.129827,0.562281,0.711185,0.902918,0.910258,0.888133,0.850533,0.553758,0.343389,0.482782,0.625796,0.874442,0.50011,0.92896,0.635985,0.907591,0.110572,0.513553,0.273815,0.143818,0.748,0.65758,0.0496184,0.345927,0.957266,0.962502,0.424658,0.982453,0.837693,0.0622763,0.182665,0.468779,0.533383,0.275079,0.337205,0.79901,0.112339,0.516585,0.188553,0.302165,0.535907,0.0185606,0.127656,0.039936,0.891372,0.973473,0.525416,0.0462735,0.961008,0.464455,0.463689,0.0976662,0.122408,0.385059,0.425619,0.584072,0.0966158,0.476087,0.616687,0.682778,0.589261,0.79244,0.889113,0.438577,0.266153,0.770321,0.78033,0.807715,0.256458,0.744856,0.767476,0.830478,0.588211,0.368017,0.821586,0.528029,0.390024,0.405587,0.0950798,0.386507,0.860847,0.788909,0.453452,0.174256,0.395726,0.398394,0.235153,0.479272,0.577938,0.759136,0.498757,0.723294,0.813879,0.486659,0.138435,0.351951,0.546051,0.988065,0.397889,0.246336,0.570422,0.512678,0.842867,0.851821,0.656466,0.848471,0.97524,0.869817,0.583858,0.882775,0.312007,0.424369,0.79483,0.781536,0.407022,0.680401,0.442759,0.318828,0.925762,0.201194,0.480571,0.81352,0.453048,0.306717,0.559354,0.345827,0.284244,0.807979,0.757055,0.550639,0.662641,0.936946,0.135724,0.599694,0.565582,0.235523,0.663169,0.293049,0.821322,0.83586,0.51497,0.972818,0.216478,0.474754,0.683813,0.157741,0.814378,0.700957,0.831603,0.0782121,0.0856901,0.638395,0.456946,0.765988,0.378293,0.0484641,0.245325,0.226974,0.409688,0.976745,0.77632,0.190742,0.885016,0.29141,0.279979,0.6962,0.918628,0.26624,0.407261,0.299263,0.79774,0.977742,0.00197875,0.324514,0.83944,0.558371,0.980208,0.828056,0.991572,0.541001,0.986703,0.961621,0.0496393,0.245923,0.804419,0.344618,0.310805,0.432575,0.984859,0.175363,0.693412,0.640468,0.0670853,0.194645,0.911341,0.873423,0.045265,0.975595,0.704975,0.377189,0.44155,0.107602,0.626115,0.807095,0.235673,0.808828,0.708832,0.977415,0.328438,0.370819,0.0200058,0.0301391,0.0826859,0.11481,0.204077,0.93087,0.648884,0.72317,0.773719,0.190671,0.327275,0.684037,0.265435,0.280693,0.975224,0.492464,0.710376,0.381319,0.793451,0.659688,0.00379092,0.118717,0.758474,0.489451,0.0476096,0.92193,0.61419,0.654985,0.860677,0.437263,0.162755,0.885514,0.515083,0.200443,0.678158,0.409526,0.439559,0.264106,0.287354,0.128564,0.317533,0.47307,0.69748,0.865326,0.804612,0.922523,0.680053,0.338621,0.685581,0.698655,0.819687,0.182021,0.237225,0.484905,0.0821254,0.452385,0.491508,0.139865,0.0542403,0.054967,0.415656,0.142885,0.769506,0.751226,|0.461291,0.724582,0.152862,0.437554,0.730719,0.0894431,0.443469,0.05688,0.632919,0.357863,0.933851,0.872036,0.861305,0.733777,0.400983,0.0809377,0.20039,0.818919,0.855233,0.545423,0.67986,0.27012,0.483122,0.347606,0.996228,0.689884,0.489512,0.683828,0.548745,0.21782,0.501209,0.597508,0.410049,0.792296,0.0495543,0.466418,0.940165,0.765761,0.439479,0.892142,0.666569,0.417559,0.0552679,0.391982,0.903587,0.828344,0.0162126,0.640128,0.58348,0.997827,0.276987,0.114865,0.714477,0.353318,0.826295,0.460367,0.975522,0.916381,0.532273,0.162335,0.873927,0.340271,0.0244136,0.306955,0.237604,0.894066,0.262243,0.710021,0.582764,0.182435,0.406939,0.67534,0.696262,0.238441,0.580859,0.258208,0.901727,0.934633,0.438939,0.678832,0.569943,0.0313287,0.686663,0.499779,0.298581,0.448636,0.701404,0.302045,0.116557,0.411297,0.532651,0.886071,0.719969,0.787067,0.154645,0.916454,0.334093,0.876656,0.953835,0.636712,0.566806,0.812683,0.983574,0.99807,0.537808,0.923432,0.676915,0.733639,0.149454,0.661778,0.0920045,0.758752,0.692785,0.719224,0.492688,0.953784,0.544588,0.723787,0.616977,0.0307184,0.389171,0.634189,0.00339472,0.699962,0.963531,0.278669,0.745191,0.303484,0.308704,0.279639,0.0841129,0.137732,0.393202,0.0288535,0.0392742,0.163898,0.62223,0.0327845,0.874277,0.865655,0.577059,0.54153,0.255056,0.816209,0.260401,0.812355,0.0752633,0.451305,0.614799,0.257178,0.800671,0.269814,0.75721,0.59341,0.822461,0.781737,0.6076,0.363355,0.857466,0.696029,0.876043,0.241191,0.261645,0.29871,0.0675325,0.672053,0.790287,0.907453,0.878888,0.99423,0.236965,0.267952,0.526566,0.845792,0.214261,0.727772,0.899646,0.973664,0.599229,0.499418,0.933055,0.131007,0.521307,0.559881,0.0990488,0.0109559,0.447803,0.543802,0.00761008,0.140351,0.907681,0.306906,0.265555,0.228852,0.979117,0.922926,0.153554,0.367874,0.604521,0.906436,0.164537,0.851737,0.125539,0.767278,0.275534,0.914646,0.024352,0.337143,0.0473703,0.0208266,0.227045,0.0779747,0.939355,0.431284,0.92623,0.181152,0.546199,0.154786,0.0897216,0.605149,0.209536,0.753187,0.625877,0.280471,0.542014,0.0365964,0.912136,0.410003,0.559711,0.140246,0.867482,0.362315,0.515973,0.196287,0.497864,0.771848,0.979243,0.593386,0.616769,0.255518,0.0288153,0.400442,0.0452033,0.898603,0.468505,0.921031,0.0789925,0.896987,0.843993,0.886677,0.332461,0.0316649,0.865898,0.506135,0.76029,0.203559,0.00816721,0.293654,0.0178102,0.617443,0.791478,0.216708,0.429078,0.71256,0.848586,0.767343,0.166938,0.234451,0.336673,0.286606,0.144494,0.681173,0.856644,0.301264,0.835568,0.209236,0.208464,0.427488,0.499858,0.801452,0.944669,0.23357,0.530978,0.857645,0.852409,0.191334,0.80331,0.976717,0.190923,0.202104,0.530954,0.63771,0.352178,0.484562,0.784391,0.856985,0.883724,0.332783,0.783561,0.00965208,0.673948,0.70403,0.278858,0.113151,0.734287,0.945487,0.377049,0.577132,0.588553,0.162471,0.0682248,0.274863,0.35822,0.782308,0.929211,0.993819,0.333776,0.297796,0.935289,0.901329,0.426534,0.383561,0.476772,0.637706,0.301283,0.667378,0.668432,0.568912,0.37447,0.231893,0.910188,0.0450475,0.0847556,0.397985,0.107292,0.328566,0.913279,0.780745,0.622474,0.515913,0.747721,0.31351,0.580664,0.113607,0.148314,0.646863,0.850702,0.0332868,0.160673,0.219705,0.263664,0.258261,0.539893,0.333402,0.159688,0.106878,0.637118,0.852236,0.503352,0.207074,0.238606,0.795455,0.245063,0.243001,0.287267,0.981511,0.852069,0.552785,0.602734,0.426909,0.758294,0.47621,0.724099,0.0404433,0.659189,0.819534,0.798855,0.347534,0.710287,0.526964,0.604425,0.808238,0.49225,0.328548,0.0623698,0.161175,0.643192,0.275911,0.0636247,0.3899,0.541907,0.770954,0.219605,0.639642,0.103887,0.082319,0.888241,0.531324,0.676343,0.788582,0.56228,0.12684,0.292589,0.954258,0.590239,0.589255,0.569302,0.0657867,0.008564,0.674396,0.58357,0.0210055,0.934169,0.69163,0.161242,0.555932,0.329338,0.223251,0.39457,0.0266021,0.657498,0.923523,0.509315,0.377036,0.0122482,0.85815,0.514565,0.213677,0.0603738,0.822765,0.311717,0.525124,0.669856,0.79659,0.266212,0.552911,0.777454,0.902382,0.748215,0.355817,0.841458,0.749476,0.0327842,0.469731,0.822748,0.323526,0.777145,0.35179,0.147853,0.401411,0.6431,0.21632,0.255841,0.168328,0.602926,0.292289,0.197403,0.686185,0.892705,0.398797,0.148264,0.957444,0.451278,0.379671,0.392818,0.981493,0.242136,0.680678,0.373395,0.575682,0.671978,0.545456,0.122386,0.624652,0.771095,0.900143,0.516488,0.394614,0.907748,0.443819,0.161756,0.683625,0.53352,0.0995261,0.0530416,0.684383,0.425581,0.789956,0.225163,0.265046,0.480396,0.608778,0.495201,0.573495,0.329639,0.99352,0.151605,0.290364,0.59168,0.858263,0.234917,0.84339,0.36373,0.132349,0.0125899,0.283539,0.898085,0.403167,0.893093,0.471715,0.819909,0.254651,0.0226851,0.639985,0.448718,0.464742,0.648843,0.648911,0.964759,0.765911,0.0343331,0.052167,0.631503,0.616,0.885137,0.508934,0.250574,0.193675,0.14394,0.370024,0.786288,0.16654,0.079817,0.0964544,0.749164,0.884278,0.392962,0.026051,0.398383,0.889388,0.143399,0.43125,0.626795,0.772259,0.279044,0.774554,0.8359,0.659917,0.444611,0.179068,0.894965,0.978409,0.950947,0.692601,0.28788,0.758484,0.613707,0.850751,0.705272,0.274622,0.728247,0.726474,0.856875,0.701455,0.792192,0.950316,0.771008,0.879026,0.583212,0.919299,0.408156,0.230927,0.35997,0.0196669,0.7708,0.445343,0.23489,0.447376,0.0862497,0.570735,0.547531,0.039735,0.168389,0.0853251,0.768013,0.807847,0.241574,0.375456,0.894559,0.270957,0.467547,0.429951,0.305971,0.58925,0.464081,0.736154,0.910803,0.0850493,0.822125,0.616139,0.340921,0.629154,0.942124,0.394345,0.305691,0.00781441,0.147507,0.319901,0.664455,0.377762,0.0118817,0.358378,0.934746,0.438359,0.0991154,0.105301,0.433729,0.318172,0.633244,0.467082,0.960242,0.728572,0.7684,0.867554,0.224369,0.954631,0.0504014,0.459587,0.886186,0.534542,0.56474,0.0788668,0.00653219,0.917487,0.756618,0.480995,0.863119,0.95107,0.0498904,0.0967419,0.337925,0.477326,0.651108,0.49593,0.795417,0.360327,0.976191,0.808483,0.0373265,0.621754,0.0912888,0.188048,0.787147,0.494802,0.0657767,0.612453,0.0555069,0.442742,0.21195,0.449055,0.683027,0.464953,0.783831,0.863216,0.725186,0.635989,0.222139,0.924198,0.219379,0.498718,0.142169,0.26958,0.916874,0.544664,0.293597,0.792284,0.711033,0.858832,0.322579,0.899362,0.525089,0.952687,0.146443,0.0152444,0.245775,0.974733,0.207992,0.629765,0.397181,0.26835,0.187097,0.958323,0.261266,0.936608,0.694917,0.142366,0.930693,0.704968,0.373562,0.962095,0.0996575,0.327366,0.0928755,0.750864,0.504279,0.863197,0.718318,0.594883,0.911287,0.158421,0.745878,0.27043,0.803234,0.602843,0.889215,0.0582603,0.608077,0.52932,0.464297,0.025794,0.981849,0.0711014,0.949802,0.974446,0.00984025,0.601613,0.592638,0.966206,0.642817,0.924669,0.292763,0.59074,0.801021,0.915882,0.421527,0.0610572,0.567424,0.0238133,0.908758,0.439351,0.4375,0.776841,0.315731,0.754281,0.598856,0.690351,0.295389,0.0868095,0.182272,0.672802,0.767934,0.826753,0.880469,0.29112,0.214616,0.895981,0.255256,0.956486,0.143033,0.321939,0.947375,0.707861,0.834543,0.802598,0.575348,0.766171,0.345966,0.884803,0.0491832,0.029805,0.635952,0.825401,0.0417253,0.963062,0.21491,0.928193,0.878984,0.664187,0.759375,0.848229,0.706767,0.424257,0.221088,0.754533,0.883806,0.443672,0.265429,0.927452,0.380105,0.947158,0.356564,0.502944,0.948495,0.625583,0.353064,0.490211,0.0361639,0.942774,0.0428581,0.948006,0.183566,0.707007,0.943055,0.0981774,0.387328,0.00905949,0.73618,0.546056,0.481646,0.0190521,0.665435,0.794558,0.534222,0.47352,0.23239,0.274737,0.0440841,0.41344,0.424055,0.454064,0.858991,0.301397,0.258035,0.598474,0.369325,0.757592,0.717105,0.000863552,0.261213,0.699848,0.361928,0.426933,0.0871085,0.0107876,0.625277,0.747634,0.77262,0.662934,0.917823,0.953915,0.357136,0.398901,0.445988,0.977038,0.259438,0.542138,0.935545,0.438065,0.305035,0.380227,0.994943,0.422969,0.0573702,0.842813,0.308644,0.272071,0.986341,0.323447,0.535877,0.468645,0.943081,0.459484,0.263195,0.800486,0.238572,0.0421971,0.429215,0.581678,0.0305441,0.986073,0.344535,0.409005,0.0365779,0.774315,0.00501835,0.416274,0.607965,0.859637,0.146793,0.677739,0.0279099,0.218596,0.892716,0.212034,0.35416,0.0193725,0.672236,0.944599,0.486251,0.238238,0.0867005,0.845717,0.40909,0.343197,0.650674,0.760915,0.0523336,0.0866271,0.0798562,0.85617,0.155915,0.48127,0.957158,0.751274,0.00472277,0.781668,0.24441,0.695265,0.748788,0.236113,0.654853,0.207975,0.423454,0.21139,0.648638,0.993447,0.700909,0.584495,0.600802,0.792434,0.374971,0.198802,0.361037,0.934873,0.256634,0.685309,0.335767,0.428313,0.730199,0.274279,0.973304,0.687858,0.570108,0.753473,0.856224,0.891384,0.744178,0.45032,0.629608,0.10958,0.591549,0.903597,0.337939,0.935288,0.580207,0.329952,0.370384,0.794151,0.896,0.301083,0.616846,0.400693,0.412504,0.865425,0.818254,0.378717,0.550932,0.139794,0.129631,0.406252,0.886908,0.174795,0.381368,0.723739,0.466889,0.105727,0.863938,0.900205,0.588044,0.153043,0.0711933,0.649256,0.287198,0.394099,0.803764,0.134798,0.300863,0.643271,0.124053,0.391752,0.239411,0.0609644,0.919159,0.27273,0.891717,0.555224,0.301648,0.701362,0.724211,0.924641,0.911428,0.783331,0.164467,0.283756,0.571962,0.455084,0.508381,0.630465,0.20722,0.806932,|0.12677,0.248274,0.286824,0.0216261,0.34385,0.873812,0.70578,0.554855,0.0976233,0.580359,0.334938,0.404153,0.406558,0.0233258,0.880849,0.605552,0.486406,0.244253,0.301748,0.87828,0.709776,0.204539,0.845504,0.0982009,0.036074,0.551831,0.129003,0.104468,0.357074,0.44627,0.674812,0.920544,0.551812,0.54695,0.865169,0.19518,0.706319,0.401174,0.891152,0.294451,0.568813,0.428127,0.666896,0.757032,0.367223,0.231819,0.499758,0.0163885,0.762408,0.61271,0.919172,0.338712,0.769819,0.547919,0.109414,0.83011,0.682822,0.807112,0.739717,0.287893,0.435676,0.162759,0.0253771,0.752275,0.504237,0.318725,0.92006,0.356413,0.13623,0.355391,0.175935,0.134626,0.478216,0.370158,0.549232,0.831871,0.440049,0.259221,0.113442,0.625076,0.987807,0.845576,0.144778,0.477151,0.879543,0.897654,0.567465,0.531502,0.313121,0.022333,0.281151,0.876706,0.673912,0.571554,0.901578,0.321122,0.364065,0.998909,0.762086,0.24921,0.840655,0.716174,0.695319,0.328706,0.592415,0.882036,0.404182,0.615092,0.330304,0.0892563,0.245053,0.188167,0.09991,0.712832,0.916583,0.786153,0.215712,0.251954,0.149554,0.500083,0.0442966,0.816815,0.557873,0.342313,0.0798858,0.508019,0.508928,0.698158,0.843661,0.281641,0.403902,0.711034,0.444755,0.798412,0.0788219,0.463623,0.0781375,0.998867,0.742455,0.193985,0.280555,0.467423,0.527084,0.757119,0.0425884,0.0650364,0.723648,0.362988,0.777356,0.483988,0.319509,0.0928349,0.24252,0.794817,0.699334,0.653106,0.184389,0.501451,0.881898,0.550618,0.7502,0.269356,0.849162,0.0547757,0.502723,0.198314,0.713549,0.80644,0.832321,0.392141,0.450834,0.687616,0.971997,0.124531,0.443179,0.585744,0.18282,0.114795,0.569822,0.0520263,0.780162,0.847275,0.581677,0.484414,0.848524,0.577546,0.847379,0.637625,0.478159,0.0495238,0.158934,0.465719,0.447739,0.957644,0.553133,0.185871,0.133469,0.744462,0.505956,0.505824,0.667984,0.612074,0.410268,0.947849,0.563679,0.237291,0.904058,0.477351,0.325251,0.792772,0.873555,0.583127,0.31234,0.73856,0.990118,0.826045,0.20277,0.963314,0.738681,0.351759,0.324028,0.214134,0.252675,0.967556,0.908614,0.752295,0.670267,0.800987,0.197056,0.497939,0.120911,0.922036,0.818383,0.102003,0.231744,0.958159,0.851858,0.409314,0.0131637,0.673798,0.0167983,0.860465,0.204477,0.475115,0.0854285,0.0901812,0.60337,0.371571,0.414156,0.664648,0.930336,0.441861,0.241095,0.071663,0.0533025,0.954692,0.505726,0.97625,0.387331,0.129372,0.839889,0.256243,0.0357799,0.455833,0.375355,0.766843,0.145141,0.855993,0.635285,0.187209,0.723193,0.097833,0.767626,0.730149,0.435728,0.46196,0.349245,0.878675,0.738489,0.92624,0.908058,0.917777,0.281585,0.248584,0.0768542,0.784415,0.455319,0.512937,0.671843,0.0854193,0.631036,0.937366,0.52294,0.0164977,0.243578,0.324621,0.242441,0.746721,0.916754,0.0243083,0.207894,0.0142869,0.587197,0.654021,0.393154,0.0529442,0.335654,0.190214,0.504851,0.993293,0.542047,0.111034,0.00412393,0.237002,0.0107258,0.202262,0.665095,0.235553,0.546152,0.956299,0.0615099,0.337164,0.171442,0.500785,0.13455,0.984223,0.479133,0.586631,0.667977,0.218586,0.432837,0.768555,0.41519,0.337236,0.0634827,0.0865875,0.00531101,0.564112,0.223086,0.960279,0.953074,0.230144,0.177865,0.641728,0.376974,0.454793,0.978399,0.253132,0.736931,0.110463,0.25757,0.75267,0.011775,0.337988,0.00330389,0.519146,0.446141,0.855724,0.5622,0.223314,0.0747374,0.827145,0.646171,0.635597,0.931294,0.507705,0.961326,0.449082,0.727848,0.414277,0.256701,0.333371,0.715584,0.867377,0.32771,0.0623828,0.991973,0.924873,0.727432,0.280775,0.730206,0.402334,0.844183,0.649408,0.876856,0.930285,0.862915,0.196651,0.393489,0.816205,0.376232,0.44865,0.205787,0.0873454,0.366378,0.47378,0.591396,0.730365,0.700539,0.272447,0.0643611,0.853797,0.935707,0.887977,0.424284,0.864237,0.249429,0.814456,0.888925,0.0467152,0.377898,0.0806982,0.647271,0.869148,0.971843,0.259507,0.322894,0.449842,0.369694,0.270662,0.783366,0.958541,0.154518,0.843816,0.0754487,0.936899,0.596017,0.257479,0.961803,0.960268,0.699964,0.759796,0.901808,0.748494,0.494925,0.39015,0.753988,0.282653,0.662817,0.361428,0.184895,0.267651,0.454099,0.569256,0.0469784,0.966061,0.806268,0.909705,0.614648,0.425841,0.220965,0.240282,0.133534,0.582523,0.965098,0.731047,0.401936,0.944413,0.126562,0.66169,0.191231,0.395434,0.6539,0.942458,0.103529,0.51636,0.688734,0.202278,0.242625,0.33811,0.703675,0.272974,0.256889,0.978863,0.942271,0.489726,0.383233,0.416056,0.178886,0.687271,0.714752,0.878564,0.483949,0.474548,0.251297,0.498211,0.165832,0.784147,0.414458,0.0551197,0.309749,0.500986,0.954776,0.955862,0.262436,0.859166,0.204723,0.540963,0.546308,0.662245,0.0264196,0.677184,0.658867,0.752876,0.461652,0.728335,0.74638,0.439287,0.596287,0.16992,0.563388,0.325444,0.00388503,0.508153,0.628504,0.731964,0.117621,0.792652,0.513345,0.756234,0.0972645,0.449225,0.266186,0.0368971,0.526647,0.604819,0.15029,0.25739,0.739324,0.729013,0.720654,0.26252,0.00642008,0.443072,0.70234,0.472133,0.335976,0.0147941,0.602549,0.237237,0.738597,0.431046,0.899942,0.119546,0.780681,0.803943,0.13557,0.413677,0.433168,0.541748,0.943859,0.76691,0.576503,0.18982,0.404389,0.241988,0.32817,0.220936,0.458137,0.244577,0.26091,0.196582,0.788016,0.627354,0.214736,0.22428,0.519454,0.518513,0.617204,0.497994,0.893317,0.589136,0.367038,0.718774,0.939693,0.392387,0.982509,0.829435,0.594637,0.0302844,0.954045,0.511898,0.063426,0.707402,0.361127,0.705171,0.35379,0.266847,0.0122816,0.392155,0.587637,0.634884,0.188267,0.24782,0.358359,0.694162,0.217389,0.855624,0.135453,0.817628,0.714203,0.964879,0.741594,0.91319,0.338041,0.120408,0.110842,0.0749628,0.430117,0.693168,0.148009,0.304451,0.46838,0.949555,0.595329,0.579316,0.0931446,0.600007,0.63793,0.254264,0.859407,0.356381,0.299965,0.501805,0.1826,0.718979,0.158257,0.980502,0.238001,0.296537,0.0615922,0.277138,0.0615959,0.167775,0.463554,0.20667,0.813012,0.158347,0.829898,0.22226,0.187713,0.235077,0.682749,0.5418,0.442658,0.022186,0.919222,0.677305,0.406508,0.94569,0.378222,0.469579,0.493187,0.479437,0.380023,0.293324,0.288574,0.285864,0.425774,0.274376,0.68316,0.0755357,0.148073,0.718228,0.6679,0.715009,0.983014,0.498516,0.315558,0.236843,0.607464,0.904888,0.388873,0.859709,0.19751,0.700071,0.811903,0.398336,0.48193,0.552209,0.808668,0.900482,0.650677,0.824865,0.671085,0.212569,0.147236,0.673899,0.255508,0.379764,0.41283,0.0438718,0.766005,0.694884,0.995168,0.0681594,0.846629,0.666016,0.000381351,0.567162,0.931029,0.884148,0.250344,0.646587,0.779681,0.640313,0.746484,0.846829,0.766107,0.685531,0.083938,0.388669,0.884288,0.969775,0.622762,0.131047,0.112902,0.300435,0.283528,0.920366,0.356906,0.650013,0.373425,0.167314,0.213897,0.924321,0.154103,0.295073,0.250492,0.603144,0.726021,0.908125,0.657734,0.334065,0.119055,0.438408,0.380709,0.222994,0.502009,0.375318,0.956367,0.907649,0.581412,0.466282,0.912025,0.854431,0.987448,0.590722,0.237642,0.967039,0.278058,0.444016,0.365996,0.94045,0.637066,0.793046,0.0708152,0.0299903,0.0874014,0.606228,0.577941,0.588401,0.904726,0.025559,0.92337,0.818408,0.0432328,0.0143605,0.620817,0.341189,0.526495,0.178766,0.499786,0.549269,0.571461,0.693715,0.495356,0.111759,0.858177,0.504284,0.123197,0.0851464,0.427645,0.666395,0.813584,0.0581004,0.920964,0.654877,0.548124,0.104623,0.265596,0.846183,0.593793,0.304562,0.4463,0.0342575,0.108037,0.448693,0.356026,0.113572,0.295407,0.79603,0.568318,0.0610761,0.159492,0.723059,0.305706,0.397288,0.753607,0.707459,0.849547,0.529908,0.800633,0.0624288,0.876395,0.928711,0.766032,0.210563,0.354089,0.652283,0.889448,0.337747,0.616107,0.859699,0.613996,0.149977,0.758655,0.910706,0.246407,0.153168,0.874805,0.991929,0.184194,0.917777,0.752176,0.957136,0.254143,0.205951,0.27565,0.422623,0.919433,0.825592,0.95906,0.598067,0.544661,0.565516,0.715675,0.383152,0.399146,0.0342106,0.518462,0.532463,0.394687,0.643931,0.0288261,0.276505,0.185591,0.533535,0.969988,0.454866,0.132468,0.519089,0.881612,0.318118,0.490717,0.815762,0.869295,0.0413727,0.857741,0.191784,0.886955,0.563857,0.795649,0.2164,0.98513,0.12328,0.0945736,0.245,0.143729,0.026301,0.943229,0.768669,0.20467,0.900854,0.741068,0.466517,0.840999,0.030827,0.537111,0.0614551,0.12834,0.663291,0.125998,0.323394,0.771282,0.196236,0.225438,0.381827,0.61854,0.909979,0.170905,0.170549,0.696448,0.104455,0.015354,0.457882,0.929325,0.189804,0.99673,0.95137,0.661789,0.448865,0.437585,0.373071,0.571686,0.98319,0.659704,0.0413365,0.697275,0.140018,0.179359,0.252499,0.544977,0.925481,0.343345,0.230862,0.347977,0.267212,0.245552,0.825624,0.504987,0.363618,0.78071,0.631063,0.444372,0.49897,0.623559,0.534737,0.960862,0.728728,0.80713,0.311786,0.847987,0.389606,0.746924,0.9879,0.606877,0.798208,0.633562,0.479192,0.669044,0.924948,0.0290502,0.229518,0.563171,0.223683,0.894241,0.86044,0.1309,0.0755643,0.55002,0.311686,0.847595,0.737913,0.818004,0.580765,0.973112,0.265137,0.917235,0.94852,0.446286,0.100748,0.870428,0.00389653,0.173961,0.829495,0.430991,0.743234,0.471694,0.586873,0.55109,0.896459,0.935478,0.748423,0.530697,0.511381,0.730214,0.448371,0.995314,0.0923809,0.327262,0.0865179,0.242995,0.217855,0.83511,0.617265,0.119037,0.887622,0.638805,0.280006,|0.0887182,0.925276,0.534991,0.349333,0.888493,0.168037,0.963126,0.947558,0.028733,0.265267,0.185112,0.416879,0.225593,0.643565,0.507084,0.289684,0.557857,0.599114,0.925559,0.332105,0.933266,0.202479,0.727817,0.50983,0.156522,0.76895,0.421387,0.0890968,0.829095,0.239384,0.21563,0.132844,0.637573,0.0678303,0.294846,0.769329,0.721139,0.421904,0.027676,0.0771319,0.62324,0.248655,0.616316,0.08044,0.170591,0.111999,0.762118,0.170939,0.364438,0.773755,0.430127,0.308061,0.0442907,0.933278,0.773703,0.987262,0.534579,0.572822,0.807585,0.371952,0.788763,0.50298,0.847115,0.192022,0.0403112,0.107116,0.554379,0.497967,0.63599,0.560134,6.96182e-05,0.563648,0.498643,0.407039,0.972965,0.568594,0.734913,0.364593,0.573011,0.597586,0.602085,0.879897,0.795222,0.63321,0.284291,0.647156,0.610643,0.0551419,0.214374,0.874158,0.880779,0.552004,0.192602,0.0284291,0.134485,0.849909,0.910642,0.0440314,0.370476,0.618695,0.946675,0.967576,0.474655,0.330509,0.844195,0.613041,0.776729,0.938606,0.841913,0.248039,0.060389,0.794507,0.419444,0.739451,0.988145,0.295931,0.447839,0.14875,0.980971,0.93804,0.720575,0.105453,0.418682,0.986765,0.80247,0.841261,0.126583,0.483867,0.176944,0.0678277,0.982421,0.820804,0.696155,0.258932,0.788445,0.0726359,0.410912,0.134626,0.275721,0.113468,0.965326,0.621258,0.893573,0.242943,0.0668795,0.443925,0.96612,0.758517,0.0961255,0.691649,0.811581,0.693637,0.452971,0.882363,0.932314,0.964146,0.416221,0.369035,0.111096,0.545558,0.508378,0.499791,0.709011,0.69276,0.629848,0.946831,0.878198,0.998439,0.118613,0.819384,0.0652494,0.245596,0.677543,0.437988,0.0393715,0.671178,0.330684,0.281546,0.611436,0.25901,0.0308581,0.274199,0.126752,0.915547,0.693968,0.222143,0.178412,0.262394,0.538097,0.911223,0.839195,0.551575,0.777945,0.43077,0.0859631,0.596182,0.623122,0.481205,0.462041,0.793387,0.0407721,0.567099,0.484752,0.894669,0.589289,0.284912,0.703419,0.204301,0.200877,0.19079,0.632679,0.241935,0.767033,0.555034,0.463564,0.0892595,0.218305,0.781946,0.652952,0.147947,0.801854,0.601267,0.317513,0.0450107,0.124062,0.531831,0.282,0.114294,0.165803,0.322981,0.388102,0.750343,0.673999,0.82809,0.0153873,0.157106,0.408637,0.836362,0.0694541,0.212327,0.144688,0.462205,0.522189,0.800245,0.315612,0.699338,0.0632542,0.336937,0.491501,0.275825,0.690204,0.758693,0.898282,0.176635,0.635862,0.408031,0.036607,0.295522,0.811371,0.315431,0.0018605,0.860524,0.673395,0.398771,0.545487,0.817812,0.664941,0.293098,0.05126,0.15283,0.393728,0.93905,0.559687,0.330095,0.816016,0.927999,0.587557,0.709568,0.856228,0.534232,0.449526,0.935245,0.206748,0.0689617,0.516389,0.379535,0.928322,0.135707,0.313124,0.267197,0.997038,0.608462,0.295499,0.402976,0.321628,0.650442,0.931125,0.375461,0.764708,0.0600676,0.458671,0.611618,0.236519,0.832718,0.98498,0.566796,0.676244,0.637478,0.737055,0.923778,0.89561,0.664437,0.312289,0.939168,0.823128,0.032461,0.836342,0.185418,0.921572,0.561182,0.259939,0.978581,0.50427,0.723111,0.622686,0.531318,0.952871,0.731246,0.834448,0.029946,0.0419613,0.878975,0.120103,0.0540155,0.141276,0.355737,0.520134,0.800635,0.646281,0.619474,0.524833,0.771281,0.371205,0.904348,0.580522,0.838168,0.927432,0.55253,0.284949,0.845357,0.960689,0.515776,0.434596,0.348108,0.206305,0.567825,0.410783,0.718567,0.871627,0.68297,0.687439,0.402765,0.35325,0.0168829,0.0783159,0.910444,0.732464,0.17809,0.642529,0.0364596,0.646841,0.444959,0.258939,0.20701,0.604783,0.919073,0.872078,0.911907,0.267181,0.490201,0.400259,0.896287,0.978362,0.965175,0.981777,0.246641,0.854636,0.331749,0.483116,0.307037,0.675809,0.754958,0.651867,0.547661,0.454445,0.700038,0.889607,0.992526,0.579981,0.273232,0.568325,0.121252,0.505364,0.891639,0.142305,0.321958,0.220211,0.257149,0.541549,0.504554,0.158375,0.525734,0.216166,0.749703,0.614736,0.243964,0.981226,0.348004,0.282628,0.414113,0.798706,0.842667,0.158912,0.537905,0.304726,0.976784,0.916557,0.657927,0.0235313,0.43789,0.356296,0.37503,0.521126,0.0438902,0.765953,0.379546,0.226368,0.631137,0.790443,0.304023,0.723008,0.71604,0.0556467,0.706537,0.484331,0.387561,0.376026,0.155984,0.260513,0.577809,0.53732,0.997418,0.25111,0.358817,0.51776,0.447868,0.149353,0.352638,0.387891,0.565407,0.0135257,0.447382,0.338381,0.0350254,0.816521,0.79292,0.167508,0.685239,0.105729,0.00542891,0.974408,0.486165,0.780414,0.778273,0.565793,0.270956,0.408802,0.234644,0.625612,0.675952,0.480676,0.956257,0.144364,0.24189,0.587688,0.540341,0.195894,0.226776,0.9386,0.725383,0.961889,0.953599,0.71669,0.380012,0.917244,0.708511,0.249939,0.412414,0.937498,0.354316,0.416214,0.0245677,0.0425091,0.537364,0.4621,0.0737588,0.319298,0.109382,0.376052,0.410559,0.345338,0.33944,0.0123918,0.922172,0.0497051,0.32222,0.485755,0.742871,0.42347,0.502276,0.13561,0.308537,0.197445,0.605693,0.0840204,0.27483,0.252924,0.428865,0.834497,0.807807,0.93927,0.188598,0.366941,0.0128547,0.24806,0.542239,0.060925,0.0510824,0.614349,0.203979,0.821782,0.679883,0.374494,0.360846,0.644056,0.944941,0.563935,0.365828,0.715827,0.927159,0.765864,0.800991,0.471943,0.110229,0.728103,0.836763,0.799616,0.815753,0.770749,0.249142,0.897914,0.748231,0.513363,0.881162,0.94988,0.445088,0.218456,0.737767,0.293444,0.821061,0.0158935,0.836245,0.0748523,0.930398,0.214069,0.626761,0.76141,0.863857,0.282712,0.172623,0.793904,0.606632,0.22289,0.0886708,0.0610349,0.263441,0.306023,0.364433,0.754302,0.233157,0.667732,0.499016,0.354611,0.808504,0.788876,0.58331,0.755388,0.930158,0.831629,0.962067,0.0284407,0.843226,0.793047,0.498485,0.861306,0.390618,0.837814,0.359394,0.257743,0.526348,0.204836,0.554424,0.0304239,0.880366,0.354373,0.432555,0.452745,0.070649,0.366967,0.561263,0.538786,0.239578,0.68066,0.794332,0.818649,0.574483,0.380728,0.300494,0.292525,0.338584,0.193556,0.142772,0.133514,0.567829,0.348096,0.928237,0.998383,0.309838,0.3044,0.135966,0.794812,0.378883,0.214673,0.195564,0.977887,0.186009,0.233681,0.775274,0.395581,0.964244,0.185153,0.133126,0.195509,0.559371,0.364698,0.524304,0.664141,0.953361,0.560339,0.113996,0.987754,0.607052,0.234901,0.0468367,0.998019,0.189996,0.517526,0.930308,0.787211,0.604339,0.498654,0.374956,0.313246,0.749404,0.0730968,0.871697,0.214757,0.767873,0.87757,0.484068,0.175411,0.534317,0.940565,0.189594,0.918094,0.848049,0.47587,0.401548,0.652826,0.812214,0.352077,0.877064,0.365121,0.113041,0.13992,0.230866,0.443568,0.216378,0.922903,0.56936,0.947969,0.102968,0.919189,0.969666,0.233186,0.385423,0.863899,0.564996,0.378635,0.870042,0.110464,0.099236,0.425305,0.340867,0.381829,0.986652,0.0633706,0.216537,0.0237688,0.684145,0.0852181,0.809846,0.169673,0.0329177,0.0827119,0.418734,0.524721,0.448067,0.323469,0.98398,0.725405,0.873879,0.438978,0.680784,0.260493,0.910934,0.630418,0.83304,0.835412,0.392892,0.58587,0.0296758,0.53198,0.0789669,0.753817,0.864511,0.681804,0.517481,0.686515,0.994911,0.541566,0.673631,0.928587,0.919413,0.312454,0.989512,0.471407,0.786315,0.519338,0.94751,0.448182,0.202681,0.279573,0.652081,0.850311,0.744721,0.437951,0.310509,0.501906,0.615449,0.357201,0.697281,0.375623,0.502004,0.630511,0.841461,0.746211,0.382021,0.856608,0.709999,0.561599,0.923028,0.659235,0.238425,0.668945,0.95218,0.335674,0.0935529,0.808216,0.781891,0.482671,0.476111,0.299533,0.0589754,0.0278319,0.028194,0.530504,0.255372,0.610699,0.856167,0.670579,0.0567006,0.206964,0.409114,0.915471,0.606983,0.893508,0.110521,0.755825,0.350059,0.511779,0.0167266,0.149357,0.0657609,0.62729,0.567948,0.93094,0.453032,0.198196,0.316742,0.703503,0.54976,0.521783,0.860801,0.932876,0.201617,0.797848,0.435392,0.62751,0.464523,0.00566906,0.709362,0.872356,0.594764,0.363348,0.150438,0.00809062,0.70554,0.278679,0.2552,0.457179,0.891971,0.531973,0.138416,0.50477,0.467167,0.0251461,0.243443,0.378064,0.221962,0.933409,0.520159,0.0637453,0.907157,0.857261,0.851511,0.0696018,0.700897,0.831461,0.230211,0.0194128,0.220526,0.030026,0.186011,0.479879,0.864569,0.378637,0.47034,0.0764035,0.798994,0.33912,0.76173,0.490552,0.324451,0.936235,0.860807,0.340387,0.893818,0.13639,0.621898,0.809918,0.552375,0.783973,0.449528,0.389445,0.767255,0.591032,0.968398,0.539796,0.500736,0.517092,0.0168176,0.238672,0.603506,0.958989,0.0512785,0.153432,0.234997,0.223598,0.634016,0.366776,0.147896,0.213758,0.923614,0.000745773,0.00461429,0.890553,0.532109,0.376262,0.372567,0.826757,0.504055,0.965279,0.493271,0.779519,0.208627,0.670962,0.595985,0.269457,0.213964,0.00499672,0.127521,0.608763,0.592322,0.893359,0.422942,0.613316,0.297339,0.00816858,0.391794,0.899974,0.513033,0.585982,0.976733,0.632071,0.0642864,0.974632,0.645167,0.186875,0.822978,0.368856,0.803879,0.635921,0.260703,0.797123,0.548472,0.38115,0.72334,0.560138,0.503657,0.122085,0.761,0.533887,0.615147,0.118741,0.0423828,0.280495,0.61699,0.773616,0.614727,0.715728,0.826072,0.0219207,0.743394,0.877775,0.577564,0.378066,0.611155,0.372803,0.893242,0.552262,0.327268,0.364447,0.80474,0.669039,0.912719,0.970562,0.203495,0.460259,0.568651,0.957218,0.888095,0.835958,0.116724,0.807412,0.931481,0.963112,0.547577,0.025668,0.950562,0.954586,0.00241274,0.56441,0.802315,0.428205,0.324562,0.45325,0.583178,0.0630113,0.186468,|0.666952,0.345161,0.60266,0.785435,0.145468,0.573186,0.789408,0.520374,0.853693,0.438903,0.932996,0.655391,0.72276,0.305394,0.212326,0.309576,0.251268,0.586504,0.533921,0.686358,0.951307,0.0584661,0.0208766,0.00195533,0.964934,0.909168,0.890167,0.751468,0.859688,0.523563,0.0238947,0.612164,0.863657,0.581121,0.262307,0.98367,0.133725,0.38747,0.0210065,0.552157,0.495681,0.110744,0.741939,0.686301,0.846076,0.637728,0.788808,0.199021,0.0755268,0.266855,0.729918,0.0844883,0.97818,0.744774,0.897913,0.539647,0.474983,0.858558,0.17268,0.71439,0.861268,0.991532,0.00143152,0.546151,0.595013,0.968965,0.96212,0.932323,0.640065,0.829679,0.607058,0.270655,0.803363,0.0651364,0.427755,0.878038,0.527737,0.306612,0.566101,0.136604,0.0938682,0.930072,0.907525,0.708285,0.0459472,0.950472,0.589578,0.051484,0.822956,0.312402,0.749577,0.280605,0.399891,0.891488,0.728513,0.803844,0.311658,0.809824,0.618407,0.728828,0.565048,0.943899,0.806846,0.876743,0.458625,0.536474,0.80461,0.967328,0.480426,0.375774,0.847564,0.894664,0.668112,0.331426,0.48803,0.833991,0.523305,0.923438,0.641784,0.276141,0.113992,0.365164,0.164547,0.521953,0.810522,0.749887,0.776461,0.952231,0.2142,0.260213,0.0348777,0.6795,0.885359,0.751834,0.719169,0.125937,0.148799,0.367606,0.480236,0.686936,0.859788,0.329521,0.876901,0.610774,0.14011,0.678529,0.474528,0.25073,0.949551,0.346225,0.933275,0.380867,0.00213885,0.118926,0.0472373,0.489627,0.936267,0.574466,0.667126,0.284618,0.909002,0.165846,0.376446,0.825344,0.408573,0.367894,0.247334,0.802349,0.0466966,0.0835032,0.134015,0.00368953,0.218689,0.699894,0.114267,0.0779814,0.985857,0.451325,0.0520107,0.414297,0.680979,0.833103,0.769706,0.820053,0.0790412,0.49132,0.0441968,0.634719,0.872264,0.347574,0.803072,0.951015,0.922671,0.29252,0.571369,0.861342,0.763852,0.891535,0.0174003,0.343191,0.571816,0.512175,0.836299,0.231962,0.524414,0.254445,0.501281,0.453541,0.0228752,0.401429,0.564196,0.48585,0.942535,0.472132,0.601811,0.611108,0.799715,0.0161132,0.0890769,0.0488907,0.0600558,0.385901,0.785075,0.468917,0.426687,0.6255,0.608932,0.0463818,0.0660141,0.851496,0.594502,0.430123,0.669719,0.604982,0.674997,0.526834,0.951595,0.376645,0.3236,0.536881,0.00140077,0.748369,0.747661,0.834832,0.897633,0.415143,0.789493,0.375022,0.934316,0.088468,0.189814,0.139423,0.917571,0.515855,0.699273,0.825482,0.220691,0.46457,0.0788493,0.369183,0.567166,0.698778,0.19041,0.30322,0.877186,0.171732,0.778574,0.484581,0.0333983,0.825137,0.222908,0.840619,0.364058,0.308558,0.579887,0.113041,0.979256,0.633242,0.18524,0.993477,0.475338,0.442185,0.798642,0.15422,0.967948,0.145204,0.466756,0.196919,0.378982,0.898954,0.310103,0.605888,0.288712,0.143164,0.369293,0.882944,0.593955,0.0489889,0.954295,0.533365,0.662824,0.780534,0.168748,0.693334,0.158645,0.603145,0.823378,0.562476,0.827214,0.168769,0.535484,0.0808443,0.421,0.0340111,0.725297,0.109975,0.901026,0.0581343,0.989789,0.557347,0.540291,0.679707,0.720386,0.106543,0.00615126,0.545959,0.0377771,0.258114,0.91908,0.233124,0.290782,0.245228,0.364648,0.434892,0.691029,0.21348,0.534502,0.645594,0.738123,0.811075,0.590718,0.30792,0.148895,0.609345,0.0602804,0.661379,0.432742,0.00851536,0.871041,0.617279,0.381442,0.230622,0.0334519,0.180191,0.807326,0.518117,0.341356,0.488494,0.280607,0.547475,0.823759,0.00349039,0.675665,0.0298084,0.953736,0.0506833,0.629935,0.587951,0.77831,0.45337,0.466707,0.905714,0.600789,0.157534,0.887947,0.888083,0.216488,0.957333,0.676285,0.737508,0.208622,0.345697,0.730235,0.634806,0.97913,0.732152,0.34178,0.0157005,0.39507,0.970877,0.918044,0.856758,0.360378,0.497377,0.858496,0.661772,0.505023,0.589643,0.0159276,0.947641,0.996991,0.864102,0.851117,0.781484,0.286733,0.468845,0.184173,0.900417,0.420281,0.239062,0.843749,0.828533,0.841209,0.577617,0.740118,0.870725,0.58762,0.273525,0.940735,0.95563,0.819355,0.999215,0.523399,0.0176346,0.2964,0.836643,0.322571,0.793343,0.294879,0.38963,0.682039,0.497601,0.471732,0.198698,0.766372,0.869459,0.365302,0.826523,0.0898608,0.173232,0.670878,0.125647,0.898913,0.291422,0.0203503,0.764914,0.127691,0.161377,0.7067,0.328777,0.32095,0.214261,0.0278577,0.934956,0.712725,0.505632,0.656336,0.200613,0.59519,0.0393685,0.572892,0.359932,0.935654,0.126949,0.748449,0.0932536,0.481201,0.119382,0.0538716,0.109181,0.244226,0.737734,0.967791,0.264699,0.294638,0.43861,0.578359,0.470316,0.800218,0.0881616,0.682186,0.0983864,0.957036,0.655017,0.857357,0.408462,0.470362,0.44706,0.0598781,0.183956,0.0860813,0.520051,0.266221,0.271917,0.158478,0.395385,0.553053,0.218317,0.838159,0.867778,0.687749,0.429882,0.681432,0.492525,0.413668,0.347822,0.94415,0.32567,0.356069,0.486227,0.554886,0.50549,0.321903,0.667141,0.56754,0.781256,0.987584,0.491613,0.729532,0.191463,0.739585,0.594136,0.267988,0.752225,0.341502,0.354076,0.0250227,0.529823,0.65447,0.512644,0.409058,0.802931,0.00923532,0.453646,0.516608,0.388594,0.205789,0.594873,0.465278,0.755609,0.447914,0.0646731,0.817126,0.874675,0.917637,0.1232,0.0888515,0.850831,0.0135312,0.762003,0.605571,0.852538,0.170109,0.00106359,0.780012,0.923362,0.583788,0.415518,0.0891647,0.570157,0.778413,0.902651,0.83185,0.844219,0.707179,0.1671,0.460902,0.719788,0.447901,0.868976,0.0184083,0.859604,0.311664,0.883232,0.299726,0.417808,0.440678,0.703117,0.511126,0.181759,0.815752,0.0594236,0.277173,0.697207,0.337126,0.0284012,0.479496,0.876717,0.30538,0.513938,0.966474,0.00130188,0.680482,0.00662363,0.837152,0.327645,0.367983,0.291894,0.0442625,0.836543,0.324009,0.172179,0.530648,0.451879,0.642382,0.968132,0.99707,0.263149,0.0426657,0.183123,0.598915,0.884915,0.22761,0.280796,0.612031,0.460955,0.265779,0.120759,0.737242,0.906804,0.223877,0.647024,0.464403,0.952337,0.555932,0.469498,0.665036,0.915028,0.828833,0.50315,0.945678,0.83949,0.402075,0.0942367,0.683454,0.657757,0.540178,0.606757,0.678928,0.818814,0.295002,0.972701,0.160857,0.469515,0.473877,0.393826,0.460609,0.170063,0.87861,0.0797033,0.339834,0.173602,0.813452,0.606051,0.515715,0.53652,0.741118,0.199894,0.835626,0.970142,0.781299,0.509142,0.231465,0.421317,0.358213,0.651319,0.451515,0.0930499,0.810108,0.16083,0.350884,0.172164,0.984913,0.121022,0.443422,0.772139,0.138293,0.660069,0.637816,0.65227,0.316204,0.991649,0.00206125,0.703694,0.519131,0.642407,0.860016,0.616317,0.64329,0.65183,0.714515,0.980962,0.182369,0.722299,0.120979,0.391015,0.327286,0.774196,0.772622,0.25342,0.692255,0.80124,0.413128,0.524549,0.371945,0.156371,0.458753,0.191369,0.524311,0.82973,0.125369,0.929291,0.914342,0.193294,0.426885,0.123837,0.086042,0.516696,0.0911443,0.282549,0.954517,0.503338,0.162926,0.128681,0.686892,0.930755,0.310062,0.782743,0.425358,0.877192,0.830899,0.976545,0.749359,0.711725,0.514176,0.880847,0.796564,0.902643,0.162905,0.75648,0.15685,0.851584,0.825284,0.312285,0.0652366,0.696773,0.8007,0.299437,0.284357,0.173012,0.954648,0.0797789,0.101286,0.52058,0.694475,0.21598,0.443261,0.667121,0.686492,0.707093,0.378306,0.208068,0.0985479,0.532515,0.167272,0.988962,0.726321,0.58653,0.164364,0.817368,0.879642,0.704343,0.937093,0.502938,0.508246,0.633218,0.897924,0.664149,0.860863,0.792155,0.300446,0.801409,0.366823,0.665915,0.0726053,0.976243,0.263275,0.513173,0.794398,0.947259,0.180824,0.704873,0.113333,0.841017,0.612602,0.272371,0.241901,0.0645417,0.733352,0.00444794,0.525391,0.336675,0.82025,0.979987,0.392628,0.898349,0.00919092,0.0761877,0.0703135,0.693999,0.227042,0.798774,0.179289,0.812089,0.837075,0.872973,0.937337,0.00815803,0.376372,0.15931,0.560922,0.459997,0.638482,0.482631,0.887258,0.220347,0.0347009,0.180424,0.655682,0.78884,0.834514,0.998399,0.310254,0.103688,0.610893,0.531578,0.89699,0.485462,0.222211,0.546037,0.6285,0.868119,0.275209,0.540751,0.972615,0.206339,0.0972759,0.148607,0.886697,0.774584,0.377083,0.0487619,0.121932,0.180408,0.0264903,0.160653,0.890937,0.494969,0.53886,0.377517,0.161416,0.834287,0.103085,0.682326,0.678175,0.15241,0.181283,0.653933,0.00556862,0.963741,0.258054,0.219966,0.226251,0.577364,0.302187,0.324611,0.501708,0.489775,0.701842,0.329956,0.477243,0.429258,0.125467,0.108096,0.622643,0.2079,0.779868,0.379864,0.48234,0.7558,0.953912,0.428657,0.949793,0.707976,0.340479,0.603103,0.723245,0.911588,0.0860654,0.82747,0.455691,0.510135,0.127738,0.226475,0.0165101,0.977017,0.98692,0.283705,0.393774,0.754105,0.2384,0.296984,0.9836,0.763332,0.163499,0.302127,0.60582,0.234293,0.93343,0.781648,0.762686,0.783793,0.441038,0.425192,0.914248,0.734553,0.266333,0.711978,0.152717,0.371033,0.416035,0.883316,0.0867658,0.0874782,0.870618,0.973653,0.484199,0.557337,0.426835,0.686891,0.833698,0.0183066,0.139253,0.758083,0.906749,0.372366,0.861591,0.777147,0.220013,0.69014,0.116368,0.321006,0.804729,0.317082,0.774583,0.371028,0.302475,0.155688,0.355841,0.319879,0.285662,0.929196,0.566741,0.97681,0.656991,0.272024,0.442589,0.092047,0.540109,0.406878,0.471994,0.360395,0.794638,0.462784,0.290696,0.39726,0.977954,0.650139,0.747549,0.25052,0.651768,0.389968,0.702738,0.95807,0.313634,0.658609,0.845308,0.236483,0.287541,0.743052,0.544417,0.369269,0.182134,0.568314,0.577589,0.212975,0.949039,0.866452,0.357614,0.209736,|0.444417,0.471778,0.461098,0.637665,0.619655,0.925285,0.172237,0.378794,0.235335,0.243726,0.965912,0.0266198,0.118443,0.699361,0.508655,0.206416,0.72721,0.392577,0.625227,0.608989,0.140836,0.85321,0.147519,0.577488,0.852078,0.812515,0.497032,0.952468,0.155977,0.869325,0.63456,0.840578,0.124269,0.286017,0.0767703,0.520996,0.936607,0.119305,0.539789,0.82411,0.664747,0.255114,0.281889,0.778298,0.955862,0.625442,0.583274,0.977329,0.911356,0.461409,0.452132,0.700944,0.277381,0.817629,0.180151,0.947547,0.400157,0.20409,0.537585,0.183281,0.946528,0.255101,0.606038,0.483167,0.887279,0.0116545,0.917829,0.734827,0.887491,0.627347,0.203255,0.2909,0.714251,0.776473,0.243459,0.5292,0.465904,0.30822,0.530941,0.227301,0.270207,0.573008,0.0698205,0.519596,0.635697,0.722611,0.638356,0.822176,0.27813,0.435905,0.427079,0.904277,0.35237,0.025633,0.894041,0.186679,0.253449,0.547423,0.0417928,0.162245,0.758756,0.473038,0.8151,0.176299,0.490477,0.320107,0.169863,0.00186139,0.898534,0.787376,0.896999,0.99383,0.410496,0.46824,0.419088,0.972352,0.0817046,0.286525,0.20886,0.330051,0.320976,0.949746,0.371216,0.907755,0.0683475,0.478412,0.69198,0.771634,0.239583,0.172048,0.842439,0.771074,0.47947,0.993439,0.114623,0.93598,0.153314,0.239844,0.973188,0.889272,0.566415,0.101033,0.47025,0.882263,0.915794,0.78876,0.345004,0.53804,0.491525,0.701141,0.854831,0.600174,0.150596,0.208939,0.0972689,0.902249,0.901991,0.955937,0.0679266,0.859112,0.597285,0.742647,0.937602,0.20357,0.826983,0.721711,0.814359,0.444302,0.339975,0.419574,0.386358,0.960462,0.0595427,0.412879,0.50533,0.361306,0.402213,0.27427,0.389007,0.96081,0.910048,0.616934,0.360664,0.366067,0.57535,0.125286,0.654958,0.176094,0.676455,0.92183,0.440368,0.500823,0.264126,0.544494,0.409004,0.817128,0.724333,0.409328,0.476099,0.311658,0.544812,0.455584,0.443072,0.614094,0.785636,0.394097,0.911166,0.918442,0.532839,0.216442,0.256627,0.703594,0.369461,0.745727,0.600952,0.666157,0.627416,0.41444,0.695545,0.661246,0.254741,0.0918509,0.281761,0.901444,0.627753,0.496458,0.69293,0.556026,0.000720561,0.590252,0.641836,0.325839,0.647853,0.58471,0.337332,0.459949,0.666632,0.0374619,0.0303332,0.765568,0.994421,0.0486035,0.120184,0.427431,0.624032,0.934258,0.548325,0.196261,0.0508984,0.450794,0.00444651,0.944746,0.12337,0.50783,0.413383,0.1361,0.596134,0.261821,0.917844,0.193569,0.784732,0.87544,0.368922,0.127646,0.45545,0.402334,0.905833,0.772224,0.0108961,0.764714,0.423572,0.738256,0.594566,0.791661,0.548723,0.584265,0.0852972,0.622752,0.595387,0.285191,0.997479,0.651991,0.934183,0.901703,0.403769,0.882365,0.579439,0.975439,0.878434,0.721306,0.348257,0.28533,0.0747645,0.51396,0.218857,0.437533,0.563293,0.470361,0.912589,0.48211,0.345371,0.822724,0.751865,0.854667,0.625952,0.325451,0.311811,0.704837,0.605024,0.602305,0.00864291,0.581215,0.446467,0.192016,0.549306,0.624217,0.490513,0.500491,0.426002,0.0628048,0.225288,0.736422,0.344254,0.697986,0.798322,0.139979,0.757869,0.180617,0.375978,0.0139916,0.802182,0.0882604,0.962077,0.603499,0.117197,0.859541,0.755804,0.919428,0.147959,0.43867,0.754418,0.10239,0.365921,0.263155,0.499999,0.209945,0.393846,0.207487,0.000558019,0.569845,0.530932,0.848113,0.988653,0.721851,0.872717,0.422223,0.828351,0.274413,0.35468,0.824178,0.605223,0.974215,0.103713,0.991081,0.594077,0.90527,0.91965,0.121229,0.877847,0.641014,0.985223,0.267902,0.291419,0.378476,0.527689,0.736568,0.307231,0.892228,0.0930921,0.168364,0.777681,0.333661,0.903132,0.381022,0.617518,0.120309,0.210413,0.52762,0.0266939,0.240192,0.586058,0.728142,0.603758,0.437881,0.0348405,0.80618,0.520404,0.977734,0.40353,0.739419,0.976654,0.184279,0.31159,0.0663156,0.0397384,0.0855119,0.98468,0.77748,0.27677,0.514303,0.811732,0.646535,0.745731,0.710677,0.391803,0.777332,0.617694,0.903768,0.247798,0.228455,0.801412,0.895024,0.898531,0.131635,0.789999,0.0661278,0.722309,0.27643,0.770826,0.889263,0.583467,0.343476,0.478148,0.0223301,0.75038,0.564257,0.432626,0.708244,0.425741,0.0436258,0.0958213,0.08893,0.924426,0.820305,0.657844,0.761049,0.101286,0.98788,0.842092,0.534981,0.189894,0.646089,0.0507936,0.806409,0.528042,0.0131517,0.51997,0.655356,0.0421338,0.734112,0.19981,0.88253,0.887385,0.17755,0.550992,0.161023,0.295103,0.343666,0.653752,0.575515,0.296414,0.628916,0.53884,0.614203,0.97944,0.973838,0.645825,0.247976,0.115475,0.909959,0.609603,0.948972,0.937146,0.284093,0.169995,0.580524,0.658475,0.316283,0.6336,0.545231,0.958221,0.153881,0.371448,0.598107,0.53983,0.630016,0.125286,0.877785,0.810751,0.414403,0.856228,0.743563,0.938652,0.582393,0.932132,0.079943,0.889107,0.0200947,0.139692,0.560548,0.797027,0.0803574,0.155172,0.0722119,0.664491,0.102128,0.908638,0.404945,0.627256,0.826834,0.092017,0.376746,0.715854,0.320011,0.764181,0.730243,0.562184,0.418392,0.419406,0.0852423,0.396957,0.0294938,0.862319,0.339413,0.653591,0.165263,0.406835,0.957483,0.126799,0.0278966,0.174847,0.529441,0.697389,0.0912001,0.380737,0.422847,0.913085,0.433306,0.657958,0.24717,0.110333,0.334473,0.792234,0.308305,0.389284,0.909747,0.864774,0.499566,0.318124,0.653934,0.283044,0.142006,0.752042,0.46997,0.950613,0.938873,0.265165,0.844207,0.999126,0.350569,0.0209195,0.124317,0.706478,0.521236,0.836837,0.130316,0.229958,0.34364,0.649161,0.601874,0.57771,0.537317,0.864173,0.807902,0.698548,0.785601,0.786853,0.955648,0.371335,0.383821,0.381734,0.887255,0.941368,0.131919,0.877433,0.597695,0.532029,0.939906,0.401953,0.31342,0.0660529,0.845779,0.0163144,0.887407,0.87819,0.799733,0.830433,0.29346,0.900851,0.264042,0.138613,0.659065,0.561751,0.925745,0.520086,0.124474,0.428933,0.46538,0.0697365,0.290087,0.285177,0.556309,0.818173,0.97464,0.848022,0.683317,0.110667,0.429535,0.137989,0.312294,0.213987,0.159979,0.218301,0.325334,0.0335761,0.742814,0.800805,0.261534,0.0573316,0.491858,0.671033,0.0670636,0.586811,0.852948,0.313844,0.296453,0.657013,0.507316,0.687704,0.588296,0.273406,0.912573,0.71033,0.712137,0.918811,0.870034,0.176897,0.193854,0.340221,0.941468,0.711114,0.350039,0.499405,0.756506,0.541465,0.855839,0.315402,0.235076,0.264498,0.0169654,0.301911,0.965183,0.317694,0.555553,0.178413,0.835272,0.531028,0.946171,0.106492,0.226011,0.00313264,0.394927,0.548116,0.689276,0.948562,0.188768,0.261452,0.235184,0.521183,0.222589,0.510819,0.304069,0.610534,0.389945,0.995492,0.042683,0.995977,0.893696,0.454147,0.291629,0.140966,0.311595,0.895361,0.0596125,0.416828,0.367332,0.377433,0.0865114,0.393803,0.274767,0.988996,0.00716555,0.933328,0.965771,0.986321,0.5359,0.448383,0.0239005,0.341925,0.0357881,0.052123,0.00763267,0.400884,0.768126,0.526886,0.234478,0.548199,0.515359,0.253078,0.695347,0.156575,0.957257,0.827909,0.254006,0.601995,0.549573,0.624196,0.895586,0.518701,0.351269,0.769283,0.869152,0.153651,0.795504,0.777687,0.286322,0.570664,0.594607,0.399457,0.222144,0.235537,0.402194,0.823552,0.810458,0.913779,0.063347,0.241173,0.851781,0.671478,0.799094,0.414111,0.690556,0.867532,0.790625,0.207932,0.165127,0.245347,0.0454338,0.198686,0.684631,0.550759,0.0537396,0.703179,0.289977,0.0734943,0.460905,0.444391,0.58728,0.41143,0.106756,0.857794,0.481689,0.316386,0.433063,0.973026,0.548968,0.857687,0.0581998,0.960845,0.257074,0.682751,0.703084,0.864275,0.152624,0.265848,0.680646,0.377277,0.47648,0.781848,0.95049,0.0255432,0.591895,0.598206,0.77068,0.546074,0.521388,0.763605,0.82976,0.325985,0.840889,0.588147,0.867864,0.0482923,0.811602,0.340078,0.811115,0.381524,0.387066,0.208834,0.915573,0.767234,0.179778,0.108437,0.93334,0.428172,0.221917,0.249274,0.117374,0.727612,0.426851,0.74706,0.276922,0.752086,0.73125,0.967333,0.140277,0.0800741,0.508029,0.186824,0.00233209,0.51235,0.230078,0.115513,0.152432,0.0852634,0.37089,0.0887591,0.114416,0.00972307,0.376447,0.715844,0.909222,0.769854,0.732408,0.724969,0.842,0.763798,0.195092,0.184612,0.260357,0.82928,0.880482,0.00778198,0.778947,0.205096,0.471584,0.338467,0.271757,0.354675,0.901342,0.373647,0.813376,0.811943,0.208509,0.162605,0.128157,0.133748,0.0440375,0.96864,0.130365,0.57574,0.389969,0.00333893,0.0749296,0.992773,0.458328,0.946532,0.899913,0.537053,0.532771,0.365945,0.269227,0.180174,0.486606,0.546295,0.146332,0.86025,0.224638,0.731203,0.145757,0.026727,0.871597,0.19102,0.484547,0.792985,0.617887,0.710779,0.222167,0.715649,0.491282,0.470945,0.146062,0.422575,0.465136,0.299441,0.168707,0.847908,0.744293,0.953221,0.674861,0.951403,0.2642,0.0207348,0.935076,0.340505,0.854696,0.306976,0.131845,0.349604,0.87294,0.630852,0.412848,0.459323,0.279058,0.798032,0.0870826,0.121093,0.0153744,0.357169,0.9925,0.173661,0.484743,0.0151112,0.658818,0.943066,0.696291,0.989656,0.508749,0.171816,0.147265,0.219067,0.148217,0.0513955,0.490667,0.669037,0.778991,0.128202,0.509025,0.762557,0.28032,0.536358,0.791239,0.846166,0.214373,0.356832,0.782359,0.197869,0.118987,0.786442,0.604783,0.927844,0.72386,0.585614,0.822895,0.697629,0.646506,0.368413,0.0136575,0.716798,0.914091,0.967988,0.39432,0.897539,0.658222,0.292069,0.0428135,0.540997,0.343269,0.190742,0.0865451,0.483687,0.178951,0.772528,0.835967,0.493186,0.677493,0.911618,0.724323,0.748816,0.894035,|0.409998,0.784802,0.723531,0.924819,0.794588,0.0459307,0.864746,0.684593,0.708898,0.559645,0.131522,0.561234,0.191287,0.599449,0.274275,0.452229,0.639943,0.902033,0.331012,0.60267,0.408029,0.547535,0.527377,0.825889,0.444911,0.785631,0.759791,0.548408,0.207129,0.447897,0.562447,0.652308,0.099252,0.161805,0.746427,0.140911,0.586205,0.585004,0.492812,0.618766,0.344456,0.304577,0.725511,0.698819,0.57564,0.657727,0.0295327,0.275072,0.729178,0.864389,0.932473,0.343647,0.346799,0.126743,0.147006,0.769233,0.667763,0.874754,0.153707,0.665215,0.3734,0.712465,0.728492,0.960043,0.802031,0.959415,0.672355,0.873509,0.444099,0.125387,0.823395,0.502872,0.550888,0.547072,0.54269,0.669686,0.107921,0.0307322,0.0267651,0.946299,0.647565,0.258611,0.829673,0.58164,0.599357,0.747507,0.763239,0.0235984,0.0893074,0.0987653,0.23475,0.131561,0.524339,0.457418,0.398105,0.70066,0.817344,0.6113,0.426943,0.912266,0.717742,0.542015,0.517636,0.63094,0.423281,0.820617,0.24239,0.691855,0.829654,0.370605,0.458984,0.951211,0.402101,0.583885,0.510662,0.0709258,0.226017,0.521788,0.44426,0.818214,0.278415,0.206774,0.598952,0.375127,0.334957,0.537027,0.229135,0.610223,0.167493,0.875114,0.579765,0.485899,0.592894,0.106803,0.0969024,0.107914,0.804131,0.581839,0.965273,0.434965,0.00944275,0.0414297,0.958138,0.070832,0.0660453,0.497986,0.771698,0.242965,0.797071,0.824675,0.629131,0.241201,0.0571339,0.915396,0.424126,0.892305,0.697676,0.207897,0.366676,0.960121,0.16436,0.648829,0.17056,0.218625,0.768688,0.243445,0.343711,0.465125,0.602146,0.00351638,0.571028,0.515483,0.331907,0.432576,0.714209,0.3612,0.545336,0.16982,0.556408,0.384458,0.0940676,0.700144,0.207189,0.0971468,0.719942,0.0157464,0.63946,0.172004,0.0285013,0.18237,0.378918,0.847686,0.789653,0.926491,0.998787,0.937613,0.735305,0.713917,0.100553,0.992436,0.885778,0.251028,0.151874,0.56429,0.529737,0.271942,0.0653506,0.149066,0.184803,0.244545,0.328801,0.673473,0.671031,0.0636404,0.114392,0.128078,0.130885,0.484506,0.110432,0.933717,0.719388,0.811178,0.772541,0.739872,0.0953325,0.359597,0.542768,0.665103,0.716253,0.0334446,0.320022,0.607502,0.349135,0.0925574,0.359997,0.0337692,0.639374,0.653059,0.0155904,0.0414345,0.596223,0.802746,0.120398,0.648735,0.511065,0.112763,0.224331,0.774999,0.886913,0.146157,0.920182,0.800316,0.359464,0.00338697,0.764383,0.257913,0.0938674,0.189985,0.0335321,0.22609,3.86238e-05,0.962567,0.300165,0.764013,0.955674,0.996026,0.578593,0.791248,0.125052,0.310603,0.497263,0.481055,0.850477,0.954254,0.650212,0.067664,0.00661111,0.133402,0.916298,0.396002,0.0859433,0.456373,0.452048,0.346394,0.0755213,0.514875,0.565226,0.754281,0.0592659,0.343369,0.0483733,0.760272,0.303434,0.334424,0.785986,0.429779,0.344229,0.281297,0.451634,0.564948,0.870708,0.0386032,0.674429,0.091936,0.787859,0.39197,0.997046,0.455945,0.282903,0.240344,0.626382,0.100889,0.146456,0.846656,0.642773,0.78472,0.292948,0.0221865,0.0614496,0.729512,0.521163,0.423492,0.338597,0.620863,0.0519242,0.652362,0.384918,0.283688,0.981516,0.459218,0.0648758,0.489473,0.563129,0.390532,0.161267,0.690205,0.82128,0.218239,0.13823,0.693996,0.0647715,0.234645,0.1849,0.450054,0.574716,0.774542,0.808422,0.874874,0.0801657,0.427841,0.650649,0.075027,0.121462,0.689676,0.808655,0.409454,0.127876,0.155681,0.0828748,0.28079,0.537759,0.277114,0.691887,0.193648,0.156514,0.505514,0.618249,0.974412,0.0979269,0.263117,0.512785,0.773695,0.762814,0.236822,0.908939,0.799527,0.606189,0.650858,0.796153,0.351005,0.882804,0.623254,0.816586,0.872927,0.518611,0.108695,0.733498,0.793535,0.513731,0.0514854,0.0217075,0.496249,0.475185,0.165677,0.686521,0.117926,0.604558,0.680861,0.74863,0.0249,0.772521,0.172942,0.272241,0.768726,0.900607,0.17791,0.323634,0.562129,0.572198,0.114385,0.349912,0.127655,0.659276,0.908183,0.869796,0.582253,0.563729,0.934825,0.381829,0.363231,0.431354,0.796915,0.403484,0.371787,0.081251,0.968312,0.661976,0.158475,0.53097,0.956918,0.0994056,0.295597,0.112823,0.97929,0.930954,0.720578,0.314336,0.552521,0.295165,0.943251,0.226502,0.406177,0.608035,0.84728,0.588992,0.147367,0.369626,0.796379,0.484558,0.364696,0.074825,0.830984,0.336923,0.233655,0.689534,0.219709,0.426558,0.281876,0.402419,0.182336,0.026105,0.253838,0.148352,0.835986,0.800614,0.347858,0.367617,0.520967,0.0360621,0.0945162,0.291691,0.555369,0.184776,0.522927,0.0474908,0.459856,0.645646,0.664582,0.132258,0.223251,0.278264,0.357183,0.098865,0.465969,0.745376,0.926985,0.782946,0.0880111,0.463576,0.0946859,0.752712,0.668236,0.555209,0.79329,0.799812,0.633422,0.0949622,0.544043,0.763345,0.986293,0.39672,0.591913,0.91876,0.903079,0.306196,0.241929,0.446479,0.113712,0.847106,0.63681,0.141528,0.382532,0.30754,0.314706,0.730606,0.392761,0.592093,0.57124,0.950283,0.871917,0.209545,0.467279,0.891165,0.762809,0.691825,0.265626,0.162058,0.658237,0.704899,0.545118,0.913747,0.247049,0.616768,0.584951,0.621315,0.713946,0.599283,0.861582,0.152486,0.206855,0.813213,0.5431,0.292795,0.915541,0.111215,0.209551,0.487997,0.166704,0.144922,0.662729,0.40906,0.360387,0.49757,0.034377,0.0411363,0.0324544,0.837459,0.781525,0.876176,0.014042,0.639514,0.00793308,0.384434,0.808338,0.225921,0.0485654,0.619184,0.079149,0.928737,0.0912343,0.416247,0.947487,0.727899,0.777839,0.994132,0.507733,0.14618,0.456292,0.520946,0.850652,0.919835,0.269036,0.0680898,0.0466638,0.535028,0.884763,0.25288,0.0718677,0.981046,0.735989,0.525092,0.215531,0.694639,0.53773,0.316805,0.272937,0.375926,0.0866191,0.471947,0.273186,0.454195,0.473854,0.70989,0.446466,0.46033,0.346915,0.5955,0.992642,0.478565,0.331736,0.761051,0.691362,0.409455,0.569573,0.223863,0.332131,0.0881842,0.331572,0.152928,0.544197,0.885505,0.832962,0.120094,0.629038,0.22993,0.442804,0.483998,0.944027,0.776842,0.11414,0.613547,0.824461,0.697121,0.111307,0.125886,0.526458,0.244865,0.126848,0.730146,0.341531,0.894966,0.816933,0.350353,0.101527,0.285943,0.0498096,0.234272,0.378321,0.558366,0.975085,0.871777,0.152769,0.88265,0.692552,0.972137,0.345999,0.208951,0.940066,0.786926,0.0941715,0.226808,0.871672,0.342707,0.28565,0.791847,0.866612,0.341871,0.401349,0.335561,0.0825073,0.33299,0.672078,0.554675,0.617948,0.151321,0.3644,0.364149,0.0980192,0.647616,0.797353,0.688874,0.266926,0.20736,0.679005,0.430293,0.583336,0.479555,0.254527,0.168333,0.0230145,0.771716,0.302184,0.14251,0.0214226,0.00465882,0.232421,0.126218,0.383525,0.622581,0.510616,0.657638,0.572051,0.93374,0.955374,0.706827,0.548235,0.529248,0.201598,0.600089,0.420118,0.705075,0.683744,0.890813,0.0997401,0.133645,0.956327,0.85879,0.990292,0.312258,0.678137,0.208799,0.0759373,0.392478,0.410744,0.0903298,0.906791,0.207591,0.0124323,0.0264496,0.604025,0.383909,0.936265,0.989178,0.183905,0.722447,0.892329,0.676113,0.365649,0.344731,0.583408,0.900445,0.217483,0.99219,0.73562,0.290093,0.230512,0.426363,0.988525,0.304921,0.23265,0.976999,0.310503,0.622736,0.190603,0.554918,0.321662,0.504582,0.541448,0.998477,0.461201,0.40079,0.420415,0.445636,0.940187,0.388872,0.319977,0.755652,0.791591,0.590639,0.999433,0.778026,0.384578,0.407292,0.946741,0.0193646,0.435448,0.667615,0.0154605,0.15035,0.00765902,0.532982,0.211415,0.998584,0.25921,0.751284,0.892119,0.116137,0.322753,0.266409,0.381955,0.991028,0.510237,0.84376,0.692145,0.752894,0.835756,0.91239,0.582163,0.901173,0.790047,0.106798,0.0915809,0.141188,0.336123,0.38929,0.934119,0.537819,0.843303,0.795086,0.658771,0.919995,0.0461724,0.235063,0.797033,0.237797,0.627793,0.576964,0.763542,0.03088,0.260947,0.56925,0.391898,0.226877,0.722842,0.182411,0.473134,0.490811,0.553642,0.626126,0.0899982,0.216111,0.525953,0.321167,0.180646,0.0630171,0.709847,0.783603,0.451329,0.0847251,0.0894075,0.767835,0.252758,0.609141,0.296491,0.688231,0.555535,0.0443405,0.979395,0.408586,0.19611,0.389728,0.608239,0.442112,0.361806,0.217532,0.980003,0.204913,0.963025,0.786,0.694427,0.261545,0.352989,0.10318,0.174784,0.89958,0.99428,0.084654,0.628019,0.66008,0.506162,0.828515,0.0728514,0.0236102,0.391958,0.584169,0.671004,0.499219,0.835765,0.621811,0.113403,0.667535,0.311713,0.632663,0.128859,0.126656,0.517885,0.660072,0.369404,0.541247,0.709277,0.627998,0.930934,0.309143,0.166734,0.197295,0.850003,0.0774951,0.513843,0.61228,0.193911,0.149767,0.335371,0.302494,0.551317,0.598498,0.405262,0.864879,0.0545206,0.670094,0.757536,0.665586,0.114729,0.329505,0.104257,0.306032,0.505391,0.761537,0.258251,0.978802,0.408958,0.964588,0.994919,0.0965635,0.935175,0.397156,0.312205,0.465791,0.0429144,0.819032,0.268426,0.783734,0.475633,0.105212,0.271491,0.701225,0.200106,0.293985,0.525302,0.857426,0.721052,0.981297,0.123683,0.515229,0.667877,0.225501,0.500498,0.90275,0.444133,0.861099,0.477253,0.14678,0.205974,0.37963,0.169246,0.00521725,0.767202,0.65978,0.655351,0.983967,0.0318174,0.713993,0.564234,0.296009,0.28592,0.755715,0.949198,0.724991,0.164294,0.421633,0.252367,0.604606,0.0475084,0.835853,0.871431,0.766678,0.133951,0.411061,0.136907,0.67636,0.540891,0.177259,0.189123,0.475666,0.48461,0.506456,0.648814,0.950754,0.778159,0.00445861,0.404974,0.134864,0.723062,0.869263,0.753927,0.575478,0.72894,0.864041,0.759548,0.2348,0.563222,|0.600364,0.763038,0.946302,0.21266,0.484365,0.866078,0.0126785,0.142049,0.0563866,0.970546,0.895351,0.830623,0.432823,0.803246,0.721475,0.443668,0.53415,0.929899,0.735051,0.633989,0.756545,0.655329,0.446983,0.537922,0.744217,0.590955,0.982752,0.0801925,0.212693,0.529792,0.881091,0.612226,0.476637,0.361292,0.232773,0.218057,0.932544,0.884715,0.778702,0.28718,0.367565,0.408266,0.888741,0.914913,0.344094,0.149063,0.107195,0.251751,0.81298,0.121673,0.164306,0.283359,0.774817,0.427764,0.767686,0.427483,0.862535,0.51859,0.575882,0.479329,0.129677,0.434533,0.75084,0.553206,0.904826,0.676804,0.26679,0.467842,0.177317,0.031188,0.602507,0.990559,0.448491,0.691553,0.00453013,0.199239,0.579769,0.291038,0.425824,0.21837,0.68958,0.721064,0.831239,0.378889,0.636926,0.0183294,0.856323,0.147951,0.0171169,0.343026,0.95573,0.117887,0.182954,0.246163,0.265554,0.261758,0.069217,0.447297,0.533703,0.992015,0.401088,0.0623212,0.956024,0.352886,0.633504,0.405755,0.897481,0.424454,0.841877,0.692598,0.408233,0.981964,0.614927,0.310936,0.759943,0.134221,0.9328,0.594084,0.705298,0.146988,0.811872,0.721786,0.674101,0.929105,0.399197,0.574784,0.959198,0.667321,0.0123146,0.823076,0.650737,0.710613,0.0695035,0.0925502,0.974731,0.887714,0.060474,0.171219,0.0145454,0.526159,0.111009,0.688393,0.910101,0.293546,0.318761,0.0464233,0.426933,0.638216,0.688664,0.194625,0.211169,0.677244,0.308068,0.209862,0.519451,0.194105,0.743669,0.139492,0.723911,0.463134,0.284889,0.548355,0.774376,0.65649,0.811238,0.420096,0.819368,0.597852,0.242128,0.376817,0.605542,0.0180296,0.66706,0.472481,0.300344,0.889427,0.921659,0.704209,0.497831,0.301232,0.510089,0.038772,0.873017,0.13858,0.38617,0.143435,0.853363,0.666749,0.0397288,0.670538,0.474058,0.829444,0.296291,0.458963,0.707702,0.668198,0.542047,0.200586,0.071584,0.997782,0.164281,0.309149,0.197684,0.854694,0.877694,0.676525,0.79894,0.347031,0.139925,0.716063,0.458939,0.223973,0.733361,0.0325798,0.00553191,0.512982,0.651126,0.398719,0.693818,0.0501863,0.286731,0.0320551,0.250241,0.866042,0.960735,0.171428,0.768955,0.292007,0.0791951,0.472304,0.425492,0.192464,0.251939,0.774623,0.786102,0.342121,0.812057,0.044506,0.755721,0.105936,0.476686,0.540882,0.81799,0.318653,0.13997,0.804399,0.353136,0.962978,0.906829,0.553903,0.110923,0.160879,0.503122,0.0533108,0.856443,0.156462,0.844046,0.0226895,0.273099,0.868377,0.0176744,0.264182,0.922914,0.89003,0.738999,0.9448,0.192889,0.152831,0.526053,0.13617,0.988206,0.32319,0.277313,0.12045,0.0759386,0.88227,0.338148,0.604898,0.21083,0.780993,0.305647,0.0234237,0.817279,0.880293,0.347825,0.550427,0.0935773,0.96397,0.355897,0.0257211,0.584161,0.290007,0.207436,0.165443,0.0053193,0.100741,0.373816,0.795488,0.11383,0.591695,0.0600975,0.848445,0.465165,0.653208,0.0733353,0.0508488,0.60412,0.527798,0.485775,0.307932,0.927467,0.773273,0.572241,0.629615,0.349239,0.402526,0.735555,0.644419,0.914593,0.515142,0.542832,0.458836,0.53639,0.578745,0.653777,0.11341,0.935712,0.721063,0.430232,0.0152867,0.246502,0.433062,0.326256,0.364515,0.698289,0.173212,0.734143,0.710122,0.231962,0.207342,0.513722,0.8947,0.221776,0.575211,0.371238,0.27917,0.794047,0.274806,0.383119,0.323288,0.412624,0.585127,0.30707,0.627034,0.801633,0.628457,0.0269796,0.272482,0.665529,0.553486,0.776,0.0886441,0.265837,0.326246,0.431446,0.651031,0.0093503,0.161914,0.565871,0.985042,0.0863992,0.905047,0.70694,0.681371,0.426767,0.470536,0.805503,0.741375,0.11372,0.283329,0.281016,0.542067,0.645349,0.986897,0.0876177,0.813469,0.9858,0.0967574,0.656408,0.293782,0.071021,0.131832,0.343331,0.527395,0.0393837,0.858917,0.595527,0.190929,0.714533,0.267226,0.855658,0.738025,0.53928,0.024749,0.0972952,0.63961,0.312152,0.968298,0.108408,0.382071,0.717464,0.0457758,0.52598,0.287568,0.821326,0.0323818,0.342666,0.242019,0.143196,0.672605,0.105064,0.990826,0.878814,0.58998,0.0741925,0.855765,0.878769,0.331074,0.129344,0.240834,0.616165,0.516226,0.350548,0.0544811,0.978286,0.443915,0.408713,0.0216152,0.434399,0.229908,0.749573,0.795492,0.432056,0.289844,0.142997,0.702123,0.289656,0.674595,0.57586,0.919652,0.991019,0.567428,0.180662,0.92064,0.369732,0.383646,0.955436,0.160447,0.0983289,0.654107,0.452679,0.527819,0.583908,0.328544,0.0277595,0.0557781,0.815646,0.723585,0.817802,0.464961,0.352103,0.0667399,0.398171,0.167058,0.334361,0.10762,0.579943,0.384853,0.118177,0.0509431,0.171976,0.575567,0.940083,0.16008,0.586398,0.0184798,0.501671,0.860567,0.623896,0.286652,0.0874087,0.520497,0.00329584,0.310408,0.790986,0.33163,0.680231,0.115419,0.489536,0.412718,0.884938,0.143122,0.98166,0.021075,0.295148,0.390524,0.844141,0.378627,0.428594,0.27762,0.580073,0.493052,0.381503,0.0800141,0.397304,0.982782,0.756741,0.539431,0.712603,0.0989777,0.0661272,0.775696,0.250851,0.189774,0.471496,0.458978,0.54595,0.324121,0.978579,0.618364,0.386938,0.0140936,0.768818,0.863498,0.964901,0.56621,0.0927423,0.000219882,0.299259,0.803389,0.302072,0.581239,0.511599,0.165635,0.710477,0.532267,0.061473,0.498836,0.718358,0.37365,0.598941,0.139392,0.421875,0.982309,0.480006,0.594363,0.614628,0.600452,0.793475,0.384144,0.526357,0.996892,0.640422,0.176235,0.718896,0.292406,0.751836,0.290622,0.260649,0.156062,0.0211934,0.792781,0.434214,0.0188709,0.951472,0.122332,0.177333,0.0309823,0.394705,0.341835,0.0432183,0.876582,0.675089,0.0499068,0.490103,0.610844,0.221762,0.454411,0.1601,0.849955,0.591922,0.445606,0.591191,0.120342,0.511063,0.594315,0.897163,0.651923,0.171536,0.558796,0.561612,0.206066,0.485665,0.0639875,0.196332,0.976023,0.742891,0.465583,0.158595,0.843653,0.448357,0.73272,0.17731,0.320491,0.457833,0.300435,0.371279,0.451983,0.329597,0.43534,0.888213,0.532921,0.169439,0.819448,0.398962,0.199941,0.827821,0.686835,0.823146,0.939692,0.907078,0.742458,0.951502,0.91707,0.272589,0.34337,0.237789,0.320006,0.773199,0.0866109,0.43586,0.815249,0.792094,0.805456,0.367978,0.50055,0.853858,0.723734,0.0920247,0.965909,0.763445,0.6715,0.281621,0.404859,0.648352,0.480486,0.383926,0.25491,0.353481,0.637591,0.478014,0.611727,0.1507,0.938053,0.365195,0.0139568,0.578388,0.504721,0.298522,0.0100882,0.22039,0.834279,0.595169,0.112366,0.847615,0.829068,0.293305,0.44541,0.190463,0.0299922,0.157232,0.272234,0.983567,0.336563,0.087761,0.475662,0.527821,0.753398,0.363553,0.564942,0.385508,0.234654,0.826085,0.862837,0.90963,0.876681,0.547242,0.00241214,0.843674,0.447765,0.0434515,0.841644,0.935487,0.606477,0.316969,0.60372,0.627081,0.605942,0.0553063,0.395279,0.458807,0.372843,0.788845,0.929452,0.851013,0.0566487,0.174514,0.517783,0.695942,0.639248,0.738596,0.614916,0.79907,0.352092,0.999766,0.389579,0.349339,0.90039,0.811721,0.568334,0.0387235,0.113987,0.204419,0.00766635,0.544213,0.404683,0.306991,0.738142,0.879722,0.513334,0.634596,0.517735,0.286099,0.409877,0.80001,0.0522472,0.607094,0.464468,0.0766492,0.194229,0.612571,0.758619,0.0163482,0.782233,0.184289,0.82645,0.819786,0.0270898,0.574421,0.041737,0.154617,0.0372564,0.212959,0.794728,0.419741,0.835053,0.43843,0.635451,0.335159,0.758408,0.351146,0.450594,0.248083,0.907451,0.278713,0.0213591,0.646406,0.294858,0.155448,0.779148,0.182056,0.500568,0.216068,0.902803,0.0424474,0.0880898,0.712546,0.393581,0.0822856,0.0124313,0.219928,0.701818,0.358969,0.1339,0.145251,0.565674,0.793867,0.644087,0.77192,0.447567,0.20698,0.801192,0.257305,0.673395,0.141152,0.795644,0.501691,0.721009,0.956773,0.988397,0.350988,0.468433,0.104061,0.764786,0.390503,0.618476,0.762797,0.447106,0.437336,0.573475,0.0258171,0.62336,0.851218,0.85634,0.910066,0.198164,0.184583,0.140062,0.589177,0.469127,0.289763,0.674501,0.616613,0.736217,0.549275,0.188077,0.791619,0.0529171,0.467113,0.112353,0.198242,0.973594,0.752285,0.382568,0.637168,0.12547,0.622328,0.0479558,0.978602,0.155242,0.182279,0.777748,0.693232,0.326894,0.979529,0.833406,0.787992,0.661901,0.808705,0.326813,0.334019,0.766327,0.519884,0.471843,0.897616,0.353163,0.54147,0.397252,0.472376,0.892494,0.301242,0.621654,0.858627,0.649437,0.692161,0.270577,0.917643,0.369839,0.304436,0.870328,0.744703,0.363417,0.528999,0.475845,0.221577,0.920113,0.756042,0.0936263,0.112581,0.588875,0.260588,0.0205726,0.871921,0.480062,0.882805,0.0549112,0.542617,0.814186,0.657904,0.193105,0.679351,0.246764,0.413711,0.218751,0.387531,0.251639,0.157676,0.444878,0.908694,0.196345,0.621587,0.710375,0.878316,0.374349,0.514255,0.866158,0.26487,0.545317,0.913518,0.00676107,0.895695,0.692416,0.631679,0.778684,0.326521,0.0534297,0.492683,0.340952,0.597353,0.24021,0.716356,0.930832,0.945283,0.711322,0.601166,0.743382,0.170185,0.6387,0.0973219,0.597651,0.807026,0.891967,0.687156,0.69138,0.990977,0.595943,0.631115,0.373204,0.0216496,0.634523,0.838872,0.051333,0.496345,0.830964,0.537758,0.682016,0.595273,0.83339,0.385013,0.732332,0.0785974,0.906172,0.985289,0.150115,0.521457,0.42598,0.832467,0.11301,0.185344,0.239148,0.0142189,0.583296,0.315101,0.918482,0.617277,0.93441,0.610877,0.498485,0.813908,0.291648,0.916853,0.533716,0.378469,0.390836,0.888302,0.875679,0.0584819,0.949406,0.539402,0.532937,0.641707,0.981377,0.506859,0.626629,0.0693805,0.757783,0.17008,0.0502597,0.919454,0.133735,|0.097021,0.195345,0.960203,0.415811,0.24729,0.787722,0.825899,0.563545,0.746721,0.835606,0.862795,0.731088,0.65399,0.624272,0.508543,0.0613764,0.441159,0.242691,0.706583,0.170357,0.556613,0.388795,0.154399,0.226998,0.591692,0.711375,0.542685,0.482623,0.308559,0.298926,0.956746,0.774669,0.314069,0.525917,0.828074,0.367403,0.617554,0.446748,0.0923046,0.798609,0.438375,0.851458,0.724985,0.11794,0.0358722,0.938991,0.354849,0.0814034,0.676356,0.910727,0.154402,0.15253,0.386262,0.967064,0.942842,0.666101,0.24619,0.988169,0.827102,0.800682,0.905027,0.396112,0.16631,0.350752,0.0957373,0.110777,0.643501,0.232598,0.273834,0.395737,0.940596,0.657852,0.548673,0.654275,0.0241236,0.457528,0.297969,0.843026,0.396653,0.68805,0.294014,0.0347373,0.118387,0.0447035,0.151558,0.0369923,0.337204,0.311771,0.982936,0.0390424,0.898755,0.724994,0.0255841,0.201887,0.37699,0.236638,0.589182,0.995902,0.582577,0.980184,0.986499,0.112208,0.411297,0.127227,0.590101,0.0927736,0.19709,0.463052,0.946741,0.630183,0.616117,0.807631,0.521912,0.208113,0.0394811,0.308534,0.989515,0.304777,0.0935122,0.949277,0.657913,0.415149,0.305302,0.252839,0.385269,0.30561,0.512198,0.236841,0.603879,0.766737,0.728937,0.561043,0.456963,0.992532,0.908319,0.410223,0.970718,0.738716,0.619001,0.957752,0.552893,0.0603583,0.814411,0.303426,0.288822,0.765054,0.3682,0.259717,0.139298,0.919539,0.477008,0.413528,0.0568541,0.501673,0.457979,0.132084,0.411663,0.216216,0.0239748,0.126123,0.744471,0.258431,0.212328,0.4132,0.451861,0.885114,0.418594,0.954306,0.511661,0.107157,0.179931,0.894049,0.529908,0.828059,0.47468,0.604225,0.0385216,0.821118,0.175691,0.518988,0.918074,0.588152,0.856198,0.58445,0.700151,0.601179,0.551608,0.233889,0.0993147,0.487021,0.489512,0.0511292,0.952243,0.216772,0.830152,0.171121,0.356239,0.258998,0.756042,0.654342,0.446629,0.0831565,0.713482,0.992993,0.878059,0.124893,0.528041,0.131093,0.480831,0.0251578,0.853766,0.224887,0.312733,0.819697,0.953331,0.155519,0.823291,0.119977,0.0356277,0.289531,0.17539,0.165199,0.516152,0.221163,0.00255954,0.982001,0.775056,0.499199,0.588287,0.507085,0.106746,0.182086,0.328239,0.477631,0.379576,0.0550003,0.89347,0.410057,0.642578,0.827863,0.722194,0.0193081,0.716796,0.797738,0.134904,0.429129,0.728686,0.655881,0.0414348,0.476784,0.279795,0.10719,0.214082,0.134458,0.490686,0.154937,0.0865463,0.439399,0.0728568,0.123502,0.477432,0.863298,0.592935,0.0603785,0.166842,0.693887,0.59917,0.989639,0.964321,0.376106,0.542624,0.559603,0.517067,0.00693911,0.781785,0.0445641,0.726073,0.298097,0.951874,0.679733,0.130541,0.836932,0.128211,0.0174443,0.212663,0.590279,0.630821,0.168138,0.727072,0.646128,0.619749,0.0451561,0.0287008,0.755897,0.675618,0.725193,0.236833,0.76683,0.531492,0.574193,0.580645,0.511362,0.206494,0.604426,0.305742,0.441957,0.866796,0.58752,0.272027,0.578607,0.980699,0.186719,0.555711,0.792655,0.408033,0.822196,0.0585133,0.803423,0.633842,0.524428,0.787767,0.464163,0.708847,0.961745,0.373508,0.641353,0.179384,0.144526,0.549946,0.0240038,0.979263,0.240635,0.20947,0.0653681,0.658683,0.578603,0.235549,0.798708,0.90798,0.93604,0.60241,0.454152,0.8013,0.862648,0.781825,0.773002,0.994999,0.87747,0.901908,0.967229,0.785545,0.838776,0.944315,0.171703,0.0706798,0.389845,0.727118,0.645988,0.537126,0.255208,0.112497,0.254274,0.52794,0.219732,0.154162,0.231747,0.428019,0.615527,0.667931,0.469704,0.779199,0.944708,0.308788,0.465314,0.772535,0.514945,0.753497,0.225713,0.592818,0.422696,0.73073,0.429054,0.816134,0.411905,0.0342874,0.453759,0.802967,0.257734,0.533771,0.321004,0.25326,0.147121,0.938435,0.346406,0.674684,0.333427,0.595567,0.0989251,0.146991,0.922255,0.357471,0.87982,0.580374,0.66891,0.0296437,0.446053,0.633873,0.17363,0.121942,0.00528449,0.0742505,0.764514,0.6171,0.925499,0.330993,0.917142,0.794582,0.40296,0.330506,0.068717,0.542974,0.523118,0.0699265,0.969877,0.391619,0.0756218,0.928087,0.846759,0.222426,0.630596,0.125705,0.878318,0.530882,0.926238,0.59788,0.263734,0.4482,0.888194,0.0575099,0.877604,0.00022763,0.264443,0.830222,0.71508,0.462721,0.40954,0.0142912,0.173559,0.483928,0.827103,0.636372,0.937232,0.264588,0.853863,0.449781,0.92491,0.827424,0.84678,0.981308,0.767133,0.484959,0.457504,0.391013,0.577646,0.699062,0.53697,0.90756,0.831746,0.0874819,0.814669,0.934992,0.468861,0.133962,0.934735,0.254991,0.81537,0.478964,0.813368,0.780323,0.247899,0.612074,0.727617,0.874273,0.195473,0.0415543,0.0313737,0.248538,0.706534,0.827036,0.594696,0.169762,0.780587,0.16108,0.248254,0.635446,0.44527,0.778598,0.273483,0.665905,0.721923,0.507538,0.195844,0.439181,0.221062,0.51995,0.288339,0.878045,0.928716,0.503849,0.229479,0.522858,0.45664,0.453283,0.710381,0.972342,0.0239363,0.119152,0.317622,0.323235,0.223318,0.545555,0.613881,0.882212,0.294108,0.814582,0.087885,0.793988,0.0248996,0.306728,0.668267,0.0989457,0.920648,0.581208,0.369951,0.01384,0.375824,0.389177,0.465249,0.512083,0.642895,0.936311,0.010999,0.0604215,0.328809,0.50553,0.35471,0.687991,0.471622,0.414437,0.0500444,0.210206,0.763878,0.587145,0.521382,0.643275,0.351857,0.324701,0.324437,0.799948,0.415488,0.823331,0.986854,0.365967,0.182629,0.810128,0.0194297,0.255905,0.278233,0.901384,0.182602,0.574116,0.535603,0.734914,0.404259,0.637009,0.757195,0.19364,0.885203,0.0333612,0.397193,0.322791,0.39462,0.983111,0.817412,0.0935509,0.907559,0.844359,0.242341,0.0466154,0.658831,0.544672,0.437311,0.932792,0.466251,0.377312,0.847087,0.272645,0.166351,0.539808,0.486378,0.645905,0.788638,0.283834,0.883681,0.0999184,0.413453,0.198382,0.682029,0.864822,0.162596,0.190175,0.964176,0.464514,0.0434535,0.543232,0.132432,0.556824,0.508341,0.716535,0.669906,0.0385573,0.0520164,0.592653,0.727615,0.971962,0.319499,0.99579,0.154171,0.372696,0.0779222,0.18694,0.631026,0.436336,0.727944,0.376839,0.312207,0.143029,0.67236,0.737427,0.364774,0.0989771,0.550231,0.920214,0.704694,0.750566,0.893209,0.554208,0.117555,0.0091188,0.0233415,0.255855,0.53412,0.372525,0.489738,0.109024,0.367572,0.957979,0.499005,0.707431,0.809253,0.130961,0.458447,0.180343,0.524619,0.500249,0.4395,0.867447,0.142671,0.11129,0.933029,0.959985,0.149531,0.480625,0.887968,0.457952,0.100782,0.534055,0.950363,0.720176,0.399922,0.103849,0.314455,0.166658,0.576273,0.970552,0.915725,0.383508,0.451987,0.199107,0.515611,0.614643,0.985255,0.758844,0.111005,0.000741541,0.856115,0.118176,0.705201,0.637489,0.621507,0.0589905,0.456732,0.205001,0.0150948,0.17659,0.525875,0.950295,0.278966,0.318685,0.391421,0.626597,0.808796,0.603484,0.282685,0.385278,0.0693668,0.274764,0.649757,0.600269,0.652161,0.238745,0.365293,0.344548,0.200922,0.987037,0.357914,0.349406,0.441534,0.478682,0.534554,0.527763,0.48352,0.0259994,0.749395,0.705162,0.0350686,0.0396485,0.0251229,0.232599,0.761515,0.796594,0.178597,0.571541,0.595166,0.890464,0.832267,0.660578,0.0569203,0.966883,0.0815484,0.728817,0.402236,0.684839,0.863035,0.0273824,0.545005,0.21207,0.784484,0.567005,0.84163,0.737987,0.472004,0.814782,0.568806,0.632189,0.235819,0.0572742,0.59469,0.631428,0.301995,0.109704,0.83696,0.757877,0.235811,0.761461,0.697121,0.504236,0.686436,0.582524,0.626378,0.355998,0.847154,0.190245,0.266007,0.114577,0.320823,0.268369,0.266642,0.240924,0.757237,0.6947,0.0616206,0.0408196,0.735099,0.263621,0.0754996,0.149099,0.431738,0.695389,0.181605,0.401143,0.572259,0.65304,0.843191,0.870523,0.0682833,0.908287,0.80608,0.660424,0.814181,0.615415,0.829784,0.0677435,0.591752,0.017327,0.49113,0.904034,0.120259,0.394487,0.0999968,0.868447,0.304241,0.164188,0.871539,0.773658,0.0559113,0.214088,0.730072,0.0704214,0.338975,0.55896,0.643054,0.539665,0.0753486,0.546946,0.115668,0.905339,0.930543,0.588965,0.393817,0.726382,0.43167,0.857247,0.96473,0.582802,0.447948,0.716429,0.925223,0.16144,0.0803821,0.47051,0.0637666,0.425915,0.537382,0.198416,0.520148,0.67064,0.0193488,0.357379,0.665937,0.0441595,0.681708,0.910106,0.303095,0.0159186,0.551228,0.403652,0.33755,0.465527,0.966957,0.675401,0.652191,0.828026,0.575087,0.316376,0.351544,0.89893,0.352743,0.341348,0.056493,0.492526,0.348759,0.0263429,0.869609,0.580115,0.493175,0.751024,0.486706,0.415458,0.897475,0.100697,0.401181,0.929837,0.0498769,0.26457,0.300337,0.548157,0.304604,0.278335,0.317291,0.515679,0.556931,0.546304,0.0712409,0.329794,0.0893998,0.508011,0.0311194,0.378958,0.80887,0.58869,0.176244,0.948958,0.755421,0.00156599,0.85351,0.672293,0.840924,0.0539051,0.693302,0.886677,0.449665,0.544873,0.0374705,0.928943,0.074979,0.727508,0.981353,0.984329,0.664993,0.27684,0.381056,0.0785565,0.437551,0.637424,0.116142,0.401875,0.430776,0.859086,0.504614,0.168742,0.152005,0.331087,0.00657904,0.488745,0.402113,0.77745,0.314725,0.792405,0.775263,0.369381,0.247562,0.366906,0.942608,0.976953,0.366804,0.263054,0.750991,0.277138,0.316576,0.390539,0.643622,0.219087,0.328728,0.898112,0.00187701,0.973383,0.783227,0.80635,0.704062,0.0119849,0.208999,0.918463,0.516306,0.135771,0.796163,0.043344,0.474134,0.0874129,0.572133,0.35612,0.238226,0.733412,0.944638,0.044189,0.522381,0.520487,0.0198831,0.82982,0.97759,0.315357,0.599319,0.00686264,0.476429,0.685288,0.816254,0.346635,0.550766,0.260852,0.480341,|0.817721,0.398276,0.459384,0.845997,0.567798,0.821866,0.0237256,0.204449,0.496581,0.247238,0.420106,0.558786,0.166821,0.0346319,0.202248,0.407914,0.75682,0.372437,0.966696,0.0121079,0.0710126,0.814339,0.934775,0.945218,0.817676,0.200556,0.963216,0.546511,0.0794069,0.429594,0.950115,0.763787,0.673736,0.18996,0.975778,0.151433,0.873821,0.293939,0.720545,0.754773,0.407049,0.350046,0.0511615,0.775852,0.376174,0.647176,0.934015,0.858676,0.365681,0.528159,0.228763,0.143032,0.701207,0.842155,0.649993,0.266668,0.0570976,0.77635,0.68287,0.760182,0.0499326,0.986808,0.316266,0.0922108,0.6636,0.628538,0.893815,0.0597873,0.76273,0.772974,0.571435,0.078448,0.175789,0.61067,0.635946,0.364243,0.70094,0.555524,0.0251285,0.821266,0.192923,0.348042,0.807926,0.322499,0.0900207,0.444371,0.293422,0.00687695,0.930611,0.522632,0.470627,0.578592,0.901861,0.033978,0.957344,0.918849,0.800829,0.156824,0.915163,0.358157,0.648155,0.322249,0.928484,0.89255,0.201797,0.824726,0.827345,0.840316,0.110613,0.647851,0.95855,0.371585,0.542374,0.986898,0.823975,0.646036,0.239712,0.736122,0.406944,0.547755,0.537165,0.136789,0.460329,0.943376,0.770823,0.423867,0.150081,0.498738,0.595211,0.257189,0.365805,0.125272,0.722898,0.811052,0.634398,0.197264,0.215706,0.330813,0.0246389,0.347543,0.982351,0.792064,0.879229,0.796597,0.292093,0.964551,0.3868,0.453842,0.00995737,0.0743315,0.430548,0.541059,0.719333,0.24567,0.731283,0.885587,0.960312,0.798535,0.557936,0.765745,0.953203,0.64206,0.86442,0.722218,0.272058,0.86949,0.51613,0.742084,0.8714,0.845226,0.598219,0.0799096,0.984007,0.721543,0.83305,0.425461,0.555833,0.182695,0.233063,0.2182,0.247073,0.943031,0.294612,0.33328,0.744115,0.62162,0.858912,0.226771,0.875831,0.391068,0.916844,0.692101,0.855866,0.580543,0.987791,0.6134,0.514407,0.446653,0.45264,0.783882,0.479588,0.881762,0.986557,0.733844,0.157394,0.881066,0.941434,0.81623,0.177136,0.18599,0.649332,0.926699,0.628575,0.728036,0.958556,0.0271675,0.00257301,0.842069,0.619259,0.559627,0.592551,0.929571,0.246121,0.951656,0.537155,0.352242,0.214023,0.605541,0.150311,0.582673,0.794614,0.979624,0.441957,0.224354,0.681833,0.0573189,0.298894,0.508297,0.468828,0.73672,0.236494,0.353411,0.812652,0.415585,0.365875,0.658802,0.342995,0.902236,0.601945,0.565655,0.0305277,0.366457,0.941226,0.282198,0.133562,0.530507,0.103732,0.226546,0.78026,0.457507,0.949566,0.692834,0.0773671,0.842505,0.927768,0.562204,0.299336,0.296117,0.837556,0.154344,0.319301,0.211884,0.837566,0.670127,0.383824,0.945599,0.776657,0.204826,0.218889,0.879181,0.537417,0.286421,0.471992,0.474691,0.239437,0.837874,0.460962,0.21929,0.760533,0.138384,0.548528,0.442125,0.0873855,0.783647,0.492593,0.111453,0.760361,0.467595,0.288626,0.478543,0.212481,0.495315,0.0389764,0.738271,0.593933,0.162471,0.230492,0.294548,0.654061,0.423033,0.879924,0.875703,0.72767,0.0299777,0.874025,0.185511,0.52789,0.719514,0.148754,0.935123,0.164873,0.729389,0.716295,0.345249,0.746693,0.153184,0.44129,0.666207,0.730405,0.514813,0.726213,0.00291175,0.205411,0.345763,0.586415,0.691761,0.613656,0.274424,0.0687811,0.153486,0.713315,0.152019,0.194885,0.640726,0.579928,0.219249,0.485125,0.268845,0.954931,0.0371162,0.704083,0.894394,0.457289,0.38641,0.335283,0.551896,0.936694,0.684956,0.84095,0.134164,0.503404,0.0607526,0.784277,0.658462,0.839661,0.130325,0.078384,0.6353,0.321356,0.220651,0.442728,0.887854,0.0293223,0.127737,0.742056,0.122965,0.0314155,0.689314,0.238114,0.619047,0.103423,0.31093,0.939584,0.425284,0.688818,0.729711,0.2593,0.822753,0.0382903,0.536925,0.115791,0.213931,0.226852,0.180457,0.687012,0.508527,0.7129,0.765425,0.668016,0.433491,0.508782,0.0580176,0.647854,0.576583,0.359763,0.402157,0.928146,0.345031,0.380221,0.872854,0.347397,0.279196,0.081248,0.0634284,0.779434,0.901777,0.357691,0.972617,0.932413,0.279987,0.406867,0.351841,0.190044,0.439313,0.216442,0.532156,0.973777,0.860764,0.564157,0.348332,0.850517,0.588454,0.902869,0.611998,0.0262855,0.0344465,0.80401,0.399065,0.43972,0.728658,0.912175,0.677409,0.773217,0.73866,0.840448,0.705962,0.00459915,0.963918,0.934662,0.901303,0.218475,0.0567598,0.261712,0.0745686,0.107982,0.404673,0.104054,0.0392369,0.386026,0.555027,0.818512,0.365138,0.863389,0.471755,0.515398,0.691293,0.145592,0.889707,0.811145,0.641888,0.426705,0.268677,0.359977,0.162959,0.197463,0.443114,0.321939,0.734931,0.137478,0.478965,0.0136405,0.374652,0.844442,0.423325,0.671932,0.786566,0.0835178,0.634148,0.584706,0.473453,0.817209,0.484461,0.804879,0.906231,0.733896,0.226234,0.118793,0.817008,0.000142038,0.744399,0.503093,0.607267,0.201965,0.345926,0.42568,0.682014,0.948074,0.54199,0.430901,0.936881,0.411592,0.327989,0.595124,0.145804,0.914662,0.383825,0.0786985,0.21252,0.404921,0.613356,0.421947,0.162031,0.198916,0.497621,0.666307,0.146237,0.862404,0.737782,0.529652,0.65973,0.445282,0.508603,0.668431,0.0668638,0.202165,0.553545,0.130919,0.76493,0.461683,0.0302175,0.470085,0.865968,0.880481,0.362792,0.835632,0.708328,0.40238,0.658248,0.844301,0.883251,0.92795,0.662004,0.506338,0.682633,0.844684,0.711854,0.0975506,0.74178,0.373015,0.0416996,0.615039,0.584125,0.560868,0.0587664,0.0799438,0.058727,0.960365,0.073081,0.197028,0.0557731,0.110979,0.767667,0.428324,0.883199,0.0175815,0.144884,0.372977,0.0431915,0.681327,0.249726,0.385509,0.552695,0.752158,0.465545,0.70151,0.849486,0.0684028,0.196549,0.195441,0.777096,0.0697573,0.176556,0.616398,0.562523,0.0361561,0.787199,0.402516,0.0463361,0.537919,0.436278,0.315698,0.350828,0.490839,0.0739796,0.386692,0.435685,0.624958,0.776211,0.0301349,0.643808,0.0627894,0.31295,0.0730038,0.500175,0.627823,0.94666,0.580489,0.501941,0.258383,0.446785,0.883189,0.226554,0.546997,0.150795,0.0246512,0.903358,0.143801,0.0124726,0.0295171,0.911795,0.677142,0.463595,0.792133,0.515311,0.480213,0.326611,0.293309,0.197848,0.545247,0.496126,0.277859,0.713421,0.855024,0.57688,0.88585,0.579514,0.715178,0.604022,0.662143,0.0889035,0.972924,0.851106,0.214622,0.385201,0.502245,0.785315,0.586399,0.475491,0.99126,0.642066,0.960605,0.992189,0.294062,0.20483,0.34184,0.49385,0.469939,0.331373,0.958983,0.985171,0.193741,0.967628,0.587852,0.0231474,0.00640243,0.387988,0.985688,0.0203195,0.0530196,0.826825,0.79692,0.260149,0.925224,0.56806,0.889968,0.46077,0.192687,0.79309,0.849603,0.294488,0.599084,0.631444,0.126641,0.924118,0.708068,0.763648,0.966601,0.48179,0.940165,0.872502,0.852082,0.374363,0.865944,0.64968,0.3433,0.407543,0.656275,0.217916,0.632974,0.772357,0.966434,0.184338,0.299277,0.710967,0.337444,0.947024,0.113388,0.888659,0.531632,0.997253,0.464234,0.0690268,0.270391,0.851334,0.40037,0.652261,0.58329,0.753385,0.0907796,0.140754,0.219929,0.790111,0.630026,0.34697,0.430465,0.876502,0.128705,0.491149,0.567074,0.222855,0.0376949,0.82407,0.946958,0.43741,0.600092,0.749901,0.155998,0.673432,0.998664,0.436581,0.00449961,0.609993,0.48333,0.790167,0.303383,0.145202,0.265458,0.66998,0.408591,0.724658,0.809417,0.0546073,0.0535635,0.953421,0.548052,0.403663,0.00768471,0.824135,0.795423,0.104399,0.806127,0.8021,0.737123,0.255376,0.44891,0.390661,0.353359,0.037571,0.825235,0.546569,0.133401,0.109854,0.0714102,0.680727,0.745701,0.307433,0.53695,0.25536,0.862837,0.649139,0.563129,0.255649,0.748205,0.642584,0.692996,0.279781,0.325331,0.65978,0.137107,0.399521,0.457017,0.220064,0.621748,0.552111,0.80574,0.199707,0.855289,0.0195042,0.956489,0.526145,0.439362,0.83377,0.83148,0.731982,0.791798,0.9928,0.778076,0.0697126,0.121537,0.332286,0.977541,0.422928,0.405795,0.667177,0.525031,0.961254,0.534076,0.160357,0.458207,0.662555,0.204907,0.764061,0.120912,0.929704,0.194237,0.0483168,0.16294,0.693899,0.228881,0.0825477,0.979915,0.0465912,0.576969,0.68958,0.914249,0.375534,0.434868,0.356127,0.859029,0.864629,0.81282,0.444221,0.924994,0.380744,0.879376,0.158375,0.328744,0.876032,0.0573483,0.639131,0.0327287,0.523348,0.918951,0.947549,0.431312,0.329999,0.485964,0.369054,0.655212,0.62727,0.0445102,0.42039,0.385284,0.713964,0.544505,0.199818,0.85281,0.476615,0.473275,0.124531,0.827828,0.501257,0.575211,0.560321,0.499049,0.375526,0.877097,0.227507,0.473786,0.518414,0.126089,0.231999,0.507092,0.0793925,0.556912,0.051572,0.813829,0.824034,0.870649,0.272392,0.815946,0.0813944,0.156082,0.139681,0.415232,0.771053,0.837142,0.176962,0.637209,0.666978,0.308003,0.316914,0.44916,0.634488,0.932539,0.93752,0.564464,0.138902,0.0209676,0.631605,0.93417,0.959928,0.647756,0.0332281,0.472186,0.491183,0.45155,0.196968,0.402362,0.182275,0.0474215,0.148604,0.385448,0.59686,0.562662,0.289825,0.714248,0.907535,0.198619,0.354082,0.322766,0.677686,0.137439,0.511509,0.602144,0.254368,0.671035,0.751527,0.964816,0.0548731,0.969198,0.392755,0.720824,0.910369,0.598431,0.220907,0.771884,0.61692,0.90018,0.0686678,0.0677532,0.18595,0.755403,0.236224,0.903346,0.366522,0.21472,0.107596,0.622687,0.896849,0.654269,0.0517924,0.677406,0.905645,0.640469,0.563145,0.0218754,0.0697998,0.0901074,0.423048,0.848398,0.808777,0.895913,0.562579,0.154406,0.0725534,0.23989,0.904975,0.090492,0.346226,0.265657,0.136185,0.957816,0.779147,0.278785,0.0624826,0.861451,0.355418,0.11092,0.379753,|0.19537,0.474776,0.339966,0.243672,0.384944,0.866969,0.85302,0.463431,0.246555,0.146004,0.0783941,0.901803,0.939845,0.142627,0.171297,0.302417,0.639214,0.318076,0.788358,0.704114,0.409537,0.66618,0.371766,0.367608,0.323211,0.472731,0.626646,0.490184,0.540459,0.749402,0.151186,0.583171,0.00443673,0.22295,0.663219,0.163583,0.559871,0.527455,0.829863,0.161706,0.418027,0.912495,0.81542,0.112582,0.1072,0.87599,0.279717,0.262372,0.969565,0.414355,0.943128,0.952917,0.631674,0.97873,0.867352,0.628824,0.213566,0.657051,0.11818,0.524764,0.0890579,0.659038,0.520578,0.803493,0.870549,0.00207818,0.0655302,0.841343,0.940708,0.11593,0.224318,0.684075,0.355511,0.697145,0.827602,0.797241,0.215802,0.817361,0.24113,0.914825,0.512528,0.900887,0.478211,0.105026,0.440945,0.673793,0.565239,0.034094,0.777979,0.0632845,0.86154,0.0234866,0.562122,0.999366,0.265121,0.537282,0.46505,0.525928,0.765901,0.575819,0.869253,0.0201482,0.253418,0.689575,0.21291,0.903043,0.740134,0.210956,0.16882,0.251228,0.937639,0.184136,0.034061,0.677151,0.86839,0.184328,0.74516,0.00622672,0.190364,0.433916,0.239392,0.472163,0.317508,0.554549,0.951434,0.821288,0.69831,0.274748,0.0322919,0.581294,0.72782,0.342621,0.568375,0.664957,0.514127,0.12453,0.509006,0.738229,0.772089,0.980533,0.555168,0.241062,0.105944,0.219814,0.82751,0.760527,0.16017,0.827288,0.465303,0.550987,0.160346,0.943815,0.512304,0.656577,0.664525,0.999517,0.560603,0.308772,0.625248,0.545268,0.814384,0.586338,0.709035,0.354714,0.135367,0.802493,0.522691,0.269799,0.330572,0.647388,0.724541,0.671226,0.28025,0.0682157,0.945563,0.240145,0.350399,0.670467,0.608553,0.375113,0.729913,0.921974,0.859744,0.00112629,0.263764,0.886204,0.795679,0.646926,0.189683,0.966036,0.837475,0.269692,0.0650119,0.0189389,0.930121,0.450368,0.999965,0.0136786,0.0639054,0.731642,0.236176,0.435928,0.37739,0.995937,0.808819,0.752996,0.942054,0.107174,0.347756,0.211384,0.939152,0.871439,0.542183,0.706001,0.692849,0.0662019,0.0615087,0.112135,0.397866,0.529728,0.135528,0.758211,0.937088,0.415341,0.701743,0.54888,0.922191,0.641078,0.789804,0.509274,0.471826,0.103089,0.641175,0.651324,0.0361801,0.339163,0.782863,0.0376768,0.0475103,0.545226,0.347617,0.772643,0.934032,0.472299,0.328978,0.539932,0.317428,0.641317,0.340785,0.133809,0.172634,0.427225,0.452775,0.931376,0.852466,0.251679,0.137417,0.110754,0.31254,0.191134,0.128523,0.313988,0.171835,0.667172,0.0810753,0.836072,0.187315,0.990211,0.330503,0.35911,0.879235,0.115108,0.849672,0.262127,0.395004,0.524296,0.597031,0.400602,0.0889682,0.353902,0.247472,0.823996,0.0109388,0.351523,0.24941,0.609145,0.306245,0.0561156,0.0856155,0.145703,0.282849,0.0447016,0.483211,0.5639,0.0195145,0.0046612,0.374487,0.496569,0.608863,0.185134,0.905538,0.997633,0.957763,0.813909,0.530001,0.360051,0.341914,0.564706,0.334463,0.475802,0.845294,0.812751,0.793304,0.0559376,0.40736,0.0208322,0.0699943,0.909786,0.146746,0.896481,0.648991,0.981171,0.885989,0.593909,0.379614,0.514846,0.735542,0.843766,0.935787,0.689135,0.923215,0.841718,0.688738,0.794149,0.929084,0.553296,0.0826479,0.3244,0.711908,0.250634,0.0112793,0.422348,0.346059,0.268331,0.44963,0.869064,0.401235,0.376415,0.0361923,0.90605,0.37052,0.938031,0.450587,0.787899,0.987944,0.450014,0.192887,0.732591,0.0716864,0.501745,0.602986,0.616798,0.118657,0.189961,0.116628,0.346881,0.364627,0.825522,0.920604,0.192088,0.177567,0.152019,0.099035,0.179486,0.971679,0.0180309,0.0776021,0.634841,0.00485486,0.114976,0.946263,0.357601,0.145863,0.463018,0.756307,0.966854,0.508786,0.226917,0.0381446,0.18273,0.588242,0.72635,0.694352,0.345676,0.623692,0.333605,0.508672,0.366607,0.878914,0.0829579,0.0439067,0.630832,0.433697,0.523295,0.0409042,0.276044,0.832266,0.81331,0.214985,0.592907,0.240806,0.376606,0.885116,0.975118,0.0615796,0.267293,0.73719,0.0444139,0.19401,0.885784,0.659589,0.637827,0.304232,0.067452,0.625839,0.774075,0.944513,0.500399,0.310222,0.34018,0.778715,0.711714,0.33011,0.639782,0.0529954,0.918448,0.565378,0.444883,0.999007,0.631609,0.787822,0.184741,0.292878,0.803651,0.888484,0.279877,0.427002,0.732566,0.3026,0.577871,0.559076,0.715555,0.473398,0.363154,0.641943,0.386189,0.92482,0.290872,0.897918,0.324907,0.862727,0.479943,0.956695,0.553077,0.619744,0.775834,0.788107,0.290046,0.169457,0.0643021,0.43877,0.54007,0.559713,0.513325,0.503797,0.664695,0.315091,0.0860277,0.295947,0.864012,0.90201,0.97689,0.357647,0.792201,0.92418,0.210808,0.911754,0.8912,0.903975,0.365501,0.013101,0.832069,0.359654,0.00857699,0.500648,0.95561,0.550891,0.629413,0.00660038,0.639166,0.882735,0.955197,0.237913,0.19606,0.27222,0.66583,0.712384,0.118599,0.0466489,0.84508,0.0268055,0.388107,0.962076,0.573167,0.468571,0.731372,0.419082,0.916602,0.997174,0.0994977,0.130318,0.115043,0.97919,0.349122,0.0200637,0.141593,0.746359,0.330949,0.387442,0.403157,0.175551,0.863129,0.0135323,0.289587,0.584198,0.775751,0.976916,0.526227,0.789867,0.423686,0.534715,0.544674,0.518309,0.49664,0.811066,0.0618696,0.350634,0.729752,0.258047,0.529975,0.451056,0.352119,0.383603,0.862093,0.670295,0.322759,0.403274,0.900809,0.542811,0.500018,0.625969,0.279801,0.631615,0.600717,0.0210686,0.853728,0.620911,0.234575,0.0211316,0.819592,0.00246763,0.329162,0.412437,0.65976,0.875213,0.0742452,0.886395,0.77206,0.30655,0.468735,0.448688,0.017028,0.962127,0.744147,0.493956,0.761041,0.416222,0.171348,0.394295,0.168836,0.672153,0.901198,0.529805,0.860627,0.629121,0.654879,0.562091,0.0817736,0.0359731,0.606344,0.0122785,0.198643,0.616799,0.326028,0.394808,0.520641,0.421564,0.308023,0.101536,0.250148,0.169249,0.160813,0.0328391,0.49918,0.616919,0.814327,0.124705,0.225301,0.443439,0.575612,0.0543739,0.237897,0.121167,0.94109,0.822371,0.719293,0.401482,0.511918,0.478215,0.829776,0.545109,0.88902,0.558518,0.570164,0.370049,0.138835,0.935495,0.137997,0.681805,0.500078,0.294543,0.816701,0.263507,0.919139,0.24774,0.934912,0.422176,0.770012,0.0478632,0.0185953,0.561872,0.288985,0.843656,0.975684,0.562688,0.356628,0.677284,0.0583534,0.0489716,0.358293,0.696322,0.99654,0.459879,0.124809,0.393185,0.908148,0.527739,0.665317,0.501943,0.00668859,0.452476,0.218721,0.907087,0.626121,0.134459,0.696604,0.208485,0.898977,0.965827,0.789751,0.579202,0.856996,0.617408,0.576614,0.936408,0.686005,0.755934,0.168672,0.543535,0.00284028,0.387973,0.855541,0.642537,0.552647,0.368411,0.338011,0.0835057,0.639599,0.556288,0.379321,0.810027,0.19986,0.252056,0.272974,0.693243,0.329447,0.923419,0.479462,0.969787,0.0736584,0.330999,0.61813,0.232042,0.310939,0.523028,0.126831,0.262512,0.440973,0.352362,0.00851649,0.465777,0.437117,0.726012,0.959809,0.270164,0.0679621,0.659804,0.986151,0.135776,0.405743,0.346126,0.290314,0.886905,0.781523,0.989927,0.923016,0.942279,0.518195,0.0112426,0.179766,0.444598,0.500246,0.460835,0.96952,0.662299,0.299089,0.15231,0.30615,0.766451,0.812604,0.766237,0.348497,0.270381,0.0759878,0.164755,0.851387,0.997272,0.905484,0.0243251,0.420135,0.281027,0.463635,0.548939,0.954271,0.00604856,0.796263,0.118579,0.60117,0.0196299,0.849113,0.278416,0.388837,0.0298162,0.798562,0.275502,0.612119,0.560249,0.040282,0.342382,0.428427,0.732621,0.429827,0.536772,0.110745,0.392801,0.355319,0.584162,0.63323,0.389716,0.962307,0.736115,0.161426,0.166212,0.937041,0.459388,0.637765,0.292865,0.85417,0.333295,0.8646,0.752138,0.80829,0.971103,0.766332,0.58674,0.898242,0.461201,0.409755,0.317661,0.901212,0.307132,0.918562,0.597915,0.453274,0.354672,0.0825912,0.42963,0.735381,0.465174,0.89309,0.295934,0.35997,0.594858,0.203233,0.575749,0.755846,0.420994,0.221935,0.903973,0.2342,0.906061,0.855983,0.601597,0.453028,0.377089,0.43895,0.0475667,0.737057,0.0333272,0.905122,0.176749,0.637488,0.400052,0.139301,0.843773,0.360027,0.0536068,0.45716,0.822345,0.316597,0.541185,0.500586,0.18299,0.881139,0.486493,0.557009,0.900049,0.932282,0.120477,0.711303,0.839678,0.385549,0.915584,0.439238,0.749686,0.102687,0.053699,0.184671,0.244849,0.493889,0.822691,0.131395,0.479161,0.32024,0.566782,0.690039,0.317474,0.704542,0.543797,0.777448,0.117755,0.926968,0.558553,0.96575,0.618071,0.311719,0.437643,0.839845,0.621201,0.779363,0.195863,0.897665,0.46827,0.72527,0.420807,0.891882,0.268941,0.433669,0.70584,0.408915,0.0922712,0.323536,0.898879,0.942054,0.903813,0.704177,0.645684,0.271931,0.61226,0.415845,0.310183,0.239213,0.83694,0.527888,0.333161,0.8757,0.660443,0.0632327,0.146837,0.255156,0.404642,0.530296,0.784494,0.750271,0.485996,0.688612,0.775837,0.130971,0.319841,0.224663,0.158529,0.850786,0.735425,0.71045,0.205337,0.218995,0.0129354,0.45732,0.799596,0.975035,0.952614,0.907272,0.668151,0.0642238,0.158415,0.900131,0.787536,0.806304,0.461687,0.0766874,0.646641,0.94938,0.495613,0.348189,0.393868,0.171825,0.120882,0.108722,0.0498711,0.113884,0.456143,0.998074,0.488846,0.315317,0.491413,0.69241,0.739681,0.578341,0.198322,0.428299,0.13055,0.734865,0.797879,0.717008,0.919547,0.917428,0.414657,0.941374,0.0721561,0.0931835,0.564672,0.811049,0.704798,0.813258,0.0389301,0.398229,0.756675,0.41308,0.127541,0.262547,0.565141,0.670656,0.486441,0.586912,0.0498991,0.906101,0.0136316,0.540637,0.783555,0.00100642,|0.736565,0.251835,0.175583,0.084599,0.839847,0.725742,0.846137,0.276276,0.76582,0.380241,0.256749,0.984294,0.00101447,0.744375,0.415629,0.459372,0.698714,0.301316,0.274698,0.241125,0.638552,0.577893,0.914894,0.286965,0.554691,0.434475,0.207304,0.801413,0.004673,0.427607,0.880807,0.158162,0.832796,0.0377086,0.70716,0.072014,0.710515,0.963118,0.0810255,0.695937,0.740396,0.140157,0.522204,0.538896,0.399217,0.929605,0.543089,0.753483,0.0656396,0.315898,0.242911,0.33782,0.569951,0.110898,0.637984,0.581525,0.806434,0.630647,0.907849,0.812975,0.237203,0.466126,0.917742,0.867542,0.86461,0.521634,0.159649,0.902607,0.529511,0.799365,0.586172,0.0595575,0.754143,0.279971,0.00663596,0.230436,0.600627,0.81356,0.640628,0.805465,0.518467,0.135554,0.589639,0.63804,0.983872,0.690465,0.330323,0.691377,0.952746,0.0512092,0.883129,0.637857,0.240738,0.770101,0.172811,0.140607,0.294132,0.872696,0.448989,0.999081,0.141224,0.507046,0.171688,0.199471,0.157426,0.0559151,0.991146,0.068684,0.526985,0.327745,0.158362,0.320852,0.000509739,0.676655,0.257631,0.456113,0.932348,0.24576,0.587139,0.69873,0.111892,0.733905,0.140243,0.367283,0.618266,0.757037,0.0333189,0.544499,0.510989,0.841938,0.121784,0.852129,0.394506,0.666936,0.277135,0.844807,0.869423,0.958243,0.663386,0.246851,0.557856,0.601381,0.174254,0.72848,0.498971,0.2338,0.932716,0.213394,0.354775,0.527411,0.370014,0.639171,0.641646,0.56916,0.352393,0.858424,0.825977,0.982324,0.161263,0.15953,0.19971,0.207283,0.964882,0.167963,0.703189,0.613422,0.446932,0.639114,0.321145,0.0652341,0.517344,0.215828,0.466776,0.526306,0.78642,0.579545,0.496645,0.585151,0.236069,0.325565,0.350301,0.287857,0.980915,0.418709,0.627528,0.881946,0.156257,0.783813,0.186566,0.676591,0.164514,0.380101,0.675364,0.720468,0.0644994,0.0231776,0.834176,0.00896543,0.229604,0.593847,0.837544,0.327386,0.32602,0.0249132,0.540113,0.268481,0.322438,0.513888,0.345578,0.331211,0.305619,0.110768,0.97828,0.139014,0.349081,0.593331,0.698939,0.438945,0.168832,0.201649,0.839635,0.736458,0.428527,0.615389,0.0445432,0.158745,0.833155,0.867193,0.858831,0.514087,0.668071,0.734112,0.131517,0.669722,0.519712,0.572074,0.516121,0.922225,0.283327,0.10475,0.942169,0.437538,0.877566,0.701138,0.421084,0.0435066,0.686439,0.498691,0.397466,0.801196,0.796869,0.632945,0.80523,0.841939,0.60927,0.102892,0.0931011,0.667677,0.452435,0.727006,0.435935,0.673744,0.694003,0.324489,0.651228,0.381845,0.933435,0.558431,0.342362,0.930849,0.917715,0.959969,0.687994,0.272802,0.122475,0.748484,0.708774,0.394858,0.375927,0.462189,0.458721,0.7139,0.442193,0.101264,0.222187,0.265128,0.474276,0.37693,0.631112,0.905028,0.592767,0.238163,0.187494,0.233869,0.431459,0.0592659,0.234608,0.753949,0.919384,0.893557,0.206625,0.149201,0.361595,0.2323,0.887515,0.933724,0.0400227,0.594942,0.824936,0.196449,0.919413,0.00717628,0.246876,0.45631,0.969821,0.23611,0.556143,0.106134,0.399838,0.365204,0.0412171,0.812076,0.959943,0.0316714,0.0302464,0.385594,0.283289,0.729785,0.6116,0.743516,0.302143,0.0924035,0.147136,0.88464,0.995534,0.926111,0.553044,0.359153,0.217698,0.906938,0.423052,0.110232,0.51803,0.499737,0.857956,0.0296283,0.0324179,0.601219,0.551799,0.734547,0.783308,0.220229,0.901772,0.559284,0.418336,0.368609,0.49101,0.341464,0.303728,0.445746,0.670048,0.168014,0.195541,0.577925,0.863627,0.129661,0.986139,0.257501,0.623659,0.680687,0.979889,0.220932,0.447518,0.72587,0.35201,0.13423,0.53198,0.954253,0.118619,0.457657,0.051165,0.863608,0.680766,0.714787,0.161977,0.462994,0.670267,0.190446,0.978235,0.788669,0.703637,0.292932,0.130879,0.66603,0.608899,0.400501,0.367517,0.383013,0.258641,0.24335,0.395346,0.0557973,0.316241,0.453305,0.213922,0.836591,0.148849,0.37313,0.24252,0.385883,0.318034,0.636251,0.692601,0.681004,0.545392,0.52256,0.474375,0.486479,0.588072,0.407382,0.322908,0.0586284,0.118148,0.177526,0.846566,0.608715,0.725915,0.0256081,0.028415,0.76144,0.436301,0.756961,0.147894,0.454646,0.937714,0.842535,0.249488,0.651995,0.0109833,0.795674,0.176724,0.854087,0.500924,0.501417,0.830755,0.791695,0.20359,0.509458,0.28376,0.999276,0.7603,0.431554,0.846263,0.91158,0.331625,0.880593,0.489896,0.0445724,0.0387499,0.135556,0.842524,0.487386,0.121074,0.860225,0.719318,0.26861,0.39696,0.877076,0.961116,0.759976,0.039797,0.277014,0.469216,0.439494,0.927398,0.224859,0.379395,0.794772,0.218757,0.648265,0.109913,0.483343,0.640815,0.640434,0.0188828,0.0673239,0.40581,0.852903,0.781263,0.0214912,0.303707,0.426982,0.260595,0.777489,0.300763,0.393483,0.294142,0.392397,0.548687,0.334531,0.773643,0.339692,0.435591,0.983748,0.106554,0.99179,0.910531,0.939011,0.85701,0.468535,0.0630306,0.556095,0.317535,0.324102,0.0428703,0.781309,0.708502,0.615449,0.584622,0.329637,0.303395,0.840735,0.238248,0.242224,0.649771,0.214431,0.939775,0.339636,0.973669,0.427027,0.258326,0.81432,0.324723,0.657462,0.739078,0.607553,0.299051,0.506639,0.603913,0.555252,0.443209,0.713321,0.354551,0.702197,0.989675,0.0697739,0.807963,0.0441973,0.984921,0.164026,0.485424,0.215433,0.952323,0.915895,0.375034,0.864764,0.798747,0.0430358,0.604748,0.531169,0.277293,0.129531,0.144129,0.22231,0.0184601,0.23941,0.384374,0.135242,0.55937,0.386152,0.173823,0.0937677,0.957582,0.461784,0.433446,0.686531,0.809286,0.563724,0.780123,0.859935,0.0132197,0.644777,0.561888,0.829496,0.571179,0.567287,0.478334,0.925211,0.358383,0.20568,0.662281,0.24351,0.157709,0.591247,0.592792,0.870875,0.93049,0.444327,0.597384,0.688322,0.0681628,0.304483,0.840627,0.494566,0.58851,0.362246,0.202033,0.657881,0.253525,0.588761,0.283303,0.44723,0.788471,0.51162,0.33744,0.0335851,0.107127,0.596531,0.297693,0.230586,0.846962,0.749328,0.324953,0.786603,0.637198,0.462525,0.602221,0.967392,0.375927,0.762779,0.175622,0.784874,0.0610338,0.358319,0.519198,0.067436,0.0113599,0.831565,0.372478,0.643942,0.156908,0.0336941,0.835925,0.642028,0.0969006,0.402906,0.443228,0.417533,0.748997,0.024574,0.175068,0.803468,0.026336,0.710796,0.126653,0.706069,0.479571,0.8144,0.173785,0.649038,0.490575,0.141259,0.980969,0.175837,0.678441,0.241732,0.361568,0.736075,0.622572,0.397378,0.411068,0.0398449,0.831991,0.623642,0.801629,0.634253,0.369849,0.119858,0.829845,0.153378,0.969101,0.957764,0.538634,0.0797523,0.187336,0.711232,0.991505,0.76856,0.786216,0.902452,0.573382,0.877763,0.604938,0.706352,0.698357,0.50152,0.328494,0.618976,0.811923,0.0022707,0.530017,0.236641,0.955479,0.880957,0.682845,0.658899,0.530775,0.518608,0.724371,0.321216,0.8248,0.217114,0.591845,0.139125,0.967971,0.935262,0.0199357,0.0398624,0.233641,0.275235,0.342117,0.187275,0.267391,0.108688,0.834432,0.290692,0.386087,0.181024,0.174851,0.372834,0.23172,0.347379,0.348378,0.668674,0.849892,0.276212,0.527159,0.672217,0.437958,0.101476,0.380764,0.940746,0.846474,0.976333,0.207148,0.812737,0.679859,0.938447,0.85771,0.616983,0.422591,0.151621,0.536129,0.852827,0.0521635,0.838278,0.708688,0.490796,0.233467,0.586544,0.220638,0.21544,0.646074,0.555221,0.512795,0.498843,0.925588,0.552876,0.943806,0.812797,0.677916,0.693282,0.740766,0.254532,0.414625,0.965162,0.638769,0.302611,0.219145,0.232286,0.599359,0.71732,0.898698,0.961101,0.221938,0.555878,0.0146143,0.261157,0.14079,0.116246,0.868829,0.292205,0.488968,0.621043,0.709403,0.0157121,0.538936,0.414378,0.509403,0.790394,0.132397,0.333285,0.777547,0.343681,0.262046,0.814256,0.0709553,0.696046,0.112039,0.745582,0.487333,0.331438,0.275787,0.192583,0.244212,0.612996,0.486651,0.0339822,0.756028,0.370833,0.364903,0.973164,0.735054,0.212499,0.300726,0.306234,0.954053,0.286546,0.499737,0.719986,0.1908,0.759186,0.00666928,0.990164,0.263859,0.872678,0.549351,0.426165,0.930873,0.0216485,0.148518,0.376407,0.927929,0.187881,0.710349,0.923458,0.682571,0.368629,0.81861,0.410438,0.0267523,0.661993,0.909628,0.461818,0.422956,0.185808,0.866382,0.0527924,0.372339,0.748828,0.59626,0.145253,0.541519,0.288561,0.183324,0.325554,0.416749,0.167772,0.529541,0.680044,0.771205,0.123527,0.876533,0.550919,0.816883,0.842104,0.25163,0.948856,0.0461232,0.804597,0.35243,0.852973,0.484564,0.758154,0.905831,0.558352,0.80328,0.128913,0.910197,0.889284,0.36841,0.90771,0.532759,0.198577,0.941065,0.693048,0.524531,0.224524,0.362926,0.806861,0.653137,0.365716,0.132201,0.311435,0.410201,0.597129,0.453358,0.989248,0.725853,0.591902,0.315188,0.177615,0.0138367,0.391145,0.940437,0.693487,0.775896,0.967438,0.609341,0.374172,0.171793,0.36124,0.849702,0.581499,0.943873,0.765222,0.420776,0.0228531,0.315445,0.0525157,0.510207,0.212798,0.917996,0.71595,0.278592,0.227302,0.0331191,0.701495,0.282,0.20446,0.790586,0.309536,0.120966,0.440339,0.272566,0.592224,0.989892,0.0954905,0.761075,0.110249,0.967235,0.430039,0.00576651,0.295813,0.566959,0.31489,0.76906,0.961491,0.87302,0.44174,0.55196,0.894275,0.0212628,0.991633,0.567223,0.751732,0.802877,0.11611,0.846857,0.387328,0.493728,0.531281,0.572549,0.210967,0.563849,0.994825,0.896086,0.559195,0.193202,0.712169,0.240525,0.440392,0.442069,0.854055,0.475025,0.405757,0.28524,0.66626,0.867307,0.0269367,0.8913,0.398911,0.282364,0.319254,0.357244,0.880216,0.351594,0.61328,0.168712,0.697025,|0.816977,0.761473,0.569853,0.0631453,0.053656,0.534909,0.987703,0.753727,0.158293,0.301526,0.546777,0.406726,0.493477,0.347081,0.105898,0.643246,0.887444,0.824277,0.314689,0.480408,0.30229,0.995563,0.294857,0.644213,0.558851,0.00927299,0.883211,0.565197,0.259179,0.963703,0.860871,0.717812,0.0610114,0.331615,0.0164698,0.299196,0.231395,0.386126,0.6925,0.269644,0.087278,0.0346286,0.704479,0.432559,0.780437,0.967812,0.522243,0.478976,0.460658,0.674435,0.0707276,0.943934,0.204773,0.583069,0.845634,0.061103,0.29103,0.604825,0.539502,0.310679,0.661063,0.393689,0.272569,0.8535,0.243075,0.679573,0.613746,0.825056,0.907584,0.579847,0.572852,0.325114,0.0394476,0.25231,0.816276,0.968399,0.915445,0.00657815,0.573601,0.20973,0.384487,0.391583,0.562868,0.587139,0.21072,0.376925,0.967714,0.728192,0.580184,0.259925,0.137569,0.254646,0.678536,0.455057,0.981242,0.326954,0.492188,0.373415,0.303394,0.234227,0.55635,0.272965,0.519376,0.44786,0.40032,0.113774,0.544576,0.427678,0.474078,0.73298,0.266528,0.512186,0.294652,0.675909,0.722992,0.324005,0.0963444,0.0561845,0.121539,0.710244,0.14002,0.351116,0.36824,0.318417,0.309826,0.934108,0.130472,0.351103,0.585761,0.918196,0.466679,0.571129,0.033398,0.834577,0.308668,0.924286,0.330931,0.557878,0.103662,0.925375,0.395486,0.783238,0.967708,0.375547,0.38773,0.24648,0.265233,0.0383148,0.220996,0.0890362,0.147107,0.156062,0.682365,0.313174,0.654944,0.224072,0.644923,0.536366,0.16828,0.955631,0.942081,0.790685,0.589985,0.156584,0.895339,0.0952326,0.644335,0.528165,0.958342,0.170984,0.974506,0.716131,0.25925,0.138161,0.799553,0.516704,0.990089,0.75203,0.525125,0.777673,0.509127,0.898748,0.566551,0.723925,0.371676,0.91312,0.572713,0.701476,0.00254399,0.760344,0.936926,0.930265,0.133064,0.647436,0.910412,0.66762,0.548503,0.756392,0.10771,0.929996,0.781579,0.0304796,0.855333,0.997857,0.234253,0.470906,0.568121,0.140736,0.908982,0.49443,0.796785,0.204996,0.315202,0.924305,0.681152,0.940234,0.167256,0.294425,0.843913,0.365809,0.206041,0.019761,0.315781,0.162597,0.106173,0.946624,0.204726,0.106811,0.266878,0.250717,0.0727022,0.81018,0.270778,0.0705093,0.928412,0.152328,0.603883,0.0539021,0.179272,0.0328884,0.620211,0.327534,0.0169455,0.00321031,0.489634,0.0548152,0.644687,0.765462,0.464861,0.652874,0.253034,0.425664,0.265277,0.87225,0.65242,0.391354,0.290983,0.742493,0.521229,0.481048,0.254099,0.469419,0.551441,0.101253,0.912278,0.454668,0.342299,0.549176,0.189069,0.790182,0.994583,0.841319,0.547205,0.719579,0.543609,0.188228,0.700039,0.851703,0.00882852,0.484941,0.514658,0.784501,0.192736,0.659383,0.871177,0.450414,0.0874954,0.201694,0.555022,0.295573,0.714382,0.115614,0.597563,0.0050326,0.118216,0.321776,0.02908,0.774404,0.740721,0.420538,0.458297,0.906384,0.0740666,0.961382,0.112506,0.340341,0.0546201,0.0612594,0.117972,0.660468,0.341302,0.233268,0.35024,0.931544,0.655787,0.708927,0.857313,0.97234,0.0675375,0.751322,0.683384,0.125221,0.783356,0.592056,0.144055,0.747885,0.00805801,0.312087,0.203897,0.150821,0.552688,0.987255,0.926203,0.743721,0.498659,0.331403,0.371467,0.889486,0.607219,0.418,0.296044,0.129867,0.833292,0.277714,0.712362,0.412119,0.536643,0.738429,0.0759891,0.174873,0.26514,0.315121,0.460713,0.361228,0.202479,0.34683,0.619203,0.857047,0.674584,0.633757,0.76713,0.298534,0.306611,0.214477,0.469435,0.361255,0.0111237,0.122861,0.623294,0.884931,0.735822,0.686797,0.103299,0.689369,0.627466,0.470023,0.756218,0.5235,0.25505,0.733642,0.900089,0.954282,0.497473,0.130804,0.60567,0.0298786,0.351194,0.428619,0.417077,0.904644,0.321948,0.479813,0.19779,0.101733,0.114355,0.428344,0.548829,0.774256,0.266421,0.460298,0.845786,0.70319,0.0259908,0.773117,0.00704557,0.418039,0.996632,0.456922,0.308538,0.13615,0.588701,0.0361333,0.859014,0.893371,0.876103,0.113681,0.580814,0.188703,0.568269,0.0839691,0.644215,0.0923192,0.557142,0.033502,0.710901,0.805587,0.871441,0.59167,0.149555,0.05289,0.690319,0.173472,0.599065,0.147185,0.00795257,0.287338,0.724981,0.844319,0.666583,0.500396,0.562569,0.348124,0.0910973,0.356469,0.708267,0.412916,0.34411,0.317599,0.139373,0.767167,0.73286,0.396553,0.216971,0.0683976,0.167152,0.194041,0.02787,0.820537,0.524524,0.206077,0.0580651,0.438033,0.43692,0.320555,0.319594,0.500552,0.379281,0.912105,0.346491,0.466574,0.438977,0.138478,0.0967876,0.206645,0.070349,0.375087,0.27373,0.26088,0.279331,0.637204,0.491882,0.271056,0.448797,0.642084,0.995692,0.0650025,0.603409,0.694581,0.0041036,0.0607014,0.14678,0.472405,0.462512,0.943097,0.167818,0.981745,0.679711,0.07193,0.397099,0.0978882,0.591887,0.81638,0.672404,0.692427,0.296856,0.852624,0.446954,0.918594,0.814809,0.501647,0.985007,0.0901898,0.698104,0.429807,0.330555,0.786767,0.127279,0.735979,0.222054,0.492598,0.866224,0.758615,0.683038,0.299924,0.593114,0.797521,0.0161462,0.588139,0.0619525,0.85446,0.407034,0.0716466,0.854397,0.568883,0.580526,0.417561,0.223249,0.632612,0.420451,0.568668,0.646,0.891503,0.755021,0.00370145,0.934941,0.772726,0.428189,0.77455,0.0638174,0.493244,0.252009,0.463003,0.436728,0.945503,0.644898,0.509349,0.721427,0.655859,0.611338,0.836757,0.420813,0.216711,0.186244,0.92186,0.818289,0.707823,0.693463,0.296672,0.253142,0.257653,0.641254,0.20352,0.882726,0.109759,0.335338,0.556089,0.913541,0.653492,0.427882,0.530004,0.238631,0.905701,0.873916,0.941931,0.36962,0.948734,0.361617,0.8937,0.875168,0.76419,0.915126,0.863415,0.906259,0.290803,0.919877,0.962257,0.516715,0.926394,0.110562,0.809576,0.140632,0.190852,0.902855,0.138079,0.712326,0.116961,0.00394398,0.000321746,0.838073,0.779146,0.292216,0.978033,0.618868,0.00910842,0.578591,0.452698,0.964086,0.798965,0.985135,0.318303,0.3623,0.0947948,0.845335,0.38283,0.963292,0.521124,0.160527,0.801252,0.933479,0.815309,0.204026,0.841654,0.0139027,0.391084,0.444206,0.840991,0.886623,0.416184,0.405839,0.626247,0.104215,0.339818,0.125044,0.247021,0.614135,0.0911555,0.743111,0.257223,0.992442,0.895863,0.304135,0.312037,0.20063,0.279119,0.0841675,0.967739,0.112574,0.164379,0.285736,0.229648,0.17332,0.142129,0.460208,0.853216,0.766891,0.25589,0.873657,0.309592,0.504294,0.0107942,0.603477,0.993952,0.289174,0.989912,0.831148,0.874475,0.869413,0.137893,0.757477,0.0319652,0.408352,0.907949,0.437681,0.882614,0.552483,0.21474,0.84045,0.925878,0.708908,0.226325,0.0104738,0.996022,0.746355,0.490547,0.326056,0.64573,0.400227,0.859139,0.820782,0.714656,0.470386,0.566816,0.400187,0.471142,0.674805,0.449361,0.964827,0.291332,0.99455,0.383157,0.687345,0.61724,0.485491,0.0722607,0.654702,0.169134,0.65633,0.886562,0.465169,0.555397,0.0478098,0.310355,0.799054,0.0949178,0.852893,0.984351,0.773,0.804561,0.645885,0.056812,0.606302,0.808018,0.818557,0.20004,0.302673,0.483546,0.5399,0.746034,0.901599,0.0885541,0.00720984,0.172789,0.196791,0.462158,0.4117,0.624563,0.797674,0.693452,0.66594,0.0444226,0.591114,0.798405,0.717283,0.198767,0.698269,0.59618,0.155627,0.387856,0.634227,0.189166,0.622921,0.971072,0.307552,0.0373281,0.496728,0.361407,0.157198,0.586417,0.723437,0.0529297,0.0670689,0.449418,0.408321,0.606058,0.478891,0.495848,0.414911,0.0325126,0.085713,0.732587,0.807396,0.0964326,0.872876,0.343334,0.966527,0.706999,0.437523,0.889228,0.552915,0.783797,0.515341,0.0618114,0.010374,0.64195,0.603266,0.143376,0.726619,0.182396,0.929224,0.0477816,0.308396,0.711067,0.655748,0.895421,0.0901504,0.786076,0.894248,0.950988,0.666756,0.287677,0.435271,0.957914,0.251215,0.984075,0.509995,0.474276,0.828855,0.368514,0.222927,0.302468,0.495319,0.945728,0.902999,0.15841,0.518106,0.919464,0.936495,0.607965,0.815073,0.305528,0.52185,0.21607,0.234899,0.218037,0.0347094,0.0855556,0.302149,0.573787,0.971584,0.206699,0.116203,0.111991,0.65193,0.785135,0.0289138,0.235026,0.168946,0.692604,0.630321,0.0851683,0.908752,0.029588,0.0777549,0.172816,0.837188,0.427473,0.337111,0.648428,0.0639366,0.787074,0.728806,0.852143,0.45196,0.562363,0.951785,0.158088,0.638333,0.411737,0.807485,0.610738,0.817145,0.65976,0.290979,0.86168,0.381462,0.567554,0.630767,0.715273,0.756718,0.640249,0.99981,0.220532,0.0370287,0.657459,0.238584,0.492478,0.0223172,0.65403,0.221174,0.518674,0.133801,0.780182,0.963358,0.189753,0.0731294,0.0128127,0.180564,0.441964,0.382813,0.845506,0.777003,0.50324,0.635281,0.495739,0.85952,0.205576,0.0369625,0.846624,0.77029,0.556254,0.0783522,0.929218,0.579281,0.623189,0.660214,0.906191,0.747009,0.362109,0.0591416,0.513233,0.786565,0.467113,0.14891,0.0571199,0.438001,0.192688,0.336738,0.823898,0.121244,0.281099,0.776964,0.715286,0.826142,0.0830631,0.906026,0.984334,0.188128,0.350133,0.711316,0.96121,0.592617,0.52033,0.00762886,0.789371,0.0937994,0.988305,0.572495,0.82308,0.744819,0.528935,0.646531,0.422687,0.54039,0.0865463,0.29647,0.62515,0.67406,0.993623,0.415505,0.758537,0.659708,0.227602,0.580825,0.907588,0.0669193,0.876781,0.606013,0.776192,0.664015,0.155212,0.724587,0.386377,0.602638,0.563323,0.669729,0.255258,0.171278,0.393998,0.0100059,0.490924,0.221409,0.509433,0.239103,0.610623,0.367402,0.895833,0.368373,0.237858,0.18432,0.397386,0.0153157,0.209151,0.852975,0.289249,0.571179,0.565694,0.199175,0.216152,0.79447,0.0776386,|0.12617,0.165824,0.289923,0.90246,0.272344,0.495497,0.0333459,0.891895,0.558282,0.124562,0.320389,0.199642,0.882085,0.889046,0.0977736,0.917532,0.252341,0.848878,0.127933,0.0403123,0.855448,0.748335,0.151648,0.522436,0.531127,0.550407,0.28355,0.554038,0.997582,0.14775,0.826291,0.217874,0.137243,0.201697,0.662621,0.220886,0.00388849,0.742973,0.628367,0.877163,0.368767,0.683579,0.755844,0.751758,0.843289,0.523547,0.592854,0.476653,0.0248112,0.165836,0.679515,0.543759,0.534449,0.0433022,0.938665,0.879702,0.333377,0.755457,0.61131,0.882057,0.160571,0.444707,0.437638,0.443711,0.640869,0.357681,0.877326,0.933381,0.480229,0.431374,0.0943309,0.608232,0.837993,0.562976,0.148094,0.668598,0.27291,0.981383,0.164921,0.301356,0.459536,0.342981,0.957846,0.257297,0.763963,0.997455,0.650529,0.750998,0.329938,0.678387,0.711168,0.226299,0.131091,0.863853,0.0955912,0.466913,0.42038,0.587081,0.526565,0.235303,0.535608,0.430342,0.483672,0.903079,0.762816,0.203627,0.0194528,0.838402,0.832884,0.334987,0.30039,0.830914,0.00734758,0.862606,0.168533,0.403277,0.506577,0.514155,0.0722346,0.727977,0.471557,0.835571,0.812828,0.0192834,0.13414,0.954751,0.130775,0.594473,0.437734,0.590754,0.288101,0.461999,0.108531,0.0637946,0.93589,0.591323,0.808677,0.994314,0.409446,0.200629,0.558911,0.220834,0.328913,0.233932,0.797616,0.416861,0.241289,0.638682,0.861957,0.595479,0.0464585,0.0250863,0.769983,0.910301,0.253142,0.316799,0.750148,0.458911,0.0701111,0.957081,0.938562,0.715167,0.111635,0.64359,0.156181,0.0017845,0.653634,0.647343,0.629146,0.526446,0.454733,0.176458,0.210386,0.189099,0.789317,0.487954,0.193951,0.254559,0.536105,0.416045,0.48386,0.726404,0.0815689,0.94258,0.954579,0.380095,0.944226,0.506556,0.186128,0.209376,0.334589,0.638297,0.844441,0.821718,0.209643,0.560555,0.0956448,0.205957,0.882114,0.554803,0.217143,0.274875,0.936998,0.641832,0.229017,0.859191,0.200148,0.000825524,0.432063,0.599699,0.4647,0.682627,0.728764,0.47704,0.834941,0.545677,0.607373,0.713677,0.604958,0.114468,0.968344,0.973871,0.823245,0.620575,0.620391,0.0506625,0.349717,0.881049,0.968935,0.117245,0.878299,0.0190147,0.68415,0.618413,0.273891,0.0166578,0.140665,0.991977,0.11751,0.650267,0.508388,0.707163,0.717807,0.0557335,0.762486,0.436282,0.261515,0.540059,0.539723,0.424062,0.617997,0.798991,0.237573,0.222017,0.81837,0.686944,0.819751,0.0641067,0.781482,0.227931,0.885567,0.815526,0.257902,0.598531,0.948342,0.649952,0.735131,0.961386,0.623311,0.811071,0.676122,0.469845,0.209945,0.712021,0.268243,0.486648,0.0188584,0.0927567,0.157295,0.433624,0.814786,0.399891,0.253525,0.059003,0.677898,0.0163109,0.374479,0.738179,0.868975,0.668191,0.602562,0.911706,0.522634,0.353892,0.986652,0.0143129,0.0193074,0.532714,0.641224,0.23097,0.73087,0.576905,0.708214,0.866134,0.630642,0.658804,0.9329,0.251606,0.566322,0.415096,0.11415,0.200373,0.624793,0.655122,0.657604,0.994122,0.59177,0.582841,0.05612,0.37453,0.645528,0.845775,0.234601,0.0204782,0.368724,0.864691,0.277045,0.944299,0.243933,0.51559,0.524119,0.117354,0.192834,0.900867,0.651901,0.0295974,0.0711665,0.45236,0.657997,0.623411,0.851448,0.692973,0.0295058,0.521664,0.996042,0.147086,0.98425,0.957466,0.297086,0.389849,0.82888,0.593164,0.309237,0.976281,0.973183,0.45586,0.0593259,0.382001,0.0558261,0.698571,0.995804,0.258994,0.86483,0.983952,0.967223,0.765398,0.453422,0.62419,0.723129,0.944422,0.294087,0.121427,0.382656,0.100475,0.266204,0.83014,0.804403,0.528176,0.789484,0.692349,0.71077,0.655904,0.219651,0.445584,0.666063,0.447573,0.234044,0.691693,0.904646,0.118271,0.523212,0.871628,0.885885,0.477348,0.683348,0.915757,0.623469,0.0106615,0.853207,0.438983,0.112564,0.126377,0.136545,0.246299,0.899091,0.531756,0.698448,0.569988,0.756389,0.633799,0.641334,0.986339,0.881935,0.00872594,0.06784,0.595805,0.245611,0.38293,0.783512,0.646594,0.220343,0.6061,0.816117,0.477995,0.977812,0.303341,0.359566,0.224383,0.0266886,0.285751,0.670671,0.214372,0.69338,0.719629,0.185218,0.377947,0.122093,0.499479,0.548053,0.202056,0.55525,0.100642,0.263286,0.957093,0.441528,0.173642,0.519228,0.982609,0.152961,0.624607,0.114973,0.694426,0.0131433,0.7121,0.768966,0.980388,0.425179,0.356442,0.78965,0.514459,0.178289,0.949508,0.345208,0.904534,0.768365,0.845664,0.161982,0.559565,0.55914,0.184816,0.171067,0.91013,0.968621,0.555543,0.731872,0.482602,0.309395,0.0796877,0.143617,0.326043,0.844366,0.335694,0.966759,0.618392,0.322328,0.365737,0.0313875,0.420402,0.178661,0.0224059,0.26957,0.0247857,0.598639,0.507855,0.599927,0.932802,0.561908,0.0836558,0.607933,0.363254,0.991388,0.757296,0.933554,0.372779,0.888613,0.0727052,0.283523,0.530405,0.899544,0.0351366,0.690907,0.712447,0.112279,0.523452,0.183053,0.812538,0.464487,0.120355,0.0345284,0.383497,0.366569,0.810475,0.228889,0.206628,0.608861,0.0827363,0.143459,0.346056,0.0854365,0.739735,0.225868,0.42229,0.156678,0.110882,0.200363,0.814648,0.621104,0.272706,0.267524,0.0340657,0.345505,0.53377,0.78605,0.574797,0.334225,0.572081,0.0488464,0.145634,0.117888,0.74628,0.928713,0.369135,0.939564,0.614407,0.528251,0.439363,0.2807,0.758657,0.184376,0.894106,0.264438,0.870241,0.517557,0.303893,0.195866,0.177975,0.209268,0.292769,0.275011,0.161404,0.344993,0.474474,0.647829,0.456409,0.737508,0.245151,0.504623,0.66732,0.708733,0.828014,0.901685,0.343401,0.499513,0.438448,0.501424,0.753048,0.761157,0.989533,0.237187,0.706293,0.763989,0.141622,0.452035,0.697647,0.656986,0.596967,0.832377,0.0546811,0.0857015,0.80433,0.794621,0.909948,0.655895,0.0832088,0.471465,0.850135,0.867854,0.640934,0.970395,0.856104,0.0204125,0.134854,0.109995,0.675763,0.142144,0.392082,0.421687,0.67666,0.862832,0.0925249,0.368771,0.0474935,0.357294,0.843177,0.797509,0.0928982,0.642812,0.262428,0.696207,0.667644,0.965632,0.733644,0.51212,0.99136,0.962362,0.915379,0.346638,0.428882,0.609371,0.96085,0.83138,0.310459,0.969549,0.293167,0.247639,0.618159,0.164208,0.417401,0.215084,0.164531,0.52284,0.452761,0.442737,0.509326,0.462964,0.384792,0.496159,0.690901,0.818929,0.799433,0.763062,0.48472,0.143547,0.844558,0.676203,0.370081,0.659408,0.827783,0.235339,0.921184,0.430944,0.744837,0.517402,0.14309,0.640828,0.421962,0.742745,0.166905,0.45391,0.201443,0.809747,0.278971,0.232938,0.559143,0.682922,0.65418,0.5335,0.434758,0.307284,0.187758,0.493642,0.699229,0.647048,0.709405,0.625747,0.253015,0.898074,0.492449,0.767617,0.591808,0.786301,0.800517,0.556678,0.704497,0.134707,0.424336,0.120331,0.0387723,0.719558,0.386194,0.240759,0.417335,0.269172,0.27138,0.168449,0.14737,0.186792,0.34344,0.562967,0.49623,0.363385,0.727476,0.676651,0.257249,0.889349,0.756476,0.42118,0.293813,0.11349,0.166616,0.639761,0.865682,0.392745,0.617043,0.145225,0.973662,0.710136,0.612274,0.564652,0.607642,0.66048,0.826272,0.804027,0.663075,0.441656,0.401472,0.38419,0.0908898,0.99477,0.116678,0.160497,0.954529,0.384501,0.82099,0.341227,0.0702854,0.24178,0.0966047,0.0729747,0.0496921,0.00565457,0.659712,0.0238423,0.0686492,0.786807,0.751589,0.433394,0.853923,0.326892,0.319195,0.71226,0.462805,0.698539,0.828936,0.94,0.938462,0.252915,0.399451,0.770208,0.0565954,0.421552,0.688576,0.466994,0.843085,0.597514,0.371213,0.0008834,0.71117,0.74801,0.891725,0.349994,0.782611,0.68784,0.621723,0.954713,0.896604,0.818979,0.296535,0.574216,0.33908,0.322081,0.714134,0.0677381,0.386027,0.529082,0.874255,0.502057,0.891606,0.097863,0.503929,0.646464,0.774732,0.261161,0.0560375,0.181833,0.619465,0.580835,0.648371,0.0969604,0.976951,0.549488,0.776911,0.778791,0.501257,0.818882,0.594349,0.961963,0.978047,0.27996,0.548757,0.494615,0.864306,0.5441,0.862303,0.178414,0.336931,0.978509,0.369317,0.458541,0.049804,0.258878,0.132888,0.900355,0.98859,0.0748742,0.0365348,0.412435,0.243108,0.166824,0.336739,0.51968,0.825058,0.172227,0.618101,0.758546,0.899366,0.194983,0.465192,0.957397,0.788887,0.691652,0.414138,0.478428,0.280816,0.836192,0.128528,0.711249,0.325485,0.47953,0.80929,0.371862,0.876847,0.56395,0.151067,0.141552,0.288433,0.284802,0.544488,0.00912112,0.340291,0.0615751,0.261223,0.0259799,0.269634,0.919987,0.878304,0.990321,0.140022,0.243655,0.0403936,0.840072,0.386428,0.941047,0.481245,0.301892,0.542921,0.344433,0.233767,0.138681,0.617794,0.537299,0.763924,0.395817,0.577237,0.336133,0.71357,0.633832,0.699855,0.681838,0.984448,0.980925,0.64808,0.244803,0.476507,0.502907,0.0991458,0.232251,0.403384,0.778872,0.658247,0.0597655,0.0169898,0.518595,0.0180936,0.845485,0.953317,0.699321,0.719708,0.65765,0.433118,0.506902,0.0581948,0.847175,0.910046,0.705485,0.962811,0.717797,0.193853,0.974981,0.776691,0.286744,0.85843,0.431013,0.282902,0.552098,0.269363,0.389789,0.271343,0.618537,0.567098,0.0751086,0.133456,0.252089,0.175557,0.170978,0.721904,0.48041,0.522085,0.126593,0.988477,0.238048,0.7152,0.918159,0.169676,0.39296,0.7599,0.146628,0.699533,0.426554,0.197858,0.119938,0.556548,0.532993,0.314069,0.947279,0.315916,0.166067,0.884472,0.797552,0.857845,0.260026,0.886386,0.462417,0.781658,0.747511,0.60501,0.328351,0.791893,0.852113,0.564607,0.898562,0.591628,0.581054,0.597851,0.0945607,0.249886,0.249602,0.421944,0.89183,0.479858,|0.414752,0.272547,0.16464,0.295137,0.558652,0.0986988,0.491971,0.0564752,0.0586407,0.965905,0.99018,0.100242,0.946238,0.200535,0.748182,0.204287,0.597602,0.539157,0.429831,0.650296,0.963627,0.265832,0.837249,0.676524,0.0133991,0.193608,0.448585,0.170511,0.610556,0.885453,0.794688,0.51546,0.355947,0.409991,0.847912,0.73081,0.466259,0.940869,0.560609,0.67529,0.546363,0.288621,0.481016,0.260239,0.926157,0.723611,0.43556,0.40664,0.899711,0.0122761,0.964815,0.383675,0.325457,0.0626912,0.562735,0.18389,0.118234,0.116957,0.804824,0.712761,0.135401,0.215668,0.548039,0.392011,0.446078,0.505719,0.80215,0.677974,0.584624,0.170687,0.340841,0.996257,0.749979,0.972949,0.259616,0.762362,0.733201,0.649636,0.58906,0.0365188,0.316594,0.54558,0.228344,0.455408,0.891151,0.207712,0.166874,0.571912,0.368314,0.611268,0.51072,0.118157,0.602841,0.955385,0.0180053,0.367498,0.466421,0.437179,0.444235,0.20578,0.201959,0.962866,0.540743,0.000465035,0.780459,0.127086,0.068655,0.253854,0.12053,0.837674,0.0657427,0.212532,0.601496,0.339374,0.387492,0.430049,0.406434,0.608982,0.36419,0.950119,0.947585,0.426779,0.532336,0.303219,0.177428,0.287533,0.726423,0.63413,0.775957,0.189236,0.580792,0.117851,0.294263,0.412224,0.0555838,0.0831019,0.943314,0.642131,0.634318,0.751367,0.00113112,0.473968,0.958467,0.128129,0.739344,0.0154834,0.825506,0.612522,0.00327182,0.602246,0.283426,0.229243,0.917511,0.787746,0.734953,0.553346,0.552593,0.99383,0.534298,0.875019,0.846061,0.0522634,0.981435,0.155343,0.273185,0.26808,0.0142035,0.902573,0.921144,0.978467,0.315354,0.490803,0.295507,0.0401608,0.99911,0.361123,0.39041,0.0551585,0.132804,0.804066,0.981007,0.633678,0.071004,0.191852,0.836815,0.347086,0.613,0.712705,0.36102,0.990816,0.938604,0.179722,0.479101,0.611294,0.120265,0.664254,0.505899,0.691797,0.952312,0.68914,0.602966,0.397254,0.455019,0.875562,0.354844,0.452298,0.928651,0.047307,0.192009,0.754678,0.420431,0.487652,0.601798,0.995859,0.979408,0.770912,0.117434,0.914167,0.381636,0.834678,0.461537,0.915455,0.410812,0.879447,0.410674,0.688825,0.121726,0.0608175,0.703007,0.209764,0.121976,0.733923,0.228117,0.303104,0.930045,0.92314,0.149679,0.393622,0.513843,0.321475,0.776775,0.365833,0.382799,0.789546,0.430061,0.181465,0.0534782,0.172722,0.98606,0.0511444,0.0809516,0.204476,0.549666,0.603775,0.701554,0.0924313,0.643227,0.128692,0.631334,0.836374,0.823047,0.659278,0.858825,0.377692,0.700706,0.455487,0.310405,0.513282,0.897,0.265785,0.540301,0.469718,0.0420992,0.954478,0.876023,0.532,0.374665,0.464211,0.417117,0.309118,0.795714,0.0327238,0.351959,0.542792,0.0394147,0.819906,0.72951,0.846955,0.763552,0.218781,0.566746,0.150517,0.0445467,0.0055483,0.784651,0.923424,0.729227,0.567156,0.737781,0.0619104,0.877264,0.504898,0.674326,0.808303,0.50866,0.457049,0.780019,0.305571,0.24567,0.263034,0.91855,0.893745,0.667679,0.857251,0.5989,0.620974,0.757661,0.566877,0.00830692,0.831806,0.0743675,0.474997,0.696303,0.505447,0.810562,0.348556,0.955271,0.798158,0.109205,0.352055,0.700033,0.277541,0.39755,0.546146,0.447258,0.0991857,0.856247,0.787113,0.340747,0.850162,0.1901,0.366858,0.888303,0.693671,0.106663,0.819184,0.862562,0.427551,0.753915,0.525371,0.00451297,0.22585,0.569051,0.983679,0.449676,0.751273,0.94711,0.647791,0.211531,0.354721,0.740059,0.495418,0.513387,0.777685,0.853704,0.745556,0.166573,0.660187,0.0215169,0.873822,0.259781,0.326867,0.253888,0.555928,0.0900347,0.824378,0.273585,0.983812,0.810069,0.917084,0.473992,0.288603,0.0213041,0.790988,0.589761,0.900309,0.98595,0.975815,0.984747,0.864123,0.587238,0.358313,0.904708,0.318407,0.617383,0.68636,0.155716,0.315479,0.491556,0.967597,0.901242,0.182239,0.057114,0.937085,0.971767,0.0749627,0.89265,0.788108,0.068805,0.595972,0.0401556,0.645773,0.34484,0.198493,0.167528,0.344475,0.43774,0.765189,0.0021261,0.147632,0.749354,0.385459,0.224545,0.388689,0.605263,0.949252,0.891955,0.659386,0.0018574,0.090703,0.600805,0.328093,0.815102,0.321338,0.274827,0.45176,0.620476,0.782735,0.780277,0.188953,0.182846,0.0773729,0.775798,0.471583,0.662003,0.371104,0.335442,0.720265,0.0175489,0.0310985,0.0697812,0.486366,0.0592853,0.513161,0.146768,0.59847,0.279382,0.813791,0.271048,0.505767,0.410436,0.961649,0.876792,0.962538,0.194304,0.649553,0.766821,0.324099,0.76468,0.00179762,0.618179,0.0689189,0.641934,0.693142,0.0501642,0.820564,0.862384,0.03488,0.338925,0.161765,0.469245,0.870377,0.827082,0.707194,0.566149,0.962185,0.800934,0.970735,0.355081,0.480162,0.62116,0.0410448,0.472196,0.659706,0.899386,0.487899,0.186996,0.411001,0.73046,0.180655,0.185219,0.488432,0.805649,0.819875,0.223925,0.0484681,0.970293,0.737234,0.164798,0.869834,0.237309,0.694029,0.444913,0.981592,0.281618,0.351651,0.499132,0.543536,0.742409,0.576243,0.363379,0.304396,0.321399,0.113345,0.656103,0.754464,0.827274,0.78284,0.819732,0.535058,0.533233,0.865153,0.527643,0.394198,0.935129,0.50795,0.0441811,0.3536,0.987297,0.644423,0.527493,0.124288,0.18502,0.589092,0.243719,0.228853,0.976908,0.159576,0.476429,0.0346937,0.382725,0.0681366,0.0772365,0.960889,0.614512,0.825615,0.0306562,0.571325,0.364533,0.0785244,0.506873,0.504146,0.150583,0.111581,0.978872,0.113944,0.0513073,0.126687,0.650425,0.888286,0.995147,0.175007,0.31215,0.0148187,0.00325483,0.953824,0.274597,0.299075,0.272698,0.203258,0.937852,0.709383,0.156088,0.510451,0.617205,0.837636,0.0627235,0.376853,0.170811,0.76999,0.442382,0.0659491,0.291134,0.154288,0.895372,0.789582,0.165685,0.96877,0.367753,0.641861,0.936103,0.56635,0.103749,0.00989205,0.978742,0.123334,0.10248,0.379463,0.24884,0.973334,0.379897,0.599342,0.160299,0.0975295,0.905063,0.830696,0.602515,0.297826,0.915429,0.365103,0.958398,0.0403329,0.0421022,0.670554,0.443977,0.813827,0.0237853,0.291259,0.190037,0.978754,0.177548,0.0720906,0.192499,0.62265,0.306853,0.480983,0.842036,0.066177,0.787914,0.904449,0.348608,0.985531,0.31543,0.0163843,0.422746,0.425837,0.561498,0.00771928,0.480615,0.411893,0.515872,0.679044,0.662042,0.998398,0.363598,0.906376,0.330053,0.879478,0.441524,0.857527,0.537654,0.0493507,0.368703,0.91225,0.0675653,0.75251,0.959211,0.111396,0.658539,0.600221,0.550843,0.949424,0.164164,0.087369,0.654234,0.502795,0.782149,0.709619,0.61926,0.354454,0.321625,0.393719,0.372872,0.599577,0.443877,0.372788,0.991791,0.243014,0.612625,0.695432,0.463107,0.686957,0.0678496,0.126178,0.00646913,0.21659,0.913515,0.282762,0.801599,0.670658,0.831493,0.467395,0.241573,0.167601,0.82034,0.133045,0.246048,0.477101,0.99611,0.517561,0.987511,0.244441,0.837702,0.145331,0.463085,0.282164,0.142178,0.929071,0.435748,0.0896366,0.791642,0.846036,0.146045,0.0710732,0.340555,0.510252,0.88324,0.827712,0.352191,0.0417291,0.836139,0.896892,0.620264,0.205515,0.448945,0.239155,0.580312,0.393867,0.96966,0.73173,0.885737,0.00817281,0.544145,0.44798,0.792787,0.287521,0.0585164,0.0505682,0.915542,0.499758,0.643118,0.966763,0.451021,0.617199,0.39758,0.39306,0.602567,0.872722,0.0581841,0.628842,0.572202,0.198747,0.583861,0.535361,0.0831668,0.434934,0.802901,0.954372,0.688635,0.574536,0.34785,0.573029,0.644059,0.3609,0.695361,0.0377906,0.501961,0.864267,0.733333,0.61326,0.0974616,0.445783,0.548654,0.689207,0.137495,0.497112,0.949133,0.812695,0.391656,0.174384,0.853042,0.404116,0.444395,0.642846,0.825034,0.254038,0.946161,0.99799,0.611744,0.956817,0.555691,0.511678,0.233094,0.481095,0.175979,0.953619,0.419008,0.870917,0.69074,0.111985,0.464392,0.409847,0.791767,0.504502,0.992958,0.0998524,0.144846,0.579941,0.173888,0.108633,0.306298,0.183129,0.207297,0.560703,0.288588,0.907437,0.576084,0.372238,0.575471,0.288767,0.0644342,0.2883,0.789411,0.0883927,0.0622467,0.94302,0.495902,0.341642,0.30323,0.573563,0.831485,0.84249,0.0239373,0.903423,0.877654,0.226999,0.596075,0.575121,0.957224,0.392524,0.35579,0.508336,0.321382,0.338578,0.107998,0.486988,0.439574,0.274801,0.831487,0.375406,0.352797,0.419152,0.306831,0.13021,0.158619,0.154075,0.469505,0.94537,0.693606,0.831211,0.126302,0.139955,0.190107,0.986052,0.516007,0.827412,0.689545,0.446609,0.553571,0.705603,0.9529,0.704439,0.956132,0.932374,0.45547,0.551323,0.317695,0.921857,0.975754,0.92055,0.305416,0.924657,0.774061,0.728789,0.267486,0.529933,0.880027,0.619621,0.47213,0.235468,0.366852,0.155746,0.856108,0.291639,0.745381,0.224713,0.907492,0.0313065,0.607223,0.932419,0.34805,0.484594,0.638604,0.827693,0.420895,0.879265,0.0722236,0.133266,0.572065,0.834489,0.419812,0.135921,0.938509,0.874443,0.407301,0.486568,0.0438745,0.431663,0.928755,0.828766,0.895203,0.86994,0.139583,0.491814,0.460541,0.314911,0.0727623,0.211883,0.2874,0.562748,0.573896,0.0445763,0.784889,0.175584,0.546094,0.611552,0.800545,0.207318,0.392073,0.558817,0.203877,0.117547,0.756024,0.877545,0.93309,0.804733,0.130221,0.648436,0.604715,0.893012,0.222038,0.935597,0.903515,0.52305,0.53444,0.202002,0.308226,0.308085,0.213021,0.865239,0.0293452,0.0365959,0.37316,0.452377,0.546494,0.356123,0.583047,0.347336,0.700176,0.479245,0.406575,0.397665,0.163114,0.336442,0.251737,0.298773,0.815978,0.880973,0.405953,0.205386,0.5199,0.595685,0.615251,0.558215,0.609044,0.935433,0.372681,0.753679,0.333875,0.154214,|0.492857,0.188954,0.245147,0.217667,0.672911,0.763805,0.534683,0.516325,0.264387,0.0613021,0.633933,0.830746,0.485509,0.441945,0.444385,0.393195,0.343212,0.5339,0.615787,0.483825,0.206622,0.671419,0.525994,0.790432,0.247694,0.163595,0.709739,0.118238,0.602411,0.709461,0.627258,0.219471,0.779683,0.624295,0.915807,0.0290953,0.306168,0.281058,0.876005,0.14234,0.270996,0.511561,0.902842,0.691396,0.735349,0.255285,0.526082,0.810847,0.0825319,0.912821,0.806632,0.224189,0.37822,0.943349,0.989172,0.315132,0.25642,0.709835,0.29138,0.260587,0.830221,0.758571,0.896187,0.409066,0.307527,0.646782,0.985983,0.0229169,0.505048,0.0517029,0.820811,0.0862843,0.524859,0.850414,0.593801,0.823416,0.505049,0.952665,0.808344,0.618604,0.81847,0.380973,0.99348,0.345458,0.795703,0.326935,0.0707252,0.362584,0.728905,0.162576,0.862298,0.893229,0.0928644,0.512981,0.844868,0.959751,0.172584,0.151273,0.537295,0.305681,0.687821,0.0705709,0.922045,0.445106,0.439512,0.260686,0.246538,0.812927,0.372059,0.190153,0.958596,0.477078,0.845175,0.221551,0.221764,0.679838,0.675879,0.73691,0.853492,0.962556,0.505401,0.393438,0.719994,0.47259,0.322417,0.514756,0.810714,0.972883,0.263145,0.409755,0.841206,0.535077,0.417398,0.460395,0.252394,0.561971,0.840124,0.00144833,0.554922,0.55258,0.848223,0.525066,0.0142467,0.700594,0.875491,0.271128,0.99679,0.0574896,0.402765,0.514224,0.833375,0.123347,0.564532,0.604943,0.451718,0.497883,0.662606,0.396257,0.964876,0.810596,0.942439,0.0129706,0.37256,0.683008,0.540033,0.806372,0.304593,0.621401,0.240361,0.149897,0.218364,0.530189,0.829563,0.337376,0.982781,0.160948,0.110955,0.58259,0.765971,0.377768,0.828003,0.158411,0.60714,0.43892,0.672611,0.789922,0.601166,0.816049,0.380229,0.695493,0.737237,0.0655961,0.783596,0.853678,0.265339,0.812593,0.151585,0.707989,0.758566,0.411292,0.328829,0.413856,0.695675,0.927922,0.480839,0.338898,0.201006,0.088837,0.62,0.113175,0.577126,0.183801,0.847881,0.147406,0.745442,0.546996,0.52421,0.248227,0.362785,0.55212,0.455092,0.0697089,0.799686,0.385713,0.955202,0.174314,0.490042,0.0829806,0.894236,0.5404,0.570158,0.463033,0.580917,0.572004,0.362585,0.638511,0.9787,0.648394,0.74542,0.389365,0.0229331,0.0799554,0.965179,0.301524,0.183179,0.998227,0.4515,0.0535167,0.0297655,0.51366,0.432782,0.760691,0.138974,0.737573,0.359972,0.0146889,0.759976,0.0686669,0.0756767,0.981686,0.877206,0.63779,0.62129,0.181471,0.178287,0.411025,0.841301,0.609434,0.546463,0.887503,0.341906,0.92116,0.593272,0.222046,0.882059,0.0972001,0.918789,0.756227,0.812965,0.242296,0.482051,0.747905,0.670757,0.679726,0.809985,0.952799,0.254805,0.875018,0.412075,0.703271,0.873063,0.405037,0.333797,0.211911,0.850067,0.395835,0.747428,0.662902,0.997668,0.260406,0.801845,0.697445,0.85787,0.864314,0.951359,0.0414541,0.457249,0.121967,0.690311,0.47563,0.963689,0.813354,0.215504,0.608724,0.134492,0.930148,0.609576,0.0952509,0.362613,0.393001,0.680743,0.36104,0.339919,0.162054,0.350092,0.131037,0.314983,0.976112,0.548445,0.986721,0.0142519,0.210822,0.244934,0.440141,0.957397,0.777213,0.664612,0.730283,0.961036,0.381869,0.423475,0.932066,0.422772,0.578517,0.491173,0.552198,0.145008,0.208534,0.850235,0.256799,0.405037,0.301211,0.458731,0.773415,0.0949911,0.986276,0.953189,0.731818,0.491515,0.208252,0.62441,0.663919,0.0867549,0.510557,0.77055,0.736525,0.454015,0.00223261,0.899849,0.353592,0.480149,0.644826,0.890166,0.476573,0.935,0.391787,0.0105116,0.57664,0.00853682,0.61401,0.443288,0.0700684,0.281062,0.0564699,0.447723,0.828277,0.863044,0.42729,0.0239837,0.394275,0.122047,0.551595,0.925485,0.216872,0.29996,0.779584,0.893595,0.652659,0.69073,0.0598845,0.988561,0.14191,0.91268,0.43056,0.60959,0.864548,0.492369,0.0125184,0.233433,0.699248,0.82673,0.0662965,0.0964981,0.229401,0.00812775,0.803144,0.271456,0.344265,0.165957,0.823675,0.689641,0.523861,0.638311,0.973814,0.0608826,0.964993,0.794161,0.834265,0.338983,0.384735,0.895177,0.412207,0.0806679,0.828649,0.585762,0.789521,0.106691,0.932124,0.466308,0.749762,0.83151,0.394534,0.134038,0.57033,0.367759,0.197212,0.507931,0.607793,0.0215006,0.0600709,0.91758,0.307314,0.575558,0.4605,0.660245,0.555165,0.756684,0.170602,0.775185,0.154357,0.0739565,0.770242,0.189159,0.643162,0.837942,0.546286,0.628904,0.123837,0.96216,0.885422,0.799168,0.168334,0.181135,0.488608,0.115039,0.49473,0.700897,0.744265,0.353664,0.993394,0.501105,0.508853,0.603259,0.854061,0.370578,0.0249457,0.593223,0.976428,0.0312331,0.286277,0.277054,0.626046,0.0353847,0.268392,0.568769,0.620515,0.322248,0.238995,0.0390999,0.689835,0.668684,0.806877,0.687103,0.951321,0.205021,0.272503,0.163281,0.494948,0.466062,0.632316,0.0306424,0.0596715,0.530725,0.820488,0.0113844,0.0217375,0.901547,0.28274,0.382449,0.234946,0.52279,0.0726311,0.962666,0.0354431,0.114254,0.0683773,0.725347,0.969745,0.126756,0.995337,0.176246,0.328187,0.83184,0.876195,0.37985,0.147575,0.623465,0.693153,0.565974,0.386168,0.840548,0.154022,0.583087,0.199419,0.400025,0.414356,0.717302,0.0209898,0.431355,0.0828071,0.827343,0.643255,0.674432,0.437502,0.589663,0.977404,0.445297,0.919591,0.756064,0.524442,0.156153,0.94911,0.999629,0.658416,0.72,0.278248,0.625969,0.426483,0.852103,0.260969,0.805499,0.48951,0.432586,0.465319,0.978451,0.924255,0.910067,0.698221,0.719058,0.559007,0.611588,0.0566007,0.745656,0.595017,0.303529,0.748605,0.928778,0.235596,0.0594447,0.0338448,0.361862,0.0587623,0.67525,0.0393114,0.225083,0.16936,0.804139,0.220921,0.421573,0.904939,0.858518,0.995809,0.975413,0.556527,0.296351,0.228588,0.106773,0.0530828,0.21865,0.794118,0.549082,0.544795,0.674623,0.932095,0.902037,0.629173,0.0736029,0.0232683,0.267444,0.550105,0.367198,0.217558,0.683196,0.525966,0.255985,0.970014,0.445733,0.785198,0.0359107,0.852719,0.901512,0.930618,0.257851,0.922785,0.413275,0.533334,0.341817,0.136975,0.632278,0.861478,0.383117,0.1801,0.539663,0.00809211,0.390886,0.511646,0.503587,0.74666,0.837673,0.682426,0.634674,0.151218,0.827889,0.0144773,0.31029,0.200395,0.227036,0.763237,0.561483,0.841894,0.809535,0.524384,0.301634,0.129337,0.692496,0.796624,0.558658,0.23052,0.137351,0.920875,0.0631093,0.682789,0.322694,0.779923,0.0697835,0.639184,0.370364,0.225467,0.789742,0.474805,0.0764629,0.643509,0.319228,0.507766,0.306042,0.801628,0.750749,0.793286,0.23004,0.473148,0.46242,0.480342,0.0684466,0.777316,0.920675,0.134781,0.819266,0.29468,0.0396369,0.0636188,0.637548,0.286958,0.358158,0.350947,0.725574,0.938003,0.254931,0.706936,0.258049,0.160828,0.130591,0.0699213,0.0994831,0.0334003,0.99917,0.498128,0.835256,0.15148,0.0309393,0.20672,0.849559,0.288229,0.72467,0.160156,0.673992,0.0911583,0.254244,0.663646,0.22366,0.438379,0.962349,0.405012,0.97146,0.917568,0.573902,0.6463,0.10602,0.243729,0.555881,0.869953,0.00175387,0.97564,0.632334,0.455346,0.273233,0.508344,0.17345,0.0509474,0.508121,0.519434,0.303462,0.231696,0.785105,0.0452031,0.0352303,0.985922,0.0572761,0.454079,0.65579,0.272043,0.064334,0.692625,0.361903,0.369873,0.0737718,0.592848,0.919221,0.212192,0.181432,0.0284914,0.233162,0.813138,0.60676,0.910087,0.765993,0.399338,0.0965849,0.596673,0.276945,0.293064,0.420843,0.814012,0.314322,0.302384,0.583753,0.274705,0.541512,0.666935,0.141806,0.0671088,0.399613,0.505851,0.106911,0.0814053,0.466585,0.942951,0.120609,0.0266969,0.0389006,0.0520709,0.765617,0.435714,0.0337612,0.426779,0.254077,0.123677,0.862734,0.221015,0.0265138,0.442304,0.213789,0.717905,0.346083,0.817232,0.136355,0.0115026,0.155635,0.119781,0.423801,0.655207,0.318931,0.386745,0.604143,0.224089,0.426985,0.234464,0.922603,0.0265563,0.0651646,0.349065,0.917433,0.453836,0.619987,0.378335,0.535178,0.302736,0.797517,0.0481544,0.461072,0.515368,0.567148,0.327192,0.355332,0.535853,0.563943,0.88877,0.343887,0.539253,0.718726,0.0530848,0.445811,0.123343,0.141822,0.872662,0.59245,0.114641,0.332227,0.398274,0.176964,0.408514,0.237052,0.247349,0.926637,0.411695,0.160084,0.988325,0.273207,0.557026,0.964718,0.157843,0.427752,0.565102,0.0100095,0.634055,0.716798,0.212258,0.0184348,0.793983,0.76592,0.282573,0.763474,0.995403,0.417539,0.505799,0.390181,0.427381,0.221887,0.685706,0.00410175,0.651409,0.620844,0.0780855,0.974027,0.996139,0.976538,0.384809,0.765106,0.344469,0.665861,0.824364,0.925866,0.0280052,0.270638,0.826179,0.102411,0.899342,0.129757,0.527526,0.685079,0.641072,0.863389,0.272818,0.709397,0.274206,0.181491,0.768192,0.198512,0.475033,0.191268,0.42099,0.639442,0.169092,0.753857,0.797335,0.742438,0.317734,0.448704,0.94693,0.699549,0.662912,0.331158,0.564275,0.120087,0.643326,0.0408331,0.0856792,0.927183,0.76535,0.412654,0.0355906,0.372158,0.221689,0.687371,0.857852,0.153439,0.207763,0.543771,0.448218,0.313258,0.980468,0.300481,0.0598446,0.474148,0.534917,0.924945,0.903049,0.767681,0.956369,0.192961,0.0822922,0.695213,0.345759,0.782189,0.754943,0.973874,0.841385,0.058366,0.58086,0.763233,0.292069,0.478038,0.613486,0.448453,0.027068,0.650182,0.876576,0.870861,0.780144,0.895778,0.297436,0.229203,0.952469,0.730106,0.559696,0.456919,0.132026,0.964101,0.59891,0.29438,0.238902,0.353812,0.729107,0.404565,0.9324,0.27494,0.610159,0.556241,0.672529,0.132255,0.906332,|0.255419,0.593505,0.638722,0.69103,0.816586,0.849631,0.333132,0.637718,0.845312,0.4649,0.544851,0.833215,0.98054,0.869554,0.898352,0.480311,0.679511,0.74591,0.948829,0.28959,0.827884,0.848326,0.877951,0.112471,0.8001,0.617192,0.19349,0.447722,0.772171,0.519064,0.0164111,0.74738,0.652422,0.790964,0.442804,0.163931,0.0578964,0.613996,0.117087,0.31092,0.687098,0.165449,0.896219,0.946736,0.704159,0.716949,0.270531,0.243657,0.339811,0.641744,0.412633,0.878921,0.428667,0.646524,0.152014,0.384451,0.573618,0.286573,0.802505,0.858218,0.21001,0.161045,0.427541,0.776249,0.0343478,0.117692,0.951551,0.542294,0.918334,0.754267,0.0717019,0.0420455,0.195067,0.8306,0.726748,0.46613,0.876296,0.49023,0.965316,0.81385,0.162098,0.249001,0.814124,0.768148,0.0631663,0.330287,0.449006,0.158803,0.593529,0.487386,0.0795793,0.209437,0.405245,0.659479,0.0405663,0.581702,0.168784,0.924311,0.35938,0.508732,0.0493243,0.832433,0.856402,0.781924,0.220396,0.351938,0.306754,0.622681,0.261633,0.586237,0.314989,0.255174,0.366192,0.689174,0.179938,0.326347,0.408066,0.291372,0.279845,0.734708,0.621487,0.959006,0.989418,0.108939,0.645597,0.412838,0.691142,0.00444883,0.340778,0.747316,0.417654,0.341046,0.83929,0.395846,0.458515,0.0514635,0.00603944,0.59598,0.317344,0.605044,0.127153,0.0190679,0.0985098,0.723413,0.337959,0.142428,0.617553,0.692526,0.721028,0.175239,0.082875,0.315757,0.514912,0.781888,0.019984,0.576041,0.0901597,0.780187,0.294035,0.568996,0.355592,0.371961,0.159707,0.620151,0.107206,0.876105,0.608644,0.716746,0.157657,0.809857,0.733805,0.320512,0.428201,0.330941,0.0767832,0.132298,0.322136,0.809773,0.451007,0.0108864,0.833473,0.568674,0.645931,0.701634,0.997759,0.894217,0.0287316,0.137957,0.744157,0.209492,0.26791,0.717643,0.273153,0.40579,0.508293,0.169095,0.405952,0.386932,0.561557,0.997386,0.832118,0.834148,0.389392,0.265105,0.415519,0.389808,0.646592,0.247424,0.839834,0.114723,0.129736,0.737714,0.188666,0.62079,0.572828,0.788199,0.429387,0.0798375,0.594246,0.0856143,0.254375,0.671186,0.137293,0.303717,0.620441,0.204706,0.604456,0.684986,0.715398,0.37895,0.587689,0.205808,0.604306,0.248499,0.91239,0.678258,0.455593,0.150106,0.986894,0.738799,0.452866,0.694777,0.492094,0.719467,0.590544,0.274653,0.247675,0.154841,0.893478,0.418657,0.615258,0.302803,0.92285,0.442737,0.541579,0.796799,0.821903,0.0259818,0.621596,0.676595,0.221292,0.876318,0.771953,0.867528,0.677763,0.907463,0.362813,0.935899,0.438172,0.83081,0.900592,0.229619,0.463438,0.600361,0.125598,0.200053,0.135192,0.654591,0.532867,0.143238,0.0434158,0.990904,0.349412,0.660539,0.507525,0.859653,0.68119,0.985064,0.168942,0.775106,0.355469,0.534181,0.0605028,0.000986814,0.241671,0.508814,0.35901,0.426857,0.150565,0.490303,0.626302,0.0413126,0.68408,0.836125,0.253472,0.766231,0.826852,0.0638555,0.550736,0.865589,0.831413,0.400187,0.663493,0.844443,0.756136,0.886121,0.43024,0.278491,0.882462,0.882955,0.98504,0.399434,0.534099,0.318805,0.295354,0.901691,0.634048,0.100547,0.28975,0.546757,0.529348,0.263022,0.953925,0.283192,0.799651,0.762714,0.0474205,0.0437025,0.995984,0.149666,0.236667,0.440462,0.195958,0.748993,0.0939512,0.164503,0.370394,0.265352,0.500014,0.968279,0.00897795,0.00904888,0.469966,0.714843,0.757517,0.813849,0.313802,0.853075,0.0896675,0.665302,0.35954,0.362195,0.314684,0.856886,0.58533,0.302166,0.299343,0.119486,0.116004,0.873396,0.435822,0.306818,0.870555,0.323317,0.0145406,0.311321,0.201741,0.809646,0.647962,0.626349,0.232018,0.794208,0.12636,0.883909,0.418762,0.63569,0.102634,0.997316,0.145062,0.652146,0.0434906,0.0664406,0.815691,0.648684,0.395298,0.563419,0.000540674,0.666853,0.678128,0.493824,0.672316,0.653234,0.624253,0.682761,0.84774,0.405935,0.498847,0.844728,0.412911,0.293132,0.300298,0.772456,0.363773,0.349949,0.190085,0.661811,0.558173,0.661523,0.613866,0.680402,0.603634,0.954917,0.247761,0.249576,0.44648,0.524614,0.328064,0.323165,0.896183,0.703965,0.466634,0.610675,0.784555,0.649993,0.521864,0.489405,0.158288,0.101076,0.650595,0.883953,0.299431,0.628447,0.00425899,0.855768,0.701395,0.98537,0.00378704,0.10487,0.966964,0.297122,0.917364,0.19972,0.781233,0.253103,0.230041,0.0330015,0.237641,0.426275,0.187242,0.813381,0.521614,0.357336,0.32685,0.0153891,0.374911,0.360243,0.762514,0.000249088,0.913369,0.678873,0.921141,0.410866,0.280213,0.491194,0.755338,0.0939502,0.267788,0.709041,0.421152,0.152874,0.367654,0.250368,0.529659,0.825134,0.512198,0.450512,0.200443,0.910164,0.955473,0.485131,0.944709,0.892618,0.246577,0.872532,0.989799,0.816407,0.828685,0.421456,0.912328,0.824408,0.742576,0.895665,0.0296646,0.514402,0.375561,0.633349,0.635795,0.923617,0.547054,0.452354,0.793273,0.380723,0.827039,0.81369,0.732892,0.272862,0.41047,0.159359,0.118198,0.484309,0.586886,0.781501,0.648172,0.0768396,0.108325,0.220744,0.218734,0.429287,0.912115,0.849004,0.693447,0.630245,0.779476,0.515417,0.85541,0.966444,0.52464,0.425171,0.181442,0.8773,0.305188,0.289051,0.94949,0.353329,0.731082,0.0886147,0.900274,0.8748,0.743963,0.934692,0.800849,0.726119,0.12829,0.775689,0.403741,0.157998,0.378991,0.807159,0.499508,0.425505,0.118496,0.981932,0.946897,0.577888,0.66115,0.564174,0.427713,0.188987,0.931644,0.654151,0.329875,0.660187,0.388085,0.994014,0.645761,0.0544241,0.608687,0.333073,0.0899286,0.908758,0.692613,0.680352,0.653418,0.924735,0.476103,0.963516,0.533594,0.795568,0.847431,0.664935,0.166465,0.0441285,0.332249,0.80589,0.915695,0.485944,0.877401,0.388905,0.764078,0.259341,0.00375605,0.421462,0.654706,0.067209,0.186291,0.808857,0.806715,0.528997,0.355668,0.912616,0.443561,0.920925,0.053817,0.561096,0.549089,0.511543,0.930989,0.810145,0.0214087,0.289693,0.265744,0.764533,0.205111,0.079285,0.329391,0.49842,0.432485,0.819947,0.0332183,0.469231,0.323756,0.857577,0.210324,0.783555,0.198469,0.709497,0.730201,0.311826,0.477142,0.120587,0.826424,0.274648,0.899014,0.528649,0.0912837,0.834406,0.00803953,0.901907,0.619101,0.206174,0.957792,0.220347,0.134027,0.814865,0.634105,0.72954,0.684593,0.321087,0.972311,0.0186813,0.187565,0.937162,0.71193,0.787752,0.517326,0.809752,0.584799,0.96559,0.781712,0.19926,0.290705,0.840802,0.276504,0.90111,0.0317706,0.402706,0.823005,0.854637,0.263131,0.105096,0.167591,0.399597,0.216179,0.477181,0.901505,0.454908,0.595272,0.41765,0.833145,0.531205,0.498894,0.867422,0.208886,0.696573,0.091879,0.449707,0.880997,0.972929,0.219307,0.969113,0.93903,0.70045,0.222705,0.727054,0.290479,0.0614254,0.109254,0.0660895,0.276617,0.755864,0.558663,0.837836,0.212392,0.955114,0.908383,0.709834,0.81698,0.595102,0.234164,0.682883,0.82366,0.539769,0.848459,0.0813109,0.0274881,0.813633,0.0944702,0.872113,0.522733,0.932337,0.468313,0.261489,0.56605,0.198448,0.34425,0.908517,0.647874,0.484074,0.0196943,0.722356,0.590979,0.497663,0.931115,0.655435,0.52913,0.735462,0.989664,0.710964,0.0794551,0.588109,0.781919,0.281686,0.529644,0.0662303,0.854738,0.917446,0.945922,0.287897,0.191157,0.954551,0.238043,0.04456,0.969364,0.932983,0.643963,0.867002,0.844069,0.448412,0.779375,0.438443,0.304435,0.165407,0.956178,0.647504,0.423925,0.902318,0.994099,0.862102,0.783092,0.0838065,0.809486,0.112382,0.495789,0.0856466,0.164488,0.658407,0.0221766,0.334307,0.327025,0.390675,0.00830966,0.000984907,0.0246011,0.1097,0.591406,0.751686,0.942321,0.292942,0.877075,0.752419,0.571512,0.880445,0.0860562,0.543744,0.965965,0.921704,0.373902,0.750879,0.124471,0.600933,0.8157,0.145174,0.00178862,0.91449,0.653633,0.194397,0.44474,0.0812146,0.955332,0.206876,0.933419,0.361522,0.496843,0.771353,0.915505,0.0229558,0.490268,0.960715,0.491456,0.919205,0.0404473,0.0991324,0.737455,0.417859,0.264349,0.156501,0.783543,0.617986,0.88313,0.194744,0.301943,0.0564141,0.0292525,0.348346,0.0847227,0.601279,0.127379,0.796563,0.00206262,0.908064,0.483563,0.640657,0.0998212,0.332005,0.111781,0.269138,0.107315,0.157343,0.246258,0.394082,0.651583,0.460108,0.349326,0.774697,0.860083,0.81673,0.520183,0.91544,0.801879,0.87488,0.746504,0.733568,0.214158,0.678699,0.17512,0.560406,0.917746,0.636925,0.673595,0.513584,0.693225,0.771892,0.160372,0.552723,0.104422,0.244906,0.928277,0.808186,0.447308,0.34777,0.458185,0.511138,0.822901,0.892717,0.279721,0.339007,0.679689,0.41749,0.402121,0.522376,0.284902,0.178228,0.533869,0.514108,0.0788817,0.796742,0.245174,0.481203,0.339621,0.202235,0.00874472,0.65171,0.926578,0.527778,0.45457,0.727541,0.724189,0.633683,0.92461,0.699342,0.947674,0.259473,0.781932,0.897743,0.769384,0.748005,0.753422,0.434997,0.450954,0.0778241,0.662842,0.458802,0.848126,0.341244,0.456293,0.0406384,0.302132,0.619295,0.628251,0.0442385,0.961337,0.364224,0.405306,0.349764,0.822774,0.704953,0.270102,0.363314,0.838815,0.203305,0.778803,0.602017,0.974179,0.0193586,0.0279949,0.212075,0.932132,0.213285,0.839668,0.849506,0.0299866,0.573233,0.541698,0.744312,0.517097,0.674011,0.244663,0.504092,0.11514,0.146278,0.302813,0.97446,0.884774,0.961803,0.381533,0.391475,0.366753,0.393403,0.815835,0.0570506,0.376167,0.723393,0.390451,0.840196,0.788791,0.7245,0.481503,0.758282,0.159709,0.853692,0.778544,0.448773,0.915657,0.785122,0.457885,0.912179,0.0275848,0.190702,0.868395,0.345878,|0.381757,0.925815,0.254812,0.0176232,0.450267,0.916488,0.178828,0.603971,0.608917,0.153284,0.515451,0.0335424,0.562649,0.597643,0.0717609,0.601222,0.754856,0.902365,0.544514,0.895671,0.23892,0.432371,0.995154,0.0437346,0.807679,0.986546,0.142061,0.644232,0.839877,0.278133,0.141845,0.166795,0.769834,0.891758,0.406961,0.611741,0.221985,0.668713,0.713253,0.227618,0.39065,0.75209,0.544435,0.06883,0.293169,0.669785,0.428195,0.795294,0.33524,0.512913,0.125974,0.9497,0.457143,0.797286,0.678922,0.763746,0.250534,0.801314,0.758668,0.0925496,0.6707,0.932595,0.584189,0.573451,0.18812,0.399565,0.658868,0.900624,0.516782,0.497133,0.947186,0.621073,0.154622,0.253938,0.298696,0.760254,0.831245,0.96074,0.354737,0.466846,0.439807,0.271592,0.988471,0.979029,0.075786,0.345373,0.0490517,0.703828,0.663975,0.906777,0.760408,0.193695,0.207518,0.124882,0.720621,0.920162,0.591858,0.573905,0.764163,0.504531,0.117788,0.787233,0.609554,0.107507,0.556526,0.409283,0.163011,0.90005,0.222502,0.00202101,0.200878,0.109415,0.381261,0.606475,0.966692,0.943045,0.282138,0.760047,0.13199,0.179534,0.0281047,0.0020206,0.710384,0.860635,0.487377,0.780371,0.469895,0.113999,0.300001,0.527755,0.599888,0.104518,0.453139,0.808378,0.100236,0.635194,0.360409,0.875845,0.275008,0.911673,0.893213,0.163801,0.728509,0.479321,0.345666,0.614931,0.865058,0.00782168,0.0569291,0.504912,0.202589,0.522571,0.425663,0.889622,0.330771,0.831798,0.0576589,0.668849,0.615171,0.0575783,0.696387,0.569999,0.0537226,0.676898,0.870936,0.918379,0.658546,0.253282,0.6995,0.292014,0.104939,0.204889,0.451723,0.802607,0.518677,0.923824,0.311328,0.892813,0.460091,0.600572,0.494704,0.341799,0.221233,0.379486,0.594774,0.677616,0.514377,0.552579,0.771864,0.128584,0.831727,0.248248,0.481031,0.1768,0.859368,0.136853,0.155291,0.725272,0.414203,0.372142,0.110502,0.531516,0.902069,0.588731,0.680969,0.929485,0.131078,0.109719,0.165855,0.17169,0.239652,0.659625,0.244541,0.402518,0.49975,0.521166,0.303297,0.642974,0.291655,0.00230223,0.0616813,0.0111579,0.271617,0.99735,0.645019,0.384479,0.502743,0.477991,0.861362,0.81572,0.309664,0.0594408,0.200283,0.948547,0.0107675,0.972999,0.870013,0.596723,0.8255,0.189342,0.40862,0.767866,0.120409,0.878062,0.609185,0.135763,0.907342,0.755835,0.368551,0.951473,0.510565,0.527851,0.538853,0.0789534,0.59001,0.382265,0.277974,0.515316,0.245029,0.746562,0.0681515,0.813668,0.682726,0.707295,0.69226,0.808643,0.474937,0.660473,0.897692,0.310772,0.514626,0.958597,0.326607,0.231466,0.616419,0.703136,0.481981,0.964072,0.835499,0.431049,0.3372,0.246075,0.518278,0.0393663,0.320644,0.776542,0.194628,0.638193,0.848695,0.158921,0.969556,0.440857,0.525914,0.186763,0.868852,0.630941,0.0271696,0.995802,0.816179,0.365906,0.04119,0.075214,0.237137,0.162506,0.0429657,0.203563,0.628585,0.683794,0.622268,0.67042,0.952643,0.189211,0.832955,0.998212,0.223842,0.473506,0.608577,0.009381,0.880132,0.0959021,0.782349,0.675521,0.589849,0.741234,0.776977,0.515711,0.569552,0.359816,0.229602,0.474195,0.173299,0.122936,0.842821,0.423592,0.573066,0.0718392,0.695701,0.24472,0.402753,0.776956,0.779822,0.606268,0.574618,0.483702,0.0512124,0.844448,0.35357,0.245384,0.493915,0.278044,0.381329,0.240362,0.135105,0.23835,0.70816,0.853283,0.741468,0.563688,0.114586,0.790938,0.326265,0.303865,0.78478,0.290063,0.94076,0.194126,0.51123,0.383612,0.998504,0.877578,0.928084,0.664788,0.812817,0.61343,0.413275,0.0576708,0.855567,0.332629,0.855381,0.670936,0.174941,0.825584,0.302309,0.529743,0.154816,0.173585,0.823136,0.65148,0.204229,0.327663,0.418793,0.760774,0.74638,0.455513,0.653766,0.930409,0.306954,0.0967453,0.587933,0.181401,0.618812,0.0608277,0.337048,0.893587,0.460202,0.188353,0.568349,0.653335,0.567645,0.342724,0.597675,0.0668821,0.623251,0.988075,0.0814635,0.12217,0.837643,0.865444,0.738943,0.381234,0.450561,0.127548,0.903677,0.157834,0.602439,0.926512,0.252254,0.538293,0.0500565,0.110049,0.159294,0.965434,0.715073,0.830675,0.429308,0.227869,0.248436,0.972792,0.497348,0.791437,0.458471,0.301978,0.306751,0.349438,0.47864,0.937119,0.150355,0.209297,0.547465,0.296035,0.326653,0.404929,0.240059,0.0318524,0.284059,0.239041,0.760196,0.311055,0.748187,0.311816,0.915268,0.510391,0.613762,0.912346,0.477952,0.719248,0.743425,0.801215,0.579098,0.230746,0.626521,0.043619,0.978582,0.0517989,0.886524,0.447318,0.991219,0.420932,0.728597,0.0646161,0.634708,0.147641,0.638981,0.241703,0.424502,0.602771,0.177388,0.770175,0.803435,0.42214,0.485608,0.10457,0.603653,0.857538,0.735319,0.838161,0.837224,0.398846,0.923611,0.0402943,0.846839,0.626102,0.197006,0.187612,0.565206,0.0470567,0.582377,0.122349,0.491396,0.0729389,0.839528,0.716882,0.492795,0.498027,0.430008,0.105605,0.264965,0.224976,0.998251,0.503908,0.663114,0.454148,0.104549,0.54906,0.973697,0.684893,0.826578,0.240664,0.595838,0.756293,0.320015,0.596065,0.46901,0.788792,0.204729,0.125103,0.865787,0.0402561,0.673856,0.623432,0.55359,0.903685,0.0999664,0.977805,0.567548,0.78745,0.684548,0.105678,0.118745,0.0188012,0.690568,0.0906631,0.467457,0.670981,0.680809,0.85314,0.409989,0.873896,0.174113,0.966566,0.76958,0.365784,0.640221,0.262314,0.687448,0.715606,0.372315,0.540197,0.369394,0.790482,0.746577,0.893459,0.921025,0.324452,0.0546739,0.728479,0.936371,0.833578,0.263767,0.810984,0.927402,0.605819,0.719654,0.987518,0.428928,0.0429217,0.222669,0.461432,0.218586,0.254464,0.231279,0.845459,0.142039,0.575182,0.13047,0.883865,0.309154,0.461915,0.284495,0.712198,0.805648,0.1991,0.518138,0.651517,0.371439,0.547259,0.939395,0.732524,0.344661,0.463087,0.0491356,0.264268,0.294361,0.264734,0.421268,0.863123,0.161387,0.934244,0.164251,0.645331,0.102909,0.575496,0.951314,0.18436,0.432326,0.608994,0.612386,0.795931,0.101206,0.30675,0.849299,0.993917,0.841772,0.220322,0.954971,0.717556,0.760639,0.585572,0.568266,0.50771,0.615853,0.8362,0.674691,0.373153,0.954492,0.233624,0.227847,0.567956,0.552237,0.321119,0.0446544,0.063552,0.499353,0.194929,0.923218,0.76542,0.413591,0.46354,0.877809,0.311448,0.782455,0.109768,0.617269,0.720819,0.0815077,0.654789,0.0238669,0.688551,0.198721,0.321038,0.454413,0.277489,0.974689,0.70666,0.998127,0.295698,0.121241,0.631928,0.465274,0.622933,0.230466,0.565998,0.0602976,0.404455,0.744811,0.703133,0.659414,0.726546,0.103001,0.366323,0.276328,0.22482,0.959093,0.589151,0.600188,0.807538,0.0511209,0.860772,0.0965695,0.565139,0.746043,0.465084,0.04885,0.0744919,0.537694,0.415743,0.920503,0.845028,0.893066,0.0979012,0.426542,0.556746,0.72765,0.0780845,0.82164,0.025497,0.328873,0.0236102,0.199661,0.783749,0.722035,0.556527,0.777008,0.554837,0.953792,0.278073,0.991585,0.197238,0.843294,0.791093,0.246042,0.35634,0.782272,0.907384,0.933767,0.429775,0.287737,0.41683,0.914367,0.675665,0.972973,0.367594,0.291576,0.0906161,0.135707,0.0500961,0.829542,0.290386,0.185543,0.694232,0.323803,0.546126,0.410129,0.920434,0.665553,0.829736,0.365355,0.679024,0.272725,0.991364,0.0935095,0.0149355,0.170004,0.360628,0.281799,0.468749,0.674904,0.892584,0.515754,0.099791,0.246305,0.296722,0.967347,0.167595,0.717364,0.121565,0.00423336,0.74058,0.20388,0.768855,0.716729,0.570329,0.594283,0.0436207,0.738974,0.786736,0.547094,0.41852,0.728729,0.0391798,0.146514,0.830561,0.450366,0.0942324,0.0690074,0.266341,0.037309,0.085394,0.662619,0.308749,0.788987,0.365966,0.957939,0.413992,0.166881,0.152624,0.68079,0.323353,0.0693762,0.741678,0.0438207,0.46637,0.746414,0.810809,0.854699,0.000138164,0.407933,0.275194,0.810457,0.65463,0.959493,0.917615,0.994629,0.697382,0.306725,0.723636,0.263638,0.847158,0.626771,0.0407993,0.104852,0.849681,0.316614,0.378683,0.777592,0.794648,0.378355,0.26989,0.949058,0.715442,0.837019,0.150353,0.481277,0.457533,0.0580951,0.75571,0.680464,0.874062,0.817147,0.104041,0.625978,0.0487976,0.0217605,0.0472136,0.420011,0.0833027,0.707732,0.375551,0.181546,0.230722,0.655275,0.0607173,0.104018,0.340889,0.041304,0.804406,0.808122,0.865528,0.29519,0.189783,0.73788,0.584456,0.241868,0.0456821,0.539441,0.211814,0.244754,0.434166,0.326342,0.795886,0.546537,0.976396,0.701193,0.289687,0.413323,0.437153,0.107845,0.427062,0.541414,0.873154,0.357036,0.332301,0.773805,0.101642,0.389211,0.762575,0.774772,0.266438,0.38794,0.21209,0.337057,0.759746,0.835825,0.193327,0.250187,0.0679759,0.250534,0.671591,0.0772895,0.686416,0.752611,0.306916,0.650557,0.00337076,0.593387,0.845597,0.825213,0.332641,0.54226,0.725767,0.0244959,0.644693,0.913494,0.401507,0.90974,0.747777,0.205886,0.872759,0.320924,0.233517,0.739204,0.200871,0.0501494,0.150599,0.567127,0.312027,0.447755,0.693218,0.980412,0.265661,0.815243,0.0907256,0.212167,0.413849,0.26639,0.94694,0.0537926,0.78372,0.514172,0.672758,0.377995,0.579347,0.864147,0.259083,0.271865,0.823502,0.19096,0.489966,0.178154,0.0276241,0.380791,0.293705,0.38986,0.246921,0.683835,0.443582,0.252824,0.469993,0.154251,0.568174,0.0763994,0.129294,0.880315,0.349903,0.366803,0.212299,0.593142,0.203556,0.695773,0.925547,0.489437,0.532602,0.0556382,0.871998,0.878504,0.23546,0.0526482,0.0688468,0.66029,0.918039,0.0382255,0.185862,0.589131,0.430401,0.282341,0.518528,0.886622,0.879598,0.307825,0.402623,|0.443368,0.324376,0.0648737,0.533084,0.903684,0.91929,0.206295,0.675185,0.0329944,0.642758,0.397027,0.606879,0.24867,0.859751,0.312366,0.123089,0.398098,0.0522941,0.944492,0.0848384,0.405773,0.0471307,0.0209506,0.474996,0.0828488,0.847853,0.328747,0.781058,0.441925,0.054794,0.351132,0.0510564,0.494748,0.62125,0.919057,0.16111,0.237216,0.729694,0.648561,0.735261,0.0751687,0.357526,0.486103,0.714129,0.476756,0.893386,0.204733,0.518833,0.750779,0.593696,0.936161,0.310434,0.463242,0.645068,0.845849,0.104373,0.831671,0.229931,0.82923,0.808441,0.285269,0.145574,0.378653,0.242306,0.486801,0.126539,0.213865,0.310183,0.920281,0.337915,0.19542,0.450346,0.433066,0.701424,0.451177,0.867294,0.252533,0.856041,0.957246,0.495481,0.183234,0.58533,0.538371,0.164544,0.481716,0.144872,0.967293,0.146732,0.212621,0.591961,0.244538,0.258393,0.78977,0.104125,0.794928,0.222535,0.349775,0.439092,0.707481,0.0693449,0.419143,0.429243,0.130078,0.208893,0.4773,0.336441,0.303984,0.5564,0.442374,0.597467,0.992356,0.00993568,0.467741,0.771872,0.44304,0.403815,0.267775,0.903264,0.0909231,0.902945,0.697339,0.31097,0.0365421,0.355217,0.0417135,0.440412,0.545917,0.224629,0.131626,0.472457,0.892566,0.664656,0.83694,0.416698,0.968558,0.681998,0.0615788,0.77424,0.961822,0.718264,0.225633,0.36407,0.604349,0.228657,0.972143,0.0625994,0.98519,0.940143,0.915174,0.198427,0.603426,0.474516,0.0169325,0.544429,0.641735,0.171024,0.142746,0.924516,0.472086,0.91806,0.391216,0.42925,0.98074,0.449026,0.787988,0.314478,0.603875,0.6953,0.888617,0.136789,0.018452,0.44475,0.752146,0.604014,0.320084,0.94765,0.216458,0.857183,0.501243,0.794069,0.768915,0.051381,0.796016,0.811011,0.639175,0.375165,0.827391,0.677891,0.548578,0.102996,0.713387,0.985339,0.0358999,0.149213,0.970967,0.958159,0.121502,0.945991,0.463167,0.574238,0.301816,0.586086,0.523366,0.0266725,0.950369,0.985933,0.633353,0.821982,0.308732,0.972192,0.908825,0.208711,0.691998,0.377182,0.326598,0.587347,0.542999,0.912123,0.180599,0.664928,0.519868,0.502528,0.963279,0.750922,0.245472,0.437196,0.532663,0.526326,0.819182,0.892545,0.600167,0.731773,0.530926,0.602954,0.0718016,0.658677,0.245518,0.345617,0.728766,0.454366,0.833508,0.750413,0.688514,0.933662,0.045693,0.167432,0.858662,0.663478,0.254476,0.408986,0.272445,0.557337,0.624456,0.697033,0.861368,0.744621,0.0324523,0.365492,0.506209,0.858251,0.124465,0.3977,0.756074,0.811955,0.363101,0.974871,0.886524,0.423987,0.8324,0.923604,0.423262,0.54605,0.875381,0.339164,0.221068,0.674444,0.748604,0.477401,0.843099,0.712421,0.92951,0.436674,0.826968,0.41389,0.133353,0.397791,0.140483,0.167363,0.498433,0.548372,0.432302,0.173371,0.594924,0.766522,0.623838,0.874814,0.631375,0.0331241,0.623751,0.656561,0.866826,0.706523,0.25436,0.989363,0.405217,0.949555,0.515737,0.685124,0.960036,0.776363,0.339419,0.630647,0.607508,0.741799,0.666066,0.843882,0.2385,0.0635806,0.791615,0.738406,0.0736504,0.383292,0.268785,0.202649,0.800902,0.906049,0.865182,0.1776,0.524654,0.146013,0.413447,0.184479,0.776328,0.939571,0.638924,0.348806,0.803374,0.696676,0.466012,0.691944,0.674736,0.839587,0.433685,0.616548,0.197179,0.482031,0.652232,0.347811,0.16288,0.376691,0.42249,0.809205,0.660063,0.979273,0.550857,0.00627708,0.680626,0.0299333,0.0798852,0.988062,0.43865,0.402602,0.749067,0.437401,0.117533,0.00672048,0.608018,0.66299,0.659234,0.094534,0.43702,0.882011,0.272858,0.48904,0.783328,0.852932,0.237081,0.428016,0.655791,0.638675,0.33204,0.968489,0.1717,0.682972,0.951994,0.487036,0.634392,0.878786,0.965444,0.507955,0.779826,0.797858,0.867913,0.483199,0.634647,0.733248,0.943169,0.111667,0.88655,0.476612,0.0818079,0.859842,0.705967,0.750779,0.157785,0.66756,0.655354,0.985984,0.173073,0.547064,0.0117568,0.554597,0.435726,0.908654,0.0390509,0.444364,0.484488,0.902464,0.689358,0.891405,0.886566,0.769292,0.112385,0.711943,0.261596,0.265147,0.604108,0.143458,0.982493,0.602232,0.469297,0.386838,0.775458,0.399352,0.207295,0.0118726,0.181259,0.771092,0.367295,0.31328,0.242537,0.627542,0.866328,0.405307,0.0501947,0.879145,0.035525,0.162652,0.61597,0.951877,0.68914,0.637825,0.913264,0.750642,0.948893,0.670741,0.841064,0.148355,0.517492,0.339716,0.518852,6.73532e-06,0.16152,0.672158,0.571999,0.566039,0.592119,0.0902571,0.579256,0.095137,0.143749,0.465523,0.13124,0.443954,0.891846,0.847317,0.688388,0.87919,0.764818,0.726486,0.706441,0.134873,0.623376,0.807091,0.613383,0.0115623,0.132645,0.793758,0.662627,0.666578,0.520396,0.645036,0.37662,0.0884327,0.536781,0.27267,0.432593,0.322515,0.764772,0.773756,0.430631,0.141022,0.567239,0.13888,0.766433,0.158218,0.288515,0.441178,0.485332,0.294275,0.62888,0.325229,0.975525,0.141786,0.119979,0.604838,0.981387,0.733078,0.13817,0.428209,0.817074,0.0302348,0.11742,0.925218,0.287925,0.384004,0.0494445,0.726204,0.778969,0.269411,0.909452,0.130697,0.551385,0.696841,0.219397,0.475224,0.879202,0.884435,0.308981,0.622338,0.778241,0.962784,0.847941,0.965866,0.285837,0.0695233,0.823778,0.0986775,0.846141,0.2249,0.510916,0.643349,0.748614,0.291709,0.841624,0.723037,0.965611,0.245398,0.160877,0.16813,0.843511,0.750118,0.233715,0.606722,0.19922,0.186808,0.176253,0.276197,0.79625,0.261205,0.28587,0.982047,0.636901,0.828217,0.0872739,0.496311,0.87941,0.81273,0.371823,0.334849,0.729125,0.538309,0.314433,0.909796,0.444094,0.472341,0.17683,0.958457,0.573614,0.198399,0.284203,0.20066,0.117617,0.750432,0.382717,0.50237,0.997654,0.636875,0.887537,0.0555343,0.0243916,0.059991,0.641653,0.0764144,0.800435,0.339715,0.59905,0.0257468,0.289181,0.119194,0.433996,0.133809,0.117885,0.766091,0.322506,0.37342,0.100761,0.43989,0.476572,0.29203,0.265194,0.691151,0.22391,0.496401,0.55218,0.491133,0.842176,0.523667,0.701604,0.79932,0.534394,0.164615,0.760408,0.417129,0.854858,0.370709,0.562257,0.998235,0.974178,0.370582,0.926077,0.0678977,0.868624,0.20673,0.433432,0.243059,0.357745,0.388921,0.77886,0.629494,0.846073,0.753671,0.933617,0.651731,0.844107,0.761236,0.501902,0.772969,0.414938,0.311527,0.324184,0.0191589,0.828313,0.831983,0.0469202,0.177534,0.455144,0.504984,0.00988746,0.663026,0.55721,0.362939,0.64669,0.611817,0.305156,0.964138,0.90758,0.671544,0.473096,0.548014,0.795622,0.830357,0.203539,0.651461,0.0438192,0.0984372,0.717961,0.690884,0.136696,0.139499,0.130678,0.947885,0.296761,0.798743,0.075119,0.87827,0.71691,0.9203,0.654971,0.500089,0.321271,0.615289,0.935853,0.661643,0.503571,0.140603,0.123216,0.923588,0.287835,0.81835,0.78962,0.606852,0.157526,0.464427,0.472553,0.866488,0.136204,0.476655,0.154662,0.83054,0.341745,0.692459,0.168175,0.155476,0.64024,0.1915,0.0989897,0.55916,0.886355,0.773839,0.426613,0.447804,0.770788,0.0423477,0.471366,0.938825,0.292226,0.369395,0.909552,0.875483,0.0808987,0.536957,0.16319,0.527484,0.689467,0.163352,0.345603,0.0119419,0.83766,0.255754,0.972866,0.863475,0.76384,0.29347,0.550476,0.422407,0.857442,0.510997,0.547929,0.822387,0.945507,0.811082,0.420369,0.87876,0.531856,0.113786,0.589048,0.84747,0.296944,0.286457,0.546857,0.903934,0.651049,0.880613,0.854233,0.856758,0.246265,0.333277,0.546591,0.021655,0.61938,0.308677,0.157997,0.246042,0.380529,0.555978,0.991958,0.419411,0.523999,0.3393,0.74436,0.456151,0.853273,0.163435,0.606431,0.844264,0.695546,0.769081,0.105848,0.163093,0.976064,0.103559,0.00773102,0.279183,0.91496,0.0770108,0.165855,0.489829,0.844098,0.240887,0.048778,0.747871,0.322304,0.89126,0.0207961,0.955811,0.88351,0.056538,0.474527,0.0174874,0.279472,0.602534,0.10158,0.781399,0.275652,0.564652,0.855208,0.518792,0.424247,0.143914,0.647414,0.866922,0.880713,0.847774,0.265094,0.881282,0.665769,0.35854,0.613413,0.57811,0.347973,0.228663,0.834718,0.118353,0.42239,0.718397,0.8493,0.0626258,0.953289,0.0201213,0.634082,0.776833,0.0857742,0.275873,0.95973,0.949601,0.500674,0.280982,0.39561,0.563807,0.526329,0.616484,0.21873,0.812387,0.116297,0.611198,0.998056,0.207588,0.64306,0.674803,0.892883,0.296187,0.879098,0.657747,0.927883,0.410246,0.993163,0.39509,0.828597,0.879435,0.409368,0.349652,0.128992,0.680063,0.658074,0.344995,0.396189,0.732191,0.569278,0.145408,0.217373,0.342524,0.173105,0.660924,0.151185,0.247021,0.568394,0.698329,0.987067,0.32467,0.265549,0.18887,0.295625,0.387904,0.434656,0.413142,0.766514,0.496093,0.47307,0.595971,0.561773,0.229339,0.633503,0.29779,0.0641616,0.982437,0.116601,0.00178868,0.467127,0.531569,0.412536,0.231643,0.134924,0.576179,0.900217,0.657667,0.370414,0.891272,0.812815,0.48344,0.32583,0.92596,0.0471662,0.622147,0.489792,0.270293,0.843215,0.376614,0.691744,0.663086,0.17011,0.458134,0.00802529,0.0741578,0.152008,0.915052,0.962958,0.272011,0.389839,0.169525,0.866423,0.751306,0.63755,0.103527,0.0472804,0.215974,0.412406,0.103089,0.26558,0.927761,0.446883,0.739575,0.0994514,0.236742,0.922577,0.0252476,0.609122,0.0212958,0.561798,0.160832,0.0443513,0.765287,0.742347,0.25396,0.955193,0.591458,0.856018,0.204127,0.407886,0.71026,0.897627,0.913383,0.000479281,0.705245,0.920914,0.0511282,0.210101,0.729851,0.0559189,0.303357,0.0930918,0.514481,0.664649,0.0567919,0.557233,0.92325,0.584442,0.909742,0.485587,0.562371,|0.98388,0.151806,0.55836,0.581967,0.73599,0.0423225,0.591747,0.223658,0.811007,0.625922,0.662789,0.0333002,0.638359,0.698656,0.522401,0.915313,0.920614,0.565586,0.0452965,0.795037,0.503522,0.831337,0.922602,0.0410318,0.297395,0.0331484,0.455758,0.474192,0.526389,0.352792,0.956513,0.634038,0.047423,0.143027,0.843829,0.0682136,0.386624,0.401734,0.798026,0.253022,0.829256,0.463396,0.617309,0.89977,0.688781,0.462662,0.38817,0.140737,0.989114,0.216686,0.240519,0.692247,0.830986,0.562865,0.35065,0.403768,0.925754,0.220155,0.753604,0.0407503,0.965586,0.897741,0.265157,0.874303,0.774761,0.104813,0.47158,0.988777,0.849163,0.654473,0.145756,0.051075,0.405701,0.914308,0.0378594,0.878647,0.34653,0.763191,0.582575,0.923964,0.619462,0.82467,0.0891942,0.389685,0.433271,0.551097,0.839209,0.455253,0.715204,0.600019,0.983579,0.273042,0.312451,0.438968,0.113468,0.071312,0.788596,0.90515,0.0245306,0.54052,0.834966,0.124814,0.0434623,0.956634,0.814557,0.486577,0.88596,0.0343412,0.493026,0.212314,0.183473,0.806678,0.667764,0.241488,0.264668,0.199385,0.831187,0.329514,0.453657,0.354728,0.26039,0.133302,0.681173,0.0306911,0.790762,0.860186,0.464306,0.83844,0.433061,0.715584,0.0213103,0.578955,0.193276,0.294817,0.025164,0.134178,0.489296,0.66414,0.641664,0.95656,0.0619293,0.522449,0.439808,0.438733,0.989662,0.892105,0.611081,0.0588214,0.935266,0.833663,0.0785903,0.296123,0.697855,0.86316,0.934781,0.786235,0.982943,0.128002,0.0942029,0.304293,0.699658,0.539374,0.2191,0.321699,0.682413,0.607038,0.735791,0.73914,0.170272,0.424074,0.458366,0.994836,0.991643,0.19155,0.632508,0.446169,0.751086,0.970908,0.478789,0.121374,0.528051,0.445026,0.322043,0.811812,0.784963,0.668073,0.896189,0.69459,0.881202,0.463596,0.820687,0.335188,0.100767,0.126566,0.286083,0.990847,0.643349,0.470978,0.668967,0.95434,0.30823,0.561951,0.366231,0.653697,0.676297,0.483884,0.88414,0.120046,0.966397,0.00857818,0.140448,0.437978,0.0613756,0.257866,0.02428,0.817327,0.2865,0.628043,0.101089,0.283379,0.445344,0.29219,0.734988,0.680256,0.528459,0.149534,0.0245442,0.370536,0.340014,0.00896263,0.871918,0.263609,0.0702962,0.198454,0.851862,0.954919,0.810949,0.183874,0.608167,0.318406,0.200604,0.493885,0.58081,0.899679,0.338818,0.437396,0.0647361,0.0321873,0.408434,0.0409296,0.791772,0.932638,0.144479,0.140392,0.960095,0.954126,0.751835,0.524062,0.133033,0.927593,0.253724,0.632051,0.862766,0.738593,0.430468,0.72285,0.32633,0.702823,0.557658,0.930655,0.129577,0.528367,0.575295,0.649922,0.741953,0.416782,0.862753,0.799384,0.512089,0.709026,0.110696,0.138721,0.189143,0.661802,0.666745,0.893498,0.817696,0.0665097,0.112707,0.80871,0.356165,0.506887,0.0591424,0.815555,0.341855,0.531734,0.156525,0.663043,0.567,0.584581,0.89266,0.893542,0.789901,0.181198,0.0162209,0.197495,0.0142932,0.262648,0.340598,0.906175,0.432694,0.571442,0.585242,0.375532,0.897259,0.626598,0.323053,0.574883,0.885389,0.411204,0.614539,0.990579,0.905398,0.6575,0.763906,0.841099,0.837513,0.491869,0.329788,0.858415,0.753343,0.984901,0.535092,0.0948729,0.816004,0.478795,0.0950395,0.739271,0.438689,0.830945,0.851193,0.700931,0.432692,0.353861,0.763954,0.697532,0.85281,0.358451,0.659982,0.61898,0.462604,0.393957,0.714962,0.411031,0.788251,0.666689,0.840321,0.819798,0.100809,0.186664,0.141051,0.715295,0.829667,0.416788,0.582658,0.614797,0.0694868,0.032285,0.690081,0.725033,0.457579,0.250176,0.817107,0.987938,0.922489,0.975725,0.0181658,0.62674,0.51258,0.771509,0.49049,0.000841498,0.588683,0.253369,0.214715,0.578046,0.012782,0.754617,0.498038,0.1933,0.504892,0.179051,0.552188,0.443685,0.515676,0.35056,0.579448,0.214256,0.662175,0.76032,0.186834,0.276454,0.236353,0.723977,0.358894,0.221108,0.336723,0.347737,0.898909,0.944086,0.672643,0.969757,0.487528,0.360666,0.846457,0.272741,0.366985,0.217177,0.0169905,0.404475,0.0806848,0.505567,0.969223,0.673511,0.186563,0.517248,0.0993298,0.692517,0.493883,0.641402,0.000855327,0.0548159,0.436616,0.438669,0.660674,0.355772,0.691321,0.734111,0.997301,0.524907,0.892223,0.316802,0.963273,0.0146497,0.909054,0.0660312,0.908797,0.0887098,0.456181,0.559048,0.495146,0.687684,0.416123,0.632211,0.0774167,0.937916,0.316941,0.433235,0.409877,0.948427,0.0424554,0.456129,0.635346,0.769458,0.842036,0.32785,0.37326,0.89752,0.91513,0.721582,0.762725,0.743486,0.986783,0.727556,0.34805,0.53289,0.707368,0.116504,0.837537,0.635231,0.206715,0.419408,0.290856,0.371299,0.511994,0.701016,0.278099,0.579029,0.204326,0.195201,0.30561,0.931675,0.682619,0.439493,0.442733,0.308878,0.58321,0.735645,0.9168,0.0810475,0.642363,0.222539,0.88796,0.51014,0.463255,0.789896,0.812227,0.443792,0.532541,0.0884123,0.625478,0.339818,0.397817,0.142301,0.945613,0.324566,0.10664,0.00268656,0.172452,0.458045,0.368569,0.222802,0.676248,0.134682,0.13879,0.745356,0.139804,0.685933,0.218966,0.928287,0.962602,0.702149,0.409774,0.344588,0.184266,0.163054,0.0377331,0.0455562,0.0152923,0.744262,0.18345,0.174936,0.524681,0.791641,0.91968,0.88654,0.166724,0.171104,0.37413,0.521331,0.315266,0.492502,0.40411,0.191386,0.130016,0.765252,0.141137,0.0101164,0.0927815,0.238732,0.329241,0.0966878,0.495432,0.765948,0.343415,0.530818,0.823717,0.797012,0.421256,0.346619,0.0363297,0.614473,0.523435,0.430315,0.317143,0.10953,0.516771,0.0519493,0.226737,0.938578,0.184154,0.747464,0.0869788,0.365834,0.0698117,0.484987,0.439525,0.149097,0.643688,0.633234,0.0448719,0.838643,0.23318,0.886166,0.394941,0.443979,0.0746372,0.775704,0.118762,0.402254,0.409203,0.253982,0.407176,0.428939,0.702107,0.56889,0.649874,0.477991,0.922791,0.194251,0.680237,0.0943863,0.166542,0.144826,0.556873,0.291758,0.919811,0.201393,0.440592,0.0302017,0.0912249,0.287187,0.06249,0.969527,0.991643,0.4573,0.721638,0.789904,0.402853,0.0977898,0.625056,0.500454,0.847963,0.0649907,0.0948324,0.885771,0.423349,0.814623,0.561764,0.539569,0.630277,0.679792,0.653915,0.344748,0.214952,0.158772,0.206197,0.940554,0.653464,0.181759,0.352625,0.0313253,0.966647,0.277529,0.822577,0.88352,0.375687,0.988736,0.930742,0.207473,0.989472,0.23623,0.242816,0.943071,0.417783,0.453891,0.0763847,0.307926,0.00723881,0.735164,0.857243,0.954317,0.72533,0.425918,0.488895,0.161798,0.763607,0.411885,0.695268,0.94694,0.578738,0.544353,0.00174421,0.62374,0.78784,0.975236,0.0193488,0.505993,0.060086,0.321294,0.799331,0.340673,0.831485,0.403172,0.0678464,0.126793,0.113119,0.41203,0.299743,0.261752,0.208804,0.110274,0.96414,0.611787,0.341661,0.645474,0.0423353,0.761491,0.275236,0.270176,0.902986,0.335924,0.579809,0.903724,0.554325,0.982436,0.68147,0.537262,0.818256,0.752228,0.600829,0.63307,0.285402,0.0496589,0.800984,0.642664,0.835674,0.174846,0.592941,0.301224,0.506402,0.496203,0.738176,0.0678105,0.0265771,0.628982,0.623174,0.109924,0.610375,0.516738,0.0881231,0.435406,0.74229,0.878369,0.996449,0.262071,0.672747,0.835715,0.0664153,0.737666,0.256699,0.955827,0.694808,0.306265,0.805344,0.496194,0.966431,0.671528,0.457818,0.282744,0.487857,0.977114,0.832405,0.56095,0.285426,0.866372,0.966163,0.592041,0.0680513,0.82782,0.545519,0.346939,0.673587,0.293634,0.184948,0.0908815,0.626981,0.0288931,0.909346,0.238209,0.240756,0.0655717,0.286664,0.657714,0.587682,0.764906,0.66863,0.163156,0.775687,0.972024,0.524557,0.466979,0.822718,0.78629,0.938541,0.127718,0.585406,0.604912,0.691408,0.208872,0.4246,0.348032,0.0945595,0.396335,0.436375,0.146015,0.0243697,0.413143,0.980956,0.904114,0.109329,0.313898,0.0701734,0.192577,0.0732197,0.805984,0.133365,0.3178,0.563031,0.773824,0.295014,0.46915,0.710316,0.539239,0.893898,0.376162,0.39544,0.189736,0.941097,0.354419,0.68582,0.191158,0.267266,0.531032,0.811884,0.396277,0.328725,0.781538,0.78732,0.178667,0.0149543,0.754477,0.903225,0.485223,0.124125,0.545265,0.0906366,0.229419,0.361894,0.835639,0.016253,0.217893,0.422852,0.429012,0.94613,0.595022,0.589466,0.52191,0.785767,0.116323,0.0632239,0.847624,0.629024,0.134684,0.39154,0.324009,0.313925,0.84168,0.516675,0.6271,0.559517,0.194956,0.372153,0.304519,0.801761,0.706955,0.0529614,0.624873,0.0266615,0.125138,0.894972,0.376226,0.497898,0.167286,0.117584,0.862038,0.466784,0.496352,0.894188,0.725936,0.199444,0.655646,0.170576,0.059773,0.560434,0.0927657,0.367332,0.176093,0.21692,0.485911,0.0364991,0.764276,0.363806,0.564211,0.00459707,0.815347,0.628041,0.626296,0.0518384,0.634643,0.118252,0.816413,0.535104,0.903475,0.110424,0.314169,0.115305,0.0299501,0.337755,0.756789,0.763615,0.71253,0.0743601,0.285127,0.400368,0.487941,0.330736,0.443825,0.177713,0.879366,0.237192,0.904135,0.714,0.046525,0.235208,0.987553,0.71141,0.00754839,0.740407,0.715156,0.335736,0.263078,0.883716,0.445382,0.56003,0.570948,0.345298,0.912035,0.745747,0.110357,0.297184,0.163716,0.501143,0.904501,0.74673,0.0458459,0.957459,0.937637,0.426596,0.234235,0.224557,0.217701,0.770241,0.420803,0.975934,0.284495,0.674582,0.273814,0.201047,0.792139,0.546896,0.840558,0.13384,0.515711,0.302647,0.590727,0.338007,0.687424,0.90993,0.755891,0.177393,0.767827,0.455145,0.270073,0.284012,0.246534,0.889529,0.766478,0.0498881,0.518259,0.474228,0.839159,0.11697,0.529671,0.500822,0.0404066,0.310016,0.84902,0.891618,0.229359,|0.838614,0.3283,0.163918,0.894204,0.457686,0.787349,0.141284,0.0303476,0.234946,0.607974,0.29891,0.0138256,0.734925,0.858102,0.441792,0.130939,0.0702072,0.469184,0.799523,0.74013,0.102196,0.426823,0.402247,0.239832,0.88473,0.443946,0.791789,0.803519,0.761658,0.797773,0.836036,0.637876,0.403051,0.497371,0.368084,0.850247,0.56649,0.583727,0.365338,0.625609,0.389922,0.165088,0.595833,0.625418,0.0465417,0.376891,0.513872,0.161879,0.791148,0.141922,0.601325,0.399373,0.0177089,0.0999629,0.618954,0.0789085,0.323994,0.669921,0.660004,0.293294,0.906416,0.0296994,0.979563,0.311362,0.92302,0.217121,0.264663,0.733203,0.061667,0.564914,0.515182,0.528288,0.922507,0.686097,0.0675869,0.135564,0.678183,0.447008,0.858486,0.848345,0.66839,0.713972,0.00943971,0.215663,0.787611,0.466059,0.796669,0.354298,0.304471,0.397249,0.825979,0.647287,0.0354,0.189347,0.830412,0.134397,0.325448,0.226626,0.482106,0.597634,0.24078,0.772882,0.780802,0.162191,0.371254,0.77514,0.171954,0.0871655,0.253189,0.105277,0.0382935,0.62709,0.533712,0.0143054,0.727104,0.414839,0.400401,0.956188,0.890017,0.659581,0.422297,0.409661,0.0272683,0.691396,0.929303,0.922891,0.274892,0.275972,0.0855745,0.234515,0.593814,0.978414,0.888802,0.336524,0.879036,0.984694,0.235721,0.833202,0.590186,0.020295,0.312854,0.145886,0.173568,0.961612,0.349754,0.810316,0.569393,0.317617,0.812487,0.748943,0.796813,0.559018,0.294956,0.308511,0.926252,0.386464,0.512799,0.983783,0.495555,0.965594,0.689145,0.926698,0.521102,0.425586,0.575331,0.408382,0.355532,0.49917,0.800293,0.927971,0.663544,0.884827,0.597476,0.757661,0.995666,0.540551,0.331059,0.746011,0.544543,0.00685608,0.173101,0.390907,0.75923,0.551943,0.266924,0.672047,0.129687,0.441436,0.63303,0.262357,0.540392,0.373024,0.966074,0.623509,0.443211,0.976223,0.894752,0.88715,0.955824,0.203899,0.386287,0.907682,0.204677,0.858456,0.733618,0.826549,0.077858,0.977078,0.706036,0.0136563,0.195269,0.8021,0.768943,0.0733098,0.0327518,0.27903,0.568283,0.624603,0.821344,0.586887,0.628577,0.292666,0.22656,0.0850089,0.239425,0.717623,0.807715,0.242587,0.020587,0.937786,0.248925,0.524941,0.0640192,0.613098,0.073015,0.376048,0.533296,0.744376,0.355827,0.289209,0.638794,0.292618,0.475411,0.795042,0.94201,0.958317,0.56387,0.606767,0.368103,0.117543,0.236373,0.823694,0.826143,0.571032,0.0879828,0.108278,0.752903,0.869875,0.370664,0.101656,0.991301,0.966797,0.373244,0.876485,0.910223,0.273608,0.816807,0.991985,0.882192,0.458288,0.181575,0.0683017,0.178227,0.741338,0.11894,0.495542,0.680872,0.642326,0.162988,0.363338,0.21581,0.781297,0.496918,0.967756,0.484588,0.183264,0.363315,0.434966,0.103696,0.0869015,0.658636,0.115489,0.803039,0.492769,0.155832,0.831245,0.274384,0.680539,0.92077,0.924164,0.154007,0.890342,0.765154,0.938649,0.469747,0.665193,0.389122,0.610078,0.66491,0.129198,0.899244,0.873089,0.199192,0.997139,0.371945,0.63516,0.483637,0.713089,0.565242,0.725932,0.800158,0.319582,0.588333,0.5024,0.177844,0.172546,0.199278,0.858959,0.999225,0.766484,0.326136,0.102134,0.6493,0.0266045,0.514475,0.925677,0.441631,0.973971,0.68114,0.225167,0.0284573,0.273898,0.238599,0.884954,0.898068,0.56631,0.205361,0.113064,0.294051,0.569235,0.664515,0.67416,0.277252,0.600506,0.939518,0.00302583,0.11698,0.586231,0.162988,0.764262,0.805202,0.955666,0.454234,0.42386,0.647488,0.602674,0.793716,0.208726,0.685584,0.887629,0.29163,0.918294,0.989305,0.0801011,0.872609,0.254732,0.811948,0.587923,0.099836,0.417117,0.401209,0.36576,0.0815157,0.5111,0.708985,0.696588,0.997521,0.546147,0.684412,0.886048,0.777185,0.680079,0.462686,0.298879,0.402439,0.562508,0.293464,0.344719,0.890266,0.813942,0.406717,0.830149,0.875166,0.657287,0.920421,0.843674,0.894018,0.0555147,0.0304281,0.668462,0.314432,0.852021,0.169509,0.204286,0.233454,0.844256,0.575681,0.696238,0.531128,0.694473,0.0170773,0.374402,0.678564,0.733632,0.415207,0.965865,0.5217,0.512679,0.416516,0.354097,0.123336,0.335104,0.727473,0.263195,0.225236,0.36919,0.805663,0.708453,0.222543,0.935866,0.502755,0.0220597,0.806306,0.89533,0.853853,0.969689,0.305372,0.796596,0.286262,0.327547,0.815934,0.806515,0.747039,0.234222,0.0107281,0.55617,0.551614,0.800716,0.888893,0.149542,0.925118,0.229082,0.747556,0.335886,0.862049,0.234108,0.474663,0.156405,0.128101,0.226078,0.70638,0.592922,0.324288,0.631942,0.0052458,0.594492,0.284412,0.902967,0.222136,0.379411,0.66493,0.393945,0.863049,0.157357,0.914305,0.764523,0.715511,0.153903,0.0537118,0.490544,0.773508,0.264091,0.250276,0.950143,0.913515,0.572267,0.37492,0.527626,0.340011,0.718669,0.181856,0.0813653,0.214109,0.0568839,0.27308,0.983472,0.396644,0.833694,0.611726,0.0667722,0.958495,0.338507,0.145772,0.187256,0.833641,0.368659,0.203248,0.688469,0.633849,0.237042,0.418296,0.870997,0.854129,0.152623,0.969885,0.158332,0.354196,0.582062,0.929988,0.287294,0.269134,0.810493,0.437481,0.290986,0.308686,0.780999,0.403704,0.583311,0.693694,0.275049,0.676093,0.091748,0.791313,0.365663,0.365058,0.155248,0.310497,0.654778,0.554391,0.865699,0.634751,0.708671,0.287039,0.710672,0.113771,0.691646,0.749053,0.504652,0.366773,0.252049,0.783783,0.973473,0.00699222,0.235387,0.871187,0.692387,0.868846,0.820195,0.0232545,0.803222,0.753168,0.0546899,0.787884,0.346954,0.474002,0.00889313,0.227307,0.0185547,0.855034,0.170755,0.746125,0.478407,0.0195644,0.381064,0.751863,0.378272,0.91694,0.284165,0.0590669,0.686108,0.610962,0.585664,0.883423,0.785428,0.871911,0.967272,0.789794,0.134971,0.765426,0.365765,0.905465,0.455286,0.414305,0.247404,0.303467,0.3694,0.698264,0.394469,0.56034,0.578582,0.187908,0.127376,0.553871,0.74132,0.579167,0.739372,0.579726,0.0716099,0.462061,0.273044,0.273818,0.954839,0.902259,0.457439,0.679401,0.364986,0.814124,0.86212,0.60263,0.855743,0.566911,0.301451,0.436779,0.207153,0.337416,0.629888,0.888096,0.530859,0.879527,0.714675,0.768182,0.774104,0.790795,0.395991,0.449068,0.121759,0.337669,0.615052,0.949302,0.64507,0.460411,0.938305,0.125195,0.133667,0.956771,0.917534,0.980528,0.168909,0.816384,0.620404,0.427588,0.124215,0.912063,0.650087,0.908885,0.910664,0.521936,0.378857,0.682759,0.251508,0.128109,0.676861,0.490259,0.598903,0.343597,0.15997,0.765237,0.0156444,0.480818,0.283058,0.157386,0.527283,0.217333,0.0704722,0.529072,0.207067,0.455706,0.637473,0.836555,0.633399,0.0362841,0.119275,0.162918,0.0196711,0.705741,0.795276,0.430159,0.0898693,0.208996,0.527489,0.422598,0.0603557,0.607467,0.789162,0.651103,0.603887,0.268093,0.951208,0.651945,0.984064,0.994902,0.753769,0.455927,0.202327,0.0683884,0.7462,0.49093,0.679913,0.410604,0.413341,0.110164,0.540234,0.505,0.362004,0.384527,0.0661358,0.984784,0.04968,0.133359,0.131306,0.926157,0.0433388,0.894588,0.947526,0.18186,0.276878,0.57015,0.136654,0.244319,0.577195,0.388982,0.208696,0.580192,0.316252,0.361736,0.93882,0.444816,0.815857,0.202402,0.785501,0.679609,0.231213,0.244461,0.913397,0.755749,0.166612,0.689435,0.102134,0.868177,0.133925,0.583716,0.495858,0.266076,0.761229,0.418083,0.274359,0.825835,0.193948,0.155289,0.394913,0.952913,0.136854,0.488703,0.917666,0.91029,0.223833,0.109515,0.473192,0.444439,0.391505,0.0745474,0.914963,0.611214,0.169108,0.570673,0.0274758,0.224177,0.78939,0.0289506,0.0497617,0.270901,0.365128,0.608331,0.902539,0.956512,0.575205,0.961219,0.137133,0.760626,0.361554,0.183658,0.773122,0.849243,0.22357,0.690605,0.478945,0.339675,0.679336,0.225053,0.908166,0.531266,0.0232613,0.937656,0.252108,0.882369,0.0203669,0.254777,0.283539,0.118392,0.579595,0.263083,0.0231336,0.294314,0.0744216,0.938228,0.0664571,0.984279,0.268531,0.992672,0.753381,0.923522,0.164529,0.637013,0.115525,0.0028761,0.866976,0.964977,0.970803,0.228702,0.501972,0.27903,0.28484,0.26132,0.0928106,0.156042,0.294862,0.497847,0.669612,0.825468,0.669518,0.763215,0.738124,0.6473,0.976882,0.821411,0.605096,0.276245,0.701513,0.219587,0.126268,0.67911,0.891683,0.559482,0.204747,0.150906,0.675367,0.474147,0.775793,0.42208,0.61282,0.737778,0.339188,0.939416,0.798611,0.328003,0.234339,0.850967,0.179473,0.71124,0.169255,0.382512,0.758019,0.83718,0.82915,0.300342,0.924419,0.221918,0.0994869,0.985268,0.33772,0.426581,0.745341,0.555545,0.199444,0.980404,0.985354,0.441283,0.327456,0.445966,0.908497,0.0525719,0.659279,0.761179,0.967113,0.789212,0.0475926,0.807304,0.854526,0.902922,0.281451,0.256957,0.00314873,0.367702,0.0625325,0.127582,0.201832,0.941379,0.895747,0.0363481,0.262705,0.705274,0.499973,0.232802,0.393284,0.362652,0.370389,0.315236,0.245387,0.826496,0.945746,0.686183,0.784204,0.576973,0.390794,0.574324,0.20574,0.946555,0.997626,0.240559,0.546875,0.684142,0.961438,0.594358,0.268269,0.242009,0.480033,0.277922,0.675831,0.45261,0.0413618,0.578297,0.138716,0.585899,0.0869294,0.413595,0.163088,0.162611,0.358256,0.643016,0.813729,0.648245,0.653788,0.00143278,0.899244,0.433524,0.889862,0.207256,0.234304,0.0267479,0.199316,0.500457,0.448459,0.0478564,0.869329,0.0745928,0.0917025,0.591984,0.0896505,0.249524,0.481176,0.279407,0.548543,0.920621,0.53846,0.957824,0.764429,0.493232,0.758989,0.531771,0.0471827,0.761364,0.501782,0.0524324,0.147103,0.573031,0.643146,0.148763,0.257901,0.752029,0.329721,|0.499945,0.441194,0.0779128,0.545001,0.242809,0.394177,0.87752,0.879326,0.0855002,0.439358,0.493539,0.943013,0.900844,0.879557,0.533328,0.206893,0.61663,0.545594,0.410787,0.87409,0.0958721,0.110392,0.864341,0.278481,0.790116,0.189217,0.73169,0.959997,0.00689203,0.164346,0.629144,0.716834,0.770236,0.380637,0.035081,0.653528,0.820015,0.720225,0.351144,0.680535,0.538541,0.168172,0.0888247,0.426654,0.101258,0.489901,0.496855,0.678357,0.381739,0.944373,0.654636,0.676538,0.5294,0.638583,0.536931,0.931063,0.695783,0.325779,0.332975,0.614898,0.751904,0.504288,0.428018,0.454146,0.753793,0.575258,0.562234,0.826427,0.497428,0.24193,0.192096,0.97073,0.685094,0.778043,0.791823,0.518254,0.408774,0.756763,0.571039,0.795618,0.583651,0.792484,0.228609,0.603496,0.63043,0.152946,0.646841,0.297052,0.850842,0.816178,0.705961,0.229224,0.0186927,0.302543,0.905064,0.955077,0.637497,0.487402,0.522944,0.894767,0.00118595,0.0605616,0.138144,0.941037,0.0165434,0.144308,0.8336,0.225481,0.301416,0.955747,0.759968,0.68855,0.100179,0.326193,0.739802,0.201147,0.542054,0.511119,0.370752,0.812235,0.532887,0.0518609,0.609172,0.669814,0.688129,0.816297,0.893259,0.310238,0.300193,0.678744,0.744098,0.712668,0.292203,0.958309,0.589309,0.472118,0.0951587,0.77064,0.562746,0.761796,0.674184,0.425604,0.770493,0.163265,0.335596,0.8934,0.283187,0.199901,0.405468,0.348459,0.313748,0.583902,0.99723,0.99212,0.3521,0.604654,0.751069,0.394578,0.840749,0.44024,0.975553,0.347147,0.429688,0.601635,0.171853,0.46321,0.407045,0.477955,0.798456,0.34051,0.0587144,0.890731,0.856378,0.991883,0.466516,0.417147,0.171882,0.688631,0.0725938,0.586204,0.431069,0.899846,0.511077,0.844226,0.486487,0.49556,0.667495,0.997714,0.098114,0.555578,0.923672,0.390052,0.395781,0.0667325,0.0448225,0.53246,0.808603,0.749013,0.842295,0.150372,0.513207,0.0199036,0.877437,0.627237,0.309952,0.254643,0.502322,0.475052,0.932058,0.197286,0.591631,0.316677,0.718474,0.831866,0.15662,0.916854,0.955553,0.970378,0.0695364,0.495395,0.0722678,0.0728207,0.351582,0.208217,0.288701,0.649638,0.290456,0.39435,0.0919983,0.776017,0.917326,0.391623,0.541968,0.808352,0.485975,0.999306,0.775132,0.676968,0.93984,0.758804,0.22659,0.867783,0.808766,0.434082,0.700594,0.257956,0.750331,0.834393,0.0366086,0.270028,0.44349,0.877724,0.682206,0.251444,0.780957,0.155782,0.203042,0.863145,0.718131,0.0573911,0.468715,0.0367181,0.944675,0.00456291,0.543279,0.218281,0.888597,0.343788,0.619254,0.522787,0.921241,0.771208,0.319408,0.940791,0.814821,0.890869,0.161381,0.0991473,0.0414197,0.334117,0.339251,0.687668,0.842396,0.319682,0.920103,0.277665,0.623743,0.67875,0.494025,0.9876,0.0463779,0.0420531,0.0653596,0.162118,0.917673,0.462117,0.681173,0.20551,0.661012,0.109323,0.331514,0.114422,0.959478,0.62379,0.719306,0.707247,0.23208,0.87872,0.766219,0.919863,0.568342,0.516407,0.215294,0.316707,0.401143,0.124497,0.699992,0.123131,0.692791,0.0251682,0.93271,0.925227,0.264589,0.04052,0.9477,0.0764958,0.430807,0.0307359,0.547189,0.883799,0.314545,0.0749422,0.975385,0.153452,0.666138,0.980815,0.891498,0.45867,0.383453,0.220826,0.754215,0.636678,0.761581,0.896928,0.455452,0.754777,0.159473,0.679818,0.536582,0.243821,0.33199,0.324348,0.651833,0.482264,0.480633,0.3585,0.409794,0.835644,0.144359,0.344541,0.586329,0.642033,0.303089,0.439545,0.798743,0.282585,0.124234,0.999462,0.376849,0.485737,0.864716,0.22679,0.164926,0.536813,0.26666,0.904911,0.317895,0.835873,0.201526,0.592451,0.532997,0.649575,0.33576,0.954428,0.618695,0.365354,0.00348288,0.580464,0.339346,0.619202,0.786978,0.344709,0.186293,0.856802,0.523052,0.562199,0.584487,0.197969,0.727228,0.0385991,0.470599,0.751795,0.670052,0.162051,0.629075,0.710464,0.600545,0.226206,0.989372,0.567658,0.708142,0.675734,0.302043,0.178984,0.973538,0.295898,0.355534,0.821776,0.288935,0.0393883,0.5997,0.187182,0.878495,0.2942,0.0128309,0.833578,0.644083,0.0337317,0.626768,0.00808001,0.844833,0.605968,0.222086,0.499574,0.574968,0.298933,0.194107,0.238835,0.35077,0.640991,0.866208,0.199224,0.649349,0.501637,0.936614,0.60675,0.906553,0.463976,0.493435,0.178174,0.410906,0.925599,0.194848,0.27391,0.450294,0.313285,0.433579,0.407115,0.492945,0.420434,0.0289699,0.000532746,0.217029,0.549096,0.927962,0.871232,0.627957,0.828408,0.333949,0.0588354,0.358077,0.340542,0.61454,0.595503,0.278067,0.855435,0.113995,0.952136,0.406217,0.836483,0.876514,0.392972,0.802383,0.912936,0.175145,0.0719665,0.509031,0.156285,0.61168,0.474722,0.758586,0.51075,0.241744,0.00203675,0.229063,0.127203,0.977362,0.204768,0.106794,0.244736,0.0852144,0.873307,0.650985,0.214735,0.134308,0.856646,0.40484,0.196581,0.487716,0.0626761,0.709379,0.879095,0.692485,0.533609,0.990858,0.0641592,0.361349,0.818334,0.199707,0.0880685,0.712776,0.581623,0.692278,0.461356,0.453401,0.373671,0.074606,0.518124,0.266419,0.807806,0.744501,0.287765,0.918509,0.636763,0.116691,0.828033,0.90614,0.318839,0.793094,0.629849,0.753869,0.995338,0.809656,0.66049,0.0415698,0.841512,0.723216,0.543243,0.657321,0.556258,0.453696,0.177569,0.294733,0.785124,0.986688,0.959682,0.272346,0.909449,0.148568,0.0137947,0.19696,0.747489,0.340939,0.556663,0.473125,0.439831,0.0145942,0.387197,0.26512,0.326899,0.393683,0.221415,0.0620211,0.333996,0.636157,0.657147,0.706004,0.131384,0.543458,0.039085,0.932722,0.226921,0.757241,0.0961651,0.308391,0.514127,0.650337,0.733168,0.807161,0.437467,0.56299,0.369099,0.672928,0.775031,0.14072,0.355222,0.20934,0.679192,0.100769,0.174322,0.098963,0.620942,0.843051,0.38401,0.792408,0.963886,0.274967,0.118926,0.186208,0.40572,0.344744,0.709597,0.0988515,0.117389,0.752877,0.121434,0.395574,0.64352,0.942432,0.637013,0.261228,0.372338,0.960769,0.322671,0.96165,0.0257685,0.316364,0.317461,0.846056,0.449963,0.347692,0.437853,0.855103,0.090108,0.126005,0.0525479,0.135881,0.127162,0.991761,0.217854,0.988051,0.77666,0.426642,0.87521,0.341342,0.954216,0.647064,0.766066,0.205535,0.871555,0.118465,0.159912,0.566089,0.419821,0.135201,0.774335,0.418079,0.375991,0.683392,0.409329,0.707698,0.718596,0.238336,0.956829,0.818039,0.24523,0.605961,0.462323,0.607811,0.636933,0.874449,0.842348,0.62574,0.342609,0.49736,0.23703,0.811971,0.602068,0.063912,0.415068,0.122059,0.0237908,0.417627,0.35017,0.148657,0.892308,0.0271825,0.698271,0.411215,0.595865,0.482709,0.236714,0.550979,0.0335501,0.109381,0.790392,0.0742367,0.776481,0.0790578,0.150001,0.507574,0.717951,0.3939,0.727476,0.919619,0.159583,0.828829,0.969279,0.699548,0.595172,0.245739,0.890069,0.183362,0.756002,0.110173,0.240707,0.395074,0.597813,0.286619,0.615766,0.777614,0.00440085,0.345591,0.913869,0.589321,0.480012,0.0103187,0.632645,0.910385,0.617646,0.354292,0.613072,0.523173,0.0769366,0.765105,0.204865,0.412892,0.605886,0.631799,0.626233,0.746256,0.360475,0.234752,0.708369,0.250517,0.955375,0.535895,0.599087,0.991887,0.531467,0.591285,0.487267,0.143373,0.224545,0.57054,0.389041,0.913399,0.52505,0.254212,0.9056,0.588434,0.981096,0.263432,0.571839,0.0465141,0.158074,0.736152,0.554481,0.352648,0.833299,0.807637,0.278317,0.626174,0.583531,0.530989,0.648013,0.737685,0.9768,0.524939,0.343706,0.934774,0.0773428,0.380403,0.0758072,0.73038,0.847185,0.036262,0.0630684,0.914473,0.357365,0.550167,0.490426,0.998372,0.389448,0.182317,0.764778,0.530617,0.760619,0.583297,0.865558,0.612954,0.840101,0.864022,0.350389,0.897067,0.474669,0.676452,0.995153,0.709831,0.327107,0.188834,0.0882037,0.441748,0.979717,0.970576,0.888144,0.275065,0.784391,0.567369,0.538486,0.48735,0.0937393,0.301001,0.334158,0.951474,0.871937,0.944376,0.1653,0.81325,0.329091,0.392026,0.668676,0.849694,0.737976,0.856092,0.0914436,0.38867,0.00432813,0.519951,0.5322,0.274673,0.0674019,0.525624,0.474984,0.745657,0.411487,0.472895,0.758056,0.863696,0.314502,0.805942,0.94436,0.167484,0.506384,0.628785,0.11274,0.0538838,0.0250613,0.690071,0.455486,0.775708,0.814607,0.139056,0.952843,0.327382,0.937772,0.473515,0.523242,0.228827,0.861052,0.793031,0.340489,0.075103,0.292485,0.210602,0.0140997,0.51426,0.917309,0.539478,0.918027,0.286423,0.421654,0.310853,0.422868,0.726365,0.10057,0.445404,0.366484,0.230423,0.643332,0.783318,0.801754,0.922834,0.390539,0.371637,0.532735,0.865856,0.352815,0.216026,0.272976,0.332495,0.32,0.207728,0.448172,0.0084908,0.696067,0.318447,0.735042,0.791418,0.0514554,0.796942,0.306257,0.706044,0.281989,0.676851,0.250513,0.157053,0.602304,0.00992239,0.809398,0.0951231,0.767608,0.253738,0.419845,0.848104,0.512718,0.483326,0.0414438,0.837093,0.587508,0.614633,0.983572,0.99592,0.185415,0.611651,0.858096,0.729255,0.320296,0.948696,0.419968,0.304805,0.922362,0.209611,0.456448,0.560124,0.0508961,0.32914,0.933933,0.345473,0.827546,0.151347,0.94563,0.480851,0.0892061,0.456457,0.882297,0.74052,0.362437,0.897294,0.436507,0.24393,0.677327,0.475788,0.843581,0.432136,0.702745,0.0101141,0.878564,0.235828,0.383438,0.952627,0.496461,0.762218,0.502005,0.716829,0.689211,0.514389,0.595196,0.329704,0.285336,0.633958,0.607916,0.188014,0.671066,0.0917323,0.703176,0.135986,0.617062,0.14167,0.596483,0.564237,0.506989,0.376864,0.271953,0.0702652,0.262268,0.147604,0.498202,0.494387,0.734294,|0.834667,0.904737,0.460197,0.785369,0.971262,0.434989,0.434076,0.0606604,0.251859,0.877197,0.51191,0.450226,0.474415,0.426968,0.673387,0.411061,0.534871,0.666316,0.399548,0.538069,0.251889,0.710284,0.0926053,0.500262,0.554682,0.0695537,0.0291103,0.240056,0.63886,0.0164995,0.64568,0.973809,0.167247,0.591655,0.0829258,0.634714,0.27242,0.508917,0.449294,0.682493,0.830836,0.913199,0.507046,0.566019,0.410274,0.719737,0.0510635,0.494197,0.222403,0.537639,0.0885487,0.588657,0.54779,0.427021,0.514043,0.53803,0.819043,0.748766,0.945931,0.975368,0.143417,0.132169,0.813676,0.561446,0.024521,0.468815,0.44687,0.689622,0.886824,0.0120713,0.642884,0.523427,0.527346,0.444479,0.0948296,0.206023,0.714616,0.621034,0.29946,0.818708,0.234339,0.678486,0.601567,0.00555414,0.0307928,0.241154,0.749679,0.991376,0.523288,0.966002,0.26974,0.888266,0.499435,0.330874,0.647724,0.222727,0.359551,0.0602374,0.454572,0.394471,0.461079,0.883777,0.949041,0.599664,0.580975,0.273883,0.0394422,0.395699,0.788966,0.328224,0.743648,0.00283128,0.128479,0.765946,0.0529574,0.988488,0.17981,0.624361,0.681442,0.948399,0.69213,0.459437,0.704345,0.449874,0.401229,0.318476,0.17265,0.533124,0.993774,0.797445,0.986134,0.498679,0.269619,0.733574,0.817005,0.676451,0.690157,0.511924,0.0314434,0.805962,0.338429,0.735963,0.104393,0.26686,0.807168,0.489711,0.149199,0.01317,0.227383,0.352332,0.663913,0.691244,0.546802,0.795238,0.321084,0.778553,0.0486408,0.561234,0.577098,0.637357,0.348006,0.697498,0.968852,0.944499,0.524445,0.061344,0.416386,0.172979,0.324431,0.817465,0.130263,0.416924,0.762668,0.843202,0.740453,0.949279,0.215432,0.317187,0.549088,0.897409,0.677158,0.9666,0.175401,0.0399917,0.796107,0.384389,0.892372,0.278391,0.585065,0.552956,0.654535,0.507727,0.848965,0.685615,0.611458,0.523613,0.343376,0.530678,0.703311,0.891601,0.833573,0.53853,0.860134,0.809499,0.76981,0.736949,0.42697,0.448954,0.190051,0.0365422,0.981831,0.15268,0.838404,0.757278,0.238401,0.435368,0.145311,0.0454009,0.705736,0.376358,0.726874,0.264228,0.0921095,0.0320616,0.144616,0.298646,0.186549,0.44878,0.836397,0.523119,0.630186,0.265676,0.0752883,0.390206,0.391497,0.0337268,0.657772,0.857049,0.0753071,0.85214,0.0664467,0.687369,0.420976,0.474558,0.589378,0.204593,0.208341,0.223315,0.433596,0.263852,0.600712,0.506823,0.229811,0.957282,0.304032,0.383307,0.832401,0.00672853,0.0205406,0.432038,0.518558,0.565257,0.806225,0.808676,0.127832,0.555996,0.743062,0.363398,0.806555,0.732021,0.665602,0.929137,0.833569,0.910917,0.460147,0.538225,0.504098,0.670984,0.645858,0.219965,0.652697,0.951127,0.0217535,0.0950875,0.890101,0.81598,0.879241,0.38743,0.243741,0.0870645,0.867712,0.748479,0.825357,0.0500584,0.499086,0.26091,0.775066,0.497579,0.333949,0.155736,0.908905,0.726545,0.485298,0.540327,0.591513,0.164852,0.835947,0.698034,0.173452,0.615444,0.0581079,0.0417556,0.111478,0.374681,0.173432,0.307969,0.46542,0.529358,0.972159,0.709978,0.480799,0.0337813,0.983714,0.724583,0.699287,0.059837,0.967457,0.559985,0.378756,0.844097,0.956405,0.917887,0.523973,0.219005,0.336891,0.720929,0.105088,0.623206,0.786277,0.0140257,0.437583,0.793672,0.136038,0.32028,0.846137,0.127149,0.830382,0.964803,0.650628,0.0329337,0.0416743,0.0263809,0.245078,0.434252,0.627701,0.0450175,0.527757,0.980887,0.130265,0.519123,0.728207,0.658233,0.391566,0.471568,0.462882,0.715472,0.857838,0.132794,0.150392,0.49665,0.783021,0.75483,0.597855,0.95736,0.4763,0.329179,0.375012,0.402051,0.418782,0.584974,0.975157,0.373173,0.42932,0.624016,0.36065,0.10752,0.450133,0.88669,0.715974,0.821475,0.367568,0.42655,0.944775,0.376904,0.973023,0.948041,0.64028,0.871458,0.0437555,0.921928,0.200801,0.588449,0.963994,0.78687,0.894754,0.887331,0.938259,0.585519,0.462558,0.906227,0.236684,0.290134,0.0894364,0.302498,0.678061,0.453234,0.131549,0.79992,0.403128,0.128723,0.41545,0.770557,0.703639,0.645605,0.563533,0.575378,0.432568,0.516048,0.0314922,0.26934,0.947761,0.701086,0.233089,0.516993,0.220473,0.0397146,0.745569,0.61469,0.421741,0.540589,0.15555,0.364184,0.0135223,0.337763,0.0903222,0.482675,0.677367,0.896179,0.814943,0.950783,0.414122,0.309271,0.371578,0.37943,0.170453,0.331366,0.155853,0.46261,0.363419,0.598657,0.823858,0.56422,0.234862,0.592969,0.708325,0.608922,0.529409,0.970661,0.336383,0.705274,0.132208,0.830391,0.398394,0.890011,0.185501,0.199758,0.520435,0.349537,0.243979,0.93125,0.782246,0.85994,0.581081,0.2246,0.958515,0.690714,0.187456,0.173379,0.479201,0.981367,0.864215,0.0742377,0.807687,0.0130564,0.482068,0.165418,0.0508671,0.129042,0.146013,0.898163,0.638225,0.0327379,0.579747,0.459107,0.43719,0.874946,0.96329,0.609194,0.361198,0.0840858,0.820521,0.844418,0.560832,0.0337548,0.621184,0.109621,0.257394,0.512256,0.625792,0.773067,0.180316,0.665256,0.323089,0.0564141,0.202156,0.352553,0.697171,0.302994,0.955644,0.131889,0.145162,0.649946,0.390992,0.412576,0.954071,0.428835,0.590511,0.876766,0.634638,0.211,0.430213,0.137091,0.256855,0.711353,0.718386,0.27218,0.190425,0.0354668,0.942138,0.631226,0.851419,0.618343,0.327254,0.220684,0.650967,0.373067,0.37022,0.706552,0.00672901,0.393278,0.691558,0.879864,0.427134,0.516575,0.419114,0.80651,0.720453,0.963266,0.583168,0.613386,0.39886,0.803518,0.793939,0.782493,0.573263,0.337101,0.440098,0.486133,0.697345,0.138651,0.205186,0.943097,0.20124,0.199457,0.635101,0.696549,0.55919,0.295328,0.770749,0.531297,0.28269,0.44503,0.0182634,0.145385,0.643364,0.742669,0.000965416,0.272652,0.841148,0.530101,0.268588,0.426581,0.45729,0.519039,0.569528,0.31014,0.279496,0.777269,0.177641,0.977586,0.265464,0.607458,0.272714,0.313389,0.709664,0.574489,0.183246,0.764319,0.887779,0.114896,0.500127,0.218704,0.0363587,0.409625,0.18678,0.0112037,0.0847936,0.545406,0.830684,0.387199,0.645213,0.818868,0.0839748,0.796661,0.487553,0.000696242,0.489888,0.28819,0.139203,0.277208,0.998455,0.788284,0.565553,0.262278,0.0788478,0.702916,0.203219,0.821046,0.101927,0.611746,0.122289,0.387144,0.313206,0.939573,0.955833,0.831675,0.111849,0.267602,0.642039,0.260409,0.822782,0.255772,0.628454,0.903162,0.998995,0.875908,0.856264,0.398335,0.0492758,0.114557,0.133275,0.0355251,0.183394,0.059625,0.793798,0.579623,0.904022,0.61561,0.682838,0.368468,0.468513,0.70679,0.0181933,0.51421,0.592314,0.789914,0.0345208,0.0765254,0.772177,0.889308,0.357174,0.122435,0.796381,0.475888,0.73739,0.324691,0.872755,0.808515,0.835038,0.765854,0.18323,0.67997,0.145573,0.953655,0.308194,0.0259262,0.235121,0.235593,0.949669,0.211772,0.171617,0.667078,0.41344,0.527546,0.037039,0.566369,0.0449979,0.864511,0.141145,0.6396,0.427195,0.740365,0.897296,0.892866,0.53286,0.857734,0.6401,0.433513,0.557329,0.675682,0.370609,0.303022,0.0289345,0.575374,0.572508,0.479013,0.88669,0.0463134,0.582041,0.670694,0.601061,0.0936424,0.503933,0.592828,0.623236,0.158308,0.607406,0.224687,0.00243694,0.713303,0.0260121,0.620015,0.906407,0.379436,0.523513,0.758403,0.493143,0.939773,0.173213,0.00618583,0.86759,0.14285,0.960093,0.476638,0.268368,0.262053,0.381104,0.0769676,0.811263,0.574002,0.215171,0.497007,0.250403,0.522538,0.324286,0.327161,0.434283,0.949123,0.658165,0.985013,0.246051,0.214261,0.772472,0.631534,0.235826,0.954159,0.803246,0.224564,0.642304,0.965662,0.00759524,0.089219,0.54866,0.992776,0.772106,0.812964,0.969801,0.311178,0.865542,0.0305462,0.923417,0.657405,0.477794,0.155103,0.825102,0.552308,0.582614,0.15952,0.760548,0.430331,0.901561,0.310522,0.532825,0.497277,0.0255848,0.969502,0.930641,0.733528,0.470655,0.874424,0.327766,0.773517,0.777911,0.602126,0.447929,0.510673,0.294113,0.226712,0.536636,0.155248,0.42657,0.419593,0.119685,0.472251,0.608918,0.362907,0.659788,0.883753,0.741273,0.946439,0.505496,0.151845,0.809568,0.739519,0.725945,0.299322,0.2528,0.128038,0.591642,0.444545,0.386434,0.205263,0.272957,0.528857,0.122868,0.834311,0.648316,0.873686,0.547241,0.611025,0.453426,0.696226,0.594619,0.0607814,0.72941,0.691197,0.690995,0.560478,0.0041253,0.769664,0.468349,0.66547,0.0500136,0.679965,0.806036,0.42059,0.482068,0.630332,0.572772,0.295464,0.0347452,0.208599,0.148784,0.0657449,0.75926,0.354543,0.00664538,0.312242,0.993326,0.235625,0.562372,0.825894,0.506564,0.24384,0.992479,0.0393972,0.221769,0.526407,0.905086,0.0120544,0.300786,0.483722,0.30071,0.152202,0.255212,0.220833,0.845295,0.338836,0.731748,0.0259563,0.556182,0.491086,0.377281,0.613926,0.477526,0.51706,0.240241,0.649272,0.725301,0.305249,0.523598,0.170977,0.686537,0.416078,0.451893,0.418016,0.67966,0.402874,0.777199,0.546285,0.140602,0.773054,0.737138,0.943283,0.577403,0.752727,0.167005,0.46793,0.775002,0.377854,0.306137,0.414411,0.177236,0.524134,0.62401,0.240566,0.502965,0.21209,0.181443,0.180124,0.125891,0.0349804,0.271121,0.741637,0.443279,0.632544,0.06169,0.458251,0.380017,0.122058,0.531043,0.297808,0.427016,0.690777,0.836908,0.180172,0.970176,0.844077,0.177063,0.621367,0.748067,0.508296,0.0480677,0.243798,0.493025,0.207383,0.0828394,0.349111,0.366046,0.972015,0.853973,0.741997,0.338442,0.375314,0.198354,0.472864,0.0561993,0.886584,0.136209,0.461376,0.029247,0.328534,0.373969,0.483555,0.505933,0.999982,0.45377,0.154745,0.179894,0.101169,|0.880884,0.223107,0.551896,0.943872,0.0269871,0.87466,0.402326,0.802523,0.379433,0.402174,0.0782064,0.403647,0.19002,0.580416,0.68334,0.934798,0.719509,0.510774,0.0877501,0.149568,0.702434,0.866727,0.964383,0.359545,0.947853,0.910253,0.9467,0.229503,0.447092,0.169916,0.939585,0.698104,0.21015,0.956,0.912175,0.246583,0.834096,0.667596,0.615873,0.233332,0.702455,0.125511,0.717956,0.740888,0.35935,0.115742,0.357386,0.840712,0.58794,0.18457,0.609765,0.433982,0.517643,0.720795,0.895753,0.8525,0.483863,0.38753,0.281404,0.570496,0.500009,0.97977,0.603608,0.788774,0.795117,0.334988,0.775475,0.820225,0.19238,0.22754,0.412803,0.226406,0.749213,0.182377,0.472763,0.870622,0.192734,0.726818,0.850786,0.679588,0.29054,0.26579,0.475482,0.40227,0.640473,0.950433,0.540821,0.116654,0.901815,0.579699,0.800952,0.385142,0.195931,0.460325,0.682778,0.523516,0.0283123,0.608554,0.0362198,0.944134,0.712294,0.687103,0.00641668,0.336639,0.819009,0.013886,0.560881,0.464577,0.411499,0.80684,0.595766,0.765336,0.127138,0.206572,0.661499,0.99412,0.185094,0.81177,0.636114,0.817602,0.91292,0.457308,0.124533,0.452998,0.503406,0.591395,0.619165,0.349445,0.66257,0.20978,0.411304,0.978575,0.178506,0.923787,0.569366,0.470597,0.604544,0.6714,0.123048,0.930798,0.101162,0.462942,0.84547,0.787874,0.28685,0.156226,0.650823,0.0174416,0.675929,0.844912,0.580665,0.217688,0.373701,0.477404,0.630081,0.372854,0.754538,0.0502392,0.962507,0.0084064,0.103424,0.510722,0.952907,0.88256,0.306965,0.308487,0.324404,0.583275,0.850584,0.984907,0.505084,0.555354,0.250029,0.337467,0.875056,0.0113899,0.161348,0.272651,0.767995,0.850845,0.840217,0.46317,0.410178,0.927491,0.214989,0.161882,0.564824,0.834512,0.0353159,0.684395,0.0810875,0.464951,0.963837,0.226632,0.606642,0.313979,0.568849,0.236772,0.286292,0.157215,0.0344911,0.416437,0.320423,0.970268,0.847242,0.479077,0.413322,0.319965,0.757453,0.583033,0.951873,0.201819,0.719746,0.0624051,0.41432,0.296069,0.330673,0.0711743,0.0925511,0.425479,0.288758,0.56706,0.308021,0.739452,0.523082,0.422004,0.0648692,0.346409,0.051425,0.452441,0.760812,0.902266,0.192166,0.402714,0.391772,0.967809,0.684383,0.939785,0.678997,0.897677,0.0771769,0.109446,0.707845,0.892039,0.270296,0.993812,0.601639,0.994972,0.583382,0.959198,0.0829335,0.701275,0.071876,0.836518,0.0565802,0.129702,0.871859,0.490586,0.131613,0.424296,0.26159,0.937318,0.500948,0.697177,0.312001,0.819324,0.323019,0.808064,0.904964,0.793097,0.0894696,0.239761,0.277482,0.24538,0.540699,0.225957,0.932668,0.934061,0.54823,0.535644,0.808296,0.795894,0.892699,0.0607149,0.993366,0.188093,0.503043,0.935129,0.99168,0.661589,0.608885,0.464332,0.346371,0.0842839,0.918746,0.0629141,0.243054,0.882483,0.0742161,0.272962,0.726586,0.814155,0.394987,0.341405,0.422532,0.581299,0.837912,0.515484,0.829986,0.146597,0.787495,0.598415,0.157292,0.746659,0.363676,0.0091548,0.426277,0.727073,0.426319,0.469823,0.468198,0.747264,0.22008,0.558991,0.770664,0.47235,0.526604,0.170847,0.681205,0.898247,0.911242,0.139145,0.362381,0.109752,0.44193,0.315553,0.759649,0.951916,0.140272,0.473406,0.501463,0.479263,0.899639,0.416846,0.611358,0.0290198,0.334989,0.462092,0.199468,0.955345,0.821327,0.750466,0.210036,0.0511278,0.782978,0.769485,0.833284,0.740444,0.5183,0.216688,0.967519,0.785185,0.394828,0.456841,0.324174,0.907255,0.536142,0.858166,0.534829,0.8562,0.855128,0.525728,0.418941,0.94143,0.477227,0.369734,0.702212,0.644189,0.859532,0.178044,0.828421,0.775248,0.721544,0.764025,0.0201938,0.26827,0.0932869,0.375438,0.365516,0.475731,0.12457,0.606739,0.106059,0.00570285,0.508979,0.54993,0.603525,0.84505,0.229536,0.828236,0.345878,0.871941,0.0491924,0.570179,0.479819,0.36732,0.165056,0.164081,0.368349,0.351414,0.697773,0.119963,0.382489,0.606323,0.411069,0.548023,0.575766,0.525218,0.0331154,0.314117,0.338379,0.562151,0.427033,0.611489,0.481547,0.101822,0.236823,0.46557,0.411171,0.693306,0.216072,0.743545,0.846926,0.503775,0.724555,0.0255253,0.657048,0.114046,0.454174,0.430477,0.830105,0.167141,0.941707,0.0203294,0.868428,0.828861,0.587293,0.363122,0.506036,0.419641,0.771147,0.789551,0.401325,0.292604,0.372259,0.416838,0.608037,0.448367,0.450453,0.810808,0.695565,0.116176,0.349427,0.0448195,0.722248,0.866256,0.19234,0.368143,0.732858,0.215595,0.430645,0.0670553,0.829043,0.709978,0.944807,0.789351,0.843934,0.051904,0.134278,0.593535,0.491532,0.833371,0.955888,0.421141,0.14001,0.100162,0.274588,0.459202,0.67445,0.460257,0.130715,0.473108,0.731655,0.740349,0.308894,0.214402,0.284382,0.0244848,0.160635,0.662202,0.627927,0.625323,0.40929,0.127472,0.21316,0.927998,0.255108,0.238206,0.647527,0.15364,0.139764,0.103864,0.291157,0.0188622,0.69588,0.407397,0.197993,0.340538,0.0449545,0.661559,0.0217028,0.874612,0.660502,0.746004,0.715816,0.510788,0.305131,0.1849,0.604395,0.569137,0.575229,0.271676,0.392611,0.767783,0.234691,0.0135797,0.253492,0.501471,0.0830485,0.558448,0.662481,0.80492,0.328013,0.0974054,0.495369,0.261978,0.756484,0.566771,0.655435,0.13585,0.595516,0.817866,0.671909,0.381904,0.10699,0.274786,0.196466,0.263843,0.0668543,0.106817,0.033514,0.183784,0.389839,0.455854,0.437166,0.274581,0.120322,0.0349259,0.48485,0.575146,0.952376,0.00563431,0.638357,0.321975,0.687323,0.258425,0.156264,0.91353,0.86843,0.279123,0.364416,0.621693,0.582831,0.347534,0.83968,0.115611,0.257944,0.295818,0.678568,0.916358,0.35094,0.483306,0.999177,0.0328298,0.266459,0.937607,0.896966,0.434236,0.545168,0.566296,0.87357,0.0833482,0.580923,0.757673,0.232917,0.969332,0.994927,0.767811,0.864474,0.29513,0.774706,0.763337,0.480807,0.121379,0.273662,0.730624,0.709096,0.0141073,0.984772,0.863834,0.236006,0.509258,0.990908,0.401992,0.0664337,0.0116589,0.908149,0.993209,0.136588,0.214057,0.40432,0.642383,0.0109989,0.994001,0.700859,0.25382,0.278326,0.782242,0.890328,0.815358,0.322761,0.00393343,0.143932,0.793129,0.483648,0.379708,0.147207,0.624128,0.262604,0.179412,0.32467,0.00815701,0.344262,0.764579,0.788414,0.445358,0.135872,0.244278,0.744481,0.278822,0.870717,0.733792,0.487531,0.290852,0.171096,0.60968,0.351588,0.138345,0.26385,0.296892,0.613745,0.995359,0.378983,0.148766,0.501252,0.172879,0.171922,0.253551,0.891648,0.766154,0.00644082,0.633174,0.0651553,0.509521,0.211043,0.547894,0.771578,0.292375,0.406857,0.208514,0.879582,0.443705,0.761304,0.565781,0.771526,0.537422,0.996217,0.0699528,0.491249,0.906335,0.207934,0.660054,0.430536,0.00625509,0.031265,0.263696,0.948067,0.664362,0.990232,0.614486,0.218838,0.466236,0.520887,0.851313,0.671807,0.866138,0.897316,0.309882,0.366247,0.450682,0.466141,0.499096,0.785236,0.966333,0.509159,0.364978,0.627106,0.369758,0.23534,0.364238,0.288463,0.931251,0.402593,0.821485,0.201276,0.436887,0.420147,0.412573,0.778248,0.0712253,0.378272,0.776226,0.771527,0.782508,0.00992656,0.342732,0.251476,0.21109,0.420148,0.177826,0.846656,0.407761,0.6928,0.184978,0.197833,0.254902,0.199572,0.880018,0.750548,0.166416,0.101342,0.293379,0.34531,0.184973,0.249909,0.175195,0.993223,0.892464,0.832127,0.343597,0.672965,0.712702,0.136983,0.99356,0.670063,0.419732,0.394666,0.363117,0.329548,0.686879,0.86051,0.209257,0.859144,0.0278162,0.541897,0.860951,0.97085,0.773772,0.0848238,0.047525,0.707125,0.510052,0.0203636,0.848815,0.141939,0.861694,0.521975,0.137018,0.985928,0.0208776,0.0213909,0.490841,0.116213,0.594231,0.776502,0.148324,0.950723,0.0112396,0.806071,0.724195,0.691837,0.441088,0.313771,0.554477,0.690073,0.346664,0.342298,0.922527,0.223167,0.0840941,0.612319,0.768468,0.812431,0.211243,0.137981,0.399775,0.847963,0.908768,0.0828288,0.947208,0.112328,0.855641,0.513779,0.37999,0.354583,0.244852,0.650227,0.202193,0.626603,0.535729,0.362477,0.749248,0.890232,0.0832601,0.451679,0.45567,0.414644,0.190732,0.270181,0.405003,0.685186,0.757378,0.085061,0.401579,0.536495,0.000779927,0.897772,0.766285,0.842245,0.96452,0.7102,0.196588,0.420112,0.534397,0.859408,0.299118,0.824321,0.78553,0.520905,0.434875,0.978211,0.464935,0.801438,0.579693,0.729438,0.339854,0.0388955,0.890686,0.813776,0.461819,0.35255,0.387913,0.592687,0.140664,0.492533,0.986293,0.60854,0.717884,0.563661,0.314425,0.834098,0.227281,0.442581,0.243578,0.332975,0.0126396,0.328562,0.725058,0.241371,0.890129,0.518489,0.922792,0.787898,0.00795865,0.412944,0.966816,0.818993,0.524302,0.651919,0.865183,0.586254,0.631594,0.78975,0.939444,0.696869,0.223564,0.994719,0.720199,0.0513883,0.69564,0.676569,0.171118,0.550632,0.837975,0.625296,0.421946,0.0816934,0.764116,0.784508,0.799817,0.988935,0.192132,0.272038,0.47282,0.837183,0.0500031,0.261324,0.385344,0.304394,0.465818,0.339808,0.993688,0.69812,0.460199,0.744817,0.172512,0.47734,0.960815,0.77942,0.846746,0.87143,0.699791,0.932789,0.0994727,0.434286,0.401363,0.356474,0.279564,0.948907,0.805031,0.111263,0.519914,0.361184,0.507458,0.598019,0.912544,0.00550926,0.493026,0.338648,0.201379,0.770943,0.318451,0.866977,0.504965,0.271959,0.228335,0.704504,0.586387,0.814211,0.9526,0.0463607,0.472165,0.878949,0.600998,0.672435,0.847105,0.580219,0.510244,0.906731,0.152875,0.0642984,0.736841,0.0798233,0.341546,0.277841,0.0423909,0.697227,0.406399,0.277234,0.945553,|0.172082,0.0480747,0.662353,0.296716,0.329659,0.464067,0.797969,0.4195,0.465103,0.277978,0.785283,0.480631,0.434803,0.525506,0.588906,0.74719,0.369991,0.414706,0.243411,0.498168,0.738825,0.207836,0.754739,0.210799,0.920965,0.57752,0.906493,0.685093,0.0594306,0.0870098,0.873912,0.7693,0.0663339,0.746611,0.605339,0.229061,0.73235,0.0471957,0.164444,0.75752,0.781416,0.236197,0.710404,0.823872,0.531151,0.423852,0.31829,0.401138,0.225159,0.260623,0.79683,0.769143,0.13909,0.0667521,0.885639,0.123435,0.152436,0.678899,0.370173,0.55988,0.951631,0.267603,0.896436,0.489161,0.358985,0.517703,0.177126,0.587242,0.892413,0.576378,0.929329,0.748754,0.871408,0.684148,0.0447544,0.744399,0.132554,0.874019,0.500167,0.231104,0.0963188,0.345388,0.463522,0.0964975,0.715108,0.153035,0.612295,0.127831,0.87009,0.362451,0.636943,0.364727,0.911473,0.250851,0.664123,0.289504,0.26768,0.303566,0.302587,0.69771,0.621364,0.45871,0.768567,0.575827,0.443985,0.893687,0.0899505,0.807396,0.0481643,0.37112,0.285968,0.622295,0.256097,0.353708,0.323399,0.816639,0.650729,0.706096,0.493267,0.424541,0.29984,0.782782,0.794347,0.557558,0.108871,0.179974,0.342267,0.435162,0.2586,0.747525,0.576744,0.31673,0.744415,0.822023,0.606945,0.480957,0.744633,0.699982,0.724295,0.0689057,0.273542,0.312274,0.26729,0.715926,0.839027,0.178436,0.734748,0.997604,0.410561,0.670281,0.527586,0.540475,0.553897,0.788901,0.367461,0.575967,0.708243,0.198574,0.327518,0.644668,0.968775,0.960047,0.149642,0.949241,0.967424,0.686748,0.884069,0.129265,0.481482,0.358561,0.673389,0.869991,0.445819,0.0645722,0.476247,0.383264,0.856375,0.300447,0.444495,0.702901,0.530191,0.0595042,0.422949,0.979875,0.730831,0.523335,0.844182,0.586097,0.763263,0.174096,0.25534,0.505596,0.711402,0.770582,0.725271,0.861192,0.202526,0.712997,0.631796,0.529597,0.720016,0.852642,0.74627,0.78539,0.836792,0.858452,0.584121,0.0431002,0.716249,0.935527,0.837132,0.858495,0.496019,0.271447,0.323058,0.242209,0.213401,0.537363,0.990161,0.264304,0.552118,0.902052,0.540786,0.257225,0.0620552,0.580482,0.812192,0.734187,0.384244,0.163976,0.437558,0.164976,0.865356,0.575058,0.376642,0.645999,0.0943245,0.273335,0.972986,0.445632,0.444227,0.109358,0.917363,0.626171,0.0515998,0.301068,0.459104,0.209509,0.517922,0.350659,0.941179,0.951623,0.0303839,0.0483166,0.636649,0.839102,0.468851,0.0688185,0.415668,0.0986824,0.338122,0.0611993,0.72703,0.750089,0.46595,0.197109,0.136635,0.211691,0.932221,0.544942,0.434598,0.287488,0.855127,0.906548,0.396603,0.151318,0.208709,0.343088,0.357402,0.836082,0.660984,0.510599,0.59589,0.453465,0.864444,0.56928,0.0440931,0.928488,0.98641,0.459186,0.412705,0.216617,0.896942,0.629094,0.425021,0.682739,0.26608,0.338381,0.111652,0.970291,0.881403,0.393928,0.180656,0.0334356,0.768353,0.556914,0.258153,0.451388,0.552426,0.287941,0.521339,0.2825,0.321026,0.0935969,0.148421,0.241651,0.0874692,0.617684,0.78611,0.427237,0.572291,0.668048,0.253108,0.502495,0.0864232,0.568284,0.0452347,0.866223,0.358503,0.70331,0.362912,0.91564,0.263819,0.508647,0.316974,0.118981,0.476254,0.422518,0.278723,0.272759,0.301035,0.481861,0.0822474,0.834745,0.200688,0.411988,0.779059,0.890876,0.124449,0.461387,0.722151,0.338994,0.683746,0.288044,0.401419,0.223598,0.981194,0.961207,0.619281,0.509346,0.385315,0.335332,0.404857,0.157737,0.08476,0.911558,0.410152,0.570108,0.845341,0.598952,0.993141,0.00592256,0.58387,0.581253,0.533834,0.58423,0.900244,0.046906,0.32205,0.421687,0.664092,0.452111,0.687008,0.888142,0.892993,0.903167,0.988404,0.36824,0.437428,0.939604,0.752396,0.730638,0.687083,0.355484,0.209001,0.0470439,0.174649,0.833672,0.849549,0.057383,0.513543,0.0774966,0.504371,0.124922,0.674066,0.310553,0.609686,0.891447,0.609659,0.994978,0.555828,0.950018,0.891255,0.992552,0.827733,0.808043,0.260449,0.169863,0.0860988,0.345194,0.909924,0.212332,0.440801,0.854483,0.245624,0.662566,0.953765,0.639778,0.818541,0.943583,0.716291,0.779058,0.212621,0.0119759,0.875131,0.229281,0.00838715,0.640749,0.930828,0.946719,0.442855,0.038103,0.37505,0.855422,0.242531,0.770907,0.726907,0.0649605,0.719447,0.886142,0.380322,0.965295,0.397045,0.771318,0.529298,0.931748,0.427592,0.394885,0.877309,0.527338,0.347615,0.0416622,0.103405,0.568605,0.666641,0.350797,0.609252,0.109703,0.93044,0.318001,0.918827,0.0557143,0.204403,0.622306,0.728687,0.367822,0.348434,0.0286141,0.827057,0.907261,0.105181,0.979185,0.130438,0.896768,0.435959,0.630963,0.783926,0.769866,0.76836,0.807644,0.970054,0.706513,0.0822774,0.254016,0.0162988,0.354875,0.762914,0.396991,0.775646,0.656126,0.416606,0.901346,0.774876,0.775121,0.667953,0.7038,0.940546,0.868083,0.521507,0.514265,0.230045,0.343978,0.602992,0.975712,0.0936233,0.912469,0.404325,0.864962,0.743477,0.892138,0.139288,0.0635508,0.564477,0.172886,0.264071,0.844549,0.319952,0.644923,0.0698692,0.951323,0.696338,0.411008,0.212618,0.0198768,0.733056,0.127084,0.450327,0.0453168,0.126325,0.790264,0.922131,0.869612,0.587882,0.560161,0.739995,0.6509,0.66373,0.419589,0.759483,0.751556,0.585133,0.0478195,0.890817,0.321409,0.666956,0.206166,0.914522,0.566997,0.160894,0.420139,0.578501,0.796548,0.163175,0.206266,0.824146,0.496738,0.687451,0.158987,0.904003,0.869215,0.405805,0.318436,0.228591,0.479338,0.578186,0.05678,0.734088,0.594641,0.780695,0.316752,0.520293,0.349787,0.239227,0.718203,0.418545,0.108226,0.162429,0.177639,0.896525,0.988546,0.445584,0.508208,0.902644,0.0892931,0.382856,0.697516,0.704519,0.524763,0.059206,0.91709,0.924537,0.671929,0.0289064,0.4845,0.842993,0.282818,0.594079,0.129347,0.940065,0.993784,0.393427,0.0911376,0.587436,0.463722,0.572548,0.0294219,0.2826,0.982388,0.783196,0.589591,0.221818,0.994321,0.796594,0.643182,0.305011,0.408671,0.513599,0.052075,0.738588,0.0737817,0.82631,0.864992,0.434701,0.0403527,0.800081,0.904301,0.167946,0.0926448,0.416455,0.959066,0.237306,0.227628,0.276563,0.40919,0.68629,0.129832,0.979162,0.554894,0.746504,0.545042,0.63384,0.448064,0.48916,0.405828,0.489158,0.659208,0.0943364,0.688588,0.671708,0.202341,0.944068,0.9253,0.000287175,0.818506,0.437984,0.938545,0.100121,0.910485,0.0055877,0.143419,0.76994,0.371551,0.544266,0.534098,0.964028,0.558849,0.169803,0.765201,0.616926,0.270926,0.197051,0.499916,0.512059,0.687579,0.267424,0.779327,0.492235,0.0762773,0.0783952,0.209077,0.200546,0.786846,0.163164,0.612404,0.433296,0.226489,0.215871,0.428534,0.540604,0.251143,0.559398,0.287533,0.712292,0.790372,0.519334,0.990618,0.183368,0.136426,0.990426,0.289161,0.584081,0.222175,0.754353,0.207925,0.891157,0.78847,0.810246,0.0744612,0.0285453,0.648968,0.864721,0.921621,0.975799,0.353924,0.40209,0.644228,0.0458105,0.233032,0.266999,0.232624,0.953253,0.224675,0.350984,0.764581,0.428402,0.0545639,0.57781,0.290898,0.877151,0.334018,0.829451,0.998911,0.751345,0.873199,0.179948,0.332442,0.205056,0.325419,0.53379,0.00945795,0.623524,0.838346,0.165946,0.458353,0.779982,0.10348,0.604752,0.367907,0.628108,0.366673,0.363232,0.792841,0.781268,0.237974,0.865839,0.189038,0.0786705,0.128539,0.871748,0.297605,0.615837,0.491582,0.831095,0.674631,0.991911,0.650634,0.953803,0.863251,0.741152,0.455287,0.932018,0.925219,0.528666,0.056567,0.812072,0.127909,0.234995,0.052877,0.255153,0.846631,0.65176,0.348651,0.218301,0.723014,0.252432,0.232871,0.942098,0.933049,0.896114,0.0736813,0.477805,0.884724,0.632272,0.105052,0.688766,0.927156,0.54754,0.986463,0.512028,0.0614675,0.295208,0.569568,0.774284,0.105485,0.916098,0.582997,0.544706,0.666117,0.0414511,0.136282,0.738709,0.0290186,0.00279129,0.708503,0.978764,0.746368,0.760341,0.948548,0.429179,0.308872,0.182015,0.844862,0.00269359,0.622354,0.749862,0.807907,0.433405,0.670374,0.607145,0.296457,0.986819,0.126763,0.121985,0.0490176,0.0958817,0.969765,0.0809224,0.925373,0.261027,0.335953,0.532622,0.026028,0.372628,0.468232,0.495089,0.350299,0.9592,0.0969446,0.0555784,0.995666,0.418378,0.196043,0.574801,0.333811,0.56654,0.424375,0.420709,0.900532,0.128593,0.470898,0.242211,0.985868,0.132218,0.246632,0.836227,0.109771,0.118331,0.133878,0.325487,0.588976,0.713877,0.276228,0.989347,0.662467,0.56388,0.677794,0.443821,0.503051,0.899699,0.423177,0.902224,0.687099,0.720905,0.68023,0.390882,0.190264,0.220098,0.301309,0.568593,0.506457,0.804477,0.0368525,0.234864,0.937752,0.917555,0.00456941,0.549503,0.176457,0.446018,0.248958,0.333637,0.567898,0.894838,0.749325,0.789826,0.299564,0.977256,0.00542706,0.299467,0.533299,0.156807,0.663739,0.374658,0.382489,0.46912,0.882988,0.105583,0.268657,0.530599,0.494373,0.0809627,0.23241,0.667017,0.39263,0.546286,0.734852,0.0713214,0.552303,0.196836,0.856864,0.910179,0.866406,0.556719,0.489249,0.455446,0.948675,0.483239,0.906625,0.944136,0.00594562,0.588337,0.869289,0.752352,0.942866,0.965873,0.640679,0.245242,0.245276,0.157517,0.116127,0.332278,0.424286,0.563113,0.956443,0.162488,0.712934,0.97999,0.612357,0.483829,0.526046,0.615235,0.135197,0.846147,0.892854,0.578346,0.270147,0.577869,0.0737816,0.089726,0.34614,0.255604,0.124414,0.0561126,0.345384,0.0907813,0.735737,0.186186,0.907644,0.264134,0.409231,0.656441,0.368397,0.224541,0.547977,0.0802882,0.788779,0.596344,0.311061,0.0260997,0.923047,|0.552698,0.115439,0.449442,0.122283,0.731201,0.175182,0.117772,0.322,0.586608,0.0928539,0.55297,0.937769,0.188136,0.416472,0.568774,0.233606,0.191583,0.12817,0.36802,0.53162,0.505053,0.169001,0.962195,0.237979,0.735472,0.155346,0.366631,0.717411,0.53834,0.39082,0.306986,0.95734,0.87714,0.736217,0.860518,0.828344,0.467914,0.225938,0.537277,0.850658,0.132006,0.186125,0.639554,0.448872,0.47172,0.89136,0.97139,0.481963,0.705717,0.0655369,0.969359,0.40001,0.733471,0.303251,0.610614,0.297581,0.0943602,0.474382,0.315372,0.295679,0.672953,0.871389,0.630605,0.735808,0.902956,0.336779,0.71578,0.21042,0.487659,0.228372,0.946664,0.640626,0.66913,0.465191,0.197775,0.833898,0.222683,0.894483,0.791002,0.957673,0.346374,0.33755,0.912337,0.775274,0.528088,0.329476,0.435979,0.0136273,0.43299,0.667998,0.071977,0.32066,0.781652,0.114498,0.88198,0.749279,0.102665,0.139209,0.484836,0.751878,0.234443,0.372938,0.0194891,0.389199,0.988046,0.597332,0.548448,0.631652,0.234188,0.0173721,0.0056932,0.128188,0.872731,0.111198,0.305672,0.0536352,0.235195,0.298869,0.0997197,0.911719,0.539719,0.966972,0.110564,0.195477,0.677811,0.523964,0.554212,0.720111,0.430186,0.806247,0.325461,0.542452,0.288174,0.939728,0.870924,0.0987276,0.53886,0.741347,0.410873,0.200029,0.295555,0.58973,0.838406,0.711157,0.375992,0.104895,0.189312,0.836443,0.74395,0.74728,0.851125,0.988842,0.917022,0.334522,0.0941212,0.0530803,0.949568,0.724086,0.97882,0.866382,0.128431,0.731445,0.51047,0.216073,0.177626,0.587485,0.447302,0.123454,0.351443,0.197326,0.344329,0.175969,0.0276406,0.693203,0.49891,0.3054,0.38483,0.470679,0.29274,0.695977,0.987677,0.343621,0.847462,0.660913,0.798739,0.394453,0.86767,0.992023,0.342303,0.630434,0.0536996,0.130931,0.67567,0.867503,0.895947,0.0151492,0.160122,0.170558,0.114626,0.142879,0.558801,0.959945,0.693615,0.654415,0.165802,0.701639,0.445874,0.523865,0.150516,0.686332,0.716446,0.670306,0.790253,0.786575,0.656082,0.701946,0.764085,0.760068,0.578877,0.0812891,0.418137,0.831904,0.3739,0.540082,0.0733704,0.77315,0.986202,0.908158,0.939173,0.323217,0.260326,0.619175,0.756184,0.809989,0.984312,0.390845,0.841206,0.264642,0.704944,0.2352,0.754198,0.88185,0.136141,0.747781,0.25979,0.583614,0.954003,0.791939,0.853406,0.576211,0.844156,0.535008,0.715214,0.981043,0.821301,0.721162,0.677979,0.85103,0.364158,0.0804174,0.786022,0.94521,0.122238,0.826329,0.036941,0.444601,0.533574,0.222796,0.876952,0.944746,0.951602,0.110533,0.693438,0.295695,0.810096,0.272096,0.716027,0.844975,0.0780756,0.932339,0.0991797,0.385989,0.606613,0.218085,0.639343,0.623422,0.825077,0.877626,0.0571945,0.901657,0.148856,0.690163,0.45305,0.475768,0.858331,0.973918,0.828634,0.910347,0.982782,0.0631604,0.659327,0.51756,0.673711,0.49522,0.593545,0.975002,0.554545,0.848679,0.93718,0.465867,0.755211,0.540247,0.276841,0.146079,0.437439,0.611061,0.683877,0.828912,0.0898463,0.182826,0.584589,0.233785,0.0624142,0.946632,0.508774,0.0586435,0.821897,0.816794,0.554982,0.0548765,0.959033,0.893237,0.757515,0.963822,0.1871,0.625281,0.854468,0.99859,0.650527,0.569001,0.240905,0.980892,0.100707,0.287918,0.800918,0.629478,0.713975,0.766792,0.512784,0.296482,0.0125634,0.269194,0.615831,0.626133,0.859716,0.409178,0.588401,0.389639,0.527962,0.783636,0.852569,0.0907789,0.111942,0.281825,0.237815,0.0403482,0.784973,0.1538,0.798424,0.351189,0.431178,0.947546,0.955017,0.307739,0.956409,0.633544,0.506511,0.78454,0.107169,0.964433,0.0625576,0.409792,0.780437,0.247335,0.966919,0.473188,0.191521,0.0802918,0.902046,0.0258079,0.162124,0.135908,0.288023,0.0013957,0.507867,0.10842,0.940338,0.311961,0.815664,0.364375,0.601182,0.620107,0.0283746,0.99541,0.872013,0.533466,0.567505,0.148873,0.958353,0.953371,0.268025,0.411718,0.799661,0.767115,0.572108,0.774083,0.841383,0.512056,0.989915,0.423043,0.378403,0.0477755,0.496217,0.142,0.514304,0.604403,0.9294,0.542806,0.485372,0.083607,0.0666222,0.610263,0.117954,0.96778,0.880548,0.529063,0.333829,0.390322,0.51666,0.79615,0.0959421,0.0427718,0.682929,0.0520619,0.626421,0.407741,0.236315,0.310311,0.426641,0.742564,0.888148,0.298609,0.412486,0.0101575,0.340088,0.779167,0.235084,0.071655,0.681066,0.094085,0.278854,0.296993,0.412721,0.90803,0.568645,0.872783,0.92167,0.27209,0.802339,0.288361,0.56844,0.874357,0.978229,0.72847,0.250033,0.571072,0.116971,0.603646,0.783303,0.362434,0.926293,0.155405,0.0417832,0.645309,0.632529,0.520453,0.881551,0.658002,0.714281,0.105613,0.443749,0.58257,0.665787,0.872088,0.848479,0.567358,0.40258,0.864988,0.166883,0.353791,0.634743,0.942525,0.906344,0.259534,0.230148,0.237353,0.174853,0.681667,0.922253,0.342042,0.540944,0.674112,0.269731,0.48919,0.732716,0.0343882,0.452334,0.610024,0.753603,0.174583,0.147649,0.0728144,0.775719,0.456831,0.823736,0.982859,0.108411,0.245671,0.36805,0.817862,0.186454,0.983791,0.470425,0.614344,0.849577,0.682054,0.172756,0.256925,0.801591,0.892139,0.64237,0.32425,0.297164,0.630313,0.749122,0.141347,0.379916,0.524171,0.0370556,0.359185,0.847454,0.414789,0.249147,0.0114242,0.355425,0.0196584,0.520021,0.854323,0.642078,0.253553,0.671495,0.53954,0.659775,0.640873,0.689762,0.596974,0.566367,0.869459,0.739109,0.429914,0.0946864,0.204706,0.0597732,0.801753,0.286022,0.0459217,0.452819,0.662136,0.159276,0.107863,0.253433,0.371957,0.170856,0.196509,0.499124,0.708931,0.551176,0.191711,0.148547,0.940231,0.194848,0.474533,0.418936,0.342964,0.846417,0.823271,0.59524,0.925823,0.403921,0.479453,0.470216,0.0414696,0.847404,0.813235,0.693529,0.274319,0.0770764,0.175818,0.344206,0.899819,0.533538,0.66726,0.737724,0.56441,0.218856,0.638927,0.996987,0.950417,0.185059,0.158398,0.837328,0.614792,0.0408665,0.132465,0.683253,0.480263,0.527003,0.78026,0.0262037,0.936256,0.370725,0.468275,0.456867,0.66356,0.983763,0.706989,0.273563,0.601968,0.00221908,0.577811,0.736767,0.171812,0.328911,0.366175,0.375184,0.613682,0.29308,0.651771,0.657911,0.11567,0.723394,0.514534,0.776006,0.168699,0.416459,0.701426,0.492509,0.361716,0.984267,0.763629,0.265772,0.0279623,0.926629,0.700786,0.512981,0.361387,0.973477,0.537994,0.958205,0.330775,0.497201,0.200775,0.665693,0.560288,0.845023,0.338626,0.752446,0.869766,0.586919,0.306319,0.0422215,0.364141,0.0943298,0.335076,0.134064,0.760803,0.171447,0.995267,0.740337,0.0165953,0.0660163,0.380476,0.367673,0.409199,0.537989,0.0499458,0.199153,0.233873,0.653617,0.118143,0.432048,0.961751,0.670785,0.537729,0.242794,0.605854,0.423949,0.490281,0.989211,0.0652295,0.617335,0.317471,0.96607,0.43267,0.12812,0.173538,0.745447,0.901566,0.720631,0.830589,0.146315,0.869078,0.174234,0.00704116,0.988918,0.155038,0.943589,0.257093,0.363142,0.581062,0.745112,0.450193,0.319912,0.144451,0.852657,0.00983071,0.800472,0.00552976,0.841874,0.0420222,0.288917,0.500108,0.0669595,0.00591099,0.973465,0.799043,0.695894,0.492617,0.25446,0.414041,0.505774,0.935873,0.206815,0.395571,0.194339,0.392622,0.232602,0.486021,0.973066,0.81788,0.763408,0.446622,0.35293,0.157459,0.354644,0.876886,0.0464448,0.308601,0.0389157,0.379234,0.710787,0.112114,0.66187,0.245381,0.228872,0.108468,0.795206,0.975218,0.591864,0.151341,0.498517,0.543234,0.92763,0.754862,0.349437,0.396057,0.730092,0.836551,0.257427,0.744626,0.795985,0.665365,0.882088,0.374863,0.48058,0.181065,0.501283,0.0726503,0.229099,0.148521,0.48459,0.644848,0.288573,0.576258,0.528707,0.578439,0.415396,0.926061,0.561319,0.372702,0.289343,0.320967,0.69124,0.88936,0.293089,0.597569,0.885698,0.988756,0.049235,0.0953626,0.507716,0.438103,0.870731,0.12815,0.186894,0.288134,0.629821,0.662174,0.291062,0.150488,0.532941,0.75543,0.312298,0.63792,0.76681,0.537595,0.0569198,0.768877,0.43566,0.510005,0.346638,0.23775,0.686445,0.098748,0.933865,0.794968,0.0851837,0.12698,0.284341,0.620108,0.496931,0.11353,0.800978,0.050508,0.387217,0.12648,0.15816,0.17527,0.320313,0.20658,0.373097,0.112704,0.807967,0.958135,0.0719923,0.577966,0.594179,0.303287,0.968627,0.456772,0.313289,0.117364,0.890459,0.221282,0.480012,0.729652,0.524455,0.278413,0.179392,0.643367,0.93241,0.0822178,0.530582,0.920312,0.526526,0.376571,0.713012,0.811566,0.749339,0.401116,0.281816,0.335826,0.297309,0.298761,0.893152,0.874369,0.194969,0.0460292,0.149886,0.328573,0.115226,0.684603,0.0907197,0.0988072,0.981031,0.142548,0.853946,0.145504,0.271815,0.163045,0.476955,0.796892,0.9074,0.0103979,0.738194,0.136627,0.0705338,0.291084,0.459516,0.0109688,0.514563,0.742441,0.593818,0.844132,0.308855,0.747895,0.988077,0.419888,0.558619,0.412974,0.210394,0.165265,0.964452,0.157705,0.887161,0.65171,0.673455,0.883776,0.563766,0.343922,0.281092,0.468953,0.623614,0.233795,0.952006,0.750407,0.523019,0.170929,0.461766,0.0682697,0.659447,0.975667,0.604539,0.0161723,0.962635,0.275273,0.0332943,0.267614,0.994207,0.884337,0.812518,0.695315,0.457104,0.224884,0.482485,0.00272506,0.232025,0.347416,0.432803,0.337298,0.727472,0.104457,0.112375,0.258776,0.647448,0.0899376,0.553555,0.0857717,0.710258,0.97021,0.00931048,0.491068,0.721374,0.419048,0.768815,0.407181,0.991019,0.365992,0.877226,0.770878,0.386215,0.170405,0.703612,0.666363,0.273875,0.982691,0.0586541,0.572068,0.133932,0.898385,|0.806471,0.948235,0.718756,0.221988,0.230535,0.66637,0.795624,0.889898,0.546522,0.334796,0.16828,0.821593,0.955084,0.57953,0.659295,0.48107,0.526153,0.107673,0.382188,0.1654,0.910124,0.246442,0.834103,0.890161,0.844852,0.315483,0.829203,0.412526,0.252291,0.856346,0.242554,0.317247,0.112545,0.549171,0.10314,0.919435,0.0101577,0.860859,0.956218,0.845735,0.127967,0.225693,0.94436,0.979234,0.582558,0.370337,0.975285,0.887264,0.737519,0.643797,0.162324,0.279785,0.129732,0.84389,0.75655,0.259526,0.128504,0.845143,0.467321,0.170634,0.917566,0.00860065,0.809347,0.06709,0.428353,0.335886,0.721959,0.810052,0.865268,0.36083,0.0845027,0.192145,0.479425,0.532503,0.684025,0.0711017,0.0401347,0.86317,0.677949,0.0389113,0.250728,0.788216,0.53406,0.26646,0.0355042,0.280117,0.54769,0.39818,0.223127,0.563271,0.0343316,0.226934,0.351043,0.935361,0.857145,0.885449,0.045366,0.77975,0.897024,0.665258,0.934236,0.0766652,0.355753,0.690691,0.858216,0.341932,0.0888527,0.695449,0.417599,0.427853,0.84323,0.499237,0.0010612,0.204529,0.524505,0.342962,0.701207,0.817728,0.734543,0.111545,0.0580454,0.0703679,0.36779,0.812403,0.586796,0.723945,0.724198,0.14699,0.659419,0.7275,0.625364,0.911235,0.286474,0.287587,0.866615,0.839891,0.941754,0.231,0.771267,0.691756,0.768647,0.639782,0.227123,0.231366,0.0144781,0.378873,0.494069,0.359717,0.268054,0.806592,0.813092,0.791252,0.0186037,0.439676,0.748913,0.842596,0.406355,0.939799,0.289746,0.73996,0.927307,0.331519,0.680109,0.918019,0.754324,0.346055,0.682751,0.0080992,0.569085,0.759403,0.424295,0.166644,0.279005,0.0190274,0.841547,0.650036,0.284625,0.556755,0.967938,0.302198,0.253088,0.382527,0.90221,0.656017,0.322413,0.508343,0.68449,0.161438,0.497359,0.616723,0.464932,0.0919113,0.921551,0.79656,0.887918,0.520719,0.907662,0.900967,0.95802,0.968324,0.14274,0.319781,0.666786,0.522655,0.87569,0.884801,0.030398,0.465496,0.578009,0.193652,0.912272,0.231932,0.606047,0.488645,0.96189,0.0578874,0.602062,0.387861,0.622568,0.415511,0.979007,0.658555,0.430589,0.428568,0.745307,0.733894,0.611491,0.343575,0.315757,0.789132,0.191406,0.592302,0.841982,0.80658,0.579295,0.571818,0.147447,0.79368,0.68449,0.42455,0.589892,0.30943,0.25542,0.0684676,0.990344,0.738634,0.362889,0.406663,0.775269,0.162339,0.311963,0.679233,0.218762,0.242426,0.320704,0.51577,0.81702,0.01699,0.00748289,0.600782,0.294993,0.447914,0.724637,0.0499749,0.976269,0.628398,0.242173,0.017849,0.224211,0.817267,0.0833756,0.474663,0.71981,0.730928,0.899919,0.472869,0.837654,0.4026,0.859679,0.588824,0.668637,0.316443,0.0818028,0.588044,0.0461609,0.702381,0.340614,0.831916,0.871665,0.842662,0.690054,0.273133,0.4114,0.582432,0.443399,0.657153,0.28358,0.701686,0.656142,0.928131,0.600863,0.992416,0.774601,0.649827,0.641926,0.842462,0.568782,0.77606,0.667358,0.444809,0.966149,0.557133,0.395888,0.891287,0.59756,0.931301,0.800363,0.337376,0.942455,0.55255,0.958859,0.934353,0.108839,0.400443,0.962907,0.0853925,0.811788,0.0111308,0.534741,0.204562,0.114448,0.0620487,0.2313,0.121409,0.92091,0.116789,0.969851,0.385874,0.336017,0.899191,0.307529,0.286359,0.917912,0.280791,0.65644,0.395316,0.484559,0.210036,0.0573123,0.389839,0.423811,0.500983,0.246895,0.56322,0.56145,0.0638963,0.534297,0.443825,0.0985596,0.849166,0.633507,0.0404215,0.448982,0.0315323,0.404834,0.0187365,0.982196,0.585403,0.297757,0.98197,0.242265,0.636825,0.862496,0.779686,0.97901,0.815394,0.975951,0.385778,0.382258,0.654092,0.155872,0.945963,0.258595,0.838752,0.679452,0.660538,0.801993,0.437933,0.631704,0.218237,0.118932,0.78098,0.74014,0.76128,0.220155,0.24124,0.91099,0.655298,0.0173417,0.827661,0.738897,0.0269321,0.614877,0.00601262,0.778756,0.371161,0.995511,0.367813,0.352495,0.646579,0.261157,0.847813,0.629973,0.435796,0.389143,0.142255,0.521642,0.56568,0.523893,0.115275,0.981739,0.554822,0.691832,0.851428,0.0957795,0.737995,0.182966,0.109904,0.149865,0.162406,0.0759759,0.136989,0.230763,0.103972,0.568212,0.15931,0.00115371,0.0855709,0.709867,0.586128,0.680634,0.974132,0.0986425,0.319518,0.948381,0.320017,0.121553,0.187059,0.897199,0.299871,0.25618,0.45488,0.658745,0.105404,0.149942,0.782674,0.772853,0.813503,0.747875,0.330586,0.0215624,0.290124,0.0192715,0.942696,0.340418,0.830057,0.2186,0.295746,0.471306,0.916972,0.412021,0.125941,0.182661,0.650651,0.60768,0.0340161,0.690355,0.980152,0.638694,0.446598,0.328478,0.0197067,0.50672,0.558042,0.298437,0.934895,0.257294,0.0632446,0.567339,0.0870316,0.62083,0.402124,0.0387961,0.224122,0.876535,0.690836,0.0553538,0.51827,0.304151,0.99309,0.575334,0.398352,0.379079,0.559283,0.141718,0.0105254,0.20923,0.318474,0.420374,0.631477,0.856922,0.633446,0.132261,0.805189,0.658847,0.00864756,0.890183,0.0402169,0.752062,0.391213,0.0599473,0.462233,0.944138,0.426039,0.127827,0.296122,0.832675,0.95612,0.015815,0.932833,0.993267,0.74993,0.0477735,0.310428,0.710546,0.0719295,0.845082,0.0926049,0.153134,0.164093,0.543249,0.90583,0.376903,0.898431,0.359665,0.813856,0.783466,0.306027,0.525411,0.720268,0.242807,0.995947,0.670815,0.451877,0.318956,0.763083,0.105185,0.357934,0.781566,0.499323,0.259362,0.581942,0.273258,0.970191,0.621172,0.753477,0.676178,0.554267,0.89999,0.975489,0.0594909,0.27606,0.802182,0.422018,0.503815,0.183442,0.395923,0.966777,0.495911,0.425656,0.556075,0.0861422,0.602031,0.677859,0.386688,0.23692,0.511699,0.481886,0.210068,0.417793,0.347394,0.204615,0.219045,0.694378,0.655438,0.747199,0.613013,0.169648,0.51734,0.127511,0.0848191,0.23117,0.746394,0.7458,0.994787,0.553192,0.690153,0.0457468,0.484232,0.420015,0.295131,0.824751,0.824728,0.715722,0.740708,0.564133,0.0738401,0.558831,0.183125,0.282558,0.927643,0.142735,0.105427,0.317899,0.845733,0.00956923,0.48248,0.918642,0.26828,0.995986,0.249717,0.152807,0.952056,0.29051,0.574519,0.253137,0.377209,0.98216,0.56506,0.663441,0.883244,0.514974,0.601809,0.811461,0.427786,0.818585,0.345763,0.814931,0.41481,0.200661,0.692108,0.964401,0.355918,0.47622,0.869774,0.412471,0.271453,0.0681671,0.495919,0.422317,0.586033,0.441479,0.535171,0.375835,0.0539219,0.465757,0.791195,0.302792,0.195495,0.461341,0.631014,0.155741,0.278208,0.694726,0.204522,0.309582,0.895,0.469739,0.159038,0.88438,0.748111,0.713457,0.141445,0.956323,0.623467,0.252097,0.07739,0.549892,0.165203,0.43119,0.0243992,0.983985,0.206341,0.623458,0.76638,0.156584,0.133942,0.942608,0.172013,0.97984,0.111251,0.806984,0.567551,0.158536,0.986873,0.450848,0.630233,0.0869023,0.293565,0.981266,0.287573,0.173662,0.159136,0.123008,0.960941,0.232373,0.53446,0.0167769,0.796177,0.0326103,0.542315,0.855974,0.795942,0.984013,0.505846,0.0289798,0.157942,0.216664,0.170553,0.873724,0.281955,0.308681,0.106939,0.334048,0.344689,0.448488,0.286159,0.944509,0.81822,0.729018,0.242644,0.033406,0.129759,0.191188,0.874564,0.384543,0.40767,0.511193,0.669646,0.204067,0.013592,0.594538,0.62344,0.107037,0.3071,0.0439209,0.811694,0.260859,0.0959455,0.628221,0.169369,0.696242,0.416733,0.602498,0.170239,0.61143,0.469219,0.781185,0.518025,0.0165082,0.729705,0.364531,0.806741,0.61818,0.510678,0.837638,0.113656,0.784857,0.660382,0.41139,0.495062,0.482946,0.563519,0.845989,0.40754,0.0570026,0.461281,0.984833,0.674643,0.836083,0.513225,0.252732,0.980068,0.749757,0.0149767,0.989043,0.0711346,0.219953,0.873557,0.126508,0.359321,0.72655,0.889703,0.993738,0.8201,0.688211,0.480208,0.459274,0.340438,0.729261,0.509952,0.912865,0.343196,0.919999,0.505253,0.76735,0.648823,0.584421,0.542901,0.36137,0.799802,0.16973,0.632865,0.242099,0.375202,0.294658,0.677315,0.401572,0.312361,0.42574,0.844874,0.287968,0.373113,0.262269,0.434084,0.420386,0.392169,0.512562,0.331155,0.746801,0.625651,0.174683,0.576139,0.610793,0.712064,0.482748,0.155367,0.113997,0.884849,0.611768,0.967422,0.672844,0.651176,0.887475,0.0991696,0.0254048,0.0719371,0.972756,0.747105,0.872367,0.054229,0.983758,0.071614,0.13786,0.409066,0.995104,0.0695059,0.223163,0.552875,0.339706,0.0689538,0.0454288,0.766179,0.672164,0.875341,0.611372,0.391532,0.9753,0.36688,0.172308,0.431754,0.0342972,0.326629,0.730715,0.631652,0.188975,0.501342,0.561139,0.192144,0.737475,0.844301,0.686001,0.138731,0.20704,0.975528,0.241226,0.949882,0.449161,0.345309,0.557017,0.840016,0.952753,0.206316,0.746641,0.624205,0.457131,0.500665,0.180073,0.145641,0.0437579,0.05906,0.706908,0.266546,0.697148,0.94256,0.704149,0.937735,0.151189,0.0526708,0.947785,0.0627683,0.987689,0.231074,0.942561,0.724655,0.253239,0.746315,0.0170597,0.0242448,0.732359,0.0944805,0.755254,0.102146,0.418197,0.138518,0.0758597,0.239102,0.366991,0.460556,0.581081,0.665851,0.432488,0.763532,0.350615,0.965914,0.216706,0.681121,0.527523,0.7844,0.54822,0.155198,0.953139,0.296882,0.288025,0.288143,0.780299,0.249044,0.266026,0.445236,0.691568,0.404235,0.0502757,0.709553,0.676633,0.259197,0.982101,0.110511,0.283577,0.219608,0.637285,0.616305,0.0878057,0.787749,0.743137,0.537844,0.28056,0.620387,0.024609,0.900628,0.216257,0.217491,0.704596,0.194847,0.563814,0.0250509,0.153943,0.424359,0.358534,0.376279,0.266467,0.14797,0.280582,0.911124,0.364182,0.437392,0.536468,0.707321,0.39651,0.585516,0.79606,|0.427184,0.564011,0.941888,0.650674,0.295703,0.327043,0.567591,0.679719,0.301269,0.516113,0.992261,0.544374,0.879763,0.0836521,0.0206935,0.167773,0.696679,0.0645713,0.286974,0.722806,0.0535392,0.351312,0.311082,0.150401,0.992217,0.432946,0.332933,0.271258,0.062087,0.540855,0.0412853,0.708461,0.505508,0.415771,0.565662,0.208475,0.0364598,0.471742,0.34288,0.106617,0.385243,0.385193,0.659425,0.291732,0.596184,0.634012,0.566151,0.516225,0.2404,0.814998,0.863398,0.873481,0.955508,0.972704,0.269939,0.243834,0.915364,0.0761294,0.536468,0.289357,0.955183,0.759278,0.376339,0.0826608,0.782031,0.706902,0.324986,0.627888,0.224431,0.196691,0.491559,0.259949,0.600727,0.906651,0.486505,0.49565,0.224562,0.278216,0.57942,0.916675,0.483361,0.661173,0.662166,0.316954,0.772086,0.076848,0.322389,0.444079,0.747233,0.735263,0.204477,0.744443,0.905468,0.277188,0.268847,0.0262422,0.280675,0.1149,0.557074,0.725461,0.257503,0.596387,0.512656,0.125326,0.047191,0.942073,0.0269986,0.731272,0.655327,0.416421,0.362782,0.208871,0.583011,0.510051,0.84586,0.453166,0.376277,0.954382,0.368243,0.355475,0.203956,0.889684,0.154193,0.00419056,0.735193,0.112921,0.691083,0.184687,0.221797,0.820217,0.629017,0.76982,0.849112,0.36755,0.293649,0.0830165,0.0585049,0.0115007,0.934687,0.231641,0.481521,0.125521,0.518356,0.904838,0.572392,0.709788,0.349933,0.955094,0.391576,0.163052,0.509047,0.745124,0.906456,0.493323,0.0097636,0.0558661,0.612572,0.444594,0.0548154,0.531672,0.855546,0.567339,0.973355,0.59056,0.912484,0.847196,0.124637,0.455922,0.825539,0.0200977,0.0605116,0.602452,0.112328,0.568879,0.959483,0.564221,0.749468,0.35566,0.0943997,0.51586,0.586622,0.969687,0.0182911,0.236087,0.323408,0.751399,0.587668,0.645276,0.221987,0.546832,0.853858,0.535962,0.934648,0.285799,0.282876,0.607732,0.870322,0.303527,0.875926,0.992048,0.265514,0.867258,0.966745,0.561512,0.975389,0.0751917,0.0226653,0.612931,0.676538,0.78295,0.692044,0.0193875,0.618963,0.236734,0.451097,0.186319,0.896464,0.423834,0.860392,0.247585,0.248121,0.802224,0.0926874,0.298621,0.601811,0.90628,0.411614,0.477099,0.78617,0.68586,0.924056,0.88589,0.931362,0.679481,0.514107,0.704745,0.22783,0.682011,0.626812,0.824662,0.887622,0.775051,0.415958,0.216553,0.920167,0.970667,0.493616,0.975235,0.905763,0.246792,0.693158,0.989555,0.408961,0.75192,0.769948,0.161094,0.884118,0.991695,0.170636,0.514934,0.0209146,0.248756,0.397676,0.783843,0.575022,0.59852,0.435465,0.180476,0.77067,0.0724415,0.271512,0.693862,0.857845,0.308715,0.969744,0.0143212,0.580619,0.00230944,0.639103,0.593781,0.156645,0.767067,0.503386,0.574322,0.630966,0.974759,0.259259,0.365032,0.374609,0.583902,0.187329,0.521357,0.967149,0.142134,0.441611,0.850191,0.719442,0.52848,0.0459101,0.883296,0.642643,0.86534,0.411548,0.819334,0.906869,0.956046,0.302565,0.483909,0.211243,0.999639,0.973657,0.0959209,0.468637,0.562824,0.491585,0.426,0.0358756,0.602255,0.766671,0.525156,0.194868,0.370095,0.0360642,0.567931,0.296978,0.598124,0.869874,0.889131,0.636897,0.934708,0.388392,0.011112,0.14413,0.274437,0.760299,0.556995,0.110584,0.368798,0.887826,0.352359,0.87165,0.384767,0.47094,0.725554,0.505842,0.339263,0.566759,0.593325,0.947977,0.0600379,0.986732,0.855677,0.262582,0.0404076,0.675051,0.0163217,0.28942,0.509265,0.669983,0.0221817,0.19756,0.812075,0.115486,0.434389,0.910764,0.238879,0.770424,0.192389,0.0829456,0.584029,0.61206,0.914983,0.719357,0.673089,0.362123,0.0855491,0.870775,0.712771,0.802135,0.93116,0.330035,0.710678,0.276885,0.825982,0.244574,0.335271,0.0683258,0.124471,0.823781,0.81356,0.833962,0.769895,0.499393,0.279049,0.0730244,0.448811,0.377501,0.232407,0.948898,0.363115,0.610938,0.3632,0.161661,0.906862,0.574721,0.680866,0.304415,0.816879,0.360036,0.42933,0.0580952,0.833668,0.612262,0.88515,0.988634,0.635093,0.274766,0.450123,0.718119,0.11052,0.811818,0.947319,0.666297,0.844508,0.596391,0.195453,0.610931,0.186013,0.640284,0.380815,0.518637,0.517061,0.843888,0.442811,0.101359,0.533026,0.558204,0.77964,0.190672,0.62608,0.661338,0.255875,0.133595,0.163955,0.785584,0.830527,0.593095,0.217382,0.154375,0.447391,0.479734,0.0796961,0.658443,0.930858,0.039249,0.713355,0.479084,0.841135,0.477161,0.423955,0.373315,0.00506312,0.651345,0.420745,0.17717,0.926306,0.563785,0.52484,0.67036,0.349028,0.578293,0.107295,0.109587,0.393516,0.444668,0.899418,0.494013,0.906119,0.667435,0.848971,0.266411,0.816856,0.845505,0.598736,0.635216,0.113541,0.046115,0.0895259,0.18607,0.0407184,0.659829,0.341012,0.0834194,0.321858,0.588125,0.823965,0.900867,0.595095,0.941439,0.0828598,0.333844,0.712414,0.732336,0.629339,0.0530165,0.014739,0.507832,0.938553,0.367652,0.0915247,0.500928,0.273869,0.14789,0.494719,0.882707,0.804709,0.598047,0.673067,0.576286,0.946298,0.4223,0.585555,0.477045,0.10625,0.519733,0.893722,0.285055,0.751311,0.786083,0.719218,0.482906,0.50509,0.952301,0.598254,0.337872,0.500371,0.375794,0.151435,0.785807,0.922427,0.933972,0.222519,0.659087,0.710188,0.950451,0.317086,0.129409,0.0719484,0.860648,0.0399417,0.280374,0.89175,0.113192,0.408157,0.239519,0.621011,0.256089,0.32148,0.35258,0.969972,0.887875,0.750868,0.706754,0.499064,0.28655,0.81302,0.649845,0.505091,0.853679,0.0124203,0.0678996,0.337346,0.601953,0.727206,0.568085,0.685891,0.613621,0.446965,0.321872,0.206036,0.730094,0.267619,0.592132,0.908392,0.578796,0.731157,0.0774695,0.375221,0.584282,0.535193,0.494859,0.688913,0.439121,0.774357,0.6401,0.173126,0.368404,0.956286,0.464592,0.156884,0.755616,0.095472,0.745087,0.219951,0.280142,0.826205,0.290673,0.944338,0.119922,0.368983,0.975874,0.2469,0.866549,0.930091,0.546628,0.268973,0.637245,0.253432,0.753743,0.198761,0.0807711,0.936214,0.205147,0.475108,0.098604,0.435872,0.0411177,0.86442,0.0103139,0.145424,0.937196,0.224022,0.751016,0.222461,0.934683,0.17773,0.1252,0.952648,0.288409,0.960245,0.581019,0.420805,0.511565,0.803078,0.598157,0.511164,0.0839682,0.620077,0.693018,0.841924,0.620288,0.0076322,0.623369,0.968239,0.0608634,0.551896,0.109766,0.320305,0.0138425,0.998935,0.596981,0.375186,0.875161,0.0522745,0.353336,0.671684,0.623726,0.682762,0.679797,0.822146,0.546487,0.0387456,0.564145,0.480743,0.651828,0.559399,0.35609,0.505819,0.375522,0.466646,0.752304,0.308669,0.173338,0.25125,0.185801,0.438279,0.208126,0.182034,0.397426,0.982346,0.668465,0.290117,0.706159,0.226411,0.811642,0.591378,0.817995,0.70935,0.478354,0.461077,0.00428885,0.31202,0.345416,0.348708,0.0135451,0.760001,0.439433,0.442646,0.810832,0.167631,0.0706987,0.767368,0.0774219,0.738548,0.995429,0.717086,0.0699825,0.286071,0.0738856,0.984099,0.495163,0.956991,0.822636,0.00630736,0.313706,0.368424,0.396422,0.0877044,0.103955,0.532398,0.584485,0.615117,0.872093,0.503954,0.919585,0.329098,0.613276,0.768827,0.0878607,0.885121,0.27434,0.656074,0.373489,0.788046,0.602678,0.00748342,0.698491,0.444403,0.395572,0.431797,0.225782,0.990392,0.519797,0.333707,0.228547,0.453723,0.680647,0.418176,0.643354,0.37479,0.47119,0.93863,0.954356,0.112877,0.595376,0.669355,0.0855369,0.704118,0.467429,0.207857,0.736318,0.744936,0.214133,0.799715,0.966942,0.810462,0.0546634,0.234473,0.891564,0.136585,0.613145,0.834278,0.326626,0.679383,0.734821,0.433672,0.983366,0.401392,0.420981,0.163548,0.456647,0.87869,0.9033,0.311124,0.836477,0.300437,0.940547,0.58838,0.828139,0.556865,0.951041,0.317014,0.969857,0.417438,0.366953,0.202215,0.680111,0.644369,0.358961,0.288432,0.141528,0.431512,0.686161,0.310972,0.0955158,0.817689,0.635455,0.0920144,0.210747,0.779993,0.950601,0.0908961,0.874297,0.397178,0.797763,0.712389,0.795794,0.213406,0.547428,0.13566,0.964296,0.533726,0.488563,0.310167,0.830957,0.134217,0.0692178,0.0722563,0.370497,0.191749,0.987777,0.110816,0.65278,0.227132,0.930988,0.809496,0.0464545,0.122029,0.420957,0.0660232,0.0330385,0.320135,0.397988,0.804306,0.741577,0.700388,0.356488,0.310104,0.661262,0.351288,0.681907,0.506532,0.271148,0.454499,0.380112,0.862024,0.815797,0.623798,0.777396,0.391676,0.651052,0.0144308,0.988315,0.751888,0.830087,0.438401,0.57405,0.45568,0.384079,0.775677,0.574781,0.6168,0.0686712,0.557507,0.839722,0.494649,0.767302,0.55347,0.77797,0.61949,0.731512,0.0692059,0.964895,0.236583,0.042743,0.735796,0.627864,0.234535,0.856694,0.121963,0.541349,0.295347,0.638231,0.0590339,0.279218,0.214346,0.24425,0.0995332,0.146163,0.709144,0.545201,0.406018,0.238222,0.707467,0.728862,0.912856,0.273195,0.8405,0.418669,0.499748,0.930569,0.322254,0.200351,0.0380185,0.0349255,0.25065,0.667825,0.694143,0.369536,0.613627,0.468265,0.99832,0.788094,0.344208,0.979264,0.75756,0.466237,0.339797,0.677527,0.763737,0.70487,0.695568,0.610197,0.859601,0.811252,0.493915,0.554424,0.978528,0.218876,0.963676,0.186337,0.386982,0.675692,0.51432,0.217996,0.730681,0.134573,0.757577,0.06585,0.721467,0.598499,0.188463,0.852508,0.158527,0.0438043,0.100008,0.291807,0.144502,0.137833,0.818716,0.155445,0.626662,0.269536,0.687274,0.861464,0.596836,0.490046,0.238898,0.415721,0.128595,0.720868,0.918114,0.628814,0.0484365,0.0372226,0.714069,0.506786,0.109432,0.0041489,0.802343,0.025291,0.23015,0.0782483,0.919665,0.00930142,0.298563,0.171201,0.165422,0.846692,0.617824,|0.199874,0.0396433,0.4786,0.0373181,0.605581,0.113834,0.193989,0.0792695,0.56661,0.25766,0.783511,0.679658,0.362831,0.90145,0.947751,0.269682,0.839443,0.76447,0.218907,0.853662,0.951973,0.54024,0.471936,0.0761065,0.813765,0.508334,0.0573868,0.824064,0.753566,0.855603,0.620919,0.324256,0.669743,0.724557,0.874342,0.153178,0.336484,0.00316316,0.976908,0.906154,0.982493,0.273341,0.0373501,0.694402,0.114109,0.896801,0.893619,0.496138,0.00363523,0.380774,0.824642,0.595199,0.604555,0.711399,0.948632,0.921793,0.673438,0.702097,0.911543,0.106103,0.874208,0.0713496,0.946031,0.512009,0.149461,0.152835,0.162241,0.109892,0.0501505,0.731166,0.521564,0.66273,0.797946,0.426987,0.207681,0.843485,0.426854,0.000718415,0.561519,0.227788,0.223294,0.210112,0.600161,0.739458,0.910103,0.529241,0.471705,0.112932,0.909027,0.970265,0.222119,0.178182,0.87107,0.318711,0.635131,0.0397838,0.337547,0.593735,0.355364,0.0283546,0.938312,0.733234,0.724273,0.739952,0.241766,0.928138,0.918534,0.622252,0.641295,0.9371,0.553749,0.494362,0.179515,0.685382,0.671231,0.530644,0.518835,0.237553,0.618648,0.950503,0.0921288,0.220782,0.1584,0.635178,0.12105,0.661406,0.155107,0.0754521,0.672578,0.134868,0.216317,0.99803,0.075792,0.452366,0.72318,0.983696,0.424615,0.211069,0.318309,0.433688,0.353157,0.393379,0.0286906,0.208793,0.11288,0.294447,0.762244,0.172056,0.221626,0.0702164,0.833854,0.93553,0.345114,0.501926,0.919094,0.834754,0.55428,0.151021,0.00506932,0.510239,0.723159,0.59297,0.0633821,0.0553589,0.395661,0.736578,0.520472,0.95925,0.845579,0.643779,0.174461,0.49096,0.384208,0.712326,0.181017,0.974823,0.0607926,0.891681,0.78183,0.698271,0.644727,0.826961,0.479356,0.105224,0.280051,0.930781,0.204932,0.967556,0.172915,0.476971,0.316623,0.584138,0.551291,0.479201,0.593769,0.151858,0.876945,0.0818561,0.00560892,0.142842,0.492553,0.105051,0.362411,0.553414,0.29873,0.0804653,0.595801,0.950227,0.929948,0.0309988,0.239411,0.175632,0.192012,0.107644,0.0196243,0.0277604,0.523673,0.966211,0.598245,0.440336,0.332028,0.473026,0.803727,0.217947,0.661906,0.868662,0.835915,0.633987,0.700063,0.623873,0.102831,0.216517,0.0973302,0.0559586,0.30475,0.146343,0.180938,0.719802,0.853185,0.820727,0.532257,0.507564,0.671993,0.356057,0.403945,0.524258,0.625524,0.0459601,0.208485,0.994759,0.985319,0.867001,0.689765,0.0856948,0.776693,0.0703586,0.777478,0.759988,0.0211537,0.129637,0.389825,0.85367,0.749863,0.458152,0.835238,0.66276,0.239499,0.800669,0.454492,0.685487,0.969274,0.714076,0.633268,0.369138,0.262286,0.696405,0.328599,0.514257,0.204942,0.677865,0.0543208,0.698987,0.282095,0.0608469,0.277473,0.526996,0.262254,0.809483,0.882213,0.596227,0.970794,0.556141,0.198102,0.48001,0.760021,0.715384,0.702971,0.350676,0.0755996,0.983471,0.904608,0.0216793,0.0680034,0.00495052,0.0450985,0.823719,0.194366,0.976827,0.768104,0.74523,0.506679,0.569992,0.831794,0.96598,0.194224,0.673095,0.27167,0.601827,0.10704,0.417286,0.0247,0.455766,0.805945,0.0552708,0.78972,0.56273,0.220334,0.577542,0.36786,0.568313,0.935888,0.354849,0.28554,0.379488,0.89678,0.512101,0.620169,0.656487,0.831923,0.065559,0.85417,0.17308,0.778577,0.725715,0.693626,0.338427,0.859172,0.155514,0.550482,0.392489,0.464896,0.133974,0.989969,0.987715,0.694933,0.0422454,0.697858,0.776789,0.551398,0.640913,0.715239,0.652282,0.996826,0.038471,0.934418,0.168148,0.218846,0.785842,0.774688,0.0867141,0.921131,0.0880055,0.122035,0.31473,0.124002,0.383909,0.278609,0.737011,0.24746,0.189019,0.875557,0.145446,0.688918,0.403825,0.618169,0.67172,0.411433,0.0748376,0.382925,0.968514,0.733586,0.869098,0.820876,0.512418,0.860403,0.345284,0.338532,0.455672,0.98606,0.271565,0.467665,0.272144,0.260467,0.438495,0.905865,0.747719,0.635804,0.0483888,0.561364,0.64109,0.457512,0.356955,0.0519637,0.538405,0.218369,0.397957,0.97131,0.879668,0.892884,0.398583,0.396032,0.910747,0.375689,0.340696,0.0796455,0.147348,0.0307447,0.921483,0.220383,0.497331,0.494902,0.659255,0.838275,0.423599,0.513038,0.535068,0.275439,0.741788,0.383879,0.257331,0.430419,0.892135,0.723303,0.684527,0.636474,0.792251,0.426673,0.962354,0.0819494,0.757691,0.595371,0.918835,0.323341,0.156969,0.382931,0.876402,0.379741,0.532529,0.540968,0.277935,0.0619496,0.0808682,0.541998,0.26093,0.228766,0.841286,0.311524,0.032944,0.292779,0.691743,0.410763,0.777873,0.544754,0.812968,0.414556,0.222808,0.865122,0.060522,0.707871,0.932938,0.093994,0.684181,0.972838,0.674185,0.062008,0.53696,0.614031,0.974016,0.716813,0.643166,0.389953,0.516717,0.771311,0.257266,0.261508,0.544732,0.721164,0.469009,0.743894,0.479966,0.716721,0.654183,0.0444604,0.802332,0.340852,0.825351,0.469577,0.954948,0.765072,0.456397,0.920659,0.376001,0.878469,0.572264,0.489366,0.373273,0.0541365,0.776605,0.805494,0.766002,0.619936,0.884671,0.232322,0.0229689,0.991712,0.838424,0.812206,0.0595438,0.836216,0.193019,0.690579,0.375677,0.366869,0.236587,0.472963,0.332253,0.668611,0.393258,0.0580398,0.788302,0.668467,0.058715,0.276407,0.697803,0.0532653,0.268541,0.757293,0.666153,0.217461,0.838826,0.142105,0.416736,0.118467,0.00143832,0.397357,0.453444,0.275894,0.993132,0.438243,0.512622,0.504638,0.427038,0.310796,0.970522,0.863351,0.130346,0.585442,0.425401,0.324829,0.721998,0.175971,0.709819,0.214459,0.609542,0.620848,0.691721,0.515501,0.901409,0.248624,0.811473,0.703919,0.85508,0.463973,0.193695,0.716442,0.529302,0.300508,0.272431,0.814655,0.869596,0.44395,0.213747,0.667026,0.487842,0.188481,0.375347,0.346038,0.516139,0.271523,0.482733,0.0542235,0.16961,0.997212,0.687458,0.601991,0.198199,0.828035,0.976289,0.102937,0.879438,0.545615,0.127644,0.145199,0.887051,0.284337,0.821053,0.240874,0.462727,0.751894,0.106025,0.458275,0.641798,0.0278758,0.562508,0.626617,0.25627,0.615345,0.574436,0.749019,0.787095,0.849483,0.0502058,0.544534,0.628275,0.997739,0.679949,0.186078,0.816714,0.189158,0.397054,0.527407,0.775797,0.797597,0.374746,0.89791,0.642064,0.404115,0.302249,0.753927,0.256189,0.368763,0.398941,0.580052,0.152196,0.606583,0.160243,0.998261,0.339701,0.270009,0.338523,0.778085,0.294366,0.193447,0.0381044,0.700055,0.9774,0.94488,0.409372,0.786405,0.343488,0.299418,0.665745,0.194866,0.0701439,0.105324,0.714269,0.522735,0.49291,0.502167,0.811552,0.421468,0.668313,0.762003,0.83202,0.180023,0.973714,0.0619565,0.910135,0.499512,0.896338,0.632962,0.143494,0.271145,0.410726,0.991747,0.0283468,0.557036,0.927834,0.519036,0.295998,0.278651,0.283946,0.974498,0.829566,0.387327,0.542053,0.186497,0.320892,0.657047,0.865881,0.442339,0.496923,0.304415,0.804408,0.42272,0.638768,0.583968,0.45358,0.460028,0.774842,0.906454,0.595724,0.122871,0.802639,0.203917,0.0500287,0.099605,0.551622,0.609463,0.307986,0.738931,0.295629,0.16399,0.687232,0.706663,0.58744,0.936091,0.43908,0.605367,0.191964,0.228533,0.533321,0.553566,0.158955,0.180858,0.760992,0.947371,0.25949,0.755131,0.744435,0.55279,0.157409,0.847318,0.600104,0.634912,0.0959588,0.147133,0.742569,0.944963,0.486251,0.228106,0.766742,0.345129,0.793947,0.657652,0.202463,0.288295,0.0597602,0.530337,0.215084,0.538763,0.835791,0.927992,0.55398,0.974088,0.359453,0.221531,0.0487054,0.50371,0.484853,0.511523,0.495602,0.784187,0.819557,0.52314,0.957891,0.923615,0.214702,0.214879,0.0966558,0.870613,0.833823,0.897737,0.401244,0.131965,0.284314,0.934056,0.95868,0.69249,0.028815,0.447422,0.629877,0.914748,0.0550022,0.671007,0.339293,0.918138,0.125126,0.488944,0.4462,0.894974,0.349426,0.750139,0.930978,0.349161,0.0420784,0.892816,0.0904323,0.11262,0.408978,0.11291,0.790321,0.0848323,0.838446,0.16386,0.961751,0.955056,0.993037,0.917707,0.449675,0.490429,0.124317,0.151127,0.824123,0.279147,0.446197,0.689263,0.247866,0.398117,0.208096,0.571401,0.325544,0.94673,0.909223,0.309646,0.2866,0.111771,0.408122,0.317336,0.9033,0.404222,0.868394,0.84424,0.0378538,0.169968,0.316229,0.315731,0.954606,0.263561,0.0101719,0.0180312,0.362898,0.949854,0.624477,0.0492928,0.0391529,0.610575,0.670982,0.0231954,0.855412,0.883431,0.507335,0.0793442,0.157237,0.62549,0.674603,0.421093,0.0177072,0.684712,0.666387,0.939039,0.54382,0.480574,0.985995,0.171681,0.0689569,0.515053,0.131138,0.692501,0.375058,0.330196,0.255632,0.570031,0.431909,0.780303,0.326827,0.0693136,0.823803,0.207755,0.242284,0.256086,0.960859,0.365844,0.71156,0.993359,0.871754,0.741587,0.095449,0.142979,0.730219,0.154194,0.0242145,0.509055,0.565441,0.38423,0.866978,0.999009,0.331082,0.246505,0.772614,0.659338,0.72788,0.963283,0.0360372,0.233487,0.73391,0.89502,0.0844818,0.110225,0.981318,0.518768,0.893594,0.369489,0.669526,0.730849,0.124672,0.413154,0.256637,0.842561,0.432466,0.849526,0.106357,0.217838,0.817591,0.691142,0.244495,0.439908,0.0765086,0.782116,0.311175,0.556843,0.268112,0.312665,0.769332,0.945316,0.369965,0.043944,0.183743,0.886916,0.120471,0.22975,0.957707,0.588904,0.364984,0.90481,0.0681118,0.0904785,0.853862,0.968754,0.356311,0.563355,0.377776,0.105953,0.149462,0.0588881,0.594504,0.559453,0.486855,0.839506,0.517845,0.149349,0.247051,0.716626,0.589858,0.679449,0.0745235,0.0392848,0.716113,0.0645636,0.642046,0.469771,0.329182,0.885804,0.832913,0.519941,0.0255196,0.0984392,0.799332,0.342817,0.180266,|0.747835,0.556855,0.894143,0.629628,0.219213,0.662047,0.27507,0.301679,0.440675,0.745908,0.385658,0.696687,0.664627,0.206591,0.626954,0.845732,0.0946333,0.685706,0.253099,0.832336,0.161915,0.432309,0.800664,0.408262,0.107681,0.179426,0.738431,0.393517,0.392618,0.506013,0.30455,0.250319,0.0385385,0.305223,0.736658,0.818267,0.744384,0.547492,0.978033,0.875248,0.398113,0.965413,0.493869,0.475009,0.987867,0.0578269,0.975887,0.499948,0.559546,0.787139,0.0568041,0.981246,0.498391,0.299031,0.884948,0.0800657,0.741934,0.634295,0.732408,0.669946,0.938027,0.35854,0.454117,0.0950876,0.177528,0.923603,0.712659,0.719618,0.689503,0.0807042,0.707854,0.760359,0.0276164,0.695679,0.811433,0.411021,0.712705,0.589765,0.40438,0.316706,0.835405,0.286353,0.619327,0.412915,0.496593,0.419875,0.924823,0.117432,0.965233,0.25795,0.363544,0.407245,0.793331,0.157238,0.466228,0.981756,0.263004,0.121458,0.131004,0.883905,0.341402,0.350004,0.303239,0.907587,0.721588,0.549191,0.898365,0.43645,0.390457,0.947754,0.135696,0.146264,0.358931,0.112782,0.519075,0.121692,0.686468,0.376863,0.422901,0.0861874,0.324543,0.924086,0.305943,0.676345,0.0106287,0.369887,0.294724,0.652304,0.0433722,0.600919,0.156913,0.773401,0.703593,0.948191,0.142524,0.573257,0.434959,0.394163,0.903192,0.75791,0.0862344,0.167377,0.964672,0.798774,0.627138,0.664087,0.560694,0.793324,0.102823,0.429017,0.570842,0.774476,0.829768,0.724514,0.108446,0.584306,0.640735,0.143565,0.796218,0.771406,0.313246,0.869689,0.484949,0.000218868,0.830296,0.421698,0.736206,0.583385,0.677429,0.0812229,0.406408,0.106325,0.254721,0.498035,0.346427,0.987022,0.447772,0.763715,0.14085,0.889672,0.283242,0.233143,0.562678,0.465359,0.0530728,0.00617439,0.707867,0.306348,0.962019,0.552988,0.526324,0.705764,0.437199,0.480554,0.360898,0.327442,0.96845,0.497139,0.370431,0.976907,0.930416,0.12378,0.547702,0.7404,0.776521,0.146833,0.241138,0.659769,0.565075,0.455691,0.377151,0.966646,0.0547593,0.957195,0.686387,0.294087,0.420131,0.338919,0.60199,0.0378727,0.712995,0.0586891,0.266197,0.62241,0.408469,0.606776,0.241931,0.576157,0.597396,0.068913,0.0613071,0.112984,0.0388801,0.145154,0.352139,0.521325,0.843435,0.267924,0.666717,0.0831947,0.629167,0.57435,0.243002,0.616392,0.683636,0.417995,0.466856,0.882956,0.249178,0.185658,0.345698,0.279047,0.917919,0.716739,0.744036,0.0906547,0.796795,0.47546,0.810111,0.66359,0.661443,0.0456039,0.942994,0.356201,0.446387,0.97778,0.181464,0.232742,0.778195,0.3481,0.187981,0.967198,0.0290139,0.0939031,0.795834,0.777248,0.125718,0.565143,0.25203,0.412799,0.979222,0.906122,0.986063,0.854912,0.7816,0.141761,0.968585,0.0712625,0.83637,0.678966,0.0710928,0.817922,0.585748,0.655659,0.155059,0.360163,0.694673,0.290065,0.737463,0.746796,0.484347,0.0654654,0.253913,0.624799,0.706825,0.0715288,0.484796,0.253758,0.406463,0.0425273,0.458565,0.82386,0.710118,0.312262,0.545772,0.673925,0.622993,0.292996,0.821245,0.0456704,0.312486,0.809078,0.356872,0.0452767,0.92818,0.249427,0.324182,0.448102,0.870181,0.812496,0.0810756,0.00123256,0.602092,0.899971,0.493014,0.79932,0.460355,0.0226428,0.176294,0.290514,0.00664937,0.0598511,0.613407,0.86103,0.584719,0.7716,0.13834,0.838691,0.300107,0.618613,0.438198,0.537418,0.679356,0.386468,0.874055,0.26614,0.594563,0.515454,0.343928,0.630531,0.97053,0.20762,0.60112,0.0648464,0.762772,0.94445,0.666262,0.715919,0.270158,0.491444,0.632525,0.823565,0.466748,0.868379,0.613827,0.489766,0.395492,0.6637,0.464628,0.0592242,0.217651,0.73392,0.741616,0.39058,0.956362,0.512744,0.495158,0.890349,0.462431,0.894028,0.471154,0.640971,0.966278,0.818446,0.77537,0.653696,0.966078,0.575887,0.768829,0.163854,0.692115,0.45182,0.530332,0.0408677,0.953074,0.533666,0.905349,0.599111,0.430243,0.0626733,0.673534,0.893165,0.328424,0.690074,0.811778,0.44066,0.126088,0.578145,0.123018,0.576977,0.951362,0.23527,0.584957,0.438716,0.300457,0.482659,0.0851141,0.972623,0.138657,0.43677,0.112923,0.894977,0.636261,0.0926631,0.561718,0.289547,0.763037,0.952589,0.031654,0.838826,0.475831,0.0814407,0.173028,0.257698,0.843521,0.615603,0.661164,0.0686206,0.0820693,0.792812,0.410169,0.610992,0.583788,0.928565,0.90678,0.445609,0.477112,0.251945,0.922363,0.627747,0.835924,0.0416409,0.200122,0.273219,0.621047,0.0333476,0.692489,0.386253,0.617235,0.0508384,0.039232,0.805593,0.901444,0.288572,0.391159,0.267629,0.722524,0.842974,0.0137653,0.318153,0.575931,0.155123,0.9903,0.241042,0.436494,0.842382,0.961912,0.856891,0.791187,0.426255,0.294525,0.0446298,0.334442,0.872423,0.735398,0.00307024,0.0855039,0.430549,0.360134,0.00831825,0.0074082,0.668432,0.0923458,0.983953,0.736789,0.9527,0.277618,0.833318,0.0989628,0.654554,0.716424,0.137921,0.568019,0.257818,0.357822,0.768672,0.0126669,0.0846677,0.627242,0.703529,0.159581,0.836781,0.0435702,0.140645,0.900983,0.65921,0.863024,0.690934,0.469868,0.618793,0.102444,0.139253,0.772668,0.198173,0.793619,0.278998,0.534971,0.117928,0.242073,0.0200914,0.654793,0.221522,0.105677,0.953237,0.44581,0.298614,0.421442,0.638978,0.0665347,0.698393,0.576421,0.430043,0.637664,0.686467,0.998424,0.459715,0.530888,0.613403,0.574024,0.645354,0.0239008,0.693851,0.413952,0.00134802,0.562622,0.690851,0.0300252,0.485123,0.0734873,0.306106,0.735766,0.884887,0.773689,0.0242463,0.72301,0.675049,0.231816,0.804789,0.218656,0.881189,0.035704,0.422488,0.495078,0.51053,0.97826,0.479437,0.733403,0.299476,0.344837,0.914692,0.968813,0.178834,0.327222,0.890495,0.775171,0.0520833,0.457227,0.116612,0.624894,0.751907,0.0377317,0.732006,0.497402,0.727255,0.31341,0.661553,0.293853,0.614108,0.880102,0.646592,0.42204,0.231505,0.456524,0.835189,0.26847,0.148728,0.746519,0.570433,0.369263,0.103591,0.681454,0.253516,0.580515,0.755688,0.132922,0.881259,0.759204,0.402285,0.0421801,0.729759,0.936984,0.977299,0.340126,0.932215,0.503065,0.450746,0.265942,0.883166,0.951031,0.165462,0.358221,0.0804441,0.970298,0.713156,0.445787,0.0673894,0.607974,0.196989,0.219523,0.633168,0.725987,0.45547,0.368135,0.116979,0.174582,0.345316,0.0517535,0.900845,0.928587,0.142054,0.0106873,0.257886,0.80416,0.191016,0.299693,0.61143,0.818859,0.956084,0.607343,0.83996,0.0695632,0.177779,0.626141,0.669769,0.665552,0.803841,0.13989,0.536961,0.0489126,0.559767,0.494908,0.78875,0.136377,0.471627,0.1631,0.232016,0.445314,0.796357,0.690499,0.653002,0.014505,0.311692,0.514179,0.0574776,0.322921,0.965708,0.284049,0.960426,0.872168,0.732643,0.718065,0.862444,0.896498,0.427602,0.890011,0.485672,0.0871952,0.654603,0.520955,0.421727,0.355226,0.330503,0.996366,0.184081,0.479448,0.695028,0.0818532,0.0486556,0.542982,0.158921,0.254196,0.257098,0.215712,0.36688,0.507161,0.246989,0.589965,0.591591,0.190597,0.215114,0.273703,0.367233,0.983118,0.031084,0.535097,0.693831,0.38642,0.405567,0.979506,0.686351,0.950528,0.0544048,0.456057,0.387045,0.0503979,0.0688276,0.118717,0.717962,0.671634,0.767437,0.479087,0.614068,0.691727,0.354127,0.444014,0.0926696,0.747166,0.108149,0.768536,0.205814,0.373422,0.832158,0.102702,0.530018,0.796143,0.514051,0.360642,0.753067,0.469592,0.0815046,0.648107,0.609285,0.132147,0.79279,0.753275,0.276868,0.629121,0.458205,0.736178,0.729741,0.0825143,0.209862,0.379691,0.207311,0.896762,0.531671,0.056944,0.0667977,0.286048,0.667487,0.859624,0.524803,0.496812,0.596696,0.533064,0.70767,0.112364,0.558345,0.592698,0.344253,0.502058,0.576558,0.522707,0.918344,0.0390989,0.344485,0.681549,0.661176,0.928951,0.389728,0.393986,0.635608,0.383168,0.243172,0.489673,0.776612,0.605939,0.943651,0.84165,0.185985,0.839356,0.0802193,0.231975,0.301068,0.560619,0.222021,0.438388,0.996518,0.414491,0.272077,0.71676,0.168664,0.359375,0.0893819,0.455628,0.17484,0.284416,0.150137,0.0341055,0.0890353,0.958974,0.239532,0.141792,0.445928,0.960339,0.332705,0.904681,0.318255,0.229109,0.254885,0.100042,0.152193,0.353176,0.329511,0.461342,0.497971,0.54232,0.244437,0.0507358,0.406262,0.170603,0.622177,0.284198,0.850393,0.187101,0.690412,0.640902,0.706986,0.564324,0.680443,0.860536,0.504834,0.231583,0.660135,0.835022,0.241758,0.268638,0.669453,0.122675,0.396981,0.620307,0.244203,0.105942,0.124608,0.333583,0.358405,0.477176,0.684415,0.986816,0.38988,0.37644,0.585759,0.825237,0.279134,0.661589,0.123245,0.602958,0.0316276,0.556928,0.043702,0.95819,0.47145,0.416301,0.267054,0.892795,0.305727,0.0540962,0.82016,0.0302569,0.539409,0.146381,0.68469,0.791705,0.78681,0.717266,0.458634,0.272246,0.149052,0.775994,0.198742,0.0154367,0.581987,0.143227,0.790124,0.204119,0.260301,0.786591,0.510991,0.61035,0.195175,0.466181,0.761109,0.621442,0.699088,0.616299,0.66716,0.886347,0.0817986,0.210067,0.470558,0.744533,0.993901,0.20819,0.616102,0.342472,0.936999,0.840517,0.936962,0.668292,0.271288,0.962154,0.0487303,0.711639,0.807634,0.930179,0.500324,0.401023,0.519627,0.140613,0.200952,0.778835,0.156339,0.115751,0.0895568,0.9249,0.78897,0.788246,0.0874884,0.541783,0.567143,0.425685,0.535826,0.921991,0.569988,0.297366,0.516866,0.98043,0.137498,0.513614,0.149623,0.864724,0.0178667,0.125619,0.180878,0.141696,0.0935917,0.980769,0.910724,0.316945,0.756442,0.852,0.848698,0.91939,0.937416,0.968766,0.615694,0.430946,0.688482,0.651605,0.769381,|0.0674554,0.622808,0.682574,0.766787,0.312119,0.833455,0.0592264,0.260532,0.455319,0.742634,0.59336,0.0261841,0.437822,0.562614,0.837952,0.185248,0.6425,0.50481,0.122515,0.840142,0.0438064,0.160578,0.0147114,0.598334,0.0280076,0.51056,0.310542,0.960744,0.574568,0.190375,0.634041,0.157366,0.457434,0.814279,0.659169,0.900352,0.221133,0.0147332,0.675182,0.338403,0.5217,0.166196,0.109834,0.751094,0.158315,0.167082,0.59787,0.275358,0.706486,0.592041,0.95396,0.582739,0.46897,0.283974,0.0592223,0.0307927,0.627581,0.51257,0.641408,0.101827,0.812294,0.34933,0.160163,0.666042,0.662949,0.938412,0.680739,0.476688,0.948826,0.667222,0.199545,0.488267,0.629883,0.663129,0.678042,0.183609,0.604459,0.176264,0.0114043,0.57937,0.674456,0.0387412,0.469431,0.333943,0.704269,0.231643,0.818193,0.16635,0.216331,0.866158,0.183559,0.650404,0.350372,0.390836,0.958025,0.0285947,0.047401,0.978708,0.81592,0.39797,0.773043,0.272021,0.832485,0.0413704,0.0579498,0.495773,0.542186,0.950052,0.979986,0.555153,0.504158,0.53751,0.639054,0.773411,0.297055,0.0298563,0.496149,0.334205,0.938434,0.313854,0.800581,0.927182,0.458979,0.880671,0.86629,0.637175,0.713578,0.555093,0.805776,0.935718,0.276427,0.593903,0.590574,0.452975,0.157021,0.407133,0.841444,0.140812,0.652359,0.535508,0.628291,0.567467,0.0214074,0.618921,0.20015,0.158028,0.724784,0.731608,0.271761,0.240354,0.556604,0.893499,0.788159,0.835564,0.35741,0.165943,0.476195,0.601925,0.317493,0.340348,0.0177227,0.0711882,0.903754,0.249521,0.501086,0.115745,0.0573425,0.118389,0.194028,0.0948787,0.51787,0.574372,0.81467,0.103274,0.672822,0.697223,0.898022,0.379624,0.366542,0.199302,0.576436,0.744162,0.869383,0.348617,0.451876,0.667461,0.00247669,0.397917,0.942787,0.976417,0.0850109,0.381849,0.955745,0.774571,0.967512,0.48341,0.514121,0.271595,0.419194,0.548665,0.261819,0.5027,0.640952,0.989886,0.255546,0.233911,0.624531,0.192923,0.978882,0.0884674,0.266359,0.443611,0.732569,0.417096,0.550688,0.96898,0.803944,0.39108,0.0882971,0.579965,0.640113,0.00677276,0.126061,0.981028,0.743715,0.394585,0.539835,0.51438,0.332422,0.841981,0.428337,0.896329,0.746482,0.965668,0.38503,0.948131,0.615401,0.148064,0.42763,0.897917,0.312319,0.938252,0.910431,0.318856,0.828055,0.380227,0.440003,0.922481,0.94173,0.45732,0.556886,0.747345,0.642016,0.813962,0.95006,0.221229,0.76231,0.48228,0.834511,0.652714,0.717453,0.916216,0.471486,0.537152,0.650356,0.269492,0.377198,0.0823536,0.808079,0.704091,0.556065,0.328532,0.185374,0.875299,0.485393,0.972809,0.793479,0.715341,0.205428,0.815724,0.296208,0.333837,0.279774,0.975318,0.166776,0.85475,0.638669,0.520342,0.577459,0.322597,0.506907,0.508792,0.0951903,0.998556,0.931826,0.14946,0.212711,0.707239,0.0174717,0.155394,0.290575,0.87923,0.577892,0.395577,0.183356,0.649254,0.514875,0.332673,0.575248,0.141958,0.676725,0.636845,0.853651,0.0772018,0.430119,0.812579,0.844266,0.0120516,0.633213,0.82318,0.618009,0.745008,0.598607,0.192501,0.49381,0.21331,0.610919,0.00424153,0.943787,0.937799,0.91994,0.983233,0.183001,0.420755,0.319018,0.840573,0.767253,0.897388,0.995758,0.310471,0.641626,0.889685,0.514066,0.652051,0.579285,0.859703,0.0156761,0.0388125,0.846728,0.383831,0.608612,0.0843534,0.417492,0.539859,0.0301151,0.564383,0.100165,0.642723,0.841384,0.619097,0.00374085,0.544426,0.812529,0.584603,0.81069,0.902545,0.00375897,0.75901,0.294979,0.445553,0.344634,0.774094,0.892708,0.683454,0.485859,0.771241,0.182166,0.518523,0.146663,0.63462,0.266836,0.401967,0.806352,0.640045,0.425259,0.0917304,0.569181,0.243722,0.395456,0.643775,0.756745,0.820797,0.698557,0.87188,0.975684,0.152328,0.659724,0.511608,0.750202,0.0494223,0.921271,0.193174,0.0386497,0.825999,0.660296,0.0395679,0.328092,0.933047,0.239686,0.764922,0.439435,0.427482,0.413557,0.864626,0.25303,0.741594,0.0265285,0.947491,0.00412446,0.295757,0.395808,0.434451,0.521459,0.196239,0.39467,0.933494,0.0887285,0.315411,0.481266,0.420832,0.904189,0.699749,0.438416,0.464607,0.379601,0.392164,0.30332,0.0672506,0.263089,0.966213,0.137254,0.559501,0.575228,0.583815,0.913453,0.869153,0.487035,0.658701,0.402893,0.48948,0.250221,0.131758,0.0756485,0.813155,0.563626,0.395365,0.88548,0.188872,0.961151,0.455056,0.840901,0.936274,0.186938,0.895802,0.300123,0.662191,0.931073,0.0442873,0.486494,0.0856652,0.717844,0.863739,0.582447,0.350306,0.677542,0.442407,0.931195,0.937375,0.98573,0.0834165,0.372004,0.909208,0.181517,0.865357,0.947557,0.458114,0.150131,0.640093,0.801713,0.900135,0.116791,0.747181,0.160864,0.495524,0.496458,0.526224,0.874575,0.568047,0.610473,0.261185,0.774619,0.041803,0.0683404,0.666732,0.529712,0.869217,0.0100992,0.472295,0.0515682,0.0463108,0.597628,0.885362,0.19291,0.8708,0.887176,0.522977,0.544627,0.119254,0.186754,0.925978,0.774883,0.784093,0.586172,0.527364,0.431507,0.985632,0.374053,0.636652,0.51725,0.840163,0.547356,0.348214,0.388344,0.266912,0.116519,0.326214,0.18076,0.257707,0.584923,0.0416507,0.387003,0.66205,0.0704982,0.0778935,0.0397091,0.866318,0.821115,0.840182,0.0632078,0.837308,0.796135,0.616796,0.113392,0.783345,0.279203,0.540597,0.748011,0.748935,0.646242,0.722234,0.962228,0.914664,0.0255243,0.526242,0.0405614,0.445104,0.61203,0.812517,0.412549,0.86898,0.140788,0.163368,0.754873,0.604928,0.787508,0.289854,0.0818282,0.189808,0.428586,0.660552,0.448961,0.890499,0.556009,0.742602,0.461542,0.456317,0.105464,0.587441,0.46692,0.752585,0.792772,0.811858,0.00420445,0.854093,0.0613613,0.281327,0.853962,0.873696,0.783352,0.412109,0.440411,0.994576,0.836916,0.864135,0.565803,0.947026,0.981796,0.597788,0.662516,0.137724,0.760668,0.716034,0.298467,0.610531,0.348749,0.0871709,0.991706,0.607492,0.701544,0.484572,0.179699,0.237321,0.26282,0.745718,0.0640967,0.12217,0.444571,0.879373,0.207436,0.245732,0.201585,0.457848,0.41373,0.440775,0.803335,0.489254,0.311852,0.453119,0.0520071,0.0210184,0.635467,0.222222,0.814334,0.302742,0.816441,0.189872,0.980182,0.661204,0.839786,0.351264,0.508376,0.259242,0.415309,0.468723,0.436697,0.33196,0.259933,0.906047,0.432514,0.193949,0.0248832,0.343891,0.466679,0.729551,0.866724,0.200745,0.045662,0.879771,0.70705,0.749206,0.767047,0.666972,0.180343,0.73389,0.142668,0.579863,0.0864717,0.141403,0.616911,0.969416,0.0645861,0.214795,0.372431,0.835668,0.706562,0.851905,0.0481055,0.46104,0.690781,0.859395,0.650456,0.194903,0.502733,0.244195,0.381334,0.556048,0.613824,0.50097,0.833998,0.480153,0.409535,0.0826795,0.360088,0.591865,0.972515,0.452064,0.577978,0.203955,0.00111622,0.0314919,0.60801,0.908602,0.650444,0.171744,0.601854,0.295202,0.0413385,0.884061,0.408439,0.996016,0.660058,0.700463,0.669633,0.383162,0.0354187,0.14042,0.196994,0.719294,0.782703,0.0609782,0.915604,0.788337,0.266393,0.888563,0.408624,0.186004,0.0974208,0.644824,0.285994,0.814321,0.761675,0.669558,0.634619,0.590927,0.0756625,0.371082,0.621877,0.00929576,0.994636,0.906974,0.834833,0.115355,0.558669,0.411457,0.46079,0.836931,0.302284,0.573152,0.528366,0.0247706,0.840751,0.83854,0.389489,0.290135,0.973679,0.634605,0.505601,0.271928,0.85143,0.736839,0.301436,0.603429,0.278539,0.650472,0.909937,0.190427,0.639779,0.806133,0.111495,0.692575,0.2997,0.531118,0.727479,0.923873,0.638535,0.857442,0.330392,0.631842,0.00271654,0.861242,0.186615,0.968752,0.68553,0.928434,0.052611,0.140087,0.223364,0.321581,0.0925884,0.957336,0.421045,0.299411,0.817456,0.822328,0.557369,0.218046,0.490449,0.792214,0.510418,0.134189,0.361313,0.000380814,0.807082,0.40557,0.250783,0.613011,0.306961,0.612243,0.920284,0.794906,0.667023,0.677511,0.0111587,0.17864,0.908431,0.658768,0.952293,0.424142,0.0524555,0.469896,0.535568,0.530738,0.349291,0.825321,0.46255,0.323722,0.895061,0.363114,0.357017,0.251397,0.871318,0.199509,0.231987,0.283628,0.0469353,0.592868,0.626743,0.427541,0.446008,0.957224,0.298511,0.625074,0.918591,0.923001,0.942712,0.375759,0.179674,0.7296,0.628373,0.00823283,0.186712,0.0812827,0.516493,0.341724,0.837992,0.918342,0.241001,0.408406,0.493787,0.199086,0.69089,0.011018,0.596102,0.422594,0.74123,0.880407,0.130832,0.275571,0.561374,0.109243,0.263649,0.414799,0.0250902,0.553104,0.861829,0.307119,0.984395,0.34066,0.933237,0.791559,0.598385,0.0638734,0.545835,0.286551,0.39212,0.132561,0.692562,0.696407,0.894227,0.83827,0.815841,0.86027,0.687543,0.0118392,0.879633,0.634268,0.816056,0.863922,0.180628,0.178393,0.395414,0.56904,0.512334,0.326109,0.233169,0.268446,0.234428,0.549914,0.0553952,0.697216,0.350345,0.152441,0.369201,0.558719,0.256184,0.209011,0.319568,0.737531,0.0340596,0.274982,0.72521,0.225566,0.422926,0.98672,0.198086,0.165335,0.866956,0.0518641,0.105889,0.229516,0.578467,0.00322896,0.50357,0.324148,0.592293,0.461067,0.586428,0.74574,0.629549,0.485497,0.487104,0.147738,0.0210758,0.0638345,0.867767,0.0374904,0.0230073,0.187659,0.0569575,0.453075,0.77378,0.0603806,0.767542,0.928056,0.596976,0.938562,0.945086,0.889061,0.543747,0.045367,0.535231,0.0694039,0.286063,0.856497,0.489732,0.84713,0.432785,0.796688,0.814308,0.890949,0.487007,0.226332,0.945903,0.333922,0.659287,0.279753,0.793693,0.838207,0.788903,0.31445,0.664956,0.216993,0.556449,0.658264,0.374768,0.769314,0.843541,0.671478,0.102354,0.256189,|0.749938,0.100405,0.761935,0.271868,0.775615,0.0771344,0.879478,0.248524,0.727826,0.0442688,0.262433,0.170631,0.262439,0.929993,0.567763,0.163233,0.815832,0.684275,0.366804,0.905082,0.183151,0.0397425,0.223389,0.272062,0.70977,0.640392,0.499835,0.723321,0.176593,0.70408,0.998116,0.81645,0.74407,0.131992,0.698718,0.731658,0.907812,0.0860605,0.185933,0.182128,0.52536,0.119519,0.45015,0.821261,0.825397,0.484694,0.990409,0.651497,0.936231,0.708909,0.387183,0.279038,0.617852,0.450439,0.947361,0.742789,0.105544,0.227279,0.531979,0.949958,0.468498,0.682547,0.874933,0.340331,0.981961,0.214236,0.834804,0.135058,0.457211,0.22985,0.50731,0.0224587,0.189729,0.936606,0.597049,0.27971,0.384666,0.0295959,0.966776,0.0541568,0.836878,0.777478,0.829401,0.96531,0.199092,0.300237,0.528232,0.292028,0.7442,0.987475,0.282846,0.770316,0.306797,0.215676,0.910883,0.167117,0.630781,0.925784,0.234579,0.546105,0.879375,0.492123,0.233691,0.0572304,0.715086,0.61676,0.919535,0.981926,0.696115,0.928833,0.516621,0.0755941,0.99237,0.284951,0.689961,0.822755,0.704905,0.0838524,0.352861,0.567608,0.253252,0.537849,0.285968,0.364493,0.84925,0.501175,0.319657,0.0581585,0.456271,0.013467,0.860213,0.922885,0.844293,0.3289,0.692248,0.400126,0.192709,0.196324,0.102051,0.856428,0.0307912,0.483457,0.772296,0.787885,0.714147,0.4995,0.887629,0.797291,0.864569,0.882571,0.191537,0.310751,0.432142,0.861044,0.122791,0.710337,0.35742,0.191644,0.829956,0.686305,0.894042,0.0619813,0.835604,0.140544,0.254973,0.221833,0.783673,0.180362,0.27164,0.518939,0.403105,0.677014,0.779171,0.366312,0.922415,0.739828,0.135652,0.171206,0.421515,0.776916,0.206363,0.890576,0.622538,0.0469639,0.591471,0.453663,0.518283,0.453042,0.60557,0.66468,0.702497,0.716664,0.617272,0.314405,0.767537,0.862679,0.740873,0.816888,0.982722,0.730318,0.854417,0.851062,0.292587,0.942642,0.389472,0.845158,0.0536187,0.656498,0.939485,0.534485,0.0300496,0.484944,0.845674,0.465752,0.26249,0.249168,0.982218,0.0184256,0.453887,0.404183,0.927089,0.0324406,0.667748,0.991355,0.650699,0.489486,0.40129,0.676555,0.291898,0.91065,0.618702,0.391763,0.0229674,0.680774,0.327827,0.0180811,0.123557,0.316483,0.276058,0.946401,0.899383,0.412687,0.900817,0.996742,0.302397,0.123221,0.988103,0.733818,0.641434,0.125919,0.690242,0.562893,0.222268,0.0630856,0.494091,0.834497,0.771266,0.942314,0.503143,0.399637,0.108013,0.158307,0.866898,0.225222,0.069734,0.00204271,0.769211,0.88092,0.676026,0.679637,0.0534327,0.256916,0.511615,0.962694,0.424345,0.893772,0.315698,0.0405432,0.74547,0.698207,0.966856,0.625747,0.782492,0.179613,0.248953,0.462044,0.601871,0.422196,0.195198,0.583054,0.190273,0.853425,0.597041,0.861919,0.859688,0.920429,0.651455,0.504202,0.411789,0.0569062,0.0944878,0.726559,0.878829,0.996464,0.976091,0.179529,0.671199,0.330263,0.00380349,0.821403,0.0116912,0.96173,0.637431,0.217325,0.18199,0.24963,0.760883,0.557403,0.448725,0.0140998,0.507279,0.350094,0.537557,0.977785,0.19388,0.68125,0.793221,0.305457,0.518688,0.71897,0.631388,0.956337,0.0233676,0.519514,0.267153,0.930162,0.762745,0.870778,0.1987,0.4034,0.508622,0.33989,0.964463,0.459577,0.325951,0.60097,0.250453,0.120212,0.991538,0.463452,0.611736,0.101595,0.780636,0.0183746,0.255219,0.602431,0.535885,0.712734,0.36061,0.306745,0.905029,0.818143,0.992285,0.213446,0.0785421,0.252467,0.880289,0.26498,0.602057,0.169439,0.477708,0.372588,0.373107,0.160558,0.863249,0.0283284,0.830847,0.768688,0.34771,0.621474,0.783209,0.34324,0.72766,0.281706,0.620263,0.28918,0.540668,0.86441,0.129723,0.233544,0.913973,0.638945,0.389587,0.61859,0.292443,0.40077,0.387603,0.965144,0.496188,0.324069,0.428681,0.23582,0.19348,0.324558,0.551293,0.0207655,0.424729,0.318519,0.0353904,0.25151,0.44257,0.16407,0.720789,0.326215,0.90381,0.862812,0.299611,0.324862,0.951709,0.645525,0.676539,0.0405542,0.595662,0.252738,0.590606,0.0108364,0.615458,0.0607141,0.814513,0.313244,0.0388997,0.647781,0.188746,0.796117,0.428212,0.630761,0.859464,0.714594,0.404459,0.799965,0.736106,0.700129,0.116835,0.273993,0.473566,0.508411,0.676958,0.447308,0.366078,0.775126,0.150133,0.275131,0.981735,0.851363,0.608516,0.623059,0.684674,0.806027,0.343207,0.859004,0.736583,0.170924,0.332717,0.0275491,0.194167,0.110854,0.523743,0.336146,0.699054,0.833993,0.24549,0.444194,0.552752,0.560256,0.661638,0.608195,0.789563,0.00707328,0.355464,0.68487,0.982875,0.00232321,0.636161,0.755861,0.111126,0.345011,0.36763,0.943732,0.0324305,0.468606,0.610547,0.0994332,0.694991,0.187133,0.0472596,0.280612,0.323706,0.913318,0.0694525,0.898463,0.878518,0.213311,0.969824,0.766855,0.313104,0.950947,0.365589,0.99812,0.424685,0.948289,0.603668,0.258486,0.975831,0.715614,0.65233,0.385041,0.24996,0.488286,0.853861,0.128378,0.435372,0.647901,0.426633,0.458476,0.772311,0.69316,0.0286038,0.671488,0.779605,0.7464,0.570753,0.537332,0.955457,0.0763577,0.490422,0.206729,0.364005,0.0571733,0.285008,0.894956,0.292948,0.218345,0.183276,0.18256,0.814851,0.00438529,0.482742,0.804712,0.35241,0.715688,0.774867,0.543264,0.619869,0.607476,0.373996,0.300935,0.38768,0.83399,0.519019,0.164695,0.592319,0.838508,0.793055,0.163782,0.278031,0.618411,0.799562,0.78531,0.479125,0.755708,0.67304,0.56749,0.6168,0.985271,0.969792,0.654501,0.419107,0.781567,0.172293,0.788838,0.40857,0.579724,0.230137,0.198884,0.767476,0.856165,0.856875,0.168081,0.72748,0.515066,0.0899238,0.0696411,0.342518,0.381536,0.282814,0.746346,0.470755,0.936502,0.815461,0.528544,0.699758,0.930021,0.414261,0.0705054,0.671373,0.65835,0.657621,0.261618,0.0739799,0.465092,0.426555,0.516224,0.59326,0.652177,0.874885,0.898476,0.37344,0.924321,0.244838,0.537926,0.165459,0.163713,0.778503,0.238659,0.290959,0.51615,0.548465,0.893184,0.569803,0.816918,0.667977,0.436907,0.750891,0.4315,0.150782,0.0139757,0.181391,0.0732605,0.100559,0.961587,0.921537,0.039957,0.144949,0.705365,0.657571,0.809269,0.723832,0.803359,0.731503,0.315123,0.34329,0.249667,0.401885,0.261549,0.974956,0.153729,0.37669,0.762783,0.151925,0.316337,0.685265,0.456171,0.0861444,0.841926,0.267507,0.843861,0.837208,0.90579,0.223985,0.77943,0.666819,0.588979,0.717162,0.278935,0.783698,0.188477,0.278296,0.0735495,0.441905,0.44141,0.192532,0.668051,0.780265,0.977798,0.554314,0.289208,0.40196,0.908038,0.469886,0.933428,0.796814,0.426092,0.665473,0.498226,0.521029,0.940695,0.572742,0.491825,0.133145,0.776774,0.0586842,0.384026,0.356459,0.327893,0.286637,0.167681,0.0676528,0.967897,0.366775,0.645803,0.816567,0.402791,0.355419,0.115429,0.543317,0.791841,0.421625,0.390501,0.61039,0.843972,0.792569,0.0201929,0.209224,0.935997,0.751604,0.559171,0.812404,0.487808,0.61315,0.198217,0.911892,0.261654,0.713153,0.977277,0.154265,0.265406,0.201391,0.0662274,0.443489,0.658529,0.528392,0.462162,0.286128,0.289317,0.0613784,0.827341,0.994772,0.416728,0.77121,0.66264,0.328701,0.576514,0.387262,0.323082,0.275604,0.555654,0.0755336,0.211445,0.540658,0.683825,0.805578,0.595859,0.254702,0.116813,0.242055,0.645788,0.975168,0.289244,0.878965,0.144077,0.896148,0.6512,0.450174,0.377276,0.87149,0.611097,0.753377,0.49157,0.858246,0.380525,0.453932,0.433588,0.363714,0.854797,0.841901,0.951284,0.935586,0.656926,0.833982,0.352457,0.185174,0.376491,0.0143487,0.768374,0.738041,0.188494,0.34133,0.495195,0.119563,0.757594,0.815869,0.707484,0.388636,0.194331,0.64218,0.332837,0.0210624,0.629917,0.23157,0.170907,0.664901,0.0797205,0.688975,0.28924,0.697758,0.904015,0.690548,0.717405,0.729106,0.172571,0.142956,0.957416,0.4109,0.817966,0.522528,0.025769,0.848899,0.235931,0.30868,0.506167,0.938316,0.462303,0.537087,0.57455,0.882202,0.664271,0.242338,0.31923,0.607419,0.283928,0.442027,0.460912,0.335047,0.639874,0.962585,0.579498,0.591368,0.702306,0.895569,0.638902,0.884824,0.0901769,0.663411,0.160578,0.429742,0.614044,0.251135,0.176383,0.573678,0.763817,0.104456,0.32554,0.863957,0.840294,0.241786,0.863735,0.808573,0.320271,0.419033,0.410678,0.0290418,0.251501,0.686559,0.4222,0.192885,0.971221,0.97497,0.138571,0.761139,0.386418,0.238428,0.607738,0.489928,0.23409,0.514799,0.569396,0.779488,0.454559,0.617718,0.213561,0.242215,0.293815,0.342293,0.242528,0.0664659,0.113149,0.0426256,0.751995,0.0499776,0.593808,0.87689,0.460646,0.917073,0.0540033,0.991399,0.692883,0.377202,0.916112,0.527432,0.580365,0.924436,0.753976,0.714853,0.104269,0.551191,0.341299,0.51448,0.366956,0.740036,0.335343,0.815627,0.250211,0.894256,0.735225,0.708896,0.286605,0.0875652,0.577598,0.12882,0.0766009,0.69811,0.897981,0.710938,0.764831,0.459897,0.872339,0.0930275,0.609719,0.429256,0.947951,0.425294,0.596399,0.345424,0.102636,0.20939,0.281315,0.959497,0.645063,0.939232,0.118143,0.876743,0.802267,0.777222,0.990788,0.0310898,0.429799,0.632896,0.613358,0.664601,0.514461,0.332704,0.23832,0.669335,0.523605,0.127159,0.0809688,0.0668861,0.138685,0.672966,0.973963,0.472925,0.15352,0.0802917,0.19365,0.750526,0.644961,0.460484,0.601141,0.124297,0.872525,0.9909,0.239604,0.443062,0.216454,0.184957,0.13496,0.813017,0.572184,0.235043,0.511717,0.967492,0.314874,0.87072,0.387297,0.348845,0.302983,0.00341374,0.63137,0.534035,0.922938,|0.67527,0.108559,0.328774,0.291366,0.253928,0.372194,0.810619,0.687768,0.064913,0.0515527,0.791603,0.890362,0.0750052,0.680984,0.743832,0.494797,0.938247,0.062994,0.727906,0.584032,0.644442,0.384624,0.856443,0.283417,0.233882,0.895637,0.713712,0.540207,0.907428,0.0473313,0.514491,0.736709,0.38669,0.703479,0.739803,0.0304757,0.59592,0.691449,0.284899,0.446603,0.0336038,0.650737,0.276951,0.963114,0.144507,0.932535,0.0901515,0.981982,0.456494,0.419108,0.387236,0.36455,0.834672,0.130267,0.733608,0.91935,0.222923,0.317279,0.923775,0.333825,0.226364,0.738573,0.899115,0.601119,0.99422,0.692438,0.315279,0.678598,0.239757,0.615112,0.608695,0.134408,0.241563,0.0866383,0.481956,0.714962,0.270503,0.311308,0.706113,0.37781,0.101765,0.582054,0.201371,0.777492,0.367722,0.282926,0.195883,0.535954,0.245287,0.770958,0.32174,0.230363,0.288959,0.365335,0.983486,0.461381,0.931893,0.0632207,0.887219,0.815349,0.739177,0.33167,0.944477,0.89233,0.335464,0.399041,0.182973,0.592027,0.0981779,0.217449,0.36107,0.465639,0.818133,0.0143143,0.597384,0.769271,0.620183,0.825967,0.952572,0.35441,0.524512,0.886866,0.867231,0.569072,0.27037,0.162429,0.733798,0.950507,0.493914,0.178539,0.462384,0.358842,0.272901,0.4499,0.187431,0.552526,0.618575,0.922211,0.284633,0.280559,0.237517,0.261353,0.819775,0.738835,0.321552,0.672745,0.274882,0.210869,0.119102,0.997964,0.493691,0.726676,0.24225,0.150122,0.397891,0.283167,0.196614,0.93174,0.481783,0.879662,0.597171,0.222587,0.697563,0.0509255,0.794883,0.379645,0.12077,0.733141,0.760625,0.179808,0.697879,0.818521,0.449578,0.349782,0.541653,0.13486,0.834387,0.871508,0.834913,0.198309,0.775729,0.803143,0.483148,0.150843,0.112013,0.650949,0.164766,0.687849,0.39474,0.128655,0.439112,0.427686,0.663547,0.551163,0.404117,0.815453,0.844984,0.341671,0.655366,0.832752,0.252558,0.236661,0.902217,0.375552,0.975747,0.424635,0.0131639,0.880734,0.758497,0.797649,0.0968382,0.880305,0.0899298,0.463658,0.264048,0.0254453,0.11239,0.380674,0.977806,0.607568,0.828378,0.640811,0.356213,0.0730975,0.0232484,0.279194,0.640199,0.0796605,0.168315,0.206158,0.268805,0.579831,0.919989,0.408607,0.377479,0.708114,0.0809915,0.448129,0.595397,0.244019,0.498416,0.855675,0.0594766,0.120156,0.908208,0.584745,0.00773203,0.283408,0.321606,0.298296,0.0561401,0.367741,0.216294,0.500757,0.843562,0.599866,0.867493,0.0925069,0.0518851,0.915122,0.710872,0.452088,0.134383,0.0425465,0.851935,0.843057,0.218663,0.8124,0.0428373,0.393334,0.499251,0.295484,0.950815,0.0170422,0.0796878,0.820671,0.867092,0.2842,0.799257,0.950979,0.51892,0.663851,0.264734,0.753496,0.516848,0.648363,0.600884,0.764804,0.151896,0.301057,0.0101991,0.469119,0.0805487,0.713397,0.167422,0.370593,0.763051,0.167605,0.255901,0.947819,0.722437,0.500411,0.000496328,0.163878,0.480803,0.701537,0.198142,0.613675,0.45496,0.899606,0.807676,0.5425,0.237434,0.828859,0.714807,0.510878,0.0075509,0.540243,0.102914,0.262722,0.923113,0.948015,0.070457,0.783339,0.418682,0.44972,0.553007,0.440626,0.991751,0.279134,0.0833018,0.148221,0.484019,0.0358895,0.297622,0.863105,0.693754,0.227514,0.486647,0.839532,0.920184,0.196807,0.17917,0.6015,0.854861,0.602054,0.958049,0.654649,0.712234,0.954669,0.340207,0.570689,0.395968,0.0260162,0.420349,0.656041,0.618067,0.43486,0.309299,0.880903,0.767695,0.928677,0.752185,0.838289,0.227158,0.0394993,0.519648,0.32089,0.541584,0.815972,0.734171,0.751939,0.849399,0.81075,0.406948,0.709762,0.746034,0.410557,0.165561,0.427044,0.259479,0.9714,0.0405186,0.387314,0.263658,0.758179,0.555643,0.306565,0.16051,0.766143,0.0189561,0.443841,0.0845613,0.779011,0.214535,0.586989,0.0182075,0.379619,0.144971,0.170967,0.482514,0.345783,0.160135,0.633553,0.181753,0.218353,0.926768,0.636803,0.598917,0.809267,0.342892,0.981414,0.609586,0.137384,0.158136,0.10758,0.97412,0.110002,0.12695,0.601203,0.0795598,0.198402,0.711639,0.748492,0.91695,0.0105392,0.355606,0.962771,0.209785,0.285038,0.189079,0.193702,0.649206,0.0753343,0.485568,0.586654,0.91028,0.860288,0.344858,0.0187988,0.556939,0.843465,0.410614,0.999333,0.468369,0.807413,0.738421,0.62857,0.177384,0.460872,0.864516,0.636402,0.938798,0.996232,0.405901,0.872634,0.25067,0.706604,0.0359972,0.609796,0.379672,0.0127623,0.852655,0.923203,0.752003,0.575,0.527142,0.00772053,0.620225,0.722539,6.41942e-05,0.588001,0.910393,0.502372,0.462247,0.0833388,0.235889,0.655383,0.822583,0.16544,0.379484,0.518074,0.171789,0.822385,0.537911,0.394214,0.914268,0.119424,0.607933,0.560918,0.28611,0.575352,0.529869,0.934639,0.305351,0.810865,0.207047,0.959131,0.0209463,0.683802,0.239266,0.919382,0.433003,0.998734,0.312895,0.252434,0.354656,0.515655,0.575439,0.0243188,0.0953039,0.941974,0.524295,0.350016,0.759705,0.124421,0.38234,0.238924,0.0849225,0.939507,0.901993,0.270709,0.78103,0.581274,0.859428,0.361378,0.562671,0.0509696,0.0838742,0.425348,0.91277,0.830379,0.487998,0.746297,0.0959761,0.612461,0.414483,0.802854,0.978583,0.0360186,0.828314,0.560755,0.269253,0.406707,0.934765,0.995365,0.948186,0.339812,0.110539,0.666186,0.940472,0.133195,0.691817,0.583667,0.982388,0.640901,0.22247,0.365118,0.0099169,0.717876,0.151773,0.606671,0.238881,0.594759,0.00487584,0.612497,0.843662,0.0445231,0.268941,0.400406,0.883435,0.47137,0.859762,0.120089,0.327639,0.959215,0.897079,0.463603,0.868137,0.373579,0.921863,0.922189,0.412433,0.203773,0.522443,0.770186,0.851941,0.78602,0.482411,0.693569,0.894267,0.299002,0.695541,0.316915,0.612003,0.79491,0.0168814,0.23217,0.352574,0.951078,0.541928,0.500317,0.388845,0.614876,0.890675,0.829025,0.609508,0.850694,0.0545571,0.904276,0.0900846,0.952883,0.0700981,0.326306,0.968895,0.727755,0.208864,0.50967,0.48039,0.0326935,0.0135152,0.512669,0.444557,0.349972,0.751418,0.0049293,0.839317,0.988944,0.873034,0.872679,0.956953,0.865651,0.593145,0.631488,0.998166,0.920019,0.521218,0.385278,0.518381,0.615223,0.633319,0.122526,0.903395,0.0808963,0.677253,0.646327,0.174649,0.0718439,0.933253,0.394558,0.671608,0.702639,0.632818,0.37395,0.742088,0.277721,0.0948457,0.39999,0.8832,0.832421,0.587651,0.482735,0.162693,0.885396,0.149421,0.172261,0.292236,0.268664,0.933581,0.0166214,0.448551,0.179929,0.742572,0.352258,0.0083794,0.0292235,0.828704,0.0808425,0.710437,0.0556238,0.246497,0.585379,0.380334,0.30316,0.816752,0.0431107,0.533233,0.0835353,0.584049,0.567909,0.374471,0.592832,0.448193,0.562034,0.283707,0.628035,0.881822,0.356371,0.264592,0.738462,0.306657,0.973644,0.218817,0.967251,0.917947,0.370222,0.176602,0.11327,0.646501,0.913378,0.51572,0.057777,0.412509,0.503867,0.94196,0.895776,0.0628564,0.411801,0.970478,0.343348,0.17829,0.390915,0.120837,0.976951,0.274233,0.71234,0.0335816,0.84419,0.876461,0.928293,0.463056,0.987984,0.885697,0.885925,0.712313,0.893812,0.420657,0.59171,0.922113,0.0926712,0.0953028,0.0124267,0.497553,0.274668,0.292344,0.465578,0.503422,0.239634,0.310998,0.114177,0.150758,0.326419,0.632689,0.208679,0.403073,0.0641978,0.820899,0.673846,0.355112,0.625881,0.982817,0.402152,0.515437,0.920148,0.979408,0.269941,0.595136,0.377991,0.527039,0.103223,0.89019,0.355197,0.311595,0.567937,0.767544,0.32925,0.199112,0.80942,0.958862,0.473823,0.766725,0.271375,0.273939,0.910149,0.809614,0.904197,0.900134,0.790127,0.374438,0.468543,0.620296,0.0730549,0.536296,0.19423,0.47915,0.78149,0.0910944,0.502398,0.607828,0.100695,0.091031,0.652315,0.896367,0.75269,0.118368,0.913736,0.598043,0.934016,0.310822,0.0663117,0.997693,0.360971,0.955182,0.605201,0.894234,0.454818,0.896252,0.975108,0.430578,0.379242,0.745957,0.997328,0.421949,0.723969,0.856866,0.786155,0.0145528,0.900858,0.165066,0.216145,0.0348507,0.701384,0.96372,0.00498635,0.371885,0.810003,0.841005,0.939791,0.904571,0.171756,0.99493,0.280866,0.865217,0.408237,0.674562,0.567071,0.0747106,0.852219,0.832974,0.933613,0.926846,0.515023,0.388175,0.621753,0.0942622,0.924215,0.931678,0.445621,0.282967,0.212823,0.732823,0.501653,0.998481,0.475619,0.27998,0.0735744,0.16493,0.181608,0.671176,0.0773066,0.428093,0.824816,0.273646,0.553909,0.776641,0.529457,0.240599,0.0137374,0.82542,0.213218,0.904263,0.64985,0.487215,0.0634219,0.895996,0.0135713,0.320288,0.0820851,0.441844,0.812578,0.156915,0.231868,0.00627387,0.633087,0.799963,0.96613,0.212031,0.05526,0.22237,0.340878,0.190609,0.288205,0.829884,0.978526,0.692861,0.345425,0.624652,0.26979,0.0856947,0.866093,0.271423,0.20949,0.927661,0.0785335,0.76196,0.756603,0.989955,0.631312,0.921062,0.145584,0.269976,0.193009,0.64439,0.0539941,0.170487,0.715872,0.547448,0.283755,0.854759,0.286673,0.0642761,0.725775,0.184785,0.599015,0.253646,0.210101,0.148858,0.259138,0.316612,0.574168,0.705119,0.335789,0.762006,0.674228,0.116482,0.287934,0.456502,0.737358,0.915675,0.578606,0.78417,0.689976,0.490691,0.740529,0.138528,0.336195,0.960082,0.0733222,0.328186,0.185758,0.607855,0.305634,0.389059,0.441671,0.939879,0.861997,0.544253,0.473907,0.168923,0.713151,0.820214,0.634646,0.389873,0.712582,0.60757,0.713329,0.172726,0.11428,0.304239,0.760174,0.392057,0.675839,0.474704,0.641635,0.201614,0.141099,0.514321,0.2929,0.51405,0.325477,0.582693,0.469177,0.376744,0.605512,0.882402,0.00795031,0.124456,0.0481663,0.17042,0.71684,|0.853376,0.0808595,0.298035,0.768653,0.634436,0.794714,0.779681,0.459248,0.659924,0.954065,0.283979,0.320271,0.253672,0.686027,0.848925,0.672637,0.674357,0.14078,0.103799,0.732187,0.1038,0.407027,0.629562,0.791571,0.994503,0.805466,0.405976,0.920306,0.859384,0.970243,0.0707506,0.26806,0.507182,0.137193,0.979982,0.391387,0.333484,0.598834,0.185106,0.369621,0.174712,0.907283,0.415374,0.698867,0.99715,0.604758,0.55652,0.265924,0.468025,0.0704885,0.954802,0.412995,0.786655,0.542574,0.687811,0.799319,0.102372,0.3574,0.623231,0.861611,0.238317,0.240314,0.225611,0.969886,0.855925,0.10749,0.449487,0.167889,0.490476,0.228205,0.644863,0.684291,0.170253,0.328887,0.473667,0.29388,0.108054,0.83321,0.437162,0.313688,0.613175,0.411965,0.612969,0.332659,0.172905,0.443538,0.297018,0.123598,0.254593,0.558042,0.270885,0.695328,0.667887,0.44956,0.471049,0.964021,0.629978,0.135141,0.178868,0.435113,0.838333,0.779275,0.515763,0.0410965,0.606284,0.480064,0.435193,0.382972,0.840676,0.706965,0.26708,0.63172,0.038476,0.0310153,0.417014,0.732709,0.777729,0.664864,0.732947,0.458015,0.170465,0.920099,0.615381,0.323468,0.253925,0.23843,0.311592,0.10008,0.670439,0.799255,0.818546,0.704603,0.429477,0.587827,0.152744,0.306377,0.311577,0.950201,0.0387216,0.693371,0.640218,0.455924,0.349127,0.479322,0.747542,0.659767,0.0477086,0.255347,0.840192,0.883583,0.448684,0.128435,0.608659,0.187034,0.139532,0.990586,0.417602,0.399105,0.201155,0.366459,0.227279,0.784651,0.385171,0.790446,0.0645026,0.637141,0.941608,0.150547,0.905722,0.740735,0.488761,0.552988,0.721159,0.676428,0.563051,0.0535908,0.726181,0.91641,0.683825,0.83189,0.230626,0.373434,0.855604,0.0383053,0.469959,0.203791,0.969107,0.94316,0.930953,0.0406308,0.926971,0.966917,0.835513,0.314519,0.632574,0.242644,0.746739,0.910415,0.138368,0.857937,0.251344,0.620399,0.192114,0.8285,0.778409,0.91344,0.683584,0.280775,0.180428,0.56264,0.638666,0.919372,0.609083,0.00835216,0.0485569,0.375436,0.202087,0.917861,0.160845,0.377277,0.0863789,0.266804,0.90321,0.731928,0.913287,0.674446,0.316701,0.846495,0.863547,0.578714,0.111307,0.388086,0.428799,0.740438,0.624174,0.0211463,0.936652,0.880238,0.585481,0.437661,0.839708,0.620858,0.667201,0.422843,0.107371,0.395817,0.362175,0.655487,0.429718,0.525262,0.472985,0.433156,0.678201,0.0766702,0.115944,0.0913123,0.305929,0.190343,0.369349,0.13214,0.721989,0.715802,0.916139,0.975507,0.339593,0.279873,0.218726,0.254136,0.245861,0.838576,0.656018,0.355401,0.494317,0.593349,0.117826,0.609594,0.52128,0.509724,0.632711,0.993625,0.790522,0.678769,0.530849,0.444378,0.859852,0.0736769,0.706999,0.558745,0.805652,0.00978017,0.112396,0.491004,0.294423,0.559819,0.735351,0.827349,0.988828,0.359833,0.666726,0.465516,0.07759,0.312641,0.624452,0.501538,0.792839,0.370515,0.473078,0.205014,0.31134,0.52285,0.173555,0.988641,0.843156,0.17953,0.169295,0.230448,0.965582,0.14322,0.758878,0.0343037,0.177024,0.251393,0.68903,0.157104,0.553177,0.177996,0.0912699,0.373062,0.94708,0.709654,0.0828121,0.264817,0.273135,0.593378,0.793311,0.217344,0.0221739,0.604478,0.920109,0.569085,0.641595,0.4838,0.221753,0.315812,0.746835,0.388781,0.0366895,0.726809,0.761385,0.821877,0.371229,0.657608,0.482903,0.645273,0.120432,0.646397,0.150395,0.684889,0.196795,0.747773,0.364685,0.957502,0.635977,0.698219,0.730637,0.358343,0.946798,0.504885,0.599393,0.946336,0.208895,0.89348,0.373504,0.935144,0.237271,0.3916,0.259876,0.216257,0.499691,0.89417,0.628212,0.87255,0.417202,0.55313,0.660683,0.571164,0.45914,0.581763,0.691335,0.993792,0.169816,0.569178,0.464669,0.0120844,0.163187,0.464094,0.120242,0.0544882,0.657243,0.549139,0.685325,0.576824,0.434082,0.75907,0.265543,0.567747,0.430143,0.74088,0.336724,0.666847,0.688404,0.466124,0.805736,0.107316,0.171948,0.57234,0.912778,0.093601,0.269282,0.681496,0.396152,0.976728,0.317757,0.13837,0.27892,0.307417,0.0321956,0.132421,0.82433,0.837078,0.384327,0.442456,0.902187,0.382898,0.906531,0.968186,0.0698882,0.0639389,0.903398,0.866779,0.0813918,0.533883,0.950304,0.53631,0.942544,0.700885,0.980337,0.99508,0.499636,0.786532,0.493738,0.449335,0.978687,0.318167,0.0869821,0.327497,0.103686,0.358729,0.239574,0.0425187,0.293449,0.982486,0.031299,0.161755,0.698411,0.740922,0.823526,0.00327665,0.604727,0.546779,0.328618,0.909144,0.885177,0.95616,0.482224,0.572713,0.867554,0.54299,0.848551,0.704465,0.618194,0.776984,0.14559,0.771775,0.551645,0.752408,0.504417,0.00759041,0.078945,0.796704,0.0327366,0.311042,0.846716,0.501957,0.759801,0.978642,0.404293,0.015545,0.576309,0.992041,0.798556,0.962752,0.647604,0.309952,0.46925,0.313768,0.876977,0.820982,0.743961,0.827313,0.701771,0.203501,0.808769,0.394394,0.466312,0.479183,0.537192,0.0600714,0.744037,0.116359,0.477227,0.442016,0.308424,0.725839,0.36293,0.134689,0.347447,0.728445,0.0786502,0.918661,0.527969,0.692423,0.0188753,0.524098,0.592092,0.659919,0.947625,0.874416,0.578792,0.411969,0.335475,0.960244,0.502687,0.70707,0.741546,0.803334,0.578605,0.172722,0.366508,0.113491,0.115813,0.932472,0.349906,0.0912328,0.911587,0.225083,0.922609,0.677498,0.239938,0.512843,0.129216,0.466215,0.236016,0.720338,0.880987,0.224241,0.162866,0.0627288,0.686,0.341014,0.703364,0.629669,0.426856,0.466078,0.606867,0.551998,0.238723,0.835675,0.302548,0.375356,0.69685,0.198096,0.400969,0.418483,0.383917,0.238169,0.083855,0.0490044,0.710676,0.735069,0.0786626,0.550626,0.755665,0.524883,0.994185,0.362631,0.761683,0.761772,0.639047,0.800886,0.962983,0.284528,0.507779,0.481922,0.408206,0.742487,0.476904,0.729086,0.33634,0.889455,0.314696,0.569072,0.173041,0.471117,0.696404,0.360127,0.126272,0.619797,0.439712,0.394256,0.246755,0.0211824,0.59415,0.380896,0.296028,0.0292683,0.00023526,0.833362,0.433575,0.666374,0.723141,0.737248,0.626831,0.450477,0.887596,0.936553,0.442179,0.254942,0.825433,0.134234,0.276977,0.585934,0.154812,0.688295,0.883273,0.067605,0.725439,0.509162,0.407175,0.282501,0.166273,0.262315,0.274124,0.769982,0.268052,0.291356,0.386339,0.764972,0.660876,0.466386,0.300707,0.071299,0.697637,0.891197,0.636218,0.0303413,0.461207,0.995476,0.31593,0.750673,0.715621,0.340563,0.661256,0.768627,0.871556,0.497354,0.583309,0.0738567,0.0321084,0.597773,0.580339,0.0160626,0.483178,0.700498,0.0746687,0.420357,0.348272,0.0800708,0.129259,0.402823,0.170516,0.128187,0.151008,0.465632,0.905802,0.441544,0.385358,0.809307,0.0289275,0.143014,0.372614,0.803273,0.271526,0.526906,0.913068,0.68535,0.86229,0.684406,0.480463,0.815603,0.773601,0.112521,0.582591,0.514818,0.950101,0.539552,0.37081,0.521183,0.871115,0.0543842,0.115312,0.475869,0.157768,0.506383,0.226453,0.971486,0.545502,0.278073,0.89367,0.161257,0.829459,0.991694,0.14584,0.747109,0.371728,0.981507,0.0968909,0.79218,0.693018,0.267104,0.81596,0.282469,0.44648,0.119608,0.141697,0.432201,0.645868,0.25482,0.372002,0.661908,0.0676419,0.401895,0.201202,0.697225,0.909239,0.019914,0.0241569,0.201051,0.907291,0.729703,0.680616,0.41799,0.577379,0.59105,0.237314,0.0107242,0.493439,0.196525,0.710692,0.276987,0.46101,0.729855,0.893563,0.51421,0.119047,0.298783,0.0794217,0.731895,0.851101,0.290658,0.269416,0.578886,0.196826,0.442695,0.315149,0.674608,0.549545,0.302659,0.27991,0.250057,0.437634,0.855477,0.731121,0.369249,0.915394,0.42888,0.457121,0.364532,0.459984,0.443266,0.880764,0.968156,0.00641006,0.697688,0.50347,0.64527,0.237956,0.056532,0.97324,0.282324,0.425076,0.848978,0.152419,0.625565,0.370258,0.581149,0.527035,0.585596,0.598713,0.387452,0.836634,0.754159,0.872146,0.146287,0.999166,0.532024,0.819967,0.527546,0.245482,0.41136,0.194079,0.373498,0.902246,0.339094,0.505993,0.837109,0.654893,0.801298,0.998044,0.586164,0.915375,0.834305,0.361185,0.067418,0.266935,0.194753,0.640627,0.330178,0.367325,0.538251,0.228388,0.88344,0.937119,0.352908,0.348852,0.131227,0.748305,0.247407,0.678116,0.638086,0.932549,0.130677,0.449949,0.782823,0.026194,0.057577,0.536798,0.935954,0.076961,0.241837,0.702529,0.612914,0.326982,0.289291,0.252934,0.095592,0.354828,0.5102,0.0057162,0.326057,0.873418,0.803405,0.435409,0.531181,0.277793,0.266525,0.448072,0.200494,0.642923,0.567193,0.856264,0.513356,0.314952,0.500695,0.55599,0.847959,0.44174,0.578685,0.663745,0.762035,0.226984,0.107729,0.935598,0.99437,0.419108,0.068108,0.488797,0.959819,0.441924,0.0898986,0.542817,0.139477,0.321564,0.0284928,0.326815,0.89413,0.380693,0.545537,0.20686,0.655913,0.246715,0.202416,0.110364,0.921484,0.346447,0.751458,0.158104,0.695243,0.367279,0.450221,0.398465,0.118592,0.90231,0.299218,0.0549387,0.812743,0.626711,0.937346,0.564615,0.51818,0.0054515,0.570595,0.765691,0.397086,0.751744,0.69351,0.949794,0.699361,0.613789,0.813512,0.0759568,0.489105,0.828651,0.23123,0.830096,0.919301,0.915499,0.870249,0.42455,0.11877,0.907351,0.848952,0.44882,0.922718,0.517515,0.763438,0.145766,0.554024,0.498793,0.760425,0.890651,0.520466,0.722028,0.582725,0.94609,0.148675,0.798989,0.810201,0.38517,0.827177,0.956566,0.399269,0.334309,0.408593,0.151397,0.125521,0.847212,0.490119,0.702249,0.835194,0.651586,0.955506,0.288257,0.488039,0.328947,0.386927,0.478601,0.240304,0.603044,0.60698,|0.919507,0.531781,0.857807,0.378723,0.931892,0.806325,0.759321,0.319698,0.579799,0.530083,0.285633,0.963719,0.150609,0.263676,0.422455,0.920407,0.597083,0.375615,0.942203,0.407433,0.325159,0.800705,0.157934,0.525729,0.0869547,0.203858,0.121419,0.192576,0.679315,0.2908,0.781751,0.820942,0.315068,0.369671,0.496127,0.554398,0.980469,0.214923,0.252192,0.298794,0.816884,0.791122,0.260545,0.301233,0.00436968,0.4022,0.0102322,0.845216,0.963533,0.0412919,0.41889,0.839039,0.50144,0.160206,0.151059,0.643625,0.439774,0.306801,0.515499,0.405666,0.2115,0.700788,0.410511,0.638991,0.519736,0.620105,0.778018,0.719739,0.168681,0.434433,0.813724,0.794703,0.481084,0.220988,0.835931,0.569179,0.12003,0.815542,0.816625,0.082185,0.458054,0.0459573,0.565201,0.791246,0.525314,0.569758,0.326892,0.402342,0.765598,0.349014,0.430385,0.609958,0.972699,0.0499383,0.364807,0.306594,0.430959,0.459906,0.371166,0.477434,0.949964,0.194736,0.0421337,0.549558,0.00518769,0.811482,0.0935895,0.148362,0.487584,0.183842,0.167491,0.723395,0.347187,0.250919,0.172363,0.104947,0.772577,0.0326633,0.730563,0.766421,0.139613,0.556939,0.18775,0.46448,0.60054,0.561343,0.224184,0.877323,0.0830292,0.043944,0.884702,0.0814562,0.815084,0.121963,0.317165,0.4655,0.972575,0.454927,0.469909,0.181458,0.389109,0.762657,0.996838,0.306013,0.340914,0.648337,0.436572,0.488782,0.315755,0.0132502,0.633277,0.698697,0.817982,0.529491,0.500247,0.2531,0.0243703,0.0116274,0.907029,0.0805122,0.673918,0.964713,0.980173,0.889665,0.258363,0.669522,0.766675,0.950646,0.856784,0.758765,0.280945,0.0581291,0.489623,0.953515,0.873184,0.982346,0.404804,0.495363,0.685244,0.700917,0.943802,0.34766,0.456301,0.888787,0.623255,0.515639,0.949908,0.988417,0.337471,0.293888,0.157859,0.518871,0.193247,0.148665,0.436911,0.149525,0.632013,0.764864,0.198716,0.279043,0.226614,0.614889,0.62218,0.484558,0.854116,0.962162,0.13456,0.049307,0.654067,0.857955,0.961796,0.576656,0.89463,0.229311,0.753473,0.835084,0.161105,0.587149,0.520957,0.767257,0.24815,0.840673,0.644908,0.418547,0.114041,0.526754,0.374458,0.517412,0.395919,0.88518,0.957285,0.568461,0.886145,0.680654,0.830701,0.598824,0.327993,0.526441,0.273116,0.60413,0.186818,0.0725176,0.395359,0.267067,0.714212,0.266811,0.870804,0.0764822,0.377013,0.859494,0.637885,0.683217,0.103633,0.465291,0.771147,0.560171,0.734935,0.845427,0.77636,0.570466,0.831812,0.6525,0.197632,0.350366,0.0859611,0.921879,0.894612,0.814013,0.666948,0.259557,0.226413,0.567763,0.0582361,0.194568,0.571419,0.237335,0.24648,0.645015,0.146486,0.968996,0.0785176,0.101657,0.187031,0.439354,0.721222,0.011826,0.0744263,0.777045,0.30023,0.986913,0.82804,0.166522,0.0995834,0.233445,0.991049,0.993011,0.456511,0.836228,0.293158,0.158427,0.387797,0.681197,0.809825,0.242812,0.533109,0.667938,0.902367,0.500138,0.692435,0.744621,0.575394,0.347839,0.0226167,0.527824,0.665386,0.284448,0.363541,0.0332492,0.153794,0.399459,0.0588723,0.0350164,0.555109,0.200817,0.626901,0.574974,0.645237,0.468778,0.426512,0.642511,0.661527,0.697712,0.876872,0.494713,0.554807,0.421656,0.641918,0.280367,0.913618,0.0235663,0.339935,0.49983,0.507527,0.707556,0.235741,0.220442,0.802748,0.87876,0.464484,0.575694,0.665514,0.352532,0.559007,0.931467,0.953103,0.288895,0.547975,0.584146,0.299255,0.885673,0.577784,0.109637,0.935083,0.206461,0.0588506,0.0663748,0.201134,0.772591,0.0560446,0.866299,0.187351,0.656681,0.0213613,0.785234,0.705594,0.960267,0.311214,0.486091,0.144326,0.544427,0.448781,0.887327,0.239293,0.692592,0.279608,0.881357,0.89963,0.914278,0.480686,0.0562167,0.746966,0.0588753,0.543618,0.166677,0.390658,0.247435,0.800001,0.288365,0.397477,0.878102,0.284431,0.251478,0.759697,0.697192,0.312501,0.976649,0.621724,0.337794,0.470116,0.381213,0.260162,0.418496,0.251711,0.24343,0.681487,0.616779,0.58067,0.0648643,0.0912663,0.874142,0.753303,0.419602,0.320877,0.551984,0.316465,0.151106,0.176455,0.633209,0.660224,0.828564,0.231412,0.434459,0.127022,0.349393,0.28235,0.779052,0.406668,0.431619,0.642923,0.539622,0.751901,0.0586792,0.169501,0.858059,0.340084,0.219889,0.484881,0.366015,0.278464,0.326613,0.723354,0.226245,0.552731,0.864606,0.925428,0.368546,0.451943,0.806448,0.99496,0.911215,0.297508,0.910901,0.660307,0.961175,0.693431,0.620458,0.778401,0.978385,0.559038,0.692961,0.242691,0.517983,0.876468,0.620447,0.74875,0.124896,0.370064,0.49379,0.599692,0.0322292,0.549286,0.347534,0.858834,0.00185484,0.376318,0.714661,0.245823,0.634458,0.520702,0.81125,0.00448722,0.557329,0.325653,0.509888,0.284189,0.315376,0.584912,0.747689,0.128442,0.984275,0.597222,0.131948,0.582892,0.472349,0.199406,0.319957,0.654209,0.408587,0.23247,0.0364431,0.516338,0.00162643,0.723707,0.516518,0.979982,0.357566,0.717581,0.869636,0.506077,0.042748,0.652636,0.192209,0.321209,0.100436,0.282292,0.290569,0.263944,0.802114,0.796539,0.964642,0.28677,0.755865,0.273872,0.120245,0.77287,0.273413,0.0799025,0.674778,0.406037,0.00216067,0.116517,0.859679,0.597282,0.302407,0.349126,0.659038,0.310506,0.00901037,0.385229,0.493231,0.538655,0.446134,0.598385,0.15167,0.811363,0.72095,0.641496,0.322821,0.240743,0.922499,0.584615,0.452495,0.293325,0.00158185,0.853473,0.50355,0.0493345,0.239676,0.266213,0.104749,0.376092,0.918511,0.58579,0.565329,0.689935,0.94131,0.531995,0.760317,0.15163,0.524509,0.0408171,0.793041,0.777563,0.0750606,0.584494,0.410762,0.606044,0.892997,0.890459,0.804886,0.04101,0.123915,0.703833,0.555651,0.922891,0.305929,0.622587,0.990727,0.0970608,0.589424,0.359647,0.0337085,0.723734,0.558229,0.765041,0.270859,0.49475,0.142447,0.119532,0.574268,0.580748,0.262198,0.667632,0.781612,0.0660667,0.446772,0.241884,0.945167,0.894885,0.116877,0.00383806,0.424427,0.0638561,0.719216,0.300436,0.230452,0.545386,0.740866,0.409403,0.283472,0.30956,0.458639,0.379719,0.851866,0.870153,0.448306,0.506509,0.753779,0.992914,0.83223,0.171259,0.6769,0.71972,0.186651,0.71805,0.0512936,0.520208,0.353981,0.316839,0.390826,0.12764,0.309428,0.585487,0.593665,0.532735,0.599126,0.924524,0.0817136,0.798612,0.0582139,0.385329,0.662655,0.216652,0.0149155,0.0263622,0.116902,0.683189,0.624854,0.778781,0.398808,0.608558,0.784999,0.643961,0.830881,0.354641,0.74102,0.113729,0.758562,0.51919,0.0370758,0.855348,0.164141,0.302962,0.994477,0.921336,0.010722,0.390774,0.606558,0.314387,0.92835,0.96037,0.0169377,0.114051,0.632305,0.578372,0.850239,0.302477,0.135413,0.0271444,0.0341195,0.973559,0.0797946,0.722972,0.910328,0.236555,0.802537,0.832158,0.289767,0.570982,0.598827,0.270508,0.758092,0.775807,0.247598,0.857079,0.824053,0.318618,0.910592,0.378431,0.0458073,0.599706,0.993402,0.261345,0.579908,0.729551,0.230804,0.345745,0.368052,0.831245,0.591034,0.209585,0.872825,0.34802,0.358558,0.980379,0.358896,0.0038656,0.996965,0.344887,0.805705,0.52745,0.427922,0.567223,0.9151,0.990696,0.815161,0.824853,0.655472,0.300249,0.620849,0.797238,0.528718,0.407108,0.109025,0.27973,0.275317,0.854202,0.11904,0.68838,0.172873,0.713784,0.0104016,0.0692233,0.042881,0.558711,0.371477,0.862919,0.48711,0.777644,0.458028,0.595724,0.232553,0.954825,0.427353,0.313507,0.232988,0.872801,0.953873,0.139491,0.936863,0.303381,0.0805707,0.898058,0.590908,0.402348,0.778951,0.754142,0.63852,0.281996,0.751235,0.361462,0.439055,0.682124,0.174282,0.974408,0.828626,0.298175,0.998124,0.949195,0.129682,0.561211,0.642436,0.217432,0.402435,0.24673,0.511599,0.190467,0.28985,0.197194,0.971711,0.121157,0.942017,0.144715,0.673108,0.479453,0.720304,0.0343266,0.894955,0.504994,0.0143011,0.786035,0.992423,0.843527,0.69826,0.438884,0.412623,0.87957,0.480756,0.654108,0.496002,0.238972,0.975577,0.991356,0.265664,0.684596,0.809205,0.228906,0.746873,0.983471,0.513956,0.710587,0.327104,0.4484,0.110133,0.394143,0.107555,0.775012,0.948358,0.484576,0.918152,0.97985,0.962099,0.49991,0.65723,0.857446,0.459075,0.806292,0.609832,0.697447,0.70713,0.282849,0.0946425,0.398018,0.929225,0.534721,0.731526,0.781769,0.869702,0.398804,0.496117,0.842161,0.631273,0.871784,0.252983,0.693588,0.188739,0.410187,0.739779,0.950445,0.331396,0.414607,0.596882,0.0217974,0.426177,0.986128,0.608326,0.320977,0.982537,0.671005,0.177667,0.157222,0.43119,0.920339,0.985763,0.0730764,0.179819,0.672274,0.645613,0.0648194,0.446609,0.521722,0.796632,0.436228,0.976713,0.398866,0.98515,0.538016,0.476824,0.63947,0.699364,0.416699,0.507902,0.304452,0.808833,0.647983,0.144349,0.117679,0.996608,0.648926,0.217509,0.827523,0.468097,0.88377,0.910377,0.198992,0.666624,0.223228,0.932121,0.429947,0.58836,0.895322,0.480252,0.961842,0.289094,0.148587,0.499102,0.543447,0.222395,0.0822912,0.685205,0.905966,0.444922,0.800018,0.514893,0.624089,0.00527954,0.604726,0.0315044,0.658573,0.258105,0.383814,0.303083,0.109927,0.894464,0.778117,0.188385,0.65251,0.0399951,0.695343,0.785158,0.338268,0.338069,0.254157,0.850754,0.035023,0.637932,0.237404,0.562364,0.113286,0.042319,0.167272,0.92649,0.0874955,0.280633,0.32908,0.485128,0.449209,0.493417,0.210347,0.4328,0.773531,0.0455243,0.528079,0.554094,0.349051,0.351847,0.124371,0.110486,0.147894,0.437842,0.675855,0.305477,0.75438,0.411343,0.582058,0.58067,0.873223,0.410502,0.785463,0.621615,|0.957954,0.747078,0.618773,0.432695,0.718997,0.659443,0.408249,0.289303,0.696867,0.645645,0.840158,0.0884205,0.970605,0.391956,0.902664,0.605337,0.642313,0.185769,0.208878,0.122881,0.819714,0.71994,0.47567,0.967129,0.68911,0.268295,0.67638,0.432562,0.293971,0.961806,0.151201,0.121256,0.344654,0.767506,0.964859,0.046255,0.0884449,0.390782,0.587058,0.741622,0.886222,0.775661,0.626895,0.0734686,0.14264,0.764007,0.143332,0.530525,0.663159,0.39679,0.898665,0.24412,0.658826,0.055845,0.521898,0.308475,0.279966,0.370791,0.28602,0.821748,0.443072,0.0971456,0.353046,0.532786,0.307345,0.932566,0.915605,0.0826361,0.128401,0.667622,0.836692,0.611187,0.509066,0.518149,0.176198,0.0116344,0.367972,0.559709,0.734842,0.555191,0.25089,0.427553,0.0769295,0.988756,0.498771,0.223261,0.0877346,0.97435,0.629764,0.291197,0.271744,0.912886,0.708653,0.400363,0.74273,0.639431,0.558595,0.508321,0.927094,0.449836,0.0849715,0.120171,0.13086,0.674226,0.313648,0.330298,0.142855,0.793632,0.8527,0.250661,0.413839,0.0494419,0.860911,0.610193,0.598994,0.798298,0.737521,0.973721,0.878322,0.943583,0.0250947,0.29609,0.297091,0.802403,0.691436,0.621613,0.117935,0.578572,0.16116,0.73695,0.879657,0.424901,0.133288,0.982998,0.603942,0.237857,0.422912,0.80707,0.941736,0.858809,0.223362,0.875265,0.0129293,0.025239,0.528509,0.0504839,0.998541,0.59236,0.733737,0.165808,0.690455,0.974334,0.593508,0.12162,0.345086,0.147772,0.444481,0.621546,0.771663,0.222361,0.594356,0.840113,0.589787,0.712057,0.0765945,0.62372,0.790686,0.584275,0.186124,0.915766,0.370902,0.532656,0.389411,0.885323,0.00878924,0.628117,0.571619,0.728956,0.000431061,0.638027,0.282397,0.0211712,0.500465,0.891684,0.409472,0.868334,0.273045,0.11887,0.772364,0.857084,0.110358,0.0233616,0.101577,0.315267,0.48853,0.983509,0.834188,0.896161,0.293712,0.694469,0.186884,0.386922,0.826038,0.992352,0.079276,0.973108,0.551169,0.269741,0.450399,0.967857,0.747844,0.639276,0.0808676,0.0100306,0.485778,0.989181,0.467402,0.139977,0.0874423,0.455003,0.57311,0.190559,0.241662,0.823144,0.7859,0.0181166,0.576252,0.878868,0.157963,0.255346,0.585717,0.309966,0.21907,0.407241,0.895026,0.968653,0.700442,0.102441,0.712031,0.865162,0.432895,0.000633001,0.564786,0.757275,0.210612,0.321319,0.391479,0.981604,0.664128,0.444395,0.157585,0.956282,0.946209,0.12769,0.929542,0.101089,0.05523,0.38955,0.470307,0.661305,0.417023,0.733042,0.927512,0.755413,0.698931,0.173434,0.320496,0.729069,0.594302,0.109417,0.522995,0.764091,0.854493,0.702931,0.941356,0.820028,0.691307,0.382042,0.859822,0.115894,0.449296,0.498225,0.387129,0.581065,0.229413,0.610938,0.231067,0.112936,0.372802,0.360603,0.612283,0.407849,0.334542,0.90888,0.867088,0.842471,0.818147,0.925201,0.950052,0.149668,0.60706,0.616866,0.914725,0.00548118,0.2492,0.179402,0.482832,0.329677,0.352279,0.17822,0.737114,0.577373,0.0245536,0.850435,0.276932,0.0511394,0.617247,0.966043,0.254571,0.922665,0.741478,0.816261,0.63502,0.398352,0.474385,0.346582,0.16273,0.404408,0.165716,0.620106,0.483553,0.257019,0.41793,0.113274,0.538753,0.448525,0.516347,0.568975,0.500028,0.333718,0.260316,0.322967,0.439284,0.339363,0.542506,0.973763,0.233917,0.817929,0.395332,0.894731,0.99031,0.323371,0.216685,0.287158,0.026575,0.942003,0.968691,0.0647146,0.902224,0.950141,0.902892,0.712231,0.620726,0.195653,0.394254,0.601043,0.113808,0.516238,0.916658,0.808306,0.305404,0.177954,0.914084,0.823997,0.223885,0.585298,0.896363,0.621811,0.147964,0.29322,0.800555,0.783936,0.258042,0.763524,0.834551,0.724512,0.682262,0.630131,0.820912,0.548163,0.416934,0.228364,0.368119,0.546853,0.960304,0.711744,0.820915,0.868217,0.940897,0.248135,0.0341579,0.557685,0.283866,0.456573,0.137259,0.938653,0.210611,0.645168,0.211658,0.175769,0.884083,0.749038,0.996064,0.370242,0.513652,0.0494328,0.315534,0.839319,0.714727,0.537679,0.0235313,0.575636,0.869509,0.540335,0.964538,0.11874,0.0456774,0.625115,0.334753,0.104585,0.126848,0.442393,0.71929,0.0815478,0.217162,0.293425,0.586702,0.138058,0.366531,0.123655,0.742976,0.963606,0.70661,0.402722,0.723344,0.717379,0.119028,0.679159,0.517646,0.0654732,0.99804,0.482075,0.80366,0.568717,0.748146,0.573555,0.936144,0.118818,0.746307,0.251774,0.0259709,0.204599,0.0319664,0.620158,0.908326,0.887855,0.157041,0.591082,0.230596,0.551327,0.669629,0.0537668,0.426847,0.194786,0.529664,0.416553,0.682298,0.373774,0.27466,0.953813,0.927555,0.0364004,0.376009,0.808913,0.290526,0.537851,0.558135,0.755251,0.982186,0.42851,0.0701804,0.698246,0.00467604,0.694734,0.00535125,0.43404,0.879708,0.393835,0.821214,0.943269,0.739289,0.194167,0.410561,0.970597,0.392206,0.580509,0.63356,0.0617908,0.699293,0.438918,0.955808,0.792043,0.191816,0.790448,0.47361,0.185428,0.0822117,0.599234,0.807691,0.70182,0.271018,0.361405,0.305034,0.364331,0.198388,0.187508,0.789135,0.161373,0.763283,0.0715476,0.85448,0.653704,0.110707,0.434283,0.989492,0.920835,0.896922,0.845589,0.448209,0.225175,0.804612,0.393211,0.488308,0.566836,0.329199,0.0654554,0.0552626,0.205942,0.250124,0.402671,0.698982,0.843868,0.522342,0.944489,0.0320356,0.77934,0.641593,0.99871,0.128015,0.0208027,0.992742,0.96203,0.159259,0.0164581,0.382883,0.120572,0.301098,0.513227,0.715432,0.753044,0.178727,0.437033,0.01339,0.641716,0.118661,0.88491,0.668166,0.70321,0.180584,0.185879,0.78097,0.0965511,0.887531,0.0491335,0.878448,0.757234,0.981586,0.808541,0.932671,0.756302,0.131414,0.396465,0.181757,0.967331,0.777597,0.583967,0.232318,0.54927,0.777784,0.995353,0.24113,0.962106,0.220249,0.343104,0.316863,0.552888,0.497324,0.702483,0.870736,0.0704204,0.228478,0.878604,0.645878,0.631098,0.725564,0.697187,0.103875,0.381443,0.854486,0.670533,0.417511,0.713514,0.279863,0.868065,0.863086,0.030483,0.864793,0.0711555,0.917661,0.707364,0.684447,0.387047,0.738947,0.615233,0.619856,0.0392215,0.218417,0.467285,0.312144,0.569936,0.611991,0.238424,0.957018,0.377728,0.148838,0.333018,0.827736,0.864207,0.695818,0.166922,0.455613,0.422513,0.938615,0.189838,0.410546,0.232457,0.0268851,0.532287,0.983363,0.0518436,0.364777,0.458893,0.87735,0.947539,0.338079,0.440887,0.96548,0.526346,0.826862,0.0748131,0.465884,0.282247,0.8379,0.259408,0.764171,0.726486,0.172759,0.0309043,0.507103,0.101549,0.309398,0.998672,0.184619,0.581906,0.337961,0.80809,0.132655,0.93564,0.916939,0.579258,0.402701,0.609642,0.378159,0.941016,0.432066,0.0233586,0.222857,0.754949,0.166336,0.743066,0.343984,0.786387,0.614014,0.163704,0.685888,0.117176,0.534165,0.590734,0.266326,0.128999,0.898039,0.12006,0.135556,0.419765,0.804716,0.818942,0.788984,0.712353,0.105058,0.907833,0.407329,0.451957,0.375507,0.839807,0.483803,0.547472,0.360425,0.5235,0.366399,0.0610834,0.14266,0.27094,0.174506,0.624227,0.939265,0.342947,0.410418,0.437164,0.78734,0.747549,0.355029,0.101793,0.295816,0.0499202,0.206727,0.65223,0.0231191,0.264608,0.731139,0.152111,0.301158,0.0864317,0.363371,0.216069,0.818972,0.368737,0.828988,0.713877,0.199748,0.143156,0.854575,0.117112,0.263025,0.159044,0.707439,0.180074,0.661214,0.144639,0.732523,0.434173,0.784584,0.629131,0.685939,0.984542,0.102486,0.812863,0.839693,0.229649,0.0291489,0.794569,0.166975,0.659736,0.71622,0.395171,0.500755,0.447293,0.418706,0.239759,0.585319,0.871005,0.395812,0.746766,0.307418,0.0177931,0.42585,0.732907,0.374345,0.480897,0.106123,0.657824,0.853831,0.726483,0.717718,0.178514,0.716561,0.763138,0.225432,0.873428,0.150133,0.668141,0.18389,0.836101,0.922925,0.771016,0.72937,0.194992,0.497051,0.757088,0.571996,0.435524,0.0482053,0.152917,0.673382,0.639501,0.371752,0.525401,0.951028,0.85237,0.594413,0.648157,0.423304,0.4707,0.986943,0.445573,0.354743,0.216398,0.850436,0.885315,0.628432,0.820261,0.401683,0.411107,0.901613,0.342507,0.544598,0.528858,0.245597,0.925827,0.41156,0.484346,0.947675,0.47487,0.214087,0.19082,0.876157,0.757738,0.14133,0.665489,0.0959217,0.863172,0.653248,0.152165,0.119895,0.678422,0.251996,0.956811,0.35822,0.0756976,0.983638,0.414882,0.674167,0.113026,0.207683,0.257397,0.0897897,0.949651,0.418861,0.223789,0.0715372,0.67178,0.89382,0.688989,0.640397,0.914824,0.711916,0.992227,0.0492348,0.486266,0.581324,0.0258285,0.0270292,0.814026,0.729496,0.0439345,0.170086,0.684295,0.63148,0.148838,0.934819,0.658541,0.207299,0.599641,0.264592,0.393441,0.404382,0.715322,0.322081,0.1824,0.1311,0.438075,0.0708701,0.249321,0.3295,0.319179,0.35964,0.402672,0.579673,0.234645,0.267202,0.87943,0.696563,0.5334,0.956966,0.343657,0.393772,0.18978,0.837646,0.632235,0.157631,0.661174,0.691226,0.627617,0.0284933,0.316677,0.0968277,0.867547,0.866799,0.79525,0.48506,0.693293,0.871131,0.613295,0.0248134,0.303312,0.337314,0.251554,0.131875,0.340587,0.560885,0.521379,0.396629,0.588105,0.51279,0.0978671,0.732117,0.201608,0.0901642,0.506492,0.0440891,0.189775,0.818574,0.162463,0.589837,0.253279,0.544881,0.353355,0.348378,0.251396,0.122443,0.314274,0.251686,0.892569,0.521027,0.674456,0.814828,0.597257,0.731184,0.629475,0.512968,0.170183,0.796042,0.411703,0.488822,0.574044,0.615367,0.264111,0.676792,0.159906,0.264427,0.593962,0.547683,0.0638127,0.689977,0.700387,0.537894,0.435228,0.610503,0.319402,0.717555,0.0500801,|0.698682,0.506738,0.504156,0.770938,0.863263,0.915495,0.81444,0.828654,0.30608,0.177057,0.797277,0.577823,0.791732,0.827568,0.0153655,0.862803,0.334453,0.50198,0.214305,0.931052,0.00536597,0.246351,0.980361,0.372394,0.35418,0.0748163,0.869923,0.652769,0.752107,0.615522,0.458798,0.971468,0.397815,0.101456,0.850507,0.139608,0.215858,0.168063,0.394431,0.877209,0.591723,0.0446197,0.127525,0.344874,0.930533,0.572681,0.995075,0.613822,0.0610306,0.643999,0.675058,0.773764,0.170022,0.645762,0.205414,0.284921,0.560196,0.651046,0.909456,0.22537,0.320349,0.569753,0.230435,0.927311,0.756048,0.955486,0.434401,0.0168424,0.949522,0.622034,0.668759,0.625898,0.586293,0.601155,0.470182,0.0518692,0.830731,0.942324,0.271526,0.432608,0.561286,0.479584,0.50788,0.71359,0.00705045,0.20328,0.290015,0.274076,0.961746,0.999792,0.653327,0.0250681,0.396022,0.0708632,0.709364,0.220454,0.752238,0.35296,0.476297,0.431219,0.880918,0.663155,0.593491,0.0132501,0.479138,0.050752,0.437996,0.151261,0.528788,0.155964,0.443583,0.184937,0.908525,0.867894,0.157871,0.321587,0.531555,0.431281,0.473848,0.865104,0.131779,0.361807,0.518642,0.961224,0.990668,0.862062,0.166388,0.508961,0.542253,0.351568,0.676057,0.248807,0.397351,0.534086,0.851939,0.257046,0.104982,0.0403432,0.952893,0.140479,0.308564,0.55931,0.797531,0.33509,0.5137,0.915598,0.172957,0.253074,0.551768,0.794493,0.368537,0.390372,0.199098,0.698398,0.15263,0.278401,0.799546,0.338567,0.619936,0.00382197,0.423961,0.354844,0.869535,0.954396,0.336972,0.672649,0.929387,0.497271,0.164039,0.427351,0.897643,0.362764,0.0902252,0.344027,0.874388,0.246922,0.58213,0.800997,0.849411,0.763156,0.126453,0.185147,0.344516,0.909261,0.00175095,0.542052,0.431691,0.662172,0.39458,0.421931,0.0207207,0.272476,0.944302,0.196323,0.509726,0.29267,0.656997,0.18596,0.151833,0.0801983,0.781407,0.793144,0.21943,0.274911,0.489339,0.84478,0.442601,0.920771,0.219067,0.687799,0.715195,0.0342185,0.250278,0.0565885,0.330271,0.443628,0.40267,0.19375,0.708562,0.213521,0.123482,0.685881,0.361623,0.199624,0.536044,0.215723,0.805942,0.316472,0.395486,0.622635,0.522935,0.106787,0.816938,0.0401448,0.515489,0.168971,0.92966,0.267824,0.94657,0.452791,0.706703,0.62921,0.239045,0.252837,0.55382,0.456656,0.576957,0.840402,0.405716,0.211861,0.166791,0.0647985,0.181927,0.787969,0.512376,0.101851,0.625481,0.347031,0.800331,0.964484,0.716512,0.735448,0.507374,0.56098,0.666681,0.314959,0.242206,0.101872,0.916844,0.464778,0.707368,0.611161,0.0545575,0.204844,0.0983562,0.334608,0.315911,0.584498,0.804636,0.611225,0.315969,0.420276,0.41156,0.709949,0.0164613,0.692691,0.195805,0.37714,0.276543,0.811493,0.0409635,0.832615,0.807956,0.75693,0.429237,0.574242,0.726487,0.836384,0.14542,0.121382,0.172497,0.212804,0.813002,0.51484,0.86101,0.236242,0.853618,0.763119,0.676339,0.543568,0.258103,0.375964,0.916217,0.860651,0.186563,0.248222,0.471612,0.375083,0.167423,0.916137,0.794022,0.861951,0.0688166,0.988544,0.891659,0.662503,0.381191,0.390726,0.805648,0.913506,0.727651,0.0349922,0.851056,0.243812,0.56,0.0334591,0.629899,0.844673,0.361468,0.288385,0.310002,0.938447,0.103907,0.487373,0.610876,0.60288,0.353642,0.282813,0.938877,0.224711,0.629236,0.276374,0.245353,0.506812,0.336868,0.675848,0.880068,0.670241,0.509176,0.731979,0.890391,0.725565,0.532343,0.312416,0.759884,0.974208,0.724569,0.261906,0.364449,0.343509,0.785472,0.639006,0.204609,0.606407,0.651066,0.1748,0.342735,0.513718,0.802196,0.738639,0.608719,0.815232,0.190288,0.816736,0.197261,0.0261275,0.472286,0.370365,0.811989,0.365837,0.405679,0.9033,0.196702,0.453929,0.939093,0.0467606,0.973754,0.597727,0.828049,0.443083,0.328148,0.904425,0.439314,0.574001,0.667122,0.668386,0.466324,0.759428,0.25865,0.535093,0.359203,0.869336,0.871619,0.474039,0.512935,0.597097,0.976968,0.894592,0.0421973,0.886707,0.995396,0.520503,0.310193,0.442589,0.253406,0.24992,0.963995,0.993079,0.0733641,0.16627,0.422195,0.00704849,0.699086,0.458908,0.683383,0.255752,0.626416,0.885517,0.183169,0.526821,0.609178,0.482824,0.893782,0.0618615,0.619871,0.301133,0.756565,0.483586,0.0225457,0.531778,0.752715,0.484071,0.538311,0.130993,0.0294676,0.127652,0.798422,0.949441,0.152697,0.839787,0.233093,0.799985,0.863527,0.567082,0.90077,0.473373,0.897328,0.124425,0.442558,0.606256,0.502504,0.233334,0.0141914,0.55543,0.759315,0.870567,0.247929,0.915576,0.933621,0.293713,0.30564,0.105485,0.709288,0.0791755,0.645814,0.267628,0.621877,0.758437,0.0575942,0.948786,0.575341,0.418448,0.912095,0.491894,0.448418,0.429798,0.814062,0.417391,0.823585,0.364208,0.645839,0.938022,0.71044,0.316758,0.905486,0.74546,0.538913,0.952006,0.903038,0.953149,0.00398117,0.478938,0.638937,0.0244241,0.127821,0.713852,0.235055,0.866445,0.840287,0.88558,0.317033,0.622435,0.710879,0.16377,0.620273,0.193385,0.0334171,0.541457,0.788996,0.994966,0.102089,0.823192,0.432438,0.227294,0.232816,0.444525,0.154436,0.264541,0.73881,0.989741,0.587232,0.654865,0.473022,0.718432,0.705171,0.607124,0.858697,0.142486,0.81991,0.525774,0.358403,0.965071,0.512955,0.34661,0.887803,0.614228,0.217824,0.959086,0.461243,0.115232,0.00998741,0.280847,0.989601,0.363239,0.0275567,0.676499,0.0577295,0.323046,0.93758,0.87261,0.681514,0.818249,0.523979,0.299381,0.434117,0.909232,0.406566,0.169797,0.262609,0.751348,0.777228,0.30378,0.415477,0.534183,0.0737943,0.435298,0.473664,0.47613,0.242617,0.175061,0.146487,0.755861,0.465381,0.165237,0.168771,0.0847693,0.290821,0.314601,0.592138,0.288323,0.892029,0.185349,0.44553,0.514384,0.471784,0.534458,0.0396188,0.156558,0.110408,0.719619,0.492069,0.739327,0.675311,0.171398,0.355119,0.473656,0.229368,0.926433,0.97582,0.021436,0.0477537,0.668129,0.717537,0.249394,0.00126529,0.487423,0.343967,0.0969239,0.178295,0.0285459,0.438988,0.80571,0.0399386,0.932341,0.929842,0.314904,0.226564,0.697679,0.103424,0.589389,0.262869,0.519753,0.764359,0.0659918,0.998437,0.508356,0.975958,0.987143,0.178224,0.662548,0.0582768,0.0645253,0.653344,0.69959,0.622059,0.791563,0.0647171,0.586959,0.108796,0.827566,0.881734,0.743288,0.121236,0.527478,0.356738,0.108091,0.656956,0.569578,0.84867,0.987552,0.211128,0.658321,0.219648,0.194779,0.954803,0.0343748,0.786658,0.723953,0.898137,0.906596,0.604702,0.353774,0.894388,0.723208,0.196774,0.837965,0.650749,0.563427,0.889095,0.679106,0.513522,0.0625106,0.464025,0.746088,0.925848,0.841734,0.695889,0.76639,0.891594,0.125284,0.385497,0.711354,0.955796,0.671868,0.606256,0.863366,0.0290079,0.679156,0.831175,0.849598,0.701408,0.988838,0.852788,0.673784,0.788406,0.858792,0.623228,0.214649,0.398799,0.533724,0.101089,0.398659,0.665933,0.639144,0.829812,0.779692,0.78756,0.325571,0.0882226,0.541338,0.0131817,0.442163,0.469724,0.815366,0.703847,0.873866,0.249343,0.11537,0.508136,0.19077,0.631127,0.662763,0.00815821,0.688574,0.880711,0.99079,0.594337,0.95158,0.601833,0.128486,0.297885,0.661879,0.232875,0.236816,0.277729,0.577615,0.999327,0.287832,0.574852,0.540388,0.235388,0.692803,0.757433,0.114294,0.146018,0.344022,0.119965,0.0284178,0.96711,0.693451,0.508555,0.566522,0.555289,0.175941,0.690199,0.105914,0.301068,0.830134,0.0472769,0.523301,0.445835,0.868156,0.410666,0.527134,0.227108,0.529955,0.0507284,0.832675,0.57532,0.405835,0.0243252,0.831255,0.0130851,0.74529,0.172063,0.377347,0.833572,0.0124369,0.736764,0.332849,0.600426,0.195586,0.660671,0.54853,0.382972,0.0744109,0.0675922,0.473693,0.770979,0.629839,0.647789,0.220111,0.021346,0.532017,0.959392,0.833491,0.908945,0.237231,0.517896,0.928595,0.336744,0.112173,0.643331,0.673512,0.269721,0.297403,0.29603,0.724253,0.0793089,0.737816,0.258763,0.968463,0.0269263,0.764852,0.0243491,0.14218,0.27151,0.965405,0.949603,0.674527,0.444053,0.19883,0.603817,0.306089,0.235955,0.0150516,0.255395,0.85471,0.0974309,0.302297,0.973209,0.385299,0.377157,0.681911,0.819293,0.358292,0.526382,0.588171,0.529592,0.356786,0.798242,0.000317395,0.44373,0.239559,0.12475,0.665007,0.600812,0.0712151,0.200785,0.0928302,0.937794,0.156034,0.973513,0.818001,0.154471,0.485789,0.163805,0.0993921,0.084807,0.584073,0.0743461,0.076802,0.78082,0.850562,0.59385,0.298886,0.0389575,0.139109,0.842614,0.472334,0.397079,0.750022,0.757049,0.918372,0.020731,0.390287,0.794434,0.588072,0.851529,0.804894,0.455501,0.818002,0.494658,0.822144,0.548483,0.679399,0.249931,0.421402,0.441274,0.334977,0.544849,0.109557,0.37147,0.518278,0.575822,0.293915,0.661464,0.227794,0.743498,0.295619,0.947856,0.00307232,0.611538,0.265588,0.404162,0.00876313,0.190653,0.619915,0.485556,0.555866,0.402615,0.159722,0.369018,0.41085,0.333883,0.368846,0.50134,0.498793,0.280709,0.779525,0.154956,0.452792,0.54929,0.336208,0.877981,0.0662817,0.0596189,0.520498,0.463669,0.286004,0.433782,0.14969,0.121604,0.10825,0.728625,0.389695,0.152799,0.57553,0.806549,0.852095,0.235709,0.658621,0.824298,0.81388,0.195479,0.398569,0.446644,0.202441,0.975636,0.0296944,0.662365,0.474102,0.781248,0.72065,0.0905395,0.137309,0.0271102,0.101582,0.158296,0.652724,0.0325388,0.65752,0.321115,0.826613,0.85897,0.828357,0.542978,0.0358841,0.0393206,0.797455,0.680653,0.376795,0.164236,0.762655,0.220036,0.366454,0.924049,0.0504626,0.0799294,0.926948,|0.120933,0.289573,0.159447,0.737756,0.806932,0.819919,0.693594,0.448028,0.295224,0.393356,0.448194,0.0881789,0.130797,0.700276,0.898658,0.362861,0.98521,0.95012,0.744134,0.625028,0.703824,0.340986,0.93276,0.225655,0.145932,0.505449,0.811922,0.414518,0.238348,0.132966,0.419349,0.442375,0.471749,0.913742,0.49415,0.761489,0.407605,0.0953676,0.922672,0.536882,0.431495,0.806269,0.787801,0.161309,0.813866,0.596666,0.211985,0.146927,0.307974,0.809899,0.581556,0.77942,0.89918,0.903203,0.0778351,0.0912807,0.928687,0.523991,0.708802,0.0753312,0.192702,0.787374,0.713478,0.600367,0.388185,0.0186989,0.600583,0.241102,0.237475,0.0494974,0.428393,0.623913,0.27941,0.473435,0.817739,0.422328,0.630515,0.799666,0.562163,0.683633,0.791364,0.982078,0.829406,0.875539,0.11041,0.443022,0.586633,0.774935,0.189198,0.865826,0.0571835,0.492065,0.00746542,0.342933,0.405941,0.612755,0.0413275,0.398572,0.932718,0.522818,0.592155,0.408747,0.899646,0.0545397,0.00445133,0.217711,0.527516,0.459475,0.0381036,0.739406,0.0145919,0.489934,0.761737,0.232262,0.46538,0.271532,0.265166,0.722447,0.607565,0.277976,0.0447927,0.0507833,0.0988863,0.409608,0.3768,0.581852,0.6341,0.362875,0.164418,0.639182,0.592036,0.331934,0.971187,0.786283,0.418554,0.60402,0.908017,0.0181726,0.315622,0.0780506,0.695409,0.673786,0.478911,0.731532,0.887009,0.510092,0.427904,0.337519,0.720488,0.382878,0.374974,0.921375,0.614433,0.907724,0.652926,0.539187,0.824837,0.01853,0.735294,0.669215,0.997543,0.209064,0.853095,0.688224,0.667157,0.350926,0.7616,0.221723,0.757598,0.290641,0.331038,0.901375,0.124441,0.0396804,0.506834,0.0652036,0.995402,0.644035,0.875942,0.900463,0.209235,0.547821,0.320999,0.732003,0.810892,0.428693,0.829696,0.38523,0.128572,0.566426,0.310207,0.777475,0.471053,0.747645,0.380823,0.525452,0.740484,0.393391,0.208016,0.954952,0.788885,0.434401,0.955017,0.233793,0.887719,0.754786,0.84078,0.569953,0.777279,0.0489687,0.554103,0.437979,0.787911,0.674425,0.144904,0.86891,0.211476,0.62146,0.615912,0.0379166,0.449384,0.809083,0.0483412,0.776362,0.275827,0.343679,0.840609,0.443005,0.367593,0.0904087,0.272321,0.221459,0.323852,0.123487,0.33635,0.671803,0.639002,0.196324,0.943958,0.0364192,0.870975,0.912246,0.213484,0.92475,0.690966,0.55708,0.361476,0.721261,0.0693946,0.555374,0.346882,0.124106,0.575931,0.614205,0.872474,0.866112,0.826321,0.34254,0.0962722,0.584717,0.35351,0.091114,0.951419,0.319834,0.339647,0.92557,0.370794,0.594549,0.17439,0.193693,0.540498,0.799677,0.928839,0.668821,0.345238,0.756072,0.158201,0.478114,0.31562,0.287434,0.871893,0.298276,0.191157,0.768373,0.916154,0.633236,0.394798,0.308381,0.104223,0.232528,0.403801,0.56441,0.602559,0.0594461,0.256436,0.222352,0.0305782,0.120499,0.418894,0.250721,0.887411,0.414137,0.655567,0.519544,0.391743,0.407106,0.260509,0.485584,0.00891995,0.836012,0.161023,0.0365543,0.512015,0.182725,0.576507,0.720625,0.856963,0.807627,0.802255,0.848239,0.138934,0.924094,0.639483,0.363618,0.716355,0.967565,0.827989,0.511574,0.184881,0.375928,0.0198126,0.439477,0.31008,0.80233,0.111776,0.7816,0.705286,0.116057,0.259159,0.654627,0.423561,0.377449,0.326361,0.309624,0.833235,0.127084,0.477576,0.0051927,0.310244,0.650558,0.169576,0.50241,0.437974,0.306498,0.054679,0.825487,0.652653,0.375911,0.498421,0.206701,0.733899,0.130682,0.104162,0.71303,0.00653332,0.903544,0.40838,0.489541,0.876263,0.149392,0.79548,0.53597,0.365658,0.570958,0.360134,0.47915,0.639241,0.102206,0.00819719,0.129753,0.946138,0.10566,0.2189,0.92616,0.362141,0.190311,0.989254,0.0136136,0.661743,0.625884,0.188149,0.0257535,0.0456733,0.682628,0.302917,0.675602,0.0959556,0.5109,0.976954,0.149679,0.618975,0.573076,0.0543174,0.631045,0.373862,0.915783,0.472414,0.753952,0.710314,0.789882,0.395375,0.0370945,0.0815278,0.924761,0.042932,0.127142,0.936767,0.58236,0.100188,0.906161,0.833824,0.290402,0.964305,0.463186,0.487815,0.19657,0.0768783,0.657021,0.654294,0.17913,0.639975,0.375807,0.280949,0.310985,0.507896,0.946594,0.688986,0.52935,0.0412468,0.858703,0.854148,0.439832,0.745871,0.114235,0.983941,0.782504,0.448036,0.516147,0.422902,0.388269,0.834824,0.591619,0.445011,0.365274,0.260915,0.514523,0.669813,0.337679,0.62736,0.903449,0.761543,0.967785,0.431159,0.840448,0.0457341,0.428849,0.569867,0.899414,0.816763,0.244529,0.829607,0.955383,0.555005,0.196443,0.547747,0.612553,0.531577,0.385893,0.720568,0.30473,0.138588,0.277409,0.354577,0.563797,0.364379,0.0160452,0.881338,0.474325,0.397654,0.342762,0.835676,0.275729,0.720525,0.915229,0.720875,0.827797,0.670032,0.642474,0.833187,0.758433,0.136175,0.257047,0.0643595,0.11969,0.479193,0.608104,0.592146,0.283364,0.363557,0.558557,0.384319,0.193029,0.555992,0.268432,0.254189,0.507517,0.286163,0.0298312,0.131215,0.726129,0.87933,0.557904,0.205101,0.814055,0.898988,0.824376,0.44383,0.829619,0.335807,0.1806,0.424731,0.216024,0.354547,0.735861,0.640608,0.810419,0.409328,0.840603,0.601426,0.692766,0.689863,0.91368,0.194276,0.280636,0.0667304,0.583945,0.502678,0.465259,0.263761,0.285738,0.880363,0.298873,0.155171,0.67859,0.169291,0.0686838,0.0702008,0.234443,0.0518724,0.694696,0.818833,0.38217,0.568478,0.955848,0.0440766,0.836966,0.352343,0.0732715,0.176733,0.217441,0.278514,0.788048,0.37047,0.814064,0.808565,0.359545,0.589118,0.717353,0.322613,0.447843,0.831442,0.604229,0.932016,0.334854,0.620592,0.274477,0.234053,0.759274,0.68173,0.143536,0.128392,0.749821,0.790905,0.916216,0.575499,0.0285708,0.418664,0.244289,0.942291,0.212929,0.186037,0.399472,0.992251,0.0931265,0.363124,0.773153,0.621405,0.799489,0.0526363,0.567031,0.517592,0.136086,0.104793,0.920833,0.369707,0.506966,0.569784,0.455856,0.0221963,0.649903,0.79269,0.964029,0.127461,0.541719,0.189294,0.542309,0.474632,0.0844919,0.404688,0.733536,0.399548,0.204986,0.311045,0.0699086,0.344233,0.662571,0.315695,0.344503,0.704739,0.508947,0.375719,0.762041,0.754248,0.0850236,0.923838,0.207011,0.752482,0.97316,0.572911,0.473547,0.201386,0.136762,0.269306,0.452182,0.333374,0.871545,0.888012,0.555591,0.950644,0.918153,0.784785,0.372149,0.590531,0.249063,0.454597,0.135158,0.657725,0.633202,0.0141809,0.654363,0.427215,0.921327,0.767372,0.248121,0.470665,0.874433,0.181153,0.802031,0.723923,0.154299,0.0921878,0.334559,0.57469,0.492759,0.426884,0.638573,0.24775,0.605843,0.233649,0.683302,0.749235,0.883657,0.0266567,0.722244,0.290637,0.236365,0.711017,0.195933,0.120792,0.65433,0.558332,0.522269,0.313902,0.498419,0.601285,0.776569,0.274931,0.0625778,0.697466,0.286817,0.907915,0.752917,0.0444847,0.515659,0.716752,0.309677,0.0724475,0.99432,0.222018,0.495563,0.820677,0.754829,0.982389,0.673786,0.682069,0.198081,0.677505,0.631499,0.125856,0.0241379,0.474575,0.131954,0.870636,0.715371,0.831402,0.0778341,0.870125,0.267827,0.517364,0.144974,0.0836063,0.0773854,0.170317,0.525745,0.0056355,0.370906,0.383269,0.713589,0.0352069,0.459463,0.517275,0.365642,0.806936,0.959337,0.551506,0.240473,0.868405,0.861534,0.189552,0.0687666,0.706585,0.885667,0.999979,0.71158,0.453549,0.320207,0.0424768,0.457237,0.908824,0.047651,0.451226,0.1982,0.29483,0.04952,0.449494,0.646553,0.72982,0.537369,0.979016,0.705824,0.103489,0.316703,0.897501,0.174354,0.243394,0.557261,0.34805,0.126342,0.618711,0.170237,0.880194,0.292124,0.0324161,0.841424,0.223063,0.988301,0.00972068,0.0365786,0.0799763,0.258184,0.520004,0.0852323,0.0303195,0.136614,0.456616,0.0145299,0.135663,0.998927,0.692336,0.636932,0.215945,0.203502,0.754707,0.555654,0.686283,0.297963,0.549912,0.849381,0.171597,0.450566,0.939314,0.564696,0.363391,0.379463,0.930641,0.881329,0.936639,0.607287,0.579532,0.063309,0.205044,0.874521,0.286536,0.730189,0.413057,0.72498,0.771612,0.618631,0.278706,0.20469,0.410248,0.777489,0.0696731,0.714057,0.233467,0.744265,0.0542047,0.744062,0.877521,0.231575,0.141094,0.555503,0.90167,0.511963,0.109101,0.3793,0.967996,0.723656,0.172601,0.421883,0.937013,0.13557,0.359451,0.218038,0.765228,0.0387427,0.992545,0.379244,0.916403,0.731921,0.235907,0.338914,0.773906,0.180377,0.141451,0.00748962,0.563488,0.0831384,0.940153,0.884318,0.0139906,0.0432006,0.694571,0.758262,0.318528,0.669872,0.266154,0.743433,0.872351,0.47326,0.053385,0.701685,0.916659,0.931431,0.599205,0.419539,0.616496,0.743598,0.209939,0.085708,0.353292,0.759487,0.983586,0.536509,0.663268,0.342188,0.00565106,0.124609,0.284985,0.350666,0.213447,0.742372,0.381989,0.753765,0.882751,0.77698,0.992592,0.153838,0.713103,0.674347,0.821269,0.0747666,0.829548,0.0401195,0.255541,0.198754,0.432108,0.247766,0.480243,0.160787,0.30585,0.521739,0.115714,0.652366,0.888309,0.0259101,0.479745,0.512,0.998807,0.520427,0.948251,0.949439,0.756066,0.214538,0.922965,0.834221,0.57049,0.818483,0.265892,0.131076,0.148919,0.340349,0.631268,0.0689894,0.373363,0.547687,0.159249,0.225086,0.885033,0.983438,0.962507,0.997515,0.291957,0.274568,0.502343,0.045973,0.557024,0.277983,0.0802426,0.524622,0.965058,0.890068,0.0836948,0.956877,0.915613,0.116283,0.138246,0.387128,0.204111,0.650132,0.716034,0.491772,0.0234401,0.159592,0.0229122,0.535175,0.130133,0.986133,0.0388767,0.659992,0.983861,0.196577,0.855596,0.816063,0.103126,0.129822,0.325109,0.464521,0.728807,0.358221,|0.218017,0.585044,0.139429,0.780979,0.858928,0.624146,0.376178,0.5001,0.916229,0.692833,0.882196,0.729785,0.765827,0.978281,0.1796,0.940134,0.942716,0.880252,0.565631,0.361738,0.649859,0.117617,0.775561,0.495219,0.20948,0.996856,0.902375,0.146604,0.7827,0.952877,0.0673155,0.740325,0.895603,0.432081,0.169113,0.942977,0.744322,0.516577,0.689686,0.0177456,0.0136822,0.0554194,0.293709,0.415752,0.224538,0.00285727,0.106916,0.76196,0.959759,0.23995,0.1389,0.560043,0.780051,0.758616,0.968261,0.74377,0.404764,0.753982,0.0246976,0.630971,0.418039,0.360063,0.761672,0.212861,0.265426,0.307894,0.783297,0.88408,0.707772,0.993942,0.339283,0.359652,0.928584,0.479548,0.34776,0.272059,0.200237,0.748642,0.806073,0.479619,0.393062,0.850652,0.348256,0.667079,0.0730488,0.92817,0.676086,0.846935,0.24998,0.147062,0.00808001,0.525717,0.600708,0.409514,0.98707,0.137356,0.467987,0.345798,0.713957,0.801004,0.410005,0.306204,0.357563,0.204331,0.143604,0.418752,0.777941,0.242837,0.295584,0.47864,0.34466,0.205553,0.942162,0.909765,0.191931,0.810333,0.637908,0.718934,0.873659,0.442264,0.456116,0.731128,0.68611,0.585227,0.806,0.83331,0.507836,0.335864,0.312577,0.33081,0.441809,0.608071,0.710482,0.473221,0.342065,0.28543,0.363883,0.85331,0.327407,0.558471,0.45482,0.843009,0.666091,0.408536,0.858609,0.747894,0.161079,0.246882,0.418016,0.84431,0.240344,0.977196,0.991115,0.888889,0.0258324,0.667978,0.365116,0.843736,0.738904,0.635578,0.348056,0.31627,0.333981,0.539803,0.188515,0.252998,0.770746,0.0446143,0.507817,0.816319,0.591988,0.146209,0.848434,0.878567,0.051724,0.8271,0.340698,0.645144,0.52383,0.0830085,0.859473,0.200024,0.82862,0.378496,0.364878,0.215316,0.764489,0.593722,0.161098,0.950249,0.93747,0.897625,0.986461,0.975534,0.722559,0.48752,0.759015,0.105806,0.244307,0.365933,0.624449,0.697023,0.363609,0.10849,0.298299,0.217117,0.363843,0.322559,0.38637,0.610116,0.827848,0.605625,0.529588,0.566637,0.706067,0.81469,0.332602,0.0811154,0.316073,0.742501,0.0855973,0.326657,0.00266379,0.354717,0.766695,0.680894,0.952167,0.270533,0.104386,0.833102,0.705088,0.814705,0.61711,0.857156,0.386872,0.627773,0.186539,0.584054,0.260933,0.626694,0.615889,0.970193,0.819805,0.582609,0.78937,0.251571,0.108647,0.197273,0.115527,0.93834,0.0257221,0.157064,0.0870976,0.921317,0.660371,0.866293,0.371336,0.329705,0.227399,0.430381,0.463112,0.94326,0.694365,0.490009,0.609646,0.730256,0.558619,0.596966,0.485744,0.826036,0.503545,0.984559,0.678642,0.478414,0.169939,0.639941,0.348405,0.944962,0.316706,0.556022,0.485516,0.745907,0.881572,0.918144,0.452474,0.392446,0.575234,0.332912,0.675211,0.879581,0.0681254,0.0965208,0.638192,0.0810381,0.382547,0.363243,0.359439,0.601422,0.248541,0.271498,0.643993,0.557433,0.600153,0.140515,0.938928,0.437471,0.483898,0.204375,0.382574,0.143789,0.188958,0.734583,0.89432,0.848789,0.0309462,0.120541,0.0936992,0.824892,0.352922,0.694633,0.680605,0.697334,0.525246,0.79146,0.0512802,0.109619,0.936976,0.486569,0.28289,0.904625,0.677928,0.497078,0.638473,0.555275,0.2675,0.378717,0.924767,0.991987,0.733932,0.810395,0.821427,0.269936,0.357963,0.0290792,0.324616,0.493653,0.345191,0.908231,0.723801,0.813391,0.327173,0.825167,0.76823,0.576067,0.882172,0.453331,0.931633,0.35936,0.64217,0.925901,0.19487,0.366248,0.399985,0.703988,0.237574,0.922906,0.979319,0.494847,0.209131,0.0457618,0.551848,0.837467,0.172837,0.335244,0.851077,0.191496,0.288318,0.56597,0.92902,0.30414,0.515567,0.8428,0.166421,0.730234,0.549151,0.41742,0.693934,0.227133,0.585597,0.951564,0.610827,0.976744,0.273914,0.134565,0.801241,0.120413,0.194186,0.356486,0.115637,0.782089,0.332879,0.239996,0.164283,0.194301,0.218457,0.745052,0.0872298,0.782211,0.776283,0.589171,0.285263,0.744634,0.552869,0.419317,0.681402,0.878477,0.0357222,0.685917,0.716907,0.760477,0.620999,0.0907744,0.0505949,0.506557,0.87359,0.599662,0.34472,0.864398,0.608785,0.186845,0.593511,0.366245,0.110772,0.111567,0.413255,0.260307,0.43978,0.860132,0.795478,0.309756,0.583087,0.268872,0.8726,0.143685,0.324123,0.54449,0.201901,0.0915617,0.161598,0.0803799,0.505663,0.35267,0.333959,0.182882,0.440437,0.824168,0.749671,0.29928,0.466755,0.956619,0.11718,0.738834,0.593235,0.37435,0.702597,0.561465,0.468218,0.939929,0.595002,0.732735,0.697563,0.593336,0.0939698,0.784757,0.767142,0.781491,0.103351,0.0569117,0.429896,0.9754,0.631164,0.751002,0.393991,0.0284342,0.558066,0.769499,0.0500894,0.516783,0.534594,0.0160225,0.875797,0.260516,0.143324,0.240541,0.979148,0.295912,0.0864385,0.512745,0.166424,0.487818,0.905988,0.914461,0.42268,0.146963,0.462378,0.533056,0.841925,0.282805,0.0874475,0.595639,0.328631,0.783076,0.931919,0.293478,0.809268,0.932529,0.380277,0.505649,0.308218,0.885036,0.652547,0.166653,0.172015,0.875374,0.250333,0.452879,0.198588,0.394736,0.452167,0.754132,0.470142,0.698455,0.715423,0.981624,0.34275,0.860889,0.60159,0.728224,0.470602,0.79504,0.00383306,0.107024,0.741855,0.620307,0.972163,0.887782,0.549655,0.95238,0.444468,0.806399,0.952551,0.342356,0.320234,0.910819,0.550131,0.34773,0.634547,0.570202,0.66042,0.558742,0.0510408,0.364803,0.0607581,0.606159,0.796708,0.489145,0.175454,0.752201,0.245753,0.915505,0.207102,0.502872,0.914795,0.449477,0.166969,0.70331,0.840658,0.517644,0.893411,0.324131,0.23517,0.442088,0.738041,0.627946,0.781652,0.719021,0.655431,0.38119,0.517524,0.516239,0.474879,0.68369,0.687272,0.426223,0.552016,0.11049,0.144987,0.755741,0.307417,0.80468,0.327593,0.431421,0.0161495,0.176815,0.120046,0.556428,0.551479,0.472287,0.601918,0.822167,0.879585,0.676697,0.434285,0.491843,0.924371,0.977641,0.918376,0.231877,0.525657,0.465152,0.930481,0.246123,0.74416,0.0203167,0.236027,0.617495,0.00445777,0.136023,0.36846,0.0610675,0.0660772,0.756749,0.376182,0.481259,0.334107,0.820517,0.38625,0.751857,0.49439,0.359614,0.60923,0.962125,0.261961,0.439025,0.643072,0.288045,0.922322,0.852102,0.920412,0.0273512,0.846293,0.147001,0.927215,0.160212,0.916161,0.755853,0.938244,0.517327,0.47551,0.89869,0.0445849,0.812021,0.050044,0.427768,0.295054,0.49132,0.236961,0.320829,0.348595,0.0472694,0.0978901,0.506725,0.697404,0.253493,0.343813,0.842337,0.733942,0.768478,0.258059,0.756002,0.767188,0.330179,0.299362,0.652255,0.328269,0.10185,0.0253348,0.207643,0.261292,0.990407,0.709698,0.9604,0.041293,0.0170264,0.33687,0.900253,0.972583,0.20733,0.525632,0.81139,0.140854,0.263472,0.430504,0.939346,0.0225924,0.0403472,0.49376,0.244432,0.0756158,0.747847,0.578389,0.271305,0.0358286,0.523126,0.563389,0.249796,0.822861,0.48418,0.402009,0.125398,0.958153,0.94057,0.663731,0.894473,0.280924,0.565126,0.248454,0.703024,0.780485,0.353872,0.998533,0.755842,0.167905,0.325464,0.230726,0.359234,0.923094,0.253655,0.857325,0.00941581,0.992055,0.136002,0.284688,0.517354,0.0960704,0.187591,0.665165,0.88997,0.875953,0.666274,0.210362,0.0446587,0.578011,0.74738,0.0290739,0.134699,0.978981,0.395371,0.659892,0.104412,0.160703,0.603426,0.28451,0.755783,0.771082,0.7507,0.622281,0.15181,0.046948,0.807507,0.730481,0.744536,0.211138,0.731634,0.180972,0.720979,0.904412,0.280804,0.0388584,0.112617,0.380762,0.623002,0.724644,0.323336,0.0158815,0.455561,0.064,0.0652567,0.0550631,0.0511323,0.242384,0.949805,0.799408,0.333483,0.369512,0.884573,0.711498,0.453544,0.634447,0.422638,0.0626082,0.544076,0.160297,0.944529,0.448141,0.681068,0.677314,0.498452,0.0662763,0.654336,0.730705,0.681666,0.0531727,0.833816,0.962633,0.263506,0.948455,0.892107,0.952838,0.25397,0.294433,0.95689,0.400558,0.658602,0.106182,0.18871,0.0345823,0.500923,0.0164384,0.148775,0.306566,0.368097,0.426412,0.623431,0.289244,0.683115,0.343282,0.582498,0.963782,0.246098,0.596826,0.25252,0.279773,0.94573,0.306965,0.372036,0.726594,0.853027,0.431256,0.452406,0.0459118,0.258961,0.89478,0.351707,0.272048,0.90857,0.880986,0.229725,0.651467,0.880191,0.172225,0.890623,0.365343,0.943619,0.697583,0.795421,0.165289,0.246888,0.386503,0.914917,0.226083,0.9742,0.31681,0.638632,0.441803,0.190824,0.369143,0.00484282,0.734584,0.842203,0.653479,0.45344,0.374831,0.190768,0.671087,0.342392,0.722379,0.385089,0.161542,0.429626,0.99261,0.535568,0.559037,0.224471,0.403835,0.146341,0.550693,0.245425,0.895551,0.812988,0.583605,0.0391121,0.544714,0.752099,0.547162,0.621953,0.810829,0.83113,0.740443,0.577991,0.073396,0.341487,0.107763,0.34184,0.0592936,0.558909,0.244407,0.301591,0.822959,0.227266,0.220942,0.659494,0.819584,0.941415,0.321682,0.294575,0.560213,0.0765504,0.356528,0.832799,0.616348,0.473915,0.510074,0.444572,0.861207,0.710973,0.347941,0.301443,0.776671,0.158812,0.708515,0.236276,0.776378,0.804465,0.529871,0.46522,0.214703,0.38387,0.863505,0.617221,0.432541,0.116928,0.371681,0.366051,0.125301,0.144049,0.982181,0.0747344,0.0226536,0.0341112,0.244488,0.579629,0.423998,0.061873,0.771317,0.536819,0.0753288,0.856872,0.94967,0.277811,0.334213,0.0343578,0.0972169,0.221567,0.102236,0.71106,0.770024,0.880204,0.222067,0.207319,0.768577,0.151723,0.749288,0.781187,0.0100386,0.419515,0.485598,0.277799,0.275513,0.326865,0.61501,0.234446,0.967723,0.533946,0.985717,0.694262,0.24658,0.909741,0.404175,0.131256,|0.616264,0.742154,0.515634,0.447716,0.279836,0.414666,0.735177,0.772867,0.489745,0.104133,0.614062,0.18991,0.640503,0.760808,0.688779,0.245403,0.80515,0.994291,0.788341,0.415567,0.960709,0.939124,0.957023,0.0431775,0.190968,0.323699,0.35186,0.053197,0.803055,0.346764,0.464993,0.549648,0.729434,0.725523,0.316733,0.208822,0.654171,0.0988494,0.643077,0.695023,0.635917,0.749745,0.442517,0.257565,0.801385,0.760291,0.878671,0.679777,0.683411,0.218161,0.0297127,0.522923,0.755813,0.294068,0.970917,0.0392573,0.121625,0.906591,0.789505,0.549095,0.203518,0.736274,0.374506,0.189739,0.402946,0.319689,0.743855,0.56294,0.705599,0.0498058,0.99069,0.695454,0.574512,0.98854,0.564806,0.26379,0.0596068,0.00613523,0.948785,0.0640138,0.482622,0.180103,0.803973,0.507269,0.162109,0.315016,0.769877,0.979202,0.183734,0.549447,0.954387,0.226829,0.585117,0.68808,0.486829,0.141161,0.267576,0.689039,0.671624,0.862395,0.849015,0.311691,0.0489182,0.864667,0.452269,0.00944453,0.733217,0.432661,0.706292,0.129739,0.235475,0.0392786,0.564258,0.637371,0.479699,0.727176,0.612321,0.346113,0.361156,0.627154,0.336292,0.539769,0.871692,0.649218,0.979056,0.38439,0.346923,0.548402,0.571859,0.203178,0.719711,0.00327528,0.173566,0.0751204,0.499317,0.536,0.629425,0.565326,0.944763,0.687753,0.681069,0.657283,0.0604669,0.574545,0.847017,0.729799,0.69604,0.885977,0.635196,0.17764,0.235731,0.707544,0.676701,0.979019,0.343656,0.817851,0.879048,0.41612,0.997192,0.937719,0.624569,0.706365,0.831405,0.785205,0.256877,0.742307,0.0190972,0.656346,0.586748,0.87153,0.826302,0.792993,0.500692,0.218289,0.992976,0.380903,0.640117,0.783606,0.552342,0.605811,0.456194,0.229719,0.413486,0.921588,0.39142,0.0594957,0.663118,0.931771,0.194436,0.0497845,0.0758115,0.806848,0.623324,0.151095,0.114761,0.720133,0.401697,0.993048,0.515675,0.442392,0.988204,0.0731093,0.930801,0.630335,0.728293,0.455287,0.87667,0.857722,0.0544823,0.0727417,0.173248,0.679642,0.335258,0.114458,0.0402612,0.304007,0.391549,0.740782,0.600811,0.265959,0.542994,0.440032,0.216298,0.408142,0.687532,0.447206,0.703696,0.276419,0.737074,0.340554,0.994523,0.0263205,0.909216,0.457653,0.00683439,0.112031,0.532433,0.770098,0.468831,0.0758023,0.74234,0.368054,0.199948,0.864663,0.370908,0.596045,0.694708,0.15262,0.464908,0.286884,0.355075,0.577979,0.733617,0.803025,0.976159,0.0253713,0.297209,0.270898,0.380753,0.855939,0.562098,0.706903,0.72211,0.691773,0.437332,0.104931,0.34122,0.646206,0.307861,0.21575,0.155772,0.493872,0.83967,0.624994,0.218157,0.989791,0.213774,0.838225,0.517798,0.843068,0.0628427,0.252013,0.473919,0.258271,0.352893,0.16487,0.603667,0.87638,0.933091,0.929467,0.38126,0.53274,0.277953,0.62824,0.165109,0.333209,0.372119,0.000552475,0.566078,0.747345,0.224004,0.0540397,0.0629056,0.793401,0.0126406,0.597407,0.842408,0.802983,0.0326146,0.604366,0.458209,0.222397,0.80132,0.356624,0.961365,0.169389,0.510606,0.0314342,0.0345624,0.179291,0.677122,0.937571,0.837811,0.421822,0.627021,0.948615,0.249428,0.656749,0.896104,0.0852956,0.447834,0.846241,0.0749536,0.10073,0.86843,0.333149,0.151334,0.220721,0.0495768,0.420163,0.70778,0.67605,0.316579,0.12148,0.88988,0.343115,0.818537,0.00224394,0.413202,0.0450013,0.60835,0.0868573,0.411408,0.449459,0.886058,0.830264,0.124577,0.294487,0.775854,0.150161,0.64382,0.0593113,0.838694,0.36219,0.733931,0.0842834,0.112248,0.896533,0.466532,0.640599,0.221604,0.515369,0.931823,0.527125,0.042918,0.0402474,0.0709959,0.920443,0.698849,0.692305,0.733511,0.777055,0.730765,0.999942,0.555939,0.00947505,0.695383,0.00136685,0.667571,0.324527,0.326945,0.422729,0.911498,0.234534,0.378608,0.171798,0.87592,0.352609,0.8268,0.846208,0.414472,0.682721,0.768432,0.0567842,0.801965,0.264422,0.0701076,0.451739,0.50684,0.125111,0.615904,0.915711,0.140336,0.924663,0.989862,0.212373,0.683877,0.746639,0.485651,0.56147,0.714871,0.328837,0.556817,0.776512,0.760324,0.560267,0.885123,0.458785,0.193919,0.459965,0.768613,0.911364,0.372907,0.868141,0.777547,0.348496,0.180645,0.296626,0.0176525,0.726532,0.0210869,0.834441,0.140823,0.259619,0.215967,0.0450857,0.911693,0.431885,0.343268,0.650706,0.935896,0.149837,0.769238,0.271831,0.605031,0.470247,0.812923,0.17855,0.160099,0.677144,0.354021,0.214311,0.325749,0.0426325,0.741209,0.193637,0.204031,0.3974,0.717635,0.842897,0.900829,0.748357,0.960482,0.0734524,0.781006,0.533032,0.601523,0.0800202,0.231707,0.354267,0.635589,0.316112,0.785411,0.747758,0.171176,0.0384721,0.240687,0.498731,0.64468,0.752083,0.675119,0.19435,0.198821,0.151701,0.657236,0.142947,0.551396,0.776005,0.202206,0.685222,0.00059849,0.45445,0.961593,0.367528,0.946672,0.748174,0.514771,0.542484,0.21497,0.0748503,0.718209,0.415345,0.186446,0.905357,0.332392,0.5097,0.0711508,0.596482,0.247091,0.378543,0.725849,0.397357,0.241006,0.109789,0.590335,0.243808,0.68338,0.561549,0.0770713,0.813821,0.568407,0.19135,0.36475,0.282416,0.73087,0.0222018,0.888177,0.730395,0.211856,0.0763369,0.805291,0.802912,0.214024,0.870253,0.620434,0.97598,0.744528,0.281792,0.538922,0.982196,0.134271,0.654813,0.124748,0.225908,0.46297,0.234833,0.993297,0.863798,0.909128,0.107014,0.639183,0.923017,0.354201,0.275605,0.878939,0.518278,0.0613887,0.832841,0.219516,0.507968,0.646274,0.181019,0.0900241,0.315933,0.726167,0.229631,0.23213,0.0261747,0.583879,0.336373,0.0309287,0.532445,0.012976,0.433597,0.980005,0.878585,0.837453,0.372321,0.351567,0.0834434,0.861919,0.212797,0.702044,0.506672,0.686287,0.281638,0.0487277,0.439648,0.109449,0.208895,0.770773,0.444453,0.974094,0.0557619,0.793917,0.399954,0.45104,0.313335,0.728904,0.825582,0.900716,0.119546,0.117728,0.82987,0.751522,0.831051,0.424215,0.756249,0.340873,0.466521,0.94541,0.63586,0.578711,0.478796,0.395657,0.501171,0.706183,0.763971,0.558211,0.147057,0.0656521,0.414627,0.380108,0.90654,0.18726,0.389065,0.950658,0.700696,0.0451729,0.949249,0.420276,0.725281,0.17494,0.0916126,0.399838,0.0251824,0.644269,0.618476,0.152419,0.549994,0.851531,0.518039,0.274429,0.795452,0.775657,0.0883942,0.0521447,0.854375,0.41736,0.519596,0.156239,0.425457,0.850958,0.758562,0.671364,0.543735,0.381799,0.588145,0.653496,0.567571,0.613757,0.165075,0.527294,0.371229,0.235419,0.835151,0.734883,0.611636,0.968488,0.525312,0.430838,0.770543,0.325184,0.603647,0.206835,0.813406,0.963771,0.349179,0.193958,0.208672,0.20043,0.0365714,0.225336,0.0537376,0.709793,0.154696,0.664542,0.209628,0.505964,0.620522,0.136153,0.293996,0.663715,0.998637,0.579572,0.640843,0.0949258,0.509,0.966802,0.193139,0.625439,0.554144,0.779843,0.641442,0.261017,0.378557,0.564747,0.0742205,0.115859,0.330773,0.0465533,0.0935578,0.560605,0.679199,0.575138,0.490423,0.593783,0.250006,0.936655,0.19532,0.87225,0.927855,0.45842,0.90822,0.0310022,0.148352,0.116494,0.711796,0.277126,0.779444,0.788596,0.0744957,0.750152,0.356034,0.176734,0.798959,0.483422,0.315645,0.465997,0.750841,0.259745,0.64671,0.530189,0.930612,0.3868,0.134908,0.0711444,0.060098,0.105352,0.189436,0.260285,0.818511,0.769911,0.345947,0.83929,0.234932,0.961103,0.0529364,0.0489243,0.0295698,0.221751,0.0969378,0.997,0.635408,0.759374,0.770178,0.61793,0.277945,0.137777,0.279483,0.93631,0.106898,0.525138,0.258689,0.386323,0.0199541,0.196554,0.110528,0.0871713,0.537452,0.985525,0.799754,0.395195,0.69982,0.88148,0.202677,0.614919,0.229716,0.459721,0.903062,0.0233738,0.583727,0.562026,0.0957624,0.470755,0.234519,0.60738,0.509561,0.426408,0.716337,0.92381,0.531361,0.25177,0.705896,0.157814,0.505857,0.756203,0.703283,0.407284,0.316435,0.514977,0.0221826,0.386507,0.662041,0.646262,0.0932037,0.379793,0.825423,0.412791,0.493547,0.869817,0.981106,0.370735,0.777644,0.150038,0.0943041,0.544483,0.877288,0.952526,0.495958,0.693621,0.404697,0.347447,0.371956,0.522112,0.602708,0.437592,0.202896,0.153535,0.488309,0.285207,0.130836,0.667973,0.222846,0.268903,0.567149,0.702923,0.393811,0.676503,0.277742,0.915228,0.731426,0.0614403,0.796495,0.301324,0.937191,0.551938,0.793001,0.991756,0.247517,0.893303,0.0939679,0.34678,0.537642,0.0814123,0.660467,0.586651,0.73059,0.698303,0.858744,0.236812,0.500692,0.593712,0.529081,0.0624483,0.545476,0.238004,0.799475,0.486507,0.287043,0.429365,0.759475,0.640559,0.424287,0.803694,0.545633,0.126905,0.624401,0.99709,0.477228,0.237399,0.221056,0.531029,0.133423,0.489878,0.269493,0.331093,0.788803,0.838072,0.769867,0.547406,0.170028,0.936725,0.991206,0.29206,0.620854,0.202444,0.532601,0.712678,0.345789,0.238583,0.579021,0.917146,0.264005,0.143807,0.249532,0.893366,0.267598,0.896379,0.547417,0.170878,0.200355,0.261236,0.260461,0.843832,0.819016,0.66092,0.18064,0.432628,0.52081,0.639834,0.57681,0.232798,0.320131,0.61839,0.00219607,0.965834,0.33224,0.691031,0.318992,0.281654,0.133072,0.50355,0.679371,0.318255,0.753146,0.263742,0.108288,0.646533,0.607517,0.447218,0.438854,0.672934,0.369609,0.508796,0.395179,0.190916,0.554389,0.960486,0.802521,0.20983,0.297998,0.0453312,0.962286,0.478735,0.405553,0.702487,0.561958,0.274246,0.540652,0.161251,0.970284,0.258537,0.0763105,0.6081,0.772856,0.69836,0.70187,0.443827,0.180543,0.672551,0.0855367,0.478064,0.562947,0.788122,0.324588,0.905138,0.369943,0.38341,0.93964,|0.149686,0.243193,0.246772,0.646463,0.850956,0.671817,0.448035,0.883687,0.532947,0.903765,0.00128162,0.463628,0.773338,0.751304,0.731133,0.912721,0.508837,0.81378,0.0386695,0.214902,0.89413,0.714735,0.290547,0.881096,0.286768,0.863467,0.521536,0.0311691,0.533068,0.769558,0.764389,0.119533,0.519903,0.296578,0.29257,0.764293,0.755404,0.910042,0.230789,0.707307,0.754694,0.996957,0.911379,0.127256,0.208405,0.0659857,0.424517,0.867734,0.631631,0.822854,0.738627,0.881082,0.715141,0.559794,0.66666,0.458683,0.223095,0.0470119,0.76051,0.0969428,0.667969,0.901258,0.938857,0.910508,0.95528,0.841026,0.0840665,0.378298,0.0368742,0.102654,0.278445,0.362939,0.272334,0.112879,0.926962,0.65296,0.729069,0.732382,0.32959,0.958961,0.925363,0.115636,0.507814,0.326219,0.0554348,0.631905,0.863048,0.299836,0.123102,0.873025,0.550439,0.757381,0.830526,0.307759,0.476054,0.245926,0.0517529,0.627513,0.523157,0.665967,0.411821,0.796161,0.517094,0.247904,0.827755,0.178798,0.00906819,0.127278,0.716541,0.489761,0.394958,0.0503383,0.00912917,0.521484,0.475396,0.745224,0.482842,0.682519,0.956785,0.639747,0.311287,0.0523571,0.108987,0.223198,0.678699,0.0827964,0.345091,0.304548,0.919244,0.627054,0.124683,0.487314,0.556923,0.388852,0.875019,0.183498,0.20029,0.535657,0.0143265,0.321286,0.419801,0.152501,0.106869,0.284332,0.100822,0.879956,0.94533,0.147119,0.697567,0.568773,0.33071,0.546467,0.881022,0.858856,0.476307,0.97284,0.242665,0.179564,0.589369,0.477835,0.676789,0.965815,0.061935,0.801962,0.391278,0.782904,0.188927,0.474083,0.889345,0.914986,0.350267,0.119981,0.181354,0.826142,0.400268,0.0326911,0.506334,0.708046,0.0865569,0.425915,0.320536,0.85654,0.92105,0.711518,0.840776,0.0687246,0.153294,0.200837,0.889006,0.562934,0.949051,0.0470537,0.323538,0.756219,0.527017,0.496547,0.0529681,0.470799,0.986431,0.0481369,0.0124896,0.661823,0.0104323,0.609165,0.487627,0.888768,0.376251,0.939844,0.714936,0.731503,0.482226,0.269518,0.457128,0.446593,0.808038,0.139163,0.600481,0.315569,0.506175,0.22197,0.290629,0.356576,0.458552,0.36647,0.728928,0.0856588,0.113081,0.526803,0.763245,0.95098,0.940753,0.547288,0.949289,0.388891,0.0870361,0.470551,0.458722,0.701415,0.632196,0.727034,0.416675,0.675256,0.299077,0.0425165,0.407581,0.109009,0.660451,0.724486,0.0409964,0.933988,0.24236,0.320963,0.75464,0.894824,0.322737,0.752098,0.880567,0.422098,0.0347348,0.0653652,0.156128,0.651145,0.260028,0.0664105,0.227075,0.650345,0.814674,0.130385,0.489263,0.164124,0.330851,0.304561,0.536407,0.365727,0.105149,0.753018,0.64626,0.686625,0.321502,0.826779,0.848888,0.78171,0.655004,0.883289,0.170417,0.435508,0.167933,0.459651,0.443302,0.165493,0.631611,0.438663,0.167144,0.72471,0.119672,0.934381,0.916925,0.0350072,0.76518,0.329004,0.0555092,0.91139,0.65665,0.703292,0.975046,0.0227728,0.900536,0.783059,0.255042,0.385039,0.887136,0.25717,0.644134,0.418804,0.296585,0.71099,0.13923,0.476005,0.0963459,0.361471,0.939466,0.0995415,0.847405,0.858074,0.920978,0.607429,0.212811,0.0881146,0.381036,0.0841731,0.759511,0.24167,0.558734,0.930947,0.270939,0.202479,0.0953541,0.139858,0.796906,0.0408633,0.965246,0.288127,0.43505,0.0720975,0.0547479,0.122708,0.73618,0.846406,0.234907,0.42261,0.60583,0.192176,0.134483,0.573764,0.945896,0.234587,0.751413,0.522277,0.0605107,0.799464,0.99392,0.857145,0.530697,0.782997,0.184784,0.521938,0.49212,0.871593,0.387026,0.148117,0.113672,0.900595,0.0558792,0.708259,0.0852087,0.270355,0.509366,0.272413,0.928024,0.814409,0.0687681,0.622904,0.0098933,0.194415,0.321404,0.209378,0.869071,0.0359115,0.671727,0.000171721,0.67497,0.391657,0.729937,0.850858,0.391425,0.580756,0.367093,0.248501,0.987555,0.429712,0.302933,0.89464,0.175727,0.49044,0.074248,0.145737,0.526803,0.456498,0.1861,0.334972,0.865741,0.959321,0.673668,0.770411,0.145245,0.737059,0.0194914,0.0920697,0.0996293,0.796644,0.980412,0.920698,0.438772,0.678536,0.467946,0.466329,0.153354,0.803885,0.709168,0.617037,0.632994,0.671116,0.252742,0.480238,0.535029,0.18796,0.97271,0.754445,0.68474,0.615158,0.868515,0.743533,0.660873,0.249058,0.478201,0.114248,0.693828,0.723649,0.958203,0.268133,0.843846,0.198683,0.764141,0.75899,0.170754,0.951388,0.899534,0.76288,0.312628,0.917444,0.261144,0.51903,0.709584,0.944544,0.794067,0.390754,0.464438,0.845789,0.320621,0.893016,0.702213,0.0568066,0.106889,0.840798,0.479935,0.782184,0.958291,0.445241,0.946325,0.487208,0.856549,0.23826,0.1141,0.371531,0.297433,0.371663,0.727343,0.495375,0.935749,0.159868,0.462236,0.242604,0.474571,0.757681,0.955403,0.50049,0.507155,0.582568,0.302174,0.48357,0.370801,0.0729864,0.489166,0.322999,0.822266,0.43071,0.923094,0.547412,0.242954,0.372565,0.317087,0.364826,0.820517,0.679559,0.0367233,0.539174,0.871863,0.509603,0.0671635,0.927655,0.39472,0.0794519,0.0255283,0.798276,0.042816,0.100553,0.094555,0.506767,0.78124,0.269789,0.314688,0.0361874,0.724246,0.384233,0.194166,0.391484,0.187291,0.689255,0.699353,0.320441,0.598724,0.397744,0.537248,0.842018,0.753985,0.499851,0.22503,0.251413,0.409327,0.85114,0.391519,0.840564,0.189463,0.789995,0.263826,0.481261,0.372691,0.0472102,0.10463,0.793093,0.782478,0.443231,0.23829,0.138547,0.237297,0.423472,0.579322,0.0454133,0.811144,0.417115,0.466079,0.223569,0.194296,0.00157022,0.732898,0.250216,0.487265,0.594867,0.0521822,0.4907,0.0467067,0.34085,0.00691718,0.133197,0.513424,0.989672,0.848509,0.341148,0.217636,0.747237,0.379527,0.153645,0.473094,0.665149,0.930613,0.132849,0.631975,0.023173,0.87176,0.664494,0.788256,0.709396,0.377924,0.539611,0.327196,0.587258,0.651312,0.930257,0.730308,0.295513,0.527206,0.191731,0.880856,0.0606297,0.750168,0.214869,0.833903,0.798992,0.98095,0.245063,0.406985,0.568166,0.965537,0.68767,0.492972,0.573723,0.859435,0.21596,0.941771,0.756256,0.260645,0.384159,0.467352,0.412161,0.0120644,0.520118,0.935804,0.581138,0.337923,0.408827,0.622673,0.705938,0.566633,0.986181,0.699479,0.666611,0.573192,0.367707,0.999451,0.684189,0.407225,0.277294,0.10464,0.4128,0.807965,0.687127,0.183624,0.86364,0.905241,0.225823,0.0103705,0.0676722,0.570509,0.826994,0.366652,0.775272,0.456274,0.580153,0.744734,0.137358,0.283517,0.367839,0.885813,0.73322,0.691216,0.972195,0.470774,0.681848,0.535538,0.945046,0.187029,0.63745,0.318481,0.0822811,0.405566,0.22738,0.919106,0.309498,0.413717,0.641386,0.662899,0.322353,0.294461,0.908534,0.473362,0.178627,0.989575,0.446831,0.451798,0.228596,0.973122,0.456761,0.0287726,0.17836,0.102095,0.175862,0.941111,0.0634081,0.899866,0.831979,0.620797,0.334952,0.606591,0.115301,0.570473,0.755048,0.371763,0.54268,0.245865,0.0504996,0.711511,0.680566,0.926592,0.978646,0.0649495,0.596169,0.399899,0.500524,0.508459,0.242792,0.462812,0.80376,0.532554,0.450831,0.391393,0.980053,0.701436,0.350923,0.371856,0.305106,0.957378,0.0754588,0.102565,0.47386,0.62631,0.506066,0.875439,0.915821,0.544549,0.618638,0.211048,0.896348,0.494779,0.0511255,0.374166,0.25973,0.826383,0.431723,0.018368,0.490643,0.574834,0.894531,0.753066,0.331731,0.780851,0.407637,0.545649,0.42528,0.0348333,0.168955,0.459306,0.21312,0.107132,0.710055,0.0624709,0.798602,0.0791605,0.895621,0.0402536,0.879987,0.697822,0.351255,0.393712,0.224978,0.640774,0.307292,0.62053,0.354546,0.098601,0.7072,0.162144,0.283592,0.568961,0.609823,0.318328,0.441612,0.953189,0.367568,0.105594,0.632745,0.422238,0.50127,0.990814,0.43526,0.0262392,0.100053,0.606835,0.415147,0.434199,0.161359,0.981176,0.30699,0.649381,0.240266,0.275145,0.271528,0.166881,0.0868684,0.213836,0.0555022,0.339754,0.561366,0.316515,0.613138,0.099656,0.375898,0.560372,0.273886,0.668997,0.491659,0.0218545,0.560812,0.555442,0.441011,0.47836,0.745681,0.954814,0.680888,0.470662,0.274502,0.261675,0.217489,0.980984,0.360269,0.22502,0.823084,0.643428,0.988924,0.532486,0.301751,0.55043,0.753732,0.81352,0.362977,0.197549,0.1576,0.0571366,0.533116,0.40723,0.296034,0.478943,0.807528,0.567649,0.0906687,0.637005,0.91348,0.519778,0.402858,0.0011549,0.804834,0.435638,0.66856,0.225997,0.870177,0.149544,0.0839682,0.453277,0.589643,0.683932,0.684815,0.850973,0.863465,0.780211,0.0434722,0.329475,0.419083,0.887516,0.354665,0.520706,0.00791514,0.102424,0.761727,0.201145,0.797021,0.910784,0.153302,0.362092,0.497116,0.557078,0.978072,0.0590055,0.0323867,0.816284,0.708511,0.0434683,0.519358,0.410476,0.090934,0.86172,0.478114,0.393992,0.0481937,0.810907,0.323135,0.545442,0.00896037,0.937171,0.815153,0.413459,0.738888,0.639948,0.0653222,0.0992637,0.795753,0.721462,0.416261,0.29043,0.459052,0.272409,0.779795,0.299751,0.839669,0.406111,0.31306,0.161989,0.241733,0.353886,0.939607,0.581134,0.449678,0.210515,0.38605,0.65069,0.759975,0.0141175,0.633849,0.733634,0.943567,0.332012,0.864305,0.798679,0.522387,0.298256,0.153908,0.642307,0.518513,0.302166,0.656799,0.460999,0.823087,0.268788,0.837403,0.611935,0.729414,0.249378,0.435539,0.154762,0.927511,0.620167,0.637417,0.280725,0.90472,0.155317,0.0396054,0.697409,0.0780601,0.620023,0.497299,0.780499,0.968026,0.840161,0.197002,0.619801,0.329899,0.415138,0.439867,0.569137,0.401679,0.299623,0.885533,0.914336,0.0952219,0.971148,0.871218,0.694232,0.203037,0.744433,0.92446,0.52127,0.313156,|0.646633,0.997848,0.638289,0.887023,0.857882,0.69719,0.0413344,0.544909,0.367321,0.139162,0.221374,0.508509,0.593912,0.013129,0.649158,0.0232059,0.675572,0.44506,0.928127,0.323637,0.388065,0.689255,0.996167,0.53085,0.521388,0.951997,0.949471,0.570432,0.926473,0.464255,0.622351,0.864195,0.290845,0.15863,0.145902,0.36651,0.825013,0.966475,0.00310022,0.264264,0.191031,0.749023,0.412831,0.900527,0.342009,0.643432,0.173341,0.811822,0.41247,0.861376,0.0684187,0.826804,0.450299,0.142537,0.0943976,0.604239,0.910946,0.0469215,0.856303,0.269896,0.924093,0.988987,0.600762,0.910079,0.091493,0.750004,0.495274,0.122801,0.425716,0.359101,0.590034,0.98621,0.89622,0.210309,0.058329,0.807072,0.964135,0.19399,0.313708,0.959862,0.631298,0.739888,0.516385,0.571352,0.693304,0.23264,0.595474,0.657665,0.838415,0.050215,0.421811,0.235011,0.267333,0.888781,0.458441,0.0133739,0.506461,0.425712,0.359409,0.884298,0.263954,0.178865,0.188749,0.755039,0.980191,0.580374,0.234897,0.313385,0.479447,0.608586,0.463656,0.022702,0.403189,0.978159,0.647574,0.193748,0.0148755,0.372632,0.85354,0.642838,0.471965,0.860501,0.199586,0.00275683,0.976067,0.858051,0.278951,0.519278,0.562837,0.110169,0.172358,0.748951,0.995467,0.231809,0.810119,0.720006,0.38563,0.849679,0.527382,0.762111,0.387877,0.257585,0.230597,0.733433,0.760177,0.248689,0.988315,0.0433233,0.763189,0.518825,0.565791,0.356176,0.737008,0.391113,0.124062,0.881349,0.554311,0.983287,0.434429,0.405048,0.522767,0.483031,0.99386,0.624565,0.167259,0.200261,0.0993835,0.816049,0.209197,0.0997939,0.53899,0.999869,0.644009,0.872625,0.800686,0.971013,0.0066967,0.704416,0.367142,0.667394,0.320243,0.919836,0.537157,0.747621,0.519652,0.493695,0.188866,0.41842,0.58475,0.281079,0.911072,0.0578141,0.412044,0.374125,0.776573,0.115182,0.794881,0.0909251,0.0643361,0.729098,0.358016,0.272797,0.294486,0.636588,0.279905,0.71902,0.161711,0.751003,0.87656,0.449262,0.186221,0.417205,0.65261,0.157204,0.00485456,0.800697,0.586541,0.649553,0.142086,0.0783396,0.455577,0.411183,0.788838,0.927116,0.15973,0.0696901,0.795486,0.305291,0.668647,0.335104,0.741927,0.797956,0.990673,0.298002,0.42447,0.027741,0.942052,0.153782,0.1869,0.175526,0.187825,0.0573089,0.114541,0.0413519,0.722211,0.694272,0.809889,0.73728,0.149576,0.739679,0.294069,0.836876,0.670697,0.7453,0.201132,0.635198,0.234068,0.637223,0.029417,0.0589753,0.724832,0.0642862,0.493234,0.958414,0.798602,0.955021,0.0172086,0.979747,0.780068,0.334257,0.26821,0.278433,0.748871,0.949435,0.209506,0.385496,0.099179,0.762002,0.0947357,0.122591,0.318428,0.692361,0.402194,0.733147,0.184495,0.776484,0.950968,0.462331,0.616797,0.488323,0.45633,0.986515,0.181797,0.212094,0.636233,0.805115,0.44824,0.716034,0.615779,0.0216264,0.337321,0.192634,0.877169,0.944868,0.107329,0.106992,0.87663,0.214531,0.796358,0.889228,0.804569,0.376108,0.858514,0.929726,0.360352,0.940878,0.503453,0.281229,0.723924,0.275595,0.825798,0.89326,0.974471,0.684742,0.0714834,0.96343,0.50575,0.530382,0.868823,0.783106,0.686226,0.115532,0.179396,0.78971,0.289838,0.769527,0.18178,0.337,0.493456,0.515052,0.793325,0.122717,0.159486,0.742917,0.870883,0.757379,0.683163,0.474019,0.637043,0.14181,0.801079,0.609789,0.116589,0.602138,0.833759,0.380659,0.165813,0.177161,0.234991,0.619778,0.925195,0.588456,0.344695,0.302865,0.749079,0.648466,0.737087,0.403142,0.160088,0.446574,0.127655,0.232838,0.561559,0.185205,0.690434,0.487037,0.978009,0.417405,0.77634,0.71731,0.578383,0.577811,0.109861,0.408361,0.597778,0.927704,0.480762,0.13762,0.7586,0.816589,0.832376,0.215074,0.566556,0.80096,0.0211941,0.779011,0.876361,0.232649,0.0900394,0.241882,0.419279,0.11623,0.0882407,0.27594,0.350453,0.400061,0.491458,0.186122,0.93357,0.049451,0.748312,0.605791,0.539915,0.839108,0.534078,0.949154,0.723162,0.00662273,0.463595,0.0435448,0.0621293,0.746879,0.512054,0.596861,0.417466,0.382155,0.661529,0.632849,0.969518,0.765556,0.747917,0.614574,0.683015,0.520887,0.285168,0.547622,0.223987,0.86282,0.29903,0.905025,0.582569,0.950856,0.777394,0.0811347,0.214346,0.501249,0.93156,0.0863612,0.859058,0.236035,0.698258,0.173502,0.302808,0.203226,0.544872,0.815991,0.647873,0.720965,0.398591,0.935781,0.843388,0.0992197,0.410537,0.829415,0.448056,0.950325,0.47566,0.25504,0.184556,0.738921,0.506511,0.981048,0.416055,0.940057,0.505106,0.0586874,0.345888,0.749479,0.9691,0.455546,0.614957,0.891079,0.468764,0.119623,0.669841,0.230566,0.45298,0.929861,0.680116,0.255434,0.146761,0.791106,0.560857,0.926461,0.98141,0.270807,0.876043,0.169699,0.444578,0.464321,0.556476,0.574555,0.452654,0.929416,0.478294,0.155333,0.176531,0.756701,0.939268,0.930765,0.858454,0.839434,0.674819,0.117595,0.200912,0.564946,0.59604,0.729458,0.151495,0.389847,0.452318,0.0378861,0.579524,0.400343,0.0817409,0.643134,0.731845,0.0407292,0.93738,0.82964,0.0964874,0.92888,0.270634,0.992516,0.828097,0.25238,0.929956,0.583227,0.271281,0.0772055,0.0177971,0.966246,0.667863,0.571467,0.68804,0.19124,0.841122,0.247508,0.149667,0.849533,0.917666,0.471175,0.917441,0.0154327,0.668737,0.723141,0.54579,0.0753874,0.504137,0.604174,0.892794,0.535656,0.436624,0.106121,0.720389,0.941396,0.330403,0.923806,0.494058,0.714534,0.431886,0.243952,0.36004,0.22478,0.812281,0.0265467,0.51044,0.789338,0.591071,0.1023,0.320595,0.38455,0.0770651,0.25531,0.80569,0.676516,0.297815,0.864287,0.187701,0.127916,0.0548373,0.525467,0.566916,0.745453,0.991123,0.771826,0.387965,0.0835091,0.567196,0.171462,0.958318,0.485934,0.962676,0.741174,0.606416,0.828364,0.764364,0.29692,0.705784,0.976149,0.963252,0.552794,0.233756,0.83049,0.449744,0.855513,0.982669,0.53732,0.198862,0.633749,0.344081,0.189671,0.20067,0.158952,0.83628,0.279165,0.381771,0.490022,0.320162,0.447696,0.292237,0.470963,0.0937598,0.303601,0.366651,0.743821,0.233488,0.0335498,0.438915,0.672037,0.859924,0.38217,0.870958,0.412628,0.582103,0.583457,0.99663,0.148979,0.697389,0.181755,0.755688,0.417039,0.718497,0.562646,0.670586,0.451862,0.220413,0.264871,0.829083,0.504687,0.18544,0.845449,0.0869687,0.39756,0.234544,0.565226,0.0821158,0.0170738,0.919942,0.0510721,0.927442,0.54508,0.241665,0.00139546,0.798553,0.00724494,0.157767,0.91263,0.603347,0.316292,0.806685,0.624369,0.773616,0.10237,0.312103,0.658883,0.408375,0.530725,0.742523,0.487699,0.709694,0.974476,0.109835,0.819343,0.845874,0.876777,0.00711113,0.124584,0.0103056,0.0460199,0.820446,0.0212482,0.238954,0.189658,0.524165,0.737986,0.103799,0.486708,0.46625,0.937285,0.888407,0.0534904,0.922489,0.384095,0.842555,0.34686,0.566714,0.281773,0.270541,0.864172,0.504755,0.971913,0.583223,0.686255,0.181088,0.0704384,0.747285,0.586985,0.624146,0.75772,0.526853,0.709925,0.656947,0.594469,0.936484,0.197267,0.145525,0.268351,0.794126,0.738486,0.660614,0.724241,0.336641,0.804281,0.939719,0.532566,0.792326,0.197578,0.399766,0.813279,0.858732,0.85036,0.876001,0.139241,0.421942,0.936719,0.612958,0.873042,0.27895,0.728278,0.39052,0.559131,0.338395,0.524475,0.834321,0.391733,0.965903,0.0294893,0.678816,0.937477,0.903483,0.77052,0.276333,0.245892,0.710943,0.919736,0.30249,0.180986,0.00962639,0.0539043,0.203809,0.714003,0.707312,0.5034,0.189432,0.526418,0.986329,0.675707,0.0448171,0.920618,0.645841,0.406217,0.289746,0.38047,0.0446235,0.181511,0.0533962,0.382028,0.798076,0.325395,0.244559,0.841357,0.966612,0.748377,0.489191,0.739048,0.193819,0.975177,0.360265,0.31379,0.566564,0.827662,0.771375,0.713887,0.495397,0.724454,0.0188978,0.71097,0.373275,0.901202,0.949918,0.361214,0.247044,0.793981,0.239993,0.98671,0.76737,0.872008,0.617081,0.573612,0.173046,0.124793,0.400526,0.688225,0.689391,0.168491,0.919819,0.16675,0.269878,0.437147,0.123691,0.383446,0.828661,0.581974,0.687888,0.618479,0.945843,0.978891,0.798565,0.0909809,0.583391,0.476815,0.951539,0.539889,0.431732,0.42644,0.115399,0.175276,0.910639,0.596761,0.543887,0.694633,0.873936,0.880038,0.116817,0.76576,0.35671,0.119887,0.50834,0.583726,0.162547,0.247612,0.773325,0.930434,0.794908,0.268398,0.522514,0.525019,0.668087,0.0703882,0.0938539,0.416553,0.555245,0.329318,0.793208,0.39716,0.805222,0.706361,0.813432,0.242359,0.868099,0.474899,0.881296,0.739669,0.49257,0.364139,0.703207,0.397603,0.932257,0.856907,0.24777,0.0285403,0.353439,0.264893,0.85362,0.712839,0.372733,0.472836,0.465641,0.396889,0.395224,0.849061,0.79002,0.793374,0.95378,0.195222,0.63811,0.22775,0.698895,0.91229,0.731035,0.516451,0.117247,0.325288,0.986462,0.0175109,0.0361218,0.0707181,0.820449,0.537051,0.539186,0.60013,0.308834,0.123934,0.245411,0.86016,0.845366,0.931733,0.505239,0.828556,0.61009,0.792868,0.980719,0.825301,0.442695,0.144537,0.624338,0.235662,0.158727,0.111222,0.137751,0.742081,0.270809,0.263014,0.891706,0.272328,0.154345,0.214212,0.637985,0.545336,0.641364,0.475754,0.230407,0.889582,0.0294536,0.637013,0.24526,0.198582,0.661418,0.60967,0.787611,0.325927,0.132767,0.063151,0.477833,0.0417084,0.803937,0.829409,0.686579,0.879893,0.639271,0.0878118,0.488387,0.0970271,0.567812,0.629409,0.437783,0.391052,0.383216,0.874668,0.869429,0.917912,0.0234156,0.277599,0.4373,0.586865,0.596285,0.953044,0.713838,0.12822,|0.0133468,0.0714868,0.0342463,0.694154,0.0675644,0.717139,0.717775,0.28277,0.860406,0.947005,0.931272,0.861008,0.599797,0.894584,0.191434,0.460768,0.943388,0.272365,0.768647,0.63317,0.850633,0.610663,0.888888,0.849973,0.307456,0.626019,0.364162,0.737079,0.646364,0.939693,0.761399,0.92223,0.962707,0.884569,0.659925,0.670915,0.863661,0.316047,0.592391,0.93472,0.327161,0.832091,0.883014,0.0855232,0.121839,0.589916,0.441195,0.0767525,0.873573,0.306233,0.113895,0.26628,0.0824626,0.793396,0.101129,0.582922,0.449488,0.31331,0.798643,0.304322,0.645443,0.0121558,0.66647,0.744537,0.826335,0.180472,0.615684,0.997493,0.228064,0.0568355,0.118326,0.151634,0.155924,0.5961,0.0515992,0.120488,0.158987,0.380199,0.193198,0.914878,0.782561,0.168679,0.33147,0.647902,0.466138,0.831044,0.431098,0.547106,0.610059,0.0720626,0.200983,0.702129,0.437836,0.0272689,0.0459269,0.55414,0.340768,0.871211,0.635251,0.260243,0.86054,0.940094,0.706597,0.990281,0.300785,0.800791,0.292557,0.997642,0.548766,0.375498,0.524754,0.0962781,0.299098,0.319367,0.513312,0.980828,0.9196,0.500446,0.535311,0.0774712,0.346798,0.778965,0.974343,0.15277,0.0535577,0.92238,0.473073,0.316887,0.75157,0.389174,0.25989,0.563938,0.183296,0.0550202,0.844963,0.733367,0.96111,0.444409,0.328874,0.705675,0.400822,0.415168,0.0206978,0.054599,0.516418,0.744659,0.767465,0.124848,0.612439,0.354026,0.564658,0.730607,0.353816,0.718903,0.278552,0.997645,0.0331929,0.719835,0.959096,0.602624,0.145854,0.845148,0.550448,0.345392,0.0683046,0.30179,0.858988,0.715512,0.747138,0.646146,0.242381,0.412119,0.495053,0.689389,0.108235,0.0177179,0.0230086,0.244315,0.338428,0.718742,0.00816512,0.640969,0.167532,0.029604,0.332476,0.556722,0.910552,0.454532,0.905984,0.897161,0.633544,0.600976,0.254052,0.301306,0.0919601,0.530361,0.97621,0.599119,0.115465,0.621309,0.0320377,0.873513,0.314166,0.48043,0.538553,0.182361,0.6125,0.198723,0.683833,0.864002,0.592614,0.39849,0.964664,0.7885,0.794708,0.504486,0.420241,0.991935,0.291336,0.595958,0.146195,0.0730724,0.309354,0.607665,0.616538,0.506857,0.767261,0.582878,0.0131435,0.38223,0.78446,0.910269,0.28556,0.685325,0.391146,0.857434,0.133361,0.1224,0.313893,0.645855,0.466659,0.246222,0.691647,0.259572,0.838406,0.181781,0.761991,0.347656,0.270914,0.285963,0.150994,0.958651,0.750799,0.879598,0.176287,0.841218,0.992896,0.917552,0.74961,0.792737,0.88871,0.815435,0.520817,0.227375,0.450276,0.2863,0.779602,0.797596,0.655623,0.138504,0.263386,0.336973,0.1478,0.346013,0.857248,0.499234,0.616255,0.24943,0.0993084,0.419529,0.90039,0.95693,0.0751228,0.157708,0.866625,0.0265331,0.28935,0.411898,0.988759,0.927059,0.707263,0.485104,0.175844,0.583747,0.96186,0.82509,0.625916,0.325267,0.394092,0.415183,0.0677209,0.140695,0.0543604,0.107683,0.595766,0.63136,0.923061,0.572776,0.506125,0.0871284,0.824396,0.589855,0.75353,0.539043,0.649997,0.0686348,0.306902,0.918401,0.659051,0.642652,0.335948,0.180811,0.835041,0.568091,0.482481,0.417594,0.312305,0.263831,0.0745202,0.417064,0.627069,0.197657,0.231774,0.47712,0.664047,0.783286,0.965336,0.130712,0.325528,0.0773492,0.657571,0.235324,0.234385,0.261687,0.799363,0.934002,0.382772,0.843631,0.451715,0.0064292,0.629216,0.448803,0.515118,0.915929,0.805639,0.279104,0.658558,0.230787,0.435807,0.604961,0.105822,0.207569,0.508796,0.168106,0.203943,0.0357334,0.666322,0.405846,0.588127,0.43891,0.542062,0.0466649,0.384041,0.868792,0.0634071,0.494766,0.0243289,0.329437,0.483563,0.540471,0.514102,0.16507,0.95934,0.452372,0.841067,0.0362775,0.716989,0.163786,0.912914,0.604931,0.58321,0.53392,0.552583,0.112405,0.778054,0.322694,0.637816,0.229229,0.724805,0.556572,0.572292,0.895591,0.56549,0.888867,0.605979,0.0937476,0.932966,0.726254,0.156379,0.156885,0.709171,0.33143,0.466962,0.505794,0.428108,0.90236,0.600864,0.275471,0.835203,0.435499,0.852364,0.0129998,0.19352,0.572029,0.290194,0.75274,0.652149,0.888509,0.19719,0.028766,0.850661,0.764143,0.481069,0.724366,0.170516,0.111369,0.721316,0.789559,0.085905,0.527103,0.758664,0.77722,0.572361,0.960696,0.114912,0.176869,0.114798,0.914096,0.117835,0.115065,0.408168,0.344738,0.71783,0.699966,0.428547,0.701134,0.642044,0.074617,0.956366,0.162108,0.365906,0.518188,0.572936,0.995711,0.771363,0.214847,0.382461,0.100467,0.00408465,0.694872,0.60646,0.283816,0.940774,0.56095,0.859782,0.424208,0.175372,0.202738,0.785889,0.620276,0.369681,0.742706,0.42735,0.859202,0.453774,0.118729,0.919616,0.560523,0.183384,0.738307,0.0444514,0.369779,0.940813,0.347444,0.65506,0.814696,0.78696,0.608697,0.98606,0.337457,0.807743,0.824269,0.175712,0.0941041,0.122876,0.790109,0.0376728,0.680688,0.186028,0.148506,0.289395,0.450788,0.772779,0.92711,0.135818,0.0443095,0.643415,0.00985432,0.961967,0.0510221,0.960476,0.906749,0.826417,0.28445,0.656146,0.266992,0.450568,0.487687,0.291455,0.968466,0.901013,0.10936,0.150843,0.433802,0.557251,0.142292,0.097306,0.696544,0.50273,0.901806,0.5021,0.770216,0.513861,0.0122989,0.252237,0.650594,0.755414,0.129661,0.865528,0.0399994,0.939745,0.233148,0.875918,0.42547,0.412209,0.798618,0.226006,0.811668,0.226674,0.511533,0.869806,0.811352,0.62641,0.993869,0.485721,0.459872,0.263373,0.768945,0.837124,0.479814,0.864404,0.588412,0.84186,0.5025,0.551446,0.210389,0.957783,0.929685,0.249259,0.379797,0.717394,0.678312,0.511304,0.797425,0.748995,0.80074,0.959111,0.641852,0.793251,0.269782,0.10336,0.313028,0.265782,0.572016,0.21267,0.283757,0.947795,0.0588297,0.0208724,0.952841,0.619248,0.0417361,0.933051,0.324575,0.962434,0.633095,0.975368,0.714606,0.482523,0.544215,0.44654,0.990899,0.461576,0.660634,0.600456,0.0985352,0.375082,0.0330498,0.844894,0.469394,0.133856,0.0922881,0.15065,0.463677,0.405425,0.582582,0.382149,0.415628,0.869369,0.868268,0.250727,0.467016,0.97706,0.795273,0.0630692,0.108433,0.0115881,0.872109,0.567702,0.126597,0.274095,0.846598,0.890764,0.860622,0.26383,0.143642,0.563765,0.00494784,0.388342,0.0829291,0.945092,0.553293,0.274067,0.334398,0.486982,0.820486,0.845966,0.420267,0.722863,0.17992,0.498993,0.199889,0.274532,0.0332124,0.0307077,0.580089,0.348816,0.284715,0.199941,0.605628,0.30628,0.925959,0.0561689,0.519447,0.803114,0.200355,0.512802,0.416159,0.648977,0.195992,0.0505999,0.725131,0.210212,0.633077,0.204125,0.354294,0.590475,0.19021,0.448421,0.0225745,0.532614,0.281701,0.299271,0.521921,0.772094,0.542572,0.750565,0.568432,0.613924,0.50368,0.891646,0.775625,0.762821,0.147687,0.453992,0.669228,0.430787,0.741158,0.709205,0.519719,0.786175,0.766479,0.758856,0.824455,0.578403,0.346804,0.188015,0.578923,0.650538,0.468625,0.924737,0.82631,0.0926701,0.528554,0.665573,0.265016,0.575492,0.468585,0.663469,0.633053,0.575826,0.371635,0.705064,0.453469,0.133778,0.0295916,0.440729,0.93471,0.272982,0.479851,0.0518796,0.402479,0.909576,0.969154,0.0743247,0.831427,0.457174,0.0865387,0.939418,0.209698,0.958454,0.861471,0.408513,0.534588,0.322411,0.469598,0.390254,0.961586,0.168766,0.119461,0.38703,0.965889,0.291945,0.0952135,0.85947,0.296695,0.951362,0.779607,0.0175632,0.777821,0.58129,0.870791,0.11396,0.18354,0.260732,0.778303,0.0161508,0.193834,0.436017,0.598242,0.624143,0.142857,0.51203,0.761202,0.781473,0.29198,0.455289,0.753475,0.657464,0.028883,0.668846,0.739453,0.237544,0.899503,0.959625,0.573647,0.90869,0.972555,0.660257,0.319542,0.915515,0.247329,0.340086,0.924065,0.968693,0.0371272,0.927483,0.230576,0.960668,0.494199,0.193633,0.315786,0.434993,0.207916,0.277308,0.0886743,0.668951,0.410589,0.231365,0.650999,0.615666,0.417489,0.213757,0.0491519,0.331968,0.444504,0.491978,0.489788,0.630148,0.228503,0.616825,0.646858,0.551248,0.606374,0.0567274,0.180252,0.510794,0.402762,0.188189,0.397256,0.313297,0.0926766,0.187937,0.0694847,0.316269,0.346408,0.156739,0.891629,0.722958,0.668715,0.235734,0.39005,0.937604,0.454845,0.63629,0.763482,0.830648,0.103813,0.175575,0.113928,0.316844,0.62714,0.588846,0.0889211,0.623825,0.327767,0.346666,0.919503,0.635414,0.937027,0.302928,0.830605,0.178089,0.448944,0.633277,0.100601,0.401527,0.253132,0.863873,0.302047,0.758409,0.60121,0.529369,0.957848,0.493031,0.922486,0.797793,0.178184,0.383093,0.584117,0.498806,0.722551,0.304594,0.776524,0.172244,0.911311,0.0489953,0.0162176,0.942773,0.170498,0.707586,0.473084,0.500887,0.192779,0.051928,0.891732,0.352148,0.480006,0.565807,0.0764877,0.988823,0.973324,0.402052,0.739329,0.479017,0.481903,0.746408,0.989232,0.662023,0.431867,0.51982,0.142883,0.377774,0.837333,0.696752,0.946734,0.12938,0.516962,0.455746,0.294766,0.235915,0.325964,0.594214,0.72988,0.949881,0.977045,0.682546,0.10917,0.464084,0.57703,0.86115,0.737309,0.990576,0.248671,0.867942,0.852841,0.0791383,0.585387,0.876808,0.870284,0.888366,0.497941,0.522853,0.680392,0.325819,0.226156,0.313187,0.647148,0.024304,0.408601,0.850871,0.617506,0.121695,0.666415,0.848179,0.288711,0.646594,0.0861303,0.728872,0.317514,0.663661,0.435381,0.290089,0.345294,0.134127,0.788897,0.698186,0.0555826,0.390049,0.63598,0.848112,0.790308,0.981302,0.0555881,0.480421,0.884862,0.219304,0.983906,0.259354,0.630876,0.321552,0.285301,0.942969,0.389683,0.264897,0.369859,0.677318,0.295025,0.266233,0.443575,|0.652584,0.727097,0.64004,0.241743,0.904842,0.743447,0.842057,0.320572,0.909858,0.75151,0.503273,0.084343,0.877736,0.911361,0.0664687,0.973289,0.937116,0.925556,0.547258,0.8714,0.674566,0.731562,0.984291,0.0327271,0.289016,0.575725,0.551335,0.905257,0.380888,0.0187268,0.369083,0.190137,0.0158666,0.77185,0.516581,0.493147,0.736418,0.434297,0.791839,0.10177,0.405449,0.861065,0.621337,0.345438,0.568971,0.420491,0.273647,0.9531,0.797296,0.662946,0.809394,0.295135,0.615526,0.0528236,0.0228077,0.734613,0.429716,0.223171,0.521467,0.368596,0.130522,0.630846,0.0340034,0.283908,0.357565,0.681292,0.605715,0.845994,0.599175,0.940191,0.415723,0.0336281,0.899082,0.328999,0.390021,0.276517,0.459238,0.208851,0.991234,0.553101,0.0201432,0.114089,0.842202,0.619517,0.065967,0.122046,0.206078,0.661143,0.309052,0.138559,0.748436,0.100963,0.04025,0.041571,0.854427,0.978597,0.120709,0.529023,0.0741801,0.249606,0.867536,0.113847,0.411979,0.756273,0.0794129,0.161703,0.490084,0.817843,0.182656,0.927279,0.102571,0.854233,0.108484,0.858118,0.00506383,0.955141,0.699384,0.321927,0.223102,0.305079,0.0102342,0.946309,0.128599,0.72944,0.868622,0.669871,0.121404,0.301855,0.523449,0.825604,0.0751327,0.662678,0.808079,0.502977,0.427846,0.950267,0.308201,0.433188,0.247745,0.821733,0.837634,0.151257,0.878298,0.119409,0.683104,0.898748,0.0114713,0.82606,0.905519,0.297377,0.73027,0.250978,0.26715,0.811013,0.976762,0.605583,0.172818,0.76643,0.73096,0.531504,0.100169,0.650357,0.134811,0.785712,0.89016,0.0804428,0.00548869,0.571185,0.117423,0.870861,0.413307,0.811059,0.0452744,0.706248,0.920678,0.329353,0.330561,0.740374,0.924706,0.24077,0.959068,0.256395,0.230789,0.390139,0.169936,0.432057,0.438979,0.0204134,0.348899,0.652494,0.959606,0.520224,0.036074,0.212106,0.998446,0.333515,0.164078,0.402456,0.211275,0.640963,0.548844,0.214082,0.343116,0.201203,0.0329865,0.968814,0.937536,0.129183,0.915449,0.694516,0.836038,0.0774328,0.904065,0.205609,0.406379,0.0611801,0.617126,0.040962,0.961367,0.736024,0.75438,0.228049,0.659509,0.0409805,0.787166,0.903477,0.583846,0.864679,0.671102,0.866596,0.312255,0.678289,0.479068,0.271596,0.470548,0.48244,0.508504,0.983064,0.341954,0.684947,0.390112,0.400089,0.0507042,0.5932,0.735771,0.734763,0.607957,0.339026,0.463722,0.876282,0.0280501,0.198042,0.540689,0.428289,0.59993,0.159706,0.138521,0.206733,0.66922,0.659912,0.530515,0.809577,0.967284,0.981907,0.906348,0.606707,0.525188,0.873935,0.553268,0.433516,0.648558,0.439644,0.782332,0.6077,0.368074,0.448984,0.475196,0.41892,0.869255,0.138978,0.0594135,0.568022,0.00688571,0.579026,0.191544,0.116345,0.627436,0.488665,0.108761,0.088333,0.00728565,0.555529,0.765213,0.961834,0.482619,0.313629,0.159934,0.61178,0.16781,0.774326,0.803932,0.719409,0.164024,0.814922,0.605491,0.076449,0.6657,0.648921,0.888339,0.475707,0.220477,0.663417,0.809527,0.18062,0.00245696,0.63258,0.184784,0.576469,0.149728,0.60538,0.690454,0.598505,0.680479,0.351998,0.638122,0.399961,0.825115,0.0801156,0.802819,0.635985,0.535675,0.285015,0.513702,0.393711,0.0846128,0.025812,0.245656,0.948843,0.715334,0.584938,0.366858,0.476953,0.8557,0.174375,0.609448,0.310576,0.472936,0.248174,0.778201,0.902333,0.941238,0.354101,0.823897,0.815378,0.282284,0.192327,0.505924,0.120349,0.90685,0.798088,0.0319992,0.922287,0.564832,0.248651,0.782496,0.69511,0.36331,0.753895,0.30608,0.767306,0.550464,0.693668,0.977312,0.195856,0.373849,0.22734,0.551635,0.896168,0.388014,0.804706,0.464072,0.673627,0.391801,0.310934,0.789211,0.162385,0.607731,0.0222656,0.793529,0.101404,0.158093,0.335602,0.921642,0.126182,0.020685,0.48884,0.1352,0.218054,0.387022,0.0980261,0.42761,0.307052,0.411354,0.200858,0.205227,0.99698,0.759381,0.18474,0.0328611,0.839054,0.958269,0.8673,0.479796,0.765844,0.335965,0.467335,0.520989,0.136229,0.255858,0.0237951,0.340541,0.862383,0.103153,0.855552,0.268849,0.647558,0.608197,0.912811,0.472424,0.376716,0.0569262,0.494607,0.943186,0.840513,0.205952,0.982904,0.491957,0.489831,0.513257,0.701469,0.856403,0.0122089,0.384237,0.270489,0.0403359,0.864673,0.0545544,0.831351,0.551874,0.139635,0.919808,0.274167,0.329467,0.346703,0.995983,0.635119,0.267798,0.71658,0.861728,0.531547,0.101542,0.739483,0.260591,0.291015,0.719697,0.481398,0.841137,0.685101,0.44138,0.831899,0.86589,0.195743,0.949543,0.260719,0.0558777,0.709381,0.177739,0.237284,0.305731,0.209483,0.680205,0.335691,0.843919,0.79215,0.912744,0.927411,0.0852089,0.203705,0.177018,0.0765369,0.407025,0.163394,0.0942929,0.430097,0.690639,0.00555354,0.753576,0.0922679,0.17315,0.845478,0.554991,0.726804,0.942672,0.245396,0.657392,0.624728,0.212164,0.494209,0.262599,0.673399,0.697872,0.0342059,0.346584,0.0695868,0.157123,0.670518,0.129139,0.794411,0.095865,0.0294596,0.768366,0.0479859,0.0233084,0.461024,0.966011,0.164631,0.137645,0.770391,0.735211,0.735671,0.574973,0.768668,0.0233895,0.929004,0.82081,0.287875,0.631326,0.285203,0.965426,0.942066,0.569592,0.987612,0.691631,0.812542,0.229167,0.311296,0.860097,0.58295,0.429297,0.302199,0.181739,0.951706,0.396104,0.0651186,0.71967,0.732848,0.917862,0.0875455,0.0537447,0.078575,0.910175,0.925,0.788086,0.196302,0.692678,0.770515,0.525097,0.735914,0.583438,0.334303,0.150999,0.523071,0.530257,0.0361756,0.11868,0.998544,0.65031,0.3333,0.808122,0.752957,0.259967,0.290583,0.870425,0.628746,0.272379,0.585222,0.22116,0.214844,0.67666,0.298163,0.60939,0.734132,0.72762,0.714527,0.661187,0.117261,0.0472253,0.705171,0.0894241,0.389462,0.568478,0.156484,0.544047,0.300741,0.0222788,0.853744,0.778618,0.339577,0.39864,0.756672,0.416687,0.180963,0.45917,0.302602,0.804627,0.123143,0.517015,0.288369,0.326362,0.7482,0.22158,0.0603395,0.200512,0.235917,0.385045,0.587323,0.480401,0.50581,0.774981,0.473582,0.927992,0.579262,0.840706,0.384995,0.0879151,0.90776,0.652412,0.211984,0.82923,0.086161,0.656673,0.908527,0.0754179,0.9716,0.203881,0.611629,0.605969,0.857922,0.786926,0.706395,0.876932,0.975983,0.263141,0.900989,0.487069,0.719404,0.110369,0.844819,0.58106,0.620387,0.0143838,0.202953,0.679596,0.915665,0.266227,0.973335,0.54916,0.133257,0.79578,0.447387,0.231882,0.652972,0.692943,0.0273237,0.32098,0.996793,0.980585,0.125941,0.273507,0.0197943,0.933247,0.246255,0.47447,0.744051,0.679131,0.933533,0.0560896,0.766666,0.446162,0.274535,0.956299,0.245998,0.576142,0.673984,0.528326,0.594401,0.340657,0.181959,0.522035,0.575986,0.00505513,0.250753,0.286857,0.262307,0.051755,0.712146,0.32282,0.250502,0.0354552,0.0566701,0.573451,0.0806506,0.7303,0.485887,0.344397,0.110359,0.249511,0.1075,0.678141,0.153021,0.226543,0.0182478,0.807401,0.884505,0.609138,0.56568,0.681105,0.983214,0.38182,0.5014,0.486896,0.114571,0.318932,0.628428,0.420871,0.217229,0.242348,0.20819,0.892126,0.369059,0.35026,0.0415027,0.337061,0.271459,0.243946,0.186352,0.903556,0.532103,0.53928,0.0398949,0.834863,0.870567,0.379396,0.884902,0.117399,0.781837,0.962633,0.300925,0.343608,0.211468,0.220529,0.712168,0.752716,0.401049,0.0975164,0.0897269,0.825273,0.522545,0.650026,0.532459,0.0621072,0.505109,0.706104,0.114526,0.808992,0.716525,0.858995,0.315514,0.721362,0.699252,0.690904,0.560155,0.598836,0.984975,0.316752,0.993497,0.0533726,0.834732,0.106442,0.304952,0.161582,0.626343,0.794195,0.137109,0.297834,0.113253,0.1687,0.89715,0.776048,0.997757,0.0230987,0.403085,0.926153,0.898942,0.05463,0.875362,0.219321,0.170888,0.700957,0.365258,0.109059,0.0710256,0.132892,0.780687,0.946756,0.83242,0.842223,0.259238,0.164666,0.3233,0.479916,0.117228,0.0869954,0.984637,0.0955557,0.858626,0.530156,0.793126,0.831034,0.147232,0.713343,0.923743,0.157171,0.447591,0.576881,0.269928,0.153062,0.308048,0.5188,0.452746,0.683827,0.386028,0.545983,0.98821,0.303095,0.232509,0.182716,0.298762,0.767518,0.310247,0.826815,0.0930122,0.375923,0.702025,0.529005,0.714705,0.516197,0.670382,0.171318,0.850418,0.235053,0.901667,0.585892,0.524094,0.497306,0.0740002,0.20414,0.127568,0.274963,0.609374,0.0529408,0.265143,0.527874,0.270095,0.391852,0.897901,0.477699,0.229117,0.840379,0.250701,0.10771,0.5993,0.550256,0.493237,0.83311,0.231347,0.996055,0.79276,0.828701,0.525226,0.824814,0.404691,0.643747,0.146991,0.105186,0.173647,0.00164038,0.955183,0.139338,0.910804,0.842423,0.792928,0.835556,0.621675,0.0486165,0.223673,0.979913,0.895748,0.0384733,0.4868,0.785259,0.0541523,0.704348,0.127671,0.0502683,0.598209,0.855914,0.833768,0.348992,0.798674,0.751157,0.0280273,0.344941,0.981589,0.902601,0.955409,0.0947353,0.327622,0.284276,0.504802,0.881746,0.855927,0.281607,0.0128247,0.109956,0.328743,0.449672,0.631823,0.370761,0.637489,0.291223,0.687175,0.561608,0.952564,0.531777,0.844651,0.646457,0.485606,0.268909,0.712649,0.76395,0.215223,0.496859,0.42648,0.154006,0.351442,0.990748,0.586223,0.807021,0.275198,0.861358,0.863595,0.43049,0.625901,0.540341,0.280338,0.940184,0.464578,0.136856,0.149514,0.442741,0.611077,0.0874292,0.601215,0.355283,0.810029,0.116203,0.656926,0.177874,0.925305,0.94122,0.14461,0.704239,0.672531,0.979195,0.430511,0.93878,0.633123,0.538011,0.335283,0.0999223,0.669434,0.993548,0.650889,0.0132943,0.38467,0.823046,0.579176,0.138657,0.694182,|0.586622,0.46129,0.634881,0.960127,0.718212,0.899873,0.219663,0.373538,0.19403,0.661631,0.710562,0.661658,0.250568,0.235333,0.159433,0.920124,0.313112,0.803975,0.256024,0.654627,0.00701112,0.21001,0.273702,0.495618,0.70475,0.227,0.0108621,0.988294,0.161765,0.402863,0.180768,0.113718,0.320091,0.615943,0.741607,0.541793,0.088107,0.848386,0.386804,0.365327,0.819158,0.341302,0.444768,0.266404,0.251283,0.027723,0.032731,0.315699,0.4923,0.35822,0.971906,0.752761,0.55442,0.289689,0.0922624,0.719255,0.403722,0.612915,0.982232,0.909019,0.974689,0.601806,0.691933,0.0948544,0.459609,0.211062,0.463946,0.301776,0.0178047,0.866598,0.0565468,0.827077,0.0863532,0.0704685,0.959135,0.856153,0.0734223,0.925695,0.215341,0.14458,0.45876,0.655679,0.14629,0.589297,0.686974,0.897368,0.25423,0.155379,0.941136,0.27886,0.731465,0.193997,0.94804,0.288089,0.781374,0.550702,0.581759,0.962245,0.0873923,0.00662565,0.0793046,0.140996,0.854385,0.630661,0.571302,0.394831,0.263544,0.910463,0.729986,0.0154989,0.904033,0.426321,0.145353,0.825495,0.476329,0.541106,0.615885,0.823457,0.767022,0.256761,0.756397,0.0664623,0.675956,0.0596897,0.825358,0.604163,0.0530134,0.701201,0.715988,0.79549,0.48831,0.569461,0.799821,0.249073,0.759276,0.562666,0.769507,0.185772,0.295007,0.634231,0.694079,0.437852,0.156117,0.450573,0.0753286,0.0302058,0.874518,0.631744,0.230747,0.500581,0.541992,0.969721,0.902823,0.0651211,0.252552,0.40508,0.49256,0.514762,0.51131,0.230706,0.255966,0.503748,0.122503,0.404665,0.681038,0.193486,0.802401,0.851188,0.687395,0.273242,0.25233,0.0733247,0.301197,0.891677,0.735743,0.417439,0.133758,0.769531,0.917939,0.183686,0.675419,0.473214,0.004893,0.564711,0.407003,0.159934,0.204634,0.503659,0.765376,0.013445,0.100874,0.655827,0.725031,0.0315682,0.292519,0.995083,0.909246,0.0157034,0.328299,0.724508,0.38158,0.45657,0.0546253,0.307984,0.873191,0.674984,0.099659,0.339903,0.544316,0.85011,0.394863,0.94811,0.94389,0.856305,0.38891,0.869917,0.879891,0.0616755,0.918506,0.888106,0.760847,0.348952,0.804879,0.995244,0.295518,0.339129,0.688023,0.803968,0.428463,0.0019173,0.285372,0.379525,0.873929,0.545645,0.293009,0.659248,0.600418,0.229962,0.671221,0.148387,0.580009,0.661477,0.525153,0.946252,0.622749,0.996938,0.751639,0.489483,0.150252,0.643017,0.942789,0.517532,0.435187,0.337789,0.458509,0.0799319,0.689799,0.0602164,0.365887,0.746582,0.0630704,0.529902,0.796962,0.473612,0.0116723,0.269661,0.0401286,0.603451,0.821967,0.338008,0.165155,0.542484,0.509615,0.918235,0.826676,0.860413,0.219214,0.600658,0.683964,0.360829,0.665364,0.0729116,0.334628,0.196703,0.22084,0.347668,0.457414,0.959937,0.172462,0.891477,0.62004,0.535299,0.395962,0.500462,0.29502,0.143371,0.972184,0.0239453,0.395537,0.165303,0.489996,0.401001,0.908544,0.86319,0.983816,0.00681067,0.71351,0.598855,0.811476,0.0206903,0.160398,0.88896,0.441115,0.899386,0.174899,0.22992,0.868191,0.820643,0.802551,0.654383,0.389323,0.0215988,0.441603,0.690674,0.000224411,0.944373,0.319066,0.00326186,0.115011,0.408983,0.298868,0.971004,0.10479,0.602004,0.804099,0.538791,0.75453,0.190243,0.873361,0.291588,0.362245,0.646738,0.592522,0.287735,0.928042,0.651153,0.109764,0.490018,0.392122,0.985224,0.130401,0.967938,0.647099,0.137516,0.310721,0.849104,0.775404,0.438094,0.746725,0.845871,0.136618,0.66798,0.00213414,0.317351,0.674626,0.378095,0.773547,0.465925,0.154343,0.25286,0.786545,0.17614,0.222341,0.991539,0.9669,0.815405,0.260722,0.507212,0.464694,0.540514,0.600038,0.446044,0.687796,0.6357,0.295498,0.665248,0.29817,0.575083,0.532573,0.251114,0.38712,0.81342,0.571504,0.264955,0.10067,0.530831,0.807798,0.247028,0.0224424,0.525084,0.402926,0.00903469,0.747835,0.666607,0.110386,0.81484,0.314781,0.38646,0.0900648,0.0195572,0.129733,0.114212,0.457092,0.167875,0.635006,0.401461,0.577808,0.126691,0.887519,0.10144,0.164033,0.816583,0.976805,0.25351,0.262417,0.301801,0.384604,0.75787,0.0640324,0.674665,0.734213,0.961847,0.235193,0.287502,0.0650529,0.695275,0.988283,0.845166,0.820353,0.666079,0.06062,0.498529,0.581463,0.174282,0.889031,0.332344,0.648328,0.709173,0.866973,0.296737,0.788611,0.0489772,0.675542,0.842882,0.823856,0.132468,0.784662,0.203359,0.981252,0.862456,0.234532,0.526548,0.204834,0.24602,0.837276,0.827414,0.394615,0.758584,0.679703,0.81418,0.853135,0.0999208,0.873516,0.965723,0.519979,0.0517521,0.142466,0.482238,0.876017,0.203852,0.352279,0.325979,0.999379,0.496796,0.691692,0.40187,0.608407,0.255486,0.768817,0.745899,0.489091,0.85194,0.543308,0.251567,0.351138,0.0154111,0.557203,0.31229,0.990056,0.962235,0.978696,0.18786,0.606856,0.0559835,0.909768,0.458894,0.225365,0.51977,0.822989,0.797932,0.831575,0.350463,0.0386447,0.766176,0.300816,0.76904,0.646504,0.259109,0.633544,0.366854,0.0295944,0.880565,0.142991,0.223165,0.412617,0.524486,0.892024,0.256614,0.0144254,0.419368,0.870159,0.196898,0.47404,0.158269,0.375712,0.839545,0.77758,0.00425291,0.311653,0.140105,0.370268,0.490918,0.733028,0.84853,0.637468,0.190142,0.81449,0.695549,0.221268,0.75823,0.0854799,0.548134,0.171279,0.109014,0.128424,0.857603,0.33367,0.323439,0.195714,0.667465,0.978953,0.4479,0.632512,0.600854,0.0852633,0.469736,0.357453,0.403593,0.931577,0.854824,0.814667,0.560811,0.961996,0.814672,0.471814,0.487194,0.332993,0.51306,0.307373,0.457535,0.812519,0.148518,0.535928,0.287292,0.210406,0.467753,0.109383,0.782432,0.874768,0.727697,0.18646,0.756783,0.402309,0.192968,0.406658,0.49293,0.167634,0.242768,0.0958031,0.46845,0.845267,0.0471163,0.940428,0.122067,0.688353,0.265914,0.434726,0.806859,0.768544,0.392455,0.66864,0.138329,0.483132,0.424071,0.721418,0.928966,0.335793,0.0602557,0.514701,0.812864,0.900581,0.0668519,0.852362,0.805575,0.855124,0.384909,0.850607,0.0723129,0.816574,0.882258,0.138661,0.230263,0.685341,0.513962,0.583244,0.788766,0.379533,0.320667,0.39531,0.215437,0.622653,0.281144,0.0632637,0.989088,0.000818372,0.549252,0.907872,0.597467,0.765443,0.382713,0.832878,0.530142,0.516347,0.492346,0.128749,0.0843642,0.649475,0.153359,0.672013,0.440886,0.180216,0.679109,0.899319,0.0941334,0.468573,0.492228,0.654932,0.320495,0.123339,0.735739,0.864932,0.693344,0.201987,0.394865,0.702457,0.70283,0.328311,0.544197,0.68213,0.58535,0.564377,0.778755,0.542972,0.422083,0.109525,0.25187,0.232613,0.35504,0.406059,0.470576,0.204028,0.259156,0.458906,0.922771,0.198792,0.276204,0.149082,0.690111,0.917569,0.0362662,0.150962,0.86451,0.119712,0.201581,0.401182,0.0898507,0.757648,0.862724,0.911912,0.799997,0.834395,0.671027,0.16067,0.587364,0.330848,0.854667,0.177106,0.939799,0.700044,0.12346,0.281308,0.977985,0.185252,0.855572,0.976841,0.873038,0.380942,0.580682,0.899134,0.114355,0.742357,0.0669245,0.452513,0.0223088,0.250056,0.195026,0.20342,0.410759,0.251482,0.576507,0.0150592,0.0546288,0.0776283,0.0244235,0.341275,0.917085,0.486052,0.562563,0.785595,0.939047,0.733339,0.495611,0.0230314,0.307291,0.967461,0.968234,0.937658,0.527673,0.139274,0.221438,0.815979,0.395705,0.989225,0.558628,0.340868,0.7224,0.22799,0.762442,0.821646,0.0922559,0.550147,0.986284,0.981205,0.717617,0.196975,0.350837,0.719553,0.220016,0.895454,0.197543,0.538906,0.230826,0.0766452,0.6696,0.144571,0.810474,0.971729,0.802452,0.435274,0.223175,0.609675,0.695038,0.0977129,0.486978,0.4401,0.867716,0.299546,0.0229349,0.638393,0.11979,0.733001,0.698259,0.84338,0.548319,0.640501,0.744136,0.294757,0.159284,0.384127,0.594424,0.421444,0.316544,0.149331,0.0895908,0.4163,0.658709,0.155859,0.820835,0.0148051,0.185519,0.657665,0.087835,0.649703,0.662576,0.81998,0.458365,0.487495,0.420416,0.719436,0.708871,0.789501,0.951437,0.830842,0.310068,0.798052,0.987805,0.686168,0.42713,0.63747,0.0597425,0.368224,0.32984,0.474575,0.475201,0.426116,0.921342,0.115114,0.519562,0.472362,0.474134,0.826929,0.164945,0.663333,0.433085,0.65155,0.974871,0.492602,0.127846,0.144099,0.635617,0.751423,0.462038,0.847782,0.886701,0.382882,0.38657,0.47182,0.164532,0.93334,0.248853,0.532658,0.818278,0.896563,0.314573,0.0366033,0.84367,0.444241,0.196746,0.856833,0.942686,0.924792,0.276572,0.827329,0.239041,0.942834,0.728036,0.189421,0.709353,0.251219,0.962689,0.216144,0.408839,0.420493,0.815579,0.659764,0.216045,0.319049,0.903446,0.529461,0.371398,0.395382,0.384927,0.541932,0.669746,0.929986,0.634473,0.837241,0.00141829,0.0429966,0.377577,0.791699,0.128823,0.778163,0.182968,0.650496,0.202665,0.789533,0.24895,0.912801,0.466035,0.233075,0.520022,0.616182,0.837297,0.523102,0.0471385,0.222865,0.901265,0.86789,0.579958,0.746051,0.778501,0.824079,0.473886,0.847699,0.649475,0.645527,0.613454,0.660486,0.643803,0.588875,0.195271,0.350725,0.608516,0.977553,0.213335,0.627776,0.791896,0.945923,0.909967,0.428857,0.739789,0.75004,0.744285,0.269809,0.834372,0.714584,0.0811423,0.631534,0.498542,0.236449,0.203315,0.223152,0.83935,0.723723,0.565323,0.614495,0.191296,0.278524,0.561202,0.449581,0.570197,0.702282,0.531714,0.558078,0.555786,0.70392,0.50108,0.426593,0.159307,0.622534,0.545748,0.504738,0.579899,0.1238,0.200481,0.475157,0.57505,0.573593,0.0224079,0.616665,0.224269,0.697697,0.109127,0.560875,0.660192,0.629051,0.647484,0.243259,0.452462,|0.146662,0.321945,0.864941,0.42435,0.665882,0.374628,0.28662,0.330258,0.854106,0.229179,0.356909,0.0169128,0.864307,0.117339,0.545727,0.141707,0.149894,0.529351,0.401277,0.290507,0.644062,0.608044,0.431056,0.607857,0.761738,0.510024,0.209493,0.741486,0.187979,0.256218,0.763259,0.664225,0.119565,0.988318,0.00777197,0.870345,0.0870975,0.806427,0.23622,0.734307,0.98041,0.619049,0.267069,0.501417,0.274033,0.41867,0.302693,0.676107,0.0882644,0.129068,0.277418,0.230586,0.856209,0.248608,0.27639,0.713193,0.79785,0.270533,0.716507,0.260522,0.433963,0.386929,0.86727,0.612375,0.138599,0.556402,0.0397099,0.770664,0.07644,0.64471,0.846031,0.285342,0.568151,0.00608456,0.869942,0.688179,0.449405,0.0665402,0.379477,0.856527,0.394087,0.322301,0.825994,0.770308,0.519886,0.264556,0.0267877,0.239487,0.493002,0.712204,0.622863,0.880226,0.765637,0.165752,0.790168,0.899966,0.0474933,0.362073,0.52954,0.490749,0.2312,0.623613,0.974524,0.0927613,0.504315,0.226628,0.26173,0.373174,0.910371,0.935993,0.366593,0.593073,0.115443,0.394813,0.597381,0.172472,0.206658,0.215658,0.200232,0.104326,0.104523,0.672754,0.981039,0.838031,0.646101,0.954534,0.1151,0.586276,0.244962,0.692369,0.0408045,0.82772,0.859584,0.186177,0.951395,0.183362,0.0860333,0.350725,0.627403,0.0114575,0.789204,0.966422,0.789534,0.522299,0.384293,0.00282621,0.867656,0.118287,0.152063,0.197396,0.193407,0.872248,0.369635,0.902979,0.427618,0.531903,0.98542,0.249146,0.50521,0.169406,0.250974,0.799028,0.828072,0.319498,0.976285,0.691768,0.630245,0.727059,0.267752,0.833919,0.869548,0.174995,0.180636,0.0869202,0.0674236,0.160915,0.287941,0.829241,0.83276,0.204883,0.474442,0.570065,0.381474,0.802513,0.690006,0.0567385,0.997813,0.173851,0.0304379,0.889461,0.304574,0.145678,0.753743,0.429633,0.11375,0.0245628,0.151843,0.321257,0.748556,0.0932057,0.577384,0.6782,0.308579,0.435657,0.803294,0.24196,0.891099,0.909125,0.736414,0.23721,0.580219,0.0486782,0.835173,0.361827,0.804471,0.74008,0.683411,0.360698,0.191542,0.621022,0.204237,0.813353,0.14099,0.00605386,0.974873,0.284458,0.313031,0.239858,0.746143,0.766436,0.991472,0.618903,0.728927,0.980884,0.646125,0.94675,0.224685,0.450744,0.973317,0.799681,0.850513,0.373357,0.995147,0.580846,0.587324,0.122933,0.974502,0.861659,0.656177,0.891906,0.291006,0.95233,0.947763,0.87993,0.571007,0.292658,0.388858,0.698642,0.847207,0.474317,0.769396,0.318478,0.477722,0.735176,0.555446,0.154339,0.85775,0.375216,0.339059,0.722863,0.227606,0.735416,0.253134,0.636573,0.0208447,0.75495,0.650213,0.651762,0.362675,0.44632,0.390127,0.327233,0.242729,0.76666,0.966622,0.949519,0.601209,0.0253395,0.918048,0.173726,0.259477,0.202259,0.575668,0.62878,0.612247,0.445653,0.980191,0.167885,0.126297,0.34519,0.00894547,0.872636,0.768436,0.124624,0.0942372,0.260597,0.930598,0.242495,0.803855,0.489766,0.646807,0.137443,0.915931,0.290141,0.50588,0.906501,0.115558,0.931686,0.506832,0.0983276,0.324105,0.13169,0.799287,0.122631,0.550969,0.880034,0.614084,0.974342,0.459147,0.300074,0.198168,0.15384,0.110084,0.296969,0.443352,0.874953,0.758302,0.990053,0.987932,0.468674,0.274675,0.972447,0.290084,0.861048,0.668287,0.59624,0.999808,0.111688,0.789333,0.859865,0.933194,0.699202,0.961449,0.449063,0.829995,0.724104,0.113297,0.959548,0.64986,0.520536,0.136857,0.386489,0.505502,0.663048,0.650456,0.417907,0.426124,0.618021,0.0283863,0.352281,0.640864,0.159738,0.0402388,0.142686,0.268202,0.138018,0.633789,0.608894,0.21073,0.173212,0.166248,0.153272,0.198857,0.836109,0.04293,0.322651,0.452085,0.556352,0.754691,0.585475,0.619967,0.185141,0.984831,0.999202,0.245532,0.610614,0.36951,0.0937726,0.312581,0.160543,0.595075,0.221856,0.206092,0.722701,0.781916,0.794863,0.366991,0.629221,0.405393,0.656598,0.0383487,0.950705,0.00779057,0.0269273,0.724692,0.885005,0.983087,0.620817,0.134241,0.605446,0.584041,0.0824638,0.224708,0.761844,0.604119,0.348429,0.496193,0.767319,0.715134,0.915141,0.829879,0.835147,0.126014,0.73419,0.261831,0.215776,0.0137485,0.222781,0.922065,0.818256,0.671609,0.0176126,0.99569,0.348074,0.199141,0.690576,0.0693569,0.240732,0.0207307,0.544526,0.022181,0.700599,0.142922,0.500214,0.553421,0.567516,0.993937,0.556508,0.573634,0.326001,0.831412,0.124927,0.960178,0.968992,0.707443,0.943304,0.964312,0.699185,0.103306,0.216113,0.293007,0.597273,0.318904,0.427397,0.036119,0.827843,0.821942,0.112606,0.657005,0.788492,0.812422,0.115071,0.63182,0.864368,0.736386,0.661008,0.391797,0.947333,0.0598794,0.342954,0.120179,0.54242,0.0517569,0.802317,0.807221,0.590997,0.315295,0.252207,0.374915,0.965707,0.880181,0.873425,0.145515,0.297393,0.517904,0.951937,0.743711,0.509647,0.231327,0.512733,0.750484,0.792254,0.471786,0.0972757,0.873106,0.626353,0.3808,0.506085,0.311707,0.65412,0.334936,0.751393,0.564799,0.348803,0.678422,0.581182,0.659537,0.411977,0.0431156,0.0729292,0.565329,0.891662,0.425348,0.562818,0.199659,0.18637,0.254969,0.52195,0.512575,0.387691,0.760501,0.238576,0.760735,0.0373704,0.75435,0.62249,0.224653,0.728097,0.190904,0.243108,0.184452,0.635011,0.371374,0.380987,0.31584,0.65408,0.676675,0.705748,0.444396,0.181951,0.366291,0.94207,0.064304,0.217281,0.767121,0.493827,0.326913,0.240894,0.306942,0.46874,0.099327,0.509317,0.735576,0.780812,0.147998,0.84564,0.328641,0.558574,0.427926,0.058292,0.145535,0.696791,0.523658,0.835152,0.602184,0.612016,0.874987,0.9883,0.870376,0.376407,0.956971,0.576264,0.128532,0.745584,0.445936,0.582456,0.0228285,0.481571,0.350702,0.33791,0.217114,0.831919,0.869145,0.783149,0.254571,0.485871,0.359588,0.845022,0.00150537,0.278305,0.682824,0.459492,0.644817,0.209384,0.605221,0.204236,0.988312,0.794024,0.796039,0.973687,0.647822,0.0336097,0.347279,0.046387,0.573723,0.73376,0.608054,0.441897,0.311334,0.377876,0.25735,0.762478,0.821667,0.903343,0.615573,0.755212,0.409235,0.976003,0.293249,0.228213,0.760631,0.752687,0.211344,0.01411,0.57502,0.4342,0.891015,0.676347,0.18015,0.559449,0.343684,0.546512,0.050228,0.832566,0.094013,0.839584,0.327737,0.878251,0.588111,0.276733,0.7798,0.247451,0.20427,0.110581,0.798867,0.528746,0.369121,0.231843,0.20009,0.523506,0.0699417,0.476998,0.921065,0.107785,0.236698,0.87948,0.875334,0.176615,0.802112,0.970304,0.0293598,0.718584,0.966262,0.450987,0.542303,0.859126,0.126581,0.470032,0.15919,0.0473034,0.625,0.388813,0.115498,0.710964,0.419053,0.922365,0.398087,0.813511,0.232494,0.919213,0.217111,0.998653,0.921489,0.221474,0.499403,0.399034,0.591619,0.766755,0.0644061,0.804888,0.0587968,0.415282,0.348452,0.66584,0.614657,0.979653,0.508905,0.995919,0.660909,0.789686,0.644933,0.266061,0.449658,0.135198,0.165516,0.735895,0.339894,0.864545,0.21577,0.352409,0.131927,0.227601,0.393521,0.525625,0.466025,0.782583,0.524306,0.214277,0.834773,0.627763,0.692655,0.510825,0.0704005,0.928038,0.7783,0.0373685,0.283493,0.888869,0.411823,0.839051,0.346159,0.293876,0.530444,0.241098,0.119698,0.636926,0.586185,0.133287,0.810322,0.307325,0.443411,0.854611,0.637501,0.925206,0.68231,0.490786,0.735235,0.928903,0.0492344,0.30667,0.370745,0.181315,0.652533,0.46183,0.121782,0.74753,0.89525,0.676925,0.116515,0.0273095,0.00635988,0.445724,0.590532,0.0954506,0.694602,0.527901,0.24887,0.260439,0.719352,0.654808,0.568627,0.361555,0.307123,0.128828,0.68923,0.472573,0.0439299,0.0776582,0.805171,0.00830644,0.110323,0.876875,0.302407,0.50631,0.462595,0.526833,0.311182,0.995773,0.127626,0.691114,0.215324,0.85517,0.202955,0.268979,0.723074,0.235763,0.5342,0.724933,0.343877,0.792192,0.244097,0.763081,0.509939,0.53413,0.843944,0.274504,0.120793,0.920601,0.301577,0.504752,0.797192,0.541079,0.88383,0.459569,0.00304335,0.661818,0.344163,0.117422,0.12545,0.800362,0.0821609,0.967469,0.076365,0.741446,0.394867,0.956681,0.0271233,0.371842,0.902492,0.517727,0.754894,0.726644,0.342982,0.352237,0.732625,0.0491832,0.36728,0.555382,0.501255,0.552387,0.56027,0.503481,0.570517,0.828799,0.75839,0.75368,0.479815,0.0898442,0.685719,0.0513445,0.361464,0.182799,0.378455,0.510185,0.586952,0.131226,0.26292,0.52282,0.765031,0.531842,0.414649,0.649855,0.693009,0.695499,0.187878,0.575702,0.186375,0.663182,0.544,0.845578,0.688508,0.231987,0.632347,0.750151,0.591865,0.997119,0.33791,0.0387701,0.567922,0.604495,0.926974,0.303802,0.333389,0.940191,0.458782,0.837096,0.959489,0.688027,0.99412,0.706239,0.106545,0.882581,0.820068,0.55755,0.730625,0.354878,0.825112,0.411617,0.407469,0.919646,0.606248,0.244651,0.493846,0.307454,0.931139,0.604911,0.766726,0.681298,0.9114,0.305454,0.905928,0.00905073,0.00439501,0.723122,0.21225,0.465495,0.930189,0.517187,0.202949,0.653321,0.417614,0.690818,0.406666,0.131517,0.583445,0.395566,0.0570745,0.792896,0.975333,0.0479611,0.618175,0.443297,0.315238,0.980326,0.870082,0.308893,0.547915,0.322373,0.295091,0.751106,0.258478,0.259892,0.343587,0.0645659,0.450301,0.51996,0.144836,0.605274,0.814532,0.773494,0.959231,0.797767,0.394115,0.163238,0.943487,0.353724,0.52116,0.894153,0.385397,0.410976,0.140092,0.243764,0.501122,0.100133,0.629223,0.84768,0.00421274,0.992754,0.436983,0.687746,0.920821,0.793911,0.631379,0.967439,0.271951,0.557336,0.792494,0.82787,0.376692,0.50466,|0.293984,0.639208,0.541652,0.77399,0.120109,0.880595,0.99835,0.551932,0.613355,0.477398,0.700875,0.23918,0.673599,0.0655648,0.168188,0.170633,0.544501,0.329786,0.820009,0.655035,0.754235,0.505526,0.717224,0.127108,0.199809,0.0840473,0.281878,0.914814,0.993856,0.36758,0.231472,0.68877,0.917645,0.812959,0.178122,0.979555,0.016503,0.866942,0.846028,0.924555,0.276974,0.231079,0.653821,0.977255,0.597616,0.623877,0.940958,0.42092,0.255449,0.504283,0.087337,0.433787,0.73533,0.925162,0.635746,0.772401,0.982186,0.110393,0.00455076,0.0948424,0.260715,0.127619,0.891548,0.629212,0.249552,0.569587,0.525632,0.247879,0.838691,0.991463,0.744354,0.595734,0.353231,0.900671,0.510335,0.175239,0.109924,0.321109,0.496271,0.74124,0.49223,0.296276,0.468682,0.740458,0.780911,0.678269,0.80873,0.901021,0.231001,0.945725,0.272391,0.0196867,0.0954966,0.875341,0.203422,0.125026,0.881917,0.868229,0.583493,0.126317,0.21758,0.991318,0.481259,0.999281,0.185857,0.0069496,0.026455,0.906027,0.405487,0.383272,0.90136,0.202705,0.32134,0.869884,0.755883,0.491153,0.61002,0.112322,0.70081,0.307549,0.56617,0.517983,0.0525877,0.836503,0.639334,0.427153,0.0243558,0.488981,0.149488,0.0936035,0.819569,0.692434,0.945793,0.095852,0.0139016,0.578627,0.123705,0.817967,0.862616,0.269589,0.692895,0.531834,0.985384,0.411717,0.794215,0.256703,0.442581,0.656939,0.865414,0.459645,0.808954,0.0282835,0.491431,0.717912,0.125085,0.685898,0.156987,0.201282,0.717468,0.382913,0.454498,0.466333,0.121446,0.615028,0.842143,0.450397,0.961197,0.728385,0.319316,0.276459,0.699169,0.057304,0.626241,0.717976,0.629681,0.0925011,0.976124,0.861215,0.770279,0.796039,0.38851,0.953156,0.0141339,0.261768,0.877242,0.31416,0.993601,0.0168923,0.577907,0.370842,0.102987,0.857126,0.904021,0.303711,0.171945,0.681258,0.219744,0.421784,0.345864,0.461978,0.632932,0.301043,0.760092,0.288953,0.818862,0.638399,0.420037,0.704611,0.618113,0.843144,0.300345,0.0866914,0.0920197,0.718296,0.492232,0.393368,0.714083,0.379158,0.315249,0.944126,0.546029,0.769353,0.298692,0.308016,0.761797,0.763814,0.249681,0.450495,0.348996,0.992732,0.476289,0.617283,0.609795,0.597284,0.200267,0.316935,0.897248,0.838504,0.702975,0.120035,0.829503,0.126623,0.950156,0.172013,0.515322,0.316761,0.779014,0.39398,0.229064,0.963637,0.845302,0.393124,0.947905,0.203453,0.405495,0.751725,0.898684,0.830536,0.458854,0.0624048,0.151007,0.303526,0.5941,0.4504,0.171521,0.0573326,0.175588,0.857949,0.137562,0.988464,0.5218,0.290037,0.559761,0.913612,0.58197,0.519744,0.0526314,0.462879,0.336898,0.78598,0.657403,0.0720508,0.7388,0.994602,0.166006,0.538733,0.326469,0.933523,0.672248,0.50688,0.964485,0.502181,0.951692,0.623039,0.404059,0.273283,0.495449,0.076982,0.817635,0.463252,0.624793,0.0941542,0.27077,0.0780097,0.721291,0.211376,0.407347,0.149919,0.656188,0.729998,0.616228,0.80654,0.0984292,0.238956,0.409152,0.074368,0.871827,0.399536,0.573529,0.282585,0.609433,0.309205,0.446523,0.664231,0.363331,0.202289,0.928704,0.982658,0.569915,0.915003,0.0382501,0.980358,0.842721,0.759391,0.150059,0.0675501,0.939252,0.427811,0.695445,0.244341,0.705527,0.230151,0.152984,0.460375,0.200572,0.493375,0.114921,0.800949,0.658119,0.280204,0.366777,0.630903,0.920596,0.681632,0.786081,0.97513,0.497238,0.20337,0.611496,0.541228,0.709034,0.452269,0.180569,0.963527,0.797806,0.23886,0.876501,0.871938,0.922214,0.98576,0.126584,0.887194,0.248209,0.343581,0.136701,0.28594,0.704288,0.596154,0.5702,0.47601,0.63361,0.975544,0.179487,0.329336,0.265029,0.977015,0.872114,0.117283,0.0663567,0.931273,0.463501,0.0971251,0.902012,0.780949,0.293707,0.253071,0.854604,0.667974,0.895727,0.518453,0.112427,0.964878,0.811506,0.407978,0.333377,0.898565,0.700678,0.94541,0.978666,0.674729,0.633762,0.741168,0.885831,0.530858,0.752069,0.292176,0.405438,0.974516,0.249692,0.638601,0.0448343,0.688356,0.606064,0.598557,0.776377,0.483526,0.911721,0.608789,0.717876,0.936734,0.253285,0.954857,0.486668,0.793218,0.315576,0.0499824,0.319699,0.281863,0.90525,0.293753,0.471368,0.173669,0.679554,0.0429683,0.554019,0.326127,0.0773776,0.639831,0.0172265,0.769857,0.279914,0.171468,0.00572008,0.595606,0.0680413,0.92515,0.841933,0.866778,0.24341,0.157054,0.928402,0.979423,0.440252,0.52574,0.787528,0.822661,0.777875,0.943827,0.310463,0.456041,0.353657,0.399743,0.951689,0.216878,0.0792134,0.0026322,0.659962,0.0375902,0.758816,0.910061,0.387981,0.931762,0.142631,0.318731,0.088178,0.96141,0.887683,0.254283,0.806459,0.973043,0.614706,0.141934,0.525828,0.14005,0.629946,0.362726,0.665106,0.239639,0.240038,0.99114,0.0275145,0.705524,0.0806941,0.697845,0.840127,0.458668,0.361437,0.369213,0.305062,0.202079,0.0543516,0.367744,0.087349,0.719338,0.208076,0.752917,0.36549,0.176063,0.194513,0.542422,0.179523,0.0968176,0.152764,0.602604,0.651594,0.745943,0.670585,0.805582,0.851897,0.735531,0.42839,0.630256,0.220194,0.700896,0.391665,0.571971,0.929528,0.104435,0.400171,0.0188244,0.204809,0.510922,0.888745,0.221874,0.956667,0.761272,0.945246,0.20179,0.333664,0.357003,0.233269,0.656793,0.45155,0.609818,0.567653,0.846159,0.00382739,0.818317,0.35139,0.314725,0.985665,0.661332,0.464098,0.412237,0.784771,0.748148,0.207136,0.580114,0.325787,0.768529,0.936741,0.138553,0.894015,0.362332,0.0222427,0.351678,0.0619438,0.149608,0.412037,0.777743,0.99862,0.467373,0.531523,0.531375,0.246853,0.0838529,0.509272,0.928536,0.0931314,0.127448,0.57173,0.776962,0.520805,0.176923,0.0551994,0.21465,0.57343,0.168878,0.541762,0.490349,0.930835,0.324861,0.996363,0.78598,0.778246,0.639378,0.119461,0.961158,0.916519,0.156588,0.196218,0.882365,0.626612,0.905123,0.319978,0.284069,0.532616,0.404777,0.216815,0.631297,0.137234,0.925655,0.0115698,0.227186,0.608318,0.302104,0.594606,0.370998,0.57066,0.625078,0.095332,0.540103,0.268668,0.184513,0.187766,0.95101,0.336503,0.245527,0.122266,0.0583599,0.132962,0.676637,0.377861,0.811046,0.159595,0.622023,0.987709,0.203367,0.680376,0.119363,0.207098,0.921948,0.495333,0.594198,0.772996,0.155356,0.543284,0.517291,0.920518,0.175561,0.605022,0.202949,0.945455,0.469065,0.22755,0.856215,0.576634,0.285148,0.726098,0.750864,0.853427,0.380263,0.327668,0.540441,0.005463,0.334585,0.99667,0.645025,0.234301,0.770472,0.137775,0.660379,0.400832,0.879509,0.553694,0.0820879,0.189792,0.393591,0.503714,0.805201,0.365631,0.0280275,0.334825,0.300195,0.432907,0.59842,0.0391684,0.759312,0.167188,0.121474,0.30669,0.994178,0.435478,0.743521,0.295224,0.105852,0.138848,0.30432,0.137863,0.851533,0.73425,0.0240342,0.580482,0.205362,0.437458,0.993704,0.344824,0.021542,0.463668,0.601391,0.358708,0.0767952,0.776951,0.432373,0.0464526,0.196484,0.714038,0.350924,0.991752,0.353205,0.520122,0.816756,0.271593,0.827447,0.285181,0.909949,0.813124,0.745823,0.422783,0.494625,0.0599565,0.580588,0.0785252,0.899583,0.701352,0.699192,0.542814,0.598978,0.739576,0.815343,0.421072,0.80913,0.371108,0.245305,0.0471596,0.605841,0.424853,0.551995,0.272284,0.083848,0.120012,0.149938,0.688941,0.0686753,0.443276,0.305661,0.354991,0.00176507,0.146224,0.890055,0.540987,0.279229,0.705652,0.198622,0.863861,0.585341,0.987316,0.391799,0.467846,0.222622,0.274483,0.0140724,0.639074,0.198725,0.747996,0.161603,0.638498,0.478048,0.296175,0.880206,0.58261,0.759715,0.346761,0.789556,0.814423,0.372681,0.39948,0.751339,0.934123,0.238282,0.488727,0.640491,0.769046,0.574498,0.617043,0.525109,0.522606,0.942173,0.0795881,0.759825,0.629669,0.835992,0.759883,0.324852,0.612202,0.324843,0.00818872,0.69699,0.262773,0.500083,0.155425,0.891279,0.00670576,0.879103,0.0509591,0.963703,0.341877,0.91563,0.185143,0.934073,0.498862,0.125059,0.551065,0.585137,0.773806,0.0999777,0.20937,0.0990568,0.821375,0.0980485,0.0387557,0.969469,0.036711,0.700601,0.953011,0.199342,0.160337,0.538414,0.148203,0.116699,0.536247,0.481068,0.577452,0.948426,0.760184,0.701728,0.942807,0.423045,0.665513,0.517896,0.654257,0.587592,0.563593,0.012264,0.595336,0.502628,0.846778,0.558843,0.782298,0.592866,0.280149,0.423505,0.0928733,0.724681,0.728263,0.594336,0.403878,0.0904986,0.536309,0.922274,0.207095,0.851159,0.563543,0.714269,0.252206,0.236522,0.966895,0.808262,0.346259,0.437984,0.203208,0.440848,0.894983,0.293103,0.421775,0.973611,0.574276,0.105899,0.946929,0.591209,0.0783441,0.142373,0.426095,0.786028,0.403563,0.587226,0.892759,0.451849,0.981568,0.60106,0.721075,0.684432,0.468617,0.515242,0.669075,0.307124,0.105898,0.0978156,0.523972,0.301251,0.683083,0.31383,0.650769,0.269573,0.133536,0.372983,0.349627,0.222849,0.550063,0.315768,0.168889,0.83153,0.695284,0.994822,0.311663,0.933509,0.928733,0.201432,0.106601,0.439077,0.205773,0.81289,0.584144,0.243573,0.421571,0.379675,0.314098,0.551381,0.821399,0.945853,0.887295,0.0622423,0.602213,0.507986,0.674791,0.0936385,0.662006,0.533765,0.146726,0.386377,0.218718,0.96792,0.919493,0.213588,0.470699,0.524871,0.361633,0.410512,0.30108,0.862771,0.907524,0.647999,0.160371,0.636642,0.662202,0.432154,0.199112,0.526106,0.853279,0.623868,0.800343,0.185085,0.19062,0.0646307,0.118545,0.951651,0.37121,0.637656,0.264026,0.209372,0.539851,0.617914,0.702146,0.133886,0.429632,0.90011,0.645236,0.402363,0.503714,0.28796,|0.687832,0.331118,0.0624307,0.918808,0.259506,0.638451,0.64987,0.303763,0.748755,0.0935978,0.339982,0.453715,0.3749,0.303502,0.317002,0.436574,0.151216,0.0405841,0.894833,0.200922,0.410469,0.791122,0.505756,0.975677,0.866265,0.151347,0.271054,0.134088,0.2804,0.105253,0.906252,0.962466,0.395522,0.502784,0.112778,0.929639,0.561575,0.086078,0.35608,0.782578,0.254647,0.538793,0.2694,0.210562,0.685857,0.0757085,0.788878,0.19047,0.954112,0.0719081,0.240053,0.278496,0.89012,0.859504,0.265518,0.701126,0.909854,0.718098,0.684837,0.0126179,0.594346,0.0228422,0.32328,0.172233,0.588313,0.255267,0.304645,0.647899,0.31168,0.992964,0.793373,0.401059,0.175549,0.29781,0.0489247,0.195728,0.519214,0.890919,0.265763,0.190371,0.270425,0.00020653,0.686483,0.10611,0.156953,0.0862839,0.392912,0.236664,0.433948,0.973122,0.855303,0.643372,0.183478,0.723613,0.0358154,0.614928,0.20698,0.920719,0.751152,0.629201,0.286558,0.937117,0.564123,0.895375,0.12356,0.564416,0.134483,0.834715,0.485063,0.529703,0.407813,0.835668,0.867981,0.762567,0.457758,0.377134,0.499941,0.553623,0.544085,0.432628,0.627844,0.963247,0.802968,0.919672,0.59237,0.73835,0.825558,0.451468,0.729864,0.604517,0.842912,0.731807,0.043118,0.726325,0.25518,0.660546,0.707309,0.523753,0.918824,0.892811,0.472586,0.684451,0.353379,0.706839,0.310921,0.660813,0.270066,0.746441,0.457612,0.43132,0.676205,0.5771,0.777382,0.718124,0.346487,0.653216,0.391441,0.513663,0.87371,0.807306,0.533208,0.0456219,0.252054,0.516861,0.620462,0.371057,0.431486,0.682098,0.740493,0.0574512,0.795273,0.210506,0.923335,0.586591,0.912458,0.50873,0.493529,0.0180758,0.0994756,0.835451,0.879308,0.301943,0.23886,0.831787,0.771386,0.470224,0.330337,0.428664,0.415831,0.214672,0.719771,0.0202889,0.0359048,0.638624,0.171625,0.532393,0.616942,0.885808,0.22756,0.0237431,0.892592,0.617546,0.516026,0.838541,0.365487,0.52067,0.292782,0.0551174,0.899279,0.942941,0.524809,0.620613,0.599548,0.141862,0.437813,0.288796,0.711103,0.233313,0.845904,0.289995,0.161029,0.503266,0.0990684,0.777264,0.417375,0.732135,0.703581,0.570964,0.629338,0.256113,0.962831,0.287958,0.0170397,0.404639,0.650543,0.88977,0.970686,0.874015,0.949638,0.279023,0.196394,0.38293,0.159733,0.576968,0.365962,0.236137,0.759498,0.703239,0.467351,0.212172,0.517257,0.982542,0.178337,0.246188,0.487571,0.93123,0.120321,0.00592583,0.0488481,0.867428,0.688146,0.387807,0.295041,0.455256,0.347265,0.894997,0.741149,0.135772,0.703233,0.395633,0.605471,0.271113,0.413285,0.363324,0.974565,0.240626,0.180899,0.572639,0.228093,0.510805,0.680407,0.348218,0.0737329,0.134707,0.641787,0.12512,0.165753,0.834739,0.934012,0.871072,0.0802767,0.570861,0.042627,0.594272,0.741855,0.92738,0.538248,0.247149,0.810733,0.232077,0.467935,0.427233,0.43558,0.936159,0.199569,0.571934,0.521541,0.730136,0.0205793,0.768767,0.601485,0.479438,0.785315,0.832969,0.579325,0.453888,0.816512,0.10989,0.669382,0.0602084,0.241385,0.29758,0.0371952,0.707687,0.0503158,0.900178,0.15988,0.349595,0.888768,0.778089,0.0581925,0.862757,0.728708,0.26643,0.0648876,0.17969,0.335675,0.833649,0.0908453,0.62831,0.928749,0.302628,0.0480014,0.412941,0.19394,0.424875,0.549958,0.0651907,0.730377,0.163196,0.370223,0.874956,0.657973,0.830705,0.145839,0.25313,0.657298,0.978805,0.0173649,0.460467,0.938182,0.177156,0.073092,0.313184,0.873593,0.411406,0.919675,0.658069,0.343449,0.839684,0.366902,0.388791,0.837487,0.540382,0.536687,0.474009,0.281351,0.807349,0.239486,0.688699,0.0354847,0.790275,0.768897,0.768565,0.217521,0.385893,0.306914,0.128102,0.79325,0.00164253,0.653102,0.459158,0.928256,0.416701,0.529757,0.296889,0.52116,0.264205,0.474545,0.698809,0.164941,0.538097,0.376821,0.0298144,0.0319221,0.740092,0.382851,0.521811,0.457212,0.5164,0.963742,0.855179,0.761847,0.592982,0.0815525,0.540945,0.661536,0.348815,0.414526,0.719401,0.354333,0.950592,0.355886,0.909351,0.959135,0.728163,0.392674,0.00414753,0.616175,0.962009,0.693811,0.530159,0.482402,0.720462,0.508197,0.587239,0.790639,0.223273,0.0929141,0.495015,0.766156,0.38269,0.00785685,0.903659,0.71499,0.08906,0.32203,0.515357,0.896945,0.2477,0.649227,0.513146,0.200214,0.816608,0.250178,0.991935,0.210828,0.331236,0.83913,0.442682,0.11139,0.754889,0.656333,0.361884,0.541292,0.979689,0.269686,0.524698,0.0961766,0.240499,0.465675,0.989359,0.769339,0.963783,0.980444,0.290754,0.784135,0.983335,0.468714,0.755054,0.0317153,0.253966,0.930157,0.768474,0.912185,0.393486,0.316009,0.497833,0.377065,0.00379813,0.663692,0.241123,0.561837,0.88557,0.5681,0.501961,0.623101,0.84698,0.794004,0.941216,0.446918,0.0766337,0.00311375,0.994153,0.384345,0.94275,0.683547,0.826954,0.0700406,0.860818,0.474339,0.74926,0.444655,0.451122,0.249617,0.0799575,0.537307,0.325907,0.170533,0.332184,0.879619,0.599619,0.62037,0.352591,0.0170841,0.600051,0.265909,0.250729,0.51192,0.945622,0.379023,0.699375,0.143224,0.376351,0.269039,0.722043,0.14528,0.355905,0.291931,0.253316,0.121705,0.437986,0.0551463,0.846693,0.696385,0.162336,0.755991,0.820871,0.399618,0.797354,0.0264845,0.158784,0.234563,0.792465,0.748557,0.597079,0.999971,0.599811,0.348128,0.676528,0.745193,0.385627,0.794567,0.112648,0.684946,0.756715,0.440717,0.0160522,0.496011,0.951512,0.827415,0.0681606,0.548812,0.636582,0.914081,0.213114,0.511646,0.389678,0.0291216,0.881386,0.467577,0.813566,0.589517,0.784277,0.419775,0.784864,0.28963,0.776973,0.704648,0.458377,0.496182,0.376948,0.806611,0.460867,0.121184,0.496325,0.113993,0.26672,0.875604,0.135786,0.973336,0.261194,0.975463,0.0339891,0.463343,0.0685827,0.324767,0.679896,0.417969,0.438509,0.198364,0.409537,0.204224,0.070312,0.507182,0.630514,0.38143,0.812744,0.0939155,0.148768,0.352097,0.0106821,0.135246,0.413764,0.191435,0.420088,0.856995,0.0344737,0.36238,0.404057,0.564804,0.918259,0.982021,0.500852,0.0411452,0.483876,0.566681,0.249423,0.350043,0.86393,0.401883,0.700235,0.712273,0.650242,0.12155,0.034099,0.263183,0.521777,0.901369,0.612806,0.429468,0.661274,0.772847,0.0179039,0.161457,0.931344,0.976781,0.455505,0.283223,0.5377,0.426283,0.681465,0.975508,0.595111,0.610927,0.722218,0.827459,0.692091,0.643352,0.318467,0.744873,0.956065,0.216761,0.29105,0.932512,0.339395,0.811689,0.786641,0.611501,0.327557,0.0993748,0.472399,0.284897,0.222214,0.262732,0.467742,0.550593,0.419606,0.0372525,0.401274,0.0858818,0.571343,0.548215,0.171561,0.640975,0.0194005,0.706554,0.18127,0.535573,0.273945,0.586078,0.370493,0.0844457,0.611361,0.954223,0.641051,0.813712,0.214643,0.98405,0.312403,0.256346,0.957391,0.146012,0.298114,0.367727,0.432274,0.0642454,0.705666,0.0677326,0.202074,0.567024,0.358698,0.752315,0.825968,0.874959,0.231554,0.891357,0.736906,0.802573,0.233177,0.205285,0.0113122,0.999374,0.108152,0.938236,0.130143,0.26318,0.288758,0.192729,0.595349,0.765324,0.0921953,0.162361,0.584519,0.969212,0.0799481,0.808614,0.407538,0.518744,0.706157,0.964798,0.876911,0.419575,0.575022,0.756427,0.356462,0.0643359,0.772714,0.151486,0.657926,0.0791243,0.269638,0.733609,0.935348,0.105181,0.005014,0.644863,0.915063,0.0891055,0.746788,0.316474,0.526433,0.925046,0.816021,0.56654,0.857319,0.510776,0.667979,0.612286,0.261495,0.497425,0.700957,0.282611,0.0120105,0.756784,0.696727,0.845719,0.00368261,0.69322,0.674399,0.195758,0.366071,0.319266,0.66093,0.461354,0.479772,0.821193,0.847159,0.609179,0.0878432,0.664614,0.453907,0.20162,0.419808,0.956484,0.69498,0.420149,0.508562,0.0997791,0.213045,0.469588,0.607214,0.853074,0.478862,0.716323,0.101299,0.667968,0.339617,0.230419,0.0513927,0.563667,0.482048,0.528474,0.356924,0.998705,0.914065,0.761066,0.151257,0.554193,0.819545,0.356308,0.889449,0.656247,0.450771,0.628583,0.581003,0.196136,0.094611,0.140043,0.123515,0.474741,0.525748,0.812862,0.0780953,0.228183,0.388667,0.321784,0.00705087,0.822984,0.0164679,0.0671985,0.929569,0.49355,0.125662,0.00373322,0.617849,0.92502,0.141997,0.985356,0.57291,0.252457,0.0190211,0.534642,0.884053,0.358407,0.366883,0.474848,0.752963,0.595316,0.259926,0.263046,0.166292,0.916656,0.384435,0.835687,0.803494,0.124675,0.833714,0.29812,0.588769,0.281447,0.608883,0.0176942,0.313685,0.940752,0.749,0.775638,0.0508116,0.358932,0.397417,0.457289,0.513086,0.434182,0.802601,0.269449,0.0380722,0.370774,0.548949,0.972907,0.463341,0.0750265,0.617354,0.0417359,0.493539,0.264648,0.543104,0.0339726,0.629607,0.748799,0.7899,0.732823,0.329255,0.314809,0.52724,0.25698,0.644896,0.324383,0.42339,0.702299,0.78564,0.722525,0.637751,0.195586,0.97888,0.776962,0.297028,0.701525,0.292834,0.861968,0.116651,0.493694,0.940863,0.429804,0.175496,0.6141,0.521811,0.204103,0.572468,0.605916,0.368421,0.289453,0.995999,0.364781,0.813571,0.444264,0.49177,0.177257,0.218275,0.274125,0.914897,0.441967,0.43608,0.159156,0.0174304,0.942202,0.91341,0.95424,0.296955,0.9211,0.219075,0.550127,0.475068,0.657569,0.585533,0.858587,0.644077,0.569946,0.955298,0.484958,0.771783,0.351257,0.771855,0.736777,0.548803,0.917095,0.572418,0.782983,0.198667,0.831141,0.953453,0.226022,0.604507,0.989351,0.593712,0.127455,0.0756304,0.42801,0.292347,0.831245,0.0372616,0.684107,0.202919,0.00303334,0.630696,0.732107,0.796252,0.0250468,0.537798,0.886572,0.2913,|0.68294,0.129194,0.574464,0.170373,0.974968,0.430711,0.49885,0.784372,0.878211,0.041426,0.181636,0.459569,0.565577,0.924456,0.118741,0.10092,0.809326,0.952776,0.0727873,0.649258,0.797914,0.484825,0.435854,0.0101019,0.695642,0.742824,0.00127286,0.819001,0.991901,0.779101,0.474445,0.0537857,0.0195034,0.181147,0.906372,0.847776,0.342189,0.187638,0.777401,0.505437,0.31172,0.770427,0.595388,0.896206,0.890921,0.404639,0.39716,0.871052,0.172696,0.298336,0.602396,0.192621,0.824123,0.563069,0.91622,0.287687,0.410684,0.476402,0.792086,0.878107,0.87576,0.507908,0.772436,0.104849,0.322668,0.289035,0.420578,0.200233,0.0170733,0.820255,0.849847,0.802654,0.0937416,0.0443825,0.422364,0.0493263,0.410245,0.661991,0.622174,0.522511,0.921153,0.573104,0.0294344,0.880315,0.0386582,0.771903,0.674316,0.567326,0.587721,0.826193,0.971227,0.208592,0.3251,0.0769749,0.263101,0.616618,0.979324,0.0119177,0.375653,0.392029,0.185289,0.603208,0.798721,0.929054,0.449483,0.0527384,0.920544,0.515331,0.542497,0.0476405,0.474258,0.331924,0.277232,0.787378,0.963428,0.0966489,0.165163,0.0356589,0.0443503,0.955894,0.107486,0.245348,0.274414,0.0840821,0.794468,0.237939,0.639017,0.528097,0.0398074,0.429931,0.836513,0.591608,0.957715,0.137283,0.38939,0.172011,0.995052,0.630874,0.237485,0.80407,0.765508,0.943697,0.847559,0.164058,0.712582,0.411276,0.414311,0.736656,0.653124,0.0682997,0.656608,0.502185,0.252458,0.0352048,0.734134,0.259199,0.412714,0.125289,0.846233,0.263296,0.049349,0.162029,0.0983884,0.0879856,0.108195,0.608713,0.103173,0.151585,0.792517,0.162306,0.0754333,0.373395,0.209313,0.425431,0.743801,0.421424,0.332275,0.43381,0.694824,0.827243,0.977207,0.657472,0.339667,0.039201,0.33191,0.338561,0.770383,0.527115,0.712506,0.20935,0.570711,0.532455,0.449315,0.478897,0.801722,0.324723,0.4738,0.985255,0.502221,0.892497,0.195933,0.905838,0.253131,0.496865,0.956493,0.214868,0.386594,0.311323,0.498047,0.305485,0.920972,0.447238,0.410045,0.784564,0.537579,0.730691,0.375432,0.0626657,0.0729063,0.0931568,0.674473,0.999041,0.0589315,0.250231,0.971825,0.454767,0.341941,0.261828,0.42771,0.299307,0.229934,0.952996,0.571792,0.618859,0.934673,0.827341,0.690169,0.0784841,0.320969,0.367629,0.119313,0.463259,0.0551465,0.472194,0.452745,0.093457,0.900745,0.495525,0.653917,0.975798,0.365362,0.622411,0.938254,0.640711,0.0930233,0.914609,0.609299,0.218535,0.196831,0.502509,0.760935,0.214009,0.457768,0.789095,0.443672,0.747911,0.0731104,0.00156981,0.611352,0.211027,0.125089,0.791399,0.342704,0.0903801,0.817055,0.934707,0.00486416,0.241036,0.146646,0.542951,0.767753,0.319193,0.758789,0.211749,0.275114,0.376996,0.102389,0.858711,0.317333,0.825913,0.987532,0.363157,0.874717,0.04455,0.345308,0.350636,0.3075,0.459354,0.929033,0.122288,0.991381,0.56574,0.800008,0.185896,0.966266,0.428472,0.328445,0.552568,0.539487,0.982027,0.867454,0.701901,0.77478,0.647638,0.598205,0.266656,0.876791,0.129504,0.123381,0.457087,0.00308669,0.216785,0.207348,0.191542,0.280622,0.5046,0.539314,0.376355,0.402265,0.589991,0.910966,0.54026,0.225145,0.532588,0.587478,0.491329,0.530568,0.102027,0.88991,0.3021,0.925946,0.341474,0.832902,0.7574,0.967468,0.571518,0.124562,0.723362,0.179781,0.127019,0.754378,0.427328,0.0364511,0.533258,0.369118,0.0437349,0.388463,0.589581,0.91894,0.121845,0.189873,0.0224844,0.95672,0.459001,0.567713,0.784824,0.985077,0.213294,0.198939,0.0357224,0.94174,0.975705,0.165879,0.832708,0.136112,0.399635,0.966228,0.0743113,0.850319,0.704003,0.98724,0.418035,0.324885,0.624402,0.458045,0.259223,0.0364137,0.439655,0.0919676,0.147615,0.879852,0.773344,0.644388,0.440456,0.900122,0.866394,0.486277,0.267937,0.933948,0.237339,0.847693,0.556009,0.984568,0.168665,0.197608,0.915792,0.7462,0.569249,0.426366,0.527755,0.175108,0.186267,0.753266,0.732085,0.00629735,0.692985,0.754771,0.735558,0.388507,0.204595,0.458419,0.809387,0.127602,0.80274,0.658095,0.44114,0.80578,0.571804,0.831104,0.617592,0.522021,0.91005,0.692852,0.214024,0.261546,0.943044,0.498548,0.00280094,0.958647,0.134679,0.453743,0.187711,0.46201,0.744387,0.344212,0.206793,0.566698,0.926277,0.0136833,0.960114,0.70077,0.358893,0.557966,0.382549,0.21357,0.531473,0.0471916,0.500324,0.190769,0.0914937,0.87077,0.405367,0.659425,0.336242,0.5901,0.931649,0.7446,0.0617327,0.769148,0.445086,0.980395,0.159163,0.314115,0.0770296,0.801436,0.847176,0.319789,0.160026,0.588466,0.061402,0.787887,0.61849,0.530763,0.701601,0.0602344,0.408553,0.841965,0.722181,0.245302,0.691302,0.893032,0.768254,0.83533,0.289028,0.864494,0.0284162,0.432776,0.319682,0.204942,0.283652,0.829258,0.724291,0.800734,0.172005,0.0802804,0.426408,0.00224155,0.728314,0.0997836,0.87375,0.373899,0.212642,0.827118,0.389086,0.446832,0.596053,0.0097934,0.778461,0.415587,0.18665,0.597068,0.301605,0.746024,0.249761,0.319947,0.430504,0.344948,0.36461,0.274939,0.370399,0.959979,0.397034,0.532296,0.782655,0.933222,0.086895,0.0956632,0.857367,0.906937,0.711696,0.555365,0.947202,0.680273,0.169047,0.570043,0.403339,0.98236,0.519723,0.842101,0.860412,0.357841,0.536392,0.241077,0.373844,0.206075,0.715753,0.881602,0.77704,0.945574,0.135549,0.847325,0.627021,0.544195,0.839805,0.865705,0.217656,0.660206,0.585375,0.373265,0.695064,0.651737,0.11069,0.190847,0.331151,0.371401,0.0762842,0.992982,0.910663,0.794065,0.106073,0.603862,0.243709,0.0625736,0.108648,0.479261,0.863835,0.543341,0.933336,0.733774,0.428306,0.893323,0.0399007,0.145455,0.156909,0.296303,0.00016278,0.0404433,0.677132,0.379796,0.40938,0.690152,0.457459,0.767131,0.861837,0.443971,0.394908,0.52577,0.854657,0.962965,0.706506,0.254465,0.189349,0.853213,0.442285,0.604727,0.621873,0.0539103,0.368101,0.897399,0.34929,0.335333,0.426804,0.856429,0.210693,0.495681,0.265618,0.709354,0.635222,0.0791699,0.735023,0.204854,0.783156,0.650297,0.588175,0.875503,0.0549059,0.940831,0.0403449,0.357103,0.515805,0.661902,0.749039,0.592217,0.951437,0.755091,0.309344,0.753708,0.602082,0.949109,0.497898,0.844067,0.84477,0.767115,0.573255,0.633512,0.320652,0.442362,0.438592,0.0341653,0.426025,0.906841,0.272201,0.508865,0.983195,0.590917,0.547882,0.456371,0.558493,0.0995363,0.417658,0.611568,0.610787,0.326659,0.628007,0.083187,0.0867643,0.340238,0.976843,0.787916,0.679256,0.55985,0.884214,0.244345,0.349674,0.851802,0.381724,0.469645,0.460907,0.253836,0.151552,0.860001,0.871371,0.431622,0.758435,0.710473,0.654595,0.372178,0.444549,0.227815,0.795032,0.782916,0.787219,0.29058,0.167605,0.343264,0.538685,0.78232,0.614264,0.952489,0.782536,0.532167,0.0283853,0.104421,0.913116,0.584619,0.593319,0.563778,0.0417913,0.112571,0.311539,0.376451,0.665932,0.859832,0.791521,0.954824,0.481296,0.816004,0.960034,0.299833,0.44531,0.436226,0.441884,0.919,0.256885,0.994229,0.968484,0.0535192,0.19553,0.0649133,0.0131345,0.0128254,0.352399,0.535084,0.874883,0.1824,0.040049,0.770647,0.931325,0.549721,0.490181,0.192963,0.917245,0.035584,0.720348,0.580103,0.294918,0.473776,0.474104,0.663829,0.309643,0.0261064,0.0632392,0.0328934,0.819834,0.490109,0.960284,0.10758,0.443406,0.101915,0.739535,0.393051,0.624387,0.662203,0.138508,0.766801,0.525852,0.961248,0.3353,0.525434,0.627293,0.850147,0.332053,0.287954,0.251134,0.479331,0.00302088,0.294401,0.784139,0.2876,0.767123,0.487369,0.557179,0.294311,0.655761,0.472709,0.0457872,0.972487,0.178949,0.485616,0.968087,0.765716,0.056396,0.0707892,0.920891,0.949248,0.693428,0.910932,0.27031,0.115368,0.13616,0.238597,0.760403,0.542833,0.409171,0.943041,0.886187,0.738721,0.597507,0.0922855,0.251656,0.664005,0.405851,0.747466,0.727222,0.826213,0.134918,0.144059,0.763867,0.090887,0.966924,0.13358,0.379661,0.646201,0.241551,0.527342,0.872386,0.0691921,0.00915402,0.738422,0.254902,0.408853,0.219945,0.854621,0.00202781,0.817854,0.46965,0.691019,0.999211,0.59028,0.360692,0.98134,0.850932,0.945557,0.907632,0.0413277,0.436791,0.222668,0.260768,0.284601,0.91147,0.727288,0.57347,0.733328,0.147756,0.618323,0.638255,0.969816,0.440828,0.671099,0.626717,0.692464,0.197051,0.524028,0.0105036,0.322271,0.869525,0.422562,0.791959,0.594355,0.368015,0.69286,0.415304,0.529478,0.224369,0.781227,0.224509,0.300177,0.458762,0.305378,0.559533,0.368053,0.219429,0.808448,0.382096,0.0541734,0.101324,0.651259,0.236839,0.451133,0.0853378,0.42252,0.139305,0.430114,0.444162,0.0263469,0.992401,0.234607,0.673452,0.507994,0.240086,0.859462,0.209763,0.19345,0.214752,0.507702,0.370403,0.986509,0.969655,0.00934952,0.832623,0.329482,0.563107,0.273143,0.12056,0.56322,0.180979,0.582172,0.784516,0.658793,0.293846,0.619985,0.303359,0.998904,0.91626,0.0129945,0.38894,0.445461,0.957993,0.225306,0.819946,0.473784,0.736869,0.222944,0.407397,0.548827,0.978583,0.76032,0.671871,0.956432,0.887708,0.0947908,0.185463,0.392253,0.702416,0.870458,0.180881,0.67471,0.565309,0.237862,0.362447,0.473665,0.144422,0.0954461,0.609769,0.194668,0.72362,0.851192,0.183813,0.173952,0.690512,0.293932,0.824259,0.51422,0.376497,0.660786,0.935296,0.736325,0.949973,0.314261,0.971871,0.392697,0.284724,0.81024,0.242071,0.891334,0.55945,0.799583,0.464961,0.83333,0.588883,0.347079,0.528278,0.934607,0.28579,0.240334,0.0165175,0.682813,0.45893,0.560075,0.83488,|0.980822,0.405986,0.0149416,0.110548,0.573654,0.126707,0.147771,0.155507,0.829413,0.85397,0.0788355,0.924513,0.716316,0.36564,0.724864,0.0732743,0.950189,0.853723,0.480029,0.260334,0.876761,0.422763,0.28559,0.31865,0.68831,0.115041,0.477676,0.546231,0.890474,0.590635,0.0969969,0.443244,0.0857099,0.916569,0.902712,0.270943,0.273814,0.92829,0.599554,0.52721,0.930394,0.695508,0.489486,0.913017,0.97139,0.632721,0.547872,0.7292,0.42352,0.263574,0.580068,0.451065,0.901613,0.67147,0.960456,0.745629,0.711613,0.635601,0.0171087,0.503418,0.497003,0.236196,0.915203,0.184749,0.559511,0.223175,0.676204,0.0887846,0.820221,0.732695,0.430368,0.851709,0.570753,0.106269,0.629739,0.920808,0.908912,0.795536,0.912494,0.537795,0.73769,0.0974226,0.100752,0.445976,0.381253,0.0603319,0.883371,0.65949,0.394549,0.727896,0.964938,0.693013,0.280615,0.3722,0.535611,0.265035,0.289475,0.595861,0.161608,0.602331,0.147152,0.469108,0.264207,0.606654,0.616593,0.460898,0.543006,0.347039,0.46504,0.60255,0.790949,0.510292,0.405705,0.295193,0.978142,0.489442,0.637143,0.642638,0.775302,0.224269,0.326779,0.173781,0.238508,0.0860875,0.348878,0.639605,0.467379,0.490316,0.434063,0.286857,0.375025,0.273051,0.0590937,0.344771,0.268383,0.630625,0.983771,0.0973125,0.291157,0.0252576,0.208914,0.186786,0.2598,0.407814,0.802911,0.717308,0.0534614,0.665322,0.27874,0.122171,0.0456619,0.910875,0.836906,0.548865,0.98303,0.929044,0.998677,0.701483,0.258851,0.82182,0.776752,0.950378,0.292014,0.31371,0.695584,0.45588,0.0118601,0.0363441,0.636061,0.141192,0.973463,0.912914,0.911501,0.0722611,0.826458,0.923124,0.615982,0.172996,0.0392056,0.0789292,0.494243,0.639563,0.682853,0.646902,0.753227,0.502661,0.743432,0.363885,0.671034,0.340437,0.0179055,0.868417,0.881399,0.354373,0.249231,0.36246,0.955042,0.0406025,0.761874,0.426879,0.095292,0.198075,0.795143,0.824738,0.252272,0.802592,0.280569,0.668802,0.456293,0.960175,0.396809,0.146403,0.441015,0.150989,0.151623,0.336266,0.404631,0.710637,0.36663,0.0513096,0.747969,0.307203,0.425928,0.0407219,0.870858,0.544149,0.691301,0.785883,0.668323,0.449973,0.540417,0.963191,0.133823,0.957234,0.436639,0.54243,0.639136,0.778289,0.292278,0.999279,0.594566,0.260247,0.70736,0.622897,0.495506,0.290767,0.458467,0.708795,0.535171,0.685472,0.118317,0.468343,0.5698,0.644855,0.291221,0.129062,0.243765,0.73978,0.258593,0.0464475,0.88999,0.123813,0.460885,0.296697,0.83868,0.896619,0.0193963,0.124709,0.155935,0.638964,0.0989389,0.924213,0.623685,0.385521,0.73483,0.962637,0.890871,0.624424,0.993531,0.94119,0.554244,0.594062,0.193727,0.520142,0.229768,0.804404,0.901885,0.160119,0.514057,0.672165,0.788916,0.218842,0.705492,0.917781,0.566952,0.295446,0.631444,0.75379,0.281426,0.262287,0.177419,0.929061,0.628483,0.967241,0.85161,0.978617,0.511471,0.439447,0.629234,0.357212,0.84481,0.229887,0.753801,0.905754,0.890999,0.131983,0.631651,0.363798,0.956918,0.521847,0.648062,0.790216,0.411857,0.694758,0.811433,0.0507492,0.71754,0.239961,0.809909,0.591003,0.097027,0.733945,0.850226,0.393882,0.646856,0.553305,0.936729,0.516894,0.292593,0.989313,0.723973,0.82722,0.350648,0.162695,0.607718,0.971684,0.700364,0.847393,0.54064,0.132386,0.188499,0.774269,0.796523,0.652784,0.641039,0.637742,0.620083,0.797092,0.681182,0.11478,0.971091,0.135904,0.245817,0.767957,0.593879,0.939857,0.395569,0.555667,0.382184,0.903085,0.994406,0.502354,0.745331,0.4771,0.421539,0.7026,0.0654421,0.696099,0.0717604,0.239423,0.247857,0.407454,0.995891,0.488187,0.735316,0.62727,0.212156,0.621093,0.465614,0.416346,0.629058,0.208149,0.185334,0.347819,0.407646,0.232713,0.89441,0.489073,0.50881,0.450175,0.422062,0.580957,0.902754,0.339294,0.535359,0.41124,0.000593603,0.517148,0.76005,0.85929,0.890337,0.497685,0.593084,0.0217902,0.496799,0.932427,0.308248,0.738104,0.000279903,0.275945,0.604779,0.567945,0.504988,0.505946,0.49861,0.253508,0.464503,0.128756,0.108029,0.343752,0.298954,0.137703,0.578715,0.27287,0.429457,0.0978451,0.42641,0.0510989,0.546986,0.291672,0.355269,0.401867,0.819787,0.0016802,0.155622,0.339083,0.995067,0.12925,0.392209,0.746543,0.570203,0.520052,0.771965,0.0467732,0.466783,0.606958,0.548277,0.1122,0.581668,0.168491,0.588384,0.969516,0.525274,0.745357,0.321875,0.512764,0.754758,0.432308,0.811149,0.123582,0.0463277,0.410335,0.656346,0.794122,0.979532,0.186918,0.159295,0.449565,0.492371,0.489584,0.00731009,0.0910841,0.89253,0.800406,0.77874,0.972528,0.350894,0.242189,0.636578,0.176202,0.673701,0.495044,0.686137,0.284833,0.481186,0.0800068,0.233942,0.108276,0.0683774,0.308015,0.690799,0.310905,0.226471,0.715264,0.893778,0.0195493,0.192819,0.485386,0.340545,0.491368,0.139375,0.00980031,0.702118,0.00958198,0.629821,0.48164,0.231467,0.812851,0.344018,0.361276,0.444787,0.16268,0.476694,0.909957,0.625703,0.8506,0.464643,0.31053,0.683942,0.974801,0.946512,0.503692,0.184544,0.504734,0.0118849,0.468257,0.103412,0.443066,0.769122,0.113903,0.200243,0.303441,0.927558,0.259375,0.292013,0.73381,0.325747,0.533041,0.625938,0.963841,0.697511,0.385997,0.605908,0.878013,0.298037,0.189652,0.541558,0.477327,0.392951,0.57213,0.540655,0.540041,0.809886,0.0460543,0.356315,0.393044,0.981413,0.0988148,0.852782,0.683212,0.39333,0.888332,0.996099,0.609199,0.508042,0.457868,0.408718,0.979688,0.077651,0.84944,0.863126,0.845572,0.925993,0.188926,0.0112414,0.289162,0.541317,0.998768,0.88696,0.613687,0.19731,0.11841,0.248393,0.207065,0.984034,0.153264,0.470333,0.20508,0.880519,0.878466,0.49157,0.533861,0.308569,0.161198,0.541474,0.787414,0.979101,0.693267,0.985408,0.498503,0.218095,0.871423,0.882843,0.505926,0.385914,0.180528,0.081091,0.949968,0.228598,0.625797,0.781392,0.0248805,0.0410188,0.689686,0.0254256,0.925473,0.307711,0.643909,0.356241,0.326797,0.832992,0.734295,0.467052,0.628587,0.878075,0.0623611,0.422687,0.215615,0.519097,0.51455,0.920687,0.685102,0.396823,0.620432,0.478658,0.890335,0.96565,0.362264,0.792216,0.399785,0.967259,0.478976,0.468791,0.922408,0.0724867,0.917186,0.964346,0.275218,0.813652,0.583893,0.648639,0.506499,0.899991,0.0728697,0.582932,0.631271,0.679912,0.507179,0.674853,0.096668,0.592585,0.654914,0.940935,0.464441,0.346486,0.891796,0.963164,0.873711,0.0504375,0.845112,0.947637,0.366743,0.967468,0.0657389,0.52153,0.0896705,0.855001,0.592859,0.180984,0.200271,0.867533,0.168491,0.758717,0.652671,0.232759,0.765586,0.177662,0.0428668,0.550478,0.493263,0.887647,0.943492,0.412841,0.375279,0.0395189,0.700895,0.191846,0.856657,0.158361,0.300947,0.0387734,0.467237,0.105818,0.761275,0.508733,0.0153307,0.492027,0.357637,0.493266,0.0926559,0.43387,0.963125,0.913215,0.661789,0.0398809,0.439895,0.250293,0.863708,0.543676,0.828187,0.959117,0.328086,0.060223,0.0135227,0.914563,0.701342,0.62987,0.0343419,0.550532,0.110005,0.462927,0.0879669,0.914532,0.616454,0.997959,0.835554,0.825037,0.734172,0.619428,0.0749182,0.452017,0.297389,0.201766,0.0631773,0.730464,0.20787,0.0804157,0.510265,0.115822,0.00682843,0.437551,0.346114,0.418114,0.291765,0.308813,0.835741,0.868215,0.674705,0.532697,0.510154,0.974168,0.167637,0.181652,0.484655,0.437844,0.777096,0.695198,0.135966,0.180466,0.94053,0.188501,0.646482,0.500038,0.0337818,0.74359,0.963344,0.939903,0.638971,0.740361,0.37679,0.754715,0.622009,0.137049,0.163977,0.243735,0.41672,0.202644,0.361258,0.94203,0.247016,0.046528,0.824114,0.87917,0.830826,0.263585,0.376611,0.795846,0.990616,0.354385,0.163423,0.806651,0.572854,0.286022,0.22056,0.556791,0.266912,0.280691,0.887971,0.0598645,0.354492,0.331846,0.0493467,0.431762,0.350531,0.794814,0.386415,0.882049,0.735547,0.579317,0.901446,0.395165,0.595753,0.0917235,0.744766,0.148425,0.497487,0.229203,0.0327442,0.990427,0.658315,0.330073,0.693828,0.823988,0.605993,0.94609,0.272488,0.322266,0.0565216,0.245198,0.11674,0.683214,0.384935,0.426538,0.659067,0.962737,0.117557,0.220582,0.373039,0.616027,0.402858,0.212437,0.544549,0.0501125,0.301737,0.0281658,0.100005,0.00750756,0.334896,0.803075,0.367362,0.714132,0.696238,0.487483,0.526734,0.1286,0.742149,0.917333,0.906646,0.607725,0.879156,0.186675,0.575244,0.625786,0.598853,0.787846,0.716682,0.269794,0.238649,0.381872,0.984695,0.276221,0.0784094,0.00843173,0.207052,0.0302196,0.043197,0.472408,0.853585,0.814837,0.134494,0.765138,0.796619,0.614774,0.746308,0.938245,0.883601,0.878679,0.832932,0.160921,0.675508,0.846414,0.116669,0.999738,0.950691,0.426657,0.929579,0.451655,0.37351,0.883896,0.784259,0.163588,0.375777,0.970772,0.279567,0.00590301,0.919828,0.130111,0.475217,0.747702,0.965493,0.549911,0.883128,0.58305,0.832758,0.667786,0.614043,0.80036,0.542006,0.551473,0.831638,0.984613,0.424407,0.0606755,0.170489,0.0507351,0.176612,0.477903,0.921396,0.431031,0.847392,0.975824,0.938548,0.533631,0.784824,0.0582233,0.576958,0.377335,0.05072,0.133573,0.618716,0.67917,0.70326,0.786952,0.664237,0.834877,0.80686,0.698764,0.276749,0.0476899,0.135939,0.949969,0.933737,0.854943,0.0102251,0.263206,0.564831,0.813815,0.758345,0.168982,0.89566,0.980066,0.955127,0.786409,0.556912,0.726783,0.98383,0.158451,0.805236,0.690988,0.886432,0.421623,0.332945,0.694933,0.663084,0.506839,0.611233,0.811292,0.434099,0.86437,0.233741,|0.542138,0.616599,0.484575,0.944837,0.397733,0.293862,0.434111,0.0816492,0.373444,0.430582,0.740837,0.283429,0.489755,0.108287,0.485088,0.86516,0.477003,0.488606,0.241286,0.079224,0.572544,0.11735,0.236103,0.511818,0.922392,0.504981,0.298958,0.965727,0.287459,0.0483094,0.995235,0.733791,0.598229,0.869946,0.714701,0.0283387,0.939863,0.631372,0.850949,0.817904,0.837724,0.638652,0.231134,0.309832,0.460873,0.959628,0.740218,0.421258,0.237313,0.0574183,0.13558,0.699247,0.223316,0.796988,0.331643,0.245433,0.51948,0.432446,0.955841,0.528679,0.745567,0.366395,0.272041,0.611342,0.742065,0.801339,0.401888,0.662455,0.481453,0.0848167,0.00552791,0.523849,0.717194,0.993035,0.499924,0.635451,0.419783,0.79001,0.00479144,0.0571492,0.984208,0.111157,0.306917,0.914313,0.671558,0.430265,0.987221,0.890204,0.183246,0.154703,0.297155,0.196777,0.397412,0.753835,0.845135,0.75191,0.220108,0.824646,0.743996,0.496958,0.248093,0.746025,0.929637,0.619705,0.922158,0.377783,0.507021,0.565432,0.0117472,0.692911,0.904536,0.0393484,0.821801,0.369489,0.790862,0.192203,0.560345,0.355422,0.27366,0.00184184,0.961349,0.0927723,0.330156,0.621114,0.415611,0.909167,0.86083,0.681054,0.244662,0.210994,0.0839727,0.654764,0.723661,0.621128,0.995973,0.238517,0.932264,0.116938,0.883406,0.189125,0.161244,0.653643,0.0568385,0.391475,0.0186042,0.115205,0.964888,0.914806,0.678881,0.454937,0.752127,0.483627,0.0971443,0.536663,0.0341702,0.507813,0.932738,0.456157,0.645536,0.882733,0.628896,0.427099,0.416423,0.106548,0.955429,0.332448,0.642281,0.436242,0.755272,0.892758,0.7729,0.68792,0.507263,0.993907,0.0508288,0.434207,0.82771,0.780385,0.853021,0.428708,0.0610664,0.726716,0.365789,0.573496,0.273753,0.264673,0.190599,0.052361,0.863149,0.178819,0.702743,0.879666,0.834925,0.380135,0.324783,0.0566334,0.85898,0.869664,0.102325,0.336146,0.258242,0.884052,0.466196,0.687966,0.87176,0.893298,0.0783058,0.377586,0.965683,0.270732,0.207377,0.576061,0.530185,0.373814,0.960768,0.67126,0.933054,0.957162,0.888033,0.548166,0.955857,0.595172,0.353054,0.243391,0.254058,0.0133895,0.131672,0.195272,0.815331,0.586787,0.0582279,0.818741,0.37242,0.586486,0.359278,0.656337,0.879669,0.221266,0.820774,0.885697,0.916144,0.531334,0.202041,0.867425,0.795928,0.389411,0.289365,0.153199,0.975844,0.861649,0.00391603,0.151214,0.966808,0.447951,0.0913168,0.149421,0.264565,0.954111,0.0713524,0.485437,0.0126075,0.773705,0.370741,0.48339,0.451171,0.032131,0.239906,0.687204,0.000240803,0.717235,0.52827,0.0832645,0.838549,0.191005,0.34809,0.614571,0.464841,0.843092,0.508771,0.817259,0.0334875,0.655062,0.621982,0.637968,0.740757,0.974226,0.0647004,0.136887,0.0453027,0.356001,0.372554,0.512196,0.504343,0.175902,0.420543,0.234178,0.823866,0.0493855,0.0323813,0.999732,0.338588,0.872692,0.435333,0.18522,0.352997,0.29574,0.96899,0.938091,0.912654,0.724295,0.527393,0.936258,0.649443,0.95376,0.0526506,0.164002,0.173285,0.189394,0.376233,0.453848,0.748415,0.312525,0.294332,0.811238,0.126783,0.486649,0.0976156,0.443241,0.828862,0.39709,0.994981,0.0955989,0.182427,0.0286736,0.716467,0.666478,0.616631,0.395861,0.253964,0.554453,0.49627,0.210334,0.933744,0.742083,0.246204,0.252442,0.51122,0.920834,0.742204,0.698135,0.587395,0.485307,0.351101,0.00924802,0.201672,0.448847,0.151539,0.487825,0.439209,0.862253,0.246787,0.38596,0.359693,0.59678,0.987369,0.100038,0.629352,0.518582,0.540026,0.176556,0.619007,0.999476,0.989251,0.372139,0.777292,0.660251,0.40925,0.691488,0.715602,0.0582774,0.40926,0.389739,0.905442,0.288579,0.0250955,0.766541,0.759433,0.182566,0.525991,0.300159,0.602123,0.6347,0.397618,0.773587,0.73611,0.159329,0.107042,0.206148,0.721302,0.595591,0.493435,0.0439543,0.984089,0.817716,0.830139,0.855072,0.401395,0.312212,0.970904,0.900668,0.375677,0.116364,0.519987,0.63062,0.207816,0.417909,0.291936,0.327974,0.812313,0.960286,0.360037,0.283563,0.266439,0.536894,0.0887125,0.273053,0.115449,0.302871,0.246023,0.78781,0.475377,0.468766,0.886424,0.948938,0.353873,0.461997,0.94088,0.341749,0.291646,0.0241049,0.173174,0.944911,0.22663,0.286513,0.125549,0.367208,0.0798729,0.0152646,0.470721,0.627363,0.737461,0.573623,0.301443,0.928243,0.415254,0.115106,0.759009,0.045727,0.737955,0.960821,0.163599,0.526976,0.427067,0.0406567,0.776554,0.791106,0.736625,0.300774,0.360841,0.944742,0.960451,0.84864,0.773168,0.530275,0.242953,0.328997,0.36965,0.998477,0.0756482,0.587671,0.314138,0.861816,0.822656,0.331664,0.518392,0.853487,0.281179,0.573564,0.176896,0.890491,0.913162,0.212409,0.0554289,0.916126,0.96182,0.932686,0.45634,0.851008,0.093209,0.807378,0.790091,0.0396993,0.666529,0.0902852,0.463319,0.246894,0.156176,0.324013,0.228279,0.639442,0.4306,0.0869319,0.671385,0.691599,0.310843,0.567179,0.477519,0.219288,0.177567,0.0820811,0.819061,0.351282,0.846884,0.965113,0.194562,0.601098,0.817122,0.118821,0.839275,0.412682,0.561772,0.336587,0.0951374,0.999657,0.284542,0.577283,0.0277802,0.49493,0.800306,0.388254,0.423966,0.23278,0.844655,0.742864,0.999699,0.084063,0.140352,0.560832,0.728824,0.177719,0.458916,0.0325755,0.78682,0.749072,0.615984,0.850599,0.789423,0.494202,0.296293,0.113895,0.220279,0.771223,0.355934,0.778882,0.634644,0.480507,0.467382,0.755182,0.43777,0.051827,0.291019,0.476234,0.93825,0.520582,0.49662,0.325767,0.61628,0.72846,0.435577,0.467864,0.142652,0.817634,0.637685,0.0698913,0.0230209,0.022258,0.10232,0.788092,0.18349,0.71025,0.212114,0.530346,0.0604092,0.937472,0.377179,0.0569242,0.224146,0.431817,0.685977,0.743025,0.96075,0.231264,0.103378,0.35962,0.917874,0.612685,0.0758255,0.655001,0.487838,0.389499,0.257125,0.776376,0.891381,0.769887,0.406347,0.495473,0.438276,0.599144,0.169006,0.545044,0.466421,0.159138,0.623989,0.624599,0.720249,0.800722,0.708736,0.0381081,0.433713,0.317357,0.0732815,0.30609,0.118999,0.430801,0.358715,0.230275,0.559597,0.169497,0.319053,0.821437,0.636467,0.017601,0.0519047,0.308464,0.0261571,0.708871,0.438355,0.766076,0.607736,0.941268,0.0902998,0.412778,0.756463,0.675783,0.891919,0.782781,0.69731,0.184976,0.94988,0.971407,0.978633,0.236521,0.578767,0.0598109,0.158435,0.196033,0.38803,0.768748,0.50529,0.0268976,0.244068,0.675611,0.454207,0.225975,0.552341,0.0463125,0.284186,0.452982,0.997131,0.922895,0.635945,0.655926,0.505661,0.281371,0.580317,0.322543,0.534922,0.567288,0.898551,0.214912,0.790524,0.443657,0.834736,0.965954,0.0451218,0.990806,0.540712,0.698985,0.947254,0.860565,0.607663,0.424921,0.099893,0.594746,0.278761,0.906865,0.0156056,0.282446,0.0596738,0.216217,0.215617,0.526194,0.434827,0.560634,0.772966,0.86773,0.368006,0.951591,0.98779,0.448648,0.0172443,0.300596,0.368075,0.499946,0.418601,0.493791,0.360562,0.170368,0.828412,0.70056,0.952802,0.728303,0.32769,0.486549,0.0280454,0.677182,0.856,0.884225,0.474742,0.0891317,0.144271,0.0801443,0.11911,0.318064,0.555766,0.763988,0.540633,0.394285,0.11641,0.144413,0.29051,0.282678,0.407852,0.40559,0.299373,0.24262,0.985692,0.42326,0.679653,0.300788,0.0710568,0.22445,0.33947,0.520539,0.809839,0.126712,0.379131,0.233959,0.117014,0.942064,0.4908,0.537633,0.126447,0.888447,0.000826061,0.170979,0.368232,0.192267,0.276239,0.945992,0.544782,0.206138,0.247791,0.757163,0.026086,0.700269,0.425737,0.660825,0.858495,0.790751,0.382923,0.6258,0.729962,0.77485,0.472824,0.414329,0.755028,0.380279,0.16735,0.196751,0.0162749,0.58435,0.186173,0.276525,0.188197,0.16587,0.422121,0.00917864,0.0479799,0.153783,0.753679,0.548319,0.989542,0.521964,0.266073,0.495359,0.861687,0.351707,0.0999287,0.944352,0.306666,0.58333,0.599787,0.0972521,0.359584,0.218062,0.534852,0.132372,0.915038,0.22866,0.489097,0.225827,0.736951,0.957599,0.35349,0.437331,0.137931,0.645773,0.738902,0.311181,0.389557,0.950777,0.383055,0.67274,0.404556,0.0542958,0.929817,0.61608,0.452314,0.930127,0.855954,0.974951,0.966186,0.0987448,0.484068,0.0942746,0.356767,0.56555,0.172645,0.784722,0.978485,0.879078,0.164643,0.503397,0.00934601,0.350391,0.42677,0.46889,0.390775,0.457694,0.278123,0.392235,0.86033,0.264223,0.701085,0.229667,0.459979,0.39826,0.366082,0.896985,0.139361,0.534394,0.476176,0.850783,0.189448,0.235569,0.969242,0.98574,0.875481,0.470101,0.24443,0.127816,0.507333,0.89768,0.151008,0.395386,0.815156,0.0820051,0.080275,0.326623,0.825534,0.852046,0.106828,0.818349,0.435965,0.986356,0.559547,0.789194,0.196285,0.176095,0.673316,0.431593,0.692057,0.409536,0.617622,0.766763,0.217217,0.112494,0.133143,0.460592,0.192372,0.942566,0.662586,0.773431,0.184621,0.484852,0.740171,0.181394,0.279187,0.97769,0.396682,0.514652,0.0599518,0.14623,0.617184,0.318496,0.930984,0.523656,0.123333,0.699363,0.94039,0.18957,0.464475,0.0947366,0.910519,0.813481,0.655487,0.11257,0.105891,0.452724,0.772178,0.232887,0.86319,0.417039,0.415004,0.339304,0.58337,0.592135,0.191522,0.439477,0.394348,0.28336,0.451467,0.0970755,0.434228,0.726017,0.218513,0.638851,0.989558,0.595568,0.516659,0.762899,0.108758,0.0540227,0.315744,0.52204,0.221159,0.913053,0.0769511,0.793366,0.389473,0.38974,0.242807,0.462096,0.870963,0.0230118,0.185473,0.601328,0.710281,0.338446,0.118712,0.467905,0.64832,0.00995004,0.0570192,0.291454,0.0836177,0.244555,0.848851,0.948355,|0.114756,0.393258,0.774688,0.164553,0.190495,0.0415605,0.611018,0.224199,0.46767,0.144008,0.0793507,0.0757055,0.605729,0.762444,0.111494,0.642973,0.716497,0.479099,0.277247,0.0182372,0.136917,0.112352,0.999271,0.0910737,0.367168,0.571938,0.704401,0.765593,0.0505102,0.732675,0.534791,0.518751,0.0603513,0.92261,0.20612,0.952101,0.0766515,0.826635,0.556201,0.808025,0.678505,0.777138,0.216877,0.908686,0.0959783,0.408352,0.908569,0.353317,0.102001,0.289143,0.982382,0.137897,0.793545,0.157392,0.725685,0.231519,0.495586,0.119461,0.91649,0.0524346,0.488689,0.148477,0.680617,0.455664,0.528022,0.87313,0.638673,0.289843,0.0162239,0.866164,0.118157,0.215466,0.323717,0.89533,0.472345,0.416217,0.170836,0.195442,0.847572,0.372466,0.816192,0.973845,0.0772879,0.598626,0.81155,0.223382,0.0655928,0.136332,0.495846,0.159452,0.482103,0.699492,0.872412,0.998412,0.765549,0.156011,0.52871,0.548385,0.0219939,0.837509,0.865055,0.453707,0.194366,0.36844,0.0459623,0.0521334,0.140017,0.303219,0.238153,0.581454,0.689557,0.676608,0.188513,0.329538,0.162531,0.86247,0.749588,0.387885,0.273705,0.290671,0.740938,0.0117804,0.92447,0.583617,0.336214,0.573939,0.326426,0.609961,0.732625,0.429938,0.173186,0.0488916,0.117323,0.389436,0.617469,0.193438,0.6405,0.446813,0.36658,0.885835,0.710064,0.604791,0.267525,0.454888,0.413345,0.921476,0.983447,0.150565,0.570406,0.195125,0.119284,0.0107647,0.88075,0.316821,0.592966,0.239614,0.724388,0.325104,0.944341,0.412301,0.36007,0.418312,0.116002,0.946639,0.617209,0.816368,0.714539,0.434515,0.575584,0.315552,0.538879,0.576939,0.321845,0.560006,0.983041,0.392759,0.681908,0.919915,0.34611,0.889852,0.378979,0.662481,0.313393,0.249077,0.520371,0.0790861,0.673157,0.771538,0.0801139,0.624712,0.8811,0.469228,0.909995,0.398412,0.00131088,0.773879,0.370971,0.255986,0.49907,0.555044,0.721338,0.0375471,0.13671,0.364457,0.088369,0.760387,0.834774,0.147603,0.30382,0.717383,0.651296,0.403828,0.29042,0.40889,0.697523,0.119723,0.384694,0.654875,0.934387,0.880137,0.771904,0.63928,0.800733,0.602702,0.156507,0.440989,0.132469,0.640514,0.82439,0.5193,0.463691,0.941177,0.775272,0.953359,0.574091,0.32306,0.651683,0.786188,0.374816,0.226603,0.253611,0.83244,0.692444,0.46286,0.381718,0.964364,0.470619,0.861454,0.124236,0.179732,0.212653,0.719491,0.861847,0.352185,0.807284,0.635576,0.244663,0.818774,0.150155,0.0870904,0.0958939,0.392124,0.47824,0.838244,0.606561,0.603731,0.471384,0.295528,0.403988,0.898642,0.91441,0.826149,0.923771,0.0421209,0.241757,0.318765,0.592027,0.936963,0.769336,0.284271,0.0217131,0.804865,0.605566,0.387963,0.0450355,0.647472,0.725645,0.550847,0.461145,0.691364,0.119084,0.964261,0.736589,0.195741,0.120848,0.441209,0.886042,0.384837,0.0201184,0.0401931,0.474955,0.0531813,0.886893,0.588113,0.36165,0.491578,0.57167,0.164461,0.236195,0.170673,0.0928185,0.414256,0.404212,0.628643,0.267248,0.787113,0.890803,0.0305243,0.509689,0.641667,0.12623,0.44877,0.486863,0.811014,0.220664,0.686375,0.14077,0.453109,0.937156,0.453886,0.916371,0.793,0.323745,0.632736,0.127161,0.0369034,0.394232,0.909525,0.812912,0.690056,0.921798,0.77435,0.99253,0.594788,0.197252,0.34647,0.0421358,0.882422,0.378712,0.91656,0.280371,0.744659,0.531418,0.0115622,0.239903,0.594692,0.978079,0.598525,0.526651,0.801914,0.376229,0.176063,0.235001,0.592492,0.423919,0.844458,0.100342,0.94896,0.452778,0.95141,0.229554,0.163991,0.387858,0.986805,0.415699,0.203651,0.861326,0.517707,0.233682,0.353002,0.501691,0.257655,0.625834,0.520501,0.808066,0.903929,0.555797,0.965732,0.261429,0.492978,0.252004,0.155541,0.725436,0.26543,0.754513,0.553845,0.198396,0.491451,0.867232,0.384333,0.152773,0.832126,0.0195816,0.0235425,0.0189399,0.724988,0.751362,0.663002,0.843965,0.64511,0.0644371,0.589698,0.240223,0.718508,0.897555,0.83216,0.596625,0.0273246,0.898817,0.779544,0.555538,0.274322,0.759565,0.532432,0.831575,0.522423,0.948976,0.148052,0.550537,0.289592,0.999677,0.730988,0.671971,0.81978,0.328794,0.217543,0.225424,0.830308,0.279356,0.643317,0.596349,0.968133,0.0858728,0.611609,0.439639,0.780561,0.4951,0.451635,0.323509,0.630703,0.579761,0.404163,0.100784,0.397553,0.600908,0.250089,0.297184,0.0848453,0.714358,0.537329,0.416035,0.819881,0.588654,0.742991,0.607021,0.561716,0.398626,0.628962,0.621501,0.0868267,0.190374,0.303048,0.584523,0.510258,0.687817,0.94579,0.718403,0.865491,0.867469,0.962308,0.19495,0.309228,0.977815,0.377914,0.613588,0.890487,0.28007,0.175978,0.281084,0.651113,0.950432,0.0701505,0.538223,0.402225,0.0385846,0.106375,0.884721,0.254899,0.711343,0.591881,0.291481,0.510289,0.00895494,0.795824,0.354787,0.872062,0.0425279,0.788331,0.0207266,0.620347,0.0542329,0.560596,0.230345,0.811428,0.291948,0.532412,0.314908,0.14147,0.329407,0.0683922,0.607318,0.840023,0.956901,0.0628356,0.311971,0.97485,0.401832,0.696374,0.476996,0.465658,0.190117,0.631658,0.573484,0.969053,0.540732,0.302198,0.143374,0.0167275,0.932658,0.722861,0.960566,0.551794,0.877719,0.163686,0.184894,0.473893,0.635,0.00710499,0.696638,0.916099,0.537213,0.101645,0.663113,0.323837,0.594773,0.250223,0.896002,0.33732,0.509057,0.385225,0.883093,0.514268,0.0611864,0.289277,0.0134427,0.821158,0.115135,0.443673,0.22842,0.842278,0.958443,0.588526,0.655081,0.221627,0.526499,0.806774,0.47213,0.114754,0.667962,0.505017,0.45747,0.89342,0.351979,0.901994,0.429363,0.216531,0.100474,0.24323,0.89245,0.0873755,0.165222,0.850366,0.926554,0.852342,0.350165,0.354371,0.0616338,0.352679,0.759263,0.0967616,0.354969,0.793739,0.421414,0.44282,0.873264,0.425763,0.756311,0.948895,0.990497,0.85588,0.933193,0.200688,0.484834,0.915919,0.451076,0.984729,0.341833,0.023739,0.616936,0.385211,0.209241,0.71258,0.463108,0.996824,0.925373,0.556227,0.251713,0.413314,0.22879,0.689974,0.740244,0.365026,0.707347,0.461371,0.0741656,0.350489,0.122097,0.836244,0.652915,0.528298,0.0739844,0.60122,0.981098,0.73725,0.818965,0.511328,0.0673956,0.774057,0.646479,0.478423,0.717929,0.500877,0.757073,0.206605,0.40414,0.240636,0.574939,0.292777,0.48024,0.30291,0.106142,0.928384,0.504972,0.685311,0.430871,0.218255,0.994731,0.352889,0.094071,0.84128,0.265574,0.836582,0.220004,0.583946,0.368857,0.473809,0.0855413,0.932885,0.411469,0.988104,0.346396,0.433475,0.877307,0.889837,0.639951,0.740216,0.156394,0.815661,0.0981889,0.511989,0.687939,0.0439017,0.958734,0.781357,0.287898,0.920939,0.481171,0.924607,0.684983,0.0327648,0.0431128,0.512376,0.301849,0.789183,0.171307,0.476829,0.437534,0.801746,0.0436004,0.488945,0.127996,0.46992,0.337249,0.490821,0.652075,0.465368,0.79813,0.187954,0.295911,0.548573,0.78071,0.509371,0.823366,0.744309,0.40371,0.687992,0.337164,0.92273,0.544037,0.975616,0.588612,0.690934,0.770526,0.174044,0.706947,0.890827,0.404691,0.555729,0.947325,0.363942,0.997503,0.195904,0.129962,0.915361,0.758338,0.754094,0.692147,0.330722,0.990149,0.875306,0.421929,0.0172473,0.519089,0.388132,0.430928,0.908475,0.330014,0.779183,0.316514,0.27558,0.650737,0.508695,0.305483,0.153511,0.538045,0.361219,0.508627,0.629212,0.368434,0.988923,0.980322,0.239321,0.250285,0.0118511,0.306849,0.422847,0.0695129,0.0697797,0.139542,0.837426,0.23321,0.323523,0.143723,0.406081,0.957839,0.20246,0.133986,0.26532,0.17719,0.313196,0.462998,0.63836,0.501923,0.595646,0.844709,0.695095,0.682282,0.923807,0.855774,0.672798,0.991749,0.0631876,0.351736,0.503896,0.869704,0.136908,0.436592,0.338876,0.440862,0.913614,0.175674,0.791201,0.392929,0.898599,0.786815,0.592167,0.424404,0.625751,0.821346,0.338332,0.991951,0.105342,0.991043,0.134117,0.439057,0.396711,0.760447,0.324968,0.901931,0.0602782,0.757153,0.653045,0.766682,0.0391234,0.975135,0.472571,0.605833,0.988395,0.817972,0.0113779,0.138862,0.94568,0.252078,0.568619,0.958697,0.15344,0.303746,0.0229902,0.123312,0.780569,0.649991,0.738949,0.718242,0.338711,0.337051,0.310806,0.9123,0.158399,0.677061,0.621828,0.899183,0.124301,0.647092,0.0718024,0.0936309,0.490657,0.62439,0.517163,0.254712,0.803273,0.0314628,0.396736,0.923779,0.861538,0.250638,0.905304,0.800015,0.0400428,0.447853,0.68018,0.2283,0.694971,0.910317,0.992439,0.0871063,0.346452,0.507594,0.993802,0.419281,0.215627,0.0837417,0.550891,0.673583,0.543066,0.478554,0.669387,0.179979,0.296229,0.501469,0.714456,0.320098,0.983788,0.203883,0.116739,0.956576,0.13249,0.334234,0.839426,0.516477,0.747036,0.639966,0.0785299,0.148142,0.138708,0.831146,0.271649,0.30143,0.483912,0.231726,0.334566,0.86574,0.658592,0.534448,0.326425,0.313669,0.292469,0.732809,0.152958,0.690786,0.371008,0.74039,0.719792,0.172878,0.751625,0.0162176,0.492661,0.039655,0.656495,0.35511,0.88689,0.844219,0.33312,0.724423,0.535947,0.39479,0.777869,0.774991,0.157656,0.449817,0.608838,0.578056,0.71141,0.27028,0.720807,0.478269,0.869375,0.582947,0.525575,0.819957,0.949457,0.365474,0.0598,0.762819,0.910856,0.0217101,0.035342,0.125015,0.657519,0.31755,0.00744247,0.124709,0.814819,0.150399,0.518091,0.754686,0.470077,0.327973,0.547711,0.825893,0.905259,0.226947,0.133377,0.858593,0.85115,0.875757,0.556572,0.801747,0.613861,0.401959,0.895104,0.576068,0.60884,0.490313,0.198763,0.894432,0.476486,0.794961,0.560603,0.188605,0.149289,|0.948686,0.394729,0.0018875,0.58595,0.467833,0.693532,0.0174654,0.284876,0.0439583,0.89172,0.692271,0.898208,0.225159,0.738047,0.945672,0.473066,0.630321,0.051479,0.978117,0.904156,0.629681,0.172726,0.712922,0.151609,0.760384,0.185508,0.772295,0.614032,0.410076,0.261528,0.364683,0.758582,0.382553,0.190383,0.0393984,0.701165,0.582553,0.947637,0.969669,0.154085,0.77972,0.516691,0.104475,0.308445,0.875039,0.908728,0.329701,0.575206,0.512587,0.219024,0.545328,0.62092,0.973731,0.860341,0.605811,0.320048,0.790366,0.252666,0.58665,0.905363,0.0243279,0.877631,0.925026,0.323446,0.333722,0.646286,0.194182,0.0358809,0.0554561,0.436391,0.678426,0.701234,0.206222,0.317086,0.863933,0.294602,0.359416,0.088933,0.997408,0.19235,0.192176,0.696974,0.353142,0.0243685,0.191793,0.603095,0.283122,0.734399,0.744881,0.516498,0.442179,0.42577,0.694654,0.0770718,0.254782,0.449677,0.429178,0.762355,0.882069,0.919992,0.537744,0.260982,0.245776,0.747488,0.322192,0.100921,0.216042,0.526788,0.809143,0.709235,0.720822,0.0569602,0.423632,0.701745,0.309633,0.322355,0.42797,0.968504,0.975094,0.51979,0.641244,0.594389,0.0332662,0.513882,0.0268908,0.363919,0.264916,0.606367,0.081974,0.67348,0.770849,0.895651,0.414783,0.487995,0.429612,0.0496156,0.350573,0.370729,0.913005,0.545608,0.292305,0.527618,0.712708,0.63482,0.820384,0.22016,0.467267,0.24788,0.72738,0.879849,0.931304,0.435647,0.0186619,0.50014,0.837577,0.406168,0.181163,0.857281,0.763627,0.87771,0.699231,0.392746,0.967814,0.0312135,0.300908,0.888039,0.419602,0.0360684,0.596659,0.211542,0.668477,0.350403,0.86965,0.321919,0.147694,0.0686265,0.615178,0.672231,0.128702,0.73842,0.573661,0.825298,0.894724,0.611263,0.637399,0.474501,0.87699,0.317922,0.29696,0.672984,0.239619,0.757054,0.0290728,0.607799,0.503845,0.264755,0.205225,0.703504,0.850071,0.481081,0.173842,0.738161,0.579809,0.0342689,0.0482731,0.0381827,0.881663,0.965941,0.606282,0.270537,0.870616,0.0539764,0.346923,0.853389,0.466353,0.894165,0.288441,0.249059,0.0919679,0.0979944,0.889449,0.475041,0.323097,0.0571693,0.429463,0.808282,0.731894,0.680745,0.815809,0.179175,0.780484,0.0887883,0.107096,0.91629,0.410341,0.943902,0.364917,0.481526,0.639128,0.28327,0.345322,0.456604,0.152563,0.329031,0.534002,0.96671,0.853033,0.719459,0.0390643,0.841469,0.7223,0.18108,0.521039,0.309813,0.101614,0.787681,0.387996,0.920725,0.568405,0.0811496,0.587592,0.883124,0.544764,0.713409,0.696129,0.0912201,0.784847,0.389719,0.0297015,0.82107,0.85817,0.793151,0.239899,0.605466,0.600489,0.479571,0.553905,0.192649,0.607369,0.783978,0.529283,0.210082,0.725589,0.83688,0.159326,0.52401,0.294297,0.834279,0.281894,0.570726,0.544421,0.774019,0.0564704,0.369189,0.447916,0.571812,0.819113,0.573522,0.203379,0.719479,0.76289,0.566485,0.175491,0.405989,0.427807,0.633233,0.940828,0.510096,0.564253,0.276156,0.775856,0.234682,0.51855,0.369504,0.748956,0.959249,0.527815,0.619424,0.45118,0.760767,0.632217,0.148703,0.555184,0.951501,0.0343058,0.86585,0.585967,0.425758,0.143978,0.871461,0.293536,0.300537,0.500554,0.0461666,0.0665397,0.49008,0.797756,0.584673,0.121359,0.201495,0.738382,0.578125,0.539595,0.59243,0.697952,0.33935,0.160932,0.274652,0.153638,0.98377,0.594496,0.287645,0.712702,0.286352,0.267906,0.167843,0.455167,0.980581,0.478786,0.440513,0.333476,0.470286,0.674327,0.368779,0.332215,0.251494,0.238033,0.848601,0.937688,0.243562,0.562516,0.480684,0.0033673,0.188171,0.414912,0.540801,0.760811,0.503739,0.152325,0.761491,0.113893,0.136245,0.160981,0.691193,0.950834,0.0829501,0.824666,0.256522,0.65339,0.34556,0.185513,0.110475,0.0549924,0.396665,0.205472,0.731439,0.407264,0.545762,0.681465,0.274374,0.780112,0.484939,0.842619,0.706718,0.312026,0.616804,0.158912,0.565216,0.824394,0.930184,0.609391,0.0173122,0.881571,0.0534666,0.0281656,0.577355,0.396409,0.738619,0.0515553,0.980482,0.314744,0.555863,0.186894,0.245413,0.775508,0.00882018,0.538913,0.520145,0.601265,0.632802,0.0948128,0.985928,0.0693993,0.926412,0.66736,0.871365,0.231018,0.138651,0.728819,0.0416852,0.46153,0.62129,0.0116834,0.892728,0.243751,0.817778,0.807848,0.261242,0.999972,0.352785,0.367435,0.385857,0.034133,0.208354,0.605308,0.558844,0.138225,0.0959325,0.663121,0.802701,0.835057,0.554636,0.474665,0.72816,0.214964,0.29025,0.690717,0.152818,0.760478,0.265325,0.150455,0.198409,0.268535,0.571802,0.14827,0.0467601,0.911075,0.158458,0.0803002,0.899565,0.362072,0.971292,0.676047,0.762492,0.149552,0.564623,0.739656,0.508679,0.824946,0.0967348,0.59733,0.580801,0.781581,0.161006,0.441408,0.962339,0.619232,0.00647324,0.728207,0.540638,0.440447,0.483843,0.13365,0.737763,0.120859,0.239194,0.179088,0.303256,0.976457,0.147912,0.0399897,0.0431765,0.702451,0.616742,0.725626,0.935309,0.180918,0.883776,0.00560743,0.869356,0.802871,0.135184,0.725921,0.98992,0.689205,0.930132,0.0995816,0.454135,0.393816,0.523918,0.760871,0.0645351,0.371493,0.274739,0.988831,0.0724325,0.35764,0.421795,0.547829,0.0940154,0.94614,0.213414,0.175617,0.870469,0.370442,0.155396,0.587843,0.75828,0.170659,0.82494,0.478628,0.429812,0.446724,0.0190742,0.541585,0.225696,0.213739,0.197354,0.660933,0.299849,0.940623,0.786182,0.212641,0.814802,0.638865,0.119399,0.980816,0.180019,0.999316,0.278404,0.568899,0.642093,0.422316,0.19123,0.156733,0.399353,0.668701,0.480074,0.198966,0.725796,0.111859,0.66278,0.0314907,0.945888,0.656139,0.497301,0.0633912,0.851587,0.622634,0.908966,0.734112,0.555445,0.439655,0.1196,0.427845,0.747559,0.263575,0.589721,0.0793325,0.899225,0.378304,0.579317,0.312129,0.982184,0.211474,0.61292,0.139281,0.0900491,0.0834004,0.351301,0.48225,0.561537,0.0899139,0.643973,0.170592,0.791943,0.904658,0.61349,0.177692,0.0961678,0.351702,0.284197,0.204694,0.719579,0.570948,0.310758,0.808011,0.175255,0.273366,0.332421,0.725925,0.867584,0.569765,0.897263,0.620736,0.154318,0.102979,0.593015,0.034198,0.0474592,0.0589467,0.405594,0.211702,0.606263,0.849123,0.515589,0.304568,0.348214,0.396824,0.305082,0.377053,0.958607,0.219319,0.228557,0.934424,0.282038,0.737197,0.20815,0.587502,0.815961,0.618859,0.450751,0.976385,0.681525,0.577027,0.624087,0.213445,0.879925,0.895285,0.29462,0.165049,0.674972,0.292603,0.619747,0.356483,0.659015,0.626812,0.431497,0.25758,0.503895,0.176857,0.410319,0.876217,0.297461,0.337098,0.513115,0.695131,0.156095,0.0350589,0.116255,0.306468,0.528658,0.793498,0.69163,0.305601,0.219417,0.222315,0.925701,0.0584776,0.735151,0.0684471,0.840972,0.923417,0.949835,0.810006,0.795445,0.266514,0.709177,0.474532,0.505316,0.637103,0.675168,0.414893,0.941348,0.508834,0.968697,0.429697,0.712594,0.180259,0.739803,0.182817,0.18799,0.729107,0.807466,0.327489,0.717093,0.271795,0.0657471,0.378044,0.70872,0.242631,0.265706,0.462189,0.362741,0.182956,0.725724,0.708155,0.0497155,0.356816,0.201539,0.512258,0.598765,0.708469,0.418227,0.323194,0.721501,0.100076,0.309805,0.229567,0.904111,0.700001,0.0665028,0.402168,0.508498,0.769926,0.399272,0.035144,0.844534,0.113632,0.91203,0.601618,0.871341,0.825397,0.687549,0.259932,0.913155,0.932764,0.842922,0.454964,0.77304,0.93109,0.139532,0.318095,0.466754,0.21871,0.472431,0.94044,0.939539,0.444947,0.370642,0.493493,0.35537,0.820687,0.503439,0.152101,0.870126,0.27944,0.27149,0.283011,0.922431,0.506513,0.956653,0.174558,0.67167,0.0923082,0.249919,0.146725,0.905201,0.0405327,0.523297,0.310918,0.514981,0.436937,0.466158,0.911675,0.757253,0.298451,0.407569,0.999382,0.872547,0.38136,0.932829,0.659323,0.973664,0.963735,0.239889,0.412061,0.12693,0.103414,0.91017,0.305631,0.68487,0.246025,0.507052,0.456683,0.474224,0.599763,0.544135,0.793376,0.698571,0.294553,0.348187,0.199676,0.384379,0.582366,0.883966,0.0972505,0.588169,0.266503,0.80023,0.483991,0.100642,0.697684,0.842564,0.612222,0.663143,0.91841,0.138279,0.151668,0.889024,0.622166,0.821728,0.00395888,0.852051,0.194714,0.838311,0.0928686,0.484131,0.668386,0.575943,0.23378,0.0540653,0.480084,0.437407,0.573754,0.694894,0.0363763,0.201316,0.70446,0.26512,0.191707,0.870428,0.731604,0.073833,0.064914,0.516669,0.886747,0.262602,0.232917,0.305242,0.356915,0.721162,0.292708,0.497057,0.720578,0.39203,0.937215,0.774257,0.388485,0.0698399,0.204561,0.11955,0.047374,0.953346,0.536171,0.000994027,0.651025,0.282213,0.320839,0.674526,0.206961,0.687349,0.319852,0.598959,0.44852,0.404347,0.919572,0.747512,0.678263,0.41366,0.947668,0.883874,0.559135,0.390744,0.5254,0.930147,0.251749,0.915886,0.689801,0.0217672,0.76144,0.131317,0.466268,0.589094,0.819815,0.845598,0.837116,0.600964,0.374151,0.823074,0.626779,0.946662,0.681827,0.935598,0.0318498,0.487714,0.441129,0.194795,0.43473,0.317518,0.124821,0.875589,0.304104,0.868878,0.144894,0.042811,0.335852,0.881759,0.950326,0.906785,0.81986,0.0474893,0.710981,0.163442,0.50346,0.633087,0.223193,0.809707,0.169071,0.976894,0.728257,0.242229,0.990698,0.939986,0.31681,0.639492,0.50223,0.265831,0.635238,0.00235891,0.0368512,0.777951,0.185637,0.160168,0.217085,0.597622,0.471328,0.646393,0.332878,0.384407,0.400404,0.0742838,0.677675,0.328636,0.946037,0.494603,0.0948924,0.986222,0.00542492,0.633067,0.332705,0.69061,0.19342,0.01685,0.410693,0.520562,0.190229,0.979076,0.650078,0.110123,|0.720131,0.636829,0.364949,0.779393,0.417149,0.293818,0.144175,0.739528,0.361465,0.198182,0.616979,0.65392,0.719332,0.0485916,0.215567,0.263386,0.424527,0.734765,0.950773,0.734506,0.0916548,0.390089,0.808128,0.626703,0.810274,0.895642,0.584168,0.526192,0.889809,0.645353,0.98857,0.232147,0.389283,0.226802,0.737026,0.457577,0.571825,0.0820918,0.508012,0.485694,0.132392,0.875217,0.426234,0.546073,0.804796,0.522738,0.902708,0.042495,0.24144,0.991908,0.283544,0.918538,0.471832,0.667845,0.520596,0.380458,0.591926,0.897348,0.815215,0.266403,0.0299829,0.583556,0.250565,0.574163,0.270884,0.726176,0.64076,0.267185,0.390785,0.656551,0.157027,0.428474,0.380204,0.577717,0.330807,0.0439921,0.0183445,0.0433542,0.997071,0.714229,0.249339,0.924474,0.413025,0.00604796,0.482193,0.699107,0.0476026,0.172413,0.246795,0.310135,0.789582,0.932139,0.366102,0.902742,0.519358,0.269086,0.446844,0.539154,0.300038,0.244112,0.307774,0.961334,0.0172656,0.937519,0.344773,0.632545,0.416706,0.835003,0.599001,0.696254,0.939921,0.815189,0.0847638,0.987715,0.109949,0.119421,0.197051,0.903525,0.0455884,0.328761,0.72379,0.607876,0.062894,0.0287691,0.166378,0.264747,0.672986,0.0345145,0.03362,0.95519,0.600263,0.566209,0.80542,0.136541,0.958871,0.189115,0.858702,0.459759,0.634518,0.461918,0.295437,0.443585,0.938525,0.711698,0.764486,0.370177,0.652185,0.0982586,0.103829,0.303611,0.639845,0.914359,0.289011,0.197384,0.00843453,0.800836,0.227796,0.900226,0.594964,0.793132,0.994782,0.697186,0.440192,0.78866,0.509045,0.26933,0.357483,0.200013,0.191249,0.418615,0.0116555,0.960101,0.87632,0.304293,0.719136,0.709966,0.727054,0.674446,0.665203,0.330383,0.102253,0.310425,0.240662,0.83492,0.597403,0.412863,0.0054431,0.882571,0.122166,0.765998,0.864966,0.593935,0.900984,0.500666,0.684921,0.0822934,0.00299871,0.307186,0.177229,0.598689,0.943333,0.641103,0.226159,0.449012,0.561772,0.689111,0.256184,0.330979,0.562477,0.833143,0.163496,0.16562,0.463089,0.048093,0.920603,0.163245,0.466937,0.981662,0.364061,0.445129,0.475044,0.633871,0.151466,0.236303,0.801935,0.442506,0.962873,0.0761929,0.712921,0.0268888,0.828614,0.562774,0.30085,0.244503,0.96967,0.792043,0.622247,0.169669,0.488997,0.2074,0.520807,0.43823,0.905355,0.4401,0.382571,0.146229,0.484045,0.942174,0.52365,0.625856,0.306162,0.407468,0.639805,0.721218,0.0817688,0.172695,0.60905,0.671872,0.539529,0.590307,0.299894,0.912112,0.863723,0.215891,0.65306,0.147878,0.391083,0.231853,0.298831,0.58329,0.608334,0.305812,0.38247,0.0194705,0.13722,0.318428,0.414943,0.0524746,0.178757,0.964608,0.552225,0.0874441,0.520324,0.850671,0.0253692,0.909987,0.786732,0.465407,0.339132,0.583395,0.353107,0.773836,0.541442,0.474069,0.0964642,0.483416,0.336915,0.0308736,0.210117,0.624828,0.600927,0.522956,0.707534,0.968315,0.188867,0.0646479,0.0503368,0.362617,0.835082,0.471532,0.418939,0.806638,0.399084,0.585574,0.81653,0.645174,0.497219,0.659719,0.195393,0.993621,0.814948,0.291216,0.629014,0.625571,0.992767,0.708158,0.0129282,0.423631,0.548395,0.676871,0.779183,0.342896,0.232739,0.269441,0.11117,0.942708,0.0572304,0.498208,0.43311,0.815769,0.348157,0.817918,0.434181,0.444661,0.364633,0.737023,0.037532,0.699519,0.878999,0.382251,0.701088,0.132031,0.0464215,0.0844629,0.863903,0.135592,0.840739,0.0791968,0.90789,0.618073,0.1226,0.752952,0.0892628,0.132377,0.810586,0.371577,0.912732,0.698163,0.853391,0.63917,0.817713,0.371162,0.318809,0.669919,0.0955758,0.745327,0.639936,0.0194961,0.282802,0.389061,0.989547,0.501633,0.587761,0.970997,0.911436,0.7221,0.0353299,0.152785,0.692225,0.563618,0.0391062,0.884813,0.498844,0.452731,0.0342301,0.651359,0.776559,0.0742545,0.795084,0.350727,0.919514,0.858327,0.145736,0.744506,0.611141,0.374705,0.0476341,0.494561,0.529663,0.0353953,0.860511,0.150294,0.0236302,0.683617,0.23108,0.665809,0.899817,0.0636761,0.0868232,0.320275,0.539047,0.331089,0.364479,0.163402,0.736326,0.783301,0.474377,0.734305,0.655277,0.304728,0.241383,0.714497,0.00713092,0.824111,0.0637998,0.75062,0.74481,0.656776,0.11638,0.215738,0.393832,0.939272,0.600148,0.738585,0.496514,0.793159,0.47803,0.412652,0.68014,0.704855,0.647114,0.488845,0.485831,0.906917,0.986332,0.655558,0.629423,0.0152803,0.34188,0.472943,0.878698,0.673967,0.79881,0.639886,0.557816,0.426198,0.756384,0.124886,0.239154,0.335499,0.537587,0.400868,0.943356,0.330637,0.662435,0.0988396,0.739983,0.12666,0.634439,0.910941,0.610697,0.0806103,0.685319,0.606047,0.277407,0.898758,0.525071,0.178048,0.801675,0.164413,0.82303,0.821204,0.204173,0.80616,0.529928,0.67348,0.652446,0.118414,0.83646,0.627116,0.231806,0.566468,0.389547,0.636482,0.0793085,0.92026,0.977325,0.783429,0.239549,0.34374,0.596649,0.748611,0.816502,0.700505,0.559755,0.550961,0.781485,0.434817,0.126988,0.300285,0.624365,0.73813,0.216621,0.664541,0.147953,0.464494,0.532076,0.125148,0.192352,0.0587035,0.279041,0.72383,0.31758,0.949658,0.0205172,0.789179,0.242371,0.934618,0.646443,0.817677,0.0471964,0.775718,0.0138097,0.278282,0.0984407,0.283417,0.343654,0.160076,0.755742,0.329838,0.212254,0.52011,0.233979,0.470855,0.307953,0.459047,0.465131,0.696961,0.689858,0.990891,0.773976,0.945541,0.575723,0.545625,0.467186,0.525835,0.721583,0.931189,0.549148,0.793677,0.381442,0.534583,0.400326,0.654232,0.907115,0.339834,0.778944,0.192205,0.549985,0.726478,0.466524,0.929858,0.028701,0.569164,0.887259,0.243456,0.0481707,0.260963,0.596123,0.0102003,0.752932,0.715916,0.687138,0.781373,0.29129,0.797872,0.0766993,0.21105,0.134158,0.0825024,0.212429,0.252711,0.80422,0.513355,0.785908,0.0191664,0.998388,0.456043,0.35929,0.100465,0.213318,0.338184,0.0340877,0.100433,0.314159,0.809362,0.0316561,0.806911,0.244511,0.474165,0.372279,0.485648,0.853517,0.767088,0.810897,0.475534,0.99022,0.30236,0.396665,0.327615,0.466939,0.392818,0.251442,0.0924989,0.579758,0.253386,0.562366,0.477467,0.433111,0.92637,0.25252,0.427696,0.54024,0.939474,0.202825,0.845098,0.946247,0.684212,0.326452,0.392828,0.645289,0.628642,0.335299,0.120307,0.366456,0.849027,0.630379,0.820495,0.0541233,0.0750049,0.3099,0.324214,0.310699,0.69969,0.392371,0.515888,0.476858,0.7084,0.300919,0.89629,0.997511,0.587566,0.580374,0.572399,0.0165637,0.0353486,0.349464,0.76112,0.598084,0.608351,0.677392,0.967966,0.0857788,0.0610397,0.149872,0.193968,0.222457,0.403432,0.0962022,0.955728,0.899935,0.777686,0.832555,0.362447,0.564297,0.98514,0.552056,0.495601,0.00993395,0.715027,0.838906,0.966369,0.815809,0.822428,0.806295,0.769587,0.494619,0.69907,0.102782,0.625562,0.677163,0.08447,0.912509,0.134889,0.129826,0.131915,0.853635,0.708193,0.923934,0.935902,0.739774,0.257552,0.887246,0.640819,0.989017,0.341678,0.267617,0.700136,0.625638,0.616309,0.156547,0.245346,0.0836062,0.638775,0.461634,0.649058,0.774453,0.98457,0.492137,0.0951241,0.348609,0.140625,0.682854,0.348243,0.514235,0.42873,0.636168,0.423681,0.162348,0.349275,0.571474,0.164521,0.699787,0.972941,0.853777,0.789274,0.443331,0.95696,0.989385,0.266137,0.0469647,0.570242,0.543369,0.622865,0.390122,0.169648,0.149075,0.206391,0.434102,0.132844,0.113166,0.913219,0.737533,0.545407,0.755983,0.548912,0.687371,0.638819,0.0740759,0.912172,0.515294,0.854974,0.0957152,0.893715,0.0714503,0.672677,0.783492,0.725974,0.219216,0.585966,0.895327,0.0633487,0.768442,0.342235,0.0468628,0.700794,0.25624,0.209729,0.0594336,0.819993,0.441952,0.19523,0.637182,0.174342,0.213153,0.617907,0.537238,0.793908,0.48185,0.662592,0.599909,0.161351,0.89035,0.321835,0.334281,0.284139,0.0514463,0.184818,0.75149,0.474388,0.23669,0.193962,0.243205,0.429942,0.150481,0.646344,0.720746,0.509182,0.434267,0.387417,0.0274502,0.787644,0.0678363,0.905206,0.00403863,0.542621,0.568577,0.260934,0.974692,0.304898,0.216211,0.901038,0.393263,0.58792,0.422604,0.18717,0.781758,0.871801,0.103922,0.556286,0.29484,0.0165803,0.950959,0.0381423,0.210639,0.450361,0.0347729,0.949055,0.70211,0.48008,0.906544,0.918942,0.33082,0.59395,0.936494,0.0796601,0.0848365,0.409532,0.728003,0.20313,0.300237,0.0574204,0.841702,0.762005,0.450713,0.551683,0.835291,0.0205201,0.893529,0.000546575,0.321567,0.79841,0.881237,0.604099,0.598843,0.0713868,0.667049,0.923137,0.576992,0.572515,0.560375,0.355846,0.506743,0.96302,0.514324,0.0329435,0.961865,0.974894,0.0759147,0.421881,0.562476,0.292924,0.267024,0.529639,0.33524,0.439447,0.569303,0.500652,0.57589,0.253137,0.395001,0.743626,0.357508,0.285895,0.398179,0.250249,0.126877,0.745311,0.0942565,0.645644,0.46719,0.543912,0.34141,0.871259,0.302255,0.207186,0.874646,0.854695,0.440612,0.819068,0.947017,0.57797,0.222652,0.376381,0.500664,0.843788,0.963849,0.861938,0.479609,0.0857481,0.417311,0.768562,0.220674,0.145207,0.421545,0.392984,0.0507154,0.115718,0.114773,0.239047,0.690298,0.174377,0.886381,0.0289487,0.879712,0.575454,0.665399,0.209611,0.293013,0.0807173,0.0140535,0.956982,0.589732,0.11935,0.375053,0.350809,0.942563,0.454328,0.436286,0.701817,0.0185966,0.763529,0.968794,0.46839,0.00949913,0.104622,0.313063,0.713717,0.782924,0.34477,0.404079,0.371524,0.994017,0.993114,0.106778,0.507587,0.361322,0.0949697,0.261986,0.80183,0.108263,0.831266,0.774496,0.509884,0.759457,0.0980881,0.172465,0.859448,0.835844,0.598959,|0.500312,0.84751,0.995399,0.252751,0.261132,0.0839147,0.124979,0.367484,0.323881,0.543084,0.633771,0.163241,0.147572,0.593392,0.499662,0.412247,0.3193,0.257247,0.770021,0.0351784,0.573996,0.170982,0.604823,0.158436,0.152496,0.898867,0.976821,0.29105,0.264604,0.485387,0.424946,0.193753,0.93307,0.481386,0.271459,0.405505,0.415554,0.643112,0.613779,0.227093,0.169097,0.359135,0.352841,0.302359,0.398228,0.163159,0.198613,0.204455,0.881683,0.00798231,0.633518,0.549869,0.0504444,0.811442,0.891584,0.733992,0.394374,0.146122,0.267401,0.620446,0.897195,0.46221,0.946604,0.427868,0.0864223,0.448742,0.165037,0.180423,0.917321,0.142192,0.628089,0.73867,0.0729747,0.0396384,0.339081,0.442329,0.919528,0.408283,0.306883,0.968586,0.667147,0.915205,0.274016,0.848153,0.793686,0.492719,0.760812,0.114412,0.363952,0.683153,0.745847,0.448157,0.16265,0.0120203,0.759584,0.694822,0.798315,0.298949,0.850276,0.745177,0.450714,0.0522979,0.742487,0.756778,0.256149,0.405993,0.949467,0.471245,0.670909,0.38901,0.9168,0.441588,0.511981,0.574352,0.228353,0.515176,0.155947,0.734882,0.336629,0.281744,0.0824423,0.787898,0.97019,0.470691,0.472414,0.445078,0.280127,0.301119,0.99967,0.919749,0.0973628,0.679819,0.218079,0.810466,0.422946,0.369374,0.72498,0.43455,0.353727,0.202545,0.408855,0.59459,0.166411,0.760446,0.798158,0.547149,0.17519,0.651912,0.212113,0.428097,0.523,0.149791,0.671404,0.209453,0.0215164,0.147059,0.373711,0.100814,0.340949,0.428035,0.0868286,0.903373,0.912594,0.888802,0.404699,0.14638,0.933363,0.403422,0.649009,0.0671959,0.578795,0.0604082,0.00489765,0.509385,0.392982,0.347517,0.813002,0.155484,0.762284,0.441814,0.578956,0.623875,0.51204,0.59268,0.464371,0.65923,0.0494373,0.454399,0.968529,0.598408,0.934316,0.921064,0.556744,0.247249,0.988918,0.568307,0.319314,0.568065,0.0570852,0.129025,0.28629,0.0830057,0.491641,0.758237,0.452212,0.619961,0.746651,0.794876,0.0502692,0.860627,0.159424,0.900498,0.303225,0.643328,0.492772,0.492267,0.0454374,0.522104,0.588408,0.465426,0.176366,0.312589,0.299506,0.970906,0.653756,0.441215,0.396366,0.963242,0.448216,0.848704,0.652168,0.747504,0.6103,0.677751,0.511332,0.0639676,0.845352,0.0859997,0.653825,0.24892,0.769131,0.159961,0.53701,0.425568,0.0144966,0.240935,0.161257,0.965371,0.101689,0.65452,0.385554,0.401475,0.922967,0.870043,0.199254,0.298683,0.471882,0.176646,0.026146,0.695705,0.442238,0.449335,0.820921,0.218755,0.190576,0.976626,0.798551,0.695282,0.946345,0.921616,0.746588,0.329463,0.73603,0.191038,0.805004,0.382878,0.641051,0.543456,0.0835102,0.174793,0.398632,0.11237,0.282652,0.455165,0.423238,0.417081,0.645045,0.225866,0.666097,0.622701,0.518375,0.978037,0.762297,0.633334,0.90864,0.956877,0.27583,0.415193,0.363915,0.901704,0.782982,0.106083,0.253705,0.828211,0.757939,0.117517,0.420161,0.60336,0.627176,0.411699,0.0087136,0.105608,0.219852,0.680566,0.294031,0.947654,0.471848,0.195511,0.00441635,0.457515,0.0145048,0.990392,0.699609,0.847834,0.691436,0.306294,0.744443,0.57397,0.570866,0.968261,0.631365,0.0290641,0.437228,0.108879,0.108993,0.901295,0.455335,0.29163,0.197748,0.35359,0.979739,0.804719,0.624986,0.315544,0.906683,0.37803,0.939888,0.70407,0.250734,0.803907,0.862001,0.192806,0.212309,0.290293,0.958665,0.913216,0.217137,0.72784,0.456424,0.323284,0.0970598,0.0676708,0.226122,0.97375,0.892839,0.0394232,0.666459,0.455722,0.68473,0.186026,0.398364,0.913508,0.337319,0.31242,0.379218,0.190757,0.584474,0.422754,0.496847,0.262088,0.981309,0.483351,0.836015,0.318436,0.324198,0.858796,0.941836,0.231375,0.488223,0.980184,0.498001,0.758352,0.52084,0.662855,0.882055,0.406658,0.200985,0.443132,0.822553,0.590979,0.576707,0.918402,0.258453,0.921787,0.903321,0.876622,0.211475,0.900619,0.786766,0.193486,0.732897,0.671181,0.552736,0.427475,0.993408,0.234314,0.414921,0.0762203,0.695294,0.564621,0.112099,0.338707,0.450422,0.406966,0.180583,0.417446,0.945221,0.0629171,0.103079,0.608434,0.746149,0.588053,0.714134,0.97332,0.465415,0.248707,0.591076,0.339765,0.929082,0.282282,0.139194,0.568447,0.711074,0.404959,0.658493,0.643765,0.78144,0.831179,0.310248,0.0160687,0.957671,0.311328,0.319117,0.740444,0.878615,0.341545,0.366556,0.0524598,0.734539,0.962045,0.617289,0.525138,0.632412,0.960016,0.149349,0.0421574,0.309708,0.473444,0.844504,0.856493,0.932553,0.0705457,0.650093,0.996163,0.193411,0.994061,0.185559,0.43482,0.546533,0.378113,0.411829,0.430484,0.89439,0.948389,0.473345,0.256174,0.893928,0.648212,0.36576,0.409807,0.931276,0.317588,0.92597,0.887341,0.128175,0.95674,0.85191,0.917755,0.131232,0.0705806,0.815971,0.650726,0.163193,0.572068,0.728704,0.881677,0.000392556,0.65003,0.362357,0.13279,0.0424227,0.274354,0.932815,0.924181,0.901147,0.765375,0.981836,0.6475,0.271192,0.483084,0.409537,0.400829,0.797574,0.338249,0.660342,0.14413,0.0833137,0.967489,0.432902,0.829627,0.240586,0.399765,0.46716,0.497288,0.444636,0.203076,0.0474493,0.804136,0.752448,0.952402,0.559,0.87046,0.040329,0.702219,0.214411,0.515936,0.684392,0.827536,0.463198,0.0388076,0.626926,0.882005,0.471045,0.658999,0.577612,0.829441,0.39341,0.374878,0.00683141,0.554276,0.65543,0.814729,0.0888174,0.464106,0.118474,0.0804957,0.1433,0.908608,0.605269,0.37083,0.180632,0.597168,0.750428,0.824762,0.97873,0.538043,0.585697,0.583632,0.95856,0.102092,0.114073,0.70217,0.172569,0.111189,0.917699,0.555944,0.797904,0.20825,0.490452,0.660945,0.555586,0.935874,0.327162,0.614866,0.923771,0.68687,0.696473,0.232649,0.517103,0.128139,0.548909,0.574768,0.032486,0.276235,0.331132,0.694223,0.344667,0.372501,0.428296,0.499612,0.898218,0.573741,0.976763,0.0310596,0.82936,0.496341,0.391708,0.84203,0.453521,0.77181,0.398007,0.600754,0.0663904,0.246196,0.343917,0.800436,0.549933,0.0530304,0.673657,0.254488,0.731214,0.854877,0.19241,0.589597,0.663038,0.173661,0.169296,0.945197,0.967364,0.434418,0.00711602,0.00866884,0.404717,0.626226,0.376597,0.0630464,0.678537,0.96773,0.806663,0.978082,0.745825,0.665782,0.551294,0.352058,0.454933,0.866093,0.244048,0.285865,0.446251,0.901427,0.931291,0.920776,0.941221,0.964264,0.545516,0.388484,0.390084,0.735219,0.858374,0.443559,0.303753,0.571714,0.0640414,0.43118,0.654968,0.0543659,0.664282,0.0160179,0.0390487,0.200684,0.0509394,0.0800864,0.126467,0.62655,0.308081,0.911789,0.617275,0.503441,0.850424,0.725177,0.82525,0.464949,0.94874,0.680949,0.423594,0.952539,0.276241,0.0407817,0.524671,0.924404,0.330196,0.727818,0.0829076,0.520516,0.736626,0.107291,0.653019,0.992648,0.406198,0.00820899,0.0845199,0.125003,0.471266,0.660448,0.897251,0.977105,0.230893,0.80604,0.86628,0.774627,0.909257,0.923918,0.138433,0.625028,0.402671,0.0383317,0.916867,0.501684,0.550184,0.796233,0.986689,0.92333,0.923209,0.0572909,0.216094,0.447875,0.795205,0.471708,0.363931,0.444461,0.452455,0.431707,0.0821555,0.902247,0.899076,0.269498,0.0321657,0.936259,0.75532,0.984877,0.630374,0.43921,0.632777,0.32497,0.468726,0.841623,0.848834,0.872908,0.521783,0.387787,0.782632,0.664823,0.129401,0.62891,0.966838,0.366481,0.891899,0.922109,0.031554,0.980572,0.906993,0.865705,0.160417,0.472556,0.488191,0.443649,0.0204212,0.0581624,0.375607,0.76863,0.10471,0.534208,0.109918,0.22769,0.142511,0.282033,0.657204,0.35017,0.266213,0.719842,0.585261,0.821534,0.197622,0.776679,0.396063,0.180895,0.324603,0.927678,0.00507665,0.0280063,0.282527,0.537434,0.937104,0.152392,0.382377,0.225466,0.057368,0.549749,0.437656,0.793181,0.184279,0.149459,0.264667,0.440806,0.70277,0.35983,0.368658,0.333368,0.336451,0.392785,0.403654,0.394373,0.466667,0.912658,0.113789,0.518108,0.264503,0.538571,0.9839,0.543241,0.229074,0.325028,0.707887,0.788654,0.192553,0.388767,0.664237,0.852791,0.876708,0.165213,0.0975558,0.210408,0.475579,0.833045,0.875389,0.636853,0.187864,0.506531,0.256037,0.263633,0.188577,0.00291121,0.673539,0.894811,0.772398,0.144195,0.232943,0.0947911,0.0900706,0.233426,0.770876,0.142845,0.339588,0.196159,0.193564,0.502146,0.00388694,0.557714,0.352468,0.316972,0.117504,0.867491,0.246552,0.00762028,0.451424,0.791457,0.449916,0.263394,0.226404,0.359134,0.884155,0.396246,0.207834,0.309457,0.104214,0.80539,0.883772,0.925567,0.475736,0.268793,0.144756,0.303331,0.458801,0.344689,0.691294,0.846593,0.136077,0.525027,0.965984,0.146561,0.353248,0.0593684,0.0668388,0.975298,0.446723,0.738381,0.646697,0.0105838,0.0431699,0.131873,0.702178,0.873603,0.0789971,0.745752,0.48159,0.517242,0.579997,0.230608,0.660451,0.717262,0.857266,0.999781,0.0727043,0.456457,0.591003,0.163202,0.360189,0.730037,0.59881,0.427565,0.506858,0.159612,0.531027,0.833465,0.23356,0.16767,0.201586,0.223808,0.477703,0.948305,0.826602,0.0877467,0.276236,0.34443,0.674618,0.613099,0.396515,0.887412,0.513679,0.369243,0.887171,0.034669,0.281464,0.908013,0.964535,0.639229,0.0313246,0.71535,0.716976,0.448759,0.257876,0.338755,0.411423,0.777452,0.536002,0.2505,0.514519,0.0983632,0.842817,0.704682,0.670782,0.142258,0.305729,0.057169,0.494542,0.582942,0.197764,0.104736,0.954002,0.186703,0.825246,0.45298,0.629743,0.296195,0.35612,0.95113,0.343135,0.143836,0.104077,0.192334,0.968633,0.583391,0.365062,0.503612,0.732039,0.989553,0.0917239,0.168277,0.384882,0.605818,|0.474628,0.855824,0.692299,0.0202338,0.686539,0.471897,0.198065,0.110685,0.470541,0.390733,0.372151,0.60323,0.177129,0.528124,0.42751,0.85354,0.652744,0.776338,0.0539746,0.881221,0.75569,0.0984659,0.347491,0.424261,0.788496,0.274065,0.399995,0.642093,0.512345,0.523589,0.409733,0.159739,0.626956,0.0840484,0.96503,0.359973,0.294563,0.00938553,0.117191,0.844409,0.113836,0.122549,0.810081,0.996158,0.0139853,0.665621,0.646713,0.399692,0.0989287,0.310574,0.328867,0.167853,0.523422,0.409474,0.177043,0.904774,0.62601,0.368962,0.188674,0.632283,0.674785,0.853422,0.56949,0.631859,0.0617096,0.154836,0.572766,0.684612,0.166604,0.540554,0.399443,0.316977,0.597918,0.671176,0.447425,0.638861,0.679961,0.0269944,0.126382,0.460363,0.352727,0.813495,0.410515,0.634186,0.922179,0.953992,0.819895,0.0442886,0.0416127,0.161531,0.878283,0.829116,0.428036,0.474877,0.16724,0.852554,0.960854,0.175799,0.172386,0.113443,0.683323,0.99731,0.989716,0.888375,0.567371,0.486596,0.165873,0.898708,0.502182,0.150408,0.681016,0.146097,0.698025,0.121861,0.174797,0.806053,0.691008,0.739924,0.87116,0.662912,0.64273,0.0622545,0.494135,0.100374,0.663258,0.568624,0.639833,0.330505,0.296111,0.358785,0.92635,0.574174,0.427501,0.789507,0.97823,0.386346,0.269574,0.449439,0.883383,0.845453,0.862681,0.576773,0.724554,0.192456,0.159571,0.163306,0.340943,0.485141,0.00426215,0.163572,0.256087,0.464492,0.730561,0.886222,0.542237,0.136457,0.813538,0.732773,0.545858,0.303173,0.824796,0.661051,0.737896,0.449628,0.45729,0.906076,0.635434,0.757387,0.192815,0.915479,0.0504624,0.121164,0.51573,0.988996,0.632013,0.368239,0.42571,0.167458,0.658702,0.597925,0.295517,0.656515,0.599048,0.237701,0.383047,0.546877,0.814787,0.208535,0.101563,0.297205,0.717622,0.0725619,0.250071,0.271261,0.709761,0.551871,0.00547534,0.720212,0.272356,0.968199,0.698668,0.466482,0.34395,0.335423,0.85539,0.0911428,0.264917,0.0442337,0.480289,0.633635,0.873414,0.189035,0.0848228,0.0573188,0.24812,0.579367,0.846611,0.919162,0.597078,0.498113,0.0424607,0.77838,0.963264,0.409522,0.887726,0.952242,0.147458,0.206475,0.985621,0.98598,0.421991,0.582118,0.210017,0.239686,0.565003,0.146177,0.45791,0.428701,0.983881,0.126488,0.931475,0.497282,0.780562,0.317352,0.617331,0.201687,0.214348,0.39324,0.585613,0.762629,0.575325,0.133926,0.899327,0.453119,0.784931,0.981907,0.448999,0.550296,0.727625,0.948553,0.144717,0.67165,0.893922,0.704339,0.689779,0.0243389,0.940982,0.602579,0.1604,0.211199,0.977541,0.852727,0.232633,0.816442,0.825858,0.175752,0.309907,0.439731,0.403565,0.8414,0.219018,0.903786,0.823836,0.73403,0.385365,0.581916,0.66482,0.993144,0.561506,0.259744,0.228383,0.503286,0.423413,0.0414292,0.329373,0.444999,0.60879,0.991928,0.660435,0.780032,0.600099,0.642112,0.182426,0.134067,0.911199,0.569644,0.725932,0.264545,0.0319256,0.664102,0.149138,0.790115,0.764239,0.941979,0.828588,0.240804,0.965059,0.0817301,0.767895,0.156355,0.754319,0.162718,0.965631,0.481748,0.603151,0.0880399,0.239637,0.143641,0.0940454,0.105722,0.83646,0.903422,0.118689,0.0901619,0.931495,0.298032,0.0703675,0.23839,0.0581892,0.650441,0.730652,0.426758,0.00458348,0.889596,0.742187,0.75702,0.366135,0.0691443,0.530041,0.174237,0.310164,0.870949,0.258916,0.801563,0.565122,0.534313,0.0574623,0.690392,0.462987,0.0058226,0.110238,0.584856,0.929024,0.459236,0.634841,0.271649,0.99781,0.872639,0.621351,0.785386,0.817998,0.104731,0.802232,0.297834,0.142424,0.802868,0.797894,0.419869,0.53886,0.32878,0.0041905,0.630309,0.711723,0.451787,0.144056,0.191904,0.279032,0.358099,0.261246,0.752902,0.24347,0.44431,0.0471691,0.288378,0.438254,0.288699,0.884656,0.303039,0.761211,0.556986,0.184948,0.767964,0.106527,0.208354,0.64754,0.158731,0.0460123,0.754342,0.308468,0.701864,0.620797,0.637107,0.787767,0.55751,0.976453,0.269116,0.0802976,0.494294,0.952426,0.236222,0.96512,0.19142,0.683322,0.085915,0.50466,0.401908,0.307084,0.85285,0.72854,0.29194,0.428207,0.034647,0.969669,0.956681,0.356583,0.77121,0.764356,0.352191,0.311225,0.350424,0.537264,0.0885083,0.510616,0.359268,0.823841,0.169754,0.108481,0.296702,0.832869,0.959489,0.143459,0.841721,0.777052,0.648416,0.0340863,0.39491,0.517749,0.103889,0.211728,0.364283,0.717274,0.479832,0.733747,0.907277,0.0240528,0.426193,0.780301,0.586249,0.894916,0.886679,0.102039,0.53171,0.437044,0.140016,0.524237,0.679309,0.295521,0.107836,0.548196,0.907658,0.359913,0.231055,0.0268955,0.686913,0.151998,0.362876,0.33513,0.682001,0.181292,0.981405,0.101915,0.0388698,0.849442,0.996654,0.425025,0.549474,0.502466,0.0585576,0.187019,0.0853165,0.880219,0.640193,0.206615,0.331686,0.670528,0.440048,0.706127,0.20187,0.501956,0.0646713,0.97657,0.362109,0.77112,0.44098,0.673039,0.90037,0.0846193,0.418643,0.544431,0.322509,0.608811,0.172119,0.0130466,0.651476,0.692861,0.95628,0.322205,0.608718,0.90167,0.419562,0.292075,0.676662,0.471117,0.192689,0.963326,0.603483,0.559627,0.169621,0.511569,0.483154,0.855596,0.466088,0.397467,0.94788,0.584441,0.933447,0.28767,0.575103,0.857115,0.583088,0.352598,0.811574,0.980803,0.101638,0.788375,0.551672,0.459536,0.38625,0.660502,0.610757,0.959729,0.868778,0.313307,0.426829,0.0108373,0.466771,0.772396,0.354686,0.395738,0.536878,0.0102582,0.184937,0.516099,0.713386,0.478763,0.452406,0.978408,0.129819,0.968939,0.652003,0.427506,0.703519,0.370737,0.912887,0.190024,0.551234,0.074021,0.0514558,0.990449,0.35241,0.677701,0.943411,0.246145,0.745929,0.772867,0.203731,0.699115,0.186848,0.130446,0.931566,0.110748,0.98446,0.588969,0.863563,0.302222,0.866117,0.643308,0.760496,0.954396,0.369976,0.495344,0.473722,0.494591,0.791591,0.946828,0.884653,0.146872,0.183125,0.0163627,0.0351998,0.609104,0.519106,0.697693,0.112478,0.628336,0.700893,0.837769,0.374532,0.39164,0.304127,0.734103,0.320437,0.997248,0.115708,0.304772,0.629448,0.0233173,0.98657,0.81903,0.51112,0.196478,0.805895,0.243489,0.897632,0.747293,0.263132,0.96138,0.103916,0.175749,0.0262201,0.0666569,0.223979,0.22914,0.734515,0.83701,0.956353,0.0966681,0.648606,0.258019,0.618746,0.613644,0.691557,0.718261,0.889187,0.364701,0.868878,0.690815,0.835034,0.91227,0.813705,0.663732,0.579637,0.426949,0.928827,0.301126,0.626045,0.929148,0.329062,0.0701566,0.65575,0.55726,0.240219,0.0664575,0.0493163,0.0382874,0.421551,0.710764,0.261497,0.601013,0.98614,0.7439,0.0606285,0.643762,0.657261,0.645572,0.234379,0.7695,0.696543,0.286153,0.64051,0.433409,0.507975,0.0152124,0.070621,0.829435,0.134231,0.255275,0.712208,0.269515,0.913402,0.14639,0.76698,0.554558,0.131352,0.759033,0.415416,0.108426,0.441077,0.3132,0.206948,0.563176,0.883849,0.518188,0.531825,0.397609,0.73506,0.880107,0.469058,0.201309,0.386266,0.994843,0.211774,0.42349,0.138501,0.245762,0.812394,0.195006,0.811415,0.163199,0.10133,0.421466,0.235098,0.745188,0.516458,0.776946,0.45269,0.570199,0.992682,0.699185,0.901301,0.862099,0.215433,0.284358,0.965933,0.621596,0.137659,0.107027,0.0547345,0.387055,0.65929,0.0716845,0.202894,0.715721,0.497024,0.224789,0.474187,0.630635,0.992688,0.589683,0.540823,0.410309,0.369933,0.104988,0.502247,0.080541,0.743056,0.526675,0.0984527,0.385316,0.097435,0.852546,0.705366,0.64666,0.135002,0.880655,0.234438,0.0322974,0.547466,0.317885,0.492074,0.418188,0.633344,0.595369,0.883386,0.317808,0.69811,0.0301121,0.826438,0.461072,0.30679,0.359415,0.851192,0.791603,0.636498,0.54079,0.784666,0.636847,0.705847,0.683146,0.0141768,0.269201,0.00526297,0.590464,0.830193,0.760507,0.861048,0.2248,0.769274,0.580011,0.622786,0.256754,0.886699,0.529979,0.631206,0.15342,0.184245,0.437822,0.0399999,0.535996,0.471977,0.859317,0.678111,0.888638,0.576091,0.390726,0.203029,0.750504,0.264934,0.967897,0.834074,0.166057,0.218192,0.360427,0.93665,0.160336,0.68163,0.354146,0.738907,0.678952,0.716609,0.344927,0.360312,0.716014,0.470654,0.34947,0.776099,0.159679,0.45865,0.904469,0.700769,0.0844325,0.41433,0.376169,0.51235,0.480105,0.167042,0.981814,0.382009,0.201199,0.649963,0.940914,0.309615,0.178637,0.191179,0.165169,0.889254,0.672672,0.538727,0.236084,0.340811,0.556319,0.635037,0.204929,0.914165,0.731168,0.624682,0.464059,0.226052,0.266477,0.264739,0.827091,0.758034,0.927127,0.863863,0.715601,0.967604,0.573827,0.671107,0.514949,0.786388,0.519515,0.32333,0.661359,0.130418,0.33015,0.279321,0.317706,0.243389,0.474591,0.443822,0.4059,0.245934,0.389334,0.694956,0.25902,0.368331,0.479221,0.88726,0.514168,0.769512,0.0994987,0.277084,0.100425,0.26095,0.620157,0.710665,0.60578,0.585856,0.338859,0.928822,0.548693,0.472893,0.71073,0.24066,0.807056,0.658919,0.315281,0.890333,0.59307,0.0987498,0.149517,0.152738,0.301487,0.110036,0.171618,0.573196,0.856958,0.651833,0.282466,0.068314,0.0892957,0.12368,0.960848,0.792795,0.990545,0.544346,0.670726,0.989917,0.284383,0.125075,0.375114,0.887327,0.0206743,0.76153,0.655283,0.487471,0.814364,0.210543,0.135833,0.673598,0.702151,0.407754,0.5499,0.456158,0.675432,0.777645,0.758994,0.516824,0.607789,0.765543,0.579759,0.967882,0.472907,0.539621,0.860099,0.475225,0.777731,0.230305,0.916615,0.364928,0.751598,0.0305475,0.91401,0.300451,0.42917,0.998918,0.228777,0.415145,0.0196013,0.972353,|0.771708,0.142597,0.172585,0.119111,0.00655937,0.829096,0.910374,0.504462,0.894627,0.0850376,0.20467,0.427492,0.681749,0.431149,0.300669,0.653381,0.38871,0.205649,0.983833,0.518813,0.876298,0.471382,0.519349,0.709402,0.96333,0.983766,0.313982,0.041855,0.674141,0.968151,0.424347,0.0928416,0.207081,0.987761,0.558443,0.17322,0.238537,0.435775,0.423813,0.769284,0.434616,0.778314,0.853169,0.868397,0.740882,0.920491,0.570295,0.4285,0.53376,0.0251147,0.787239,0.26354,0.906641,0.520344,0.624803,0.0791192,0.000708282,0.0598052,0.609034,0.370684,0.06151,0.832648,0.731199,0.665791,0.680571,0.0945589,0.650984,0.667547,0.905288,0.998197,0.156355,0.566596,0.429552,0.843303,0.889881,0.604649,0.68021,0.893604,0.230448,0.47489,0.36541,0.204145,0.993856,0.917779,0.858028,0.904335,0.323724,0.331245,0.715111,0.916882,0.663199,0.808362,0.0294793,0.197112,0.271816,0.786313,0.153156,0.131743,0.412298,0.251992,0.132662,0.372445,0.441911,0.429948,0.57997,0.986487,0.592893,0.162164,0.987096,0.950139,0.53073,0.336998,0.564862,0.36082,0.513761,0.550282,0.552992,0.962215,0.21479,0.777486,0.207804,0.672244,0.576339,0.846322,0.978037,0.243632,0.879734,0.024566,0.579166,0.114077,0.981012,0.814968,0.495278,0.168987,0.0404372,0.660822,0.565853,0.0537612,0.0319123,0.436285,0.774584,0.383772,0.32185,0.575184,0.152978,0.319982,0.590848,0.182265,0.103308,0.862935,0.293004,0.398187,0.573176,0.103569,0.416349,0.816729,0.847295,0.00363368,0.213918,0.560951,0.0204248,0.329779,0.413431,0.33502,0.277414,0.892118,0.617769,0.93023,0.71233,0.27872,0.445358,0.749997,0.579078,0.415535,0.477735,0.623648,0.0222702,0.875183,0.300101,0.992164,0.569805,0.850443,0.467492,0.1315,0.931958,0.803839,0.881625,0.0649844,0.991474,0.93618,0.86687,0.628866,0.407823,0.470163,0.370372,0.660809,0.677935,0.561694,0.160409,0.999045,0.24405,0.00976962,0.551731,0.758962,0.41705,0.38759,0.712658,0.995027,0.744325,0.927582,0.351028,0.276962,0.716846,0.788778,0.580254,0.718656,0.0589522,0.604956,0.557549,0.226431,0.362221,0.736145,0.93629,0.134669,0.861579,0.195111,0.103366,0.161131,0.287381,0.922592,0.973607,0.900595,0.279396,0.0379818,0.0247874,0.437039,0.664217,0.848291,0.217417,0.444377,0.573507,0.608569,0.500965,0.254544,0.951563,0.339812,0.478794,0.206093,0.537493,0.558413,0.285527,0.455016,0.0451394,0.420989,0.0830238,0.578031,0.395394,0.669264,0.125074,0.226828,0.133856,0.366175,0.700656,0.0576216,0.425622,0.0170039,0.380725,0.888086,0.0507345,0.60804,0.603724,0.193783,0.296644,0.580254,0.0267693,0.206595,0.752586,0.269162,0.210777,0.230177,0.201088,0.666076,0.108067,0.0622307,0.115987,0.571444,0.31618,0.684828,0.215424,0.897278,0.793556,0.971865,0.980058,0.848446,0.749715,0.646652,0.984805,0.278129,0.408355,0.918018,0.456913,0.471671,0.648565,0.752535,0.943358,0.888864,0.120184,0.869867,0.531458,0.138789,0.527453,0.62121,0.456019,0.58682,0.802577,0.70384,0.786522,0.532837,0.0776128,0.768234,0.149241,0.447972,0.675749,0.625585,0.402785,0.989689,0.701599,0.113706,0.531492,0.517721,0.666571,0.0712064,0.669491,0.149626,0.862194,0.0655866,0.345522,0.666578,0.776893,0.928378,0.533208,0.939121,0.0305322,0.500708,0.0758732,0.584585,0.671581,0.350535,0.0828187,0.595435,0.854997,0.807731,0.509494,0.345177,0.691576,0.802686,0.174515,0.505614,0.214344,0.950587,0.863086,0.324523,0.9049,0.537264,0.13215,0.829071,0.307478,0.798765,0.90701,0.993464,0.128599,0.0266539,0.155943,0.101639,0.759412,0.226261,0.924639,0.205562,0.791202,0.729491,0.332261,0.2213,0.185429,0.74193,0.492104,0.0335797,0.112512,0.420978,0.995348,0.43094,0.959232,0.564984,0.186947,0.922442,0.303409,0.0918275,0.112827,0.379898,0.526475,0.171203,0.660091,0.669976,0.645206,0.000739753,0.542781,0.191408,0.55579,0.349538,0.486136,0.998282,0.702192,0.864577,0.46663,0.402457,0.45729,0.959549,0.64432,0.109346,0.941492,0.812096,0.662263,0.128142,0.909461,0.308594,0.0335679,0.259557,0.540041,0.894161,0.80877,0.365168,0.595099,0.69125,0.819922,0.671266,0.889668,0.272812,0.118501,0.491192,0.121774,0.378102,0.679803,0.474699,0.985674,0.167882,0.235513,0.717262,0.341206,0.397126,0.352701,0.383826,0.831637,0.726992,0.237681,0.627446,0.742006,0.115682,0.994262,0.397122,0.475639,0.694988,0.727518,0.210671,0.139296,0.702212,0.0680465,0.696355,0.827772,0.0152261,0.278579,0.191872,0.317157,0.926685,0.588536,0.340401,0.18984,0.970481,0.609702,0.214555,0.91932,0.0251531,0.466861,0.82106,0.52754,0.795016,0.939493,0.124111,0.709046,0.700771,0.0152301,0.633724,0.499884,0.213965,0.591759,0.964576,0.682402,0.706236,0.328321,0.610371,0.0183997,0.118501,0.978629,0.949636,0.989355,0.929641,0.158037,0.679164,0.674654,0.463278,0.305302,0.824372,0.412282,0.85989,0.556764,0.912575,0.558485,0.0371578,0.168243,0.922331,0.760204,0.0913705,0.179931,0.728895,0.245374,0.541014,0.00394881,0.981662,0.389306,0.0930158,0.81453,0.248257,0.349335,0.115273,0.747528,0.865007,0.875636,0.200025,0.142073,0.826385,0.516457,0.489389,0.690099,0.71744,0.447061,0.320178,0.739305,0.229388,0.936453,0.857248,0.898539,0.377231,0.314789,0.250397,0.445928,0.145702,0.4051,0.851163,0.465066,0.719744,0.284512,0.559621,0.848719,0.0753423,0.0272672,0.433864,0.442524,0.392839,0.42508,0.735583,0.696569,0.638813,0.10284,0.628879,0.29398,0.120981,0.837592,0.621378,0.283497,0.154048,0.157556,0.844202,0.267596,0.799467,0.546656,0.607404,0.931323,0.308905,0.288237,0.525731,0.562662,0.316536,0.0740697,0.739517,0.428866,0.545101,0.847278,0.257204,0.118928,0.642451,0.137596,0.354194,0.2631,0.643586,0.397015,0.845695,0.27613,0.956611,0.455253,0.882338,0.587735,0.532685,0.059787,0.335818,0.229442,0.246553,0.112658,0.526748,0.750501,0.17515,0.0950353,0.513805,0.568615,0.302484,0.783026,0.592375,0.591648,0.587443,0.0172652,0.655695,0.548031,0.634711,0.383097,0.520333,0.889057,0.243833,0.831631,0.680352,0.0136659,0.796606,0.310411,0.127281,0.428951,0.937922,0.481021,0.285794,0.609993,0.345265,0.434466,0.950057,0.306465,0.060087,0.259718,0.393633,0.117868,0.976905,0.90601,0.786011,0.104648,0.567361,0.429035,0.00644577,0.152098,0.0449458,0.724791,0.219151,0.236105,0.291286,0.565312,0.706107,0.701934,0.502723,0.743477,0.381883,0.763575,0.330671,0.714941,0.656104,0.523127,0.0194836,0.612768,0.831543,0.337491,0.835899,0.999359,0.929978,0.956788,0.786566,0.93174,0.395901,0.135445,0.0877923,0.877325,0.721629,0.185789,0.500978,0.37732,0.34023,0.632761,0.181444,0.374764,0.317113,0.618478,0.987144,0.117521,0.112194,0.0962244,0.609602,0.368618,0.429474,0.152315,0.44819,0.930865,0.192543,0.373074,0.218094,0.235175,0.122105,0.369772,0.330183,0.285214,0.273495,0.833062,0.675303,0.579658,0.613241,0.347993,0.243314,0.370552,0.153678,0.0131209,0.0146461,0.103939,0.0292762,0.889202,0.711671,0.7319,0.255895,0.729247,0.596632,0.272551,0.320238,0.739023,0.668459,0.196594,0.846313,0.705355,0.458961,0.273287,0.212758,0.325792,0.885047,0.110381,0.867681,0.187216,0.739673,0.808154,0.976347,0.622935,0.19575,0.228192,0.829438,0.79875,0.545687,0.276238,0.919828,0.609034,0.721143,0.949335,0.339638,0.587562,0.304196,0.990417,0.433441,0.461066,0.0746919,0.855124,0.238389,0.0991806,0.331944,0.125549,0.496565,0.378569,0.614008,0.879102,0.130271,0.292871,0.983278,0.0120141,0.211915,0.446542,0.763061,0.602495,0.921006,0.567169,0.188017,0.358359,0.398144,0.723831,0.734239,0.108122,0.898817,0.430385,0.758762,0.703052,0.893248,0.0559862,0.640734,0.293582,0.2797,0.828147,0.256498,0.641001,0.949898,0.619664,0.0243754,0.237749,0.444264,0.904945,0.152012,0.329998,0.782592,0.603858,0.841011,0.686555,0.99836,0.470761,0.637186,0.316452,0.407738,0.836707,0.741402,0.693775,0.750102,0.386777,0.498629,0.389076,0.990113,0.874179,0.738117,0.616993,0.470516,0.348606,0.632707,0.412162,0.481607,0.361388,0.188831,0.818757,0.455325,0.309087,0.93514,0.299949,0.161027,0.738883,0.0789282,0.522323,0.43429,0.945751,0.734954,0.133293,0.788281,0.292539,0.744992,0.18816,0.0692739,0.260153,0.169556,0.328171,0.980519,0.0901552,0.221359,0.593196,0.246797,0.104429,0.443007,0.690219,0.820011,0.0559103,0.801899,0.418571,0.0142341,0.168828,0.333016,0.778001,0.0783162,0.923301,0.85666,0.723676,0.154345,0.856171,0.872409,0.648184,0.192205,0.453977,0.357107,0.677265,0.906715,0.167467,0.411688,0.564696,0.959696,0.0779019,0.194224,0.681715,0.420989,0.872854,0.427893,0.37839,0.807097,0.637021,0.197273,0.485324,0.958018,0.478052,0.154362,0.329167,0.849397,0.532953,0.978758,0.929738,0.84314,0.0551022,0.257614,0.257583,0.184221,0.538948,0.447576,0.964895,0.446064,0.958714,0.671002,0.416204,0.807838,0.152523,0.726058,0.65942,0.778033,0.102816,0.0772541,0.0918049,0.232009,0.29176,0.398238,0.171627,0.893286,0.856534,0.13806,0.785381,0.028586,0.779398,0.310345,0.646297,0.594459,0.0556068,0.337168,0.187843,0.755227,0.772747,0.681074,0.013827,0.0214337,0.454522,0.313112,0.664708,0.553423,0.418555,0.526546,0.515123,0.668966,0.434681,0.344754,0.157543,0.902211,0.367761,0.649664,0.773747,0.0236,0.6944,0.495642,0.840092,0.392419,0.214246,0.803794,0.443705,0.188698,0.956569,0.526607,0.656079,0.990158,0.269744,0.53145,0.270339,0.290659,0.22546,0.372573,0.124292,0.542728,0.137644,0.450348,0.833037,0.349544,|0.0410743,0.431326,0.431009,0.813316,0.764546,0.0357285,0.32969,0.596061,0.791068,0.680351,0.862312,0.354046,0.834052,0.956878,0.22518,0.752277,0.761465,0.453832,0.0881464,0.713112,0.0253561,0.485484,0.294544,0.858493,0.85872,0.758199,0.982114,0.879968,0.00863636,0.700851,0.0708111,0.506386,0.301236,0.605437,0.398386,0.744002,0.6507,0.594472,0.0687633,0.226256,0.580181,0.593687,0.339351,0.387724,0.575846,0.326864,0.477849,0.229985,0.286025,0.987437,0.488322,0.577144,0.933577,0.276707,0.157524,0.0244902,0.236217,0.157178,0.114995,0.689179,0.842176,0.841914,0.549914,0.411934,0.551052,0.73577,0.831302,0.503969,0.750888,0.603775,0.691691,0.266994,0.675155,0.64364,0.0599785,0.244166,0.76061,0.915114,0.991365,0.31716,0.107416,0.629235,0.708444,0.347443,0.211993,0.286494,0.641381,0.126993,0.722363,0.518761,0.344048,0.871591,0.340688,0.655683,0.246107,0.201594,0.724363,0.481443,0.549716,0.752423,0.257469,0.603673,0.0285785,0.0741388,0.286133,0.995333,0.721342,0.163377,0.783126,0.280321,0.0841097,0.886529,0.259777,0.949284,0.64436,0.88661,0.553491,0.600586,0.0319288,0.136028,0.75529,0.0903924,0.476628,0.307382,0.502767,0.520608,0.787815,0.267489,0.16928,0.758315,0.451203,0.163697,0.276443,0.20782,0.896386,0.69194,0.0532427,0.853898,0.605074,0.493644,0.586341,0.911004,0.395103,0.9338,0.123828,0.167486,0.650585,0.85941,0.774673,0.0557377,0.230941,0.879205,0.65529,0.63811,0.917993,0.577445,0.429335,0.959992,0.395119,0.108285,0.516614,0.008973,0.536075,0.960715,0.859652,0.279252,0.693797,0.699699,0.872942,0.32793,0.308659,0.315708,0.0697402,0.576743,0.877525,0.272093,0.922279,0.332969,0.455785,0.517953,0.757253,0.171408,0.074127,0.169371,0.224084,0.0980935,0.289193,0.0797736,0.0982438,0.281895,0.0461977,0.371292,0.754756,0.396843,0.695905,0.334061,0.0566769,0.223531,0.379955,0.154772,0.270251,0.417239,0.131141,0.851741,0.0989713,0.133329,0.0910565,0.102909,0.653952,0.918264,0.182419,0.364842,0.326076,0.462255,0.0467245,0.568322,0.393505,0.214905,0.661841,0.39701,0.951311,0.0503743,0.911965,0.862657,0.718543,0.853368,0.194838,0.236603,0.202482,0.428434,0.369598,0.41605,0.649808,0.293524,0.895499,0.677011,0.948201,0.454619,0.402239,0.426907,0.0640368,0.575201,0.237671,0.854583,0.391608,0.914939,0.553759,0.469804,0.517043,0.683309,0.889439,0.739378,0.906156,0.486243,0.660701,0.652781,0.559824,0.975261,0.699508,0.51101,0.373403,0.872669,0.76998,0.853961,0.94474,0.276582,0.817784,0.67715,0.424462,0.874748,0.162836,0.796587,0.586637,0.412097,0.0296658,0.856268,0.996827,0.804833,0.613535,0.866346,0.998451,0.40273,0.474957,0.376711,0.562784,0.531517,0.139851,0.579088,0.442793,0.053523,0.18505,0.643974,0.93207,0.338459,0.885632,0.124528,0.387014,0.936846,0.533965,0.900346,0.256137,0.883651,0.161105,0.448656,0.892339,0.730386,0.39104,0.0236025,0.299372,0.109012,0.294422,0.278487,0.09311,0.746545,0.937567,0.37743,0.972602,0.335749,0.492841,0.801664,0.687072,0.0620327,0.104432,0.219282,0.628906,0.747227,0.749956,0.217829,0.327656,0.355085,0.811337,0.381281,0.325428,0.0170566,0.567907,0.863941,0.894315,0.924859,0.45858,0.808865,0.106871,0.0921636,0.188592,0.345125,0.905808,0.100186,0.263453,0.62362,0.0749936,0.932769,0.937263,0.385018,0.266379,0.233301,0.271287,0.917917,0.929634,0.531113,0.816452,0.0467438,0.011496,0.505141,0.624124,0.518834,0.72904,0.56728,0.125105,0.200157,0.772632,0.876218,0.479953,0.398845,0.511055,0.205527,0.0364789,0.123601,0.383332,0.956054,0.262232,0.146515,0.770132,0.611167,0.210533,0.601544,0.108538,0.300187,0.714106,0.741991,0.435156,0.679697,0.525626,0.4435,0.571981,0.716442,0.255037,0.410406,0.246884,0.264399,0.169201,0.611309,0.967415,0.175684,0.662257,0.92465,0.763836,0.952355,0.383374,0.225104,0.0408508,0.960027,0.00666714,0.478727,0.590029,0.835505,0.327152,0.705987,0.785354,0.210825,0.89417,0.581322,0.155823,0.788744,0.334814,0.529729,0.815043,0.671327,0.712303,0.413625,0.10087,0.444975,0.0227849,0.358094,0.477126,0.708704,0.378434,0.685568,0.659872,0.636659,0.946238,0.824189,0.483053,0.895306,0.278554,0.292158,0.451069,0.0191597,0.775051,0.296626,0.3514,0.680536,0.0244802,0.0580732,0.287016,0.445636,0.227172,0.563844,0.816745,0.913731,0.237767,0.725209,0.548913,0.0179106,0.927379,0.152646,0.449122,0.377852,0.568168,0.122763,0.00111604,0.264916,0.375388,0.712524,0.260083,0.992835,0.0900126,0.159232,0.472901,0.202012,0.903754,0.635282,0.0211241,0.868995,0.273887,0.294768,0.865541,0.955647,0.427262,0.927048,0.689716,0.323088,0.84586,0.108786,0.0867036,0.46028,0.960054,0.17245,0.648291,0.526391,0.419894,0.966042,0.67539,0.0419171,0.983292,0.0736938,0.136395,0.177857,0.000413597,0.900254,0.847991,0.0290469,0.717327,0.897511,0.013535,0.548035,0.504173,0.538102,0.718529,0.551851,0.598556,0.420277,0.32729,0.705856,0.910056,0.967956,0.360068,0.678636,0.0536523,0.353335,0.575397,0.867503,0.83651,0.626534,0.387018,0.77921,0.735324,0.134085,0.16017,0.424244,0.388231,0.214925,0.373943,0.596567,0.220678,0.473398,0.0298848,0.411796,0.783505,0.605416,0.606356,0.109588,0.828878,0.737999,0.875995,0.00223517,0.654014,0.321225,0.759426,0.575567,0.72929,0.0825164,0.395508,0.490898,0.634581,0.342129,0.536732,0.865493,0.0225717,0.164905,0.420111,0.58716,0.484717,0.598669,0.05319,0.755733,0.846944,0.973977,0.557493,0.840084,0.396296,0.315431,0.219382,0.48627,0.0298437,0.732142,0.252529,0.851708,0.0720233,0.030068,0.134127,0.225635,0.0290756,0.65773,0.176068,0.18465,0.236282,0.0194909,0.606317,0.383015,0.514419,0.479991,0.684928,0.557694,0.569319,0.308264,0.63509,0.690685,0.566993,0.77692,0.652217,0.507564,0.0399364,0.317891,0.581135,0.94257,0.649396,0.661373,0.00977921,0.789055,0.202842,0.276201,0.573543,0.703627,0.593861,0.765472,0.670004,0.178397,0.12158,0.234661,0.780947,0.449377,0.854694,0.328867,0.0371486,0.933261,0.522611,0.606296,0.0804778,0.412467,0.462649,0.949985,0.024696,0.77136,0.515655,0.386053,0.330489,0.738131,0.769205,0.881134,0.937241,0.706352,0.677689,0.73238,0.0387871,0.121284,0.380474,0.887292,0.188295,0.23687,0.0323632,0.852489,0.199069,0.927234,0.543725,0.650617,0.653889,0.223416,0.0951058,0.884083,0.831628,0.0316331,0.530578,0.974891,0.462936,0.984604,0.469483,0.08587,0.481853,0.883126,0.596401,0.38697,0.229162,0.383193,0.473713,0.266091,0.368773,0.350469,0.349946,0.0333695,0.997324,0.347705,0.808092,0.156919,0.540175,0.958694,0.983566,0.674105,0.713277,0.687787,0.0140636,0.576829,0.185348,0.78502,0.0783044,0.00211155,0.864491,0.978779,0.345741,0.91903,0.442261,0.37785,0.956869,0.764815,0.936914,0.501991,0.160044,0.908897,0.109824,0.699171,0.267981,0.349204,0.134433,0.217423,0.83947,0.612725,0.225537,0.889426,0.207808,0.548373,0.890123,0.865817,0.102704,0.426702,0.495667,0.410544,0.636189,0.795987,0.441019,0.776079,0.00162774,0.489047,0.716701,0.280765,0.634652,0.0256514,0.59035,0.843334,0.72819,0.842452,0.848339,0.935362,0.892037,0.532536,0.170107,0.116435,0.773337,0.12104,0.983589,0.984493,0.61771,0.57726,0.618738,0.102701,0.610446,0.679524,0.357008,0.329574,0.111967,0.178493,0.455809,0.486132,0.589601,0.539435,0.0580522,0.0133172,0.835425,0.82102,0.025968,0.121515,0.587804,0.489535,0.514847,0.93108,0.812645,0.119376,0.973013,0.981963,0.0459424,0.247514,0.0871235,0.919024,0.0224033,0.545451,0.93147,0.618668,0.874037,0.0113779,0.174346,0.61424,0.42129,0.493016,0.278003,0.127525,0.477968,0.912557,0.0373533,0.873399,0.409758,0.871095,0.885902,0.509442,0.322204,0.190215,0.978771,0.347532,0.913766,0.453679,0.591381,0.311391,0.873849,0.396552,0.597924,0.17859,0.210405,0.88295,0.862147,0.210737,0.196243,0.204881,0.863414,0.353817,0.433811,0.880095,0.952184,0.134573,0.0911717,0.104395,0.979201,0.646583,0.763546,0.773616,0.872253,0.170993,0.44499,0.0799226,0.058717,0.844871,0.274119,0.399912,0.964055,0.994026,0.18347,0.0896354,0.812822,0.182799,0.773886,0.00814074,0.798029,0.309076,0.00786573,0.358064,0.445532,0.0763347,0.35516,0.309102,0.0448633,0.442329,0.551836,0.316941,0.754678,0.778255,0.646861,0.600218,0.262699,0.130236,0.588086,0.10895,0.911705,0.23748,0.578568,0.892205,0.951231,0.0521308,0.0688381,0.480986,0.241433,0.914302,0.388265,0.839174,0.619806,0.15457,0.226474,0.840436,0.693236,0.719077,0.487412,0.358587,0.486512,0.816318,0.25428,0.0337368,0.783941,0.132961,0.437406,0.808303,0.524361,0.597844,0.636121,0.688192,0.219545,0.140069,0.719151,0.565976,0.960976,0.667857,0.311532,0.0589702,0.17435,0.101328,0.00722826,0.761256,0.992906,0.748374,0.968756,0.14924,0.110608,0.255133,0.810839,0.373481,0.662402,0.907177,0.687365,0.958406,0.294415,0.734706,0.290241,0.215505,0.209965,0.766325,0.0715178,0.627757,0.77335,0.575825,0.221353,0.540917,0.340579,0.90976,0.945768,0.378329,0.417969,0.567033,0.0584145,0.218977,0.151281,0.504102,0.059392,0.643012,0.0140777,0.48155,0.902503,0.0776318,0.226331,0.5031,0.467768,0.194675,0.443994,0.562008,0.0119582,0.484462,0.167981,0.710581,0.852413,0.918894,0.738372,0.0094949,0.0835135,0.650216,0.793635,0.531459,0.262767,0.512211,0.110929,0.400086,0.593086,0.170124,0.773271,0.647854,0.633134,0.499227,0.925385,0.891164,0.832836,0.879697,0.49047,0.0292967,0.546995,0.756899,0.279295,0.643439,0.784836,0.154315,|0.49524,0.0631993,0.36251,0.236691,0.748743,0.156576,0.311929,0.958914,0.301833,0.871301,0.760548,0.0136707,0.399004,0.212167,0.472648,0.317057,0.303671,0.0654386,0.470091,0.0161312,0.248523,0.21299,0.652165,0.754584,0.968983,0.726952,0.911711,0.628546,0.19928,0.124249,0.698936,0.578917,0.756155,0.512591,0.653198,0.502708,0.578366,0.645373,0.724279,0.666311,0.787,0.629046,0.532112,0.128245,0.54382,0.647652,0.349042,0.372045,0.397907,0.164346,0.133018,0.820917,0.49905,0.895255,0.371391,0.329634,0.142543,0.372019,0.799624,0.269467,0.931776,0.146824,0.10533,0.357492,0.837242,0.385945,0.622974,0.399299,0.263102,0.579846,0.414976,0.302572,0.223522,0.272451,0.322229,0.801154,0.0314376,0.851058,0.871786,0.376631,0.448691,0.877104,0.175483,0.15623,0.111299,0.91215,0.155717,0.217748,0.533232,0.399489,0.513421,0.373602,0.92217,0.655057,0.113925,0.616508,0.968581,0.820275,0.835528,0.890076,0.548666,0.46515,0.552905,0.0505735,0.193707,0.603847,0.750812,0.0618301,0.277898,0.426827,0.111827,0.598151,0.16848,0.142847,0.188874,0.5067,0.307958,0.694927,0.690596,0.937843,0.867098,0.838283,0.602374,0.281954,0.290558,0.510611,0.098778,0.587366,0.139641,0.100627,0.73876,0.595668,0.966616,0.670337,0.817375,0.430254,0.545316,0.464649,0.638289,0.430879,0.33446,0.664984,0.0311376,0.567044,0.486418,0.691503,0.0696787,0.965024,0.893016,0.583321,0.9182,0.501819,0.771671,0.442184,0.909212,0.627609,0.32217,0.0201056,0.748645,0.372233,0.119875,0.771474,0.110284,0.890774,0.887867,0.0125465,0.587409,0.386916,0.460934,0.814062,0.571538,0.52615,0.784987,0.463205,0.149017,0.108606,0.891301,0.675144,0.129399,0.366998,0.992118,0.92123,0.172778,0.887122,0.871777,0.0977708,0.292578,0.381467,0.497104,0.744079,0.41646,0.560952,0.0108021,0.555737,0.954245,0.277898,0.186161,0.705252,0.652602,0.328469,0.613054,0.304786,0.620569,0.300367,0.405414,0.178324,0.433102,0.372182,0.852643,0.835523,0.951891,0.0881114,0.295174,0.0847088,0.223462,0.774149,0.370475,0.0840698,0.122724,0.0713699,0.197115,0.323303,0.259636,0.373458,0.455907,0.00389856,0.876238,0.221331,0.310478,0.0267835,0.178423,0.34104,0.373757,0.958849,0.936885,0.819123,0.625174,0.61017,0.567545,0.796926,0.705633,0.807693,0.776541,0.497587,0.380865,0.116338,0.152706,0.24522,0.171694,0.651393,0.213573,0.189747,0.589501,0.819304,0.48078,0.0404863,0.314922,0.727721,0.230103,0.0235859,0.507082,0.48958,0.975803,0.500562,0.0560342,0.072936,0.760348,0.598471,0.494958,0.945129,0.622364,0.839612,0.400727,0.162279,0.0127516,0.335401,0.594859,0.771122,0.43682,0.41271,0.417001,0.090449,0.646911,0.489576,0.595172,0.497859,0.00786513,0.350328,0.734049,0.477045,0.414212,0.613733,0.39718,0.452932,0.498104,0.160424,0.555294,0.959145,0.160598,0.92971,0.643359,0.0807076,0.0147449,0.763593,0.469451,0.428257,0.0715022,0.682456,0.795733,0.677502,0.0443349,0.942874,0.995985,0.576572,0.450781,0.717713,0.724349,0.394117,0.726755,0.222546,0.191866,0.587897,0.351854,0.584447,0.50069,0.115994,0.360765,0.197229,0.687278,0.807693,0.977304,0.516808,0.472307,0.322829,0.650294,0.0535365,0.571331,0.820601,0.729168,0.868689,0.875772,0.646865,0.566823,0.758227,0.0192419,0.0046398,0.0370656,0.971976,0.0562748,0.250076,0.622423,0.354106,0.0741569,0.883468,0.214007,0.487289,0.0690964,0.0511892,0.145828,0.761003,0.430188,0.771064,0.797536,0.772071,0.917866,0.920787,0.258215,0.441755,0.737294,0.574807,0.119285,0.635382,0.932641,0.945117,0.757427,0.630515,0.681135,0.768646,0.955157,0.287322,0.261018,0.301095,0.787771,0.957936,0.764438,0.00356352,0.83689,0.59334,0.936395,0.427248,0.139586,0.245342,0.496058,0.0773634,0.901467,0.21293,0.421671,0.497179,0.484574,0.928006,0.747457,0.0290794,0.953029,0.449354,0.905724,0.538124,0.0751936,0.383831,0.861862,0.773163,0.793962,0.937971,0.636249,0.984498,0.356346,0.0291295,0.162147,0.959812,0.51061,0.658677,0.92037,0.621376,0.887442,0.59745,0.172564,0.305926,0.485298,0.16454,0.0980241,0.656919,0.268459,0.332962,0.476464,0.667986,0.0519112,0.381776,0.210264,0.888081,0.462468,0.287564,0.437901,0.63026,0.867547,0.726234,0.398566,0.484374,0.603446,0.0681595,0.723622,0.153973,0.675599,0.0610896,0.764999,0.758709,0.996708,0.815059,0.103931,0.326542,0.560278,0.7191,0.901107,0.673045,0.677446,0.205355,0.0522129,0.262365,0.441288,0.831321,0.265604,0.31867,0.321584,0.35152,0.384747,0.515498,0.410993,0.512384,0.0726552,0.631788,0.649735,0.125175,0.394154,0.27955,0.924487,0.630082,0.350512,0.98452,0.876065,0.64597,0.163763,0.207382,0.455263,0.974449,0.0936121,0.728809,0.868679,0.350128,0.037389,0.20669,0.218572,0.170343,0.352014,0.533213,0.123809,0.569598,0.134051,0.343775,0.0740892,0.223066,0.387521,0.00553805,0.333357,0.606854,0.0827904,0.494682,0.390602,0.930422,0.178227,0.448934,0.70215,0.0936723,0.239587,0.843011,0.219109,0.052025,0.116834,0.770375,0.283982,0.0821835,0.224624,0.0370246,0.461495,0.262323,0.973782,0.457733,0.691407,0.622212,0.838432,0.909357,0.940587,0.61056,0.0137666,0.744039,0.671768,0.804131,0.812568,0.440871,0.24959,0.062574,0.792494,0.148154,0.242093,0.266508,0.644162,0.46491,0.829658,0.507892,0.694537,0.784856,0.755991,0.65929,0.282846,0.992787,0.111225,0.668788,0.148665,0.624106,0.203592,0.091144,0.241051,0.142828,0.435303,0.672619,0.712968,0.109387,0.551017,0.729943,0.507635,0.665543,0.914056,0.790013,0.493581,0.228945,0.976513,0.302379,0.469414,0.464785,0.597126,0.0996585,0.475426,0.120471,0.0506931,0.66416,0.692162,0.625495,0.507743,0.960905,0.505937,0.961364,0.867315,0.464979,0.328823,0.0617963,0.658245,0.163131,0.368793,0.905509,0.500884,0.203796,0.0318785,0.751266,0.0358429,0.896629,0.133948,0.356228,0.672641,0.0880636,0.992183,0.263172,0.992922,0.477767,0.264633,0.09319,0.110986,0.562151,0.357212,0.280217,0.583409,0.633995,0.590201,0.630957,0.0786113,0.422084,0.156811,0.284909,0.457679,0.85458,0.177507,0.12191,0.758326,0.720196,0.687458,0.277662,0.673482,0.40168,0.500673,0.728696,0.537972,0.602526,0.419557,0.451618,0.965982,0.974875,0.742963,0.0506629,0.490819,0.434751,0.0838636,0.526558,0.64823,0.931501,0.312026,0.397109,0.976529,0.110408,0.23859,0.945726,0.928907,0.531489,0.173767,0.680668,0.41304,0.56082,0.176151,0.934318,0.241435,0.212783,0.650056,0.851315,0.576304,0.0794577,0.944309,0.816233,0.104908,0.640676,0.626731,0.657486,0.173955,0.146744,0.322492,0.397749,0.008349,0.234095,0.220029,0.625965,0.366066,0.652223,0.96818,0.602299,0.191815,0.8825,0.498439,0.588857,0.44024,0.28699,0.87451,0.755225,0.216524,0.566482,0.00733465,0.20225,0.543541,0.932766,0.0120693,0.389885,0.804085,0.576096,0.911874,0.876155,0.302612,0.231185,0.569642,0.367769,0.636565,0.943165,0.385135,0.289105,0.187167,0.347206,0.985817,0.779434,0.383232,0.666159,0.660905,0.740927,0.221633,0.178927,0.196559,0.615201,0.790339,0.215138,0.646165,0.514119,0.827128,0.724435,0.48517,0.164051,0.747937,0.858449,0.56412,0.472984,0.875384,0.151404,0.682824,0.505019,0.641376,0.304905,0.416298,0.960257,0.640658,0.853118,0.681123,0.922721,0.946506,0.853122,0.186471,0.22446,0.602207,0.736235,0.242871,0.261031,0.909114,0.0914491,0.521791,0.586357,0.944376,0.562503,0.102644,0.668692,0.687998,0.684733,0.330238,0.990499,0.900226,0.658322,0.881433,0.564472,0.379505,0.240892,0.559178,0.679435,0.211915,0.292284,0.212972,0.635794,0.13121,0.125488,0.910469,0.453124,0.285627,0.242639,0.96562,0.807562,0.98276,0.850495,0.418863,0.767883,0.607391,0.624863,0.791667,0.372254,0.415805,0.515732,0.199362,0.487457,0.215779,0.985214,0.103552,0.484059,0.831734,0.194191,0.241977,0.324589,0.423592,0.774085,0.254226,0.116306,0.844955,0.276295,0.812971,0.382708,0.658929,0.351992,0.568877,0.54441,0.696894,0.525713,0.781481,0.266382,0.739546,0.689633,0.880681,0.121009,0.625404,0.125793,0.0926273,0.910294,0.309045,0.913182,0.791907,0.0746052,0.430496,0.886388,0.879996,0.425848,0.27277,0.451787,0.819009,0.118715,0.215654,0.509707,0.798507,0.941812,0.543522,0.396209,0.540866,0.292286,0.646335,0.555642,0.993765,0.652424,0.0883767,0.133347,0.232136,0.745857,0.178832,0.25836,0.902747,0.816701,0.558961,0.55927,0.442189,0.427513,0.155778,0.428548,0.534893,0.398572,0.938273,0.291804,0.6747,0.0941175,0.564473,0.0202881,0.38575,0.366042,0.134685,0.794364,0.397089,0.773982,0.515085,0.259138,0.387434,0.579931,0.300019,0.810735,0.681813,0.423605,0.0998758,0.0586592,0.043404,0.384303,0.673607,0.0956411,0.357023,0.662313,0.805542,0.059136,0.393155,0.938258,0.228978,0.655213,0.0423841,0.176927,0.153696,0.604686,0.566576,0.869909,0.0709008,0.072777,0.952763,0.893029,0.69,0.708913,0.306772,0.792539,0.594602,0.415948,0.476337,0.0599644,0.278904,0.851908,0.167058,0.636367,0.476457,0.279378,0.0941644,0.114286,0.73792,0.981342,0.0873103,0.968702,0.257703,0.481163,0.285468,0.676909,0.471274,0.816071,0.278253,0.117154,0.445483,0.548983,0.363634,0.948903,0.686728,0.375384,0.319755,0.291471,0.143593,0.916212,0.252701,0.8537,0.775574,0.312526,0.189919,0.623844,0.0570747,0.992431,0.549191,0.223572,0.778548,0.48443,0.315798,0.64115,0.488552,0.208232,0.266293,0.780775,0.338251,0.766859,0.952344,0.00334698,0.353867,0.599857,0.743037,0.224425,0.975835,0.906683,0.946354,0.862527,0.299118,0.694353,|0.485473,0.8734,0.107657,0.29908,0.981886,0.173335,0.146053,0.439077,0.452905,0.289463,0.38561,0.730297,0.381548,0.947345,0.39416,0.680492,0.856739,0.213884,0.467387,0.677172,0.173283,0.485053,0.0450244,0.809042,0.389266,0.798132,0.030962,0.806614,0.599957,0.696939,0.772949,0.751405,0.873365,0.43067,0.055423,0.31419,0.394987,0.175096,0.0438422,0.9133,0.568283,0.56787,0.806822,0.0302997,0.101243,0.658993,0.229228,0.0767171,0.626276,0.393948,0.690085,0.0129336,0.607435,0.791444,0.494801,0.0282047,0.232058,0.321168,0.0825689,0.107351,0.134788,0.344188,0.235057,0.548454,0.0977392,0.22224,0.350962,0.429862,0.236167,0.175946,0.519807,0.198673,0.741343,0.174097,0.562647,0.722328,0.344226,0.525671,0.742438,0.196817,0.791989,0.0735433,0.759841,0.0557953,0.443086,0.298946,0.0322928,0.741252,0.125582,0.391384,0.457789,0.110685,0.61509,0.83689,0.981384,0.392631,0.256914,0.0526273,0.682758,0.585593,0.0117722,0.798217,0.434377,0.287088,0.898537,0.109859,0.944704,0.467422,0.699675,0.366799,0.351174,0.42585,0.157923,0.478289,0.978774,0.316539,0.680368,0.862018,0.876333,0.395027,0.868539,0.331339,0.788327,0.515403,0.204454,0.753101,0.0143756,0.994568,0.766254,0.29422,0.704491,0.504452,0.743837,0.970237,0.260757,0.814995,0.0455688,0.966181,0.693322,0.0389286,0.303052,0.913757,0.104826,0.704143,0.583278,0.332415,0.530134,0.240268,0.14412,0.117748,0.498764,0.498435,0.572977,0.126028,0.131154,0.77326,0.465284,0.399222,0.253596,0.755318,0.151793,0.204005,0.279641,0.428231,0.426072,0.0876891,0.819784,0.264355,0.0993934,0.485184,0.32533,0.977989,0.636753,0.359516,0.719117,0.675398,0.828407,0.195407,0.333461,0.207325,0.0807652,0.360747,0.986015,0.579934,0.478197,0.00853133,0.34774,0.0369927,0.509498,0.53695,0.383794,0.418696,0.051559,0.181324,0.0166881,0.693893,0.153267,0.892134,0.813256,0.410538,0.478226,0.108148,0.00729543,0.39686,0.861719,0.99456,0.674905,0.151927,0.621537,0.808035,0.676568,0.0972628,0.23079,0.923356,0.468842,0.107363,0.885145,0.840692,0.78699,0.731694,0.0438238,0.943251,0.499756,0.150918,0.399585,0.842237,0.183814,0.838662,0.562202,0.841949,0.612682,0.771453,0.922009,0.269991,0.361455,0.627022,0.872539,0.110556,0.782877,0.665857,0.426975,0.274942,0.394518,0.987982,0.164552,0.295449,0.875676,0.0180216,0.249791,0.427692,0.626923,0.568063,0.487324,0.0444852,0.151233,0.978898,0.050679,0.475532,0.579847,0.00860757,0.758105,0.99836,0.0106934,0.626752,0.168157,0.114098,0.478801,0.16524,0.35272,0.484552,0.350282,0.920684,0.638899,0.290138,0.458022,0.610324,0.0288131,0.874468,0.458203,0.294653,0.960705,0.793632,0.700132,0.484996,0.675878,0.961406,0.478494,0.384078,0.693271,0.635578,0.712078,0.0697876,0.832588,0.244035,0.672477,0.388012,0.491063,0.722908,0.532852,0.878846,0.70108,0.0663999,0.124039,0.102719,0.529044,0.0919896,0.972449,0.379991,0.760582,0.0327454,0.525174,0.234935,0.646153,0.511636,0.801926,0.101264,0.278316,0.283144,0.134296,0.947355,0.777793,0.296879,0.776439,0.932872,0.335877,0.114693,0.932967,0.128207,0.559494,0.761331,0.522141,0.72596,0.209134,0.682526,0.521953,0.645272,0.992284,0.827151,0.342948,0.758976,0.842209,0.109744,0.36736,0.498958,0.489549,0.0794534,0.969605,0.192708,0.192034,0.0747945,0.777535,0.898212,0.0867658,0.460714,0.348696,0.133745,0.877865,0.530302,0.0945675,0.94131,0.83467,0.321297,0.772491,0.231812,0.131723,0.659996,0.417716,0.943899,0.840629,0.687901,0.617442,0.516385,0.66612,0.0906742,0.698826,0.128721,0.926625,0.342741,0.747493,0.527981,0.354596,0.928785,0.533661,0.804097,0.0062449,0.821003,0.621408,0.0638974,0.1273,0.240786,0.909635,0.976415,0.953419,0.876722,0.434933,0.2701,0.126886,0.966806,0.273757,0.53219,0.107319,0.580258,0.684614,0.845982,0.461113,0.220137,0.66459,0.0908316,0.346217,0.231779,0.65682,0.915284,0.347021,0.522974,0.946955,0.747994,0.910371,0.259976,0.614432,0.868977,0.962237,0.493784,0.416073,0.708981,0.295488,0.424605,0.491561,0.516529,0.175879,0.888142,0.680664,0.863003,0.351389,0.299676,0.0906405,0.913131,0.254927,0.287394,0.269027,0.556893,0.850266,0.775782,0.325754,0.837928,0.332467,0.00363606,0.511219,0.959288,0.604495,0.79879,0.400347,0.65532,0.983765,0.503599,0.375475,0.855679,0.928808,0.657001,0.625475,0.955221,0.600314,0.788997,0.545259,0.365831,0.124044,0.580032,0.136924,0.535308,0.584593,0.563944,0.382614,0.771085,0.396798,0.754545,0.407466,0.680631,0.493293,0.850921,0.623446,0.445149,0.759555,0.114168,0.349361,0.191972,0.779042,0.153777,0.20529,0.741479,0.338164,0.86731,0.592968,0.451765,0.917236,0.554388,0.770699,0.819479,0.745284,0.868741,0.916839,0.0437334,0.75896,0.0146797,0.0591743,0.796172,0.605574,0.668428,0.668906,0.218901,0.0949135,0.945001,0.916088,0.612746,0.10786,0.649582,0.0687573,0.697102,0.951915,0.929399,0.220928,0.160226,0.00231898,0.207398,0.0122217,0.0447275,0.148357,0.626742,0.967442,0.262838,0.558151,0.282102,0.487914,0.856636,0.378299,0.382799,0.191172,0.20007,0.152943,0.835947,0.373715,0.655843,0.934122,0.975849,0.123192,0.248574,0.393483,0.998786,0.993636,0.815163,0.384856,0.243634,0.819315,0.41596,0.370899,0.0317512,0.986092,0.224357,0.562497,0.638096,0.477702,0.516834,0.762685,0.331543,0.6703,0.923203,0.870488,0.319689,0.612188,0.598275,0.31077,0.967338,0.219281,0.415805,0.193106,0.619224,0.0538124,0.569288,0.253041,0.501495,0.0158095,0.531539,0.234588,0.776619,0.765273,0.612849,0.225147,0.476905,0.178249,0.55109,0.77292,0.596181,0.166359,0.567246,0.154054,0.485024,0.835413,0.493194,0.376013,0.55193,0.255412,0.53538,0.216561,0.751715,0.0302211,0.666271,0.0323149,0.765559,0.706467,0.833491,0.397275,0.189835,0.916832,0.0737825,0.523655,0.88693,0.893406,0.764759,0.234399,0.882817,0.622422,0.418451,0.283903,0.366353,0.0742311,0.551771,0.590655,0.320068,0.0195363,0.895419,0.828253,0.774605,0.832336,0.334948,0.742551,0.816896,0.389326,0.110187,0.475823,0.936393,0.675237,0.598365,0.888968,0.646235,0.190793,0.832777,0.394252,0.775919,0.179927,0.322929,0.0230844,0.443359,0.872525,0.503234,0.109522,0.190467,0.255729,0.749981,0.720315,0.121792,0.261151,0.902289,0.695388,0.689143,0.1475,0.910906,0.313371,0.463843,0.713162,0.260569,0.483175,0.329187,0.241943,0.966929,0.674609,0.663089,0.330835,0.0196255,0.564032,0.22563,0.0958781,0.417261,0.905349,0.951106,0.895991,0.541635,0.707098,0.640651,0.872468,0.238778,0.381617,0.0126648,0.396859,0.990474,0.765917,0.120093,0.475418,0.206909,0.818115,0.860356,0.521437,0.265371,0.523721,0.301673,0.999596,0.48396,0.794337,0.949746,0.440928,0.64434,0.552928,0.150904,0.451576,0.944832,0.439762,0.0327796,0.237487,0.996204,0.5053,0.99094,0.211726,0.680797,0.17723,0.467113,0.566867,0.715951,0.969112,0.562337,0.402199,0.695399,0.333747,0.370167,0.411708,0.765407,0.523762,0.820042,0.360883,0.739138,0.78744,0.480739,0.250479,0.169543,0.414438,0.0829934,0.901392,0.0449691,0.908183,0.913334,0.910431,0.311255,0.566592,0.405815,0.486607,0.26173,0.457538,0.53197,0.819612,0.877999,0.275295,0.530787,0.524621,0.0137642,0.215925,0.327666,0.726102,0.722323,0.927046,0.138764,0.805357,0.645146,0.208778,0.283432,0.419963,0.476601,0.066348,0.655518,0.0899168,0.404797,0.836127,0.700777,0.318316,0.729874,0.158255,0.146853,0.376131,0.80338,0.674191,0.525271,0.183117,0.257455,0.0273028,0.434627,0.818677,0.684284,0.984936,0.191789,0.547128,0.420184,0.239583,0.548264,0.224666,0.37066,0.57138,0.745455,0.429131,0.564802,0.143568,0.00409663,0.731628,0.815658,0.291388,0.885805,0.173265,0.576999,0.622976,0.436957,0.179004,0.529236,0.620115,0.0163236,0.213782,0.960196,0.81407,0.925693,0.224034,0.759338,0.719762,0.9818,0.10576,0.819354,0.11026,0.245938,0.361027,0.34675,0.701293,0.359383,0.314741,0.412301,0.666067,0.211442,0.753455,0.524877,0.444643,0.242827,0.637616,0.617341,0.874758,0.843264,0.942779,0.0728756,0.479587,0.684284,0.0300361,0.643439,0.314064,0.30127,0.716543,0.47213,0.785563,0.00628388,0.0982783,0.291189,0.257577,0.939929,0.893881,0.769024,0.429612,0.794665,0.804653,0.1289,0.125441,0.396149,0.987923,0.553272,0.474602,0.983349,0.753147,0.974156,0.338366,0.101805,0.591833,0.394046,0.578075,0.747575,0.778269,0.541832,0.324292,0.216276,0.591468,0.61143,0.624343,0.257209,0.176445,0.947509,0.917281,0.012674,0.937552,0.947363,0.643161,0.748267,0.705375,0.27008,0.717166,0.0220369,0.689283,0.782862,0.170596,0.946696,0.14705,0.698374,0.564267,0.970536,0.294738,0.569899,0.408662,0.92848,0.948636,0.116042,0.0580177,0.383038,0.297066,0.242959,0.178628,0.370898,0.9944,0.0692003,0.281873,0.649688,0.80332,0.196777,0.750132,0.0807835,0.620216,0.0478859,0.115164,0.569018,0.933652,0.381644,0.756916,0.649451,0.486697,0.637232,0.551368,0.0300673,0.591026,0.595001,0.254841,0.613758,0.143096,0.0870821,0.695509,0.942699,0.295631,0.822666,0.160825,0.0905083,0.313458,0.866868,0.681344,0.478311,0.521886,0.737363,0.0790295,0.299283,0.192833,0.516526,0.131424,0.365475,0.869905,0.857337,0.458463,0.155797,0.358044,0.689834,0.423546,0.10415,0.403616,0.580194,0.627595,0.128424,0.552533,0.853826,0.717277,0.210994,0.743923,0.781653,0.931941,0.0438923,0.252389,0.0208731,0.03341,0.506093,0.723256,0.974023,0.733798,0.808474,0.358495,0.622038,0.794275,0.819816,0.711041,0.697237,|0.734373,0.0228721,0.940046,0.170731,0.68017,0.795776,0.8435,0.0904396,0.270971,0.97688,0.141067,0.474934,0.0734733,0.383123,0.172199,0.548985,0.919576,0.125091,0.393299,0.645056,0.41949,0.40015,0.957067,0.56615,0.482003,0.0446926,0.603252,0.468682,0.376609,0.235896,0.131249,0.385933,0.963558,0.419006,0.0144736,0.0786695,0.518786,0.859978,0.513962,0.900012,0.426005,0.0868108,0.459456,0.247764,0.697802,0.849869,0.93387,0.854597,0.788702,0.744894,0.905275,0.62276,0.861391,0.170277,0.792285,0.893706,0.391565,0.836377,0.362839,0.288805,0.373121,0.167994,0.907619,0.704789,0.379936,0.806785,0.120422,0.684073,0.54883,0.915813,0.460027,0.129696,0.560745,0.301633,0.560423,0.359824,0.5692,0.26153,0.37704,0.317427,0.581365,0.294577,0.269546,0.0838272,0.127524,0.17239,0.0158245,0.0688552,0.756606,0.559166,0.0827468,0.981031,0.44235,0.380309,0.263379,0.831749,0.976648,0.272233,0.338253,0.674199,0.992273,0.708028,0.386558,0.110312,0.829079,0.342826,0.48033,0.423425,0.395223,0.899304,0.187627,0.586205,0.217817,0.846403,0.727022,0.834011,0.907724,0.457632,0.730671,0.927038,0.354789,0.113368,0.304564,0.141592,0.384702,0.534822,0.999104,0.963057,0.975859,0.437558,0.924201,0.181748,0.158939,0.669656,0.2865,0.278921,0.0244275,0.578097,0.567262,0.981694,0.222818,0.242817,0.678439,0.4471,0.698856,0.330138,0.101356,0.922905,0.277423,0.766867,0.599721,0.755464,0.606611,0.68802,0.947895,0.83458,0.952693,0.997545,0.960656,0.728347,0.92244,0.0212077,0.795806,0.486731,0.0998146,0.490732,0.104815,0.44754,0.859307,0.958785,0.261059,0.255045,0.051911,0.585437,0.683254,0.735101,0.249714,0.800546,0.525936,0.178659,0.0367042,0.875624,0.659231,0.179166,0.493639,0.0317484,0.483195,0.621381,0.783817,0.71606,0.235832,0.900769,0.41026,0.341911,0.945677,0.508741,0.588891,0.60297,0.760147,0.891129,0.782029,0.897664,0.945022,0.690849,0.787232,0.889323,0.0649636,0.384264,0.349504,0.352405,0.464475,0.936641,0.407533,0.0880631,0.426466,0.912812,0.269968,0.177294,0.0676216,0.213509,0.780615,0.417489,0.155036,0.702431,0.346633,0.26503,0.420564,0.137486,0.666011,0.16041,0.175974,0.464697,0.501828,0.929996,0.416219,0.504438,0.604419,0.93792,0.337011,0.0418062,0.599941,0.584081,0.255449,0.79211,0.601346,0.56768,0.473098,0.724616,0.444963,0.161872,0.546016,0.472354,0.754295,0.47716,0.196945,0.852068,0.123729,0.122977,0.453828,0.456135,0.0764886,0.399737,0.494965,0.110961,0.105275,0.316439,0.458836,0.833769,0.433966,0.57584,0.675535,0.0548981,0.387436,0.361318,0.0951295,0.00546443,0.42313,0.7672,0.688977,0.940346,0.136394,0.658301,0.0370802,0.690985,0.678557,0.788368,0.241877,0.624226,0.73121,0.966284,0.651193,0.465103,0.292829,0.0741854,0.84768,0.13125,0.458636,0.442015,0.633963,0.807423,0.8051,0.768173,0.982007,0.559783,0.260417,0.654539,0.982994,0.294514,0.600762,0.97927,0.352835,0.649816,0.773482,0.319016,0.642069,0.960386,0.439302,0.653383,0.924071,0.84088,0.214696,0.551806,0.753123,0.171999,0.226366,0.423625,0.920066,0.545378,0.736222,0.696303,0.182934,0.988839,0.999676,0.680921,0.155111,0.108556,0.39235,0.949262,0.181145,0.671201,0.797088,0.0736436,0.173158,0.715377,0.940831,0.882536,0.62338,0.80798,0.379383,0.348522,0.455065,0.313086,0.879658,0.871752,0.774023,0.963772,0.614464,0.913205,0.454584,0.732614,0.569315,0.503688,0.578115,0.836247,0.00159979,0.511263,0.663154,0.0971476,0.671423,0.843045,0.844104,0.852421,0.101364,0.962492,0.975351,0.590861,0.125784,0.921926,0.877654,0.160746,0.0246608,0.663356,0.554433,0.522786,0.199338,0.343207,0.448839,0.103495,0.697733,0.678772,0.315398,0.922571,0.577011,0.768362,0.465357,0.881356,0.0610911,0.951605,0.557212,0.914827,0.434938,0.372267,0.871491,0.36666,0.130181,0.965763,0.89141,0.214697,0.624032,0.772832,0.225441,0.220512,0.288865,0.544573,0.686184,0.394984,0.697467,0.3806,0.946768,0.622749,0.912341,0.961646,0.0156828,0.33085,0.555353,0.529562,0.116626,0.616908,0.735845,0.961027,0.750305,0.0916202,0.47494,0.429309,0.151599,0.310006,0.386325,0.0770885,0.6601,0.327298,0.116159,0.391691,0.182239,0.6544,0.0374427,0.885125,0.00670481,0.52238,0.147509,0.333824,0.30963,0.398947,0.554741,0.382373,0.453894,0.00614488,0.271891,0.936741,0.376459,0.899112,0.710416,0.865107,0.770095,0.418165,0.776814,0.802755,0.857829,0.275388,0.663868,0.396639,0.29079,0.408185,0.869827,0.0918616,0.639077,0.577424,0.0471139,0.801818,0.362214,0.328282,0.212769,0.0338168,0.788701,0.280987,0.856186,0.0848479,0.901798,0.218329,0.372068,0.764845,0.0609444,0.383255,0.793883,0.846754,0.519801,0.250701,0.414313,0.434036,0.733875,0.250275,0.923786,0.270835,0.878675,0.87702,0.375659,0.948529,0.459978,0.0420304,0.534595,0.103738,0.929492,0.603783,0.425636,0.850916,0.689497,0.333022,0.606803,0.351116,0.157882,0.430101,0.447348,0.573001,0.178123,0.309535,0.349384,0.887658,0.344988,0.53864,0.609783,0.635927,0.832169,0.487316,0.951537,0.821535,0.832515,0.0203868,0.426648,0.401396,0.406323,0.975684,0.597918,0.0440344,0.347307,0.0985728,0.898675,0.0779219,0.419742,0.0468387,0.118866,0.225508,0.55924,0.339224,0.525969,0.48151,0.67875,0.186954,0.912588,0.751894,0.451365,0.209458,0.281308,0.157409,0.976809,0.531518,0.151912,0.12577,0.15428,0.51088,0.161842,0.944401,0.361716,0.472556,0.38252,0.144632,0.275694,0.154389,0.924798,0.514375,0.524818,0.970669,0.220152,0.168879,0.898146,0.923466,0.816297,0.664964,0.920631,0.931508,0.260489,0.15464,0.999422,0.415886,0.357717,0.107009,0.21695,0.187679,0.743442,0.605483,0.83263,0.992331,0.522991,0.636896,0.410301,0.768153,0.445092,0.341234,0.951275,0.371207,0.0451869,0.950326,0.0179328,0.433316,0.935425,0.889058,0.584853,0.327743,0.537746,0.461462,0.328597,0.113944,0.458546,0.471405,0.458962,0.363665,0.0197799,0.880817,0.974111,0.874803,0.808389,0.782182,0.796584,0.121675,0.693762,0.255108,0.136321,0.161867,0.772996,0.0663858,0.84057,0.361222,0.337487,0.377033,0.717725,0.149834,0.0268292,0.846701,0.467831,0.290783,0.126065,0.909596,0.898134,0.814466,0.203768,0.091472,0.364006,0.146163,0.46221,0.150298,0.948857,0.644911,0.293313,0.128706,0.607473,0.876433,0.0576044,0.333072,0.397353,0.169641,0.820593,0.746477,0.625643,0.616518,0.656997,0.480759,0.320173,0.728751,0.288002,0.27275,0.441806,0.520489,0.888235,0.765137,0.281156,0.74705,0.600318,0.079636,0.193478,0.24732,0.0898028,0.8863,0.606669,0.94822,0.943988,0.570314,0.608186,0.952641,0.755348,0.492087,0.212047,0.365819,0.538376,0.693807,0.589888,0.737743,0.0449114,0.284302,0.514538,0.572305,0.979011,0.626418,0.668223,0.561012,0.0961486,0.295996,0.241399,0.40861,0.376863,0.631587,0.61805,0.554989,0.108371,0.504417,0.66052,0.615279,0.853787,0.56462,0.707318,0.287017,0.44042,0.492503,0.588711,0.2248,0.379324,0.159209,0.572894,0.775015,0.933403,0.72832,0.440286,0.275814,0.115459,0.28657,0.427275,0.282844,0.765654,0.292264,0.472664,0.917334,0.461053,0.676825,0.325354,0.345141,0.159958,0.494012,0.543007,0.422215,0.44156,0.872461,0.395229,0.989797,0.565401,0.376299,0.911445,0.782203,0.32481,0.652758,0.437689,0.0279661,0.438804,0.58579,0.73505,0.905124,0.622134,0.28305,0.619547,0.991173,0.888627,0.452,0.645495,0.0852113,0.108868,0.866557,0.156706,0.694983,0.521528,0.864288,0.384412,0.861025,0.770693,0.860936,0.682886,0.082581,0.985942,0.359783,0.853728,0.647698,0.370093,0.619191,0.824852,0.929188,0.138249,0.203843,0.505972,0.274573,0.455992,0.854076,0.556284,0.275221,0.534658,0.743752,0.065861,0.518197,0.192098,0.305742,0.628915,0.00214279,0.079805,0.948329,0.494406,0.137212,0.369387,0.102518,0.0423818,0.957969,0.484878,0.397769,0.750703,0.627576,0.0269967,0.302073,0.357035,0.628585,0.567791,0.881313,0.708027,0.272794,0.189008,0.0556527,0.934945,0.694741,0.171623,0.845963,0.103634,0.00680661,0.0587413,0.885025,0.0303993,0.475213,0.989607,0.591603,0.244701,0.139053,0.971603,0.907111,0.805266,0.593601,0.614718,0.557102,0.934935,0.0143394,0.318446,0.354236,0.781979,0.336965,0.314795,0.718943,0.719849,0.420413,0.011821,0.0306249,0.558762,0.194277,0.253536,0.00358725,0.782762,0.337369,0.82683,0.187825,0.0642641,0.0926911,0.707851,0.533037,0.376564,0.348519,0.383583,0.691318,0.972097,0.530669,0.555847,0.747138,0.786913,0.139692,0.066484,0.548748,0.552683,0.525208,0.595405,0.784998,0.404688,0.0576057,0.0128418,0.291505,0.348509,0.51239,0.301386,0.877781,0.0106017,0.831577,0.413651,0.775969,0.114336,0.920539,0.638722,0.231996,0.0655826,0.0600355,0.268437,0.699357,0.708745,0.730409,0.562981,0.43553,0.57626,0.280497,0.980709,0.477788,0.293542,0.352879,0.31691,0.062763,0.717437,0.00834936,0.623361,0.30229,0.81249,0.844885,0.902107,0.195253,0.32302,0.733596,0.871946,0.970517,0.853699,0.507502,0.867393,0.335616,0.854885,0.375461,0.939474,0.564013,0.403014,0.361624,0.993669,0.642443,0.411466,0.0896233,0.953677,0.709246,0.40637,0.269896,0.445559,0.846794,0.456779,0.615948,0.318168,0.52774,0.88319,0.887314,0.187311,0.0845472,0.0673784,0.479557,0.840817,0.512167,0.147625,0.355204,0.790783,0.481193,0.541474,0.907337,0.491115,0.613851,0.866641,0.176684,0.414839,0.392078,0.394362,0.0665457,0.0437111,0.0884136,0.948956,0.762431,0.873606,0.167455,0.389597,0.397205,0.699824,0.0606952,0.0445828,0.97273,|0.310352,0.197357,0.24272,0.649424,0.442154,0.519233,0.248303,0.797086,0.165504,0.706357,0.917018,0.113681,0.519421,0.325735,0.583569,0.612871,0.620515,0.539369,0.709132,0.799224,0.906812,0.324508,0.925684,0.123185,0.360133,0.0394409,0.21595,0.790379,0.537706,0.151848,0.365905,0.1318,0.939248,0.702563,0.677417,0.0906975,0.0279099,0.42204,0.995009,0.948714,0.0319218,0.834524,0.704463,0.651244,0.113612,0.97625,0.588486,0.749495,0.653485,0.0963632,0.467452,0.912178,0.327475,0.670916,0.72731,0.988328,0.565858,0.159766,0.423078,0.0586098,0.068268,0.598918,0.475064,0.493802,0.945969,0.686126,0.654756,0.575186,0.606785,0.737859,0.0275925,0.709231,0.612745,0.589635,0.0789163,0.885479,0.0398725,0.214224,0.540956,0.677274,0.489137,0.416329,0.318916,0.27639,0.874843,0.266081,0.126792,0.891806,0.657173,0.600291,0.466548,0.775463,0.717114,0.946661,0.529229,0.695236,0.975985,0.150094,0.543866,0.199584,0.97147,0.120546,0.542365,0.830967,0.302535,0.400022,0.798863,0.377585,0.712783,0.350016,0.491667,0.853948,0.202731,0.491147,0.452762,0.737932,0.485825,0.607009,0.658127,0.879347,0.501715,0.597546,0.756663,0.699476,0.77552,0.822664,0.0242424,0.877002,0.844907,0.162323,0.416477,0.52947,0.98283,0.0862473,0.913866,0.525249,0.777133,0.842373,0.874913,0.19903,0.0453739,0.0996009,0.0342241,0.737109,0.864251,0.04708,0.581048,0.919115,0.155024,0.309972,0.765873,0.649038,0.32425,0.978593,0.158053,0.926988,0.877843,0.73368,0.88117,0.279468,0.357579,0.421425,0.0485464,0.916654,0.701889,0.867826,0.107937,0.069769,0.520645,0.901541,0.697831,0.465856,0.86432,0.364703,0.321766,0.293748,0.476861,0.718151,0.50091,0.159039,0.246043,0.103056,0.979073,0.893762,0.588953,0.0172412,0.997125,0.92189,0.922855,0.154601,0.888847,0.186367,0.0402721,0.796706,0.939853,0.634808,0.301664,0.725854,0.866276,0.34694,0.314947,0.93136,0.637102,0.131581,0.679246,0.525274,0.303291,0.506853,0.858882,0.197595,0.437077,0.806469,0.963392,0.675036,0.209736,0.311122,0.271163,0.876019,0.292431,0.428566,0.652587,0.654241,0.0587969,0.110246,0.150287,0.921544,0.402059,0.875786,0.83444,0.36132,0.422074,0.798024,0.91631,0.346198,0.0716429,0.612607,0.0741526,0.0968863,0.317511,0.312149,0.073821,0.634759,0.947706,0.185947,0.881844,0.145399,0.838236,0.894882,0.179657,0.691266,0.341263,0.401815,0.0099569,0.00682431,0.809548,0.802811,0.496967,0.449767,0.0309809,0.167945,0.286257,0.57672,0.357116,0.404863,0.585939,0.552412,0.84268,0.957203,0.52217,0.549121,0.417565,0.362367,0.593839,0.37303,0.302098,0.189273,0.618716,0.532655,0.0329248,0.850439,0.111091,0.885571,0.324397,0.228774,0.595533,0.139486,0.759565,0.896115,0.702676,0.855973,0.00305873,0.228118,0.0326607,0.491107,0.256798,0.633064,0.949301,0.40655,0.386251,0.100826,0.408442,0.433796,0.985106,0.641082,0.800721,0.385753,0.852322,0.728122,0.215487,0.702727,0.930611,0.907697,0.556402,0.797583,0.475694,0.0137838,0.704574,0.66312,0.783061,0.847835,0.534905,0.212902,0.417364,0.766538,0.749722,0.954977,0.486434,0.144222,0.576176,0.0761184,0.743927,0.961816,0.400182,0.127927,0.310975,0.571237,0.624761,0.89102,0.389,0.834829,0.46875,0.293856,0.150028,0.666001,0.737783,0.782698,0.551409,0.93497,0.8878,0.687998,0.189621,0.423577,0.334097,0.0174453,0.245641,0.683472,0.214806,0.965823,0.0179667,0.41234,0.451304,0.655534,0.403927,0.529971,0.611944,0.0747729,0.164144,0.53512,0.708303,0.480125,0.331467,0.391384,0.171353,0.937875,0.167571,0.759706,0.547185,0.881763,0.251048,0.288065,0.791134,0.0344121,0.613271,0.925954,0.352115,0.282664,0.261652,0.923092,0.861745,0.980741,0.0576865,0.829936,0.399684,0.550931,0.756355,0.873525,0.114461,0.626677,0.475424,0.970276,0.436401,0.656838,0.82135,0.680573,0.899349,0.293332,0.543914,0.516595,0.753785,0.785188,0.187727,0.830721,0.172896,0.400862,0.837743,0.0556961,0.630431,0.827091,0.575076,0.627448,0.279134,0.928683,0.0550444,0.612444,0.635943,0.529563,0.162642,0.921292,0.837872,0.222037,0.610698,0.115418,0.377622,0.544274,0.443799,0.715891,0.712269,0.341859,0.582675,0.548777,0.552557,0.534345,0.73498,0.490098,0.372203,0.226499,0.100277,0.464938,0.318693,0.646013,0.281284,0.269719,0.856615,0.52017,0.416794,0.0252626,0.477842,0.0859042,0.992233,0.0235271,0.356846,0.392042,0.973407,0.144735,0.545773,0.307836,0.771952,0.583999,0.388682,0.860544,0.0251015,0.960433,0.395892,0.846527,0.400123,0.669134,0.34482,0.400722,0.706038,0.897638,0.247862,0.132113,0.153229,0.146794,0.887051,0.985742,0.100574,0.902224,0.692831,0.710043,0.404012,0.417966,0.00215483,0.959968,0.456952,0.770935,0.665009,0.579316,0.126862,0.0676569,0.130182,0.399229,0.275858,0.378247,0.159088,0.285321,0.418088,0.420231,0.140093,0.00296015,0.392742,0.13054,0.671076,0.13091,0.705422,0.00531018,0.239813,0.334974,0.832278,0.495243,0.0860195,0.337629,0.347967,0.0727818,0.0500436,0.450121,0.740741,0.994666,0.652018,0.1269,0.0175378,0.349453,0.957001,0.1629,0.691379,0.953351,0.705166,0.0867481,0.761026,0.150623,0.793514,0.455072,0.639874,0.767388,0.887414,0.513602,0.873367,0.477614,0.69611,0.23682,0.517108,0.547785,0.31255,0.0575418,0.347021,0.408685,0.137057,0.0466887,0.194265,0.885607,0.242813,0.982767,0.544089,0.675138,0.585148,0.445598,0.452357,0.859109,0.113418,0.753646,0.285296,0.622913,0.268767,0.98279,0.270578,0.770947,0.946822,0.531832,0.661575,0.768384,0.900488,0.989896,0.526275,0.615179,0.402819,0.508273,0.397839,0.749763,0.294226,0.438055,0.663642,0.873075,0.830944,0.311326,0.982792,0.0407624,0.898487,0.492451,0.803926,0.598679,0.518239,0.496758,0.99438,0.0489143,0.826081,0.0646006,0.86878,0.654968,0.873662,0.810841,0.706784,0.652476,0.0107894,0.248171,0.0596448,0.204631,0.994714,0.889639,0.623762,0.194209,0.80768,0.83349,0.255953,0.505885,0.107926,0.845812,0.0297709,0.0883219,0.515381,0.0432059,0.220199,0.377434,0.325168,0.292918,0.490659,0.614229,0.418929,0.0476981,0.391438,0.921305,0.960726,0.627755,0.441843,0.645059,0.848956,0.706365,0.778386,0.342894,0.608634,0.728706,0.78677,0.954146,0.441431,0.618016,0.173825,0.191899,0.00913674,0.0788248,0.726789,0.559574,0.182264,0.149345,0.924296,0.0576152,0.616159,0.0457474,0.751216,0.821781,0.839001,0.955996,0.399319,0.176393,0.607259,0.0655258,0.886799,0.153886,0.78905,0.650346,0.639458,0.323767,0.0852394,0.660452,0.948164,0.619081,0.596156,0.306587,0.181345,0.441248,0.0946598,0.580988,0.0587295,0.61615,0.969071,0.698621,0.808715,0.444634,0.0280588,0.740914,0.820964,0.894982,0.881891,0.264247,0.783363,0.30435,0.380321,0.351397,0.922086,0.54843,0.543922,0.434535,0.483539,0.376791,0.693523,0.578148,0.282111,0.725276,0.511872,0.352662,0.288227,0.748697,0.333045,0.184091,0.945216,0.692241,0.537183,0.147032,0.983822,0.116141,0.554711,0.856799,0.46461,0.0817112,0.961718,0.550913,0.563967,0.457797,0.0372686,0.860882,0.383928,0.301779,0.326426,0.618549,0.009148,0.267305,0.0340305,0.777635,0.414649,0.690681,0.553482,0.835777,0.717237,0.935084,0.379174,0.866584,0.314146,0.952237,0.89439,0.83083,0.903727,0.262234,0.135901,0.227255,0.85878,0.799728,0.366344,0.143886,0.975621,0.426582,0.786497,0.607591,0.917709,0.618917,0.0642321,0.994763,0.340404,0.0975393,0.154812,0.0575726,0.128879,0.528041,0.162741,0.66333,0.981196,0.698493,0.0522628,0.156871,0.150725,0.376481,0.178385,0.821035,0.238314,0.274499,0.792108,0.470754,0.901225,0.650311,0.529032,0.0700314,0.907453,0.0407976,0.929384,0.916602,0.0666649,0.653791,0.96878,0.432205,0.540953,0.441327,0.0341232,0.168473,0.741018,0.342247,0.341698,0.335592,0.421809,0.0516502,0.586249,0.854407,0.362786,0.0791231,0.588794,0.228786,0.202275,0.875279,0.441406,0.76182,0.11464,0.883049,0.319552,0.950226,0.235377,0.277639,0.46747,0.222822,0.408996,0.754981,0.627855,0.438581,0.699854,0.118887,0.81894,0.788026,0.288488,0.15659,0.461951,0.984794,0.809621,0.949038,0.39396,0.179922,0.935394,0.410618,0.339563,0.734588,0.656211,0.292367,0.676013,0.244122,0.150059,0.245334,0.397402,0.842576,0.762551,0.585263,0.330333,0.0140782,0.050585,0.94965,0.87506,0.00284147,0.851484,0.593075,0.0621433,0.449172,0.998487,0.60444,0.71646,0.149242,0.536118,0.26311,0.70407,0.434038,0.457955,0.94391,0.654855,0.543486,0.870549,0.698484,0.972416,0.336196,0.420966,0.798068,0.524902,0.262957,0.77422,0.38798,0.172877,0.378904,0.371488,0.210218,0.572637,0.466746,0.81263,0.983789,0.344663,0.200142,0.657632,0.427923,0.907595,0.757122,0.127615,0.269382,0.812892,0.61248,0.335887,0.626493,0.445236,0.823608,0.0738991,0.786571,0.377786,0.0692877,0.251053,0.233107,0.315315,0.457192,0.611822,0.880327,0.827005,0.961106,0.720436,0.881279,0.30934,0.954707,0.123241,0.859904,0.239572,0.663876,0.394038,0.192593,0.886473,0.737535,0.291164,0.427541,0.167687,0.0608533,0.38743,0.826605,0.435211,0.438312,0.106428,0.436358,0.999962,0.0269826,0.633426,0.91336,0.863928,0.209125,0.601001,0.813363,0.0384371,0.187081,0.616506,0.153578,0.941637,0.819599,0.0759547,0.798625,0.892125,0.886936,0.0785755,0.123924,0.129899,0.635024,0.661882,0.00163245,0.285202,0.306706,0.451158,0.963005,0.0956051,0.422758,0.849635,0.286976,0.480632,0.0413467,0.0497509,0.253105,0.691578,0.422984,0.462175,0.11248,0.19097,0.149618,0.583644,0.473698,0.409436,0.37254,0.145617,0.461989,|0.880546,0.803875,0.65317,0.369905,0.377426,0.835202,0.063603,0.381637,0.239967,0.0815838,0.609684,0.592675,0.960302,0.156785,0.111783,0.479364,0.893881,0.302918,0.76627,0.114463,0.836668,0.887441,0.16076,0.701028,0.783998,0.246184,0.466541,0.716244,0.180414,0.191117,0.88089,0.886337,0.421441,0.218562,0.357388,0.44385,0.975042,0.80122,0.746902,0.235614,0.393455,0.678169,0.927091,0.871319,0.476725,0.0863616,0.0690597,0.25241,0.913548,0.213824,0.770376,0.597886,0.646897,0.776317,0.820249,0.84533,0.460257,0.149973,0.747145,0.681419,0.781245,0.683333,0.597374,0.905035,0.70672,0.630252,0.450614,0.246917,0.0896851,0.869627,0.636591,0.619021,0.278807,0.12408,0.36049,0.679647,0.495248,0.242024,0.394188,0.633903,0.966448,0.716755,0.672562,0.127055,0.701015,0.543317,0.27215,0.670416,0.770526,0.143652,0.711492,0.720067,0.904498,0.194644,0.298688,0.280085,0.626132,0.5717,0.195051,0.847987,0.944253,0.162832,0.0693376,0.1651,0.640778,0.978781,0.603072,0.846985,0.0888878,0.628063,0.417566,0.420947,0.13405,0.826718,0.703825,0.565596,0.692109,0.940924,0.547621,0.825602,0.294645,0.678393,0.141995,0.501064,0.34493,0.321609,0.414985,0.218543,0.79247,0.974835,0.744091,0.0586894,0.785587,0.414268,0.943545,0.200426,0.950184,0.155937,0.115199,0.142914,0.236371,0.942331,0.83284,0.257364,0.503874,0.549117,0.210492,0.0151019,0.571023,0.0972593,0.965267,0.377352,0.864991,0.817925,0.333861,0.3929,0.708604,0.677388,0.326751,0.000464261,0.105286,0.616104,0.602511,0.988268,0.353776,0.0851172,0.882648,0.114497,0.413512,0.378446,0.843202,0.909669,0.950765,0.52857,0.400109,0.605158,0.293333,0.795038,0.953794,0.32544,0.408679,0.418481,0.853475,0.299584,0.361495,0.792861,0.0395491,0.564354,0.783501,0.995947,0.819718,0.123162,0.0818493,0.749185,0.408822,0.266229,0.72954,0.981955,0.982029,0.37906,0.0470142,0.808788,0.473879,0.596735,0.474627,0.379817,0.300503,0.260743,0.0434872,0.234676,0.418381,0.364152,0.34164,0.768972,0.28421,0.465963,0.412244,0.273432,0.111246,0.626703,0.100421,0.0307572,0.374918,0.206012,0.938235,0.778465,0.00225466,0.0182229,0.0535674,0.811505,0.344783,0.744537,0.65191,0.381018,0.371142,0.832628,0.324991,0.574939,0.130773,0.18643,0.988385,0.788259,0.427829,0.234269,0.923001,0.505694,0.343861,0.267711,0.143767,0.850547,0.361709,0.981489,0.783624,0.493357,0.149441,0.776537,0.714247,0.0399973,0.837085,0.979307,0.716451,0.257613,0.359246,0.989797,0.915626,0.119603,0.85548,0.585053,0.0469067,0.82173,0.0954224,0.704105,0.992193,0.119097,0.764557,0.184082,0.611958,0.379745,0.215897,0.122522,0.328534,0.176505,0.066242,0.344175,0.716587,0.914032,0.75969,0.976354,0.657602,0.520382,0.255428,0.65279,0.112082,0.304026,0.804223,0.855064,0.598348,0.371753,0.895354,0.00509059,0.571716,0.480132,0.682255,0.821552,0.945087,0.596699,0.490096,0.581511,0.601156,0.203995,0.525797,0.0035398,0.434779,0.751803,0.325039,0.182333,0.110824,0.261195,0.0383514,0.89442,0.399784,0.240561,0.777716,0.613154,0.699911,0.884518,0.912256,0.199571,0.0807604,0.826688,0.00625837,0.0937566,0.928054,0.113449,0.121078,0.935758,0.0753869,0.00294161,0.120107,0.370283,0.548162,0.383725,0.286805,0.462974,0.838531,0.980794,0.0378815,0.181264,0.514584,0.894104,0.24194,0.31788,0.241518,0.481318,0.907201,0.146437,0.787509,0.491659,0.401814,0.269942,0.261738,0.60814,0.670309,0.0574204,0.878652,0.358576,0.379929,0.58125,0.815381,0.270157,0.340247,0.315019,0.549159,0.120211,0.230193,0.517686,0.110869,0.145931,0.230574,0.516366,0.11503,0.893984,0.828057,0.726662,0.783958,0.190638,0.767247,0.795483,0.84525,0.192576,0.487119,0.511572,0.13749,0.279913,0.575575,0.481505,0.352488,0.409377,0.455097,0.208504,0.495419,0.491421,0.994845,0.650281,0.802403,0.609897,0.447198,0.934535,0.182303,0.780383,0.101391,0.147031,0.148655,0.124934,0.872875,0.316707,0.0252506,0.532718,0.371715,0.428185,0.229707,0.345874,0.834132,0.232256,0.428239,0.966689,0.348428,0.10304,0.635332,0.820607,0.873625,0.0422905,0.871674,0.887028,0.849272,0.643497,0.205357,0.260773,0.898682,0.430625,0.694864,0.251855,0.968895,0.985879,0.30326,0.540989,0.871795,0.745455,0.924796,0.58927,0.648027,0.751329,0.969887,0.810547,0.722433,0.453009,0.989469,0.942088,0.618662,0.933385,0.947754,0.742717,0.443158,0.535508,0.503475,0.361658,0.263026,0.841805,0.668316,0.624924,0.324125,0.679486,0.143436,0.511299,0.447611,0.425875,0.59399,0.0613278,0.70646,0.0867788,0.394747,0.755511,0.112747,0.923913,0.760292,0.240863,0.789056,0.804102,0.688189,0.870776,0.480697,0.32258,0.660033,0.234016,0.56438,0.276853,0.530343,0.580828,0.417436,0.139655,0.67375,0.215627,0.567873,0.049436,0.0771918,0.919951,0.595113,0.999933,0.97092,0.791179,0.950091,0.403709,0.181695,0.925655,0.0522493,0.423555,0.873687,0.195887,0.19545,0.615147,0.132074,0.92545,0.244448,0.326823,0.0018509,0.24028,0.688035,0.120864,0.0285615,0.465138,0.978181,0.565658,0.221068,0.238627,0.0216718,0.936768,0.126721,0.107675,0.767292,0.656204,0.364843,0.771528,0.444871,0.635963,0.685045,0.0664812,0.881958,0.0134745,0.375815,0.354777,0.311738,0.694801,0.955268,0.689574,0.372923,0.940841,0.634604,0.889673,0.746447,0.317371,0.560944,0.982643,0.398958,0.689527,0.598086,0.249785,0.219306,0.889944,0.905804,0.0290656,0.00310379,0.696818,0.614164,0.591846,0.642491,0.710247,0.792771,0.981551,0.978704,0.969718,0.0820116,0.362452,0.785043,0.722586,0.468771,0.263946,0.748283,0.557839,0.477963,0.740657,0.984559,0.793649,0.898725,0.124288,0.311839,0.190807,0.370595,0.264872,0.00532967,0.0105526,0.967454,0.873901,0.315742,0.893355,0.23068,0.33366,0.305435,0.312998,0.15557,0.161235,0.808265,0.904252,0.0491222,0.123074,0.800918,0.830677,0.0380138,0.0213405,0.541187,0.592919,0.964728,0.470923,0.0171154,0.367404,0.358964,0.283656,0.133894,0.0737697,0.37925,0.687078,0.856496,0.251573,0.578395,0.863853,0.288811,0.327589,0.733649,0.468562,0.524225,0.687868,0.996761,0.851925,0.139535,0.284839,0.50593,0.187312,0.996963,0.102286,0.00359869,0.257491,0.820088,0.739247,0.677593,0.296497,0.165505,0.259944,0.798356,0.691019,0.577938,0.329202,0.423323,0.819662,0.292598,0.925086,0.21356,0.265657,0.474755,0.206878,0.419489,0.760201,0.102924,0.582929,0.120715,0.313559,0.247784,0.961265,0.304357,0.526513,0.150688,0.334365,0.071522,0.138866,0.590051,0.878867,0.621703,0.165344,0.551569,0.391596,0.289518,0.134139,0.899275,0.442061,0.530407,0.941819,0.2086,0.16307,0.886166,0.340164,0.957057,0.998783,0.888833,0.165132,0.501851,0.380453,0.173812,0.937168,0.628377,0.483627,0.785132,0.332743,0.60905,0.925869,0.751997,0.0405691,0.0499309,0.576684,0.0511774,0.563268,0.541231,0.0883625,0.638824,0.562066,0.852853,0.732447,0.716347,0.264732,0.936601,0.683256,0.440246,0.28664,0.249142,0.844568,0.993632,0.546678,0.468798,0.856247,0.814595,0.0873767,0.167086,0.517098,0.422122,0.996035,0.484556,0.536642,0.393554,0.509478,0.477357,0.175522,0.518921,0.173927,0.218849,0.541206,0.952354,0.102836,0.898281,0.753202,0.906435,0.794707,0.744291,0.361223,0.583638,0.526076,0.976805,0.141821,0.586343,0.689006,0.132166,0.866085,0.606232,0.401144,0.421234,0.429863,0.432211,0.0896427,0.378593,0.667681,0.167435,0.282088,0.90263,0.275399,0.90602,0.450998,0.492259,0.621739,0.391144,0.125981,0.718536,0.0783125,0.189695,0.499925,0.0791324,0.361033,0.585148,0.409688,0.0182827,0.94605,0.629425,0.58873,0.120449,0.95285,0.442514,0.257333,0.00247997,0.226904,0.80362,0.108755,0.414278,0.129722,0.356259,0.137455,0.718568,0.331625,0.26535,0.696962,0.462406,0.296076,0.101168,0.916005,0.772213,0.064028,0.131935,0.416765,0.729615,0.977665,0.159027,0.634809,0.373459,0.797058,0.552665,0.632698,0.646606,0.152365,0.861041,0.460065,0.944922,0.0689808,0.373859,0.391223,0.196727,0.689576,0.704514,0.646139,0.641343,0.846259,0.507056,0.481034,0.10835,0.0821546,0.478095,0.921669,0.82699,0.714636,0.497485,0.558677,0.96323,0.882223,0.688395,0.0393085,0.613346,0.594149,0.970743,0.997652,0.0102432,0.0884049,0.487616,0.614492,0.666924,0.8072,0.461375,0.32935,0.0836729,0.396456,0.156865,0.776847,0.978268,0.62937,0.110923,0.734778,0.385796,0.878224,0.932441,0.033114,0.390247,0.117297,0.708898,0.064586,0.792403,0.0402794,0.413668,0.0710982,0.191174,0.736787,0.20608,0.753667,0.239598,0.93732,0.642546,0.330999,0.462219,0.565526,0.47247,0.00195307,0.299764,0.979851,0.588621,0.0829095,0.784612,0.17329,0.08724,0.500372,0.128513,0.14013,0.659459,0.217709,0.454588,0.921609,0.333214,0.675696,0.848558,0.683811,0.697243,0.235478,0.306239,0.313742,0.484051,0.067255,0.469237,0.670038,0.811133,0.878611,0.731992,0.400888,0.820699,0.923039,0.487716,0.18664,0.842366,0.529136,0.334006,0.359715,0.451781,0.464176,0.434387,0.43715,0.500717,0.659318,0.1985,0.175818,0.528563,0.803414,0.77749,0.495917,0.411105,0.556032,0.676804,0.401157,0.462637,0.80299,0.803912,0.209825,0.68052,0.158202,0.542995,0.617314,0.706833,0.149508,0.478667,0.265477,0.220757,0.432886,0.604844,0.617717,0.66266,0.641686,0.222085,0.219682,0.821936,0.369151,0.116809,0.228577,0.468049,0.753231,0.142173,0.857276,0.0208228,0.583655,0.27068,0.462807,0.566689,0.366721,0.459566,0.698063,0.585559,0.791656,0.689304,0.412357,0.191059,0.875889,0.976976,0.96637,|0.70281,0.403431,0.25659,0.476181,0.659232,0.405152,0.101413,0.957998,0.0663891,0.309202,0.565558,0.336231,0.0437807,0.104989,0.437628,0.503774,0.656527,0.733612,0.534952,0.548488,0.856889,0.080768,0.826619,0.364808,0.790171,0.751884,0.654923,0.00568569,0.984125,0.361772,0.432592,0.998656,0.179559,0.0753037,0.590692,0.200871,0.989755,0.683245,0.517646,0.481034,0.0776183,0.410226,0.426009,0.655016,0.57591,0.639635,0.232417,0.445436,0.411475,0.587063,0.391378,0.824456,0.872628,0.0793663,0.0978473,0.0347745,0.616033,0.587775,0.859577,0.0624297,0.791776,0.388181,0.531951,0.182202,0.434347,0.189085,0.210576,0.481009,0.582054,0.685691,0.488861,0.734405,0.961623,0.434332,0.0253772,0.785719,0.101744,0.801254,0.0688342,0.317851,0.870064,0.406397,0.914122,0.653706,0.855259,0.659821,0.896488,0.678551,0.393139,0.636258,0.960763,0.268037,0.787546,0.302323,0.707818,0.870242,0.0372968,0.925976,0.150742,0.176538,0.399165,0.458611,0.773972,0.9459,0.0866541,0.867809,0.0557463,0.404566,0.413078,0.959072,0.61942,0.470373,0.380525,0.0668383,0.0205975,0.692213,0.154083,0.254604,0.5412,0.97315,0.179621,0.476632,0.686274,0.853705,0.546935,0.561672,0.666265,0.510133,0.869551,0.388715,0.0514861,0.122766,0.394961,0.761563,0.809988,0.222441,0.633101,0.914163,0.808555,0.958773,0.121531,0.29938,0.892154,0.690611,0.868887,0.869872,0.150293,0.647271,0.321228,0.601071,0.102367,0.255254,0.0250542,0.220305,0.615266,0.229935,0.457306,0.903788,0.469233,0.224332,0.870323,0.9859,0.0281167,0.172928,0.755999,0.382314,0.385342,0.635823,0.00453478,0.383828,0.393974,0.706971,0.85118,0.476847,0.00123191,0.675327,0.591759,0.483073,0.455343,0.967565,0.161542,0.912901,0.0494316,0.581649,0.758692,0.681645,0.341679,0.633192,0.143047,0.0410848,0.645156,0.771956,0.214174,0.451759,0.41704,0.983587,0.86531,0.0266583,0.475585,0.956436,0.382082,0.92158,0.163369,0.0335664,0.619593,0.49148,0.751584,0.434254,0.426054,0.847918,0.598539,0.793957,0.674589,0.753331,0.924846,0.444547,0.869718,0.899282,0.290667,0.984734,0.762936,0.372231,0.706674,0.410446,0.556483,0.0362158,0.127729,0.446882,0.284657,0.318976,0.29705,0.89911,0.528869,0.0102956,0.501498,0.564744,0.742962,0.156029,0.794402,0.373222,0.98148,0.337361,0.223803,0.795955,0.0578123,0.131758,0.635975,0.767308,0.781776,0.354204,0.794698,0.620047,0.397446,0.351598,0.433999,0.711604,0.263144,0.550835,0.493891,0.731632,0.0302355,0.256508,0.188754,0.457648,0.259257,0.519675,0.20166,0.116689,0.359558,0.48958,0.803314,0.695088,0.464124,0.462323,0.156968,0.400021,0.728021,0.578266,0.592922,0.0909174,0.246875,0.736574,0.443506,0.648673,0.121714,0.0627751,0.61933,0.787678,0.341186,0.228292,0.0879804,0.228574,0.824169,0.180598,0.169558,0.914819,0.638508,0.404528,0.693258,0.331468,0.455089,0.206152,0.869937,0.723218,0.105654,0.445783,0.495695,0.0912827,0.481265,0.0351584,0.577063,0.873769,0.0300586,0.828933,0.926241,0.898022,0.204971,0.349081,0.471109,0.967869,0.430705,0.626452,0.0919711,0.0519702,0.790619,0.471383,0.0605293,0.559977,0.911155,0.993081,0.948204,0.862792,0.992908,0.594971,0.76838,0.424078,0.991225,0.22335,0.545903,0.323135,0.277677,0.881302,0.757192,0.0200943,0.316625,0.477483,0.474944,0.283601,0.728508,0.0305902,0.603335,0.418911,0.755942,0.000414371,0.105667,0.150188,0.295071,0.522181,0.0204528,0.435214,0.443238,0.989006,0.730497,0.39419,0.816145,0.0292547,0.664867,0.28779,0.00527424,0.652104,0.62624,0.211793,0.603119,0.685547,0.0691264,0.457068,0.952985,0.228632,0.418173,0.549641,0.489034,0.985491,0.351409,0.604164,0.854047,0.603105,0.173976,0.606796,0.980311,0.209887,0.752315,0.0119471,0.822964,0.483069,0.907556,0.814568,0.357602,0.729814,0.183122,0.0172939,0.837077,0.862153,0.8514,0.789619,0.916983,0.990699,0.248799,0.200956,0.952664,0.642938,0.220634,0.610659,0.433895,0.406831,0.932164,0.0478014,0.252114,0.634606,0.722095,0.967045,0.628233,0.269712,0.429587,0.638555,0.777491,0.44569,0.760927,0.181817,0.647572,0.550306,0.569632,0.841475,0.600288,0.775434,0.825719,0.280657,0.195432,0.976028,0.7423,0.933369,0.515643,0.58216,0.358361,0.740952,0.0833753,0.296925,0.32937,0.603137,0.876881,0.0260867,0.563013,0.0169693,0.727118,0.209705,0.34223,0.201697,0.336494,0.547384,0.451503,0.607579,0.98545,0.934228,0.456552,0.334055,0.572059,0.286092,0.0176641,0.59086,0.812924,0.967755,0.230698,0.836402,0.560707,0.511299,0.893689,0.352818,0.810775,0.788379,0.50484,0.576407,0.195636,0.769688,0.301992,0.388877,0.876603,0.769359,0.15541,0.181999,0.625283,0.0964314,0.721986,0.454088,0.509889,0.462692,0.699986,0.657493,0.0967867,0.221035,0.538166,0.041117,0.668087,0.406988,0.881556,0.854362,0.269359,0.668797,0.296861,0.984876,0.856861,0.665003,0.358517,0.104519,0.253899,0.524582,0.670231,0.71084,0.316335,0.909379,0.868549,0.76599,0.704108,0.957559,0.49327,0.582737,0.846927,0.506492,0.277125,0.876866,0.250168,0.14082,0.0531453,0.878865,0.83226,0.718541,0.479395,0.465095,0.598386,0.474482,0.206267,0.466406,0.140145,0.157736,0.289163,0.795793,0.909119,0.939732,0.149236,0.360393,0.603157,0.860257,0.537282,0.381036,0.419152,0.928383,0.11318,0.567896,0.475271,0.677981,0.915739,0.414624,0.298205,0.495867,0.370731,0.72237,0.985331,0.0228468,0.10014,0.49417,0.754023,0.47982,0.565629,0.133157,0.776976,0.121571,0.540487,0.353997,0.131333,0.463791,0.539251,0.42735,0.576799,0.0279134,0.210899,0.429445,0.369717,0.357735,0.267761,0.916301,0.625334,0.554614,0.0420735,0.797576,0.603259,0.2135,0.850361,0.197464,0.868789,0.734853,0.0852289,0.145548,0.817847,0.646767,0.31637,0.28604,0.756632,0.199737,0.980737,0.628366,0.659997,0.244033,0.696706,0.152078,0.81666,0.858142,0.352191,0.283098,0.639492,0.550903,0.0908482,0.772761,0.625359,0.778839,0.564348,0.590745,0.032435,0.265971,0.406977,0.779938,0.857112,0.596524,0.614402,0.454238,0.184097,0.0268734,0.557686,0.856082,0.0112794,0.104438,0.24216,0.775858,0.902774,0.0537536,0.766604,0.295563,0.367422,0.13499,0.0602885,0.800235,0.974954,0.562147,0.817133,0.402488,0.0866561,0.883301,0.446976,0.658598,0.844385,0.210517,0.124405,0.733006,0.168573,0.772287,0.982474,0.996348,0.0549568,0.311779,0.284039,0.0515064,0.902649,0.42359,0.330273,0.218016,0.141304,0.222359,0.75558,0.32512,0.976249,0.807812,0.35436,0.552543,0.670707,0.803094,0.269953,0.119997,0.500423,0.300764,0.763148,0.455049,0.973289,0.946457,0.738524,0.980883,0.855358,0.152693,0.600908,0.639606,0.913368,0.302001,0.432717,0.212308,0.43853,0.102074,0.344681,0.240556,0.498676,0.770332,0.192408,0.625869,0.959598,0.250633,0.308902,0.900191,0.761907,0.439318,0.710974,0.482199,0.0744469,0.632996,0.891179,0.7566,0.621978,0.281307,0.0335038,0.999434,0.327313,0.923937,0.276246,0.849787,0.622465,0.0409623,0.535033,0.142443,0.441762,0.744615,0.255367,0.895952,0.727754,0.324234,0.374647,0.382739,0.207864,0.212823,0.148521,0.106843,0.274605,0.933815,0.632405,0.910524,0.936573,0.208705,0.213475,0.818823,0.0301332,0.211253,0.986046,0.231511,0.550783,0.49511,0.147578,0.4649,0.572608,0.161112,0.525243,0.938462,0.439277,0.531838,0.700192,0.843212,0.742677,0.943819,0.518745,0.187198,0.814847,0.579292,0.0487887,0.96497,0.678852,0.478697,0.338789,0.503081,0.0753435,0.456541,0.301228,0.576881,0.912434,0.931633,0.645071,0.596225,0.809216,0.681504,0.066332,0.416355,0.52571,0.395508,0.432127,0.219657,0.734191,0.553948,0.629774,0.637561,0.429545,0.949556,0.168054,0.856639,0.241448,0.79238,0.340953,0.281758,0.0632821,0.86902,0.852722,0.305335,0.544225,0.35634,0.707589,0.523781,0.886399,0.392852,0.944305,0.0182195,0.207564,0.20357,0.470198,0.00530303,0.429427,0.613476,0.626045,0.509848,0.923668,0.904691,0.77105,0.84301,0.0659559,0.153105,0.00566101,0.88228,0.367352,0.456638,0.541955,0.863873,0.587255,0.977322,0.817814,0.0551707,0.9116,0.974225,0.596304,0.141654,0.216887,0.871611,0.994749,0.357148,0.211273,0.715096,0.224056,0.223829,0.630056,0.0254413,0.360239,0.818309,0.801813,0.745997,0.261875,0.0842861,0.254449,0.678208,0.463381,0.594351,0.902414,0.927005,0.919336,0.857928,0.25897,0.447185,0.0684685,0.571567,0.952873,0.70475,0.234237,0.358682,0.664725,0.347538,0.880708,0.610394,0.227332,0.467582,0.98458,0.730393,0.555812,0.323526,0.138107,0.198464,0.918719,0.186656,0.244396,0.357527,0.875578,0.843961,0.92812,0.401089,0.0984328,0.528974,0.268221,0.168762,0.755462,0.255461,0.696025,0.529876,0.317977,0.468003,0.701615,0.475272,0.312965,0.52541,0.243755,0.123698,0.890946,0.642044,0.64576,0.0997439,0.628309,0.828785,0.458043,0.212728,0.952807,0.292319,0.868962,0.459103,0.23108,0.736014,0.233715,0.0420065,0.0838221,0.795108,0.428962,0.225435,0.982392,0.41473,0.720925,0.541391,0.595944,0.695574,0.841976,0.6869,0.552778,0.629458,0.840484,0.24691,0.325183,0.77673,0.932063,0.57419,0.0901664,0.341764,0.143823,0.238506,0.422726,0.924617,0.594708,0.267205,0.488884,0.112491,0.704446,0.6143,0.43481,0.0915946,0.00963396,0.386968,0.60195,0.231143,0.528985,0.843713,0.161232,0.200582,0.133253,0.335177,0.158986,0.0700939,0.972816,0.141568,0.700798,0.312829,0.678061,0.74308,0.429256,0.38226,0.297046,0.964379,0.553663,0.200493,0.433719,0.680368,0.0405894,0.671088,0.0672774,0.0594078,0.901172,0.0702399,0.491489,0.500783,|0.151186,0.0946586,0.552792,0.115151,0.0726761,0.303168,0.0691999,0.821272,0.695448,0.306012,0.318006,0.684008,0.544037,0.921108,0.69207,0.459653,0.241146,0.468935,0.366717,0.147347,0.275797,0.535334,0.627925,0.427428,0.83368,0.171467,0.156955,0.880715,0.783617,0.320724,0.400154,0.320172,0.0576494,0.235568,0.276047,0.868524,0.44375,0.496082,0.0288625,0.679412,0.856951,0.622887,0.945201,0.804869,0.305301,0.717313,0.789837,0.399317,0.283991,0.36342,0.0955955,0.981868,0.844433,0.0976561,0.0302863,0.944594,0.676121,0.287486,0.756127,0.846416,0.232567,0.128798,0.889698,0.984022,0.535927,0.115508,0.717302,0.505068,0.493267,0.119394,0.479931,0.665647,0.677992,0.732207,0.585103,0.59841,0.538683,0.399758,0.266569,0.481192,0.912829,0.871239,0.667394,0.315338,0.702207,0.843,0.397539,0.509852,0.285701,0.0398687,0.356514,0.536991,0.523431,0.564026,0.494701,0.649168,0.281401,0.536805,0.0608378,0.575347,0.676145,0.738249,0.876709,0.59534,0.693285,0.744197,0.323218,0.713937,0.592852,0.195852,0.490524,0.707984,0.801699,0.112341,0.780587,0.991336,0.900761,0.863132,0.434215,0.878321,0.508557,0.401933,0.0992636,0.78667,0.876546,0.774133,0.734397,0.783688,0.361811,0.489583,0.887734,0.782185,0.524314,0.0220073,0.0254512,0.337858,0.936125,0.372957,0.597726,0.040452,0.889722,0.29416,0.8995,0.80849,0.541672,0.480408,0.0330073,0.557283,0.0776849,0.184956,0.756809,0.864659,0.177013,0.920424,0.652095,0.657099,0.513562,0.795935,0.76118,0.488334,0.962699,0.145137,0.902327,0.569684,0.214846,0.784102,0.686754,0.0261005,0.722327,0.798861,0.72883,0.0904441,0.994056,0.467829,0.42183,0.862491,0.0619663,0.875281,0.478546,0.0410357,0.833097,0.567231,0.364745,0.524667,0.901094,0.390035,0.0276204,0.196361,0.47941,0.244133,0.374694,0.639961,0.0274587,0.156062,0.43526,0.46897,0.261901,0.615775,0.522538,0.698239,0.709549,0.855152,0.655413,0.675761,0.798534,0.387627,0.592383,0.416878,0.549257,0.266388,0.43391,0.633692,0.112984,0.518545,0.539981,0.198366,0.837741,0.0472948,0.938635,0.649085,0.154932,0.6543,0.0500098,0.192295,0.347188,0.507385,0.821755,0.246744,0.511148,0.256263,0.633851,0.514134,0.90824,0.293349,0.474556,0.464133,0.131822,0.86852,0.740383,0.839246,0.655635,0.287907,0.175016,0.202593,0.87877,0.637471,0.679579,0.953067,0.0874028,0.435737,0.759948,0.0331576,0.373469,0.402378,0.73436,0.417237,0.0893363,0.51997,0.362912,0.138782,0.185418,0.0469403,0.622543,0.575324,0.0671766,0.387263,0.378175,0.118949,0.442814,0.588468,0.290362,0.779483,0.114049,0.46719,0.26279,0.396435,0.796044,0.298152,0.969346,0.430786,0.164578,0.0542758,0.437941,0.488497,0.930572,0.890564,0.730963,0.206183,0.647376,0.949739,0.384091,0.707405,0.431949,0.245111,0.278896,0.726595,0.0965241,0.755534,0.986927,0.710762,0.928356,0.401455,0.0987993,0.641461,0.341688,0.879307,0.468534,0.470334,0.958485,0.775604,0.724434,0.795766,0.9315,0.433048,0.87018,0.034821,0.39036,0.143919,0.0550045,0.381863,0.382849,0.341384,0.398048,0.927883,0.148417,0.779828,0.148495,0.987634,0.770452,0.805674,0.986979,0.599239,0.158409,0.577801,0.5807,0.55502,0.0842316,0.140676,0.949214,0.251921,0.525516,0.308741,0.718164,0.910876,0.416929,0.767451,0.151402,0.944362,0.280543,0.101019,0.136239,0.592154,0.360172,0.891356,0.697769,0.777588,0.806238,0.441431,0.0213454,0.429447,0.274841,0.531097,0.429018,0.659327,0.401701,0.523324,0.74474,0.0607972,0.0167918,0.520951,0.0934575,0.990198,0.130434,0.130665,0.427866,0.0441945,0.224333,0.0813491,0.262485,0.440782,0.207155,0.209295,0.870173,0.186969,0.549911,0.501243,0.409084,0.125868,0.11122,0.453264,0.832677,0.856528,0.598549,0.0543714,0.252371,0.706435,0.879552,0.473584,0.833982,0.790638,0.921198,0.831585,0.244104,0.918348,0.0909302,0.829981,0.316774,0.541249,0.759,0.861578,0.424513,0.591914,0.518004,0.0180225,0.868026,0.7907,0.182402,0.212351,0.502949,0.410301,0.566851,0.401171,0.297786,0.131113,0.639402,0.663386,0.454203,0.759828,0.728296,0.886632,0.253044,0.658068,0.0497859,0.738551,0.542946,0.0694126,0.481075,0.698418,0.124633,0.333633,0.857321,0.179071,0.0267296,0.841757,0.824499,0.608106,0.997023,0.920092,0.568622,0.419734,0.922644,0.875233,0.908182,0.956046,0.669756,0.78793,0.670718,0.308105,0.377958,0.228193,0.592943,0.0819532,0.877691,0.935479,0.096808,0.753034,0.68461,0.468929,0.406645,0.882337,0.392154,0.0270676,0.225686,0.644061,0.292157,0.337445,0.822631,0.793072,0.946667,0.0954506,0.501414,0.605021,0.800008,0.203762,0.82551,0.815429,0.0955768,0.223361,0.226777,0.729596,0.239991,0.207796,0.0853211,0.0865583,0.420948,0.445935,0.830278,0.673074,0.218572,0.78043,0.902893,0.769769,0.188517,0.616798,0.170046,0.0393241,0.585201,0.801738,0.377934,0.52702,0.528438,0.061332,0.0601496,0.480588,0.11215,0.630171,0.826443,0.232003,0.0771383,0.626531,0.472043,0.256057,0.506236,0.394013,0.855619,0.775057,0.726537,0.888608,0.187592,0.197572,0.177172,0.70771,0.837076,0.698914,0.104599,0.00196475,0.728244,0.218277,0.915,0.575162,0.231628,0.0976731,0.939465,0.890147,0.741498,0.529292,0.931053,0.344344,0.946787,0.88205,0.962628,0.788644,0.918914,0.596518,0.813911,0.744641,0.070991,0.905767,0.988582,0.517471,0.319938,0.455536,0.559471,0.797066,0.0735456,0.596245,0.415794,0.337701,0.796445,0.10723,0.343518,0.231677,0.398283,0.699749,0.200898,0.122006,0.695714,0.935262,0.969346,0.203112,0.164138,0.454381,0.799736,0.775892,0.914366,0.525211,0.985619,0.755538,0.426739,0.905575,0.183379,0.700218,0.125202,0.141686,0.547482,0.343001,0.305245,0.281694,0.223845,0.603812,0.925472,0.329707,0.914137,0.477635,0.583263,0.537691,0.427734,0.308304,0.2221,0.471469,0.308254,0.580786,0.658633,0.668551,0.461574,0.785808,0.904966,0.771192,0.135325,0.232993,0.770613,0.0208165,0.207161,0.490341,0.861269,0.58282,0.230487,0.0421811,0.377492,0.409001,0.0139977,0.704056,0.194055,0.0687282,0.312733,0.748522,0.696337,0.342776,0.197402,0.950189,0.123845,0.822174,0.332021,0.731597,0.127241,0.0573279,0.499879,0.884717,0.329477,0.613327,0.310495,0.963713,0.622582,0.113489,0.784604,0.852107,0.488754,0.425726,0.434861,0.0648866,0.434386,0.668292,0.737958,0.448953,0.671985,0.555583,0.713072,0.622875,0.0369105,0.803719,0.349604,0.419536,0.976187,0.326893,0.801621,0.343745,0.412015,0.559865,0.831908,0.0441263,0.61638,0.0430163,0.977232,0.0115083,0.0813305,0.3133,0.186368,0.640421,0.0455506,0.493582,0.462938,0.475425,0.0571706,0.696482,0.0134243,0.26272,0.837553,0.076543,0.429206,0.476968,0.197805,0.980791,0.620778,0.379585,0.441173,0.28304,0.0449229,0.384217,0.273712,0.118985,0.628848,0.920494,0.886421,0.955188,0.632004,0.25642,0.493831,0.865636,0.0591215,0.762037,0.461514,0.186582,0.226087,0.458819,0.119451,0.250897,0.392627,0.837875,0.161371,0.171609,0.942878,0.0125533,0.509861,0.68574,0.23989,0.977944,0.795683,0.120571,0.979432,0.730829,0.253108,0.852215,0.00694185,0.207843,0.130324,0.637775,0.749043,0.823959,0.787167,0.942347,0.72828,0.710113,0.0266544,0.221134,0.862989,0.670607,0.714357,0.0630867,0.68179,0.215107,0.697731,0.85598,0.298421,0.514464,0.654719,0.772327,0.486201,0.24405,0.750055,0.268964,0.230322,0.721982,0.284786,0.499675,0.648997,0.0745116,0.651073,0.680599,0.276834,0.119368,0.339361,0.619918,0.473567,0.574485,0.665743,0.142601,0.548402,0.0433172,0.473279,0.853821,0.0253367,0.453111,0.885858,0.879658,0.997329,0.591532,0.313785,0.0590199,0.235625,0.481346,0.691024,0.226497,0.974945,0.266984,0.0914952,0.169373,0.399581,0.62509,0.428785,0.22924,0.962708,0.509086,0.672594,0.817459,0.083766,0.410637,0.265569,0.540468,0.200348,0.135263,0.802484,0.909897,0.875405,0.65437,0.250721,0.479135,0.0711496,0.0209699,0.742728,0.363487,0.0294856,0.466469,0.848913,0.493602,0.339609,0.911956,0.494603,0.490446,0.814523,0.570282,0.644938,0.448908,0.0849043,0.848427,0.415109,0.885605,0.396664,0.270032,0.794979,0.539958,0.294048,0.982211,0.146676,0.122391,0.518648,0.605292,0.0490896,0.161928,0.428259,0.190449,0.0132952,0.636176,0.466256,0.330245,0.452715,0.944471,0.274033,0.831417,0.183495,0.410735,0.699489,0.899654,0.78304,0.061883,0.215536,0.440142,0.758479,0.497639,0.16042,0.321948,0.123666,0.747079,0.0616838,0.397897,0.798475,0.446997,0.307687,0.97654,0.786081,0.549664,0.0371262,0.853162,0.731997,0.973539,0.109871,0.501152,0.394293,0.889131,0.831777,0.415125,0.0271416,0.79594,0.137061,0.18105,0.760884,0.22501,0.784059,0.988895,0.412365,0.754349,0.863964,0.583282,0.100061,0.287268,0.928669,0.463644,0.67073,0.274661,0.708275,0.971832,0.623392,0.795052,0.133839,0.642161,0.668236,0.665166,0.991505,0.109429,0.549968,0.291316,0.896915,0.933777,0.487964,0.524891,0.973884,0.774836,0.904373,0.152294,0.124614,0.311031,0.245179,0.1564,0.435423,0.661956,0.340418,0.754446,0.403183,0.39582,0.688733,0.142356,0.539584,0.927471,0.392807,0.279934,0.186076,0.0218272,0.52682,0.796289,0.298282,0.0478111,0.531768,0.492777,0.046307,0.0529308,0.997607,0.408517,0.0604789,0.00690305,0.523439,0.301983,0.415372,0.000708282,0.412301,0.805806,0.00786781,0.929155,0.266602,0.128093,0.800689,0.933858,0.608005,0.979691,0.77243,0.193451,0.658201,0.828381,0.325106,0.894212,0.789734,0.755638,0.176814,0.548476,0.0367503,0.86722,0.0786893,0.344902,0.961109,0.636883,0.407399,0.0684616,|0.348823,0.631649,0.945883,0.462519,0.235716,0.418372,0.244845,0.78778,0.610556,0.966501,0.53267,0.148364,0.12305,0.0644041,0.10028,0.103769,0.587286,0.119997,0.554209,0.374214,0.0168182,0.616685,0.6544,0.853157,0.549087,0.907124,0.896052,0.609277,0.480042,0.0867429,0.0930247,0.764363,0.932368,0.62806,0.968948,0.28423,0.801834,0.637638,0.601137,0.509532,0.232684,0.505615,0.120194,0.877264,0.717429,0.44798,0.285471,0.39447,0.0487036,0.602091,0.333019,0.0712715,0.46233,0.945606,0.657033,0.409594,0.647256,0.125631,0.442463,0.678193,0.0980218,0.23702,0.946774,0.705728,0.934384,0.193391,0.23009,0.722268,0.115989,0.331768,0.415797,0.150434,0.750029,0.075254,0.139584,0.235993,0.454881,0.693171,0.88391,0.849709,0.598872,0.876812,0.30394,0.685299,0.911679,0.16554,0.543018,0.3058,0.0507128,0.754813,0.465814,0.546573,0.633668,0.515797,0.934825,0.169134,0.523153,0.276002,0.0998386,0.118402,0.812044,0.424577,0.643492,0.0654036,0.182786,0.771611,0.770045,0.207558,0.335945,0.575809,0.77614,0.0733259,0.886984,0.82796,0.482923,0.450184,0.838949,0.484881,0.45419,0.379193,0.441587,0.250757,0.747456,0.932214,0.153376,0.448377,0.260663,0.385251,0.988803,0.780011,0.758718,0.193547,0.61401,0.544553,0.864579,0.445187,0.704259,0.308127,0.790649,0.459686,0.941144,0.636902,0.715046,0.803539,0.417627,0.939302,0.572852,0.186714,0.18606,0.32857,0.080009,0.515048,0.514952,0.254969,0.391912,0.116727,0.854386,0.916856,0.772995,0.956943,0.631741,0.27406,0.238535,0.786517,0.668037,0.915578,0.170811,0.687655,0.996236,0.735651,0.0862911,0.380969,0.530192,0.854402,0.691043,0.0200768,0.754358,0.118046,0.406931,0.950513,0.730997,0.683209,0.678044,0.214725,0.663765,0.690658,0.526486,0.365957,0.737884,0.0613762,0.289454,0.296196,0.660729,0.810551,0.780152,0.52565,0.514214,0.76142,0.317829,0.101169,0.644565,0.0217103,0.890449,0.0766392,0.448346,0.470531,0.623599,0.394104,0.393267,0.0649046,0.831851,0.379261,0.455759,0.964157,0.361869,0.468377,0.628317,0.430637,0.407108,0.152453,0.82426,0.941652,0.686827,0.439882,0.453338,0.209907,0.104018,0.202994,0.828179,0.364879,0.232332,0.123621,0.317336,0.989801,0.169111,0.97346,0.730482,0.0538542,0.742362,0.706306,0.652556,0.354672,0.732528,0.846107,0.0539988,0.860176,0.0120161,0.244002,0.965089,0.603929,0.417827,0.848376,0.976015,0.164038,0.443296,0.987059,0.370087,0.409062,0.959462,0.0862802,0.357067,0.221021,0.477076,0.872823,0.640692,0.0195138,0.225191,0.702159,0.820361,0.280333,0.877849,0.143257,0.56165,0.992612,0.332253,0.116464,0.562862,0.115467,0.753316,0.82558,0.214493,0.883168,0.705193,0.618457,0.333437,0.0523519,0.397024,0.579056,0.391143,0.332101,0.0987003,0.388934,0.0502681,0.289873,0.272897,0.569392,0.555653,0.541017,0.843655,0.450811,0.962276,0.016469,0.864213,0.436379,0.00947464,0.402004,0.351766,0.970286,0.645868,0.910331,0.989,0.916349,0.621323,0.885946,0.124248,0.0560713,0.626338,0.786756,0.540974,0.90671,0.570908,0.847214,0.095535,0.549397,0.377738,0.945719,0.875639,0.0824238,0.359208,0.493751,0.482717,0.334837,0.784705,0.632419,0.409861,0.204925,0.822939,0.503151,0.785076,0.551379,0.321314,0.141745,0.981682,0.614578,0.264077,0.456506,0.617295,0.729831,0.0138591,0.454365,0.0271673,0.314307,0.992067,0.483401,0.738874,0.175058,0.182859,0.373157,0.656024,0.553203,0.0855013,0.75776,0.200585,0.121054,0.567802,0.796494,0.569782,0.851345,0.5792,0.376689,0.391776,0.595261,0.390329,0.621482,0.142134,0.433783,0.861064,0.440093,0.397493,0.309841,0.77829,0.541596,0.882816,0.540702,0.361483,0.765566,0.81976,0.0251669,0.017759,0.517747,0.589812,0.712442,0.650466,0.666608,0.371519,0.885661,0.0917498,0.452976,0.757063,0.390287,0.238787,0.7157,0.355459,0.0128456,0.577058,0.976564,0.608838,0.270294,0.532161,0.112087,0.643035,0.445091,0.77067,0.192704,0.694841,0.627806,0.538642,0.328093,0.0069809,0.239467,0.0476101,0.832592,0.271745,0.483633,0.595602,0.657267,0.506076,0.90319,0.0648752,0.153279,0.825735,0.769679,0.432647,0.461045,0.349947,0.125925,0.492925,0.849089,0.922294,0.627101,0.509371,0.568428,0.0182824,0.798233,0.950413,0.394903,0.882446,0.446471,0.666978,0.955698,0.70643,0.00622147,0.551783,0.0303398,0.871756,0.0156348,0.293288,0.103306,0.598716,0.293069,0.496504,0.266333,0.2359,0.608672,0.812747,0.231134,0.985402,0.196292,0.553652,0.322432,0.670438,0.940974,0.843401,0.124236,0.109514,0.582285,0.312408,0.492622,0.0368974,0.496341,0.992108,0.00188565,0.746743,0.0989744,0.488854,0.932902,0.946466,0.470383,0.142472,0.591178,0.518363,0.418666,0.0386438,0.754668,0.928486,0.59259,0.497097,0.717856,0.693446,0.627393,0.805666,0.0166126,0.667848,0.842879,0.33447,0.645424,0.143662,0.500423,0.152586,0.0272888,0.145005,0.785306,0.637428,0.453817,0.265024,0.263587,0.87021,0.502023,0.190467,0.525586,0.428376,0.0860798,0.821184,0.686817,0.131163,0.990607,0.257722,0.105637,0.442604,0.0721059,0.636157,0.89506,0.136156,0.432148,0.755821,0.44825,0.0508146,0.585504,0.865325,0.414389,0.419082,0.274959,0.670624,0.498449,0.141897,0.450773,0.475736,0.566201,0.81844,0.185028,0.224656,0.488059,0.661577,0.480768,0.746344,0.735136,0.786169,0.817007,0.595392,0.820358,0.0800736,0.779853,0.235498,0.97275,0.649863,0.927661,0.714239,0.395073,0.937168,0.998357,0.639452,0.115139,0.635321,0.301505,0.987123,0.438183,0.712304,0.569942,0.161292,0.0320739,0.935321,0.982231,0.747011,0.105388,0.0457531,0.643317,0.527276,0.526834,0.655739,0.998529,0.27306,0.922455,0.141894,0.53698,0.331303,0.89098,0.0703011,0.206285,0.297694,0.453723,0.55259,0.187274,0.327291,0.304045,0.663027,0.549997,0.448095,0.514007,0.349084,0.298898,0.0863426,0.564582,0.756427,0.117579,0.0719211,0.142264,0.437941,0.725683,0.145931,0.336625,0.0606484,0.577068,0.582101,0.632116,0.673829,0.938708,0.935935,0.144661,0.294303,0.5891,0.230003,0.0930509,0.849046,0.959019,0.87146,0.0616419,0.883773,0.747823,0.170799,0.727675,0.791524,0.803161,0.202303,0.873325,0.481448,0.635491,0.707668,0.652947,0.538326,0.0300711,0.637685,0.730896,0.634421,0.267017,0.304783,0.0563954,0.174884,0.334748,0.547223,0.682696,0.630011,0.227148,0.277854,0.379559,0.169624,0.933002,0.995054,0.205195,0.611953,0.024681,0.54206,0.376097,0.0510257,0.0439461,0.390761,0.254249,0.618899,0.293741,0.921688,0.518394,0.457161,0.685816,0.970025,0.640347,0.302012,0.351084,0.534336,0.6522,0.0159884,0.434056,0.21972,0.283585,0.67515,0.367617,0.724901,0.368465,0.43014,0.491351,0.463519,0.579367,0.385693,0.308371,0.508306,0.776792,0.0447022,0.14099,0.976104,0.166657,0.705905,0.968604,0.18355,0.717918,0.606313,0.314628,0.902753,0.619973,0.0773073,0.656904,0.362712,0.246233,0.991191,0.932665,0.9949,0.352715,0.297087,0.267223,0.361123,0.291037,0.148604,0.527878,0.91729,0.696909,0.421009,0.768183,0.528643,0.0704371,0.1794,0.648943,0.166015,0.0324842,0.628988,0.376432,0.277215,0.34607,0.421662,0.341636,0.763497,0.537625,0.239885,0.692692,0.0327846,0.00335693,0.191885,0.368014,0.815192,0.648514,0.54112,0.307852,0.656381,0.683975,0.748379,0.90734,0.854299,0.214095,0.26452,0.230344,0.366908,0.116645,0.617919,0.135021,0.506084,0.632186,0.60086,0.357064,0.676257,0.782926,0.351353,0.225337,0.235566,0.914726,0.331162,0.379784,0.353788,0.889273,0.81025,0.786269,0.924548,0.348412,0.714412,0.708645,0.660426,0.179845,0.184702,0.727955,0.138181,0.670206,0.819221,0.263843,0.0532589,0.115785,0.133132,0.182084,0.929529,0.851978,0.994807,0.120396,0.327267,0.501208,0.117253,0.352045,0.819258,0.528339,0.0834572,0.0995079,0.930503,0.821347,0.63964,0.330587,0.0587907,0.238785,0.426538,0.517682,0.754513,0.860723,0.761273,0.935579,0.486786,0.732676,0.528839,0.738669,0.931602,0.86706,0.823022,0.53266,0.550756,0.889015,0.883964,0.950472,0.150083,0.60745,0.313557,0.746356,0.549779,0.197702,0.442113,0.742979,0.732381,0.0505885,0.266443,0.882877,0.808082,0.278849,0.0681429,0.10794,0.961857,0.610256,0.699457,0.497719,0.0526867,0.114852,0.762249,0.940505,0.153313,0.797563,0.390055,0.000335634,0.685238,0.620312,0.383828,0.635108,0.18613,0.389561,0.0168239,0.949766,0.498613,0.256472,0.803775,0.452579,0.0441073,0.437829,0.339906,0.989603,0.73191,0.277244,0.32738,0.797751,0.445979,0.170108,0.962111,0.0500596,0.718722,0.947232,0.990585,0.789783,0.487659,0.300649,0.944329,0.533689,0.827987,0.831389,0.693097,0.49076,0.930057,0.735746,0.20818,0.791403,0.308981,0.299626,0.508462,0.970022,0.43153,0.384206,0.81653,0.412525,0.903964,0.511453,0.545876,0.414545,0.0990501,0.423127,0.34753,0.29733,0.49179,0.908988,0.85843,0.121291,0.594138,0.583674,0.504832,0.568698,0.522862,0.0190507,0.580032,0.135087,0.73128,0.286737,0.574689,0.28325,0.8705,0.271061,0.931099,0.226704,0.691776,0.0835526,0.231808,0.398152,0.498519,0.243629,0.96005,0.952772,0.156588,0.524155,0.98065,0.417,0.0830536,0.23044,0.670792,0.778419,0.864125,0.674129,0.200623,0.153951,0.0743489,0.443042,0.798203,0.474599,0.989498,0.991373,0.755339,0.638391,0.175931,0.919568,0.686285,0.11923,0.374667,0.884962,0.284163,0.863573,0.923065,0.406353,0.180906,0.97825,0.00840592,0.513636,0.343585,0.202529,0.883979,0.544264,0.163862,0.119371,0.042102,0.517243,0.879177,0.808214,0.663393,0.28704,0.591553,0.742281,0.521764,0.647441,|0.883271,0.905929,0.751828,0.917695,0.0422603,0.797695,0.0429575,0.106517,0.476469,0.775795,0.368411,0.748398,0.859704,0.566093,0.997285,0.564744,0.340999,0.0852806,0.826094,0.236992,0.800154,0.422969,0.267622,0.0170147,0.698075,0.459371,0.279364,0.212212,0.775429,0.335405,0.00492102,0.86971,0.812065,0.248902,0.489137,0.375427,0.81686,0.366567,0.230525,0.481722,0.983737,0.723119,0.0478582,0.275694,0.698618,0.875651,0.404096,0.00350571,0.682803,0.672658,0.90598,0.45942,0.909674,0.894375,0.262443,0.0698782,0.509619,0.249348,0.624748,0.989235,0.0588405,0.0395435,0.830928,0.868984,0.905931,0.286885,0.366816,0.601012,0.091778,0.887703,0.758473,0.162761,0.800322,0.529739,0.701706,0.963162,0.918327,0.397946,0.938162,0.463979,0.413411,0.480716,0.976464,0.650119,0.426179,0.269043,0.226512,0.563902,0.943198,0.611047,0.346922,0.587145,0.63968,0.299419,0.992187,0.865435,0.914393,0.235878,0.49607,0.710295,0.198188,0.518727,0.0372516,0.442606,0.100618,0.171214,0.61106,0.728609,0.12941,0.729477,0.456283,0.540033,0.991159,0.586662,0.186611,0.398945,0.240837,0.560679,0.70437,0.486839,0.367475,0.487145,0.403265,0.882533,0.808905,0.0373722,0.921754,0.650238,0.295398,0.769173,0.250047,0.844129,0.29594,0.65564,0.626216,0.250156,0.17736,0.37069,0.694591,0.106421,0.601362,0.949716,0.521361,0.931411,0.166175,0.961947,0.524788,0.346829,0.313722,0.657067,0.120916,0.395639,0.313561,0.0860388,0.460241,0.981666,0.780211,0.270907,0.219015,0.226112,0.794926,0.468851,0.596368,0.735572,0.54264,0.494874,0.157591,0.535944,0.124132,0.989641,0.0488698,0.141307,0.534562,0.473914,0.0580834,0.221023,0.595953,0.109549,0.352,0.22522,0.710836,0.171835,0.63321,0.256596,0.61441,0.554864,0.0761816,0.931101,0.752261,0.805953,0.25063,0.47205,0.839218,0.811611,0.376339,0.279363,0.302987,0.855129,0.230764,0.581047,0.626098,0.674123,0.340146,0.893378,0.405528,0.994319,0.287286,0.757356,0.636544,0.469471,0.894742,0.29731,0.759693,0.40297,0.549722,0.863553,0.867688,0.452757,0.143284,0.974341,0.532003,0.455488,0.267191,0.90828,0.575383,0.65021,0.482007,0.20108,0.985697,0.567823,0.657741,0.945251,0.264012,0.805174,0.774772,0.685153,0.129325,0.407751,0.547156,0.581595,0.388912,0.145328,0.978794,0.143131,0.366181,0.878079,0.345866,0.26649,0.0871687,0.446341,0.832249,0.293644,0.808027,0.90447,0.708025,0.816073,0.416529,0.73439,0.786255,0.249017,0.610129,0.29024,0.523343,0.019976,0.5874,0.901719,0.406914,0.274528,0.404773,0.0404654,0.574837,0.117791,0.0558695,0.361863,0.889275,0.455404,0.306289,0.296065,0.660316,0.353153,0.0343874,0.327237,0.397562,0.447762,0.572309,0.261543,0.0170803,0.967046,0.433841,0.563623,0.481621,0.2311,0.213044,0.859555,0.974796,0.281924,0.226511,0.776518,0.974927,0.811383,0.885152,0.796748,0.771092,0.330395,0.251739,0.466753,0.935748,0.713789,0.50878,0.22764,0.716594,0.161644,0.556167,0.0930322,0.122536,0.446662,0.804103,0.549031,0.5513,0.490625,0.75029,0.806273,0.254195,0.203323,0.978971,0.420409,0.343089,0.397606,0.831356,0.720549,0.467978,0.520151,0.524191,0.53936,0.396006,0.825847,0.469749,0.614567,0.0928584,0.671613,0.195543,0.303525,0.694627,0.485884,0.555879,0.393821,0.758135,0.295817,0.397899,0.155625,0.58153,0.942659,0.257879,0.559867,0.00710136,0.708637,0.515615,0.0597034,0.387387,0.0575286,0.659367,0.922551,0.616494,0.396501,0.96153,0.507421,0.360722,0.548025,0.794595,0.00680089,0.144058,0.373329,0.989197,0.260929,0.276333,0.430409,0.383,0.465603,0.927558,0.564055,0.603416,0.783503,0.975143,0.41995,0.824995,0.913798,0.65164,0.112069,0.134492,0.143146,0.0528098,0.0577094,0.448664,0.898314,0.0154957,0.882258,0.763361,0.21586,0.485052,0.0517966,0.108997,0.605524,0.113206,0.22287,0.508501,0.864139,0.729388,0.912236,0.449999,0.663606,0.867389,0.208021,0.184663,0.00943369,0.300147,0.879212,0.990207,0.116525,0.677372,0.643191,0.0670003,0.303036,0.892341,0.105744,0.0428036,0.681458,0.630218,0.530332,0.0155879,0.160395,0.838248,0.368716,0.717187,0.251855,0.684975,0.0889384,0.229831,0.282924,0.737566,0.334485,0.218668,0.395068,0.0999515,0.454434,0.960115,0.175531,0.276965,0.132887,0.321693,0.516759,0.157373,0.664858,0.42934,0.0801818,0.238158,0.299368,0.43855,0.420849,0.469218,0.546181,0.0466861,0.253223,0.220079,0.693098,0.108107,0.257446,0.0642661,0.127821,0.428389,0.885301,0.448097,0.374749,0.42987,0.781642,0.434502,0.228394,0.434059,0.380919,0.533343,0.882006,0.414299,0.143854,0.123766,0.913448,0.906326,0.568197,0.594204,0.517473,0.0997332,0.323054,0.702722,0.359153,0.344936,0.546522,0.908628,0.284066,0.994768,0.476959,0.604864,0.129034,0.429096,0.881777,0.388238,0.420883,0.917986,0.498788,0.561112,0.421952,0.638599,0.829925,0.460379,0.719849,0.255498,0.745573,0.749758,0.00468796,0.258151,0.0910487,0.103566,0.437894,0.0715751,0.707901,0.892342,0.256208,0.503515,0.486962,0.947793,0.534035,0.863857,0.582158,0.181686,0.614649,0.223203,0.592533,0.594617,0.447012,0.44561,0.986499,0.661336,0.369399,0.601504,0.908553,0.547666,0.859779,0.226062,0.356166,0.771419,0.530253,0.799144,0.00318527,0.0940543,0.710424,0.236644,0.412079,0.159354,0.186091,0.547602,0.724957,0.651736,0.780221,0.545001,0.516986,0.20603,0.834749,0.948047,0.300281,0.529529,0.471934,0.812356,0.81143,0.686932,0.912582,0.259908,0.804722,0.959133,0.862435,0.999741,0.51985,0.214554,0.842355,0.683534,0.196847,0.936293,0.117499,0.92069,0.265269,0.797835,0.132856,0.127539,0.872236,0.954696,0.563857,0.474717,0.511392,0.478385,0.818987,0.451284,0.075891,0.0146352,0.26646,0.0309115,0.192868,0.145234,0.487047,0.261225,0.578453,0.471834,0.555123,0.961613,0.514802,0.0794321,0.786487,0.497583,0.423899,0.397282,0.888499,0.724364,0.872001,0.156331,0.034389,0.0410764,0.835131,0.932921,0.914087,0.214544,0.00304216,0.327931,0.167326,0.0806664,0.506169,0.609392,0.828109,0.110892,0.581591,0.0156478,0.629461,0.230528,0.78404,0.719048,0.0925659,0.907482,0.606574,0.497864,0.66717,0.605816,0.400429,0.703922,0.102182,0.649887,0.329202,0.299531,0.947077,0.887977,0.516721,0.910347,0.830381,0.495966,0.692325,0.747155,0.969993,0.529566,0.342459,0.162524,0.473546,0.676897,0.955868,0.0900216,0.9833,0.959496,0.354582,0.796916,0.39937,0.841918,0.983995,0.133343,0.793906,0.584661,0.940519,0.180737,0.376794,0.82065,0.479332,0.283472,0.620876,0.446083,0.844219,0.774348,0.245362,0.521203,0.28417,0.00273931,0.570417,0.77383,0.587339,0.999085,0.176153,0.337319,0.478956,0.269737,0.16762,0.0674419,0.59785,0.282213,0.985413,0.921046,0.958879,0.00505823,0.745782,0.0139602,0.401562,0.591475,0.182949,0.502513,0.338944,0.656676,0.610712,0.652828,0.797327,0.501654,0.679037,0.127646,0.298886,0.829291,0.646187,0.545872,0.186826,0.493707,0.414092,0.0619681,0.343286,0.732606,0.898732,0.797817,0.935854,0.943956,0.495124,0.890946,0.221038,0.780221,0.202609,0.918444,0.361847,0.105173,0.832267,0.809184,0.912706,0.0777786,0.827361,0.990486,0.639231,0.622457,0.287461,0.632343,0.997469,0.781762,0.0105611,0.289644,0.962604,0.96631,0.40276,0.0319282,0.526438,0.0435264,0.747059,0.614105,0.877089,0.518576,0.34496,0.942252,0.347326,0.18552,0.726326,0.393628,0.76963,0.663594,0.685235,0.260016,0.0410512,0.0370227,0.544143,0.103473,0.395858,0.10929,0.741109,0.662081,0.301957,0.756583,0.854434,0.6886,0.353401,0.32348,0.241545,0.626159,0.887365,0.325052,0.110994,0.746319,0.0451784,0.885964,0.052404,0.529785,0.46769,0.161725,0.387172,0.773178,0.796529,0.317576,0.573719,0.429962,0.582299,0.368448,0.849349,0.82707,0.0093509,0.171457,0.315212,0.0466587,0.959301,0.971332,0.184742,0.197027,0.960996,0.294302,0.540681,0.82603,0.174984,0.642623,0.0822126,0.24401,0.694554,0.277962,0.5107,0.449125,0.517203,0.913478,0.00434929,0.144603,0.260304,0.29011,0.890097,0.224295,0.0839331,0.284757,0.169107,0.988485,0.077674,0.132227,0.815145,0.638187,0.367667,0.737489,0.759299,0.403659,0.524456,0.807316,0.839895,0.942832,0.31071,0.437528,0.185382,0.929814,0.589145,0.307022,0.567886,0.194183,0.528445,0.181634,0.309503,0.234325,0.777788,0.785485,0.64613,0.503536,0.795317,0.933025,0.0512846,0.0894632,0.00712091,0.243827,0.174495,0.116042,0.881357,0.181555,0.851922,0.619734,0.0641761,0.256476,0.265729,0.22016,0.788149,0.112712,0.932888,0.164126,0.153648,0.228299,0.407592,0.628819,0.148524,0.61162,0.297597,0.606714,0.232438,0.544464,0.393712,0.745794,0.585362,0.971528,0.298294,0.00757307,0.833645,0.300226,0.750074,0.385925,0.985181,0.0984355,0.656451,0.35383,0.646348,0.843346,0.212579,0.984637,0.574313,0.0954072,0.879059,0.307699,0.292679,0.0743127,0.0180624,0.0157009,0.0169839,0.233707,0.421005,0.204763,0.990914,0.392147,0.476543,0.8882,0.0732462,0.435358,0.739077,0.63909,0.072233,0.650181,0.797978,0.235614,0.646156,0.329249,0.18374,0.225832,0.188994,0.999654,0.0790772,0.0462834,0.538404,0.966961,0.963291,0.146988,0.818638,0.78682,0.758948,0.558975,0.988449,0.17593,0.374638,0.755962,0.0504558,0.720592,0.719857,0.856939,0.081063,0.560005,0.741549,0.0387686,0.434997,0.32798,0.0409892,0.44271,0.527117,0.332529,0.730163,0.589356,0.518312,0.149742,0.486032,0.663185,0.348193,0.817149,0.962941,0.407592,0.571558,0.0302997,0.292338,0.814478,0.193987,0.0581138,0.37704,0.391762,0.0229101,0.839632,0.607832,|0.65869,0.175645,0.295194,0.887195,0.992706,0.216738,0.779192,0.837486,0.288908,0.305871,0.331742,0.414582,0.275051,0.0270044,0.161538,0.867929,0.736725,0.704366,0.293632,0.218604,0.553838,0.153277,0.964135,0.649732,0.466571,0.545712,0.747308,0.483794,0.312814,0.654083,0.791868,0.323059,0.204575,0.946557,0.719603,0.898279,0.443556,0.121802,0.459106,0.940629,0.836393,0.404518,0.0754609,0.225844,0.669924,0.936421,0.721219,0.915415,0.115836,0.6832,0.216754,0.504522,0.664512,0.392106,0.977966,0.681445,0.784801,0.00286496,0.690039,0.529451,0.618703,0.22906,0.580792,0.51285,0.489824,0.588447,0.0850996,0.224936,0.234166,0.328388,0.700607,0.726029,0.104857,0.570325,0.15959,0.715128,0.611248,0.336162,0.962574,0.810632,0.0721942,0.11393,0.590708,0.696022,0.711621,0.35662,0.645426,0.822863,0.4679,0.217233,0.959504,0.97005,0.434973,0.799061,0.996328,0.569523,0.62866,0.146026,0.199979,0.0529163,0.645499,0.101955,0.997849,0.693172,0.408155,0.81007,0.636077,0.341752,0.0227104,0.444276,0.254946,0.185871,0.479871,0.728584,0.893965,0.280855,0.0152964,0.0218198,0.806355,0.0584328,0.672907,0.0243949,0.921258,0.19324,0.0234255,0.0620126,0.917837,0.563352,0.165845,0.284378,0.623207,0.803979,0.603592,0.590158,0.541871,0.590878,0.729334,0.487917,0.474151,0.341035,0.0968908,0.527225,0.350639,0.602176,0.0547962,0.0242773,0.812033,0.300978,0.0554133,0.900595,0.268522,0.423368,0.3944,0.675731,0.871468,0.440971,0.756224,0.818954,0.0973783,0.113974,0.0916971,0.516537,0.57796,0.0184733,0.31118,0.396759,0.601196,0.493478,0.312655,0.558342,0.660631,0.810755,0.799088,0.702842,0.638657,0.618394,0.739089,0.75319,0.909918,0.433961,0.326759,0.609556,0.0213244,0.81651,0.838873,0.122319,0.22728,0.948923,0.168296,0.944968,0.256379,0.357695,0.125594,0.300235,0.0724056,0.815872,0.250955,0.0857224,0.314658,0.545987,0.466877,0.455414,0.317022,0.311928,0.990535,0.256051,0.788563,0.891106,0.14132,0.104196,0.733813,0.35878,0.307913,0.157937,0.785498,0.674697,0.737354,0.745553,0.716137,0.574756,0.728153,0.437913,0.664449,0.681605,0.640733,0.484847,0.465269,0.0969186,0.319076,0.634798,0.571985,0.40154,0.324893,0.682225,0.413175,0.710401,0.837581,0.226291,0.579886,0.178818,0.468078,0.709661,0.863205,0.86125,0.865109,0.394678,0.954926,0.294069,0.951143,0.414981,0.405222,0.81449,0.681686,0.347032,0.352251,0.662226,0.0421322,0.242654,0.83573,0.66521,0.2695,0.512891,0.692082,0.831838,0.686541,0.0320097,0.214802,0.489439,0.266416,0.918499,0.0936908,0.459837,0.020367,0.581771,0.434124,0.324566,0.280097,0.383178,0.413831,0.983859,0.341349,0.413836,0.359593,0.0665511,0.0601125,0.370887,0.846422,0.281622,0.292833,0.42258,0.246387,0.281176,0.177853,0.0426469,0.700864,0.365213,0.373102,0.658925,0.0111985,0.797257,0.035808,0.284607,0.679149,0.356358,0.637756,0.811874,0.624148,0.706231,0.38736,0.996691,0.23039,0.0432916,0.45804,0.302382,0.0848513,0.634935,0.212047,0.679978,0.775234,0.815056,0.860613,0.951752,0.734958,0.00540715,0.314457,0.172772,0.997481,0.0401518,0.193537,0.482223,0.46791,0.1827,0.128961,0.285597,0.946498,0.164784,0.975819,0.0438504,0.0431023,0.384405,0.395631,0.0330946,0.446949,0.306087,0.672094,0.19408,0.340365,0.835117,0.131015,0.59071,0.962517,0.350625,0.452946,0.967151,0.293337,0.593686,0.834086,0.0650626,0.0581661,0.755275,0.244511,0.737909,0.105431,0.761725,0.784686,0.109709,0.5765,0.259323,0.242838,0.550866,0.281643,0.515691,0.658577,0.202724,0.38297,0.3998,0.0989903,0.893202,0.510726,0.471015,0.994218,0.684115,0.729921,0.689767,1.40667e-05,0.859874,0.304432,0.524396,0.722854,0.366222,0.826994,0.26731,0.0223632,0.43853,0.902316,0.560122,0.794453,0.319608,0.0165064,0.881116,0.0818314,0.0789576,0.849721,0.292417,0.233497,0.24159,0.0516404,0.184335,0.880965,0.588051,0.37035,0.3051,0.941152,0.877908,0.82088,0.0717376,0.360254,0.585521,0.709636,0.762954,0.935937,0.770999,0.597106,0.0874824,0.350574,0.520737,0.596037,0.705011,0.364928,0.0612625,0.326424,0.465396,0.938712,0.022205,0.328489,0.498184,0.526866,0.835377,0.625618,0.443569,0.0870327,0.83326,0.840909,0.853848,0.511209,0.107173,0.52018,0.091821,0.538792,0.283112,0.238908,0.327495,0.0929633,0.53376,0.782369,0.0750061,0.881821,0.370713,0.791724,0.44511,0.0733641,0.801635,0.68848,0.0564272,0.491086,0.926765,0.986101,0.0679422,0.393472,0.766628,0.750306,0.836447,0.396509,0.920333,0.687302,0.713825,0.0224714,0.144415,0.787788,0.611697,0.510116,0.564012,0.503887,0.681957,0.123756,0.473697,0.236188,0.183597,0.813176,0.0323076,0.23227,0.235249,0.216073,0.0541422,0.842722,0.884884,0.0785117,0.0934135,0.419495,0.548925,0.769997,0.615055,0.684029,0.603436,0.962169,0.326359,0.929905,0.0909774,0.836519,0.664588,0.595233,0.960255,0.971542,0.290034,0.632584,0.727463,0.341585,0.558602,0.77168,0.136441,0.297848,0.319591,0.914594,0.579735,0.72945,0.0937557,0.757354,0.177997,0.43824,0.521836,0.845136,0.00601387,0.411062,0.745264,0.440526,0.533102,0.183145,0.632381,0.0448389,0.200829,0.799736,0.00383931,0.965256,0.765432,0.707408,0.237092,0.992151,0.104659,0.167143,0.985668,0.385424,0.673901,0.0683767,0.0992472,0.16508,0.0762523,0.802104,0.883381,0.271353,0.878772,0.668318,0.495411,0.960658,0.245857,0.384689,0.0142604,0.435157,0.466834,0.242501,0.984572,0.0437616,0.37935,0.213141,0.724901,0.151376,0.603571,0.379336,0.80815,0.977798,0.449279,0.831073,0.147917,0.939604,0.692451,0.607881,0.930313,0.734145,0.328555,0.261475,0.778708,0.839786,0.639851,0.63599,0.515279,0.910011,0.938195,0.616584,0.380496,0.755455,0.0382078,0.296786,0.466542,0.317587,0.565701,0.896027,0.0258408,0.602199,0.132502,0.200029,0.367026,0.261939,0.169047,0.0185698,0.976131,0.201498,0.567921,0.538224,0.260842,0.0441445,0.404909,0.0602911,0.0402662,0.644107,0.11781,0.0735935,0.371551,0.152184,0.306196,0.838718,0.993995,0.0762564,0.51065,0.98832,0.767833,0.160134,0.511005,0.470134,0.82164,0.0497055,0.49091,0.606732,0.611716,0.597045,0.311453,0.274717,0.775998,0.297297,0.540591,0.573966,0.657971,0.22188,0.0397949,0.297099,0.293635,0.96118,0.0162542,0.918657,0.600188,0.91425,0.277302,0.995824,0.438346,0.0414495,0.279533,0.551549,0.511263,0.773976,0.386707,0.919075,0.884128,0.0871715,0.171326,0.698127,0.37217,0.905248,0.069066,0.944178,0.686336,0.709332,0.784956,0.488566,0.594687,0.103253,0.107476,0.728303,0.28755,0.72078,0.350861,0.098998,0.486849,0.6086,0.203153,0.246726,0.747511,0.136612,0.34064,0.47845,0.545538,0.143663,0.854074,0.421333,0.552658,0.932637,0.515085,0.722749,0.642699,0.652554,0.140467,0.672617,0.105621,0.5642,0.959283,0.280846,0.790396,0.0966696,0.997012,0.932596,0.477916,0.848889,0.0710292,0.518308,0.843644,0.0413204,0.195333,0.720439,0.888881,0.084186,0.342128,0.105238,0.579648,0.446836,0.434546,0.227232,0.743895,0.537438,0.467967,0.976069,0.077911,0.987302,0.19391,0.0136586,0.568368,0.581429,0.414683,0.45064,0.883597,0.124397,0.150309,0.877041,0.851425,0.180001,0.703703,0.827594,0.938011,0.0778924,0.451746,0.192252,0.162813,0.811959,0.948804,0.134648,0.802463,0.492121,0.191934,0.812983,0.503964,0.411518,0.0689072,0.0145527,0.20042,0.542976,0.267155,0.163438,0.152335,0.214264,0.0355452,0.47558,0.594433,0.200681,0.240619,0.909916,0.841462,0.898642,0.11456,0.580399,0.513834,0.0209102,0.584728,0.942628,0.426426,0.327518,0.510438,0.535908,0.232707,0.260745,0.466165,0.501676,0.622717,0.628959,0.101081,0.46571,0.374297,0.257198,0.10034,0.735859,0.787403,0.530287,0.348515,0.504137,0.498272,0.455994,0.490018,0.332868,0.838392,0.0430766,0.498786,0.514534,0.313716,0.546103,0.404275,0.218323,0.571872,0.506794,0.990918,0.518466,0.391911,0.252206,0.267317,0.570436,0.766967,0.679517,0.917338,0.852674,0.566604,0.616686,0.354868,0.56991,0.378877,0.745024,0.368419,0.70705,0.985296,0.312126,0.553967,0.818619,0.656774,0.730405,0.269296,0.656518,0.290095,0.425322,0.768887,0.892966,0.899179,0.00855637,0.800604,0.335783,0.431186,0.587541,0.600164,0.475208,0.681402,0.226057,0.247095,0.43857,0.367655,0.507093,0.896356,0.460926,0.786977,0.768561,0.137148,0.400415,0.764016,0.895046,0.433774,0.59092,0.168234,0.678964,0.59414,0.974363,0.350052,0.216326,0.696103,0.319619,0.453146,0.0933706,0.120404,0.953855,0.70799,0.892956,0.991758,0.0636905,0.74336,0.901786,0.777812,0.734327,0.266156,0.297326,0.935903,0.0108058,0.112599,0.151905,0.386333,0.886591,0.353414,0.0864266,0.667715,0.760335,0.704732,0.396237,0.118163,0.227768,0.0988725,0.22263,0.862463,0.109279,0.0525502,0.448246,0.252225,0.898488,0.609144,0.943643,0.857853,0.760147,0.861108,0.55065,0.578897,0.819983,0.762511,0.693045,0.0703251,0.986257,0.735299,0.882422,0.758111,0.346303,0.0955985,0.775327,0.774595,0.757159,0.579271,0.439292,0.409921,0.648336,0.35528,0.185941,0.155221,0.159183,0.0132819,0.899526,0.451495,0.0200077,0.239356,0.601314,0.489144,0.550597,0.127655,0.754957,0.621533,0.60398,0.390102,0.529792,0.880917,0.0318702,0.688703,0.378189,0.6923,0.727905,0.674821,0.327818,0.0574558,0.662207,0.828796,0.296226,0.543146,0.855886,0.441956,0.812091,0.622649,0.45757,0.0350167,0.307674,0.708712,0.340907,0.338593,0.451301,0.688459,0.178859,0.560356,0.543148,0.931337,0.997073,0.80609,0.414683,0.469942,0.470603,0.883597,0.85159,0.904098,|0.602355,0.132772,0.605763,0.0700204,0.678369,0.0138267,0.037472,0.464269,0.283865,0.309716,0.268981,0.43786,0.198041,0.358949,0.0913057,0.468568,0.488414,0.691056,0.872378,0.651068,0.628485,0.527832,0.111548,0.647845,0.442818,0.623765,0.514035,0.628918,0.786334,0.177384,0.0821123,0.762207,0.762766,0.905136,0.182377,0.665246,0.500756,0.459707,0.329724,0.668502,0.678267,0.692957,0.662483,0.164455,0.45353,0.979358,0.140348,0.0587782,0.946867,0.649331,0.0911034,0.675964,0.910854,0.885066,0.707531,0.368642,0.733564,0.197966,0.79539,0.483618,0.382455,0.696359,0.552338,0.746816,0.479108,0.241281,0.396456,0.738962,0.12512,0.36689,0.19536,0.950202,0.748369,0.0399634,0.882207,0.139326,0.0695029,0.497434,0.593395,0.0180088,0.830128,0.859883,0.281873,0.595221,0.71023,0.179129,0.75637,0.48435,0.435619,0.684762,0.483249,0.427308,0.618581,0.215466,0.941531,0.312091,0.548225,0.713698,0.771374,0.259022,0.545729,0.449436,0.729583,0.335151,0.866256,0.731848,0.872134,0.693987,0.987088,0.632479,0.263191,0.827832,0.482813,0.914169,0.648686,0.539194,0.524768,0.208012,0.521677,0.67989,0.738447,0.455467,0.816506,0.0188287,0.672911,0.405504,0.87957,0.687068,0.650494,0.913291,0.922339,0.206679,0.59032,0.911805,0.141927,0.0129687,0.133528,0.276384,0.856099,0.604393,0.57121,0.05801,0.638039,0.0230007,0.332241,0.627617,0.935682,0.0303366,0.577658,0.0919417,0.791769,0.127802,0.937503,0.342396,0.995547,0.244906,0.662865,0.10481,0.694543,0.213606,0.882287,0.636315,0.45629,0.730008,0.545612,0.0124263,0.725851,0.804134,0.283283,0.688148,0.161847,0.366383,0.240615,0.448806,0.0318363,0.28297,0.765178,0.483585,0.969622,0.743101,0.273162,0.300442,0.982626,0.712692,0.636138,0.947913,0.699294,0.700646,0.117276,0.994365,0.560486,0.0741261,0.650782,0.729057,0.879347,0.371651,0.920674,0.539445,0.0574353,0.478538,0.57866,0.103515,0.373728,0.277396,0.727292,0.752345,0.0725297,0.73586,0.397086,0.795712,0.416229,0.578464,0.869597,0.655262,0.923619,0.209139,0.960915,0.139297,0.189154,0.379222,0.709027,0.0358344,0.727706,0.119388,0.676925,0.334103,0.783542,0.413749,0.184188,0.453814,0.308537,0.0992222,0.675276,0.993934,0.375226,0.328036,0.465607,0.592538,0.751975,0.774748,0.61166,0.695509,0.434416,0.140872,0.688219,0.234791,0.0355877,0.00731337,0.429691,0.405023,0.0904089,0.518379,0.964426,0.351528,0.660304,0.816746,0.437894,0.360574,0.847299,0.134476,0.752913,0.212841,0.0211844,0.939794,0.000844538,0.736153,0.852946,0.766776,0.60808,0.797052,0.379683,0.898952,0.943197,0.393546,0.77684,0.812333,0.733241,0.209495,0.914911,0.825949,0.22348,0.54957,0.60731,0.877597,0.882298,0.189165,0.734485,0.0664764,0.241109,0.248281,0.651661,0.079903,0.440896,0.413004,0.503756,0.125538,0.709887,0.100802,0.805036,0.145827,0.440875,0.17962,0.948176,0.918651,0.772154,0.219597,0.693139,0.818727,0.715479,0.612067,0.746653,0.0693091,0.723211,0.133127,0.911399,0.0861995,0.898351,0.318167,0.530465,0.325203,0.953879,0.16289,0.913797,0.585812,0.237374,0.428389,0.830168,0.623189,0.3831,0.993919,0.47326,0.181026,0.257779,0.352634,0.0821706,0.0991862,0.543982,0.835126,0.13665,0.109289,0.447503,0.982832,0.748111,0.491701,0.657967,0.825643,0.609708,0.256271,0.664952,0.397694,0.376889,0.388756,0.533627,0.613736,0.755944,0.387474,0.991936,0.584397,0.765797,0.853533,0.259607,0.358676,0.317152,0.34287,0.938283,0.528737,0.747532,0.0888082,0.291181,0.615607,0.302681,0.0562413,0.490616,0.449701,0.396906,0.058609,0.406017,0.861676,0.380133,0.995622,0.224692,0.72248,0.669102,0.836789,0.840248,0.180444,0.419827,0.11551,0.174335,0.382083,0.386617,0.509216,0.279451,0.734733,0.100976,0.627257,0.158648,0.15987,0.258897,0.0862871,0.0309546,0.458064,0.759678,0.500934,0.61257,0.861285,0.374993,0.474123,0.0467759,0.474837,0.656233,0.397179,0.494663,0.330672,0.954547,0.517965,0.657583,0.568991,0.554941,0.20041,0.280868,0.835318,0.0606343,0.934151,0.123134,0.43988,0.533294,0.482883,0.417032,0.826586,0.886647,0.598373,0.140288,0.660875,0.648939,0.00360894,0.728653,0.835904,0.235487,0.212601,0.362987,0.336036,0.712215,0.730649,0.648499,0.630197,0.820968,0.655907,0.141553,0.446702,0.354561,0.666677,0.410085,0.186588,0.54907,0.00103354,0.241385,0.0190651,0.529115,0.222474,0.206801,0.301757,0.997635,0.465354,0.350184,0.732404,0.626608,0.538308,0.801312,0.80989,0.668557,0.208687,0.912911,0.125257,0.594194,0.530946,0.837389,0.271612,0.0287385,0.823456,0.428018,0.891735,0.938605,0.138252,0.0140209,0.148882,0.886327,0.346352,0.728507,0.585006,0.779203,0.294379,0.209823,0.0442364,0.026975,0.130255,0.28678,0.788861,0.942983,0.0213631,0.305933,0.738301,0.717536,0.753953,0.67873,0.375676,0.116685,0.993935,0.399617,0.764456,0.50872,0.843991,0.409539,0.370133,0.194025,0.859124,0.662083,0.491002,0.140029,0.349025,0.350295,0.513928,0.66143,0.236576,0.315787,0.792432,0.164958,0.265516,0.7715,0.966396,0.332192,0.820657,0.236241,0.0151891,0.514997,0.627125,0.734728,0.967527,0.3563,0.0297609,0.374991,0.5888,0.138396,0.259977,0.124332,0.647584,0.960473,0.531043,0.363633,0.681713,0.966304,0.810069,0.743317,0.649641,0.607463,0.333531,0.776917,0.955199,0.643496,0.989004,0.193769,0.553801,0.52647,0.202413,0.42894,0.224247,0.217647,0.503198,0.490873,0.830306,0.744177,0.424591,0.343617,0.890874,0.561762,0.730495,0.381844,0.329752,0.715668,0.427599,0.977855,0.126609,0.341068,0.664017,0.204189,0.875154,0.693499,0.553805,0.886893,0.46511,0.249691,0.933547,0.691562,0.540516,0.296152,0.370317,0.200784,0.830077,0.699951,0.18121,0.378319,0.690946,0.247005,0.121894,0.432476,0.090322,0.944577,0.184929,0.0619993,0.427226,0.160031,0.640133,0.0437166,0.260937,0.390665,0.58744,0.426353,0.535376,0.562637,0.210055,0.751744,0.785676,0.587908,0.457067,0.761606,0.251795,0.795983,0.283993,0.876731,0.226839,0.356964,0.348971,0.595344,0.590279,0.633549,0.528529,0.827811,0.804832,0.0661865,0.314219,0.535673,0.499817,0.768105,0.488026,0.956244,0.157946,0.655142,0.353427,0.750955,0.778587,0.887205,0.519584,0.301265,0.374473,0.148323,0.29093,0.609289,0.476673,0.988561,0.386378,0.266116,0.331924,0.963001,0.691373,0.974401,0.832249,0.828891,0.688446,0.3756,0.0726125,0.117864,0.0425605,0.548594,0.235115,0.704726,0.144004,0.351566,0.551191,0.262523,0.581272,0.354727,0.278826,0.670645,0.597199,0.573872,0.42638,0.772629,0.976276,3.58224e-05,0.864349,0.723897,0.576393,0.601651,0.772818,0.898725,0.0433848,0.374918,0.95135,0.344294,0.0072456,0.18819,0.0265617,0.952264,0.949736,0.804415,0.230961,0.856213,0.179966,0.221635,0.278578,0.588616,0.270668,0.204341,0.1075,0.439286,0.208985,0.506055,0.616433,0.769491,0.411185,0.244552,0.88661,0.673823,0.0500448,0.625263,0.599316,0.443957,0.538992,0.420076,0.982479,0.54142,0.612998,0.658727,0.734849,0.256822,0.24336,0.972188,0.168189,0.98335,0.699144,0.982793,0.895236,0.399805,0.287527,0.248958,0.0516532,0.70411,0.915,0.598361,0.736199,0.547048,0.263828,0.514554,0.212358,0.208135,0.0947307,0.432795,0.44365,0.0485111,0.020169,0.284845,0.959498,0.104545,0.419379,0.939427,0.00589162,0.19817,0.247176,0.115391,0.568028,0.174822,0.605436,0.384733,0.183903,0.041005,0.703378,0.758689,0.121342,0.646754,0.224795,0.0516143,0.176594,0.332651,0.576127,0.585107,0.314043,0.359586,0.258317,0.856761,0.749756,0.609525,0.92583,0.0116646,0.227986,0.758971,0.91849,0.881054,0.88173,0.304955,0.130088,0.075305,0.700092,0.673424,0.915847,0.319876,0.0831498,0.108755,0.122095,0.591316,0.46242,0.606014,0.516556,0.556372,0.860085,0.580871,0.214629,0.152717,0.102262,0.882727,0.645315,0.146989,0.232871,0.36098,0.902379,0.836689,0.631268,0.814968,0.196631,0.358101,0.888886,0.374277,0.475381,0.824806,0.535906,0.936307,0.711457,0.745451,0.288588,0.503771,0.575935,0.291267,0.571433,0.0564582,0.534815,0.985155,0.52305,0.554585,0.318568,0.562628,0.367506,0.00307435,0.333057,0.328925,0.614863,0.22978,0.744418,0.173456,0.436802,0.743616,0.418978,0.160986,0.347238,0.357273,0.561624,0.251117,0.0818658,0.93056,0.788383,0.342775,0.455464,0.0485416,0.854139,0.337695,0.00979006,0.204529,0.0155571,0.401674,0.614549,0.970724,0.28681,0.0203749,0.97995,0.373099,0.352982,0.0185781,0.444183,0.76968,0.459621,0.598895,0.71769,0.133076,0.0580887,0.00943005,0.0700073,0.760981,0.118357,0.0572588,0.627879,0.352334,0.85585,0.724892,0.783817,0.661734,0.795727,0.289279,0.453837,0.368206,0.988408,0.632965,0.477289,0.627111,0.13485,0.289984,0.796125,0.641037,0.578153,0.926782,0.526122,0.72589,0.949147,0.994588,0.499171,0.309884,0.955978,0.567713,0.979018,0.791325,0.22165,0.894476,0.670841,0.172035,0.456825,0.103806,0.896586,0.136549,0.246559,0.0464004,0.638369,0.073876,0.0157534,0.667851,0.171656,0.0178992,0.904898,0.706374,0.399473,0.684123,0.0996854,0.682837,0.00452846,0.175713,0.861539,0.304865,0.523156,0.972607,0.244843,0.419008,0.37896,0.867125,0.953112,0.778234,0.0768269,0.130569,0.450879,0.725619,0.855479,0.76473,0.518219,0.258718,0.318874,0.289118,0.731464,0.0775458,0.407668,0.639895,0.951964,0.553733,0.831159,0.874268,0.717715,0.349843,0.537655,0.541982,0.318955,0.588025,0.510952,0.246603,0.5789,0.485514,0.534451,0.536377,0.34158,0.128618,0.863477,0.466141,0.801469,0.466359,0.842323,0.323059,0.694088,|0.498374,0.00339854,0.469589,0.376624,0.474669,0.0663851,0.630233,0.513323,0.212506,0.811856,0.96425,0.963762,0.168893,0.78752,0.420029,0.545402,0.454386,0.287285,0.143988,0.147296,0.078751,0.913027,0.41176,0.703538,0.0472075,0.802841,0.426466,0.813255,0.649975,0.604413,0.501868,0.239717,0.36186,0.648404,0.945016,0.404551,0.466939,0.513149,0.823903,0.219507,0.438847,0.798239,0.853043,0.252807,0.306875,0.496459,0.795213,0.316244,0.572177,0.864856,0.52326,0.703321,0.18181,0.897163,0.353642,0.660577,0.641,0.122761,0.35995,0.363243,0.569673,0.836268,0.504725,0.832426,0.128208,0.721817,0.79293,0.140552,0.552926,0.415587,0.712732,0.772372,0.637883,0.141391,0.909809,0.413613,0.98483,0.0758409,0.193302,0.67701,0.915556,0.597788,0.834689,0.69777,0.327933,0.0604208,0.817356,0.118524,0.784818,0.211506,0.28358,0.219063,0.385982,0.927664,0.480052,0.296858,0.995953,0.265159,0.332025,0.306661,0.0667597,0.131688,0.105083,0.130747,0.011186,0.52257,0.275659,0.750454,0.915738,0.289911,0.258971,0.836039,0.488594,0.516281,0.866648,0.800738,0.713235,0.548648,0.96523,0.522043,0.456133,0.63531,0.742563,0.0367659,0.256615,0.20759,0.378961,0.358079,0.815897,0.0639686,0.353736,0.659191,0.549053,0.17933,0.101314,0.216643,0.794815,0.335416,0.494673,0.532228,0.193099,0.898148,0.343874,0.316944,0.37653,0.27685,0.416876,0.822096,0.801016,0.039194,0.273265,0.661613,0.983557,0.959755,0.390256,0.828501,0.54018,0.400821,0.649248,0.197927,0.496369,0.0774949,0.207983,0.645309,0.881296,0.314662,0.371816,0.660772,0.762991,0.27346,0.0581639,0.695563,0.688382,0.22732,0.319491,0.533823,0.726968,0.282508,0.631659,0.0037303,0.979562,0.383552,0.840403,0.370916,0.210882,0.00403482,0.194351,0.260526,0.713427,0.778543,0.432683,0.672967,0.227933,0.0927948,0.428784,0.0584564,0.430741,0.238221,0.687427,0.278205,0.181239,0.216569,0.602793,0.885025,0.271014,0.116662,0.40138,0.626499,0.525753,0.821125,0.00319386,0.760164,0.280132,0.264353,0.694835,0.0257765,0.575706,0.915258,0.94726,0.114829,0.00202101,0.240659,0.398378,0.41208,0.387461,0.719037,0.190643,0.394628,0.603756,0.08689,0.340938,0.277483,0.586993,0.842327,0.0659342,0.364079,0.115011,0.0964141,0.037937,0.461041,0.137316,0.32394,0.186718,0.221881,0.179692,0.351252,0.061086,0.324855,0.679596,0.230357,0.801065,0.822325,0.720407,0.213783,0.302981,0.789885,0.468929,0.457423,0.93527,0.800675,0.119673,0.455286,0.986563,0.931035,0.545245,0.461137,0.441248,0.991018,0.873144,0.716092,0.740058,0.770251,0.903984,0.277108,0.364776,0.83395,0.247556,0.773365,0.121481,0.77811,0.868366,0.937056,0.990219,0.725096,0.893696,0.315171,0.544197,0.309621,0.274499,0.797308,0.578639,0.682958,0.770402,0.371771,0.906846,0.610248,0.996157,0.942185,0.931271,0.288412,0.759677,0.0931336,0.0579194,0.251716,0.0661002,0.864663,0.664725,0.892781,0.996332,0.889956,0.581876,0.223415,0.609818,0.283794,0.287248,0.804476,0.0738197,0.914625,0.947962,0.0582165,0.880354,0.0404562,0.338254,0.830787,0.53307,0.661886,0.574711,0.884014,0.820379,0.738501,0.956558,0.179785,0.18808,0.620863,0.438945,0.02232,0.755916,0.583531,0.186259,0.829457,0.0642927,0.274143,0.35221,0.263488,0.760899,0.923272,0.764286,0.0774144,0.141121,0.374907,0.2289,0.292903,0.680611,0.215328,0.152797,0.0249525,0.300464,0.386822,0.817571,0.31674,0.824845,0.301731,0.380585,0.699442,0.676049,0.18119,0.491259,0.960898,0.599921,0.447922,0.547269,0.59491,0.502246,0.909254,0.295818,0.206916,0.999634,0.221999,0.449304,0.501221,0.687533,0.536243,0.481683,0.741327,0.58652,0.567433,0.48043,0.185128,0.531838,0.866136,0.314554,0.509326,0.317407,0.913055,0.861309,0.226556,0.418534,0.613507,0.934724,0.678282,0.442394,0.0140534,0.0194176,0.651839,0.0685253,0.948324,0.956956,0.0293343,0.862159,0.826162,0.841099,0.645332,0.705485,0.367119,0.72968,0.205292,0.975095,0.902904,0.0296763,0.307626,0.48441,0.112082,0.747865,0.244736,0.85495,0.441917,0.547291,0.316024,0.861177,0.718511,0.390205,0.341392,0.127693,0.353229,0.272303,0.302993,0.712615,0.338415,0.696334,0.734372,0.238007,0.853091,0.89941,0.281205,0.835396,0.841906,0.199473,0.120981,0.847353,0.370288,0.758138,0.210733,0.956147,0.61848,0.098479,0.924023,0.550022,0.817988,0.764431,0.619474,0.271083,0.0223617,0.831981,0.339445,0.667016,0.222908,0.897961,0.0699617,0.756075,0.165493,0.638181,0.187526,0.780883,0.912086,0.604604,0.979513,0.37595,0.581505,0.24801,0.222511,0.347855,0.500778,0.48681,0.705071,0.421711,0.470948,0.166577,0.866195,0.660176,0.742158,0.945537,0.635308,0.240454,0.925111,0.0195081,0.0612037,0.448679,0.122648,0.286791,0.70454,0.78284,0.346543,0.0904669,0.782406,0.346864,0.850419,0.862164,0.0388229,0.596756,0.562849,0.0569661,0.691947,0.982841,0.473314,0.00952107,0.121493,0.745526,0.725224,0.907605,0.258242,0.751354,0.534864,0.898488,0.747676,0.300821,0.340996,0.892199,0.214265,0.98503,0.0502939,0.889788,0.950237,0.920867,0.541968,0.909752,0.342176,0.138136,0.797545,0.287778,0.189255,0.349018,0.38042,0.223677,0.764663,0.573893,0.241656,0.467627,0.593632,0.00651181,0.176253,0.531141,0.068523,0.376563,0.470237,0.168188,0.196767,0.771918,0.187063,0.540555,0.876839,0.0428056,0.240729,0.47398,0.570244,0.43951,0.566114,0.507334,0.0532155,0.814195,0.132705,0.841025,0.50641,0.87111,0.730617,0.843466,0.356935,0.128694,0.210003,0.663264,0.651404,0.537288,0.37616,0.707546,0.778144,0.090028,0.27064,0.0790287,0.592564,0.285478,0.525331,0.457404,0.440426,0.467397,0.608838,0.716973,0.35671,0.771021,0.545178,0.955684,0.903792,0.925145,0.463352,0.101855,0.341251,0.557497,0.924907,0.632107,0.835314,0.93558,0.190461,0.368696,0.142307,0.826207,0.384762,0.403732,0.548626,0.914818,0.252324,0.998643,0.746101,0.609035,0.928377,0.645769,0.649997,0.956198,0.498105,0.321005,0.266589,0.124783,0.824382,0.847576,0.00681835,0.928876,0.981522,0.924303,0.872662,0.0144407,0.736139,0.633947,0.297936,0.646021,0.818808,0.29094,0.608494,0.116068,0.825223,0.226392,0.97803,0.713518,0.547071,0.531035,0.29202,0.507658,0.863309,0.525686,0.544101,0.0245615,0.102619,0.635056,0.555599,0.526661,0.402594,0.106805,0.748221,0.850356,0.209484,0.432566,0.871742,0.10087,0.153107,0.155086,0.043172,0.713724,0.713605,0.453359,0.221132,0.609772,0.906973,0.742017,0.194653,0.583074,0.697885,0.0173153,0.803755,0.583677,0.262969,0.161052,0.0326377,0.163134,0.871111,0.321985,0.536623,0.0356164,0.141529,0.214789,0.277071,0.382704,0.450896,0.19794,0.147989,0.2473,0.106303,0.284728,0.235115,0.620535,0.874294,0.0779683,0.0267821,0.783708,0.747212,0.327085,0.562124,0.721437,0.369766,0.658946,0.642679,0.980016,0.277474,0.719751,0.861887,0.621732,0.157705,0.0692108,0.505061,0.301495,0.552809,0.285417,0.0248078,0.0920135,0.319428,0.038266,0.0093798,0.0920088,0.716414,0.415319,0.875116,0.341043,0.676298,0.480979,0.853558,0.370818,0.9981,0.118425,0.467176,0.298927,0.933502,0.579238,0.569666,0.365955,0.977313,0.405396,0.00134283,0.637672,0.0537303,0.419749,0.101441,0.494663,0.575396,0.916947,0.833414,0.754331,0.99717,0.362701,0.177567,0.322883,0.0875619,0.435427,0.493032,0.930421,0.364013,0.795859,0.0573944,0.61549,0.213284,0.85031,0.995796,0.212858,0.777205,0.337491,0.634034,0.444159,0.70743,0.989259,0.705049,0.241665,0.530048,0.424067,0.201628,0.555433,0.35264,0.562311,0.43069,0.016913,0.900033,0.630771,0.0684216,0.950809,0.442211,0.767793,0.627546,0.0173764,0.822526,0.935439,0.493105,0.125401,0.0174795,0.610958,0.108065,0.399938,0.700235,0.216296,0.476067,0.22724,0.777453,0.321795,0.655882,0.492078,0.683556,0.97095,0.729621,0.106573,0.978696,0.679071,0.293061,0.866762,0.739993,0.803356,0.13681,0.977817,0.0325082,0.880065,0.0532957,0.743211,0.0316667,0.688239,0.809251,0.917356,0.627446,0.283218,0.753313,0.596113,0.605876,0.842313,0.149595,0.657146,0.0917752,0.443782,0.683192,0.867897,0.546933,0.589363,0.62143,0.879706,0.597565,0.713109,0.680607,0.664987,0.469659,0.490299,0.444882,0.529651,0.384883,0.678219,0.936507,0.159145,0.0435976,0.347019,0.411186,0.300111,0.158391,0.903933,0.212288,0.837154,0.988492,0.52745,0.718716,0.701169,0.628114,0.309181,0.184472,0.0247982,0.338904,0.456047,0.866047,0.964234,0.662296,0.208514,0.19205,0.926621,0.953432,0.680351,0.64303,0.00510645,0.395722,0.697966,0.534865,0.835858,0.661698,0.48354,0.902764,0.860921,0.180561,0.620515,0.556763,0.534367,0.734153,0.243231,0.345546,0.806691,0.709965,0.0978401,0.215946,0.394271,0.216924,0.249302,0.411722,0.0279183,0.139896,0.595342,0.0107731,0.985666,0.878812,0.538015,0.881523,0.21926,0.713604,0.0932873,0.1655,0.761641,0.754944,0.818924,0.789983,0.64382,0.563246,0.0867451,0.0745767,0.723509,0.35514,0.496571,0.619791,0.979338,0.692706,0.528862,0.789274,0.886618,0.990044,0.657254,0.688391,0.736279,0.762444,0.363764,0.0640237,0.0265492,0.48178,0.812627,0.997791,0.107032,0.167924,0.538358,0.062579,0.299424,0.0269583,0.86924,0.964722,0.141317,0.162588,0.445364,0.659835,0.447283,0.406233,0.577007,0.757088,0.920058,0.336891,0.808498,0.368708,0.467535,0.684199,0.362781,0.01668,0.307563,0.260877,0.935993,0.049804,0.999968,0.306885,0.842156,0.248255,0.908272,0.128541,0.419218,0.966103,0.372711,0.196118,0.344769,0.859647,0.00154281,0.260361,0.703327,0.109866,|0.0311978,0.694026,0.339025,0.35611,0.0908977,0.245591,0.0239943,0.172951,0.322216,0.130979,0.529529,0.342695,0.601819,0.520288,0.153619,0.277872,0.91227,0.0135663,0.603716,0.161109,0.967199,0.720932,0.228826,0.30241,0.112791,0.717512,0.993791,0.0889735,0.236178,0.207248,0.361026,0.25337,0.0519491,0.4533,0.331786,0.536941,0.69771,0.368064,0.830024,0.874643,0.044867,0.0655569,0.441328,0.776323,0.780228,0.854964,0.211419,0.15844,0.178265,0.766527,0.532388,0.549356,0.746436,0.857127,0.151366,0.302579,0.0148003,0.462282,0.372805,0.761979,0.485548,0.191303,0.383994,0.0164089,0.115081,0.0194833,0.266598,0.926194,0.396509,0.348496,0.827237,0.516425,0.0386575,0.356935,0.379033,0.339423,0.409076,0.407812,0.623611,0.270008,0.588377,0.712074,0.197781,0.433257,0.143557,0.326689,0.755656,0.50402,0.163899,0.224285,0.54744,0.17703,0.576513,0.982228,0.284032,0.190882,0.558662,0.145012,0.154719,0.756445,0.669025,0.0909259,0.145423,0.79637,0.665259,0.348933,0.144526,0.490363,0.459027,0.98428,0.43441,0.33505,0.343781,0.345511,0.875745,0.0411874,0.945306,0.42713,0.961449,0.714238,0.0836489,0.847619,0.883799,0.637321,0.504355,0.918119,0.480049,0.744355,0.63324,0.694955,0.0478507,0.257917,0.595492,0.598115,0.494022,0.952158,0.137339,0.271196,0.296012,0.63656,0.383762,0.199305,0.23806,0.169761,0.510478,0.32559,0.86018,0.752287,0.609266,0.962593,0.357319,0.562946,0.55741,0.826205,0.418418,0.654775,0.452989,0.249176,0.276757,0.584135,0.786951,0.905031,0.295969,0.401527,0.695972,0.0683535,0.61308,0.0586756,0.99221,0.197711,0.539783,0.749488,0.114252,0.256838,0.284614,0.40105,0.520215,0.880614,0.750286,0.723955,0.732595,0.55509,0.649403,0.481858,0.404063,0.0616148,0.40923,0.527305,0.879964,0.261383,0.738702,0.944813,0.0845795,0.0753878,0.028484,0.48547,0.57938,0.0309346,0.0233836,0.143621,0.0255083,0.0945557,0.80785,0.0598025,0.717881,0.577398,0.34038,0.0989659,0.782274,0.646449,0.00192815,0.686058,0.117225,0.649018,0.473691,0.749232,0.366539,0.379986,0.112136,0.47676,0.686705,0.0586008,0.657945,0.6132,0.00829232,0.22918,0.779763,0.0565024,0.486138,0.751424,0.835844,0.100494,0.110931,0.832932,0.180259,0.610882,0.485315,0.546064,0.637948,0.379459,0.196017,0.217779,0.793218,0.481066,0.810119,0.459969,0.238817,0.744256,0.266162,0.695888,0.890136,0.430422,0.951099,0.0868956,0.0410833,0.107288,0.13451,0.728613,0.615561,0.217897,0.953945,0.482961,0.984295,0.499447,0.0210254,0.378275,0.371107,0.0180699,0.883118,0.132808,0.450169,0.502013,0.675225,0.279471,0.933179,0.0765566,0.255402,0.812934,0.698689,0.237214,0.67247,0.727015,0.827012,0.252716,0.42548,0.951923,0.826525,0.789724,0.268906,0.795002,0.381636,0.91892,0.488735,0.785492,0.131691,0.415698,0.284265,0.839717,0.2743,0.753915,0.966929,0.0269931,0.734064,0.952679,0.00958931,0.838503,0.909338,0.498484,0.130496,0.507619,0.774303,0.823757,0.85455,0.277685,0.144785,0.262772,0.82742,0.411459,0.820148,0.379472,0.916468,0.263554,0.556216,0.17815,0.687814,0.35043,0.866709,0.0321348,0.0490344,0.0370262,0.84889,0.465047,0.95571,0.89007,0.066131,0.444839,0.73682,0.837764,0.0416012,0.975883,0.579626,0.956817,0.737523,0.462807,0.808791,0.284271,0.92648,0.331482,0.754012,0.322007,0.21215,0.466655,0.703616,0.0594662,0.852728,0.00071609,0.538189,0.0376257,0.518912,0.629729,0.0182906,0.966483,0.109079,0.65513,0.303357,0.042082,0.302619,0.805784,0.846254,0.516529,0.194847,0.511951,0.0388349,0.661043,0.184051,0.482308,0.212694,0.228702,0.816833,0.660532,0.246713,0.210476,0.385846,0.224422,0.359827,0.203282,0.948704,0.0928851,0.302549,0.308677,0.82713,0.742947,0.868787,0.147972,0.513145,0.497487,0.829627,0.815402,0.0983374,0.110227,0.866801,0.342328,0.639559,0.593531,0.0431156,0.581526,0.0951215,0.310516,0.187254,0.507854,0.030475,0.879869,0.954199,0.821871,0.509776,0.273425,0.0134614,0.57816,0.811038,0.477037,0.880198,0.523506,0.0970231,0.453657,0.624993,0.896557,0.667779,0.644416,0.945577,0.0180984,0.850716,0.679948,0.264108,0.98502,0.642093,0.620194,0.947464,0.39637,0.1831,0.608652,0.641259,0.487853,0.348793,0.314612,0.181133,0.185912,0.341345,0.208424,0.0158305,0.644914,0.133401,0.249013,0.385829,0.821086,0.296682,0.761954,0.808729,0.302209,0.427705,0.11937,0.0256054,0.613432,0.542986,0.0695181,0.509439,0.77627,0.250906,0.957936,0.769375,0.380013,0.547036,0.026027,0.293601,0.133665,0.341239,0.977344,0.681526,0.831125,0.0568449,0.909597,0.361689,0.0139186,0.0275007,0.687717,0.230258,0.0229267,0.252255,0.0496096,0.927098,0.502859,0.524432,0.592462,0.908534,0.768765,0.147947,0.226464,0.105526,0.569746,0.491447,0.45675,0.59649,0.640715,0.489095,0.317119,0.242296,0.215364,0.779948,0.145497,0.0910783,0.751031,0.524845,0.563077,0.533604,0.940357,0.873587,0.395148,0.239168,0.690133,0.811868,0.419885,0.481982,0.442421,0.194418,0.135191,0.812526,0.278495,0.604769,0.282686,0.550066,0.667115,0.938164,0.6012,0.38168,0.2437,0.447959,0.27122,0.574008,0.495081,0.33519,0.976648,0.0212145,0.582176,0.375608,0.343958,0.186275,0.553243,0.406921,0.469747,0.355867,0.976336,0.660127,0.879017,0.308263,0.541546,0.646848,0.415252,0.937499,0.0157613,0.94847,0.692699,0.196808,0.555793,0.672825,0.63264,0.119642,0.508045,0.882728,0.305798,0.847746,0.795478,0.572043,0.204303,0.25268,0.67039,0.177079,0.421849,0.577168,0.0603962,0.983276,0.533078,0.384921,0.0517514,0.805379,0.706032,0.439672,0.296242,0.0482078,0.399443,0.784508,0.0541324,0.911272,0.58331,0.132544,0.0315189,0.534409,0.905241,0.854965,0.511876,0.983773,0.571266,0.4314,0.52914,0.824859,0.891475,0.0384629,0.32438,0.17551,0.880636,0.777153,0.24489,0.194796,0.756321,0.358333,0.93988,0.817422,0.62921,0.833496,0.576157,0.515936,0.255162,0.0381551,0.0527608,0.770072,0.341342,0.876632,0.0269821,0.0502886,0.0504073,0.28113,0.499987,0.837504,0.986207,0.571598,0.415054,0.786371,0.656162,0.268409,0.331664,0.5824,0.750185,0.275391,0.320693,0.749717,0.16352,0.319043,0.771534,0.780922,0.356381,0.747989,0.226564,0.468496,0.0148281,0.991329,0.812839,0.262847,0.800741,0.0570819,0.272845,0.424811,0.327709,0.762144,0.252276,0.430805,0.826354,0.120943,0.293563,0.358796,0.701247,0.612028,0.0790333,0.788644,0.0113009,0.86606,0.253382,0.065261,0.668046,0.414995,0.84549,0.248815,0.667787,0.227655,0.126335,0.267976,0.638499,0.682056,0.734563,0.99304,0.877851,0.767995,0.313925,0.545758,0.963003,0.263993,0.614506,0.885304,0.697712,0.0396098,0.84834,0.329221,0.773727,0.589923,0.69991,0.669714,0.835259,0.184649,0.344896,0.207286,0.224259,0.420734,0.96104,0.960236,0.927281,0.811731,0.173223,0.0447857,0.305221,0.899343,0.00548232,0.399748,0.136768,0.12285,0.386587,0.194875,0.0772717,0.8932,0.82807,0.685258,0.193856,0.717625,0.190341,0.0379959,0.645852,0.125417,0.187348,0.581931,0.579413,0.855643,0.489897,0.159438,0.543809,0.152867,0.423358,0.513175,0.071605,0.250578,0.332998,0.615041,0.163812,0.831945,0.499384,0.459873,0.407616,0.28706,0.30115,0.870548,0.690602,0.790761,0.603703,0.311947,0.508861,0.28038,0.992884,0.951002,0.0345385,0.48995,0.373424,0.119231,0.72527,0.618508,0.875274,0.320356,0.389482,0.943304,0.00663978,0.684342,0.990003,0.106004,0.537007,0.81408,0.76636,0.0482154,0.291773,0.0940809,0.093236,0.057245,0.742386,0.804033,0.00681776,0.354567,0.340448,0.768865,0.868342,0.0571915,0.326242,0.124665,0.261976,0.238891,0.99688,0.117188,0.957564,0.515009,0.593346,0.724076,0.290888,0.134916,0.659809,0.0748229,0.0790453,0.999334,0.210352,0.88632,0.455346,0.371268,0.169722,0.708407,0.892943,0.967068,0.0891193,0.489813,0.180423,0.597782,0.141872,0.109722,0.0819917,0.4342,0.706619,0.184759,0.0770398,0.409038,0.968772,0.00538146,0.869865,0.916348,0.0167118,0.00667101,0.120793,0.849222,0.25113,0.898501,0.309987,0.802568,0.49636,0.53037,0.429929,0.118225,0.422953,0.725879,0.463261,0.920605,0.775232,0.24314,0.456827,0.326092,0.143726,0.136683,0.622503,0.88034,0.645365,0.274277,0.861223,0.162479,0.913775,0.364234,0.366486,0.650465,0.228728,0.0401493,0.0759058,0.104184,0.945213,0.00926185,0.580869,0.315915,0.872784,0.188398,0.111741,0.304499,0.643777,0.480551,0.0614493,0.83718,0.192177,0.256981,0.499675,0.422061,0.0793176,0.379539,0.170661,0.353078,0.725386,0.686836,0.649403,0.365477,0.242906,0.748991,0.180875,0.725633,0.473284,0.27787,0.632429,0.140831,0.545324,0.887875,0.0925029,0.246135,0.972793,0.44805,0.72715,0.453737,0.374307,0.427653,0.397615,0.778557,0.0918906,0.190776,0.439019,0.648995,0.205672,0.705207,0.459851,0.651909,0.491133,0.345635,0.723077,0.84796,0.0150474,0.508436,0.398321,0.0996934,0.26579,0.971444,0.765732,0.0193971,0.734826,0.384529,0.2668,0.838558,0.953534,0.165747,0.343524,0.355546,0.59056,0.423487,0.252104,0.723257,0.191549,0.754504,0.613942,0.481552,0.471342,0.457845,0.641361,0.703258,0.426882,0.932826,0.617371,0.346789,0.491554,0.525557,0.136056,0.0507572,0.764025,0.0724529,0.617466,0.502041,0.139687,0.680377,0.181664,0.140133,0.752678,0.642897,0.69106,0.624077,0.902278,0.285999,0.981659,0.99427,0.646161,0.206635,0.100832,0.887893,0.339556,0.237215,0.367188,0.551404,0.743725,0.944065,0.553553,0.443195,0.585509,0.0585264,0.850609,0.802412,0.885641,0.805624,0.460519,0.618618,0.799381,0.228079,0.820863,|0.00768238,0.316784,0.708584,0.108781,0.150207,0.226488,0.628692,0.0173587,0.945761,0.647618,0.415444,0.66561,0.194799,0.674382,0.698336,0.961968,0.490194,0.469138,0.781847,0.501353,0.400893,0.402701,0.0602052,0.388465,0.224827,0.563675,0.581012,0.397253,0.173998,0.825411,0.600253,0.112372,0.965325,0.164652,0.546452,0.711861,0.176383,0.544063,0.545256,0.688241,0.489442,0.0852449,0.932459,0.225565,0.792088,0.908892,0.889491,0.25653,0.198436,0.637214,0.82224,0.00678372,0.332426,0.0676348,0.800781,0.307137,0.870774,0.740153,0.941004,0.732385,0.99961,0.641031,0.308895,0.654618,0.0146494,0.117402,0.901691,0.614655,0.827512,0.817696,0.83809,0.499578,0.187054,0.952844,0.915397,0.308883,0.982181,0.733483,0.754435,0.464721,0.904543,0.822748,0.616496,0.180518,0.863888,0.762129,0.409689,0.636541,0.378122,0.243723,0.512069,0.184183,0.138769,0.215798,0.827229,0.743087,0.145456,0.745695,0.29177,0.474574,0.668879,0.697857,0.924537,0.411293,0.438104,0.239413,0.543969,0.303761,0.701953,0.422191,0.500416,0.456174,0.445108,0.408692,0.327913,0.80905,0.991677,0.16658,0.149794,0.381868,0.308628,0.745085,0.794288,0.837025,0.472984,0.607236,0.510437,0.945048,0.890355,0.587335,0.731786,0.755844,0.256174,0.673878,0.217948,0.69809,0.334857,0.257001,0.324884,0.317285,0.904442,0.197982,0.717471,0.543168,0.571731,0.00515872,0.999781,0.658566,0.741149,0.810576,0.783612,0.238048,0.967876,0.524455,0.225257,0.270818,0.733914,0.527948,0.512268,0.745718,0.521532,0.37298,0.577676,0.723956,0.365817,0.55468,0.118344,0.244498,0.943981,0.77469,0.594658,0.412306,0.916078,0.63695,0.712029,0.155369,0.0185266,0.691024,0.390649,0.894396,0.675129,0.893391,0.267909,0.977157,0.461102,0.0522433,0.659659,0.371306,0.448482,0.147628,0.378451,0.165625,0.42414,0.685651,0.445693,0.0914089,0.668599,0.458259,0.509494,0.798838,0.800571,0.526188,0.315678,0.0407039,0.932075,0.832449,0.328888,0.47373,0.647824,0.0638652,0.252916,0.94577,0.99733,0.698344,0.0436948,0.762257,0.470519,0.0454552,0.32708,0.949693,0.051581,0.508645,0.942815,0.640176,0.495604,0.824595,0.840869,0.693096,0.519071,0.394103,0.203915,0.707106,0.561971,0.1443,0.815973,0.804546,0.317992,0.954938,0.221084,0.71087,0.495602,0.0793421,0.592947,0.104431,0.511769,0.411036,0.28978,0.528686,0.415128,0.659907,0.00238407,0.95316,0.512832,0.898852,0.695733,0.291632,0.905191,0.0574527,0.99719,0.667928,0.138894,0.32305,0.373127,0.405829,0.871425,0.774984,0.157549,0.849408,0.799598,0.433629,0.183291,0.915738,0.549922,0.519834,0.180493,0.00394493,0.898775,0.429082,0.597201,0.347246,0.422087,0.00792778,0.991051,0.102557,0.030768,0.0305225,0.746535,0.150651,0.911743,0.176207,0.156068,0.00560194,0.859227,0.558078,0.856994,0.823825,0.552599,0.723189,0.396564,0.929925,0.63523,0.274497,0.759166,0.38338,0.54936,0.767566,0.276193,0.375173,0.0297232,0.806351,0.114301,0.652921,0.075625,0.712266,0.348613,0.669872,0.41622,0.793013,0.472819,0.392173,0.714207,0.767707,0.753088,0.376728,0.700521,0.806637,0.722329,0.708773,0.733993,0.438454,0.95006,0.866816,0.289888,0.79429,0.888647,0.607917,0.229143,0.162647,0.0246108,0.343301,0.190034,0.328631,0.00381768,0.77692,0.839586,0.263725,0.221064,0.151883,0.133122,0.890682,0.360592,0.91446,0.290045,0.399816,0.113329,0.832707,0.450543,0.469983,0.241749,0.143298,0.411198,0.662044,0.804899,0.800371,0.157474,0.178295,0.70975,0.0666432,0.225652,0.638703,0.185825,0.933067,0.926775,0.574001,0.840882,0.306545,0.0679213,0.815822,0.947381,0.671527,0.492402,0.964662,0.737399,0.110916,0.568927,0.409916,0.380363,0.475126,0.0479638,0.499704,0.2886,0.697846,0.51905,0.587131,0.173577,0.77684,0.551053,0.0710295,0.855725,0.18185,0.505159,0.201128,0.633242,0.288282,0.0037201,0.142387,0.351541,0.565692,0.217233,0.564832,0.653665,0.573733,0.473365,0.808752,0.434101,0.434374,0.928873,0.64632,0.18827,0.210395,0.207962,0.937853,0.56283,0.897053,0.843771,0.612161,0.628798,0.544882,0.401644,0.130261,0.903027,0.944855,0.961659,0.986047,0.385031,0.851442,0.161364,0.29993,0.768135,0.871159,0.936539,0.149051,0.0881686,0.118998,0.713829,0.654281,0.797078,0.451485,0.585005,0.627884,0.367369,0.659169,0.235808,0.133795,0.577433,0.660898,0.845304,0.745458,0.0158094,0.744598,0.509648,0.454977,0.578941,0.228293,0.0330133,0.181041,0.450737,0.111086,0.350771,0.315953,0.348498,0.639396,0.100803,0.875478,0.826732,0.836642,0.581047,0.0103334,0.700627,0.305978,0.215509,0.814612,0.0752625,0.219138,0.560574,0.540153,0.606328,0.697453,0.691634,0.942036,0.692479,0.796666,0.188789,0.788927,0.731977,0.0425382,0.552742,0.945097,0.666283,0.436566,0.794155,0.707245,0.758246,0.46453,0.245595,0.197944,0.0746681,0.450239,0.878175,0.954646,0.0141473,0.700414,0.97609,0.893431,0.776403,0.401309,0.256249,0.217012,0.405346,0.690553,0.283787,0.914215,0.814672,0.338553,0.903346,0.323581,0.918607,0.578561,0.0531555,0.458959,0.753755,0.866038,0.0842181,0.217364,0.484567,0.432595,0.137477,0.0375094,0.528695,0.748839,0.65275,0.0532395,0.533636,0.0921939,0.659877,0.503711,0.371323,0.0901334,0.922688,0.69032,0.883361,0.881616,0.348824,0.701978,0.832965,0.455624,0.184616,0.974383,0.917546,0.388808,0.893965,0.351801,0.813597,0.883501,0.950624,0.785759,0.793293,0.597106,0.0399798,0.904497,0.400204,0.767993,0.0388284,0.803743,0.253124,0.37194,0.758974,0.344885,0.61354,0.782763,0.58213,0.57035,0.104931,0.813216,0.665425,0.612764,0.978679,0.952131,0.821314,0.512335,0.833634,0.788971,0.504876,0.432548,0.550714,0.55121,0.954795,0.397089,0.744019,0.274281,0.810459,0.227464,0.863961,0.301371,0.0782795,0.705808,0.870063,0.75229,0.124722,0.419003,0.628444,0.574253,0.359204,0.625317,0.365514,0.789374,0.00956398,0.494919,0.253,0.936834,0.383158,0.718041,0.437018,0.212182,0.130782,0.769765,0.682912,0.958074,0.680027,0.00694865,0.0981009,0.499246,0.456891,0.774099,0.852517,0.686612,0.73804,0.165587,0.343655,0.279339,0.360403,0.386461,0.83615,0.351261,0.621803,0.547981,0.456502,0.729708,0.545768,0.436906,0.556598,0.954292,0.627945,0.0171763,0.57307,0.765756,0.723452,0.663403,0.045954,0.63284,0.92551,0.787396,0.127536,0.898181,0.81173,0.375275,0.0911469,0.657198,0.483269,0.742921,0.922358,0.198322,0.82848,0.77062,0.922126,0.897807,0.00923985,0.691696,0.451987,0.846854,0.193044,0.640859,0.942777,0.129683,0.95357,0.822982,0.797212,0.593979,0.347356,0.0787069,0.592014,0.582053,0.316149,0.405821,0.641842,0.0110908,0.661175,0.145572,0.66367,0.0138047,0.37762,0.0248135,0.297485,0.875416,0.059073,0.778785,0.610383,0.162771,0.722634,0.488576,0.964658,0.544043,0.67111,0.540263,0.0428978,0.576617,0.353268,0.78037,0.99691,0.760223,0.712749,0.634686,0.500448,0.842241,0.931239,0.474161,0.292246,0.316966,0.832057,0.454742,0.506751,0.517618,0.821534,0.0361557,0.228414,0.924488,0.623799,0.968896,0.201402,0.538947,0.962217,0.0227219,0.471029,0.0802832,0.739833,0.21864,0.192064,0.867252,0.854211,0.946967,0.974108,0.165117,0.953983,0.400594,0.500073,0.886785,0.55053,0.269305,0.664988,0.878566,0.991203,0.939241,0.815044,0.64314,0.36547,0.975481,0.890759,0.906856,0.623714,0.371201,0.917117,0.391224,0.480543,0.804958,0.128209,0.0544508,0.759924,0.0441812,0.539217,0.0743091,0.333618,0.69609,0.877595,0.980282,0.874734,0.324393,0.148095,0.400961,0.799935,0.573309,0.634221,0.104786,0.758965,0.985197,0.814401,0.127145,0.770003,0.80191,0.158272,0.743639,0.0765215,0.266195,0.420296,0.461351,0.306991,0.0408233,0.6513,0.936047,0.434626,0.5639,0.635909,0.613167,0.445316,0.732267,0.793059,0.384002,0.44356,0.220674,0.0424032,0.721002,0.752086,0.350455,0.779933,0.52541,0.699356,0.932211,0.259812,0.101584,0.498781,0.91526,0.191121,0.338421,0.60813,0.504601,0.783612,0.513738,0.17798,0.976986,0.500732,0.961069,0.44843,0.73125,0.750364,0.919305,0.333184,0.838322,0.262396,0.64301,0.272943,0.840748,0.924083,0.263679,0.816251,0.240497,0.10645,0.000641048,0.456414,0.0946917,0.513581,0.290186,0.729768,0.719066,0.95091,0.15518,0.839702,0.301739,0.612855,0.255304,0.0488669,0.184576,0.579219,0.562664,0.651258,0.243942,0.161069,0.693952,0.0599065,0.851501,0.314804,0.468772,0.489647,0.515405,0.529633,0.463284,0.685861,0.184854,0.505546,0.356485,0.212706,0.0791208,0.516767,0.546778,0.830395,0.31704,0.470599,0.899107,0.166091,0.210439,0.0609381,0.9751,0.969408,0.595324,0.0184964,0.250197,0.763635,0.0947369,0.701401,0.496393,0.985617,0.76696,0.57193,0.958755,0.101372,0.390602,0.239875,0.0177262,0.784,0.657172,0.454412,0.201654,0.755677,0.650882,0.748884,0.558776,0.893137,0.703074,0.0901055,0.677291,0.295057,0.241007,0.0715516,0.740217,0.0868343,0.052343,0.927724,0.727782,0.861665,0.924918,0.645942,0.944476,0.558877,0.244574,0.364893,0.863555,0.525976,0.352567,0.508143,0.833765,0.736435,0.118176,0.608786,0.116904,0.233545,0.773759,0.490087,0.910339,0.591697,0.914774,0.672605,0.303319,0.0318154,0.0855278,0.627257,0.962017,0.888096,0.280885,0.921243,0.197501,0.093172,0.148222,0.555448,0.0962041,0.315115,0.286054,0.111579,0.0281631,0.685994,0.179556,0.741915,0.979648,0.498881,0.0748906,0.898438,0.631372,0.460948,0.27352,0.181922,0.955523,0.0580044,0.12098,0.349943,0.649846,0.812068,0.81648,0.171036,0.141319,0.498357,0.548421,0.344852,0.510572,|0.202311,0.907473,0.656329,0.55414,0.276562,0.786918,0.616264,0.51321,0.535899,0.242153,0.566344,0.6147,0.340877,0.267993,0.897863,0.200038,0.911662,0.588437,0.814105,0.687396,0.489442,0.271917,0.974135,0.851583,0.32368,0.878076,0.988469,0.226725,0.781022,0.0970363,0.777538,0.18727,0.940055,0.711008,0.424635,0.763625,0.107255,0.749086,0.968553,0.717369,0.07905,0.627754,0.54343,0.968111,0.18294,0.317028,0.53928,0.367716,0.811115,0.373533,0.978092,0.0295943,0.352037,0.123174,0.0389627,0.293628,0.776468,0.374289,0.658487,0.244945,0.470733,0.749659,0.446045,0.453546,0.488428,0.345198,0.544522,0.500343,0.83497,0.761235,0.547854,0.742859,0.74509,0.479252,0.129315,0.774981,0.704704,0.540586,0.327357,0.506759,0.161512,0.262811,0.126853,0.491723,0.0654474,0.522497,0.779622,0.358421,0.808919,0.796539,0.650179,0.0327182,0.851421,0.164397,0.477711,0.550738,0.142583,0.412083,0.0266399,0.648194,0.145881,0.904201,0.825109,0.0243476,0.701259,0.111071,0.330105,0.83498,0.468885,0.351084,0.0393651,0.591456,0.475639,0.0556596,0.550911,0.505923,0.532802,0.717562,0.789042,0.701863,0.41169,0.815485,0.924461,0.533936,0.797878,0.486421,0.75828,0.858224,0.993504,0.261414,0.497362,0.125996,0.920478,0.465241,0.176614,0.2349,0.458093,0.694888,0.0128389,0.786613,0.127324,0.802017,0.960897,0.0858873,0.58374,0.12206,0.806956,0.312014,0.477413,0.458435,0.799671,0.396621,0.401689,0.878158,0.627385,0.433354,0.432802,0.834597,0.0577638,0.242792,0.533732,0.625327,0.254713,0.821635,0.625637,0.879736,0.34257,0.156539,0.627849,0.399328,0.777407,0.823923,0.671314,0.557886,0.0497746,0.132709,0.518302,0.883584,0.811762,0.19341,0.662879,0.364324,0.608787,0.776719,0.397355,0.234087,0.0960277,0.0829536,0.85232,0.467017,0.211852,0.807708,0.283655,0.682797,0.202721,0.769322,0.274469,0.389452,0.683827,0.48752,0.697769,0.2755,0.13626,0.967842,0.607321,0.745867,0.9036,0.101744,0.77336,0.601497,0.737322,0.634628,0.411154,0.749552,0.663993,0.629806,0.19948,0.456671,0.920504,0.0104519,0.854866,0.721504,0.696791,0.595476,0.599845,0.341186,0.743129,0.347666,0.0707995,0.0898741,0.266178,0.929276,0.63484,0.116988,0.531711,0.20824,0.237788,0.387133,0.139352,0.358019,0.0647237,0.183391,0.998727,0.143417,0.708495,0.679892,0.272327,0.138354,0.9174,0.847211,0.79106,0.28797,0.303831,0.219414,0.620228,0.222035,0.141159,0.0165842,0.293896,0.799651,0.79788,0.267228,0.725625,0.508398,0.0852581,0.632173,0.474729,0.0325437,0.291174,0.616205,0.519026,0.617495,0.329378,0.519343,0.961905,0.396425,0.905076,0.239926,0.523036,0.990027,0.310707,0.365472,0.710211,0.344249,0.160167,0.0872937,0.83239,0.465603,0.571861,0.66287,0.713212,0.514717,0.519329,0.95103,0.609284,0.0970936,0.967614,0.0991591,0.826207,0.230512,0.523819,0.975343,0.288512,0.0942437,0.628763,0.239744,0.255295,0.722572,0.464149,0.778717,0.188537,0.283978,0.0972193,0.829538,0.0850029,0.842491,0.568086,0.915204,0.226426,0.258154,0.752344,0.343462,0.314583,0.0580222,0.989927,0.783918,0.881649,0.314746,0.179339,0.536477,0.35357,0.123387,0.846818,0.0712916,0.661914,0.818842,0.201455,0.240317,0.70873,0.149332,0.642353,0.450384,0.943695,0.544166,0.484932,0.154202,0.196776,0.229467,0.0984591,0.155931,0.338141,0.0335876,0.496088,0.859049,0.235864,0.555727,0.562641,0.431207,0.986856,0.144288,0.943922,0.104976,0.16647,0.269818,0.79855,0.337467,0.423291,0.323912,0.542879,0.453318,0.323945,0.394044,0.572546,0.0860121,0.887416,0.912262,0.579958,0.730079,0.6148,0.842475,0.617437,0.561986,0.406248,0.741304,0.43077,0.312918,0.345751,0.311607,0.109362,0.641749,0.627355,0.145951,0.134183,0.131569,0.706974,0.104679,0.392269,0.904744,0.837205,0.0881152,0.463991,0.0685947,0.458043,0.527094,0.882362,0.326017,0.11978,0.815213,0.755447,0.316932,0.311596,0.222269,0.0554925,0.350615,0.88106,0.296083,0.551241,0.16605,0.797944,0.331816,0.321406,0.335234,0.368669,0.0448647,0.423514,0.842469,0.584773,0.0697376,0.157811,0.30811,0.192828,0.870554,0.245099,0.244379,0.689734,0.0469435,0.39143,0.33318,0.014344,0.48388,0.346589,0.409311,0.471136,0.871811,0.617602,0.573472,0.386501,0.522249,0.169965,0.308426,0.834044,0.278022,0.947979,0.402694,0.634264,0.624763,0.545691,0.603664,0.713026,0.550664,0.684039,0.229065,0.430072,0.215259,0.359376,0.523448,0.440903,0.959207,0.445771,0.165157,0.63941,0.657515,0.291854,0.665593,0.62129,0.180031,0.698126,0.541644,0.189081,0.284609,0.994373,0.945679,0.752912,0.389623,0.43373,0.547046,0.224851,0.946989,0.395577,0.259732,0.59987,0.565419,0.66455,0.995932,0.449488,0.356636,0.406369,0.981636,0.770114,0.457036,0.146287,0.735905,0.646172,0.588547,0.543944,0.641483,0.822602,0.908671,0.0307752,0.655156,0.253563,0.532264,0.00297225,0.657563,0.063511,0.128718,0.0617692,0.702161,0.785882,0.739233,0.35206,0.148504,0.877074,0.357053,0.621842,0.186019,0.306398,0.807362,0.789677,0.261703,0.633766,0.217944,0.387762,0.911922,0.233166,0.664725,0.955621,0.503927,0.879645,0.992535,0.740145,0.991478,0.530349,0.113168,0.778167,0.235049,0.978228,0.952614,0.695646,0.0279056,0.615767,0.324001,0.366496,0.165631,0.254519,0.755945,0.60141,0.869933,0.0416069,0.291003,0.971366,0.971437,0.796498,0.074362,0.527905,0.0640717,0.519984,0.950959,0.655977,0.0342171,0.617433,0.272492,0.154777,0.394182,0.410514,0.740692,0.881203,0.225529,0.738186,0.124905,0.239843,0.0772246,0.671142,0.0147277,0.826005,0.344434,0.0262803,0.488688,0.119467,0.525495,0.57421,0.136463,0.536051,0.984497,0.199998,0.88904,0.382532,0.53694,0.170484,0.106613,0.620652,0.40907,0.38559,0.56023,0.706937,0.0925234,0.205405,0.995443,0.723146,0.564705,0.450577,0.0822934,0.789858,0.693468,0.520019,0.0633824,0.0724004,0.66208,0.609513,0.38063,0.367725,0.168458,0.513559,0.718229,0.271489,0.025022,0.840655,0.943972,0.403753,0.341164,0.615828,0.139191,0.367518,0.775583,0.448927,0.391439,0.233418,0.860745,0.600304,0.442512,0.414289,0.1849,0.350358,0.644121,0.0548659,0.459407,0.059975,0.821958,0.448223,0.902323,0.296677,0.64548,0.906453,0.110837,0.802518,0.142039,0.617268,0.547432,0.0355302,0.0544249,0.354811,0.338812,0.663128,0.554496,0.172291,0.339296,0.13612,0.214843,0.133528,0.490764,0.000473917,0.908475,0.917898,0.434697,0.839172,0.397799,0.590147,0.711399,0.309131,0.993113,0.69183,0.336498,0.393422,0.129176,0.893886,0.870978,0.741121,0.149904,0.650038,0.824153,0.156816,0.924656,0.408524,0.458999,0.722346,0.0010528,0.0885593,0.742057,0.486104,0.673883,0.0261294,0.239789,0.547459,0.422058,0.787737,0.638246,0.79564,0.656701,0.942464,0.0362756,0.757132,0.490698,0.952288,0.842468,0.178414,0.524421,0.0167893,0.284051,0.585206,0.0245522,0.662898,0.459165,0.177542,0.830398,0.0553311,0.00576437,0.31585,0.916282,0.0925377,0.376766,0.859868,0.396785,0.25958,0.502591,0.407796,0.4497,0.842265,0.829183,0.559149,0.297058,0.229743,0.743239,0.419436,0.889715,0.430576,0.80868,0.563099,0.437971,0.654671,0.896392,0.676922,0.992279,0.0144283,0.960318,0.0173326,0.755576,0.190123,0.601044,0.957157,0.676168,0.621016,0.187631,0.960111,0.294159,0.777181,0.0491918,0.934642,0.0256377,0.597145,0.200717,0.634766,0.877405,0.421915,0.927184,0.204504,0.580362,0.889363,0.809287,0.429812,0.516223,0.736601,0.661619,0.817082,0.0052731,0.177291,0.200724,0.688813,0.60769,0.415194,0.707034,0.342245,0.411355,0.947233,0.0949278,0.189744,0.23042,0.903454,0.0440686,0.584041,0.0337695,0.555789,0.281352,0.18671,0.419173,0.693738,0.0960338,0.247831,0.995087,0.835635,0.334081,0.975277,0.328342,0.332751,0.896315,0.410177,0.646133,0.484329,0.432269,0.218076,0.130973,0.0465835,0.762622,0.926688,0.126803,0.376292,0.25058,0.954078,0.627825,0.267266,0.598488,0.233241,0.531206,0.503013,0.299631,0.00851941,0.64859,0.916936,0.45193,0.199086,0.119264,0.977369,0.290225,0.878677,0.109433,0.897335,0.277539,0.634578,0.322916,0.473204,0.293344,0.329183,0.0402357,0.538949,0.337237,0.0952592,0.501138,0.323681,0.834716,0.890471,0.43793,0.0389788,0.429818,0.385192,0.464517,0.146044,0.646023,0.502418,0.180531,0.539281,0.88382,0.216264,0.855686,0.44035,0.0869299,0.17595,0.636884,0.728809,0.654999,0.786668,0.875958,0.237242,0.324718,0.635607,0.120134,0.468254,0.692497,0.381825,0.596247,0.601831,0.642549,0.421907,0.354377,0.306431,0.475421,0.587218,0.36608,0.906526,0.00227612,0.36201,0.189856,0.00621712,0.561104,0.176111,0.679763,0.308646,0.388133,0.294804,0.180256,0.266825,0.535741,0.710274,0.0138462,0.377913,0.101597,0.758299,0.413598,0.013527,0.852243,0.0169511,0.457755,0.0961604,0.727409,0.77039,0.0325553,0.184413,0.716504,0.748145,0.640422,0.199032,0.363922,0.0486839,0.823024,0.755883,0.50512,0.338876,0.481621,0.0430267,0.907078,0.328623,0.951902,0.175889,0.226994,0.916599,0.941766,0.303761,0.0346569,0.513415,0.166903,0.305745,0.429956,0.674797,0.488652,0.376146,0.470219,0.471029,0.189445,0.177841,0.279428,0.675012,0.300067,0.212707,0.612147,0.670282,0.526665,0.665339,0.330619,0.581144,0.738176,0.696129,0.0434172,0.134274,0.576077,0.729521,0.989292,0.428864,0.0567395,0.749073,0.327599,0.89561,0.122064,0.88567,0.394482,0.941676,0.303126,0.32835,0.0364515,0.685545,0.308183,0.879478,0.932956,0.363367,0.038851,0.747817,0.283519,0.205555,0.705983,0.473765,0.969104,0.737209,0.326085,|0.899484,0.99167,0.975706,0.585231,0.609485,0.829033,0.20335,0.343163,0.354315,0.916429,0.249846,0.17441,0.933117,0.412052,0.559322,0.4988,0.837865,0.690215,0.18557,0.871362,0.440357,0.746074,0.621487,0.10655,0.0512672,0.246077,0.128331,0.512362,0.0701253,0.281436,0.777683,0.494372,0.535835,0.543902,0.306109,0.742069,0.567684,0.80512,0.731658,0.951673,0.770395,0.270445,0.376782,0.863382,0.698705,0.730476,0.371236,0.565374,0.954315,0.204042,0.541861,0.217128,0.435542,0.122818,0.36807,0.557382,0.81404,0.016528,0.637,0.697076,0.199558,0.821564,0.35102,0.866151,0.516934,0.251994,0.983792,0.468413,0.148803,0.460445,0.826072,0.201255,0.714775,0.209135,0.729331,0.875734,0.960268,0.947867,0.0172642,0.354411,0.537331,0.612372,0.89887,0.460138,0.606926,0.094837,0.825889,0.100925,0.871076,0.51273,0.387933,0.331517,0.356619,0.355062,0.0851756,0.812291,0.586954,0.19174,0.347512,0.522854,0.503768,0.320403,0.416986,0.151741,0.42022,0.649873,0.286103,0.645644,0.683225,0.628888,0.924207,0.595689,0.249313,0.47307,0.0217065,0.786671,0.277233,0.773484,0.714545,0.216296,0.699652,0.194544,0.354445,0.279159,0.477642,0.905871,0.843922,0.320943,0.865752,0.715296,0.242374,0.799431,0.312506,0.298814,0.964936,0.833043,0.0317771,0.412298,0.426379,0.184555,0.532163,0.0929019,0.660235,0.754114,0.0818858,0.764389,0.0574327,0.608165,0.544016,0.537523,0.268887,0.530278,0.300401,0.101701,0.725206,0.987579,0.817641,0.804515,0.636379,0.251025,0.143987,0.47697,0.507029,0.898051,0.00874841,0.979799,0.554949,0.687026,0.0276148,0.791559,0.0485613,0.489317,0.465072,0.801697,0.438976,0.762256,0.0818582,0.116408,0.0481831,0.375891,0.0458881,0.592277,0.832516,0.330293,0.225055,0.289408,0.607231,0.849164,0.269632,0.421938,0.835044,0.58621,0.116315,0.829087,0.0482528,0.60877,0.651151,0.88645,0.947805,0.0886288,0.661279,0.282617,0.942565,0.322612,0.182906,0.130439,0.966367,0.846007,0.878474,0.0337984,0.512374,0.771316,0.0903319,0.913926,0.872275,0.080856,0.320048,0.014186,0.142123,0.193241,0.647513,0.00961423,0.607342,0.449306,0.880002,0.0860823,0.925294,0.0855735,0.186293,0.330674,0.527863,0.309981,0.914145,0.187625,0.57915,0.91924,0.101329,0.29494,0.890482,0.032365,0.640259,0.782589,0.633011,0.667179,0.750044,0.215188,0.152383,0.853929,0.880626,0.444257,0.916538,0.398758,0.857459,0.601708,0.738121,0.972284,0.308799,0.654832,0.989228,0.857081,0.399271,0.0541935,0.141019,0.205571,0.923946,0.942992,0.748897,0.988146,0.540833,0.868285,0.898777,0.384775,0.499074,0.31463,0.713262,0.371102,0.584587,0.748215,0.929963,0.863105,0.163543,0.779312,0.588947,0.789976,0.927363,0.0772489,0.587566,0.346338,0.457681,0.808565,0.897697,0.437229,0.0436773,0.265936,0.597868,0.0456722,0.247165,0.23091,0.139207,0.817232,0.651336,0.481755,0.279358,0.505397,0.343491,0.731232,0.973336,0.0513225,0.0189674,0.893737,0.643144,0.0017516,0.138322,0.334378,0.413033,0.982381,0.272385,0.407984,0.985347,0.923879,0.0758026,0.1846,0.441869,0.864693,0.457731,0.271958,0.617275,0.646979,0.939361,0.382923,0.536138,0.936233,0.80232,0.460206,0.323525,0.727782,0.043357,0.839,0.71193,0.716452,0.125903,0.336622,0.472293,0.743222,0.153156,0.982552,0.681716,0.625247,0.186516,0.0176387,0.803866,0.129306,0.0471216,0.142943,0.436388,0.220527,0.696514,0.287123,0.991904,0.484165,0.832855,0.43053,0.0835384,0.78246,0.968658,0.329836,0.143349,0.170968,0.0172381,0.122213,0.17947,0.68307,0.276973,0.531165,0.950325,0.79611,0.347993,0.121002,0.161115,0.429813,0.396949,0.684964,0.341569,0.695389,0.398034,0.682042,0.0667166,0.378166,0.67929,0.319446,0.81255,0.410441,0.776414,0.942758,0.699991,0.343993,0.379882,0.396991,0.917388,0.754056,0.279122,0.0257738,0.954638,0.859445,0.723341,0.923577,0.982328,0.481356,0.598928,0.918076,0.767177,0.703744,0.231748,0.785257,0.996417,0.271881,0.454813,0.144396,0.927898,0.327027,0.111164,0.928793,0.121483,0.272761,0.674896,0.332443,0.335021,0.6535,0.91237,0.849319,0.581968,0.542369,0.650157,0.843971,0.0902563,0.387631,0.331611,0.59712,0.623318,0.947822,0.0862885,0.991808,0.808885,0.768914,0.416052,0.280604,0.0561095,0.683064,0.804601,0.897585,0.922687,0.66973,0.488677,0.610083,0.569348,0.874038,0.66444,0.36807,0.465236,0.94221,0.667743,0.641149,0.211583,0.696971,0.0377999,0.773842,0.596405,0.30084,0.418312,0.425056,0.515488,0.214463,0.256086,0.913008,0.287888,0.956297,0.698624,0.512072,0.739386,0.66078,0.364261,0.024617,0.349423,0.684559,0.376652,0.633969,0.960236,0.675775,0.757647,0.0611385,0.391879,0.426434,0.149567,0.81787,0.0690879,0.421801,0.576665,0.241231,0.957376,0.380592,0.52707,0.935562,0.966191,0.86951,0.0426793,0.17354,0.399889,0.92136,0.100217,0.763735,0.663233,0.680717,0.942251,0.0476133,0.993327,0.622128,0.802298,0.08644,0.507672,0.0734978,0.678247,0.992578,0.148781,0.866733,0.00862616,0.551362,0.0533014,0.273522,0.660638,0.744656,0.637291,0.289111,0.844198,0.739697,0.946931,0.000945985,0.40517,0.922432,0.979908,0.296498,0.884595,0.384757,0.43132,0.819378,0.837049,0.188154,0.386793,0.744295,0.924746,0.0119094,0.952544,0.00103635,0.686921,0.480592,0.764313,0.286901,0.282724,0.0290218,0.246952,0.468163,0.944081,0.43804,0.829437,0.333144,0.965755,0.58516,0.482562,0.713727,0.0355958,0.393441,0.954342,0.834017,0.844704,0.693096,0.888721,0.284476,0.48967,0.222091,0.147861,0.47673,0.35327,0.653721,0.660208,0.198315,0.907806,0.249847,0.615458,0.00847608,0.876242,0.105633,0.468246,0.560281,0.464024,0.479723,0.671054,0.889563,0.997466,0.332007,0.286423,0.983778,0.124284,0.27661,0.50712,0.660262,0.913122,0.702101,0.361401,0.966473,0.543099,0.0067659,0.0466995,0.864837,0.264485,0.486107,0.802279,0.0119524,0.6885,0.0496573,0.512168,0.324628,0.781886,0.647099,0.572193,0.602394,0.646251,0.764247,0.472797,0.225673,0.422359,0.748326,0.434701,0.145536,0.50482,0.140853,0.677085,0.397378,0.556261,0.71259,0.169098,0.77278,0.0593931,0.604844,0.821202,0.468386,0.0609553,0.0924273,0.929301,0.339573,0.542933,0.350294,0.0451426,0.262047,0.465193,0.775273,0.641449,0.091585,0.706379,0.133602,0.66663,0.238782,0.318348,0.163689,0.296441,0.0837433,0.648932,0.292022,0.552299,0.937052,0.0165601,0.129004,0.13227,0.591789,0.802685,0.418047,0.772984,0.596509,0.187133,0.36591,0.977956,0.633466,0.386345,0.324238,0.294276,0.174515,0.812051,0.50923,0.625703,0.819826,0.744173,0.150686,0.589756,0.664493,0.736584,0.958968,0.386177,0.266124,0.0705801,0.829929,0.290064,0.406296,0.512923,0.908409,0.228977,0.371434,0.0243836,0.29107,0.359403,0.784184,0.266693,0.0416767,0.668747,0.00630385,0.0133799,0.492316,0.770283,0.105754,0.943483,0.649225,0.585381,0.318194,0.110542,0.194065,0.0982742,0.116683,0.208472,0.415279,0.0241051,0.799367,0.705048,0.504973,0.28384,0.697839,0.955267,0.449907,0.353841,0.709437,0.0288424,0.897119,0.0845833,0.618802,0.301789,0.290118,0.096999,0.320904,0.239823,0.440041,0.794289,0.476432,0.583622,0.340872,0.675596,0.565139,0.188202,0.87043,0.168399,0.378816,0.264356,0.609754,0.594607,0.984552,0.390856,0.0166053,0.0897577,0.0295312,0.223764,0.947539,0.151209,0.148445,0.974018,0.557664,0.599411,0.286633,0.296057,0.216188,0.345924,0.964925,0.915086,0.974498,0.014708,0.438479,0.476948,0.126905,0.423332,0.662311,0.970182,0.455416,0.677507,0.125343,0.693484,0.500329,0.57793,0.446665,0.924689,0.599453,0.455617,0.0465484,0.0456259,0.755041,0.476519,0.269512,0.465416,0.993802,0.744625,0.987996,0.0644774,0.166967,0.118292,0.0171285,0.0655722,0.736886,0.791111,0.430993,0.812205,0.57037,0.54867,0.326924,0.962273,0.653906,0.966939,0.305999,0.566149,0.895711,0.287357,0.595215,0.926419,0.950974,0.0855148,0.237446,0.689259,0.324533,0.757817,0.330106,0.248545,0.877047,0.379113,0.168674,0.555191,0.82461,0.10349,0.489437,0.743043,0.137045,0.696009,0.451442,0.215265,0.0679486,0.910113,0.731037,0.166555,0.597568,0.238349,0.954587,0.0842048,0.308947,0.130415,0.0870152,0.175949,0.967063,0.586104,0.792669,0.440927,0.440679,0.834409,0.91795,0.636689,0.0296923,0.494443,0.837475,0.697204,0.230296,0.475226,0.965971,0.767149,0.576753,0.0910671,0.641078,0.837388,0.703556,0.722071,0.332735,0.170737,0.696731,0.883457,0.763085,0.380206,0.296048,0.309573,0.511028,0.283617,0.762129,0.435358,0.379014,0.0551113,0.449218,0.850573,0.353864,0.817687,0.679,0.244691,0.297936,0.0428119,0.341092,0.687535,0.466835,0.0880781,0.340236,0.693556,0.300059,0.35619,0.947978,0.888753,0.0462449,0.795836,0.256225,0.702398,0.0307783,0.440654,0.282903,0.786361,0.139658,0.400319,0.779732,0.451123,0.187449,0.633946,0.0610598,0.558084,0.813426,0.712922,0.285664,0.186595,0.603919,0.776663,0.723852,0.542724,0.947985,0.0247378,0.408119,0.278899,0.0580225,0.828838,0.347847,0.408453,0.250417,0.718292,0.648848,0.703572,0.888636,0.318152,0.102866,0.198574,0.152125,0.21358,0.744453,0.687711,0.729514,0.832978,0.768049,0.844011,0.114153,0.703967,0.721992,0.194683,0.27992,0.316787,0.273187,0.509588,0.982841,0.269668,0.182448,0.63347,0.146084,0.79998,0.198877,0.209119,0.777243,0.950883,0.193219,0.2663,0.363964,0.114566,0.462839,0.132375,0.874994,0.618487,0.271343,0.378636,0.438152,0.785149,0.412548,0.675436,0.0723901,0.200057,0.0659995,0.18566,0.228208,0.0785572,0.408648,0.931621,0.852847,|0.907634,0.494374,0.467038,0.812939,0.672615,0.74521,0.262549,0.787011,0.913486,0.905075,0.954567,0.260324,0.275815,0.126076,0.100739,0.922478,0.184841,0.037472,0.304135,0.942774,0.945798,0.732234,0.899538,0.651183,0.0152586,0.321875,0.477222,0.690314,0.93911,0.637963,0.294931,0.41751,0.149958,0.128386,0.0348144,0.796956,0.235393,0.210633,0.896594,0.128352,0.374054,0.171655,0.969693,0.746585,0.702416,0.959265,0.690737,0.588018,0.529704,0.604923,0.427709,0.26276,0.457835,0.758716,0.713521,0.652515,0.0997084,0.715537,0.368221,0.199527,0.598523,0.580716,0.264162,0.6694,0.378035,0.379668,0.242149,0.192181,0.500898,0.237882,0.625092,0.455762,0.0451108,0.21326,0.483081,0.442278,0.281743,0.0998138,0.850094,0.594706,0.0786239,0.0715104,0.119716,0.63613,0.752088,0.294494,0.128743,0.170006,0.0533251,0.96321,0.462435,0.880453,0.168186,0.149106,0.191113,0.782733,0.363791,0.425032,0.520256,0.10417,0.593157,0.769314,0.795568,0.811864,0.537337,0.774172,0.221734,0.653705,0.123672,0.120804,0.161701,0.565177,0.621418,0.84543,0.101626,0.580441,0.657744,0.467479,0.957945,0.825098,0.221279,0.264195,0.567163,0.202464,0.588379,0.820656,0.824738,0.846498,0.84565,0.141798,0.588111,0.623388,0.164738,0.240004,0.605199,0.828464,0.352892,0.238655,0.887501,0.601282,0.780527,0.650538,0.698547,0.426423,0.344593,0.850885,0.033962,0.211714,0.345707,0.13024,0.0900607,0.088457,0.591726,0.0424571,0.204406,0.289941,0.139471,0.0806472,0.883155,0.179213,0.598285,0.932021,0.964764,0.923147,0.63396,0.431132,0.959244,0.957565,0.750457,0.237236,0.400429,0.716817,0.305705,0.826062,0.602663,0.336402,0.957809,0.151717,0.85167,0.110594,0.958117,0.735129,0.089609,0.668252,0.311363,0.787794,0.817945,0.747624,0.70021,0.882584,0.0876734,0.0398591,0.692857,0.6813,0.460676,0.329948,0.488726,0.622447,0.460531,0.474127,0.403443,0.983672,0.957987,0.853291,0.977556,0.181031,0.843382,0.895196,0.53045,0.652019,0.896803,0.35793,0.805115,0.678623,0.712093,0.710202,0.181003,0.291284,0.692254,0.186259,0.0638397,0.695656,0.898772,0.110157,0.0757489,0.77172,0.688949,0.741729,0.0642785,0.226982,0.561126,0.528567,0.164014,0.935768,0.495168,0.120357,0.659345,0.938898,0.719281,0.772717,0.326131,0.659716,0.286538,0.665079,0.980461,0.138611,0.895204,0.310128,0.924399,0.604802,0.0129701,0.410052,0.635791,0.711045,0.688586,0.0457508,0.227562,0.862113,0.010608,0.152339,0.259589,0.0898694,0.699591,0.802289,0.789222,0.226348,0.223693,0.516469,0.123667,0.285738,0.0706112,0.855253,0.202932,0.368124,0.256755,0.921684,0.184462,0.82358,0.0667291,0.409224,0.526817,0.506346,0.904869,0.116387,0.915038,0.77333,0.399788,0.54071,0.289218,0.665783,0.364305,0.339823,0.967673,0.0518363,0.687274,0.962145,0.523064,0.246694,0.62174,0.0450189,0.392392,0.995493,0.313507,0.390189,0.421865,0.538052,0.599241,0.380552,0.894016,0.499696,0.250051,0.883015,0.240359,0.756625,0.303215,0.606664,0.566413,0.664156,0.591505,0.183614,0.993147,0.956182,0.8512,0.166701,0.113049,0.366948,0.869966,0.29754,0.386233,0.840307,0.41017,0.492068,0.176288,0.172382,0.812419,0.0383586,0.960451,0.585781,0.273989,0.857099,0.618605,0.897108,0.199763,0.696948,0.857963,0.623829,0.26504,0.720792,0.246443,0.0416623,0.532014,0.46448,0.244786,0.819996,0.34211,0.0199487,0.00112092,0.692679,0.664603,0.265903,0.284618,0.761415,0.919199,0.0236484,0.31642,0.770258,0.737497,0.326814,0.0762967,0.960876,0.469464,0.69332,0.458778,0.302427,0.151798,0.522433,0.484077,0.905057,0.365589,0.38694,0.707043,0.0986539,0.19553,0.0433595,0.116765,0.647112,0.280471,0.761971,0.72972,0.582661,0.644554,0.620131,0.237117,0.135909,0.790843,0.9586,0.131326,0.468412,0.433915,0.699244,0.414969,0.658984,0.295346,0.314538,0.972781,0.170379,0.15632,0.95356,0.376017,0.707243,0.333196,0.580723,0.751607,0.0267947,0.711759,0.0433419,0.576586,0.725532,0.366478,0.457234,0.909787,0.0119423,0.786793,0.378664,0.327374,0.119916,0.688282,0.632311,0.255531,0.689472,0.200625,0.633554,0.10158,0.500852,0.432436,0.242234,0.455387,0.252091,0.801999,0.474474,0.398341,0.888403,0.964881,0.357097,0.818867,0.824144,0.859192,0.48795,0.315099,0.874087,0.437605,0.010083,0.674581,0.802556,0.737462,0.993558,0.19348,0.82131,0.106966,0.364053,0.442117,0.212734,0.935041,0.267303,0.889035,0.205765,0.500196,0.355579,0.967107,0.89272,0.0879101,0.081733,0.0552279,0.357487,0.326517,0.250774,0.424117,0.417564,0.000608802,0.0162739,0.574439,0.968925,0.855927,0.79328,0.21515,0.0787012,0.97079,0.11933,0.639578,0.943408,0.235159,0.293704,0.114559,0.484103,0.191522,0.861118,0.0488313,0.290342,0.429188,0.435533,0.268632,0.706982,0.564315,0.925676,0.461285,0.348744,0.295173,0.488895,0.299633,0.84959,0.796241,0.546298,0.770675,0.93519,0.894143,0.500385,0.307461,0.699031,0.998062,0.168335,0.662051,0.810228,0.827371,0.93706,0.996198,0.564815,0.855551,0.562401,0.0417768,0.163714,0.778988,0.719499,0.316511,0.48917,0.866731,0.135039,0.462834,0.976003,0.537335,0.776544,0.417574,0.50652,0.328994,0.964229,0.0214725,0.599682,0.322297,0.888798,0.421563,0.445843,0.718901,0.155494,0.776955,0.227894,0.437108,0.27485,0.199812,0.412401,0.244403,0.235746,0.0564101,0.316232,0.506096,0.857729,0.547674,0.110588,0.922359,0.664845,0.421437,0.866643,0.185099,0.0695651,0.572344,0.808115,0.5816,0.156109,0.857314,0.458774,0.952897,0.745334,0.480988,0.236199,0.075563,0.0758731,0.263427,0.986741,0.458215,0.981602,0.369654,0.955028,0.518435,0.30074,0.894059,0.591341,0.429302,0.114918,0.96697,0.113819,0.593958,0.8547,0.0978658,0.660484,0.909687,0.85563,0.989359,0.78194,0.685636,0.630765,0.884869,0.982289,0.437145,0.0831788,0.92759,0.260569,0.839583,0.515094,0.143358,0.58744,0.908741,0.498513,0.144209,0.780449,0.255113,0.936349,0.856739,0.506807,0.0438449,0.828589,0.101247,0.266668,0.382212,0.713852,0.590985,0.334999,0.271466,0.17345,0.355314,0.788621,0.123877,0.167964,0.624406,0.371663,0.317227,0.88739,0.733188,0.186961,0.823806,0.882609,0.114116,0.61738,0.971565,0.695788,0.0148591,0.399807,0.000521243,0.588817,0.068737,0.317028,0.177941,0.772762,0.820772,0.779469,0.209632,0.580351,0.600237,0.396178,0.766322,0.443783,0.735608,0.566133,0.256706,0.321662,0.670721,0.460191,0.934902,0.776369,0.28678,0.418044,0.148726,0.0162304,0.573834,0.0333626,0.541808,0.394252,0.958287,0.61864,0.389252,0.222169,0.948489,0.772151,0.825161,0.0484519,0.0625917,0.464752,0.011956,0.226922,0.788962,0.971211,0.607824,0.0326124,0.465133,0.152879,0.54258,0.0865631,0.354551,0.925475,0.21106,0.373728,0.709335,0.491738,0.51859,0.231299,0.474941,0.728121,0.434998,0.238204,0.422182,0.752858,0.322588,0.50585,0.233602,0.783392,0.442701,0.0843796,0.517082,0.214587,0.688537,0.443434,0.6218,0.578468,0.293991,0.478157,0.610725,0.479629,0.412136,0.543808,0.399707,0.125053,0.82662,0.580687,0.0393732,0.637058,0.960908,0.165187,0.858845,0.242139,0.795478,0.634699,0.255614,0.502122,0.0593461,0.172177,0.0532466,0.816844,0.205122,0.935366,0.609868,0.166827,0.499053,0.0136445,0.216061,0.197827,0.391578,0.0463782,0.0802405,0.165125,0.867238,0.431528,0.227814,0.0588782,0.138533,0.424177,0.28932,0.913068,0.0993397,0.495895,0.173994,0.477535,0.0408208,0.321599,0.123143,0.917126,0.18472,0.228827,0.0410262,0.10895,0.837919,0.842734,0.0853266,0.703037,0.191428,0.0247113,0.113682,0.0641221,0.741381,0.874912,0.0122493,0.476027,0.264179,0.844698,0.371013,0.613314,0.0649831,0.258076,0.543072,0.887788,0.488557,0.403133,0.123145,0.934244,0.173623,0.271394,0.275694,0.826881,0.00575793,0.585667,0.32027,0.000413656,0.656568,0.662493,0.0345762,0.520279,0.20255,0.910865,0.373164,0.749171,0.323917,0.639224,0.393457,0.2015,0.815022,0.807684,0.132701,0.488266,0.492029,0.0424024,0.908581,0.217185,0.344559,0.662804,0.789335,0.964349,0.57785,0.151973,0.0500003,0.0870124,0.569995,0.333408,0.934564,0.721432,0.0163383,0.67571,0.646243,0.938272,0.60657,0.654231,0.250988,0.415574,0.595503,0.176998,0.137659,0.674467,0.993824,0.907869,0.424156,0.0997585,0.145225,0.830481,0.844704,0.555938,0.278359,0.440117,0.7081,0.637887,0.423027,0.63376,0.519889,0.618224,0.681241,0.630112,0.00703233,0.226169,0.83563,0.366992,0.573057,0.430792,0.499444,0.124593,0.219104,0.11335,0.18892,0.172564,0.291816,0.862098,0.352113,0.638876,0.63527,0.348607,0.210426,0.573091,0.943895,0.330225,0.425077,0.677432,0.0482619,0.925644,0.483154,0.620282,0.839698,0.529978,0.000359952,0.00161344,0.98239,0.868348,0.759745,0.632942,0.570891,0.279726,0.835736,0.798312,0.0462686,0.308711,0.506848,0.931434,0.237857,0.332112,0.639245,0.850718,0.635421,0.227336,0.426922,0.800211,0.189613,0.665988,0.986253,0.826971,0.687312,0.956731,0.1404,0.00779235,0.54077,0.437211,0.627546,0.723185,0.382102,0.490738,0.00856346,0.839732,0.123429,0.0728628,0.0649093,0.25831,0.171879,0.801067,0.249336,0.223217,0.0796307,0.567965,0.36724,0.182455,0.791017,0.580069,0.876726,0.75923,0.965106,0.248823,0.571146,0.924507,0.442033,0.553398,0.876377,0.373029,0.167474,0.265067,0.0285632,0.138799,0.531199,0.706792,0.193535,0.770249,0.466269,0.864964,0.753198,0.134335,0.547199,0.293874,0.796946,0.280941,0.367948,0.310354,0.682636,0.854541,0.173369,0.759812,0.0263084,0.70227,0.719162,0.145342,0.572768,0.0932521,|0.202315,0.00606507,0.578831,0.240589,0.00142455,0.635594,0.588471,0.391988,0.323681,0.570872,0.0392436,0.524032,0.452593,0.996889,0.74294,0.845269,0.864717,0.271622,0.767751,0.788685,3.08156e-05,0.3492,0.58165,0.360379,0.485248,0.654711,0.788013,0.0736158,0.624708,0.532159,0.0491009,0.372122,0.247749,0.664763,0.194082,0.651273,0.112312,0.723721,0.979818,0.321757,0.436937,0.0736454,0.37926,0.74233,0.503656,0.903468,0.998493,0.994701,0.983185,0.955086,0.766769,0.744589,0.375704,0.62183,0.679639,0.755833,0.763643,0.631565,0.872461,0.168359,0.7968,0.104826,0.711158,0.000973225,0.0953733,0.237584,0.302822,0.610232,0.738719,0.877717,0.659977,0.754963,0.583358,0.900478,0.567057,0.721859,0.728871,0.091149,0.710687,0.865539,0.806375,0.412542,0.516307,0.801783,0.28047,0.880204,0.814293,0.495591,0.656142,0.492855,0.76077,0.695918,0.858769,0.79109,0.529175,0.795149,0.422151,0.700626,0.311855,0.86924,0.694196,0.165068,0.621716,0.168229,0.918267,0.873447,0.774179,0.0982112,0.975158,0.75839,0.589919,0.967157,0.832379,0.41613,0.804476,0.261742,0.644473,0.336161,0.698065,0.88561,0.778843,0.404348,0.518937,0.411895,0.75149,0.893738,0.97651,0.0727161,0.901433,0.679481,0.220137,0.0172881,0.825495,0.806394,0.879654,0.668097,0.417581,0.0496727,0.302971,0.560281,0.547524,0.63337,0.834842,0.0931368,0.16772,0.171923,0.862786,0.158264,0.503587,0.46264,0.301027,0.0762051,0.794141,0.698654,0.698263,0.418005,0.128197,0.942343,0.0888901,0.677436,0.48286,0.161157,0.424319,0.226388,0.219557,0.453241,0.49091,0.280129,0.464544,0.766954,0.626901,0.945708,0.820705,0.312619,0.574965,0.270805,0.227914,0.00544441,0.0886452,0.468,0.51111,0.0480165,0.70582,0.0950171,0.958678,0.376296,0.186626,0.237139,0.962395,0.78356,0.4076,0.207789,0.912186,0.383323,0.207685,0.520555,0.653298,0.300602,0.263491,0.551113,0.643029,0.69438,0.185621,0.347124,0.589105,0.455487,0.572574,0.151743,0.943168,0.488382,0.233002,0.596215,0.049948,0.756874,0.171001,0.116955,0.624604,0.179654,0.219872,0.229342,0.254943,0.36207,0.416396,0.374348,0.119178,0.234632,0.212575,0.438159,0.240173,0.348548,0.617676,0.537826,0.583947,0.720255,0.139568,0.754715,0.92828,0.918757,0.803231,0.807021,0.0849482,0.811161,0.577342,0.215506,0.692008,0.843621,0.25706,0.212493,0.613935,0.151235,0.837421,0.236131,0.782797,0.758523,0.8262,0.453377,0.306978,0.869604,0.193474,0.00504214,0.962058,0.41538,0.944338,0.953489,0.700674,0.047848,0.511737,0.28451,0.107976,0.176087,0.237432,0.727926,0.417109,0.693336,0.605842,0.351493,0.682077,0.885143,0.00534838,0.923825,0.514773,0.48348,0.482852,0.213575,0.732885,0.310576,0.194355,0.715042,0.853903,0.698475,0.826909,0.367136,0.649326,0.19163,0.416416,0.916648,0.947873,0.839987,0.159752,0.960325,0.820652,0.0614286,0.965943,0.282683,0.130288,0.276839,0.552235,0.105922,0.852543,0.00199372,0.329639,0.774982,0.953972,0.114617,0.508055,0.223045,0.615127,0.943578,0.384843,0.0764076,0.603947,0.908652,0.317972,0.405957,0.38152,0.204627,0.808516,0.376671,0.221616,0.814977,0.986454,0.239791,0.965644,0.767642,0.671554,0.151786,0.722111,0.146799,0.191306,0.777054,0.772013,0.308047,0.408649,0.822598,0.253804,0.926851,0.740601,0.720597,0.139878,0.791668,0.139656,0.277891,0.560083,0.515726,0.963594,0.0415583,0.254044,0.85207,0.0862776,0.884133,0.0571374,0.262772,0.979759,0.482793,0.738034,0.21601,0.660913,0.486178,0.506237,0.241176,0.490932,0.240798,0.181361,0.440503,0.0570795,0.44089,0.806469,0.37138,0.0595778,0.717174,0.639848,0.285665,0.855064,0.347416,0.878053,0.642465,0.82442,0.911113,0.276304,0.256049,0.242349,0.865604,0.42454,0.564029,0.0975301,0.220068,0.469968,0.0999449,0.97386,0.64773,0.00519657,0.317614,0.388998,0.0597824,0.927312,0.0510291,0.26802,0.195908,0.889155,0.155888,0.317301,0.735812,0.729612,0.743743,0.922097,0.109283,0.596501,0.35652,0.282617,0.416526,0.0165119,0.748326,0.60667,0.905036,0.79867,0.456962,0.0510579,0.326107,0.734678,0.957326,0.695882,0.560068,0.385577,0.620057,0.794842,0.952515,0.175677,0.244395,0.733215,0.213152,0.0145446,0.987039,0.524454,0.413106,0.865291,0.30094,0.67817,0.72103,0.99498,0.137455,0.903,0.278291,0.57809,0.775109,0.753415,0.0187781,0.881861,0.109092,0.596099,0.900766,0.888921,0.280704,0.805594,0.0769856,0.532092,0.444012,0.315437,0.492585,0.770951,0.867778,0.119257,0.879682,0.527399,0.554499,0.872789,0.390996,0.593609,0.341934,0.146303,0.0840886,0.164131,0.844161,0.461803,0.696839,0.204497,0.161209,0.74159,0.562038,0.271627,0.761433,0.683915,0.6918,0.8642,0.928667,0.502577,0.356783,0.915264,0.685796,0.0936045,0.842245,0.789389,0.0397509,0.459384,0.541369,0.343735,0.820942,0.280392,0.612091,0.628279,0.0903065,0.251509,0.527391,0.530424,0.308699,0.109503,0.0588592,0.541304,0.452204,0.253016,0.610607,0.275292,0.313652,0.279019,0.990303,0.863975,0.986769,0.0469621,0.236029,0.131333,0.894342,0.836557,0.803412,0.559453,0.494422,0.547146,0.406734,0.782132,0.772662,0.1932,0.386469,0.197271,0.314949,0.646233,0.750888,0.864592,0.0877566,0.236313,0.694084,0.547119,0.398947,0.0657228,0.538536,0.518954,0.215243,0.436614,0.0419245,0.379686,0.263942,0.674382,0.13931,0.929396,0.405706,0.162296,0.0398168,0.719713,0.840965,0.219301,0.767917,0.130763,0.228873,0.490071,0.954586,0.2094,0.961474,0.570666,0.285224,0.412875,0.0169803,0.72761,0.794985,0.0556459,0.233474,0.0938521,0.00435257,0.838584,0.567383,0.876112,0.680832,0.834574,0.9345,0.290395,0.977477,0.873611,0.921283,0.759899,0.600865,0.0849724,0.290691,0.505223,0.656546,0.736999,0.908083,0.868057,0.214112,0.456151,0.185027,0.237296,0.689333,0.155607,0.449448,0.0249977,0.392619,0.507549,0.318266,0.0721209,0.654407,0.0531116,0.235126,0.0664528,0.816185,0.131115,0.573414,0.894867,0.837867,0.333173,0.629047,0.836492,0.109428,0.531645,0.218223,0.648276,0.487415,0.139236,0.464168,0.577582,0.671596,0.446913,0.707483,0.864539,0.864179,0.415625,0.746809,0.561117,0.69413,0.419625,0.923401,0.843195,0.509593,0.42322,0.0371073,0.902958,0.174741,0.94719,0.338988,0.645501,0.848683,0.431704,0.20988,0.00354576,0.635273,0.738001,0.586823,0.317144,0.481912,0.187105,0.316301,0.848632,0.633263,0.969154,0.223788,0.460635,0.343867,0.473125,0.605611,0.673146,0.382154,0.495751,0.558899,0.0472994,0.420401,0.5227,0.482435,0.470323,0.0257016,0.682047,0.475005,0.481287,0.769366,0.858622,0.228508,0.20077,0.942464,0.497284,0.683321,0.63436,0.66339,0.107806,0.121374,0.118545,0.987847,0.316108,0.170435,0.27435,0.600807,0.812301,0.110063,0.796827,0.259683,0.377845,0.205988,0.286869,0.589514,0.826252,0.855575,0.854218,0.921588,0.248128,0.806921,0.252698,0.0569961,0.450839,0.328892,0.61794,0.823345,0.372851,0.839273,0.468164,0.194813,0.835082,0.557947,0.092307,0.977897,0.341842,0.516069,0.5606,0.391266,0.660848,0.868512,0.555025,0.909657,0.150098,0.356851,0.669013,0.00423062,0.593141,0.23408,0.313392,0.278887,0.663275,0.688128,0.855488,0.165889,0.798206,0.275974,0.767775,0.466056,0.177673,0.919381,0.467885,0.251612,0.0806635,0.861008,0.328936,0.878562,0.210751,0.0201595,0.859368,0.860537,0.907195,0.527963,0.739677,0.432669,0.444243,0.350233,0.415049,0.374435,0.579132,0.511386,0.336737,0.11941,0.40348,0.935647,0.806832,0.678123,0.263347,0.738264,0.937719,0.0410158,0.370271,0.50902,0.571948,0.468796,0.728552,0.168296,0.869998,0.963103,0.87965,0.8117,0.0639345,0.460172,0.11662,0.198751,0.756477,0.991132,0.605731,0.846826,0.793624,0.547292,0.155335,0.0278609,0.815211,0.982633,0.776469,0.328101,0.806987,0.147191,0.9484,0.821401,0.463195,0.501212,0.816613,0.02294,0.770553,0.580617,0.900662,0.0335619,0.949847,0.139317,0.947607,0.261544,0.84724,0.64223,0.239109,0.644988,0.44214,0.841647,0.925333,0.812293,0.741011,0.0700402,0.623873,0.891622,0.854238,0.189753,0.957404,0.982875,0.831881,0.807149,0.809913,0.51928,0.117365,0.914593,0.286133,0.397126,0.227176,0.0955332,0.990162,0.180651,0.767217,0.113207,0.455135,0.185797,0.488281,0.0473064,0.910561,0.159021,0.535232,0.344725,0.0650076,0.65426,0.508754,0.308991,0.876514,0.112132,0.584832,0.420466,0.684573,0.749085,0.440659,0.971012,0.0379283,0.837427,0.396747,0.831717,0.805844,0.877592,0.152856,0.508992,0.495504,0.266969,0.626467,0.274547,0.203309,0.960632,0.214405,0.308397,0.478355,0.698208,0.455788,0.388557,0.7058,0.950336,0.87403,0.137596,0.344083,0.985803,0.625757,0.105009,0.036806,0.516133,0.403428,0.143046,0.0698584,0.444379,0.109694,0.488639,0.0712204,0.48109,0.953226,0.585349,0.71347,0.288511,0.362125,0.531078,0.792897,0.560385,0.561579,0.178394,0.803701,0.156794,0.647277,0.157453,0.0790296,0.0732937,0.112496,0.731522,0.49497,0.504607,0.00747257,0.227905,0.360205,0.21477,0.0600305,0.137234,0.760022,0.825422,0.92789,0.794002,0.760233,0.257728,0.706855,0.805402,0.36167,0.32473,0.611944,0.621452,0.0487822,0.386575,0.775276,0.278307,0.198503,0.195159,0.928628,0.9255,0.662148,0.494308,0.00101286,0.344492,0.438494,0.437457,0.404662,0.760445,0.747713,0.715406,0.616185,0.00563616,0.726977,0.817757,0.496042,0.971374,0.973694,0.504262,0.293225,0.1378,0.779788,0.972012,0.0918533,0.0407608,0.353967,0.177806,0.563844,0.592169,0.370848,0.0547834,0.705846,0.597776,0.0412956,0.102981,0.127473,0.804926,|0.145514,0.0638778,0.476501,0.433964,0.673356,0.596963,0.187334,0.970316,0.0590689,0.327346,0.28721,0.499218,0.211656,0.0976663,0.695284,0.0585335,0.433002,0.321838,0.0548984,0.183895,0.643457,0.358173,0.189598,0.674607,0.631786,0.168672,0.0178363,0.863163,0.189565,0.795119,0.747063,0.969271,0.763803,0.933862,0.897344,0.9702,0.938949,0.309843,0.0417416,0.148823,0.300275,0.298275,0.68973,0.877701,0.220899,0.085712,0.269363,0.0616063,0.196438,0.0642713,0.956838,0.542386,0.849824,0.477415,0.345701,0.167194,0.570465,0.0773076,0.172518,0.685885,0.318036,0.13509,0.979905,0.668161,0.89432,0.320541,0.0992294,0.326437,0.987585,0.873637,0.892821,0.781635,0.365837,0.529325,0.696954,0.953462,0.624257,0.469254,0.931265,0.153025,0.132809,0.0909258,0.961481,0.958175,0.890266,0.72475,0.824851,0.597748,0.596114,0.27812,0.471494,0.541068,0.869094,0.942407,0.710216,0.391256,0.585856,0.307947,0.546752,0.793697,0.758288,0.770006,0.55503,0.609681,0.575686,0.403666,0.675135,0.444793,0.589202,0.125412,0.781831,0.643212,0.138439,0.60295,0.307513,0.781174,0.956725,0.174002,0.357404,0.597437,0.640986,0.600049,0.12645,0.559191,0.506754,0.497468,0.455498,0.262953,0.642745,0.126334,0.744406,0.413621,0.804897,0.60752,0.369602,0.380803,0.294105,0.866964,0.282057,0.654513,0.572289,0.306504,0.533753,0.860498,0.165598,0.84642,0.408157,0.971414,0.857252,0.42142,0.221366,0.756591,0.00994617,0.322271,0.377837,0.871238,0.843863,0.0429371,0.239909,0.459333,0.866984,0.745495,0.0593423,0.157597,0.275666,0.615801,0.626702,0.763357,0.00235796,0.394522,0.0324349,0.503316,0.848034,0.92775,0.264261,0.30213,0.360603,0.607486,0.00755626,0.535198,0.477891,0.130465,0.59476,0.962882,0.849242,0.040558,0.238557,0.545523,0.145612,0.6232,0.707789,0.747874,0.877966,0.467984,0.662576,0.567341,0.960621,0.28596,0.673164,0.614914,0.306218,0.873542,0.0843845,0.96788,0.0980238,0.4832,0.83464,0.551368,0.693713,0.66032,0.460635,0.0341446,0.0448765,0.869267,0.67725,0.363378,0.605848,0.892004,0.541273,0.429862,0.610177,0.322242,0.262419,0.624939,0.465476,0.367375,0.231821,0.0174818,0.942309,0.788885,0.490105,0.141838,0.440328,0.728801,0.62527,0.362077,0.391008,0.418775,0.419984,0.350448,0.636978,0.92969,0.954683,0.0906805,0.710768,0.37618,0.288608,0.779283,0.403423,0.160073,0.232112,0.359741,0.876357,0.00541496,0.118303,0.0487003,0.47998,0.80015,0.013153,0.143681,0.766107,0.819583,0.42317,0.442554,0.124211,0.267679,0.730664,0.161833,0.431403,0.544357,0.845085,0.87498,0.181311,0.205965,0.053745,0.0444159,0.378008,0.0702189,0.565277,0.769543,0.271019,0.16023,0.0460136,0.54382,0.251838,0.868619,0.946658,0.770911,0.561407,0.0165733,0.537841,0.0703555,0.156169,0.672338,0.777423,0.486973,0.711875,0.508431,0.77666,0.53555,0.394211,0.417811,0.398654,0.253585,0.433873,0.0386627,0.875373,0.81914,0.916981,0.993818,0.528807,0.941592,0.622579,0.854836,0.369255,0.951973,0.564005,0.960359,0.581945,0.152636,0.117748,0.266794,0.316243,0.174369,0.464218,0.121873,0.401463,0.511369,0.22872,0.761527,0.78757,0.347256,0.728383,0.109984,0.79037,0.590556,0.241741,0.0137296,0.352311,0.0458547,0.662664,0.448184,0.664224,0.340558,0.579265,0.920541,0.742311,0.468215,0.674549,0.440739,0.371839,0.787806,0.57004,0.222311,0.173199,0.534941,0.455795,0.847637,0.265263,0.528839,0.982671,0.767306,0.450161,0.0758743,0.689011,0.776594,0.13277,0.926859,0.549558,0.982281,0.281508,0.961948,0.559306,0.380005,0.51791,0.837727,0.727656,0.26874,0.872277,0.063511,0.672792,0.635067,0.909841,0.712344,0.335801,0.461957,0.656658,0.980323,0.265653,0.321659,0.184752,0.0191255,0.492455,0.930506,0.826467,0.0239731,0.126331,0.334513,0.485771,0.435868,0.721315,0.894098,0.952588,0.747528,0.973908,0.510814,0.914862,0.353537,0.614074,0.823225,0.244254,0.796975,0.594981,0.119611,0.103155,0.0714679,0.574178,0.733023,0.583361,0.758713,0.491768,0.717717,0.516387,0.339214,0.499475,0.607236,0.878138,0.894522,0.184625,0.167954,0.806237,0.0724711,0.630422,0.382309,0.0441155,0.224472,0.665463,0.260094,0.377977,0.883287,0.71006,0.237078,0.0821194,0.32891,0.980077,0.951042,0.78437,0.700535,0.986224,0.878397,0.274281,0.407794,0.126299,0.690042,0.705386,0.993447,0.975059,0.527922,0.72998,0.207735,0.436719,0.900926,0.228428,0.337033,0.637091,0.712012,0.577012,0.647969,0.508216,0.256604,0.802105,0.149072,0.886183,0.32447,0.486061,0.895559,0.965583,0.861897,0.959588,0.671371,0.545447,0.822251,0.910735,0.625889,0.00254363,0.069197,0.539342,0.215301,0.307362,0.352342,0.887035,0.26238,0.953646,0.992597,0.712994,0.715175,0.0867606,0.687763,0.0825167,0.531487,0.388262,0.296574,0.325033,0.94906,0.685005,0.206975,0.953751,0.807457,0.736117,0.703449,0.548621,0.924914,0.765301,0.907663,0.460398,0.226444,0.398042,0.497248,0.728542,0.61008,0.99608,0.94274,0.762609,0.598789,0.453516,0.84062,0.637423,0.520094,0.874089,0.683634,0.281266,0.881403,0.285631,0.822296,0.097657,0.172917,0.697687,0.919192,0.970105,0.0548239,0.460006,0.913064,0.535009,0.608161,0.148982,0.728687,0.482102,0.993237,0.233649,0.443587,0.914885,0.864396,0.304624,0.00305396,0.47872,0.626646,0.936379,0.331363,0.858399,0.985357,0.297574,0.287003,0.470822,0.586965,0.128959,0.465249,0.187429,0.358184,0.294414,0.460853,0.119445,0.423238,0.0580433,0.5441,0.525447,0.25237,0.523422,0.709868,0.370685,0.560953,0.906451,0.988301,0.793134,0.390749,0.584264,0.365847,0.214133,0.43434,0.378127,0.594637,0.0710248,0.248852,0.842986,0.602871,0.784381,0.530527,0.220858,0.941047,0.306987,0.230952,0.855759,0.797988,0.222823,0.299994,0.147014,0.715128,0.05243,0.000219882,0.365894,0.418644,0.601121,0.0216204,0.23983,0.692307,0.858643,0.0401869,0.270379,0.991647,0.443362,0.772683,0.0956615,0.221937,0.425265,0.259885,0.845274,0.934893,0.786845,0.507305,0.835328,0.918223,0.503318,0.648283,0.268556,0.143613,0.71172,0.593406,0.714853,0.0352996,0.726626,0.94247,0.675774,0.0124575,0.309406,0.13439,0.192202,0.00101262,0.662631,0.910533,0.077393,0.929863,0.318756,0.884998,0.0474507,0.0686787,0.664312,0.322318,0.852118,0.984929,0.8687,0.128641,0.234546,0.299022,0.559016,0.677485,0.669096,0.617818,0.348708,0.414319,0.193222,0.291726,0.770028,0.10418,0.729092,0.756901,0.409582,0.20866,0.348053,0.793677,0.366733,0.621961,0.786847,0.795974,0.310315,0.147189,0.390712,0.46199,0.665241,0.943626,0.259078,0.974618,0.736802,0.393665,0.373062,0.810675,0.461295,0.226302,0.153561,0.0878656,0.496255,0.0078094,0.936035,0.0241876,0.99996,0.0504659,0.412581,0.900273,0.588409,0.629805,0.716636,0.182215,0.598019,0.230428,0.893491,0.560512,0.186933,0.0671496,0.711837,0.374736,0.0364862,0.307391,0.508509,0.488797,0.243319,0.369585,0.600714,0.945329,0.39281,0.0223516,0.357538,0.188222,0.679752,0.928841,0.745629,0.695317,0.738173,0.49103,0.135382,0.617548,0.464561,0.725605,0.759799,0.668407,0.119256,0.869927,0.554911,0.13184,0.619881,0.885349,0.792233,0.0141359,0.100543,0.664896,0.224665,0.509681,0.496218,0.202106,0.596365,0.243975,0.957993,0.303071,0.660031,0.357382,0.968237,0.381584,0.16092,0.842384,0.135652,0.0476104,0.654612,0.585028,0.669144,0.922199,0.665596,0.152876,0.062167,0.664387,0.240144,0.808824,0.635522,0.311763,0.331038,0.788247,0.656882,0.404608,0.878123,0.322998,0.373155,0.0522904,0.276341,0.880653,0.753003,0.0357206,0.0585406,0.104581,0.90192,0.874065,0.145679,0.110422,0.856259,0.2343,0.420358,0.106872,0.798724,0.99658,0.201536,0.407715,0.846016,0.0592103,0.321063,0.666024,0.485803,0.199565,0.226757,0.222584,0.344794,0.0261093,0.1127,0.569144,0.0483127,0.432403,0.362671,0.920289,0.874409,0.572954,0.519131,0.32521,0.0376014,0.828779,0.78866,0.542471,0.33255,0.103555,0.580667,0.68386,0.488251,0.911328,0.293197,0.519854,0.433437,0.476466,0.854634,0.377542,0.117914,0.608813,0.956257,0.986887,0.490704,0.864287,0.747006,0.432856,0.825858,0.29747,0.266731,0.149053,0.916036,0.379758,0.391213,0.557318,0.902742,0.706948,0.170756,0.403074,0.893558,0.22199,0.47022,0.251342,0.668229,0.253351,0.77592,0.944739,0.829856,0.51672,0.51086,0.686481,0.215009,0.777061,0.348443,0.441206,0.264453,0.339162,0.858524,0.348202,0.89551,0.432459,0.728263,0.157881,0.941603,0.731622,0.277539,0.913219,0.337976,0.718158,0.322218,0.479728,0.442015,0.890367,0.0271505,0.642861,0.133965,0.846731,0.528636,0.399135,0.920882,0.47882,0.239337,0.738268,0.713513,0.65704,0.809847,0.286596,0.839591,0.0712824,0.489764,0.689619,0.750743,0.842069,0.140552,0.832659,0.532091,0.0386254,0.753997,0.128124,0.158484,0.925377,0.838967,0.762888,0.518398,0.36805,0.930981,0.0338147,0.289315,0.448653,0.393249,0.3341,0.259141,0.269458,0.776089,0.559961,0.834791,0.99639,0.955509,0.861575,0.220818,0.457346,0.587678,0.118218,0.241677,0.702097,0.67454,0.0854841,0.600339,0.1739,0.1874,0.467468,0.564397,0.0488335,0.101204,0.0503729,0.55653,0.191936,0.163056,0.0286668,0.844728,0.0330799,0.808111,0.616514,0.794714,0.436946,0.639581,0.16422,0.79731,0.224405,0.993815,0.561774,0.240414,0.0805049,0.616224,0.744745,0.270285,0.869301,0.735996,0.853599,0.286615,0.245328,0.805103,0.690057,0.508839,0.201707,0.717102,0.228335,0.444713,0.345141,0.468093,0.180768,0.722301,0.711014,0.324855,0.0647494,0.223836,0.344665,|0.628297,0.824932,0.109685,0.00978446,0.391336,0.304303,0.861445,0.0369143,0.736059,0.924951,0.170057,0.452989,0.223842,0.80044,0.455208,0.590781,0.264319,0.264381,0.467621,0.00712049,0.755526,0.472238,0.499625,0.858351,0.479154,0.996,0.680298,0.427535,0.135827,0.632401,0.735714,0.739956,0.37534,0.293198,0.151064,0.514987,0.0942682,0.520282,0.00612247,0.530914,0.731436,0.73918,0.38027,0.236232,0.913584,0.722061,0.211698,0.828706,0.577344,0.0779357,0.512165,0.521512,0.058816,0.33577,0.644234,0.35223,0.452736,0.483829,0.708249,0.951409,0.0395356,0.000108838,0.493844,0.8556,0.0325014,0.298568,0.351907,0.601467,0.880215,0.666293,0.241546,0.234299,0.0147452,0.664581,0.527763,0.452552,0.875163,0.266684,0.813106,0.122999,0.501781,0.939865,0.815514,0.819702,0.187317,0.080609,0.817746,0.0268329,0.104379,0.197626,0.593019,0.322878,0.178474,0.223239,0.224635,0.842392,0.890459,0.297105,0.450726,0.0231082,0.0806476,0.555262,0.632122,0.772633,0.307755,0.610702,0.0106182,0.712002,0.393134,0.736385,0.817943,0.90111,0.984066,0.927161,0.438154,0.0124688,0.104765,0.458027,0.062128,0.562485,0.421406,0.128102,0.00195283,0.378201,0.882105,0.660682,0.856482,0.471331,0.180993,0.702138,0.170892,0.561537,0.530024,0.894044,0.463886,0.406248,0.399608,0.518267,0.489336,0.771062,0.917923,0.834069,0.262492,0.938798,0.125884,0.288769,0.145632,0.794827,0.396808,0.554025,0.571653,0.360594,0.502122,0.163778,0.624394,0.597107,0.343158,0.421175,0.75185,0.327252,0.64724,0.49422,0.665918,0.329828,0.974657,0.460867,0.824196,0.173238,0.419861,0.833166,0.121573,0.10086,0.316851,0.41093,0.592945,0.233161,0.0290436,0.691868,0.444701,0.581889,0.659252,0.444181,0.73641,0.733362,0.452211,0.176148,0.340721,0.874697,0.238516,0.594863,0.754827,0.320793,0.351989,0.339698,0.742888,0.592509,0.782179,0.687884,0.0116158,0.46935,0.426872,0.249719,0.544752,0.0593586,0.347044,0.559048,0.777333,0.251901,0.302651,0.795914,0.424175,0.0973887,0.720779,0.956372,0.231718,0.120772,0.597049,0.50121,0.772878,0.376147,0.240472,0.666391,0.896822,0.13441,0.615907,0.0975593,0.305882,0.210884,0.0478402,0.641121,0.0428081,0.469063,0.988872,0.74562,0.202307,0.311159,0.12175,0.275641,0.916957,0.910353,0.872532,0.104985,0.359775,0.901789,0.378201,0.484889,0.177518,0.518612,0.3827,0.24736,0.577681,0.565315,0.732147,0.533527,0.859944,0.179541,0.787963,0.626876,0.42497,0.501891,0.372338,0.0999625,0.0539569,0.925579,0.879668,0.203306,0.422957,0.936577,0.249659,0.563299,0.170188,0.725293,0.985412,0.839958,0.448497,0.167067,0.83367,0.214768,0.938171,0.0181645,0.267756,0.99308,0.754866,0.351467,0.341395,0.375414,0.899016,0.475422,0.510972,0.807219,0.487875,0.719475,0.284733,0.605258,0.554148,0.645137,0.0523773,0.0128115,0.0478415,0.294299,0.471888,0.54254,0.641365,0.848052,0.931166,0.293965,0.36439,0.0212313,0.679294,0.555381,0.802119,0.642694,0.436195,0.55137,0.778394,0.477842,0.684873,0.769151,0.803148,0.252597,0.962641,0.99391,0.704832,0.706188,0.365994,0.735651,0.536451,0.212939,0.205185,0.0176892,0.147661,0.467472,0.230285,0.295016,0.4644,0.960313,0.504571,0.532627,0.106372,0.874239,0.156738,0.524823,0.170119,0.662668,0.510382,0.0364466,0.153843,0.649649,0.90504,0.313597,0.571607,0.342802,0.362012,0.889703,0.840057,0.450768,0.466004,0.612928,0.158408,0.392206,0.702489,0.00187922,0.916501,0.609725,0.522865,0.81254,0.294817,0.109745,0.434259,0.877469,0.235914,0.356144,0.282007,0.387602,0.691323,0.599105,0.696935,0.361933,0.255084,0.320643,0.252928,0.262883,0.584125,0.324464,0.210386,0.145155,0.415371,0.859018,0.527102,0.844232,0.412683,0.629194,0.179132,0.670375,0.979262,0.890957,0.298321,0.597528,0.618538,0.138576,0.449453,0.312893,0.970294,0.92473,0.885418,0.787175,0.618205,0.477467,0.537672,0.766878,0.262714,0.375799,0.246723,0.620858,0.435236,0.26164,0.0930997,0.60342,0.449764,0.47507,0.742998,0.0324267,0.830276,0.438051,0.990447,0.504528,0.981541,0.880149,0.602514,0.349748,0.518316,0.863158,0.61073,0.00678504,0.913668,0.945438,0.493342,0.449257,0.890684,0.145215,0.693182,0.873471,0.567632,0.883826,0.138522,0.0644473,0.810001,0.098641,0.00253385,0.722396,0.911103,0.648873,0.130419,0.759062,0.229361,0.402995,0.00610328,0.414426,0.794096,0.738041,0.385187,0.464175,0.805542,0.333753,0.34686,0.75543,0.558866,0.558908,0.0763156,0.833157,0.79618,0.971281,0.898187,0.683526,0.523853,0.466509,0.231161,0.603912,0.410887,0.614107,0.777277,0.216553,0.895217,0.908345,0.963405,0.719082,0.216611,0.706697,0.576851,0.0339703,0.965147,0.904299,0.883798,0.638377,0.907549,0.455881,0.595764,0.596682,0.183892,0.480585,0.53976,0.92105,0.937789,0.3414,0.50148,0.489698,0.413078,0.726779,0.576818,0.599237,0.190605,0.653134,0.0389197,0.524744,0.0398683,0.0480917,0.266065,0.349997,0.219318,0.255342,0.844705,0.387681,0.491804,0.292495,0.775282,0.618973,0.711552,0.986254,0.281166,0.959566,0.118969,0.743594,0.0651604,0.975214,0.202548,0.100483,0.00637972,0.0658695,0.731435,0.507531,0.301094,0.945211,0.805524,0.437405,0.597396,0.589495,0.481061,0.253952,0.890627,0.889506,0.564223,0.0591835,0.493866,0.811982,0.0367494,0.381556,0.818752,0.339224,0.099833,0.426655,0.416798,0.283887,0.675538,0.372656,0.108507,0.911237,0.157507,0.758865,0.170762,0.154703,0.883914,0.48868,0.738207,0.930412,0.827319,0.0751571,0.428172,0.928417,0.00641954,0.590688,0.578735,0.955751,0.314215,0.826487,0.0569199,0.720048,0.388922,0.0854393,0.0826958,0.145704,0.928894,0.850234,0.923275,0.347356,0.0999483,0.0322401,0.300292,0.299989,0.00833666,0.167631,0.522099,0.272769,0.602186,0.948301,0.132476,0.268516,0.276165,0.902743,0.127862,0.841971,0.111054,0.153933,0.774185,0.0654483,0.922533,0.410885,0.716815,0.35029,0.492398,0.814659,0.137037,0.584177,0.803166,0.0712618,0.150877,0.507146,0.658991,0.0947155,0.0237756,0.620988,0.434871,0.453729,0.962968,0.307834,0.145555,0.616746,0.0273817,0.298824,0.384916,0.819825,0.854529,0.560512,0.611457,0.516826,0.555702,0.808892,0.606428,0.135998,0.812449,0.210551,0.646226,0.286555,0.0238225,0.0493501,0.831536,0.472604,0.0715621,0.263078,0.392144,0.150192,0.434166,0.640618,0.345697,0.572018,0.21703,0.716791,0.0123377,0.153946,0.324194,0.948416,0.91411,0.165636,0.58818,0.959791,0.468592,0.838228,0.122271,0.567375,0.821143,0.205197,0.184511,0.643055,0.346346,0.473261,0.59466,0.915943,0.738264,0.425288,0.417219,0.536683,0.713596,0.136696,0.882375,0.38381,0.726513,0.679949,0.426281,0.770691,0.5849,0.884182,0.434571,0.815445,0.0626846,0.610967,0.77233,0.5908,0.911309,0.851623,0.45483,0.701394,0.228999,0.517628,0.654962,0.525288,0.207635,0.115319,0.0880923,0.270677,0.418703,0.10799,0.833731,0.900598,0.162359,0.342778,0.271661,0.965442,0.362964,0.527072,0.0113007,0.268465,0.688508,0.610852,0.732607,0.526966,0.198008,0.419271,0.88666,0.0200493,0.613258,0.363016,0.672754,0.622823,0.11368,0.351829,0.818704,0.351035,0.197338,0.473387,0.485009,0.0587737,0.336178,0.891342,0.561961,0.946386,0.944258,0.122369,0.519858,0.876218,0.359989,0.617501,0.263162,0.212394,0.221864,0.542776,0.708657,0.259932,0.426986,0.665709,0.509631,0.0629726,0.503095,0.780331,0.0510176,0.753066,0.345066,0.587393,0.312661,0.834049,0.351531,0.475097,0.170128,0.196043,0.417607,0.687785,0.170127,0.943799,0.4002,0.718276,0.490434,0.0020203,0.541009,0.759215,0.617952,0.0615689,0.732991,0.450703,0.76854,0.904705,0.69895,0.326645,0.484723,0.9256,0.862911,0.120547,0.761058,0.839619,0.154483,0.91921,0.678252,0.259992,0.092235,0.187656,0.694443,0.731046,0.49558,0.978058,0.07988,0.0823931,0.24216,0.294826,0.0796267,0.154,0.591103,0.106717,0.502659,0.643247,0.465981,0.458318,0.317034,0.583382,0.560488,0.753029,0.895448,0.0827609,0.846172,0.847618,0.370527,0.526699,0.689403,0.711297,0.809356,0.455659,0.2676,0.0461631,0.60962,0.254009,0.446161,0.38425,0.631668,0.811173,0.601329,0.40874,0.605448,0.391343,0.512471,0.529278,0.587433,0.157781,0.602362,0.593237,0.520837,0.241113,0.239593,0.509,0.938125,0.0618197,0.525764,0.116811,0.661166,0.0465117,0.86778,0.863333,0.942863,0.136138,0.786143,0.806532,0.40171,0.77111,0.830227,0.0394436,0.958785,0.586835,0.774071,0.0467574,0.585081,0.969466,0.412208,0.971566,0.696991,0.0782852,0.512763,0.23362,0.695822,0.75814,0.0133498,0.963233,0.530992,0.835544,0.752323,0.00900793,0.0223101,0.919478,0.312194,0.156814,0.461511,0.308411,0.0504067,0.985827,0.914581,0.0983569,0.667451,0.922336,0.272779,0.889714,0.850895,0.0202531,0.758186,0.28198,0.360593,0.356336,0.442914,0.773855,0.211749,0.274875,0.845031,0.971515,0.249875,0.654073,0.00822639,0.537136,0.931827,0.0595767,0.813365,0.0916474,0.547397,0.804944,0.51818,0.859874,0.423599,0.765011,0.591466,0.667097,0.0628573,0.863943,0.395867,0.325656,0.209377,0.112138,0.164768,0.81261,0.848985,0.108406,0.180062,0.0258006,0.975729,0.0854119,0.642946,0.413424,0.426905,0.042879,0.969589,0.395741,0.399618,0.529184,0.167218,0.710343,0.640294,0.601069,0.321468,0.870944,0.942588,0.511198,0.206105,0.825827,0.223267,0.259737,0.675361,0.374046,0.090872,0.095631,0.613088,0.563597,0.92249,0.0291026,0.843191,0.918287,0.055575,0.837172,0.627415,0.942195,0.929586,0.763009,0.547549,0.534568,0.88163,0.00987625,0.0213637,0.448137,0.916051,0.0613028,|0.586931,0.728119,0.0221894,0.612709,0.127303,0.621213,0.834502,0.480548,0.785597,0.31779,0.175008,0.957941,0.264169,0.850468,0.431937,0.171888,0.48355,0.675481,0.914908,0.441594,0.0258132,0.127361,0.376649,0.280464,0.684159,0.177252,0.693138,0.214331,0.84194,0.689674,0.963235,0.147773,0.681206,0.594698,0.888911,0.984851,0.345466,0.34872,0.0923488,0.632643,0.261272,0.0460061,0.278049,0.734917,0.570027,0.992582,0.173126,0.611061,0.943428,0.142889,0.99001,0.625802,0.327562,0.031123,0.306869,0.282739,0.0229677,0.972366,0.426377,0.28307,0.755631,0.405923,0.318283,0.433344,0.755476,0.840583,0.846896,0.333649,0.899499,0.312987,0.43983,0.00423729,0.339836,0.895804,0.27117,0.517329,0.808561,0.682613,0.110311,0.884081,0.625233,0.111914,0.855485,0.886559,0.4597,0.871251,0.60695,0.0262134,0.86025,0.400257,0.451904,0.727254,0.461796,0.370471,0.118493,0.970225,0.345308,0.984243,0.903655,0.252309,0.139978,0.721108,0.00473338,0.90262,0.00823051,0.24179,0.324208,0.180621,0.0985252,0.673483,0.275841,0.9449,0.588184,0.767707,0.288219,0.55755,0.264925,0.034641,0.163047,0.960175,0.451541,0.189529,0.109057,0.396549,0.378766,0.251793,0.817297,0.765937,0.944169,0.988082,0.734918,0.341866,0.734524,0.466308,0.264938,0.89998,0.588068,0.63109,0.433154,0.256621,0.0809395,0.101693,0.271343,0.82299,0.692645,0.750534,0.382643,0.759075,0.880546,0.655286,0.201162,0.437908,0.757661,0.532783,0.503945,0.314392,0.906166,0.340264,0.604141,0.914685,0.625206,0.0909652,0.00345671,0.0856567,0.244198,0.912844,0.471593,0.742709,0.0773154,0.12619,0.914862,0.276254,0.801139,0.365079,0.917031,0.028503,0.233015,0.870282,0.745879,0.252535,0.183833,0.984428,0.957743,0.663258,0.929443,0.329221,0.295904,0.617626,0.219377,0.283291,0.578459,0.517175,0.973981,0.860138,0.0717437,0.100206,0.56051,0.161979,0.591561,0.966549,0.020057,0.443185,0.0451514,0.516733,0.522416,0.645665,0.100789,0.763967,0.198051,0.555176,0.151253,0.112158,0.162721,0.302561,0.785386,0.623841,0.545569,0.390958,0.356889,0.711913,0.205633,0.310588,0.18255,0.60034,0.732889,0.257544,0.969416,0.819032,0.152837,0.946661,0.565501,0.323622,0.920803,0.325361,0.0347547,0.725542,0.857401,0.063589,0.678472,0.255148,0.410921,0.303677,0.0241255,0.596422,0.706166,0.484823,0.884042,0.0897756,0.926487,0.478683,0.396404,0.250101,0.0135853,0.650823,0.773262,0.350333,0.340187,0.152208,0.639232,0.24152,0.644909,0.430927,0.637609,0.392451,0.744121,0.643611,0.656298,0.230284,0.142884,0.023354,0.0814247,0.10573,0.774522,0.556869,0.781555,0.326088,0.124776,0.721949,0.520282,0.480459,0.200931,0.593857,0.248176,0.117646,0.612445,0.867325,0.294605,0.380693,0.897764,0.78542,0.104057,0.778455,0.461286,0.592765,0.167492,0.824523,0.221303,0.862702,0.32867,0.918998,0.771841,0.078353,0.144723,0.846623,0.588888,0.783468,0.371235,0.0844163,0.576778,0.453549,0.764513,0.744929,0.982551,0.852116,0.366733,0.274023,0.68517,0.953826,0.0314775,0.509423,0.562661,0.151772,0.487464,0.625649,0.508221,0.0697734,0.112134,0.689232,0.842047,0.0425177,0.454984,0.486219,0.993033,0.321394,0.28073,0.515453,0.693833,0.0935609,0.314849,0.801826,0.512253,0.631028,0.826236,0.441684,0.0935897,0.463373,0.0680137,0.90271,0.510706,0.0117128,0.859968,0.607289,0.080745,0.995635,0.311334,0.896161,0.586909,0.774583,0.382981,0.424371,0.901682,0.666025,0.407634,0.277299,0.223246,0.424092,0.61681,0.385496,0.123009,0.411189,0.661543,0.322175,0.762716,0.002895,0.562778,0.76576,0.255455,0.872656,0.546778,0.32898,0.400557,0.692928,0.41055,0.212722,0.185994,0.800968,0.585768,0.245963,0.556031,0.108863,0.0833409,0.794501,0.571685,0.408129,0.841208,0.911201,0.606031,0.0142574,0.742203,0.98609,0.70041,0.16757,0.227363,0.546269,0.531868,0.357843,0.868977,0.180764,0.618793,0.308947,0.00910819,0.865371,0.629841,0.0438321,0.631221,0.250361,0.641304,0.269298,0.851931,0.793005,0.713397,0.759763,0.329967,0.0524085,0.771904,0.296295,0.988603,0.179531,0.94689,0.904966,0.796505,0.747871,0.792236,0.0240963,0.785294,0.945734,0.097029,0.832241,0.612665,0.467868,0.888023,0.0807021,0.0667953,0.194743,0.0623688,0.947011,0.583834,0.22009,0.613375,0.406854,0.00953001,0.888816,0.562327,0.288105,0.2824,0.648305,0.624224,0.680832,0.263935,0.681186,0.394818,0.0486373,0.0284182,0.0176145,0.0397823,0.816811,0.565814,0.216572,0.687187,0.78305,0.567293,0.121441,0.407228,0.288256,0.251827,0.656721,0.281211,0.153368,0.228429,0.418285,0.236751,0.910648,0.368862,0.846759,0.0344552,0.698419,0.406083,0.705662,0.738184,0.952048,0.908316,0.427939,0.8463,0.119975,0.179485,0.679576,0.111779,0.776891,0.575394,0.138982,0.546058,0.366403,0.364584,0.038964,0.860903,0.0859056,0.648097,0.484979,0.900183,0.877701,0.566544,0.490222,0.397537,0.810403,0.877981,0.313328,0.787954,0.0621634,0.573223,0.874137,0.17133,0.923128,0.299973,0.0442436,0.259711,0.493506,0.325816,0.0138,0.560518,0.00556171,0.590677,0.432531,0.320298,0.963596,0.762395,0.559649,0.17388,0.256585,0.398952,0.559675,0.861355,0.821964,0.855207,0.621458,0.060267,0.462032,0.728849,0.439519,0.674694,0.979255,0.878717,0.370327,0.417183,0.93023,0.816563,0.322927,0.220439,0.235763,0.234364,0.434819,0.502494,0.448979,0.591864,0.389083,0.920084,0.074817,0.971565,0.868001,0.0851777,0.683124,0.529506,0.495713,0.184425,0.41471,0.370004,0.746162,0.858598,0.773299,0.0207051,0.63533,0.673436,0.759963,0.191312,0.51062,0.588693,0.17574,0.675066,0.395712,0.647221,0.746288,0.912337,0.376138,0.214647,0.944636,0.208249,0.407334,0.180286,0.204131,0.299838,0.562755,0.158314,0.419904,0.703073,0.469969,0.351538,0.393228,0.11683,0.959832,0.356993,0.0131815,0.533609,0.0899622,0.741131,0.95337,0.273046,0.903581,0.858575,0.922519,0.198119,0.0361194,0.988575,0.651633,0.335591,0.280693,0.47599,0.569104,0.0838603,0.373276,0.129211,0.598533,0.719165,0.0526544,0.557503,0.757077,0.578861,0.367031,0.668669,0.520893,0.933362,0.440784,0.310971,0.957935,0.631677,0.513646,0.694106,0.620611,0.488775,0.875654,0.713329,0.677069,0.627618,0.340871,0.567981,0.0974783,0.418029,0.201441,0.243002,0.688286,0.127054,0.157074,0.0198527,0.396056,0.646839,0.243049,0.413984,0.0994539,0.454289,0.228685,0.818261,0.710535,0.611563,0.564037,0.535376,0.0353692,0.972426,0.90595,0.728748,0.0388595,0.557898,0.99828,0.937421,0.346307,0.271776,0.50423,0.741529,0.258546,0.828832,0.208398,0.268344,0.333251,0.0195277,0.463,0.427124,0.380674,0.952995,0.37481,0.300043,0.51839,0.0485762,0.947863,0.582611,0.438868,0.0339485,0.623689,0.977531,0.557119,0.122424,0.811454,0.757185,0.0151802,0.908805,0.169203,0.232733,0.256857,0.692718,0.183964,0.87551,0.633179,0.400629,0.31241,0.543209,0.232341,0.901585,0.529296,0.45822,0.669425,0.307774,0.0700209,0.267024,0.0134954,0.832283,0.320503,0.788317,0.109381,0.0642516,0.69983,0.328556,0.736463,0.140193,0.658105,0.760965,0.757829,0.807218,0.125398,0.930294,0.979477,0.555088,0.0546589,0.835899,0.674535,0.467104,0.182913,0.462174,0.380145,0.0599715,0.387439,0.0762773,0.647156,0.908185,0.287817,0.0532086,0.647798,0.185451,0.247398,0.610432,0.521533,0.337391,0.978914,0.0338528,0.513655,0.376599,0.620583,0.711111,0.141623,0.121459,0.868001,0.302455,0.811381,0.57765,0.108281,0.111739,0.409765,0.369481,0.927224,0.264659,0.765424,0.464858,0.137383,0.367041,0.0290207,0.286727,0.677516,0.67174,0.426618,0.292203,0.673953,0.421049,0.495717,0.32454,0.598291,0.493242,0.0199193,0.252875,0.519931,0.944264,0.171932,0.300312,0.306345,0.817371,0.605075,0.0558131,0.335408,0.255135,0.334795,0.581348,0.930461,0.795838,0.341225,0.278072,0.546192,0.495128,0.057197,0.749417,0.649298,0.238527,0.785928,0.378702,0.404057,0.614995,0.27912,0.833337,0.467464,0.521211,0.526763,0.0604222,0.676283,0.430194,0.713,0.19104,0.869725,0.337509,0.856647,0.430483,0.0221354,0.528575,0.902351,0.168718,0.718116,0.192419,0.0306745,0.392576,0.583673,0.634285,0.121667,0.849379,0.77493,0.0904858,0.221325,0.295186,0.938211,0.657865,0.410388,0.42399,0.835842,0.653431,0.113766,0.461815,0.738683,0.277279,0.439991,0.692835,0.565557,0.083796,0.617581,0.3381,0.974253,0.455582,0.267762,0.760149,0.715879,0.0216594,0.999512,0.86104,0.967294,0.579258,0.183659,0.791562,0.579647,0.138641,0.0164083,0.811372,0.490196,0.997633,0.718934,0.798436,0.754874,0.314421,0.513464,0.535919,0.299037,0.920342,0.394877,0.258478,0.292781,0.964786,0.180583,0.407411,0.532344,0.210923,0.776638,0.562247,0.704316,0.0798116,0.809903,0.318236,0.779452,0.0441747,0.827234,0.544021,0.146776,0.120357,0.82646,0.290116,0.0709175,0.226339,0.111032,0.851148,0.970458,0.0455458,0.905093,0.434291,0.152501,0.902401,0.0619061,0.394919,0.818478,0.201676,0.537625,0.858528,0.89944,0.42726,0.458432,0.096053,0.990456,0.40196,0.875194,0.813799,0.793117,0.416709,0.841833,0.483014,0.867226,0.407871,0.0622669,0.236504,0.448139,0.685461,0.0779346,0.436498,0.0193968,0.34712,0.116605,0.232256,0.852373,0.601975,0.879234,0.996042,0.184321,0.920048,0.824749,0.808417,0.789246,0.362322,0.0220204,0.679151,0.898999,0.753838,0.7284,0.64294,0.756981,0.761781,0.192,0.685666,0.62489,0.182865,0.610146,0.476434,0.668481,0.751026,0.509846,0.815186,0.24688,0.20495,0.687833,0.332853,0.371964,0.448803,0.597194,0.143901,0.48333,|0.956386,0.74779,0.57562,0.149246,0.72022,0.129969,0.881087,0.883012,0.558098,0.875822,0.881981,0.586541,0.666279,0.171134,0.055791,0.283634,0.594755,0.754464,0.814087,0.341611,0.193781,0.169938,0.00788927,0.745141,0.81508,0.906125,0.849065,0.405716,0.83313,0.7291,0.813857,0.602861,0.599309,0.256469,0.161215,0.527206,0.432053,0.463098,0.00236917,0.464316,0.219589,0.209882,0.15439,0.936827,0.0262986,0.199477,0.231538,0.732401,0.790129,0.760872,0.0933709,0.257075,0.336989,0.539798,0.0605553,0.0982552,0.773674,0.9933,0.385674,0.939542,0.223259,0.0947971,0.736778,0.760427,0.240526,0.433983,0.524986,0.624795,0.557277,0.565867,0.109466,0.157006,0.604234,0.622946,0.503251,0.274312,0.749698,0.0846155,0.625755,0.109655,0.474969,0.283,0.358334,0.405762,0.772101,0.472741,0.871711,0.201854,0.351656,0.410125,0.14919,0.249423,0.363241,0.756981,0.158156,0.808392,0.25615,0.988914,0.563444,0.222154,0.253343,0.120792,0.272246,0.570311,0.20208,0.467265,0.543226,0.0408373,0.893092,0.0321403,0.278612,0.388235,0.936862,0.615624,0.709584,0.957346,0.833774,0.496618,0.500418,0.985966,0.33786,0.887174,0.297845,0.337078,0.361517,0.999112,0.501636,0.0433019,0.455724,0.41593,0.449216,0.147147,0.237125,0.501067,0.631166,0.420601,0.832221,0.246635,0.7902,0.927159,0.561168,0.330318,0.512701,0.233688,0.234228,0.619858,0.653893,0.916698,0.739075,0.720472,0.515526,0.595207,0.737794,0.914112,0.945099,0.48236,0.490771,0.728447,0.274831,0.756908,0.799797,0.824481,0.997019,0.51743,0.134051,0.119198,0.718511,0.323491,0.589139,0.835914,0.754655,0.503206,0.279862,0.213646,0.10958,0.902666,0.519184,0.653997,0.671299,0.00463325,0.747285,0.503467,0.920502,0.986894,0.131461,0.421138,0.291868,0.622537,0.485427,0.0352669,0.859097,0.937115,0.544472,0.1627,0.886387,0.797289,0.0392929,0.0319858,0.571549,0.15171,0.579262,0.337493,0.132525,0.12065,0.682485,0.930129,0.854459,0.521199,0.461079,0.216791,0.400648,0.730184,0.0868209,0.603487,0.795984,0.791785,0.708286,0.405836,0.0847483,0.469272,0.830094,0.302581,0.0421922,0.0922989,0.0298691,0.175761,0.290676,0.694894,0.366508,0.918935,0.202584,0.0168481,0.07629,0.42381,0.275823,0.795245,0.437981,0.388441,0.544968,0.277476,0.670157,0.623786,0.521354,0.42512,0.470657,0.317613,0.789057,0.457859,0.243605,0.461657,0.487921,0.825792,0.858128,0.40223,0.278872,0.60901,0.604427,0.326843,0.0611581,0.867911,0.219355,0.277317,0.17341,0.855558,0.587499,0.533991,0.199351,0.639931,0.1068,0.278106,0.3673,0.634503,0.965475,0.924687,0.974606,0.46175,0.748945,0.598468,0.315121,0.443348,0.178223,0.440611,0.827577,0.972394,0.674532,0.972046,0.0830637,0.614115,0.707573,0.956498,0.895016,0.401693,0.732991,0.40449,0.831022,0.0949441,0.0887817,0.704385,0.271926,0.556355,0.351093,0.266051,0.29577,0.170876,0.183239,0.391906,0.999247,0.627696,0.627809,0.612199,0.0841699,0.718188,0.422231,0.0932989,0.683836,0.525496,0.549247,0.372308,0.574799,0.000596344,0.489159,0.167623,0.20921,0.59853,0.136371,0.453049,0.288898,0.63593,0.173273,0.655634,0.495652,0.690558,0.994599,0.0519494,0.902399,0.836424,0.453801,0.150536,0.168609,0.709028,0.373692,0.0317472,0.494361,0.0503135,0.273797,0.93296,0.19545,0.683856,0.531576,0.68256,0.639633,0.916754,0.954982,0.266536,0.157944,0.614108,0.965016,0.148826,0.462781,0.201937,0.119535,0.58611,0.775878,0.475143,0.995159,0.210345,0.895734,0.960329,0.605072,0.468013,0.207022,0.064658,0.291309,0.8721,0.186331,0.250041,0.15241,0.413006,0.389619,0.844092,0.725293,0.999886,0.0180703,0.267657,0.834401,0.866669,0.263355,0.0595276,0.803848,0.19677,0.563749,0.766768,0.687213,0.323173,0.595646,0.170009,0.0780173,0.325515,0.712771,0.155832,0.487937,0.251718,0.729921,0.0471939,0.925963,0.463952,0.199367,0.681241,0.749756,0.87664,0.65328,0.502032,0.328029,0.836226,0.466281,0.198092,0.05068,0.686234,0.8731,0.0656227,0.647646,0.0456889,0.395942,0.709811,0.204957,0.777462,0.0284268,0.00596607,0.832275,0.452238,0.0835195,0.973258,0.0117316,0.525023,0.36813,0.458778,0.177593,0.229552,0.255009,0.737704,0.44728,0.649248,0.0722604,0.514168,0.0174154,0.575393,0.908773,0.131781,0.582887,0.0485278,0.863238,0.772184,0.576616,0.0493397,0.757887,0.86633,0.0210702,0.314459,0.682294,0.593238,0.594184,0.12245,0.58995,0.365988,0.390543,0.438168,0.774542,0.224756,0.185375,0.691709,0.345547,0.328376,0.920097,0.451206,0.0296628,0.932499,0.14255,0.718459,0.741265,0.66055,0.112666,0.858526,0.513185,0.290387,0.854048,0.972076,0.819628,0.490738,0.771471,0.130926,0.0353853,0.284088,0.35128,0.1993,0.271255,0.369296,0.698317,0.809462,0.235472,0.794828,0.900031,0.0321695,0.094537,0.68286,0.304684,0.849126,0.987688,0.115042,0.107872,0.600342,0.729627,0.966254,0.36649,0.49419,0.161408,0.365217,0.250624,0.907048,0.980979,0.521262,0.65907,0.544195,0.956531,0.166176,0.780628,0.775874,0.686157,0.692116,0.126552,0.183816,0.448164,0.199614,0.594729,0.332789,0.910815,0.358462,0.919905,0.0719823,0.22272,0.98065,0.478925,0.602713,0.235266,0.829329,0.08097,0.78793,0.415461,0.867598,0.985652,0.349904,0.668472,0.602606,0.491475,0.85058,0.129646,0.451793,0.966786,0.829027,0.64331,0.155034,0.442384,0.203325,0.558821,0.470197,0.182941,0.127278,0.631214,0.0761532,0.157956,0.871268,0.280598,0.930141,0.487249,0.756394,0.782986,0.0822489,0.68106,0.22494,0.733989,0.191787,0.405423,0.0559107,0.664223,0.216613,0.243424,0.99078,0.695621,0.587967,0.0264865,0.17462,0.255294,0.0861483,0.92554,0.487095,0.684115,0.131837,0.525695,0.102641,0.13548,0.0660245,0.0126688,0.741291,0.234357,0.23564,0.614373,0.647507,0.42318,0.327331,0.672417,0.340173,0.695022,0.366135,0.00177187,0.467992,0.370505,0.565662,0.976025,0.466243,0.204235,0.782524,0.153912,0.69097,0.8572,0.457859,0.326046,0.427475,0.605482,0.575313,0.0552858,0.136034,0.564605,0.126698,0.733531,0.0714041,0.519801,0.477201,0.0800722,0.882112,0.977582,0.0522493,0.298402,0.939708,0.387111,0.388589,0.200598,0.870489,0.174593,0.605521,0.858744,0.409851,0.591822,0.152579,0.596014,0.734024,0.139828,0.802776,0.942393,0.525545,0.524641,0.255328,0.0962927,0.347282,0.0433274,0.604574,0.226945,0.519337,0.429797,0.961711,0.759185,0.208639,0.860385,0.211576,0.395272,0.660277,0.225065,0.754442,0.542737,0.851968,0.65751,0.77357,0.37058,0.684172,0.410887,0.639085,0.877275,0.074631,0.901767,0.644922,0.852443,0.652246,0.948135,0.0771663,0.362848,0.725001,0.951981,0.563748,0.196806,0.634841,0.0733033,0.616899,0.489622,0.524719,0.843999,0.995846,0.76333,0.145241,0.495326,0.244506,0.222139,0.926504,0.42794,0.215494,0.412479,0.856667,0.655229,0.953534,0.242782,0.12265,0.17131,0.246141,0.200853,0.727258,0.344639,0.23977,0.399732,0.141843,0.00336659,0.512325,0.156196,0.551607,0.874293,0.334858,0.174405,0.730725,0.494525,0.525543,0.216375,0.322174,0.798191,0.222568,0.19216,0.921444,0.370843,0.174062,0.431541,0.241968,0.467652,0.973161,0.754043,0.402346,0.164639,0.74527,0.88353,0.937542,0.894993,0.259966,0.743205,0.198425,0.274787,0.770866,0.407109,0.580366,0.117003,0.634632,0.901997,0.597825,0.659888,0.401324,0.774823,0.91809,0.178162,0.999093,0.324184,0.424586,0.268441,0.67256,0.542076,0.152352,0.682862,0.121331,0.871105,0.88457,0.621976,0.615758,0.119409,0.201495,0.436385,0.257638,0.356675,0.881689,0.370788,0.36293,0.424344,0.794124,0.631557,0.745674,0.576109,0.517908,0.870632,0.600392,0.903237,0.0446609,0.525445,0.138266,0.553789,0.904773,0.51381,0.911772,0.354825,0.410927,0.813518,0.505012,0.0449185,0.609379,0.905778,0.831476,0.138631,0.201268,0.987056,0.523064,0.683074,0.0870416,0.602058,0.782254,0.457537,0.763017,0.065348,0.437546,0.400059,0.96159,0.652227,0.297423,0.769201,0.91829,0.304963,0.184404,0.137748,0.649017,0.382621,0.535515,0.605821,0.837948,0.606442,0.33452,0.785761,0.221599,0.070133,0.72342,0.896842,0.212869,0.776735,0.276227,0.203162,0.082609,0.0255129,0.514264,0.36278,0.921721,0.792377,0.165772,0.0759924,0.702534,0.793305,0.778681,0.769367,0.648082,0.548045,0.499077,0.508391,0.385387,0.897814,0.00592554,0.639756,0.419805,0.521779,0.424291,0.374918,0.414249,0.213579,0.760042,0.480319,0.597477,0.290213,0.923767,0.678468,0.618388,0.365428,0.626505,0.460553,0.39938,0.587213,0.491083,0.694896,0.589506,0.368983,0.863503,0.511242,0.567718,0.235025,0.679508,0.300551,0.0943118,0.905521,0.784407,0.235659,0.522292,0.52722,0.680098,0.456516,0.128816,0.402183,0.456664,0.154842,0.616897,0.922524,0.689895,0.355774,0.653991,0.362833,0.0398111,0.272524,0.59162,0.930516,0.97416,0.0618913,0.522419,0.282939,0.212505,0.402501,0.242402,0.95924,0.792586,0.507793,0.832057,0.080045,0.424559,0.0129586,0.206574,0.728867,0.0145487,0.209727,0.528098,0.495231,0.597142,0.462572,0.549507,0.697828,0.221242,0.111743,0.500784,0.762158,0.960551,0.465722,0.928606,0.00884044,0.963926,0.238526,0.620109,0.712112,0.839853,0.906011,0.708183,0.592675,0.693035,0.487447,0.480098,0.271029,0.0732866,0.376746,0.766968,0.876903,0.633686,0.196268,0.623915,0.458836,0.835088,0.736047,0.192416,0.218074,0.498388,0.108237,0.45062,0.825574,0.359143,0.875986,0.479696,0.279067,0.140642,0.0173981,0.958928,0.911197,0.942126,0.956851,0.0753426,0.950747,0.286743,0.438233,0.345886,0.738011,0.516169,|0.485472,0.62289,0.427091,0.931936,0.888989,0.134696,0.663917,0.0672885,0.249544,0.38887,0.327454,0.0245189,0.623891,0.437063,0.31484,0.743566,0.955771,0.0597427,0.827835,0.970096,0.343311,0.65722,0.204968,0.957658,0.337709,0.937248,0.414446,0.375159,0.415621,0.773264,0.785731,0.46643,0.72298,0.137623,0.472561,0.123658,0.493191,0.623472,0.189519,0.1178,0.54091,0.321555,0.30343,0.415155,0.622163,0.756463,0.690996,0.344117,0.411156,0.619482,0.918346,0.376363,0.803777,0.0711975,0.448098,0.499657,0.284904,0.0228893,0.498751,0.177618,0.807943,0.761868,0.140278,0.526361,0.223832,0.866246,0.0677488,0.965102,0.0495467,0.117804,0.847397,0.188525,0.978557,0.0795074,0.911438,0.210534,0.977292,0.475761,0.493726,0.296836,0.0303543,0.554346,0.0374477,0.0975847,0.824092,0.894808,0.32502,0.427461,0.563488,0.34156,0.0577053,0.474495,0.395574,0.554283,0.8752,0.927502,0.939637,0.343841,0.910922,0.215814,0.731655,0.273992,0.137225,0.527014,0.941626,0.255718,0.615899,0.427884,0.812885,0.499248,0.677987,0.408073,0.306221,0.990253,0.446853,0.899909,0.689743,0.0757118,0.485944,0.499937,0.0545073,0.906247,0.515645,0.246959,0.893104,0.559384,0.660537,0.57236,0.593339,0.0117755,0.27134,0.884567,0.23286,0.986493,0.374329,0.482395,0.105171,0.696026,0.832458,0.518428,0.996427,0.101969,0.883307,0.850242,0.969673,0.515308,0.430935,0.242926,0.959525,0.32328,0.398387,0.249391,0.44091,0.4297,0.757864,0.643001,0.84874,0.113269,0.0401252,0.222414,0.759305,0.0222999,0.12111,0.626176,0.969375,0.412517,0.965468,0.969416,0.304504,0.249265,0.581246,0.680545,0.12584,0.638903,0.00475597,0.532779,0.0217563,0.449017,0.38619,0.742977,0.676839,0.951704,0.940812,0.83873,0.886835,0.605303,0.910033,0.074303,0.0144979,0.0146407,0.6495,0.596099,0.0982523,0.7861,0.0431637,0.84852,0.339897,0.945277,0.426273,0.869567,0.846588,0.566589,0.487053,0.369449,0.350542,0.181087,0.357692,0.469818,0.225992,0.188183,0.422916,0.112939,0.877977,0.56998,0.62484,0.787962,0.740897,0.801876,0.926056,0.745235,0.992295,0.107145,0.714543,0.51459,0.929546,0.821858,0.0535806,0.146818,0.403345,0.458057,0.584359,0.900739,0.878257,0.73151,0.714667,0.164111,0.328528,0.748552,0.459807,0.389793,0.613946,0.816506,0.706814,0.697846,0.461518,0.437913,0.00697678,0.93821,0.117318,0.347006,0.181431,0.0886584,0.616848,0.284518,0.934014,0.634905,0.462241,0.842356,0.0868757,0.351824,0.107719,0.79279,0.683501,0.165829,0.655217,0.863793,0.341407,0.104555,0.653508,0.197489,0.419303,0.763283,0.957381,0.317671,0.199675,0.805874,0.331798,0.505776,0.19452,0.564361,0.110419,0.934796,0.529785,0.779115,0.442311,0.199225,0.0923921,0.156251,0.173329,0.447047,0.504283,0.360869,0.457571,0.0882234,0.00827432,0.496385,0.192452,0.0474386,0.136937,0.0825294,0.146604,0.161278,0.661203,0.417619,0.505818,0.931516,0.683042,0.455404,0.415209,0.168662,0.89906,0.275086,0.642941,0.728392,0.844041,0.881373,0.816604,0.415998,0.724941,0.290146,0.846775,0.812925,0.339674,0.055079,0.060226,0.549485,0.382922,0.533874,0.374026,0.0502779,0.734118,0.0525494,0.824012,0.0138164,0.510045,0.183168,0.846969,0.0715393,0.750811,0.241518,0.353469,0.50226,0.431241,0.754822,0.515876,0.952601,0.903482,0.031388,0.101425,0.547006,0.537012,0.918231,0.387123,0.972763,0.475772,0.165405,0.336821,0.776443,0.184354,0.15516,0.0895841,0.942585,0.891492,0.860085,0.712743,0.553565,0.71699,0.020335,0.0154116,0.823194,0.863913,0.489351,0.256621,0.485025,0.140698,0.478634,0.503303,0.732377,0.219474,0.246671,0.370726,0.543439,0.149916,0.683636,0.919477,0.630147,0.949399,0.466367,0.718986,0.368004,0.542532,0.253363,0.0322797,0.214822,0.510727,0.495707,0.105636,0.239783,0.40053,0.827432,0.544513,0.173608,0.317735,0.928391,0.17087,0.721598,0.109908,0.885646,0.790152,0.216608,0.822946,0.0705904,0.666954,0.519649,0.315302,0.400787,0.282287,0.119423,0.886803,0.267865,0.132957,0.0492069,0.105862,0.165177,0.160431,0.448239,0.846477,0.727834,0.0797978,0.405596,0.828452,0.018144,0.305506,0.825587,0.28597,0.962026,0.0482726,0.362111,0.380294,0.656658,0.717509,0.520734,0.500892,0.340046,0.289525,0.235651,0.0228152,0.437486,0.360266,0.267095,0.249872,0.6393,0.100565,0.126872,0.649091,0.428071,0.0243272,0.384695,0.367505,0.474638,0.696662,0.998299,0.800374,0.467591,0.214223,0.84815,0.224992,0.682846,0.679512,0.537579,0.966054,0.865567,0.165633,0.184831,0.916866,0.803786,0.406671,0.52185,0.922174,0.840093,0.0143216,3.24845e-05,0.456924,0.751281,0.766207,0.536492,0.961061,0.32514,0.934004,0.590378,0.156085,0.374565,0.627139,0.940505,0.16974,0.399656,0.179511,0.290011,0.135811,0.632174,0.383938,0.277281,0.107594,0.779336,0.21716,0.849277,0.424412,0.0685605,0.79553,0.395603,0.461424,0.68962,0.205127,0.243391,0.863759,0.779334,0.247257,0.133127,0.267832,0.18769,0.52769,0.349693,0.764803,0.620094,0.399566,0.781359,0.755612,0.0766146,0.246549,0.31105,0.985643,0.36555,0.961962,0.560201,0.398849,0.857188,0.244197,0.985605,0.298035,0.395181,0.0409495,0.952899,0.660192,0.967924,0.236418,0.507134,0.239212,0.901563,0.0168554,0.961754,0.47595,0.659998,0.540771,0.815098,0.718372,0.518877,0.347886,0.782448,0.340989,0.161465,0.699662,0.952921,0.0427282,0.723173,0.972611,0.0762874,0.919297,0.110396,0.167773,0.546345,0.233682,0.438866,0.446525,0.181048,0.531912,0.900921,0.496399,0.175857,0.986717,0.836113,0.997139,0.000403881,0.80896,0.00886112,0.411976,0.425456,0.0768405,0.0621502,0.912682,0.0398487,0.289823,0.297019,0.514757,0.532181,0.789547,0.477713,0.264424,0.254698,0.549348,0.686167,0.400323,0.241839,0.980681,0.703532,0.441468,0.878617,0.009296,0.507364,0.95095,0.438255,0.389742,0.0124899,0.264634,0.5621,0.932393,0.124228,0.0417187,0.0722144,0.477827,0.986222,0.74708,0.722794,0.728646,0.433051,0.694305,0.823455,0.661308,0.814712,0.281032,0.815454,0.0624399,0.226815,0.0933317,0.269843,0.557329,0.59816,0.28719,0.280661,0.143723,0.387824,0.485523,0.735497,0.277696,0.176719,0.732159,0.455761,0.540307,0.504175,0.780486,0.71535,0.534498,0.84285,0.598794,0.956228,0.199196,0.749865,0.807273,0.622773,0.345053,0.104726,0.125825,0.763484,0.463181,0.257318,0.361662,0.887624,0.082446,0.852133,0.407702,0.461936,0.854979,0.857633,0.546625,0.201116,0.469464,0.290012,0.319532,0.953827,0.369693,0.111998,0.818318,0.313508,0.333834,0.557773,0.0640555,0.302914,0.418174,0.957092,0.740233,0.843985,0.999053,0.2768,0.0514653,0.944624,0.0753015,0.0762925,0.0678048,0.946968,0.667499,0.823693,0.816958,0.462389,0.0613036,0.332622,0.318448,0.00713903,0.793327,0.261011,0.173806,0.228127,0.32641,0.534727,0.475327,0.312007,0.580769,0.856737,0.717417,0.365797,0.871731,0.327429,0.344513,0.195633,0.0199208,0.682233,0.495854,0.933335,0.408752,0.371721,0.826528,0.644332,0.0694482,0.122712,0.43694,0.118423,0.688469,0.549246,0.0873978,0.108605,0.510622,0.285153,0.814968,0.758181,0.358694,0.383684,0.682728,0.301254,0.721741,0.694895,0.642235,0.855636,0.383402,0.545197,0.99825,0.862904,0.761624,0.879171,0.158281,0.467006,0.711162,0.154058,0.496236,0.7514,0.68853,0.27342,0.688545,0.531259,0.115973,0.358356,0.665847,0.466255,0.538548,0.436469,0.983361,0.56087,0.472654,0.203397,0.761764,0.467192,0.393856,0.836912,0.600743,0.795755,0.149198,0.0638928,0.682306,0.615325,0.792471,0.361962,0.746829,0.622375,0.925439,0.791398,0.34202,0.348695,0.578411,0.713492,0.155525,0.215558,0.208995,0.574759,0.932199,0.521927,0.408024,0.531663,0.302844,0.0792872,0.0326014,0.235869,0.267662,0.139341,0.836905,0.158991,0.532286,0.927296,0.744081,0.126848,0.437779,0.955831,0.686103,0.773408,0.781453,0.844303,0.94615,0.522842,0.668274,0.355921,0.797647,0.235523,0.589048,0.509785,0.433096,0.440019,0.807291,0.853585,0.203708,0.303658,0.165547,0.904271,0.79002,0.328486,0.264843,0.320235,0.626337,0.0136189,0.141835,0.842427,0.150402,0.164628,0.363877,0.620824,0.631737,0.181603,0.706628,0.59749,0.973126,0.918891,0.723607,0.768788,0.506345,0.252643,0.804686,0.519792,0.0839301,0.668969,0.70525,0.080291,0.536987,0.455902,0.577151,0.235732,0.3534,0.62748,0.33741,0.837397,0.502491,0.649929,0.144984,0.0824302,0.129427,0.650125,0.887103,0.186365,0.125659,0.205047,0.89172,0.808423,0.373692,0.218931,0.212064,0.524296,0.820431,0.215268,0.421873,0.668668,0.594701,0.504825,0.644009,0.550704,0.501793,0.373697,0.462157,0.155126,0.520932,0.581801,0.000825882,0.104618,0.391022,0.676701,0.412221,0.0529954,0.634416,0.798088,0.041647,0.352949,0.715552,0.191477,0.200504,0.468505,0.570781,0.0223784,0.300261,0.411015,0.472796,0.706864,0.668289,0.598502,0.937335,0.823107,0.140977,0.290046,0.405818,0.262296,0.804081,0.237889,0.134304,0.917265,0.122498,0.597419,0.888769,0.585275,0.903375,0.0467093,0.216481,0.0896314,0.414863,0.863651,0.525864,0.639564,0.490234,0.575901,0.68264,0.259609,0.61911,0.395246,0.5244,0.339757,0.058396,0.492079,0.327744,0.0706156,0.833122,0.676052,0.610472,0.548465,0.761908,0.487194,0.908451,0.869589,0.692134,0.655115,0.582428,0.802435,0.363394,0.585571,0.729338,0.659693,0.684141,0.418489,0.337321,0.108667,0.813662,0.790125,0.277913,0.165751,0.638121,0.620878,0.978572,0.883443,0.0898461,0.0878408,0.788806,0.58377,0.512753,0.613568,0.816221,0.468485,0.519494,0.881159,0.435611,0.785298,|0.127086,0.265183,0.0685136,0.00042969,0.366886,0.619616,0.726536,0.110153,0.615643,0.671964,0.765893,0.461699,0.104563,0.248949,0.598241,0.240803,0.57161,0.611064,0.450024,0.691414,0.209043,0.310956,0.442717,0.981375,0.661575,0.637669,0.54225,0.311017,0.0415825,0.145322,0.578539,0.00255489,0.389564,0.973048,0.119926,0.0206298,0.99941,0.551803,0.746067,0.750784,0.753884,0.0105022,0.0272582,0.475253,0.24482,0.544817,0.211977,0.657477,0.953161,0.181927,0.738095,0.448347,0.387645,0.360981,0.5475,0.837172,0.537585,0.47624,0.278509,0.62264,0.169393,0.672061,0.476622,0.963911,0.146344,0.111058,0.528273,0.513099,0.723005,0.453595,0.221427,0.777139,0.403526,0.042094,0.32667,0.779291,0.744201,0.411052,0.94799,0.0239791,0.0891728,0.870109,0.523428,0.415758,0.527906,0.143677,0.832632,0.568027,0.146547,0.708632,0.413223,0.549114,0.39054,0.0376893,0.59118,0.988439,0.967115,0.0522743,0.572778,0.302831,0.572206,0.990357,0.114391,0.563261,0.601461,0.337403,0.671976,0.587262,0.750278,0.548502,0.206572,0.21488,0.756679,0.788024,0.605403,0.918792,0.0308351,0.654469,0.415804,0.71456,0.214845,0.804875,0.104552,0.125818,0.56558,0.4845,0.693662,0.887124,0.0182202,0.511014,0.115022,0.771401,0.792012,0.192296,0.0165102,0.785708,0.162126,0.331403,0.691045,0.900481,0.597344,0.197679,0.400718,0.121487,0.494444,0.721869,0.832664,0.469869,0.215175,0.626036,0.305574,0.105306,0.271829,0.938619,0.00768429,0.0689843,0.53883,0.164985,0.49709,0.871739,0.822358,0.733121,0.418305,0.251858,0.635791,0.871755,0.847757,0.461574,0.936589,0.564172,0.867381,0.392496,0.662484,0.601287,0.265648,0.399502,0.586601,0.394329,0.869028,0.167498,0.897012,0.186814,0.0638319,0.670357,0.246924,0.767419,0.393374,0.470818,0.491279,0.989076,0.382045,0.962241,0.561141,0.543555,0.197841,0.630859,0.942347,0.475625,0.509692,0.838979,0.814791,0.82968,0.727073,0.418003,0.854154,0.710447,0.511873,0.00335407,0.836954,0.616672,0.031144,0.76069,0.372554,0.874128,0.0728742,0.845061,0.100336,0.917607,0.405224,0.992372,0.14162,0.173139,0.549702,0.487791,0.101386,0.727457,0.180632,0.0986882,0.454924,0.611959,0.393807,0.370294,0.790063,0.699545,0.969807,0.654974,0.571895,0.610857,0.810268,0.798802,0.448811,0.470101,0.279409,0.515294,0.0334098,0.407227,0.549502,0.374383,0.46579,0.757119,0.604447,0.0267216,0.159821,0.686959,0.80338,0.604505,0.401613,0.446418,0.856093,0.529795,0.968322,0.252962,0.777093,0.901582,0.494706,0.361004,0.474236,0.916487,0.16748,0.389025,0.44597,0.250456,0.14561,0.597506,0.19153,0.79401,0.958383,0.643664,0.650006,0.303545,0.21412,0.700467,0.220318,0.725077,0.22983,0.699186,0.682481,0.451425,0.334348,0.595413,0.226255,0.592341,0.613809,0.265037,0.373667,0.961645,0.0568202,0.951153,0.258699,0.753548,0.20944,0.7578,0.0596576,0.454307,0.606872,0.845555,0.277189,0.237124,0.538983,0.508649,0.953816,0.0241667,0.742995,0.599091,0.726308,0.518661,0.273481,0.969786,0.173198,0.0685092,0.117242,0.444657,0.833529,0.106217,0.195777,0.393927,0.728111,0.365685,0.819686,0.241519,0.666811,0.462225,0.378377,0.527183,0.465573,0.346808,0.799654,0.571599,0.38762,0.0478091,0.519521,0.766196,0.61904,0.908857,0.761232,0.199132,0.478915,0.593664,0.437739,0.83518,0.21526,0.346803,0.574114,0.736584,0.220493,0.774933,0.712725,0.55891,0.230402,0.0458141,0.451201,0.448982,0.0513842,0.00119454,0.119137,0.904297,0.956456,0.850502,0.859809,0.23342,0.828386,0.276474,0.0529519,0.335925,0.741888,0.387576,0.181442,0.492986,0.540701,0.490023,0.0383922,0.0618501,0.80582,0.119013,0.606701,0.352872,0.113861,0.42625,0.197213,0.204775,0.836258,0.239289,0.130256,0.77252,0.939149,0.226216,0.200591,0.580383,0.0894757,0.618569,0.353419,0.270503,0.8171,0.229542,0.144265,0.859683,0.45458,0.799715,0.0901173,0.915412,0.970735,0.241333,0.96889,0.671995,0.0129128,0.768441,0.427183,0.64494,0.855628,0.531332,0.417443,0.515464,0.613044,0.741193,0.575133,0.796946,0.0653272,0.536233,0.927076,0.84866,0.788761,0.312765,0.212018,0.572267,0.840299,0.613938,0.379022,0.433818,0.18516,0.45391,0.685895,0.110387,0.172261,0.0746796,0.14532,0.999633,0.0179241,0.987538,0.557217,0.953227,0.236942,0.258571,0.226639,0.228968,0.165318,0.209635,0.869824,0.937849,0.580385,0.372056,0.384508,0.591735,0.0945119,0.36069,0.0092181,0.433821,0.000921369,0.532236,0.561156,0.657825,0.320405,0.913052,0.879563,0.669354,0.0455382,0.271664,0.941226,0.643838,0.997382,0.148591,0.809678,0.744372,0.362838,0.421812,0.579591,0.356179,0.920811,0.121825,0.36538,0.403152,0.790095,0.470646,0.69175,0.135525,0.31931,0.571935,0.00363529,0.199323,0.884432,0.438226,0.40531,0.917131,0.370988,0.687135,0.444024,0.37689,0.430615,0.944549,0.0908868,0.321201,0.37918,0.0992402,0.7995,0.298064,0.467155,0.691665,0.901399,0.737643,0.599743,0.811674,0.894559,0.495679,0.934692,0.893856,0.072704,0.234122,0.757729,0.708269,0.984825,0.917881,0.215947,0.659638,0.292953,0.369749,0.0329726,0.540529,0.751125,0.493158,0.0587317,0.382536,0.362393,0.630485,0.654032,0.23244,0.748817,0.125116,0.475694,0.216126,0.114176,0.578065,0.353686,0.425346,0.904098,0.701529,0.375102,0.363526,0.883565,0.728988,0.989212,0.100836,0.00421625,0.650586,0.927093,0.104348,0.762052,0.135763,0.705994,0.313515,0.0894673,0.904414,0.135562,0.0903824,0.891906,0.0947724,0.682557,0.851735,0.443689,0.381512,0.393765,0.303726,0.483588,0.567482,0.720982,0.558575,0.697903,0.777817,0.333991,0.342414,0.851627,0.078734,0.495831,0.519954,0.855435,0.220389,0.961214,0.23324,0.329845,0.524393,0.811344,0.0669699,0.885105,0.942974,0.334928,0.404271,0.950458,0.410624,0.417407,0.168722,0.229551,0.294031,0.076181,0.105475,0.1854,0.868939,0.117913,0.534996,0.0177254,0.860364,0.0921378,0.00164515,0.590067,0.393159,0.712468,0.524544,0.549473,0.807759,0.0689542,0.798639,0.0180277,0.0577789,0.640476,0.592222,0.287487,0.941674,0.246724,0.165712,0.462367,0.898833,0.463434,0.906442,0.871941,0.33436,0.984472,0.0827251,0.213971,0.987867,0.124661,0.508282,0.812035,0.326343,0.609826,0.146284,0.438987,0.089658,0.222177,0.397305,0.586467,0.542335,0.125196,0.97852,0.505279,0.162255,0.656516,0.992382,0.903869,0.613613,0.125359,0.889151,0.603775,0.23555,0.347315,0.452682,0.435071,0.943764,0.900043,0.560234,0.532119,0.0440251,0.746336,0.863589,0.707802,0.91313,0.197797,0.225792,0.479045,0.0720761,0.182212,0.925145,0.905726,0.5777,0.105373,0.109639,0.815023,0.714435,0.812774,0.899069,0.431508,0.70033,0.929292,0.241344,0.895655,0.477477,0.212061,0.417309,0.197931,0.220462,0.625621,0.899283,0.980962,0.685051,0.423544,0.0141983,0.595905,0.551664,0.257406,0.122507,0.975467,0.482261,0.29321,0.0241117,0.258133,0.94938,0.0671206,0.607302,0.895897,0.314625,0.0666837,0.920695,0.373157,0.740222,0.193398,0.328456,0.6061,0.266905,0.902835,0.355627,0.0818256,0.0637147,0.660697,0.548082,0.817003,0.501861,0.0260137,0.164748,0.380802,0.473994,0.854814,0.969905,0.849923,0.935042,0.520162,0.0850859,0.0509454,0.574357,0.184642,0.603751,0.189859,0.355041,0.136743,0.432912,0.0301449,0.636589,0.471499,0.0828397,0.688365,0.630315,0.740024,0.908428,0.0969043,0.23816,0.693703,0.187487,0.585416,0.32615,0.43144,0.0760159,0.440714,0.953547,0.251281,0.37091,0.819479,0.204582,0.656125,0.645644,0.562934,0.375267,0.283172,0.276078,0.293309,0.318385,0.100637,0.867937,0.7902,0.17595,0.412235,0.774538,0.871961,0.407396,0.0202557,0.893556,0.38728,0.383066,0.0685137,0.587808,0.8782,0.625643,0.133173,0.243037,0.379338,0.816893,0.335054,0.818806,0.218568,0.840431,0.114895,0.390392,0.230537,0.998029,0.250924,0.569286,0.222834,0.849377,0.118537,0.325695,0.427084,0.813875,0.371338,0.36992,0.174177,0.184657,0.307382,0.613759,0.35808,0.678061,0.986989,0.0771218,0.96378,0.360583,0.3316,0.251196,0.454067,0.171002,0.574239,0.564724,0.140077,0.910513,0.786026,0.715583,0.920901,0.227441,0.0564656,0.163657,0.499888,0.379261,0.619728,0.882824,0.949758,0.707884,0.221267,0.0308076,0.358549,0.944031,0.991349,0.347888,0.66633,0.466383,0.254297,0.775633,0.790779,0.0360185,0.930915,0.373567,0.429583,0.0833029,0.402895,0.712802,0.502548,0.461957,0.935411,0.503348,0.766829,0.352657,0.784138,0.609199,0.59996,0.816853,0.0376266,0.665384,0.440749,0.0168079,0.341129,0.0793453,0.640162,0.281,0.343898,0.913903,0.324969,0.172233,0.395868,0.446334,0.479248,0.455967,0.285536,0.202925,0.281687,0.141452,0.877479,0.61072,0.599609,0.0791788,0.598478,0.737525,0.758299,0.654156,0.663495,0.885793,0.505066,0.103471,0.581969,0.143566,0.198928,0.709353,0.677899,0.420337,0.918471,0.243858,0.955972,0.630216,0.0302601,0.433864,0.910705,0.288743,0.95858,0.25754,0.136147,0.961327,0.451775,0.560042,0.905559,0.176405,0.163934,0.606475,0.738767,0.613936,0.615668,0.223551,0.390635,0.0527067,0.240434,0.168969,0.830053,0.603551,0.886448,0.119088,0.520439,0.250507,0.973151,0.395914,0.733161,0.160829,0.261863,0.254306,0.272485,0.3951,0.23277,0.961963,0.922595,0.300259,0.140975,0.0357593,0.511324,0.417587,0.986091,0.150969,0.183818,0.800129,0.393813,0.802286,0.788381,0.582121,0.292456,0.503226,0.455681,0.479796,0.308427,0.388316,0.870918,0.850533,0.320083,0.548205,0.973741,0.127047,0.563277,0.0638611,0.296655,0.693779,0.737808,0.896255,0.748149,0.428834,|0.811155,0.982323,0.564527,0.757262,0.0613995,0.0265417,0.509835,0.65607,0.481237,0.680254,0.0885812,0.936491,0.81302,0.991297,0.0222468,0.532073,0.661542,0.805588,0.968844,0.230492,0.249517,0.657693,0.567915,0.376307,0.0207219,0.792657,0.688184,0.853266,0.656931,0.396264,0.769864,0.251376,0.709518,0.94041,0.477277,0.983162,0.242408,0.678442,0.947489,0.247092,0.495427,0.98011,0.992019,0.723025,0.687729,0.304278,0.358252,0.891033,0.549268,0.329108,0.0490603,0.650009,0.165045,0.119346,0.0811312,0.987066,0.0107874,0.706878,0.617858,0.948928,0.501224,0.0479258,0.774223,0.568967,0.572757,0.157636,0.223081,0.521204,0.912977,0.860446,0.889503,0.401713,0.646015,0.858992,0.412929,0.545806,0.901592,0.867774,0.745827,0.317621,0.159511,0.640963,0.747202,0.902458,0.440803,0.730424,0.52586,0.602383,0.729623,0.0238452,0.214125,0.841025,0.756115,0.146832,0.759205,0.35636,0.120807,0.893784,0.385252,0.707492,0.632828,0.72745,0.691216,0.68283,0.845982,0.959103,0.628509,0.835146,0.517383,0.883638,0.881051,0.0124706,0.710869,0.157219,0.106136,0.757152,0.944916,0.560072,0.852836,0.736176,0.401877,0.490665,0.416401,0.394431,0.990533,0.994,0.648105,0.871474,0.899838,0.277249,0.236881,0.23246,0.717399,0.409784,0.704534,0.42253,0.177993,0.621759,0.103459,0.262376,0.899118,0.332858,0.0123711,0.774309,0.407959,0.0388609,0.112977,0.0326847,0.857209,0.995311,0.235834,0.572294,0.38019,0.766809,0.615985,0.728388,0.847018,0.466309,0.355936,0.575315,0.278603,0.194809,0.138599,0.0534396,0.658092,0.817134,0.0143542,0.342349,0.247417,0.323087,0.019794,0.301927,0.457889,0.433554,0.951191,0.642347,0.482433,0.73904,0.894685,0.582961,0.157947,0.948385,0.0688354,0.327151,0.381386,0.740904,0.303237,0.689107,0.561143,0.872641,0.615773,0.435701,0.913773,0.0933344,0.703582,0.734542,0.586647,0.616154,0.599923,0.422699,0.778235,0.257812,0.443334,0.495886,0.097451,0.909915,0.945841,0.287592,0.165606,0.831057,0.481271,0.918936,0.217231,0.88076,0.720941,0.317698,0.586703,0.957142,0.866624,0.753538,0.571384,0.893932,0.167315,0.966621,0.504433,0.240031,0.46536,0.206285,0.779686,0.265007,0.587766,0.289294,0.663797,0.289747,0.77806,0.742306,0.673299,0.948483,0.506946,0.714641,0.705862,0.940486,0.833975,0.142743,0.86156,0.342555,0.880119,0.90002,0.795132,0.0312571,0.984308,0.660896,0.46079,0.486033,0.22695,0.021358,0.940254,0.362452,0.67597,0.125095,0.349453,0.792965,0.770408,0.613795,0.782151,0.872407,0.511922,0.833324,0.278179,0.214921,0.912704,0.184868,0.304025,0.950083,0.638841,0.484191,0.885182,0.330585,0.7243,0.377472,0.537463,0.0745183,0.013368,0.463561,0.598269,0.588209,0.737145,0.692996,0.852104,0.54738,0.490499,0.278871,0.72308,0.276629,0.049156,0.0417126,0.686367,0.104278,0.568183,0.981052,0.475424,0.353606,0.471444,0.843995,0.460949,0.828188,0.210315,0.0627945,0.115918,0.921022,0.66228,0.739234,0.157441,0.348506,0.650278,0.200593,0.811621,0.92143,0.42049,0.235515,0.747944,0.859709,0.990454,0.303889,0.363459,0.737118,0.268723,0.0136114,0.121521,0.551516,0.967473,0.186135,0.193387,0.281795,0.353639,0.0797504,0.209894,0.913806,0.834523,0.130579,0.77429,0.80731,0.397206,0.185803,0.262372,0.489372,0.283825,0.988216,0.967368,0.707151,0.201598,0.622622,0.135954,0.243414,0.214035,0.94692,0.573972,0.71569,0.703835,0.459536,0.634279,0.447897,0.299822,0.983407,0.481721,0.685424,0.123345,0.825874,0.186643,0.0954343,0.115929,0.544373,0.379907,0.711914,0.423215,0.939873,0.154189,0.961013,0.154137,0.614612,0.643547,0.0535798,0.0723696,0.000859737,0.53049,0.277697,0.959644,0.841525,0.71947,0.980863,0.379596,0.645271,0.0659468,0.392651,0.910284,0.813582,0.540518,0.424968,0.860781,0.932958,0.308661,0.795812,0.982764,0.569332,0.304098,0.222004,0.72197,0.585488,0.055348,0.620363,0.939159,0.0754924,0.0320359,0.0148938,0.723789,0.633269,0.427107,0.12061,0.125098,0.580306,0.416872,0.0718941,0.185138,0.577473,0.233854,0.388984,0.697224,0.245033,0.223534,0.354994,0.876663,0.64127,0.0443853,0.0106114,0.891481,0.0535753,0.916494,0.425739,0.87582,0.249281,0.962065,0.420503,0.864594,0.694326,0.570911,0.81945,0.708737,0.550306,0.717017,0.445635,0.27098,0.538087,0.264398,0.792484,0.352254,0.69004,0.525435,0.50163,0.0877392,0.503222,0.133801,0.472727,0.896989,0.989239,0.0637083,0.725237,0.179735,0.0728428,0.0737796,0.810731,0.175193,0.692598,0.0635541,0.197004,0.293119,0.421483,0.659298,0.145888,0.663646,0.826638,0.543593,0.832121,0.810816,0.563811,0.0576432,0.112942,0.169174,0.331971,0.809589,0.094061,0.0270767,0.973155,0.976124,0.25643,0.666806,0.951489,0.54328,0.948065,0.599904,0.89021,0.315399,0.739962,0.6325,0.736115,0.819478,0.368788,0.926373,0.664839,0.364443,0.410715,0.171031,0.934194,0.945878,0.686625,0.0930572,0.832963,0.863038,0.7059,0.856442,0.333905,0.853385,0.11973,0.424068,0.612181,0.472895,0.267224,0.978154,0.201876,0.504916,0.955418,0.959888,0.0506342,0.55614,0.215526,0.699917,0.54712,0.282774,0.631015,0.308027,0.498011,0.0135338,0.637369,0.0368448,0.268263,0.884111,0.297128,0.395243,0.477803,0.506657,0.119158,0.645422,0.952649,0.243538,0.440735,0.758293,0.169666,0.283568,0.766249,0.115375,0.960083,0.390969,0.420872,0.414204,0.592609,0.626763,0.186303,0.432512,0.887535,0.944891,0.851323,0.527108,0.896514,0.241873,0.0977963,0.711547,0.331095,0.399146,0.55393,0.0349556,0.488451,0.570879,0.142349,0.730622,0.470644,0.073916,0.841342,0.216778,0.806415,0.357002,0.752534,0.534767,0.11077,0.810362,0.328812,0.446237,0.289298,0.536567,0.502147,0.230801,0.421395,0.939392,0.848823,0.551532,0.564661,0.988555,0.129067,0.7286,0.351184,0.930551,0.4699,0.30162,0.861642,0.475397,0.00150198,0.46026,0.328178,0.14922,0.812721,0.0648375,0.375309,0.277867,0.00595337,0.235231,0.977135,0.99589,0.802803,0.68793,0.70773,0.285338,0.739016,0.514706,0.0578743,0.136113,0.433597,0.0158393,0.226536,0.740945,0.219711,0.742509,0.768965,0.72249,0.762473,0.593034,0.741344,0.402541,0.695762,0.0822639,0.312955,0.876244,0.16764,0.548934,0.247866,0.248467,0.503063,0.990098,0.731015,0.299283,0.975108,0.88749,0.485105,0.114335,0.715473,0.124567,0.460565,0.226123,0.540664,0.693338,0.483477,0.366396,0.71399,0.81658,0.120042,0.188247,0.965363,0.470935,0.498732,0.647229,0.260479,0.5815,0.189048,0.744286,0.930151,0.84465,0.828749,0.775391,0.0209857,0.660562,0.0739641,0.567323,0.0378003,0.096882,0.656653,0.108366,0.657939,0.202433,0.788625,0.613286,0.629824,0.096029,0.689403,0.716043,0.491883,0.47395,0.784912,0.461565,0.230094,0.0185349,0.855801,0.448513,0.810541,0.942857,0.362321,0.537395,0.754886,0.200392,0.267776,0.0660478,0.993012,0.958425,0.545995,0.508637,0.0463563,0.960498,0.276449,0.73696,0.868915,0.435523,0.577603,0.275271,0.80006,0.14844,0.601948,0.427724,0.0734718,0.884918,0.691639,0.735642,0.888451,0.880085,0.40736,0.00852019,0.523776,0.956032,0.420591,0.237025,0.206638,0.631253,0.792193,0.937522,0.568288,0.897173,0.989757,0.994983,0.283142,0.219822,0.313046,0.473155,0.364176,0.990772,0.651396,0.10206,0.13227,0.84168,0.199055,0.161665,0.277444,0.746368,0.402012,0.304277,0.667787,0.493584,0.691032,0.410563,0.333204,0.601571,0.127482,0.0809397,0.766896,0.342291,0.850109,0.11454,0.343997,0.428187,0.326411,0.970494,0.387632,0.296562,0.375828,0.682902,0.376794,0.867196,0.0692779,0.393425,0.405856,0.245813,0.181764,0.58644,0.178694,0.895923,0.384507,0.547707,0.367819,0.76512,0.400321,0.505746,0.927167,0.759921,0.84275,0.863393,0.00693476,0.654061,0.663303,0.0329595,0.472552,0.613536,0.096782,0.500195,0.178026,0.576434,0.194498,0.485132,0.619722,0.321456,0.744796,0.730542,0.193549,0.971921,0.672999,0.992229,0.378942,0.375101,0.620154,0.11097,0.682873,0.249691,0.591453,0.652745,0.2031,0.273174,0.148601,0.186044,0.232371,0.333404,0.478206,0.703881,0.987161,0.181415,0.651937,0.970622,0.717679,0.627143,0.231643,0.99708,0.143834,0.408117,0.573984,0.183556,0.995419,0.0521414,0.593475,0.541551,0.96675,0.773419,0.206588,0.462821,0.816027,0.249342,0.362083,0.845903,0.703826,0.986676,0.543697,0.557467,0.810471,0.588834,0.457451,0.600834,0.802618,0.00713652,0.624758,0.52093,0.75467,0.349311,0.69415,0.940483,0.895833,0.579112,0.728132,0.682656,0.126685,0.261429,0.262203,0.765268,0.37624,0.963864,0.476063,0.727175,0.120948,0.857745,0.899536,0.32054,0.814083,0.0638074,0.13589,0.46832,0.602928,0.113068,0.0361907,0.863173,0.485521,0.65448,0.0332236,0.127417,0.151362,0.929966,0.620855,0.722301,0.382582,0.923615,0.476299,0.865904,0.119174,0.0645953,0.200158,0.414767,0.621925,0.776201,0.418011,0.740708,0.576173,0.458534,0.232147,0.859613,0.517698,0.21418,0.184567,0.947567,0.851544,0.415191,0.148229,0.194885,0.290254,0.682468,0.640621,0.780037,0.00931972,0.867016,0.247123,0.29769,0.127219,0.721465,0.356847,0.0515596,0.0937703,0.621951,0.104764,0.246435,0.977556,0.226806,0.402888,0.153889,0.593873,0.815583,0.869689,0.332967,0.603369,0.592287,0.692017,0.685596,0.165915,0.487627,0.574984,0.969251,0.309125,0.038997,0.314361,0.596015,0.135702,0.520133,0.21129,0.345503,0.718174,0.00965327,0.478899,0.345306,0.643161,0.0972139,0.237191,0.692133,0.86863,0.962542,0.64062,0.407156,0.167755,0.402032,0.902803,0.751357,0.945776,0.866909,0.77711,|0.38292,0.179823,0.812196,0.393246,0.615102,0.387243,0.759163,0.0220338,0.836949,0.362154,0.870827,0.114004,0.0831841,0.863414,0.639498,0.42067,0.693213,0.600078,0.666897,0.204635,0.421883,0.0756593,0.801456,0.740437,0.265967,0.611947,0.132495,0.830249,0.732367,0.0262307,0.45548,0.539156,0.193828,0.444544,0.0713982,0.477444,0.390962,0.716362,0.338405,0.660568,0.121297,0.251628,0.276474,0.956096,0.454162,0.726334,0.780827,0.48496,0.00329673,0.687191,0.994588,0.0467381,0.826462,0.726825,0.0235754,0.0161516,0.0450827,0.596346,0.193989,0.448015,0.223966,0.470079,0.953189,0.970716,0.617442,0.95035,0.484177,0.719551,0.68277,0.290999,0.240478,0.801911,0.962351,0.140875,0.457074,0.475438,0.784496,0.632128,0.294211,0.151258,0.504913,0.525772,0.76657,0.567726,0.890259,0.134064,0.349919,0.310239,0.970635,0.563845,0.566123,0.905281,0.477464,0.160104,0.978122,0.43626,0.525697,0.864115,0.616434,0.610346,0.366625,0.496136,0.397875,0.73112,0.110013,0.744513,0.638762,0.259207,0.0405019,0.324455,0.498475,0.256454,0.0493535,0.332775,0.151632,0.289618,0.973154,0.725104,0.482851,0.359025,0.0417806,0.787478,0.330825,0.396048,0.449875,0.931354,0.540296,0.63736,0.533577,0.792823,0.562726,0.161381,0.780952,0.123,0.595165,0.572539,0.867603,0.998985,0.102819,0.995909,0.82044,0.371884,0.857336,0.218946,0.720305,0.893542,0.855842,0.755055,0.187532,0.558718,0.324207,0.586838,0.946165,0.117399,0.524238,0.58122,0.198868,0.556539,0.170399,0.752838,0.463884,0.306133,0.872731,0.868595,0.963434,0.732153,0.853488,0.559778,0.780506,0.117096,0.0768014,0.966908,0.659083,0.0897188,0.507834,0.412161,0.236291,0.498491,0.71273,0.598599,0.828226,0.2007,0.577968,0.703375,0.802746,0.567835,0.916649,0.842182,0.956795,0.772464,0.382405,0.930321,0.83325,0.264932,0.216412,0.716894,0.941267,0.639868,0.17707,0.214978,0.344777,0.0352619,0.212824,0.0805709,0.705373,0.947834,0.111088,0.128587,0.566297,0.946792,0.757971,0.621367,0.817637,0.751871,0.439078,0.733116,0.850404,0.254247,0.280719,0.640307,0.328869,0.253519,0.910661,0.0571209,0.884076,0.630044,0.984662,0.261576,0.59302,0.819534,0.146164,0.603882,0.0616036,0.187258,0.932753,0.86986,0.954996,0.228538,0.0529486,0.272668,0.855194,0.768199,0.810283,0.94485,0.582554,0.451046,0.981287,0.732245,0.839078,0.836923,0.511098,0.945871,0.221852,0.320975,0.179492,0.84675,0.0478507,0.386736,0.679387,0.0823582,0.0831073,0.391024,0.185728,0.852586,0.559371,0.61622,0.524642,0.138313,0.0624831,0.0114571,0.641042,0.0487512,0.577136,0.0645965,0.266874,0.989739,0.774452,0.364152,0.611842,0.211076,0.641715,0.115804,0.35661,0.885116,0.0299384,0.502687,0.068961,0.264587,0.1914,0.678859,0.963071,0.547353,0.000453353,0.517357,0.879557,0.68686,0.0456089,0.728727,0.997362,0.319195,0.301802,0.96654,0.855908,0.403031,0.0637401,0.701312,0.842098,0.303009,0.82778,0.342037,0.0865803,0.188666,0.450407,0.895957,0.998043,0.407976,0.405543,0.0127449,0.857305,0.2143,0.745735,0.999743,0.299426,0.203687,0.274807,0.0723574,0.865518,0.960573,0.927544,0.0640828,0.325586,0.767192,0.219795,0.448641,0.781582,0.565992,0.569767,0.832669,0.305949,0.339081,0.949297,0.306964,0.0714544,0.839442,0.393346,0.216969,0.791255,0.579917,0.842709,0.522073,0.0213327,0.405801,0.334705,0.951593,0.287762,0.460512,0.26886,0.667998,0.504102,0.346119,0.513596,0.0198293,0.687547,0.15323,0.640103,0.812327,0.686379,0.106466,0.531219,0.472982,0.262908,0.0709123,0.779526,0.175844,0.297776,0.901815,0.375849,0.124927,0.836241,0.0969103,0.640701,0.748565,0.934604,0.857659,0.541707,0.529059,0.0697113,0.258727,0.918027,0.464113,0.184502,0.764168,0.870785,0.520815,0.626122,0.569,0.481645,0.360632,0.490687,0.280645,0.681014,0.544144,0.66899,0.544082,0.636234,0.361673,0.440077,0.0368939,0.619984,0.873202,0.17872,0.141372,0.669178,0.310684,0.118369,0.242544,0.97811,0.336295,0.0978628,0.535492,0.956651,0.301987,0.713609,0.523209,0.41795,0.399882,0.55938,0.101666,0.206678,0.958956,0.0223605,0.386031,0.252381,0.73887,0.174719,0.0665378,0.761319,0.873366,0.68314,0.0219727,0.704026,0.630275,0.592789,0.201158,0.162792,0.219744,0.937875,0.214167,0.30395,0.119983,0.86396,0.684446,0.249958,0.582581,0.924983,0.392979,0.347299,0.0584695,0.93352,0.594026,0.657766,0.0441088,0.367171,0.546035,0.438841,0.333964,0.774348,0.790553,0.177426,0.183075,0.407762,0.300397,0.419752,0.548222,0.35499,0.481493,0.455291,0.847571,0.721994,0.278613,0.952643,0.773225,0.966654,0.43102,0.196295,0.243386,0.44343,0.600255,0.116159,0.0794376,0.445908,0.435618,0.712584,0.195971,0.582317,0.140568,0.200519,0.429479,0.475199,0.35048,0.0922078,0.713834,0.502444,0.0492229,0.901861,0.356849,0.620307,0.0160206,0.779041,0.352626,0.2763,0.101342,0.711357,0.389705,0.235687,0.69337,0.88647,0.413186,0.715358,0.728948,0.29231,0.543404,0.922062,0.884743,0.231843,0.281301,0.566748,0.151179,0.873637,0.516189,0.807859,0.0965854,0.0370435,0.991266,0.164805,0.892617,0.697236,0.354051,0.0314053,0.0284926,0.325067,0.343001,0.783752,0.250839,0.631583,0.750401,0.502158,0.448392,0.212086,0.0332403,0.747449,0.838283,0.815607,0.792161,0.731172,0.00387979,0.249612,0.768908,0.0744357,0.61021,0.776675,0.504184,0.486796,0.558253,0.31628,0.47997,0.101105,0.114084,0.297835,0.490933,0.740134,0.660988,0.37869,0.844109,0.438913,0.557156,0.79844,0.417528,0.217494,0.313911,0.224219,0.826384,0.600133,0.533849,0.910867,0.408882,0.555439,0.939089,0.989155,0.143544,0.806279,0.646719,0.0736563,0.25523,0.948449,0.392563,0.987055,0.66933,0.612906,0.115189,0.702237,0.6044,0.394869,0.078598,0.18553,0.569747,0.603083,0.489069,0.306798,0.649345,0.858398,0.276585,0.328707,0.855693,0.514501,0.970467,0.239079,0.535595,0.317263,0.455564,0.77707,0.653433,0.994673,0.936123,0.518128,0.282827,0.882115,0.459183,0.701038,0.0381005,0.256575,0.333406,0.933364,0.23868,0.0254602,0.296604,0.56571,0.0181358,0.928021,0.74698,0.502911,0.203187,0.873931,0.0536515,0.85714,0.361955,0.998568,0.0575504,0.942151,0.977517,0.942619,0.114522,0.0454749,0.011395,0.621932,0.460521,0.527859,0.306988,0.85247,0.836502,0.409001,0.495693,0.363328,0.944278,0.828268,0.988859,0.919536,0.828012,0.0889733,0.469742,0.90039,0.346414,0.192949,0.560575,0.56382,0.859419,0.282156,0.640498,0.440878,0.686592,0.805443,0.703516,0.344731,0.0132161,0.30937,0.679596,0.979025,0.249998,0.0940962,0.12111,0.214107,0.904659,0.153548,0.0269669,0.3231,0.0663462,0.103162,0.629105,0.808134,0.381553,0.274394,0.380681,0.836847,0.0322425,0.197991,0.282403,0.15905,0.354838,0.453555,0.216079,0.784952,0.762129,0.256019,0.198245,0.267837,0.0141783,0.256912,0.974306,0.460182,0.985924,0.607962,0.39164,0.452384,0.616558,0.434312,0.691949,0.706891,0.171681,0.0380098,0.370687,0.377962,0.14318,0.444373,0.563332,0.991703,0.835825,0.153574,0.627617,0.559397,0.489878,0.494137,0.808065,0.28384,0.991467,0.468929,0.340486,0.5971,0.43425,0.0768971,0.452992,0.253533,0.250502,0.636717,0.326647,0.883051,0.197727,0.424434,0.512602,0.17058,0.42336,0.491973,0.0327976,0.18835,0.881443,0.459976,0.0394336,0.622702,0.140742,0.471029,0.359584,0.799721,0.78584,0.754975,0.38229,0.853125,0.389429,0.835562,0.0438513,0.503435,0.636256,0.621657,0.156703,0.211209,0.427847,0.562397,0.818408,0.0295212,0.165893,0.28477,0.505603,0.537555,0.646003,0.0418392,0.294599,0.434379,0.370968,0.493067,0.480375,0.931148,0.531803,0.970124,0.102725,0.503313,0.264266,0.483305,0.624011,0.637143,0.205352,0.513408,0.241177,0.0717809,0.890043,0.466883,0.826641,0.575138,0.688622,0.259899,0.800488,0.437085,0.819252,0.564036,0.418536,0.550726,0.584993,0.956559,0.99479,0.992412,0.736218,0.857529,0.0571222,0.874473,0.779444,0.913711,0.558733,0.947919,0.299342,0.65299,0.186651,0.0419927,0.149395,0.765968,0.626284,0.501203,0.272402,0.731862,0.950651,0.12499,0.608266,0.901216,0.875343,0.795398,0.694737,0.774583,0.253816,0.142315,0.995547,0.739987,0.413237,0.484795,0.150535,0.621792,0.196535,0.851434,0.196716,0.273275,0.749636,0.255833,0.217535,0.252622,0.243814,0.487754,0.518732,0.245273,0.135737,0.0714568,0.252126,0.989987,0.984536,0.174021,0.952772,0.577226,0.315831,0.417094,0.115353,0.378054,0.12429,0.945774,0.222822,0.427301,0.108161,0.578216,0.591754,0.655879,0.252864,0.115174,0.565788,0.022194,0.336903,0.0932728,0.961284,0.0952858,0.731011,0.278519,0.60366,0.865756,0.838009,0.901884,0.178661,0.299155,0.0108626,0.0563064,0.550679,0.979516,0.100198,0.911806,0.332855,0.820034,0.352305,0.156679,0.671692,0.518598,0.270901,0.460951,0.847415,0.0399896,0.972044,0.784916,0.921615,0.24801,0.973898,0.752366,0.319106,0.418948,0.166664,0.81385,0.633886,0.684184,0.923339,0.547462,0.997978,0.137187,0.705179,0.544336,0.517071,0.551151,0.0706154,0.0666342,0.747261,0.38509,0.551246,0.790251,0.24722,0.920909,0.23836,0.277759,0.650385,0.0508548,0.691022,0.369094,0.785436,0.491107,0.268028,0.184887,0.650675,0.898417,0.321953,0.529927,0.788552,0.413861,0.597599,0.466233,0.200052,0.629089,0.702724,0.526219,0.411637,0.44931,0.599533,0.573516,0.720127,0.453982,0.0845028,0.385632,0.202858,0.132041,0.148485,0.234417,0.412694,0.226706,0.991747,0.49423,0.348373,0.106245,0.864353,0.465195,0.127733,0.30111,0.943338,0.618745,0.837679,|0.898237,0.966129,0.34275,0.244266,0.496053,0.462425,0.440389,0.251711,0.357156,0.24632,0.81595,0.251594,0.731607,0.224811,0.0648077,0.619399,0.614349,0.797815,0.385537,0.836024,0.684716,0.540966,0.252836,0.446056,0.449805,0.189365,0.176099,0.887062,0.291356,0.153234,0.311593,0.0282375,0.689271,0.766044,0.0864166,0.255464,0.116546,0.114565,0.831755,0.105917,0.180506,0.158472,0.15742,0.916642,0.931452,0.167771,0.177336,0.88935,0.731921,0.301316,0.994799,0.526686,0.662112,0.00690711,0.503926,0.177775,0.939133,0.447412,0.667996,0.994001,0.429824,0.378929,0.915859,0.773843,0.0323416,0.935124,0.0508171,0.6549,0.03639,0.202034,0.30867,0.131216,0.685279,0.251988,0.807128,0.470679,0.848344,0.524055,0.1019,0.258294,0.809331,0.778148,0.80021,0.462723,0.306936,0.940227,0.102285,0.915722,0.608249,6.77705e-05,0.287143,0.705775,0.778115,0.276825,0.37686,0.651128,0.492324,0.334411,0.895383,0.793635,0.555334,0.818159,0.0540721,0.205092,0.722594,0.502075,0.781961,0.140681,0.52801,0.931396,0.911379,0.984076,0.370352,0.286957,0.108149,0.146063,0.394775,0.968761,0.270889,0.632928,0.124968,0.458349,0.315887,0.940892,0.639929,0.768932,0.376432,0.864607,0.422269,0.59398,0.517904,0.921569,0.622139,0.807173,0.698012,0.305549,0.160174,0.123981,0.909995,0.271772,0.662812,0.664492,0.658788,0.311058,0.718997,0.454203,0.734818,0.641998,0.694135,0.14156,0.503065,0.820727,0.0404892,0.704928,0.293141,0.159705,0.675087,0.425091,0.760806,0.165337,0.141492,0.457021,0.416317,0.945169,0.322519,0.62277,0.721663,0.956706,0.534808,0.601011,0.890584,0.601848,0.126712,0.0978189,0.622471,0.856685,0.783505,0.291559,0.833439,0.279472,0.840592,0.775763,0.994137,0.891224,0.0250233,0.429586,0.912448,0.987124,0.201996,0.00634915,0.638435,0.436419,0.98849,0.0757896,0.45798,0.286806,0.17643,0.0514994,0.0956656,0.590412,0.683745,0.839618,0.548225,0.588925,0.187412,0.0769409,0.244289,0.919658,0.517857,0.408176,0.231611,0.660001,0.0674733,0.596039,0.900031,0.833159,0.703462,0.339488,0.527506,0.372265,0.817282,0.171197,0.810768,0.0593835,0.838129,0.181917,0.565495,0.0210707,0.0407539,0.793685,0.261575,0.688787,0.932879,0.60195,0.0496535,0.446025,0.351467,0.291111,0.478713,0.830953,0.236633,0.165135,0.39542,0.534744,0.718107,0.597687,0.615162,0.542932,0.986981,0.664326,0.920607,0.0490556,0.150891,0.190541,0.462743,0.0151948,0.841747,0.730032,0.394582,0.143724,0.898622,0.388472,0.568301,0.0484843,0.690239,0.911517,0.23535,0.534543,0.753579,0.843163,0.103868,0.80887,0.267166,0.376033,0.148655,0.305197,0.106875,0.855181,0.168332,0.548898,0.325046,0.0766135,0.345411,0.264298,0.932878,0.773381,0.918595,0.559479,0.949102,0.57208,0.443425,0.90143,0.542817,0.949241,0.681681,0.0362707,0.904257,0.460936,0.0698573,0.576036,0.423321,0.483446,0.566424,0.713403,0.0483466,0.876198,0.719959,0.630713,0.250478,0.553304,0.145747,0.520501,0.656469,0.853309,0.00973678,0.975549,0.428301,0.988341,0.871805,0.358764,0.896448,0.899269,0.37993,0.327081,0.463107,0.543258,0.612446,0.693538,0.301904,0.917863,0.704461,0.434966,0.230781,0.672966,0.456886,0.82373,0.747139,0.103645,0.657958,0.52621,0.676472,0.875311,0.91136,0.890206,0.629031,0.0942143,0.756934,0.024415,0.646115,0.999781,0.752036,0.915993,0.555744,0.18454,0.705285,0.838949,0.477483,0.478767,0.0798382,0.523342,0.890495,0.0711824,0.675408,0.209952,0.67594,0.948129,0.263823,0.603113,0.762303,0.479745,0.521577,0.188313,0.622084,0.420208,0.833135,0.328476,0.153248,0.988745,0.527347,0.0151385,0.328724,0.106375,0.0312055,0.0139955,0.600023,0.444267,0.615334,0.723715,0.950112,0.194881,0.353434,0.261616,0.951225,0.996102,0.581221,0.246877,0.279016,0.0206221,0.72175,0.0981222,0.155265,0.838188,0.243056,0.25148,0.27118,0.581997,0.86183,0.504136,0.801227,0.681781,0.140667,0.348855,0.262047,0.878187,0.726542,0.51205,0.36667,0.998947,0.601733,0.477647,0.0522056,0.420155,0.978747,0.21634,0.0853497,0.786504,0.143158,0.769506,0.423893,0.934717,0.587601,0.873947,0.416699,0.184592,0.561374,0.342735,0.0494806,0.224964,0.790067,0.627522,0.681814,0.721868,0.173076,0.405757,0.948041,0.582315,0.0634723,0.601219,0.362852,0.126334,0.135766,0.484632,0.278246,0.250071,0.97062,0.660922,0.257293,0.164344,0.86628,0.438927,0.744201,0.233884,0.0980573,0.58341,0.948792,0.736033,0.505719,0.212765,0.700571,0.0102458,0.0302355,0.0801705,0.402382,0.982219,0.074699,0.836976,0.203655,0.707913,0.445324,0.33482,0.498693,0.568233,0.0274947,0.531302,0.246688,0.693586,0.172328,0.758943,0.748486,0.686616,0.513384,0.975715,0.433047,0.197692,0.741143,0.754303,0.32292,0.80422,0.833904,0.900033,0.998131,0.536701,0.796717,0.115696,0.675001,0.00157857,0.592065,0.0354467,0.553698,0.632817,0.496204,0.177424,0.806191,0.48908,0.11223,0.425425,0.778217,0.270941,0.357003,0.181179,0.156172,0.519166,0.175993,0.344749,0.437843,0.281554,0.373084,0.135421,0.633313,0.935037,0.816242,0.832037,0.716355,0.832853,0.927742,0.454328,0.970479,0.696093,0.819852,0.409635,0.240388,0.331385,0.630336,0.473066,0.931439,0.882077,0.712065,0.453114,0.005952,0.815674,0.586705,0.936219,0.0397999,0.56975,0.866169,0.485163,0.999425,0.760944,0.696918,0.332735,0.993876,0.205709,0.0676995,0.623717,0.0957728,0.492923,0.938055,0.911846,0.537546,0.0264457,0.326951,0.32725,0.159973,0.325329,0.40717,0.102709,0.29589,0.464802,0.606955,0.0876307,0.983324,0.286383,0.30144,0.0701748,0.484951,0.219602,0.804228,0.522108,0.490717,0.5549,0.354471,0.0880018,0.652184,0.592405,0.839589,0.781407,0.169458,0.577679,0.309432,0.507205,0.924061,0.408549,0.735657,0.559587,0.0947722,0.165769,0.673007,0.537152,0.283127,0.421928,0.238693,0.549459,0.557578,0.167505,0.640589,0.0144451,0.0277274,0.786771,0.177254,0.90135,0.876693,0.348749,0.736145,0.932028,0.214815,0.349032,0.49828,0.5264,0.593079,0.850651,0.146114,0.523755,0.554795,0.546466,0.277302,0.268692,0.316179,0.584423,0.117921,0.337597,0.18903,0.36709,0.628871,0.770514,0.690433,0.799742,0.571582,0.249523,0.532168,0.0804173,0.50865,0.812543,0.592816,0.771638,0.137383,0.707377,0.579374,0.854872,0.0456427,0.415172,0.121725,0.114864,0.491792,0.431023,0.924469,0.185018,0.00806546,0.529618,0.389418,0.61527,0.438377,0.876094,0.875502,0.156831,0.814722,0.765928,0.466126,0.318111,0.871127,0.341107,0.279746,0.594427,0.1183,0.786183,0.226918,0.772569,0.540246,0.635955,0.194358,0.305158,0.404563,0.75833,0.159721,0.95275,0.782921,0.626866,0.0432927,0.0523173,0.919426,0.899494,0.958778,0.616383,0.383956,0.141979,0.600386,0.673979,0.575842,0.90282,0.592813,0.359527,0.178598,0.142931,0.186903,0.121537,0.169298,0.0760352,0.429109,0.90716,0.17368,0.884385,0.476587,0.337496,0.0464326,0.296814,0.142335,0.0902165,0.474497,0.502266,0.0813641,0.245597,0.275974,0.108267,0.581381,0.386739,0.965522,0.536973,0.622653,0.614925,0.505629,0.19328,0.943086,0.0907005,0.27672,0.621424,0.469709,0.505309,0.92724,0.354975,0.33017,0.723554,0.0348246,0.00514245,0.976771,0.0687485,0.691118,0.475759,0.577414,0.738965,0.980195,0.815625,0.669546,0.205173,0.238161,0.261915,0.934053,0.143829,0.700793,0.60971,0.871416,0.516814,0.890708,0.128084,0.753759,0.0988209,0.404532,0.255223,0.327366,0.611328,0.491099,0.746575,0.493297,0.798474,0.179283,0.229381,0.767017,0.654562,0.349321,0.610173,0.6981,0.302089,0.289158,0.193222,0.294981,0.72374,0.197071,0.0490306,0.818247,0.263702,0.440066,0.96278,0.989287,0.657475,0.978636,0.902784,0.434953,0.465158,0.874313,0.306306,0.914488,0.309655,0.982814,0.63468,0.738141,0.629012,0.27377,0.965815,0.947784,0.103996,0.782426,0.928145,0.878591,0.85114,0.231737,0.362568,0.319233,0.48544,0.733844,0.892947,0.731971,0.882611,0.538375,0.230492,0.621613,0.968215,0.95243,0.0651755,0.625927,0.798985,0.521718,0.0872127,0.758252,0.862533,0.808588,0.0376443,0.0290299,0.178192,0.161819,0.639896,0.969772,0.0900614,0.0248261,0.281208,0.845181,0.306218,0.44405,0.467002,0.161328,0.947736,0.882188,0.321985,0.0276925,0.490571,0.633908,0.515525,0.417306,0.141057,0.506486,0.669071,0.402603,0.311848,0.409007,0.40978,0.0585681,0.0240375,0.892102,0.709534,0.443555,0.0955034,0.12853,0.430293,0.229962,0.309681,0.320938,0.766201,0.14852,0.580636,0.521621,0.773782,0.358588,0.944885,0.0359178,0.288652,0.0595057,0.589746,0.550729,0.599363,0.0178109,0.104926,0.000346243,0.542405,0.501728,0.656019,0.413275,0.505177,0.603082,0.910267,0.118352,0.0461015,0.387839,0.506342,0.743377,0.522429,0.932729,0.661383,0.187036,0.289393,0.654671,0.551775,0.0995117,0.115948,0.44419,0.547221,0.812217,0.513242,0.265975,0.715683,0.969792,0.69804,0.643415,0.442831,0.217234,0.964468,0.527784,0.0166224,0.314026,0.250249,0.873376,0.58648,0.0611597,0.766203,0.491203,0.581508,0.523191,0.513793,0.349093,0.0258616,0.858704,0.967549,0.42967,0.49198,0.444028,0.281665,0.828629,0.910972,0.651825,0.836095,0.156809,0.112032,0.757258,0.297351,0.224325,0.96501,0.45184,0.713877,0.898195,0.611581,0.869876,0.534638,0.75568,0.817768,0.314982,0.080049,0.463131,0.84282,0.619051,0.115345,0.101411,0.40267,0.168451,0.791581,0.492883,0.471724,0.127715,0.393042,0.354074,0.605529,0.249798,0.186798,0.106446,0.986435,0.976416,0.201192,0.265469,0.641881,0.211309,0.412473,0.674613,0.91146,0.787674,0.0297908,|0.715575,0.423179,0.918654,0.383388,0.464534,0.402325,0.51799,0.347282,0.0336327,0.661605,0.896261,0.290742,0.521027,0.921561,0.954252,0.0569864,0.712917,0.440777,0.653835,0.890881,0.312385,0.15305,0.298039,0.0586727,0.157885,0.613524,0.788989,0.330067,0.736312,0.184677,0.855484,0.837074,0.961227,0.460735,0.429468,0.380683,0.427526,0.772181,0.154533,0.16408,0.7904,0.705961,0.385687,0.900699,0.266443,0.95105,0.766008,0.85393,0.700671,0.38341,0.805117,0.631177,0.879985,0.609179,0.756772,0.552915,0.374824,0.327974,0.472018,0.0239871,0.644828,0.244224,0.675509,0.307851,0.722365,0.0777826,0.698128,0.721284,0.396471,0.550232,0.855488,0.866246,0.0964525,0.764026,0.499335,0.98417,0.947375,0.38925,0.972095,0.173412,0.829102,0.111259,0.0449088,0.504791,0.290462,0.171976,0.474513,0.429732,0.490838,0.835097,0.989304,0.276066,0.0334515,0.825942,0.169203,0.936609,0.494415,0.113602,0.661163,0.377725,0.640728,0.432708,0.530807,0.414173,0.623769,0.221621,0.466228,0.976717,0.324235,0.434069,0.508609,0.407161,0.708633,0.548841,0.351743,0.439375,0.260311,0.704752,0.593699,0.0500186,0.0652992,0.841848,0.179755,0.275035,0.746827,0.530962,0.911227,0.758997,0.751182,0.700991,0.134741,0.122944,0.573191,0.186061,0.293109,0.492396,0.194148,0.896325,0.87194,0.863803,0.207636,0.765212,0.707723,0.7228,0.360493,0.383437,0.709736,0.952145,0.31869,0.780381,0.255213,0.919237,0.382839,0.764083,0.399685,0.598249,0.173268,0.26971,0.684668,0.900058,0.374778,0.763227,0.405905,0.49095,0.954744,0.832896,0.0295824,0.57906,0.547857,0.0507388,0.970361,0.618934,0.0066064,0.974004,0.456266,0.521605,0.477502,0.385419,0.272559,0.51709,0.477008,0.0234787,0.993131,0.528144,0.936777,0.703766,0.266407,0.490611,0.281696,0.585888,0.264716,0.139057,0.146223,0.181101,0.245133,0.406303,0.0357133,0.215324,0.41983,0.766846,0.331193,0.982754,0.734262,0.369149,0.162808,0.968745,0.1896,0.522378,0.98044,0.121756,0.906852,0.135285,0.0573402,0.0244291,0.137782,0.656445,0.485821,0.733454,0.848125,0.930886,0.435447,0.211426,0.277737,0.785879,0.450737,0.329453,0.505483,0.836645,0.0415771,0.211348,0.903095,0.927137,0.717268,0.570898,0.981043,0.541636,0.765746,0.696485,0.294936,0.757167,0.103839,0.864093,0.449424,0.825837,0.926047,0.365876,0.223259,0.757724,0.454489,0.838426,0.681953,0.349864,0.659252,0.599754,0.291507,0.0563694,0.142255,0.116287,0.142858,0.709692,0.616334,0.539859,0.205923,0.807444,0.46135,0.791364,0.99047,0.929943,0.390054,0.261044,0.979807,0.170354,0.354584,0.828187,0.282215,0.907437,0.34093,0.305055,0.592499,0.858675,0.920552,0.0555152,0.0895869,0.259453,0.576585,0.0534537,0.334521,0.752034,0.715922,0.788057,0.5558,0.192449,0.783885,0.789292,0.735904,0.351798,0.847268,0.0605766,0.998041,0.776363,0.610236,0.590979,0.0816236,0.0695345,0.121177,0.306666,0.921454,0.830545,0.776334,0.92774,0.265553,0.483263,0.949539,0.231106,0.640083,0.143347,0.270676,0.382825,0.489449,0.259675,0.811943,0.73753,0.697907,0.857747,0.286005,0.292719,0.980947,0.587459,0.135458,0.376586,0.0570392,0.956815,0.447476,0.554835,0.229567,0.592481,0.617563,0.518133,0.860258,0.327468,0.103883,0.768601,0.298507,0.638679,0.798446,0.253339,0.778308,0.440376,0.831022,0.100546,0.408311,0.143971,0.586921,0.667609,0.197161,0.716646,0.152535,0.71027,0.797288,0.481976,0.63038,0.813626,0.681133,0.764917,0.493062,0.492308,0.0764829,0.747925,0.286693,0.482112,0.961802,0.404071,0.107728,0.844107,0.278891,0.811216,0.580787,0.112831,0.837394,0.757702,0.0527835,0.966928,0.671386,0.140903,0.211812,0.472713,0.690572,0.451685,0.597826,0.999732,0.904625,0.835766,0.906308,0.443947,0.764844,0.796527,0.0634934,0.422073,0.110441,0.648312,0.367484,0.331223,0.376581,0.974595,0.290865,0.172197,0.992769,0.388455,0.411394,0.82626,0.393891,0.292904,0.443333,0.592687,0.279982,0.797738,0.664299,0.403237,0.964955,0.73055,0.762765,0.605612,0.374467,0.0708736,0.724866,0.023438,0.132831,0.783175,0.405199,0.457771,0.651965,0.26151,0.247467,0.674295,0.379792,0.284328,0.629159,0.15754,0.28638,0.779462,0.524427,0.32782,0.491033,0.586509,0.0495582,0.18856,0.872806,0.734092,0.0835207,0.523515,0.487519,0.0788755,0.829332,0.520085,0.172781,0.695818,0.0272009,0.753941,0.0794584,0.840726,0.616126,0.487924,0.150015,0.124892,0.765097,0.339266,0.42523,0.6787,0.549545,0.894914,0.345381,0.258809,0.633237,0.498606,0.0970232,0.497099,0.903612,0.435278,0.197388,0.660659,0.188759,0.52618,0.209199,0.0878267,0.577779,0.116046,0.679391,0.0506798,0.334898,0.296733,0.138285,0.0309154,0.0167106,0.215761,0.0430602,0.911289,0.862054,0.766067,0.696837,0.1418,0.154829,0.980607,0.205089,0.445692,0.135019,0.240045,0.973504,0.342273,0.0563914,0.192209,0.47624,0.372816,0.623992,0.0831497,0.797859,0.110569,0.401691,0.623912,0.958881,0.833728,0.55559,0.309126,0.367764,0.785088,0.196383,0.473634,0.278293,0.42123,0.481281,0.357549,0.801772,0.0406788,0.690225,0.750976,0.807011,0.626698,0.0745599,0.987014,0.298651,0.531218,0.141317,0.147946,0.0496745,0.0779574,0.615298,0.238439,0.663526,0.250467,0.233105,0.490373,0.165091,0.178972,0.117206,0.142288,0.470632,0.939983,0.902024,0.0843784,0.843509,0.289472,0.145245,0.301156,0.728695,0.953394,0.144784,0.00753391,0.80608,0.967588,0.78207,0.715825,0.152748,0.461324,0.827921,0.798272,0.382657,0.286144,0.837471,0.68625,0.143994,0.66833,0.155216,0.463936,0.939742,0.91571,0.778834,0.608807,0.467379,0.221498,0.605093,0.921531,0.104948,0.969887,0.610786,0.0886408,0.570285,0.946641,0.026403,0.714909,0.0591077,0.836162,0.222148,0.412793,0.784241,0.932284,0.0285214,0.029362,0.819104,0.9197,0.622537,0.604212,0.901602,0.0060879,0.0298325,0.712708,0.754446,0.508846,0.0945712,0.845171,0.861867,0.194611,0.719198,0.681794,0.615418,0.916165,0.769694,0.931817,0.549575,0.927385,0.0859867,0.197907,0.878602,0.458416,0.283625,0.646511,0.527774,0.229689,0.96464,0.633362,0.00852638,0.00298864,0.395161,0.0760399,0.343568,0.0489175,0.536171,0.333945,0.905227,0.0773917,0.834459,0.385544,0.409487,0.162555,0.589395,0.643314,0.76928,0.0388757,0.526691,0.0438499,0.407138,0.274348,0.612754,0.863881,0.74043,0.811272,0.85156,0.471463,0.817959,0.582284,0.309792,0.99078,0.0552005,0.841738,0.787963,0.642048,0.919438,0.539508,0.198372,0.769943,0.0229082,0.740029,0.566769,0.953481,0.248297,0.253166,0.240351,0.575854,0.28964,0.461189,0.406007,0.100113,0.581947,0.180034,0.69287,0.482638,0.647458,0.799524,0.876562,0.921657,0.0279057,0.20118,0.240788,0.169539,0.734397,0.807471,0.412654,0.27452,0.294288,0.793222,0.511496,0.63649,0.947672,0.110432,0.390232,0.422807,0.734771,0.847031,0.316703,0.00439167,0.792987,0.844503,0.13645,0.885041,0.754684,0.519923,0.161018,0.883634,0.21645,0.532073,0.11363,0.986249,0.857258,0.767221,0.896877,0.0238797,0.757368,0.309143,0.565424,0.619931,0.249293,0.47072,0.802164,0.688723,0.388262,0.194555,0.597531,0.328299,0.396047,0.486722,0.625987,0.351629,0.884423,0.557875,0.384887,0.181418,0.688722,0.0819685,0.731189,0.136166,0.445511,0.331802,0.338583,0.972744,0.878591,0.994485,0.214249,0.78718,0.850795,0.11071,0.567501,0.69467,0.940635,0.357246,0.577684,0.666869,0.557025,0.249303,0.456664,0.0558686,0.851201,0.883019,0.844819,0.638407,0.113213,0.446584,0.41502,0.603038,0.268733,0.747262,0.204582,0.306619,0.176952,0.194241,0.152478,0.493925,0.592857,0.498936,0.850654,0.701728,0.375332,0.147883,0.368069,0.528022,0.548069,0.0704826,0.648979,0.515375,0.168103,0.22321,0.384163,0.455515,0.887104,0.866307,0.0108965,0.710091,0.920907,0.431016,0.963651,0.656915,0.409063,0.259867,0.977775,0.196847,0.704072,0.414362,0.665363,0.0358273,0.871892,0.391598,0.971749,0.445092,0.200881,0.0322473,0.602819,0.996606,0.681711,0.412826,0.168466,0.230265,0.0800941,0.977547,0.342505,0.375168,0.147032,0.937395,0.589539,0.424301,0.725408,0.692735,0.274008,0.194558,0.798244,0.106894,0.950164,0.132438,0.979056,0.595132,0.0551435,0.230494,0.178362,0.96328,0.0553324,0.360598,0.277246,0.858777,0.8218,0.916592,0.350412,0.493794,0.0786169,0.249304,0.980714,0.78592,0.937504,0.12999,0.788114,0.706535,0.0926841,0.650551,0.208376,0.977871,0.798498,0.857485,0.142375,0.87087,0.408511,0.62901,0.25759,0.20792,0.560955,0.405976,0.66217,0.607074,0.658161,0.158027,0.21991,0.822682,0.671246,0.730522,0.931475,0.503258,0.640241,0.431432,0.722512,0.830136,0.784285,0.382908,0.594645,0.730696,0.608194,0.379397,0.426993,0.0971323,0.140543,0.326263,0.898727,0.249257,0.0989695,0.252794,0.461882,0.0430817,0.928678,0.384819,0.12398,0.158253,0.174824,0.537538,0.223355,0.0967444,0.954117,0.647417,0.651671,0.702659,0.98936,0.852487,0.261256,0.30433,0.519679,0.326067,0.953122,0.27082,0.814594,0.825131,0.230783,0.664308,0.404133,0.306678,0.947505,0.255819,0.0198708,0.218162,0.112349,0.271928,0.744015,0.654277,0.475326,0.549217,0.40747,0.351162,0.846881,0.808442,0.372937,0.884582,0.135139,0.590231,0.336287,0.770732,0.94439,0.425432,0.968616,0.83538,0.412005,0.906088,0.0515312,0.629484,0.12004,0.0909377,0.391306,0.438045,0.401473,0.263172,0.523606,0.896609,0.47104,0.0638696,0.31119,0.313323,0.0191411,0.462341,0.116332,0.686626,0.941509,0.3659,0.803151,0.233727,0.432343,0.997126,0.604939,0.890005,0.187918,0.255077,|0.584416,0.491491,0.250541,0.165073,0.0613695,0.00702822,0.070734,0.82764,0.563613,0.824476,0.976891,0.398538,0.873701,0.952707,0.608528,0.71579,0.807882,0.572254,0.666249,0.286647,0.255911,0.343653,0.766615,0.745239,0.954714,0.179737,0.622494,0.636588,0.427582,0.530963,0.55682,0.816322,0.35478,0.151042,0.70079,0.480684,0.577629,0.851995,0.119154,0.235962,0.983428,0.00916964,0.97423,0.812654,0.205664,0.612615,0.606915,0.641169,0.986952,0.602772,0.052878,0.0389423,0.737034,0.189843,0.924633,0.041028,0.940549,0.352778,0.724587,0.688622,0.400096,0.53456,0.850636,0.282535,0.517591,0.193555,0.316231,0.594935,0.147058,0.470183,0.415392,0.638576,0.0714982,0.385347,0.428688,0.58015,0.289116,0.0758675,0.549545,0.442663,0.439208,0.0426418,0.666262,0.924815,0.852768,0.972659,0.318019,0.151734,0.950444,0.772576,0.554737,0.272313,0.143632,0.921824,0.749804,0.802401,0.652984,0.694588,0.0286946,0.779782,0.148561,0.534069,0.498376,0.359339,0.566579,0.294123,0.131561,0.445515,0.999239,0.421499,0.605369,0.380647,0.362689,0.449838,0.613748,0.862712,0.723484,0.387659,0.490978,0.288075,0.700792,0.900293,0.214033,0.949996,0.815014,0.838109,0.847695,0.168336,0.744865,0.0449153,0.817151,0.518725,0.258834,0.670915,0.567703,0.868742,0.211459,0.22961,0.857974,0.778487,0.526282,0.35162,0.929455,0.64604,0.524639,0.103133,0.847527,0.980153,0.729417,0.762492,0.798028,0.454449,0.183015,0.916761,0.0211145,0.921976,0.711486,0.999353,0.696195,0.244426,0.331474,0.726543,0.735583,0.284836,0.190855,0.491607,0.782371,0.736532,0.857714,0.5294,0.76268,0.023067,0.511481,0.711557,0.661833,0.701016,0.206667,0.626121,0.933276,0.144214,0.920465,0.994944,0.680139,0.712816,0.107755,0.336309,0.652758,0.372379,0.42091,0.328336,0.573538,0.208261,0.773983,0.109584,0.827002,0.903168,0.764481,0.466625,0.071166,0.621849,0.141938,0.167804,0.0286217,0.695018,0.229423,0.059397,0.276524,0.0882704,0.539976,0.231124,0.779838,0.741532,0.638172,0.92136,0.82751,0.055389,0.639848,0.737939,0.34215,0.870416,0.582856,0.665638,0.142547,0.457082,0.136969,0.266311,0.942801,0.719481,0.0909105,0.0206384,0.388358,0.187366,0.993712,0.61806,0.768811,0.299347,0.670951,0.562783,0.139615,0.486791,0.941898,0.956532,0.691257,0.645013,0.379937,0.533817,0.382781,0.359817,0.137847,0.623981,0.680935,0.375036,0.919703,0.781241,0.438579,0.364678,0.952376,0.446123,0.106614,0.805078,0.595259,0.575786,0.306784,0.750543,0.340617,0.155649,0.110625,0.378763,0.291849,0.657773,0.413649,0.173862,0.601194,0.00693673,0.587278,0.758155,0.949624,0.66028,0.538991,0.552292,0.1262,0.510852,0.0737951,0.126173,0.477815,0.205808,0.281761,0.380927,0.555,0.413546,0.251735,0.996411,0.0967979,0.0167167,0.225208,0.87015,0.607615,0.254078,0.726643,0.595573,0.0837539,0.904776,0.962412,0.837074,0.669084,0.00252551,0.783169,0.401166,0.711468,0.859017,0.446179,0.520418,0.762996,0.945807,0.297727,0.511525,0.26609,0.575971,0.0260763,0.361039,0.320731,0.691353,0.430991,0.0436302,0.445831,0.077101,0.802615,0.829701,0.36328,0.92038,0.405646,0.720951,0.0717387,0.189051,0.441102,0.0752425,0.109829,0.299527,0.266502,0.267399,0.196471,0.944541,0.450314,0.568556,0.700336,0.0128615,0.989333,0.828815,0.383023,0.0207906,0.319973,0.987596,0.686829,0.663528,0.376762,0.821876,0.920421,0.997602,0.548722,0.686632,0.884723,0.358036,0.805384,0.973479,0.0705714,0.550426,0.695647,0.458111,0.0327612,0.619671,0.810034,0.611125,0.430985,0.551276,0.286974,0.244097,0.343261,0.313181,0.865043,0.414248,0.143425,0.441589,0.928764,0.843913,0.752651,0.254431,0.492823,0.917395,0.512205,0.754833,0.53721,0.593524,0.263233,0.0595802,0.0949911,0.204147,0.840264,0.172671,0.184723,0.625071,0.0693921,0.6968,0.957011,0.55771,0.210827,0.415823,0.239294,0.564718,0.279951,0.118081,0.712378,0.521318,0.0309145,0.900002,0.124942,0.885707,0.50716,0.746496,0.232266,0.748655,0.816655,0.918714,0.329403,0.327768,0.332468,0.723064,0.897287,0.686115,0.871467,0.413223,0.996568,0.0663958,0.157826,0.906739,0.104008,0.992876,0.208896,0.729257,0.560743,0.512056,0.815276,0.576817,0.862608,0.738535,0.809874,0.672641,0.781645,0.409914,0.905313,0.322099,0.861021,0.653895,0.670286,0.182179,0.748485,0.676148,0.767395,0.931049,0.27283,0.839577,0.759117,0.898512,0.550743,0.339076,0.432539,0.258956,0.901029,0.485293,0.698364,0.380961,0.556367,0.478773,0.861592,0.495538,0.96519,0.090952,0.811357,0.666348,0.869221,0.528153,0.586352,0.662419,0.420394,0.828359,0.0113884,0.728362,0.366543,0.149835,0.155475,0.845899,0.109156,0.248716,0.386671,0.00891054,0.843783,0.0421162,0.125139,0.253681,0.628319,0.663387,0.784107,0.693819,0.798857,0.181495,0.549646,0.684939,0.314622,0.429074,0.673181,0.85293,0.2578,0.398361,0.895955,0.885596,0.972404,0.579319,0.74161,0.820847,0.808988,0.342369,0.559342,0.293316,0.955118,0.957941,0.0731725,0.970398,0.41076,0.854671,0.0287133,0.586968,0.206076,0.628762,0.904848,0.997691,0.764536,0.91034,0.679036,0.990748,0.236627,0.603553,0.951203,0.908125,0.474096,0.977463,0.850712,0.0282946,0.731147,0.754153,0.415388,0.732341,0.868471,0.055984,0.245823,0.611676,0.304988,0.942385,0.800585,0.770712,0.941143,0.26204,0.489568,0.64483,0.59351,0.319949,0.898556,0.154152,0.416018,0.714468,0.262329,0.632498,0.332618,0.907768,0.414964,0.650976,0.627493,0.977743,0.916381,0.726727,0.839938,0.25858,0.9155,0.33681,0.309237,0.666108,0.339728,0.226052,0.894244,0.355176,0.280016,0.632413,0.0277205,0.329646,0.749105,0.0198588,0.446198,0.863863,0.0705904,0.0301559,0.606611,0.107157,0.178505,0.671512,0.137116,0.857903,0.533598,0.857058,0.721161,0.468604,0.421235,0.424028,0.801204,0.00342095,0.631574,0.65485,0.255542,0.538285,0.550008,0.0635455,0.294702,0.106221,0.794589,0.119571,0.728441,0.154623,0.814067,0.0620329,0.0709472,0.297465,0.825024,0.956922,0.0346195,0.903512,0.503764,0.20161,0.752217,0.539042,0.580982,0.366512,0.928466,0.393346,0.379152,0.45703,0.454269,0.18119,0.0148555,0.65952,0.176323,0.554792,0.393014,0.240487,0.953971,0.911521,0.906301,0.301283,0.43631,0.54879,0.284,0.631059,0.663541,0.996868,0.256965,0.0624858,0.425118,0.418657,0.126197,0.427258,0.867997,0.177191,0.777405,0.527134,0.0762364,0.932098,0.0403855,0.730688,0.473657,0.551702,0.474423,0.641296,0.0669733,0.857442,0.531036,0.211565,0.0871141,0.937151,0.557761,0.640671,0.326215,0.314898,0.369294,0.13097,0.811903,0.643099,0.644631,0.174251,0.371211,0.241013,0.613968,0.631869,0.895863,0.43103,0.0839722,0.162741,0.250717,0.595033,0.0383778,0.247995,0.85831,0.086755,0.19585,0.447515,0.225282,0.474704,0.655818,0.886933,0.501378,0.36007,0.0271692,0.238968,0.784425,0.759463,0.54133,0.190762,0.430544,0.771342,0.512462,0.153528,0.562201,0.335878,0.799386,0.173838,0.99986,0.106593,0.703495,0.128293,0.527937,0.799991,0.482472,0.623125,0.0859171,0.182049,0.178592,0.516563,0.188064,0.874827,0.571681,0.26158,0.404757,0.871557,0.63721,0.840741,0.512299,0.430177,0.506908,0.195603,0.434205,0.453778,0.88712,0.755853,0.565922,0.536653,0.766771,0.386385,0.376273,0.977016,0.089752,0.263421,0.131045,0.588625,0.0980899,0.019111,0.627401,0.0188011,0.0834017,0.482778,0.172096,0.411088,0.427067,0.0980229,0.791878,0.524275,0.842262,0.237985,0.165695,0.129152,0.259743,0.915716,0.870432,0.538518,0.865034,0.578278,0.836756,0.94257,0.299786,0.514006,0.740851,0.505426,0.62325,0.777154,0.382647,0.511717,0.636115,0.183737,0.899285,0.457554,0.0681863,0.24685,0.16766,0.246441,0.476491,0.826144,0.965579,0.92892,0.770971,0.981655,0.0380421,0.750677,0.545427,0.288836,0.284165,0.418037,0.0945113,0.962484,0.479658,0.104776,0.933016,0.00353801,0.799885,0.932351,0.465989,0.982016,0.586058,0.582442,0.711404,0.439375,0.258075,0.85363,0.579496,0.63803,0.242508,0.89167,0.753131,0.0667906,0.761278,0.381373,0.300607,0.695525,0.712342,0.402454,0.873331,0.504328,0.982465,0.341481,0.931251,0.185605,0.035777,0.876103,0.146639,0.475265,0.88158,0.130091,0.963791,0.233809,0.835691,0.180396,0.0567073,0.229395,0.602163,0.706951,0.150527,0.77453,0.63805,0.790891,0.374341,0.929813,0.397535,0.0066008,0.276199,0.389542,0.837415,0.276075,0.586809,0.51502,0.331203,0.0624245,0.28338,0.9336,0.283923,0.862463,0.725933,0.934506,0.0212115,0.498252,0.351814,0.709292,0.261124,0.679187,0.820901,0.418737,0.16879,0.58421,0.437312,0.608608,0.408811,0.89975,0.529204,0.170486,0.234217,0.643129,0.851842,0.437892,0.903787,0.745021,0.781113,0.744242,0.867637,0.171096,0.738543,0.167191,0.282275,0.579632,0.678993,0.963064,0.849477,0.071806,0.604767,0.575119,0.281191,0.710762,0.30652,0.830935,0.139659,0.61334,0.592585,0.418546,0.606338,0.900228,0.544802,0.853441,0.702952,0.225345,0.947443,0.604358,0.602856,0.734767,0.903492,0.48847,0.337353,0.487756,0.0992671,0.26199,0.704567,0.785578,0.0256128,0.874367,0.439349,0.346837,0.387688,0.107143,0.625567,0.642107,0.423931,0.392954,0.0272706,0.399081,0.107843,0.311357,0.288522,0.971853,0.730747,0.546886,0.120906,0.356929,0.396839,0.31255,0.527076,0.963029,0.789723,0.501869,0.735573,0.890729,0.464475,0.448309,0.16425,0.227325,0.0270419,0.177086,0.701683,0.281342,0.695114,0.312605,0.415019,0.316401,0.85012,0.998296,0.702067,0.0633091,0.415291,0.532494,0.167063,0.373266,|0.0959132,0.46175,0.68965,0.849966,0.896319,0.254708,0.125206,0.490989,0.789781,0.0365843,0.777586,0.558703,0.189243,0.786176,0.0307913,0.454619,0.665695,0.167302,0.517554,0.74953,0.672695,0.851626,0.452672,0.509035,0.33183,0.0469877,0.587207,0.491705,0.928019,0.920465,0.553305,0.492214,0.781142,0.734461,0.979356,0.862122,0.680853,0.655605,0.987319,0.659121,0.806856,0.47992,0.957253,0.435345,0.545991,0.91273,0.593527,0.897764,0.641774,0.83972,0.407288,0.924861,0.0184695,0.550412,0.829499,0.0819101,0.109191,0.126734,0.975057,0.887717,0.809702,0.234635,0.0508761,0.987452,0.66645,0.888572,0.664243,0.797637,0.753262,0.706737,0.667752,0.567957,0.736771,0.923007,0.959744,0.861594,0.838795,0.800382,0.322056,0.985899,0.550815,0.428866,0.939136,0.0914651,0.0427094,0.675126,0.577336,0.59602,0.136243,0.557376,0.445624,0.669148,0.870768,0.863302,0.216327,0.0861169,0.729232,0.611486,0.599804,0.240309,0.283536,0.378766,0.192014,0.312956,0.951208,0.261769,0.450976,0.809613,0.179026,0.309866,0.0549124,0.901135,0.563001,0.77806,0.728684,0.324688,0.757739,0.929439,0.592341,0.373621,0.109919,0.668519,0.368259,0.497939,0.268197,0.048766,0.193186,0.907556,0.138201,0.200916,0.42609,0.662645,0.19605,0.851497,0.235443,0.581159,0.92398,0.377729,0.219369,0.0654011,0.503716,0.132097,0.929395,0.162018,0.782657,0.765514,0.939427,0.623994,0.0550047,0.986605,0.767761,0.293041,0.489123,0.355911,0.0730182,0.400624,0.457529,0.755237,0.484443,0.879864,0.258677,0.451162,0.886349,0.486644,0.0132401,0.592798,0.769513,0.470197,0.675796,0.471258,0.764067,0.00802869,0.257493,0.288227,0.613274,0.599256,0.153386,0.998173,0.30716,0.997063,0.701071,0.848724,0.71319,0.32165,0.617294,0.159027,0.770547,0.529206,0.713496,0.655194,0.141557,0.996332,0.900443,0.937997,0.529283,0.149792,0.109705,0.0660039,0.162972,0.292967,0.935096,0.0726923,0.202928,0.49851,0.0303297,0.0897779,0.496043,0.454611,0.638238,0.717556,0.599253,0.993212,0.252686,0.89298,0.106872,0.908291,0.531926,0.941023,0.548669,0.559017,0.460432,0.611298,0.776379,0.136651,0.641299,0.92928,0.33126,0.173615,0.851368,0.080605,0.0942412,0.572603,0.0305108,0.816584,0.565984,0.406533,0.226799,0.890607,0.666817,0.0934724,0.479625,0.733727,0.450343,0.508988,0.00256366,0.573902,0.776897,0.501433,0.177402,0.916023,0.123445,0.540527,0.526882,0.218404,0.438217,0.106016,0.917501,0.880103,0.494904,0.429427,0.904371,0.582655,0.299315,0.612098,0.277838,0.0433753,0.100847,0.739861,0.732661,0.0736614,0.980541,0.645884,0.634107,0.247437,0.816106,0.793716,0.0762076,0.0167834,0.543648,0.281956,0.587259,0.740396,0.908432,0.411873,0.58781,0.267026,0.30138,0.579576,0.527507,0.683028,0.637895,0.710129,0.323915,0.454018,0.0614526,0.277836,0.685424,0.535215,0.0870551,0.488619,0.392018,0.257217,0.99257,0.730393,0.606935,0.872875,0.0493175,0.830087,0.592317,0.164708,0.103607,0.0907353,0.518904,0.753582,0.830954,0.0856646,0.668355,0.0373544,0.007146,0.171047,0.588476,0.0843737,0.372134,0.968981,0.621126,0.832619,0.387144,0.937788,0.357692,0.875585,0.290483,0.212853,0.503424,0.148066,0.606395,0.851066,0.598493,0.802774,0.377508,0.148569,0.880233,0.675046,0.572573,0.268888,0.819082,0.854047,0.237675,0.989911,0.988562,0.908785,0.8606,0.971669,0.352098,0.817898,0.163929,0.874742,0.112626,0.318063,0.653253,0.981068,0.896624,0.787285,0.897005,0.405182,0.807655,0.873915,0.643806,0.525612,0.907913,0.114338,0.822125,0.632411,0.239931,0.854659,0.174113,0.580529,0.0021953,0.881193,0.359309,0.216173,0.681183,0.403342,0.330894,0.416965,0.521872,0.00523645,0.314833,0.715936,0.275778,0.176301,0.893363,0.819908,0.58552,0.471579,0.343823,0.808313,0.659504,0.455004,0.70606,0.209774,0.219222,0.0788749,0.138395,0.225466,0.237081,0.776521,0.571938,0.181478,0.908689,0.00011301,0.583085,0.577044,0.582181,0.234492,0.420841,0.559885,0.917572,0.0731825,0.87206,0.568824,0.651319,0.442996,0.282134,0.139113,0.840858,0.554374,0.170121,0.208345,0.246466,0.109627,0.105951,0.950792,0.0522327,0.0549452,0.988737,0.412281,0.5615,0.41256,0.435972,0.0405971,0.370533,0.521722,0.514175,0.00373054,0.877405,0.985045,0.00362885,0.0674779,0.265352,0.213164,0.468601,0.219316,0.905636,0.0149891,0.0834956,0.834152,0.221818,0.0704798,0.738148,0.825739,0.859409,0.857948,0.877262,0.500431,0.33748,0.624839,0.798944,0.939157,0.600612,0.0484106,0.422267,0.459707,0.656843,0.891545,0.96701,0.99975,0.395397,0.446037,0.783588,0.0899656,0.39942,0.536817,0.108765,0.183853,0.552938,0.464795,0.0958047,0.633129,0.652335,0.852675,0.892656,0.813389,0.473222,0.807902,0.0990102,0.893478,0.397415,0.289804,0.519499,0.669696,0.930256,0.101899,0.244444,0.918033,0.375893,0.816552,0.614377,0.0260581,0.412888,0.194647,0.00772321,0.669818,0.495669,0.757131,0.846576,0.608806,0.918551,0.155087,0.907927,0.271298,0.778204,0.104523,0.311287,0.748419,0.52896,0.514269,0.510306,0.863326,0.925025,0.956639,0.670597,0.126387,0.678845,0.898492,0.489428,0.178476,0.396815,0.913642,0.990339,0.463561,0.881135,0.0609832,0.525137,0.200748,0.490521,0.909393,0.901369,0.776362,0.655806,0.8903,0.51457,0.778089,0.825911,0.464886,0.205146,0.0406811,0.83167,0.155219,0.523353,0.52394,0.941975,0.0211441,0.519443,0.598393,0.6835,0.644243,0.775663,0.160588,0.849045,0.444451,0.447562,0.074277,0.355241,0.663544,0.472043,0.323837,0.58155,0.923225,0.42014,0.571293,0.820099,0.137287,0.343536,0.216745,0.277264,0.889999,0.307059,0.346619,0.326069,0.754171,0.411901,0.994635,0.834337,0.821927,0.27772,0.755154,0.715134,0.539523,0.421003,0.300562,0.499598,0.277635,0.65411,0.603151,0.0933766,0.277764,0.724367,0.429776,0.747934,0.957646,0.961672,0.977154,0.802545,0.239995,0.320028,0.503409,0.182016,0.53268,0.530506,0.225374,0.104531,0.332513,0.172587,0.919866,0.050868,0.99832,0.206876,0.815906,0.952644,0.363244,0.388757,0.279074,0.872632,0.120492,0.430367,0.00592703,0.0247726,0.71503,0.719577,0.382902,0.578978,0.917219,0.49447,0.910639,0.266884,0.960381,0.722792,0.187967,0.417273,0.993596,0.969609,0.605893,0.574567,0.601029,0.501627,0.638823,0.768333,0.927208,0.683101,0.218678,0.604115,0.964353,0.581908,0.391494,0.54277,0.116908,0.837118,0.0725861,0.775702,0.805644,0.150439,0.400919,0.270129,0.545004,0.177804,0.077946,0.668064,0.331091,0.897635,0.437221,0.836094,0.81555,0.558406,0.54673,0.742549,0.0647732,0.911574,0.417399,0.698159,0.0470111,0.267029,0.070365,0.516794,0.592665,0.0672753,0.185885,0.361803,0.464889,0.21076,0.99233,0.620145,0.953117,0.431427,0.490666,0.277718,0.99262,0.634649,0.580818,0.359253,0.397841,0.980363,0.184444,0.875314,0.879742,0.0583867,0.968595,0.794719,0.87476,0.35175,0.0369494,0.052945,0.987745,0.976459,0.182358,0.781799,0.312803,0.63991,0.182793,0.367496,0.513129,0.162306,0.607386,0.430171,0.746849,0.310198,0.442713,0.668356,0.459592,0.00355285,0.977854,0.0326157,0.981817,0.711583,0.922339,0.880651,0.646798,0.869863,0.040249,0.803957,0.132708,0.640225,0.955953,0.22924,0.621345,0.0390636,0.801854,0.813562,0.0135475,0.709746,0.693492,0.0339745,0.426058,0.018258,0.000157416,0.0213086,0.998822,0.205323,0.88319,0.534101,0.335818,0.0697674,0.489756,0.177726,0.497431,0.821165,0.416226,0.417695,0.405583,0.961904,0.103061,0.838517,0.181022,0.380605,0.773425,0.400529,0.921764,0.557347,0.969468,0.310039,0.16115,0.421739,0.94807,0.719582,0.401492,0.865567,0.956631,0.267603,0.229028,0.175934,0.344213,0.232651,0.689796,0.198459,0.128659,0.778457,0.695871,0.765392,0.578819,0.194993,0.972991,0.0625121,0.215326,0.0669168,0.0911903,0.395031,0.761902,0.691207,0.137811,0.956599,0.285152,0.262822,0.207734,0.956515,0.605404,0.904014,0.579211,0.0435798,0.821351,0.107637,0.506658,0.872611,0.751941,0.635707,0.892979,0.833178,0.518756,0.171513,0.795478,0.0467178,0.716499,0.0905642,0.551627,0.935023,0.592137,0.0702674,0.757011,0.690631,0.543978,0.070474,0.627982,0.0966325,0.220561,0.155613,0.334047,0.146189,0.00504351,0.945352,0.919316,0.624915,0.70733,0.929037,0.361429,0.834142,0.155879,0.607426,0.344711,0.865882,0.360347,0.123209,0.782479,0.763097,0.68301,0.162037,0.413897,0.857136,0.558474,0.0041461,0.550466,0.941474,0.107977,0.505591,0.563634,0.930637,0.488326,0.819623,0.237835,0.355818,0.645506,0.226863,0.765793,0.0174726,0.0211619,0.233313,0.903715,0.512795,0.872545,0.360218,0.320334,0.255698,0.98525,0.475616,0.0962483,0.761318,0.703716,0.39996,0.00300765,0.190128,0.981592,0.44778,0.252188,0.362828,0.420269,0.973454,0.633829,0.910511,0.604307,0.214546,0.0756146,0.158883,0.116521,0.868865,0.273542,0.433179,0.622941,0.624551,0.554881,0.406336,0.278738,0.783661,0.921313,0.576022,0.864511,0.153054,0.539388,0.220734,0.309924,0.91287,0.178313,0.391911,0.18165,0.799157,0.334423,0.79864,0.190537,0.980322,0.160984,0.372452,0.412201,0.425104,0.0952402,0.460318,0.380629,0.549706,0.960092,0.763492,0.40016,0.774883,0.576096,0.499464,0.33112,0.181141,0.555388,0.294649,0.115121,0.962958,0.274011,0.0932724,0.716737,0.00273836,0.524025,0.495535,0.461508,0.748735,0.907235,0.558784,0.265434,0.492314,0.0446679,0.357229,0.381041,0.719595,0.880125,0.248619,0.0437192,0.381822,0.411189,0.205365,0.724636,0.553226,0.221388,0.888053,0.559946,0.455879,0.676543,0.0261332,0.627558,0.982239,0.875464,0.298576,0.852253,|0.774769,0.374536,0.251271,0.607575,0.483016,0.895901,0.256049,0.591049,0.0598333,0.158223,0.950673,0.278476,0.451549,0.873043,0.0331523,0.350536,0.148992,0.909137,0.123307,0.215927,0.0341054,0.746403,0.162724,0.409384,0.474578,0.905128,0.0376427,0.855209,0.753388,0.121761,0.642166,0.440815,0.796381,0.512184,0.486639,0.216206,0.358531,0.763174,0.0272552,0.0370584,0.893241,0.727247,0.0418896,0.294207,0.101053,0.8619,0.503811,0.453543,0.477046,0.35468,0.0994309,0.334082,0.31559,0.347874,0.708113,0.399524,0.403577,0.918106,0.254559,0.610459,0.45745,0.178297,0.274039,0.253135,0.196997,0.516057,0.639763,0.491919,0.341453,0.977159,0.644109,0.297607,0.843345,0.550894,0.148951,0.146978,0.66597,0.641394,0.121663,0.731568,0.197278,0.17132,0.762949,0.672881,0.0834298,0.0430967,0.855684,0.349778,0.300107,0.79649,0.569033,0.577976,0.740614,0.412197,0.183208,0.0437539,0.119535,0.944707,0.401333,0.128373,0.999561,0.993241,0.616812,0.173621,0.992986,0.608444,0.347973,0.719988,0.121344,0.433266,0.267834,0.367006,0.930835,0.955799,0.589871,0.847352,0.977326,0.0794967,0.816952,0.754184,0.689735,0.945205,0.0770899,0.287929,0.41242,0.613456,0.214612,0.401806,0.148654,0.382867,0.0458065,0.994595,0.943029,0.654812,0.665391,0.241308,0.0449337,0.398202,0.0480424,0.426184,0.219291,0.579891,0.150788,0.187039,0.208128,0.55061,0.504504,0.156103,0.593537,0.144454,0.0595641,0.0673388,0.382228,0.275986,0.127331,0.340522,0.0298069,0.716679,0.998285,0.488198,0.483782,0.185465,0.579796,0.0597081,0.18111,0.0933095,0.798063,0.496635,0.468293,0.0397729,0.235685,0.602541,0.834703,0.446858,0.0832199,0.195128,0.709413,0.878794,0.660408,0.526132,0.90329,0.426071,0.874147,0.993902,0.0861244,0.986347,0.588985,0.156417,0.103403,0.950506,0.95984,0.699864,0.113453,0.72471,0.904227,0.452226,0.00559074,0.346715,0.572448,0.54359,0.672083,0.717723,0.897393,0.724413,0.637808,0.572344,0.173051,0.157851,0.144597,0.804768,0.245299,0.802389,0.850596,0.218094,0.688869,0.914289,0.328094,0.185297,0.0811906,0.0862463,0.391838,0.121459,0.660325,0.480709,0.267684,0.0308515,0.545749,0.58331,0.108876,0.126296,0.367303,0.302268,0.90238,0.255861,0.614139,0.809118,0.89921,0.0271471,0.34311,0.106778,0.272066,0.537526,0.0342009,0.401253,0.252759,0.497638,0.928919,0.907848,0.710265,0.406681,0.492414,0.594779,0.895259,0.606005,0.46103,0.413311,0.184819,0.29379,0.534016,0.0147676,0.497115,0.678275,0.249089,0.490168,0.701418,0.0937507,0.837093,0.982475,0.893534,0.547652,0.417134,0.229609,0.384621,0.414327,0.791846,0.722021,0.710225,0.665754,0.56004,0.366674,0.652761,0.56924,0.823764,0.327302,0.703836,0.212463,0.272911,0.35131,0.295401,0.271404,0.595917,0.790639,0.112363,0.89074,0.509137,0.400029,0.877051,0.473316,0.413154,0.198736,0.960126,0.112157,0.0790961,0.165495,0.257274,0.191257,0.0373026,0.560299,0.628058,0.567407,0.0264019,0.24332,0.695331,0.855815,0.788969,0.497239,0.735699,0.883019,0.419655,0.754621,0.607824,0.557715,0.402857,0.0286011,0.569189,0.343501,0.556451,0.482989,0.143035,0.399553,0.813229,0.253052,0.956708,0.0637488,0.663254,0.159845,0.388295,0.773241,0.579634,0.071128,0.204912,0.924033,0.708099,0.329006,0.512504,0.312178,0.951242,0.950198,0.484197,0.515627,0.543459,0.131433,0.90234,0.636493,0.823955,0.67726,0.206573,0.354965,0.0750899,0.650596,0.983906,0.548706,0.263353,0.983581,0.95088,0.311025,0.502711,0.70009,0.521211,0.49694,0.858969,0.123735,0.730224,0.530444,0.325511,0.965067,0.90011,0.957816,0.0563962,0.483112,0.72841,0.853835,0.635397,0.232872,0.664171,0.273974,0.370578,0.589264,0.488642,0.962102,0.851734,0.399189,0.22903,0.92183,0.768034,0.733693,0.278023,0.105034,0.439891,0.743725,0.95805,0.256793,0.163824,0.468278,0.479596,0.520457,0.304354,0.878146,0.810897,0.710966,0.883261,0.321762,0.686836,0.106737,0.198954,0.330212,0.480676,0.968431,0.535589,0.308113,0.742876,0.587049,0.630957,0.366815,0.204776,0.139138,0.283101,0.866523,0.575016,0.812727,0.0303768,0.754486,0.338434,0.0477515,0.978612,0.453541,0.0189966,0.104659,0.96895,0.413877,0.495211,0.315429,0.276817,0.526947,0.572305,0.576371,0.911073,0.884152,0.869135,0.308089,0.498523,0.785171,0.323124,0.701452,0.271291,0.994219,0.400709,0.113526,0.968332,0.961189,0.0864416,0.950289,0.0490803,0.772789,0.275795,0.367635,0.805691,0.971602,0.942857,0.434179,0.408256,0.178587,0.736851,0.380348,0.637327,0.298333,0.225517,0.0722939,0.715532,0.101976,0.711254,0.34452,0.601132,0.210965,0.90819,0.215755,0.666212,0.222764,0.165437,0.297261,0.115035,0.0146348,0.0803496,0.108903,0.545581,0.0512493,0.33651,0.943161,0.668651,0.212247,0.309224,0.118551,0.86746,0.649833,0.576822,0.222014,0.469904,0.546145,0.882377,0.823683,0.681948,0.205957,0.554765,0.765028,0.486228,0.010735,0.46298,0.221028,0.307721,0.988846,0.0667959,0.155078,0.422779,0.382535,0.0979433,0.436784,0.654998,0.647615,0.774069,0.187209,0.666153,0.448897,0.487195,0.542992,0.15505,0.861564,0.582512,0.380877,0.930326,0.415818,0.498425,0.0208222,0.57298,0.00995499,0.769212,0.0505916,0.895151,0.224184,0.328573,0.79408,0.530653,0.274025,0.402003,0.00419551,0.87628,0.911886,0.455093,0.810436,0.101232,0.157529,0.446512,0.761012,0.447836,0.081062,0.449981,0.0711633,0.0781343,0.872826,0.272469,0.176511,0.174224,0.79085,0.882602,0.623061,0.0740013,0.54938,0.306129,0.51235,0.357656,0.142775,0.192683,0.460104,0.28695,0.702682,0.974616,0.817051,0.382033,0.254263,0.09052,0.942325,0.616317,0.404208,0.54579,0.00867516,0.63874,0.805681,0.105855,0.838422,0.575256,0.35351,0.631412,0.908674,0.212095,0.59419,0.276853,0.813961,0.341225,0.183926,0.733642,0.61901,0.195112,0.662798,0.738853,0.716966,0.330995,0.430582,0.41501,0.34786,0.450952,0.0781164,0.0953735,0.308263,0.0551091,0.532329,0.109404,0.325366,0.138457,0.420404,0.972514,0.0939463,0.781629,0.0614486,0.604686,0.998052,0.929516,0.113961,0.139527,0.976431,0.55712,0.0163547,0.0653618,0.0545948,0.311706,0.926626,0.161992,0.655456,0.886919,0.871489,0.161273,0.606851,0.565224,0.470039,0.811933,0.0332528,0.173904,0.588801,0.42037,0.464247,0.792331,0.496157,0.0602465,0.188596,0.184836,0.0615169,0.944404,0.274669,0.3529,0.149742,0.482421,0.308946,0.740049,0.442807,0.0826284,0.501892,0.352551,0.867234,0.97147,0.380992,0.285592,0.700849,0.311263,0.242875,0.479419,0.816398,0.682116,0.202287,0.940008,0.920645,0.0782583,0.0105338,0.372181,0.347587,0.450346,0.655186,0.31059,0.45295,0.15012,0.361197,0.978369,0.351301,0.933433,0.729265,0.40972,0.45715,0.808026,0.269162,0.438593,0.164615,0.408005,0.93345,0.693986,0.220117,0.165131,0.204872,0.425715,0.432781,0.305369,0.0210852,0.30035,0.745763,0.373623,0.518061,0.314855,0.381724,0.30467,0.818597,0.489012,0.151312,0.20548,0.595717,0.802861,0.832654,0.151046,0.554994,0.117805,0.224417,0.801453,0.670992,0.754364,0.877314,0.462153,0.316766,0.971065,0.837576,0.712126,0.732934,0.333072,0.611766,0.0354059,0.57831,0.269212,0.860237,0.545938,0.577581,0.331815,0.512242,0.664499,0.517179,0.437962,0.428068,0.410434,0.367288,0.136531,0.298745,0.134321,0.131886,0.163316,0.181391,0.625029,0.920848,0.21034,0.291429,0.744114,0.477342,0.195411,0.203393,0.48481,0.550705,0.196276,0.820236,0.200485,0.325299,0.932048,0.221611,0.437896,0.575659,0.968884,0.0218288,0.249099,0.471496,0.786274,0.567427,0.0156842,0.087436,0.509395,0.0145476,0.848928,0.391126,0.791337,0.871847,0.145101,0.278591,0.372431,0.489428,0.22421,0.858692,0.137929,0.0567628,0.257325,0.640726,0.515741,0.805698,0.00375819,0.941631,0.336965,0.792528,0.0598422,0.268959,0.604172,0.197229,0.563707,0.696809,0.112196,0.982126,0.476597,0.308323,0.478795,0.37528,0.293617,0.738592,0.253385,0.484281,0.344133,0.0226955,0.701392,0.93205,0.975188,0.471562,0.763406,0.0744553,0.842599,0.834865,0.449694,0.914626,0.109512,0.351304,0.122591,0.734073,0.207394,0.558148,0.503418,0.429941,0.917937,0.309667,0.461485,0.775398,0.860167,0.867931,0.624666,0.591044,0.804708,0.184884,0.979344,0.703996,0.619229,0.288644,0.464684,0.730277,0.569858,0.75369,0.63754,0.366854,0.0916824,0.962706,0.881347,0.525458,0.425269,0.218638,0.34945,0.492426,0.753204,0.0595383,0.275282,0.647705,0.736549,0.200396,0.175219,0.609589,0.183801,0.3915,0.124206,0.718314,0.337837,0.665908,0.567058,0.114311,0.0896702,0.87217,0.613841,0.883719,0.459212,0.968583,0.259876,0.525364,0.319829,0.195804,0.555921,0.391976,0.647686,0.399063,0.734682,0.501768,0.823544,0.529813,0.568885,0.489422,0.29989,0.67399,0.52965,0.161954,0.95218,0.0624025,0.734575,0.251656,0.146043,0.397123,0.672918,0.953176,0.749329,0.797087,0.320377,0.355934,0.0938532,0.678331,0.947045,0.306185,0.191065,0.0126716,0.107389,0.927058,0.915922,0.342863,0.37196,0.906557,0.0255125,0.800265,0.492508,0.154427,0.768267,0.699834,0.292785,0.464163,0.266084,0.660229,0.270067,0.975024,0.393628,0.151007,0.857463,0.440408,0.848343,0.155478,0.153427,0.303344,0.592952,0.879901,0.0376979,0.285011,0.103864,0.271582,0.775719,0.81913,0.0209839,0.907428,0.201106,0.639734,0.0229893,0.674479,0.555781,0.633446,0.30314,0.814121,0.853991,0.582224,0.626228,0.944887,0.915831,0.950044,0.778148,0.971793,0.0905775,0.501837,0.882613,0.285851,0.218026,0.872097,0.893934,0.399647,0.0466465,0.635724,|0.11148,0.190083,0.179905,0.946484,0.246761,0.742391,0.250839,0.25592,0.6625,0.0780787,0.950705,0.0935366,0.86276,0.276424,0.295678,0.859433,0.325076,0.743369,0.242328,0.255867,0.174298,0.160711,0.618783,0.504049,0.566793,0.541472,0.362485,0.0271972,0.693939,0.73673,0.427192,0.919935,0.0910249,0.964572,0.322352,0.539135,0.87463,0.294626,0.118532,0.537431,0.251086,0.69568,0.784907,0.586277,0.66934,0.774695,0.199291,0.961293,0.721328,0.222234,0.745328,0.135188,0.697688,0.365723,0.871971,0.243167,0.31361,0.670916,0.0413269,0.306351,0.442076,0.649178,0.269003,0.000228822,0.56486,0.151416,0.135905,0.147039,0.961304,0.880768,0.157124,0.186353,0.000797033,0.333048,0.589248,0.806344,0.672959,0.564529,0.113482,0.0854458,0.20921,0.374126,0.940305,0.775712,0.0141153,0.650219,0.293751,0.261881,0.64112,0.759311,0.632793,0.172906,0.442257,0.557313,0.969844,0.168184,0.217107,0.794221,0.260132,0.226264,0.151531,0.507394,0.446526,0.943107,0.254638,0.262118,0.333282,0.96046,0.360628,0.228467,0.817342,0.041074,0.461134,0.84438,0.306548,0.803786,0.308498,0.458485,0.68104,0.407358,0.605715,0.562965,0.0786251,0.852717,0.141944,0.391495,0.504326,0.838524,0.233967,0.252617,0.427975,0.98425,0.263211,0.852223,0.922612,0.918238,0.0895808,0.183556,0.0999297,0.958144,0.771967,0.87515,0.999035,0.0969632,0.300217,0.256592,0.777508,0.375217,0.205947,0.592951,0.118749,0.387093,0.216123,0.831004,0.12565,0.54511,0.0550916,0.839402,0.201816,0.992568,0.924564,0.992217,0.686303,0.537739,0.581063,0.532801,0.133738,0.117108,0.684217,0.697502,0.991884,0.232263,0.352881,0.801744,0.658115,0.15937,0.879564,0.716766,0.422863,0.306807,0.588641,0.944292,0.316086,0.822683,0.125062,0.476958,0.613321,0.0335377,0.35135,0.721886,0.38401,0.695128,0.350702,0.8094,0.19316,0.0251431,0.375369,0.948371,0.724928,0.349957,0.24493,0.136314,0.143361,0.49821,0.0774338,0.856232,0.822371,0.766544,0.762532,0.0263702,0.848613,0.266351,0.847941,0.629765,0.424939,0.715769,0.468711,0.372725,0.372647,0.784019,0.967283,0.299215,0.830405,0.666887,0.993953,0.85811,0.423979,0.702673,0.766402,0.605843,0.222845,0.965945,0.0260266,0.712988,0.884502,0.461919,0.577232,0.280822,0.750744,0.527401,0.144349,0.567802,0.422922,0.589157,0.0500355,0.888653,0.502551,0.959956,0.956409,0.38515,0.43388,0.207455,0.740376,0.712311,0.102102,0.693192,0.358101,0.840087,0.686163,0.282687,0.0290301,0.353923,0.00724286,0.557101,0.16682,0.393191,0.133648,0.381643,0.208313,0.172951,0.450403,0.938983,0.915485,0.0167949,0.261468,0.884267,0.0931324,0.0746662,0.961962,0.96857,0.447957,0.987159,0.0286622,0.327553,0.311114,0.5799,0.659287,0.462333,0.470628,0.165186,0.122546,0.558667,0.591026,0.584362,0.782136,0.990618,0.845161,0.105412,0.229658,0.0598905,0.367475,0.0727581,0.536234,0.350829,0.897478,0.332517,0.287063,0.48916,0.64997,0.58098,0.537507,0.844447,0.323559,0.246386,0.213919,0.697606,0.696986,0.351859,0.0888962,0.882435,0.837357,0.639777,0.849913,0.893507,0.635924,0.560036,0.994253,0.178674,0.988508,0.523432,0.749136,0.462736,0.866351,0.448124,0.275851,0.0454153,0.464055,0.292295,0.269268,0.961775,0.121422,0.0358683,0.985287,0.477507,0.270156,0.331527,0.0124564,0.288311,0.891714,0.168097,0.925622,0.282933,0.952722,0.43276,0.686613,0.253999,0.988241,0.221572,0.00118369,0.0083757,0.475578,0.189334,0.344766,0.618713,0.348825,0.954618,0.797031,0.790982,0.499394,0.0323703,0.624937,0.0480506,0.978065,0.318618,0.862497,0.804335,0.455182,0.176,0.511112,0.8289,0.851077,0.109394,0.707425,0.0690824,0.466379,0.3265,0.451366,0.580735,0.753719,0.329014,0.704374,0.591496,0.135979,0.583461,0.747066,0.127477,0.987028,0.977336,0.232997,0.461143,0.471623,0.00174689,0.0407332,0.788702,0.168374,0.35728,0.183243,0.188475,0.600517,0.838203,0.326518,0.321338,0.491055,0.371937,0.867191,0.74421,0.617914,0.0774204,0.448561,0.861025,0.771379,0.53446,0.107325,0.580256,0.643849,0.735508,0.643035,0.0110381,0.591008,0.410627,0.514169,0.25271,0.0540035,0.474327,0.841009,0.127011,0.727613,0.106542,0.108542,0.706196,0.814577,0.975115,0.924522,0.802372,0.853689,0.705935,0.0576321,0.551616,0.885891,0.0457104,0.757027,0.911913,0.43214,0.861679,0.989129,0.934724,0.322848,0.805914,0.589941,0.419621,0.898459,0.940284,0.00347877,0.824062,0.0824723,0.30556,0.050864,0.920561,0.704289,0.188193,0.489847,0.529071,0.398374,0.261615,0.691446,0.0913059,0.596232,0.391782,0.708349,0.918261,0.729068,0.902922,0.804554,0.936937,0.833904,0.450143,0.441141,0.612233,0.526533,0.0863546,0.509828,0.705672,0.294477,0.652619,0.179401,0.345644,0.548396,0.461459,0.432353,0.0384405,0.902822,0.182344,0.199942,0.850924,0.548238,0.9336,0.43563,0.96099,0.538593,0.0217642,0.265682,0.846811,0.0617585,0.0853077,0.532539,0.122378,0.648336,0.608658,0.227021,0.94777,0.114145,0.380148,0.723432,0.908358,0.121794,0.73906,0.3923,0.320414,0.949138,0.878687,0.0649362,0.33593,0.140842,0.48292,0.940909,0.800776,0.639577,0.618793,0.830896,0.807463,0.545637,0.636014,0.484535,0.289585,0.431995,0.144313,0.142534,0.106176,0.941226,0.0417427,0.0100343,0.155665,0.577549,0.835541,0.427342,0.574721,0.86338,0.498903,0.454479,0.495425,0.0153859,0.463676,0.357142,0.844204,0.0906692,0.0353349,0.519386,0.710274,0.156804,0.414536,0.205678,0.950951,0.955571,0.171284,0.88698,0.988903,0.256114,0.982878,0.460318,0.531073,0.62089,0.675287,0.25411,0.488964,0.63112,0.440569,0.767826,0.0308588,0.0344357,0.744437,0.994795,0.406431,0.740389,0.480754,0.355931,0.988605,0.814281,0.573129,0.652438,0.300317,0.435425,0.105114,0.7282,0.574437,0.506006,0.200919,0.139758,0.683788,0.445742,0.129678,0.727274,0.922482,0.266908,0.919333,0.148114,0.277076,0.143431,0.854553,0.614011,0.421867,0.187381,0.692178,0.956983,0.290603,0.313451,0.188263,0.00975025,0.271738,0.0566797,0.486335,0.980313,0.863821,0.237922,0.406526,0.971678,0.30391,0.435578,0.738378,0.956432,0.287018,0.719865,0.0483731,0.398058,0.181799,0.848128,0.842542,0.254655,0.0495023,0.674536,0.398071,0.182441,0.329621,0.240067,0.83134,0.857651,0.219371,0.96128,0.120985,0.48966,0.104833,0.541723,0.711862,0.667098,0.194796,0.930709,0.0587695,0.369994,0.199202,0.0282077,0.522682,0.154275,0.896398,0.459081,0.174258,0.948295,0.16417,0.687983,0.0472612,0.994434,0.765527,0.897354,0.293405,0.432646,0.492323,0.107547,0.701491,0.662342,0.357988,0.169597,0.915008,0.335486,0.786202,0.0078271,0.919526,0.0671034,0.588226,0.288421,0.929549,0.497956,0.292275,0.978115,0.679291,0.302775,0.593024,0.170459,0.0767328,0.283657,0.782879,0.810961,0.110525,0.96051,0.969907,0.675987,0.147383,0.124787,0.828142,0.484767,0.095146,0.880647,0.196257,0.0524232,0.617794,0.330848,0.525119,0.571511,0.0783221,0.887341,0.924132,0.271324,0.644924,0.144174,0.998934,0.703353,0.112961,0.916928,0.062429,0.551839,0.0988036,0.991216,0.293565,0.414883,0.198383,0.647355,0.0465163,0.873299,0.467035,0.8594,0.767181,0.452275,0.194782,0.951948,0.448616,0.500401,0.654667,0.570071,0.16629,0.481913,0.398653,0.073302,0.565644,0.112428,0.384118,0.451138,0.0879627,0.22613,0.854616,0.668558,0.827129,0.819305,0.796378,0.554549,0.40112,0.645108,0.926994,0.813919,0.420244,0.341657,0.219913,0.283951,0.565821,0.399385,0.575223,0.739168,0.0840423,0.141638,0.550942,0.356461,0.215067,0.167666,0.463447,0.866481,0.794548,0.805495,0.210301,0.0827845,0.906226,0.320518,0.685726,0.660307,0.757579,0.340842,0.684534,0.453855,0.334741,0.959826,0.940295,0.498582,0.406728,0.0186927,0.586444,0.344063,0.206775,0.0115827,0.987031,0.853943,0.586713,0.504478,0.695973,0.455231,0.872151,0.938785,0.779673,0.522595,0.00865692,0.0404043,0.34794,0.689075,0.322426,0.178266,0.308784,0.741938,0.387677,0.420196,0.385892,0.13388,0.622987,0.548245,0.504406,0.484716,0.499451,0.184292,0.26172,0.399653,0.256016,0.594736,0.691531,0.0278084,0.351376,0.892608,0.328534,0.220721,0.197861,0.15596,0.614692,0.445816,0.49536,0.405346,0.315459,0.328718,0.612588,0.140066,0.174823,0.994234,0.162473,0.858706,0.150543,0.761709,0.860121,0.475036,0.967081,0.47765,0.369339,0.930676,0.247103,0.892053,0.0804708,0.916793,0.426747,0.0258185,0.419115,0.555613,0.391781,0.488697,0.994741,0.69593,0.507965,0.0712522,0.277918,0.169678,0.294769,0.723798,0.978673,0.224695,0.789028,0.033127,0.285403,0.969411,0.826872,0.827834,0.149638,0.86688,0.349437,0.0507901,0.00855106,0.00963151,0.802153,0.343111,0.190724,0.559913,0.541717,0.600075,0.732171,0.339635,0.990372,0.939312,0.527251,0.685245,0.75847,0.0212892,0.204065,0.367918,0.643942,0.975995,0.495754,0.587981,0.972127,0.573571,0.233341,0.981308,0.18722,0.397866,0.0120355,0.292913,0.687494,0.957791,0.199328,0.962835,0.897105,0.173399,0.0164886,0.8617,0.919505,0.904202,0.866732,0.189876,0.142372,0.485238,0.992566,0.832103,0.919033,0.141976,0.743568,0.682611,0.685164,0.869524,0.889262,0.211459,0.159983,0.917172,0.0335439,0.551523,0.482632,0.323547,0.462793,0.695477,0.982976,0.678524,0.904972,0.97508,0.331946,0.957298,0.912687,0.0895913,0.00377625,0.667063,0.134658,0.206326,0.998162,0.522926,0.0583658,0.934344,0.259107,0.195069,0.928438,0.748432,0.508732,0.547439,0.793221,0.294665,0.519865,0.213725,0.674458,0.626772,0.49136,0.468551,0.344617,0.603272,0.34661,0.315606,0.12087,|0.824942,0.535017,0.768191,0.301884,0.809703,0.792524,0.268838,0.920567,0.968745,0.249614,0.852906,0.40082,0.661496,0.419387,0.491868,0.0462132,0.53629,0.644284,0.413116,0.540403,0.735951,0.623353,0.0187714,0.866897,0.777933,0.017809,0.0278537,0.458161,0.636158,0.105165,0.141712,0.525502,0.425323,0.280783,0.182392,0.339881,0.731251,0.09197,0.86894,0.299175,0.350445,0.241652,0.638005,0.677621,0.442595,0.424755,0.636021,0.776823,0.669777,0.408448,0.693813,0.418307,0.686557,0.911532,0.00430137,0.435586,0.258773,0.939021,0.62521,0.383294,0.43925,0.38624,0.568124,0.545252,0.709385,0.768052,0.374626,0.296253,0.857098,0.721443,0.759292,0.926656,0.851043,0.41604,0.980526,0.0732475,0.355176,0.840535,0.632679,0.426112,0.301735,0.110975,0.75154,0.642799,0.51224,0.803728,0.366412,0.489087,0.547816,0.451518,0.736097,0.436087,0.782923,0.746724,0.313767,0.848876,0.551193,0.465562,0.167795,0.0830905,0.466374,0.574991,0.831161,0.470435,0.729386,0.44048,0.409583,0.445317,0.032176,0.330715,0.491222,0.484604,0.788414,0.301712,0.741969,0.979562,0.856867,0.232403,0.256339,0.696721,0.898494,0.912415,0.373416,0.464607,0.742767,0.137107,0.514364,0.509798,0.637881,0.728475,0.114277,0.577533,0.210033,0.0551538,0.53755,0.167901,0.831905,0.262919,0.138264,0.302807,0.217781,0.366053,0.151015,0.163336,0.243847,0.135117,0.932502,0.845686,0.311367,0.43476,0.658234,0.0601805,0.584514,0.0532517,0.34753,0.511045,0.63062,0.697154,0.502672,0.55434,0.510115,0.922431,0.0377516,0.278202,0.623281,0.652399,0.781189,0.931695,0.665553,0.0239589,0.475578,0.17546,0.17727,0.66678,0.00756937,0.371956,0.262867,0.0409491,0.411751,0.506816,0.115404,0.146838,0.954455,0.601318,0.535373,0.389136,0.140455,0.556645,0.532538,0.588277,0.300871,0.41233,0.683274,0.651012,0.732134,0.0529521,0.0399081,0.95714,0.587287,0.0565426,0.87893,0.743581,0.487119,0.446958,0.215297,0.104351,0.0108148,0.184867,0.925473,0.268602,0.777466,0.724635,0.83949,0.212742,0.608395,0.192648,0.933249,0.156483,0.778183,0.748417,0.398738,0.359037,0.361979,0.420623,0.468441,0.58489,0.399482,0.914897,0.926567,0.228806,0.0154654,0.809446,0.822475,0.0276886,0.984765,0.547734,0.783451,0.62365,0.877618,0.487577,0.645029,0.820056,0.792328,0.462821,0.810112,0.636421,0.232029,0.435973,0.677088,0.665716,0.70534,0.423311,0.620377,0.0221595,0.108706,0.00619256,0.264925,0.44589,0.419665,0.777834,0.613738,0.438676,0.0869255,0.752913,0.618864,0.231937,0.58629,0.702603,0.183232,0.66215,0.723485,0.447227,0.50439,0.0704257,0.610941,0.782934,0.0224944,0.46221,0.859522,0.319392,0.392907,0.157821,0.222211,0.978156,0.725813,0.174408,0.360862,0.725133,0.721322,0.100647,0.156254,0.069641,0.811689,0.178107,0.199192,0.572112,0.576679,0.997187,0.225688,0.0670783,0.231451,0.189967,0.415302,0.325002,0.150895,0.192708,0.763645,0.225626,0.0600796,0.0399937,0.608648,0.698945,0.673375,0.921318,0.273863,0.393239,0.989531,0.554739,0.567655,0.204891,0.192154,0.483625,0.618023,0.873977,0.478795,0.928183,0.332339,0.938452,0.653658,0.735722,0.230682,0.230243,0.454413,0.916121,0.187811,0.469599,0.0766189,0.0487883,0.54544,0.705221,0.331136,0.9643,0.550415,0.186832,0.216129,0.62397,0.466665,0.821463,0.665565,0.250872,0.661007,0.145617,0.239876,0.655295,0.584954,0.829077,0.535705,0.622767,0.403143,0.480573,0.624199,0.203606,0.682608,0.756026,0.0269256,0.978546,0.498904,0.283303,0.439627,0.443736,0.829234,0.927212,0.803464,0.766599,0.867408,0.524435,0.0651745,0.602101,0.207246,0.421493,0.252188,0.861661,0.0818149,0.458418,0.0394819,0.900017,0.606654,0.832959,0.526528,0.576907,0.763976,0.468305,0.577184,0.68391,0.5212,0.467186,0.180091,0.301534,0.242879,0.663555,0.859792,0.719943,0.452754,0.681865,0.0527907,0.658051,0.553497,0.139957,0.501114,0.781657,0.00710237,0.432394,0.685356,0.771301,0.358064,0.348228,0.145599,0.523963,0.220648,0.921616,0.956556,0.686768,0.433459,0.82123,0.380723,0.214334,0.493378,0.637164,0.467747,0.851237,0.268463,0.152833,0.526429,0.888355,0.12913,0.257077,0.467702,0.333565,0.1877,0.1644,0.18986,0.743433,0.274488,0.0679069,0.362533,0.310789,0.544979,0.0523103,0.0399656,0.262285,0.556014,0.812504,0.753532,0.439704,0.37947,0.418567,0.594118,0.881923,0.0373397,0.961299,0.438924,0.823549,0.823253,0.264876,0.613478,0.838062,0.818404,0.272403,0.577895,0.394085,0.638757,0.640152,0.663731,0.762754,0.522179,0.848647,0.711532,0.679008,0.915133,0.770636,0.496097,0.346529,0.396053,0.453857,0.805422,0.0331035,0.845075,0.353854,0.2368,0.0736014,0.14258,0.729323,0.178091,0.0264572,0.266876,0.389103,0.338871,0.944812,0.283623,0.510305,0.958715,0.598578,0.741897,0.523379,0.262372,0.485545,0.339995,0.513685,0.567973,0.972054,0.206575,0.621359,0.151401,0.0580162,0.972363,0.447764,0.192406,0.429952,0.215181,0.561045,0.389847,0.525725,0.989844,0.672953,0.964701,0.0146035,0.927744,0.20327,0.733239,0.888181,0.153004,0.162512,0.307628,0.0585811,0.371348,0.217281,0.761413,0.336295,0.733629,0.886825,0.09582,0.759347,0.835746,0.9018,0.421175,0.306561,0.0912977,0.732415,0.924455,0.792912,0.106532,0.796286,0.730417,0.64238,0.272252,0.860525,0.390938,0.828865,0.0685865,0.717994,0.163349,0.227106,0.338289,0.992031,0.785164,0.485987,0.961379,0.730048,0.240227,0.358163,0.945604,0.456136,0.518456,0.468573,0.270262,0.912321,0.903076,0.292566,0.971226,0.221606,0.829441,0.792506,0.937291,0.135682,0.82225,0.706865,0.679155,0.661502,0.818544,0.991786,0.67349,0.301404,0.0296382,0.285717,0.390629,0.424947,0.688513,0.807896,0.314553,0.299758,0.637518,0.0354614,0.418987,0.569288,0.565145,0.417781,0.786812,0.342947,0.297901,0.895519,0.885831,0.033069,0.311634,0.45577,0.341695,0.817681,0.237423,0.401085,0.739558,0.298592,0.433539,0.601751,0.624231,0.774976,0.653243,0.750103,0.0895432,0.0067327,0.775062,0.222023,0.860339,0.282601,0.090299,0.633604,0.925207,0.0820398,0.183455,0.981302,0.660324,0.713223,0.0406217,0.523853,0.867809,0.425189,0.360447,0.197363,0.389038,0.918897,0.0232901,0.591208,0.924055,0.0567544,0.0355277,0.234064,0.981089,0.279059,0.726449,0.127867,0.949356,0.450441,0.789231,0.333101,0.576488,0.252138,0.108785,0.211337,0.294811,0.421328,0.839813,0.414252,0.447183,0.143184,0.806871,0.992959,0.812648,0.68132,0.729214,0.584877,0.816852,0.472533,0.769252,0.887705,0.293934,0.86152,0.0957606,0.288658,0.829585,0.902036,0.111072,0.64999,0.979137,0.446724,0.101029,0.388937,0.143672,0.840551,0.103568,0.42557,0.562547,0.208277,0.404381,0.366219,0.163363,0.0346383,0.397778,0.447505,0.98198,0.174565,0.743571,0.770421,0.457126,0.764339,0.099387,0.855673,0.258391,0.580268,0.917231,0.274142,0.667452,0.0123057,0.172585,0.67205,0.539396,0.0583807,0.32627,0.671829,0.822486,0.0197713,0.655917,0.663838,0.490209,0.399056,0.201265,0.859765,0.703698,0.40553,0.0668422,0.488089,0.383626,0.39927,0.507952,0.510445,0.984403,0.825538,0.932263,0.648678,0.836536,0.212329,0.212154,0.295615,0.504064,0.962471,0.992392,0.395443,0.257175,0.235723,0.76135,0.591134,0.394353,0.342807,0.31789,0.568334,0.86879,0.676925,0.178611,0.393961,0.841774,0.589339,0.0316221,0.364315,0.786719,0.81711,0.690423,0.123542,0.649994,0.763631,0.140564,0.76035,0.386866,0.79876,0.634819,0.63199,0.959951,0.291106,0.65466,0.178952,0.547479,0.317039,0.279239,0.604243,0.934457,0.764888,0.423112,0.467678,0.872839,0.448058,0.190749,0.400495,0.463904,0.460258,0.516646,0.280768,0.875703,0.934116,0.23572,0.170889,0.58454,0.111784,0.863593,0.021861,0.290397,0.273607,0.0944996,0.837226,0.844348,0.467001,0.296377,0.995727,0.0901309,0.135548,0.337017,0.0646697,0.223965,0.0584763,0.81321,0.0995188,0.355687,0.761414,0.971038,0.0856522,0.783061,0.423613,0.403127,0.799266,0.643847,0.0764034,0.188779,0.736051,0.680998,0.585424,0.363989,0.0598043,0.85181,0.828583,0.511804,0.573171,0.826597,0.268471,0.50468,0.588757,0.589567,0.299201,0.698682,0.277409,0.727928,0.269686,0.216211,0.831357,0.328472,0.382459,0.884001,0.293521,0.724358,0.98936,0.204893,0.872893,0.127244,0.789224,0.562995,0.698992,0.68457,0.272562,0.204146,0.725671,0.559987,0.20304,0.816149,0.74861,0.918213,0.69326,0.484884,0.902258,0.94955,0.0212577,0.516911,0.361749,0.360256,0.343207,0.117803,0.584286,0.580623,0.480868,0.335974,0.883142,0.322765,0.310751,0.189151,0.270288,0.478734,0.929511,0.00531483,0.941634,0.130009,0.991186,0.831675,0.217963,0.499613,0.879869,0.506625,0.369075,0.569314,0.434089,0.419049,0.636105,0.210047,0.10404,0.797638,0.898874,0.42422,0.224062,0.874487,0.0916389,0.0182043,0.513871,0.103322,0.651729,0.0404933,0.690406,0.1694,0.561976,0.156705,0.116034,0.924348,0.531436,0.914422,0.613752,0.815781,0.595359,0.942176,0.291551,0.511747,0.439124,0.0931709,0.392499,0.649618,0.223489,0.0426173,0.480867,0.875193,0.901204,0.444797,0.881118,0.511988,0.762317,0.920493,0.694115,0.577851,0.269591,0.624492,0.210407,0.637203,0.486558,0.88964,0.227085,0.242609,0.717672,0.0193658,0.800084,0.676913,0.0570644,0.640469,0.532821,0.238106,0.361503,0.0578718,0.617235,0.363031,0.10602,0.855765,0.803162,0.707156,0.874266,0.673225,0.35915,0.511141,0.229195,0.677981,0.881158,0.077674,0.747895,0.0489596,0.772282,0.532263,0.234637,0.770897,0.763476,0.027792,0.215064,0.973346,0.466268,|0.498795,0.930897,0.911449,0.392362,0.299276,0.715079,0.187092,0.493574,0.813114,0.926788,0.415287,0.316037,0.364623,0.498861,0.273333,0.521975,0.906119,0.0654448,0.491071,0.210341,0.724903,0.312645,0.606933,0.496548,0.963499,0.130988,0.647295,0.973196,0.259432,0.501756,0.931806,0.790402,0.669386,0.644448,0.426989,0.677081,0.82218,0.925066,0.597969,0.0751966,0.656439,0.200468,0.772643,0.276778,0.0348071,0.933612,0.552115,0.638304,0.423293,0.754419,0.827523,0.109304,0.335512,0.195878,0.519672,0.656398,0.771224,0.13343,0.582998,0.80797,0.820747,0.493226,0.563543,0.702792,0.209537,0.553515,0.106235,0.347689,0.720778,0.183174,0.333213,0.832901,0.887246,0.385789,0.563521,0.0195922,0.0595066,0.00662124,0.930468,0.523693,0.907422,0.249638,0.38103,0.649508,0.667325,0.451289,0.768613,0.738121,0.900744,0.209053,0.544258,0.638915,0.114695,0.899977,0.234786,0.470436,0.275046,0.499887,0.0125481,0.784303,0.85514,0.484931,0.156991,0.431559,0.0325457,0.588483,0.940249,0.0931244,0.558406,0.67003,0.0532202,0.908584,0.52586,0.0153438,0.817664,0.788562,0.185212,0.513125,0.130332,0.692183,0.503585,0.302153,0.211093,0.520565,0.718542,0.977578,0.0358115,0.959042,0.236565,0.797081,0.818149,0.0578196,0.340042,0.608558,0.426748,0.732846,0.908621,0.543559,0.808149,0.573083,0.925873,0.0819615,0.535374,0.089758,0.194757,0.72177,0.919679,0.793107,0.910691,0.123891,0.964013,0.174788,0.536379,0.0481643,0.0882426,0.80965,0.100275,0.75177,0.213516,0.200612,0.90407,0.839382,0.307054,0.834768,0.355771,0.279509,0.245329,0.166624,0.423035,0.377604,0.240599,0.127326,0.8035,0.372572,0.431582,0.471623,0.0684923,0.858653,0.993969,0.604029,0.97499,0.460919,0.214364,0.181558,0.911937,0.855262,0.093768,0.223998,0.481736,0.611335,0.770135,0.692731,0.187482,0.512611,0.982682,0.215076,0.225142,0.805941,0.727319,0.36625,0.124775,0.263563,0.815814,0.454682,0.457426,0.186381,0.19745,0.646251,0.759186,0.635913,0.467446,0.927998,0.732173,0.971736,0.842811,0.81453,0.844026,0.293228,0.821281,0.773034,0.595887,0.378243,0.701127,0.265741,0.573848,0.348278,0.510639,0.0896872,0.201917,0.393775,0.554714,0.885375,0.20642,0.893392,0.956951,0.0468131,0.602944,0.933685,0.496264,0.697049,0.267099,0.656853,0.659031,0.251371,0.453662,0.998976,0.960583,0.912373,0.0439985,0.246358,0.918805,0.681549,0.6226,0.70045,0.68855,0.488528,0.570952,0.552874,0.900186,0.35488,0.442262,0.629439,0.690082,0.490055,0.81723,0.357137,0.275439,0.968395,0.112845,0.697289,0.0185643,0.512769,0.960372,0.363439,0.328,0.145594,0.928876,0.915943,0.252817,0.366436,0.52621,0.386903,0.635657,0.366796,0.270704,0.0979788,0.853919,0.153707,0.618273,0.144907,0.67888,0.50753,0.602373,0.471528,0.124326,0.123604,0.414359,0.14104,0.806981,0.860801,0.073092,0.382713,0.618134,0.850921,0.546748,0.618936,0.490948,0.477538,0.617603,0.28505,0.792854,0.364796,0.771893,0.911046,0.925115,0.455906,0.361932,0.0299073,0.12383,0.533717,0.945961,0.107965,0.958184,0.870045,0.734634,0.305705,0.879207,0.703401,0.726841,0.825873,0.0536535,0.10218,0.993679,0.87386,0.198053,0.00885856,0.0455313,0.263071,0.456132,0.567007,0.583373,0.304908,0.911775,0.144667,0.813728,0.373624,0.531726,0.862754,0.523615,0.343695,0.62225,0.226114,0.214692,0.499017,0.808285,0.548597,0.122072,0.308374,0.372372,0.835811,0.15645,0.579028,0.440309,0.602131,0.883291,0.863469,0.345215,0.926116,0.581361,0.819473,0.684785,0.557984,0.317816,0.339922,0.747076,0.750886,0.355758,0.420058,0.192799,0.371625,0.640032,0.632318,0.538826,0.383427,0.303392,0.512566,0.389975,0.915786,0.842871,0.283366,0.841986,0.0719128,0.801979,0.172529,0.22269,0.926654,0.815236,0.136374,0.133035,0.952961,0.543665,0.0295327,0.138709,0.694627,0.803379,0.623699,0.331248,0.277474,0.900803,0.196736,0.458748,0.0914114,0.942059,0.286561,0.272843,0.75622,0.509258,0.144956,0.24758,0.593603,0.633464,0.396497,0.902409,0.738952,0.43068,0.161343,0.445562,0.667597,0.407022,0.128429,0.546342,0.26932,0.708038,0.00490379,0.674325,0.496293,0.84488,0.758858,0.37277,0.28923,0.110483,0.263136,0.00453651,0.634399,0.273751,0.424527,0.974541,0.686609,0.989576,0.301156,0.190999,0.0847032,0.850335,0.21577,0.673942,0.408705,0.465436,0.0369982,0.801057,0.441168,0.26708,0.327598,0.286789,0.0335811,0.00772887,0.248837,0.821826,0.933849,0.987301,0.0566753,0.230733,0.256392,0.399151,0.867611,0.612658,0.758671,0.428691,0.825873,0.435606,0.65717,0.836397,0.765372,0.979916,0.315491,0.718243,0.457552,0.858928,0.253267,0.450683,0.622828,0.340188,0.267209,0.43355,0.0878224,0.573008,0.997944,0.326844,0.634351,0.97484,0.434331,0.771914,0.868594,0.261827,0.749457,0.813912,0.532856,0.560241,0.554149,0.0788614,0.32157,0.381714,0.265361,0.857282,0.258089,0.0470963,0.773995,0.163971,0.557024,0.535127,0.142315,0.469745,0.544196,0.67378,0.40716,0.491213,0.822806,0.158002,0.207776,0.53506,0.584026,0.705512,0.910855,0.501947,0.859478,0.523102,0.750883,0.260656,0.316714,0.128147,0.825258,0.421937,0.806311,0.387466,0.726494,0.155403,0.713269,0.701884,0.780599,0.0974349,0.301596,0.245838,0.520044,0.821324,0.30226,0.684577,0.9888,0.167917,0.723847,0.433426,0.854516,0.619867,0.242539,0.0329416,0.813586,0.679178,0.860504,0.421279,0.384874,0.946647,0.577118,0.408281,0.710124,0.828781,0.921216,0.408696,0.157866,0.922391,0.213751,0.0804195,0.999844,0.0943819,0.971771,0.231616,0.329212,0.986661,0.433494,0.685508,0.892437,0.883353,0.899797,0.550624,0.150459,0.83787,0.0109891,0.14997,0.194625,0.683655,0.020929,0.851141,0.885232,0.298527,0.445374,0.778333,0.4105,0.426777,0.811135,0.0501375,0.0265313,0.283893,0.155354,0.753159,0.523549,0.764864,0.823897,0.0672123,0.938564,0.148182,0.423315,0.183121,0.810881,0.239064,0.0607892,0.144991,0.616624,0.225558,0.675466,0.484022,0.653565,0.0347078,0.167001,0.861661,0.965697,0.254334,0.344448,0.108209,0.638821,0.602755,0.82783,0.11269,0.155843,0.0727665,0.919837,0.564259,0.348041,0.61515,0.936718,0.414516,0.379348,0.9746,0.173216,0.225133,0.288202,0.534843,0.663726,0.792291,0.162206,0.0141889,0.897525,0.388095,0.21716,0.367028,0.597168,0.340824,0.0960436,0.154546,0.710296,0.700339,0.591593,0.899618,0.637825,0.319738,0.458239,0.823036,0.904441,0.421217,0.789604,0.620938,0.31536,0.382986,0.0204229,0.769437,0.718737,0.243858,0.192865,0.617502,0.398259,0.29432,0.652892,0.159645,0.236266,0.768423,0.86592,0.0907751,0.226601,0.597626,0.668012,0.0978288,0.994222,0.538661,0.342346,0.0641853,0.886833,0.00542831,0.880294,0.696279,0.0627992,0.168837,0.0324654,0.0550249,0.145287,0.441994,0.867685,0.145311,0.34925,0.498088,0.474335,0.222577,0.990353,0.829037,0.681194,0.398977,0.81603,0.161343,0.123838,0.0843092,0.888618,0.931152,0.868213,0.573632,0.787685,0.0971012,0.592557,0.673074,0.0184254,0.448366,0.318728,0.197238,0.66672,0.306556,0.584185,0.752105,0.588985,0.342513,0.0710419,0.896275,0.863897,0.316841,0.423922,0.186984,0.268211,0.32075,0.395051,0.177774,0.784303,0.387402,0.960504,0.896112,0.0363672,0.514524,0.260222,0.861356,0.496439,0.39647,0.190125,0.620054,0.122055,0.536532,0.229069,0.119804,0.108263,0.0847027,0.809826,0.244602,0.753292,0.222541,0.231177,0.337591,0.136184,0.0426895,0.674288,0.613069,0.554807,0.612887,0.719054,0.15808,0.640818,0.801417,0.0402812,0.429984,0.773466,0.170403,0.240059,0.91435,0.00601846,0.0798738,0.873256,0.524426,0.662388,0.657695,0.690959,0.277973,0.056129,0.350601,0.109963,0.791179,0.179456,0.656499,0.0507687,0.103284,0.135769,0.385224,0.937043,0.259371,0.831356,0.78802,0.150312,0.340766,0.82036,0.848665,0.722355,0.613543,0.301828,0.465609,0.476522,0.384627,0.395622,0.62958,0.33023,0.967795,0.296282,0.13071,0.366145,0.308401,0.108862,0.552059,0.270826,0.603768,0.0191616,0.585895,0.874229,0.663522,0.240668,0.924497,0.147608,0.387832,0.717229,0.20974,0.366502,0.700432,0.335278,0.552117,0.547019,0.744994,0.943915,0.937547,0.585188,0.752715,0.591176,0.956367,0.822496,0.092874,0.469184,0.511262,0.567793,0.990611,0.154063,0.82533,0.0860696,0.31664,0.216238,0.392321,0.383734,0.360107,0.67275,0.924962,0.69923,0.60904,0.737212,0.174926,0.913973,0.309028,0.21631,0.0627195,0.0184945,0.903925,0.254389,0.782957,0.612552,0.773851,0.906463,0.507757,0.677406,0.998715,0.410167,0.0158901,0.251206,0.275672,0.0979123,0.383669,0.0488262,0.728809,0.800762,0.278857,0.795624,0.0888126,0.571369,0.367198,0.354909,0.602317,0.00807869,0.928371,0.432228,0.411352,0.354276,0.823807,0.245081,0.103582,0.792641,0.0328828,0.0311119,0.481922,0.835465,0.182096,0.0890781,0.913857,0.407592,0.406595,0.550016,0.995795,0.728103,0.737955,0.094051,0.970692,0.735938,0.497455,0.264953,0.508382,0.382669,0.648588,0.254059,0.833786,0.708621,0.202915,0.990905,0.180732,0.166539,0.214118,0.490055,0.592063,0.632145,0.381967,0.442498,0.363025,0.178394,0.792366,0.756756,0.491486,0.0527733,0.490481,0.467965,0.755034,0.213982,0.120013,0.473627,0.748018,0.0403946,0.0722686,0.85861,0.10736,0.01789,0.0383798,0.034967,0.550362,0.857151,0.224996,0.842954,0.394382,0.638465,0.517291,0.726251,0.157413,0.0730565,0.596789,0.083793,0.518855,0.546331,0.306705,0.780125,0.719191,0.20566,0.291558,0.582105,0.823192,0.636232,0.414433,0.106785,0.510148,0.856377,0.617656,0.154078,|0.853225,0.213425,0.562976,0.498327,0.540176,0.876172,0.906413,0.462781,0.451276,0.77512,0.687331,0.762655,0.165049,0.338535,0.776894,0.112882,0.353548,0.117526,0.0721055,0.270192,0.524695,0.861886,0.779821,0.705304,0.37663,0.352679,0.934471,0.874213,0.856618,0.90078,0.804206,0.0483442,0.00407171,0.147082,0.664668,0.316464,0.290252,0.500998,0.425759,0.464167,0.504093,0.912695,0.841278,0.265759,0.276059,0.958446,0.286757,0.139151,0.945114,0.476215,0.750194,0.0406011,0.571127,0.524805,0.515742,0.994513,0.192601,0.716487,0.933,0.971218,0.700966,0.635989,0.669701,0.00960708,0.537504,0.96148,0.0649111,0.170054,0.961425,0.0592583,0.246343,0.664921,0.33764,0.180202,0.208976,0.759743,0.310189,0.149949,0.521107,0.560626,0.807719,0.425051,0.0655751,0.930795,0.789282,0.522566,0.171548,0.0278863,0.549071,0.432722,0.909183,0.684326,0.441229,0.546317,0.78286,0.552814,0.123467,0.339522,0.61228,0.300467,0.819757,0.295696,0.197591,0.108201,0.199213,0.925604,0.0163048,0.951442,0.634209,0.60893,0.474018,0.137028,0.31055,0.20275,0.96625,0.540025,0.0407581,0.626073,0.876029,0.980845,0.154376,0.829557,0.1057,0.989073,0.916131,0.667946,0.468276,0.513645,0.652606,0.990413,0.115664,0.505625,0.746692,0.998237,0.24463,0.685238,0.671408,0.900022,0.796021,0.0297815,0.475669,0.726587,0.658731,0.358303,0.641028,0.198995,0.665448,0.509524,0.751285,0.454845,0.324862,0.499331,0.857153,0.0256461,0.298908,0.507195,0.907547,0.720601,0.329303,0.548343,0.348187,0.900692,0.0342126,0.0909758,0.748312,0.676887,0.979077,0.190298,0.964258,0.944832,0.706991,0.797271,0.602659,0.198045,0.508849,0.632175,0.141617,0.956,0.770002,0.335019,0.226605,0.846163,0.218024,0.147937,0.925837,0.965577,0.853024,0.696155,0.357809,0.769439,0.337762,0.716661,0.752968,0.78073,0.859931,0.842624,0.838721,0.873515,0.835761,0.0828364,0.710856,0.267522,0.765497,0.689087,0.111351,0.690808,0.917572,0.122169,0.211828,0.234356,0.470608,0.680305,0.731796,0.453175,0.574044,0.0306132,0.313928,0.771712,0.386278,0.833225,0.142832,0.877374,0.950982,0.888491,0.979924,0.367866,0.706042,0.727947,0.614443,0.729201,0.744143,0.774022,0.139546,0.143186,0.515624,0.971551,0.0262208,0.527066,0.692277,0.999606,0.233103,0.934689,0.971073,0.0904859,0.774993,0.348334,0.856654,0.0470521,0.847086,0.832908,0.565574,0.0344673,0.862721,0.651594,0.0899246,0.902826,0.662408,0.565383,0.176378,0.908403,0.976756,0.947937,0.58888,0.568689,0.249562,0.543595,0.348148,0.966391,0.778598,0.334312,0.555654,0.214182,0.981805,0.98525,0.73196,0.997178,0.880468,0.67075,0.33467,0.957012,0.674863,0.556788,0.565244,0.361009,0.167718,0.382424,0.720698,0.62235,0.265259,0.592387,0.375335,0.581135,0.818718,0.656943,0.461257,0.885601,0.341675,0.194577,0.995196,0.490723,0.69523,0.656714,0.0786891,0.846016,0.110846,0.363769,0.444435,0.127282,0.273259,0.0346379,0.0998664,0.712496,0.948171,0.910052,0.113561,0.00522429,0.17598,0.506098,0.0654791,0.0122899,0.203109,0.18128,0.232967,0.248972,0.523899,0.375336,0.444128,0.71898,0.549949,0.780945,0.696525,0.847095,0.117118,0.981334,0.557008,0.375702,0.698615,0.32877,0.642919,0.996826,0.0640103,0.938229,0.926595,0.808579,0.48497,0.368616,0.382443,0.354587,0.568733,0.922412,0.670707,0.184322,0.281016,0.571601,0.762066,0.847556,0.668597,0.853812,0.40455,0.351603,0.829525,0.165297,0.385615,0.885827,0.929795,0.0784423,0.0514535,0.619055,0.335557,0.58004,0.395284,0.980869,0.281278,0.303094,0.0584359,0.341494,0.177555,0.369874,0.912658,0.442747,0.359327,0.00766689,0.433899,0.0691749,0.650596,0.299695,0.990812,0.417397,0.393711,0.0358419,0.727425,0.889506,0.621872,0.0955662,0.487218,0.672026,0.282886,0.125952,0.914057,0.823196,0.984746,0.078723,0.904871,0.352944,0.525779,0.246058,0.197009,0.130895,0.25588,0.340127,0.142436,0.885893,0.932254,0.815036,0.188688,0.6759,0.0159605,0.233482,0.527977,0.774358,0.142185,0.410346,0.158322,0.313202,0.346007,0.844658,0.493074,0.986364,0.27306,0.915306,0.127946,0.828097,0.0500901,0.0986584,0.0805301,0.282132,0.569399,0.69764,0.0581295,0.471636,0.606281,0.889336,0.922389,0.352317,0.152654,0.0780501,0.270504,0.275231,0.540109,0.937492,0.90528,0.852878,0.916075,0.128315,0.64586,0.230884,0.521215,0.298126,0.493512,0.163277,0.542827,0.458605,0.601578,0.501886,0.265385,0.59707,0.435545,0.624239,0.610142,0.797158,0.494501,0.0329185,0.595415,0.483693,0.372881,0.789998,0.104465,0.730118,0.0540984,0.636418,0.916842,0.494927,0.921888,0.885743,0.770986,0.208585,0.876137,0.929402,0.464828,0.519825,0.254291,0.511533,0.875755,0.0623782,0.125325,0.422923,0.714633,0.934935,0.942738,0.223926,0.509409,0.397743,0.920273,0.462471,0.0679705,0.492907,0.936299,0.378541,0.166213,0.993999,0.283938,0.289133,0.471509,0.334612,0.222939,0.282678,0.135172,0.240835,0.898179,0.112959,0.315532,0.383304,0.761015,0.78975,0.412131,0.881008,0.505581,0.562041,0.84461,0.877545,0.513128,0.883067,0.45988,0.562584,0.369713,0.80938,0.850056,0.175873,0.904698,0.707694,0.305231,0.40387,0.236421,0.739297,0.0363049,0.822649,0.129285,0.166716,0.440846,0.940068,0.155951,0.502452,0.563094,0.147302,0.374221,0.581479,0.240289,0.617198,0.594099,0.501841,0.560888,0.398317,0.0429404,0.949895,0.95868,0.728007,0.943212,0.789257,0.179992,0.981056,0.634517,0.645303,0.319116,0.0991867,0.256038,0.483009,0.279339,0.827975,0.896526,0.365236,0.20406,0.526777,0.930715,0.987053,0.983103,0.275496,0.718511,0.727531,0.751515,0.0119177,0.311014,0.362091,0.219461,0.794911,0.24472,0.141821,0.983429,0.626819,0.295257,0.988452,0.225877,0.792754,0.187203,0.863765,0.841595,0.287261,0.131887,0.210114,0.640312,0.111332,0.659821,0.326832,0.428106,0.104693,0.252632,0.202731,0.281673,0.646932,0.70045,0.856838,0.728018,0.428272,0.441563,0.470766,0.956447,0.38236,0.00296807,0.286601,0.31092,0.5357,0.841668,0.881391,0.150749,0.250017,0.554114,0.258854,0.667222,0.338321,0.142152,0.374002,0.746022,0.585524,0.7402,0.807679,0.9181,0.852266,0.78389,0.76914,0.376645,0.208047,0.556614,0.707744,0.727495,0.53592,0.716519,0.331417,0.444304,0.516874,0.857424,0.877758,0.965818,0.20656,0.34101,0.70852,0.889103,0.815581,0.395777,0.712486,0.469281,0.0947456,0.622364,0.0136046,0.90397,0.0724065,0.392373,0.349076,0.714871,0.468035,0.995068,0.00793195,0.244167,0.907638,0.763929,0.555763,0.993772,0.163596,0.560683,0.942216,0.584082,0.196746,0.337377,0.556389,0.743824,0.240658,0.260507,0.0471589,0.716365,0.589834,0.781123,0.681634,0.241989,0.143414,0.784056,0.532081,0.382416,0.335288,0.352791,0.111207,0.802104,0.360872,0.196349,0.994798,0.579195,0.555734,0.872247,0.920827,0.890632,0.227062,0.612956,0.88005,0.779204,0.229103,0.0784998,0.135564,0.0235049,0.965287,0.840289,0.933928,0.593318,0.378826,0.983518,0.582329,0.410329,0.279857,0.0891988,0.85985,0.544488,0.83722,0.59521,0.719807,0.161284,0.070574,0.756813,0.4893,0.434262,0.357005,0.0160684,0.615392,0.983505,0.756295,0.627813,0.750188,0.447755,0.5814,0.416071,0.0525656,0.284446,0.685168,0.233872,0.386767,0.64695,0.896164,0.745302,0.459951,0.0342653,0.258788,0.453386,0.74826,0.304274,0.658091,0.0294168,0.980886,0.832983,0.405678,0.312596,0.441983,0.0988318,0.819785,0.717877,0.478178,0.0544153,0.254369,0.605731,0.215691,0.594394,0.922998,0.192683,0.398843,0.0800121,0.767083,0.778007,0.816916,0.0904713,0.917908,0.370575,0.936981,0.0722978,0.0415436,0.490225,0.668653,0.991483,0.46542,0.29395,0.718179,0.27105,0.29424,0.246252,0.624344,0.199244,0.159519,0.00780541,0.659487,0.39338,0.443659,0.385525,0.548676,0.133692,0.634905,0.947788,0.303427,0.13512,0.522048,0.605882,0.610415,0.359692,0.453699,0.80527,0.482588,0.0207464,0.28777,0.600495,0.570833,0.764757,0.441118,0.482059,0.564296,0.32895,0.392106,0.862573,0.343,0.846977,0.690605,0.826243,0.176233,0.0951256,0.475548,0.862224,0.203796,0.409518,0.415822,0.449557,0.468686,0.742295,0.0133752,0.975065,0.725689,0.139966,0.900818,0.963612,0.592279,0.241604,0.0594475,0.0996435,0.200718,0.667638,0.743808,0.178353,0.0460865,0.889815,0.585949,0.963509,0.703222,0.857913,0.0355166,0.182105,0.29341,0.956591,0.509713,0.1601,0.709247,0.455141,0.252854,0.831477,0.0104346,0.0695033,0.927761,0.83998,0.724973,0.377474,0.961098,0.971688,0.209749,0.1647,0.929862,0.648793,0.793703,0.667735,0.86927,0.280337,0.463118,0.32822,0.544778,0.817796,0.984082,0.921532,0.659415,0.41717,0.287533,0.282129,0.0310182,0.786943,0.68137,0.165978,0.0419482,0.664398,0.441158,0.592582,0.258579,0.0186394,0.826059,0.0836553,0.145805,0.0907328,0.0377028,0.596374,0.77848,0.199763,0.771408,0.561387,0.521602,0.0787234,0.758223,0.333742,0.234842,0.0416198,0.587863,0.0701168,0.801291,0.881806,0.766275,0.975282,0.425186,0.0675928,0.259057,0.609824,0.0614832,0.973883,0.661203,0.553444,0.672452,0.363425,0.507445,0.801172,0.562283,0.384406,0.547665,0.612887,0.472319,0.0228792,0.246472,0.470991,0.503609,0.143623,0.351487,0.449745,0.887458,0.446524,0.0881585,0.619731,0.888601,0.120076,0.725932,0.827995,0.324436,0.900386,0.954525,0.195861,0.383567,0.255484,0.344585,0.823536,0.879493,0.829961,0.601467,0.566622,0.168405,0.481245,0.129446,0.322715,0.0123267,0.742529,0.287169,0.75611,0.0388731,0.459238,0.694013,0.799323,0.67291,0.932806,0.0888379,|0.335387,0.556076,0.703103,0.905153,0.712308,0.470141,0.597675,0.133892,0.869321,0.319698,0.214674,0.481761,0.432707,0.241376,0.317576,0.960027,0.0971597,0.905533,0.176024,0.832867,0.900825,0.348633,0.178484,0.544307,0.703827,0.0710391,0.429124,0.436592,0.565552,0.967804,0.598232,0.0645756,0.022902,0.95752,0.64298,0.0608367,0.0544034,0.114952,0.340401,0.863114,0.209802,0.821018,0.457124,0.210123,0.0833588,0.369519,0.689096,0.00332832,0.819488,0.925295,0.330887,0.98036,0.0582726,0.382408,0.0896257,0.705128,0.967222,0.333363,0.555836,0.654542,0.450888,0.0426016,0.851267,0.409759,0.542147,0.396332,0.789501,0.165401,0.598746,0.261685,0.673884,0.831977,0.649789,0.109953,0.351774,0.616299,0.171295,0.359763,0.810952,0.0648389,0.110587,0.677833,0.165554,0.905154,0.457544,0.868535,0.4903,0.250566,0.308499,0.340156,0.253118,0.290579,0.684524,0.433641,0.24928,0.160761,0.966374,0.209262,0.977186,0.976611,0.244937,0.0251344,0.561044,0.750615,0.860879,0.0641317,0.17649,0.352258,0.660939,0.717315,0.8786,0.312004,0.27039,0.847688,0.499977,0.899777,0.208953,0.084916,0.164249,0.26538,0.239675,0.546323,0.18362,0.82438,0.939843,0.0843458,0.525952,0.113163,0.13979,0.681068,0.692798,0.367046,0.0488398,0.359656,0.0292472,0.879592,0.0890447,0.36155,0.514157,0.854619,0.101627,0.347387,0.156395,0.572775,0.301573,0.545595,0.119976,0.265625,0.709143,0.215946,0.385425,0.566532,0.92609,0.22386,0.491081,0.97319,0.0281128,0.969066,0.861931,0.252633,0.349075,0.538948,0.224395,0.819216,0.892247,0.237951,0.575166,0.237548,0.338909,0.787968,0.515167,0.420534,0.353034,0.0225875,0.297107,0.44251,0.314089,0.39772,0.460104,0.515388,0.0707285,0.455306,0.926762,0.558662,0.485519,0.5458,0.848759,0.475228,0.258072,0.407053,0.690609,0.456887,0.627409,0.635995,0.361905,0.348127,0.570871,0.496416,0.357283,0.984438,0.313926,0.273153,0.925989,0.402336,0.865717,0.31355,0.459565,0.231484,0.566599,0.0247474,0.508288,0.964916,0.131205,0.724594,0.0748087,0.909178,0.925757,0.355827,0.313066,0.270533,0.0524216,0.977549,0.447426,0.695384,0.449436,0.186228,0.79942,0.723676,0.468259,0.127672,0.135198,0.282342,0.357955,0.19171,0.692623,0.291605,0.0899546,0.90289,0.915859,0.672488,0.171354,0.252216,0.519048,0.955277,0.0877602,0.13857,0.905967,0.557847,0.594501,0.767152,0.529457,0.00307924,0.1969,0.678816,0.312121,0.865935,0.920619,0.420414,0.223332,0.892523,0.584672,0.235329,0.0609322,0.963062,0.667484,0.960617,0.488499,0.0804145,0.780014,0.728642,0.0322789,0.444594,0.259712,0.615869,0.231979,0.241368,0.968884,0.928454,0.849593,0.971301,0.701104,0.689726,0.549639,0.203805,0.245777,0.771849,0.724291,0.739556,0.672237,0.17777,0.252555,0.747861,0.235237,0.246903,0.322857,0.120216,0.0502526,0.766881,0.174277,0.608429,0.915487,0.953891,0.0363293,0.0493807,0.366353,0.0930791,0.610233,0.987927,0.835637,0.836312,0.0366836,0.465912,0.708191,0.720628,0.148739,0.373053,0.668403,0.973545,0.147898,0.279938,0.082184,0.655721,0.908558,0.916767,0.720377,0.366817,0.432635,0.716564,0.800954,0.672321,0.0432785,0.144643,0.271371,0.919157,0.634937,0.408689,0.974945,0.317478,0.0122016,0.90463,0.163309,0.145241,0.938893,0.915896,0.79941,0.507848,0.201816,0.537662,0.233845,0.417476,0.783312,0.336143,0.0903671,0.0941476,0.494798,0.653159,0.837303,0.19132,0.921756,0.27028,0.764521,0.648414,0.388722,0.23124,0.0641343,0.423671,0.216752,0.156715,0.830172,0.454535,0.477612,0.693791,0.236456,0.0571829,0.0701895,0.706891,0.0918942,0.243919,0.670022,0.290028,0.114641,0.423996,0.0542745,0.203173,0.10691,0.683128,0.0115919,0.171915,0.679151,0.275572,0.473326,0.853134,0.453746,0.590986,0.56311,0.173435,0.129207,0.09119,0.832863,0.31881,0.776358,0.481486,0.618433,0.810666,0.185489,0.708108,0.0472916,0.196998,0.0812377,0.683031,0.888167,0.400815,0.736394,0.415798,0.932324,0.259884,0.791632,0.0819579,0.728161,0.755657,0.292529,0.447355,0.397986,0.29577,0.229706,0.394609,0.0561444,0.149035,0.938653,0.206178,0.0361618,0.499729,0.454243,0.472637,0.0346341,0.663527,0.133374,0.0351586,0.137703,0.126856,0.143427,0.961041,0.973638,0.391961,0.877612,0.259348,0.0195165,0.89708,0.485476,0.671514,0.241409,0.703009,0.881777,0.216917,0.548443,0.762743,0.794227,0.94985,0.936554,0.344704,0.0792839,0.00218785,0.0370876,0.0703666,0.183535,0.592049,0.301834,0.49375,0.412573,0.673424,0.243836,0.683989,0.506818,0.798666,0.78425,0.304516,0.661025,0.801709,0.120499,0.132819,0.913659,0.983271,0.677289,0.383768,0.502553,0.178483,0.141278,0.472945,0.943745,0.695152,0.204333,0.503506,0.108717,0.356048,0.282065,0.00912744,0.064316,0.0151887,0.776479,0.0437676,0.456631,0.0372926,0.198002,0.364186,0.00607967,0.778619,0.434854,0.13731,0.353203,0.0821999,0.520905,0.935483,0.692828,0.383193,0.622483,0.142561,0.58595,0.132297,0.0906857,0.700478,0.0663584,0.834085,0.523152,0.509419,0.969296,0.732034,0.224366,0.463654,0.598647,0.875704,0.261108,0.363137,0.677952,0.574231,0.999997,0.972403,0.980725,0.728513,0.68623,0.209537,0.0361061,0.994805,0.740734,0.236471,0.580314,0.745352,0.536094,0.994392,0.216955,0.864121,0.841268,0.00748742,0.367586,0.168975,0.159982,0.890263,0.392097,0.975707,0.7701,0.60626,0.369021,0.933445,0.752985,0.237454,0.894802,0.8705,0.00703132,0.761739,0.096883,0.450786,0.342106,0.923685,0.945551,0.391715,0.416805,0.125425,0.503782,0.371496,0.130715,0.24429,0.295457,0.0161212,0.474307,0.420333,0.914279,0.787075,0.800292,0.274433,0.581252,0.446919,0.368623,0.0446537,0.0558437,0.0415868,0.7122,0.151481,0.356776,0.563839,0.157933,0.763712,0.164059,0.34116,0.285512,0.705145,0.542509,0.458592,0.693989,0.899302,0.682473,0.55181,0.165667,0.950252,0.650765,0.818799,0.677969,0.175592,0.931497,0.706916,0.673565,0.675117,0.0903544,0.913744,0.128708,0.751793,0.422488,0.807048,0.459028,0.599235,0.347826,0.383707,0.095919,0.884239,0.696746,0.0558414,0.492549,0.990238,0.922754,0.241953,0.187987,0.262113,0.187478,0.634421,0.277839,0.361095,0.738345,0.588804,0.125502,0.0156977,0.679663,0.651346,0.691611,0.76168,0.599131,0.285653,0.45443,0.0138266,0.405593,0.247193,0.277998,0.59121,0.345317,0.825512,0.92055,0.560574,0.187768,0.70876,0.0912374,0.041474,0.493809,0.360119,0.898474,0.115493,0.249975,0.681059,0.129263,0.610834,0.0572404,0.27111,0.180851,0.0830735,0.168685,0.740535,0.210989,0.995245,0.0952241,0.60778,0.301719,0.423318,0.536634,0.483479,0.102302,0.667421,0.607453,0.105979,0.967516,0.0847014,0.787347,0.418748,0.871577,0.237707,0.746479,0.841544,0.294766,0.47599,0.72932,0.244575,0.370756,0.30587,0.955665,0.861667,0.334408,0.780694,0.264495,0.747267,0.08258,0.143978,0.635239,0.00638944,0.762133,0.815903,0.704042,0.966415,0.691868,0.539154,0.906538,0.742858,0.456644,0.329818,0.11161,0.571635,0.435704,0.0838511,0.145937,0.85239,0.800114,0.507985,0.0405195,0.691983,0.268798,0.494389,0.0588189,0.15282,0.648106,0.200079,0.115076,0.995713,0.0647467,0.17279,0.1352,0.196132,0.702554,0.720914,0.191694,0.0747131,0.207633,0.868845,0.91105,0.701881,0.632414,0.998415,0.950708,0.815712,0.639014,0.366983,0.836386,0.783655,0.19086,0.485711,0.89587,0.303678,0.596685,0.0343665,0.338606,0.976739,0.807241,0.494158,0.340521,0.830655,0.666572,0.557524,0.412121,0.692152,0.217843,0.812507,0.226773,0.274194,0.0005759,0.319636,0.549568,0.516854,0.62865,0.513239,0.698281,0.203603,0.432074,0.280523,0.957037,0.105004,0.861484,0.591757,0.969085,0.43772,0.531619,0.409867,0.0936224,0.913538,0.486185,0.405372,0.790345,0.791727,0.914173,0.657809,0.726921,0.333608,0.00914907,0.882631,0.3012,0.0453497,0.26345,0.0127752,0.406853,0.290389,0.925345,0.575287,0.360151,0.586464,0.500041,0.206915,0.465768,0.0716041,0.619989,0.143802,0.428553,0.433029,0.573908,0.337711,0.338235,0.722459,0.932609,0.56187,0.0453982,0.978097,0.192162,0.0517868,0.19171,0.90749,0.216117,0.624348,0.818715,0.577506,0.412896,0.768435,0.99568,0.952879,0.943133,0.769389,0.358977,0.213149,0.660718,0.871839,0.147438,0.832817,0.894849,0.598967,0.3125,0.948248,0.190116,0.0658417,0.862205,0.307559,0.998952,0.354001,0.852405,0.196,0.0837959,0.51356,0.742151,0.430358,0.183735,0.193386,0.767692,0.306229,0.562478,0.565442,0.196271,0.684053,0.300261,0.752999,0.967191,0.570524,0.338701,0.689606,0.55686,0.178387,0.636693,0.851032,0.509489,0.155782,0.18254,0.0893568,0.397777,0.719798,0.860691,0.793013,0.235665,0.571998,0.159152,0.667131,0.392863,0.963126,0.593152,0.2342,0.862052,0.577198,0.285422,0.776856,0.0476684,0.0782696,0.87302,0.506163,0.899865,0.559344,0.672233,0.301574,0.295551,0.0139961,0.563661,0.128967,0.845438,0.422088,0.862969,0.912673,0.691779,0.66355,0.167617,0.449758,0.657682,0.569413,0.484442,0.456324,0.937579,0.137959,0.325486,0.987235,0.98986,0.734986,0.626916,0.643047,0.797006,0.744535,0.20873,0.627355,0.244021,0.165471,0.86795,0.421239,0.720893,0.643575,0.967683,0.843054,0.263393,0.423217,0.53878,0.0701895,0.302681,0.466063,0.706054,0.0279509,0.748349,0.845393,0.809439,0.497418,0.72486,0.503463,0.746902,0.706022,0.19351,0.831176,0.418785,0.297138,0.0513276,0.104314,0.381933,0.432514,0.0333858,0.88988,0.290516,0.736187,0.611808,0.863098,0.162136,0.460846,0.544714,0.110493,0.762262,0.191317,0.792373,0.59152,0.585015,0.305701,|0.503866,0.515743,0.337922,0.629344,0.452931,0.0794725,0.316142,0.0652245,0.799197,0.953536,0.389237,0.469594,0.245299,0.903182,0.973073,0.54296,0.204942,0.116575,0.787394,0.0184737,0.148888,0.700666,0.11724,0.545964,0.14603,0.614945,0.0660505,0.219617,0.748084,0.643349,0.331955,0.54111,0.588934,0.180638,0.891708,0.838258,0.355788,0.963002,0.0687127,0.287385,0.64431,0.230286,0.568075,0.875864,0.483486,0.610607,0.410424,0.727348,0.482171,0.8245,0.237096,0.648284,0.412063,0.342221,0.607204,0.431234,0.387098,0.759315,0.863959,0.413468,0.255727,0.764163,0.821333,0.383133,0.0118226,0.910614,0.871713,0.055425,0.923614,0.624857,0.757725,0.680393,0.673105,0.325052,0.664461,0.120652,0.239064,0.184456,0.904122,0.756615,0.22675,0.577715,0.990494,0.411131,0.355991,0.608439,0.247307,0.919605,0.530109,0.171071,0.412306,0.397907,0.910242,0.670492,0.281629,0.528438,0.303914,0.357656,0.494382,0.58127,0.113758,0.0813673,0.791603,0.183543,0.364142,0.845845,0.873364,0.382315,0.906403,0.518545,0.697569,0.533397,0.501428,0.374598,0.00404364,0.0441236,0.536404,0.662032,0.183681,0.666794,0.833335,0.121957,0.421227,0.540073,0.926537,0.698529,0.0868658,0.215951,0.176782,0.406889,0.213609,0.332682,0.644899,0.735067,0.71495,0.0443783,0.319239,0.218459,0.450369,0.0609744,0.0760545,0.300681,0.78346,0.491346,0.556249,0.140989,0.615818,0.894745,0.591942,0.187728,0.2583,0.994871,0.121672,0.620968,0.763431,0.0282868,0.46822,0.255109,0.285815,0.706577,0.674094,0.601756,0.851208,0.29677,0.94442,0.835719,0.779926,0.119189,0.645803,0.747486,0.294637,0.710793,0.0531365,0.828578,0.542955,0.845179,0.392424,0.0844743,0.229978,0.183662,0.941381,0.993419,0.799627,0.897329,0.0508472,0.754754,0.0376304,0.932333,0.325854,0.387374,0.685109,0.813517,0.0615711,0.611917,0.763728,0.460959,0.0926192,0.237311,0.831363,0.881125,0.315154,0.891934,0.857607,0.348705,0.904091,0.234402,0.640943,0.676421,0.154812,0.0442414,0.28551,0.385392,0.076612,0.76961,0.798838,0.340384,0.61229,0.961498,0.26608,0.272532,0.358531,0.967841,0.734732,0.347512,0.0821067,0.940751,0.453083,0.216138,0.515572,0.805359,0.428677,0.947578,0.0811237,0.598387,0.470059,0.115404,0.26685,0.921176,0.706933,0.412078,0.126717,0.129187,0.547214,0.888865,0.982703,0.637488,0.0530722,0.796586,0.226174,0.727509,0.439241,0.812907,0.876169,0.985787,0.679861,0.493304,0.744607,0.802323,0.572565,0.19621,0.737753,0.934179,0.953112,0.0585734,0.997923,0.629032,0.75783,0.445957,0.944409,0.192942,0.0627675,0.72075,0.175695,0.714168,0.786906,0.711976,0.690153,0.5646,0.496955,0.56764,0.44417,0.791293,0.348444,0.0126863,0.284703,0.781098,0.560545,0.0937208,0.862544,0.862644,0.621405,0.579554,0.103049,0.344327,0.927724,0.138619,0.919801,0.662884,0.711233,0.0514336,0.965154,0.728663,0.448942,0.633546,0.451528,0.902241,0.846868,0.381225,0.367346,0.714632,0.328839,0.306169,0.95968,0.341184,0.723667,0.0523232,0.466185,0.290085,0.755981,0.336252,0.0909047,0.299287,0.696951,0.74928,0.906543,0.482705,0.196373,0.169446,0.0312253,0.938505,0.554415,0.731313,0.648113,0.862776,0.340216,0.0837981,0.109853,0.36968,0.256089,0.936379,0.202291,0.22309,0.52255,0.34294,0.0890121,0.259212,0.347514,0.328848,0.578203,0.665051,0.816807,0.269481,0.0883961,0.414987,0.220604,0.925447,0.157598,0.315674,0.937759,0.00710714,0.462905,0.323781,0.146026,0.00792712,0.661272,0.197602,0.857097,0.0240398,0.428541,0.0639288,0.0411237,0.18599,0.66512,0.314363,0.557258,0.544689,0.266103,0.702373,0.432522,0.0617311,0.613587,0.125575,0.0283291,0.135488,0.363617,0.0985973,0.861968,0.413954,0.823607,0.169478,0.64424,0.0742,0.412161,0.877301,0.547987,0.89602,0.558804,0.537345,0.609136,0.665066,0.72722,0.57475,0.553313,0.119792,0.864148,0.818188,0.836434,0.792086,0.550319,0.624792,0.575053,0.303257,0.151893,0.320255,0.399136,0.46056,0.348769,0.87494,0.0916224,0.804521,0.675042,0.85928,0.116345,0.272763,0.393864,0.785664,0.884426,0.809333,0.349677,0.75289,0.966316,0.225756,0.736502,0.0554242,0.291952,0.184383,0.792471,0.078866,0.223197,0.307809,0.369402,0.469634,0.979861,0.956647,0.335003,0.764152,0.778432,0.717179,0.83524,0.785089,0.241906,0.672418,0.204058,0.554307,0.666287,0.452177,0.637191,0.564087,0.683674,0.817427,0.473114,0.278233,0.75792,0.0476143,0.162258,0.157464,0.936146,0.981849,0.836174,0.374991,0.460303,0.381387,0.608291,0.78906,0.872068,0.315024,0.246419,0.659221,0.885666,0.605285,0.465306,0.357194,0.732831,0.891692,0.0894852,0.0551718,0.66635,0.584593,0.325253,0.675737,0.70158,0.599925,0.842211,0.690586,0.310126,0.0621532,0.347051,0.682647,0.614541,0.378094,0.366556,0.113597,0.549279,0.605982,0.600535,0.0250655,0.206302,0.271602,0.991065,0.606028,0.641229,0.526322,0.562883,0.551664,0.701305,0.786412,0.825822,0.159828,0.0733404,0.617334,0.627253,0.0365553,0.914269,0.527598,0.887099,0.159597,0.00717378,0.396613,0.809041,0.651254,0.51438,0.9,0.12381,0.481069,0.866651,0.590939,0.222631,0.109187,0.00207412,0.812793,0.630153,0.2721,0.380336,0.625523,0.728307,0.239446,0.205804,0.371914,0.746521,0.392981,0.182404,0.075142,0.119468,0.240667,0.0358609,0.551146,0.53338,0.518686,0.108866,0.588751,0.412045,0.587724,0.323321,0.141133,0.928148,0.526731,0.304732,0.993436,0.489903,0.196027,0.409287,0.222924,0.197858,0.702651,0.252411,0.797311,0.480523,0.0857571,0.214557,0.893124,0.559857,0.974292,0.180474,0.438612,0.937887,0.337539,0.184164,0.106621,0.38708,0.30753,0.493166,0.38388,0.21937,0.389324,0.615944,0.429286,0.714306,0.428158,0.811574,0.13597,0.771102,0.70845,0.853515,0.584873,0.209448,0.752762,0.962327,0.422254,0.613001,0.0512205,0.846921,0.304932,0.20511,0.330884,0.766986,0.0703419,0.81426,0.0711979,0.713159,0.627185,0.80605,0.525468,0.811694,0.228408,0.557297,0.072372,0.354268,0.862576,0.225835,0.968211,0.994754,0.261899,0.361596,0.632434,0.080656,0.921389,0.0560317,0.398453,0.606624,0.261768,0.0990182,0.633495,0.412138,0.527361,0.237978,0.854262,0.259598,0.442703,0.389736,0.66015,0.422162,0.0316024,0.404422,0.319821,0.978949,0.170089,0.222724,0.515796,0.456898,0.625384,0.195205,0.348441,0.278954,0.289328,0.794108,0.883742,0.587742,0.996091,0.53406,0.0366325,0.316996,0.0694364,0.716041,0.0560284,0.467729,0.536647,0.371421,0.319871,0.11661,0.141305,0.123193,0.414092,0.10438,0.974632,0.804676,0.0501926,0.775108,0.546412,0.376342,0.56883,0.984556,0.0222615,0.399469,0.244328,0.0455484,0.0286599,0.382593,0.0668209,0.338985,0.529395,0.410428,0.430703,0.635144,0.313955,0.463683,0.932788,0.676038,0.977477,0.785173,0.528034,0.156777,0.973506,0.275965,0.83378,0.45226,0.244495,0.882781,0.542422,0.681317,0.063905,0.216583,0.961272,0.521129,0.819322,0.550802,0.879194,0.98179,0.863489,0.590958,0.57006,0.460549,0.889422,0.335052,0.593874,0.39743,0.263559,0.691133,0.745752,0.44088,0.772457,0.398533,0.280643,0.419739,0.500977,0.473286,0.0439585,0.823731,0.588625,0.331087,0.667949,0.412858,0.506954,0.358379,0.989417,0.9601,0.340292,0.431647,0.198841,0.507357,0.910121,0.552727,0.58675,0.920337,0.432978,0.1824,0.420537,0.935915,0.629192,0.948398,0.0840964,0.422719,0.439845,0.227248,0.494778,0.948222,0.54658,0.582616,0.719984,0.170754,0.215081,0.887121,0.712564,0.214184,0.884297,0.633393,0.700612,0.1118,0.575328,0.834684,0.945324,0.543502,0.46827,0.601788,0.0819728,0.8558,0.290669,0.621633,0.318885,0.902352,0.748385,0.952768,0.579913,0.299325,0.262588,0.661558,0.929855,0.219021,0.0403982,0.457044,0.141181,0.0862591,0.876446,0.902539,0.733414,0.802153,0.0256767,0.0880666,0.769864,0.0647816,0.108551,0.539254,0.498911,0.812263,0.836018,0.284785,0.196598,0.638619,0.104803,0.748851,0.618322,0.199069,0.0505792,0.583423,0.971848,0.987741,0.719354,0.378027,0.266932,0.440457,0.730003,0.283845,0.603078,0.977669,0.776114,0.488872,0.50267,0.359856,0.235384,0.937911,0.791244,0.0811685,0.141152,0.81411,0.178857,0.700462,0.421555,0.0312417,0.154302,0.713953,0.66344,0.881289,0.332969,0.0210921,0.903363,0.568313,0.762423,0.501771,0.465687,0.288252,0.854768,0.562425,0.384353,0.532081,0.321426,0.835657,0.701492,0.528517,0.295653,0.547084,0.939702,0.260791,0.732572,0.550479,0.449436,0.335787,0.710031,0.520909,0.998208,0.680946,0.581984,0.643575,0.402904,0.242685,0.177162,0.177378,0.890451,0.024766,0.330488,0.942144,0.668702,0.308669,0.909781,0.271476,0.18762,0.941788,0.481773,0.124016,0.775311,0.454886,0.15162,0.701959,0.536201,0.157245,0.413102,0.641182,0.663484,0.702095,0.230929,0.921238,0.983645,0.46987,0.850733,0.931489,0.964609,0.920723,0.706289,0.752713,0.327805,0.136758,0.630735,0.261278,0.749285,0.817829,0.959473,0.162807,0.716064,0.71887,0.430424,0.0804354,0.687544,0.434883,0.568057,0.8983,0.487713,0.10716,0.0253793,0.732609,0.545699,0.36447,0.60303,0.718265,0.0674495,0.268585,0.499689,0.214456,0.945317,0.559157,0.896724,0.594369,0.554177,0.828732,0.855382,0.733989,0.610238,0.724314,0.684103,0.740085,0.137291,0.427293,0.174612,0.992785,0.812117,0.980121,0.983747,0.129073,0.424742,0.781458,0.669482,0.928184,0.11072,0.893754,0.737212,0.700076,0.137319,0.496023,0.803911,0.202832,0.646724,0.10901,0.105326,0.953881,0.0573774,0.527579,0.00140411,0.724491,0.143539,0.161636,0.631491,0.376604,0.770631,|0.905292,0.358589,0.741309,0.968618,0.150615,0.68339,0.669742,0.311045,0.410999,0.409588,0.349287,0.74221,0.304538,0.36011,0.754179,0.139088,0.136191,0.044528,0.624637,0.34292,0.979732,0.594391,0.420868,0.442158,0.392699,0.659686,0.800251,0.212314,0.0438589,0.322103,0.39143,0.685967,0.861631,0.708021,0.164538,0.886523,0.473887,0.766515,0.573636,0.500409,0.31242,0.644175,0.557124,0.771093,0.574878,0.513092,0.858423,0.989181,0.645952,0.0169342,0.917846,0.36457,0.62477,0.892429,0.449102,0.831494,0.561204,0.273345,0.961342,0.285582,0.31017,0.27629,0.771675,0.967958,0.0695282,0.779118,0.478898,0.656617,0.896965,0.573717,0.271661,0.301468,0.546797,0.325556,0.63793,0.92271,0.00119531,0.0952391,0.377429,0.72937,0.0753152,0.0665854,0.733254,0.130671,0.0724199,0.822168,0.45062,0.667806,0.981525,0.28019,0.639336,0.633441,0.193374,0.313899,0.516432,0.728863,0.762922,0.694156,0.239331,0.35207,0.732104,0.403487,0.175209,0.820917,0.908005,0.565538,0.405897,0.758353,0.463959,0.465863,0.544959,0.067764,0.740434,0.116017,0.202079,0.465362,0.808084,0.191782,0.889491,0.985883,0.741315,0.757354,0.505598,0.699807,0.767526,0.748345,0.336193,0.210401,0.690866,0.565989,0.259636,0.341693,0.580702,0.461993,0.409156,0.383108,0.227146,0.602839,0.917583,0.275679,0.755447,0.189086,0.0845,0.629227,0.301328,0.17109,0.59906,0.509398,0.655807,0.976037,0.273223,0.797127,0.532694,0.176943,0.0879469,0.721682,0.63932,0.945479,0.419558,0.842135,0.11718,0.585901,0.66475,0.448374,0.719778,0.108516,0.121674,0.603171,0.478202,0.921358,0.181835,0.713561,0.685576,0.16469,0.0439473,0.979992,0.218812,0.115404,0.130401,0.578478,0.400617,0.255253,0.0350921,0.887306,0.834048,0.0171009,0.732801,0.0384506,0.415995,0.891249,0.237703,0.523593,0.634741,0.250447,0.657902,0.123902,0.910218,0.452994,0.329535,0.715109,0.18446,0.432424,0.792026,0.536765,0.91827,0.851115,0.380549,0.28168,0.938888,0.368349,0.762188,0.0788888,0.858134,0.0734917,0.637493,0.576982,0.358732,0.283998,0.945874,0.160645,0.345762,0.906498,0.121527,0.243048,0.445285,0.531328,0.734687,0.57987,0.248141,0.993695,0.505817,0.17356,0.285351,0.873837,0.202176,0.958053,0.317087,0.797189,0.665338,0.432711,0.471345,0.670492,0.983592,0.572528,0.0157986,0.640375,0.165915,0.430062,0.988953,0.793758,0.469094,0.294792,0.0100993,0.0971543,0.0550921,0.352596,0.132112,0.84534,0.425488,0.0672256,0.295738,0.925588,0.239623,0.118528,0.0596529,0.463083,0.431026,0.438908,0.840109,0.414275,0.0700725,0.414523,0.1486,0.733116,0.241645,0.0614793,0.438066,0.473423,0.553216,0.366891,0.499361,0.922385,0.939635,0.836756,0.767465,0.932663,0.0386816,0.250163,0.595677,0.876113,0.353415,0.411149,0.916479,0.0153992,0.905876,0.848889,0.316868,0.187603,0.47767,0.304985,0.644172,0.0215594,0.0294327,0.376057,0.296166,0.656164,0.120603,0.871437,0.0688831,0.0954386,0.56765,0.202972,0.767171,0.0966098,0.0709584,0.0675316,0.229617,0.613911,0.650039,0.900491,0.350559,0.788231,0.0335717,0.21484,0.505904,0.218247,0.778634,0.591777,0.259607,0.571947,0.899627,0.886101,0.133144,0.531656,0.443639,0.471395,0.855112,0.142568,0.471606,0.374317,0.93058,0.111954,0.969808,0.976268,0.384006,0.401715,0.135085,0.160008,0.00703162,0.655019,0.542246,0.0795534,0.274342,0.123636,0.718652,0.31461,0.637332,0.167119,0.760327,0.541758,0.0578973,0.79107,0.51742,0.537425,0.934037,0.917913,0.681376,0.211922,0.0875267,0.936161,0.283086,0.130549,0.0633582,0.820264,0.978327,0.0764325,0.953319,0.459239,0.913956,0.697033,0.535878,0.311514,0.372621,0.928121,0.00338072,0.709482,0.911143,0.507664,0.99291,0.790536,0.686572,0.617159,0.334226,0.07434,0.0674174,0.331284,0.123768,0.636073,0.708931,0.111899,0.788562,0.626126,0.680386,0.0720905,0.561712,0.379617,0.326232,0.602329,0.0050633,0.801436,0.609007,0.883023,0.249253,0.885212,0.64508,0.587637,0.309894,0.583798,0.158551,0.106973,0.0913454,0.595102,0.0854453,0.454973,0.507602,0.608998,0.599777,0.899569,0.879122,0.00898629,0.984299,0.492949,0.770342,0.912585,0.0333541,0.83699,0.280942,0.625694,0.638307,0.744824,0.125645,0.312735,0.707911,0.293811,0.888178,0.303821,0.992432,0.432021,0.480031,0.737518,0.515007,0.693217,0.880087,0.671968,0.942764,0.00620288,0.84423,0.622881,0.452375,0.324391,0.360985,0.403838,0.473659,0.835379,0.673879,0.676572,0.364221,0.747133,0.109781,0.559896,0.314931,0.79175,0.291229,0.964974,0.343166,0.749232,0.0875674,0.512286,0.54198,0.212116,0.737524,0.0127239,0.348488,0.82014,0.38955,0.440856,0.450279,0.690637,0.937571,0.922964,0.337156,0.495931,0.103999,0.896987,0.513002,0.367809,0.972823,0.174284,0.44506,0.985054,0.970676,0.71031,0.400077,0.0932364,0.750017,0.494178,0.516313,0.717232,0.164929,0.705817,0.423954,0.201257,0.64076,0.972109,0.166029,0.689975,0.791539,0.967629,0.147497,0.860855,0.45705,0.0449974,0.377557,0.481581,0.688869,0.902746,0.382676,0.574078,0.397457,0.511972,0.732224,0.383963,0.0260989,0.138381,0.998154,0.520443,0.360777,0.32852,0.797419,0.278795,0.197795,0.235103,0.665191,0.944312,0.446354,0.299152,0.665595,0.953469,0.875795,0.727587,0.221204,0.469431,0.264714,0.346901,0.57954,0.379249,0.701828,0.0339028,0.762185,0.813618,0.819888,0.899973,0.907788,0.138809,0.0793211,0.556194,0.354129,0.127145,0.161283,0.489534,0.836088,0.186575,0.581176,0.209933,0.82465,0.979336,0.175634,0.376606,0.154143,0.79658,0.389151,0.876658,0.795319,0.593111,0.516714,0.0117748,0.0543668,0.521056,0.310015,0.00408804,0.618996,0.0165016,0.0323981,0.421563,0.671287,0.292628,0.885617,0.798659,0.362319,0.866738,0.762884,0.321655,0.497964,0.914089,0.531415,0.76214,0.249299,0.442846,0.863085,0.260731,0.176429,0.885459,0.62135,0.936285,0.397935,0.37803,0.700127,0.82166,0.0427483,0.921216,0.423805,0.139614,0.581258,0.646418,0.0380518,0.524673,0.915519,0.0440974,0.790343,0.280922,0.870532,0.619726,0.223578,0.972628,0.782938,0.710564,0.721107,0.133203,0.329367,0.344465,0.651814,0.468316,0.446254,0.117087,0.833755,0.0698659,0.0895673,0.480235,0.813431,0.0950344,0.576107,0.683545,0.903183,0.763637,0.497344,0.639457,0.724406,0.321672,0.844883,0.660667,0.898566,0.250256,0.352623,0.20598,0.173877,0.927657,0.933634,0.555058,0.931179,0.850335,0.717004,0.929343,0.762237,0.397845,0.819453,0.307907,0.321278,0.0937439,0.146425,0.562141,0.117596,0.746877,0.938604,0.0882897,0.231299,0.144807,0.809076,0.256871,0.608714,0.942738,0.369197,0.249823,0.664218,0.460115,0.665019,0.29351,0.683307,0.594811,0.816567,0.124539,0.853991,0.439274,0.94465,0.770315,0.654915,0.466772,0.918501,0.51658,0.517711,0.702028,0.33648,0.170366,0.949188,0.635213,0.749725,0.0937526,0.776713,0.403229,0.961207,0.959519,0.0680869,0.88744,0.827699,0.786086,0.586479,0.328754,0.371151,0.176663,0.00743538,0.191292,0.244091,0.81933,0.330877,0.463181,0.137386,0.49243,0.400492,0.512863,0.71395,0.36944,0.837656,0.275132,0.812287,0.0570032,0.715774,0.393758,0.634468,0.311913,0.234206,0.529191,0.170024,0.882127,0.972302,0.382878,0.323765,0.530412,0.424703,0.366578,0.562709,0.354442,0.292826,0.455114,0.727751,0.476835,0.636834,0.240369,0.1641,0.140036,0.242132,0.278571,0.483336,0.230983,0.69766,0.897589,0.809999,0.96319,0.236839,0.0502697,0.503354,0.173048,0.654336,0.428659,0.939193,0.514952,0.837884,0.476565,0.514809,0.486756,0.299756,0.501501,0.262189,0.856798,0.0634112,0.353745,0.431364,0.883052,0.60624,0.390918,0.437729,0.593881,0.785292,0.512295,0.761029,0.910734,0.0782259,0.112303,0.165916,0.384185,0.26604,0.52936,0.249157,0.610647,0.510924,0.532896,0.593888,0.496061,0.739087,0.365571,0.160556,0.899457,0.416487,0.674671,0.534855,0.232574,0.843882,0.689546,0.241762,0.181822,0.537313,0.797908,0.0569828,0.51332,0.420145,0.688779,0.183471,0.666018,0.214667,0.726297,0.322757,0.154247,0.232536,0.120008,0.784724,0.855149,0.74791,0.965263,0.55793,0.141092,0.746829,0.501248,0.170645,0.212246,0.235171,0.55403,0.440544,0.332652,0.25211,0.340251,0.666346,0.381759,0.225127,0.254019,0.901057,0.580884,0.0669172,0.734626,0.713092,0.637094,0.421996,0.840483,0.473994,0.937844,0.47264,0.0885111,0.61759,0.203737,0.700133,0.309663,0.425909,0.349975,0.413739,0.993811,0.451256,0.185359,0.0267039,0.762548,0.281699,0.420036,0.0240312,0.466179,0.507732,0.852215,0.135987,0.843828,0.245649,0.788737,0.432192,0.404005,0.197573,0.858101,0.161776,0.481898,0.764433,0.0182949,0.264849,0.324667,0.705662,0.643211,0.811491,0.691824,0.380517,0.305212,0.378346,0.663039,0.685338,0.303569,0.119986,0.26494,0.0908293,0.217298,0.839812,0.243741,0.692902,0.277964,0.854502,0.0379984,0.690745,0.834131,0.147893,0.711615,0.717041,0.259488,0.313729,0.3241,0.283724,0.0449299,0.438632,0.808276,0.727882,0.544921,0.394832,0.497449,0.558063,0.460619,0.302418,0.33185,0.897942,0.136586,0.822459,0.740009,0.217126,0.465725,0.00140935,0.242521,0.998886,0.585494,0.142498,0.75788,0.533146,0.622201,0.371228,0.713452,0.987197,0.762218,0.170629,0.441284,0.0778971,0.537165,0.790178,0.603788,0.296138,0.390362,0.765017,0.042385,0.837256,0.887063,0.473954,0.345861,0.404849,0.564813,0.163584,0.307901,0.919925,0.0665343,0.812559,0.928326,0.541424,0.471672,0.576551,0.662684,0.592095,0.383299,0.706189,0.204878,0.689002,0.266769,0.682171,0.644806,0.213995,0.118224,|0.758811,0.890306,0.842424,0.638359,0.767401,0.950991,0.0938608,0.488458,0.618018,0.828372,0.670605,0.623961,0.46849,0.338886,0.19103,0.217738,0.088448,0.9393,0.107027,0.104162,0.0639835,0.791326,0.0634073,0.643124,0.583251,0.629315,0.396495,0.37043,0.286217,0.975859,0.137209,0.4605,0.584734,0.321314,0.425556,0.0203818,0.196081,0.668534,0.850414,0.878249,0.652478,0.912502,0.404165,0.039015,0.105319,0.368018,0.795794,0.21298,0.171792,0.500989,0.958574,0.272023,0.538026,0.820238,0.76322,0.79074,0.744371,0.261925,0.175719,0.522431,0.642592,0.422883,0.856068,0.130617,0.734929,0.886683,0.675432,0.276047,0.0956873,0.0289186,0.435798,0.0817114,0.400741,0.494192,0.0370944,0.478086,0.533499,0.551474,0.0613275,0.346617,0.946201,0.804711,0.854163,0.401678,0.207638,0.940242,0.029678,0.579372,0.420402,0.545918,0.482945,0.806897,0.0392344,0.991527,0.852434,0.0768596,0.120352,0.138999,0.622535,0.0221143,0.647004,0.0559683,0.785023,0.761549,0.923461,0.775803,0.468707,0.796675,0.869154,0.333525,0.469426,0.46392,0.51641,0.270077,0.928272,0.784237,0.206592,0.693937,0.846287,0.56616,0.51436,0.195793,0.70294,0.120899,0.455484,0.843839,0.528422,0.56901,0.39113,0.0968712,0.76479,0.931551,0.586065,0.620179,0.606782,0.534892,0.435265,0.198139,0.363352,0.164649,0.266142,0.430197,0.530806,0.665928,0.603904,0.474506,0.0397043,0.816983,0.35498,0.159498,0.972889,0.572029,0.0990418,0.09382,0.340779,0.598026,0.282634,0.464383,0.612762,0.0221691,0.205649,0.746056,0.668401,0.63286,0.925413,0.384097,0.800476,0.423049,0.251483,0.564491,0.820901,0.646647,0.724911,0.539923,0.765894,0.000419199,0.603966,0.225117,0.269103,0.925924,0.2874,0.0245878,0.81607,0.422473,0.172462,0.838296,0.791315,0.106798,0.88029,0.77877,0.478444,0.0115446,0.364024,0.619451,0.847172,0.73059,0.619549,0.210126,0.999267,0.1861,0.854547,0.621285,0.329991,0.651849,0.75106,0.9648,0.61486,0.876178,0.668432,0.314364,0.0612832,0.205384,0.62034,0.87061,0.523044,0.129416,0.791272,0.0687265,0.696614,0.033285,0.957998,0.944629,0.293788,0.950184,0.0127701,0.147986,0.973412,0.871608,0.242753,0.42906,0.864725,0.159006,0.879317,0.767854,0.332704,0.163905,0.129758,0.532458,0.415938,0.377073,0.0874108,0.532856,0.888261,0.485254,0.274506,0.406119,0.821843,0.461916,0.992075,0.752156,0.517082,0.967135,0.545096,0.0609801,0.0172353,0.823203,0.513697,0.973244,0.623445,0.848147,0.782939,0.306431,0.764973,0.48412,0.260054,0.090494,0.144542,0.230099,0.506567,0.257727,0.706869,0.646536,0.850827,0.0926892,0.820625,0.822753,0.516819,0.226541,0.266436,0.171188,0.668406,0.60404,0.487702,0.272067,0.0974034,0.540646,0.352786,0.132806,0.916059,0.713588,0.479402,0.1253,0.820484,0.0250686,0.369281,0.209428,0.220113,0.968273,0.0870027,0.572361,0.28929,0.14071,0.795683,0.805535,0.0628778,0.397191,0.156757,0.80083,0.286815,0.850991,0.118045,0.847922,0.264755,0.206069,0.200968,0.0428303,0.32902,0.163381,0.199883,0.49673,0.741365,0.484595,0.852281,0.3793,0.00799882,0.451604,0.891279,0.0827545,0.1157,0.385976,0.823737,0.698174,0.71241,0.767534,0.798146,0.594459,0.924202,0.036094,0.544202,0.0601074,0.748756,0.394307,0.817901,0.0832276,0.941501,0.856644,0.224619,0.986157,0.351604,0.167672,0.754064,0.448757,0.998021,0.435048,0.306557,0.907016,0.0732828,0.392579,0.239346,0.954723,0.1616,0.589681,0.396499,0.314882,0.712622,0.969103,0.292537,0.741899,0.390336,0.316326,0.310768,0.167484,0.921493,0.617429,0.413495,0.867863,0.0490453,0.222854,0.855107,0.389182,0.505954,0.843448,0.251453,0.342038,0.0503826,0.338233,0.404106,0.292425,0.849286,0.856669,0.652933,0.70009,0.82162,0.512414,0.515031,0.268002,0.356002,0.94339,0.481979,0.607561,0.874041,0.353195,0.619044,0.960651,0.890343,0.205187,0.00870073,0.763617,0.286463,0.236639,0.452281,0.722066,0.505808,0.645451,0.617191,0.310024,0.814978,0.903695,0.561782,0.513623,0.810528,0.381115,0.177252,0.479535,0.92692,0.771132,0.922233,0.0332436,0.801956,0.290407,0.681336,0.748527,0.00483835,0.294464,0.770568,0.689109,0.0722917,0.133005,0.422059,0.971415,0.106474,0.504324,0.918965,0.727297,0.934493,0.927284,0.496395,0.951077,0.363636,0.33929,0.626865,0.829206,0.113182,0.647483,0.447668,0.194444,0.97381,0.707463,0.27551,0.54955,0.0490379,0.593188,0.318693,0.331637,0.538737,0.0165939,0.187913,0.907401,0.482933,0.401126,0.576916,0.537758,0.19132,0.0475786,0.56202,0.139706,0.52365,0.101336,0.0125077,0.730477,0.795062,0.543288,0.379086,0.823754,0.361443,0.0987219,0.556902,0.842991,0.382478,0.0801321,0.106335,0.88977,0.576121,0.142226,0.225854,0.728653,0.293512,0.963557,0.742251,0.377099,0.665376,0.619605,0.754789,0.118158,0.209479,0.985952,0.056859,0.870034,0.712767,0.170237,0.232731,0.775718,0.470971,0.427134,0.777316,0.175292,0.723069,0.028231,0.168258,0.942925,0.833699,0.323854,0.762953,0.866225,0.0795828,0.629035,0.721781,0.382129,0.407174,0.809683,0.62887,0.775698,0.496858,0.751714,0.743518,0.377831,0.83081,0.472347,0.643681,0.87522,0.190859,0.292546,0.0119026,0.820812,0.376651,0.611335,0.146333,0.86721,0.0286756,0.237477,0.734817,0.0476999,0.508035,0.208959,0.444467,0.560775,0.495382,0.0366485,0.561293,0.509451,0.609284,0.617105,0.06696,0.599853,0.883024,0.0582772,0.518575,0.170477,0.64012,0.383398,0.0543919,0.0110761,0.400471,0.944622,0.358998,0.316012,0.0236318,0.4466,0.436485,0.548792,0.276846,0.953258,0.257332,0.757281,0.467894,0.324936,0.117587,0.466156,0.23419,0.414729,0.616349,0.766874,0.256092,0.947909,0.495351,0.961612,0.183349,0.934324,0.794234,0.534183,0.168503,0.624677,0.181655,0.453361,0.818374,0.846578,0.875212,0.21978,0.383395,0.281505,0.275169,0.485281,0.0357711,0.514318,0.00793451,0.126607,0.858463,0.998842,0.625785,0.393051,0.162393,0.512396,0.772615,0.709267,0.279561,0.358727,0.596169,0.791798,0.318959,0.611575,0.0268065,0.381474,0.801481,0.897167,0.642826,0.0724476,0.0929427,0.473621,0.79478,0.619539,0.858614,0.568787,0.463432,0.927953,0.900619,0.476396,0.09952,0.315001,0.884259,0.37962,0.285736,0.383301,0.459248,0.920437,0.866241,0.796458,0.489848,0.469185,0.415324,0.284808,0.539071,0.95627,0.385962,0.102602,0.811795,0.714495,0.295745,0.43114,0.997624,0.752356,0.191169,0.754387,0.698921,0.679024,0.964407,0.754543,0.571441,0.969261,0.998908,0.602395,0.779235,0.376434,0.116618,0.772116,0.168973,0.676465,0.826158,0.408979,0.0415057,0.257953,0.841712,0.548293,0.574219,0.498891,0.651429,0.0470368,0.00684237,0.954428,0.205974,0.960162,0.885821,0.866421,0.457131,0.603546,0.173766,0.0802931,0.26738,0.06287,0.0445893,0.699293,0.704121,0.869872,0.914432,0.554822,0.289287,0.220644,0.620504,0.413109,0.104979,0.302409,0.569416,0.49449,0.220129,0.876894,0.521971,0.0479329,0.752771,0.702915,0.203193,0.380888,0.915151,0.786717,0.855131,0.535363,0.522485,0.123411,0.989053,0.413014,0.782851,0.884486,0.161743,0.688865,0.341189,0.301102,0.616716,0.444739,0.290949,0.45946,0.737903,0.798681,0.739692,0.695547,0.277877,0.114766,0.177877,0.613564,0.783592,0.964548,0.948839,0.472997,0.189301,0.752589,0.136692,0.821651,0.839558,0.867414,0.606874,0.889175,0.493661,0.197488,0.682532,0.515442,0.367127,0.818291,0.494829,0.32845,0.612454,0.420744,0.430508,0.284544,0.441811,0.318931,0.135391,0.713604,0.845022,0.849866,0.514647,0.0551305,0.859039,0.569584,0.996692,0.729729,0.145505,0.222078,0.914753,0.0412207,0.560406,0.941704,0.112268,0.565954,0.761124,0.487421,0.316047,0.730319,0.0814707,0.477321,0.239574,0.0614539,0.869177,0.285764,0.272578,0.19218,0.841017,0.684939,0.513039,0.379351,0.7266,0.630262,0.368409,0.625757,0.968505,0.19682,0.358623,0.993621,0.0565849,0.5974,0.236447,0.963213,0.643244,0.104694,0.260144,0.849832,0.279508,0.529743,0.0342763,0.966914,0.539869,0.302438,0.164576,0.593418,0.339377,0.218828,0.455502,0.304803,0.137211,0.170513,0.86282,0.763185,0.912978,0.169978,0.224547,0.31911,0.416634,0.965249,0.248669,0.528407,0.160547,0.753551,0.927625,0.54802,0.371489,0.657922,0.448632,0.794628,0.53061,0.863577,0.635286,0.853239,0.958733,0.77522,0.306089,0.827638,0.567366,0.503489,0.590608,0.237879,0.533137,0.362512,0.60602,0.703571,0.0492503,0.0418391,0.560972,0.70792,0.852936,0.353166,0.464692,0.420973,0.286258,0.453788,0.511197,0.403808,0.687291,0.816534,0.0709859,0.0534048,0.232449,0.653077,0.794525,0.179911,0.337656,0.953343,0.598514,0.78585,0.283869,0.424736,0.314185,0.831282,0.684581,0.56894,0.209448,0.229609,0.287086,0.992136,0.818719,0.132453,0.345378,0.242924,0.230209,0.579624,0.949979,0.960501,0.319908,0.340375,0.591982,0.0107208,0.126379,0.0457629,0.797091,0.510832,0.943928,0.720579,0.109956,0.757112,0.36448,0.862408,0.184728,0.297437,0.676526,0.55883,0.254948,0.184912,0.274352,0.378884,0.74332,0.700264,0.403629,0.782947,0.891421,0.500421,0.190922,0.528962,0.490193,0.999105,0.801953,0.69044,0.0211834,0.981508,0.601794,0.405968,0.27781,0.400228,0.225624,0.321334,0.762376,0.92972,0.266852,0.632655,0.466148,0.0411248,0.599938,0.148548,0.846401,0.734785,0.220539,0.729428,0.897649,0.269989,0.693954,0.396184,0.394536,0.370053,0.970476,0.607165,0.163354,0.994518,0.0147703,0.151728,0.832593,0.959067,0.315748,0.628013,0.776976,0.0530629,0.47187,0.389802,0.242306,0.765817,0.922636,0.54325,|0.893663,0.581224,0.107732,0.276702,0.360446,0.566371,0.684152,0.404606,0.384729,0.971374,0.268101,0.274931,0.912388,0.131142,0.141832,0.751833,0.671612,0.973131,0.702965,0.796858,0.591401,0.875245,0.173384,0.107542,0.566517,0.805282,0.560847,0.245766,0.209286,0.956453,0.533395,0.686369,0.963343,0.920078,0.673586,0.144383,0.771328,0.56194,0.0778649,0.602533,0.762175,0.535235,0.965587,0.180762,0.814656,0.157501,0.206955,0.772545,0.59498,0.111309,0.275538,0.0364497,0.269453,0.0221804,0.298784,0.420589,0.951617,0.984276,0.157209,0.0976719,0.708114,0.242132,0.405454,0.185834,0.370263,0.847617,0.409651,0.235813,0.338392,0.18521,0.0782298,0.834497,0.676214,0.350975,0.125963,0.397283,0.554839,0.244337,0.824047,0.992122,0.00663412,0.448872,0.354514,0.0268173,0.611621,0.210542,0.682393,0.760426,0.451259,0.259497,0.235906,0.955272,0.213776,0.362168,0.159564,0.540992,0.937835,0.6513,0.170805,0.752804,0.053824,0.269159,0.806094,0.88382,0.835998,0.534667,0.734427,0.535435,0.372849,0.904911,0.410017,0.131664,0.979168,0.793708,0.784849,0.592889,0.918449,0.180823,0.861182,0.727761,0.485145,0.727589,0.188413,0.612975,0.651507,0.497657,0.461804,0.972579,0.870135,0.405329,0.042452,0.551471,0.908943,0.827331,0.802476,0.415089,0.501379,0.203726,0.330837,0.469,0.0407963,0.630142,0.975387,0.331382,0.247351,0.0595689,0.0191718,0.0831015,0.204693,0.39327,0.641563,0.789502,0.500894,0.807788,0.312066,0.679709,0.407691,0.31406,0.311022,0.31618,0.652918,0.769146,0.692882,0.000629544,0.116211,0.412355,0.533878,0.168939,0.00802249,0.695503,0.70759,0.18046,0.302387,0.690396,0.448084,0.896853,0.85454,0.148927,0.965023,0.699992,0.912699,0.140248,0.565303,0.568621,0.711892,0.181099,0.0262839,0.357691,0.977409,0.770581,0.388374,0.359573,0.253671,0.531681,0.420949,0.33619,0.372555,0.51793,0.577191,0.73686,0.523627,0.537771,0.231725,0.774089,0.332465,0.958481,0.202525,0.480891,0.746041,0.860372,0.453241,0.237799,0.841334,0.0943492,0.649794,0.286872,0.131034,0.668789,0.91844,0.0213266,0.889609,0.153004,0.280953,0.70915,0.714312,0.295003,0.434155,0.0504346,0.968363,0.0250666,0.533979,0.343728,0.51402,0.501709,0.195756,0.536796,0.3868,0.31903,0.172516,0.777679,0.52913,0.841469,0.30821,0.678219,0.578011,0.520444,0.919708,0.316024,0.909608,0.708871,0.179039,0.111957,0.74807,0.831993,0.0140736,0.215106,0.346304,0.867433,0.0554569,0.249789,0.433357,0.912834,0.289168,0.439526,0.460647,0.996381,0.681727,0.634885,0.330624,0.0128356,0.167636,0.665467,0.280243,0.461843,0.935416,0.604698,0.614609,0.104473,0.379527,0.877536,0.51716,0.573031,0.780756,0.781308,0.356296,0.478513,0.0103779,0.394174,0.983589,0.348518,0.267752,0.664067,0.243758,0.735007,0.931136,0.468737,0.396596,0.678309,0.406202,0.111483,0.943108,0.233327,0.572123,0.333257,0.354945,0.0331439,0.920593,0.877757,0.847969,0.0714659,0.24314,0.212907,0.228762,0.554753,0.755521,0.315586,0.211836,0.164832,0.907167,0.655761,0.544654,0.217497,0.355273,0.663159,0.469878,0.174475,0.139165,0.360871,0.376514,0.956907,0.184613,0.206277,0.693411,0.672621,0.701742,0.484788,0.324002,0.673388,0.899129,0.394593,0.594508,0.241206,0.86077,0.188144,0.45376,0.586978,0.0629244,0.460424,0.0905561,0.097083,0.389451,0.326735,0.842048,0.57824,0.0871655,0.406143,0.258103,0.0141875,0.980394,0.265194,0.258161,0.342682,0.210774,0.179392,0.0631241,0.214445,0.0982484,0.257063,0.311733,0.493797,0.951136,0.990239,0.920196,0.25939,0.00930792,0.116974,0.579026,0.929708,0.316591,0.988131,0.36733,0.467534,0.447595,0.548124,0.318749,0.909975,0.427213,0.97739,0.961231,0.295027,0.204748,0.485192,0.804158,0.992596,0.98989,0.193123,0.898649,0.0419143,0.779807,0.228628,0.420133,0.937508,0.686322,0.45844,0.990905,0.849843,0.500549,0.305491,0.480579,0.819072,0.456162,0.481626,0.858407,0.465294,0.299369,0.765466,0.42353,0.666517,0.857067,0.693205,0.11464,0.598689,0.798511,0.678239,0.331558,0.573978,0.515927,0.568017,0.24044,0.584743,0.916274,0.658444,0.714393,0.931941,0.211104,0.618989,0.701552,0.393122,0.286648,0.837428,0.894078,0.0303171,0.160005,0.0969092,0.220475,0.414913,0.758086,0.312433,0.801329,0.840298,0.689464,0.444929,0.327563,0.256553,0.802909,0.885795,0.577864,0.159825,0.71395,0.846821,0.523992,0.14868,0.263969,0.0692163,0.546608,0.977556,0.180046,0.428628,0.586334,0.219233,0.944362,0.48275,0.268196,0.791997,0.583371,0.939324,0.683855,0.212763,0.346467,0.744092,0.429879,0.517216,0.130541,0.749482,0.892777,0.71052,0.780249,0.246941,0.490496,0.377371,0.278983,0.777296,0.614718,0.85224,0.700221,0.636986,0.0187832,0.354877,0.209135,0.586446,0.00576836,0.91169,0.179233,0.0520499,0.260163,0.704528,0.862638,0.50049,0.44443,0.165142,0.909309,0.523383,0.621533,0.262536,0.511317,0.57778,0.481544,0.131309,0.268498,0.344996,0.759347,0.668855,0.367104,0.36082,0.312607,0.95,0.65388,0.349471,0.191124,0.850466,0.806812,0.325073,0.791285,0.904843,0.274956,0.321963,0.034368,0.198751,0.108229,0.700724,0.43924,0.440737,0.652075,0.437456,0.158067,0.666678,0.724364,0.417987,0.648387,0.612097,0.91686,0.909668,0.568202,0.171344,0.0135459,0.562786,0.468125,0.304402,0.594367,0.244831,0.131386,0.446207,0.0635629,0.118109,0.52467,0.980839,0.783995,0.933501,0.243726,0.556388,0.908135,0.303194,0.583384,0.00670338,0.38461,0.914546,0.651142,0.520128,0.58325,0.209114,0.0724813,0.232911,0.719644,0.630003,0.505047,0.18288,0.935209,0.293607,0.866731,0.06891,0.10756,0.695261,0.652918,0.599565,0.447781,0.417499,0.374305,0.725194,0.513159,0.991773,0.206013,0.173029,0.076457,0.378792,0.231619,0.229274,0.763862,0.871253,0.075234,0.385185,0.777229,0.609194,0.119996,0.745312,0.481578,0.596046,0.403914,0.647758,0.895709,0.21082,0.449293,0.11006,0.773385,0.774296,0.821572,0.293334,0.94359,0.93553,0.126432,0.529055,0.309946,0.0683544,0.306986,0.847182,0.847554,0.704063,0.406076,0.152713,0.141354,0.770841,0.0432242,0.285265,0.614927,0.578765,0.45065,0.579081,0.319951,0.0650597,0.823777,0.927402,0.0173771,0.951298,0.573703,0.771459,0.517348,0.484534,0.425359,0.370878,0.941234,0.162225,0.664508,0.64166,0.687486,0.0390245,0.822017,0.226513,0.474498,0.0661728,0.61199,0.81965,0.956087,0.978322,0.322686,0.0374709,0.12591,0.24961,0.167192,0.174479,0.278231,0.672631,0.0233874,0.574992,0.775241,0.273775,0.269274,0.541348,0.309784,0.170312,0.982869,0.202463,0.544352,0.61807,0.206204,0.908126,0.815474,0.767755,0.106666,0.169125,0.415953,0.821554,0.992935,0.680956,0.410528,0.775656,0.790703,0.921318,0.22255,0.340706,0.97611,0.116518,0.726243,0.629977,0.242727,0.842472,0.579384,0.00532961,0.413352,0.763301,0.364238,0.103731,0.569743,0.808326,0.895429,0.905655,0.0569534,0.218009,0.26883,0.629482,0.483067,0.479508,0.430746,0.707002,0.278097,0.0735533,0.00126916,0.167029,0.823118,0.595386,0.492455,0.410127,0.616122,0.458675,0.973715,0.434903,0.717097,0.0198711,0.898732,0.362459,0.00184077,0.344214,0.0300584,0.945103,0.72066,0.602983,0.864618,0.0039674,0.539905,0.965117,0.839334,0.387218,0.0609918,0.378326,0.671402,0.365978,0.408036,0.295414,0.748336,0.218973,0.596775,0.87134,0.902989,0.415541,0.984881,0.034084,0.936646,0.903524,0.262378,0.227835,0.328966,0.814662,0.509997,0.0859704,0.163612,0.920397,0.807591,0.94637,0.81713,0.79174,0.229899,0.383125,0.835431,0.480247,0.827231,0.766311,0.152174,0.868812,0.211308,0.763903,0.388247,0.887554,0.748897,0.969105,0.0831778,0.14428,0.998902,0.509225,0.784957,0.0445548,0.501062,0.254119,0.600377,0.575409,0.366084,0.814315,0.573938,0.535334,0.783098,0.659911,0.786228,0.803829,0.96523,0.912444,0.960909,0.812087,0.777762,0.580244,0.780384,0.36508,0.701759,0.269918,0.562469,0.734222,0.615646,0.929865,0.508714,0.111754,0.236736,0.253142,0.542537,0.897505,0.567789,0.577476,0.00941736,0.136486,0.444397,0.421452,0.623086,0.938606,0.668481,0.627265,0.623602,0.598466,0.0220458,0.33667,0.453122,0.273252,0.0615942,0.486808,0.701516,0.948865,0.751493,0.0170937,0.161588,0.759531,0.952875,0.364567,0.636908,0.882569,0.501448,0.756825,0.0221962,0.823188,0.738954,0.090982,0.489486,0.961108,0.999043,0.931159,0.0609927,0.921807,0.30698,0.438472,0.0797755,0.0180225,0.0872524,0.43433,0.0946436,0.320142,0.103312,0.260203,0.24694,0.117658,0.0165589,0.452582,0.236783,0.213301,0.328139,0.984032,0.988762,0.68696,0.262887,0.578634,0.53459,0.853054,0.669014,0.555931,0.533364,0.169087,0.774707,0.309666,0.739822,0.757756,0.190649,0.419917,0.919086,0.603511,0.188413,0.845562,0.253326,0.910323,0.543832,0.218564,0.920148,0.154539,0.566482,0.751252,0.568721,0.243211,0.541802,0.529078,0.486867,0.578099,0.0892746,0.691049,0.106814,0.0643558,0.673905,0.653041,0.955254,0.650817,0.564892,0.593368,0.181695,0.563503,0.0100057,0.163784,0.801869,0.603948,0.975994,0.141134,0.68829,0.550563,0.87478,0.924201,0.0771626,0.357618,0.0430843,0.794876,0.45218,0.0287215,0.436615,0.788724,0.68311,0.494531,0.504071,0.658395,0.0369142,0.0493121,0.203698,0.39988,0.11201,0.598127,0.723347,0.856614,0.226903,0.863645,0.987463,0.96286,0.923939,0.372019,0.382172,0.254179,0.229869,0.310738,0.647345,0.431568,0.0347615,0.407412,0.482263,0.114213,0.0189472,0.852512,0.206405,0.734293,0.833255,0.85833,0.172397,0.391715,0.50181,0.194573,|0.376621,0.865447,0.540422,0.658191,0.98761,0.205871,0.426531,0.879369,0.558167,0.633987,0.500034,0.996346,0.115289,0.535905,0.19224,0.955497,0.594381,0.223259,0.962563,0.604715,0.41706,0.607291,0.128161,0.115651,0.513016,0.861326,0.354722,0.345244,0.659947,0.265458,0.208999,0.641698,0.674722,0.28958,0.432968,0.358061,0.160894,0.215234,0.925194,0.502231,0.982364,0.824974,0.861096,0.793285,0.833147,0.700394,0.873256,0.0289606,0.0940484,0.964718,0.186532,0.656014,0.348852,0.621873,0.457918,0.099461,0.942921,0.375831,0.183085,0.601218,0.885494,0.126536,0.548021,0.716408,0.67097,0.138733,0.646923,0.389182,0.0984127,0.177233,0.757159,0.97006,0.56173,0.572631,0.707054,0.00726873,0.277895,0.744765,0.701723,0.239674,0.389378,0.523444,0.794524,0.99214,0.739732,0.978958,0.619735,0.636661,0.169817,0.465991,0.194725,0.452943,0.488174,0.553129,0.452472,0.155807,0.333826,0.943445,0.165376,0.741335,0.594046,0.855553,0.592529,0.871033,0.740871,0.524214,0.0292417,0.386208,0.893534,0.192329,0.281493,0.993655,0.616525,0.539633,0.329755,0.563259,0.0707985,0.348793,0.684706,0.576553,0.785339,0.0286056,0.373028,0.430879,0.940254,0.913594,0.614547,0.422437,0.62307,0.242539,0.814562,0.894048,0.215638,0.911826,0.340548,0.622985,0.335924,0.914956,0.773316,0.974452,0.827469,0.791011,0.140793,0.168718,0.332924,0.518338,0.163442,0.315854,0.652507,0.959819,0.305353,0.297799,0.993512,0.119601,0.65953,0.575369,0.356189,0.642465,0.512571,0.456644,0.381959,0.254328,0.578596,0.988977,0.236486,0.436663,0.876635,0.946889,0.582705,0.2603,0.501283,0.405366,0.915197,0.958247,0.148123,0.680561,0.248033,0.68714,0.131154,0.850102,0.532267,0.599622,0.749492,0.0985249,0.879693,0.532035,0.853816,0.977524,0.409932,0.135756,0.874033,0.926566,0.564765,0.811019,0.325779,0.629565,0.645167,0.788093,0.985903,0.287649,0.766083,0.228536,0.300032,0.739694,0.453444,0.859324,0.0626104,0.693138,0.882428,0.667818,0.452254,0.128078,0.395357,0.946333,0.235045,0.0849695,0.762073,0.866096,0.0963415,0.290563,0.408656,0.664182,0.0742655,0.519555,0.639072,0.0552451,0.145368,0.831773,0.926118,0.707481,0.321432,0.627316,0.567077,0.928978,0.638848,0.61827,0.158095,0.629721,0.849087,0.268656,0.388493,0.680969,0.43302,0.7507,0.24209,0.0438113,0.802851,0.916697,0.425589,0.732809,0.89319,0.420092,0.406577,0.965061,0.524214,0.739998,0.989844,0.0493211,0.802056,0.994882,0.0341477,0.73944,0.689819,0.74443,0.423941,0.352646,0.36299,0.0914067,0.973743,0.872869,0.840114,0.805425,0.279258,0.207197,0.497748,0.339672,0.123704,0.201555,0.537886,0.175964,0.957076,0.893701,0.0318907,0.0227493,0.219703,0.86539,0.198249,0.461119,0.765716,0.927036,0.737955,0.979718,0.445353,0.734942,0.873408,0.55023,0.648959,0.350903,0.588885,0.173728,0.395584,0.0846111,0.559303,0.421909,0.109821,0.716493,0.71757,0.793134,0.349566,0.388062,0.927222,0.971332,0.884061,0.319712,0.375714,0.696224,0.214139,0.516547,0.0649475,0.860111,0.85738,0.564692,0.696521,0.142685,0.299562,0.238277,0.826499,0.0461389,0.790901,0.910432,0.770385,0.364918,0.919749,0.666318,0.484188,0.402364,0.153021,0.726084,0.776522,0.445637,0.981177,0.449335,0.368893,0.727587,0.161921,0.525587,0.996454,0.608585,0.0905434,0.595131,0.474314,0.566589,0.670346,0.964627,0.41134,0.680235,0.885873,0.72682,0.512205,0.777141,0.0516119,0.949271,0.437504,0.776757,0.517853,0.901062,0.387446,0.753452,0.0453855,0.104197,0.519534,0.6355,0.198027,0.792051,0.485835,0.543805,0.175085,0.636507,0.00570816,0.141571,0.652455,0.920561,0.330678,0.0798287,0.665418,0.800871,0.440763,0.642497,0.39601,0.789681,0.173416,0.306551,0.190045,0.631321,0.310368,0.119311,0.41998,0.202268,0.737185,0.548074,0.370561,0.135403,0.0465629,0.478136,0.988918,0.0947253,0.676891,0.999805,0.13251,0.135345,0.625915,0.819655,0.62222,0.543566,0.0209941,0.478633,0.991107,0.509003,0.808623,0.643062,0.800283,0.0783304,0.0400487,0.724685,0.804423,0.741369,0.0261851,0.790285,0.416432,0.487575,0.665801,0.527535,0.260155,0.258653,0.285554,0.153621,0.618844,0.7772,0.612977,0.194906,0.841336,0.970098,0.195256,0.376043,0.774625,0.624859,0.670646,0.111874,0.604296,0.333006,0.780758,0.603494,0.0180951,0.515544,0.0733909,0.306916,0.448644,0.432288,0.329901,0.308762,0.337446,0.960496,0.673888,0.444005,0.290299,0.708625,0.854473,0.950325,0.116504,0.554478,0.506531,0.750392,0.577314,0.129651,0.822437,0.122558,0.39569,0.646021,0.48892,0.961327,0.429696,0.100571,0.656514,0.373271,0.41333,0.356488,0.0225859,0.180579,0.683038,0.744058,0.411703,0.133397,0.348626,0.507077,0.0775078,0.4885,0.949181,0.111347,0.668018,0.0515434,0.620242,0.0227185,0.237341,0.623778,0.175969,0.612328,0.373618,0.945265,0.391347,0.21194,0.836838,0.488441,0.681461,0.68561,0.444676,0.475196,0.490036,0.225987,0.506873,0.957963,0.113895,0.60666,0.318846,0.839831,0.587299,0.884102,0.0215939,0.778621,0.958634,0.467665,0.31759,0.826965,0.600147,0.739676,0.333369,0.534891,0.523564,0.779741,0.192553,0.785533,0.1399,0.754873,0.891737,0.623319,0.826212,0.655719,0.19883,0.556077,0.152261,0.922162,0.117276,0.412916,0.115409,0.032411,0.915741,0.877568,0.718272,0.281673,0.857081,0.246451,0.318496,0.702417,0.576304,0.780814,0.287221,0.167483,0.94978,0.955037,0.152327,0.537026,0.318579,0.301837,0.802809,0.712049,0.773981,0.120938,0.135203,0.379398,0.834645,0.290694,0.415668,0.139354,0.528197,0.338927,0.0237393,0.0702292,0.0939792,0.545364,0.352867,0.212318,0.486117,0.905464,0.972578,0.022967,0.904358,0.692756,0.888733,0.380574,0.0879714,0.99285,0.45664,0.309141,0.274707,0.271789,0.592778,0.320884,0.20861,0.53016,0.32453,0.717672,0.128712,0.741851,0.519577,0.804821,0.309345,0.53179,0.21588,0.296046,0.493133,0.274255,0.896385,0.57482,0.399407,0.343809,0.396212,0.474241,0.917789,0.772476,0.386432,0.986578,0.684854,0.13798,0.809619,0.231632,0.184289,0.768822,0.185054,0.118997,0.180084,0.070426,0.26367,0.616261,0.172694,0.758462,0.6745,0.0348873,0.858389,0.283493,0.991508,0.913218,0.462501,0.662533,0.146833,0.168249,0.324789,0.696932,0.772029,0.662626,0.178815,0.834084,0.478059,0.23103,0.267778,0.0414805,0.276043,0.463668,0.466744,0.321464,0.837743,0.306159,0.213185,0.273071,0.223026,0.587331,0.166445,0.517239,0.183756,0.93994,0.205795,0.803988,0.0460374,0.401616,0.366192,0.634746,0.410477,0.458222,0.428237,0.373409,0.879312,0.340073,0.537832,0.99403,0.202765,0.443601,0.628362,0.692685,0.631294,0.715563,0.47834,0.889051,0.295398,0.0740047,0.725271,0.454423,0.522746,0.215914,0.573877,0.689421,0.776109,0.0221883,0.583582,0.935928,0.553316,0.491291,0.0243366,0.694659,0.0915393,0.297423,0.769506,0.647984,0.375345,0.23439,0.193198,0.302874,0.492368,0.849385,0.288123,0.212439,0.267426,0.783642,0.568829,0.967451,0.70529,0.95606,0.690298,0.38674,0.786986,0.910016,0.804928,0.00897193,0.958401,0.818778,0.400294,0.332455,0.483204,0.0672476,0.870664,0.614577,0.551517,0.533966,0.939701,0.852558,0.328665,0.891656,0.457971,0.151645,0.9142,0.200487,0.705723,0.696933,0.75313,0.719319,0.6382,0.206852,0.244034,0.049618,0.945218,0.757317,0.609125,0.179686,0.299681,0.892316,0.849974,0.358786,0.342242,0.472379,0.963048,0.565213,0.109594,0.117148,0.653553,0.876134,0.238326,0.428251,0.250901,0.0082944,0.840813,0.797225,0.0852666,0.97743,0.552847,0.512865,0.0528032,0.697375,0.015224,0.184305,0.68503,0.196395,0.210961,0.577903,0.837412,0.588736,0.235042,0.91292,0.947304,0.500439,0.181939,0.362696,0.169937,0.945213,0.370641,0.426055,0.920258,0.283714,0.282894,0.835502,0.32845,0.386523,0.892219,0.91238,0.798067,0.368739,0.363395,0.241843,0.219804,0.670626,0.52944,0.159072,0.818679,0.383959,0.00173658,0.152794,0.977848,0.978889,0.0204123,0.46584,0.0471069,0.144474,0.377568,0.656956,0.215032,0.864203,0.722558,0.0467619,0.309677,0.480253,0.235344,0.341247,0.148953,0.385542,0.421941,0.117159,0.437222,0.993749,0.00121766,0.467043,0.804851,0.137989,0.0765381,0.463576,0.152253,0.0325593,0.795358,0.604544,0.181317,0.234253,0.774258,0.131145,0.658609,0.424052,0.540996,0.99988,0.0626374,0.292323,0.701083,0.836989,0.439439,0.832294,0.649725,0.155698,0.712258,0.490306,0.974393,0.434318,0.223247,0.16735,0.45538,0.723529,0.112087,0.905317,0.838178,0.276327,0.299965,0.0542591,0.247558,0.0321829,0.94124,0.751062,0.292018,0.410133,0.792178,0.0763797,0.0182151,0.938969,0.465017,0.158163,0.619045,0.982757,0.41937,0.487211,0.392406,0.797213,0.654635,0.350033,0.73049,0.993838,0.250698,0.747052,0.868748,0.578238,0.929258,0.208851,0.486562,0.760636,0.845794,0.530145,0.165462,0.860096,0.0821345,0.0989221,0.162645,0.140431,0.676035,0.516235,0.752358,0.114333,0.0301412,0.832689,0.701195,0.590355,0.387244,0.327219,0.0877494,0.948122,0.0110252,0.482749,0.383121,0.635042,0.194347,0.848672,0.304154,0.102749,0.821182,0.0801151,0.825233,0.285244,0.200648,0.0155764,0.887438,0.484023,0.732635,0.790558,0.0346886,0.428444,0.526914,0.712259,0.333955,0.944169,0.384336,0.588884,0.256578,0.0737225,0.269881,0.86105,0.775656,0.955723,0.523256,0.224891,0.166718,0.140539,0.393726,0.60216,0.21356,0.230346,0.894139,0.265776,0.806474,0.520165,0.347394,0.130784,0.907459,0.232595,0.75271,0.779418,0.0300202,0.673438,0.359026,0.507855,0.513632,0.593372,|0.789211,0.218259,0.888634,0.191859,0.613752,0.368493,0.528247,0.945915,0.673634,0.513672,0.907332,0.175595,0.952534,0.0391464,0.601369,0.767142,0.856072,0.75447,0.504532,0.431374,0.0657833,0.563036,0.645931,0.495258,0.532153,0.572109,0.207492,0.396779,0.575808,0.543799,0.45452,0.783901,0.437504,0.909635,0.246399,0.614011,0.768981,0.749055,0.349242,0.449709,0.604105,0.822969,0.0271948,0.563658,0.853541,0.0636032,0.518318,0.719516,0.861915,0.0876057,0.464565,0.0599564,0.864415,0.397496,0.79705,0.626068,0.738041,0.346489,0.595597,0.618156,0.068608,0.307311,0.431828,0.817291,0.366733,0.498044,0.195694,0.0726635,0.760935,0.08461,0.532314,0.0399232,0.414524,0.241673,0.928448,0.933331,0.811559,0.864128,0.342287,0.79821,0.93675,0.371893,0.781364,0.351994,0.133854,0.668985,0.319185,0.0564136,0.984638,0.0346076,0.854907,0.459302,0.983257,0.106385,0.864525,0.641823,0.30698,0.874588,0.968816,0.336154,0.131003,0.117005,0.264103,0.189818,0.499111,0.863513,0.494083,0.462631,0.0885682,0.539815,0.746626,0.541871,0.632272,0.011161,0.3329,0.855738,0.827628,0.889693,0.212662,0.128196,0.706087,0.00531936,0.668126,0.403499,0.305187,0.980009,0.990235,0.336264,0.593804,0.127254,0.802414,0.998017,0.138234,0.157309,0.308153,0.492858,0.922272,0.422519,0.62963,0.799794,0.754452,0.431642,0.904172,0.49611,0.823985,0.19616,0.11206,0.254869,0.639222,0.645059,0.749054,0.249448,0.495191,0.92346,0.654215,0.423696,0.730855,0.536663,0.434588,0.11666,0.462456,0.258348,0.633163,0.611902,0.0568794,0.0445576,0.0796107,0.409175,0.781975,0.491005,0.00994295,0.790233,0.503935,0.920222,0.910813,0.604339,0.377304,0.632709,0.592465,0.642385,0.792008,0.875186,0.450082,0.111757,0.0537323,0.0924616,0.584844,0.712401,0.473227,0.598754,0.958141,0.645254,0.255241,0.397308,0.0251049,0.309522,0.66132,0.633394,0.745687,0.986362,0.13429,0.174867,0.622898,0.861715,0.247731,0.414729,0.275988,0.479843,0.161408,0.0491707,0.784424,0.0718522,0.839585,0.0317144,0.759893,0.231952,0.139896,0.191217,0.826086,0.030131,0.295961,0.850227,0.378314,0.662579,0.651832,0.362378,0.0852945,0.684879,0.400652,0.993169,0.125654,0.828235,0.119938,0.53832,0.328344,0.673928,0.070518,0.969707,0.303376,0.0898153,0.52782,0.776894,0.566965,0.530035,0.261724,0.881939,0.0452456,0.0308332,0.849346,0.307226,0.329164,0.689822,0.277783,0.136741,0.028761,0.987303,0.439864,0.618364,0.216687,0.111404,0.834605,0.158637,0.481887,0.626533,0.520365,0.466857,0.506375,0.289738,0.969778,0.194825,0.0872889,0.176369,0.0949897,0.017621,0.862103,0.807657,0.39199,0.766371,0.0602589,0.881886,0.10747,0.518898,0.84597,0.0634193,0.414751,0.764673,0.369264,0.353285,0.319662,0.832943,0.225068,0.328143,0.427704,0.776482,0.499058,0.247071,0.826651,0.69159,0.897051,0.870949,0.722689,0.135489,0.922332,0.721382,0.959,0.617512,0.895529,0.476904,0.500391,0.621529,0.746068,0.741186,0.927034,0.633378,0.469164,0.480645,0.0946017,0.96614,0.247454,0.0678367,0.638436,0.422412,0.793643,0.108173,0.509968,0.489077,0.842979,0.994539,0.311535,0.970118,0.00381601,0.408832,0.409225,0.642528,0.487425,0.744592,0.231717,0.780554,0.514815,0.20572,0.0903548,0.0688061,0.784387,0.732776,0.253605,0.635233,0.956431,0.709901,0.616587,0.165029,0.783011,0.204564,0.0952477,0.110489,0.410098,0.424107,0.486564,0.813964,0.897911,0.85528,0.290405,0.401751,0.300604,0.0622334,0.770334,0.143532,0.319198,0.561864,0.19554,0.566443,0.163076,0.608046,0.299286,0.562181,0.967894,0.158238,0.649284,0.776376,0.510809,0.0519291,0.505174,0.633233,0.6782,0.843893,0.448114,0.0877732,0.74876,0.152034,0.557565,0.944078,0.0923694,0.0294805,0.902497,0.169447,0.393574,0.347798,0.830716,0.148626,0.557212,0.438302,0.373334,0.0284867,0.779429,0.765532,0.730825,0.684659,0.205902,0.720284,0.536471,0.846149,0.477649,0.970677,0.866562,0.0544841,0.257099,0.0715823,0.441746,0.726035,0.194184,0.876703,0.933428,0.489008,0.710135,0.564653,0.0460346,0.195919,0.416274,0.231696,0.710284,0.64406,0.711615,0.377962,0.774687,0.214032,0.913408,0.300692,0.533648,0.638398,0.496826,0.201197,0.622113,0.805288,0.535178,0.689156,0.186735,0.803136,0.914956,0.965874,0.880115,0.311836,0.918947,0.118581,0.944669,0.283025,0.948651,0.532004,0.896165,0.3032,0.14936,0.203196,0.671856,0.185373,0.933653,0.292387,0.568032,0.569416,0.0189582,0.442748,0.908891,0.721131,0.0644055,0.379996,0.77609,0.0538247,0.643923,0.348615,0.046762,0.402353,0.561757,0.80037,0.262722,0.174521,0.845591,0.191769,0.785299,0.928291,0.0448368,0.612648,0.265212,0.498012,0.136018,0.548339,0.849476,0.941359,0.612054,0.563781,0.86625,0.282669,0.53914,0.0234672,0.00132936,0.674012,0.976058,0.678178,0.158543,0.53922,0.935347,0.653283,0.566089,0.299928,0.784896,0.341277,0.362266,0.867874,0.0502789,0.868174,0.562748,0.673354,0.555721,0.0374031,0.699698,0.809306,0.031311,0.901284,0.334767,0.098319,0.844363,0.374683,0.74892,0.514178,0.311319,0.0414712,0.30658,0.780942,0.645628,0.704661,0.56182,0.449409,0.686386,0.0260656,0.717636,0.976161,0.237949,0.640837,0.760852,0.407156,0.41509,0.606593,0.224914,0.843863,0.378608,0.91256,0.0950572,0.917584,0.860923,0.610872,0.534314,0.31815,0.849126,0.00289059,0.34454,0.991593,0.203173,0.842841,0.962157,0.586369,0.359677,0.286697,0.376226,0.774712,0.0897034,0.0908986,0.0865763,0.277356,0.220969,0.466445,0.639019,0.914184,0.199368,0.861885,0.646958,0.816214,0.0968389,0.86192,0.235555,0.00329411,0.774543,0.876275,0.310226,0.682765,0.962002,0.766221,0.493328,0.796521,0.812956,0.767935,0.187907,0.709724,0.886334,0.647243,0.920946,0.118628,0.331096,0.177485,0.373616,0.254872,0.0685425,0.544526,0.435867,0.851478,0.91291,0.203771,0.0170766,0.467833,0.645178,0.588171,0.758739,0.946315,0.316581,0.149155,0.311371,0.0804912,0.499299,0.659718,0.293196,0.376443,0.929681,0.428956,0.655169,0.581932,0.571021,0.403461,0.199616,0.123834,0.760625,0.510625,0.186165,0.722554,0.492991,0.645362,0.692662,0.241384,0.783025,0.93235,0.575139,0.59729,0.346905,0.976891,0.951114,0.32671,0.569055,0.777244,0.998732,0.966002,0.948885,0.286748,0.69111,0.468907,0.0669788,0.0759635,0.499189,0.379458,0.987323,0.733331,0.401601,0.786816,0.386148,0.580016,0.3192,0.163523,0.107018,0.350306,0.704131,0.930832,0.608266,0.520599,0.518312,0.109545,0.362701,0.919919,0.614631,0.115345,0.817402,0.383997,0.733436,0.0474507,0.223651,0.940039,0.250098,0.503981,0.556947,0.038853,0.186911,0.275935,0.662256,0.268664,0.385157,0.698953,0.888852,0.367853,0.334304,0.316189,0.782788,0.934125,0.755008,0.954271,0.325014,0.662719,0.605897,0.255968,0.598025,0.842846,0.444496,0.348783,0.635243,0.708123,0.883281,0.0721034,0.718855,0.217419,0.93555,0.650732,0.163279,0.416253,0.759,0.388407,0.427305,0.753593,0.661622,0.325831,0.144513,0.421988,0.192677,0.818564,0.134218,0.300637,0.195146,0.601858,0.280277,0.397958,0.727322,0.160356,0.991386,0.910875,0.694556,0.734312,0.504939,0.34648,0.781121,0.216461,0.520527,0.871223,0.0487397,0.248231,0.439486,0.900525,0.652119,0.534475,0.207331,0.444988,0.506536,0.580796,0.952277,0.0617238,0.0240296,0.0219727,0.597229,0.201964,0.45895,0.638129,0.456674,0.906124,0.169914,0.924253,0.371828,0.959884,0.178032,0.874053,0.874755,0.201786,0.64503,0.306721,0.166803,0.494247,0.286173,0.747701,0.514647,0.444203,0.696345,0.927738,0.419862,0.918733,0.226527,0.562724,0.690947,0.322738,0.682366,0.371414,0.896029,0.500669,0.886414,0.580877,0.214762,0.386611,0.653174,0.48275,0.775234,0.530783,0.975385,0.584971,0.513305,0.581381,0.448833,0.600671,0.775151,0.376138,0.38521,0.516645,0.858651,0.540417,0.636864,0.982029,0.510997,0.053735,0.300059,0.219558,0.550199,0.890166,0.652171,0.673183,0.128352,0.44991,0.349342,0.694776,0.130345,0.430495,0.857173,0.292418,0.238169,0.528011,0.734241,0.918124,0.353735,0.43609,0.337673,0.965689,0.239717,0.951951,0.076911,0.411495,0.89654,0.161951,0.356743,0.564745,0.92508,0.273832,0.670229,0.821573,0.519425,0.265372,0.881264,0.680283,0.816161,0.55722,0.467597,0.361158,0.384974,0.829898,0.167495,0.980163,0.610375,0.759136,0.766958,0.430053,0.540949,0.638512,0.954889,0.772541,0.918712,0.235743,0.111404,0.333048,0.164409,0.328796,0.781175,0.164355,0.146339,0.897074,0.31504,0.654134,0.532646,0.076395,0.162977,0.911073,0.335947,0.484291,0.616242,0.228206,0.0635935,0.653203,0.809795,0.295602,0.390849,0.490499,0.183948,0.153932,0.573912,0.756526,0.650329,0.659644,0.0951212,0.932868,0.248233,0.924812,0.308445,0.968637,0.0286958,0.848873,0.114206,0.705185,0.867645,0.414278,0.105738,0.472446,0.170769,0.646799,0.522728,0.775472,0.554458,0.394332,0.252249,0.00461924,0.147744,0.719729,0.60073,0.804205,0.061543,0.908209,0.492827,0.0974303,0.548186,0.640819,0.287564,0.590278,0.314111,0.358534,0.10082,0.0613971,0.42607,0.0635594,0.717357,0.794407,0.000693619,0.522772,0.169157,0.309029,0.85873,0.289135,0.675946,0.587855,0.355777,0.681188,0.900383,0.367551,0.37728,0.84665,0.0551437,0.722169,0.924267,0.392232,0.643336,0.582102,0.0299481,0.732133,0.508865,0.659867,0.935574,0.562808,0.903421,0.438696,0.649537,0.277534,0.770101,0.0146802,0.970155,0.769711,0.181008,0.321279,0.0568779,0.442449,0.443171,0.64134,0.75082,0.0297506,0.22245,0.573483,0.461283,0.56817,0.113868,0.358998,|0.953815,0.77209,0.663172,0.387972,0.503407,0.148765,0.535256,0.471344,0.814326,0.182466,0.363493,0.855817,0.90275,0.0748684,0.0744962,0.59856,0.690003,0.178321,0.94903,0.920069,0.0357779,0.804972,0.883556,0.171243,0.52267,0.335903,0.966144,0.203715,0.852726,0.149021,0.900942,0.267233,0.87229,0.071188,0.928398,0.893913,0.589023,0.809908,0.306854,0.21179,0.511483,0.637562,0.368065,0.423076,0.795427,0.319125,0.598518,0.469078,0.83541,0.74155,0.433974,0.254464,0.212319,0.880343,0.676353,0.231129,0.394911,0.10309,0.953496,0.117381,0.0121416,0.0655748,0.523809,0.0979086,0.00760764,0.738291,0.0596007,0.0938411,0.639743,0.896214,0.171753,0.105974,0.549589,0.282524,0.146279,0.405011,0.632688,0.349221,0.829663,0.403821,0.0367594,0.720937,0.119304,0.149731,0.245563,0.031571,0.754048,0.774809,0.591976,0.335793,0.0422858,0.180319,0.630975,0.662792,0.108525,0.323911,0.267077,0.156873,0.653132,0.368627,0.0291528,0.0975286,0.25971,0.320124,0.310571,0.6167,0.240327,0.591589,0.667698,0.378464,0.605631,0.352291,0.0175846,0.0352355,0.165414,0.91585,0.266417,0.622091,0.989696,0.215436,0.416116,0.68371,0.371278,0.539677,0.163966,0.0679689,0.854627,0.743882,0.756658,0.0878082,0.566509,0.477025,0.121791,0.679964,0.126831,0.409735,0.207848,0.106406,0.175232,0.97361,0.542082,0.43637,0.335614,0.672488,0.525475,0.348367,0.603892,0.786149,0.693081,0.283774,0.270252,0.786111,0.350447,0.338105,0.541585,0.868709,0.232388,0.910339,0.0245929,0.893047,0.1206,0.58948,0.466585,0.466631,0.818324,0.0908405,0.44269,0.342838,0.975702,0.644488,0.374364,0.251302,0.494043,0.183437,0.401165,0.871495,0.202474,0.670986,0.809674,0.610697,0.19916,0.850091,0.240768,0.836009,0.694273,0.992133,0.458267,0.504097,0.448439,0.805553,0.692028,0.906005,0.218242,0.0661585,0.495529,0.495763,0.556099,0.796471,0.423304,0.978718,0.668817,0.101061,0.88156,0.631663,0.00545114,0.52181,0.0563917,0.41824,0.137548,0.937986,0.870746,0.691706,0.817783,0.968728,0.257598,0.797974,0.826013,0.012997,0.596824,0.217304,0.432804,0.943373,0.135982,0.692069,0.943531,0.287864,0.34047,0.51204,0.222376,0.987382,0.454989,0.0498567,0.778992,0.974333,0.0428842,0.504461,0.923655,0.105467,0.655678,0.788917,0.985335,0.450346,0.156851,0.436442,0.438517,0.825459,0.11217,0.538591,0.5654,0.21825,0.728614,0.522275,0.074154,0.473512,0.988415,0.957534,0.118009,0.675122,0.105853,0.45959,0.931375,0.461986,0.709825,0.586911,0.939511,0.110866,0.784658,0.352948,0.91437,0.898866,0.190436,0.9766,0.0546719,0.999659,0.333047,0.694916,0.745938,0.260037,0.140005,0.413387,0.407277,0.505549,0.384803,0.291253,0.347942,0.335654,0.301912,0.850175,0.846095,0.516197,0.184797,0.921905,0.159901,0.65099,0.865878,0.892194,0.760414,0.906897,0.786843,0.513872,0.574457,0.646628,0.190214,0.802158,0.627777,0.401865,0.800803,0.0143249,0.017356,0.961338,0.467733,0.306994,0.598436,0.983242,0.737568,0.0743596,0.135914,0.313608,0.0880781,0.828005,0.997715,0.30012,0.187,0.267807,0.0873091,0.631723,0.467034,0.815003,0.701488,0.461668,0.7233,0.926207,0.133841,0.781772,0.316489,0.936068,0.48231,0.366253,0.441044,0.903108,0.760856,0.00397152,0.191227,0.744628,0.571468,0.230255,0.755764,0.257379,0.123061,0.442125,0.881637,0.118848,0.522829,0.980114,0.432073,0.274444,0.0881125,0.261328,0.358022,0.245951,0.349462,0.885768,0.0668854,0.337567,0.999526,0.123626,0.265474,0.663364,0.22663,0.7306,0.846416,0.660975,0.426056,0.541489,0.191587,0.3939,0.657223,0.449689,0.589369,0.190586,0.857218,0.538819,0.129549,0.254369,0.773972,0.572667,0.644296,0.391835,0.276128,0.979136,0.81496,0.0959655,0.753708,0.336363,0.290417,0.565965,0.346162,0.381391,0.443565,0.023497,0.429803,0.119569,0.0023942,0.511517,0.227367,0.604586,0.882063,0.723794,0.834904,0.652668,0.0363212,0.589274,0.781551,0.614948,0.578841,0.159248,0.95961,0.83067,0.0571017,0.767961,0.910432,0.403439,0.00817662,0.151524,0.59046,0.684283,0.79271,0.146813,0.550152,0.607171,0.651106,0.318077,0.425929,0.445487,0.814937,0.402598,0.275036,0.392045,0.709436,0.419713,0.482931,0.549717,0.519932,0.231871,0.0106078,0.692401,0.975943,0.44449,0.40687,0.36129,0.797129,0.113814,0.19144,0.671629,0.43631,0.729433,0.12879,0.65802,0.98548,0.669477,0.574978,0.661127,0.825764,0.411595,0.870916,0.317342,0.919496,0.573581,0.299859,0.229931,0.0147459,0.0607954,0.576145,0.6747,0.673562,0.873004,0.592543,0.674192,0.260821,0.928418,0.333307,0.355798,0.632568,0.463736,0.202117,0.140127,0.833275,0.394085,0.572593,0.968362,0.791946,0.0610412,0.450532,0.348155,0.619102,0.718828,0.813615,0.751308,0.202183,0.517833,0.594937,0.375167,0.78952,0.261525,0.674511,0.722179,0.92015,0.792211,0.99649,0.0541072,0.548544,0.350774,0.335913,0.0415576,0.556701,0.502472,0.763269,0.519573,0.626883,0.123204,0.623026,0.728427,0.553476,0.401323,0.547254,0.318331,0.0796227,0.351596,0.355352,0.298082,0.865123,0.593066,0.970497,0.0889121,0.760928,0.404999,0.805124,0.132291,0.806202,0.631212,0.557464,0.0562555,0.559698,0.520723,0.730723,0.87479,0.724634,0.871749,0.823453,0.335679,0.655574,0.402391,0.807549,0.828889,0.131867,0.212632,0.0436063,0.388074,0.316543,0.562237,0.263049,0.0108986,0.953326,0.500527,0.796401,0.565159,0.780411,0.696898,0.166714,0.455311,0.525904,0.169575,0.647624,0.946838,0.474227,0.872582,0.0558786,0.291886,0.141233,0.332279,0.220182,0.000778615,0.0526655,0.939825,0.991664,0.643831,0.94885,0.134097,0.940998,0.0403751,0.580106,0.363574,0.267944,0.220582,0.171356,0.51115,0.849225,0.75911,0.374669,0.365797,0.775702,0.300653,0.139978,0.365834,0.227394,0.518855,0.614817,0.545842,0.985755,0.697406,0.63766,0.32101,0.0539588,0.802492,0.199932,0.457986,0.576106,0.302367,0.913327,0.334678,0.141785,0.90413,0.559447,0.203841,0.420921,0.114416,0.913781,0.850553,0.607823,0.923742,0.67128,0.171491,0.328319,0.917399,0.828406,0.935832,0.369047,0.948012,0.118197,0.718769,0.00422525,0.20578,0.129445,0.649552,0.531618,0.486615,0.552104,0.522786,0.688608,0.066223,0.225686,0.635264,0.474278,0.909377,0.0167019,0.381919,0.0819502,0.616022,0.415454,0.477909,0.766234,0.73145,0.679536,0.0112766,0.705396,0.651813,0.84257,0.0547137,0.253878,0.469335,0.796625,0.265721,0.567608,0.125944,0.875295,0.631416,0.198802,0.637859,0.985761,0.719268,0.345079,0.360793,0.949712,0.36839,0.962917,0.612145,0.151998,0.907002,0.954491,0.453628,0.657995,0.861372,0.230814,0.310775,0.464872,0.889087,0.359511,0.491933,0.754972,0.07322,0.927036,0.499139,0.146846,0.878061,0.976618,0.989864,0.856894,0.0200605,0.872884,0.378505,0.63882,0.858837,0.340194,0.341541,0.229969,0.952279,0.9249,0.9166,0.780849,0.829166,0.785452,0.624349,0.121488,0.0202149,0.989401,0.8933,0.0712346,0.347038,0.469765,0.465634,0.624476,0.579209,0.693102,0.162265,0.844361,0.931214,0.971124,0.977209,0.203794,0.670231,0.763432,0.21896,0.557162,0.912191,0.289978,0.288774,0.558673,0.719172,0.0871772,0.0547583,0.814419,0.501671,0.323156,0.722464,0.933187,0.543601,0.15189,0.523855,0.900514,0.872778,0.936803,0.79485,0.124731,0.536351,0.134614,0.632831,0.769006,0.271787,0.305568,0.54095,0.184058,0.979405,0.960538,0.753624,0.840317,0.174707,0.0470104,0.526484,0.562168,0.259434,0.46256,0.0496023,0.913276,0.783508,0.0286657,0.927394,0.424605,0.657956,0.305475,0.308763,0.350374,0.375296,0.728734,0.40183,0.779857,0.314936,0.924129,0.217203,0.0429584,0.209585,0.804706,0.0800034,0.686062,0.983136,0.102375,0.123057,0.339309,0.451483,0.678027,0.567205,0.47941,0.363561,0.864074,0.688865,0.997468,0.797168,0.000788152,0.389684,0.98484,0.273516,0.357246,0.849674,0.497697,0.00647968,0.549977,0.519686,0.921341,0.70072,0.290251,0.886402,0.0288551,0.82494,0.634039,0.237181,0.750798,0.742988,0.514872,0.275468,0.392911,0.819034,0.501936,0.6244,0.281604,0.139464,0.345244,0.524239,0.961663,0.58317,0.238572,0.31954,0.591373,0.650844,0.344263,0.343837,0.115932,0.245726,0.0478115,0.757668,0.382497,0.778156,0.598565,0.187647,0.202006,0.109541,0.274958,0.790951,0.522435,0.0291319,0.220076,0.96305,0.248132,0.30775,0.459844,0.732678,0.664848,0.437479,0.874669,0.126944,0.206919,0.433222,0.776418,0.934899,0.447731,0.345857,0.660824,0.754629,0.927853,0.152278,0.904589,0.16236,0.22514,0.906633,0.466829,0.283784,0.589014,0.40554,0.892175,0.335114,0.228725,0.961844,0.854143,0.614581,0.169855,0.476691,0.533809,0.788942,0.677548,0.345091,0.229298,0.379668,0.26641,0.0365488,0.607958,0.0873312,0.197774,0.553632,0.805178,0.272701,0.401274,0.04445,0.87957,0.234171,0.0229225,0.791302,0.300382,0.324086,0.828466,0.613342,0.748138,0.910252,0.251314,0.763763,0.0617804,0.763777,0.569391,0.883509,0.807747,0.794143,0.051481,0.996548,0.330493,0.666214,0.676566,0.437363,0.224437,0.722568,0.137559,0.782361,0.284121,0.551092,0.258854,0.326276,0.450476,0.200501,0.856924,0.0981639,0.193272,0.202934,0.919812,0.611309,0.429652,0.590587,0.17491,0.761423,0.632369,0.339287,0.970975,0.265252,0.598266,0.037484,0.821173,0.0347718,0.57216,0.102302,0.942096,0.915043,0.0999579,0.460154,0.369761,0.520675,0.401362,0.603009,0.0426586,0.258075,0.117683,0.649387,0.377445,0.217581,0.982732,0.166296,0.452024,0.53183,0.27754,0.760861,0.914747,0.473805,0.0768193,0.857561,0.188315,0.433774,|0.613948,0.447858,0.504667,0.590373,0.522434,0.749169,0.769525,0.9572,0.123285,0.151888,0.937867,0.330097,0.272741,0.110369,0.0045929,0.0359346,0.104357,0.492891,0.627268,0.495281,0.239827,0.984064,0.910313,0.652902,0.587396,0.214783,0.985546,0.129773,0.640404,0.901789,0.672535,0.0157326,0.536322,0.7331,0.571186,0.103174,0.941463,0.694928,0.442469,0.884207,0.268559,0.484321,0.26701,0.187509,0.766817,0.432072,0.209607,0.154771,0.364228,0.155384,0.954699,0.748358,0.92179,0.918425,0.177708,0.44845,0.865164,0.71718,0.303211,0.2192,0.20467,0.631646,0.26118,0.213632,0.250873,0.919458,0.837286,0.598788,0.312312,0.674864,0.889028,0.78397,0.721898,0.845922,0.350306,0.242381,0.0430121,0.0826619,0.266146,0.82825,0.0349372,0.148777,0.683833,0.458276,0.648401,0.475066,0.589722,0.919465,0.546121,0.599629,0.00226706,0.739998,0.0476912,0.176481,0.336903,0.0887229,0.501993,0.822528,0.462307,0.7709,0.761398,0.476748,0.490593,0.389112,0.872515,0.209846,0.895946,0.780497,0.257467,0.132108,0.535788,0.946761,0.397405,0.25545,0.717569,0.46852,0.837673,0.401225,0.866987,0.680633,0.356461,0.893382,0.153482,0.396193,0.882647,0.893874,0.0343556,0.433872,0.712389,0.286462,0.0139656,0.138973,0.087189,0.182742,0.765494,0.750933,0.174388,0.811413,0.321918,0.90166,0.609035,0.248207,0.545063,0.728342,0.491746,0.342156,0.397918,0.872188,0.526263,0.125417,0.843125,0.411006,0.90112,0.382568,0.499158,0.691825,0.767707,0.2206,0.942727,0.149074,0.29389,0.358853,0.27642,0.0164092,0.6747,0.339927,0.57008,0.986971,0.0820434,0.713409,0.219767,0.565491,0.529412,0.646145,0.911954,0.120938,0.812555,0.256748,0.346743,0.390724,0.371968,0.564806,0.45895,0.0926128,0.932353,0.731209,0.888024,0.191249,0.415346,0.294882,0.141327,0.966079,0.951316,0.663414,0.869189,0.555294,0.463859,0.310183,0.388849,0.195453,0.959665,0.68529,0.176089,0.155829,0.239535,0.563633,0.342832,0.724194,0.532068,0.470924,0.791233,0.916445,0.0126829,0.263013,0.407075,0.0657724,0.904046,0.532686,0.578457,0.349706,0.0892971,0.899953,0.541252,0.270849,0.975453,0.372309,0.0700924,0.662953,0.22134,0.404421,0.66278,0.496355,0.205671,0.116388,0.638722,0.577831,0.705435,0.351156,0.940423,0.663175,0.274156,0.953224,0.547377,0.396024,0.680865,0.0841041,0.0377545,0.661105,0.636877,0.886142,0.31868,0.555062,0.931418,0.456818,0.593895,0.483724,0.527067,0.150467,0.956439,0.529081,0.0964108,0.780159,0.511801,0.708802,0.960527,0.467497,0.678794,0.772184,0.164141,0.347619,0.461286,0.591774,0.897447,0.710635,0.801841,0.897579,0.935765,0.964267,0.670278,0.28459,0.23843,0.470804,0.244479,0.638529,0.709819,0.590034,0.5042,0.358979,0.153591,0.499015,0.270172,0.823582,0.212419,0.450255,0.934654,0.917552,0.563166,0.564541,0.792383,0.100584,0.851213,0.12359,0.504517,0.949777,0.743244,0.0995231,0.351274,0.518309,0.376278,0.202292,0.626854,0.755188,0.941931,0.98571,0.73338,0.998788,0.937384,0.60201,0.411381,0.841324,0.710165,0.687236,0.890505,0.348002,0.966028,0.799705,0.698887,0.263206,0.732375,0.401044,0.375072,0.696354,0.892417,0.45623,0.931648,0.251333,0.883201,0.827185,0.78835,0.779629,0.340111,0.198741,0.634971,0.34533,0.133016,0.971864,0.0752687,0.814008,0.320613,0.391154,0.683859,0.1835,0.336168,0.539077,0.611048,0.928678,0.725083,0.0351157,0.159414,0.0710511,0.816591,0.795639,0.573455,0.0633777,0.187026,0.529273,0.949455,0.916445,0.780582,0.67952,0.803239,0.284203,0.896021,0.961239,0.187642,0.850041,0.778542,0.908237,0.328281,0.563091,0.194607,0.0643799,0.347334,0.827972,0.17985,0.599485,0.921527,0.632151,0.635415,0.388451,0.396584,0.437163,0.772522,0.365707,0.792903,0.0385957,0.686143,0.170426,0.385953,0.0686283,0.152284,0.0269476,0.435373,0.742159,0.904173,0.181621,0.632075,0.626295,0.869715,0.190514,0.618846,0.981642,0.978662,0.37042,0.963795,0.424416,0.874862,0.209975,0.403576,0.063038,0.212618,0.500385,0.650961,0.418563,0.746048,0.252461,0.923431,0.271703,0.815901,0.838214,0.808555,0.0561971,0.872767,0.610357,0.751661,0.751511,0.87308,0.280319,0.241459,0.00835782,0.5878,0.156754,0.87462,0.970215,0.948639,0.213589,0.781517,0.154806,0.288482,0.567242,0.518482,0.523063,0.382637,0.0262836,0.511165,0.742177,0.119107,0.635387,0.378859,0.886961,0.714552,0.609704,0.948486,0.324991,0.744514,0.965741,0.552927,0.520592,0.618136,0.241186,0.826313,0.799802,0.691158,0.101565,0.164385,0.720856,0.435399,0.53849,0.275081,0.532857,0.740891,0.789164,0.953634,0.61064,0.638166,0.755488,0.987648,0.836924,0.711791,0.817876,0.338233,0.839647,0.925005,0.79454,0.791138,0.876394,0.452635,0.376352,0.00449383,0.930281,0.33298,0.649361,0.0818599,0.627269,0.768305,0.645936,0.490111,0.448136,0.788212,0.516275,0.26853,0.334095,0.932842,0.890931,0.400492,0.519785,0.827635,0.882695,0.92661,0.879141,0.663668,0.533898,0.226168,0.0540951,0.655068,0.997309,0.172251,0.662888,0.406876,0.386496,0.178182,0.528918,0.262152,0.220849,0.282172,0.357995,0.0497355,0.1485,0.23044,0.816289,0.254223,0.597145,0.686891,0.882106,0.875859,0.913009,0.471768,0.819682,0.933951,0.039333,0.797739,0.828966,0.594844,0.978583,0.187531,0.974984,0.687926,0.424306,0.634862,0.244505,0.03608,0.277991,0.467685,0.557481,0.122867,0.137944,0.494879,0.170751,0.483028,0.678039,0.1531,0.619271,0.298547,0.666413,0.563158,0.973466,0.264651,0.6019,0.278652,0.482435,0.324596,0.787126,0.323038,0.576234,0.238725,0.714736,0.203764,0.968578,0.964212,0.809424,0.976585,0.376061,0.0995759,0.487678,0.585132,0.554404,0.538569,0.303057,0.883105,0.212665,0.80544,0.826153,0.158412,0.0545716,0.858509,0.956729,0.419467,0.297772,0.373894,0.627864,0.92829,0.363324,0.754821,0.0297535,0.683482,0.560182,0.360764,0.820409,0.121866,0.0869659,0.976916,0.682579,0.101002,0.52621,0.911661,0.508704,0.776745,0.297027,0.355613,0.474867,0.504905,0.386991,0.410805,0.326983,0.775608,0.283309,0.236631,0.675025,0.77295,0.0677928,0.243947,0.710321,0.143655,0.00742972,0.505181,0.247162,0.155311,0.0268017,0.343085,0.763721,0.633788,0.769954,0.923937,0.0486134,0.910328,0.892255,0.990104,0.445103,0.825371,0.646541,0.561408,0.677206,0.109933,0.346787,0.72681,0.024192,0.465625,0.74834,0.609611,0.971856,0.0840651,0.846083,0.498211,0.715204,0.262207,0.383995,0.350053,0.339278,0.395775,0.146775,0.930408,0.489246,0.762253,0.494772,0.230559,0.438556,0.740103,0.66089,0.3335,0.765923,0.561311,0.20148,0.169817,0.151499,0.688557,0.115866,0.24524,0.848726,0.832768,0.837986,0.606856,0.175494,0.497154,0.615527,0.358443,0.401597,0.942103,0.185844,0.916952,0.524074,0.0725873,0.681599,0.887446,0.54204,0.927027,0.354731,0.687186,0.577983,0.575761,0.380935,0.406112,0.987916,0.520251,0.230027,0.286971,0.868892,0.401568,0.322488,0.492237,0.954225,0.36477,0.407762,0.349003,0.0655141,0.783083,0.799571,0.816483,0.575027,0.224476,0.679765,0.870012,0.366135,0.635194,0.40765,0.940663,0.315028,0.757912,0.0275369,0.317051,0.51255,0.168535,0.347882,0.079671,0.134098,0.647894,0.857325,0.929303,0.129297,0.785712,0.869825,0.235018,0.901999,0.505928,0.646874,0.830167,0.62952,0.0694914,0.752576,0.984387,0.803408,0.45421,0.554039,0.44026,0.531299,0.881017,0.281209,0.704768,0.697548,0.430918,0.822783,0.873212,0.162202,0.404815,0.127571,0.510386,0.613798,0.102302,0.157949,0.460426,0.878574,0.0444779,0.0297672,0.73464,0.203339,0.234123,0.244419,0.73305,0.234464,0.524676,0.409075,0.191227,0.33836,0.405877,0.873089,0.100892,0.526439,0.752882,0.119246,0.435488,0.306529,0.204161,0.515427,0.548021,0.794632,0.416021,0.401778,0.741909,0.0362251,0.0350556,0.481129,0.970919,0.788851,0.242805,0.598495,0.0402765,0.209529,0.654719,0.458678,0.604663,0.644013,0.987582,0.114268,0.240905,0.210968,0.476376,0.564487,0.630572,0.957505,0.831407,0.073381,0.0129639,0.947982,0.878176,0.822507,0.796245,0.940977,0.286613,0.614542,0.940827,0.176293,0.705313,0.627251,0.124002,0.330739,0.747519,0.0861982,0.342522,0.211324,0.687912,0.926044,0.872189,0.0745341,0.36161,0.405097,0.33059,0.595846,0.0422325,0.675316,0.0312722,0.525423,0.00792915,0.562139,0.328002,0.917942,0.207621,0.689336,0.0173947,0.43043,0.596588,0.854045,0.335229,0.349813,0.305537,0.720078,0.0497816,0.898749,0.878644,0.999898,0.0203338,0.567319,0.772176,0.0831079,0.543037,0.448178,0.0301794,0.0539191,0.0297109,0.775926,0.24813,0.344183,0.365277,0.198807,0.873961,0.358045,0.583821,0.552206,0.75993,0.652159,0.934892,0.135955,0.811377,0.782374,0.387932,0.818977,0.492898,0.237367,0.965328,0.369994,0.764768,0.273111,0.657913,0.662614,0.419869,0.742168,0.234871,0.406889,0.63934,0.470434,0.278435,0.52377,0.0408247,0.465856,0.576972,0.488327,0.409124,0.854833,0.363464,0.0799488,0.908614,0.552266,0.725548,0.160695,0.829046,0.686934,0.512918,0.644861,0.71475,0.861226,0.341778,0.895018,0.880353,0.136968,0.134592,0.0713392,0.952591,0.786253,0.663801,0.835413,0.755497,0.278332,0.533721,0.283419,0.237875,0.58501,0.307442,0.0691653,0.1981,0.88585,0.284292,0.139152,0.161222,0.628886,0.915391,0.196174,0.34662,0.0666419,0.290182,0.329995,0.187761,0.452818,0.1511,0.384639,0.696479,0.314256,0.194403,0.240039,0.674153,0.192331,0.290335,0.150484,0.148287,0.622744,0.786008,0.955017,0.685458,0.950516,0.265803,0.00564009,0.752689,0.0974935,|0.365086,0.00483298,0.668816,0.738763,0.538931,0.861999,0.15516,0.472479,0.62247,0.437132,0.442834,0.60996,0.79987,0.521455,0.141,0.322323,0.243964,0.796973,0.426471,0.844596,0.597243,0.446065,0.022706,0.760192,0.522229,0.774967,0.584805,0.211868,0.765732,0.957351,0.872398,0.184963,0.878324,0.137035,0.674825,0.984646,0.813386,0.475507,0.367573,0.695072,0.662829,0.993245,0.50196,0.79551,0.35461,0.669394,0.879358,0.0162687,0.141262,0.929582,0.266136,0.281909,0.133296,0.0331962,0.615505,0.560373,0.630063,0.908827,0.0964244,0.0338425,0.942818,0.899761,0.216898,0.184635,0.484062,0.285582,0.774499,0.815175,0.00184852,0.0486897,0.130732,0.432244,0.927378,0.756845,0.0568456,0.0623226,0.564591,0.507746,0.369654,0.593359,0.0170082,0.719636,0.631644,0.959033,0.837276,0.535407,0.379703,0.187265,0.0460825,0.793956,0.7504,0.0337279,0.395096,0.0943025,0.87943,0.754583,0.940445,0.323809,0.393975,0.97755,0.620413,0.551037,0.613878,0.971635,0.690874,0.531551,0.177737,0.166515,0.779637,0.851263,0.559918,0.532602,0.0456143,0.654133,0.315579,0.64743,0.786188,0.416424,0.663966,0.125931,0.0231943,0.247357,0.4769,0.463317,0.525252,0.204964,0.84874,0.443437,0.614694,0.544051,0.482424,0.780425,0.785,0.985669,0.850912,0.324396,0.849635,0.883624,0.695245,0.610315,0.775244,0.222139,0.228751,0.868592,0.218542,0.811895,0.352876,0.711265,0.963773,0.655738,0.23477,0.0746685,0.32241,0.509109,0.7131,0.663623,0.652251,0.498324,0.636349,0.201755,0.438544,0.348881,0.702988,0.13244,0.210316,0.697185,0.473508,0.410937,0.0284309,0.394436,0.203004,0.076573,0.62156,0.366305,0.189879,0.255996,0.312686,0.183522,0.726466,0.930178,0.729972,0.748445,0.101306,0.149047,0.0867819,0.953742,0.381235,0.905948,0.14309,0.228195,0.104579,0.935214,0.0585431,0.390216,0.339713,0.470051,0.285772,0.631668,0.282907,0.787738,0.0292957,0.555506,0.20034,0.584527,0.939323,0.459008,0.121087,0.416575,0.596672,0.294267,0.279152,0.783937,0.615972,0.287455,0.900706,0.112563,0.93371,0.141281,0.104086,0.693149,0.339349,0.817135,0.977352,0.968511,0.721238,0.441956,0.205389,0.758774,0.329964,0.834932,0.888521,0.16187,0.912643,0.0231311,0.918741,0.0105516,0.920236,0.835728,0.471053,0.796697,0.836587,0.408645,0.676745,0.565672,0.552115,0.593153,0.124625,0.10501,0.805506,0.662494,0.796975,0.790315,0.591162,0.765923,0.287828,0.0439001,0.169451,0.922707,0.207338,0.198023,0.701183,0.41554,0.310785,0.654237,0.869921,0.905988,0.451318,0.158319,0.792492,0.266842,0.505585,0.312279,0.540698,0.39114,0.758786,0.491551,0.124065,0.725374,0.0720723,0.525836,0.857821,0.128848,0.234557,0.806408,0.76434,0.972257,0.312347,0.00612146,0.233202,0.402367,0.429625,0.132119,0.395913,0.285538,0.981618,0.736164,0.389244,0.394959,0.669589,0.916546,0.891052,0.0258911,0.749637,0.813174,0.799393,0.826755,0.353801,0.453936,0.205245,0.296355,0.404618,0.262247,0.633151,0.0737505,0.89807,0.493876,0.188865,0.631283,0.226857,0.262347,0.784861,0.127963,0.157665,0.283751,0.75605,0.249792,0.787065,0.919359,0.352327,0.437574,0.832703,0.502804,0.556111,0.812416,0.689286,0.732793,0.708602,0.68086,0.776836,0.0691235,0.0988964,0.127232,0.0995009,0.643227,0.309651,0.884795,0.999387,0.53322,0.26706,0.0861577,0.259735,0.165517,0.487638,0.072298,0.4091,0.0349782,0.877101,0.726529,0.82357,0.195443,0.990471,0.219469,0.643059,0.205872,0.595113,0.820453,0.290223,0.45374,0.715858,0.216117,0.0741416,0.645326,0.00709617,0.646078,0.49174,0.0699409,0.952317,0.181683,0.776179,0.144112,0.204381,0.925352,0.988118,0.230346,0.0545022,0.787403,0.357603,0.598977,0.0851635,0.714036,0.285247,0.724696,0.450303,0.430208,0.158515,0.969678,0.806855,0.291831,0.427323,0.637093,0.0324109,0.489474,0.0791664,0.0526599,0.950023,0.0483254,0.359271,0.996077,0.407151,0.814403,0.632854,0.664203,0.163164,0.264624,0.701405,0.654449,0.039216,0.994851,0.383983,0.196073,0.282703,0.743497,0.272368,0.258185,0.260322,0.628962,0.140981,0.0560759,0.854304,0.900627,0.905263,0.0958585,0.570383,0.13302,0.172601,0.133126,0.911834,0.331045,0.129181,0.471548,0.261738,0.313123,0.995282,0.161366,0.440019,0.010412,0.379554,0.54424,0.592154,0.632661,0.340487,0.0351622,0.224466,0.579593,0.856951,0.370252,0.941969,0.41201,0.629032,0.352338,0.514698,0.861266,0.0492832,0.232381,0.0141521,0.317613,0.950508,0.839636,0.40338,0.163073,0.19535,0.64085,0.0686123,0.922612,0.272296,0.0434887,0.372657,0.680658,0.540726,0.718884,0.644505,0.305347,0.790285,0.77145,0.739429,0.50695,0.301191,0.581911,0.564853,0.740282,0.0239058,0.753131,0.58351,0.0188264,0.541139,0.429792,0.676296,0.813366,0.467066,0.839153,0.409937,0.2276,0.371136,0.107857,0.0756957,0.714266,0.365389,0.237164,0.0987513,0.372969,0.83303,0.97057,0.53376,0.715271,0.732828,0.825445,0.886176,0.54279,0.779119,0.142285,0.188983,0.237987,0.861628,0.540248,0.111359,0.814902,0.411089,0.236385,0.0890841,0.0868357,0.242422,0.962775,0.149275,0.492127,0.774833,0.833628,0.106458,0.0734419,0.661164,0.837963,0.283357,0.910123,0.737906,0.583381,0.092173,0.530944,0.943219,0.949266,0.666781,0.547089,0.46905,0.0518087,0.976754,0.137215,0.345453,0.33458,0.420669,0.235727,0.555832,0.110189,0.60048,0.701688,0.35097,0.124617,0.453701,0.95287,0.641019,0.984779,0.0197142,0.188317,0.909782,0.133218,0.261182,0.855897,0.801897,0.956781,0.063083,0.513042,0.982255,0.684283,0.0910961,0.135725,0.548096,0.462628,0.588209,0.807754,0.318015,0.169903,0.674364,0.724831,0.30401,0.57927,0.292923,0.148468,0.0775738,0.994293,0.215138,0.184562,0.70401,0.680392,0.423893,0.944728,0.385188,0.988689,0.280286,0.587785,0.297169,0.363053,0.905918,0.354262,0.226511,0.667795,0.560751,0.854055,0.593184,0.995476,0.546353,0.92027,0.300819,0.291307,0.118091,0.343478,0.157004,0.172369,0.377229,0.368658,0.404762,0.172337,0.804008,0.837458,0.00767577,0.87013,0.113974,0.832237,0.87955,0.00908148,0.232141,0.953535,0.251024,0.705945,0.939885,0.634241,0.343152,0.933278,0.418333,0.412027,0.24575,0.10135,0.605081,0.539848,0.283617,0.911713,0.170063,0.182242,0.163428,0.386278,0.706825,0.262436,0.443075,0.14655,0.241577,0.76139,0.612161,0.480686,0.157409,0.562038,0.787008,0.788263,0.950892,0.615466,0.314278,0.831341,0.99557,0.492393,0.371419,0.0461094,0.154603,0.209709,0.579284,0.779853,0.11498,0.689759,0.805188,0.732657,0.237036,0.878744,0.715782,0.49217,0.847919,0.167387,0.0507168,0.00287497,0.523742,0.85483,0.612482,0.935782,0.571227,0.538572,0.757713,0.586714,0.806673,0.749669,0.243499,0.21181,0.175984,0.703717,0.470634,0.0612358,0.337554,0.441235,0.366861,0.887602,0.0466759,0.604716,0.264248,0.611621,0.436883,0.254711,0.924881,0.242264,0.382354,0.375185,0.446926,0.0313575,0.0924206,0.928502,0.599569,0.00897217,0.931721,0.857763,0.362928,0.268334,0.779341,0.714619,0.0435212,0.830803,0.295098,0.995601,0.530029,0.401783,0.514388,0.837174,0.828256,0.566695,0.292132,0.208103,0.207983,0.822339,0.592704,0.408631,0.465913,0.628093,0.725319,0.523826,0.0816449,0.294711,0.646327,0.2384,0.730803,0.613709,0.0149603,0.28536,0.944818,0.698692,0.197812,0.0980427,0.28179,0.42986,0.609834,0.260587,0.468928,0.990558,0.727401,0.00301844,0.16571,0.609953,0.647589,0.104774,0.598235,0.941564,0.452177,0.373899,0.406509,0.178964,0.307313,0.812281,0.670633,0.835481,0.293148,0.392748,0.67208,0.311391,0.537304,0.00609952,0.307339,0.516092,0.664417,0.517471,0.788452,0.498188,0.928377,0.289085,0.219868,0.572531,0.677237,0.416478,0.0284652,0.498332,0.183722,0.995916,0.495623,0.259329,0.455946,0.895115,0.373003,0.615048,0.0578737,0.0687153,0.530719,0.747509,0.333456,0.664887,0.419833,0.220363,0.811934,0.526109,0.928729,0.226529,0.186853,0.395186,0.00215852,0.407976,0.579431,0.79779,0.180464,0.015856,0.761894,0.253141,0.130097,0.796999,0.259282,0.669296,0.196764,0.110128,0.242373,0.372763,0.0676705,0.0540516,0.901237,0.254781,0.860363,0.862195,0.0923327,0.725495,0.343193,0.705839,0.192275,0.017181,0.132935,0.019577,0.271923,0.950612,0.182437,0.0327969,0.429134,0.42568,0.3141,0.535116,0.884793,0.646126,0.789851,0.628657,0.972638,0.756084,0.40102,0.325325,0.982966,0.114056,0.744422,0.64878,0.968436,0.115883,0.524217,0.129209,0.976439,0.782121,0.909616,0.352793,0.425661,0.253263,0.30408,0.112103,0.828814,0.096124,0.478959,0.378378,0.538345,0.389338,0.512698,0.8415,0.830859,0.498439,0.169145,0.722051,0.766145,0.627165,0.485717,0.234113,0.223821,0.902782,0.532413,0.621975,0.859608,0.554343,0.790479,0.404723,0.362291,0.46967,0.558401,0.846977,0.823719,0.628825,0.722585,0.576794,0.586967,0.348882,0.785116,0.535434,0.65306,0.81043,0.143532,0.255244,0.682714,0.202843,0.471977,0.702135,0.994392,0.248924,0.442251,0.366159,0.947874,0.268658,0.590532,0.00468343,0.029874,0.704787,0.607447,0.199078,0.22736,0.838206,0.230764,0.269573,0.794392,0.830755,0.0193269,0.0856592,0.402929,0.0583282,0.442713,0.242172,0.710183,0.58123,0.968895,0.965384,0.0363452,0.824686,0.630274,0.0584533,0.721241,0.0421502,0.434486,0.777486,0.994045,0.823166,0.537503,0.734855,0.123808,0.568829,0.851219,0.606314,0.551345,0.801936,0.210455,0.443422,0.140112,0.661129,0.0551074,0.86341,0.563982,0.701157,0.779347,0.328457,0.185354,0.983728,0.176459,0.928593,0.517437,0.404461,0.0213985,0.0256463,|0.970071,0.38046,0.670038,0.177822,0.7042,0.824772,0.199847,0.254064,0.554162,0.105549,0.179869,0.764042,0.755809,0.842156,0.366901,0.969355,0.351381,0.459831,0.133243,0.399992,0.777667,0.868614,0.724224,0.505079,0.504311,0.902833,0.509569,0.569826,0.564597,0.760142,0.0780029,0.188963,0.560822,0.562347,0.87288,0.969613,0.633398,0.00477052,0.329004,0.595537,0.127365,0.715156,0.0729067,0.369458,0.892711,0.509791,0.836915,0.227963,0.448085,0.482643,0.7231,0.240417,0.847874,0.704832,0.849282,0.914676,0.981111,0.740622,0.58022,0.668326,0.527183,0.12952,0.378837,0.504936,0.1264,0.164373,0.979053,0.837716,0.210584,0.928647,0.976445,0.841867,0.338946,0.0780276,0.783363,0.549139,0.659464,0.409357,0.615093,0.818182,0.20934,0.599715,0.323588,0.561792,0.959784,0.0880455,0.320591,0.630313,0.335246,0.222156,0.934181,0.809548,0.976094,0.123102,0.983845,0.107987,0.999204,0.0907198,0.149256,0.863199,0.221806,0.54557,0.122122,0.816399,0.820771,0.341778,0.000895917,0.0033322,0.611476,0.522815,0.822764,0.664401,0.740766,0.172979,0.777561,0.52728,0.935429,0.625998,0.78447,0.627581,0.320578,0.758401,0.412727,0.446862,0.50062,0.171497,0.0569429,0.10922,0.268826,0.528242,0.531086,0.125439,0.784642,0.0426064,0.798292,0.925434,0.83956,0.167558,0.76961,0.587945,0.894238,0.637143,0.344663,0.283433,0.843207,0.48617,0.9898,0.716364,0.0225138,0.326072,0.769747,0.565679,0.73245,0.857167,0.697347,0.0992931,0.124749,0.127897,0.424571,0.834486,0.166397,0.126947,0.654782,0.289941,0.556282,0.0280679,0.924898,0.199891,0.258068,0.938286,0.392544,0.964274,0.849236,0.440265,0.807377,0.190197,0.731431,0.253941,0.0287794,0.143953,0.11243,0.174291,0.984822,0.0281924,0.872848,0.109976,0.921495,0.829195,0.947318,0.00237405,0.847436,0.554333,0.820157,0.67458,0.963809,0.756226,0.319598,0.114434,0.796521,0.574941,0.538994,0.863026,0.312932,0.00471532,0.968633,0.894911,0.0397972,0.27512,0.726374,0.921524,0.970471,0.286062,0.687515,0.758041,0.0240408,0.375415,0.924946,0.496234,0.109057,0.652298,0.491646,0.142251,0.637018,0.44992,0.831909,0.360044,0.66347,0.72991,0.44941,0.306539,0.938311,0.515768,0.0206164,0.535309,0.793898,0.126076,0.487109,0.88535,0.870986,0.122372,0.666135,0.261946,0.897095,0.10304,0.983356,0.254228,0.438094,0.254456,0.545319,0.740918,0.465403,0.0604436,0.0659639,0.219227,0.458906,0.490572,0.644472,0.040176,0.362099,0.165835,0.540453,0.119378,0.918561,0.915577,0.487381,0.620344,0.888857,0.828716,0.775035,0.675601,0.750856,0.833562,0.971592,0.668891,0.997391,0.789093,0.677289,0.681411,0.670868,0.730837,0.529795,0.500588,0.264246,0.77278,0.921035,0.974516,0.870785,0.434251,0.739084,0.615235,0.758598,0.952961,0.644913,0.668184,0.581278,0.208928,0.530349,0.980553,0.107364,0.299195,0.250133,0.917746,0.26497,0.475669,0.85956,0.75558,0.925799,0.118381,0.85947,0.412129,0.22372,0.351384,0.507058,0.928679,0.510213,0.601987,0.497134,0.546131,0.213805,0.936752,0.929197,0.831706,0.19287,0.451158,0.78007,0.876865,0.859201,0.881966,0.7975,0.0530131,0.206504,0.174036,0.920597,0.972208,0.17461,0.828854,0.0674519,0.139471,0.492173,0.579088,0.659043,0.866303,0.249955,0.38118,0.983637,0.462825,0.906132,0.571654,0.329753,0.786689,0.282531,0.367423,0.311349,0.169939,0.444102,0.044283,0.458682,0.938605,0.751564,0.936045,0.219593,0.927001,0.123628,0.38859,0.40113,0.505237,0.797496,0.811662,0.552127,0.456222,0.126667,0.191846,0.784792,0.266035,0.166547,0.556363,0.107771,0.331145,0.786556,0.837932,0.390725,0.440593,0.580952,0.452317,0.58384,0.838825,0.780476,0.296924,0.238011,0.772724,0.243189,0.460938,0.262659,0.808507,0.161003,0.25633,0.438284,0.925046,0.931057,0.497709,0.711175,0.0683259,0.270993,0.232739,0.117362,0.599439,0.961566,0.132827,0.963274,0.652749,0.778354,0.0878983,0.993462,0.762676,0.921042,0.670307,0.607771,0.317989,0.333093,0.473932,0.789655,0.527707,0.77109,0.270422,0.908204,0.0211757,0.0752944,0.296778,0.818736,0.525622,0.722779,0.444203,0.579719,0.00912654,0.598913,0.453739,0.587852,0.537745,0.153108,0.388571,0.7014,0.215392,0.811503,0.0871277,0.507634,0.502966,0.600039,0.660255,0.582733,0.909071,0.432632,0.178116,0.769261,0.433138,0.0272986,0.96848,0.957739,0.00753587,0.356939,0.772984,0.221705,0.563408,0.346961,0.613631,0.193782,0.89109,0.877967,0.822135,0.165573,0.176254,0.864692,0.549192,0.164755,0.635031,0.115488,0.217196,0.638419,0.218158,0.0510553,0.064022,0.896729,0.806031,0.856025,0.343735,0.163838,0.220918,0.181034,0.868907,0.968799,0.912063,0.0537395,0.66748,0.696452,0.419191,0.451759,0.491285,0.33247,0.121354,0.438167,0.705766,0.260515,0.699731,0.920429,0.380575,0.716173,0.912754,0.0083549,0.257774,0.880754,0.936014,0.789738,0.941246,0.281721,0.0126085,0.398804,0.671601,0.0858306,0.332937,0.617976,0.434022,0.629963,0.408289,0.0410882,0.3403,0.099106,0.501306,0.841851,0.896852,0.760225,0.729973,0.552618,0.45154,0.860753,0.349424,0.0696697,0.233941,0.265724,0.48092,0.643768,0.886525,0.473592,0.984468,0.627762,0.44881,0.11167,0.216349,0.664154,0.939447,0.131525,0.542483,0.0140301,0.608973,0.263525,0.857975,0.384703,0.913905,0.770301,0.558467,0.13577,0.0229374,0.239992,0.535281,0.125907,0.0501368,0.292122,0.00714344,0.588714,0.14795,0.0269122,0.323574,0.84585,0.950458,0.117606,0.977812,0.406987,0.164456,0.809543,0.122669,0.687495,0.583293,0.912427,0.774503,0.0565631,0.946808,0.844362,0.292424,0.302717,0.518697,0.232942,0.26505,0.525016,0.439825,0.291968,0.239312,0.125559,0.850679,0.437141,0.792823,0.51659,0.916903,0.394172,0.58644,0.82674,0.273315,0.578493,0.977234,0.154404,0.198858,0.360552,0.515308,0.384672,0.769509,0.250148,0.266812,0.949289,0.648583,0.829454,0.936345,0.887278,0.0383638,0.294286,0.355697,0.346317,0.997276,0.573915,0.787291,0.728972,0.224203,0.523,0.981783,0.92386,0.847917,0.561002,0.322177,0.844385,0.536504,0.0684353,0.59881,0.720583,0.229535,0.323853,0.34407,0.591345,0.478277,0.837623,0.927701,0.120487,0.923285,0.0216811,0.294042,0.390415,0.114849,0.494909,0.27724,0.696793,0.767561,0.360897,0.912272,0.166321,0.200244,0.0876675,0.470154,0.376209,0.361029,0.422621,0.23587,0.538472,0.0585471,0.215031,0.0388033,0.561228,0.559343,0.781238,0.436554,0.105206,0.589801,0.76109,0.0599933,0.784199,0.776883,0.81297,0.304442,0.668901,0.619623,0.567532,0.429131,0.623674,0.606126,0.529364,0.355804,0.158138,0.755776,0.761597,0.124952,0.864554,0.167342,0.315976,0.853364,0.101005,0.392849,0.859098,0.753695,0.618219,0.855476,0.405021,0.10265,0.795529,0.218412,0.144851,0.854752,0.00429666,0.904041,0.205326,0.0941185,0.188591,0.134457,0.177359,0.90961,0.181368,0.59538,0.538092,0.527614,0.784646,0.224323,0.0836495,0.58472,0.0421493,0.409361,0.852225,0.557811,0.76193,0.148719,0.142207,0.9399,0.330515,0.448019,0.17948,0.346114,0.292429,0.82854,0.637973,0.668624,0.525203,0.983799,0.212594,0.0784072,0.526368,0.689574,0.366088,0.619648,0.932593,0.0417675,0.459604,0.792048,0.566018,0.139183,0.436785,0.294322,0.680304,0.460281,0.434791,0.323542,0.641321,0.853256,0.571585,0.391283,0.769276,0.735023,0.32387,0.901328,0.472799,0.463244,0.0598161,0.324493,0.599801,0.341987,0.883067,0.238644,0.627966,0.40207,0.629469,0.667057,0.436412,0.363497,0.24408,0.972947,0.121467,0.745781,0.867117,0.242158,0.719984,0.14964,0.0739212,0.228739,0.229429,0.513426,0.753812,0.754148,0.339115,0.867912,0.697109,0.088546,0.314651,0.58361,0.0165013,0.410081,0.788327,0.954129,0.650906,0.822801,0.208753,0.842149,0.0326536,0.118418,0.324298,0.993247,0.281972,0.330946,0.816329,0.752491,0.237024,0.733616,0.207033,0.106136,0.00243902,0.768142,0.0507259,0.0692418,0.0112878,0.289133,0.996285,0.31535,0.96528,0.0886796,0.275199,0.737514,0.697769,0.986573,0.762863,0.395927,0.47672,0.307204,0.28534,0.331881,0.0374734,0.259506,0.00144386,0.351263,0.0151882,0.028071,0.251438,0.195655,0.4364,0.0234286,0.0757874,0.103071,0.963166,0.483894,0.472703,0.503792,0.639519,0.837267,0.473064,0.528794,0.300105,0.137556,0.145518,0.176387,0.553614,0.0901327,0.931878,0.5284,0.412464,0.174814,0.303545,0.933266,0.933405,0.938043,0.27446,0.740548,0.133848,0.156392,0.907092,0.350661,0.656497,0.558973,0.134166,0.792955,0.896504,0.909863,0.544697,0.954273,0.308449,0.0910288,0.301664,0.660874,0.984861,0.66273,0.269984,0.905027,0.0918898,0.573835,0.0954682,0.961559,0.348617,0.22036,0.8258,0.310255,0.744643,0.955799,0.72893,0.216435,0.941717,0.455628,0.0099327,0.273955,0.587478,0.28227,0.22615,0.229519,0.810652,0.369588,0.221102,0.859319,0.463097,0.448,0.757261,0.823709,0.95614,0.862057,0.585079,0.24262,0.539034,0.0889543,0.710092,0.880037,0.468541,0.65515,0.503844,0.354588,0.115168,0.00363934,0.205528,0.633871,0.366225,0.330594,0.428957,0.243512,0.596696,0.872173,0.628454,0.425436,0.821511,0.623695,0.105245,0.45379,0.979904,0.494173,0.54318,0.981496,0.742661,0.252632,0.154311,0.802368,0.580555,0.691139,0.17102,0.98992,0.473905,0.818885,0.154692,0.534683,0.587859,0.552064,0.939667,0.823105,0.82377,0.137522,0.19024,0.431298,0.0981063,0.129672,0.497538,0.263219,0.195384,0.508639,0.811621,0.83618,0.985549,0.55092,0.520382,0.894229,0.715931,0.969853,0.555507,0.813661,0.571773,0.751161,0.882423,0.459199,|0.155652,0.438409,0.685842,0.913567,0.526996,0.863311,0.275004,0.890472,0.54181,0.537431,0.553095,0.824555,0.322272,0.938174,0.718655,0.284313,0.214489,0.618672,0.197426,0.439397,0.306955,0.873458,0.307315,0.3406,0.739471,0.799912,0.355315,0.751089,0.0870125,0.806298,0.885565,0.376016,0.524978,0.941042,0.812066,0.877479,0.659088,0.63518,0.772646,0.591469,0.0431261,0.444547,0.613036,0.283291,0.70779,0.495041,0.0531289,0.681987,0.715745,0.903326,0.975108,0.779441,0.432492,0.891995,0.256473,0.681809,0.253973,0.164666,0.513322,0.504687,0.464654,0.454383,0.621121,0.0165592,0.790425,0.660622,0.930345,0.427684,0.0678506,0.114374,0.0723747,0.221195,0.942511,0.817767,0.217131,0.891869,0.128973,0.266408,0.761899,0.905817,0.298238,0.0365077,0.949409,0.584996,0.028243,0.303475,0.434276,0.961056,0.0035516,0.0469278,0.498808,0.876157,0.0837286,0.780759,0.0488521,0.854214,0.30445,0.390772,0.664106,0.254472,0.859799,0.22925,0.742766,0.238832,0.464498,0.8852,0.686897,0.648522,0.497087,0.234829,0.81215,0.889394,0.669427,0.282242,0.494168,0.28066,0.0249803,0.0919296,0.586984,0.519369,0.710708,0.260979,0.624292,0.708868,0.288688,0.272153,0.793764,0.671458,0.421238,0.578973,0.822739,0.537514,0.705561,0.537435,0.460827,0.287023,0.345845,0.625216,0.799251,0.388739,0.385565,0.555028,0.496321,0.115332,0.253469,0.614359,0.514057,0.679643,0.945051,0.177708,0.554916,0.0745555,0.288281,0.436817,0.0123679,0.0174577,0.642262,0.847682,0.945154,0.949975,0.605018,0.830945,0.653456,0.788799,0.454275,0.648424,0.90344,0.540811,0.14396,0.314725,0.452462,0.928564,0.85142,0.514821,0.327595,0.446007,0.121932,0.545289,0.787428,0.643938,0.422766,0.558641,0.0539989,0.209711,0.215288,0.765755,0.148401,0.521276,0.696448,0.317201,0.74972,0.0257653,0.023939,0.687154,0.22084,0.582188,0.135783,0.828157,0.785853,0.289479,0.815779,0.833229,0.157964,0.244608,0.63856,0.0938911,0.0456095,0.78623,0.837182,0.910912,0.963224,0.843695,0.358915,0.922035,0.269383,0.915575,0.816292,0.252313,0.526216,0.789507,0.363209,0.272675,0.627381,0.072247,0.596963,0.0267061,0.311063,0.301641,0.623907,0.0259575,0.069795,0.709502,0.776258,0.315476,0.104753,0.696538,0.179086,0.660056,0.401805,0.459552,0.684046,0.0179485,0.953079,0.062151,0.118674,0.265041,0.789314,0.491736,0.524076,0.714085,0.672902,0.697893,0.56052,0.472439,0.542316,0.779198,0.360577,0.4377,0.501908,0.403816,0.484297,0.95586,0.902328,0.191111,0.582116,0.610246,0.920962,0.8427,0.979005,0.731333,0.803191,0.919714,0.00772494,0.974465,0.738976,0.885324,0.470633,0.36826,0.251681,0.272411,0.617442,0.630959,0.543562,0.143967,0.112159,0.550115,0.642868,0.0327787,0.576627,0.812066,0.0400808,0.0992979,0.0727084,0.501061,0.834489,0.138633,0.579279,0.377842,0.901709,0.180806,0.643221,0.527971,0.538934,0.157405,0.24987,0.136332,0.515523,0.42798,0.471077,0.376095,0.778432,0.459616,0.526693,0.674693,0.699715,0.534393,0.563731,0.21207,0.488989,0.426069,0.62568,0.200303,0.866257,0.510059,0.825887,0.544748,0.424951,0.654646,0.277251,0.365411,0.25371,0.830627,0.329974,0.612348,0.695233,0.996676,0.0283934,0.710617,0.143553,0.956437,0.0376346,0.77485,0.41383,0.0291898,0.051256,0.850609,0.145921,0.801342,0.996975,0.130449,0.349974,0.41403,0.467165,0.0600818,0.715765,0.267316,0.5483,0.568302,0.679599,0.665984,0.878711,0.178844,0.218501,0.341222,0.995708,0.801752,0.92288,0.128702,0.352622,0.0244216,0.830951,0.799456,0.267181,0.183486,0.946006,0.130725,0.396021,0.185689,0.500048,0.149358,0.910102,0.355396,0.244572,0.467191,0.0534799,0.435098,0.713956,0.567106,0.92755,0.293571,0.289707,0.362211,0.86522,0.861367,0.504497,0.595142,0.776915,0.832309,0.738282,0.220349,0.337729,0.60268,0.750042,0.831157,0.704184,0.143625,0.940558,0.68434,0.670728,0.861796,0.00604987,0.429304,0.427447,0.299777,0.270985,0.549527,0.14432,0.00701982,0.628308,0.230943,0.587164,0.632778,0.318769,0.526785,0.715324,0.418733,0.303624,0.244189,0.928593,0.18324,0.578692,0.892297,0.776606,0.165942,0.52546,0.828038,0.571329,0.847252,0.996249,0.38951,0.664373,0.597901,0.856314,0.924479,0.983783,0.0298476,0.553436,0.597397,0.657233,0.644166,0.40236,0.644375,0.533506,0.619458,0.860604,0.641287,0.057314,0.683894,0.549638,0.204327,0.0894889,0.0703543,0.24905,0.444749,0.451457,0.342067,0.160476,0.761132,0.944478,0.553405,0.656989,0.0324686,0.120904,0.755338,0.0246511,0.358121,0.789389,0.134922,0.733289,0.884688,0.197983,0.717474,0.558073,0.139133,0.43431,0.843036,0.697718,0.453609,0.0266784,0.929331,0.245984,0.438487,0.237745,0.68806,0.938947,0.860978,0.846228,0.363759,0.738398,0.292729,0.090101,0.704218,0.840773,0.514249,0.453471,0.448211,0.0265655,0.233585,0.293061,0.477327,0.716646,0.736244,0.897868,0.749402,0.524688,0.271034,0.945331,0.131731,0.177067,0.444888,0.0319245,0.0925545,0.621199,0.0366447,0.0193592,0.0201269,0.333005,0.822322,0.230648,0.826857,0.629874,0.0922598,0.654369,0.179543,0.274592,0.7714,0.974173,0.770258,0.355214,0.595189,0.451333,0.626901,0.0917979,0.968328,0.453843,0.727212,0.816785,0.762738,0.692789,0.0375937,0.46632,0.19982,0.525758,0.515553,0.451374,0.71405,0.920565,0.61524,0.881079,0.248814,0.243026,0.737253,0.868132,0.481615,0.857953,0.517433,0.388037,0.462659,0.812205,0.455641,0.131317,0.601595,0.468268,0.950154,0.306104,0.508484,0.171914,0.733306,0.587808,0.0309611,0.608057,0.545766,0.239133,0.442054,0.704258,0.527133,0.677993,0.668109,0.225896,0.154487,0.680808,0.221017,0.527771,0.581146,0.00869387,0.6756,0.218099,0.113044,0.633308,0.96911,0.155034,0.795463,0.666544,0.512648,0.97531,0.726166,0.827606,0.467998,0.419864,0.00746417,0.66802,0.606473,0.659942,0.886913,0.502069,0.828779,0.46017,0.511561,0.712723,0.671532,0.771654,0.559266,0.0812774,0.24154,0.627843,0.776101,0.632622,0.0315678,0.720214,0.0349428,0.0662386,0.538993,0.194156,0.617942,0.258418,0.513083,0.051865,0.915771,0.434851,0.691983,0.683926,0.803852,0.497514,0.57745,0.515958,0.733584,0.576689,0.831018,0.471847,0.0209462,0.531448,0.276792,0.836157,0.359786,0.0621479,0.562668,0.502656,0.794314,0.886042,0.239308,0.312475,0.40581,0.892495,0.827645,0.334274,0.142262,0.702951,0.850723,0.797039,0.474923,0.428387,0.657429,0.845162,0.205881,0.20226,0.25293,0.579499,0.37109,0.00343281,0.448731,0.513744,0.735474,0.178835,0.334901,0.244674,0.245043,0.227114,0.598824,0.626633,0.0521836,0.783564,0.772068,0.612885,0.976572,0.623981,0.60074,0.933507,0.806435,0.0170748,0.568217,0.682913,0.503038,0.710263,0.243425,0.154627,0.0327431,0.630347,0.897155,0.298127,0.435732,0.822682,0.0100881,0.0814937,0.332233,0.0142013,0.688068,0.0388332,0.505249,0.852833,0.819944,0.753996,0.447052,0.293739,0.466282,0.77564,0.189395,0.972829,0.139675,0.65328,0.0305816,0.389534,0.761701,0.540489,0.240542,0.139781,0.496191,0.406178,0.00721818,0.620544,0.804793,0.339726,0.468715,0.33198,0.501155,0.589333,0.124499,0.792575,0.79454,0.4561,0.330725,0.0547988,0.84384,0.995802,0.959343,0.975052,0.769542,0.49134,0.632251,0.210092,0.468056,0.482235,0.137081,0.309369,0.82869,0.919209,0.428134,0.0835882,0.902616,0.803547,0.737974,0.603535,0.758747,0.322247,0.450189,0.335173,0.100673,0.0413231,0.589153,0.570175,0.549937,0.92381,0.338994,0.972107,0.105163,0.226374,0.897195,0.0617741,0.871396,0.990818,0.842079,0.188855,0.102928,0.489014,0.883437,0.596241,0.35381,0.321693,0.395456,0.514829,0.989601,0.558667,0.61062,0.279953,0.908497,0.147291,0.784698,0.533534,0.255443,0.384882,0.614421,0.0718985,0.449108,0.666604,0.0950252,0.857015,0.290374,0.330514,0.596827,0.525858,0.854526,0.786588,0.354158,0.17151,0.0345296,0.693603,0.3876,0.203312,0.539942,0.0262035,0.963325,0.731274,0.249573,0.599237,0.014294,0.918811,0.071305,0.753993,0.0521318,0.305503,0.294374,0.945949,0.782552,0.847345,0.4524,0.742735,0.607715,0.0788252,0.196904,0.816698,0.0831006,0.593733,0.968493,0.0986651,0.934216,0.178989,0.897432,0.962911,0.35416,0.761758,0.946963,0.490278,0.874278,0.594274,0.10903,0.160481,0.26234,0.830912,0.897513,0.366335,0.939313,0.390499,0.964125,0.886642,0.867331,0.0830587,0.0442429,0.823401,0.0442249,0.353026,0.882414,0.105092,0.329816,0.626296,0.217043,0.810647,0.846326,0.930378,0.560726,0.620463,0.936232,0.997828,0.951158,0.0624923,0.77051,0.691088,0.650772,0.151568,0.150485,0.661999,0.126903,0.637299,0.648749,0.42338,0.325243,0.778135,0.618198,0.416448,0.663624,0.408425,0.128307,0.521814,0.615414,0.127994,0.79031,0.679995,0.206425,0.578327,0.238026,0.501115,0.445682,0.228063,0.503665,0.0931906,0.569489,0.0597115,0.830739,0.679181,0.85036,0.409706,0.699228,0.0958461,0.956234,0.059234,0.84089,0.52191,0.011264,0.801682,0.632884,0.809901,0.620388,0.450425,0.863086,0.442126,0.72715,0.111129,0.221077,0.955989,0.735036,0.761302,0.110419,0.132813,0.332915,0.847046,0.499312,0.462885,0.746822,0.380207,0.723863,0.536558,0.867974,0.0266212,0.517187,0.515251,0.799341,0.551526,0.204977,0.395734,0.0829058,0.265617,0.824382,0.838173,0.806371,0.480978,0.254239,0.832385,0.0760631,0.313194,0.705788,0.355591,0.659787,0.696325,0.0263823,0.728091,0.343494,0.42909,0.712103,0.0020172,0.0148494,0.946905,0.934172,0.568254,0.925205,0.703165,0.948524,0.718402,0.977857,0.142949,0.0233488,0.710232,0.624001,| diff --git a/benchmark/torchscripts/VQ/rowCodeIndexY.txt b/benchmark/torchscripts/VQ/rowCodeIndexY.txt new file mode 100644 index 00000000..bc791165 --- /dev/null +++ b/benchmark/torchscripts/VQ/rowCodeIndexY.txt @@ -0,0 +1 @@ +352,975,858,566,628,553,407,697,304,627,508,529,920,358,186,194,490,62,630,828,800,446,885,72,568,21,208,584,354,371,425,510,235,109,411,653,197,226,85,674,990,205,207,436,59,669,179,844,148,538,183,804,332,68,477,728,8,769,805,787,760,527,104,509,269,969,815,910,650,329,330,37,78,863,245,700,351,788,16,611,951,136,134,88,486,952,364,998,964,664,130,274,398,918,914,936,762,777,231,110,564,791,396,241,252,442,263,476,648,549,525,694,896,160,83,212,634,380,793,318,125,123,117,271,22,416,524,764,341,912,285,946,29,748,801,230,451,54,48,157,852,66,642,732,655,691,133,684,761,286,836,74,36,376,118,276,384,794,429,421,632,6,521,677,315,321,647,543,343,983,93,159,530,880,377,242,311,266,607,251,94,135,814,359,217,491,301,864,44,919,662,834,163,731,41,121,888,20,370,10,82,868,465,754,950,533,28,24,187,400,835,908,898,140,165,528,563,961,441,478,749,185,204,335,369,644,50,737,746,111,752,999,302,299,586,673,254,750,774,924,829,799,830,224,298,458,561,469,767,64,604,161,267,423,323,310,303,967,61,43,437,516,984,723,806,548,470,114,464,47,817,178,622,595,192,803,701,383,873,779,995,379,704,727,947,938,686,766,519,599,77,193,168,305,294,833,976,243,565,506,641,309,368,567,162,811,433,209,498,870,917,408,198,954,809,992,635,501,758,957,588,502,120,151,745,333,847,312,932,596,824,415,738,893,257,51,782,374,46,546,741,122,188,406,249,781,35,839,909,499,646,979,942,221,345,911,891,394,931,49,146,489,959,665,297,926,428,381,268,7,585,487,797,685,902,435,579,729,353,725,32,295,126,997,52,597,152,462,581,167,485,234,334,771,845,480,683,324,770,573,284,264,248,139,759,166,987,621,361,933,449,92,722,395,1,716,322,86,962,488,261,773,810,287,280,216,293,99,336,886,447,744,610,576,711,60,174,843,260,291,11,853,308,492,792,388,719,97,58,897,842,808,90,941,258,667,672,692,418,963,182,70,26,869,679,422,823,603,426,945,978,282,702,473,862,220,625,645,643,795,307,172,439,225,861,176,56,481,743,756,349,402,463,820,638,289,631,79,907,378,112,339,387,582,881,27,283,517,626,468,326,903,190,876,223,706,892,95,288,391,871,807,507,203,278,765,542,413,265,895,751,922,222,557,826,718,860,448,201,763,615,244,916,703,670,474,939,457,156,532,432,87,988,837,316,589,884,783,620,180,855,154,496,539,875,617,397,215,555,270,98,676,971,444,382,513,372,403,768,319,671,742,518,996,550,790,977,142,233,900,328,355,640,414,461,879,757,138,986,202,177,981,857,218,633,537,213,229,590,690,313,714,583,541,236,865,405,189,531,874,363,350,40,687,240,614,943,721,602,393,593,921,708,786,785,238,775,13,850,616,796,466,901,129,734,250,784,707,966,73,740,699,170,974,867,515,472,164,592,710,184,730,656,675,96,789,851,91,169,18,821,780,424,296,663,695,127,108,119,623,137,552,681,841,598,520,239,958,572,536,818,360,994,147,386,522,340,247,526,237,390,34,116,53,106,228,705,344,970,467,972,255,993,75,171,960,320,776,65,337,210,314,150,389,512,246,259,854,306,4,848,253,141,227,493,554,816,606,219,726,913,577,149,906,375,666,755,173,812,689,199,84,392,559,38,281,450,327,362,709,940,272,654,69,693,401,124,928,832,660,348,419,944,639,856,494,678,262,930,357,618,504,366,25,668,955,733,948,637,605,131,483,420,713,200,9,569,445,290,547,356,23,102,651,410,175,956,460,81,30,317,45,153,802,682,63,367,882,831,181,735,724,688,132,475,659,629,342,544,696,3,523,822,338,427,657,608,747,915,503,849,612,887,571,889,409,452,158,982,609,113,275,89,455,404,680,878,591,505,712,846,649,753,277,331,560,256,105,989,949,840,636,347,825,953,540,923,15,973,195,511,373,601,838,346,497,191,143,399,300,545,578,929,430,872,556,2,214,412,652,899,798,453,594,484,459,580,965,100,103,101,827,904,772,890,67,434,115,76,570,866,778,574,128,859,211,385,144,145,715,935,968,440,819,42,196,471,905,551,107,273,206,980,55,883,417,934,39,927,514,482,57,0,925,325,985,454,19,717,155,479,736,443,534,658,619,5,535,558,500,292,813,31,698,431,17,562,80,739,600,575,495,720,991,613,587,661,12,71,365,232,33,877,624,14,937,894,438,279,456, diff --git a/benchmark/torchscripts/prototypes.pt b/benchmark/torchscripts/prototypes.pt new file mode 100644 index 00000000..f9c12cb6 Binary files /dev/null and b/benchmark/torchscripts/prototypes.pt differ diff --git a/commit.sh b/commit.sh index c84420bc..ce47d654 100755 --- a/commit.sh +++ b/commit.sh @@ -1,4 +1,6 @@ + BRANCH=BACKUP_OPENCL + git init git checkout -b $BRANCH git add . diff --git a/commit_info b/commit_info index 8fd83fb9..ccbc2d7f 100644 --- a/commit_info +++ b/commit_info @@ -1 +1 @@ -1. add int8/int16 feature \ No newline at end of file +1. fix latency calculation bugs \ No newline at end of file diff --git a/figures/batchSize2sCPP/batchSizestream_cpp_fro.pdf b/figures/batchSize2sCPP/batchSizestream_cpp_fro.pdf new file mode 100644 index 00000000..5989c96f Binary files /dev/null and b/figures/batchSize2sCPP/batchSizestream_cpp_fro.pdf differ diff --git a/figures/batchSize2sCPP/batchSizestream_cpp_lat95.pdf b/figures/batchSize2sCPP/batchSizestream_cpp_lat95.pdf new file mode 100644 index 00000000..3e2c6a06 Binary files /dev/null and b/figures/batchSize2sCPP/batchSizestream_cpp_lat95.pdf differ diff --git a/figures/batchSize2sCPP/batchSizestream_cpp_thr.pdf b/figures/batchSize2sCPP/batchSizestream_cpp_thr.pdf new file mode 100644 index 00000000..6a825843 Binary files /dev/null and b/figures/batchSize2sCPP/batchSizestream_cpp_thr.pdf differ diff --git a/figures/batchSizeCPP/batchSizestream_cpp_fro.pdf b/figures/batchSizeCPP/batchSizestream_cpp_fro.pdf new file mode 100644 index 00000000..00516de5 Binary files /dev/null and b/figures/batchSizeCPP/batchSizestream_cpp_fro.pdf differ diff --git a/figures/batchSizeCPP/batchSizestream_cpp_lat95.pdf b/figures/batchSizeCPP/batchSizestream_cpp_lat95.pdf new file mode 100644 index 00000000..fa6d8ce6 Binary files /dev/null and b/figures/batchSizeCPP/batchSizestream_cpp_lat95.pdf differ diff --git a/figures/batchSizeCPP/batchSizestream_cpp_thr.pdf b/figures/batchSizeCPP/batchSizestream_cpp_thr.pdf new file mode 100644 index 00000000..47e71ac7 Binary files /dev/null and b/figures/batchSizeCPP/batchSizestream_cpp_thr.pdf differ diff --git a/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_fro.pdf b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_fro.pdf new file mode 100644 index 00000000..9f4a44b8 Binary files /dev/null and b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_fro.pdf differ diff --git a/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_lat95.pdf b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_lat95.pdf new file mode 100644 index 00000000..7fcbd747 Binary files /dev/null and b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_lat95.pdf differ diff --git a/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_thr.pdf b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_thr.pdf new file mode 100644 index 00000000..21ab17cf Binary files /dev/null and b/figures/eventRateTps2sCPP/eventRateTpsstream_cpp_thr.pdf differ diff --git a/figures/eventRateTpsCPP/eventRateTpsstream_cpp_fro.pdf b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_fro.pdf new file mode 100644 index 00000000..288c37d4 Binary files /dev/null and b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_fro.pdf differ diff --git a/figures/eventRateTpsCPP/eventRateTpsstream_cpp_lat95.pdf b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_lat95.pdf new file mode 100644 index 00000000..3d8d87d5 Binary files /dev/null and b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_lat95.pdf differ diff --git a/figures/eventRateTpsCPP/eventRateTpsstream_cpp_thr.pdf b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_thr.pdf new file mode 100644 index 00000000..893b00d9 Binary files /dev/null and b/figures/eventRateTpsCPP/eventRateTpsstream_cpp_thr.pdf differ diff --git a/include/AMMBench.h b/include/AMMBench.h index 6116c0f2..9f901a31 100755 --- a/include/AMMBench.h +++ b/include/AMMBench.h @@ -5,6 +5,7 @@ #ifndef INTELLISTREAM_AMMBENCH_H #define INTELLISTREAM_AMMBENCH_H + #include #include #include @@ -39,6 +40,10 @@ * - meterTag (String) the tag of meter, see also @ref MeterTable, default is intelMsr * - staticPower (Double) set this to >0 if you want to manually config the static power of the device * - meterAddress (String) set this to the file system path of the meter, if it is different from the meter's default + * - isStreaming (U64) whether or not use streaming, default 0 + * @note this will only be run under single thread now, and perf or energy meter is not avaliable when setting to 1 + * @note by default, we only make A matrix streaming, if also want yo streaming B, please also set streamingTwoMatrixes to 1 + * - streamingTwoMatrixes (U64) whether make B matrix also streaming, default 0, will only affect when isStreaming=1 * @warning For some platforms, the staticPower automatically measured by sleep is not accurate. Please do this mannulally. See also the template config.csv * @section subsec_extend_operator How to extend a new algorithm (pt-based) @@ -92,13 +97,15 @@ #include #include #include +#include +#include #include /** * @} */ /** * @subsection code_stru_parallelization Parallelization -* This folder contains the parallelizationapproaches +* This folder contains the parallelization approaches * @defgroup AMMBENCH_PARALLELIZATION The parallelization classes * @{ * We define the parallelization classes of AMM. here @@ -109,6 +116,21 @@ * */ /** +* @subsection code_stru_STREAMING STREAMING +* This folder contains the STREAMING approaches +* @defgroup AMMBENCH_STREAMING The streaming classes +* @{ +* We define the streaming classes of AMM. here +**/ +#include +#include +#include +#include +/** + * @} + * + */ +/** * @subsection code_stru_cppalgo c++ algorithms * This folder contains the agorithms implemented under pure c++ * @defgroup AMMBENCH_CppAlgos The c++ amm algorithms @@ -124,13 +146,21 @@ #include #include #include - +#include +#include +#include #include - #include #include #include + +#include +#include +#include + + #include + /** * @} * @@ -155,6 +185,7 @@ #include #include #include +#include /** * @} */ diff --git a/include/CPPAlgos/AbstractCPPAlgo.h b/include/CPPAlgos/AbstractCPPAlgo.h index d0504289..c8c47dae 100644 --- a/include/CPPAlgos/AbstractCPPAlgo.h +++ b/include/CPPAlgos/AbstractCPPAlgo.h @@ -5,12 +5,14 @@ #ifndef INTELLISTREAM_INCLUDE_CPPALGOS_ABSTRACTCPPALGO_H_ #define INTELLISTREAM_INCLUDE_CPPALGOS_ABSTRACTCPPALGO_H_ + #include #include #include #include #include #include + namespace AMMBench { /** * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ @@ -20,50 +22,55 @@ namespace AMMBench { * @class AbstractCPPAlgo CPPAlgos/AbstractCPPAlgo.h * @brief The abstract class of c++ algos */ -class AbstractCPPAlgo { - protected: - /** - * @brief the default time break dowm variables - * @note By default, we decompose each AMM as - * - buildA, to translate A matrix - * - buildB, to translate B matrix - * - fABTime, to conduct mm or table look-up over the reduced A,B - * - postProcessTime, if f(A,B) is not the finall result, measure the time spend for post process - */ - uint64_t buildATime=0,buildBTime=0,fABTime=0,postProcessTime=0; + class AbstractCPPAlgo { + protected: + /** + * @brief the default time break dowm variables + * @note By default, we decompose each AMM as + * - buildA, to translate A matrix + * - buildB, to translate B matrix + * - fABTime, to conduct mm or table look-up over the reduced A,B + * - postProcessTime, if f(A,B) is not the finall result, measure the time spend for post process + */ + uint64_t buildATime = 0, buildBTime = 0, fABTime = 0, postProcessTime = 0; + + public: + AbstractCPPAlgo() { + + } + + ~AbstractCPPAlgo() { + + } + + /** + * @brief set the alo-specfic config related to one algorithm + */ + virtual void setConfig(INTELLI::ConfigMapPtr cfg); - public: - AbstractCPPAlgo() { + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - } - ~AbstractCPPAlgo() { + /** + * @brief to get the breakdown of this algorithm, returned as a config map + * @return the key-value table breakdown in ConfigMapPtr; + */ + virtual INTELLI::ConfigMapPtr getBreakDown(); + }; - } - /** - * @brief set the alo-specfic config related to one algorithm - */ - virtual void setConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - /** - * @brief to get the breakdown of this algorithm, returned as a config map - * @return the key-value table breakdown in ConfigMapPtr; - */ - virtual INTELLI::ConfigMapPtr getBreakDown(); -}; /** * @ingroup AMMBENCH_CppAlgos * @typedef AbstractMatrixCppAlgoPtr * @brief The class to describe a shared pointer to @ref AbstractCPPAlgo */ -typedef std::shared_ptr AbstractCPPAlgoPtr; + typedef std::shared_ptr AbstractCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newAbstractCppAlgo diff --git a/include/CPPAlgos/BCRSCPPAlgo.h b/include/CPPAlgos/BCRSCPPAlgo.h index 7dfd8cff..ac859798 100644 --- a/include/CPPAlgos/BCRSCPPAlgo.h +++ b/include/CPPAlgos/BCRSCPPAlgo.h @@ -5,6 +5,7 @@ #ifndef INTELLISTREAM_BCRSCPPALGO_H #define INTELLISTREAM_BCRSCPPALGO_H + #include namespace AMMBench { @@ -16,26 +17,26 @@ namespace AMMBench { * @class BCRSCPPAlgo CPPAlgos/BCRSCPPAlgo.h * @brief The Bernoulli column row sampling (BCRS) class of c++ algos */ -class BCRSCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - BCRSCPPAlgo() { + class BCRSCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + BCRSCPPAlgo() { - } + } - ~BCRSCPPAlgo() { + ~BCRSCPPAlgo() { - } + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + }; /** * @ingroup AMMBENCH_CppAlgos @@ -43,7 +44,7 @@ class BCRSCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref BCRSCppAlgo */ -typedef std::shared_ptr BCRSCPPAlgoPtr; + typedef std::shared_ptr BCRSCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newBCRSCppAlgo diff --git a/include/CPPAlgos/BetaCoOFDCPPAlgo.h b/include/CPPAlgos/BetaCoOFDCPPAlgo.h index ae58648c..08342a3c 100644 --- a/include/CPPAlgos/BetaCoOFDCPPAlgo.h +++ b/include/CPPAlgos/BetaCoOFDCPPAlgo.h @@ -4,6 +4,7 @@ #ifndef INTELLISTREAM_BETACOOFDCPPALGO_H #define INTELLISTREAM_BETACOOFDCPPALGO_H + #include namespace AMMBench { @@ -17,31 +18,33 @@ namespace AMMBench { * @note parameters * - algoBeta Double, the beta parameters in this algo, default 1.0 */ -class BetaCoOFDCPPAlgo : public AMMBench::AbstractCPPAlgo { - protected: - float algoBeta=1.0; - public: - BetaCoOFDCPPAlgo() { - - } - - ~BetaCoOFDCPPAlgo() { - - } - /** - * @brief set the alo-specfic config related to one algorithm - */ - virtual void setConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - -}; + class BetaCoOFDCPPAlgo : public AMMBench::AbstractCPPAlgo { + protected: + float algoBeta = 1.0; + public: + BetaCoOFDCPPAlgo() { + + } + + ~BetaCoOFDCPPAlgo() { + + } + + /** + * @brief set the alo-specfic config related to one algorithm + */ + virtual void setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; /** * @ingroup AMMBENCH_CppAlgos @@ -49,7 +52,7 @@ class BetaCoOFDCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref BetaCoOFDCppAlgo */ -typedef std::shared_ptr BetaCoOFDCPPAlgoPtr; + typedef std::shared_ptr BetaCoOFDCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newBetaCoOFDCppAlgo diff --git a/include/CPPAlgos/BlockLRACPPAlgo.h b/include/CPPAlgos/BlockLRACPPAlgo.h new file mode 100644 index 00000000..951a1c37 --- /dev/null +++ b/include/CPPAlgos/BlockLRACPPAlgo.h @@ -0,0 +1,72 @@ +/*! \file BlockLRACPPAlgo.h*/ +// +// Created by yuhao on 27/05/23. +// + +#ifndef INTELLISTREAM_INCLUDE_CPPALGOS_BlockLRACPPAlgo_H_ +#define INTELLISTREAM_INCLUDE_CPPALGOS_BlockLRACPPAlgo_H_ + +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CPPAlgos The algorithms writtrn in c++ + * @{ + */ +/** + * @class BlockLRACPPlgo CPPAlgos/BlockLRACPPAlgo.h + * @brief The block SVD LRA class of c++ algos + * + */ + class BlockLRACPPAlgo : public AMMBench::AbstractCPPAlgo { + + protected: + float ARankRatio = 0.5; + float BRankRatio = 0.5; + + public: + BlockLRACPPAlgo() { + + } + + ~BlockLRACPPAlgo() { + + } + + /** + * @brief set the alo-specfic config related to one algorithm + * @param ARankRatio LRA rank ratio over A complete SVD rank + * @param BRankRatio LRA rank ratio over B complete SVD rank + */ + virtual void setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief Implementation of paper [IEEE-HPCS 2017] Accelerating Matrix Multiplication in Deep Learning by Using Low-Rank Approximation https://ieeexplore.ieee.org/abstract/document/8035076 + * @param A the A matrix + * @param B the B matrix + * @param blockSize the size of block to do SVD + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t blockSize); + + }; + /** + * @ingroup AMMBENCH_CPPAlgos + * @typedef AbstractMatrixCPPAlgoPtr + * @brief The class to describe a shared pointer to @ref BlockLRACPPAlgo + + */ + typedef std::shared_ptr BlockLRACPPAlgoPtr; + /** + * @ingroup AMMBENCH_CPPAlgos + * @def newBlockLRACPPAlgo + * @brief (Macro) To creat a new @ref BlockLRACPPAlgounder shared pointer. + */ +#define newBlockLRACPPAlgo std::make_shared +} +/** + * @} + */ + +#endif //INTELLISTREAM_INCLUDE_CPPALGOS_BlockLRACPPAlgo_H_ + diff --git a/include/CPPAlgos/CPPAlgoTable.h b/include/CPPAlgos/CPPAlgoTable.h index 2773557b..e0e21a3f 100644 --- a/include/CPPAlgos/CPPAlgoTable.h +++ b/include/CPPAlgos/CPPAlgoTable.h @@ -8,6 +8,7 @@ #include #include + namespace AMMBench { /** * @ingroup AMMBENCH_CppAlgos The algorithms writtrn in c++ @@ -24,33 +25,35 @@ namespace AMMBench { * - mm @ref AbstractCPPAlgo (default matmul) * - crs @ref CRSCPPAlgo (the column-row-sampling, crs) */ -class CPPAlgoTable { - protected: - std::map algoMap; - public: - CPPAlgoTable(); - ~CPPAlgoTable() {} - /** - * @brief To register a new ALGO - * @param anew The new algo - * @param tag THe name tag - */ - void registerNewCppAlgo(AMMBench::AbstractCPPAlgoPtr anew, std::string tag) { - algoMap[tag] = anew; - } + class CPPAlgoTable { + protected: + std::map algoMap; + public: + CPPAlgoTable(); + + ~CPPAlgoTable() {} + + /** + * @brief To register a new ALGO + * @param anew The new algo + * @param tag THe name tag + */ + void registerNewCppAlgo(AMMBench::AbstractCPPAlgoPtr anew, std::string tag) { + algoMap[tag] = anew; + } - /** - * @brief find a dataloader in the table according to its name - * @param name The nameTag of loader - * @return The AbstractCppAlgoPtr, nullptr if not found - */ - AMMBench::AbstractCPPAlgoPtr findCppAlgo(std::string name) { - if (algoMap.count(name)) { - return algoMap[name]; - } - return nullptr; - } -}; + /** + * @brief find a dataloader in the table according to its name + * @param name The nameTag of loader + * @return The AbstractCppAlgoPtr, nullptr if not found + */ + AMMBench::AbstractCPPAlgoPtr findCppAlgo(std::string name) { + if (algoMap.count(name)) { + return algoMap[name]; + } + return nullptr; + } + }; /** * @} */ diff --git a/include/CPPAlgos/CRSCPPAlgo.h b/include/CPPAlgos/CRSCPPAlgo.h index 015a3560..703c5818 100644 --- a/include/CPPAlgos/CRSCPPAlgo.h +++ b/include/CPPAlgos/CRSCPPAlgo.h @@ -5,7 +5,9 @@ #ifndef INTELLISTREAM_INCLUDE_CPPALGOS_CRSCppAlgo_H_ #define INTELLISTREAM_INCLUDE_CPPALGOS_CRSCppAlgo_H_ + #include + namespace AMMBench { /** * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ @@ -16,31 +18,34 @@ namespace AMMBench { * @brief The column row sampling (CRS) class of c++ algos * */ -class CRSCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - CRSCPPAlgo() { - - } - ~CRSCPPAlgo() { - - } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - -}; + class CRSCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + CRSCPPAlgo() { + + } + + ~CRSCPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + /** * @ingroup AMMBENCH_CppAlgos * @typedef AbstractMatrixCppAlgoPtr * @brief The class to describe a shared pointer to @ref CRSCppAlgo */ -typedef std::shared_ptr CRSCPPAlgoPtr; + typedef std::shared_ptr CRSCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newCRSCppAlgo diff --git a/include/CPPAlgos/CRSV2CPPAlgo.h b/include/CPPAlgos/CRSV2CPPAlgo.h index 8a1663f1..12a9cc4b 100644 --- a/include/CPPAlgos/CRSV2CPPAlgo.h +++ b/include/CPPAlgos/CRSV2CPPAlgo.h @@ -18,26 +18,26 @@ namespace AMMBench { * @brief The column row sampling (CRS) class of c++ algos, a second implementation * */ -class CRSV2CPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - CRSV2CPPAlgo() { + class CRSV2CPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + CRSV2CPPAlgo() { - } + } - ~CRSV2CPPAlgo() { + ~CRSV2CPPAlgo() { - } + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + }; /** * @ingroup AMMBENCH_CppAlgos @@ -45,7 +45,7 @@ class CRSV2CPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref CRSV2CppAlgo */ -typedef std::shared_ptr CRSV2CPPAlgoPtr; + typedef std::shared_ptr CRSV2CPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newCRSV2CppAlgo diff --git a/include/CPPAlgos/CoOccurringFDCPPAlgo.h b/include/CPPAlgos/CoOccurringFDCPPAlgo.h index f951cf40..7436e1dd 100644 --- a/include/CPPAlgos/CoOccurringFDCPPAlgo.h +++ b/include/CPPAlgos/CoOccurringFDCPPAlgo.h @@ -4,6 +4,7 @@ #ifndef INTELLISTREAM_COOCCURRINGFDCPPALGO_H #define INTELLISTREAM_COOCCURRINGFDCPPALGO_H + #include namespace AMMBench { @@ -16,26 +17,26 @@ namespace AMMBench { * @brief The Co-Occurring FD AMM class of c++ algos * */ -class CoOccurringFDCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - CoOccurringFDCPPAlgo() { + class CoOccurringFDCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + CoOccurringFDCPPAlgo() { - } + } - ~CoOccurringFDCPPAlgo() { + ~CoOccurringFDCPPAlgo() { - } + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + }; /** * @ingroup AMMBENCH_CppAlgos @@ -43,7 +44,7 @@ class CoOccurringFDCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref CoOccurringFDCppAlgo */ -typedef std::shared_ptr CoOccurringFDCPPAlgoPtr; + typedef std::shared_ptr CoOccurringFDCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newCoOccurringFDCppAlgo diff --git a/include/CPPAlgos/CountSketchCPPAlgo.h b/include/CPPAlgos/CountSketchCPPAlgo.h index 097584ac..85ea47ea 100644 --- a/include/CPPAlgos/CountSketchCPPAlgo.h +++ b/include/CPPAlgos/CountSketchCPPAlgo.h @@ -18,26 +18,26 @@ namespace AMMBench { * @brief The counter sketch class of c++ algos * */ -class CountSketchCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - CountSketchCPPAlgo() { + class CountSketchCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + CountSketchCPPAlgo() { - } + } - ~CountSketchCPPAlgo() { + ~CountSketchCPPAlgo() { - } + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + }; /** * @ingroup AMMBENCH_CppAlgos @@ -45,7 +45,7 @@ class CountSketchCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref CountSketchCPPAlgo */ -typedef std::shared_ptr CountSketchCPPAlgoPtr; + typedef std::shared_ptr CountSketchCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newCRSV2CppAlgo diff --git a/include/CPPAlgos/EWSCPPAlgo.h b/include/CPPAlgos/EWSCPPAlgo.h index fda3d4d7..08110d5f 100644 --- a/include/CPPAlgos/EWSCPPAlgo.h +++ b/include/CPPAlgos/EWSCPPAlgo.h @@ -5,6 +5,7 @@ #ifndef INTELLISTREAM_EWSCPPALGO_H #define INTELLISTREAM_EWSCPPALGO_H + #include namespace AMMBench { @@ -17,26 +18,26 @@ namespace AMMBench { * @brief The Element Wise Sampling (EWS) class of c++ algos * */ -class EWSCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - EWSCPPAlgo() { + class EWSCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + EWSCPPAlgo() { - } + } - ~EWSCPPAlgo() { + ~EWSCPPAlgo() { - } + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + }; /** * @ingroup AMMBENCH_CppAlgos @@ -44,7 +45,7 @@ class EWSCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref EWSCppAlgo */ -typedef std::shared_ptr EWSCPPAlgoPtr; + typedef std::shared_ptr EWSCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newEWSCppAlgo diff --git a/include/CPPAlgos/FastJLTCPPAlgo.h b/include/CPPAlgos/FastJLTCPPAlgo.h new file mode 100644 index 00000000..ce061b29 --- /dev/null +++ b/include/CPPAlgos/FastJLTCPPAlgo.h @@ -0,0 +1,59 @@ +/*! \file FastJLTCPPAlgo.h*/ +// +// Created by luv on 6/18/23. +// + +#ifndef INTELLISTREAM_FASTFLTCPPALGO_H +#define INTELLISTREAM_FASTJLTCPPALGO_H + +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CppAlgos The algorithms writtrn in c++ + * @{ + */ +/** + * @class FastJLTCPPAlgo CPPAlgos/FastJLTCPPAlgo.h + * @brief The tug of war class of c++ algoS + */ +class FastJLTCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + FastJLTCPPAlgo() { + + } + + ~FastJLTCPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + private: +}; + +/** + * @ingroup AMMBENCH_CppAlgos + * @typedef AbstractMatrixCppAlgoPtr + * @brief The class to describe a shared pointer to @ref FastJLTCppAlgo + + */ +typedef std::shared_ptr FastJLTCPPAlgoPtr; +/** + * @ingroup AMMBENCH_CppAlgos + * @def newFastJLTCppAlgo + * @brief (Macro) To creat a new @ref FastJLTCppAlgounder shared pointer. + */ +#define newFastJLTCPPAlgo std::make_shared +} +/** + * @} + */ +#endif //INTELLISTREAM_FASTJLTCPPALGO_H diff --git a/include/CPPAlgos/INT8CPPAlgo.h b/include/CPPAlgos/INT8CPPAlgo.h index 31f08320..1117efa6 100644 --- a/include/CPPAlgos/INT8CPPAlgo.h +++ b/include/CPPAlgos/INT8CPPAlgo.h @@ -5,6 +5,7 @@ #ifndef INTELLISTREAM_INCLUDE_CPPALGOS_INT8CPPALGO_H_ #define INTELLISTREAM_INCLUDE_CPPALGOS_INT8CPPALGO_H_ + #include #include #include @@ -12,6 +13,7 @@ #include #include #include + namespace AMMBench { /** * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ @@ -25,64 +27,72 @@ namespace AMMBench { * @note additionally parameters * - fpMode, String, default FP32, can also use INT8 or INT16 */ -class INT8CPPAlgo : public AMMBench::AbstractCPPAlgo { - protected: - /** - * @brief the inline amm under nested loop fp32 - * @param A the A matrix - * @param B the B matrix - * @return the output c matrix - */ - torch::Tensor fp32amm(torch::Tensor A, torch::Tensor B); - /** - * @brief the inline amm under nested loop int8 - * @param A the A matrix - * @param B the B matrix - * @return the output c matrix - */ - torch::Tensor int8amm(torch::Tensor A, torch::Tensor B); - /** - * @brief the inline amm under nested loop int4 - * @param A the A matrix - * @param B the B matrix - * @return the output c matrix - */ - torch::Tensor int4amm(torch::Tensor A, torch::Tensor B); - /** - * @brief the inline amm under nested loop int16 - * @param A the A matrix - * @param B the B matrix - * @return the output c matrix - */ - torch::Tensor int16amm(torch::Tensor A, torch::Tensor B); - std::string fpMode="FP32"; - public: - INT8CPPAlgo() { + class INT8CPPAlgo : public AMMBench::AbstractCPPAlgo { + protected: + /** + * @brief the inline amm under nested loop fp32 + * @param A the A matrix + * @param B the B matrix + * @return the output c matrix + */ + torch::Tensor fp32amm(torch::Tensor A, torch::Tensor B); - } - ~INT8CPPAlgo() { + /** + * @brief the inline amm under nested loop int8 + * @param A the A matrix + * @param B the B matrix + * @return the output c matrix + */ + torch::Tensor int8amm(torch::Tensor A, torch::Tensor B); + + /** + * @brief the inline amm under nested loop int4 + * @param A the A matrix + * @param B the B matrix + * @return the output c matrix + */ + torch::Tensor int4amm(torch::Tensor A, torch::Tensor B); + + /** + * @brief the inline amm under nested loop int16 + * @param A the A matrix + * @param B the B matrix + * @return the output c matrix + */ + torch::Tensor int16amm(torch::Tensor A, torch::Tensor B); + + std::string fpMode = "FP32"; + public: + INT8CPPAlgo() { + + } + + ~INT8CPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + /** + * @brief set the alo-specfic config related to one algorithm + */ + virtual void setConfig(INTELLI::ConfigMapPtr cfg); + }; - } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - /** - * @brief set the alo-specfic config related to one algorithm - */ - virtual void setConfig(INTELLI::ConfigMapPtr cfg); -}; /** * @ingroup AMMBENCH_CppAlgos * @typedef INT8MatrixCppAlgoPtr * @brief The class to describe a shared pointer to @ref INT8CPPAlgo */ -typedef std::shared_ptr INT8CPPAlgoPtr; + typedef std::shared_ptr INT8CPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newINT8CppAlgo diff --git a/include/CPPAlgos/ProductQuantizationHash.h b/include/CPPAlgos/ProductQuantizationHash.h new file mode 100644 index 00000000..bf481729 --- /dev/null +++ b/include/CPPAlgos/ProductQuantizationHash.h @@ -0,0 +1,58 @@ +/*! \file ProductQuantizationHash.h*/ +// +// Created by haolan on 25/6/23. +// + +#ifndef INTELLISTREAM_PRODUCTQUANTIZATIONHASH_H +#define INTELLISTREAM_PRODUCTQUANTIZATIONHASH_H +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ + * @{ + */ +/** + * @class ProductQuantizationHash CPPAlgos/ProductQuantizationHash.h + * @brief The Product Quantization AMM class of c++ algos, using hash function to find matching prototypes + * + */ + class ProductQuantizationHash : public AMMBench::AbstractCPPAlgo { + public: + ProductQuantizationHash() { + + } + + ~ProductQuantizationHash() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + +/** + * @ingroup AMMBENCH_CppAlgos + * @typedef AbstractMatrixCppAlgoPtr + * @brief The class to describe a shared pointer to @ref ProductQuantizationHashAlgo + + */ + typedef std::shared_ptr ProductQuantizationHashPtr; +/** + * @ingroup AMMBENCH_CppAlgos + * @def newProductQuantizationHashAlgo + * @brief (Macro) To creat a new @ref ProductQuantizationHashAlgounder shared pointer. + */ +#define newProductQuantizationHashAlgo std::make_shared +} +/** + * @} + */ +#endif //INTELLISTREAM_PRODUCTQUANTIZATIONHASH_H diff --git a/include/CPPAlgos/ProductQuantizationRaw.h b/include/CPPAlgos/ProductQuantizationRaw.h new file mode 100644 index 00000000..5b74c17f --- /dev/null +++ b/include/CPPAlgos/ProductQuantizationRaw.h @@ -0,0 +1,58 @@ +/*! \file ProductQuantizationRaw.h*/ +// +// Created by haolan on 22/6/23. +// + +#ifndef AMMBENCH_PRODUCTQUANTIZATIONRAW_H +#define AMMBENCH_PRODUCTQUANTIZATIONRAW_H +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ + * @{ + */ +/** + * @class ProductQuantizationRaw CPPAlgos/ProductQuantizationRaw.h + * @brief The Product Quantization AMM class of c++ algos, using Euclidean distance + * + */ + class ProductQuantizationRaw : public AMMBench::AbstractCPPAlgo { + public: + ProductQuantizationRaw() { + + } + + ~ProductQuantizationRaw() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + +/** + * @ingroup AMMBENCH_CppAlgos + * @typedef AbstractMatrixCppAlgoPtr + * @brief The class to describe a shared pointer to @ref ProductQuantizationRawAlgo + + */ + typedef std::shared_ptr ProductQuantizationRawPtr; +/** + * @ingroup AMMBENCH_CppAlgos + * @def newProductQuantizationRawAlgo + * @brief (Macro) To creat a new @ref ProductQuantizationRawAlgounder shared pointer. + */ +#define newProductQuantizationRawAlgo std::make_shared +} +/** + * @} + */ +#endif //AMMBENCH_PRODUCTQUANTIZATIONRAW_H diff --git a/include/CPPAlgos/RIPCPPAlgo.h b/include/CPPAlgos/RIPCPPAlgo.h new file mode 100644 index 00000000..c1d94353 --- /dev/null +++ b/include/CPPAlgos/RIPCPPAlgo.h @@ -0,0 +1,61 @@ +/*! \file RIPCPPAlgo.h*/ +// +// Created by tony on 25/05/23. +// + +#ifndef INTELLISTREAM_INCLUDE_CPPALGOS_RIPCppAlgo_H_ +#define INTELLISTREAM_INCLUDE_CPPALGOS_RIPCppAlgo_H_ + +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ + * @{ + */ +/** + * @class RIPCPPAlgo CPPAlgos/RIPCPPAlgo.h + * @brief New and improved Johnson-Lindenstrauss embeddings via the Restricted Isometry Property + * + */ + class RIPCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + RIPCPPAlgo() { + + } + + ~RIPCPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + +/** + * @ingroup AMMBENCH_CppAlgos + * @typedef AbstractMatrixCppAlgoPtr + * @brief The class to describe a shared pointer to @ref RIPCppAlgo + + */ + typedef std::shared_ptr RIPCPPAlgoPtr; +/** + * @ingroup AMMBENCH_CppAlgos + * @def newRIPCppAlgo + * @brief (Macro) To creat a new @ref RIPCppAlgounder shared pointer. + */ +#define newRIPCPPAlgo std::make_shared +} +/** + * @} + */ + +#endif //INTELLISTREAM_INCLUDE_CPPALGOS_RIPCppAlgo_H_ + diff --git a/include/CPPAlgos/SMPPCACPPAlgo.h b/include/CPPAlgos/SMPPCACPPAlgo.h index d5dbfc99..18ff5be1 100644 --- a/include/CPPAlgos/SMPPCACPPAlgo.h +++ b/include/CPPAlgos/SMPPCACPPAlgo.h @@ -5,7 +5,9 @@ #ifndef INTELLISTREAM_INCLUDE_CPPALGOS_SMPPCACppAlgo_H_ #define INTELLISTREAM_INCLUDE_CPPALGOS_SMPPCACppAlgo_H_ + #include + namespace AMMBench { /** * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ @@ -16,31 +18,34 @@ namespace AMMBench { * @brief sketch scaled JL class of c++ algos * */ -class SMPPCACPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - SMPPCACPPAlgo() { - - } - ~SMPPCACPPAlgo() { - - } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketch - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - -}; + class SMPPCACPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + SMPPCACPPAlgo() { + + } + + ~SMPPCACPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketch + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + /** * @ingroup AMMBENCH_CppAlgos * @typedef AbstractMatrixCppAlgoPtr * @brief The class to describe a shared pointer to @ref SMPPCACppAlgo */ -typedef std::shared_ptr SMPPCACPPAlgoPtr; + typedef std::shared_ptr SMPPCACPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newSMPPCACppAlgo diff --git a/include/CPPAlgos/TugOfWarCPPAlgo.h b/include/CPPAlgos/TugOfWarCPPAlgo.h index 25c155d1..5304214d 100644 --- a/include/CPPAlgos/TugOfWarCPPAlgo.h +++ b/include/CPPAlgos/TugOfWarCPPAlgo.h @@ -19,35 +19,36 @@ namespace AMMBench { * @note parameters * - algoDelta Double, the delta parameter in this algo, default 0.02 */ -class TugOfWarCPPAlgo : public AMMBench::AbstractCPPAlgo { - double algoDelta = 0.02; + class TugOfWarCPPAlgo : public AMMBench::AbstractCPPAlgo { + double algoDelta = 0.02; - public: - TugOfWarCPPAlgo() { + public: + TugOfWarCPPAlgo() { - } + } - ~TugOfWarCPPAlgo() { + ~TugOfWarCPPAlgo() { - } - /** - * @brief set the algo-specfic config related to one algorithm - */ - virtual void setConfig(INTELLI::ConfigMapPtr cfg); + } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @brief set the algo-specfic config related to one algorithm + */ + virtual void setConfig(INTELLI::ConfigMapPtr cfg); - private: - torch::Tensor generateTugOfWarMatrix(int64_t m, int64_t n); + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); -}; + private: + torch::Tensor generateTugOfWarMatrix(int64_t m, int64_t n); + + }; /** * @ingroup AMMBENCH_CppAlgos @@ -55,7 +56,7 @@ class TugOfWarCPPAlgo : public AMMBench::AbstractCPPAlgo { * @brief The class to describe a shared pointer to @ref TugOfWarCppAlgo */ -typedef std::shared_ptr TugOfWarCPPAlgoPtr; + typedef std::shared_ptr TugOfWarCPPAlgoPtr; /** * @ingroup AMMBENCH_CppAlgos * @def newTugOfWarCppAlgo diff --git a/include/CPPAlgos/VectorQuantization.h b/include/CPPAlgos/VectorQuantization.h new file mode 100644 index 00000000..69f7457f --- /dev/null +++ b/include/CPPAlgos/VectorQuantization.h @@ -0,0 +1,57 @@ +// +// Created by haolan on 17/7/23. +// + +#ifndef INTELLISTREAM_VECTORQUANTIZATION_H +#define INTELLISTREAM_VECTORQUANTIZATION_H +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_CppAlgos The algorithms written in c++ + * @{ + */ +/** + * @class VectorQuantization CPPAlgos/VectorQuantization.h + * @brief The Vector Quantization AMM class of c++ algos + * + */ + class VectorQuantization : public AMMBench::AbstractCPPAlgo { + public: + VectorQuantization() { + + } + + ~VectorQuantization() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + +/** + * @ingroup AMMBENCH_CppAlgos + * @typedef AbstractMatrixCppAlgoPtr + * @brief The class to describe a shared pointer to @ref VectorQuantizationAlgo + + */ + typedef std::shared_ptr VectorQuantizationPtr; +/** + * @ingroup AMMBENCH_CppAlgos + * @def newVectorQuantizationAlgo + * @brief (Macro) To creat a new @ref VectorQuantizationAlgounder shared pointer. + */ +#define newVectorQuantizationAlgo std::make_shared +} +/** + * @} + */ +#endif //INTELLISTREAM_VECTORQUANTIZATION_H diff --git a/include/CPPAlgos/WeightedCRCPPAlgo.h b/include/CPPAlgos/WeightedCRCPPAlgo.h index 20ca1d5b..58f5f630 100644 --- a/include/CPPAlgos/WeightedCRCPPAlgo.h +++ b/include/CPPAlgos/WeightedCRCPPAlgo.h @@ -5,7 +5,9 @@ #ifndef INTELLISTREAM_INCLUDE_CPPALGOS_WeightedCRCPPAlgo_H_ #define INTELLISTREAM_INCLUDE_CPPALGOS_WeightedCRCPPAlgo_H_ + #include + namespace AMMBench { /** * @ingroup AMMBENCH_CPPAlgos The algorithms writtrn in c++ @@ -16,31 +18,34 @@ namespace AMMBench { * @brief The weighted cloumn row sampling class of c++ algos * */ -class WeightedCRCPPAlgo : public AMMBench::AbstractCPPAlgo { - public: - WeightedCRCPPAlgo() { - - } - ~WeightedCRCPPAlgo() { - - } - /** - * @brief the virtual function provided for outside callers, rewrite in children classes - * @param A the A matrix - * @param B the B matrix - * @param sketchSize the size of sketc or sampling - * @return the output c matrix - */ - virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); - -}; + class WeightedCRCPPAlgo : public AMMBench::AbstractCPPAlgo { + public: + WeightedCRCPPAlgo() { + + } + + ~WeightedCRCPPAlgo() { + + } + + /** + * @brief the virtual function provided for outside callers, rewrite in children classes + * @param A the A matrix + * @param B the B matrix + * @param sketchSize the size of sketc or sampling + * @return the output c matrix + */ + virtual torch::Tensor amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + + }; + /** * @ingroup AMMBENCH_CPPAlgos * @typedef AbstractMatrixCPPAlgoPtr * @brief The class to describe a shared pointer to @ref WeightedCRCPPAlgo */ -typedef std::shared_ptr WeightedCRCPPAlgoPtr; + typedef std::shared_ptr WeightedCRCPPAlgoPtr; /** * @ingroup AMMBENCH_CPPAlgos * @def newWeightedCRCPPAlgo diff --git a/include/MatrixLoader/AbstractMatrixLoader.h b/include/MatrixLoader/AbstractMatrixLoader.h index 57886227..f358958e 100644 --- a/include/MatrixLoader/AbstractMatrixLoader.h +++ b/include/MatrixLoader/AbstractMatrixLoader.h @@ -10,6 +10,7 @@ #include #include #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -30,36 +31,40 @@ namespace AMMBench { * - call @ref setConfig, this function will also generate the tensor A and B correspondingly * - call @ref getA and @ref getB (assuming we are benchmarking torch.mm(A,B)) */ -class AbstractMatrixLoader { - public: - AbstractMatrixLoader() = default; + class AbstractMatrixLoader { + public: + AbstractMatrixLoader() = default; + + ~AbstractMatrixLoader() = default; + + /** + * @brief Set the GLOBAL config map related to this loader + * @param cfg The config map + * @return bool whether the config is successfully set + * @note + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the A matrix + * @return the generated A matrix + */ + virtual torch::Tensor getA(); + + /** + * @brief get the B matrix + * @return the generated B matrix + */ + virtual torch::Tensor getB(); + }; - ~AbstractMatrixLoader() = default; - /** - * @brief Set the GLOBAL config map related to this loader - * @param cfg The config map - * @return bool whether the config is successfully set - * @note - */ - virtual bool setConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief get the A matrix - * @return the generated A matrix - */ - virtual torch::Tensor getA(); - /** - * @brief get the B matrix - * @return the generated B matrix - */ - virtual torch::Tensor getB(); -}; /** * @ingroup AMMBENCH_MatrixLOADER_abstract * @typedef AbstractMatrixLoaderPtr * @brief The class to describe a shared pointer to @ref AbstractMatrixLoader */ -typedef std::shared_ptr AbstractMatrixLoaderPtr; + typedef std::shared_ptr AbstractMatrixLoaderPtr; /** * @ingroup AMMBENCH_MatrixLOADER_abstract * @def newAbstractMatrixLoader diff --git a/include/MatrixLoader/BetaMatrixLoader.h b/include/MatrixLoader/BetaMatrixLoader.h index e0fc7210..cce5ceb0 100644 --- a/include/MatrixLoader/BetaMatrixLoader.h +++ b/include/MatrixLoader/BetaMatrixLoader.h @@ -4,7 +4,9 @@ #ifndef INTELLISTREAM_BETAMATRIXLOADER_H #define INTELLISTREAM_BETAMATRIXLOADER_H + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -39,19 +41,23 @@ namespace AMMBench { torch::Tensor A, B; uint64_t aRow, aCol, bCol, seed; double a, b; + /** * @brief Inline logic of reading a config file * @param cfg the config */ void paraseConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief inline logic of generating A and B */ void generateAB(); + public: BetaMatrixLoader() = default; ~BetaMatrixLoader() = default; + /** * @brief Set the GLOBAL config map related to this loader * @param cfg The config map @@ -59,17 +65,20 @@ namespace AMMBench { * @note */ virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief get the A matrix * @return the generated A matrix */ virtual torch::Tensor getA(); + /** * @brief get the B matrix * @return the generated B matrix */ virtual torch::Tensor getB(); }; + /** * @ingroup AMMBENCH_MatrixLOADER_Beta * @typedef BetaMatrixLoaderPtr diff --git a/include/MatrixLoader/BinomialMatrixLoader.h b/include/MatrixLoader/BinomialMatrixLoader.h index a7096bff..51fc4df3 100644 --- a/include/MatrixLoader/BinomialMatrixLoader.h +++ b/include/MatrixLoader/BinomialMatrixLoader.h @@ -4,7 +4,9 @@ #ifndef INTELLISTREAM_BINOMIALMATRIXLOADER_H #define INTELLISTREAM_BINOMIALMATRIXLOADER_H + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -39,19 +41,23 @@ namespace AMMBench { torch::Tensor A, B; uint64_t aRow, aCol, bCol, seed, trials; double probability; + /** * @brief Inline logic of reading a config file * @param cfg the config */ void paraseConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief inline logic of generating A and B */ void generateAB(); + public: BinomialMatrixLoader() = default; ~BinomialMatrixLoader() = default; + /** * @brief Set the GLOBAL config map related to this loader * @param cfg The config map @@ -59,17 +65,20 @@ namespace AMMBench { * @note */ virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief get the A matrix * @return the generated A matrix */ virtual torch::Tensor getA(); + /** * @brief get the B matrix * @return the generated B matrix */ virtual torch::Tensor getB(); }; + /** * @ingroup AMMBENCH_MatrixLOADER_Binomial * @typedef BinomialMatrixLoaderPtr diff --git a/include/MatrixLoader/ExponentialMatrixLoader.h b/include/MatrixLoader/ExponentialMatrixLoader.h index c7032acb..1fc03629 100644 --- a/include/MatrixLoader/ExponentialMatrixLoader.h +++ b/include/MatrixLoader/ExponentialMatrixLoader.h @@ -4,7 +4,9 @@ #ifndef INTELLISTREAM_EXPONENTIALMATRIXLOADER_H #define INTELLISTREAM_EXPONENTIALMATRIXLOADER_H + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -36,19 +38,23 @@ namespace AMMBench { protected: torch::Tensor A, B; uint64_t aRow, aCol, bCol, seed; + /** * @brief Inline logic of reading a config file * @param cfg the config */ void paraseConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief inline logic of generating A and B */ void generateAB(); + public: ExponentialMatrixLoader() = default; ~ExponentialMatrixLoader() = default; + /** * @brief Set the GLOBAL config map related to this loader * @param cfg The config map @@ -56,17 +62,20 @@ namespace AMMBench { * @note */ virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief get the A matrix * @return the generated A matrix */ virtual torch::Tensor getA(); + /** * @brief get the B matrix * @return the generated B matrix */ virtual torch::Tensor getB(); }; + /** * @ingroup AMMBENCH_MatrixLOADER_Exponential * @typedef ExponentialMatrixLoaderPtr diff --git a/include/MatrixLoader/GaussianMatrixLoader.h b/include/MatrixLoader/GaussianMatrixLoader.h index 5220b837..d88cced1 100644 --- a/include/MatrixLoader/GaussianMatrixLoader.h +++ b/include/MatrixLoader/GaussianMatrixLoader.h @@ -4,7 +4,9 @@ #ifndef INTELLISTREAM_GAUSSIANMATRIXLOADER_H #define INTELLISTREAM_GAUSSIANMATRIXLOADER_H + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -36,19 +38,23 @@ namespace AMMBench { protected: torch::Tensor A, B; uint64_t aRow, aCol, bCol, seed; + /** * @brief Inline logic of reading a config file * @param cfg the config */ void paraseConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief inline logic of generating A and B */ void generateAB(); + public: GaussianMatrixLoader() = default; ~GaussianMatrixLoader() = default; + /** * @brief Set the GLOBAL config map related to this loader * @param cfg The config map @@ -56,17 +62,20 @@ namespace AMMBench { * @note */ virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief get the A matrix * @return the generated A matrix */ virtual torch::Tensor getA(); + /** * @brief get the B matrix * @return the generated B matrix */ virtual torch::Tensor getB(); }; + /** * @ingroup AMMBENCH_MatrixLOADER_Gaussian * @typedef GaussianMatrixLoaderPtr diff --git a/include/MatrixLoader/MNISTMatrixLoader.h b/include/MatrixLoader/MNISTMatrixLoader.h new file mode 100644 index 00000000..b4f4afeb --- /dev/null +++ b/include/MatrixLoader/MNISTMatrixLoader.h @@ -0,0 +1,94 @@ +// +// Created by yuhao on 6/30/23. +// + +#ifndef INTELLISTREAM_MNISTMATRIXLOADER_H +#define INTELLISTREAM_MNISTMATRIXLOADER_H + +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_MatrixLOADER + * @{ + */ +/** + * @ingroup AMMBENCH_MatrixLOADER_MNIST The MNIST training image dataset generator + * @{ + */ +/** + * @class MNISTMatrixLoader MatrixLoader/MNISTMatrixLoader.h + * @brief The MNIST class of matrix loader https://www.kaggle.com/datasets/hojjatk/mnist-dataset + * @ingroup AMMBENCH_MatrixLOADER_MNIST + * @note: + * - Must have a global config by @ref setConfig + * @note Default behavior +* - create +* - call @ref setConfig, this function will also generate the tensor A and B correspondingly +* - call @ref getA and @ref getB (assuming we are benchmarking torch.mm(A,B)) + * @note: does not need config + * @note: default name tags + * "MNIST": @ref MNISTMatrixLoader + */ + class MNISTMatrixLoader : public AbstractMatrixLoader { + protected: + torch::Tensor A, B; + + /** + * @brief Inline logic of reading a config file + * @param cfg the config + */ + void paraseConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief inline logic of generating A and B + */ + void generateAB(); + + public: + MNISTMatrixLoader() = default; + + ~MNISTMatrixLoader() = default; + + /** + * @brief Set the GLOBAL config map related to this loader + * @param cfg The config map + * @return bool whether the config is successfully set + * @note + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the A matrix + * @return the generated A matrix + */ + virtual torch::Tensor getA(); + + /** + * @brief get the B matrix + * @return the generated B matrix + */ + virtual torch::Tensor getB(); + }; + +/** + * @ingroup AMMBENCH_MatrixLOADER_MNIST + * @typedef MNISTMatrixLoaderPtr + * @brief The class to describe a shared pointer to @ref MNISTMatrixLoader + + */ + typedef std::shared_ptr MNISTMatrixLoaderPtr; +/** + * @ingroup AMMBENCH_MatrixLOADER_MNIST + * @def newMNISTMatrixLoader + * @brief (Macro) To creat a new @ref MNISTMatrixLoader under shared pointer. + */ +#define newMNISTMatrixLoader std::make_shared +/** + * @} + */ +/** + * @} + */ +} +#endif //INTELLISTREAM_MNISTMATRIXLOADER_H diff --git a/include/MatrixLoader/MatrixLoaderTable.h b/include/MatrixLoader/MatrixLoaderTable.h index 7fbdbc58..19b687dd 100644 --- a/include/MatrixLoader/MatrixLoaderTable.h +++ b/include/MatrixLoader/MatrixLoaderTable.h @@ -4,8 +4,10 @@ #ifndef INTELLISTREAM_INCLUDE_MATRIXLOADER_MATRIXLOADERTABLE_H_ #define INTELLISTREAM_INCLUDE_MATRIXLOADER_MATRIXLOADERTABLE_H_ + #include #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -27,53 +29,54 @@ namespace AMMBench { * - random @ref RandomMatrixLoader * - sparse @ref SparseMatrixLoader */ -class MatrixLoaderTable { - protected: - std::map loaderMap; - public: - /** - * @brief The constructing function - * @note If new MatrixLoader wants to be included by default, please revise the following in *.cpp - */ - MatrixLoaderTable(); + class MatrixLoaderTable { + protected: + std::map loaderMap; + public: + /** + * @brief The constructing function + * @note If new MatrixLoader wants to be included by default, please revise the following in *.cpp + */ + MatrixLoaderTable(); - ~MatrixLoaderTable() { - } + ~MatrixLoaderTable() { + } - /** - * @brief To register a new loader - * @param onew The new operator - * @param tag THe name tag - */ - void registerNewDataLoader(AMMBench::AbstractMatrixLoaderPtr dnew, std::string tag) { - loaderMap[tag] = dnew; - } + /** + * @brief To register a new loader + * @param onew The new operator + * @param tag THe name tag + */ + void registerNewDataLoader(AMMBench::AbstractMatrixLoaderPtr dnew, std::string tag) { + loaderMap[tag] = dnew; + } - /** - * @brief find a dataloader in the table according to its name - * @param name The nameTag of loader - * @return The MatrixLoader, nullptr if not found - */ - AMMBench::AbstractMatrixLoaderPtr findMatrixLoader(std::string name) { - if (loaderMap.count(name)) { - return loaderMap[name]; - } - return nullptr; - } - /** - * @ingroup AMMBENCH_MatrixLOADER_Table - * @typedef MatrixLoaderTablePtr - * @brief The class to describe a shared pointer to @ref MatrixLoaderTable + /** + * @brief find a dataloader in the table according to its name + * @param name The nameTag of loader + * @return The MatrixLoader, nullptr if not found + */ + AMMBench::AbstractMatrixLoaderPtr findMatrixLoader(std::string name) { + if (loaderMap.count(name)) { + return loaderMap[name]; + } + return nullptr; + } - */ - typedef std::shared_ptr MatrixLoaderTablePtr; + /** + * @ingroup AMMBENCH_MatrixLOADER_Table + * @typedef MatrixLoaderTablePtr + * @brief The class to describe a shared pointer to @ref MatrixLoaderTable + + */ + typedef std::shared_ptr MatrixLoaderTablePtr; /** * @ingroup AMMBENCH_MatrixLOADER_Table * @def newMatrixLoaderTable * @brief (Macro) To creat a new @ref MatrixLoaderTable under shared pointer. */ #define newMatrixLoaderTable std::make_shared -}; + }; /** * @} */ diff --git a/include/MatrixLoader/PoissonMatrixLoader.h b/include/MatrixLoader/PoissonMatrixLoader.h index 579fc7ce..4894056c 100644 --- a/include/MatrixLoader/PoissonMatrixLoader.h +++ b/include/MatrixLoader/PoissonMatrixLoader.h @@ -4,7 +4,9 @@ #ifndef INTELLISTREAM_POISSONMATRIXLOADER_H #define INTELLISTREAM_POISSONMATRIXLOADER_H + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -36,19 +38,23 @@ namespace AMMBench { protected: torch::Tensor A, B; uint64_t aRow, aCol, bCol, seed; + /** * @brief Inline logic of reading a config file * @param cfg the config */ void paraseConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief inline logic of generating A and B */ void generateAB(); + public: PoissonMatrixLoader() = default; ~PoissonMatrixLoader() = default; + /** * @brief Set the GLOBAL config map related to this loader * @param cfg The config map @@ -56,17 +62,20 @@ namespace AMMBench { * @note */ virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + /** * @brief get the A matrix * @return the generated A matrix */ virtual torch::Tensor getA(); + /** * @brief get the B matrix * @return the generated B matrix */ virtual torch::Tensor getB(); }; + /** * @ingroup AMMBENCH_MatrixLOADER_Poisson * @typedef PoissonMatrixLoaderPtr diff --git a/include/MatrixLoader/RandomMatrixLoader.h b/include/MatrixLoader/RandomMatrixLoader.h index b2466c02..8d44391e 100644 --- a/include/MatrixLoader/RandomMatrixLoader.h +++ b/include/MatrixLoader/RandomMatrixLoader.h @@ -5,7 +5,9 @@ #ifndef INTELLISTREAM_INCLUDE_MATRIXLOADER_RANDOMMATRIXLOADER_H_ #define INTELLISTREAM_INCLUDE_MATRIXLOADER_RANDOMMATRIXLOADER_H_ + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -33,48 +35,55 @@ namespace AMMBench { * @note: default name tags * "random": @ref RandomMatrixLoader */ -class RandomMatrixLoader : public AbstractMatrixLoader { - protected: - torch::Tensor A, B; - uint64_t aRow, aCol, bCol, seed; - /** - * @brief Inline logic of reading a config file - * @param cfg the config - */ - void paraseConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief inline logic of generating A and B - */ - void generateAB(); - public: - RandomMatrixLoader() = default; + class RandomMatrixLoader : public AbstractMatrixLoader { + protected: + torch::Tensor A, B; + uint64_t aRow, aCol, bCol, seed; + + /** + * @brief Inline logic of reading a config file + * @param cfg the config + */ + void paraseConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief inline logic of generating A and B + */ + void generateAB(); + + public: + RandomMatrixLoader() = default; + + ~RandomMatrixLoader() = default; + + /** + * @brief Set the GLOBAL config map related to this loader + * @param cfg The config map + * @return bool whether the config is successfully set + * @note + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the A matrix + * @return the generated A matrix + */ + virtual torch::Tensor getA(); + + /** + * @brief get the B matrix + * @return the generated B matrix + */ + virtual torch::Tensor getB(); + }; - ~RandomMatrixLoader() = default; - /** - * @brief Set the GLOBAL config map related to this loader - * @param cfg The config map - * @return bool whether the config is successfully set - * @note - */ - virtual bool setConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief get the A matrix - * @return the generated A matrix - */ - virtual torch::Tensor getA(); - /** - * @brief get the B matrix - * @return the generated B matrix - */ - virtual torch::Tensor getB(); -}; /** * @ingroup AMMBENCH_MatrixLOADER_Random * @typedef RandomMatrixLoaderPtr * @brief The class to describe a shared pointer to @ref RandomMatrixLoader */ -typedef std::shared_ptr RandomMatrixLoaderPtr; + typedef std::shared_ptr RandomMatrixLoaderPtr; /** * @ingroup AMMBENCH_MatrixLOADER_Random * @def newRandomMatrixLoader diff --git a/include/MatrixLoader/SIFTMatrixLoader.h b/include/MatrixLoader/SIFTMatrixLoader.h new file mode 100644 index 00000000..1d1034b1 --- /dev/null +++ b/include/MatrixLoader/SIFTMatrixLoader.h @@ -0,0 +1,94 @@ +// +// Created by yuhao on 6/30/23. +// + +#ifndef INTELLISTREAM_SIFTMATRIXLOADER_H +#define INTELLISTREAM_SIFTMATRIXLOADER_H + +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_MatrixLOADER + * @{ + */ +/** + * @ingroup AMMBENCH_MatrixLOADER_SIFT The SIFTsmall dataset generator + * @{ + */ +/** + * @class SIFTMatrixLoader MatrixLoader/SIFTMatrixLoader.h + * @brief The SIFT class of matrix loader http://corpus-texmex.irisa.fr/ + * @ingroup AMMBENCH_MatrixLOADER_SIFT + * @note: + * - Must have a global config by @ref setConfig + * @note Default behavior +* - create +* - call @ref setConfig, this function will also generate the tensor A and B correspondingly +* - call @ref getA and @ref getB (assuming we are benchmarking torch.mm(A,B)) + * @note: does not need config + * @note: default name tags + * "SIFT": @ref SIFTMatrixLoader + */ + class SIFTMatrixLoader : public AbstractMatrixLoader { + protected: + torch::Tensor A, B; + + /** + * @brief Inline logic of reading a config file + * @param cfg the config + */ + void paraseConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief inline logic of generating A and B + */ + void generateAB(); + + public: + SIFTMatrixLoader() = default; + + ~SIFTMatrixLoader() = default; + + /** + * @brief Set the GLOBAL config map related to this loader + * @param cfg The config map + * @return bool whether the config is successfully set + * @note + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the A matrix + * @return the generated A matrix + */ + virtual torch::Tensor getA(); + + /** + * @brief get the B matrix + * @return the generated B matrix + */ + virtual torch::Tensor getB(); + }; + +/** + * @ingroup AMMBENCH_MatrixLOADER_SIFT + * @typedef SIFTMatrixLoaderPtr + * @brief The class to describe a shared pointer to @ref SIFTMatrixLoader + + */ + typedef std::shared_ptr SIFTMatrixLoaderPtr; +/** + * @ingroup AMMBENCH_MatrixLOADER_SIFT + * @def newSIFTMatrixLoader + * @brief (Macro) To creat a new @ref SIFTMatrixLoader under shared pointer. + */ +#define newSIFTMatrixLoader std::make_shared +/** + * @} + */ +/** + * @} + */ +} +#endif //INTELLISTREAM_SIFTMATRIXLOADER_H diff --git a/include/MatrixLoader/SparseMatrixLoader.h b/include/MatrixLoader/SparseMatrixLoader.h index 50e632d2..afda758b 100644 --- a/include/MatrixLoader/SparseMatrixLoader.h +++ b/include/MatrixLoader/SparseMatrixLoader.h @@ -5,7 +5,9 @@ #ifndef INTELLISTREAM_INCLUDE_MATRIXLOADER_SparseMATRIXLOADER_H_ #define INTELLISTREAM_INCLUDE_MATRIXLOADER_SparseMATRIXLOADER_H_ + #include + namespace AMMBench { /** * @ingroup AMMBENCH_MatrixLOADER @@ -37,58 +39,65 @@ namespace AMMBench { * @note: default name tags * "sparse": @ref SparseMatrixLoader */ -class SparseMatrixLoader : public AbstractMatrixLoader { - protected: - torch::Tensor A, B; - uint64_t aRow, aCol, bCol, seed, aReduce, bReduce; - double aDensity, bDensity; + class SparseMatrixLoader : public AbstractMatrixLoader { + protected: + torch::Tensor A, B; + uint64_t aRow, aCol, bCol, seed, aReduce, bReduce; + double aDensity, bDensity; + + /** + * @brief Inline logic of generate the sparse matrix + * @param m the rows + * @param n the cols + * @param density the density in 0~1 + * @param reduceRows the number of rows to be reduced + */ + torch::Tensor genSparseMatrix(uint64_t m, uint64_t n, double density, uint64_t reduceRows); + + /** + * @brief Inline logic of reading a config file + * @param cfg the config + */ + void paraseConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief inline logic of generating A and B + */ + void generateAB(); + + public: + SparseMatrixLoader() = default; + + ~SparseMatrixLoader() = default; + + /** + * @brief Set the GLOBAL config map related to this loader + * @param cfg The config map + * @return bool whether the config is successfully set + * @note + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the A matrix + * @return the generated A matrix + */ + virtual torch::Tensor getA(); - /** - * @brief Inline logic of generate the sparse matrix - * @param m the rows - * @param n the cols - * @param density the density in 0~1 - * @param reduceRows the number of rows to be reduced - */ - torch::Tensor genSparseMatrix(uint64_t m, uint64_t n, double density, uint64_t reduceRows); - /** - * @brief Inline logic of reading a config file - * @param cfg the config - */ - void paraseConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief inline logic of generating A and B - */ - void generateAB(); - public: - SparseMatrixLoader() = default; + /** + * @brief get the B matrix + * @return the generated B matrix + */ + virtual torch::Tensor getB(); + }; - ~SparseMatrixLoader() = default; - /** - * @brief Set the GLOBAL config map related to this loader - * @param cfg The config map - * @return bool whether the config is successfully set - * @note - */ - virtual bool setConfig(INTELLI::ConfigMapPtr cfg); - /** - * @brief get the A matrix - * @return the generated A matrix - */ - virtual torch::Tensor getA(); - /** - * @brief get the B matrix - * @return the generated B matrix - */ - virtual torch::Tensor getB(); -}; /** * @ingroup AMMBENCH_MatrixLOADER_Sparse * @typedef SparseMatrixLoaderPtr * @brief The class to describe a shared pointer to @ref SparseMatrixLoader */ -typedef std::shared_ptr SparseMatrixLoaderPtr; + typedef std::shared_ptr SparseMatrixLoaderPtr; /** * @ingroup AMMBENCH_MatrixLOADER_Sparse * @def newSparseMatrixLoader diff --git a/include/Parallelization/BlockPartitionRunner.h b/include/Parallelization/BlockPartitionRunner.h index b4d5e11d..d6a68bf8 100644 --- a/include/Parallelization/BlockPartitionRunner.h +++ b/include/Parallelization/BlockPartitionRunner.h @@ -5,6 +5,7 @@ #ifndef INTELLISTREAM_INCLUDE_PARALLELIZATION_BLOCKPARTITIONRUNNER_H_ #define INTELLISTREAM_INCLUDE_PARALLELIZATION_BLOCKPARTITIONRUNNER_H_ + #include #include #include @@ -12,10 +13,11 @@ #include #include #include + namespace AMMBench { #define newTensor make_shared -typedef std::shared_ptr TensorPtr; + typedef std::shared_ptr TensorPtr; /** * @ingroup AMMBENCH_PARALLELIZATION * @{ @@ -26,76 +28,85 @@ typedef std::shared_ptr TensorPtr; * @ingroup PARTITION_RUNNER * @brief The basic partition worker */ -class BlockPartitionWorker : public INTELLI::AbstractC20Thread { - protected: - virtual void inlineMain(); - AMMBench::CPPAlgoTable cppAlgoTable; - struct timeval tstart, tend; - uint64_t useCPP = 0; - uint64_t osScheduling = 0; - AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = nullptr; - /** - * @brief Input matrix A - */ - TensorPtr matA = nullptr; // Input matrix A - /** - * @brief Input matrix B - */ - TensorPtr matB = nullptr; // Input matrix B - /** - * @brief OUTput matrix C - */ - TensorPtr matC = nullptr; // Output matrix C - - INTELLI::ConfigMapPtr cfg; - torch::jit::script::Module module; - uint64_t sketchDimension = 0; - int coreBind; - public: - torch::Tensor irC, subA; - uint64_t startRow = 0; // Start row index for the assigned range - uint64_t endRow = 0; // End row index (exclusive) for the assigned range - - BlockPartitionWorker() { - - } - /** - * @brief set the config map - * @param _cfg - */ - void setConfig(INTELLI::ConfigMapPtr _cfg); - /** - * @brief set the pointer to A,B,C matrix - */ - void setABC(TensorPtr A, TensorPtr B, TensorPtr C); - /** - * @brief set work parmeters - * @param aStart The start row in A - * @param aEnd The end row in A - * @param mycore the core to be binded - */ - void setWorkParameters(uint64_t aStart, uint64_t aEnd, int mycore); - void setCoreBInd(int cno) { - coreBind = cno; - } - ~BlockPartitionWorker() { - - } - uint64_t getElapsedTime(); - /** - * @brief to export the algorithm breakdown - * @note only valid for c++ algo - * @return the key-value table breakdown in ConfigMapPtr; - */ - virtual INTELLI::ConfigMapPtr getBreakDown(); -}; + class BlockPartitionWorker : public INTELLI::AbstractC20Thread { + protected: + virtual void inlineMain(); + + AMMBench::CPPAlgoTable cppAlgoTable; + struct timeval tstart, tend; + uint64_t useCPP = 0; + uint64_t osScheduling = 0; + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = nullptr; + /** + * @brief Input matrix A + */ + TensorPtr matA = nullptr; // Input matrix A + /** + * @brief Input matrix B + */ + TensorPtr matB = nullptr; // Input matrix B + /** + * @brief OUTput matrix C + */ + TensorPtr matC = nullptr; // Output matrix C + + INTELLI::ConfigMapPtr cfg; + torch::jit::script::Module module; + uint64_t sketchDimension = 0; + int coreBind; + public: + torch::Tensor irC, subA; + uint64_t startRow = 0; // Start row index for the assigned range + uint64_t endRow = 0; // End row index (exclusive) for the assigned range + + BlockPartitionWorker() { + + } + + /** + * @brief set the config map + * @param _cfg + */ + void setConfig(INTELLI::ConfigMapPtr _cfg); + + /** + * @brief set the pointer to A,B,C matrix + */ + void setABC(TensorPtr A, TensorPtr B, TensorPtr C); + + /** + * @brief set work parmeters + * @param aStart The start row in A + * @param aEnd The end row in A + * @param mycore the core to be binded + */ + void setWorkParameters(uint64_t aStart, uint64_t aEnd, int mycore); + + void setCoreBInd(int cno) { + coreBind = cno; + } + + ~BlockPartitionWorker() { + + } + + uint64_t getElapsedTime(); + + /** + * @brief to export the algorithm breakdown + * @note only valid for c++ algo + * @return the key-value table breakdown in ConfigMapPtr; + */ + virtual INTELLI::ConfigMapPtr getBreakDown(); + }; /** * @ingroup PARTITION_RUNNER * @def newBlockPartitionWorker * @brief (Macro) To creat a new @ref BlockPartitionWorker under shared pointer. */ #define newBlockPartitionWorker std::make_shared -typedef std::shared_ptr BlockPartitionWorkerPtr; + typedef std::shared_ptr BlockPartitionWorkerPtr; + /** * @class BlockPartitionRunner Parallelization/BlockPartitionRunner.h * @ingroup PARTITION_RUNNER @@ -111,76 +122,83 @@ typedef std::shared_ptr BlockPartitionWorkerPtr; * - call @ref runAMM and return result * - call @ref getElapsedTime */ -class BlockPartitionRunner { - - protected: - INTELLI::ConfigMapPtr cfg; - uint64_t threads = 0; - /** - * @brief Input matrix A - */ - TensorPtr matA = nullptr; // Input matrix A - /** - * @brief Input matrix B - */ - TensorPtr matB = nullptr; // Input matrix B - /** - * @brief OUTput matrix C - */ - TensorPtr matC = nullptr; // Output matrix C - std::vector workers; - /** - * @brief special bind of first core, if need - */ - uint64_t firstCoreBind = 0; - public: - BlockPartitionRunner() {} - ~BlockPartitionRunner() {} - /** - * @brief set the config map - * @param _cfg - */ - void setConfig(INTELLI::ConfigMapPtr _cfg); - /** - * @brief create the A,B,C matrix and pass it to all workers - * @param A The A matrix - * @param B The B matrix - * @warnning call after @ref setConfig - */ - void createABC(torch::Tensor A, torch::Tensor B); - - /** -* @brief run a parallel forward of A,B, and return C -* @return C=matA*matB -* @warnning call after @ref createABC -*/ - torch::Tensor parallelForward(); - /** - * @brief conducte the multithread AMM and return - * @param A The A matrix - * @param B The B matrix - * @return The AMM(A,B) - * @warnning call after @ref setConfig - */ - torch::Tensor runAMM(torch::Tensor A, torch::Tensor B); - /** - * @brief get the elapsed time of multithread running - * @return the elapsed time - * @note Exclude the overhead of cleaning thread states such as loaded module - */ - uint64_t getElapsedTime(); - /** - * @brief append the running information of each thread to the result csv - * @param ru The result csv to be appended - */ - void appendThreadInfo(INTELLI::ConfigMapPtr ru); - /** - * @brief to export the algorithm breakdown - * @note only valid for c++ algo - * @return the key-value table breakdown in ConfigMapPtr; - */ - virtual INTELLI::ConfigMapPtr getBreakDown(); -}; + class BlockPartitionRunner { + + protected: + INTELLI::ConfigMapPtr cfg; + uint64_t threads = 0; + /** + * @brief Input matrix A + */ + TensorPtr matA = nullptr; // Input matrix A + /** + * @brief Input matrix B + */ + TensorPtr matB = nullptr; // Input matrix B + /** + * @brief OUTput matrix C + */ + TensorPtr matC = nullptr; // Output matrix C + std::vector workers; + /** + * @brief special bind of first core, if need + */ + uint64_t firstCoreBind = 0; + public: + BlockPartitionRunner() {} + + ~BlockPartitionRunner() {} + + /** + * @brief set the config map + * @param _cfg + */ + void setConfig(INTELLI::ConfigMapPtr _cfg); + + /** + * @brief create the A,B,C matrix and pass it to all workers + * @param A The A matrix + * @param B The B matrix + * @warnning call after @ref setConfig + */ + void createABC(torch::Tensor A, torch::Tensor B); + + /** + * @brief run a parallel forward of A,B, and return C + * @return C=matA*matB + * @warnning call after @ref createABC + */ + torch::Tensor parallelForward(); + + /** + * @brief conducte the multithread AMM and return + * @param A The A matrix + * @param B The B matrix + * @return The AMM(A,B) + * @warnning call after @ref setConfig + */ + torch::Tensor runAMM(torch::Tensor A, torch::Tensor B); + + /** + * @brief get the elapsed time of multithread running + * @return the elapsed time + * @note Exclude the overhead of cleaning thread states such as loaded module + */ + uint64_t getElapsedTime(); + + /** + * @brief append the running information of each thread to the result csv + * @param ru The result csv to be appended + */ + void appendThreadInfo(INTELLI::ConfigMapPtr ru); + + /** + * @brief to export the algorithm breakdown + * @note only valid for c++ algo + * @return the key-value table breakdown in ConfigMapPtr; + */ + virtual INTELLI::ConfigMapPtr getBreakDown(); + }; } // AMMBench /** diff --git a/include/Streaming/BlockPartitionStreamer.h b/include/Streaming/BlockPartitionStreamer.h new file mode 100644 index 00000000..d39b1f28 --- /dev/null +++ b/include/Streaming/BlockPartitionStreamer.h @@ -0,0 +1,98 @@ +// +// Created by haolan on 27/6/23. +// + +#ifndef INTELLISTREAM_BLOCKPARTITIONSTREAMER_H +#define INTELLISTREAM_BLOCKPARTITIONSTREAMER_H +#include +#include +#include +#include + +namespace AMMBench { + +/** + * @ingroup AMMBENCH_STREAMING + * @{ + * + */ + /** + * @class BlockPartitionStreamer Streaming/BlockPartitionStreamer.h + * @brief The class to run streaming amm under block partition scheme, let rows of A coming in a streaming manner, all of which are partitioned with BlockPartitionRunner + * @ingroup AMMBENCH_STREAMING + * @note Default behavior + * - create + * - call @ref setConfig, this will also determine how to generate time stamp and config will be passed to @ref TimeStamper + * - run streaming amm: + * - call @ref streamingAmm, if only A matrix will be streamed + * - call @ref streamingAmm2S, if both A and B will be streamed + * - call @ref getThroughput, and @ref getLatencyPercentage to get the streaming performance + */ + class BlockPartitionStreamer { + protected: + INTELLI::ConfigMapPtr cfgGlobal; + AMMBench::CPPAlgoTable cppAlgoTable; + uint64_t batchSize = 1; + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = nullptr; + AMMBench::TensorPtr matC = nullptr; + double throughput = 0.0; + uint64_t threads = 1; + + public: + BlockPartitionStreamer() {} + + ~BlockPartitionStreamer() {} + + /** + * @brief the timestamps to trace the streaming process + */ + std::vector myTs; + /** + * @brief the additional timestamps to trace the streaming process, if B is also stream + */ + std::vector myTsB; + + /** + * @brief Set the GLOBAL config map related to this TimerStamper + * @param cfg The config map + * @return bool whether the config is successfully set + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief To run a streaming Amm, assuming the rows of A coming in a streaming manner and B is fixed + * @param A The A matrix + * @param B The B matrix + * @return bool whether the config is successfully set + */ + virtual torch::Tensor streamingAmm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1); + /** + * @brief To run a streaming Amm, assuming the rows of A coming in a streaming manner and the cols of B coming in a streaming manner + * @param A The A matrix + * @param B The B matrix + * @return bool whether the config is successfully set + */ + virtual torch::Tensor streamingAmm2S(torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1); + + /** + * @brief to get the throughput of last streaming process, the unit is rows/second + * @return the throughput + */ + double getThroughput() { + return throughput; + } + + /** + * @brief to get the latency within some fraction, such as 0.95 + * @param fraction the 0~1 fraction + * @return the latency in us + */ + double getLatencyPercentage(double fraction); + + }; +/** + * @} + */ +} // AMMBench + +#endif //INTELLISTREAM_BLOCKPARTITIONSTREAMER_H diff --git a/include/Streaming/SingleThreadStreamer.h b/include/Streaming/SingleThreadStreamer.h new file mode 100644 index 00000000..345bb76d --- /dev/null +++ b/include/Streaming/SingleThreadStreamer.h @@ -0,0 +1,97 @@ +/*! \file SingleThreadStamper.h*/ +// +// Created by tony on 23/06/23. +// + +#ifndef INTELLISTREAM_SINGLETHREADSTREAMER_H +#define INTELLISTREAM_SINGLETHREADSTREAMER_H + +#include +#include +#include + +namespace AMMBench { + +/** + * @ingroup AMMBENCH_STREAMING + * @{ + * + */ + /** + * @class SingleThreadStreamer Streaming/SingleThreadStreamer.h + * @brief The class to run streaming amm under single thread, let each row of A coming in a streaming manner + * @ingroup AMMBENCH_STREAMING + * @note Default behavior + * - create + * - call @ref setConfig, this will also determine how to generate time stamp and config will be passed to @ref TimeStamper + * - run streaming amm: + * - call @ref streamingAmm, if only A matrix will be streamed + * - call @ref streamingAmm2S, if both A and B will be streamed + * - call @ref getThroughput, and @ref getLatencyPercentage to get the streaming performance + */ + class SingleThreadStreamer { + protected: + INTELLI::ConfigMapPtr cfgGlobal; + AMMBench::CPPAlgoTable cppAlgoTable; + uint64_t batchSize = 1; + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = nullptr; + AMMBench::TensorPtr matC = nullptr; + double throughput = 0.0; + public: + SingleThreadStreamer() {} + + ~SingleThreadStreamer() {} + + /** + * @brief the timestamps to trace the streaming process + */ + std::vector myTs; + /** + * @brief the additional timestamps to trace the streaming process, if B is also stream + */ + std::vector myTsB; + + /** + * @brief Set the GLOBAL config map related to this TimerStamper + * @param cfg The config map + * @return bool whether the config is successfully set + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief To run a streaming Amm, assuming the rows of A coming in a streaming manner and B is fixed + * @param A The A matrix + * @param B The B matrix + * @return bool whether the config is successfully set + */ + virtual torch::Tensor streamingAmm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1); + /** +* @brief To run a streaming Amm, assuming the rows of A coming in a streaming manner and the cols of B coming in a streaming manner +* @param A The A matrix +* @param B The B matrix + * @return bool whether the config is successfully set +*/ + virtual torch::Tensor streamingAmm2S(torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1); + + /** + * @brief to get the throughput of last streaming process, the unit is rows/second + * @return the throughput + */ + double getThroughput() { + return throughput; + } + + /** + * @brief to get the latency within some fraction, such as 0.95 + * @param fraction the 0~1 fraction + * @return the latency in us + */ + double getLatencyPercentage(double fraction); + + }; +/** + * @} + */ +} // AMMBench + +#endif //INTELLISTREAM_SINGLETHREADSTREAMER_H diff --git a/include/Streaming/Streamer.h b/include/Streaming/Streamer.h new file mode 100644 index 00000000..579b6c6b --- /dev/null +++ b/include/Streaming/Streamer.h @@ -0,0 +1,29 @@ +// +// Created by haolan on 8/7/23. +// + +#ifndef INTELLISTREAM_STREAMER_H +#define INTELLISTREAM_STREAMER_H + +#include + +namespace AMMBench { + class Streamer { + protected: + AMMBench::TensorPtr matC = nullptr; + INTELLI::ConfigMapPtr metrics; + public: + Streamer() {} + + ~Streamer() {} + + torch::Tensor run(INTELLI::ConfigMapPtr cfg, torch::Tensor A, torch::Tensor B, uint64_t sketchSize); + /** + * @return all the running metrics as a ConfigMap + */ + INTELLI::ConfigMapPtr getMetrics(){ + return metrics; + } + }; +} // AMMBench +#endif //INTELLISTREAM_STREAMER_H diff --git a/include/Streaming/TimeStamper.h b/include/Streaming/TimeStamper.h new file mode 100644 index 00000000..191607fd --- /dev/null +++ b/include/Streaming/TimeStamper.h @@ -0,0 +1,146 @@ +/*! \file TimerStamper.h*/ +// +// Created by tony on 23/06/23. +// + +#ifndef INTELLISTREAM_TIMESTAMPER_H +#define INTELLISTREAM_TIMESTAMPER_H + +#include +#include +#include +#include +#include + +namespace AMMBench { +/** + * @ingroup AMMBENCH_STREAMING + * @{ + * + */ + /** +* @class AMMTimeStamp Streaming/TimeStamper.h +* @brief The class to define timestamp in streaming +* @ingroup AMMBENCH_STREAMING +*/ + class AMMTimeStamp { + public: + /** + * @brief The time when the related event (to a row or a column) happen + */ + uint64_t eventTime = 0; + /** + * @brief The time when the related event (to a row or a column) arrive to the system + */ + uint64_t arrivalTime = 0; + /** + * @brief the time when the related event is fully processed + */ + uint64_t processedTime = 0; + + AMMTimeStamp() {} + + AMMTimeStamp(uint64_t te, uint64_t ta, uint64_t tp) { + eventTime = te; + arrivalTime = ta; + processedTime = tp; + } + + ~AMMTimeStamp() {} + }; + +/** + * @cite AMMTimeStampPtr + * @brief The class to describe a shared pointer to @ref AMMTimeStamp + */ + typedef std::shared_ptr AMMTimeStampPtr; +/** + * @cite newAMMTimeStampPtr + * @brief (Macro) To creat a new @ref AMMTimeStamp under shared pointer. + */ +#define newAMMTimeStamp std::make_shared + + /** + * @class TimeStamper Streaming/TimeStamper.h + * @brief The basic class to generate time stamps + * @ingroup AMMBENCH_STREAMING + * @note require configs: + * - eventRateTps U64 The real-world rate of spawn event, in Tuples/s + * - streamingTupleCnt U64 The number of "streaming tuples", can be set to the #rows or #cols of a matrix + * - timeStamper_zipfEvent, U64, whether or not using the zipf for event rate, default 0 + * - timeStamper_zipfEventFactor, Double, the zpf factor for event rate, default 0.1, should be 0~1 + * @note Default behavior + * - create + * - call @ref setSetSeed if you want different seed, default seed is 114514 + * - call @ref setConfig to generate the timestamp under instructions + * - call @ref getTimeStamps to get the timestamp + */ + class TimeStamper { + protected: + INTELLI::ConfigMapPtr cfgGlobal; + INTELLI::MicroDataSet md; + uint64_t timeStamper_zipfEvent = 0; + double timeStamper_zipfEventFactor = 0; + uint64_t testSize; + std::vector eventS; + std::vector arrivalS; + uint64_t eventRateTps = 0; + uint64_t timeStepUs = 40; + uint64_t seed = 114514; + + /** + * + * @brief generate the vector of event + */ + void generateEvent(); + + /** + * @brief generate the vector of arrival + * @note As we do not consider OoO now, this is a dummy function + */ + void generateArrival(); + + /** + * @brief generate the final result of s and r + */ + void generateFinal(); + + std::vector constructTimeStamps( + std::vector eventS, + std::vector arrivalS); + + public: + TimeStamper() {} + + ~TimeStamper() {} + + std::vector myTs; + /** + * @brief to set the seed of this timestamer + * @param _seed + */ + void setSeed(uint64_t _seed) + { + seed=_seed; + } + /** + * @brief Set the GLOBAL config map related to this TimerStamper + * @param cfg The config map + * @return bool whether the config is successfully set + */ + virtual bool setConfig(INTELLI::ConfigMapPtr cfg); + + /** + * @brief get the vector of R tuple + * @return the vector + */ + virtual std::vector getTimeStamps() { + return myTs; + } + }; +/** + * @} + */ +} // AMMBench + +#endif //INTELLISTREAM_TIMESTAMPER_H diff --git a/include/Utils/AbstractC20Thread.hpp b/include/Utils/AbstractC20Thread.hpp index 41c10b1a..abefdd6c 100644 --- a/include/Utils/AbstractC20Thread.hpp +++ b/include/Utils/AbstractC20Thread.hpp @@ -6,6 +6,7 @@ #ifndef _INCLUDE_UTILS_ABSTRACTC20THREAD_H_ #define _INCLUDE_UTILS_ABSTRACTC20THREAD_H_ #pragma once + #include #include #include @@ -26,51 +27,55 @@ namespace INTELLI { * @brief The base class and abstraction of C++20 thread, * and it can be derived into other threads */ -class AbstractC20Thread { - protected: - /** - * @brief The inline 'main" function of thread, as an interface - * @note Normally re-write this in derived classes - */ - virtual void inlineMain() { + class AbstractC20Thread { + protected: + /** + * @brief The inline 'main" function of thread, as an interface + * @note Normally re-write this in derived classes + */ + virtual void inlineMain() { + + } + + std::shared_ptr threadPtr; + public: + AbstractC20Thread() {} + + ~AbstractC20Thread() {} + + /** + * @brief to start this thread + */ + void startThread() { + auto fun = [this]() { + inlineMain(); + }; + threadPtr = std::make_shared(fun); + // table=make_shared(5000); + } - } + /** + * @brief the thread join function + */ + void joinThread() { + threadPtr->join(); + } - std::shared_ptr threadPtr; - public: - AbstractC20Thread() {} - ~AbstractC20Thread() {} - /** - * @brief to start this thread - */ - void startThread() { - auto fun = [this]() { - inlineMain(); }; - threadPtr = std::make_shared(fun); - // table=make_shared(5000); - } - /** - * @brief the thread join function - */ - void joinThread() { - threadPtr->join(); - } -}; /** * @ingroup INTELLI_UTIL_OTHERC20 * @typedef AbstractC20ThreadPtr * @brief The class to describe a shared pointer to @ref AbstractC20Thread */ -typedef std::shared_ptr AbstractC20ThreadPtr; + typedef std::shared_ptr AbstractC20ThreadPtr; /** * @ingroup INTELLI_UTIL_OTHERC20 * @def newAbstractC20Thread * @brief (Macro) To creat a new @ref newAbstractC20Thread under shared pointer. */ #define newAbstractC20Thread std::make_shared -typedef std::shared_ptr> BarrierPtr; + typedef std::shared_ptr> BarrierPtr; } diff --git a/include/Utils/BS_thread_pool.hpp b/include/Utils/BS_thread_pool.hpp new file mode 100644 index 00000000..9793493f --- /dev/null +++ b/include/Utils/BS_thread_pool.hpp @@ -0,0 +1,874 @@ +// +// Created by haolan on 1/7/23. +// + +#ifndef INTELLISTREAM_BS_THREAD_POOL_HPP +#define INTELLISTREAM_BS_THREAD_POOL_HPP +#pragma once + +/** + * @file BS_thread_pool.hpp + * @author Barak Shoshany (baraksh@gmail.com) (http://baraksh.com) + * @version 3.3.0 + * @date 2022-08-03 + * @copyright Copyright (c) 2022 Barak Shoshany. Licensed under the MIT license. + * If you found this project useful, please consider starring it on GitHub! If + * you use this library in software of any kind, please provide a link to the + * GitHub repository https://github.com/bshoshany/thread-pool in the source code + * and documentation. If you use this library in published research, please cite + * it as follows: Barak Shoshany, "A C++17 Thread Pool for High-Performance + * Scientific Computing", doi:10.5281/zenodo.4742687, arXiv:2105.00613 (May + * 2021) + * + * @brief BS::thread_pool: a fast, lightweight, and easy-to-use C++17 thread + * pool library. This header file contains the entire library, including the + * main BS::thread_pool class and the helper classes BS::multi_future, + * BS::blocks, BS:synced_stream, and BS::timer. + */ + +#define BS_THREAD_POOL_VERSION "v3.3.0 (2022-08-03)" + +#include // std::atomic +#include // std::chrono +#include // std::condition_variable +#include // std::current_exception +#include // std::bind, std::function, std::invoke +#include // std::future, std::promise +#include // std::cout, std::endl, std::flush, std::ostream +#include // std::make_shared, std::make_unique, std::shared_ptr, std::unique_ptr +#include // std::mutex, std::scoped_lock, std::unique_lock +#include // std::queue +#include // std::thread +#include // std::common_type_t, std::conditional_t, std::decay_t, std::invoke_result_t, std::is_void_v +#include // std::forward, std::move, std::swap +#include // std::vector + +namespace BS { +/** + * @brief A convenient shorthand for the type of + * std::thread::hardware_concurrency(). Should evaluate to unsigned int. + */ + using concurrency_t = + std::invoke_result_t; + +// ============================================================================================= +// // +// Begin class multi_future // + +/** + * @brief A helper class to facilitate waiting for and/or getting the results of + * multiple futures at once. + * + * @tparam T The return type of the futures. + */ + template class [[nodiscard]] multi_future { + public: + /** + * @brief Construct a multi_future object with the given number of futures. + * + * @param num_futures_ The desired number of futures to store. + */ + multi_future(const size_t num_futures_ = 0) : futures(num_futures_) {} + + /** + * @brief Get the results from all the futures stored in this multi_future + * object, rethrowing any stored exceptions. + * + * @return If the futures return void, this function returns void as well. + * Otherwise, it returns a vector containing the results. + */ + [[nodiscard]] std::conditional_t, void, std::vector> + get() { + if constexpr (std::is_void_v) { + for (size_t i = 0; i < futures.size(); ++i) + futures[i].get(); + return; + } else { + std::vector results(futures.size()); + for (size_t i = 0; i < futures.size(); ++i) + results[i] = futures[i].get(); + return results; + } + } + + /** + * @brief Get a reference to one of the futures stored in this multi_future + * object. + * + * @param i The index of the desired future. + * @return The future. + */ + [[nodiscard]] std::future &operator[](const size_t i) { + return futures[i]; + } + + /** + * @brief Append a future to this multi_future object. + * + * @param future The future to append. + */ + void push_back(std::future future) { + futures.push_back(std::move(future)); + } + + /** + * @brief Get the number of futures stored in this multi_future object. + * + * @return The number of futures. + */ + [[nodiscard]] size_t size() const { return futures.size(); } + + /** + * @brief Wait for all the futures stored in this multi_future object. + */ + void wait() const { + for (size_t i = 0; i < futures.size(); ++i) + futures[i].wait(); + } + + private: + /** + * @brief A vector to store the futures. + */ + std::vector> futures; + }; + +// End class multi_future // +// ============================================================================================= +// // + +// ============================================================================================= +// // +// Begin class blocks // + +/** + * @brief A helper class to divide a range into blocks. Used by + * parallelize_loop() and push_loop(). + * + * @tparam T1 The type of the first index in the range. Should be a signed or + * unsigned integer. + * @tparam T2 The type of the index after the last index in the range. Should be + * a signed or unsigned integer. If T1 is not the same as T2, a common type will + * be automatically inferred. + * @tparam T The common type of T1 and T2. + */ + template > + class [[nodiscard]] blocks { + public: + /** + * @brief Construct a blocks object with the given specifications. + * + * @param first_index_ The first index in the range. + * @param index_after_last_ The index after the last index in the range. + * @param num_blocks_ The desired number of blocks to divide the range into. + */ + blocks(const T1 first_index_, const T2 index_after_last_, + const size_t num_blocks_) + : first_index(static_cast(first_index_)), + index_after_last(static_cast(index_after_last_)), + num_blocks(num_blocks_) { + if (index_after_last < first_index) + std::swap(index_after_last, first_index); + total_size = static_cast(index_after_last - first_index); + block_size = static_cast(total_size / num_blocks); + if (block_size == 0) { + block_size = 1; + num_blocks = (total_size > 1) ? total_size : 1; + } + } + + /** + * @brief Get the first index of a block. + * + * @param i The block number. + * @return The first index. + */ + [[nodiscard]] T start(const size_t i) const { + return static_cast(i * block_size) + first_index; + } + + /** + * @brief Get the index after the last index of a block. + * + * @param i The block number. + * @return The index after the last index. + */ + [[nodiscard]] T end(const size_t i) const { + return (i == num_blocks - 1) + ? index_after_last + : (static_cast((i + 1) * block_size) + first_index); + } + + /** + * @brief Get the number of blocks. Note that this may be different than the + * desired number of blocks that was passed to the constructor. + * + * @return The number of blocks. + */ + [[nodiscard]] size_t get_num_blocks() const { return num_blocks; } + + /** + * @brief Get the total number of indices in the range. + * + * @return The total number of indices. + */ + [[nodiscard]] size_t get_total_size() const { return total_size; } + + private: + /** + * @brief The size of each block (except possibly the last block). + */ + size_t block_size = 0; + + /** + * @brief The first index in the range. + */ + T first_index = 0; + + /** + * @brief The index after the last index in the range. + */ + T index_after_last = 0; + + /** + * @brief The number of blocks. + */ + size_t num_blocks = 0; + + /** + * @brief The total number of indices in the range. + */ + size_t total_size = 0; + }; + +// End class blocks // +// ============================================================================================= +// // + +// ============================================================================================= +// // +// Begin class thread_pool // + +/** + * @brief A fast, lightweight, and easy-to-use C++17 thread pool class. + */ + class [[nodiscard]] thread_pool { + public: + // ============================ + // Constructors and destructors + // ============================ + + /** + * @brief Construct a new thread pool. + * + * @param thread_count_ The number of threads to use. The default value is the + * total number of hardware threads available, as reported by the + * implementation. This is usually determined by the number of cores in the + * CPU. If a core is hyperthreaded, it will count as two threads. + */ + thread_pool(const concurrency_t thread_count_ = 0) + : thread_count(determine_thread_count(thread_count_)), + threads(std::make_unique( + determine_thread_count(thread_count_))) { + create_threads(); + } + + /** + * @brief Destruct the thread pool. Waits for all tasks to complete, then + * destroys all threads. Note that if the pool is paused, then any tasks still + * in the queue will never be executed. + */ + ~thread_pool() { + wait_for_tasks(); + destroy_threads(); + } + + // ======================= + // Public member functions + // ======================= + + /** + * @brief Get the number of tasks currently waiting in the queue to be + * executed by the threads. + * + * @return The number of queued tasks. + */ + [[nodiscard]] size_t get_tasks_queued() const { + const std::scoped_lock tasks_lock(tasks_mutex); + return tasks.size(); + } + + /** + * @brief Get the number of tasks currently being executed by the threads. + * + * @return The number of running tasks. + */ + [[nodiscard]] size_t get_tasks_running() const { + const std::scoped_lock tasks_lock(tasks_mutex); + return tasks_total - tasks.size(); + } + + /** + * @brief Get the total number of unfinished tasks: either still in the queue, + * or running in a thread. Note that get_tasks_total() == get_tasks_queued() + + * get_tasks_running(). + * + * @return The total number of tasks. + */ + [[nodiscard]] size_t get_tasks_total() const { return tasks_total; } + + /** + * @brief Get the number of threads in the pool. + * + * @return The number of threads. + */ + [[nodiscard]] concurrency_t get_thread_count() const { return thread_count; } + + /** + * @brief Check whether the pool is currently paused. + * + * @return true if the pool is paused, false if it is not paused. + */ + [[nodiscard]] bool is_paused() const { return paused; } + + /** + * @brief Parallelize a loop by automatically splitting it into blocks and + * submitting each block separately to the queue. Returns a multi_future + * object that contains the futures for all of the blocks. + * + * @tparam F The type of the function to loop through. + * @tparam T1 The type of the first index in the loop. Should be a signed or + * unsigned integer. + * @tparam T2 The type of the index after the last index in the loop. Should + * be a signed or unsigned integer. If T1 is not the same as T2, a common type + * will be automatically inferred. + * @tparam T The common type of T1 and T2. + * @tparam R The return value of the loop function F (can be void). + * @param first_index The first index in the loop. + * @param index_after_last The index after the last index in the loop. The + * loop will iterate from first_index to (index_after_last - 1) inclusive. In + * other words, it will be equivalent to "for (T i = first_index; i < + * index_after_last; ++i)". Note that if index_after_last == first_index, no + * blocks will be submitted. + * @param loop The function to loop through. Will be called once per block. + * Should take exactly two arguments: the first index in the block and the + * index after the last index in the block. loop(start, end) should typically + * involve a loop of the form "for (T i = start; i < end; ++i)". + * @param num_blocks The maximum number of blocks to split the loop into. The + * default is to use the number of threads in the pool. + * @return A multi_future object that can be used to wait for all the blocks + * to finish. If the loop function returns a value, the multi_future object + * can also be used to obtain the values returned by each block. + */ + template , + typename R = std::invoke_result_t, T, T>> + [[nodiscard]] multi_future + parallelize_loop(const T1 first_index, const T2 index_after_last, F &&loop, + const size_t num_blocks = 0) { + blocks blks(first_index, index_after_last, + num_blocks ? num_blocks : thread_count); + if (blks.get_total_size() > 0) { + multi_future mf(blks.get_num_blocks()); + for (size_t i = 0; i < blks.get_num_blocks(); ++i) + mf[i] = submit(std::forward(loop), blks.start(i), blks.end(i)); + return mf; + } else { + return multi_future(); + } + } + + /** + * @brief Parallelize a loop by automatically splitting it into blocks and + * submitting each block separately to the queue. Returns a multi_future + * object that contains the futures for all of the blocks. This overload is + * used for the special case where the first index is 0. + * + * @tparam F The type of the function to loop through. + * @tparam T The type of the loop indices. Should be a signed or unsigned + * integer. + * @tparam R The return value of the loop function F (can be void). + * @param index_after_last The index after the last index in the loop. The + * loop will iterate from 0 to (index_after_last - 1) inclusive. In other + * words, it will be equivalent to "for (T i = 0; i < index_after_last; ++i)". + * Note that if index_after_last == 0, no blocks will be submitted. + * @param loop The function to loop through. Will be called once per block. + * Should take exactly two arguments: the first index in the block and the + * index after the last index in the block. loop(start, end) should typically + * involve a loop of the form "for (T i = start; i < end; ++i)". + * @param num_blocks The maximum number of blocks to split the loop into. The + * default is to use the number of threads in the pool. + * @return A multi_future object that can be used to wait for all the blocks + * to finish. If the loop function returns a value, the multi_future object + * can also be used to obtain the values returned by each block. + */ + template , T, T>> + [[nodiscard]] multi_future parallelize_loop(const T index_after_last, + F &&loop, + const size_t num_blocks = 0) { + return parallelize_loop(0, index_after_last, std::forward(loop), + num_blocks); + } + + /** + * @brief Pause the pool. The workers will temporarily stop retrieving new + * tasks out of the queue, although any tasks already executed will keep + * running until they are finished. + */ + void pause() { paused = true; } + + /** + * @brief Parallelize a loop by automatically splitting it into blocks and + * submitting each block separately to the queue. Does not return a + * multi_future, so the user must use wait_for_tasks() or some other method to + * ensure that the loop finishes executing, otherwise bad things will happen. + * + * @tparam F The type of the function to loop through. + * @tparam T1 The type of the first index in the loop. Should be a signed or + * unsigned integer. + * @tparam T2 The type of the index after the last index in the loop. Should + * be a signed or unsigned integer. If T1 is not the same as T2, a common type + * will be automatically inferred. + * @tparam T The common type of T1 and T2. + * @param first_index The first index in the loop. + * @param index_after_last The index after the last index in the loop. The + * loop will iterate from first_index to (index_after_last - 1) inclusive. In + * other words, it will be equivalent to "for (T i = first_index; i < + * index_after_last; ++i)". Note that if index_after_last == first_index, no + * blocks will be submitted. + * @param loop The function to loop through. Will be called once per block. + * Should take exactly two arguments: the first index in the block and the + * index after the last index in the block. loop(start, end) should typically + * involve a loop of the form "for (T i = start; i < end; ++i)". + * @param num_blocks The maximum number of blocks to split the loop into. The + * default is to use the number of threads in the pool. + */ + template > + void push_loop(const T1 first_index, const T2 index_after_last, F &&loop, + const size_t num_blocks = 0) { + blocks blks(first_index, index_after_last, + num_blocks ? num_blocks : thread_count); + if (blks.get_total_size() > 0) { + for (size_t i = 0; i < blks.get_num_blocks(); ++i) + push_task(std::forward(loop), blks.start(i), blks.end(i)); + } + } + + /** + * @brief Parallelize a loop by automatically splitting it into blocks and + * submitting each block separately to the queue. Does not return a + * multi_future, so the user must use wait_for_tasks() or some other method to + * ensure that the loop finishes executing, otherwise bad things will happen. + * This overload is used for the special case where the first index is 0. + * + * @tparam F The type of the function to loop through. + * @tparam T The type of the loop indices. Should be a signed or unsigned + * integer. + * @param index_after_last The index after the last index in the loop. The + * loop will iterate from 0 to (index_after_last - 1) inclusive. In other + * words, it will be equivalent to "for (T i = 0; i < index_after_last; ++i)". + * Note that if index_after_last == 0, no blocks will be submitted. + * @param loop The function to loop through. Will be called once per block. + * Should take exactly two arguments: the first index in the block and the + * index after the last index in the block. loop(start, end) should typically + * involve a loop of the form "for (T i = start; i < end; ++i)". + * @param num_blocks The maximum number of blocks to split the loop into. The + * default is to use the number of threads in the pool. + */ + template + void push_loop(const T index_after_last, F &&loop, + const size_t num_blocks = 0) { + push_loop(0, index_after_last, std::forward(loop), num_blocks); + } + + /** + * @brief Push a function with zero or more arguments, but no return value, + * into the task queue. Does not return a future, so the user must use + * wait_for_tasks() or some other method to ensure that the task finishes + * executing, otherwise bad things will happen. + * + * @tparam F The type of the function. + * @tparam A The types of the arguments. + * @param task The function to push. + * @param args The zero or more arguments to pass to the function. Note that + * if the task is a class member function, the first argument must be a + * pointer to the object, i.e. &object (or this), followed by the actual + * arguments. + */ + template void push_task(F &&task, A &&...args) { + std::function task_function = + std::bind(std::forward(task), std::forward(args)...); + { + const std::scoped_lock tasks_lock(tasks_mutex); + tasks.push(task_function); + } + ++tasks_total; + task_available_cv.notify_one(); + } + + /** + * @brief Reset the number of threads in the pool. Waits for all currently + * running tasks to be completed, then destroys all threads in the pool and + * creates a new thread pool with the new number of threads. Any tasks that + * were waiting in the queue before the pool was reset will then be executed + * by the new threads. If the pool was paused before resetting it, the new + * pool will be paused as well. + * + * @param thread_count_ The number of threads to use. The default value is the + * total number of hardware threads available, as reported by the + * implementation. This is usually determined by the number of cores in the + * CPU. If a core is hyperthreaded, it will count as two threads. + */ + void reset(const concurrency_t thread_count_ = 0) { + const bool was_paused = paused; + paused = true; + wait_for_tasks(); + destroy_threads(); + thread_count = determine_thread_count(thread_count_); + threads = std::make_unique(thread_count); + paused = was_paused; + create_threads(); + } + + /** + * @brief Submit a function with zero or more arguments into the task queue. + * If the function has a return value, get a future for the eventual returned + * value. If the function has no return value, get an std::future which + * can be used to wait until the task finishes. + * + * @tparam F The type of the function. + * @tparam A The types of the zero or more arguments to pass to the function. + * @tparam R The return type of the function (can be void). + * @param task The function to submit. + * @param args The zero or more arguments to pass to the function. Note that + * if the task is a class member function, the first argument must be a + * pointer to the object, i.e. &object (or this), followed by the actual + * arguments. + * @return A future to be used later to wait for the function to finish + * executing and/or obtain its returned value if it has one. + */ + template < + typename F, typename... A, + typename R = std::invoke_result_t, std::decay_t...>> + [[nodiscard]] std::future submit(F &&task, A &&...args) { + std::function task_function = + std::bind(std::forward(task), std::forward(args)...); + std::shared_ptr> task_promise = + std::make_shared>(); + push_task([task_function, task_promise] { + try { + if constexpr (std::is_void_v) { + std::invoke(task_function); + task_promise->set_value(); + } else { + task_promise->set_value(std::invoke(task_function)); + } + } catch (...) { + try { + task_promise->set_exception(std::current_exception()); + } catch (...) { + } + } + }); + return task_promise->get_future(); + } + + /** + * @brief Unpause the pool. The workers will resume retrieving new tasks out + * of the queue. + */ + void unpause() { paused = false; } + + /** + * @brief Wait for tasks to be completed. Normally, this function waits for + * all tasks, both those that are currently running in the threads and those + * that are still waiting in the queue. However, if the pool is paused, this + * function only waits for the currently running tasks (otherwise it would + * wait forever). Note: To wait for just one specific task, use submit() + * instead, and call the wait() member function of the generated future. + */ + void wait_for_tasks() { + waiting = true; + std::unique_lock tasks_lock(tasks_mutex); + task_done_cv.wait(tasks_lock, [this] { + return (tasks_total == (paused ? tasks.size() : 0)); + }); + waiting = false; + } + + private: + // ======================== + // Private member functions + // ======================== + + /** + * @brief Create the threads in the pool and assign a worker to each thread. + */ + void create_threads() { + running = true; + for (concurrency_t i = 0; i < thread_count; ++i) { + threads[i] = std::thread(&thread_pool::worker, this); + } + } + + /** + * @brief Destroy the threads in the pool. + */ + void destroy_threads() { + running = false; + task_available_cv.notify_all(); + for (concurrency_t i = 0; i < thread_count; ++i) { + threads[i].join(); + } + } + + /** + * @brief Determine how many threads the pool should have, based on the + * parameter passed to the constructor or reset(). + * + * @param thread_count_ The parameter passed to the constructor or reset(). If + * the parameter is a positive number, then the pool will be created with this + * number of threads. If the parameter is non-positive, or a parameter was not + * supplied (in which case it will have the default value of 0), then the pool + * will be created with the total number of hardware threads available, as + * obtained from std::thread::hardware_concurrency(). If the latter returns a + * non-positive number for some reason, then the pool will be created with + * just one thread. + * @return The number of threads to use for constructing the pool. + */ + [[nodiscard]] concurrency_t + determine_thread_count(const concurrency_t thread_count_) { + if (thread_count_ > 0) + return thread_count_; + else { + if (std::thread::hardware_concurrency() > 0) + return std::thread::hardware_concurrency(); + else + return 1; + } + } + + /** + * @brief A worker function to be assigned to each thread in the pool. Waits + * until it is notified by push_task() that a task is available, and then + * retrieves the task from the queue and executes it. Once the task finishes, + * the worker notifies wait_for_tasks() in case it is waiting. + */ + void worker() { + while (running) { + std::function task; + std::unique_lock tasks_lock(tasks_mutex); + task_available_cv.wait(tasks_lock, + [this] { return !tasks.empty() || !running; }); + if (running && !paused) { + task = std::move(tasks.front()); + tasks.pop(); + tasks_lock.unlock(); + task(); + tasks_lock.lock(); + --tasks_total; + if (waiting) + task_done_cv.notify_one(); + } + } + } + + // ============ + // Private data + // ============ + + /** + * @brief An atomic variable indicating whether the workers should pause. When + * set to true, the workers temporarily stop retrieving new tasks out of the + * queue, although any tasks already executed will keep running until they are + * finished. When set to false again, the workers resume retrieving tasks. + */ + std::atomic paused = false; + + /** + * @brief An atomic variable indicating to the workers to keep running. When + * set to false, the workers permanently stop working. + */ + std::atomic running = false; + + /** + * @brief A condition variable used to notify worker() that a new task has + * become available. + */ + std::condition_variable task_available_cv = {}; + + /** + * @brief A condition variable used to notify wait_for_tasks() that a tasks is + * done. + */ + std::condition_variable task_done_cv = {}; + + /** + * @brief A queue of tasks to be executed by the threads. + */ + std::queue> tasks = {}; + + /** + * @brief An atomic variable to keep track of the total number of unfinished + * tasks - either still in the queue, or running in a thread. + */ + std::atomic tasks_total = 0; + + /** + * @brief A mutex to synchronize access to the task queue by different + * threads. + */ + mutable std::mutex tasks_mutex = {}; + + /** + * @brief The number of threads in the pool. + */ + concurrency_t thread_count = 0; + + /** + * @brief A smart pointer to manage the memory allocated for the threads. + */ + std::unique_ptr threads = nullptr; + + /** + * @brief An atomic variable indicating that wait_for_tasks() is active and + * expects to be notified whenever a task is done. + */ + std::atomic waiting = false; + }; + + typedef std::shared_ptr thread_pool_ptr; + +// End class thread_pool // +// ============================================================================================= +// // + +// ============================================================================================= +// // +// Begin class synced_stream // + +/** + * @brief A helper class to synchronize printing to an output stream by + * different threads. + */ + class [[nodiscard]] synced_stream { + public: + /** + * @brief Construct a new synced stream. + * + * @param out_stream_ The output stream to print to. The default value is + * std::cout. + */ + synced_stream(std::ostream &out_stream_ = std::cout) + : out_stream(out_stream_) {} + + /** + * @brief Print any number of items into the output stream. Ensures that no + * other threads print to this stream simultaneously, as long as they all + * exclusively use the same synced_stream object to print. + * + * @tparam T The types of the items + * @param items The items to print. + */ + template void print(T &&...items) { + const std::scoped_lock lock(stream_mutex); + (out_stream << ... << std::forward(items)); + } + + /** + * @brief Print any number of items into the output stream, followed by a + * newline character. Ensures that no other threads print to this stream + * simultaneously, as long as they all exclusively use the same synced_stream + * object to print. + * + * @tparam T The types of the items + * @param items The items to print. + */ + template void println(T &&...items) { + print(std::forward(items)..., '\n'); + } + + /** + * @brief A stream manipulator to pass to a synced_stream (an explicit cast of + * std::endl). Prints a newline character to the stream, and then flushes it. + * Should only be used if flushing is desired, otherwise '\n' should be used + * instead. + */ + inline static std::ostream &(&endl)(std::ostream &) = + static_cast(std::endl); + + /** + * @brief A stream manipulator to pass to a synced_stream (an explicit cast of + * std::flush). Used to flush the stream. + */ + inline static std::ostream &(&flush)(std::ostream &) = + static_cast(std::flush); + + private: + /** + * @brief The output stream to print to. + */ + std::ostream &out_stream; + + /** + * @brief A mutex to synchronize printing. + */ + mutable std::mutex stream_mutex = {}; + }; + +// End class synced_stream // +// ============================================================================================= +// // + +// ============================================================================================= +// // +// Begin class timer // + +/** + * @brief A helper class to measure execution time for benchmarking purposes. + */ + class [[nodiscard]] timer { + public: + /** + * @brief Start (or restart) measuring time. + */ + void start() { start_time = std::chrono::steady_clock::now(); } + + /** + * @brief Stop measuring time and store the elapsed time since start(). + */ + void stop() { elapsed_time = std::chrono::steady_clock::now() - start_time; } + + /** + * @brief Get the number of milliseconds that have elapsed between start() and + * stop(). + * + * @return The number of milliseconds. + */ + [[nodiscard]] std::chrono::milliseconds::rep ms() const { + return (std::chrono::duration_cast(elapsed_time)) + .count(); + } + + private: + /** + * @brief The time point when measuring started. + */ + std::chrono::time_point start_time = + std::chrono::steady_clock::now(); + + /** + * @brief The duration that has elapsed between start() and stop(). + */ + std::chrono::duration elapsed_time = + std::chrono::duration::zero(); + }; + +// End class timer // +// ============================================================================================= +// // + +} // namespace BS +#endif //INTELLISTREAM_BS_THREAD_POOL_HPP diff --git a/include/Utils/C20Buffers.hpp b/include/Utils/C20Buffers.hpp index 625c85ca..056e8af3 100644 --- a/include/Utils/C20Buffers.hpp +++ b/include/Utils/C20Buffers.hpp @@ -8,6 +8,7 @@ #include #include + #if defined(__GNUC__) && (__GNUC__ >= 4) #define ADB_memcpy(dst, src, size) __builtin_memcpy(dst, src, size) #else @@ -27,97 +28,106 @@ namespace INTELLI { * @class C20Buffer Utils/C20Buffers.hpp * @tparam dataType The type of your buffering element */ -template -class C20Buffer { - protected: - size_t pos = 0; - public: - std::vector area; - /** - * @brief reset this buffer, set pos back to 0 - */ - void reset() { - pos = 0; - } - C20Buffer() { reset(); } - ~C20Buffer() {} + template + class C20Buffer { + protected: + size_t pos = 0; + public: + std::vector area; + + /** + * @brief reset this buffer, set pos back to 0 + */ + void reset() { + pos = 0; + } + + C20Buffer() { reset(); } + + ~C20Buffer() {} + + /** + * @brief Init with original length of buffer + * @param len THe original length of buffer + */ + C20Buffer(size_t len) { + area = std::vector(len); + reset(); + } + + /** + * @brief To get how many elements are allowed in the buffer + * @return The size of buffer area, i.e., area.size() + * @note: This is NOT the size of valid data + * @see size + */ + size_t bufferSize() { + return area.size(); + } + + /** + * @brief To get how many VALID elements are existed in the buffer + * @return The size of VALID elements + * @note: This is NOT the size of total buffer + * @see bufferSize + */ + size_t size() { + return pos; + } + + /** + * @brief To get the original memory area ponter of data + * @return The memory area address (pointer) that stores the data + */ + dataType *data() { + return &area[0]; + } + + /** + * @brief To get the original memory area ponter of data, with offset + * @param offset Offset of data + * @return The memory area address (pointer) that stores the data + * @warning Please ensure the offset is NOT larger than the area.size()-1 + */ + dataType *data(size_t offset) { + return &area[offset]; + } + + /** + * @brief Append the data to the buffer + * @param da Data to be appended + * @note Exceed length will lead to a push_back in vector + * @return The valid size after this append + */ + size_t append(dataType da) { + /*if(pos(len); - reset(); - } - /** - * @brief To get how many elements are allowed in the buffer - * @return The size of buffer area, i.e., area.size() - * @note: This is NOT the size of valid data - * @see size - */ - size_t bufferSize() { - return area.size(); - } - /** - * @brief To get how many VALID elements are existed in the buffer - * @return The size of VALID elements - * @note: This is NOT the size of total buffer - * @see bufferSize - */ - size_t size() { - return pos; - } - /** - * @brief To get the original memory area ponter of data - * @return The memory area address (pointer) that stores the data - */ - dataType *data() { - return &area[0]; - } - /** - * @brief To get the original memory area ponter of data, with offset - * @param offset Offset of data - * @return The memory area address (pointer) that stores the data - * @warning Please ensure the offset is NOT larger than the area.size()-1 - */ - dataType *data(size_t offset) { - return &area[offset]; - } - /** - * @brief Append the data to the buffer - * @param da Data to be appended - * @note Exceed length will lead to a push_back in vector - * @return The valid size after this append - */ - size_t append(dataType da) { - /*if(pos #include #include @@ -26,243 +27,262 @@ namespace INTELLI { * @class ConfigMap Utils/ConfigMap.hpp * @brief The unified map structure to store configurations in a key-value style */ -class ConfigMap { - protected: - std::map u64Map; - std::map i64Map; - std::map doubleMap; - std::map strMap; + class ConfigMap { + protected: + std::map u64Map; + std::map i64Map; + std::map doubleMap; + std::map strMap; - void spilt(const std::string s, const std::string &c, vector &v) { - std::string::size_type pos1, pos2; - pos2 = s.find(c); - pos1 = 0; - while (std::string::npos != pos2) { - v.push_back(s.substr(pos1, pos2 - pos1)); + void spilt(const std::string s, const std::string &c, vector &v) { + std::string::size_type pos1, pos2; + pos2 = s.find(c); + pos1 = 0; + while (std::string::npos != pos2) { + v.push_back(s.substr(pos1, pos2 - pos1)); - pos1 = pos2 + c.size(); - pos2 = s.find(c, pos1); - } - if (pos1 != s.length()) - v.push_back(s.substr(pos1)); - } - public: - ConfigMap() {} - ~ConfigMap() {} - /** - * @brief Edit the config map. If not exit the config, will create new, or will overwrite - * @param key The look up key in std::string - * @param value The u64 value - */ - void edit(std::string key, uint64_t value) { - u64Map[key] = value; - } - /** - * @brief Edit the config map. If not exit the config, will create new, or will overwrite - * @param key The look up key in std::string - * @param value The i64 value - */ - void edit(std::string key, int64_t value) { - i64Map[key] = value; - } - /** - * @brief Edit the config map. If not exit the config, will create new, or will overwrite - * @param key The look up key in std::string - * @param value The double value - */ - void edit(std::string key, double value) { - doubleMap[key] = value; - } - /** - * @brief Edit the config map. If not exit the config, will create new, or will overwrite - * @param key The look up key in std::string - * @param value The std::string value - */ - void edit(std::string key, std::string value) { - strMap[key] = value; - } - /** - * @brief To detect whether the key exists and related to a U64 - * @param key - * @return bool for the result - */ - bool existU64(std::string key) { - return (u64Map.count(key) == 1); - } - /** - * @brief To detect whether the key exists and related to a I64 - * @param key - * @return bool for the result - */ - bool existI64(std::string key) { - return (i64Map.count(key) == 1); - } - /** - * @brief To detect whether the key exists and related to a double - * @param key - * @return bool for the result - */ - bool existDouble(std::string key) { - return (doubleMap.count(key) == 1); - } - /** - * @brief To detect whether the key exists and related to a std::string - * @param key - * @return bool for the result - */ - bool existString(std::string key) { - return (strMap.count(key) == 1); - } - /** - * @brief To detect whether the key exists - * @param key - * @return bool for the result - */ - bool exist(std::string key) { - return existU64(key) || existI64(key) || existDouble(key) || existString(key); - } - /** - * @brief To get a U64 value by key - * @param key - * @return value - * @warning the key must exist!! - */ - uint64_t getU64(std::string key) { - return u64Map.at(key); - } - /** - * @brief To get a I64 value by key - * @param key - * @return value - * @warning the key must exist!! - */ - int64_t getI64(std::string key) { - return i64Map.at(key); - } - /** - * @brief To get a double value by key - * @param key - * @return value - * @warning the key must exist!! - */ - double getDouble(std::string key) { - return doubleMap.at(key); - } - /** - * @brief To get a std::string value by key - * @param key - * @return value - * @warning the key must exist!! - */ - std::string getString(std::string key) { - return strMap.at(key); - } - /** - * @brief convert the whole map to std::string and retuen - * @param separator The separator std::string, default "\t" - * @param newLine The newline std::string, default "\n" - * @return the result - */ - std::string toString(std::string separator = "\t", std::string newLine = "\n") { - std::string str = "key" + separator + "value" + separator + "type" + newLine; - for (auto &iter : u64Map) { - std::string col = iter.first + separator + to_string(iter.second) + separator + "U64" + newLine; - str += col; - } - for (auto &iter : i64Map) { - std::string col = iter.first + separator + to_string(iter.second) + separator + "I64" + newLine; - str += col; - } - for (auto &iter : doubleMap) { - std::string col = iter.first + separator + to_string(iter.second) + separator + "Double" + newLine; - str += col; - } - for (auto &iter : strMap) { - std::string col = iter.first + separator + (iter.second) + separator + "String" + newLine; - str += col; - } - return str; - } - /** - * @brief clone this config into destination - * @param dest The clone destination - */ - void cloneInto(ConfigMap &dest) { - for (auto &iter : u64Map) { - dest.edit(iter.first, (uint64_t) iter.second); - } - for (auto &iter : i64Map) { - dest.edit(iter.first, (int64_t) iter.second); - } - for (auto &iter : doubleMap) { - dest.edit(iter.first, (double) iter.second); - } - for (auto &iter : strMap) { - dest.edit(iter.first, (std::string) iter.second); - } - } - /** - * @brief convert the whole map to file - * @param fname The file name - * @param separator The separator std::string, default "," for csv style - * @param newLine The newline std::string, default "\n" - * @return bool, whether the file is created - */ - bool toFile(std::string fname, std::string separator = ",", std::string newLine = "\n") { - ofstream of; - of.open(fname); - if (of.fail()) { - return false; - } - of << toString(separator, newLine); - of.close(); - return true; - } - /** - * @brief update the whole map from file - * @param fname The file name - * @param separator The separator std::string, default "," for csv style - * @param newLine The newline std::string, default "\n" - * @return bool, whether the file is loaded - */ - bool fromFile(std::string fname, std::string separator = ",", std::string newLine = "\n") { - ifstream ins; - ins.open(fname); - assert(separator.data()); - assert(newLine.data()); - if (ins.fail()) { - return false; - } - std::string readStr; - // cout << "read file\r\n"; - while (std::getline(ins, readStr, newLine.data()[0])) { - vector cols; - // readStr.erase(readStr.size()-1); - spilt(readStr, separator, cols); - // cout<= 3) { - istringstream iss(cols[1]); - if (cols[2] == "U64") { - uint64_t value; - iss >> value; - edit(cols[0], (uint64_t) value); - } else if (cols[2] == "I64") { - int64_t value; - iss >> value; - edit(cols[0], (int64_t) value); - } else if (cols[2] == "Double") { - double value; - iss >> value; - edit(cols[0], (double) value); - } else if (cols[2] == "String") { - edit(cols[0], (std::string) cols[1]); + pos1 = pos2 + c.size(); + pos2 = s.find(c, pos1); + } + if (pos1 != s.length()) + v.push_back(s.substr(pos1)); + } + + public: + ConfigMap() {} + + ~ConfigMap() {} + + /** + * @brief Edit the config map. If not exit the config, will create new, or will overwrite + * @param key The look up key in std::string + * @param value The u64 value + */ + void edit(std::string key, uint64_t value) { + u64Map[key] = value; + } + + /** + * @brief Edit the config map. If not exit the config, will create new, or will overwrite + * @param key The look up key in std::string + * @param value The i64 value + */ + void edit(std::string key, int64_t value) { + i64Map[key] = value; + } + + /** + * @brief Edit the config map. If not exit the config, will create new, or will overwrite + * @param key The look up key in std::string + * @param value The double value + */ + void edit(std::string key, double value) { + doubleMap[key] = value; + } + + /** + * @brief Edit the config map. If not exit the config, will create new, or will overwrite + * @param key The look up key in std::string + * @param value The std::string value + */ + void edit(std::string key, std::string value) { + strMap[key] = value; + } + + /** + * @brief To detect whether the key exists and related to a U64 + * @param key + * @return bool for the result + */ + bool existU64(std::string key) { + return (u64Map.count(key) == 1); + } + + /** + * @brief To detect whether the key exists and related to a I64 + * @param key + * @return bool for the result + */ + bool existI64(std::string key) { + return (i64Map.count(key) == 1); + } + + /** + * @brief To detect whether the key exists and related to a double + * @param key + * @return bool for the result + */ + bool existDouble(std::string key) { + return (doubleMap.count(key) == 1); + } + + /** + * @brief To detect whether the key exists and related to a std::string + * @param key + * @return bool for the result + */ + bool existString(std::string key) { + return (strMap.count(key) == 1); + } + + /** + * @brief To detect whether the key exists + * @param key + * @return bool for the result + */ + bool exist(std::string key) { + return existU64(key) || existI64(key) || existDouble(key) || existString(key); + } + + /** + * @brief To get a U64 value by key + * @param key + * @return value + * @warning the key must exist!! + */ + uint64_t getU64(std::string key) { + return u64Map.at(key); + } + + /** + * @brief To get a I64 value by key + * @param key + * @return value + * @warning the key must exist!! + */ + int64_t getI64(std::string key) { + return i64Map.at(key); + } + + /** + * @brief To get a double value by key + * @param key + * @return value + * @warning the key must exist!! + */ + double getDouble(std::string key) { + return doubleMap.at(key); + } + + /** + * @brief To get a std::string value by key + * @param key + * @return value + * @warning the key must exist!! + */ + std::string getString(std::string key) { + return strMap.at(key); + } + + /** + * @brief convert the whole map to std::string and retuen + * @param separator The separator std::string, default "\t" + * @param newLine The newline std::string, default "\n" + * @return the result + */ + std::string toString(std::string separator = "\t", std::string newLine = "\n") { + std::string str = "key" + separator + "value" + separator + "type" + newLine; + for (auto &iter: u64Map) { + std::string col = iter.first + separator + to_string(iter.second) + separator + "U64" + newLine; + str += col; + } + for (auto &iter: i64Map) { + std::string col = iter.first + separator + to_string(iter.second) + separator + "I64" + newLine; + str += col; + } + for (auto &iter: doubleMap) { + std::string col = iter.first + separator + to_string(iter.second) + separator + "Double" + newLine; + str += col; + } + for (auto &iter: strMap) { + std::string col = iter.first + separator + (iter.second) + separator + "String" + newLine; + str += col; + } + return str; + } + + /** + * @brief clone this config into destination + * @param dest The clone destination + */ + void cloneInto(ConfigMap &dest) { + for (auto &iter: u64Map) { + dest.edit(iter.first, (uint64_t) iter.second); + } + for (auto &iter: i64Map) { + dest.edit(iter.first, (int64_t) iter.second); + } + for (auto &iter: doubleMap) { + dest.edit(iter.first, (double) iter.second); + } + for (auto &iter: strMap) { + dest.edit(iter.first, (std::string) iter.second); + } + } + + /** + * @brief convert the whole map to file + * @param fname The file name + * @param separator The separator std::string, default "," for csv style + * @param newLine The newline std::string, default "\n" + * @return bool, whether the file is created + */ + bool toFile(std::string fname, std::string separator = ",", std::string newLine = "\n") { + ofstream of; + of.open(fname); + if (of.fail()) { + return false; + } + of << toString(separator, newLine); + of.close(); + return true; + } + + /** + * @brief update the whole map from file + * @param fname The file name + * @param separator The separator std::string, default "," for csv style + * @param newLine The newline std::string, default "\n" + * @return bool, whether the file is loaded + */ + bool fromFile(std::string fname, std::string separator = ",", std::string newLine = "\n") { + ifstream ins; + ins.open(fname); + assert(separator.data()); + assert(newLine.data()); + if (ins.fail()) { + return false; + } + std::string readStr; + // cout << "read file\r\n"; + while (std::getline(ins, readStr, newLine.data()[0])) { + vector cols; + // readStr.erase(readStr.size()-1); + spilt(readStr, separator, cols); + // cout<= 3) { + istringstream iss(cols[1]); + if (cols[2] == "U64") { + uint64_t value; + iss >> value; + edit(cols[0], (uint64_t) value); + } else if (cols[2] == "I64") { + int64_t value; + iss >> value; + edit(cols[0], (int64_t) value); + } else if (cols[2] == "Double") { + double value; + iss >> value; + edit(cols[0], (double) value); + } else if (cols[2] == "String") { + edit(cols[0], (std::string) cols[1]); + } + } + } + //ins>>readStr; + ins.close(); + return true; } - } - } - //ins>>readStr; - ins.close(); - return true; - } /** * @brief Try to get an I64 from config map, if not exist, use default value instead @@ -271,19 +291,19 @@ class ConfigMap { * @param showWarning Whether show warning logs if not found * @return The returned value */ - int64_t tryI64(const string &key, int64_t defaultValue = 0, bool showWarning = false) { - int64_t ru = defaultValue; - if (this->existI64(key)) { - ru = this->getI64(key); - // INTELLI_INFO(key + " = " + to_string(ru)); - } else { - if (showWarning) { - INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - return ru; - } + int64_t tryI64(const string &key, int64_t defaultValue = 0, bool showWarning = false) { + int64_t ru = defaultValue; + if (this->existI64(key)) { + ru = this->getI64(key); + // INTELLI_INFO(key + " = " + to_string(ru)); + } else { + if (showWarning) { + INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + return ru; + } /** * @brief Try to get an U64 from config map, if not exist, use default value instead @@ -292,19 +312,19 @@ class ConfigMap { * @param showWarning Whether show warning logs if not found * @return The returned value */ - uint64_t tryU64(const string &key, uint64_t defaultValue = 0, bool showWarning = false) { - uint64_t ru = defaultValue; - if (this->existU64(key)) { - ru = this->getU64(key); - // INTELLI_INFO(key + " = " + to_string(ru)); - } else { - if (showWarning) { - INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - return ru; - } + uint64_t tryU64(const string &key, uint64_t defaultValue = 0, bool showWarning = false) { + uint64_t ru = defaultValue; + if (this->existU64(key)) { + ru = this->getU64(key); + // INTELLI_INFO(key + " = " + to_string(ru)); + } else { + if (showWarning) { + INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + return ru; + } /** * @brief Try to get a double from config map, if not exist, use default value instead @@ -313,19 +333,19 @@ class ConfigMap { * @param showWarning Whether show warning logs if not found * @return The returned value */ - double tryDouble(const string &key, double defaultValue = 0, bool showWarning = false) { - double ru = defaultValue; - if (this->existDouble(key)) { - ru = this->getDouble(key); - // INTELLI_INFO(key + " = " + to_string(ru)); - } else { - if (showWarning) { - INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); - } - return ru; - } + double tryDouble(const string &key, double defaultValue = 0, bool showWarning = false) { + double ru = defaultValue; + if (this->existDouble(key)) { + ru = this->getDouble(key); + // INTELLI_INFO(key + " = " + to_string(ru)); + } else { + if (showWarning) { + INTELLI_WARNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + // WM_WARNNING("Leaving " + key + " as blank, will use " + to_string(defaultValue) + " instead"); + } + return ru; + } /** * @brief Try to get an String from config map, if not exist, use default value instead @@ -334,28 +354,28 @@ class ConfigMap { * @param showWarning Whether show warning logs if not found * @return The returned value */ - string tryString(const string &key, const string &defaultValue = "", bool showWarning = false) { - string ru = defaultValue; - if (this->existString(key)) { - ru = this->getString(key); - //INTELLI_INFO(key + " = " + (ru)); - } else { - if (showWarning) { - INTELLI_WARNING("Leaving " + key + " as blank, will use " + (defaultValue) + " instead"); - } - // WM_WARNNING("Leaving " + key + " as blank, will use " + (defaultValue) + " instead"); - } - return ru; - } + string tryString(const string &key, const string &defaultValue = "", bool showWarning = false) { + string ru = defaultValue; + if (this->existString(key)) { + ru = this->getString(key); + //INTELLI_INFO(key + " = " + (ru)); + } else { + if (showWarning) { + INTELLI_WARNING("Leaving " + key + " as blank, will use " + (defaultValue) + " instead"); + } + // WM_WARNNING("Leaving " + key + " as blank, will use " + (defaultValue) + " instead"); + } + return ru; + } -}; + }; /** * @ingroup INTELLI_UTIL_CONFIGS * @typedef ConfigMapPtr * @brief The class to describe a shared pointer to @ref ConfigMap */ -typedef std::shared_ptr ConfigMapPtr; + typedef std::shared_ptr ConfigMapPtr; /** * @ingroup INTELLI_UTIL_CONFIGS * @def newConfigMap diff --git a/include/Utils/IntelliLog.h b/include/Utils/IntelliLog.h index 1ac69e33..9b2bac3f 100755 --- a/include/Utils/IntelliLog.h +++ b/include/Utils/IntelliLog.h @@ -26,25 +26,25 @@ namespace INTELLI { * @class IntelliLog Utils/IntelliLog.hpp * @brief The log functions packed in class */ -class IntelliLog { - public: - /** - * @brief Produce a log - * @param level The log level you want to indicate - * @param message The log message you want to indicate - * @param source reserved - * @note message is automatically appended with a "\n" - */ - static void log(std::string level, - std::string_view message, - std::source_location const source = std::source_location::current()); + class IntelliLog { + public: + /** + * @brief Produce a log + * @param level The log level you want to indicate + * @param message The log message you want to indicate + * @param source reserved + * @note message is automatically appended with a "\n" + */ + static void log(std::string level, + std::string_view message, + std::source_location const source = std::source_location::current()); - /** - * @brief set up the logging file by its name - * @param fname the name of file - */ - static void setupLoggingFile(string fname); -}; + /** + * @brief set up the logging file by its name + * @param fname the name of file + */ + static void setupLoggingFile(string fname); + }; /** * @ingroup INTELLI_UTIL_INTELLILOG @@ -52,59 +52,59 @@ class IntelliLog { * @brief The protector for concurrent log on a file * @warning This class is preserved for internal use only! */ -class IntelliLog_FileProtector { - private: - std::mutex m_mut; - ofstream of; - bool isOpened = false; - public: - IntelliLog_FileProtector() = default; + class IntelliLog_FileProtector { + private: + std::mutex m_mut; + ofstream of; + bool isOpened = false; + public: + IntelliLog_FileProtector() = default; - ~IntelliLog_FileProtector() { - if (isOpened) { - of.close(); - } - } + ~IntelliLog_FileProtector() { + if (isOpened) { + of.close(); + } + } - /** - * @brief lock this protector - */ - void lock() { - while (!m_mut.try_lock()); - } + /** + * @brief lock this protector + */ + void lock() { + while (!m_mut.try_lock()); + } - /** - * @brief unlock this protector - */ - void unlock() { - m_mut.unlock(); - } + /** + * @brief unlock this protector + */ + void unlock() { + m_mut.unlock(); + } - /** - * @brief try to open a file - * @param fname The name of file - */ - void openLogFile(const string &fname) { - of.open(fname, std::ios_base::app); - if (of.fail()) { - return; - } - isOpened = true; - } + /** + * @brief try to open a file + * @param fname The name of file + */ + void openLogFile(const string &fname) { + of.open(fname, std::ios_base::app); + if (of.fail()) { + return; + } + isOpened = true; + } - /** - * @brief try to appened something to the file, if it's opened - * @param msg The message to appened - */ - void appendLogFile(const string &msg) { - if (!isOpened) { - return; - } - lock(); - of << msg; - unlock(); - } -}; + /** + * @brief try to appened something to the file, if it's opened + * @param msg The message to appened + */ + void appendLogFile(const string &msg) { + if (!isOpened) { + return; + } + lock(); + of << msg; + unlock(); + } + }; /** * @ingroup INTELLI_UTIL_INTELLILOG * @def INTELLI_INFO diff --git a/include/Utils/Meters/AbstractMeter.hpp b/include/Utils/Meters/AbstractMeter.hpp index 3035caf7..10dbece6 100644 --- a/include/Utils/Meters/AbstractMeter.hpp +++ b/include/Utils/Meters/AbstractMeter.hpp @@ -6,9 +6,11 @@ #include #include #include + #define METER_ERROR(n) INTELLI_ERROR(n) #include + using namespace std; namespace DIVERSE_METER { /** @@ -32,88 +34,96 @@ namespace DIVERSE_METER { * - call @ref getE(), @ref getPeak(), etc to get the measurement resluts * */ -class AbstractMeter { - protected: - /** - * @brief static power of a system in W - */ - double staticPower = 0; - INTELLI::ConfigMapPtr cfg = nullptr; - - private: - - public: - AbstractMeter(/* args */) { - - } - //if exist in another name - - ~AbstractMeter() { - - } - /** - * @brief to set the configmap - * @param cfg the config map - */ - virtual void setConfig(INTELLI::ConfigMapPtr _cfg) { - cfg = _cfg; - } - /** - * @brief to manually set the static power - * @param _sp - */ - void setStaticPower(double _sp) { - staticPower = _sp; - } - /** - * @brief to test the static power of a system by sleeping - * @param sleepingSecond The seconds for sleep - */ - void testStaticPower(uint64_t sleepingSecond); - /** - * @brief to start the meter into some measuring tasks - */ - virtual void startMeter() { - - } - /** - * @brief to stop the meter into some measuring tasks - */ - virtual void stopMeter() { - - } - //energy in J - /** - * @brief to get the energy in J, including static energy consumption of system - */ - virtual double getE() { - return 0.0; - } + class AbstractMeter { + protected: + /** + * @brief static power of a system in W + */ + double staticPower = 0; + INTELLI::ConfigMapPtr cfg = nullptr; - /** - * @brief to get the peak power in W, including static power of system - */ - virtual double getPeak() { - return 0.0; - } - - virtual bool isValid() { - return false; - } - /** - * @brief to return the tested static power - * return the @ref staticPower - */ - double getStaticPower(); - /** -* @brief to return the static energy consumption of a system under several us - * @param runningUs The time in us of a running - * return the @ref staticPower -*/ - double getStaicEnergyConsumption(uint64_t runningUs); + private: + + public: + AbstractMeter(/* args */) { + + } + //if exist in another name + + ~AbstractMeter() { + + } + + /** + * @brief to set the configmap + * @param cfg the config map + */ + virtual void setConfig(INTELLI::ConfigMapPtr _cfg) { + cfg = _cfg; + } + + /** + * @brief to manually set the static power + * @param _sp + */ + void setStaticPower(double _sp) { + staticPower = _sp; + } + + /** + * @brief to test the static power of a system by sleeping + * @param sleepingSecond The seconds for sleep + */ + void testStaticPower(uint64_t sleepingSecond); + + /** + * @brief to start the meter into some measuring tasks + */ + virtual void startMeter() { + + } + + /** + * @brief to stop the meter into some measuring tasks + */ + virtual void stopMeter() { + + } + //energy in J + /** + * @brief to get the energy in J, including static energy consumption of system + */ + virtual double getE() { + return 0.0; + } + + /** + * @brief to get the peak power in W, including static power of system + */ + virtual double getPeak() { + return 0.0; + } + + virtual bool isValid() { + return false; + } + + /** + * @brief to return the tested static power + * return the @ref staticPower + */ + double getStaticPower(); + + /** + * @brief to return the static energy consumption of a system under several us + * @param runningUs The time in us of a running + * return the @ref staticPower + */ + double getStaicEnergyConsumption(uint64_t runningUs); + + }; -}; -typedef std::shared_ptr AbstractMeterPtr; + typedef std::shared_ptr AbstractMeterPtr; /** * @} */ diff --git a/include/Utils/Meters/EspMeterUart/EspMeterUart.hpp b/include/Utils/Meters/EspMeterUart/EspMeterUart.hpp index 9b6d8612..9532511c 100644 --- a/include/Utils/Meters/EspMeterUart/EspMeterUart.hpp +++ b/include/Utils/Meters/EspMeterUart/EspMeterUart.hpp @@ -24,46 +24,53 @@ namespace DIVERSE_METER { * - meterAddress, String, The file system path of meter, default "/dev/ttyUSB0"; * @note tag is "espUart" */ -class EspMeterUart : public AbstractMeter { - private: - int devFd = -1; - /** - * @brief The file system path of meter - */ - std::string meterAddress = "/dev/ttyUSB0"; - void openUartDev(); - // uint64_t accessEsp32(uint64_t cmd); - public: - EspMeterUart(/* args */); - ~EspMeterUart(); - /** - * @brief to set the configmap - * @param cfg the config map - */ - virtual void setConfig(INTELLI::ConfigMapPtr _cfg); - /** - * @brief to start the meter into some measuring tasks - */ - void startMeter(); - /** - * @brief to stop the meter into some measuring tasks - */ - void stopMeter(); - /** -* @brief to get the energy in J, including static energy consumption of system -*/ - double getE(); - //peak power in mW - /** - * @brief to get the peak power in W, including static power of system - */ - double getPeak(); + class EspMeterUart : public AbstractMeter { + private: + int devFd = -1; + /** + * @brief The file system path of meter + */ + std::string meterAddress = "/dev/ttyUSB0"; + + void openUartDev(); + // uint64_t accessEsp32(uint64_t cmd); + public: + EspMeterUart(/* args */); + + ~EspMeterUart(); + + /** + * @brief to set the configmap + * @param cfg the config map + */ + virtual void setConfig(INTELLI::ConfigMapPtr _cfg); + + /** + * @brief to start the meter into some measuring tasks + */ + void startMeter(); + + /** + * @brief to stop the meter into some measuring tasks + */ + void stopMeter(); + + /** + * @brief to get the energy in J, including static energy consumption of system + */ + double getE(); + //peak power in mW + /** + * @brief to get the peak power in W, including static power of system + */ + double getPeak(); + + bool isValid() { + return (devFd != -1); + } + }; - bool isValid() { - return (devFd != -1); - } -}; -typedef std::shared_ptr EspMeterUartPtr; + typedef std::shared_ptr EspMeterUartPtr; #define newEspMeterUart() std::make_shared(); } diff --git a/include/Utils/Meters/IntelMeter/IntelMeter.hpp b/include/Utils/Meters/IntelMeter/IntelMeter.hpp index 98aab374..e3eeb5cc 100644 --- a/include/Utils/Meters/IntelMeter/IntelMeter.hpp +++ b/include/Utils/Meters/IntelMeter/IntelMeter.hpp @@ -1,5 +1,6 @@ #ifndef ADB_INCLUDE_UTILS_IntelMeter_HPP_ #define ADB_INCLUDE_UTILS_IntelMeter_HPP_ + #include #include #include @@ -17,13 +18,14 @@ #include #include #include + using namespace std; namespace DIVERSE_METER { -typedef struct rapl_power_unit { - double PU; //power units - double ESU; //energy status units - double TU; //time units -} rapl_power_unit; + typedef struct rapl_power_unit { + double PU; //power units + double ESU; //energy status units + double TU; //time units + } rapl_power_unit; /*class:IntelMeter description:the entity of intel msr-based power meter, providing all function including: E,PeakPower @@ -45,39 +47,48 @@ date:20211202 * @warning: only works for some x64 machines * @note: no peak power support, tag is "intelMsr" */ -class IntelMeter : public AbstractMeter { - private: - int devFd; - uint64_t rdmsr(int cpu, uint32_t reg); - rapl_power_unit get_rapl_power_unit(); - double eSum = 0; + class IntelMeter : public AbstractMeter { + private: + int devFd; - uint32_t maxCpu = 0; - vector cpus; - vector st; - vector en; - vector count; - rapl_power_unit power_units; - public: - /** -* @brief to set the configmap -* @param cfg the config map -*/ - virtual void setConfig(INTELLI::ConfigMapPtr _cfg); - IntelMeter(/* args */); - ~IntelMeter(); - void startMeter(); - void stopMeter(); - //energy in J - double getE(); - //peak power in mW - // double getPeak(); + uint64_t rdmsr(int cpu, uint32_t reg); + + rapl_power_unit get_rapl_power_unit(); + + double eSum = 0; + + uint32_t maxCpu = 0; + vector cpus; + vector st; + vector en; + vector count; + rapl_power_unit power_units; + public: + /** + * @brief to set the configmap + * @param cfg the config map + */ + virtual void setConfig(INTELLI::ConfigMapPtr _cfg); + + IntelMeter(/* args */); + + ~IntelMeter(); + + void startMeter(); + + void stopMeter(); + + //energy in J + double getE(); + //peak power in mW + // double getPeak(); + + bool isValid() { + return (devFd != -1); + } + }; - bool isValid() { - return (devFd != -1); - } -}; -typedef std::shared_ptr IntelMeterPtr; + typedef std::shared_ptr IntelMeterPtr; #define newIntelMeter() std::make_shared(); } diff --git a/include/Utils/Meters/MeterTable.h b/include/Utils/Meters/MeterTable.h index 6237fa07..569f7651 100644 --- a/include/Utils/Meters/MeterTable.h +++ b/include/Utils/Meters/MeterTable.h @@ -1,8 +1,10 @@ /*! \file MeterTable.hpp*/ #ifndef INTELLISTREAM_UTILS_METERTABLE_H_ #define INTELLISTREAM_UTILS_METERTABLE_H_ + #include #include + namespace DIVERSE_METER { /** @@ -17,53 +19,54 @@ namespace DIVERSE_METER { * - espUart @ref EspMeterUart * - intelMsr @ref IntelMeter */ -class MeterTable { - protected: - std::map meterMap; - public: - /** - * @brief The constructing function - * @note If new MatrixLoader wants to be included by default, please revise the following in *.cpp - */ - MeterTable(); + class MeterTable { + protected: + std::map meterMap; + public: + /** + * @brief The constructing function + * @note If new MatrixLoader wants to be included by default, please revise the following in *.cpp + */ + MeterTable(); - ~MeterTable() { - } + ~MeterTable() { + } - /** - * @brief To register a new meter - * @param onew The new operator - * @param tag THe name tag - */ - void registerNewMeter(DIVERSE_METER::AbstractMeterPtr dnew, std::string tag) { - meterMap[tag] = dnew; - } + /** + * @brief To register a new meter + * @param onew The new operator + * @param tag THe name tag + */ + void registerNewMeter(DIVERSE_METER::AbstractMeterPtr dnew, std::string tag) { + meterMap[tag] = dnew; + } - /** - * @brief find a meter in the table according to its name - * @param name The nameTag of loader - * @return The Meter, nullptr if not found - */ - DIVERSE_METER::AbstractMeterPtr findMeter(std::string name) { - if (meterMap.count(name)) { - return meterMap[name]; - } - return nullptr; - } - /** - * @ingroup INTELLI_UTIL_METER - * @typedef MeterTablePtr - * @brief The class to describe a shared pointer to @ref MeterTable + /** + * @brief find a meter in the table according to its name + * @param name The nameTag of loader + * @return The Meter, nullptr if not found + */ + DIVERSE_METER::AbstractMeterPtr findMeter(std::string name) { + if (meterMap.count(name)) { + return meterMap[name]; + } + return nullptr; + } - */ - typedef std::shared_ptr MeterTablePtr; + /** + * @ingroup INTELLI_UTIL_METER + * @typedef MeterTablePtr + * @brief The class to describe a shared pointer to @ref MeterTable + + */ + typedef std::shared_ptr MeterTablePtr; /** * @ingroup INTELLI_UTIL_METER * @def newMeterTable * @brief (Macro) To creat a new @ref MeterTable under shared pointer. */ #define newMeterTable std::make_shared -}; + }; } /** * @} diff --git a/include/Utils/MicroDataSet.hpp b/include/Utils/MicroDataSet.hpp index 89fad9a7..23ea7c93 100644 --- a/include/Utils/MicroDataSet.hpp +++ b/include/Utils/MicroDataSet.hpp @@ -6,6 +6,7 @@ #ifndef _UTILS_MICRODATASET_H_ #define _UTILS_MICRODATASET_H_ #pragma once + #include #include #include @@ -14,6 +15,7 @@ #include #include #include + using namespace std; namespace INTELLI { /** @@ -42,206 +44,226 @@ namespace INTELLI { * @class MicroDataSet Utils/MicroDataSet.hpp * @brief The all-in-one class for the Micro dataset */ -class MicroDataSet { - private: - std::random_device rd; - std::default_random_engine e1; - bool hasSeed = false; - uint64_t seed; - //uint64_t runTime=0; - public: - /** - * @brief default construction, with auto random generator - */ - MicroDataSet() { + class MicroDataSet { + private: + std::random_device rd; + std::default_random_engine e1; + bool hasSeed = false; + uint64_t seed; + //uint64_t runTime=0; + public: + /** + * @brief default construction, with auto random generator + */ + MicroDataSet() = default; - } - /** - * @brief construction with seed - * @param seed The seed for random generator - */ - MicroDataSet(uint64_t _seed) { - seed = _seed; - hasSeed = true; - } - ~MicroDataSet() {} - /** @defgroup MICRO_GENERIC generic - * @{ - * The functions for general generation of Micro - */ - /** - * @brief To generate incremental alphabet, starting from 0 and end at len - * @tparam dType The data type in the alphabet, default uint32_t - * @param len The length of alphabet - * @return The output vector alphabet - */ - template - vector genIncrementalAlphabet(size_t len) { - vector ru(len); - /* populate */ - for (size_t i = 0; i < len; i++) { - ru[i] = i + 1; /* don't let 0 be in the alphabet */ - } - return ru; - } - /** - * @brief The function to generate a vector of integers which has zipf distribution - * @param tsType The data type of int, default is size_t - * @param len The length of output vector - * @param maxV The maximum value of integer - * @param fac The zipf factor, in [0,1] - * @return the output vector - */ - template - vector genZipfInt(size_t len, tsType maxV, double fac) { - vector ret(len); - vector alphabet = genIncrementalAlphabet(maxV); - std::mt19937_64 gen; - if (!hasSeed) { - gen = std::mt19937_64(rd()); // 以 rd() 播种的标准 mersenne_twister_engine - } else { - gen = std::mt19937_64(seed); - } - - std::uniform_real_distribution<> dis(0, 1); - vector lut = genZipfLut(maxV, fac); - for (size_t i = 0; i < len; i++) { - /* take random number */ - double r = dis(gen); - /* binary search in lookup table to determine item */ - size_t left = 0; - size_t right = maxV - 1; - size_t m; /* middle between left and right */ - size_t pos; /* position to take */ - - if (lut[0] >= r) - pos = 0; - else { - while (right - left > 1) { - m = (left + right) / 2; - - if (lut[m] < r) - left = m; - else - right = m; + /** + * @brief construction with seed + * @param seed The seed for random generator + */ + explicit MicroDataSet(uint64_t _seed) { + seed = _seed; + hasSeed = true; } - pos = right; - } - ret[i] = alphabet[pos]; - } - return ret; - } - /** - * @brief generate the vector of random integer - * @tparam tsType The data type, default uint32_t - * @tparam genType The generator type, default mt19937 (32 bit rand) - * @param len The length of output vector - * @param maxV The maximum value of output - * @param minV The minimum value of output - * @return The output vector - * @note Both signed and unsigned int are support, just make sure you have right tsType - * @note Other options for genType: - * \li mt19937_64: 64 bit rand - * \li ranlux24: 24 bit - * \li ranlux48: 48 bit - */ - template - vector genRandInt(size_t len, tsType maxV, tsType minV = 0) { - genType gen; - if (!hasSeed) { - gen = genType(rd()); - } else { - seed++; - gen = genType(seed); - } - std::uniform_int_distribution<> dis(minV, maxV); - vector ret(len); - for (size_t i = 0; i < len; i++) { - ret[i] = (tsType) dis(gen); - } - return ret; - } - /** - * @brief To generate the zipf Lut - * @tparam dType The data type in the alphabet, default double - * @param len The length of alphabet - * @param fac The zipf factor, in [0,1] - * @return The output vector lut - */ - template - vector genZipfLut(size_t len, dType fac) { - dType scaling_factor; - dType sum; - vector lut(len); - /* - * Compute scaling factor such that - * - * sum (lut[i], i=1..alphabet_size) = 1.0 - * - */ - scaling_factor = 0.0; - for (size_t i = 1; i <= len; i++) { scaling_factor += 1.0 / pow(i, fac); } - /* - * Generate the lookup table - */ - sum = 0.0; - for (size_t i = 1; i <= len; i++) { - sum += 1.0 / std::pow(i, fac); - lut[i - 1] = sum / scaling_factor; - } - return lut; - } + /** + * @brief construction with seed + * @param seed The seed for random generator + */ + void setSeed(uint64_t _seed) { + seed = _seed; + hasSeed = true; + } - /** - * @} - */ - /** - * @defgroup MICRO_TS time stamp - * @{ - * This group is specialized for time stamps, as they should follow an incremental order - */ - /** - * @brief The function to generate a vector of timestamp which grows smoothly - * @tparam tsType The data type of time stamp, default is size_t - * @param len The length of output vector - * @param step Within the step, timestamp will remain the same - * @param interval The incremental value between two steps - * @return The vector of time stamp - */ - template - vector genSmoothTimeStamp(size_t len, size_t step, size_t interval) { - vector ret(len); - tsType ts = 0; - for (size_t i = 0; i < len; i++) { - ret[i] = ts; - if (i % (step) == 0) { - ts += interval; - } - - } - return ret; - } + ~MicroDataSet() = default; + /** @defgroup MICRO_GENERIC generic + * @{ + * The functions for general generation of Micro + */ + /** + * @brief To generate incremental alphabet, starting from 0 and end at len + * @tparam dType The data type in the alphabet, default uint32_t + * @param len The length of alphabet + * @return The output vector alphabet + */ + template + vector genIncrementalAlphabet(size_t len) { + vector ru(len); + /* populate */ + for (size_t i = 0; i < len; i++) { + ru[i] = i + 1; /* don't let 0 be in the alphabet */ + } + return ru; + } - /** - * @brief The function to generate a vector of timestamp which has zipf distribution - * @param tsType The data type of time stamp, default is size_t - * @param len The length of output vector - * @param maxTime The maximum value of time stamp - * @param fac The zipf factor, in [0,1] - * @return the output vector - * @see genZipfInt - */ - template - vector genZipfTimeStamp(size_t len, tsType maxTime, double fac) { - vector ret = genZipfInt(len, maxTime, fac); - std::sort(ret.begin(), ret.end()); //just incremental re-arrange - return ret; - } - /** - * @} - */ -}; + /** + * @brief The function to generate a vector of integers which has zipf distribution + * @param tsType The data type of int, default is size_t + * @param len The length of output vector + * @param maxV The maximum value of integer + * @param fac The zipf factor, in [0,1] + * @return the output vector + */ + template + vector genZipfInt(size_t len, tsType maxV, double fac) { + vector ret(len); + vector alphabet = genIncrementalAlphabet(maxV); + std::mt19937_64 gen; + if (!hasSeed) { + gen = std::mt19937_64(rd()); // 以 rd() 播种的标准 mersenne_twister_engine + } else { + gen = std::mt19937_64(seed); + seed++; + } + + std::uniform_real_distribution<> dis(0, 1); + vector lut = genZipfLut(maxV, fac); + for (size_t i = 0; i < len; i++) { + /* take random number */ + double r = dis(gen); + /* binary search in lookup table to determine item */ + size_t left = 0; + size_t right = maxV - 1; + size_t m; /* middle between left and right */ + size_t pos; /* position to take */ + + if (lut[0] >= r) + pos = 0; + else { + while (right - left > 1) { + m = (left + right) / 2; + + if (lut[m] < r) + left = m; + else + right = m; + } + + pos = right; + } + ret[i] = alphabet[pos]; + } + return ret; + } + + /** + * @brief generate the vector of random integer + * @tparam tsType The data type, default uint32_t + * @tparam genType The generator type, default mt19937 (32 bit rand) + * @param len The length of output vector + * @param maxV The maximum value of output + * @param minV The minimum value of output + * @return The output vector + * @note Both signed and unsigned int are support, just make sure you have right tsType + * @note Other options for genType: + * \li mt19937_64: 64 bit rand + * \li ranlux24: 24 bit + * \li ranlux48: 48 bit + */ + template + vector genRandInt(size_t len, tsType maxV, tsType minV = 0) { + genType gen; + if (!hasSeed) { + gen = genType(rd()); + } else { + seed++; + gen = genType(seed); + } + std::uniform_int_distribution<> dis(minV, maxV); + vector ret(len); + for (size_t i = 0; i < len; i++) { + ret[i] = (tsType) dis(gen); + } + return ret; + } + + /** + * @brief To generate the zipf Lut + * @tparam dType The data type in the alphabet, default double + * @param len The length of alphabet + * @param fac The zipf factor, in [0,1] + * @return The output vector lut + */ + template + vector genZipfLut(size_t len, dType fac) { + dType scaling_factor; + dType sum; + vector lut(len); + /** + * Compute scaling factor such that + * + * sum (lut[i], i=1..alphabet_size) = 1.0 + * + */ + scaling_factor = 0.0; + for (size_t i = 1; i <= len; i++) { scaling_factor += 1.0 / pow(i, fac); } + /** + * Generate the lookup table + */ + sum = 0.0; + for (size_t i = 1; i <= len; i++) { + sum += 1.0 / std::pow(i, fac); + lut[i - 1] = sum / scaling_factor; + } + return lut; + } + + /** + * @} + */ + /** + * @defgroup MICRO_TS time stamp + * @{ + * This group is specialized for time stamps, as they should follow an incremental order + */ + /** + * @brief The function to generate a vector of timestamp which grows smoothly + * @tparam tsType The data type of time stamp, default is size_t + * @param len The length of output vector + * @param step Within the step, timestamp will remain the same + * @param interval The incremental value between two steps + * @return The vector of time stamp + */ + template + vector genSmoothTimeStamp(size_t len, size_t step, size_t interval) { + vector ret(len); + tsType ts = 0; + for (size_t i = 0; i < len; i++) { + ret[i] = ts; + if (i % (step) == 0) { + ts += interval; + } + + } + return ret; + } + + template + vector genSmoothTimeStamp(size_t len, size_t maxTime) { + vector ret = genRandInt(len, maxTime); + std::sort(ret.begin(), ret.end()); //just incremental re-arrange + return ret; + } + + /** + * @brief The function to generate a vector of timestamp which has zipf distribution + * @param tsType The data type of time stamp, default is size_t + * @param len The length of output vector + * @param maxTime The maximum value of time stamp + * @param fac The zipf factor, in [0,1] + * @return the output vector + * @see genZipfInt + */ + template + vector genZipfTimeStamp(size_t len, tsType maxTime, double fac) { + vector ret = genZipfInt(len, maxTime, fac); + std::sort(ret.begin(), ret.end()); //just incremental re-arrange + return ret; + } + /** + * @} + */ + }; } /** * @} diff --git a/include/Utils/SPSCQueue.hpp b/include/Utils/SPSCQueue.hpp index 347f8de0..d6665b91 100644 --- a/include/Utils/SPSCQueue.hpp +++ b/include/Utils/SPSCQueue.hpp @@ -16,251 +16,256 @@ #include #include #include + using namespace std::literals::chrono_literals; using namespace std; namespace INTELLI { -template> -class SPSCQueue { + template> + class SPSCQueue { #if defined(__cpp_if_constexpr) && defined(__cpp_lib_void_t) - template - struct has_allocate_at_least : std::false_type { - }; - - template - struct has_allocate_at_least< - Alloc2, std::void_t().allocate_at_least( - size_t{}))>> : std::true_type { - }; + template + struct has_allocate_at_least : std::false_type { + }; + + template + struct has_allocate_at_least< + Alloc2, std::void_t().allocate_at_least( + size_t{}))>> : std::true_type { + }; #endif - public: - pthread_cond_t cond; - pthread_mutex_t mutex; - explicit SPSCQueue(const size_t capacity, - const Allocator &allocator = Allocator()) - : capacity_(capacity), allocator_(allocator) { - - // The queue needs at least one element - if (capacity_ < 1) { - capacity_ = 1; - } - capacity_++; // Needs one slack element - // Prevent overflowing size_t - if (capacity_ > SIZE_MAX - 2 * kPadding) { - capacity_ = SIZE_MAX - 2 * kPadding; - } + public: + pthread_cond_t cond; + pthread_mutex_t mutex; + + explicit SPSCQueue(const size_t capacity, + const Allocator &allocator = Allocator()) + : capacity_(capacity), allocator_(allocator) { + + // The queue needs at least one element + if (capacity_ < 1) { + capacity_ = 1; + } + capacity_++; // Needs one slack element + // Prevent overflowing size_t + if (capacity_ > SIZE_MAX - 2 * kPadding) { + capacity_ = SIZE_MAX - 2 * kPadding; + } #if defined(__cpp_if_constexpr) && defined(__cpp_lib_void_t) - if constexpr (has_allocate_at_least::value) { - auto res = allocator_.allocate_at_least(capacity_ + 2 * kPadding); - slots_ = res.ptr; - capacity_ = res.count - 2 * kPadding; - } else { - slots_ = std::allocator_traits::allocate( - allocator_, capacity_ + 2 * kPadding); - } + if constexpr (has_allocate_at_least::value) { + auto res = allocator_.allocate_at_least(capacity_ + 2 * kPadding); + slots_ = res.ptr; + capacity_ = res.count - 2 * kPadding; + } else { + slots_ = std::allocator_traits::allocate( + allocator_, capacity_ + 2 * kPadding); + } #else - slots_ = std::allocator_traits::allocate( - allocator_, capacity_ + 2 * kPadding); + slots_ = std::allocator_traits::allocate( + allocator_, capacity_ + 2 * kPadding); #endif - static_assert(alignof(SPSCQueue) == kCacheLineSize, ""); - static_assert(sizeof(SPSCQueue) >= 3 * kCacheLineSize, ""); - assert(reinterpret_cast(&readIdx_) - - reinterpret_cast(&writeIdx_) >= - static_cast(kCacheLineSize)); - } - - ~SPSCQueue() { - while (front()) { - pop(); - } - std::allocator_traits::deallocate(allocator_, slots_, - capacity_ + 2 * kPadding); - } - - // non-copyable and non-movable - SPSCQueue(const SPSCQueue &) = delete; - - SPSCQueue &operator=(const SPSCQueue &) = delete; - std::mutex g_mutex; - condition_variable g_con; - - void wakeUpSink(void) { - //std::unique_lock lock(g_mutex); - - g_con.notify_one(); - - - //lock.unlock(); - } - void waitForSource(void) { // printf("enter sleep\r\n"); - std::unique_lock lock(g_mutex); - g_con.wait(lock); - - // printf("end sleep\r\n"); - // pthread_mutex_lock(&mutex); - - // pthread_mutex_unlock(&mutex); - // - - - } - template - void emplace(Args &&...args) - noexcept( - std::is_nothrow_constructible::value) { - static_assert(std::is_constructible::value, - "T must be constructible with Args&&..."); - auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); - auto nextWriteIdx = writeIdx + 1; - if (nextWriteIdx == capacity_) { - nextWriteIdx = 0; - } - while (nextWriteIdx == readIdxCache_) { - readIdxCache_ = readIdx_.load(std::memory_order_acquire); - } - new(&slots_[writeIdx + kPadding]) T(std::forward(args)...); - writeIdx_.store(nextWriteIdx, std::memory_order_release); - } - - template - bool try_emplace(Args &&...args) - noexcept( - std::is_nothrow_constructible::value) { - static_assert(std::is_constructible::value, - "T must be constructible with Args&&..."); - auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); - auto nextWriteIdx = writeIdx + 1; - if (nextWriteIdx == capacity_) { - nextWriteIdx = 0; - } - if (nextWriteIdx == readIdxCache_) { - readIdxCache_ = readIdx_.load(std::memory_order_acquire); - if (nextWriteIdx == readIdxCache_) { - return false; - } - } - new(&slots_[writeIdx + kPadding]) T(std::forward(args)...); - writeIdx_.store(nextWriteIdx, std::memory_order_release); - return true; - } - - void push(const T &v) - noexcept(std::is_nothrow_copy_constructible::value) { - static_assert(std::is_copy_constructible::value, - "T must be copy constructible"); - emplace(v); - // g_con.notify_all(); - } - - template::value>::type> - void push(P &&v) - noexcept(std::is_nothrow_constructible::value) { - emplace(std::forward

(v)); - } - - bool - try_push(const T &v) - noexcept(std::is_nothrow_copy_constructible::value) { - static_assert(std::is_copy_constructible::value, - "T must be copy constructible"); - return try_emplace(v); - } - - template::value>::type> - bool try_push(P &&v) - noexcept(std::is_nothrow_constructible::value) { - return try_emplace(std::forward

(v)); - } - - T *front() - noexcept { - auto const readIdx = readIdx_.load(std::memory_order_relaxed); - if (readIdx == writeIdxCache_) { - writeIdxCache_ = writeIdx_.load(std::memory_order_acquire); - if (writeIdxCache_ == readIdx) { - return nullptr; - } - } - return &slots_[readIdx + kPadding]; - } - - void pop() - noexcept { - static_assert(std::is_nothrow_destructible::value, - "T must be nothrow destructible"); - auto const readIdx = readIdx_.load(std::memory_order_relaxed); - assert(writeIdx_.load(std::memory_order_acquire) != readIdx); - slots_[readIdx + kPadding].~T(); - auto nextReadIdx = readIdx + 1; - if (nextReadIdx == capacity_) { - nextReadIdx = 0; - } - readIdx_.store(nextReadIdx, std::memory_order_release); - } - - size_t size() const - noexcept { - std::ptrdiff_t diff = writeIdx_.load(std::memory_order_acquire) - - readIdx_.load(std::memory_order_acquire); - if (diff < 0) { - diff += capacity_; - } - return static_cast(diff); - } - - bool empty() const - noexcept { - - return size() == 0; - - } - - size_t capacity() const - noexcept { return capacity_ - 1; } - - private: + static_assert(alignof(SPSCQueue) == kCacheLineSize, ""); + static_assert(sizeof(SPSCQueue) >= 3 * kCacheLineSize, ""); + assert(reinterpret_cast(&readIdx_) - + reinterpret_cast(&writeIdx_) >= + static_cast(kCacheLineSize)); + } + + ~SPSCQueue() { + while (front()) { + pop(); + } + std::allocator_traits::deallocate(allocator_, slots_, + capacity_ + 2 * kPadding); + } + + // non-copyable and non-movable + SPSCQueue(const SPSCQueue &) = delete; + + SPSCQueue &operator=(const SPSCQueue &) = delete; + + std::mutex g_mutex; + condition_variable g_con; + + void wakeUpSink(void) { + //std::unique_lock lock(g_mutex); + + g_con.notify_one(); + + + //lock.unlock(); + } + + void waitForSource(void) { // printf("enter sleep\r\n"); + std::unique_lock lock(g_mutex); + g_con.wait(lock); + + // printf("end sleep\r\n"); + // pthread_mutex_lock(&mutex); + + // pthread_mutex_unlock(&mutex); + // + + + } + + template + void emplace(Args &&...args) + noexcept( + std::is_nothrow_constructible::value) { + static_assert(std::is_constructible::value, + "T must be constructible with Args&&..."); + auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); + auto nextWriteIdx = writeIdx + 1; + if (nextWriteIdx == capacity_) { + nextWriteIdx = 0; + } + while (nextWriteIdx == readIdxCache_) { + readIdxCache_ = readIdx_.load(std::memory_order_acquire); + } + new(&slots_[writeIdx + kPadding]) T(std::forward(args)...); + writeIdx_.store(nextWriteIdx, std::memory_order_release); + } + + template + bool try_emplace(Args &&...args) + noexcept( + std::is_nothrow_constructible::value) { + static_assert(std::is_constructible::value, + "T must be constructible with Args&&..."); + auto const writeIdx = writeIdx_.load(std::memory_order_relaxed); + auto nextWriteIdx = writeIdx + 1; + if (nextWriteIdx == capacity_) { + nextWriteIdx = 0; + } + if (nextWriteIdx == readIdxCache_) { + readIdxCache_ = readIdx_.load(std::memory_order_acquire); + if (nextWriteIdx == readIdxCache_) { + return false; + } + } + new(&slots_[writeIdx + kPadding]) T(std::forward(args)...); + writeIdx_.store(nextWriteIdx, std::memory_order_release); + return true; + } + + void push(const T &v) + noexcept(std::is_nothrow_copy_constructible::value) { + static_assert(std::is_copy_constructible::value, + "T must be copy constructible"); + emplace(v); + // g_con.notify_all(); + } + + template::value>::type> + void push(P &&v) + noexcept(std::is_nothrow_constructible::value) { + emplace(std::forward

(v)); + } + + bool + try_push(const T &v) + noexcept(std::is_nothrow_copy_constructible::value) { + static_assert(std::is_copy_constructible::value, + "T must be copy constructible"); + return try_emplace(v); + } + + template::value>::type> + bool try_push(P &&v) + noexcept(std::is_nothrow_constructible::value) { + return try_emplace(std::forward

(v)); + } + + T *front() + noexcept { + auto const readIdx = readIdx_.load(std::memory_order_relaxed); + if (readIdx == writeIdxCache_) { + writeIdxCache_ = writeIdx_.load(std::memory_order_acquire); + if (writeIdxCache_ == readIdx) { + return nullptr; + } + } + return &slots_[readIdx + kPadding]; + } + + void pop() + noexcept { + static_assert(std::is_nothrow_destructible::value, + "T must be nothrow destructible"); + auto const readIdx = readIdx_.load(std::memory_order_relaxed); + assert(writeIdx_.load(std::memory_order_acquire) != readIdx); + slots_[readIdx + kPadding].~T(); + auto nextReadIdx = readIdx + 1; + if (nextReadIdx == capacity_) { + nextReadIdx = 0; + } + readIdx_.store(nextReadIdx, std::memory_order_release); + } + + size_t size() const + noexcept { + std::ptrdiff_t diff = writeIdx_.load(std::memory_order_acquire) - + readIdx_.load(std::memory_order_acquire); + if (diff < 0) { + diff += capacity_; + } + return static_cast(diff); + } + + bool empty() const + noexcept { + + return size() == 0; + + } + + size_t capacity() const + noexcept { return capacity_ - 1; } + + private: #ifdef __cpp_lib_hardware_interference_size - static constexpr size_t kCacheLineSize = - std::hardware_destructive_interference_size; + static constexpr size_t kCacheLineSize = + std::hardware_destructive_interference_size; #else - static constexpr size_t - kCacheLineSize = 64; + static constexpr size_t + kCacheLineSize = 64; #endif - // Padding to avoid false sharing between slots_ and adjacent allocations - static constexpr size_t - kPadding = (kCacheLineSize - 1) / sizeof(T) + 1; + // Padding to avoid false sharing between slots_ and adjacent allocations + static constexpr size_t + kPadding = (kCacheLineSize - 1) / sizeof(T) + 1; - private: - size_t capacity_; - T *slots_; + private: + size_t capacity_; + T *slots_; #if defined(__has_cpp_attribute) && __has_cpp_attribute(no_unique_address) - Allocator allocator_ [[no_unique_address]]; + Allocator allocator_ [[no_unique_address]]; #else - Allocator allocator_; + Allocator allocator_; #endif - // Align to cache line size in order to avoid false sharing - // readIdxCache_ and writeIdxCache_ is used to reduce the amount of cache - // coherency traffic - alignas(kCacheLineSize) - std::atomic writeIdx_ = {0}; - alignas(kCacheLineSize) - size_t readIdxCache_ = 0; - alignas(kCacheLineSize) - std::atomic readIdx_ = {0}; - alignas(kCacheLineSize) - size_t writeIdxCache_ = 0; - - // Padding to avoid adjacent allocations to share cache line with - // writeIdxCache_ - char padding_[kCacheLineSize - sizeof(writeIdxCache_)]; -}; + // Align to cache line size in order to avoid false sharing + // readIdxCache_ and writeIdxCache_ is used to reduce the amount of cache + // coherency traffic + alignas(kCacheLineSize) + std::atomic writeIdx_ = {0}; + alignas(kCacheLineSize) + size_t readIdxCache_ = 0; + alignas(kCacheLineSize) + std::atomic readIdx_ = {0}; + alignas(kCacheLineSize) + size_t writeIdxCache_ = 0; + + // Padding to avoid adjacent allocations to share cache line with + // writeIdxCache_ + char padding_[kCacheLineSize - sizeof(writeIdxCache_)]; + }; } // namespace rigtorp \ No newline at end of file diff --git a/include/Utils/ThreadPerf.hpp b/include/Utils/ThreadPerf.hpp index dab3d800..2f907a65 100644 --- a/include/Utils/ThreadPerf.hpp +++ b/include/Utils/ThreadPerf.hpp @@ -6,6 +6,7 @@ #ifndef INTELLISTREAM_INCLUDE_UTILS_THREADPERF_H_ #define INTELLISTREAM_INCLUDE_UTILS_THREADPERF_H_ #pragma once + #include #include #include @@ -28,68 +29,69 @@ #include #include #include + #define PERF_ERROR(n) printf(n) namespace INTELLI { /** * @enum perfTrace * @brief The low level description of perf events, used inside, don't touch me UNLESS you know what you are doing */ -enum perfTrace { - /* sw tracepoints */ - COUNT_SW_CPU_CLOCK = 0, - COUNT_SW_TASK_CLOCK = 1, - COUNT_SW_CONTEXT_SWITCHES = 2, - COUNT_SW_CPU_MIGRATIONS = 3, - COUNT_SW_PAGE_FAULTS = 4, - COUNT_SW_PAGE_FAULTS_MIN = 5, - COUNT_SW_PAGE_FAULTS_MAJ = 6, - - /* hw counters */ - COUNT_HW_CPU_CYCLES = 7, - COUNT_HW_INSTRUCTIONS = 8, - COUNT_HW_CACHE_REFERENCES = 9, - COUNT_HW_CACHE_MISSES = 10, - COUNT_HW_BRANCH_INSTRUCTIONS = 11, - COUNT_HW_BRANCH_MISSES = 12, - COUNT_HW_BUS_CYCLES = 13, - - /* cache counters */ - - /* L1D - data cache */ - COUNT_HW_CACHE_L1D_LOADS = 14, - COUNT_HW_CACHE_L1D_LOADS_MISSES = 15, - COUNT_HW_CACHE_L1D_STORES = 16, - COUNT_HW_CACHE_L1D_STORES_MISSES = 17, - COUNT_HW_CACHE_L1D_PREFETCHES = 18, - - /* L1I - instruction cache */ - COUNT_HW_CACHE_L1I_LOADS = 19, - COUNT_HW_CACHE_L1I_LOADS_MISSES = 20, - - /* LL - last level cache */ - COUNT_HW_CACHE_LL_LOADS = 21, - COUNT_HW_CACHE_LL_LOADS_MISSES = 22, - COUNT_HW_CACHE_LL_STORES = 23, - COUNT_HW_CACHE_LL_STORES_MISSES = 24, - - /* DTLB - data translation lookaside buffer */ - COUNT_HW_CACHE_DTLB_LOADS = 25, - COUNT_HW_CACHE_DTLB_LOADS_MISSES = 26, - COUNT_HW_CACHE_DTLB_STORES = 27, - COUNT_HW_CACHE_DTLB_STORES_MISSES = 28, - - /* ITLB - instructiont translation lookaside buffer */ - COUNT_HW_CACHE_ITLB_LOADS = 29, - COUNT_HW_CACHE_ITLB_LOADS_MISSES = 30, - - /* BPU - branch prediction unit */ - COUNT_HW_CACHE_BPU_LOADS = 31, - COUNT_HW_CACHE_BPU_LOADS_MISSES = 32, - - /* Special internally defined "counter" */ - /* this is the _only_ floating point value */ - //LIB_SW_WALL_TIME = 33 -}; + enum perfTrace { + /* sw tracepoints */ + COUNT_SW_CPU_CLOCK = 0, + COUNT_SW_TASK_CLOCK = 1, + COUNT_SW_CONTEXT_SWITCHES = 2, + COUNT_SW_CPU_MIGRATIONS = 3, + COUNT_SW_PAGE_FAULTS = 4, + COUNT_SW_PAGE_FAULTS_MIN = 5, + COUNT_SW_PAGE_FAULTS_MAJ = 6, + + /* hw counters */ + COUNT_HW_CPU_CYCLES = 7, + COUNT_HW_INSTRUCTIONS = 8, + COUNT_HW_CACHE_REFERENCES = 9, + COUNT_HW_CACHE_MISSES = 10, + COUNT_HW_BRANCH_INSTRUCTIONS = 11, + COUNT_HW_BRANCH_MISSES = 12, + COUNT_HW_BUS_CYCLES = 13, + + /* cache counters */ + + /* L1D - data cache */ + COUNT_HW_CACHE_L1D_LOADS = 14, + COUNT_HW_CACHE_L1D_LOADS_MISSES = 15, + COUNT_HW_CACHE_L1D_STORES = 16, + COUNT_HW_CACHE_L1D_STORES_MISSES = 17, + COUNT_HW_CACHE_L1D_PREFETCHES = 18, + + /* L1I - instruction cache */ + COUNT_HW_CACHE_L1I_LOADS = 19, + COUNT_HW_CACHE_L1I_LOADS_MISSES = 20, + + /* LL - last level cache */ + COUNT_HW_CACHE_LL_LOADS = 21, + COUNT_HW_CACHE_LL_LOADS_MISSES = 22, + COUNT_HW_CACHE_LL_STORES = 23, + COUNT_HW_CACHE_LL_STORES_MISSES = 24, + + /* DTLB - data translation lookaside buffer */ + COUNT_HW_CACHE_DTLB_LOADS = 25, + COUNT_HW_CACHE_DTLB_LOADS_MISSES = 26, + COUNT_HW_CACHE_DTLB_STORES = 27, + COUNT_HW_CACHE_DTLB_STORES_MISSES = 28, + + /* ITLB - instructiont translation lookaside buffer */ + COUNT_HW_CACHE_ITLB_LOADS = 29, + COUNT_HW_CACHE_ITLB_LOADS_MISSES = 30, + + /* BPU - branch prediction unit */ + COUNT_HW_CACHE_BPU_LOADS = 31, + COUNT_HW_CACHE_BPU_LOADS_MISSES = 32, + + /* Special internally defined "counter" */ + /* this is the _only_ floating point value */ + //LIB_SW_WALL_TIME = 33 + }; /** * @ingroup INTELLI_UTIL_OTHERC20 @@ -106,307 +108,340 @@ enum perfTrace { * - call @ref end * - get the results, by @ref getResultById, @ref getResultByName, or @ref resultToConfigMap */ -class ThreadPerf { - protected: - - /** - * @class PerfPair Utils/ThreadPerf.hpp - * @brief a record pair of perf events - */ - class PerfPair { - public: - int ref; - std::string name; - uint64_t record; - PerfPair(int _ref, std::string _name) { - ref = _ref; - name = _name; - record = 0; - } - ~PerfPair() {} - }; - class PerfTool { - private: - /** - * @class PerfEntry Utils/ThreadPerf.hpp -* @brief The low-level entry record of perf, don't touch me -*/ - class PerfEntry { - public: - //struct perf_event_attr attr; - int fds; - bool addressable; - uint64_t prevVale; - PerfEntry() { addressable = false; } - ~PerfEntry() {} - }; - /* data */ - std::vector entries; - pid_t myPid; - int myCpu; - uint64_t prevValue; + class ThreadPerf { + protected: + + /** + * @class PerfPair Utils/ThreadPerf.hpp + * @brief a record pair of perf events + */ + class PerfPair { + public: + int ref; + std::string name; + uint64_t record; + + PerfPair(int _ref, std::string _name) { + ref = _ref; + name = _name; + record = 0; + } + + ~PerfPair() {} + }; + + class PerfTool { + private: + /** + * @class PerfEntry Utils/ThreadPerf.hpp + * @brief The low-level entry record of perf, don't touch me + */ + class PerfEntry { + public: + //struct perf_event_attr attr; + int fds; + bool addressable; + uint64_t prevVale; + + PerfEntry() { addressable = false; } + + ~PerfEntry() {} + }; + + /* data */ + std::vector entries; + pid_t myPid; + int myCpu; + uint64_t prevValue; #define LIBPERF_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) - /** - * @struct default_attrs - * @brief The low-level perf descriptions passed to OS - */ - struct perf_event_attr default_attrs[32] = { - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_CLOCK}, //1 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK}, //2 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES},//3 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS},//4 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS},//5 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS_MIN},//6 - {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS_MAJ},//7 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES},//8 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS},//9 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES},//10 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES},//11 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS},//12 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES},//13 - {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BUS_CYCLES},//14 - //15 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //16 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //17, no x64 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //18, no x64, no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //19, no x64 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //20 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1I | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //21, no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1I | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //22, no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //23, no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //24,no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //25 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //26 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //27, no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //28 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //29,no rk3399 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //30 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_ITLB | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - //31 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_ITLB | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, - //32 - {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_BPU | (PERF_COUNT_HW_CACHE_OP_READ << 8) - | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, - /* { .type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_BPU | (PERF_COUNT_HW_CACHE_OP_READ << 8) | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, */ - }; - long - sys_perf_event_open(struct perf_event_attr *hw_event, - pid_t pid, int cpu, int group_fd, - unsigned long flags) { - return syscall(__NR_perf_event_open, hw_event, pid, cpu, - group_fd, flags); - } - public: - /** - * @struct default_attrs - * @brief The low-level perf events send to OS call, don't touch me - */ + /** + * @struct default_attrs + * @brief The low-level perf descriptions passed to OS + */ + struct perf_event_attr default_attrs[32] = { + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_CLOCK}, //1 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_TASK_CLOCK}, //2 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CONTEXT_SWITCHES},//3 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_CPU_MIGRATIONS},//4 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS},//5 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS_MIN},//6 + {.type = PERF_TYPE_SOFTWARE, .config = PERF_COUNT_SW_PAGE_FAULTS_MAJ},//7 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CPU_CYCLES},//8 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_INSTRUCTIONS},//9 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_REFERENCES},//10 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_CACHE_MISSES},//11 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_INSTRUCTIONS},//12 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BRANCH_MISSES},//13 + {.type = PERF_TYPE_HARDWARE, .config = PERF_COUNT_HW_BUS_CYCLES},//14 + //15 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //16 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //17, no x64 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | + (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //18, no x64, no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | + (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //19, no x64 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1D | + (PERF_COUNT_HW_CACHE_OP_PREFETCH << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //20 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1I | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //21, no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_L1I | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //22, no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //23, no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //24,no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //25 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_LL | (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //26 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | + (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //27, no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | + (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //28 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | + (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //29,no rk3399 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_DTLB | + (PERF_COUNT_HW_CACHE_OP_WRITE << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //30 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_ITLB | + (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + //31 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_ITLB | + (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, + //32 + {.type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_BPU | (PERF_COUNT_HW_CACHE_OP_READ << 8) + | (PERF_COUNT_HW_CACHE_RESULT_ACCESS << 16))}, + /* { .type = PERF_TYPE_HW_CACHE, .config = (PERF_COUNT_HW_CACHE_BPU | (PERF_COUNT_HW_CACHE_OP_READ << 8) | (PERF_COUNT_HW_CACHE_RESULT_MISS << 16))}, */ + }; + + long + sys_perf_event_open(struct perf_event_attr *hw_event, + pid_t pid, int cpu, int group_fd, + unsigned long flags) { + return syscall(__NR_perf_event_open, hw_event, pid, cpu, + group_fd, flags); + } + + public: + /** + * @struct default_attrs + * @brief The low-level perf events send to OS call, don't touch me + */ + + PerfTool() { - PerfTool() { - - } - PerfTool(pid_t pid, int cpu) { - if (pid == -1) { pid = gettid(); } - myPid = pid; - myCpu = cpu; - int nr_counters = 32; - for (int i = 0; i < nr_counters; i++) { - PerfEntry entry; - default_attrs[i].size = sizeof(struct perf_event_attr); - entry.fds = sys_perf_event_open(&default_attrs[i], pid, cpu, -1, 0); - if (entry.fds < 0) { - entry.addressable = false; - } else { - entry.addressable = true; - ioctl(entry.fds, PERF_EVENT_IOC_DISABLE); - ioctl(entry.fds, PERF_EVENT_IOC_RESET); + } + + PerfTool(pid_t pid, int cpu) { + if (pid == -1) { pid = gettid(); } + myPid = pid; + myCpu = cpu; + int nr_counters = 32; + for (int i = 0; i < nr_counters; i++) { + PerfEntry entry; + default_attrs[i].size = sizeof(struct perf_event_attr); + entry.fds = sys_perf_event_open(&default_attrs[i], pid, cpu, -1, 0); + if (entry.fds < 0) { + entry.addressable = false; + } else { + entry.addressable = true; + ioctl(entry.fds, PERF_EVENT_IOC_DISABLE); + ioctl(entry.fds, PERF_EVENT_IOC_RESET); + } + entries.push_back(entry); + } + } + + ~PerfTool() { + for (size_t i = 0; i < entries.size(); i++) { + if (entries[i].addressable == true) { + close(entries[i].fds); + //printf("close perf %d\r\n",i); + } + } + } + + // reading result from a perf trace on [ch], will return 0 if the channel is invaild + uint64_t readPerf(size_t ch) { + if (ch > entries.size()) { + return 0; + } + if (entries[ch].addressable == false) { + return 0; + } + uint64_t value; + int ru = read(entries[ch].fds, &value, sizeof(uint64_t)); + if (ru < 0) { + PERF_ERROR("invalid read"); + } + return value; + } + + // start the perf trace on [ch] + int startPerf(size_t ch) { + ioctl(entries[ch].fds, PERF_EVENT_IOC_ENABLE); + return 1; + } + + // st the perf trace on [ch] + int stopPerf(size_t ch) { + if (ch > entries.size()) { + return -1; + } + if (entries[ch].addressable == false) { + return -1; + } + ioctl(entries[ch].fds, PERF_EVENT_IOC_DISABLE); + ioctl(entries[ch].fds, PERF_EVENT_IOC_RESET); + return 1; + } + + //check the addressability of [ch] + bool isValidChannel(size_t ch) { + if (ch > entries.size()) { + return false; + } + return entries[ch].addressable; + } + }; + + typedef std::shared_ptr PerfToolPtr; + + std::string getChValueAsString(size_t idx); + + PerfToolPtr myTool; + /** + * @brief To contain all of your interested perf events + */ + std::vector pairs; + struct timeval tstart, tend; + uint64_t latency; + public: + ThreadPerf() {} + + /** + * @brief To setup this perf to specific cpu + * @param cpu >=0 for any specific cpu, =-1 for all cpu that may run this process + */ + ThreadPerf(int cpu) { + myTool = std::make_shared(0, cpu); + //setPerfList(); + } + + /** + * @brief To set up all your interest perf events + */ + virtual void setPerfList() { + pairs.push_back(PerfPair(COUNT_HW_CPU_CYCLES, "cpuCycle")); + pairs.push_back(PerfPair(COUNT_HW_INSTRUCTIONS, "instructions")); + pairs.push_back(PerfPair(COUNT_HW_CACHE_REFERENCES, "cacheRefs")); + pairs.push_back(PerfPair(COUNT_HW_CACHE_MISSES, "cacheMiss")); + pairs.push_back(PerfPair(COUNT_SW_CPU_CLOCK, "cpuClock")); + pairs.push_back(PerfPair(COUNT_SW_TASK_CLOCK, "taskClock")); + //pairs.push_back(PerfPair(COUNT_HW_CACHE_L1I_LOADS_MISSES, "L1ILoadMiss")); } - entries.push_back(entry); - } - } - ~PerfTool() { - for (size_t i = 0; i < entries.size(); i++) { - if (entries[i].addressable == true) { - close(entries[i].fds); - //printf("close perf %d\r\n",i); + + /** + * @brief To start perf tracing + * @note call after @ref setPerfList + */ + void start() { + for (size_t i = 0; i < pairs.size(); i++) { + myTool->startPerf(pairs[i].ref); + } + gettimeofday(&tstart, NULL); + } + + /** + * @brief To end a perf tracing + */ + void end() { + gettimeofday(&tend, NULL); + for (size_t i = 0; i < pairs.size(); i++) { + pairs[i].record = myTool->readPerf(pairs[i].ref); + myTool->stopPerf(pairs[i].ref); + } + } + + /** + * @brief Get the perf result by its index of @ref PerfPair + * @param idx The index + * @return The value + */ + uint64_t getResultById(size_t idx) { + if (idx > pairs.size()) { + return 0; + } + size_t ch = pairs[idx].ref; + if (myTool->isValidChannel(ch) == false) { + return 0; + } + return pairs[idx].record; + } + + /** + * @brief Get the perf result by its name of of @ref PerfPair + * @param idx The index + * @return The value + */ + uint64_t getResultByName(string name) { + for (size_t i = 0; i < pairs.size(); i++) { + if (pairs[i].name == name) { + return pairs[i].record; + } + } + return 0; + } + + size_t timeLastUs(struct timeval ts, struct timeval te) { + int64_t s0, e0, s1, e1; + s0 = ts.tv_sec; + s1 = ts.tv_usec; + e0 = te.tv_sec; + e1 = te.tv_usec; + return 1000000 * (e0 - s0) + (e1 - s1); } - } - } - // reading result from a perf trace on [ch], will return 0 if the channel is invaild - uint64_t readPerf(size_t ch) { - if (ch > entries.size()) { - return 0; - } - if (entries[ch].addressable == false) { - return 0; - } - uint64_t value; - int ru = read(entries[ch].fds, &value, sizeof(uint64_t)); - if (ru < 0) { - PERF_ERROR("invalid read"); - } - return value; - } - // start the perf trace on [ch] - int startPerf(size_t ch) { - ioctl(entries[ch].fds, PERF_EVENT_IOC_ENABLE); - return 1; - } - // st the perf trace on [ch] - int stopPerf(size_t ch) { - if (ch > entries.size()) { - return -1; - } - if (entries[ch].addressable == false) { - return -1; - } - ioctl(entries[ch].fds, PERF_EVENT_IOC_DISABLE); - ioctl(entries[ch].fds, PERF_EVENT_IOC_RESET); - return 1; - } - //check the addressability of [ch] - bool isValidChannel(size_t ch) { - if (ch > entries.size()) { - return false; - } - return entries[ch].addressable; - } - }; - typedef std::shared_ptr PerfToolPtr; - std::string getChValueAsString(size_t idx); - - PerfToolPtr myTool; - /** - * @brief To contain all of your interested perf events - */ - std::vector pairs; - struct timeval tstart, tend; - uint64_t latency; - public: - ThreadPerf() {} - /** - * @brief To setup this perf to specific cpu - * @param cpu >=0 for any specific cpu, =-1 for all cpu that may run this process - */ - ThreadPerf(int cpu) { - myTool = std::make_shared(0, cpu); - //setPerfList(); - } - /** - * @brief To set up all your interest perf events - */ - virtual void setPerfList() { - pairs.push_back(PerfPair(COUNT_HW_CPU_CYCLES, "cpuCycle")); - pairs.push_back(PerfPair(COUNT_HW_INSTRUCTIONS, "instructions")); - pairs.push_back(PerfPair(COUNT_HW_CACHE_REFERENCES, "cacheRefs")); - pairs.push_back(PerfPair(COUNT_HW_CACHE_MISSES, "cacheMiss")); - pairs.push_back(PerfPair(COUNT_SW_CPU_CLOCK, "cpuClock")); - pairs.push_back(PerfPair(COUNT_SW_TASK_CLOCK, "taskClock")); - //pairs.push_back(PerfPair(COUNT_HW_CACHE_L1I_LOADS_MISSES, "L1ILoadMiss")); - } - /** - * @brief To start perf tracing - * @note call after @ref setPerfList - */ - void start() { - for (size_t i = 0; i < pairs.size(); i++) { - myTool->startPerf(pairs[i].ref); - } - gettimeofday(&tstart, NULL); - } - /** - * @brief To end a perf tracing - */ - void end() { - gettimeofday(&tend, NULL); - for (size_t i = 0; i < pairs.size(); i++) { - pairs[i].record = myTool->readPerf(pairs[i].ref); - myTool->stopPerf(pairs[i].ref); - } - } - /** - * @brief Get the perf result by its index of @ref PerfPair - * @param idx The index - * @return The value - */ - uint64_t getResultById(size_t idx) { - if (idx > pairs.size()) { - return 0; - } - size_t ch = pairs[idx].ref; - if (myTool->isValidChannel(ch) == false) { - return 0; - } - return pairs[idx].record; - } - /** - * @brief Get the perf result by its name of of @ref PerfPair - * @param idx The index - * @return The value - */ - uint64_t getResultByName(string name) { - for (size_t i = 0; i < pairs.size(); i++) { - if (pairs[i].name == name) { - return pairs[i].record; - } - } - return 0; - } - size_t timeLastUs(struct timeval ts, struct timeval te) { - int64_t s0, e0, s1, e1; - s0 = ts.tv_sec; - s1 = ts.tv_usec; - e0 = te.tv_sec; - e1 = te.tv_usec; - return 1000000 * (e0 - s0) + (e1 - s1); - } - /** - * @brief convert the perf result into a @ref ConfigMap - * @return The key-value store of configMap, in shared pointer - * @note must stop after calling stop - */ - ConfigMapPtr resultToConfigMap() { - ConfigMapPtr ru = newConfigMap(); - for (size_t i = 0; i < pairs.size(); i++) { - ru->edit(pairs[i].name, (uint64_t) pairs[i].record); - } - //additional test the elapsed time - ru->edit("perfElapsedTime", (uint64_t) timeLastUs(tstart, tend)); - return ru; - } -}; + + /** + * @brief convert the perf result into a @ref ConfigMap + * @return The key-value store of configMap, in shared pointer + * @note must stop after calling stop + */ + ConfigMapPtr resultToConfigMap() { + ConfigMapPtr ru = newConfigMap(); + for (size_t i = 0; i < pairs.size(); i++) { + ru->edit(pairs[i].name, (uint64_t) pairs[i].record); + } + //additional test the elapsed time + ru->edit("perfElapsedTime", (uint64_t) timeLastUs(tstart, tend)); + return ru; + } + }; } #endif //INTELLISTREAM_INCLUDE_UTILS_THREADPERF_H_ diff --git a/include/Utils/UtilityFunctions.h b/include/Utils/UtilityFunctions.h index a57d467c..523aa3d6 100755 --- a/include/Utils/UtilityFunctions.h +++ b/include/Utils/UtilityFunctions.h @@ -9,6 +9,7 @@ #include #include #include +#include //#include #include @@ -20,69 +21,104 @@ #include namespace INTELLI { -typedef std::shared_ptr> BarrierPtr; + typedef std::shared_ptr> BarrierPtr; #define TIME_LAST_UNIT_MS 1000 #define TIME_LAST_UNIT_US 1000000 /** * @defgroup */ -class UtilityFunctions { - - public: - UtilityFunctions(); - - //static std::shared_ptr> createBarrier(int count); - - // static void timerStart(Result &result); - - //static void timerEnd(Result &result); - - static size_t timeLast(struct timeval past, struct timeval now); - - static size_t timeLastUs(struct timeval past); - - //bind to CPU - /*! - bind to CPU - \li bind the thread to core according to id - \param id the core you plan to bind, -1 means let os decide - \return cpuId, the real core that bind to - \todo unsure about hyper-thread - */ - static int bind2Core(int id); - //partition - - static std::vector avgPartitionSizeFinal(size_t inS, std::vector partitionWeight); - - static std::vector weightedPartitionSizeFinal(size_t inS, std::vector partitionWeight); - - static size_t to_periodical(size_t val, size_t period) { - if (val < period) { - return val; - } - size_t ru = val % period; - /* if(ru==0) - { - return period; - }*/ - return ru; - } - static double relativeFrobeniusNorm(torch::Tensor A, torch::Tensor B) { - torch::Tensor error = A - B; - double frobeniusNormA = A.norm().item(); - double frobeniusNormError = error.norm().item(); - - return frobeniusNormError / frobeniusNormA; - } - static double errorBoundRatio(torch::Tensor A, torch::Tensor B) { - torch::Tensor error = A - B; - double frobeniusNormA = A.norm().item(); - double frobeniusNormB = B.norm().item(); - double frobeniusNormError = error.norm().item(); - - return frobeniusNormError / frobeniusNormA / frobeniusNormB; - } -}; + class UtilityFunctions { + + public: + UtilityFunctions(); + + //static std::shared_ptr> createBarrier(int count); + + // static void timerStart(Result &result); + + //static void timerEnd(Result &result); + + static size_t timeLast(struct timeval past, struct timeval now); + + static size_t timeLastUs(struct timeval past); + + //bind to CPU + /*! + bind to CPU + \li bind the thread to core according to id + \param id the core you plan to bind, -1 means let os decide + \return cpuId, the real core that bind to + \todo unsure about hyper-thread + */ + static int bind2Core(int id); + //partition + + static std::vector avgPartitionSizeFinal(size_t inS, std::vector partitionWeight); + + static std::vector weightedPartitionSizeFinal(size_t inS, std::vector partitionWeight); + + static size_t to_periodical(size_t val, size_t period) { + if (val < period) { + return val; + } + size_t ru = val % period; + /* if(ru==0) + { + return period; + }*/ + return ru; + } + + static double relativeFrobeniusNorm(torch::Tensor A, torch::Tensor B) { + torch::Tensor error = A - B; + double frobeniusNormA = A.norm().item(); + double frobeniusNormError = error.norm().item(); + + return frobeniusNormError / frobeniusNormA; + } + + static double relativeSpectralNormError(torch::Tensor A, torch::Tensor B) { + + torch::Tensor UA; + torch::Tensor SA; + torch::Tensor VhA; + std::tie(UA, SA, VhA) = torch::linalg::svd(A, false, c10::nullopt); + torch::Tensor UError; + torch::Tensor SError; + torch::Tensor VhError; + std::tie(UError, SError, VhError) = torch::linalg::svd(A-B, false, c10::nullopt); + + double SpectralNormA = SA[0].item(); + // std::cout << "SA: " << SA << " "; + double SpectralNormError = SError[0].item(); + // std::cout << "SError: " << SError << " "; + + // c10::IntArrayRef shape = eigenvaluesA.sizes(); + // std::vector shapeVec(shape.vec()); + // std::cout << "eigenvaluesA shape: "; + // for (int64_t dim : shapeVec) { + // std::cout << dim << " "; + // } + // std::cout << std::endl; + + double relativeSpectralNormError = abs(SpectralNormError/SpectralNormA); + + // std::cout << "SpectralNormA: " << SpectralNormA << " "; + // std::cout << "SpectralNormError: " << SpectralNormError << " "; + // std::cout << "relativeSpectralNormError: " << relativeSpectralNormError << " "; + + return relativeSpectralNormError; + } + + static double errorBoundRatio(torch::Tensor A, torch::Tensor B) { + torch::Tensor error = A - B; + double frobeniusNormA = A.norm().item(); + double frobeniusNormB = B.norm().item(); + double frobeniusNormError = error.norm().item(); + + return frobeniusNormError / frobeniusNormA / frobeniusNormB; + } + }; } #endif //IntelliStream_SRC_UTILS_UTILITYFUNCTIONS_HPP_ diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d2c5a6a9..358cf07f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -2,7 +2,9 @@ add_subdirectory(Utils) add_subdirectory(MatrixLoader) add_subdirectory(Parallelization) add_subdirectory(CPPAlgos) +add_subdirectory(Streaming) add_sources( myVecAdd.cpp - CLContainer.cpp + pythonBoundings.cpp ) +include_directories("../include/") diff --git a/src/CPPAlgos/AbstractCPPAlgo.cpp b/src/CPPAlgos/AbstractCPPAlgo.cpp index c78b6dea..f58efc17 100644 --- a/src/CPPAlgos/AbstractCPPAlgo.cpp +++ b/src/CPPAlgos/AbstractCPPAlgo.cpp @@ -6,23 +6,26 @@ #include #include #include + void AMMBench::AbstractCPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { - assert(cfg); + assert(cfg); } + torch::Tensor AMMBench::AbstractCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { - assert(sketchSize); - struct timeval tstart; - //INTELLI_INFO("I am mm"); - gettimeofday(&tstart,NULL); - auto C= torch::matmul(A, B); - fABTime=INTELLI::UtilityFunctions::timeLastUs(tstart); - return C; + assert(sketchSize); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + gettimeofday(&tstart, NULL); + auto C = torch::matmul(A, B); + fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart); + return C; } + INTELLI::ConfigMapPtr AMMBench::AbstractCPPAlgo::getBreakDown() { - INTELLI::ConfigMapPtr cfg = newConfigMap(); - cfg->edit("buildATime", (uint64_t)buildATime); - cfg->edit("buildBTime", (uint64_t)buildBTime); - cfg->edit("fABTime", (uint64_t)fABTime); - cfg->edit("postProcessTime",(uint64_t)postProcessTime); - return cfg; + INTELLI::ConfigMapPtr cfg = newConfigMap(); + cfg->edit("buildATime", (uint64_t) buildATime); + cfg->edit("buildBTime", (uint64_t) buildBTime); + cfg->edit("fABTime", (uint64_t) fABTime); + cfg->edit("postProcessTime", (uint64_t) postProcessTime); + return cfg; } \ No newline at end of file diff --git a/src/CPPAlgos/BCRSCPPAlgo.cpp b/src/CPPAlgos/BCRSCPPAlgo.cpp index 2bc761b2..dfa893e6 100644 --- a/src/CPPAlgos/BCRSCPPAlgo.cpp +++ b/src/CPPAlgos/BCRSCPPAlgo.cpp @@ -4,32 +4,32 @@ #include namespace AMMBench { -torch::Tensor BCRSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { - A = A.t(); - auto A_size = A.sizes(); - int64_t n = A_size[0]; - //int64_t m = A_size[1]; - int64_t k = (int64_t) k2; - assert(n == B.size(0)); - //TORCH_CHECK(n == B.size(0)); - //TORCH_CHECK(k < n); + torch::Tensor BCRSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + A = A.t(); + auto A_size = A.sizes(); + int64_t n = A_size[0]; + //int64_t m = A_size[1]; + int64_t k = (int64_t) k2; + assert(n == B.size(0)); + //TORCH_CHECK(n == B.size(0)); + //TORCH_CHECK(k < n); - //INTELLI_INFO("Running Bernoulli CRS CPP"); + //INTELLI_INFO("Running Bernoulli CRS CPP"); - // probability distribution - torch::Tensor sample = torch::rand({n}); // default: uniform - sample = sample.div(sample.sum() / k); // sum = k as per the paper + // probability distribution + torch::Tensor sample = torch::rand({n}); // default: uniform + sample = sample.div(sample.sum() / k); // sum = k as per the paper - // diagonal scaling matrix P (nxn) - torch::Tensor P = torch::diag(1.0 / torch::sqrt(sample)); + // diagonal scaling matrix P (nxn) + torch::Tensor P = torch::diag(1.0 / torch::sqrt(sample)); - // random diagonal sampling matrix K (nxn) - sample = (torch::rand({n}) < sample).to(torch::kFloat32); - torch::Tensor K = torch::diag(sample); + // random diagonal sampling matrix K (nxn) + sample = (torch::rand({n}) < sample).to(torch::kFloat32); + torch::Tensor K = torch::diag(sample); - torch::Tensor a = torch::matmul(torch::matmul(A.t(), P), K); - torch::Tensor b = torch::matmul(torch::matmul(a, K), P); + torch::Tensor a = torch::matmul(torch::matmul(A.t(), P), K); + torch::Tensor b = torch::matmul(torch::matmul(a, K), P); - return torch::matmul(b, B); -} + return torch::matmul(b, B); + } } \ No newline at end of file diff --git a/src/CPPAlgos/BetaCoOFDCPPAlgo.cpp b/src/CPPAlgos/BetaCoOFDCPPAlgo.cpp index 0b315fc8..d5cb5c3c 100644 --- a/src/CPPAlgos/BetaCoOFDCPPAlgo.cpp +++ b/src/CPPAlgos/BetaCoOFDCPPAlgo.cpp @@ -2,115 +2,118 @@ // Created by haolan on 5/30/23. // #include + torch::Scalar get_first_element(const torch::Tensor &tensor) { - if (tensor.numel() == 1) { - return tensor.item(); - } else { - return tensor[0].item(); - } + if (tensor.numel() == 1) { + return tensor.item(); + } else { + return tensor[0].item(); + } } bool is_empty_tensor(const torch::Tensor &tensor) { - return tensor.numel() == 0; + return tensor.numel() == 0; } namespace AMMBench { -torch::Tensor attenuate(float beta, const torch::Tensor &k, int l) { - return (torch::exp(k * beta / (l - 1)) - 1) / (torch::exp(torch::tensor(beta)) - 1); -} + torch::Tensor attenuate(float beta, const torch::Tensor &k, int l) { + return (torch::exp(k * beta / (l - 1)) - 1) / (torch::exp(torch::tensor(beta)) - 1); + } -torch::Tensor paramerizedReduceRank(const torch::Tensor &SV, float delta, int l, float beta) { - torch::Tensor indices = torch::arange(l, torch::kFloat32); - torch::Tensor attenuated_values = attenuate(beta, indices, l); - torch::Tensor parameterizedReduceRank = delta * attenuated_values; - torch::Tensor SV_shrunk = torch::clamp(SV - parameterizedReduceRank, 0); - return SV_shrunk; -} -void AMMBench::BetaCoOFDCPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { - algoBeta=cfg->tryDouble("algoBeta",1.0,true); -} -torch::Tensor BetaCoOFDCPPAlgo::amm(const torch::Tensor A, const torch::Tensor B, uint64_t l2) { - torch::Tensor B_t = B.t(); - float beta =algoBeta; - INTELLI_INFO("BETA-COOCURRING, use beta "+ to_string(beta)); - TORCH_CHECK(A.size(1) == B_t.size(1), "Shapes of A and B are incompatible"); - int64_t mx = A.size(0); - int64_t my = B_t.size(0); - int64_t n = A.size(1); - int64_t l = (int64_t) l2; - // Initialize sketch matrices - torch::Tensor BX = torch::zeros({mx, l}); - torch::Tensor BY = torch::zeros({my, l}); - - // The first l iterations - for (int64_t i = 0; i < l; ++i) { - BX.slice(1, i, i + 1) = A.slice(1, i, i + 1); - BY.slice(1, i, i + 1) = B_t.slice(1, i, i + 1); - } - - torch::Tensor zero_columns = torch::tensor({0}); - zero_columns = zero_columns.slice(0, 1); - - // Iteration l to n: insert if available, else shrink sketch matrices - for (int64_t i = l; i < n; ++i) { - // Acquire the index of a zero-valued column - if (!is_empty_tensor(zero_columns)) { - int idx = get_first_element(zero_columns).toInt(); - BX.slice(1, idx, idx + 1) = A.slice(1, i, i + 1); - BY.slice(1, idx, idx + 1) = B_t.slice(1, i, i + 1); - zero_columns = zero_columns.slice(0, 1); + torch::Tensor paramerizedReduceRank(const torch::Tensor &SV, float delta, int l, float beta) { + torch::Tensor indices = torch::arange(l, torch::kFloat32); + torch::Tensor attenuated_values = attenuate(beta, indices, l); + torch::Tensor parameterizedReduceRank = delta * attenuated_values; + torch::Tensor SV_shrunk = torch::clamp(SV - parameterizedReduceRank, 0); + return SV_shrunk; } - // If no zero-valued column, shrink accordingly - else { - torch::Tensor QX, RX; - std::tie(QX, RX) = torch::linalg_qr(BX); - torch::Tensor QY, RY; - std::tie(QY, RY) = torch::linalg_qr(BY); - torch::Tensor U, SV, V; - std::tie(U, SV, V) = torch::svd(torch::matmul(RX, RY.t())); - - // Find the median of singular values - torch::Tensor S_sorted, S_indices; - std::tie(S_sorted, S_indices) = SV.sort(); - - float delta; - if (S_sorted.size(0) % 2 == 1) { - delta = S_sorted[S_sorted.size(0) / 2].item().toFloat(); - } else { - delta = torch::median(S_sorted).item().toFloat(); - } - // delta = S_sorted[0].item().toFloat(); - - // Shrink the singular values with delta - torch::Tensor SV_shrunk = paramerizedReduceRank(SV, delta, l, beta); - - // Restore SV diagonal matrix - SV = torch::diag_embed(SV_shrunk); - torch::Tensor SV_sqrt = torch::sqrt(SV); - - // Update indices of zero-valued columns - torch::Tensor zero_indices = torch::nonzero(SV_shrunk == 0).squeeze(); - zero_indices = zero_indices.view({-1}); // Convert to a 1D tensor - zero_columns = torch::cat({zero_columns, zero_indices}); - // Convert tensor to a std::vector - std::vector - vec(zero_columns.data_ptr(), zero_columns.data_ptr() + zero_columns.numel()); - - // Sort the vector - std::sort(vec.begin(), vec.end()); - - // Remove duplicates - vec.erase(std::unique(vec.begin(), vec.end()), vec.end()); - - // Convert std::vector back to a tensor - zero_columns = torch::from_blob(vec.data(), {static_cast(vec.size())}, torch::kInt64).clone(); - - // Update sketch matrices - BX = torch::matmul(torch::matmul(QX, U), SV_sqrt); - BY = torch::matmul(torch::matmul(QY, V), SV_sqrt); + + void AMMBench::BetaCoOFDCPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { + algoBeta = cfg->tryDouble("algoBeta", 1.0, true); } - } - return torch::matmul(BX, BY.t()); -} + torch::Tensor BetaCoOFDCPPAlgo::amm(const torch::Tensor A, const torch::Tensor B, uint64_t l2) { + torch::Tensor B_t = B.t(); + float beta = algoBeta; + INTELLI_INFO("BETA-COOCURRING, use beta " + to_string(beta)); + TORCH_CHECK(A.size(1) == B_t.size(1), "Shapes of A and B are incompatible"); + int64_t mx = A.size(0); + int64_t my = B_t.size(0); + int64_t n = A.size(1); + int64_t l = (int64_t) l2; + // Initialize sketch matrices + torch::Tensor BX = torch::zeros({mx, l}); + torch::Tensor BY = torch::zeros({my, l}); + + // The first l iterations + for (int64_t i = 0; i < l; ++i) { + BX.slice(1, i, i + 1) = A.slice(1, i, i + 1); + BY.slice(1, i, i + 1) = B_t.slice(1, i, i + 1); + } + + torch::Tensor zero_columns = torch::tensor({0}); + zero_columns = zero_columns.slice(0, 1); + + // Iteration l to n: insert if available, else shrink sketch matrices + for (int64_t i = l; i < n; ++i) { + // Acquire the index of a zero-valued column + if (!is_empty_tensor(zero_columns)) { + int idx = get_first_element(zero_columns).toInt(); + BX.slice(1, idx, idx + 1) = A.slice(1, i, i + 1); + BY.slice(1, idx, idx + 1) = B_t.slice(1, i, i + 1); + zero_columns = zero_columns.slice(0, 1); + } + // If no zero-valued column, shrink accordingly + else { + torch::Tensor QX, RX; + std::tie(QX, RX) = torch::linalg_qr(BX); + torch::Tensor QY, RY; + std::tie(QY, RY) = torch::linalg_qr(BY); + torch::Tensor U, SV, V; + std::tie(U, SV, V) = torch::svd(torch::matmul(RX, RY.t())); + + // Find the median of singular values + torch::Tensor S_sorted, S_indices; + std::tie(S_sorted, S_indices) = SV.sort(); + + float delta; + if (S_sorted.size(0) % 2 == 1) { + delta = S_sorted[S_sorted.size(0) / 2].item().toFloat(); + } else { + delta = torch::median(S_sorted).item().toFloat(); + } + // delta = S_sorted[0].item().toFloat(); + + // Shrink the singular values with delta + torch::Tensor SV_shrunk = paramerizedReduceRank(SV, delta, l, beta); + + // Restore SV diagonal matrix + SV = torch::diag_embed(SV_shrunk); + torch::Tensor SV_sqrt = torch::sqrt(SV); + + // Update indices of zero-valued columns + torch::Tensor zero_indices = torch::nonzero(SV_shrunk == 0).squeeze(); + zero_indices = zero_indices.view({-1}); // Convert to a 1D tensor + zero_columns = torch::cat({zero_columns, zero_indices}); + // Convert tensor to a std::vector + std::vector + vec(zero_columns.data_ptr(), zero_columns.data_ptr() + zero_columns.numel()); + + // Sort the vector + std::sort(vec.begin(), vec.end()); + + // Remove duplicates + vec.erase(std::unique(vec.begin(), vec.end()), vec.end()); + + // Convert std::vector back to a tensor + zero_columns = torch::from_blob(vec.data(), {static_cast(vec.size())}, torch::kInt64).clone(); + + // Update sketch matrices + BX = torch::matmul(torch::matmul(QX, U), SV_sqrt); + BY = torch::matmul(torch::matmul(QY, V), SV_sqrt); + } + } + + return torch::matmul(BX, BY.t()); + } } \ No newline at end of file diff --git a/src/CPPAlgos/BlockLRACPPAlgo.cpp b/src/CPPAlgos/BlockLRACPPAlgo.cpp new file mode 100644 index 00000000..01356ad3 --- /dev/null +++ b/src/CPPAlgos/BlockLRACPPAlgo.cpp @@ -0,0 +1,78 @@ +// +// Created by tony on 25/05/23. +// + +#include +#include +#include +#include + +namespace AMMBench { + void AMMBench::BlockLRACPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { + ARankRatio = cfg->tryDouble("algoARankRatio", 0.5, true); + BRankRatio = cfg->tryDouble("algoBRankRatio", 0.5, true); + } + + torch::Tensor AMMBench::BlockLRACPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t blockSize) { + + // Input size and block size + uint64_t m = A.size(0); + uint64_t k = A.size(1); + uint64_t n = B.size(1); + + assert(m % blockSize == 0); + assert(k % blockSize == 0); + assert(n % blockSize == 0); + + // for each block, calculate LRA + torch::Tensor finalLRA = torch::zeros({m, n}); + + for (uint64_t I=0; I #include - +#include +#include +#include #include #include #include @@ -16,7 +18,13 @@ #include #include #include + +#include +#include +#include + #include + namespace AMMBench { AMMBench::CPPAlgoTable::CPPAlgoTable() { algoMap["mm"] = newAbstractCPPAlgo(); @@ -31,7 +39,15 @@ AMMBench::CPPAlgoTable::CPPAlgoTable() { algoMap["tugOfWar"] = newTugOfWarCPPAlgo(); algoMap["weighted-cr"] = newWeightedCRCPPAlgo(); algoMap["smp-pca"] = newSMPPCACPPAlgo(); + + algoMap["blockLRA"] = newBlockLRACPPAlgo(); + algoMap["rip"] = newRIPCPPAlgo(); + algoMap["fastjlt"] = newFastJLTCPPAlgo(); + algoMap["pq-raw"] = newProductQuantizationRawAlgo(); + algoMap["pq-hash"] = newProductQuantizationHashAlgo(); + algoMap["vq"] = newVectorQuantizationAlgo(); + algoMap["cl"]=newCLMMCPPAlgo(); -} +} } // AMMBench diff --git a/src/CPPAlgos/CRSCPPAlgo.cpp b/src/CPPAlgos/CRSCPPAlgo.cpp index 03a33021..8dac0fa8 100644 --- a/src/CPPAlgos/CRSCPPAlgo.cpp +++ b/src/CPPAlgos/CRSCPPAlgo.cpp @@ -5,29 +5,31 @@ #include namespace AMMBench { -torch::Tensor AMMBench::CRSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k) { - A = A.t(); - //INTELLI_INFO("I am CPP-CRS"); - int64_t n = A.size(0); - //int64_t m = A.size(1); - - assert(n == B.size(0)); - // Probability distribution - torch::Tensor probs = torch::ones(n) / n; // default: uniform - - // Sample k indices from range 0 to n for given probability distribution - torch::Tensor indices = torch::multinomial(probs, k, true); - - // Sample k columns from A - torch::Tensor A_sampled = A.index_select(0, indices); - int64_t ratio = std::ceil(static_cast(n) / k); - A_sampled = (A_sampled / (int) k).t().div(probs.index_select(0, torch::arange(0, n, ratio))); - - // Sample k rows from B - torch::Tensor B_sampled = B.index_select(0, indices); - - // Compute the matrix product - torch::Tensor result = torch::matmul(A_sampled, B_sampled); - return result; -} + torch::Tensor AMMBench::CRSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k) { + A = A.t(); + + //INTELLI_INFO("I am CPP-CRS"); + int64_t n = A.size(0); + //int64_t m = A.size(1); + + assert(n == B.size(0)); + // Probability distribution + torch::Tensor probs = torch::ones(n) / n; // default: uniform + + // Sample k indices from range 0 to n for given probability distribution + torch::Tensor indices = torch::multinomial(probs, k, true); + + // Sample k columns from A + torch::Tensor A_sampled = A.index_select(0, indices); + // int64_t ratio = std::ceil(static_cast(n) / k); + // A_sampled = (A_sampled / (int) k).t().div(probs.index_select(0, torch::arange(0, n, ratio))); + A_sampled = (A_sampled / (int) k).t().div(torch::ones(1) / n); + + // Sample k rows from B + torch::Tensor B_sampled = B.index_select(0, indices); + + // Compute the matrix product + torch::Tensor result = torch::matmul(A_sampled, B_sampled); + return result; + } } // AMMBench \ No newline at end of file diff --git a/src/CPPAlgos/CRSV2CPPAlgo.cpp b/src/CPPAlgos/CRSV2CPPAlgo.cpp index d8222695..bf1de09d 100644 --- a/src/CPPAlgos/CRSV2CPPAlgo.cpp +++ b/src/CPPAlgos/CRSV2CPPAlgo.cpp @@ -5,36 +5,36 @@ #include namespace AMMBench { -torch::Tensor AMMBench::CRSV2CPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { - A = A.t(); - auto A_size = A.sizes(); - int64_t n = A_size[0]; - // int64_t m = A_size[1]; - int64_t k = (int64_t) k2; - assert(n == B.size(0)); - //TORCH_CHECK(n == B.size(0)); - //TORCH_CHECK(k < n); - - //INTELLI_INFO("Running CRS V2 CPP"); - - // probability distribution - torch::Tensor sample = torch::rand({n}); // default: uniform - - // diagonal scaling matrix D (nxn) - sample = sample.div(sample.sum()); - torch::Tensor D = torch::diag(1.0 / torch::sqrt(k * sample)); - - // sampling matrix S (kxn) - torch::Tensor column_indices = torch::multinomial(sample, k, true); - torch::Tensor S = torch::zeros({k, n}); - for (int64_t row = 0; row < k; row++) { - int64_t col = column_indices[row].item(); - S[row][col] = 1; - } - - torch::Tensor a = torch::matmul(torch::matmul(A.t(), D), S.t()); - torch::Tensor b = torch::matmul(torch::matmul(a, S), D); - - return torch::matmul(b, B); -} + torch::Tensor AMMBench::CRSV2CPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + A = A.t(); + auto A_size = A.sizes(); + int64_t n = A_size[0]; + // int64_t m = A_size[1]; + int64_t k = (int64_t) k2; + assert(n == B.size(0)); + //TORCH_CHECK(n == B.size(0)); + //TORCH_CHECK(k < n); + + //INTELLI_INFO("Running CRS V2 CPP"); + + // probability distribution + torch::Tensor sample = torch::rand({n}); // default: uniform + + // diagonal scaling matrix D (nxn) + sample = sample.div(sample.sum()); + torch::Tensor D = torch::diag(1.0 / torch::sqrt(k * sample)); + + // sampling matrix S (kxn) + torch::Tensor column_indices = torch::multinomial(sample, k, true); + torch::Tensor S = torch::zeros({k, n}); + for (int64_t row = 0; row < k; row++) { + int64_t col = column_indices[row].item(); + S[row][col] = 1; + } + + torch::Tensor a = torch::matmul(torch::matmul(A.t(), D), S.t()); + torch::Tensor b = torch::matmul(torch::matmul(a, S), D); + + return torch::matmul(b, B); + } } // AMMBench diff --git a/src/CPPAlgos/CoOccurringFDCPPAlgo.cpp b/src/CPPAlgos/CoOccurringFDCPPAlgo.cpp index 0b531bd1..d0874cc9 100644 --- a/src/CPPAlgos/CoOccurringFDCPPAlgo.cpp +++ b/src/CPPAlgos/CoOccurringFDCPPAlgo.cpp @@ -4,101 +4,101 @@ #include namespace AMMBench { -torch::Scalar get_first_element(const torch::Tensor &tensor) { - if (tensor.numel() == 1) { - return tensor.item(); - } else { - return tensor[0].item(); - } -} - -bool is_empty_tensor(const torch::Tensor &tensor) { - return tensor.numel() == 0; -} - -torch::Tensor medianReduceRank(const torch::Tensor &SV, float delta) { - return torch::clamp(SV - delta, 0); -} - -torch::Tensor CoOccurringFDCPPAlgo::amm(const torch::Tensor A, const torch::Tensor B, uint64_t l2) { - torch::Tensor B_t = B.t(); - - TORCH_CHECK(A.size(1) == B_t.size(1), "Shapes of A and B are incompatible"); - int64_t mx = A.size(0); - int64_t my = B_t.size(0); - int64_t n = A.size(1); - int64_t l = (int64_t) l2; - // Initialize sketch matrices - torch::Tensor BX = torch::zeros({mx, l}); - torch::Tensor BY = torch::zeros({my, l}); - - // The first l iterations - for (int i = 0; i < l; ++i) { - BX.slice(1, i, i + 1) = A.slice(1, i, i + 1); - BY.slice(1, i, i + 1) = B_t.slice(1, i, i + 1); - } - - torch::Tensor zero_columns = torch::tensor({0}); - zero_columns = zero_columns.slice(0, 1); - - // Iteration l to n: insert if available, else shrink sketch matrices - for (int i = l; i < n; ++i) { - // Acquire the index of a zero-valued column - if (!is_empty_tensor(zero_columns)) { - int idx = get_first_element(zero_columns).toInt(); - BX.slice(1, idx, idx + 1) = A.slice(1, i, i + 1); - BY.slice(1, idx, idx + 1) = B_t.slice(1, i, i + 1); - zero_columns = zero_columns.slice(0, 1); + torch::Scalar get_first_element(const torch::Tensor &tensor) { + if (tensor.numel() == 1) { + return tensor.item(); + } else { + return tensor[0].item(); + } } - // If no zero-valued column, shrink accordingly - else { - torch::Tensor QX, RX; - std::tie(QX, RX) = torch::linalg_qr(BX); - torch::Tensor QY, RY; - std::tie(QY, RY) = torch::linalg_qr(BY); - torch::Tensor U, SV, V; - std::tie(U, SV, V) = torch::svd(torch::matmul(RX, RY.t())); - - // Find the median of singular values - torch::Tensor S_sorted, S_indices; - std::tie(S_sorted, S_indices) = SV.sort(); - - float delta; - if (S_sorted.size(0) % 2 == 1) { - delta = S_sorted[S_sorted.size(0) / 2].item().toFloat(); - } else { - delta = torch::median(S_sorted).item().toFloat(); - } - // Shrink the singular values with delta - torch::Tensor SV_shrunk = medianReduceRank(SV, delta); - - // Restore SV diagonal matrix - SV = torch::diag_embed(SV_shrunk); - torch::Tensor SV_sqrt = torch::sqrt(SV); - - // Update indices of zero-valued columns - torch::Tensor zero_indices = torch::nonzero(SV_shrunk == 0).squeeze(); - zero_columns = torch::cat({zero_columns, zero_indices}); - - // Convert tensor to a std::vector - std::vector - vec(zero_columns.data_ptr(), zero_columns.data_ptr() + zero_columns.numel()); - - // Sort the vector - std::sort(vec.begin(), vec.end()); - - // Remove duplicates - vec.erase(std::unique(vec.begin(), vec.end()), vec.end()); - - // Convert std::vector back to a tensor - zero_columns = torch::from_blob(vec.data(), {static_cast(vec.size())}, torch::kInt64).clone(); - - // Update sketch matrices - BX = torch::matmul(torch::matmul(QX, U), SV_sqrt); - BY = torch::matmul(torch::matmul(QY, V), SV_sqrt); + + bool is_empty_tensor(const torch::Tensor &tensor) { + return tensor.numel() == 0; + } + + torch::Tensor medianReduceRank(const torch::Tensor &SV, float delta) { + return torch::clamp(SV - delta, 0); } - } - return torch::matmul(BX, BY.t()); -} + torch::Tensor CoOccurringFDCPPAlgo::amm(const torch::Tensor A, const torch::Tensor B, uint64_t l2) { + torch::Tensor B_t = B.t(); + + TORCH_CHECK(A.size(1) == B_t.size(1), "Shapes of A and B are incompatible"); + int64_t mx = A.size(0); + int64_t my = B_t.size(0); + int64_t n = A.size(1); + int64_t l = (int64_t) l2; + // Initialize sketch matrices + torch::Tensor BX = torch::zeros({mx, l}); + torch::Tensor BY = torch::zeros({my, l}); + + // The first l iterations + for (int i = 0; i < l; ++i) { + BX.slice(1, i, i + 1) = A.slice(1, i, i + 1); + BY.slice(1, i, i + 1) = B_t.slice(1, i, i + 1); + } + + torch::Tensor zero_columns = torch::tensor({0}); + zero_columns = zero_columns.slice(0, 1); + + // Iteration l to n: insert if available, else shrink sketch matrices + for (int i = l; i < n; ++i) { + // Acquire the index of a zero-valued column + if (!is_empty_tensor(zero_columns)) { + int idx = get_first_element(zero_columns).toInt(); + BX.slice(1, idx, idx + 1) = A.slice(1, i, i + 1); + BY.slice(1, idx, idx + 1) = B_t.slice(1, i, i + 1); + zero_columns = zero_columns.slice(0, 1); + } + // If no zero-valued column, shrink accordingly + else { + torch::Tensor QX, RX; + std::tie(QX, RX) = torch::linalg_qr(BX); + torch::Tensor QY, RY; + std::tie(QY, RY) = torch::linalg_qr(BY); + torch::Tensor U, SV, V; + std::tie(U, SV, V) = torch::svd(torch::matmul(RX, RY.t())); + + // Find the median of singular values + torch::Tensor S_sorted, S_indices; + std::tie(S_sorted, S_indices) = SV.sort(); + + float delta; + if (S_sorted.size(0) % 2 == 1) { + delta = S_sorted[S_sorted.size(0) / 2].item().toFloat(); + } else { + delta = torch::median(S_sorted).item().toFloat(); + } + // Shrink the singular values with delta + torch::Tensor SV_shrunk = medianReduceRank(SV, delta); + + // Restore SV diagonal matrix + SV = torch::diag_embed(SV_shrunk); + torch::Tensor SV_sqrt = torch::sqrt(SV); + + // Update indices of zero-valued columns + torch::Tensor zero_indices = torch::nonzero(SV_shrunk == 0).squeeze(); + zero_columns = torch::cat({zero_columns, zero_indices}); + + // Convert tensor to a std::vector + std::vector + vec(zero_columns.data_ptr(), zero_columns.data_ptr() + zero_columns.numel()); + + // Sort the vector + std::sort(vec.begin(), vec.end()); + + // Remove duplicates + vec.erase(std::unique(vec.begin(), vec.end()), vec.end()); + + // Convert std::vector back to a tensor + zero_columns = torch::from_blob(vec.data(), {static_cast(vec.size())}, torch::kInt64).clone(); + + // Update sketch matrices + BX = torch::matmul(torch::matmul(QX, U), SV_sqrt); + BY = torch::matmul(torch::matmul(QY, V), SV_sqrt); + } + } + + return torch::matmul(BX, BY.t()); + } } \ No newline at end of file diff --git a/src/CPPAlgos/CountSketchCPPAlgo.cpp b/src/CPPAlgos/CountSketchCPPAlgo.cpp index 1d8290aa..8460600a 100644 --- a/src/CPPAlgos/CountSketchCPPAlgo.cpp +++ b/src/CPPAlgos/CountSketchCPPAlgo.cpp @@ -5,30 +5,30 @@ #include namespace AMMBench { -torch::Tensor AMMBench::CountSketchCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { - INTELLI_INFO("I am counter sketch"); - int64_t m1 = A.size(0); - int64_t n = A.size(1); - int64_t m2 = B.size(1); - int64_t k = (int64_t) k2; - // Initialize sketch matrices - torch::Tensor Ca = torch::zeros({m1, k}); - torch::Tensor Cb = torch::zeros({k, m2}); + torch::Tensor AMMBench::CountSketchCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + INTELLI_INFO("I am counter sketch"); + int64_t m1 = A.size(0); + int64_t n = A.size(1); + int64_t m2 = B.size(1); + int64_t k = (int64_t) k2; + // Initialize sketch matrices + torch::Tensor Ca = torch::zeros({m1, k}); + torch::Tensor Cb = torch::zeros({k, m2}); - torch::Tensor L = torch::randint(k, {n}); - torch::Tensor G = torch::randint(2, {n}); + torch::Tensor L = torch::randint(k, {n}); + torch::Tensor G = torch::randint(2, {n}); - // Modify the random column with random sign - for (int64_t i = 0; i < n; ++i) { - if (G[i].item() == 1) { - Ca.index({torch::indexing::Slice(), L[i]}).add_(A.index({torch::indexing::Slice(), i})); - Cb.index({L[i], torch::indexing::Slice()}).add_(B.index({i, torch::indexing::Slice()})); - } else { - Ca.index({torch::indexing::Slice(), L[i]}).sub_(A.index({torch::indexing::Slice(), i})); - Cb.index({L[i], torch::indexing::Slice()}).sub_(B.index({i, torch::indexing::Slice()})); - } - } + // Modify the random column with random sign + for (int64_t i = 0; i < n; ++i) { + if (G[i].item() == 1) { + Ca.index({torch::indexing::Slice(), L[i]}).add_(A.index({torch::indexing::Slice(), i})); + Cb.index({L[i], torch::indexing::Slice()}).add_(B.index({i, torch::indexing::Slice()})); + } else { + Ca.index({torch::indexing::Slice(), L[i]}).sub_(A.index({torch::indexing::Slice(), i})); + Cb.index({L[i], torch::indexing::Slice()}).sub_(B.index({i, torch::indexing::Slice()})); + } + } - return torch::matmul(Ca, Cb); -} + return torch::matmul(Ca, Cb); + } } // AMMBench diff --git a/src/CPPAlgos/EWSCPPAlgo.cpp b/src/CPPAlgos/EWSCPPAlgo.cpp index c2fbbff0..c6b587d9 100644 --- a/src/CPPAlgos/EWSCPPAlgo.cpp +++ b/src/CPPAlgos/EWSCPPAlgo.cpp @@ -5,30 +5,30 @@ #include namespace AMMBench { -torch::Tensor AMMBench::EWSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { - auto A_size = A.sizes(); - int64_t m = A_size[0]; - int64_t n = A_size[1]; - int64_t k = (int64_t) k2; - TORCH_CHECK(n == B.size(0)); - TORCH_CHECK(k < n); + torch::Tensor AMMBench::EWSCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + auto A_size = A.sizes(); + int64_t m = A_size[0]; + int64_t n = A_size[1]; + int64_t k = (int64_t) k2; + TORCH_CHECK(n == B.size(0)); + TORCH_CHECK(k < n); - int64_t p = B.size(1); + int64_t p = B.size(1); - // probability distribution - torch::Tensor probs = torch::rand({m, n}); + // probability distribution + torch::Tensor probs = torch::rand({m, n}); - // S matrix that samples A with scaling - torch::Tensor mask = torch::rand_like(probs) < probs; - torch::Tensor S = torch::zeros_like(A); - S.masked_scatter_(mask, A.masked_select(mask) / probs.masked_select(mask)); + // S matrix that samples A with scaling + torch::Tensor mask = torch::rand_like(probs) < probs; + torch::Tensor S = torch::zeros_like(A); + S.masked_scatter_(mask, A.masked_select(mask) / probs.masked_select(mask)); - // R matrix that samples B with scaling - torch::Tensor probs_r = torch::rand({n, p}); // a different probabilistic distribution - torch::Tensor mask_r = torch::rand_like(probs_r) < probs_r; - torch::Tensor R = torch::zeros_like(B); - R.masked_scatter_(mask_r, B.masked_select(mask_r) / probs_r.masked_select(mask_r)); + // R matrix that samples B with scaling + torch::Tensor probs_r = torch::rand({n, p}); // a different probabilistic distribution + torch::Tensor mask_r = torch::rand_like(probs_r) < probs_r; + torch::Tensor R = torch::zeros_like(B); + R.masked_scatter_(mask_r, B.masked_select(mask_r) / probs_r.masked_select(mask_r)); - return torch::matmul(S, R); -} + return torch::matmul(S, R); + } } \ No newline at end of file diff --git a/src/CPPAlgos/FastJLTCPPAlgo.cpp b/src/CPPAlgos/FastJLTCPPAlgo.cpp new file mode 100644 index 00000000..798e0766 --- /dev/null +++ b/src/CPPAlgos/FastJLTCPPAlgo.cpp @@ -0,0 +1,53 @@ +// +// Created by luv on 6/18/23. +// + +#include + +namespace AMMBench { +torch::Tensor hadamard_transform_matrix(int64_t n) { + torch::Tensor H = torch::ones({1, 1}); + int64_t i = 1; + while (i < n) { + auto H_top = torch::cat({H, H}, 1); + auto H_bottom = torch::cat({H, -H}, 1); + H = torch::cat({H_top, H_bottom}, 0); + i *= 2; + } + return H; +} + +torch::Tensor FastJLTCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t d_) { + int64_t d = (int64_t)d_; + int64_t N = A.size(0); + int64_t D = A.size(1); + int64_t M = B.size(1); + + // Pad A and B for FHT + int64_t log2_D = std::ceil(std::log2(static_cast(D))); + int64_t D_pad = static_cast(std::pow(2, log2_D)); + torch::Tensor A_pad = torch::zeros({N, D_pad}); + A_pad.narrow(1, 0, D) = A; + torch::Tensor B_pad = torch::zeros({D_pad, M}); + B_pad.narrow(0, 0, D) = B; + + // Construct and apply random signs for each dimension + torch::Tensor randsigns = (torch::randint(0, 2, {D_pad}) * 2 - 1).to(torch::kFloat32); + randsigns *= 1.0 / std::sqrt(static_cast(D_pad)); + A_pad *= randsigns; + B_pad *= randsigns.view({-1, 1}); + + // Apply Fast Hadamard Transform + torch::Tensor H = hadamard_transform_matrix(D_pad); + A_pad = torch::matmul(A_pad, H); + B_pad = torch::matmul(H, B_pad); + + // Dimensionality reduction + float keep_prob = static_cast(log2_D * log2_D) / static_cast(D_pad); + torch::Tensor P = (torch::rand({D_pad, d}) > keep_prob).to(torch::kFloat32); + P *= torch::randn({d}).expand({D_pad, d}) * ((float)d / keep_prob); + P *= 1.0 / torch::norm(P, 0); + + return torch::matmul(torch::matmul(A_pad, P), torch::matmul(P.t(), B_pad)); +} +} // AMMBench diff --git a/src/CPPAlgos/INT8CPPAlgo.cpp b/src/CPPAlgos/INT8CPPAlgo.cpp index f4a485da..4fbae5cb 100644 --- a/src/CPPAlgos/INT8CPPAlgo.cpp +++ b/src/CPPAlgos/INT8CPPAlgo.cpp @@ -4,306 +4,298 @@ #include #include -torch::Tensor AMMBench::INT8CPPAlgo::fp32amm(torch::Tensor tensor1, torch::Tensor tensor2) -{ - auto A_size = tensor1.sizes(); - auto B_size =tensor2.sizes(); - struct timeval tstart; - //INTELLI_INFO("I am mm"); - gettimeofday(&tstart,NULL); - int64_t rows1 = A_size[0]; - int64_t cols1 = A_size[1]; - int64_t cols2 = B_size[1]; - /** - * @brief build A into std vector - */ - std::vector matrix1(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); - buildATime=INTELLI::UtilityFunctions::timeLastUs(tstart); - std::vector matrix2(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); - buildBTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime; - // Create the output matrix - std::vector result(rows1 * cols2, 0.0); - for (int64_t i = 0; i < rows1; ++i) { - for (int64_t j = 0; j < cols2; ++j) { - for (int64_t k = 0; k < cols1; ++k) { - result[i * cols2 + j] += matrix1[i * cols1 + k] * matrix2[k * cols2 + j]; - } + +torch::Tensor AMMBench::INT8CPPAlgo::fp32amm(torch::Tensor tensor1, torch::Tensor tensor2) { + auto A_size = tensor1.sizes(); + auto B_size = tensor2.sizes(); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + gettimeofday(&tstart, NULL); + int64_t rows1 = A_size[0]; + int64_t cols1 = A_size[1]; + int64_t cols2 = B_size[1]; + /** + * @brief build A into std vector + */ + std::vector matrix1(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); + buildATime = INTELLI::UtilityFunctions::timeLastUs(tstart); + std::vector matrix2(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); + buildBTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime; + // Create the output matrix + std::vector result(rows1 * cols2, 0.0); + for (int64_t i = 0; i < rows1; ++i) { + for (int64_t j = 0; j < cols2; ++j) { + for (int64_t k = 0; k < cols1; ++k) { + result[i * cols2 + j] += matrix1[i * cols1 + k] * matrix2[k * cols2 + j]; + } + } } - } - // exit(-1); - fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime; - torch::Tensor resultTensor = torch::from_blob(result.data(), {rows1,cols2}); - //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); - postProcessTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime-fABTime; + // exit(-1); + fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime; + torch::Tensor resultTensor = torch::from_blob(result.data(), {rows1, cols2}); + //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); + postProcessTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime - fABTime; - return resultTensor.clone(); + return resultTensor.clone(); } -static float getScaleingFactor( float scalingBase,std::vector matrix1Float) -{ - float maxa=*std::max_element(matrix1Float.begin(), matrix1Float.end()); - float minaAbs= abs(*std::min_element(matrix1Float.begin(), matrix1Float.end())); - if (minaAbs>maxa) - { - maxa=minaAbs; - } - return scalingBase/maxa; + +static float getScaleingFactor(float scalingBase, std::vector matrix1Float) { + float maxa = *std::max_element(matrix1Float.begin(), matrix1Float.end()); + float minaAbs = abs(*std::min_element(matrix1Float.begin(), matrix1Float.end())); + if (minaAbs > maxa) { + maxa = minaAbs; + } + return scalingBase / maxa; } -torch::Tensor AMMBench::INT8CPPAlgo::int4amm(torch::Tensor tensor1, torch::Tensor tensor2) -{ - auto A_size = tensor1.sizes(); - auto B_size =tensor2.sizes(); - struct timeval tstart; - //INTELLI_INFO("I am mm"); - gettimeofday(&tstart,NULL); - int64_t rows1 = A_size[0]; - int64_t cols1 = A_size[1]; - int64_t cols2 = B_size[1]; - /** - * @brief build A - */ - std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); - // Convert the input matrices to int8 - std::vector matrix1(rows1 * cols1); - float scale1 = getScaleingFactor(7.0,matrix1Float); - for (int i = 0; i < rows1 * cols1; ++i) { - matrix1[i] = static_cast(matrix1Float[i] * scale1); - } - buildATime=INTELLI::UtilityFunctions::timeLastUs(tstart); +torch::Tensor AMMBench::INT8CPPAlgo::int4amm(torch::Tensor tensor1, torch::Tensor tensor2) { + auto A_size = tensor1.sizes(); + auto B_size = tensor2.sizes(); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + gettimeofday(&tstart, NULL); + int64_t rows1 = A_size[0]; + int64_t cols1 = A_size[1]; + int64_t cols2 = B_size[1]; + /** + * @brief build A + */ + std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); + // Convert the input matrices to int8 + std::vector matrix1(rows1 * cols1); - /** - * @brief build B - */ - std::vector matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); - std::vector matrix2(cols1 * cols2); - float scale2 = getScaleingFactor(7.0,matrix2Float); - for (int i = 0; i < cols1 * cols2; ++i) { - matrix2[i] = static_cast(matrix2Float[i] * scale2); - } - buildBTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime; - /** - * @brief run fAB - */ - std::vector result(rows1 * cols2, 0); + float scale1 = getScaleingFactor(7.0, matrix1Float); + for (int i = 0; i < rows1 * cols1; ++i) { + matrix1[i] = static_cast(matrix1Float[i] * scale1); + } + buildATime = INTELLI::UtilityFunctions::timeLastUs(tstart); - // Perform matrix multiplication using nested loops - for (int64_t i = 0; i < rows1; ++i) { - for (int64_t j = 0; j < cols2; ++j) { - int16_t sRu=0; - int64_t k=0; - /** - * @brief 32/4=8, so we simulate a 8-way SHARED-NOTHING speed up in one loop - */ - while ( k < cols1-8) { - int8_t tru1=matrix1[i * cols1 + k]*matrix2[k * cols2 + j]; - int8_t tru2=matrix1[i * cols1 + k+1]*matrix2[(k+1) * cols2 + j]; - int8_t tru3=matrix1[i * cols1 + (k+2)]*matrix2[(k+2) * cols2 + j]; - int8_t tru4=matrix1[i * cols1 + (k+3)]*matrix2[(k+3) * cols2 + j]; - // - int8_t tru5=matrix1[i * cols1 + k+4]*matrix2[(k+4) * cols2 + j]; - int8_t tru6=matrix1[i * cols1 + k+5]*matrix2[(k+5) * cols2 + j]; - int8_t tru7=matrix1[i * cols1 + (k+6)]*matrix2[(k+6) * cols2 + j]; - int8_t tru8=matrix1[i * cols1 + (k+7)]*matrix2[(k+7) * cols2 + j]; - sRu+= tru1+tru2+tru3+tru4+tru5+tru6+tru7+tru8; - k+=8; - } - for(int64_t k2=k;k2 matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); + std::vector matrix2(cols1 * cols2); + float scale2 = getScaleingFactor(7.0, matrix2Float); + for (int i = 0; i < cols1 * cols2; ++i) { + matrix2[i] = static_cast(matrix2Float[i] * scale2); } - } - fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime; + buildBTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime; + /** + * @brief run fAB + */ + std::vector result(rows1 * cols2, 0); - // Scale the result back to int8 - /** - * @brief post process - */ - std::vector resultFP32(rows1 * cols2); - float scaleResult = 1.0 / (scale1 * scale2); - for (int i = 0; i < rows1 * cols2; ++i) { - resultFP32[i] = static_cast(result[i] * scaleResult); - } - torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1,cols2}); - //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); - postProcessTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime-fABTime; + // Perform matrix multiplication using nested loops + for (int64_t i = 0; i < rows1; ++i) { + for (int64_t j = 0; j < cols2; ++j) { + int16_t sRu = 0; + int64_t k = 0; + /** + * @brief 32/4=8, so we simulate a 8-way SHARED-NOTHING speed up in one loop + */ + while (k < cols1 - 8) { + int8_t tru1 = matrix1[i * cols1 + k] * matrix2[k * cols2 + j]; + int8_t tru2 = matrix1[i * cols1 + k + 1] * matrix2[(k + 1) * cols2 + j]; + int8_t tru3 = matrix1[i * cols1 + (k + 2)] * matrix2[(k + 2) * cols2 + j]; + int8_t tru4 = matrix1[i * cols1 + (k + 3)] * matrix2[(k + 3) * cols2 + j]; + // + int8_t tru5 = matrix1[i * cols1 + k + 4] * matrix2[(k + 4) * cols2 + j]; + int8_t tru6 = matrix1[i * cols1 + k + 5] * matrix2[(k + 5) * cols2 + j]; + int8_t tru7 = matrix1[i * cols1 + (k + 6)] * matrix2[(k + 6) * cols2 + j]; + int8_t tru8 = matrix1[i * cols1 + (k + 7)] * matrix2[(k + 7) * cols2 + j]; + sRu += tru1 + tru2 + tru3 + tru4 + tru5 + tru6 + tru7 + tru8; + k += 8; + } + for (int64_t k2 = k; k2 < cols1; ++k2) { + int16_t tru = matrix1[i * cols1 + k2] * matrix2[k2 * cols2 + j]; + sRu += tru; + } + result[i * cols2 + j] = sRu; + } + } + fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime; - return resultTensor.clone(); + // Scale the result back to int8 + /** + * @brief post process + */ + std::vector resultFP32(rows1 * cols2); + float scaleResult = 1.0 / (scale1 * scale2); + for (int i = 0; i < rows1 * cols2; ++i) { + resultFP32[i] = static_cast(result[i] * scaleResult); + } + torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1, cols2}); + //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); + postProcessTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime - fABTime; + + return resultTensor.clone(); } -torch::Tensor AMMBench::INT8CPPAlgo::int8amm(torch::Tensor tensor1, torch::Tensor tensor2) -{ - auto A_size = tensor1.sizes(); - auto B_size =tensor2.sizes(); - struct timeval tstart; - //INTELLI_INFO("I am mm"); - gettimeofday(&tstart,NULL); - int64_t rows1 = A_size[0]; - int64_t cols1 = A_size[1]; - int64_t cols2 = B_size[1]; - /** - * @brief build A - */ - std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); - // Convert the input matrices to int8 - std::vector matrix1(rows1 * cols1); - float scale1 = getScaleingFactor(127.0,matrix1Float); - for (int i = 0; i < rows1 * cols1; ++i) { - matrix1[i] = static_cast(matrix1Float[i] * scale1); - } - buildATime=INTELLI::UtilityFunctions::timeLastUs(tstart); +torch::Tensor AMMBench::INT8CPPAlgo::int8amm(torch::Tensor tensor1, torch::Tensor tensor2) { + auto A_size = tensor1.sizes(); + auto B_size = tensor2.sizes(); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + gettimeofday(&tstart, NULL); + int64_t rows1 = A_size[0]; + int64_t cols1 = A_size[1]; + int64_t cols2 = B_size[1]; + /** + * @brief build A + */ + std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); + // Convert the input matrices to int8 + std::vector matrix1(rows1 * cols1); + float scale1 = getScaleingFactor(127.0, matrix1Float); + for (int i = 0; i < rows1 * cols1; ++i) { + matrix1[i] = static_cast(matrix1Float[i] * scale1); + } + buildATime = INTELLI::UtilityFunctions::timeLastUs(tstart); - /** - * @brief build B - */ - std::vector matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); - std::vector matrix2(cols1 * cols2); - float scale2 = getScaleingFactor(127.0,matrix2Float); - for (int i = 0; i < cols1 * cols2; ++i) { - matrix2[i] = static_cast(matrix2Float[i] * scale2); - } - buildBTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime; - /** - * @brief run fAB - */ - std::vector result(rows1 * cols2, 0); + /** + * @brief build B + */ + std::vector matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); + std::vector matrix2(cols1 * cols2); + float scale2 = getScaleingFactor(127.0, matrix2Float); + for (int i = 0; i < cols1 * cols2; ++i) { + matrix2[i] = static_cast(matrix2Float[i] * scale2); + } + buildBTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime; + /** + * @brief run fAB + */ + std::vector result(rows1 * cols2, 0); - // Perform matrix multiplication using nested loops - for (int64_t i = 0; i < rows1; ++i) { - for (int64_t j = 0; j < cols2; ++j) { - int32_t sRu=0; - int64_t k=0; - /** - * @brief 32/8=4, so we simulate a 4-way SHARED-NOTHING speed up in one loop - */ - while ( k < cols1-4) { - int16_t tru1=matrix1[i * cols1 + k]*matrix2[k * cols2 + j]; - int16_t tru2=matrix1[i * cols1 + k+1]*matrix2[(k+1) * cols2 + j]; - int16_t tru3=matrix1[i * cols1 + (k+2)]*matrix2[(k+2) * cols2 + j]; - int16_t tru4=matrix1[i * cols1 + (k+3)]*matrix2[(k+3) * cols2 + j]; - sRu+= tru1+tru2+tru3+tru4; - k+=4; - } - for(int64_t k2=k;k2 resultFP32(rows1 * cols2); - float scaleResult = 1.0 / (scale1 * scale2); - for (int i = 0; i < rows1 * cols2; ++i) { - resultFP32[i] = static_cast(result[i] * scaleResult); - } - torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1,cols2}); - //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); - postProcessTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime-fABTime; + // Scale the result back to int8 + /** + * @brief post process + */ + std::vector resultFP32(rows1 * cols2); + float scaleResult = 1.0 / (scale1 * scale2); + for (int i = 0; i < rows1 * cols2; ++i) { + resultFP32[i] = static_cast(result[i] * scaleResult); + } + torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1, cols2}); + //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); + postProcessTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime - fABTime; - return resultTensor.clone(); + return resultTensor.clone(); } -torch::Tensor AMMBench::INT8CPPAlgo::int16amm(torch::Tensor tensor1, torch::Tensor tensor2) -{ - auto A_size = tensor1.sizes(); - auto B_size =tensor2.sizes(); - struct timeval tstart; - //INTELLI_INFO("I am mm"); - gettimeofday(&tstart,NULL); - int64_t rows1 = A_size[0]; - int64_t cols1 = A_size[1]; - int64_t cols2 = B_size[1]; - /** - * @brief build A - */ - std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); - // Convert the input matrices to int8 - std::vector matrix1(rows1 * cols1); - float scale1 = getScaleingFactor(32767.0,matrix1Float); - for (int i = 0; i < rows1 * cols1; ++i) { - matrix1[i] = static_cast(matrix1Float[i] * scale1); - } - buildATime=INTELLI::UtilityFunctions::timeLastUs(tstart); - /** - * @brief build B - */ - std::vector matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); - std::vector matrix2(cols1 * cols2); - float scale2 =getScaleingFactor(32767.0,matrix2Float); - for (int i = 0; i < cols1 * cols2; ++i) { - matrix2[i] = static_cast(matrix2Float[i] * scale2); - } - buildBTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime; - /** - * @brief run fAB - */ - std::vector result(rows1 * cols2, 0); +torch::Tensor AMMBench::INT8CPPAlgo::int16amm(torch::Tensor tensor1, torch::Tensor tensor2) { + auto A_size = tensor1.sizes(); + auto B_size = tensor2.sizes(); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + gettimeofday(&tstart, NULL); + int64_t rows1 = A_size[0]; + int64_t cols1 = A_size[1]; + int64_t cols2 = B_size[1]; + /** + * @brief build A + */ + std::vector matrix1Float(tensor1.data_ptr(), tensor1.data_ptr() + rows1 * cols1); + // Convert the input matrices to int8 + std::vector matrix1(rows1 * cols1); + float scale1 = getScaleingFactor(32767.0, matrix1Float); + for (int i = 0; i < rows1 * cols1; ++i) { + matrix1[i] = static_cast(matrix1Float[i] * scale1); + } + buildATime = INTELLI::UtilityFunctions::timeLastUs(tstart); - // Perform matrix multiplication using nested loops - for (int64_t i = 0; i < rows1; ++i) { - for (int64_t j = 0; j < cols2; ++j) { - int64_t sRu=0; - int64_t k=0; - /** - * @brief 32/16=2, so we simulate a 2-way SHARED-NOTHING speed up in one loop - */ - while ( k < cols1-2) { - int32_t tru1=matrix1[i * cols1 + k]*matrix2[k * cols2 + j]; - int32_t tru2=matrix1[i * cols1 + k+1]*matrix2[(k+1) * cols2 + j]; - sRu+= tru1+tru2; - k+=2; - } - for(int64_t k2=k;k2 matrix2Float(tensor2.data_ptr(), tensor2.data_ptr() + cols1 * cols2); + std::vector matrix2(cols1 * cols2); + float scale2 = getScaleingFactor(32767.0, matrix2Float); + for (int i = 0; i < cols1 * cols2; ++i) { + matrix2[i] = static_cast(matrix2Float[i] * scale2); } - } - fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime; + buildBTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime; + /** + * @brief run fAB + */ + std::vector result(rows1 * cols2, 0); - // Scale the result back to int8 - /** - * @brief post process - */ - std::vector resultFP32(rows1 * cols2); - float scaleResult = 1.0 / (scale1 * scale2); - for (int i = 0; i < rows1 * cols2; ++i) { - resultFP32[i] = static_cast(result[i] * scaleResult); - } - torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1,cols2}); - //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); - postProcessTime=INTELLI::UtilityFunctions::timeLastUs(tstart)-buildATime-buildBTime-fABTime; + // Perform matrix multiplication using nested loops + for (int64_t i = 0; i < rows1; ++i) { + for (int64_t j = 0; j < cols2; ++j) { + int64_t sRu = 0; + int64_t k = 0; + /** + * @brief 32/16=2, so we simulate a 2-way SHARED-NOTHING speed up in one loop + */ + while (k < cols1 - 2) { + int32_t tru1 = matrix1[i * cols1 + k] * matrix2[k * cols2 + j]; + int32_t tru2 = matrix1[i * cols1 + k + 1] * matrix2[(k + 1) * cols2 + j]; + sRu += tru1 + tru2; + k += 2; + } + for (int64_t k2 = k; k2 < cols1; ++k2) { + int32_t tru = matrix1[i * cols1 + k2] * matrix2[k2 * cols2 + j]; + sRu += tru; + } + result[i * cols2 + j] = sRu; + } + } + fABTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime; + + // Scale the result back to int8 + /** + * @brief post process + */ + std::vector resultFP32(rows1 * cols2); + float scaleResult = 1.0 / (scale1 * scale2); + for (int i = 0; i < rows1 * cols2; ++i) { + resultFP32[i] = static_cast(result[i] * scaleResult); + } + torch::Tensor resultTensor = torch::from_blob(resultFP32.data(), {rows1, cols2}); + //torch::Tensor resultTensor = torch::zeros({rows1,cols2}); + postProcessTime = INTELLI::UtilityFunctions::timeLastUs(tstart) - buildATime - buildBTime - fABTime; - return resultTensor.clone(); + return resultTensor.clone(); } + void AMMBench::INT8CPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { - AbstractCPPAlgo::setConfig(cfg); - fpMode=cfg->tryString("fpMode","INT8",true); + AbstractCPPAlgo::setConfig(cfg); + fpMode = cfg->tryString("fpMode", "INT8", true); } + torch::Tensor AMMBench::INT8CPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { - assert(sketchSize); - if(fpMode=="INT4") - { - return int4amm(A,B); - } - else if(fpMode=="INT8") - { - return int8amm(A,B); - } - else if(fpMode=="INT16") - { - return int16amm(A,B); - } - return fp32amm(A,B); + assert(sketchSize); + if (fpMode == "INT4") { + return int4amm(A, B); + } else if (fpMode == "INT8") { + return int8amm(A, B); + } else if (fpMode == "INT16") { + return int16amm(A, B); + } + return fp32amm(A, B); } \ No newline at end of file diff --git a/src/CPPAlgos/ProductQuantizationHash.cpp b/src/CPPAlgos/ProductQuantizationHash.cpp new file mode 100644 index 00000000..26229bb4 --- /dev/null +++ b/src/CPPAlgos/ProductQuantizationHash.cpp @@ -0,0 +1,92 @@ +// +// Created by haolan on 25/6/23. +// +#include + +int compute_hash_bucket(const std::vector& split_indices, const std::vector& split_thresholds, const torch::Tensor& x); +torch::Tensor AMMBench::ProductQuantizationHash::amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + const int D = A.size(1); + int C; + if (sketchSize < 50) C = (int) sketchSize; + C = 10; + const int D_c = D / C; + + torch::Tensor prototypes; + + torch::serialize::InputArchive archive; + archive.load_from("torchscripts/prototypes.pt"); + archive.read("prototypes", prototypes); + + std::vector A_encoded; + + std::vector split_indices = {59, 54, 24, 79}; + torch::Tensor v1; + torch::Tensor v2; + torch::Tensor v3; + torch::Tensor v4; + + v1 = torch::tensor({{2.4377}}); + v2 = torch::tensor({{2.0435, 0.0047}}); + v3 = torch::tensor({{2.5292, -0.2861, 0.5683, 0.5683}}); + v4 = torch::tensor({{2.3362, -0.2747, -1.0972, -1.0972, 0.4769, 0.4769, 0.4769, 0.4769}}); + std::vector split_thresholds = {v1, v2, v3, v4}; + + + for (int i = 0; i < A.size(0); ++i) { + torch::Tensor a = A[i]; + std::vector a_encoded; + for (int c = 0; c < C; ++c) { + //auto prototypes_c = prototypes[c]; + auto a_subvector = a.slice(0, c * D_c, (c + 1) * D_c); + + auto closest_prototype_index = compute_hash_bucket(split_indices, split_thresholds, a_subvector); + + a_encoded.push_back(torch::tensor(closest_prototype_index).unsqueeze(0)); + } + A_encoded.push_back(torch::cat(a_encoded)); + } + torch::Tensor A_encoded_tensor = torch::stack(A_encoded); + + std::vector tables; + + for (int c = 0; c < C; ++c) { + auto prototypes_c = prototypes[c]; + auto B_subspace = B.slice(0, c * D_c, (c + 1) * D_c); + + std::vector table_c; + for (int i = 0; i < prototypes_c.size(0); ++i) { + auto prototype = prototypes_c[i]; + auto dot_products = prototype.matmul(B_subspace); + table_c.push_back(dot_products); + } + tables.push_back(torch::stack(table_c)); + } + + std::vector result; + + for (int i = 0; i < A_encoded_tensor.size(0); ++i) { + auto a_encoded = A_encoded_tensor[i]; + auto row_sum = torch::zeros({B.size(1)}); + for (int c = 0; c < C; ++c) { + int prototype_index = a_encoded[c].item(); + auto table_c = tables[c]; + auto dot_products = table_c[prototype_index]; + row_sum += dot_products; + } + result.push_back(row_sum); + } + + return torch::stack(result); +} + +int compute_hash_bucket(const std::vector& split_indices, const std::vector& split_thresholds, const torch::Tensor& x) { + int i = 0; + for (int t = 0; t < 4; t++) { + int j_t = split_indices[t]; + torch::Tensor v_t = split_thresholds[t]; + float v = v_t[0][i].item(); + int b = (x[j_t].item() >= v) ? 1 : 0; + i = 2 * i - 1 + b; + } + return i; +} \ No newline at end of file diff --git a/src/CPPAlgos/ProductQuantizationRaw.cpp b/src/CPPAlgos/ProductQuantizationRaw.cpp new file mode 100644 index 00000000..56680fc1 --- /dev/null +++ b/src/CPPAlgos/ProductQuantizationRaw.cpp @@ -0,0 +1,65 @@ +// +// Created by haolan on 22/6/23. +// +#include +torch::Tensor AMMBench::ProductQuantizationRaw::amm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + const int D = A.size(1); + int C; + if (sketchSize < 50) C = (int) sketchSize; + C = 10; + const int D_c = D / C; + + torch::Tensor prototypes; + + torch::serialize::InputArchive archive; + archive.load_from("torchscripts/prototypes.pt"); + archive.read("prototypes", prototypes); + + std::vector A_encoded; + + for (int i = 0; i < A.size(0); ++i) { + torch::Tensor a = A[i]; + std::vector a_encoded; + for (int c = 0; c < C; ++c) { + auto prototypes_c = prototypes[c]; + auto a_subvector = a.slice(0, c * D_c, (c + 1) * D_c); + + auto distances = torch::norm(prototypes_c - a_subvector.expand_as(prototypes_c), 1); + auto closest_prototype_index = torch::argmin(distances); + a_encoded.push_back(closest_prototype_index.unsqueeze(0)); + } + A_encoded.push_back(torch::cat(a_encoded)); + } + torch::Tensor A_encoded_tensor = torch::stack(A_encoded); + + std::vector tables; + + for (int c = 0; c < C; ++c) { + auto prototypes_c = prototypes[c]; + auto B_subspace = B.slice(0, c * D_c, (c + 1) * D_c); + + std::vector table_c; + for (int i = 0; i < prototypes_c.size(0); ++i) { + auto prototype = prototypes_c[i]; + auto dot_products = prototype.matmul(B_subspace); + table_c.push_back(dot_products); + } + tables.push_back(torch::stack(table_c)); + } + + std::vector result; + + for (int i = 0; i < A_encoded_tensor.size(0); ++i) { + auto a_encoded = A_encoded_tensor[i]; + auto row_sum = torch::zeros({B.size(1)}); + for (int c = 0; c < C; ++c) { + int prototype_index = a_encoded[c].item(); + auto table_c = tables[c]; + auto dot_products = table_c[prototype_index]; + row_sum += dot_products; + } + result.push_back(row_sum); + } + + return torch::stack(result); +} \ No newline at end of file diff --git a/src/CPPAlgos/RIPCPPAlgo.cpp b/src/CPPAlgos/RIPCPPAlgo.cpp new file mode 100644 index 00000000..e724e804 --- /dev/null +++ b/src/CPPAlgos/RIPCPPAlgo.cpp @@ -0,0 +1,72 @@ +// +// Created by tony on 25/05/23. +// + +#include +#include + +using namespace std; +using namespace INTELLI; +using namespace torch; + +torch::Tensor createRandomTensor(int N) { + // return a tensor + torch::Tensor tensor = torch::empty(N); + tensor.uniform_(-1, 1); // Fill the tensor with values uniformly sampled from [-1, 1] + tensor.sign_(); // Set the sign of each element to either 1 or -1 + + return tensor; +} + +namespace AMMBench { + torch::Tensor AMMBench::RIPCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + + // Step 1: Input A:n1*d B:d*n2 + A = A.t(); // d*n1 + int64_t d = A.size(0); + int64_t k = (int64_t) k2; + + // Step 2: RIP matrix k*d + torch::Tensor RIP = torch::zeros({k, d}); + + // first row as Rademacher random vector, X=+1 w.p. 1/2, X=-1 w.p. 1/2 1*d + torch::Tensor firstRow = 1 / std::sqrt(k) * createRandomTensor(d); + // std::cout << RIP.sizes() << std::endl; + // std::cout << RIP << std::endl; + + // from paper: each subsequent row is created by rotating one element to the right relative to the preceding row vector d*d, then sample k rows from d*d, get RIP matrix k*d + // in implementation, we create k*d directly to avoid create such a big matrix d*d + torch::Tensor indices = torch::multinomial(torch::ones(d)/d, k, /*replacement*/false); + // std::cout << indices << std::endl; + + for (int64_t i = 0; i < k; ++i) { + RIP[i] = torch::roll(firstRow, indices[i].item()); + } + // std::cout << RIP << std::endl; + + // Step 3: Randomized column signs + torch::Tensor D = torch::diag(createRandomTensor(d)); + // std::cout << D << std::endl; + + // Step 4: Compute AVVTB + torch::Tensor A_prime = torch::matmul(torch::matmul(RIP, D), A); // A' = k*d * d*d * d*n1 = k*n1 + torch::Tensor B_prime = torch::matmul(torch::matmul(RIP, D), B); // B' = k*d * d*d * d*n2 = k*n2 + // std::cout << A_prime.sizes() << std::endl; + // std::cout << B_prime.sizes() << std::endl; + + return torch::matmul(A_prime.t(), B_prime); + } +} // AMMBench + +// GDB debug purpose +// int main() { +// // torch::manual_seed(114513); +// AMMBench::RIPCPPAlgo rip; +// auto A = torch::rand({600, 400}); +// auto B = torch::rand({400, 1000}); +// auto realC = torch::matmul(A, B); +// auto ammC = rip.amm(A, B, 20); +// double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); +// std::cout << froError << std::endl; +// // REQUIRE(froError < 0.5); +// } diff --git a/src/CPPAlgos/SMPPCACPPAlgo.cpp b/src/CPPAlgos/SMPPCACPPAlgo.cpp index 0c35161d..c4636cd7 100644 --- a/src/CPPAlgos/SMPPCACPPAlgo.cpp +++ b/src/CPPAlgos/SMPPCACPPAlgo.cpp @@ -5,32 +5,40 @@ #include namespace AMMBench { -torch::Tensor AMMBench::SMPPCACPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { - // Step 1: Input A:n1*d B:d*n2 - A = A.t(); // d*n1 - int64_t d = A.size(0); - int64_t n1 = A.size(1); - int64_t n2 = B.size(1); - int64_t k=(int64_t)k2; - // Step 2: Get sketched matrix - torch::Tensor pi = 1/std::sqrt(k) * torch::randn({k, d}); // Gaussian sketching matrix - torch::Tensor A_tilde = torch::matmul(pi, A); // k*n1 - torch::Tensor B_tilde = torch::matmul(pi, B); // k*n2 + torch::Tensor AMMBench::SMPPCACPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t k2) { + + // Step 1: Input A:n1*d B:d*n2 + A = A.t(); // d*n1 + int64_t d = A.size(0); + int64_t n1 = A.size(1); + int64_t n2 = B.size(1); + int64_t k = (int64_t) k2; - torch::Tensor A_tilde_B_tilde = torch::matmul(A_tilde.t(), B_tilde); - - // Compute column norms of A and B - torch::Tensor col_norm_A = torch::linalg::vector_norm(A, 2, {0}, false, c10::nullopt); // ||Ai|| for i in [n1] - torch::Tensor col_norm_B = torch::linalg::vector_norm(B, 2, {0}, false, c10::nullopt); // ||Bj|| for j in [n2] + // Step 2: Get sketched matrix + torch::Tensor pi = 1 / std::sqrt(k) * torch::randn({k, d}); // Gaussian sketching matrix + torch::Tensor A_tilde = torch::matmul(pi, A); // k*n1 + torch::Tensor B_tilde = torch::matmul(pi, B); // k*n2 - torch::Tensor col_norm_A_tilde = torch::linalg::vector_norm(A_tilde, 2, {0}, false, c10::nullopt); // ||Ai|| for i in [n1] - torch::Tensor col_norm_B_tilde = torch::linalg::vector_norm(B_tilde, 2, {0}, false, c10::nullopt); // ||Bj|| for j in [n2] - - // Compute M_tilde - torch::Tensor col_norm_A_col_norm_B = torch::matmul(col_norm_A.reshape({n1,1}), col_norm_B.reshape({1,n2})); - torch::Tensor col_norm_A_tilde_col_norm_B_tilde = torch::matmul(col_norm_A_tilde.reshape({n1,1}), col_norm_B_tilde.reshape({1,n2})); - torch::Tensor M_tilde = torch::div(torch::mul(A_tilde_B_tilde, col_norm_A_col_norm_B), col_norm_A_tilde_col_norm_B_tilde); + torch::Tensor A_tilde_B_tilde = torch::matmul(A_tilde.t(), B_tilde); - return M_tilde; -} + // Step 3: Compute column norms + // 3.1 column norms of A and B + torch::Tensor col_norm_A = torch::linalg::vector_norm(A, 2, {0}, false, c10::nullopt); // ||Ai|| for i in [n1] + torch::Tensor col_norm_B = torch::linalg::vector_norm(B, 2, {0}, false, c10::nullopt); // ||Bj|| for j in [n2] + + // 3.2 column norms of A_tilde and B_tilde + torch::Tensor col_norm_A_tilde = torch::linalg::vector_norm(A_tilde, 2, {0}, false, + c10::nullopt); // ||Ai|| for i in [n1] + torch::Tensor col_norm_B_tilde = torch::linalg::vector_norm(B_tilde, 2, {0}, false, + c10::nullopt); // ||Bj|| for j in [n2] + + // Step 4: Compute M_tilde + torch::Tensor col_norm_A_col_norm_B = torch::matmul(col_norm_A.reshape({n1, 1}), col_norm_B.reshape({1, n2})); + torch::Tensor col_norm_A_tilde_col_norm_B_tilde = torch::matmul(col_norm_A_tilde.reshape({n1, 1}), + col_norm_B_tilde.reshape({1, n2})); + torch::Tensor M_tilde = torch::div(torch::mul(A_tilde_B_tilde, col_norm_A_col_norm_B), + col_norm_A_tilde_col_norm_B_tilde); + + return M_tilde; + } } // AMMBench \ No newline at end of file diff --git a/src/CPPAlgos/TugOfWarCPPAlgo.cpp b/src/CPPAlgos/TugOfWarCPPAlgo.cpp index 1306612d..53e134f4 100644 --- a/src/CPPAlgos/TugOfWarCPPAlgo.cpp +++ b/src/CPPAlgos/TugOfWarCPPAlgo.cpp @@ -5,50 +5,50 @@ #include namespace AMMBench { -void TugOfWarCPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { - algoDelta = cfg->tryDouble("algoDelta",algoDelta,true); -} - -torch::Tensor TugOfWarCPPAlgo::generateTugOfWarMatrix(int64_t m, int64_t n) { - double e = 1.0 / std::sqrt(m); - torch::Tensor M = torch::randint(2, {m, n}); - return e * (2 * M - 1); -} - -torch::Tensor TugOfWarCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t l2) { - int64_t n = A.size(1); - int64_t p = B.size(1); - int64_t l = (int64_t) l2; - - double delta = algoDelta; - - int64_t i_iters = static_cast(-std::log(delta)); - int64_t j_iters = static_cast(2 * (-std::log(delta) + std::log(-std::log(delta)))); - - torch::Tensor z = torch::empty({i_iters}); - std::vector AS; - std::vector SB; - - for (int64_t i = 0; i < i_iters; ++i) { - torch::Tensor S = generateTugOfWarMatrix(l, n); - SB.push_back(S.matmul(B)); - AS.push_back(A.matmul(S.t())); - - torch::Tensor y = torch::empty({j_iters}); - - for (int64_t j = 0; j < j_iters; ++j) { - torch::Tensor Q = generateTugOfWarMatrix(16, p); - torch::Tensor X = A.matmul(B.matmul(Q.t())); - torch::Tensor X_hat = AS[i].matmul(SB[i].matmul(Q.t())); - y[j] = torch::norm(X - X_hat).pow(2); + void TugOfWarCPPAlgo::setConfig(INTELLI::ConfigMapPtr cfg) { + algoDelta = cfg->tryDouble("algoDelta", algoDelta, true); } - z[i] = at::median(y); - } + torch::Tensor TugOfWarCPPAlgo::generateTugOfWarMatrix(int64_t m, int64_t n) { + double e = 1.0 / std::sqrt(m); + torch::Tensor M = torch::randint(2, {m, n}); + return e * (2 * M - 1); + } + + torch::Tensor TugOfWarCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t l2) { + int64_t n = A.size(1); + int64_t p = B.size(1); + int64_t l = (int64_t) l2; + + double delta = algoDelta; + + int64_t i_iters = static_cast(-std::log(delta)); + int64_t j_iters = static_cast(2 * (-std::log(delta) + std::log(-std::log(delta)))); + + torch::Tensor z = torch::empty({i_iters}); + std::vector AS; + std::vector SB; - torch::Tensor z_argmin = z.argmin(); - int64_t i_star = z_argmin.item(); + for (int64_t i = 0; i < i_iters; ++i) { + torch::Tensor S = generateTugOfWarMatrix(l, n); + SB.push_back(S.matmul(B)); + AS.push_back(A.matmul(S.t())); - return AS[i_star].matmul(SB[i_star]); -} + torch::Tensor y = torch::empty({j_iters}); + + for (int64_t j = 0; j < j_iters; ++j) { + torch::Tensor Q = generateTugOfWarMatrix(16, p); + torch::Tensor X = A.matmul(B.matmul(Q.t())); + torch::Tensor X_hat = AS[i].matmul(SB[i].matmul(Q.t())); + y[j] = torch::norm(X - X_hat).pow(2); + } + + z[i] = at::median(y); + } + + torch::Tensor z_argmin = z.argmin(); + int64_t i_star = z_argmin.item(); + + return AS[i_star].matmul(SB[i_star]); + } } // AMMBench diff --git a/src/CPPAlgos/VectorQuantization.cpp b/src/CPPAlgos/VectorQuantization.cpp new file mode 100644 index 00000000..554d9ee2 --- /dev/null +++ b/src/CPPAlgos/VectorQuantization.cpp @@ -0,0 +1,536 @@ +// +// Created by haolan on 17/7/23. +// +#include + +using namespace std; + +int findClosestDivisor(int A, int B) { + for (int i = B; i >= 1; --i) { + if (A % i == 0) { + return i; + } + } + return 1; +} + +class PQMM{ +public: + torch::Tensor X, Y; // raw input matrixs MxN, NxK + int l; // size of the sub-codebook + int m; // number of sub-codebook + + std::vector columnCodeBookX, rowCodeBookY; // codebooks mxlxM, mxlxK + vector> columnCodeIndexX, rowCodeIndexY; // code indexs mxl + torch::Tensor res; + + PQMM(torch::Tensor x, torch::Tensor y, int l, int m):X(std::move(x)), Y(std::move(y)), l(l), m(m){} + ~PQMM() = default; + void constructCodeBooks(); + static torch::Tensor matrixOuterProduct(torch::Tensor A, torch::Tensor B); + //void matrixAdd(torch::Tensor &A, torch::Tensor adds); + torch::Tensor runAMM(bool training=false); + static void save3DVectorDoubleToFile(string filename, vector>>& vec); + static void save2DVectorIntToFile(string filename, vector>& vec); + static void load3DVectorDoubleFromFile(string filename, vector>>& vec); + static void load2DVectorIntFromFile(string filename, vector>& vec); +}; + + +torch::Tensor AMMBench::VectorQuantization::amm(const torch::Tensor A, const torch::Tensor B, uint64_t l){ + + torch::Tensor A1 = A.to(torch::kDouble); + torch::Tensor B1 = B.to(torch::kDouble); + + int m = A1.size(1) / findClosestDivisor(A1.size(1), l); + PQMM pqmm(A1, B1, l, m); + return pqmm.runAMM(false); +} + + + +torch::Tensor PQMM::runAMM(bool training){ + // 1. initialize result matrix + res = torch::empty({X.size(0), Y.size(1)}); + + // 2. construct codebooks + if (training) constructCodeBooks(); + else { + vector>> columnCodeBookXvec, rowCodeBookYvec; // codebooks mxlxM, mxlxK + load2DVectorIntFromFile("torchscripts/VQ/columnCodeIndexX.txt", columnCodeIndexX); + load2DVectorIntFromFile("torchscripts/VQ/rowCodeIndexY.txt", rowCodeIndexY); + this->m = columnCodeIndexX.size(); + this->l = columnCodeIndexX[0].size(); + + // For columnCodeBookX, rowCodeBookY + load3DVectorDoubleFromFile("torchscripts/VQ/columnCodeBookX.txt", columnCodeBookXvec); + load3DVectorDoubleFromFile("torchscripts/VQ/rowCodeBookY.txt", rowCodeBookYvec); + + for (vector> vec : columnCodeBookXvec){ + std::vector flat_vec; + for (const auto &v: vec) { + flat_vec.insert(flat_vec.end(), v.begin(), v.end()); + } + + // Convert the flattened 1D vector to a 1D tensor + torch::Tensor tensor = torch::tensor(flat_vec); + // Reshape the 1D tensor to 2D tensor + columnCodeBookX.push_back(tensor.view({static_cast(vec.size()), static_cast(vec[0].size())})); + } + + for (vector> vec : rowCodeBookYvec){ + std::vector flat_vec; + for (const auto &v: vec) { + flat_vec.insert(flat_vec.end(), v.begin(), v.end()); + } + + // Convert the flattened 1D vector to a 1D tensor + torch::Tensor tensor = torch::tensor(flat_vec); + // Reshape the 1D tensor to 2D tensor + rowCodeBookY.push_back(tensor.view({static_cast(vec.size()), static_cast(vec[0].size())})); + } + } + + // 3. run + for(int i = 0; i < m; ++i){ + // for every sub-codebook + for(int j = 0; j < columnCodeBookX[i].size(0); ++j){ + torch::Tensor codeX = columnCodeBookX[i][columnCodeIndexX[i][j]]; + torch::Tensor codeY = rowCodeBookY[i][rowCodeIndexY[i][j]]; + torch::Tensor outerProduct = matrixOuterProduct(codeX, codeY); // MxK + res += outerProduct; + } + } + + // 4. free memory + vector().swap(columnCodeBookX); + vector().swap(rowCodeBookY); + vector>().swap(columnCodeIndexX); + vector>().swap(rowCodeIndexY); + + return res; +} + +torch::Tensor PQMM::matrixOuterProduct(torch::Tensor A, torch::Tensor B){ + return torch::ger(A, B); // compute the outer product +} + + +void PQMM::save2DVectorIntToFile(string filename, vector>& vec) { + ofstream file(filename); + if(file.is_open()){ + for(const auto &subVec : vec){ + for(const auto &num : subVec){ + file << num << ','; + } + file << '\n'; + } + file.close(); + } else { + cout << "Unable to open file"; + } +} + +void PQMM::save3DVectorDoubleToFile(string filename, vector>>& vec) { + ofstream file(filename); + if(file.is_open()){ + for(const auto &matrix : vec){ + for(const auto &subVec : matrix){ + for(const auto &num : subVec){ + file << num << ','; + } + file << '|'; + } + file << '\n'; + } + file.close(); + } else { + cout << "Unable to open file"; + } +} + +void PQMM::load2DVectorIntFromFile(string filename, vector>& vec) { + ifstream file(filename); + if(file.is_open()){ + string line; + while(getline(file, line)){ + vector subVec; + stringstream ss(line); + string numStr; + while(getline(ss, numStr, ',')) { + subVec.push_back(stoi(numStr)); + } + vec.push_back(subVec); + } + file.close(); + } else { + cout << "Unable to open file"; + } +} + +void PQMM::load3DVectorDoubleFromFile(string filename, vector>>& vec) { + ifstream file(filename); + if(file.is_open()){ + string line; + while(getline(file, line)){ + vector> matrix; + stringstream ss(line); + string vecStr; + while(getline(ss, vecStr, '|')) { + stringstream ssVec(vecStr); + string numStr; + vector subVec; + while(getline(ssVec, numStr, ',')) { + subVec.push_back(stod(numStr)); + } + matrix.push_back(subVec); + } + vec.push_back(matrix); + } + file.close(); + } else { + cout << "Unable to open file"; + } +} + + + + +class Point +{ +public: + int clusterId; + int dimensions; + vector values; + + Point(vector feature) + { + values = feature; + dimensions = values.size(); + clusterId = 0; // Initially not assigned to any cluster + } + + int getDimensions() { return dimensions; } + + int getCluster() { return clusterId; } + + void setCluster(int val) { clusterId = val; } + + double getVal(int pos) { return values[pos]; } +}; + +class Cluster +{ +public: + int clusterId; + vector centroid; + vector points; + + Cluster(int clusterId, Point centroid) + { + this->clusterId = clusterId; + for (int i = 0; i < centroid.getDimensions(); i++) + { + this->centroid.push_back(centroid.getVal(i)); + } + this->addPoint(centroid); + } + + void addPoint(Point p) + { + p.setCluster(this->clusterId); + points.push_back(p); + } + + void removeAllPoints() { points.clear(); } + + int getId() { return clusterId; } + + Point getPoint(int pos) { return points[pos]; } + + int getSize() { return points.size(); } + + double getCentroidByPos(int pos) { return centroid[pos]; } + + void setCentroidByPos(int pos, double val) { this->centroid[pos] = val; } +}; + +class KMeans +{ +private: + int K, iters, dimensions, total_points; + vector clusters; + + vector all_points; + + void clearClusters() + { + for (int i = 0; i < K; i++) + { + clusters[i].removeAllPoints(); + } + } + + int getNearestClusterId(Point point) + { + double sum = 0.0, min_dist; + int NearestClusterId; + if(dimensions==1) { + min_dist = abs(clusters[0].getCentroidByPos(0) - point.getVal(0)); + } + else + { + for (int i = 0; i < dimensions; i++) + { + sum += pow(clusters[0].getCentroidByPos(i) - point.getVal(i), 2.0); + // sum += abs(clusters[0].getCentroidByPos(i) - point.getVal(i)); + } + min_dist = sqrt(sum); + } + NearestClusterId = clusters[0].getId(); + + for (int i = 1; i < K; i++) + { + double dist; + sum = 0.0; + + if(dimensions==1) { + dist = abs(clusters[i].getCentroidByPos(0) - point.getVal(0)); + } + else { + for (int j = 0; j < dimensions; j++) + { + sum += pow(clusters[i].getCentroidByPos(j) - point.getVal(j), 2.0); + // sum += abs(clusters[i].getCentroidByPos(j) - point.getVal(j)); + } + + dist = sqrt(sum); + // dist = sum; + } + if (dist < min_dist) + { + min_dist = dist; + NearestClusterId = clusters[i].getId(); + } + } + + return NearestClusterId; + } + +public: + KMeans(int K, int iterations, vector> raw_points) + { + this->K = K; + this->iters = iterations; + for(const auto & raw_point : raw_points){ + Point p(raw_point); + all_points.push_back(p); + } + } + + vector> getClusterCenters(){ + vector>clusterCenters; + for(int i=0; i getClusterIndexOfPoints(){ + vector clusterIndexList; + for(int i=0; i used_pointIds; + + for (int i = 1; i <= K; i++) + { + while (true) + { + int index = rand() % total_points; + + if (find(used_pointIds.begin(), used_pointIds.end(), index) == + used_pointIds.end()) + { + used_pointIds.push_back(index); + all_points[index].setCluster(i); + Cluster cluster(i, all_points[index]); + clusters.push_back(cluster); + break; + } + } + } + // cout << "Clusters initialized = " << clusters.size() << endl + // << endl; + + // cout << "Running K-Means Clustering.." << endl; + + int iter = 1; + while (true) + { + // cout << "Iter - " << iter << "/" << iters << endl; + bool done = true; + + // Add all points to their nearest cluster + // #pragma omp parallel for reduction(&&: done) num_threads(16) + for (int i = 0; i < total_points; i++) + { + int currentClusterId = all_points[i].getCluster(); + int nearestClusterId = getNearestClusterId(all_points[i]); + + if (currentClusterId != nearestClusterId) + { + all_points[i].setCluster(nearestClusterId); + done = false; + } + } + + // clear all existing clusters + clearClusters(); + + // reassign points to their new clusters + for (int i = 0; i < total_points; i++) + { + // cluster index is ID-1 + clusters[all_points[i].getCluster() - 1].addPoint(all_points[i]); + } + + // Recalculating the center of each cluster + for (int i = 0; i < K; i++) + { + int ClusterSize = clusters[i].getSize(); + + for (int j = 0; j < dimensions; j++) + { + double sum = 0.0; + if (ClusterSize > 0) + { + // #pragma omp parallel for reduction(+: sum) num_threads(16) + for (int p = 0; p < ClusterSize; p++) + { + sum += clusters[i].getPoint(p).getVal(j); + } + clusters[i].setCentroidByPos(j, sum / ClusterSize); + } + } + } + + if (done || iter >= iters) + { + // cout << "Clustering completed in iteration : " << iter << endl + // << endl; + break; + } + iter++; + } + } +}; + +void PQMM::constructCodeBooks(){ + // define max interation times for KMeans using the max value of int + int maxValue = std::numeric_limits::max(); + + X = X.contiguous(); + // Convert tensor to a 1D vector + std::vector flat_vec(X.data_ptr(), X.data_ptr() + X.numel()); + + // Reshape the 1D vector to 2D vector + std::vector> vecX; + for(int i = 0; i < X.size(0); i++) { + std::vector row(flat_vec.begin() + i*X.size(1), flat_vec.begin() + (i+1)*X.size(1)); + vecX.push_back(row); + } + + Y = Y.contiguous(); + // Convert tensor to a 1D vector + std::vector flat_vecY(Y.data_ptr(), Y.data_ptr() + Y.numel()); + + // Reshape the 1D vector to 2D vector + std::vector> vecY; + for(int i = 0; i < Y.size(0); i++) { + std::vector row(flat_vec.begin() + i*Y.size(1), flat_vec.begin() + (i+1)*Y.size(1)); + vecY.push_back(row); + } + + int d = vecX[0].size(); + int gap = ceil(d / m); + assert(gap >= l); + vector>> columnCodeBookXvec, rowCodeBookYvec; // codebooks mxlxM, mxlxK + for(int i = 0; i < m; i++){ + // 1. construct subVector of X, please note that for X we need to extract its column as the member of codebook + vector> subColumnsX; + // need to consider the size of the last block may not be larger than l + for(int j = i * gap; j < d && j < (i + 1) * gap; j++){ + vector column; + for(auto & c : vecX){ + column.push_back(c[j]); + } + subColumnsX.push_back(column); + } + + // 2. run kmeans on subVector of X + KMeans kmeansX(l, maxValue, subColumnsX); + kmeansX.run(); + vector> columnCentroidsX = kmeansX.getClusterCenters(); + + columnCodeBookXvec.push_back(columnCentroidsX); + columnCodeIndexX.push_back(kmeansX.getClusterIndexOfPoints()); + + // 3. construct subVector of Y + vector> subRowsY; + for(int j = i * gap; j < d && j < (i + 1) * gap; j++){ + subRowsY.push_back(vecY[j]); + } + + // 4. run kmeans on subVector of Y, please note that for Y we need to extract its row as the member of codebook + KMeans kmeansY(l, maxValue, subRowsY); + kmeansY.run(); + vector> rowcentroidsY = kmeansY.getClusterCenters(); + rowCodeBookYvec.push_back(rowcentroidsY); + rowCodeIndexY.push_back(kmeansY.getClusterIndexOfPoints()); + } + + // For columnCodeIndexX, rowCodeIndexY + save2DVectorIntToFile("torchscripts/VQ/columnCodeIndexX.txt", columnCodeIndexX); + save2DVectorIntToFile("torchscripts/VQ/rowCodeIndexY.txt", rowCodeIndexY); + + // For columnCodeBookX, rowCodeBookY + save3DVectorDoubleToFile("torchscripts/VQ/columnCodeBookX.txt", columnCodeBookXvec); + save3DVectorDoubleToFile("torchscripts/VQ/rowCodeBookY.txt", rowCodeBookYvec); + + // reconstruct columnCodeBookX and rowCodeBookY + for (vector> vec : columnCodeBookXvec){ + std::vector flat_vec; + for (const auto &v: vec) { + flat_vec.insert(flat_vec.end(), v.begin(), v.end()); + } + + // Convert the flattened 1D vector to a 1D tensor + torch::Tensor tensor = torch::tensor(flat_vec); + // Reshape the 1D tensor to 2D tensor + columnCodeBookX.push_back(tensor.view({static_cast(vec.size()), static_cast(vec[0].size())})); + } + + for (vector> vec : rowCodeBookYvec){ + std::vector flat_vec; + for (const auto &v: vec) { + flat_vec.insert(flat_vec.end(), v.begin(), v.end()); + } + + // Convert the flattened 1D vector to a 1D tensor + torch::Tensor tensor = torch::tensor(flat_vec); + // Reshape the 1D tensor to 2D tensor + rowCodeBookY.push_back(tensor.view({static_cast(vec.size()), static_cast(vec[0].size())})); + } + + cout << "construct codebooks done!" << endl; +} \ No newline at end of file diff --git a/src/CPPAlgos/WeightedCRCPPAlgo.cpp b/src/CPPAlgos/WeightedCRCPPAlgo.cpp index f6f056a1..93776d24 100644 --- a/src/CPPAlgos/WeightedCRCPPAlgo.cpp +++ b/src/CPPAlgos/WeightedCRCPPAlgo.cpp @@ -6,37 +6,40 @@ #include namespace AMMBench { -torch::Tensor AMMBench::WeightedCRCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t c) { - - int64_t n = A.size(1); // A: m*n, B: n*d - std::cout << "A shape: " << A.sizes() << std::endl; - std::cout << "B shape: " << B.sizes() << std::endl; - - // Probability distribution - torch::Tensor col_norm_A = torch::norm(A, /*p=*/2, /*dim=*/0); // norm on columns of A - torch::Tensor row_norm_B = torch::norm(B, /*p=*/2, /*dim=*/1); // norm on rows of B - torch::Tensor probability_distribution = torch::mul(col_norm_A, row_norm_B); - probability_distribution /= probability_distribution.sum(); - - // S - torch::Tensor sample_indices = torch::multinomial(probability_distribution, /*num_samples*/c, /*replacement*/true); - - torch::Tensor unique_indices, _, occurences; - std::tie(unique_indices, _, occurences) = at::_unique2(sample_indices, /*sorted*/false, /*return_inverse*/false, /*return_counts*/true); - - torch::Tensor S = torch::zeros({n, unique_indices.size(0)}); - torch::Tensor trial = torch::arange(unique_indices.size(0)); - S.index_put_({unique_indices, trial}, 1); - - // D - torch::Tensor D = torch::diag(torch::sqrt(occurences) / torch::sqrt(torch::tensor({static_cast(c)}, torch::kLong) * probability_distribution.index_select(0, unique_indices))); - - // ASD(SD)^TB - torch::Tensor SS = torch::matmul(S, D); - torch::Tensor C = torch::matmul(A, SS); - torch::Tensor R = torch::matmul(SS.t(), B); - torch::Tensor weighted_CR = torch::matmul(C, R); - - return weighted_CR; -} + torch::Tensor AMMBench::WeightedCRCPPAlgo::amm(torch::Tensor A, torch::Tensor B, uint64_t c) { + + int64_t n = A.size(1); // A: m*n, B: n*d + std::cout << "A shape: " << A.sizes() << std::endl; + std::cout << "B shape: " << B.sizes() << std::endl; + + // Probability distribution + // torch::Tensor col_norm_A = torch::norm(A, /*p=*/2, /*dim=*/0); // norm on columns of A + // torch::Tensor row_norm_B = torch::norm(B, /*p=*/2, /*dim=*/1); // norm on rows of B + // torch::Tensor probability_distribution = torch::mul(col_norm_A, row_norm_B); + // probability_distribution /= probability_distribution.sum(); + torch::Tensor probability_distribution = torch::ones(n) / n; + + // S + torch::Tensor sample_indices = torch::multinomial(probability_distribution, /*num_samples*/c, /*replacement*/true); + + torch::Tensor unique_indices, _, occurences; + std::tie(unique_indices, _, occurences) = at::_unique2(sample_indices, /*sorted*/false, /*return_inverse*/false, /*return_counts*/true); + + torch::Tensor S = torch::zeros({n, unique_indices.size(0)}); + torch::Tensor trial = torch::arange(unique_indices.size(0)); + S.index_put_({unique_indices, trial}, 1); + + // D + torch::Tensor D = torch::diag(torch::sqrt(occurences) / torch::sqrt( + torch::tensor({static_cast(c)}, torch::kLong) * + probability_distribution.index_select(0, unique_indices))); + + // ASD(SD)^TB + torch::Tensor SS = torch::matmul(S, D); + torch::Tensor C = torch::matmul(A, SS); + torch::Tensor R = torch::matmul(SS.t(), B); + torch::Tensor weighted_CR = torch::matmul(C, R); + + return weighted_CR; + } } // AMMBench diff --git a/src/MatrixLoader/AbstractMatrixLoader.cpp b/src/MatrixLoader/AbstractMatrixLoader.cpp index 1ea2aef0..a5a67a67 100644 --- a/src/MatrixLoader/AbstractMatrixLoader.cpp +++ b/src/MatrixLoader/AbstractMatrixLoader.cpp @@ -6,12 +6,14 @@ //do nothing in abstract class bool AMMBench::AbstractMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { - assert(cfg); - return true; + assert(cfg); + return true; } + torch::Tensor AMMBench::AbstractMatrixLoader::getA() { - return torch::rand({1, 1}); + return torch::rand({1, 1}); } + torch::Tensor AMMBench::AbstractMatrixLoader::getB() { - return torch::rand({1, 1}); + return torch::rand({1, 1}); } diff --git a/src/MatrixLoader/BetaMatrixLoader.cpp b/src/MatrixLoader/BetaMatrixLoader.cpp index 92aad95e..19d5e6b0 100644 --- a/src/MatrixLoader/BetaMatrixLoader.cpp +++ b/src/MatrixLoader/BetaMatrixLoader.cpp @@ -3,6 +3,7 @@ // #include #include + void AMMBench::BetaMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { aRow = cfg->tryU64("aRow", 100, true); aCol = cfg->tryU64("aCol", 1000, true); @@ -14,6 +15,7 @@ void AMMBench::BetaMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + "]" + " Parameter: " + to_string(a) + ", " + to_string(b)); } + void AMMBench::BetaMatrixLoader::generateAB() { torch::manual_seed(seed); @@ -40,9 +42,11 @@ bool AMMBench::BetaMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { generateAB(); return true; } + torch::Tensor AMMBench::BetaMatrixLoader::getA() { return A; } + torch::Tensor AMMBench::BetaMatrixLoader::getB() { return B; } \ No newline at end of file diff --git a/src/MatrixLoader/BinomialMatrixLoader.cpp b/src/MatrixLoader/BinomialMatrixLoader.cpp index a29e4bbe..9b363e4b 100644 --- a/src/MatrixLoader/BinomialMatrixLoader.cpp +++ b/src/MatrixLoader/BinomialMatrixLoader.cpp @@ -3,6 +3,7 @@ // #include #include + void AMMBench::BinomialMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { aRow = cfg->tryU64("aRow", 100, true); aCol = cfg->tryU64("aCol", 1000, true); @@ -14,12 +15,15 @@ void AMMBench::BinomialMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + "]" + " Parameter: " + to_string(trials) + ", " + to_string(probability)); } + void AMMBench::BinomialMatrixLoader::generateAB() { torch::manual_seed(seed); A = torch::zeros({(long) aRow, (long) aCol}); B = torch::zeros({(long) aCol, (long) bCol}); - for(int i = 0; i < trials; i++) { + + for(uint64_t i = 0; i < trials; i++) { + // Create a tensor filled with random numbers between 0 and 1 torch::Tensor rand_tensor = torch::rand({(long) aRow, (long) aCol}); @@ -27,7 +31,8 @@ void AMMBench::BinomialMatrixLoader::generateAB() { A += (rand_tensor < probability).to(torch::kInt); } - for(int i = 0; i < trials; i++) { + for(uint64_t i = 0; i < trials; i++) { + // Create a tensor filled with random numbers between 0 and 1 torch::Tensor rand_tensor = torch::rand({(long) aCol, (long) bCol}); @@ -42,9 +47,11 @@ bool AMMBench::BinomialMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { generateAB(); return true; } + torch::Tensor AMMBench::BinomialMatrixLoader::getA() { return A; } + torch::Tensor AMMBench::BinomialMatrixLoader::getB() { return B; } \ No newline at end of file diff --git a/src/MatrixLoader/CMakeLists.txt b/src/MatrixLoader/CMakeLists.txt index 5a829ca1..5c520a6f 100644 --- a/src/MatrixLoader/CMakeLists.txt +++ b/src/MatrixLoader/CMakeLists.txt @@ -7,5 +7,7 @@ add_sources( BinomialMatrixLoader.cpp PoissonMatrixLoader.cpp BetaMatrixLoader.cpp + SIFTMatrixLoader.cpp + MNISTMatrixLoader.cpp MatrixLoaderTable.cpp ) \ No newline at end of file diff --git a/src/MatrixLoader/ExponentialMatrixLoader.cpp b/src/MatrixLoader/ExponentialMatrixLoader.cpp index 8697ebfe..9467be62 100644 --- a/src/MatrixLoader/ExponentialMatrixLoader.cpp +++ b/src/MatrixLoader/ExponentialMatrixLoader.cpp @@ -3,6 +3,7 @@ // #include #include + void AMMBench::ExponentialMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { aRow = cfg->tryU64("aRow", 100, true); aCol = cfg->tryU64("aCol", 1000, true); @@ -12,6 +13,7 @@ void AMMBench::ExponentialMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + "]"); } + void AMMBench::ExponentialMatrixLoader::generateAB() { torch::manual_seed(seed); A = torch::exponential(torch::empty({(long) aRow, (long) aCol})); @@ -24,9 +26,11 @@ bool AMMBench::ExponentialMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { generateAB(); return true; } + torch::Tensor AMMBench::ExponentialMatrixLoader::getA() { return A; } + torch::Tensor AMMBench::ExponentialMatrixLoader::getB() { return B; } \ No newline at end of file diff --git a/src/MatrixLoader/GaussianMatrixLoader.cpp b/src/MatrixLoader/GaussianMatrixLoader.cpp index 0c8e3e83..6a43c296 100644 --- a/src/MatrixLoader/GaussianMatrixLoader.cpp +++ b/src/MatrixLoader/GaussianMatrixLoader.cpp @@ -3,6 +3,7 @@ // #include #include + void AMMBench::GaussianMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { aRow = cfg->tryU64("aRow", 100, true); aCol = cfg->tryU64("aCol", 1000, true); @@ -12,20 +13,24 @@ void AMMBench::GaussianMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + "]"); } + void AMMBench::GaussianMatrixLoader::generateAB() { torch::manual_seed(seed); A = torch::randn({(long) aRow, (long) aCol}); B = torch::randn({(long) aCol, (long) bCol}); } + //do nothing in abstract class bool AMMBench::GaussianMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { paraseConfig(cfg); generateAB(); return true; } + torch::Tensor AMMBench::GaussianMatrixLoader::getA() { return A; } + torch::Tensor AMMBench::GaussianMatrixLoader::getB() { return B; } \ No newline at end of file diff --git a/src/MatrixLoader/MNISTMatrixLoader.cpp b/src/MatrixLoader/MNISTMatrixLoader.cpp new file mode 100644 index 00000000..aa271322 --- /dev/null +++ b/src/MatrixLoader/MNISTMatrixLoader.cpp @@ -0,0 +1,130 @@ +// +// Created by haolan on 6/5/23. +// +#include +#include +#include + +void AMMBench::MNISTMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { + assert(cfg); // do nothing, as cfg is not needed + INTELLI_INFO("For MNIST dataset, parsing config step is skipped"); +} + +int reverseInt(int i) { + + unsigned char c1, c2, c3, c4; + + c1 = i & 255; + c2 = (i >> 8) & 255; + c3 = (i >> 16) & 255; + c4 = (i >> 24) & 255; + + return ((int)c1 << 24) + ((int)c2 << 16) + ((int)c3 << 8) + c4; +} + +void AMMBench::MNISTMatrixLoader::generateAB() { + + string fileName = "/home/yuhao/Documents/work/SUTD/AMM/codespace/AMMBench/src/MatrixLoader/train-images.idx3-ubyte"; + int magic_number = 0; + int number_of_images = 0; + int n_rows = 0; + int n_cols = 0; + + // Dynamically allocate memory for left half and right half + float** leftHalf = new float*[60000]; + for (int i = 0; i < 60000; ++i) { + leftHalf[i] = new float[28*14]; + } + float** rightHalf = new float*[60000]; + for (int i = 0; i < 60000; ++i) { + rightHalf[i] = new float[28*14]; + } + + // Read in file + ifstream file(fileName, ios::binary); + if (file.is_open()) + { + + // cout << "Reading metadata ..." << endl; + + file.read((char*)&magic_number, sizeof(magic_number));//幻数(文件格式) + file.read((char*)&number_of_images, sizeof(number_of_images));//图像总数 + file.read((char*)&n_rows, sizeof(n_rows));//每个图像的行数 + file.read((char*)&n_cols, sizeof(n_cols));//每个图像的列数 + + magic_number = reverseInt(magic_number); + number_of_images = reverseInt(number_of_images); + n_rows = reverseInt(n_rows); + n_cols = reverseInt(n_cols); + INTELLI_INFO( + "File format:" + to_string(magic_number) + " Number of Images:" + to_string(number_of_images) + " Number of Rows:" + to_string(n_rows) + " Number of Cols:" + to_string(n_cols)); + + // cout << "Reading images......" << endl; + + for (int i = 0; i < number_of_images; i++) { + for (int j = 0; j < n_rows * n_cols; j++) { + unsigned char temp = 0; + file.read((char*)&temp, sizeof(temp)); + //可以在下面这一步将每个像素值归一化 + float pixel_value = float(temp); + if ((j%28)<14){ + leftHalf[i][int(floor(static_cast(j)/28)*14+(j%28))] = pixel_value; + } + else{ + rightHalf[i][int(floor(static_cast(j)/28)*14+(j%28)-14)] = pixel_value; + } + } + } + + // cout << "Finished reading images......" << endl; + + INTELLI_INFO("Generating [60000 x 392]*[60000 x 392]"); + + } + file.close(); + + torch::TensorOptions options(torch::kFloat32); + A = torch::from_blob(leftHalf[0], {60000, 28*14}, options).clone(); + B = torch::from_blob(rightHalf[0], {60000, 28*14}, options).clone(); + + // Deallocate memory for data when no longer needed + for (int i = 0; i < 60000; ++i) { + delete[] leftHalf[i]; + } + delete[] leftHalf; + for (int i = 0; i < 60000; ++i) { + delete[] rightHalf[i]; + } + delete[] rightHalf; +} + +//do nothing in abstract class +bool AMMBench::MNISTMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { + paraseConfig(cfg); + generateAB(); + return true; +} + +torch::Tensor AMMBench::MNISTMatrixLoader::getA() { + return A; +} + +torch::Tensor AMMBench::MNISTMatrixLoader::getB() { + return B; +} + +// int main() { +// AMMBench::MatrixLoaderTable mLoaderTable; +// auto matLoaderPtr = mLoaderTable.findMatrixLoader("MNIST"); +// assert(matLoaderPtr); + +// INTELLI::ConfigMapPtr cfg = newConfigMap(); +// matLoaderPtr->setConfig(cfg); + +// auto A = matLoaderPtr->getA(); +// auto B = matLoaderPtr->getB(); +// std::cout << A.sizes() << endl; +// std::cout << B.sizes() << endl; +// // std::cout << A[0] << endl; +// // std::cout << B[0] << endl; +// } \ No newline at end of file diff --git a/src/MatrixLoader/MatrixLoaderTable.cpp b/src/MatrixLoader/MatrixLoaderTable.cpp index 37979e2f..9dcb82b0 100644 --- a/src/MatrixLoader/MatrixLoaderTable.cpp +++ b/src/MatrixLoader/MatrixLoaderTable.cpp @@ -10,18 +10,23 @@ #include #include #include +#include +#include + namespace AMMBench { /** * @note revise me if you need new loader */ -AMMBench::MatrixLoaderTable::MatrixLoaderTable() { - loaderMap["random"] = newRandomMatrixLoader(); - loaderMap["sparse"] = newSparseMatrixLoader(); - loaderMap["gaussian"] = newGaussianMatrixLoader(); - loaderMap["exponential"] = newExponentialMatrixLoader(); - loaderMap["binomial"] = newBinomialMatrixLoader(); - loaderMap["poisson"] = newPoissonMatrixLoader(); - loaderMap["beta"] = newBetaMatrixLoader(); -} + AMMBench::MatrixLoaderTable::MatrixLoaderTable() { + loaderMap["random"] = newRandomMatrixLoader(); + loaderMap["sparse"] = newSparseMatrixLoader(); + loaderMap["gaussian"] = newGaussianMatrixLoader(); + loaderMap["exponential"] = newExponentialMatrixLoader(); + loaderMap["binomial"] = newBinomialMatrixLoader(); + loaderMap["poisson"] = newPoissonMatrixLoader(); + loaderMap["beta"] = newBetaMatrixLoader(); + loaderMap["SIFT"] = newSIFTMatrixLoader(); + loaderMap["MNIST"] = newMNISTMatrixLoader(); + } } // AMMBench \ No newline at end of file diff --git a/src/MatrixLoader/PoissonMatrixLoader.cpp b/src/MatrixLoader/PoissonMatrixLoader.cpp index 99f0c3be..4f1abc34 100644 --- a/src/MatrixLoader/PoissonMatrixLoader.cpp +++ b/src/MatrixLoader/PoissonMatrixLoader.cpp @@ -3,6 +3,7 @@ // #include #include + void AMMBench::PoissonMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { aRow = cfg->tryU64("aRow", 100, true); aCol = cfg->tryU64("aCol", 1000, true); @@ -12,6 +13,7 @@ void AMMBench::PoissonMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + "]"); } + void AMMBench::PoissonMatrixLoader::generateAB() { torch::manual_seed(seed); A = torch::poisson(torch::ones({(long) aRow, (long) aCol})); @@ -24,9 +26,11 @@ bool AMMBench::PoissonMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { generateAB(); return true; } + torch::Tensor AMMBench::PoissonMatrixLoader::getA() { return A; } + torch::Tensor AMMBench::PoissonMatrixLoader::getB() { return B; } \ No newline at end of file diff --git a/src/MatrixLoader/RandomMatrixLoader.cpp b/src/MatrixLoader/RandomMatrixLoader.cpp index f5089b85..ffa07d7e 100644 --- a/src/MatrixLoader/RandomMatrixLoader.cpp +++ b/src/MatrixLoader/RandomMatrixLoader.cpp @@ -4,29 +4,34 @@ #include #include + void AMMBench::RandomMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { - aRow = cfg->tryU64("aRow", 100, true); - aCol = cfg->tryU64("aCol", 1000, true); - bCol = cfg->tryU64("bCol", 500, true); - seed = cfg->tryU64("seed", 114514, true); - INTELLI_INFO( - "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) - + "]"); + aRow = cfg->tryU64("aRow", 100, true); + aCol = cfg->tryU64("aCol", 1000, true); + bCol = cfg->tryU64("bCol", 500, true); + seed = cfg->tryU64("seed", 114514, true); + INTELLI_INFO( + "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + + "]"); } + void AMMBench::RandomMatrixLoader::generateAB() { - torch::manual_seed(seed); - A = torch::rand({(long) aRow, (long) aCol}); - B = torch::rand({(long) aCol, (long) bCol}); + torch::manual_seed(seed); + A = torch::rand({(long) aRow, (long) aCol}); + B = torch::rand({(long) aCol, (long) bCol}); } + //do nothing in abstract class bool AMMBench::RandomMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { - paraseConfig(cfg); - generateAB(); - return true; + paraseConfig(cfg); + generateAB(); + return true; } + torch::Tensor AMMBench::RandomMatrixLoader::getA() { - return A; + return A; } + torch::Tensor AMMBench::RandomMatrixLoader::getB() { - return B; + return B; } diff --git a/src/MatrixLoader/SIFTMatrixLoader.cpp b/src/MatrixLoader/SIFTMatrixLoader.cpp new file mode 100644 index 00000000..d3c766ad --- /dev/null +++ b/src/MatrixLoader/SIFTMatrixLoader.cpp @@ -0,0 +1,91 @@ +// +// Created by haolan on 6/5/23. +// +#include +#include +#include + +void AMMBench::SIFTMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { + assert(cfg); // do nothing, as cfg is not needed + INTELLI_INFO("For SIFT dataset, parsing config step is skipped"); +} + +void AMMBench::SIFTMatrixLoader::generateAB() { + + // Step1. locate file + char filename[] = "../../datasets/siftsmall_base.fvecs"; + float* data = NULL; + unsigned num, dim; + + // Step2. read in binary + std::ifstream in(filename, std::ios::binary); //以二进制的方式打开文件 + if (!in.is_open()) { + std::cout << "open file error" << std::endl; + exit(-1); + } + in.read((char*)&dim, 4); //读取向量维度 + in.seekg(0, std::ios::end); //光标定位到文件末尾 + std::ios::pos_type ss = in.tellg(); //获取文件大小(多少字节) + size_t fsize = (size_t)ss; + num = (unsigned)(fsize / (dim + 1) / 4); //数据的个数 + data = new float[(size_t)num * (size_t)dim]; + + in.seekg(0, std::ios::beg); //光标定位到起始处 + for (size_t i = 0; i < num; i++) { + in.seekg(4, std::ios::cur); //光标向右移动4个字节 + in.read((char*)(data + i * dim), dim * 4); //读取数据到一维数据data中 + } + in.close(); + + // Step3. convert to torch tensor and standardize the matrix + torch::TensorOptions options(torch::kFloat32); + B = torch::from_blob(data, {(int)num, (int)dim}, options).clone(); + + // 3.1 Compute the mean and standard deviation along each feature (column) + torch::Tensor mean = B.mean(/*dim=*/0); + torch::Tensor std = B.std(/*dim=*/0); + + // 3.2 Standardize the matrix + torch::Tensor standardizedB = (B - mean) / std; + + B = standardizedB; + A = B.t(); + + int ACol = A.size(0); + int ARow = A.size(1); + int BCol = B.size(0); + int BRow = B.size(1); + INTELLI_INFO( + "Generating [" + to_string(ACol) + "x" + to_string(ARow) + "]*[" + to_string(BCol) + "x" + to_string(BRow) + "]"); + + delete[] data; // deallocate +} + +//do nothing in abstract class +bool AMMBench::SIFTMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { + paraseConfig(cfg); + generateAB(); + return true; +} + +torch::Tensor AMMBench::SIFTMatrixLoader::getA() { + return A; +} + +torch::Tensor AMMBench::SIFTMatrixLoader::getB() { + return B; +} + +// int main() { +// AMMBench::MatrixLoaderTable mLoaderTable; +// auto matLoaderPtr = mLoaderTable.findMatrixLoader("SIFT"); +// assert(matLoaderPtr); + +// INTELLI::ConfigMapPtr cfg = newConfigMap(); +// matLoaderPtr->setConfig(cfg); + +// auto A = matLoaderPtr->getA(); +// auto B = matLoaderPtr->getB(); +// std::cout << A.sizes() << endl; +// std::cout << B.sizes() << endl; +// } \ No newline at end of file diff --git a/src/MatrixLoader/SparseMatrixLoader.cpp b/src/MatrixLoader/SparseMatrixLoader.cpp index d19af797..6c6e1c44 100644 --- a/src/MatrixLoader/SparseMatrixLoader.cpp +++ b/src/MatrixLoader/SparseMatrixLoader.cpp @@ -6,91 +6,97 @@ #include #include #include + torch::Tensor AMMBench::SparseMatrixLoader::genSparseMatrix(uint64_t m, uint64_t n, double density, uint64_t reduceRows) { - /** - * @brief 1. gen random mat - */ - auto mat = torch::rand({(long) m, (long) n}); + /** + * @brief 1. gen random mat + */ + auto mat = torch::rand({(long) m, (long) n}); - // Iterate over each element of A and zero out the element with probability p - /** - * @brief 2. make it sparse according to density - */ - if (density < 1.0) { - for (uint64_t i = 0; i < m; i++) { - for (uint64_t j = 0; j < n; j++) { - if (torch::rand({1}).item() >= density) { - mat[i][j] = 0.0; + // Iterate over each element of A and zero out the element with probability p + /** + * @brief 2. make it sparse according to density + */ + if (density < 1.0) { + for (uint64_t i = 0; i < m; i++) { + for (uint64_t j = 0; j < n; j++) { + if (torch::rand({1}).item() >= density) { + mat[i][j] = 0.0; + } + } } - } } - } - /** - * @brief 3. reduce rows - */ - if (reduceRows == 0) { - return mat; - } + /** + * @brief 3. reduce rows + */ + if (reduceRows == 0) { + return mat; + } - std::vector selected_rows(reduceRows); - std::iota(selected_rows.begin(), selected_rows.end(), 0); - for (uint64_t i = reduceRows; i < m; ++i) { - uint64_t j = std::rand() % (i + 1); - if (j < reduceRows) { - selected_rows[j] = i; + std::vector selected_rows(reduceRows); + std::iota(selected_rows.begin(), selected_rows.end(), 0); + for (uint64_t i = reduceRows; i < m; ++i) { + uint64_t j = std::rand() % (i + 1); + if (j < reduceRows) { + selected_rows[j] = i; + } } - } - for (const uint64_t &row_idx : selected_rows) { - //mat[row_idx]=mat[0]*torch::rand({1}).item(); - mat[row_idx] = mat[0]; - // do something with the row, e.g. print it - //std::cout << row_idx << std::endl; + for (const uint64_t &row_idx: selected_rows) { + //mat[row_idx]=mat[0]*torch::rand({1}).item(); + mat[row_idx] = mat[0]; + // do something with the row, e.g. print it + //std::cout << row_idx << std::endl; - } - return mat; + } + return mat; } + void AMMBench::SparseMatrixLoader::paraseConfig(INTELLI::ConfigMapPtr cfg) { - aRow = cfg->tryU64("aRow", 100, true); - aCol = cfg->tryU64("aCol", 1000, true); - bCol = cfg->tryU64("bCol", 500, true); - seed = cfg->tryU64("seed", 114514, true); - aDensity = cfg->tryDouble("aDensity", 1.0, true); - bDensity = cfg->tryDouble("bDensity", 1.0, true); - aReduce = cfg->tryU64("aReduce", 0, true); - bReduce = cfg->tryU64("bReduce", 0, true); - if (aReduce >= aRow) { - aReduce = aRow - 1; - } - if (bReduce >= aCol) { - aReduce = aCol - 1; - } - INTELLI_INFO( - "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) - + "], please wait for a while"); + aRow = cfg->tryU64("aRow", 100, true); + aCol = cfg->tryU64("aCol", 1000, true); + bCol = cfg->tryU64("bCol", 500, true); + seed = cfg->tryU64("seed", 114514, true); + aDensity = cfg->tryDouble("aDensity", 1.0, true); + bDensity = cfg->tryDouble("bDensity", 1.0, true); + aReduce = cfg->tryU64("aReduce", 0, true); + bReduce = cfg->tryU64("bReduce", 0, true); + if (aReduce >= aRow) { + aReduce = aRow - 1; + } + if (bReduce >= aCol) { + aReduce = aCol - 1; + } + INTELLI_INFO( + "Generating [" + to_string(aRow) + "x" + to_string(aCol) + "]*[" + to_string(aCol) + "x" + to_string(bCol) + + "], please wait for a while"); } + void AMMBench::SparseMatrixLoader::generateAB() { - torch::manual_seed(seed); - std::srand(seed); - A = genSparseMatrix(aRow, aCol, aDensity, aReduce); - INTELLI_INFO( - "Sparse matrix A is done"); - B = genSparseMatrix(aCol, bCol, bDensity, bReduce); - INTELLI_INFO( - "Sparse matrix B is done"); + torch::manual_seed(seed); + std::srand(seed); + A = genSparseMatrix(aRow, aCol, aDensity, aReduce); + INTELLI_INFO( + "Sparse matrix A is done"); + B = genSparseMatrix(aCol, bCol, bDensity, bReduce); + INTELLI_INFO( + "Sparse matrix B is done"); } + //do nothing in abstract class bool AMMBench::SparseMatrixLoader::setConfig(INTELLI::ConfigMapPtr cfg) { - paraseConfig(cfg); - generateAB(); - return true; + paraseConfig(cfg); + generateAB(); + return true; } + torch::Tensor AMMBench::SparseMatrixLoader::getA() { - return A; + return A; } + torch::Tensor AMMBench::SparseMatrixLoader::getB() { - return B; + return B; } diff --git a/src/Parallelization/BlockPartitionRunner.cpp b/src/Parallelization/BlockPartitionRunner.cpp index fdefe7d4..fa8e2fb0 100644 --- a/src/Parallelization/BlockPartitionRunner.cpp +++ b/src/Parallelization/BlockPartitionRunner.cpp @@ -4,144 +4,155 @@ #include #include + void AMMBench::BlockPartitionWorker::setConfig(INTELLI::ConfigMapPtr _cfg) { - cfg = _cfg; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - osScheduling = cfg->tryU64("osScheduling", 0, false); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - useCPP = cfg->tryU64("useCPP", 0, true); - if (useCPP) { - std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); - cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); - cppAlgoPtr->setConfig(_cfg); - } - if (!useCPP || (cppAlgoPtr == nullptr)) { - module = torch::jit::load(ptFile); + cfg = _cfg; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + osScheduling = cfg->tryU64("osScheduling", 0, false); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + useCPP = cfg->tryU64("useCPP", 0, true); if (useCPP) { - INTELLI_ERROR("No cpp algorithm found, go back to pt module"); - useCPP = 0; + std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); + cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); + cppAlgoPtr->setConfig(_cfg); + } + if (!useCPP || (cppAlgoPtr == nullptr)) { + module = torch::jit::load(ptFile); + if (useCPP) { + INTELLI_ERROR("No cpp algorithm found, go back to pt module"); + useCPP = 0; + } } - } } + void AMMBench::BlockPartitionWorker::setWorkParameters(uint64_t aStart, uint64_t aEnd, int mycore) { - startRow = aStart; - endRow = aEnd; - coreBind = mycore; - //matC=newTensor(torch::zeros({(long)(endRow+1-startRow),matB->size(1)})); + startRow = aStart; + endRow = aEnd; + coreBind = mycore; + //matC=newTensor(torch::zeros({(long)(endRow+1-startRow),matB->size(1)})); } + void AMMBench::BlockPartitionWorker::setABC(AMMBench::TensorPtr A, AMMBench::TensorPtr B, AMMBench::TensorPtr C) { - matA = A; - matB = B; - matC = C; - //assert(C); + matA = A; + matB = B; + matC = C; + //assert(C); } + void AMMBench::BlockPartitionWorker::inlineMain() { - //std::cout<<"thread at "+ to_string(coreBind)+" start\r\n"; - /** - * @brief 1. bind core and torch setting - */ - if (!osScheduling) { - INTELLI::UtilityFunctions::bind2Core((int) coreBind); - } - torch::set_num_threads(1); - /** - * @brief 2. multiply sub-matrix of A - */ - gettimeofday(&tstart, NULL); - //torch::Tensor - //torch::Tensor subC = module.forward({subA, *matB, (long) sketchDimension}).toTensor(); - // Copy the results back to the output matrix C - //matC->slice(0, startRow, endRow) = subC; - subA = matA->slice(0, startRow, endRow); - //irC=module.forward({subA, *matB, (long) sketchDimension}).toTensor(); - if (useCPP) { - INTELLI_WARNING("USE CPP ALGO"); - matC->slice(0, startRow, endRow) = cppAlgoPtr->amm(subA, *matB, sketchDimension); - } else { - matC->slice(0, startRow, endRow) =module.forward({subA, *matB, (long) sketchDimension}).toTensor(); - } - - gettimeofday(&tend, NULL); - //std::cout<slice(0, startRow, endRow) = subC; + subA = matA->slice(0, startRow, endRow); + //irC=module.forward({subA, *matB, (long) sketchDimension}).toTensor(); + if (useCPP) { + INTELLI_WARNING("USE CPP ALGO"); + matC->slice(0, startRow, endRow) = cppAlgoPtr->amm(subA, *matB, sketchDimension); + } else { + matC->slice(0, startRow, endRow) =module.forward({subA, *matB, (long) sketchDimension}).toTensor(); + } + + gettimeofday(&tend, NULL); + //std::cout<getBreakDown(); - } - return nullptr; + if (useCPP && cppAlgoPtr) { + return cppAlgoPtr->getBreakDown(); + } + return nullptr; } + uint64_t AMMBench::BlockPartitionWorker::getElapsedTime() { - return INTELLI::UtilityFunctions::timeLast(tstart, tend); + return INTELLI::UtilityFunctions::timeLast(tstart, tend); } + void AMMBench::BlockPartitionRunner::setConfig(INTELLI::ConfigMapPtr _cfg) { - cfg = _cfg; - threads = cfg->tryU64("threads", 2, true); - workers = std::vector(threads); - firstCoreBind = cfg->tryU64("firstCoreBind", 0, false); - for (uint64_t i = 0; i < threads; i++) { - workers[i] = newBlockPartitionWorker(); - workers[i]->setConfig(cfg); - } - - INTELLI_INFO("set up " + to_string(threads) + "workers."); + cfg = _cfg; + threads = cfg->tryU64("threads", 2, true); + workers = std::vector(threads); + firstCoreBind = cfg->tryU64("firstCoreBind", 0, false); + for (uint64_t i = 0; i < threads; i++) { + workers[i] = newBlockPartitionWorker(); + workers[i]->setConfig(cfg); + } + + INTELLI_INFO("set up " + to_string(threads) + "workers."); } + void AMMBench::BlockPartitionRunner::createABC(torch::Tensor A, torch::Tensor B) { - matA = newTensor(A); - matB = newTensor(B); - matC = newTensor(torch::zeros({A.size(0), B.size(1)})); - for (uint64_t i = 0; i < threads; i++) { - uint64_t rows_per_worker = A.size(0) / threads; - uint64_t start_row = i * rows_per_worker; - uint64_t end_row = (i == threads - 1) ? A.size(0) : start_row + rows_per_worker; - workers[i]->setABC(matA, matB, matC); - workers[i]->setWorkParameters(start_row, end_row, i); - } - if (firstCoreBind != 0) { - workers[0]->setCoreBInd((int) firstCoreBind); - INTELLI_INFO("first thread is bound to core" + to_string(firstCoreBind)); - } + matA = newTensor(A); + matB = newTensor(B); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + for (uint64_t i = 0; i < threads; i++) { + uint64_t rows_per_worker = A.size(0) / threads; + uint64_t start_row = i * rows_per_worker; + uint64_t end_row = (i == threads - 1) ? A.size(0) : start_row + rows_per_worker; + workers[i]->setABC(matA, matB, matC); + workers[i]->setWorkParameters(start_row, end_row, i); + } + if (firstCoreBind != 0) { + workers[0]->setCoreBInd((int) firstCoreBind); + INTELLI_INFO("first thread is bound to core" + to_string(firstCoreBind)); + } } + torch::Tensor AMMBench::BlockPartitionRunner::parallelForward() { - for (uint64_t i = 0; i < threads; i++) { - workers[i]->startThread(); - } - INTELLI_INFO("start " + to_string(threads) + "workers."); - for (uint64_t i = 0; i < threads; i++) { - workers[i]->joinThread(); - } - /* for(uint64_t i=0;islice(0, workers[i]->startRow, workers[i]->endRow) = workers[i]->irC; - }*/ - return *matC; + for (uint64_t i = 0; i < threads; i++) { + workers[i]->startThread(); + } + INTELLI_INFO("start " + to_string(threads) + "workers."); + for (uint64_t i = 0; i < threads; i++) { + workers[i]->joinThread(); + } + /* for(uint64_t i=0;islice(0, workers[i]->startRow, workers[i]->endRow) = workers[i]->irC; + }*/ + return *matC; } + torch::Tensor AMMBench::BlockPartitionRunner::runAMM(torch::Tensor A, torch::Tensor B) { - createABC(A, B); - return parallelForward(); + createABC(A, B); + return parallelForward(); } + uint64_t AMMBench::BlockPartitionRunner::getElapsedTime() { - uint64_t ti = 0; - uint64_t tMax = 0; - for (uint64_t i = 0; i < threads; i++) { - ti = workers[i]->getElapsedTime(); - if (ti > tMax) { - tMax = ti; + uint64_t ti = 0; + uint64_t tMax = 0; + for (uint64_t i = 0; i < threads; i++) { + ti = workers[i]->getElapsedTime(); + if (ti > tMax) { + tMax = ti; + } } - } - return tMax; + return tMax; } + void AMMBench::BlockPartitionRunner::appendThreadInfo(INTELLI::ConfigMapPtr ru) { - for (uint64_t i = 0; i < threads; i++) { - std::string keyElapesedTime = "thread" + to_string(i) + "RunTime"; - ru->edit(keyElapesedTime, (uint64_t) workers[i]->getElapsedTime()); - } + for (uint64_t i = 0; i < threads; i++) { + std::string keyElapesedTime = "thread" + to_string(i) + "RunTime"; + ru->edit(keyElapesedTime, (uint64_t) workers[i]->getElapsedTime()); + } } INTELLI::ConfigMapPtr AMMBench::BlockPartitionRunner::getBreakDown() { - return workers[0]->getBreakDown(); + return workers[0]->getBreakDown(); } \ No newline at end of file diff --git a/src/Streaming/BlockPartitionStreamer.cpp b/src/Streaming/BlockPartitionStreamer.cpp new file mode 100644 index 00000000..3a41cffd --- /dev/null +++ b/src/Streaming/BlockPartitionStreamer.cpp @@ -0,0 +1,257 @@ +// +// Created by haolan on 27/6/23. +// + +#include +#include +#include +#include +#include + +bool AMMBench::BlockPartitionStreamer::setConfig(INTELLI::ConfigMapPtr cfg) { + cfgGlobal = cfg; + /** + * @brief 1.set the algo + */ + std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); + cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); + cppAlgoPtr->setConfig(cfg); + /** + * @brief 2. set the batch size + */ + batchSize = cfg->tryU64("batchSize", 1, true); + threads = cfg->tryU64("threads", 1, true); + return true; +} + +torch::Tensor AMMBench::BlockPartitionStreamer::streamingAmm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + assert(sketchSize); + uint64_t aRows = A.size(0); + cfgGlobal->edit("streamingTupleCnt", (uint64_t) aRows); + if (batchSize > aRows) { + batchSize = aRows; + } + std::string cppAlgoTag = cfgGlobal->tryString("cppAlgoTag", "mm", true); + AMMBench::TimeStamper tsGen; + tsGen.setConfig(cfgGlobal); + myTs = tsGen.getTimeStamps(); + INTELLI_INFO("Generate time stamp done"); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + struct timeval tstart; + INTELLI_INFO("Start Streaming A rows"); + uint64_t startRow = 0; + uint64_t endRow = startRow + batchSize; + uint64_t tNow = 0; + uint64_t tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + uint64_t tp = 0; + uint64_t tDone = 0; + size_t slice_size = batchSize / threads; + + // pre-partition + std::vector> partitions; + uint64_t start = 0; + uint64_t end = batchSize; + for (int i = 0; i < std::ceil(aRows / batchSize); ++i) { + //partitions.push_back(vector(threads)); + partitions.emplace_back(threads); + for (uint64_t j = 0; j < threads; ++j) { + size_t startRowThread = start + j * slice_size; + size_t endRowThread = (j == threads - 1) ? end : startRowThread + slice_size; + partitions[i][j] = A.slice(0, startRowThread, endRowThread); + } + start += batchSize; + end += batchSize; + if (end > aRows) end = aRows; + } + auto pool = std::make_shared(threads); + BS::multi_future tasks(threads); + int index = -1; + gettimeofday(&tstart, NULL); + + while (startRow < aRows) { + index++; + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + while (tNow < tEXpectedArrival) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + } + for (size_t i = 0; i < threads; ++i) { + tasks[i] = pool->submit([&, i]() { + INTELLI::UtilityFunctions::bind2Core(i+1); + size_t startRowThread = startRow + i * slice_size; + size_t endRowThread = (i == threads - 1) ? endRow : startRowThread + slice_size; + matC->slice(0, startRowThread, endRowThread) = cppAlgoPtr->amm(partitions[index][i], B, sketchSize); + }); + } + tasks.wait(); + tp = INTELLI::UtilityFunctions::timeLastUs(tstart); + for (size_t i = startRow; i < endRow; i++) { + myTs[i]->processedTime = tp; + } + /** + * @brief update the indexes + */ + startRow += batchSize; + endRow += batchSize; + if (endRow >= aRows) { + endRow = aRows; + } + tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + } + tDone = INTELLI::UtilityFunctions::timeLastUs(tstart); + INTELLI_INFO("Done in " + to_string(tDone) + "us"); + throughput = aRows; + throughput = throughput * 1e6 / tDone; + return *matC; +} + + +torch::Tensor AMMBench::BlockPartitionStreamer::streamingAmm2S(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + assert(sketchSize); + uint64_t aRows = A.size(0); + cfgGlobal->edit("streamingTupleCnt", (uint64_t) aRows); + if (batchSize > aRows) { + batchSize = aRows; + } + AMMBench::TimeStamper tsGen,tsGenB; + tsGen.setConfig(cfgGlobal); + myTs = tsGen.getTimeStamps(); + + tsGenB.setSeed(7758258); + tsGenB.setConfig(cfgGlobal); + myTsB = tsGenB.getTimeStamps(); + INTELLI_INFO("Generate time stamps for two streams done"); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + INTELLI_INFO("Start Streaming A rows and B cols"); + uint64_t startRow = 0; + uint64_t endRow = startRow + batchSize; + uint64_t tNow = 0; + uint64_t tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + if(myTsB[endRow-1]->arrivalTime>tEXpectedArrival) + { + tEXpectedArrival=myTsB[endRow-1]->arrivalTime; + } + uint64_t tDone = 0; + gettimeofday(&tstart, NULL); + uint64_t iterationCnt=0; + torch::Tensor incomingA,incomingB,newArrivedB,oldArrivedA; + uint64_t aBCols=0,lastABCols=0; + + size_t slice_size = batchSize / threads; + auto pool = std::make_shared(threads); + BS::multi_future tasks(threads); + + while (startRow < aRows) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + incomingB=B.slice(1,startRow,endRow); + newArrivedB=B.slice(1,0,endRow); + while (tNow < tEXpectedArrival) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + //usleep(1); + } + INTELLI_INFO("batch of "+ to_string(startRow)+" to "+ to_string(endRow)+" are ready"); + /** + * @brief now, the whole batch has arrived, compute + */ + /** + * @brief do the incomingA*newArrivedB part + */ + vector aBs(threads); + for (size_t i = 0; i < threads; ++i) { + tasks[i] = pool->submit([&, i]() { + INTELLI::UtilityFunctions::bind2Core(i+1); + size_t startRowThread = startRow + i * slice_size; + size_t endRowThread = (i == threads - 1) ? endRow : startRowThread + slice_size; + auto subA = A.slice(0, startRowThread, endRowThread); + + aBs[i] = cppAlgoPtr->amm(subA, newArrivedB, sketchSize); + }); + } + tasks.wait(); + torch::Tensor aB = torch::cat(aBs, 0); + + lastABCols=aBCols; + aBCols=aB.size(1); + matC->slice(0,startRow,endRow).slice(1,0,aBCols).copy_(aB); + /** + * @brief do the oldArrivedA*incomingB part + */ + if(iterationCnt!=0) + { + torch::Tensor aB2 = torch::empty({(long)oldArrivedA.size(0), incomingB.size(1)}); + std::vector> tasks(threads); + + for (size_t i = 0; i < threads; ++i) { + tasks[i] = pool->submit([&, i]() { // Capture by reference, but capture 'i' by value + INTELLI::UtilityFunctions::bind2Core(i+1); + size_t slice_size = oldArrivedA.size(0) / threads; + size_t startRowThread = i * slice_size; + size_t endRowThread = (i == threads - 1) ? oldArrivedA.size(0) : startRowThread + slice_size; + + auto oldArrivedA_sub = oldArrivedA.slice(0, startRowThread, endRowThread); + auto subAB2 = cppAlgoPtr->amm(oldArrivedA_sub, incomingB, sketchSize); + aB2.slice(0, startRowThread, endRowThread) = subAB2; + }); + } + for(auto &task : tasks) { + task.get(); // wait for tasks to finish + } + //aB2=cppAlgoPtr->amm(oldArrivedA, incomingB, sketchSize); + + uint64_t aB2Rows=aB2.size(0); + uint64_t aB2Cols=aB2.size(1); + matC->slice(0,0,aB2Rows).slice(1,lastABCols,lastABCols+aB2Cols).copy_(aB2); + } + oldArrivedA=A.slice(0, 0, endRow); + /** + * @brief update the indexes + */ + startRow += batchSize; + endRow += batchSize; + if (endRow >= aRows) { + endRow = aRows; + } + tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + if(myTsB[endRow-1]->arrivalTime>tEXpectedArrival) + { + tEXpectedArrival=myTsB[endRow-1]->arrivalTime; + } + iterationCnt++; + } + tDone = INTELLI::UtilityFunctions::timeLastUs(tstart); + /** + * @brief The latency calculation is different from one stream case here, + * as older A will still be probed by newer B + */ + for (size_t i = 0; i < aRows; i++) { + myTs[i]->processedTime = tDone; + } + INTELLI_INFO("Done in " + to_string(tDone) + "us"); + throughput = aRows; + throughput = throughput * 1e6 / tDone; + return *matC; +} +double AMMBench::BlockPartitionStreamer::getLatencyPercentage(double fraction) { + size_t rLen = myTs.size(); + size_t nonZeroCnt = 0; + std::vector validLatency; + for (size_t i = 0; i < rLen; i++) { + if (myTs[i]->processedTime >= myTs[i]->arrivalTime && myTs[i]->processedTime != 0) { + validLatency.push_back(myTs[i]->processedTime - myTs[i]->arrivalTime); + nonZeroCnt++; + } + } + if (nonZeroCnt == 0) { + INTELLI_ERROR("No valid latency, maybe there is no AMM result?"); + return 0; + } + std::sort(validLatency.begin(), validLatency.end()); + double t = nonZeroCnt; + t = t * fraction; + size_t idx = (size_t) t + 1; + if (idx >= validLatency.size()) { + idx = validLatency.size() - 1; + } + return validLatency[idx]; +} \ No newline at end of file diff --git a/src/Streaming/CMakeLists.txt b/src/Streaming/CMakeLists.txt new file mode 100644 index 00000000..2b347726 --- /dev/null +++ b/src/Streaming/CMakeLists.txt @@ -0,0 +1,6 @@ +add_sources( + TimeStamper.cpp + Streamer.cpp + SingleThreadStreamer.cpp + BlockPartitionStreamer.cpp +) \ No newline at end of file diff --git a/src/Streaming/SingleThreadStreamer.cpp b/src/Streaming/SingleThreadStreamer.cpp new file mode 100644 index 00000000..0545f8ba --- /dev/null +++ b/src/Streaming/SingleThreadStreamer.cpp @@ -0,0 +1,206 @@ +// +// Created by tony on 23/06/23. +// + +#include +#include + +bool AMMBench::SingleThreadStreamer::setConfig(INTELLI::ConfigMapPtr cfg) { + cfgGlobal = cfg; + /** + * @brief 1.set the algo + */ + std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); + cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); + cppAlgoPtr->setConfig(cfg); + /** + * @brief 2. set the batch size + */ + batchSize = cfg->tryU64("batchSize", 1, true); + return true; +} + +torch::Tensor AMMBench::SingleThreadStreamer::streamingAmm(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + assert(sketchSize); + uint64_t aRows = A.size(0); + cfgGlobal->edit("streamingTupleCnt", (uint64_t) aRows); + if (batchSize > aRows) { + batchSize = aRows; + } + AMMBench::TimeStamper tsGen; + tsGen.setConfig(cfgGlobal); + myTs = tsGen.getTimeStamps(); + INTELLI_INFO("Generate time stamp done"); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + INTELLI_INFO("Start Streaming A rows"); + uint64_t startRow = 0; + uint64_t endRow = startRow + batchSize; + uint64_t tNow = 0; + uint64_t tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + uint64_t tp = 0; + uint64_t tDone = 0; + + //pre-partition + std::vector partitions; + for (uint64_t i = 0; i < aRows; i += batchSize) { + uint64_t end = std::min(i + batchSize , aRows); + auto subA = A.slice(0, i, end); + partitions.push_back(subA); + } + uint64_t index = -1; + gettimeofday(&tstart, NULL); + + while (startRow < aRows) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + index++; + while (tNow < tEXpectedArrival) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + } + /** + * @brief now, the whole batch has arrived, compute + */ + //auto subA = A.slice(0, startRow, endRow); + auto subA = partitions[index]; + matC->slice(0, startRow, endRow) = cppAlgoPtr->amm(subA, B, sketchSize); + tp = INTELLI::UtilityFunctions::timeLastUs(tstart); + /** + * @brief the new arrived A will be no longer probed, so we can assign the processed time now + */ + for (size_t i = startRow; i < endRow; i++) { + myTs[i]->processedTime = tp; + } + /** + * @brief update the indexes + */ + startRow += batchSize; + endRow += batchSize; + if (endRow >= aRows) { + endRow = aRows; + } + tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + } + tDone = INTELLI::UtilityFunctions::timeLastUs(tstart); + INTELLI_INFO("Done in " + to_string(tDone) + "us"); + throughput = aRows; + throughput = throughput * 1e6 / tDone; + return *matC; +} + +torch::Tensor AMMBench::SingleThreadStreamer::streamingAmm2S(torch::Tensor A, torch::Tensor B, uint64_t sketchSize) { + assert(sketchSize); + uint64_t aRows = A.size(0); + cfgGlobal->edit("streamingTupleCnt", (uint64_t) aRows); + if (batchSize > aRows) { + batchSize = aRows; + } + AMMBench::TimeStamper tsGen,tsGenB; + tsGen.setConfig(cfgGlobal); + myTs = tsGen.getTimeStamps(); + + tsGenB.setSeed(7758258); + tsGenB.setConfig(cfgGlobal); + myTsB = tsGenB.getTimeStamps(); + INTELLI_INFO("Generate time stamps for two streams done"); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + struct timeval tstart; + //INTELLI_INFO("I am mm"); + INTELLI_INFO("Start Streaming A rows and B cols"); + uint64_t startRow = 0; + uint64_t endRow = startRow + batchSize; + uint64_t tNow = 0; + uint64_t tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + if(myTsB[endRow-1]->arrivalTime>tEXpectedArrival) + { + tEXpectedArrival=myTsB[endRow-1]->arrivalTime; + } + uint64_t tDone = 0; + gettimeofday(&tstart, NULL); + uint64_t iterationCnt=0; + torch::Tensor incomingA,incomingB,newArrivedB,oldArrivedA; + uint64_t aBCols=0,lastABCols=0; + while (startRow < aRows) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + //auto subA = A.slice(0, startRow, endRow); + incomingA =A.slice(0, startRow, endRow); + incomingB=B.slice(1,startRow,endRow); + newArrivedB=B.slice(1,0,endRow); + while (tNow < tEXpectedArrival) { + tNow = INTELLI::UtilityFunctions::timeLastUs(tstart); + //usleep(1); + } + INTELLI_INFO("batch of "+ to_string(startRow)+" to "+ to_string(endRow)+" are ready"); + /** + * @brief now, the whole batch has arrived, compute + */ + /** + * @brief do the incomingA*newArrivedB part + */ + auto aB=cppAlgoPtr->amm(incomingA, newArrivedB, sketchSize); + lastABCols=aBCols; + aBCols=aB.size(1); + matC->slice(0,startRow,endRow).slice(1,0,aBCols).copy_(aB); + /** + * @brief do the oldArrivedA*incomingB part + */ + if(iterationCnt!=0) + { + auto aB2=cppAlgoPtr->amm(oldArrivedA, incomingB, sketchSize); + uint64_t aB2Rows=aB2.size(0); + uint64_t aB2Cols=aB2.size(1); + matC->slice(0,0,aB2Rows).slice(1,lastABCols,lastABCols+aB2Cols).copy_(aB2); + } + oldArrivedA=A.slice(0, 0, endRow); + /** + * @brief update the indexes + */ + startRow += batchSize; + endRow += batchSize; + if (endRow >= aRows) { + endRow = aRows; + } + tEXpectedArrival = myTs[endRow - 1]->arrivalTime; + if(myTsB[endRow-1]->arrivalTime>tEXpectedArrival) + { + tEXpectedArrival=myTsB[endRow-1]->arrivalTime; + } + iterationCnt++; + } + tDone = INTELLI::UtilityFunctions::timeLastUs(tstart); + /** + * @brief The latency calculation is different from one stream case here, + * as older A will still be probed by newer B + */ + for (size_t i = 0; i < aRows; i++) { + myTs[i]->processedTime = tDone; + } + INTELLI_INFO("Done in " + to_string(tDone) + "us"); + throughput = aRows; + throughput = throughput * 1e6 / tDone; + return *matC; +} + +double AMMBench::SingleThreadStreamer::getLatencyPercentage(double fraction) { + size_t rLen = myTs.size(); + size_t nonZeroCnt = 0; + std::vector validLatency; + for (size_t i = 0; i < rLen; i++) { + if (myTs[i]->processedTime >= myTs[i]->arrivalTime && myTs[i]->processedTime != 0) { + validLatency.push_back(myTs[i]->processedTime - myTs[i]->arrivalTime); + nonZeroCnt++; + } + } + if (nonZeroCnt == 0) { + INTELLI_ERROR("No valid latency, maybe there is no AMM result?"); + return 0; + } + std::sort(validLatency.begin(), validLatency.end()); + double t = nonZeroCnt; + t = t * fraction; + size_t idx = (size_t) t + 1; + if (idx >= validLatency.size()) { + idx = validLatency.size() - 1; + } + return validLatency[idx]; +} \ No newline at end of file diff --git a/src/Streaming/Streamer.cpp b/src/Streaming/Streamer.cpp new file mode 100644 index 00000000..271b74b7 --- /dev/null +++ b/src/Streaming/Streamer.cpp @@ -0,0 +1,91 @@ +// +// Created by haolan on 8/7/23. +// + +#include +#include +#include "Utils/ConfigMap.hpp" +#include "Utils/ThreadPerf.hpp" +#include +#include + +using namespace INTELLI; + +torch::Tensor AMMBench::Streamer::run(INTELLI::ConfigMapPtr cfg, torch::Tensor A, torch::Tensor B, uint64_t sketchSize = 1) { + metrics = newConfigMap(); + matC = newTensor(torch::zeros({A.size(0), B.size(1)})); + torch::Tensor realC = torch::matmul(A, B); + uint64_t isStreaming = cfg->tryU64("isStreaming", 0, true); + uint64_t threads = cfg->tryU64("threads", 1, true); + sketchSize = cfg->tryU64("sketchDimension", sketchSize, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + + if (isStreaming) { + uint64_t streamingTwoMatrices = cfg->tryU64("streamingTwoMatrixes", 0, true); + double throughput; + if (threads) { + AMMBench::BlockPartitionStreamer ss; + ss.setConfig(cfg); + if (streamingTwoMatrices) { + *matC = ss.streamingAmm2S(A, B, sketchSize); + } else *matC = ss.streamingAmm(A, B, sketchSize); + throughput = ss.getThroughput(); + metrics->edit("throughput", throughput); + metrics->edit("throughputByElements", (double) (throughput * A.size(1))); + metrics->edit("95%latency", (double) ss.getLatencyPercentage(0.95)); + } else { + AMMBench::SingleThreadStreamer ss; + ss.setConfig(cfg); + if (streamingTwoMatrices) { + *matC = ss.streamingAmm2S(A, B, sketchSize); + } else { + *matC = ss.streamingAmm(A, B, sketchSize); + } + throughput = ss.getThroughput(); + metrics->edit("throughput", throughput); + metrics->edit("throughputByElements", (double) (throughput * A.size(1))); + metrics->edit("95%latency", (double) ss.getLatencyPercentage(0.95)); + } + metrics->edit("elapsedTime", (uint64_t)((A.size(0) * 1e6) / throughput)); + } + else{ + // non-streaming + std::string meterTag = cfg->tryString("meterTag", "intelMsr", true); + cfg->edit("useCPP", (uint64_t)1); + uint64_t forceMP = cfg->tryU64("forceMP", 1, true); + + ThreadPerf pef(-1); + pef.setPerfList(); + AMMBench::BlockPartitionRunner br; + if (threads > 1 || forceMP) { + br.setConfig(cfg); + br.createABC(A, B); + pef.start(); + *matC = br.parallelForward(); + pef.end(); + } else { + AMMBench::CPPAlgoTable cppAlgoTable; + std::string cppAlgoTag = cfg->tryString("cppAlgoTag", "mm", true); + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = cppAlgoTable.findCppAlgo(cppAlgoTag); + cppAlgoPtr->setConfig(cfg); + pef.start(); + *matC = cppAlgoPtr->amm(A, B, sketchSize); + pef.end(); + } + uint64_t elapsedTime = br.getElapsedTime(); + double throughput = (A.size(0) * 1e6) / elapsedTime; + metrics->edit("throughput", throughput); + metrics->edit("throughputByElements", (double) (throughput * A.size(1))); + metrics->edit("elapsedTime", elapsedTime); + } + + // calculate error + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, *matC); + double froBNormal = B.norm().item(); + double errorBoundRatio = froError / froBNormal; + metrics->edit("froError", (double) froError); + metrics->edit("errorBoundRatio", (double) errorBoundRatio); + return *matC; +} + diff --git a/src/Streaming/TimeStamper.cpp b/src/Streaming/TimeStamper.cpp new file mode 100644 index 00000000..856d285a --- /dev/null +++ b/src/Streaming/TimeStamper.cpp @@ -0,0 +1,56 @@ +// +// Created by tony on 23/06/23. +// + +#include +#include + +bool AMMBench::TimeStamper::setConfig(INTELLI::ConfigMapPtr cfg) { + cfgGlobal = cfg; + eventRateTps = cfg->tryU64("eventRateTps", 100, true); + timeStepUs = cfg->tryU64("timeStepUs", 100, true); + timeStamper_zipfEvent = cfg->tryU64("timeStamper_zipfEvent", 0, true); + timeStamper_zipfEventFactor = cfg->tryDouble("timeStamper_zipfEventFactor", 0.1, true); + testSize = cfg->tryU64("streamingTupleCnt", 0, true); + md.setSeed(seed); + generateEvent(); + generateArrival(); + generateFinal(); + return true; +} + +void AMMBench::TimeStamper::generateEvent() { + uint64_t maxTime = testSize * 1000 * 1000 / eventRateTps; + if (timeStamper_zipfEvent) { + INTELLI_INFO("Use zipf for event time, factor=" + to_string(timeStamper_zipfEventFactor)); + INTELLI_INFO("maxTime=" + to_string(maxTime) + "us" + "rate=" + to_string(eventRateTps) + "K, cnt=" + + to_string(testSize)); + eventS = + md.genZipfTimeStamp(testSize, maxTime, + timeStamper_zipfEventFactor); + } else { + // uint64_t tsGrow = 1000 * timeStepUs / eventRateKTps; + eventS = md.genSmoothTimeStamp(testSize, maxTime); + } + INTELLI_INFO("Finish the generation of event time"); +} + +void AMMBench::TimeStamper::generateArrival() { + + INTELLI_INFO("Finish the generation of arrival time"); +} + +std::vector AMMBench::TimeStamper::constructTimeStamps( + std::vector _eventS, + std::vector _arrivalS) { + size_t len = _eventS.size(); + std::vector ru = std::vector(len); + for (size_t i = 0; i < len; i++) { + ru[i] = newAMMTimeStamp(_eventS[i], _arrivalS[i], 0); + } + return ru; +} + +void AMMBench::TimeStamper::generateFinal() { + myTs = constructTimeStamps(eventS, eventS); +} \ No newline at end of file diff --git a/src/Utils/IntelliLog.cpp b/src/Utils/IntelliLog.cpp index 54d7ce7b..a8503b8d 100755 --- a/src/Utils/IntelliLog.cpp +++ b/src/Utils/IntelliLog.cpp @@ -8,29 +8,29 @@ INTELLI::IntelliLog_FileProtector fp_doNotTouchMe; void INTELLI::IntelliLog::setupLoggingFile(string fname) { - fp_doNotTouchMe.openLogFile(fname); + fp_doNotTouchMe.openLogFile(fname); } void INTELLI::IntelliLog::log(std::string level, std::string_view message, const std::source_location source) { - time_t now = time(0); + time_t now = time(0); - // 把 now 转换为字符串形式 - char *dt = ctime(&now); - std::string str = level + ":"; - dt[strlen(dt) - 1] = 0; - str += dt; - //str+= static_cast(level); - str += ":"; - str += source.file_name(); - str += ":"; - str += to_string(source.line()); - str += +"|"; - str += +source.function_name(); - str += +"|"; + // 把 now 转换为字符串形式 + char *dt = ctime(&now); + std::string str = level + ":"; + dt[strlen(dt) - 1] = 0; + str += dt; + //str+= static_cast(level); + str += ":"; + str += source.file_name(); + str += ":"; + str += to_string(source.line()); + str += +"|"; + str += +source.function_name(); + str += +"|"; - str += message; - cout << str + "\n"; + str += message; + cout << str + "\n"; - fp_doNotTouchMe.appendLogFile(str + "\n"); - //fp_doNotTouchMe.unlock(); + fp_doNotTouchMe.appendLogFile(str + "\n"); + //fp_doNotTouchMe.unlock(); } \ No newline at end of file diff --git a/src/Utils/Meters/AbstractMeter.cpp b/src/Utils/Meters/AbstractMeter.cpp index 7ac4feab..88f9291a 100644 --- a/src/Utils/Meters/AbstractMeter.cpp +++ b/src/Utils/Meters/AbstractMeter.cpp @@ -1,16 +1,19 @@ #include + void DIVERSE_METER::AbstractMeter::testStaticPower(uint64_t sleepingSecond) { - startMeter(); - sleep(sleepingSecond); - stopMeter(); - staticPower = getE(); - staticPower = staticPower / sleepingSecond; + startMeter(); + sleep(sleepingSecond); + stopMeter(); + staticPower = getE(); + staticPower = staticPower / sleepingSecond; } + double DIVERSE_METER::AbstractMeter::getStaicEnergyConsumption(uint64_t runningUs) { - double t = runningUs; - t = t * staticPower / 1e6; - return t; + double t = runningUs; + t = t * staticPower / 1e6; + return t; } + double DIVERSE_METER::AbstractMeter::getStaticPower() { - return staticPower; + return staticPower; } \ No newline at end of file diff --git a/src/Utils/Meters/EspMeterUart/EspMeterUart.cpp b/src/Utils/Meters/EspMeterUart/EspMeterUart.cpp index ba7c2b6f..d0b7d8f2 100644 --- a/src/Utils/Meters/EspMeterUart/EspMeterUart.cpp +++ b/src/Utils/Meters/EspMeterUart/EspMeterUart.cpp @@ -26,47 +26,51 @@ using namespace DIVERSE_METER; enum { - UART_VCMD_START = 1, - UART_VCMD_STOP, - UART_VCMD_I, - UART_VCMD_V, - UART_VCMD_P, - UART_VCMD_E, - UART_VCMD_PEAK, + UART_VCMD_START = 1, + UART_VCMD_STOP, + UART_VCMD_I, + UART_VCMD_V, + UART_VCMD_P, + UART_VCMD_E, + UART_VCMD_PEAK, }; + void EspMeterUart::setConfig(INTELLI::ConfigMapPtr _cfg) { - AbstractMeter::setConfig(_cfg); - meterAddress = cfg->tryString("meterAddress", "/dev/ttyUSB0", true); - // openUartDev(); + AbstractMeter::setConfig(_cfg); + meterAddress = cfg->tryString("meterAddress", "/dev/ttyUSB0", true); + // openUartDev(); } + void EspMeterUart::openUartDev() { - devFd = open(meterAddress.data(), O_RDWR | O_NOCTTY); - if (devFd == -1) { + devFd = open(meterAddress.data(), O_RDWR | O_NOCTTY); + if (devFd == -1) { - METER_ERROR("can not open device meter"); - } - //char *welcome="hello world"; - struct termios termios_p; - tcgetattr(devFd, &termios_p); - /** - * @brief set up uart, 115200, maximum compatability - */ - termios_p.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON); - termios_p.c_oflag &= ~OPOST; - termios_p.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); - termios_p.c_cflag &= ~(CSIZE | PARENB); - termios_p.c_cflag = B115200 | CS8 | CLOCAL | CREAD; - termios_p.c_cc[VTIME] = 0; - termios_p.c_cc[VMIN] = 1; - tcsetattr(devFd, TCSANOW, &termios_p); - tcflush(devFd, TCIOFLUSH); - fcntl(devFd, F_SETFL, O_NONBLOCK); - //close(devFd); + METER_ERROR("can not open device meter"); + } + //char *welcome="hello world"; + struct termios termios_p; + tcgetattr(devFd, &termios_p); + /** + * @brief set up uart, 115200, maximum compatability + */ + termios_p.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IXON); + termios_p.c_oflag &= ~OPOST; + termios_p.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN); + termios_p.c_cflag &= ~(CSIZE | PARENB); + termios_p.c_cflag = B115200 | CS8 | CLOCAL | CREAD; + termios_p.c_cc[VTIME] = 0; + termios_p.c_cc[VMIN] = 1; + tcsetattr(devFd, TCSANOW, &termios_p); + tcflush(devFd, TCIOFLUSH); + fcntl(devFd, F_SETFL, O_NONBLOCK); + //close(devFd); } + EspMeterUart::EspMeterUart(/* args */) { } + /* EspMeterUart::EspMeterUart(string name) { devFd = open(name.data(), O_RDWR); @@ -76,54 +80,57 @@ EspMeterUart::EspMeterUart(string name) { } }*/ EspMeterUart::~EspMeterUart() { - /*if (devFd != -1) { - close(devFd); - }*/ + /*if (devFd != -1) { + close(devFd); + }*/ } + void EspMeterUart::startMeter() { - openUartDev(); - uint8_t cmdSend = UART_VCMD_START; - //double ru=0; - write(devFd, &cmdSend, 1); - close(devFd); + openUartDev(); + uint8_t cmdSend = UART_VCMD_START; + //double ru=0; + write(devFd, &cmdSend, 1); + close(devFd); } + void EspMeterUart::stopMeter() { - openUartDev(); - uint8_t cmdSend = UART_VCMD_STOP; - //double ru=0; - write(devFd, &cmdSend, 1); - close(devFd); + openUartDev(); + uint8_t cmdSend = UART_VCMD_STOP; + //double ru=0; + write(devFd, &cmdSend, 1); + close(devFd); } + double EspMeterUart::getE() { - openUartDev(); - double ru = 0; - uint8_t cmdSend = UART_VCMD_E; - write(devFd, &cmdSend, 1); + openUartDev(); + double ru = 0; + uint8_t cmdSend = UART_VCMD_E; + write(devFd, &cmdSend, 1); //usleep(1000); //double ru; - int ret = -1; - uint64_t tryCnt = 0; - while (ret < 0 && tryCnt < 1000) { - ret = read(devFd, &ru, sizeof(double)); - tryCnt++; - usleep(1000); - } - close(devFd); - return ru; + int ret = -1; + uint64_t tryCnt = 0; + while (ret < 0 && tryCnt < 1000) { + ret = read(devFd, &ru, sizeof(double)); + tryCnt++; + usleep(1000); + } + close(devFd); + return ru; } double EspMeterUart::getPeak() { - double ru = 0; - uint8_t cmdSend = UART_VCMD_PEAK; - write(devFd, &cmdSend, 1); + double ru = 0; + uint8_t cmdSend = UART_VCMD_PEAK; + write(devFd, &cmdSend, 1); //usleep(1000); //double ru; - int ret = -1; - uint64_t tryCnt = 0; - while (ret < 0 && tryCnt < 1000) { - ret = read(devFd, &ru, sizeof(double)); - tryCnt++; - usleep(1000); - } - return ru; + int ret = -1; + uint64_t tryCnt = 0; + while (ret < 0 && tryCnt < 1000) { + ret = read(devFd, &ru, sizeof(double)); + tryCnt++; + usleep(1000); + } + return ru; } \ No newline at end of file diff --git a/src/Utils/Meters/IntelMeter/IntelMeter.cpp b/src/Utils/Meters/IntelMeter/IntelMeter.cpp index 42a5a1c4..03f27166 100644 --- a/src/Utils/Meters/IntelMeter/IntelMeter.cpp +++ b/src/Utils/Meters/IntelMeter/IntelMeter.cpp @@ -1,93 +1,101 @@ #include #include + using namespace DIVERSE_METER; IntelMeter::IntelMeter(/* args */) { - //system("modprobe cpuid\r\n"); - //system("modprobe msr\r\n"); + //system("modprobe cpuid\r\n"); + //system("modprobe msr\r\n"); - //en=vector(maxCpu); + //en=vector(maxCpu); } + void IntelMeter::setConfig(INTELLI::ConfigMapPtr _cfg) { - AbstractMeter::setConfig(_cfg); - maxCpu = std::thread::hardware_concurrency(); - power_units = get_rapl_power_unit(); - uint32_t i; - //printf("we have %d ,%dcores\r\n",maxCpu,i); - cpus = vector(maxCpu); - st = vector(maxCpu); - en = vector(maxCpu); - count = vector(maxCpu); + AbstractMeter::setConfig(_cfg); + maxCpu = std::thread::hardware_concurrency(); + power_units = get_rapl_power_unit(); + uint32_t i; + //printf("we have %d ,%dcores\r\n",maxCpu,i); + cpus = vector(maxCpu); + st = vector(maxCpu); + en = vector(maxCpu); + count = vector(maxCpu); - for (i = 0; i < maxCpu; i++) { - cpus[i] = i; - } + for (i = 0; i < maxCpu; i++) { + cpus[i] = i; + } } + IntelMeter::~IntelMeter() { } + uint64_t IntelMeter::rdmsr(int cpu, uint32_t reg) { - char buf[1024]; - sprintf(buf, "/dev/cpu/%d/msr", cpu); - int msr_file = open(buf, O_RDONLY); - if (msr_file < 0) { - perror("rdmsr: open"); - return msr_file; - } - uint64_t data; - if (pread(msr_file, &data, sizeof(data), reg) != sizeof(data)) { - fprintf(stderr, "read msr register 0x%x error.\n", reg); - perror("rdmsr: read msr"); - return -1; - } - close(msr_file); - return data; + char buf[1024]; + sprintf(buf, "/dev/cpu/%d/msr", cpu); + int msr_file = open(buf, O_RDONLY); + if (msr_file < 0) { + perror("rdmsr: open"); + return msr_file; + } + uint64_t data; + if (pread(msr_file, &data, sizeof(data), reg) != sizeof(data)) { + fprintf(stderr, "read msr register 0x%x error.\n", reg); + perror("rdmsr: read msr"); + return -1; + } + close(msr_file); + return data; } + rapl_power_unit IntelMeter::get_rapl_power_unit() { - rapl_power_unit ret; - uint64_t data = rdmsr(0, 0x606); - double t = (1 << (data & 0xf)); - t = 1.0 / t; - ret.PU = t; - t = (1 << ((data >> 8) & 0x1f)); - ret.ESU = 1.0 / t; - t = (1 << ((data >> 16) & 0xf)); - ret.TU = 1.0 / t; - return ret; + rapl_power_unit ret; + uint64_t data = rdmsr(0, 0x606); + double t = (1 << (data & 0xf)); + t = 1.0 / t; + ret.PU = t; + t = (1 << ((data >> 8) & 0x1f)); + ret.ESU = 1.0 / t; + t = (1 << ((data >> 16) & 0xf)); + ret.TU = 1.0 / t; + return ret; } + void IntelMeter::startMeter() { - double energy_units = power_units.ESU; - uint32_t cpu, i; - uint64_t data; - size_t n = st.size(); - for (i = 0; i < n; ++i) { - cpu = cpus[i]; - data = rdmsr(cpu, 0x611); - st[i] = (data & 0xffffffff) * energy_units; - } + double energy_units = power_units.ESU; + uint32_t cpu, i; + uint64_t data; + size_t n = st.size(); + for (i = 0; i < n; ++i) { + cpu = cpus[i]; + data = rdmsr(cpu, 0x611); + st[i] = (data & 0xffffffff) * energy_units; + } } + void IntelMeter::stopMeter() { - double energy_units = power_units.ESU; - uint32_t cpu, i; - uint64_t data; - size_t n = st.size(); - eSum = 0; - for (i = 0; i < n; ++i) { - cpu = cpus[i]; - data = rdmsr(cpu, 0x611); - en[i] = (data & 0xffffffff) * energy_units; - count[i] = 0; - if (en[i] < st[i]) { - count[i] = (double) (1ll << 32) + en[i] - st[i]; - } else { - count[i] = en[i] - st[i]; + double energy_units = power_units.ESU; + uint32_t cpu, i; + uint64_t data; + size_t n = st.size(); + eSum = 0; + for (i = 0; i < n; ++i) { + cpu = cpus[i]; + data = rdmsr(cpu, 0x611); + en[i] = (data & 0xffffffff) * energy_units; + count[i] = 0; + if (en[i] < st[i]) { + count[i] = (double) (1ll << 32) + en[i] - st[i]; + } else { + count[i] = en[i] - st[i]; + } + eSum += count[i]; } - eSum += count[i]; - } } + double IntelMeter::getE() { - return eSum / 1000.0; + return eSum / 1000.0; } diff --git a/src/Utils/Meters/MeterTable.cpp b/src/Utils/Meters/MeterTable.cpp index 0a51a4d9..c72e24d3 100644 --- a/src/Utils/Meters/MeterTable.cpp +++ b/src/Utils/Meters/MeterTable.cpp @@ -1,13 +1,14 @@ #include #include #include + namespace DIVERSE_METER { /** * @note revise me if you need new loader */ -DIVERSE_METER::MeterTable::MeterTable() { - meterMap["espUart"] = newEspMeterUart(); - meterMap["intelMsr"] = newIntelMeter(); -} + DIVERSE_METER::MeterTable::MeterTable() { + meterMap["espUart"] = newEspMeterUart(); + meterMap["intelMsr"] = newIntelMeter(); + } } \ No newline at end of file diff --git a/src/Utils/UtilityFunctions.cpp b/src/Utils/UtilityFunctions.cpp index f6eaacba..ef0cae03 100755 --- a/src/Utils/UtilityFunctions.cpp +++ b/src/Utils/UtilityFunctions.cpp @@ -9,6 +9,7 @@ #include #include #include + using namespace std; /* @@ -23,77 +24,77 @@ void INTELLI::UtilityFunctions::timerEnd(Result &result) { result.timeTaken /= 1000.0; }*/ int INTELLI::UtilityFunctions::bind2Core(int id) { - if (id == -1) //OS scheduling - { - return -1; - } - int maxCpu = std::thread::hardware_concurrency(); - int cpuId = id % maxCpu; - cpu_set_t mask; - CPU_ZERO(&mask); - CPU_SET(cpuId, &mask); - /** - * @brief fixed some core bind bugs - */ - if (sched_setaffinity(0, sizeof(cpu_set_t), &mask) < 0) { - AT_ERROR("Error: setaffinity()\n"); - exit(0); - } - return cpuId; + if (id == -1) //OS scheduling + { + return -1; + } + int maxCpu = std::thread::hardware_concurrency(); + int cpuId = id % maxCpu; + cpu_set_t mask; + CPU_ZERO(&mask); + CPU_SET(cpuId, &mask); + /** + * @brief fixed some core bind bugs + */ + if (sched_setaffinity(0, sizeof(cpu_set_t), &mask) < 0) { + AT_ERROR("Error: setaffinity()\n"); + exit(0); + } + return cpuId; } vector INTELLI::UtilityFunctions::avgPartitionSizeFinal(size_t inS, std::vector partitionWeight) { - size_t partitions = partitionWeight.size(); - vector partitionSizeFinals = vector(partitions); - size_t divideLen = inS / partitions; - size_t tEnd = 0; + size_t partitions = partitionWeight.size(); + vector partitionSizeFinals = vector(partitions); + size_t divideLen = inS / partitions; + size_t tEnd = 0; - for (size_t i = 0; i < partitions - 1; i++) { - tEnd += divideLen; - partitionSizeFinals[i] = divideLen; - } - partitionSizeFinals[partitions - 1] = inS - tEnd; - return partitionSizeFinals; + for (size_t i = 0; i < partitions - 1; i++) { + tEnd += divideLen; + partitionSizeFinals[i] = divideLen; + } + partitionSizeFinals[partitions - 1] = inS - tEnd; + return partitionSizeFinals; } vector INTELLI::UtilityFunctions::weightedPartitionSizeFinal(size_t inS, std::vector partitionWeight) { - vector partitionSizes; - vector partitionSizeFinals; - size_t fraction = accumulate(partitionWeight.begin(), partitionWeight.end(), 0); - size_t tsize = 0; - for (size_t i = 0; i < partitionWeight.size() - 1; i++) { - tsize = inS * partitionWeight[i] / fraction; - partitionSizes.push_back(tsize); - } + vector partitionSizes; + vector partitionSizeFinals; + size_t fraction = accumulate(partitionWeight.begin(), partitionWeight.end(), 0); + size_t tsize = 0; + for (size_t i = 0; i < partitionWeight.size() - 1; i++) { + tsize = inS * partitionWeight[i] / fraction; + partitionSizes.push_back(tsize); + } - //check if the partition is vaild - size_t tEnd = 0; - for (size_t i = 0; i < partitionSizes.size() - 1; i++) { - if (partitionSizes[i] != 0) { - tEnd += partitionSizes[i]; - partitionSizeFinals.push_back(partitionSizes[i]); + //check if the partition is vaild + size_t tEnd = 0; + for (size_t i = 0; i < partitionSizes.size() - 1; i++) { + if (partitionSizes[i] != 0) { + tEnd += partitionSizes[i]; + partitionSizeFinals.push_back(partitionSizes[i]); + } } - } - partitionSizeFinals[partitionSizes.size() - 1] = inS - tEnd; - return partitionSizeFinals; + partitionSizeFinals[partitionSizes.size() - 1] = inS - tEnd; + return partitionSizeFinals; } size_t INTELLI::UtilityFunctions::timeLast(struct timeval ts, struct timeval te) { - int64_t s0, e0, s1, e1; - s0 = ts.tv_sec; - s1 = ts.tv_usec; - e0 = te.tv_sec; - e1 = te.tv_usec; - return 1000000 * (e0 - s0) + (e1 - s1); + int64_t s0, e0, s1, e1; + s0 = ts.tv_sec; + s1 = ts.tv_usec; + e0 = te.tv_sec; + e1 = te.tv_usec; + return 1000000 * (e0 - s0) + (e1 - s1); } size_t INTELLI::UtilityFunctions::timeLastUs(struct timeval ts) { - struct timeval te; - gettimeofday(&te, NULL); - int64_t s0, e0, s1, e1; - s0 = ts.tv_sec; - s1 = ts.tv_usec; - e0 = te.tv_sec; - e1 = te.tv_usec; - return 1000000 * (e0 - s0) + (e1 - s1); + struct timeval te; + gettimeofday(&te, NULL); + int64_t s0, e0, s1, e1; + s0 = ts.tv_sec; + s1 = ts.tv_usec; + e0 = te.tv_sec; + e1 = te.tv_usec; + return 1000000 * (e0 - s0) + (e1 - s1); } diff --git a/src/myVecAdd.cpp b/src/myVecAdd.cpp index 6f7286c5..94d1faba 100644 --- a/src/myVecAdd.cpp +++ b/src/myVecAdd.cpp @@ -5,6 +5,7 @@ #include using namespace torch; + /** * * @brief The c++ extension operation to pytorch @@ -14,60 +15,60 @@ using namespace torch; * @return tensor */ torch::Tensor myVecAdd(torch::Tensor a, torch::Tensor b) { - c10::IntArrayRef tsize = a.sizes(); - int h = tsize[0]; - int w = tsize[1]; - /** - * @brief convert tensor to vector - */ - auto ta = a.reshape({1, h * w}); - auto tb = b.reshape({1, h * w}); - std::vector va(ta.data_ptr(), ta.data_ptr() + ta.numel()); - std::vector vb(tb.data_ptr(), tb.data_ptr() + tb.numel()); - std::vector vc = std::vector(va.size()); - for (size_t i = 0; i < vc.size(); i++) { - vc[i] = va[i] + vb[i]; - } - /** - * @brief convert vector back to tensor - */ - auto opts = torch::TensorOptions().dtype(torch::kFloat32); - auto tensor2 = torch::from_blob(vc.data(), {int64_t(vc.size())}, opts).clone(); - tensor2 = tensor2.reshape({h, w}); + c10::IntArrayRef tsize = a.sizes(); + int h = tsize[0]; + int w = tsize[1]; + /** + * @brief convert tensor to vector + */ + auto ta = a.reshape({1, h * w}); + auto tb = b.reshape({1, h * w}); + std::vector va(ta.data_ptr(), ta.data_ptr() + ta.numel()); + std::vector vb(tb.data_ptr(), tb.data_ptr() + tb.numel()); + std::vector vc = std::vector(va.size()); + for (size_t i = 0; i < vc.size(); i++) { + vc[i] = va[i] + vb[i]; + } + /** + * @brief convert vector back to tensor + */ + auto opts = torch::TensorOptions().dtype(torch::kFloat32); + auto tensor2 = torch::from_blob(vc.data(), {int64_t(vc.size())}, opts).clone(); + tensor2 = tensor2.reshape({h, w}); - return tensor2.clone(); - // END output_tensor + return tensor2.clone(); + // END output_tensor } torch::Tensor myVecSub(torch::Tensor a, torch::Tensor b) { - c10::IntArrayRef tsize = a.sizes(); - int h = tsize[0]; - int w = tsize[1]; - /** - * @brief convert tensor to vector - */ - auto ta = a.reshape({1, h * w}); - auto tb = b.reshape({1, h * w}); - std::vector va(ta.data_ptr(), ta.data_ptr() + ta.numel()); - std::vector vb(tb.data_ptr(), tb.data_ptr() + tb.numel()); - std::vector vc = std::vector(va.size()); - for (size_t i = 0; i < vc.size(); i++) { - vc[i] = va[i] - vb[i]; - } - /** - * @brief convert vector back to tensor - */ - auto opts = torch::TensorOptions().dtype(torch::kFloat32); - auto tensor2 = torch::from_blob(vc.data(), {int64_t(vc.size())}, opts).clone(); - tensor2 = tensor2.reshape({h, w}); - return tensor2.clone(); - // END output_tensor + c10::IntArrayRef tsize = a.sizes(); + int h = tsize[0]; + int w = tsize[1]; + /** + * @brief convert tensor to vector + */ + auto ta = a.reshape({1, h * w}); + auto tb = b.reshape({1, h * w}); + std::vector va(ta.data_ptr(), ta.data_ptr() + ta.numel()); + std::vector vb(tb.data_ptr(), tb.data_ptr() + tb.numel()); + std::vector vc = std::vector(va.size()); + for (size_t i = 0; i < vc.size(); i++) { + vc[i] = va[i] - vb[i]; + } + /** + * @brief convert vector back to tensor + */ + auto opts = torch::TensorOptions().dtype(torch::kFloat32); + auto tensor2 = torch::from_blob(vc.data(), {int64_t(vc.size())}, opts).clone(); + tensor2 = tensor2.reshape({h, w}); + return tensor2.clone(); + // END output_tensor } /** * @brief Declare the function to pytorch * @note The of lib is myLib */ TORCH_LIBRARY(myLib, m) { - m.def("myVecAdd", myVecAdd); - m.def("myVecSub", myVecSub); + m.def("myVecAdd", myVecAdd); + m.def("myVecSub", myVecSub); } \ No newline at end of file diff --git a/src/pythonBoundings.cpp b/src/pythonBoundings.cpp new file mode 100644 index 00000000..9c966281 --- /dev/null +++ b/src/pythonBoundings.cpp @@ -0,0 +1,52 @@ +// +// Created by tony on 25/12/22. +// + +#include +#include +using namespace std; +using namespace INTELLI; +using namespace torch; +using namespace AMMBench; +int64_t algoTag=0; +std::string algoTagStr="mm"; +/** + * + * @brief The c++ bindings to crs. + * @param a + * @param b + * @note please keep input and output as tensors + * @return tensor + */ +torch::Tensor AMMBench_crs(torch::Tensor a, torch::Tensor b) { + AMMBench::CRSCPPAlgo algo; + auto w=a.sizes()[1]/10; + return algo.amm(a, b, (uint64_t)w); +} +torch::Tensor AMMBench_ammDefault(torch::Tensor a, torch::Tensor b) { + AMMBench::CPPAlgoTable cppAlgoTable; + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = cppAlgoTable.findCppAlgo(algoTagStr); + auto w=a.sizes()[1]/10; + return cppAlgoPtr->amm(a, b, (uint64_t)w); +} + +torch::Tensor AMMBench_ammSpecifySs(torch::Tensor a, torch::Tensor b,int64_t ss) { + AMMBench::CPPAlgoTable cppAlgoTable; + AMMBench::AbstractCPPAlgoPtr cppAlgoPtr = cppAlgoTable.findCppAlgo(algoTagStr); + return cppAlgoPtr->amm(a, b, (uint64_t)ss); +} +void AMMBench_setTag(std::string tag) { + algoTagStr=tag; +} + // END o +/** + * @brief Declare the function to pytorch + * @note The of lib is myLib + */ +TORCH_LIBRARY(AMMBench, m2) { + m2.def("crs",AMMBench_crs ); + m2.def("setTag", AMMBench_setTag ); + m2.def("ammDefault",AMMBench_ammDefault); + m2.def("ammSpecifySs",AMMBench_ammSpecifySs); + //m2.def("myVecSub", myVecSub); +} \ No newline at end of file diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 00ea7d7e..3be4953f 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -26,8 +26,15 @@ add_catch_test(crs_test SystemTest/CRSTest.cpp IntelliStream) add_catch_test(ews_test SystemTest/EWSTest.cpp IntelliStream) add_catch_test(weighted_cr_test SystemTest/WeightedCRTest.cpp IntelliStream) add_catch_test(smp_pca_test SystemTest/SMPPCATest.cpp IntelliStream) +add_catch_test(Block_LRA_test SystemTest/BlockLRATest.cpp IntelliStream) add_catch_test(block_partition_test SystemTest/BlockPartitionTest.cpp IntelliStream) +add_catch_test(rip_test SystemTest/RIPTest.cpp IntelliStream) add_catch_test(tug_of_war_test SystemTest/TugOfWarTest.cpp IntelliStream) add_catch_test(int8_test SystemTest/INT8Test.cpp IntelliStream) + +add_catch_test(pq_test SystemTest/PQTest.cpp IntelliStream) +add_catch_test(streaming_test SystemTest/StreamingTest.cpp IntelliStream) + add_catch_test(cl_test SystemTest/CLTest.cpp IntelliStream) + diff --git a/test/SystemTest/BlockLRATest.cpp b/test/SystemTest/BlockLRATest.cpp new file mode 100644 index 00000000..671ecfe0 --- /dev/null +++ b/test/SystemTest/BlockLRATest.cpp @@ -0,0 +1,23 @@ +#include + +#define CATCH_CONFIG_MAIN +#include "catch.hpp" +#include +using namespace std; +using namespace INTELLI; +using namespace torch; + +TEST_CASE("Test Block LRA in cpp", "[short]") +{ + torch::manual_seed(114514); + AMMBench::BlockLRACPPAlgo wcr; + auto A = torch::rand({500, 400}); + auto B = torch::rand({400, 600}); + auto realC = torch::matmul(A, B); + ConfigMapPtr cfg = newConfigMap(); + wcr.setConfig(cfg); // ok to pass empty cfg, where default values will be set + auto ammC = wcr.amm(A, B, 100); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + std::cout << "froError: " << froError << std::endl; + REQUIRE(froError < 0.5); +} \ No newline at end of file diff --git a/test/SystemTest/BlockPartitionTest.cpp b/test/SystemTest/BlockPartitionTest.cpp index 64edf7f8..56371375 100644 --- a/test/SystemTest/BlockPartitionTest.cpp +++ b/test/SystemTest/BlockPartitionTest.cpp @@ -4,70 +4,74 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the parallelization, thread=2", "[short]") { - int a = 0; - ConfigMapPtr cfg = newConfigMap(); - cfg->edit("ptFile", "torchscripts/RAWMM.pt"); - cfg->edit("threads", (uint64_t) 2); - torch::manual_seed(114514); - auto A = torch::rand({(long) 4, (long) 4}); - auto B = torch::rand({(long) 4, (long) 4}); - AMMBench::BlockPartitionRunner br; - br.setConfig(cfg); - auto C1 = br.runAMM(A, B); - auto C2 = torch::matmul(A, B); - std::cout << "parallel MM" << endl; - std::cout << C1 << std::endl; - std::cout << "raw MM" << endl; - std::cout << C2 << std::endl; - //runSingleThreadTest("scripts/config_CRS.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + ConfigMapPtr cfg = newConfigMap(); + cfg->edit("ptFile", "torchscripts/RAWMM.pt"); + cfg->edit("threads", (uint64_t) 2); + torch::manual_seed(114514); + auto A = torch::rand({(long) 4, (long) 4}); + auto B = torch::rand({(long) 4, (long) 4}); + AMMBench::BlockPartitionRunner br; + br.setConfig(cfg); + auto C1 = br.runAMM(A, B); + auto C2 = torch::matmul(A, B); + std::cout << "parallel MM" << endl; + std::cout << C1 << std::endl; + std::cout << "raw MM" << endl; + std::cout << C2 << std::endl; + //runSingleThreadTest("scripts/config_CRS.csv"); + // place your test here + REQUIRE(a == 0); } \ No newline at end of file diff --git a/test/SystemTest/CRSTest.cpp b/test/SystemTest/CRSTest.cpp index f7150d54..010d0c4b 100644 --- a/test/SystemTest/CRSTest.cpp +++ b/test/SystemTest/CRSTest.cpp @@ -1,96 +1,107 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the COLUMN ROW SAMPLINGS", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_CRS.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_CRS.csv"); + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Test the COLUMN ROW SAMPLINGS, V2", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_CRSV2.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_CRSV2.csv"); + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Test CRS in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::CRSCPPAlgo crs; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = crs.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::CRSCPPAlgo crs; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = crs.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); + std::cout << froError << std::endl; } + TEST_CASE("Test CRS v2 in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::CRSV2CPPAlgo crs; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = crs.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::CRSV2CPPAlgo crs; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = crs.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); + std::cout << froError << std::endl; } + TEST_CASE("Test Bernoulli CRS in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::BCRSCPPAlgo bcrs; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = bcrs.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::BCRSCPPAlgo bcrs; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = bcrs.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); + std::cout << froError << std::endl; } \ No newline at end of file diff --git a/test/SystemTest/EWSTest.cpp b/test/SystemTest/EWSTest.cpp index 135e132d..e9ef2b5c 100644 --- a/test/SystemTest/EWSTest.cpp +++ b/test/SystemTest/EWSTest.cpp @@ -1,67 +1,72 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the COLUMN ROW SAMPLINGS", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_EWS.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_EWS.csv"); + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Test EWS in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::EWSCPPAlgo ews; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = ews.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::EWSCPPAlgo ews; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = ews.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); } \ No newline at end of file diff --git a/test/SystemTest/FastJLTTest.cpp b/test/SystemTest/FastJLTTest.cpp new file mode 100644 index 00000000..84ce72d5 --- /dev/null +++ b/test/SystemTest/FastJLTTest.cpp @@ -0,0 +1,67 @@ +#include + +#define CATCH_CONFIG_MAIN +#include "catch.hpp" +#include +using namespace std; +using namespace INTELLI; +using namespace torch; +void runSingleThreadTest(std::string configName) { + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); +//555 +auto A = torch::rand({(long) aRow, (long) aCol}); +auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; + + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; +} +TEST_CASE("Test the FastJLT", "[short]") +{ + int a = 0; + runSingleThreadTest("scripts/config_tugOfWar.csv"); + // place your test here + REQUIRE(a == 0); +} +TEST_CASE("Test FastJLT in cpp", "[short]") +{ + torch::manual_seed(114514); + AMMBench::FastJLTCPPAlgo tw; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = tw.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 1.0); +} diff --git a/test/SystemTest/INT8Test.cpp b/test/SystemTest/INT8Test.cpp index c24f02d4..47264518 100644 --- a/test/SystemTest/INT8Test.cpp +++ b/test/SystemTest/INT8Test.cpp @@ -4,21 +4,23 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include #include + TEST_CASE("Test int8", "[short]") { - torch::manual_seed(114514); - AMMBench::INT8CPPAlgo int8mm; - auto A = torch::rand({4, 4}); - auto B = torch::rand({4, 4}); - auto realC = torch::matmul(A, B); - auto ammC = int8mm.amm(A, B, 20); - std::cout << "int8:" << std::endl; - std::cout << ammC << std::endl; - std::cout << "fp32:" << std::endl; - std::cout << realC << std::endl; - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::INT8CPPAlgo int8mm; + auto A = torch::rand({4, 4}); + auto B = torch::rand({4, 4}); + auto realC = torch::matmul(A, B); + auto ammC = int8mm.amm(A, B, 20); + std::cout << "int8:" << std::endl; + std::cout << ammC << std::endl; + std::cout << "fp32:" << std::endl; + std::cout << realC << std::endl; + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); } \ No newline at end of file diff --git a/test/SystemTest/PQTest.cpp b/test/SystemTest/PQTest.cpp new file mode 100644 index 00000000..4fa292db --- /dev/null +++ b/test/SystemTest/PQTest.cpp @@ -0,0 +1,55 @@ + +// +// Created by haolan on 25/6/23. +// +#include + +#define CATCH_CONFIG_MAIN +#include "catch.hpp" +#include +#include +TEST_CASE("Test PQ", "[short]") +{ + torch::manual_seed(114514); + AMMBench::ProductQuantizationRaw pqRaw; + auto A = torch::rand({1000, 1000}); + auto B = torch::rand({1000, 1000}); + auto realC = torch::matmul(A, B); + auto ammC = pqRaw.amm(A, B, 20); + std::cout << "PQ:" << std::endl; + std::cout << ammC << std::endl; + std::cout << "exact:" << std::endl; + std::cout << realC << std::endl; + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); +} +TEST_CASE("Test PQ Hash", "[short]") +{ + torch::manual_seed(114514); + AMMBench::ProductQuantizationHash pqHash; + auto A = torch::rand({1000, 1000}); + auto B = torch::rand({1000, 1000}); + auto realC = torch::matmul(A, B); + auto ammC = pqHash.amm(A, B, 20); + std::cout << "PQ:" << std::endl; + std::cout << ammC << std::endl; + std::cout << "exact:" << std::endl; + std::cout << realC << std::endl; + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); +} + +TEST_CASE("Test VQ", "[short]") +{ + torch::manual_seed(114514); + AMMBench::VectorQuantization vq; + auto A = torch::rand({1000, 1000}); + auto B = torch::rand({1000, 1000}); + auto realC = torch::matmul(A, B); + auto ammC = vq.amm(A, B, 1000); + torch::Tensor first_row = ammC[0]; + std::cout << first_row << std::endl; + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + std::cout << froError << std::endl; + REQUIRE(froError < 0.5); +} \ No newline at end of file diff --git a/test/SystemTest/RIPTest.cpp b/test/SystemTest/RIPTest.cpp new file mode 100644 index 00000000..27446c70 --- /dev/null +++ b/test/SystemTest/RIPTest.cpp @@ -0,0 +1,23 @@ +#include + +#define CATCH_CONFIG_MAIN + +#include "catch.hpp" +#include + +using namespace std; +using namespace INTELLI; +using namespace torch; + +TEST_CASE("Test RIP in cpp", "[short]") +{ + torch::manual_seed(114514); + AMMBench::RIPCPPAlgo rip; + auto A = torch::rand({600, 400}); + auto B = torch::rand({400, 1000}); + auto realC = torch::matmul(A, B); + auto ammC = rip.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + std::cout << froError << std::endl; + // REQUIRE(froError < 0.5); +} \ No newline at end of file diff --git a/test/SystemTest/SMPPCATest.cpp b/test/SystemTest/SMPPCATest.cpp index c609dc09..34058127 100644 --- a/test/SystemTest/SMPPCATest.cpp +++ b/test/SystemTest/SMPPCATest.cpp @@ -1,21 +1,23 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; -TEST_CASE("Test CRS in cpp", "[short]") +TEST_CASE("Test SMPPCA in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::SMPPCACPPAlgo smppca; - auto A = torch::rand({600, 400}); - auto B = torch::rand({400, 1000}); - auto realC = torch::matmul(A, B); - auto ammC = smppca.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - std::cout << froError << std::endl; - // REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::SMPPCACPPAlgo smppca; + auto A = torch::rand({600, 400}); + auto B = torch::rand({400, 1000}); + auto realC = torch::matmul(A, B); + auto ammC = smppca.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + std::cout << froError << std::endl; + // REQUIRE(froError < 0.5); } \ No newline at end of file diff --git a/test/SystemTest/SRHTTest.cpp b/test/SystemTest/SRHTTest.cpp new file mode 100644 index 00000000..c7caced7 --- /dev/null +++ b/test/SystemTest/SRHTTest.cpp @@ -0,0 +1,56 @@ +#include + +#define CATCH_CONFIG_MAIN +#include "catch.hpp" +#include +using namespace std; +using namespace INTELLI; +using namespace torch; +void runSingleThreadTest(std::string configName) { + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); +//555 +auto A = torch::rand({(long) aRow, (long) aCol}); +auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; + + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; +} +TEST_CASE("Test the COLUMN ROW SAMPLINGS", "[short]") +{ + int a = 0; + runSingleThreadTest("scripts/config_SRHT.csv"); + // place your test here + REQUIRE(a == 0); +} diff --git a/test/SystemTest/SimpleTest.cpp b/test/SystemTest/SimpleTest.cpp index 5aad51e3..e3378caf 100644 --- a/test/SystemTest/SimpleTest.cpp +++ b/test/SystemTest/SimpleTest.cpp @@ -1,34 +1,37 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include #include + using namespace std; TEST_CASE("Test basic", "[short]") { - int a = 0; - // place your test here - REQUIRE(a == 0); + int a = 0; + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Generate spase matrix", "[short]") { - int a = 0; - INTELLI::ConfigMapPtr cfg = newConfigMap(); - cfg->edit("aRow", (uint64_t) 6); - cfg->edit("aCol", (uint64_t) 6); - cfg->edit("bCol", (uint64_t) 6); - cfg->edit("aDensity", (double) 1.0); - cfg->edit("bDensity", (double) 0.5); - cfg->edit("aReduce", (uint64_t) 1); - cfg->edit("bReduce", (uint64_t) 2); - AMMBench::SparseMatrixLoader sml; - sml.setConfig(cfg); - cout << "sparse A" << endl; - cout << sml.getA() << endl; - cout << "sparse B" << endl; - cout << sml.getB() << endl; - // place your test here - REQUIRE(a == 0); + int a = 0; + INTELLI::ConfigMapPtr cfg = newConfigMap(); + cfg->edit("aRow", (uint64_t) 6); + cfg->edit("aCol", (uint64_t) 6); + cfg->edit("bCol", (uint64_t) 6); + cfg->edit("aDensity", (double) 1.0); + cfg->edit("bDensity", (double) 0.5); + cfg->edit("aReduce", (uint64_t) 1); + cfg->edit("bReduce", (uint64_t) 2); + AMMBench::SparseMatrixLoader sml; + sml.setConfig(cfg); + cout << "sparse A" << endl; + cout << sml.getA() << endl; + cout << "sparse B" << endl; + cout << sml.getB() << endl; + // place your test here + REQUIRE(a == 0); } \ No newline at end of file diff --git a/test/SystemTest/SketchTest.cpp b/test/SystemTest/SketchTest.cpp index b76a2c43..691a2148 100644 --- a/test/SystemTest/SketchTest.cpp +++ b/test/SystemTest/SketchTest.cpp @@ -1,91 +1,97 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the counter sketch", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_countSketch.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_countSketch.csv"); + // place your test here + REQUIRE(a == 0); } TEST_CASE("Test Count Sketch in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::CountSketchCPPAlgo cs; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = cs.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::CountSketchCPPAlgo cs; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = cs.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); } + TEST_CASE("Test Co-Occurring FD in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::CoOccurringFDCPPAlgo coofd; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = coofd.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::CoOccurringFDCPPAlgo coofd; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = coofd.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); } + TEST_CASE("Test Beta-Co-Occurring FD in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::BetaCoOFDCPPAlgo bcoofd; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = bcoofd.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.2); + torch::manual_seed(114514); + AMMBench::BetaCoOFDCPPAlgo bcoofd; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = bcoofd.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.2); } diff --git a/test/SystemTest/StreamingTest.cpp b/test/SystemTest/StreamingTest.cpp new file mode 100644 index 00000000..21eda4d9 --- /dev/null +++ b/test/SystemTest/StreamingTest.cpp @@ -0,0 +1,71 @@ +#define CATCH_CONFIG_MAIN + +#include "catch.hpp" +#include +#include + +using namespace std; +using namespace INTELLI; +using namespace torch; + +/* +TEST_CASE("Test the basic streaming batch 1", "[short]") +{ + ConfigMapPtr cfg = newConfigMap(); + torch::manual_seed(114514); + auto A = torch::rand({(long) 4, (long) 4}); + auto B = torch::rand({(long) 4, (long) 4}); + auto rawC = torch::matmul(A, B); + AMMBench::SingleThreadStreamer ss; + //cfg->edit("",(uint64_t)100); + ss.setConfig(cfg); + auto ssC = ss.streamingAmm(A, B); + std::cout << "raw C:" << std::endl; + std::cout << rawC << std::endl; + std::cout << "streaming C:" << std::endl; + std::cout << ssC << std::endl; + std::cout << "95% latency=" + to_string(ss.getLatencyPercentage(0.95)) << std::endl; + std::cout << "throughput=" + to_string(ss.getThroughput()) << std::endl; + // REQUIRE(froError < 0.5); +} +*/ + +TEST_CASE("Test the basic streaming batch 2", "[short]") +{ + ConfigMapPtr cfg = newConfigMap(); + torch::manual_seed(114514); + auto A = torch::rand({(long) 4, (long) 4}); + auto B = torch::rand({(long) 4, (long) 4}); + auto rawC = torch::matmul(A, B); + AMMBench::SingleThreadStreamer ss; + cfg->edit("batchSize", (uint64_t) 2); + ss.setConfig(cfg); + auto ssC = ss.streamingAmm(A, B); + std::cout << "raw C:" << std::endl; + std::cout << rawC << std::endl; + std::cout << "streaming C:" << std::endl; + std::cout << ssC << std::endl; + std::cout << "95% latency=" + to_string(ss.getLatencyPercentage(0.95)) << std::endl; + std::cout << "throughput=" + to_string(ss.getThroughput()) << std::endl; + // REQUIRE(froError < 0.5); +} +TEST_CASE("Test the basic streaming batch 1, 2 matrix in streaming", "[short]") +{ + ConfigMapPtr cfg = newConfigMap(); + torch::manual_seed(114514); + auto A = torch::rand({(long) 4, (long) 4}); + auto B = torch::rand({(long) 4, (long) 4}); + auto rawC = torch::matmul(A, B); + AMMBench::SingleThreadStreamer ss; + cfg->edit("batchSize", (uint64_t) 2); + //cfg->edit("",(uint64_t)100); + ss.setConfig(cfg); + auto ssC = ss.streamingAmm2S(A, B); + std::cout << "raw C:" << std::endl; + std::cout << rawC << std::endl; + std::cout << "streaming C:" << std::endl; + std::cout << ssC << std::endl; + std::cout << "95% latency=" + to_string(ss.getLatencyPercentage(0.95)) << std::endl; + std::cout << "throughput=" + to_string(ss.getThroughput()) << std::endl; + // REQUIRE(froError < 0.5); +} \ No newline at end of file diff --git a/test/SystemTest/TugOfWarTest.cpp b/test/SystemTest/TugOfWarTest.cpp index ccdb7f81..f87c4999 100644 --- a/test/SystemTest/TugOfWarTest.cpp +++ b/test/SystemTest/TugOfWarTest.cpp @@ -1,67 +1,72 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/FDAMM.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the Tug of War", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_tugOfWar.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_tugOfWar.csv"); + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Test Tug of War in cpp", "[short]") { - torch::manual_seed(114514); - AMMBench::TugOfWarCPPAlgo tw; - auto A = torch::rand({400, 400}); - auto B = torch::rand({400, 400}); - auto realC = torch::matmul(A, B); - auto ammC = tw.amm(A, B, 20); - double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); - REQUIRE(froError < 0.5); + torch::manual_seed(114514); + AMMBench::TugOfWarCPPAlgo tw; + auto A = torch::rand({400, 400}); + auto B = torch::rand({400, 400}); + auto realC = torch::matmul(A, B); + auto ammC = tw.amm(A, B, 20); + double froError = INTELLI::UtilityFunctions::relativeFrobeniusNorm(realC, ammC); + REQUIRE(froError < 0.5); } diff --git a/test/SystemTest/WeightedCRTest.cpp b/test/SystemTest/WeightedCRTest.cpp index 9c4b915b..213412f9 100644 --- a/test/SystemTest/WeightedCRTest.cpp +++ b/test/SystemTest/WeightedCRTest.cpp @@ -1,59 +1,64 @@ #include #define CATCH_CONFIG_MAIN + #include "catch.hpp" #include + using namespace std; using namespace INTELLI; using namespace torch; + void runSingleThreadTest(std::string configName) { - ConfigMapPtr cfg = newConfigMap(); - cfg->fromFile(configName); - AMMBench::MatrixLoaderTable mLoaderTable; - uint64_t sketchDimension; - sketchDimension = cfg->tryU64("sketchDimension", 50, true); - uint64_t coreBind = cfg->tryU64("coreBind", 0, true); - UtilityFunctions::bind2Core((int) coreBind); - torch::set_num_threads(1); - std::string ptFile = cfg->tryString("ptFile", "torchscripts/WeightedCR.pt", true); + ConfigMapPtr cfg = newConfigMap(); + cfg->fromFile(configName); + AMMBench::MatrixLoaderTable mLoaderTable; + uint64_t sketchDimension; + sketchDimension = cfg->tryU64("sketchDimension", 50, true); + uint64_t coreBind = cfg->tryU64("coreBind", 0, true); + UtilityFunctions::bind2Core((int) coreBind); + torch::set_num_threads(1); + std::string ptFile = cfg->tryString("ptFile", "torchscripts/WeightedCR.pt", true); - //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); - INTELLI_INFO("Place me at core" + to_string(coreBind)); - INTELLI_INFO( - "with sketch" + to_string(sketchDimension)); - torch::jit::script::Module module; - INTELLI_INFO("Try pt file " + ptFile); - module = torch::jit::load(ptFile); - std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); - auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); - assert(matLoaderPtr); - matLoaderPtr->setConfig(cfg); - auto A = matLoaderPtr->getA(); - auto B = matLoaderPtr->getB(); - /*torch::manual_seed(114514); -//555 -auto A = torch::rand({(long) aRow, (long) aCol}); -auto B = torch::rand({(long) aCol, (long) bCol});*/ - INTELLI_INFO("Generation done, conducting..."); - ThreadPerf pef((int) coreBind); - pef.setPerfList(); - pef.start(); - auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); - pef.end(); - std::string ruName = "default"; + //uint64_t customResultName = cfg->tryU64("customResultName", 0, true); + INTELLI_INFO("Place me at core" + to_string(coreBind)); + INTELLI_INFO( + "with sketch" + to_string(sketchDimension)); + torch::jit::script::Module module; + INTELLI_INFO("Try pt file " + ptFile); + module = torch::jit::load(ptFile); + std::string matrixLoaderTag = cfg->tryString("matrixLoaderTag", "random", true); + auto matLoaderPtr = mLoaderTable.findMatrixLoader(matrixLoaderTag); + assert(matLoaderPtr); + matLoaderPtr->setConfig(cfg); + auto A = matLoaderPtr->getA(); + auto B = matLoaderPtr->getB(); + /*torch::manual_seed(114514); + //555 + auto A = torch::rand({(long) aRow, (long) aCol}); + auto B = torch::rand({(long) aCol, (long) bCol});*/ + INTELLI_INFO("Generation done, conducting..."); + ThreadPerf pef((int) coreBind); + pef.setPerfList(); + pef.start(); + auto C =module.forward({A, B, (long) sketchDimension}).toTensor(); + pef.end(); + std::string ruName = "default"; - auto resultCsv = pef.resultToConfigMap(); - resultCsv->toFile(ruName + ".csv"); - INTELLI_INFO("Done. here is result"); - std::cout << resultCsv->toString() << endl; + auto resultCsv = pef.resultToConfigMap(); + resultCsv->toFile(ruName + ".csv"); + INTELLI_INFO("Done. here is result"); + std::cout << resultCsv->toString() << endl; } + TEST_CASE("Test the COLUMN ROW SAMPLINGS", "[short]") { - int a = 0; - runSingleThreadTest("scripts/config_WeightedCR.csv"); - // place your test here - REQUIRE(a == 0); + int a = 0; + runSingleThreadTest("scripts/config_WeightedCR.csv"); + // place your test here + REQUIRE(a == 0); } + TEST_CASE("Test Weighted CR in cpp", "[short]") { torch::manual_seed(114514); diff --git a/test/SystemTest/catch.hpp b/test/SystemTest/catch.hpp index 8d31885d..c034636c 100644 --- a/test/SystemTest/catch.hpp +++ b/test/SystemTest/catch.hpp @@ -96,7 +96,7 @@ // start catch_user_interfaces.h namespace Catch { -unsigned int rngSeed(); + unsigned int rngSeed(); } // end catch_user_interfaces.h @@ -327,7 +327,9 @@ unsigned int rngSeed(); // Check if byte is available and usable # if __has_include() && defined(CATCH_CPP17_OR_GREATER) + # include + # if defined(__cpp_lib_byte) && (__cpp_lib_byte > 0) # define CATCH_INTERNAL_CONFIG_CPP17_BYTE # endif @@ -336,7 +338,7 @@ unsigned int rngSeed(); // Check if variant is available and usable # if __has_include() && defined(CATCH_CPP17_OR_GREATER) # if defined(__clang__) && (__clang_major__ < 8) -// work around clang bug with libstdc++ https://bugs.llvm.org/show_bug.cgi?id=31852 + // work around clang bug with libstdc++ https://bugs.llvm.org/show_bug.cgi?id=31852 // fix should be in clang 8, workaround in libstdc++ 8.2 # include # if defined(__GLIBCXX__) && defined(_GLIBCXX_RELEASE) && (_GLIBCXX_RELEASE < 9) @@ -478,67 +480,80 @@ unsigned int rngSeed(); #include // We need a dummy global operator<< so we can bring it into Catch namespace later -struct Catch_global_namespace_dummy {}; +struct Catch_global_namespace_dummy { +}; + std::ostream &operator<<(std::ostream &, Catch_global_namespace_dummy); namespace Catch { -struct CaseSensitive { - enum Choice { - Yes, - No - }; -}; + struct CaseSensitive { + enum Choice { + Yes, + No + }; + }; -class NonCopyable { - NonCopyable(NonCopyable const &) = delete; - NonCopyable(NonCopyable &&) = delete; - NonCopyable &operator=(NonCopyable const &) = delete; - NonCopyable &operator=(NonCopyable &&) = delete; + class NonCopyable { + NonCopyable(NonCopyable const &) = delete; - protected: - NonCopyable(); - virtual ~NonCopyable(); -}; + NonCopyable(NonCopyable &&) = delete; -struct SourceLineInfo { + NonCopyable &operator=(NonCopyable const &) = delete; - SourceLineInfo() = delete; - SourceLineInfo(char const *_file, std::size_t _line) noexcept - : file(_file), - line(_line) {} + NonCopyable &operator=(NonCopyable &&) = delete; - SourceLineInfo(SourceLineInfo const &other) = default; - SourceLineInfo &operator=(SourceLineInfo const &) = default; - SourceLineInfo(SourceLineInfo &&) noexcept = default; - SourceLineInfo &operator=(SourceLineInfo &&) noexcept = default; + protected: + NonCopyable(); - bool empty() const noexcept { return file[0] == '\0'; } - bool operator==(SourceLineInfo const &other) const noexcept; - bool operator<(SourceLineInfo const &other) const noexcept; + virtual ~NonCopyable(); + }; - char const *file; - std::size_t line; -}; + struct SourceLineInfo { + + SourceLineInfo() = delete; + + SourceLineInfo(char const *_file, std::size_t _line) noexcept + : file(_file), + line(_line) {} + + SourceLineInfo(SourceLineInfo const &other) = default; + + SourceLineInfo &operator=(SourceLineInfo const &) = default; + + SourceLineInfo(SourceLineInfo &&) noexcept = default; + + SourceLineInfo &operator=(SourceLineInfo &&) noexcept = default; -std::ostream &operator<<(std::ostream &os, SourceLineInfo const &info); + bool empty() const noexcept { return file[0] == '\0'; } + + bool operator==(SourceLineInfo const &other) const noexcept; + + bool operator<(SourceLineInfo const &other) const noexcept; + + char const *file; + std::size_t line; + }; + + std::ostream &operator<<(std::ostream &os, SourceLineInfo const &info); // Bring in operator<< from global namespace into Catch namespace // This is necessary because the overload of operator<< above makes // lookup stop at namespace Catch -using ::operator<<; + using ::operator<<; // Use this in variadic streaming macros to allow // >> +StreamEndStop // as well as // >> stuff +StreamEndStop -struct StreamEndStop { - std::string operator+() const; -}; -template -T const &operator+(T const &value, StreamEndStop) { - return value; -} + struct StreamEndStop { + std::string operator+() const; + }; + + template + T const &operator+(T const &value, StreamEndStop) { + return value; + } } #define CATCH_INTERNAL_LINEINFO \ @@ -547,9 +562,9 @@ T const &operator+(T const &value, StreamEndStop) { // end catch_common.h namespace Catch { -struct RegistrarForTagAliases { - RegistrarForTagAliases(char const *alias, char const *tag, SourceLineInfo const &lineInfo); -}; + struct RegistrarForTagAliases { + RegistrarForTagAliases(char const *alias, char const *tag, SourceLineInfo const &lineInfo); + }; } // end namespace Catch @@ -568,28 +583,35 @@ struct RegistrarForTagAliases { namespace Catch { -class TestSpec; + class TestSpec; -struct ITestInvoker { - virtual void invoke() const = 0; - virtual ~ITestInvoker(); -}; + struct ITestInvoker { + virtual void invoke() const = 0; -class TestCase; -struct IConfig; + virtual ~ITestInvoker(); + }; -struct ITestCaseRegistry { - virtual ~ITestCaseRegistry(); - virtual std::vector const &getAllTests() const = 0; - virtual std::vector const &getAllTestsSorted(IConfig const &config) const = 0; -}; + class TestCase; -bool isThrowSafe(TestCase const &testCase, IConfig const &config); -bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config); -std::vector filterTests(std::vector const &testCases, - TestSpec const &testSpec, - IConfig const &config); -std::vector const &getAllTestCasesSorted(IConfig const &config); + struct IConfig; + + struct ITestCaseRegistry { + virtual ~ITestCaseRegistry(); + + virtual std::vector const &getAllTests() const = 0; + + virtual std::vector const &getAllTestsSorted(IConfig const &config) const = 0; + }; + + bool isThrowSafe(TestCase const &testCase, IConfig const &config); + + bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config); + + std::vector filterTests(std::vector const &testCases, + TestSpec const &testSpec, + IConfig const &config); + + std::vector const &getAllTestCasesSorted(IConfig const &config); } @@ -606,85 +628,89 @@ namespace Catch { /// A non-owning string class (similar to the forthcoming std::string_view) /// Note that, because a StringRef may be a substring of another string, /// it may not be null terminated. -class StringRef { - public: - using size_type = std::size_t; - using const_iterator = const char *; - - private: - static constexpr char const *const s_empty = ""; - - char const *m_start = s_empty; - size_type m_size = 0; - - public: // construction - constexpr StringRef() noexcept = default; - - StringRef(char const *rawChars) noexcept; - - constexpr StringRef(char const *rawChars, size_type size) noexcept - : m_start(rawChars), - m_size(size) {} - - StringRef(std::string const &stdString) noexcept - : m_start(stdString.c_str()), - m_size(stdString.size()) {} - - explicit operator std::string() const { - return std::string(m_start, m_size); - } - - public: // operators - auto operator==(StringRef const &other) const noexcept -> bool; - auto operator!=(StringRef const &other) const noexcept -> bool { - return !(*this == other); - } - - auto operator[](size_type index) const noexcept -> char { - assert(index < m_size); - return m_start[index]; - } - - public: // named queries - constexpr auto empty() const noexcept -> bool { - return m_size == 0; - } - constexpr auto size() const noexcept -> size_type { - return m_size; - } - - // Returns the current start pointer. If the StringRef is not - // null-terminated, throws std::domain_exception - auto c_str() const -> char const *; - - public: // substrings and searches - // Returns a substring of [start, start + length). - // If start + length > size(), then the substring is [start, size()). - // If start > size(), then the substring is empty. - auto substr(size_type start, size_type length) const noexcept -> StringRef; - - // Returns the current start pointer. May not be null-terminated. - auto data() const noexcept -> char const *; - - constexpr auto isNullTerminated() const noexcept -> bool { - return m_start[m_size] == '\0'; - } - - public: // iterators - constexpr const_iterator begin() const { return m_start; } - constexpr const_iterator end() const { return m_start + m_size; } -}; + class StringRef { + public: + using size_type = std::size_t; + using const_iterator = const char *; -auto operator+=(std::string &lhs, StringRef const &sr) -> std::string &; -auto operator<<(std::ostream &os, StringRef const &sr) -> std::ostream &; + private: + static constexpr char const *const s_empty = ""; -constexpr auto operator "" _sr(char const *rawChars, std::size_t size) noexcept -> StringRef { - return StringRef(rawChars, size); -} + char const *m_start = s_empty; + size_type m_size = 0; + + public: // construction + constexpr StringRef() noexcept = default; + + StringRef(char const *rawChars) noexcept; + + constexpr StringRef(char const *rawChars, size_type size) noexcept + : m_start(rawChars), + m_size(size) {} + + StringRef(std::string const &stdString) noexcept + : m_start(stdString.c_str()), + m_size(stdString.size()) {} + + explicit operator std::string() const { + return std::string(m_start, m_size); + } + + public: // operators + auto operator==(StringRef const &other) const noexcept -> bool; + + auto operator!=(StringRef const &other) const noexcept -> bool { + return !(*this == other); + } + + auto operator[](size_type index) const noexcept -> char { + assert(index < m_size); + return m_start[index]; + } + + public: // named queries + constexpr auto empty() const noexcept -> bool { + return m_size == 0; + } + + constexpr auto size() const noexcept -> size_type { + return m_size; + } + + // Returns the current start pointer. If the StringRef is not + // null-terminated, throws std::domain_exception + auto c_str() const -> char const *; + + public: // substrings and searches + // Returns a substring of [start, start + length). + // If start + length > size(), then the substring is [start, size()). + // If start > size(), then the substring is empty. + auto substr(size_type start, size_type length) const noexcept -> StringRef; + + // Returns the current start pointer. May not be null-terminated. + auto data() const noexcept -> char const *; + + constexpr auto isNullTerminated() const noexcept -> bool { + return m_start[m_size] == '\0'; + } + + public: // iterators + constexpr const_iterator begin() const { return m_start; } + + constexpr const_iterator end() const { return m_start + m_size; } + }; + + auto operator+=(std::string &lhs, StringRef const &sr) -> std::string &; + + auto operator<<(std::ostream &os, StringRef const &sr) -> std::ostream &; + + constexpr auto operator "" _sr(char const *rawChars, std::size_t size) noexcept -> StringRef { + return StringRef(rawChars, size); + } } // namespace Catch constexpr auto operator "" _catch_sr(char const *rawChars, std::size_t size) noexcept -> Catch::StringRef { - return Catch::StringRef(rawChars, size); + return Catch::StringRef(rawChars, size); } // end catch_stringref.h @@ -922,31 +948,36 @@ constexpr auto operator "" _catch_sr(char const *rawChars, std::size_t size) noe #include namespace Catch { -template -struct always_false : std::false_type {}; - -template -struct true_given : std::true_type {}; -struct is_callable_tester { - template - true_given()(std::declval()...))> static test(int); - template - std::false_type static test(...); -}; + template + struct always_false : std::false_type { + }; + + template + struct true_given : std::true_type { + }; -template -struct is_callable; + struct is_callable_tester { + template + true_given()(std::declval()...))> static test(int); + + template + std::false_type static test(...); + }; + + template + struct is_callable; -template -struct is_callable : decltype(is_callable_tester::test(0)) {}; + template + struct is_callable : decltype(is_callable_tester::test(0)) { + }; #if defined(__cpp_lib_is_invocable) && __cpp_lib_is_invocable >= 201703 // std::result_of is deprecated in C++17 and removed in C++20. Hence, it is // replaced with std::invoke_result here. -template -using FunctionReturnType = std::remove_reference_t>>; + template + using FunctionReturnType = std::remove_reference_t>>; #else -// Keep ::type here because we still support C++11 + // Keep ::type here because we still support C++11 template using FunctionReturnType = typename std::remove_reference::type>::type>::type; #endif @@ -954,45 +985,48 @@ using FunctionReturnType = typename std::remove_reference -class TestInvokerAsMethod : public ITestInvoker { - void (C::*m_testAsMethod)(); - public: - TestInvokerAsMethod(void (C::*testAsMethod)()) noexcept: m_testAsMethod(testAsMethod) {} + template + class TestInvokerAsMethod : public ITestInvoker { + void (C::*m_testAsMethod)(); - void invoke() const override { - C obj; - (obj.*m_testAsMethod)(); - } -}; + public: + TestInvokerAsMethod(void (C::*testAsMethod)()) noexcept: m_testAsMethod(testAsMethod) {} -auto makeTestInvoker(void(*testAsFunction)()) noexcept -> ITestInvoker *; + void invoke() const override { + C obj; + (obj.*m_testAsMethod)(); + } + }; -template -auto makeTestInvoker(void (C::*testAsMethod)()) noexcept -> ITestInvoker * { - return new(std::nothrow) - TestInvokerAsMethod(testAsMethod); -} + auto makeTestInvoker(void(*testAsFunction)()) noexcept -> ITestInvoker *; -struct NameAndTags { - NameAndTags(StringRef const &name_ = StringRef(), StringRef const &tags_ = StringRef()) noexcept; - StringRef name; - StringRef tags; -}; + template + auto makeTestInvoker(void (C::*testAsMethod)()) noexcept -> ITestInvoker * { + return new(std::nothrow) + TestInvokerAsMethod(testAsMethod); + } -struct AutoReg : NonCopyable { - AutoReg(ITestInvoker *invoker, - SourceLineInfo const &lineInfo, - StringRef const &classOrMethod, - NameAndTags const &nameAndTags) noexcept; - ~AutoReg(); -}; + struct NameAndTags { + NameAndTags(StringRef const &name_ = StringRef(), StringRef const &tags_ = StringRef()) noexcept; + + StringRef name; + StringRef tags; + }; + + struct AutoReg : NonCopyable { + AutoReg(ITestInvoker *invoker, + SourceLineInfo const &lineInfo, + StringRef const &classOrMethod, + NameAndTags const &nameAndTags) noexcept; + + ~AutoReg(); + }; } // end namespace Catch @@ -1356,63 +1390,66 @@ struct AutoReg : NonCopyable { namespace Catch { // ResultWas::OfType enum -struct ResultWas { - enum OfType { - Unknown = -1, - Ok = 0, - Info = 1, - Warning = 2, + struct ResultWas { + enum OfType { + Unknown = -1, + Ok = 0, + Info = 1, + Warning = 2, - FailureBit = 0x10, + FailureBit = 0x10, - ExpressionFailed = FailureBit | 1, - ExplicitFailure = FailureBit | 2, + ExpressionFailed = FailureBit | 1, + ExplicitFailure = FailureBit | 2, - Exception = 0x100 | FailureBit, + Exception = 0x100 | FailureBit, - ThrewException = Exception | 1, - DidntThrowException = Exception | 2, + ThrewException = Exception | 1, + DidntThrowException = Exception | 2, - FatalErrorCondition = 0x200 | FailureBit + FatalErrorCondition = 0x200 | FailureBit - }; -}; + }; + }; -bool isOk(ResultWas::OfType resultType); -bool isJustInfo(int flags); + bool isOk(ResultWas::OfType resultType); + + bool isJustInfo(int flags); // ResultDisposition::Flags enum -struct ResultDisposition { - enum Flags { - Normal = 0x01, - - ContinueOnFailure = 0x02, // Failures fail test, but execution continues - FalseTest = 0x04, // Prefix expression with ! - SuppressFail = 0x08 // Failures are reported but do not fail the test - }; -}; + struct ResultDisposition { + enum Flags { + Normal = 0x01, + + ContinueOnFailure = 0x02, // Failures fail test, but execution continues + FalseTest = 0x04, // Prefix expression with ! + SuppressFail = 0x08 // Failures are reported but do not fail the test + }; + }; + + ResultDisposition::Flags operator|(ResultDisposition::Flags lhs, ResultDisposition::Flags rhs); -ResultDisposition::Flags operator|(ResultDisposition::Flags lhs, ResultDisposition::Flags rhs); + bool shouldContinueOnFailure(int flags); -bool shouldContinueOnFailure(int flags); -inline bool isFalseTest(int flags) { return (flags & ResultDisposition::FalseTest) != 0; } -bool shouldSuppressFailure(int flags); + inline bool isFalseTest(int flags) { return (flags & ResultDisposition::FalseTest) != 0; } + + bool shouldSuppressFailure(int flags); } // end namespace Catch // end catch_result_type.h namespace Catch { -struct AssertionInfo { - StringRef macroName; - SourceLineInfo lineInfo; - StringRef capturedExpression; - ResultDisposition::Flags resultDisposition; + struct AssertionInfo { + StringRef macroName; + SourceLineInfo lineInfo; + StringRef capturedExpression; + ResultDisposition::Flags resultDisposition; - // We want to delete this constructor but a compiler bug in 4.8 means - // the struct is then treated as non-aggregate - //AssertionInfo() = delete; -}; + // We want to delete this constructor but a compiler bug in 4.8 means + // the struct is then treated as non-aggregate + //AssertionInfo() = delete; + }; } // end namespace Catch @@ -1433,35 +1470,40 @@ struct AssertionInfo { namespace Catch { -std::ostream &cout(); -std::ostream &cerr(); -std::ostream &clog(); + std::ostream &cout(); -class StringRef; + std::ostream &cerr(); -struct IStream { - virtual ~IStream(); - virtual std::ostream &stream() const = 0; -}; + std::ostream &clog(); -auto makeStream(StringRef const &filename) -> IStream const *; + class StringRef; -class ReusableStringStream : NonCopyable { - std::size_t m_index; - std::ostream *m_oss; - public: - ReusableStringStream(); - ~ReusableStringStream(); + struct IStream { + virtual ~IStream(); - auto str() const -> std::string; + virtual std::ostream &stream() const = 0; + }; - template - auto operator<<(T const &value) -> ReusableStringStream & { - *m_oss << value; - return *this; - } - auto get() -> std::ostream & { return *m_oss; } -}; + auto makeStream(StringRef const &filename) -> IStream const *; + + class ReusableStringStream : NonCopyable { + std::size_t m_index; + std::ostream *m_oss; + public: + ReusableStringStream(); + + ~ReusableStringStream(); + + auto str() const -> std::string; + + template + auto operator<<(T const &value) -> ReusableStringStream & { + *m_oss << value; + return *this; + } + + auto get() -> std::ostream & { return *m_oss; } + }; } // end catch_stream.h @@ -1471,41 +1513,43 @@ class ReusableStringStream : NonCopyable { namespace Catch { -namespace Detail { -struct EnumInfo { - StringRef m_name; - std::vector> m_values; + namespace Detail { + struct EnumInfo { + StringRef m_name; + std::vector> m_values; + + ~EnumInfo(); - ~EnumInfo(); + StringRef lookup(int value) const; + }; + } // namespace Detail - StringRef lookup(int value) const; -}; -} // namespace Detail - -struct IMutableEnumValuesRegistry { - virtual ~IMutableEnumValuesRegistry(); - - virtual Detail::EnumInfo const ®isterEnum(StringRef enumName, - StringRef allEnums, - std::vector const &values) = 0; - - template - Detail::EnumInfo const ®isterEnum(StringRef enumName, StringRef allEnums, std::initializer_list values) { - static_assert(sizeof(int) >= sizeof(E), "Cannot serialize enum to int"); - std::vector intValues; - intValues.reserve(values.size()); - for (auto enumValue : values) - intValues.push_back(static_cast( enumValue )); - return registerEnum(enumName, allEnums, intValues); - } -}; + struct IMutableEnumValuesRegistry { + virtual ~IMutableEnumValuesRegistry(); + + virtual Detail::EnumInfo const ®isterEnum(StringRef enumName, + StringRef allEnums, + std::vector const &values) = 0; + + template + Detail::EnumInfo const ®isterEnum(StringRef enumName, StringRef allEnums, std::initializer_list values) { + static_assert(sizeof(int) >= sizeof(E), "Cannot serialize enum to int"); + std::vector intValues; + intValues.reserve(values.size()); + for (auto enumValue: values) + intValues.push_back(static_cast( enumValue )); + return registerEnum(enumName, allEnums, intValues); + } + }; } // Catch // end catch_interfaces_enum_values_registry.h #ifdef CATCH_CONFIG_CPP17_STRING_VIEW + #include + #endif #ifdef __OBJC__ @@ -1560,54 +1604,55 @@ inline id performOptionalSelector( id obj, SEL sel ) { #endif namespace Catch { -namespace Detail { + namespace Detail { -extern const std::string unprintableString; + extern const std::string unprintableString; -std::string rawMemoryToString(const void *object, std::size_t size); + std::string rawMemoryToString(const void *object, std::size_t size); -template -std::string rawMemoryToString(const T &object) { - return rawMemoryToString(&object, sizeof(object)); -} + template + std::string rawMemoryToString(const T &object) { + return rawMemoryToString(&object, sizeof(object)); + } -template -class IsStreamInsertable { - template - static auto test(int) - -> decltype(std::declval() << std::declval(), std::true_type()); + template + class IsStreamInsertable { + template + static auto test(int) + -> decltype(std::declval() << std::declval(), std::true_type()); - template - static auto test(...) -> std::false_type; + template + static auto test(...) -> std::false_type; - public: - static const bool value = decltype(test(0))::value; -}; + public: + static const bool value = decltype(test(0))::value; + }; -template -std::string convertUnknownEnumToString(E e); + template + std::string convertUnknownEnumToString(E e); -template -typename std::enable_if< - !std::is_enum::value && !std::is_base_of::value, - std::string>::type convertUnstreamable(T const &) { - return Detail::unprintableString; -} -template -typename std::enable_if< - !std::is_enum::value && std::is_base_of::value, - std::string>::type convertUnstreamable(T const &ex) { - return ex.what(); -} + template + typename std::enable_if< + !std::is_enum::value && !std::is_base_of::value, + std::string>::type convertUnstreamable(T const &) { + return Detail::unprintableString; + } -template -typename std::enable_if< - std::is_enum::value, std::string>::type convertUnstreamable(T const &value) { - return convertUnknownEnumToString(value); -} + template + typename std::enable_if< + !std::is_enum::value && std::is_base_of::value, + std::string>::type convertUnstreamable(T const &ex) { + return ex.what(); + } + + template + typename std::enable_if< + std::is_enum::value, std::string>::type convertUnstreamable(T const &value) { + return convertUnknownEnumToString(value); + } #if defined(_MANAGED) - //! Convert a CLR string to a utf8 std::string + //! Convert a CLR string to a utf8 std::string template std::string clrReferenceToString( T^ ref ) { if (ref == nullptr) @@ -1618,248 +1663,271 @@ typename std::enable_if< } #endif -} // namespace Detail + } // namespace Detail // If we decide for C++14, change these to enable_if_ts -template -struct StringMaker { - template - static - typename std::enable_if<::Catch::Detail::IsStreamInsertable::value, std::string>::type - convert(const Fake &value) { - ReusableStringStream rss; - // NB: call using the function-like syntax to avoid ambiguity with - // user-defined templated operator<< under clang. - rss.operator<<(value); - return rss.str(); - } - - template - static - typename std::enable_if::value, std::string>::type - convert(const Fake &value) { + template + struct StringMaker { + template + static + typename std::enable_if<::Catch::Detail::IsStreamInsertable::value, std::string>::type + convert(const Fake &value) { + ReusableStringStream rss; + // NB: call using the function-like syntax to avoid ambiguity with + // user-defined templated operator<< under clang. + rss.operator<<(value); + return rss.str(); + } + + template + static + typename std::enable_if::value, std::string>::type + convert(const Fake &value) { #if !defined(CATCH_CONFIG_FALLBACK_STRINGIFIER) - return Detail::convertUnstreamable(value); + return Detail::convertUnstreamable(value); #else - return CATCH_CONFIG_FALLBACK_STRINGIFIER(value); + return CATCH_CONFIG_FALLBACK_STRINGIFIER(value); #endif - } -}; + } + }; -namespace Detail { + namespace Detail { // This function dispatches all stringification requests inside of Catch. // Should be preferably called fully qualified, like ::Catch::Detail::stringify -template -std::string stringify(const T &e) { - return ::Catch::StringMaker::type>::type>::convert(e); -} + template + std::string stringify(const T &e) { + return ::Catch::StringMaker::type>::type>::convert( + e); + } -template -std::string convertUnknownEnumToString(E e) { - return ::Catch::Detail::stringify(static_cast::type>(e)); -} + template + std::string convertUnknownEnumToString(E e) { + return ::Catch::Detail::stringify(static_cast::type>(e)); + } #if defined(_MANAGED) - template + template std::string stringify( T^ e ) { return ::Catch::StringMaker::convert(e); } #endif -} // namespace Detail + } // namespace Detail // Some predefined specializations -template<> -struct StringMaker { - static std::string convert(const std::string &str); -}; + template<> + struct StringMaker { + static std::string convert(const std::string &str); + }; #ifdef CATCH_CONFIG_CPP17_STRING_VIEW -template<> -struct StringMaker { - static std::string convert(std::string_view str); -}; + + template<> + struct StringMaker { + static std::string convert(std::string_view str); + }; + #endif -template<> -struct StringMaker { - static std::string convert(char const *str); -}; -template<> -struct StringMaker { - static std::string convert(char *str); -}; + template<> + struct StringMaker { + static std::string convert(char const *str); + }; + + template<> + struct StringMaker { + static std::string convert(char *str); + }; #ifdef CATCH_CONFIG_WCHAR -template<> -struct StringMaker { - static std::string convert(const std::wstring &wstr); -}; + + template<> + struct StringMaker { + static std::string convert(const std::wstring &wstr); + }; # ifdef CATCH_CONFIG_CPP17_STRING_VIEW -template<> -struct StringMaker { - static std::string convert(std::wstring_view str); -}; + + template<> + struct StringMaker { + static std::string convert(std::wstring_view str); + }; + # endif -template<> -struct StringMaker { - static std::string convert(wchar_t const *str); -}; -template<> -struct StringMaker { - static std::string convert(wchar_t *str); -}; + template<> + struct StringMaker { + static std::string convert(wchar_t const *str); + }; + + template<> + struct StringMaker { + static std::string convert(wchar_t *str); + }; + #endif // TBD: Should we use `strnlen` to ensure that we don't go out of the buffer, // while keeping string semantics? -template -struct StringMaker { - static std::string convert(char const *str) { - return ::Catch::Detail::stringify(std::string{str}); - } -}; -template -struct StringMaker { - static std::string convert(signed char const *str) { - return ::Catch::Detail::stringify(std::string{reinterpret_cast(str)}); - } -}; -template -struct StringMaker { - static std::string convert(unsigned char const *str) { - return ::Catch::Detail::stringify(std::string{reinterpret_cast(str)}); - } -}; + template + struct StringMaker { + static std::string convert(char const *str) { + return ::Catch::Detail::stringify(std::string{str}); + } + }; -#if defined(CATCH_CONFIG_CPP17_BYTE) -template<> -struct StringMaker { - static std::string convert(std::byte value); -}; -#endif // defined(CATCH_CONFIG_CPP17_BYTE) -template<> -struct StringMaker { - static std::string convert(int value); -}; -template<> -struct StringMaker { - static std::string convert(long value); -}; -template<> -struct StringMaker { - static std::string convert(long long value); -}; -template<> -struct StringMaker { - static std::string convert(unsigned int value); -}; -template<> -struct StringMaker { - static std::string convert(unsigned long value); -}; -template<> -struct StringMaker { - static std::string convert(unsigned long long value); -}; + template + struct StringMaker { + static std::string convert(signed char const *str) { + return ::Catch::Detail::stringify(std::string{reinterpret_cast(str)}); + } + }; -template<> -struct StringMaker { - static std::string convert(bool b); -}; + template + struct StringMaker { + static std::string convert(unsigned char const *str) { + return ::Catch::Detail::stringify(std::string{reinterpret_cast(str)}); + } + }; -template<> -struct StringMaker { - static std::string convert(char c); -}; -template<> -struct StringMaker { - static std::string convert(signed char c); -}; -template<> -struct StringMaker { - static std::string convert(unsigned char c); -}; +#if defined(CATCH_CONFIG_CPP17_BYTE) -template<> -struct StringMaker { - static std::string convert(std::nullptr_t); -}; + template<> + struct StringMaker { + static std::string convert(std::byte value); + }; -template<> -struct StringMaker { - static std::string convert(float value); - static int precision; -}; +#endif // defined(CATCH_CONFIG_CPP17_BYTE) -template<> -struct StringMaker { - static std::string convert(double value); - static int precision; -}; + template<> + struct StringMaker { + static std::string convert(int value); + }; -template -struct StringMaker { - template - static std::string convert(U *p) { - if (p) { - return ::Catch::Detail::rawMemoryToString(p); - } else { - return "nullptr"; - } - } -}; + template<> + struct StringMaker { + static std::string convert(long value); + }; -template -struct StringMaker { - static std::string convert(R C::* p) { - if (p) { - return ::Catch::Detail::rawMemoryToString(p); - } else { - return "nullptr"; - } - } -}; + template<> + struct StringMaker { + static std::string convert(long long value); + }; -#if defined(_MANAGED) - template - struct StringMaker { - static std::string convert( T^ ref ) { - return ::Catch::Detail::clrReferenceToString(ref); - } + template<> + struct StringMaker { + static std::string convert(unsigned int value); }; -#endif -namespace Detail { -template -std::string rangeToString(InputIterator first, Sentinel last) { - ReusableStringStream rss; - rss << "{ "; - if (first != last) { - rss << ::Catch::Detail::stringify(*first); - for (++first; first != last; ++first) - rss << ", " << ::Catch::Detail::stringify(*first); - } - rss << " }"; - return rss.str(); -} -} + template<> + struct StringMaker { + static std::string convert(unsigned long value); + }; -#ifdef __OBJC__ - template<> - struct StringMaker { - static std::string convert(NSString * nsstring) { - if (!nsstring) - return "nil"; - return std::string("@") + [nsstring UTF8String]; - } + template<> + struct StringMaker { + static std::string convert(unsigned long long value); }; + template<> - struct StringMaker { + struct StringMaker { + static std::string convert(bool b); + }; + + template<> + struct StringMaker { + static std::string convert(char c); + }; + + template<> + struct StringMaker { + static std::string convert(signed char c); + }; + + template<> + struct StringMaker { + static std::string convert(unsigned char c); + }; + + template<> + struct StringMaker { + static std::string convert(std::nullptr_t); + }; + + template<> + struct StringMaker { + static std::string convert(float value); + + static int precision; + }; + + template<> + struct StringMaker { + static std::string convert(double value); + + static int precision; + }; + + template + struct StringMaker { + template + static std::string convert(U *p) { + if (p) { + return ::Catch::Detail::rawMemoryToString(p); + } else { + return "nullptr"; + } + } + }; + + template + struct StringMaker { + static std::string convert(R C::* p) { + if (p) { + return ::Catch::Detail::rawMemoryToString(p); + } else { + return "nullptr"; + } + } + }; + +#if defined(_MANAGED) + template + struct StringMaker { + static std::string convert( T^ ref ) { + return ::Catch::Detail::clrReferenceToString(ref); + } + }; +#endif + + namespace Detail { + template + std::string rangeToString(InputIterator first, Sentinel last) { + ReusableStringStream rss; + rss << "{ "; + if (first != last) { + rss << ::Catch::Detail::stringify(*first); + for (++first; first != last; ++first) + rss << ", " << ::Catch::Detail::stringify(*first); + } + rss << " }"; + return rss.str(); + } + } + +#ifdef __OBJC__ + template<> + struct StringMaker { + static std::string convert(NSString * nsstring) { + if (!nsstring) + return "nil"; + return std::string("@") + [nsstring UTF8String]; + } + }; + template<> + struct StringMaker { static std::string convert(NSObject* nsObject) { return ::Catch::Detail::stringify([nsObject description]); } @@ -1995,189 +2063,200 @@ namespace Catch { namespace Catch { // Import begin/ end from std here -using std::begin; -using std::end; + using std::begin; + using std::end; -namespace detail { -template -struct void_type { - using type = void; -}; + namespace detail { + template + struct void_type { + using type = void; + }; -template -struct is_range_impl : std::false_type { -}; + template + struct is_range_impl : std::false_type { + }; -template -struct is_range_impl()))>::type> : std::true_type { -}; -} // namespace detail + template + struct is_range_impl()))>::type> : std::true_type { + }; + } // namespace detail -template -struct is_range : detail::is_range_impl { -}; + template + struct is_range : detail::is_range_impl { + }; #if defined(_MANAGED) // Managed types are never ranges - template + template struct is_range { static const bool value = false; }; #endif -template -std::string rangeToString(Range const &range) { - return ::Catch::Detail::rangeToString(begin(range), end(range)); -} + template + std::string rangeToString(Range const &range) { + return ::Catch::Detail::rangeToString(begin(range), end(range)); + } // Handle vector specially -template -std::string rangeToString(std::vector const &v) { - ReusableStringStream rss; - rss << "{ "; - bool first = true; - for (bool b : v) { - if (first) - first = false; - else - rss << ", "; - rss << ::Catch::Detail::stringify(b); - } - rss << " }"; - return rss.str(); -} + template + std::string rangeToString(std::vector const &v) { + ReusableStringStream rss; + rss << "{ "; + bool first = true; + for (bool b: v) { + if (first) + first = false; + else + rss << ", "; + rss << ::Catch::Detail::stringify(b); + } + rss << " }"; + return rss.str(); + } -template -struct StringMaker::value && !::Catch::Detail::IsStreamInsertable::value>::type> { - static std::string convert(R const &range) { - return rangeToString(range); - } -}; + template + struct StringMaker::value && !::Catch::Detail::IsStreamInsertable::value>::type> { + static std::string convert(R const &range) { + return rangeToString(range); + } + }; -template -struct StringMaker { - static std::string convert(T const(&arr)[SZ]) { - return rangeToString(arr); - } -}; + template + struct StringMaker { + static std::string convert(T const(&arr)[SZ]) { + return rangeToString(arr); + } + }; } // namespace Catch // Separate std::chrono::duration specialization #if defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER) + #include #include #include namespace Catch { -template -struct ratio_string { - static std::string symbol(); -}; + template + struct ratio_string { + static std::string symbol(); + }; -template -std::string ratio_string::symbol() { - Catch::ReusableStringStream rss; - rss << '[' << Ratio::num << '/' - << Ratio::den << ']'; - return rss.str(); -} -template<> -struct ratio_string { - static std::string symbol(); -}; -template<> -struct ratio_string { - static std::string symbol(); -}; -template<> -struct ratio_string { - static std::string symbol(); -}; -template<> -struct ratio_string { - static std::string symbol(); -}; -template<> -struct ratio_string { - static std::string symbol(); -}; -template<> -struct ratio_string { - static std::string symbol(); -}; + template + std::string ratio_string::symbol() { + Catch::ReusableStringStream rss; + rss << '[' << Ratio::num << '/' + << Ratio::den << ']'; + return rss.str(); + } + + template<> + struct ratio_string { + static std::string symbol(); + }; + + template<> + struct ratio_string { + static std::string symbol(); + }; + + template<> + struct ratio_string { + static std::string symbol(); + }; + + template<> + struct ratio_string { + static std::string symbol(); + }; + + template<> + struct ratio_string { + static std::string symbol(); + }; + + template<> + struct ratio_string { + static std::string symbol(); + }; //////////// // std::chrono::duration specializations -template -struct StringMaker> { - static std::string convert(std::chrono::duration const &duration) { - ReusableStringStream rss; - rss << duration.count() << ' ' << ratio_string::symbol() << 's'; - return rss.str(); - } -}; -template -struct StringMaker>> { - static std::string convert(std::chrono::duration> const &duration) { - ReusableStringStream rss; - rss << duration.count() << " s"; - return rss.str(); - } -}; -template -struct StringMaker>> { - static std::string convert(std::chrono::duration> const &duration) { - ReusableStringStream rss; - rss << duration.count() << " m"; - return rss.str(); - } -}; -template -struct StringMaker>> { - static std::string convert(std::chrono::duration> const &duration) { - ReusableStringStream rss; - rss << duration.count() << " h"; - return rss.str(); - } -}; + template + struct StringMaker> { + static std::string convert(std::chrono::duration const &duration) { + ReusableStringStream rss; + rss << duration.count() << ' ' << ratio_string::symbol() << 's'; + return rss.str(); + } + }; + + template + struct StringMaker>> { + static std::string convert(std::chrono::duration> const &duration) { + ReusableStringStream rss; + rss << duration.count() << " s"; + return rss.str(); + } + }; + + template + struct StringMaker>> { + static std::string convert(std::chrono::duration> const &duration) { + ReusableStringStream rss; + rss << duration.count() << " m"; + return rss.str(); + } + }; + + template + struct StringMaker>> { + static std::string convert(std::chrono::duration> const &duration) { + ReusableStringStream rss; + rss << duration.count() << " h"; + return rss.str(); + } + }; //////////// // std::chrono::time_point specialization // Generic time_point cannot be specialized, only std::chrono::time_point -template -struct StringMaker> { - static std::string convert(std::chrono::time_point const &time_point) { - return ::Catch::Detail::stringify(time_point.time_since_epoch()) + " since epoch"; - } -}; + template + struct StringMaker> { + static std::string convert(std::chrono::time_point const &time_point) { + return ::Catch::Detail::stringify(time_point.time_since_epoch()) + " since epoch"; + } + }; + // std::chrono::time_point specialization -template -struct StringMaker> { - static std::string convert(std::chrono::time_point const &time_point) { - auto converted = std::chrono::system_clock::to_time_t(time_point); + template + struct StringMaker> { + static std::string convert(std::chrono::time_point const &time_point) { + auto converted = std::chrono::system_clock::to_time_t(time_point); #ifdef _MSC_VER - std::tm timeInfo = {}; + std::tm timeInfo = {}; gmtime_s(&timeInfo, &converted); #else - std::tm *timeInfo = std::gmtime(&converted); + std::tm *timeInfo = std::gmtime(&converted); #endif - auto const timeStampSize = sizeof("2017-01-16T17:06:45Z"); - char timeStamp[timeStampSize]; - const char *const fmt = "%Y-%m-%dT%H:%M:%SZ"; + auto const timeStampSize = sizeof("2017-01-16T17:06:45Z"); + char timeStamp[timeStampSize]; + const char *const fmt = "%Y-%m-%dT%H:%M:%SZ"; #ifdef _MSC_VER - std::strftime(timeStamp, timeStampSize, fmt, &timeInfo); + std::strftime(timeStamp, timeStampSize, fmt, &timeInfo); #else - std::strftime(timeStamp, timeStampSize, fmt, timeInfo); + std::strftime(timeStamp, timeStampSize, fmt, timeInfo); #endif - return std::string(timeStamp); - } -}; + return std::string(timeStamp); + } + }; } #endif // CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER @@ -2211,225 +2290,243 @@ namespace Catch { \ namespace Catch { -struct ITransientExpression { - auto isBinaryExpression() const -> bool { return m_isBinaryExpression; } - auto getResult() const -> bool { return m_result; } - virtual void streamReconstructedExpression(std::ostream &os) const = 0; + struct ITransientExpression { + auto isBinaryExpression() const -> bool { return m_isBinaryExpression; } - ITransientExpression(bool isBinaryExpression, bool result) - : m_isBinaryExpression(isBinaryExpression), - m_result(result) {} + auto getResult() const -> bool { return m_result; } - // We don't actually need a virtual destructor, but many static analysers - // complain if it's not here :-( - virtual ~ITransientExpression(); + virtual void streamReconstructedExpression(std::ostream &os) const = 0; - bool m_isBinaryExpression; - bool m_result; + ITransientExpression(bool isBinaryExpression, bool result) + : m_isBinaryExpression(isBinaryExpression), + m_result(result) {} -}; + // We don't actually need a virtual destructor, but many static analysers + // complain if it's not here :-( + virtual ~ITransientExpression(); -void formatReconstructedExpression(std::ostream &os, std::string const &lhs, StringRef op, std::string const &rhs); - -template -class BinaryExpr : public ITransientExpression { - LhsT m_lhs; - StringRef m_op; - RhsT m_rhs; - - void streamReconstructedExpression(std::ostream &os) const override { - formatReconstructedExpression - (os, Catch::Detail::stringify(m_lhs), m_op, Catch::Detail::stringify(m_rhs)); - } - - public: - BinaryExpr(bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs) - : ITransientExpression{true, comparisonResult}, - m_lhs(lhs), - m_op(op), - m_rhs(rhs) {} - - template - auto operator&&(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator||(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator==(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator!=(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator>(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator<(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator>=(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator<=(T) const -> BinaryExpr const { - static_assert(always_false::value, - "chained comparisons are not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } -}; + bool m_isBinaryExpression; + bool m_result; -template -class UnaryExpr : public ITransientExpression { - LhsT m_lhs; + }; - void streamReconstructedExpression(std::ostream &os) const override { - os << Catch::Detail::stringify(m_lhs); - } + void formatReconstructedExpression(std::ostream &os, std::string const &lhs, StringRef op, std::string const &rhs); - public: - explicit UnaryExpr(LhsT lhs) - : ITransientExpression{false, static_cast(lhs)}, - m_lhs(lhs) {} -}; + template + class BinaryExpr : public ITransientExpression { + LhsT m_lhs; + StringRef m_op; + RhsT m_rhs; + + void streamReconstructedExpression(std::ostream &os) const override { + formatReconstructedExpression + (os, Catch::Detail::stringify(m_lhs), m_op, Catch::Detail::stringify(m_rhs)); + } + + public: + BinaryExpr(bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs) + : ITransientExpression{true, comparisonResult}, + m_lhs(lhs), + m_op(op), + m_rhs(rhs) {} + + template + auto operator&&(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator||(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator==(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator!=(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator>(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator<(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator>=(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator<=(T) const -> BinaryExpr const { + static_assert(always_false::value, + "chained comparisons are not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + }; + + template + class UnaryExpr : public ITransientExpression { + LhsT m_lhs; + + void streamReconstructedExpression(std::ostream &os) const override { + os << Catch::Detail::stringify(m_lhs); + } + + public: + explicit UnaryExpr(LhsT lhs) + : ITransientExpression{false, static_cast(lhs)}, + m_lhs(lhs) {} + }; // Specialised comparison functions to handle equality comparisons between ints and pointers (NULL deduces as an int) -template -auto compareEqual(LhsT const &lhs, RhsT const &rhs) -> bool { return static_cast(lhs == rhs); } -template -auto compareEqual(T *const &lhs, int rhs) -> bool { return lhs == reinterpret_cast( rhs ); } -template -auto compareEqual(T *const &lhs, long rhs) -> bool { return lhs == reinterpret_cast( rhs ); } -template -auto compareEqual(int lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) == rhs; } -template -auto compareEqual(long lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) == rhs; } - -template -auto compareNotEqual(LhsT const &lhs, RhsT &&rhs) -> bool { return static_cast(lhs != rhs); } -template -auto compareNotEqual(T *const &lhs, int rhs) -> bool { return lhs != reinterpret_cast( rhs ); } -template -auto compareNotEqual(T *const &lhs, long rhs) -> bool { return lhs != reinterpret_cast( rhs ); } -template -auto compareNotEqual(int lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) != rhs; } -template -auto compareNotEqual(long lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) != rhs; } - -template -class ExprLhs { - LhsT m_lhs; - public: - explicit ExprLhs(LhsT lhs) : m_lhs(lhs) {} - - template - auto operator==(RhsT const &rhs) -> BinaryExpr const { - return {compareEqual(m_lhs, rhs), m_lhs, "==", rhs}; - } - auto operator==(bool rhs) -> BinaryExpr const { - return {m_lhs == rhs, m_lhs, "==", rhs}; - } - - template - auto operator!=(RhsT const &rhs) -> BinaryExpr const { - return {compareNotEqual(m_lhs, rhs), m_lhs, "!=", rhs}; - } - auto operator!=(bool rhs) -> BinaryExpr const { - return {m_lhs != rhs, m_lhs, "!=", rhs}; - } - - template - auto operator>(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs > rhs), m_lhs, ">", rhs}; - } - template - auto operator<(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs < rhs), m_lhs, "<", rhs}; - } - template - auto operator>=(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs >= rhs), m_lhs, ">=", rhs}; - } - template - auto operator<=(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs <= rhs), m_lhs, "<=", rhs}; - } - template - auto operator|(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs | rhs), m_lhs, "|", rhs}; - } - template - auto operator&(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs & rhs), m_lhs, "&", rhs}; - } - template - auto operator^(RhsT const &rhs) -> BinaryExpr const { - return {static_cast(m_lhs ^ rhs), m_lhs, "^", rhs}; - } - - template - auto operator&&(RhsT const &) -> BinaryExpr const { - static_assert(always_false::value, - "operator&& is not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - template - auto operator||(RhsT const &) -> BinaryExpr const { - static_assert(always_false::value, - "operator|| is not supported inside assertions, " - "wrap the expression inside parentheses, or decompose it"); - } - - auto makeUnaryExpr() const -> UnaryExpr { - return UnaryExpr{m_lhs}; - } -}; + template + auto compareEqual(LhsT const &lhs, RhsT const &rhs) -> bool { return static_cast(lhs == rhs); } -void handleExpression(ITransientExpression const &expr); + template + auto compareEqual(T *const &lhs, int rhs) -> bool { return lhs == reinterpret_cast( rhs ); } -template -void handleExpression(ExprLhs const &expr) { - handleExpression(expr.makeUnaryExpr()); -} + template + auto compareEqual(T *const &lhs, long rhs) -> bool { return lhs == reinterpret_cast( rhs ); } -struct Decomposer { - template - auto operator<=(T const &lhs) -> ExprLhs { - return ExprLhs{lhs}; - } + template + auto compareEqual(int lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) == rhs; } - auto operator<=(bool value) -> ExprLhs { - return ExprLhs{value}; - } -}; + template + auto compareEqual(long lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) == rhs; } + + template + auto compareNotEqual(LhsT const &lhs, RhsT &&rhs) -> bool { return static_cast(lhs != rhs); } + + template + auto compareNotEqual(T *const &lhs, int rhs) -> bool { return lhs != reinterpret_cast( rhs ); } + + template + auto compareNotEqual(T *const &lhs, long rhs) -> bool { return lhs != reinterpret_cast( rhs ); } + + template + auto compareNotEqual(int lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) != rhs; } + + template + auto compareNotEqual(long lhs, T *const &rhs) -> bool { return reinterpret_cast( lhs ) != rhs; } + + template + class ExprLhs { + LhsT m_lhs; + public: + explicit ExprLhs(LhsT lhs) : m_lhs(lhs) {} + + template + auto operator==(RhsT const &rhs) -> BinaryExpr const { + return {compareEqual(m_lhs, rhs), m_lhs, "==", rhs}; + } + + auto operator==(bool rhs) -> BinaryExpr const { + return {m_lhs == rhs, m_lhs, "==", rhs}; + } + + template + auto operator!=(RhsT const &rhs) -> BinaryExpr const { + return {compareNotEqual(m_lhs, rhs), m_lhs, "!=", rhs}; + } + + auto operator!=(bool rhs) -> BinaryExpr const { + return {m_lhs != rhs, m_lhs, "!=", rhs}; + } + + template + auto operator>(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs > rhs), m_lhs, ">", rhs}; + } + + template + auto operator<(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs < rhs), m_lhs, "<", rhs}; + } + + template + auto operator>=(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs >= rhs), m_lhs, ">=", rhs}; + } + + template + auto operator<=(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs <= rhs), m_lhs, "<=", rhs}; + } + + template + auto operator|(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs | rhs), m_lhs, "|", rhs}; + } + + template + auto operator&(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs & rhs), m_lhs, "&", rhs}; + } + + template + auto operator^(RhsT const &rhs) -> BinaryExpr const { + return {static_cast(m_lhs ^ rhs), m_lhs, "^", rhs}; + } + + template + auto operator&&(RhsT const &) -> BinaryExpr const { + static_assert(always_false::value, + "operator&& is not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + template + auto operator||(RhsT const &) -> BinaryExpr const { + static_assert(always_false::value, + "operator|| is not supported inside assertions, " + "wrap the expression inside parentheses, or decompose it"); + } + + auto makeUnaryExpr() const -> UnaryExpr { + return UnaryExpr{m_lhs}; + } + }; + + void handleExpression(ITransientExpression const &expr); + + template + void handleExpression(ExprLhs const &expr) { + handleExpression(expr.makeUnaryExpr()); + } + + struct Decomposer { + template + auto operator<=(T const &lhs) -> ExprLhs { + return ExprLhs{lhs}; + } + + auto operator<=(bool value) -> ExprLhs { + return ExprLhs{value}; + } + }; } // end namespace Catch @@ -2445,241 +2542,272 @@ struct Decomposer { namespace Catch { -class AssertionResult; -struct AssertionInfo; -struct SectionInfo; -struct SectionEndInfo; -struct MessageInfo; -struct MessageBuilder; -struct Counts; -struct AssertionReaction; -struct SourceLineInfo; + class AssertionResult; -struct ITransientExpression; -struct IGeneratorTracker; + struct AssertionInfo; + struct SectionInfo; + struct SectionEndInfo; + struct MessageInfo; + struct MessageBuilder; + struct Counts; + struct AssertionReaction; + struct SourceLineInfo; + + struct ITransientExpression; + struct IGeneratorTracker; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - struct BenchmarkInfo; + struct BenchmarkInfo; template > struct BenchmarkStats; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -struct IResultCapture { + struct IResultCapture { + + virtual ~IResultCapture(); - virtual ~IResultCapture(); + virtual bool sectionStarted(SectionInfo const §ionInfo, + Counts &assertions) = 0; - virtual bool sectionStarted(SectionInfo const §ionInfo, - Counts &assertions) = 0; - virtual void sectionEnded(SectionEndInfo const &endInfo) = 0; - virtual void sectionEndedEarly(SectionEndInfo const &endInfo) = 0; + virtual void sectionEnded(SectionEndInfo const &endInfo) = 0; - virtual auto acquireGeneratorTracker(StringRef generatorName, - SourceLineInfo const &lineInfo) -> IGeneratorTracker & = 0; + virtual void sectionEndedEarly(SectionEndInfo const &endInfo) = 0; + + virtual auto acquireGeneratorTracker(StringRef generatorName, + SourceLineInfo const &lineInfo) -> IGeneratorTracker & = 0; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - virtual void benchmarkPreparing( std::string const& name ) = 0; + virtual void benchmarkPreparing( std::string const& name ) = 0; virtual void benchmarkStarting( BenchmarkInfo const& info ) = 0; virtual void benchmarkEnded( BenchmarkStats<> const& stats ) = 0; virtual void benchmarkFailed( std::string const& error ) = 0; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING - virtual void pushScopedMessage(MessageInfo const &message) = 0; - virtual void popScopedMessage(MessageInfo const &message) = 0; - - virtual void emplaceUnscopedMessage(MessageBuilder const &builder) = 0; - - virtual void handleFatalErrorCondition(StringRef message) = 0; - - virtual void handleExpr - (AssertionInfo const &info, - ITransientExpression const &expr, - AssertionReaction &reaction) = 0; - virtual void handleMessage - (AssertionInfo const &info, - ResultWas::OfType resultType, - StringRef const &message, - AssertionReaction &reaction) = 0; - virtual void handleUnexpectedExceptionNotThrown - (AssertionInfo const &info, - AssertionReaction &reaction) = 0; - virtual void handleUnexpectedInflightException - (AssertionInfo const &info, - std::string const &message, - AssertionReaction &reaction) = 0; - virtual void handleIncomplete - (AssertionInfo const &info) = 0; - virtual void handleNonExpr - (AssertionInfo const &info, - ResultWas::OfType resultType, - AssertionReaction &reaction) = 0; - - virtual bool lastAssertionPassed() = 0; - virtual void assertionPassed() = 0; - - // Deprecated, do not use: - virtual std::string getCurrentTestName() const = 0; - virtual const AssertionResult *getLastResult() const = 0; - virtual void exceptionEarlyReported() = 0; -}; + virtual void pushScopedMessage(MessageInfo const &message) = 0; -IResultCapture &getResultCapture(); -} + virtual void popScopedMessage(MessageInfo const &message) = 0; -// end catch_interfaces_capture.h -namespace Catch { + virtual void emplaceUnscopedMessage(MessageBuilder const &builder) = 0; -struct TestFailureException {}; -struct AssertionResultData; -struct IResultCapture; -class RunContext; + virtual void handleFatalErrorCondition(StringRef message) = 0; -class LazyExpression { - friend class AssertionHandler; - friend struct AssertionStats; - friend class RunContext; + virtual void handleExpr + (AssertionInfo const &info, + ITransientExpression const &expr, + AssertionReaction &reaction) = 0; - ITransientExpression const *m_transientExpression = nullptr; - bool m_isNegated; - public: - LazyExpression(bool isNegated); - LazyExpression(LazyExpression const &other); - LazyExpression &operator=(LazyExpression const &) = delete; + virtual void handleMessage + (AssertionInfo const &info, + ResultWas::OfType resultType, + StringRef const &message, + AssertionReaction &reaction) = 0; - explicit operator bool() const; + virtual void handleUnexpectedExceptionNotThrown + (AssertionInfo const &info, + AssertionReaction &reaction) = 0; - friend auto operator<<(std::ostream &os, LazyExpression const &lazyExpr) -> std::ostream &; -}; + virtual void handleUnexpectedInflightException + (AssertionInfo const &info, + std::string const &message, + AssertionReaction &reaction) = 0; -struct AssertionReaction { - bool shouldDebugBreak = false; - bool shouldThrow = false; -}; + virtual void handleIncomplete + (AssertionInfo const &info) = 0; -class AssertionHandler { - AssertionInfo m_assertionInfo; - AssertionReaction m_reaction; - bool m_completed = false; - IResultCapture &m_resultCapture; - - public: - AssertionHandler - (StringRef const ¯oName, - SourceLineInfo const &lineInfo, - StringRef capturedExpression, - ResultDisposition::Flags resultDisposition); - ~AssertionHandler() { - if (!m_completed) { - m_resultCapture.handleIncomplete(m_assertionInfo); - } - } - - template - void handleExpr(ExprLhs const &expr) { - handleExpr(expr.makeUnaryExpr()); - } - void handleExpr(ITransientExpression const &expr); - - void handleMessage(ResultWas::OfType resultType, StringRef const &message); - - void handleExceptionThrownAsExpected(); - void handleUnexpectedExceptionNotThrown(); - void handleExceptionNotThrownAsExpected(); - void handleThrowingCallSkipped(); - void handleUnexpectedInflightException(); - - void complete(); - void setCompleted(); - - // query - auto allowThrows() const -> bool; -}; + virtual void handleNonExpr + (AssertionInfo const &info, + ResultWas::OfType resultType, + AssertionReaction &reaction) = 0; -void handleExceptionMatchExpr(AssertionHandler &handler, std::string const &str, StringRef const &matcherString); + virtual bool lastAssertionPassed() = 0; -} // namespace Catch + virtual void assertionPassed() = 0; -// end catch_assertionhandler.h -// start catch_message.h + // Deprecated, do not use: + virtual std::string getCurrentTestName() const = 0; -#include -#include + virtual const AssertionResult *getLastResult() const = 0; -namespace Catch { + virtual void exceptionEarlyReported() = 0; + }; -struct MessageInfo { - MessageInfo(StringRef const &_macroName, - SourceLineInfo const &_lineInfo, - ResultWas::OfType _type); - - StringRef macroName; - std::string message; - SourceLineInfo lineInfo; - ResultWas::OfType type; - unsigned int sequence; - - bool operator==(MessageInfo const &other) const; - bool operator<(MessageInfo const &other) const; - private: - static unsigned int globalCount; -}; + IResultCapture &getResultCapture(); +} + +// end catch_interfaces_capture.h +namespace Catch { -struct MessageStream { + struct TestFailureException { + }; + struct AssertionResultData; + struct IResultCapture; - template - MessageStream &operator<<(T const &value) { - m_stream << value; - return *this; - } + class RunContext; - ReusableStringStream m_stream; -}; + class LazyExpression { + friend class AssertionHandler; + + friend struct AssertionStats; + + friend class RunContext; + + ITransientExpression const *m_transientExpression = nullptr; + bool m_isNegated; + public: + LazyExpression(bool isNegated); + + LazyExpression(LazyExpression const &other); + + LazyExpression &operator=(LazyExpression const &) = delete; + + explicit operator bool() const; + + friend auto operator<<(std::ostream &os, LazyExpression const &lazyExpr) -> std::ostream &; + }; + + struct AssertionReaction { + bool shouldDebugBreak = false; + bool shouldThrow = false; + }; + + class AssertionHandler { + AssertionInfo m_assertionInfo; + AssertionReaction m_reaction; + bool m_completed = false; + IResultCapture &m_resultCapture; -struct MessageBuilder : MessageStream { - MessageBuilder(StringRef const ¯oName, + public: + AssertionHandler + (StringRef const ¯oName, SourceLineInfo const &lineInfo, - ResultWas::OfType type); + StringRef capturedExpression, + ResultDisposition::Flags resultDisposition); - template - MessageBuilder &operator<<(T const &value) { - m_stream << value; - return *this; - } + ~AssertionHandler() { + if (!m_completed) { + m_resultCapture.handleIncomplete(m_assertionInfo); + } + } - MessageInfo m_info; -}; + template + void handleExpr(ExprLhs const &expr) { + handleExpr(expr.makeUnaryExpr()); + } -class ScopedMessage { - public: - explicit ScopedMessage(MessageBuilder const &builder); - ScopedMessage(ScopedMessage &duplicate) = delete; - ScopedMessage(ScopedMessage &&old); - ~ScopedMessage(); + void handleExpr(ITransientExpression const &expr); - MessageInfo m_info; - bool m_moved; -}; + void handleMessage(ResultWas::OfType resultType, StringRef const &message); -class Capturer { - std::vector m_messages; - IResultCapture &m_resultCapture = getResultCapture(); - size_t m_captured = 0; - public: - Capturer(StringRef macroName, SourceLineInfo const &lineInfo, ResultWas::OfType resultType, StringRef names); - ~Capturer(); - - void captureValue(size_t index, std::string const &value); - - template - void captureValues(size_t index, T const &value) { - captureValue(index, Catch::Detail::stringify(value)); - } - - template - void captureValues(size_t index, T const &value, Ts const &... values) { - captureValue(index, Catch::Detail::stringify(value)); - captureValues(index + 1, values...); - } -}; + void handleExceptionThrownAsExpected(); + + void handleUnexpectedExceptionNotThrown(); + + void handleExceptionNotThrownAsExpected(); + + void handleThrowingCallSkipped(); + + void handleUnexpectedInflightException(); + + void complete(); + + void setCompleted(); + + // query + auto allowThrows() const -> bool; + }; + + void handleExceptionMatchExpr(AssertionHandler &handler, std::string const &str, StringRef const &matcherString); + +} // namespace Catch + +// end catch_assertionhandler.h +// start catch_message.h + +#include +#include + +namespace Catch { + + struct MessageInfo { + MessageInfo(StringRef const &_macroName, + SourceLineInfo const &_lineInfo, + ResultWas::OfType _type); + + StringRef macroName; + std::string message; + SourceLineInfo lineInfo; + ResultWas::OfType type; + unsigned int sequence; + + bool operator==(MessageInfo const &other) const; + + bool operator<(MessageInfo const &other) const; + + private: + static unsigned int globalCount; + }; + + struct MessageStream { + + template + MessageStream &operator<<(T const &value) { + m_stream << value; + return *this; + } + + ReusableStringStream m_stream; + }; + + struct MessageBuilder : MessageStream { + MessageBuilder(StringRef const ¯oName, + SourceLineInfo const &lineInfo, + ResultWas::OfType type); + + template + MessageBuilder &operator<<(T const &value) { + m_stream << value; + return *this; + } + + MessageInfo m_info; + }; + + class ScopedMessage { + public: + explicit ScopedMessage(MessageBuilder const &builder); + + ScopedMessage(ScopedMessage &duplicate) = delete; + + ScopedMessage(ScopedMessage &&old); + + ~ScopedMessage(); + + MessageInfo m_info; + bool m_moved; + }; + + class Capturer { + std::vector m_messages; + IResultCapture &m_resultCapture = getResultCapture(); + size_t m_captured = 0; + public: + Capturer(StringRef macroName, SourceLineInfo const &lineInfo, ResultWas::OfType resultType, StringRef names); + + ~Capturer(); + + void captureValue(size_t index, std::string const &value); + + template + void captureValues(size_t index, T const &value) { + captureValue(index, Catch::Detail::stringify(value)); + } + + template + void captureValues(size_t index, T const &value, Ts const &... values) { + captureValue(index, Catch::Detail::stringify(value)); + captureValues(index + 1, values...); + } + }; } // end namespace Catch @@ -2836,30 +2964,34 @@ class Capturer { namespace Catch { -struct Counts { - Counts operator-(Counts const &other) const; - Counts &operator+=(Counts const &other); + struct Counts { + Counts operator-(Counts const &other) const; - std::size_t total() const; - bool allPassed() const; - bool allOk() const; + Counts &operator+=(Counts const &other); - std::size_t passed = 0; - std::size_t failed = 0; - std::size_t failedButOk = 0; -}; + std::size_t total() const; -struct Totals { + bool allPassed() const; - Totals operator-(Totals const &other) const; - Totals &operator+=(Totals const &other); + bool allOk() const; - Totals delta(Totals const &prevTotals) const; + std::size_t passed = 0; + std::size_t failed = 0; + std::size_t failedButOk = 0; + }; - int error = 0; - Counts assertions; - Counts testCases; -}; + struct Totals { + + Totals operator-(Totals const &other) const; + + Totals &operator+=(Totals const &other); + + Totals delta(Totals const &prevTotals) const; + + int error = 0; + Counts assertions; + Counts testCases; + }; } // end catch_totals.h @@ -2867,27 +2999,27 @@ struct Totals { namespace Catch { -struct SectionInfo { - SectionInfo - (SourceLineInfo const &_lineInfo, - std::string const &_name); + struct SectionInfo { + SectionInfo + (SourceLineInfo const &_lineInfo, + std::string const &_name); - // Deprecated - SectionInfo - (SourceLineInfo const &_lineInfo, - std::string const &_name, - std::string const &) : SectionInfo(_lineInfo, _name) {} + // Deprecated + SectionInfo + (SourceLineInfo const &_lineInfo, + std::string const &_name, + std::string const &) : SectionInfo(_lineInfo, _name) {} - std::string name; - std::string description; // !Deprecated: this will always be empty - SourceLineInfo lineInfo; -}; + std::string name; + std::string description; // !Deprecated: this will always be empty + SourceLineInfo lineInfo; + }; -struct SectionEndInfo { - SectionInfo sectionInfo; - Counts prevAssertions; - double durationInSeconds; -}; + struct SectionEndInfo { + SectionInfo sectionInfo; + Counts prevAssertions; + double durationInSeconds; + }; } // end namespace Catch @@ -2898,18 +3030,23 @@ struct SectionEndInfo { namespace Catch { -auto getCurrentNanosecondsSinceEpoch() -> uint64_t; -auto getEstimatedClockResolution() -> uint64_t; - -class Timer { - uint64_t m_nanoseconds = 0; - public: - void start(); - auto getElapsedNanoseconds() const -> uint64_t; - auto getElapsedMicroseconds() const -> uint64_t; - auto getElapsedMilliseconds() const -> unsigned int; - auto getElapsedSeconds() const -> double; -}; + auto getCurrentNanosecondsSinceEpoch() -> uint64_t; + + auto getEstimatedClockResolution() -> uint64_t; + + class Timer { + uint64_t m_nanoseconds = 0; + public: + void start(); + + auto getElapsedNanoseconds() const -> uint64_t; + + auto getElapsedMicroseconds() const -> uint64_t; + + auto getElapsedMilliseconds() const -> unsigned int; + + auto getElapsedSeconds() const -> double; + }; } // namespace Catch @@ -2918,22 +3055,23 @@ class Timer { namespace Catch { -class Section : NonCopyable { - public: - Section(SectionInfo const &info); - ~Section(); + class Section : NonCopyable { + public: + Section(SectionInfo const &info); + + ~Section(); - // This indicates whether the section should be executed or not - explicit operator bool() const; + // This indicates whether the section should be executed or not + explicit operator bool() const; - private: - SectionInfo m_info; + private: + SectionInfo m_info; - std::string m_name; - Counts m_assertions; - bool m_sectionIncluded; - Timer m_timer; -}; + std::string m_name; + Counts m_assertions; + bool m_sectionIncluded; + Timer m_timer; + }; } // end namespace Catch @@ -2959,45 +3097,60 @@ class Section : NonCopyable { namespace Catch { -class TestCase; -struct ITestCaseRegistry; -struct IExceptionTranslatorRegistry; -struct IExceptionTranslator; -struct IReporterRegistry; -struct IReporterFactory; -struct ITagAliasRegistry; -struct IMutableEnumValuesRegistry; + class TestCase; -class StartupExceptionRegistry; + struct ITestCaseRegistry; + struct IExceptionTranslatorRegistry; + struct IExceptionTranslator; + struct IReporterRegistry; + struct IReporterFactory; + struct ITagAliasRegistry; + struct IMutableEnumValuesRegistry; -using IReporterFactoryPtr = std::shared_ptr; + class StartupExceptionRegistry; -struct IRegistryHub { - virtual ~IRegistryHub(); + using IReporterFactoryPtr = std::shared_ptr; - virtual IReporterRegistry const &getReporterRegistry() const = 0; - virtual ITestCaseRegistry const &getTestCaseRegistry() const = 0; - virtual ITagAliasRegistry const &getTagAliasRegistry() const = 0; - virtual IExceptionTranslatorRegistry const &getExceptionTranslatorRegistry() const = 0; + struct IRegistryHub { + virtual ~IRegistryHub(); - virtual StartupExceptionRegistry const &getStartupExceptionRegistry() const = 0; -}; + virtual IReporterRegistry const &getReporterRegistry() const = 0; -struct IMutableRegistryHub { - virtual ~IMutableRegistryHub(); - virtual void registerReporter(std::string const &name, IReporterFactoryPtr const &factory) = 0; - virtual void registerListener(IReporterFactoryPtr const &factory) = 0; - virtual void registerTest(TestCase const &testInfo) = 0; - virtual void registerTranslator(const IExceptionTranslator *translator) = 0; - virtual void registerTagAlias(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo) = 0; - virtual void registerStartupException() noexcept = 0; - virtual IMutableEnumValuesRegistry &getMutableEnumValuesRegistry() = 0; -}; + virtual ITestCaseRegistry const &getTestCaseRegistry() const = 0; + + virtual ITagAliasRegistry const &getTagAliasRegistry() const = 0; + + virtual IExceptionTranslatorRegistry const &getExceptionTranslatorRegistry() const = 0; -IRegistryHub const &getRegistryHub(); -IMutableRegistryHub &getMutableRegistryHub(); -void cleanUp(); -std::string translateActiveException(); + virtual StartupExceptionRegistry const &getStartupExceptionRegistry() const = 0; + }; + + struct IMutableRegistryHub { + virtual ~IMutableRegistryHub(); + + virtual void registerReporter(std::string const &name, IReporterFactoryPtr const &factory) = 0; + + virtual void registerListener(IReporterFactoryPtr const &factory) = 0; + + virtual void registerTest(TestCase const &testInfo) = 0; + + virtual void registerTranslator(const IExceptionTranslator *translator) = 0; + + virtual void + registerTagAlias(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo) = 0; + + virtual void registerStartupException() noexcept = 0; + + virtual IMutableEnumValuesRegistry &getMutableEnumValuesRegistry() = 0; + }; + + IRegistryHub const &getRegistryHub(); + + IMutableRegistryHub &getMutableRegistryHub(); + + void cleanUp(); + + std::string translateActiveException(); } @@ -3012,59 +3165,60 @@ std::string translateActiveException(); #include namespace Catch { -using exceptionTranslateFunction = std::string(*)(); + using exceptionTranslateFunction = std::string(*)(); -struct IExceptionTranslator; -using ExceptionTranslators = std::vector>; + struct IExceptionTranslator; + using ExceptionTranslators = std::vector>; -struct IExceptionTranslator { - virtual ~IExceptionTranslator(); - virtual std::string translate(ExceptionTranslators::const_iterator it, - ExceptionTranslators::const_iterator itEnd) const = 0; -}; + struct IExceptionTranslator { + virtual ~IExceptionTranslator(); + + virtual std::string translate(ExceptionTranslators::const_iterator it, + ExceptionTranslators::const_iterator itEnd) const = 0; + }; -struct IExceptionTranslatorRegistry { - virtual ~IExceptionTranslatorRegistry(); + struct IExceptionTranslatorRegistry { + virtual ~IExceptionTranslatorRegistry(); - virtual std::string translateActiveException() const = 0; -}; + virtual std::string translateActiveException() const = 0; + }; -class ExceptionTranslatorRegistrar { - template - class ExceptionTranslator : public IExceptionTranslator { - public: + class ExceptionTranslatorRegistrar { + template + class ExceptionTranslator : public IExceptionTranslator { + public: - ExceptionTranslator(std::string(*translateFunction)(T &)) - : m_translateFunction(translateFunction) {} + ExceptionTranslator(std::string(*translateFunction)(T &)) + : m_translateFunction(translateFunction) {} - std::string translate(ExceptionTranslators::const_iterator it, - ExceptionTranslators::const_iterator itEnd) const override { + std::string translate(ExceptionTranslators::const_iterator it, + ExceptionTranslators::const_iterator itEnd) const override { #if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - return ""; + return ""; #else - try { - if (it == itEnd) - std::rethrow_exception(std::current_exception()); - else - return (*it)->translate(it + 1, itEnd); - } - catch (T &ex) { - return m_translateFunction(ex); - } + try { + if (it == itEnd) + std::rethrow_exception(std::current_exception()); + else + return (*it)->translate(it + 1, itEnd); + } + catch (T &ex) { + return m_translateFunction(ex); + } #endif - } + } - protected: - std::string (*m_translateFunction)(T &); - }; + protected: + std::string (*m_translateFunction)(T &); + }; - public: - template - ExceptionTranslatorRegistrar(std::string(*translateFunction)(T &)) { - getMutableRegistryHub().registerTranslator - (new ExceptionTranslator(translateFunction)); - } -}; + public: + template + ExceptionTranslatorRegistrar(std::string(*translateFunction)(T &)) { + getMutableRegistryHub().registerTranslator + (new ExceptionTranslator(translateFunction)); + } + }; } /////////////////////////////////////////////////////////////////////////////// @@ -3084,117 +3238,120 @@ class ExceptionTranslatorRegistrar { #include namespace Catch { -namespace Detail { - -class Approx { - private: - bool equalityComparisonImpl(double other) const; - // Validates the new margin (margin >= 0) - // out-of-line to avoid including stdexcept in the header - void setMargin(double margin); - // Validates the new epsilon (0 < epsilon < 1) - // out-of-line to avoid including stdexcept in the header - void setEpsilon(double epsilon); - - public: - explicit Approx(double value); - - static Approx custom(); - - Approx operator-() const; - - template::value>::type> - Approx operator()(T const &value) const { - Approx approx(static_cast(value)); - approx.m_epsilon = m_epsilon; - approx.m_margin = m_margin; - approx.m_scale = m_scale; - return approx; - } - - template::value>::type> - explicit Approx(T const &value): Approx(static_cast(value)) {} - - template::value>::type> - friend bool operator==(const T &lhs, Approx const &rhs) { - auto lhs_v = static_cast(lhs); - return rhs.equalityComparisonImpl(lhs_v); - } - - template::value>::type> - friend bool operator==(Approx const &lhs, const T &rhs) { - return operator==(rhs, lhs); - } - - template::value>::type> - friend bool operator!=(T const &lhs, Approx const &rhs) { - return !operator==(lhs, rhs); - } - - template::value>::type> - friend bool operator!=(Approx const &lhs, T const &rhs) { - return !operator==(rhs, lhs); - } - - template::value>::type> - friend bool operator<=(T const &lhs, Approx const &rhs) { - return static_cast(lhs) < rhs.m_value || lhs == rhs; - } - - template::value>::type> - friend bool operator<=(Approx const &lhs, T const &rhs) { - return lhs.m_value < static_cast(rhs) || lhs == rhs; - } - - template::value>::type> - friend bool operator>=(T const &lhs, Approx const &rhs) { - return static_cast(lhs) > rhs.m_value || lhs == rhs; - } - - template::value>::type> - friend bool operator>=(Approx const &lhs, T const &rhs) { - return lhs.m_value > static_cast(rhs) || lhs == rhs; - } - - template::value>::type> - Approx &epsilon(T const &newEpsilon) { - double epsilonAsDouble = static_cast(newEpsilon); - setEpsilon(epsilonAsDouble); - return *this; - } - - template::value>::type> - Approx &margin(T const &newMargin) { - double marginAsDouble = static_cast(newMargin); - setMargin(marginAsDouble); - return *this; - } - - template::value>::type> - Approx &scale(T const &newScale) { - m_scale = static_cast(newScale); - return *this; - } - - std::string toString() const; - - private: - double m_epsilon; - double m_margin; - double m_scale; - double m_value; -}; -} // end namespace Detail + namespace Detail { + + class Approx { + private: + bool equalityComparisonImpl(double other) const; -namespace literals { -Detail::Approx operator "" _a(long double val); -Detail::Approx operator "" _a(unsigned long long val); -} // end namespace literals + // Validates the new margin (margin >= 0) + // out-of-line to avoid including stdexcept in the header + void setMargin(double margin); -template<> -struct StringMaker { - static std::string convert(Catch::Detail::Approx const &value); -}; + // Validates the new epsilon (0 < epsilon < 1) + // out-of-line to avoid including stdexcept in the header + void setEpsilon(double epsilon); + + public: + explicit Approx(double value); + + static Approx custom(); + + Approx operator-() const; + + template::value>::type> + Approx operator()(T const &value) const { + Approx approx(static_cast(value)); + approx.m_epsilon = m_epsilon; + approx.m_margin = m_margin; + approx.m_scale = m_scale; + return approx; + } + + template::value>::type> + explicit Approx(T const &value): Approx(static_cast(value)) {} + + template::value>::type> + friend bool operator==(const T &lhs, Approx const &rhs) { + auto lhs_v = static_cast(lhs); + return rhs.equalityComparisonImpl(lhs_v); + } + + template::value>::type> + friend bool operator==(Approx const &lhs, const T &rhs) { + return operator==(rhs, lhs); + } + + template::value>::type> + friend bool operator!=(T const &lhs, Approx const &rhs) { + return !operator==(lhs, rhs); + } + + template::value>::type> + friend bool operator!=(Approx const &lhs, T const &rhs) { + return !operator==(rhs, lhs); + } + + template::value>::type> + friend bool operator<=(T const &lhs, Approx const &rhs) { + return static_cast(lhs) < rhs.m_value || lhs == rhs; + } + + template::value>::type> + friend bool operator<=(Approx const &lhs, T const &rhs) { + return lhs.m_value < static_cast(rhs) || lhs == rhs; + } + + template::value>::type> + friend bool operator>=(T const &lhs, Approx const &rhs) { + return static_cast(lhs) > rhs.m_value || lhs == rhs; + } + + template::value>::type> + friend bool operator>=(Approx const &lhs, T const &rhs) { + return lhs.m_value > static_cast(rhs) || lhs == rhs; + } + + template::value>::type> + Approx &epsilon(T const &newEpsilon) { + double epsilonAsDouble = static_cast(newEpsilon); + setEpsilon(epsilonAsDouble); + return *this; + } + + template::value>::type> + Approx &margin(T const &newMargin) { + double marginAsDouble = static_cast(newMargin); + setMargin(marginAsDouble); + return *this; + } + + template::value>::type> + Approx &scale(T const &newScale) { + m_scale = static_cast(newScale); + return *this; + } + + std::string toString() const; + + private: + double m_epsilon; + double m_margin; + double m_scale; + double m_value; + }; + } // end namespace Detail + + namespace literals { + Detail::Approx operator "" _a(long double val); + + Detail::Approx operator "" _a(unsigned long long val); + } // end namespace literals + + template<> + struct StringMaker { + static std::string convert(Catch::Detail::Approx const &value); + }; } // end namespace Catch @@ -3207,30 +3364,39 @@ struct StringMaker { namespace Catch { -bool startsWith(std::string const &s, std::string const &prefix); -bool startsWith(std::string const &s, char prefix); -bool endsWith(std::string const &s, std::string const &suffix); -bool endsWith(std::string const &s, char suffix); -bool contains(std::string const &s, std::string const &infix); -void toLowerInPlace(std::string &s); -std::string toLower(std::string const &s); + bool startsWith(std::string const &s, std::string const &prefix); + + bool startsWith(std::string const &s, char prefix); + + bool endsWith(std::string const &s, std::string const &suffix); + + bool endsWith(std::string const &s, char suffix); + + bool contains(std::string const &s, std::string const &infix); + + void toLowerInPlace(std::string &s); + + std::string toLower(std::string const &s); + //! Returns a new string without whitespace at the start/end -std::string trim(std::string const &str); + std::string trim(std::string const &str); + //! Returns a substring of the original ref without whitespace. Beware lifetimes! -StringRef trim(StringRef ref); + StringRef trim(StringRef ref); // !!! Be aware, returns refs into original string - make sure original string outlives them -std::vector splitStringRef(StringRef str, char delimiter); -bool replaceInPlace(std::string &str, std::string const &replaceThis, std::string const &withThis); + std::vector splitStringRef(StringRef str, char delimiter); -struct pluralise { - pluralise(std::size_t count, std::string const &label); + bool replaceInPlace(std::string &str, std::string const &replaceThis, std::string const &withThis); - friend std::ostream &operator<<(std::ostream &os, pluralise const &pluraliser); + struct pluralise { + pluralise(std::size_t count, std::string const &label); - std::size_t m_count; - std::string m_label; -}; + friend std::ostream &operator<<(std::ostream &os, pluralise const &pluraliser); + + std::size_t m_count; + std::string m_label; + }; } // end catch_string_manip.h @@ -3243,41 +3409,46 @@ struct pluralise { #include namespace Catch { -namespace Matchers { -namespace Impl { - -template -struct MatchAllOf; -template -struct MatchAnyOf; -template -struct MatchNotOf; - -class MatcherUntypedBase { - public: - MatcherUntypedBase() = default; - MatcherUntypedBase(MatcherUntypedBase const &) = default; - MatcherUntypedBase &operator=(MatcherUntypedBase const &) = delete; - std::string toString() const; - - protected: - virtual ~MatcherUntypedBase(); - virtual std::string describe() const = 0; - mutable std::string m_cachedToString; -}; + namespace Matchers { + namespace Impl { + + template + struct MatchAllOf; + template + struct MatchAnyOf; + template + struct MatchNotOf; + + class MatcherUntypedBase { + public: + MatcherUntypedBase() = default; + + MatcherUntypedBase(MatcherUntypedBase const &) = default; + + MatcherUntypedBase &operator=(MatcherUntypedBase const &) = delete; + + std::string toString() const; + + protected: + virtual ~MatcherUntypedBase(); + + virtual std::string describe() const = 0; + + mutable std::string m_cachedToString; + }; #ifdef __clang__ - # pragma clang diagnostic push + # pragma clang diagnostic push # pragma clang diagnostic ignored "-Wnon-virtual-dtor" #endif -template -struct MatcherMethod { - virtual bool match(ObjectT const &arg) const = 0; -}; + template + struct MatcherMethod { + virtual bool match(ObjectT const &arg) const = 0; + }; #if defined(__OBJC__) - // Hack to fix Catch GH issue #1661. Could use id for generic Object support. + // Hack to fix Catch GH issue #1661. Could use id for generic Object support. // use of const for Object pointers is very uncommon and under ARC it causes some kind of signature mismatch that breaks compilation template<> struct MatcherMethod { @@ -3289,173 +3460,187 @@ struct MatcherMethod { # pragma clang diagnostic pop #endif -template -struct MatcherBase : MatcherUntypedBase, MatcherMethod { + template + struct MatcherBase : MatcherUntypedBase, MatcherMethod { - MatchAllOf operator&&(MatcherBase const &other) const; - MatchAnyOf operator||(MatcherBase const &other) const; - MatchNotOf operator!() const; -}; + MatchAllOf operator&&(MatcherBase const &other) const; -template -struct MatchAllOf : MatcherBase { - bool match(ArgT const &arg) const override { - for (auto matcher : m_matchers) { - if (!matcher->match(arg)) - return false; - } - return true; - } - std::string describe() const override { - std::string description; - description.reserve(4 + m_matchers.size() * 32); - description += "( "; - bool first = true; - for (auto matcher : m_matchers) { - if (first) - first = false; - else - description += " and "; - description += matcher->toString(); - } - description += " )"; - return description; - } - - MatchAllOf operator&&(MatcherBase const &other) { - auto copy(*this); - copy.m_matchers.push_back(&other); - return copy; - } - - std::vector const *> m_matchers; -}; -template -struct MatchAnyOf : MatcherBase { + MatchAnyOf operator||(MatcherBase const &other) const; - bool match(ArgT const &arg) const override { - for (auto matcher : m_matchers) { - if (matcher->match(arg)) - return true; - } - return false; - } - std::string describe() const override { - std::string description; - description.reserve(4 + m_matchers.size() * 32); - description += "( "; - bool first = true; - for (auto matcher : m_matchers) { - if (first) - first = false; - else - description += " or "; - description += matcher->toString(); - } - description += " )"; - return description; - } - - MatchAnyOf operator||(MatcherBase const &other) { - auto copy(*this); - copy.m_matchers.push_back(&other); - return copy; - } - - std::vector const *> m_matchers; -}; + MatchNotOf operator!() const; + }; -template -struct MatchNotOf : MatcherBase { + template + struct MatchAllOf : MatcherBase { + bool match(ArgT const &arg) const override { + for (auto matcher: m_matchers) { + if (!matcher->match(arg)) + return false; + } + return true; + } - MatchNotOf(MatcherBase const &underlyingMatcher) : m_underlyingMatcher(underlyingMatcher) {} + std::string describe() const override { + std::string description; + description.reserve(4 + m_matchers.size() * 32); + description += "( "; + bool first = true; + for (auto matcher: m_matchers) { + if (first) + first = false; + else + description += " and "; + description += matcher->toString(); + } + description += " )"; + return description; + } - bool match(ArgT const &arg) const override { - return !m_underlyingMatcher.match(arg); - } + MatchAllOf operator&&(MatcherBase const &other) { + auto copy(*this); + copy.m_matchers.push_back(&other); + return copy; + } - std::string describe() const override { - return "not " + m_underlyingMatcher.toString(); - } - MatcherBase const &m_underlyingMatcher; -}; + std::vector const *> m_matchers; + }; -template -MatchAllOf MatcherBase::operator&&(MatcherBase const &other) const { - return MatchAllOf() && *this && other; -} -template -MatchAnyOf MatcherBase::operator||(MatcherBase const &other) const { - return MatchAnyOf() || *this || other; -} -template -MatchNotOf MatcherBase::operator!() const { - return MatchNotOf(*this); -} + template + struct MatchAnyOf : MatcherBase { -} // namespace Impl + bool match(ArgT const &arg) const override { + for (auto matcher: m_matchers) { + if (matcher->match(arg)) + return true; + } + return false; + } -} // namespace Matchers + std::string describe() const override { + std::string description; + description.reserve(4 + m_matchers.size() * 32); + description += "( "; + bool first = true; + for (auto matcher: m_matchers) { + if (first) + first = false; + else + description += " or "; + description += matcher->toString(); + } + description += " )"; + return description; + } -using namespace Matchers; -using Matchers::Impl::MatcherBase; + MatchAnyOf operator||(MatcherBase const &other) { + auto copy(*this); + copy.m_matchers.push_back(&other); + return copy; + } -} // namespace Catch + std::vector const *> m_matchers; + }; -// end catch_matchers.h -// start catch_matchers_exception.hpp + template + struct MatchNotOf : MatcherBase { -namespace Catch { -namespace Matchers { -namespace Exception { + MatchNotOf(MatcherBase const &underlyingMatcher) : m_underlyingMatcher(underlyingMatcher) {} -class ExceptionMessageMatcher : public MatcherBase { - std::string m_message; - public: + bool match(ArgT const &arg) const override { + return !m_underlyingMatcher.match(arg); + } - ExceptionMessageMatcher(std::string const &message) : - m_message(message) {} + std::string describe() const override { + return "not " + m_underlyingMatcher.toString(); + } - bool match(std::exception const &ex) const override; + MatcherBase const &m_underlyingMatcher; + }; - std::string describe() const override; -}; + template + MatchAllOf MatcherBase::operator&&(MatcherBase const &other) const { + return MatchAllOf() && *this && other; + } -} // namespace Exception + template + MatchAnyOf MatcherBase::operator||(MatcherBase const &other) const { + return MatchAnyOf() || *this || other; + } -Exception::ExceptionMessageMatcher Message(std::string const &message); + template + MatchNotOf MatcherBase::operator!() const { + return MatchNotOf(*this); + } + + } // namespace Impl + + } // namespace Matchers + + using namespace Matchers; + using Matchers::Impl::MatcherBase; + +} // namespace Catch + +// end catch_matchers.h +// start catch_matchers_exception.hpp + +namespace Catch { + namespace Matchers { + namespace Exception { + + class ExceptionMessageMatcher : public MatcherBase { + std::string m_message; + public: + + ExceptionMessageMatcher(std::string const &message) : + m_message(message) {} + + bool match(std::exception const &ex) const override; + + std::string describe() const override; + }; + + } // namespace Exception -} // namespace Matchers + Exception::ExceptionMessageMatcher Message(std::string const &message); + + } // namespace Matchers } // namespace Catch // end catch_matchers_exception.hpp // start catch_matchers_floating.h namespace Catch { -namespace Matchers { + namespace Matchers { -namespace Floating { + namespace Floating { -enum class FloatingPointKind : uint8_t; + enum class FloatingPointKind : uint8_t; -struct WithinAbsMatcher : MatcherBase { - WithinAbsMatcher(double target, double margin); - bool match(double const &matchee) const override; - std::string describe() const override; - private: - double m_target; - double m_margin; -}; + struct WithinAbsMatcher : MatcherBase { + WithinAbsMatcher(double target, double margin); -struct WithinUlpsMatcher : MatcherBase { - WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType); - bool match(double const &matchee) const override; - std::string describe() const override; - private: - double m_target; - uint64_t m_ulps; - FloatingPointKind m_type; -}; + bool match(double const &matchee) const override; + + std::string describe() const override; + + private: + double m_target; + double m_margin; + }; + + struct WithinUlpsMatcher : MatcherBase { + WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType); + + bool match(double const &matchee) const override; + + std::string describe() const override; + + private: + double m_target; + uint64_t m_ulps; + FloatingPointKind m_type; + }; // Given IEEE-754 format for floats and doubles, we can assume // that float -> double promotion is lossless. Given this, we can @@ -3463,30 +3648,39 @@ struct WithinUlpsMatcher : MatcherBase { // |lhs - rhs| <= epsilon * max(fabs(lhs), fabs(rhs)), then we get // the same result if we do this for floats, as if we do this for // doubles that were promoted from floats. -struct WithinRelMatcher : MatcherBase { - WithinRelMatcher(double target, double epsilon); - bool match(double const &matchee) const override; - std::string describe() const override; - private: - double m_target; - double m_epsilon; -}; + struct WithinRelMatcher : MatcherBase { + WithinRelMatcher(double target, double epsilon); + + bool match(double const &matchee) const override; + + std::string describe() const override; -} // namespace Floating + private: + double m_target; + double m_epsilon; + }; + + } // namespace Floating // The following functions create the actual matcher objects. // This allows the types to be inferred -Floating::WithinUlpsMatcher WithinULP(double target, uint64_t maxUlpDiff); -Floating::WithinUlpsMatcher WithinULP(float target, uint64_t maxUlpDiff); -Floating::WithinAbsMatcher WithinAbs(double target, double margin); -Floating::WithinRelMatcher WithinRel(double target, double eps); + Floating::WithinUlpsMatcher WithinULP(double target, uint64_t maxUlpDiff); + + Floating::WithinUlpsMatcher WithinULP(float target, uint64_t maxUlpDiff); + + Floating::WithinAbsMatcher WithinAbs(double target, double margin); + + Floating::WithinRelMatcher WithinRel(double target, double eps); + // defaults epsilon to 100*numeric_limits::epsilon() -Floating::WithinRelMatcher WithinRel(double target); -Floating::WithinRelMatcher WithinRel(float target, float eps); + Floating::WithinRelMatcher WithinRel(double target); + + Floating::WithinRelMatcher WithinRel(float target, float eps); + // defaults epsilon to 100*numeric_limits::epsilon() -Floating::WithinRelMatcher WithinRel(float target); + Floating::WithinRelMatcher WithinRel(float target); -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_floating.h @@ -3496,45 +3690,45 @@ Floating::WithinRelMatcher WithinRel(float target); #include namespace Catch { -namespace Matchers { -namespace Generic { + namespace Matchers { + namespace Generic { -namespace Detail { -std::string finalizeDescription(const std::string &desc); -} + namespace Detail { + std::string finalizeDescription(const std::string &desc); + } -template -class PredicateMatcher : public MatcherBase { - std::function m_predicate; - std::string m_description; - public: + template + class PredicateMatcher : public MatcherBase { + std::function m_predicate; + std::string m_description; + public: - PredicateMatcher(std::function const &elem, std::string const &descr) - : m_predicate(std::move(elem)), - m_description(Detail::finalizeDescription(descr)) {} + PredicateMatcher(std::function const &elem, std::string const &descr) + : m_predicate(std::move(elem)), + m_description(Detail::finalizeDescription(descr)) {} - bool match(T const &item) const override { - return m_predicate(item); - } + bool match(T const &item) const override { + return m_predicate(item); + } - std::string describe() const override { - return m_description; - } -}; + std::string describe() const override { + return m_description; + } + }; -} // namespace Generic + } // namespace Generic // The following functions create the actual matcher objects. // The user has to explicitly specify type to the function, because // inferring std::function is hard (but possible) and // requires a lot of TMP. -template -Generic::PredicateMatcher Predicate(std::function const &predicate, - std::string const &description = "") { - return Generic::PredicateMatcher(predicate, description); -} + template + Generic::PredicateMatcher Predicate(std::function const &predicate, + std::string const &description = "") { + return Generic::PredicateMatcher(predicate, description); + } -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_generic.hpp @@ -3543,67 +3737,87 @@ Generic::PredicateMatcher Predicate(std::function const &pre #include namespace Catch { -namespace Matchers { + namespace Matchers { -namespace StdString { + namespace StdString { -struct CasedString { - CasedString(std::string const &str, CaseSensitive::Choice caseSensitivity); - std::string adjustString(std::string const &str) const; - std::string caseSensitivitySuffix() const; + struct CasedString { + CasedString(std::string const &str, CaseSensitive::Choice caseSensitivity); - CaseSensitive::Choice m_caseSensitivity; - std::string m_str; -}; + std::string adjustString(std::string const &str) const; -struct StringMatcherBase : MatcherBase { - StringMatcherBase(std::string const &operation, CasedString const &comparator); - std::string describe() const override; + std::string caseSensitivitySuffix() const; - CasedString m_comparator; - std::string m_operation; -}; + CaseSensitive::Choice m_caseSensitivity; + std::string m_str; + }; -struct EqualsMatcher : StringMatcherBase { - EqualsMatcher(CasedString const &comparator); - bool match(std::string const &source) const override; -}; -struct ContainsMatcher : StringMatcherBase { - ContainsMatcher(CasedString const &comparator); - bool match(std::string const &source) const override; -}; -struct StartsWithMatcher : StringMatcherBase { - StartsWithMatcher(CasedString const &comparator); - bool match(std::string const &source) const override; -}; -struct EndsWithMatcher : StringMatcherBase { - EndsWithMatcher(CasedString const &comparator); - bool match(std::string const &source) const override; -}; + struct StringMatcherBase : MatcherBase { + StringMatcherBase(std::string const &operation, CasedString const &comparator); -struct RegexMatcher : MatcherBase { - RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity); - bool match(std::string const &matchee) const override; - std::string describe() const override; + std::string describe() const override; - private: - std::string m_regex; - CaseSensitive::Choice m_caseSensitivity; -}; + CasedString m_comparator; + std::string m_operation; + }; + + struct EqualsMatcher : StringMatcherBase { + EqualsMatcher(CasedString const &comparator); + + bool match(std::string const &source) const override; + }; + + struct ContainsMatcher : StringMatcherBase { + ContainsMatcher(CasedString const &comparator); + + bool match(std::string const &source) const override; + }; + + struct StartsWithMatcher : StringMatcherBase { + StartsWithMatcher(CasedString const &comparator); -} // namespace StdString + bool match(std::string const &source) const override; + }; + + struct EndsWithMatcher : StringMatcherBase { + EndsWithMatcher(CasedString const &comparator); + + bool match(std::string const &source) const override; + }; + + struct RegexMatcher : MatcherBase { + RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity); + + bool match(std::string const &matchee) const override; + + std::string describe() const override; + + private: + std::string m_regex; + CaseSensitive::Choice m_caseSensitivity; + }; + + } // namespace StdString // The following functions create the actual matcher objects. // This allows the types to be inferred -StdString::EqualsMatcher Equals(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); -StdString::ContainsMatcher Contains(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); -StdString::EndsWithMatcher EndsWith(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); -StdString::StartsWithMatcher StartsWith(std::string const &str, - CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); -StdString::RegexMatcher Matches(std::string const ®ex, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); + StdString::EqualsMatcher + Equals(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); + + StdString::ContainsMatcher + Contains(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); -} // namespace Matchers + StdString::EndsWithMatcher + EndsWith(std::string const &str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); + + StdString::StartsWithMatcher StartsWith(std::string const &str, + CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); + + StdString::RegexMatcher + Matches(std::string const ®ex, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes); + + } // namespace Matchers } // namespace Catch // end catch_matchers_string.h @@ -3612,203 +3826,214 @@ StdString::RegexMatcher Matches(std::string const ®ex, CaseSensitive::Choice #include namespace Catch { -namespace Matchers { + namespace Matchers { -namespace Vector { -template -struct ContainsElementMatcher : MatcherBase> { + namespace Vector { + template + struct ContainsElementMatcher : MatcherBase> { - ContainsElementMatcher(T const &comparator) : m_comparator(comparator) {} + ContainsElementMatcher(T const &comparator) : m_comparator(comparator) {} - bool match(std::vector const &v) const override { - for (auto const &el : v) { - if (el == m_comparator) { - return true; - } - } - return false; - } + bool match(std::vector const &v) const override { + for (auto const &el: v) { + if (el == m_comparator) { + return true; + } + } + return false; + } - std::string describe() const override { - return "Contains: " + ::Catch::Detail::stringify(m_comparator); - } + std::string describe() const override { + return "Contains: " + ::Catch::Detail::stringify(m_comparator); + } - T const &m_comparator; -}; + T const &m_comparator; + }; -template -struct ContainsMatcher : MatcherBase> { + template + struct ContainsMatcher : MatcherBase> { + + ContainsMatcher(std::vector const &comparator) : m_comparator(comparator) {} + + bool match(std::vector const &v) const override { + // !TBD: see note in EqualsMatcher + if (m_comparator.size() > v.size()) + return false; + for (auto const &comparator: m_comparator) { + auto present = false; + for (const auto &el: v) { + if (el == comparator) { + present = true; + break; + } + } + if (!present) { + return false; + } + } + return true; + } - ContainsMatcher(std::vector const &comparator) : m_comparator(comparator) {} + std::string describe() const override { + return "Contains: " + ::Catch::Detail::stringify(m_comparator); + } - bool match(std::vector const &v) const override { - // !TBD: see note in EqualsMatcher - if (m_comparator.size() > v.size()) - return false; - for (auto const &comparator : m_comparator) { - auto present = false; - for (const auto &el : v) { - if (el == comparator) { - present = true; - break; - } - } - if (!present) { - return false; - } - } - return true; - } - std::string describe() const override { - return "Contains: " + ::Catch::Detail::stringify(m_comparator); - } + std::vector const &m_comparator; + }; - std::vector const &m_comparator; -}; + template + struct EqualsMatcher : MatcherBase> { + + EqualsMatcher(std::vector const &comparator) : m_comparator(comparator) {} + + bool match(std::vector const &v) const override { + // !TBD: This currently works if all elements can be compared using != + // - a more general approach would be via a compare template that defaults + // to using !=. but could be specialised for, e.g. std::vector etc + // - then just call that directly + if (m_comparator.size() != v.size()) + return false; + for (std::size_t i = 0; i < v.size(); ++i) + if (m_comparator[i] != v[i]) + return false; + return true; + } -template -struct EqualsMatcher : MatcherBase> { + std::string describe() const override { + return "Equals: " + ::Catch::Detail::stringify(m_comparator); + } - EqualsMatcher(std::vector const &comparator) : m_comparator(comparator) {} + std::vector const &m_comparator; + }; - bool match(std::vector const &v) const override { - // !TBD: This currently works if all elements can be compared using != - // - a more general approach would be via a compare template that defaults - // to using !=. but could be specialised for, e.g. std::vector etc - // - then just call that directly - if (m_comparator.size() != v.size()) - return false; - for (std::size_t i = 0; i < v.size(); ++i) - if (m_comparator[i] != v[i]) - return false; - return true; - } - std::string describe() const override { - return "Equals: " + ::Catch::Detail::stringify(m_comparator); - } - std::vector const &m_comparator; -}; + template + struct ApproxMatcher : MatcherBase> { -template -struct ApproxMatcher : MatcherBase> { + ApproxMatcher(std::vector const &comparator) : m_comparator(comparator) {} - ApproxMatcher(std::vector const &comparator) : m_comparator(comparator) {} + bool match(std::vector const &v) const override { + if (m_comparator.size() != v.size()) + return false; + for (std::size_t i = 0; i < v.size(); ++i) + if (m_comparator[i] != approx(v[i])) + return false; + return true; + } - bool match(std::vector const &v) const override { - if (m_comparator.size() != v.size()) - return false; - for (std::size_t i = 0; i < v.size(); ++i) - if (m_comparator[i] != approx(v[i])) - return false; - return true; - } - std::string describe() const override { - return "is approx: " + ::Catch::Detail::stringify(m_comparator); - } - template::value>::type> - ApproxMatcher &epsilon(T const &newEpsilon) { - approx.epsilon(newEpsilon); - return *this; - } - template::value>::type> - ApproxMatcher &margin(T const &newMargin) { - approx.margin(newMargin); - return *this; - } - template::value>::type> - ApproxMatcher &scale(T const &newScale) { - approx.scale(newScale); - return *this; - } - - std::vector const &m_comparator; - mutable Catch::Detail::Approx approx = Catch::Detail::Approx::custom(); -}; + std::string describe() const override { + return "is approx: " + ::Catch::Detail::stringify(m_comparator); + } -template -struct UnorderedEqualsMatcher : MatcherBase> { - UnorderedEqualsMatcher(std::vector const &target) : m_target(target) {} - bool match(std::vector const &vec) const override { - if (m_target.size() != vec.size()) { - return false; - } - return std::is_permutation(m_target.begin(), m_target.end(), vec.begin()); - } - - std::string describe() const override { - return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target); - } - private: - std::vector const &m_target; -}; + template::value>::type> + ApproxMatcher &epsilon(T const &newEpsilon) { + approx.epsilon(newEpsilon); + return *this; + } + + template::value>::type> + ApproxMatcher &margin(T const &newMargin) { + approx.margin(newMargin); + return *this; + } + + template::value>::type> + ApproxMatcher &scale(T const &newScale) { + approx.scale(newScale); + return *this; + } + + std::vector const &m_comparator; + mutable Catch::Detail::Approx approx = Catch::Detail::Approx::custom(); + }; + + template + struct UnorderedEqualsMatcher : MatcherBase> { + UnorderedEqualsMatcher(std::vector const &target) : m_target(target) {} + + bool match(std::vector const &vec) const override { + if (m_target.size() != vec.size()) { + return false; + } + return std::is_permutation(m_target.begin(), m_target.end(), vec.begin()); + } -} // namespace Vector + std::string describe() const override { + return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target); + } + + private: + std::vector const &m_target; + }; + + } // namespace Vector // The following functions create the actual matcher objects. // This allows the types to be inferred -template, typename AllocMatch = AllocComp> -Vector::ContainsMatcher Contains(std::vector const &comparator) { - return Vector::ContainsMatcher(comparator); -} + template, typename AllocMatch = AllocComp> + Vector::ContainsMatcher Contains(std::vector const &comparator) { + return Vector::ContainsMatcher(comparator); + } -template> -Vector::ContainsElementMatcher VectorContains(T const &comparator) { - return Vector::ContainsElementMatcher(comparator); -} + template> + Vector::ContainsElementMatcher VectorContains(T const &comparator) { + return Vector::ContainsElementMatcher(comparator); + } -template, typename AllocMatch = AllocComp> -Vector::EqualsMatcher Equals(std::vector const &comparator) { - return Vector::EqualsMatcher(comparator); -} + template, typename AllocMatch = AllocComp> + Vector::EqualsMatcher Equals(std::vector const &comparator) { + return Vector::EqualsMatcher(comparator); + } -template, typename AllocMatch = AllocComp> -Vector::ApproxMatcher Approx(std::vector const &comparator) { - return Vector::ApproxMatcher(comparator); -} + template, typename AllocMatch = AllocComp> + Vector::ApproxMatcher Approx(std::vector const &comparator) { + return Vector::ApproxMatcher(comparator); + } -template, typename AllocMatch = AllocComp> -Vector::UnorderedEqualsMatcher UnorderedEquals(std::vector const &target) { - return Vector::UnorderedEqualsMatcher(target); -} + template, typename AllocMatch = AllocComp> + Vector::UnorderedEqualsMatcher + UnorderedEquals(std::vector const &target) { + return Vector::UnorderedEqualsMatcher(target); + } -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_vector.h namespace Catch { -template -class MatchExpr : public ITransientExpression { - ArgT const &m_arg; - MatcherT m_matcher; - StringRef m_matcherString; - public: - MatchExpr(ArgT const &arg, MatcherT const &matcher, StringRef const &matcherString) - : ITransientExpression{true, matcher.match(arg)}, - m_arg(arg), - m_matcher(matcher), - m_matcherString(matcherString) {} - - void streamReconstructedExpression(std::ostream &os) const override { - auto matcherAsString = m_matcher.toString(); - os << Catch::Detail::stringify(m_arg) << ' '; - if (matcherAsString == Detail::unprintableString) - os << m_matcherString; - else - os << matcherAsString; - } -}; + template + class MatchExpr : public ITransientExpression { + ArgT const &m_arg; + MatcherT m_matcher; + StringRef m_matcherString; + public: + MatchExpr(ArgT const &arg, MatcherT const &matcher, StringRef const &matcherString) + : ITransientExpression{true, matcher.match(arg)}, + m_arg(arg), + m_matcher(matcher), + m_matcherString(matcherString) {} + + void streamReconstructedExpression(std::ostream &os) const override { + auto matcherAsString = m_matcher.toString(); + os << Catch::Detail::stringify(m_arg) << ' '; + if (matcherAsString == Detail::unprintableString) + os << m_matcherString; + else + os << matcherAsString; + } + }; -using StringMatcher = Matchers::Impl::MatcherBase; + using StringMatcher = Matchers::Impl::MatcherBase; -void handleExceptionMatchExpr(AssertionHandler &handler, StringMatcher const &matcher, StringRef const &matcherString); + void + handleExceptionMatchExpr(AssertionHandler &handler, StringMatcher const &matcher, StringRef const &matcherString); -template -auto makeMatchExpr(ArgT const &arg, MatcherT const &matcher, StringRef const &matcherString) -> MatchExpr { - return MatchExpr(arg, matcher, matcherString); -} + template + auto makeMatchExpr(ArgT const &arg, MatcherT const &matcher, StringRef const &matcherString) -> MatchExpr { + return MatchExpr(arg, matcher, matcherString); + } } // namespace Catch @@ -3853,27 +4078,33 @@ auto makeMatchExpr(ArgT const &arg, MatcherT const &matcher, StringRef const &ma namespace Catch { -namespace Generators { -class GeneratorUntypedBase { - public: - GeneratorUntypedBase() = default; - virtual ~GeneratorUntypedBase(); - // Attempts to move the generator to the next element - // - // Returns true iff the move succeeded (and a valid element - // can be retrieved). - virtual bool next() = 0; -}; -using GeneratorBasePtr = std::unique_ptr; + namespace Generators { + class GeneratorUntypedBase { + public: + GeneratorUntypedBase() = default; -} // namespace Generators + virtual ~GeneratorUntypedBase(); -struct IGeneratorTracker { - virtual ~IGeneratorTracker(); - virtual auto hasGenerator() const -> bool = 0; - virtual auto getGenerator() const -> Generators::GeneratorBasePtr const & = 0; - virtual void setGenerator(Generators::GeneratorBasePtr &&generator) = 0; -}; + // Attempts to move the generator to the next element + // + // Returns true iff the move succeeded (and a valid element + // can be retrieved). + virtual bool next() = 0; + }; + + using GeneratorBasePtr = std::unique_ptr; + + } // namespace Generators + + struct IGeneratorTracker { + virtual ~IGeneratorTracker(); + + virtual auto hasGenerator() const -> bool = 0; + + virtual auto getGenerator() const -> Generators::GeneratorBasePtr const & = 0; + + virtual void setGenerator(Generators::GeneratorBasePtr &&generator) = 0; + }; } // namespace Catch @@ -3884,22 +4115,26 @@ struct IGeneratorTracker { namespace Catch { #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) -template -[[noreturn]] -void throw_exception(Ex const &e) { - throw e; -} + + template + [[noreturn]] + void throw_exception(Ex const &e) { + throw e; + } + #else // ^^ Exceptions are enabled // Exceptions are disabled vv - [[noreturn]] + [[noreturn]] void throw_exception(std::exception const& e); #endif -[[noreturn]] -void throw_logic_error(std::string const &msg); -[[noreturn]] -void throw_domain_error(std::string const &msg); -[[noreturn]] -void throw_runtime_error(std::string const &msg); + [[noreturn]] + void throw_logic_error(std::string const &msg); + + [[noreturn]] + void throw_domain_error(std::string const &msg); + + [[noreturn]] + void throw_runtime_error(std::string const &msg); } // namespace Catch; @@ -3928,423 +4163,444 @@ void throw_runtime_error(std::string const &msg); namespace Catch { -class GeneratorException : public std::exception { - const char *const m_msg = ""; + class GeneratorException : public std::exception { + const char *const m_msg = ""; - public: - GeneratorException(const char *msg) : - m_msg(msg) {} + public: + GeneratorException(const char *msg) : + m_msg(msg) {} - const char *what() const noexcept override final; -}; + const char *what() const noexcept override final; + }; -namespace Generators { + namespace Generators { // !TBD move this into its own location? -namespace pf { -template -std::unique_ptr make_unique(Args &&... args) { - return std::unique_ptr(new T(std::forward(args)...)); -} -} + namespace pf { + template + std::unique_ptr make_unique(Args &&... args) { + return std::unique_ptr(new T(std::forward(args)...)); + } + } -template -struct IGenerator : GeneratorUntypedBase { - virtual ~IGenerator() = default; + template + struct IGenerator : GeneratorUntypedBase { + virtual ~IGenerator() = default; - // Returns the current element of the generator - // - // \Precondition The generator is either freshly constructed, - // or the last call to `next()` returned true - virtual T const &get() const = 0; - using type = T; -}; + // Returns the current element of the generator + // + // \Precondition The generator is either freshly constructed, + // or the last call to `next()` returned true + virtual T const &get() const = 0; -template -class SingleValueGenerator final : public IGenerator { - T m_value; - public: - SingleValueGenerator(T &&value) : m_value(std::move(value)) {} - - T const &get() const override { - return m_value; - } - bool next() override { - return false; - } -}; + using type = T; + }; -template -class FixedValuesGenerator final : public IGenerator { - static_assert(!std::is_same::value, - "FixedValuesGenerator does not support bools because of std::vector" - "specialization, use SingleValue Generator instead."); - std::vector m_values; - size_t m_idx = 0; - public: - FixedValuesGenerator(std::initializer_list values) : m_values(values) {} - - T const &get() const override { - return m_values[m_idx]; - } - bool next() override { - ++m_idx; - return m_idx < m_values.size(); - } -}; + template + class SingleValueGenerator final : public IGenerator { + T m_value; + public: + SingleValueGenerator(T &&value) : m_value(std::move(value)) {} -template -class GeneratorWrapper final { - std::unique_ptr> m_generator; - public: - GeneratorWrapper(std::unique_ptr> generator) : - m_generator(std::move(generator)) {} - T const &get() const { - return m_generator->get(); - } - bool next() { - return m_generator->next(); - } -}; + T const &get() const override { + return m_value; + } -template -GeneratorWrapper value(T &&value) { - return GeneratorWrapper(pf::make_unique>(std::forward(value))); -} -template -GeneratorWrapper values(std::initializer_list values) { - return GeneratorWrapper(pf::make_unique>(values)); -} + bool next() override { + return false; + } + }; -template -class Generators : public IGenerator { - std::vector> m_generators; - size_t m_current = 0; - - void populate(GeneratorWrapper &&generator) { - m_generators.emplace_back(std::move(generator)); - } - void populate(T &&val) { - m_generators.emplace_back(value(std::forward(val))); - } - template - void populate(U &&val) { - populate(T(std::forward(val))); - } - template - void populate(U &&valueOrGenerator, Gs &&... moreGenerators) { - populate(std::forward(valueOrGenerator)); - populate(std::forward(moreGenerators)...); - } - - public: - template - Generators(Gs &&... moreGenerators) { - m_generators.reserve(sizeof...(Gs)); - populate(std::forward(moreGenerators)...); - } - - T const &get() const override { - return m_generators[m_current].get(); - } - - bool next() override { - if (m_current >= m_generators.size()) { - return false; - } - const bool current_status = m_generators[m_current].next(); - if (!current_status) { - ++m_current; - } - return m_current < m_generators.size(); - } -}; + template + class FixedValuesGenerator final : public IGenerator { + static_assert(!std::is_same::value, + "FixedValuesGenerator does not support bools because of std::vector" + "specialization, use SingleValue Generator instead."); + std::vector m_values; + size_t m_idx = 0; + public: + FixedValuesGenerator(std::initializer_list values) : m_values(values) {} -template -GeneratorWrapper> table(std::initializer_list::type...>> tuples) { - return values>(tuples); -} + T const &get() const override { + return m_values[m_idx]; + } -// Tag type to signal that a generator sequence should convert arguments to a specific type -template -struct as {}; + bool next() override { + ++m_idx; + return m_idx < m_values.size(); + } + }; -template -auto makeGenerators(GeneratorWrapper &&generator, Gs &&... moreGenerators) -> Generators { - return Generators(std::move(generator), std::forward(moreGenerators)...); -} -template -auto makeGenerators(GeneratorWrapper &&generator) -> Generators { - return Generators(std::move(generator)); -} -template -auto makeGenerators(T &&val, Gs &&... moreGenerators) -> Generators { - return makeGenerators(value(std::forward(val)), std::forward(moreGenerators)...); -} -template -auto makeGenerators(as, U &&val, Gs &&... moreGenerators) -> Generators { - return makeGenerators(value(T(std::forward(val))), std::forward(moreGenerators)...); -} + template + class GeneratorWrapper final { + std::unique_ptr> m_generator; + public: + GeneratorWrapper(std::unique_ptr> generator) : + m_generator(std::move(generator)) {} -auto acquireGeneratorTracker(StringRef generatorName, SourceLineInfo const &lineInfo) -> IGeneratorTracker &; + T const &get() const { + return m_generator->get(); + } -template -// Note: The type after -> is weird, because VS2015 cannot parse -// the expression used in the typedef inside, when it is in -// return type. Yeah. -auto generate(StringRef generatorName, - SourceLineInfo const &lineInfo, - L const &generatorExpression) -> decltype(std::declval().get()) { - using UnderlyingType = typename decltype(generatorExpression())::type; - - IGeneratorTracker &tracker = acquireGeneratorTracker(generatorName, lineInfo); - if (!tracker.hasGenerator()) { - tracker.setGenerator(pf::make_unique>(generatorExpression())); - } - - auto const &generator = static_cast const &>( *tracker.getGenerator()); - return generator.get(); -} + bool next() { + return m_generator->next(); + } + }; -} // namespace Generators -} // namespace Catch + template + GeneratorWrapper value(T &&value) { + return GeneratorWrapper(pf::make_unique>(std::forward(value))); + } -#define GENERATE(...) \ - Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ - CATCH_INTERNAL_LINEINFO, \ - [ ]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) -#define GENERATE_COPY(...) \ - Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ - CATCH_INTERNAL_LINEINFO, \ - [=]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) -#define GENERATE_REF(...) \ - Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ - CATCH_INTERNAL_LINEINFO, \ - [&]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) + template + GeneratorWrapper values(std::initializer_list values) { + return GeneratorWrapper(pf::make_unique>(values)); + } -// end catch_generators.hpp -// start catch_generators_generic.hpp + template + class Generators : public IGenerator { + std::vector> m_generators; + size_t m_current = 0; -namespace Catch { -namespace Generators { - -template -class TakeGenerator : public IGenerator { - GeneratorWrapper m_generator; - size_t m_returned = 0; - size_t m_target; - public: - TakeGenerator(size_t target, GeneratorWrapper &&generator) : - m_generator(std::move(generator)), - m_target(target) { - assert(target != 0 && "Empty generators are not allowed"); - } - T const &get() const override { - return m_generator.get(); - } - bool next() override { - ++m_returned; - if (m_returned >= m_target) { - return false; - } - - const auto success = m_generator.next(); - // If the underlying generator does not contain enough values - // then we cut short as well - if (!success) { - m_returned = m_target; - } - return success; - } -}; + void populate(GeneratorWrapper &&generator) { + m_generators.emplace_back(std::move(generator)); + } -template -GeneratorWrapper take(size_t target, GeneratorWrapper &&generator) { - return GeneratorWrapper(pf::make_unique>(target, std::move(generator))); -} + void populate(T &&val) { + m_generators.emplace_back(value(std::forward(val))); + } -template -class FilterGenerator : public IGenerator { - GeneratorWrapper m_generator; - Predicate m_predicate; - public: - template - FilterGenerator(P &&pred, GeneratorWrapper &&generator): - m_generator(std::move(generator)), - m_predicate(std::forward

(pred)) { - if (!m_predicate(m_generator.get())) { - // It might happen that there are no values that pass the - // filter. In that case we throw an exception. - auto has_initial_value = nextImpl(); - if (!has_initial_value) { - Catch::throw_exception(GeneratorException("No valid value found in filtered generator")); - } - } - } - - T const &get() const override { - return m_generator.get(); - } - - bool next() override { - return nextImpl(); - } - - private: - bool nextImpl() { - bool success = m_generator.next(); - if (!success) { - return false; - } - while (!m_predicate(m_generator.get()) && (success = m_generator.next()) == true); - return success; - } -}; + template + void populate(U &&val) { + populate(T(std::forward(val))); + } -template -GeneratorWrapper filter(Predicate &&pred, GeneratorWrapper &&generator) { - return GeneratorWrapper(std::unique_ptr>(pf::make_unique>(std::forward< - Predicate>(pred), std::move(generator)))); -} + template + void populate(U &&valueOrGenerator, Gs &&... moreGenerators) { + populate(std::forward(valueOrGenerator)); + populate(std::forward(moreGenerators)...); + } -template -class RepeatGenerator : public IGenerator { - static_assert(!std::is_same::value, - "RepeatGenerator currently does not support bools" - "because of std::vector specialization"); - GeneratorWrapper m_generator; - mutable std::vector m_returned; - size_t m_target_repeats; - size_t m_current_repeat = 0; - size_t m_repeat_index = 0; - public: - RepeatGenerator(size_t repeats, GeneratorWrapper &&generator) : - m_generator(std::move(generator)), - m_target_repeats(repeats) { - assert(m_target_repeats > 0 && "Repeat generator must repeat at least once"); - } - - T const &get() const override { - if (m_current_repeat == 0) { - m_returned.push_back(m_generator.get()); - return m_returned.back(); - } - return m_returned[m_repeat_index]; - } - - bool next() override { - // There are 2 basic cases: - // 1) We are still reading the generator - // 2) We are reading our own cache - - // In the first case, we need to poke the underlying generator. - // If it happily moves, we are left in that state, otherwise it is time to start reading from our cache - if (m_current_repeat == 0) { - const auto success = m_generator.next(); - if (!success) { - ++m_current_repeat; - } - return m_current_repeat < m_target_repeats; - } - - // In the second case, we need to move indices forward and check that we haven't run up against the end - ++m_repeat_index; - if (m_repeat_index == m_returned.size()) { - m_repeat_index = 0; - ++m_current_repeat; - } - return m_current_repeat < m_target_repeats; - } -}; + public: + template + Generators(Gs &&... moreGenerators) { + m_generators.reserve(sizeof...(Gs)); + populate(std::forward(moreGenerators)...); + } -template -GeneratorWrapper repeat(size_t repeats, GeneratorWrapper &&generator) { - return GeneratorWrapper(pf::make_unique>(repeats, std::move(generator))); -} + T const &get() const override { + return m_generators[m_current].get(); + } -template -class MapGenerator : public IGenerator { - // TBD: provide static assert for mapping function, for friendly error message - GeneratorWrapper m_generator; - Func m_function; - // To avoid returning dangling reference, we have to save the values - T m_cache; - public: - template - MapGenerator(F2 &&function, GeneratorWrapper &&generator) : - m_generator(std::move(generator)), - m_function(std::forward(function)), - m_cache(m_function(m_generator.get())) {} - - T const &get() const override { - return m_cache; - } - bool next() override { - const auto success = m_generator.next(); - if (success) { - m_cache = m_function(m_generator.get()); - } - return success; - } -}; + bool next() override { + if (m_current >= m_generators.size()) { + return false; + } + const bool current_status = m_generators[m_current].next(); + if (!current_status) { + ++m_current; + } + return m_current < m_generators.size(); + } + }; -template> -GeneratorWrapper map(Func &&function, GeneratorWrapper &&generator) { - return GeneratorWrapper( - pf::make_unique>(std::forward(function), std::move(generator)) - ); -} + template + GeneratorWrapper> + table(std::initializer_list::type...>> tuples) { + return values>(tuples); + } -template -GeneratorWrapper map(Func &&function, GeneratorWrapper &&generator) { - return GeneratorWrapper( - pf::make_unique>(std::forward(function), std::move(generator)) - ); -} +// Tag type to signal that a generator sequence should convert arguments to a specific type + template + struct as { + }; -template -class ChunkGenerator final : public IGenerator> { - std::vector m_chunk; - size_t m_chunk_size; - GeneratorWrapper m_generator; - bool m_used_up = false; - public: - ChunkGenerator(size_t size, GeneratorWrapper generator) : - m_chunk_size(size), m_generator(std::move(generator)) { - m_chunk.reserve(m_chunk_size); - if (m_chunk_size != 0) { - m_chunk.push_back(m_generator.get()); - for (size_t i = 1; i < m_chunk_size; ++i) { - if (!m_generator.next()) { - Catch::throw_exception(GeneratorException("Not enough values to initialize the first chunk")); - } - m_chunk.push_back(m_generator.get()); - } - } - } - std::vector const &get() const override { - return m_chunk; - } - bool next() override { - m_chunk.clear(); - for (size_t idx = 0; idx < m_chunk_size; ++idx) { - if (!m_generator.next()) { - return false; - } - m_chunk.push_back(m_generator.get()); - } - return true; - } -}; + template + auto makeGenerators(GeneratorWrapper &&generator, Gs &&... moreGenerators) -> Generators { + return Generators(std::move(generator), std::forward(moreGenerators)...); + } -template -GeneratorWrapper> chunk(size_t size, GeneratorWrapper &&generator) { - return GeneratorWrapper>( - pf::make_unique>(size, std::move(generator)) - ); -} + template + auto makeGenerators(GeneratorWrapper &&generator) -> Generators { + return Generators(std::move(generator)); + } -} // namespace Generators + template + auto makeGenerators(T &&val, Gs &&... moreGenerators) -> Generators { + return makeGenerators(value(std::forward(val)), std::forward(moreGenerators)...); + } + + template + auto makeGenerators(as, U &&val, Gs &&... moreGenerators) -> Generators { + return makeGenerators(value(T(std::forward(val))), std::forward(moreGenerators)...); + } + + auto acquireGeneratorTracker(StringRef generatorName, SourceLineInfo const &lineInfo) -> IGeneratorTracker &; + + template +// Note: The type after -> is weird, because VS2015 cannot parse +// the expression used in the typedef inside, when it is in +// return type. Yeah. + auto generate(StringRef generatorName, + SourceLineInfo const &lineInfo, + L const &generatorExpression) -> decltype(std::declval().get()) { + using UnderlyingType = typename decltype(generatorExpression())::type; + + IGeneratorTracker &tracker = acquireGeneratorTracker(generatorName, lineInfo); + if (!tracker.hasGenerator()) { + tracker.setGenerator(pf::make_unique>(generatorExpression())); + } + + auto const &generator = static_cast const &>( *tracker.getGenerator()); + return generator.get(); + } + + } // namespace Generators +} // namespace Catch + +#define GENERATE(...) \ + Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ + CATCH_INTERNAL_LINEINFO, \ + [ ]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) +#define GENERATE_COPY(...) \ + Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ + CATCH_INTERNAL_LINEINFO, \ + [=]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) +#define GENERATE_REF(...) \ + Catch::Generators::generate( INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_UNIQUE_NAME(generator)), \ + CATCH_INTERNAL_LINEINFO, \ + [&]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } ) //NOLINT(google-build-using-namespace) + +// end catch_generators.hpp +// start catch_generators_generic.hpp + +namespace Catch { + namespace Generators { + + template + class TakeGenerator : public IGenerator { + GeneratorWrapper m_generator; + size_t m_returned = 0; + size_t m_target; + public: + TakeGenerator(size_t target, GeneratorWrapper &&generator) : + m_generator(std::move(generator)), + m_target(target) { + assert(target != 0 && "Empty generators are not allowed"); + } + + T const &get() const override { + return m_generator.get(); + } + + bool next() override { + ++m_returned; + if (m_returned >= m_target) { + return false; + } + + const auto success = m_generator.next(); + // If the underlying generator does not contain enough values + // then we cut short as well + if (!success) { + m_returned = m_target; + } + return success; + } + }; + + template + GeneratorWrapper take(size_t target, GeneratorWrapper &&generator) { + return GeneratorWrapper(pf::make_unique>(target, std::move(generator))); + } + + template + class FilterGenerator : public IGenerator { + GeneratorWrapper m_generator; + Predicate m_predicate; + public: + template + FilterGenerator(P &&pred, GeneratorWrapper &&generator): + m_generator(std::move(generator)), + m_predicate(std::forward

(pred)) { + if (!m_predicate(m_generator.get())) { + // It might happen that there are no values that pass the + // filter. In that case we throw an exception. + auto has_initial_value = nextImpl(); + if (!has_initial_value) { + Catch::throw_exception(GeneratorException("No valid value found in filtered generator")); + } + } + } + + T const &get() const override { + return m_generator.get(); + } + + bool next() override { + return nextImpl(); + } + + private: + bool nextImpl() { + bool success = m_generator.next(); + if (!success) { + return false; + } + while (!m_predicate(m_generator.get()) && (success = m_generator.next()) == true); + return success; + } + }; + + template + GeneratorWrapper filter(Predicate &&pred, GeneratorWrapper &&generator) { + return GeneratorWrapper( + std::unique_ptr>(pf::make_unique>(std::forward< + Predicate>(pred), std::move(generator)))); + } + + template + class RepeatGenerator : public IGenerator { + static_assert(!std::is_same::value, + "RepeatGenerator currently does not support bools" + "because of std::vector specialization"); + GeneratorWrapper m_generator; + mutable std::vector m_returned; + size_t m_target_repeats; + size_t m_current_repeat = 0; + size_t m_repeat_index = 0; + public: + RepeatGenerator(size_t repeats, GeneratorWrapper &&generator) : + m_generator(std::move(generator)), + m_target_repeats(repeats) { + assert(m_target_repeats > 0 && "Repeat generator must repeat at least once"); + } + + T const &get() const override { + if (m_current_repeat == 0) { + m_returned.push_back(m_generator.get()); + return m_returned.back(); + } + return m_returned[m_repeat_index]; + } + + bool next() override { + // There are 2 basic cases: + // 1) We are still reading the generator + // 2) We are reading our own cache + + // In the first case, we need to poke the underlying generator. + // If it happily moves, we are left in that state, otherwise it is time to start reading from our cache + if (m_current_repeat == 0) { + const auto success = m_generator.next(); + if (!success) { + ++m_current_repeat; + } + return m_current_repeat < m_target_repeats; + } + + // In the second case, we need to move indices forward and check that we haven't run up against the end + ++m_repeat_index; + if (m_repeat_index == m_returned.size()) { + m_repeat_index = 0; + ++m_current_repeat; + } + return m_current_repeat < m_target_repeats; + } + }; + + template + GeneratorWrapper repeat(size_t repeats, GeneratorWrapper &&generator) { + return GeneratorWrapper(pf::make_unique>(repeats, std::move(generator))); + } + + template + class MapGenerator : public IGenerator { + // TBD: provide static assert for mapping function, for friendly error message + GeneratorWrapper m_generator; + Func m_function; + // To avoid returning dangling reference, we have to save the values + T m_cache; + public: + template + MapGenerator(F2 &&function, GeneratorWrapper &&generator) : + m_generator(std::move(generator)), + m_function(std::forward(function)), + m_cache(m_function(m_generator.get())) {} + + T const &get() const override { + return m_cache; + } + + bool next() override { + const auto success = m_generator.next(); + if (success) { + m_cache = m_function(m_generator.get()); + } + return success; + } + }; + + template> + GeneratorWrapper map(Func &&function, GeneratorWrapper &&generator) { + return GeneratorWrapper( + pf::make_unique>(std::forward(function), std::move(generator)) + ); + } + + template + GeneratorWrapper map(Func &&function, GeneratorWrapper &&generator) { + return GeneratorWrapper( + pf::make_unique>(std::forward(function), std::move(generator)) + ); + } + + template + class ChunkGenerator final : public IGenerator> { + std::vector m_chunk; + size_t m_chunk_size; + GeneratorWrapper m_generator; + bool m_used_up = false; + public: + ChunkGenerator(size_t size, GeneratorWrapper generator) : + m_chunk_size(size), m_generator(std::move(generator)) { + m_chunk.reserve(m_chunk_size); + if (m_chunk_size != 0) { + m_chunk.push_back(m_generator.get()); + for (size_t i = 1; i < m_chunk_size; ++i) { + if (!m_generator.next()) { + Catch::throw_exception( + GeneratorException("Not enough values to initialize the first chunk")); + } + m_chunk.push_back(m_generator.get()); + } + } + } + + std::vector const &get() const override { + return m_chunk; + } + + bool next() override { + m_chunk.clear(); + for (size_t idx = 0; idx < m_chunk_size; ++idx) { + if (!m_generator.next()) { + return false; + } + m_chunk.push_back(m_generator.get()); + } + return true; + } + }; + + template + GeneratorWrapper> chunk(size_t size, GeneratorWrapper &&generator) { + return GeneratorWrapper>( + pf::make_unique>(size, std::move(generator)) + ); + } + + } // namespace Generators } // namespace Catch // end catch_generators_generic.hpp @@ -4356,49 +4612,58 @@ GeneratorWrapper> chunk(size_t size, GeneratorWrapper &&genera namespace Catch { -struct IResultCapture; -struct IRunner; -struct IConfig; -struct IMutableContext; + struct IResultCapture; + struct IRunner; + struct IConfig; + struct IMutableContext; -using IConfigPtr = std::shared_ptr; + using IConfigPtr = std::shared_ptr; -struct IContext { - virtual ~IContext(); + struct IContext { + virtual ~IContext(); - virtual IResultCapture *getResultCapture() = 0; - virtual IRunner *getRunner() = 0; - virtual IConfigPtr const &getConfig() const = 0; -}; + virtual IResultCapture *getResultCapture() = 0; -struct IMutableContext : IContext { - virtual ~IMutableContext(); - virtual void setResultCapture(IResultCapture *resultCapture) = 0; - virtual void setRunner(IRunner *runner) = 0; - virtual void setConfig(IConfigPtr const &config) = 0; - - private: - static IMutableContext *currentContext; - friend IMutableContext &getCurrentMutableContext(); - friend void cleanUpContext(); - static void createContext(); -}; + virtual IRunner *getRunner() = 0; -inline IMutableContext &getCurrentMutableContext() { - if (!IMutableContext::currentContext) - IMutableContext::createContext(); - // NOLINTNEXTLINE(clang-analyzer-core.uninitialized.UndefReturn) - return *IMutableContext::currentContext; -} + virtual IConfigPtr const &getConfig() const = 0; + }; -inline IContext &getCurrentContext() { - return getCurrentMutableContext(); -} + struct IMutableContext : IContext { + virtual ~IMutableContext(); + + virtual void setResultCapture(IResultCapture *resultCapture) = 0; + + virtual void setRunner(IRunner *runner) = 0; -void cleanUpContext(); + virtual void setConfig(IConfigPtr const &config) = 0; -class SimplePcg32; -SimplePcg32 &rng(); + private: + static IMutableContext *currentContext; + + friend IMutableContext &getCurrentMutableContext(); + + friend void cleanUpContext(); + + static void createContext(); + }; + + inline IMutableContext &getCurrentMutableContext() { + if (!IMutableContext::currentContext) + IMutableContext::createContext(); + // NOLINTNEXTLINE(clang-analyzer-core.uninitialized.UndefReturn) + return *IMutableContext::currentContext; + } + + inline IContext &getCurrentContext() { + return getCurrentMutableContext(); + } + + void cleanUpContext(); + + class SimplePcg32; + + SimplePcg32 &rng(); } // end catch_context.h @@ -4409,60 +4674,68 @@ SimplePcg32 &rng(); namespace Catch { // An optional type -template -class Option { - public: - Option() : nullableValue(nullptr) {} - Option(T const &_value) - : nullableValue(new(storage) T(_value)) {} - Option(Option const &_other) - : nullableValue(_other ? new(storage) T(*_other) : nullptr) {} - - ~Option() { - reset(); - } - - Option &operator=(Option const &_other) { - if (&_other != this) { - reset(); - if (_other) - nullableValue = new(storage) T(*_other); - } - return *this; - } - Option &operator=(T const &_value) { - reset(); - nullableValue = new(storage) T(_value); - return *this; - } - - void reset() { - if (nullableValue) - nullableValue->~T(); - nullableValue = nullptr; - } - - T &operator*() { return *nullableValue; } - T const &operator*() const { return *nullableValue; } - T *operator->() { return nullableValue; } - const T *operator->() const { return nullableValue; } - - T valueOr(T const &defaultValue) const { - return nullableValue ? *nullableValue : defaultValue; - } - - bool some() const { return nullableValue != nullptr; } - bool none() const { return nullableValue == nullptr; } - - bool operator!() const { return nullableValue == nullptr; } - explicit operator bool() const { - return some(); - } - - private: - T *nullableValue; - alignas(alignof(T)) char storage[sizeof(T)]; -}; + template + class Option { + public: + Option() : nullableValue(nullptr) {} + + Option(T const &_value) + : nullableValue(new(storage) T(_value)) {} + + Option(Option const &_other) + : nullableValue(_other ? new(storage) T(*_other) : nullptr) {} + + ~Option() { + reset(); + } + + Option &operator=(Option const &_other) { + if (&_other != this) { + reset(); + if (_other) + nullableValue = new(storage) T(*_other); + } + return *this; + } + + Option &operator=(T const &_value) { + reset(); + nullableValue = new(storage) T(_value); + return *this; + } + + void reset() { + if (nullableValue) + nullableValue->~T(); + nullableValue = nullptr; + } + + T &operator*() { return *nullableValue; } + + T const &operator*() const { return *nullableValue; } + + T *operator->() { return nullableValue; } + + const T *operator->() const { return nullableValue; } + + T valueOr(T const &defaultValue) const { + return nullableValue ? *nullableValue : defaultValue; + } + + bool some() const { return nullableValue != nullptr; } + + bool none() const { return nullableValue == nullptr; } + + bool operator!() const { return nullableValue == nullptr; } + + explicit operator bool() const { + return some(); + } + + private: + T *nullableValue; + alignas(alignof(T)) char storage[sizeof(T)]; + }; } // end namespace Catch @@ -4475,84 +4748,106 @@ class Option { namespace Catch { -enum class Verbosity { - Quiet = 0, - Normal, - High -}; + enum class Verbosity { + Quiet = 0, + Normal, + High + }; -struct WarnAbout { - enum What { - Nothing = 0x00, - NoAssertions = 0x01, - NoTests = 0x02 - }; -}; + struct WarnAbout { + enum What { + Nothing = 0x00, + NoAssertions = 0x01, + NoTests = 0x02 + }; + }; -struct ShowDurations { - enum OrNot { - DefaultForReporter, - Always, - Never - }; -}; -struct RunTests { - enum InWhatOrder { - InDeclarationOrder, - InLexicographicalOrder, - InRandomOrder - }; -}; -struct UseColour { - enum YesOrNo { - Auto, - Yes, - No - }; -}; -struct WaitForKeypress { - enum When { - Never, - BeforeStart = 1, - BeforeExit = 2, - BeforeStartAndExit = BeforeStart | BeforeExit - }; -}; + struct ShowDurations { + enum OrNot { + DefaultForReporter, + Always, + Never + }; + }; + struct RunTests { + enum InWhatOrder { + InDeclarationOrder, + InLexicographicalOrder, + InRandomOrder + }; + }; + struct UseColour { + enum YesOrNo { + Auto, + Yes, + No + }; + }; + struct WaitForKeypress { + enum When { + Never, + BeforeStart = 1, + BeforeExit = 2, + BeforeStartAndExit = BeforeStart | BeforeExit + }; + }; -class TestSpec; - -struct IConfig : NonCopyable { - - virtual ~IConfig(); - - virtual bool allowThrows() const = 0; - virtual std::ostream &stream() const = 0; - virtual std::string name() const = 0; - virtual bool includeSuccessfulResults() const = 0; - virtual bool shouldDebugBreak() const = 0; - virtual bool warnAboutMissingAssertions() const = 0; - virtual bool warnAboutNoTests() const = 0; - virtual int abortAfter() const = 0; - virtual bool showInvisibles() const = 0; - virtual ShowDurations::OrNot showDurations() const = 0; - virtual double minDuration() const = 0; - virtual TestSpec const &testSpec() const = 0; - virtual bool hasTestFilters() const = 0; - virtual std::vector const &getTestsOrTags() const = 0; - virtual RunTests::InWhatOrder runOrder() const = 0; - virtual unsigned int rngSeed() const = 0; - virtual UseColour::YesOrNo useColour() const = 0; - virtual std::vector const &getSectionsToRun() const = 0; - virtual Verbosity verbosity() const = 0; - - virtual bool benchmarkNoAnalysis() const = 0; - virtual int benchmarkSamples() const = 0; - virtual double benchmarkConfidenceInterval() const = 0; - virtual unsigned int benchmarkResamples() const = 0; - virtual std::chrono::milliseconds benchmarkWarmupTime() const = 0; -}; + class TestSpec; + + struct IConfig : NonCopyable { + + virtual ~IConfig(); + + virtual bool allowThrows() const = 0; + + virtual std::ostream &stream() const = 0; + + virtual std::string name() const = 0; + + virtual bool includeSuccessfulResults() const = 0; + + virtual bool shouldDebugBreak() const = 0; + + virtual bool warnAboutMissingAssertions() const = 0; + + virtual bool warnAboutNoTests() const = 0; + + virtual int abortAfter() const = 0; + + virtual bool showInvisibles() const = 0; + + virtual ShowDurations::OrNot showDurations() const = 0; + + virtual double minDuration() const = 0; -using IConfigPtr = std::shared_ptr; + virtual TestSpec const &testSpec() const = 0; + + virtual bool hasTestFilters() const = 0; + + virtual std::vector const &getTestsOrTags() const = 0; + + virtual RunTests::InWhatOrder runOrder() const = 0; + + virtual unsigned int rngSeed() const = 0; + + virtual UseColour::YesOrNo useColour() const = 0; + + virtual std::vector const &getSectionsToRun() const = 0; + + virtual Verbosity verbosity() const = 0; + + virtual bool benchmarkNoAnalysis() const = 0; + + virtual int benchmarkSamples() const = 0; + + virtual double benchmarkConfidenceInterval() const = 0; + + virtual unsigned int benchmarkResamples() const = 0; + + virtual std::chrono::milliseconds benchmarkWarmupTime() const = 0; + }; + + using IConfigPtr = std::shared_ptr; } // end catch_interfaces_config.h @@ -4567,41 +4862,45 @@ namespace Catch { // does not use it, but it should behave as expected inside stdlib's // distributions. // The implementation is based on the PCG family (http://pcg-random.org) -class SimplePcg32 { - using state_type = std::uint64_t; - public: - using result_type = std::uint32_t; - static constexpr result_type (min)() { - return 0; - } - static constexpr result_type (max)() { - return static_cast(-1); - } - - // Provide some default initial state for the default constructor - SimplePcg32() : SimplePcg32(0xed743cc4U) {} - - explicit SimplePcg32(result_type seed_); - - void seed(result_type seed_); - void discard(uint64_t skip); - - result_type operator()(); - - private: - friend bool operator==(SimplePcg32 const &lhs, SimplePcg32 const &rhs); - friend bool operator!=(SimplePcg32 const &lhs, SimplePcg32 const &rhs); - - // In theory we also need operator<< and operator>> - // In practice we do not use them, so we will skip them for now - - std::uint64_t m_state; - // This part of the state determines which "stream" of the numbers - // is chosen -- we take it as a constant for Catch2, so we only - // need to deal with seeding the main state. - // Picked by reading 8 bytes from `/dev/random` :-) - static const std::uint64_t s_inc = (0x13ed0cc53f939476ULL << 1ULL) | 1ULL; -}; + class SimplePcg32 { + using state_type = std::uint64_t; + public: + using result_type = std::uint32_t; + + static constexpr result_type (min)() { + return 0; + } + + static constexpr result_type (max)() { + return static_cast(-1); + } + + // Provide some default initial state for the default constructor + SimplePcg32() : SimplePcg32(0xed743cc4U) {} + + explicit SimplePcg32(result_type seed_); + + void seed(result_type seed_); + + void discard(uint64_t skip); + + result_type operator()(); + + private: + friend bool operator==(SimplePcg32 const &lhs, SimplePcg32 const &rhs); + + friend bool operator!=(SimplePcg32 const &lhs, SimplePcg32 const &rhs); + + // In theory we also need operator<< and operator>> + // In practice we do not use them, so we will skip them for now + + std::uint64_t m_state; + // This part of the state determines which "stream" of the numbers + // is chosen -- we take it as a constant for Catch2, so we only + // need to deal with seeding the main state. + // Picked by reading 8 bytes from `/dev/random` :-) + static const std::uint64_t s_inc = (0x13ed0cc53f939476ULL << 1ULL) | 1ULL; + }; } // end namespace Catch @@ -4609,155 +4908,158 @@ class SimplePcg32 { #include namespace Catch { -namespace Generators { - -template -class RandomFloatingGenerator final : public IGenerator { - Catch::SimplePcg32 &m_rng; - std::uniform_real_distribution m_dist; - Float m_current_number; - public: - - RandomFloatingGenerator(Float a, Float b) : - m_rng(rng()), - m_dist(a, b) { - static_cast(next()); - } - - Float const &get() const override { - return m_current_number; - } - bool next() override { - m_current_number = m_dist(m_rng); - return true; - } -}; + namespace Generators { -template -class RandomIntegerGenerator final : public IGenerator { - Catch::SimplePcg32 &m_rng; - std::uniform_int_distribution m_dist; - Integer m_current_number; - public: - - RandomIntegerGenerator(Integer a, Integer b) : - m_rng(rng()), - m_dist(a, b) { - static_cast(next()); - } - - Integer const &get() const override { - return m_current_number; - } - bool next() override { - m_current_number = m_dist(m_rng); - return true; - } -}; + template + class RandomFloatingGenerator final : public IGenerator { + Catch::SimplePcg32 &m_rng; + std::uniform_real_distribution m_dist; + Float m_current_number; + public: + + RandomFloatingGenerator(Float a, Float b) : + m_rng(rng()), + m_dist(a, b) { + static_cast(next()); + } + + Float const &get() const override { + return m_current_number; + } + + bool next() override { + m_current_number = m_dist(m_rng); + return true; + } + }; + + template + class RandomIntegerGenerator final : public IGenerator { + Catch::SimplePcg32 &m_rng; + std::uniform_int_distribution m_dist; + Integer m_current_number; + public: + + RandomIntegerGenerator(Integer a, Integer b) : + m_rng(rng()), + m_dist(a, b) { + static_cast(next()); + } + + Integer const &get() const override { + return m_current_number; + } + + bool next() override { + m_current_number = m_dist(m_rng); + return true; + } + }; // TODO: Ideally this would be also constrained against the various char types, // but I don't expect users to run into that in practice. -template -typename std::enable_if::value && !std::is_same::value, - GeneratorWrapper>::type -random(T a, T b) { - return GeneratorWrapper( - pf::make_unique>(a, b) - ); -} + template + typename std::enable_if::value && !std::is_same::value, + GeneratorWrapper>::type + random(T a, T b) { + return GeneratorWrapper( + pf::make_unique>(a, b) + ); + } -template -typename std::enable_if::value, - GeneratorWrapper>::type -random(T a, T b) { - return GeneratorWrapper( - pf::make_unique>(a, b) - ); -} + template + typename std::enable_if::value, + GeneratorWrapper>::type + random(T a, T b) { + return GeneratorWrapper( + pf::make_unique>(a, b) + ); + } -template -class RangeGenerator final : public IGenerator { - T m_current; - T m_end; - T m_step; - bool m_positive; - - public: - RangeGenerator(T const &start, T const &end, T const &step) : - m_current(start), - m_end(end), - m_step(step), - m_positive(m_step > T(0)) { - assert(m_current != m_end && "Range start and end cannot be equal"); - assert(m_step != T(0) && "Step size cannot be zero"); - assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && "Step moves away from end"); - } - - RangeGenerator(T const &start, T const &end) : - RangeGenerator(start, end, (start < end) ? T(1) : T(-1)) {} - - T const &get() const override { - return m_current; - } - - bool next() override { - m_current += m_step; - return (m_positive) ? (m_current < m_end) : (m_current > m_end); - } -}; + template + class RangeGenerator final : public IGenerator { + T m_current; + T m_end; + T m_step; + bool m_positive; -template -GeneratorWrapper range(T const &start, T const &end, T const &step) { - static_assert(std::is_arithmetic::value && !std::is_same::value, "Type must be numeric"); - return GeneratorWrapper(pf::make_unique>(start, end, step)); -} + public: + RangeGenerator(T const &start, T const &end, T const &step) : + m_current(start), + m_end(end), + m_step(step), + m_positive(m_step > T(0)) { + assert(m_current != m_end && "Range start and end cannot be equal"); + assert(m_step != T(0) && "Step size cannot be zero"); + assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && + "Step moves away from end"); + } -template -GeneratorWrapper range(T const &start, T const &end) { - static_assert(std::is_integral::value && !std::is_same::value, "Type must be an integer"); - return GeneratorWrapper(pf::make_unique>(start, end)); -} + RangeGenerator(T const &start, T const &end) : + RangeGenerator(start, end, (start < end) ? T(1) : T(-1)) {} -template -class IteratorGenerator final : public IGenerator { - static_assert(!std::is_same::value, - "IteratorGenerator currently does not support bools" - "because of std::vector specialization"); - - std::vector m_elems; - size_t m_current = 0; - public: - template - IteratorGenerator(InputIterator first, InputSentinel last):m_elems(first, last) { - if (m_elems.empty()) { - Catch::throw_exception(GeneratorException("IteratorGenerator received no valid values")); - } - } - - T const &get() const override { - return m_elems[m_current]; - } - - bool next() override { - ++m_current; - return m_current != m_elems.size(); - } -}; + T const &get() const override { + return m_current; + } -template::value_type> -GeneratorWrapper from_range(InputIterator from, InputSentinel to) { - return GeneratorWrapper(pf::make_unique>(from, to)); -} + bool next() override { + m_current += m_step; + return (m_positive) ? (m_current < m_end) : (m_current > m_end); + } + }; -template -GeneratorWrapper from_range(Container const &cnt) { - return GeneratorWrapper(pf::make_unique>(cnt.begin(), cnt.end())); -} + template + GeneratorWrapper range(T const &start, T const &end, T const &step) { + static_assert(std::is_arithmetic::value && !std::is_same::value, "Type must be numeric"); + return GeneratorWrapper(pf::make_unique>(start, end, step)); + } + + template + GeneratorWrapper range(T const &start, T const &end) { + static_assert(std::is_integral::value && !std::is_same::value, "Type must be an integer"); + return GeneratorWrapper(pf::make_unique>(start, end)); + } + + template + class IteratorGenerator final : public IGenerator { + static_assert(!std::is_same::value, + "IteratorGenerator currently does not support bools" + "because of std::vector specialization"); + + std::vector m_elems; + size_t m_current = 0; + public: + template + IteratorGenerator(InputIterator first, InputSentinel last):m_elems(first, last) { + if (m_elems.empty()) { + Catch::throw_exception(GeneratorException("IteratorGenerator received no valid values")); + } + } + + T const &get() const override { + return m_elems[m_current]; + } -} // namespace Generators + bool next() override { + ++m_current; + return m_current != m_elems.size(); + } + }; + + template::value_type> + GeneratorWrapper from_range(InputIterator from, InputSentinel to) { + return GeneratorWrapper(pf::make_unique>(from, to)); + } + + template + GeneratorWrapper from_range(Container const &cnt) { + return GeneratorWrapper(pf::make_unique>(cnt.begin(), cnt.end())); + } + + } // namespace Generators } // namespace Catch // end catch_generators_specific.hpp @@ -4777,65 +5079,69 @@ GeneratorWrapper from_range(Container const &cnt) { namespace Catch { -struct ITestInvoker; - -struct TestCaseInfo { - enum SpecialProperties { - None = 0, - IsHidden = 1 << 1, - ShouldFail = 1 << 2, - MayFail = 1 << 3, - Throws = 1 << 4, - NonPortable = 1 << 5, - Benchmark = 1 << 6 - }; - - TestCaseInfo(std::string const &_name, - std::string const &_className, - std::string const &_description, - std::vector const &_tags, - SourceLineInfo const &_lineInfo); - - friend void setTags(TestCaseInfo &testCaseInfo, std::vector tags); - - bool isHidden() const; - bool throws() const; - bool okToFail() const; - bool expectedToFail() const; - - std::string tagsAsString() const; - - std::string name; - std::string className; - std::string description; - std::vector tags; - std::vector lcaseTags; - SourceLineInfo lineInfo; - SpecialProperties properties; -}; + struct ITestInvoker; + + struct TestCaseInfo { + enum SpecialProperties { + None = 0, + IsHidden = 1 << 1, + ShouldFail = 1 << 2, + MayFail = 1 << 3, + Throws = 1 << 4, + NonPortable = 1 << 5, + Benchmark = 1 << 6 + }; -class TestCase : public TestCaseInfo { - public: + TestCaseInfo(std::string const &_name, + std::string const &_className, + std::string const &_description, + std::vector const &_tags, + SourceLineInfo const &_lineInfo); - TestCase(ITestInvoker *testCase, TestCaseInfo &&info); + friend void setTags(TestCaseInfo &testCaseInfo, std::vector tags); - TestCase withName(std::string const &_newName) const; + bool isHidden() const; - void invoke() const; + bool throws() const; - TestCaseInfo const &getTestCaseInfo() const; + bool okToFail() const; - bool operator==(TestCase const &other) const; - bool operator<(TestCase const &other) const; + bool expectedToFail() const; - private: - std::shared_ptr test; -}; + std::string tagsAsString() const; -TestCase makeTestCase(ITestInvoker *testCase, - std::string const &className, - NameAndTags const &nameAndTags, - SourceLineInfo const &lineInfo); + std::string name; + std::string className; + std::string description; + std::vector tags; + std::vector lcaseTags; + SourceLineInfo lineInfo; + SpecialProperties properties; + }; + + class TestCase : public TestCaseInfo { + public: + + TestCase(ITestInvoker *testCase, TestCaseInfo &&info); + + TestCase withName(std::string const &_newName) const; + + void invoke() const; + + TestCaseInfo const &getTestCaseInfo() const; + + bool operator==(TestCase const &other) const; + + bool operator<(TestCase const &other) const; + + private: + std::shared_ptr test; + }; + + TestCase makeTestCase(ITestInvoker *testCase, + std::string const &className, + NameAndTags const &nameAndTags, + SourceLineInfo const &lineInfo); } #ifdef __clang__ @@ -4847,10 +5153,11 @@ TestCase makeTestCase(ITestInvoker *testCase, namespace Catch { -struct IRunner { - virtual ~IRunner(); - virtual bool aborting() const = 0; -}; + struct IRunner { + virtual ~IRunner(); + + virtual bool aborting() const = 0; + }; } // end catch_interfaces_runner.h @@ -5086,98 +5393,117 @@ return @ desc; \ // start catch_wildcard_pattern.h namespace Catch { -class WildcardPattern { - enum WildcardPosition { - NoWildcard = 0, - WildcardAtStart = 1, - WildcardAtEnd = 2, - WildcardAtBothEnds = WildcardAtStart | WildcardAtEnd - }; - - public: - - WildcardPattern(std::string const &pattern, CaseSensitive::Choice caseSensitivity); - virtual ~WildcardPattern() = default; - virtual bool matches(std::string const &str) const; - - private: - std::string normaliseString(std::string const &str) const; - CaseSensitive::Choice m_caseSensitivity; - WildcardPosition m_wildcard = NoWildcard; - std::string m_pattern; -}; + class WildcardPattern { + enum WildcardPosition { + NoWildcard = 0, + WildcardAtStart = 1, + WildcardAtEnd = 2, + WildcardAtBothEnds = WildcardAtStart | WildcardAtEnd + }; + + public: + + WildcardPattern(std::string const &pattern, CaseSensitive::Choice caseSensitivity); + + virtual ~WildcardPattern() = default; + + virtual bool matches(std::string const &str) const; + + private: + std::string normaliseString(std::string const &str) const; + + CaseSensitive::Choice m_caseSensitivity; + WildcardPosition m_wildcard = NoWildcard; + std::string m_pattern; + }; } -// end catch_wildcard_pattern.h -#include -#include -#include +// end catch_wildcard_pattern.h +#include +#include +#include + +namespace Catch { + + struct IConfig; + + class TestSpec { + class Pattern { + public: + explicit Pattern(std::string const &name); + + virtual ~Pattern(); + + virtual bool matches(TestCaseInfo const &testCase) const = 0; + + std::string const &name() const; + + private: + std::string const m_name; + }; + + using PatternPtr = std::shared_ptr; + + class NamePattern : public Pattern { + public: + explicit NamePattern(std::string const &name, std::string const &filterString); + + bool matches(TestCaseInfo const &testCase) const override; + + private: + WildcardPattern m_wildcardPattern; + }; + + class TagPattern : public Pattern { + public: + explicit TagPattern(std::string const &tag, std::string const &filterString); + + bool matches(TestCaseInfo const &testCase) const override; + + private: + std::string m_tag; + }; + + class ExcludedPattern : public Pattern { + public: + explicit ExcludedPattern(PatternPtr const &underlyingPattern); + + bool matches(TestCaseInfo const &testCase) const override; + + private: + PatternPtr m_underlyingPattern; + }; + + struct Filter { + std::vector m_patterns; + + bool matches(TestCaseInfo const &testCase) const; + + std::string name() const; + }; + + public: + struct FilterMatch { + std::string name; + std::vector tests; + }; + using Matches = std::vector; + using vectorStrings = std::vector; + + bool hasFilters() const; + + bool matches(TestCaseInfo const &testCase) const; -namespace Catch { + Matches matchesByFilter(std::vector const &testCases, IConfig const &config) const; -struct IConfig; - -class TestSpec { - class Pattern { - public: - explicit Pattern(std::string const &name); - virtual ~Pattern(); - virtual bool matches(TestCaseInfo const &testCase) const = 0; - std::string const &name() const; - private: - std::string const m_name; - }; - using PatternPtr = std::shared_ptr; - - class NamePattern : public Pattern { - public: - explicit NamePattern(std::string const &name, std::string const &filterString); - bool matches(TestCaseInfo const &testCase) const override; - private: - WildcardPattern m_wildcardPattern; - }; - - class TagPattern : public Pattern { - public: - explicit TagPattern(std::string const &tag, std::string const &filterString); - bool matches(TestCaseInfo const &testCase) const override; - private: - std::string m_tag; - }; - - class ExcludedPattern : public Pattern { - public: - explicit ExcludedPattern(PatternPtr const &underlyingPattern); - bool matches(TestCaseInfo const &testCase) const override; - private: - PatternPtr m_underlyingPattern; - }; - - struct Filter { - std::vector m_patterns; - - bool matches(TestCaseInfo const &testCase) const; - std::string name() const; - }; - - public: - struct FilterMatch { - std::string name; - std::vector tests; - }; - using Matches = std::vector; - using vectorStrings = std::vector; - - bool hasFilters() const; - bool matches(TestCaseInfo const &testCase) const; - Matches matchesByFilter(std::vector const &testCases, IConfig const &config) const; - const vectorStrings &getInvalidArgs() const; - - private: - std::vector m_filters; - std::vector m_invalidArgs; - friend class TestSpecParser; -}; + const vectorStrings &getInvalidArgs() const; + + private: + std::vector m_filters; + std::vector m_invalidArgs; + + friend class TestSpecParser; + }; } #ifdef __clang__ @@ -5191,72 +5517,91 @@ class TestSpec { namespace Catch { -struct TagAlias; + struct TagAlias; -struct ITagAliasRegistry { - virtual ~ITagAliasRegistry(); - // Nullptr if not present - virtual TagAlias const *find(std::string const &alias) const = 0; - virtual std::string expandAliases(std::string const &unexpandedTestSpec) const = 0; + struct ITagAliasRegistry { + virtual ~ITagAliasRegistry(); - static ITagAliasRegistry const &get(); -}; + // Nullptr if not present + virtual TagAlias const *find(std::string const &alias) const = 0; + + virtual std::string expandAliases(std::string const &unexpandedTestSpec) const = 0; + + static ITagAliasRegistry const &get(); + }; } // end namespace Catch // end catch_interfaces_tag_alias_registry.h namespace Catch { -class TestSpecParser { - enum Mode { None, Name, QuotedName, Tag, EscapedName }; - Mode m_mode = None; - Mode lastMode = None; - bool m_exclusion = false; - std::size_t m_pos = 0; - std::size_t m_realPatternPos = 0; - std::string m_arg; - std::string m_substring; - std::string m_patternName; - std::vector m_escapeChars; - TestSpec::Filter m_currentFilter; - TestSpec m_testSpec; - ITagAliasRegistry const *m_tagAliases = nullptr; - - public: - TestSpecParser(ITagAliasRegistry const &tagAliases); - - TestSpecParser &parse(std::string const &arg); - TestSpec testSpec(); - - private: - bool visitChar(char c); - void startNewMode(Mode mode); - bool processNoneChar(char c); - void processNameChar(char c); - bool processOtherChar(char c); - void endMode(); - void escape(); - bool isControlChar(char c) const; - void saveLastMode(); - void revertBackToLastMode(); - void addFilter(); - bool separate(); - - // Handles common preprocessing of the pattern for name/tag patterns - std::string preprocessPattern(); - // Adds the current pattern as a test name - void addNamePattern(); - // Adds the current pattern as a tag - void addTagPattern(); - - inline void addCharToPattern(char c) { - m_substring += c; - m_patternName += c; - m_realPatternPos++; - } + class TestSpecParser { + enum Mode { + None, Name, QuotedName, Tag, EscapedName + }; + Mode m_mode = None; + Mode lastMode = None; + bool m_exclusion = false; + std::size_t m_pos = 0; + std::size_t m_realPatternPos = 0; + std::string m_arg; + std::string m_substring; + std::string m_patternName; + std::vector m_escapeChars; + TestSpec::Filter m_currentFilter; + TestSpec m_testSpec; + ITagAliasRegistry const *m_tagAliases = nullptr; -}; -TestSpec parseTestSpec(std::string const &arg); + public: + TestSpecParser(ITagAliasRegistry const &tagAliases); + + TestSpecParser &parse(std::string const &arg); + + TestSpec testSpec(); + + private: + bool visitChar(char c); + + void startNewMode(Mode mode); + + bool processNoneChar(char c); + + void processNameChar(char c); + + bool processOtherChar(char c); + + void endMode(); + + void escape(); + + bool isControlChar(char c) const; + + void saveLastMode(); + + void revertBackToLastMode(); + + void addFilter(); + + bool separate(); + + // Handles common preprocessing of the pattern for name/tag patterns + std::string preprocessPattern(); + + // Adds the current pattern as a test name + void addNamePattern(); + + // Adds the current pattern as a tag + void addTagPattern(); + + inline void addCharToPattern(char c) { + m_substring += c; + m_patternName += c; + m_realPatternPos++; + } + + }; + + TestSpec parseTestSpec(std::string const &arg); } // namespace Catch @@ -5277,108 +5622,136 @@ TestSpec parseTestSpec(std::string const &arg); namespace Catch { -struct IStream; - -struct ConfigData { - bool listTests = false; - bool listTags = false; - bool listReporters = false; - bool listTestNamesOnly = false; - - bool showSuccessfulTests = false; - bool shouldDebugBreak = false; - bool noThrow = false; - bool showHelp = false; - bool showInvisibles = false; - bool filenamesAsTags = false; - bool libIdentify = false; - - int abortAfter = -1; - unsigned int rngSeed = 0; - - bool benchmarkNoAnalysis = false; - unsigned int benchmarkSamples = 100; - double benchmarkConfidenceInterval = 0.95; - unsigned int benchmarkResamples = 100000; - std::chrono::milliseconds::rep benchmarkWarmupTime = 100; - - Verbosity verbosity = Verbosity::Normal; - WarnAbout::What warnings = WarnAbout::Nothing; - ShowDurations::OrNot showDurations = ShowDurations::DefaultForReporter; - double minDuration = -1; - RunTests::InWhatOrder runOrder = RunTests::InDeclarationOrder; - UseColour::YesOrNo useColour = UseColour::Auto; - WaitForKeypress::When waitForKeypress = WaitForKeypress::Never; - - std::string outputFilename; - std::string name; - std::string processName; + struct IStream; + + struct ConfigData { + bool listTests = false; + bool listTags = false; + bool listReporters = false; + bool listTestNamesOnly = false; + + bool showSuccessfulTests = false; + bool shouldDebugBreak = false; + bool noThrow = false; + bool showHelp = false; + bool showInvisibles = false; + bool filenamesAsTags = false; + bool libIdentify = false; + + int abortAfter = -1; + unsigned int rngSeed = 0; + + bool benchmarkNoAnalysis = false; + unsigned int benchmarkSamples = 100; + double benchmarkConfidenceInterval = 0.95; + unsigned int benchmarkResamples = 100000; + std::chrono::milliseconds::rep benchmarkWarmupTime = 100; + + Verbosity verbosity = Verbosity::Normal; + WarnAbout::What warnings = WarnAbout::Nothing; + ShowDurations::OrNot showDurations = ShowDurations::DefaultForReporter; + double minDuration = -1; + RunTests::InWhatOrder runOrder = RunTests::InDeclarationOrder; + UseColour::YesOrNo useColour = UseColour::Auto; + WaitForKeypress::When waitForKeypress = WaitForKeypress::Never; + + std::string outputFilename; + std::string name; + std::string processName; #ifndef CATCH_CONFIG_DEFAULT_REPORTER #define CATCH_CONFIG_DEFAULT_REPORTER "console" #endif - std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER; + std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER; #undef CATCH_CONFIG_DEFAULT_REPORTER - std::vector testsOrTags; - std::vector sectionsToRun; -}; + std::vector testsOrTags; + std::vector sectionsToRun; + }; -class Config : public IConfig { - public: - - Config() = default; - Config(ConfigData const &data); - virtual ~Config() = default; - - std::string const &getFilename() const; - - bool listTests() const; - bool listTestNamesOnly() const; - bool listTags() const; - bool listReporters() const; - - std::string getProcessName() const; - std::string const &getReporterName() const; - - std::vector const &getTestsOrTags() const override; - std::vector const &getSectionsToRun() const override; - - TestSpec const &testSpec() const override; - bool hasTestFilters() const override; - - bool showHelp() const; - - // IConfig interface - bool allowThrows() const override; - std::ostream &stream() const override; - std::string name() const override; - bool includeSuccessfulResults() const override; - bool warnAboutMissingAssertions() const override; - bool warnAboutNoTests() const override; - ShowDurations::OrNot showDurations() const override; - double minDuration() const override; - RunTests::InWhatOrder runOrder() const override; - unsigned int rngSeed() const override; - UseColour::YesOrNo useColour() const override; - bool shouldDebugBreak() const override; - int abortAfter() const override; - bool showInvisibles() const override; - Verbosity verbosity() const override; - bool benchmarkNoAnalysis() const override; - int benchmarkSamples() const override; - double benchmarkConfidenceInterval() const override; - unsigned int benchmarkResamples() const override; - std::chrono::milliseconds benchmarkWarmupTime() const override; - - private: - - IStream const *openStream(); - ConfigData m_data; - - std::unique_ptr m_stream; - TestSpec m_testSpec; - bool m_hasTestFilters = false; -}; + class Config : public IConfig { + public: + + Config() = default; + + Config(ConfigData const &data); + + virtual ~Config() = default; + + std::string const &getFilename() const; + + bool listTests() const; + + bool listTestNamesOnly() const; + + bool listTags() const; + + bool listReporters() const; + + std::string getProcessName() const; + + std::string const &getReporterName() const; + + std::vector const &getTestsOrTags() const override; + + std::vector const &getSectionsToRun() const override; + + TestSpec const &testSpec() const override; + + bool hasTestFilters() const override; + + bool showHelp() const; + + // IConfig interface + bool allowThrows() const override; + + std::ostream &stream() const override; + + std::string name() const override; + + bool includeSuccessfulResults() const override; + + bool warnAboutMissingAssertions() const override; + + bool warnAboutNoTests() const override; + + ShowDurations::OrNot showDurations() const override; + + double minDuration() const override; + + RunTests::InWhatOrder runOrder() const override; + + unsigned int rngSeed() const override; + + UseColour::YesOrNo useColour() const override; + + bool shouldDebugBreak() const override; + + int abortAfter() const override; + + bool showInvisibles() const override; + + Verbosity verbosity() const override; + + bool benchmarkNoAnalysis() const override; + + int benchmarkSamples() const override; + + double benchmarkConfidenceInterval() const override; + + unsigned int benchmarkResamples() const override; + + std::chrono::milliseconds benchmarkWarmupTime() const override; + + private: + + IStream const *openStream(); + + ConfigData m_data; + + std::unique_ptr m_stream; + TestSpec m_testSpec; + bool m_hasTestFilters = false; + }; } // end namespace Catch @@ -5389,41 +5762,53 @@ class Config : public IConfig { namespace Catch { -struct AssertionResultData { - AssertionResultData() = delete; + struct AssertionResultData { + AssertionResultData() = delete; - AssertionResultData(ResultWas::OfType _resultType, LazyExpression const &_lazyExpression); + AssertionResultData(ResultWas::OfType _resultType, LazyExpression const &_lazyExpression); - std::string message; - mutable std::string reconstructedExpression; - LazyExpression lazyExpression; - ResultWas::OfType resultType; + std::string message; + mutable std::string reconstructedExpression; + LazyExpression lazyExpression; + ResultWas::OfType resultType; - std::string reconstructExpression() const; -}; + std::string reconstructExpression() const; + }; -class AssertionResult { - public: - AssertionResult() = delete; - AssertionResult(AssertionInfo const &info, AssertionResultData const &data); - - bool isOk() const; - bool succeeded() const; - ResultWas::OfType getResultType() const; - bool hasExpression() const; - bool hasMessage() const; - std::string getExpression() const; - std::string getExpressionInMacro() const; - bool hasExpandedExpression() const; - std::string getExpandedExpression() const; - std::string getMessage() const; - SourceLineInfo getSourceInfo() const; - StringRef getTestMacroName() const; - - //protected: - AssertionInfo m_info; - AssertionResultData m_resultData; -}; + class AssertionResult { + public: + AssertionResult() = delete; + + AssertionResult(AssertionInfo const &info, AssertionResultData const &data); + + bool isOk() const; + + bool succeeded() const; + + ResultWas::OfType getResultType() const; + + bool hasExpression() const; + + bool hasMessage() const; + + std::string getExpression() const; + + std::string getExpressionInMacro() const; + + bool hasExpandedExpression() const; + + std::string getExpandedExpression() const; + + std::string getMessage() const; + + SourceLineInfo getSourceInfo() const; + + StringRef getTestMacroName() const; + + //protected: + AssertionInfo m_info; + AssertionResultData m_resultData; + }; } // end namespace Catch @@ -5486,140 +5871,167 @@ namespace Catch { namespace Catch { -struct ReporterConfig { - explicit ReporterConfig(IConfigPtr const &_fullConfig); + struct ReporterConfig { + explicit ReporterConfig(IConfigPtr const &_fullConfig); - ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream); + ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream); - std::ostream &stream() const; - IConfigPtr fullConfig() const; + std::ostream &stream() const; - private: - std::ostream *m_stream; - IConfigPtr m_fullConfig; -}; + IConfigPtr fullConfig() const; -struct ReporterPreferences { - bool shouldRedirectStdOut = false; - bool shouldReportAllAssertions = false; -}; + private: + std::ostream *m_stream; + IConfigPtr m_fullConfig; + }; -template -struct LazyStat : Option { - LazyStat &operator=(T const &_value) { - Option::operator=(_value); - used = false; - return *this; - } - void reset() { - Option::reset(); - used = false; - } - bool used = false; -}; + struct ReporterPreferences { + bool shouldRedirectStdOut = false; + bool shouldReportAllAssertions = false; + }; -struct TestRunInfo { - TestRunInfo(std::string const &_name); - std::string name; -}; -struct GroupInfo { - GroupInfo(std::string const &_name, - std::size_t _groupIndex, - std::size_t _groupsCount); - - std::string name; - std::size_t groupIndex; - std::size_t groupsCounts; -}; + template + struct LazyStat : Option { + LazyStat &operator=(T const &_value) { + Option::operator=(_value); + used = false; + return *this; + } -struct AssertionStats { - AssertionStats(AssertionResult const &_assertionResult, - std::vector const &_infoMessages, - Totals const &_totals); + void reset() { + Option::reset(); + used = false; + } - AssertionStats(AssertionStats const &) = default; - AssertionStats(AssertionStats &&) = default; - AssertionStats &operator=(AssertionStats const &) = delete; - AssertionStats &operator=(AssertionStats &&) = delete; - virtual ~AssertionStats(); + bool used = false; + }; - AssertionResult assertionResult; - std::vector infoMessages; - Totals totals; -}; + struct TestRunInfo { + TestRunInfo(std::string const &_name); -struct SectionStats { - SectionStats(SectionInfo const &_sectionInfo, - Counts const &_assertions, - double _durationInSeconds, - bool _missingAssertions); - SectionStats(SectionStats const &) = default; - SectionStats(SectionStats &&) = default; - SectionStats &operator=(SectionStats const &) = default; - SectionStats &operator=(SectionStats &&) = default; - virtual ~SectionStats(); - - SectionInfo sectionInfo; - Counts assertions; - double durationInSeconds; - bool missingAssertions; -}; + std::string name; + }; -struct TestCaseStats { - TestCaseStats(TestCaseInfo const &_testInfo, - Totals const &_totals, - std::string const &_stdOut, - std::string const &_stdErr, - bool _aborting); - - TestCaseStats(TestCaseStats const &) = default; - TestCaseStats(TestCaseStats &&) = default; - TestCaseStats &operator=(TestCaseStats const &) = default; - TestCaseStats &operator=(TestCaseStats &&) = default; - virtual ~TestCaseStats(); - - TestCaseInfo testInfo; - Totals totals; - std::string stdOut; - std::string stdErr; - bool aborting; -}; + struct GroupInfo { + GroupInfo(std::string const &_name, + std::size_t _groupIndex, + std::size_t _groupsCount); -struct TestGroupStats { - TestGroupStats(GroupInfo const &_groupInfo, - Totals const &_totals, - bool _aborting); - TestGroupStats(GroupInfo const &_groupInfo); - - TestGroupStats(TestGroupStats const &) = default; - TestGroupStats(TestGroupStats &&) = default; - TestGroupStats &operator=(TestGroupStats const &) = default; - TestGroupStats &operator=(TestGroupStats &&) = default; - virtual ~TestGroupStats(); - - GroupInfo groupInfo; - Totals totals; - bool aborting; -}; + std::string name; + std::size_t groupIndex; + std::size_t groupsCounts; + }; -struct TestRunStats { - TestRunStats(TestRunInfo const &_runInfo, - Totals const &_totals, - bool _aborting); + struct AssertionStats { + AssertionStats(AssertionResult const &_assertionResult, + std::vector const &_infoMessages, + Totals const &_totals); - TestRunStats(TestRunStats const &) = default; - TestRunStats(TestRunStats &&) = default; - TestRunStats &operator=(TestRunStats const &) = default; - TestRunStats &operator=(TestRunStats &&) = default; - virtual ~TestRunStats(); + AssertionStats(AssertionStats const &) = default; - TestRunInfo runInfo; - Totals totals; - bool aborting; -}; + AssertionStats(AssertionStats &&) = default; + + AssertionStats &operator=(AssertionStats const &) = delete; + + AssertionStats &operator=(AssertionStats &&) = delete; + + virtual ~AssertionStats(); + + AssertionResult assertionResult; + std::vector infoMessages; + Totals totals; + }; + + struct SectionStats { + SectionStats(SectionInfo const &_sectionInfo, + Counts const &_assertions, + double _durationInSeconds, + bool _missingAssertions); + + SectionStats(SectionStats const &) = default; + + SectionStats(SectionStats &&) = default; + + SectionStats &operator=(SectionStats const &) = default; + + SectionStats &operator=(SectionStats &&) = default; + + virtual ~SectionStats(); + + SectionInfo sectionInfo; + Counts assertions; + double durationInSeconds; + bool missingAssertions; + }; + + struct TestCaseStats { + TestCaseStats(TestCaseInfo const &_testInfo, + Totals const &_totals, + std::string const &_stdOut, + std::string const &_stdErr, + bool _aborting); + + TestCaseStats(TestCaseStats const &) = default; + + TestCaseStats(TestCaseStats &&) = default; + + TestCaseStats &operator=(TestCaseStats const &) = default; + + TestCaseStats &operator=(TestCaseStats &&) = default; + + virtual ~TestCaseStats(); + + TestCaseInfo testInfo; + Totals totals; + std::string stdOut; + std::string stdErr; + bool aborting; + }; + + struct TestGroupStats { + TestGroupStats(GroupInfo const &_groupInfo, + Totals const &_totals, + bool _aborting); + + TestGroupStats(GroupInfo const &_groupInfo); + + TestGroupStats(TestGroupStats const &) = default; + + TestGroupStats(TestGroupStats &&) = default; + + TestGroupStats &operator=(TestGroupStats const &) = default; + + TestGroupStats &operator=(TestGroupStats &&) = default; + + virtual ~TestGroupStats(); + + GroupInfo groupInfo; + Totals totals; + bool aborting; + }; + + struct TestRunStats { + TestRunStats(TestRunInfo const &_runInfo, + Totals const &_totals, + bool _aborting); + + TestRunStats(TestRunStats const &) = default; + + TestRunStats(TestRunStats &&) = default; + + TestRunStats &operator=(TestRunStats const &) = default; + + TestRunStats &operator=(TestRunStats &&) = default; + + virtual ~TestRunStats(); + + TestRunInfo runInfo; + Totals totals; + bool aborting; + }; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - struct BenchmarkInfo { + struct BenchmarkInfo { std::string name; double estimatedDuration; int iterations; @@ -5656,333 +6068,364 @@ struct TestRunStats { }; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -struct IStreamingReporter { - virtual ~IStreamingReporter() = default; + struct IStreamingReporter { + virtual ~IStreamingReporter() = default; + + // Implementing class must also provide the following static methods: + // static std::string getDescription(); + // static std::set getSupportedVerbosities() + + virtual ReporterPreferences getPreferences() const = 0; + + virtual void noMatchingTestCases(std::string const &spec) = 0; + + virtual void reportInvalidArguments(std::string const &) {} + + virtual void testRunStarting(TestRunInfo const &testRunInfo) = 0; + + virtual void testGroupStarting(GroupInfo const &groupInfo) = 0; + + virtual void testCaseStarting(TestCaseInfo const &testInfo) = 0; + + virtual void sectionStarting(SectionInfo const §ionInfo) = 0; + +#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) + virtual void benchmarkPreparing( std::string const& ) {} + virtual void benchmarkStarting( BenchmarkInfo const& ) {} + virtual void benchmarkEnded( BenchmarkStats<> const& ) {} + virtual void benchmarkFailed( std::string const& ) {} +#endif // CATCH_CONFIG_ENABLE_BENCHMARKING + + virtual void assertionStarting(AssertionInfo const &assertionInfo) = 0; + + // The return value indicates if the messages buffer should be cleared: + virtual bool assertionEnded(AssertionStats const &assertionStats) = 0; + + virtual void sectionEnded(SectionStats const §ionStats) = 0; + + virtual void testCaseEnded(TestCaseStats const &testCaseStats) = 0; + + virtual void testGroupEnded(TestGroupStats const &testGroupStats) = 0; + + virtual void testRunEnded(TestRunStats const &testRunStats) = 0; + + virtual void skipTest(TestCaseInfo const &testInfo) = 0; + + // Default empty implementation provided + virtual void fatalErrorEncountered(StringRef name); + + virtual bool isMulti() const; + }; + + using IStreamingReporterPtr = std::unique_ptr; + + struct IReporterFactory { + virtual ~IReporterFactory(); + + virtual IStreamingReporterPtr create(ReporterConfig const &config) const = 0; + + virtual std::string getDescription() const = 0; + }; + + using IReporterFactoryPtr = std::shared_ptr; + + struct IReporterRegistry { + using FactoryMap = std::map; + using Listeners = std::vector; + + virtual ~IReporterRegistry(); + + virtual IStreamingReporterPtr create(std::string const &name, IConfigPtr const &config) const = 0; + + virtual FactoryMap const &getFactories() const = 0; + + virtual Listeners const &getListeners() const = 0; + }; + +} // end namespace Catch + +// end catch_interfaces_reporter.h +#include +#include +#include +#include +#include +#include +#include + +namespace Catch { + void prepareExpandedExpression(AssertionResult &result); + +// Returns double formatted as %.3f (format expected on output) + std::string getFormattedDuration(double duration); + +//! Should the reporter show + bool shouldShowDuration(IConfig const &config, double duration); + + std::string serializeFilters(std::vector const &container); + + template + struct StreamingReporterBase : IStreamingReporter { + + StreamingReporterBase(ReporterConfig const &_config) + : m_config(_config.fullConfig()), + stream(_config.stream()) { + m_reporterPrefs.shouldRedirectStdOut = false; + if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) + CATCH_ERROR("Verbosity level not supported by this reporter"); + } + + ReporterPreferences getPreferences() const override { + return m_reporterPrefs; + } + + static std::set getSupportedVerbosities() { + return {Verbosity::Normal}; + } + + ~StreamingReporterBase() override = default; + + void noMatchingTestCases(std::string const &) override {} + + void reportInvalidArguments(std::string const &) override {} + + void testRunStarting(TestRunInfo const &_testRunInfo) override { + currentTestRunInfo = _testRunInfo; + } + + void testGroupStarting(GroupInfo const &_groupInfo) override { + currentGroupInfo = _groupInfo; + } + + void testCaseStarting(TestCaseInfo const &_testInfo) override { + currentTestCaseInfo = _testInfo; + } + + void sectionStarting(SectionInfo const &_sectionInfo) override { + m_sectionStack.push_back(_sectionInfo); + } + + void sectionEnded(SectionStats const & /* _sectionStats */) override { + m_sectionStack.pop_back(); + } + + void testCaseEnded(TestCaseStats const & /* _testCaseStats */) override { + currentTestCaseInfo.reset(); + } + + void testGroupEnded(TestGroupStats const & /* _testGroupStats */) override { + currentGroupInfo.reset(); + } + + void testRunEnded(TestRunStats const & /* _testRunStats */) override { + currentTestCaseInfo.reset(); + currentGroupInfo.reset(); + currentTestRunInfo.reset(); + } + + void skipTest(TestCaseInfo const &) override { + // Don't do anything with this by default. + // It can optionally be overridden in the derived class. + } + + IConfigPtr m_config; + std::ostream &stream; + + LazyStat currentTestRunInfo; + LazyStat currentGroupInfo; + LazyStat currentTestCaseInfo; + + std::vector m_sectionStack; + ReporterPreferences m_reporterPrefs; + }; + + template + struct CumulativeReporterBase : IStreamingReporter { + template + struct Node { + explicit Node(T const &_value) : value(_value) {} + + virtual ~Node() {} + + using ChildNodes = std::vector>; + T value; + ChildNodes children; + }; + + struct SectionNode { + explicit SectionNode(SectionStats const &_stats) : stats(_stats) {} + + virtual ~SectionNode() = default; - // Implementing class must also provide the following static methods: - // static std::string getDescription(); - // static std::set getSupportedVerbosities() + bool operator==(SectionNode const &other) const { + return stats.sectionInfo.lineInfo == other.stats.sectionInfo.lineInfo; + } - virtual ReporterPreferences getPreferences() const = 0; + bool operator==(std::shared_ptr const &other) const { + return operator==(*other); + } - virtual void noMatchingTestCases(std::string const &spec) = 0; + SectionStats stats; + using ChildSections = std::vector>; + using Assertions = std::vector; + ChildSections childSections; + Assertions assertions; + std::string stdOut; + std::string stdErr; + }; - virtual void reportInvalidArguments(std::string const &) {} + struct BySectionInfo { + BySectionInfo(SectionInfo const &other) : m_other(other) {} - virtual void testRunStarting(TestRunInfo const &testRunInfo) = 0; - virtual void testGroupStarting(GroupInfo const &groupInfo) = 0; + BySectionInfo(BySectionInfo const &other) : m_other(other.m_other) {} - virtual void testCaseStarting(TestCaseInfo const &testInfo) = 0; - virtual void sectionStarting(SectionInfo const §ionInfo) = 0; + bool operator()(std::shared_ptr const &node) const { + return ((node->stats.sectionInfo.name == m_other.name) && + (node->stats.sectionInfo.lineInfo == m_other.lineInfo)); + } -#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - virtual void benchmarkPreparing( std::string const& ) {} - virtual void benchmarkStarting( BenchmarkInfo const& ) {} - virtual void benchmarkEnded( BenchmarkStats<> const& ) {} - virtual void benchmarkFailed( std::string const& ) {} -#endif // CATCH_CONFIG_ENABLE_BENCHMARKING + void operator=(BySectionInfo const &) = delete; - virtual void assertionStarting(AssertionInfo const &assertionInfo) = 0; + private: + SectionInfo const &m_other; + }; - // The return value indicates if the messages buffer should be cleared: - virtual bool assertionEnded(AssertionStats const &assertionStats) = 0; + using TestCaseNode = Node; + using TestGroupNode = Node; + using TestRunNode = Node; - virtual void sectionEnded(SectionStats const §ionStats) = 0; - virtual void testCaseEnded(TestCaseStats const &testCaseStats) = 0; - virtual void testGroupEnded(TestGroupStats const &testGroupStats) = 0; - virtual void testRunEnded(TestRunStats const &testRunStats) = 0; + CumulativeReporterBase(ReporterConfig const &_config) + : m_config(_config.fullConfig()), + stream(_config.stream()) { + m_reporterPrefs.shouldRedirectStdOut = false; + if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) + CATCH_ERROR("Verbosity level not supported by this reporter"); + } - virtual void skipTest(TestCaseInfo const &testInfo) = 0; + ~CumulativeReporterBase() override = default; - // Default empty implementation provided - virtual void fatalErrorEncountered(StringRef name); + ReporterPreferences getPreferences() const override { + return m_reporterPrefs; + } - virtual bool isMulti() const; -}; -using IStreamingReporterPtr = std::unique_ptr; + static std::set getSupportedVerbosities() { + return {Verbosity::Normal}; + } -struct IReporterFactory { - virtual ~IReporterFactory(); - virtual IStreamingReporterPtr create(ReporterConfig const &config) const = 0; - virtual std::string getDescription() const = 0; -}; -using IReporterFactoryPtr = std::shared_ptr; + void testRunStarting(TestRunInfo const &) override {} -struct IReporterRegistry { - using FactoryMap = std::map; - using Listeners = std::vector; + void testGroupStarting(GroupInfo const &) override {} - virtual ~IReporterRegistry(); - virtual IStreamingReporterPtr create(std::string const &name, IConfigPtr const &config) const = 0; - virtual FactoryMap const &getFactories() const = 0; - virtual Listeners const &getListeners() const = 0; -}; + void testCaseStarting(TestCaseInfo const &) override {} -} // end namespace Catch + void sectionStarting(SectionInfo const §ionInfo) override { + SectionStats incompleteStats(sectionInfo, Counts(), 0, false); + std::shared_ptr node; + if (m_sectionStack.empty()) { + if (!m_rootSection) + m_rootSection = std::make_shared(incompleteStats); + node = m_rootSection; + } else { + SectionNode &parentNode = *m_sectionStack.back(); + auto it = + std::find_if(parentNode.childSections.begin(), + parentNode.childSections.end(), + BySectionInfo(sectionInfo)); + if (it == parentNode.childSections.end()) { + node = std::make_shared(incompleteStats); + parentNode.childSections.push_back(node); + } else + node = *it; + } + m_sectionStack.push_back(node); + m_deepestSection = std::move(node); + } -// end catch_interfaces_reporter.h -#include -#include -#include -#include -#include -#include -#include + void assertionStarting(AssertionInfo const &) override {} + + bool assertionEnded(AssertionStats const &assertionStats) override { + assert(!m_sectionStack.empty()); + // AssertionResult holds a pointer to a temporary DecomposedExpression, + // which getExpandedExpression() calls to build the expression string. + // Our section stack copy of the assertionResult will likely outlive the + // temporary, so it must be expanded or discarded now to avoid calling + // a destroyed object later. + prepareExpandedExpression(const_cast( assertionStats.assertionResult )); + SectionNode §ionNode = *m_sectionStack.back(); + sectionNode.assertions.push_back(assertionStats); + return true; + } -namespace Catch { -void prepareExpandedExpression(AssertionResult &result); + void sectionEnded(SectionStats const §ionStats) override { + assert(!m_sectionStack.empty()); + SectionNode &node = *m_sectionStack.back(); + node.stats = sectionStats; + m_sectionStack.pop_back(); + } -// Returns double formatted as %.3f (format expected on output) -std::string getFormattedDuration(double duration); + void testCaseEnded(TestCaseStats const &testCaseStats) override { + auto node = std::make_shared(testCaseStats); + assert(m_sectionStack.size() == 0); + node->children.push_back(m_rootSection); + m_testCases.push_back(node); + m_rootSection.reset(); -//! Should the reporter show -bool shouldShowDuration(IConfig const &config, double duration); - -std::string serializeFilters(std::vector const &container); - -template -struct StreamingReporterBase : IStreamingReporter { - - StreamingReporterBase(ReporterConfig const &_config) - : m_config(_config.fullConfig()), - stream(_config.stream()) { - m_reporterPrefs.shouldRedirectStdOut = false; - if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) - CATCH_ERROR("Verbosity level not supported by this reporter"); - } - - ReporterPreferences getPreferences() const override { - return m_reporterPrefs; - } - - static std::set getSupportedVerbosities() { - return {Verbosity::Normal}; - } - - ~StreamingReporterBase() override = default; - - void noMatchingTestCases(std::string const &) override {} - - void reportInvalidArguments(std::string const &) override {} - - void testRunStarting(TestRunInfo const &_testRunInfo) override { - currentTestRunInfo = _testRunInfo; - } - - void testGroupStarting(GroupInfo const &_groupInfo) override { - currentGroupInfo = _groupInfo; - } - - void testCaseStarting(TestCaseInfo const &_testInfo) override { - currentTestCaseInfo = _testInfo; - } - void sectionStarting(SectionInfo const &_sectionInfo) override { - m_sectionStack.push_back(_sectionInfo); - } - - void sectionEnded(SectionStats const & /* _sectionStats */) override { - m_sectionStack.pop_back(); - } - void testCaseEnded(TestCaseStats const & /* _testCaseStats */) override { - currentTestCaseInfo.reset(); - } - void testGroupEnded(TestGroupStats const & /* _testGroupStats */) override { - currentGroupInfo.reset(); - } - void testRunEnded(TestRunStats const & /* _testRunStats */) override { - currentTestCaseInfo.reset(); - currentGroupInfo.reset(); - currentTestRunInfo.reset(); - } - - void skipTest(TestCaseInfo const &) override { - // Don't do anything with this by default. - // It can optionally be overridden in the derived class. - } - - IConfigPtr m_config; - std::ostream &stream; - - LazyStat currentTestRunInfo; - LazyStat currentGroupInfo; - LazyStat currentTestCaseInfo; - - std::vector m_sectionStack; - ReporterPreferences m_reporterPrefs; -}; + assert(m_deepestSection); + m_deepestSection->stdOut = testCaseStats.stdOut; + m_deepestSection->stdErr = testCaseStats.stdErr; + } -template -struct CumulativeReporterBase : IStreamingReporter { - template - struct Node { - explicit Node(T const &_value) : value(_value) {} - virtual ~Node() {} - - using ChildNodes = std::vector>; - T value; - ChildNodes children; - }; - struct SectionNode { - explicit SectionNode(SectionStats const &_stats) : stats(_stats) {} - virtual ~SectionNode() = default; - - bool operator==(SectionNode const &other) const { - return stats.sectionInfo.lineInfo == other.stats.sectionInfo.lineInfo; - } - bool operator==(std::shared_ptr const &other) const { - return operator==(*other); - } - - SectionStats stats; - using ChildSections = std::vector>; - using Assertions = std::vector; - ChildSections childSections; - Assertions assertions; - std::string stdOut; - std::string stdErr; - }; - - struct BySectionInfo { - BySectionInfo(SectionInfo const &other) : m_other(other) {} - BySectionInfo(BySectionInfo const &other) : m_other(other.m_other) {} - bool operator()(std::shared_ptr const &node) const { - return ((node->stats.sectionInfo.name == m_other.name) && - (node->stats.sectionInfo.lineInfo == m_other.lineInfo)); - } - void operator=(BySectionInfo const &) = delete; - - private: - SectionInfo const &m_other; - }; - - using TestCaseNode = Node; - using TestGroupNode = Node; - using TestRunNode = Node; - - CumulativeReporterBase(ReporterConfig const &_config) - : m_config(_config.fullConfig()), - stream(_config.stream()) { - m_reporterPrefs.shouldRedirectStdOut = false; - if (!DerivedT::getSupportedVerbosities().count(m_config->verbosity())) - CATCH_ERROR("Verbosity level not supported by this reporter"); - } - ~CumulativeReporterBase() override = default; - - ReporterPreferences getPreferences() const override { - return m_reporterPrefs; - } - - static std::set getSupportedVerbosities() { - return {Verbosity::Normal}; - } - - void testRunStarting(TestRunInfo const &) override {} - void testGroupStarting(GroupInfo const &) override {} - - void testCaseStarting(TestCaseInfo const &) override {} - - void sectionStarting(SectionInfo const §ionInfo) override { - SectionStats incompleteStats(sectionInfo, Counts(), 0, false); - std::shared_ptr node; - if (m_sectionStack.empty()) { - if (!m_rootSection) - m_rootSection = std::make_shared(incompleteStats); - node = m_rootSection; - } else { - SectionNode &parentNode = *m_sectionStack.back(); - auto it = - std::find_if(parentNode.childSections.begin(), - parentNode.childSections.end(), - BySectionInfo(sectionInfo)); - if (it == parentNode.childSections.end()) { - node = std::make_shared(incompleteStats); - parentNode.childSections.push_back(node); - } else - node = *it; - } - m_sectionStack.push_back(node); - m_deepestSection = std::move(node); - } - - void assertionStarting(AssertionInfo const &) override {} - - bool assertionEnded(AssertionStats const &assertionStats) override { - assert(!m_sectionStack.empty()); - // AssertionResult holds a pointer to a temporary DecomposedExpression, - // which getExpandedExpression() calls to build the expression string. - // Our section stack copy of the assertionResult will likely outlive the - // temporary, so it must be expanded or discarded now to avoid calling - // a destroyed object later. - prepareExpandedExpression(const_cast( assertionStats.assertionResult )); - SectionNode §ionNode = *m_sectionStack.back(); - sectionNode.assertions.push_back(assertionStats); - return true; - } - void sectionEnded(SectionStats const §ionStats) override { - assert(!m_sectionStack.empty()); - SectionNode &node = *m_sectionStack.back(); - node.stats = sectionStats; - m_sectionStack.pop_back(); - } - void testCaseEnded(TestCaseStats const &testCaseStats) override { - auto node = std::make_shared(testCaseStats); - assert(m_sectionStack.size() == 0); - node->children.push_back(m_rootSection); - m_testCases.push_back(node); - m_rootSection.reset(); - - assert(m_deepestSection); - m_deepestSection->stdOut = testCaseStats.stdOut; - m_deepestSection->stdErr = testCaseStats.stdErr; - } - void testGroupEnded(TestGroupStats const &testGroupStats) override { - auto node = std::make_shared(testGroupStats); - node->children.swap(m_testCases); - m_testGroups.push_back(node); - } - void testRunEnded(TestRunStats const &testRunStats) override { - auto node = std::make_shared(testRunStats); - node->children.swap(m_testGroups); - m_testRuns.push_back(node); - testRunEndedCumulative(); - } - virtual void testRunEndedCumulative() = 0; - - void skipTest(TestCaseInfo const &) override {} - - IConfigPtr m_config; - std::ostream &stream; - std::vector m_assertions; - std::vector>> m_sections; - std::vector> m_testCases; - std::vector> m_testGroups; - - std::vector> m_testRuns; - - std::shared_ptr m_rootSection; - std::shared_ptr m_deepestSection; - std::vector> m_sectionStack; - ReporterPreferences m_reporterPrefs; -}; + void testGroupEnded(TestGroupStats const &testGroupStats) override { + auto node = std::make_shared(testGroupStats); + node->children.swap(m_testCases); + m_testGroups.push_back(node); + } -template -char const *getLineOfChars() { - static char line[CATCH_CONFIG_CONSOLE_WIDTH] = {0}; - if (!*line) { - std::memset(line, C, CATCH_CONFIG_CONSOLE_WIDTH - 1); - line[CATCH_CONFIG_CONSOLE_WIDTH - 1] = 0; - } - return line; -} + void testRunEnded(TestRunStats const &testRunStats) override { + auto node = std::make_shared(testRunStats); + node->children.swap(m_testGroups); + m_testRuns.push_back(node); + testRunEndedCumulative(); + } -struct TestEventListenerBase : StreamingReporterBase { - TestEventListenerBase(ReporterConfig const &_config); + virtual void testRunEndedCumulative() = 0; - static std::set getSupportedVerbosities(); + void skipTest(TestCaseInfo const &) override {} - void assertionStarting(AssertionInfo const &) override; - bool assertionEnded(AssertionStats const &) override; -}; + IConfigPtr m_config; + std::ostream &stream; + std::vector m_assertions; + std::vector>> m_sections; + std::vector> m_testCases; + std::vector> m_testGroups; + + std::vector> m_testRuns; + + std::shared_ptr m_rootSection; + std::shared_ptr m_deepestSection; + std::vector> m_sectionStack; + ReporterPreferences m_reporterPrefs; + }; + + template + char const *getLineOfChars() { + static char line[CATCH_CONFIG_CONSOLE_WIDTH] = {0}; + if (!*line) { + std::memset(line, C, CATCH_CONFIG_CONSOLE_WIDTH - 1); + line[CATCH_CONFIG_CONSOLE_WIDTH - 1] = 0; + } + return line; + } + + struct TestEventListenerBase : StreamingReporterBase { + TestEventListenerBase(ReporterConfig const &_config); + + static std::set getSupportedVerbosities(); + + void assertionStarting(AssertionInfo const &) override; + + bool assertionEnded(AssertionStats const &) override; + }; } // end namespace Catch @@ -5991,57 +6434,60 @@ struct TestEventListenerBase : StreamingReporterBase { namespace Catch { -struct Colour { - enum Code { - None = 0, - - White, - Red, - Green, - Blue, - Cyan, - Yellow, - Grey, - - Bright = 0x10, - - BrightRed = Bright | Red, - BrightGreen = Bright | Green, - LightGrey = Bright | Grey, - BrightWhite = Bright | White, - BrightYellow = Bright | Yellow, - - // By intention - FileName = LightGrey, - Warning = BrightYellow, - ResultError = BrightRed, - ResultSuccess = BrightGreen, - ResultExpectedFailure = Warning, - - Error = BrightRed, - Success = Green, - - OriginalExpression = Cyan, - ReconstructedExpression = BrightYellow, - - SecondaryText = LightGrey, - Headers = White - }; - - // Use constructed object for RAII guard - Colour(Code _colourCode); - Colour(Colour &&other) noexcept; - Colour &operator=(Colour &&other) noexcept; - ~Colour(); - - // Use static method for one-shot changes - static void use(Code _colourCode); - - private: - bool m_moved = false; -}; + struct Colour { + enum Code { + None = 0, + + White, + Red, + Green, + Blue, + Cyan, + Yellow, + Grey, + + Bright = 0x10, + + BrightRed = Bright | Red, + BrightGreen = Bright | Green, + LightGrey = Bright | Grey, + BrightWhite = Bright | White, + BrightYellow = Bright | Yellow, + + // By intention + FileName = LightGrey, + Warning = BrightYellow, + ResultError = BrightRed, + ResultSuccess = BrightGreen, + ResultExpectedFailure = Warning, + + Error = BrightRed, + Success = Green, + + OriginalExpression = Cyan, + ReconstructedExpression = BrightYellow, + + SecondaryText = LightGrey, + Headers = White + }; + + // Use constructed object for RAII guard + Colour(Code _colourCode); -std::ostream &operator<<(std::ostream &os, Colour const &); + Colour(Colour &&other) noexcept; + + Colour &operator=(Colour &&other) noexcept; + + ~Colour(); + + // Use static method for one-shot changes + static void use(Code _colourCode); + + private: + bool m_moved = false; + }; + + std::ostream &operator<<(std::ostream &os, Colour const &); } // end namespace Catch @@ -6051,46 +6497,47 @@ std::ostream &operator<<(std::ostream &os, Colour const &); namespace Catch { -template -class ReporterRegistrar { + template + class ReporterRegistrar { + + class ReporterFactory : public IReporterFactory { - class ReporterFactory : public IReporterFactory { + IStreamingReporterPtr create(ReporterConfig const &config) const override { + return std::unique_ptr(new T(config)); + } - IStreamingReporterPtr create(ReporterConfig const &config) const override { - return std::unique_ptr(new T(config)); - } + std::string getDescription() const override { + return T::getDescription(); + } + }; - std::string getDescription() const override { - return T::getDescription(); - } - }; + public: - public: + explicit ReporterRegistrar(std::string const &name) { + getMutableRegistryHub().registerReporter(name, std::make_shared()); + } + }; - explicit ReporterRegistrar(std::string const &name) { - getMutableRegistryHub().registerReporter(name, std::make_shared()); - } -}; + template + class ListenerRegistrar { -template -class ListenerRegistrar { + class ListenerFactory : public IReporterFactory { - class ListenerFactory : public IReporterFactory { + IStreamingReporterPtr create(ReporterConfig const &config) const override { + return std::unique_ptr(new T(config)); + } - IStreamingReporterPtr create(ReporterConfig const &config) const override { - return std::unique_ptr(new T(config)); - } - std::string getDescription() const override { - return std::string(); - } - }; + std::string getDescription() const override { + return std::string(); + } + }; - public: + public: - ListenerRegistrar() { - getMutableRegistryHub().registerListener(std::make_shared()); - } -}; + ListenerRegistrar() { + getMutableRegistryHub().registerListener(std::make_shared()); + } + }; } #if !defined(CATCH_CONFIG_DISABLE) @@ -6119,25 +6566,25 @@ class ListenerRegistrar { namespace Catch { -struct CompactReporter : StreamingReporterBase { + struct CompactReporter : StreamingReporterBase { - using StreamingReporterBase::StreamingReporterBase; + using StreamingReporterBase::StreamingReporterBase; - ~CompactReporter() override; + ~CompactReporter() override; - static std::string getDescription(); + static std::string getDescription(); - void noMatchingTestCases(std::string const &spec) override; + void noMatchingTestCases(std::string const &spec) override; - void assertionStarting(AssertionInfo const &) override; + void assertionStarting(AssertionInfo const &) override; - bool assertionEnded(AssertionStats const &_assertionStats) override; + bool assertionEnded(AssertionStats const &_assertionStats) override; - void sectionEnded(SectionStats const &_sectionStats) override; + void sectionEnded(SectionStats const &_sectionStats) override; - void testRunEnded(TestRunStats const &_testRunStats) override; + void testRunEnded(TestRunStats const &_testRunStats) override; -}; + }; } // end namespace Catch @@ -6153,64 +6600,79 @@ struct CompactReporter : StreamingReporterBase { namespace Catch { // Fwd decls -struct SummaryColumn; -class TablePrinter; + struct SummaryColumn; + + class TablePrinter; + + struct ConsoleReporter : StreamingReporterBase { + std::unique_ptr m_tablePrinter; -struct ConsoleReporter : StreamingReporterBase { - std::unique_ptr m_tablePrinter; + ConsoleReporter(ReporterConfig const &config); - ConsoleReporter(ReporterConfig const &config); - ~ConsoleReporter() override; - static std::string getDescription(); + ~ConsoleReporter() override; - void noMatchingTestCases(std::string const &spec) override; + static std::string getDescription(); - void reportInvalidArguments(std::string const &arg) override; + void noMatchingTestCases(std::string const &spec) override; - void assertionStarting(AssertionInfo const &) override; + void reportInvalidArguments(std::string const &arg) override; - bool assertionEnded(AssertionStats const &_assertionStats) override; + void assertionStarting(AssertionInfo const &) override; - void sectionStarting(SectionInfo const &_sectionInfo) override; - void sectionEnded(SectionStats const &_sectionStats) override; + bool assertionEnded(AssertionStats const &_assertionStats) override; + + void sectionStarting(SectionInfo const &_sectionInfo) override; + + void sectionEnded(SectionStats const &_sectionStats) override; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void benchmarkPreparing(std::string const& name) override; + void benchmarkPreparing(std::string const& name) override; void benchmarkStarting(BenchmarkInfo const& info) override; void benchmarkEnded(BenchmarkStats<> const& stats) override; void benchmarkFailed(std::string const& error) override; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING - void testCaseEnded(TestCaseStats const &_testCaseStats) override; - void testGroupEnded(TestGroupStats const &_testGroupStats) override; - void testRunEnded(TestRunStats const &_testRunStats) override; - void testRunStarting(TestRunInfo const &_testRunInfo) override; - private: + void testCaseEnded(TestCaseStats const &_testCaseStats) override; - void lazyPrint(); + void testGroupEnded(TestGroupStats const &_testGroupStats) override; - void lazyPrintWithoutClosingBenchmarkTable(); - void lazyPrintRunInfo(); - void lazyPrintGroupInfo(); - void printTestCaseAndSectionHeader(); + void testRunEnded(TestRunStats const &_testRunStats) override; - void printClosedHeader(std::string const &_name); - void printOpenHeader(std::string const &_name); + void testRunStarting(TestRunInfo const &_testRunInfo) override; - // if string has a : in first line will set indent to follow it on - // subsequent lines - void printHeaderString(std::string const &_string, std::size_t indent = 0); + private: - void printTotals(Totals const &totals); - void printSummaryRow(std::string const &label, std::vector const &cols, std::size_t row); + void lazyPrint(); - void printTotalsDivider(Totals const &totals); - void printSummaryDivider(); - void printTestFilters(); + void lazyPrintWithoutClosingBenchmarkTable(); - private: - bool m_headerPrinted = false; -}; + void lazyPrintRunInfo(); + + void lazyPrintGroupInfo(); + + void printTestCaseAndSectionHeader(); + + void printClosedHeader(std::string const &_name); + + void printOpenHeader(std::string const &_name); + + // if string has a : in first line will set indent to follow it on + // subsequent lines + void printHeaderString(std::string const &_string, std::size_t indent = 0); + + void printTotals(Totals const &totals); + + void printSummaryRow(std::string const &label, std::vector const &cols, std::size_t row); + + void printTotalsDivider(Totals const &totals); + + void printSummaryDivider(); + + void printTestFilters(); + + private: + bool m_headerPrinted = false; + }; } // end namespace Catch @@ -6226,152 +6688,163 @@ struct ConsoleReporter : StreamingReporterBase { #include namespace Catch { -enum class XmlFormatting { - None = 0x00, - Indent = 0x01, - Newline = 0x02, -}; + enum class XmlFormatting { + None = 0x00, + Indent = 0x01, + Newline = 0x02, + }; + + XmlFormatting operator|(XmlFormatting lhs, XmlFormatting rhs); -XmlFormatting operator|(XmlFormatting lhs, XmlFormatting rhs); -XmlFormatting operator&(XmlFormatting lhs, XmlFormatting rhs); + XmlFormatting operator&(XmlFormatting lhs, XmlFormatting rhs); -class XmlEncode { - public: - enum ForWhat { ForTextNodes, ForAttributes }; + class XmlEncode { + public: + enum ForWhat { + ForTextNodes, ForAttributes + }; - XmlEncode(std::string const &str, ForWhat forWhat = ForTextNodes); + XmlEncode(std::string const &str, ForWhat forWhat = ForTextNodes); - void encodeTo(std::ostream &os) const; + void encodeTo(std::ostream &os) const; - friend std::ostream &operator<<(std::ostream &os, XmlEncode const &xmlEncode); + friend std::ostream &operator<<(std::ostream &os, XmlEncode const &xmlEncode); - private: - std::string m_str; - ForWhat m_forWhat; -}; + private: + std::string m_str; + ForWhat m_forWhat; + }; -class XmlWriter { - public: + class XmlWriter { + public: - class ScopedElement { - public: - ScopedElement(XmlWriter *writer, XmlFormatting fmt); + class ScopedElement { + public: + ScopedElement(XmlWriter *writer, XmlFormatting fmt); - ScopedElement(ScopedElement &&other) noexcept; - ScopedElement &operator=(ScopedElement &&other) noexcept; + ScopedElement(ScopedElement &&other) noexcept; - ~ScopedElement(); + ScopedElement &operator=(ScopedElement &&other) noexcept; - ScopedElement &writeText(std::string const &text, - XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + ~ScopedElement(); - template - ScopedElement &writeAttribute(std::string const &name, T const &attribute) { - m_writer->writeAttribute(name, attribute); - return *this; - } + ScopedElement &writeText(std::string const &text, + XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + + template + ScopedElement &writeAttribute(std::string const &name, T const &attribute) { + m_writer->writeAttribute(name, attribute); + return *this; + } - private: - mutable XmlWriter *m_writer = nullptr; - XmlFormatting m_fmt; - }; + private: + mutable XmlWriter *m_writer = nullptr; + XmlFormatting m_fmt; + }; - XmlWriter(std::ostream &os = Catch::cout()); - ~XmlWriter(); + XmlWriter(std::ostream &os = Catch::cout()); - XmlWriter(XmlWriter const &) = delete; - XmlWriter &operator=(XmlWriter const &) = delete; + ~XmlWriter(); - XmlWriter &startElement(std::string const &name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + XmlWriter(XmlWriter const &) = delete; - ScopedElement scopedElement(std::string const &name, - XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + XmlWriter &operator=(XmlWriter const &) = delete; - XmlWriter &endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + XmlWriter & + startElement(std::string const &name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); - XmlWriter &writeAttribute(std::string const &name, std::string const &attribute); + ScopedElement scopedElement(std::string const &name, + XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); - XmlWriter &writeAttribute(std::string const &name, bool attribute); + XmlWriter &endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); - template - XmlWriter &writeAttribute(std::string const &name, T const &attribute) { - ReusableStringStream rss; - rss << attribute; - return writeAttribute(name, rss.str()); - } + XmlWriter &writeAttribute(std::string const &name, std::string const &attribute); - XmlWriter &writeText(std::string const &text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + XmlWriter &writeAttribute(std::string const &name, bool attribute); + + template + XmlWriter &writeAttribute(std::string const &name, T const &attribute) { + ReusableStringStream rss; + rss << attribute; + return writeAttribute(name, rss.str()); + } - XmlWriter &writeComment(std::string const &text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); + XmlWriter & + writeText(std::string const &text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); - void writeStylesheetRef(std::string const &url); + XmlWriter & + writeComment(std::string const &text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent); - XmlWriter &writeBlankLine(); + void writeStylesheetRef(std::string const &url); - void ensureTagClosed(); + XmlWriter &writeBlankLine(); - private: + void ensureTagClosed(); - void applyFormatting(XmlFormatting fmt); + private: - void writeDeclaration(); + void applyFormatting(XmlFormatting fmt); - void newlineIfNecessary(); + void writeDeclaration(); - bool m_tagIsOpen = false; - bool m_needsNewline = false; - std::vector m_tags; - std::string m_indent; - std::ostream &m_os; -}; + void newlineIfNecessary(); + + bool m_tagIsOpen = false; + bool m_needsNewline = false; + std::vector m_tags; + std::string m_indent; + std::ostream &m_os; + }; } // end catch_xmlwriter.h namespace Catch { -class JunitReporter : public CumulativeReporterBase { - public: - JunitReporter(ReporterConfig const &_config); + class JunitReporter : public CumulativeReporterBase { + public: + JunitReporter(ReporterConfig const &_config); - ~JunitReporter() override; + ~JunitReporter() override; - static std::string getDescription(); + static std::string getDescription(); - void noMatchingTestCases(std::string const & /*spec*/) override; + void noMatchingTestCases(std::string const & /*spec*/) override; - void testRunStarting(TestRunInfo const &runInfo) override; + void testRunStarting(TestRunInfo const &runInfo) override; - void testGroupStarting(GroupInfo const &groupInfo) override; + void testGroupStarting(GroupInfo const &groupInfo) override; - void testCaseStarting(TestCaseInfo const &testCaseInfo) override; - bool assertionEnded(AssertionStats const &assertionStats) override; + void testCaseStarting(TestCaseInfo const &testCaseInfo) override; - void testCaseEnded(TestCaseStats const &testCaseStats) override; + bool assertionEnded(AssertionStats const &assertionStats) override; - void testGroupEnded(TestGroupStats const &testGroupStats) override; + void testCaseEnded(TestCaseStats const &testCaseStats) override; - void testRunEndedCumulative() override; + void testGroupEnded(TestGroupStats const &testGroupStats) override; - void writeGroup(TestGroupNode const &groupNode, double suiteTime); + void testRunEndedCumulative() override; - void writeTestCase(TestCaseNode const &testCaseNode); + void writeGroup(TestGroupNode const &groupNode, double suiteTime); - void writeSection(std::string const &className, - std::string const &rootName, - SectionNode const §ionNode, - bool testOkToFail); + void writeTestCase(TestCaseNode const &testCaseNode); - void writeAssertions(SectionNode const §ionNode); - void writeAssertion(AssertionStats const &stats); + void writeSection(std::string const &className, + std::string const &rootName, + SectionNode const §ionNode, + bool testOkToFail); - XmlWriter xml; - Timer suiteTimer; - std::string stdOutForSuite; - std::string stdErrForSuite; - unsigned int unexpectedExceptions = 0; - bool m_okToFail = false; -}; + void writeAssertions(SectionNode const §ionNode); + + void writeAssertion(AssertionStats const &stats); + + XmlWriter xml; + Timer suiteTimer; + std::string stdOutForSuite; + std::string stdErrForSuite; + unsigned int unexpectedExceptions = 0; + bool m_okToFail = false; + }; } // end namespace Catch @@ -6379,54 +6852,54 @@ class JunitReporter : public CumulativeReporterBase { // start catch_reporter_xml.h namespace Catch { -class XmlReporter : public StreamingReporterBase { - public: - XmlReporter(ReporterConfig const &_config); + class XmlReporter : public StreamingReporterBase { + public: + XmlReporter(ReporterConfig const &_config); - ~XmlReporter() override; + ~XmlReporter() override; - static std::string getDescription(); + static std::string getDescription(); - virtual std::string getStylesheetRef() const; + virtual std::string getStylesheetRef() const; - void writeSourceInfo(SourceLineInfo const &sourceInfo); + void writeSourceInfo(SourceLineInfo const &sourceInfo); - public: // StreamingReporterBase + public: // StreamingReporterBase - void noMatchingTestCases(std::string const &s) override; + void noMatchingTestCases(std::string const &s) override; - void testRunStarting(TestRunInfo const &testInfo) override; + void testRunStarting(TestRunInfo const &testInfo) override; - void testGroupStarting(GroupInfo const &groupInfo) override; + void testGroupStarting(GroupInfo const &groupInfo) override; - void testCaseStarting(TestCaseInfo const &testInfo) override; + void testCaseStarting(TestCaseInfo const &testInfo) override; - void sectionStarting(SectionInfo const §ionInfo) override; + void sectionStarting(SectionInfo const §ionInfo) override; - void assertionStarting(AssertionInfo const &) override; + void assertionStarting(AssertionInfo const &) override; - bool assertionEnded(AssertionStats const &assertionStats) override; + bool assertionEnded(AssertionStats const &assertionStats) override; - void sectionEnded(SectionStats const §ionStats) override; + void sectionEnded(SectionStats const §ionStats) override; - void testCaseEnded(TestCaseStats const &testCaseStats) override; + void testCaseEnded(TestCaseStats const &testCaseStats) override; - void testGroupEnded(TestGroupStats const &testGroupStats) override; + void testGroupEnded(TestGroupStats const &testGroupStats) override; - void testRunEnded(TestRunStats const &testRunStats) override; + void testRunEnded(TestRunStats const &testRunStats) override; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void benchmarkPreparing(std::string const& name) override; + void benchmarkPreparing(std::string const& name) override; void benchmarkStarting(BenchmarkInfo const&) override; void benchmarkEnded(BenchmarkStats<> const&) override; void benchmarkFailed(std::string const&) override; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING - private: - Timer m_testCaseTimer; - XmlWriter m_xml; - int m_sectionDepth = 0; -}; + private: + Timer m_testCaseTimer; + XmlWriter m_xml; + int m_sectionDepth = 0; + }; } // end namespace Catch @@ -7477,161 +7950,184 @@ namespace Catch { #include namespace Catch { -namespace TestCaseTracking { + namespace TestCaseTracking { + + struct NameAndLocation { + std::string name; + SourceLineInfo location; -struct NameAndLocation { - std::string name; - SourceLineInfo location; + NameAndLocation(std::string const &_name, SourceLineInfo const &_location); - NameAndLocation(std::string const &_name, SourceLineInfo const &_location); - friend bool operator==(NameAndLocation const &lhs, NameAndLocation const &rhs) { - return lhs.name == rhs.name - && lhs.location == rhs.location; - } -}; + friend bool operator==(NameAndLocation const &lhs, NameAndLocation const &rhs) { + return lhs.name == rhs.name + && lhs.location == rhs.location; + } + }; -class ITracker; + class ITracker; -using ITrackerPtr = std::shared_ptr; + using ITrackerPtr = std::shared_ptr; -class ITracker { - NameAndLocation m_nameAndLocation; + class ITracker { + NameAndLocation m_nameAndLocation; - public: - ITracker(NameAndLocation const &nameAndLoc) : - m_nameAndLocation(nameAndLoc) {} + public: + ITracker(NameAndLocation const &nameAndLoc) : + m_nameAndLocation(nameAndLoc) {} + + // static queries + NameAndLocation const &nameAndLocation() const { + return m_nameAndLocation; + } - // static queries - NameAndLocation const &nameAndLocation() const { - return m_nameAndLocation; - } + virtual ~ITracker(); - virtual ~ITracker(); + // dynamic queries + virtual bool isComplete() const = 0; // Successfully completed or failed + virtual bool isSuccessfullyCompleted() const = 0; - // dynamic queries - virtual bool isComplete() const = 0; // Successfully completed or failed - virtual bool isSuccessfullyCompleted() const = 0; - virtual bool isOpen() const = 0; // Started but not complete - virtual bool hasChildren() const = 0; - virtual bool hasStarted() const = 0; + virtual bool isOpen() const = 0; // Started but not complete + virtual bool hasChildren() const = 0; - virtual ITracker &parent() = 0; + virtual bool hasStarted() const = 0; - // actions - virtual void close() = 0; // Successfully complete - virtual void fail() = 0; - virtual void markAsNeedingAnotherRun() = 0; + virtual ITracker &parent() = 0; - virtual void addChild(ITrackerPtr const &child) = 0; - virtual ITrackerPtr findChild(NameAndLocation const &nameAndLocation) = 0; - virtual void openChild() = 0; + // actions + virtual void close() = 0; // Successfully complete + virtual void fail() = 0; - // Debug/ checking - virtual bool isSectionTracker() const = 0; - virtual bool isGeneratorTracker() const = 0; -}; + virtual void markAsNeedingAnotherRun() = 0; -class TrackerContext { + virtual void addChild(ITrackerPtr const &child) = 0; - enum RunState { - NotStarted, - Executing, - CompletedCycle - }; + virtual ITrackerPtr findChild(NameAndLocation const &nameAndLocation) = 0; - ITrackerPtr m_rootTracker; - ITracker *m_currentTracker = nullptr; - RunState m_runState = NotStarted; + virtual void openChild() = 0; - public: + // Debug/ checking + virtual bool isSectionTracker() const = 0; - ITracker &startRun(); - void endRun(); + virtual bool isGeneratorTracker() const = 0; + }; - void startCycle(); - void completeCycle(); + class TrackerContext { - bool completedCycle() const; - ITracker ¤tTracker(); - void setCurrentTracker(ITracker *tracker); -}; + enum RunState { + NotStarted, + Executing, + CompletedCycle + }; -class TrackerBase : public ITracker { - protected: - enum CycleState { - NotStarted, - Executing, - ExecutingChildren, - NeedsAnotherRun, - CompletedSuccessfully, - Failed - }; - - using Children = std::vector; - TrackerContext &m_ctx; - ITracker *m_parent; - Children m_children; - CycleState m_runState = NotStarted; - - public: - TrackerBase(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent); - - bool isComplete() const override; - bool isSuccessfullyCompleted() const override; - bool isOpen() const override; - bool hasChildren() const override; - bool hasStarted() const override { - return m_runState != NotStarted; - } - - void addChild(ITrackerPtr const &child) override; - - ITrackerPtr findChild(NameAndLocation const &nameAndLocation) override; - ITracker &parent() override; - - void openChild() override; - - bool isSectionTracker() const override; - bool isGeneratorTracker() const override; - - void open(); - - void close() override; - void fail() override; - void markAsNeedingAnotherRun() override; - - private: - void moveToParent(); - void moveToThis(); -}; + ITrackerPtr m_rootTracker; + ITracker *m_currentTracker = nullptr; + RunState m_runState = NotStarted; -class SectionTracker : public TrackerBase { - std::vector m_filters; - std::string m_trimmed_name; - public: - SectionTracker(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent); + public: - bool isSectionTracker() const override; + ITracker &startRun(); - bool isComplete() const override; + void endRun(); - static SectionTracker &acquire(TrackerContext &ctx, NameAndLocation const &nameAndLocation); + void startCycle(); - void tryOpen(); + void completeCycle(); - void addInitialFilters(std::vector const &filters); - void addNextFilters(std::vector const &filters); - //! Returns filters active in this tracker - std::vector const &getFilters() const; - //! Returns whitespace-trimmed name of the tracked section - std::string const &trimmedName() const; -}; + bool completedCycle() const; + + ITracker ¤tTracker(); + + void setCurrentTracker(ITracker *tracker); + }; + + class TrackerBase : public ITracker { + protected: + enum CycleState { + NotStarted, + Executing, + ExecutingChildren, + NeedsAnotherRun, + CompletedSuccessfully, + Failed + }; + + using Children = std::vector; + TrackerContext &m_ctx; + ITracker *m_parent; + Children m_children; + CycleState m_runState = NotStarted; + + public: + TrackerBase(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent); + + bool isComplete() const override; + + bool isSuccessfullyCompleted() const override; + + bool isOpen() const override; + + bool hasChildren() const override; + + bool hasStarted() const override { + return m_runState != NotStarted; + } + + void addChild(ITrackerPtr const &child) override; + + ITrackerPtr findChild(NameAndLocation const &nameAndLocation) override; + + ITracker &parent() override; + + void openChild() override; + + bool isSectionTracker() const override; + + bool isGeneratorTracker() const override; + + void open(); + + void close() override; + + void fail() override; + + void markAsNeedingAnotherRun() override; + + private: + void moveToParent(); + + void moveToThis(); + }; + + class SectionTracker : public TrackerBase { + std::vector m_filters; + std::string m_trimmed_name; + public: + SectionTracker(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent); + + bool isSectionTracker() const override; + + bool isComplete() const override; + + static SectionTracker &acquire(TrackerContext &ctx, NameAndLocation const &nameAndLocation); + + void tryOpen(); + + void addInitialFilters(std::vector const &filters); + + void addNextFilters(std::vector const &filters); + + //! Returns filters active in this tracker + std::vector const &getFilters() const; + + //! Returns whitespace-trimmed name of the tracked section + std::string const &trimmedName() const; + }; -} // namespace TestCaseTracking + } // namespace TestCaseTracking -using TestCaseTracking::ITracker; -using TestCaseTracking::TrackerContext; -using TestCaseTracking::SectionTracker; + using TestCaseTracking::ITracker; + using TestCaseTracking::TrackerContext; + using TestCaseTracking::SectionTracker; } // namespace Catch @@ -7641,10 +8137,11 @@ using TestCaseTracking::SectionTracker; namespace Catch { -struct LeakDetector { - LeakDetector(); - ~LeakDetector(); -}; + struct LeakDetector { + LeakDetector(); + + ~LeakDetector(); + }; } // end catch_leak_detector.h @@ -7869,72 +8366,74 @@ namespace { // Performs equivalent check of std::fabs(lhs - rhs) <= margin // But without the subtraction to allow for INFINITY in comparison -bool marginComparison(double lhs, double rhs, double margin) { - return (lhs + margin >= rhs) && (rhs + margin >= lhs); -} + bool marginComparison(double lhs, double rhs, double margin) { + return (lhs + margin >= rhs) && (rhs + margin >= lhs); + } } namespace Catch { -namespace Detail { + namespace Detail { -Approx::Approx(double value) - : m_epsilon(std::numeric_limits::epsilon() * 100), - m_margin(0.0), - m_scale(0.0), - m_value(value) {} + Approx::Approx(double value) + : m_epsilon(std::numeric_limits::epsilon() * 100), + m_margin(0.0), + m_scale(0.0), + m_value(value) {} -Approx Approx::custom() { - return Approx(0); -} + Approx Approx::custom() { + return Approx(0); + } -Approx Approx::operator-() const { - auto temp(*this); - temp.m_value = -temp.m_value; - return temp; -} + Approx Approx::operator-() const { + auto temp(*this); + temp.m_value = -temp.m_value; + return temp; + } -std::string Approx::toString() const { - ReusableStringStream rss; - rss << "Approx( " << ::Catch::Detail::stringify(m_value) << " )"; - return rss.str(); -} + std::string Approx::toString() const { + ReusableStringStream rss; + rss << "Approx( " << ::Catch::Detail::stringify(m_value) << " )"; + return rss.str(); + } -bool Approx::equalityComparisonImpl(const double other) const { - // First try with fixed margin, then compute margin based on epsilon, scale and Approx's value - // Thanks to Richard Harris for his help refining the scaled margin value - return marginComparison(m_value, other, m_margin) - || marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(std::isinf(m_value) ? 0 : m_value))); -} + bool Approx::equalityComparisonImpl(const double other) const { + // First try with fixed margin, then compute margin based on epsilon, scale and Approx's value + // Thanks to Richard Harris for his help refining the scaled margin value + return marginComparison(m_value, other, m_margin) + || marginComparison(m_value, other, + m_epsilon * (m_scale + std::fabs(std::isinf(m_value) ? 0 : m_value))); + } -void Approx::setMargin(double newMargin) { - CATCH_ENFORCE(newMargin >= 0, - "Invalid Approx::margin: " << newMargin << '.' - << " Approx::Margin has to be non-negative."); - m_margin = newMargin; -} + void Approx::setMargin(double newMargin) { + CATCH_ENFORCE(newMargin >= 0, + "Invalid Approx::margin: " << newMargin << '.' + << " Approx::Margin has to be non-negative."); + m_margin = newMargin; + } -void Approx::setEpsilon(double newEpsilon) { - CATCH_ENFORCE(newEpsilon >= 0 && newEpsilon <= 1.0, - "Invalid Approx::epsilon: " << newEpsilon << '.' - << " Approx::epsilon has to be in [0, 1]"); - m_epsilon = newEpsilon; -} + void Approx::setEpsilon(double newEpsilon) { + CATCH_ENFORCE(newEpsilon >= 0 && newEpsilon <= 1.0, + "Invalid Approx::epsilon: " << newEpsilon << '.' + << " Approx::epsilon has to be in [0, 1]"); + m_epsilon = newEpsilon; + } -} // end namespace Detail + } // end namespace Detail -namespace literals { -Detail::Approx operator "" _a(long double val) { - return Detail::Approx(val); -} -Detail::Approx operator "" _a(unsigned long long val) { - return Detail::Approx(val); -} -} // end namespace literals + namespace literals { + Detail::Approx operator "" _a(long double val) { + return Detail::Approx(val); + } -std::string StringMaker::convert(Catch::Detail::Approx const &value) { - return value.toString(); -} + Detail::Approx operator "" _a(unsigned long long val) { + return Detail::Approx(val); + } + } // end namespace literals + + std::string StringMaker::convert(Catch::Detail::Approx const &value) { + return value.toString(); + } } // end namespace Catch // end catch_approx.cpp @@ -7943,7 +8442,7 @@ std::string StringMaker::convert(Catch::Detail::Approx co // start catch_debugger.h namespace Catch { -bool isDebuggerActive(); + bool isDebuggerActive(); } #ifdef CATCH_PLATFORM_MAC @@ -8010,44 +8509,48 @@ namespace Catch { // // Can only be instantiated once, and assumes that once a signal // is caught, the binary will end up terminating. Thus, there -class FatalConditionHandler { - bool m_started = false; - - // Install/disengage implementation for specific platform. - // Should be if-defed to work on current platform, can assume - // engage-disengage 1:1 pairing. - void engage_platform(); - void disengage_platform(); - public: - // Should also have platform-specific implementations as needed - FatalConditionHandler(); - ~FatalConditionHandler(); - - void engage() { - assert(!m_started && "Handler cannot be installed twice."); - m_started = true; - engage_platform(); - } - - void disengage() { - assert(m_started && "Handler cannot be uninstalled without being installed first"); - m_started = false; - disengage_platform(); - } -}; + class FatalConditionHandler { + bool m_started = false; + + // Install/disengage implementation for specific platform. + // Should be if-defed to work on current platform, can assume + // engage-disengage 1:1 pairing. + void engage_platform(); + + void disengage_platform(); + + public: + // Should also have platform-specific implementations as needed + FatalConditionHandler(); + + ~FatalConditionHandler(); + + void engage() { + assert(!m_started && "Handler cannot be installed twice."); + m_started = true; + engage_platform(); + } + + void disengage() { + assert(m_started && "Handler cannot be uninstalled without being installed first"); + m_started = false; + disengage_platform(); + } + }; //! Simple RAII guard for (dis)engaging the FatalConditionHandler -class FatalConditionHandlerGuard { - FatalConditionHandler *m_handler; - public: - FatalConditionHandlerGuard(FatalConditionHandler *handler) : - m_handler(handler) { - m_handler->engage(); - } - ~FatalConditionHandlerGuard() { - m_handler->disengage(); - } -}; + class FatalConditionHandlerGuard { + FatalConditionHandler *m_handler; + public: + FatalConditionHandlerGuard(FatalConditionHandler *handler) : + m_handler(handler) { + m_handler->engage(); + } + + ~FatalConditionHandlerGuard() { + m_handler->disengage(); + } + }; } // end namespace Catch @@ -8056,334 +8559,354 @@ class FatalConditionHandlerGuard { namespace Catch { -struct IMutableContext; + struct IMutableContext; /////////////////////////////////////////////////////////////////////////// -class RunContext : public IResultCapture, public IRunner { + class RunContext : public IResultCapture, public IRunner { + + public: + RunContext(RunContext const &) = delete; + + RunContext &operator=(RunContext const &) = delete; - public: - RunContext(RunContext const &) = delete; - RunContext &operator=(RunContext const &) = delete; + explicit RunContext(IConfigPtr const &_config, IStreamingReporterPtr &&reporter); - explicit RunContext(IConfigPtr const &_config, IStreamingReporterPtr &&reporter); + ~RunContext() override; - ~RunContext() override; + void testGroupStarting(std::string const &testSpec, std::size_t groupIndex, std::size_t groupsCount); - void testGroupStarting(std::string const &testSpec, std::size_t groupIndex, std::size_t groupsCount); - void testGroupEnded(std::string const &testSpec, - Totals const &totals, - std::size_t groupIndex, - std::size_t groupsCount); + void testGroupEnded(std::string const &testSpec, + Totals const &totals, + std::size_t groupIndex, + std::size_t groupsCount); - Totals runTest(TestCase const &testCase); + Totals runTest(TestCase const &testCase); - IConfigPtr config() const; - IStreamingReporter &reporter() const; + IConfigPtr config() const; - public: // IResultCapture + IStreamingReporter &reporter() const; - // Assertion handlers - void handleExpr - (AssertionInfo const &info, - ITransientExpression const &expr, - AssertionReaction &reaction) override; - void handleMessage - (AssertionInfo const &info, - ResultWas::OfType resultType, - StringRef const &message, - AssertionReaction &reaction) override; - void handleUnexpectedExceptionNotThrown - (AssertionInfo const &info, - AssertionReaction &reaction) override; - void handleUnexpectedInflightException - (AssertionInfo const &info, - std::string const &message, - AssertionReaction &reaction) override; - void handleIncomplete - (AssertionInfo const &info) override; - void handleNonExpr - (AssertionInfo const &info, - ResultWas::OfType resultType, - AssertionReaction &reaction) override; + public: // IResultCapture - bool sectionStarted(SectionInfo const §ionInfo, Counts &assertions) override; + // Assertion handlers + void handleExpr + (AssertionInfo const &info, + ITransientExpression const &expr, + AssertionReaction &reaction) override; - void sectionEnded(SectionEndInfo const &endInfo) override; - void sectionEndedEarly(SectionEndInfo const &endInfo) override; + void handleMessage + (AssertionInfo const &info, + ResultWas::OfType resultType, + StringRef const &message, + AssertionReaction &reaction) override; - auto acquireGeneratorTracker(StringRef generatorName, SourceLineInfo const &lineInfo) -> IGeneratorTracker & override; + void handleUnexpectedExceptionNotThrown + (AssertionInfo const &info, + AssertionReaction &reaction) override; + + void handleUnexpectedInflightException + (AssertionInfo const &info, + std::string const &message, + AssertionReaction &reaction) override; + + void handleIncomplete + (AssertionInfo const &info) override; + + void handleNonExpr + (AssertionInfo const &info, + ResultWas::OfType resultType, + AssertionReaction &reaction) override; + + bool sectionStarted(SectionInfo const §ionInfo, Counts &assertions) override; + + void sectionEnded(SectionEndInfo const &endInfo) override; + + void sectionEndedEarly(SectionEndInfo const &endInfo) override; + + auto acquireGeneratorTracker(StringRef generatorName, + SourceLineInfo const &lineInfo) -> IGeneratorTracker & override; #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void benchmarkPreparing( std::string const& name ) override; + void benchmarkPreparing( std::string const& name ) override; void benchmarkStarting( BenchmarkInfo const& info ) override; void benchmarkEnded( BenchmarkStats<> const& stats ) override; void benchmarkFailed( std::string const& error ) override; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING - void pushScopedMessage(MessageInfo const &message) override; - void popScopedMessage(MessageInfo const &message) override; + void pushScopedMessage(MessageInfo const &message) override; + + void popScopedMessage(MessageInfo const &message) override; - void emplaceUnscopedMessage(MessageBuilder const &builder) override; + void emplaceUnscopedMessage(MessageBuilder const &builder) override; - std::string getCurrentTestName() const override; + std::string getCurrentTestName() const override; - const AssertionResult *getLastResult() const override; + const AssertionResult *getLastResult() const override; - void exceptionEarlyReported() override; + void exceptionEarlyReported() override; - void handleFatalErrorCondition(StringRef message) override; + void handleFatalErrorCondition(StringRef message) override; - bool lastAssertionPassed() override; + bool lastAssertionPassed() override; - void assertionPassed() override; + void assertionPassed() override; - public: - // !TBD We need to do this another way! - bool aborting() const final; + public: + // !TBD We need to do this another way! + bool aborting() const final; - private: + private: - void runCurrentTest(std::string &redirectedCout, std::string &redirectedCerr); - void invokeActiveTestCase(); + void runCurrentTest(std::string &redirectedCout, std::string &redirectedCerr); - void resetAssertionInfo(); - bool testForMissingAssertions(Counts &assertions); + void invokeActiveTestCase(); - void assertionEnded(AssertionResult const &result); - void reportExpr - (AssertionInfo const &info, - ResultWas::OfType resultType, - ITransientExpression const *expr, - bool negated); + void resetAssertionInfo(); - void populateReaction(AssertionReaction &reaction); + bool testForMissingAssertions(Counts &assertions); - private: + void assertionEnded(AssertionResult const &result); - void handleUnfinishedSections(); + void reportExpr + (AssertionInfo const &info, + ResultWas::OfType resultType, + ITransientExpression const *expr, + bool negated); - TestRunInfo m_runInfo; - IMutableContext &m_context; - TestCase const *m_activeTestCase = nullptr; - ITracker *m_testCaseTracker = nullptr; - Option m_lastResult; + void populateReaction(AssertionReaction &reaction); - IConfigPtr m_config; - Totals m_totals; - IStreamingReporterPtr m_reporter; - std::vector m_messages; - std::vector m_messageScopes; /* Keeps owners of so-called unscoped messages. */ - AssertionInfo m_lastAssertionInfo; - std::vector m_unfinishedSections; - std::vector m_activeSections; - TrackerContext m_trackerContext; - FatalConditionHandler m_fatalConditionhandler; - bool m_lastAssertionPassed = false; - bool m_shouldReportUnexpected = true; - bool m_includeSuccessfulResults; -}; + private: -void seedRng(IConfig const &config); -unsigned int rngSeed(); + void handleUnfinishedSections(); + + TestRunInfo m_runInfo; + IMutableContext &m_context; + TestCase const *m_activeTestCase = nullptr; + ITracker *m_testCaseTracker = nullptr; + Option m_lastResult; + + IConfigPtr m_config; + Totals m_totals; + IStreamingReporterPtr m_reporter; + std::vector m_messages; + std::vector m_messageScopes; /* Keeps owners of so-called unscoped messages. */ + AssertionInfo m_lastAssertionInfo; + std::vector m_unfinishedSections; + std::vector m_activeSections; + TrackerContext m_trackerContext; + FatalConditionHandler m_fatalConditionhandler; + bool m_lastAssertionPassed = false; + bool m_shouldReportUnexpected = true; + bool m_includeSuccessfulResults; + }; + + void seedRng(IConfig const &config); + + unsigned int rngSeed(); } // end namespace Catch // end catch_run_context.h namespace Catch { -namespace { -auto operator<<(std::ostream &os, ITransientExpression const &expr) -> std::ostream & { - expr.streamReconstructedExpression(os); - return os; -} -} + namespace { + auto operator<<(std::ostream &os, ITransientExpression const &expr) -> std::ostream & { + expr.streamReconstructedExpression(os); + return os; + } + } + + LazyExpression::LazyExpression(bool isNegated) + : m_isNegated(isNegated) {} -LazyExpression::LazyExpression(bool isNegated) - : m_isNegated(isNegated) {} + LazyExpression::LazyExpression(LazyExpression const &other) : m_isNegated(other.m_isNegated) {} -LazyExpression::LazyExpression(LazyExpression const &other) : m_isNegated(other.m_isNegated) {} + LazyExpression::operator bool() const { + return m_transientExpression != nullptr; + } -LazyExpression::operator bool() const { - return m_transientExpression != nullptr; -} + auto operator<<(std::ostream &os, LazyExpression const &lazyExpr) -> std::ostream & { + if (lazyExpr.m_isNegated) + os << "!"; -auto operator<<(std::ostream &os, LazyExpression const &lazyExpr) -> std::ostream & { - if (lazyExpr.m_isNegated) - os << "!"; + if (lazyExpr) { + if (lazyExpr.m_isNegated && lazyExpr.m_transientExpression->isBinaryExpression()) + os << "(" << *lazyExpr.m_transientExpression << ")"; + else + os << *lazyExpr.m_transientExpression; + } else { + os << "{** error - unchecked empty expression requested **}"; + } + return os; + } - if (lazyExpr) { - if (lazyExpr.m_isNegated && lazyExpr.m_transientExpression->isBinaryExpression()) - os << "(" << *lazyExpr.m_transientExpression << ")"; - else - os << *lazyExpr.m_transientExpression; - } else { - os << "{** error - unchecked empty expression requested **}"; - } - return os; -} + AssertionHandler::AssertionHandler + (StringRef const ¯oName, + SourceLineInfo const &lineInfo, + StringRef capturedExpression, + ResultDisposition::Flags resultDisposition) + : m_assertionInfo{macroName, lineInfo, capturedExpression, resultDisposition}, + m_resultCapture(getResultCapture()) {} -AssertionHandler::AssertionHandler - (StringRef const ¯oName, - SourceLineInfo const &lineInfo, - StringRef capturedExpression, - ResultDisposition::Flags resultDisposition) - : m_assertionInfo{macroName, lineInfo, capturedExpression, resultDisposition}, - m_resultCapture(getResultCapture()) {} + void AssertionHandler::handleExpr(ITransientExpression const &expr) { + m_resultCapture.handleExpr(m_assertionInfo, expr, m_reaction); + } -void AssertionHandler::handleExpr(ITransientExpression const &expr) { - m_resultCapture.handleExpr(m_assertionInfo, expr, m_reaction); -} -void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef const &message) { - m_resultCapture.handleMessage(m_assertionInfo, resultType, message, m_reaction); -} + void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef const &message) { + m_resultCapture.handleMessage(m_assertionInfo, resultType, message, m_reaction); + } -auto AssertionHandler::allowThrows() const -> bool { - return getCurrentContext().getConfig()->allowThrows(); -} + auto AssertionHandler::allowThrows() const -> bool { + return getCurrentContext().getConfig()->allowThrows(); + } -void AssertionHandler::complete() { - setCompleted(); - if (m_reaction.shouldDebugBreak) { + void AssertionHandler::complete() { + setCompleted(); + if (m_reaction.shouldDebugBreak) { - // If you find your debugger stopping you here then go one level up on the - // call-stack for the code that caused it (typically a failed assertion) + // If you find your debugger stopping you here then go one level up on the + // call-stack for the code that caused it (typically a failed assertion) - // (To go back to the test and change execution, jump over the throw, next) - CATCH_BREAK_INTO_DEBUGGER(); - } - if (m_reaction.shouldThrow) { + // (To go back to the test and change execution, jump over the throw, next) + CATCH_BREAK_INTO_DEBUGGER(); + } + if (m_reaction.shouldThrow) { #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - throw Catch::TestFailureException(); + throw Catch::TestFailureException(); #else - CATCH_ERROR( "Test failure requires aborting test!" ); + CATCH_ERROR( "Test failure requires aborting test!" ); #endif - } -} -void AssertionHandler::setCompleted() { - m_completed = true; -} + } + } -void AssertionHandler::handleUnexpectedInflightException() { - m_resultCapture.handleUnexpectedInflightException(m_assertionInfo, Catch::translateActiveException(), m_reaction); -} + void AssertionHandler::setCompleted() { + m_completed = true; + } -void AssertionHandler::handleExceptionThrownAsExpected() { - m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); -} -void AssertionHandler::handleExceptionNotThrownAsExpected() { - m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); -} + void AssertionHandler::handleUnexpectedInflightException() { + m_resultCapture.handleUnexpectedInflightException(m_assertionInfo, Catch::translateActiveException(), + m_reaction); + } -void AssertionHandler::handleUnexpectedExceptionNotThrown() { - m_resultCapture.handleUnexpectedExceptionNotThrown(m_assertionInfo, m_reaction); -} + void AssertionHandler::handleExceptionThrownAsExpected() { + m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); + } -void AssertionHandler::handleThrowingCallSkipped() { - m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); -} + void AssertionHandler::handleExceptionNotThrownAsExpected() { + m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); + } + + void AssertionHandler::handleUnexpectedExceptionNotThrown() { + m_resultCapture.handleUnexpectedExceptionNotThrown(m_assertionInfo, m_reaction); + } + + void AssertionHandler::handleThrowingCallSkipped() { + m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction); + } // This is the overload that takes a string and infers the Equals matcher from it // The more general overload, that takes any string matcher, is in catch_capture_matchers.cpp -void handleExceptionMatchExpr(AssertionHandler &handler, std::string const &str, StringRef const &matcherString) { - handleExceptionMatchExpr(handler, Matchers::Equals(str), matcherString); -} + void handleExceptionMatchExpr(AssertionHandler &handler, std::string const &str, StringRef const &matcherString) { + handleExceptionMatchExpr(handler, Matchers::Equals(str), matcherString); + } } // namespace Catch // end catch_assertionhandler.cpp // start catch_assertionresult.cpp namespace Catch { -AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const &_lazyExpression) : - lazyExpression(_lazyExpression), - resultType(_resultType) {} + AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression const &_lazyExpression) : + lazyExpression(_lazyExpression), + resultType(_resultType) {} -std::string AssertionResultData::reconstructExpression() const { + std::string AssertionResultData::reconstructExpression() const { - if (reconstructedExpression.empty()) { - if (lazyExpression) { - ReusableStringStream rss; - rss << lazyExpression; - reconstructedExpression = rss.str(); + if (reconstructedExpression.empty()) { + if (lazyExpression) { + ReusableStringStream rss; + rss << lazyExpression; + reconstructedExpression = rss.str(); + } + } + return reconstructedExpression; } - } - return reconstructedExpression; -} -AssertionResult::AssertionResult(AssertionInfo const &info, AssertionResultData const &data) - : m_info(info), - m_resultData(data) {} + AssertionResult::AssertionResult(AssertionInfo const &info, AssertionResultData const &data) + : m_info(info), + m_resultData(data) {} // Result was a success -bool AssertionResult::succeeded() const { - return Catch::isOk(m_resultData.resultType); -} + bool AssertionResult::succeeded() const { + return Catch::isOk(m_resultData.resultType); + } // Result was a success, or failure is suppressed -bool AssertionResult::isOk() const { - return Catch::isOk(m_resultData.resultType) || shouldSuppressFailure(m_info.resultDisposition); -} + bool AssertionResult::isOk() const { + return Catch::isOk(m_resultData.resultType) || shouldSuppressFailure(m_info.resultDisposition); + } -ResultWas::OfType AssertionResult::getResultType() const { - return m_resultData.resultType; -} + ResultWas::OfType AssertionResult::getResultType() const { + return m_resultData.resultType; + } -bool AssertionResult::hasExpression() const { - return !m_info.capturedExpression.empty(); -} + bool AssertionResult::hasExpression() const { + return !m_info.capturedExpression.empty(); + } -bool AssertionResult::hasMessage() const { - return !m_resultData.message.empty(); -} + bool AssertionResult::hasMessage() const { + return !m_resultData.message.empty(); + } -std::string AssertionResult::getExpression() const { - // Possibly overallocating by 3 characters should be basically free - std::string expr; - expr.reserve(m_info.capturedExpression.size() + 3); - if (isFalseTest(m_info.resultDisposition)) { - expr += "!("; - } - expr += m_info.capturedExpression; - if (isFalseTest(m_info.resultDisposition)) { - expr += ')'; - } - return expr; -} + std::string AssertionResult::getExpression() const { + // Possibly overallocating by 3 characters should be basically free + std::string expr; + expr.reserve(m_info.capturedExpression.size() + 3); + if (isFalseTest(m_info.resultDisposition)) { + expr += "!("; + } + expr += m_info.capturedExpression; + if (isFalseTest(m_info.resultDisposition)) { + expr += ')'; + } + return expr; + } -std::string AssertionResult::getExpressionInMacro() const { - std::string expr; - if (m_info.macroName.empty()) - expr = static_cast(m_info.capturedExpression); - else { - expr.reserve(m_info.macroName.size() + m_info.capturedExpression.size() + 4); - expr += m_info.macroName; - expr += "( "; - expr += m_info.capturedExpression; - expr += " )"; - } - return expr; -} + std::string AssertionResult::getExpressionInMacro() const { + std::string expr; + if (m_info.macroName.empty()) + expr = static_cast(m_info.capturedExpression); + else { + expr.reserve(m_info.macroName.size() + m_info.capturedExpression.size() + 4); + expr += m_info.macroName; + expr += "( "; + expr += m_info.capturedExpression; + expr += " )"; + } + return expr; + } -bool AssertionResult::hasExpandedExpression() const { - return hasExpression() && getExpandedExpression() != getExpression(); -} + bool AssertionResult::hasExpandedExpression() const { + return hasExpression() && getExpandedExpression() != getExpression(); + } -std::string AssertionResult::getExpandedExpression() const { - std::string expr = m_resultData.reconstructExpression(); - return expr.empty() - ? getExpression() - : expr; -} + std::string AssertionResult::getExpandedExpression() const { + std::string expr = m_resultData.reconstructExpression(); + return expr.empty() + ? getExpression() + : expr; + } -std::string AssertionResult::getMessage() const { - return m_resultData.message; -} -SourceLineInfo AssertionResult::getSourceInfo() const { - return m_info.lineInfo; -} + std::string AssertionResult::getMessage() const { + return m_resultData.message; + } -StringRef AssertionResult::getTestMacroName() const { - return m_info.macroName; -} + SourceLineInfo AssertionResult::getSourceInfo() const { + return m_info.lineInfo; + } + + StringRef AssertionResult::getTestMacroName() const { + return m_info.macroName; + } } // end namespace Catch // end catch_assertionresult.cpp @@ -8391,16 +8914,17 @@ StringRef AssertionResult::getTestMacroName() const { namespace Catch { -using StringMatcher = Matchers::Impl::MatcherBase; + using StringMatcher = Matchers::Impl::MatcherBase; // This is the general overload that takes a any string matcher // There is another overload, in catch_assertionhandler.h/.cpp, that only takes a string and infers // the Equals matcher (so the header does not mention matchers) -void handleExceptionMatchExpr(AssertionHandler &handler, StringMatcher const &matcher, StringRef const &matcherString) { - std::string exceptionMessage = Catch::translateActiveException(); - MatchExpr expr(exceptionMessage, matcher, matcherString); - handler.handleExpr(expr); -} + void + handleExceptionMatchExpr(AssertionHandler &handler, StringMatcher const &matcher, StringRef const &matcherString) { + std::string exceptionMessage = Catch::translateActiveException(); + MatchExpr expr(exceptionMessage, matcher, matcherString); + handler.handleExpr(expr); + } } // namespace Catch // end catch_capture_matchers.cpp @@ -8446,1235 +8970,1298 @@ void handleExceptionMatchExpr(AssertionHandler &handler, StringMatcher const &ma #ifndef CLARA_CONFIG_OPTIONAL_TYPE #ifdef __has_include #if __has_include() && __cplusplus >= 201703L + #include + #define CLARA_CONFIG_OPTIONAL_TYPE std::optional #endif #endif #endif -// ----------- #included from clara_textflow.hpp ----------- +// ----------- #included from clara_textflow.hpp ----------- + +// TextFlowCpp +// +// A single-header library for wrapping and laying out basic text, by Phil Nash +// +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// +// This project is hosted at https://github.com/philsquared/textflowcpp + + +#include +#include +#include +#include + +#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH +#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH 80 +#endif + +namespace Catch { + namespace clara { + namespace TextFlow { + + inline auto isWhitespace(char c) -> bool { + static std::string chars = " \t\n\r"; + return chars.find(c) != std::string::npos; + } + + inline auto isBreakableBefore(char c) -> bool { + static std::string chars = "[({<|"; + return chars.find(c) != std::string::npos; + } + + inline auto isBreakableAfter(char c) -> bool { + static std::string chars = "])}>.,:;*+-=&/\\"; + return chars.find(c) != std::string::npos; + } + + class Columns; + + class Column { + std::vector m_strings; + size_t m_width = CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH; + size_t m_indent = 0; + size_t m_initialIndent = std::string::npos; + + public: + class iterator { + friend Column; + + Column const &m_column; + size_t m_stringIndex = 0; + size_t m_pos = 0; + + size_t m_len = 0; + size_t m_end = 0; + bool m_suffix = false; + + iterator(Column const &column, size_t stringIndex) + : m_column(column), + m_stringIndex(stringIndex) {} + + auto line() const -> std::string const & { return m_column.m_strings[m_stringIndex]; } + + auto isBoundary(size_t at) const -> bool { + assert(at > 0); + assert(at <= line().size()); + + return at == line().size() || + (isWhitespace(line()[at]) && !isWhitespace(line()[at - 1])) || + isBreakableBefore(line()[at]) || + isBreakableAfter(line()[at - 1]); + } + + void calcLength() { + assert(m_stringIndex < m_column.m_strings.size()); + + m_suffix = false; + auto width = m_column.m_width - indent(); + m_end = m_pos; + if (line()[m_pos] == '\n') { + ++m_end; + } + while (m_end < line().size() && line()[m_end] != '\n') + ++m_end; + + if (m_end < m_pos + width) { + m_len = m_end - m_pos; + } else { + size_t len = width; + while (len > 0 && !isBoundary(m_pos + len)) + --len; + while (len > 0 && isWhitespace(line()[m_pos + len - 1])) + --len; + + if (len > 0) { + m_len = len; + } else { + m_suffix = true; + m_len = width - 1; + } + } + } + + auto indent() const -> size_t { + auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos; + return initial == std::string::npos ? m_column.m_indent : initial; + } + + auto addIndentAndSuffix(std::string const &plain) const -> std::string { + return std::string(indent(), ' ') + (m_suffix ? plain + "-" : plain); + } + + public: + using difference_type = std::ptrdiff_t; + using value_type = std::string; + using pointer = value_type *; + using reference = value_type &; + using iterator_category = std::forward_iterator_tag; + + explicit iterator(Column const &column) : m_column(column) { + assert(m_column.m_width > m_column.m_indent); + assert(m_column.m_initialIndent == std::string::npos || + m_column.m_width > m_column.m_initialIndent); + calcLength(); + if (m_len == 0) + m_stringIndex++; // Empty string + } + + auto operator*() const -> std::string { + assert(m_stringIndex < m_column.m_strings.size()); + assert(m_pos <= m_end); + return addIndentAndSuffix(line().substr(m_pos, m_len)); + } + + auto operator++() -> iterator & { + m_pos += m_len; + if (m_pos < line().size() && line()[m_pos] == '\n') + m_pos += 1; + else + while (m_pos < line().size() && isWhitespace(line()[m_pos])) + ++m_pos; + + if (m_pos == line().size()) { + m_pos = 0; + ++m_stringIndex; + } + if (m_stringIndex < m_column.m_strings.size()) + calcLength(); + return *this; + } + + auto operator++(int) -> iterator { + iterator prev(*this); + operator++(); + return prev; + } + + auto operator==(iterator const &other) const -> bool { + return + m_pos == other.m_pos && + m_stringIndex == other.m_stringIndex && + &m_column == &other.m_column; + } + + auto operator!=(iterator const &other) const -> bool { + return !operator==(other); + } + }; + + using const_iterator = iterator; + + explicit Column(std::string const &text) { m_strings.push_back(text); } + + auto width(size_t newWidth) -> Column & { + assert(newWidth > 0); + m_width = newWidth; + return *this; + } + + auto indent(size_t newIndent) -> Column & { + m_indent = newIndent; + return *this; + } + + auto initialIndent(size_t newIndent) -> Column & { + m_initialIndent = newIndent; + return *this; + } + + auto width() const -> size_t { return m_width; } + + auto begin() const -> iterator { return iterator(*this); } + + auto end() const -> iterator { return {*this, m_strings.size()}; } + + inline friend std::ostream &operator<<(std::ostream &os, Column const &col) { + bool first = true; + for (auto line: col) { + if (first) + first = false; + else + os << "\n"; + os << line; + } + return os; + } + + auto operator+(Column const &other) -> Columns; + + auto toString() const -> std::string { + std::ostringstream oss; + oss << *this; + return oss.str(); + } + }; + + class Spacer : public Column { + + public: + explicit Spacer(size_t spaceWidth) : Column("") { + width(spaceWidth); + } + }; + + class Columns { + std::vector m_columns; + + public: + + class iterator { + friend Columns; + struct EndTag { + }; + + std::vector const &m_columns; + std::vector m_iterators; + size_t m_activeIterators; + + iterator(Columns const &columns, EndTag) + : m_columns(columns.m_columns), + m_activeIterators(0) { + m_iterators.reserve(m_columns.size()); + + for (auto const &col: m_columns) + m_iterators.push_back(col.end()); + } + + public: + using difference_type = std::ptrdiff_t; + using value_type = std::string; + using pointer = value_type *; + using reference = value_type &; + using iterator_category = std::forward_iterator_tag; + + explicit iterator(Columns const &columns) + : m_columns(columns.m_columns), + m_activeIterators(m_columns.size()) { + m_iterators.reserve(m_columns.size()); + + for (auto const &col: m_columns) + m_iterators.push_back(col.begin()); + } + + auto operator==(iterator const &other) const -> bool { + return m_iterators == other.m_iterators; + } + + auto operator!=(iterator const &other) const -> bool { + return m_iterators != other.m_iterators; + } + + auto operator*() const -> std::string { + std::string row, padding; + + for (size_t i = 0; i < m_columns.size(); ++i) { + auto width = m_columns[i].width(); + if (m_iterators[i] != m_columns[i].end()) { + std::string col = *m_iterators[i]; + row += padding + col; + if (col.size() < width) + padding = std::string(width - col.size(), ' '); + else + padding = ""; + } else { + padding += std::string(width, ' '); + } + } + return row; + } + + auto operator++() -> iterator & { + for (size_t i = 0; i < m_columns.size(); ++i) { + if (m_iterators[i] != m_columns[i].end()) + ++m_iterators[i]; + } + return *this; + } + + auto operator++(int) -> iterator { + iterator prev(*this); + operator++(); + return prev; + } + }; + + using const_iterator = iterator; + + auto begin() const -> iterator { return iterator(*this); } + + auto end() const -> iterator { return {*this, iterator::EndTag()}; } + + auto operator+=(Column const &col) -> Columns & { + m_columns.push_back(col); + return *this; + } + + auto operator+(Column const &col) -> Columns { + Columns combined = *this; + combined += col; + return combined; + } + + inline friend std::ostream &operator<<(std::ostream &os, Columns const &cols) { + + bool first = true; + for (auto line: cols) { + if (first) + first = false; + else + os << "\n"; + os << line; + } + return os; + } + + auto toString() const -> std::string { + std::ostringstream oss; + oss << *this; + return oss.str(); + } + }; + + inline auto Column::operator+(Column const &other) -> Columns { + Columns cols; + cols += *this; + cols += other; + return cols; + } + } + + } +} + +// ----------- end of #include from clara_textflow.hpp ----------- +// ........... back in clara.hpp + +#include +#include +#include +#include +#include + +#if !defined(CATCH_PLATFORM_WINDOWS) && (defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER)) +#define CATCH_PLATFORM_WINDOWS +#endif + +namespace Catch { + namespace clara { + namespace detail { + +// Traits for extracting arg and return type of lambdas (for single argument lambdas) + template + struct UnaryLambdaTraits : UnaryLambdaTraits { + }; + + template + struct UnaryLambdaTraits { + static const bool isValid = false; + }; + + template + struct UnaryLambdaTraits { + static const bool isValid = true; + using ArgType = typename std::remove_const::type>::type; + using ReturnType = ReturnT; + }; + + class TokenStream; + +// Transport for raw args (copied from main args, or supplied via init list for testing) + class Args { + friend TokenStream; + std::string m_exeName; + std::vector m_args; + + public: + Args(int argc, char const *const *argv) + : m_exeName(argv[0]), + m_args(argv + 1, argv + argc) {} + + Args(std::initializer_list args) + : m_exeName(*args.begin()), + m_args(args.begin() + 1, args.end()) {} + + auto exeName() const -> std::string { + return m_exeName; + } + }; + +// Wraps a token coming from a token stream. These may not directly correspond to strings as a single string +// may encode an option + its argument if the : or = form is used + enum class TokenType { + Option, Argument + }; + struct Token { + TokenType type; + std::string token; + }; + + inline auto isOptPrefix(char c) -> bool { + return c == '-' +#ifdef CATCH_PLATFORM_WINDOWS + || c == '/' +#endif + ; + } + +// Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled + class TokenStream { + using Iterator = std::vector::const_iterator; + Iterator it; + Iterator itEnd; + std::vector m_tokenBuffer; + + void loadBuffer() { + m_tokenBuffer.resize(0); + + // Skip any empty strings + while (it != itEnd && it->empty()) + ++it; + + if (it != itEnd) { + auto const &next = *it; + if (isOptPrefix(next[0])) { + auto delimiterPos = next.find_first_of(" :="); + if (delimiterPos != std::string::npos) { + m_tokenBuffer.push_back({TokenType::Option, next.substr(0, delimiterPos)}); + m_tokenBuffer.push_back({TokenType::Argument, next.substr(delimiterPos + 1)}); + } else { + if (next[1] != '-' && next.size() > 2) { + std::string opt = "- "; + for (size_t i = 1; i < next.size(); ++i) { + opt[1] = next[i]; + m_tokenBuffer.push_back({TokenType::Option, opt}); + } + } else { + m_tokenBuffer.push_back({TokenType::Option, next}); + } + } + } else { + m_tokenBuffer.push_back({TokenType::Argument, next}); + } + } + } + + public: + explicit TokenStream(Args const &args) : TokenStream(args.m_args.begin(), args.m_args.end()) {} + + TokenStream(Iterator it, Iterator itEnd) : it(it), itEnd(itEnd) { + loadBuffer(); + } -// TextFlowCpp -// -// A single-header library for wrapping and laying out basic text, by Phil Nash -// -// Distributed under the Boost Software License, Version 1.0. (See accompanying -// file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -// -// This project is hosted at https://github.com/philsquared/textflowcpp + explicit operator bool() const { + return !m_tokenBuffer.empty() || it != itEnd; + } + auto count() const -> size_t { return m_tokenBuffer.size() + (itEnd - it); } -#include -#include -#include -#include + auto operator*() const -> Token { + assert(!m_tokenBuffer.empty()); + return m_tokenBuffer.front(); + } -#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH -#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH 80 -#endif + auto operator->() const -> Token const * { + assert(!m_tokenBuffer.empty()); + return &m_tokenBuffer.front(); + } -namespace Catch { -namespace clara { -namespace TextFlow { + auto operator++() -> TokenStream & { + if (m_tokenBuffer.size() >= 2) { + m_tokenBuffer.erase(m_tokenBuffer.begin()); + } else { + if (it != itEnd) + ++it; + loadBuffer(); + } + return *this; + } + }; -inline auto isWhitespace(char c) -> bool { - static std::string chars = " \t\n\r"; - return chars.find(c) != std::string::npos; -} -inline auto isBreakableBefore(char c) -> bool { - static std::string chars = "[({<|"; - return chars.find(c) != std::string::npos; -} -inline auto isBreakableAfter(char c) -> bool { - static std::string chars = "])}>.,:;*+-=&/\\"; - return chars.find(c) != std::string::npos; -} + class ResultBase { + public: + enum Type { + Ok, LogicError, RuntimeError + }; -class Columns; - -class Column { - std::vector m_strings; - size_t m_width = CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH; - size_t m_indent = 0; - size_t m_initialIndent = std::string::npos; - - public: - class iterator { - friend Column; - - Column const &m_column; - size_t m_stringIndex = 0; - size_t m_pos = 0; - - size_t m_len = 0; - size_t m_end = 0; - bool m_suffix = false; - - iterator(Column const &column, size_t stringIndex) - : m_column(column), - m_stringIndex(stringIndex) {} - - auto line() const -> std::string const & { return m_column.m_strings[m_stringIndex]; } - - auto isBoundary(size_t at) const -> bool { - assert(at > 0); - assert(at <= line().size()); - - return at == line().size() || - (isWhitespace(line()[at]) && !isWhitespace(line()[at - 1])) || - isBreakableBefore(line()[at]) || - isBreakableAfter(line()[at - 1]); - } - - void calcLength() { - assert(m_stringIndex < m_column.m_strings.size()); - - m_suffix = false; - auto width = m_column.m_width - indent(); - m_end = m_pos; - if (line()[m_pos] == '\n') { - ++m_end; - } - while (m_end < line().size() && line()[m_end] != '\n') - ++m_end; - - if (m_end < m_pos + width) { - m_len = m_end - m_pos; - } else { - size_t len = width; - while (len > 0 && !isBoundary(m_pos + len)) - --len; - while (len > 0 && isWhitespace(line()[m_pos + len - 1])) - --len; - - if (len > 0) { - m_len = len; - } else { - m_suffix = true; - m_len = width - 1; - } - } - } - - auto indent() const -> size_t { - auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos; - return initial == std::string::npos ? m_column.m_indent : initial; - } - - auto addIndentAndSuffix(std::string const &plain) const -> std::string { - return std::string(indent(), ' ') + (m_suffix ? plain + "-" : plain); - } - - public: - using difference_type = std::ptrdiff_t; - using value_type = std::string; - using pointer = value_type *; - using reference = value_type &; - using iterator_category = std::forward_iterator_tag; - - explicit iterator(Column const &column) : m_column(column) { - assert(m_column.m_width > m_column.m_indent); - assert(m_column.m_initialIndent == std::string::npos || m_column.m_width > m_column.m_initialIndent); - calcLength(); - if (m_len == 0) - m_stringIndex++; // Empty string - } - - auto operator*() const -> std::string { - assert(m_stringIndex < m_column.m_strings.size()); - assert(m_pos <= m_end); - return addIndentAndSuffix(line().substr(m_pos, m_len)); - } - - auto operator++() -> iterator & { - m_pos += m_len; - if (m_pos < line().size() && line()[m_pos] == '\n') - m_pos += 1; - else - while (m_pos < line().size() && isWhitespace(line()[m_pos])) - ++m_pos; - - if (m_pos == line().size()) { - m_pos = 0; - ++m_stringIndex; - } - if (m_stringIndex < m_column.m_strings.size()) - calcLength(); - return *this; - } - auto operator++(int) -> iterator { - iterator prev(*this); - operator++(); - return prev; - } - - auto operator==(iterator const &other) const -> bool { - return - m_pos == other.m_pos && - m_stringIndex == other.m_stringIndex && - &m_column == &other.m_column; - } - auto operator!=(iterator const &other) const -> bool { - return !operator==(other); - } - }; - using const_iterator = iterator; - - explicit Column(std::string const &text) { m_strings.push_back(text); } - - auto width(size_t newWidth) -> Column & { - assert(newWidth > 0); - m_width = newWidth; - return *this; - } - auto indent(size_t newIndent) -> Column & { - m_indent = newIndent; - return *this; - } - auto initialIndent(size_t newIndent) -> Column & { - m_initialIndent = newIndent; - return *this; - } - - auto width() const -> size_t { return m_width; } - auto begin() const -> iterator { return iterator(*this); } - auto end() const -> iterator { return {*this, m_strings.size()}; } - - inline friend std::ostream &operator<<(std::ostream &os, Column const &col) { - bool first = true; - for (auto line : col) { - if (first) - first = false; - else - os << "\n"; - os << line; - } - return os; - } - - auto operator+(Column const &other) -> Columns; - - auto toString() const -> std::string { - std::ostringstream oss; - oss << *this; - return oss.str(); - } -}; + protected: + ResultBase(Type type) : m_type(type) {} -class Spacer : public Column { + virtual ~ResultBase() = default; - public: - explicit Spacer(size_t spaceWidth) : Column("") { - width(spaceWidth); - } -}; + virtual void enforceOk() const = 0; -class Columns { - std::vector m_columns; + Type m_type; + }; - public: + template + class ResultValueBase : public ResultBase { + public: + auto value() const -> T const & { + enforceOk(); + return m_value; + } - class iterator { - friend Columns; - struct EndTag {}; + protected: + ResultValueBase(Type type) : ResultBase(type) {} - std::vector const &m_columns; - std::vector m_iterators; - size_t m_activeIterators; + ResultValueBase(ResultValueBase const &other) : ResultBase(other) { + if (m_type == ResultBase::Ok) + new(&m_value) T(other.m_value); + } - iterator(Columns const &columns, EndTag) - : m_columns(columns.m_columns), - m_activeIterators(0) { - m_iterators.reserve(m_columns.size()); + ResultValueBase(Type, T const &value) : ResultBase(Ok) { + new(&m_value) T(value); + } - for (auto const &col : m_columns) - m_iterators.push_back(col.end()); - } + auto operator=(ResultValueBase const &other) -> ResultValueBase & { + if (m_type == ResultBase::Ok) + m_value.~T(); + ResultBase::operator=(other); + if (m_type == ResultBase::Ok) + new(&m_value) T(other.m_value); + return *this; + } - public: - using difference_type = std::ptrdiff_t; - using value_type = std::string; - using pointer = value_type *; - using reference = value_type &; - using iterator_category = std::forward_iterator_tag; + ~ResultValueBase() override { + if (m_type == Ok) + m_value.~T(); + } - explicit iterator(Columns const &columns) - : m_columns(columns.m_columns), - m_activeIterators(m_columns.size()) { - m_iterators.reserve(m_columns.size()); + union { + T m_value; + }; + }; - for (auto const &col : m_columns) - m_iterators.push_back(col.begin()); - } + template<> + class ResultValueBase : public ResultBase { + protected: + using ResultBase::ResultBase; + }; - auto operator==(iterator const &other) const -> bool { - return m_iterators == other.m_iterators; - } - auto operator!=(iterator const &other) const -> bool { - return m_iterators != other.m_iterators; - } - auto operator*() const -> std::string { - std::string row, padding; + template + class BasicResult : public ResultValueBase { + public: + template + explicit BasicResult(BasicResult const &other) + : ResultValueBase(other.type()), + m_errorMessage(other.errorMessage()) { + assert(type() != ResultBase::Ok); + } - for (size_t i = 0; i < m_columns.size(); ++i) { - auto width = m_columns[i].width(); - if (m_iterators[i] != m_columns[i].end()) { - std::string col = *m_iterators[i]; - row += padding + col; - if (col.size() < width) - padding = std::string(width - col.size(), ' '); - else - padding = ""; - } else { - padding += std::string(width, ' '); - } - } - return row; - } - auto operator++() -> iterator & { - for (size_t i = 0; i < m_columns.size(); ++i) { - if (m_iterators[i] != m_columns[i].end()) - ++m_iterators[i]; - } - return *this; - } - auto operator++(int) -> iterator { - iterator prev(*this); - operator++(); - return prev; - } - }; - using const_iterator = iterator; - - auto begin() const -> iterator { return iterator(*this); } - auto end() const -> iterator { return {*this, iterator::EndTag()}; } - - auto operator+=(Column const &col) -> Columns & { - m_columns.push_back(col); - return *this; - } - auto operator+(Column const &col) -> Columns { - Columns combined = *this; - combined += col; - return combined; - } - - inline friend std::ostream &operator<<(std::ostream &os, Columns const &cols) { - - bool first = true; - for (auto line : cols) { - if (first) - first = false; - else - os << "\n"; - os << line; - } - return os; - } - - auto toString() const -> std::string { - std::ostringstream oss; - oss << *this; - return oss.str(); - } -}; + template + static auto ok(U const &value) -> BasicResult { return {ResultBase::Ok, value}; } -inline auto Column::operator+(Column const &other) -> Columns { - Columns cols; - cols += *this; - cols += other; - return cols; -} -} + static auto ok() -> BasicResult { return {ResultBase::Ok}; } -} -} + static auto logicError(std::string const &message) -> BasicResult { + return {ResultBase::LogicError, message}; + } -// ----------- end of #include from clara_textflow.hpp ----------- -// ........... back in clara.hpp + static auto runtimeError(std::string const &message) -> BasicResult { + return {ResultBase::RuntimeError, message}; + } -#include -#include -#include -#include -#include + explicit operator bool() const { return m_type == ResultBase::Ok; } -#if !defined(CATCH_PLATFORM_WINDOWS) && (defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER)) -#define CATCH_PLATFORM_WINDOWS -#endif + auto type() const -> ResultBase::Type { return m_type; } -namespace Catch { -namespace clara { -namespace detail { + auto errorMessage() const -> std::string { return m_errorMessage; } -// Traits for extracting arg and return type of lambdas (for single argument lambdas) -template -struct UnaryLambdaTraits : UnaryLambdaTraits {}; + protected: + void enforceOk() const override { -template -struct UnaryLambdaTraits { - static const bool isValid = false; -}; + // Errors shouldn't reach this point, but if they do + // the actual error message will be in m_errorMessage + assert(m_type != ResultBase::LogicError); + assert(m_type != ResultBase::RuntimeError); + if (m_type != ResultBase::Ok) + std::abort(); + } -template -struct UnaryLambdaTraits { - static const bool isValid = true; - using ArgType = typename std::remove_const::type>::type; - using ReturnType = ReturnT; -}; + std::string m_errorMessage; // Only populated if resultType is an error -class TokenStream; + BasicResult(ResultBase::Type type, std::string const &message) + : ResultValueBase(type), + m_errorMessage(message) { + assert(m_type != ResultBase::Ok); + } -// Transport for raw args (copied from main args, or supplied via init list for testing) -class Args { - friend TokenStream; - std::string m_exeName; - std::vector m_args; - - public: - Args(int argc, char const *const *argv) - : m_exeName(argv[0]), - m_args(argv + 1, argv + argc) {} - - Args(std::initializer_list args) - : m_exeName(*args.begin()), - m_args(args.begin() + 1, args.end()) {} - - auto exeName() const -> std::string { - return m_exeName; - } -}; + using ResultValueBase::ResultValueBase; + using ResultBase::m_type; + }; -// Wraps a token coming from a token stream. These may not directly correspond to strings as a single string -// may encode an option + its argument if the : or = form is used -enum class TokenType { - Option, Argument -}; -struct Token { - TokenType type; - std::string token; -}; + enum class ParseResultType { + Matched, NoMatch, ShortCircuitAll, ShortCircuitSame + }; -inline auto isOptPrefix(char c) -> bool { - return c == '-' -#ifdef CATCH_PLATFORM_WINDOWS - || c == '/' -#endif - ; -} + class ParseState { + public: -// Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled -class TokenStream { - using Iterator = std::vector::const_iterator; - Iterator it; - Iterator itEnd; - std::vector m_tokenBuffer; - - void loadBuffer() { - m_tokenBuffer.resize(0); - - // Skip any empty strings - while (it != itEnd && it->empty()) - ++it; - - if (it != itEnd) { - auto const &next = *it; - if (isOptPrefix(next[0])) { - auto delimiterPos = next.find_first_of(" :="); - if (delimiterPos != std::string::npos) { - m_tokenBuffer.push_back({TokenType::Option, next.substr(0, delimiterPos)}); - m_tokenBuffer.push_back({TokenType::Argument, next.substr(delimiterPos + 1)}); - } else { - if (next[1] != '-' && next.size() > 2) { - std::string opt = "- "; - for (size_t i = 1; i < next.size(); ++i) { - opt[1] = next[i]; - m_tokenBuffer.push_back({TokenType::Option, opt}); - } - } else { - m_tokenBuffer.push_back({TokenType::Option, next}); - } - } - } else { - m_tokenBuffer.push_back({TokenType::Argument, next}); - } - } - } + ParseState(ParseResultType type, TokenStream const &remainingTokens) + : m_type(type), + m_remainingTokens(remainingTokens) {} - public: - explicit TokenStream(Args const &args) : TokenStream(args.m_args.begin(), args.m_args.end()) {} + auto type() const -> ParseResultType { return m_type; } - TokenStream(Iterator it, Iterator itEnd) : it(it), itEnd(itEnd) { - loadBuffer(); - } + auto remainingTokens() const -> TokenStream { return m_remainingTokens; } - explicit operator bool() const { - return !m_tokenBuffer.empty() || it != itEnd; - } + private: + ParseResultType m_type; + TokenStream m_remainingTokens; + }; - auto count() const -> size_t { return m_tokenBuffer.size() + (itEnd - it); } + using Result = BasicResult; + using ParserResult = BasicResult; + using InternalParseResult = BasicResult; - auto operator*() const -> Token { - assert(!m_tokenBuffer.empty()); - return m_tokenBuffer.front(); - } + struct HelpColumns { + std::string left; + std::string right; + }; - auto operator->() const -> Token const * { - assert(!m_tokenBuffer.empty()); - return &m_tokenBuffer.front(); - } + template + inline auto convertInto(std::string const &source, T &target) -> ParserResult { + std::stringstream ss; + ss << source; + ss >> target; + if (ss.fail()) + return ParserResult::runtimeError("Unable to convert '" + source + "' to destination type"); + else + return ParserResult::ok(ParseResultType::Matched); + } - auto operator++() -> TokenStream & { - if (m_tokenBuffer.size() >= 2) { - m_tokenBuffer.erase(m_tokenBuffer.begin()); - } else { - if (it != itEnd) - ++it; - loadBuffer(); - } - return *this; - } -}; + inline auto convertInto(std::string const &source, std::string &target) -> ParserResult { + target = source; + return ParserResult::ok(ParseResultType::Matched); + } -class ResultBase { - public: - enum Type { - Ok, LogicError, RuntimeError - }; + inline auto convertInto(std::string const &source, bool &target) -> ParserResult { + std::string srcLC = source; + std::transform(srcLC.begin(), + srcLC.end(), + srcLC.begin(), + [](unsigned char c) { return static_cast( std::tolower(c)); }); + if (srcLC == "y" || srcLC == "1" || srcLC == "true" || srcLC == "yes" || srcLC == "on") + target = true; + else if (srcLC == "n" || srcLC == "0" || srcLC == "false" || srcLC == "no" || srcLC == "off") + target = false; + else + return ParserResult::runtimeError( + "Expected a boolean value but did not recognise: '" + source + "'"); + return ParserResult::ok(ParseResultType::Matched); + } - protected: - ResultBase(Type type) : m_type(type) {} - virtual ~ResultBase() = default; +#ifdef CLARA_CONFIG_OPTIONAL_TYPE - virtual void enforceOk() const = 0; + template + inline auto convertInto(std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE &target) -> ParserResult { + T temp; + auto result = convertInto(source, temp); + if (result) + target = std::move(temp); + return result; + } - Type m_type; -}; +#endif // CLARA_CONFIG_OPTIONAL_TYPE -template -class ResultValueBase : public ResultBase { - public: - auto value() const -> T const & { - enforceOk(); - return m_value; - } - - protected: - ResultValueBase(Type type) : ResultBase(type) {} - - ResultValueBase(ResultValueBase const &other) : ResultBase(other) { - if (m_type == ResultBase::Ok) - new(&m_value) T(other.m_value); - } - - ResultValueBase(Type, T const &value) : ResultBase(Ok) { - new(&m_value) T(value); - } - - auto operator=(ResultValueBase const &other) -> ResultValueBase & { - if (m_type == ResultBase::Ok) - m_value.~T(); - ResultBase::operator=(other); - if (m_type == ResultBase::Ok) - new(&m_value) T(other.m_value); - return *this; - } - - ~ResultValueBase() override { - if (m_type == Ok) - m_value.~T(); - } - - union { - T m_value; - }; -}; + struct NonCopyable { + NonCopyable() = default; -template<> -class ResultValueBase : public ResultBase { - protected: - using ResultBase::ResultBase; -}; + NonCopyable(NonCopyable const &) = delete; -template -class BasicResult : public ResultValueBase { - public: - template - explicit BasicResult(BasicResult const &other) - : ResultValueBase(other.type()), - m_errorMessage(other.errorMessage()) { - assert(type() != ResultBase::Ok); - } - - template - static auto ok(U const &value) -> BasicResult { return {ResultBase::Ok, value}; } - static auto ok() -> BasicResult { return {ResultBase::Ok}; } - static auto logicError(std::string const &message) -> BasicResult { return {ResultBase::LogicError, message}; } - static auto runtimeError(std::string const &message) -> BasicResult { return {ResultBase::RuntimeError, message}; } - - explicit operator bool() const { return m_type == ResultBase::Ok; } - auto type() const -> ResultBase::Type { return m_type; } - auto errorMessage() const -> std::string { return m_errorMessage; } - - protected: - void enforceOk() const override { - - // Errors shouldn't reach this point, but if they do - // the actual error message will be in m_errorMessage - assert(m_type != ResultBase::LogicError); - assert(m_type != ResultBase::RuntimeError); - if (m_type != ResultBase::Ok) - std::abort(); - } - - std::string m_errorMessage; // Only populated if resultType is an error - - BasicResult(ResultBase::Type type, std::string const &message) - : ResultValueBase(type), - m_errorMessage(message) { - assert(m_type != ResultBase::Ok); - } - - using ResultValueBase::ResultValueBase; - using ResultBase::m_type; -}; + NonCopyable(NonCopyable &&) = delete; -enum class ParseResultType { - Matched, NoMatch, ShortCircuitAll, ShortCircuitSame -}; + NonCopyable &operator=(NonCopyable const &) = delete; -class ParseState { - public: + NonCopyable &operator=(NonCopyable &&) = delete; + }; - ParseState(ParseResultType type, TokenStream const &remainingTokens) - : m_type(type), - m_remainingTokens(remainingTokens) {} + struct BoundRef : NonCopyable { + virtual ~BoundRef() = default; - auto type() const -> ParseResultType { return m_type; } - auto remainingTokens() const -> TokenStream { return m_remainingTokens; } + virtual auto isContainer() const -> bool { return false; } - private: - ParseResultType m_type; - TokenStream m_remainingTokens; -}; + virtual auto isFlag() const -> bool { return false; } + }; -using Result = BasicResult; -using ParserResult = BasicResult; -using InternalParseResult = BasicResult; + struct BoundValueRefBase : BoundRef { + virtual auto setValue(std::string const &arg) -> ParserResult = 0; + }; -struct HelpColumns { - std::string left; - std::string right; -}; + struct BoundFlagRefBase : BoundRef { + virtual auto setFlag(bool flag) -> ParserResult = 0; -template -inline auto convertInto(std::string const &source, T &target) -> ParserResult { - std::stringstream ss; - ss << source; - ss >> target; - if (ss.fail()) - return ParserResult::runtimeError("Unable to convert '" + source + "' to destination type"); - else - return ParserResult::ok(ParseResultType::Matched); -} -inline auto convertInto(std::string const &source, std::string &target) -> ParserResult { - target = source; - return ParserResult::ok(ParseResultType::Matched); -} -inline auto convertInto(std::string const &source, bool &target) -> ParserResult { - std::string srcLC = source; - std::transform(srcLC.begin(), - srcLC.end(), - srcLC.begin(), - [](unsigned char c) { return static_cast( std::tolower(c)); }); - if (srcLC == "y" || srcLC == "1" || srcLC == "true" || srcLC == "yes" || srcLC == "on") - target = true; - else if (srcLC == "n" || srcLC == "0" || srcLC == "false" || srcLC == "no" || srcLC == "off") - target = false; - else - return ParserResult::runtimeError("Expected a boolean value but did not recognise: '" + source + "'"); - return ParserResult::ok(ParseResultType::Matched); -} -#ifdef CLARA_CONFIG_OPTIONAL_TYPE -template -inline auto convertInto(std::string const &source, CLARA_CONFIG_OPTIONAL_TYPE &target) -> ParserResult { - T temp; - auto result = convertInto(source, temp); - if (result) - target = std::move(temp); - return result; -} -#endif // CLARA_CONFIG_OPTIONAL_TYPE + virtual auto isFlag() const -> bool { return true; } + }; -struct NonCopyable { - NonCopyable() = default; - NonCopyable(NonCopyable const &) = delete; - NonCopyable(NonCopyable &&) = delete; - NonCopyable &operator=(NonCopyable const &) = delete; - NonCopyable &operator=(NonCopyable &&) = delete; -}; + template + struct BoundValueRef : BoundValueRefBase { + T &m_ref; -struct BoundRef : NonCopyable { - virtual ~BoundRef() = default; - virtual auto isContainer() const -> bool { return false; } - virtual auto isFlag() const -> bool { return false; } -}; -struct BoundValueRefBase : BoundRef { - virtual auto setValue(std::string const &arg) -> ParserResult = 0; -}; -struct BoundFlagRefBase : BoundRef { - virtual auto setFlag(bool flag) -> ParserResult = 0; - virtual auto isFlag() const -> bool { return true; } -}; + explicit BoundValueRef(T &ref) : m_ref(ref) {} -template -struct BoundValueRef : BoundValueRefBase { - T &m_ref; + auto setValue(std::string const &arg) -> ParserResult override { + return convertInto(arg, m_ref); + } + }; - explicit BoundValueRef(T &ref) : m_ref(ref) {} + template + struct BoundValueRef> : BoundValueRefBase { + std::vector &m_ref; - auto setValue(std::string const &arg) -> ParserResult override { - return convertInto(arg, m_ref); - } -}; + explicit BoundValueRef(std::vector &ref) : m_ref(ref) {} -template -struct BoundValueRef> : BoundValueRefBase { - std::vector &m_ref; + auto isContainer() const -> bool override { return true; } - explicit BoundValueRef(std::vector &ref) : m_ref(ref) {} + auto setValue(std::string const &arg) -> ParserResult override { + T temp; + auto result = convertInto(arg, temp); + if (result) + m_ref.push_back(temp); + return result; + } + }; - auto isContainer() const -> bool override { return true; } + struct BoundFlagRef : BoundFlagRefBase { + bool &m_ref; - auto setValue(std::string const &arg) -> ParserResult override { - T temp; - auto result = convertInto(arg, temp); - if (result) - m_ref.push_back(temp); - return result; - } -}; + explicit BoundFlagRef(bool &ref) : m_ref(ref) {} -struct BoundFlagRef : BoundFlagRefBase { - bool &m_ref; + auto setFlag(bool flag) -> ParserResult override { + m_ref = flag; + return ParserResult::ok(ParseResultType::Matched); + } + }; - explicit BoundFlagRef(bool &ref) : m_ref(ref) {} + template + struct LambdaInvoker { + static_assert(std::is_same::value, + "Lambda must return void or clara::ParserResult"); - auto setFlag(bool flag) -> ParserResult override { - m_ref = flag; - return ParserResult::ok(ParseResultType::Matched); - } -}; + template + static auto invoke(L const &lambda, ArgType const &arg) -> ParserResult { + return lambda(arg); + } + }; -template -struct LambdaInvoker { - static_assert(std::is_same::value, "Lambda must return void or clara::ParserResult"); + template<> + struct LambdaInvoker { + template + static auto invoke(L const &lambda, ArgType const &arg) -> ParserResult { + lambda(arg); + return ParserResult::ok(ParseResultType::Matched); + } + }; - template - static auto invoke(L const &lambda, ArgType const &arg) -> ParserResult { - return lambda(arg); - } -}; + template + inline auto invokeLambda(L const &lambda, std::string const &arg) -> ParserResult { + ArgType temp{}; + auto result = convertInto(arg, temp); + return !result + ? result + : LambdaInvoker::ReturnType>::invoke(lambda, temp); + } -template<> -struct LambdaInvoker { - template - static auto invoke(L const &lambda, ArgType const &arg) -> ParserResult { - lambda(arg); - return ParserResult::ok(ParseResultType::Matched); - } -}; + template + struct BoundLambda : BoundValueRefBase { + L m_lambda; -template -inline auto invokeLambda(L const &lambda, std::string const &arg) -> ParserResult { - ArgType temp{}; - auto result = convertInto(arg, temp); - return !result - ? result - : LambdaInvoker::ReturnType>::invoke(lambda, temp); -} + static_assert(UnaryLambdaTraits::isValid, "Supplied lambda must take exactly one argument"); -template -struct BoundLambda : BoundValueRefBase { - L m_lambda; + explicit BoundLambda(L const &lambda) : m_lambda(lambda) {} - static_assert(UnaryLambdaTraits::isValid, "Supplied lambda must take exactly one argument"); - explicit BoundLambda(L const &lambda) : m_lambda(lambda) {} + auto setValue(std::string const &arg) -> ParserResult override { + return invokeLambda::ArgType>(m_lambda, arg); + } + }; - auto setValue(std::string const &arg) -> ParserResult override { - return invokeLambda::ArgType>(m_lambda, arg); - } -}; + template + struct BoundFlagLambda : BoundFlagRefBase { + L m_lambda; + + static_assert(UnaryLambdaTraits::isValid, "Supplied lambda must take exactly one argument"); + static_assert(std::is_same::ArgType, bool>::value, + "flags must be boolean"); -template -struct BoundFlagLambda : BoundFlagRefBase { - L m_lambda; + explicit BoundFlagLambda(L const &lambda) : m_lambda(lambda) {} - static_assert(UnaryLambdaTraits::isValid, "Supplied lambda must take exactly one argument"); - static_assert(std::is_same::ArgType, bool>::value, "flags must be boolean"); + auto setFlag(bool flag) -> ParserResult override { + return LambdaInvoker::ReturnType>::invoke(m_lambda, flag); + } + }; - explicit BoundFlagLambda(L const &lambda) : m_lambda(lambda) {} + enum class Optionality { + Optional, Required + }; - auto setFlag(bool flag) -> ParserResult override { - return LambdaInvoker::ReturnType>::invoke(m_lambda, flag); - } -}; + struct Parser; -enum class Optionality { Optional, Required }; + class ParserBase { + public: + virtual ~ParserBase() = default; -struct Parser; + virtual auto validate() const -> Result { return Result::ok(); } -class ParserBase { - public: - virtual ~ParserBase() = default; - virtual auto validate() const -> Result { return Result::ok(); } - virtual auto parse(std::string const &exeName, TokenStream const &tokens) const -> InternalParseResult = 0; - virtual auto cardinality() const -> size_t { return 1; } + virtual auto + parse(std::string const &exeName, TokenStream const &tokens) const -> InternalParseResult = 0; - auto parse(Args const &args) const -> InternalParseResult { - return parse(args.exeName(), TokenStream(args)); - } -}; + virtual auto cardinality() const -> size_t { return 1; } + + auto parse(Args const &args) const -> InternalParseResult { + return parse(args.exeName(), TokenStream(args)); + } + }; -template -class ComposableParserImpl : public ParserBase { - public: - template - auto operator|(T const &other) const -> Parser; + template + class ComposableParserImpl : public ParserBase { + public: + template + auto operator|(T const &other) const -> Parser; - template - auto operator+(T const &other) const -> Parser; -}; + template + auto operator+(T const &other) const -> Parser; + }; // Common code and state for Args and Opts -template -class ParserRefImpl : public ComposableParserImpl { - protected: - Optionality m_optionality = Optionality::Optional; - std::shared_ptr m_ref; - std::string m_hint; - std::string m_description; - - explicit ParserRefImpl(std::shared_ptr const &ref) : m_ref(ref) {} - - public: - template - ParserRefImpl(T &ref, std::string const &hint) - : m_ref(std::make_shared>(ref)), - m_hint(hint) {} - - template - ParserRefImpl(LambdaT const &ref, std::string const &hint) - : m_ref(std::make_shared>(ref)), - m_hint(hint) {} - - auto operator()(std::string const &description) -> DerivedT & { - m_description = description; - return static_cast( *this ); - } - - auto optional() -> DerivedT & { - m_optionality = Optionality::Optional; - return static_cast( *this ); - }; - - auto required() -> DerivedT & { - m_optionality = Optionality::Required; - return static_cast( *this ); - }; - - auto isOptional() const -> bool { - return m_optionality == Optionality::Optional; - } - - auto cardinality() const -> size_t override { - if (m_ref->isContainer()) - return 0; - else - return 1; - } + template + class ParserRefImpl : public ComposableParserImpl { + protected: + Optionality m_optionality = Optionality::Optional; + std::shared_ptr m_ref; + std::string m_hint; + std::string m_description; - auto hint() const -> std::string { return m_hint; } -}; + explicit ParserRefImpl(std::shared_ptr const &ref) : m_ref(ref) {} + + public: + template + ParserRefImpl(T &ref, std::string const &hint) + : m_ref(std::make_shared>(ref)), + m_hint(hint) {} + + template + ParserRefImpl(LambdaT const &ref, std::string const &hint) + : m_ref(std::make_shared>(ref)), + m_hint(hint) {} + + auto operator()(std::string const &description) -> DerivedT & { + m_description = description; + return static_cast( *this ); + } + + auto optional() -> DerivedT & { + m_optionality = Optionality::Optional; + return static_cast( *this ); + }; -class ExeName : public ComposableParserImpl { - std::shared_ptr m_name; - std::shared_ptr m_ref; + auto required() -> DerivedT & { + m_optionality = Optionality::Required; + return static_cast( *this ); + }; - template - static auto makeRef(LambdaT const &lambda) -> std::shared_ptr { - return std::make_shared>(lambda); - } + auto isOptional() const -> bool { + return m_optionality == Optionality::Optional; + } - public: - ExeName() : m_name(std::make_shared("")) {} + auto cardinality() const -> size_t override { + if (m_ref->isContainer()) + return 0; + else + return 1; + } - explicit ExeName(std::string &ref) : ExeName() { - m_ref = std::make_shared>(ref); - } + auto hint() const -> std::string { return m_hint; } + }; - template - explicit ExeName(LambdaT const &lambda) : ExeName() { - m_ref = std::make_shared>(lambda); - } + class ExeName : public ComposableParserImpl { + std::shared_ptr m_name; + std::shared_ptr m_ref; - // The exe name is not parsed out of the normal tokens, but is handled specially - auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { - return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, tokens)); - } + template + static auto makeRef(LambdaT const &lambda) -> std::shared_ptr { + return std::make_shared>(lambda); + } - auto name() const -> std::string { return *m_name; } - auto set(std::string const &newName) -> ParserResult { + public: + ExeName() : m_name(std::make_shared("")) {} - auto lastSlash = newName.find_last_of("\\/"); - auto filename = (lastSlash == std::string::npos) - ? newName - : newName.substr(lastSlash + 1); + explicit ExeName(std::string &ref) : ExeName() { + m_ref = std::make_shared>(ref); + } - *m_name = filename; - if (m_ref) - return m_ref->setValue(filename); - else - return ParserResult::ok(ParseResultType::Matched); - } -}; + template + explicit ExeName(LambdaT const &lambda) : ExeName() { + m_ref = std::make_shared>(lambda); + } -class Arg : public ParserRefImpl { - public: - using ParserRefImpl::ParserRefImpl; + // The exe name is not parsed out of the normal tokens, but is handled specially + auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { + return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, tokens)); + } - auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { - auto validationResult = validate(); - if (!validationResult) - return InternalParseResult(validationResult); + auto name() const -> std::string { return *m_name; } - auto remainingTokens = tokens; - auto const &token = *remainingTokens; - if (token.type != TokenType::Argument) - return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, remainingTokens)); + auto set(std::string const &newName) -> ParserResult { - assert(!m_ref->isFlag()); - auto valueRef = static_cast( m_ref.get()); + auto lastSlash = newName.find_last_of("\\/"); + auto filename = (lastSlash == std::string::npos) + ? newName + : newName.substr(lastSlash + 1); - auto result = valueRef->setValue(remainingTokens->token); - if (!result) - return InternalParseResult(result); - else - return InternalParseResult::ok(ParseState(ParseResultType::Matched, ++remainingTokens)); - } -}; + *m_name = filename; + if (m_ref) + return m_ref->setValue(filename); + else + return ParserResult::ok(ParseResultType::Matched); + } + }; + + class Arg : public ParserRefImpl { + public: + using ParserRefImpl::ParserRefImpl; + + auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { + auto validationResult = validate(); + if (!validationResult) + return InternalParseResult(validationResult); + + auto remainingTokens = tokens; + auto const &token = *remainingTokens; + if (token.type != TokenType::Argument) + return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, remainingTokens)); + + assert(!m_ref->isFlag()); + auto valueRef = static_cast( m_ref.get()); + + auto result = valueRef->setValue(remainingTokens->token); + if (!result) + return InternalParseResult(result); + else + return InternalParseResult::ok(ParseState(ParseResultType::Matched, ++remainingTokens)); + } + }; -inline auto normaliseOpt(std::string const &optName) -> std::string { + inline auto normaliseOpt(std::string const &optName) -> std::string { #ifdef CATCH_PLATFORM_WINDOWS - if( optName[0] == '/' ) + if( optName[0] == '/' ) return "-" + optName.substr( 1 ); else #endif - return optName; -} + return optName; + } -class Opt : public ParserRefImpl { - protected: - std::vector m_optNames; - - public: - template - explicit Opt(LambdaT const &ref) : ParserRefImpl(std::make_shared>(ref)) {} - - explicit Opt(bool &ref) : ParserRefImpl(std::make_shared(ref)) {} - - template - Opt(LambdaT const &ref, std::string const &hint) : ParserRefImpl(ref, hint) {} - - template - Opt(T &ref, std::string const &hint) : ParserRefImpl(ref, hint) {} - - auto operator[](std::string const &optName) -> Opt & { - m_optNames.push_back(optName); - return *this; - } - - auto getHelpColumns() const -> std::vector { - std::ostringstream oss; - bool first = true; - for (auto const &opt : m_optNames) { - if (first) - first = false; - else - oss << ", "; - oss << opt; - } - if (!m_hint.empty()) - oss << " <" << m_hint << ">"; - return {{oss.str(), m_description}}; - } - - auto isMatch(std::string const &optToken) const -> bool { - auto normalisedToken = normaliseOpt(optToken); - for (auto const &name : m_optNames) { - if (normaliseOpt(name) == normalisedToken) - return true; - } - return false; - } - - using ParserBase::parse; - - auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { - auto validationResult = validate(); - if (!validationResult) - return InternalParseResult(validationResult); - - auto remainingTokens = tokens; - if (remainingTokens && remainingTokens->type == TokenType::Option) { - auto const &token = *remainingTokens; - if (isMatch(token.token)) { - if (m_ref->isFlag()) { - auto flagRef = static_cast( m_ref.get()); - auto result = flagRef->setFlag(true); - if (!result) - return InternalParseResult(result); - if (result.value() == ParseResultType::ShortCircuitAll) - return InternalParseResult::ok(ParseState(result.value(), remainingTokens)); - } else { - auto valueRef = static_cast( m_ref.get()); - ++remainingTokens; - if (!remainingTokens) - return InternalParseResult::runtimeError("Expected argument following " + token.token); - auto const &argToken = *remainingTokens; - if (argToken.type != TokenType::Argument) - return InternalParseResult::runtimeError("Expected argument following " + token.token); - auto result = valueRef->setValue(argToken.token); - if (!result) - return InternalParseResult(result); - if (result.value() == ParseResultType::ShortCircuitAll) - return InternalParseResult::ok(ParseState(result.value(), remainingTokens)); - } - return InternalParseResult::ok(ParseState(ParseResultType::Matched, ++remainingTokens)); - } - } - return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, remainingTokens)); - } - - auto validate() const -> Result override { - if (m_optNames.empty()) - return Result::logicError("No options supplied to Opt"); - for (auto const &name : m_optNames) { - if (name.empty()) - return Result::logicError("Option name cannot be empty"); + class Opt : public ParserRefImpl { + protected: + std::vector m_optNames; + + public: + template + explicit Opt(LambdaT const &ref) : ParserRefImpl(std::make_shared>(ref)) {} + + explicit Opt(bool &ref) : ParserRefImpl(std::make_shared(ref)) {} + + template + Opt(LambdaT const &ref, std::string const &hint) : ParserRefImpl(ref, hint) {} + + template + Opt(T &ref, std::string const &hint) : ParserRefImpl(ref, hint) {} + + auto operator[](std::string const &optName) -> Opt & { + m_optNames.push_back(optName); + return *this; + } + + auto getHelpColumns() const -> std::vector { + std::ostringstream oss; + bool first = true; + for (auto const &opt: m_optNames) { + if (first) + first = false; + else + oss << ", "; + oss << opt; + } + if (!m_hint.empty()) + oss << " <" << m_hint << ">"; + return {{oss.str(), m_description}}; + } + + auto isMatch(std::string const &optToken) const -> bool { + auto normalisedToken = normaliseOpt(optToken); + for (auto const &name: m_optNames) { + if (normaliseOpt(name) == normalisedToken) + return true; + } + return false; + } + + using ParserBase::parse; + + auto parse(std::string const &, TokenStream const &tokens) const -> InternalParseResult override { + auto validationResult = validate(); + if (!validationResult) + return InternalParseResult(validationResult); + + auto remainingTokens = tokens; + if (remainingTokens && remainingTokens->type == TokenType::Option) { + auto const &token = *remainingTokens; + if (isMatch(token.token)) { + if (m_ref->isFlag()) { + auto flagRef = static_cast( m_ref.get()); + auto result = flagRef->setFlag(true); + if (!result) + return InternalParseResult(result); + if (result.value() == ParseResultType::ShortCircuitAll) + return InternalParseResult::ok(ParseState(result.value(), remainingTokens)); + } else { + auto valueRef = static_cast( m_ref.get()); + ++remainingTokens; + if (!remainingTokens) + return InternalParseResult::runtimeError( + "Expected argument following " + token.token); + auto const &argToken = *remainingTokens; + if (argToken.type != TokenType::Argument) + return InternalParseResult::runtimeError( + "Expected argument following " + token.token); + auto result = valueRef->setValue(argToken.token); + if (!result) + return InternalParseResult(result); + if (result.value() == ParseResultType::ShortCircuitAll) + return InternalParseResult::ok(ParseState(result.value(), remainingTokens)); + } + return InternalParseResult::ok(ParseState(ParseResultType::Matched, ++remainingTokens)); + } + } + return InternalParseResult::ok(ParseState(ParseResultType::NoMatch, remainingTokens)); + } + + auto validate() const -> Result override { + if (m_optNames.empty()) + return Result::logicError("No options supplied to Opt"); + for (auto const &name: m_optNames) { + if (name.empty()) + return Result::logicError("Option name cannot be empty"); #ifdef CATCH_PLATFORM_WINDOWS - if( name[0] != '-' && name[0] != '/' ) + if( name[0] != '-' && name[0] != '/' ) return Result::logicError( "Option name must begin with '-' or '/'" ); #else - if (name[0] != '-') - return Result::logicError("Option name must begin with '-'"); + if (name[0] != '-') + return Result::logicError("Option name must begin with '-'"); #endif - } - return ParserRefImpl::validate(); - } -}; + } + return ParserRefImpl::validate(); + } + }; -struct Help : Opt { - Help(bool &showHelpFlag) - : Opt([&](bool flag) { - showHelpFlag = flag; - return ParserResult::ok(ParseResultType::ShortCircuitAll); - }) { - static_cast( *this ) - ("display usage information") - ["-?"]["-h"]["--help"] - .optional(); - } -}; + struct Help : Opt { + Help(bool &showHelpFlag) + : Opt([&](bool flag) { + showHelpFlag = flag; + return ParserResult::ok(ParseResultType::ShortCircuitAll); + }) { + static_cast( *this ) + ("display usage information") + ["-?"]["-h"]["--help"] + .optional(); + } + }; -struct Parser : ParserBase { - - mutable ExeName m_exeName; - std::vector m_options; - std::vector m_args; - - auto operator|=(ExeName const &exeName) -> Parser & { - m_exeName = exeName; - return *this; - } - - auto operator|=(Arg const &arg) -> Parser & { - m_args.push_back(arg); - return *this; - } - - auto operator|=(Opt const &opt) -> Parser & { - m_options.push_back(opt); - return *this; - } - - auto operator|=(Parser const &other) -> Parser & { - m_options.insert(m_options.end(), other.m_options.begin(), other.m_options.end()); - m_args.insert(m_args.end(), other.m_args.begin(), other.m_args.end()); - return *this; - } - - template - auto operator|(T const &other) const -> Parser { - return Parser(*this) |= other; - } - - // Forward deprecated interface with '+' instead of '|' - template - auto operator+=(T const &other) -> Parser & { return operator|=(other); } - template - auto operator+(T const &other) const -> Parser { return operator|(other); } - - auto getHelpColumns() const -> std::vector { - std::vector cols; - for (auto const &o : m_options) { - auto childCols = o.getHelpColumns(); - cols.insert(cols.end(), childCols.begin(), childCols.end()); - } - return cols; - } - - void writeToStream(std::ostream &os) const { - if (!m_exeName.name().empty()) { - os << "usage:\n" << " " << m_exeName.name() << " "; - bool required = true, first = true; - for (auto const &arg : m_args) { - if (first) - first = false; - else - os << " "; - if (arg.isOptional() && required) { - os << "["; - required = false; - } - os << "<" << arg.hint() << ">"; - if (arg.cardinality() == 0) - os << " ... "; - } - if (!required) - os << "]"; - if (!m_options.empty()) - os << " options"; - os << "\n\nwhere options are:" << std::endl; - } - - auto rows = getHelpColumns(); - size_t consoleWidth = CATCH_CLARA_CONFIG_CONSOLE_WIDTH; - size_t optWidth = 0; - for (auto const &cols : rows) - optWidth = (std::max) (optWidth, cols.left.size() + 2); - - optWidth = (std::min) (optWidth, consoleWidth / 2); - - for (auto const &cols : rows) { - auto row = - TextFlow::Column(cols.left).width(optWidth).indent(2) + - TextFlow::Spacer(4) + - TextFlow::Column(cols.right).width(consoleWidth - 7 - optWidth); - os << row << std::endl; - } - } - - friend auto operator<<(std::ostream &os, Parser const &parser) -> std::ostream & { - parser.writeToStream(os); - return os; - } - - auto validate() const -> Result override { - for (auto const &opt : m_options) { - auto result = opt.validate(); - if (!result) - return result; - } - for (auto const &arg : m_args) { - auto result = arg.validate(); - if (!result) - return result; - } - return Result::ok(); - } - - using ParserBase::parse; - - auto parse(std::string const &exeName, TokenStream const &tokens) const -> InternalParseResult override { - - struct ParserInfo { - ParserBase const *parser = nullptr; - size_t count = 0; - }; - const size_t totalParsers = m_options.size() + m_args.size(); - assert(totalParsers < 512); - // ParserInfo parseInfos[totalParsers]; // <-- this is what we really want to do - ParserInfo parseInfos[512]; + struct Parser : ParserBase { - { - size_t i = 0; - for (auto const &opt : m_options) parseInfos[i++].parser = &opt; - for (auto const &arg : m_args) parseInfos[i++].parser = &arg; - } + mutable ExeName m_exeName; + std::vector m_options; + std::vector m_args; + + auto operator|=(ExeName const &exeName) -> Parser & { + m_exeName = exeName; + return *this; + } + + auto operator|=(Arg const &arg) -> Parser & { + m_args.push_back(arg); + return *this; + } + + auto operator|=(Opt const &opt) -> Parser & { + m_options.push_back(opt); + return *this; + } + + auto operator|=(Parser const &other) -> Parser & { + m_options.insert(m_options.end(), other.m_options.begin(), other.m_options.end()); + m_args.insert(m_args.end(), other.m_args.begin(), other.m_args.end()); + return *this; + } + + template + auto operator|(T const &other) const -> Parser { + return Parser(*this) |= other; + } + + // Forward deprecated interface with '+' instead of '|' + template + auto operator+=(T const &other) -> Parser & { return operator|=(other); } + + template + auto operator+(T const &other) const -> Parser { return operator|(other); } + + auto getHelpColumns() const -> std::vector { + std::vector cols; + for (auto const &o: m_options) { + auto childCols = o.getHelpColumns(); + cols.insert(cols.end(), childCols.begin(), childCols.end()); + } + return cols; + } + + void writeToStream(std::ostream &os) const { + if (!m_exeName.name().empty()) { + os << "usage:\n" << " " << m_exeName.name() << " "; + bool required = true, first = true; + for (auto const &arg: m_args) { + if (first) + first = false; + else + os << " "; + if (arg.isOptional() && required) { + os << "["; + required = false; + } + os << "<" << arg.hint() << ">"; + if (arg.cardinality() == 0) + os << " ... "; + } + if (!required) + os << "]"; + if (!m_options.empty()) + os << " options"; + os << "\n\nwhere options are:" << std::endl; + } + + auto rows = getHelpColumns(); + size_t consoleWidth = CATCH_CLARA_CONFIG_CONSOLE_WIDTH; + size_t optWidth = 0; + for (auto const &cols: rows) + optWidth = (std::max) (optWidth, cols.left.size() + 2); + + optWidth = (std::min) (optWidth, consoleWidth / 2); + + for (auto const &cols: rows) { + auto row = + TextFlow::Column(cols.left).width(optWidth).indent(2) + + TextFlow::Spacer(4) + + TextFlow::Column(cols.right).width(consoleWidth - 7 - optWidth); + os << row << std::endl; + } + } + + friend auto operator<<(std::ostream &os, Parser const &parser) -> std::ostream & { + parser.writeToStream(os); + return os; + } + + auto validate() const -> Result override { + for (auto const &opt: m_options) { + auto result = opt.validate(); + if (!result) + return result; + } + for (auto const &arg: m_args) { + auto result = arg.validate(); + if (!result) + return result; + } + return Result::ok(); + } - m_exeName.set(exeName); + using ParserBase::parse; - auto result = InternalParseResult::ok(ParseState(ParseResultType::NoMatch, tokens)); - while (result.value().remainingTokens()) { - bool tokenParsed = false; + auto + parse(std::string const &exeName, TokenStream const &tokens) const -> InternalParseResult override { - for (size_t i = 0; i < totalParsers; ++i) { - auto &parseInfo = parseInfos[i]; - if (parseInfo.parser->cardinality() == 0 || parseInfo.count < parseInfo.parser->cardinality()) { - result = parseInfo.parser->parse(exeName, result.value().remainingTokens()); - if (!result) - return result; - if (result.value().type() != ParseResultType::NoMatch) { - tokenParsed = true; - ++parseInfo.count; - break; - } - } - } + struct ParserInfo { + ParserBase const *parser = nullptr; + size_t count = 0; + }; + const size_t totalParsers = m_options.size() + m_args.size(); + assert(totalParsers < 512); + // ParserInfo parseInfos[totalParsers]; // <-- this is what we really want to do + ParserInfo parseInfos[512]; + + { + size_t i = 0; + for (auto const &opt: m_options) parseInfos[i++].parser = &opt; + for (auto const &arg: m_args) parseInfos[i++].parser = &arg; + } - if (result.value().type() == ParseResultType::ShortCircuitAll) - return result; - if (!tokenParsed) - return InternalParseResult::runtimeError("Unrecognised token: " + result.value().remainingTokens()->token); - } - // !TBD Check missing required options - return result; - } -}; + m_exeName.set(exeName); + + auto result = InternalParseResult::ok(ParseState(ParseResultType::NoMatch, tokens)); + while (result.value().remainingTokens()) { + bool tokenParsed = false; + + for (size_t i = 0; i < totalParsers; ++i) { + auto &parseInfo = parseInfos[i]; + if (parseInfo.parser->cardinality() == 0 || + parseInfo.count < parseInfo.parser->cardinality()) { + result = parseInfo.parser->parse(exeName, result.value().remainingTokens()); + if (!result) + return result; + if (result.value().type() != ParseResultType::NoMatch) { + tokenParsed = true; + ++parseInfo.count; + break; + } + } + } -template -template -auto ComposableParserImpl::operator|(T const &other) const -> Parser { - return Parser() | static_cast( *this ) | other; -} -} // namespace detail + if (result.value().type() == ParseResultType::ShortCircuitAll) + return result; + if (!tokenParsed) + return InternalParseResult::runtimeError( + "Unrecognised token: " + result.value().remainingTokens()->token); + } + // !TBD Check missing required options + return result; + } + }; + + template + template + auto ComposableParserImpl::operator|(T const &other) const -> Parser { + return Parser() | static_cast( *this ) | other; + } + } // namespace detail // A Combined parser -using detail::Parser; + using detail::Parser; // A parser for options -using detail::Opt; + using detail::Opt; // A parser for arguments -using detail::Arg; + using detail::Arg; // Wrapper for argc, argv from main() -using detail::Args; + using detail::Args; // Specifies the name of the executable -using detail::ExeName; + using detail::ExeName; // Convenience wrapper for option parser that specifies the help option -using detail::Help; + using detail::Help; // enum of result types from a parse -using detail::ParseResultType; + using detail::ParseResultType; // Result type for parser operation -using detail::ParserResult; + using detail::ParserResult; -} + } } // namespace Catch::clara // end clara.hpp @@ -9691,7 +10278,7 @@ using detail::ParserResult; // end catch_clara.h namespace Catch { -clara::Parser makeCommandLineParser(ConfigData &config); + clara::Parser makeCommandLineParser(ConfigData &config); } // end namespace Catch @@ -9701,218 +10288,219 @@ clara::Parser makeCommandLineParser(ConfigData &config); namespace Catch { -clara::Parser makeCommandLineParser(ConfigData &config) { - - using namespace clara; - - auto const setWarning = [&](std::string const &warning) { - auto warningSet = [&]() { - if (warning == "NoAssertions") - return WarnAbout::NoAssertions; - - if (warning == "NoTests") - return WarnAbout::NoTests; - - return WarnAbout::Nothing; - }(); - - if (warningSet == WarnAbout::Nothing) - return ParserResult::runtimeError("Unrecognised warning: '" + warning + "'"); - config.warnings = static_cast( config.warnings | warningSet ); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const loadTestNamesFromFile = [&](std::string const &filename) { - std::ifstream f(filename.c_str()); - if (!f.is_open()) - return ParserResult::runtimeError("Unable to load input file: '" + filename + "'"); - - std::string line; - while (std::getline(f, line)) { - line = trim(line); - if (!line.empty() && !startsWith(line, '#')) { - if (!startsWith(line, '"')) - line = '"' + line + '"'; - config.testsOrTags.push_back(line); - config.testsOrTags.emplace_back(","); - } - } - //Remove comma in the end - if (!config.testsOrTags.empty()) - config.testsOrTags.erase(config.testsOrTags.end() - 1); - - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setTestOrder = [&](std::string const &order) { - if (startsWith("declared", order)) - config.runOrder = RunTests::InDeclarationOrder; - else if (startsWith("lexical", order)) - config.runOrder = RunTests::InLexicographicalOrder; - else if (startsWith("random", order)) - config.runOrder = RunTests::InRandomOrder; - else - return clara::ParserResult::runtimeError("Unrecognised ordering: '" + order + "'"); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setRngSeed = [&](std::string const &seed) { - if (seed != "time") - return clara::detail::convertInto(seed, config.rngSeed); - config.rngSeed = static_cast( std::time(nullptr)); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setColourUsage = [&](std::string const &useColour) { - auto mode = toLower(useColour); - - if (mode == "yes") - config.useColour = UseColour::Yes; - else if (mode == "no") - config.useColour = UseColour::No; - else if (mode == "auto") - config.useColour = UseColour::Auto; - else - return ParserResult::runtimeError( - "colour mode must be one of: auto, yes or no. '" + useColour + "' not recognised"); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setWaitForKeypress = [&](std::string const &keypress) { - auto keypressLc = toLower(keypress); - if (keypressLc == "never") - config.waitForKeypress = WaitForKeypress::Never; - else if (keypressLc == "start") - config.waitForKeypress = WaitForKeypress::BeforeStart; - else if (keypressLc == "exit") - config.waitForKeypress = WaitForKeypress::BeforeExit; - else if (keypressLc == "both") - config.waitForKeypress = WaitForKeypress::BeforeStartAndExit; - else - return ParserResult::runtimeError( - "keypress argument must be one of: never, start, exit or both. '" + keypress + "' not recognised"); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setVerbosity = [&](std::string const &verbosity) { - auto lcVerbosity = toLower(verbosity); - if (lcVerbosity == "quiet") - config.verbosity = Verbosity::Quiet; - else if (lcVerbosity == "normal") - config.verbosity = Verbosity::Normal; - else if (lcVerbosity == "high") - config.verbosity = Verbosity::High; - else - return ParserResult::runtimeError("Unrecognised verbosity, '" + verbosity + "'"); - return ParserResult::ok(ParseResultType::Matched); - }; - auto const setReporter = [&](std::string const &reporter) { - IReporterRegistry::FactoryMap const &factories = getRegistryHub().getReporterRegistry().getFactories(); + clara::Parser makeCommandLineParser(ConfigData &config) { - auto lcReporter = toLower(reporter); - auto result = factories.find(lcReporter); + using namespace clara; - if (factories.end() != result) - config.reporterName = lcReporter; - else - return ParserResult::runtimeError( - "Unrecognized reporter, '" + reporter + "'. Check available with --list-reporters"); - return ParserResult::ok(ParseResultType::Matched); - }; - - auto cli - = ExeName(config.processName) - | Help(config.showHelp) - | Opt(config.listTests) - ["-l"]["--list-tests"] - ("list all/matching test cases") - | Opt(config.listTags) - ["-t"]["--list-tags"] - ("list all/matching tags") - | Opt(config.showSuccessfulTests) - ["-s"]["--success"] - ("include successful tests in output") - | Opt(config.shouldDebugBreak) - ["-b"]["--break"] - ("break into debugger on failure") - | Opt(config.noThrow) - ["-e"]["--nothrow"] - ("skip exception tests") - | Opt(config.showInvisibles) - ["-i"]["--invisibles"] - ("show invisibles (tabs, newlines)") - | Opt(config.outputFilename, "filename") - ["-o"]["--out"] - ("output filename") - | Opt(setReporter, "name") - ["-r"]["--reporter"] - ("reporter to use (defaults to console)") - | Opt(config.name, "name") - ["-n"]["--name"] - ("suite name") - | Opt([&](bool) { config.abortAfter = 1; }) - ["-a"]["--abort"] - ("abort at first failure") - | Opt([&](int x) { config.abortAfter = x; }, "no. failures") - ["-x"]["--abortx"] - ("abort after x failures") - | Opt(setWarning, "warning name") - ["-w"]["--warn"] - ("enable warnings") - | Opt([&](bool flag) { config.showDurations = flag ? ShowDurations::Always : ShowDurations::Never; }, - "yes|no") - ["-d"]["--durations"] - ("show test durations") - | Opt(config.minDuration, "seconds") - ["-D"]["--min-duration"] - ("show test durations for tests taking at least the given number of seconds") - | Opt(loadTestNamesFromFile, "filename") - ["-f"]["--input-file"] - ("load test names to run from a file") - | Opt(config.filenamesAsTags) - ["-#"]["--filenames-as-tags"] - ("adds a tag for the filename") - | Opt(config.sectionsToRun, "section name") - ["-c"]["--section"] - ("specify section to run") - | Opt(setVerbosity, "quiet|normal|high") - ["-v"]["--verbosity"] - ("set output verbosity") - | Opt(config.listTestNamesOnly) - ["--list-test-names-only"] - ("list all/matching test cases names only") - | Opt(config.listReporters) - ["--list-reporters"] - ("list all reporters") - | Opt(setTestOrder, "decl|lex|rand") - ["--order"] - ("test case order (defaults to decl)") - | Opt(setRngSeed, "'time'|number") - ["--rng-seed"] - ("set a specific seed for random numbers") - | Opt(setColourUsage, "yes|no") - ["--use-colour"] - ("should output be colourised") - | Opt(config.libIdentify) - ["--libidentify"] - ("report name and version according to libidentify standard") - | Opt(setWaitForKeypress, "never|start|exit|both") - ["--wait-for-keypress"] - ("waits for a keypress before exiting") - | Opt(config.benchmarkSamples, "samples") - ["--benchmark-samples"] - ("number of samples to collect (default: 100)") - | Opt(config.benchmarkResamples, "resamples") - ["--benchmark-resamples"] - ("number of resamples for the bootstrap (default: 100000)") - | Opt(config.benchmarkConfidenceInterval, "confidence interval") - ["--benchmark-confidence-interval"] - ("confidence interval for the bootstrap (between 0 and 1, default: 0.95)") - | Opt(config.benchmarkNoAnalysis) - ["--benchmark-no-analysis"] - ("perform only measurements; do not perform any analysis") - | Opt(config.benchmarkWarmupTime, "benchmarkWarmupTime") - ["--benchmark-warmup-time"] - ("amount of time in milliseconds spent on warming up each test (default: 100)") - | Arg(config.testsOrTags, "test name|pattern|tags") - ("which test or tests to use"); - - return cli; -} + auto const setWarning = [&](std::string const &warning) { + auto warningSet = [&]() { + if (warning == "NoAssertions") + return WarnAbout::NoAssertions; + + if (warning == "NoTests") + return WarnAbout::NoTests; + + return WarnAbout::Nothing; + }(); + + if (warningSet == WarnAbout::Nothing) + return ParserResult::runtimeError("Unrecognised warning: '" + warning + "'"); + config.warnings = static_cast( config.warnings | warningSet ); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const loadTestNamesFromFile = [&](std::string const &filename) { + std::ifstream f(filename.c_str()); + if (!f.is_open()) + return ParserResult::runtimeError("Unable to load input file: '" + filename + "'"); + + std::string line; + while (std::getline(f, line)) { + line = trim(line); + if (!line.empty() && !startsWith(line, '#')) { + if (!startsWith(line, '"')) + line = '"' + line + '"'; + config.testsOrTags.push_back(line); + config.testsOrTags.emplace_back(","); + } + } + //Remove comma in the end + if (!config.testsOrTags.empty()) + config.testsOrTags.erase(config.testsOrTags.end() - 1); + + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setTestOrder = [&](std::string const &order) { + if (startsWith("declared", order)) + config.runOrder = RunTests::InDeclarationOrder; + else if (startsWith("lexical", order)) + config.runOrder = RunTests::InLexicographicalOrder; + else if (startsWith("random", order)) + config.runOrder = RunTests::InRandomOrder; + else + return clara::ParserResult::runtimeError("Unrecognised ordering: '" + order + "'"); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setRngSeed = [&](std::string const &seed) { + if (seed != "time") + return clara::detail::convertInto(seed, config.rngSeed); + config.rngSeed = static_cast( std::time(nullptr)); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setColourUsage = [&](std::string const &useColour) { + auto mode = toLower(useColour); + + if (mode == "yes") + config.useColour = UseColour::Yes; + else if (mode == "no") + config.useColour = UseColour::No; + else if (mode == "auto") + config.useColour = UseColour::Auto; + else + return ParserResult::runtimeError( + "colour mode must be one of: auto, yes or no. '" + useColour + "' not recognised"); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setWaitForKeypress = [&](std::string const &keypress) { + auto keypressLc = toLower(keypress); + if (keypressLc == "never") + config.waitForKeypress = WaitForKeypress::Never; + else if (keypressLc == "start") + config.waitForKeypress = WaitForKeypress::BeforeStart; + else if (keypressLc == "exit") + config.waitForKeypress = WaitForKeypress::BeforeExit; + else if (keypressLc == "both") + config.waitForKeypress = WaitForKeypress::BeforeStartAndExit; + else + return ParserResult::runtimeError( + "keypress argument must be one of: never, start, exit or both. '" + keypress + + "' not recognised"); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setVerbosity = [&](std::string const &verbosity) { + auto lcVerbosity = toLower(verbosity); + if (lcVerbosity == "quiet") + config.verbosity = Verbosity::Quiet; + else if (lcVerbosity == "normal") + config.verbosity = Verbosity::Normal; + else if (lcVerbosity == "high") + config.verbosity = Verbosity::High; + else + return ParserResult::runtimeError("Unrecognised verbosity, '" + verbosity + "'"); + return ParserResult::ok(ParseResultType::Matched); + }; + auto const setReporter = [&](std::string const &reporter) { + IReporterRegistry::FactoryMap const &factories = getRegistryHub().getReporterRegistry().getFactories(); + + auto lcReporter = toLower(reporter); + auto result = factories.find(lcReporter); + + if (factories.end() != result) + config.reporterName = lcReporter; + else + return ParserResult::runtimeError( + "Unrecognized reporter, '" + reporter + "'. Check available with --list-reporters"); + return ParserResult::ok(ParseResultType::Matched); + }; + + auto cli + = ExeName(config.processName) + | Help(config.showHelp) + | Opt(config.listTests) + ["-l"]["--list-tests"] + ("list all/matching test cases") + | Opt(config.listTags) + ["-t"]["--list-tags"] + ("list all/matching tags") + | Opt(config.showSuccessfulTests) + ["-s"]["--success"] + ("include successful tests in output") + | Opt(config.shouldDebugBreak) + ["-b"]["--break"] + ("break into debugger on failure") + | Opt(config.noThrow) + ["-e"]["--nothrow"] + ("skip exception tests") + | Opt(config.showInvisibles) + ["-i"]["--invisibles"] + ("show invisibles (tabs, newlines)") + | Opt(config.outputFilename, "filename") + ["-o"]["--out"] + ("output filename") + | Opt(setReporter, "name") + ["-r"]["--reporter"] + ("reporter to use (defaults to console)") + | Opt(config.name, "name") + ["-n"]["--name"] + ("suite name") + | Opt([&](bool) { config.abortAfter = 1; }) + ["-a"]["--abort"] + ("abort at first failure") + | Opt([&](int x) { config.abortAfter = x; }, "no. failures") + ["-x"]["--abortx"] + ("abort after x failures") + | Opt(setWarning, "warning name") + ["-w"]["--warn"] + ("enable warnings") + | Opt([&](bool flag) { config.showDurations = flag ? ShowDurations::Always : ShowDurations::Never; }, + "yes|no") + ["-d"]["--durations"] + ("show test durations") + | Opt(config.minDuration, "seconds") + ["-D"]["--min-duration"] + ("show test durations for tests taking at least the given number of seconds") + | Opt(loadTestNamesFromFile, "filename") + ["-f"]["--input-file"] + ("load test names to run from a file") + | Opt(config.filenamesAsTags) + ["-#"]["--filenames-as-tags"] + ("adds a tag for the filename") + | Opt(config.sectionsToRun, "section name") + ["-c"]["--section"] + ("specify section to run") + | Opt(setVerbosity, "quiet|normal|high") + ["-v"]["--verbosity"] + ("set output verbosity") + | Opt(config.listTestNamesOnly) + ["--list-test-names-only"] + ("list all/matching test cases names only") + | Opt(config.listReporters) + ["--list-reporters"] + ("list all reporters") + | Opt(setTestOrder, "decl|lex|rand") + ["--order"] + ("test case order (defaults to decl)") + | Opt(setRngSeed, "'time'|number") + ["--rng-seed"] + ("set a specific seed for random numbers") + | Opt(setColourUsage, "yes|no") + ["--use-colour"] + ("should output be colourised") + | Opt(config.libIdentify) + ["--libidentify"] + ("report name and version according to libidentify standard") + | Opt(setWaitForKeypress, "never|start|exit|both") + ["--wait-for-keypress"] + ("waits for a keypress before exiting") + | Opt(config.benchmarkSamples, "samples") + ["--benchmark-samples"] + ("number of samples to collect (default: 100)") + | Opt(config.benchmarkResamples, "resamples") + ["--benchmark-resamples"] + ("number of resamples for the bootstrap (default: 100000)") + | Opt(config.benchmarkConfidenceInterval, "confidence interval") + ["--benchmark-confidence-interval"] + ("confidence interval for the bootstrap (between 0 and 1, default: 0.95)") + | Opt(config.benchmarkNoAnalysis) + ["--benchmark-no-analysis"] + ("perform only measurements; do not perform any analysis") + | Opt(config.benchmarkWarmupTime, "benchmarkWarmupTime") + ["--benchmark-warmup-time"] + ("amount of time in milliseconds spent on warming up each test (default: 100)") + | Arg(config.testsOrTags, "test name|pattern|tags") + ("which test or tests to use"); + + return cli; + } } // end namespace Catch // end catch_commandline.cpp @@ -9923,30 +10511,32 @@ clara::Parser makeCommandLineParser(ConfigData &config) { namespace Catch { -bool SourceLineInfo::operator==(SourceLineInfo const &other) const noexcept { - return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); -} -bool SourceLineInfo::operator<(SourceLineInfo const &other) const noexcept { - // We can assume that the same file will usually have the same pointer. - // Thus, if the pointers are the same, there is no point in calling the strcmp - return line < other.line || (line == other.line && file != other.file && (std::strcmp(file, other.file) < 0)); -} + bool SourceLineInfo::operator==(SourceLineInfo const &other) const noexcept { + return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0); + } + + bool SourceLineInfo::operator<(SourceLineInfo const &other) const noexcept { + // We can assume that the same file will usually have the same pointer. + // Thus, if the pointers are the same, there is no point in calling the strcmp + return line < other.line || (line == other.line && file != other.file && (std::strcmp(file, other.file) < 0)); + } -std::ostream &operator<<(std::ostream &os, SourceLineInfo const &info) { + std::ostream &operator<<(std::ostream &os, SourceLineInfo const &info) { #ifndef __GNUG__ - os << info.file << '(' << info.line << ')'; + os << info.file << '(' << info.line << ')'; #else - os << info.file << ':' << info.line; + os << info.file << ':' << info.line; #endif - return os; -} + return os; + } -std::string StreamEndStop::operator+() const { - return std::string(); -} + std::string StreamEndStop::operator+() const { + return std::string(); + } + + NonCopyable::NonCopyable() = default; -NonCopyable::NonCopyable() = default; -NonCopyable::~NonCopyable() = default; + NonCopyable::~NonCopyable() = default; } // end catch_common.cpp @@ -9954,76 +10544,102 @@ NonCopyable::~NonCopyable() = default; namespace Catch { -Config::Config(ConfigData const &data) - : m_data(data), - m_stream(openStream()) { - // We need to trim filter specs to avoid trouble with superfluous - // whitespace (esp. important for bdd macros, as those are manually - // aligned with whitespace). - - for (auto &elem : m_data.testsOrTags) { - elem = trim(elem); - } - for (auto &elem : m_data.sectionsToRun) { - elem = trim(elem); - } - - TestSpecParser parser(ITagAliasRegistry::get()); - if (!m_data.testsOrTags.empty()) { - m_hasTestFilters = true; - for (auto const &testOrTags : m_data.testsOrTags) { - parser.parse(testOrTags); - } - } - m_testSpec = parser.testSpec(); -} + Config::Config(ConfigData const &data) + : m_data(data), + m_stream(openStream()) { + // We need to trim filter specs to avoid trouble with superfluous + // whitespace (esp. important for bdd macros, as those are manually + // aligned with whitespace). -std::string const &Config::getFilename() const { - return m_data.outputFilename; -} + for (auto &elem: m_data.testsOrTags) { + elem = trim(elem); + } + for (auto &elem: m_data.sectionsToRun) { + elem = trim(elem); + } + + TestSpecParser parser(ITagAliasRegistry::get()); + if (!m_data.testsOrTags.empty()) { + m_hasTestFilters = true; + for (auto const &testOrTags: m_data.testsOrTags) { + parser.parse(testOrTags); + } + } + m_testSpec = parser.testSpec(); + } + + std::string const &Config::getFilename() const { + return m_data.outputFilename; + } + + bool Config::listTests() const { return m_data.listTests; } + + bool Config::listTestNamesOnly() const { return m_data.listTestNamesOnly; } + + bool Config::listTags() const { return m_data.listTags; } + + bool Config::listReporters() const { return m_data.listReporters; } + + std::string Config::getProcessName() const { return m_data.processName; } + + std::string const &Config::getReporterName() const { return m_data.reporterName; } -bool Config::listTests() const { return m_data.listTests; } -bool Config::listTestNamesOnly() const { return m_data.listTestNamesOnly; } -bool Config::listTags() const { return m_data.listTags; } -bool Config::listReporters() const { return m_data.listReporters; } + std::vector const &Config::getTestsOrTags() const { return m_data.testsOrTags; } -std::string Config::getProcessName() const { return m_data.processName; } -std::string const &Config::getReporterName() const { return m_data.reporterName; } + std::vector const &Config::getSectionsToRun() const { return m_data.sectionsToRun; } -std::vector const &Config::getTestsOrTags() const { return m_data.testsOrTags; } -std::vector const &Config::getSectionsToRun() const { return m_data.sectionsToRun; } + TestSpec const &Config::testSpec() const { return m_testSpec; } -TestSpec const &Config::testSpec() const { return m_testSpec; } -bool Config::hasTestFilters() const { return m_hasTestFilters; } + bool Config::hasTestFilters() const { return m_hasTestFilters; } -bool Config::showHelp() const { return m_data.showHelp; } + bool Config::showHelp() const { return m_data.showHelp; } // IConfig interface -bool Config::allowThrows() const { return !m_data.noThrow; } -std::ostream &Config::stream() const { return m_stream->stream(); } -std::string Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; } -bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; } -bool Config::warnAboutMissingAssertions() const { return !!(m_data.warnings & WarnAbout::NoAssertions); } -bool Config::warnAboutNoTests() const { return !!(m_data.warnings & WarnAbout::NoTests); } -ShowDurations::OrNot Config::showDurations() const { return m_data.showDurations; } -double Config::minDuration() const { return m_data.minDuration; } -RunTests::InWhatOrder Config::runOrder() const { return m_data.runOrder; } -unsigned int Config::rngSeed() const { return m_data.rngSeed; } -UseColour::YesOrNo Config::useColour() const { return m_data.useColour; } -bool Config::shouldDebugBreak() const { return m_data.shouldDebugBreak; } -int Config::abortAfter() const { return m_data.abortAfter; } -bool Config::showInvisibles() const { return m_data.showInvisibles; } -Verbosity Config::verbosity() const { return m_data.verbosity; } - -bool Config::benchmarkNoAnalysis() const { return m_data.benchmarkNoAnalysis; } -int Config::benchmarkSamples() const { return m_data.benchmarkSamples; } -double Config::benchmarkConfidenceInterval() const { return m_data.benchmarkConfidenceInterval; } -unsigned int Config::benchmarkResamples() const { return m_data.benchmarkResamples; } -std::chrono::milliseconds Config::benchmarkWarmupTime() const { return std::chrono::milliseconds(m_data.benchmarkWarmupTime); } - -IStream const *Config::openStream() { - return Catch::makeStream(m_data.outputFilename); -} + bool Config::allowThrows() const { return !m_data.noThrow; } + + std::ostream &Config::stream() const { return m_stream->stream(); } + + std::string Config::name() const { return m_data.name.empty() ? m_data.processName : m_data.name; } + + bool Config::includeSuccessfulResults() const { return m_data.showSuccessfulTests; } + + bool Config::warnAboutMissingAssertions() const { return !!(m_data.warnings & WarnAbout::NoAssertions); } + + bool Config::warnAboutNoTests() const { return !!(m_data.warnings & WarnAbout::NoTests); } + + ShowDurations::OrNot Config::showDurations() const { return m_data.showDurations; } + + double Config::minDuration() const { return m_data.minDuration; } + + RunTests::InWhatOrder Config::runOrder() const { return m_data.runOrder; } + + unsigned int Config::rngSeed() const { return m_data.rngSeed; } + + UseColour::YesOrNo Config::useColour() const { return m_data.useColour; } + + bool Config::shouldDebugBreak() const { return m_data.shouldDebugBreak; } + + int Config::abortAfter() const { return m_data.abortAfter; } + + bool Config::showInvisibles() const { return m_data.showInvisibles; } + + Verbosity Config::verbosity() const { return m_data.verbosity; } + + bool Config::benchmarkNoAnalysis() const { return m_data.benchmarkNoAnalysis; } + + int Config::benchmarkSamples() const { return m_data.benchmarkSamples; } + + double Config::benchmarkConfidenceInterval() const { return m_data.benchmarkConfidenceInterval; } + + unsigned int Config::benchmarkResamples() const { return m_data.benchmarkResamples; } + + std::chrono::milliseconds Config::benchmarkWarmupTime() const { + return std::chrono::milliseconds(m_data.benchmarkWarmupTime); + } + + IStream const *Config::openStream() { + return Catch::makeStream(m_data.outputFilename); + } } // end namespace Catch // end catch_config.cpp @@ -10038,13 +10654,15 @@ IStream const *Config::openStream() { namespace Catch { -class ErrnoGuard { - public: - ErrnoGuard(); - ~ErrnoGuard(); - private: - int m_oldErrno; -}; + class ErrnoGuard { + public: + ErrnoGuard(); + + ~ErrnoGuard(); + + private: + int m_oldErrno; + }; } @@ -10082,23 +10700,24 @@ class ErrnoGuard { #include namespace Catch { -namespace { + namespace { -struct IColourImpl { - virtual ~IColourImpl() = default; - virtual void use(Colour::Code _colourCode) = 0; -}; + struct IColourImpl { + virtual ~IColourImpl() = default; + + virtual void use(Colour::Code _colourCode) = 0; + }; -struct NoColourImpl : IColourImpl { - void use(Colour::Code) override {} + struct NoColourImpl : IColourImpl { + void use(Colour::Code) override {} - static IColourImpl *instance() { - static NoColourImpl s_instance; - return &s_instance; - } -}; + static IColourImpl *instance() { + static NoColourImpl s_instance; + return &s_instance; + } + }; -} // anon namespace + } // anon namespace } // namespace Catch #if !defined( CATCH_CONFIG_COLOUR_NONE ) && !defined( CATCH_CONFIG_COLOUR_WINDOWS ) && !defined( CATCH_CONFIG_COLOUR_ANSI ) @@ -10179,75 +10798,91 @@ namespace { #include namespace Catch { -namespace { + namespace { // use POSIX/ ANSI console terminal codes // Thanks to Adam Strzelecki for original contribution // (http://github.com/nanoant) // https://github.com/philsquared/Catch/pull/131 -class PosixColourImpl : public IColourImpl { - public: - void use(Colour::Code _colourCode) override { - switch (_colourCode) { - case Colour::None: - case Colour::White: return setColour("[0m"); - case Colour::Red: return setColour("[0;31m"); - case Colour::Green: return setColour("[0;32m"); - case Colour::Blue: return setColour("[0;34m"); - case Colour::Cyan: return setColour("[0;36m"); - case Colour::Yellow: return setColour("[0;33m"); - case Colour::Grey: return setColour("[1;30m"); - - case Colour::LightGrey: return setColour("[0;37m"); - case Colour::BrightRed: return setColour("[1;31m"); - case Colour::BrightGreen: return setColour("[1;32m"); - case Colour::BrightWhite: return setColour("[1;37m"); - case Colour::BrightYellow: return setColour("[1;33m"); - - case Colour::Bright: CATCH_INTERNAL_ERROR("not a colour"); - default: CATCH_INTERNAL_ERROR("Unknown colour requested"); - } - } - static IColourImpl *instance() { - static PosixColourImpl s_instance; - return &s_instance; - } - - private: - void setColour(const char *_escapeCode) { - getCurrentContext().getConfig()->stream() - << '\033' << _escapeCode; - } -}; + class PosixColourImpl : public IColourImpl { + public: + void use(Colour::Code _colourCode) override { + switch (_colourCode) { + case Colour::None: + case Colour::White: + return setColour("[0m"); + case Colour::Red: + return setColour("[0;31m"); + case Colour::Green: + return setColour("[0;32m"); + case Colour::Blue: + return setColour("[0;34m"); + case Colour::Cyan: + return setColour("[0;36m"); + case Colour::Yellow: + return setColour("[0;33m"); + case Colour::Grey: + return setColour("[1;30m"); + + case Colour::LightGrey: + return setColour("[0;37m"); + case Colour::BrightRed: + return setColour("[1;31m"); + case Colour::BrightGreen: + return setColour("[1;32m"); + case Colour::BrightWhite: + return setColour("[1;37m"); + case Colour::BrightYellow: + return setColour("[1;33m"); + + case Colour::Bright: + CATCH_INTERNAL_ERROR("not a colour"); + default: + CATCH_INTERNAL_ERROR("Unknown colour requested"); + } + } + + static IColourImpl *instance() { + static PosixColourImpl s_instance; + return &s_instance; + } + + private: + void setColour(const char *_escapeCode) { + getCurrentContext().getConfig()->stream() + << '\033' << _escapeCode; + } + }; -bool useColourOnPlatform() { - return + bool useColourOnPlatform() { + return #if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE) - !isDebuggerActive() && + !isDebuggerActive() && #endif #if !(defined(__DJGPP__) && defined(__STRICT_ANSI__)) - isatty(STDOUT_FILENO) + isatty(STDOUT_FILENO) #else - false + false #endif - ; -} -IColourImpl *platformColourInstance() { - ErrnoGuard guard; - IConfigPtr config = getCurrentContext().getConfig(); - UseColour::YesOrNo colourMode = config - ? config->useColour() - : UseColour::Auto; - if (colourMode == UseColour::Auto) - colourMode = useColourOnPlatform() - ? UseColour::Yes - : UseColour::No; - return colourMode == UseColour::Yes - ? PosixColourImpl::instance() - : NoColourImpl::instance(); -} + ; + } -} // end anon namespace + IColourImpl *platformColourInstance() { + ErrnoGuard guard; + IConfigPtr config = getCurrentContext().getConfig(); + UseColour::YesOrNo colourMode = config + ? config->useColour() + : UseColour::Auto; + if (colourMode == UseColour::Auto) + colourMode = useColourOnPlatform() + ? UseColour::Yes + : UseColour::No; + return colourMode == UseColour::Yes + ? PosixColourImpl::instance() + : NoColourImpl::instance(); + } + + } // end anon namespace } // end namespace Catch #else // not Windows or ANSI /////////////////////////////////////////////// @@ -10262,33 +10897,35 @@ IColourImpl *platformColourInstance() { namespace Catch { -Colour::Colour(Code _colourCode) { use(_colourCode); } -Colour::Colour(Colour &&other) noexcept { - m_moved = other.m_moved; - other.m_moved = true; -} -Colour &Colour::operator=(Colour &&other) noexcept { - m_moved = other.m_moved; - other.m_moved = true; - return *this; -} + Colour::Colour(Code _colourCode) { use(_colourCode); } -Colour::~Colour() { if (!m_moved) use(None); } - -void Colour::use(Code _colourCode) { - static IColourImpl *impl = platformColourInstance(); - // Strictly speaking, this cannot possibly happen. - // However, under some conditions it does happen (see #1626), - // and this change is small enough that we can let practicality - // triumph over purity in this case. - if (impl != nullptr) { - impl->use(_colourCode); - } -} + Colour::Colour(Colour &&other) noexcept { + m_moved = other.m_moved; + other.m_moved = true; + } -std::ostream &operator<<(std::ostream &os, Colour const &) { - return os; -} + Colour &Colour::operator=(Colour &&other) noexcept { + m_moved = other.m_moved; + other.m_moved = true; + return *this; + } + + Colour::~Colour() { if (!m_moved) use(None); } + + void Colour::use(Code _colourCode) { + static IColourImpl *impl = platformColourInstance(); + // Strictly speaking, this cannot possibly happen. + // However, under some conditions it does happen (see #1626), + // and this change is small enough that we can let practicality + // triumph over purity in this case. + if (impl != nullptr) { + impl->use(_colourCode); + } + } + + std::ostream &operator<<(std::ostream &os, Colour const &) { + return os; + } } // end namespace Catch @@ -10301,59 +10938,65 @@ std::ostream &operator<<(std::ostream &os, Colour const &) { namespace Catch { -class Context : public IMutableContext, NonCopyable { - - public: // IContext - IResultCapture *getResultCapture() override { - return m_resultCapture; - } - IRunner *getRunner() override { - return m_runner; - } - - IConfigPtr const &getConfig() const override { - return m_config; - } - - ~Context() override; - - public: // IMutableContext - void setResultCapture(IResultCapture *resultCapture) override { - m_resultCapture = resultCapture; - } - void setRunner(IRunner *runner) override { - m_runner = runner; - } - void setConfig(IConfigPtr const &config) override { - m_config = config; - } - - friend IMutableContext &getCurrentMutableContext(); - - private: - IConfigPtr m_config; - IRunner *m_runner = nullptr; - IResultCapture *m_resultCapture = nullptr; -}; + class Context : public IMutableContext, NonCopyable { -IMutableContext *IMutableContext::currentContext = nullptr; + public: // IContext + IResultCapture *getResultCapture() override { + return m_resultCapture; + } -void IMutableContext::createContext() { - currentContext = new Context(); -} + IRunner *getRunner() override { + return m_runner; + } -void cleanUpContext() { - delete IMutableContext::currentContext; - IMutableContext::currentContext = nullptr; -} -IContext::~IContext() = default; -IMutableContext::~IMutableContext() = default; -Context::~Context() = default; + IConfigPtr const &getConfig() const override { + return m_config; + } -SimplePcg32 &rng() { - static SimplePcg32 s_rng; - return s_rng; -} + ~Context() override; + + public: // IMutableContext + void setResultCapture(IResultCapture *resultCapture) override { + m_resultCapture = resultCapture; + } + + void setRunner(IRunner *runner) override { + m_runner = runner; + } + + void setConfig(IConfigPtr const &config) override { + m_config = config; + } + + friend IMutableContext &getCurrentMutableContext(); + + private: + IConfigPtr m_config; + IRunner *m_runner = nullptr; + IResultCapture *m_resultCapture = nullptr; + }; + + IMutableContext *IMutableContext::currentContext = nullptr; + + void IMutableContext::createContext() { + currentContext = new Context(); + } + + void cleanUpContext() { + delete IMutableContext::currentContext; + IMutableContext::currentContext = nullptr; + } + + IContext::~IContext() = default; + + IMutableContext::~IMutableContext() = default; + + Context::~Context() = default; + + SimplePcg32 &rng() { + static SimplePcg32 s_rng; + return s_rng; + } } // end catch_context.cpp @@ -10364,7 +11007,7 @@ SimplePcg32 &rng() { #include namespace Catch { -void writeToDebugConsole(std::string const &text); + void writeToDebugConsole(std::string const &text); } // end catch_debug_console.h @@ -10388,10 +11031,10 @@ void writeToDebugConsole(std::string const &text); #else namespace Catch { -void writeToDebugConsole(std::string const &text) { - // !TBD: Need a version for Mac/ XCode and other IDEs - Catch::cout() << text; -} + void writeToDebugConsole(std::string const &text) { + // !TBD: Need a version for Mac/ XCode and other IDEs + Catch::cout() << text; + } } #endif // Platform @@ -10458,6 +11101,7 @@ void writeToDebugConsole(std::string const &text) { } // namespace Catch #elif defined(CATCH_PLATFORM_LINUX) + #include #include @@ -10469,23 +11113,23 @@ namespace Catch { // "debugger" (which doesn't need to be gdb, of course, it could also // be strace, for example) in /proc/$PID/status, so just get it from // there instead. -bool isDebuggerActive() { - // Libstdc++ has a bug, where std::ifstream sets errno to 0 - // This way our users can properly assert over errno values - ErrnoGuard guard; - std::ifstream in("/proc/self/status"); - for (std::string line; std::getline(in, line);) { - static const int PREFIX_LEN = 11; - if (line.compare(0, PREFIX_LEN, "TracerPid:\t") == 0) { - // We're traced if the PID is not 0 and no other PID starts - // with 0 digit, so it's enough to check for just a single - // character. - return line.length() > PREFIX_LEN && line[PREFIX_LEN] != '0'; - } - } - - return false; -} + bool isDebuggerActive() { + // Libstdc++ has a bug, where std::ifstream sets errno to 0 + // This way our users can properly assert over errno values + ErrnoGuard guard; + std::ifstream in("/proc/self/status"); + for (std::string line; std::getline(in, line);) { + static const int PREFIX_LEN = 11; + if (line.compare(0, PREFIX_LEN, "TracerPid:\t") == 0) { + // We're traced if the PID is not 0 and no other PID starts + // with 0 digit, so it's enough to check for just a single + // character. + return line.length() > PREFIX_LEN && line[PREFIX_LEN] != '0'; + } + } + + return false; + } } // namespace Catch #elif defined(_MSC_VER) extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent(); @@ -10511,16 +11155,16 @@ bool isDebuggerActive() { namespace Catch { -ITransientExpression::~ITransientExpression() = default; + ITransientExpression::~ITransientExpression() = default; -void formatReconstructedExpression(std::ostream &os, std::string const &lhs, StringRef op, std::string const &rhs) { - if (lhs.size() + rhs.size() < 40 && - lhs.find('\n') == std::string::npos && - rhs.find('\n') == std::string::npos) - os << lhs << " " << op << " " << rhs; - else - os << lhs << "\n" << op << "\n" << rhs; -} + void formatReconstructedExpression(std::ostream &os, std::string const &lhs, StringRef op, std::string const &rhs) { + if (lhs.size() + rhs.size() < 40 && + lhs.find('\n') == std::string::npos && + rhs.find('\n') == std::string::npos) + os << lhs << " " << op << " " << rhs; + else + os << lhs << "\n" << op << "\n" << rhs; + } } // end catch_decomposer.cpp // start catch_enforce.cpp @@ -10529,7 +11173,7 @@ void formatReconstructedExpression(std::ostream &os, std::string const &lhs, Str namespace Catch { #if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) && !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER) - [[noreturn]] + [[noreturn]] void throw_exception(std::exception const& e) { Catch::cerr() << "Catch will terminate because it needed to throw an exception.\n" << "The message was: " << e.what() << '\n'; @@ -10537,20 +11181,20 @@ namespace Catch { } #endif -[[noreturn]] -void throw_logic_error(std::string const &msg) { - throw_exception(std::logic_error(msg)); -} + [[noreturn]] + void throw_logic_error(std::string const &msg) { + throw_exception(std::logic_error(msg)); + } -[[noreturn]] -void throw_domain_error(std::string const &msg) { - throw_exception(std::domain_error(msg)); -} + [[noreturn]] + void throw_domain_error(std::string const &msg) { + throw_exception(std::domain_error(msg)); + } -[[noreturn]] -void throw_runtime_error(std::string const &msg) { - throw_exception(std::runtime_error(msg)); -} + [[noreturn]] + void throw_runtime_error(std::string const &msg) { + throw_exception(std::runtime_error(msg)); + } } // namespace Catch; // end catch_enforce.cpp @@ -10562,20 +11206,22 @@ void throw_runtime_error(std::string const &msg) { namespace Catch { -namespace Detail { + namespace Detail { -std::unique_ptr makeEnumInfo(StringRef enumName, StringRef allValueNames, std::vector const &values); + std::unique_ptr + makeEnumInfo(StringRef enumName, StringRef allValueNames, std::vector const &values); -class EnumValuesRegistry : public IMutableEnumValuesRegistry { + class EnumValuesRegistry : public IMutableEnumValuesRegistry { - std::vector> m_enumInfos; + std::vector> m_enumInfos; - EnumInfo const ®isterEnum(StringRef enumName, StringRef allEnums, std::vector const &values) override; -}; + EnumInfo const & + registerEnum(StringRef enumName, StringRef allEnums, std::vector const &values) override; + }; -std::vector parseEnums(StringRef enums); + std::vector parseEnums(StringRef enums); -} // Detail + } // Detail } // Catch @@ -10586,65 +11232,66 @@ std::vector parseEnums(StringRef enums); namespace Catch { -IMutableEnumValuesRegistry::~IMutableEnumValuesRegistry() {} + IMutableEnumValuesRegistry::~IMutableEnumValuesRegistry() {} -namespace Detail { + namespace Detail { -namespace { + namespace { // Extracts the actual name part of an enum instance // In other words, it returns the Blue part of Bikeshed::Colour::Blue -StringRef extractInstanceName(StringRef enumInstance) { - // Find last occurrence of ":" - size_t name_start = enumInstance.size(); - while (name_start > 0 && enumInstance[name_start - 1] != ':') { - --name_start; - } - return enumInstance.substr(name_start, enumInstance.size() - name_start); -} -} + StringRef extractInstanceName(StringRef enumInstance) { + // Find last occurrence of ":" + size_t name_start = enumInstance.size(); + while (name_start > 0 && enumInstance[name_start - 1] != ':') { + --name_start; + } + return enumInstance.substr(name_start, enumInstance.size() - name_start); + } + } -std::vector parseEnums(StringRef enums) { - auto enumValues = splitStringRef(enums, ','); - std::vector parsed; - parsed.reserve(enumValues.size()); - for (auto const &enumValue : enumValues) { - parsed.push_back(trim(extractInstanceName(enumValue))); - } - return parsed; -} + std::vector parseEnums(StringRef enums) { + auto enumValues = splitStringRef(enums, ','); + std::vector parsed; + parsed.reserve(enumValues.size()); + for (auto const &enumValue: enumValues) { + parsed.push_back(trim(extractInstanceName(enumValue))); + } + return parsed; + } -EnumInfo::~EnumInfo() {} + EnumInfo::~EnumInfo() {} -StringRef EnumInfo::lookup(int value) const { - for (auto const &valueToName : m_values) { - if (valueToName.first == value) - return valueToName.second; - } - return "{** unexpected enum value **}"_sr; -} + StringRef EnumInfo::lookup(int value) const { + for (auto const &valueToName: m_values) { + if (valueToName.first == value) + return valueToName.second; + } + return "{** unexpected enum value **}"_sr; + } -std::unique_ptr makeEnumInfo(StringRef enumName, StringRef allValueNames, std::vector const &values) { - std::unique_ptr enumInfo(new EnumInfo); - enumInfo->m_name = enumName; - enumInfo->m_values.reserve(values.size()); + std::unique_ptr + makeEnumInfo(StringRef enumName, StringRef allValueNames, std::vector const &values) { + std::unique_ptr enumInfo(new EnumInfo); + enumInfo->m_name = enumName; + enumInfo->m_values.reserve(values.size()); - const auto valueNames = Catch::Detail::parseEnums(allValueNames); - assert(valueNames.size() == values.size()); - std::size_t i = 0; - for (auto value : values) - enumInfo->m_values.emplace_back(value, valueNames[i++]); + const auto valueNames = Catch::Detail::parseEnums(allValueNames); + assert(valueNames.size() == values.size()); + std::size_t i = 0; + for (auto value: values) + enumInfo->m_values.emplace_back(value, valueNames[i++]); - return enumInfo; -} + return enumInfo; + } -EnumInfo const &EnumValuesRegistry::registerEnum(StringRef enumName, - StringRef allValueNames, - std::vector const &values) { - m_enumInfos.push_back(makeEnumInfo(enumName, allValueNames, values)); - return *m_enumInfos.back(); -} + EnumInfo const &EnumValuesRegistry::registerEnum(StringRef enumName, + StringRef allValueNames, + std::vector const &values) { + m_enumInfos.push_back(makeEnumInfo(enumName, allValueNames, values)); + return *m_enumInfos.back(); + } -} // Detail + } // Detail } // Catch // end catch_enum_values_registry.cpp @@ -10653,8 +11300,9 @@ EnumInfo const &EnumValuesRegistry::registerEnum(StringRef enumName, #include namespace Catch { -ErrnoGuard::ErrnoGuard() : m_oldErrno(errno) {} -ErrnoGuard::~ErrnoGuard() { errno = m_oldErrno; } + ErrnoGuard::ErrnoGuard() : m_oldErrno(errno) {} + + ErrnoGuard::~ErrnoGuard() { errno = m_oldErrno; } } // end catch_errno_guard.cpp // start catch_exception_translator_registry.cpp @@ -10667,16 +11315,19 @@ ErrnoGuard::~ErrnoGuard() { errno = m_oldErrno; } namespace Catch { -class ExceptionTranslatorRegistry : public IExceptionTranslatorRegistry { - public: - ~ExceptionTranslatorRegistry(); - virtual void registerTranslator(const IExceptionTranslator *translator); - std::string translateActiveException() const override; - std::string tryTranslators() const; + class ExceptionTranslatorRegistry : public IExceptionTranslatorRegistry { + public: + ~ExceptionTranslatorRegistry(); - private: - std::vector> m_translators; -}; + virtual void registerTranslator(const IExceptionTranslator *translator); + + std::string translateActiveException() const override; + + std::string tryTranslators() const; + + private: + std::vector> m_translators; + }; } // end catch_exception_translator_registry.h @@ -10686,18 +11337,19 @@ class ExceptionTranslatorRegistry : public IExceptionTranslatorRegistry { namespace Catch { -ExceptionTranslatorRegistry::~ExceptionTranslatorRegistry() { -} + ExceptionTranslatorRegistry::~ExceptionTranslatorRegistry() { + } -void ExceptionTranslatorRegistry::registerTranslator(const IExceptionTranslator *translator) { - m_translators.push_back(std::unique_ptr(translator)); -} + void ExceptionTranslatorRegistry::registerTranslator(const IExceptionTranslator *translator) { + m_translators.push_back(std::unique_ptr(translator)); + } #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) -std::string ExceptionTranslatorRegistry::translateActiveException() const { - try { + + std::string ExceptionTranslatorRegistry::translateActiveException() const { + try { #ifdef __OBJC__ - // In Objective-C try objective-c exceptions first + // In Objective-C try objective-c exceptions first @try { return tryTranslators(); } @@ -10705,47 +11357,47 @@ std::string ExceptionTranslatorRegistry::translateActiveException() const { return Catch::Detail::stringify( [exception description] ); } #else - // Compiling a mixed mode project with MSVC means that CLR - // exceptions will be caught in (...) as well. However, these - // do not fill-in std::current_exception and thus lead to crash - // when attempting rethrow. - // /EHa switch also causes structured exceptions to be caught - // here, but they fill-in current_exception properly, so - // at worst the output should be a little weird, instead of - // causing a crash. - if (std::current_exception() == nullptr) { - return "Non C++ exception. Possibly a CLR exception."; - } - return tryTranslators(); + // Compiling a mixed mode project with MSVC means that CLR + // exceptions will be caught in (...) as well. However, these + // do not fill-in std::current_exception and thus lead to crash + // when attempting rethrow. + // /EHa switch also causes structured exceptions to be caught + // here, but they fill-in current_exception properly, so + // at worst the output should be a little weird, instead of + // causing a crash. + if (std::current_exception() == nullptr) { + return "Non C++ exception. Possibly a CLR exception."; + } + return tryTranslators(); #endif - } - catch (TestFailureException &) { - std::rethrow_exception(std::current_exception()); - } - catch (std::exception &ex) { - return ex.what(); - } - catch (std::string &msg) { - return msg; - } - catch (const char *msg) { - return msg; - } - catch (...) { - return "Unknown exception"; - } -} + } + catch (TestFailureException &) { + std::rethrow_exception(std::current_exception()); + } + catch (std::exception &ex) { + return ex.what(); + } + catch (std::string &msg) { + return msg; + } + catch (const char *msg) { + return msg; + } + catch (...) { + return "Unknown exception"; + } + } -std::string ExceptionTranslatorRegistry::tryTranslators() const { - if (m_translators.empty()) { - std::rethrow_exception(std::current_exception()); - } else { - return m_translators[0]->translate(m_translators.begin() + 1, m_translators.end()); - } -} + std::string ExceptionTranslatorRegistry::tryTranslators() const { + if (m_translators.empty()) { + std::rethrow_exception(std::current_exception()); + } else { + return m_translators[0]->translate(m_translators.begin() + 1, m_translators.end()); + } + } #else // ^^ Exceptions are enabled // Exceptions are disabled vv - std::string ExceptionTranslatorRegistry::translateActiveException() const { + std::string ExceptionTranslatorRegistry::translateActiveException() const { CATCH_INTERNAL_ERROR("Attempted to translate active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!"); } @@ -10783,14 +11435,14 @@ std::string ExceptionTranslatorRegistry::tryTranslators() const { namespace { //! Signals fatal error message to the run context -void reportFatal(char const *const message) { - Catch::getCurrentContext().getResultCapture()->handleFatalErrorCondition(message); -} + void reportFatal(char const *const message) { + Catch::getCurrentContext().getResultCapture()->handleFatalErrorCondition(message); + } //! Minimal size Catch2 needs for its own fatal error handling. //! Picked anecdotally, so it might not be sufficient on all //! platforms, and for all configurations. -constexpr std::size_t minStackSizeForErrors = 32 * 1024; + constexpr std::size_t minStackSizeForErrors = 32 * 1024; } // end unnamed namespace #endif // CATCH_CONFIG_WINDOWS_SEH || CATCH_CONFIG_POSIX_SIGNALS @@ -10869,19 +11521,19 @@ constexpr std::size_t minStackSizeForErrors = 32 * 1024; namespace Catch { -struct SignalDefs { - int id; - const char *name; -}; + struct SignalDefs { + int id; + const char *name; + }; -static SignalDefs signalDefs[] = { - {SIGINT, "SIGINT - Terminal interrupt signal"}, - {SIGILL, "SIGILL - Illegal instruction signal"}, - {SIGFPE, "SIGFPE - Floating point error signal"}, - {SIGSEGV, "SIGSEGV - Segmentation violation signal"}, - {SIGTERM, "SIGTERM - Termination request signal"}, - {SIGABRT, "SIGABRT - Abort (abnormal termination) signal"} -}; + static SignalDefs signalDefs[] = { + {SIGINT, "SIGINT - Terminal interrupt signal"}, + {SIGILL, "SIGILL - Illegal instruction signal"}, + {SIGFPE, "SIGFPE - Floating point error signal"}, + {SIGSEGV, "SIGSEGV - Segmentation violation signal"}, + {SIGTERM, "SIGTERM - Termination request signal"}, + {SIGABRT, "SIGABRT - Abort (abnormal termination) signal"} + }; // Older GCCs trigger -Wmissing-field-initializers for T foo = {} // which is zero initialization, but not explicit. We want to avoid @@ -10891,76 +11543,76 @@ static SignalDefs signalDefs[] = { # pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -static char *altStackMem = nullptr; -static std::size_t altStackSize = 0; -static stack_t oldSigStack{}; -static struct sigaction oldSigActions[sizeof(signalDefs) / sizeof(SignalDefs)]{}; - -static void restorePreviousSignalHandlers() { - // We set signal handlers back to the previous ones. Hopefully - // nobody overwrote them in the meantime, and doesn't expect - // their signal handlers to live past ours given that they - // installed them after ours.. - for (std::size_t i = 0; i < sizeof(signalDefs) / sizeof(SignalDefs); ++i) { - sigaction(signalDefs[i].id, &oldSigActions[i], nullptr); - } - // Return the old stack - sigaltstack(&oldSigStack, nullptr); -} + static char *altStackMem = nullptr; + static std::size_t altStackSize = 0; + static stack_t oldSigStack{}; + static struct sigaction oldSigActions[sizeof(signalDefs) / sizeof(SignalDefs)]{}; + + static void restorePreviousSignalHandlers() { + // We set signal handlers back to the previous ones. Hopefully + // nobody overwrote them in the meantime, and doesn't expect + // their signal handlers to live past ours given that they + // installed them after ours.. + for (std::size_t i = 0; i < sizeof(signalDefs) / sizeof(SignalDefs); ++i) { + sigaction(signalDefs[i].id, &oldSigActions[i], nullptr); + } + // Return the old stack + sigaltstack(&oldSigStack, nullptr); + } -static void handleSignal(int sig) { - char const *name = ""; - for (auto const &def : signalDefs) { - if (sig == def.id) { - name = def.name; - break; - } - } - // We need to restore previous signal handlers and let them do - // their thing, so that the users can have the debugger break - // when a signal is raised, and so on. - restorePreviousSignalHandlers(); - reportFatal(name); - raise(sig); -} + static void handleSignal(int sig) { + char const *name = ""; + for (auto const &def: signalDefs) { + if (sig == def.id) { + name = def.name; + break; + } + } + // We need to restore previous signal handlers and let them do + // their thing, so that the users can have the debugger break + // when a signal is raised, and so on. + restorePreviousSignalHandlers(); + reportFatal(name); + raise(sig); + } -FatalConditionHandler::FatalConditionHandler() { - assert(!altStackMem && "Cannot initialize POSIX signal handler when one already exists"); - if (altStackSize == 0) { - altStackSize = std::max(static_cast(SIGSTKSZ), minStackSizeForErrors); - } - altStackMem = new char[altStackSize](); -} + FatalConditionHandler::FatalConditionHandler() { + assert(!altStackMem && "Cannot initialize POSIX signal handler when one already exists"); + if (altStackSize == 0) { + altStackSize = std::max(static_cast(SIGSTKSZ), minStackSizeForErrors); + } + altStackMem = new char[altStackSize](); + } -FatalConditionHandler::~FatalConditionHandler() { - delete[] altStackMem; - // We signal that another instance can be constructed by zeroing - // out the pointer. - altStackMem = nullptr; -} + FatalConditionHandler::~FatalConditionHandler() { + delete[] altStackMem; + // We signal that another instance can be constructed by zeroing + // out the pointer. + altStackMem = nullptr; + } -void FatalConditionHandler::engage_platform() { - stack_t sigStack; - sigStack.ss_sp = altStackMem; - sigStack.ss_size = altStackSize; - sigStack.ss_flags = 0; - sigaltstack(&sigStack, &oldSigStack); - struct sigaction sa = {}; - - sa.sa_handler = handleSignal; - sa.sa_flags = SA_ONSTACK; - for (std::size_t i = 0; i < sizeof(signalDefs) / sizeof(SignalDefs); ++i) { - sigaction(signalDefs[i].id, &sa, &oldSigActions[i]); - } -} + void FatalConditionHandler::engage_platform() { + stack_t sigStack; + sigStack.ss_sp = altStackMem; + sigStack.ss_size = altStackSize; + sigStack.ss_flags = 0; + sigaltstack(&sigStack, &oldSigStack); + struct sigaction sa = {}; + + sa.sa_handler = handleSignal; + sa.sa_flags = SA_ONSTACK; + for (std::size_t i = 0; i < sizeof(signalDefs) / sizeof(SignalDefs); ++i) { + sigaction(signalDefs[i].id, &sa, &oldSigActions[i]); + } + } #if defined(__GNUC__) # pragma GCC diagnostic pop #endif -void FatalConditionHandler::disengage_platform() { - restorePreviousSignalHandlers(); -} + void FatalConditionHandler::disengage_platform() { + restorePreviousSignalHandlers(); + } } // end namespace Catch @@ -10973,47 +11625,49 @@ void FatalConditionHandler::disengage_platform() { namespace Catch { -IGeneratorTracker::~IGeneratorTracker() {} + IGeneratorTracker::~IGeneratorTracker() {} -const char *GeneratorException::what() const noexcept { - return m_msg; -} + const char *GeneratorException::what() const noexcept { + return m_msg; + } -namespace Generators { + namespace Generators { -GeneratorUntypedBase::~GeneratorUntypedBase() {} + GeneratorUntypedBase::~GeneratorUntypedBase() {} -auto acquireGeneratorTracker(StringRef generatorName, SourceLineInfo const &lineInfo) -> IGeneratorTracker & { - return getResultCapture().acquireGeneratorTracker(generatorName, lineInfo); -} + auto acquireGeneratorTracker(StringRef generatorName, SourceLineInfo const &lineInfo) -> IGeneratorTracker & { + return getResultCapture().acquireGeneratorTracker(generatorName, lineInfo); + } -} // namespace Generators + } // namespace Generators } // namespace Catch // end catch_generators.cpp // start catch_interfaces_capture.cpp namespace Catch { -IResultCapture::~IResultCapture() = default; + IResultCapture::~IResultCapture() = default; } // end catch_interfaces_capture.cpp // start catch_interfaces_config.cpp namespace Catch { -IConfig::~IConfig() = default; + IConfig::~IConfig() = default; } // end catch_interfaces_config.cpp // start catch_interfaces_exception.cpp namespace Catch { -IExceptionTranslator::~IExceptionTranslator() = default; -IExceptionTranslatorRegistry::~IExceptionTranslatorRegistry() = default; + IExceptionTranslator::~IExceptionTranslator() = default; + + IExceptionTranslatorRegistry::~IExceptionTranslatorRegistry() = default; } // end catch_interfaces_exception.cpp // start catch_interfaces_registry_hub.cpp namespace Catch { -IRegistryHub::~IRegistryHub() = default; -IMutableRegistryHub::~IMutableRegistryHub() = default; + IRegistryHub::~IRegistryHub() = default; + + IMutableRegistryHub::~IMutableRegistryHub() = default; } // end catch_interfaces_registry_hub.cpp // start catch_interfaces_reporter.cpp @@ -11022,164 +11676,179 @@ IMutableRegistryHub::~IMutableRegistryHub() = default; namespace Catch { -class ListeningReporter : public IStreamingReporter { - using Reporters = std::vector; - Reporters m_listeners; - IStreamingReporterPtr m_reporter = nullptr; - ReporterPreferences m_preferences; + class ListeningReporter : public IStreamingReporter { + using Reporters = std::vector; + Reporters m_listeners; + IStreamingReporterPtr m_reporter = nullptr; + ReporterPreferences m_preferences; + + public: + ListeningReporter(); - public: - ListeningReporter(); + void addListener(IStreamingReporterPtr &&listener); - void addListener(IStreamingReporterPtr &&listener); - void addReporter(IStreamingReporterPtr &&reporter); + void addReporter(IStreamingReporterPtr &&reporter); - public: // IStreamingReporter + public: // IStreamingReporter - ReporterPreferences getPreferences() const override; + ReporterPreferences getPreferences() const override; - void noMatchingTestCases(std::string const &spec) override; + void noMatchingTestCases(std::string const &spec) override; - void reportInvalidArguments(std::string const &arg) override; + void reportInvalidArguments(std::string const &arg) override; - static std::set getSupportedVerbosities(); + static std::set getSupportedVerbosities(); #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void benchmarkPreparing(std::string const& name) override; + void benchmarkPreparing(std::string const& name) override; void benchmarkStarting( BenchmarkInfo const& benchmarkInfo ) override; void benchmarkEnded( BenchmarkStats<> const& benchmarkStats ) override; void benchmarkFailed(std::string const&) override; #endif // CATCH_CONFIG_ENABLE_BENCHMARKING - void testRunStarting(TestRunInfo const &testRunInfo) override; - void testGroupStarting(GroupInfo const &groupInfo) override; - void testCaseStarting(TestCaseInfo const &testInfo) override; - void sectionStarting(SectionInfo const §ionInfo) override; - void assertionStarting(AssertionInfo const &assertionInfo) override; + void testRunStarting(TestRunInfo const &testRunInfo) override; - // The return value indicates if the messages buffer should be cleared: - bool assertionEnded(AssertionStats const &assertionStats) override; - void sectionEnded(SectionStats const §ionStats) override; - void testCaseEnded(TestCaseStats const &testCaseStats) override; - void testGroupEnded(TestGroupStats const &testGroupStats) override; - void testRunEnded(TestRunStats const &testRunStats) override; + void testGroupStarting(GroupInfo const &groupInfo) override; - void skipTest(TestCaseInfo const &testInfo) override; - bool isMulti() const override; + void testCaseStarting(TestCaseInfo const &testInfo) override; -}; + void sectionStarting(SectionInfo const §ionInfo) override; + + void assertionStarting(AssertionInfo const &assertionInfo) override; + + // The return value indicates if the messages buffer should be cleared: + bool assertionEnded(AssertionStats const &assertionStats) override; + + void sectionEnded(SectionStats const §ionStats) override; + + void testCaseEnded(TestCaseStats const &testCaseStats) override; + + void testGroupEnded(TestGroupStats const &testGroupStats) override; + + void testRunEnded(TestRunStats const &testRunStats) override; + + void skipTest(TestCaseInfo const &testInfo) override; + + bool isMulti() const override; + + }; } // end namespace Catch // end catch_reporter_listening.h namespace Catch { -ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig) - : m_stream(&_fullConfig->stream()), m_fullConfig(_fullConfig) {} - -ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream) - : m_stream(&_stream), m_fullConfig(_fullConfig) {} - -std::ostream &ReporterConfig::stream() const { return *m_stream; } -IConfigPtr ReporterConfig::fullConfig() const { return m_fullConfig; } - -TestRunInfo::TestRunInfo(std::string const &_name) : name(_name) {} - -GroupInfo::GroupInfo(std::string const &_name, - std::size_t _groupIndex, - std::size_t _groupsCount) - : name(_name), - groupIndex(_groupIndex), - groupsCounts(_groupsCount) {} - -AssertionStats::AssertionStats(AssertionResult const &_assertionResult, - std::vector const &_infoMessages, - Totals const &_totals) - : assertionResult(_assertionResult), - infoMessages(_infoMessages), - totals(_totals) { - assertionResult.m_resultData.lazyExpression.m_transientExpression = - _assertionResult.m_resultData.lazyExpression.m_transientExpression; - - if (assertionResult.hasMessage()) { - // Copy message into messages list. - // !TBD This should have been done earlier, somewhere - MessageBuilder - builder(assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), assertionResult.getResultType()); - builder << assertionResult.getMessage(); - builder.m_info.message = builder.m_stream.str(); - - infoMessages.push_back(builder.m_info); - } -} + ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig) + : m_stream(&_fullConfig->stream()), m_fullConfig(_fullConfig) {} + + ReporterConfig::ReporterConfig(IConfigPtr const &_fullConfig, std::ostream &_stream) + : m_stream(&_stream), m_fullConfig(_fullConfig) {} + + std::ostream &ReporterConfig::stream() const { return *m_stream; } + + IConfigPtr ReporterConfig::fullConfig() const { return m_fullConfig; } -AssertionStats::~AssertionStats() = default; - -SectionStats::SectionStats(SectionInfo const &_sectionInfo, - Counts const &_assertions, - double _durationInSeconds, - bool _missingAssertions) - : sectionInfo(_sectionInfo), - assertions(_assertions), - durationInSeconds(_durationInSeconds), - missingAssertions(_missingAssertions) {} - -SectionStats::~SectionStats() = default; - -TestCaseStats::TestCaseStats(TestCaseInfo const &_testInfo, - Totals const &_totals, - std::string const &_stdOut, - std::string const &_stdErr, - bool _aborting) - : testInfo(_testInfo), - totals(_totals), - stdOut(_stdOut), - stdErr(_stdErr), - aborting(_aborting) {} - -TestCaseStats::~TestCaseStats() = default; - -TestGroupStats::TestGroupStats(GroupInfo const &_groupInfo, + TestRunInfo::TestRunInfo(std::string const &_name) : name(_name) {} + + GroupInfo::GroupInfo(std::string const &_name, + std::size_t _groupIndex, + std::size_t _groupsCount) + : name(_name), + groupIndex(_groupIndex), + groupsCounts(_groupsCount) {} + + AssertionStats::AssertionStats(AssertionResult const &_assertionResult, + std::vector const &_infoMessages, + Totals const &_totals) + : assertionResult(_assertionResult), + infoMessages(_infoMessages), + totals(_totals) { + assertionResult.m_resultData.lazyExpression.m_transientExpression = + _assertionResult.m_resultData.lazyExpression.m_transientExpression; + + if (assertionResult.hasMessage()) { + // Copy message into messages list. + // !TBD This should have been done earlier, somewhere + MessageBuilder + builder(assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), + assertionResult.getResultType()); + builder << assertionResult.getMessage(); + builder.m_info.message = builder.m_stream.str(); + + infoMessages.push_back(builder.m_info); + } + } + + AssertionStats::~AssertionStats() = default; + + SectionStats::SectionStats(SectionInfo const &_sectionInfo, + Counts const &_assertions, + double _durationInSeconds, + bool _missingAssertions) + : sectionInfo(_sectionInfo), + assertions(_assertions), + durationInSeconds(_durationInSeconds), + missingAssertions(_missingAssertions) {} + + SectionStats::~SectionStats() = default; + + TestCaseStats::TestCaseStats(TestCaseInfo const &_testInfo, + Totals const &_totals, + std::string const &_stdOut, + std::string const &_stdErr, + bool _aborting) + : testInfo(_testInfo), + totals(_totals), + stdOut(_stdOut), + stdErr(_stdErr), + aborting(_aborting) {} + + TestCaseStats::~TestCaseStats() = default; + + TestGroupStats::TestGroupStats(GroupInfo const &_groupInfo, + Totals const &_totals, + bool _aborting) + : groupInfo(_groupInfo), + totals(_totals), + aborting(_aborting) {} + + TestGroupStats::TestGroupStats(GroupInfo const &_groupInfo) + : groupInfo(_groupInfo), + aborting(false) {} + + TestGroupStats::~TestGroupStats() = default; + + TestRunStats::TestRunStats(TestRunInfo const &_runInfo, Totals const &_totals, bool _aborting) - : groupInfo(_groupInfo), - totals(_totals), - aborting(_aborting) {} - -TestGroupStats::TestGroupStats(GroupInfo const &_groupInfo) - : groupInfo(_groupInfo), - aborting(false) {} + : runInfo(_runInfo), + totals(_totals), + aborting(_aborting) {} -TestGroupStats::~TestGroupStats() = default; + TestRunStats::~TestRunStats() = default; -TestRunStats::TestRunStats(TestRunInfo const &_runInfo, - Totals const &_totals, - bool _aborting) - : runInfo(_runInfo), - totals(_totals), - aborting(_aborting) {} + void IStreamingReporter::fatalErrorEncountered(StringRef) {} -TestRunStats::~TestRunStats() = default; + bool IStreamingReporter::isMulti() const { return false; } -void IStreamingReporter::fatalErrorEncountered(StringRef) {} -bool IStreamingReporter::isMulti() const { return false; } + IReporterFactory::~IReporterFactory() = default; -IReporterFactory::~IReporterFactory() = default; -IReporterRegistry::~IReporterRegistry() = default; + IReporterRegistry::~IReporterRegistry() = default; } // end namespace Catch // end catch_interfaces_reporter.cpp // start catch_interfaces_runner.cpp namespace Catch { -IRunner::~IRunner() = default; + IRunner::~IRunner() = default; } // end catch_interfaces_runner.cpp // start catch_interfaces_testcase.cpp namespace Catch { -ITestInvoker::~ITestInvoker() = default; -ITestCaseRegistry::~ITestCaseRegistry() = default; + ITestInvoker::~ITestInvoker() = default; + + ITestCaseRegistry::~ITestCaseRegistry() = default; } // end catch_interfaces_testcase.cpp // start catch_leak_detector.cpp @@ -11208,7 +11877,7 @@ Catch::LeakDetector::LeakDetector() {} #endif Catch::LeakDetector::~LeakDetector() { - Catch::cleanUp(); + Catch::cleanUp(); } // end catch_leak_detector.cpp // start catch_list.cpp @@ -11219,23 +11888,24 @@ Catch::LeakDetector::~LeakDetector() { namespace Catch { -std::size_t listTests(Config const &config); + std::size_t listTests(Config const &config); -std::size_t listTestsNamesOnly(Config const &config); + std::size_t listTestsNamesOnly(Config const &config); -struct TagInfo { - void add(std::string const &spelling); - std::string all() const; + struct TagInfo { + void add(std::string const &spelling); - std::set spellings; - std::size_t count = 0; -}; + std::string all() const; + + std::set spellings; + std::size_t count = 0; + }; -std::size_t listTags(Config const &config); + std::size_t listTags(Config const &config); -std::size_t listReporters(); + std::size_t listReporters(); -Option list(std::shared_ptr const &config); + Option list(std::shared_ptr const &config); } // end namespace Catch @@ -11243,7 +11913,7 @@ Option list(std::shared_ptr const &config); // start catch_text.h namespace Catch { -using namespace clara::TextFlow; + using namespace clara::TextFlow; } // end catch_text.h @@ -11253,195 +11923,196 @@ using namespace clara::TextFlow; namespace Catch { -std::size_t listTests(Config const &config) { - TestSpec const &testSpec = config.testSpec(); - if (config.hasTestFilters()) - Catch::cout() << "Matching test cases:\n"; - else { - Catch::cout() << "All available test cases:\n"; - } - - auto matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); - for (auto const &testCaseInfo : matchedTestCases) { - Colour::Code colour = testCaseInfo.isHidden() - ? Colour::SecondaryText - : Colour::None; - Colour colourGuard(colour); - - Catch::cout() << Column(testCaseInfo.name).initialIndent(2).indent(4) << "\n"; - if (config.verbosity() >= Verbosity::High) { - Catch::cout() << Column(Catch::Detail::stringify(testCaseInfo.lineInfo)).indent(4) << std::endl; - std::string description = testCaseInfo.description; - if (description.empty()) - description = "(NO DESCRIPTION)"; - Catch::cout() << Column(description).indent(4) << std::endl; - } - if (!testCaseInfo.tags.empty()) - Catch::cout() << Column(testCaseInfo.tagsAsString()).indent(6) << "\n"; - } - - if (!config.hasTestFilters()) - Catch::cout() << pluralise(matchedTestCases.size(), "test case") << '\n' << std::endl; - else - Catch::cout() << pluralise(matchedTestCases.size(), "matching test case") << '\n' << std::endl; - return matchedTestCases.size(); -} + std::size_t listTests(Config const &config) { + TestSpec const &testSpec = config.testSpec(); + if (config.hasTestFilters()) + Catch::cout() << "Matching test cases:\n"; + else { + Catch::cout() << "All available test cases:\n"; + } -std::size_t listTestsNamesOnly(Config const &config) { - TestSpec const &testSpec = config.testSpec(); - std::size_t matchedTests = 0; - std::vector matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); - for (auto const &testCaseInfo : matchedTestCases) { - matchedTests++; - if (startsWith(testCaseInfo.name, '#')) - Catch::cout() << '"' << testCaseInfo.name << '"'; - else - Catch::cout() << testCaseInfo.name; - if (config.verbosity() >= Verbosity::High) - Catch::cout() << "\t@" << testCaseInfo.lineInfo; - Catch::cout() << std::endl; - } - return matchedTests; -} + auto matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); + for (auto const &testCaseInfo: matchedTestCases) { + Colour::Code colour = testCaseInfo.isHidden() + ? Colour::SecondaryText + : Colour::None; + Colour colourGuard(colour); + + Catch::cout() << Column(testCaseInfo.name).initialIndent(2).indent(4) << "\n"; + if (config.verbosity() >= Verbosity::High) { + Catch::cout() << Column(Catch::Detail::stringify(testCaseInfo.lineInfo)).indent(4) << std::endl; + std::string description = testCaseInfo.description; + if (description.empty()) + description = "(NO DESCRIPTION)"; + Catch::cout() << Column(description).indent(4) << std::endl; + } + if (!testCaseInfo.tags.empty()) + Catch::cout() << Column(testCaseInfo.tagsAsString()).indent(6) << "\n"; + } -void TagInfo::add(std::string const &spelling) { - ++count; - spellings.insert(spelling); -} + if (!config.hasTestFilters()) + Catch::cout() << pluralise(matchedTestCases.size(), "test case") << '\n' << std::endl; + else + Catch::cout() << pluralise(matchedTestCases.size(), "matching test case") << '\n' << std::endl; + return matchedTestCases.size(); + } -std::string TagInfo::all() const { - size_t size = 0; - for (auto const &spelling : spellings) { - // Add 2 for the brackes - size += spelling.size() + 2; - } - - std::string out; - out.reserve(size); - for (auto const &spelling : spellings) { - out += '['; - out += spelling; - out += ']'; - } - return out; -} + std::size_t listTestsNamesOnly(Config const &config) { + TestSpec const &testSpec = config.testSpec(); + std::size_t matchedTests = 0; + std::vector matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); + for (auto const &testCaseInfo: matchedTestCases) { + matchedTests++; + if (startsWith(testCaseInfo.name, '#')) + Catch::cout() << '"' << testCaseInfo.name << '"'; + else + Catch::cout() << testCaseInfo.name; + if (config.verbosity() >= Verbosity::High) + Catch::cout() << "\t@" << testCaseInfo.lineInfo; + Catch::cout() << std::endl; + } + return matchedTests; + } -std::size_t listTags(Config const &config) { - TestSpec const &testSpec = config.testSpec(); - if (config.hasTestFilters()) - Catch::cout() << "Tags for matching test cases:\n"; - else { - Catch::cout() << "All available tags:\n"; - } - - std::map tagCounts; - - std::vector matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); - for (auto const &testCase : matchedTestCases) { - for (auto const &tagName : testCase.getTestCaseInfo().tags) { - std::string lcaseTagName = toLower(tagName); - auto countIt = tagCounts.find(lcaseTagName); - if (countIt == tagCounts.end()) - countIt = tagCounts.insert(std::make_pair(lcaseTagName, TagInfo())).first; - countIt->second.add(tagName); - } - } - - for (auto const &tagCount : tagCounts) { - ReusableStringStream rss; - rss << " " << std::setw(2) << tagCount.second.count << " "; - auto str = rss.str(); - auto wrapper = Column(tagCount.second.all()) - .initialIndent(0) - .indent(str.size()) - .width(CATCH_CONFIG_CONSOLE_WIDTH - 10); - Catch::cout() << str << wrapper << '\n'; - } - Catch::cout() << pluralise(tagCounts.size(), "tag") << '\n' << std::endl; - return tagCounts.size(); -} + void TagInfo::add(std::string const &spelling) { + ++count; + spellings.insert(spelling); + } -std::size_t listReporters() { - Catch::cout() << "Available reporters:\n"; - IReporterRegistry::FactoryMap const &factories = getRegistryHub().getReporterRegistry().getFactories(); - std::size_t maxNameLen = 0; - for (auto const &factoryKvp : factories) - maxNameLen = (std::max) (maxNameLen, factoryKvp.first.size()); - - for (auto const &factoryKvp : factories) { - Catch::cout() - << Column(factoryKvp.first + ":") - .indent(2) - .width(5 + maxNameLen) - + Column(factoryKvp.second->getDescription()) - .initialIndent(0) - .indent(2) - .width(CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen - 8) - << "\n"; - } - Catch::cout() << std::endl; - return factories.size(); -} + std::string TagInfo::all() const { + size_t size = 0; + for (auto const &spelling: spellings) { + // Add 2 for the brackes + size += spelling.size() + 2; + } -Option list(std::shared_ptr const &config) { - Option listedCount; - getCurrentMutableContext().setConfig(config); - if (config->listTests()) - listedCount = listedCount.valueOr(0) + listTests(*config); - if (config->listTestNamesOnly()) - listedCount = listedCount.valueOr(0) + listTestsNamesOnly(*config); - if (config->listTags()) - listedCount = listedCount.valueOr(0) + listTags(*config); - if (config->listReporters()) - listedCount = listedCount.valueOr(0) + listReporters(); - return listedCount; -} + std::string out; + out.reserve(size); + for (auto const &spelling: spellings) { + out += '['; + out += spelling; + out += ']'; + } + return out; + } + + std::size_t listTags(Config const &config) { + TestSpec const &testSpec = config.testSpec(); + if (config.hasTestFilters()) + Catch::cout() << "Tags for matching test cases:\n"; + else { + Catch::cout() << "All available tags:\n"; + } + + std::map tagCounts; + + std::vector matchedTestCases = filterTests(getAllTestCasesSorted(config), testSpec, config); + for (auto const &testCase: matchedTestCases) { + for (auto const &tagName: testCase.getTestCaseInfo().tags) { + std::string lcaseTagName = toLower(tagName); + auto countIt = tagCounts.find(lcaseTagName); + if (countIt == tagCounts.end()) + countIt = tagCounts.insert(std::make_pair(lcaseTagName, TagInfo())).first; + countIt->second.add(tagName); + } + } + + for (auto const &tagCount: tagCounts) { + ReusableStringStream rss; + rss << " " << std::setw(2) << tagCount.second.count << " "; + auto str = rss.str(); + auto wrapper = Column(tagCount.second.all()) + .initialIndent(0) + .indent(str.size()) + .width(CATCH_CONFIG_CONSOLE_WIDTH - 10); + Catch::cout() << str << wrapper << '\n'; + } + Catch::cout() << pluralise(tagCounts.size(), "tag") << '\n' << std::endl; + return tagCounts.size(); + } + + std::size_t listReporters() { + Catch::cout() << "Available reporters:\n"; + IReporterRegistry::FactoryMap const &factories = getRegistryHub().getReporterRegistry().getFactories(); + std::size_t maxNameLen = 0; + for (auto const &factoryKvp: factories) + maxNameLen = (std::max) (maxNameLen, factoryKvp.first.size()); + + for (auto const &factoryKvp: factories) { + Catch::cout() + << Column(factoryKvp.first + ":") + .indent(2) + .width(5 + maxNameLen) + + Column(factoryKvp.second->getDescription()) + .initialIndent(0) + .indent(2) + .width(CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen - 8) + << "\n"; + } + Catch::cout() << std::endl; + return factories.size(); + } + + Option list(std::shared_ptr const &config) { + Option listedCount; + getCurrentMutableContext().setConfig(config); + if (config->listTests()) + listedCount = listedCount.valueOr(0) + listTests(*config); + if (config->listTestNamesOnly()) + listedCount = listedCount.valueOr(0) + listTestsNamesOnly(*config); + if (config->listTags()) + listedCount = listedCount.valueOr(0) + listTags(*config); + if (config->listReporters()) + listedCount = listedCount.valueOr(0) + listReporters(); + return listedCount; + } } // end namespace Catch // end catch_list.cpp // start catch_matchers.cpp namespace Catch { -namespace Matchers { -namespace Impl { + namespace Matchers { + namespace Impl { -std::string MatcherUntypedBase::toString() const { - if (m_cachedToString.empty()) - m_cachedToString = describe(); - return m_cachedToString; -} + std::string MatcherUntypedBase::toString() const { + if (m_cachedToString.empty()) + m_cachedToString = describe(); + return m_cachedToString; + } -MatcherUntypedBase::~MatcherUntypedBase() = default; + MatcherUntypedBase::~MatcherUntypedBase() = default; -} // namespace Impl -} // namespace Matchers + } // namespace Impl + } // namespace Matchers -using namespace Matchers; -using Matchers::Impl::MatcherBase; + using namespace Matchers; + using Matchers::Impl::MatcherBase; } // namespace Catch // end catch_matchers.cpp // start catch_matchers_exception.cpp namespace Catch { -namespace Matchers { -namespace Exception { + namespace Matchers { + namespace Exception { -bool ExceptionMessageMatcher::match(std::exception const &ex) const { - return ex.what() == m_message; -} + bool ExceptionMessageMatcher::match(std::exception const &ex) const { + return ex.what() == m_message; + } -std::string ExceptionMessageMatcher::describe() const { - return "exception message matches \"" + m_message + "\""; -} + std::string ExceptionMessageMatcher::describe() const { + return "exception message matches \"" + m_message + "\""; + } -} -Exception::ExceptionMessageMatcher Message(std::string const &message) { - return Exception::ExceptionMessageMatcher(message); -} + } + + Exception::ExceptionMessageMatcher Message(std::string const &message) { + return Exception::ExceptionMessageMatcher(message); + } // namespace Exception -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_exception.cpp // start catch_matchers_floating.cpp @@ -11449,8 +12120,9 @@ Exception::ExceptionMessageMatcher Message(std::string const &message) { // start catch_polyfills.hpp namespace Catch { -bool isnan(float f); -bool isnan(double d); + bool isnan(float f); + + bool isnan(double d); } // end catch_polyfills.hpp @@ -11459,16 +12131,16 @@ bool isnan(double d); #include namespace Catch { -template -std::string to_string(T const &t) { + template + std::string to_string(T const &t) { #if defined(CATCH_CONFIG_CPP11_TO_STRING) - return std::to_string(t); + return std::to_string(t); #else - ReusableStringStream rss; + ReusableStringStream rss; rss << t; return rss.str(); #endif -} + } } // end namespace Catch // end catch_to_string.hpp @@ -11483,46 +12155,46 @@ std::string to_string(T const &t) { #include namespace Catch { -namespace { + namespace { -int32_t convert(float f) { - static_assert(sizeof(float) == sizeof(int32_t), "Important ULP matcher assumption violated"); - int32_t i; - std::memcpy(&i, &f, sizeof(f)); - return i; -} + int32_t convert(float f) { + static_assert(sizeof(float) == sizeof(int32_t), "Important ULP matcher assumption violated"); + int32_t i; + std::memcpy(&i, &f, sizeof(f)); + return i; + } -int64_t convert(double d) { - static_assert(sizeof(double) == sizeof(int64_t), "Important ULP matcher assumption violated"); - int64_t i; - std::memcpy(&i, &d, sizeof(d)); - return i; -} + int64_t convert(double d) { + static_assert(sizeof(double) == sizeof(int64_t), "Important ULP matcher assumption violated"); + int64_t i; + std::memcpy(&i, &d, sizeof(d)); + return i; + } -template -bool almostEqualUlps(FP lhs, FP rhs, uint64_t maxUlpDiff) { - // Comparison with NaN should always be false. - // This way we can rule it out before getting into the ugly details - if (Catch::isnan(lhs) || Catch::isnan(rhs)) { - return false; - } - - auto lc = convert(lhs); - auto rc = convert(rhs); - - if ((lc < 0) != (rc < 0)) { - // Potentially we can have +0 and -0 - return lhs == rhs; - } - - // static cast as a workaround for IBM XLC - auto ulpDiff = std::abs(static_cast(lc - rc)); - return static_cast(ulpDiff) <= maxUlpDiff; -} + template + bool almostEqualUlps(FP lhs, FP rhs, uint64_t maxUlpDiff) { + // Comparison with NaN should always be false. + // This way we can rule it out before getting into the ugly details + if (Catch::isnan(lhs) || Catch::isnan(rhs)) { + return false; + } + + auto lc = convert(lhs); + auto rc = convert(rhs); + + if ((lc < 0) != (rc < 0)) { + // Potentially we can have +0 and -0 + return lhs == rhs; + } + + // static cast as a workaround for IBM XLC + auto ulpDiff = std::abs(static_cast(lc - rc)); + return static_cast(ulpDiff) <= maxUlpDiff; + } #if defined(CATCH_CONFIG_GLOBAL_NEXTAFTER) - float nextafter(float x, float y) { + float nextafter(float x, float y) { return ::nextafterf(x, y); } @@ -11532,173 +12204,176 @@ bool almostEqualUlps(FP lhs, FP rhs, uint64_t maxUlpDiff) { #endif // ^^^ CATCH_CONFIG_GLOBAL_NEXTAFTER ^^^ -template -FP step(FP start, FP direction, uint64_t steps) { - for (uint64_t i = 0; i < steps; ++i) { + template + FP step(FP start, FP direction, uint64_t steps) { + for (uint64_t i = 0; i < steps; ++i) { #if defined(CATCH_CONFIG_GLOBAL_NEXTAFTER) - start = Catch::nextafter(start, direction); + start = Catch::nextafter(start, direction); #else - start = std::nextafter(start, direction); + start = std::nextafter(start, direction); #endif - } - return start; -} + } + return start; + } // Performs equivalent check of std::fabs(lhs - rhs) <= margin // But without the subtraction to allow for INFINITY in comparison -bool marginComparison(double lhs, double rhs, double margin) { - return (lhs + margin >= rhs) && (rhs + margin >= lhs); -} + bool marginComparison(double lhs, double rhs, double margin) { + return (lhs + margin >= rhs) && (rhs + margin >= lhs); + } -template -void write(std::ostream &out, FloatingPoint num) { - out << std::scientific - << std::setprecision(std::numeric_limits::max_digits10 - 1) - << num; -} + template + void write(std::ostream &out, FloatingPoint num) { + out << std::scientific + << std::setprecision(std::numeric_limits::max_digits10 - 1) + << num; + } -} // end anonymous namespace + } // end anonymous namespace -namespace Matchers { -namespace Floating { + namespace Matchers { + namespace Floating { -enum class FloatingPointKind : uint8_t { - Float, - Double -}; + enum class FloatingPointKind : uint8_t { + Float, + Double + }; -WithinAbsMatcher::WithinAbsMatcher(double target, double margin) - : m_target{target}, m_margin{margin} { - CATCH_ENFORCE(margin >= 0, "Invalid margin: " << margin << '.' - << " Margin has to be non-negative."); -} + WithinAbsMatcher::WithinAbsMatcher(double target, double margin) + : m_target{target}, m_margin{margin} { + CATCH_ENFORCE(margin >= 0, "Invalid margin: " << margin << '.' + << " Margin has to be non-negative."); + } // Performs equivalent check of std::fabs(lhs - rhs) <= margin // But without the subtraction to allow for INFINITY in comparison -bool WithinAbsMatcher::match(double const &matchee) const { - return (matchee + m_margin >= m_target) && (m_target + m_margin >= matchee); -} + bool WithinAbsMatcher::match(double const &matchee) const { + return (matchee + m_margin >= m_target) && (m_target + m_margin >= matchee); + } -std::string WithinAbsMatcher::describe() const { - return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + ::Catch::Detail::stringify(m_target); -} + std::string WithinAbsMatcher::describe() const { + return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + + ::Catch::Detail::stringify(m_target); + } -WithinUlpsMatcher::WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType) - : m_target{target}, m_ulps{ulps}, m_type{baseType} { - CATCH_ENFORCE(m_type == FloatingPointKind::Double - || m_ulps < (std::numeric_limits::max) (), - "Provided ULP is impossibly large for a float comparison."); -} + WithinUlpsMatcher::WithinUlpsMatcher(double target, uint64_t ulps, FloatingPointKind baseType) + : m_target{target}, m_ulps{ulps}, m_type{baseType} { + CATCH_ENFORCE(m_type == FloatingPointKind::Double + || m_ulps < (std::numeric_limits::max) (), + "Provided ULP is impossibly large for a float comparison."); + } #if defined(__clang__) - #pragma clang diagnostic push + #pragma clang diagnostic push // Clang <3.5 reports on the default branch in the switch below #pragma clang diagnostic ignored "-Wunreachable-code" #endif -bool WithinUlpsMatcher::match(double const &matchee) const { - switch (m_type) { - case FloatingPointKind::Float: - return almostEqualUlps(static_cast(matchee), - static_cast(m_target), - m_ulps); - case FloatingPointKind::Double:return almostEqualUlps(matchee, m_target, m_ulps); - default:CATCH_INTERNAL_ERROR("Unknown FloatingPointKind value"); - } -} + bool WithinUlpsMatcher::match(double const &matchee) const { + switch (m_type) { + case FloatingPointKind::Float: + return almostEqualUlps(static_cast(matchee), + static_cast(m_target), + m_ulps); + case FloatingPointKind::Double: + return almostEqualUlps(matchee, m_target, m_ulps); + default: + CATCH_INTERNAL_ERROR("Unknown FloatingPointKind value"); + } + } #if defined(__clang__) #pragma clang diagnostic pop #endif -std::string WithinUlpsMatcher::describe() const { - std::stringstream ret; - - ret << "is within " << m_ulps << " ULPs of "; - - if (m_type == FloatingPointKind::Float) { - write(ret, static_cast(m_target)); - ret << 'f'; - } else { - write(ret, m_target); - } - - ret << " (["; - if (m_type == FloatingPointKind::Double) { - write(ret, step(m_target, static_cast(-INFINITY), m_ulps)); - ret << ", "; - write(ret, step(m_target, static_cast(INFINITY), m_ulps)); - } else { - // We have to cast INFINITY to float because of MinGW, see #1782 - write(ret, step(static_cast(m_target), static_cast(-INFINITY), m_ulps)); - ret << ", "; - write(ret, step(static_cast(m_target), static_cast(INFINITY), m_ulps)); - } - ret << "])"; - - return ret.str(); -} + std::string WithinUlpsMatcher::describe() const { + std::stringstream ret; -WithinRelMatcher::WithinRelMatcher(double target, double epsilon) : - m_target(target), - m_epsilon(epsilon) { - CATCH_ENFORCE(m_epsilon >= 0., "Relative comparison with epsilon < 0 does not make sense."); - CATCH_ENFORCE(m_epsilon < 1., "Relative comparison with epsilon >= 1 does not make sense."); -} + ret << "is within " << m_ulps << " ULPs of "; -bool WithinRelMatcher::match(double const &matchee) const { - const auto relMargin = m_epsilon * (std::max) (std::fabs(matchee), std::fabs(m_target)); - return marginComparison(matchee, m_target, - std::isinf(relMargin) ? 0 : relMargin); -} + if (m_type == FloatingPointKind::Float) { + write(ret, static_cast(m_target)); + ret << 'f'; + } else { + write(ret, m_target); + } -std::string WithinRelMatcher::describe() const { - Catch::ReusableStringStream sstr; - sstr << "and " << m_target << " are within " << m_epsilon * 100. << "% of each other"; - return sstr.str(); -} + ret << " (["; + if (m_type == FloatingPointKind::Double) { + write(ret, step(m_target, static_cast(-INFINITY), m_ulps)); + ret << ", "; + write(ret, step(m_target, static_cast(INFINITY), m_ulps)); + } else { + // We have to cast INFINITY to float because of MinGW, see #1782 + write(ret, step(static_cast(m_target), static_cast(-INFINITY), m_ulps)); + ret << ", "; + write(ret, step(static_cast(m_target), static_cast(INFINITY), m_ulps)); + } + ret << "])"; + + return ret.str(); + } -}// namespace Floating + WithinRelMatcher::WithinRelMatcher(double target, double epsilon) : + m_target(target), + m_epsilon(epsilon) { + CATCH_ENFORCE(m_epsilon >= 0., "Relative comparison with epsilon < 0 does not make sense."); + CATCH_ENFORCE(m_epsilon < 1., "Relative comparison with epsilon >= 1 does not make sense."); + } -Floating::WithinUlpsMatcher WithinULP(double target, uint64_t maxUlpDiff) { - return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double); -} + bool WithinRelMatcher::match(double const &matchee) const { + const auto relMargin = m_epsilon * (std::max) (std::fabs(matchee), std::fabs(m_target)); + return marginComparison(matchee, m_target, + std::isinf(relMargin) ? 0 : relMargin); + } -Floating::WithinUlpsMatcher WithinULP(float target, uint64_t maxUlpDiff) { - return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float); -} + std::string WithinRelMatcher::describe() const { + Catch::ReusableStringStream sstr; + sstr << "and " << m_target << " are within " << m_epsilon * 100. << "% of each other"; + return sstr.str(); + } -Floating::WithinAbsMatcher WithinAbs(double target, double margin) { - return Floating::WithinAbsMatcher(target, margin); -} + }// namespace Floating -Floating::WithinRelMatcher WithinRel(double target, double eps) { - return Floating::WithinRelMatcher(target, eps); -} + Floating::WithinUlpsMatcher WithinULP(double target, uint64_t maxUlpDiff) { + return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double); + } -Floating::WithinRelMatcher WithinRel(double target) { - return Floating::WithinRelMatcher(target, std::numeric_limits::epsilon() * 100); -} + Floating::WithinUlpsMatcher WithinULP(float target, uint64_t maxUlpDiff) { + return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float); + } -Floating::WithinRelMatcher WithinRel(float target, float eps) { - return Floating::WithinRelMatcher(target, eps); -} + Floating::WithinAbsMatcher WithinAbs(double target, double margin) { + return Floating::WithinAbsMatcher(target, margin); + } -Floating::WithinRelMatcher WithinRel(float target) { - return Floating::WithinRelMatcher(target, std::numeric_limits::epsilon() * 100); -} + Floating::WithinRelMatcher WithinRel(double target, double eps) { + return Floating::WithinRelMatcher(target, eps); + } + + Floating::WithinRelMatcher WithinRel(double target) { + return Floating::WithinRelMatcher(target, std::numeric_limits::epsilon() * 100); + } + + Floating::WithinRelMatcher WithinRel(float target, float eps) { + return Floating::WithinRelMatcher(target, eps); + } + + Floating::WithinRelMatcher WithinRel(float target) { + return Floating::WithinRelMatcher(target, std::numeric_limits::epsilon() * 100); + } -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_floating.cpp // start catch_matchers_generic.cpp std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::string &desc) { - if (desc.empty()) { - return "matches undescribed predicate"; - } else { - return "matches predicate: \"" + desc + '"'; - } + if (desc.empty()) { + return "matches undescribed predicate"; + } else { + return "matches predicate: \"" + desc + '"'; + } } // end catch_matchers_generic.cpp // start catch_matchers_string.cpp @@ -11706,102 +12381,111 @@ std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::str #include namespace Catch { -namespace Matchers { + namespace Matchers { -namespace StdString { + namespace StdString { -CasedString::CasedString(std::string const &str, CaseSensitive::Choice caseSensitivity) - : m_caseSensitivity(caseSensitivity), - m_str(adjustString(str)) {} -std::string CasedString::adjustString(std::string const &str) const { - return m_caseSensitivity == CaseSensitive::No - ? toLower(str) - : str; -} -std::string CasedString::caseSensitivitySuffix() const { - return m_caseSensitivity == CaseSensitive::No - ? " (case insensitive)" - : std::string(); -} + CasedString::CasedString(std::string const &str, CaseSensitive::Choice caseSensitivity) + : m_caseSensitivity(caseSensitivity), + m_str(adjustString(str)) {} -StringMatcherBase::StringMatcherBase(std::string const &operation, CasedString const &comparator) - : m_comparator(comparator), - m_operation(operation) { -} + std::string CasedString::adjustString(std::string const &str) const { + return m_caseSensitivity == CaseSensitive::No + ? toLower(str) + : str; + } -std::string StringMatcherBase::describe() const { - std::string description; - description.reserve(5 + m_operation.size() + m_comparator.m_str.size() + - m_comparator.caseSensitivitySuffix().size()); - description += m_operation; - description += ": \""; - description += m_comparator.m_str; - description += "\""; - description += m_comparator.caseSensitivitySuffix(); - return description; -} + std::string CasedString::caseSensitivitySuffix() const { + return m_caseSensitivity == CaseSensitive::No + ? " (case insensitive)" + : std::string(); + } + + StringMatcherBase::StringMatcherBase(std::string const &operation, CasedString const &comparator) + : m_comparator(comparator), + m_operation(operation) { + } -EqualsMatcher::EqualsMatcher(CasedString const &comparator) : StringMatcherBase("equals", comparator) {} + std::string StringMatcherBase::describe() const { + std::string description; + description.reserve(5 + m_operation.size() + m_comparator.m_str.size() + + m_comparator.caseSensitivitySuffix().size()); + description += m_operation; + description += ": \""; + description += m_comparator.m_str; + description += "\""; + description += m_comparator.caseSensitivitySuffix(); + return description; + } -bool EqualsMatcher::match(std::string const &source) const { - return m_comparator.adjustString(source) == m_comparator.m_str; -} + EqualsMatcher::EqualsMatcher(CasedString const &comparator) : StringMatcherBase("equals", comparator) {} -ContainsMatcher::ContainsMatcher(CasedString const &comparator) : StringMatcherBase("contains", comparator) {} + bool EqualsMatcher::match(std::string const &source) const { + return m_comparator.adjustString(source) == m_comparator.m_str; + } -bool ContainsMatcher::match(std::string const &source) const { - return contains(m_comparator.adjustString(source), m_comparator.m_str); -} + ContainsMatcher::ContainsMatcher(CasedString const &comparator) : StringMatcherBase("contains", + comparator) {} -StartsWithMatcher::StartsWithMatcher(CasedString const &comparator) : StringMatcherBase("starts with", comparator) {} + bool ContainsMatcher::match(std::string const &source) const { + return contains(m_comparator.adjustString(source), m_comparator.m_str); + } -bool StartsWithMatcher::match(std::string const &source) const { - return startsWith(m_comparator.adjustString(source), m_comparator.m_str); -} + StartsWithMatcher::StartsWithMatcher(CasedString const &comparator) : StringMatcherBase("starts with", + comparator) {} -EndsWithMatcher::EndsWithMatcher(CasedString const &comparator) : StringMatcherBase("ends with", comparator) {} + bool StartsWithMatcher::match(std::string const &source) const { + return startsWith(m_comparator.adjustString(source), m_comparator.m_str); + } -bool EndsWithMatcher::match(std::string const &source) const { - return endsWith(m_comparator.adjustString(source), m_comparator.m_str); -} + EndsWithMatcher::EndsWithMatcher(CasedString const &comparator) : StringMatcherBase("ends with", + comparator) {} -RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity) - : m_regex(std::move(regex)), m_caseSensitivity(caseSensitivity) {} + bool EndsWithMatcher::match(std::string const &source) const { + return endsWith(m_comparator.adjustString(source), m_comparator.m_str); + } -bool RegexMatcher::match(std::string const &matchee) const { - auto flags = std::regex::ECMAScript; // ECMAScript is the default syntax option anyway - if (m_caseSensitivity == CaseSensitive::Choice::No) { - flags |= std::regex::icase; - } - auto reg = std::regex(m_regex, flags); - return std::regex_match(matchee, reg); -} + RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity) + : m_regex(std::move(regex)), m_caseSensitivity(caseSensitivity) {} -std::string RegexMatcher::describe() const { - return "matches " + ::Catch::Detail::stringify(m_regex) - + ((m_caseSensitivity == CaseSensitive::Choice::Yes) ? " case sensitively" : " case insensitively"); -} + bool RegexMatcher::match(std::string const &matchee) const { + auto flags = std::regex::ECMAScript; // ECMAScript is the default syntax option anyway + if (m_caseSensitivity == CaseSensitive::Choice::No) { + flags |= std::regex::icase; + } + auto reg = std::regex(m_regex, flags); + return std::regex_match(matchee, reg); + } -} // namespace StdString + std::string RegexMatcher::describe() const { + return "matches " + ::Catch::Detail::stringify(m_regex) + + ((m_caseSensitivity == CaseSensitive::Choice::Yes) ? " case sensitively" + : " case insensitively"); + } -StdString::EqualsMatcher Equals(std::string const &str, CaseSensitive::Choice caseSensitivity) { - return StdString::EqualsMatcher(StdString::CasedString(str, caseSensitivity)); -} -StdString::ContainsMatcher Contains(std::string const &str, CaseSensitive::Choice caseSensitivity) { - return StdString::ContainsMatcher(StdString::CasedString(str, caseSensitivity)); -} -StdString::EndsWithMatcher EndsWith(std::string const &str, CaseSensitive::Choice caseSensitivity) { - return StdString::EndsWithMatcher(StdString::CasedString(str, caseSensitivity)); -} -StdString::StartsWithMatcher StartsWith(std::string const &str, CaseSensitive::Choice caseSensitivity) { - return StdString::StartsWithMatcher(StdString::CasedString(str, caseSensitivity)); -} + } // namespace StdString -StdString::RegexMatcher Matches(std::string const ®ex, CaseSensitive::Choice caseSensitivity) { - return StdString::RegexMatcher(regex, caseSensitivity); -} + StdString::EqualsMatcher Equals(std::string const &str, CaseSensitive::Choice caseSensitivity) { + return StdString::EqualsMatcher(StdString::CasedString(str, caseSensitivity)); + } + + StdString::ContainsMatcher Contains(std::string const &str, CaseSensitive::Choice caseSensitivity) { + return StdString::ContainsMatcher(StdString::CasedString(str, caseSensitivity)); + } + + StdString::EndsWithMatcher EndsWith(std::string const &str, CaseSensitive::Choice caseSensitivity) { + return StdString::EndsWithMatcher(StdString::CasedString(str, caseSensitivity)); + } + + StdString::StartsWithMatcher StartsWith(std::string const &str, CaseSensitive::Choice caseSensitivity) { + return StdString::StartsWithMatcher(StdString::CasedString(str, caseSensitivity)); + } + + StdString::RegexMatcher Matches(std::string const ®ex, CaseSensitive::Choice caseSensitivity) { + return StdString::RegexMatcher(regex, caseSensitivity); + } -} // namespace Matchers + } // namespace Matchers } // namespace Catch // end catch_matchers_string.cpp // start catch_message.cpp @@ -11809,7 +12493,7 @@ StdString::RegexMatcher Matches(std::string const ®ex, CaseSensitive::Choice // start catch_uncaught_exceptions.h namespace Catch { -bool uncaught_exceptions(); + bool uncaught_exceptions(); } // end namespace Catch // end catch_uncaught_exceptions.h @@ -11818,121 +12502,124 @@ bool uncaught_exceptions(); namespace Catch { -MessageInfo::MessageInfo(StringRef const &_macroName, - SourceLineInfo const &_lineInfo, - ResultWas::OfType _type) - : macroName(_macroName), - lineInfo(_lineInfo), - type(_type), - sequence(++globalCount) {} + MessageInfo::MessageInfo(StringRef const &_macroName, + SourceLineInfo const &_lineInfo, + ResultWas::OfType _type) + : macroName(_macroName), + lineInfo(_lineInfo), + type(_type), + sequence(++globalCount) {} -bool MessageInfo::operator==(MessageInfo const &other) const { - return sequence == other.sequence; -} + bool MessageInfo::operator==(MessageInfo const &other) const { + return sequence == other.sequence; + } -bool MessageInfo::operator<(MessageInfo const &other) const { - return sequence < other.sequence; -} + bool MessageInfo::operator<(MessageInfo const &other) const { + return sequence < other.sequence; + } // This may need protecting if threading support is added -unsigned int MessageInfo::globalCount = 0; + unsigned int MessageInfo::globalCount = 0; //////////////////////////////////////////////////////////////////////////// -Catch::MessageBuilder::MessageBuilder(StringRef const ¯oName, - SourceLineInfo const &lineInfo, - ResultWas::OfType type) - : m_info(macroName, lineInfo, type) {} + Catch::MessageBuilder::MessageBuilder(StringRef const ¯oName, + SourceLineInfo const &lineInfo, + ResultWas::OfType type) + : m_info(macroName, lineInfo, type) {} //////////////////////////////////////////////////////////////////////////// -ScopedMessage::ScopedMessage(MessageBuilder const &builder) - : m_info(builder.m_info), m_moved() { - m_info.message = builder.m_stream.str(); - getResultCapture().pushScopedMessage(m_info); -} + ScopedMessage::ScopedMessage(MessageBuilder const &builder) + : m_info(builder.m_info), m_moved() { + m_info.message = builder.m_stream.str(); + getResultCapture().pushScopedMessage(m_info); + } -ScopedMessage::ScopedMessage(ScopedMessage &&old) - : m_info(old.m_info), m_moved() { - old.m_moved = true; -} + ScopedMessage::ScopedMessage(ScopedMessage &&old) + : m_info(old.m_info), m_moved() { + old.m_moved = true; + } -ScopedMessage::~ScopedMessage() { - if (!uncaught_exceptions() && !m_moved) { - getResultCapture().popScopedMessage(m_info); - } -} + ScopedMessage::~ScopedMessage() { + if (!uncaught_exceptions() && !m_moved) { + getResultCapture().popScopedMessage(m_info); + } + } + + Capturer::Capturer(StringRef macroName, SourceLineInfo const &lineInfo, ResultWas::OfType resultType, + StringRef names) { + auto trimmed = [&](size_t start, size_t end) { + while (names[start] == ',' || isspace(static_cast(names[start]))) { + ++start; + } + while (names[end] == ',' || isspace(static_cast(names[end]))) { + --end; + } + return names.substr(start, end - start + 1); + }; + auto skipq = [&](size_t start, char quote) { + for (auto i = start + 1; i < names.size(); ++i) { + if (names[i] == quote) + return i; + if (names[i] == '\\') + ++i; + } + CATCH_INTERNAL_ERROR("CAPTURE parsing encountered unmatched quote"); + }; -Capturer::Capturer(StringRef macroName, SourceLineInfo const &lineInfo, ResultWas::OfType resultType, StringRef names) { - auto trimmed = [&](size_t start, size_t end) { - while (names[start] == ',' || isspace(static_cast(names[start]))) { - ++start; - } - while (names[end] == ',' || isspace(static_cast(names[end]))) { - --end; - } - return names.substr(start, end - start + 1); - }; - auto skipq = [&](size_t start, char quote) { - for (auto i = start + 1; i < names.size(); ++i) { - if (names[i] == quote) - return i; - if (names[i] == '\\') - ++i; - } - CATCH_INTERNAL_ERROR("CAPTURE parsing encountered unmatched quote"); - }; - - size_t start = 0; - std::stack openings; - for (size_t pos = 0; pos < names.size(); ++pos) { - char c = names[pos]; - switch (c) { - case '[': - case '{': - case '(': - // It is basically impossible to disambiguate between - // comparison and start of template args in this context + size_t start = 0; + std::stack openings; + for (size_t pos = 0; pos < names.size(); ++pos) { + char c = names[pos]; + switch (c) { + case '[': + case '{': + case '(': + // It is basically impossible to disambiguate between + // comparison and start of template args in this context // case '<': - openings.push(c); - break; - case ']': - case '}': - case ')': + openings.push(c); + break; + case ']': + case '}': + case ')': // case '>': - openings.pop(); - break; - case '"': - case '\'':pos = skipq(pos, c); - break; - case ',': - if (start != pos && openings.empty()) { - m_messages.emplace_back(macroName, lineInfo, resultType); - m_messages.back().message = static_cast(trimmed(start, pos)); - m_messages.back().message += " := "; - start = pos; - } - } - } - assert(openings.empty() && "Mismatched openings"); - m_messages.emplace_back(macroName, lineInfo, resultType); - m_messages.back().message = static_cast(trimmed(start, names.size() - 1)); - m_messages.back().message += " := "; -} -Capturer::~Capturer() { - if (!uncaught_exceptions()) { - assert(m_captured == m_messages.size()); - for (size_t i = 0; i < m_captured; ++i) - m_resultCapture.popScopedMessage(m_messages[i]); - } -} + openings.pop(); + break; + case '"': + case '\'': + pos = skipq(pos, c); + break; + case ',': + if (start != pos && openings.empty()) { + m_messages.emplace_back(macroName, lineInfo, resultType); + m_messages.back().message = static_cast(trimmed(start, pos)); + m_messages.back().message += " := "; + start = pos; + } + } + } + assert(openings.empty() && "Mismatched openings"); + m_messages.emplace_back(macroName, lineInfo, resultType); + m_messages.back().message = static_cast(trimmed(start, names.size() - 1)); + m_messages.back().message += " := "; + } -void Capturer::captureValue(size_t index, std::string const &value) { - assert(index < m_messages.size()); - m_messages[index].message += value; - m_resultCapture.pushScopedMessage(m_messages[index]); - m_captured++; -} + Capturer::~Capturer() { + if (!uncaught_exceptions()) { + assert(m_captured == m_messages.size()); + for (size_t i = 0; i < m_captured; ++i) + m_resultCapture.popScopedMessage(m_messages[i]); + } + } + + void Capturer::captureValue(size_t index, std::string const &value) { + assert(index < m_messages.size()); + m_messages[index].message += value; + m_resultCapture.pushScopedMessage(m_messages[index]); + m_captured++; + } } // end namespace Catch // end catch_message.cpp @@ -11948,55 +12635,63 @@ void Capturer::captureValue(size_t index, std::string const &value) { namespace Catch { -class RedirectedStream { - std::ostream &m_originalStream; - std::ostream &m_redirectionStream; - std::streambuf *m_prevBuf; + class RedirectedStream { + std::ostream &m_originalStream; + std::ostream &m_redirectionStream; + std::streambuf *m_prevBuf; - public: - RedirectedStream(std::ostream &originalStream, std::ostream &redirectionStream); - ~RedirectedStream(); -}; + public: + RedirectedStream(std::ostream &originalStream, std::ostream &redirectionStream); -class RedirectedStdOut { - ReusableStringStream m_rss; - RedirectedStream m_cout; - public: - RedirectedStdOut(); - auto str() const -> std::string; -}; + ~RedirectedStream(); + }; + + class RedirectedStdOut { + ReusableStringStream m_rss; + RedirectedStream m_cout; + public: + RedirectedStdOut(); + + auto str() const -> std::string; + }; // StdErr has two constituent streams in C++, std::cerr and std::clog // This means that we need to redirect 2 streams into 1 to keep proper // order of writes -class RedirectedStdErr { - ReusableStringStream m_rss; - RedirectedStream m_cerr; - RedirectedStream m_clog; - public: - RedirectedStdErr(); - auto str() const -> std::string; -}; + class RedirectedStdErr { + ReusableStringStream m_rss; + RedirectedStream m_cerr; + RedirectedStream m_clog; + public: + RedirectedStdErr(); -class RedirectedStreams { - public: - RedirectedStreams(RedirectedStreams const &) = delete; - RedirectedStreams &operator=(RedirectedStreams const &) = delete; - RedirectedStreams(RedirectedStreams &&) = delete; - RedirectedStreams &operator=(RedirectedStreams &&) = delete; - - RedirectedStreams(std::string &redirectedCout, std::string &redirectedCerr); - ~RedirectedStreams(); - private: - std::string &m_redirectedCout; - std::string &m_redirectedCerr; - RedirectedStdOut m_redirectedStdOut; - RedirectedStdErr m_redirectedStdErr; -}; + auto str() const -> std::string; + }; + + class RedirectedStreams { + public: + RedirectedStreams(RedirectedStreams const &) = delete; + + RedirectedStreams &operator=(RedirectedStreams const &) = delete; + + RedirectedStreams(RedirectedStreams &&) = delete; + + RedirectedStreams &operator=(RedirectedStreams &&) = delete; + + RedirectedStreams(std::string &redirectedCout, std::string &redirectedCerr); + + ~RedirectedStreams(); + + private: + std::string &m_redirectedCout; + std::string &m_redirectedCerr; + RedirectedStdOut m_redirectedStdOut; + RedirectedStdErr m_redirectedStdErr; + }; #if defined(CATCH_CONFIG_NEW_CAPTURE) - // Windows's implementation of std::tmpfile is terrible (it tries + // Windows's implementation of std::tmpfile is terrible (it tries // to create a file inside system folder, thus requiring elevated // privileges for the binary), so we have to use tmpnam(_s) and // create the file ourselves there. @@ -12064,37 +12759,39 @@ class RedirectedStreams { namespace Catch { -RedirectedStream::RedirectedStream(std::ostream &originalStream, std::ostream &redirectionStream) - : m_originalStream(originalStream), - m_redirectionStream(redirectionStream), - m_prevBuf(m_originalStream.rdbuf()) { - m_originalStream.rdbuf(m_redirectionStream.rdbuf()); -} + RedirectedStream::RedirectedStream(std::ostream &originalStream, std::ostream &redirectionStream) + : m_originalStream(originalStream), + m_redirectionStream(redirectionStream), + m_prevBuf(m_originalStream.rdbuf()) { + m_originalStream.rdbuf(m_redirectionStream.rdbuf()); + } -RedirectedStream::~RedirectedStream() { - m_originalStream.rdbuf(m_prevBuf); -} + RedirectedStream::~RedirectedStream() { + m_originalStream.rdbuf(m_prevBuf); + } -RedirectedStdOut::RedirectedStdOut() : m_cout(Catch::cout(), m_rss.get()) {} -auto RedirectedStdOut::str() const -> std::string { return m_rss.str(); } + RedirectedStdOut::RedirectedStdOut() : m_cout(Catch::cout(), m_rss.get()) {} -RedirectedStdErr::RedirectedStdErr() - : m_cerr(Catch::cerr(), m_rss.get()), - m_clog(Catch::clog(), m_rss.get()) {} -auto RedirectedStdErr::str() const -> std::string { return m_rss.str(); } + auto RedirectedStdOut::str() const -> std::string { return m_rss.str(); } -RedirectedStreams::RedirectedStreams(std::string &redirectedCout, std::string &redirectedCerr) - : m_redirectedCout(redirectedCout), - m_redirectedCerr(redirectedCerr) {} + RedirectedStdErr::RedirectedStdErr() + : m_cerr(Catch::cerr(), m_rss.get()), + m_clog(Catch::clog(), m_rss.get()) {} -RedirectedStreams::~RedirectedStreams() { - m_redirectedCout += m_redirectedStdOut.str(); - m_redirectedCerr += m_redirectedStdErr.str(); -} + auto RedirectedStdErr::str() const -> std::string { return m_rss.str(); } + + RedirectedStreams::RedirectedStreams(std::string &redirectedCout, std::string &redirectedCerr) + : m_redirectedCout(redirectedCout), + m_redirectedCerr(redirectedCerr) {} + + RedirectedStreams::~RedirectedStreams() { + m_redirectedCout += m_redirectedStdOut.str(); + m_redirectedCerr += m_redirectedStdErr.str(); + } #if defined(CATCH_CONFIG_NEW_CAPTURE) - #if defined(_MSC_VER) + #if defined(_MSC_VER) TempFile::TempFile() { if (tmpnam_s(m_buffer)) { CATCH_RUNTIME_ERROR("Could not get a temp filename"); @@ -12184,15 +12881,18 @@ RedirectedStreams::~RedirectedStreams() { namespace Catch { -#if !defined(CATCH_CONFIG_POLYFILL_ISNAN) -bool isnan(float f) { - return std::isnan(f); -} -bool isnan(double d) { - return std::isnan(d); -} +#if !defined(CATCH_CONFIG_POLYFILL_ISNAN) + + bool isnan(float f) { + return std::isnan(f); + } + + bool isnan(double d) { + return std::isnan(d); + } + #else - // For now we only use this for embarcadero + // For now we only use this for embarcadero bool isnan(float f) { return std::_isnan(f); } @@ -12207,62 +12907,63 @@ bool isnan(double d) { namespace Catch { -namespace { + namespace { #if defined(_MSC_VER) - #pragma warning(push) + #pragma warning(push) #pragma warning(disable:4146) // we negate uint32 during the rotate #endif + // Safe rotr implementation thanks to John Regehr -uint32_t rotate_right(uint32_t val, uint32_t count) { - const uint32_t mask = 31; - count &= mask; - return (val >> count) | (val << (-count & mask)); -} + uint32_t rotate_right(uint32_t val, uint32_t count) { + const uint32_t mask = 31; + count &= mask; + return (val >> count) | (val << (-count & mask)); + } #if defined(_MSC_VER) #pragma warning(pop) #endif -} + } -SimplePcg32::SimplePcg32(result_type seed_) { - seed(seed_); -} + SimplePcg32::SimplePcg32(result_type seed_) { + seed(seed_); + } -void SimplePcg32::seed(result_type seed_) { - m_state = 0; - (*this)(); - m_state += seed_; - (*this)(); -} + void SimplePcg32::seed(result_type seed_) { + m_state = 0; + (*this)(); + m_state += seed_; + (*this)(); + } -void SimplePcg32::discard(uint64_t skip) { - // We could implement this to run in O(log n) steps, but this - // should suffice for our use case. - for (uint64_t s = 0; s < skip; ++s) { - static_cast((*this)()); - } -} + void SimplePcg32::discard(uint64_t skip) { + // We could implement this to run in O(log n) steps, but this + // should suffice for our use case. + for (uint64_t s = 0; s < skip; ++s) { + static_cast((*this)()); + } + } -SimplePcg32::result_type SimplePcg32::operator()() { - // prepare the output value - const uint32_t xorshifted = static_cast(((m_state >> 18u) ^ m_state) >> 27u); - const auto output = rotate_right(xorshifted, m_state >> 59u); + SimplePcg32::result_type SimplePcg32::operator()() { + // prepare the output value + const uint32_t xorshifted = static_cast(((m_state >> 18u) ^ m_state) >> 27u); + const auto output = rotate_right(xorshifted, m_state >> 59u); - // advance state - m_state = m_state * 6364136223846793005ULL + s_inc; + // advance state + m_state = m_state * 6364136223846793005ULL + s_inc; - return output; -} + return output; + } -bool operator==(SimplePcg32 const &lhs, SimplePcg32 const &rhs) { - return lhs.m_state == rhs.m_state; -} + bool operator==(SimplePcg32 const &lhs, SimplePcg32 const &rhs) { + return lhs.m_state == rhs.m_state; + } -bool operator!=(SimplePcg32 const &lhs, SimplePcg32 const &rhs) { - return lhs.m_state != rhs.m_state; -} + bool operator!=(SimplePcg32 const &lhs, SimplePcg32 const &rhs) { + return lhs.m_state != rhs.m_state; + } } // end catch_random_number_generator.cpp // start catch_registry_hub.cpp @@ -12276,49 +12977,54 @@ bool operator!=(SimplePcg32 const &lhs, SimplePcg32 const &rhs) { namespace Catch { -class TestCase; -struct IConfig; + class TestCase; -std::vector sortTests(IConfig const &config, std::vector const &unsortedTestCases); + struct IConfig; -bool isThrowSafe(TestCase const &testCase, IConfig const &config); -bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config); + std::vector sortTests(IConfig const &config, std::vector const &unsortedTestCases); -void enforceNoDuplicateTestCases(std::vector const &functions); + bool isThrowSafe(TestCase const &testCase, IConfig const &config); -std::vector filterTests(std::vector const &testCases, - TestSpec const &testSpec, - IConfig const &config); -std::vector const &getAllTestCasesSorted(IConfig const &config); + bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config); -class TestRegistry : public ITestCaseRegistry { - public: - virtual ~TestRegistry() = default; + void enforceNoDuplicateTestCases(std::vector const &functions); - virtual void registerTest(TestCase const &testCase); + std::vector filterTests(std::vector const &testCases, + TestSpec const &testSpec, + IConfig const &config); - std::vector const &getAllTests() const override; - std::vector const &getAllTestsSorted(IConfig const &config) const override; + std::vector const &getAllTestCasesSorted(IConfig const &config); - private: - std::vector m_functions; - mutable RunTests::InWhatOrder m_currentSortOrder = RunTests::InDeclarationOrder; - mutable std::vector m_sortedFunctions; - std::size_t m_unnamedCount = 0; - std::ios_base::Init m_ostreamInit; // Forces cout/ cerr to be initialised -}; + class TestRegistry : public ITestCaseRegistry { + public: + virtual ~TestRegistry() = default; + + virtual void registerTest(TestCase const &testCase); + + std::vector const &getAllTests() const override; + + std::vector const &getAllTestsSorted(IConfig const &config) const override; + + private: + std::vector m_functions; + mutable RunTests::InWhatOrder m_currentSortOrder = RunTests::InDeclarationOrder; + mutable std::vector m_sortedFunctions; + std::size_t m_unnamedCount = 0; + std::ios_base::Init m_ostreamInit; // Forces cout/ cerr to be initialised + }; /////////////////////////////////////////////////////////////////////////// -class TestInvokerAsFunction : public ITestInvoker { - void (*m_testAsFunction)(); - public: - TestInvokerAsFunction(void(*testAsFunction)()) noexcept; + class TestInvokerAsFunction : public ITestInvoker { + void (*m_testAsFunction)(); - void invoke() const override; -}; + public: + TestInvokerAsFunction(void(*testAsFunction)()) noexcept; + + void invoke() const override; + }; -std::string extractClassName(StringRef const &classOrQualifiedMethodName); + std::string extractClassName(StringRef const &classOrQualifiedMethodName); /////////////////////////////////////////////////////////////////////////// @@ -12331,24 +13037,26 @@ std::string extractClassName(StringRef const &classOrQualifiedMethodName); namespace Catch { -class ReporterRegistry : public IReporterRegistry { + class ReporterRegistry : public IReporterRegistry { - public: + public: - ~ReporterRegistry() override; + ~ReporterRegistry() override; - IStreamingReporterPtr create(std::string const &name, IConfigPtr const &config) const override; + IStreamingReporterPtr create(std::string const &name, IConfigPtr const &config) const override; - void registerReporter(std::string const &name, IReporterFactoryPtr const &factory); - void registerListener(IReporterFactoryPtr const &factory); + void registerReporter(std::string const &name, IReporterFactoryPtr const &factory); - FactoryMap const &getFactories() const override; - Listeners const &getListeners() const override; + void registerListener(IReporterFactoryPtr const &factory); - private: - FactoryMap m_factories; - Listeners m_listeners; -}; + FactoryMap const &getFactories() const override; + + Listeners const &getListeners() const override; + + private: + FactoryMap m_factories; + Listeners m_listeners; + }; } // end catch_reporter_registry.h @@ -12360,12 +13068,12 @@ class ReporterRegistry : public IReporterRegistry { namespace Catch { -struct TagAlias { - TagAlias(std::string const &_tag, SourceLineInfo _lineInfo); + struct TagAlias { + TagAlias(std::string const &_tag, SourceLineInfo _lineInfo); - std::string tag; - SourceLineInfo lineInfo; -}; + std::string tag; + SourceLineInfo lineInfo; + }; } // end namespace Catch @@ -12374,16 +13082,19 @@ struct TagAlias { namespace Catch { -class TagAliasRegistry : public ITagAliasRegistry { - public: - ~TagAliasRegistry() override; - TagAlias const *find(std::string const &alias) const override; - std::string expandAliases(std::string const &unexpandedTestSpec) const override; - void add(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo); + class TagAliasRegistry : public ITagAliasRegistry { + public: + ~TagAliasRegistry() override; - private: - std::map m_registry; -}; + TagAlias const *find(std::string const &alias) const override; + + std::string expandAliases(std::string const &unexpandedTestSpec) const override; + + void add(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo); + + private: + std::map m_registry; + }; } // end namespace Catch @@ -12395,15 +13106,17 @@ class TagAliasRegistry : public ITagAliasRegistry { namespace Catch { -class StartupExceptionRegistry { + class StartupExceptionRegistry { #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - public: - void add(std::exception_ptr const &exception) noexcept; - std::vector const &getExceptions() const noexcept; - private: - std::vector m_exceptions; + public: + void add(std::exception_ptr const &exception) noexcept; + + std::vector const &getExceptions() const noexcept; + + private: + std::vector m_exceptions; #endif -}; + }; } // end namespace Catch @@ -12412,114 +13125,131 @@ class StartupExceptionRegistry { namespace Catch { -struct ISingleton { - virtual ~ISingleton(); -}; + struct ISingleton { + virtual ~ISingleton(); + }; -void addSingleton(ISingleton *singleton); -void cleanupSingletons(); + void addSingleton(ISingleton *singleton); -template -class Singleton : SingletonImplT, public ISingleton { + void cleanupSingletons(); - static auto getInternal() -> Singleton * { - static Singleton *s_instance = nullptr; - if (!s_instance) { - s_instance = new Singleton; - addSingleton(s_instance); - } - return s_instance; - } + template + class Singleton : SingletonImplT, public ISingleton { - public: - static auto get() -> InterfaceT const & { - return *getInternal(); - } - static auto getMutable() -> MutableInterfaceT & { - return *getInternal(); - } -}; + static auto getInternal() -> Singleton * { + static Singleton *s_instance = nullptr; + if (!s_instance) { + s_instance = new Singleton; + addSingleton(s_instance); + } + return s_instance; + } + + public: + static auto get() -> InterfaceT const & { + return *getInternal(); + } + + static auto getMutable() -> MutableInterfaceT & { + return *getInternal(); + } + }; } // namespace Catch // end catch_singletons.hpp namespace Catch { -namespace { + namespace { + + class RegistryHub : public IRegistryHub, public IMutableRegistryHub, + private NonCopyable { + + public: // IRegistryHub + RegistryHub() = default; + + IReporterRegistry const &getReporterRegistry() const override { + return m_reporterRegistry; + } + + ITestCaseRegistry const &getTestCaseRegistry() const override { + return m_testCaseRegistry; + } + + IExceptionTranslatorRegistry const &getExceptionTranslatorRegistry() const override { + return m_exceptionTranslatorRegistry; + } + + ITagAliasRegistry const &getTagAliasRegistry() const override { + return m_tagAliasRegistry; + } -class RegistryHub : public IRegistryHub, public IMutableRegistryHub, - private NonCopyable { - - public: // IRegistryHub - RegistryHub() = default; - IReporterRegistry const &getReporterRegistry() const override { - return m_reporterRegistry; - } - ITestCaseRegistry const &getTestCaseRegistry() const override { - return m_testCaseRegistry; - } - IExceptionTranslatorRegistry const &getExceptionTranslatorRegistry() const override { - return m_exceptionTranslatorRegistry; - } - ITagAliasRegistry const &getTagAliasRegistry() const override { - return m_tagAliasRegistry; - } - StartupExceptionRegistry const &getStartupExceptionRegistry() const override { - return m_exceptionRegistry; - } - - public: // IMutableRegistryHub - void registerReporter(std::string const &name, IReporterFactoryPtr const &factory) override { - m_reporterRegistry.registerReporter(name, factory); - } - void registerListener(IReporterFactoryPtr const &factory) override { - m_reporterRegistry.registerListener(factory); - } - void registerTest(TestCase const &testInfo) override { - m_testCaseRegistry.registerTest(testInfo); - } - void registerTranslator(const IExceptionTranslator *translator) override { - m_exceptionTranslatorRegistry.registerTranslator(translator); - } - void registerTagAlias(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo) override { - m_tagAliasRegistry.add(alias, tag, lineInfo); - } - void registerStartupException() noexcept override { + StartupExceptionRegistry const &getStartupExceptionRegistry() const override { + return m_exceptionRegistry; + } + + public: // IMutableRegistryHub + void registerReporter(std::string const &name, IReporterFactoryPtr const &factory) override { + m_reporterRegistry.registerReporter(name, factory); + } + + void registerListener(IReporterFactoryPtr const &factory) override { + m_reporterRegistry.registerListener(factory); + } + + void registerTest(TestCase const &testInfo) override { + m_testCaseRegistry.registerTest(testInfo); + } + + void registerTranslator(const IExceptionTranslator *translator) override { + m_exceptionTranslatorRegistry.registerTranslator(translator); + } + + void registerTagAlias(std::string const &alias, std::string const &tag, + SourceLineInfo const &lineInfo) override { + m_tagAliasRegistry.add(alias, tag, lineInfo); + } + + void registerStartupException() noexcept override { #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - m_exceptionRegistry.add(std::current_exception()); + m_exceptionRegistry.add(std::current_exception()); #else - CATCH_INTERNAL_ERROR("Attempted to register active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!"); + CATCH_INTERNAL_ERROR("Attempted to register active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!"); #endif - } - IMutableEnumValuesRegistry &getMutableEnumValuesRegistry() override { - return m_enumValuesRegistry; - } - - private: - TestRegistry m_testCaseRegistry; - ReporterRegistry m_reporterRegistry; - ExceptionTranslatorRegistry m_exceptionTranslatorRegistry; - TagAliasRegistry m_tagAliasRegistry; - StartupExceptionRegistry m_exceptionRegistry; - Detail::EnumValuesRegistry m_enumValuesRegistry; -}; -} + } + + IMutableEnumValuesRegistry &getMutableEnumValuesRegistry() override { + return m_enumValuesRegistry; + } -using RegistryHubSingleton = Singleton; + private: + TestRegistry m_testCaseRegistry; + ReporterRegistry m_reporterRegistry; + ExceptionTranslatorRegistry m_exceptionTranslatorRegistry; + TagAliasRegistry m_tagAliasRegistry; + StartupExceptionRegistry m_exceptionRegistry; + Detail::EnumValuesRegistry m_enumValuesRegistry; + }; + } -IRegistryHub const &getRegistryHub() { - return RegistryHubSingleton::get(); -} -IMutableRegistryHub &getMutableRegistryHub() { - return RegistryHubSingleton::getMutable(); -} -void cleanUp() { - cleanupSingletons(); - cleanUpContext(); -} -std::string translateActiveException() { - return getRegistryHub().getExceptionTranslatorRegistry().translateActiveException(); -} + using RegistryHubSingleton = Singleton; + + IRegistryHub const &getRegistryHub() { + return RegistryHubSingleton::get(); + } + + IMutableRegistryHub &getMutableRegistryHub() { + return RegistryHubSingleton::getMutable(); + } + + void cleanUp() { + cleanupSingletons(); + cleanUpContext(); + } + + std::string translateActiveException() { + return getRegistryHub().getExceptionTranslatorRegistry().translateActiveException(); + } } // end namespace Catch // end catch_registry_hub.cpp @@ -12527,28 +13257,30 @@ std::string translateActiveException() { namespace Catch { -ReporterRegistry::~ReporterRegistry() = default; + ReporterRegistry::~ReporterRegistry() = default; -IStreamingReporterPtr ReporterRegistry::create(std::string const &name, IConfigPtr const &config) const { - auto it = m_factories.find(name); - if (it == m_factories.end()) - return nullptr; - return it->second->create(ReporterConfig(config)); -} + IStreamingReporterPtr ReporterRegistry::create(std::string const &name, IConfigPtr const &config) const { + auto it = m_factories.find(name); + if (it == m_factories.end()) + return nullptr; + return it->second->create(ReporterConfig(config)); + } -void ReporterRegistry::registerReporter(std::string const &name, IReporterFactoryPtr const &factory) { - m_factories.emplace(name, factory); -} -void ReporterRegistry::registerListener(IReporterFactoryPtr const &factory) { - m_listeners.push_back(factory); -} + void ReporterRegistry::registerReporter(std::string const &name, IReporterFactoryPtr const &factory) { + m_factories.emplace(name, factory); + } -IReporterRegistry::FactoryMap const &ReporterRegistry::getFactories() const { - return m_factories; -} -IReporterRegistry::Listeners const &ReporterRegistry::getListeners() const { - return m_listeners; -} + void ReporterRegistry::registerListener(IReporterFactoryPtr const &factory) { + m_listeners.push_back(factory); + } + + IReporterRegistry::FactoryMap const &ReporterRegistry::getFactories() const { + return m_factories; + } + + IReporterRegistry::Listeners const &ReporterRegistry::getListeners() const { + return m_listeners; + } } // end catch_reporter_registry.cpp @@ -12556,19 +13288,21 @@ IReporterRegistry::Listeners const &ReporterRegistry::getListeners() const { namespace Catch { -bool isOk(ResultWas::OfType resultType) { - return (resultType & ResultWas::FailureBit) == 0; -} -bool isJustInfo(int flags) { - return flags == ResultWas::Info; -} + bool isOk(ResultWas::OfType resultType) { + return (resultType & ResultWas::FailureBit) == 0; + } -ResultDisposition::Flags operator|(ResultDisposition::Flags lhs, ResultDisposition::Flags rhs) { - return static_cast( static_cast( lhs ) | static_cast( rhs )); -} + bool isJustInfo(int flags) { + return flags == ResultWas::Info; + } + + ResultDisposition::Flags operator|(ResultDisposition::Flags lhs, ResultDisposition::Flags rhs) { + return static_cast( static_cast( lhs ) | static_cast( rhs )); + } + + bool shouldContinueOnFailure(int flags) { return (flags & ResultDisposition::ContinueOnFailure) != 0; } -bool shouldContinueOnFailure(int flags) { return (flags & ResultDisposition::ContinueOnFailure) != 0; } -bool shouldSuppressFailure(int flags) { return (flags & ResultDisposition::SuppressFail) != 0; } + bool shouldSuppressFailure(int flags) { return (flags & ResultDisposition::SuppressFail) != 0; } } // end namespace Catch // end catch_result_type.cpp @@ -12580,307 +13314,319 @@ bool shouldSuppressFailure(int flags) { return (flags & ResultDisposition::Suppr namespace Catch { -namespace Generators { -struct GeneratorTracker : TestCaseTracking::TrackerBase, IGeneratorTracker { - GeneratorBasePtr m_generator; - - GeneratorTracker(TestCaseTracking::NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent) - : TrackerBase(nameAndLocation, ctx, parent) {} - ~GeneratorTracker(); - - static GeneratorTracker &acquire(TrackerContext &ctx, TestCaseTracking::NameAndLocation const &nameAndLocation) { - std::shared_ptr tracker; - - ITracker ¤tTracker = ctx.currentTracker(); - // Under specific circumstances, the generator we want - // to acquire is also the current tracker. If this is - // the case, we have to avoid looking through current - // tracker's children, and instead return the current - // tracker. - // A case where this check is important is e.g. - // for (int i = 0; i < 5; ++i) { - // int n = GENERATE(1, 2); - // } - // - // without it, the code above creates 5 nested generators. - if (currentTracker.nameAndLocation() == nameAndLocation) { - auto thisTracker = currentTracker.parent().findChild(nameAndLocation); - assert(thisTracker); - assert(thisTracker->isGeneratorTracker()); - tracker = std::static_pointer_cast(thisTracker); - } else if (TestCaseTracking::ITrackerPtr childTracker = currentTracker.findChild(nameAndLocation)) { - assert(childTracker); - assert(childTracker->isGeneratorTracker()); - tracker = std::static_pointer_cast(childTracker); - } else { - tracker = std::make_shared(nameAndLocation, ctx, ¤tTracker); - currentTracker.addChild(tracker); - } - - if (!tracker->isComplete()) { - tracker->open(); - } - - return *tracker; - } - - // TrackerBase interface - bool isGeneratorTracker() const override { return true; } - auto hasGenerator() const -> bool override { - return !!m_generator; - } - void close() override { - TrackerBase::close(); - // If a generator has a child (it is followed by a section) - // and none of its children have started, then we must wait - // until later to start consuming its values. - // This catches cases where `GENERATE` is placed between two - // `SECTION`s. - // **The check for m_children.empty cannot be removed**. - // doing so would break `GENERATE` _not_ followed by `SECTION`s. - const bool should_wait_for_child = [&]() { - // No children -> nobody to wait for - if (m_children.empty()) { - return false; - } - // If at least one child started executing, don't wait - if (std::find_if( - m_children.begin(), - m_children.end(), - [](TestCaseTracking::ITrackerPtr tracker) { - return tracker->hasStarted(); - }) != m_children.end()) { - return false; - } - - // No children have started. We need to check if they _can_ - // start, and thus we should wait for them, or they cannot - // start (due to filters), and we shouldn't wait for them - auto *parent = m_parent; - // This is safe: there is always at least one section - // tracker in a test case tracking tree - while (!parent->isSectionTracker()) { - parent = &(parent->parent()); - } - assert(parent && - "Missing root (test case) level section"); - - auto const &parentSection = - static_cast( *parent ); - auto const &filters = parentSection.getFilters(); - // No filters -> no restrictions on running sections - if (filters.empty()) { - return true; - } - - for (auto const &child : m_children) { - if (child->isSectionTracker() && - std::find(filters.begin(), - filters.end(), - static_cast( *child ) - .trimmedName()) != - filters.end()) { - return true; - } - } - return false; - }(); - - // This check is a bit tricky, because m_generator->next() - // has a side-effect, where it consumes generator's current - // value, but we do not want to invoke the side-effect if - // this generator is still waiting for any child to start. - if (should_wait_for_child || - (m_runState == CompletedSuccessfully && - m_generator->next())) { - m_children.clear(); - m_runState = Executing; - } - } - - // IGeneratorTracker interface - auto getGenerator() const -> GeneratorBasePtr const & override { - return m_generator; - } - void setGenerator(GeneratorBasePtr &&generator) override { - m_generator = std::move(generator); - } -}; -GeneratorTracker::~GeneratorTracker() {} -} + namespace Generators { + struct GeneratorTracker : TestCaseTracking::TrackerBase, IGeneratorTracker { + GeneratorBasePtr m_generator; + + GeneratorTracker(TestCaseTracking::NameAndLocation const &nameAndLocation, TrackerContext &ctx, + ITracker *parent) + : TrackerBase(nameAndLocation, ctx, parent) {} + + ~GeneratorTracker(); + + static GeneratorTracker & + acquire(TrackerContext &ctx, TestCaseTracking::NameAndLocation const &nameAndLocation) { + std::shared_ptr tracker; + + ITracker ¤tTracker = ctx.currentTracker(); + // Under specific circumstances, the generator we want + // to acquire is also the current tracker. If this is + // the case, we have to avoid looking through current + // tracker's children, and instead return the current + // tracker. + // A case where this check is important is e.g. + // for (int i = 0; i < 5; ++i) { + // int n = GENERATE(1, 2); + // } + // + // without it, the code above creates 5 nested generators. + if (currentTracker.nameAndLocation() == nameAndLocation) { + auto thisTracker = currentTracker.parent().findChild(nameAndLocation); + assert(thisTracker); + assert(thisTracker->isGeneratorTracker()); + tracker = std::static_pointer_cast(thisTracker); + } else if (TestCaseTracking::ITrackerPtr childTracker = currentTracker.findChild(nameAndLocation)) { + assert(childTracker); + assert(childTracker->isGeneratorTracker()); + tracker = std::static_pointer_cast(childTracker); + } else { + tracker = std::make_shared(nameAndLocation, ctx, ¤tTracker); + currentTracker.addChild(tracker); + } -RunContext::RunContext(IConfigPtr const &_config, IStreamingReporterPtr &&reporter) - : m_runInfo(_config->name()), - m_context(getCurrentMutableContext()), - m_config(_config), - m_reporter(std::move(reporter)), - m_lastAssertionInfo{StringRef(), SourceLineInfo("", 0), StringRef(), ResultDisposition::Normal}, - m_includeSuccessfulResults( - m_config->includeSuccessfulResults() || m_reporter->getPreferences().shouldReportAllAssertions) { - m_context.setRunner(this); - m_context.setConfig(m_config); - m_context.setResultCapture(this); - m_reporter->testRunStarting(m_runInfo); -} + if (!tracker->isComplete()) { + tracker->open(); + } -RunContext::~RunContext() { - m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); -} + return *tracker; + } -void RunContext::testGroupStarting(std::string const &testSpec, std::size_t groupIndex, std::size_t groupsCount) { - m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); -} + // TrackerBase interface + bool isGeneratorTracker() const override { return true; } -void RunContext::testGroupEnded(std::string const &testSpec, - Totals const &totals, - std::size_t groupIndex, - std::size_t groupsCount) { - m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, aborting())); -} + auto hasGenerator() const -> bool override { + return !!m_generator; + } -Totals RunContext::runTest(TestCase const &testCase) { - Totals prevTotals = m_totals; - - std::string redirectedCout; - std::string redirectedCerr; - - auto const &testInfo = testCase.getTestCaseInfo(); - - m_reporter->testCaseStarting(testInfo); - - m_activeTestCase = &testCase; - - ITracker &rootTracker = m_trackerContext.startRun(); - assert(rootTracker.isSectionTracker()); - static_cast(rootTracker).addInitialFilters(m_config->getSectionsToRun()); - do { - m_trackerContext.startCycle(); - m_testCaseTracker = - &SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLocation(testInfo.name, testInfo.lineInfo)); - runCurrentTest(redirectedCout, redirectedCerr); - } while (!m_testCaseTracker->isSuccessfullyCompleted() && !aborting()); - - Totals deltaTotals = m_totals.delta(prevTotals); - if (testInfo.expectedToFail() && deltaTotals.testCases.passed > 0) { - deltaTotals.assertions.failed++; - deltaTotals.testCases.passed--; - deltaTotals.testCases.failed++; - } - m_totals.testCases += deltaTotals.testCases; - m_reporter->testCaseEnded(TestCaseStats(testInfo, - deltaTotals, - redirectedCout, - redirectedCerr, - aborting())); - - m_activeTestCase = nullptr; - m_testCaseTracker = nullptr; - - return deltaTotals; -} + void close() override { + TrackerBase::close(); + // If a generator has a child (it is followed by a section) + // and none of its children have started, then we must wait + // until later to start consuming its values. + // This catches cases where `GENERATE` is placed between two + // `SECTION`s. + // **The check for m_children.empty cannot be removed**. + // doing so would break `GENERATE` _not_ followed by `SECTION`s. + const bool should_wait_for_child = [&]() { + // No children -> nobody to wait for + if (m_children.empty()) { + return false; + } + // If at least one child started executing, don't wait + if (std::find_if( + m_children.begin(), + m_children.end(), + [](TestCaseTracking::ITrackerPtr tracker) { + return tracker->hasStarted(); + }) != m_children.end()) { + return false; + } -IConfigPtr RunContext::config() const { - return m_config; -} + // No children have started. We need to check if they _can_ + // start, and thus we should wait for them, or they cannot + // start (due to filters), and we shouldn't wait for them + auto *parent = m_parent; + // This is safe: there is always at least one section + // tracker in a test case tracking tree + while (!parent->isSectionTracker()) { + parent = &(parent->parent()); + } + assert(parent && + "Missing root (test case) level section"); + + auto const &parentSection = + static_cast( *parent ); + auto const &filters = parentSection.getFilters(); + // No filters -> no restrictions on running sections + if (filters.empty()) { + return true; + } -IStreamingReporter &RunContext::reporter() const { - return *m_reporter; -} + for (auto const &child: m_children) { + if (child->isSectionTracker() && + std::find(filters.begin(), + filters.end(), + static_cast( *child ) + .trimmedName()) != + filters.end()) { + return true; + } + } + return false; + }(); + + // This check is a bit tricky, because m_generator->next() + // has a side-effect, where it consumes generator's current + // value, but we do not want to invoke the side-effect if + // this generator is still waiting for any child to start. + if (should_wait_for_child || + (m_runState == CompletedSuccessfully && + m_generator->next())) { + m_children.clear(); + m_runState = Executing; + } + } -void RunContext::assertionEnded(AssertionResult const &result) { - if (result.getResultType() == ResultWas::Ok) { - m_totals.assertions.passed++; - m_lastAssertionPassed = true; - } else if (!result.isOk()) { - m_lastAssertionPassed = false; - if (m_activeTestCase->getTestCaseInfo().okToFail()) - m_totals.assertions.failedButOk++; - else - m_totals.assertions.failed++; - } else { - m_lastAssertionPassed = true; - } + // IGeneratorTracker interface + auto getGenerator() const -> GeneratorBasePtr const & override { + return m_generator; + } - // We have no use for the return value (whether messages should be cleared), because messages were made scoped - // and should be let to clear themselves out. - static_cast(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); + void setGenerator(GeneratorBasePtr &&generator) override { + m_generator = std::move(generator); + } + }; - if (result.getResultType() != ResultWas::Warning) - m_messageScopes.clear(); + GeneratorTracker::~GeneratorTracker() {} + } - // Reset working state - resetAssertionInfo(); - m_lastResult = result; -} -void RunContext::resetAssertionInfo() { - m_lastAssertionInfo.macroName = StringRef(); - m_lastAssertionInfo.capturedExpression = "{Unknown expression after the reported line}"_sr; -} + RunContext::RunContext(IConfigPtr const &_config, IStreamingReporterPtr &&reporter) + : m_runInfo(_config->name()), + m_context(getCurrentMutableContext()), + m_config(_config), + m_reporter(std::move(reporter)), + m_lastAssertionInfo{StringRef(), SourceLineInfo("", 0), StringRef(), ResultDisposition::Normal}, + m_includeSuccessfulResults( + m_config->includeSuccessfulResults() || m_reporter->getPreferences().shouldReportAllAssertions) { + m_context.setRunner(this); + m_context.setConfig(m_config); + m_context.setResultCapture(this); + m_reporter->testRunStarting(m_runInfo); + } -bool RunContext::sectionStarted(SectionInfo const §ionInfo, Counts &assertions) { - ITracker §ionTracker = SectionTracker::acquire(m_trackerContext, - TestCaseTracking::NameAndLocation(sectionInfo.name, - sectionInfo.lineInfo)); - if (!sectionTracker.isOpen()) - return false; - m_activeSections.push_back(§ionTracker); + RunContext::~RunContext() { + m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); + } - m_lastAssertionInfo.lineInfo = sectionInfo.lineInfo; + void RunContext::testGroupStarting(std::string const &testSpec, std::size_t groupIndex, std::size_t groupsCount) { + m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); + } - m_reporter->sectionStarting(sectionInfo); + void RunContext::testGroupEnded(std::string const &testSpec, + Totals const &totals, + std::size_t groupIndex, + std::size_t groupsCount) { + m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, aborting())); + } - assertions = m_totals.assertions; + Totals RunContext::runTest(TestCase const &testCase) { + Totals prevTotals = m_totals; - return true; -} -auto RunContext::acquireGeneratorTracker(StringRef generatorName, - SourceLineInfo const &lineInfo) -> IGeneratorTracker & { - using namespace Generators; - GeneratorTracker &tracker = GeneratorTracker::acquire(m_trackerContext, - TestCaseTracking::NameAndLocation(static_cast(generatorName), - lineInfo)); - m_lastAssertionInfo.lineInfo = lineInfo; - return tracker; -} + std::string redirectedCout; + std::string redirectedCerr; -bool RunContext::testForMissingAssertions(Counts &assertions) { - if (assertions.total() != 0) - return false; - if (!m_config->warnAboutMissingAssertions()) - return false; - if (m_trackerContext.currentTracker().hasChildren()) - return false; - m_totals.assertions.failed++; - assertions.failed++; - return true; -} + auto const &testInfo = testCase.getTestCaseInfo(); -void RunContext::sectionEnded(SectionEndInfo const &endInfo) { - Counts assertions = m_totals.assertions - endInfo.prevAssertions; - bool missingAssertions = testForMissingAssertions(assertions); + m_reporter->testCaseStarting(testInfo); - if (!m_activeSections.empty()) { - m_activeSections.back()->close(); - m_activeSections.pop_back(); - } + m_activeTestCase = &testCase; - m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, missingAssertions)); - m_messages.clear(); - m_messageScopes.clear(); -} + ITracker &rootTracker = m_trackerContext.startRun(); + assert(rootTracker.isSectionTracker()); + static_cast(rootTracker).addInitialFilters(m_config->getSectionsToRun()); + do { + m_trackerContext.startCycle(); + m_testCaseTracker = + &SectionTracker::acquire(m_trackerContext, + TestCaseTracking::NameAndLocation(testInfo.name, testInfo.lineInfo)); + runCurrentTest(redirectedCout, redirectedCerr); + } while (!m_testCaseTracker->isSuccessfullyCompleted() && !aborting()); -void RunContext::sectionEndedEarly(SectionEndInfo const &endInfo) { - if (m_unfinishedSections.empty()) - m_activeSections.back()->fail(); - else - m_activeSections.back()->close(); - m_activeSections.pop_back(); + Totals deltaTotals = m_totals.delta(prevTotals); + if (testInfo.expectedToFail() && deltaTotals.testCases.passed > 0) { + deltaTotals.assertions.failed++; + deltaTotals.testCases.passed--; + deltaTotals.testCases.failed++; + } + m_totals.testCases += deltaTotals.testCases; + m_reporter->testCaseEnded(TestCaseStats(testInfo, + deltaTotals, + redirectedCout, + redirectedCerr, + aborting())); - m_unfinishedSections.push_back(endInfo); -} + m_activeTestCase = nullptr; + m_testCaseTracker = nullptr; + + return deltaTotals; + } + + IConfigPtr RunContext::config() const { + return m_config; + } + + IStreamingReporter &RunContext::reporter() const { + return *m_reporter; + } + + void RunContext::assertionEnded(AssertionResult const &result) { + if (result.getResultType() == ResultWas::Ok) { + m_totals.assertions.passed++; + m_lastAssertionPassed = true; + } else if (!result.isOk()) { + m_lastAssertionPassed = false; + if (m_activeTestCase->getTestCaseInfo().okToFail()) + m_totals.assertions.failedButOk++; + else + m_totals.assertions.failed++; + } else { + m_lastAssertionPassed = true; + } + + // We have no use for the return value (whether messages should be cleared), because messages were made scoped + // and should be let to clear themselves out. + static_cast(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); + + if (result.getResultType() != ResultWas::Warning) + m_messageScopes.clear(); + + // Reset working state + resetAssertionInfo(); + m_lastResult = result; + } + + void RunContext::resetAssertionInfo() { + m_lastAssertionInfo.macroName = StringRef(); + m_lastAssertionInfo.capturedExpression = "{Unknown expression after the reported line}"_sr; + } + + bool RunContext::sectionStarted(SectionInfo const §ionInfo, Counts &assertions) { + ITracker §ionTracker = SectionTracker::acquire(m_trackerContext, + TestCaseTracking::NameAndLocation(sectionInfo.name, + sectionInfo.lineInfo)); + if (!sectionTracker.isOpen()) + return false; + m_activeSections.push_back(§ionTracker); + + m_lastAssertionInfo.lineInfo = sectionInfo.lineInfo; + + m_reporter->sectionStarting(sectionInfo); + + assertions = m_totals.assertions; + + return true; + } + + auto RunContext::acquireGeneratorTracker(StringRef generatorName, + SourceLineInfo const &lineInfo) -> IGeneratorTracker & { + using namespace Generators; + GeneratorTracker &tracker = GeneratorTracker::acquire(m_trackerContext, + TestCaseTracking::NameAndLocation( + static_cast(generatorName), + lineInfo)); + m_lastAssertionInfo.lineInfo = lineInfo; + return tracker; + } + + bool RunContext::testForMissingAssertions(Counts &assertions) { + if (assertions.total() != 0) + return false; + if (!m_config->warnAboutMissingAssertions()) + return false; + if (m_trackerContext.currentTracker().hasChildren()) + return false; + m_totals.assertions.failed++; + assertions.failed++; + return true; + } + + void RunContext::sectionEnded(SectionEndInfo const &endInfo) { + Counts assertions = m_totals.assertions - endInfo.prevAssertions; + bool missingAssertions = testForMissingAssertions(assertions); + + if (!m_activeSections.empty()) { + m_activeSections.back()->close(); + m_activeSections.pop_back(); + } + + m_reporter->sectionEnded( + SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, missingAssertions)); + m_messages.clear(); + m_messageScopes.clear(); + } + + void RunContext::sectionEndedEarly(SectionEndInfo const &endInfo) { + if (m_unfinishedSections.empty()) + m_activeSections.back()->fail(); + else + m_activeSections.back()->close(); + m_activeSections.pop_back(); + + m_unfinishedSections.push_back(endInfo); + } #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void RunContext::benchmarkPreparing(std::string const& name) { + void RunContext::benchmarkPreparing(std::string const& name) { m_reporter->benchmarkPreparing(name); } void RunContext::benchmarkStarting( BenchmarkInfo const& info ) { @@ -12894,273 +13640,276 @@ void RunContext::sectionEndedEarly(SectionEndInfo const &endInfo) { } #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -void RunContext::pushScopedMessage(MessageInfo const &message) { - m_messages.push_back(message); -} + void RunContext::pushScopedMessage(MessageInfo const &message) { + m_messages.push_back(message); + } -void RunContext::popScopedMessage(MessageInfo const &message) { - m_messages.erase(std::remove(m_messages.begin(), m_messages.end(), message), m_messages.end()); -} + void RunContext::popScopedMessage(MessageInfo const &message) { + m_messages.erase(std::remove(m_messages.begin(), m_messages.end(), message), m_messages.end()); + } -void RunContext::emplaceUnscopedMessage(MessageBuilder const &builder) { - m_messageScopes.emplace_back(builder); -} + void RunContext::emplaceUnscopedMessage(MessageBuilder const &builder) { + m_messageScopes.emplace_back(builder); + } -std::string RunContext::getCurrentTestName() const { - return m_activeTestCase - ? m_activeTestCase->getTestCaseInfo().name - : std::string(); -} + std::string RunContext::getCurrentTestName() const { + return m_activeTestCase + ? m_activeTestCase->getTestCaseInfo().name + : std::string(); + } -const AssertionResult *RunContext::getLastResult() const { - return &(*m_lastResult); -} + const AssertionResult *RunContext::getLastResult() const { + return &(*m_lastResult); + } -void RunContext::exceptionEarlyReported() { - m_shouldReportUnexpected = false; -} + void RunContext::exceptionEarlyReported() { + m_shouldReportUnexpected = false; + } -void RunContext::handleFatalErrorCondition(StringRef message) { - // First notify reporter that bad things happened - m_reporter->fatalErrorEncountered(message); - - // Don't rebuild the result -- the stringification itself can cause more fatal errors - // Instead, fake a result data. - AssertionResultData tempResult(ResultWas::FatalErrorCondition, {false}); - tempResult.message = static_cast(message); - AssertionResult result(m_lastAssertionInfo, tempResult); - - assertionEnded(result); - - handleUnfinishedSections(); - - // Recreate section for test case (as we will lose the one that was in scope) - auto const &testCaseInfo = m_activeTestCase->getTestCaseInfo(); - SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); - - Counts assertions; - assertions.failed = 1; - SectionStats testCaseSectionStats(testCaseSection, assertions, 0, false); - m_reporter->sectionEnded(testCaseSectionStats); - - auto const &testInfo = m_activeTestCase->getTestCaseInfo(); - - Totals deltaTotals; - deltaTotals.testCases.failed = 1; - deltaTotals.assertions.failed = 1; - m_reporter->testCaseEnded(TestCaseStats(testInfo, - deltaTotals, - std::string(), - std::string(), - false)); - m_totals.testCases.failed++; - testGroupEnded(std::string(), m_totals, 1, 1); - m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); -} + void RunContext::handleFatalErrorCondition(StringRef message) { + // First notify reporter that bad things happened + m_reporter->fatalErrorEncountered(message); + + // Don't rebuild the result -- the stringification itself can cause more fatal errors + // Instead, fake a result data. + AssertionResultData tempResult(ResultWas::FatalErrorCondition, {false}); + tempResult.message = static_cast(message); + AssertionResult result(m_lastAssertionInfo, tempResult); + + assertionEnded(result); + + handleUnfinishedSections(); + + // Recreate section for test case (as we will lose the one that was in scope) + auto const &testCaseInfo = m_activeTestCase->getTestCaseInfo(); + SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); + + Counts assertions; + assertions.failed = 1; + SectionStats testCaseSectionStats(testCaseSection, assertions, 0, false); + m_reporter->sectionEnded(testCaseSectionStats); + + auto const &testInfo = m_activeTestCase->getTestCaseInfo(); + + Totals deltaTotals; + deltaTotals.testCases.failed = 1; + deltaTotals.assertions.failed = 1; + m_reporter->testCaseEnded(TestCaseStats(testInfo, + deltaTotals, + std::string(), + std::string(), + false)); + m_totals.testCases.failed++; + testGroupEnded(std::string(), m_totals, 1, 1); + m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); + } -bool RunContext::lastAssertionPassed() { - return m_lastAssertionPassed; -} + bool RunContext::lastAssertionPassed() { + return m_lastAssertionPassed; + } -void RunContext::assertionPassed() { - m_lastAssertionPassed = true; - ++m_totals.assertions.passed; - resetAssertionInfo(); - m_messageScopes.clear(); -} + void RunContext::assertionPassed() { + m_lastAssertionPassed = true; + ++m_totals.assertions.passed; + resetAssertionInfo(); + m_messageScopes.clear(); + } + + bool RunContext::aborting() const { + return m_totals.assertions.failed >= static_cast(m_config->abortAfter()); + } + + void RunContext::runCurrentTest(std::string &redirectedCout, std::string &redirectedCerr) { + auto const &testCaseInfo = m_activeTestCase->getTestCaseInfo(); + SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); + m_reporter->sectionStarting(testCaseSection); + Counts prevAssertions = m_totals.assertions; + double duration = 0; + m_shouldReportUnexpected = true; + m_lastAssertionInfo = {"TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Normal}; + + seedRng(*m_config); + + Timer timer; + CATCH_TRY { + if (m_reporter->getPreferences().shouldRedirectStdOut) { +#if !defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT) + RedirectedStreams redirectedStreams(redirectedCout, redirectedCerr); + + timer.start(); + invokeActiveTestCase(); +#else + OutputRedirect r(redirectedCout, redirectedCerr); + timer.start(); + invokeActiveTestCase(); +#endif + } else { + timer.start(); + invokeActiveTestCase(); + } + duration = timer.getElapsedSeconds(); + } CATCH_CATCH_ANON (TestFailureException &) { + // This just means the test was aborted due to failure + } CATCH_CATCH_ALL { + // Under CATCH_CONFIG_FAST_COMPILE, unexpected exceptions under REQUIRE assertions + // are reported without translation at the point of origin. + if (m_shouldReportUnexpected) { + AssertionReaction dummyReaction; + handleUnexpectedInflightException(m_lastAssertionInfo, translateActiveException(), dummyReaction); + } + } + Counts assertions = m_totals.assertions - prevAssertions; + bool missingAssertions = testForMissingAssertions(assertions); + + m_testCaseTracker->close(); + handleUnfinishedSections(); + m_messages.clear(); + m_messageScopes.clear(); + + SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions); + m_reporter->sectionEnded(testCaseSectionStats); + } -bool RunContext::aborting() const { - return m_totals.assertions.failed >= static_cast(m_config->abortAfter()); -} + void RunContext::invokeActiveTestCase() { + FatalConditionHandlerGuard _(&m_fatalConditionhandler); + m_activeTestCase->invoke(); + } -void RunContext::runCurrentTest(std::string &redirectedCout, std::string &redirectedCerr) { - auto const &testCaseInfo = m_activeTestCase->getTestCaseInfo(); - SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name); - m_reporter->sectionStarting(testCaseSection); - Counts prevAssertions = m_totals.assertions; - double duration = 0; - m_shouldReportUnexpected = true; - m_lastAssertionInfo = {"TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Normal}; + void RunContext::handleUnfinishedSections() { + // If sections ended prematurely due to an exception we stored their + // infos here so we can tear them down outside the unwind process. + for (auto it = m_unfinishedSections.rbegin(), + itEnd = m_unfinishedSections.rend(); + it != itEnd; + ++it) + sectionEnded(*it); + m_unfinishedSections.clear(); + } - seedRng(*m_config); + void RunContext::handleExpr( + AssertionInfo const &info, + ITransientExpression const &expr, + AssertionReaction &reaction + ) { + m_reporter->assertionStarting(info); - Timer timer; - CATCH_TRY { - if (m_reporter->getPreferences().shouldRedirectStdOut) { -#if !defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT) - RedirectedStreams redirectedStreams(redirectedCout, redirectedCerr); + bool negated = isFalseTest(info.resultDisposition); + bool result = expr.getResult() != negated; - timer.start(); - invokeActiveTestCase(); -#else - OutputRedirect r(redirectedCout, redirectedCerr); - timer.start(); - invokeActiveTestCase(); -#endif - } else { - timer.start(); - invokeActiveTestCase(); - } - duration = timer.getElapsedSeconds(); - } CATCH_CATCH_ANON (TestFailureException &) { - // This just means the test was aborted due to failure - } CATCH_CATCH_ALL { - // Under CATCH_CONFIG_FAST_COMPILE, unexpected exceptions under REQUIRE assertions - // are reported without translation at the point of origin. - if (m_shouldReportUnexpected) { - AssertionReaction dummyReaction; - handleUnexpectedInflightException(m_lastAssertionInfo, translateActiveException(), dummyReaction); - } - } - Counts assertions = m_totals.assertions - prevAssertions; - bool missingAssertions = testForMissingAssertions(assertions); - - m_testCaseTracker->close(); - handleUnfinishedSections(); - m_messages.clear(); - m_messageScopes.clear(); - - SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions); - m_reporter->sectionEnded(testCaseSectionStats); -} + if (result) { + if (!m_includeSuccessfulResults) { + assertionPassed(); + } else { + reportExpr(info, ResultWas::Ok, &expr, negated); + } + } else { + reportExpr(info, ResultWas::ExpressionFailed, &expr, negated); + populateReaction(reaction); + } + } -void RunContext::invokeActiveTestCase() { - FatalConditionHandlerGuard _(&m_fatalConditionhandler); - m_activeTestCase->invoke(); -} + void RunContext::reportExpr( + AssertionInfo const &info, + ResultWas::OfType resultType, + ITransientExpression const *expr, + bool negated) { -void RunContext::handleUnfinishedSections() { - // If sections ended prematurely due to an exception we stored their - // infos here so we can tear them down outside the unwind process. - for (auto it = m_unfinishedSections.rbegin(), - itEnd = m_unfinishedSections.rend(); - it != itEnd; - ++it) - sectionEnded(*it); - m_unfinishedSections.clear(); -} + m_lastAssertionInfo = info; + AssertionResultData data(resultType, LazyExpression(negated)); -void RunContext::handleExpr( - AssertionInfo const &info, - ITransientExpression const &expr, - AssertionReaction &reaction -) { - m_reporter->assertionStarting(info); + AssertionResult assertionResult{info, data}; + assertionResult.m_resultData.lazyExpression.m_transientExpression = expr; - bool negated = isFalseTest(info.resultDisposition); - bool result = expr.getResult() != negated; + assertionEnded(assertionResult); + } - if (result) { - if (!m_includeSuccessfulResults) { - assertionPassed(); - } else { - reportExpr(info, ResultWas::Ok, &expr, negated); + void RunContext::handleMessage( + AssertionInfo const &info, + ResultWas::OfType resultType, + StringRef const &message, + AssertionReaction &reaction + ) { + m_reporter->assertionStarting(info); + + m_lastAssertionInfo = info; + + AssertionResultData data(resultType, LazyExpression(false)); + data.message = static_cast(message); + AssertionResult assertionResult{m_lastAssertionInfo, data}; + assertionEnded(assertionResult); + if (!assertionResult.isOk()) + populateReaction(reaction); } - } else { - reportExpr(info, ResultWas::ExpressionFailed, &expr, negated); - populateReaction(reaction); - } -} -void RunContext::reportExpr( - AssertionInfo const &info, - ResultWas::OfType resultType, - ITransientExpression const *expr, - bool negated) { - m_lastAssertionInfo = info; - AssertionResultData data(resultType, LazyExpression(negated)); + void RunContext::handleUnexpectedExceptionNotThrown( + AssertionInfo const &info, + AssertionReaction &reaction + ) { + handleNonExpr(info, Catch::ResultWas::DidntThrowException, reaction); + } - AssertionResult assertionResult{info, data}; - assertionResult.m_resultData.lazyExpression.m_transientExpression = expr; + void RunContext::handleUnexpectedInflightException( + AssertionInfo const &info, + std::string const &message, + AssertionReaction &reaction + ) { + m_lastAssertionInfo = info; + + AssertionResultData data(ResultWas::ThrewException, LazyExpression(false)); + data.message = message; + AssertionResult assertionResult{info, data}; + assertionEnded(assertionResult); + populateReaction(reaction); + } - assertionEnded(assertionResult); -} + void RunContext::populateReaction(AssertionReaction &reaction) { + reaction.shouldDebugBreak = m_config->shouldDebugBreak(); + reaction.shouldThrow = aborting() || (m_lastAssertionInfo.resultDisposition & ResultDisposition::Normal); + } -void RunContext::handleMessage( - AssertionInfo const &info, - ResultWas::OfType resultType, - StringRef const &message, - AssertionReaction &reaction -) { - m_reporter->assertionStarting(info); - - m_lastAssertionInfo = info; - - AssertionResultData data(resultType, LazyExpression(false)); - data.message = static_cast(message); - AssertionResult assertionResult{m_lastAssertionInfo, data}; - assertionEnded(assertionResult); - if (!assertionResult.isOk()) - populateReaction(reaction); -} -void RunContext::handleUnexpectedExceptionNotThrown( - AssertionInfo const &info, - AssertionReaction &reaction -) { - handleNonExpr(info, Catch::ResultWas::DidntThrowException, reaction); -} + void RunContext::handleIncomplete( + AssertionInfo const &info + ) { + m_lastAssertionInfo = info; -void RunContext::handleUnexpectedInflightException( - AssertionInfo const &info, - std::string const &message, - AssertionReaction &reaction -) { - m_lastAssertionInfo = info; - - AssertionResultData data(ResultWas::ThrewException, LazyExpression(false)); - data.message = message; - AssertionResult assertionResult{info, data}; - assertionEnded(assertionResult); - populateReaction(reaction); -} + AssertionResultData data(ResultWas::ThrewException, LazyExpression(false)); + data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; + AssertionResult assertionResult{info, data}; + assertionEnded(assertionResult); + } -void RunContext::populateReaction(AssertionReaction &reaction) { - reaction.shouldDebugBreak = m_config->shouldDebugBreak(); - reaction.shouldThrow = aborting() || (m_lastAssertionInfo.resultDisposition & ResultDisposition::Normal); -} + void RunContext::handleNonExpr( + AssertionInfo const &info, + ResultWas::OfType resultType, + AssertionReaction &reaction + ) { + m_lastAssertionInfo = info; -void RunContext::handleIncomplete( - AssertionInfo const &info -) { - m_lastAssertionInfo = info; + AssertionResultData data(resultType, LazyExpression(false)); + AssertionResult assertionResult{info, data}; + assertionEnded(assertionResult); - AssertionResultData data(ResultWas::ThrewException, LazyExpression(false)); - data.message = "Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE"; - AssertionResult assertionResult{info, data}; - assertionEnded(assertionResult); -} -void RunContext::handleNonExpr( - AssertionInfo const &info, - ResultWas::OfType resultType, - AssertionReaction &reaction -) { - m_lastAssertionInfo = info; - - AssertionResultData data(resultType, LazyExpression(false)); - AssertionResult assertionResult{info, data}; - assertionEnded(assertionResult); - - if (!assertionResult.isOk()) - populateReaction(reaction); -} + if (!assertionResult.isOk()) + populateReaction(reaction); + } -IResultCapture &getResultCapture() { - if (auto *capture = getCurrentContext().getResultCapture()) - return *capture; - else - CATCH_INTERNAL_ERROR("No result capture instance"); -} + IResultCapture &getResultCapture() { + if (auto *capture = getCurrentContext().getResultCapture()) + return *capture; + else + CATCH_INTERNAL_ERROR("No result capture instance"); + } -void seedRng(IConfig const &config) { - if (config.rngSeed() != 0) { - std::srand(config.rngSeed()); - rng().seed(config.rngSeed()); - } -} + void seedRng(IConfig const &config) { + if (config.rngSeed() != 0) { + std::srand(config.rngSeed()); + rng().seed(config.rngSeed()); + } + } -unsigned int rngSeed() { - return getCurrentContext().getConfig()->rngSeed(); -} + unsigned int rngSeed() { + return getCurrentContext().getConfig()->rngSeed(); + } } // end catch_run_context.cpp @@ -13168,26 +13917,26 @@ unsigned int rngSeed() { namespace Catch { -Section::Section(SectionInfo const &info) - : m_info(info), - m_sectionIncluded(getResultCapture().sectionStarted(m_info, m_assertions)) { - m_timer.start(); -} + Section::Section(SectionInfo const &info) + : m_info(info), + m_sectionIncluded(getResultCapture().sectionStarted(m_info, m_assertions)) { + m_timer.start(); + } -Section::~Section() { - if (m_sectionIncluded) { - SectionEndInfo endInfo{m_info, m_assertions, m_timer.getElapsedSeconds()}; - if (uncaught_exceptions()) - getResultCapture().sectionEndedEarly(endInfo); - else - getResultCapture().sectionEnded(endInfo); - } -} + Section::~Section() { + if (m_sectionIncluded) { + SectionEndInfo endInfo{m_info, m_assertions, m_timer.getElapsedSeconds()}; + if (uncaught_exceptions()) + getResultCapture().sectionEndedEarly(endInfo); + else + getResultCapture().sectionEnded(endInfo); + } + } // This indicates whether the section should be executed or not -Section::operator bool() const { - return m_sectionIncluded; -} + Section::operator bool() const { + return m_sectionIncluded; + } } // end namespace Catch // end catch_section.cpp @@ -13195,11 +13944,11 @@ Section::operator bool() const { namespace Catch { -SectionInfo::SectionInfo - (SourceLineInfo const &_lineInfo, - std::string const &_name) - : name(_name), - lineInfo(_lineInfo) {} + SectionInfo::SectionInfo + (SourceLineInfo const &_lineInfo, + std::string const &_name) + : name(_name), + lineInfo(_lineInfo) {} } // end namespace Catch // end catch_section_info.cpp @@ -13211,46 +13960,53 @@ SectionInfo::SectionInfo namespace Catch { -class Session : NonCopyable { - public: + class Session : NonCopyable { + public: + + Session(); + + ~Session() override; + + void showHelp() const; - Session(); - ~Session() override; + void libIdentify(); - void showHelp() const; - void libIdentify(); + int applyCommandLine(int argc, char const *const *argv); - int applyCommandLine(int argc, char const *const *argv); #if defined(CATCH_CONFIG_WCHAR) && defined(_WIN32) && defined(UNICODE) - int applyCommandLine( int argc, wchar_t const * const * argv ); + int applyCommandLine( int argc, wchar_t const * const * argv ); #endif - void useConfigData(ConfigData const &configData); - - template - int run(int argc, CharT const *const argv[]) { - if (m_startupExceptions) - return 1; - int returnCode = applyCommandLine(argc, argv); - if (returnCode == 0) - returnCode = run(); - return returnCode; - } - - int run(); - - clara::Parser const &cli() const; - void cli(clara::Parser const &newParser); - ConfigData &configData(); - Config &config(); - private: - int runInternal(); - - clara::Parser m_cli; - ConfigData m_configData; - std::shared_ptr m_config; - bool m_startupExceptions = false; -}; + void useConfigData(ConfigData const &configData); + + template + int run(int argc, CharT const *const argv[]) { + if (m_startupExceptions) + return 1; + int returnCode = applyCommandLine(argc, argv); + if (returnCode == 0) + returnCode = run(); + return returnCode; + } + + int run(); + + clara::Parser const &cli() const; + + void cli(clara::Parser const &newParser); + + ConfigData &configData(); + + Config &config(); + + private: + int runInternal(); + + clara::Parser m_cli; + ConfigData m_configData; + std::shared_ptr m_config; + bool m_startupExceptions = false; + }; } // end namespace Catch @@ -13262,27 +14018,29 @@ class Session : NonCopyable { namespace Catch { // Versioning information -struct Version { - Version(Version const &) = delete; - Version &operator=(Version const &) = delete; - Version(unsigned int _majorVersion, - unsigned int _minorVersion, - unsigned int _patchNumber, - char const *const _branchName, - unsigned int _buildNumber); - - unsigned int const majorVersion; - unsigned int const minorVersion; - unsigned int const patchNumber; - - // buildNumber is only used if branchName is not null - char const *const branchName; - unsigned int const buildNumber; - - friend std::ostream &operator<<(std::ostream &os, Version const &version); -}; + struct Version { + Version(Version const &) = delete; + + Version &operator=(Version const &) = delete; + + Version(unsigned int _majorVersion, + unsigned int _minorVersion, + unsigned int _patchNumber, + char const *const _branchName, + unsigned int _buildNumber); + + unsigned int const majorVersion; + unsigned int const minorVersion; + unsigned int const patchNumber; -Version const &libraryVersion(); + // buildNumber is only used if branchName is not null + char const *const branchName; + unsigned int const buildNumber; + + friend std::ostream &operator<<(std::ostream &os, Version const &version); + }; + + Version const &libraryVersion(); } // end catch_version.h @@ -13293,192 +14051,194 @@ Version const &libraryVersion(); namespace Catch { -namespace { -const int MaxExitCode = 255; + namespace { + const int MaxExitCode = 255; -IStreamingReporterPtr createReporter(std::string const &reporterName, IConfigPtr const &config) { - auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config); - CATCH_ENFORCE(reporter, "No reporter registered with name: '" << reporterName << "'"); + IStreamingReporterPtr createReporter(std::string const &reporterName, IConfigPtr const &config) { + auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config); + CATCH_ENFORCE(reporter, "No reporter registered with name: '" << reporterName << "'"); - return reporter; -} + return reporter; + } -IStreamingReporterPtr makeReporter(std::shared_ptr const &config) { - if (Catch::getRegistryHub().getReporterRegistry().getListeners().empty()) { - return createReporter(config->getReporterName(), config); - } - - // On older platforms, returning std::unique_ptr - // when the return type is std::unique_ptr - // doesn't compile without a std::move call. However, this causes - // a warning on newer platforms. Thus, we have to work around - // it a bit and downcast the pointer manually. - auto ret = std::unique_ptr(new ListeningReporter); - auto &multi = static_cast(*ret); - auto const &listeners = Catch::getRegistryHub().getReporterRegistry().getListeners(); - for (auto const &listener : listeners) { - multi.addListener(listener->create(Catch::ReporterConfig(config))); - } - multi.addReporter(createReporter(config->getReporterName(), config)); - return ret; -} + IStreamingReporterPtr makeReporter(std::shared_ptr const &config) { + if (Catch::getRegistryHub().getReporterRegistry().getListeners().empty()) { + return createReporter(config->getReporterName(), config); + } -class TestGroup { - public: - explicit TestGroup(std::shared_ptr const &config) - : m_config{config}, m_context{config, makeReporter(config)} { - auto const &allTestCases = getAllTestCasesSorted(*m_config); - m_matches = m_config->testSpec().matchesByFilter(allTestCases, *m_config); - auto const &invalidArgs = m_config->testSpec().getInvalidArgs(); - - if (m_matches.empty() && invalidArgs.empty()) { - for (auto const &test : allTestCases) - if (!test.isHidden()) - m_tests.emplace(&test); - } else { - for (auto const &match : m_matches) - m_tests.insert(match.tests.begin(), match.tests.end()); - } - } + // On older platforms, returning std::unique_ptr + // when the return type is std::unique_ptr + // doesn't compile without a std::move call. However, this causes + // a warning on newer platforms. Thus, we have to work around + // it a bit and downcast the pointer manually. + auto ret = std::unique_ptr(new ListeningReporter); + auto &multi = static_cast(*ret); + auto const &listeners = Catch::getRegistryHub().getReporterRegistry().getListeners(); + for (auto const &listener: listeners) { + multi.addListener(listener->create(Catch::ReporterConfig(config))); + } + multi.addReporter(createReporter(config->getReporterName(), config)); + return ret; + } - Totals execute() { - auto const &invalidArgs = m_config->testSpec().getInvalidArgs(); - Totals totals; - m_context.testGroupStarting(m_config->name(), 1, 1); - for (auto const &testCase : m_tests) { - if (!m_context.aborting()) - totals += m_context.runTest(*testCase); - else - m_context.reporter().skipTest(*testCase); - } + class TestGroup { + public: + explicit TestGroup(std::shared_ptr const &config) + : m_config{config}, m_context{config, makeReporter(config)} { + auto const &allTestCases = getAllTestCasesSorted(*m_config); + m_matches = m_config->testSpec().matchesByFilter(allTestCases, *m_config); + auto const &invalidArgs = m_config->testSpec().getInvalidArgs(); + + if (m_matches.empty() && invalidArgs.empty()) { + for (auto const &test: allTestCases) + if (!test.isHidden()) + m_tests.emplace(&test); + } else { + for (auto const &match: m_matches) + m_tests.insert(match.tests.begin(), match.tests.end()); + } + } - for (auto const &match : m_matches) { - if (match.tests.empty()) { - m_context.reporter().noMatchingTestCases(match.name); - totals.error = -1; - } - } + Totals execute() { + auto const &invalidArgs = m_config->testSpec().getInvalidArgs(); + Totals totals; + m_context.testGroupStarting(m_config->name(), 1, 1); + for (auto const &testCase: m_tests) { + if (!m_context.aborting()) + totals += m_context.runTest(*testCase); + else + m_context.reporter().skipTest(*testCase); + } - if (!invalidArgs.empty()) { - for (auto const &invalidArg : invalidArgs) - m_context.reporter().reportInvalidArguments(invalidArg); - } + for (auto const &match: m_matches) { + if (match.tests.empty()) { + m_context.reporter().noMatchingTestCases(match.name); + totals.error = -1; + } + } - m_context.testGroupEnded(m_config->name(), totals, 1, 1); - return totals; - } + if (!invalidArgs.empty()) { + for (auto const &invalidArg: invalidArgs) + m_context.reporter().reportInvalidArguments(invalidArg); + } - private: - using Tests = std::set; + m_context.testGroupEnded(m_config->name(), totals, 1, 1); + return totals; + } - std::shared_ptr m_config; - RunContext m_context; - Tests m_tests; - TestSpec::Matches m_matches; -}; + private: + using Tests = std::set; -void applyFilenamesAsTags(Catch::IConfig const &config) { - auto &tests = const_cast &>(getAllTestCasesSorted(config)); - for (auto &testCase : tests) { - auto tags = testCase.tags; + std::shared_ptr m_config; + RunContext m_context; + Tests m_tests; + TestSpec::Matches m_matches; + }; - std::string filename = testCase.lineInfo.file; - auto lastSlash = filename.find_last_of("\\/"); - if (lastSlash != std::string::npos) { - filename.erase(0, lastSlash); - filename[0] = '#'; - } else { - filename.insert(0, "#"); - } + void applyFilenamesAsTags(Catch::IConfig const &config) { + auto &tests = const_cast &>(getAllTestCasesSorted(config)); + for (auto &testCase: tests) { + auto tags = testCase.tags; - auto lastDot = filename.find_last_of('.'); - if (lastDot != std::string::npos) { - filename.erase(lastDot); - } + std::string filename = testCase.lineInfo.file; + auto lastSlash = filename.find_last_of("\\/"); + if (lastSlash != std::string::npos) { + filename.erase(0, lastSlash); + filename[0] = '#'; + } else { + filename.insert(0, "#"); + } - tags.push_back(std::move(filename)); - setTags(testCase, tags); - } -} + auto lastDot = filename.find_last_of('.'); + if (lastDot != std::string::npos) { + filename.erase(lastDot); + } -} // anon namespace + tags.push_back(std::move(filename)); + setTags(testCase, tags); + } + } + + } // anon namespace -Session::Session() { - static bool alreadyInstantiated = false; - if (alreadyInstantiated) { - CATCH_TRY { CATCH_INTERNAL_ERROR("Only one instance of Catch::Session can ever be used"); } - CATCH_CATCH_ALL { getMutableRegistryHub().registerStartupException(); } - } + Session::Session() { + static bool alreadyInstantiated = false; + if (alreadyInstantiated) { + CATCH_TRY { CATCH_INTERNAL_ERROR("Only one instance of Catch::Session can ever be used"); } + CATCH_CATCH_ALL { getMutableRegistryHub().registerStartupException(); } + } - // There cannot be exceptions at startup in no-exception mode. + // There cannot be exceptions at startup in no-exception mode. #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - const auto &exceptions = getRegistryHub().getStartupExceptionRegistry().getExceptions(); - if (!exceptions.empty()) { - config(); - getCurrentMutableContext().setConfig(m_config); - - m_startupExceptions = true; - Colour colourGuard(Colour::Red); - Catch::cerr() << "Errors occurred during startup!" << '\n'; - // iterate over all exceptions and notify user - for (const auto &ex_ptr : exceptions) { - try { - std::rethrow_exception(ex_ptr); - } catch (std::exception const &ex) { - Catch::cerr() << Column(ex.what()).indent(2) << '\n'; - } - } - } + const auto &exceptions = getRegistryHub().getStartupExceptionRegistry().getExceptions(); + if (!exceptions.empty()) { + config(); + getCurrentMutableContext().setConfig(m_config); + + m_startupExceptions = true; + Colour colourGuard(Colour::Red); + Catch::cerr() << "Errors occurred during startup!" << '\n'; + // iterate over all exceptions and notify user + for (const auto &ex_ptr: exceptions) { + try { + std::rethrow_exception(ex_ptr); + } catch (std::exception const &ex) { + Catch::cerr() << Column(ex.what()).indent(2) << '\n'; + } + } + } #endif - alreadyInstantiated = true; - m_cli = makeCommandLineParser(m_configData); -} -Session::~Session() { - Catch::cleanUp(); -} + alreadyInstantiated = true; + m_cli = makeCommandLineParser(m_configData); + } -void Session::showHelp() const { - Catch::cout() - << "\nCatch v" << libraryVersion() << "\n" - << m_cli << std::endl - << "For more detailed usage please see the project docs\n" << std::endl; -} -void Session::libIdentify() { - Catch::cout() - << std::left << std::setw(16) << "description: " << "A Catch2 test executable\n" - << std::left << std::setw(16) << "category: " << "testframework\n" - << std::left << std::setw(16) << "framework: " << "Catch Test\n" - << std::left << std::setw(16) << "version: " << libraryVersion() << std::endl; -} + Session::~Session() { + Catch::cleanUp(); + } -int Session::applyCommandLine(int argc, char const *const *argv) { - if (m_startupExceptions) - return 1; - - auto result = m_cli.parse(clara::Args(argc, argv)); - if (!result) { - config(); - getCurrentMutableContext().setConfig(m_config); - Catch::cerr() - << Colour(Colour::Red) - << "\nError(s) in input:\n" - << Column(result.errorMessage()).indent(2) - << "\n\n"; - Catch::cerr() << "Run with -? for usage\n" << std::endl; - return MaxExitCode; - } - - if (m_configData.showHelp) - showHelp(); - if (m_configData.libIdentify) - libIdentify(); - m_config.reset(); - return 0; -} + void Session::showHelp() const { + Catch::cout() + << "\nCatch v" << libraryVersion() << "\n" + << m_cli << std::endl + << "For more detailed usage please see the project docs\n" << std::endl; + } + + void Session::libIdentify() { + Catch::cout() + << std::left << std::setw(16) << "description: " << "A Catch2 test executable\n" + << std::left << std::setw(16) << "category: " << "testframework\n" + << std::left << std::setw(16) << "framework: " << "Catch Test\n" + << std::left << std::setw(16) << "version: " << libraryVersion() << std::endl; + } + + int Session::applyCommandLine(int argc, char const *const *argv) { + if (m_startupExceptions) + return 1; + + auto result = m_cli.parse(clara::Args(argc, argv)); + if (!result) { + config(); + getCurrentMutableContext().setConfig(m_config); + Catch::cerr() + << Colour(Colour::Red) + << "\nError(s) in input:\n" + << Column(result.errorMessage()).indent(2) + << "\n\n"; + Catch::cerr() << "Run with -? for usage\n" << std::endl; + return MaxExitCode; + } + + if (m_configData.showHelp) + showHelp(); + if (m_configData.libIdentify) + libIdentify(); + m_config.reset(); + return 0; + } #if defined(CATCH_CONFIG_WCHAR) && defined(_WIN32) && defined(UNICODE) - int Session::applyCommandLine( int argc, wchar_t const * const * argv ) { + int Session::applyCommandLine( int argc, wchar_t const * const * argv ) { char **utf8Argv = new char *[ argc ]; @@ -13501,77 +14261,80 @@ int Session::applyCommandLine(int argc, char const *const *argv) { } #endif -void Session::useConfigData(ConfigData const &configData) { - m_configData = configData; - m_config.reset(); -} + void Session::useConfigData(ConfigData const &configData) { + m_configData = configData; + m_config.reset(); + } -int Session::run() { - if ((m_configData.waitForKeypress & WaitForKeypress::BeforeStart) != 0) { - Catch::cout() << "...waiting for enter/ return before starting" << std::endl; - static_cast(std::getchar()); - } - int exitCode = runInternal(); - if ((m_configData.waitForKeypress & WaitForKeypress::BeforeExit) != 0) { - Catch::cout() << "...waiting for enter/ return before exiting, with code: " << exitCode << std::endl; - static_cast(std::getchar()); - } - return exitCode; -} + int Session::run() { + if ((m_configData.waitForKeypress & WaitForKeypress::BeforeStart) != 0) { + Catch::cout() << "...waiting for enter/ return before starting" << std::endl; + static_cast(std::getchar()); + } + int exitCode = runInternal(); + if ((m_configData.waitForKeypress & WaitForKeypress::BeforeExit) != 0) { + Catch::cout() << "...waiting for enter/ return before exiting, with code: " << exitCode << std::endl; + static_cast(std::getchar()); + } + return exitCode; + } -clara::Parser const &Session::cli() const { - return m_cli; -} -void Session::cli(clara::Parser const &newParser) { - m_cli = newParser; -} -ConfigData &Session::configData() { - return m_configData; -} -Config &Session::config() { - if (!m_config) - m_config = std::make_shared(m_configData); - return *m_config; -} + clara::Parser const &Session::cli() const { + return m_cli; + } + + void Session::cli(clara::Parser const &newParser) { + m_cli = newParser; + } + + ConfigData &Session::configData() { + return m_configData; + } + + Config &Session::config() { + if (!m_config) + m_config = std::make_shared(m_configData); + return *m_config; + } -int Session::runInternal() { - if (m_startupExceptions) - return 1; + int Session::runInternal() { + if (m_startupExceptions) + return 1; - if (m_configData.showHelp || m_configData.libIdentify) { - return 0; - } + if (m_configData.showHelp || m_configData.libIdentify) { + return 0; + } - CATCH_TRY { - config(); // Force config to be constructed + CATCH_TRY { + config(); // Force config to be constructed - seedRng(*m_config); + seedRng(*m_config); - if (m_configData.filenamesAsTags) - applyFilenamesAsTags(*m_config); + if (m_configData.filenamesAsTags) + applyFilenamesAsTags(*m_config); - // Handle list request - if (Option listed = list(m_config)) - return (std::min) (MaxExitCode, static_cast(*listed)); + // Handle list request + if (Option listed = list(m_config)) + return (std::min) (MaxExitCode, static_cast(*listed)); - TestGroup tests{m_config}; - auto const totals = tests.execute(); + TestGroup tests{m_config}; + auto const totals = tests.execute(); - if (m_config->warnAboutNoTests() && totals.error == -1) - return 2; + if (m_config->warnAboutNoTests() && totals.error == -1) + return 2; - // Note that on unices only the lower 8 bits are usually used, clamping - // the return value to 255 prevents false negative when some multiple - // of 256 tests has failed - return (std::min) (MaxExitCode, (std::max) (totals.error, static_cast(totals.assertions.failed))); - } + // Note that on unices only the lower 8 bits are usually used, clamping + // the return value to 255 prevents false negative when some multiple + // of 256 tests has failed + return (std::min) (MaxExitCode, (std::max) (totals.error, static_cast(totals.assertions.failed))); + } #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - catch (std::exception &ex) { - Catch::cerr() << ex.what() << std::endl; - return MaxExitCode; - } + catch (std::exception &ex) { + Catch::cerr() << ex.what() << std::endl; + return MaxExitCode; + } #endif -} + } } // end namespace Catch // end catch_session.cpp @@ -13581,27 +14344,28 @@ int Session::runInternal() { namespace Catch { -namespace { -static auto getSingletons() -> std::vector *& { - static std::vector *g_singletons = nullptr; - if (!g_singletons) - g_singletons = new std::vector(); - return g_singletons; -} -} + namespace { + static auto getSingletons() -> std::vector *& { + static std::vector *g_singletons = nullptr; + if (!g_singletons) + g_singletons = new std::vector(); + return g_singletons; + } + } -ISingleton::~ISingleton() {} + ISingleton::~ISingleton() {} -void addSingleton(ISingleton *singleton) { - getSingletons()->push_back(singleton); -} -void cleanupSingletons() { - auto &singletons = getSingletons(); - for (auto singleton : *singletons) - delete singleton; - delete singletons; - singletons = nullptr; -} + void addSingleton(ISingleton *singleton) { + getSingletons()->push_back(singleton); + } + + void cleanupSingletons() { + auto &singletons = getSingletons(); + for (auto singleton: *singletons) + delete singleton; + delete singletons; + singletons = nullptr; + } } // namespace Catch // end catch_singletons.cpp @@ -13609,18 +14373,18 @@ void cleanupSingletons() { #if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) namespace Catch { -void StartupExceptionRegistry::add(std::exception_ptr const &exception) noexcept { - CATCH_TRY { - m_exceptions.push_back(exception); - } CATCH_CATCH_ALL { - // If we run out of memory during start-up there's really not a lot more we can do about it - std::terminate(); - } -} + void StartupExceptionRegistry::add(std::exception_ptr const &exception) noexcept { + CATCH_TRY { + m_exceptions.push_back(exception); + } CATCH_CATCH_ALL { + // If we run out of memory during start-up there's really not a lot more we can do about it + std::terminate(); + } + } -std::vector const &StartupExceptionRegistry::getExceptions() const noexcept { - return m_exceptions; -} + std::vector const &StartupExceptionRegistry::getExceptions() const noexcept { + return m_exceptions; + } } // end namespace Catch #endif @@ -13636,161 +14400,168 @@ std::vector const &StartupExceptionRegistry::getExceptions() namespace Catch { -Catch::IStream::~IStream() = default; + Catch::IStream::~IStream() = default; -namespace Detail { -namespace { -template -class StreamBufImpl : public std::streambuf { - char data[bufferSize]; - WriterF m_writer; - - public: - StreamBufImpl() { - setp(data, data + sizeof(data)); - } - - ~StreamBufImpl() noexcept { - StreamBufImpl::sync(); - } - - private: - int overflow(int c) override { - sync(); - - if (c != EOF) { - if (pbase() == epptr()) - m_writer(std::string(1, static_cast( c ))); - else - sputc(static_cast( c )); - } - return 0; - } - - int sync() override { - if (pbase() != pptr()) { - m_writer(std::string(pbase(), static_cast( pptr() - pbase()))); - setp(pbase(), epptr()); - } - return 0; - } -}; + namespace Detail { + namespace { + template + class StreamBufImpl : public std::streambuf { + char data[bufferSize]; + WriterF m_writer; + + public: + StreamBufImpl() { + setp(data, data + sizeof(data)); + } + + ~StreamBufImpl() noexcept { + StreamBufImpl::sync(); + } + + private: + int overflow(int c) override { + sync(); + + if (c != EOF) { + if (pbase() == epptr()) + m_writer(std::string(1, static_cast( c ))); + else + sputc(static_cast( c )); + } + return 0; + } + + int sync() override { + if (pbase() != pptr()) { + m_writer(std::string(pbase(), static_cast( pptr() - pbase()))); + setp(pbase(), epptr()); + } + return 0; + } + }; /////////////////////////////////////////////////////////////////////////// -struct OutputDebugWriter { + struct OutputDebugWriter { - void operator()(std::string const &str) { - writeToDebugConsole(str); - } -}; + void operator()(std::string const &str) { + writeToDebugConsole(str); + } + }; /////////////////////////////////////////////////////////////////////////// -class FileStream : public IStream { - mutable std::ofstream m_ofs; - public: - FileStream(StringRef filename) { - m_ofs.open(filename.c_str()); - CATCH_ENFORCE(!m_ofs.fail(), "Unable to open file: '" << filename << "'"); - } - ~FileStream() override = default; - public: // IStream - std::ostream &stream() const override { - return m_ofs; - } -}; + class FileStream : public IStream { + mutable std::ofstream m_ofs; + public: + FileStream(StringRef filename) { + m_ofs.open(filename.c_str()); + CATCH_ENFORCE(!m_ofs.fail(), "Unable to open file: '" << filename << "'"); + } + + ~FileStream() override = default; + + public: // IStream + std::ostream &stream() const override { + return m_ofs; + } + }; /////////////////////////////////////////////////////////////////////////// -class CoutStream : public IStream { - mutable std::ostream m_os; - public: - // Store the streambuf from cout up-front because - // cout may get redirected when running tests - CoutStream() : m_os(Catch::cout().rdbuf()) {} - ~CoutStream() override = default; + class CoutStream : public IStream { + mutable std::ostream m_os; + public: + // Store the streambuf from cout up-front because + // cout may get redirected when running tests + CoutStream() : m_os(Catch::cout().rdbuf()) {} + + ~CoutStream() override = default; - public: // IStream - std::ostream &stream() const override { return m_os; } -}; + public: // IStream + std::ostream &stream() const override { return m_os; } + }; /////////////////////////////////////////////////////////////////////////// -class DebugOutStream : public IStream { - std::unique_ptr> m_streamBuf; - mutable std::ostream m_os; - public: - DebugOutStream() - : m_streamBuf(new StreamBufImpl()), - m_os(m_streamBuf.get()) {} + class DebugOutStream : public IStream { + std::unique_ptr> m_streamBuf; + mutable std::ostream m_os; + public: + DebugOutStream() + : m_streamBuf(new StreamBufImpl()), + m_os(m_streamBuf.get()) {} - ~DebugOutStream() override = default; + ~DebugOutStream() override = default; - public: // IStream - std::ostream &stream() const override { return m_os; } -}; + public: // IStream + std::ostream &stream() const override { return m_os; } + }; -} -} // namespace anon::detail + } + } // namespace anon::detail /////////////////////////////////////////////////////////////////////////// -auto makeStream(StringRef const &filename) -> IStream const * { - if (filename.empty()) - return new Detail::CoutStream(); - else if (filename[0] == '%') { - if (filename == "%debug") - return new Detail::DebugOutStream(); - else - CATCH_ERROR("Unrecognised stream: '" << filename << "'"); - } else - return new Detail::FileStream(filename); -} + auto makeStream(StringRef const &filename) -> IStream const * { + if (filename.empty()) + return new Detail::CoutStream(); + else if (filename[0] == '%') { + if (filename == "%debug") + return new Detail::DebugOutStream(); + else + CATCH_ERROR("Unrecognised stream: '" << filename << "'"); + } else + return new Detail::FileStream(filename); + } // This class encapsulates the idea of a pool of ostringstreams that can be reused. -struct StringStreams { - std::vector> m_streams; - std::vector m_unused; - std::ostringstream m_referenceStream; // Used for copy state/ flags from - - auto add() -> std::size_t { - if (m_unused.empty()) { - m_streams.push_back(std::unique_ptr(new std::ostringstream)); - return m_streams.size() - 1; - } else { - auto index = m_unused.back(); - m_unused.pop_back(); - return index; - } - } + struct StringStreams { + std::vector> m_streams; + std::vector m_unused; + std::ostringstream m_referenceStream; // Used for copy state/ flags from + + auto add() -> std::size_t { + if (m_unused.empty()) { + m_streams.push_back(std::unique_ptr(new std::ostringstream)); + return m_streams.size() - 1; + } else { + auto index = m_unused.back(); + m_unused.pop_back(); + return index; + } + } - void release(std::size_t index) { - m_streams[index]->copyfmt(m_referenceStream); // Restore initial flags and other state - m_unused.push_back(index); - } -}; + void release(std::size_t index) { + m_streams[index]->copyfmt(m_referenceStream); // Restore initial flags and other state + m_unused.push_back(index); + } + }; -ReusableStringStream::ReusableStringStream() - : m_index(Singleton::getMutable().add()), - m_oss(Singleton::getMutable().m_streams[m_index].get()) {} + ReusableStringStream::ReusableStringStream() + : m_index(Singleton::getMutable().add()), + m_oss(Singleton::getMutable().m_streams[m_index].get()) {} -ReusableStringStream::~ReusableStringStream() { - static_cast( m_oss )->str(""); - m_oss->clear(); - Singleton::getMutable().release(m_index); -} + ReusableStringStream::~ReusableStringStream() { + static_cast( m_oss )->str(""); + m_oss->clear(); + Singleton::getMutable().release(m_index); + } -auto ReusableStringStream::str() const -> std::string { - return static_cast( m_oss )->str(); -} + auto ReusableStringStream::str() const -> std::string { + return static_cast( m_oss )->str(); + } /////////////////////////////////////////////////////////////////////////// #ifndef CATCH_CONFIG_NOSTDOUT // If you #define this you must implement these functions -std::ostream &cout() { return std::cout; } -std::ostream &cerr() { return std::cerr; } -std::ostream &clog() { return std::clog; } + + std::ostream &cout() { return std::cout; } + + std::ostream &cerr() { return std::cerr; } + + std::ostream &clog() { return std::clog; } + #endif } // end catch_stream.cpp @@ -13804,94 +14575,101 @@ std::ostream &clog() { return std::clog; } namespace Catch { -namespace { -char toLowerCh(char c) { - return static_cast( std::tolower(static_cast(c))); -} -} + namespace { + char toLowerCh(char c) { + return static_cast( std::tolower(static_cast(c))); + } + } -bool startsWith(std::string const &s, std::string const &prefix) { - return s.size() >= prefix.size() && std::equal(prefix.begin(), prefix.end(), s.begin()); -} -bool startsWith(std::string const &s, char prefix) { - return !s.empty() && s[0] == prefix; -} -bool endsWith(std::string const &s, std::string const &suffix) { - return s.size() >= suffix.size() && std::equal(suffix.rbegin(), suffix.rend(), s.rbegin()); -} -bool endsWith(std::string const &s, char suffix) { - return !s.empty() && s[s.size() - 1] == suffix; -} -bool contains(std::string const &s, std::string const &infix) { - return s.find(infix) != std::string::npos; -} -void toLowerInPlace(std::string &s) { - std::transform(s.begin(), s.end(), s.begin(), toLowerCh); -} -std::string toLower(std::string const &s) { - std::string lc = s; - toLowerInPlace(lc); - return lc; -} -std::string trim(std::string const &str) { - static char const *whitespaceChars = "\n\r\t "; - std::string::size_type start = str.find_first_not_of(whitespaceChars); - std::string::size_type end = str.find_last_not_of(whitespaceChars); + bool startsWith(std::string const &s, std::string const &prefix) { + return s.size() >= prefix.size() && std::equal(prefix.begin(), prefix.end(), s.begin()); + } - return start != std::string::npos ? str.substr(start, 1 + end - start) : std::string(); -} + bool startsWith(std::string const &s, char prefix) { + return !s.empty() && s[0] == prefix; + } -StringRef trim(StringRef ref) { - const auto is_ws = [](char c) { - return c == ' ' || c == '\t' || c == '\n' || c == '\r'; - }; - size_t real_begin = 0; - while (real_begin < ref.size() && is_ws(ref[real_begin])) { ++real_begin; } - size_t real_end = ref.size(); - while (real_end > real_begin && is_ws(ref[real_end - 1])) { --real_end; } + bool endsWith(std::string const &s, std::string const &suffix) { + return s.size() >= suffix.size() && std::equal(suffix.rbegin(), suffix.rend(), s.rbegin()); + } - return ref.substr(real_begin, real_end - real_begin); -} + bool endsWith(std::string const &s, char suffix) { + return !s.empty() && s[s.size() - 1] == suffix; + } -bool replaceInPlace(std::string &str, std::string const &replaceThis, std::string const &withThis) { - bool replaced = false; - std::size_t i = str.find(replaceThis); - while (i != std::string::npos) { - replaced = true; - str = str.substr(0, i) + withThis + str.substr(i + replaceThis.size()); - if (i < str.size() - withThis.size()) - i = str.find(replaceThis, i + withThis.size()); - else - i = std::string::npos; - } - return replaced; -} + bool contains(std::string const &s, std::string const &infix) { + return s.find(infix) != std::string::npos; + } -std::vector splitStringRef(StringRef str, char delimiter) { - std::vector subStrings; - std::size_t start = 0; - for (std::size_t pos = 0; pos < str.size(); ++pos) { - if (str[pos] == delimiter) { - if (pos - start > 1) - subStrings.push_back(str.substr(start, pos - start)); - start = pos + 1; - } - } - if (start < str.size()) - subStrings.push_back(str.substr(start, str.size() - start)); - return subStrings; -} + void toLowerInPlace(std::string &s) { + std::transform(s.begin(), s.end(), s.begin(), toLowerCh); + } + + std::string toLower(std::string const &s) { + std::string lc = s; + toLowerInPlace(lc); + return lc; + } + + std::string trim(std::string const &str) { + static char const *whitespaceChars = "\n\r\t "; + std::string::size_type start = str.find_first_not_of(whitespaceChars); + std::string::size_type end = str.find_last_not_of(whitespaceChars); + + return start != std::string::npos ? str.substr(start, 1 + end - start) : std::string(); + } + + StringRef trim(StringRef ref) { + const auto is_ws = [](char c) { + return c == ' ' || c == '\t' || c == '\n' || c == '\r'; + }; + size_t real_begin = 0; + while (real_begin < ref.size() && is_ws(ref[real_begin])) { ++real_begin; } + size_t real_end = ref.size(); + while (real_end > real_begin && is_ws(ref[real_end - 1])) { --real_end; } + + return ref.substr(real_begin, real_end - real_begin); + } + + bool replaceInPlace(std::string &str, std::string const &replaceThis, std::string const &withThis) { + bool replaced = false; + std::size_t i = str.find(replaceThis); + while (i != std::string::npos) { + replaced = true; + str = str.substr(0, i) + withThis + str.substr(i + replaceThis.size()); + if (i < str.size() - withThis.size()) + i = str.find(replaceThis, i + withThis.size()); + else + i = std::string::npos; + } + return replaced; + } + + std::vector splitStringRef(StringRef str, char delimiter) { + std::vector subStrings; + std::size_t start = 0; + for (std::size_t pos = 0; pos < str.size(); ++pos) { + if (str[pos] == delimiter) { + if (pos - start > 1) + subStrings.push_back(str.substr(start, pos - start)); + start = pos + 1; + } + } + if (start < str.size()) + subStrings.push_back(str.substr(start, str.size() - start)); + return subStrings; + } -pluralise::pluralise(std::size_t count, std::string const &label) - : m_count(count), - m_label(label) {} + pluralise::pluralise(std::size_t count, std::string const &label) + : m_count(count), + m_label(label) {} -std::ostream &operator<<(std::ostream &os, pluralise const &pluraliser) { - os << pluraliser.m_count << ' ' << pluraliser.m_label; - if (pluraliser.m_count != 1) - os << 's'; - return os; -} + std::ostream &operator<<(std::ostream &os, pluralise const &pluraliser) { + os << pluraliser.m_count << ' ' << pluraliser.m_label; + if (pluraliser.m_count != 1) + os << 's'; + return os; + } } // end catch_string_manip.cpp @@ -13903,58 +14681,60 @@ std::ostream &operator<<(std::ostream &os, pluralise const &pluraliser) { #include namespace Catch { -StringRef::StringRef(char const *rawChars) noexcept - : StringRef(rawChars, static_cast(std::strlen(rawChars))) {} + StringRef::StringRef(char const *rawChars) noexcept + : StringRef(rawChars, static_cast(std::strlen(rawChars))) {} -auto StringRef::c_str() const -> char const * { - CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance"); - return m_start; -} -auto StringRef::data() const noexcept -> char const * { - return m_start; -} + auto StringRef::c_str() const -> char const * { + CATCH_ENFORCE(isNullTerminated(), "Called StringRef::c_str() on a non-null-terminated instance"); + return m_start; + } -auto StringRef::substr(size_type start, size_type size) const noexcept -> StringRef { - if (start < m_size) { - return StringRef(m_start + start, (std::min) (m_size - start, size)); - } else { - return StringRef(); - } -} -auto StringRef::operator==(StringRef const &other) const noexcept -> bool { - return m_size == other.m_size - && (std::memcmp(m_start, other.m_start, m_size) == 0); -} + auto StringRef::data() const noexcept -> char const * { + return m_start; + } -auto operator<<(std::ostream &os, StringRef const &str) -> std::ostream & { - return os.write(str.data(), str.size()); -} + auto StringRef::substr(size_type start, size_type size) const noexcept -> StringRef { + if (start < m_size) { + return StringRef(m_start + start, (std::min) (m_size - start, size)); + } else { + return StringRef(); + } + } -auto operator+=(std::string &lhs, StringRef const &rhs) -> std::string & { - lhs.append(rhs.data(), rhs.size()); - return lhs; -} + auto StringRef::operator==(StringRef const &other) const noexcept -> bool { + return m_size == other.m_size + && (std::memcmp(m_start, other.m_start, m_size) == 0); + } + + auto operator<<(std::ostream &os, StringRef const &str) -> std::ostream & { + return os.write(str.data(), str.size()); + } + + auto operator+=(std::string &lhs, StringRef const &rhs) -> std::string & { + lhs.append(rhs.data(), rhs.size()); + return lhs; + } } // namespace Catch // end catch_stringref.cpp // start catch_tag_alias.cpp namespace Catch { -TagAlias::TagAlias(std::string const &_tag, SourceLineInfo _lineInfo) : tag(_tag), lineInfo(_lineInfo) {} + TagAlias::TagAlias(std::string const &_tag, SourceLineInfo _lineInfo) : tag(_tag), lineInfo(_lineInfo) {} } // end catch_tag_alias.cpp // start catch_tag_alias_autoregistrar.cpp namespace Catch { -RegistrarForTagAliases::RegistrarForTagAliases(char const *alias, char const *tag, SourceLineInfo const &lineInfo) { - CATCH_TRY { - getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo); - } CATCH_CATCH_ALL { - // Do not throw when constructing global objects, instead register the exception to be processed later - getMutableRegistryHub().registerStartupException(); - } -} + RegistrarForTagAliases::RegistrarForTagAliases(char const *alias, char const *tag, SourceLineInfo const &lineInfo) { + CATCH_TRY { + getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo); + } CATCH_CATCH_ALL { + // Do not throw when constructing global objects, instead register the exception to be processed later + getMutableRegistryHub().registerStartupException(); + } + } } // end catch_tag_alias_autoregistrar.cpp @@ -13964,44 +14744,44 @@ RegistrarForTagAliases::RegistrarForTagAliases(char const *alias, char const *ta namespace Catch { -TagAliasRegistry::~TagAliasRegistry() {} + TagAliasRegistry::~TagAliasRegistry() {} -TagAlias const *TagAliasRegistry::find(std::string const &alias) const { - auto it = m_registry.find(alias); - if (it != m_registry.end()) - return &(it->second); - else - return nullptr; -} + TagAlias const *TagAliasRegistry::find(std::string const &alias) const { + auto it = m_registry.find(alias); + if (it != m_registry.end()) + return &(it->second); + else + return nullptr; + } -std::string TagAliasRegistry::expandAliases(std::string const &unexpandedTestSpec) const { - std::string expandedTestSpec = unexpandedTestSpec; - for (auto const ®istryKvp : m_registry) { - std::size_t pos = expandedTestSpec.find(registryKvp.first); - if (pos != std::string::npos) { - expandedTestSpec = expandedTestSpec.substr(0, pos) + - registryKvp.second.tag + - expandedTestSpec.substr(pos + registryKvp.first.size()); - } - } - return expandedTestSpec; -} + std::string TagAliasRegistry::expandAliases(std::string const &unexpandedTestSpec) const { + std::string expandedTestSpec = unexpandedTestSpec; + for (auto const ®istryKvp: m_registry) { + std::size_t pos = expandedTestSpec.find(registryKvp.first); + if (pos != std::string::npos) { + expandedTestSpec = expandedTestSpec.substr(0, pos) + + registryKvp.second.tag + + expandedTestSpec.substr(pos + registryKvp.first.size()); + } + } + return expandedTestSpec; + } -void TagAliasRegistry::add(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo) { - CATCH_ENFORCE(startsWith(alias, "[@") && endsWith(alias, ']'), - "error: tag alias, '" << alias << "' is not of the form [@alias name].\n" << lineInfo); + void TagAliasRegistry::add(std::string const &alias, std::string const &tag, SourceLineInfo const &lineInfo) { + CATCH_ENFORCE(startsWith(alias, "[@") && endsWith(alias, ']'), + "error: tag alias, '" << alias << "' is not of the form [@alias name].\n" << lineInfo); - CATCH_ENFORCE(m_registry.insert(std::make_pair(alias, TagAlias(tag, lineInfo))).second, - "error: tag alias, '" << alias << "' already registered.\n" - << "\tFirst seen at: " << find(alias)->lineInfo << "\n" - << "\tRedefined at: " << lineInfo); -} + CATCH_ENFORCE(m_registry.insert(std::make_pair(alias, TagAlias(tag, lineInfo))).second, + "error: tag alias, '" << alias << "' already registered.\n" + << "\tFirst seen at: " << find(alias)->lineInfo << "\n" + << "\tRedefined at: " << lineInfo); + } -ITagAliasRegistry::~ITagAliasRegistry() {} + ITagAliasRegistry::~ITagAliasRegistry() {} -ITagAliasRegistry const &ITagAliasRegistry::get() { - return getRegistryHub().getTagAliasRegistry(); -} + ITagAliasRegistry const &ITagAliasRegistry::get() { + return getRegistryHub().getTagAliasRegistry(); + } } // end namespace Catch // end catch_tag_alias_registry.cpp @@ -14014,164 +14794,169 @@ ITagAliasRegistry const &ITagAliasRegistry::get() { namespace Catch { -namespace { -TestCaseInfo::SpecialProperties parseSpecialTag(std::string const &tag) { - if (startsWith(tag, '.') || - tag == "!hide") - return TestCaseInfo::IsHidden; - else if (tag == "!throws") - return TestCaseInfo::Throws; - else if (tag == "!shouldfail") - return TestCaseInfo::ShouldFail; - else if (tag == "!mayfail") - return TestCaseInfo::MayFail; - else if (tag == "!nonportable") - return TestCaseInfo::NonPortable; - else if (tag == "!benchmark") - return static_cast( TestCaseInfo::Benchmark | TestCaseInfo::IsHidden ); - else - return TestCaseInfo::None; -} -bool isReservedTag(std::string const &tag) { - return parseSpecialTag(tag) == TestCaseInfo::None && tag.size() > 0 - && !std::isalnum(static_cast(tag[0])); -} -void enforceNotReservedTag(std::string const &tag, SourceLineInfo const &_lineInfo) { - CATCH_ENFORCE(!isReservedTag(tag), - "Tag name: [" << tag << "] is not allowed.\n" - << "Tag names starting with non alphanumeric characters are reserved\n" - << _lineInfo); -} -} + namespace { + TestCaseInfo::SpecialProperties parseSpecialTag(std::string const &tag) { + if (startsWith(tag, '.') || + tag == "!hide") + return TestCaseInfo::IsHidden; + else if (tag == "!throws") + return TestCaseInfo::Throws; + else if (tag == "!shouldfail") + return TestCaseInfo::ShouldFail; + else if (tag == "!mayfail") + return TestCaseInfo::MayFail; + else if (tag == "!nonportable") + return TestCaseInfo::NonPortable; + else if (tag == "!benchmark") + return static_cast( TestCaseInfo::Benchmark | TestCaseInfo::IsHidden ); + else + return TestCaseInfo::None; + } -TestCase makeTestCase(ITestInvoker *_testCase, - std::string const &_className, - NameAndTags const &nameAndTags, - SourceLineInfo const &_lineInfo) { - bool isHidden = false; - - // Parse out tags - std::vector tags; - std::string desc, tag; - bool inTag = false; - for (char c : nameAndTags.tags) { - if (!inTag) { - if (c == '[') - inTag = true; - else - desc += c; - } else { - if (c == ']') { - TestCaseInfo::SpecialProperties prop = parseSpecialTag(tag); - if ((prop & TestCaseInfo::IsHidden) != 0) - isHidden = true; - else if (prop == TestCaseInfo::None) - enforceNotReservedTag(tag, _lineInfo); - - // Merged hide tags like `[.approvals]` should be added as - // `[.][approvals]`. The `[.]` is added at later point, so - // we only strip the prefix - if (startsWith(tag, '.') && tag.size() > 1) { - tag.erase(0, 1); - } - tags.push_back(tag); - tag.clear(); - inTag = false; - } else - tag += c; - } - } - if (isHidden) { - // Add all "hidden" tags to make them behave identically - tags.insert(tags.end(), {".", "!hide"}); - } - - TestCaseInfo info(static_cast(nameAndTags.name), _className, desc, tags, _lineInfo); - return TestCase(_testCase, std::move(info)); -} + bool isReservedTag(std::string const &tag) { + return parseSpecialTag(tag) == TestCaseInfo::None && tag.size() > 0 + && !std::isalnum(static_cast(tag[0])); + } -void setTags(TestCaseInfo &testCaseInfo, std::vector tags) { - std::sort(begin(tags), end(tags)); - tags.erase(std::unique(begin(tags), end(tags)), end(tags)); - testCaseInfo.lcaseTags.clear(); - - for (auto const &tag : tags) { - std::string lcaseTag = toLower(tag); - testCaseInfo.properties = - static_cast( testCaseInfo.properties | parseSpecialTag(lcaseTag)); - testCaseInfo.lcaseTags.push_back(lcaseTag); - } - testCaseInfo.tags = std::move(tags); -} + void enforceNotReservedTag(std::string const &tag, SourceLineInfo const &_lineInfo) { + CATCH_ENFORCE(!isReservedTag(tag), + "Tag name: [" << tag << "] is not allowed.\n" + << "Tag names starting with non alphanumeric characters are reserved\n" + << _lineInfo); + } + } -TestCaseInfo::TestCaseInfo(std::string const &_name, - std::string const &_className, - std::string const &_description, - std::vector const &_tags, - SourceLineInfo const &_lineInfo) - : name(_name), - className(_className), - description(_description), - lineInfo(_lineInfo), - properties(None) { - setTags(*this, _tags); -} + TestCase makeTestCase(ITestInvoker *_testCase, + std::string const &_className, + NameAndTags const &nameAndTags, + SourceLineInfo const &_lineInfo) { + bool isHidden = false; + + // Parse out tags + std::vector tags; + std::string desc, tag; + bool inTag = false; + for (char c: nameAndTags.tags) { + if (!inTag) { + if (c == '[') + inTag = true; + else + desc += c; + } else { + if (c == ']') { + TestCaseInfo::SpecialProperties prop = parseSpecialTag(tag); + if ((prop & TestCaseInfo::IsHidden) != 0) + isHidden = true; + else if (prop == TestCaseInfo::None) + enforceNotReservedTag(tag, _lineInfo); + + // Merged hide tags like `[.approvals]` should be added as + // `[.][approvals]`. The `[.]` is added at later point, so + // we only strip the prefix + if (startsWith(tag, '.') && tag.size() > 1) { + tag.erase(0, 1); + } + tags.push_back(tag); + tag.clear(); + inTag = false; + } else + tag += c; + } + } + if (isHidden) { + // Add all "hidden" tags to make them behave identically + tags.insert(tags.end(), {".", "!hide"}); + } -bool TestCaseInfo::isHidden() const { - return (properties & IsHidden) != 0; -} -bool TestCaseInfo::throws() const { - return (properties & Throws) != 0; -} -bool TestCaseInfo::okToFail() const { - return (properties & (ShouldFail | MayFail)) != 0; -} -bool TestCaseInfo::expectedToFail() const { - return (properties & (ShouldFail)) != 0; -} + TestCaseInfo info(static_cast(nameAndTags.name), _className, desc, tags, _lineInfo); + return TestCase(_testCase, std::move(info)); + } -std::string TestCaseInfo::tagsAsString() const { - std::string ret; - // '[' and ']' per tag - std::size_t full_size = 2 * tags.size(); - for (const auto &tag : tags) { - full_size += tag.size(); - } - ret.reserve(full_size); - for (const auto &tag : tags) { - ret.push_back('['); - ret.append(tag); - ret.push_back(']'); - } - - return ret; -} + void setTags(TestCaseInfo &testCaseInfo, std::vector tags) { + std::sort(begin(tags), end(tags)); + tags.erase(std::unique(begin(tags), end(tags)), end(tags)); + testCaseInfo.lcaseTags.clear(); -TestCase::TestCase(ITestInvoker *testCase, TestCaseInfo &&info) : TestCaseInfo(std::move(info)), test(testCase) {} + for (auto const &tag: tags) { + std::string lcaseTag = toLower(tag); + testCaseInfo.properties = + static_cast( testCaseInfo.properties | parseSpecialTag(lcaseTag)); + testCaseInfo.lcaseTags.push_back(lcaseTag); + } + testCaseInfo.tags = std::move(tags); + } -TestCase TestCase::withName(std::string const &_newName) const { - TestCase other(*this); - other.name = _newName; - return other; -} + TestCaseInfo::TestCaseInfo(std::string const &_name, + std::string const &_className, + std::string const &_description, + std::vector const &_tags, + SourceLineInfo const &_lineInfo) + : name(_name), + className(_className), + description(_description), + lineInfo(_lineInfo), + properties(None) { + setTags(*this, _tags); + } -void TestCase::invoke() const { - test->invoke(); -} + bool TestCaseInfo::isHidden() const { + return (properties & IsHidden) != 0; + } -bool TestCase::operator==(TestCase const &other) const { - return test.get() == other.test.get() && - name == other.name && - className == other.className; -} + bool TestCaseInfo::throws() const { + return (properties & Throws) != 0; + } -bool TestCase::operator<(TestCase const &other) const { - return name < other.name; -} + bool TestCaseInfo::okToFail() const { + return (properties & (ShouldFail | MayFail)) != 0; + } -TestCaseInfo const &TestCase::getTestCaseInfo() const { - return *this; -} + bool TestCaseInfo::expectedToFail() const { + return (properties & (ShouldFail)) != 0; + } + + std::string TestCaseInfo::tagsAsString() const { + std::string ret; + // '[' and ']' per tag + std::size_t full_size = 2 * tags.size(); + for (const auto &tag: tags) { + full_size += tag.size(); + } + ret.reserve(full_size); + for (const auto &tag: tags) { + ret.push_back('['); + ret.append(tag); + ret.push_back(']'); + } + + return ret; + } + + TestCase::TestCase(ITestInvoker *testCase, TestCaseInfo &&info) : TestCaseInfo(std::move(info)), test(testCase) {} + + TestCase TestCase::withName(std::string const &_newName) const { + TestCase other(*this); + other.name = _newName; + return other; + } + + void TestCase::invoke() const { + test->invoke(); + } + + bool TestCase::operator==(TestCase const &other) const { + return test.get() == other.test.get() && + name == other.name && + className == other.className; + } + + bool TestCase::operator<(TestCase const &other) const { + return name < other.name; + } + + TestCaseInfo const &TestCase::getTestCaseInfo() const { + return *this; + } } // end namespace Catch // end catch_test_case_info.cpp @@ -14182,156 +14967,158 @@ TestCaseInfo const &TestCase::getTestCaseInfo() const { namespace Catch { -namespace { -struct TestHasher { - using hash_t = uint64_t; - - explicit TestHasher(hash_t hashSuffix) : - m_hashSuffix{hashSuffix} {} - - uint32_t operator()(TestCase const &t) const { - // FNV-1a hash with multiplication fold. - const hash_t prime = 1099511628211u; - hash_t hash = 14695981039346656037u; - for (const char c : t.name) { - hash ^= c; - hash *= prime; - } - hash ^= m_hashSuffix; - hash *= prime; - const uint32_t low{static_cast( hash )}; - const uint32_t high{static_cast( hash >> 32 )}; - return low * high; - } - - private: - hash_t m_hashSuffix; -}; -} // end unnamed namespace + namespace { + struct TestHasher { + using hash_t = uint64_t; -std::vector sortTests(IConfig const &config, std::vector const &unsortedTestCases) { - switch (config.runOrder()) { - case RunTests::InDeclarationOrder: - // already in declaration order - break; + explicit TestHasher(hash_t hashSuffix) : + m_hashSuffix{hashSuffix} {} - case RunTests::InLexicographicalOrder: { - std::vector sorted = unsortedTestCases; - std::sort(sorted.begin(), sorted.end()); - return sorted; - } + uint32_t operator()(TestCase const &t) const { + // FNV-1a hash with multiplication fold. + const hash_t prime = 1099511628211u; + hash_t hash = 14695981039346656037u; + for (const char c: t.name) { + hash ^= c; + hash *= prime; + } + hash ^= m_hashSuffix; + hash *= prime; + const uint32_t low{static_cast( hash )}; + const uint32_t high{static_cast( hash >> 32 )}; + return low * high; + } + + private: + hash_t m_hashSuffix; + }; + } // end unnamed namespace + + std::vector sortTests(IConfig const &config, std::vector const &unsortedTestCases) { + switch (config.runOrder()) { + case RunTests::InDeclarationOrder: + // already in declaration order + break; + + case RunTests::InLexicographicalOrder: { + std::vector sorted = unsortedTestCases; + std::sort(sorted.begin(), sorted.end()); + return sorted; + } - case RunTests::InRandomOrder: { - seedRng(config); - TestHasher h{config.rngSeed()}; + case RunTests::InRandomOrder: { + seedRng(config); + TestHasher h{config.rngSeed()}; - using hashedTest = std::pair; - std::vector indexed_tests; - indexed_tests.reserve(unsortedTestCases.size()); + using hashedTest = std::pair; + std::vector indexed_tests; + indexed_tests.reserve(unsortedTestCases.size()); - for (auto const &testCase : unsortedTestCases) { - indexed_tests.emplace_back(h(testCase), &testCase); - } + for (auto const &testCase: unsortedTestCases) { + indexed_tests.emplace_back(h(testCase), &testCase); + } - std::sort(indexed_tests.begin(), indexed_tests.end(), - [](hashedTest const &lhs, hashedTest const &rhs) { - if (lhs.first == rhs.first) { - return lhs.second->name < rhs.second->name; - } - return lhs.first < rhs.first; - }); + std::sort(indexed_tests.begin(), indexed_tests.end(), + [](hashedTest const &lhs, hashedTest const &rhs) { + if (lhs.first == rhs.first) { + return lhs.second->name < rhs.second->name; + } + return lhs.first < rhs.first; + }); - std::vector sorted; - sorted.reserve(indexed_tests.size()); + std::vector sorted; + sorted.reserve(indexed_tests.size()); - for (auto const &hashed : indexed_tests) { - sorted.emplace_back(*hashed.second); - } + for (auto const &hashed: indexed_tests) { + sorted.emplace_back(*hashed.second); + } - return sorted; + return sorted; + } + } + return unsortedTestCases; } - } - return unsortedTestCases; -} -bool isThrowSafe(TestCase const &testCase, IConfig const &config) { - return !testCase.throws() || config.allowThrows(); -} + bool isThrowSafe(TestCase const &testCase, IConfig const &config) { + return !testCase.throws() || config.allowThrows(); + } -bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config) { - return testSpec.matches(testCase) && isThrowSafe(testCase, config); -} + bool matchTest(TestCase const &testCase, TestSpec const &testSpec, IConfig const &config) { + return testSpec.matches(testCase) && isThrowSafe(testCase, config); + } -void enforceNoDuplicateTestCases(std::vector const &functions) { - std::set seenFunctions; - for (auto const &function : functions) { - auto prev = seenFunctions.insert(function); - CATCH_ENFORCE(prev.second, - "error: TEST_CASE( \"" << function.name << "\" ) already defined.\n" - << "\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo << "\n" - << "\tRedefined at " << function.getTestCaseInfo().lineInfo); - } -} + void enforceNoDuplicateTestCases(std::vector const &functions) { + std::set seenFunctions; + for (auto const &function: functions) { + auto prev = seenFunctions.insert(function); + CATCH_ENFORCE(prev.second, + "error: TEST_CASE( \"" << function.name << "\" ) already defined.\n" + << "\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo << "\n" + << "\tRedefined at " << function.getTestCaseInfo().lineInfo); + } + } -std::vector filterTests(std::vector const &testCases, - TestSpec const &testSpec, - IConfig const &config) { - std::vector filtered; - filtered.reserve(testCases.size()); - for (auto const &testCase : testCases) { - if ((!testSpec.hasFilters() && !testCase.isHidden()) || - (testSpec.hasFilters() && matchTest(testCase, testSpec, config))) { - filtered.push_back(testCase); - } - } - return filtered; -} -std::vector const &getAllTestCasesSorted(IConfig const &config) { - return getRegistryHub().getTestCaseRegistry().getAllTestsSorted(config); -} + std::vector filterTests(std::vector const &testCases, + TestSpec const &testSpec, + IConfig const &config) { + std::vector filtered; + filtered.reserve(testCases.size()); + for (auto const &testCase: testCases) { + if ((!testSpec.hasFilters() && !testCase.isHidden()) || + (testSpec.hasFilters() && matchTest(testCase, testSpec, config))) { + filtered.push_back(testCase); + } + } + return filtered; + } -void TestRegistry::registerTest(TestCase const &testCase) { - std::string name = testCase.getTestCaseInfo().name; - if (name.empty()) { - ReusableStringStream rss; - rss << "Anonymous test case " << ++m_unnamedCount; - return registerTest(testCase.withName(rss.str())); - } - m_functions.push_back(testCase); -} + std::vector const &getAllTestCasesSorted(IConfig const &config) { + return getRegistryHub().getTestCaseRegistry().getAllTestsSorted(config); + } -std::vector const &TestRegistry::getAllTests() const { - return m_functions; -} -std::vector const &TestRegistry::getAllTestsSorted(IConfig const &config) const { - if (m_sortedFunctions.empty()) - enforceNoDuplicateTestCases(m_functions); - - if (m_currentSortOrder != config.runOrder() || m_sortedFunctions.empty()) { - m_sortedFunctions = sortTests(config, m_functions); - m_currentSortOrder = config.runOrder(); - } - return m_sortedFunctions; -} + void TestRegistry::registerTest(TestCase const &testCase) { + std::string name = testCase.getTestCaseInfo().name; + if (name.empty()) { + ReusableStringStream rss; + rss << "Anonymous test case " << ++m_unnamedCount; + return registerTest(testCase.withName(rss.str())); + } + m_functions.push_back(testCase); + } + + std::vector const &TestRegistry::getAllTests() const { + return m_functions; + } + + std::vector const &TestRegistry::getAllTestsSorted(IConfig const &config) const { + if (m_sortedFunctions.empty()) + enforceNoDuplicateTestCases(m_functions); + + if (m_currentSortOrder != config.runOrder() || m_sortedFunctions.empty()) { + m_sortedFunctions = sortTests(config, m_functions); + m_currentSortOrder = config.runOrder(); + } + return m_sortedFunctions; + } /////////////////////////////////////////////////////////////////////////// -TestInvokerAsFunction::TestInvokerAsFunction(void(*testAsFunction)()) noexcept: m_testAsFunction(testAsFunction) {} + TestInvokerAsFunction::TestInvokerAsFunction(void(*testAsFunction)()) noexcept: m_testAsFunction(testAsFunction) {} -void TestInvokerAsFunction::invoke() const { - m_testAsFunction(); -} + void TestInvokerAsFunction::invoke() const { + m_testAsFunction(); + } -std::string extractClassName(StringRef const &classOrQualifiedMethodName) { - std::string className(classOrQualifiedMethodName); - if (startsWith(className, '&')) { - std::size_t lastColons = className.rfind("::"); - std::size_t penultimateColons = className.rfind("::", lastColons - 1); - if (penultimateColons == std::string::npos) - penultimateColons = 1; - className = className.substr(penultimateColons, lastColons - penultimateColons); - } - return className; -} + std::string extractClassName(StringRef const &classOrQualifiedMethodName) { + std::string className(classOrQualifiedMethodName); + if (startsWith(className, '&')) { + std::size_t lastColons = className.rfind("::"); + std::size_t penultimateColons = className.rfind("::", lastColons - 1); + if (penultimateColons == std::string::npos) + penultimateColons = 1; + className = className.substr(penultimateColons, lastColons - penultimateColons); + } + return className; + } } // end namespace Catch // end catch_test_case_registry_impl.cpp @@ -14349,218 +15136,236 @@ std::string extractClassName(StringRef const &classOrQualifiedMethodName) { #endif namespace Catch { -namespace TestCaseTracking { + namespace TestCaseTracking { -NameAndLocation::NameAndLocation(std::string const &_name, SourceLineInfo const &_location) - : name(_name), - location(_location) {} + NameAndLocation::NameAndLocation(std::string const &_name, SourceLineInfo const &_location) + : name(_name), + location(_location) {} -ITracker::~ITracker() = default; + ITracker::~ITracker() = default; -ITracker &TrackerContext::startRun() { - m_rootTracker = std::make_shared(NameAndLocation("{root}", CATCH_INTERNAL_LINEINFO), *this, nullptr); - m_currentTracker = nullptr; - m_runState = Executing; - return *m_rootTracker; -} + ITracker &TrackerContext::startRun() { + m_rootTracker = std::make_shared(NameAndLocation("{root}", CATCH_INTERNAL_LINEINFO), *this, + nullptr); + m_currentTracker = nullptr; + m_runState = Executing; + return *m_rootTracker; + } -void TrackerContext::endRun() { - m_rootTracker.reset(); - m_currentTracker = nullptr; - m_runState = NotStarted; -} + void TrackerContext::endRun() { + m_rootTracker.reset(); + m_currentTracker = nullptr; + m_runState = NotStarted; + } -void TrackerContext::startCycle() { - m_currentTracker = m_rootTracker.get(); - m_runState = Executing; -} -void TrackerContext::completeCycle() { - m_runState = CompletedCycle; -} + void TrackerContext::startCycle() { + m_currentTracker = m_rootTracker.get(); + m_runState = Executing; + } -bool TrackerContext::completedCycle() const { - return m_runState == CompletedCycle; -} -ITracker &TrackerContext::currentTracker() { - return *m_currentTracker; -} -void TrackerContext::setCurrentTracker(ITracker *tracker) { - m_currentTracker = tracker; -} + void TrackerContext::completeCycle() { + m_runState = CompletedCycle; + } -TrackerBase::TrackerBase(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent) : - ITracker(nameAndLocation), - m_ctx(ctx), - m_parent(parent) {} + bool TrackerContext::completedCycle() const { + return m_runState == CompletedCycle; + } -bool TrackerBase::isComplete() const { - return m_runState == CompletedSuccessfully || m_runState == Failed; -} -bool TrackerBase::isSuccessfullyCompleted() const { - return m_runState == CompletedSuccessfully; -} -bool TrackerBase::isOpen() const { - return m_runState != NotStarted && !isComplete(); -} -bool TrackerBase::hasChildren() const { - return !m_children.empty(); -} + ITracker &TrackerContext::currentTracker() { + return *m_currentTracker; + } -void TrackerBase::addChild(ITrackerPtr const &child) { - m_children.push_back(child); -} + void TrackerContext::setCurrentTracker(ITracker *tracker) { + m_currentTracker = tracker; + } -ITrackerPtr TrackerBase::findChild(NameAndLocation const &nameAndLocation) { - auto it = std::find_if(m_children.begin(), m_children.end(), - [&nameAndLocation](ITrackerPtr const &tracker) { - return - tracker->nameAndLocation().location == nameAndLocation.location && - tracker->nameAndLocation().name == nameAndLocation.name; - }); - return (it != m_children.end()) - ? *it - : nullptr; -} -ITracker &TrackerBase::parent() { - assert(m_parent); // Should always be non-null except for root - return *m_parent; -} + TrackerBase::TrackerBase(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent) : + ITracker(nameAndLocation), + m_ctx(ctx), + m_parent(parent) {} -void TrackerBase::openChild() { - if (m_runState != ExecutingChildren) { - m_runState = ExecutingChildren; - if (m_parent) - m_parent->openChild(); - } -} + bool TrackerBase::isComplete() const { + return m_runState == CompletedSuccessfully || m_runState == Failed; + } -bool TrackerBase::isSectionTracker() const { return false; } -bool TrackerBase::isGeneratorTracker() const { return false; } + bool TrackerBase::isSuccessfullyCompleted() const { + return m_runState == CompletedSuccessfully; + } -void TrackerBase::open() { - m_runState = Executing; - moveToThis(); - if (m_parent) - m_parent->openChild(); -} + bool TrackerBase::isOpen() const { + return m_runState != NotStarted && !isComplete(); + } + + bool TrackerBase::hasChildren() const { + return !m_children.empty(); + } + + void TrackerBase::addChild(ITrackerPtr const &child) { + m_children.push_back(child); + } -void TrackerBase::close() { + ITrackerPtr TrackerBase::findChild(NameAndLocation const &nameAndLocation) { + auto it = std::find_if(m_children.begin(), m_children.end(), + [&nameAndLocation](ITrackerPtr const &tracker) { + return + tracker->nameAndLocation().location == nameAndLocation.location && + tracker->nameAndLocation().name == nameAndLocation.name; + }); + return (it != m_children.end()) + ? *it + : nullptr; + } - // Close any still open children (e.g. generators) - while (&m_ctx.currentTracker() != this) - m_ctx.currentTracker().close(); + ITracker &TrackerBase::parent() { + assert(m_parent); // Should always be non-null except for root + return *m_parent; + } - switch (m_runState) { - case NeedsAnotherRun:break; + void TrackerBase::openChild() { + if (m_runState != ExecutingChildren) { + m_runState = ExecutingChildren; + if (m_parent) + m_parent->openChild(); + } + } - case Executing:m_runState = CompletedSuccessfully; - break; - case ExecutingChildren: - if (std::all_of(m_children.begin(), m_children.end(), [](ITrackerPtr const &t) { return t->isComplete(); })) - m_runState = CompletedSuccessfully; - break; + bool TrackerBase::isSectionTracker() const { return false; } - case NotStarted: - case CompletedSuccessfully: - case Failed:CATCH_INTERNAL_ERROR("Illogical state: " << m_runState); + bool TrackerBase::isGeneratorTracker() const { return false; } - default:CATCH_INTERNAL_ERROR("Unknown state: " << m_runState); - } - moveToParent(); - m_ctx.completeCycle(); -} -void TrackerBase::fail() { - m_runState = Failed; - if (m_parent) - m_parent->markAsNeedingAnotherRun(); - moveToParent(); - m_ctx.completeCycle(); -} -void TrackerBase::markAsNeedingAnotherRun() { - m_runState = NeedsAnotherRun; -} + void TrackerBase::open() { + m_runState = Executing; + moveToThis(); + if (m_parent) + m_parent->openChild(); + } -void TrackerBase::moveToParent() { - assert(m_parent); - m_ctx.setCurrentTracker(m_parent); -} -void TrackerBase::moveToThis() { - m_ctx.setCurrentTracker(this); -} + void TrackerBase::close() { -SectionTracker::SectionTracker(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent) - : TrackerBase(nameAndLocation, ctx, parent), - m_trimmed_name(trim(nameAndLocation.name)) { - if (parent) { - while (!parent->isSectionTracker()) - parent = &parent->parent(); + // Close any still open children (e.g. generators) + while (&m_ctx.currentTracker() != this) + m_ctx.currentTracker().close(); - SectionTracker & parentSection = static_cast( *parent ); - addNextFilters(parentSection.m_filters); - } -} + switch (m_runState) { + case NeedsAnotherRun: + break; -bool SectionTracker::isComplete() const { - bool complete = true; + case Executing: + m_runState = CompletedSuccessfully; + break; + case ExecutingChildren: + if (std::all_of(m_children.begin(), m_children.end(), + [](ITrackerPtr const &t) { return t->isComplete(); })) + m_runState = CompletedSuccessfully; + break; - if (m_filters.empty() - || m_filters[0] == "" - || std::find(m_filters.begin(), m_filters.end(), m_trimmed_name) != m_filters.end()) { - complete = TrackerBase::isComplete(); - } - return complete; -} + case NotStarted: + case CompletedSuccessfully: + case Failed: + CATCH_INTERNAL_ERROR("Illogical state: " << m_runState); -bool SectionTracker::isSectionTracker() const { return true; } - -SectionTracker &SectionTracker::acquire(TrackerContext &ctx, NameAndLocation const &nameAndLocation) { - std::shared_ptr section; - - ITracker ¤tTracker = ctx.currentTracker(); - if (ITrackerPtr childTracker = currentTracker.findChild(nameAndLocation)) { - assert(childTracker); - assert(childTracker->isSectionTracker()); - section = std::static_pointer_cast(childTracker); - } else { - section = std::make_shared(nameAndLocation, ctx, ¤tTracker); - currentTracker.addChild(section); - } - if (!ctx.completedCycle()) - section->tryOpen(); - return *section; -} + default: + CATCH_INTERNAL_ERROR("Unknown state: " << m_runState); + } + moveToParent(); + m_ctx.completeCycle(); + } -void SectionTracker::tryOpen() { - if (!isComplete()) - open(); -} + void TrackerBase::fail() { + m_runState = Failed; + if (m_parent) + m_parent->markAsNeedingAnotherRun(); + moveToParent(); + m_ctx.completeCycle(); + } -void SectionTracker::addInitialFilters(std::vector const &filters) { - if (!filters.empty()) { - m_filters.reserve(m_filters.size() + filters.size() + 2); - m_filters.emplace_back(""); // Root - should never be consulted - m_filters.emplace_back(""); // Test Case - not a section filter - m_filters.insert(m_filters.end(), filters.begin(), filters.end()); - } -} -void SectionTracker::addNextFilters(std::vector const &filters) { - if (filters.size() > 1) - m_filters.insert(m_filters.end(), filters.begin() + 1, filters.end()); -} + void TrackerBase::markAsNeedingAnotherRun() { + m_runState = NeedsAnotherRun; + } -std::vector const &SectionTracker::getFilters() const { - return m_filters; -} + void TrackerBase::moveToParent() { + assert(m_parent); + m_ctx.setCurrentTracker(m_parent); + } -std::string const &SectionTracker::trimmedName() const { - return m_trimmed_name; -} + void TrackerBase::moveToThis() { + m_ctx.setCurrentTracker(this); + } + + SectionTracker::SectionTracker(NameAndLocation const &nameAndLocation, TrackerContext &ctx, ITracker *parent) + : TrackerBase(nameAndLocation, ctx, parent), + m_trimmed_name(trim(nameAndLocation.name)) { + if (parent) { + while (!parent->isSectionTracker()) + parent = &parent->parent(); + + SectionTracker & parentSection = static_cast( *parent ); + addNextFilters(parentSection.m_filters); + } + } + + bool SectionTracker::isComplete() const { + bool complete = true; + + if (m_filters.empty() + || m_filters[0] == "" + || std::find(m_filters.begin(), m_filters.end(), m_trimmed_name) != m_filters.end()) { + complete = TrackerBase::isComplete(); + } + return complete; + } + + bool SectionTracker::isSectionTracker() const { return true; } + + SectionTracker &SectionTracker::acquire(TrackerContext &ctx, NameAndLocation const &nameAndLocation) { + std::shared_ptr section; + + ITracker ¤tTracker = ctx.currentTracker(); + if (ITrackerPtr childTracker = currentTracker.findChild(nameAndLocation)) { + assert(childTracker); + assert(childTracker->isSectionTracker()); + section = std::static_pointer_cast(childTracker); + } else { + section = std::make_shared(nameAndLocation, ctx, ¤tTracker); + currentTracker.addChild(section); + } + if (!ctx.completedCycle()) + section->tryOpen(); + return *section; + } + + void SectionTracker::tryOpen() { + if (!isComplete()) + open(); + } + + void SectionTracker::addInitialFilters(std::vector const &filters) { + if (!filters.empty()) { + m_filters.reserve(m_filters.size() + filters.size() + 2); + m_filters.emplace_back(""); // Root - should never be consulted + m_filters.emplace_back(""); // Test Case - not a section filter + m_filters.insert(m_filters.end(), filters.begin(), filters.end()); + } + } + + void SectionTracker::addNextFilters(std::vector const &filters) { + if (filters.size() > 1) + m_filters.insert(m_filters.end(), filters.begin() + 1, filters.end()); + } + + std::vector const &SectionTracker::getFilters() const { + return m_filters; + } -} // namespace TestCaseTracking + std::string const &SectionTracker::trimmedName() const { + return m_trimmed_name; + } + + } // namespace TestCaseTracking -using TestCaseTracking::ITracker; -using TestCaseTracking::TrackerContext; -using TestCaseTracking::SectionTracker; + using TestCaseTracking::ITracker; + using TestCaseTracking::TrackerContext; + using TestCaseTracking::SectionTracker; } // namespace Catch @@ -14572,32 +15377,32 @@ using TestCaseTracking::SectionTracker; namespace Catch { -auto makeTestInvoker(void(*testAsFunction)()) noexcept -> ITestInvoker * { - return new(std::nothrow) - TestInvokerAsFunction( testAsFunction ); -} - -NameAndTags::NameAndTags(StringRef const &name_, StringRef const &tags_) noexcept: name(name_), tags(tags_) {} + auto makeTestInvoker(void(*testAsFunction)()) noexcept -> ITestInvoker * { + return new(std::nothrow) + TestInvokerAsFunction( testAsFunction ); + } -AutoReg::AutoReg(ITestInvoker *invoker, - SourceLineInfo const &lineInfo, - StringRef const &classOrMethod, - NameAndTags const &nameAndTags) noexcept { - CATCH_TRY { - getMutableRegistryHub() - .registerTest( - makeTestCase( - invoker, - extractClassName(classOrMethod), - nameAndTags, - lineInfo)); - } CATCH_CATCH_ALL { - // Do not throw when constructing global objects, instead register the exception to be processed later - getMutableRegistryHub().registerStartupException(); - } -} + NameAndTags::NameAndTags(StringRef const &name_, StringRef const &tags_) noexcept: name(name_), tags(tags_) {} + + AutoReg::AutoReg(ITestInvoker *invoker, + SourceLineInfo const &lineInfo, + StringRef const &classOrMethod, + NameAndTags const &nameAndTags) noexcept { + CATCH_TRY { + getMutableRegistryHub() + .registerTest( + makeTestCase( + invoker, + extractClassName(classOrMethod), + nameAndTags, + lineInfo)); + } CATCH_CATCH_ALL { + // Do not throw when constructing global objects, instead register the exception to be processed later + getMutableRegistryHub().registerStartupException(); + } + } -AutoReg::~AutoReg() = default; + AutoReg::~AutoReg() = default; } // end catch_test_registry.cpp // start catch_test_spec.cpp @@ -14609,288 +15414,315 @@ AutoReg::~AutoReg() = default; namespace Catch { -TestSpec::Pattern::Pattern(std::string const &name) - : m_name(name) {} + TestSpec::Pattern::Pattern(std::string const &name) + : m_name(name) {} -TestSpec::Pattern::~Pattern() = default; + TestSpec::Pattern::~Pattern() = default; -std::string const &TestSpec::Pattern::name() const { - return m_name; -} + std::string const &TestSpec::Pattern::name() const { + return m_name; + } -TestSpec::NamePattern::NamePattern(std::string const &name, std::string const &filterString) - : Pattern(filterString), m_wildcardPattern(toLower(name), CaseSensitive::No) {} + TestSpec::NamePattern::NamePattern(std::string const &name, std::string const &filterString) + : Pattern(filterString), m_wildcardPattern(toLower(name), CaseSensitive::No) {} -bool TestSpec::NamePattern::matches(TestCaseInfo const &testCase) const { - return m_wildcardPattern.matches(testCase.name); -} + bool TestSpec::NamePattern::matches(TestCaseInfo const &testCase) const { + return m_wildcardPattern.matches(testCase.name); + } -TestSpec::TagPattern::TagPattern(std::string const &tag, std::string const &filterString) - : Pattern(filterString), m_tag(toLower(tag)) {} + TestSpec::TagPattern::TagPattern(std::string const &tag, std::string const &filterString) + : Pattern(filterString), m_tag(toLower(tag)) {} -bool TestSpec::TagPattern::matches(TestCaseInfo const &testCase) const { - return std::find(begin(testCase.lcaseTags), - end(testCase.lcaseTags), - m_tag) != end(testCase.lcaseTags); -} + bool TestSpec::TagPattern::matches(TestCaseInfo const &testCase) const { + return std::find(begin(testCase.lcaseTags), + end(testCase.lcaseTags), + m_tag) != end(testCase.lcaseTags); + } -TestSpec::ExcludedPattern::ExcludedPattern(PatternPtr const &underlyingPattern) - : Pattern(underlyingPattern->name()), m_underlyingPattern(underlyingPattern) {} + TestSpec::ExcludedPattern::ExcludedPattern(PatternPtr const &underlyingPattern) + : Pattern(underlyingPattern->name()), m_underlyingPattern(underlyingPattern) {} -bool TestSpec::ExcludedPattern::matches(TestCaseInfo const &testCase) const { - return !m_underlyingPattern->matches(testCase); -} + bool TestSpec::ExcludedPattern::matches(TestCaseInfo const &testCase) const { + return !m_underlyingPattern->matches(testCase); + } -bool TestSpec::Filter::matches(TestCaseInfo const &testCase) const { - return std::all_of(m_patterns.begin(), m_patterns.end(), [&](PatternPtr const &p) { return p->matches(testCase); }); -} + bool TestSpec::Filter::matches(TestCaseInfo const &testCase) const { + return std::all_of(m_patterns.begin(), m_patterns.end(), + [&](PatternPtr const &p) { return p->matches(testCase); }); + } -std::string TestSpec::Filter::name() const { - std::string name; - for (auto const &p : m_patterns) - name += p->name(); - return name; -} + std::string TestSpec::Filter::name() const { + std::string name; + for (auto const &p: m_patterns) + name += p->name(); + return name; + } + + bool TestSpec::hasFilters() const { + return !m_filters.empty(); + } + + bool TestSpec::matches(TestCaseInfo const &testCase) const { + return std::any_of(m_filters.begin(), m_filters.end(), [&](Filter const &f) { return f.matches(testCase); }); + } + + TestSpec::Matches TestSpec::matchesByFilter(std::vector const &testCases, IConfig const &config) const { + Matches matches(m_filters.size()); + std::transform(m_filters.begin(), m_filters.end(), matches.begin(), [&](Filter const &filter) { + std::vector currentMatches; + for (auto const &test: testCases) + if (isThrowSafe(test, config) && filter.matches(test)) + currentMatches.emplace_back(&test); + return FilterMatch{filter.name(), currentMatches}; + }); + return matches; + } + + const TestSpec::vectorStrings &TestSpec::getInvalidArgs() const { + return (m_invalidArgs); + } -bool TestSpec::hasFilters() const { - return !m_filters.empty(); } +// end catch_test_spec.cpp +// start catch_test_spec_parser.cpp + +namespace Catch { + + TestSpecParser::TestSpecParser(ITagAliasRegistry const &tagAliases) : m_tagAliases(&tagAliases) {} + + TestSpecParser &TestSpecParser::parse(std::string const &arg) { + m_mode = None; + m_exclusion = false; + m_arg = m_tagAliases->expandAliases(arg); + m_escapeChars.clear(); + m_substring.reserve(m_arg.size()); + m_patternName.reserve(m_arg.size()); + m_realPatternPos = 0; + + for (m_pos = 0; m_pos < m_arg.size(); ++m_pos) + //if visitChar fails + if (!visitChar(m_arg[m_pos])) { + m_testSpec.m_invalidArgs.push_back(arg); + break; + } + endMode(); + return *this; + } + + TestSpec TestSpecParser::testSpec() { + addFilter(); + return m_testSpec; + } + + bool TestSpecParser::visitChar(char c) { + if ((m_mode != EscapedName) && (c == '\\')) { + escape(); + addCharToPattern(c); + return true; + } else if ((m_mode != EscapedName) && (c == ',')) { + return separate(); + } + + switch (m_mode) { + case None: + if (processNoneChar(c)) + return true; + break; + case Name: + processNameChar(c); + break; + case EscapedName: + endMode(); + addCharToPattern(c); + return true; + default: + case Tag: + case QuotedName: + if (processOtherChar(c)) + return true; + break; + } + + m_substring += c; + if (!isControlChar(c)) { + m_patternName += c; + m_realPatternPos++; + } + return true; + } -bool TestSpec::matches(TestCaseInfo const &testCase) const { - return std::any_of(m_filters.begin(), m_filters.end(), [&](Filter const &f) { return f.matches(testCase); }); -} +// Two of the processing methods return true to signal the caller to return +// without adding the given character to the current pattern strings + bool TestSpecParser::processNoneChar(char c) { + switch (c) { + case ' ': + return true; + case '~': + m_exclusion = true; + return false; + case '[': + startNewMode(Tag); + return false; + case '"': + startNewMode(QuotedName); + return false; + default: + startNewMode(Name); + return false; + } + } -TestSpec::Matches TestSpec::matchesByFilter(std::vector const &testCases, IConfig const &config) const { - Matches matches(m_filters.size()); - std::transform(m_filters.begin(), m_filters.end(), matches.begin(), [&](Filter const &filter) { - std::vector currentMatches; - for (auto const &test : testCases) - if (isThrowSafe(test, config) && filter.matches(test)) - currentMatches.emplace_back(&test); - return FilterMatch{filter.name(), currentMatches}; - }); - return matches; -} + void TestSpecParser::processNameChar(char c) { + if (c == '[') { + if (m_substring == "exclude:") + m_exclusion = true; + else + endMode(); + startNewMode(Tag); + } + } -const TestSpec::vectorStrings &TestSpec::getInvalidArgs() const { - return (m_invalidArgs); -} + bool TestSpecParser::processOtherChar(char c) { + if (!isControlChar(c)) + return false; + m_substring += c; + endMode(); + return true; + } -} -// end catch_test_spec.cpp -// start catch_test_spec_parser.cpp + void TestSpecParser::startNewMode(Mode mode) { + m_mode = mode; + } -namespace Catch { + void TestSpecParser::endMode() { + switch (m_mode) { + case Name: + case QuotedName: + return addNamePattern(); + case Tag: + return addTagPattern(); + case EscapedName: + revertBackToLastMode(); + return; + case None: + default: + return startNewMode(None); + } + } -TestSpecParser::TestSpecParser(ITagAliasRegistry const &tagAliases) : m_tagAliases(&tagAliases) {} - -TestSpecParser &TestSpecParser::parse(std::string const &arg) { - m_mode = None; - m_exclusion = false; - m_arg = m_tagAliases->expandAliases(arg); - m_escapeChars.clear(); - m_substring.reserve(m_arg.size()); - m_patternName.reserve(m_arg.size()); - m_realPatternPos = 0; - - for (m_pos = 0; m_pos < m_arg.size(); ++m_pos) - //if visitChar fails - if (!visitChar(m_arg[m_pos])) { - m_testSpec.m_invalidArgs.push_back(arg); - break; - } - endMode(); - return *this; -} -TestSpec TestSpecParser::testSpec() { - addFilter(); - return m_testSpec; -} -bool TestSpecParser::visitChar(char c) { - if ((m_mode != EscapedName) && (c == '\\')) { - escape(); - addCharToPattern(c); - return true; - } else if ((m_mode != EscapedName) && (c == ',')) { - return separate(); - } - - switch (m_mode) { - case None: - if (processNoneChar(c)) - return true; - break; - case Name:processNameChar(c); - break; - case EscapedName:endMode(); - addCharToPattern(c); - return true; - default: - case Tag: - case QuotedName: - if (processOtherChar(c)) - return true; - break; - } - - m_substring += c; - if (!isControlChar(c)) { - m_patternName += c; - m_realPatternPos++; - } - return true; -} -// Two of the processing methods return true to signal the caller to return -// without adding the given character to the current pattern strings -bool TestSpecParser::processNoneChar(char c) { - switch (c) { - case ' ':return true; - case '~':m_exclusion = true; - return false; - case '[':startNewMode(Tag); - return false; - case '"':startNewMode(QuotedName); - return false; - default:startNewMode(Name); - return false; - } -} -void TestSpecParser::processNameChar(char c) { - if (c == '[') { - if (m_substring == "exclude:") - m_exclusion = true; - else - endMode(); - startNewMode(Tag); - } -} -bool TestSpecParser::processOtherChar(char c) { - if (!isControlChar(c)) - return false; - m_substring += c; - endMode(); - return true; -} -void TestSpecParser::startNewMode(Mode mode) { - m_mode = mode; -} -void TestSpecParser::endMode() { - switch (m_mode) { - case Name: - case QuotedName:return addNamePattern(); - case Tag:return addTagPattern(); - case EscapedName:revertBackToLastMode(); - return; - case None: - default:return startNewMode(None); - } -} -void TestSpecParser::escape() { - saveLastMode(); - m_mode = EscapedName; - m_escapeChars.push_back(m_realPatternPos); -} -bool TestSpecParser::isControlChar(char c) const { - switch (m_mode) { - default:return false; - case None:return c == '~'; - case Name:return c == '['; - case EscapedName:return true; - case QuotedName:return c == '"'; - case Tag:return c == '[' || c == ']'; - } -} + void TestSpecParser::escape() { + saveLastMode(); + m_mode = EscapedName; + m_escapeChars.push_back(m_realPatternPos); + } -void TestSpecParser::addFilter() { - if (!m_currentFilter.m_patterns.empty()) { - m_testSpec.m_filters.push_back(m_currentFilter); - m_currentFilter = TestSpec::Filter(); - } -} + bool TestSpecParser::isControlChar(char c) const { + switch (m_mode) { + default: + return false; + case None: + return c == '~'; + case Name: + return c == '['; + case EscapedName: + return true; + case QuotedName: + return c == '"'; + case Tag: + return c == '[' || c == ']'; + } + } -void TestSpecParser::saveLastMode() { - lastMode = m_mode; -} + void TestSpecParser::addFilter() { + if (!m_currentFilter.m_patterns.empty()) { + m_testSpec.m_filters.push_back(m_currentFilter); + m_currentFilter = TestSpec::Filter(); + } + } -void TestSpecParser::revertBackToLastMode() { - m_mode = lastMode; -} + void TestSpecParser::saveLastMode() { + lastMode = m_mode; + } -bool TestSpecParser::separate() { - if ((m_mode == QuotedName) || (m_mode == Tag)) { - //invalid argument, signal failure to previous scope. - m_mode = None; - m_pos = m_arg.size(); - m_substring.clear(); - m_patternName.clear(); - m_realPatternPos = 0; - return false; - } - endMode(); - addFilter(); - return true; //success -} + void TestSpecParser::revertBackToLastMode() { + m_mode = lastMode; + } -std::string TestSpecParser::preprocessPattern() { - std::string token = m_patternName; - for (std::size_t i = 0; i < m_escapeChars.size(); ++i) - token = token.substr(0, m_escapeChars[i] - i) + token.substr(m_escapeChars[i] - i + 1); - m_escapeChars.clear(); - if (startsWith(token, "exclude:")) { - m_exclusion = true; - token = token.substr(8); - } + bool TestSpecParser::separate() { + if ((m_mode == QuotedName) || (m_mode == Tag)) { + //invalid argument, signal failure to previous scope. + m_mode = None; + m_pos = m_arg.size(); + m_substring.clear(); + m_patternName.clear(); + m_realPatternPos = 0; + return false; + } + endMode(); + addFilter(); + return true; //success + } - m_patternName.clear(); - m_realPatternPos = 0; + std::string TestSpecParser::preprocessPattern() { + std::string token = m_patternName; + for (std::size_t i = 0; i < m_escapeChars.size(); ++i) + token = token.substr(0, m_escapeChars[i] - i) + token.substr(m_escapeChars[i] - i + 1); + m_escapeChars.clear(); + if (startsWith(token, "exclude:")) { + m_exclusion = true; + token = token.substr(8); + } - return token; -} + m_patternName.clear(); + m_realPatternPos = 0; -void TestSpecParser::addNamePattern() { - auto token = preprocessPattern(); - - if (!token.empty()) { - TestSpec::PatternPtr pattern = std::make_shared(token, m_substring); - if (m_exclusion) - pattern = std::make_shared(pattern); - m_currentFilter.m_patterns.push_back(pattern); - } - m_substring.clear(); - m_exclusion = false; - m_mode = None; -} + return token; + } -void TestSpecParser::addTagPattern() { - auto token = preprocessPattern(); + void TestSpecParser::addNamePattern() { + auto token = preprocessPattern(); - if (!token.empty()) { - // If the tag pattern is the "hide and tag" shorthand (e.g. [.foo]) - // we have to create a separate hide tag and shorten the real one - if (token.size() > 1 && token[0] == '.') { - token.erase(token.begin()); - TestSpec::PatternPtr pattern = std::make_shared(".", m_substring); - if (m_exclusion) { - pattern = std::make_shared(pattern); - } - m_currentFilter.m_patterns.push_back(pattern); + if (!token.empty()) { + TestSpec::PatternPtr pattern = std::make_shared(token, m_substring); + if (m_exclusion) + pattern = std::make_shared(pattern); + m_currentFilter.m_patterns.push_back(pattern); + } + m_substring.clear(); + m_exclusion = false; + m_mode = None; } - TestSpec::PatternPtr pattern = std::make_shared(token, m_substring); + void TestSpecParser::addTagPattern() { + auto token = preprocessPattern(); + + if (!token.empty()) { + // If the tag pattern is the "hide and tag" shorthand (e.g. [.foo]) + // we have to create a separate hide tag and shorten the real one + if (token.size() > 1 && token[0] == '.') { + token.erase(token.begin()); + TestSpec::PatternPtr pattern = std::make_shared(".", m_substring); + if (m_exclusion) { + pattern = std::make_shared(pattern); + } + m_currentFilter.m_patterns.push_back(pattern); + } - if (m_exclusion) { - pattern = std::make_shared(pattern); + TestSpec::PatternPtr pattern = std::make_shared(token, m_substring); + + if (m_exclusion) { + pattern = std::make_shared(pattern); + } + m_currentFilter.m_patterns.push_back(pattern); + } + m_substring.clear(); + m_exclusion = false; + m_mode = None; } - m_currentFilter.m_patterns.push_back(pattern); - } - m_substring.clear(); - m_exclusion = false; - m_mode = None; -} -TestSpec parseTestSpec(std::string const &arg) { - return TestSpecParser(ITagAliasRegistry::get()).parse(arg).testSpec(); -} + TestSpec parseTestSpec(std::string const &arg) { + return TestSpecParser(ITagAliasRegistry::get()).parse(arg).testSpec(); + } } // namespace Catch // end catch_test_spec_parser.cpp @@ -14902,61 +15734,67 @@ static const uint64_t nanosecondsInSecond = 1000000000; namespace Catch { -auto getCurrentNanosecondsSinceEpoch() -> uint64_t { - return std::chrono::duration_cast(std::chrono::high_resolution_clock::now().time_since_epoch()).count(); -} + auto getCurrentNanosecondsSinceEpoch() -> uint64_t { + return std::chrono::duration_cast( + std::chrono::high_resolution_clock::now().time_since_epoch()).count(); + } -namespace { -auto estimateClockResolution() -> uint64_t { - uint64_t sum = 0; - static const uint64_t iterations = 1000000; + namespace { + auto estimateClockResolution() -> uint64_t { + uint64_t sum = 0; + static const uint64_t iterations = 1000000; + + auto startTime = getCurrentNanosecondsSinceEpoch(); - auto startTime = getCurrentNanosecondsSinceEpoch(); + for (std::size_t i = 0; i < iterations; ++i) { - for (std::size_t i = 0; i < iterations; ++i) { + uint64_t ticks; + uint64_t baseTicks = getCurrentNanosecondsSinceEpoch(); + do { + ticks = getCurrentNanosecondsSinceEpoch(); + } while (ticks == baseTicks); - uint64_t ticks; - uint64_t baseTicks = getCurrentNanosecondsSinceEpoch(); - do { - ticks = getCurrentNanosecondsSinceEpoch(); - } while (ticks == baseTicks); + auto delta = ticks - baseTicks; + sum += delta; - auto delta = ticks - baseTicks; - sum += delta; + // If we have been calibrating for over 3 seconds -- the clock + // is terrible and we should move on. + // TBD: How to signal that the measured resolution is probably wrong? + if (ticks > startTime + 3 * nanosecondsInSecond) { + return sum / (i + 1u); + } + } - // If we have been calibrating for over 3 seconds -- the clock - // is terrible and we should move on. - // TBD: How to signal that the measured resolution is probably wrong? - if (ticks > startTime + 3 * nanosecondsInSecond) { - return sum / (i + 1u); + // We're just taking the mean, here. To do better we could take the std. dev and exclude outliers + // - and potentially do more iterations if there's a high variance. + return sum / iterations; + } } - } - // We're just taking the mean, here. To do better we could take the std. dev and exclude outliers - // - and potentially do more iterations if there's a high variance. - return sum / iterations; -} -} -auto getEstimatedClockResolution() -> uint64_t { - static auto s_resolution = estimateClockResolution(); - return s_resolution; -} + auto getEstimatedClockResolution() -> uint64_t { + static auto s_resolution = estimateClockResolution(); + return s_resolution; + } -void Timer::start() { - m_nanoseconds = getCurrentNanosecondsSinceEpoch(); -} -auto Timer::getElapsedNanoseconds() const -> uint64_t { - return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; -} -auto Timer::getElapsedMicroseconds() const -> uint64_t { - return getElapsedNanoseconds() / 1000; -} -auto Timer::getElapsedMilliseconds() const -> unsigned int { - return static_cast(getElapsedMicroseconds() / 1000); -} -auto Timer::getElapsedSeconds() const -> double { - return getElapsedMicroseconds() / 1000000.0; -} + void Timer::start() { + m_nanoseconds = getCurrentNanosecondsSinceEpoch(); + } + + auto Timer::getElapsedNanoseconds() const -> uint64_t { + return getCurrentNanosecondsSinceEpoch() - m_nanoseconds; + } + + auto Timer::getElapsedMicroseconds() const -> uint64_t { + return getElapsedNanoseconds() / 1000; + } + + auto Timer::getElapsedMilliseconds() const -> unsigned int { + return static_cast(getElapsedMicroseconds() / 1000); + } + + auto Timer::getElapsedSeconds() const -> double { + return getElapsedMicroseconds() / 1000000.0; + } } // namespace Catch // end catch_timer.cpp @@ -14978,62 +15816,64 @@ auto Timer::getElapsedSeconds() const -> double { namespace Catch { -namespace Detail { + namespace Detail { -const std::string unprintableString = "{?}"; + const std::string unprintableString = "{?}"; -namespace { -const int hexThreshold = 255; - -struct Endianness { - enum Arch { Big, Little }; - - static Arch which() { - int one = 1; - // If the lowest byte we read is non-zero, we can assume - // that little endian format is used. - auto value = *reinterpret_cast(&one); - return value ? Little : Big; - } -}; -} + namespace { + const int hexThreshold = 255; -std::string rawMemoryToString(const void *object, std::size_t size) { - // Reverse order for little endian architectures - int i = 0, end = static_cast( size ), inc = 1; - if (Endianness::which() == Endianness::Little) { - i = end - 1; - end = inc = -1; - } - - unsigned char const *bytes = static_cast(object); - ReusableStringStream rss; - rss << "0x" << std::setfill('0') << std::hex; - for (; i != end; i += inc) - rss << std::setw(2) << static_cast(bytes[i]); - return rss.str(); -} -} + struct Endianness { + enum Arch { + Big, Little + }; -template -std::string fpToString(T value, int precision) { - if (Catch::isnan(value)) { - return "nan"; - } - - ReusableStringStream rss; - rss << std::setprecision(precision) - << std::fixed - << value; - std::string d = rss.str(); - std::size_t i = d.find_last_not_of('0'); - if (i != std::string::npos && i != d.size() - 1) { - if (d[i] == '.') - i++; - d = d.substr(0, i + 1); - } - return d; -} + static Arch which() { + int one = 1; + // If the lowest byte we read is non-zero, we can assume + // that little endian format is used. + auto value = *reinterpret_cast(&one); + return value ? Little : Big; + } + }; + } + + std::string rawMemoryToString(const void *object, std::size_t size) { + // Reverse order for little endian architectures + int i = 0, end = static_cast( size ), inc = 1; + if (Endianness::which() == Endianness::Little) { + i = end - 1; + end = inc = -1; + } + + unsigned char const *bytes = static_cast(object); + ReusableStringStream rss; + rss << "0x" << std::setfill('0') << std::hex; + for (; i != end; i += inc) + rss << std::setw(2) << static_cast(bytes[i]); + return rss.str(); + } + } + + template + std::string fpToString(T value, int precision) { + if (Catch::isnan(value)) { + return "nan"; + } + + ReusableStringStream rss; + rss << std::setprecision(precision) + << std::fixed + << value; + std::string d = rss.str(); + std::size_t i = d.find_last_not_of('0'); + if (i != std::string::npos && i != d.size() - 1) { + if (d[i] == '.') + i++; + d = d.substr(0, i + 1); + } + return d; + } //// ======================================================= //// // @@ -15041,166 +15881,191 @@ std::string fpToString(T value, int precision) { // //// ======================================================= //// -std::string StringMaker::convert(const std::string &str) { - if (!getCurrentContext().getConfig()->showInvisibles()) { - return '"' + str + '"'; - } - - std::string s("\""); - for (char c : str) { - switch (c) { - case '\n':s.append("\\n"); - break; - case '\t':s.append("\\t"); - break; - default:s.push_back(c); - break; - } - } - s.append("\""); - return s; -} + std::string StringMaker::convert(const std::string &str) { + if (!getCurrentContext().getConfig()->showInvisibles()) { + return '"' + str + '"'; + } + + std::string s("\""); + for (char c: str) { + switch (c) { + case '\n': + s.append("\\n"); + break; + case '\t': + s.append("\\t"); + break; + default: + s.push_back(c); + break; + } + } + s.append("\""); + return s; + } #ifdef CATCH_CONFIG_CPP17_STRING_VIEW -std::string StringMaker::convert(std::string_view str) { - return ::Catch::Detail::stringify(std::string{str}); -} + + std::string StringMaker::convert(std::string_view str) { + return ::Catch::Detail::stringify(std::string{str}); + } + #endif -std::string StringMaker::convert(char const *str) { - if (str) { - return ::Catch::Detail::stringify(std::string{str}); - } else { - return {"{null string}"}; - } -} -std::string StringMaker::convert(char *str) { - if (str) { - return ::Catch::Detail::stringify(std::string{str}); - } else { - return {"{null string}"}; - } -} + std::string StringMaker::convert(char const *str) { + if (str) { + return ::Catch::Detail::stringify(std::string{str}); + } else { + return {"{null string}"}; + } + } + + std::string StringMaker::convert(char *str) { + if (str) { + return ::Catch::Detail::stringify(std::string{str}); + } else { + return {"{null string}"}; + } + } #ifdef CATCH_CONFIG_WCHAR -std::string StringMaker::convert(const std::wstring &wstr) { - std::string s; - s.reserve(wstr.size()); - for (auto c : wstr) { - s += (c <= 0xff) ? static_cast(c) : '?'; - } - return ::Catch::Detail::stringify(s); -} + + std::string StringMaker::convert(const std::wstring &wstr) { + std::string s; + s.reserve(wstr.size()); + for (auto c: wstr) { + s += (c <= 0xff) ? static_cast(c) : '?'; + } + return ::Catch::Detail::stringify(s); + } # ifdef CATCH_CONFIG_CPP17_STRING_VIEW -std::string StringMaker::convert(std::wstring_view str) { - return StringMaker::convert(std::wstring(str)); -} + + std::string StringMaker::convert(std::wstring_view str) { + return StringMaker::convert(std::wstring(str)); + } + # endif -std::string StringMaker::convert(wchar_t const *str) { - if (str) { - return ::Catch::Detail::stringify(std::wstring{str}); - } else { - return {"{null string}"}; - } -} -std::string StringMaker::convert(wchar_t *str) { - if (str) { - return ::Catch::Detail::stringify(std::wstring{str}); - } else { - return {"{null string}"}; - } -} + std::string StringMaker::convert(wchar_t const *str) { + if (str) { + return ::Catch::Detail::stringify(std::wstring{str}); + } else { + return {"{null string}"}; + } + } + + std::string StringMaker::convert(wchar_t *str) { + if (str) { + return ::Catch::Detail::stringify(std::wstring{str}); + } else { + return {"{null string}"}; + } + } + #endif #if defined(CATCH_CONFIG_CPP17_BYTE) + #include -std::string StringMaker::convert(std::byte value) { - return ::Catch::Detail::stringify(std::to_integer(value)); -} + + std::string StringMaker::convert(std::byte value) { + return ::Catch::Detail::stringify(std::to_integer(value)); + } + #endif // defined(CATCH_CONFIG_CPP17_BYTE) -std::string StringMaker::convert(int value) { - return ::Catch::Detail::stringify(static_cast(value)); -} -std::string StringMaker::convert(long value) { - return ::Catch::Detail::stringify(static_cast(value)); -} -std::string StringMaker::convert(long long value) { - ReusableStringStream rss; - rss << value; - if (value > Detail::hexThreshold) { - rss << " (0x" << std::hex << value << ')'; - } - return rss.str(); -} + std::string StringMaker::convert(int value) { + return ::Catch::Detail::stringify(static_cast(value)); + } -std::string StringMaker::convert(unsigned int value) { - return ::Catch::Detail::stringify(static_cast(value)); -} -std::string StringMaker::convert(unsigned long value) { - return ::Catch::Detail::stringify(static_cast(value)); -} -std::string StringMaker::convert(unsigned long long value) { - ReusableStringStream rss; - rss << value; - if (value > Detail::hexThreshold) { - rss << " (0x" << std::hex << value << ')'; - } - return rss.str(); -} + std::string StringMaker::convert(long value) { + return ::Catch::Detail::stringify(static_cast(value)); + } -std::string StringMaker::convert(bool b) { - return b ? "true" : "false"; -} + std::string StringMaker::convert(long long value) { + ReusableStringStream rss; + rss << value; + if (value > Detail::hexThreshold) { + rss << " (0x" << std::hex << value << ')'; + } + return rss.str(); + } -std::string StringMaker::convert(signed char value) { - if (value == '\r') { - return "'\\r'"; - } else if (value == '\f') { - return "'\\f'"; - } else if (value == '\n') { - return "'\\n'"; - } else if (value == '\t') { - return "'\\t'"; - } else if ('\0' <= value && value < ' ') { - return ::Catch::Detail::stringify(static_cast(value)); - } else { - char chstr[] = "' '"; - chstr[1] = value; - return chstr; - } -} -std::string StringMaker::convert(char c) { - return ::Catch::Detail::stringify(static_cast(c)); -} -std::string StringMaker::convert(unsigned char c) { - return ::Catch::Detail::stringify(static_cast(c)); -} + std::string StringMaker::convert(unsigned int value) { + return ::Catch::Detail::stringify(static_cast(value)); + } -std::string StringMaker::convert(std::nullptr_t) { - return "nullptr"; -} + std::string StringMaker::convert(unsigned long value) { + return ::Catch::Detail::stringify(static_cast(value)); + } + + std::string StringMaker::convert(unsigned long long value) { + ReusableStringStream rss; + rss << value; + if (value > Detail::hexThreshold) { + rss << " (0x" << std::hex << value << ')'; + } + return rss.str(); + } -int StringMaker::precision = 5; + std::string StringMaker::convert(bool b) { + return b ? "true" : "false"; + } -std::string StringMaker::convert(float value) { - return fpToString(value, precision) + 'f'; -} + std::string StringMaker::convert(signed char value) { + if (value == '\r') { + return "'\\r'"; + } else if (value == '\f') { + return "'\\f'"; + } else if (value == '\n') { + return "'\\n'"; + } else if (value == '\t') { + return "'\\t'"; + } else if ('\0' <= value && value < ' ') { + return ::Catch::Detail::stringify(static_cast(value)); + } else { + char chstr[] = "' '"; + chstr[1] = value; + return chstr; + } + } + + std::string StringMaker::convert(char c) { + return ::Catch::Detail::stringify(static_cast(c)); + } -int StringMaker::precision = 10; + std::string StringMaker::convert(unsigned char c) { + return ::Catch::Detail::stringify(static_cast(c)); + } -std::string StringMaker::convert(double value) { - return fpToString(value, precision); -} + std::string StringMaker::convert(std::nullptr_t) { + return "nullptr"; + } -std::string ratio_string::symbol() { return "a"; } -std::string ratio_string::symbol() { return "f"; } -std::string ratio_string::symbol() { return "p"; } -std::string ratio_string::symbol() { return "n"; } -std::string ratio_string::symbol() { return "u"; } -std::string ratio_string::symbol() { return "m"; } + int StringMaker::precision = 5; + + std::string StringMaker::convert(float value) { + return fpToString(value, precision) + 'f'; + } + + int StringMaker::precision = 10; + + std::string StringMaker::convert(double value) { + return fpToString(value, precision); + } + + std::string ratio_string::symbol() { return "a"; } + + std::string ratio_string::symbol() { return "f"; } + + std::string ratio_string::symbol() { return "p"; } + + std::string ratio_string::symbol() { return "n"; } + + std::string ratio_string::symbol() { return "u"; } + + std::string ratio_string::symbol() { return "m"; } } // end namespace Catch @@ -15213,54 +16078,56 @@ std::string ratio_string::symbol() { return "m"; } namespace Catch { -Counts Counts::operator-(Counts const &other) const { - Counts diff; - diff.passed = passed - other.passed; - diff.failed = failed - other.failed; - diff.failedButOk = failedButOk - other.failedButOk; - return diff; -} + Counts Counts::operator-(Counts const &other) const { + Counts diff; + diff.passed = passed - other.passed; + diff.failed = failed - other.failed; + diff.failedButOk = failedButOk - other.failedButOk; + return diff; + } -Counts &Counts::operator+=(Counts const &other) { - passed += other.passed; - failed += other.failed; - failedButOk += other.failedButOk; - return *this; -} + Counts &Counts::operator+=(Counts const &other) { + passed += other.passed; + failed += other.failed; + failedButOk += other.failedButOk; + return *this; + } -std::size_t Counts::total() const { - return passed + failed + failedButOk; -} -bool Counts::allPassed() const { - return failed == 0 && failedButOk == 0; -} -bool Counts::allOk() const { - return failed == 0; -} + std::size_t Counts::total() const { + return passed + failed + failedButOk; + } -Totals Totals::operator-(Totals const &other) const { - Totals diff; - diff.assertions = assertions - other.assertions; - diff.testCases = testCases - other.testCases; - return diff; -} + bool Counts::allPassed() const { + return failed == 0 && failedButOk == 0; + } -Totals &Totals::operator+=(Totals const &other) { - assertions += other.assertions; - testCases += other.testCases; - return *this; -} + bool Counts::allOk() const { + return failed == 0; + } -Totals Totals::delta(Totals const &prevTotals) const { - Totals diff = *this - prevTotals; - if (diff.assertions.failed > 0) - ++diff.testCases.failed; - else if (diff.assertions.failedButOk > 0) - ++diff.testCases.failedButOk; - else - ++diff.testCases.passed; - return diff; -} + Totals Totals::operator-(Totals const &other) const { + Totals diff; + diff.assertions = assertions - other.assertions; + diff.testCases = testCases - other.testCases; + return diff; + } + + Totals &Totals::operator+=(Totals const &other) { + assertions += other.assertions; + testCases += other.testCases; + return *this; + } + + Totals Totals::delta(Totals const &prevTotals) const { + Totals diff = *this - prevTotals; + if (diff.assertions.failed > 0) + ++diff.testCases.failed; + else if (diff.assertions.failedButOk > 0) + ++diff.testCases.failedButOk; + else + ++diff.testCases.passed; + return diff; + } } // end catch_totals.cpp @@ -15304,15 +16171,15 @@ Totals Totals::delta(Totals const &prevTotals) const { #include namespace Catch { -bool uncaught_exceptions() { + bool uncaught_exceptions() { #if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) - return false; + return false; #elif defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) - return std::uncaught_exceptions() > 0; + return std::uncaught_exceptions() > 0; #else - return std::uncaught_exception(); + return std::uncaught_exception(); #endif -} + } } // end namespace Catch // end catch_uncaught_exceptions.cpp // start catch_version.cpp @@ -15321,34 +16188,34 @@ bool uncaught_exceptions() { namespace Catch { -Version::Version - (unsigned int _majorVersion, - unsigned int _minorVersion, - unsigned int _patchNumber, - char const *const _branchName, - unsigned int _buildNumber) - : majorVersion(_majorVersion), - minorVersion(_minorVersion), - patchNumber(_patchNumber), - branchName(_branchName), - buildNumber(_buildNumber) {} - -std::ostream &operator<<(std::ostream &os, Version const &version) { - os << version.majorVersion << '.' - << version.minorVersion << '.' - << version.patchNumber; - // branchName is never null -> 0th char is \0 if it is empty - if (version.branchName[0]) { - os << '-' << version.branchName - << '.' << version.buildNumber; - } - return os; -} + Version::Version + (unsigned int _majorVersion, + unsigned int _minorVersion, + unsigned int _patchNumber, + char const *const _branchName, + unsigned int _buildNumber) + : majorVersion(_majorVersion), + minorVersion(_minorVersion), + patchNumber(_patchNumber), + branchName(_branchName), + buildNumber(_buildNumber) {} + + std::ostream &operator<<(std::ostream &os, Version const &version) { + os << version.majorVersion << '.' + << version.minorVersion << '.' + << version.patchNumber; + // branchName is never null -> 0th char is \0 if it is empty + if (version.branchName[0]) { + os << '-' << version.branchName + << '.' << version.buildNumber; + } + return os; + } -Version const &libraryVersion() { - static Version version(2, 13, 10, "", 0); - return version; -} + Version const &libraryVersion() { + static Version version(2, 13, 10, "", 0); + return version; + } } // end catch_version.cpp @@ -15356,355 +16223,363 @@ Version const &libraryVersion() { namespace Catch { -WildcardPattern::WildcardPattern(std::string const &pattern, - CaseSensitive::Choice caseSensitivity) - : m_caseSensitivity(caseSensitivity), - m_pattern(normaliseString(pattern)) { - if (startsWith(m_pattern, '*')) { - m_pattern = m_pattern.substr(1); - m_wildcard = WildcardAtStart; - } - if (endsWith(m_pattern, '*')) { - m_pattern = m_pattern.substr(0, m_pattern.size() - 1); - m_wildcard = static_cast( m_wildcard | WildcardAtEnd ); - } -} + WildcardPattern::WildcardPattern(std::string const &pattern, + CaseSensitive::Choice caseSensitivity) + : m_caseSensitivity(caseSensitivity), + m_pattern(normaliseString(pattern)) { + if (startsWith(m_pattern, '*')) { + m_pattern = m_pattern.substr(1); + m_wildcard = WildcardAtStart; + } + if (endsWith(m_pattern, '*')) { + m_pattern = m_pattern.substr(0, m_pattern.size() - 1); + m_wildcard = static_cast( m_wildcard | WildcardAtEnd ); + } + } + + bool WildcardPattern::matches(std::string const &str) const { + switch (m_wildcard) { + case NoWildcard: + return m_pattern == normaliseString(str); + case WildcardAtStart: + return endsWith(normaliseString(str), m_pattern); + case WildcardAtEnd: + return startsWith(normaliseString(str), m_pattern); + case WildcardAtBothEnds: + return contains(normaliseString(str), m_pattern); + default: + CATCH_INTERNAL_ERROR("Unknown enum"); + } + } + + std::string WildcardPattern::normaliseString(std::string const &str) const { + return trim(m_caseSensitivity == CaseSensitive::No ? toLower(str) : str); + } +} +// end catch_wildcard_pattern.cpp +// start catch_xmlwriter.cpp + +#include +#include + +namespace Catch { + + namespace { + + size_t trailingBytes(unsigned char c) { + if ((c & 0xE0) == 0xC0) { + return 2; + } + if ((c & 0xF0) == 0xE0) { + return 3; + } + if ((c & 0xF8) == 0xF0) { + return 4; + } + CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); + } + + uint32_t headerValue(unsigned char c) { + if ((c & 0xE0) == 0xC0) { + return c & 0x1F; + } + if ((c & 0xF0) == 0xE0) { + return c & 0x0F; + } + if ((c & 0xF8) == 0xF0) { + return c & 0x07; + } + CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); + } + + void hexEscapeChar(std::ostream &os, unsigned char c) { + std::ios_base::fmtflags f(os.flags()); + os << "\\x" + << std::uppercase << std::hex << std::setfill('0') << std::setw(2) + << static_cast(c); + os.flags(f); + } -bool WildcardPattern::matches(std::string const &str) const { - switch (m_wildcard) { - case NoWildcard:return m_pattern == normaliseString(str); - case WildcardAtStart:return endsWith(normaliseString(str), m_pattern); - case WildcardAtEnd:return startsWith(normaliseString(str), m_pattern); - case WildcardAtBothEnds:return contains(normaliseString(str), m_pattern); - default:CATCH_INTERNAL_ERROR("Unknown enum"); - } -} + bool shouldNewline(XmlFormatting fmt) { + return !!(static_cast::type>(fmt & XmlFormatting::Newline)); + } -std::string WildcardPattern::normaliseString(std::string const &str) const { - return trim(m_caseSensitivity == CaseSensitive::No ? toLower(str) : str); -} -} -// end catch_wildcard_pattern.cpp -// start catch_xmlwriter.cpp + bool shouldIndent(XmlFormatting fmt) { + return !!(static_cast::type>(fmt & XmlFormatting::Indent)); + } -#include -#include + } // anonymous namespace -namespace Catch { + XmlFormatting operator|(XmlFormatting lhs, XmlFormatting rhs) { + return static_cast( + static_cast::type>(lhs) | + static_cast::type>(rhs) + ); + } -namespace { + XmlFormatting operator&(XmlFormatting lhs, XmlFormatting rhs) { + return static_cast( + static_cast::type>(lhs) & + static_cast::type>(rhs) + ); + } -size_t trailingBytes(unsigned char c) { - if ((c & 0xE0) == 0xC0) { - return 2; - } - if ((c & 0xF0) == 0xE0) { - return 3; - } - if ((c & 0xF8) == 0xF0) { - return 4; - } - CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); -} + XmlEncode::XmlEncode(std::string const &str, ForWhat forWhat) + : m_str(str), + m_forWhat(forWhat) {} + + void XmlEncode::encodeTo(std::ostream &os) const { + // Apostrophe escaping not necessary if we always use " to write attributes + // (see: http://www.w3.org/TR/xml/#syntax) + + for (std::size_t idx = 0; idx < m_str.size(); ++idx) { + unsigned char c = m_str[idx]; + switch (c) { + case '<': + os << "<"; + break; + case '&': + os << "&"; + break; + + case '>': + // See: http://www.w3.org/TR/xml/#syntax + if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']') + os << ">"; + else + os << c; + break; + + case '\"': + if (m_forWhat == ForAttributes) + os << """; + else + os << c; + break; -uint32_t headerValue(unsigned char c) { - if ((c & 0xE0) == 0xC0) { - return c & 0x1F; - } - if ((c & 0xF0) == 0xE0) { - return c & 0x0F; - } - if ((c & 0xF8) == 0xF0) { - return c & 0x07; - } - CATCH_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); -} + default: + // Check for control characters and invalid utf-8 -void hexEscapeChar(std::ostream &os, unsigned char c) { - std::ios_base::fmtflags f(os.flags()); - os << "\\x" - << std::uppercase << std::hex << std::setfill('0') << std::setw(2) - << static_cast(c); - os.flags(f); -} + // Escape control characters in standard ascii + // see http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0 + if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) { + hexEscapeChar(os, c); + break; + } -bool shouldNewline(XmlFormatting fmt) { - return !!(static_cast::type>(fmt & XmlFormatting::Newline)); -} + // Plain ASCII: Write it to stream + if (c < 0x7F) { + os << c; + break; + } -bool shouldIndent(XmlFormatting fmt) { - return !!(static_cast::type>(fmt & XmlFormatting::Indent)); -} + // UTF-8 territory + // Check if the encoding is valid and if it is not, hex escape bytes. + // Important: We do not check the exact decoded values for validity, only the encoding format + // First check that this bytes is a valid lead byte: + // This means that it is not encoded as 1111 1XXX + // Or as 10XX XXXX + if (c < 0xC0 || + c >= 0xF8) { + hexEscapeChar(os, c); + break; + } -} // anonymous namespace + auto encBytes = trailingBytes(c); + // Are there enough bytes left to avoid accessing out-of-bounds memory? + if (idx + encBytes - 1 >= m_str.size()) { + hexEscapeChar(os, c); + break; + } + // The header is valid, check data + // The next encBytes bytes must together be a valid utf-8 + // This means: bitpattern 10XX XXXX and the extracted value is sane (ish) + bool valid = true; + uint32_t value = headerValue(c); + for (std::size_t n = 1; n < encBytes; ++n) { + unsigned char nc = m_str[idx + n]; + valid &= ((nc & 0xC0) == 0x80); + value = (value << 6) | (nc & 0x3F); + } -XmlFormatting operator|(XmlFormatting lhs, XmlFormatting rhs) { - return static_cast( - static_cast::type>(lhs) | - static_cast::type>(rhs) - ); -} + if ( + // Wrong bit pattern of following bytes + (!valid) || + // Overlong encodings + (value < 0x80) || + (0x80 <= value && value < 0x800 && encBytes > 2) || + (0x800 < value && value < 0x10000 && encBytes > 3) || + // Encoded value out of range + (value >= 0x110000) + ) { + hexEscapeChar(os, c); + break; + } -XmlFormatting operator&(XmlFormatting lhs, XmlFormatting rhs) { - return static_cast( - static_cast::type>(lhs) & - static_cast::type>(rhs) - ); -} + // If we got here, this is in fact a valid(ish) utf-8 sequence + for (std::size_t n = 0; n < encBytes; ++n) { + os << m_str[idx + n]; + } + idx += encBytes - 1; + break; + } + } + } -XmlEncode::XmlEncode(std::string const &str, ForWhat forWhat) - : m_str(str), - m_forWhat(forWhat) {} - -void XmlEncode::encodeTo(std::ostream &os) const { - // Apostrophe escaping not necessary if we always use " to write attributes - // (see: http://www.w3.org/TR/xml/#syntax) - - for (std::size_t idx = 0; idx < m_str.size(); ++idx) { - unsigned char c = m_str[idx]; - switch (c) { - case '<': os << "<"; - break; - case '&': os << "&"; - break; - - case '>': - // See: http://www.w3.org/TR/xml/#syntax - if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']') - os << ">"; - else - os << c; - break; + std::ostream &operator<<(std::ostream &os, XmlEncode const &xmlEncode) { + xmlEncode.encodeTo(os); + return os; + } - case '\"': - if (m_forWhat == ForAttributes) - os << """; - else - os << c; - break; - - default: - // Check for control characters and invalid utf-8 - - // Escape control characters in standard ascii - // see http://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0 - if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) { - hexEscapeChar(os, c); - break; - } - - // Plain ASCII: Write it to stream - if (c < 0x7F) { - os << c; - break; - } - - // UTF-8 territory - // Check if the encoding is valid and if it is not, hex escape bytes. - // Important: We do not check the exact decoded values for validity, only the encoding format - // First check that this bytes is a valid lead byte: - // This means that it is not encoded as 1111 1XXX - // Or as 10XX XXXX - if (c < 0xC0 || - c >= 0xF8) { - hexEscapeChar(os, c); - break; - } - - auto encBytes = trailingBytes(c); - // Are there enough bytes left to avoid accessing out-of-bounds memory? - if (idx + encBytes - 1 >= m_str.size()) { - hexEscapeChar(os, c); - break; - } - // The header is valid, check data - // The next encBytes bytes must together be a valid utf-8 - // This means: bitpattern 10XX XXXX and the extracted value is sane (ish) - bool valid = true; - uint32_t value = headerValue(c); - for (std::size_t n = 1; n < encBytes; ++n) { - unsigned char nc = m_str[idx + n]; - valid &= ((nc & 0xC0) == 0x80); - value = (value << 6) | (nc & 0x3F); - } - - if ( - // Wrong bit pattern of following bytes - (!valid) || - // Overlong encodings - (value < 0x80) || - (0x80 <= value && value < 0x800 && encBytes > 2) || - (0x800 < value && value < 0x10000 && encBytes > 3) || - // Encoded value out of range - (value >= 0x110000) - ) { - hexEscapeChar(os, c); - break; - } - - // If we got here, this is in fact a valid(ish) utf-8 sequence - for (std::size_t n = 0; n < encBytes; ++n) { - os << m_str[idx + n]; - } - idx += encBytes - 1; - break; - } - } -} + XmlWriter::ScopedElement::ScopedElement(XmlWriter *writer, XmlFormatting fmt) + : m_writer(writer), + m_fmt(fmt) {} -std::ostream &operator<<(std::ostream &os, XmlEncode const &xmlEncode) { - xmlEncode.encodeTo(os); - return os; -} + XmlWriter::ScopedElement::ScopedElement(ScopedElement &&other) noexcept + : m_writer(other.m_writer), + m_fmt(other.m_fmt) { + other.m_writer = nullptr; + other.m_fmt = XmlFormatting::None; + } -XmlWriter::ScopedElement::ScopedElement(XmlWriter *writer, XmlFormatting fmt) - : m_writer(writer), - m_fmt(fmt) {} + XmlWriter::ScopedElement &XmlWriter::ScopedElement::operator=(ScopedElement &&other) noexcept { + if (m_writer) { + m_writer->endElement(); + } + m_writer = other.m_writer; + other.m_writer = nullptr; + m_fmt = other.m_fmt; + other.m_fmt = XmlFormatting::None; + return *this; + } -XmlWriter::ScopedElement::ScopedElement(ScopedElement &&other) noexcept - : m_writer(other.m_writer), - m_fmt(other.m_fmt) { - other.m_writer = nullptr; - other.m_fmt = XmlFormatting::None; -} -XmlWriter::ScopedElement &XmlWriter::ScopedElement::operator=(ScopedElement &&other) noexcept { - if (m_writer) { - m_writer->endElement(); - } - m_writer = other.m_writer; - other.m_writer = nullptr; - m_fmt = other.m_fmt; - other.m_fmt = XmlFormatting::None; - return *this; -} + XmlWriter::ScopedElement::~ScopedElement() { + if (m_writer) { + m_writer->endElement(m_fmt); + } + } -XmlWriter::ScopedElement::~ScopedElement() { - if (m_writer) { - m_writer->endElement(m_fmt); - } -} + XmlWriter::ScopedElement &XmlWriter::ScopedElement::writeText(std::string const &text, XmlFormatting fmt) { + m_writer->writeText(text, fmt); + return *this; + } -XmlWriter::ScopedElement &XmlWriter::ScopedElement::writeText(std::string const &text, XmlFormatting fmt) { - m_writer->writeText(text, fmt); - return *this; -} + XmlWriter::XmlWriter(std::ostream &os) : m_os(os) { + writeDeclaration(); + } -XmlWriter::XmlWriter(std::ostream &os) : m_os(os) { - writeDeclaration(); -} + XmlWriter::~XmlWriter() { + while (!m_tags.empty()) { + endElement(); + } + newlineIfNecessary(); + } -XmlWriter::~XmlWriter() { - while (!m_tags.empty()) { - endElement(); - } - newlineIfNecessary(); -} + XmlWriter &XmlWriter::startElement(std::string const &name, XmlFormatting fmt) { + ensureTagClosed(); + newlineIfNecessary(); + if (shouldIndent(fmt)) { + m_os << m_indent; + m_indent += " "; + } + m_os << '<' << name; + m_tags.push_back(name); + m_tagIsOpen = true; + applyFormatting(fmt); + return *this; + } -XmlWriter &XmlWriter::startElement(std::string const &name, XmlFormatting fmt) { - ensureTagClosed(); - newlineIfNecessary(); - if (shouldIndent(fmt)) { - m_os << m_indent; - m_indent += " "; - } - m_os << '<' << name; - m_tags.push_back(name); - m_tagIsOpen = true; - applyFormatting(fmt); - return *this; -} + XmlWriter::ScopedElement XmlWriter::scopedElement(std::string const &name, XmlFormatting fmt) { + ScopedElement scoped(this, fmt); + startElement(name, fmt); + return scoped; + } -XmlWriter::ScopedElement XmlWriter::scopedElement(std::string const &name, XmlFormatting fmt) { - ScopedElement scoped(this, fmt); - startElement(name, fmt); - return scoped; -} + XmlWriter &XmlWriter::endElement(XmlFormatting fmt) { + m_indent = m_indent.substr(0, m_indent.size() - 2); -XmlWriter &XmlWriter::endElement(XmlFormatting fmt) { - m_indent = m_indent.substr(0, m_indent.size() - 2); - - if (m_tagIsOpen) { - m_os << "/>"; - m_tagIsOpen = false; - } else { - newlineIfNecessary(); - if (shouldIndent(fmt)) { - m_os << m_indent; - } - m_os << ""; - } - m_os << std::flush; - applyFormatting(fmt); - m_tags.pop_back(); - return *this; -} + if (m_tagIsOpen) { + m_os << "/>"; + m_tagIsOpen = false; + } else { + newlineIfNecessary(); + if (shouldIndent(fmt)) { + m_os << m_indent; + } + m_os << ""; + } + m_os << std::flush; + applyFormatting(fmt); + m_tags.pop_back(); + return *this; + } -XmlWriter &XmlWriter::writeAttribute(std::string const &name, std::string const &attribute) { - if (!name.empty() && !attribute.empty()) - m_os << ' ' << name << "=\"" << XmlEncode(attribute, XmlEncode::ForAttributes) << '"'; - return *this; -} + XmlWriter &XmlWriter::writeAttribute(std::string const &name, std::string const &attribute) { + if (!name.empty() && !attribute.empty()) + m_os << ' ' << name << "=\"" << XmlEncode(attribute, XmlEncode::ForAttributes) << '"'; + return *this; + } -XmlWriter &XmlWriter::writeAttribute(std::string const &name, bool attribute) { - m_os << ' ' << name << "=\"" << (attribute ? "true" : "false") << '"'; - return *this; -} + XmlWriter &XmlWriter::writeAttribute(std::string const &name, bool attribute) { + m_os << ' ' << name << "=\"" << (attribute ? "true" : "false") << '"'; + return *this; + } -XmlWriter &XmlWriter::writeText(std::string const &text, XmlFormatting fmt) { - if (!text.empty()) { - bool tagWasOpen = m_tagIsOpen; - ensureTagClosed(); - if (tagWasOpen && shouldIndent(fmt)) { - m_os << m_indent; - } - m_os << XmlEncode(text); - applyFormatting(fmt); - } - return *this; -} + XmlWriter &XmlWriter::writeText(std::string const &text, XmlFormatting fmt) { + if (!text.empty()) { + bool tagWasOpen = m_tagIsOpen; + ensureTagClosed(); + if (tagWasOpen && shouldIndent(fmt)) { + m_os << m_indent; + } + m_os << XmlEncode(text); + applyFormatting(fmt); + } + return *this; + } -XmlWriter &XmlWriter::writeComment(std::string const &text, XmlFormatting fmt) { - ensureTagClosed(); - if (shouldIndent(fmt)) { - m_os << m_indent; - } - m_os << ""; - applyFormatting(fmt); - return *this; -} + XmlWriter &XmlWriter::writeComment(std::string const &text, XmlFormatting fmt) { + ensureTagClosed(); + if (shouldIndent(fmt)) { + m_os << m_indent; + } + m_os << ""; + applyFormatting(fmt); + return *this; + } -void XmlWriter::writeStylesheetRef(std::string const &url) { - m_os << "\n"; -} + void XmlWriter::writeStylesheetRef(std::string const &url) { + m_os << "\n"; + } -XmlWriter &XmlWriter::writeBlankLine() { - ensureTagClosed(); - m_os << '\n'; - return *this; -} + XmlWriter &XmlWriter::writeBlankLine() { + ensureTagClosed(); + m_os << '\n'; + return *this; + } -void XmlWriter::ensureTagClosed() { - if (m_tagIsOpen) { - m_os << '>' << std::flush; - newlineIfNecessary(); - m_tagIsOpen = false; - } -} + void XmlWriter::ensureTagClosed() { + if (m_tagIsOpen) { + m_os << '>' << std::flush; + newlineIfNecessary(); + m_tagIsOpen = false; + } + } -void XmlWriter::applyFormatting(XmlFormatting fmt) { - m_needsNewline = shouldNewline(fmt); -} + void XmlWriter::applyFormatting(XmlFormatting fmt) { + m_needsNewline = shouldNewline(fmt); + } -void XmlWriter::writeDeclaration() { - m_os << "\n"; -} + void XmlWriter::writeDeclaration() { + m_os << "\n"; + } -void XmlWriter::newlineIfNecessary() { - if (m_needsNewline) { - m_os << std::endl; - m_needsNewline = false; - } -} + void XmlWriter::newlineIfNecessary() { + if (m_needsNewline) { + m_os << std::endl; + m_needsNewline = false; + } + } } // end catch_xmlwriter.cpp // start catch_reporter_bases.cpp @@ -15716,67 +16591,67 @@ void XmlWriter::newlineIfNecessary() { #include namespace Catch { -void prepareExpandedExpression(AssertionResult &result) { - result.getExpandedExpression(); -} + void prepareExpandedExpression(AssertionResult &result) { + result.getExpandedExpression(); + } // Because formatting using c++ streams is stateful, drop down to C is required // Alternatively we could use stringstream, but its performance is... not good. -std::string getFormattedDuration(double duration) { - // Max exponent + 1 is required to represent the whole part - // + 1 for decimal point - // + 3 for the 3 decimal places - // + 1 for null terminator - const std::size_t maxDoubleSize = DBL_MAX_10_EXP + 1 + 1 + 3 + 1; - char buffer[maxDoubleSize]; - - // Save previous errno, to prevent sprintf from overwriting it - ErrnoGuard guard; + std::string getFormattedDuration(double duration) { + // Max exponent + 1 is required to represent the whole part + // + 1 for decimal point + // + 3 for the 3 decimal places + // + 1 for null terminator + const std::size_t maxDoubleSize = DBL_MAX_10_EXP + 1 + 1 + 3 + 1; + char buffer[maxDoubleSize]; + + // Save previous errno, to prevent sprintf from overwriting it + ErrnoGuard guard; #ifdef _MSC_VER - sprintf_s(buffer, "%.3f", duration); + sprintf_s(buffer, "%.3f", duration); #else - std::sprintf(buffer, "%.3f", duration); + std::sprintf(buffer, "%.3f", duration); #endif - return std::string(buffer); -} + return std::string(buffer); + } -bool shouldShowDuration(IConfig const &config, double duration) { - if (config.showDurations() == ShowDurations::Always) { - return true; - } - if (config.showDurations() == ShowDurations::Never) { - return false; - } - const double min = config.minDuration(); - return min >= 0 && duration >= min; -} + bool shouldShowDuration(IConfig const &config, double duration) { + if (config.showDurations() == ShowDurations::Always) { + return true; + } + if (config.showDurations() == ShowDurations::Never) { + return false; + } + const double min = config.minDuration(); + return min >= 0 && duration >= min; + } -std::string serializeFilters(std::vector const &container) { - ReusableStringStream oss; - bool first = true; - for (auto &&filter : container) { - if (!first) - oss << ' '; - else - first = false; + std::string serializeFilters(std::vector const &container) { + ReusableStringStream oss; + bool first = true; + for (auto &&filter: container) { + if (!first) + oss << ' '; + else + first = false; - oss << filter; - } - return oss.str(); -} + oss << filter; + } + return oss.str(); + } -TestEventListenerBase::TestEventListenerBase(ReporterConfig const &_config) - : StreamingReporterBase(_config) {} + TestEventListenerBase::TestEventListenerBase(ReporterConfig const &_config) + : StreamingReporterBase(_config) {} -std::set TestEventListenerBase::getSupportedVerbosities() { - return {Verbosity::Quiet, Verbosity::Normal, Verbosity::High}; -} + std::set TestEventListenerBase::getSupportedVerbosities() { + return {Verbosity::Quiet, Verbosity::Normal, Verbosity::High}; + } -void TestEventListenerBase::assertionStarting(AssertionInfo const &) {} + void TestEventListenerBase::assertionStarting(AssertionInfo const &) {} -bool TestEventListenerBase::assertionEnded(AssertionStats const &) { - return false; -} + bool TestEventListenerBase::assertionEnded(AssertionStats const &) { + return false; + } } // end namespace Catch // end catch_reporter_bases.cpp @@ -15785,271 +16660,284 @@ bool TestEventListenerBase::assertionEnded(AssertionStats const &) { namespace { #ifdef CATCH_PLATFORM_MAC - const char* failedString() { return "FAILED"; } + const char* failedString() { return "FAILED"; } const char* passedString() { return "PASSED"; } #else -const char *failedString() { return "failed"; } -const char *passedString() { return "passed"; } + + const char *failedString() { return "failed"; } + + const char *passedString() { return "passed"; } + #endif // Colour::LightGrey -Catch::Colour::Code dimColour() { return Catch::Colour::FileName; } + Catch::Colour::Code dimColour() { return Catch::Colour::FileName; } -std::string bothOrAll(std::size_t count) { - return count == 1 ? std::string() : - count == 2 ? "both " : "all "; -} + std::string bothOrAll(std::size_t count) { + return count == 1 ? std::string() : + count == 2 ? "both " : "all "; + } } // anon namespace namespace Catch { -namespace { + namespace { // Colour, message variants: // - white: No tests ran. // - red: Failed [both/all] N test cases, failed [both/all] M assertions. // - white: Passed [both/all] N test cases (no assertions). // - red: Failed N tests cases, failed M assertions. // - green: Passed [both/all] N tests cases with M assertions. -void printTotals(std::ostream &out, const Totals &totals) { - if (totals.testCases.total() == 0) { - out << "No tests ran."; - } else if (totals.testCases.failed == totals.testCases.total()) { - Colour colour(Colour::ResultError); - const std::string qualify_assertions_failed = - totals.assertions.failed == totals.assertions.total() ? - bothOrAll(totals.assertions.failed) : std::string(); - out << - "Failed " << bothOrAll(totals.testCases.failed) - << pluralise(totals.testCases.failed, "test case") << ", " - "failed " << qualify_assertions_failed << - pluralise(totals.assertions.failed, "assertion") << '.'; - } else if (totals.assertions.total() == 0) { - out << - "Passed " << bothOrAll(totals.testCases.total()) - << pluralise(totals.testCases.total(), "test case") - << " (no assertions)."; - } else if (totals.assertions.failed) { - Colour colour(Colour::ResultError); - out << - "Failed " << pluralise(totals.testCases.failed, "test case") << ", " - "failed " - << pluralise(totals.assertions.failed, "assertion") << '.'; - } else { - Colour colour(Colour::ResultSuccess); - out << - "Passed " << bothOrAll(totals.testCases.passed) - << pluralise(totals.testCases.passed, "test case") << - " with " << pluralise(totals.assertions.passed, "assertion") << '.'; - } -} + void printTotals(std::ostream &out, const Totals &totals) { + if (totals.testCases.total() == 0) { + out << "No tests ran."; + } else if (totals.testCases.failed == totals.testCases.total()) { + Colour colour(Colour::ResultError); + const std::string qualify_assertions_failed = + totals.assertions.failed == totals.assertions.total() ? + bothOrAll(totals.assertions.failed) : std::string(); + out << + "Failed " << bothOrAll(totals.testCases.failed) + << pluralise(totals.testCases.failed, "test case") << ", " + "failed " << qualify_assertions_failed << + pluralise(totals.assertions.failed, "assertion") << '.'; + } else if (totals.assertions.total() == 0) { + out << + "Passed " << bothOrAll(totals.testCases.total()) + << pluralise(totals.testCases.total(), "test case") + << " (no assertions)."; + } else if (totals.assertions.failed) { + Colour colour(Colour::ResultError); + out << + "Failed " << pluralise(totals.testCases.failed, "test case") << ", " + "failed " + << pluralise(totals.assertions.failed, "assertion") << '.'; + } else { + Colour colour(Colour::ResultSuccess); + out << + "Passed " << bothOrAll(totals.testCases.passed) + << pluralise(totals.testCases.passed, "test case") << + " with " << pluralise(totals.assertions.passed, "assertion") << '.'; + } + } // Implementation of CompactReporter formatting -class AssertionPrinter { - public: - AssertionPrinter &operator=(AssertionPrinter const &) = delete; - AssertionPrinter(AssertionPrinter const &) = delete; - AssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, bool _printInfoMessages) - : stream(_stream), - result(_stats.assertionResult), - messages(_stats.infoMessages), - itMessage(_stats.infoMessages.begin()), - printInfoMessages(_printInfoMessages) {} - - void print() { - printSourceInfo(); - - itMessage = messages.begin(); - - switch (result.getResultType()) { - case ResultWas::Ok:printResultType(Colour::ResultSuccess, passedString()); - printOriginalExpression(); - printReconstructedExpression(); - if (!result.hasExpression()) - printRemainingMessages(Colour::None); - else - printRemainingMessages(); - break; - case ResultWas::ExpressionFailed: - if (result.isOk()) - printResultType(Colour::ResultSuccess, failedString() + std::string(" - but was ok")); - else - printResultType(Colour::Error, failedString()); - printOriginalExpression(); - printReconstructedExpression(); - printRemainingMessages(); - break; - case ResultWas::ThrewException:printResultType(Colour::Error, failedString()); - printIssue("unexpected exception with message:"); - printMessage(); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::FatalErrorCondition:printResultType(Colour::Error, failedString()); - printIssue("fatal error condition with message:"); - printMessage(); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::DidntThrowException:printResultType(Colour::Error, failedString()); - printIssue("expected exception, got none"); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::Info:printResultType(Colour::None, "info"); - printMessage(); - printRemainingMessages(); - break; - case ResultWas::Warning:printResultType(Colour::None, "warning"); - printMessage(); - printRemainingMessages(); - break; - case ResultWas::ExplicitFailure:printResultType(Colour::Error, failedString()); - printIssue("explicitly"); - printRemainingMessages(Colour::None); - break; - // These cases are here to prevent compiler warnings - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:printResultType(Colour::Error, "** internal error **"); - break; - } - } - - private: - void printSourceInfo() const { - Colour colourGuard(Colour::FileName); - stream << result.getSourceInfo() << ':'; - } - - void printResultType(Colour::Code colour, std::string const &passOrFail) const { - if (!passOrFail.empty()) { - { - Colour colourGuard(colour); - stream << ' ' << passOrFail; - } - stream << ':'; - } - } - - void printIssue(std::string const &issue) const { - stream << ' ' << issue; - } - - void printExpressionWas() { - if (result.hasExpression()) { - stream << ';'; - { - Colour colour(dimColour()); - stream << " expression was:"; - } - printOriginalExpression(); - } - } - - void printOriginalExpression() const { - if (result.hasExpression()) { - stream << ' ' << result.getExpression(); - } - } - - void printReconstructedExpression() const { - if (result.hasExpandedExpression()) { - { - Colour colour(dimColour()); - stream << " for: "; - } - stream << result.getExpandedExpression(); - } - } - - void printMessage() { - if (itMessage != messages.end()) { - stream << " '" << itMessage->message << '\''; - ++itMessage; - } - } - - void printRemainingMessages(Colour::Code colour = dimColour()) { - if (itMessage == messages.end()) - return; - - const auto itEnd = messages.cend(); - const auto N = static_cast(std::distance(itMessage, itEnd)); + class AssertionPrinter { + public: + AssertionPrinter &operator=(AssertionPrinter const &) = delete; + + AssertionPrinter(AssertionPrinter const &) = delete; + + AssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, bool _printInfoMessages) + : stream(_stream), + result(_stats.assertionResult), + messages(_stats.infoMessages), + itMessage(_stats.infoMessages.begin()), + printInfoMessages(_printInfoMessages) {} + + void print() { + printSourceInfo(); + + itMessage = messages.begin(); + + switch (result.getResultType()) { + case ResultWas::Ok: + printResultType(Colour::ResultSuccess, passedString()); + printOriginalExpression(); + printReconstructedExpression(); + if (!result.hasExpression()) + printRemainingMessages(Colour::None); + else + printRemainingMessages(); + break; + case ResultWas::ExpressionFailed: + if (result.isOk()) + printResultType(Colour::ResultSuccess, failedString() + std::string(" - but was ok")); + else + printResultType(Colour::Error, failedString()); + printOriginalExpression(); + printReconstructedExpression(); + printRemainingMessages(); + break; + case ResultWas::ThrewException: + printResultType(Colour::Error, failedString()); + printIssue("unexpected exception with message:"); + printMessage(); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::FatalErrorCondition: + printResultType(Colour::Error, failedString()); + printIssue("fatal error condition with message:"); + printMessage(); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::DidntThrowException: + printResultType(Colour::Error, failedString()); + printIssue("expected exception, got none"); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::Info: + printResultType(Colour::None, "info"); + printMessage(); + printRemainingMessages(); + break; + case ResultWas::Warning: + printResultType(Colour::None, "warning"); + printMessage(); + printRemainingMessages(); + break; + case ResultWas::ExplicitFailure: + printResultType(Colour::Error, failedString()); + printIssue("explicitly"); + printRemainingMessages(Colour::None); + break; + // These cases are here to prevent compiler warnings + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + printResultType(Colour::Error, "** internal error **"); + break; + } + } - { - Colour colourGuard(colour); - stream << " with " << pluralise(N, "message") << ':'; - } - - while (itMessage != itEnd) { - // If this assertion is a warning ignore any INFO messages - if (printInfoMessages || itMessage->type != ResultWas::Info) { - printMessage(); - if (itMessage != itEnd) { - Colour colourGuard(dimColour()); - stream << " and"; - } - continue; - } - ++itMessage; - } - } - - private: - std::ostream &stream; - AssertionResult const &result; - std::vector messages; - std::vector::const_iterator itMessage; - bool printInfoMessages; -}; + private: + void printSourceInfo() const { + Colour colourGuard(Colour::FileName); + stream << result.getSourceInfo() << ':'; + } -} // anon namespace + void printResultType(Colour::Code colour, std::string const &passOrFail) const { + if (!passOrFail.empty()) { + { + Colour colourGuard(colour); + stream << ' ' << passOrFail; + } + stream << ':'; + } + } -std::string CompactReporter::getDescription() { - return "Reports test results on a single line, suitable for IDEs"; -} + void printIssue(std::string const &issue) const { + stream << ' ' << issue; + } -void CompactReporter::noMatchingTestCases(std::string const &spec) { - stream << "No test cases matched '" << spec << '\'' << std::endl; -} + void printExpressionWas() { + if (result.hasExpression()) { + stream << ';'; + { + Colour colour(dimColour()); + stream << " expression was:"; + } + printOriginalExpression(); + } + } + + void printOriginalExpression() const { + if (result.hasExpression()) { + stream << ' ' << result.getExpression(); + } + } + + void printReconstructedExpression() const { + if (result.hasExpandedExpression()) { + { + Colour colour(dimColour()); + stream << " for: "; + } + stream << result.getExpandedExpression(); + } + } -void CompactReporter::assertionStarting(AssertionInfo const &) {} + void printMessage() { + if (itMessage != messages.end()) { + stream << " '" << itMessage->message << '\''; + ++itMessage; + } + } -bool CompactReporter::assertionEnded(AssertionStats const &_assertionStats) { - AssertionResult const &result = _assertionStats.assertionResult; + void printRemainingMessages(Colour::Code colour = dimColour()) { + if (itMessage == messages.end()) + return; - bool printInfoMessages = true; + const auto itEnd = messages.cend(); + const auto N = static_cast(std::distance(itMessage, itEnd)); + + { + Colour colourGuard(colour); + stream << " with " << pluralise(N, "message") << ':'; + } - // Drop out if result was successful and we're not printing those - if (!m_config->includeSuccessfulResults() && result.isOk()) { - if (result.getResultType() != ResultWas::Warning) - return false; - printInfoMessages = false; - } + while (itMessage != itEnd) { + // If this assertion is a warning ignore any INFO messages + if (printInfoMessages || itMessage->type != ResultWas::Info) { + printMessage(); + if (itMessage != itEnd) { + Colour colourGuard(dimColour()); + stream << " and"; + } + continue; + } + ++itMessage; + } + } - AssertionPrinter printer(stream, _assertionStats, printInfoMessages); - printer.print(); + private: + std::ostream &stream; + AssertionResult const &result; + std::vector messages; + std::vector::const_iterator itMessage; + bool printInfoMessages; + }; - stream << std::endl; - return true; -} + } // anon namespace -void CompactReporter::sectionEnded(SectionStats const &_sectionStats) { - double dur = _sectionStats.durationInSeconds; - if (shouldShowDuration(*m_config, dur)) { - stream << getFormattedDuration(dur) << " s: " << _sectionStats.sectionInfo.name << std::endl; - } -} + std::string CompactReporter::getDescription() { + return "Reports test results on a single line, suitable for IDEs"; + } -void CompactReporter::testRunEnded(TestRunStats const &_testRunStats) { - printTotals(stream, _testRunStats.totals); - stream << '\n' << std::endl; - StreamingReporterBase::testRunEnded(_testRunStats); -} + void CompactReporter::noMatchingTestCases(std::string const &spec) { + stream << "No test cases matched '" << spec << '\'' << std::endl; + } -CompactReporter::~CompactReporter() {} + void CompactReporter::assertionStarting(AssertionInfo const &) {} -CATCH_REGISTER_REPORTER("compact", CompactReporter) + bool CompactReporter::assertionEnded(AssertionStats const &_assertionStats) { + AssertionResult const &result = _assertionStats.assertionResult; + + bool printInfoMessages = true; + + // Drop out if result was successful and we're not printing those + if (!m_config->includeSuccessfulResults() && result.isOk()) { + if (result.getResultType() != ResultWas::Warning) + return false; + printInfoMessages = false; + } + + AssertionPrinter printer(stream, _assertionStats, printInfoMessages); + printer.print(); + + stream << std::endl; + return true; + } + + void CompactReporter::sectionEnded(SectionStats const &_sectionStats) { + double dur = _sectionStats.durationInSeconds; + if (shouldShowDuration(*m_config, dur)) { + stream << getFormattedDuration(dur) << " s: " << _sectionStats.sectionInfo.name << std::endl; + } + } + + void CompactReporter::testRunEnded(TestRunStats const &_testRunStats) { + printTotals(stream, _testRunStats.totals); + stream << '\n' << std::endl; + StreamingReporterBase::testRunEnded(_testRunStats); + } + + CompactReporter::~CompactReporter() {} + + CATCH_REGISTER_REPORTER("compact", CompactReporter) } // end namespace Catch // end catch_reporter_compact.cpp @@ -16072,381 +16960,417 @@ CATCH_REGISTER_REPORTER("compact", CompactReporter) namespace Catch { -namespace { + namespace { // Formatter impl for ConsoleReporter -class ConsoleAssertionPrinter { - public: - ConsoleAssertionPrinter &operator=(ConsoleAssertionPrinter const &) = delete; - ConsoleAssertionPrinter(ConsoleAssertionPrinter const &) = delete; - ConsoleAssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, bool _printInfoMessages) - : stream(_stream), - stats(_stats), - result(_stats.assertionResult), - colour(Colour::None), - message(result.getMessage()), - messages(_stats.infoMessages), - printInfoMessages(_printInfoMessages) { - switch (result.getResultType()) { - case ResultWas::Ok:colour = Colour::Success; - passOrFail = "PASSED"; - //if( result.hasMessage() ) - if (_stats.infoMessages.size() == 1) - messageLabel = "with message"; - if (_stats.infoMessages.size() > 1) - messageLabel = "with messages"; - break; - case ResultWas::ExpressionFailed: - if (result.isOk()) { - colour = Colour::Success; - passOrFail = "FAILED - but was ok"; - } else { - colour = Colour::Error; - passOrFail = "FAILED"; - } - if (_stats.infoMessages.size() == 1) - messageLabel = "with message"; - if (_stats.infoMessages.size() > 1) - messageLabel = "with messages"; - break; - case ResultWas::ThrewException:colour = Colour::Error; - passOrFail = "FAILED"; - messageLabel = "due to unexpected exception with "; - if (_stats.infoMessages.size() == 1) - messageLabel += "message"; - if (_stats.infoMessages.size() > 1) - messageLabel += "messages"; - break; - case ResultWas::FatalErrorCondition:colour = Colour::Error; - passOrFail = "FAILED"; - messageLabel = "due to a fatal error condition"; - break; - case ResultWas::DidntThrowException:colour = Colour::Error; - passOrFail = "FAILED"; - messageLabel = "because no exception was thrown where one was expected"; - break; - case ResultWas::Info:messageLabel = "info"; - break; - case ResultWas::Warning:messageLabel = "warning"; - break; - case ResultWas::ExplicitFailure:passOrFail = "FAILED"; - colour = Colour::Error; - if (_stats.infoMessages.size() == 1) - messageLabel = "explicitly with message"; - if (_stats.infoMessages.size() > 1) - messageLabel = "explicitly with messages"; - break; - // These cases are here to prevent compiler warnings - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:passOrFail = "** internal error **"; - colour = Colour::Error; - break; - } - } - - void print() const { - printSourceInfo(); - if (stats.totals.assertions.total() > 0) { - printResultType(); - printOriginalExpression(); - printReconstructedExpression(); - } else { - stream << '\n'; - } - printMessage(); - } - - private: - void printResultType() const { - if (!passOrFail.empty()) { - Colour colourGuard(colour); - stream << passOrFail << ":\n"; - } - } - void printOriginalExpression() const { - if (result.hasExpression()) { - Colour colourGuard(Colour::OriginalExpression); - stream << " "; - stream << result.getExpressionInMacro(); - stream << '\n'; - } - } - void printReconstructedExpression() const { - if (result.hasExpandedExpression()) { - stream << "with expansion:\n"; - Colour colourGuard(Colour::ReconstructedExpression); - stream << Column(result.getExpandedExpression()).indent(2) << '\n'; - } - } - void printMessage() const { - if (!messageLabel.empty()) - stream << messageLabel << ':' << '\n'; - for (auto const &msg : messages) { - // If this assertion is a warning ignore any INFO messages - if (printInfoMessages || msg.type != ResultWas::Info) - stream << Column(msg.message).indent(2) << '\n'; - } - } - void printSourceInfo() const { - Colour colourGuard(Colour::FileName); - stream << result.getSourceInfo() << ": "; - } - - std::ostream &stream; - AssertionStats const &stats; - AssertionResult const &result; - Colour::Code colour; - std::string passOrFail; - std::string messageLabel; - std::string message; - std::vector messages; - bool printInfoMessages; -}; + class ConsoleAssertionPrinter { + public: + ConsoleAssertionPrinter &operator=(ConsoleAssertionPrinter const &) = delete; + + ConsoleAssertionPrinter(ConsoleAssertionPrinter const &) = delete; + + ConsoleAssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, bool _printInfoMessages) + : stream(_stream), + stats(_stats), + result(_stats.assertionResult), + colour(Colour::None), + message(result.getMessage()), + messages(_stats.infoMessages), + printInfoMessages(_printInfoMessages) { + switch (result.getResultType()) { + case ResultWas::Ok: + colour = Colour::Success; + passOrFail = "PASSED"; + //if( result.hasMessage() ) + if (_stats.infoMessages.size() == 1) + messageLabel = "with message"; + if (_stats.infoMessages.size() > 1) + messageLabel = "with messages"; + break; + case ResultWas::ExpressionFailed: + if (result.isOk()) { + colour = Colour::Success; + passOrFail = "FAILED - but was ok"; + } else { + colour = Colour::Error; + passOrFail = "FAILED"; + } + if (_stats.infoMessages.size() == 1) + messageLabel = "with message"; + if (_stats.infoMessages.size() > 1) + messageLabel = "with messages"; + break; + case ResultWas::ThrewException: + colour = Colour::Error; + passOrFail = "FAILED"; + messageLabel = "due to unexpected exception with "; + if (_stats.infoMessages.size() == 1) + messageLabel += "message"; + if (_stats.infoMessages.size() > 1) + messageLabel += "messages"; + break; + case ResultWas::FatalErrorCondition: + colour = Colour::Error; + passOrFail = "FAILED"; + messageLabel = "due to a fatal error condition"; + break; + case ResultWas::DidntThrowException: + colour = Colour::Error; + passOrFail = "FAILED"; + messageLabel = "because no exception was thrown where one was expected"; + break; + case ResultWas::Info: + messageLabel = "info"; + break; + case ResultWas::Warning: + messageLabel = "warning"; + break; + case ResultWas::ExplicitFailure: + passOrFail = "FAILED"; + colour = Colour::Error; + if (_stats.infoMessages.size() == 1) + messageLabel = "explicitly with message"; + if (_stats.infoMessages.size() > 1) + messageLabel = "explicitly with messages"; + break; + // These cases are here to prevent compiler warnings + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + passOrFail = "** internal error **"; + colour = Colour::Error; + break; + } + } -std::size_t makeRatio(std::size_t number, std::size_t total) { - std::size_t ratio = total > 0 ? CATCH_CONFIG_CONSOLE_WIDTH * number / total : 0; - return (ratio == 0 && number > 0) ? 1 : ratio; -} + void print() const { + printSourceInfo(); + if (stats.totals.assertions.total() > 0) { + printResultType(); + printOriginalExpression(); + printReconstructedExpression(); + } else { + stream << '\n'; + } + printMessage(); + } -std::size_t &findMax(std::size_t &i, std::size_t &j, std::size_t &k) { - if (i > j && i > k) - return i; - else if (j > k) - return j; - else - return k; -} + private: + void printResultType() const { + if (!passOrFail.empty()) { + Colour colourGuard(colour); + stream << passOrFail << ":\n"; + } + } -struct ColumnInfo { - enum Justification { Left, Right }; - std::string name; - int width; - Justification justification; -}; -struct ColumnBreak {}; -struct RowBreak {}; - -class Duration { - enum class Unit { - Auto, - Nanoseconds, - Microseconds, - Milliseconds, - Seconds, - Minutes - }; - static const uint64_t s_nanosecondsInAMicrosecond = 1000; - static const uint64_t s_nanosecondsInAMillisecond = 1000 * s_nanosecondsInAMicrosecond; - static const uint64_t s_nanosecondsInASecond = 1000 * s_nanosecondsInAMillisecond; - static const uint64_t s_nanosecondsInAMinute = 60 * s_nanosecondsInASecond; - - double m_inNanoseconds; - Unit m_units; - - public: - explicit Duration(double inNanoseconds, Unit units = Unit::Auto) - : m_inNanoseconds(inNanoseconds), - m_units(units) { - if (m_units == Unit::Auto) { - if (m_inNanoseconds < s_nanosecondsInAMicrosecond) - m_units = Unit::Nanoseconds; - else if (m_inNanoseconds < s_nanosecondsInAMillisecond) - m_units = Unit::Microseconds; - else if (m_inNanoseconds < s_nanosecondsInASecond) - m_units = Unit::Milliseconds; - else if (m_inNanoseconds < s_nanosecondsInAMinute) - m_units = Unit::Seconds; - else - m_units = Unit::Minutes; - } - - } - - auto value() const -> double { - switch (m_units) { - case Unit::Microseconds:return m_inNanoseconds / static_cast(s_nanosecondsInAMicrosecond); - case Unit::Milliseconds:return m_inNanoseconds / static_cast(s_nanosecondsInAMillisecond); - case Unit::Seconds:return m_inNanoseconds / static_cast(s_nanosecondsInASecond); - case Unit::Minutes:return m_inNanoseconds / static_cast(s_nanosecondsInAMinute); - default:return m_inNanoseconds; - } - } - auto unitsAsString() const -> std::string { - switch (m_units) { - case Unit::Nanoseconds:return "ns"; - case Unit::Microseconds:return "us"; - case Unit::Milliseconds:return "ms"; - case Unit::Seconds:return "s"; - case Unit::Minutes:return "m"; - default:return "** internal error **"; - } - - } - friend auto operator<<(std::ostream &os, Duration const &duration) -> std::ostream & { - return os << duration.value() << ' ' << duration.unitsAsString(); - } -}; -} // end anon namespace + void printOriginalExpression() const { + if (result.hasExpression()) { + Colour colourGuard(Colour::OriginalExpression); + stream << " "; + stream << result.getExpressionInMacro(); + stream << '\n'; + } + } -class TablePrinter { - std::ostream &m_os; - std::vector m_columnInfos; - std::ostringstream m_oss; - int m_currentColumn = -1; - bool m_isOpen = false; - - public: - TablePrinter(std::ostream &os, std::vector columnInfos) - : m_os(os), - m_columnInfos(std::move(columnInfos)) {} - - auto columnInfos() const -> std::vector const & { - return m_columnInfos; - } - - void open() { - if (!m_isOpen) { - m_isOpen = true; - *this << RowBreak(); - - Columns headerCols; - Spacer spacer(2); - for (auto const &info : m_columnInfos) { - headerCols += Column(info.name).width(static_cast(info.width - 2)); - headerCols += spacer; - } - m_os << headerCols << '\n'; - - m_os << Catch::getLineOfChars<'-'>() << '\n'; - } - } - void close() { - if (m_isOpen) { - *this << RowBreak(); - m_os << std::endl; - m_isOpen = false; - } - } - - template - friend TablePrinter &operator<<(TablePrinter &tp, T const &value) { - tp.m_oss << value; - return tp; - } - - friend TablePrinter &operator<<(TablePrinter &tp, ColumnBreak) { - auto colStr = tp.m_oss.str(); - const auto strSize = colStr.size(); - tp.m_oss.str(""); - tp.open(); - if (tp.m_currentColumn == static_cast(tp.m_columnInfos.size() - 1)) { - tp.m_currentColumn = -1; - tp.m_os << '\n'; - } - tp.m_currentColumn++; - - auto colInfo = tp.m_columnInfos[tp.m_currentColumn]; - auto padding = (strSize + 1 < static_cast(colInfo.width)) - ? std::string(colInfo.width - (strSize + 1), ' ') - : std::string(); - if (colInfo.justification == ColumnInfo::Left) - tp.m_os << colStr << padding << ' '; - else - tp.m_os << padding << colStr << ' '; - return tp; - } + void printReconstructedExpression() const { + if (result.hasExpandedExpression()) { + stream << "with expansion:\n"; + Colour colourGuard(Colour::ReconstructedExpression); + stream << Column(result.getExpandedExpression()).indent(2) << '\n'; + } + } + + void printMessage() const { + if (!messageLabel.empty()) + stream << messageLabel << ':' << '\n'; + for (auto const &msg: messages) { + // If this assertion is a warning ignore any INFO messages + if (printInfoMessages || msg.type != ResultWas::Info) + stream << Column(msg.message).indent(2) << '\n'; + } + } + + void printSourceInfo() const { + Colour colourGuard(Colour::FileName); + stream << result.getSourceInfo() << ": "; + } + + std::ostream &stream; + AssertionStats const &stats; + AssertionResult const &result; + Colour::Code colour; + std::string passOrFail; + std::string messageLabel; + std::string message; + std::vector messages; + bool printInfoMessages; + }; + + std::size_t makeRatio(std::size_t number, std::size_t total) { + std::size_t ratio = total > 0 ? CATCH_CONFIG_CONSOLE_WIDTH * number / total : 0; + return (ratio == 0 && number > 0) ? 1 : ratio; + } + + std::size_t &findMax(std::size_t &i, std::size_t &j, std::size_t &k) { + if (i > j && i > k) + return i; + else if (j > k) + return j; + else + return k; + } + + struct ColumnInfo { + enum Justification { + Left, Right + }; + std::string name; + int width; + Justification justification; + }; + struct ColumnBreak { + }; + struct RowBreak { + }; + + class Duration { + enum class Unit { + Auto, + Nanoseconds, + Microseconds, + Milliseconds, + Seconds, + Minutes + }; + static const uint64_t s_nanosecondsInAMicrosecond = 1000; + static const uint64_t s_nanosecondsInAMillisecond = 1000 * s_nanosecondsInAMicrosecond; + static const uint64_t s_nanosecondsInASecond = 1000 * s_nanosecondsInAMillisecond; + static const uint64_t s_nanosecondsInAMinute = 60 * s_nanosecondsInASecond; + + double m_inNanoseconds; + Unit m_units; + + public: + explicit Duration(double inNanoseconds, Unit units = Unit::Auto) + : m_inNanoseconds(inNanoseconds), + m_units(units) { + if (m_units == Unit::Auto) { + if (m_inNanoseconds < s_nanosecondsInAMicrosecond) + m_units = Unit::Nanoseconds; + else if (m_inNanoseconds < s_nanosecondsInAMillisecond) + m_units = Unit::Microseconds; + else if (m_inNanoseconds < s_nanosecondsInASecond) + m_units = Unit::Milliseconds; + else if (m_inNanoseconds < s_nanosecondsInAMinute) + m_units = Unit::Seconds; + else + m_units = Unit::Minutes; + } + + } + + auto value() const -> double { + switch (m_units) { + case Unit::Microseconds: + return m_inNanoseconds / static_cast(s_nanosecondsInAMicrosecond); + case Unit::Milliseconds: + return m_inNanoseconds / static_cast(s_nanosecondsInAMillisecond); + case Unit::Seconds: + return m_inNanoseconds / static_cast(s_nanosecondsInASecond); + case Unit::Minutes: + return m_inNanoseconds / static_cast(s_nanosecondsInAMinute); + default: + return m_inNanoseconds; + } + } + + auto unitsAsString() const -> std::string { + switch (m_units) { + case Unit::Nanoseconds: + return "ns"; + case Unit::Microseconds: + return "us"; + case Unit::Milliseconds: + return "ms"; + case Unit::Seconds: + return "s"; + case Unit::Minutes: + return "m"; + default: + return "** internal error **"; + } + + } + + friend auto operator<<(std::ostream &os, Duration const &duration) -> std::ostream & { + return os << duration.value() << ' ' << duration.unitsAsString(); + } + }; + } // end anon namespace + + class TablePrinter { + std::ostream &m_os; + std::vector m_columnInfos; + std::ostringstream m_oss; + int m_currentColumn = -1; + bool m_isOpen = false; + + public: + TablePrinter(std::ostream &os, std::vector columnInfos) + : m_os(os), + m_columnInfos(std::move(columnInfos)) {} + + auto columnInfos() const -> std::vector const & { + return m_columnInfos; + } + + void open() { + if (!m_isOpen) { + m_isOpen = true; + *this << RowBreak(); + + Columns headerCols; + Spacer spacer(2); + for (auto const &info: m_columnInfos) { + headerCols += Column(info.name).width(static_cast(info.width - 2)); + headerCols += spacer; + } + m_os << headerCols << '\n'; + + m_os << Catch::getLineOfChars<'-'>() << '\n'; + } + } + + void close() { + if (m_isOpen) { + *this << RowBreak(); + m_os << std::endl; + m_isOpen = false; + } + } + + template + friend TablePrinter &operator<<(TablePrinter &tp, T const &value) { + tp.m_oss << value; + return tp; + } + + friend TablePrinter &operator<<(TablePrinter &tp, ColumnBreak) { + auto colStr = tp.m_oss.str(); + const auto strSize = colStr.size(); + tp.m_oss.str(""); + tp.open(); + if (tp.m_currentColumn == static_cast(tp.m_columnInfos.size() - 1)) { + tp.m_currentColumn = -1; + tp.m_os << '\n'; + } + tp.m_currentColumn++; + + auto colInfo = tp.m_columnInfos[tp.m_currentColumn]; + auto padding = (strSize + 1 < static_cast(colInfo.width)) + ? std::string(colInfo.width - (strSize + 1), ' ') + : std::string(); + if (colInfo.justification == ColumnInfo::Left) + tp.m_os << colStr << padding << ' '; + else + tp.m_os << padding << colStr << ' '; + return tp; + } + + friend TablePrinter &operator<<(TablePrinter &tp, RowBreak) { + if (tp.m_currentColumn > 0) { + tp.m_os << '\n'; + tp.m_currentColumn = -1; + } + return tp; + } + }; - friend TablePrinter &operator<<(TablePrinter &tp, RowBreak) { - if (tp.m_currentColumn > 0) { - tp.m_os << '\n'; - tp.m_currentColumn = -1; + ConsoleReporter::ConsoleReporter(ReporterConfig const &config) + : StreamingReporterBase(config), + m_tablePrinter(new TablePrinter(config.stream(), + [&config]() -> std::vector { + if (config.fullConfig()->benchmarkNoAnalysis()) { + return { + {"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - + 43, ColumnInfo::Left}, + {" samples", 14, ColumnInfo::Right}, + {" iterations", 14, ColumnInfo::Right}, + {" mean", 14, ColumnInfo::Right} + }; + } else { + return { + {"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - + 43, ColumnInfo::Left}, + {"samples mean std dev", 14, ColumnInfo::Right}, + {"iterations low mean low std dev", 14, ColumnInfo::Right}, + {"estimated high mean high std dev", 14, ColumnInfo::Right} + }; + } + }())) {} + + ConsoleReporter::~ConsoleReporter() = default; + + std::string ConsoleReporter::getDescription() { + return "Reports test results as plain lines of text"; } - return tp; - } -}; -ConsoleReporter::ConsoleReporter(ReporterConfig const &config) - : StreamingReporterBase(config), - m_tablePrinter(new TablePrinter(config.stream(), - [&config]() -> std::vector { - if (config.fullConfig()->benchmarkNoAnalysis()) { - return { - {"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 43, ColumnInfo::Left}, - {" samples", 14, ColumnInfo::Right}, - {" iterations", 14, ColumnInfo::Right}, - {" mean", 14, ColumnInfo::Right} - }; - } else { - return { - {"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 43, ColumnInfo::Left}, - {"samples mean std dev", 14, ColumnInfo::Right}, - {"iterations low mean low std dev", 14, ColumnInfo::Right}, - {"estimated high mean high std dev", 14, ColumnInfo::Right} - }; - } - }())) {} -ConsoleReporter::~ConsoleReporter() = default; - -std::string ConsoleReporter::getDescription() { - return "Reports test results as plain lines of text"; -} + void ConsoleReporter::noMatchingTestCases(std::string const &spec) { + stream << "No test cases matched '" << spec << '\'' << std::endl; + } -void ConsoleReporter::noMatchingTestCases(std::string const &spec) { - stream << "No test cases matched '" << spec << '\'' << std::endl; -} + void ConsoleReporter::reportInvalidArguments(std::string const &arg) { + stream << "Invalid Filter: " << arg << std::endl; + } -void ConsoleReporter::reportInvalidArguments(std::string const &arg) { - stream << "Invalid Filter: " << arg << std::endl; -} + void ConsoleReporter::assertionStarting(AssertionInfo const &) {} -void ConsoleReporter::assertionStarting(AssertionInfo const &) {} + bool ConsoleReporter::assertionEnded(AssertionStats const &_assertionStats) { + AssertionResult const &result = _assertionStats.assertionResult; -bool ConsoleReporter::assertionEnded(AssertionStats const &_assertionStats) { - AssertionResult const &result = _assertionStats.assertionResult; + bool includeResults = m_config->includeSuccessfulResults() || !result.isOk(); - bool includeResults = m_config->includeSuccessfulResults() || !result.isOk(); + // Drop out if result was successful but we're not printing them. + if (!includeResults && result.getResultType() != ResultWas::Warning) + return false; - // Drop out if result was successful but we're not printing them. - if (!includeResults && result.getResultType() != ResultWas::Warning) - return false; + lazyPrint(); - lazyPrint(); + ConsoleAssertionPrinter printer(stream, _assertionStats, includeResults); + printer.print(); + stream << std::endl; + return true; + } - ConsoleAssertionPrinter printer(stream, _assertionStats, includeResults); - printer.print(); - stream << std::endl; - return true; -} + void ConsoleReporter::sectionStarting(SectionInfo const &_sectionInfo) { + m_tablePrinter->close(); + m_headerPrinted = false; + StreamingReporterBase::sectionStarting(_sectionInfo); + } -void ConsoleReporter::sectionStarting(SectionInfo const &_sectionInfo) { - m_tablePrinter->close(); - m_headerPrinted = false; - StreamingReporterBase::sectionStarting(_sectionInfo); -} -void ConsoleReporter::sectionEnded(SectionStats const &_sectionStats) { - m_tablePrinter->close(); - if (_sectionStats.missingAssertions) { - lazyPrint(); - Colour colour(Colour::ResultError); - if (m_sectionStack.size() > 1) - stream << "\nNo assertions in section"; - else - stream << "\nNo assertions in test case"; - stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; - } - double dur = _sectionStats.durationInSeconds; - if (shouldShowDuration(*m_config, dur)) { - stream << getFormattedDuration(dur) << " s: " << _sectionStats.sectionInfo.name << std::endl; - } - if (m_headerPrinted) { - m_headerPrinted = false; - } - StreamingReporterBase::sectionEnded(_sectionStats); -} + void ConsoleReporter::sectionEnded(SectionStats const &_sectionStats) { + m_tablePrinter->close(); + if (_sectionStats.missingAssertions) { + lazyPrint(); + Colour colour(Colour::ResultError); + if (m_sectionStack.size() > 1) + stream << "\nNo assertions in section"; + else + stream << "\nNo assertions in test case"; + stream << " '" << _sectionStats.sectionInfo.name << "'\n" << std::endl; + } + double dur = _sectionStats.durationInSeconds; + if (shouldShowDuration(*m_config, dur)) { + stream << getFormattedDuration(dur) << " s: " << _sectionStats.sectionInfo.name << std::endl; + } + if (m_headerPrinted) { + m_headerPrinted = false; + } + StreamingReporterBase::sectionEnded(_sectionStats); + } #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void ConsoleReporter::benchmarkPreparing(std::string const& name) { + void ConsoleReporter::benchmarkPreparing(std::string const& name) { lazyPrintWithoutClosingBenchmarkTable(); auto nameCol = Column(name).width(static_cast(m_tablePrinter->columnInfos()[0].width - 2)); @@ -16493,219 +17417,229 @@ void ConsoleReporter::benchmarkFailed(std::string const& error) { } #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -void ConsoleReporter::testCaseEnded(TestCaseStats const &_testCaseStats) { - m_tablePrinter->close(); - StreamingReporterBase::testCaseEnded(_testCaseStats); - m_headerPrinted = false; -} -void ConsoleReporter::testGroupEnded(TestGroupStats const &_testGroupStats) { - if (currentGroupInfo.used) { - printSummaryDivider(); - stream << "Summary for group '" << _testGroupStats.groupInfo.name << "':\n"; - printTotals(_testGroupStats.totals); - stream << '\n' << std::endl; - } - StreamingReporterBase::testGroupEnded(_testGroupStats); -} -void ConsoleReporter::testRunEnded(TestRunStats const &_testRunStats) { - printTotalsDivider(_testRunStats.totals); - printTotals(_testRunStats.totals); - stream << std::endl; - StreamingReporterBase::testRunEnded(_testRunStats); -} -void ConsoleReporter::testRunStarting(TestRunInfo const &_testInfo) { - StreamingReporterBase::testRunStarting(_testInfo); - printTestFilters(); -} + void ConsoleReporter::testCaseEnded(TestCaseStats const &_testCaseStats) { + m_tablePrinter->close(); + StreamingReporterBase::testCaseEnded(_testCaseStats); + m_headerPrinted = false; + } -void ConsoleReporter::lazyPrint() { + void ConsoleReporter::testGroupEnded(TestGroupStats const &_testGroupStats) { + if (currentGroupInfo.used) { + printSummaryDivider(); + stream << "Summary for group '" << _testGroupStats.groupInfo.name << "':\n"; + printTotals(_testGroupStats.totals); + stream << '\n' << std::endl; + } + StreamingReporterBase::testGroupEnded(_testGroupStats); + } - m_tablePrinter->close(); - lazyPrintWithoutClosingBenchmarkTable(); -} + void ConsoleReporter::testRunEnded(TestRunStats const &_testRunStats) { + printTotalsDivider(_testRunStats.totals); + printTotals(_testRunStats.totals); + stream << std::endl; + StreamingReporterBase::testRunEnded(_testRunStats); + } -void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() { + void ConsoleReporter::testRunStarting(TestRunInfo const &_testInfo) { + StreamingReporterBase::testRunStarting(_testInfo); + printTestFilters(); + } - if (!currentTestRunInfo.used) - lazyPrintRunInfo(); - if (!currentGroupInfo.used) - lazyPrintGroupInfo(); + void ConsoleReporter::lazyPrint() { - if (!m_headerPrinted) { - printTestCaseAndSectionHeader(); - m_headerPrinted = true; - } -} -void ConsoleReporter::lazyPrintRunInfo() { - stream << '\n' << getLineOfChars<'~'>() << '\n'; - Colour colour(Colour::SecondaryText); - stream << currentTestRunInfo->name - << " is a Catch v" << libraryVersion() << " host application.\n" - << "Run with -? for options\n\n"; + m_tablePrinter->close(); + lazyPrintWithoutClosingBenchmarkTable(); + } - if (m_config->rngSeed() != 0) - stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; + void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() { - currentTestRunInfo.used = true; -} -void ConsoleReporter::lazyPrintGroupInfo() { - if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) { - printClosedHeader("Group: " + currentGroupInfo->name); - currentGroupInfo.used = true; - } -} -void ConsoleReporter::printTestCaseAndSectionHeader() { - assert(!m_sectionStack.empty()); - printOpenHeader(currentTestCaseInfo->name); - - if (m_sectionStack.size() > 1) { - Colour colourGuard(Colour::Headers); - - auto - it = m_sectionStack.begin() + 1, // Skip first section (test case) - itEnd = m_sectionStack.end(); - for (; it != itEnd; ++it) - printHeaderString(it->name, 2); - } - - SourceLineInfo lineInfo = m_sectionStack.back().lineInfo; - - stream << getLineOfChars<'-'>() << '\n'; - Colour colourGuard(Colour::FileName); - stream << lineInfo << '\n'; - stream << getLineOfChars<'.'>() << '\n' << std::endl; -} + if (!currentTestRunInfo.used) + lazyPrintRunInfo(); + if (!currentGroupInfo.used) + lazyPrintGroupInfo(); -void ConsoleReporter::printClosedHeader(std::string const &_name) { - printOpenHeader(_name); - stream << getLineOfChars<'.'>() << '\n'; -} -void ConsoleReporter::printOpenHeader(std::string const &_name) { - stream << getLineOfChars<'-'>() << '\n'; - { - Colour colourGuard(Colour::Headers); - printHeaderString(_name); - } -} + if (!m_headerPrinted) { + printTestCaseAndSectionHeader(); + m_headerPrinted = true; + } + } + + void ConsoleReporter::lazyPrintRunInfo() { + stream << '\n' << getLineOfChars<'~'>() << '\n'; + Colour colour(Colour::SecondaryText); + stream << currentTestRunInfo->name + << " is a Catch v" << libraryVersion() << " host application.\n" + << "Run with -? for options\n\n"; + + if (m_config->rngSeed() != 0) + stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n"; + + currentTestRunInfo.used = true; + } + + void ConsoleReporter::lazyPrintGroupInfo() { + if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) { + printClosedHeader("Group: " + currentGroupInfo->name); + currentGroupInfo.used = true; + } + } + + void ConsoleReporter::printTestCaseAndSectionHeader() { + assert(!m_sectionStack.empty()); + printOpenHeader(currentTestCaseInfo->name); + + if (m_sectionStack.size() > 1) { + Colour colourGuard(Colour::Headers); + + auto + it = m_sectionStack.begin() + 1, // Skip first section (test case) + itEnd = m_sectionStack.end(); + for (; it != itEnd; ++it) + printHeaderString(it->name, 2); + } + + SourceLineInfo lineInfo = m_sectionStack.back().lineInfo; + + stream << getLineOfChars<'-'>() << '\n'; + Colour colourGuard(Colour::FileName); + stream << lineInfo << '\n'; + stream << getLineOfChars<'.'>() << '\n' << std::endl; + } + + void ConsoleReporter::printClosedHeader(std::string const &_name) { + printOpenHeader(_name); + stream << getLineOfChars<'.'>() << '\n'; + } + + void ConsoleReporter::printOpenHeader(std::string const &_name) { + stream << getLineOfChars<'-'>() << '\n'; + { + Colour colourGuard(Colour::Headers); + printHeaderString(_name); + } + } // if string has a : in first line will set indent to follow it on // subsequent lines -void ConsoleReporter::printHeaderString(std::string const &_string, std::size_t indent) { - std::size_t i = _string.find(": "); - if (i != std::string::npos) - i += 2; - else - i = 0; - stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; -} + void ConsoleReporter::printHeaderString(std::string const &_string, std::size_t indent) { + std::size_t i = _string.find(": "); + if (i != std::string::npos) + i += 2; + else + i = 0; + stream << Column(_string).indent(indent + i).initialIndent(indent) << '\n'; + } -struct SummaryColumn { - - SummaryColumn(std::string _label, Colour::Code _colour) - : label(std::move(_label)), - colour(_colour) {} - SummaryColumn addRow(std::size_t count) { - ReusableStringStream rss; - rss << count; - std::string row = rss.str(); - for (auto &oldRow : rows) { - while (oldRow.size() < row.size()) - oldRow = ' ' + oldRow; - while (oldRow.size() > row.size()) - row = ' ' + row; - } - rows.push_back(row); - return *this; - } - - std::string label; - Colour::Code colour; - std::vector rows; + struct SummaryColumn { -}; + SummaryColumn(std::string _label, Colour::Code _colour) + : label(std::move(_label)), + colour(_colour) {} -void ConsoleReporter::printTotals(Totals const &totals) { - if (totals.testCases.total() == 0) { - stream << Colour(Colour::Warning) << "No tests ran\n"; - } else if (totals.assertions.total() > 0 && totals.testCases.allPassed()) { - stream << Colour(Colour::ResultSuccess) << "All tests passed"; - stream << " (" - << pluralise(totals.assertions.passed, "assertion") << " in " - << pluralise(totals.testCases.passed, "test case") << ')' - << '\n'; - } else { - - std::vector columns; - columns.push_back(SummaryColumn("", Colour::None) - .addRow(totals.testCases.total()) - .addRow(totals.assertions.total())); - columns.push_back(SummaryColumn("passed", Colour::Success) - .addRow(totals.testCases.passed) - .addRow(totals.assertions.passed)); - columns.push_back(SummaryColumn("failed", Colour::ResultError) - .addRow(totals.testCases.failed) - .addRow(totals.assertions.failed)); - columns.push_back(SummaryColumn("failed as expected", Colour::ResultExpectedFailure) - .addRow(totals.testCases.failedButOk) - .addRow(totals.assertions.failedButOk)); - - printSummaryRow("test cases", columns, 0); - printSummaryRow("assertions", columns, 1); - } -} -void ConsoleReporter::printSummaryRow(std::string const &label, - std::vector const &cols, - std::size_t row) { - for (auto col : cols) { - std::string value = col.rows[row]; - if (col.label.empty()) { - stream << label << ": "; - if (value != "0") - stream << value; - else - stream << Colour(Colour::Warning) << "- none -"; - } else if (value != "0") { - stream << Colour(Colour::LightGrey) << " | "; - stream << Colour(col.colour) - << value << ' ' << col.label; - } - } - stream << '\n'; -} + SummaryColumn addRow(std::size_t count) { + ReusableStringStream rss; + rss << count; + std::string row = rss.str(); + for (auto &oldRow: rows) { + while (oldRow.size() < row.size()) + oldRow = ' ' + oldRow; + while (oldRow.size() > row.size()) + row = ' ' + row; + } + rows.push_back(row); + return *this; + } -void ConsoleReporter::printTotalsDivider(Totals const &totals) { - if (totals.testCases.total() > 0) { - std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); - std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total()); - std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total()); - while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) - findMax(failedRatio, failedButOkRatio, passedRatio)++; - while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) - findMax(failedRatio, failedButOkRatio, passedRatio)--; - - stream << Colour(Colour::Error) << std::string(failedRatio, '='); - stream << Colour(Colour::ResultExpectedFailure) << std::string(failedButOkRatio, '='); - if (totals.testCases.allPassed()) - stream << Colour(Colour::ResultSuccess) << std::string(passedRatio, '='); - else - stream << Colour(Colour::Success) << std::string(passedRatio, '='); - } else { - stream << Colour(Colour::Warning) << std::string(CATCH_CONFIG_CONSOLE_WIDTH - 1, '='); - } - stream << '\n'; -} -void ConsoleReporter::printSummaryDivider() { - stream << getLineOfChars<'-'>() << '\n'; -} + std::string label; + Colour::Code colour; + std::vector rows; -void ConsoleReporter::printTestFilters() { - if (m_config->testSpec().hasFilters()) { - Colour guard(Colour::BrightYellow); - stream << "Filters: " << serializeFilters(m_config->getTestsOrTags()) << '\n'; - } -} + }; + + void ConsoleReporter::printTotals(Totals const &totals) { + if (totals.testCases.total() == 0) { + stream << Colour(Colour::Warning) << "No tests ran\n"; + } else if (totals.assertions.total() > 0 && totals.testCases.allPassed()) { + stream << Colour(Colour::ResultSuccess) << "All tests passed"; + stream << " (" + << pluralise(totals.assertions.passed, "assertion") << " in " + << pluralise(totals.testCases.passed, "test case") << ')' + << '\n'; + } else { + + std::vector columns; + columns.push_back(SummaryColumn("", Colour::None) + .addRow(totals.testCases.total()) + .addRow(totals.assertions.total())); + columns.push_back(SummaryColumn("passed", Colour::Success) + .addRow(totals.testCases.passed) + .addRow(totals.assertions.passed)); + columns.push_back(SummaryColumn("failed", Colour::ResultError) + .addRow(totals.testCases.failed) + .addRow(totals.assertions.failed)); + columns.push_back(SummaryColumn("failed as expected", Colour::ResultExpectedFailure) + .addRow(totals.testCases.failedButOk) + .addRow(totals.assertions.failedButOk)); + + printSummaryRow("test cases", columns, 0); + printSummaryRow("assertions", columns, 1); + } + } + + void ConsoleReporter::printSummaryRow(std::string const &label, + std::vector const &cols, + std::size_t row) { + for (auto col: cols) { + std::string value = col.rows[row]; + if (col.label.empty()) { + stream << label << ": "; + if (value != "0") + stream << value; + else + stream << Colour(Colour::Warning) << "- none -"; + } else if (value != "0") { + stream << Colour(Colour::LightGrey) << " | "; + stream << Colour(col.colour) + << value << ' ' << col.label; + } + } + stream << '\n'; + } + + void ConsoleReporter::printTotalsDivider(Totals const &totals) { + if (totals.testCases.total() > 0) { + std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total()); + std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total()); + std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total()); + while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1) + findMax(failedRatio, failedButOkRatio, passedRatio)++; + while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1) + findMax(failedRatio, failedButOkRatio, passedRatio)--; + + stream << Colour(Colour::Error) << std::string(failedRatio, '='); + stream << Colour(Colour::ResultExpectedFailure) << std::string(failedButOkRatio, '='); + if (totals.testCases.allPassed()) + stream << Colour(Colour::ResultSuccess) << std::string(passedRatio, '='); + else + stream << Colour(Colour::Success) << std::string(passedRatio, '='); + } else { + stream << Colour(Colour::Warning) << std::string(CATCH_CONFIG_CONSOLE_WIDTH - 1, '='); + } + stream << '\n'; + } + + void ConsoleReporter::printSummaryDivider() { + stream << getLineOfChars<'-'>() << '\n'; + } -CATCH_REGISTER_REPORTER("console", ConsoleReporter) + void ConsoleReporter::printTestFilters() { + if (m_config->testSpec().hasFilters()) { + Colour guard(Colour::BrightYellow); + stream << "Filters: " << serializeFilters(m_config->getTestsOrTags()) << '\n'; + } + } + + CATCH_REGISTER_REPORTER("console", ConsoleReporter) } // end namespace Catch @@ -16727,274 +17661,277 @@ CATCH_REGISTER_REPORTER("console", ConsoleReporter) namespace Catch { -namespace { -std::string getCurrentTimestamp() { - // Beware, this is not reentrant because of backward compatibility issues - // Also, UTC only, again because of backward compatibility (%z is C++11) - time_t rawtime; - std::time(&rawtime); - auto const timeStampSize = sizeof("2017-01-16T17:06:45Z"); + namespace { + std::string getCurrentTimestamp() { + // Beware, this is not reentrant because of backward compatibility issues + // Also, UTC only, again because of backward compatibility (%z is C++11) + time_t rawtime; + std::time(&rawtime); + auto const timeStampSize = sizeof("2017-01-16T17:06:45Z"); #ifdef _MSC_VER - std::tm timeInfo = {}; + std::tm timeInfo = {}; gmtime_s(&timeInfo, &rawtime); #else - std::tm *timeInfo; - timeInfo = std::gmtime(&rawtime); + std::tm *timeInfo; + timeInfo = std::gmtime(&rawtime); #endif - char timeStamp[timeStampSize]; - const char *const fmt = "%Y-%m-%dT%H:%M:%SZ"; + char timeStamp[timeStampSize]; + const char *const fmt = "%Y-%m-%dT%H:%M:%SZ"; #ifdef _MSC_VER - std::strftime(timeStamp, timeStampSize, fmt, &timeInfo); + std::strftime(timeStamp, timeStampSize, fmt, &timeInfo); #else - std::strftime(timeStamp, timeStampSize, fmt, timeInfo); + std::strftime(timeStamp, timeStampSize, fmt, timeInfo); #endif - return std::string(timeStamp, timeStampSize - 1); -} + return std::string(timeStamp, timeStampSize - 1); + } -std::string fileNameTag(const std::vector &tags) { - auto it = std::find_if(begin(tags), - end(tags), - [](std::string const &tag) { return tag.front() == '#'; }); - if (it != tags.end()) - return it->substr(1); - return std::string(); -} + std::string fileNameTag(const std::vector &tags) { + auto it = std::find_if(begin(tags), + end(tags), + [](std::string const &tag) { return tag.front() == '#'; }); + if (it != tags.end()) + return it->substr(1); + return std::string(); + } // Formats the duration in seconds to 3 decimal places. // This is done because some genius defined Maven Surefire schema // in a way that only accepts 3 decimal places, and tools like // Jenkins use that schema for validation JUnit reporter output. -std::string formatDuration(double seconds) { - ReusableStringStream rss; - rss << std::fixed << std::setprecision(3) << seconds; - return rss.str(); -} + std::string formatDuration(double seconds) { + ReusableStringStream rss; + rss << std::fixed << std::setprecision(3) << seconds; + return rss.str(); + } -} // anonymous namespace + } // anonymous namespace -JunitReporter::JunitReporter(ReporterConfig const &_config) - : CumulativeReporterBase(_config), - xml(_config.stream()) { - m_reporterPrefs.shouldRedirectStdOut = true; - m_reporterPrefs.shouldReportAllAssertions = true; -} + JunitReporter::JunitReporter(ReporterConfig const &_config) + : CumulativeReporterBase(_config), + xml(_config.stream()) { + m_reporterPrefs.shouldRedirectStdOut = true; + m_reporterPrefs.shouldReportAllAssertions = true; + } -JunitReporter::~JunitReporter() {} + JunitReporter::~JunitReporter() {} -std::string JunitReporter::getDescription() { - return "Reports test results in an XML format that looks like Ant's junitreport target"; -} + std::string JunitReporter::getDescription() { + return "Reports test results in an XML format that looks like Ant's junitreport target"; + } -void JunitReporter::noMatchingTestCases(std::string const & /*spec*/ ) {} + void JunitReporter::noMatchingTestCases(std::string const & /*spec*/ ) {} -void JunitReporter::testRunStarting(TestRunInfo const &runInfo) { - CumulativeReporterBase::testRunStarting(runInfo); - xml.startElement("testsuites"); -} + void JunitReporter::testRunStarting(TestRunInfo const &runInfo) { + CumulativeReporterBase::testRunStarting(runInfo); + xml.startElement("testsuites"); + } -void JunitReporter::testGroupStarting(GroupInfo const &groupInfo) { - suiteTimer.start(); - stdOutForSuite.clear(); - stdErrForSuite.clear(); - unexpectedExceptions = 0; - CumulativeReporterBase::testGroupStarting(groupInfo); -} + void JunitReporter::testGroupStarting(GroupInfo const &groupInfo) { + suiteTimer.start(); + stdOutForSuite.clear(); + stdErrForSuite.clear(); + unexpectedExceptions = 0; + CumulativeReporterBase::testGroupStarting(groupInfo); + } -void JunitReporter::testCaseStarting(TestCaseInfo const &testCaseInfo) { - m_okToFail = testCaseInfo.okToFail(); -} + void JunitReporter::testCaseStarting(TestCaseInfo const &testCaseInfo) { + m_okToFail = testCaseInfo.okToFail(); + } -bool JunitReporter::assertionEnded(AssertionStats const &assertionStats) { - if (assertionStats.assertionResult.getResultType() == ResultWas::ThrewException && !m_okToFail) - unexpectedExceptions++; - return CumulativeReporterBase::assertionEnded(assertionStats); -} + bool JunitReporter::assertionEnded(AssertionStats const &assertionStats) { + if (assertionStats.assertionResult.getResultType() == ResultWas::ThrewException && !m_okToFail) + unexpectedExceptions++; + return CumulativeReporterBase::assertionEnded(assertionStats); + } -void JunitReporter::testCaseEnded(TestCaseStats const &testCaseStats) { - stdOutForSuite += testCaseStats.stdOut; - stdErrForSuite += testCaseStats.stdErr; - CumulativeReporterBase::testCaseEnded(testCaseStats); -} + void JunitReporter::testCaseEnded(TestCaseStats const &testCaseStats) { + stdOutForSuite += testCaseStats.stdOut; + stdErrForSuite += testCaseStats.stdErr; + CumulativeReporterBase::testCaseEnded(testCaseStats); + } -void JunitReporter::testGroupEnded(TestGroupStats const &testGroupStats) { - double suiteTime = suiteTimer.getElapsedSeconds(); - CumulativeReporterBase::testGroupEnded(testGroupStats); - writeGroup(*m_testGroups.back(), suiteTime); -} + void JunitReporter::testGroupEnded(TestGroupStats const &testGroupStats) { + double suiteTime = suiteTimer.getElapsedSeconds(); + CumulativeReporterBase::testGroupEnded(testGroupStats); + writeGroup(*m_testGroups.back(), suiteTime); + } -void JunitReporter::testRunEndedCumulative() { - xml.endElement(); -} + void JunitReporter::testRunEndedCumulative() { + xml.endElement(); + } -void JunitReporter::writeGroup(TestGroupNode const &groupNode, double suiteTime) { - XmlWriter::ScopedElement e = xml.scopedElement("testsuite"); - - TestGroupStats const &stats = groupNode.value; - xml.writeAttribute("name", stats.groupInfo.name); - xml.writeAttribute("errors", unexpectedExceptions); - xml.writeAttribute("failures", stats.totals.assertions.failed - unexpectedExceptions); - xml.writeAttribute("tests", stats.totals.assertions.total()); - xml.writeAttribute("hostname", "tbd"); // !TBD - if (m_config->showDurations() == ShowDurations::Never) - xml.writeAttribute("time", ""); - else - xml.writeAttribute("time", formatDuration(suiteTime)); - xml.writeAttribute("timestamp", getCurrentTimestamp()); - - // Write properties if there are any - if (m_config->hasTestFilters() || m_config->rngSeed() != 0) { - auto properties = xml.scopedElement("properties"); - if (m_config->hasTestFilters()) { - xml.scopedElement("property") - .writeAttribute("name", "filters") - .writeAttribute("value", serializeFilters(m_config->getTestsOrTags())); - } - if (m_config->rngSeed() != 0) { - xml.scopedElement("property") - .writeAttribute("name", "random-seed") - .writeAttribute("value", m_config->rngSeed()); - } - } - - // Write test cases - for (auto const &child : groupNode.children) - writeTestCase(*child); - - xml.scopedElement("system-out").writeText(trim(stdOutForSuite), XmlFormatting::Newline); - xml.scopedElement("system-err").writeText(trim(stdErrForSuite), XmlFormatting::Newline); -} + void JunitReporter::writeGroup(TestGroupNode const &groupNode, double suiteTime) { + XmlWriter::ScopedElement e = xml.scopedElement("testsuite"); + + TestGroupStats const &stats = groupNode.value; + xml.writeAttribute("name", stats.groupInfo.name); + xml.writeAttribute("errors", unexpectedExceptions); + xml.writeAttribute("failures", stats.totals.assertions.failed - unexpectedExceptions); + xml.writeAttribute("tests", stats.totals.assertions.total()); + xml.writeAttribute("hostname", "tbd"); // !TBD + if (m_config->showDurations() == ShowDurations::Never) + xml.writeAttribute("time", ""); + else + xml.writeAttribute("time", formatDuration(suiteTime)); + xml.writeAttribute("timestamp", getCurrentTimestamp()); + + // Write properties if there are any + if (m_config->hasTestFilters() || m_config->rngSeed() != 0) { + auto properties = xml.scopedElement("properties"); + if (m_config->hasTestFilters()) { + xml.scopedElement("property") + .writeAttribute("name", "filters") + .writeAttribute("value", serializeFilters(m_config->getTestsOrTags())); + } + if (m_config->rngSeed() != 0) { + xml.scopedElement("property") + .writeAttribute("name", "random-seed") + .writeAttribute("value", m_config->rngSeed()); + } + } -void JunitReporter::writeTestCase(TestCaseNode const &testCaseNode) { - TestCaseStats const &stats = testCaseNode.value; + // Write test cases + for (auto const &child: groupNode.children) + writeTestCase(*child); - // All test cases have exactly one section - which represents the - // test case itself. That section may have 0-n nested sections - assert(testCaseNode.children.size() == 1); - SectionNode const &rootSection = *testCaseNode.children.front(); + xml.scopedElement("system-out").writeText(trim(stdOutForSuite), XmlFormatting::Newline); + xml.scopedElement("system-err").writeText(trim(stdErrForSuite), XmlFormatting::Newline); + } - std::string className = stats.testInfo.className; + void JunitReporter::writeTestCase(TestCaseNode const &testCaseNode) { + TestCaseStats const &stats = testCaseNode.value; - if (className.empty()) { - className = fileNameTag(stats.testInfo.tags); - if (className.empty()) - className = "global"; - } + // All test cases have exactly one section - which represents the + // test case itself. That section may have 0-n nested sections + assert(testCaseNode.children.size() == 1); + SectionNode const &rootSection = *testCaseNode.children.front(); - if (!m_config->name().empty()) - className = m_config->name() + "." + className; + std::string className = stats.testInfo.className; - writeSection(className, "", rootSection, stats.testInfo.okToFail()); -} + if (className.empty()) { + className = fileNameTag(stats.testInfo.tags); + if (className.empty()) + className = "global"; + } -void JunitReporter::writeSection(std::string const &className, - std::string const &rootName, - SectionNode const §ionNode, - bool testOkToFail) { - std::string name = trim(sectionNode.stats.sectionInfo.name); - if (!rootName.empty()) - name = rootName + '/' + name; - - if (!sectionNode.assertions.empty() || - !sectionNode.stdOut.empty() || - !sectionNode.stdErr.empty()) { - XmlWriter::ScopedElement e = xml.scopedElement("testcase"); - if (className.empty()) { - xml.writeAttribute("classname", name); - xml.writeAttribute("name", "root"); - } else { - xml.writeAttribute("classname", className); - xml.writeAttribute("name", name); - } - xml.writeAttribute("time", formatDuration(sectionNode.stats.durationInSeconds)); - // This is not ideal, but it should be enough to mimic gtest's - // junit output. - // Ideally the JUnit reporter would also handle `skipTest` - // events and write those out appropriately. - xml.writeAttribute("status", "run"); - - if (sectionNode.stats.assertions.failedButOk) { - xml.scopedElement("skipped") - .writeAttribute("message", "TEST_CASE tagged with !mayfail"); - } - - writeAssertions(sectionNode); - - if (!sectionNode.stdOut.empty()) - xml.scopedElement("system-out").writeText(trim(sectionNode.stdOut), XmlFormatting::Newline); - if (!sectionNode.stdErr.empty()) - xml.scopedElement("system-err").writeText(trim(sectionNode.stdErr), XmlFormatting::Newline); - } - for (auto const &childNode : sectionNode.childSections) - if (className.empty()) - writeSection(name, "", *childNode, testOkToFail); - else - writeSection(className, name, *childNode, testOkToFail); -} + if (!m_config->name().empty()) + className = m_config->name() + "." + className; -void JunitReporter::writeAssertions(SectionNode const §ionNode) { - for (auto const &assertion : sectionNode.assertions) - writeAssertion(assertion); -} + writeSection(className, "", rootSection, stats.testInfo.okToFail()); + } -void JunitReporter::writeAssertion(AssertionStats const &stats) { - AssertionResult const &result = stats.assertionResult; - if (!result.isOk()) { - std::string elementName; - switch (result.getResultType()) { - case ResultWas::ThrewException: - case ResultWas::FatalErrorCondition:elementName = "error"; - break; - case ResultWas::ExplicitFailure: - case ResultWas::ExpressionFailed: - case ResultWas::DidntThrowException:elementName = "failure"; - break; - - // We should never see these here: - case ResultWas::Info: - case ResultWas::Warning: - case ResultWas::Ok: - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:elementName = "internalError"; - break; - } - - XmlWriter::ScopedElement e = xml.scopedElement(elementName); - - xml.writeAttribute("message", result.getExpression()); - xml.writeAttribute("type", result.getTestMacroName()); - - ReusableStringStream rss; - if (stats.totals.assertions.total() > 0) { - rss << "FAILED" << ":\n"; - if (result.hasExpression()) { - rss << " "; - rss << result.getExpressionInMacro(); - rss << '\n'; - } - if (result.hasExpandedExpression()) { - rss << "with expansion:\n"; - rss << Column(result.getExpandedExpression()).indent(2) << '\n'; - } - } else { - rss << '\n'; + void JunitReporter::writeSection(std::string const &className, + std::string const &rootName, + SectionNode const §ionNode, + bool testOkToFail) { + std::string name = trim(sectionNode.stats.sectionInfo.name); + if (!rootName.empty()) + name = rootName + '/' + name; + + if (!sectionNode.assertions.empty() || + !sectionNode.stdOut.empty() || + !sectionNode.stdErr.empty()) { + XmlWriter::ScopedElement e = xml.scopedElement("testcase"); + if (className.empty()) { + xml.writeAttribute("classname", name); + xml.writeAttribute("name", "root"); + } else { + xml.writeAttribute("classname", className); + xml.writeAttribute("name", name); + } + xml.writeAttribute("time", formatDuration(sectionNode.stats.durationInSeconds)); + // This is not ideal, but it should be enough to mimic gtest's + // junit output. + // Ideally the JUnit reporter would also handle `skipTest` + // events and write those out appropriately. + xml.writeAttribute("status", "run"); + + if (sectionNode.stats.assertions.failedButOk) { + xml.scopedElement("skipped") + .writeAttribute("message", "TEST_CASE tagged with !mayfail"); + } + + writeAssertions(sectionNode); + + if (!sectionNode.stdOut.empty()) + xml.scopedElement("system-out").writeText(trim(sectionNode.stdOut), XmlFormatting::Newline); + if (!sectionNode.stdErr.empty()) + xml.scopedElement("system-err").writeText(trim(sectionNode.stdErr), XmlFormatting::Newline); + } + for (auto const &childNode: sectionNode.childSections) + if (className.empty()) + writeSection(name, "", *childNode, testOkToFail); + else + writeSection(className, name, *childNode, testOkToFail); } - if (!result.getMessage().empty()) - rss << result.getMessage() << '\n'; - for (auto const &msg : stats.infoMessages) - if (msg.type == ResultWas::Info) - rss << msg.message << '\n'; + void JunitReporter::writeAssertions(SectionNode const §ionNode) { + for (auto const &assertion: sectionNode.assertions) + writeAssertion(assertion); + } - rss << "at " << result.getSourceInfo(); - xml.writeText(rss.str(), XmlFormatting::Newline); - } -} + void JunitReporter::writeAssertion(AssertionStats const &stats) { + AssertionResult const &result = stats.assertionResult; + if (!result.isOk()) { + std::string elementName; + switch (result.getResultType()) { + case ResultWas::ThrewException: + case ResultWas::FatalErrorCondition: + elementName = "error"; + break; + case ResultWas::ExplicitFailure: + case ResultWas::ExpressionFailed: + case ResultWas::DidntThrowException: + elementName = "failure"; + break; + + // We should never see these here: + case ResultWas::Info: + case ResultWas::Warning: + case ResultWas::Ok: + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + elementName = "internalError"; + break; + } + + XmlWriter::ScopedElement e = xml.scopedElement(elementName); + + xml.writeAttribute("message", result.getExpression()); + xml.writeAttribute("type", result.getTestMacroName()); + + ReusableStringStream rss; + if (stats.totals.assertions.total() > 0) { + rss << "FAILED" << ":\n"; + if (result.hasExpression()) { + rss << " "; + rss << result.getExpressionInMacro(); + rss << '\n'; + } + if (result.hasExpandedExpression()) { + rss << "with expansion:\n"; + rss << Column(result.getExpandedExpression()).indent(2) << '\n'; + } + } else { + rss << '\n'; + } + + if (!result.getMessage().empty()) + rss << result.getMessage() << '\n'; + for (auto const &msg: stats.infoMessages) + if (msg.type == ResultWas::Info) + rss << msg.message << '\n'; + + rss << "at " << result.getSourceInfo(); + xml.writeText(rss.str(), XmlFormatting::Newline); + } + } -CATCH_REGISTER_REPORTER("junit", JunitReporter) + CATCH_REGISTER_REPORTER("junit", JunitReporter) } // end namespace Catch // end catch_reporter_junit.cpp @@ -17004,45 +17941,45 @@ CATCH_REGISTER_REPORTER("junit", JunitReporter) namespace Catch { -ListeningReporter::ListeningReporter() { - // We will assume that listeners will always want all assertions - m_preferences.shouldReportAllAssertions = true; -} + ListeningReporter::ListeningReporter() { + // We will assume that listeners will always want all assertions + m_preferences.shouldReportAllAssertions = true; + } -void ListeningReporter::addListener(IStreamingReporterPtr &&listener) { - m_listeners.push_back(std::move(listener)); -} + void ListeningReporter::addListener(IStreamingReporterPtr &&listener) { + m_listeners.push_back(std::move(listener)); + } -void ListeningReporter::addReporter(IStreamingReporterPtr &&reporter) { - assert(!m_reporter && "Listening reporter can wrap only 1 real reporter"); - m_reporter = std::move(reporter); - m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut; -} + void ListeningReporter::addReporter(IStreamingReporterPtr &&reporter) { + assert(!m_reporter && "Listening reporter can wrap only 1 real reporter"); + m_reporter = std::move(reporter); + m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut; + } -ReporterPreferences ListeningReporter::getPreferences() const { - return m_preferences; -} + ReporterPreferences ListeningReporter::getPreferences() const { + return m_preferences; + } -std::set ListeningReporter::getSupportedVerbosities() { - return std::set{}; -} + std::set ListeningReporter::getSupportedVerbosities() { + return std::set{}; + } -void ListeningReporter::noMatchingTestCases(std::string const &spec) { - for (auto const &listener : m_listeners) { - listener->noMatchingTestCases(spec); - } - m_reporter->noMatchingTestCases(spec); -} + void ListeningReporter::noMatchingTestCases(std::string const &spec) { + for (auto const &listener: m_listeners) { + listener->noMatchingTestCases(spec); + } + m_reporter->noMatchingTestCases(spec); + } -void ListeningReporter::reportInvalidArguments(std::string const &arg) { - for (auto const &listener : m_listeners) { - listener->reportInvalidArguments(arg); - } - m_reporter->reportInvalidArguments(arg); -} + void ListeningReporter::reportInvalidArguments(std::string const &arg) { + for (auto const &listener: m_listeners) { + listener->reportInvalidArguments(arg); + } + m_reporter->reportInvalidArguments(arg); + } #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void ListeningReporter::benchmarkPreparing( std::string const& name ) { + void ListeningReporter::benchmarkPreparing( std::string const& name ) { for (auto const& listener : m_listeners) { listener->benchmarkPreparing(name); } @@ -17069,87 +18006,87 @@ void ListeningReporter::reportInvalidArguments(std::string const &arg) { } #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -void ListeningReporter::testRunStarting(TestRunInfo const &testRunInfo) { - for (auto const &listener : m_listeners) { - listener->testRunStarting(testRunInfo); - } - m_reporter->testRunStarting(testRunInfo); -} + void ListeningReporter::testRunStarting(TestRunInfo const &testRunInfo) { + for (auto const &listener: m_listeners) { + listener->testRunStarting(testRunInfo); + } + m_reporter->testRunStarting(testRunInfo); + } -void ListeningReporter::testGroupStarting(GroupInfo const &groupInfo) { - for (auto const &listener : m_listeners) { - listener->testGroupStarting(groupInfo); - } - m_reporter->testGroupStarting(groupInfo); -} + void ListeningReporter::testGroupStarting(GroupInfo const &groupInfo) { + for (auto const &listener: m_listeners) { + listener->testGroupStarting(groupInfo); + } + m_reporter->testGroupStarting(groupInfo); + } -void ListeningReporter::testCaseStarting(TestCaseInfo const &testInfo) { - for (auto const &listener : m_listeners) { - listener->testCaseStarting(testInfo); - } - m_reporter->testCaseStarting(testInfo); -} + void ListeningReporter::testCaseStarting(TestCaseInfo const &testInfo) { + for (auto const &listener: m_listeners) { + listener->testCaseStarting(testInfo); + } + m_reporter->testCaseStarting(testInfo); + } -void ListeningReporter::sectionStarting(SectionInfo const §ionInfo) { - for (auto const &listener : m_listeners) { - listener->sectionStarting(sectionInfo); - } - m_reporter->sectionStarting(sectionInfo); -} + void ListeningReporter::sectionStarting(SectionInfo const §ionInfo) { + for (auto const &listener: m_listeners) { + listener->sectionStarting(sectionInfo); + } + m_reporter->sectionStarting(sectionInfo); + } -void ListeningReporter::assertionStarting(AssertionInfo const &assertionInfo) { - for (auto const &listener : m_listeners) { - listener->assertionStarting(assertionInfo); - } - m_reporter->assertionStarting(assertionInfo); -} + void ListeningReporter::assertionStarting(AssertionInfo const &assertionInfo) { + for (auto const &listener: m_listeners) { + listener->assertionStarting(assertionInfo); + } + m_reporter->assertionStarting(assertionInfo); + } // The return value indicates if the messages buffer should be cleared: -bool ListeningReporter::assertionEnded(AssertionStats const &assertionStats) { - for (auto const &listener : m_listeners) { - static_cast( listener->assertionEnded(assertionStats)); - } - return m_reporter->assertionEnded(assertionStats); -} + bool ListeningReporter::assertionEnded(AssertionStats const &assertionStats) { + for (auto const &listener: m_listeners) { + static_cast( listener->assertionEnded(assertionStats)); + } + return m_reporter->assertionEnded(assertionStats); + } -void ListeningReporter::sectionEnded(SectionStats const §ionStats) { - for (auto const &listener : m_listeners) { - listener->sectionEnded(sectionStats); - } - m_reporter->sectionEnded(sectionStats); -} + void ListeningReporter::sectionEnded(SectionStats const §ionStats) { + for (auto const &listener: m_listeners) { + listener->sectionEnded(sectionStats); + } + m_reporter->sectionEnded(sectionStats); + } -void ListeningReporter::testCaseEnded(TestCaseStats const &testCaseStats) { - for (auto const &listener : m_listeners) { - listener->testCaseEnded(testCaseStats); - } - m_reporter->testCaseEnded(testCaseStats); -} + void ListeningReporter::testCaseEnded(TestCaseStats const &testCaseStats) { + for (auto const &listener: m_listeners) { + listener->testCaseEnded(testCaseStats); + } + m_reporter->testCaseEnded(testCaseStats); + } -void ListeningReporter::testGroupEnded(TestGroupStats const &testGroupStats) { - for (auto const &listener : m_listeners) { - listener->testGroupEnded(testGroupStats); - } - m_reporter->testGroupEnded(testGroupStats); -} + void ListeningReporter::testGroupEnded(TestGroupStats const &testGroupStats) { + for (auto const &listener: m_listeners) { + listener->testGroupEnded(testGroupStats); + } + m_reporter->testGroupEnded(testGroupStats); + } -void ListeningReporter::testRunEnded(TestRunStats const &testRunStats) { - for (auto const &listener : m_listeners) { - listener->testRunEnded(testRunStats); - } - m_reporter->testRunEnded(testRunStats); -} + void ListeningReporter::testRunEnded(TestRunStats const &testRunStats) { + for (auto const &listener: m_listeners) { + listener->testRunEnded(testRunStats); + } + m_reporter->testRunEnded(testRunStats); + } -void ListeningReporter::skipTest(TestCaseInfo const &testInfo) { - for (auto const &listener : m_listeners) { - listener->skipTest(testInfo); - } - m_reporter->skipTest(testInfo); -} + void ListeningReporter::skipTest(TestCaseInfo const &testInfo) { + for (auto const &listener: m_listeners) { + listener->skipTest(testInfo); + } + m_reporter->skipTest(testInfo); + } -bool ListeningReporter::isMulti() const { - return true; -} + bool ListeningReporter::isMulti() const { + return true; + } } // end namespace Catch // end catch_reporter_listening.cpp @@ -17163,210 +18100,214 @@ bool ListeningReporter::isMulti() const { #endif namespace Catch { -XmlReporter::XmlReporter(ReporterConfig const &_config) - : StreamingReporterBase(_config), - m_xml(_config.stream()) { - m_reporterPrefs.shouldRedirectStdOut = true; - m_reporterPrefs.shouldReportAllAssertions = true; -} + XmlReporter::XmlReporter(ReporterConfig const &_config) + : StreamingReporterBase(_config), + m_xml(_config.stream()) { + m_reporterPrefs.shouldRedirectStdOut = true; + m_reporterPrefs.shouldReportAllAssertions = true; + } -XmlReporter::~XmlReporter() = default; + XmlReporter::~XmlReporter() = default; -std::string XmlReporter::getDescription() { - return "Reports test results as an XML document"; -} + std::string XmlReporter::getDescription() { + return "Reports test results as an XML document"; + } -std::string XmlReporter::getStylesheetRef() const { - return std::string(); -} + std::string XmlReporter::getStylesheetRef() const { + return std::string(); + } -void XmlReporter::writeSourceInfo(SourceLineInfo const &sourceInfo) { - m_xml - .writeAttribute("filename", sourceInfo.file) - .writeAttribute("line", sourceInfo.line); -} + void XmlReporter::writeSourceInfo(SourceLineInfo const &sourceInfo) { + m_xml + .writeAttribute("filename", sourceInfo.file) + .writeAttribute("line", sourceInfo.line); + } -void XmlReporter::noMatchingTestCases(std::string const &s) { - StreamingReporterBase::noMatchingTestCases(s); -} + void XmlReporter::noMatchingTestCases(std::string const &s) { + StreamingReporterBase::noMatchingTestCases(s); + } -void XmlReporter::testRunStarting(TestRunInfo const &testInfo) { - StreamingReporterBase::testRunStarting(testInfo); - std::string stylesheetRef = getStylesheetRef(); - if (!stylesheetRef.empty()) - m_xml.writeStylesheetRef(stylesheetRef); - m_xml.startElement("Catch"); - if (!m_config->name().empty()) - m_xml.writeAttribute("name", m_config->name()); - if (m_config->testSpec().hasFilters()) - m_xml.writeAttribute("filters", serializeFilters(m_config->getTestsOrTags())); - if (m_config->rngSeed() != 0) - m_xml.scopedElement("Randomness") - .writeAttribute("seed", m_config->rngSeed()); -} + void XmlReporter::testRunStarting(TestRunInfo const &testInfo) { + StreamingReporterBase::testRunStarting(testInfo); + std::string stylesheetRef = getStylesheetRef(); + if (!stylesheetRef.empty()) + m_xml.writeStylesheetRef(stylesheetRef); + m_xml.startElement("Catch"); + if (!m_config->name().empty()) + m_xml.writeAttribute("name", m_config->name()); + if (m_config->testSpec().hasFilters()) + m_xml.writeAttribute("filters", serializeFilters(m_config->getTestsOrTags())); + if (m_config->rngSeed() != 0) + m_xml.scopedElement("Randomness") + .writeAttribute("seed", m_config->rngSeed()); + } -void XmlReporter::testGroupStarting(GroupInfo const &groupInfo) { - StreamingReporterBase::testGroupStarting(groupInfo); - m_xml.startElement("Group") - .writeAttribute("name", groupInfo.name); -} + void XmlReporter::testGroupStarting(GroupInfo const &groupInfo) { + StreamingReporterBase::testGroupStarting(groupInfo); + m_xml.startElement("Group") + .writeAttribute("name", groupInfo.name); + } -void XmlReporter::testCaseStarting(TestCaseInfo const &testInfo) { - StreamingReporterBase::testCaseStarting(testInfo); - m_xml.startElement("TestCase") - .writeAttribute("name", trim(testInfo.name)) - .writeAttribute("description", testInfo.description) - .writeAttribute("tags", testInfo.tagsAsString()); + void XmlReporter::testCaseStarting(TestCaseInfo const &testInfo) { + StreamingReporterBase::testCaseStarting(testInfo); + m_xml.startElement("TestCase") + .writeAttribute("name", trim(testInfo.name)) + .writeAttribute("description", testInfo.description) + .writeAttribute("tags", testInfo.tagsAsString()); - writeSourceInfo(testInfo.lineInfo); + writeSourceInfo(testInfo.lineInfo); - if (m_config->showDurations() == ShowDurations::Always) - m_testCaseTimer.start(); - m_xml.ensureTagClosed(); -} + if (m_config->showDurations() == ShowDurations::Always) + m_testCaseTimer.start(); + m_xml.ensureTagClosed(); + } -void XmlReporter::sectionStarting(SectionInfo const §ionInfo) { - StreamingReporterBase::sectionStarting(sectionInfo); - if (m_sectionDepth++ > 0) { - m_xml.startElement("Section") - .writeAttribute("name", trim(sectionInfo.name)); - writeSourceInfo(sectionInfo.lineInfo); - m_xml.ensureTagClosed(); - } -} + void XmlReporter::sectionStarting(SectionInfo const §ionInfo) { + StreamingReporterBase::sectionStarting(sectionInfo); + if (m_sectionDepth++ > 0) { + m_xml.startElement("Section") + .writeAttribute("name", trim(sectionInfo.name)); + writeSourceInfo(sectionInfo.lineInfo); + m_xml.ensureTagClosed(); + } + } -void XmlReporter::assertionStarting(AssertionInfo const &) {} - -bool XmlReporter::assertionEnded(AssertionStats const &assertionStats) { - - AssertionResult const &result = assertionStats.assertionResult; - - bool includeResults = m_config->includeSuccessfulResults() || !result.isOk(); - - if (includeResults || result.getResultType() == ResultWas::Warning) { - // Print any info messages in tags. - for (auto const &msg : assertionStats.infoMessages) { - if (msg.type == ResultWas::Info && includeResults) { - m_xml.scopedElement("Info") - .writeText(msg.message); - } else if (msg.type == ResultWas::Warning) { - m_xml.scopedElement("Warning") - .writeText(msg.message); - } - } - } - - // Drop out if result was successful but we're not printing them. - if (!includeResults && result.getResultType() != ResultWas::Warning) - return true; - - // Print the expression if there is one. - if (result.hasExpression()) { - m_xml.startElement("Expression") - .writeAttribute("success", result.succeeded()) - .writeAttribute("type", result.getTestMacroName()); - - writeSourceInfo(result.getSourceInfo()); - - m_xml.scopedElement("Original") - .writeText(result.getExpression()); - m_xml.scopedElement("Expanded") - .writeText(result.getExpandedExpression()); - } - - // And... Print a result applicable to each result type. - switch (result.getResultType()) { - case ResultWas::ThrewException:m_xml.startElement("Exception"); - writeSourceInfo(result.getSourceInfo()); - m_xml.writeText(result.getMessage()); - m_xml.endElement(); - break; - case ResultWas::FatalErrorCondition:m_xml.startElement("FatalErrorCondition"); - writeSourceInfo(result.getSourceInfo()); - m_xml.writeText(result.getMessage()); - m_xml.endElement(); - break; - case ResultWas::Info: - m_xml.scopedElement("Info") - .writeText(result.getMessage()); - break; - case ResultWas::Warning: - // Warning will already have been written - break; - case ResultWas::ExplicitFailure:m_xml.startElement("Failure"); - writeSourceInfo(result.getSourceInfo()); - m_xml.writeText(result.getMessage()); - m_xml.endElement(); - break; - default:break; - } - - if (result.hasExpression()) - m_xml.endElement(); - - return true; -} + void XmlReporter::assertionStarting(AssertionInfo const &) {} -void XmlReporter::sectionEnded(SectionStats const §ionStats) { - StreamingReporterBase::sectionEnded(sectionStats); - if (--m_sectionDepth > 0) { - XmlWriter::ScopedElement e = m_xml.scopedElement("OverallResults"); - e.writeAttribute("successes", sectionStats.assertions.passed); - e.writeAttribute("failures", sectionStats.assertions.failed); - e.writeAttribute("expectedFailures", sectionStats.assertions.failedButOk); + bool XmlReporter::assertionEnded(AssertionStats const &assertionStats) { - if (m_config->showDurations() == ShowDurations::Always) - e.writeAttribute("durationInSeconds", sectionStats.durationInSeconds); + AssertionResult const &result = assertionStats.assertionResult; - m_xml.endElement(); - } -} + bool includeResults = m_config->includeSuccessfulResults() || !result.isOk(); -void XmlReporter::testCaseEnded(TestCaseStats const &testCaseStats) { - StreamingReporterBase::testCaseEnded(testCaseStats); - XmlWriter::ScopedElement e = m_xml.scopedElement("OverallResult"); - e.writeAttribute("success", testCaseStats.totals.assertions.allOk()); + if (includeResults || result.getResultType() == ResultWas::Warning) { + // Print any info messages in tags. + for (auto const &msg: assertionStats.infoMessages) { + if (msg.type == ResultWas::Info && includeResults) { + m_xml.scopedElement("Info") + .writeText(msg.message); + } else if (msg.type == ResultWas::Warning) { + m_xml.scopedElement("Warning") + .writeText(msg.message); + } + } + } - if (m_config->showDurations() == ShowDurations::Always) - e.writeAttribute("durationInSeconds", m_testCaseTimer.getElapsedSeconds()); + // Drop out if result was successful but we're not printing them. + if (!includeResults && result.getResultType() != ResultWas::Warning) + return true; - if (!testCaseStats.stdOut.empty()) - m_xml.scopedElement("StdOut").writeText(trim(testCaseStats.stdOut), XmlFormatting::Newline); - if (!testCaseStats.stdErr.empty()) - m_xml.scopedElement("StdErr").writeText(trim(testCaseStats.stdErr), XmlFormatting::Newline); + // Print the expression if there is one. + if (result.hasExpression()) { + m_xml.startElement("Expression") + .writeAttribute("success", result.succeeded()) + .writeAttribute("type", result.getTestMacroName()); - m_xml.endElement(); -} + writeSourceInfo(result.getSourceInfo()); -void XmlReporter::testGroupEnded(TestGroupStats const &testGroupStats) { - StreamingReporterBase::testGroupEnded(testGroupStats); - // TODO: Check testGroupStats.aborting and act accordingly. - m_xml.scopedElement("OverallResults") - .writeAttribute("successes", testGroupStats.totals.assertions.passed) - .writeAttribute("failures", testGroupStats.totals.assertions.failed) - .writeAttribute("expectedFailures", testGroupStats.totals.assertions.failedButOk); - m_xml.scopedElement("OverallResultsCases") - .writeAttribute("successes", testGroupStats.totals.testCases.passed) - .writeAttribute("failures", testGroupStats.totals.testCases.failed) - .writeAttribute("expectedFailures", testGroupStats.totals.testCases.failedButOk); - m_xml.endElement(); -} + m_xml.scopedElement("Original") + .writeText(result.getExpression()); + m_xml.scopedElement("Expanded") + .writeText(result.getExpandedExpression()); + } -void XmlReporter::testRunEnded(TestRunStats const &testRunStats) { - StreamingReporterBase::testRunEnded(testRunStats); - m_xml.scopedElement("OverallResults") - .writeAttribute("successes", testRunStats.totals.assertions.passed) - .writeAttribute("failures", testRunStats.totals.assertions.failed) - .writeAttribute("expectedFailures", testRunStats.totals.assertions.failedButOk); - m_xml.scopedElement("OverallResultsCases") - .writeAttribute("successes", testRunStats.totals.testCases.passed) - .writeAttribute("failures", testRunStats.totals.testCases.failed) - .writeAttribute("expectedFailures", testRunStats.totals.testCases.failedButOk); - m_xml.endElement(); -} + // And... Print a result applicable to each result type. + switch (result.getResultType()) { + case ResultWas::ThrewException: + m_xml.startElement("Exception"); + writeSourceInfo(result.getSourceInfo()); + m_xml.writeText(result.getMessage()); + m_xml.endElement(); + break; + case ResultWas::FatalErrorCondition: + m_xml.startElement("FatalErrorCondition"); + writeSourceInfo(result.getSourceInfo()); + m_xml.writeText(result.getMessage()); + m_xml.endElement(); + break; + case ResultWas::Info: + m_xml.scopedElement("Info") + .writeText(result.getMessage()); + break; + case ResultWas::Warning: + // Warning will already have been written + break; + case ResultWas::ExplicitFailure: + m_xml.startElement("Failure"); + writeSourceInfo(result.getSourceInfo()); + m_xml.writeText(result.getMessage()); + m_xml.endElement(); + break; + default: + break; + } + + if (result.hasExpression()) + m_xml.endElement(); + + return true; + } + + void XmlReporter::sectionEnded(SectionStats const §ionStats) { + StreamingReporterBase::sectionEnded(sectionStats); + if (--m_sectionDepth > 0) { + XmlWriter::ScopedElement e = m_xml.scopedElement("OverallResults"); + e.writeAttribute("successes", sectionStats.assertions.passed); + e.writeAttribute("failures", sectionStats.assertions.failed); + e.writeAttribute("expectedFailures", sectionStats.assertions.failedButOk); + + if (m_config->showDurations() == ShowDurations::Always) + e.writeAttribute("durationInSeconds", sectionStats.durationInSeconds); + + m_xml.endElement(); + } + } + + void XmlReporter::testCaseEnded(TestCaseStats const &testCaseStats) { + StreamingReporterBase::testCaseEnded(testCaseStats); + XmlWriter::ScopedElement e = m_xml.scopedElement("OverallResult"); + e.writeAttribute("success", testCaseStats.totals.assertions.allOk()); + + if (m_config->showDurations() == ShowDurations::Always) + e.writeAttribute("durationInSeconds", m_testCaseTimer.getElapsedSeconds()); + + if (!testCaseStats.stdOut.empty()) + m_xml.scopedElement("StdOut").writeText(trim(testCaseStats.stdOut), XmlFormatting::Newline); + if (!testCaseStats.stdErr.empty()) + m_xml.scopedElement("StdErr").writeText(trim(testCaseStats.stdErr), XmlFormatting::Newline); + + m_xml.endElement(); + } + + void XmlReporter::testGroupEnded(TestGroupStats const &testGroupStats) { + StreamingReporterBase::testGroupEnded(testGroupStats); + // TODO: Check testGroupStats.aborting and act accordingly. + m_xml.scopedElement("OverallResults") + .writeAttribute("successes", testGroupStats.totals.assertions.passed) + .writeAttribute("failures", testGroupStats.totals.assertions.failed) + .writeAttribute("expectedFailures", testGroupStats.totals.assertions.failedButOk); + m_xml.scopedElement("OverallResultsCases") + .writeAttribute("successes", testGroupStats.totals.testCases.passed) + .writeAttribute("failures", testGroupStats.totals.testCases.failed) + .writeAttribute("expectedFailures", testGroupStats.totals.testCases.failedButOk); + m_xml.endElement(); + } + + void XmlReporter::testRunEnded(TestRunStats const &testRunStats) { + StreamingReporterBase::testRunEnded(testRunStats); + m_xml.scopedElement("OverallResults") + .writeAttribute("successes", testRunStats.totals.assertions.passed) + .writeAttribute("failures", testRunStats.totals.assertions.failed) + .writeAttribute("expectedFailures", testRunStats.totals.assertions.failedButOk); + m_xml.scopedElement("OverallResultsCases") + .writeAttribute("successes", testRunStats.totals.testCases.passed) + .writeAttribute("failures", testRunStats.totals.testCases.failed) + .writeAttribute("expectedFailures", testRunStats.totals.testCases.failedButOk); + m_xml.endElement(); + } #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) - void XmlReporter::benchmarkPreparing(std::string const& name) { + void XmlReporter::benchmarkPreparing(std::string const& name) { m_xml.startElement("BenchmarkResults") .writeAttribute("name", name); } @@ -17410,7 +18351,7 @@ void XmlReporter::testRunEnded(TestRunStats const &testRunStats) { } #endif // CATCH_CONFIG_ENABLE_BENCHMARKING -CATCH_REGISTER_REPORTER("xml", XmlReporter) + CATCH_REGISTER_REPORTER("xml", XmlReporter) } // end namespace Catch @@ -17420,7 +18361,7 @@ CATCH_REGISTER_REPORTER("xml", XmlReporter) // end catch_reporter_xml.cpp namespace Catch { -LeakDetector leakDetector; + LeakDetector leakDetector; } #ifdef __clang__ @@ -17447,11 +18388,12 @@ LeakDetector leakDetector; // Standard C/C++ Win32 Unicode wmain entry point extern "C" int CATCH_INTERNAL_CDECL wmain (int argc, wchar_t * argv[], wchar_t * []) { #else + // Standard C/C++ main entry point int CATCH_INTERNAL_CDECL main(int argc, char *argv[]) { #endif - return Catch::Session().run(argc, argv); + return Catch::Session().run(argc, argv); } #else // __OBJC__ diff --git a/test/SystemTest/catch_reporter_automake.hpp b/test/SystemTest/catch_reporter_automake.hpp index 2880451d..6dc66e92 100644 --- a/test/SystemTest/catch_reporter_automake.hpp +++ b/test/SystemTest/catch_reporter_automake.hpp @@ -16,45 +16,45 @@ namespace Catch { -struct AutomakeReporter : StreamingReporterBase { - AutomakeReporter(ReporterConfig const &_config) - : StreamingReporterBase(_config) {} + struct AutomakeReporter : StreamingReporterBase { + AutomakeReporter(ReporterConfig const &_config) + : StreamingReporterBase(_config) {} - ~AutomakeReporter() override; + ~AutomakeReporter() override; - static std::string getDescription() { - return "Reports test results in the format of Automake .trs files"; - } + static std::string getDescription() { + return "Reports test results in the format of Automake .trs files"; + } - void assertionStarting(AssertionInfo const &) override {} + void assertionStarting(AssertionInfo const &) override {} - bool assertionEnded(AssertionStats const & /*_assertionStats*/ ) override { return true; } + bool assertionEnded(AssertionStats const & /*_assertionStats*/ ) override { return true; } - void testCaseEnded(TestCaseStats const &_testCaseStats) override { - // Possible values to emit are PASS, XFAIL, SKIP, FAIL, XPASS and ERROR. - stream << ":test-result: "; - if (_testCaseStats.totals.assertions.allPassed()) { - stream << "PASS"; - } else if (_testCaseStats.totals.assertions.allOk()) { - stream << "XFAIL"; - } else { - stream << "FAIL"; - } - stream << ' ' << _testCaseStats.testInfo.name << '\n'; - StreamingReporterBase::testCaseEnded(_testCaseStats); - } + void testCaseEnded(TestCaseStats const &_testCaseStats) override { + // Possible values to emit are PASS, XFAIL, SKIP, FAIL, XPASS and ERROR. + stream << ":test-result: "; + if (_testCaseStats.totals.assertions.allPassed()) { + stream << "PASS"; + } else if (_testCaseStats.totals.assertions.allOk()) { + stream << "XFAIL"; + } else { + stream << "FAIL"; + } + stream << ' ' << _testCaseStats.testInfo.name << '\n'; + StreamingReporterBase::testCaseEnded(_testCaseStats); + } - void skipTest(TestCaseInfo const &testInfo) override { - stream << ":test-result: SKIP " << testInfo.name << '\n'; - } + void skipTest(TestCaseInfo const &testInfo) override { + stream << ":test-result: SKIP " << testInfo.name << '\n'; + } -}; + }; #ifdef CATCH_IMPL -AutomakeReporter::~AutomakeReporter() {} + AutomakeReporter::~AutomakeReporter() {} #endif -CATCH_REGISTER_REPORTER( "automake", AutomakeReporter) + CATCH_REGISTER_REPORTER( "automake", AutomakeReporter) } // end namespace Catch diff --git a/test/SystemTest/catch_reporter_sonarqube.hpp b/test/SystemTest/catch_reporter_sonarqube.hpp index 48571846..5b4b4a92 100644 --- a/test/SystemTest/catch_reporter_sonarqube.hpp +++ b/test/SystemTest/catch_reporter_sonarqube.hpp @@ -19,155 +19,160 @@ namespace Catch { -struct SonarQubeReporter : CumulativeReporterBase { - - SonarQubeReporter(ReporterConfig const &config) - : CumulativeReporterBase(config), xml(config.stream()) { - m_reporterPrefs.shouldRedirectStdOut = true; - m_reporterPrefs.shouldReportAllAssertions = true; - } - - ~SonarQubeReporter() override; - - static std::string getDescription() { - return "Reports test results in the Generic Test Data SonarQube XML format"; - } - - static std::set getSupportedVerbosities() { - return {Verbosity::Normal}; - } - - void noMatchingTestCases(std::string const & /*spec*/) override {} - - void testRunStarting(TestRunInfo const &testRunInfo) override { - CumulativeReporterBase::testRunStarting(testRunInfo); - xml.startElement("testExecutions"); - xml.writeAttribute("version", "1"); - } - - void testGroupEnded(TestGroupStats const &testGroupStats) override { - CumulativeReporterBase::testGroupEnded(testGroupStats); - writeGroup(*m_testGroups.back()); - } - - void testRunEndedCumulative() override { - xml.endElement(); - } - - void writeGroup(TestGroupNode const &groupNode) { - std::map testsPerFile; - for (auto const &child : groupNode.children) - testsPerFile[child->value.testInfo.lineInfo.file].push_back(child); - - for (auto const &kv : testsPerFile) - writeTestFile(kv.first.c_str(), kv.second); - } - - void writeTestFile(const char *filename, TestGroupNode::ChildNodes const &testCaseNodes) { - XmlWriter::ScopedElement e = xml.scopedElement("file"); - xml.writeAttribute("path", filename); - - for (auto const &child : testCaseNodes) - writeTestCase(*child); - } - - void writeTestCase(TestCaseNode const &testCaseNode) { - // All test cases have exactly one section - which represents the - // test case itself. That section may have 0-n nested sections - assert(testCaseNode.children.size() == 1); - SectionNode const &rootSection = *testCaseNode.children.front(); - writeSection("", rootSection, testCaseNode.value.testInfo.okToFail()); - } - - void writeSection(std::string const &rootName, SectionNode const §ionNode, bool okToFail) { - std::string name = trim(sectionNode.stats.sectionInfo.name); - if (!rootName.empty()) - name = rootName + '/' + name; - - if (!sectionNode.assertions.empty() || !sectionNode.stdOut.empty() || !sectionNode.stdErr.empty()) { - XmlWriter::ScopedElement e = xml.scopedElement("testCase"); - xml.writeAttribute("name", name); - xml.writeAttribute("duration", static_cast(sectionNode.stats.durationInSeconds * 1000)); - - writeAssertions(sectionNode, okToFail); - } - - for (auto const &childNode : sectionNode.childSections) - writeSection(name, *childNode, okToFail); - } - - void writeAssertions(SectionNode const §ionNode, bool okToFail) { - for (auto const &assertion : sectionNode.assertions) - writeAssertion(assertion, okToFail); - } - - void writeAssertion(AssertionStats const &stats, bool okToFail) { - AssertionResult const &result = stats.assertionResult; - if (!result.isOk()) { - std::string elementName; - if (okToFail) { - elementName = "skipped"; - } else { - switch (result.getResultType()) { - case ResultWas::ThrewException: - case ResultWas::FatalErrorCondition:elementName = "error"; - break; - case ResultWas::ExplicitFailure:elementName = "failure"; - break; - case ResultWas::ExpressionFailed:elementName = "failure"; - break; - case ResultWas::DidntThrowException:elementName = "failure"; - break; - - // We should never see these here: - case ResultWas::Info: - case ResultWas::Warning: - case ResultWas::Ok: - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:elementName = "internalError"; - break; + struct SonarQubeReporter : CumulativeReporterBase { + + SonarQubeReporter(ReporterConfig const &config) + : CumulativeReporterBase(config), xml(config.stream()) { + m_reporterPrefs.shouldRedirectStdOut = true; + m_reporterPrefs.shouldReportAllAssertions = true; + } + + ~SonarQubeReporter() override; + + static std::string getDescription() { + return "Reports test results in the Generic Test Data SonarQube XML format"; + } + + static std::set getSupportedVerbosities() { + return {Verbosity::Normal}; + } + + void noMatchingTestCases(std::string const & /*spec*/) override {} + + void testRunStarting(TestRunInfo const &testRunInfo) override { + CumulativeReporterBase::testRunStarting(testRunInfo); + xml.startElement("testExecutions"); + xml.writeAttribute("version", "1"); + } + + void testGroupEnded(TestGroupStats const &testGroupStats) override { + CumulativeReporterBase::testGroupEnded(testGroupStats); + writeGroup(*m_testGroups.back()); } - } - XmlWriter::ScopedElement e = xml.scopedElement(elementName); + void testRunEndedCumulative() override { + xml.endElement(); + } + + void writeGroup(TestGroupNode const &groupNode) { + std::map testsPerFile; + for (auto const &child: groupNode.children) + testsPerFile[child->value.testInfo.lineInfo.file].push_back(child); + + for (auto const &kv: testsPerFile) + writeTestFile(kv.first.c_str(), kv.second); + } - ReusableStringStream messageRss; - messageRss << result.getTestMacroName() << "(" << result.getExpression() << ")"; - xml.writeAttribute("message", messageRss.str()); + void writeTestFile(const char *filename, TestGroupNode::ChildNodes const &testCaseNodes) { + XmlWriter::ScopedElement e = xml.scopedElement("file"); + xml.writeAttribute("path", filename); - ReusableStringStream textRss; - if (stats.totals.assertions.total() > 0) { - textRss << "FAILED:\n"; - if (result.hasExpression()) { - textRss << "\t" << result.getExpressionInMacro() << "\n"; + for (auto const &child: testCaseNodes) + writeTestCase(*child); } - if (result.hasExpandedExpression()) { - textRss << "with expansion:\n\t" << result.getExpandedExpression() << "\n"; + + void writeTestCase(TestCaseNode const &testCaseNode) { + // All test cases have exactly one section - which represents the + // test case itself. That section may have 0-n nested sections + assert(testCaseNode.children.size() == 1); + SectionNode const &rootSection = *testCaseNode.children.front(); + writeSection("", rootSection, testCaseNode.value.testInfo.okToFail()); } - } - if (!result.getMessage().empty()) - textRss << result.getMessage() << "\n"; + void writeSection(std::string const &rootName, SectionNode const §ionNode, bool okToFail) { + std::string name = trim(sectionNode.stats.sectionInfo.name); + if (!rootName.empty()) + name = rootName + '/' + name; + + if (!sectionNode.assertions.empty() || !sectionNode.stdOut.empty() || !sectionNode.stdErr.empty()) { + XmlWriter::ScopedElement e = xml.scopedElement("testCase"); + xml.writeAttribute("name", name); + xml.writeAttribute("duration", static_cast(sectionNode.stats.durationInSeconds * 1000)); - for (auto const &msg : stats.infoMessages) - if (msg.type == ResultWas::Info) - textRss << msg.message << "\n"; + writeAssertions(sectionNode, okToFail); + } - textRss << "at " << result.getSourceInfo(); - xml.writeText(textRss.str(), XmlFormatting::Newline); - } - } + for (auto const &childNode: sectionNode.childSections) + writeSection(name, *childNode, okToFail); + } + + void writeAssertions(SectionNode const §ionNode, bool okToFail) { + for (auto const &assertion: sectionNode.assertions) + writeAssertion(assertion, okToFail); + } + + void writeAssertion(AssertionStats const &stats, bool okToFail) { + AssertionResult const &result = stats.assertionResult; + if (!result.isOk()) { + std::string elementName; + if (okToFail) { + elementName = "skipped"; + } else { + switch (result.getResultType()) { + case ResultWas::ThrewException: + case ResultWas::FatalErrorCondition: + elementName = "error"; + break; + case ResultWas::ExplicitFailure: + elementName = "failure"; + break; + case ResultWas::ExpressionFailed: + elementName = "failure"; + break; + case ResultWas::DidntThrowException: + elementName = "failure"; + break; + + // We should never see these here: + case ResultWas::Info: + case ResultWas::Warning: + case ResultWas::Ok: + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + elementName = "internalError"; + break; + } + } + + XmlWriter::ScopedElement e = xml.scopedElement(elementName); + + ReusableStringStream messageRss; + messageRss << result.getTestMacroName() << "(" << result.getExpression() << ")"; + xml.writeAttribute("message", messageRss.str()); + + ReusableStringStream textRss; + if (stats.totals.assertions.total() > 0) { + textRss << "FAILED:\n"; + if (result.hasExpression()) { + textRss << "\t" << result.getExpressionInMacro() << "\n"; + } + if (result.hasExpandedExpression()) { + textRss << "with expansion:\n\t" << result.getExpandedExpression() << "\n"; + } + } + + if (!result.getMessage().empty()) + textRss << result.getMessage() << "\n"; + + for (auto const &msg: stats.infoMessages) + if (msg.type == ResultWas::Info) + textRss << msg.message << "\n"; + + textRss << "at " << result.getSourceInfo(); + xml.writeText(textRss.str(), XmlFormatting::Newline); + } + } - private: - XmlWriter xml; -}; + private: + XmlWriter xml; + }; #ifdef CATCH_IMPL -SonarQubeReporter::~SonarQubeReporter() {} + SonarQubeReporter::~SonarQubeReporter() {} #endif -CATCH_REGISTER_REPORTER( "sonarqube", SonarQubeReporter ) + CATCH_REGISTER_REPORTER( "sonarqube", SonarQubeReporter ) } // end namespace Catch diff --git a/test/SystemTest/catch_reporter_tap.hpp b/test/SystemTest/catch_reporter_tap.hpp index f0567464..63b04dca 100644 --- a/test/SystemTest/catch_reporter_tap.hpp +++ b/test/SystemTest/catch_reporter_tap.hpp @@ -19,226 +19,238 @@ namespace Catch { -struct TAPReporter : StreamingReporterBase { - - using StreamingReporterBase::StreamingReporterBase; - - TAPReporter(ReporterConfig const &config) : - StreamingReporterBase(config) { - m_reporterPrefs.shouldReportAllAssertions = true; - } - - ~TAPReporter() override; - - static std::string getDescription() { - return "Reports test results in TAP format, suitable for test harnesses"; - } - - void noMatchingTestCases(std::string const &spec) override { - stream << "# No test cases matched '" << spec << "'" << std::endl; - } - - void assertionStarting(AssertionInfo const &) override {} - - bool assertionEnded(AssertionStats const &_assertionStats) override { - ++counter; - - stream << "# " << currentTestCaseInfo->name << std::endl; - AssertionPrinter printer(stream, _assertionStats, counter); - printer.print(); - - stream << std::endl; - return true; - } - - void testRunEnded(TestRunStats const &_testRunStats) override { - printTotals(_testRunStats.totals); - stream << "\n" << std::endl; - StreamingReporterBase::testRunEnded(_testRunStats); - } - - private: - std::size_t counter = 0; - class AssertionPrinter { - public: - AssertionPrinter &operator=(AssertionPrinter const &) = delete; - AssertionPrinter(AssertionPrinter const &) = delete; - AssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, std::size_t _counter) - : stream(_stream), - result(_stats.assertionResult), - messages(_stats.infoMessages), - itMessage(_stats.infoMessages.begin()), - printInfoMessages(true), - counter(_counter) {} - - void print() { - itMessage = messages.begin(); - - switch (result.getResultType()) { - case ResultWas::Ok:printResultType(passedString()); - printOriginalExpression(); - printReconstructedExpression(); - if (!result.hasExpression()) - printRemainingMessages(Colour::None); - else - printRemainingMessages(); - break; - case ResultWas::ExpressionFailed: - if (result.isOk()) { - printResultType(passedString()); - } else { - printResultType(failedString()); - } - printOriginalExpression(); - printReconstructedExpression(); - if (result.isOk()) { - printIssue(" # TODO"); - } - printRemainingMessages(); - break; - case ResultWas::ThrewException:printResultType(failedString()); - printIssue("unexpected exception with message:"); - printMessage(); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::FatalErrorCondition:printResultType(failedString()); - printIssue("fatal error condition with message:"); - printMessage(); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::DidntThrowException:printResultType(failedString()); - printIssue("expected exception, got none"); - printExpressionWas(); - printRemainingMessages(); - break; - case ResultWas::Info:printResultType("info"); - printMessage(); - printRemainingMessages(); - break; - case ResultWas::Warning:printResultType("warning"); - printMessage(); - printRemainingMessages(); - break; - case ResultWas::ExplicitFailure:printResultType(failedString()); - printIssue("explicitly"); - printRemainingMessages(Colour::None); - break; - // These cases are here to prevent compiler warnings - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:printResultType("** internal error **"); - break; - } - } - - private: - static Colour::Code dimColour() { return Colour::FileName; } - - static const char *failedString() { return "not ok"; } - static const char *passedString() { return "ok"; } - - void printSourceInfo() const { - Colour colourGuard(dimColour()); - stream << result.getSourceInfo() << ":"; - } - - void printResultType(std::string const &passOrFail) const { - if (!passOrFail.empty()) { - stream << passOrFail << ' ' << counter << " -"; - } - } - - void printIssue(std::string const &issue) const { - stream << " " << issue; - } - - void printExpressionWas() { - if (result.hasExpression()) { - stream << ";"; - { - Colour colour(dimColour()); - stream << " expression was:"; + struct TAPReporter : StreamingReporterBase { + + using StreamingReporterBase::StreamingReporterBase; + + TAPReporter(ReporterConfig const &config) : + StreamingReporterBase(config) { + m_reporterPrefs.shouldReportAllAssertions = true; + } + + ~TAPReporter() override; + + static std::string getDescription() { + return "Reports test results in TAP format, suitable for test harnesses"; + } + + void noMatchingTestCases(std::string const &spec) override { + stream << "# No test cases matched '" << spec << "'" << std::endl; } - printOriginalExpression(); - } - } - - void printOriginalExpression() const { - if (result.hasExpression()) { - stream << " " << result.getExpression(); - } - } - - void printReconstructedExpression() const { - if (result.hasExpandedExpression()) { - { - Colour colour(dimColour()); - stream << " for: "; + + void assertionStarting(AssertionInfo const &) override {} + + bool assertionEnded(AssertionStats const &_assertionStats) override { + ++counter; + + stream << "# " << currentTestCaseInfo->name << std::endl; + AssertionPrinter printer(stream, _assertionStats, counter); + printer.print(); + + stream << std::endl; + return true; } - std::string expr = result.getExpandedExpression(); - std::replace(expr.begin(), expr.end(), '\n', ' '); - stream << expr; - } - } - - void printMessage() { - if (itMessage != messages.end()) { - stream << " '" << itMessage->message << "'"; - ++itMessage; - } - } - - void printRemainingMessages(Colour::Code colour = dimColour()) { - if (itMessage == messages.end()) { - return; - } - - const auto itEnd = messages.cend(); - const auto N = static_cast( std::distance(itMessage, itEnd)); - - { - Colour colourGuard(colour); - stream << " with " << pluralise(N, "message") << ":"; - } - - while (itMessage != itEnd) { - // If this assertion is a warning ignore any INFO messages - if (printInfoMessages || itMessage->type != ResultWas::Info) { - stream << " '" << itMessage->message << "'"; - if (++itMessage != itEnd) { - Colour colourGuard(dimColour()); - stream << " and"; - } - continue; + + void testRunEnded(TestRunStats const &_testRunStats) override { + printTotals(_testRunStats.totals); + stream << "\n" << std::endl; + StreamingReporterBase::testRunEnded(_testRunStats); + } + + private: + std::size_t counter = 0; + + class AssertionPrinter { + public: + AssertionPrinter &operator=(AssertionPrinter const &) = delete; + + AssertionPrinter(AssertionPrinter const &) = delete; + + AssertionPrinter(std::ostream &_stream, AssertionStats const &_stats, std::size_t _counter) + : stream(_stream), + result(_stats.assertionResult), + messages(_stats.infoMessages), + itMessage(_stats.infoMessages.begin()), + printInfoMessages(true), + counter(_counter) {} + + void print() { + itMessage = messages.begin(); + + switch (result.getResultType()) { + case ResultWas::Ok: + printResultType(passedString()); + printOriginalExpression(); + printReconstructedExpression(); + if (!result.hasExpression()) + printRemainingMessages(Colour::None); + else + printRemainingMessages(); + break; + case ResultWas::ExpressionFailed: + if (result.isOk()) { + printResultType(passedString()); + } else { + printResultType(failedString()); + } + printOriginalExpression(); + printReconstructedExpression(); + if (result.isOk()) { + printIssue(" # TODO"); + } + printRemainingMessages(); + break; + case ResultWas::ThrewException: + printResultType(failedString()); + printIssue("unexpected exception with message:"); + printMessage(); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::FatalErrorCondition: + printResultType(failedString()); + printIssue("fatal error condition with message:"); + printMessage(); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::DidntThrowException: + printResultType(failedString()); + printIssue("expected exception, got none"); + printExpressionWas(); + printRemainingMessages(); + break; + case ResultWas::Info: + printResultType("info"); + printMessage(); + printRemainingMessages(); + break; + case ResultWas::Warning: + printResultType("warning"); + printMessage(); + printRemainingMessages(); + break; + case ResultWas::ExplicitFailure: + printResultType(failedString()); + printIssue("explicitly"); + printRemainingMessages(Colour::None); + break; + // These cases are here to prevent compiler warnings + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + printResultType("** internal error **"); + break; + } + } + + private: + static Colour::Code dimColour() { return Colour::FileName; } + + static const char *failedString() { return "not ok"; } + + static const char *passedString() { return "ok"; } + + void printSourceInfo() const { + Colour colourGuard(dimColour()); + stream << result.getSourceInfo() << ":"; + } + + void printResultType(std::string const &passOrFail) const { + if (!passOrFail.empty()) { + stream << passOrFail << ' ' << counter << " -"; + } + } + + void printIssue(std::string const &issue) const { + stream << " " << issue; + } + + void printExpressionWas() { + if (result.hasExpression()) { + stream << ";"; + { + Colour colour(dimColour()); + stream << " expression was:"; + } + printOriginalExpression(); + } + } + + void printOriginalExpression() const { + if (result.hasExpression()) { + stream << " " << result.getExpression(); + } + } + + void printReconstructedExpression() const { + if (result.hasExpandedExpression()) { + { + Colour colour(dimColour()); + stream << " for: "; + } + std::string expr = result.getExpandedExpression(); + std::replace(expr.begin(), expr.end(), '\n', ' '); + stream << expr; + } + } + + void printMessage() { + if (itMessage != messages.end()) { + stream << " '" << itMessage->message << "'"; + ++itMessage; + } + } + + void printRemainingMessages(Colour::Code colour = dimColour()) { + if (itMessage == messages.end()) { + return; + } + + const auto itEnd = messages.cend(); + const auto N = static_cast( std::distance(itMessage, itEnd)); + + { + Colour colourGuard(colour); + stream << " with " << pluralise(N, "message") << ":"; + } + + while (itMessage != itEnd) { + // If this assertion is a warning ignore any INFO messages + if (printInfoMessages || itMessage->type != ResultWas::Info) { + stream << " '" << itMessage->message << "'"; + if (++itMessage != itEnd) { + Colour colourGuard(dimColour()); + stream << " and"; + } + continue; + } + ++itMessage; + } + } + + private: + std::ostream &stream; + AssertionResult const &result; + std::vector messages; + std::vector::const_iterator itMessage; + bool printInfoMessages; + std::size_t counter; + }; + + void printTotals(const Totals &totals) const { + stream << "1.." << totals.assertions.total(); + if (totals.testCases.total() == 0) { + stream << " # Skipped: No tests ran."; + } } - ++itMessage; - } - } - - private: - std::ostream &stream; - AssertionResult const &result; - std::vector messages; - std::vector::const_iterator itMessage; - bool printInfoMessages; - std::size_t counter; - }; - - void printTotals(const Totals &totals) const { - stream << "1.." << totals.assertions.total(); - if (totals.testCases.total() == 0) { - stream << " # Skipped: No tests ran."; - } - } -}; + }; #ifdef CATCH_IMPL -TAPReporter::~TAPReporter() {} + TAPReporter::~TAPReporter() {} #endif -CATCH_REGISTER_REPORTER( "tap", TAPReporter ) + CATCH_REGISTER_REPORTER( "tap", TAPReporter ) } // end namespace Catch diff --git a/test/SystemTest/catch_reporter_teamcity.hpp b/test/SystemTest/catch_reporter_teamcity.hpp index 50eb4fb5..a57b0587 100644 --- a/test/SystemTest/catch_reporter_teamcity.hpp +++ b/test/SystemTest/catch_reporter_teamcity.hpp @@ -23,181 +23,191 @@ namespace Catch { -struct TeamCityReporter : StreamingReporterBase { - TeamCityReporter(ReporterConfig const &_config) - : StreamingReporterBase(_config) { - m_reporterPrefs.shouldRedirectStdOut = true; - } - - static std::string escape(std::string const &str) { - std::string escaped = str; - replaceInPlace(escaped, "|", "||"); - replaceInPlace(escaped, "'", "|'"); - replaceInPlace(escaped, "\n", "|n"); - replaceInPlace(escaped, "\r", "|r"); - replaceInPlace(escaped, "[", "|["); - replaceInPlace(escaped, "]", "|]"); - return escaped; - } - ~TeamCityReporter() override; - - static std::string getDescription() { - return "Reports test results as TeamCity service messages"; - } - - void skipTest(TestCaseInfo const & /* testInfo */ ) override { - } - - void noMatchingTestCases(std::string const & /* spec */ ) override {} - - void testGroupStarting(GroupInfo const &groupInfo) override { - StreamingReporterBase::testGroupStarting(groupInfo); - stream << "##teamcity[testSuiteStarted name='" - << escape(groupInfo.name) << "']\n"; - } - void testGroupEnded(TestGroupStats const &testGroupStats) override { - StreamingReporterBase::testGroupEnded(testGroupStats); - stream << "##teamcity[testSuiteFinished name='" - << escape(testGroupStats.groupInfo.name) << "']\n"; - } - - void assertionStarting(AssertionInfo const &) override {} - - bool assertionEnded(AssertionStats const &assertionStats) override { - AssertionResult const &result = assertionStats.assertionResult; - if (!result.isOk()) { - - ReusableStringStream msg; - if (!m_headerPrintedForThisSection) - printSectionHeader(msg.get()); - m_headerPrintedForThisSection = true; - - msg << result.getSourceInfo() << "\n"; - - switch (result.getResultType()) { - case ResultWas::ExpressionFailed:msg << "expression failed"; - break; - case ResultWas::ThrewException:msg << "unexpected exception"; - break; - case ResultWas::FatalErrorCondition:msg << "fatal error condition"; - break; - case ResultWas::DidntThrowException:msg << "no exception was thrown where one was expected"; - break; - case ResultWas::ExplicitFailure:msg << "explicit failure"; - break; - - // We shouldn't get here because of the isOk() test - case ResultWas::Ok: - case ResultWas::Info: - case ResultWas::Warning:CATCH_ERROR("Internal error in TeamCity reporter"); - // These cases are here to prevent compiler warnings - case ResultWas::Unknown: - case ResultWas::FailureBit: - case ResultWas::Exception:CATCH_ERROR("Not implemented"); - } - if (assertionStats.infoMessages.size() == 1) - msg << " with message:"; - if (assertionStats.infoMessages.size() > 1) - msg << " with messages:"; - for (auto const &messageInfo : assertionStats.infoMessages) - msg << "\n \"" << messageInfo.message << "\""; - - if (result.hasExpression()) { - msg << - "\n " << result.getExpressionInMacro() << "\n" - "with expansion:\n" << - " " << result.getExpandedExpression() << "\n"; - } - - if (currentTestCaseInfo->okToFail()) { - msg << "- failure ignore as test marked as 'ok to fail'\n"; - stream << "##teamcity[testIgnored" - << " name='" << escape(currentTestCaseInfo->name) << "'" - << " message='" << escape(msg.str()) << "'" - << "]\n"; - } else { - stream << "##teamcity[testFailed" - << " name='" << escape(currentTestCaseInfo->name) << "'" - << " message='" << escape(msg.str()) << "'" - << "]\n"; - } - } - stream.flush(); - return true; - } - - void sectionStarting(SectionInfo const §ionInfo) override { - m_headerPrintedForThisSection = false; - StreamingReporterBase::sectionStarting(sectionInfo); - } - - void testCaseStarting(TestCaseInfo const &testInfo) override { - m_testTimer.start(); - StreamingReporterBase::testCaseStarting(testInfo); - stream << "##teamcity[testStarted name='" - << escape(testInfo.name) << "']\n"; - stream.flush(); - } - - void testCaseEnded(TestCaseStats const &testCaseStats) override { - StreamingReporterBase::testCaseEnded(testCaseStats); - if (!testCaseStats.stdOut.empty()) - stream << "##teamcity[testStdOut name='" - << escape(testCaseStats.testInfo.name) - << "' out='" << escape(testCaseStats.stdOut) << "']\n"; - if (!testCaseStats.stdErr.empty()) - stream << "##teamcity[testStdErr name='" - << escape(testCaseStats.testInfo.name) - << "' out='" << escape(testCaseStats.stdErr) << "']\n"; - stream << "##teamcity[testFinished name='" - << escape(testCaseStats.testInfo.name) << "' duration='" - << m_testTimer.getElapsedMilliseconds() << "']\n"; - stream.flush(); - } - - private: - void printSectionHeader(std::ostream &os) { - assert(!m_sectionStack.empty()); - - if (m_sectionStack.size() > 1) { - os << getLineOfChars<'-'>() << "\n"; - - std::vector::const_iterator - it = m_sectionStack.begin() + 1, // Skip first section (test case) - itEnd = m_sectionStack.end(); - for (; it != itEnd; ++it) - printHeaderString(os, it->name); - os << getLineOfChars<'-'>() << "\n"; - } - - SourceLineInfo lineInfo = m_sectionStack.front().lineInfo; - - os << lineInfo << "\n"; - os << getLineOfChars<'.'>() << "\n\n"; - } - - // if string has a : in first line will set indent to follow it on - // subsequent lines - static void printHeaderString(std::ostream &os, std::string const &_string, std::size_t indent = 0) { - std::size_t i = _string.find(": "); - if (i != std::string::npos) - i += 2; - else - i = 0; - os << Column(_string) - .indent(indent + i) - .initialIndent(indent) << "\n"; - } - private: - bool m_headerPrintedForThisSection = false; - Timer m_testTimer; -}; + struct TeamCityReporter : StreamingReporterBase { + TeamCityReporter(ReporterConfig const &_config) + : StreamingReporterBase(_config) { + m_reporterPrefs.shouldRedirectStdOut = true; + } + + static std::string escape(std::string const &str) { + std::string escaped = str; + replaceInPlace(escaped, "|", "||"); + replaceInPlace(escaped, "'", "|'"); + replaceInPlace(escaped, "\n", "|n"); + replaceInPlace(escaped, "\r", "|r"); + replaceInPlace(escaped, "[", "|["); + replaceInPlace(escaped, "]", "|]"); + return escaped; + } + + ~TeamCityReporter() override; + + static std::string getDescription() { + return "Reports test results as TeamCity service messages"; + } + + void skipTest(TestCaseInfo const & /* testInfo */ ) override { + } + + void noMatchingTestCases(std::string const & /* spec */ ) override {} + + void testGroupStarting(GroupInfo const &groupInfo) override { + StreamingReporterBase::testGroupStarting(groupInfo); + stream << "##teamcity[testSuiteStarted name='" + << escape(groupInfo.name) << "']\n"; + } + + void testGroupEnded(TestGroupStats const &testGroupStats) override { + StreamingReporterBase::testGroupEnded(testGroupStats); + stream << "##teamcity[testSuiteFinished name='" + << escape(testGroupStats.groupInfo.name) << "']\n"; + } + + void assertionStarting(AssertionInfo const &) override {} + + bool assertionEnded(AssertionStats const &assertionStats) override { + AssertionResult const &result = assertionStats.assertionResult; + if (!result.isOk()) { + + ReusableStringStream msg; + if (!m_headerPrintedForThisSection) + printSectionHeader(msg.get()); + m_headerPrintedForThisSection = true; + + msg << result.getSourceInfo() << "\n"; + + switch (result.getResultType()) { + case ResultWas::ExpressionFailed: + msg << "expression failed"; + break; + case ResultWas::ThrewException: + msg << "unexpected exception"; + break; + case ResultWas::FatalErrorCondition: + msg << "fatal error condition"; + break; + case ResultWas::DidntThrowException: + msg << "no exception was thrown where one was expected"; + break; + case ResultWas::ExplicitFailure: + msg << "explicit failure"; + break; + + // We shouldn't get here because of the isOk() test + case ResultWas::Ok: + case ResultWas::Info: + case ResultWas::Warning: + CATCH_ERROR("Internal error in TeamCity reporter"); + // These cases are here to prevent compiler warnings + case ResultWas::Unknown: + case ResultWas::FailureBit: + case ResultWas::Exception: + CATCH_ERROR("Not implemented"); + } + if (assertionStats.infoMessages.size() == 1) + msg << " with message:"; + if (assertionStats.infoMessages.size() > 1) + msg << " with messages:"; + for (auto const &messageInfo: assertionStats.infoMessages) + msg << "\n \"" << messageInfo.message << "\""; + + if (result.hasExpression()) { + msg << + "\n " << result.getExpressionInMacro() << "\n" + "with expansion:\n" << + " " << result.getExpandedExpression() << "\n"; + } + + if (currentTestCaseInfo->okToFail()) { + msg << "- failure ignore as test marked as 'ok to fail'\n"; + stream << "##teamcity[testIgnored" + << " name='" << escape(currentTestCaseInfo->name) << "'" + << " message='" << escape(msg.str()) << "'" + << "]\n"; + } else { + stream << "##teamcity[testFailed" + << " name='" << escape(currentTestCaseInfo->name) << "'" + << " message='" << escape(msg.str()) << "'" + << "]\n"; + } + } + stream.flush(); + return true; + } + + void sectionStarting(SectionInfo const §ionInfo) override { + m_headerPrintedForThisSection = false; + StreamingReporterBase::sectionStarting(sectionInfo); + } + + void testCaseStarting(TestCaseInfo const &testInfo) override { + m_testTimer.start(); + StreamingReporterBase::testCaseStarting(testInfo); + stream << "##teamcity[testStarted name='" + << escape(testInfo.name) << "']\n"; + stream.flush(); + } + + void testCaseEnded(TestCaseStats const &testCaseStats) override { + StreamingReporterBase::testCaseEnded(testCaseStats); + if (!testCaseStats.stdOut.empty()) + stream << "##teamcity[testStdOut name='" + << escape(testCaseStats.testInfo.name) + << "' out='" << escape(testCaseStats.stdOut) << "']\n"; + if (!testCaseStats.stdErr.empty()) + stream << "##teamcity[testStdErr name='" + << escape(testCaseStats.testInfo.name) + << "' out='" << escape(testCaseStats.stdErr) << "']\n"; + stream << "##teamcity[testFinished name='" + << escape(testCaseStats.testInfo.name) << "' duration='" + << m_testTimer.getElapsedMilliseconds() << "']\n"; + stream.flush(); + } + + private: + void printSectionHeader(std::ostream &os) { + assert(!m_sectionStack.empty()); + + if (m_sectionStack.size() > 1) { + os << getLineOfChars<'-'>() << "\n"; + + std::vector::const_iterator + it = m_sectionStack.begin() + 1, // Skip first section (test case) + itEnd = m_sectionStack.end(); + for (; it != itEnd; ++it) + printHeaderString(os, it->name); + os << getLineOfChars<'-'>() << "\n"; + } + + SourceLineInfo lineInfo = m_sectionStack.front().lineInfo; + + os << lineInfo << "\n"; + os << getLineOfChars<'.'>() << "\n\n"; + } + + // if string has a : in first line will set indent to follow it on + // subsequent lines + static void printHeaderString(std::ostream &os, std::string const &_string, std::size_t indent = 0) { + std::size_t i = _string.find(": "); + if (i != std::string::npos) + i += 2; + else + i = 0; + os << Column(_string) + .indent(indent + i) + .initialIndent(indent) << "\n"; + } + + private: + bool m_headerPrintedForThisSection = false; + Timer m_testTimer; + }; #ifdef CATCH_IMPL -TeamCityReporter::~TeamCityReporter() {} + TeamCityReporter::~TeamCityReporter() {} #endif -CATCH_REGISTER_REPORTER( "teamcity", TeamCityReporter ) + CATCH_REGISTER_REPORTER( "teamcity", TeamCityReporter ) } // end namespace Catch diff --git a/test/scripts/config_SRHT.csv b/test/scripts/config_SRHT.csv new file mode 100644 index 00000000..71a5c9ef --- /dev/null +++ b/test/scripts/config_SRHT.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/SRHT.pt,String diff --git a/test/scripts/config_fastJLT.csv b/test/scripts/config_fastJLT.csv new file mode 100644 index 00000000..bf23791b --- /dev/null +++ b/test/scripts/config_fastJLT.csv @@ -0,0 +1,6 @@ +key,value,type +aRow,100,U64 +aCol,1000,U64 +bCol,500,U64 +sketchDimension,25,U64 +ptFile,torchscripts/FastJLT.pt,String diff --git a/test/torchscripts/FastJLT.pt b/test/torchscripts/FastJLT.pt new file mode 100644 index 00000000..989c83cd Binary files /dev/null and b/test/torchscripts/FastJLT.pt differ diff --git a/test/torchscripts/FastJLT.py b/test/torchscripts/FastJLT.py new file mode 100644 index 00000000..e7ec6ada --- /dev/null +++ b/test/torchscripts/FastJLT.py @@ -0,0 +1,75 @@ +import torch +import time +import os +import math + +def hadamard_transform_matrix(n: int) -> torch.Tensor: + H = torch.tensor([[1.]]) + i = 1 + while i < n: + H_top = torch.cat((H, H), dim=1) + H_bottom = torch.cat((H, -H), dim=1) + H = torch.cat((H_top, H_bottom), dim=0) + i *= 2 + return H + + +@torch.jit.script +def FastJLT(A: torch.Tensor, B: torch.Tensor, d: int): + N, D = A.shape + M = B.shape[1] + + # Pad A and B for FHT + log2_D = int(torch.ceil(torch.log2(torch.tensor(D)))) + D_pad = int(2 ** log2_D) + A_pad = torch.zeros((N, D_pad)) + A_pad[:, :D] = A + B_pad = torch.zeros((D_pad, M)) + B_pad[:D] = B + + # Construct and apply random signs for each dimension + randsigns = (torch.randint(0, 2, size=(D_pad,)) * 2 - 1).float() + randsigns *= 1.0 / torch.sqrt(D_pad) + A_pad *= randsigns + B_pad *= randsigns.view(-1, 1) + + # Apply Fast Hadamard Transform + H = hadamard_transform_matrix(D_pad) + A_pad = A_pad @ H + B_pad = H @ B_pad + + # Dimensionality reduction + keep_prob = log2_D * log2_D / D_pad + P = (torch.rand((D_pad, d)) > keep_prob).float() + P *= torch.randn(P.shape[0], P.shape[1]) * (d/keep_prob) + P *= 1.0 / torch.linalg.norm(P, dim=0) + + return (A_pad @ P) @ (P.t() @ B_pad) + + +def main(): + width = 1000 + A = torch.rand(10000, width) + B = torch.rand(width, 5000) + + t = time.time() + + aResult = FastJLT(A, B, 500) + print("approximate: " + str(time.time() - t) + "s") + + print(aResult) + + # exact result + t = time.time() + eResult = torch.matmul(A, B) + print("\nExact: " + str(time.time() - t) + "s") + + print(eResult) + + print("\nerror: " + str(torch.norm(aResult - eResult, p='fro').item())) + + FastJLT_script = FastJLT.save("FastJLT.pt") + + +if __name__ == '__main__': + main() diff --git a/test/torchscripts/PQ/PQ.cpp b/test/torchscripts/PQ/PQ.cpp new file mode 100644 index 00000000..857fd598 --- /dev/null +++ b/test/torchscripts/PQ/PQ.cpp @@ -0,0 +1,72 @@ +#include +#include + +int main() { + const int N = 3000; + const int D = 1000; + const int M = 2000; + const int C = 10; + const int K = 16; + const int D_c = D / C; + + torch::Tensor A = torch::rand({N, D}); + torch::Tensor B = torch::rand({D, M}); + + std::vector prototypes; + std::ifstream in_file("/home/haolan/PQ/prototypes.pt", std::ios::binary); + if (!in_file.is_open()) { + std::cerr << "Error opening file prototypes.pt\n"; + return 1; + } + torch::load(prototypes, in_file); + + std::vector A_encoded; + + for (int i = 0; i < A.size(0); ++i) { + auto a = A[i]; + std::vector a_encoded; + + for (int c = 0; c < C; ++c) { + torch::Tensor prototypes_c = prototypes[c]; + torch::Tensor a_subvector = a.slice(0, c * D_c, (c + 1) * D_c); + + torch::Tensor distances = torch::norm(prototypes_c - a_subvector.expand_as(prototypes_c), 1); + torch::Tensor closest_prototype_index = torch::argmin(distances); + a_encoded.push_back(closest_prototype_index); + } + A_encoded.push_back(torch::stack(a_encoded)); + } + torch::Tensor A_encoded_tensor = torch::stack(A_encoded); + + std::vector tables; + + for (int c = 0; c < C; ++c) { + torch::Tensor prototypes_c = prototypes[c]; + torch::Tensor B_subspace = B.slice(0, c * D_c, (c + 1) * D_c); + + std::vector table_c; + for (int i = 0; i < prototypes_c.size(0); ++i) { + auto prototype = prototypes_c[i]; + torch::Tensor dot_products = prototype.matmul(B_subspace); + table_c.push_back(dot_products); + } + tables.push_back(torch::stack(table_c)); + } + + std::vector result; + + for (int i = 0; i < A_encoded_tensor.size(0); ++i) { + auto a_encoded = A_encoded_tensor[i]; + torch::Tensor row_sum = torch::zeros({B.size(1)}); + for (int c = 0; c < C; ++c) { + int prototype_index = a_encoded[c].item(); + torch::Tensor table_c = tables[c]; + torch::Tensor dot_products = table_c[prototype_index]; + row_sum += dot_products; + } + result.push_back(row_sum); + } + torch::Tensor result_tensor = torch::stack(result); + + return 0; +} diff --git a/test/torchscripts/PQ/PQ.py b/test/torchscripts/PQ/PQ.py new file mode 100644 index 00000000..3747667f --- /dev/null +++ b/test/torchscripts/PQ/PQ.py @@ -0,0 +1,239 @@ +import torch + +import time + + +def kmeans(X, K, max_iters=100): + N, D = X.shape + + # Randomly initialize centroids + centroids = X[torch.randperm(N)[:K]] + + for _ in range(max_iters): + # Calculate distances between data points and centroids + distances = torch.cdist(X, centroids) + + # Assign data points to the nearest centroid + labels = torch.argmin(distances, dim=1) + + # Update centroids + for k in range(K): + if torch.sum(labels == k) > 0: + centroids[k] = torch.mean(X[labels == k], dim=0) + + return centroids, labels + + +class MyModule(torch.nn.Module): + def __init__(self, prototypes): + super(MyModule, self).__init__() + # self.fc = torch.nn.Linear(10, 5) + self.prototypes = torch.nn.Parameter(prototypes) + self.QA = torch.nn.Parameter(torch.rand(5, 5)) + # self.register_parameter("prototypes", self.prototypes) + + def forward(self, A: torch.Tensor): + return torch.matmul(A, A.T) + torch.sum(self.prototypes[0]) + torch.sum(self.QA) + + +def save_model(model, path, X): + tx = X.to('cpu') + # tx=X + model2 = model.to('cpu') + # model2=model + # model2.eval() + X = torch.tensor([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0]) + + traced_model = torch.jit.script(model2) + ru = traced_model(tx) + + traced_model.save(path) + + +def main(): + learning = True + + N = 200 + D = 100 + M = 200 + + A = torch.rand(N, D) + B = torch.rand(D, M) + + trainingSet = None + if learning: + num_matrices = 10 + matrices = [torch.rand(N, D) for _ in range(num_matrices)] + trainingSet = torch.cat(matrices, dim=1) + + # Number of subspaces + C = 10 + + # Number of prototypes per subspace + K = 16 + + # Calculate dimension of each subspace + D_c = D // C + + # Initialize a list to hold prototypes for each subspace + prototypes = [] + + if trainingSet != None: + print("Starting prototypes learning on training set size of " + + str(trainingSet.shape[0]) + ", " + str(trainingSet.shape[1])) + t = time.time() + + for c in range(C): + # Get the indices for this subspace + subspace_indices = range(c * D_c, (c + 1) * D_c) + + # Slice the matrix A to get the subspace + A_subspace = trainingSet[:, subspace_indices] + + # Convert to numpy for KMeans + A_subspace_np = A_subspace.detach().numpy() + + # Run KMeans on the subspace + centroids_torch, LB = kmeans(A_subspace, K, 10) + + # Get the centroids (prototypes) + # centroids = kmeans.cluster_centers_ + + # Convert back to PyTorch tensor + # centroids_torch = torch.from_numpy(centroids) + + # Append to the list of prototypes + prototypes.append(centroids_torch) + + # Now prototypes[c] gives the K prototypes for subspace c + + print("\nPrototype Learning: " + str(time.time() - t) + "s") + model = MyModule(torch.stack(prototypes)) + save_model(model.to('cpu'), "prototypes.pt", torch.zeros(5, 5)) + # model.save_model("prototypes.pt") + # torch.save(prototypes, 'prototypes.pt') + + else: + print("Loading prototypes from serialized pickle file\n") + prototypes = torch.load('prototypes.pt') + + # Initialize an empty list to store the encoded rows of A + A_encoded = [] + + total = time.time() + + for a in A: + # Initialize an empty list to store the encodings for this row + a_encoded = [] + + for c in range(C): + # Get the prototypes for this subspace + prototypes_c = prototypes[c] + + # Get the subvector for this subspace + a_subvector = a[c * D_c: (c + 1) * D_c] + + # Calculate the distances from the subvector to each prototype + distances = torch.norm(prototypes_c - a_subvector, dim=1) + + # Find the index of the closest prototype + closest_prototype_index = torch.argmin(distances) + + # Append this index to the encoded row + a_encoded.append(closest_prototype_index) + + # Convert the list of encoded subvectors to a PyTorch tensor + a_encoded_tensor = torch.tensor(a_encoded) + + # Append this encoded row to the list of all encoded rows + A_encoded.append(a_encoded_tensor) + + # Convert the list of all encoded rows to a PyTorch tensor + A_encoded_tensor = torch.stack(A_encoded) + + # Now A_encoded_tensor is the encoded version of A + + print("Encoding Function: " + str(time.time() - total) + "s") + + # Assume that B is a PyTorch tensor of size D x M + + # Initialize a list to store the tables for each subspace + tables = [] + + t = time.time() + + for c in range(C): + # Get the prototypes for this subspace + prototypes_c = prototypes[c] + + # Slice B to get the corresponding subspace + B_subspace = B[c * D_c: (c + 1) * D_c, :] + + # Initialize an empty list to store the table for this subspace + table_c = [] + + for prototype in prototypes_c: + # Calculate the dot product of the prototype with each column in B_subspace + dot_products = torch.matmul(prototype, B_subspace) + + # Append the dot products to the table for this subspace + table_c.append(dot_products) + + # Convert the table for this subspace to a PyTorch tensor + table_c_tensor = torch.stack(table_c) + + # Append the table for this subspace to the list of all tables + tables.append(table_c_tensor) + + # Now tables[c] gives the lookup table for subspace c + + print("Table Construction: " + str(time.time() - t) + "s") + + # Initialize a list to store the result of the approximated matrix product + result = [] + + t = time.time() + + # Iterate over the encoded rows of A + for a_encoded in A_encoded_tensor: + # Initialize a tensor to store the sum of the dot products for this row + row_sum = torch.zeros(B.size(1)) + + # Iterate over each subspace + for c in range(C): + # Get the index of the closest prototype for this subspace + prototype_index = a_encoded[c].item() + + # Get the lookup table for this subspace + table_c = tables[c] + + # Get the dot products for the closest prototype + dot_products = table_c[prototype_index] + + # Add these dot products to the sum for this row + row_sum += dot_products + + # Append the sum for this row to the list of all rows + result.append(row_sum) + + # Convert the list of all rows to a PyTorch tensor + result_tensor = torch.stack(result) + + print("Aggregation: " + str(time.time() - t) + "s") + print("\nTotal: " + str(time.time() - total) + "s") + + # Now result_tensor is the approximated matrix product + print("\nApproximate Result") + print(result_tensor) + + print("\nExact Result") + t = time.time() + eResult = torch.matmul(A, B) + print("Exact time: " + str(time.time() - t) + "s") + print(eResult) + print("\nerror: " + str(torch.norm(result_tensor - eResult, p='fro').item())) + print(len(prototypes), torch.stack(prototypes).size()) + + +if __name__ == '__main__': + main() diff --git a/test/torchscripts/PQ/prototypes.pt b/test/torchscripts/PQ/prototypes.pt new file mode 100644 index 00000000..9661f33f Binary files /dev/null and b/test/torchscripts/PQ/prototypes.pt differ diff --git a/test/torchscripts/SRHT.pt b/test/torchscripts/SRHT.pt new file mode 100644 index 00000000..970df099 Binary files /dev/null and b/test/torchscripts/SRHT.pt differ diff --git a/test/torchscripts/SRHT.py b/test/torchscripts/SRHT.py new file mode 100644 index 00000000..df271b0c --- /dev/null +++ b/test/torchscripts/SRHT.py @@ -0,0 +1,64 @@ +import torch +import time + +@torch.jit.script +def SRHT(A: torch.Tensor, B: torch.Tensor, m: int): + # Get the dimension of A + A = A.t() + assert A.shape[0] == B.shape[0] + n = A.shape[0] + + # a diagonal matrix D with entries either -1 or 1 + diag_elements = torch.randint(2, (n,), dtype=torch.float32) * 2 - 1 + D = torch.diag(diag_elements) + + # unnormalized Hadamard transform matrix H + l = int(2 ** int(torch.ceil(torch.log2(torch.tensor(n))))) + H = torch.empty(l, l) + + for i in range(l): + for j in range(l): + H[i, j] = (-1) ** (bin(i & j).count('1') % 2) + H = H[:n, :n] + + # Random subsampling matrix S + S = torch.zeros((m, n)) + for i in range(m): + idx = torch.randint(n, (1,)).item() + S[i, int(idx)] = 1 + + Pi = (1 / torch.sqrt(torch.tensor(m).float())) * torch.matmul(torch.matmul(S, H), D) + A_transform = torch.matmul(Pi, A) + B_transform = torch.matmul(Pi, B) + return torch.matmul(A_transform.t(), B_transform) + +def main(): + + width = 500 + A = torch.rand(1000, width) + B = torch.rand(width, 1000) + + + t = time.time() + + aResult = SRHT(A, B, 100) + print("approximate: " + str(time.time() - t) + "s") + + print(aResult) + + # exact result + t = time.time() + eResult = torch.matmul(A, B) + print("\nExact: " + str(time.time() - t) + "s") + + print(eResult) + + difference = aResult - eResult + print("\nFrobenius norm error: " + str(torch.linalg.norm(difference, ord='fro').item())) + print("\nSpectral norm bound: " + str(torch.linalg.norm(difference, ord=2).item())) + + script = SRHT.save("SRHT.pt") + +if __name__ == '__main__': + main() + \ No newline at end of file diff --git a/test/torchscripts/VQ/columnCodeBookX.txt b/test/torchscripts/VQ/columnCodeBookX.txt new file mode 100644 index 00000000..ce24dd85 --- /dev/null +++ b/test/torchscripts/VQ/columnCodeBookX.txt @@ -0,0 +1 @@ +0.79401,0.683636,0.337546,0.949712,0.993845,0.926397,0.214591,0.0646018,0.307293,0.703267,0.00292861,0.449543,0.247335,0.540073,0.99651,0.662832,0.939279,0.362235,0.933234,0.830107,0.790355,0.10754,0.377184,0.137209,0.18097,0.429345,0.118154,0.527965,0.390043,0.987062,0.333461,0.309999,0.477417,0.102914,0.283693,0.206155,0.850777,0.280155,0.616982,0.550913,0.928121,0.756739,0.13694,0.351343,0.184546,0.396572,0.378033,0.392284,0.680936,0.300261,0.238848,0.352426,0.600337,0.0600954,0.578847,0.392496,0.51948,0.480381,0.375494,0.234228,0.162886,0.460998,0.0162383,0.170324,0.730512,0.0433595,0.961543,0.0564699,0.463762,0.345949,0.277477,0.144188,0.232306,0.0776067,0.440553,0.691948,0.905107,0.125282,0.49873,0.607354,0.74193,0.678608,0.300106,0.983771,0.809794,0.601544,0.971413,0.452317,0.741327,0.000641465,0.471817,0.352782,0.387952,0.764025,0.253369,0.408361,0.556356,0.386175,0.127676,0.264219,0.425081,0.329303,0.317859,0.824768,0.50088,0.901042,0.815001,0.137764,0.705415,0.0180847,0.475032,0.210472,0.328548,0.0984842,0.502879,0.0414225,0.180186,0.755638,0.838528,0.800661,0.409427,0.728569,0.76314,0.0305668,0.601849,0.00109446,0.404442,0.310231,0.738333,0.529743,0.789898,0.520501,0.310274,0.712566,0.282201,0.846899,0.468758,0.823244,0.730761,0.200787,0.105196,0.77599,0.258303,0.479359,0.180152,0.0467079,0.859692,0.100805,0.143304,0.715089,0.32588,0.947863,0.0944071,0.201069,0.0478493,0.762758,0.538763,0.898413,0.344602,0.553529,0.669539,0.309341,0.258503,0.111432,0.913745,0.338053,0.292972,0.980586,0.0636312,0.232872,0.302674,0.483322,0.313349,0.210473,0.902342,0.51082,0.465191,0.33393,0.744633,0.234947,0.987191,0.489536,0.118712,0.41906,0.219322,0.300424,0.63488,0.273248,0.786866,0.888142,0.872117,0.973409,0.866361,0.982993,0.805244,0.803826,0.219142,0.141909,0.892553,0.740481,0.517084,0.0688239,0.552514,0.840339,0.451787,0.554083,0.826862,0.213452,0.290525,0.597605,0.973051,0.445584,0.965175,0.500139,0.189363,0.405801,0.108251,0.41995,0.672317,0.429877,0.0470076,0.781641,0.805283,0.567874,0.0239438,0.0920578,0.444228,0.154297,0.0637425,0.594278,0.513352,0.467191,0.353405,0.586105,0.980968,0.303209,0.529494,0.949147,0.511137,0.39058,0.821477,0.0807697,0.460757,0.917009,0.347832,0.777599,0.899472,0.7536,0.106997,0.297223,0.671641,0.125899,0.338931,0.459955,0.349147,0.287794,0.737449,0.741304,0.165494,0.434739,0.487515,0.395524,0.0690824,0.232868,0.288257,0.849823,0.150409,0.890556,0.280066,0.409007,0.324585,0.145224,0.257262,0.454963,0.0712802,0.0744907,0.606339,0.995261,0.976591,0.311694,0.254369,0.323563,0.0214844,0.795571,0.691193,0.310934,0.217121,0.380138,0.944781,0.0173402,0.705664,0.0905026,0.195359,0.733096,0.507438,0.731748,0.119013,0.0251074,0.106958,0.257864,0.868877,0.663232,0.396884,0.723006,0.856271,0.024171,0.930854,0.867857,0.429677,0.561579,0.624016,0.313344,0.786775,0.804097,0.830646,0.548124,0.828656,0.891907,0.353071,0.726662,0.0342807,0.164092,0.107443,0.51945,0.899246,0.607787,0.669578,0.140502,0.92616,0.856311,0.983664,0.237792,0.42038,0.90073,0.129106,0.331268,0.0836789,0.133115,0.289963,0.264101,0.779034,0.932526,0.323116,0.353056,0.483441,0.615535,0.246017,0.177953,0.790988,0.971343,0.957111,0.0139955,0.768565,0.969106,0.299834,0.883909,0.514627,0.604915,0.816736,0.884486,0.280608,0.847651,0.186969,0.757434,0.509085,0.281706,0.545064,0.917403,0.692553,0.0148526,0.614491,0.780403,0.985466,0.789614,0.986897,0.735614,0.94209,0.00456899,0.00899523,0.795387,0.952687,0.601688,0.337208,0.230346,0.187053,0.117252,0.605641,0.577379,0.0201025,0.737029,0.848736,0.844266,0.948231,0.691397,0.864476,0.0127603,0.23024,0.968695,0.315629,0.513967,0.276956,0.0555069,0.501974,0.192432,0.885717,0.763607,0.0691749,0.980939,0.946141,0.730234,0.814149,0.537021,0.467156,0.137063,0.967316,0.6915,0.308159,0.677176,0.689767,0.404853,0.230614,0.579241,0.932409,0.626183,0.694922,0.519766,0.407758,0.66041,0.960102,0.763167,0.560193,0.420293,0.200952,0.0157143,0.464932,0.26178,0.704091,0.956391,0.341765,0.230828,0.427744,0.188994,0.239647,0.955875,0.288743,0.992021,0.415458,0.874047,0.621889,0.649408,0.465066,0.337865,0.998578,0.329336,0.406483,0.113039,0.584883,0.312253,0.155156,0.836789,0.541329,0.38617,0.920511,0.662147,0.469581,0.508046,0.684145,0.398924,0.558386,0.288579,0.857659,0.0934567,0.107373,0.916171,0.200706,0.168881,0.695612,0.0527034,0.400138,0.446699,0.4828,0.740877,0.4623,0.0618043,0.592447,0.465119,0.90799,0.86814,0.959946,0.30923,0.15837,0.310982,0.295752,0.835599,0.973137,0.588158,0.239977,0.494933,0.130804,0.487862,0.914116,0.229978,0.723087,0.662719,0.80288,0.528323,0.518236,0.419605,0.763183,0.618106,0.500053,0.411905,0.0457342,0.802475,0.743067,0.0933917,0.655529,0.750012,0.364573,0.640479,0.699579,0.125254,0.776449,0.81225,0.772979,0.509872,0.334178,0.237729,0.983028,0.900506,0.0476939,0.825982,0.172561,0.214289,0.276963,0.414259,0.298542,0.908651,0.871455,0.955597,0.176905,0.674052,0.954428,0.299097,0.828045,0.971336,0.6357,0.406186,0.532512,0.879412,0.698662,0.517829,0.203173,0.934213,0.483158,0.906352,0.975982,0.232215,0.277811,0.37598,0.223675,0.858876,0.313604,0.542134,0.916018,0.617423,0.29996,0.557758,0.275029,0.00418389,0.407599,0.605395,0.712344,0.867213,0.631147,0.085112,0.931257,0.951632,0.989969,0.631369,0.779517,0.894711,0.948284,0.827972,0.997281,0.615395,0.000859737,0.33512,0.644213,0.381022,0.358838,0.871267,0.202388,0.985392,0.420042,0.428228,0.304646,0.831934,0.383427,0.904693,0.708035,0.843913,0.390273,0.651202,0.793305,0.0165247,0.523451,0.850755,0.224231,0.415448,0.538409,0.880069,0.856149,0.812317,0.604391,0.505819,0.691226,0.695837,0.171153,0.285639,0.506111,0.286398,0.0209212,0.564573,0.653594,0.158635,0.624402,0.010181,0.768958,0.486602,0.82422,0.838752,0.508867,0.889688,0.314761,0.357352,0.498748,0.893074,0.6865,0.0700148,0.419507,0.528347,0.872927,0.815265,0.147119,0.97311,0.917746,0.143557,0.110916,0.203203,0.211837,0.976923,0.44313,0.267657,0.345129,0.84318,0.780147,0.65536,0.846171,0.846054,0.700479,0.129781,0.63048,0.297053,0.202552,0.97,0.894857,0.0366493,0.713672,0.990084,0.701695,0.940209,0.343033,0.396913,0.844144,0.780188,0.0584053,0.350552,0.498385,0.948362,0.622363,0.3236,0.191493,0.810867,0.833575,0.661654,0.397662,0.604164,0.708284,0.629112,0.958696,0.839075,0.843893,0.840572,0.341271,0.90181,0.479494,0.045258,0.4443,0.0927427,0.378721,0.924955,0.99034,0.613597,0.921105,0.606853,0.396278,0.479,0.347416,0.547441,0.324464,0.632055,0.0798287,0.878777,0.505777,0.540702,0.471265,0.825563,0.0131946,0.713906,0.11149,0.842349,0.177945,0.770564,0.219905,0.527991,0.983119,0.439373,0.0800002,0.403187,0.629416,0.774402,0.410713,0.789483,0.0752528,0.215047,0.568902,0.993434,0.561182,0.507363,0.682972,0.168525,0.495875,0.714787,0.566192,0.918789,0.45588,0.050694,0.464657,0.484962,0.125138,0.061635,0.581885,0.107476,0.303238,0.559304,0.304545,0.435502,0.212278,0.544339,0.836109,0.371953,0.387544,0.590971,0.339718,0.94789,0.234128,0.55313,0.399336,0.346686,0.616081,0.60918,0.488187,0.322314,0.724075,0.904993,0.765135,0.515976,0.763524,0.515401,0.986781,0.969822,0.00920731,0.734921,0.578283,0.522786,0.873901,0.970997,0.0706299,0.931547,0.119708,0.67258,0.636621,0.955396,0.556165,0.30421,0.738071,0.569874,0.579836,0.020236,0.360691,0.477527,0.996148,0.211487,0.39944,0.0597475,0.925954,0.731808,0.214449,0.297956,0.775528,0.170008,0.936502,0.650751,0.563927,0.510681,0.156009,0.231806,0.011059,0.79982,0.378627,0.332878,0.906607,0.532893,0.418613,0.167313,0.850842,0.265129,0.156842,0.126096,0.89891,0.912099,0.0803427,0.20044,0.00939363,0.677105,0.283367,0.240659,0.5111,0.744956,0.885445,0.628127,0.995716,0.441676,0.4838,0.561741,0.255141,0.784274,0.416965,0.772951,0.681795,0.917696,0.605048,0.769159,0.125893,0.121536,0.790804,0.263738,0.271723,0.0637929,0.0660163,0.742712,0.473455,0.218646,0.104871,0.115013,0.632291,0.487145,0.135488,0.318436,0.323192,0.371519,0.775113,0.297438,0.957936,0.21153,0.403825,0.792912,0.212722,0.607879,0.167353,0.767757,0.531405,0.065226,0.807137,0.17529,0.723553,0.847331,0.322423,0.830966,0.66755,0.303995,0.692592,0.413176,0.55165,0.396532,0.732363,0.0652878,0.888721,0.216935,0.634806,0.983072,0.546829,0.487981,0.180434,0.712394,0.720083,0.224422,0.701228,0.279948,0.481745,0.463683,0.425284,0.365302,0.525003,0.890695,0.453807,0.582411,0.639182,0.602078,0.49472,0.580612,0.0302277,0.883165,0.0965929,0.364392,0.786794,0.380793,0.810377,0.660068,0.194415,0.695389,0.133911,0.266623,0.222538,0.896217,0.444688,0.463018,0.0392283,0.312392,0.76537,0.939571,0.140903,0.88559,0.217294,0.804656,0.999942,0.941949,0.387314,0.225186,0.65322,0.0737438,0.223308,0.640045,0.442886,0.458418,0.234246,0.491108,0.178419,0.190062,0.609407,0.732956,0.515206,0.875898,0.693591,0.38786,0.703194,0.964442,0.458808,0.796897,0.403792,0.313479,0.988969,0.540581,0.74056,0.404747,0.197073,0.724115,0.567424,0.171276,0.0109915,0.752509,0.325447,0.342038,0.140062,0.650607,0.521276,0.651262,0.378232,0.388693,0.365989,0.858456,0.113626,0.350263,0.401332,0.452372,0.01555,0.501885,0.64954,0.374164,|0.974213,0.373692,0.0952176,0.794736,0.594981,0.499775,0.497404,0.325807,0.76394,0.799815,0.581422,0.00432122,0.713012,0.936665,0.664951,0.693579,0.31086,0.130709,0.00168979,0.723875,0.479664,0.762238,0.682496,0.560649,0.644189,0.360377,0.926618,0.771332,0.923239,0.765618,0.129019,0.743333,0.621307,0.788996,0.7355,0.0183541,0.835602,0.395124,0.480896,0.892336,0.281699,0.797637,0.0331194,0.682564,0.671656,0.592817,0.0559371,0.597114,0.511995,0.772885,0.0100105,0.512222,0.995094,0.553066,0.477442,0.258886,0.0947533,0.260533,0.173249,0.579454,0.341589,0.812261,0.700242,0.02882,0.72945,0.499444,0.386518,0.221887,0.182702,0.758371,0.965865,0.120382,0.835008,0.435667,0.91638,0.165359,0.592378,0.742444,0.406067,0.216955,0.723676,0.565842,0.939231,0.890254,0.748801,0.388265,0.690998,0.134166,0.208514,0.624208,0.225674,0.506908,0.67272,0.60854,0.466784,0.805222,0.474047,0.47533,0.478977,0.821561,0.841464,0.853466,0.502957,0.894277,0.269736,0.382352,0.917814,0.762416,0.694596,0.756449,0.992638,0.414865,0.672236,0.767424,0.995904,0.88792,0.39757,0.199086,0.681906,0.823552,0.760328,0.966713,0.485176,0.955804,0.368,0.957876,0.540025,0.331854,0.730338,0.107845,0.553765,0.507594,0.391216,0.213219,0.265859,0.946623,0.485224,0.690028,0.980339,0.556173,0.825647,0.996886,0.0338864,0.308269,0.841518,0.612346,0.991769,0.0858367,0.953878,0.980819,0.331749,0.8132,0.880321,0.518519,0.147751,0.297828,0.382857,0.445837,0.321267,0.155719,0.0916166,0.378005,0.499085,0.105922,0.732693,0.00853479,0.827136,0.872767,0.0675955,0.175219,0.13574,0.878744,0.18358,0.685349,0.933336,0.812898,0.4871,0.43352,0.0337074,0.76631,0.726314,0.00937289,0.903573,0.927884,0.248172,0.757659,0.054814,0.626124,0.242003,0.443821,0.375756,0.011087,0.14776,0.0607884,0.416135,0.451699,0.825915,0.553194,0.816377,0.247216,0.383354,0.00250995,0.0150738,0.951741,0.464059,0.176035,0.492543,0.960849,0.318805,0.53123,0.771281,0.990321,0.591032,0.454914,0.202951,0.328738,0.493742,0.256476,0.963369,0.880629,0.779024,0.738971,0.490888,0.528629,0.891022,0.96193,0.348481,0.324521,0.463132,0.295144,0.291029,0.930378,0.0935943,0.899591,0.929902,0.611449,0.372645,0.374783,0.169845,0.477176,0.425476,0.419314,0.812257,0.427351,0.209283,0.741011,0.273457,0.694032,0.986312,0.792084,0.625189,0.791875,0.794297,0.405156,0.442737,0.79216,0.602222,0.381825,0.331989,0.160533,0.407098,0.737099,0.0712522,0.278585,0.00718665,0.72851,0.822414,0.273112,0.721972,0.105855,0.765268,0.292597,0.314406,0.0425293,0.13063,0.850139,0.82189,0.0919729,0.199314,0.81067,0.927853,0.616191,0.806259,0.661525,0.937215,0.996055,0.983031,0.800717,0.575793,0.139355,0.0375407,0.256725,0.0150481,0.308139,0.880228,0.12575,0.0376266,0.184923,0.389142,0.55975,0.586308,0.39051,0.584782,0.896438,0.704043,0.820948,0.530321,0.907253,0.958544,0.342675,0.00664538,0.525877,0.723045,0.591468,0.831971,0.0946436,0.985152,0.483288,0.525258,0.792403,0.423676,0.0455599,0.289185,0.961242,0.428144,0.176903,0.776598,0.986203,0.266154,0.480421,0.995485,0.629882,0.682915,0.680286,0.392931,0.186202,0.857135,0.0241763,0.545716,0.623541,0.913146,0.189428,0.713577,0.491583,0.304217,0.29275,0.897104,0.472887,0.317695,0.602063,0.0127579,0.521621,0.775638,0.722273,0.131477,0.928277,0.348579,0.346669,0.0389575,0.887806,0.962581,0.562294,0.307687,0.111798,0.907314,0.779488,0.416828,0.273711,0.516754,0.35817,0.611424,0.751154,0.763277,0.816714,0.756042,0.925918,0.158249,0.473418,0.843297,0.94316,0.138762,0.432813,0.119764,0.909616,0.157331,0.710049,0.760875,0.315929,0.867356,0.0909439,0.764342,0.776505,0.851343,0.558028,0.674841,0.465314,0.940191,0.690598,0.318997,0.339919,0.945771,0.136668,0.743378,0.831274,0.871326,0.637368,0.83998,0.632668,0.951152,0.722379,0.12402,0.895988,0.484235,0.967876,0.778621,0.239706,0.703755,0.807024,0.0933706,0.429666,0.0351301,0.312996,0.873146,0.678221,0.528752,0.366454,0.118559,0.220682,0.762055,0.99226,0.737162,0.0493766,0.971237,0.313047,0.111705,0.486294,0.100876,0.678381,0.997018,0.397983,0.49723,0.150819,0.172644,0.718778,0.130994,0.0433144,0.743702,0.852604,0.62595,0.840999,0.113822,0.0632306,0.558709,0.966895,0.689878,0.324208,0.0197209,0.820621,0.631769,0.76968,0.448038,0.0649396,0.408878,0.23406,0.0609438,0.919742,0.788962,0.476215,0.959696,0.969242,0.945774,0.446914,0.28113,0.422541,0.449681,0.473261,0.559663,0.441037,0.915531,0.825079,0.615593,0.646271,0.689808,0.628776,0.0204957,0.470859,0.978066,0.551977,0.218535,0.0472857,0.23977,0.203319,0.0222777,0.354163,0.399527,0.525345,0.954938,0.695563,0.0223172,0.721851,0.4267,0.522331,0.315466,0.645777,0.035731,0.182452,0.135543,0.669917,0.723523,0.477705,0.82639,0.751024,0.429441,0.659575,0.480474,0.709102,0.689168,0.561064,0.66465,0.255346,0.837779,0.76711,0.90179,0.976831,0.637314,0.938755,0.991562,0.273541,0.958343,0.77632,0.73825,0.767302,0.270936,0.279541,0.788647,0.575088,0.0181623,0.120416,0.525889,0.766127,0.884124,0.519001,0.445404,0.449973,0.890106,0.1312,0.189421,0.437163,0.966226,0.719828,0.200374,0.123216,0.300261,0.176718,0.114814,0.645797,0.904675,0.0218141,0.943368,0.328983,0.379442,0.618383,0.206223,0.900879,0.408521,0.417371,0.546284,0.0455448,0.18516,0.042016,0.133932,0.5038,0.941603,0.0506779,0.682489,0.825743,0.197054,0.700162,0.023648,0.255341,0.856208,0.601537,0.862661,0.878644,0.956762,0.694379,0.579112,0.264931,0.0431607,0.946532,0.0147781,0.37133,0.230561,0.654501,0.384086,0.794325,0.369261,0.838502,0.782957,0.748345,0.720724,0.283923,0.358674,0.275768,0.897738,0.987678,0.798667,0.152844,0.476888,0.886214,0.196888,0.186859,0.531446,0.761562,0.67563,0.987901,0.260016,0.604622,0.243786,0.227182,0.767594,0.46755,0.491113,0.675349,0.556824,0.488363,0.300177,0.45095,0.469387,0.537342,0.624059,0.501342,0.87227,0.114019,0.285757,0.219902,0.354304,0.73306,0.00670487,0.31405,0.0674831,0.680409,0.660072,0.646755,0.00663251,0.0800471,0.734521,0.831796,0.505546,0.74072,0.227446,0.485181,0.808186,0.365428,0.425335,0.804682,0.795721,0.825645,0.622683,0.467319,0.739905,0.900804,0.435113,0.127665,0.113008,0.618639,0.44696,0.0917546,0.382141,0.0588428,0.199351,0.324252,0.355728,0.849016,0.544253,0.721735,0.618236,0.0397408,0.341671,0.731847,0.720863,0.22178,0.155338,0.219971,0.830273,0.145356,0.127182,0.98458,0.330952,0.731912,0.0410171,0.29446,0.146339,0.547891,0.29084,0.20646,0.0682194,0.16924,0.367584,0.581561,0.35989,0.924981,0.43257,0.686735,0.391682,0.8479,0.343489,0.259803,0.152856,0.362774,0.412208,0.0889736,0.45538,0.117228,0.872085,0.445979,0.572122,0.637434,0.316264,0.969442,0.448194,0.287358,0.244694,0.850826,0.399042,0.0879967,0.310601,0.821263,0.312411,0.78848,0.689364,0.824188,0.507407,0.505957,0.158613,0.0435448,0.227189,0.00731742,0.678474,0.967191,0.396189,0.50648,0.974579,0.80328,0.897322,0.285595,0.18572,0.994671,0.232597,0.901259,0.774315,0.879562,0.126662,0.312671,0.516502,0.16872,0.83884,0.234456,0.892454,0.18327,0.186375,0.0612667,0.355511,0.492345,0.156233,0.822949,0.442277,0.448072,0.749829,0.508271,0.845731,0.742453,0.269794,0.245717,0.177971,0.522192,0.953015,0.203852,0.0492348,0.626292,0.937143,0.777507,0.733885,0.27897,0.955672,0.972097,0.728566,0.667049,0.0331695,0.0588487,0.197836,0.96311,0.125421,0.276511,0.859998,0.939521,0.394161,0.415728,0.549603,0.573701,0.049114,0.629626,0.121677,0.541648,0.175559,0.932352,0.870549,0.110669,0.833441,0.563253,0.25229,0.681494,0.679632,0.00876141,0.0696777,0.332709,0.381745,0.193322,0.61924,0.774078,0.574966,0.810531,0.112901,0.429537,0.582592,0.861684,0.557438,0.918234,0.656336,0.0448663,0.904056,0.458717,0.998705,0.371589,0.301271,0.793917,0.63871,0.169561,0.221918,0.393292,0.827199,0.780991,0.0542017,0.00524467,0.0593621,0.332598,0.389812,0.517819,0.355818,0.952677,0.0159923,0.161487,0.513344,0.781414,0.134531,0.931956,0.190788,0.325378,0.501519,0.198656,0.00069803,0.510229,0.291213,0.576675,0.730131,0.543856,0.851608,0.66415,0.520909,0.883772,0.620256,0.282152,0.634576,0.214493,0.938273,0.762488,0.515053,0.890258,0.791562,0.152085,0.221509,0.212704,0.988213,0.158873,0.0801008,0.896668,0.168725,0.466884,0.33377,0.241683,0.938057,0.428701,0.320977,0.403245,0.270804,0.14471,0.00518018,0.819011,0.844133,0.178284,0.779868,0.664519,0.534181,0.97865,0.050218,0.714024,0.175284,0.379539,0.151589,0.368403,0.25962,0.925917,0.877097,0.855789,0.860702,0.621913,0.315547,0.776352,0.562694,0.529071,0.310545,0.672852,0.960311,0.696747,0.691644,0.369865,0.93178,0.779608,0.30908,0.411429,0.887516,0.309573,0.168552,0.490503,0.688705,0.518647,0.55462,0.437643,0.276749,0.638822,0.294343,0.197058,0.25759,0.0968816,0.183488,0.769614,0.238004,0.169215,0.320288,0.551597,0.963429,0.462654,0.324833,0.984395,0.366757,0.360256,0.33122,0.567338,0.269338,0.655619,0.566866,0.336506,0.354947,0.291329,0.86467,0.350173,0.795444,0.0431767,0.815036,0.0507648,0.367214,0.422745,0.0383809,0.233428,0.715255,0.42759,0.662439,0.751168,0.474288,0.119399,0.880555,0.432158,0.770776,0.464692,0.219546,0.62346,0.81224,0.4502,0.394212,0.873849,0.606547,0.329081,0.517306,0.116232,0.152695,0.797793,0.302459,0.188253,0.283166,0.726146,|0.0325384,0.467192,0.160821,0.250355,0.0559083,0.0621932,0.715708,0.404888,0.522017,0.957969,0.943893,0.371894,0.975218,0.607491,0.307384,0.179744,0.844802,0.158707,0.00466818,0.158978,0.386659,0.727435,0.775175,0.750118,0.445327,0.253855,0.684249,0.923347,0.6385,0.505112,0.766732,0.86679,0.16152,0.747759,0.392896,0.743811,0.384276,0.977604,0.147253,0.528105,0.0502697,0.123234,0.120146,0.565416,0.758501,0.651599,0.616014,0.951552,0.307438,0.843622,0.296468,0.981898,0.0417815,0.585126,0.112234,0.055136,0.881841,0.948838,0.233301,0.523781,0.778351,0.555572,0.14705,0.976634,0.8707,0.477535,0.739049,0.596673,0.387087,0.603998,0.279398,0.335194,0.761594,0.620235,0.244993,0.385866,0.829177,0.0169623,0.544592,0.708168,0.331944,0.336227,0.158656,0.387744,0.841762,0.121515,0.260846,0.238644,0.777205,0.631632,0.314894,0.323285,0.285845,0.363117,0.0288931,0.180986,0.430065,0.766222,0.349575,0.572972,0.433395,0.910957,0.789099,0.109592,0.731793,0.116669,0.340656,0.340918,0.707209,0.126087,0.241622,0.804539,0.664187,0.79423,0.951538,0.87028,0.53949,0.682762,0.778802,0.337777,0.541604,0.737676,0.324213,0.202439,0.793163,0.240059,0.750999,0.792491,0.645973,0.74058,0.38866,0.0697797,0.809536,0.609895,0.730157,0.471417,0.0661302,0.303941,0.935084,0.256918,0.765638,0.392601,0.628832,0.907317,0.869131,0.684664,0.28865,0.208792,0.78995,0.525693,0.233657,0.679721,0.192414,0.278669,0.318447,0.677937,0.90337,0.894648,0.664605,0.562019,0.872476,0.600808,0.884619,0.661349,0.329361,0.310822,0.470219,0.682983,0.849303,0.550705,0.746201,0.766778,0.910857,0.0204151,0.629149,0.925256,0.939988,0.382337,0.499847,0.448065,0.713651,0.702451,0.622904,0.373892,0.793024,0.60392,0.490749,0.907158,0.554416,0.863251,0.337237,0.194047,0.721599,0.583113,0.0860459,0.905737,0.0910288,0.587481,0.377141,0.470452,0.685104,0.476426,0.546578,0.91381,0.0984527,0.738955,0.401969,0.111865,0.056631,0.365286,0.427496,0.399451,0.382021,0.517677,0.000837862,0.598202,0.43372,0.0410512,0.786499,0.278756,0.857631,0.304932,0.263305,0.21894,0.793248,0.766266,0.437607,0.805853,0.151998,0.625355,0.0629357,0.589153,0.744875,0.825563,0.679514,0.634781,0.87798,0.0727935,0.475136,0.458205,0.357742,0.338116,0.67406,0.110705,0.484845,0.525292,0.545445,0.123051,0.747812,0.425214,0.92248,0.675554,0.285905,0.669499,0.279941,0.66689,0.143696,0.809287,0.488684,0.487589,0.0110974,0.423788,0.219913,0.278642,0.082877,0.73657,0.588123,0.744633,0.555283,0.543791,0.06521,0.916847,0.679602,0.238521,0.234226,0.104463,0.368402,0.533383,0.0376831,0.817802,0.526484,0.493807,0.411045,0.858211,0.939539,0.315514,0.105239,0.821492,0.744208,0.987292,0.252726,0.0994047,0.0147541,0.57847,0.006836,0.254053,0.953547,0.406028,0.470304,0.0130035,0.213944,0.682235,0.521278,0.886081,0.568742,0.112998,0.79872,0.308743,0.081141,0.429618,0.949123,0.262979,0.618014,0.700777,0.843226,0.227835,0.0309286,0.352196,0.220576,0.282088,0.831655,0.0094943,0.843894,0.40963,0.249013,0.527698,0.891989,0.783538,0.537369,0.0480918,0.771522,0.938414,0.8994,0.4885,0.870464,0.0663541,0.73465,0.736115,0.687956,0.64754,0.503425,0.34538,0.630413,0.125515,0.84829,0.931098,0.967123,0.337736,0.864267,0.153184,0.515654,0.611328,0.667979,0.158696,0.723089,0.862102,0.645897,0.414614,0.830134,0.17933,0.115404,0.122576,0.680599,0.894756,0.320482,0.49157,0.936566,0.0952373,0.425491,0.146702,0.12104,0.935154,0.68547,0.596453,0.294858,0.735045,0.0507852,0.432798,0.0292279,0.554783,0.57207,0.2415,0.802396,0.104774,0.590316,0.102746,0.836599,0.807941,0.600357,0.318789,0.955716,0.364762,0.850551,0.803851,0.708215,0.860365,0.940923,0.733398,0.83941,0.719307,0.340594,0.151154,0.560069,0.942348,0.0339265,0.967587,0.819785,0.420675,0.556436,0.280804,0.0454116,0.00600082,0.700163,0.0172814,0.570922,0.208923,0.327612,0.424463,0.594433,0.824294,0.671984,0.463619,0.668168,0.727272,0.394769,0.835126,0.229906,0.992757,0.22066,0.624951,0.673254,0.278436,0.203546,0.881062,0.316307,0.889313,0.878984,0.0235212,0.0931872,0.997026,0.890841,0.577942,0.772856,0.790439,0.863143,0.339399,0.470788,0.925569,0.0731487,0.111759,0.711602,0.0715823,0.132106,0.391799,0.273292,0.426162,0.0317437,0.427453,0.927372,0.121342,0.330669,0.563284,0.39195,0.989478,0.0348638,0.26553,0.945121,0.138463,0.191852,0.192267,0.0438513,0.560148,0.2741,0.136454,0.498948,0.982688,0.520189,0.860142,0.327341,0.537611,0.500446,0.328464,0.113614,0.844666,0.0325069,0.631452,0.830168,0.720117,0.41934,0.577811,0.739503,0.534093,0.768094,0.140291,0.637233,0.377908,0.494102,0.246868,0.0325126,0.47264,0.421501,0.114452,0.68724,0.775679,0.593376,0.577164,0.121848,0.505577,0.604404,0.514621,0.521835,0.686436,0.215213,0.837519,0.984399,0.496344,0.863774,0.389629,0.168792,0.906928,0.150949,0.0139886,0.364098,0.519913,0.689681,0.292033,0.666715,0.624463,0.322789,0.0976662,0.178288,0.234473,0.125482,0.335526,0.539429,0.434262,0.0609683,0.699085,0.0342158,0.0711211,0.590783,0.791907,0.9768,0.968206,0.264475,0.0929732,0.220016,0.215463,0.51667,0.4682,0.81136,0.340676,0.830655,0.539583,0.55681,0.80637,0.952656,0.898966,0.929864,0.341853,0.0399556,0.374756,0.197878,0.834589,0.965889,0.870385,0.545818,0.807916,0.0612444,0.582449,0.903092,0.0985544,0.808824,0.639147,0.00745392,0.288278,0.695065,0.301435,0.858895,0.320413,0.888473,0.600729,0.0800393,0.697548,0.434499,0.958553,0.766896,0.0228397,0.00342894,0.58728,0.698481,0.0407078,0.678013,0.569422,0.885861,0.051389,0.302483,0.468664,0.136184,0.964254,0.48402,0.0980229,0.350134,0.818794,0.913355,0.199459,0.407976,0.975934,0.185666,0.441264,0.92482,0.267815,0.0472202,0.617272,0.541063,0.402691,0.791118,0.661881,0.164418,0.779862,0.356817,0.069353,0.373951,0.589839,0.354772,0.618835,0.3353,0.0905126,0.123801,0.0832282,0.582388,0.784857,0.523719,0.413453,0.0186083,0.254913,0.00153112,0.240587,0.100079,0.639747,0.655629,0.832474,0.0154605,0.216901,0.844568,0.723802,0.229043,0.616318,0.0441812,0.470235,0.864914,0.017222,0.720743,0.152352,0.202508,0.618525,0.348028,0.558747,0.798717,0.662424,0.553287,0.805067,0.432034,0.302581,0.0584051,0.181778,0.957677,0.0915224,0.867113,0.233674,0.208886,0.63014,0.281179,0.622893,0.156407,0.198111,0.589127,0.479983,0.292039,0.875637,0.977216,0.508696,0.861669,0.908555,0.717786,0.236132,0.282551,0.478697,0.601579,0.175982,0.649048,0.471878,0.874053,0.298057,0.547371,0.767744,0.337238,0.94459,0.784595,0.531081,0.34805,0.455335,0.702212,0.896294,0.854377,0.417685,0.0311999,0.70235,0.511386,0.439573,0.834049,0.218689,0.565213,0.756235,0.395321,0.225337,0.615742,0.404752,0.964787,0.47847,0.76039,0.686364,0.346777,0.977145,0.765929,0.330448,0.704621,0.100009,0.721204,0.822124,0.460292,0.425412,0.0634071,0.456185,0.06609,0.315657,0.843428,0.689071,0.0901454,0.733831,0.333277,0.403749,0.00817287,0.302611,0.0144132,0.398038,0.279246,0.0908006,0.487436,0.330954,0.875492,0.148873,0.382765,0.292993,0.0538362,0.494468,0.443398,0.413671,0.297023,0.108116,0.676925,0.807774,0.97046,0.730887,0.521538,0.822772,0.21443,0.731895,0.140374,0.494183,0.468574,0.725292,0.135966,0.336915,0.666924,0.251649,0.846987,0.182722,0.229649,0.416082,0.294448,0.869892,0.464565,0.896911,0.232004,0.452,0.872165,0.638819,0.267252,0.41003,0.721112,0.240051,0.535736,0.0022651,0.825408,0.78198,0.809581,0.859977,0.397402,0.0808043,0.913812,0.952349,0.67556,0.52008,0.102479,0.900873,0.0575726,0.424233,0.373317,0.64695,0.958359,0.910937,0.801528,0.1969,0.776516,0.462277,0.0343435,0.566829,0.59389,0.472604,0.454481,0.81276,0.6837,0.199962,0.700367,0.763109,0.0564746,0.0474777,0.872794,0.580151,0.654262,0.820462,0.0545921,0.551914,0.352911,0.549884,0.252421,0.740718,0.473192,0.103254,0.549532,0.351882,0.690117,0.0517129,0.960894,0.103519,0.378062,0.761735,0.405583,0.93239,0.855135,0.0420792,0.593845,0.34698,0.411526,0.272219,0.0174617,0.767671,0.568213,0.07917,0.752441,0.225383,0.765715,0.0630084,0.590005,0.417491,0.649305,0.171362,0.719984,0.0581624,0.234121,0.646741,0.906529,0.337855,0.668692,0.766602,0.0487054,0.322676,0.811381,0.669638,0.285058,0.760076,0.731474,0.625635,0.258416,0.232515,0.240272,0.824243,0.675595,0.909797,0.189842,0.491003,0.953873,0.271701,0.723638,0.0977669,0.18978,0.656689,0.655649,0.936472,0.664149,0.705162,0.0143128,0.465935,0.604601,0.106356,0.125543,0.537007,0.94966,0.684766,0.793235,0.941023,0.037571,0.903346,0.346471,0.655619,0.551745,0.88497,0.0145914,0.852198,0.209196,0.593296,0.835357,0.848384,0.153272,0.967703,0.534482,0.643269,0.488153,0.368424,0.895621,0.974498,0.524667,0.351213,0.606076,0.00291634,0.304559,0.040282,0.135657,0.55592,0.405476,0.246345,0.0558686,0.968904,0.741219,0.244981,0.277945,0.409363,0.80942,0.460572,0.628964,0.514174,0.658057,0.806133,0.930445,0.76035,0.394561,0.921116,0.334492,0.664867,0.130368,0.560738,0.465047,0.960846,0.531797,0.00997567,0.238241,0.0241195,0.938664,0.779283,0.783518,0.647649,0.843265,0.87448,0.0808325,0.946855,0.590963,0.473325,0.556344,0.710485,0.994819,0.946216,0.149173,0.420744,0.271722,0.478466,0.677823,0.780798,0.614888,0.329292,0.172134,0.771933,0.941027,0.137404,0.776097,0.193834,0.631536,0.10891,0.273068,0.217449,|0.926971,0.191477,0.263125,0.168722,0.087709,0.783955,0.412611,0.40302,0.24125,0.968265,0.692549,0.42915,0.136627,0.204472,0.231956,0.734268,0.554885,0.768444,0.681181,0.820064,0.270626,0.107755,0.552961,0.372064,0.230014,0.45312,0.486678,0.197333,0.922221,0.943678,0.0172959,0.500803,0.643299,0.246221,0.779625,0.27663,0.154635,0.711516,0.646616,0.801533,0.303569,0.415555,0.676464,0.927831,0.966661,0.249846,0.778543,0.397183,0.44679,0.884692,0.979888,0.846448,0.869297,0.21628,0.878483,0.789417,0.701979,0.129037,0.33208,0.14344,0.927453,0.0737429,0.224721,0.572353,0.587808,0.632942,0.0351246,0.768192,0.902363,0.260596,0.628133,0.613519,0.045527,0.0774637,0.334929,0.774185,0.324498,0.257924,0.393743,0.162329,0.849397,0.0560618,0.361585,0.892696,0.728315,0.0589702,0.843939,0.273955,0.411722,0.428191,0.111443,0.576265,0.134376,0.223564,0.314169,0.195222,0.468935,0.0124905,0.683647,0.527818,0.209842,0.17607,0.284378,0.141059,0.210547,0.0378715,0.078254,0.426232,0.806999,0.551634,0.823332,0.266417,0.993447,0.478669,0.361288,0.563161,0.348366,0.0344308,0.185383,0.442297,0.570444,0.87794,0.45798,0.947608,0.312782,0.666662,0.56836,0.357371,0.369468,0.845597,0.946603,0.271649,0.233586,0.81199,0.43276,0.55275,0.637494,0.354166,0.278319,0.0863198,0.834423,0.59403,0.018136,0.561019,0.229301,0.523329,0.0157834,0.0477928,0.791151,0.324878,0.95015,0.893981,0.567038,0.806284,0.523767,0.290316,0.141274,0.891554,0.482367,0.141865,0.12904,0.934605,0.242969,0.13128,0.317454,0.580156,0.157094,0.608302,0.992059,0.489422,0.342333,0.92788,0.353662,0.539158,0.0128824,0.71813,0.672259,0.786726,0.278375,0.765102,0.670392,0.104696,0.868813,0.303088,0.375898,0.982779,0.0137148,0.196957,0.572922,0.299564,0.321903,0.898918,0.927457,0.0942796,0.696649,0.238554,0.0975389,0.962868,0.014266,0.978032,0.96121,0.480676,0.503074,0.49193,0.368331,0.71685,0.50244,0.591735,0.0702827,0.874039,0.191385,0.0991458,0.208627,0.623272,0.826056,0.186232,0.73294,0.656451,0.724996,0.0818446,0.452576,0.13724,0.982773,0.482118,0.761074,0.544108,0.263051,0.0932691,0.473461,0.724908,0.417528,0.206425,0.666984,0.496092,0.893579,0.375599,0.136788,0.20122,0.732154,0.458634,0.772555,0.991669,0.236585,0.0464343,0.847097,0.35884,0.753156,0.348902,0.0634741,0.931397,0.180873,0.28089,0.135974,0.373517,0.475074,0.88334,0.767253,0.413598,0.0610013,0.475527,0.971254,0.283296,0.527251,0.475037,0.773447,0.923236,0.107871,0.183154,0.2155,0.404695,0.793837,0.493687,0.0424545,0.290933,0.0374686,0.464721,0.725228,0.0505362,0.895944,0.66629,0.553632,0.961415,0.0132895,0.27194,0.930147,0.598209,0.176718,0.217407,0.300677,0.179189,0.378343,0.222227,0.945466,0.024186,0.777403,0.626048,0.885793,0.533762,0.0929127,0.257382,0.572162,0.0358205,0.306422,0.702845,0.529185,0.0179254,0.691371,0.256134,0.195257,0.379428,0.51706,0.480706,0.790174,0.116042,0.40657,0.603511,0.472007,0.98604,0.176302,0.921609,0.0501574,0.298594,0.0692058,0.829489,0.378542,0.501137,0.578529,0.836491,0.77698,0.0985227,0.57336,0.110791,0.785122,0.176109,0.0125548,0.776795,0.721649,0.357338,0.898693,0.798842,0.706516,0.216062,0.288736,0.902384,0.208273,0.364985,0.341512,0.968686,0.879265,0.821388,0.249912,0.289393,0.644896,0.214584,0.347626,0.727541,0.681171,0.492866,0.293915,0.15424,0.575246,0.00121599,0.463644,0.74346,0.418567,0.341299,0.535045,0.768505,0.101942,0.643702,0.922522,0.611357,0.174781,0.977195,0.866158,0.661146,0.183724,0.294459,0.130362,0.862766,0.219449,0.176324,0.444035,0.404723,0.590927,0.90992,0.034797,0.274281,0.532694,0.811516,0.800521,0.955647,0.464196,0.0559205,0.742096,0.323971,0.163541,0.552027,0.372448,0.593791,0.757188,0.125323,0.511319,0.621,0.24215,0.201997,0.441158,0.907515,0.890312,0.558909,0.503068,0.715382,0.993198,0.359059,0.652117,0.472915,0.896829,0.168875,0.862463,0.768222,0.096679,0.861716,0.218127,0.840558,0.469451,0.285466,0.972405,0.397568,0.766712,0.22993,0.377261,0.336955,0.870936,0.0241496,0.323311,0.527935,0.414435,0.900729,0.854564,0.419275,0.0991347,0.00426626,0.247141,0.545703,0.419832,0.137312,0.122883,0.852694,0.498021,0.98319,0.255675,0.932581,0.721967,0.307124,0.648319,0.49742,0.264284,0.655341,0.140777,0.578153,0.731452,0.893019,0.103325,0.274995,0.101931,0.781676,0.41248,0.0967808,0.254978,0.766763,0.332855,0.705554,0.613448,0.711149,0.605436,0.076225,0.106904,0.0890483,0.0866625,0.50939,0.565712,0.771241,0.414432,0.936634,0.321074,0.880065,0.180216,0.324184,0.368899,0.901953,0.839837,0.117661,0.585113,0.100062,0.281872,0.336466,0.157689,0.258758,0.906191,0.888159,0.328666,0.834207,0.240389,0.625642,0.366208,0.55348,0.742822,0.681558,0.642853,0.709359,0.676004,0.85351,0.947084,0.174894,0.309396,0.0203156,0.447491,0.916604,0.777645,0.325035,0.974096,0.0382029,0.0217463,0.169138,0.975851,0.707356,0.760341,0.34846,0.459917,0.175363,0.481587,0.912856,0.0235013,0.656663,0.983111,0.328228,0.675958,0.719881,0.627486,0.730318,0.710217,0.701086,0.250513,0.776904,0.122404,0.655699,0.202665,0.779036,0.542623,0.138475,0.00344473,0.650919,0.776856,0.968731,0.300929,0.00940996,0.832512,0.492641,0.182417,0.967585,0.115769,0.766185,0.24443,0.948471,0.136547,0.108563,0.535874,0.341057,0.417317,0.408929,0.617999,0.900257,0.842069,0.283926,0.0291198,0.768013,0.241953,0.400872,0.325405,0.702386,0.374606,0.992199,0.119528,0.237367,0.385233,0.745657,0.620855,0.518517,0.323362,0.168707,0.821542,0.0797852,0.865877,0.27664,0.0301381,0.625577,0.168687,0.691228,0.245081,0.602252,0.194166,0.171096,0.311241,0.915208,0.185094,0.0129308,0.558349,0.688588,0.417363,0.639163,0.214308,0.745016,0.234496,0.216883,0.929972,0.0134872,0.373835,0.187292,0.929911,0.98367,0.468201,0.407625,0.572313,0.106969,0.605468,0.57903,0.370403,0.576204,0.955806,0.603332,0.337067,0.704149,0.581797,0.549761,0.61546,0.739637,0.178435,0.14117,0.065257,0.650433,0.23994,0.303037,0.505391,0.0509937,0.184383,0.820902,0.68679,0.626658,0.0177262,0.432956,0.0726323,0.732846,0.710743,0.689895,0.83091,0.662741,0.895622,0.512211,0.916856,0.811776,0.231122,0.277548,0.992753,0.146362,0.984151,0.448533,0.603803,0.989,0.580409,0.498891,0.852194,0.419569,0.17958,0.911278,0.486753,0.778527,0.321302,0.183756,0.539699,0.795385,0.289753,0.67747,0.814961,0.466437,0.273899,0.135921,0.800361,0.123698,0.677111,0.377305,0.926883,0.730428,0.968637,0.338927,0.480108,0.0362337,0.489026,0.380265,0.854616,0.0349021,0.0869342,0.847022,0.67314,0.793611,0.910244,0.552913,0.0618461,0.843185,0.488639,0.60951,0.0202531,0.692804,0.993838,0.273082,0.32399,0.511453,0.304651,0.926404,0.351501,0.956409,0.166218,0.487375,0.480384,0.490778,0.604012,0.246749,0.590852,0.94081,0.912235,0.762391,0.321921,0.496704,0.51399,0.414613,0.871827,0.0465521,0.40945,0.404158,0.409795,0.542376,0.982437,0.745583,0.433718,0.693487,0.634048,0.262638,0.670186,0.295155,0.441148,0.989528,0.250999,0.595333,0.20989,0.53214,0.458299,0.695515,0.0191842,0.958113,0.0702289,0.348222,0.354878,0.849213,0.951169,0.866169,0.591535,0.280107,0.995575,0.89413,0.406958,0.508417,0.696641,0.388416,0.929579,0.209021,0.615974,0.472914,0.19147,0.101847,0.402672,0.974168,0.416515,0.495068,0.598434,0.787501,0.38629,0.0600355,0.158602,0.250249,0.755011,0.820433,0.365649,0.718196,0.867265,0.262094,0.0619296,0.612726,0.49687,0.719338,0.752751,0.823017,0.444725,0.497548,0.852198,0.74731,0.788904,0.450604,0.626493,0.960456,0.042013,0.843186,0.802067,0.760476,0.56207,0.144539,0.725887,0.0167009,0.933742,0.721187,0.4811,0.202488,0.625204,0.96346,0.0499114,0.955624,0.46867,0.0552008,0.706851,0.4935,0.23378,0.890919,0.25248,0.0658137,0.298393,0.555635,0.276288,0.324026,0.0222787,0.537638,0.201832,0.347922,0.70233,0.220679,0.81014,0.143619,0.576261,0.453087,0.802555,0.198416,0.604307,0.207647,0.47683,0.685296,0.318819,0.401089,0.947434,0.593365,0.746571,0.944482,0.107182,0.084692,0.82553,0.821662,0.290417,0.200469,0.704701,0.0569633,0.615639,0.944846,0.663484,0.517242,0.375189,0.193611,0.34886,0.789151,0.059136,0.383465,0.866978,0.46723,0.779452,0.100878,0.167575,0.644922,0.020651,0.281994,0.402489,0.0259939,0.480692,0.502064,0.36707,0.749716,0.665779,0.886539,0.144349,0.0856845,0.181215,0.87622,0.404198,0.176794,0.424044,0.546362,0.302127,0.280104,0.406671,0.164403,0.533605,0.413508,0.951985,0.439019,0.808571,0.603461,0.286622,0.112465,0.93752,0.985906,0.816294,0.0515802,0.352103,0.589334,0.740158,0.775191,0.138602,0.493287,0.345674,0.92338,0.243247,0.637691,0.916832,0.92745,0.0670986,0.588219,0.00896037,0.0307783,0.517501,0.514026,0.216188,0.788,0.561073,0.8757,0.348462,0.452363,0.996807,0.695765,0.249257,0.359176,0.286222,0.352603,0.620854,0.197703,0.756603,0.660304,0.0539238,0.531698,0.490227,0.268446,0.805377,0.10404,0.31136,0.960076,0.90629,0.944092,0.632095,0.492242,0.783494,0.683653,0.603354,0.355582,0.694521,0.11696,0.828289,0.637132,0.642022,0.169994,0.0836142,0.588989,0.00436217,0.620463,0.444516,0.23068,0.292794,0.5761,0.735866,0.769972,0.598988,0.132453,0.0622973,0.560256,0.860088,0.28684,0.841439,0.937858,0.822747,0.802772,0.101672,0.351834,0.428799,0.481903,0.00773329,0.0736668,0.926078,0.483388,|0.0394543,0.348695,0.374315,0.260729,0.516028,0.191317,0.833865,0.946693,0.47485,0.665289,0.540098,0.722751,0.374863,0.471253,0.191182,0.00766319,0.762848,0.751891,0.75141,0.148081,0.592846,0.893951,0.998578,0.678726,0.712879,0.593426,0.647364,0.452741,0.295376,0.253168,0.864214,0.369488,0.134655,0.239194,0.00276595,0.83976,0.530951,0.388709,0.677472,0.0616326,0.353745,0.770076,0.523578,0.616663,0.768221,0.723751,0.704602,0.725594,0.663269,0.0314366,0.148586,0.0254828,0.610204,0.492028,0.135988,0.867617,0.519606,0.322461,0.334351,0.00889856,0.456351,0.0867706,0.370304,0.28479,0.819077,0.0641221,0.304198,0.0814053,0.488062,0.997855,0.778882,0.855304,0.150697,0.719775,0.0174255,0.268683,0.177721,0.651876,0.635963,0.291583,0.188017,0.664697,0.470306,0.0288305,0.0153974,0.618668,0.261653,0.228739,0.900033,0.0513162,0.91764,0.465179,0.978343,0.848815,0.78629,0.38047,0.552558,0.054188,0.0280977,0.576579,0.788064,0.124734,0.0274677,0.946697,0.887998,0.91149,0.0932866,0.634676,0.756757,0.0649737,0.987224,0.212483,0.625583,0.350197,0.276226,0.792785,0.198306,0.382302,0.583221,0.289463,0.242508,0.442199,0.694019,0.43688,0.399885,0.775727,0.40646,0.676364,0.453418,0.0942324,0.84612,0.595646,0.577809,0.634695,0.205818,0.921511,0.747816,0.156158,0.338036,0.0402733,0.831073,0.145119,0.447964,0.875723,0.670606,0.00824094,0.512943,0.817179,0.30657,0.129413,0.490315,0.00062114,0.854839,0.298596,0.306972,0.612984,0.156408,0.409824,0.445454,0.0960837,0.677487,0.520046,0.941806,0.478115,0.250187,0.00758314,0.54286,0.19944,0.766358,0.087436,0.063006,0.151028,0.449367,0.570189,0.145009,0.845975,0.0881087,0.216173,0.489326,0.409169,0.831331,0.1002,0.761383,0.534542,0.429982,0.741634,0.124642,0.904448,0.979606,0.723014,0.202997,0.426587,0.911905,0.236609,0.968103,0.206586,0.597222,0.596869,0.987602,0.243888,0.347541,0.691508,0.776092,0.452911,0.883386,0.270565,0.374615,0.357825,0.910386,0.477848,0.735427,0.621723,0.0589754,0.589139,0.889983,0.461142,0.705994,0.887365,0.24488,0.212373,0.302361,0.563604,0.739095,0.271191,0.279629,0.36071,0.130428,0.664746,0.427473,0.175598,0.267748,0.883437,0.886727,0.950446,0.439367,0.654732,0.0697955,0.834526,0.133334,0.596696,0.828306,0.892305,0.875324,0.110051,0.548256,0.175486,0.309262,0.75484,0.821596,0.565076,0.783962,0.93223,0.276612,0.272576,0.45415,0.797386,0.422582,0.0949278,0.92728,0.190534,0.455456,0.213399,0.210301,0.346358,0.515709,0.600035,0.128938,0.576932,0.909841,0.8782,0.31298,0.129136,0.104348,0.569499,0.796161,0.136729,0.796292,0.687621,0.460158,0.673142,0.40183,0.318486,0.704616,0.150531,0.67167,0.137109,0.4455,0.231673,0.324962,0.830611,0.360299,0.221893,0.0533247,0.0789543,0.237486,0.117777,0.17595,0.230009,0.860163,0.0554739,0.295205,0.720902,0.652844,0.330828,0.712337,0.692062,0.690481,0.93872,0.50708,0.895502,0.992776,0.122509,0.272801,0.191789,0.687482,0.766311,0.900606,0.612797,0.0102516,0.409688,0.904073,0.767602,0.507771,0.0330713,0.97861,0.535993,0.522901,0.789694,0.841424,0.202985,0.884746,0.929713,0.818089,0.800048,0.31034,0.290398,0.653557,0.476292,0.343431,0.258081,0.31937,0.880792,0.117105,0.957853,0.443203,0.9833,0.00908756,0.269725,0.642846,0.330925,0.651953,0.72374,0.66093,0.405133,0.211493,0.1097,0.555616,0.170722,0.74529,0.897235,0.42261,0.0394613,0.879658,0.974521,0.845179,0.768374,0.571954,0.653318,0.354996,0.0293208,0.64576,0.562402,0.481709,0.991491,0.1339,0.560567,0.237171,0.442367,0.886883,0.410731,0.528063,0.940412,0.532842,0.00609952,0.382238,0.870383,0.0159756,0.948589,0.176043,0.921883,0.0142707,0.360287,0.968127,0.062681,0.912526,0.0675981,0.821585,0.803964,0.425021,0.74067,0.879864,0.997777,0.539399,0.646775,0.25447,0.750745,0.917908,0.889135,0.0381745,0.333483,0.936105,0.329303,0.224226,0.0292529,0.260808,0.0583294,0.442047,0.356518,0.232707,0.245921,0.329853,0.985566,0.230864,0.456951,0.159911,0.64434,0.418763,0.0775205,0.264875,0.32553,0.57333,0.61649,0.196998,0.823977,0.312469,0.641458,0.579692,0.637829,0.682831,0.716793,0.911798,0.156844,0.320605,0.162722,0.892764,0.257202,0.293584,0.869301,0.80537,0.304562,0.691828,0.963992,0.226758,0.789556,0.441101,0.48359,0.572959,0.236852,0.832898,0.227986,0.968344,0.496785,0.543351,0.137931,0.0787539,0.477104,0.351507,0.680689,0.0227038,0.77485,0.294599,0.598812,0.447175,0.586042,0.126569,0.0661989,0.430589,0.889132,0.41247,0.822877,0.595457,0.84244,0.696495,0.299888,0.186443,0.382262,0.976979,0.0941869,0.0529003,0.562158,0.737675,0.168518,0.264426,0.119845,0.788451,0.724,0.899966,0.925235,0.64195,0.4494,0.469766,0.512186,0.482592,0.892898,0.825583,0.281522,0.631246,0.840211,0.303436,0.244037,0.600472,0.735099,0.815729,0.842722,0.949004,0.957059,0.163339,0.139001,0.724411,0.122653,0.134975,0.380409,0.473952,0.206353,0.107575,0.866782,0.580228,0.571281,0.666885,0.807715,0.268632,0.311124,0.236614,0.228512,0.552398,0.957131,0.567958,0.164675,0.998104,0.611047,0.709912,0.706792,0.389448,0.862274,0.953599,0.930802,0.486978,0.460168,0.249475,0.463968,0.270051,0.129197,0.203603,0.370653,0.745838,0.34172,0.781715,0.834852,0.199455,0.451084,0.562668,0.77374,0.100908,0.13572,0.455746,0.625477,0.543865,0.631289,0.784068,0.879062,0.42186,0.921159,0.104581,0.51337,0.505343,0.827903,0.245589,0.944318,0.126861,0.776962,0.914171,0.748633,0.650803,0.203339,0.960179,0.77846,0.405856,0.969165,0.0479441,0.152624,0.167361,0.213956,0.740023,0.972329,0.525333,0.909644,0.297208,0.100418,0.00601846,0.905161,0.792887,0.514006,0.349529,0.721974,0.523431,0.500549,0.00136501,0.26533,0.34066,0.548849,0.147726,0.787537,0.81544,0.955032,0.263967,0.928094,0.592798,0.638222,0.965438,0.867249,0.960705,0.314143,0.185698,0.810525,0.298742,0.754801,0.655761,0.672805,0.589229,0.0135373,0.0746872,0.749757,0.977547,0.0217268,0.406658,0.696578,0.596765,0.507833,0.0849845,0.320141,0.0389194,0.204281,0.692145,0.21282,0.119868,0.243658,0.626673,0.85953,0.985197,0.276325,0.477938,0.105209,0.687985,0.794124,0.714625,0.867905,0.712925,0.943201,0.973078,0.695827,0.454256,0.316891,0.0234953,0.0554574,0.453087,0.757096,0.877746,0.743713,0.650246,0.940523,0.817997,0.967372,0.928283,0.992954,0.213065,0.579385,0.859156,0.563465,0.265508,0.608726,0.813915,0.345869,0.473764,0.475403,0.460987,0.0980152,0.0996513,0.395508,0.189903,0.702189,0.170535,0.637312,0.562724,0.931189,0.881083,0.674011,0.300992,0.44955,0.673481,0.120918,0.0177919,0.815991,0.457181,0.538689,0.369915,0.895831,0.636649,0.911004,0.168296,0.577644,0.0615689,0.598693,0.697375,0.862944,0.441743,0.727955,0.772293,0.253287,0.215543,0.335438,0.282284,0.69235,0.0795783,0.657526,0.409577,0.495285,0.876896,0.885938,0.478766,0.120052,0.853782,0.411622,0.641588,0.84459,0.349964,0.631869,0.322589,0.808558,0.81514,0.917381,0.163435,0.743875,0.788826,0.621043,0.62465,0.0127018,0.693005,0.33288,0.580586,0.383378,0.701185,0.462384,0.432367,0.348756,0.560661,0.229327,0.607514,0.70615,0.416415,0.752083,0.128828,0.137628,0.21634,0.810901,0.64055,0.251017,0.861702,0.369249,0.425746,0.812673,0.274938,0.459045,0.163977,0.297998,0.237088,0.096265,0.429555,0.805561,0.0177931,0.665744,0.545818,0.78445,0.977715,0.735163,0.597374,0.359783,0.540708,0.342235,0.236757,0.105984,0.397166,0.951289,0.681147,0.577904,0.782275,0.827503,0.798285,0.0114059,0.0345107,0.0876846,0.643691,0.862064,0.189182,0.171237,0.37285,0.082979,0.470754,0.147974,0.879301,0.622815,0.345191,0.543858,0.0683064,0.0367548,0.927688,0.0136628,0.247281,0.811917,0.810591,0.9589,0.838456,0.975641,0.196294,0.522595,0.772718,0.768113,0.261604,0.74332,0.308904,0.548918,0.548267,0.182921,0.506808,0.0869105,0.157692,0.928113,0.695239,0.946332,0.902539,0.575826,0.56678,0.585497,0.530721,0.377311,0.341251,0.764073,0.380593,0.471555,0.401492,0.244243,0.749909,0.804122,0.0881553,0.00510532,0.528723,0.107073,0.8526,0.423211,0.957406,0.124518,0.232272,0.763862,0.427891,0.10634,0.631696,0.885916,0.103932,0.1153,0.0819728,0.776679,0.758269,0.0996758,0.86323,0.27179,0.635794,0.475655,0.401244,0.415974,0.426618,0.174409,0.234685,0.50435,0.838702,0.305469,0.684792,0.329179,0.626759,0.89965,0.200105,0.166167,0.234938,0.607823,0.174282,0.037295,0.634591,0.691447,0.598177,0.972603,0.219439,0.795707,0.841017,0.526622,0.55537,0.0171229,0.580936,0.335056,0.173079,0.326242,0.136374,0.724575,0.432141,0.825684,0.642584,0.88932,0.340118,0.654589,0.803136,0.499086,0.803861,0.851293,0.0777163,0.364546,0.646319,0.786189,0.470503,0.64282,0.306114,0.59839,0.489945,0.764243,0.609823,0.599453,0.683104,0.136785,0.655528,0.380989,0.0826475,0.937041,0.0805249,0.725059,0.256177,0.537961,0.493925,0.367049,0.54429,0.00502658,0.69982,0.6604,0.19423,0.463281,0.945516,0.314534,0.901741,0.928434,0.309023,0.467678,0.59924,0.529521,0.537686,0.390474,0.58979,0.383028,0.993707,0.406645,0.410179,0.587995,0.363067,0.664415,0.319912,0.0571542,0.0743963,0.443426,0.271654,0.133355,0.231599,0.804141,0.090742,0.405614,0.751397,0.836721,0.344275,0.191285,0.378808,0.222078,0.0193892,0.128522,0.165273,0.706708,0.789715,0.204558,0.546103,0.238318,0.434495,0.669298,0.312918,0.899503,0.897499,0.712775,0.824984,0.50097,|0.274887,0.183168,0.202988,0.444056,0.512927,0.4572,0.841696,0.178884,0.911528,0.317275,0.272446,0.0307078,0.625281,0.193896,0.345245,0.17633,0.689475,0.0655431,0.324607,0.0174326,0.0401096,0.154014,0.02333,0.151776,0.942238,0.495911,0.0864003,0.195179,0.875409,0.884729,0.89941,0.667961,0.214773,0.267081,0.974161,0.778346,0.726629,0.420076,0.132104,0.990025,0.471395,0.693509,0.42904,0.275148,0.212954,0.905851,0.987935,0.792837,0.0783719,0.593223,0.677586,0.326797,0.469525,0.0131016,0.771303,0.272006,0.18041,0.210836,0.293636,0.450033,0.429623,0.444594,0.209091,0.564426,0.860788,0.0383586,0.9207,0.777213,0.884576,0.0422698,0.0783843,0.708606,0.471077,0.190468,0.736058,0.97828,0.807065,0.536168,0.982674,0.882571,0.0655866,0.24567,0.252395,0.485733,0.135459,0.863941,0.911908,0.828854,0.02232,0.281255,0.134734,0.0664728,0.253554,0.315553,0.478795,0.769527,0.332881,0.909188,0.266038,0.837648,0.587231,0.613774,0.395638,0.0965745,0.920374,0.382184,0.917452,0.428641,0.0140289,0.587595,0.377046,0.589381,0.328566,0.0528291,0.507769,0.715325,0.0156682,0.104304,0.645311,0.865527,0.712607,0.868582,0.768047,0.451434,0.0601884,0.868125,0.985123,0.476732,0.654943,0.0718392,0.84476,0.0369034,0.803524,0.0614715,0.332377,0.93268,0.804577,0.699446,0.572483,0.520246,0.415928,0.667241,0.85461,0.158069,0.498087,0.0775009,0.89889,0.242036,0.391045,0.898405,0.175082,0.697731,0.907145,0.243487,0.534203,0.371122,0.344884,0.262775,0.679503,0.246015,0.914057,0.170647,0.570219,0.233788,0.31955,0.728918,0.442462,0.13294,0.517973,0.159845,0.78188,0.801186,0.760171,0.752171,0.0465464,0.107663,0.776915,0.55571,0.425646,0.0148582,0.361985,0.436111,0.793346,0.202089,0.101723,0.152858,0.751616,0.94633,0.711118,0.118981,0.696173,0.203215,0.302203,0.611644,0.988265,0.963328,0.254441,0.847831,0.943468,0.559573,0.55306,0.725807,0.103997,0.845907,0.298032,0.316209,0.0719225,0.696379,0.757237,0.184219,0.662414,0.0295974,0.355737,0.24982,0.668869,0.172376,0.701966,0.825847,0.399381,0.703649,0.474153,0.240944,0.78385,0.348688,0.785108,0.477575,0.257384,0.536564,0.536524,0.229825,0.879675,0.996676,0.357991,0.865352,0.84303,0.856353,0.262272,0.602189,0.384025,0.79932,0.13978,0.142155,0.294744,0.0593017,0.152659,0.969561,0.219106,0.370635,0.650061,0.0105778,0.745088,0.105238,0.932071,0.0447983,0.872864,0.707908,0.243214,0.818842,0.258793,0.16991,0.125986,0.0583539,0.0454153,0.834455,0.184336,0.914382,0.767199,0.0974573,0.372375,0.87867,0.425584,0.397473,0.522896,0.728616,0.798011,0.0144135,0.68334,0.372005,0.216617,0.815243,0.936068,0.77928,0.123969,0.334457,0.49008,0.025812,0.172808,0.794395,0.389624,0.950871,0.12724,0.401621,0.68006,0.0624084,0.530903,0.210698,0.346808,0.818365,0.631102,0.584566,0.119394,0.42462,0.558104,0.850595,0.83906,0.977899,0.206473,0.3102,0.33516,0.466463,0.720929,0.180173,0.66227,0.645272,0.0961744,0.484788,0.823439,0.747698,0.143725,0.935758,0.699511,0.770805,0.0471515,0.520252,0.719172,0.286215,0.704078,0.271304,0.7816,0.521409,0.996714,0.37718,0.025328,0.566528,0.758378,0.456386,0.723692,0.848773,0.163768,0.3824,0.734901,0.798706,0.0775586,0.14363,0.583679,0.0855244,0.766473,0.847588,0.0991857,0.584217,0.352304,0.82373,0.17969,0.890274,0.071459,0.762714,0.21204,0.94414,0.0334591,0.0346596,0.131603,0.783029,0.55502,0.798492,0.615794,0.930162,0.330026,0.747311,0.23994,0.943066,0.823056,0.627205,0.848056,0.794385,0.173212,0.41403,0.484458,0.710367,0.479853,0.373692,0.790703,0.976014,0.506489,0.732793,0.319216,0.250847,0.97166,0.351989,0.0730458,0.766891,0.831166,0.933362,0.847687,0.375991,0.246455,0.177079,0.242874,0.961463,0.518951,0.209721,0.0323349,0.893754,0.654567,0.0163826,0.430159,0.63656,0.375702,0.65396,0.18273,0.378717,0.864416,0.077679,0.943619,0.942692,0.534158,0.276557,0.744097,0.25078,0.164784,0.0361778,0.723143,0.579515,0.9319,0.850915,0.823171,0.462669,0.094158,0.788483,0.0287816,0.211934,0.398292,0.84289,0.348855,0.121489,0.457094,0.993908,0.580466,0.765414,0.58792,0.327521,0.0340096,0.248981,0.919857,0.492867,0.838817,0.823631,0.303187,0.926076,0.0843511,0.0865875,0.450532,0.601839,0.967996,0.0675501,0.446714,0.151204,0.385324,0.44193,0.706304,0.0991862,0.250371,0.12118,0.174186,0.0214092,0.795494,0.138824,0.31064,0.852154,0.908874,0.666478,0.565992,0.278936,0.810434,0.0851299,0.19972,0.288216,0.348147,0.0658209,0.628604,0.876651,0.723973,0.183092,0.0133034,0.855108,0.276898,0.62576,0.709158,0.55349,0.0451325,0.336186,0.781469,0.745466,0.472652,0.928206,0.436819,0.693503,0.74727,0.552271,0.331403,0.648303,0.494371,0.727805,0.311892,0.140892,0.35083,0.967741,0.42405,0.201554,0.981559,0.640254,0.20414,0.578603,0.972239,0.622962,0.0435542,0.919196,0.723171,0.808182,0.00501406,0.74008,0.351864,0.512818,0.697842,0.0174491,0.265647,0.376203,0.405197,0.899097,0.998477,0.928658,0.411009,0.556995,0.315373,0.245713,0.846255,0.134943,0.0777761,0.193638,0.0465273,0.495368,0.684333,0.736978,0.980815,0.7115,0.993645,0.521935,0.538791,0.347413,0.77034,0.0916033,0.957971,0.64968,0.408689,0.493621,0.274234,0.368212,0.74617,0.747346,0.665732,0.422229,0.985816,0.0912898,0.0745244,0.310086,0.266763,0.665307,0.188741,0.559661,0.589377,0.932003,0.80135,0.846452,0.590556,0.488302,0.24867,0.453674,0.573061,0.17606,0.521377,0.331545,0.455276,0.157984,0.882402,0.251333,0.580737,0.754986,0.0797504,0.644088,0.781977,0.859541,0.756263,0.719274,0.930521,0.640151,0.0520917,0.894787,0.646898,0.889245,0.00885856,0.962962,0.780364,0.0752425,0.481032,0.171063,0.125866,0.0992334,0.182943,0.892228,0.301751,0.215461,0.40782,0.282307,0.564493,0.713152,0.171186,0.620269,0.275133,0.0343905,0.248744,0.808401,0.288321,0.655989,0.977957,0.0110112,0.396847,0.87905,0.491329,0.294576,0.716944,0.269742,0.767805,0.116789,0.824215,0.202758,0.814514,0.238385,0.92852,0.571403,0.00120389,0.0331996,0.815402,0.471794,0.690205,0.766684,0.264749,0.044606,0.448057,0.0816786,0.607917,0.26403,0.906955,0.503254,0.222054,0.836424,0.0471077,0.903167,0.00966984,0.317517,0.483371,0.0697319,0.0424482,0.354702,0.285051,0.624426,0.293877,0.518268,0.682173,0.616901,0.693687,0.80243,0.937352,0.957106,0.44718,0.159222,0.898547,0.338352,0.345573,0.0304336,0.177084,0.357528,0.22853,0.464045,0.495858,0.184146,0.326827,0.247114,0.226636,0.424078,0.149498,0.0905607,0.265087,0.992478,0.744592,0.623542,0.541081,0.440064,0.427575,0.232279,0.867319,0.00363737,0.830154,0.859624,0.794981,0.474888,0.851569,0.921561,0.478678,0.292037,0.151786,0.685354,0.960313,0.480864,0.402364,0.980007,0.0407403,0.204925,0.0707222,0.424165,0.761603,0.611078,0.933458,0.637855,0.923555,0.82173,0.779694,0.386698,0.345393,0.0733033,0.875199,0.532735,0.857159,0.535977,0.503411,0.584905,0.545535,0.0946035,0.780464,0.813533,0.779528,0.229281,0.348806,0.728729,0.565634,0.926111,0.64796,0.228964,0.830155,0.0128597,0.480327,0.88156,0.0955156,0.867686,0.586402,0.95802,0.0177814,0.371733,0.154884,0.925123,0.440029,0.525084,0.874953,0.0190035,0.386088,0.607408,0.143252,0.389001,0.491611,0.217344,0.106932,0.753932,0.467827,0.679925,0.553305,0.122925,0.307564,0.435541,0.350436,0.601627,0.448525,0.826433,0.273291,0.60242,0.444096,0.898859,0.565379,0.108556,0.812449,0.942708,0.43171,0.341345,0.756099,0.57295,0.316971,0.100386,0.122303,0.208828,0.171518,0.868929,0.504741,0.946464,0.48131,0.106143,0.885816,0.68877,0.15346,0.450121,0.571237,0.729577,0.785943,0.24258,0.279903,0.832235,0.254345,0.513213,0.670772,0.290811,0.0592372,0.0414617,0.213885,0.437227,0.302673,0.154175,0.75316,0.738778,0.343877,0.134932,0.98828,0.412446,0.647586,0.719872,0.030875,0.641634,0.289791,0.294987,0.319751,0.571866,0.187462,0.0823123,0.925677,0.545999,0.0542204,0.313466,0.646906,0.626127,0.796337,0.195345,0.886379,0.988885,0.851066,0.415169,0.395726,0.414688,0.891437,0.665968,0.901287,0.326411,0.363579,0.475828,0.0330419,0.293589,0.504519,0.700132,0.225653,0.1566,0.0394009,0.157129,0.737924,0.700962,0.0837981,0.901295,0.946841,0.354287,0.0488245,0.986158,0.0535365,0.209365,0.512101,0.229565,0.515453,0.533967,0.293368,0.171588,0.648505,0.281384,0.0249049,0.564803,0.356228,0.836741,0.0388101,0.254338,0.246857,0.392461,0.421656,0.814356,0.403932,0.388439,0.989497,0.724822,0.360769,0.366688,0.21348,0.882907,0.471673,0.460829,0.133589,0.774491,0.870154,0.444839,0.62254,0.514485,0.799583,0.714816,0.691761,0.528246,0.799912,0.737315,0.436778,0.907681,0.45299,0.104981,0.67174,0.945031,0.384988,0.214273,0.756072,0.52881,0.80623,0.486771,0.53528,0.538003,0.202479,0.727782,0.743977,0.333966,0.717228,0.630258,0.696251,0.553296,0.685045,0.450741,0.10248,0.0646729,0.592481,0.120607,0.257946,0.722211,0.333149,0.928217,0.863105,0.0152034,0.288663,0.423909,0.0701913,0.840573,0.456539,0.469599,0.14762,0.869167,0.509774,0.275655,0.747851,0.542934,0.790046,0.475766,0.450952,0.07341,0.0649493,0.411718,0.50716,0.747904,0.769566,0.373001,0.652829,0.985222,0.550723,0.670154,0.712625,0.0660436,0.418599,0.429588,0.193022,0.515801,0.0658928,0.594459,0.568738,0.572332,0.45158,0.408513,0.182913,0.571236,0.389264,0.979413,0.82122,0.331175,0.0247813,0.783286,0.547186,0.481417,0.895234,0.580339,|0.627536,0.949399,0.132242,0.890494,0.20968,0.329509,0.816118,0.621417,0.274207,0.500895,0.454513,0.710876,0.191521,0.316714,0.734299,0.80881,0.953599,0.862619,0.851042,0.252119,0.727731,0.259226,0.610078,0.847446,0.00919616,0.516455,0.979561,0.797803,0.64058,0.248543,0.196689,0.0806574,0.0754182,0.304501,0.28938,0.111152,0.231237,0.306131,0.727511,0.340279,0.911143,0.705548,0.311091,0.189218,0.889596,0.449046,0.664752,0.292398,0.0114726,0.911743,0.163657,0.732653,0.542535,0.640885,0.65296,0.874447,0.641822,0.989461,0.709828,0.686448,0.448087,0.0691829,0.402107,0.607129,0.582072,0.280471,0.514325,0.863044,0.817085,0.115842,0.932961,0.498817,0.96851,0.649298,0.572107,0.443038,0.586553,0.0964901,0.149341,0.710465,0.112512,0.836145,0.988066,0.0466704,0.285769,0.714106,0.0391595,0.780476,0.48043,0.810986,0.619657,0.822245,0.163788,0.0932869,0.012782,0.480762,0.868141,0.603633,0.207694,0.641485,0.869749,0.709481,0.901266,0.35723,0.45589,0.324939,0.930042,0.704237,0.111697,0.606847,0.841687,0.0682996,0.643192,0.252065,0.776369,0.616714,0.45561,0.848675,0.211226,0.0104933,0.00101984,0.655964,0.595248,0.994383,0.674217,0.45138,0.493014,0.255565,0.0119607,0.823136,0.958298,0.555797,0.941095,0.294541,0.798757,0.220262,0.871186,0.619127,0.604606,0.479607,0.993734,0.605356,0.489817,0.0159079,0.401066,0.17205,0.812812,0.560422,0.189534,0.368492,0.158596,0.152756,0.558158,0.0807242,0.690241,0.854301,0.529338,0.862673,0.93232,0.433604,0.988316,0.698795,0.878403,0.497202,0.693168,0.541319,0.369627,0.478035,0.723291,0.370578,0.173005,0.698789,0.607097,0.140064,0.252765,0.0120191,0.606247,0.289053,0.752689,0.465641,0.815691,0.512517,0.941908,0.238514,0.479869,0.932243,0.360032,0.218156,0.0880778,0.988404,0.48397,0.106886,0.881148,0.752032,0.0515905,0.332113,0.812477,0.75983,0.76031,0.042293,0.110657,0.445652,0.470188,0.775615,0.279032,0.761923,0.94816,0.890841,0.152026,0.431886,0.667901,0.234044,0.854636,0.703882,0.659535,0.68296,0.807656,0.65164,0.853139,0.654284,0.77009,0.640362,0.929491,0.986514,0.0262156,0.74777,0.8518,0.0696548,0.285795,0.902039,0.483697,0.713956,0.599128,0.0212322,0.677852,0.160674,0.0662482,0.407269,0.00907606,0.495158,0.74519,0.479947,0.0145319,0.354974,0.652914,0.856712,0.664289,0.301174,0.378623,0.492334,0.846562,0.211217,0.867937,0.0666289,0.556584,0.662561,0.838366,0.345751,0.0552548,0.384092,0.0333135,0.922936,0.451366,0.730283,0.685988,0.808621,0.143098,0.171912,0.262716,0.725928,0.399686,0.842358,0.240965,0.340314,0.239997,0.0244573,0.706299,0.935418,0.742246,0.80863,0.644296,0.715387,0.109379,0.255704,0.824666,0.607731,0.15946,0.889841,0.384662,0.223338,0.56027,0.196636,0.601619,0.0293133,0.254612,0.898949,0.113861,0.863753,0.398762,0.188881,0.370925,0.47409,0.975241,0.988029,0.750173,0.528308,0.724685,0.947179,0.372189,0.665544,0.450133,0.811246,0.294748,0.621408,0.246273,0.427213,0.720379,0.645125,0.668276,0.767247,0.963038,0.438733,0.804842,0.650782,0.554909,0.0245986,0.771688,0.637856,0.989254,0.839505,0.991272,0.184006,0.628983,0.467297,0.591048,0.445869,0.526793,0.148812,0.822538,0.0759014,0.694313,0.028471,0.089727,0.835599,0.485024,0.891965,0.696414,0.562137,0.98595,0.818115,0.556248,0.615334,0.306914,0.208443,0.395122,0.102634,0.208623,0.297956,0.472286,0.325362,0.778125,0.484343,0.409084,0.48575,0.605208,0.540668,0.831874,0.573766,0.691293,0.361065,0.165551,0.346631,0.329696,0.269149,0.9858,0.838341,0.209395,0.926733,0.313154,0.294995,0.147677,0.388744,0.452823,0.357603,0.0709241,0.284558,0.450868,0.746998,0.461217,0.38334,0.696912,0.642597,0.803946,0.653858,0.623514,0.222189,0.948863,0.786677,0.510835,0.275399,0.633357,0.4702,0.0496396,0.177609,0.548805,0.544453,0.990812,0.783568,0.355068,0.693934,0.948739,0.102986,0.860121,0.742008,0.311285,0.0727046,0.411696,0.876863,0.304432,0.420081,0.0767016,0.276314,0.381492,0.461266,0.404779,0.470471,0.362178,0.960673,0.28436,0.0297893,0.607034,0.234968,0.540643,0.801085,0.66889,0.0488655,0.157254,0.85738,0.459575,0.209545,0.272816,0.399893,0.714296,0.779303,0.447383,0.132938,0.39599,0.358709,0.921511,0.862915,0.608322,0.0319629,0.26568,0.872114,0.0141962,0.77675,0.0856408,0.287601,0.715196,0.419827,0.284754,0.713161,0.821156,0.165225,0.987015,0.0988795,0.276447,0.167149,0.130076,0.759433,0.0697113,0.136708,0.424426,0.440076,0.59629,0.724461,0.235815,0.375981,0.373714,0.860408,0.0252034,0.549154,0.514361,0.493068,0.752918,0.870681,0.687528,0.397138,0.183679,0.340465,0.73818,0.695326,0.943087,0.0797155,0.0073216,0.359965,0.62311,0.0875487,0.351194,0.499778,0.613232,0.00618172,0.130706,0.592494,0.790986,0.024659,0.0603124,0.90953,0.44479,0.663148,0.435816,0.802967,0.708074,0.517382,0.400998,0.997325,0.0383877,0.687716,0.74472,0.0297874,0.0648787,0.451034,0.163004,0.0793063,0.785503,0.00381804,0.89179,0.373624,0.163196,0.168526,0.744497,0.0683258,0.555756,0.746644,0.189448,0.828588,0.444008,0.505475,0.517259,0.0998889,0.450157,0.284548,0.00348288,0.896902,0.650974,0.271613,0.29817,0.697216,0.939898,0.603466,0.296766,0.543063,0.0115919,0.766284,0.0586671,0.977007,0.72364,0.268672,0.733014,0.473588,0.585311,0.331168,0.853127,0.614369,0.698238,0.359688,0.788863,0.497129,0.16821,0.633703,0.0244523,0.571548,0.656658,0.642943,0.641427,0.678759,0.246933,0.76613,0.641793,0.436876,0.483032,0.799127,0.0637828,0.921527,0.691469,0.998478,0.959644,0.415641,0.908877,0.210413,0.792363,0.867455,0.106252,0.841232,0.400674,0.780376,0.91748,0.954262,0.389975,0.638299,0.354251,0.492823,0.979054,0.127672,0.341871,0.0171257,0.0747845,0.559726,0.740117,0.4509,0.561603,0.819733,0.160678,0.474103,0.439701,0.520977,0.433892,0.215943,0.942716,0.943407,0.00105053,0.0852114,0.604106,0.216474,0.672521,0.373313,0.0364137,0.0727986,0.0137427,0.460395,0.292922,0.801993,0.72216,0.837485,0.593523,0.144811,0.864588,0.82161,0.356402,0.3934,0.999054,0.369336,0.733498,0.931007,0.666131,0.731843,0.928108,0.967429,0.380363,0.889982,0.211542,0.292834,0.897913,0.263355,0.413327,0.70463,0.858204,0.62993,0.987944,0.675404,0.613462,0.504809,0.426407,0.31278,0.565975,0.60837,0.0146829,0.843361,0.572937,0.423256,0.195815,0.726364,0.995126,0.453553,0.511293,0.181583,0.0803242,0.501897,0.707524,0.469121,0.167785,0.831774,0.799163,0.90088,0.0366722,0.0841902,0.751525,0.173976,0.477745,0.797084,0.488038,0.254206,0.74876,0.663006,0.40393,0.832301,0.0854836,0.963783,0.177332,0.30192,0.777248,0.760483,0.0443864,0.771964,0.487159,0.054785,0.0771487,0.447951,0.82442,0.853877,0.415371,0.632074,0.440763,0.720932,0.312006,0.81976,0.210239,0.455699,0.934285,0.637356,0.0538686,0.142945,0.172699,0.438646,0.555833,0.339724,0.429227,0.519985,0.277511,0.360307,0.405927,0.800634,0.872688,0.119998,0.221234,0.895292,0.703675,0.936449,0.555448,0.765882,0.634392,0.907316,0.300487,0.670267,0.687155,0.766154,0.0964047,0.218434,0.471193,0.481126,0.0198151,0.144924,0.913176,0.427263,0.412778,0.477304,0.0352312,0.719833,0.985866,0.695092,0.452085,0.73318,0.11709,0.453389,0.142407,0.0492417,0.440555,0.45914,0.884016,0.458506,0.115334,0.206415,0.212156,0.062651,0.230383,0.813943,0.12347,0.503136,0.682262,0.935631,0.905184,0.613548,0.740027,0.827924,0.260141,0.448839,0.426289,0.0353299,0.534035,0.405544,0.915287,0.107716,0.218332,0.319071,0.265517,0.0877691,0.0520436,0.013285,0.320304,0.598254,0.693037,0.834851,0.629731,0.48933,0.274983,0.525115,0.261652,0.279069,0.251047,0.278374,0.263248,0.0816779,0.0822495,0.347026,0.59315,0.842049,0.519511,0.663147,0.605807,0.433592,0.40384,0.460168,0.432306,0.19868,0.50112,0.130687,0.235431,0.933331,0.0644484,0.592785,0.101247,0.607597,0.743666,0.139375,0.00991005,0.0212396,0.758372,0.0673223,0.997521,0.815772,0.627455,0.94294,0.12909,0.643857,0.460323,0.621759,0.693308,0.878628,0.314833,0.703416,0.955476,0.246916,0.167619,0.147825,0.38805,0.317236,0.24108,0.296265,0.900561,0.59869,0.206727,0.280282,0.179957,0.106088,0.493524,0.540203,0.611879,0.902571,0.861968,0.941836,0.733538,0.546993,0.456681,0.161123,0.83689,0.990291,0.411433,0.199645,0.585768,0.978864,0.899001,0.182755,0.91941,0.169811,0.439069,0.323192,0.949118,0.923699,0.601336,0.223111,0.240281,0.536309,0.89963,0.184039,0.9375,0.363115,0.942864,0.249059,0.418181,0.89797,0.34178,0.0594466,0.379202,0.28049,0.493888,0.731877,0.11461,0.948704,0.094657,0.962917,0.00543779,0.941098,0.2593,0.680908,0.323685,0.118718,0.95797,0.585479,0.922104,0.255928,0.0978172,0.572665,0.213586,0.381279,0.984402,0.414446,0.865789,0.415066,0.461942,0.163331,0.869071,0.0667166,0.443738,0.962817,2.08616e-05,0.0582138,0.807066,0.508786,0.457919,0.0483838,0.904143,0.520065,0.690572,0.329062,0.635484,0.428644,0.695383,0.772485,0.555643,0.850608,0.988195,0.394073,0.920886,0.569181,0.433813,0.606654,0.399931,0.905815,0.517801,0.387592,0.990394,0.767692,0.697068,0.521903,0.478412,0.844757,0.715354,0.833816,0.200585,0.209008,0.794327,0.868328,0.0203123,0.212114,0.606471,0.909683,0.426618,0.212003,0.0609125,0.928162,0.390432,0.796796,0.879148,0.404106,0.913547,0.222282,0.925995,0.993477,0.306377,0.293566,0.0449069,0.598363,0.292891,0.20565,0.0607653,0.716989,0.669916,0.851275,0.985113,0.0979039,|0.109576,0.627139,0.86318,0.315594,0.58571,0.251338,0.27421,0.706953,0.813881,0.143131,0.578989,0.627348,0.665787,0.445531,0.100216,0.230639,0.597793,0.302583,0.144294,0.88344,0.998861,0.155126,0.530545,0.029379,0.531923,0.716057,0.00382817,0.515255,0.138592,0.291657,0.269778,0.483417,0.276318,0.12307,0.328713,0.063027,0.933153,0.668588,0.145653,0.288172,0.103999,0.264355,0.261229,0.424605,0.585886,0.219242,0.592243,0.0189867,0.703566,0.695209,0.25609,0.530435,0.523216,0.285148,0.764793,0.780601,0.453395,0.43672,0.390806,0.428803,0.511632,0.601918,0.752649,0.601454,0.859584,0.114559,0.958205,0.0353847,0.60715,0.0717844,0.0458812,0.3356,0.738907,0.841629,0.446298,0.177852,0.0916939,0.127866,0.785754,0.34994,0.591759,0.514681,0.222603,0.0232328,0.522597,0.0867036,0.465729,0.696452,0.240454,0.308748,0.191674,0.5796,0.453695,0.731655,0.682619,0.560857,0.490551,0.256791,0.928253,0.572485,0.521603,0.941422,0.86667,0.0299773,0.821042,0.194259,0.28899,0.180021,0.619534,0.921634,0.024667,0.811907,0.495201,0.0285842,0.558447,0.826044,0.561466,0.244009,0.683972,0.258251,0.214353,0.433516,0.606922,0.295505,0.952508,0.466926,0.524902,0.179671,0.83177,0.603653,0.85078,0.538223,0.0344864,0.857891,0.781508,0.950756,0.444145,0.936679,0.154241,0.0314191,0.315496,0.361001,0.0682293,0.24211,0.799497,0.463147,0.874552,0.367893,0.548414,0.35529,0.59626,0.499264,0.592501,0.0966167,0.0429507,0.709877,0.690389,0.494641,0.106907,0.701102,0.486242,0.796659,0.568109,0.211499,0.208932,0.967182,0.314266,0.852549,0.695672,0.0803496,0.318117,0.131698,0.48641,0.408148,0.0337757,0.989945,0.739395,0.843115,0.98328,0.798034,0.538247,0.741283,0.234344,0.88766,0.107448,0.736769,0.478761,0.449215,0.679819,0.0822774,0.263737,0.806362,0.782152,0.667625,0.295164,0.28676,0.357416,0.277822,0.104705,0.463587,0.297611,0.627694,0.147923,0.881176,0.849442,0.0409779,0.791009,0.56658,0.0568087,0.86538,0.861688,0.598639,0.71669,0.616736,0.696256,0.441169,0.54878,0.344936,0.980642,0.129478,0.826808,0.268269,0.67653,0.0457841,0.430297,0.866533,0.427745,0.239172,0.333055,0.493233,0.459447,0.237745,0.516708,0.677465,0.978642,0.553051,0.584019,0.345913,0.962752,0.334442,0.895246,0.834692,0.752203,0.35147,0.883628,0.981267,0.284398,0.371045,0.62999,0.793719,0.131717,0.394835,0.276456,0.147631,0.105798,0.632016,0.31811,0.66455,0.669681,0.81388,0.29757,0.0304872,0.294477,0.723158,0.73122,0.58243,0.30926,0.756106,0.508333,0.247656,0.51369,0.431682,0.0792086,0.4244,0.775157,0.590344,0.858315,0.0609545,0.900139,0.869925,0.450532,0.422949,0.47187,0.588036,0.781581,0.0942929,0.641575,0.931058,0.0883007,0.416432,0.270764,0.980364,0.509869,0.0911206,0.563914,0.479911,0.69175,0.920209,0.839123,0.719835,0.524226,0.434412,0.936649,0.974123,0.930319,0.888174,0.472761,0.466268,0.179076,0.797953,0.807687,0.172568,0.226003,0.917236,0.386695,0.614718,0.781491,0.977459,0.470096,0.660033,0.383161,0.40209,0.361024,0.732338,0.518563,0.914599,0.554608,0.655592,0.720525,0.701651,0.073589,0.817143,0.224983,0.359987,0.450207,0.577333,0.459329,0.735596,0.695768,0.243843,0.0135109,0.547944,0.147779,0.991092,0.260072,0.506437,0.775748,0.516023,0.472196,0.73595,0.403617,0.433047,0.561837,0.397414,0.0466115,0.246577,0.182988,0.36524,0.912095,0.723073,0.00629365,0.795195,0.0853211,0.128463,0.177336,0.694991,0.0212378,0.658912,0.643381,0.422835,0.793642,0.274626,0.236317,0.120854,0.00329584,0.0685351,0.609038,0.197872,0.712932,0.18045,0.899717,0.712028,0.768074,0.58351,0.493657,0.568014,0.813094,0.81736,0.519334,0.604781,0.628198,0.763667,0.678388,0.8136,0.529514,0.654616,0.676998,0.187089,0.581327,0.729634,0.0849028,0.78184,0.507038,0.504726,0.0174763,0.304955,0.875755,0.707506,0.0643809,0.143324,0.458214,0.186282,0.481169,0.918034,0.596152,0.52344,0.414979,0.0120268,0.216073,0.349824,0.0573279,0.0173834,0.0299039,0.86412,0.171594,0.02592,0.103441,0.806506,0.100233,0.771876,0.421764,0.546508,0.636309,0.581195,0.738884,0.178957,0.663863,0.580735,0.386958,0.396073,0.923141,0.442603,0.173317,0.516156,0.399317,0.208974,0.348731,0.298882,0.394686,0.954776,0.753517,0.249732,0.452478,0.525828,0.316679,0.6336,0.894179,0.909007,0.89755,0.209823,0.987713,0.678002,0.56901,0.0164769,0.0478587,0.827539,0.52254,0.339742,0.636863,0.0554289,0.712584,0.466466,0.0964755,0.115072,0.912447,0.432718,0.424787,0.83686,0.231972,0.779813,0.216086,0.192102,0.95776,0.201024,0.420176,0.32003,0.403199,0.877258,0.473991,0.802612,0.968708,0.23884,0.896849,0.0566851,0.00411427,0.609789,0.477767,0.122329,0.462512,0.392241,0.683804,0.0355995,0.49827,0.51206,0.0492824,0.111952,0.361297,0.216658,0.700634,0.579116,0.248424,0.16108,0.684345,0.419221,0.673771,0.917329,0.962103,0.141276,0.257455,0.423261,0.0652076,0.195471,0.36117,0.882662,0.400929,0.879773,0.0950423,0.50722,0.280605,0.63211,0.0758311,0.0834194,0.826447,0.546799,0.308266,0.326732,0.796059,0.101208,0.619974,0.506023,0.691313,0.539371,0.241744,0.889116,0.682875,0.635279,0.543308,0.711247,0.469254,0.296576,0.80655,0.897138,0.108717,0.221285,0.924022,0.995366,0.511485,0.44406,0.989223,0.823013,0.865876,0.218897,0.513367,0.436119,0.878389,0.743648,0.522802,0.370336,0.97159,0.892008,0.877959,0.550713,0.953646,0.801007,0.205018,0.510163,0.613857,0.691388,0.145369,0.0221507,0.67552,0.11267,0.320631,0.925005,0.360459,0.891701,0.976124,0.283552,0.125502,0.371448,0.271653,0.452148,0.669714,0.398459,0.134902,0.625951,0.0759513,0.969173,0.43355,0.0594682,0.87763,0.386671,0.947047,0.201667,0.23397,0.096884,0.357485,0.28234,0.750137,0.484498,0.0284404,0.922588,0.602573,0.748154,0.141787,0.619051,0.00189376,0.0106124,0.872481,0.271505,0.0721058,0.392263,0.846695,0.583016,0.0633718,0.00972015,0.83533,0.637478,0.420278,0.202534,0.497404,0.0387961,0.403564,0.438364,0.19911,0.258277,0.726429,0.279109,0.738167,0.778314,0.64482,0.580601,0.555209,0.703522,0.161405,0.375903,0.760661,0.891343,0.188789,0.497228,0.0249336,0.990562,0.868419,0.35128,0.59673,0.0341814,0.821638,0.18657,0.156366,0.118996,0.0195939,0.501245,0.57937,0.388147,0.941728,0.861861,0.546765,0.85988,0.180331,0.0299071,0.120519,0.110327,0.464993,0.994344,0.443456,0.445723,0.478507,0.954129,0.726711,0.716403,0.402692,0.68163,0.0884512,0.622799,0.657343,0.696603,0.443471,0.509889,0.810644,0.484753,0.359227,0.494004,0.849476,0.612078,0.650341,0.477198,0.0883831,0.652397,0.971824,0.864943,0.593463,0.568277,0.139041,0.966415,0.443991,0.062821,0.646021,0.880046,0.8642,0.503027,0.883798,0.872754,0.348626,0.317158,0.424956,0.0386438,0.22652,0.242233,0.763842,0.787212,0.806924,0.626658,0.537703,0.187998,0.105441,0.40549,0.66712,0.499611,0.907036,0.978573,0.809134,0.791978,0.599469,0.929774,0.820552,0.115905,0.720955,0.866861,0.433641,0.382738,0.37662,0.283691,0.790675,0.260595,0.067189,0.653035,0.734034,0.260474,0.706398,0.586783,0.652939,0.294896,0.353379,0.487575,0.372801,0.493,0.41387,0.353265,0.339237,0.279339,0.0517569,0.191686,0.472455,0.784961,0.691238,0.419145,0.48184,0.846716,0.460459,0.975543,0.691436,0.948964,0.686137,0.172297,0.984523,0.522377,0.656858,0.430986,0.00467604,0.642756,0.395927,0.667503,0.419755,0.433156,0.345852,0.793883,0.985137,0.204173,0.647747,0.205044,0.683401,0.0887767,0.31967,0.975124,0.565426,0.527902,0.153109,0.025068,0.781972,0.35182,0.390657,0.413649,0.16298,0.936683,0.191351,0.648866,0.00215483,0.193968,0.815871,0.949162,0.108917,0.546519,0.642048,0.316911,0.672606,0.107483,0.420285,0.938423,0.495363,0.88644,0.527217,0.560672,0.55499,0.666213,0.131989,0.0689435,0.0601919,0.612189,0.471904,0.253234,0.388596,0.842168,0.680366,0.24172,0.511445,0.439258,0.814348,0.564776,0.250276,0.315489,0.894524,0.261991,0.00304419,0.60441,0.548722,0.930498,0.385661,0.233865,0.473222,0.341511,0.511435,0.915341,0.242178,0.929905,0.303398,0.612378,0.0902675,0.408019,0.319924,0.389387,0.48768,0.949194,0.636085,0.0674934,0.321755,0.128753,0.113117,0.46204,0.842211,0.92597,0.37626,0.19025,0.63699,0.0960097,0.0936121,0.880997,0.771311,0.248027,0.8463,0.448503,0.52277,0.238498,0.839978,0.993984,0.706399,0.521167,0.381427,0.877974,0.321108,0.463522,0.120233,0.681414,0.325653,0.509512,0.341185,0.0519037,0.228289,0.712477,0.730854,0.220087,0.266221,0.612651,0.999938,0.179748,0.610265,0.466459,0.88945,0.908534,0.321308,0.815095,0.5631,0.498769,0.804879,0.48812,0.435798,0.386975,0.6603,0.690217,0.74439,0.760551,0.454597,0.296978,0.219266,0.254158,0.404623,0.246548,0.768899,0.736007,0.314251,0.626386,0.474571,0.149567,0.826886,0.610331,0.569049,0.455216,0.0603148,0.359654,0.533599,0.612099,0.165405,0.245845,0.0167106,0.265087,0.504778,0.0880274,0.198821,0.650645,0.529869,0.083499,0.361458,0.782099,0.432718,0.160864,0.422937,0.178091,0.14418,0.557021,0.470614,0.0551691,0.462419,0.700323,0.695936,0.787821,0.0321818,0.105703,0.423784,0.861246,0.882394,0.138563,0.625488,0.44321,0.154665,0.0621883,0.934897,0.0588098,0.789787,0.607199,0.143583,0.898499,0.856173,0.392521,0.158386,0.576121,0.539784,0.607994,0.148548,0.89302,0.485407,0.467437,0.598377,0.484519,0.605882,0.783729,0.968369,0.940813,0.340068,0.793301,0.867482,0.0144562,|0.83843,0.71535,0.859647,0.402609,0.910694,0.899232,0.613241,0.932012,0.234882,0.269632,0.543082,0.660785,0.11567,0.501081,0.0407897,0.673234,0.527803,0.441658,0.0245329,0.700883,0.449345,0.833621,0.889513,0.0212572,0.674827,0.414252,0.244308,0.0926943,0.864765,0.892147,0.515381,0.334342,0.492297,0.871052,0.0515957,0.050877,0.513549,0.120996,0.770217,0.341611,0.0950344,0.794071,0.991002,0.802532,0.118057,0.298538,0.35875,0.966329,0.57731,0.513307,0.353078,0.861443,0.486787,0.724211,0.77539,0.295545,0.9374,0.370798,0.902495,0.989715,0.24297,0.228124,0.659702,0.766016,0.0803255,0.61738,0.107583,0.682426,0.0134256,0.499097,0.471941,0.32922,0.398001,0.93242,0.466193,0.836868,0.0724266,0.571955,0.241085,0.553704,0.060087,0.929371,0.701982,0.825344,0.788614,0.706352,0.141533,0.294042,0.547071,0.493444,0.37081,0.04584,0.663783,0.179412,0.181759,0.181755,0.526548,0.4474,0.168467,0.145564,0.461191,0.965042,0.908129,0.923847,0.695902,0.146263,0.120445,0.220264,0.878242,0.576611,0.507271,0.18822,0.621754,0.61099,0.885138,0.28704,0.816579,0.252499,0.331607,0.673918,0.0893739,0.912141,0.016688,0.368792,0.801723,0.285035,0.307263,0.806522,0.205934,0.321119,0.286966,0.478423,0.562932,0.349089,0.686836,0.421313,0.779425,0.472997,0.853069,0.809454,0.0456603,0.430534,0.888185,0.119789,0.498429,0.307548,0.834198,0.741815,0.164906,0.398355,0.585417,0.0340253,0.22513,0.635323,0.254042,0.241243,0.533331,0.550258,0.587781,0.469477,0.519078,0.232121,0.591156,0.457393,0.0952189,0.778241,0.654924,0.233582,0.489814,0.606851,0.154452,0.705292,0.868471,0.198512,0.367878,0.905574,0.176019,0.317019,0.0172068,0.525169,0.449462,0.778092,0.0831862,0.297493,0.858775,0.228218,0.595583,0.528995,0.102215,0.545042,0.623459,0.964431,0.751616,0.827255,0.315229,0.247072,0.0776256,0.285228,0.955342,0.260084,0.401826,0.864201,0.485592,0.421572,0.0262201,0.0207444,0.278066,0.222658,0.90726,0.373034,0.605439,0.164531,0.964244,0.24604,0.843153,0.105232,0.214483,0.329202,0.261198,0.527594,0.656163,0.656237,0.84828,0.722892,0.379866,0.651162,0.388872,0.489776,0.925465,0.125953,0.305161,0.0209462,0.390172,0.916411,0.179582,0.716706,0.274329,0.533734,0.846107,0.633168,0.580284,0.574261,0.436775,0.714852,0.172864,0.0411752,0.0491543,0.505443,0.628316,0.511758,0.130525,0.204766,0.212025,0.599112,0.723774,0.594039,0.864283,0.902323,0.950819,0.460623,0.229122,0.174492,0.398071,0.319959,0.965575,0.774211,0.717745,0.0300784,0.581106,0.893231,0.160313,0.0992257,0.849277,0.000505686,0.571615,0.0816258,0.223741,0.211544,0.829917,0.133628,0.066223,0.341552,0.61929,0.679867,0.305082,0.706395,0.547469,0.569676,0.841082,0.91756,0.639309,0.27768,0.0682861,0.297741,0.288085,0.0975141,0.326343,0.37991,0.635432,0.420634,0.595484,0.507581,0.592406,0.939021,0.570333,0.984155,0.293538,0.173296,0.244531,0.0610878,0.611746,0.366607,0.883856,0.443359,0.785098,0.927402,0.592291,0.679499,0.0820953,0.257491,0.748049,0.793568,0.234596,0.354399,0.527846,0.115382,0.735334,0.396455,0.473547,0.771938,0.262,0.935775,0.689617,0.0578073,0.56972,0.330883,0.16878,0.138771,0.98674,0.385131,0.607307,0.775585,0.629661,0.345048,0.126021,0.857032,0.453456,0.385987,0.411893,0.65288,0.208047,0.0804173,0.612806,0.234233,0.618957,0.206174,0.0757636,0.261957,0.662548,0.862889,0.609359,0.937763,0.613327,0.00662827,0.652791,0.315123,0.966655,0.448858,0.33926,0.156339,0.0930099,0.00352138,0.781114,0.922161,0.965909,0.185265,0.62999,0.0470473,0.910737,0.570413,0.597934,0.0237021,0.22318,0.539848,0.621915,0.537253,0.996247,0.0683991,0.59229,0.467398,0.700899,0.951034,0.85599,0.365998,0.592114,0.549886,0.66567,0.0715125,0.806444,0.621703,0.0293168,0.349368,0.898828,0.214141,0.913105,0.1115,0.208047,0.102515,0.756403,0.0273512,0.0362414,0.442534,0.442723,0.475772,0.100069,0.0184402,0.398624,0.0166625,0.657971,0.761681,0.82986,0.126249,0.169786,0.891036,0.81705,0.358028,0.146698,0.924858,0.981295,0.748011,0.793895,0.056223,0.936529,0.308717,0.0329266,0.89469,0.0609992,0.167337,0.62937,0.193653,0.486184,0.599599,0.923156,0.917629,0.291024,0.0682462,0.799706,0.918921,0.09535,0.94569,0.210841,0.202747,0.983631,0.119363,0.687774,0.443077,0.070806,0.909418,0.260914,0.778587,0.73933,0.402588,0.377844,0.562191,0.362738,0.991349,0.305795,0.120974,0.0239091,0.941268,0.977517,0.384489,0.104965,0.228393,0.750884,0.762353,0.345489,0.75842,0.969693,0.629637,0.856711,0.36038,0.520095,0.620666,0.889194,0.000816286,0.664056,0.865037,0.218634,0.930245,0.160492,0.0843542,0.512211,0.350906,0.311169,0.946012,0.0478903,0.678326,0.895863,0.336473,0.998955,0.712282,0.558035,0.300873,0.477309,0.35422,0.0830908,0.579585,0.0442303,0.980475,0.70701,0.0233415,0.214429,0.662684,0.803563,0.594391,0.749479,0.144979,0.324317,0.821206,0.317847,0.0572272,0.613194,0.710016,0.535025,0.807255,0.622356,0.892687,0.069443,0.390474,0.101853,0.841924,0.636078,0.982929,0.20538,0.75343,0.200868,0.104509,0.191295,0.932473,0.418905,0.0524394,0.871555,0.939231,0.840011,0.556158,0.382713,0.0404558,0.286527,0.685649,0.701209,0.444701,0.651346,0.323229,0.140414,0.758453,0.316451,0.422173,0.60506,0.95707,0.0266874,0.390452,0.60856,0.874811,0.102893,0.188431,0.0597706,0.172406,0.258054,0.576602,0.254433,0.2411,0.929863,0.477549,0.297813,0.856911,0.53606,0.277328,0.174792,0.736834,0.214215,0.714069,0.984587,0.763721,0.582041,0.390545,0.16764,0.780137,0.811076,0.588296,0.299008,0.893636,0.494828,0.335845,0.19136,0.222188,0.510718,0.0525848,0.173216,0.960776,0.556372,0.240487,0.575895,0.168241,0.134908,0.81439,0.789623,0.130857,0.651075,0.341299,0.0100697,0.521582,0.164631,0.0552065,0.918967,0.132112,0.643988,0.519052,0.586398,0.650728,0.308067,0.0977606,0.731173,0.178469,0.430742,0.844399,0.497898,0.868386,0.801408,0.70443,0.445719,0.200661,0.085376,0.960621,0.792074,0.195874,0.656742,0.220086,0.965124,0.518207,0.992701,0.550265,0.975085,0.560399,0.430717,0.184816,0.719769,0.95935,0.436906,0.796127,0.319958,0.169986,0.456692,0.409851,0.557609,0.475386,0.543645,0.657603,0.482385,0.490189,0.993633,0.853256,0.28025,0.696986,0.576729,0.10674,0.0971873,0.989866,0.127361,0.779873,0.829818,0.570098,0.509445,0.445011,0.140155,0.320378,0.24238,0.21592,0.902759,0.891646,0.510065,0.656622,0.994961,0.963664,0.918078,0.646013,0.052207,0.562147,0.44677,0.254251,0.350992,0.751111,0.32671,0.552112,0.731392,0.712491,0.358179,0.350879,0.177018,0.879199,0.567853,0.0905219,0.26328,0.167362,0.0537955,0.763156,0.0297506,0.332795,0.0371073,0.176128,0.210551,0.0283777,0.913218,0.252211,0.37094,0.0300711,0.0624057,0.43229,0.196443,0.789966,0.244056,0.417338,0.99639,0.220367,0.149124,0.882135,0.744277,0.481446,0.147344,0.0748104,0.0271241,0.970673,0.624934,0.320627,0.783121,0.289401,0.642024,0.0151258,0.46539,0.723956,0.629494,0.258443,0.880219,0.024574,0.793881,0.164652,0.0673804,0.735703,0.725029,0.754193,0.984745,0.20634,0.78613,0.161935,0.575075,0.913047,0.263153,0.907389,0.15472,0.51973,0.559449,0.79265,0.830152,0.886471,0.663622,0.872443,0.71848,0.282501,0.076993,0.539555,0.225515,0.149043,0.399785,0.531255,0.136315,0.06046,0.971043,0.284148,0.166922,0.743258,0.358087,0.416067,0.691114,0.159213,0.0882414,0.909596,0.168775,0.392828,0.585836,0.122603,0.774261,0.646235,0.853099,0.703171,0.219529,0.708089,0.067834,0.143069,0.861067,0.113688,0.48055,0.501233,0.506094,0.760965,0.756234,0.557551,0.728706,0.686305,0.846937,0.599652,0.249637,0.678347,0.321057,0.575059,0.709009,0.0330206,0.270054,0.691977,0.383204,0.744344,0.270063,0.246052,0.715816,0.782047,0.22467,0.265421,0.513999,0.764483,0.790074,0.0743291,0.951401,0.320344,0.973164,0.2537,0.232042,0.476349,0.463467,0.604726,0.64507,0.227907,0.370167,0.577069,0.157788,0.248659,0.802557,0.473722,0.880932,0.0410907,0.993596,0.15677,0.0305695,0.312253,0.150091,0.277621,0.0988768,0.25852,0.716577,0.645218,0.196033,0.109069,0.322408,0.884229,0.250312,0.882652,0.704405,0.376013,0.972115,0.311888,0.66015,0.978082,0.981083,0.641175,0.848331,0.853634,0.451618,0.967156,0.256189,0.802964,0.677069,0.966894,0.53627,0.0173787,0.38075,0.945347,0.290511,0.276135,0.727881,0.586566,0.159217,0.368471,0.425467,0.425249,0.390826,0.774302,0.744457,0.263434,0.615378,0.170448,0.869611,0.817121,0.0797033,0.646855,0.0224321,0.857126,0.684265,0.373442,0.964539,0.226564,0.597554,0.190519,0.156237,0.0640749,0.0889035,0.223546,0.657452,0.696572,0.45446,0.801684,0.596071,0.54957,0.661247,0.959396,0.43662,0.408629,0.586555,0.790065,0.431223,0.498991,0.498195,0.414705,0.684189,0.350294,0.961751,0.762683,0.78222,0.964309,0.993633,0.0185953,0.945966,0.598764,0.282551,0.598064,0.385544,0.557643,0.629824,0.260134,0.549994,0.017252,0.394558,0.352523,0.931645,0.37791,0.736116,0.351264,0.79823,0.591208,0.202754,0.674765,0.652957,0.894674,0.624055,0.304294,0.0498674,0.632436,0.690451,0.992164,0.925708,0.851446,0.0891648,0.211664,0.2768,0.672632,0.581361,0.43007,0.474875,0.452814,0.920065,0.313717,0.298727,0.0977986,0.833468,0.805193,0.634167,0.37962,0.00558507,0.0873114,0.82696,0.126061,0.332704,0.205268,0.653058,0.974632,0.840233,0.111265,0.453915,0.0829291,0.431228,0.103356,0.818828,0.250626,|0.0703529,0.0492069,0.787161,0.291873,0.229062,0.583877,0.187932,0.771633,0.744231,0.110736,0.106503,0.626537,0.0477755,0.926889,0.345271,0.60672,0.629315,0.85859,0.654924,0.188733,0.155728,0.184437,0.558618,0.766596,0.967198,0.53453,0.375372,0.0114323,0.97159,0.789527,0.671274,0.39213,0.588315,0.48312,0.388355,0.866736,0.575428,0.236476,0.920735,0.238192,0.595102,0.473845,0.0570109,0.867841,0.26048,0.323827,0.727922,0.821555,0.377237,0.973684,0.727555,0.238739,0.919104,0.868459,7.02143e-05,0.211243,0.102826,0.630574,0.759506,0.832961,0.533396,0.605651,0.0891277,0.208629,0.00655216,0.0119423,0.579048,0.523861,0.736318,0.64281,0.459098,0.869961,0.42751,0.70636,0.581737,0.581559,0.650133,0.49913,0.5002,0.865914,0.128142,0.699528,0.750302,0.875614,0.294935,0.788744,0.163811,0.527707,0.112082,0.404359,0.311576,0.36459,0.134325,0.562151,0.505567,0.746879,0.99995,0.201541,0.139341,0.22368,0.84431,0.670467,0.829167,0.164825,0.58198,0.86125,0.0698963,0.235288,0.763401,0.286523,0.0788152,0.203015,0.923523,0.224809,0.851214,0.397645,0.619241,0.530348,0.470409,0.768735,0.74911,0.0330917,0.682744,0.981273,0.0529746,0.178089,0.153998,0.651812,0.813638,0.127548,0.616875,0.274322,0.0440468,0.319622,0.864268,0.309778,0.740619,0.0613232,0.705881,0.235148,0.657294,0.854243,0.134761,0.603297,0.0267597,0.99828,0.223889,0.957171,0.457828,0.461416,0.692415,0.135733,0.668148,0.354764,0.327188,0.485798,0.995485,0.257806,0.966682,0.502404,0.85405,0.19264,0.3236,0.150837,0.542294,0.743322,0.352501,0.606994,0.626623,0.587049,0.88049,0.653738,0.457914,0.314368,0.814875,0.776945,0.330281,0.00269967,0.823655,0.420184,0.266037,0.0635223,0.182576,0.537883,0.218857,0.312147,0.166235,0.813976,0.407529,0.212332,0.427927,0.622083,0.291164,0.0619847,0.795652,0.222333,0.266018,0.16873,0.459255,0.224194,0.610079,0.155312,0.464819,0.80198,0.19142,0.611218,0.59648,0.530656,0.100104,0.226912,0.515822,0.6061,0.842667,0.527675,0.95013,0.259064,0.988028,0.303036,0.378789,0.806893,0.75274,0.322944,0.270651,0.684145,0.799788,0.983897,0.983064,0.855551,0.0373189,0.755491,0.255794,0.632778,0.431038,0.628403,0.0310977,0.0781417,0.299855,0.643331,0.780962,0.23527,0.254054,0.51342,0.743691,0.0942997,0.523069,0.346681,0.160139,0.385742,0.00715882,0.709828,0.535013,0.850912,0.310187,0.0183797,0.602267,0.780346,0.807953,0.335234,0.0144897,0.806364,0.361066,0.0318271,0.53446,0.487601,0.420548,0.0743405,0.768112,0.792232,0.741339,0.346297,0.65859,0.812172,0.625357,0.627661,0.979921,0.364418,0.459842,0.139414,0.681241,0.880666,0.403439,0.760714,0.460545,0.202627,0.555863,0.862383,0.606417,0.479074,0.327889,0.956115,0.897063,0.124943,0.113979,0.546506,0.947693,0.675752,0.515464,0.610707,0.140965,0.578166,0.621744,0.733857,0.0911725,0.911958,0.679042,0.288051,0.75184,0.605896,0.918547,0.293138,0.770557,0.314037,0.302287,0.493784,0.880956,0.598689,0.0416689,0.963691,0.268547,0.345874,0.511671,0.853249,0.468472,0.145732,0.268565,0.682842,0.620576,0.543608,0.290402,0.619945,0.548649,0.530244,0.761446,0.13534,0.166075,0.874776,0.621842,0.332514,0.345037,0.951407,0.259542,0.945142,0.123425,0.457416,0.676724,0.454953,0.528937,0.57947,0.385459,0.657914,0.181557,0.420155,0.950592,0.611948,0.162217,0.954917,0.366235,0.199931,0.520503,0.140885,0.709271,0.968041,0.401171,0.817519,0.802814,0.0405542,0.0725529,0.333451,0.521641,0.407317,0.310819,0.226122,0.383348,0.730245,0.990826,0.873493,0.469085,0.573744,0.430153,0.372928,0.949103,0.608604,0.584605,0.743497,0.145291,0.581282,0.295027,0.106696,0.30327,0.353357,0.970514,0.317817,0.620016,0.785634,0.342923,0.986916,0.650155,0.670812,0.618102,0.234106,0.508596,0.61677,0.340866,0.357962,0.865117,0.992681,0.410346,0.00201291,0.952068,0.0907744,0.509867,0.577806,0.00961429,0.541878,0.322237,0.31309,0.321882,0.0070743,0.770999,0.623027,0.289497,0.0647933,0.12031,0.309705,0.371888,0.492206,0.983033,0.065905,0.0441243,0.160944,0.565398,0.530756,0.107178,0.802959,0.459699,0.990503,0.655174,0.719497,0.348595,0.305429,0.0438387,0.118098,0.525002,0.228342,0.26166,0.133266,0.0665234,0.371771,0.914173,0.958541,0.307616,0.924236,0.152398,0.688356,0.0982178,0.41124,0.937875,0.544515,0.513832,0.835318,0.315972,0.300773,0.349376,0.958273,0.636415,0.640141,0.39098,0.059626,0.692317,0.283563,0.301987,0.913306,0.779562,0.0936798,0.516573,0.0513773,0.701228,0.429888,0.477495,0.648296,0.967156,0.0971075,0.0590073,0.72658,0.569035,0.319478,0.99541,0.00717133,0.607417,0.283058,0.611294,0.649998,0.752025,0.592162,0.912248,0.378002,0.466981,0.794472,0.0923192,0.0432432,0.163728,0.955413,0.713392,0.01608,0.934883,0.551783,0.0325084,0.795747,0.224691,0.23796,0.899324,0.523118,0.274991,0.304933,0.76398,0.0302298,0.690825,0.922932,0.0909177,0.171952,0.319947,0.641349,0.64761,0.878018,0.0711448,0.527472,0.269003,0.80777,0.10207,0.68105,0.552225,0.947319,0.964985,0.484747,0.636892,0.450842,0.0175498,0.303096,0.489294,0.222156,0.872683,0.040452,0.187182,0.963883,0.0468944,0.728539,0.816583,0.165857,0.232909,0.120505,0.225721,0.770109,0.447355,0.610647,0.267943,0.333409,0.147595,0.970251,0.877924,0.465047,0.0242208,0.370108,0.563694,0.252686,0.308407,0.147379,0.529525,0.807253,0.967907,0.398922,0.339068,0.417156,0.717717,0.186595,0.542771,0.211564,0.365484,0.0194734,0.949893,0.196819,0.000730991,0.532629,0.046211,0.500385,0.998829,0.637216,0.0718941,0.889559,0.549418,0.895024,0.486987,0.0358717,0.0602491,0.0825474,0.841434,0.992066,0.351471,0.486614,0.396497,0.899011,0.168243,0.918714,0.189022,0.745417,0.0542913,0.0351723,0.948053,0.745882,0.170945,0.100606,0.33935,0.111212,0.101654,0.694659,0.777517,0.345894,0.765078,0.812421,0.943705,0.758972,0.853499,0.588615,0.776507,0.908323,0.485222,0.289928,0.809387,0.216838,0.959172,0.266965,0.632588,0.554822,0.656853,0.866239,0.954743,0.210889,0.432333,0.859502,0.888356,0.643221,0.997475,0.939964,0.796915,0.206202,0.638291,0.262344,0.376459,0.0708957,0.937853,0.907388,0.289299,0.574812,0.0511019,0.0456889,0.470434,0.00755614,0.667927,0.32539,0.108218,0.10799,0.713526,0.274866,0.17689,0.578289,0.67966,0.528742,0.645258,0.64208,0.0650331,0.931151,0.115751,0.519228,0.858115,0.654909,0.845883,0.340493,0.772356,0.0914357,0.962152,0.704842,0.784152,0.963312,0.910165,0.634632,0.77211,0.0790848,0.300446,0.269712,0.475914,0.26056,0.315251,0.915777,0.489008,0.1769,0.838248,0.904452,0.420765,0.860861,0.842508,0.418117,0.0555729,0.831138,0.336739,0.86778,0.816238,0.307551,0.180328,0.357587,0.748326,0.972461,0.0324267,0.959699,0.0783304,0.422518,0.494096,0.832592,0.914255,0.042144,0.799281,0.749585,0.143402,0.069864,0.715721,0.51332,0.593431,0.932591,0.606205,0.333259,0.598136,0.193655,0.914786,0.427151,0.102957,0.922245,0.352548,0.769589,0.75826,0.416371,0.433355,0.87041,0.769292,0.228859,0.835503,0.0586284,0.259222,0.151369,0.0104188,0.506072,0.117314,0.126291,0.585662,0.949248,0.75989,0.915812,0.0852639,0.26286,0.562546,0.185225,0.543692,0.00317824,0.0824638,0.766299,0.28354,0.606272,0.179669,0.520287,0.242099,0.976728,0.476036,0.89294,0.546894,0.0374516,0.567945,0.347869,0.237987,0.619581,0.951098,0.584789,0.575636,0.193543,0.927777,0.754172,0.0488485,0.540141,0.767231,0.961646,0.220716,0.331089,0.416734,0.693826,0.0830778,0.720895,0.783666,0.132929,0.74167,0.674765,0.774935,0.0787723,0.845237,0.812355,0.932613,0.800839,0.428198,0.845909,0.943961,0.701423,0.928683,0.130545,0.264577,0.708763,0.484375,0.954881,0.0453684,0.956661,0.430062,0.203816,0.978655,0.407295,0.167406,0.46846,0.480068,0.841484,0.45754,0.205771,0.443655,0.843491,0.420617,0.836524,0.239194,0.465114,0.777508,0.150044,0.375338,0.72643,0.621021,0.910062,0.855082,0.765634,0.374402,0.773561,0.196353,0.873544,0.549212,0.00519693,0.0177847,0.618913,0.0542834,0.565735,0.442996,0.440287,0.440097,0.450465,0.328088,0.0473807,0.750379,0.995804,0.0326346,0.494824,0.741334,0.244076,0.241497,0.615787,0.849403,0.302618,0.780047,0.240133,0.437667,0.474292,0.85928,0.338707,0.480775,0.709422,0.166694,0.660723,0.621376,0.955583,0.910747,0.252921,0.759763,0.169003,0.468413,0.473002,0.455066,0.313919,0.999102,0.409353,0.0932193,0.979267,0.082549,0.57055,0.843985,0.372498,0.419602,0.640917,0.300249,0.0451564,0.813785,0.684712,0.294447,0.101096,0.999215,0.0381755,0.531613,0.00327897,0.504905,0.482044,0.883857,0.523506,0.95028,0.649122,0.327801,0.638597,0.351841,0.942709,0.394261,0.454284,0.316736,0.136096,0.481837,0.924123,0.638308,0.122635,0.559842,0.375967,0.152962,0.268799,0.42856,0.948754,0.821607,0.763218,0.920698,0.928793,0.556873,0.232584,0.838695,0.868515,0.264178,0.637827,0.725582,0.695567,0.326697,0.540977,0.605612,0.504434,0.56345,0.0201504,0.328837,0.980514,0.198402,0.53654,0.017711,0.47305,0.527166,0.434451,0.16524,0.686768,0.409828,0.954856,0.599388,0.0344475,0.0744095,0.241909,0.0546228,0.493386,0.48187,0.858582,0.562642,0.0598859,0.333418,0.663061,0.471599,0.0590102,0.551907,0.524724,0.225699,0.0528073,0.372766,0.626542,0.0607642,0.67951,0.953539,0.851305,0.246483,0.381115,0.611065,0.462295,0.295024,0.847081,0.472621,0.49087,0.623968,0.504066,0.551424,0.682149,0.268234,0.0129998,0.213887,0.411577,0.0786188,0.516504,|0.50822,0.891492,0.312544,0.516635,0.821571,0.555803,0.672297,0.300508,0.512263,0.913835,0.00999272,0.79428,0.111942,0.902858,0.109744,0.430481,0.558289,0.61795,0.307785,0.90638,0.401236,0.707166,0.624441,0.557292,0.790445,0.636506,0.913893,0.54347,0.285209,0.622907,0.859213,0.922257,0.662816,0.498855,0.2912,0.974535,0.430101,0.0815788,0.779891,0.886799,0.51742,0.53041,0.660544,0.459633,0.486416,0.205655,0.66952,0.912885,0.094207,0.189869,0.904958,0.472906,0.099463,0.518399,0.456886,0.470069,0.118655,0.351094,0.0173517,0.810589,0.187957,0.264122,0.0143552,0.227688,0.79272,0.919199,0.792637,0.0867549,0.586983,0.0664235,0.491091,0.842098,0.216723,0.140896,0.357344,0.889726,0.460151,0.524181,0.213859,0.298438,0.9049,0.984012,0.69896,0.899503,0.752369,0.624124,0.893056,0.123628,0.380585,0.83424,0.737708,0.320542,0.269404,0.394828,0.829667,0.344695,0.837194,0.686482,0.767147,0.131562,0.321523,0.945802,0.234051,0.111137,0.595603,0.75496,0.892954,0.24691,0.108633,0.46047,0.133007,0.25598,0.245063,0.69885,0.954561,0.95148,0.852262,0.947693,0.675578,0.256276,0.173244,0.11001,0.585216,0.0577947,0.885453,0.825141,0.551277,0.407179,0.422652,0.78478,0.214311,0.235001,0.0350208,0.913312,0.0540109,0.8463,0.71559,0.365702,0.446107,0.904791,0.0484805,0.084977,0.366142,0.57718,0.760444,0.469262,0.852956,0.158843,0.299265,0.523733,0.502956,0.790193,0.131493,0.0547708,0.798332,0.937257,0.45469,0.390649,0.994261,0.909676,0.858445,0.0582865,0.0685915,0.534888,0.652571,0.523577,0.603994,0.452431,0.708353,0.263353,0.00162822,0.776793,0.334834,0.565662,0.311262,0.0579717,0.979837,0.559706,0.298324,0.781503,0.507977,0.95036,0.392365,0.00830996,0.0146571,0.263657,0.84564,0.91681,0.970145,0.404857,0.851647,0.578414,0.86925,0.31235,0.585923,0.103872,0.0929804,0.831659,0.79502,0.681008,0.564058,0.608525,0.130343,0.0418292,0.929024,0.952108,0.282279,0.230901,0.180246,0.501433,0.91518,0.86483,0.35325,0.0108305,0.819942,0.810335,0.999912,0.616494,0.0187274,0.7198,0.632761,0.405455,0.470135,0.0681177,0.513273,0.737713,0.926333,0.823061,0.432539,0.414935,0.921445,0.218501,0.618104,0.0577323,0.486931,0.286781,0.00873977,0.488325,0.25755,0.60112,0.788847,0.990781,0.52035,0.682491,0.769637,0.562642,0.92393,0.148957,0.377932,0.37485,0.941521,0.268458,0.584915,0.399587,0.414569,0.554678,0.872835,0.16647,0.543246,0.583335,0.140046,0.380961,0.344766,0.590512,0.216074,0.616196,0.4295,0.182898,0.69835,0.125375,0.686098,0.475283,0.84218,0.117847,0.460516,0.116548,0.523897,0.365956,0.330968,0.891476,0.0668854,0.83362,0.656519,0.318578,0.674327,0.564832,0.97026,0.417432,0.979372,0.85479,0.386004,0.635529,0.794963,0.500023,0.74153,0.753573,0.0513842,0.384535,0.990208,0.235905,0.560289,0.256518,0.520551,0.363567,0.525524,0.062082,0.543108,0.448239,0.491862,0.0284498,0.391566,0.986347,0.571752,0.772491,0.119365,0.210774,0.156938,0.825273,0.833628,0.670309,0.391319,0.223737,0.876104,0.232003,0.527231,0.348937,0.779045,0.644848,0.104162,0.456034,0.479664,0.381488,0.0926405,0.713292,0.236416,0.799028,0.692079,0.147742,0.693106,0.783331,0.829819,0.0057928,0.040144,0.961497,0.739209,0.420481,0.786348,0.117083,0.513387,0.113746,0.348063,0.675408,0.073092,0.420034,0.378534,0.314684,0.217334,0.753083,0.532343,0.935945,0.401128,0.471203,0.429018,0.811732,0.319115,0.992285,0.777244,0.948868,0.637593,0.680686,0.686289,0.141154,0.473479,0.454094,0.265837,0.0914243,0.945646,0.534188,0.727219,0.0322867,0.779886,0.950204,0.333913,0.643059,0.0553358,0.597518,0.0249604,0.970181,0.700446,0.0506163,0.524154,0.395844,0.080274,0.0614587,0.52341,0.517503,0.353276,0.398839,0.9541,0.492279,0.891173,0.912586,0.678719,0.699194,0.946023,0.890689,0.385615,0.226001,0.557708,0.399985,0.0416202,0.890077,0.867201,0.567772,0.153624,0.185656,0.341298,0.34977,0.105431,0.852175,0.741243,0.662715,0.385828,0.584372,0.506432,0.609789,0.0729972,0.606274,0.601003,0.938361,0.926808,0.754354,0.915274,0.3653,0.34836,0.739637,0.479147,0.294891,0.391249,0.621694,0.680648,0.212025,0.258892,0.51138,0.885176,0.924234,0.522444,0.0766893,0.208314,0.646171,0.214522,0.713278,0.814616,0.180569,0.133892,0.0426324,0.93295,0.919068,0.0671818,0.317152,0.599792,0.230891,0.185392,0.431542,0.474261,0.631476,0.0955321,0.457757,0.514553,0.359693,0.687547,0.220833,0.833387,0.889316,0.63816,0.23304,0.941954,0.650448,0.203538,0.607446,0.26421,0.73233,0.413776,0.756062,0.326473,0.818155,0.829715,0.724578,0.437722,0.981144,0.104379,0.772258,0.620973,0.567134,0.126312,0.678485,0.310574,0.475131,0.306611,0.222311,0.775818,0.564262,0.794727,0.571924,0.714133,0.252392,0.299016,0.235727,0.85453,0.325108,0.145612,0.52794,0.60971,0.995558,0.860277,0.378866,0.957327,0.729012,0.210316,0.159394,0.411547,0.691983,0.465094,0.172942,0.567095,0.350951,0.9826,0.511318,0.0828577,0.357461,0.782218,0.115486,0.621744,0.341767,0.551552,0.579085,0.300506,0.539843,0.594762,0.686253,0.422308,0.518946,0.303089,0.36069,0.416024,0.515901,0.00213414,0.0152243,0.638999,0.640268,0.979796,0.0360126,0.388722,0.95216,0.579222,0.0222642,0.251164,0.859026,0.979958,0.802173,0.26178,0.25662,0.867217,0.5062,0.0293904,0.0373779,0.882809,0.702013,0.663,0.35122,0.0152061,0.664753,0.450161,0.294865,0.511522,0.644962,0.647334,0.39624,0.276586,0.316893,0.920494,0.0449671,0.712189,0.573455,0.418884,0.102666,0.299822,0.800523,0.987501,0.103713,0.195444,0.386808,0.936568,0.0104168,0.450824,0.499574,0.0695554,0.130815,0.440309,0.252153,0.156795,0.805384,0.382915,0.783743,0.761438,0.477572,0.615322,0.191356,0.381048,0.869621,0.105351,0.220867,0.887129,0.912619,0.402942,0.192165,0.564068,0.161315,0.909964,0.518465,0.653994,0.210131,0.554657,0.626262,0.543986,0.347443,0.95672,0.903233,0.536966,0.809758,0.598002,0.448982,0.125438,0.747119,0.0860065,0.458179,0.0834107,0.254511,0.139032,0.436787,0.372039,0.874343,0.691887,0.553642,0.489355,0.607471,0.386735,0.28864,0.804899,0.568188,0.442387,0.65023,0.47608,0.775878,0.426681,0.360968,0.525633,0.263175,0.776692,0.730709,0.369478,0.967679,0.968392,0.0687534,0.164767,0.392741,0.329324,0.261449,0.288643,0.601235,0.348569,0.723697,0.433994,0.932233,0.483952,0.873822,0.805401,0.513681,0.458253,0.17065,0.0041858,0.728771,0.150042,0.0416182,0.159298,0.599969,0.287244,0.730497,0.143745,0.196963,0.922544,0.461452,0.300604,0.962077,0.562987,0.274841,0.767042,0.653234,0.439047,0.0362782,0.262389,0.345037,0.758086,0.413903,0.829113,0.234035,0.658731,0.338236,0.979759,0.811484,0.916501,0.28671,0.437504,0.412446,0.144422,0.200585,0.497812,0.820705,0.557614,0.760598,0.285615,0.95519,0.569639,0.443827,0.240514,0.812988,0.0700806,0.00583404,0.833293,0.413642,0.827977,0.0328674,0.941344,0.634382,0.932976,0.00951326,0.542633,0.802646,0.920005,0.176935,0.749067,0.868593,0.144442,0.195541,0.70423,0.2859,0.150833,0.735141,0.562536,0.8656,0.902869,0.717941,0.799375,0.371199,0.645674,0.393124,0.94598,0.997972,0.370933,0.29936,0.505502,0.706223,0.354946,0.502017,0.26109,0.116722,0.676816,0.635977,0.810432,0.0242853,0.469971,0.158225,0.245817,0.43058,0.149611,0.0253984,0.431476,0.949855,0.620726,0.294862,0.663484,0.759844,0.336312,0.800295,0.380381,0.578115,0.914789,0.0892628,0.482977,0.0984181,0.136735,0.00632888,0.555605,0.887427,0.504231,0.206839,0.770914,0.194989,0.809934,0.0386093,0.060041,0.407604,0.0478551,0.273118,0.0829406,0.998548,0.403927,0.397389,0.315394,0.134161,0.371442,0.219279,0.725935,0.600412,0.468625,0.742592,0.338201,0.746239,0.0555067,0.68075,0.35036,0.424741,0.369221,0.887132,0.677966,0.85207,0.610301,0.425082,0.246558,0.644563,0.989073,0.0169684,0.398793,0.422011,0.980263,0.320507,0.529371,0.888941,0.454234,0.544241,0.920802,0.65043,0.277586,0.267686,0.132606,0.0183941,0.38659,0.881362,0.897005,0.0871859,0.951628,0.879235,0.506846,0.528026,0.512303,0.441301,0.524088,0.295402,0.0908414,0.963289,0.636779,0.994431,0.428109,0.520186,0.944536,0.588249,0.834115,0.342574,0.146026,0.226122,0.0551963,0.609024,0.835495,0.702957,0.797536,0.379326,0.996826,0.824343,0.407634,0.435226,0.79126,0.109833,0.0236533,0.788613,0.498224,0.0518486,0.0333927,0.788702,0.698853,0.282862,0.764369,0.388107,0.935083,0.5206,0.813231,0.917389,0.176393,0.560128,0.217382,0.341238,0.675665,0.89666,0.738614,0.211211,0.864501,0.126866,0.946679,0.109079,0.591226,0.442813,0.63684,0.415569,0.784277,0.971533,0.603589,0.855138,0.578774,0.65082,0.745024,0.0917647,0.63055,0.610142,0.561258,0.206759,0.951658,0.417101,0.442942,0.612017,0.4837,0.285378,0.530697,0.0835384,0.369234,0.0700746,0.732124,0.563162,0.0421772,0.118657,0.154363,0.344231,0.617794,0.353715,0.681133,0.938844,0.436982,0.460908,0.838694,0.0436807,0.752185,0.508304,0.0797636,0.0651518,0.978374,0.812529,0.0809527,0.682608,0.378512,0.395312,0.374007,0.663129,0.0434114,0.336311,0.335741,0.181798,0.458831,0.294931,0.487861,0.839064,0.355609,0.983261,0.343846,0.368888,0.897876,0.693709,0.579796,0.750106,0.98616,0.417737,0.382475,0.978455,0.0720052,0.994029,0.450647,0.396499,0.171646,0.0750604,0.443177,0.814506,0.225396,0.128347,0.159236,0.148705,0.0371599,0.138735,0.568345,0.508796,0.105136,0.604326,0.871733,0.675539,|0.485077,0.375159,0.606941,0.496531,0.3929,0.614537,0.162807,0.360006,0.688132,0.887933,0.184468,0.770943,0.717411,0.0474707,0.931957,0.694549,0.917668,0.15677,0.517549,0.0235122,0.187207,0.873286,0.522415,0.501539,0.679749,0.112081,0.627198,0.146831,0.86332,0.764819,0.427019,0.708881,0.532225,0.254348,0.0302268,0.550144,0.145076,0.187864,0.610012,0.614592,0.212314,0.305055,0.346293,0.446646,0.564258,0.405173,0.156807,0.969938,0.247823,0.600355,0.0869532,0.73401,0.8501,0.167114,0.545675,0.0606724,0.820179,0.055066,0.0513599,0.00316769,0.145518,0.785772,0.306344,0.428663,0.379658,0.690314,0.639226,0.118238,0.739747,0.221958,0.633849,0.737369,0.703669,0.596831,0.166386,0.631477,0.530603,0.911444,0.0763314,0.949068,0.041855,0.905021,0.244218,0.0811825,0.74047,0.879968,0.13425,0.569826,0.813255,0.25336,0.128756,0.634838,0.733615,0.229503,0.474192,0.570432,0.881846,0.315383,0.84222,0.109733,0.602913,0.95361,0.714867,0.536245,0.396333,0.481963,0.862799,0.14469,0.264997,0.925158,0.893534,0.930839,0.683828,0.641502,0.738344,0.0685791,0.167355,0.245781,0.278949,0.951281,0.132965,0.148238,0.237421,0.144898,0.067397,0.989044,0.53163,0.541377,0.813217,0.644232,0.947035,0.765593,0.176905,0.601495,0.641576,0.889356,0.834058,0.481728,0.0499225,0.419086,0.340604,0.949423,0.377861,0.731331,0.900179,0.519864,0.194326,0.848133,0.993935,0.321818,0.318997,0.668865,0.832438,0.265856,0.985409,0.371596,0.340864,0.536767,0.309389,0.732308,0.45979,0.970848,0.215269,0.601631,0.8275,0.112386,0.209377,0.073276,0.871164,0.855209,0.136926,0.167284,0.842337,0.288961,0.358996,0.964341,0.370802,0.959048,0.114927,0.180312,0.826784,0.484249,0.527531,0.561927,0.704283,0.191915,0.541291,0.558349,0.136279,0.685093,0.706636,0.598968,0.859963,0.599223,0.195976,0.4046,0.743855,0.640744,0.0742953,0.335466,0.328393,0.463459,0.00593287,0.642391,0.642093,0.248985,0.0945731,0.816543,0.262114,0.463834,0.742127,0.554038,0.0890968,0.897782,0.948401,0.829016,0.56022,0.212212,0.316156,0.809256,0.0229777,0.569816,0.923103,0.846276,0.378432,0.0741922,0.200926,0.404046,0.402288,0.625777,0.753928,0.751089,0.617235,0.778674,0.915303,0.689047,0.991655,0.865783,0.110813,0.393517,0.858018,0.0916145,0.86863,0.786445,0.181076,0.915684,0.148739,0.499985,0.862688,0.427071,0.695387,0.606861,0.80085,0.0939309,0.139664,0.688197,0.376634,0.226725,0.168666,0.877593,0.738424,0.0352776,0.0271972,0.166555,0.148521,0.418066,0.286994,0.552652,0.465068,0.635136,0.165275,0.0945409,0.177866,0.80107,0.912764,0.26561,0.664121,0.0368249,0.967685,0.993269,0.203715,0.511421,0.690368,0.0923864,0.614032,0.905257,0.887186,0.846082,0.026266,0.66996,0.92801,0.495332,0.310354,0.951498,0.765543,0.773232,0.311017,0.459612,0.0897818,0.390844,0.40839,0.773132,0.324039,0.147505,0.871677,0.185461,0.264459,0.8289,0.605197,0.474178,0.240056,0.866655,0.319043,0.806614,0.0733366,0.245766,0.898299,0.552175,0.577852,0.716244,0.409141,0.382809,0.695354,0.51289,0.414403,0.114152,0.799109,0.827965,0.414518,0.994411,0.555533,0.864801,0.165838,0.605243,0.491075,0.484157,0.800064,0.471609,0.448127,0.0553336,0.240306,0.412583,0.126304,0.736224,0.133798,0.84929,0.4838,0.897747,0.170511,0.251131,0.241006,0.887062,0.134088,0.863879,0.63287,0.447722,0.451093,0.601768,0.652769,0.375848,0.307756,0.0459358,0.880715,0.360128,0.538277,0.723321,0.618271,0.25128,0.386795,0.197785,0.648679,0.159262,0.769338,0.640062,0.0801925,0.517967,0.806958,0.290294,0.630178,0.562755,0.785915,0.903879,0.324304,0.211868,0.520082,0.677521,0.490284,0.10492,0.848385,0.577659,0.918948,0.774864,0.812188,0.645428,0.266637,0.0759578,0.532872,0.420608,0.703944,0.336403,0.420865,0.706495,0.648137,0.16556,0.0558053,0.623509,0.874213,0.748658,0.123703,0.146604,0.90282,0.0900305,0.738741,0.365788,0.0199982,0.149824,0.421501,0.0201964,0.483794,0.45721,0.111,0.900099,0.839238,0.741425,0.326497,0.628842,0.634099,0.153172,0.0394206,0.475196,0.402579,0.94912,0.117242,0.382976,0.21338,0.984454,0.199815,0.461719,0.98609,0.202959,0.953569,0.891104,0.992869,0.573863,0.845434,0.798639,0.950831,0.287067,0.511939,0.104468,0.479357,0.976755,0.0448385,0.914814,0.413127,0.752935,0.341708,0.0219082,0.103006,0.628918,0.815402,0.575305,0.0218807,0.360406,0.0480383,0.5154,0.69257,0.129979,0.533557,0.965727,0.830249,0.28421,0.439931,0.282397,0.590582,0.415944,0.992195,0.464221,0.226875,0.512537,0.522075,0.210716,0.60356,0.857319,0.305287,0.744058,0.619172,0.303942,0.626243,0.424244,0.531321,0.784578,0.168577,0.673678,0.569504,0.578192,0.840854,0.921092,0.565197,0.988109,0.676864,0.282159,0.954873,0.306776,0.973271,0.604403,0.820365,0.702861,0.870935,0.0626807,0.171263,0.482623,0.00497699,0.628576,0.406356,0.588511,0.720773,0.865246,0.560605,0.162884,0.492307,0.988632,0.64827,0.909819,0.910527,0.00847179,0.312047,0.566085,0.927917,0.0104522,0.119228,0.271258,0.284198,0.616142,0.224329,0.067439,0.307946,0.789257,0.721789,0.311895,0.948848,0.00243628,0.959997,0.795856,0.530928,0.495238,0.988294,0.964284,0.54128,0.565979,0.586938,0.943416,0.436592,0.680834,0.125238,0.456186,0.752065,0.782485,0.908105,0.300954,0.635425,0.874521,0.855118,0.320628,0.485442,0.13522,0.161075,0.0142131,0.012743,0.305745,0.515117,0.990609,0.863163,0.626333,0.0131753,0.0514287,0.164045,0.26501,0.508938,0.847994,0.636854,0.927861,0.813826,0.129773,0.218277,0.781293,0.853266,0.776308,0.221974,0.952468,0.8713,0.0559401,0.470919,0.676977,0.749306,0.728071,0.454507,0.365509,0.973196,0.619068,0.776035,0.636588,0.335352,0.522782,0.744133,0.650423,0.0631738,0.801614,0.601204,0.239262,0.224373,0.243648,0.21038,0.0157856,0.402786,0.510769,0.20638,0.76859,0.425674,0.0181023,0.902957,0.456437,0.339647,0.870468,0.326914,0.880245,0.819001,0.668148,0.514445,0.916114,0.12372,0.412526,0.498316,0.590659,0.832577,0.121824,0.399227,0.00304812,0.549617,0.152212,0.436872,0.832576,0.548408,0.399237,0.768537,0.634212,0.851373,0.162837,0.397253,0.721859,0.900099,0.517054,0.376556,0.405716,0.763005,0.684636,0.920534,0.694363,0.859004,0.0549076,0.47951,0.709193,0.823882,0.13891,0.811852,0.69411,0.798871,0.716113,0.26851,0.614621,0.966896,0.762315,0.804669,0.265867,0.201189,0.311964,0.760264,0.612369,0.69659,0.473882,0.0186681,0.492608,0.593156,0.870628,0.851956,0.508771,0.980836,0.00568569,0.314068,0.750083,0.122808,0.842325,0.396779,0.161755,0.251038,0.744323,0.0435628,0.934558,0.741088,0.303009,0.888724,0.331711,0.599184,0.538821,0.940341,0.850874,0.715676,0.350199,0.0736158,0.217171,0.427535,0.847973,0.345244,0.335836,0.175413,0.609277,0.66782,0.617395,0.35973,0.977541,0.554429,0.38426,0.0803775,0.702538,0.637153,0.28181,0.210073,0.466401,0.572514,0.586768,0.787319,0.782643,0.137007,0.349246,0.128161,0.572706,0.465908,0.748595,0.78296,0.931165,0.781058,0.716292,0.111605,0.801413,0.282923,0.664759,0.0535978,0.992107,0.849019,0.361327,0.217943,0.798033,0.844409,0.189946,0.368126,0.624761,0.725053,0.215534,0.560697,0.914573,0.741486,0.771347,0.81428,0.298239,0.198547,0.122008,0.13135,0.920306,0.304059,0.94389,0.359861,0.255235,0.546231,0.353745,0.85385,0.58724,0.441488,0.169452,0.432562,0.0193943,0.585395,0.907342,0.862577,0.13561,0.901766,0.468682,0.0858466,0.526192,0.192675,0.965401,0.939082,0.222579,0.395485,0.954828,0.271312,0.58058,0.223036,0.365419,0.486418,0.579525,0.0647602,0.10111,0.73022,0.875776,0.899053,0.536789,0.790379,0.431797,0.588423,0.032044,0.0754765,0.691126,0.31886,0.624761,0.574589,0.441918,0.180974,0.460307,0.459179,0.1099,0.770767,0.176066,0.759559,0.182842,0.42145,0.950282,0.0326725,0.0423369,0.351876,0.0275429,0.63026,0.11083,0.506795,0.410108,0.834626,0.808661,0.733529,0.444758,0.803519,0.21632,0.364375,0.298653,0.873169,0.392937,0.839773,0.168102,0.00632292,0.204216,0.491705,0.60842,0.754174,0.684995,0.731347,0.46742,0.237079,0.826093,0.0515259,0.60955,0.513552,0.242103,0.449895,0.036987,0.897102,0.717694,0.648964,0.85394,0.813406,0.723176,0.219617,0.29105,0.23548,0.990376,0.647911,0.611403,0.628546,0.0560125,0.824064,0.10052,0.214331,0.0851824,0.736668,0.670356,0.920523,0.869289,0.930928,0.598176,0.280362,0.777959,0.541347,0.586128,0.482039,0.868659,0.192576,0.74511,0.306862,0.430708,0.821607,0.424565,0.281188,0.201648,0.751468,0.273179,0.788228,0.845506,0.950715,0.110172,0.903717,0.0889735,0.519114,0.56994,0.720051,0.516626,0.546511,0.0424303,0.603446,0.489574,0.678539,0.303203,0.795083,0.301275,0.328763,0.948982,0.962616,0.83279,0.378135,0.0076896,0.169093,0.541067,0.4091,0.940196,0.0311691,0.512362,0.353041,0.00507981,0.447742,0.000215232,0.346221,0.490184,0.764532,0.343417,0.806784,0.538486,0.330067,0.689675,0.645389,0.60603,0.053197,0.168439,0.540207,0.0966405,0.132965,0.561061,0.430218,0.960744,0.986576,0.458161,0.755631,0.0965472,0.00074017,0.934185,0.139733,0.205471,0.872866,0.0561432,0.655352,0.44357,0.865145,0.238533,0.490698,0.0776897,0.52014,0.578493,0.118655,0.249746,0.145761,0.549014,0.185451,0.943501,0.94948,0.724804,0.383257,0.0216752,0.233934,0.37043,0.0691032,0.402433,0.249256,0.178367,0.0609677,0.778696,0.108488,0.414796,0.922487,0.801899,0.941378,0.737079,0.0151138,0.243708,0.0322595,0.769578,|0.00763285,0.999053,0.142096,0.277769,0.85164,0.631729,0.223048,0.268261,0.183478,0.843309,0.329822,0.100768,0.0660163,0.909004,0.443728,0.168193,0.638419,0.046927,0.518287,0.746237,0.689441,0.540444,0.728611,0.400056,0.475228,0.687947,0.21664,0.934376,0.463578,0.621531,0.0961004,0.399915,0.793143,0.595137,0.532918,0.612812,0.688269,0.699234,0.366063,0.063341,0.369197,0.398447,0.235829,0.327329,0.237985,0.561485,0.830462,0.868047,0.399494,0.986005,0.661172,0.5877,0.998917,0.926271,0.596577,0.592864,0.708209,0.0434367,0.968177,0.0684518,0.977345,0.651166,0.382368,0.436338,0.352557,0.825161,0.871388,0.46242,0.601257,0.475211,0.772668,0.694231,0.441094,0.045071,0.632742,0.912364,0.55505,0.134177,0.111791,0.842228,0.877325,0.262026,0.127553,0.0635399,0.487658,0.808092,0.740393,0.158138,0.321985,0.683727,0.499023,0.347083,0.980003,0.879582,0.799331,0.709694,0.376536,0.64101,0.0550004,0.549705,0.452173,0.557362,0.0268306,0.847622,0.348609,0.596507,0.978744,0.965378,0.529639,0.346543,0.497074,0.279315,0.187097,0.44883,0.776081,0.790313,0.400437,0.440841,0.23574,0.37571,0.341583,0.0744928,0.750025,0.454869,0.817448,0.892549,0.829116,0.316202,0.0694923,0.276328,0.339997,0.687939,0.695222,0.932961,0.0924519,0.808294,0.92724,0.689995,0.972651,0.898725,0.696372,0.971545,0.365444,0.940941,0.805555,0.0172441,0.546076,0.0204062,0.583996,0.854734,0.0910676,0.651198,0.420213,0.633084,0.659456,0.79235,0.0810679,0.747003,0.460047,0.663417,0.0834832,0.570286,0.807226,0.769819,0.625463,0.385413,0.749058,0.921448,0.845011,0.372181,0.0901784,0.146401,0.189504,0.419498,0.112593,0.368819,0.137193,0.175314,0.459229,0.807265,0.695144,0.165227,0.332588,0.63717,0.758489,0.586223,0.981506,0.000174642,0.99723,0.200546,0.340754,0.176884,0.960288,0.656649,0.184621,0.0383192,0.577966,0.761678,0.24396,0.271008,0.27202,0.178284,0.42455,0.938641,0.7439,0.173325,0.600085,0.922479,0.597596,0.559187,0.392404,0.493642,0.352077,0.239489,0.0870769,0.686014,0.537366,0.00273931,0.17346,0.187251,0.64719,0.893591,0.609641,0.54375,0.904461,0.00650275,0.411819,0.426943,0.0454026,0.491616,0.902526,0.783564,0.911496,0.625338,0.321615,0.364894,0.562858,0.47861,0.35877,0.014505,0.258637,0.83294,0.681448,0.571524,0.869628,0.149631,0.205882,0.77652,0.693722,0.662565,0.26828,0.444817,0.212916,0.627526,0.613238,0.250143,0.883845,0.156816,0.92095,0.834031,0.19451,0.158324,0.335486,0.630802,0.172687,0.72459,0.427681,0.243063,0.095949,0.382004,0.334064,0.821426,0.505696,0.0933812,0.21769,0.502621,0.288372,0.415709,0.171547,0.378087,0.657995,0.963027,0.446969,0.860545,0.306468,0.956299,0.383807,0.697368,0.440727,0.689716,0.951534,0.621883,0.0650368,0.531117,0.607455,0.437653,0.105373,0.61888,0.0670735,0.551907,0.714339,0.131982,0.539007,0.0812069,0.0765952,0.29678,0.558292,0.860039,0.797081,0.177607,0.357174,0.820053,0.0941278,0.396859,0.117234,0.544352,0.474485,0.0173514,0.143725,0.899275,0.678336,0.91479,0.29477,0.00383765,0.720605,0.366878,0.318606,0.436248,0.749235,0.312572,0.619726,0.710493,0.472716,0.67464,0.852915,0.788278,0.601678,0.577876,0.903693,0.0131162,0.0466354,0.604642,0.608542,0.719437,0.853196,0.438383,0.885202,0.388599,0.463107,0.303669,0.531614,0.404563,0.0858818,0.967375,0.602103,0.498894,0.832504,0.273969,0.513522,0.560452,0.0771077,0.448732,0.462938,0.147238,0.388236,0.796814,0.223709,0.732477,0.982126,0.823263,0.161353,0.766739,0.319185,0.567517,0.385508,0.391927,0.583715,0.491731,0.668568,0.184422,0.730157,0.136926,0.825327,0.0507168,0.0582467,0.330323,0.866696,0.0260001,0.701576,0.841536,0.996204,0.859597,0.617169,0.790593,0.311745,0.0381507,0.472416,0.697226,0.155261,0.673404,0.294535,0.660544,0.271907,0.421391,0.954561,0.865404,0.337377,0.651913,0.46826,0.709698,0.559099,0.518002,0.0988511,0.361514,0.764767,0.342401,0.54502,0.594301,0.6086,0.386258,0.288457,0.57706,0.108033,0.683131,0.115162,0.21744,0.123492,0.103932,0.502746,0.316803,0.73028,0.571472,0.927488,0.265367,0.889012,0.378462,0.0571191,0.87874,0.798048,0.559288,0.185539,0.842837,0.759147,0.886947,0.819387,0.848997,0.499002,0.0898181,0.591768,0.41283,0.0785231,0.0265117,0.18686,0.365631,0.541219,0.213611,0.681892,0.203029,0.672438,0.723897,0.861468,0.235663,0.174901,0.759955,0.213298,0.0214031,0.744407,0.674675,0.0526005,0.790524,0.214107,0.922837,0.722609,0.81414,0.123937,0.846606,0.618238,0.639341,0.218721,0.911532,0.00103718,0.690783,0.0778306,0.0811462,0.407284,0.567506,0.227447,0.081185,0.534952,0.285707,0.942058,0.784686,0.380436,0.762637,0.258176,0.190792,0.0962264,0.364973,0.0104738,0.982412,0.653889,0.558438,0.0877687,0.509391,0.420796,0.125426,0.235936,0.436506,0.785817,0.943828,0.0188931,0.614643,0.453209,0.657781,0.904686,0.898853,0.766039,0.808665,0.961238,0.191988,0.461422,0.305858,0.290085,0.478215,0.845118,0.323918,0.698963,0.726329,0.252421,0.924538,0.372229,0.668465,0.20559,0.323077,0.249767,0.226129,0.236526,0.767715,0.0508148,0.525336,0.582245,0.725093,0.482709,0.378638,0.974013,0.832401,0.204028,0.00925416,0.0235066,0.0793201,0.0673895,0.992153,0.102302,0.688114,0.124024,0.523101,0.302875,0.247908,0.65136,0.150745,0.126268,0.109133,0.524872,0.453425,0.108868,0.819272,0.623973,0.459899,0.220292,0.988577,0.846064,0.156891,0.736802,0.279532,0.54295,0.717896,0.85257,0.735254,0.192939,0.426456,0.951356,0.587216,0.229831,0.561311,0.38348,0.837083,0.096882,0.987306,0.643317,0.510819,0.529058,0.960538,0.0167373,0.613575,0.909655,0.792753,0.583336,0.11803,0.768423,0.0875133,0.542823,0.811903,0.958223,0.638711,0.687244,0.087757,0.78569,0.706595,0.032468,0.936443,0.84322,0.917723,0.965085,0.197757,0.166134,0.561432,0.783706,0.78728,0.629936,0.493661,0.218782,0.0778394,0.620019,0.429615,0.0407882,0.357954,0.860001,0.441912,0.595116,0.695583,0.749833,0.0243992,0.0405874,0.354228,0.0349692,0.30693,0.987215,0.553844,0.124192,0.78355,0.509864,0.884444,0.771716,0.460363,0.190027,0.766836,0.117027,0.900941,0.592014,0.736341,0.976469,0.615438,0.153167,0.948135,0.336603,0.968712,0.735252,0.955669,0.128236,0.920278,0.518411,0.624597,0.747794,0.110621,0.207507,0.438878,0.727893,0.555482,0.433463,0.703494,0.0324169,0.844786,0.539352,0.103645,0.419235,0.0773416,0.29518,0.169699,0.895294,0.283071,0.0730278,0.769547,0.749581,0.928871,0.230387,0.176239,0.529769,0.738524,0.906064,0.170955,0.407528,0.00141823,0.556947,0.745495,0.0915749,0.231848,0.978704,0.362278,0.301648,0.341652,0.0277013,0.647571,0.804943,0.555866,0.973388,0.943206,0.0480503,0.423763,0.20077,0.116407,0.713596,0.794611,0.537832,0.557733,0.407664,0.21972,0.477066,0.726254,0.249167,0.424437,0.832,0.749563,0.365681,0.323696,0.167354,0.680153,0.440748,0.939087,0.603492,0.898659,0.533816,0.855411,0.227183,0.737647,0.531419,0.114568,0.0731323,0.26671,0.270241,0.868321,0.130678,0.836463,0.467681,0.573382,0.125552,0.748484,0.424166,0.661661,0.0156484,0.430256,0.832292,0.421932,0.562438,0.489948,0.778084,0.29746,0.781189,0.605779,0.0699526,0.986726,0.625,0.232281,0.661942,0.145068,0.0843666,0.932371,0.86058,0.170516,0.0349061,0.546739,0.461266,0.684115,0.867533,0.0128772,0.0122634,0.590116,0.248537,0.558254,0.402701,0.387477,0.615852,0.065927,0.638815,0.527472,0.393942,0.606669,0.284568,0.899935,0.385864,0.702142,0.898458,0.911086,0.564163,0.641303,0.98165,0.628237,0.511207,0.458681,0.651996,0.625524,0.628031,0.543959,0.369122,0.497664,0.0725352,0.254836,0.0587295,0.786493,0.504416,0.12471,0.917155,0.624583,0.954362,0.860957,0.361228,0.979834,0.15351,0.0607548,0.643204,0.46412,0.459581,0.19673,0.340688,0.0556394,0.25388,0.942473,0.101425,0.68121,0.919167,0.122837,0.877813,0.36063,0.0149786,0.2963,0.617181,0.687062,0.723674,0.962612,0.0362841,0.593906,0.120657,0.566477,0.0631465,0.432107,0.57721,0.670697,0.207796,0.185405,0.267029,0.0409674,0.403854,0.397122,0.571848,0.511597,0.90134,0.16801,0.655457,0.926685,0.0678376,0.108747,0.937799,0.225902,0.0361165,0.854506,0.391155,0.117553,0.275091,0.527598,0.984556,0.82525,0.769018,0.0417176,0.664767,0.458629,0.008349,0.335894,0.632962,0.996743,0.0195277,0.5578,0.731639,0.0956979,0.356476,0.134794,0.0482184,0.413818,0.431915,0.985639,0.604656,0.768189,0.841679,0.259189,0.96037,0.40556,0.326407,0.980109,0.137968,0.0929643,0.535293,0.896692,0.714515,0.289666,0.371319,0.87846,0.397279,0.321945,0.578245,0.545758,0.35332,0.250386,0.978752,0.393306,0.599084,0.0337607,0.475563,0.987405,0.883605,0.5333,0.311334,0.616042,0.538005,0.397836,0.577763,0.801459,0.583893,0.808658,0.948652,0.248254,0.227207,0.561859,0.662899,0.589756,0.0415998,0.102121,0.321766,0.981677,0.758132,0.387973,0.793236,0.792451,0.501253,0.281385,0.581947,0.261687,0.191862,0.297336,0.20043,0.227089,0.374471,0.92762,0.346082,0.852319,0.20883,0.650456,0.244625,0.979137,0.457667,0.0636926,0.527788,0.539157,0.165618,0.572801,0.753735,0.294059,0.455553,0.360907,0.00905859,0.557341,0.926107,0.895751,0.971875,0.782652,0.675991,0.363949,0.553691,0.340553,0.546321,0.624159,0.622431,0.0450635,0.864258,0.453459,0.137308,0.841712,0.0107799,0.256226,0.470564,0.807459,0.794257,0.793723,0.903708,0.0446822,0.799504,0.562526,0.81639,0.532614,0.701414,0.477807,0.812029,0.693509,|0.588283,0.177618,0.976844,0.435698,0.430238,0.348549,0.551087,0.629717,0.491277,0.666525,0.775526,0.819223,0.295679,0.118026,0.411493,0.0986756,0.962193,0.336815,0.847243,0.509547,0.928905,0.975015,0.0273304,0.603493,0.5587,0.65575,0.0535806,0.521994,0.252785,0.916192,0.61297,0.800145,0.668596,0.52032,0.171364,0.433623,0.170669,0.321591,0.91477,0.287564,0.285582,0.206427,0.398406,0.271247,0.114196,0.167586,0.22594,0.738906,0.845066,0.990275,0.655917,0.55742,0.204126,0.254889,0.251846,0.286956,0.983041,0.799689,0.209492,0.544103,0.618561,0.871199,0.876486,0.852825,0.205728,0.199527,0.295905,0.260587,0.989258,0.0225405,0.897489,0.0553792,0.528838,0.516626,0.299794,0.0360389,0.113283,0.220037,0.539196,0.817368,0.370684,0.953345,0.0583856,0.51884,0.554889,0.689179,0.739748,0.668326,0.363243,0.555158,0.15558,0.317407,0.261608,0.570496,0.0407503,0.269896,0.583815,0.248223,0.944002,0.455253,0.856474,0.275375,0.861153,0.779974,0.252803,0.015923,0.434474,0.0936241,0.884132,0.363279,0.03114,0.565264,0.162335,0.451885,0.896893,0.327924,0.773308,0.289216,0.97288,0.818593,0.673953,0.704656,0.509159,0.472876,0.8453,0.554384,0.928751,0.928872,0.0559047,0.0925496,0.847084,0.0524346,0.362658,0.95897,0.240833,0.429034,0.919412,0.136713,0.385532,0.504968,0.272575,0.352767,0.648103,0.0878674,0.944468,0.966096,0.061574,0.0493878,0.00339264,0.744457,0.372503,0.100636,0.515555,0.471238,0.385404,0.693041,0.214117,0.391012,0.0219193,0.733091,0.295949,0.359312,0.108346,0.0156357,0.186313,0.0317063,0.531935,0.963625,0.602211,0.610459,0.158777,0.777309,0.765373,0.0171564,0.288704,0.709433,0.914696,0.286975,0.550518,0.346802,0.0114581,0.072682,0.583303,0.54297,0.245966,0.0370615,0.910369,0.898251,0.660285,0.55988,0.555948,0.384848,0.145682,0.236204,0.625216,0.765855,0.459175,0.804416,0.125879,0.0314394,0.00609684,0.710077,0.208531,0.194848,0.632283,0.752241,0.689379,0.0119794,0.500191,0.577312,0.10475,0.882057,0.371952,0.468142,0.844592,0.08722,0.279328,0.989235,0.499789,0.440157,0.802045,0.0952916,0.0974867,0.945256,0.129715,0.391922,0.0799755,0.261118,0.914595,0.406965,0.404018,0.504687,0.836521,0.58988,0.867366,0.299613,0.989821,0.537613,0.311038,0.669946,0.118045,0.474509,0.265535,0.798205,0.774231,0.570833,0.214274,0.925437,0.0957602,0.596177,0.47613,0.828112,0.890133,0.0245942,0.00507838,0.317401,0.17567,0.244945,0.401849,0.556561,0.189758,0.256706,0.306351,0.670337,0.48547,0.0254312,0.0670324,0.223307,0.343102,0.782953,0.195272,0.389085,0.0322751,0.134576,0.964515,0.00919706,0.0283117,0.96036,0.470764,0.807274,0.117381,0.80178,0.0166826,0.25683,0.905363,0.368596,0.85387,0.105982,0.0249233,0.761034,0.573513,0.593777,0.286545,0.78644,0.135244,0.671467,0.62264,0.460068,0.712169,0.426221,0.437039,0.920678,0.13017,0.931192,0.170089,0.434521,0.313471,0.560289,0.652341,0.75161,0.975368,0.0314211,0.835975,0.107351,0.221656,0.0976719,0.940757,0.16256,0.300354,0.681419,0.2341,0.807421,0.058114,0.557282,0.00480145,0.0522241,0.181488,0.115651,0.0753312,0.575899,0.325958,0.286914,0.54462,0.0997337,0.728129,0.580208,0.265672,0.155518,0.223632,0.752397,0.256876,0.232851,0.543796,0.822303,0.532726,0.999905,0.627426,0.464332,0.712761,0.0768756,0.249027,0.994001,0.0126179,0.0514816,0.850731,0.858218,0.364779,0.197273,0.22537,0.0302176,0.304847,0.315186,0.846416,0.955172,0.83004,0.949958,0.867912,0.344795,0.90628,0.204374,0.466552,0.672654,0.65658,0.480716,0.479329,0.57584,0.675886,0.706197,0.943904,0.77043,0.509337,0.202277,0.402195,0.0338425,0.790074,0.836614,0.384198,0.996068,0.236636,0.573019,0.884993,0.657635,0.816535,0.389288,0.353149,0.0225174,0.377907,0.529896,0.26186,0.284155,0.382886,0.438006,0.331172,0.431733,0.786288,0.966479,0.971218,0.247907,0.170886,0.630971,0.98157,0.349043,0.814455,0.908265,0.0703093,0.887452,0.808487,0.73913,0.529451,0.0662578,0.933608,0.742202,0.73084,0.901512,0.559095,0.679216,0.531306,0.3938,0.291417,0.15729,0.540748,0.434673,0.203719,0.260376,0.71224,0.108007,0.14949,0.392509,0.34735,0.506565,0.540853,0.691089,0.980247,0.485444,0.719378,0.657692,0.866455,0.130971,0.440857,0.287893,0.119272,0.080561,0.28061,0.0948424,0.912383,0.105467,0.261669,0.0867894,0.820108,0.483618,0.680437,0.0265313,0.604488,0.838218,0.921276,0.259557,0.27414,0.176943,0.75711,0.528679,0.448015,0.65263,0.445647,0.643913,0.233505,0.148379,0.252522,0.0356491,0.460681,0.522691,0.569516,0.381438,0.370745,0.616474,0.0537661,0.336825,0.0647048,0.40382,0.406496,0.723404,0.677809,0.139967,0.223797,0.857929,0.36987,0.104944,0.915279,0.717295,0.310679,0.348691,0.618539,0.0388756,0.374424,0.584787,0.187878,0.32459,0.889744,0.970143,0.701388,0.985046,0.305647,0.800682,0.873746,0.790732,0.0236034,0.386111,0.846377,0.359766,0.309699,0.918659,0.230995,0.398032,0.348877,0.36261,0.394553,0.699462,0.601394,0.761082,0.244568,0.820878,0.604321,0.289357,0.608334,0.82329,0.49558,0.214545,0.597483,0.680826,0.0541214,0.365099,0.831514,0.981423,0.614898,0.852944,0.129169,0.647178,0.909019,0.815654,0.417685,0.200663,0.212598,0.788424,0.654542,0.75113,0.26259,0.663161,0.099474,0.325369,0.636666,0.709218,0.994056,0.826973,0.213465,0.0699354,0.139189,0.625408,0.397368,0.615877,0.939794,0.940106,0.724752,0.0700315,0.685885,0.347357,0.515945,0.503709,0.786302,0.874701,0.213062,0.302658,0.569773,0.760769,0.0437121,0.2192,0.607973,0.537324,0.948928,0.669305,0.0497486,0.183281,0.164153,0.775823,0.435303,0.528765,0.926708,0.0724145,0.550746,0.892408,0.80797,0.537048,0.548657,0.688622,0.286067,0.842315,0.322902,0.620051,0.359223,0.474456,0.335152,0.496077,0.0349413,0.973115,0.845541,0.685684,0.702626,0.154086,0.389169,0.0178782,0.466863,0.0763444,0.371657,0.630685,0.907053,0.986862,0.670991,0.97962,0.878107,0.721954,0.574675,0.250176,0.593564,0.170634,0.395107,0.100097,0.217718,0.225454,0.156985,0.721913,0.242571,0.203517,0.779392,0.293702,0.665215,0.0472569,0.250667,0.164495,0.840753,0.287178,0.732385,0.117255,0.513159,0.438315,0.250708,0.939542,0.259357,0.127486,0.348918,0.527883,0.223365,0.862639,0.484273,0.178239,0.106932,0.999199,0.398259,0.813619,0.997804,0.452921,0.910789,0.352165,0.154599,0.304353,0.0148327,0.992653,0.513902,0.112215,0.623281,0.760069,0.319449,0.946514,0.372002,0.304829,0.916849,0.765101,0.97278,0.110077,0.10237,0.0624297,0.563818,0.668249,0.228897,0.259242,0.618156,0.277423,0.00683123,0.640878,0.867244,0.201211,0.239307,0.278491,0.40668,0.48301,0.937465,0.675185,0.632273,0.623674,0.231159,0.301646,0.168359,0.312361,0.951409,0.420465,0.601218,0.275499,0.556514,0.678193,0.754927,0.213724,0.646593,0.792168,0.708213,0.683263,0.411142,0.981691,0.538422,0.449416,0.945155,0.353516,0.172637,0.947564,0.621091,0.321748,0.884197,0.305419,0.688921,0.0971713,0.0396202,0.788454,0.0742612,0.23857,0.808441,0.0032382,0.723483,0.812975,0.263254,0.678216,0.0850124,0.948739,0.860135,0.703022,0.656495,0.148858,0.817839,0.435392,0.22474,0.489577,0.14773,0.603467,0.298996,0.784547,0.260522,0.090975,0.691926,0.388181,0.0246102,0.175247,0.0704295,0.861611,0.55714,0.291971,0.344285,0.873565,0.503418,0.640999,0.738021,0.0485425,0.725189,0.0901957,0.821748,0.583008,0.992193,0.651882,0.0728018,0.923097,0.684735,0.288805,0.701114,0.266403,0.489294,0.997124,0.407227,0.876524,0.703978,0.31211,0.588413,0.476114,0.787111,0.72649,0.963713,0.225928,0.98614,0.0551006,0.785838,0.382314,0.589034,0.362047,0.0586098,0.336198,0.194187,0.796645,0.248518,0.871046,0.692099,0.454863,0.809378,0.564504,0.0531477,0.238708,0.973793,0.883239,0.0943389,0.887311,0.529015,0.5786,0.927089,0.526906,0.0204719,0.123805,0.021925,0.0256202,0.464794,0.174182,0.91681,0.85789,0.440958,0.0548823,0.150257,0.523492,0.293294,0.627646,0.262401,0.841495,0.035885,0.851181,0.347978,0.719643,0.521731,0.0970361,0.887717,0.576027,0.607625,0.0507244,0.713342,0.752478,0.716769,0.206083,0.543866,0.580624,0.343433,0.918032,0.0828683,0.377153,0.476663,0.485147,0.892327,0.390327,0.0290465,0.763744,0.413468,0.620446,0.750884,0.323908,0.492943,0.0979838,0.269467,0.474631,0.106103,0.292692,0.28307,0.349239,0.355194,0.31747,0.797704,0.869343,0.890545,0.635096,0.478258,0.139401,0.341613,0.805833,0.928057,0.615203,0.405666,0.20904,0.66949,0.400639,0.246489,0.301035,0.316897,0.606888,0.71439,0.0574591,0.537704,0.926595,0.143733,0.649812,0.668745,0.761979,0.781192,0.335483,0.83999,0.261467,0.760182,0.759275,0.0524616,0.043888,0.733125,0.953144,0.638169,0.78607,0.25517,0.848895,0.280583,0.665146,0.827647,0.00346643,0.720785,0.724559,0.798077,0.846439,0.0969428,0.697076,0.825652,0.221448,0.195849,0.245695,0.264539,0.524764,0.791964,0.622807,0.74743,0.294901,0.0239871,0.19681,0.769925,0.947652,0.549095,0.607649,0.333825,0.447041,0.720782,0.866565,0.0299541,0.101827,0.0873237,0.383294,0.415218,0.282176,0.696034,0.348401,0.955026,0.308455,0.112095,0.933189,0.722512,0.019292,0.0798526,0.43863,0.589613,0.597579,0.280697,0.991832,0.233821,0.307857,0.0286238,0.97293,0.0228234,0.269685,0.782528,0.40627,0.532981,0.0857801,0.472881,0.522431,0.395196,0.0198359,0.68198,0.748555,0.443313,0.0960038,0.00267118,0.480705,0.156506,0.66846,0.536616,0.304322,0.828005,0.437022,0.262933,0.494656,|0.160606,0.27342,0.620079,0.976511,0.515626,0.605812,0.906958,0.831432,0.195201,0.364325,0.62826,0.90565,0.157459,0.81127,0.550336,0.911104,0.200357,0.448339,0.396927,0.0374974,0.487713,0.826622,0.437986,0.947534,0.128715,0.809162,0.55086,0.360152,0.231063,0.232136,0.47779,0.0987852,0.45958,0.769754,0.281751,0.18483,0.695508,0.458281,0.942565,0.779868,0.476835,0.36517,0.66365,0.772435,0.47903,0.658655,0.661612,0.949192,0.487612,0.712664,0.69399,0.254304,0.294404,0.278208,0.0724076,0.890461,0.880009,0.699506,0.168121,0.459399,0.609452,0.32768,0.515216,0.0109386,0.252826,0.0463782,0.275617,0.369873,0.800152,0.700342,0.800775,0.153937,0.656155,0.574761,0.588825,0.073947,0.565454,0.35377,0.874308,0.487888,0.919828,0.957687,0.695608,0.040606,0.596365,0.679524,0.486239,0.853256,0.177567,0.836691,0.911734,0.343121,0.69842,0.184973,0.56095,0.524475,0.592578,0.760082,0.492396,0.826326,0.733027,0.264865,0.614375,0.0907989,0.436334,0.264801,0.477601,0.0997395,0.878983,0.422522,0.597311,0.666889,0.802598,0.373564,0.204017,0.880102,0.842434,0.905572,0.608523,0.366583,0.324119,0.871389,0.668493,0.177109,0.190084,0.245408,0.175598,0.0430748,0.953131,0.360628,0.640724,0.153511,0.0791254,0.597169,0.592457,0.870605,0.430944,0.678629,0.210267,0.737918,0.195467,0.641313,0.111429,0.0447938,0.586657,0.771672,0.402631,0.390409,0.236703,0.838083,0.427867,0.76613,0.770911,0.840907,0.752308,0.864786,0.284749,0.230093,0.0362257,0.685908,0.774949,0.573744,0.303359,0.706241,0.350505,0.712904,0.647973,0.156084,0.225831,0.298745,0.00901616,0.134071,0.767469,0.644249,0.232041,0.746949,0.281718,0.326524,0.485896,0.792245,0.144266,0.444891,0.284829,0.54233,0.99175,0.259959,0.649412,0.152505,0.981283,0.237974,0.794602,0.280871,0.751423,0.508381,0.755625,0.268937,0.71879,0.490859,0.163579,0.504024,0.117359,0.976569,0.856786,0.24185,0.497024,0.535584,0.184104,0.461979,0.212025,0.822469,0.454244,0.0686492,0.652081,0.415093,0.664546,0.897441,0.341528,0.747059,0.265104,0.181855,0.132302,0.14819,0.853987,0.082381,0.0811979,0.647418,0.53498,0.386684,0.781916,0.327435,0.332863,0.82869,0.840153,0.312042,0.548136,0.388339,0.428828,0.397545,0.449651,0.530018,0.764087,0.199478,0.215169,0.336179,0.277071,0.195809,0.579338,0.761233,0.298517,0.047096,0.670915,0.260646,0.560992,0.554252,0.759453,0.306619,0.996174,0.294159,0.0798029,0.348896,0.450584,0.119585,0.0879627,0.891649,0.766473,0.994178,0.463839,0.365409,0.390919,0.820317,0.21335,0.944166,0.509497,0.839581,0.50484,0.941559,0.521564,0.780388,0.395479,0.546132,0.536351,0.176541,0.13814,0.193318,0.687549,0.401049,0.831261,0.986315,0.70462,0.107615,0.610488,0.607718,0.680182,0.858274,0.140791,0.94897,0.0828397,0.94926,0.232654,0.433919,0.401942,0.0769978,0.183137,0.235934,0.124014,0.821212,0.179673,0.772775,0.347144,0.568607,0.476638,0.166484,0.925571,0.722323,0.33354,0.365978,0.448657,0.372126,0.772594,0.141821,0.905709,0.727713,0.888887,0.36337,0.0126793,0.817814,0.890039,0.581132,0.71158,0.746445,0.857932,0.411748,0.444629,0.00176883,0.348166,0.975124,0.347095,0.0658953,0.144159,0.72925,0.0643318,0.694013,0.847856,0.714789,0.477505,0.741625,0.64504,0.494968,0.535361,0.336941,0.140371,0.261915,0.935348,0.417576,0.824875,0.932983,0.38371,0.700258,0.114294,0.908801,0.07942,0.934379,0.514464,0.882091,0.709626,0.116813,0.518139,0.828756,0.143908,0.848586,0.98729,0.927109,0.384284,0.561042,0.794728,0.395334,0.446379,0.552713,0.53046,0.385966,0.905483,0.297092,0.759485,0.698692,0.24844,0.539194,0.18657,0.724606,0.0767005,0.95591,0.397923,0.609553,0.427858,0.120349,0.130727,0.887653,0.797197,0.656093,0.261178,0.177244,0.0331191,0.286331,0.903524,0.932266,0.932021,0.680264,0.459951,0.0453494,0.875338,0.755783,0.00776643,0.819748,0.0773808,0.474935,0.145814,0.000436723,0.931437,0.290505,0.191934,0.591298,0.281987,0.0468647,0.788146,0.399359,0.00526422,0.429294,0.0852525,0.116485,0.108185,0.0797969,0.632794,0.430195,0.629377,0.396453,0.0421675,0.631812,0.729472,0.818961,0.932829,0.491085,0.837669,0.145434,0.112495,0.357816,0.32421,0.842732,0.262096,0.710213,0.145258,0.025559,0.253946,0.584959,0.397512,0.0686753,0.339835,0.484529,0.981061,0.862263,0.639588,0.419379,0.694651,0.173081,0.779668,0.176648,0.286041,0.394983,0.83606,0.101143,0.793543,0.520539,0.881443,0.983937,0.738125,0.635161,0.935766,0.356662,0.45464,0.39102,0.192358,0.357352,0.949652,0.911632,0.373985,0.885893,0.435357,0.615196,0.837835,0.911763,0.103389,0.783474,0.851606,0.750344,0.584585,0.0104938,0.62769,0.303553,0.747198,0.0875548,0.0373281,0.263203,0.467762,0.93207,0.914714,0.0622834,0.743714,0.128385,0.547052,0.946161,0.534228,0.205158,0.0955485,0.568806,0.321652,0.473735,0.909416,0.464051,0.919074,0.3755,0.938686,0.350888,0.886232,0.583606,0.944777,0.0626613,0.0633247,0.266097,0.701899,0.0167542,0.631565,0.516585,0.412149,0.112877,0.84647,0.868726,0.0221409,0.310929,0.568899,0.0195238,0.330392,0.468036,0.958331,0.403626,0.571839,0.5386,0.438861,0.0504821,0.558628,0.559558,0.340017,0.789326,0.521408,0.989391,0.366983,0.681846,0.06601,0.601129,0.772783,0.955715,0.801359,0.72631,0.572225,0.656125,0.845162,0.22114,0.169274,0.31017,0.632871,0.50384,0.714581,0.0525824,0.0573127,0.328596,0.381584,0.932264,0.0627918,0.846433,0.326449,0.557048,0.215606,0.654628,0.40913,0.114008,0.451734,0.646874,0.268398,0.866774,0.199055,0.417756,0.614959,0.790625,0.929814,0.97584,0.282021,0.554398,0.723385,0.312104,0.944924,0.419177,0.190125,0.187281,0.903739,0.977016,0.273883,0.748375,0.436636,0.529846,0.451947,0.787562,0.0987688,0.385163,0.00137568,0.194044,0.532619,0.579911,0.44677,0.136983,0.149728,0.48333,0.527547,0.56206,0.838944,0.116652,0.000369549,0.870957,0.605527,0.748116,0.819834,0.0128685,0.703995,0.343697,0.353671,0.602498,0.161362,0.620323,0.321262,0.133563,0.446777,0.468374,0.00860369,0.965328,0.355827,0.111644,0.940187,0.388463,0.458809,0.476072,0.114521,0.166605,0.64314,0.465446,0.400111,0.919431,0.251132,0.634632,0.302099,0.359024,0.938034,0.148371,0.164229,0.895012,0.866888,0.587002,0.701716,0.150877,0.477597,0.253396,0.613678,0.11585,0.402373,0.315508,0.297162,0.241616,0.234152,0.704377,0.523556,0.83351,0.795513,0.78131,0.323293,0.371927,0.948668,0.847593,0.395649,0.116999,0.153944,0.434925,0.690616,0.938462,0.794115,0.82106,0.648416,0.903761,0.0617238,0.740542,0.850488,0.934956,0.438173,0.578297,0.253389,0.443706,0.71385,0.767655,0.679889,0.442809,0.564954,0.935247,0.967095,0.096238,0.878562,0.335938,0.542776,0.587409,0.206852,0.100818,0.703458,0.214095,0.400434,0.254741,0.608668,0.658861,0.100919,0.0411275,0.586293,0.0530129,0.84759,0.81135,0.866694,0.901064,0.326306,0.158154,0.999387,0.936083,0.91871,0.906031,0.630371,0.551034,0.473861,0.208697,0.222744,0.533813,0.87876,0.70707,0.221197,0.555221,0.883547,0.267836,0.913572,0.722787,0.973571,0.31737,0.499669,0.583337,0.383908,0.266949,0.541872,0.125442,0.396091,0.250383,0.773678,0.454957,0.925206,0.849383,0.379189,0.248302,0.633646,0.559476,0.650751,0.59105,0.90998,0.633771,0.300349,0.0103353,0.291765,0.441996,0.278695,0.594517,0.238044,0.306976,0.159044,0.175869,0.693332,0.271155,0.278054,0.0145462,0.200572,0.782203,0.856874,0.622865,0.418144,0.901552,0.950227,0.80685,0.443444,0.949003,0.169049,0.764509,0.988682,0.661554,0.592536,0.277285,0.241814,0.992915,0.816429,0.241221,0.265497,0.313786,0.799728,0.392609,0.815558,0.698182,0.567321,0.59519,0.92698,0.625076,0.582822,0.296528,0.0225069,0.718131,0.564302,0.379127,0.446501,0.691585,0.495255,0.899235,0.00544775,0.499453,0.636285,0.193107,0.100889,0.264657,0.862756,0.715702,0.698007,0.54272,0.852709,0.967853,0.594866,0.072321,0.761229,0.465927,0.509197,0.0141208,0.170477,0.571049,0.734241,0.909682,0.985802,0.990515,0.000157416,0.811948,0.166981,0.978945,0.0821375,0.941875,0.648957,0.806805,0.241497,0.548297,0.774039,0.918111,0.482024,0.431952,0.776316,0.860746,0.203012,0.129654,0.0205859,0.20543,0.432978,0.62891,0.362147,0.00414723,0.0383429,0.94287,0.853122,0.944341,0.793947,0.63821,0.247398,0.162583,0.12927,0.537521,0.186601,0.384566,0.830114,0.465042,0.0237275,0.332805,0.462304,0.277664,0.715528,0.786601,0.042881,0.772014,0.931795,0.267162,0.336569,0.955423,0.214993,0.183307,0.532515,0.0981286,0.920738,0.322171,0.795369,0.224625,0.478468,0.0345385,0.491198,0.795569,0.377778,0.616214,0.953421,0.851171,0.144794,0.260526,0.578748,0.123474,0.542401,0.116773,0.146563,0.06769,0.700319,0.866361,0.329668,0.860553,0.90454,0.818017,0.995928,0.995588,0.331731,0.0295312,0.646379,0.831292,0.356297,0.553354,0.895973,0.954271,0.881299,0.45177,0.647817,0.54941,0.994485,0.383708,0.738329,0.10632,0.345947,0.209392,0.920148,0.168452,0.662465,0.00894606,0.897395,0.290135,0.378608,0.676925,0.770347,0.463825,0.489612,0.577671,0.635377,0.0150425,0.092786,0.419866,0.105429,0.879657,0.47422,0.538213,0.65892,0.428029,0.776851,0.407208,0.0590918,0.0270776,0.674486,0.491389,0.113046,0.968434,0.990527,0.858251,0.126221,0.797374,0.853422,0.821651,0.53276,0.00367743,0.0811214,0.300935,0.538873,0.209591,0.198421,0.740017,0.582734,0.457291,0.320697,0.0952135,0.638464,0.840592,0.283187,0.344175,|0.738555,0.937335,0.165924,0.399382,0.257005,0.603632,0.353818,0.90286,0.737433,0.588196,0.569509,0.607452,0.988077,0.588321,0.256439,0.405885,0.688445,0.742532,0.305477,0.804297,0.151095,0.543752,0.398043,0.321483,0.514647,0.641645,0.408084,0.136152,0.114326,0.470119,0.415534,0.630484,0.335388,0.242661,0.917357,0.568466,0.433876,0.953551,0.45448,0.325253,0.690745,0.709547,0.287982,0.930925,0.458868,0.491004,0.121508,0.354315,0.416096,0.645184,0.991165,0.0923481,0.0535532,0.0386508,0.725536,0.275993,0.567912,0.724115,0.803713,0.668678,0.708257,0.47226,0.316506,0.749108,0.0585031,0.639245,0.169303,0.448704,0.656752,0.190939,0.326521,0.105073,0.454129,0.160897,0.605053,0.18281,0.0169942,0.855071,0.0673465,0.385455,0.964895,0.714154,0.264592,0.563603,0.631399,0.810839,0.054584,0.757261,0.0932873,0.746329,0.884741,0.837148,0.0209413,0.0816934,0.330736,0.0361218,0.339235,0.0690454,0.412634,0.900381,0.21237,0.00658941,0.218615,0.612771,0.781681,0.556135,0.0676482,0.104369,0.0936235,0.927137,0.585383,0.229272,0.335767,0.0197583,0.333439,0.694116,0.435366,0.0678647,0.0815142,0.734655,0.336827,0.512651,0.889638,0.812105,0.0552741,0.554116,0.748318,0.80031,0.814752,0.205886,0.341163,0.732809,0.4048,0.457999,0.0223232,0.387101,0.905027,0.157544,0.0704297,0.619295,0.318355,0.932443,0.993165,0.63867,0.587312,0.426656,0.261147,0.411369,0.389645,0.657602,0.451114,0.799736,0.0415255,0.76196,0.359033,0.824998,0.675495,0.749488,0.0556943,0.784956,0.840711,0.85589,0.862613,0.630203,0.812447,0.27285,0.345325,0.079488,0.713586,0.672918,0.00184476,0.727247,0.862809,0.36037,0.655632,0.999924,0.845875,0.197787,0.904868,0.0193297,0.786568,0.163638,0.45261,0.643074,0.712447,0.170305,0.237599,0.245687,0.181428,0.105583,0.226601,0.136322,0.145598,0.0948085,0.598881,0.505446,0.942157,0.258545,0.954043,0.0702902,0.146757,0.599976,0.740337,0.240376,0.60578,0.209354,0.552506,0.659726,0.798091,0.171365,0.246105,0.699321,0.613316,0.729118,0.287427,0.499886,0.200623,0.0743127,0.99826,0.705111,0.188478,0.0456933,0.253912,0.706412,0.555473,0.871517,0.201961,0.541963,0.492682,0.562177,0.0110187,0.679181,0.418227,0.559634,0.37719,0.210059,0.516381,0.844841,0.663602,0.786591,0.488014,0.47548,0.106555,0.562025,0.799483,0.79347,0.580368,0.145346,0.174778,0.140608,0.879713,0.507722,0.21113,0.332043,0.547371,0.692183,0.884525,0.748145,0.909542,0.906658,0.905793,0.570485,0.573571,0.565501,0.434503,0.495535,0.778726,0.560944,0.040131,0.662666,0.0232804,0.296261,0.173969,0.334643,0.07219,0.429947,0.971416,0.967496,0.687984,0.38995,0.828466,0.614045,0.226904,0.617675,0.837116,0.0947353,0.109485,0.855253,0.498038,0.785634,0.410433,0.774772,0.720294,0.968616,0.712856,0.67067,0.955972,0.553935,0.258171,0.193829,0.494038,0.295835,0.350486,0.0112856,0.485146,0.22176,0.113026,0.401471,0.470181,0.416743,0.67966,0.103282,0.350277,0.80332,0.737649,0.568721,0.328199,0.412964,0.476366,0.469237,0.506955,0.355063,0.0233135,0.342813,0.576607,0.95997,0.725908,0.247481,0.432108,0.114466,0.303281,0.517733,0.731393,0.681665,0.690499,0.804046,0.224758,0.504472,0.254672,0.977562,0.237948,0.179614,0.590861,0.953218,0.515847,0.258161,0.0231939,0.417939,0.0438745,0.0558813,0.513432,0.969792,0.701525,0.622118,0.208751,0.753422,0.871195,0.136936,0.190653,0.460526,0.170485,0.402331,0.991505,0.954644,0.654968,0.0875652,0.0296797,0.855907,0.51398,0.810506,0.192186,0.911046,0.521604,0.904188,0.492683,0.223064,0.698353,0.858054,0.373821,0.96377,0.489866,0.906532,0.762119,0.785116,0.572575,0.185124,0.000464499,0.88406,0.267336,0.42723,0.930142,0.539471,0.735862,0.774262,0.915165,0.0590338,0.957641,0.813028,0.831538,0.988603,0.403224,0.70282,0.467393,0.682219,0.680271,0.511911,0.199763,0.881172,0.904719,0.560213,0.128633,0.427591,0.332664,0.748645,0.215402,0.82335,0.985609,0.612783,0.55065,0.986525,0.0281119,0.616956,0.266501,0.173364,0.140754,0.452121,0.616749,0.852913,0.186396,0.983939,0.404185,0.675953,0.0154369,0.000646293,0.186781,0.231292,0.0408084,0.278291,0.0541474,0.483045,0.413327,0.209139,0.112327,0.762213,0.490181,0.157053,0.934177,0.936951,0.356046,0.347977,0.83275,0.66972,0.482005,0.349627,0.694577,0.459736,0.11375,0.99898,0.455872,0.791325,0.695758,0.72768,0.679213,0.895613,0.40687,0.428382,0.856945,0.157171,0.755358,0.740171,0.784916,0.155084,0.146104,0.148163,0.767315,0.0373049,0.0671224,0.391023,0.429774,0.00842029,0.530531,0.95008,0.165995,0.438558,0.416796,0.757485,0.686581,0.237848,0.123342,0.560798,0.178631,0.954987,0.828198,0.127694,0.147928,0.439409,0.602549,0.733933,0.336738,0.165259,0.420162,0.85816,0.83151,0.202436,0.0516201,0.569929,0.00488621,0.689102,0.511432,0.840551,0.184795,0.727508,0.913438,0.519848,0.976074,0.557769,0.506138,0.879001,0.0529858,0.863648,0.118275,0.18008,0.882596,0.884396,0.870136,0.397437,0.38,0.975784,0.770402,0.44155,0.534364,0.667825,0.509815,0.56548,0.191526,0.0969834,0.398423,0.477572,0.0814481,0.680857,0.596182,0.345782,0.483326,0.274417,0.467667,0.107056,0.222865,0.436766,0.327149,0.972977,0.420461,0.549882,0.563661,0.73486,0.24308,0.788592,0.43353,0.34999,0.746716,0.221577,0.765743,0.676806,0.251532,0.758217,0.0761575,0.854039,0.834675,0.43533,0.367068,0.144522,0.950005,0.38786,0.518398,0.968803,0.526174,0.761842,0.343367,0.288932,0.332542,0.302753,0.298267,0.247066,0.0527108,0.63934,0.468916,0.98282,0.776201,0.755415,0.907358,0.306976,0.965246,0.0685882,0.394047,0.0783517,0.801968,0.856807,0.696543,0.119989,0.406595,0.534853,0.25074,0.281191,0.562225,0.245125,0.902462,0.95906,0.479874,0.031321,0.85055,0.835474,0.126344,0.397785,0.645762,0.749088,0.396401,0.315037,0.775465,0.24759,0.324374,0.107044,0.808408,0.641208,0.463866,0.92332,0.96523,0.831045,0.582172,0.966569,0.852821,0.768524,0.933113,0.746315,0.168529,0.605675,0.673893,0.256777,0.233626,0.948882,0.211667,0.36753,0.0589352,0.242956,0.465791,0.963176,0.293456,0.0540099,0.319389,0.844572,0.0901055,0.310279,0.0636895,0.742481,0.628847,0.282939,0.311498,0.595273,0.496279,0.908316,0.521776,0.640606,0.943151,0.276753,0.441473,0.129028,0.723192,0.104185,0.426152,0.21995,0.865742,0.599158,0.0743772,0.0264012,0.183603,0.28984,0.251872,0.970908,0.152625,0.114482,0.145861,0.0655515,0.910884,0.944984,0.312229,0.603995,0.743161,0.820278,0.913304,0.868962,0.558634,0.752499,0.169955,0.224751,0.522728,0.220524,0.86697,0.677062,0.294794,0.900442,0.479756,0.64961,0.698643,0.987601,0.304076,0.326786,0.104853,0.247186,0.0508133,0.388412,0.561579,0.588547,0.249875,0.740152,0.165462,0.405939,0.923445,0.594138,0.3172,0.676381,0.0913302,0.721428,0.149334,0.0754631,0.752527,0.151828,0.92965,0.159355,0.84815,0.885423,0.363489,0.385763,0.219728,0.616171,0.245338,0.694347,0.319947,0.226292,0.142642,0.39707,0.645001,0.132368,0.370414,0.888229,0.381021,0.420776,0.849741,0.872465,0.855116,0.510902,0.661765,0.550621,0.174173,0.604331,0.808246,0.949574,0.362656,0.455276,0.440281,0.648544,0.745611,0.75244,0.766726,0.955541,0.402368,0.780044,0.0402522,0.379068,0.445226,0.158104,0.189884,0.167932,0.128927,0.410652,0.130111,0.822813,0.421012,0.134579,0.437187,0.474643,0.837646,0.707701,0.968784,0.132245,0.85937,0.897202,0.207275,0.293542,0.378647,0.874646,0.249281,0.410267,0.2435,0.217415,0.579556,0.931997,0.232437,0.543461,0.993453,0.84719,0.740464,0.220575,0.0919544,0.00677305,0.17184,0.274519,0.371645,0.564497,0.611822,0.990953,0.314594,0.320333,0.285009,0.432419,0.735388,0.87197,0.849911,0.432438,0.112457,0.62377,0.216861,0.299659,0.345254,0.0893254,0.964614,0.395181,0.561819,0.393,0.912453,0.474385,0.285824,0.932822,0.145095,0.412498,0.878774,0.923366,0.532014,0.759062,0.789851,0.0373445,0.315236,0.0784783,0.586936,0.505509,0.100637,0.401041,0.0362371,0.703323,0.312523,0.21845,0.406336,0.773809,0.959313,0.152243,0.796127,0.904981,0.179132,0.19517,0.054785,0.430363,0.10579,0.0813726,0.280685,0.421311,0.668418,0.7688,0.329926,0.175165,0.27206,0.590879,0.752713,0.360189,0.358917,0.627952,0.287075,0.189635,0.0709008,0.0190848,0.89502,0.475103,0.851148,0.00949639,0.169719,0.0400829,0.0204193,0.251694,0.610869,0.282709,0.363259,0.386041,0.744129,0.385071,0.0958143,0.22853,0.223228,0.082195,0.440204,0.791936,0.850872,0.486124,0.206455,0.312471,0.266333,0.303582,0.357955,0.400719,0.732261,0.778667,0.737432,0.508436,0.797166,0.414102,0.861462,0.501758,0.45155,0.546318,0.378014,0.930516,0.982186,0.126378,0.812623,0.218421,0.768989,0.495572,0.112364,0.0361063,0.572201,0.53959,0.220408,0.625057,0.00476873,0.0170219,0.29043,0.558084,0.0802991,0.443148,0.477826,0.759951,0.199288,0.775837,0.58153,0.977866,0.244381,0.815279,0.223355,0.561784,0.791608,0.824934,0.893366,0.915002,0.547448,0.830963,0.676972,0.0406979,0.380872,0.319568,0.106817,0.0404933,0.117534,0.499478,0.960142,0.545054,0.950378,0.801266,0.78556,0.74643,0.524491,0.948518,0.216531,0.91584,0.568683,0.571106,0.80789,0.578144,0.210347,0.667732,0.143574,0.242747,0.0660759,0.736336,0.562297,0.0279675,0.0799769,0.712402,0.938255,0.126379,0.0947956,0.453714,0.256752,0.33606,0.0826604,0.711586,0.33086,0.294236,0.967079,0.19661,0.469981,0.12938,0.970084,0.463064,0.994281,0.120729,|0.577369,0.0409495,0.771502,0.16818,0.627483,0.170291,0.330106,0.873155,0.370284,0.386016,0.76962,0.154606,0.64237,0.768389,0.398591,0.817736,0.327175,0.255498,0.786747,0.212891,0.169143,0.997024,0.233708,0.498041,0.998586,0.449581,0.0871646,0.0267783,0.810442,0.601355,0.577921,0.788784,0.11819,0.300017,0.112578,0.398107,0.784012,0.492563,0.0116943,0.935643,0.197795,0.849789,0.97209,0.987241,0.932056,0.570475,0.553473,0.954875,0.233756,0.0394298,0.883175,0.87404,0.932836,0.393849,0.879388,0.263881,0.0726371,0.804922,0.748173,0.428633,0.128127,0.526627,0.196799,0.960221,0.977265,0.417574,0.591736,0.840548,0.590014,0.830037,0.511348,0.327811,0.913632,0.152527,0.276336,0.931517,0.123674,0.141011,0.629731,0.043741,0.690099,0.363056,0.431836,0.352966,0.625816,0.373943,0.424067,0.473592,0.349018,0.585421,0.971428,0.972632,0.891785,0.662481,0.18345,0.0177971,0.266274,0.5836,0.592678,0.538668,0.325567,0.919378,0.664142,0.230997,0.521331,0.694766,0.478781,0.152193,0.153377,0.88851,0.9673,0.597917,0.143399,0.566376,0.915899,0.59338,0.631709,0.654373,0.961495,0.690475,0.752513,0.690316,0.831904,0.33466,0.768151,0.913974,0.120585,0.161226,0.383599,0.55359,0.682068,0.960566,0.43074,0.180626,0.479295,0.532464,0.44967,0.977391,0.40554,0.665296,0.896685,0.903541,0.273758,0.41471,0.75091,0.475588,0.21403,0.58458,0.0480813,0.270181,0.412938,0.564052,0.992849,0.584205,0.789655,0.6365,0.673014,0.820061,0.839873,0.864669,0.766828,0.29573,0.538185,0.0902785,0.537459,0.344593,0.0318086,0.194686,0.809616,0.498425,0.690036,0.801669,0.511585,0.101242,0.536124,0.796084,0.0459947,0.7283,0.73787,0.607419,0.493352,0.266555,0.667104,0.959936,0.620347,0.778225,0.774082,0.631944,0.226628,0.922131,0.931479,0.00492525,0.961217,0.685332,0.99329,0.80128,0.18458,0.993002,0.245742,0.643844,0.510265,0.943016,0.787459,0.467284,0.855596,0.355402,0.606093,0.887217,0.263063,0.260183,0.726317,0.345505,0.821782,0.506645,0.346722,0.910472,0.353636,0.601504,0.921485,0.985139,0.092458,0.317017,0.0833325,0.124508,0.0326768,0.84016,0.252997,0.621403,0.724103,0.35122,0.621927,0.451333,0.978149,0.689462,0.757349,0.147985,0.164404,0.794408,0.679341,0.654793,0.812984,0.550429,0.55407,0.59593,0.3057,0.0121778,0.165168,0.636113,0.325364,0.0866027,0.556274,0.626756,0.0751107,0.736538,0.767187,0.0123314,0.290419,0.740145,0.764198,0.220758,0.933957,0.556214,0.545637,0.713701,0.399758,0.0774439,0.425066,0.329327,0.698141,0.810026,0.176195,0.568353,0.370646,0.954833,0.467759,0.562084,0.454421,0.665577,0.18592,0.628952,0.557464,0.00833064,0.987235,0.670306,0.94614,0.569592,0.195479,0.618595,0.90785,0.394387,0.66007,0.559479,0.228249,0.912728,0.368604,0.601627,0.362393,0.478701,0.802968,0.589193,0.91098,0.966559,0.0734656,0.395534,0.888872,0.178928,0.638352,0.143482,0.857042,0.729823,0.430213,0.678098,0.0513805,0.934122,0.594904,0.43924,0.31462,0.513245,0.804725,0.364843,0.0300767,0.38687,0.381016,0.906729,0.186443,0.748478,0.00659305,0.104173,0.689863,0.300562,0.28484,0.566983,0.361709,0.606859,0.941176,0.909428,0.766105,0.774753,0.780761,0.731045,0.358318,0.612092,0.73681,0.561823,0.697686,0.932133,0.363189,0.165312,0.527493,0.850921,0.289303,0.240388,0.121705,0.261039,0.889263,0.305188,0.532239,0.0486863,0.587232,0.386848,0.429468,0.151786,0.231628,0.383171,0.558252,0.292948,0.277913,0.163984,0.634378,0.301956,0.042378,0.45656,0.787832,0.41607,0.302072,0.694411,0.505508,0.195355,0.820179,0.800862,0.966361,0.714999,0.178991,0.283357,0.433938,0.811571,0.569241,0.428731,0.252795,0.905762,0.593816,0.525659,0.00639832,0.986867,0.106637,0.48137,0.337558,0.904023,0.63052,0.848822,0.000232637,0.873231,0.296228,0.238454,0.170376,0.649461,0.305231,0.446563,0.777353,0.00383306,0.504866,0.181509,0.787638,0.24773,0.488942,0.504481,0.318077,0.0384369,0.799736,0.17973,0.730762,0.0623782,0.949817,0.533938,0.515772,0.598937,0.0258871,0.0121659,0.393094,0.58537,0.669306,0.578854,0.964924,0.63162,0.596634,0.555403,0.422659,0.677966,0.885629,0.0264755,0.868053,0.392284,0.567959,0.158601,0.412085,0.142016,0.704463,0.496692,0.0449166,0.738597,0.945999,0.0429747,0.424512,0.204809,0.13928,0.304733,0.206818,0.880056,0.503616,0.374991,0.908915,0.532158,0.0837423,0.542274,0.00322121,0.150407,0.541451,0.0999963,0.701592,0.423966,0.325067,0.795472,0.947961,0.777374,0.350907,0.83863,0.620788,0.781486,0.343339,0.216027,0.577479,0.505663,0.265246,0.0243089,0.904935,0.0098083,0.271209,0.941648,0.280353,0.0714475,0.838498,0.193823,0.34989,0.371713,0.241821,0.49804,0.272614,0.0680008,0.646,0.732957,0.741456,0.425291,0.188479,0.96626,0.122603,0.223964,0.36367,0.992061,0.0568115,0.464774,0.0888482,0.936311,0.032385,0.808487,0.572163,0.25499,0.437283,0.749028,0.711295,0.213963,0.487432,0.352261,0.606374,0.416218,0.733883,0.201012,0.206402,0.636838,0.430872,0.738342,0.863522,0.933972,0.0140479,0.904749,0.62748,0.119125,0.0627809,0.227405,0.312589,0.0251259,0.531655,0.629824,0.753869,0.716279,0.11524,0.464701,0.370268,0.751142,0.756397,0.522402,0.299238,0.494805,0.0361061,0.469652,0.495275,0.0108842,0.119413,0.267719,0.72652,0.274113,0.181307,0.591849,0.101734,0.23661,0.798958,0.377578,0.723898,0.00696236,0.573015,0.918871,0.81723,0.37559,0.460006,0.944895,0.379592,0.508585,0.341999,0.288623,0.683543,0.0696929,0.762938,0.864087,0.205195,0.254223,0.747805,0.448012,0.0135338,0.410704,0.0463143,0.174847,0.684084,0.895208,0.060822,0.095491,0.816847,0.351296,0.221316,0.516709,0.421937,0.560388,0.738123,0.951203,0.788076,0.531379,0.439085,0.340078,0.990042,0.216102,0.58337,0.825506,0.8186,0.186077,0.421729,0.195866,0.160658,0.0223655,0.287088,0.721843,0.917755,0.281567,0.0311128,0.116954,0.275791,0.863857,0.73976,0.766611,0.555365,0.279786,0.949823,0.30901,0.125113,0.543249,0.732744,0.861193,0.582763,0.66236,0.643209,0.841677,0.0622875,0.989741,0.56432,0.387049,0.813213,0.955477,0.911862,0.440982,0.429845,0.956887,0.65275,0.496667,0.969046,0.692579,0.0214376,0.478925,0.798708,0.344489,0.418641,0.566283,0.692575,0.301317,0.300471,0.226333,0.987908,0.707113,0.00874078,0.0998002,0.0586357,0.333861,0.699627,0.791391,0.372601,0.943904,0.0182865,0.498335,0.510558,0.355343,0.497789,0.228423,0.88978,0.604325,0.852315,0.00850838,0.73367,0.500331,0.823543,0.302788,0.723505,0.140145,0.391639,0.892918,0.449931,0.239145,0.717636,0.66677,0.884419,0.88832,0.730936,0.964142,0.0918092,0.226227,0.131809,0.890523,0.475224,0.0429428,0.601686,0.385022,0.413625,0.252241,0.197271,0.952871,0.301094,0.0857947,0.1399,0.755633,0.0763313,0.419082,0.0413783,0.788748,0.882537,0.362258,0.278678,0.198016,0.753045,0.704453,0.56926,0.123491,0.280638,0.0136784,0.0680677,0.371702,0.369784,0.53234,0.564462,0.346723,0.972063,0.0435523,0.592619,0.0125515,0.19854,0.988409,0.778241,0.59239,0.150068,0.443209,0.106825,0.897986,0.985714,0.909469,0.0800472,0.0786327,0.60214,0.300918,0.529061,0.161032,0.240961,0.838293,0.679126,0.567629,0.636729,0.215513,0.760501,0.217156,0.969326,0.658312,0.975625,0.80469,0.902684,0.335475,0.643161,0.902812,0.738956,0.337149,0.200243,0.0727643,0.814529,0.308818,0.208407,0.130932,0.804612,0.565319,0.85173,0.661198,0.377401,0.857229,0.668675,0.597918,0.877736,0.0471964,0.50944,0.618485,0.465682,0.653892,0.789527,0.665312,0.19903,0.016822,0.944586,0.90646,0.560925,0.428835,0.300596,0.348042,0.406396,0.921361,0.0633373,0.10795,0.793514,0.558217,0.371561,0.961685,0.130803,0.0562329,0.0708325,0.0109478,0.537818,0.470813,0.994926,0.792238,0.348689,0.710506,0.616945,0.809321,0.405949,0.641877,0.546964,0.416295,0.475246,0.257952,0.780158,0.664798,0.199263,0.88186,0.17095,0.166628,0.216001,0.447891,0.0501357,0.552261,0.676093,0.0782284,0.162538,0.158789,0.963411,0.134411,0.139586,0.45417,0.224361,0.432258,0.881135,0.0485294,0.787569,0.116334,0.344589,0.237479,0.924811,0.706009,0.299785,0.924106,0.816556,0.337199,0.38309,0.28533,0.0535786,0.104689,0.127631,0.0266499,0.146269,0.446892,0.630153,0.559,0.482955,0.0685465,0.0432963,0.0255996,0.0137666,0.793473,0.668467,0.816338,0.861355,0.909278,0.716133,0.968598,0.43045,0.277955,0.43856,0.0857165,0.167548,0.960243,0.326498,0.00315553,0.80045,0.162892,0.116517,0.898724,0.0618986,0.737736,0.036427,0.453519,0.440542,0.00747997,0.447914,0.124581,0.00146246,0.376699,0.671516,0.845225,0.397436,0.0212145,0.0653488,0.0757685,0.984459,0.712751,0.470085,0.952013,0.569062,0.281808,0.094636,0.0794308,0.801871,0.22544,0.518125,0.873634,0.0203148,0.648626,0.921976,0.0223091,0.95694,0.137389,0.0661539,0.0303291,0.598724,0.884595,0.946478,0.140359,0.641604,0.18887,0.0218871,0.534715,0.548439,0.380299,0.365045,0.874337,0.141317,0.915632,0.661575,0.66625,0.805291,0.173339,0.828314,0.975746,0.726507,0.722271,0.162072,0.387003,0.771452,0.09582,0.427963,0.666929,0.833176,0.975041,0.774791,0.922094,0.274657,0.637145,0.187303,0.721384,0.351639,0.764162,0.00208646,0.772891,0.591114,0.92409,0.370088,0.755491,0.062001,0.410963,0.376197,0.347368,0.824062,0.976963,0.705886,0.415482,0.164409,0.190859,0.490233,0.741386,0.0644056,0.480314,0.331535,0.377644,0.573667,0.426829,0.0737077,0.989854,0.422694,0.5021,0.379701,0.902265,0.487236,0.170189,|0.752854,0.846477,0.614367,0.677485,0.950919,0.676756,0.429753,0.177159,0.317351,0.50437,0.995604,0.641837,0.9294,0.387993,0.38887,0.53039,0.442468,0.135408,0.409337,0.913687,0.889227,0.655793,0.938059,0.612569,0.586396,0.743373,0.220305,0.495429,0.107042,0.181196,0.284037,0.197362,0.198101,0.532431,0.600226,0.951384,0.0325875,0.472542,0.931978,0.522797,0.599777,0.352954,0.693458,0.685222,0.904557,0.16361,0.41713,0.767057,0.726332,0.319427,0.139555,0.488422,0.458165,0.259933,0.937259,0.0636373,0.0897241,0.0659824,0.988006,0.0398735,0.105716,0.176517,0.425945,0.784805,0.847262,0.688282,0.770067,0.794161,0.576734,0.334638,0.393277,0.202375,0.141544,0.0209694,0.0914984,0.132122,0.563908,0.745669,0.736105,0.812438,0.540041,0.492206,0.38289,0.978308,0.31772,0.712303,0.0604779,0.0752944,0.547291,0.822854,0.806784,0.890608,0.95086,0.236823,0.0993298,0.661529,0.161099,0.124661,0.956194,0.572164,0.971679,0.618124,0.998995,0.20102,0.140282,0.878853,0.808293,0.325659,0.124855,0.0919755,0.421895,0.0254795,0.514565,0.781738,0.64138,0.0520148,0.00567824,0.760483,0.945533,0.931697,0.651755,0.904287,0.869899,0.107318,0.530358,0.879575,0.950777,0.138437,0.580472,0.252254,0.96501,0.948976,0.0473114,0.427813,0.857635,0.982703,0.892858,0.94109,0.952911,0.114979,0.340201,0.496942,0.626825,0.192214,0.295581,0.283358,0.779664,0.196821,0.859806,0.425696,0.759143,0.813384,0.867119,0.932843,0.0896851,0.185911,0.467662,0.643229,0.30637,0.237025,0.675793,0.587989,0.221567,0.273266,0.306559,0.199023,0.839608,0.257623,0.182808,0.283101,0.765755,0.852855,0.74361,0.971078,0.519239,0.256485,0.00617576,0.456996,0.594183,0.390812,0.90108,0.984826,0.16754,0.248142,0.929192,0.711339,0.837864,0.575245,0.0152571,0.953765,0.388681,0.610854,0.909076,0.605646,0.531861,0.218036,0.653644,0.0652769,0.738007,0.776764,0.566612,0.454959,0.0436921,0.404911,0.307084,0.815774,0.54212,0.183169,0.184946,0.513138,0.204723,0.359566,0.916557,0.688785,0.360208,0.635818,0.574474,0.630218,0.826464,0.560725,0.234217,0.427757,0.562114,0.189024,0.316512,0.919274,0.935117,0.273278,0.284344,0.762408,0.474127,0.303624,0.497102,0.412457,0.0413789,0.714761,0.659771,0.731477,0.247391,0.0851141,0.135141,0.558053,0.489169,0.00422871,0.868455,0.26999,0.205284,0.642346,0.680499,0.278924,0.170739,0.559018,0.333911,0.203184,0.961525,0.922917,0.150249,0.584773,0.977888,0.771989,0.370399,0.259482,0.643035,0.776473,0.777462,0.745916,0.9156,0.218859,0.339676,0.563871,0.0969431,0.329366,0.0569921,0.389988,0.738003,0.560111,0.426809,0.680482,0.504703,0.705196,0.79271,0.593219,0.520445,0.507859,0.538913,0.608197,0.362627,0.586402,0.595637,0.0884966,0.305581,0.503272,0.660543,0.377845,0.77084,0.652218,0.0653272,0.975884,0.161604,0.270674,0.0448773,0.136243,0.39499,0.965149,0.392918,0.573896,0.614937,0.405463,0.188658,0.429623,0.432568,0.0953764,0.285446,0.491561,0.711689,0.515927,0.672365,0.0864205,0.480829,0.348428,0.7315,0.837263,0.726633,0.788345,0.29627,0.422135,0.092887,0.814717,0.0768783,0.567112,0.846244,0.410952,0.920411,0.868995,0.786555,0.0341452,0.481876,0.110817,0.964199,0.905911,0.440369,0.215665,0.129619,0.572239,0.993919,0.715671,0.21508,0.0386522,0.891955,0.19742,0.167687,0.143158,0.392674,0.183913,0.950865,0.328064,0.788324,0.888742,0.963995,0.225166,0.181997,0.439145,0.454203,0.339735,0.347799,0.615458,0.280069,0.0465831,0.434349,0.918523,0.14699,0.357557,0.297736,0.771858,0.878769,0.588299,0.880793,0.0938136,0.972035,0.301962,0.601859,0.945681,0.184493,0.140981,0.221878,0.520312,0.809266,0.718602,0.262347,0.379904,0.243128,0.375502,0.179931,0.672799,0.859254,0.251337,0.18277,0.0702407,0.427619,0.418564,0.316716,0.0899886,0.422152,0.293361,0.323602,0.890261,0.493074,0.997331,0.848605,0.34472,0.25215,0.985084,0.165367,0.642038,0.841321,0.118874,0.114353,0.649968,0.596037,0.878896,0.469994,0.739687,0.509158,0.93601,0.552753,0.243746,0.0784836,0.803267,0.199493,0.861896,0.97112,0.394146,0.297232,0.0309505,0.41322,0.496016,0.0260295,0.590424,0.0811649,0.0217619,0.509715,0.217097,0.769009,0.290802,0.282809,0.0164505,0.354544,0.248676,0.36989,0.596017,0.629673,0.539167,0.462474,0.911721,0.126284,0.478323,0.0409505,0.804889,0.829465,0.533294,0.501866,0.958706,0.395796,0.903624,0.113566,0.738911,0.654538,0.680237,0.60569,0.115449,0.55938,0.485817,0.860971,0.389421,0.105149,0.0428545,0.598981,0.393348,0.992532,0.357073,0.486934,0.586017,0.844791,0.41417,0.610072,0.753547,0.790266,0.428161,0.461882,0.268057,0.594262,0.192868,0.75743,0.454633,0.708378,0.459955,0.396157,0.928312,0.871441,0.117257,0.635471,0.522807,0.855336,0.0833062,0.150694,0.584519,0.995722,0.637084,0.948486,0.150339,0.231993,0.928087,0.053296,0.373856,0.78949,0.42058,0.566643,0.0246536,0.35411,0.222186,0.538973,0.456138,0.823135,0.0613708,0.854856,0.963088,0.634472,0.00162458,0.979964,0.18473,0.720122,0.610931,0.293421,0.842756,0.347634,0.973057,0.211885,0.878015,0.29197,0.719179,0.599722,0.979336,0.644083,0.620791,0.943238,0.589994,0.384604,0.0199366,0.40207,0.783826,0.459419,0.728045,0.0561444,0.155473,0.0331202,0.998287,0.353399,0.874592,0.118237,0.648367,0.0156074,0.200301,0.19896,0.893121,0.13864,0.671919,0.328935,0.7216,0.759381,0.462526,0.408693,0.474272,0.878138,0.758518,0.800311,0.0564042,0.143968,0.00953895,0.48419,0.610347,0.31597,0.296489,0.486611,0.923431,0.65015,0.292185,0.697224,0.868734,0.259366,0.722309,0.321366,0.706178,0.541512,0.341944,0.931947,0.072999,0.757269,0.751777,0.445562,0.174938,0.2452,0.897287,0.0376489,0.173692,0.415865,0.62462,0.50795,0.505159,0.374345,0.106122,0.791991,0.938658,0.0511312,0.0743716,0.0853813,0.698191,0.531756,0.340054,0.973651,0.807288,0.766608,0.603984,0.755129,0.522402,0.950646,0.797219,0.80578,0.423477,0.38895,0.626568,0.932224,0.182966,0.465582,0.780059,0.177624,0.100527,0.472571,0.453139,0.203092,0.0655375,0.865736,0.996835,0.661976,0.225471,0.961123,0.643866,0.619664,0.222978,0.628798,0.133985,0.802669,0.152501,0.214523,0.0284268,0.672968,0.587239,0.465536,0.505208,0.378007,0.376668,0.336155,0.0526065,0.673885,0.67923,0.713119,0.623998,0.545485,0.0832894,0.18834,0.386969,0.895955,0.526372,0.653484,0.641452,0.551796,0.461492,0.482847,0.247208,0.275543,0.870569,0.964347,0.532723,0.434656,0.189778,0.612699,0.751607,0.800767,0.760927,0.453576,0.609403,0.116454,0.617141,0.416274,0.969173,0.336109,0.956618,0.470646,0.251326,0.503014,0.361197,0.321492,0.839803,0.0961195,0.0909436,0.889715,0.0122741,0.822241,0.99249,0.0510579,0.16822,0.981541,0.336322,0.0261851,0.405152,0.875299,0.506076,0.581291,0.917003,0.559713,0.189955,0.25424,0.0409442,0.695786,0.479754,0.27819,0.748098,0.961931,0.217072,0.145166,0.499349,0.144545,0.422867,0.975084,0.828499,0.615936,0.438326,0.243619,0.873343,0.859504,0.532105,0.604108,0.865079,0.99509,0.725915,0.946762,0.260383,0.921173,0.932845,0.664422,0.383183,0.129576,0.528164,0.867174,0.618117,0.182987,0.72424,0.462183,0.444567,0.864501,0.543597,0.496193,0.302372,0.85127,0.398704,0.321543,0.784978,0.444568,0.0321956,0.796238,0.356413,0.304968,0.346878,0.464503,0.404165,0.46944,0.679734,0.763208,0.666449,0.0456774,0.620467,0.927354,0.999436,0.598386,0.733183,0.769609,0.116626,0.601322,0.474377,0.773203,0.796834,0.539725,0.599435,0.806162,0.462927,0.768364,0.889759,0.847003,0.283212,0.496536,0.22846,0.557537,0.265298,0.879809,0.828332,0.449901,0.477176,0.162642,0.620691,0.661965,0.910099,0.122367,0.149732,0.67763,0.534087,0.925167,0.568095,0.7978,0.146891,0.629129,0.829896,0.926521,0.507004,0.0228412,0.924576,0.206841,0.891805,0.777092,0.438303,0.625832,0.667719,0.608198,0.553032,0.176112,0.375257,0.808093,0.653987,0.0672528,0.847064,0.5217,0.799655,0.886549,0.493887,0.377129,0.505862,0.773869,0.301913,0.793863,0.365807,0.170121,0.425587,0.358509,0.679354,0.635123,0.768031,0.872101,0.0080604,0.14804,0.954622,0.462632,0.945589,0.912785,0.988584,0.65273,0.371528,0.621115,0.477965,0.0633977,0.794287,0.884426,0.945221,0.333722,0.06832,0.2789,0.910053,0.485298,0.405342,0.0307447,0.652423,0.988603,0.0404686,0.434962,0.351505,0.931342,0.254559,0.626797,0.674221,0.420329,0.231029,0.0962993,0.0606628,0.046667,0.365292,0.176455,0.944246,0.386447,0.908062,0.520361,0.0406184,0.761562,0.171903,0.322571,0.967741,0.355595,0.638473,0.761182,0.727978,0.237455,0.667779,0.403773,0.0615574,0.675391,0.837416,0.973777,0.289512,0.226628,0.945384,0.187959,0.14908,0.827413,0.279565,0.583463,0.97304,0.563688,0.347185,0.774279,0.405386,0.523744,0.228918,0.386037,0.751477,0.153354,0.335021,0.118986,0.754026,0.232798,0.882276,0.952999,0.944513,0.414343,0.205194,0.12834,0.928613,0.132831,0.637007,0.293492,0.43087,0.885123,0.104782,0.355606,0.414618,0.235994,0.620308,0.313822,0.0887285,0.583909,0.493378,0.432301,0.602128,0.394536,0.493736,0.753289,0.2889,0.387707,0.140266,0.651982,0.535949,0.307973,0.612416,0.293473,0.555754,0.257266,0.776035,0.654498,0.526684,0.86567,0.843964,0.351172,0.91574,0.0242955,0.457399,0.149996,0.377356,0.759007,0.922233,0.637068,0.643964,0.0716214,0.137944,0.850413,0.561305,0.416549,0.93866,0.0104195,0.238758,0.997152,0.652149,0.0615612,0.477116,0.19869,0.669997,|0.409983,0.12584,0.173788,0.575938,0.60436,0.159359,0.712336,0.61075,0.592593,0.371327,0.676921,0.509922,0.0276406,0.119302,0.495817,0.0669215,0.138755,0.424377,0.638156,0.527335,0.507686,0.00846106,0.68942,0.645769,0.60836,0.343168,0.819243,0.185942,0.77873,0.731587,0.0727191,0.153464,0.043572,0.53824,0.681945,0.425015,0.763394,0.420175,0.215504,0.676403,0.685576,0.396116,0.231673,0.0827237,0.673695,0.923288,0.0532399,0.455128,0.195095,0.667119,0.969509,0.1883,0.852776,0.461934,0.588818,0.925326,0.886521,0.88786,0.491693,0.233731,0.953407,0.151659,0.993248,0.726421,0.683061,0.305705,0.764828,0.829563,0.207325,0.595358,0.614802,0.842734,0.609089,0.124765,0.275449,0.0867757,0.471202,0.629049,0.960217,0.111207,0.579078,0.799668,0.854007,0.534858,0.874344,0.0697402,0.422197,0.849236,0.688382,0.769907,0.721891,0.126937,0.425149,0.250029,0.991643,0.644009,0.430915,0.638218,0.57361,0.157316,0.577593,0.230511,0.046168,0.50217,0.538549,0.545099,0.958445,0.891369,0.441072,0.700037,0.214003,0.934114,0.526566,0.733183,0.164207,0.119874,0.154273,0.241252,0.500006,0.824159,0.544523,0.182103,0.166821,0.815482,0.00685328,0.790521,0.00195682,0.754228,0.743171,0.451723,0.781122,0.321845,0.693141,0.094835,0.770512,0.408772,0.497163,0.861548,0.145668,0.201857,0.247343,0.702926,0.0147924,0.0671025,0.738511,0.422459,0.900747,0.928222,0.622303,0.642121,0.263908,0.467336,0.879041,0.779642,0.0354059,0.850139,0.194038,0.459225,0.959634,0.0782764,0.208701,0.199225,0.58077,0.00437862,0.536883,0.308673,0.0102125,0.746399,0.234321,0.834703,0.946792,0.992552,0.384858,0.638882,0.467684,0.968041,0.614906,0.679714,0.327619,0.200469,0.721453,0.168326,0.966902,0.970315,0.0638351,0.53619,0.186049,0.251203,0.677749,0.445819,0.808679,0.517175,0.615493,0.493572,0.392867,0.0712582,0.808108,0.0780463,0.334131,0.611986,0.780071,0.590932,0.357803,0.844252,0.51573,0.7308,0.446814,0.79948,0.582978,0.740229,0.36623,0.210386,0.677543,0.688251,0.814415,0.408896,0.157193,0.534562,0.0823532,0.470066,0.863894,0.811942,0.785811,0.743616,0.134434,0.0256283,0.116332,0.0801539,0.0261148,0.789836,0.797472,0.85142,0.763611,0.998566,0.753799,0.960185,0.453245,0.338664,0.111176,0.254721,0.216492,0.611408,0.889115,0.0629283,0.393059,0.393007,0.976224,0.682938,0.462353,0.494417,0.777971,0.409268,0.466362,0.820552,0.267269,0.724807,0.906155,0.671314,0.457391,0.00305927,0.0860215,0.208707,0.352881,0.0609942,0.2799,0.380917,0.51148,0.0252663,0.384195,0.376827,0.628451,0.767787,0.983003,0.847542,0.378807,0.056506,0.129893,0.224327,0.091068,0.934196,0.494043,0.795601,0.833366,0.000636876,0.86965,0.0452744,0.382335,0.96021,0.512307,0.809467,0.718649,0.061731,0.10362,0.0355333,0.827062,0.237026,0.662484,0.207591,0.0337128,0.116202,0.598748,0.551982,0.913574,0.69783,0.450413,0.781217,0.265988,0.379726,0.997924,0.798519,0.762668,0.966625,0.0475387,0.636753,0.447183,0.302387,0.126613,0.854222,0.0188218,0.950765,0.132426,0.406817,0.0506557,0.94973,0.901818,0.0362941,0.494197,0.960234,0.124441,0.542364,0.641368,0.657963,0.1229,0.163646,0.245604,0.619601,0.72978,0.831365,0.378603,0.444428,0.500246,0.802031,0.0377976,0.196896,0.551691,0.709442,0.923636,0.670625,0.295507,0.0796942,0.661056,0.126712,0.923335,0.380819,0.303865,0.428201,0.4234,0.556541,0.0902252,0.269207,0.609711,0.639938,0.994056,0.155149,0.342174,0.779171,0.474582,0.98138,0.193748,0.745917,0.577318,0.180198,0.75503,0.0155485,0.66706,0.521606,0.411357,0.36282,0.575347,0.635599,0.876961,0.220839,0.543005,0.62156,0.112668,0.128088,0.114401,0.780931,0.849083,0.944966,0.693772,0.249781,0.874149,0.762497,0.0536682,0.120423,0.676947,0.400994,0.768991,0.692747,0.831515,0.896864,0.728126,0.201176,0.406521,0.925221,0.602659,0.117802,0.680413,0.848434,0.779019,0.633832,0.283989,0.474698,0.260792,0.760353,0.462304,0.504126,0.799088,0.4516,0.290137,0.0831662,0.130547,0.649365,0.731341,0.473411,0.545678,0.968417,0.468486,0.583648,0.531939,0.117152,0.199234,0.760113,0.694046,0.722576,0.518378,0.199638,0.855358,0.284107,0.245796,0.528285,0.406531,0.519001,0.996437,0.310225,0.149117,0.872821,0.22507,0.971997,0.857378,0.775565,0.437828,0.626241,0.0741604,0.645622,0.115252,0.806255,0.599117,0.240615,0.00230831,0.482264,0.993245,0.894935,0.738407,0.291786,0.00477505,0.493505,0.770541,0.507263,0.659083,0.14641,0.144148,0.694518,0.405533,0.427695,0.507032,0.591375,0.621683,0.499957,0.188587,0.540648,0.157955,0.645496,0.477586,0.023725,0.784116,0.126152,0.806091,0.566816,0.517733,0.449452,0.774785,0.671375,0.372558,0.476663,0.401624,0.0105371,0.25925,0.928449,0.162125,0.535041,0.661503,0.623055,0.952455,0.101427,0.282011,0.76955,0.457242,0.49684,0.326981,0.529908,0.990647,0.487131,0.256272,0.639884,0.627408,0.388363,0.878119,0.484591,0.807413,0.292073,0.223667,0.794745,0.322359,0.926395,0.58784,0.902173,0.893097,0.561755,0.776738,0.112328,0.266789,0.0630278,0.467488,0.0185918,0.0122712,0.219524,0.275076,0.892933,0.395553,0.488743,0.856378,0.0157173,0.255946,0.344923,0.301197,0.587567,0.880674,0.837286,0.298632,0.762197,0.353034,0.776894,0.425716,0.768192,0.288718,0.237936,0.561638,0.640713,0.954575,0.0916204,0.974378,0.742035,0.820136,0.174696,0.522381,0.843208,0.257353,0.0757609,0.694306,0.325511,0.848034,0.326392,0.369919,0.505565,0.0385016,0.167201,0.470084,0.888541,0.816949,0.146451,0.249349,0.529412,0.0137904,0.0184805,0.457889,0.350949,0.597785,0.0595427,0.532247,0.252449,0.0601913,0.928042,0.514145,0.305171,0.344587,0.794241,0.8035,0.848768,0.485374,0.511481,0.781836,0.45076,0.554618,0.316182,0.821671,0.792542,0.570196,0.228852,0.768193,0.468488,0.608421,0.762207,0.907971,0.546658,0.423463,0.00731713,0.20467,0.624457,0.862645,0.12368,0.97709,0.993199,0.0647423,0.176375,0.209313,0.215671,0.892712,0.583963,0.0374613,0.279005,0.751477,0.670284,0.117786,0.638129,0.70559,0.63388,0.0438062,0.271216,0.80477,0.986474,0.331907,0.0904398,0.965375,0.602535,0.99594,0.112595,0.916078,0.403456,0.610238,0.155449,0.0199037,0.279862,0.163387,0.984878,0.765793,0.0899762,0.627504,0.0541481,0.218007,0.36483,0.952579,0.388929,0.218486,0.289514,0.373589,0.221883,0.375092,0.552602,0.188782,0.659823,0.0711613,0.36342,0.151494,0.0807346,0.837254,0.0522162,0.290835,0.64708,0.72702,0.489075,0.900537,0.665887,0.496801,0.649568,0.806611,0.85118,0.755757,0.735177,0.508481,0.719202,0.503935,0.640268,0.0391353,0.518415,0.041781,0.858751,0.783098,0.981255,0.140241,0.320332,0.278457,0.385019,0.784726,0.0807435,0.0998617,0.172681,0.820705,0.00709826,0.316851,0.00789088,0.915197,0.182458,0.781914,0.530192,0.214216,0.168912,0.413044,0.524635,0.104217,0.60007,0.847798,0.90988,0.517624,0.518336,0.388031,0.959364,0.513543,0.642096,0.857939,0.889226,0.72153,0.0926892,0.858548,0.999172,0.0372642,0.325755,0.459392,0.0482446,0.752146,0.108994,0.347888,0.466776,0.106066,0.581269,0.495104,0.408389,0.570179,0.0447134,0.433955,0.010276,0.581311,0.74907,0.481664,0.802386,0.385716,0.808096,0.303534,0.881379,0.180636,0.709315,0.717448,0.998135,0.0195872,0.575867,0.3457,0.721159,0.695159,0.878712,0.207657,0.967005,0.911501,0.998712,0.37023,0.133333,0.392679,0.727841,0.389411,0.600675,0.877811,0.271437,0.849952,0.803653,0.29557,0.051911,0.30762,0.87632,0.92716,0.318558,0.23973,0.790335,0.814525,0.844901,0.949648,0.63014,0.456943,0.393439,0.0269376,0.00996387,0.650631,0.950477,0.251058,0.818075,0.437068,0.51357,0.86432,0.991838,0.816787,0.81547,0.622441,0.815272,0.255555,0.0549638,0.669362,0.471299,0.623806,0.0731884,0.10283,0.862936,0.301721,0.339559,0.853118,0.00307715,0.581787,0.976355,0.0710682,0.406048,0.668838,0.711478,0.988696,0.505277,0.0638666,0.393045,0.297611,0.142306,0.29245,0.454759,0.597476,0.423597,0.838704,0.604884,0.161099,0.528268,0.230754,0.546439,0.124819,0.603618,0.257493,0.260734,0.895529,0.0674474,0.90459,0.731953,0.385232,0.497887,0.360537,0.367779,0.0882988,0.241893,0.129502,0.236359,0.0949071,0.680204,0.955977,0.151199,0.135553,0.424534,0.0531365,0.00489765,0.91162,0.533248,0.485303,0.38912,0.784987,0.268909,0.384208,0.143282,0.801139,0.771091,0.864188,0.340127,0.111321,0.139019,0.292689,0.261703,0.849216,0.062063,0.249709,0.711186,0.337508,0.566341,0.489623,0.480663,0.0109423,0.290936,0.356209,0.932175,0.265226,0.80357,0.218689,0.423751,0.826037,0.950359,0.631506,0.782044,0.996265,0.114252,0.988974,0.309829,0.761604,0.521324,0.984007,0.837469,0.829452,0.172195,0.710085,0.46405,0.995686,0.389197,0.532223,0.742477,0.306861,0.0918549,0.868496,0.353002,0.463466,0.6997,0.476273,0.77562,0.181354,0.465072,0.871922,0.154544,0.610004,0.497947,0.44898,0.28025,0.0378008,0.562502,0.0339134,0.194711,0.0066064,0.783,0.361682,0.186436,0.500692,0.358531,0.449578,0.00414824,0.776623,0.4245,0.0446128,0.81467,0.364607,0.17727,0.442724,0.444985,0.690535,0.214518,0.855423,0.277221,0.378679,0.85983,0.689527,0.546648,0.441713,0.224972,0.848636,0.539174,0.99728,0.776456,0.607137,0.0902874,0.0814698,0.469123,0.801287,0.108422,0.960593,0.138606,0.411074,0.704986,0.0640939,0.724911,0.505977,0.198671,0.369156,0.639851,0.468355,0.284943,0.534016,0.752611,0.433379,0.562666,0.120281,0.495053,0.76631,0.565082,0.952625,0.824142,|0.912804,0.0873978,0.0929573,0.701865,0.927119,0.95016,0.0311276,0.259882,0.214908,0.1368,0.506141,0.895413,0.800472,0.266809,0.966794,0.499449,0.648572,0.278293,0.795217,0.288905,0.984971,0.553143,0.909742,0.346717,0.168656,0.0117046,0.0781197,0.477542,0.781794,0.95851,0.479658,0.224981,0.059204,0.465891,0.947115,0.645504,0.0939487,0.507597,0.747458,0.454857,0.400492,0.0489265,0.61905,0.603778,0.627029,0.66039,0.425759,0.435512,0.384808,0.452751,0.972289,0.784029,0.239771,0.198779,0.241662,0.585131,0.954348,0.441856,0.886124,0.148823,0.236932,0.0833571,0.414027,0.68301,0.365485,0.399707,0.878106,0.10602,0.113412,0.269371,0.564593,0.715895,0.0649135,0.10516,0.671838,0.826445,0.882828,0.291353,0.383213,0.771735,0.729247,0.297321,0.276563,0.234506,0.273632,0.441019,0.941748,0.17948,0.341043,0.216941,0.194907,0.355504,0.543144,0.420147,0.623174,0.145525,0.0348995,0.0158005,0.811288,0.818659,0.181181,0.55442,0.967494,0.986985,0.729938,0.44324,0.91877,0.489434,0.691928,0.282498,0.732335,0.00846851,0.567424,0.788198,0.955669,0.305322,0.841857,0.273173,0.979738,0.674714,0.443501,0.110932,0.661177,0.0654777,0.164275,0.873035,0.718219,0.576666,0.710171,0.287737,0.0321439,0.404691,0.902721,0.405882,0.945184,0.910106,0.726171,0.35733,0.953731,0.676534,0.420649,0.623005,0.592634,0.291498,0.085295,0.148382,0.225034,0.409066,0.967732,0.0988188,0.390365,0.266349,0.515463,0.593693,0.828785,0.332262,0.0443107,0.412364,0.256416,0.378288,0.206868,0.795521,0.877849,0.545833,0.367971,0.953999,0.0290843,0.942105,0.144465,0.801453,0.78397,0.635809,0.110397,0.439015,0.236656,0.755132,0.0681009,0.750567,0.433647,0.857121,0.63962,0.141779,0.179633,0.495116,0.917096,0.774449,0.359843,0.576648,0.181923,0.57781,0.782683,0.41694,0.759141,0.446232,0.947046,0.589576,0.36192,0.236053,0.172209,0.566365,0.883031,0.966027,0.502174,0.0926803,0.195006,0.182765,0.493869,0.737298,0.402122,0.0546399,0.0106759,0.710136,0.630418,0.300146,0.807688,0.253722,0.590599,0.890946,0.0408224,0.395865,0.524492,0.865352,0.927202,0.596221,0.835315,0.984999,0.651732,0.350772,0.816751,0.108312,0.161849,0.406178,0.887251,0.0105561,0.86894,0.38642,0.500162,0.867746,0.262729,0.38642,0.474845,0.0932276,0.575095,0.18113,0.853148,0.0314213,0.510917,0.613415,0.898483,0.773183,0.957451,0.911793,0.364059,0.173303,0.294434,0.396192,0.188283,0.842265,0.17564,0.0867063,0.0738035,0.827038,0.551839,0.758755,0.495324,0.325307,0.308213,0.00371104,0.550844,0.0932894,0.862677,0.45303,0.289573,0.680493,0.395462,0.772603,0.579548,0.41328,0.9257,0.338885,0.971124,0.41481,0.997279,0.859267,0.708155,0.242348,0.875245,0.303347,0.81127,0.553513,0.139773,0.397233,0.222758,0.798235,0.417815,0.751167,0.0818256,0.963282,0.669506,0.240827,0.401876,0.922666,0.758139,0.357933,0.650876,0.219534,0.130508,0.46233,0.472568,0.557031,0.88669,0.547873,0.83665,0.78744,0.595096,0.823118,0.757757,0.36365,0.068152,0.814595,0.687203,0.560259,0.753922,0.250367,0.000303328,0.00604802,0.252153,0.324689,0.870125,0.315846,0.35944,0.666984,0.0535684,0.315755,0.824202,0.481672,0.261476,0.198056,0.85368,0.89387,0.952613,0.932228,0.759483,0.227532,0.298124,0.0205596,0.162262,0.00561404,0.580312,0.572831,0.381456,0.622653,0.26318,0.442989,0.115992,0.647874,0.572204,0.672855,0.249343,0.312277,0.640948,0.747745,0.795683,0.0613221,0.214941,0.201391,0.72734,0.96712,0.733464,0.531859,0.680997,0.669899,0.756384,0.834184,0.306991,0.800212,0.0309521,0.802752,0.590023,0.989477,0.0908547,0.548319,0.799917,0.295098,0.950033,0.412369,0.243171,0.0401409,0.213327,0.421354,0.474701,0.768109,0.448991,0.225572,0.382062,0.472123,0.622639,0.456094,0.313013,0.184178,0.636711,0.287427,0.666912,0.0161548,0.589929,0.809581,0.544488,0.507355,0.672778,0.923094,0.535876,0.181874,0.243354,0.851765,0.0921655,0.76744,0.34299,0.675242,0.976069,0.784162,0.0782182,0.923875,0.746547,0.487676,0.40383,0.115193,0.288575,0.262873,0.107885,0.143534,0.0294846,0.453314,0.732143,0.846746,0.307069,0.989733,0.585191,0.938014,0.487616,0.373557,0.737569,0.606151,0.568402,0.489793,0.270087,0.340777,0.902098,0.649397,0.562402,0.380709,0.995862,0.43823,0.703185,0.813124,0.529814,0.702288,0.574041,0.415214,0.117178,0.972188,0.420111,0.757989,0.129545,0.780759,0.234319,0.698556,0.593217,0.819116,0.714179,0.856,0.153574,0.635648,0.798464,0.559337,0.284295,0.961232,0.397293,0.457645,0.759127,0.921006,0.359977,0.0440032,0.238943,0.757616,0.639704,0.281727,0.387731,0.334164,0.588664,0.0737076,0.102184,0.586398,0.101656,0.477802,0.431085,0.319898,0.727875,0.983752,0.5399,0.564498,0.564352,0.0231816,0.124129,0.641732,0.0516654,0.912428,0.850591,0.152069,0.508145,0.414282,0.464448,0.0396485,0.998858,0.453923,0.230506,0.429825,0.1593,0.897828,0.479694,0.0660695,0.93175,0.890232,0.0739807,0.0290318,0.425195,0.667711,0.440464,0.430366,0.0657338,0.625796,0.273125,0.613276,0.364929,0.832745,0.514845,0.180762,0.670834,0.987643,0.432034,0.559748,0.862423,0.517729,0.412892,0.409197,0.557829,0.858537,0.20342,0.961004,0.626198,0.873758,0.961447,0.663317,0.0405195,0.643367,0.613437,0.540295,0.451491,0.482267,0.296308,0.407946,0.150022,0.789071,0.670263,0.0059799,0.607482,0.840259,0.878441,0.00722063,0.523774,0.380149,0.768121,0.570171,0.135382,0.35848,0.0574856,0.196067,0.376687,0.0692165,0.943864,0.318597,0.797745,0.440679,0.741893,0.816483,0.0901244,0.0714838,0.735642,0.309418,0.301842,0.624196,0.881249,0.927794,0.803213,0.365921,0.472161,0.153219,0.62877,0.0336426,0.197238,0.989436,0.978276,0.482472,0.246067,0.747699,0.839897,0.182502,0.028059,0.733336,0.729237,0.575713,0.684914,0.0179287,0.869565,0.94492,0.875942,0.672357,0.196331,0.445454,0.936408,0.752073,0.309564,0.30316,0.879342,0.914225,0.503714,0.605432,0.0535192,0.724829,0.197023,0.743645,0.554717,0.286159,0.99409,0.0311469,0.728558,0.461433,0.418785,0.737393,0.234358,0.681242,0.347313,0.296277,0.676113,0.963735,0.688704,0.225747,0.688546,0.252984,0.623799,0.941884,0.675301,0.817057,0.578705,0.216375,0.391436,0.47333,0.113355,0.962986,0.821487,0.144691,0.728514,0.256703,0.376088,0.111984,0.565939,0.764475,0.356642,0.29,0.569372,0.298559,0.739997,0.363134,0.381786,0.498987,0.924107,0.402102,0.827615,0.7066,0.911673,0.155206,0.200144,0.730192,0.239706,0.709844,0.593199,0.235641,0.412895,0.727754,0.760469,0.101198,0.398487,0.892071,0.195146,0.929122,0.162806,0.817013,0.14636,0.957572,0.575043,0.92544,0.12408,0.543549,0.803345,0.831101,0.706074,0.350501,0.882088,0.531143,0.660848,0.776366,0.88666,0.425309,0.786986,0.926148,0.315907,0.1794,0.869252,0.248776,0.442985,0.321855,0.854979,0.691549,0.550496,0.390184,0.298414,0.00400233,0.895409,0.334916,0.0102375,0.450943,0.870489,0.0306029,0.938264,0.511732,0.148884,0.682482,0.0030548,0.422974,0.220853,0.690708,0.292226,0.875381,0.23856,0.527159,0.0829341,0.585013,0.200318,0.180432,0.516659,0.0475177,0.474286,0.81855,0.145853,0.223272,0.913454,0.879504,0.0524955,0.786545,0.800857,0.0887074,0.524306,0.906918,0.84016,0.428434,0.495412,0.345153,0.25724,0.0968909,0.778368,0.914594,0.136536,0.864984,0.62987,0.814797,0.761001,0.443449,0.932013,0.735423,0.410418,0.488627,0.376105,0.207987,0.18085,0.591865,0.880801,0.933403,0.769765,0.774453,0.0431353,0.296092,0.751024,0.992103,0.216057,0.687656,0.460049,0.825753,0.856467,0.578953,0.655391,0.44991,0.197627,0.495375,0.260339,0.923866,0.535059,0.440037,0.0372686,0.570462,0.0689463,0.387087,0.255997,0.175588,0.663542,0.228001,0.592981,0.464405,0.499502,0.890979,0.374899,0.848765,0.333091,0.901778,0.156067,0.621435,0.434508,0.589258,0.194588,0.0954122,0.919452,0.713306,0.936117,0.0868362,0.319373,0.559028,0.309709,0.279952,0.495752,0.0486957,0.57015,0.016315,0.8573,0.997584,0.908973,0.602629,0.17911,0.540273,0.730031,0.613417,0.668356,0.211372,0.472251,0.247974,0.150745,0.972211,0.0253703,0.102377,0.405498,0.637252,0.2166,0.446877,0.674802,0.575378,0.171184,0.507305,0.617941,0.646903,0.989553,0.707376,0.691133,0.795205,0.637604,0.491612,0.504016,0.947897,0.196559,0.847802,0.936091,0.546781,0.328556,0.761752,0.831436,0.691841,0.701687,0.835871,0.860782,0.637982,0.0224305,0.954347,0.67592,0.62697,0.131305,0.925998,0.0038656,0.744385,0.376003,0.95025,0.278646,0.129657,0.986149,0.290165,0.796564,0.425623,0.992021,0.783724,0.973179,0.271576,0.334027,0.855643,0.491342,0.413211,0.568416,0.25933,0.128705,0.902141,0.717447,0.781732,0.712948,0.728578,0.833268,0.294865,0.130916,0.0408118,0.113951,0.0808344,0.395175,0.666903,0.612658,0.931849,0.707289,0.791098,0.701436,0.0288424,0.930346,0.0921941,0.822554,0.0497508,0.962668,0.942279,0.321879,0.7637,0.0216263,0.912617,0.565424,0.214842,0.175619,0.958376,0.116494,0.699709,0.420657,0.434116,0.924295,0.833967,0.855535,0.0974208,0.64848,0.0668422,0.70344,0.623135,0.837252,0.0636775,0.402571,0.318268,0.755101,0.0256714,0.804964,0.564127,0.120912,0.206173,0.0357298,0.407661,0.428688,0.64494,0.573578,0.843187,0.320428,0.542596,0.153534,0.119588,0.328053,0.046677,0.753837,0.0673527,0.781603,0.989053,0.893802,0.442138,0.853532,0.34035,0.158418,0.333892,0.482888,0.353521,0.567971,0.413862,0.757448,0.440729,0.203514,0.228548,0.699656,0.984362,|0.857596,0.112939,0.997245,0.909922,0.0210706,0.498658,0.537753,0.779153,0.672485,0.140238,0.238819,0.160746,0.670306,0.554328,0.177416,0.765551,0.0703155,0.0518382,0.742614,0.759895,0.577108,0.737922,0.937011,0.216857,0.138682,0.482101,0.740439,0.561305,0.908768,0.0730803,0.580007,0.349658,0.416572,0.394138,0.701005,0.0866366,0.0606296,0.138088,0.692193,0.573038,0.0788888,0.701938,0.348216,0.524092,0.760812,0.385902,0.012927,0.678717,0.853837,0.863725,0.151862,0.196254,0.755283,0.224319,0.408446,0.928419,0.818695,0.00611091,0.377379,0.918598,0.902117,0.298202,0.18036,0.585772,0.966983,0.35793,0.193403,0.183801,0.0319254,0.288947,0.347859,0.598144,0.164968,0.618151,0.537136,0.502404,0.128263,0.21351,0.435075,0.528477,0.276962,0.6955,0.997804,0.156281,0.982304,0.364842,0.268801,0.286062,0.760164,0.0919432,0.68677,0.785996,0.962947,0.201819,0.437978,0.417205,0.981801,0.0805231,0.148974,0.0692368,0.694407,0.466347,0.854874,0.00453323,0.82701,0.327561,0.506398,0.804544,0.59818,0.926958,0.689721,0.610325,0.0779747,0.982381,0.123208,0.680732,0.522704,0.804196,0.391747,0.310286,0.0778713,0.15885,0.986104,0.340117,0.00038451,0.467994,0.775816,0.255266,0.0877233,0.659625,0.144163,0.403828,0.560585,0.144337,0.918095,0.496857,0.922758,0.377681,0.808546,0.0897961,0.333328,0.745155,0.330888,0.443543,0.993495,0.177109,0.898515,0.320704,0.904227,0.0598372,0.214634,0.981301,0.420578,0.0339386,0.0435615,0.276746,0.229873,0.15722,0.966344,0.395621,0.693158,0.119212,0.558208,0.313852,0.141306,0.393,0.852415,0.412504,0.912446,0.802389,0.182635,0.373658,0.0619442,0.699616,0.943053,0.590121,0.305384,0.832015,0.0693881,0.571917,0.531673,0.197713,0.421853,0.994005,0.0270677,0.594431,0.716795,0.694186,0.124056,0.858495,0.937205,0.0879523,0.489248,0.534164,0.865536,0.589252,0.419786,0.232239,0.426984,0.926849,0.97465,0.0878322,0.530186,0.111771,0.189035,0.329694,0.321003,0.98407,0.990282,0.662933,0.956884,0.682627,0.241935,0.319279,0.334748,0.505139,0.507939,0.29731,0.88564,0.719657,0.165964,0.0894057,0.909056,0.347278,0.567126,0.958956,0.45786,0.154547,0.318957,0.00607872,0.270574,0.843695,0.12945,0.611108,0.103957,0.018135,0.458925,0.777376,0.456072,0.966646,0.481612,0.640331,0.704264,0.380113,0.601899,0.163493,0.022328,0.563837,0.452492,0.727091,0.0643147,0.352395,0.407525,0.958556,0.17859,0.735786,0.886195,0.634628,0.966121,0.561937,0.540975,0.787518,0.266351,0.336423,0.761613,0.598773,0.783726,0.932653,0.462018,0.924663,0.782429,0.505132,0.989141,0.32343,0.8037,0.160601,0.796976,0.411954,0.342428,0.970919,0.691706,0.303329,0.998734,0.592291,0.0539764,0.0774328,0.741195,0.29095,0.40288,0.170512,0.961839,0.0253011,0.0460162,0.654246,0.275181,0.897356,0.76069,0.43374,0.0385798,0.669029,0.671239,0.825969,0.498135,0.641033,0.260081,0.228994,0.440998,0.539138,0.674959,0.0298996,0.15268,0.258959,0.525422,0.0972628,0.195145,0.237799,0.303208,0.872482,0.734748,0.364152,0.857957,0.573943,0.0866058,0.344201,0.561384,0.0562381,0.398199,0.772264,0.437979,0.804674,0.447112,0.263494,0.154369,0.463346,0.929948,0.683912,0.269254,0.403563,0.636747,0.732627,0.980157,0.264723,0.685426,0.0794253,0.861903,0.130267,0.0676925,0.716355,0.487652,0.997953,0.78549,0.660001,0.620613,0.26043,0.658986,0.737714,0.739338,0.657074,0.0342185,0.67882,0.931088,0.368895,0.633692,0.721763,0.546906,0.484944,0.61255,0.648859,0.683259,0.0432555,0.0215977,0.0453423,0.719742,0.31316,0.223973,0.329049,0.161094,0.16602,0.330495,0.619764,0.559804,0.507698,0.308362,0.783937,0.0097689,0.170326,0.531896,0.249044,0.652865,0.542624,0.524237,0.479449,0.740295,0.894247,0.340444,0.792716,0.393174,0.52359,0.130078,0.685749,0.0552094,0.192913,0.471318,0.000441432,0.438017,0.590963,0.680305,0.109475,0.941867,0.605625,0.209973,0.183205,0.220437,0.805034,0.655244,0.792629,0.537662,0.950689,0.35878,0.407331,0.910359,0.192851,0.0723916,0.990378,0.531665,0.732412,0.627297,0.350878,0.173525,0.778391,0.98971,0.0762874,0.654756,0.170709,0.736508,0.322257,0.709806,0.570743,0.631521,0.576468,0.441114,0.394909,0.597255,0.00990844,0.911415,0.636037,0.37749,0.318966,0.919014,0.583127,0.756037,0.543467,0.216802,0.0866914,0.451312,0.254279,0.39292,0.338624,0.505088,0.578464,0.825482,0.907347,0.173557,0.371976,0.553393,0.35399,0.728667,0.599973,0.351531,0.576061,0.621367,0.218479,0.0271808,0.508652,0.396661,0.530726,0.0519161,0.457265,0.474528,0.988603,0.313717,0.596779,0.49356,0.449046,0.0062322,0.924306,0.222487,0.0888944,0.788426,0.31081,0.866823,0.900316,0.455892,0.922803,0.352078,0.182358,0.149618,0.452225,0.204996,0.701059,0.0197875,0.997729,0.845605,0.374869,0.682759,0.936544,0.27387,0.140589,0.320305,0.253243,0.00693041,0.224887,0.929708,0.662264,0.718796,0.212486,0.297876,0.768042,0.329917,0.297796,0.722671,0.441077,0.714041,0.239681,0.749097,0.731048,0.976774,0.762009,0.928342,0.0875068,0.665199,0.0193875,0.163954,0.0199054,0.654195,0.867783,0.178852,0.684239,0.734754,0.0913647,0.532441,0.391481,0.316677,0.832001,0.0954682,0.809032,0.94811,0.828841,0.174546,0.730168,0.219269,0.777732,0.964916,0.470404,0.986647,0.10821,0.326732,0.331441,0.302986,0.543375,0.952215,0.125642,0.753484,0.880329,0.76819,0.858233,0.656449,0.391571,0.0608137,0.751935,0.935186,0.46323,0.0341446,0.950543,0.499153,0.0300767,0.353415,0.821943,0.0708219,0.719042,0.926177,0.729659,0.457448,0.916445,0.345948,0.256179,0.918936,0.435861,0.207577,0.703594,0.789258,0.0671962,0.433397,0.233926,0.864524,0.144592,0.540653,0.17303,0.927998,0.377585,0.12148,0.741532,0.144282,0.302585,0.949633,0.279841,0.662033,0.660365,0.169923,0.642476,0.555929,0.14201,0.505135,0.830156,0.902778,0.677226,0.39061,0.494078,0.210645,0.756091,0.733413,0.381555,0.788108,0.769782,0.145765,0.398765,0.447238,0.143179,0.750347,0.391665,0.0924655,0.231932,0.543592,0.36499,0.883593,0.864123,0.88172,0.733547,0.383028,0.925037,0.590877,0.304555,0.673473,0.516686,0.527441,0.174538,0.232114,0.0692628,0.94577,0.295334,0.443187,0.203562,0.487975,0.730184,0.136694,0.486614,0.907498,0.288294,0.338587,0.735893,0.559741,0.159107,0.508888,0.509092,0.32014,0.794288,0.925245,0.907797,0.324906,0.339106,0.734761,0.527212,0.495472,0.56069,0.433813,0.121159,0.957515,0.971504,0.38604,0.0997383,0.62226,0.091782,0.97058,0.589439,0.181837,0.354428,0.977354,0.793957,0.113018,0.128826,0.267614,0.843057,0.0718522,0.704755,0.140451,0.91106,0.812169,0.667645,0.78761,0.407339,0.793013,0.654878,0.750881,0.68532,0.495265,0.451872,0.138612,0.873799,0.596215,0.989417,0.0973887,0.753167,0.128078,0.778419,0.538538,0.379261,0.785037,0.548914,0.162059,0.552355,0.503461,0.258237,0.356477,0.900867,0.87458,0.901402,0.133717,0.134924,0.278308,0.995326,0.683058,0.385112,0.808847,0.150688,0.914005,0.241886,0.470832,0.53154,0.160192,0.331087,0.208711,0.954223,0.857524,0.110768,0.150634,0.809799,0.807052,0.951259,0.413985,0.315974,0.843556,0.641593,0.483973,0.632389,0.996745,0.557257,0.702586,0.486336,0.483686,0.548192,0.0486782,0.739945,0.249949,0.576091,0.491759,0.249274,0.568158,0.919372,0.781972,0.623073,0.258148,0.942515,0.146403,0.634491,0.092068,0.482764,0.931455,0.472398,0.639276,0.605677,0.674308,0.506079,0.870696,0.0532052,0.12083,0.936641,0.824577,0.16562,0.764239,0.0426804,0.69476,0.0945837,0.581641,0.456833,0.573599,0.833674,0.699189,0.163483,0.996654,0.432767,0.973233,0.661017,0.690786,0.0610772,0.211696,0.642228,0.806469,0.0732414,0.0448905,0.292738,0.924288,0.675359,0.268551,0.283862,0.445723,0.703545,0.168368,0.950616,0.762804,0.748861,0.277429,0.00306761,0.621276,0.0205697,0.0312994,0.046118,0.0829114,0.0880105,0.873,0.39199,0.399379,0.360267,0.349502,0.881972,0.0941002,0.835754,0.109293,0.0485542,0.8021,0.810111,0.717513,0.595089,0.384321,0.343374,0.105692,0.436697,0.915228,0.196342,0.993212,0.493333,0.47175,0.360764,0.647478,0.795146,0.190882,0.932572,0.119834,0.56412,0.296579,0.0100102,0.172904,0.667341,0.210433,0.297029,0.411242,0.374479,0.580573,0.559018,0.385392,0.900498,0.209465,0.241286,0.886691,0.62401,0.0881114,0.759581,0.175632,0.157867,0.112158,0.234683,0.0674811,0.851114,0.925122,0.623324,0.982094,0.0485088,0.432536,0.220724,0.247344,0.961186,0.105497,0.0833701,0.576656,0.613405,0.156768,0.168373,0.613562,0.57103,0.34742,0.932897,0.48585,0.383244,0.46375,0.900151,0.145417,0.099628,0.774893,0.686058,0.422616,0.656061,0.141205,0.599909,0.926699,0.63711,0.425006,0.914682,0.185345,0.795337,0.689063,0.806138,0.371847,0.19168,0.552555,0.252393,0.0540496,0.255904,0.225999,0.145746,0.790403,0.280235,0.269518,0.771316,0.303913,0.574717,0.715188,0.429898,0.811107,0.871439,0.469436,0.638653,0.383417,0.114423,0.135285,0.528494,0.230146,0.807719,0.679642,0.509895,0.880305,0.245992,0.997947,0.138821,0.327399,0.443611,0.896558,0.724635,0.937473,0.416869,0.433913,0.97419,0.823855,0.254575,0.928617,0.710359,0.985514,0.737121,0.211567,0.0913587,0.883182,0.0573998,0.273748,0.44217,0.810984,0.377281,0.232164,0.169277,0.359975,0.0703878,0.797347,0.116887,0.655887,0.374842,0.607438,0.205384,0.177639,0.571275,0.359058,0.0575483,0.49881,0.410756,0.0334988,0.207701,0.445253,0.526856,0.651609,0.39849,0.388109,0.444938,0.699112,0.859667,|0.082991,0.0154116,0.0923889,0.0731795,0.732635,0.127143,0.0761733,0.531034,0.224987,0.241036,0.426931,0.497795,0.798424,0.504386,0.719179,0.0374577,0.446131,0.446074,0.585743,0.236114,0.735312,0.322357,0.976027,0.59645,0.561189,0.811139,0.356149,0.803408,0.317482,0.864068,0.227055,0.946592,0.819193,0.664338,0.920914,0.918637,0.956543,0.659108,0.0581932,0.341389,0.0875267,0.738952,0.058499,0.378812,0.2794,0.51139,0.399244,0.178498,0.278184,0.748653,0.867148,0.166763,0.14724,0.119327,0.292537,0.573699,0.14508,0.325913,0.854189,0.987608,0.130308,0.071495,0.737932,0.401056,0.507161,0.0762967,0.983724,0.899849,0.479347,0.649154,0.355686,0.198523,0.990476,0.99799,0.40292,0.578123,0.77892,0.641725,0.393449,0.185419,0.90701,0.0397934,0.969157,0.648253,0.662787,0.772632,0.408217,0.552127,0.599921,0.0162337,0.689672,0.223553,0.0529491,0.534829,0.690081,0.160088,0.870724,0.995213,0.408939,0.728618,0.340688,0.0236667,0.0326242,0.384209,0.838007,0.413149,0.214218,0.261281,0.391265,0.594092,0.938556,0.225268,0.602734,0.697263,0.952736,0.646507,0.964704,0.850027,0.557878,0.113438,0.906539,0.45222,0.97584,0.194724,0.825676,0.479119,0.599862,0.0987392,0.663321,0.998504,0.363703,0.452778,0.386906,0.441914,0.595263,0.630463,0.47614,0.483648,0.0829927,0.531182,0.644473,0.134475,0.863252,0.305586,0.180277,0.372497,0.502647,0.485613,0.951774,0.926392,0.216478,0.66311,0.344177,0.403179,0.736512,0.62493,0.65591,0.446947,0.147936,0.0782045,0.188698,0.063961,0.81706,0.53999,0.903785,0.658058,0.719676,0.784983,0.0287759,0.521211,0.131908,0.989884,0.870663,0.647305,0.492857,0.647435,0.704575,0.935755,0.821951,0.948462,0.272623,0.0345279,0.815404,0.131398,0.927189,0.884649,0.678282,0.551893,0.275566,0.845341,0.482911,0.993805,0.644159,0.184928,0.772462,0.147865,0.62913,0.584385,0.152644,0.486002,0.818563,0.686267,0.840666,0.270997,0.621351,0.537341,0.359933,0.328479,0.247026,0.944991,0.355882,0.723129,0.642529,0.950951,0.786409,0.344278,0.0471239,0.794595,0.154599,0.97518,0.878032,0.507779,0.89323,0.0102056,0.591691,0.537658,0.849948,0.453177,0.247248,0.146626,0.131762,0.352622,0.365803,0.46979,0.865386,0.850285,0.643795,0.461893,0.267763,0.270158,0.400301,0.747674,0.839534,0.672972,0.0750201,0.223385,0.152578,0.793892,0.389798,0.837119,0.94496,0.053537,0.596304,0.396853,0.367232,0.838052,0.849095,0.542879,0.824259,0.500851,0.777142,0.814323,0.499394,0.956814,0.603469,0.584207,0.865162,0.464528,0.326707,0.820305,0.809107,0.672156,0.847709,0.0651262,0.0546534,0.599382,0.941494,0.000435948,0.828852,0.453462,0.22663,0.802408,0.00154996,0.37571,0.937688,0.30608,0.945269,0.501221,0.204852,0.572941,0.209576,0.751232,0.0553417,0.799926,0.0424185,0.448052,0.859809,0.44537,0.652141,0.646977,0.837576,0.717116,0.0492232,0.971811,0.359569,0.431061,0.534541,0.981882,0.294102,0.933914,0.150392,0.337855,0.603596,0.840629,0.226035,0.311733,0.958501,0.381232,0.43239,0.815381,0.559185,0.658744,0.353979,0.216012,0.791051,0.313053,0.977702,0.337478,0.876263,0.385838,0.177803,0.359805,0.693209,0.26017,0.395482,0.295846,0.262099,0.297178,0.721699,0.52759,0.200561,0.647599,0.671706,0.578052,0.446876,0.873585,0.434952,0.474705,0.0215169,0.560764,0.257414,0.762303,0.343449,0.0930372,0.777269,0.116004,0.47203,0.714942,0.364449,0.784965,0.137384,0.70797,0.0167918,0.248702,0.387135,0.602057,0.56099,0.630435,0.311174,0.529189,0.287242,0.756665,0.164803,0.89807,0.565871,0.585693,0.381125,0.106248,0.300878,0.459694,0.113839,0.0484415,0.883363,0.715858,0.360012,0.894066,0.351806,0.110524,0.443866,0.872031,0.393395,0.891643,0.733536,0.517103,0.04827,0.524471,0.0170557,0.646314,0.407671,0.205735,0.87241,0.567142,0.883912,0.281315,0.471658,0.432263,0.335557,0.0230474,0.603305,0.209131,0.342377,0.153212,0.77654,0.682671,0.0262347,0.278876,0.430261,0.735038,0.242838,0.00679511,0.78195,0.352425,0.578148,0.198603,0.745047,0.677322,0.485237,0.184256,0.181108,0.844561,0.468864,0.428686,0.379931,0.307658,0.128432,0.0624828,0.467549,0.893035,0.675398,0.112643,0.329238,0.868502,0.801318,0.820626,0.720876,0.33957,0.0711543,0.0607402,0.695421,0.727848,0.957158,0.13212,0.840579,0.922214,0.825339,0.932583,0.352698,0.156288,0.860746,0.291181,0.578892,0.436676,0.172797,0.761908,0.130598,0.172642,0.427328,0.199533,0.0376531,0.540026,0.531219,0.551903,0.0191294,0.215465,0.831828,0.466034,0.77582,0.78113,0.732511,0.075164,0.882382,0.720708,0.861152,0.869755,0.881648,0.159693,0.236258,0.800868,0.0574319,0.998025,0.712159,0.868843,0.422041,0.318034,0.596054,0.306429,0.0588158,0.275879,0.623294,0.464237,0.0183979,0.883125,0.19694,0.271642,0.397256,0.219927,0.492992,0.237465,0.0373027,0.107558,0.90482,0.667931,0.0457822,0.532244,0.444667,0.967842,0.475545,0.166946,0.44295,0.899261,0.265996,0.995107,0.374411,0.0505091,0.783387,0.38462,0.580168,0.815924,0.791292,0.314086,0.619797,0.0829456,0.987793,0.340405,0.180721,0.678672,0.716416,0.400182,0.850723,0.829022,0.940947,0.662668,0.376849,0.758299,0.765641,0.390176,0.154343,0.510107,0.998382,0.803271,0.262555,0.481604,0.830172,0.565009,0.610365,0.412523,0.894065,0.142761,0.0616879,0.068509,0.0428995,0.542409,0.548076,0.825059,0.865595,0.929366,0.0425028,0.30538,0.904431,0.0543451,0.520054,0.854187,0.549558,0.445446,0.575767,0.751216,0.810273,0.778763,0.301304,0.903579,0.961876,0.566976,0.543769,0.780582,0.00301224,0.412542,0.186643,0.996694,0.879935,0.877847,0.0942381,0.764421,0.350568,0.90925,0.38657,0.573947,0.681197,0.91219,0.581361,0.235072,0.926761,0.0327612,0.314149,0.93155,0.373672,0.42191,0.248748,0.571615,0.115578,0.577583,0.703329,0.854153,0.531684,0.0520871,0.109485,0.422218,0.981162,0.369397,0.673664,0.525368,0.112193,0.878363,0.604906,0.53685,0.532028,0.000632882,0.198939,0.790263,0.915063,0.0049265,0.437608,0.297757,0.559745,0.724938,0.584438,0.608609,0.819165,0.865946,0.724935,0.0583912,0.840176,0.669745,0.0979269,0.919709,0.785168,0.244007,0.414238,0.022114,0.225652,0.140086,0.251107,0.531003,0.0888596,0.605072,0.773644,0.164042,0.816983,0.261689,0.827142,0.775221,0.858025,0.72994,0.916242,0.715756,0.342731,0.846204,0.0795859,0.459757,0.850709,0.473328,0.328375,0.848441,0.0140447,0.986891,0.846083,0.268841,0.653105,0.613608,0.289915,0.377929,0.727656,0.0805278,0.193255,0.739897,0.120397,0.238835,0.826132,0.00527424,0.415411,0.0636914,0.563301,0.898815,0.19554,0.813516,0.00185478,0.779731,0.196186,0.145044,0.916061,0.902663,0.30245,0.805529,0.843834,0.135331,0.788166,0.692459,0.517137,0.455631,0.506237,0.254462,0.434259,0.922487,0.0453855,0.647992,0.634431,0.5792,0.934101,0.274405,0.440105,0.770688,0.590296,0.702265,0.209952,0.598216,0.273089,0.533347,0.843352,0.187768,0.356224,0.235873,0.84382,0.77362,0.98564,0.0539671,0.611461,0.252872,0.884983,0.467816,0.273629,0.726149,0.659234,0.7383,0.298812,0.623659,0.435189,0.591706,0.179568,0.774998,0.0379964,0.653273,0.310649,0.615756,0.403,0.666531,0.284676,0.27412,0.997506,0.959466,0.443113,0.233854,0.0283863,0.549022,0.194929,0.661589,0.920925,0.316669,0.486681,0.599393,0.099537,0.167863,0.975141,0.0226488,0.382184,0.393665,0.413333,0.777831,0.933105,0.871507,0.916658,0.809853,0.27345,0.0353892,0.868937,0.314357,0.859598,0.671423,0.084911,0.853391,0.0896806,0.469384,0.185102,0.913294,0.482495,0.696748,0.563412,0.38809,0.175024,0.283332,0.63785,0.19223,0.842041,0.89818,0.4593,0.988544,0.0364686,0.267378,0.708303,0.151418,0.390235,0.863028,0.596598,0.228574,0.861065,0.979907,0.63888,0.359089,0.78787,0.367668,0.611575,0.598576,0.900916,0.786381,0.274761,0.0665849,0.799908,0.835851,0.174496,0.715133,0.459118,0.230822,0.605879,0.684793,0.637298,0.899739,0.937773,0.167797,0.32103,0.178767,0.685584,0.345901,0.726598,0.152527,0.371451,0.861747,0.561486,0.687708,0.432086,0.954308,0.907913,0.561277,0.871371,0.130298,0.096531,0.535263,0.131941,0.21958,0.275538,0.487434,0.263669,0.591102,0.51408,0.0776079,0.799574,0.65561,0.114154,0.071737,0.8693,0.278977,0.428541,0.68473,0.759749,0.0565237,0.521093,0.109891,0.737294,0.888265,0.774688,0.70441,0.123009,0.802871,0.869651,0.694078,0.724831,0.364071,0.271508,0.838672,0.361665,0.808925,0.739067,0.953378,0.234356,0.144038,0.0560446,0.91833,0.0752267,0.233635,0.21388,0.113123,0.402346,0.481449,0.77831,0.224391,0.733271,0.659323,0.433655,0.520309,0.854419,0.846254,0.382959,0.734088,0.50662,0.197332,0.321356,0.835915,0.134408,0.962765,0.760491,0.153773,0.322688,0.451808,0.760618,0.421726,0.159586,0.206547,0.0373811,0.313221,0.978423,0.197807,0.849846,0.0627653,0.387026,0.0172381,0.989146,0.252003,0.318955,0.711015,0.0890974,0.920604,0.259988,0.979372,0.933011,0.347743,0.286693,0.0175239,0.697816,0.860977,0.466532,0.695869,0.541584,0.3818,0.323986,0.0447711,0.944273,0.294979,0.0689024,0.439627,0.638298,0.761966,0.855178,0.191092,0.374462,0.28475,0.943984,0.938095,0.858852,0.802426,0.505886,0.770696,0.553372,0.451698,0.882778,0.838032,0.367163,0.966197,0.0895856,0.892281,0.642909,0.716539,0.650017,0.483216,0.775194,0.520796,0.273423,0.390336,0.0759593,0.973597,0.427671,0.654437,0.7289,0.0785312,0.616817,0.6376,0.292092,0.594788,0.907945,0.588127,0.446738,0.782963,0.476199,0.627893,|0.206513,0.110396,0.266998,0.317685,0.568034,0.4666,0.279807,0.520749,0.769019,0.120196,0.71791,0.47784,0.869459,0.631381,0.209432,0.829845,0.879728,0.9496,0.836161,0.617441,0.796701,0.299579,0.797603,0.607685,0.606419,0.101964,0.298132,0.954366,0.844301,0.578597,0.85185,0.743024,0.545201,0.804456,0.203372,0.770714,0.430213,0.453973,0.832711,0.452919,0.127145,0.873529,0.0163916,0.469077,0.744221,0.152556,0.940599,0.909092,0.942375,0.990267,0.974993,0.493183,0.639259,0.0663988,0.62384,0.924259,0.597802,0.909794,0.159026,0.153974,0.575762,0.606522,0.273933,0.838621,0.435607,0.664845,0.45912,0.426483,0.520579,0.740957,0.496916,0.515755,0.0686029,0.325939,0.401689,0.209158,0.201846,0.870581,0.0897737,0.0960133,0.735583,0.430086,0.941784,0.1146,0.0294573,0.164905,0.213528,0.14795,0.0532155,0.498775,0.535004,0.0152913,0.59207,0.0349259,0.797012,0.923806,0.257424,0.798232,0.530768,0.397132,0.162436,0.473506,0.535003,0.365401,0.610452,0.91902,0.771336,0.997126,0.0640345,0.888707,0.477694,0.101797,0.879026,0.193436,0.370216,0.127026,0.129757,0.495502,0.182681,0.0471626,0.219051,0.63775,0.163677,0.203126,0.531531,0.60058,0.48119,0.918737,0.0567178,0.540197,0.277037,0.443673,0.00125057,0.980487,0.251117,0.758224,0.75199,0.614738,0.937505,0.673631,0.931947,0.291018,0.0453409,0.941309,0.200943,0.546304,0.925362,0.356702,0.460078,0.0622283,0.0602399,0.958846,0.743076,0.512261,0.352893,0.718598,0.0309167,0.720278,0.22459,0.0344738,0.681465,0.742537,0.611203,0.196004,0.044313,0.270606,0.486705,0.931332,0.72758,0.872826,0.868341,0.860063,0.607813,0.344908,0.718931,0.788894,0.569738,0.816288,0.437622,0.845103,0.288623,0.99,0.387394,0.158258,0.902701,0.90798,0.222624,0.992931,0.615744,0.158987,0.332401,0.327285,0.901095,0.541113,0.749186,0.965715,0.130107,0.519577,0.584877,0.589689,0.347748,0.230659,0.0587558,0.265488,0.354686,0.478707,0.352046,0.315747,0.930402,0.460964,0.355343,0.292769,0.737767,0.0921111,0.316941,0.861124,0.721342,0.471934,0.77792,0.600664,0.552666,0.433628,0.96461,0.827904,0.838473,0.416662,0.272864,0.712299,0.639567,0.435531,0.88305,0.462659,0.872692,0.252239,0.796317,0.0247325,0.908514,0.98652,0.850447,0.485123,0.292376,0.677401,0.630083,0.504692,0.239825,0.0486487,0.40973,0.874419,0.724475,0.262212,0.759832,0.859203,0.545239,0.397043,0.384006,0.13268,0.765933,0.950959,0.203748,0.936363,0.599067,0.878402,0.710274,0.625023,0.785044,0.116905,0.851797,0.985829,0.873858,0.924159,0.24163,0.765024,0.632896,0.320817,0.00745058,0.7161,0.272981,0.098675,0.679977,0.116863,0.696898,0.114985,0.726664,0.110973,0.180019,0.735914,0.228279,0.318493,0.275924,0.621615,0.375663,0.88728,0.504152,0.995918,0.0705044,0.105206,0.313515,0.979643,0.761917,0.497969,0.73191,0.151208,0.921147,0.661517,0.310344,0.982473,0.167238,0.368855,0.173745,0.638533,0.963266,0.65811,0.618364,0.598275,0.827076,0.933501,0.478433,0.599243,0.8001,0.889944,0.632022,0.197509,0.998806,0.85814,0.851354,0.870994,0.368947,0.791293,0.0732715,0.245472,0.613429,0.45853,0.147749,0.0241686,0.750504,0.436261,0.503639,0.0973304,0.0831399,0.633091,0.955669,0.691109,0.412877,0.818662,0.975212,0.539795,0.387518,0.481416,0.126687,0.557651,0.762107,0.911846,0.0160522,0.211078,0.130189,0.188987,0.896852,0.37151,0.323046,0.12883,0.914326,0.667798,0.337701,0.356435,0.0048719,0.78531,0.97323,0.548213,0.209391,0.700776,0.915905,0.795061,0.619459,0.174444,0.290622,0.546192,0.201398,0.224689,0.463211,0.077933,0.704427,0.4686,0.903925,0.984779,0.520806,0.305341,0.624269,0.732694,0.461969,0.0916805,0.402806,0.766929,0.786845,0.166156,0.767558,0.905712,0.710451,0.554183,0.653699,0.784085,0.142233,0.199844,0.0758151,0.96798,0.924282,0.0658442,0.789257,0.302331,0.833579,0.752201,0.090143,0.207131,0.42108,0.378374,0.929598,0.0650631,0.849012,0.119731,0.466834,0.219126,0.168634,0.73019,0.841789,0.831207,0.828621,0.433874,0.456269,0.354383,0.00145864,0.892347,0.997599,0.994465,0.688958,0.169719,0.285771,0.777561,0.889122,0.362928,0.750866,0.807377,0.355504,0.216577,0.81755,0.947269,0.304116,0.531664,0.945106,0.262548,0.0182083,0.518513,0.992644,0.894622,0.396732,0.580114,0.231569,0.984362,0.904837,0.94438,0.354416,0.503198,0.517368,0.496226,0.104048,0.040054,0.76669,0.814835,0.0374681,0.737181,0.956582,0.755182,0.114084,0.22606,0.238989,0.997641,0.238835,0.933217,0.625761,0.408317,0.0874168,0.119704,0.502711,0.97928,0.594299,0.149935,0.574589,0.178891,0.959491,0.616261,0.798863,0.361683,0.432924,0.743775,0.150177,0.700863,0.659983,0.353833,0.442181,0.100134,0.296672,0.255941,0.634058,0.890402,0.880875,0.663545,0.814155,0.716275,0.0178561,0.602325,0.5565,0.0718608,0.512172,0.278233,0.728028,0.340856,0.970153,0.23361,0.959057,0.571607,0.0375274,0.300621,0.589243,0.839108,0.368346,0.502596,0.50507,0.480859,0.570251,0.982413,0.843749,0.291002,0.0932798,0.505091,0.0826561,0.712808,0.477258,0.0750376,0.0587946,0.692331,0.863697,0.187603,0.698864,0.682165,0.387197,0.610444,0.355875,0.23087,0.403593,0.84049,0.691354,0.170913,0.993302,0.516109,0.761739,0.820141,0.786986,0.171143,0.314159,0.931417,0.747248,0.228738,0.390795,0.886417,0.97866,0.185876,0.419509,0.332472,0.119426,0.691528,0.0667534,0.510644,0.21884,0.199502,0.358184,0.0845873,0.85272,0.307157,0.399209,0.663862,0.840021,0.00432944,0.206719,0.11892,0.134667,0.170751,0.388164,0.445824,0.887535,0.359255,0.299461,0.844207,0.376856,0.319538,0.357727,0.780479,0.82356,0.551447,0.715236,0.689722,0.384874,0.408086,0.274569,0.714468,0.1636,0.896508,0.902688,0.506793,0.0635104,0.677899,0.80173,0.252572,0.253771,0.580403,0.121338,0.360371,0.926049,0.635386,0.696015,0.32715,0.598923,0.914855,0.767949,0.256824,0.656073,0.653359,0.0170496,0.512632,0.585375,0.491622,0.278958,0.215034,0.429803,0.554267,0.232651,0.0869199,0.629889,0.396668,0.32967,0.162395,0.831276,0.979172,0.580409,0.148308,0.079149,0.737392,0.0693697,0.698179,0.831516,0.996952,0.597106,0.171554,0.143226,0.228781,0.0648854,0.0761532,0.755443,0.846729,0.514995,0.784485,0.526321,0.011893,0.394114,0.9955,0.132019,0.425785,0.265606,0.351872,0.431073,0.787903,0.303003,0.315952,0.142956,0.181886,0.48526,0.292823,0.884701,0.344084,0.459501,0.177437,0.697322,0.897438,0.770789,0.194854,0.620014,0.262133,0.595381,0.360678,0.876385,0.49417,0.996343,0.924605,0.00691444,0.32907,0.286697,0.299582,0.0928402,0.179841,0.790502,0.145888,0.671804,0.480842,0.984398,0.802699,0.129562,0.886268,0.538258,0.569274,0.47957,0.953859,0.767917,0.473057,0.758865,0.263959,0.955037,0.146993,0.86014,0.395073,0.95384,0.842842,0.957516,0.45633,0.700987,0.778611,0.0166495,0.0199338,0.792851,0.328603,0.0352153,0.785095,0.496344,0.322976,0.850945,0.869221,0.248224,0.164248,0.18502,0.198918,0.230548,0.0654082,0.00601226,0.662979,0.276197,0.302972,0.351819,0.135242,0.0842482,0.883587,0.716582,0.861126,0.314375,0.590911,0.0730664,0.0209631,0.887217,0.29036,0.452936,0.0293392,0.0132817,0.17204,0.085584,0.668385,0.240894,0.202708,0.171677,0.645676,0.0954542,0.49983,0.155149,0.0627288,0.453806,0.260539,0.401411,0.680686,0.0988148,0.114522,0.517246,0.410181,0.164145,0.55297,0.513227,0.429201,0.8914,0.260166,0.366618,0.95216,0.433549,0.51088,0.564593,0.931189,0.827805,0.498219,0.769446,0.561856,0.96912,0.151592,0.00513625,0.660542,0.207166,0.961493,0.123716,0.0663059,0.998968,0.696128,0.414502,0.206112,0.649093,0.0127175,0.859109,0.862635,0.566657,0.507203,0.59823,0.232598,0.56271,0.359301,0.0616811,0.695292,0.985759,0.54174,0.609755,0.0580636,0.156007,0.724752,0.876906,0.480671,0.694865,0.256696,0.100242,0.0901814,0.979576,0.459765,0.444704,0.106505,0.552206,0.325785,0.276204,0.234122,0.90981,0.456058,0.820195,0.34998,0.0821877,0.0806101,0.248018,0.185138,0.785623,0.0670403,0.425689,0.841268,0.160588,0.850248,0.501492,0.250605,0.50664,0.663344,0.224368,0.0835168,0.687231,0.664409,0.690532,0.414462,0.881836,0.967456,0.728911,0.729426,0.393514,0.289344,0.754383,0.348854,0.993436,0.908608,0.152305,0.0925317,0.0399206,0.33784,0.091144,0.303097,0.425401,0.463608,0.868001,0.383033,0.134624,0.30443,0.351017,0.770402,0.916139,0.0488485,0.892793,0.2977,0.716199,0.0721502,0.214464,0.910135,0.239676,0.467858,0.567222,0.989038,0.325037,0.246147,0.269574,0.887345,0.719788,0.589621,0.820041,0.809946,0.27223,0.215767,0.172801,0.305798,0.396299,0.740856,0.544614,0.48136,0.073081,0.539494,0.84968,0.631038,0.203772,0.957642,0.169341,0.286276,0.0287175,0.542033,0.689232,0.341471,0.379478,0.735195,0.293062,0.79287,0.556618,0.694653,0.0454133,0.713727,0.918966,0.0419428,0.315467,0.775847,0.729145,0.234575,0.159491,0.124924,0.400323,0.117233,0.967588,0.885485,0.466194,0.181507,0.832841,0.321723,0.0445231,0.951859,0.185151,0.365077,0.215579,0.812517,0.652657,0.730048,0.560614,0.221667,0.893883,0.615374,0.152171,0.165458,0.424541,0.549259,0.54195,0.034408,0.349329,0.805731,0.23665,0.488324,0.226098,0.766834,0.588397,0.619276,0.877056,0.00540209,0.992941,0.70852,0.811755,0.634247,0.631348,0.899874,0.264011,0.170477,0.772863,0.564698,0.586402,0.51085,0.614871,0.984448,0.119905,0.769973,0.0781726,0.87063,0.766899,0.768945,0.669759,0.780862,0.413035,0.988538,|0.326346,0.405596,0.0647682,0.351187,0.991359,0.280712,0.0228671,0.149415,0.0721784,0.465861,0.198387,0.58815,0.083607,0.39017,0.877155,0.330376,0.70845,0.822175,0.548021,0.269717,0.447103,0.796826,0.68332,0.373123,0.978518,0.917725,0.684248,0.571307,0.786135,0.556649,0.732415,0.415805,0.00521773,0.90598,0.554502,0.993582,0.439004,0.432155,0.543404,0.279146,0.00898629,0.695072,0.393468,0.590049,0.833527,0.485731,0.649002,0.169438,0.995485,0.482997,0.55604,0.958455,0.0378593,0.591932,0.331036,0.0510253,0.940504,0.770796,0.357421,0.784184,0.845303,0.0897012,0.174187,0.702601,0.503209,0.689472,0.27891,0.384735,0.787971,0.738669,0.190349,0.528748,0.0818836,0.0920208,0.17079,0.892848,0.628403,0.824721,0.308125,0.123376,0.365168,0.266936,0.224407,0.413862,0.589869,0.444975,0.591047,0.525622,0.718511,0.970224,0.859749,0.353865,0.843494,0.693306,0.641402,0.765556,0.561818,0.143709,0.895832,0.410031,0.122189,0.595394,0.875755,0.672647,0.806046,0.265478,0.572228,0.874339,0.518618,0.889998,0.571383,0.963141,0.822765,0.605237,0.0725833,0.811989,0.529127,0.943403,0.874565,0.0710667,0.824654,0.618146,0.649144,0.406233,0.831882,0.836572,0.162535,0.740993,0.402643,0.110049,0.961864,0.289592,0.998041,0.629509,0.216844,0.804835,0.955005,0.408516,0.254859,0.562549,0.841043,0.985525,0.721672,0.46225,0.988139,0.72632,0.61982,0.00967556,0.941386,0.597116,0.603551,0.218157,0.556109,0.845454,0.173609,0.414443,0.647255,0.846496,0.702015,0.0137646,0.0563523,0.0224192,0.305333,0.870354,0.0625961,0.844632,0.480817,0.429187,0.277351,0.812727,0.387402,0.60774,0.656676,0.372739,0.594825,0.654713,0.198042,0.240804,0.355524,0.761176,0.774567,0.680023,0.981221,0.115595,0.273092,0.197151,0.756825,0.732826,0.149138,0.943583,0.588143,0.784171,0.481047,0.520396,0.616567,0.293856,0.410069,0.797126,0.528455,0.480761,0.153208,0.782809,0.947494,0.778724,0.29194,0.797065,0.394913,0.518001,0.59008,0.118778,0.731684,0.285751,0.43789,0.590574,0.56199,0.79374,0.920599,0.160395,0.429532,0.568494,0.253027,0.0993187,0.256591,0.100621,0.419672,0.455215,0.996571,0.950165,0.734723,0.733169,0.539988,0.18324,0.986096,0.637548,0.411616,0.719817,0.428909,0.287021,0.725244,0.43677,0.590168,0.623669,0.718084,0.0983756,0.0593381,0.25149,0.633819,0.937693,0.0176589,0.433672,0.862238,0.960134,0.14101,0.418224,0.155652,0.702535,0.117507,0.30811,0.0785159,0.528389,0.267308,0.319133,0.410627,0.00475478,0.818766,0.57886,0.805018,0.718669,0.953817,0.580883,0.643011,0.107891,0.370586,0.941687,0.20885,0.274632,0.287613,0.100213,0.660797,0.78154,0.607171,0.238387,0.776426,0.83042,0.632802,0.376716,0.955215,0.035602,0.916846,0.972951,0.126489,0.769015,0.24826,0.630428,0.647141,0.233936,0.84866,0.301547,0.794452,0.267317,0.0488962,0.887546,0.0306685,0.54118,0.187104,0.865534,0.478184,0.562944,0.893897,0.604447,0.26934,0.61691,0.542781,0.888142,0.257944,0.584743,0.0520973,0.905508,0.566249,0.820607,0.794679,0.142546,0.917387,0.612652,0.990285,0.662773,0.00532609,0.248323,0.17913,0.0279137,0.157342,0.244492,0.847555,0.308102,0.563135,0.545109,0.297441,0.874276,0.0689523,0.468055,0.249694,0.999569,0.240165,0.641831,0.265618,0.341957,0.379513,0.718889,0.090703,0.846552,0.399848,0.934717,0.962009,0.813427,0.240047,0.703965,0.864163,0.303625,0.16627,0.24955,0.178913,0.0500814,0.886632,0.585819,0.856681,0.313244,0.660426,0.0573685,0.171884,0.972406,0.679506,0.266757,0.79146,0.656042,0.240834,0.707861,0.332853,0.0415276,0.719297,0.75424,0.297695,0.061933,0.925366,0.900627,0.52369,0.0137001,0.751028,0.662241,0.462832,0.976511,0.0726206,0.637458,0.420334,0.741566,0.244001,0.25846,0.800555,0.962056,0.365639,0.897103,0.448591,0.605155,0.30769,0.742383,0.529978,0.145152,0.915306,0.97284,0.615283,0.186845,0.267167,0.816173,0.0412526,0.739347,0.22033,0.948132,0.556796,0.185789,0.0612625,0.908694,0.265196,0.818155,0.551764,0.749655,0.341523,0.630327,0.542922,0.218851,0.304917,0.793226,0.563093,0.938722,0.173864,0.0833709,0.160689,0.589088,0.664964,0.47931,0.607152,0.00941753,0.929871,0.636546,0.983503,0.804147,0.108353,0.372482,0.440252,0.304226,0.730738,0.960268,0.85778,0.935668,0.458376,0.936734,0.211893,0.0124187,0.913856,0.731457,0.537403,0.826586,0.82185,0.997198,0.542317,0.441265,0.384803,0.413604,0.188782,0.714144,0.909894,0.78781,0.958956,0.427327,0.102941,0.856153,0.698071,0.184335,0.291166,0.890238,0.483753,0.6835,0.753254,0.431788,0.962252,0.0261242,0.565437,0.650465,0.818849,0.382603,0.172615,0.931799,0.563455,0.750806,0.374819,0.589899,0.198238,0.357798,0.444834,0.589112,0.05289,0.422891,0.365956,0.910889,0.960621,0.802523,0.577164,0.965958,0.767215,0.482276,0.597531,0.655792,0.434458,0.630596,0.23181,0.189296,0.785552,0.336939,0.582709,0.677295,0.437755,0.229172,0.943403,0.0984711,0.123313,0.652801,0.691924,0.217023,0.850586,0.811949,0.293241,0.228348,0.130134,0.380815,0.100834,0.381088,0.651779,0.646701,0.513924,0.354965,0.274577,0.614133,0.271762,0.922789,0.00808001,0.0423643,0.977112,0.119888,0.674665,0.672012,0.707532,0.877122,0.210761,0.806237,0.206178,0.83445,0.764685,0.0862824,0.788096,0.0525339,0.759008,0.422241,0.739124,0.888976,0.472342,0.200387,0.464902,0.126601,0.683702,0.840275,0.366013,0.611689,0.936709,0.535728,0.167954,0.707702,0.41574,0.710123,0.415968,0.899192,0.760039,0.30088,0.487413,0.156295,0.00571901,0.838214,0.0773827,0.665718,0.354994,0.569627,0.746549,0.889263,0.0264624,0.401974,0.567569,0.0617555,0.46503,0.963872,0.3428,0.998737,0.128429,0.163914,0.0839137,0.413223,0.93226,0.0961919,0.282084,0.115637,0.376567,0.98702,0.792097,0.95296,0.305099,0.653018,0.677519,0.427402,0.349048,0.477836,0.953983,0.864967,0.593738,0.201111,0.854594,0.255551,0.744411,0.76263,0.900013,0.496062,0.617592,0.881323,0.979357,0.693578,0.833055,0.162406,0.899972,0.959472,0.271146,0.616819,0.383426,0.338685,0.374011,0.0489857,0.181155,0.833659,0.956918,0.174974,0.743531,0.281231,0.735435,0.0652635,0.130261,0.0952647,0.785135,0.25308,0.696745,0.452238,0.822297,0.478977,0.341761,0.748974,0.0640935,0.953615,0.772418,0.410865,0.233854,0.843425,0.452803,0.807377,0.446428,0.357707,0.0435618,0.64586,0.264349,0.236765,0.231803,0.963021,0.761545,0.623291,0.695335,0.179116,0.844144,0.243183,0.01535,0.314238,0.777941,0.676545,0.795745,0.0796016,0.587325,0.550306,0.358065,0.0408416,0.149779,0.540893,0.64406,0.422268,0.836302,0.696771,0.39465,0.962202,0.585684,0.350913,0.897197,0.695518,0.348117,0.515114,0.882682,0.8094,0.144766,0.50682,0.957326,0.282268,0.349748,0.476035,0.487575,0.388717,0.38855,0.153279,0.219994,0.770075,0.596638,0.942079,0.67169,0.710005,0.648711,0.879795,0.726043,0.851059,0.898539,0.301086,0.894886,0.376196,0.534312,0.469422,0.929277,0.98169,0.860828,0.731613,0.805451,0.521381,0.30555,0.831456,0.602232,0.529139,0.506662,0.76144,0.573672,0.180523,0.818854,0.913886,0.128699,0.924981,0.658847,0.113124,0.126213,0.971259,0.561209,0.432969,0.507234,0.341534,0.2996,0.858616,0.915141,0.949926,0.974142,0.0752797,0.647905,0.345196,0.333772,0.837078,0.617724,0.895012,0.865344,0.848126,0.343752,0.503012,0.761944,0.00875926,0.409607,0.257819,0.104585,0.153702,0.649433,0.432535,0.494548,0.400721,0.253624,0.961027,0.05261,0.304728,0.874323,0.326153,0.0686177,0.558302,0.891048,0.144519,0.697692,0.500826,0.376293,0.0160824,0.722965,0.106521,0.707988,0.379049,0.598269,0.412556,0.731323,0.605041,0.222037,0.397948,0.250804,0.618365,0.534662,0.990656,0.827963,0.974341,0.517686,0.661532,0.0512648,0.361107,0.313111,0.508202,0.387996,0.170726,0.800693,0.0664325,0.478512,0.765177,0.143481,0.674349,0.936197,0.742619,0.344005,0.400235,0.693979,0.397101,0.0773219,0.305853,0.959736,0.739623,0.354097,0.192135,0.188066,0.332751,0.512506,0.475063,0.756255,0.870663,0.364023,0.195923,0.109627,0.0472852,0.288275,0.265073,0.95066,0.365932,0.845451,0.209193,0.292413,0.442779,0.513161,0.217125,0.347166,0.431928,0.0549798,0.219493,0.695767,0.798891,0.991278,0.773922,0.75289,0.608434,0.376833,0.828718,0.0166747,0.804875,0.656919,0.0134023,0.497331,0.240112,0.904966,0.963623,0.0159965,0.352999,0.882588,0.752229,0.177876,0.475525,0.929101,0.0558674,0.244141,0.980464,0.345329,0.736124,0.828564,0.813827,0.0992559,0.571694,0.165116,0.621442,0.967604,0.0807055,0.38963,0.936337,0.448518,0.865661,0.801261,0.802105,0.797897,0.0180984,0.459775,0.342223,0.650243,0.740426,0.348332,0.909212,0.0742915,0.39248,0.846219,0.434828,0.2998,0.290403,0.707768,0.224652,0.332804,0.410566,0.144493,0.40897,0.785417,0.619153,0.682364,0.837805,0.617037,0.849319,0.811099,0.880124,0.0401845,0.666933,0.864961,0.34018,0.750965,0.106405,0.394079,0.644315,0.457771,0.260524,0.740041,0.131374,0.459965,0.949583,0.285038,0.783788,0.446496,0.613226,0.853539,0.420832,0.736614,0.851237,0.979259,0.481732,0.00568163,0.809047,0.14218,0.771133,0.545447,0.59566,0.300822,0.259936,0.710787,0.580422,0.0725188,0.616427,0.1521,0.732756,0.859684,0.423746,0.254988,0.322481,0.742903,0.194133,0.890173,0.929365,0.155179,0.110619,0.75117,0.290407,0.232692,0.221082,0.629018,0.207257,0.858598,0.702577,0.688088,0.065951,0.542248,0.279799,0.729348,0.028766,0.181202,0.184128,0.472301,0.690448,|0.749221,0.149198,0.226944,0.47906,0.385017,0.59408,0.64125,0.40604,0.721895,0.250629,0.565661,0.554043,0.92763,0.72854,0.968476,0.518931,0.053314,0.345743,0.854451,0.94741,0.91799,0.863741,0.435009,0.474663,0.250731,0.416379,0.405386,0.98096,0.60188,0.383724,0.20264,0.90214,0.280245,0.290493,0.517969,0.361529,0.133791,0.916612,0.684304,0.638837,0.939193,0.556362,0.051499,0.462343,0.0233268,0.381294,0.489887,0.549425,0.913943,0.328714,0.0476384,0.258987,0.894116,0.704702,0.318881,0.816378,0.0535476,0.974681,0.573247,0.573123,0.0632109,0.548203,0.862397,0.7473,0.76619,0.18472,0.163304,0.314322,0.0321418,0.454311,0.239399,0.798312,0.699612,0.169961,0.208432,0.513585,0.468607,0.230346,0.599263,0.889685,0.879102,0.155317,0.7717,0.693657,0.78967,0.812645,0.0315253,0.436412,0.989259,0.849623,0.905215,0.0688861,0.595161,0.859144,0.286664,0.707312,0.284405,0.466931,0.150004,0.258569,0.908615,0.170697,0.703703,0.157357,0.514951,0.79034,0.405737,0.455185,0.367889,0.309053,0.116884,0.333639,0.221088,0.302799,0.0494905,0.547822,0.891401,0.273206,0.311003,0.744046,0.371749,0.702633,0.474646,0.11092,0.782198,0.194843,0.90825,0.682953,0.371763,0.594283,0.200042,0.143723,0.243267,0.213158,0.352172,0.209063,0.152383,0.649753,0.654781,0.357722,0.697349,0.4555,0.843992,0.579356,0.198599,0.206374,0.248385,0.417251,0.780624,0.347224,0.612774,0.16158,0.59465,0.411122,0.283694,0.464082,0.182936,0.585441,0.691228,0.917416,0.521826,0.333689,0.835622,0.431886,0.25282,0.0904763,0.790538,0.938258,0.273258,0.932048,0.71648,0.641049,0.714243,0.499717,0.160786,0.569633,0.497108,0.0348554,0.710303,0.960345,0.54755,0.659397,0.791305,0.201518,0.898184,0.499653,0.0758308,0.597238,0.444564,0.528666,0.857946,0.218633,0.688717,0.106167,0.424864,0.717912,0.87433,0.159364,0.509098,0.466514,0.281473,0.999713,0.423813,0.170392,0.64666,0.929075,0.41413,0.396887,0.331924,0.2468,0.153696,0.466994,0.659235,0.739638,0.502219,0.138113,0.963048,0.10929,0.385369,0.376214,0.481238,0.282764,0.503667,0.121877,0.787553,0.444985,0.0219732,0.133949,0.425637,0.653695,0.133979,0.972107,0.658478,0.815804,0.189447,0.0568564,0.288985,0.534798,0.879477,0.379691,0.706585,0.750654,0.381206,0.538671,0.501416,0.621781,0.23976,0.559591,0.186176,0.240281,0.787601,0.553404,0.805365,0.544726,0.0605446,0.0730247,0.22183,0.817082,0.465193,0.505902,0.918994,0.826641,0.739168,0.846404,0.0747721,0.0474524,0.0988041,0.824419,0.949917,0.134407,0.507436,0.692336,0.584486,0.668034,0.496163,0.0544648,0.825196,0.802556,0.997581,0.0332671,0.913276,0.583149,0.814613,0.428873,0.820687,0.598836,0.597396,0.0708185,0.73979,0.527238,0.54853,0.577573,0.139383,0.295795,0.654364,0.794521,0.656125,0.566763,0.478901,0.714147,0.298983,0.538853,0.300043,0.385036,0.666395,0.416082,0.817947,0.570168,0.0826937,0.899915,0.772472,0.350938,0.199503,0.376131,0.674125,0.163612,0.664915,0.887583,0.490558,0.492259,0.111186,0.40974,0.205222,0.242554,0.977387,0.463962,0.125279,0.694633,0.897501,0.585986,0.967043,0.639158,0.0517005,0.87748,0.791243,0.11946,0.837809,0.59797,0.162753,0.671359,0.930073,0.872503,0.809071,0.797985,0.703788,0.885744,0.450783,0.107516,0.548654,0.551466,0.908124,0.179283,0.282611,0.491853,0.106782,0.495789,0.656754,0.188561,0.410666,0.48186,0.479589,0.874227,0.473567,0.205987,0.172477,0.363714,0.720421,0.496729,0.0988814,0.168788,0.131185,0.728977,0.185407,0.875475,0.216068,0.043768,0.585449,0.974304,0.99896,0.0223014,0.384573,0.232552,0.101982,0.406509,0.41739,0.874947,0.235123,0.515304,0.418239,0.750975,0.114701,0.942442,0.899159,0.157809,0.315292,0.0935489,0.749125,0.33274,0.75061,0.783516,0.212261,0.735265,0.156482,0.370278,0.307377,0.107796,0.605731,0.780247,0.963872,0.724644,0.169152,0.156111,0.644923,0.502054,0.566638,0.685668,0.249289,0.815062,0.898642,0.764647,0.96147,0.510284,0.481985,0.210099,0.113485,0.565458,0.158698,0.732186,0.00874138,0.228009,0.289263,0.153742,0.163346,0.373448,0.922076,0.539317,0.374981,0.631697,0.524532,0.399282,0.68612,0.711493,0.854824,0.925439,0.107606,0.989238,0.341754,0.473178,0.368939,0.427645,0.331039,0.428571,0.526158,0.639074,0.939829,0.441691,0.291914,0.434722,0.242947,0.332651,0.389424,0.572698,0.195856,0.800661,0.17349,0.50902,0.499147,0.642895,0.825902,0.247791,0.211209,0.512277,0.266779,0.857906,0.0306,0.578198,0.60632,0.75517,0.896214,0.94036,0.848376,0.0205618,0.599252,0.649346,0.955759,0.745809,0.0742502,0.330477,0.111122,0.349353,0.459601,0.668781,0.130209,0.582648,0.616642,0.812716,0.708122,0.0711359,0.872876,0.684424,0.194374,0.114538,0.424833,0.124992,0.00309682,0.853427,0.40384,0.706333,0.753648,0.920453,0.225915,0.190245,0.580712,0.119444,0.123593,0.633373,0.808959,0.958834,0.199532,0.575687,0.181826,0.487437,0.957633,0.390029,0.293209,0.934815,0.648477,0.243888,0.961319,0.0966158,0.797233,0.326626,0.943565,0.371439,0.176396,0.694732,0.634925,0.78451,0.921777,0.25158,0.841106,0.323054,0.380403,0.0877827,0.117503,0.055755,0.0766452,0.169264,0.704098,0.097927,0.720146,0.860441,0.217843,0.240251,0.296943,0.155108,0.970014,0.15391,0.0646139,0.438906,0.902867,0.161611,0.950147,0.935417,0.289194,0.881555,0.630874,0.383659,0.0759291,0.882022,0.0983332,0.955745,0.656882,0.762251,0.776078,0.696641,0.741714,0.626546,0.0105317,0.84985,0.997088,0.958361,0.930422,0.404815,0.815076,0.544512,0.428187,0.0137918,0.962563,0.316386,0.359643,0.845497,0.180187,0.781058,0.597175,0.703067,0.357138,0.116582,0.612887,0.408351,0.707897,0.165695,0.0300876,0.470338,0.151648,0.187722,0.790403,0.346008,0.731033,0.433829,0.0983704,0.203937,0.967476,0.542708,0.0432107,0.539799,0.947482,0.709856,0.546179,0.564799,0.328491,0.589425,0.72614,0.0171682,0.982982,0.89918,0.287954,0.207532,0.911723,0.398693,0.695158,0.563519,0.178299,0.691441,0.172253,0.652982,0.252756,0.993338,0.641342,0.231762,0.281796,0.842989,0.998584,0.0515295,0.0440786,0.0473188,0.594191,0.447688,0.877595,0.675349,0.358634,0.159609,0.236084,0.621976,0.252847,0.313567,0.356101,0.0230658,0.0679908,0.603856,0.22646,0.150713,0.895575,0.908791,0.667376,0.612209,0.31416,0.715953,0.127791,0.88827,0.11585,0.801099,0.744985,0.4533,0.988617,0.267161,0.693947,0.906134,0.506035,0.0655468,0.444337,0.629301,0.0151907,0.0282349,0.382216,0.989805,0.165444,0.301228,0.0339031,0.376087,0.824475,0.225117,0.166803,0.151396,0.261777,0.217751,0.46911,0.59315,0.278517,0.188631,0.155689,0.719193,0.0284185,0.503859,0.160579,0.900275,0.153601,0.420284,0.806832,0.936676,0.417607,0.302075,0.238326,0.931413,0.29695,0.353788,0.378057,0.220816,0.526276,0.913719,0.442217,0.171324,0.33669,0.192205,0.0239897,0.785239,0.785482,0.856708,0.651174,0.0220734,0.171837,0.763938,0.462846,0.752927,0.659008,0.931642,0.680406,0.515192,0.774568,0.814297,0.157997,0.725912,0.0288802,0.898698,0.645972,0.362851,0.0196813,0.495635,0.997211,0.904519,0.334712,0.678631,0.879322,0.804551,0.372226,0.374671,0.716943,0.512906,0.072244,0.646457,0.590532,0.195575,0.552856,0.28713,0.226802,0.287389,0.975844,0.196826,0.0624886,0.698778,0.913095,0.37194,0.500038,0.280949,0.983771,0.0636413,0.620422,0.452006,0.71622,0.628444,0.151327,0.137375,0.870304,0.406185,0.908575,0.156706,0.143433,0.0957152,0.0830746,0.414254,0.111129,0.749654,0.310533,0.851478,0.397619,0.554948,0.511212,0.558806,0.682123,0.542615,0.880556,0.203596,0.439138,0.85666,0.148591,0.086596,0.981196,0.808196,0.710403,0.0815682,0.928494,0.0282568,0.251882,0.764602,0.212624,0.656065,0.158998,0.857909,0.980864,0.64601,0.358117,0.575957,0.138907,0.492675,0.00252759,0.249571,0.875397,0.182473,0.639847,0.679588,0.513018,0.325215,0.0370227,0.125438,0.104985,0.00384861,0.771373,0.500861,0.611214,0.993583,0.861306,0.922216,0.875062,0.774352,0.10124,0.748012,0.598787,0.23963,0.380605,0.680844,0.797968,0.748967,0.895344,0.729139,0.934419,0.430259,0.196269,0.88794,0.278029,0.517761,0.825761,0.797433,0.486316,0.358922,0.236821,0.500926,0.00185686,0.430932,0.214184,0.109918,0.249301,0.893504,0.598857,0.673417,0.900226,0.360149,0.784187,0.419637,0.369481,0.792582,0.992644,0.0468145,0.85402,0.987302,0.873656,0.686355,0.349575,0.15433,0.69002,0.0978702,0.311626,0.834615,0.898058,0.757429,0.528819,0.340895,0.991136,0.607938,0.202522,0.683426,0.366823,0.520001,0.724643,0.612629,0.666277,0.151851,0.335501,0.0940809,0.617036,0.878615,0.365291,0.941686,0.0714102,0.398619,0.854414,0.829042,0.321146,0.527529,0.744537,0.252696,0.832989,0.792731,0.969326,0.627775,0.18513,0.803044,0.586139,0.0396727,0.777155,0.0709212,0.393712,0.423332,0.425516,0.186961,0.000432134,0.666761,0.103235,0.536772,0.536042,0.284213,0.857012,0.671489,0.113213,0.41036,0.0421621,0.720119,0.525138,0.4662,0.273939,0.103313,0.590691,0.466897,0.309496,0.727479,0.538472,0.959951,0.722035,0.269518,0.140756,0.709265,0.638846,0.466663,0.0299218,0.364067,0.555834,0.1634,0.172399,0.164491,0.339566,0.142358,0.857895,0.617581,0.876175,0.57518,0.104843,0.822265,0.704041,0.954855,0.723442,0.145463,0.37858,0.757151,0.901258,0.135391,0.556968,0.957646,0.0053997,0.472723,0.99455,0.5704,0.363679,0.73873,0.457622,0.859797,0.641522,0.51203,0.175947,0.380168,0.800505,0.400442,|0.201263,0.985643,0.832798,0.650163,0.839707,0.360862,0.599279,0.394459,0.390908,0.0260198,0.506948,0.0783138,0.186454,0.925445,0.503918,0.996975,0.229389,0.797968,0.235547,0.919814,0.455935,0.963991,0.148896,0.488788,0.551652,0.747907,0.201206,0.455124,0.717203,0.604638,0.53227,0.414294,0.991655,0.342839,0.0220206,0.628866,0.48295,0.298893,0.750394,0.611258,0.732224,0.594951,0.4687,0.622582,0.974718,0.128801,0.78749,0.536028,0.178636,0.703602,0.0458962,0.157129,0.228423,0.884754,0.214351,0.870297,0.983664,0.435723,0.593147,0.143393,0.0652893,0.860393,0.187701,0.937771,0.103526,0.778988,0.628221,0.176246,0.573606,0.283191,0.715044,0.21342,0.978288,0.0668303,0.0182706,0.53388,0.446859,0.408307,0.220576,0.331878,0.349335,0.665611,0.409886,0.352145,0.522206,0.83651,0.0693105,0.552618,0.889788,0.174982,0.970152,0.655154,0.749597,0.575229,0.962602,0.0964874,0.698508,0.192528,0.153446,0.557039,0.226643,0.388954,0.694656,0.470727,0.976766,0.983714,0.250654,0.505526,0.0778795,0.184166,0.189691,0.393811,0.786288,0.41855,0.127434,0.645248,0.661424,0.249963,0.711451,0.000332892,0.503852,0.481193,0.829586,0.565273,0.517714,0.574192,0.216232,0.798257,0.303731,0.320015,0.801045,0.190117,0.512833,0.429484,0.147703,0.585078,0.330703,0.075556,0.720982,0.0444592,0.894898,0.717207,0.22696,0.0346207,0.00902933,0.107686,0.0486284,0.750796,0.0697306,0.737563,0.248376,0.429085,0.808604,0.872868,0.61188,0.321438,0.367609,0.0635647,0.929158,0.934633,0.352618,0.884897,0.934661,0.380642,0.726215,0.34158,0.299799,0.920619,0.521377,0.666153,0.874657,0.682561,0.163689,0.936524,0.340322,0.262966,0.821778,0.767751,0.329713,0.701837,0.273796,0.935057,0.534572,0.802413,0.993516,0.992587,0.524707,0.443256,0.488608,0.696338,0.735682,0.652184,0.505482,0.110575,0.598286,0.403927,0.402107,0.00995427,0.767295,0.0524392,0.0480304,0.818159,0.0116763,0.241993,0.292075,0.726104,0.605461,0.777207,0.527493,0.992591,0.231405,0.225868,0.93927,0.992472,0.255561,0.723009,0.787562,0.181686,0.203547,0.00660425,0.00258011,0.182057,0.212112,0.381378,0.780604,0.531558,0.586947,0.327648,0.604264,0.962196,0.502599,0.629874,0.600952,0.0211415,0.854779,0.0632534,0.552085,0.99594,0.112419,0.102444,0.731792,0.727003,0.448413,0.485027,0.857463,0.336462,0.257566,0.794608,0.156812,0.181533,0.150154,0.89409,0.546056,0.190731,0.0544214,0.763899,0.447907,0.633766,0.578226,0.118407,0.366105,0.63613,0.0649362,0.980011,0.0129857,0.435525,0.633657,0.101746,0.980559,0.281967,0.301466,0.302365,0.483961,0.282399,0.3649,0.601604,0.576603,0.773528,0.179071,0.791435,0.865123,0.604397,0.188884,0.380707,0.760871,0.574973,0.152177,0.0443895,0.333384,0.940091,0.0374197,0.845683,0.227884,0.999112,0.375543,0.574232,0.215947,0.850901,0.803226,0.505299,0.777964,0.183029,0.858387,0.274626,0.299518,0.913877,0.701406,0.975106,0.636997,0.575372,0.145162,0.260037,0.168743,0.487914,0.374809,0.806812,0.803741,0.798733,0.586229,0.978181,0.640945,0.238657,0.437541,0.474538,0.13267,0.169221,0.0919661,0.454695,0.424731,0.356792,0.876868,0.66407,0.185333,0.701901,0.550603,0.210539,0.530145,0.812253,0.0544615,0.280515,0.30964,0.910458,0.555872,0.0357477,0.375606,0.813528,0.695238,0.0330256,0.533233,0.26033,0.586948,0.816242,0.379023,0.340381,0.567126,0.693447,0.884131,0.561486,0.102089,0.578688,0.0414492,0.261005,0.177172,0.278917,0.572055,0.570753,0.821212,0.960919,0.0269305,0.842556,0.238467,0.439519,0.148106,0.529,0.386938,0.874714,0.284937,0.706959,0.777409,0.935831,0.279066,0.508469,0.113753,0.242422,0.27588,0.101757,0.318549,0.940002,0.755883,0.358534,0.610085,0.291067,0.420833,0.79336,0.235006,0.607687,0.474881,0.362783,0.0956941,0.350156,0.0250163,0.282275,0.752012,0.368295,0.280119,0.9159,0.513128,0.717359,0.181708,0.470142,0.0650144,0.734571,0.570283,0.629399,0.269011,0.466822,0.301685,0.597796,0.845136,0.534909,0.0714741,0.547965,0.0684628,0.85349,0.819291,0.500705,0.774325,0.384799,0.877653,0.650255,0.12626,0.382845,0.810984,0.979823,0.436764,0.184497,0.836718,0.879119,0.714717,0.039349,0.684081,0.634276,0.842702,0.93702,0.924355,0.210965,0.579741,0.469228,0.237419,0.720654,0.0492709,0.535687,0.549738,0.42839,0.589211,0.15879,0.787617,0.498421,0.772406,0.332192,0.705959,0.727039,0.107497,0.14245,0.635208,0.974214,0.671281,0.337055,0.549823,0.561772,0.807859,0.594907,0.884571,0.606528,0.499893,0.855588,0.943573,0.176654,0.0769371,0.393141,0.85898,0.715966,0.45926,0.353388,0.551932,0.88751,0.555773,0.392624,0.240811,0.303013,0.312904,0.605142,0.997997,0.0670705,0.330293,0.9022,0.238655,0.381881,0.407034,0.695273,0.0239825,0.110805,0.064946,0.0012849,0.549142,0.0685413,0.358775,0.441295,0.878673,0.152976,0.936562,0.0989457,0.436315,0.574114,0.718357,0.283275,0.744164,0.0845388,0.280929,0.634475,0.43607,0.0857061,0.83622,0.50015,0.170077,0.406784,0.917658,0.0708677,0.12128,0.0646787,0.574389,0.482906,0.479525,0.640734,0.704201,0.778999,0.229559,0.717484,0.83028,0.95958,0.603294,0.870097,0.744501,0.0648588,0.230758,0.0412072,0.870159,0.718948,0.0297304,0.964353,0.333519,0.0675502,0.261108,0.960716,0.433092,0.301839,0.788564,0.408382,0.100189,0.520217,0.777543,0.98481,0.938016,0.956661,0.414995,0.509913,0.022754,0.46439,0.0930495,0.991854,0.894442,0.947945,0.281266,0.578221,0.442932,0.474061,0.113907,0.959282,0.475534,0.164418,0.142186,0.724541,0.388801,0.178182,0.550196,0.0556124,0.959888,0.469348,0.781652,0.396957,0.966501,0.113654,0.597583,0.24757,0.138413,0.891363,0.272674,0.693267,0.705512,0.64528,0.26419,0.206076,0.543501,0.369798,0.486608,0.47889,0.443472,0.50418,0.17569,0.148705,0.415288,0.996771,0.999232,0.723832,0.510206,0.410253,0.783593,0.510696,0.647844,0.385702,0.753466,0.57238,0.465151,0.719605,0.810664,0.925395,0.959979,0.902702,0.812067,0.201144,0.0104287,0.993267,0.336623,0.152534,0.163566,0.266184,0.847949,0.229746,0.19511,0.582868,0.829973,0.2337,0.913747,0.0901666,0.809391,0.728103,0.590522,0.199343,0.753755,0.537124,0.487773,0.364233,0.42817,0.448164,0.501462,0.128105,0.831763,0.709093,0.81665,0.236491,0.837793,0.711902,0.44984,0.925553,0.322368,0.0597739,0.762757,0.226863,0.428726,0.381477,0.485888,0.180244,0.189969,0.349267,0.262154,0.621144,0.254665,0.969136,0.686886,0.033808,0.749651,0.324478,0.862036,0.120147,0.743389,0.627994,0.852781,0.0531453,0.383706,0.837688,0.357862,0.824494,0.311319,0.158543,0.743156,0.798567,0.294049,0.70303,0.207024,0.660166,0.368638,0.47214,0.300017,0.501513,0.317879,0.435933,0.933423,0.8939,0.836557,0.446006,0.118969,0.87497,0.31759,0.610091,0.526483,0.636157,0.866162,0.0715463,0.379266,0.475963,0.320981,0.217132,0.335822,0.247587,0.51479,0.847471,0.368269,0.169564,0.534584,0.401376,0.242553,0.801338,0.804735,0.354715,0.0412189,0.280847,0.590374,0.316204,0.0583463,0.959621,0.909452,0.719979,0.809156,0.258326,0.741499,0.0970214,0.920347,0.000951588,0.552805,0.197204,0.849676,0.289011,0.176893,0.250068,0.200861,0.692509,0.013132,0.173733,0.06688,0.0648921,0.565329,0.41634,0.616136,0.456145,0.338954,0.241684,0.9066,0.527969,0.038169,0.476893,0.0582616,0.856491,0.946512,0.664589,0.363137,0.198068,0.303583,0.450651,0.85448,0.816996,0.180771,0.333552,0.0117111,0.67918,0.137638,0.832169,0.998985,0.279041,0.714186,0.9561,0.731787,0.480608,0.393414,0.670957,0.278804,0.60346,0.572804,0.331084,0.506175,0.429988,0.386698,0.622498,0.190413,0.413878,0.387205,0.683098,0.0175378,0.945537,0.0229924,0.773096,0.877124,0.186145,0.219014,0.643189,0.395702,0.732162,0.423908,0.118219,0.843095,0.530645,0.464187,0.543228,0.0386814,0.815138,0.0542905,0.159863,0.876513,0.0322728,0.934203,0.62311,0.125928,0.787496,0.179268,0.902756,0.906257,0.0552526,0.291894,0.50925,0.269134,0.231311,0.43441,0.185755,0.997189,0.976432,0.528771,0.924048,0.825211,0.542729,0.670597,0.877234,0.507487,0.192799,0.502805,0.755686,0.114374,0.00502867,0.780081,0.605534,0.57248,0.462588,0.625231,0.526098,0.90905,0.618413,0.254603,0.295463,0.578661,0.888792,0.51438,0.240586,0.797771,0.940439,0.275781,0.49169,0.461495,0.0360647,0.690579,0.723087,0.590677,0.128731,0.889244,0.344421,0.989554,0.396448,0.871839,0.264578,0.83949,0.0677882,0.0634667,0.36217,0.852789,0.288296,0.28677,0.934398,0.774468,0.488368,0.395741,0.619586,0.885746,0.604336,0.409058,0.253058,0.337045,0.203263,0.830931,0.731901,0.632034,0.938164,0.745245,0.768627,0.5353,0.646846,0.445282,0.884968,0.906841,0.402871,0.0264013,0.999403,0.567745,0.692236,0.95033,0.48628,0.254245,0.668,0.180317,0.605635,0.893545,0.878991,0.726931,0.966471,0.314688,0.637291,0.982692,0.615796,0.90152,0.615372,0.976725,0.175551,0.967749,0.660035,0.359488,0.70518,0.801772,0.925037,0.548734,0.133748,0.568407,0.0221414,0.91277,0.59203,0.0299916,0.0440233,0.209913,0.547356,0.149628,0.153004,0.983892,0.48373,0.198914,0.85154,0.897923,0.58654,0.748478,0.512844,0.0618401,0.465661,0.0569773,0.778928,0.0807902,0.860396,0.386901,0.830048,0.925791,0.505456,0.331439,0.751377,0.932946,0.085608,0.944924,0.297763,0.603394,0.510596,0.455055,0.62887,0.61477,0.555964,0.51286,0.0761833,0.0207468,0.967774,0.473505,0.301204,0.067625,0.712322,0.797344,0.901013,0.821295,0.864228,0.954867,0.0355913,|0.211414,0.0839301,0.330562,0.128676,0.400753,0.302112,0.896825,0.0435438,0.682882,0.511272,0.360618,0.156328,0.807967,0.868152,0.860232,0.00229061,0.15956,0.0784562,0.167773,0.516708,0.539288,0.203156,0.965156,0.28143,0.079317,0.643671,0.884316,0.174346,0.620324,0.0555063,0.78957,0.890305,0.677861,0.702028,0.139382,0.644445,0.746618,0.958363,0.199427,0.306514,0.901057,0.853376,0.300037,0.268655,0.596696,0.0083133,0.527959,0.655627,0.667636,0.269695,0.316297,0.0154301,0.600616,0.470396,0.753806,0.448773,0.366555,0.78352,0.893849,0.0546028,0.247866,0.791558,0.138009,0.733643,0.309421,0.993824,0.0548307,0.926637,0.334519,0.352153,0.651466,0.854493,0.743944,0.942452,0.908253,0.463439,0.972016,0.712,0.325342,0.395633,0.18816,0.360701,0.71997,0.990598,0.971413,0.35516,0.817199,0.473064,0.678219,0.589477,0.425614,0.610479,0.17548,0.420112,0.629024,0.873936,0.764009,0.482398,0.560089,0.0178518,0.777788,0.322381,0.598936,0.936145,0.652997,0.392638,0.241923,0.177703,0.543589,0.187457,0.000942469,0.180421,0.263195,0.0304679,0.241834,0.437198,0.629084,0.992896,0.614998,0.733137,0.570931,0.323442,0.512507,0.247004,0.98724,0.278652,0.971858,0.562489,0.525864,0.104018,0.302991,0.647092,0.319911,0.150681,0.115372,0.0599514,0.515765,0.506252,0.564032,0.118312,0.759364,0.155269,0.950113,0.341551,0.977935,0.193106,0.516185,0.0968568,0.668429,0.549981,0.11216,0.0439874,0.923193,0.105442,0.23285,0.746005,0.357612,0.875083,0.513178,0.659823,0.381756,0.65929,0.714132,0.606174,0.705641,0.642131,0.39826,0.559645,0.997705,0.979344,0.597777,0.887229,0.401068,0.853039,0.795941,0.912891,0.474448,0.0856663,0.595466,0.694773,0.769375,0.515388,0.338266,0.461505,0.884761,0.377563,0.403462,0.561258,0.170815,0.574801,0.555874,0.561678,0.619368,0.169605,0.559972,0.920965,0.941551,0.555247,0.513552,0.1998,0.446686,0.0501708,0.652042,0.402909,0.376169,0.851891,0.734627,0.354125,0.7858,0.977519,0.276134,0.478428,0.030026,0.105494,0.0225888,0.689519,0.237879,0.307022,0.289593,0.570845,0.480239,0.788599,0.421143,0.952808,0.430921,0.90049,0.040571,0.57115,0.840535,0.195535,0.340676,0.594274,0.528928,0.872417,0.608331,0.167437,0.559373,0.614399,0.498215,0.284198,0.526649,0.676202,0.034789,0.89789,0.0872564,0.951566,0.417822,0.486176,0.010084,0.429765,0.656709,0.778446,0.239918,0.857604,0.785219,0.159598,0.494905,0.385192,0.22488,0.0154873,0.91417,0.556066,0.994234,0.986583,0.287148,0.223373,0.942933,0.063467,0.597968,0.905258,0.221324,0.0113501,0.122177,0.301686,0.528332,0.734097,0.757443,0.80616,0.364933,0.965103,0.202006,0.918237,0.839297,0.328397,0.480084,0.585892,0.933206,0.243773,0.416349,0.638938,0.443626,0.318785,0.173324,0.465488,0.341891,0.713664,0.991349,0.391077,0.0430955,0.44781,0.741045,0.597803,0.169451,0.289864,0.766692,0.896864,0.605476,0.557143,0.741932,0.544243,0.594619,0.733123,0.648949,0.893881,0.442216,0.161588,0.784589,0.00923681,0.895,0.0102432,0.999025,0.218912,0.245513,0.881403,0.853658,0.718393,0.592127,0.481809,0.359451,0.0192069,0.201483,0.0364876,0.700422,0.462802,0.359257,0.301102,0.022534,0.785549,0.988818,0.478527,0.650421,0.915759,0.937138,0.14187,0.115577,0.0285271,0.968828,0.228736,0.306831,0.116749,0.194232,0.633908,0.534642,0.478078,0.631094,0.349326,0.780248,0.193875,0.44373,0.825215,0.816552,0.505853,0.466256,0.213781,0.179061,0.863957,0.0412563,0.687995,0.776373,0.510298,0.613417,0.233518,0.00603271,0.434101,0.519884,0.660355,0.318046,0.731198,0.662671,0.0431663,0.975763,0.242213,0.785859,0.182437,0.86841,0.101554,0.864977,0.260731,0.419889,0.925197,0.860794,0.33771,0.530301,0.264041,0.199355,0.172876,0.228222,0.326081,0.363394,0.743521,0.917509,0.530625,0.382588,0.179407,0.889137,0.671019,0.0996435,0.591102,0.786178,0.365343,0.675833,0.0843065,0.513742,0.658089,0.67849,0.922819,0.847063,0.715522,0.226057,0.470391,0.940314,0.309973,0.335455,0.533676,0.485789,0.518545,0.142843,0.731438,0.501359,0.0643171,0.188233,0.516176,0.628993,0.546406,0.871585,0.410292,0.140863,0.566412,0.388211,0.595731,0.479712,0.264975,0.468581,0.323743,0.752852,0.143875,0.766115,0.771658,0.957497,0.881612,0.26262,0.0744302,0.212582,0.563593,0.361167,0.658263,0.699913,0.989418,0.930601,0.357273,0.791384,0.900343,0.564809,0.499712,0.0488546,0.657757,0.210076,0.0649194,0.548705,0.164643,0.851434,0.654592,0.760992,0.285256,0.187732,0.00295025,0.33248,0.208548,0.882132,0.29815,0.522506,0.788579,0.824973,0.512564,0.541621,0.840988,0.317528,0.877552,0.394335,0.0809707,0.633676,0.891733,0.685817,0.0873384,0.00836962,0.402581,0.329286,0.816807,0.45196,0.623492,0.200594,0.756283,0.419319,0.752861,0.906969,0.00378472,0.938162,0.237513,0.471441,0.493292,0.255216,0.910106,0.452063,0.571302,0.39215,0.64554,0.77327,0.36956,0.161567,0.855824,0.977452,0.833214,0.648922,0.371431,0.0907446,0.845517,0.96986,0.804761,0.0654601,0.663169,0.688285,0.271148,0.249916,0.557692,0.269017,0.350486,0.880485,0.722084,0.00621241,0.478379,0.264995,0.255572,0.139056,0.545956,0.679171,0.848512,0.847782,0.832523,0.962849,0.996614,0.401942,0.741631,0.894849,0.0211109,0.511246,0.842607,0.879646,0.825782,0.675242,0.486932,0.702608,0.109,0.557915,0.3885,0.304657,0.145731,0.4364,0.0300153,0.973242,0.924259,0.470684,0.219588,0.893558,0.593605,0.848297,0.471511,0.457936,0.334567,0.895187,0.613738,0.32124,0.742384,0.282979,0.36161,0.986992,0.841436,0.773419,0.597481,0.0593638,0.00778198,0.568721,0.270864,0.624374,0.503056,0.712332,0.139129,0.719536,0.934414,0.511262,0.38595,0.147868,0.835691,0.34753,0.445811,0.0084756,0.0839878,0.251488,0.265036,0.269772,0.544787,0.612676,0.645146,0.556379,0.0616814,0.966863,0.0601305,0.249768,0.0585823,0.668084,0.808717,0.655455,0.345116,0.126186,0.313091,0.530821,0.798349,0.733328,0.505734,0.942258,0.883016,0.341426,0.071614,0.373453,0.349271,0.542009,0.14422,0.0846708,0.875423,0.380482,0.0395375,0.970883,0.561707,0.10318,0.806638,0.864672,0.351973,0.586209,0.605749,0.95091,0.288383,0.897993,0.584656,0.899843,0.793305,0.879674,0.842783,0.654588,0.726115,0.891351,0.211259,0.22438,0.183428,0.174574,0.230851,0.25613,0.213659,0.307332,0.444596,0.131109,0.376679,0.270711,0.879056,0.742116,0.528158,0.823524,0.803845,0.532918,0.100991,0.772607,0.355322,0.612154,0.431042,0.196733,0.215862,0.17723,0.603061,0.918503,0.261875,0.173594,0.748566,0.29292,0.576422,0.816161,0.352985,0.798117,0.112135,0.670702,0.968801,0.206716,0.10626,0.95495,0.540808,0.643472,0.0468774,0.817528,0.0152792,0.408459,0.9334,0.488281,0.742083,0.239593,0.631543,0.795358,0.945254,0.894019,0.153313,0.802937,0.0923809,0.366854,0.47175,0.844931,0.173612,0.361665,0.803309,0.378662,0.916684,0.423073,0.0892395,0.553667,0.334958,0.860016,0.294017,0.572663,0.894163,0.860216,0.0199784,0.70618,0.951135,0.286894,0.246033,0.21873,0.182635,0.104209,0.541519,0.730096,0.882613,0.425629,0.194431,0.0685347,0.494834,0.511842,0.980722,0.977655,0.440752,0.374893,0.478412,0.743022,0.119576,0.182403,0.330167,0.570517,0.0846381,0.26142,0.388394,0.25152,0.533088,0.343107,0.449949,0.674217,0.653525,0.907017,0.738122,0.0501125,0.233206,0.861147,0.884044,0.169515,0.366432,0.119895,0.686614,0.121632,0.420101,0.217936,0.285588,0.769034,0.781979,0.341635,0.33082,0.657129,0.141736,0.331495,0.944719,0.587288,0.168034,0.825263,0.596738,0.202255,0.31344,0.80466,0.178476,0.000273526,0.656591,0.65746,0.0768701,0.0521852,0.576405,0.762551,0.14672,0.922609,0.498177,0.0763881,0.237728,0.47362,0.641838,0.548053,0.469424,0.407198,0.439412,0.210377,0.544667,0.350352,0.560387,0.465684,0.0279937,0.38278,0.624388,0.668716,0.305163,0.918852,0.166013,0.723751,0.759528,0.991086,0.337994,0.239307,0.142026,0.157309,0.384762,0.559482,0.463071,0.902086,0.381375,0.0822979,0.546167,0.28967,0.81583,0.634905,0.526982,0.834142,0.292052,0.731718,0.468526,0.726605,0.63594,0.720205,0.702816,0.259103,0.181154,0.00889742,0.936365,0.742983,0.151885,0.818365,0.664765,0.636767,0.1027,0.352163,0.00711399,0.0210921,0.339588,0.3813,0.335673,0.80373,0.349851,0.543522,0.828205,0.949854,0.365999,0.42399,0.181899,0.16793,0.432473,0.570363,0.983408,0.990675,0.650116,0.136625,0.208818,0.621168,0.868424,0.702763,0.325617,0.398018,0.763344,0.0875375,0.884439,0.944705,0.0592811,0.0691959,0.235045,0.103085,0.959074,0.334575,0.905063,0.737423,0.0614586,0.472757,0.364234,0.719763,0.423538,0.105936,0.319205,0.918951,0.238447,0.938815,0.686561,0.0276398,0.0788854,0.0388646,0.763732,0.627353,0.47146,0.985471,0.409648,0.792221,0.706326,0.60501,0.842856,0.758468,0.63522,0.567649,0.834409,0.863437,0.597365,0.999301,0.513306,0.725664,0.915584,0.752216,0.0920717,0.311666,0.122938,0.277246,0.356653,0.0696022,0.124527,0.0614403,0.202273,0.998481,0.986052,0.30449,0.544673,0.389545,0.516493,0.57515,0.724358,0.532682,0.830272,0.941334,0.255463,0.69213,0.656495,0.216236,0.810469,0.289518,0.465652,0.587069,0.45756,0.990313,0.100033,0.993178,0.960666,0.746502,0.898753,0.406297,0.489455,0.303241,0.658443,0.434397,0.0307189,0.968254,0.60765,0.928058,0.448632,0.290935,0.238952,0.536328,0.468297,0.952259,0.955157,0.852662,0.0135804,0.680843,0.101121,0.149818,0.588846,0.094624,0.553273,0.548442,0.105149,|0.208258,0.246959,0.546131,0.240089,0.323153,0.475077,0.952487,0.27375,0.320978,0.520058,0.177958,0.97231,0.195477,0.29551,0.675145,0.15631,0.926722,0.909884,0.00337499,0.900156,0.566184,0.221177,0.251837,0.19987,0.838817,0.950088,0.770613,0.177371,0.277337,0.213618,0.87984,0.785766,0.949503,0.235449,0.46762,0.504751,0.382615,0.620511,0.291456,0.149415,0.699807,0.684683,0.160319,0.10344,0.19071,0.705978,0.859925,0.206051,0.505773,0.0224898,0.447419,0.513788,0.086353,0.596643,0.987994,0.301262,0.703278,0.793815,0.931034,0.0850164,0.611814,0.805221,0.655365,0.380752,0.327934,0.202464,0.604474,0.47259,0.167678,0.879116,0.473625,0.678709,0.747535,0.14788,0.310575,0.286317,0.817075,0.0821122,0.0477155,0.967512,0.846322,0.488093,0.232369,0.928103,0.712027,0.307382,0.484084,0.446862,0.0367659,0.0523824,0.881882,0.0731671,0.869862,0.452998,0.0306911,0.00275683,0.828986,0.753451,0.20561,0.475788,0.849274,0.132236,0.739827,0.0399897,0.0812187,0.921337,0.746483,0.0981811,0.661255,0.415829,0.577591,0.0271935,0.699962,0.0760497,0.286204,0.34816,0.631787,0.0941798,0.334718,0.266762,0.955038,0.789063,0.55038,0.121188,0.676747,0.170463,0.693682,0.448126,0.927804,0.860635,0.888624,0.583617,0.307114,0.527698,0.660619,0.928425,0.916355,0.520741,0.117158,0.369195,0.472794,0.764844,0.0398371,0.466809,0.808833,0.257901,0.153171,0.929377,0.966316,0.545489,0.0689989,0.667618,0.958931,0.915251,0.308774,0.531447,0.304967,0.2994,0.613981,0.124984,0.842406,0.886125,0.415749,0.196743,0.957021,0.40069,0.295011,0.599879,0.62025,0.287929,0.211954,0.10561,0.0706681,0.745311,0.454872,0.656942,0.638132,0.648708,0.396224,0.977357,0.483972,0.968227,0.807949,0.361226,0.541683,0.537499,0.578328,0.950372,0.0813622,0.557558,0.36013,0.540747,0.658192,0.682244,0.636578,0.0222956,0.484682,0.357301,0.746569,0.514632,0.346187,0.904737,0.534535,0.978418,0.100374,0.396705,0.0724679,0.345233,0.616269,0.369442,0.907267,0.0192834,0.986765,0.578692,0.876362,0.837512,0.58309,0.882533,0.347213,0.983434,0.277533,0.0484493,0.891675,0.198752,0.696427,0.866393,0.366732,0.50763,0.246595,0.57006,0.439727,0.708868,0.0360895,0.871688,0.35872,0.29731,0.346417,0.474299,0.318352,0.676345,0.175966,0.286667,0.353887,0.588008,0.869316,0.163074,0.11518,0.877694,0.188863,0.794929,0.424364,0.465261,0.597671,0.378982,0.910869,0.861838,0.932926,0.533936,0.797275,0.240582,0.202632,0.195545,0.852717,0.108701,0.473295,0.819856,0.360643,0.26698,0.0278033,0.155819,0.687554,0.55691,0.318779,0.967908,0.66223,0.726965,0.570513,0.9142,0.793483,0.680303,0.539677,0.294806,0.0363513,0.507641,0.513882,0.72944,0.788578,0.902413,0.279249,0.39836,0.955652,0.844836,0.936424,0.0987536,0.0125207,0.652098,0.125818,0.19143,0.277652,0.406979,0.9503,0.421373,0.655663,0.288642,0.524857,0.261441,0.774796,0.950494,0.115771,0.525864,0.449874,0.857586,0.945278,0.515403,0.146836,0.612975,0.761887,0.200076,0.324286,0.501064,0.933601,0.716793,0.0460204,0.966462,0.768803,0.488991,0.626141,0.0737578,0.409608,0.2951,0.133879,0.273617,0.231692,0.973508,0.427617,0.23333,0.19484,0.497802,0.28098,0.435447,0.357222,0.453231,0.191779,0.743768,0.993529,0.87477,0.395784,0.222302,0.303219,0.115842,0.778587,0.940892,0.919672,0.237671,0.295899,0.108939,0.707944,0.563054,0.961224,0.845362,0.169734,0.855175,0.78667,0.124896,0.518616,0.364493,0.537404,0.257141,0.976567,0.683365,0.399997,0.0996351,0.510255,0.481893,0.929105,0.491355,0.0916861,0.698659,0.683103,0.565675,0.2583,0.803374,0.688583,0.463317,0.818452,0.0154657,0.370566,0.0613728,0.66488,0.975569,0.145111,0.161553,0.107657,0.257931,0.952466,0.578899,0.476444,0.147264,0.167994,0.300609,0.0658957,0.0668406,0.0458499,0.799305,0.550259,0.962533,0.989073,0.969965,0.240242,0.585227,0.520106,0.762767,0.715759,0.865436,0.16757,0.806382,0.49012,0.835763,0.19324,0.155532,0.847156,0.946889,0.634854,0.542698,0.750396,0.429345,0.0424685,0.920447,0.807676,0.258752,0.977909,0.528553,0.349102,0.38252,0.965637,0.510094,0.224315,0.12453,0.703792,0.836913,0.846571,0.955534,0.824975,0.840252,0.212101,0.59011,0.485096,0.432838,0.996619,0.342313,0.89123,0.209465,0.102139,0.836503,0.574363,0.753254,0.870056,0.300752,0.135619,0.0188287,0.232943,0.575186,0.95889,0.372439,0.432612,0.615443,0.0774883,0.191441,0.667955,0.621114,0.396048,0.485509,0.257366,0.0395871,0.0665553,0.836866,0.938313,0.81593,0.895571,0.181892,0.649831,0.94474,0.0697954,0.135301,0.864402,0.121693,0.27212,0.385994,0.888544,0.122499,0.215916,0.694476,0.403663,0.415247,0.799555,0.170708,0.911213,0.783004,0.318417,0.142902,0.320373,0.0798298,0.66107,0.861813,0.150332,0.652767,0.884386,0.449171,0.444651,0.843908,0.819239,0.252839,0.831837,0.353119,0.9858,0.245831,0.0436988,0.745386,0.699672,0.712326,0.287971,0.461844,0.0723649,0.514769,0.774259,0.919376,0.333255,0.778492,0.446953,0.834341,0.773902,0.00419056,0.484058,0.735314,0.166936,0.464841,0.740142,0.646956,0.451329,0.401845,0.372442,0.447023,0.669814,0.887626,0.358355,0.894795,0.0596897,0.651042,0.977497,0.289671,0.686733,0.470244,0.82438,0.654144,0.447136,0.297672,0.918148,0.34816,0.572137,0.837449,0.780716,0.506815,0.101477,0.827524,0.869011,0.454052,0.191315,0.75111,0.779616,0.492368,0.50227,0.587834,0.559191,0.82143,0.148135,0.330905,0.596669,0.0708685,0.217438,0.855312,0.757781,0.926453,0.167931,0.396193,0.692481,0.373124,0.394431,0.720594,0.0947307,0.907755,0.787398,0.224407,0.0281029,0.761048,0.415094,0.938284,0.980383,0.0942002,0.520565,0.999159,0.244878,0.949996,0.84439,0.0471761,0.923465,0.551895,0.230788,0.554095,0.699228,0.34426,0.624918,0.502326,0.471574,0.0300238,0.995738,0.584205,0.0238907,0.826564,0.791664,0.381311,0.922669,0.467229,0.0226236,0.293746,0.16127,0.56256,0.0840821,0.833921,0.0801495,0.9656,0.390551,0.812403,0.361359,0.927999,0.105287,0.567739,0.177453,0.199009,0.763842,0.669396,0.0794148,0.705951,0.375127,0.381828,0.200954,0.455973,0.0330638,0.0695277,0.837025,0.775304,0.744977,0.575858,0.576713,0.337078,0.575773,0.533665,0.440654,0.593118,0.436815,0.765785,0.19178,0.864249,0.0109153,0.0178524,0.750896,0.958166,0.250783,0.629016,0.272544,0.0541503,0.891565,0.568471,0.275089,0.966642,0.525291,0.797765,0.721037,0.286802,0.0245783,0.969289,0.84454,0.900051,0.205728,0.553915,0.195545,0.327998,0.345545,0.853705,0.32155,0.451887,0.542314,0.460844,0.403499,0.957134,0.492243,0.240871,0.559248,0.0325876,0.280997,0.254747,0.499199,0.896008,0.9209,0.6888,0.998625,0.104225,0.912606,0.932582,0.411895,0.348011,0.378201,0.494099,0.430879,0.571995,0.786643,0.932214,0.87717,0.980986,0.06208,0.975123,0.427088,0.831481,0.517223,0.690205,0.223518,0.992896,0.0962432,0.48359,0.507242,0.215667,0.341125,0.731839,0.0261724,0.847382,0.609681,0.85319,0.959029,0.629442,0.685302,0.583302,0.355217,0.0773968,0.883405,0.367283,0.473187,0.285941,0.801253,0.317766,0.170393,0.515731,0.827136,0.938667,0.296094,0.117163,0.218877,0.000870585,0.168476,0.182305,0.0741745,0.558529,0.838031,0.345101,0.7708,0.0551723,0.10274,0.998368,0.400461,0.323468,0.655066,0.126608,0.223631,0.836655,0.0860875,0.0313039,0.965712,0.706605,0.209945,0.120167,0.802403,0.453703,0.656174,0.0763861,0.142898,0.898629,0.979997,0.141592,0.703551,0.0287691,0.053283,0.163829,0.202056,0.97032,0.878434,0.536116,0.574497,0.483055,0.920557,0.782278,0.0876575,0.615365,0.829716,0.255311,0.80609,0.776067,0.890825,0.994815,0.699476,0.528138,0.167319,0.736791,0.992769,0.402912,0.724698,0.777719,0.859779,0.260226,0.647736,0.189444,0.308306,0.932706,0.513532,0.372692,0.00102127,0.732093,0.0238935,0.772674,0.790419,0.598177,0.951538,0.716456,0.313718,0.974539,0.456124,0.232687,0.488956,0.226277,0.905154,0.516677,0.691396,0.657221,0.419218,0.879592,0.652399,0.490364,0.414927,0.719192,0.131571,0.869305,0.497939,0.436931,0.657056,0.308487,0.276364,0.483504,0.336077,0.592084,0.169761,0.344365,0.889363,0.279781,0.857249,0.305203,0.806578,0.897403,0.693819,0.934144,0.749938,0.175695,0.540073,0.470691,0.740378,0.623376,0.668829,0.599858,0.281954,0.4264,0.635178,0.950472,0.396549,0.806221,0.471485,0.00841635,0.933221,0.0994263,0.225079,0.624667,0.238511,0.931112,0.975503,0.451037,0.978247,0.865544,0.46448,0.34862,0.355614,0.88553,0.941524,0.0876241,0.482257,0.475696,0.521953,0.819821,0.0633699,0.827427,0.111059,0.943124,0.0882034,0.637321,0.210978,0.48353,0.262535,0.031629,0.943376,0.195006,0.551716,0.978546,0.124307,0.71205,0.692143,0.332083,0.917156,0.124172,0.926988,0.029214,0.0263661,0.484648,0.0520293,0.466237,0.0309278,0.777441,0.223198,0.279159,0.0333551,0.323335,0.419657,0.479242,0.803819,0.554549,0.454506,0.942585,0.666316,0.135111,0.275035,0.393248,0.91629,0.68246,0.649218,0.515866,0.569072,0.015457,0.777081,0.123669,0.853431,0.880671,0.74187,0.464607,0.921499,0.128628,0.0206407,0.756712,0.294383,0.456384,0.72252,0.644507,0.865513,0.623669,0.154299,0.395494,0.727303,0.986772,0.197447,0.657506,0.237876,0.917226,0.699566,0.0478809,0.915155,0.237847,0.554292,0.353279,0.186519,0.738393,0.160005,0.120899,0.374194,0.935735,0.146173,0.291592,0.812995,0.955944,0.0615321,0.631624,0.478622,0.564182,0.962809,0.15277,0.605648,0.723461,0.966249,0.986006,|0.604334,0.965102,0.220287,0.292481,0.352853,0.0851587,0.446447,0.707539,0.763426,0.696072,0.935043,0.766598,0.21042,0.851502,0.764969,0.0161555,0.452522,0.0926856,0.749717,0.490858,0.57543,0.713853,0.436764,0.456658,0.963731,0.0625682,0.740342,0.256142,0.647471,0.40695,0.676357,0.80378,0.256937,0.466277,0.50479,0.41975,0.979843,0.902042,0.628719,0.118699,0.656617,0.882106,0.597016,0.323693,0.986034,0.285114,0.592527,0.642291,0.22684,0.365547,0.67893,0.732269,0.0949239,0.571996,0.775403,0.489682,0.597898,0.343989,0.26816,0.759084,0.618345,0.0137353,0.487063,0.679716,0.707489,0.192181,0.219554,0.0229169,0.0341048,0.722481,0.953003,0.760721,0.818425,0.89203,0.187397,0.0305929,0.267286,0.295896,0.504015,0.595955,0.667547,0.41617,0.62812,0.211301,0.89345,0.503969,0.292834,0.837716,0.140552,0.760876,0.322295,0.560768,0.814891,0.820225,0.988777,0.122801,0.349772,0.338253,0.496794,0.351268,0.844381,0.403029,0.0247485,0.528794,0.280036,0.393085,0.495788,0.071684,0.852425,0.197181,0.0459336,0.414579,0.710021,0.816616,0.868827,0.0939739,0.299613,0.703669,0.764398,0.447989,0.716469,0.962226,0.737597,0.303221,0.938329,0.909837,0.378828,0.809639,0.513371,0.900624,0.392405,0.289843,0.283071,0.272773,0.311315,0.0732158,0.299831,0.14678,0.917884,0.281333,0.372706,0.78096,0.374233,0.292125,0.927256,0.846507,0.9888,0.828951,0.0901268,0.319557,0.561211,0.131383,0.269876,0.636405,0.470364,0.847138,0.255583,0.885452,0.786573,0.0153333,0.55282,0.775942,0.817645,0.661365,0.97172,0.989771,0.66038,0.646116,0.213077,0.491919,0.424624,0.384117,0.148837,0.322717,0.538183,0.269823,0.680312,0.786976,0.528178,0.379171,0.736062,0.0554832,0.27063,0.719934,0.632613,0.766118,0.953183,0.956667,0.211647,0.587242,0.0975277,0.729425,0.463545,0.635431,0.27608,0.490236,0.112459,0.839288,0.0926614,0.94618,0.86152,0.693835,0.178288,0.465534,0.684612,0.819661,0.631695,0.555658,0.15964,0.251904,0.233546,0.933381,0.497967,0.833518,0.0853015,0.614805,0.170425,0.601012,0.621614,0.579836,0.272345,0.562537,0.451073,0.930491,0.387536,0.803455,0.221537,0.566907,0.149195,0.0218413,0.765241,0.427684,0.587252,0.897848,0.42874,0.290658,0.775774,0.953014,0.795966,0.719618,0.931173,0.480982,0.833038,0.865273,0.747616,0.726627,0.963744,0.781416,0.398704,0.106123,0.0658365,0.118056,0.46105,0.891282,0.00783664,0.56736,0.427189,0.500343,0.109226,0.818599,0.242145,0.0645263,0.147039,0.310675,0.787795,0.349615,0.237252,0.614792,0.460679,0.51855,0.847503,0.0979292,0.14394,0.525773,0.354193,0.888557,0.43619,0.353393,0.269815,0.443404,0.0938411,0.167747,0.668784,0.574479,0.0358809,0.845994,0.301758,0.68265,0.812587,0.275352,0.953131,0.0915272,0.469416,0.463874,0.127454,0.808034,0.513099,0.211558,0.884465,0.711293,0.689911,0.667655,0.609134,0.277215,0.705243,0.454407,0.664178,0.204907,0.268673,0.594103,0.689622,0.852434,0.375919,0.429862,0.644205,0.235813,0.908854,0.126531,0.331991,0.246917,0.997547,0.751222,0.512919,0.363424,0.711654,0.624249,0.298462,0.919486,0.241102,0.171882,0.764202,0.617551,0.898128,0.981481,0.849829,0.972729,0.97709,0.64949,0.632105,0.718885,0.988556,0.0343834,0.150561,0.0958595,0.952427,0.895981,0.929511,0.0442334,0.677974,0.738991,0.35468,0.6549,0.647899,0.382451,0.425845,0.542294,0.154916,0.343905,0.0168424,0.753039,0.819341,0.268472,0.505068,0.351013,0.766106,0.135058,0.727414,0.38074,0.467522,0.389178,0.764879,0.622611,0.915261,0.0314889,0.467842,0.734065,0.488643,0.58324,0.107402,0.827055,0.599994,0.825226,0.120763,0.815175,0.24554,0.670258,0.769014,0.351898,0.737431,0.497721,0.085723,0.538757,0.307485,0.910087,0.693303,0.404267,0.846729,0.722164,0.281706,0.578372,0.372075,0.509692,0.0971348,0.749205,0.0922257,0.490154,0.170054,0.789053,0.519191,0.88408,0.71502,0.352929,0.249833,0.97388,0.260371,0.352717,0.0805551,0.229692,0.224936,0.000485122,0.0155044,0.517339,0.203873,0.564841,0.983036,0.651793,0.787335,0.458197,0.739065,0.234458,0.751109,0.545849,0.221239,0.6109,0.106716,0.122381,0.0691869,0.924093,0.441653,0.298821,0.241207,0.582594,0.89806,0.3934,0.635349,0.592679,0.380255,0.442692,0.512436,0.356413,0.86834,0.684509,0.751522,0.247879,0.747504,0.0592442,0.277258,0.891575,0.767179,0.738962,0.716674,0.764997,0.643376,0.193428,0.811884,0.396539,0.876947,0.841872,0.806595,0.662455,0.719551,0.816019,0.400964,0.556844,0.806187,0.502759,0.727004,0.382614,0.213274,0.211659,0.252394,0.527874,0.3798,0.494961,0.864589,0.46958,0.983423,0.0864453,0.773639,0.0236605,0.0188893,0.154849,0.733833,0.0639492,0.357105,0.99624,0.632688,0.179759,0.825056,0.950364,0.103752,0.303072,0.0173883,0.252602,0.799164,0.669039,0.242993,0.302574,0.861788,0.794943,0.334791,0.232598,0.97124,0.207357,0.291529,0.050319,0.0673931,0.480823,0.550901,0.524115,0.283436,0.888518,0.351744,0.48782,0.774298,0.175918,0.771031,0.889321,0.834506,0.196734,0.405905,0.627888,0.318887,0.848082,0.541847,0.630465,0.163164,0.225301,0.15479,0.0702254,0.306079,0.602642,0.826427,0.0608622,0.265726,0.210147,0.301776,0.451515,0.586349,0.917875,0.0491892,0.757966,0.165401,0.66073,0.0404291,0.769828,0.865957,0.783667,0.484983,0.845016,0.565152,0.278875,0.444126,0.734336,0.515476,0.291609,0.702478,0.484133,0.219956,0.190198,0.221918,0.0105182,0.326437,0.36245,0.459402,0.906258,0.0461389,0.55626,0.659103,0.27017,0.273566,0.995341,0.873598,0.598788,0.781731,0.445154,0.521204,0.991998,0.401341,0.734827,0.474128,0.0917068,0.541299,0.924026,0.410386,0.954087,0.489429,0.842946,0.347689,0.235666,0.820591,0.594935,0.967687,0.892349,0.404164,0.155403,0.169505,0.699905,0.835393,0.910627,0.143575,0.296554,0.545583,0.0927871,0.197879,0.665605,0.858714,0.254189,0.98142,0.359843,0.937406,0.664386,0.569161,0.722269,0.504552,0.675384,0.200233,0.981154,0.15305,0.397579,0.940851,0.810052,0.522365,0.263815,0.0400888,0.463017,0.0405343,0.114857,0.21311,0.536592,0.261793,0.262632,0.873509,0.979243,0.0939485,0.928308,0.866702,0.502113,0.614655,0.339814,0.659148,0.0501453,0.408717,0.624795,0.943971,0.00453246,0.380263,0.182362,0.808397,0.800296,0.164533,0.537847,0.195572,0.561737,0.749866,0.309715,0.447789,0.289077,0.426385,0.914413,0.733941,0.918858,0.600474,0.97571,0.17889,0.982867,0.185663,0.522337,0.0603648,0.146616,0.304052,0.78413,0.612828,0.300145,0.0854072,0.534828,0.690686,0.481009,0.154022,0.679764,0.448737,0.921701,0.0726635,0.648145,0.432707,0.667366,0.198295,0.900581,0.309519,0.391451,0.278183,0.295905,0.692992,0.974946,0.302952,0.846426,0.684362,0.899116,0.610232,0.602545,0.601467,0.959,0.389182,0.430281,0.0905501,0.722268,0.844524,0.901154,0.0964214,0.275996,0.149016,0.778926,0.417529,0.993656,0.804707,0.23641,0.555074,0.521007,0.233025,0.24325,0.797082,0.0556667,0.176103,0.214908,0.468607,0.330299,0.176224,0.376791,0.662359,0.539462,0.310183,0.222951,0.594419,0.902607,0.239475,0.20586,0.828926,0.612823,0.757766,0.488069,0.466365,0.526753,0.470463,0.154044,0.620196,0.157399,0.767507,0.824227,0.382538,0.486987,0.770664,0.864498,0.0165973,0.616403,0.324295,0.069794,0.808574,0.167889,0.734461,0.965121,0.388051,0.624379,0.0887846,0.256355,0.934534,0.603935,0.92122,0.67268,0.0826361,0.715667,0.0864234,0.757489,0.861295,0.147408,0.0160429,0.684073,0.268339,0.267185,0.205943,0.477239,0.35866,0.0797181,0.661829,0.393957,0.338774,0.431133,0.026168,0.0216829,0.257179,0.198746,0.621596,0.131497,0.850619,0.0398988,0.791455,0.57823,0.575186,0.670918,0.175088,0.533731,0.372208,0.54648,0.588427,0.581553,0.535315,0.359958,0.345779,0.590233,0.182881,0.858953,0.590859,0.889454,0.218751,0.369591,0.752482,0.322463,0.431266,0.593352,0.959417,0.566923,0.796995,0.496347,0.378443,0.999806,0.886034,0.784871,0.596069,0.414913,0.733203,0.955264,0.632195,0.467902,0.641092,0.0936294,0.331343,0.225722,0.052152,0.753921,0.797637,0.541375,0.272816,0.305447,0.175315,0.733341,0.370619,0.838272,0.300018,0.336021,0.398599,0.0391279,0.311512,0.247486,0.739832,0.0332078,0.420282,0.648648,0.732659,0.843887,0.055425,0.180423,0.306534,0.967318,0.0138135,0.871232,0.399299,0.378149,0.109892,0.140064,0.333649,0.947268,0.316631,0.598933,0.492516,0.935724,0.524885,0.267789,0.474584,0.131851,0.313054,0.544201,0.305511,0.569105,0.719739,0.287281,0.0194634,0.118774,0.336115,0.0326262,0.582647,0.369308,0.932323,0.424256,0.474997,0.929401,0.571041,0.00534254,0.180197,0.926194,0.365019,0.731554,0.541523,0.92472,0.0597873,0.459406,0.565995,0.692416,0.763015,0.594514,0.946263,0.906387,0.180581,0.602474,0.0307836,0.325615,0.300426,0.471201,0.625403,0.807478,0.946409,0.447154,0.378298,0.468413,0.600563,0.416437,0.108774,0.881698,0.723474,0.841343,0.602771,0.0622895,0.807268,0.778514,0.721284,0.115522,0.611248,0.946556,0.56294,0.227224,0.678598,0.831342,0.233843,0.629301,0.707567,0.476688,0.535497,0.296253,0.125244,0.33822,0.317212,0.122479,0.486887,0.179393,0.756661,0.522784,0.438681,0.905461,0.704841,0.563296,0.130032,0.813556,0.525265,0.556697,0.466558,0.98306,0.190862,0.0627457,0.341141,0.998358,0.092374,0.336625,0.274446,0.872341,0.65967,0.276047,0.918227,0.160297,0.270773,0.0361398,0.269205,0.544657,0.147973,0.471383,0.133143,0.0397997,0.570748,0.997493,0.892048,0.761082,0.742232,0.724197,|0.692434,0.482395,0.143402,0.787394,0.0978894,0.502433,0.729333,0.906076,0.347317,0.686277,0.529904,0.934473,0.0987276,0.640983,0.748191,0.105339,0.500864,0.478257,0.360629,0.798023,0.0673174,0.171808,0.4976,0.969467,0.700571,0.863965,0.24816,0.187988,0.0254036,0.738817,0.665801,0.515811,0.802784,0.163167,0.871751,0.719543,0.638359,0.384925,0.686042,0.816775,0.383108,0.570713,0.625956,0.966867,0.212205,0.0801085,0.205977,0.877591,0.0619404,0.670205,0.0585061,0.616217,0.339372,0.449423,0.0158966,0.0713799,0.748385,0.580378,0.0105198,0.243821,0.946781,0.264108,0.258951,0.796028,0.306201,0.828464,0.435104,0.561971,0.976462,0.700207,0.0139085,0.303484,0.632215,0.977156,0.220588,0.173119,0.859852,0.0492189,0.294128,0.0282858,0.660822,0.558228,0.67195,0.933591,0.809766,0.69194,0.364209,0.925434,0.216643,0.724317,0.720791,0.912391,0.612776,0.470597,0.134178,0.720006,0.979145,0.0152788,0.485639,0.0211434,0.385881,0.0765835,0.167664,0.765146,0.0536661,0.525671,0.108707,0.273026,0.371195,0.977461,0.957203,0.912072,0.163898,0.737106,0.0935135,0.695516,0.0121703,0.194639,0.0201783,0.0610079,0.412188,0.733765,0.43605,0.670284,0.74396,0.371325,0.0239897,0.929179,0.908724,0.635194,0.618387,0.193438,0.0328071,0.27576,0.293563,0.851582,0.875089,0.872592,0.450091,0.153873,0.907864,0.0905079,0.203914,0.543083,0.563318,0.849436,0.792586,0.573736,0.911732,0.898751,0.449669,0.17083,0.929474,0.509021,0.79708,0.998917,0.872763,0.626797,0.891447,0.406445,0.167845,0.163365,0.550934,0.990528,0.523992,0.738876,0.267149,0.679895,0.612796,0.241308,0.1129,0.27137,0.583934,0.421967,0.530751,0.482614,0.755771,0.71196,0.465624,0.0132739,0.67014,0.438585,0.394804,0.188494,0.742539,0.409982,0.178642,0.306565,0.871666,0.480957,0.7397,0.537859,0.769998,0.911215,0.765794,0.253066,0.655344,0.488795,0.601536,0.438204,0.316415,0.959544,0.345408,0.0917212,0.386346,0.305355,0.691222,0.650656,0.324238,0.955113,0.144634,0.591323,0.0726359,0.262813,0.922853,0.528618,0.805305,0.250156,0.960779,0.525053,0.724377,0.759377,0.513024,0.204558,0.848662,0.076178,0.521137,0.414895,0.738231,0.290304,0.0826976,0.287023,0.462002,0.658091,0.156409,0.245119,0.707808,0.48443,0.018441,0.573257,0.72679,0.519268,0.687647,0.98899,0.304635,0.18433,0.797789,0.05022,0.221313,0.848674,0.816803,0.738248,0.406087,0.176608,0.419737,0.0238392,0.393442,0.2349,0.524526,0.288917,0.87144,0.952219,0.918238,0.0453481,0.156102,0.24953,0.938762,0.532349,0.0670343,0.297738,0.421002,0.983293,0.998713,0.10506,0.440527,0.785277,0.00468898,0.824923,0.826285,0.56778,0.409735,0.458537,0.0954915,0.948038,0.0496156,0.950267,0.0614463,0.301148,0.513677,0.432851,0.453616,0.308868,0.730335,0.549197,0.440211,0.473988,0.785708,0.723211,0.236751,0.389226,0.380194,0.412325,0.301462,0.315535,0.40402,0.275171,0.760951,0.712274,0.726508,0.876203,0.676451,0.462441,0.0718951,0.814995,0.166773,0.415089,0.0794539,0.489424,0.321079,0.200426,0.547729,0.422644,0.251215,0.114687,0.00973278,0.564383,0.259913,0.155168,0.60402,0.413468,0.960177,0.657186,0.79998,0.126075,0.0657856,0.172378,0.497314,0.0687669,0.860955,0.847576,0.524567,0.0397648,0.138958,0.191455,0.515642,0.928779,0.921394,0.704763,0.0831019,0.13487,0.728038,0.305549,0.660546,0.633017,0.641719,0.0514635,0.518174,0.20135,0.257046,0.835766,0.577899,0.0985398,0.337858,0.879911,0.307869,0.400126,0.522363,0.404745,0.452549,0.604461,0.772186,0.892004,0.425491,0.369669,0.887714,0.89534,0.0260511,0.126301,0.376981,0.485521,0.795901,0.713004,0.0100642,0.324396,0.794458,0.939065,0.180749,0.595695,0.669228,0.503194,0.172447,0.187238,0.239014,0.499891,0.792431,0.171895,0.85397,0.688465,0.372122,0.583777,0.269745,0.357286,0.752094,0.388342,0.123798,0.27057,0.685238,0.932927,0.995406,0.28543,0.302767,0.0348213,0.404975,0.579562,0.309538,0.848289,0.731826,0.62483,0.590878,0.321453,0.689899,0.107076,0.736384,0.101965,0.422659,0.389242,0.631433,0.752613,0.168484,0.587251,0.139993,0.598228,0.861502,0.775126,0.771792,0.304189,0.553093,0.727181,0.251314,0.146059,0.985197,0.0899463,0.0124403,0.751893,0.181182,0.31209,0.585616,0.305315,0.172861,0.463623,0.342516,0.0425962,0.948635,0.578627,0.776936,0.0899925,0.333274,0.751158,0.0824882,0.0129687,0.420792,0.603541,0.306064,0.716772,0.292438,0.350909,0.2142,0.460045,0.4489,0.238517,0.572539,0.983691,0.893557,0.6431,0.63452,0.611234,0.723573,0.316413,0.759513,0.580486,0.763018,0.370612,0.49366,0.41838,0.787517,0.792227,0.324424,0.533933,0.873051,0.427912,0.560146,0.193175,0.98752,0.0932318,0.84051,0.452499,0.784879,0.587509,0.924286,0.794082,0.635785,0.0790963,0.223748,0.244298,0.650098,0.632067,0.0224221,0.815979,0.165963,0.668216,0.205776,0.410223,0.994975,0.242592,0.210676,0.173863,0.933857,0.206296,0.36276,0.234737,0.205408,0.296999,0.0786464,0.331398,0.329344,0.683942,0.158372,0.964985,0.742239,0.957069,0.549676,0.0830165,0.296841,0.608953,0.813288,0.32478,0.932985,0.452725,0.773117,0.164092,0.562131,0.700336,0.472118,0.327202,0.268954,0.173531,0.562666,0.573206,0.474242,0.453285,0.147582,0.571877,0.879592,0.64542,0.902097,0.289397,0.602136,0.476614,0.22678,0.486084,0.636164,0.807648,0.155948,0.952393,0.353549,0.540589,0.937545,0.540047,0.324232,0.590639,0.983514,0.596323,0.380803,0.511476,0.613334,0.481018,0.788828,0.642242,0.883686,0.258355,0.171847,0.46874,0.202266,0.750933,0.099066,0.786839,0.42253,0.743952,0.693343,0.93598,0.277923,0.104745,0.341044,0.472556,0.88684,0.397306,0.749464,0.501881,0.732846,0.943277,0.308172,0.868742,0.378161,0.219581,0.0549684,0.551506,0.0933236,0.399525,0.747963,0.424969,0.801213,0.6759,0.00823969,0.480427,0.405818,0.732454,0.445978,0.327405,0.148998,0.257873,0.137164,0.430694,0.632783,0.924059,0.128081,0.728905,0.172011,0.387237,0.232289,0.836376,0.777534,0.839891,0.27539,0.653701,0.095567,0.612431,0.0859573,0.348924,0.110604,0.700899,0.046865,0.0963184,0.107914,0.126133,0.623045,0.403161,0.0553672,0.793797,0.69809,0.790335,0.0182197,0.871184,0.720763,0.420601,0.475735,0.0096063,0.442632,0.927359,0.191903,0.272382,0.753306,0.38402,0.399026,0.764425,0.671327,0.255984,0.579112,0.981301,0.690083,0.446503,0.162483,0.337017,0.196837,0.721919,0.427839,0.962713,0.929229,0.709933,0.158404,0.517354,0.11125,0.513421,0.590801,0.0776783,0.812386,0.551881,0.160093,0.222441,0.0350267,0.0205306,0.258931,0.0886886,0.492858,0.098347,0.825201,0.236945,0.215449,0.411805,0.248828,0.694061,0.13808,0.376546,0.4749,0.475644,0.821542,0.645408,0.196445,0.864753,0.668097,0.668219,0.406248,0.164434,0.622985,0.406421,0.749328,0.445187,0.794711,0.169266,0.0456131,0.660504,0.855649,0.317851,0.227155,0.634814,0.169844,0.106095,0.211644,0.966086,0.927941,0.712896,0.468149,0.0144308,0.399331,0.186936,0.101467,0.823675,0.219007,0.923761,0.277577,0.317958,0.681998,0.686404,0.539855,0.844807,0.303295,0.304384,0.806542,0.907962,0.0578219,0.0227137,0.703306,0.0856071,0.611832,0.39036,0.645433,0.926813,0.0937022,0.518389,0.287236,0.308271,0.183362,0.659707,0.373764,0.36131,0.239362,0.560122,0.127509,0.306377,0.020815,0.0612656,0.294,0.34607,0.630625,0.497117,0.534428,0.0859549,0.621568,0.422996,0.237857,0.634086,0.998866,0.632748,0.451618,0.145858,0.56945,0.278921,0.187805,0.189115,0.75127,0.716948,0.762501,0.292823,0.989299,0.979275,0.629814,0.594359,0.594226,0.964582,0.171896,0.580927,0.804739,0.81993,0.402909,0.383981,0.333406,0.953539,0.525249,0.738818,0.628349,0.396164,0.136311,0.605019,0.853897,0.898747,0.1288,0.999066,0.883891,0.00107354,0.114101,0.534895,0.35873,0.107589,0.386371,0.483543,0.0113051,0.563545,0.951935,0.812202,0.816701,0.973817,0.651125,0.876328,0.728478,0.101335,0.58596,0.770253,0.0547553,0.766348,0.984694,0.12805,0.257879,0.589927,0.169915,0.317492,0.643608,0.423205,0.299772,0.934626,0.581159,0.607465,0.620112,0.905465,0.300871,0.181773,0.706382,0.122961,0.491127,0.686282,0.373848,0.307662,0.363935,0.874629,0.0472766,0.369206,0.19692,0.577047,0.626939,0.431764,0.0443783,0.369374,0.329983,0.0890926,0.636778,0.918609,0.430254,0.0343955,0.983696,0.575273,0.89998,0.488348,0.0627149,0.709951,0.119884,0.731128,0.315342,0.395339,0.991615,0.0890468,0.850486,0.573196,0.544417,0.998231,0.4655,0.418891,0.114475,0.610281,0.667922,0.836168,0.61938,0.63922,0.125937,0.15261,0.655141,0.880553,0.930178,0.240304,0.566938,0.952158,0.147872,0.696161,0.771292,0.667539,0.197264,0.417382,0.636442,0.492605,0.0666168,0.919255,0.385724,0.885806,0.650478,0.45709,0.569904,0.131558,0.568173,0.228805,0.491065,0.57095,0.335766,0.287907,0.183498,0.833043,0.184617,0.698548,0.366918,0.132894,0.432035,0.12453,0.62549,0.322314,0.080843,0.541346,0.492396,0.919854,0.14511,0.406089,0.536,0.60292,0.552526,0.649881,0.677166,0.521562,0.175048,0.407133,0.741484,0.167901,0.681673,0.370615,0.560307,0.352116,0.467186,0.582909,0.728931,0.765237,0.537197,0.322771,0.0481145,0.827252,0.793312,0.749823,0.658364,0.237629,0.949682,0.941656,0.229399,0.563584,0.0806737,0.654895,0.706559,0.119622,0.390397,0.355062,0.701478,0.534892,0.164284,0.891034,0.805127,0.068606,0.83944,0.151919,0.529163,0.684051,0.451171,0.66461,0.919336,0.733367,0.696252,0.0491437,0.238358,0.736157,|0.589945,0.290046,0.195735,0.555712,0.08833,0.0590786,0.646456,0.642886,0.667003,0.528082,0.42006,0.048417,0.412974,0.414261,0.199968,0.732794,0.663993,0.766543,0.471482,0.990083,0.887317,0.399157,0.195439,0.538118,0.366515,0.583225,0.469895,0.87325,0.488811,0.733532,0.429562,0.882218,0.414381,0.235867,0.288942,0.334815,0.935066,0.548929,0.123336,0.0312368,0.711615,0.618637,0.276646,0.685947,0.305257,0.126622,0.327917,0.574849,0.55722,0.586378,0.0200477,0.387884,0.738175,0.586104,0.587579,0.857148,0.570666,0.501462,0.360135,0.870026,0.500487,0.265959,0.57773,0.0948904,0.906847,0.227336,0.70343,0.662912,0.571097,0.737484,0.77724,0.819274,0.713319,0.667438,0.50377,0.20235,0.88232,0.774866,0.266803,0.963618,0.671002,0.866392,0.483102,0.0630306,0.71781,0.907177,0.280138,0.862057,0.754944,0.0895701,0.67794,0.269323,0.377432,0.799817,0.879366,0.537051,0.00742859,0.897403,0.145122,0.208575,0.0593863,0.10214,0.394513,0.15208,0.040202,0.715216,0.595365,0.673637,0.895069,0.341797,0.152925,0.897409,0.274279,0.848053,0.0644047,0.729303,0.868896,0.910587,0.515821,0.632584,0.851335,0.258104,0.352111,0.177274,0.70232,0.737334,0.430656,0.749845,0.863903,0.233517,0.733981,0.371008,0.975297,0.870963,0.763083,0.562025,0.304713,0.416079,0.407692,0.868351,0.264789,0.804091,0.87852,0.444994,0.908429,0.971524,0.76629,0.392506,0.464882,0.650578,0.0882202,0.179222,0.329383,0.847509,0.129849,0.218921,0.296277,0.760338,0.888701,0.0259968,0.327359,0.577259,0.378308,0.401789,0.120867,0.341293,0.321578,0.75214,0.206553,0.797087,0.195436,0.971858,0.37749,0.663695,0.137486,0.903814,0.0120689,0.897624,0.895493,0.515548,0.666743,0.267649,0.298801,0.281476,0.982585,0.735476,0.217991,0.999188,0.982674,0.494373,0.0321844,0.768232,0.71895,0.609929,0.0627497,0.32184,0.157634,0.185912,0.850335,0.356916,0.504957,0.436231,0.24257,0.899038,0.928822,0.282514,0.656695,0.826704,0.215644,0.681807,0.184057,0.433118,0.391794,0.389367,0.469945,0.452917,0.68744,0.0169839,0.670073,0.602121,0.884957,0.679147,0.728153,0.690544,0.611349,0.656645,0.144725,0.820789,0.353895,0.178887,0.695444,0.699228,0.697388,0.958301,0.843388,0.508538,0.438952,0.245246,0.335696,0.195175,0.981813,0.125074,0.645009,0.89487,0.949335,0.449104,0.991358,0.790849,0.34009,0.732565,0.803962,0.62431,0.185156,0.0594099,0.846224,0.927175,0.837572,0.363922,0.160493,0.000363052,0.599502,0.817166,0.18722,0.135641,0.0274881,0.622972,0.625836,0.0599132,0.223138,0.636506,0.46389,0.239819,0.223129,0.177168,0.291499,0.621712,0.955624,0.394526,0.0798725,0.255626,0.910252,0.71911,0.466655,0.0172253,0.823074,0.504802,0.313165,0.287579,0.910353,0.282064,0.503891,0.187715,0.975549,0.610249,0.481291,0.233018,0.433864,0.524951,0.947241,0.0762771,0.185231,0.494828,0.398394,0.242831,0.186377,0.193666,0.302449,0.976038,0.346751,0.146457,0.546285,0.99173,0.136266,0.0807835,0.38851,0.529078,0.773907,0.96827,0.0288804,0.878611,0.363847,0.537761,0.824736,0.776704,0.923808,0.652638,0.494808,0.862933,0.160787,0.859058,0.139067,0.888061,0.17509,0.988444,0.0133215,0.741681,0.246944,0.585667,0.929136,0.22217,0.381612,0.255065,0.763717,0.86837,0.283895,0.701843,0.572495,0.500018,0.828766,0.367419,0.102182,0.442831,0.116651,0.878157,0.226499,0.0778241,0.911361,0.647864,0.555866,0.725155,0.0966544,0.968493,0.291316,0.0639244,0.47379,0.0766009,0.811907,0.487681,0.642927,0.199722,0.927657,0.154982,0.951562,0.87355,0.24021,0.869134,0.199644,0.696844,0.31178,0.750849,0.204278,0.0726458,0.418146,0.81043,0.944834,0.656715,0.273011,0.957485,0.917452,0.54059,0.949291,0.904065,0.206289,0.317597,0.992536,0.346469,0.276685,0.583969,0.528808,0.780811,0.325226,0.464914,0.00519353,0.161998,0.869405,0.166141,0.521602,0.417805,0.067001,0.832799,0.783596,0.324158,0.118876,0.410301,0.0814514,0.128816,0.177762,0.456285,0.762511,0.451267,0.288573,0.598615,0.973755,0.394121,0.650555,0.851294,0.275885,0.170208,0.461796,0.59663,0.548347,0.55914,0.348062,0.135265,0.532957,0.755692,0.236444,0.222912,0.730579,0.559961,0.198994,0.866812,0.557972,0.541684,0.745423,0.322749,0.659514,0.919365,0.245082,0.825624,0.244245,0.477615,0.921728,0.315768,0.44482,0.890129,0.594913,0.235109,0.473061,0.670841,0.383116,0.673751,0.949061,0.252574,0.633127,0.0881005,0.0386213,0.215492,0.708164,0.97769,0.973898,0.218149,0.863541,0.934146,0.746839,0.31261,0.113894,0.534999,0.470135,0.205825,0.267238,0.185613,0.35088,0.0165603,0.248906,0.193031,0.556753,0.277149,0.0287278,0.599807,0.736389,0.412236,0.241419,0.17669,0.532374,0.914912,0.766347,0.134084,0.281099,0.591613,0.906212,0.611402,0.0438278,0.591239,0.756017,0.0250905,0.556428,0.229904,0.933013,0.989607,0.952239,0.664993,0.377465,0.980261,0.282034,0.67697,0.632699,0.8042,0.165097,0.390419,0.266913,0.547791,0.488809,0.447135,0.689192,0.467857,0.529456,0.160043,0.153218,0.807095,0.517699,0.613627,0.93506,0.458974,0.321971,0.215076,0.398372,0.0199291,0.494597,0.97877,0.519429,0.606818,0.587508,0.251883,0.448374,0.498239,0.579958,0.76643,0.196305,0.399413,0.53032,0.657559,0.422088,0.752051,0.336469,0.669918,0.989967,0.690938,0.748877,0.428974,0.519634,0.753751,0.969467,0.524052,0.124258,0.315897,0.370323,0.70287,0.270606,0.989,0.54327,0.24515,0.0338147,0.623173,0.806676,0.293096,0.0183589,0.0951862,0.976523,0.0416694,0.0237135,0.989419,0.355082,0.52377,0.913196,0.847185,0.576173,0.793831,0.47652,0.87294,0.569299,0.493133,0.879431,0.862645,0.587722,0.908341,0.758533,0.912913,0.728103,0.996692,0.15411,0.830935,0.481502,0.132455,0.15747,0.7505,0.386124,0.482885,0.887327,0.169769,0.93788,0.971397,0.769951,0.934009,0.368991,0.684092,0.8205,0.237191,0.547576,0.116747,0.207967,0.736777,0.453278,0.455949,0.39493,0.57769,0.293846,0.273864,0.783994,0.639949,0.0776752,0.732359,0.787569,0.599618,0.223325,0.346601,0.325757,0.484646,0.279261,0.682833,0.262424,0.122717,0.268426,0.268365,0.502463,0.959504,0.515759,0.785887,0.241007,0.61855,0.263995,0.807577,0.606434,0.242402,0.94743,0.828914,0.342513,0.613004,0.344909,0.952852,0.132112,0.416503,0.286972,0.258323,0.598973,0.00490606,0.753528,0.367036,0.723138,0.659903,0.790997,0.0153089,0.148143,0.896637,0.00140458,0.458205,0.244764,0.873423,0.675454,0.137353,0.109575,0.860076,0.439966,0.125381,0.170272,0.609972,0.102921,0.736014,0.85278,0.345637,0.441051,0.795884,0.394332,0.919957,0.314543,0.191545,0.590738,0.405122,0.432296,0.851538,0.366123,0.861567,0.413282,0.867472,0.71867,0.647637,0.512464,0.0918546,0.156794,0.94712,0.537136,0.102461,0.0989221,0.394199,0.533602,0.568698,0.667063,0.133425,0.0858825,0.061475,0.138846,0.64272,0.932894,0.619435,0.294377,0.378077,0.801839,0.630608,0.0361033,0.188265,0.729666,0.943293,0.12847,0.455055,0.512968,0.304541,0.289942,0.384611,0.510009,0.521374,0.48344,0.86215,0.563513,0.0525157,0.904623,0.562576,0.841175,0.105493,0.203809,0.710471,0.731899,0.621028,0.593045,0.327468,0.257527,0.190494,0.196015,0.813892,0.611527,0.118517,0.305454,0.480307,0.360918,0.119357,0.609319,0.429676,0.0108331,0.450221,0.524173,0.88023,0.488258,0.00303698,0.965493,0.56584,0.878898,0.649909,0.46002,0.955128,0.661174,0.027633,0.413841,0.0230458,0.171185,0.676656,0.819034,0.062763,0.592252,0.819068,0.626379,0.853713,0.632542,0.12966,0.640509,0.620548,0.506241,0.175513,0.526404,0.415236,0.446528,0.806596,0.569069,0.0369109,0.888958,0.586508,0.599031,0.802701,0.961106,0.265847,0.254449,0.450951,0.584639,0.838021,0.760196,0.25457,0.234999,0.503719,0.677505,0.111367,0.566354,0.156859,0.220017,0.620087,0.20168,0.50418,0.801224,0.131151,0.18465,0.526227,0.847248,0.634338,0.858591,0.0892588,0.78056,0.115924,0.0968587,0.5378,0.530113,0.0416303,0.945746,0.82002,0.795262,0.360826,0.444361,0.476533,0.713484,0.420107,0.844169,0.624208,0.921313,0.378918,0.238139,0.284901,0.990244,0.598718,0.638022,0.275883,0.355933,0.803478,0.383815,0.93467,0.168079,0.44846,0.433961,0.201997,0.833312,0.735694,0.579955,0.00979149,0.630735,0.427565,0.501098,0.361965,0.686811,0.412252,0.893029,0.303105,0.981318,0.251815,0.905093,0.187677,0.871768,0.269227,0.354893,0.50488,0.454005,0.651218,0.0792511,0.462063,0.716864,0.236843,0.299103,0.460529,0.58836,0.662786,0.480876,0.758002,0.205514,0.782631,0.205658,0.177426,0.371033,0.737141,0.770121,0.603449,0.130629,0.611737,0.843173,0.26579,0.558927,0.524206,0.207078,0.645723,0.182275,0.0147614,0.535567,0.0463605,0.930083,0.354709,0.388208,0.53099,0.848467,0.0984216,0.512123,0.300496,0.670381,0.732656,0.305632,0.736822,0.872054,0.696286,0.779795,0.285664,0.675831,0.68486,0.418403,0.488779,0.596719,0.224663,0.616906,0.26247,0.737317,0.210298,0.647417,0.777133,0.77449,0.674754,0.547417,0.712351,0.286673,0.354244,0.262312,0.0281678,0.901814,0.274982,0.969346,0.561976,0.257359,0.400104,0.552246,0.871976,0.865893,0.18643,0.876116,0.641979,0.237655,0.105018,0.84654,0.829313,0.820821,0.717462,0.955029,0.263893,0.514225,0.367049,0.119999,0.432605,0.893314,0.733008,0.14601,0.625238,0.250318,0.634257,0.16504,0.510832,0.32746,0.251019,0.26244,0.77678,0.560013,0.0680329,0.8926,0.246854,0.11934,0.364064,0.0443038,0.294766,0.295009,0.979744,0.149793,0.975227,|0.881237,0.408024,0.576536,0.800483,0.575843,0.282281,0.149038,0.784646,0.889746,0.412788,0.473444,0.0848231,0.288573,0.391644,0.424874,0.818758,0.973248,0.11157,0.250885,0.769903,0.321573,0.748094,0.999751,0.0547473,0.696363,0.0890931,0.414107,0.0519149,0.344976,0.858558,0.391571,0.566233,0.0385041,0.166856,0.614947,0.641883,0.959581,0.476452,0.75054,0.227599,0.761029,0.612108,0.450493,0.43062,0.543635,0.378956,0.457462,0.926773,0.785587,0.103248,0.27519,0.768081,0.135932,0.0799748,0.515227,0.797932,0.330568,0.327905,0.813112,0.756163,0.991946,0.206232,0.379786,0.806062,0.606026,0.0649831,0.548949,0.0337612,0.413159,0.392726,0.137589,0.63763,0.594373,0.634733,0.700565,0.470249,0.26586,0.47076,0.0114073,0.418628,0.703052,0.858242,0.208101,0.915721,0.423465,0.477968,0.330307,0.314651,0.935439,0.0196824,0.607291,0.0216455,0.723008,0.116213,0.0945595,0.966612,0.230369,0.252696,0.151416,0.235513,0.336129,0.0483362,0.77402,0.805568,0.032186,0.017177,0.221935,0.688034,0.150455,0.229781,0.470903,0.906276,0.943055,0.783607,0.407397,0.202034,0.84483,0.251434,0.439413,0.328429,0.154538,0.421042,0.110665,0.187361,0.214767,0.981629,0.902422,0.724705,0.615178,0.957939,0.850089,0.351736,0.210913,0.435621,0.44538,0.40669,0.78907,0.425839,0.604311,0.826562,0.637179,0.738327,0.145939,0.194306,0.998177,0.62542,0.284734,0.488916,0.578029,0.32541,0.876234,0.418975,0.562528,0.549333,0.933209,0.143287,0.16553,0.773364,0.591671,0.147168,0.862398,0.863339,0.221531,0.301873,0.0868194,0.977321,0.930255,0.437324,0.5782,0.372431,0.331251,0.989872,0.281331,0.482848,0.582558,0.803949,0.794264,0.194197,0.507829,0.471048,0.851213,0.934847,0.805282,0.836087,0.468149,0.973818,0.765411,0.382156,0.440332,0.632272,0.437023,0.0589209,0.991095,0.390504,0.787371,0.0590241,0.170473,0.123993,0.933197,0.492362,0.523938,0.853312,0.723402,0.595136,0.791603,0.459653,0.781473,0.644333,0.152116,0.592758,0.141046,0.0677381,0.206964,0.545132,0.487145,0.519666,0.932386,0.161725,0.585724,0.314529,0.554709,0.268446,0.607671,0.57381,0.672113,0.521187,0.554357,0.196824,0.371138,0.161073,0.0470577,0.279953,0.880632,0.211582,0.962501,0.461551,0.221043,0.826127,0.298832,0.522707,0.0934075,0.194415,0.138725,0.933152,0.54749,0.208655,0.628861,0.215538,0.026714,0.0565074,0.908539,0.343668,0.298946,0.0384039,0.0189608,0.826148,0.00857848,0.18671,0.726619,0.411169,0.422408,0.528791,0.453855,0.0548084,0.175932,0.969328,0.718838,0.100407,0.271698,0.89501,0.592951,0.975182,0.36427,0.497854,0.95851,0.192278,0.0192094,0.470043,0.127462,0.152492,0.686062,0.426318,0.478694,0.662088,0.436937,0.926153,0.112704,0.279844,0.478705,0.67075,0.152869,0.416332,0.526961,0.55752,0.139756,0.391183,0.0685137,0.598137,0.328943,0.574751,0.00454402,0.632254,0.596606,0.251313,0.629123,0.00850439,0.0143986,0.890971,0.556192,0.310555,0.477794,0.0840231,0.558991,0.429131,0.809723,0.0831778,0.0666512,0.107777,0.380647,0.00247997,0.462053,0.079432,0.160283,0.700853,0.0251103,0.650522,0.481123,0.17647,0.0303195,0.702212,0.98873,0.386413,0.401022,0.015859,0.569333,0.716524,0.851692,0.9598,0.686661,0.302332,0.144652,0.745359,0.968073,0.541153,0.285877,0.427203,0.142927,0.920218,0.233094,0.0693359,0.231987,0.978636,0.20162,0.372956,0.865901,0.0860562,0.467808,0.970135,0.660671,0.530748,0.726482,0.877738,0.974945,0.87239,0.535081,0.388636,0.77707,0.374641,0.78613,0.350707,0.590796,0.334821,0.670756,0.434407,0.257305,0.834087,0.620402,0.695136,0.14524,0.902088,0.170721,0.877575,0.401697,0.219868,0.782654,0.36862,0.345636,0.998262,0.384969,0.935117,0.180485,0.413833,0.880301,0.854019,0.328312,0.878459,0.162073,0.00197202,0.58462,0.564927,0.889703,0.889429,0.492782,0.378042,0.656808,0.474727,0.29395,0.253376,0.999764,0.160297,0.3236,0.683119,0.591486,0.489949,0.585073,0.737031,0.184942,0.156246,0.257198,0.377905,0.0333368,0.665871,0.216724,0.698231,0.589779,0.415909,0.365676,0.794699,0.0983022,0.154613,0.645991,0.143662,0.194693,0.649236,0.831037,0.601542,0.785329,0.609142,0.262393,0.318911,0.201731,0.966729,0.245888,0.175422,0.634913,0.0706694,0.29505,0.784557,0.00881374,0.568318,0.361612,0.148744,0.526227,0.769046,0.571713,0.174314,0.190439,0.611802,0.796918,0.673424,0.566858,0.0942473,0.654264,0.79073,0.938122,0.29285,0.875666,0.555525,0.66626,0.186173,0.503313,0.389649,0.803398,0.279255,0.534097,0.7931,0.33113,0.275937,0.566191,0.612969,0.642654,0.519456,0.20319,0.130192,0.103707,0.786566,0.469896,0.183789,0.552777,0.442796,0.961367,0.343968,0.574895,0.979648,0.243474,0.924579,0.354917,0.282978,0.655748,0.174092,0.0403693,0.333435,0.477896,0.704961,0.287738,0.737042,0.201217,0.649462,0.971306,0.200244,0.023295,0.65304,0.693583,0.635018,0.210384,0.225713,0.834418,0.0717996,0.305906,0.831285,0.779448,0.112433,0.998445,0.295848,0.632498,0.536005,0.223147,0.295085,0.848577,0.390024,0.399765,0.969857,0.333001,0.133375,0.674923,0.731956,0.881943,0.344356,0.886455,0.931378,0.309343,0.247257,0.864022,0.024467,0.642776,0.190093,0.84338,0.825257,0.232647,0.820268,0.884132,0.264412,0.531619,0.263502,0.912996,0.201581,0.00859863,0.795901,0.823015,0.42959,0.32888,0.378505,0.577189,0.588499,0.368208,0.279793,0.801769,0.93703,0.117386,0.334266,0.901298,0.0710385,0.798724,0.95222,0.772229,0.901421,0.12892,0.569289,0.355386,0.641195,0.310154,0.219315,0.270056,0.405877,0.900095,0.0758413,0.76512,0.477263,0.891971,0.598206,0.669641,0.0651424,0.852118,0.196804,0.538637,0.319713,0.440853,0.982263,0.350601,0.421022,0.796697,0.899285,0.137185,0.560921,0.0667509,0.2768,0.281767,0.378234,0.490142,0.818909,0.403107,0.528009,0.447863,0.342031,0.137881,0.664718,0.250109,0.742506,0.779832,0.43672,0.810546,0.58073,0.215475,0.963399,0.483748,0.127358,0.0707892,0.451026,0.704681,0.371105,0.365917,0.889703,0.933317,0.149207,0.562392,0.244059,0.884138,0.949939,0.961136,0.901414,0.811938,0.173005,0.141188,0.378906,0.820114,0.755189,0.667785,0.78685,0.420296,0.23478,0.86511,0.852483,0.797907,0.525445,0.300068,0.966787,0.125242,0.96588,0.336071,0.673447,0.0611326,0.499738,0.237292,0.807487,0.825075,0.647858,0.402495,0.548663,0.835701,0.425962,0.257868,0.638404,0.676391,0.673407,0.406764,0.676933,0.606728,0.551077,0.817241,0.825956,0.283026,0.890074,0.687208,0.850437,0.278318,0.746586,0.729626,0.168054,0.221775,0.686005,0.0692653,0.00597101,0.214762,0.121653,0.173511,0.19353,0.124858,0.279632,0.980786,0.138751,0.649816,0.546163,0.809212,0.0173994,0.907182,0.0247834,0.999286,0.707977,0.756477,0.45062,0.862911,0.332271,0.235042,0.913984,0.214167,0.929529,0.319002,0.695019,0.314488,0.347095,0.98588,0.358902,0.986153,0.388492,0.270272,0.140165,0.956769,0.528156,0.132046,0.0346228,0.830698,0.658483,0.260004,0.303907,0.741403,0.858317,0.298238,0.747274,0.222629,0.779543,0.00773102,0.872952,0.0605649,0.777547,0.704867,0.804508,0.539564,0.481138,0.542867,0.935407,0.986537,0.255032,0.334736,0.234574,0.375149,0.209224,0.414605,0.841298,0.805628,0.698952,0.302407,0.669721,0.0660139,0.437542,0.911941,0.941837,0.491491,0.00641006,0.84562,0.756974,0.474192,0.154081,0.87917,0.20219,0.689756,0.185211,0.61064,0.175465,0.717718,0.403135,0.983642,0.323633,0.409564,0.824392,0.413966,0.505972,0.986462,0.637182,0.309211,0.478893,0.294214,0.180466,0.0576158,0.679682,0.48822,0.658138,0.4186,0.782943,0.569652,0.218002,0.562478,0.534957,0.942948,0.527786,0.441362,0.859375,0.0666649,0.336895,0.16811,0.989756,0.601351,0.344303,0.163349,0.454804,0.309483,0.588675,0.494338,0.435599,0.428797,0.821338,0.229151,0.0513658,0.613978,0.833986,0.0351681,0.172531,0.451631,0.520143,0.0800412,0.0531782,0.220403,0.886189,0.511636,0.880435,0.988882,0.530399,0.864605,0.749755,0.849243,0.614873,0.785413,0.456602,0.985849,0.469394,0.763448,0.957515,0.0525516,0.177637,0.198459,0.575129,0.529088,0.304327,0.454451,0.934172,0.946939,0.919646,0.739634,0.558024,0.793099,0.561758,0.879588,0.781378,0.429865,0.369588,0.990203,0.986051,0.642629,0.833233,0.299325,0.937104,0.797686,0.98329,0.964772,0.87494,0.98276,0.716919,0.914748,0.0321286,0.252875,0.861456,0.27834,0.59936,0.551109,0.998003,0.860626,0.949762,0.412221,0.987615,0.568336,0.276383,0.221273,0.224397,0.217432,0.393138,0.380898,0.476864,0.716954,0.9863,0.52805,0.310266,0.82025,0.0263773,0.0532793,0.818177,0.872158,0.571081,0.223321,0.724076,0.350422,0.300105,0.726619,0.537298,0.621748,0.0949944,0.334754,0.487526,0.367126,0.257729,0.143345,0.993597,0.412405,0.312876,0.506033,0.615681,0.880334,0.0275691,0.515474,0.932536,0.265773,0.426625,0.990814,0.744625,0.774826,0.219329,0.834464,0.641774,0.811594,0.971103,0.50168,0.374228,0.753591,0.974088,0.548069,0.895988,0.459699,0.999991,0.562026,0.296974,0.896367,0.237169,0.436115,0.185928,0.30085,0.817456,0.212669,0.875703,0.564744,0.882466,0.340069,0.105028,0.60486,0.913543,0.429652,0.807209,0.380708,0.128977,0.75259,0.571159,0.536453,0.820017,0.478293,0.443003,0.121701,0.496963,0.906349,0.258943,0.611815,0.11856,0.821459,0.482583,0.20079,0.910297,0.644277,0.316047,0.912214,0.0534971,0.37006,0.519478,0.304766,0.759983,0.510393,0.405348,0.92562,0.328502,0.542651,0.340086,0.133141,0.50034,0.59486,0.756354,|0.277445,0.204968,0.791182,0.884982,0.093808,0.357856,0.922696,0.61044,0.177878,0.938853,0.136551,0.212405,0.962195,0.499024,0.306399,0.226284,0.573633,0.428499,0.637556,0.217635,0.796776,0.219478,0.462414,0.0327463,0.649296,0.910119,0.922974,0.933548,0.449166,0.231915,0.845972,0.554499,0.124898,0.907579,0.00907511,0.829574,0.332651,0.695454,0.991677,0.137627,0.420868,0.301713,0.8941,0.632032,0.253207,0.275882,0.818202,0.719102,0.523926,0.880887,0.327951,0.602733,0.377829,0.390125,0.266146,0.937778,0.524928,0.509264,0.486848,0.992283,0.371591,0.0432881,0.972712,0.728993,0.280188,0.899538,0.128615,0.525994,0.542367,0.620232,0.574014,0.226766,0.501091,0.951316,0.36562,0.742358,0.105152,0.0623414,0.455977,0.0056594,0.519349,0.271337,0.121286,0.9318,0.820307,0.294544,0.0113051,0.724224,0.41176,0.717065,0.148821,0.204267,0.180869,0.964383,0.922602,0.996167,0.942127,0.0897382,0.224629,0.791538,0.959687,0.00648183,0.644009,0.166015,0.91693,0.317646,0.505157,0.967452,0.642684,0.117051,0.32774,0.920438,0.483122,0.808092,0.61942,0.0327216,0.448861,0.492182,0.334762,0.305857,0.395331,0.882303,0.0652128,0.00949723,0.83631,0.21011,0.216307,0.00569153,0.67163,0.995154,0.114493,0.999271,0.165677,0.853278,0.995152,0.212476,0.188906,0.917245,0.1551,0.811684,0.15224,0.4754,0.197276,0.879663,0.389979,0.178743,0.468067,0.0575369,0.021391,0.389292,0.861446,0.758196,0.54317,0.962837,0.0647807,0.721736,0.445859,0.576921,0.975606,0.852837,0.203506,0.0470654,0.546805,0.706757,0.253395,0.107015,0.601995,0.69106,0.905056,0.162724,0.377679,0.861871,0.858546,0.290795,0.119653,0.235684,0.342924,0.0920562,0.792888,0.77903,0.961988,0.517646,0.831616,0.460951,0.793109,0.293919,0.358936,0.639883,0.975508,0.754739,0.227961,0.638928,0.705761,0.576841,0.0334913,0.528594,0.0692299,0.29296,0.577056,0.250187,0.963538,0.120187,0.58715,0.0134413,0.347491,0.591332,0.44429,0.337462,0.707803,0.940231,0.447316,0.151648,0.727817,0.45262,0.933722,0.137342,0.032505,0.267622,0.221812,0.536907,0.638729,0.610827,0.535518,0.496608,0.278354,0.153003,0.326859,0.838285,0.0839396,0.658422,0.729357,0.307315,0.95254,0.236992,0.915529,0.408793,0.392241,0.824298,0.214018,0.800664,0.28165,0.00803411,0.861492,0.169202,0.534433,0.0443227,0.354577,0.947074,0.98628,0.183317,0.768654,0.730509,0.0413904,0.391581,0.407874,0.0231348,0.839133,0.974135,0.106019,0.517557,0.391693,0.644057,0.618783,0.927866,0.0853697,0.346036,0.293892,0.696626,0.998252,0.769972,0.945517,0.471356,0.0802941,0.132311,0.0531256,0.184593,0.875867,0.282354,0.148563,6.27637e-05,0.883556,0.0723588,0.770177,0.544646,0.712922,0.984291,0.775121,0.867991,0.107176,0.905459,0.896714,0.884072,0.340708,0.238819,0.573771,0.2613,0.442717,0.964787,0.934341,0.363148,0.831033,0.742337,0.569761,0.387418,0.960176,0.389726,0.513757,0.688381,0.51135,0.064168,0.0926053,0.818828,0.969138,0.0450244,0.366213,0.173384,0.252565,0.0743251,0.680426,0.16076,0.337551,0.687308,0.489687,0.74832,0.607344,0.857173,0.16753,0.108982,0.93276,0.73756,0.627079,0.639532,0.421841,0.715152,0.1193,0.944422,0.294405,0.758421,0.201322,0.969209,0.108005,0.834229,0.450445,0.997944,0.94784,0.294539,0.61424,0.785694,0.837249,0.275805,0.158865,0.252836,0.505756,0.238312,0.354028,0.877951,0.775907,0.616952,0.980361,0.59484,0.171264,0.921276,0.627925,0.836619,0.600835,0.223389,0.513628,0.557983,0.945298,0.449089,0.883569,0.0699156,0.517687,0.000199914,0.446983,0.647542,0.350483,0.926425,0.618822,0.72583,0.130628,0.129008,0.052043,0.022706,0.532238,0.0863845,0.789748,0.47279,0.0384222,0.718789,0.142824,0.157679,0.375851,0.998255,0.0783446,0.501406,0.32275,0.856852,0.728686,0.871276,0.692373,0.288651,0.275785,0.479941,0.227319,0.59491,0.779821,0.674413,0.528207,0.775561,0.400839,0.383732,0.753498,0.317086,0.730325,0.083404,0.138176,0.912204,0.964135,0.808644,0.653623,0.447801,0.595498,0.128275,0.325373,0.213298,0.766975,0.0919173,0.204172,0.698014,0.851696,0.739238,0.696977,0.645568,0.521563,0.463608,0.225007,0.725249,0.534267,0.0276457,0.0105788,0.147745,0.637739,0.68976,0.887514,0.696804,0.0084461,0.530052,0.418664,0.845504,0.905783,0.166964,0.996777,0.717224,0.767638,0.668304,0.74743,0.0813056,0.0713712,0.111548,0.699507,0.51161,0.308137,0.567204,0.202273,0.351818,0.0945148,0.00502765,0.547379,0.236103,0.801456,0.13836,0.513343,0.649676,0.985226,0.556103,0.862674,0.807489,0.439762,0.683881,0.801107,0.94725,0.430451,0.72075,0.55691,0.214113,0.0088644,0.343745,0.775013,0.776857,0.387462,0.51882,0.368393,0.771925,0.352513,0.145758,0.483083,0.477919,0.294857,0.521397,0.481386,0.628112,0.471937,0.023544,0.204103,0.726805,0.485528,0.731183,0.373966,0.0511273,0.935322,0.154399,0.756302,0.19508,0.17516,0.624034,0.482001,0.438701,0.631555,0.854127,0.209759,0.692084,0.468224,0.493503,0.528537,0.757161,0.50578,0.51153,0.619216,0.777951,0.0433615,0.311082,0.266152,0.711129,0.470337,0.111442,0.721107,0.951501,0.125023,0.0108964,0.662091,0.64487,0.864341,0.644626,0.993674,0.90869,0.273702,0.496199,0.609281,0.385936,0.501986,0.270064,0.178484,0.255438,0.261387,0.842969,0.817294,0.444913,0.338791,0.0160822,0.467322,0.858269,0.833577,0.708169,0.02947,0.328332,0.67456,0.840074,0.338701,0.441257,0.976091,0.569745,0.189598,0.928127,0.591715,0.0266292,0.128585,0.177312,0.450247,0.103065,0.0297468,0.294368,0.996255,0.910313,0.251429,0.810084,0.567915,0.0427104,0.213149,0.147519,0.447332,0.0727065,0.107391,0.0314434,0.759331,0.65426,0.0674313,0.570728,0.606933,0.7873,0.0915534,0.766615,0.213565,0.9744,0.583659,0.105039,0.741773,0.485535,0.35103,0.815578,0.879495,0.943196,0.716344,0.0665656,0.191664,0.322824,0.325469,0.378249,0.701339,0.115506,0.696343,0.161056,0.813253,0.862893,0.749923,0.156955,0.435854,0.827739,0.446151,0.203434,0.942861,0.834103,0.276853,0.576657,0.433805,0.206659,0.778377,0.11908,0.645034,0.208689,0.305661,0.515338,0.527377,0.291517,0.2899,0.87343,0.941047,0.208756,0.0602052,0.498842,0.21576,0.268353,0.786531,0.00788927,0.553058,0.921377,0.0701962,0.553723,0.776314,0.152734,0.832718,0.307547,0.204681,0.799901,0.211215,0.136876,0.142242,0.845706,0.370967,0.515111,0.84012,0.639898,0.767661,0.902131,0.375298,0.52605,0.0809851,0.0593353,0.104494,0.3261,0.724348,0.377177,0.826301,0.822711,0.480419,0.696626,0.364849,0.826619,0.447463,0.537839,0.361632,0.0926555,0.645931,0.0929439,0.318256,0.223765,0.541308,0.752392,0.233234,0.253839,0.454324,0.884843,0.0896124,0.0397274,0.76012,0.943183,0.537875,0.413465,0.58165,0.294395,0.499625,0.188835,0.128161,0.124171,0.723419,0.6544,0.83072,0.816956,0.609386,0.699154,0.522109,0.564597,0.354501,0.735601,0.149154,0.0893079,0.336927,0.652245,0.908381,0.458579,0.0382057,0.579865,0.939528,0.441056,0.569968,0.111173,0.308463,0.300495,0.7199,0.595423,0.0209506,0.45749,0.204983,0.914894,0.849469,0.473072,0.0233132,0.126726,0.869043,0.972209,0.229392,0.214496,0.9812,0.941704,0.396836,0.674803,0.0856111,0.376933,0.946615,0.0134576,0.431056,0.0579622,0.171553,0.404065,0.340525,0.512918,0.392965,0.629562,0.516407,0.920006,0.053546,0.420382,0.28559,0.253211,0.83407,0.728031,0.142025,0.0601282,0.47567,0.0116911,0.652396,0.978251,0.437142,0.0204426,0.123627,0.957067,0.898499,0.808128,0.899046,0.762358,0.043046,0.787525,0.831638,0.341688,0.966409,0.264456,0.622266,0.941564,0.594377,0.00425339,0.905646,0.337914,0.788493,0.464266,0.560559,0.545515,0.925684,0.542838,0.0483927,0.564771,0.548223,0.560898,0.273379,0.994362,0.943821,0.703248,0.0646764,0.0618003,0.801518,0.782825,0.447295,0.742694,0.328784,0.619044,0.0646604,0.304412,0.276177,0.816242,0.507255,0.0844964,0.942163,0.940805,0.436013,0.0873049,0.562859,0.200421,0.906811,0.413392,0.402247,0.910242,0.781329,0.619355,0.676584,0.973741,0.209161,0.98695,0.810687,0.120431,0.452672,0.75375,0.783358,0.998808,0.0851564,0.47381,0.358515,0.00229818,0.793495,0.351584,0.983528,0.960449,0.305698,0.907342,0.395131,0.861097,0.996176,0.95892,0.357593,0.389979,0.11724,0.604823,0.035686,0.356312,0.990451,0.391405,0.652165,0.356342,0.471936,0.751578,0.376649,0.49944,0.779449,0.955743,0.330244,0.693103,0.382557,0.322465,0.304444,0.222456,0.810264,0.0402023,0.995425,0.239096,0.157934,0.0608081,0.492441,0.769513,0.324794,0.347681,0.583072,0.839025,0.0208766,0.631732,0.482213,0.460157,0.109302,0.493936,0.0389122,0.228826,0.130675,0.287306,0.141908,0.481297,0.934775,0.380128,0.457882,0.423097,0.167694,0.604315,0.938187,0.0139974,0.854651,0.248276,0.167218,0.693453,0.592987,0.0690542,0.457097,0.876231,0.646926,0.968368,0.290547,0.621487,0.826019,0.988708,0.737241,0.868289,0.672597,0.371766,0.419547,0.836702,0.522908,0.532173,0.298039,0.912126,0.221528,0.242456,0.957023,0.53663,0.856443,0.434879,0.716251,0.947372,0.136036,0.0147114,0.953469,0.0187714,0.475299,0.635915,0.468075,0.0797746,0.690303,0.997082,0.566798,0.797688,0.0395555,0.899298,0.0319845,0.331994,0.256815,0.469089,0.739305,0.0783151,0.54724,0.586706,0.847268,0.415926,0.505127,0.0795777,0.513529,0.482614,0.968698,0.0130247,0.820125,0.0634073,0.20304,0.500293,0.823275,0.706107,0.339551,0.714083,0.611369,0.589453,0.366178,0.858107,0.62958,0.888888,0.644004,0.424647,0.394571,0.166095,|0.513921,0.498751,0.211582,0.622847,0.478397,0.586227,0.113253,0.423412,0.0265349,0.791876,0.333416,0.389069,0.315372,0.804769,0.87744,0.648435,0.675442,0.148531,0.224378,0.0304979,0.160851,0.797023,0.956212,0.65297,0.718483,0.397437,0.342707,0.134412,0.806939,0.439179,0.949395,0.422363,0.063046,0.578301,0.562933,0.174105,0.593003,0.942848,0.852043,0.627604,0.961342,0.69561,0.771547,0.527756,0.411734,0.365041,0.976966,0.642257,0.691284,0.480332,0.561231,0.230279,0.925329,0.516328,0.491664,0.865831,0.161354,0.737848,0.0405484,0.970442,0.550356,0.999675,0.272328,0.297579,0.731658,0.368221,0.670549,0.29138,0.764306,0.468421,0.427503,0.996762,0.396431,0.854138,0.460725,0.256404,0.806507,0.829532,0.908112,0.0407848,0.609034,0.286518,0.31389,0.361303,0.793904,0.114995,0.869619,0.58022,0.35995,0.100561,0.0502517,0.422443,0.0451444,0.281404,0.753604,0.856303,0.98231,0.330112,0.883081,0.420276,0.720403,0.813118,0.658872,0.210042,0.819083,0.23326,0.467735,0.6738,0.0333575,0.170136,0.255203,0.28238,0.532273,0.0758571,0.341871,0.15062,0.376399,0.473271,0.636838,0.365622,0.156855,0.13844,0.639152,0.618169,0.922047,0.0302714,0.150904,0.0804766,0.415444,0.758668,0.226874,0.91649,0.932426,0.887074,0.673213,0.47094,0.354358,0.725223,0.989188,0.696849,0.781013,0.0178084,0.799836,0.206571,0.341887,0.366406,0.430365,0.509457,0.217262,0.961766,0.778025,0.343532,0.126503,0.0453149,0.815818,0.518144,0.90178,0.710001,0.325698,0.278391,0.717884,0.924316,0.616161,0.254483,0.100589,0.487238,0.741381,0.592526,0.231119,0.254559,0.0356143,0.152656,0.692963,0.181051,0.978067,0.124436,0.906243,0.269144,0.484084,0.949959,0.28098,0.939066,0.059022,0.903435,0.666076,0.45126,0.712637,0.765679,0.118233,0.370173,0.0961545,0.0572678,0.345464,0.376775,0.750147,0.553462,0.428091,0.00478059,0.378989,0.0121241,0.388172,0.0638184,0.0730001,0.824876,0.188674,0.883391,0.182146,0.577069,0.865628,0.288148,0.219061,0.61131,0.807585,0.119211,0.664435,0.0574631,0.604075,0.624748,0.270848,0.920929,0.678648,0.893153,0.902842,0.702779,0.792901,0.508702,0.0085752,0.978444,0.102352,0.249518,0.740467,0.513322,0.535436,0.993981,0.752485,0.926706,0.338345,0.746375,0.320763,0.732408,0.0760657,0.628365,0.407945,0.830993,0.399735,0.469929,0.883552,0.887689,0.282075,0.842345,0.987046,0.584625,0.763947,0.660313,0.912608,0.0101696,0.924761,0.658487,0.544678,0.95251,0.335888,0.323137,0.0413269,0.558571,0.933897,0.379145,0.586031,0.295873,0.525912,0.881318,0.649012,0.552277,0.0384324,0.917884,0.233127,0.455889,0.826222,0.885851,0.236145,0.967287,0.953496,0.36613,0.670134,0.962881,0.58665,0.521467,0.207443,0.0870543,0.764561,0.0967692,0.874119,0.389891,0.189597,0.358517,0.603549,0.383179,0.278509,0.579284,0.212876,0.738231,0.375241,0.536119,0.353545,0.0818321,0.404366,0.38078,0.241013,0.80744,0.317874,0.340494,0.945931,0.619579,0.101464,0.0825689,0.868366,0.157209,0.822652,0.701584,0.0458131,0.747145,0.870736,0.210514,0.34629,0.734229,0.595478,0.893283,0.977797,0.990168,0.708802,0.821533,0.413913,0.125651,0.508026,0.794931,0.765746,0.763521,0.667052,0.0964732,0.497987,0.541209,0.785493,0.477034,0.356131,0.2868,0.0888873,0.589307,0.963197,0.869328,0.804824,0.715515,0.264711,0.667996,0.684837,0.798462,0.916022,0.802505,0.190566,0.0158169,0.909456,0.259825,0.00811177,0.384867,0.756127,0.10204,0.998235,0.531979,0.0918952,0.16946,0.987385,0.761836,0.558861,0.146846,0.249697,0.868802,0.575882,0.209659,0.141697,0.0208758,0.304506,0.482431,0.461188,0.150329,0.0941736,0.0964244,0.138312,0.260997,0.617612,0.256083,0.598511,0.718555,0.393153,0.980988,0.523444,0.640471,0.290073,0.857586,0.215439,0.721289,0.684753,0.76299,0.945499,0.426167,0.0988786,0.772483,0.437825,0.641097,0.933,0.0535905,0.698135,0.0246976,0.425039,0.534565,0.704079,0.328069,0.753363,0.541363,0.896955,0.120858,0.690039,0.997173,0.609983,0.860007,0.228369,0.929321,0.668679,0.258602,0.792367,0.277352,0.546191,0.376324,0.626734,0.87368,0.548863,0.799327,0.3169,0.918508,0.310553,0.725056,0.548161,0.696084,0.210497,0.968465,0.418364,0.53971,0.56158,0.158189,0.936568,0.40225,0.313549,0.739717,0.87209,0.365573,0.643441,0.00455076,0.371633,0.571049,0.207079,0.0871477,0.744744,0.79539,0.25208,0.414046,0.483998,0.266735,0.568281,0.0406912,0.890468,0.829783,0.322629,0.955841,0.193989,0.518807,0.345521,0.483995,0.197385,0.703485,0.819101,0.309484,0.510015,0.0281191,0.389812,0.0784198,0.061241,0.0964811,0.836092,0.940385,0.421062,0.76097,0.156891,0.959662,0.893567,0.740337,0.78607,0.439476,0.0859105,0.320103,0.0197766,0.82961,0.539502,0.297346,0.450359,0.348144,0.589423,0.742999,0.164716,0.851137,0.891315,0.477796,0.192168,0.318447,0.834526,0.827102,0.508336,0.194174,0.360777,0.504961,0.47364,0.529031,0.217048,0.107516,0.261648,0.922873,0.709236,0.282068,0.485131,0.626489,0.971149,0.776208,0.993259,0.802348,0.398257,0.536468,0.437031,0.191393,0.702047,0.626293,0.477618,0.558876,0.960295,0.62539,0.101966,0.489011,0.332975,0.703419,0.194783,0.366347,0.982232,0.462215,0.731699,0.930388,0.565066,0.970894,0.555836,0.654754,0.848189,0.0422465,0.281748,0.597584,0.312278,0.183633,0.37454,0.660365,0.237029,0.949484,0.0564099,0.720408,0.460059,0.950697,0.624378,0.360963,0.244803,0.963546,0.172518,0.118116,0.332902,0.303378,0.713244,0.23026,0.673392,0.277858,0.312967,0.318275,0.47787,0.303211,0.49923,0.132672,0.617858,0.832919,0.180263,0.537585,0.624165,0.653709,0.859434,0.600735,0.921551,0.593083,0.743244,0.00775498,0.582998,0.496765,0.409719,0.724587,0.922579,0.324641,0.919883,0.653278,0.0971669,0.305369,0.458058,0.543311,0.595093,0.196266,0.225614,0.0647542,0.327872,0.353219,0.145685,0.971961,0.981254,0.703193,0.714361,0.499288,0.573982,0.297262,0.825086,0.99048,0.792086,0.946898,0.583324,0.854109,0.0224155,0.467321,0.939341,0.677133,0.649025,0.544236,0.573368,0.183333,0.792519,0.614836,0.379071,0.580357,0.153707,0.526816,0.184864,0.27821,0.94028,0.302954,0.941004,0.917693,0.775673,0.483127,0.0632997,0.385674,0.85808,0.581535,0.117262,0.548077,0.793538,0.377564,0.709844,0.549131,0.231999,0.0115706,0.678387,0.260335,0.380652,0.0427415,0.416679,0.962366,0.900754,0.837025,0.832565,0.617116,0.946899,0.29513,0.203993,0.342282,0.443056,0.0989295,0.13718,0.384491,0.84497,0.0487387,0.435069,0.782689,0.319611,0.859577,0.928133,0.462945,0.298837,0.336443,0.595597,0.312559,0.290626,0.597004,0.148902,0.0223128,0.0624889,0.129486,0.668025,0.311907,0.997758,0.589611,0.709246,0.0612,0.0731844,0.156846,0.872461,0.264996,0.708249,0.322424,0.183085,0.87349,0.931661,0.442463,0.431275,0.178165,0.352661,0.0125746,0.31865,0.0097692,0.841466,0.38454,0.297537,0.966452,0.779656,0.835888,0.931579,0.52133,0.908781,0.35999,0.0978446,0.772064,0.0116785,0.69005,0.931952,0.560741,0.53974,0.125187,0.82923,0.369478,0.107587,0.907849,0.531276,0.276559,0.996472,0.2494,0.239794,0.641977,0.747065,0.885723,0.091119,0.931725,0.554367,0.383994,0.901369,0.34244,0.0277407,0.190025,0.716507,0.0797085,0.46959,0.907447,0.180333,0.0903314,0.0898173,0.623231,0.0644968,0.778062,0.370007,0.642507,0.0171087,0.752148,0.21854,0.423978,0.295553,0.803576,0.28602,0.00638264,0.89308,0.768577,0.284456,0.0956928,0.493246,0.362839,0.562634,0.815215,0.937245,0.333943,0.318998,0.269449,0.618812,0.174483,0.765628,0.808975,0.84241,0.166619,0.318384,0.444666,0.753739,0.297522,0.535622,0.854201,0.23859,0.210857,0.423078,0.773861,0.527994,0.771459,0.405919,0.538278,0.627702,0.382124,0.651848,0.63641,0.667182,0.39496,0.599005,0.0104881,0.353936,0.916903,0.724894,0.546991,0.644606,0.796319,0.0522282,0.314422,0.852642,0.262865,0.248786,0.554779,0.332393,0.585796,0.259876,0.9856,0.476979,0.77081,0.660004,0.111148,0.99619,0.372896,0.064861,0.686039,0.818699,0.132475,0.185201,0.739952,0.975057,0.373398,0.794258,0.125388,0.000171065,0.244936,0.812612,0.0299624,0.228017,0.462475,0.273713,0.258382,0.542322,0.0819607,0.739441,0.609865,0.451738,0.396256,0.657328,0.368231,0.863959,0.267401,0.6642,0.224609,0.432275,0.140305,0.799624,0.399922,0.911543,0.445988,0.426377,0.178456,0.71366,0.64815,0.911573,0.291077,0.140005,0.362615,0.474784,0.540895,0.900076,0.569247,0.625392,0.750292,0.515499,0.811524,0.931341,0.645624,0.953951,0.00752676,0.944258,0.510222,0.17268,0.535009,0.326272,0.592412,0.94497,0.186127,0.457664,0.372805,0.738936,0.26691,0.321795,0.601861,0.68287,0.707776,0.369833,0.241751,0.0445588,0.621913,0.812594,0.482407,0.632792,0.989207,0.238881,0.797789,0.844565,0.338034,0.452351,0.95359,0.647451,0.946537,0.76051,0.637,0.97942,0.135062,0.478063,0.46841,0.334313,0.11818,0.857597,0.88181,0.311877,0.207936,0.472018,0.216366,0.654678,0.349705,0.789505,0.975205,0.923775,0.740962,0.854624,0.529716,0.120105,0.641408,0.764757,0.62521,0.0797875,0.490466,0.845735,0.453199,0.34263,0.889466,0.393398,0.508009,0.960496,0.637998,0.695467,0.399233,0.440354,0.538641,0.654885,0.781234,0.0210367,0.245067,0.167799,0.183041,0.216602,0.179268,0.829538,0.130809,0.0609023,0.00518012,0.687234,0.175719,0.574383,0.375197,0.336624,0.789596,0.453829,0.513378,0.26755,0.948363,0.612074,0.11599,0.855559,0.798643,0.981095,0.170116,0.703387,0.634521,|0.41348,0.117804,0.874731,0.546634,0.200816,0.860286,0.927001,0.331371,0.466359,0.254183,0.571615,0.232881,0.228372,0.881277,0.483551,0.620834,0.939241,0.88527,0.236074,0.60736,0.335855,0.472878,0.40628,0.740675,0.978445,0.370776,0.555984,0.406604,0.21926,0.840679,0.354621,0.263233,0.227942,0.243345,0.146263,0.90531,0.167474,0.796473,0.139968,0.509133,0.573717,0.846677,0.953404,0.897473,0.514239,0.527291,0.57079,0.173855,0.2963,0.418493,0.981783,0.147448,0.764478,0.0990646,0.494417,0.621943,0.124017,0.847087,0.617792,0.82511,0.797064,0.597958,0.595102,0.117211,0.923785,0.237882,0.727528,0.0517029,0.0436249,0.398636,0.328404,0.633904,0.234625,0.775956,0.6384,0.604569,0.844387,0.690335,0.877215,0.629158,0.998197,0.881791,0.504268,0.826029,0.103638,0.603775,0.954282,0.928647,0.415587,0.609409,0.3572,0.970132,0.737632,0.22754,0.654473,0.359101,0.759541,0.24615,0.28936,0.672321,0.364614,0.124023,0.939133,0.169576,0.2684,0.551348,0.404412,0.35378,0.611381,0.262855,0.0956515,0.906355,0.182435,0.0885267,0.713378,0.220897,0.356902,0.2951,0.864428,0.76239,0.0130826,0.582322,0.0570146,0.125698,0.977961,0.682569,0.123357,0.600564,0.180154,0.497133,0.142917,0.866164,0.690612,0.671005,0.76105,0.148553,0.646933,0.494265,0.781493,0.211146,0.938365,0.326575,0.81091,0.528734,0.0122743,0.296605,0.350397,0.574029,0.13297,0.19753,0.872483,0.288811,0.571854,0.687835,0.535337,0.521881,0.376302,0.343662,0.850912,0.0989796,0.040566,0.365258,0.253242,0.483125,0.847488,0.772137,0.624536,0.0109769,0.815771,0.977159,0.647986,0.566539,0.774602,0.586236,0.829724,0.465868,0.718232,0.455784,0.842758,0.0486422,0.225634,0.0639378,0.477249,0.801944,0.877374,0.58498,0.731637,0.977467,0.641907,0.576378,0.0252243,0.84564,0.382074,0.851668,0.373886,0.767945,0.985341,0.394243,0.831592,0.648761,0.228508,0.264992,0.125642,0.103272,0.540554,0.704854,0.150806,0.0713726,0.683808,0.709888,0.795358,0.431374,0.560134,0.326646,0.76565,0.0545473,0.778128,0.887703,0.196355,0.836664,0.396576,0.507876,0.0742565,0.271445,0.384602,0.954301,0.146355,0.126956,0.641524,0.746405,0.042491,0.114374,0.638786,0.472045,0.116549,0.822072,0.738359,0.830152,0.515968,0.0807042,0.038889,0.328306,0.211615,0.36847,0.719426,0.219977,0.199868,0.126602,0.157378,0.781558,0.987192,0.210625,0.923545,0.125895,0.702197,0.886595,0.741478,0.761235,0.444729,0.169789,0.0957913,0.0195553,0.880768,0.3647,0.951281,0.0169935,0.608349,0.316567,0.786992,0.645338,0.582086,0.971911,0.405161,0.667856,0.64492,0.274672,0.726534,0.709472,0.639655,0.557263,0.896214,0.385102,0.667835,0.265752,0.436391,0.940191,0.735381,0.798317,0.0188423,0.354699,0.630349,0.24693,0.817223,0.233243,0.853095,0.121759,0.453595,0.689232,0.0858954,0.61711,0.518427,0.0617065,0.0101257,0.0722895,0.295882,0.287434,0.233632,0.668301,0.0606021,0.632987,0.0120713,0.034444,0.371487,0.175946,0.908165,0.18521,0.980914,0.292988,0.674594,0.869627,0.95399,0.420186,0.74015,0.763684,0.0452446,0.919081,0.251789,0.308794,0.0494974,0.87244,0.640566,0.670171,0.316077,0.967379,0.486172,0.466797,0.676332,0.254941,0.325353,0.846294,0.993656,0.93594,0.0998998,0.627756,0.881307,0.283182,0.643556,0.276148,0.170687,0.458458,0.0974512,0.202034,0.992964,0.739773,0.315404,0.754267,0.730888,0.118507,0.622034,0.232928,0.920405,0.539043,0.119394,0.991168,0.0941895,0.22985,0.782809,0.196781,0.873011,0.24356,0.663178,0.194866,0.700816,0.969734,0.031188,0.927612,0.3379,0.0507764,0.773269,0.57928,0.947868,0.701228,0.0444645,0.0486897,0.453496,0.306352,0.142047,0.180122,0.110157,0.119894,0.747231,0.0599778,0.788181,0.152872,0.249483,0.784992,0.728316,0.261232,0.993941,0.411371,0.350045,0.084435,0.339887,0.877782,0.0738533,0.753071,0.0592583,0.291483,0.631224,0.993942,0.725743,0.947016,0.913905,0.227919,0.173282,0.0326244,0.00631142,0.890137,0.328388,0.122497,0.803308,0.16708,0.248701,0.368993,0.898379,0.28182,0.912991,0.869172,0.488486,0.788454,0.20661,0.374953,0.401449,0.87532,0.43633,0.0762942,0.614299,0.8813,0.350437,0.445941,0.783614,0.312937,0.241742,0.751808,0.481539,0.761344,0.0635702,0.0809822,0.4696,0.355391,0.649444,0.458564,0.975981,0.991463,0.509781,0.683619,0.180226,0.600217,0.9796,0.36689,0.50544,0.63941,0.818331,0.316094,0.0877019,0.382333,0.476702,0.660359,0.431925,0.0848167,0.290999,0.42044,0.655175,0.910212,0.622863,0.90304,0.790377,0.45607,0.565804,0.51573,0.391515,0.999823,0.450721,0.134242,0.47656,0.71699,0.683048,0.845136,0.666121,0.476276,0.563846,0.966158,0.693022,0.426973,0.278766,0.343409,0.789968,0.499504,0.579847,0.304693,0.0736839,0.343438,0.382114,0.81193,0.910755,0.358968,0.731087,0.916179,0.284041,0.917906,0.793801,0.395737,0.563866,0.579122,0.0146808,0.298438,0.0191663,0.245458,0.702758,0.476278,0.575602,0.223211,0.311759,0.364916,0.629254,0.187739,0.300103,0.539019,0.909156,0.850538,0.255728,0.196691,0.183296,0.938467,0.758208,0.889665,0.833615,0.70792,0.925095,0.655988,0.569145,0.807764,0.24193,0.101394,0.293198,0.273349,0.866598,0.512756,0.778686,0.071372,0.0756192,0.838578,0.261685,0.714545,0.637809,0.369372,0.446548,0.447734,0.511353,0.288231,0.951443,0.50165,0.7102,0.423296,0.627161,0.23431,0.0264296,0.983128,0.950485,0.853113,0.640039,0.434467,0.873637,0.946974,0.123865,0.90808,0.988604,0.752839,0.659504,0.114484,0.285345,0.608602,0.112291,0.674864,0.63584,0.554605,0.860446,0.749376,0.474044,0.627347,0.863034,0.738976,0.460704,0.898837,0.672446,0.383794,0.467688,0.199908,0.183174,0.930153,0.947489,0.470183,0.757497,0.608534,0.581537,0.455116,0.752495,0.336136,0.68426,0.0112306,0.998974,0.270191,0.407689,0.841149,0.906081,0.247988,0.377636,0.314045,0.396887,0.606502,0.642906,0.672583,0.869976,0.886603,0.792664,0.245451,0.820255,0.91995,0.734327,0.420694,0.97866,0.36083,0.742327,0.925513,0.732505,0.843266,0.811778,0.370763,0.51091,0.547244,0.0464136,0.274481,0.125387,0.442949,0.417501,0.5501,0.451259,0.0485954,0.817696,0.205481,0.344056,0.538276,0.783113,0.565867,0.190752,0.572656,0.535,0.778685,0.874579,0.141176,0.67909,0.196272,0.0819723,0.755545,0.0432978,0.00310475,0.675696,0.8964,0.5654,0.563214,0.768553,0.00295812,0.532625,0.900021,0.181657,0.795987,0.045529,0.536449,0.184133,0.316176,0.929765,0.275766,0.376986,0.505386,0.745234,0.834091,0.14833,0.685691,0.904535,0.129577,0.211376,0.623196,0.08461,0.198254,0.931564,0.713662,0.299278,0.785778,0.675897,0.00991923,0.707078,0.78418,0.433015,0.121531,0.71385,0.137593,0.778066,0.375594,0.877717,0.101032,0.666293,0.304222,0.177233,0.241778,0.44825,0.331768,0.914918,0.192959,0.848363,0.530235,0.319965,0.54343,0.114422,0.500869,0.653823,0.139975,0.271507,0.472747,0.955781,0.277248,0.389337,0.658505,0.870262,0.0141532,0.321655,0.231575,0.473198,0.148878,0.0189067,0.747174,0.337915,0.816998,0.489562,0.799365,0.534963,0.640739,0.596706,0.281333,0.57195,0.345286,0.790276,0.06405,0.449933,0.230949,0.0127071,0.758263,0.695854,0.724244,0.728906,0.139508,0.64471,0.748912,0.550368,0.464154,0.245977,0.653245,0.628738,0.228205,0.404567,0.296785,0.791607,0.987819,0.732695,0.671202,0.0120142,0.255662,0.784335,0.57958,0.667622,0.991059,0.741869,0.117059,0.977526,0.0985277,0.0237823,0.915813,0.61698,0.656551,0.905092,0.266664,0.942015,0.568883,0.642192,0.345446,0.0998111,0.358194,0.123787,0.000452161,0.904123,0.308803,0.00845015,0.643514,0.405979,0.729291,0.0186148,0.137948,0.737859,0.629155,0.250499,0.260731,0.862207,0.187459,0.889147,0.994959,0.780768,0.495002,0.649533,0.970851,0.303461,0.987925,0.460206,0.010951,0.116964,0.972644,0.178723,0.647491,0.172796,0.411504,0.166687,0.576133,0.298548,0.167494,0.209547,0.57353,0.103773,0.831323,0.995737,0.0947904,0.564914,0.868636,0.931854,0.592817,0.703864,0.802037,0.676861,0.584408,0.403378,0.925364,0.706737,0.606732,0.851768,0.801008,0.0708568,0.571173,0.697781,0.873401,0.0132654,0.341736,0.109104,0.0405354,0.479612,0.930839,0.91106,0.160051,0.686351,0.737629,0.544202,0.457474,0.624857,0.142192,0.0634517,0.44016,0.289292,0.26627,0.579846,0.428334,0.731166,0.129699,0.312987,0.572131,0.50908,0.271653,0.521451,0.789978,0.123123,0.0449335,0.59998,0.439421,0.921904,0.889897,0.405843,0.614414,0.434433,0.561472,0.160408,0.1114,0.0824751,0.419298,0.363503,0.870074,0.829679,0.0295075,0.073009,0.733432,0.73631,0.130297,0.133122,0.348496,0.0865604,0.0578219,0.670548,0.0782194,0.772974,0.183207,0.752598,0.562562,0.626824,0.0880479,0.287137,0.670829,0.491531,0.178919,0.518605,0.0163755,0.325019,0.8489,0.522773,0.851415,0.629367,0.407834,0.102654,0.460445,0.325768,0.948568,0.155041,0.308888,0.766013,0.11593,0.965024,0.0103329,0.861094,0.61237,0.550232,0.972859,0.902969,0.130761,0.0498058,0.0699309,0.615112,0.722611,0.342935,0.20391,0.243622,0.667222,0.903739,0.721443,0.424986,0.593994,0.904988,0.851728,0.811451,0.0560659,0.220714,0.705635,0.152284,0.156038,0.867492,0.58781,0.971036,0.759066,0.358884,0.839114,0.880106,0.47561,0.837882,0.607731,0.242156,0.756024,0.97053,0.49273,0.830201,0.882375,0.545002,0.0289186,0.00178796,0.607438,0.451413,0.160468,0.503124,0.959214,0.656631,0.472855,0.475917,0.310231,0.00996947,0.0568355,0.811374,0.94011,0.790035,0.397549,|0.636512,0.969416,0.96918,0.196534,0.438146,0.506845,0.620574,0.224782,0.326622,0.058437,0.854927,0.357038,0.123454,0.0113766,0.227356,0.560779,0.499164,0.0829195,0.835561,0.540854,0.525857,0.789409,0.726474,0.293317,0.824094,0.764729,0.971203,0.164531,0.445266,0.406072,0.460215,0.268387,0.0228197,0.459761,0.0992631,0.94949,0.311503,0.322878,0.424589,0.505133,0.603171,0.393339,0.201535,0.692069,0.278406,0.402252,0.330071,0.524697,0.150021,0.18723,0.563502,0.291867,0.244648,0.236159,0.778602,0.323702,0.875761,0.517672,0.0348216,0.527362,0.578022,0.367576,0.942423,0.880082,0.923548,0.957565,0.0254326,0.621401,0.992841,0.107648,0.226551,0.755499,0.5029,0.323477,0.0413223,0.245974,0.436969,0.122843,0.766468,0.207362,0.93023,0.251767,0.536868,0.272638,0.579174,0.699699,0.381493,0.199891,0.660772,0.770624,0.749838,0.175537,0.188296,0.583275,0.73914,0.816049,0.972199,0.814342,0.887428,0.180415,0.677385,0.381379,0.858914,0.662077,0.390283,0.312027,0.0283561,0.825167,0.164531,0.639953,0.429425,0.247135,0.907453,0.710263,0.402911,0.374266,0.992835,0.86988,0.148658,0.434253,0.204298,0.348912,0.499189,0.903797,0.548569,0.398196,0.0908674,0.573776,0.635818,0.253282,0.345926,0.434515,0.274771,0.587826,0.785854,0.205717,0.198991,0.790171,0.0942368,0.0808151,0.662229,0.0410905,0.0105791,0.292382,0.305565,0.0654959,0.932565,0.0482268,0.814573,0.32367,0.342566,0.484849,0.284139,0.457601,0.808692,0.117517,0.378499,0.826929,0.571516,0.264559,0.498193,0.0502154,0.985461,0.888394,0.703697,0.00579095,0.885267,0.916158,0.352461,0.496635,0.42714,0.558949,0.592715,0.518646,0.307941,0.835995,0.684008,0.52713,0.65215,0.137036,0.630949,0.563169,0.686042,0.767425,0.932185,0.432647,0.9563,0.894354,0.190154,0.129265,0.529569,0.454042,0.208657,0.29387,0.0431753,0.184675,0.931858,0.294569,0.427612,0.968958,0.453763,0.390907,0.440982,0.151639,0.757387,0.512592,0.163037,0.418918,0.0735885,0.0788199,0.609905,0.647343,0.998439,0.0430216,0.525795,0.703395,0.0813892,0.535944,0.521581,0.0878738,0.309643,0.734823,0.242015,0.198291,0.27603,0.982647,0.480036,0.951879,0.91986,0.54991,0.969931,0.540811,0.347775,0.381486,0.857196,0.554352,0.590144,0.282492,0.35896,0.583385,0.623494,0.326259,0.246608,0.000334382,0.943901,0.696595,0.431141,0.702423,0.258931,0.202097,0.749945,0.509962,0.409467,0.937002,0.160136,0.572173,0.0647667,0.156539,0.178819,0.0726872,0.44067,0.420783,0.117108,0.433846,0.531657,0.944735,0.162663,0.981721,0.390061,0.756072,0.269083,0.268899,0.369942,0.613178,0.402941,0.21625,0.137991,0.598358,0.379023,0.220431,0.342838,0.775676,0.63353,0.917595,0.0360684,0.571185,0.638234,0.703928,0.946516,0.29713,0.667636,0.315885,0.142789,0.663703,0.547618,0.750002,0.461574,0.446385,0.0560154,0.416786,0.591218,0.0395088,0.774483,0.686402,0.464721,0.778685,0.0886994,0.804296,0.194239,0.0483379,0.172979,0.623703,0.418372,0.264355,0.408698,0.168939,0.81954,0.958593,0.56362,0.114497,0.578782,0.196275,0.922933,0.580666,0.298568,0.00230193,0.49276,0.508128,0.221723,0.0486085,0.57889,0.971393,0.675186,0.166714,0.995769,0.0134458,0.309912,0.383636,0.0753121,0.981796,0.291228,0.358888,0.164741,0.508823,0.226096,0.0549862,0.630956,0.0262163,0.902573,0.815605,0.694048,0.956706,0.682098,0.595682,0.73493,0.716746,0.890213,0.946108,0.497271,0.922242,0.741207,0.516903,0.0261005,0.433856,0.646688,0.180362,0.250811,0.338281,0.185566,0.661967,0.609623,0.0581201,0.134958,0.639481,0.597852,0.255462,0.048893,0.737311,0.255023,0.0709337,0.148323,0.564406,0.942132,0.410937,0.0503211,0.117979,0.35976,0.372253,0.126475,0.96199,0.866403,0.374823,0.0366827,0.755661,0.0896704,0.695195,0.458375,0.813272,0.714575,0.198694,0.602628,0.689308,0.960635,0.755726,0.786649,0.367169,0.190298,0.266014,0.645414,0.0446143,0.462207,0.144576,0.587375,0.809088,0.434175,0.783553,0.872261,0.42657,0.493478,0.396396,0.077123,0.386169,0.802975,0.0954481,0.905226,0.881092,0.103852,0.810261,0.689529,0.204331,0.748214,0.5532,0.60768,0.88748,0.0912694,0.719758,0.509682,0.0474665,0.682287,0.517864,0.0773988,0.511912,0.92447,0.196238,0.447213,0.257266,0.635071,0.457252,0.342895,0.80644,0.667893,0.34355,0.127094,0.728385,0.0905783,0.927463,0.50791,0.806187,0.214348,0.804134,0.995678,0.316804,0.514154,0.562034,0.866421,0.097738,0.0501963,0.482716,0.581337,0.436242,0.559778,0.361248,0.208668,0.0816938,0.949985,0.0456138,0.676418,0.0199484,0.197132,0.00881445,0.568067,0.628078,0.171804,0.0583273,0.784634,0.153099,0.853077,0.275961,0.286651,0.35012,0.615529,0.0785355,0.981637,0.0821823,0.519632,0.503245,0.911972,0.44296,0.528165,0.291276,0.638235,0.84911,0.491155,0.676369,0.538695,0.544343,0.860879,0.710974,0.36022,0.257451,0.947781,0.954306,0.739405,0.786462,0.499287,0.0604345,0.736978,0.914975,0.958349,0.760796,0.108979,0.968006,0.867244,0.723383,0.257036,0.654543,0.710457,0.207015,0.599744,0.457132,0.425084,0.455922,0.343146,0.148479,0.963757,0.0749635,0.350285,0.927622,0.663468,0.858287,0.582679,0.783307,0.477955,0.752416,0.64183,0.913328,0.851188,0.00889957,0.543673,0.976134,0.0962251,0.686172,0.237548,0.99395,0.0623264,0.553132,0.190262,0.293451,0.721211,0.0754408,0.971259,0.85867,0.544075,0.589092,0.186937,0.342501,0.250758,0.747072,0.0138943,0.464456,0.368286,0.622397,0.763357,0.116597,0.037739,0.506932,0.380145,0.399618,0.898463,0.62749,0.274255,0.910768,0.444026,0.986971,0.586859,0.804233,0.342349,0.361122,0.82619,0.444302,0.786736,0.137745,0.389903,0.22895,0.911242,0.443227,0.533997,0.664906,0.166624,0.399399,0.81759,0.736532,0.285884,0.861059,0.88451,0.55155,0.534459,0.759116,0.473759,0.49047,0.871926,0.180295,0.0765916,0.291441,0.234697,0.100185,0.279465,0.551114,0.757352,0.612126,0.47827,0.400431,0.751344,0.446044,0.346468,0.410468,0.151585,0.914348,0.871025,0.503002,0.794948,0.0080992,0.20188,0.387166,0.167496,0.385257,0.0324673,0.716207,0.0902538,0.985396,0.556743,0.127235,0.465125,0.741485,0.0857545,0.189132,0.368764,0.544038,0.244498,0.355247,0.523874,0.463267,0.476573,0.323491,0.507344,0.538127,0.971986,0.519816,0.577984,0.740371,0.139811,0.439433,0.503282,0.461237,0.175186,0.273411,0.156706,0.820981,0.677474,0.768538,0.81496,0.195669,0.436293,0.244997,0.978838,0.96577,0.19231,0.7063,0.178745,0.570291,0.321505,0.823747,0.774197,0.970549,0.144342,0.698804,0.456044,0.635823,0.565568,0.980197,0.346649,0.666548,0.409175,0.3523,0.640171,0.231721,0.743372,0.895377,0.877754,0.550857,0.0640734,0.213529,0.960172,0.573864,0.679843,0.757736,0.528726,0.430218,0.280129,0.92791,0.173238,0.942282,0.946889,0.00887954,0.479154,0.687655,0.158058,0.0445945,0.16888,0.0757642,0.758571,0.573438,0.246593,0.523048,0.268041,0.994792,0.183198,0.60186,0.198685,0.179371,0.413492,0.942197,0.551522,0.00405043,0.582032,0.418427,0.0624969,0.409539,0.38472,0.881047,0.6953,0.480827,0.143129,0.639114,0.401068,0.647755,0.908132,0.547702,0.761786,0.895242,0.360296,0.421776,0.532722,0.983469,0.50163,0.850572,0.319706,0.309483,0.477906,0.406093,0.727059,0.0569135,0.765498,0.927286,0.405395,0.259492,0.658876,0.150547,0.367345,0.745495,0.460132,0.621306,0.0363441,0.333817,0.574468,0.143424,0.0617555,0.365789,0.584275,0.384378,0.117119,0.00519049,0.267053,0.925608,0.988243,0.44754,0.0682141,0.200013,0.572905,0.60503,0.077508,0.71857,0.337732,0.908994,0.68251,0.878573,0.0596902,0.292892,0.941126,0.797077,0.0948892,0.126845,0.496182,0.346241,0.298073,0.802906,0.069769,0.494285,0.38338,0.277815,0.347123,0.0309236,0.733495,0.810583,0.689012,0.922563,0.703367,0.496572,0.492845,0.252774,0.611887,0.905404,0.354553,0.238408,0.0752584,0.539574,0.1786,0.505712,0.329507,0.484394,0.567581,0.303149,0.612943,0.533229,0.366057,0.976335,0.624058,0.575909,0.49917,0.904249,0.94121,0.906788,0.863533,0.846995,0.0422791,0.558554,0.340471,0.176001,0.470197,0.0552628,0.994167,0.891024,0.273633,0.757623,0.856641,0.77027,0.370983,0.612273,0.751659,0.756432,0.649386,0.560431,0.274356,0.938287,0.445322,0.164437,0.625347,0.314988,0.119189,0.403422,0.170061,0.897146,0.747534,0.592177,0.386916,0.424472,0.95925,0.642746,0.742709,0.583235,0.496731,0.509558,0.841138,0.56251,0.0719223,0.693389,0.452482,0.0724315,0.961353,0.624739,0.894658,0.519904,0.950646,0.707117,0.209098,0.687352,0.448843,0.197441,0.602775,0.160788,0.802349,0.136152,0.124292,0.986362,0.0815744,0.756521,0.729743,0.0586756,0.98326,0.0172622,0.0350743,0.466395,0.742084,0.0939364,0.321916,0.453464,0.0310016,0.628382,0.114063,0.0543642,0.552892,0.314079,0.620358,0.383431,0.412338,0.638526,0.546086,0.347328,0.0330803,0.606746,0.474083,0.687026,0.591762,0.330792,0.0708439,0.986293,0.266306,0.269799,0.571462,0.700264,0.262751,0.539222,0.57906,0.0267491,0.898028,0.223078,0.656346,0.00566256,0.733141,0.823998,0.909422,0.476511,0.933945,0.118389,0.494591,0.931695,0.559532,0.311172,0.724356,0.0160337,0.762156,0.0460737,0.918168,0.242868,0.0627523,0.379976,0.687579,0.200965,0.836349,0.530402,0.871156,0.21999,0.918162,0.0788333,0.802069,0.0296755,0.827133,0.402986,0.707027,0.170612,0.795437,0.0851287,0.744395,0.423049,0.680275,0.121016,0.120637,0.893541,0.943972,0.877729,0.721844,0.339401,0.176286,0.213982,0.804244,0.715512,0.167324,0.748606,0.0636421,0.127653,|0.509819,0.214822,0.299608,0.348734,0.537372,0.134421,0.0682898,0.940777,0.32146,0.626837,0.855311,0.764813,0.0013957,0.416793,0.47745,0.0457685,0.926537,0.373585,0.866722,0.381547,0.317398,0.678307,0.253224,0.822066,0.78176,0.0160538,0.662775,0.756682,0.507625,0.439521,0.815532,0.845976,0.753114,0.93477,0.13564,0.901807,0.00798959,0.391163,0.0130154,0.120583,0.07434,0.198134,0.329001,0.412129,0.836232,0.0259057,0.579239,0.594606,0.637917,0.511163,0.310526,0.317549,0.185333,0.43865,0.411407,0.0380694,0.970922,0.171319,0.22027,0.867098,0.72771,0.761385,0.619371,0.515942,0.237304,0.135909,0.100936,0.216872,0.699647,0.166697,0.408582,0.337898,0.636524,0.0991254,0.465078,0.65045,0.101075,0.697456,0.874603,0.735773,0.922442,0.189008,0.0123696,0.990326,0.850136,0.716442,0.450596,0.808507,0.913055,0.781584,0.645058,0.538668,0.246341,0.00570285,0.443685,0.80096,0.162343,0.940691,0.174266,0.0308228,0.725567,0.316122,0.983308,0.405042,0.684838,0.600237,0.990813,0.951693,0.612193,0.767373,0.913825,0.320645,0.639642,0.89622,0.0992718,0.391633,0.489551,0.0409105,0.977387,0.0783638,0.451109,0.730281,0.786672,0.0856632,0.672278,0.711315,0.312012,0.753277,0.421575,0.455513,0.727643,0.26543,0.11955,0.116623,0.774757,0.0255969,0.736159,0.834637,0.0750264,0.636835,0.363933,0.616168,0.494946,0.469084,0.988345,0.810905,0.615698,0.459778,0.753291,0.385919,0.607597,0.0777043,0.481673,0.0367272,0.752612,0.864111,0.466291,0.132888,0.705611,0.469618,0.196349,0.655742,0.146686,0.146619,0.406627,0.633881,0.157604,0.0476384,0.313579,0.92183,0.546716,0.194644,0.209177,0.88246,0.265298,0.753868,0.396804,0.208456,0.114074,0.209296,0.197359,0.371308,0.277513,0.928183,0.0414997,0.547926,0.916001,0.214098,0.596085,0.355484,0.128107,0.607203,0.495825,0.612453,0.988462,0.044385,0.842079,0.0020566,0.0100991,0.68815,0.587083,0.0159977,0.459445,0.624153,0.288378,0.81891,0.625748,0.0192858,0.782983,0.868939,0.958281,0.477348,0.547661,0.42788,0.728571,0.623753,0.662386,0.898314,0.633948,0.438429,0.286598,0.758725,0.989268,0.678735,0.738023,0.846367,0.230749,0.633355,0.472325,0.378207,0.526174,0.861367,0.545663,0.715507,0.61639,0.962682,0.961609,0.68371,0.640268,0.818446,0.285188,0.110157,0.205424,0.376569,0.110178,0.470999,0.72063,0.628375,0.652718,0.203363,0.366947,0.385337,0.790885,0.765568,0.179625,0.0131689,0.480334,0.131569,0.101429,0.41535,0.0907553,0.772937,0.583461,0.992603,0.831825,0.83155,0.390203,0.897828,0.137803,0.929152,0.988645,0.749073,0.125037,0.702499,0.784535,0.0393533,0.341255,0.700599,0.784719,0.830784,0.336363,0.850991,0.295222,0.246794,0.396665,0.126182,0.768901,0.817456,0.964408,0.657955,0.242641,0.295709,0.557494,0.738308,0.532883,0.131851,0.77252,0.876853,0.121174,0.64769,0.63102,0.684443,0.119605,0.38191,0.931806,0.00240988,0.361582,0.679758,0.813797,0.91205,0.376904,0.831724,0.305339,0.876722,0.95774,0.992596,0.473453,0.930004,0.787766,0.279913,0.318302,0.624004,0.743226,0.19546,0.569283,0.414226,0.641563,0.530994,0.682628,0.397527,0.412511,0.829463,0.870009,0.522727,0.501577,0.239423,0.579816,0.0799477,0.231881,0.237,0.631305,0.399723,0.21411,0.841508,0.580631,0.6636,0.708163,0.858407,0.318407,0.425608,0.296942,0.996102,0.416701,0.177206,0.350114,0.648684,0.268411,0.723987,0.453929,0.362393,0.252541,0.467308,0.0543714,0.545465,0.886589,0.61859,0.243494,0.845796,0.376203,0.560112,0.0390276,0.362889,0.206745,0.171521,0.527395,0.508547,0.159616,0.899916,0.992677,0.349093,0.836948,0.797522,0.931764,0.430208,0.59332,0.307112,0.365069,0.403439,0.654546,0.0241975,0.436674,0.371869,0.181542,0.953212,0.762974,0.907152,0.841932,0.959885,0.284514,0.276868,0.225191,0.600904,0.295198,0.907351,0.88549,0.773662,0.0955662,0.607199,0.186956,0.134565,0.73994,0.837678,0.858527,0.878474,0.627247,0.607875,0.932721,0.290884,0.43853,0.359199,0.43619,0.287045,0.481819,0.649969,0.300578,0.601181,0.418916,0.359708,0.46598,0.089713,0.795345,0.655213,0.122066,0.539222,0.432564,0.420197,0.385794,0.130953,0.879434,0.0656844,0.893566,0.433681,0.929373,0.600947,0.467653,0.0995842,0.362494,0.0163798,0.159983,0.0873454,0.949737,0.476377,0.685867,0.780949,0.335073,0.51797,0.800068,0.809535,0.496311,0.734733,0.677535,0.227191,0.0558571,0.710319,0.750296,0.236062,0.123763,0.21415,0.0899865,0.773587,0.520815,0.163648,0.297473,0.525057,0.187277,0.665063,0.149286,0.686188,0.879295,0.996124,0.652621,0.956451,0.190215,0.358991,0.0715623,0.783372,0.36562,0.976128,0.578143,0.124001,0.901717,0.683358,0.935738,0.639861,0.834762,0.772953,0.662694,0.962959,0.101733,0.586881,0.574377,0.892069,0.164692,0.124886,0.490369,0.76775,0.945299,0.904129,0.17907,0.953458,0.0588235,0.346406,0.777594,0.0895541,0.417419,0.300382,0.900765,0.761402,0.684827,0.0781152,0.011028,0.303674,0.02513,0.549662,0.216894,0.0870828,0.741098,0.737785,0.114964,0.0491505,0.0566838,0.279049,0.349218,0.581667,0.309221,0.334343,0.997719,0.331636,0.365387,0.750873,0.964317,0.0174291,0.856802,0.881807,0.042705,0.690547,0.264955,0.382655,0.672809,0.472534,0.663388,0.421335,0.590986,0.0183843,0.497602,0.765667,0.641627,0.722301,0.751615,0.329427,0.154033,0.719756,0.633056,0.696599,0.0665382,0.723435,0.329723,0.13439,0.446748,0.126188,0.899688,0.497477,0.930506,0.526446,0.011372,0.241501,0.742557,0.0215741,0.207419,0.0702085,0.891606,0.654621,0.671939,0.365707,0.780595,0.908935,0.392651,0.808696,0.265815,0.437881,0.252917,0.615761,0.0622664,0.91975,0.659123,0.553082,0.0338107,0.914602,0.172529,0.648276,0.459513,0.0595802,0.162167,0.836169,0.919066,0.10099,0.247911,0.487093,0.347908,0.0672694,0.702953,0.725284,0.175491,0.0197536,0.879589,0.111692,0.242888,0.734644,0.992412,0.00432497,0.98135,0.689079,0.322285,0.384511,0.897751,0.907564,0.440456,0.971422,0.0603963,0.540844,0.835103,0.76128,0.753774,0.289811,0.0630284,0.674994,0.423468,0.360784,0.356858,0.315295,0.858083,0.632969,0.165677,0.532684,0.0464157,0.269146,0.934534,0.702908,0.587131,0.30455,0.709827,0.493208,0.594913,0.323173,0.693955,0.800205,0.548747,0.866651,0.567416,0.0625746,0.568413,0.892432,0.65317,0.592315,0.829463,0.436547,0.671763,0.217917,0.917672,0.72532,0.314341,0.0540588,0.0504031,0.0574071,0.519983,0.201634,0.847709,0.0514641,0.383152,0.655278,0.861048,0.104749,0.334516,0.00869668,0.483824,0.848228,0.943415,0.483069,0.557665,0.933789,0.458662,0.501727,0.169447,0.319379,0.0153366,0.278258,0.360569,0.407385,0.566103,0.890772,0.468775,0.794432,0.157477,0.786934,0.557612,0.68144,0.857946,0.168288,0.564029,0.382937,0.670375,0.806913,0.631321,0.151564,0.244345,0.666608,0.109031,0.805781,0.892861,0.367009,0.722386,0.105332,0.586035,0.871267,0.789097,0.259385,0.163882,0.285902,0.72907,0.623325,0.753644,0.467567,0.0597289,0.555326,0.634684,0.907272,0.639897,0.673658,0.683086,0.548146,0.483199,0.905034,0.37078,0.66603,0.402502,0.287463,0.947649,0.827903,0.515669,0.898388,0.429708,0.793362,0.4741,0.112486,0.340542,0.472215,0.611754,0.644487,0.650326,0.632367,0.999202,0.0225632,0.904336,0.467951,0.990778,0.452822,0.476479,0.0120844,0.383747,0.0365444,0.27089,0.864325,0.347819,0.725304,0.434251,0.70386,0.575866,0.89577,0.546853,0.226989,0.530115,0.123022,0.294996,0.32242,0.0427072,0.768362,0.112211,0.452731,0.285011,0.242225,0.104616,0.627955,0.0648414,0.297793,0.305182,0.435852,0.726974,0.43808,0.448937,0.240096,0.719567,0.970124,0.854636,0.143173,0.849995,0.944853,0.550931,0.999311,0.26141,0.63399,0.0649372,0.211133,0.978902,0.017082,0.374303,0.367918,0.873978,0.388854,0.963584,0.616815,0.192304,0.788229,0.0721736,0.0970852,0.455091,0.302716,0.961541,0.357455,0.944682,0.861852,0.920376,0.918784,0.65095,0.327308,0.953307,0.685563,0.240176,0.200656,0.298879,0.0537128,0.996131,0.152359,0.77574,0.160422,0.986439,0.747663,0.0208173,0.937807,0.471579,0.257581,0.217491,0.720402,0.576183,0.544462,0.982714,0.546091,0.757536,0.48205,0.614047,0.994854,0.413505,0.280219,0.341002,0.709043,0.597768,0.224852,0.669882,0.47405,0.877301,0.662855,0.547762,0.190451,0.132144,0.550311,0.0773634,0.186163,0.512418,0.0665376,0.408129,0.625727,0.737154,0.714568,0.949032,0.826466,0.787961,0.924378,0.115564,0.626745,0.224955,0.444294,0.754443,0.358303,0.166677,0.693235,0.824916,0.718341,0.418405,0.625659,0.531886,0.472182,0.497377,0.82305,0.00346327,0.702603,0.626579,0.386061,0.91349,0.147972,0.813852,0.513994,0.233621,0.257665,0.180457,0.822688,0.928533,0.883414,0.444297,0.707436,0.871946,0.152902,0.468274,0.210492,0.196681,0.880405,0.691452,0.901869,0.892362,0.432844,0.698457,0.628071,0.850858,0.942758,0.447912,0.266463,0.289603,0.222884,0.878129,0.345676,0.406708,0.398214,0.309983,0.826576,0.443947,0.457521,0.290841,0.994239,0.234534,0.559804,0.779011,0.149121,0.269857,0.52303,0.325452,0.87188,0.755742,0.68391,0.457138,0.331973,0.122858,0.446457,0.174401,0.0463723,0.794677,0.341929,0.127628,0.577883,0.0438839,0.626111,0.469244,0.152846,0.102681,0.775106,0.629117,0.725461,0.588435,0.0228237,0.324755,0.08492,0.089111,0.166707,0.856095,0.22362,0.0867913,0.512414,0.0912312,0.991496,0.957712,0.254544,0.183287,0.0795907,0.517672,0.380247,0.674864,0.954366,0.802887,0.112405,0.486829,0.146631,0.0879661,0.540092,|0.603635,0.0243272,0.240412,0.756252,0.370982,0.654228,0.743207,0.016418,0.00888932,0.189517,0.336351,0.134831,0.235084,0.4156,0.0911919,0.511713,0.868604,0.610491,0.24107,0.26829,0.101531,0.249752,0.719907,0.813619,0.867789,0.424848,0.276003,0.28425,0.822874,0.242761,0.0908376,0.531157,0.54243,0.514345,0.357197,0.0932149,0.0306376,0.237371,0.360083,0.885821,0.84423,0.230165,0.88169,0.0554578,0.0336062,0.13076,0.183523,0.394362,0.503824,0.224679,0.595643,0.734844,0.19026,0.0903582,0.927767,0.032908,0.562275,0.815488,0.53406,0.986159,0.909715,0.37777,0.527007,0.540655,0.635275,0.19348,0.313619,0.756684,0.66019,0.382524,0.410388,0.78161,0.875644,0.0402799,0.0816576,0.036294,0.95179,0.628818,0.406265,0.528164,0.994262,0.989733,0.651542,0.0490959,0.300051,0.816745,0.941349,0.957739,0.550022,0.300192,0.224122,0.492302,0.0639842,0.608037,0.316941,0.647873,0.384577,0.591033,0.306997,0.692092,0.291192,0.440599,0.411518,0.533549,0.859725,0.723007,0.777494,0.733804,0.177865,0.875822,0.0154107,0.7212,0.197403,0.443928,0.46448,0.540827,0.244639,0.656797,0.591795,0.968614,0.82498,0.37628,0.232625,0.630367,0.337981,0.25682,0.99156,0.817431,0.715717,0.760196,0.995183,0.297184,0.297474,0.853623,0.233979,0.200982,0.566251,0.61625,0.653102,0.198604,0.0862172,0.48278,0.298714,0.682833,0.0446286,0.487447,0.788954,0.388228,0.12212,0.517607,0.841266,0.146282,0.522362,0.0252909,0.851535,0.414189,0.0987557,0.00720698,0.355666,0.942053,0.416647,0.618117,0.926921,0.279763,0.070002,0.0208315,0.637007,0.661013,0.956044,0.400709,0.162908,0.828256,0.515763,0.743011,0.0982628,0.472407,0.711142,0.47228,0.134633,0.161776,0.304577,0.250471,0.426955,0.396353,0.412076,0.58669,0.55456,0.313837,0.499467,0.427592,0.132011,0.195176,0.973216,0.0335413,0.0281075,0.0910252,0.399641,0.114105,0.758811,0.666226,0.438442,0.467975,0.517619,0.657798,0.517749,0.375949,0.681304,0.678981,0.97333,0.843525,0.124604,0.425179,0.149353,0.844954,0.725488,0.317263,0.11407,0.43855,0.203283,0.899116,0.789012,0.471871,0.717082,0.456574,0.37848,0.903837,0.206632,0.733581,0.665222,0.0262163,0.141407,0.057314,0.872997,0.852717,0.0308512,0.345504,0.826402,0.619735,0.849009,0.477112,0.731156,0.52371,0.822637,0.331235,0.590719,0.466095,0.981285,0.059979,0.364641,0.149105,0.262557,0.446354,0.815576,0.853383,0.50994,0.0444255,0.560849,0.545691,0.400182,0.106043,0.26546,0.098472,0.322848,0.010188,0.501267,0.100615,0.190611,0.644245,0.092331,0.133214,0.910765,0.658776,0.412018,0.356648,0.148995,0.273975,0.667603,0.528444,0.297481,0.375149,0.12879,0.225542,0.774201,0.729274,0.138225,0.267798,0.657003,0.363665,0.135533,0.507967,0.592104,0.592812,0.852549,0.840404,0.913592,0.972843,0.869824,0.869949,0.350472,0.184419,0.416367,0.331393,0.252888,0.621238,0.703942,0.786944,0.900172,0.440931,0.952331,0.695075,0.155853,0.857071,0.935719,0.928808,0.434406,0.577864,0.796786,0.764898,0.212717,0.989469,0.291873,0.605728,0.543834,0.140703,0.418495,0.452364,0.76815,0.234372,0.669813,0.759111,0.754223,0.484118,0.32123,0.470429,0.796134,0.428799,0.866082,0.522919,0.157452,0.332295,0.930481,0.695161,0.825683,0.655057,0.101461,0.124323,0.496694,0.834136,0.279382,0.915841,0.0928375,0.257293,0.210828,0.911385,0.75672,0.237641,0.902756,0.502006,0.798422,0.500661,0.263515,0.401763,0.670718,0.83129,0.250101,0.684674,0.121811,0.389836,0.816086,0.359028,0.46449,0.356082,0.565298,0.26783,0.955436,0.362329,0.632031,0.352134,0.604583,0.13576,0.911396,0.143462,0.647435,0.941969,0.167958,0.903985,0.100839,0.0510588,0.653053,0.172322,0.557143,0.844177,0.811771,0.772455,0.973362,0.0123925,0.704692,0.130119,0.546883,0.631153,0.852373,0.253898,0.541258,0.182913,0.928904,0.799528,0.521215,0.30563,0.963037,0.749671,0.693971,0.123802,0.142602,0.811941,0.54328,0.248345,0.162974,0.247703,0.881821,0.169909,0.377562,0.571491,0.421678,0.287513,0.262696,0.384619,0.336149,0.642673,0.608772,0.946699,0.746766,0.583826,0.942386,0.580611,0.326721,0.695138,0.480414,0.704411,0.304899,0.58812,0.470029,0.254306,0.214511,0.886637,0.94754,0.587322,0.948909,0.72568,0.524795,0.401936,0.942873,0.237371,0.617704,0.841933,0.780259,0.879225,0.192092,0.00162756,0.80088,0.241385,0.34656,0.537952,0.592171,0.300935,0.52054,0.78192,0.0070824,0.0163293,0.744761,0.759009,0.347299,0.230865,0.75763,0.924917,0.21029,0.601952,0.957079,0.684373,0.583749,0.290837,0.605385,0.270626,0.700805,0.669037,0.689796,0.894677,0.864477,0.523035,0.355201,0.742667,0.492963,0.270396,0.174181,0.106983,0.531401,0.542532,0.508476,0.164093,0.02787,0.249914,0.294782,0.588821,0.116249,0.574966,0.68283,0.197689,0.507374,0.96133,0.160194,0.414901,0.31101,0.827424,0.257723,0.149928,0.720618,0.0845551,0.538871,0.897887,0.735919,0.962682,0.905959,0.932518,0.411366,0.629643,0.275532,0.958344,0.300269,0.63321,0.496018,0.13955,0.0674517,0.479084,0.908899,0.720743,0.599488,0.0461423,0.558522,0.947893,0.0368846,0.00372231,0.912233,0.0595897,0.433579,0.538554,0.776531,0.516706,0.784662,0.321483,0.782259,0.543819,0.610877,0.839909,0.794227,0.740321,0.770382,0.398345,0.516118,0.725006,0.20654,0.571155,0.115771,0.943593,0.848864,0.209776,0.646488,0.668285,0.622166,0.883553,0.924061,0.254554,0.765987,0.500743,0.975059,0.265146,0.826709,0.262509,0.789178,0.265715,0.661185,0.609119,0.875295,0.716384,0.0407376,0.119107,0.972418,0.886753,0.525435,0.266801,0.722546,0.51997,0.450649,0.840427,0.409582,0.467141,0.367842,0.275097,0.00261605,0.777035,0.465436,0.229544,0.364174,0.767395,0.471549,0.609062,0.283739,0.870042,0.123873,0.548798,0.715758,0.953555,0.252275,0.834905,0.114706,0.0125334,0.666427,0.114888,0.766114,0.15773,0.753385,0.0467623,0.513834,0.203709,0.545951,0.236424,0.455251,0.735086,0.0471916,0.348303,0.782409,0.904528,0.382385,0.772853,0.522299,0.752928,0.623577,0.912161,0.652934,0.467396,0.965302,0.386047,0.668459,0.423386,0.426558,0.909499,0.409347,0.387941,0.617695,0.611542,0.845304,0.929509,0.877939,0.678563,0.209213,0.0210702,0.0701786,0.930638,0.353967,0.199083,0.681715,0.0353953,0.0248854,0.590476,0.753251,0.637215,0.949336,0.719315,0.713704,0.497379,0.848542,0.273763,0.759544,0.837422,0.986718,0.510429,0.740035,0.339493,0.975391,0.785848,0.932503,0.166303,0.377591,0.319718,0.580687,0.150953,0.118182,0.657877,0.303499,0.336494,0.688497,0.512539,0.819436,0.531336,0.896165,0.258325,0.899084,0.946255,0.00408709,0.84691,0.188946,0.304842,0.787728,0.8443,0.262646,0.832031,0.126841,0.321859,0.327855,0.0678737,0.881861,0.614093,0.00610328,0.499761,0.448644,0.35298,0.661425,0.293288,0.127985,0.272793,0.108682,0.760416,0.989032,0.468576,0.430175,0.71391,0.436253,0.413019,0.142298,0.307567,0.903157,0.0998536,0.0654067,0.536441,0.54954,0.903441,0.102258,0.299373,0.206374,0.329629,0.397598,0.0978062,0.841064,0.300808,0.788965,0.489896,0.669894,0.17792,0.38089,0.229846,0.448388,0.598953,0.727969,0.27087,0.373085,0.140019,0.974959,0.821019,0.783058,0.418614,0.0575807,0.338765,0.993937,0.767933,0.790273,0.525947,0.243718,0.289872,0.573788,0.103686,0.442397,0.35263,0.621455,0.532903,0.548277,0.0353071,0.247799,0.221826,0.935671,0.618644,0.936144,0.730534,0.722363,0.520116,0.244492,0.188333,0.581311,0.271891,0.580792,0.629423,0.75052,0.487812,0.62346,0.0386152,0.588109,0.769895,0.492131,0.97783,0.270093,0.221712,0.199667,0.961455,0.225353,0.700899,0.334047,0.421326,0.439408,0.566899,0.477842,0.326309,0.65468,0.960237,0.791149,0.954026,0.535904,0.35023,0.672023,0.257914,0.586938,0.376024,0.0187382,0.834584,0.607841,0.980602,0.791994,0.554982,0.990249,0.309079,0.875141,0.87464,0.897383,0.399121,0.310971,0.968562,0.839295,0.585758,0.455426,0.926253,0.0799363,0.594478,0.551614,0.851342,0.303414,0.259615,0.15271,0.144096,0.819879,0.159069,0.962588,0.716841,0.221818,0.851154,0.160762,0.729648,0.511994,0.967324,0.030536,0.550057,0.489187,0.234448,0.68022,0.262424,0.97863,0.85743,0.356288,0.354669,0.744962,0.854971,0.233582,0.933477,0.637191,0.366556,0.392001,0.443304,0.0477781,0.654887,0.103931,0.644173,0.379741,0.334366,0.624224,0.643701,0.765372,0.749496,0.715594,0.224652,0.989911,0.166724,0.717729,0.740553,0.265917,0.192157,0.448059,0.910661,0.451943,0.905666,0.791689,0.971349,0.186952,0.432696,0.0798028,0.0660587,0.656336,0.190512,0.898395,0.633743,0.462812,0.097059,0.289053,0.808729,0.987283,0.822369,0.594991,0.289664,0.104054,0.176587,0.352031,0.0618406,0.5754,0.238061,0.788458,0.938744,0.17734,0.325187,0.0444649,0.764591,0.0849146,0.828932,0.890242,0.0833681,0.972393,0.377076,0.899534,0.66444,0.387072,0.374333,0.0228985,0.287839,0.405204,0.92482,0.235056,0.401813,0.123632,0.209996,0.0272009,0.932513,0.871331,0.453439,0.812923,0.120024,0.25067,0.957924,0.849781,0.635966,0.46646,0.88548,0.739148,0.594118,0.686637,0.289529,0.58744,0.0382414,0.889021,0.141091,0.781287,0.443291,0.38125,0.0393795,0.442164,0.9878,0.30622,0.478739,0.912581,0.223724,0.740951,0.279806,0.428653,0.151281,0.995433,0.210064,0.564711,0.933881,0.877244,0.196172,0.616506,0.97381,0.818454,0.0768762,0.290574,0.618765,0.701533,0.580536,0.1702,0.875021,0.128854,0.0277586,0.879204,0.642044,0.206111,0.568195,0.694243,0.629935,|0.703085,0.0245189,0.30456,0.556006,0.216957,0.943742,0.619078,0.911831,0.552924,0.176991,0.150255,0.502297,0.937769,0.954144,0.4613,0.231065,0.493042,0.241368,0.897654,0.444283,0.866751,0.517381,0.374856,0.0459095,0.591485,0.452584,0.529856,0.504655,0.752808,0.690019,0.22498,0.130712,0.233527,0.551874,0.632003,0.265445,0.918481,0.155438,0.978931,0.474377,0.74221,0.223093,0.813111,0.81968,0.511505,0.844409,0.182751,0.735385,0.420311,0.190865,0.574764,0.824543,0.30491,0.839154,0.70822,0.296977,0.326202,0.92527,7.56979e-05,0.0597183,0.342278,0.936614,0.532992,0.581324,0.751974,0.260324,0.4019,0.830746,0.0657148,0.587524,0.0829233,0.651149,0.0562832,0.638443,0.111241,0.712871,0.309632,0.337078,0.0782861,0.0359309,0.427492,0.792282,0.175262,0.820613,0.0516792,0.354046,0.807813,0.764042,0.963762,0.770529,0.557853,0.457854,0.988246,0.403647,0.0333002,0.508509,0.689589,0.888804,0.0241166,0.170618,0.633186,0.618631,0.326076,0.588517,0.00637388,0.555341,0.911053,0.11628,0.149215,0.246661,0.155838,0.262374,0.872036,0.0484939,0.69747,0.610169,0.446166,0.807925,0.111963,0.520152,0.534051,0.841763,0.885423,0.613721,0.934869,0.587543,0.755465,0.653835,0.907537,0.0335424,0.726048,0.0757055,0.0639893,0.992909,0.504318,0.374679,0.0139329,0.950386,0.304433,0.531169,0.589937,0.0860621,0.942137,0.197229,0.96872,0.137794,0.369248,0.282053,0.383191,0.796905,0.896024,0.305966,0.470255,0.330674,0.571449,0.0307503,0.55613,0.147688,0.42746,0.453682,0.112324,0.0522804,0.741095,0.155693,0.443687,0.786348,0.113229,0.699774,0.460223,0.278476,0.544426,0.0161918,0.730233,0.191694,0.768186,0.877303,0.223902,0.285305,0.681275,0.790095,0.270463,0.639107,0.814408,0.203681,0.988058,0.67516,0.199229,0.730174,0.144904,0.480631,0.409508,0.128163,0.740694,0.267382,0.517752,0.598267,0.659766,0.222089,0.650512,0.655475,0.484195,0.0662485,0.282814,0.203072,0.60323,0.516165,0.326382,0.122482,0.718884,0.331634,0.637735,0.199642,0.416879,0.818928,0.0719016,0.133914,0.817096,0.748398,0.591004,0.733865,0.691307,0.555778,0.245933,0.667472,0.163654,0.24386,0.543024,0.964961,0.924577,0.175096,0.648375,0.824555,0.669343,0.916167,0.191007,0.599607,0.960917,0.0269603,0.856078,0.696687,0.973489,0.425261,0.575314,0.161658,0.525064,0.145694,0.0935642,0.432007,0.935336,0.350009,0.747675,0.303184,0.727551,0.869993,0.525043,0.0282591,0.206532,0.6147,0.142081,0.244961,0.138524,0.44986,0.0935366,0.722213,0.632941,0.329626,0.168043,0.567175,0.303475,0.136937,0.704072,0.462327,0.944082,0.614284,0.878282,0.35579,0.742393,0.921979,0.896047,0.685694,0.855817,0.289741,0.397832,0.666237,0.898208,0.084343,0.620569,0.696316,0.772764,0.63511,0.580154,0.312982,0.448065,0.402759,0.0175817,0.775243,0.461699,0.0628372,0.545253,0.399781,0.0174839,0.600397,0.455324,0.523573,0.0812274,0.0349342,0.87604,0.112008,0.928912,0.588977,0.450226,0.0835693,0.779556,0.730297,0.695173,0.274931,0.722684,0.00971794,0.799151,0.592675,0.520472,0.601057,0.229336,0.853414,0.201309,0.561969,0.162339,0.940628,0.0881789,0.967399,0.604044,0.665034,0.826008,0.358292,0.614466,0.0327565,0.0919812,0.144624,0.402206,0.359881,0.280035,0.825876,0.18783,0.765167,0.996081,0.147913,0.726774,0.968995,0.100242,0.996697,0.931662,0.251594,0.453715,0.223454,0.292202,0.833215,0.0152021,0.183097,0.577823,0.471112,0.699806,0.704401,0.684008,0.110979,0.494948,0.170631,0.207661,0.645729,0.66076,0.239988,0.0733647,0.477276,0.185299,0.637544,0.830623,0.447658,0.968795,0.242153,0.200237,0.595555,0.119771,0.134824,0.696154,0.60996,0.132267,0.737455,0.21283,0.0574452,0.658228,0.424616,0.588689,0.00545919,0.842537,0.171309,0.004852,0.00808787,0.92189,0.689938,0.385248,0.73434,0.465522,0.199477,0.579529,0.71301,0.821899,0.803359,0.762655,0.698467,0.180905,0.729785,0.278338,0.469134,0.126129,0.810237,0.108696,0.560284,0.983914,0.842925,0.414582,0.142256,0.203324,0.403489,0.668926,0.642754,0.174429,0.205644,0.955406,0.767527,0.599945,0.124921,0.411874,0.016173,0.0605668,0.231863,0.432418,0.698264,0.319325,0.412501,0.165613,0.429162,0.525018,0.348325,0.56548,0.931016,0.0956353,0.33936,0.747098,0.160669,0.661714,0.404153,0.361431,0.113455,0.0522077,0.23918,0.537429,0.123051,0.736684,0.439385,0.386513,0.43786,0.94697,0.167229,0.511359,0.984806,0.237949,0.390616,0.212466,0.341526,0.0347682,0.283429,0.114004,0.973625,0.525679,0.933874,0.0564618,0.760123,0.319426,0.22295,0.848563,0.507902,0.45363,0.856923,0.161281,0.812469,0.843717,0.918964,0.0607803,0.530491,0.251027,0.237654,0.369263,0.654295,0.444753,0.193744,0.0447127,0.234935,0.572793,0.235724,0.406726,0.143632,0.240536,0.433641,0.218326,0.611638,0.69787,0.579523,0.199883,0.217695,0.743168,0.730253,0.272111,0.731088,0.163748,0.4575,0.670296,0.125678,0.59751,0.630689,0.0810085,0.975695,0.892402,0.912002,0.403378,0.116022,0.457153,0.730697,0.180299,0.858619,0.772533,0.184763,0.713484,0.544374,0.573509,0.933256,0.438032,0.285086,0.690441,0.833906,0.404218,0.472448,0.825635,0.803139,0.943013,0.119049,0.598542,0.187032,0.661658,0.559911,0.525213,0.874313,0.657379,0.421922,0.481761,0.122682,0.372523,0.175358,0.362414,0.655736,0.93624,0.442103,0.383315,0.897796,0.816264,0.649241,0.263727,0.430451,0.946788,0.784513,0.52987,0.734787,0.0104513,0.775128,0.499218,0.11048,0.363348,0.0543416,0.32202,0.0667017,0.552679,0.0861445,0.420054,0.965723,0.891169,0.330097,0.1279,0.349754,0.936491,0.541172,0.761478,0.0266198,0.843734,0.265835,0.290797,0.777811,0.740183,0.639437,0.566665,0.0747602,0.316037,0.182433,0.925896,0.398538,0.835893,0.0883361,0.243008,0.0140936,0.968906,0.42053,0.113104,0.514303,0.548567,0.468532,0.853218,0.287991,0.37038,0.984604,0.74078,0.917484,0.356153,0.429525,0.970824,0.92129,0.206087,0.687928,0.30893,0.496775,0.459569,0.951919,0.644721,0.391583,0.548633,0.821593,0.602097,0.125615,0.105738,0.958483,0.128598,0.461211,0.298367,0.272454,0.888117,0.470174,0.561234,0.269401,0.485806,0.0510517,0.714996,0.234188,0.66561,0.998351,0.497787,0.575153,0.507044,0.586541,0.398778,0.544279,0.569578,0.238873,0.798311,0.271811,0.378233,0.726626,0.78195,0.409154,0.293559,0.716114,0.174514,0.724142,0.91108,0.143165,0.923194,0.614494,0.0410919,0.560829,0.828311,0.790014,0.906895,0.251894,0.336329,0.903236,0.377432,0.187634,0.289714,0.688147,0.165942,0.852322,0.19063,0.336231,0.395027,0.735883,0.210172,0.269821,0.175595,0.383336,0.938577,0.452783,0.0361168,0.62832,0.63243,0.255383,0.747315,0.275966,0.127888,0.554239,0.207178,0.691363,0.196422,0.263974,0.524032,0.20292,0.452989,0.546148,0.996346,0.269168,0.366662,0.148364,0.200316,0.773112,0.279109,0.931214,0.952407,0.508614,0.653481,0.093523,0.766015,0.424034,0.845822,0.0798902,0.00777757,0.738678,0.294692,0.159328,0.429379,0.474481,0.255521,0.0685838,0.707503,0.357971,0.173587,0.124982,0.606879,0.721356,0.284426,0.984294,0.758376,0.977511,0.0395344,0.872981,0.221649,0.287819,0.837027,0.128869,0.683326,0.215877,0.14767,0.693049,0.251723,0.227863,0.989946,0.313838,0.0169128,0.331728,0.116761,0.588811,0.658735,0.701023,0.291721,0.320271,0.760869,0.619062,0.449386,0.423359,0.924513,0.352768,0.935959,0.929375,0.45841,0.107692,0.0884205,0.23341,0.842983,0.792032,0.404916,0.571862,0.416822,0.474934,0.375577,0.65392,0.0425349,0.859087,0.998982,0.723244,0.834906,0.312678,0.833222,0.125253,0.663932,0.602378,0.827646,0.00564325,0.140043,0.605193,0.171543,0.466072,0.100746,0.3533,0.113681,0.400457,0.598754,0.949311,0.262278,0.440165,0.183858,0.054562,0.0876588,0.243743,0.910075,0.153605,0.661938,0.807048,0.0865397,0.632119,0.857108,0.733415,0.070848,0.0453766,0.034112,0.748767,0.310812,0.605317,0.193216,0.397948,0.963609,0.207246,0.892552,0.135193,0.912866,0.123873,0.0138256,0.0665943,0.0661845,0.267912,0.277743,0.945738,0.739428,0.584073,0.792161,0.814335,0.558703,0.371353,0.572001,0.528326,0.521686,0.985202,0.0916725,0.721105,0.104876,0.278522,0.330272,0.92076,0.42424,0.119591,0.677219,0.322039,0.88619,0.69302,0.427428,0.894549,0.469594,0.163241,0.584605,0.537392,0.260655,0.404836,0.0136707,0.361186,0.679658,0.643725,0.957941,0.677303,0.503192,0.432605,0.477297,0.927765,0.936422,0.132664,0.0456886,0.261148,0.0189672,0.883781,0.759258,0.178462,0.963719,0.547897,0.779042,0.23543,0.471535,0.781876,0.41822,0.778836,0.655391,0.378172,0.404205,0.413403,0.33776,0.505851,0.669829,0.342695,0.449946,0.193867,0.970155,0.0130515,0.558786,0.800144,0.426117,0.770674,0.165283,0.197853,0.435276,0.594294,0.482196,0.007994,0.819527,0.196734,0.628271,0.776395,0.439475,0.983527,0.5453,0.577249,0.463628,0.17441,0.87762,0.541119,0.967995,0.115553,0.685593,0.901803,0.0248731,0.527015,0.0969688,0.366316,0.290742,0.216769,0.423343,0.698589,0.18991,0.130832,0.890362,0.567078,0.940872,0.367691,0.770183,0.0261841,0.853605,0.40082,0.901511,0.749882,0.118508,0.948428,0.927649,0.255093,0.595934,0.988729,0.380641,0.886111,0.320244,0.634521,0.732719,0.174564,0.0680018,0.218086,0.975749,0.699862,0.998508,0.332644,0.584955,0.757918,0.280052,0.185949,0.0360502,0.872254,0.563634,0.623961,0.145311,0.702265,0.30445,0.129404,0.520693,0.327087,0.634912,0.806573,0.581215,0.659173,0.647677,0.861008,0.498484,0.095273,0.826239,0.141298,|0.941656,0.30343,0.145889,0.189791,0.703139,0.306251,0.137196,0.819471,0.466401,0.489022,0.715327,0.204192,0.639554,0.456243,0.56968,0.461101,0.0753133,0.742191,0.8807,0.322175,0.202661,0.851874,0.117789,0.635579,0.342984,0.15657,0.754398,0.179466,0.297609,0.991585,0.021536,0.213032,0.0916046,0.913384,0.53477,0.164482,0.0355185,0.0218618,0.346405,0.84596,0.557124,0.369256,0.981965,0.245718,0.40504,0.555048,0.467062,0.903061,0.913127,0.262635,0.253625,0.63813,0.322868,0.55564,0.141214,0.534078,0.500084,0.115099,0.810604,0.410543,0.417692,0.144339,0.835047,0.176877,0.493959,0.969693,0.00533485,0.902842,0.395297,0.235289,0.582094,0.902846,0.0212805,0.848269,0.310859,0.405524,0.882682,0.19528,0.878392,0.0602483,0.853169,0.361722,0.929713,0.583014,0.952344,0.339351,0.258666,0.0729067,0.853043,0.55934,0.984015,0.917103,0.833558,0.717956,0.617309,0.412831,0.95029,0.65673,0.0974859,0.215466,0.716272,0.557822,0.370815,0.854788,0.70292,0.471582,0.745244,0.859716,0.0953019,0.827917,0.838624,0.148205,0.0552679,0.00710338,0.944079,0.542129,0.988793,0.159669,0.00791883,0.606363,0.230854,0.034783,0.176996,0.018243,0.539398,0.483599,0.88778,0.4155,0.0740682,0.544435,0.758026,0.216877,0.879951,0.772428,0.536051,0.190365,0.721381,0.655116,0.753017,0.594914,0.66009,0.012027,0.230208,0.168331,0.0938933,0.728667,0.764624,0.161729,0.0685661,0.408551,0.510467,0.400257,0.348041,0.803307,0.769781,0.0322345,0.128578,0.252291,0.184674,0.153706,0.620384,0.733173,0.725279,0.150209,0.0437847,0.168245,0.532074,0.615532,0.117953,0.0418896,0.349409,0.506521,0.614356,0.461043,0.168835,0.954374,0.860552,0.602985,0.885402,0.123161,0.738048,0.489903,0.5326,0.64642,0.0287646,0.537188,0.27551,0.0795724,0.46657,0.710404,0.769492,0.564079,0.285791,0.532422,0.186494,0.236475,0.638459,0.231526,0.595354,0.0856016,0.163606,0.45444,0.133831,0.0399547,0.810081,0.064607,0.247513,0.314483,0.931579,0.69425,0.170587,0.755844,0.616316,0.238434,0.918812,0.599965,0.246455,0.0478582,0.920894,0.628894,0.842199,0.023828,0.180668,0.854841,0.883133,0.387518,0.388573,0.179197,0.654911,0.0936576,0.325671,0.613036,0.42917,0.0982,0.322159,0.949806,0.632963,0.485618,0.386194,0.493869,0.181076,0.591453,0.182717,0.300641,0.723136,0.51648,0.314553,0.0636271,0.942554,0.92761,0.450373,0.841014,0.335423,0.142929,0.210726,0.84774,0.751972,0.54343,0.598023,0.336847,0.16177,0.39958,0.784907,0.790059,0.0349405,0.172517,0.956176,0.338097,0.239823,0.635533,0.128346,0.0743746,0.778065,0.766153,0.56232,0.151372,0.626308,0.598758,0.0143065,0.419945,0.368065,0.965292,0.0880498,0.210822,0.104475,0.621337,0.676823,0.790401,0.0359391,0.435624,0.680838,0.795799,0.546952,0.274854,0.717574,0.0866351,0.0272582,0.972607,0.56261,0.9608,0.38681,0.566727,0.932174,0.112829,0.843031,0.538275,0.704808,0.159774,0.751409,0.951606,0.507046,0.678039,0.11308,0.806822,0.440271,0.965587,0.593282,0.319826,0.550538,0.927091,0.227299,0.960441,0.444643,0.501144,0.768621,0.582633,0.241954,0.648724,0.787801,0.124804,0.857681,0.687923,0.477361,0.0672843,0.61266,0.875945,0.855784,0.942087,0.00698513,0.976416,0.738919,0.163899,0.0325146,0.729642,0.880087,0.350612,0.321032,0.810885,0.481016,0.959679,0.701536,0.15742,0.2694,0.894525,0.331035,0.896219,0.895739,0.479645,0.127525,0.015319,0.155942,0.779509,0.945201,0.439119,0.902283,0.45015,0.739249,0.0948448,0.256097,0.813631,0.789018,0.498229,0.111533,0.171668,0.888741,0.134806,0.787373,0.802021,0.163541,0.15935,0.68744,0.593875,0.638678,0.50196,0.352773,0.260393,0.463164,0.498709,0.971343,0.5471,0.83131,0.968486,0.743,0.920991,0.549958,0.806578,0.370807,0.764833,0.0753969,0.518366,0.714712,0.15146,0.248421,0.34768,0.374408,0.354441,0.841278,0.372083,0.526439,0.293709,0.856439,0.763622,0.770086,0.0789096,0.381527,0.517849,0.763652,0.226312,0.0754609,0.118216,0.244696,0.544694,0.532126,0.66123,0.521191,0.881275,0.0682707,0.132027,0.142427,0.645972,0.50521,0.414259,0.979331,0.502805,0.87163,0.650136,0.368226,0.60924,0.82762,0.535592,0.397498,0.00170386,0.064113,0.440042,0.823759,0.367674,0.915896,0.245073,0.765689,0.666896,0.158871,0.351465,0.678519,0.653821,0.623735,0.835028,0.577827,0.604351,0.0497335,0.662483,0.0815811,0.558855,0.701401,0.901823,0.312182,0.614679,0.454585,0.387154,0.372478,0.231134,0.276474,0.560903,0.669106,0.11667,0.890689,0.879086,0.0228658,0.895986,0.826042,0.833526,0.5609,0.286812,0.424034,0.642579,0.510499,0.54704,0.570881,0.990876,0.854613,0.270319,0.969436,0.502128,0.992735,0.447828,0.0735798,0.114192,0.124843,0.0717109,0.704479,0.26134,0.645819,0.0996226,0.000902593,0.76698,0.206057,0.193098,0.674465,0.322541,0.68816,0.274333,0.235853,0.724985,0.345674,0.30354,0.645405,0.959914,0.478303,0.215322,0.93358,0.902913,0.449317,0.556872,0.929004,0.496506,0.560127,0.00808877,0.511317,0.540614,0.386266,0.125892,0.85134,0.659425,0.451305,0.611646,0.146492,0.718941,0.269289,0.856762,0.97315,0.37347,0.536481,0.0994713,0.0888247,0.845053,0.554957,0.0797228,0.444768,0.187696,0.0970688,0.0632648,0.198051,0.540708,0.457124,0.950586,0.0815177,0.40895,0.625227,0.844874,0.0729094,0.886652,0.394906,0.045595,0.654535,0.316657,0.642817,0.443363,0.678803,0.184478,0.608666,0.944858,0.679059,0.878231,0.68973,0.109608,0.166243,0.520197,0.405012,0.524626,0.996167,0.809693,0.50667,0.621262,0.855402,0.26701,0.196929,0.80918,0.992019,0.418299,0.0442762,0.281889,0.389665,0.878957,0.763346,0.0216424,0.61856,0.987149,0.212052,0.0928773,0.772643,0.565465,0.313827,0.97423,0.283421,0.183464,0.637831,0.346733,0.315343,0.228772,0.209791,0.116276,0.997271,0.915269,0.265538,0.910303,0.693269,0.38001,0.0570441,0.854279,0.688761,0.797772,0.305604,0.217808,0.690848,0.444979,0.061941,0.98599,0.595388,0.594505,0.231798,0.471834,0.480068,0.94436,0.721085,0.148003,0.276988,0.444972,0.256405,0.258834,0.792673,0.508379,0.725475,0.311905,0.725511,0.946593,0.417554,0.524389,0.520062,0.0443026,0.932459,0.843282,0.629595,0.124309,0.167501,0.15439,0.669128,0.207383,0.134741,0.502437,0.820965,0.441869,0.0210538,0.457868,0.860254,0.891016,0.622108,0.329765,0.0441275,0.116406,0.575021,0.518083,0.322627,0.745901,0.348545,0.888693,0.405641,0.919988,0.590369,0.356326,0.428371,0.819123,0.516257,0.260975,0.0930532,0.910275,0.961129,0.693128,0.655621,0.426009,0.183963,0.895796,0.216435,0.510198,0.0271948,0.0135057,0.97657,0.735916,0.0371238,0.731847,0.137262,0.307088,0.910681,0.58264,0.403351,0.00472969,0.62698,0.143221,0.621822,0.399349,0.37926,0.0275763,0.38027,0.41518,0.861096,0.837266,0.777387,0.120194,0.640015,0.795375,0.206679,0.720879,0.588276,0.14545,0.909414,0.611918,0.484395,0.337115,0.85556,0.147323,0.348788,0.609443,0.262321,0.84103,0.32595,0.831246,0.571619,0.286278,0.371231,0.154173,0.107195,0.442643,0.486103,0.053917,0.548264,0.522204,0.198277,0.411719,0.976216,0.853839,0.58528,0.255174,0.422378,0.715675,0.184892,0.333966,0.0414335,0.831515,0.565582,0.590015,0.690621,0.905635,0.267069,0.798579,0.61025,0.396354,0.748998,0.161404,0.963154,0.415374,0.935161,0.659319,0.045323,0.123337,0.489486,0.466035,0.717691,0.935824,0.223359,0.742183,0.626895,0.638355,0.360475,0.0455084,0.916688,0.138294,0.563642,0.459456,0.80702,0.426234,0.819052,0.142006,0.153437,0.305971,0.429738,0.715612,0.154119,0.245993,0.296693,0.725484,0.210771,0.235345,0.301215,0.582973,0.168816,0.538325,0.534444,0.617339,0.704463,0.814091,0.30274,0.733831,0.75136,0.987601,0.966784,0.948167,0.512004,0.647617,0.0444396,0.699837,0.0698482,0.862558,0.401703,0.803873,0.477379,0.192458,0.244923,0.539345,0.221268,0.32279,0.407607,0.763063,0.961365,0.761511,0.639714,0.936078,0.198115,0.584064,0.515838,0.95246,0.595833,0.957658,0.273886,0.131832,0.844376,0.678901,0.354886,0.0794467,0.582689,0.141684,0.957253,0.331843,0.249161,0.240144,0.086952,0.634897,0.780453,0.698346,0.00356334,0.250684,0.640111,0.693148,0.370585,0.371931,0.637748,0.263247,0.243607,0.525333,0.0295069,0.682841,0.568075,0.352841,0.915488,0.0474979,0.507708,0.254754,0.532112,0.126041,0.0373501,0.0130064,0.278049,0.870276,0.714213,0.166536,0.994467,0.331181,0.801843,0.392768,0.569422,0.378619,0.88178,0.970023,0.546164,0.445172,0.260545,0.582972,0.155595,0.332101,0.871622,0.452294,0.391653,0.78298,0.741939,0.914535,0.0606037,0.663367,0.988416,0.363036,0.169422,0.441328,0.703262,0.254118,0.697884,0.691369,0.0511615,0.631419,0.432411,0.86889,0.853805,0.463483,0.0670291,0.408564,0.653441,0.0868812,0.383078,0.571364,0.345665,0.0689445,0.181655,0.121843,0.78866,0.565459,0.911379,0.376782,0.433879,0.312796,0.790773,0.970189,0.956871,0.81542,0.0152091,0.341079,0.00897461,0.509088,0.385687,0.842972,0.490243,0.131207,0.442517,0.558466,0.276951,0.789244,0.569374,0.688347,0.3714,0.109834,0.612218,0.638005,0.0342013,0.0167759,0.00737125,0.764686,0.0427417,0.559841,0.600611,0.335334,0.737398,0.608665,0.490323,0.535677,0.785038,0.300469,0.238819,0.136585,0.400463,0.176837,0.117814,0.587005,0.866451,0.351724,0.434255,0.699686,0.623881,0.0795491,0.71046,0.404165,0.25496,0.614445,0.768789,0.987594,0.480775,0.475141,0.802156,0.849872,0.492906,0.6344,0.325178,0.883014,0.835489,0.406807,0.291268,0.288659,|0.854684,0.458057,0.234818,0.836801,0.07876,0.532179,0.0167339,0.361514,0.953704,0.930831,0.415237,0.26834,0.323217,0.459153,0.938535,0.823481,0.0916626,0.586005,0.824377,0.970399,0.911011,0.533635,0.381749,0.367738,0.885809,0.138224,0.585961,0.0925372,0.623694,0.309908,0.0593762,0.785182,0.36782,0.643693,0.429407,0.522838,0.855968,0.166992,0.745945,0.981172,0.993695,0.598782,0.808778,0.914156,0.432234,0.647845,0.684215,0.631432,0.194054,0.648997,0.334446,0.588205,0.0152986,0.979724,0.141481,0.7085,0.881018,0.775987,0.585066,0.420231,0.474213,0.584007,0.232369,0.289395,0.448494,0.226982,0.174628,0.5404,0.517854,0.346769,0.654227,0.924119,0.333274,0.809764,0.436364,0.997151,0.411448,0.136233,0.0554042,0.807285,0.922592,0.164385,0.883457,0.396245,0.445444,0.428434,0.140525,0.306539,0.08689,0.358097,0.453619,0.0914038,0.100088,0.452441,0.00896263,0.335104,0.0145915,0.0679841,0.576153,0.468724,0.5499,0.266444,0.503558,0.245913,0.314007,0.380219,0.797188,0.787487,0.119541,0.412954,0.0702775,0.640471,0.140246,0.669573,0.459685,0.425238,0.861858,0.602965,0.41332,0.0857189,0.182008,0.53586,0.231712,0.0661787,0.295268,0.0986332,0.793356,0.778908,0.28503,0.81572,0.70994,0.5193,0.461908,0.660544,0.945183,0.851865,0.170331,0.646332,0.077213,0.0678693,0.182071,0.747323,0.505183,0.143958,0.00451565,0.310918,0.0188147,0.617519,0.671658,0.314937,0.384548,0.941987,0.333849,0.627403,0.286629,0.823606,0.38557,0.622198,0.471129,0.301054,0.0598302,0.404785,0.335065,0.838459,0.173932,0.207716,0.978195,0.864264,0.420124,0.126296,0.612145,0.309301,0.513137,0.0605911,0.387588,0.823169,0.493467,0.45489,0.716155,0.903173,0.688052,0.714035,0.00969505,0.199593,0.674056,0.952931,0.230537,0.998741,0.527661,0.163976,0.459533,0.237312,0.30287,0.774464,0.515041,0.58876,0.948737,0.187705,0.96591,0.679712,0.942544,0.477561,0.574977,0.893115,0.98598,0.920282,0.643348,0.182703,0.336305,0.292788,0.221698,0.117245,0.322981,0.981598,0.0789887,0.707144,0.884995,0.567823,0.373509,0.94465,0.487338,0.283937,0.742822,0.0290735,0.859187,0.679764,0.832959,0.284732,0.104511,0.564348,0.357866,0.0259575,0.134068,0.731365,0.299936,0.410964,0.488653,0.766547,0.736062,0.068913,0.0458583,0.939297,0.108704,0.465669,0.687059,0.796314,0.232876,0.507648,0.364727,0.472669,0.672237,0.00680059,0.475048,0.595008,0.0700017,0.174137,0.943074,0.0898741,0.663486,0.202893,0.0643468,0.0432065,0.605843,0.733774,0.0209933,0.858695,0.943924,0.0907741,0.64488,0.546161,0.655993,0.0987608,0.389556,0.208743,0.862692,0.528637,0.537734,0.555402,0.628976,0.660969,0.987382,0.705117,0.480516,0.65353,0.179175,0.866596,0.255265,0.102282,0.824588,0.34455,0.730819,0.194063,0.816706,0.0141325,0.464398,0.413405,0.611959,0.920226,0.469036,0.213006,0.688944,0.0596317,0.00237954,0.219154,0.562637,0.694555,0.793729,0.381128,0.111041,0.337527,0.523119,0.679131,0.446134,0.841949,0.238573,0.0250666,0.789508,0.946606,0.141776,0.811505,0.93781,0.392811,0.509366,0.130863,0.422603,0.32149,0.0514362,0.326406,0.0904087,0.930542,0.124989,0.356684,0.979435,0.203064,0.448297,0.779389,0.0071196,0.787055,0.162799,0.0774618,0.166332,0.416034,0.341952,0.738303,0.973079,0.330607,0.05412,0.898859,0.209764,0.0356142,0.283864,0.793685,0.256113,0.347088,0.80887,0.37895,0.144655,0.194403,0.622635,0.881483,0.0448996,0.842165,0.256263,0.365247,0.678099,0.91065,0.899607,0.520041,0.337933,0.0402027,0.0338909,0.770786,0.470746,0.685736,0.472304,0.419609,0.0428199,0.636695,0.335221,0.745877,0.18309,0.840122,0.908798,0.834932,0.231087,0.830667,0.903275,0.117751,0.0530142,0.0111908,0.153846,0.869466,0.480612,0.840321,0.465293,0.0274544,0.568136,0.165752,0.134235,0.208471,0.701178,0.225697,0.441811,0.416478,0.10241,0.141308,0.729201,0.706804,0.297262,0.833102,0.690472,0.591604,0.427949,0.723342,0.880873,0.676773,0.16581,0.0374737,0.634798,0.254684,0.97953,0.177524,0.627098,0.132005,0.172681,0.130357,0.269114,0.633053,0.101457,0.651807,0.697916,0.250268,0.890411,0.28497,0.893893,0.473873,0.0304302,0.374858,0.245869,0.933847,0.197191,0.705007,0.751131,0.777948,0.0540012,0.877568,0.248716,0.481191,0.925811,0.497939,0.206012,0.421786,0.00196189,0.992732,0.85475,0.154947,0.805457,0.251817,0.502121,0.453814,0.985186,0.960504,0.560088,0.758249,0.106118,0.603078,0.890223,0.56615,0.518703,0.586787,0.819534,0.651109,0.12788,0.957711,0.301079,0.778018,0.408434,0.316694,0.385891,0.457026,0.200316,0.724033,0.974736,0.322711,0.333908,0.235165,0.0419724,0.88192,0.772651,0.410152,0.143397,0.416679,0.832104,0.491785,0.306392,0.177528,0.743805,0.685063,0.250717,0.256436,0.270116,0.882261,0.853206,0.142129,0.704877,0.588219,0.436015,0.0820693,0.17738,0.628068,0.979751,0.507085,0.345623,0.0524178,0.40703,0.86984,0.929896,0.654727,0.59865,0.120227,0.577631,0.485433,0.0125263,0.686989,0.689377,0.170819,0.338906,0.648177,0.638122,0.313368,0.98416,0.68586,0.48455,0.172323,0.93038,0.720536,0.0239241,0.185979,0.0888896,0.486203,0.831554,0.207715,0.776017,0.70544,0.199437,0.653186,0.0019173,0.016353,0.117424,0.86346,0.150814,0.681905,0.127672,0.581186,0.430789,0.445836,0.572279,0.995555,0.121779,0.417125,0.102835,0.368422,0.131199,0.91277,0.751037,0.374866,0.476503,0.576852,0.620021,0.958188,0.525519,0.00904322,0.788885,0.495978,0.327558,0.445683,0.811826,0.318095,0.83105,0.859525,0.0423014,0.00280744,0.312385,0.404421,0.0875051,0.0255104,0.265007,0.0881329,0.946223,0.590252,0.618746,0.398484,0.181592,0.32124,0.848946,0.535918,0.774006,0.557116,0.393775,0.218924,0.601909,0.0206384,0.058746,0.159577,0.480054,0.754235,0.0606525,0.421326,0.676515,0.532458,0.342004,0.0606494,0.373389,0.165797,0.417448,0.976097,0.635249,0.100851,0.153794,0.11517,0.359247,0.00972372,0.141548,0.618189,0.725757,0.191446,0.299307,0.159972,0.386937,0.220719,0.959726,0.789132,0.214575,0.234259,0.0329813,0.427766,0.579919,0.748358,0.892941,0.165175,0.63922,0.0875614,0.0334446,0.857925,0.230081,0.445429,0.368507,0.414273,0.394103,0.171314,0.383305,0.303454,0.458498,0.918935,0.105307,0.729391,0.248254,0.123621,0.434906,0.995021,0.894262,0.828918,0.379416,0.576827,0.872022,0.723048,0.841733,0.876169,0.279696,0.302589,0.313104,0.255466,0.256642,0.869405,0.133517,0.57859,0.772589,0.553252,0.275939,0.586089,0.909575,0.440735,0.212939,0.610936,0.94252,0.438727,0.859169,0.318976,0.0808276,0.169808,0.9794,0.784637,0.993169,0.0573117,0.489735,0.995143,0.30818,0.476752,0.744881,0.692883,0.805197,0.370995,0.610815,0.099969,0.353204,0.537944,0.130107,0.982032,0.348548,0.710271,0.641121,0.0224457,0.707481,0.426532,0.963718,0.364879,0.812231,0.869026,0.0925646,0.62112,0.0751004,0.569938,0.660906,0.0760401,0.874243,0.902351,0.454437,0.912948,0.429718,0.204517,0.378475,0.437749,0.472242,0.625777,0.0771072,0.333168,0.759383,0.0642874,0.0748404,0.0324574,0.892545,0.465151,0.652294,0.514087,0.926662,0.342877,0.209103,0.282326,0.958493,0.456607,0.618904,0.929053,0.316735,0.659821,0.460285,0.282678,0.69108,0.426001,0.64919,0.398946,0.766436,0.683777,0.517359,0.947727,0.434214,0.376265,0.359238,0.578714,0.560819,0.834773,0.541348,0.254097,0.449973,0.695322,0.258155,0.93802,0.976234,0.433725,0.255346,0.682347,0.306184,0.253968,0.491146,0.545349,0.963955,0.16041,0.988939,0.0268888,0.70009,0.818729,0.0563442,0.802276,0.0134168,0.847695,0.368335,0.727314,0.0469695,0.60001,0.103213,0.201749,0.918969,0.550061,0.343765,0.473238,0.889268,0.861884,0.36132,0.723599,0.485244,0.247119,0.370642,0.405588,0.557393,0.245059,0.582167,0.864033,0.804112,0.393681,0.445677,0.834086,0.0427576,0.608179,0.279797,0.231329,0.691134,0.860743,0.935091,0.114677,0.956816,0.762065,0.124632,0.822893,0.761816,0.147509,0.482435,0.44871,0.856959,0.827644,0.937786,0.260454,0.134278,0.848452,0.425036,0.824585,0.981349,0.801526,0.504969,0.998174,0.080605,0.553473,0.0952232,0.730003,0.963281,0.0334941,0.249758,0.185536,0.364624,0.451123,0.00159174,0.458846,0.908309,0.092957,0.160959,0.0682876,0.214323,0.799155,0.710541,0.20486,0.805359,0.848704,0.0388831,0.352793,0.595,0.812037,0.0267835,0.0590181,0.623873,0.335517,0.946661,0.502023,0.469192,0.791356,0.255148,0.529083,0.462545,0.976979,0.0947536,0.00208575,0.0175943,0.341741,0.129421,0.361516,0.88518,0.0147882,0.971026,0.789867,0.939253,0.0258237,0.452173,0.0445015,0.851496,0.601601,0.298352,0.308451,0.879455,0.0250823,0.189796,0.751424,0.302161,0.751994,0.436273,0.206829,0.582673,0.684497,0.520329,0.56685,0.435095,0.194077,0.527937,0.277058,0.371726,0.42402,0.68291,0.533855,0.379809,0.306569,0.550202,0.779127,0.299822,0.31189,0.95098,0.330674,0.733365,0.338223,0.324032,0.275736,0.533211,0.509274,0.054947,0.424078,0.923924,0.260835,0.211348,0.320882,0.252753,0.456118,0.340554,0.738212,0.206158,0.771859,0.36827,0.515708,0.976646,0.841981,0.656633,0.228806,0.141682,0.0456484,0.795967,0.470809,0.797358,0.168949,0.475329,0.180565,0.15678,0.983654,0.100475,0.753578,0.429165,0.843834,0.222771,0.952172,0.0378857,0.832516,0.775532,0.260556,0.38354,0.845027,0.0838402,0.927837,0.950201,0.579567,0.848739,0.42906,0.797421,0.69934,0.72532,0.257226,0.446645,0.240147,0.0706679,0.142465,0.370197,0.182218,0.601976,0.38223,0.485628,0.604458,0.295995,0.845551,|0.32534,0.485025,0.260882,0.569569,0.848373,0.601553,0.887087,0.157372,0.019392,0.969845,0.446808,0.916323,0.307739,0.950253,0.00754732,0.626798,0.180546,0.110099,0.0849177,0.280864,0.367198,0.516764,0.181666,0.502436,0.929605,0.621374,0.464865,0.0842212,0.176429,0.0375185,0.493506,0.316083,0.279788,0.623029,0.893238,0.203322,0.0332246,0.431506,0.146067,0.3416,0.820264,0.0215054,0.703716,0.462815,0.595717,0.507568,0.303062,0.69548,0.280453,0.260405,0.00448537,0.432053,0.450863,0.811581,0.949281,0.608515,0.847925,0.33836,0.0732173,0.772245,0.672072,0.0654401,0.638553,0.483659,0.993964,0.302427,0.96324,0.476573,0.405414,0.386153,0.725638,0.0782678,0.635038,0.846943,0.486663,0.357033,0.163743,0.317744,0.885838,0.194205,0.101639,0.345966,0.301953,0.477182,0.120065,0.205527,0.777633,0.266035,0.909254,0.0398547,0.384147,0.18271,0.276291,0.94143,0.987938,0.185205,0.640802,0.945065,0.46577,0.0599433,0.880135,0.931571,0.447745,0.277275,0.16226,0.053948,0.362282,0.426871,0.083155,0.306564,0.892015,0.349857,0.0404433,0.840028,0.428863,0.357492,0.435299,0.357966,0.185172,0.106495,0.0455224,0.202123,0.477743,0.802383,0.27278,0.738744,0.606113,0.382441,0.458841,0.61343,0.244406,0.986805,0.377459,0.991093,0.868696,0.710618,0.435114,0.397368,0.749646,0.494827,0.0827922,0.758301,0.538144,0.866304,0.157276,0.272296,0.163897,0.607489,0.228407,0.680584,0.342658,0.680476,0.366981,0.490455,0.334337,0.826399,0.932018,0.388548,0.834325,0.145661,0.121065,0.339522,0.659123,0.0583948,0.628172,0.408479,0.736364,0.167043,0.817106,0.530444,0.082448,0.252063,0.481737,0.998616,0.184679,0.343332,0.967455,0.244379,0.0708902,0.892061,0.386937,0.230779,0.052862,0.849475,0.896721,0.833894,0.52118,0.196214,0.622567,0.581253,0.279911,0.986233,0.760606,0.993979,0.867681,0.603842,0.554177,0.538854,0.064813,0.461701,0.432859,0.401619,0.385293,0.134834,0.297834,0.780117,0.450234,0.261945,0.248453,0.529048,0.298199,0.100475,0.20701,0.657227,0.754722,0.275408,0.8136,0.260929,0.484401,0.29073,0.600906,0.801157,0.732962,0.907078,0.329228,0.151724,0.602501,0.216844,0.948073,0.271058,0.810377,0.183486,0.739823,0.696657,0.611598,0.403081,0.477851,0.931101,0.459001,0.868379,0.147449,0.244665,0.468296,0.926669,0.292879,0.732524,0.436831,0.64508,0.377922,0.459313,0.407967,0.722581,0.285701,0.297713,0.918727,0.487021,0.834075,0.0860121,0.557159,0.664905,0.186006,0.0576472,0.318618,0.63526,0.0202125,0.400372,0.334191,0.15721,0.0118851,0.815215,0.689917,0.741713,0.391407,0.458086,0.279624,0.393953,0.584697,0.504688,0.602237,0.290918,0.541489,0.291984,0.0334533,0.619693,0.188171,0.195856,0.976395,0.192227,0.389477,0.451802,0.78965,0.446943,0.489401,0.229998,0.490483,0.00364602,0.335925,0.518777,0.926279,0.572704,0.245305,0.833576,0.845328,0.590969,0.169167,0.628083,0.595848,0.486639,0.231059,0.908575,0.95736,0.0962853,0.818552,0.0906742,0.822647,0.25939,0.7902,0.667039,0.553588,0.120211,0.650912,0.497562,0.612081,0.300192,0.0883247,0.585396,0.389358,0.845684,0.570958,0.124771,0.91747,0.35984,0.585663,0.772092,0.853047,0.577689,0.556279,0.897879,0.319998,0.816922,0.316687,0.556458,0.327602,0.721686,0.245662,0.258264,0.927251,0.682754,0.555928,0.472497,0.748578,0.420208,0.540382,0.285166,0.941999,0.323317,0.00173992,0.423073,0.606407,0.247906,0.254198,0.355287,0.130665,0.461011,0.0142503,0.160558,0.273276,0.102849,0.457948,0.788454,0.148236,0.480078,0.079451,0.532449,0.681371,0.242395,0.599607,0.429152,0.275286,0.79287,0.332409,0.854967,0.424284,0.646078,0.618726,0.225679,0.475733,0.0101916,0.674238,0.504964,0.506412,0.127998,0.173314,0.533849,0.967691,0.381059,0.991133,0.723755,0.779832,0.669394,0.296326,0.774478,0.168406,0.574718,0.601221,0.34492,0.303094,0.616637,0.731392,0.335244,0.070782,0.673078,0.919482,0.793328,0.245626,0.0208816,0.121494,0.720119,0.202724,0.603753,0.764092,0.50982,0.231829,0.842983,0.382658,0.143345,0.182522,0.676552,0.438787,0.966188,0.997786,0.48674,0.329483,0.571685,0.657832,0.861956,0.527228,0.162259,0.504978,0.440578,0.206035,0.101332,0.895002,0.840861,0.24589,0.82102,0.0283784,0.769929,0.875808,0.867377,0.261925,0.510623,0.970407,0.343581,0.935542,0.794066,0.38468,0.769945,0.561264,0.449701,0.26706,0.156329,0.157804,0.499866,0.138595,0.234162,0.186371,0.252883,0.0756682,0.372139,0.175844,0.245629,0.137844,0.872882,0.57883,0.64459,0.189057,0.43053,0.617708,0.247671,0.990186,0.743239,0.0708464,0.886313,0.88752,0.734158,0.135849,0.839688,0.125684,0.70046,0.457751,0.622119,0.645273,0.383202,0.882444,0.322463,0.863616,0.910434,0.689369,0.0235652,0.655138,0.263843,0.517894,0.95662,0.403597,0.339499,0.0989313,0.362859,0.485745,0.483642,0.287117,0.465314,0.887296,0.617459,0.426785,0.565247,0.239249,0.33574,0.630643,0.146712,0.554422,0.710032,0.940354,0.00649548,0.851711,0.678086,0.368869,0.359,0.185218,0.102384,0.225408,0.673089,0.722779,0.80675,0.270933,0.454857,0.700952,0.551101,0.796749,0.252603,0.740579,0.862173,0.536813,0.354613,0.715162,0.819749,0.991539,0.346348,0.208577,0.336637,0.780085,0.677876,0.0571829,0.168744,0.289707,0.190644,0.629695,0.0591165,0.185397,0.400519,0.00154382,0.00656712,0.031476,0.345043,0.649306,0.502125,0.967767,0.378142,0.647294,0.820647,0.246054,0.497468,0.380005,0.089869,0.930196,0.889437,0.330603,0.175382,0.637614,0.756949,0.194412,0.519716,0.579416,0.961239,0.0661656,0.212258,0.711914,0.183618,0.853492,0.378476,0.310418,0.568125,0.719646,0.580429,0.765394,0.0419377,0.607229,0.311242,0.339922,0.47285,0.349076,0.551276,0.173251,0.827174,0.671423,0.00591433,0.950734,0.00652373,0.788964,0.909104,0.648643,0.432208,0.780381,0.789608,0.69409,0.741159,0.405937,0.177093,0.909267,0.153788,0.36657,0.570716,0.383211,0.301638,0.502224,0.323668,0.832708,0.0142704,0.697658,0.0802998,0.498783,0.779686,0.603895,0.630901,0.199848,0.919201,0.270406,0.925855,0.23251,0.39153,0.309173,0.0732365,0.236822,0.195766,0.28431,0.0235506,0.0689751,0.386983,0.574001,0.204831,0.540449,0.865389,0.343195,0.8721,0.467497,0.877372,0.160977,0.283981,0.432641,0.816391,0.0280007,0.463186,0.929157,0.907369,0.430723,0.960829,0.523486,0.468086,0.248609,0.210178,0.21577,0.293311,0.920831,0.704887,0.223722,0.599153,0.984041,0.30739,0.165664,0.0117245,0.824395,0.640405,0.707542,0.592696,0.237972,0.889962,0.078145,0.685547,0.618746,0.540254,0.0539737,0.579396,0.562181,0.863071,0.366035,0.0129462,0.000877142,0.547626,0.761682,0.841757,0.382941,0.766064,0.380187,0.237073,0.297345,0.892865,0.181051,0.384658,0.440503,0.16058,0.387602,0.000623226,0.792051,0.145759,0.9645,0.621482,0.269339,0.787146,0.724215,0.755507,0.595909,0.41691,0.613367,0.260435,0.48674,0.574137,0.0811076,0.833563,0.915156,0.683597,0.162563,0.117236,0.857754,0.596162,0.294529,0.329027,0.972885,0.729753,0.988914,0.644185,0.48904,0.43092,0.447113,0.72587,0.845878,0.911667,0.492426,0.764933,0.38309,0.0589184,0.700506,0.662179,0.424544,0.355396,0.114319,0.128578,0.133044,0.2399,0.878008,0.753921,0.142686,0.703476,0.445592,0.713263,0.78811,0.920672,0.29612,0.935144,0.954704,0.265615,0.91861,0.889797,0.4771,0.238592,0.395672,0.106676,0.306973,0.25146,0.823997,0.479344,0.615708,0.215678,0.45434,0.785958,0.0531654,0.962492,0.817345,0.669919,0.690189,0.981256,0.126503,0.221964,0.975064,0.673113,0.377636,0.453104,0.841956,0.828733,0.513281,0.0569457,0.369553,0.425179,0.112723,0.809484,0.595399,0.937121,0.937875,0.288485,0.980436,0.0482662,0.0874739,0.74137,0.389547,0.606983,0.112293,0.276866,0.497064,0.869498,0.828968,0.448209,0.182209,0.0606156,0.416737,0.430714,0.372095,0.683066,0.734838,0.538543,0.0355603,0.121625,0.673077,0.488061,0.631112,0.343142,0.863971,0.488941,0.0933769,0.320274,0.0801011,0.0606862,0.849039,0.806115,0.250195,0.445563,0.0393215,0.0848287,0.0172825,0.604537,0.854659,0.0370322,0.547751,0.216633,0.67649,0.512022,0.358223,0.295602,0.426125,0.181051,0.0238071,0.0538278,0.0260714,0.326718,0.645629,0.553746,0.210846,0.805983,0.0910543,0.587471,0.314363,0.31242,0.177186,0.127148,0.740871,0.970173,0.945117,0.913582,0.31473,0.513771,0.002895,0.983684,0.118524,0.844915,0.918972,0.265785,0.605862,0.493291,0.255573,0.991775,0.62886,0.454159,0.286258,0.430897,0.785234,0.927385,0.229935,0.058772,0.726543,0.697183,0.977862,0.988022,0.157534,0.623449,0.867582,0.348052,0.505211,0.565849,0.922631,0.661043,0.418043,0.354335,0.672794,0.206074,0.127737,0.0986508,0.504389,0.830837,0.709519,0.264642,0.664555,0.777617,0.685491,0.700487,0.581122,0.576601,0.897435,0.918274,0.299866,0.807966,0.546557,0.964233,0.708259,0.531165,0.191658,0.0619903,0.65381,0.569173,0.0142651,0.179486,0.735489,0.386988,0.0329177,0.132632,0.844107,0.211773,0.35904,0.029718,0.527125,0.823449,0.81075,0.868399,0.354693,0.0491875,0.420098,0.683454,0.0797381,0.766599,0.0596318,0.604732,0.811464,0.907878,0.101063,0.419047,0.414171,0.904893,0.98682,0.984623,0.408159,0.886293,0.437228,0.172647,0.80729,0.4946,0.195861,0.0615854,0.828118,0.873,0.204669,0.860988,0.100916,0.123458,0.8797,0.856196,0.451093,0.617429,0.158674,0.560215,0.237665,0.206382,0.625964,0.896859,0.637373,0.933708,0.582627,0.688618,0.82085,0.868792,0.272128,0.232738,0.321751,0.168512,|0.675918,0.0223784,0.915088,0.645549,0.462441,0.549577,0.0448872,0.722383,0.457914,0.642375,0.110219,0.523261,0.0109688,0.244141,0.702491,0.908104,0.547806,0.29486,0.0710918,0.851519,0.289313,0.351591,0.576584,0.59605,0.996111,0.25696,0.299645,0.00627935,0.677187,0.872338,0.935614,0.592963,0.222098,0.16911,0.822648,0.170412,0.896793,0.0347334,0.688338,0.933965,0.217298,0.889038,0.105176,0.751991,0.886001,0.0177622,0.767836,0.33057,0.399454,0.884049,0.904056,0.121625,0.802671,0.930251,0.558653,0.0372287,0.569435,0.405407,0.320436,0.812659,0.683309,0.378617,0.874994,0.908469,0.783256,0.798312,0.830682,0.42099,0.83959,0.550824,0.894537,0.298633,0.693906,0.192483,0.529809,0.204896,0.151634,0.65781,0.236357,0.90338,0.84314,0.745466,0.455401,0.990782,0.40701,0.761256,0.135608,0.229519,0.0107731,0.748104,0.933151,0.425926,0.198312,0.69564,0.756789,0.91229,0.593036,0.961958,0.329266,0.187884,0.712915,0.304606,0.39228,0.794323,0.303891,0.679607,0.594444,0.346514,0.0384675,0.66761,0.351157,0.388214,0.792434,0.377335,0.623835,0.529307,0.781064,0.730587,0.253882,0.62884,0.751657,0.983373,0.183314,0.408397,0.82716,0.264607,0.963087,0.495898,0.876416,0.725767,0.414416,0.334566,0.350258,0.138914,0.493281,0.733581,0.538223,0.987448,0.306567,0.706726,0.431359,0.459905,0.734065,0.0315197,0.458949,0.0339913,0.756965,0.407954,0.110677,0.0504826,0.146723,0.393251,0.790405,0.924403,0.232728,0.778057,0.894137,0.334867,0.636929,0.965955,0.286852,0.706645,0.282297,0.860832,0.244965,0.545311,0.973174,0.193276,0.876623,0.161954,0.514541,0.796761,0.864403,0.745122,0.130821,0.386671,0.777115,0.95385,0.836225,0.43953,0.0785679,0.67827,0.748074,0.189625,0.0615037,0.573326,0.941743,0.237974,0.529885,0.533299,0.579296,0.483983,0.117909,0.0445943,0.126624,0.570883,0.921574,0.947033,0.433015,0.55365,0.78188,0.519195,0.228136,0.38453,0.769512,0.877549,0.896635,0.139211,0.583054,0.844736,0.316664,0.658247,0.213964,0.622229,0.657011,0.791189,0.35603,0.212579,0.407835,0.845498,0.427014,0.948419,0.552311,0.949859,0.916027,0.431228,0.992758,0.780737,0.720766,0.093412,0.28462,0.445682,0.702548,0.784602,0.0186472,0.994208,0.414331,0.435746,0.657088,0.198742,0.774195,0.596484,0.0480767,0.359064,0.482271,0.773152,0.337057,0.168145,0.585375,0.912264,0.333047,0.494003,0.198957,0.56495,0.797752,0.203784,0.491783,0.457755,0.323247,0.451193,0.000417054,0.742108,0.204065,0.82491,0.350335,0.823175,0.551662,0.394843,0.770201,0.686153,0.542691,0.035781,0.302276,0.858319,0.0228931,0.949584,0.131413,0.183683,0.672575,0.463494,0.04445,0.000435531,0.390023,0.856746,0.0217672,0.798674,0.729518,0.357733,0.73331,0.876113,0.801197,0.237984,0.0831237,0.136793,0.860342,0.633959,0.143566,0.388698,0.663776,0.50551,0.0285882,0.530543,0.0243685,0.579393,0.00649428,0.781324,0.835078,0.570975,0.746227,0.635139,0.305249,0.180668,0.772041,0.242959,0.612666,0.910323,0.230346,0.570118,0.37476,0.683811,0.62752,0.527777,0.557662,0.935727,0.14147,0.721267,0.519192,0.138262,0.674347,0.606895,0.0763562,0.416893,0.0213726,0.398118,0.331873,0.522901,0.211824,0.0955292,0.750025,0.0103833,0.967311,0.159861,0.132621,0.138849,0.81287,0.396358,0.0728239,0.290927,0.834489,0.459571,0.280612,0.115948,0.78564,0.242042,0.357512,0.699342,0.684008,0.68687,0.295619,0.700911,0.319491,0.0956534,0.971832,0.392659,0.248116,0.335343,0.0404326,0.168186,0.204388,0.326596,0.66744,0.530001,0.748983,0.0497351,0.00676107,0.40813,0.0753977,0.156938,0.730366,0.706513,0.247329,0.801734,0.524903,0.846977,0.177161,0.228608,0.103591,0.330548,0.872238,0.143908,0.958316,0.224425,0.646639,0.110117,0.0145737,0.67503,0.559419,0.624804,0.097171,0.8948,0.483387,0.94543,0.385421,0.561999,0.0707012,0.349907,0.826059,0.934141,0.809064,0.227266,0.739475,0.0300841,0.265553,0.193183,0.541138,0.213937,0.504936,0.722053,0.252225,0.254861,0.60947,0.0590256,0.833948,0.454553,0.360514,0.461665,0.423211,0.777071,0.0376424,0.939108,0.848199,0.154532,0.942742,0.747611,0.147103,0.979649,0.939145,0.13811,0.804236,0.472057,0.383467,0.721323,0.125195,0.0538918,0.271299,0.882251,0.589842,0.302806,0.402606,0.140018,0.212014,0.537776,0.640836,0.301251,0.441372,0.205327,0.745165,0.446031,0.917027,0.949147,0.787379,0.416046,0.170486,0.923302,0.883322,0.209821,0.794109,0.759264,0.227717,0.460592,0.671692,0.0535948,0.082231,0.0403369,0.294878,0.382138,0.665294,0.905235,0.796545,0.858582,0.973345,0.731218,0.86046,0.248488,0.253506,0.532603,0.304819,0.955138,0.215081,0.875802,0.673807,0.514737,0.756363,0.883239,0.436682,0.890153,0.299704,0.973626,0.513233,0.818638,0.872479,0.122907,0.951838,0.508124,0.728155,0.848397,0.329855,0.178238,0.782788,0.362234,0.520777,0.693302,0.950047,0.626244,0.551192,0.570585,0.634819,0.141221,0.660266,0.440278,0.0139706,0.991108,0.346034,0.249744,0.767469,0.12732,0.241596,0.726155,0.580969,0.194645,0.934854,0.499748,0.761575,0.584584,0.359619,0.802657,0.143061,0.115477,0.0309163,0.188858,0.30548,0.539609,0.809398,0.688548,0.124181,0.0903239,0.466035,0.980715,0.537237,0.252803,0.208412,0.591518,0.506163,0.876698,0.866915,0.460493,0.21697,0.382412,0.10041,0.68069,0.58665,0.0749581,0.540873,0.250918,0.534733,0.13451,0.948388,0.206738,0.984049,0.0140681,0.0867386,0.925626,0.0386254,0.422005,0.156188,0.788093,0.829812,0.848222,0.538043,0.0301054,0.976601,0.231129,0.958859,0.273111,0.151053,0.220558,0.476299,0.834142,0.0613631,0.674861,0.845599,0.934065,0.420209,0.689649,0.889201,0.0750499,0.453246,0.351662,0.0311119,0.623335,0.119355,0.579632,0.552333,0.577805,0.829547,0.972116,0.141452,0.145496,0.925669,0.71259,0.93596,0.662694,0.901608,0.626953,0.153228,0.284352,0.934534,0.682473,0.00465029,0.261314,0.988685,0.155134,0.194978,0.497841,0.443185,0.472978,0.832623,0.603151,0.00880051,0.103537,0.801329,0.947785,0.905697,0.644188,0.882177,0.0514176,0.968738,0.0906597,0.714261,0.587439,0.711828,0.543843,0.408958,0.538949,0.466756,0.557701,0.796428,0.129534,0.201654,0.0531034,0.735792,0.765818,0.831251,0.0398111,0.653194,0.508426,0.382291,0.0562213,0.436239,0.268789,0.740135,0.469174,0.507281,0.624826,0.506757,0.534913,0.420433,0.0352892,0.538151,0.000109911,0.385683,0.334208,0.106168,0.88724,0.165002,0.121507,0.466173,0.620812,0.290712,0.657003,0.252353,0.139241,0.501041,0.848874,0.952907,0.348424,0.792252,0.0997439,0.958946,0.74656,0.638381,0.626429,0.705185,0.263342,0.745944,0.829609,0.587687,0.480593,0.482203,0.26079,0.567388,0.603647,0.110853,0.696913,0.749627,0.664815,0.358893,0.429912,0.585349,0.219064,0.356336,0.16238,0.578238,0.332778,0.69476,0.423127,0.289322,0.293625,0.980077,0.983129,0.896397,0.580688,0.526488,0.426927,0.673458,0.601717,0.189072,0.387288,0.272356,0.336235,0.704846,0.0600027,0.201105,0.497567,0.920902,0.88852,0.923703,0.0738156,0.582618,0.312059,0.531569,0.462594,0.872362,0.374172,0.877545,0.92798,0.298554,0.946817,0.0455507,0.111819,0.757083,0.519087,0.611296,0.713027,0.515921,0.444636,0.680039,0.522775,0.0982165,0.859887,0.919646,0.84685,0.795407,0.329397,0.783884,0.866484,0.474002,0.655913,0.970419,0.406935,0.0942317,0.351876,0.784259,0.795088,0.23418,0.773912,0.524677,0.334313,0.87943,0.980253,0.371359,0.585352,0.339554,0.749769,0.921221,0.730409,0.928573,0.645644,0.561116,0.515775,0.939729,0.671506,0.441145,0.165622,0.955406,0.962347,0.823532,0.333371,0.00435209,0.0281389,0.700848,0.988426,0.611043,0.914773,0.934838,0.421046,0.786571,0.547113,0.545965,0.366308,0.406556,0.396677,0.986306,0.834553,0.943052,0.16351,0.307377,0.408685,0.334871,0.0433789,0.467088,0.211012,0.480519,0.878717,0.749652,0.416848,0.251885,0.66317,0.171239,0.245377,0.225155,0.245853,0.576976,0.95468,0.99177,0.79203,0.994554,0.954906,0.262705,0.874514,0.7618,0.428905,0.892152,0.640947,0.806145,0.19631,0.216891,0.561662,0.116521,0.1111,0.0630305,0.902398,0.546982,0.832205,0.641636,0.82984,0.80396,0.324643,0.324352,0.053097,0.264447,0.436111,0.636355,0.807473,0.416783,0.0532331,0.83944,0.290811,0.983645,0.717262,0.024826,0.0949548,0.591197,0.218902,0.655213,0.677017,0.772614,0.394138,0.146776,0.68385,0.616215,0.954372,0.945206,0.875872,0.890345,0.770062,0.729274,0.553893,0.0603477,0.762368,0.203102,0.876332,0.217509,0.726304,0.448586,0.613515,0.939965,0.562967,0.614469,0.965202,0.781648,0.457449,0.295339,0.118743,0.462584,0.567405,0.897486,0.459851,0.95884,0.344078,0.90977,0.482453,0.631605,0.686459,0.518684,0.730381,0.509021,0.347038,0.964821,0.255509,0.108786,0.371768,0.966966,0.103901,0.463542,0.619881,0.689215,0.940231,0.521877,0.594965,0.738888,0.139658,0.586964,0.504663,0.919539,0.438342,0.941466,0.255156,0.621662,0.470075,0.102457,0.551068,0.0430817,0.90934,0.376134,0.793663,0.345789,0.143569,0.145584,0.897606,0.625335,0.322342,0.506185,0.697216,0.0548036,0.224062,0.881433,0.190323,0.604986,0.164262,0.423397,0.920575,0.156561,0.447655,0.00543916,0.013603,0.594171,0.771966,0.642864,0.541747,0.0360204,0.999486,0.276598,0.402447,0.210715,0.497552,0.877404,0.0921488,0.987966,0.56952,0.746794,0.247022,0.38432,0.579624,0.39436,0.150657,0.0475363,0.162267,0.0181509,0.159702,0.189738,0.272407,0.090749,0.290701,0.341763,0.431867,0.70275,0.622327,0.85518,0.326652,|0.19949,0.682306,0.498428,0.920028,0.855784,0.00392336,0.442461,0.000203133,0.359608,0.720428,0.751182,0.707204,0.349437,0.920469,0.997376,0.759895,0.0780985,0.735648,0.763513,0.129618,0.612004,0.0385836,0.862832,0.94517,0.447095,0.801325,0.31831,0.591544,0.0433031,0.531821,0.531029,0.161124,0.587733,0.369133,0.880849,0.431009,0.31129,0.126298,0.0963198,0.336679,0.837884,0.0360947,0.790829,0.276546,0.946656,0.380418,0.80301,0.203088,0.626643,0.311061,0.0263289,0.844159,0.852312,0.318079,0.746248,0.787562,0.656962,0.420955,0.204121,0.632819,0.206802,0.094566,0.112757,0.125618,0.297747,0.0410262,0.860231,0.583753,0.40112,0.436444,0.954976,0.047833,0.942469,0.620303,0.927066,0.137315,0.542672,0.0756521,0.688014,0.917649,0.292871,0.325581,0.129991,0.781829,0.257653,0.973013,0.748343,0.24408,0.241665,0.417577,0.0917057,0.924195,0.368924,0.541897,0.587682,0.189432,0.509202,0.422989,0.0876867,0.194295,0.272362,0.716577,0.696645,0.848673,0.838396,0.0998629,0.463427,0.288836,0.0821969,0.745491,0.649432,0.759695,0.883806,0.428576,0.850113,0.407439,0.762241,0.60689,0.497082,0.849422,0.146333,0.34431,0.875983,0.429145,0.0701954,0.34933,0.195199,0.778734,0.845266,0.738974,0.492574,0.957839,0.720104,0.846257,0.196345,0.284862,0.825839,0.737338,0.235509,0.751268,0.0688397,0.295121,0.0902783,0.183402,0.215616,0.753936,0.989649,0.593755,0.282256,0.767513,0.944815,0.0184864,0.397539,0.774099,0.410257,0.0129203,0.545595,0.0576966,0.741689,0.0931897,0.104764,0.976524,0.722953,0.13139,0.272108,0.386998,0.546905,0.242622,0.720539,0.437896,0.173438,0.325119,0.174139,0.0799859,0.958782,0.719659,0.0698234,0.798965,0.240004,0.918165,0.994326,0.0566726,0.19039,0.355829,0.826378,0.564799,0.761471,0.462985,0.431554,0.812072,0.924228,0.698738,0.692545,0.465536,0.304904,0.504462,0.518363,0.92261,0.460232,0.813836,0.752683,0.490199,0.500869,0.564809,0.880655,0.114111,0.581265,0.526461,0.317048,0.892566,0.509013,0.597514,0.668945,0.703934,0.314274,0.964995,0.625185,0.662081,0.210266,0.936232,0.449926,0.996534,0.561407,0.0296593,0.44269,0.345319,0.846937,0.298772,0.973942,0.992468,0.963285,0.226374,0.403717,0.310017,0.629532,0.00254571,0.226327,0.319032,0.756349,0.896762,0.141298,0.260035,0.699503,0.534254,0.0383534,0.416849,0.368181,0.370977,0.343249,0.289053,0.372788,0.198957,0.0781588,0.310545,0.7271,0.320518,0.381083,0.177291,0.914773,0.549606,0.758035,0.15776,0.141638,0.036037,0.30172,0.0253702,0.00590843,0.770692,0.510036,0.0666934,0.546556,0.342966,0.0397483,0.717535,0.243417,0.557129,0.455858,0.190726,0.494077,0.0965503,0.0286657,0.161084,0.413183,0.510849,0.152101,0.316752,0.275548,0.834057,0.0581537,0.698085,0.478869,0.799338,0.93807,0.896895,0.082499,0.391935,0.562934,0.763046,0.939639,0.16052,0.620778,0.231986,0.46322,0.396931,0.39999,0.0830861,0.700383,0.819214,0.271787,0.290914,0.235826,0.171122,0.916105,0.674191,0.075618,0.807591,0.178314,0.516572,0.793075,0.391144,0.557245,0.782852,0.728481,0.548753,0.707016,0.130663,0.453618,0.341046,0.243394,0.129102,0.205891,0.572067,0.34608,0.868016,0.879812,0.345742,0.236594,0.849881,0.454167,0.800076,0.222747,0.852568,0.0759665,0.191914,0.307467,0.997438,0.626615,0.794556,0.137495,0.792749,0.764467,0.767017,0.756784,0.391642,0.711788,0.164488,0.164745,0.12245,0.227108,0.358658,0.963987,0.232329,0.665743,0.66196,0.29948,0.841901,0.101127,0.835618,0.75793,0.176454,0.844816,0.295794,0.165894,0.500986,0.0424474,0.833497,0.912799,0.914845,0.316073,0.722229,0.589052,0.156111,0.330623,0.307313,0.662358,0.153931,0.77777,0.188891,0.359,0.848338,0.735933,0.565276,0.791647,0.247608,0.377778,0.198565,0.337964,0.809571,0.679643,0.556918,0.605589,0.165007,0.442696,0.44363,0.142777,0.963229,0.594394,0.852061,0.209656,0.0158815,0.329505,0.339471,0.122662,0.24086,0.00466198,0.622433,0.0925899,0.618429,0.580399,0.184492,0.901486,0.722179,0.751824,0.647138,0.203568,0.119919,0.397464,0.386181,0.0552119,0.641974,0.484596,0.0113658,0.50349,0.253255,0.912113,0.494713,0.986971,0.114646,0.800149,0.149812,0.32122,0.778733,0.470892,0.568169,0.789873,0.310162,0.0480994,0.458111,0.981745,0.813584,0.677101,0.85756,0.0761805,0.747996,0.777273,0.0348346,0.487576,0.0907931,0.611186,0.585107,0.827779,0.888098,0.925547,0.343452,0.755024,0.20133,0.576395,0.29095,0.505508,0.026086,0.562397,0.525085,0.504366,0.171585,0.652986,0.10841,0.942717,0.71216,0.482983,0.297221,0.733304,0.196054,0.404164,0.746759,0.472909,0.236405,0.664469,0.965876,0.397579,0.846371,0.141705,0.728152,0.352614,0.246765,0.30452,0.154367,0.261756,0.750308,0.966527,0.0448242,0.773244,0.184959,0.205017,0.891597,0.475604,0.514273,0.113261,0.724626,0.524586,0.1195,0.442043,0.114577,0.994434,0.593147,0.796819,0.114355,0.223971,0.0746419,0.951759,0.0849837,0.408326,0.822837,0.377998,0.0335169,0.339254,0.450716,0.971996,0.568382,0.0335565,0.616687,0.912186,0.734821,0.0122181,0.386617,0.260073,0.112434,0.567488,0.775211,0.576899,0.0960374,0.343657,0.608332,0.73038,0.908141,0.184949,0.164192,0.144571,0.542843,0.935493,0.292017,0.199285,0.38802,0.226773,0.682663,0.613366,0.678484,0.147531,0.5739,0.763472,0.0204347,0.266144,0.95054,0.335649,0.772744,0.0943439,0.426729,0.181872,0.464064,0.786016,0.553923,0.121896,0.0407621,0.878123,0.674269,0.585716,0.894142,0.331174,0.928069,0.626993,0.193876,0.357151,0.123759,0.62973,0.510386,0.0282277,0.421192,0.970494,0.728922,0.772571,0.973026,0.771986,0.752287,0.832171,0.950993,0.769099,0.452331,0.725786,0.321182,0.15808,0.162151,0.0779087,0.259743,0.77395,0.221509,0.55627,0.934893,0.598395,0.920022,0.586259,0.285519,0.349005,0.333835,0.66176,0.980576,0.184417,0.0693736,0.583778,0.867159,0.948421,0.545744,0.483526,0.842938,0.62198,0.592373,0.68129,0.901963,0.479331,0.119181,0.286137,0.342265,0.605769,0.40754,0.118487,0.261282,0.31251,0.192248,0.90585,0.896635,0.776326,0.365796,0.200474,0.344605,0.751284,0.156357,0.788536,0.848061,0.0371882,0.209696,0.874734,0.0177491,0.480542,0.865973,0.0544569,0.119409,0.856181,0.241156,0.935072,0.937455,0.21013,0.317461,0.380244,0.260482,0.239188,0.791685,0.913412,0.559141,0.166751,0.834393,0.276119,0.35247,0.839085,0.649022,0.0658337,0.688062,0.427316,0.286481,0.022948,0.99873,0.991593,0.639187,0.671508,0.862387,0.488938,0.889313,0.5081,0.753955,0.106858,0.912434,0.751189,0.801724,0.264969,0.71703,0.286173,0.632998,0.384798,0.687653,0.87824,0.509337,0.9551,0.947166,0.102747,0.72353,0.180806,0.618636,0.639465,0.728817,0.80719,0.216788,0.263347,0.440712,0.170127,0.839483,0.250901,0.53029,0.462877,0.81025,0.101917,0.774994,0.00599027,0.314528,0.0295952,0.820492,0.676208,0.35452,0.929176,0.501188,0.929254,0.991721,0.606773,0.531642,0.0701309,0.204087,0.00011766,0.514345,0.625198,0.998003,0.483315,0.281561,0.664319,0.382959,0.380529,0.17614,0.458682,0.221938,0.0625235,0.823053,0.705068,0.188197,0.311116,0.747964,0.882827,0.5571,0.931808,0.616191,0.760045,0.662702,0.769022,0.943818,0.563473,0.592918,0.694602,0.327343,0.0207636,0.365671,0.973809,0.846359,0.517287,0.315149,0.523083,0.319341,0.734166,0.144576,0.74359,0.269946,0.140561,0.0390871,0.208295,0.690516,0.500755,0.453907,0.928279,0.367461,0.345095,0.894398,0.15705,0.521528,0.912241,0.0714503,0.536191,0.0892577,0.0560412,0.522087,0.902016,0.962398,0.401246,0.496021,0.37617,0.825484,0.082827,0.79319,0.383269,0.53427,0.415853,0.670323,0.545881,0.22679,0.0522628,0.591317,0.696983,0.842922,0.893748,0.575095,0.0800563,0.984068,0.88621,0.0944071,0.03302,0.453952,0.360337,0.36107,0.484608,0.410415,0.0454631,0.507697,0.209635,0.978724,0.244262,0.911647,0.883326,0.266411,0.7304,0.0227461,0.934972,0.493984,0.614796,0.378822,0.31161,0.737953,0.570673,0.0201997,0.1232,0.907518,0.545093,0.351479,0.0643793,0.40946,0.512433,0.359175,0.400529,0.0582149,0.38598,0.945484,0.62508,0.419926,0.445044,0.159692,0.68678,0.771753,0.682111,0.249088,0.961055,0.387105,0.722675,0.167829,0.159991,0.91179,0.586662,0.7684,0.633393,0.142511,0.334076,0.72338,0.784669,0.296177,0.881433,0.795379,0.52314,0.933296,0.264659,0.204947,0.42729,0.42935,0.979534,0.32111,0.699556,0.249579,0.101629,0.236511,0.8937,0.175559,0.797751,0.848176,0.402348,0.979005,0.990073,0.900934,0.0810515,0.755467,0.613709,0.420086,0.0726053,0.701147,0.61903,0.236458,0.0168457,0.192052,0.872202,0.057245,0.419719,0.729188,0.621748,0.371162,0.745701,0.699791,0.729998,0.899581,0.154622,0.105941,0.360922,0.153543,0.458567,0.279228,0.466874,0.850377,0.14807,0.671168,0.0776389,0.792094,0.851674,0.193816,0.640774,0.970182,0.0717394,0.247333,0.112467,0.390082,0.0244609,0.392801,0.175019,0.692016,0.814763,0.449957,0.41502,0.377806,0.685228,0.522887,0.386323,0.999666,0.809614,0.351328,0.789012,0.0337845,0.622665,0.638535,0.899746,0.65466,0.345938,0.718921,0.856633,0.860229,0.28328,0.745902,0.558333,0.288714,0.302628,0.0166416,0.221383,0.519858,0.414479,0.837712,0.765009,0.404968,0.936841,0.266975,0.234031,0.380753,0.745807,0.35275,0.348202,0.818317,0.73146,0.481509,0.264202,0.845022,0.481578,0.384252,0.516044,0.521855,0.169119,0.0209751,0.733091,0.584921,0.439825,0.155649,0.348955,0.781473,0.714276,0.121802,0.302909,0.39121,|0.950671,0.985605,0.405197,0.0108059,0.291944,0.983617,0.361504,0.459296,0.147301,0.198752,0.791308,0.625677,0.256925,0.974601,0.513349,0.805093,0.325256,0.762208,0.68818,0.928367,0.830326,0.559899,0.329806,0.151207,0.527784,0.963324,0.900612,0.136076,0.173254,0.694285,0.952007,0.215731,0.765046,0.0920002,0.435986,0.527351,0.429749,0.842587,0.588462,0.442696,0.32852,0.138146,0.338852,0.8609,0.365465,0.25265,0.190437,0.472851,0.533907,0.237138,0.930395,0.345259,0.876807,0.409293,0.931235,0.553181,0.11703,0.0923811,0.0225793,0.202517,0.715099,0.422284,0.359818,0.154377,0.0173697,0.976003,0.97935,0.693153,0.37337,0.554268,0.342454,0.151769,0.20499,0.59514,0.294527,0.72414,0.395751,0.744663,0.201413,0.809533,0.826385,0.70752,0.224308,0.119031,0.565395,0.424244,0.857661,0.48092,0.797545,0.2121,0.845857,0.330936,0.401456,0.501471,0.0455562,0.583227,0.641814,0.282056,0.767209,0.574238,0.264324,0.123672,0.213663,0.793555,0.917028,0.845751,0.0170055,0.973577,0.164812,0.339332,0.997125,0.382471,0.026051,0.0802848,0.992516,0.478505,0.0423966,0.392241,0.390643,0.920051,0.793534,0.869815,0.771017,0.64167,0.430921,0.33585,0.608482,0.0324402,0.162522,0.0402561,0.254868,0.0167275,0.53312,0.0517719,0.519536,0.188231,0.351038,0.9705,0.781709,0.429884,0.658058,0.0466521,0.875042,0.616328,0.800227,0.0957347,0.104995,0.977509,0.926044,0.836888,0.357535,0.297116,0.86225,0.506974,0.318592,0.0805604,0.262896,0.107343,0.45601,0.545157,0.44662,0.773974,0.765431,0.903597,0.0561737,0.476533,0.205179,0.516617,0.860471,0.380877,0.67356,0.495199,0.869761,0.421926,0.507497,0.672384,0.279361,0.510607,0.022622,0.782734,0.0913941,0.109707,0.547123,0.876403,0.935517,0.985613,0.261528,0.811283,0.176895,0.0453168,0.997381,0.0958621,0.935094,0.318828,0.7862,0.388266,0.051238,0.30869,0.755137,0.0980167,0.683343,0.360273,0.0974826,0.983489,0.169621,0.777176,0.642803,0.277902,0.605276,0.689408,0.844547,0.272706,0.0510824,0.154017,0.7458,0.995911,0.967892,0.986499,0.958103,0.186816,0.364833,0.442496,0.820391,0.149938,0.140546,0.48909,0.328233,0.409588,0.144453,0.576098,0.122634,0.770258,0.553538,0.00547874,0.72807,0.209899,0.686252,0.920684,0.603587,0.117928,0.960395,0.446006,0.435155,0.200163,0.900706,0.880211,0.862048,0.696833,0.876478,0.128011,0.221482,0.161972,0.351406,0.104947,0.96981,0.143624,0.818233,0.503927,0.638907,0.657661,0.603863,0.40348,0.618793,0.385556,0.803627,0.268465,0.450706,0.857547,0.515348,0.369362,0.359584,0.143721,0.586138,0.381298,0.223897,0.364032,0.379898,0.421455,0.607389,0.0284739,0.132291,0.741992,0.0584729,0.150837,0.421795,0.285203,0.467594,0.114496,0.0697057,0.50069,0.415731,0.170762,0.219972,0.727539,0.468991,0.6305,0.493158,0.107255,0.964751,0.385538,0.993922,0.566222,0.374991,0.520513,0.833777,0.187974,0.0681257,0.391099,0.659254,0.841325,0.876766,0.347273,0.206004,0.835947,0.339422,0.198751,0.414589,0.325478,0.101642,0.107675,0.836085,0.421773,0.27658,0.169932,0.175979,0.996638,0.634428,0.522925,0.840603,0.996925,0.910349,0.556299,0.558738,0.473676,0.80292,0.52221,0.636486,0.431068,0.00742728,0.183698,0.206379,0.803145,0.0942822,0.810938,0.928871,0.205746,0.895121,0.0597261,0.3536,0.811214,0.385079,0.696093,0.355905,0.0766479,0.335143,0.425171,0.614296,0.728206,0.264541,0.871683,0.64846,0.505151,0.218277,0.931633,0.661667,0.0571733,0.0404038,0.972578,0.373391,0.639811,0.970992,0.224362,0.824166,0.33008,0.000219882,0.13029,0.13542,0.145158,0.230252,0.984339,0.0280671,0.794195,0.756906,0.0734419,0.775783,0.497068,0.193812,0.408294,0.213771,0.369285,0.112417,0.326826,0.455589,0.484566,0.155179,0.293912,0.0040834,0.0309396,0.160259,0.0248609,0.149212,0.787438,0.653847,0.216492,0.841736,0.294538,0.175873,0.883399,0.0310366,0.728224,0.373695,0.910484,0.958081,0.408714,0.98648,0.485355,0.683275,0.349144,0.632381,0.944943,0.827941,0.178914,0.879827,0.169096,0.135254,0.633232,0.937258,0.0680097,0.0113667,0.364227,0.467177,0.0456042,0.190651,0.568897,0.29106,0.949471,0.112573,0.938618,0.375329,0.641012,0.471035,0.703546,0.59336,0.027456,0.712679,0.163513,0.0714783,0.794634,0.407142,0.0147941,0.284183,0.471423,0.858905,0.104435,0.0410699,0.994537,0.799996,0.626732,0.318274,0.967527,0.355009,0.782733,0.360063,0.154174,0.528147,0.837714,0.929968,0.33057,0.00788879,0.49493,0.354051,0.213227,0.426854,0.70515,0.763484,0.376749,0.0616959,0.314297,0.305594,0.106673,0.68048,0.540121,0.98898,0.407026,0.143735,0.462721,0.233107,0.40175,0.334768,0.223778,0.52005,0.272711,0.929314,0.384104,0.573051,0.447746,0.38136,0.799581,0.632612,0.694753,0.563885,0.205942,0.420807,0.431168,0.274093,0.867574,0.672133,0.312315,0.569268,0.540747,0.573125,0.465249,0.568187,0.0614047,0.561443,0.272564,0.237986,0.540145,0.962766,0.942381,0.273228,0.190498,0.29205,0.174455,0.378777,0.379343,0.716677,0.522069,0.715334,0.561191,0.772917,0.151435,0.85564,0.701306,0.694818,0.767626,0.796011,0.684359,0.038386,0.23274,0.728744,0.389117,0.318839,0.666564,0.70221,0.778879,0.00425291,0.866004,0.566013,0.520996,0.284336,0.149148,0.728513,0.928726,0.422479,0.170539,0.393174,0.511986,0.690852,0.0429429,0.83595,0.498825,0.623046,0.218097,0.674192,0.656102,0.00387406,0.568996,0.341908,0.347987,0.844043,0.529291,0.919192,0.00300431,0.386487,0.661283,0.704999,0.311955,0.976612,0.794987,0.455816,0.609246,0.377887,0.1485,0.799353,0.63353,0.631015,0.916091,0.375707,0.957483,0.340204,0.542602,0.765705,0.764465,0.0574137,0.516256,0.955064,0.682386,0.316714,0.624815,0.188127,0.990748,0.228456,0.593987,0.489146,0.747631,0.123814,0.293659,0.157576,0.473468,0.778826,0.179948,0.383397,0.577417,0.487564,0.199135,0.867299,0.0129671,0.355684,0.0281955,0.789137,0.589714,0.48497,0.773422,0.390213,0.182519,0.857367,0.179626,0.518843,0.285642,0.512132,0.0926049,0.937233,0.391519,0.641976,0.643191,0.329446,0.0895493,0.809128,0.444251,0.191289,0.961344,0.861582,0.91437,0.180204,0.559548,0.94462,0.517428,0.0375094,0.0181938,0.814405,0.149612,0.960416,0.0719823,0.0298724,0.443342,0.527697,0.806366,0.986427,0.933882,0.367261,0.906868,0.518792,0.932159,0.210811,0.440885,0.936343,0.182043,0.360201,0.0970938,0.668502,0.812268,0.0846438,0.947388,0.342845,0.194488,0.665425,0.771903,0.12861,0.300599,0.211489,0.223323,0.534912,0.474571,0.401412,0.673892,0.511346,0.474482,0.387999,0.522148,0.463587,0.776833,0.449409,0.221127,0.230364,0.495038,0.284651,0.776528,0.664606,0.554172,0.476212,0.462243,0.550127,0.00904357,0.359171,0.185273,0.609619,0.0566244,0.772662,0.400523,0.0658695,0.213056,0.779741,0.719754,0.00788987,0.585504,0.657814,0.417867,0.640928,0.301718,0.263179,0.485038,0.502039,0.090151,0.115291,0.992212,0.307779,0.101641,0.86444,0.973514,0.0166056,0.552949,0.842128,0.0545765,0.313109,0.761908,0.233844,0.491224,0.358256,0.943872,0.884435,0.109608,0.358224,0.506639,0.267912,0.857985,0.00330955,0.0336351,0.317664,0.0403987,0.978938,0.449479,0.326573,0.397412,0.225968,0.105424,0.197068,0.843134,0.783771,0.0721173,0.52195,0.645712,0.992971,0.297428,0.232933,0.468845,0.336128,0.874416,0.0228239,0.352968,0.854334,0.324389,0.443066,0.999976,0.308973,0.548059,0.493988,0.0732477,0.845589,0.620373,0.277656,0.698358,0.0076921,0.47458,0.129805,0.401396,0.712036,0.934618,0.38567,0.489545,0.922818,0.312663,0.433723,0.144062,0.85074,0.85833,0.838281,0.00124282,0.670254,0.13925,0.977279,0.963135,0.744385,0.0818863,0.893731,0.309954,0.0867481,0.765775,0.0298737,0.898705,0.968059,0.460898,0.70635,0.851337,0.0829872,0.857071,0.348087,0.100536,0.467773,0.215684,0.533881,0.00874913,0.494586,0.946229,0.319684,0.279086,0.168907,0.474292,0.856946,0.748645,0.371299,0.98717,0.974775,0.0481504,0.00328898,0.257342,0.251146,0.382429,0.583311,0.344322,0.08381,0.611692,0.798424,0.435869,0.798984,0.106265,0.221978,0.931484,0.913642,0.325984,0.328897,0.780381,0.108116,0.651402,0.164688,0.877854,0.240077,0.971714,0.693106,0.900795,0.564384,0.215854,0.454595,0.091731,0.469794,0.388898,0.968597,0.961903,0.109187,0.804136,0.452625,0.255107,0.996527,0.662444,0.909357,0.476448,0.393258,0.0336627,0.256585,0.214364,0.0688859,0.88445,0.499592,0.286454,0.311936,0.723734,0.78962,0.685085,0.722676,0.0869776,0.565097,0.609465,0.674778,0.517939,0.408381,0.132296,0.430308,0.413429,0.34159,0.92151,0.594873,0.711837,0.538938,0.7637,0.012743,0.946405,0.0968369,0.495081,0.677972,0.322016,0.405347,0.930299,0.76493,0.700346,0.489807,0.514004,0.43838,0.72792,0.739228,0.275294,0.566534,0.537618,0.784042,0.0816149,0.462054,0.5159,0.143794,0.912663,0.93768,0.7025,0.689255,0.922432,0.407616,0.86862,0.199194,0.0997571,0.328921,0.526227,0.0139815,0.88475,0.358659,0.421103,0.987014,0.604322,0.269324,0.349644,0.730395,0.523775,0.802854,0.767158,0.923758,0.383606,0.518183,0.257707,0.812332,0.336295,0.864122,0.880878,0.470923,0.654606,0.243596,0.340635,0.348263,0.761566,0.530482,0.796496,0.544034,0.882335,0.231259,0.46815,0.22605,0.0464693,0.817542,0.445111,0.147484,0.230002,0.254242,0.207361,0.290971,0.534394,0.843074,0.773529,0.495322,0.472347,0.0246483,0.0103045,0.382876,0.732214,0.591516,0.586809,0.818411,0.624735,0.81855,0.662074,0.440999,0.696544,0.700258,0.300643,0.813251,0.321385,|0.0274664,0.426273,0.688032,0.235215,0.622499,0.991995,0.492057,0.314443,0.475149,0.714603,0.705389,0.027998,0.114626,0.107761,0.504556,0.885121,0.260611,0.133218,0.482812,0.811552,0.352944,0.22558,0.83801,0.852235,0.227511,0.63615,0.911392,0.410828,0.0250561,0.222319,0.0508682,0.0458561,0.782967,0.354903,0.951765,0.579713,0.36495,0.677254,0.545718,0.105867,0.329535,0.340758,0.819875,0.455578,0.411678,0.656172,0.7123,0.846488,0.486476,0.461632,0.661435,0.764144,0.287563,0.639054,0.658104,0.115947,0.63457,0.170376,0.797501,0.0165316,0.481201,0.358528,0.0776908,0.491347,0.921915,0.460531,0.0272871,0.758566,0.946572,0.0920742,0.48052,0.0635064,0.69066,0.553969,0.14121,0.233586,0.958691,0.794638,0.815456,0.189392,0.160409,0.58689,0.0768335,0.258775,0.587345,0.379955,0.284432,0.796521,0.687427,0.795147,0.828906,0.44287,0.640297,0.286292,0.668967,0.0643361,0.126074,0.558021,0.453435,0.138471,0.293859,0.525894,0.69756,0.445439,0.54689,0.434129,0.591082,0.442991,0.0927242,0.488424,0.158832,0.977795,0.604521,0.983379,0.415631,0.494393,0.51049,0.0969957,0.780804,0.892707,0.972914,0.73662,0.484202,0.0197954,0.249125,0.604738,0.344477,0.0907356,0.752598,0.414203,0.231538,0.49907,0.682031,0.206528,0.716795,0.561284,0.964811,0.47952,0.0584006,0.0605456,0.997649,0.438814,0.823986,0.556807,0.591057,0.680306,0.786746,0.173608,0.626929,0.22319,0.43675,0.123718,0.290888,0.617189,0.104964,0.529284,0.570138,0.14162,0.00581121,0.573136,0.668401,0.260685,0.614235,0.895658,0.982506,0.104738,0.140254,0.186202,0.393008,0.572448,0.338859,0.453284,0.914856,0.198355,0.0417882,0.441783,0.129095,0.554453,0.281606,0.389243,0.626685,0.78607,0.0937181,0.454131,0.601447,0.914951,0.526219,0.37797,0.400229,0.631796,0.749633,0.208861,0.869802,0.322492,0.692638,0.244348,0.767117,0.0494122,0.382084,0.714597,0.538605,0.844227,0.0646791,0.769155,0.272356,0.0459714,0.0582494,0.582145,0.729221,0.667347,0.453249,0.882114,0.462041,0.484712,0.482563,0.724922,0.747578,0.230764,0.614564,0.489293,0.980953,0.716095,0.463303,0.879497,0.74504,0.22584,0.379117,0.353902,0.107652,0.948394,0.0546564,0.785853,0.697465,0.884727,0.751209,0.224403,0.970231,0.430106,0.709957,0.370431,0.631185,0.0283715,0.0510674,0.297898,0.0682057,0.802863,0.714864,0.353245,0.468783,0.708187,0.44068,0.0272145,0.30552,0.853591,0.0509202,0.430638,0.00594139,0.683827,0.467725,0.459493,0.142671,0.519358,0.724928,0.387811,0.224848,0.597102,0.653199,0.107513,0.631665,0.545209,0.297869,0.870105,0.686039,0.172085,0.612246,0.432003,0.443432,0.449367,0.286244,0.169107,0.423304,0.178258,0.884627,0.603558,0.850071,0.211275,0.0593503,0.962968,0.0777165,0.66923,0.592104,0.0988677,0.789508,0.875049,0.889306,0.105139,0.509692,0.874247,0.23388,0.796721,0.923728,0.250641,0.66283,0.355979,0.309307,0.327518,0.00321287,0.0394617,0.573233,0.90761,0.703311,0.997164,0.778282,0.813256,0.60903,0.577191,0.150097,0.849638,0.458354,0.982029,0.491186,0.1523,0.689235,0.0653191,0.263245,0.981749,0.658822,0.923211,0.208016,0.641641,0.317036,0.859258,0.612256,0.873569,0.778501,0.305121,0.517094,0.61722,0.369647,0.476523,0.713454,0.97918,0.13536,0.119772,0.631027,0.954726,0.957147,0.189863,0.952312,0.38462,0.76193,0.0956656,0.22756,0.187707,0.228299,0.561557,0.146096,0.820887,0.151833,0.993261,0.390258,0.922011,0.522538,0.531521,0.0123475,0.982722,0.619085,0.9878,0.610706,0.529103,0.55129,0.900918,0.612811,0.0760471,0.071584,0.667749,0.638241,0.698228,0.337786,0.478806,0.831809,0.825613,0.51822,0.282907,0.0830818,0.177574,0.213638,0.0302325,0.157915,0.434323,0.402302,0.894085,0.611361,0.106136,0.99423,0.909704,0.644953,0.152505,0.543151,0.507298,0.953854,0.992243,0.153349,0.324334,0.152076,0.0689735,0.835761,0.430358,0.808203,0.244307,0.794682,0.0506163,0.588453,0.294501,0.0174447,0.664937,0.473396,0.81106,0.314658,0.712031,0.778206,0.962682,0.783177,0.0452064,0.399749,0.609976,0.829936,0.948666,0.854314,0.984622,0.678929,0.940415,0.728159,0.165523,0.273889,0.0984322,0.138731,0.0920638,0.141165,0.565646,0.0899693,0.635741,0.771087,0.26217,0.131285,0.735535,0.623616,0.396422,0.518419,0.505956,0.0427005,0.633614,0.931621,0.345864,0.795162,0.703283,0.302221,0.984824,0.106852,0.0574353,0.292541,0.617662,0.93933,0.79473,0.161854,0.224367,0.717246,0.492662,0.74868,0.102325,0.17707,0.12832,0.670531,0.419142,0.790955,0.054613,0.2202,0.866178,0.676715,0.302554,0.274401,0.716385,0.995714,0.0365275,0.101532,0.782501,0.813853,0.536619,0.141212,0.817,0.0443075,0.513084,0.194149,0.521521,0.0654372,0.670883,0.398004,0.787089,0.10771,0.976688,0.421169,0.496989,0.151757,0.390838,0.597707,0.912133,0.558762,0.626569,0.996177,0.257692,0.917706,0.756042,0.669765,0.0294628,0.716903,0.593405,0.767742,0.055829,0.91992,0.276761,0.904698,0.29763,0.3918,0.952026,0.939007,0.946437,0.0905625,0.196802,0.564451,0.729472,0.487933,0.875926,0.646662,0.0100279,0.824321,0.465459,0.259204,0.155578,0.562106,0.234139,0.232462,0.488488,0.842295,0.843563,0.938074,0.625031,0.328299,0.56704,0.342525,0.864349,0.478345,0.351515,0.357283,0.393373,0.767253,0.709639,0.14903,0.495944,0.531865,0.582786,0.144069,0.764757,0.246733,0.323039,0.467917,0.470174,0.263823,0.472184,0.978347,0.858009,0.315928,0.739088,0.673164,0.501773,0.659615,0.352141,0.250319,0.498656,0.405401,0.0484968,0.0038681,0.185655,0.539475,0.388849,0.0806859,0.584303,0.599923,0.10407,0.0379955,0.476099,0.818882,0.560712,0.870578,0.0050323,0.665013,0.872107,0.255013,0.610119,0.727319,0.564346,0.847506,0.071166,0.735046,0.879059,0.900945,0.201872,0.246571,0.714703,0.447468,0.80263,0.251221,0.127292,0.0586672,0.124863,0.333256,0.533822,0.90199,0.796209,0.0521712,0.0721142,0.383967,0.652766,0.26676,0.59563,0.936612,0.0590298,0.502221,0.817017,0.611335,0.85272,0.8414,0.95802,0.914628,0.796664,0.485711,0.206832,0.148333,0.552285,0.732701,0.625104,0.639116,0.147833,0.100553,0.755315,0.890963,0.566247,0.0742816,0.842824,0.509494,0.701994,0.525291,0.463608,0.921363,0.571549,0.729197,0.106866,0.691583,0.272798,0.837823,0.201068,0.725278,0.223781,0.806706,0.275391,0.889808,0.188253,0.467221,0.613153,0.45502,0.575533,0.513808,0.349429,0.0692975,0.638115,0.257321,0.549162,0.769376,0.626986,0.617217,0.858754,0.197842,0.87012,0.756206,0.0207353,0.862848,0.719595,0.934406,0.475585,0.546107,0.233676,0.658057,0.000469923,0.745687,0.350016,0.405798,0.0809676,0.906876,0.144026,0.203675,0.981721,0.461996,0.516347,0.227878,0.38157,0.0977476,0.917931,0.142997,0.603507,0.263491,0.193859,0.0116158,0.447288,0.985903,0.302836,0.512836,0.317829,0.95255,0.201958,0.915944,0.902945,0.168284,0.0608884,0.173181,0.726067,0.400685,0.403729,0.416963,0.839188,0.339445,0.27621,0.0581898,0.546391,0.779901,0.201249,0.952051,0.756857,0.0339048,0.434772,0.946795,0.128674,0.463167,0.571103,0.809518,0.229604,0.222454,0.438011,0.973827,0.217607,0.787779,0.4951,0.901799,0.458084,0.456065,0.27394,0.699753,0.302932,0.332462,0.895754,0.434445,0.756662,0.748556,0.160608,0.0162095,0.124664,0.744368,0.658911,0.835388,0.138368,0.843877,0.489462,0.273854,0.690355,0.761874,0.37058,0.36851,0.840024,0.835523,0.633783,0.293712,0.819245,0.523116,0.220684,0.0196983,0.444601,0.585071,0.760147,0.125751,0.177229,0.116139,0.0519525,0.453384,0.328845,0.0844002,0.522542,0.00356025,0.646257,0.421617,0.0344215,0.380676,0.558197,0.895656,0.28588,0.742514,0.328266,0.332831,0.138959,0.866276,0.165557,0.32025,0.0884506,0.145786,0.81019,0.48924,0.71798,0.340934,0.618731,0.754151,0.707132,0.633241,0.678006,0.545438,0.779377,0.431325,0.776073,0.191124,0.437865,0.549464,0.165243,0.63562,0.469194,0.740148,0.577737,0.497338,0.0212207,0.0749775,0.152303,0.521425,0.881311,0.955824,0.50074,0.441415,0.86238,0.313857,0.255122,0.132798,0.789367,0.548688,0.387227,0.162972,0.94632,0.132964,0.257729,0.628099,0.616555,0.702398,0.54365,0.787809,0.326774,0.788234,0.953548,0.683634,0.241198,0.3288,0.244468,0.361384,0.641907,0.12609,0.430375,0.831363,0.0570852,0.528754,0.719698,0.0950109,0.82844,0.652602,0.304228,0.00560892,0.3396,0.591561,0.862762,0.410293,0.751327,0.820326,0.179825,0.184518,0.570452,0.0740424,0.825809,0.806917,0.947939,0.940125,0.332504,0.198716,0.4854,0.048089,0.291667,0.324085,0.805147,0.426595,0.822816,0.0174003,0.867083,0.997083,0.114669,0.953265,0.896941,0.589423,0.0233836,0.625051,0.452239,0.592938,0.45286,0.45264,0.207549,0.0425583,0.630768,0.433332,0.243758,0.974221,0.596507,0.720728,0.966433,0.749709,0.121187,0.0537512,0.109412,0.346817,0.445503,0.428706,0.534818,0.986431,0.947805,0.367789,0.322896,0.00266272,0.552098,0.290405,0.0639054,0.84613,0.187452,0.0407717,0.47254,0.41983,0.290741,0.0544328,0.0693157,0.515675,0.145617,0.655366,0.646971,0.030483,0.702792,0.599922,0.419194,0.358043,0.587287,0.914943,0.960672,0.190232,0.91484,0.974545,0.893766,0.450538,0.300302,0.974483,0.89777,0.126285,0.470926,0.274321,0.971123,0.71746,0.955378,0.952163,0.491382,0.0964419,0.316168,0.556537,0.55957,0.93059,0.291773,0.729475,0.24652,0.679523,0.999267,0.427763,0.591156,0.941612,0.0499376,0.871956,0.652792,0.377333,0.388013,0.930883,0.508865,0.00454617,0.115465,0.463534,0.199412,0.861085,0.47963,|0.679055,0.060226,0.171429,0.465315,0.407799,0.708308,0.238676,0.257225,0.411377,0.135941,0.595037,0.830646,0.508774,0.979395,0.0270948,0.143637,0.46003,0.486464,0.274598,0.0786025,0.677633,0.685836,0.342044,0.59018,0.0251037,0.186935,0.451349,0.7755,0.976511,0.0384499,0.317417,0.179633,0.856979,0.208329,0.848542,0.491475,0.0617576,0.473632,0.558463,0.346895,0.505904,0.865965,0.413618,0.152895,0.355736,0.00492293,0.600237,0.540898,0.123063,0.0629755,0.338114,0.292538,0.543947,0.0884978,0.404752,0.968996,0.200034,0.781665,0.298614,0.638212,0.755701,0.694535,0.156675,0.92902,0.356192,0.113049,0.444018,0.350092,0.197462,0.315512,0.110052,0.0910454,0.196125,0.250941,0.900534,0.89693,0.732699,0.655468,0.25469,0.0811721,0.402785,0.67834,0.447876,0.553564,0.93677,0.628906,0.735741,0.78007,0.53307,0.393959,0.876788,0.58827,0.767803,0.770664,0.763906,0.0714834,0.937083,0.413956,0.541227,0.175008,0.0525466,0.264374,0.270641,0.198242,0.162668,0.971123,0.98969,0.208795,0.709515,0.701544,0.410658,0.862379,0.301283,0.852722,0.638965,0.327402,0.721994,0.33772,0.377704,0.0559741,0.569069,0.883248,0.33732,0.837176,0.245828,0.394039,0.182114,0.892843,0.702171,0.776977,0.683882,0.220664,0.821766,0.0688158,0.0870755,0.127015,0.304578,0.887706,0.474934,0.0175721,0.450635,0.424041,0.79885,0.789069,0.29177,0.143741,0.483234,0.217913,0.853494,0.913007,0.318345,0.213399,0.215623,0.807097,0.684936,0.614516,0.544821,0.282532,0.886842,0.970838,0.294676,0.964015,0.550419,0.507772,0.83958,0.429991,0.0417683,0.0649513,0.539563,0.569189,0.562002,0.73204,0.0852962,0.753742,0.998926,0.972053,0.0996473,0.234216,0.806776,0.385657,0.583684,0.770043,0.211125,0.648007,0.178414,0.144892,0.121387,0.145276,0.725624,0.0864232,0.517778,0.993735,0.599444,0.704292,0.396883,0.29566,0.0630991,0.852017,0.746634,0.380532,0.840454,0.502467,0.801344,0.180183,0.603151,0.479525,0.280577,0.418072,0.18778,0.635065,0.375271,0.368724,0.622686,0.567583,0.0276293,0.0898792,0.874586,0.978971,0.674444,0.524832,0.379451,0.993847,0.647905,0.186192,0.121601,0.691698,0.657628,0.905528,0.785115,0.823366,0.339524,0.825887,0.929237,0.733088,0.0904521,0.0239546,0.747314,0.880588,0.0859214,0.92818,0.378108,0.0290922,0.412351,0.0527627,0.774328,0.326006,0.537134,0.41641,0.0706628,0.487973,0.827822,0.265268,0.572845,0.252495,0.722999,0.876847,0.87133,0.989927,0.808179,0.279231,0.313799,0.723201,0.635924,0.950585,0.496167,0.0854969,0.836225,0.724302,0.497096,0.310444,0.843388,0.185923,0.823944,0.411819,0.68873,0.159506,0.0557222,0.475817,0.603047,0.905276,0.0873091,0.304186,0.551677,0.643148,0.0343058,0.638122,0.754523,0.580486,0.330676,0.138004,0.957376,0.625845,0.069686,0.776165,0.350803,0.433651,0.195777,0.670089,0.378446,0.541161,0.591683,0.938964,0.280321,0.112649,0.523935,0.929279,0.608453,0.437447,0.263461,0.390191,0.699287,0.46804,0.797379,0.335877,0.895861,0.469878,0.624464,0.179396,0.65348,0.699911,0.758225,0.103134,0.414507,0.603813,0.266491,0.343228,0.961353,0.642666,0.716355,0.590587,0.562309,0.883455,0.976762,0.265229,0.735687,0.912254,0.452692,0.266008,0.201833,0.837046,0.728546,0.815156,0.423986,0.656572,0.553863,0.738864,0.202256,0.188061,0.810562,0.562133,0.0758392,0.463107,0.0503158,0.0533174,0.501955,0.295354,0.193434,0.080042,0.891659,0.507505,0.117698,0.87413,0.148417,0.312971,0.420543,0.19388,0.50259,0.562232,0.142999,0.944023,0.609311,0.82907,0.815341,0.238084,0.653777,0.0557983,0.126396,0.778866,0.747553,0.427351,0.641088,0.0727891,0.818884,0.75605,0.867062,0.205288,0.0111306,0.0235173,0.247439,0.682386,0.805776,0.908946,0.71506,0.25295,0.355269,0.305323,0.917282,0.750614,0.779064,0.149419,0.254039,0.766728,0.92969,0.0314288,0.921405,0.80406,0.523899,0.524953,0.239496,0.0512802,0.795559,0.572026,0.278499,0.756883,0.593592,0.186957,0.349139,0.147733,0.314457,0.426439,0.0892631,0.344273,0.370367,0.194527,0.88913,0.532701,0.416421,0.354805,0.94601,0.315445,0.321526,0.280259,0.708077,0.276845,0.452341,0.0377375,0.455983,0.0421977,0.919356,0.42947,0.119017,0.176302,0.539889,0.622468,0.391838,0.785925,0.827182,0.431743,0.515007,0.13455,0.488604,0.194386,0.101374,0.363331,0.373428,0.0205737,0.370575,0.281806,0.178613,0.237374,0.0293763,0.411132,0.121662,0.525372,0.115776,0.426376,0.81595,0.963786,0.143209,0.126783,0.274807,0.269538,0.153463,0.00965399,0.160673,0.586437,0.680331,0.839155,0.989656,0.213682,0.739161,0.966651,0.0460317,0.547157,0.822921,0.963643,0.672651,0.0563328,0.0582166,0.191783,0.471924,0.891965,0.210938,0.693002,0.905286,0.813427,0.494025,0.840508,0.144055,0.526277,0.801329,0.451045,0.468061,0.603209,0.447241,0.503044,0.192264,0.321765,0.990731,0.846343,0.346399,0.373508,0.97469,0.298302,0.810405,0.717408,0.424214,0.988899,0.318933,0.18487,0.809597,0.821218,0.0572602,0.974488,0.57397,0.339775,0.426201,0.859775,0.941774,0.795211,0.35031,0.296978,0.0809886,0.618889,0.125922,0.885439,0.318056,0.97662,0.79097,0.173814,0.870163,0.924836,0.9477,0.617946,0.707152,0.501453,0.000224411,0.0526909,0.0203881,0.0980675,0.401499,0.154635,0.720377,0.305721,0.96185,0.607612,0.169741,0.82272,0.521805,0.205964,0.405954,0.370725,0.264283,0.0532912,0.11034,0.65443,0.799317,0.0626034,0.671326,0.831693,0.14489,0.977954,0.464218,0.585359,0.843965,0.245728,0.328229,0.53752,0.873179,0.0183544,0.933,0.959436,0.37098,0.966028,0.914269,0.438833,0.363459,0.758591,0.986262,0.798322,0.800063,0.3978,0.395011,0.691884,0.611772,0.545402,0.688697,0.526226,0.734634,0.197574,0.989085,0.445831,0.204316,0.966454,0.511264,0.227863,0.613665,0.388007,0.581953,0.385606,0.0046733,0.489547,0.00556296,0.0492074,0.354176,0.0787849,0.0677231,0.910872,0.869614,0.517115,0.359323,0.362227,0.892039,0.878077,0.511798,0.523904,0.280622,0.390541,0.724786,0.632618,0.398346,0.962907,0.201621,0.841114,0.031752,0.296089,0.565798,0.161518,0.0351542,0.0316954,0.576165,0.659233,0.0519242,0.26287,0.37764,0.201928,0.545249,0.282275,0.700521,0.217109,0.323143,0.79204,0.887739,0.136371,0.729451,0.497524,0.275298,0.027217,0.195992,0.266512,0.446696,0.745159,0.214194,0.82571,0.124412,0.314489,0.878738,0.661393,0.0583411,0.459646,0.168761,0.973102,0.602985,0.447607,0.935965,0.816432,0.186077,0.196923,0.0396829,0.138492,0.857818,0.835671,0.949675,0.64162,0.988501,0.514705,0.373542,0.790619,0.0588624,0.0821666,0.0471506,0.728987,0.509968,0.759849,0.299858,0.442871,0.0225624,0.018405,0.383854,0.274352,0.319355,0.791862,0.685514,0.521178,0.496064,0.9762,0.627886,0.556888,0.38152,0.274364,0.365994,0.00604045,0.299562,0.86012,0.351475,0.377738,0.232205,0.0222873,0.949988,0.725913,0.226602,0.301228,0.591703,0.809132,0.220055,0.563111,0.671002,0.370129,0.355447,0.78136,0.825721,0.846828,0.945598,0.735885,0.0198431,0.737312,0.905358,0.350516,0.925107,0.00546885,0.800902,0.038208,0.773973,0.0302464,0.0543252,0.0220193,0.282264,0.196793,0.387392,0.905144,0.185234,0.420077,0.151188,0.825961,0.285427,0.940416,0.832992,0.416586,0.362798,0.0326678,0.550969,0.207691,0.112966,0.278402,0.485084,0.855592,0.735135,0.553177,0.101177,0.441449,0.439599,0.834261,0.811433,0.632853,0.41065,0.690484,0.0280788,0.904264,0.474385,0.905958,0.178852,0.79608,0.648941,0.641039,0.307415,0.226366,0.144099,0.992767,0.182082,0.761084,0.0111451,0.236002,0.317524,0.116868,0.913276,0.145389,0.0934166,0.347704,0.260383,0.969607,0.596572,0.519571,0.0175903,0.00571287,0.581386,0.00211602,0.749722,0.550936,0.856709,0.576941,0.0250833,0.55052,0.691807,0.721313,0.0543113,0.815543,0.271146,0.657897,0.0143287,0.891463,0.386492,0.91824,0.728442,0.778878,0.605263,0.808748,0.0678189,0.906461,0.558689,0.15869,0.773508,0.758244,0.697342,0.944815,0.970417,0.580034,0.780957,0.0453562,0.177844,0.0632148,0.130147,0.236141,0.0939565,0.184765,0.53493,0.442758,0.496638,0.0692619,0.621126,0.744552,0.302425,0.151836,0.110208,0.0827443,0.504934,0.232233,0.463866,0.648259,0.504281,0.610045,0.770085,0.823935,0.137762,0.435894,0.705699,0.998757,0.197163,0.804785,0.906543,0.691436,0.0915114,0.0700561,0.460526,0.260349,0.50069,0.309009,0.78972,0.5,0.508221,0.240386,0.30243,0.695923,0.797044,0.945972,0.125933,0.689166,0.607989,0.91993,0.0160875,0.40453,0.156566,0.895027,0.626901,0.922362,0.509624,0.0711626,0.886405,0.954664,0.530066,0.246224,0.00615126,0.178316,0.251881,0.255137,0.862772,0.659229,0.453999,0.687814,0.257975,0.206027,0.307598,0.0579785,0.746693,0.626846,0.214879,0.617609,0.861693,0.655019,0.190781,0.724863,0.966426,0.656392,0.10365,0.61058,0.209734,0.324012,0.707492,0.40751,0.648997,0.141513,0.920978,0.457731,0.944755,0.817131,0.0202221,0.644543,0.29387,0.379614,0.390035,0.236471,0.0932956,0.380171,0.286005,0.92319,0.820246,0.309486,0.627021,0.209327,0.418682,0.485023,0.143448,0.54328,0.145855,0.49381,0.176057,0.478795,0.143039,0.135415,0.595853,0.123292,0.514785,0.521679,0.119704,0.65778,0.0264656,0.690876,0.0864557,0.161878,0.792723,0.558437,0.511,0.45774,0.646676,0.133275,0.802041,0.110189,0.709494,0.0580476,0.234499,0.496089,0.00616479,0.243343,0.341763,0.00799882,0.852716,0.424675,0.7605,0.0317575,0.65112,0.0264022,0.723067,0.0154785,0.878346,0.795704,0.383984,0.482481,0.896734,0.383581,0.854487,0.944633,|0.428321,0.881373,0.0012747,0.100634,0.558174,0.540098,0.429966,0.804535,0.0795496,0.228003,0.358689,0.752854,0.611061,0.421442,0.147332,0.329097,0.61616,0.0226793,0.003232,0.208534,0.63009,0.789369,0.787323,0.178597,0.721206,0.155935,0.7864,0.976882,0.965936,0.584321,0.868216,0.219792,0.555697,0.694623,0.837203,0.935728,0.0585583,0.734413,0.2254,0.115483,0.0675316,0.285516,0.0370215,0.704922,0.849762,0.824293,0.848021,0.066869,0.227463,0.00761104,0.0418947,0.907139,0.998517,0.245937,0.049005,0.545135,0.709124,0.770457,0.419952,0.874751,0.178316,0.399065,0.554522,0.755821,0.622335,0.606664,0.349581,0.930148,0.704466,0.837123,0.348058,0.243984,0.722569,0.781746,0.0182374,0.845674,0.873592,0.229799,0.651794,0.36121,0.70384,0.895723,0.203361,0.797154,0.314226,0.37743,0.971814,0.601987,0.804476,0.665985,0.986909,0.125866,0.287026,0.0091548,0.626598,0.940878,0.533611,0.780959,0.195073,0.2276,0.312521,0.281959,0.660376,0.904582,0.065733,0.366057,0.785744,0.71715,0.671541,0.335019,0.098937,0.299962,0.993819,0.307748,0.644704,0.30119,0.125338,0.486749,0.591179,0.719552,0.143687,0.0589526,0.468773,0.432282,0.759464,0.333621,0.11847,0.543947,0.430218,0.473506,0.16534,0.787113,0.229779,0.652067,0.921313,0.287471,0.381244,0.0885924,0.36011,0.73798,0.274244,0.964931,0.231257,0.81199,0.804939,0.97708,0.777149,0.537424,0.72719,0.985746,0.258672,0.846673,0.491768,0.359544,0.0794651,0.396719,0.232248,0.236481,0.155307,0.176255,0.81359,0.54486,0.141762,0.35611,0.185965,0.390284,0.451292,0.652914,0.92131,0.497239,0.169757,0.6342,0.0580466,0.573345,0.64216,0.683131,0.825686,0.441632,0.656412,0.812503,0.410875,0.211395,0.675064,0.013675,0.554063,0.848196,0.024489,0.135901,0.830468,0.241651,0.107146,0.0744542,0.00382245,0.0719277,0.0741272,0.290894,0.0180933,0.816372,0.800238,0.723161,0.600497,0.0750666,0.78479,0.440176,0.240804,0.965646,0.975168,0.343698,0.247606,0.170842,0.743548,0.994122,0.032461,0.448263,0.0557529,0.939013,0.857033,0.446662,0.477436,0.454568,0.0234157,0.721443,0.648113,0.585218,0.974212,0.120511,0.497878,0.864674,0.750417,0.868036,0.457492,0.534393,0.0150396,0.349218,0.587991,0.685181,0.51273,0.913726,0.241442,0.673925,0.663546,0.761093,0.327435,0.463619,0.346575,0.0341322,0.922689,0.653202,0.760951,0.593695,0.592205,0.152871,0.901177,0.0207295,0.789868,0.187715,0.040998,0.842491,0.175952,0.250961,0.455543,0.331558,0.697606,0.878125,0.439372,0.743654,0.0995619,0.936925,0.396689,0.0989597,0.990982,0.551601,0.28335,0.899072,0.841142,0.693236,0.456762,0.997096,0.0190258,0.797951,0.0743596,0.384552,0.519687,0.0432994,0.959249,0.63258,0.553697,0.734005,0.0464283,0.30059,0.408487,0.207355,0.739714,0.524599,0.859007,0.31429,0.518661,0.154058,0.566779,0.341798,0.479778,0.100068,0.534432,0.0475707,0.285421,0.831911,0.679443,0.0108083,0.362228,0.0268195,0.307969,0.599044,0.532232,0.101264,0.177335,0.315586,0.693512,0.689349,0.848001,0.182333,0.00207758,0.837097,0.613424,0.299678,0.252597,0.177037,0.929543,0.929277,0.720625,0.859357,0.882366,0.488371,0.401344,0.786731,0.319823,0.871505,0.150623,0.735307,0.866187,0.29568,0.525092,0.589148,0.600977,0.138646,0.127728,0.258312,0.00836468,0.581852,0.620974,0.497545,0.987972,0.975549,0.453888,0.737311,0.622664,0.886121,0.335454,0.692152,0.248222,0.188016,0.394708,0.868978,0.034821,0.149842,0.911257,0.24963,0.493712,0.457688,0.374399,0.994385,0.608066,0.661661,0.19743,0.141083,0.402526,0.289179,0.943956,0.719216,0.395263,0.303894,0.850867,0.0574027,0.84406,0.493876,0.250368,0.746971,0.273137,0.41167,0.130896,0.479939,0.835797,0.610866,0.718411,0.987639,0.370398,0.46935,0.852262,0.161906,0.400291,0.657869,0.439433,0.120461,0.373474,0.330815,0.0450422,0.363467,0.00522429,0.378509,0.990914,0.120541,0.505477,0.85075,0.34473,0.562076,0.0282952,0.930577,0.206635,0.330908,0.634935,0.790905,0.251404,0.452814,0.586382,0.9612,0.791802,0.956368,0.0549796,0.909606,0.50805,0.990676,0.13494,0.641883,0.469001,0.137485,0.978219,0.812034,0.902994,0.701023,0.0118163,0.645405,0.409183,0.95454,0.484094,0.661125,0.880262,0.230869,0.858853,0.817468,0.29032,0.202262,0.976144,0.125015,0.876877,0.074368,0.88982,0.0284706,0.0093779,0.21295,0.0985475,0.0861995,0.990197,0.522234,0.642845,0.912096,0.717992,0.531249,0.800377,0.489044,0.971459,0.164002,0.407976,0.42271,0.601896,0.278565,0.640438,0.234126,0.466859,0.295266,0.643795,0.499079,0.287336,0.877799,0.174724,0.258151,0.206663,0.69786,0.790751,0.895226,0.439118,0.0164947,0.889433,0.434863,0.0383649,0.482004,0.777641,0.889539,0.730096,0.308352,0.708927,0.158797,0.918342,0.211743,0.853627,0.979561,0.631523,0.554972,0.0816128,0.767912,0.549172,0.413848,0.476306,0.822196,0.11294,0.495148,0.396925,0.475918,0.323876,0.525011,0.450605,0.382367,0.103767,0.488258,0.811973,0.722205,0.249531,0.764153,0.531359,0.836909,0.860153,0.361357,0.110831,0.426,0.394712,0.347427,0.559696,0.0673229,0.0313153,0.698227,0.598995,0.822254,0.130334,0.475274,0.124497,0.567843,0.343784,0.181601,0.22992,0.530155,0.125106,0.898482,0.838007,0.544975,0.373053,0.161947,0.733753,0.648845,0.797962,0.38812,0.706738,0.221026,0.737366,0.827446,0.907397,0.977256,0.351937,0.0385426,0.1824,0.413743,0.612055,0.632146,0.951944,0.111205,0.951973,0.238377,0.0188674,0.663116,0.313354,0.412524,0.0108507,0.594672,0.0335566,0.627896,0.57912,0.998788,0.404271,0.242883,0.200593,0.059963,0.781507,0.624217,0.356839,0.520547,0.97991,0.269679,0.32168,0.926159,0.399185,0.810935,0.455906,0.840147,0.49495,0.511525,0.596813,0.232135,0.0735417,0.22453,0.297982,0.489757,0.115118,0.682661,0.77144,0.987443,0.320048,0.828294,0.76563,0.866681,0.569498,0.666738,0.365498,0.453003,0.342335,0.358646,0.544039,0.669365,0.615232,0.547713,0.266656,0.341563,0.855127,0.298085,0.217641,0.931301,0.49009,0.289187,0.429278,0.0674883,0.594833,0.564792,0.681034,0.603886,0.190615,0.486776,0.78472,0.147073,0.896719,0.870467,0.502138,0.610265,0.669872,0.707011,0.742947,0.273069,0.494509,0.525496,0.834738,0.544033,0.950263,0.0782475,0.419842,0.114973,0.329494,0.36477,0.307847,0.440444,0.236137,0.128055,0.406702,0.278217,0.674877,0.306008,0.050288,0.830285,0.347047,0.141145,0.751883,0.27047,0.334385,0.425257,0.171687,0.569905,0.790395,0.47702,0.862435,0.995212,0.97899,0.611721,0.700028,0.898022,0.97927,0.921955,0.55994,0.100569,0.480645,0.713892,0.654841,0.456826,0.170663,0.196995,0.895884,0.083138,0.82648,0.651189,0.0321786,0.0529613,0.609512,0.837613,0.526663,0.768107,0.223045,0.782632,0.477842,0.165977,0.696224,0.930087,0.478502,0.0560713,0.702953,0.848964,0.157153,0.761136,0.62653,0.0581427,0.035291,0.338094,0.605178,0.400163,0.521655,0.958394,0.827063,0.00303459,0.95209,0.296913,0.0324659,0.768873,0.453402,0.285298,0.810647,0.505704,0.445325,0.939166,0.843882,0.406284,0.483324,0.23611,0.904469,0.462925,0.0265362,0.95972,0.927351,0.463929,0.718635,0.315754,0.448503,0.0867288,0.657389,0.845755,0.414008,0.819202,0.458098,0.461722,0.906501,0.498759,0.613894,0.241699,0.46718,0.306151,0.393829,0.230448,0.442137,0.42111,0.826897,0.893396,0.131983,0.351437,0.929257,0.714544,0.504619,0.927326,0.0511394,0.64289,0.440087,0.977215,0.756754,0.548716,0.933712,0.960386,0.147303,0.645174,0.62267,0.434182,0.294486,0.0633005,0.336427,0.648739,0.066909,0.480056,0.602776,0.23901,0.389105,0.466166,0.248353,0.253173,0.756298,0.301194,0.052591,0.0624043,0.0137838,0.439687,0.908032,0.4001,0.33888,0.734931,0.211864,0.898069,0.19241,0.829191,0.461242,0.86644,0.905671,0.18291,0.198788,0.102624,0.209539,0.98231,0.473974,0.733175,0.457966,0.368629,0.687721,0.157033,0.119532,0.146862,0.472303,0.785481,0.477085,0.309752,0.688213,0.114276,0.63516,0.860725,0.426403,0.340815,0.477799,0.913728,0.881815,0.611834,0.833886,0.927119,0.0856646,0.33832,0.132751,0.945279,0.733366,0.146693,0.901661,0.804892,0.540424,0.198179,0.157455,0.438724,0.250761,0.572901,0.774213,0.709748,0.183443,0.351543,0.19505,0.454843,0.0523232,0.947654,0.495166,0.899086,0.191023,0.995661,0.717713,0.704938,0.673095,0.0849554,0.274023,0.522826,0.335265,0.184942,0.309478,0.914441,0.337673,0.665367,0.610046,0.0195671,0.117737,0.763041,0.209335,0.181642,0.284448,0.322781,0.328514,0.360483,0.656999,0.149298,0.823304,0.193145,0.109975,0.525285,0.0907563,0.920362,0.528956,0.576988,0.471891,0.262772,0.120824,0.635065,0.381834,0.589571,0.185511,0.435405,0.897896,0.981482,0.291025,0.935215,0.720445,0.129246,0.390755,0.903277,0.709384,0.844232,0.585965,0.657394,0.224807,0.872509,0.16771,0.618248,0.71099,0.982381,0.940294,0.958834,0.674115,0.800386,0.637534,0.0208322,0.864825,0.620006,0.697341,0.313285,0.143347,0.044036,0.778089,0.571389,0.169389,0.0198907,0.510878,0.0595493,0.290288,0.911856,0.431249,0.812579,0.0410405,0.393239,0.982952,0.0714848,0.763082,0.291189,0.516335,0.0191699,0.320727,0.372101,0.672704,0.319159,0.0362881,0.06926,0.693222,0.521232,0.940121,0.481723,0.562788,0.544075,0.839663,0.734966,0.552946,0.191449,0.745643,0.0753434,0.120841,0.571286,0.548703,0.0428303,0.190078,0.085507,0.860604,0.622314,0.37029,0.533203,0.386151,0.434302,0.762336,0.367783,0.139418,0.0686348,0.314484,0.846935,0.0680989,0.380294,|0.225668,0.863913,0.848313,0.536323,0.863686,0.480996,0.749711,0.773207,0.619731,0.508969,0.633499,0.104104,0.431178,0.813662,0.536773,0.648534,0.417437,0.887542,0.512737,0.318397,0.732519,0.525059,0.149541,0.151356,0.406578,0.103084,0.939971,0.445217,0.00343406,0.468861,0.343763,0.422195,0.182421,0.200706,0.72824,0.0469253,0.73047,0.675927,0.615374,0.671905,0.283086,0.317953,0.585129,0.785647,0.924793,0.920672,0.605964,0.738117,0.032338,0.308346,0.804747,0.156511,0.186783,0.980315,0.905674,0.988494,0.866082,0.513793,0.785999,0.761352,0.633285,0.997886,0.528118,0.507272,0.825549,0.469464,0.57986,0.480149,0.462439,0.403697,0.405368,0.396202,0.671375,0.866207,0.718556,0.172905,0.995131,0.26008,0.668566,0.0271659,0.128599,0.854106,0.553761,0.354933,0.258123,0.479953,0.326525,0.126667,0.547269,0.854048,0.286247,0.540044,0.165302,0.855128,0.457579,0.127655,0.224759,0.808996,0.770595,0.354987,0.273501,0.93973,0.45212,0.657507,0.908435,0.363916,0.513781,0.395517,0.942362,0.360981,0.339236,0.182887,0.758294,0.597448,0.302438,0.552351,0.127784,0.883344,0.663742,0.932921,0.606754,0.00704068,0.808436,0.671909,0.879134,0.0254488,0.0367635,0.18859,0.461491,0.928084,0.165846,0.229554,0.921085,0.428866,0.604068,0.107224,0.204103,0.866334,0.345451,0.795414,0.670604,0.28923,0.610027,0.378972,0.33477,0.999164,0.208131,0.579654,0.520467,0.395581,0.991179,0.215904,0.969999,0.396207,0.401487,0.712957,0.97218,0.435118,0.683422,0.558702,0.529808,0.712155,0.319332,0.494216,0.461397,0.690528,0.487352,0.758352,0.9569,0.858969,0.849298,0.953675,0.756392,0.675118,0.811735,0.502469,0.661564,0.656988,0.282273,0.759948,0.32423,0.260931,0.820654,0.309354,0.652561,0.664688,0.995985,0.785801,0.865987,0.993141,0.538558,0.188884,0.478923,0.864135,0.850452,0.51279,0.0777414,0.770396,0.580019,0.384472,0.822675,0.124013,0.775867,0.0480356,0.817998,0.166354,0.992648,0.70742,0.485947,0.537448,0.63113,0.294087,0.646841,0.353953,0.111466,0.849812,0.828814,0.144058,0.0534083,0.63703,0.902837,0.328862,0.274717,0.483255,0.717324,0.481563,0.701674,0.245468,0.747362,0.975775,0.580006,0.830951,0.421104,0.984444,0.850215,0.0765982,0.125563,0.991234,0.368697,0.632525,0.220087,0.745614,0.126204,0.707882,0.25867,0.748304,0.831714,0.613534,0.894516,0.895115,0.447142,0.0671689,0.759992,0.845211,0.774566,0.228347,0.43902,0.323945,0.695474,0.617377,0.48648,0.980817,0.624937,0.102531,0.266584,0.0295197,0.428499,0.259915,0.904437,0.710455,0.0592206,0.326071,0.175411,0.888793,0.688164,0.271005,0.996857,0.359275,0.510679,0.0668529,0.846416,0.408914,0.663967,0.689918,0.562516,0.550464,0.950864,0.775078,0.666526,0.466777,0.720265,0.0150629,0.704203,0.67121,0.155669,0.220144,0.828386,0.90385,0.551135,0.132418,0.989541,0.451587,0.292826,0.98339,0.866278,0.619938,0.235123,0.641131,0.202461,0.680998,0.783021,0.754415,0.601648,0.617442,0.37327,0.951136,0.971113,0.200546,0.244179,0.340247,0.0729888,0.171535,0.190459,0.607593,0.256005,0.483282,0.62923,0.448618,0.79548,0.979376,0.447382,0.773046,0.453255,0.742348,0.611979,0.429167,0.111021,0.0126166,0.714885,0.495896,0.786579,0.851107,0.192384,0.734121,0.230643,0.684306,0.0741343,0.271741,0.259781,0.341928,0.317786,0.521577,0.366902,0.368989,0.0384617,0.435822,0.443436,0.125488,0.785472,0.369366,0.355734,0.322396,0.0934575,0.32769,0.276277,0.477708,0.994348,0.345054,0.0487443,0.342536,0.0488052,0.758237,0.472863,0.30678,0.0863992,0.0280835,0.253391,0.739066,0.28859,0.0982883,0.0683613,0.693526,0.97128,0.0741416,0.0945836,0.889107,0.0779273,0.668927,0.266607,0.116268,0.12014,0.320922,0.927051,0.613393,0.717027,0.508194,0.349914,0.359495,0.474108,0.20288,0.341404,0.699431,0.157053,0.318411,0.985631,0.771585,0.395284,0.930795,0.535752,0.551848,0.677658,0.703522,0.182615,0.987195,0.118072,0.00126684,0.720791,0.451979,0.281643,0.395206,0.506791,0.774179,0.168343,0.722565,0.0609365,0.596015,0.0792289,0.353172,0.106528,0.588335,0.335856,0.68533,0.972621,0.835073,0.40697,0.668253,0.795085,0.798468,0.306058,0.347977,0.243414,0.879593,0.923149,0.393741,0.804312,0.378429,0.16495,0.857128,0.0524881,0.256701,0.255564,0.703927,0.793066,0.126584,0.636023,0.732786,0.871186,0.762128,0.904452,0.302681,0.000276506,0.540707,0.886012,0.519807,0.89525,0.610203,0.101467,0.27339,0.508372,0.619007,0.262908,0.835468,0.115262,0.224776,0.717447,0.238914,0.55326,0.926957,0.196732,0.857397,0.278391,0.586052,0.627879,0.226014,0.292053,0.823184,0.679727,0.238479,0.84303,0.639912,0.548631,0.996411,0.437998,0.135715,0.710565,0.197481,0.944228,0.00757641,0.735822,0.20508,0.893743,0.296643,0.0303221,0.179495,0.0530322,0.10172,0.175671,0.456193,0.106303,0.755451,0.279863,0.779199,0.751612,0.372769,0.802005,0.428759,0.162465,0.707043,0.552241,0.422116,0.242936,0.415299,0.129598,0.617038,0.77062,0.537214,0.20164,0.674228,0.765858,0.490518,0.186462,0.61206,0.846007,0.161367,0.699881,0.422484,0.451898,0.381254,0.094906,0.262483,0.602731,0.710762,0.864716,0.84293,0.535165,0.569243,0.786545,0.61414,0.183539,0.741301,0.667587,0.143745,0.477612,0.947286,0.979895,0.626368,0.675814,0.640442,0.341597,0.974457,0.844944,0.422009,0.645998,0.694169,0.588238,0.903473,0.207343,0.526866,0.017666,0.287062,0.447951,0.405585,0.281508,0.960102,0.776984,0.17688,0.349845,0.00494754,0.389492,0.505928,0.766052,0.143204,0.886964,0.803239,0.187875,0.943274,0.115929,0.606239,0.485109,0.985223,0.451364,0.363339,0.12952,0.529188,0.560835,0.531731,0.947079,0.918151,0.684785,0.79895,0.475456,0.810034,0.641213,0.953362,0.717897,0.797423,0.6621,0.667501,0.78412,0.792787,0.333283,0.71547,0.802728,0.808645,0.586294,0.459631,0.371551,0.732054,0.322497,0.149888,0.452243,0.432942,0.00171965,0.696313,0.110343,0.823995,0.94174,0.174629,0.370905,0.260761,0.503472,0.242265,0.857703,0.70836,0.841022,0.274674,0.984802,0.356537,0.284901,0.40882,0.826996,0.13746,0.512785,0.0731269,0.945554,0.596044,0.998046,0.608833,0.185825,0.682646,0.511986,0.419299,0.235023,0.207022,0.386426,0.20419,0.0932759,0.848795,0.310659,0.988043,0.765146,0.141156,0.880378,0.0179924,0.450393,0.726494,0.484154,0.29888,0.557164,0.0818093,0.0488831,0.166343,0.978681,0.400871,0.736384,0.253841,0.363271,0.65488,0.221189,0.0842248,0.447781,0.97235,0.704443,0.206914,0.582697,0.219157,0.866173,0.62624,0.67073,0.675617,0.0237142,0.926735,0.163076,0.00146168,0.477395,0.687919,0.803708,0.793447,0.486093,0.0793773,0.657862,0.881714,0.601591,0.391136,0.800246,0.348176,0.927182,0.909686,0.490932,0.415729,0.235914,0.707369,0.519534,0.693289,0.643967,0.391776,0.914062,0.606146,0.261815,0.875434,0.814115,0.137014,0.637309,0.766313,0.00660974,0.591789,0.0341399,0.15179,0.406265,0.0589116,0.0767679,0.135425,0.615571,0.651446,0.763513,0.0633393,0.05654,0.906933,0.617471,0.402561,0.43702,0.631402,0.504675,0.979889,0.439268,0.294731,0.657277,0.0978501,0.965255,0.515419,0.845814,0.164651,0.0793471,0.301666,0.564508,0.864618,0.302198,0.605629,0.425641,0.207198,0.640864,0.331563,0.341171,0.580837,0.569732,0.85122,0.269602,0.208895,0.286277,0.157859,0.3876,0.0664916,0.994406,0.331383,0.996097,0.511704,0.68408,0.467536,0.305404,0.703962,0.28236,0.96298,0.794532,0.911899,0.834788,0.844104,0.921441,0.817713,0.502936,0.665132,0.569169,0.724232,0.426641,0.195403,0.986606,0.476891,0.771954,0.182221,0.473971,0.518875,0.888936,0.306183,0.748598,0.121722,0.537226,0.595089,0.331467,0.577366,0.00935221,0.270225,0.241443,0.256798,0.516987,0.251788,0.193793,0.274568,0.425672,0.0270177,0.523025,0.528585,0.00298262,0.224842,0.425002,0.779097,0.24993,0.223853,0.796261,0.623553,0.441054,0.746035,0.392236,0.41791,0.432751,0.332688,0.570705,0.063913,0.758597,0.602231,0.29163,0.929551,0.339989,0.907708,0.783509,0.249673,0.807389,0.392947,0.202885,0.279301,0.822125,0.138593,0.797046,0.910326,0.0162511,0.707405,0.441494,0.0448024,0.90998,0.546878,0.772051,0.100194,0.379784,0.78379,0.541629,0.939333,0.75174,0.949693,0.962995,0.927154,0.0411237,0.398364,0.530886,0.932863,0.00213397,0.528948,0.119285,0.741143,0.921131,0.716459,0.661543,0.133695,0.273074,0.10658,0.618869,0.188438,0.793291,0.411289,0.57526,0.0163594,0.794844,0.299042,0.192001,0.979498,0.187351,0.577958,0.459938,0.0851709,0.287797,0.994039,0.768848,0.843096,0.466707,0.493944,0.48915,0.184576,0.396613,0.775867,0.0617195,0.194847,0.222596,0.399432,0.631507,0.254006,0.442728,0.64567,0.980136,0.0207662,0.974684,0.359367,0.189788,0.293047,0.921562,0.0680875,0.449954,0.190459,0.342548,0.0757185,0.356817,0.694445,0.484897,0.340573,0.113672,0.17947,0.794212,0.681773,0.482944,0.196164,0.943373,0.177567,0.279626,0.84187,0.14791,0.21811,0.961802,0.0276923,0.552323,0.404716,0.221604,0.920632,0.734171,0.262252,0.19094,0.354487,0.739332,0.344634,0.573543,0.829234,0.223314,0.737343,0.652937,0.545631,0.169814,0.174013,0.889661,0.975255,0.903303,0.272335,0.833252,0.822355,0.526491,0.212209,0.105787,0.463538,0.876147,0.28903,0.508669,0.606217,0.000776231,0.589996,0.714333,0.847513,0.408602,0.86385,0.336715,0.310768,0.333454,0.974238,0.0427443,0.953398,0.70958,0.943363,0.158569,0.491149,0.654857,0.887797,0.0136479,0.542062,0.0662649,0.748975,0.247617,0.263574,|0.129475,0.519649,0.596518,0.496225,0.716399,0.139307,0.449366,0.582329,0.778743,0.808328,0.189841,0.360979,0.767115,0.761138,0.0269819,0.0544307,0.261715,0.140023,0.875477,0.433377,0.033491,0.91167,0.244986,0.490432,0.942629,0.241457,0.318486,0.695183,0.572092,0.105994,0.605983,0.688029,0.441502,0.814203,0.518745,0.442696,0.273837,0.567371,0.395387,0.284143,0.885212,0.141903,0.429957,0.407707,0.233956,0.556755,0.230527,0.770527,0.909284,0.627261,0.0303285,0.644241,0.827741,0.856574,0.774995,0.581722,0.85503,0.27114,0.512034,0.0189758,0.443786,0.942146,0.0479423,0.279489,0.702463,0.0267947,0.423471,0.229401,0.197106,0.11054,0.927163,0.36439,0.420886,0.838721,0.448105,0.708968,0.971386,0.446845,0.849335,0.345936,0.402457,0.440834,0.0786869,0.0594056,0.323092,0.835505,0.517392,0.762676,0.367119,0.825925,0.377408,0.930694,0.96061,0.606323,0.360666,0.839108,0.381283,0.48375,0.716653,0.330964,0.562561,0.494773,0.435453,0.82589,0.231357,0.76847,0.303233,0.736523,0.549162,0.880767,0.635129,0.86935,0.69163,0.942125,0.65064,0.727226,0.502421,0.0770195,0.195067,0.847788,0.934412,0.487661,0.50295,0.453974,0.839592,0.0692878,0.970066,0.759571,0.994089,0.988075,0.925798,0.718508,0.0658025,0.845279,0.508765,0.0551733,0.456332,0.250093,0.676589,0.283901,0.867572,0.76105,0.527632,0.727587,0.0593166,0.765978,0.370042,0.996324,0.14484,0.639746,0.857341,0.21856,0.189731,0.327057,0.870712,0.305654,0.49941,0.561576,0.850511,0.475226,0.100968,0.871261,0.684883,0.592327,0.699864,0.269763,0.684847,0.658559,0.302226,0.106737,0.595336,0.407145,0.88512,0.49198,0.0971708,0.630589,0.404222,0.952947,0.778684,0.605655,0.697879,0.0307595,0.436377,0.77352,0.897289,0.917355,0.303323,0.915215,0.0484285,0.992552,0.145513,0.56861,0.94625,0.644576,0.397759,0.97363,0.509619,0.987395,0.171035,0.245546,0.466913,0.947099,0.871974,0.228723,0.55751,0.417763,0.109713,0.756859,0.853418,0.315047,0.686881,0.00872594,0.749703,0.387342,0.451384,0.0995625,0.729502,0.00943369,0.731349,0.394578,0.808585,0.878914,0.642695,0.185793,0.275935,0.261799,0.418733,0.487823,0.966651,0.298486,0.526781,0.299777,0.490987,0.550079,0.818605,0.691929,0.37118,0.860731,0.838704,0.690074,0.518363,0.407395,0.266182,0.77002,0.861373,0.883069,0.931127,0.232144,0.984961,0.231664,0.633379,0.119139,0.813832,0.687808,0.937551,0.169334,0.088945,0.350615,0.0796433,0.73074,0.381471,0.744504,0.371937,0.904855,0.056527,0.603589,0.166732,0.154693,0.858579,0.808816,0.531953,0.172011,0.158095,0.644574,0.467761,0.758971,0.303342,0.0879487,0.541149,0.923772,0.614948,0.768759,0.462924,0.501862,0.0534666,0.765844,0.961097,0.837538,0.513397,0.0586972,0.327441,0.95773,0.202612,0.152072,0.343762,0.788162,0.671995,0.070681,0.277175,0.467591,0.736434,0.0931865,0.993986,0.129209,0.542341,0.480262,0.673276,0.962564,0.572388,0.412832,0.302498,0.887803,0.734256,0.522974,0.602396,0.465294,0.867311,0.0731445,0.510356,0.124934,0.382011,0.488839,0.926824,0.0633003,0.702512,0.770135,0.6139,0.91514,0.924761,0.955364,0.0970591,0.861711,0.930501,0.785331,0.770459,0.451268,0.281404,0.45225,0.869403,0.811993,0.12677,0.52542,0.0277177,0.516698,0.41183,0.542204,0.244496,0.648428,0.198493,0.264373,0.0701939,0.878187,0.592982,0.122558,0.852544,0.349949,0.184164,0.325566,0.474039,0.0761473,0.365565,0.620736,0.0180225,0.556933,0.120126,0.326215,0.0939749,0.0166765,0.192369,0.644967,0.728678,0.423149,0.431484,0.856134,0.287568,0.120917,0.250547,0.393923,0.24018,0.497684,0.315285,0.788904,0.655749,0.264624,0.244466,0.173697,0.806521,0.094444,0.179669,0.943185,0.995611,0.339338,0.11345,0.693283,0.329693,0.347151,0.720809,0.321106,0.469321,0.231198,0.470374,0.902881,0.370454,0.671991,0.35567,0.137262,0.815036,0.542194,0.262424,0.419317,0.186224,0.225639,0.18634,0.499778,0.731544,0.551662,0.123339,0.402399,0.877908,0.090099,0.560186,0.0826245,0.370104,0.255814,0.722232,0.542973,0.737041,0.117942,0.902734,0.443007,0.744887,0.76142,0.468721,0.915229,0.0177444,0.738255,0.58162,0.0604514,0.882355,0.331556,0.864873,0.160768,0.00435406,0.228456,0.12291,0.212718,0.464711,0.908044,0.795342,0.869148,0.761565,0.62509,0.827471,0.530858,0.592744,0.734571,0.850631,0.67451,0.21243,0.330672,0.985868,0.40932,0.862724,0.685083,0.150893,0.235295,0.953466,0.59349,0.486044,0.63062,0.310684,0.192353,0.183558,0.590587,0.43448,0.912304,0.22468,0.057202,0.193544,0.0250684,0.0875936,0.0594239,0.662244,0.329947,0.266493,0.993121,0.093248,0.174119,0.384174,0.671972,0.494471,0.352112,0.395956,0.145324,0.542381,0.805187,0.921312,0.30562,0.893371,0.312878,0.246958,0.272388,0.122772,0.822867,0.915466,0.949627,0.769854,0.405591,0.805839,0.979831,0.59583,0.925499,0.884711,0.31804,0.356791,0.295866,0.889015,0.998908,0.577199,0.0798214,0.487099,0.494973,0.0222511,0.924044,0.916418,0.938855,0.323027,0.0403079,0.479865,0.964346,0.0921286,0.88515,0.305624,0.569464,0.653487,0.282493,0.498626,0.831835,0.129168,0.72011,0.582211,0.446348,0.178984,0.562561,0.812997,0.58018,0.167875,0.225126,0.570148,0.602482,0.386047,0.63066,0.415798,0.685716,0.928577,0.452328,0.506564,0.81249,0.489503,0.687594,0.130063,0.714013,0.320125,0.518449,0.00869924,0.643021,0.33195,0.0446501,0.302335,0.93453,0.121695,0.464704,0.119611,0.970306,0.530921,0.466035,0.579965,0.824362,0.127156,0.678269,0.516138,0.292405,0.962096,0.37042,0.629392,0.67876,0.0148938,0.498187,0.0260023,0.710677,0.035741,0.649748,0.488039,0.131351,0.864249,0.931582,0.455704,0.979482,0.286561,0.988876,0.764006,0.900002,0.828068,0.0282106,0.180856,0.562232,0.605247,0.317189,0.700092,0.56021,0.762268,0.626088,0.550646,0.766789,0.0596272,0.0789397,0.929656,0.697145,0.917714,0.813161,0.637603,0.150856,0.781754,0.10824,0.437697,0.476331,0.732085,0.898685,0.44097,0.590336,0.895516,0.435796,0.727765,0.864668,0.956203,0.65222,0.391893,0.445655,0.967381,0.984352,0.142701,0.180004,0.908183,0.258914,0.090661,0.0241656,0.0615846,0.170983,0.808752,0.559519,0.496045,0.755597,0.0448325,0.836226,0.961588,0.411872,0.0483768,0.659368,0.16471,0.834064,0.727676,0.0741995,0.579834,0.583115,0.388248,0.736657,0.797463,0.493694,0.480482,0.430681,0.56723,0.624489,0.67635,0.956685,0.644193,0.18178,0.639695,0.207443,0.813125,0.0280371,0.158601,0.569528,0.25785,0.228575,0.971962,0.13171,0.491425,0.406831,0.82764,0.555236,0.589004,0.38674,0.0544841,0.640097,0.0434696,0.0293532,0.661879,0.659116,0.451159,0.133936,0.195529,0.307294,0.985249,0.111697,0.363981,0.786681,0.276922,0.399931,0.743743,0.200688,0.620858,0.592752,0.543566,0.184134,0.352184,0.192704,0.558194,0.0612087,0.187559,0.463388,0.826773,0.195635,0.3682,0.575063,0.218635,0.4476,0.994816,0.587735,0.672008,0.639001,0.582709,0.665916,0.475218,0.973976,0.167769,0.203662,0.414049,0.921359,0.741233,0.771947,0.908654,0.701758,0.54803,0.681004,0.851891,0.46613,0.542475,0.083178,0.379314,0.00303531,0.983835,0.790722,0.266693,0.28221,0.135705,0.950564,0.856142,0.132121,0.41428,0.0486427,0.0269273,0.99779,0.100486,0.842687,0.98955,0.898797,0.968979,0.107316,0.612075,0.0215497,0.547254,0.649033,0.0217902,0.821794,0.46277,0.0898309,0.457745,0.517853,0.370242,0.71139,0.446518,0.702453,0.0317954,0.572296,0.781321,0.544573,0.294565,0.683617,0.957884,0.00393516,0.176995,0.78997,0.583265,0.580657,0.449129,0.149313,0.374533,0.753948,0.34641,0.772539,0.473005,0.421302,0.0186639,0.598252,0.693993,0.056906,0.400862,0.973676,0.780977,0.0359093,0.343403,0.166868,0.329897,0.636821,0.460155,0.501104,0.589938,0.416167,0.883013,0.409942,0.144365,0.853568,0.816595,0.720832,0.460617,0.956583,0.853956,0.131611,0.388364,0.827221,0.511493,0.882591,0.601017,0.701026,0.326559,0.926726,0.593672,0.302893,0.204286,0.505847,0.274024,0.457447,0.182085,0.19338,0.30303,0.421735,0.0923724,0.906391,0.234492,0.442279,0.999967,0.124924,0.2914,0.964403,0.121151,0.257813,0.363755,0.849846,0.300665,0.56377,0.16336,0.01826,0.79528,0.646321,0.350888,0.129887,0.571594,0.571114,0.320255,0.427475,0.766717,0.425153,0.154747,0.184319,0.984498,0.0964547,0.538405,0.669165,0.0438321,0.0779353,0.3703,0.140786,0.198482,0.647334,0.995376,0.071267,0.963838,0.232961,0.86425,0.764688,0.320476,0.110137,0.24343,0.63813,0.532373,0.0965268,0.35245,0.795955,0.349302,0.504283,0.577617,0.400601,0.896333,0.180988,0.0868333,0.0186006,0.622894,0.821871,0.276151,0.199255,0.406032,0.594245,0.0634284,0.895266,0.566676,0.453449,0.825072,0.726939,0.756142,0.850628,0.468689,0.758451,0.0129045,0.23799,0.864921,0.630102,0.985609,0.250463,0.0227432,0.200098,0.770411,0.785257,0.150135,0.725912,0.47126,0.651202,0.561685,0.975118,0.980737,0.566451,0.458012,0.530704,0.592687,0.854052,0.26695,0.0903049,0.924663,0.503817,0.137384,0.790318,0.0234045,0.547209,0.410905,0.864626,0.115372,0.771301,0.00319618,0.0975572,0.926251,0.877541,0.1914,0.195621,0.93683,0.977367,0.92891,0.163222,0.581786,0.0401389,0.0887741,0.556022,0.8061,0.802041,0.541883,0.525699,0.787628,0.185513,0.163604,0.119324,0.721918,0.887485,0.331436,0.0158851,0.929977,0.645451,0.197652,0.96804,0.39066,0.560252,0.162396,0.637851,0.255278,0.135675,0.952771,0.750335,0.68719,0.505794,0.608097,0.477513,0.761927,0.470105,|0.033756,0.755612,0.398107,0.5043,0.255542,0.319619,0.794156,0.39705,0.128054,0.481254,0.566246,0.542349,0.108411,0.588991,0.573356,0.626741,0.692635,0.250963,0.677102,0.761781,0.897317,0.552558,0.121781,0.864357,0.0493472,0.718579,0.646048,0.323831,0.409214,0.512677,0.725265,0.337627,0.572942,0.621135,0.954037,0.642946,0.644587,0.236695,0.972676,0.677625,0.382676,0.538367,0.755548,0.960919,0.33572,0.452436,0.851193,0.242414,0.212951,0.0347241,0.363701,0.962278,0.154506,0.069703,0.409263,0.15797,0.062278,0.144533,0.824556,0.359274,0.417164,0.533281,0.412244,0.579096,0.155405,0.855551,0.688435,0.725347,0.435552,0.346841,0.181079,0.403962,0.0241168,0.731385,0.906519,0.16939,0.821179,0.799648,0.742889,0.0167022,0.389306,0.158414,0.505051,0.526722,0.895938,0.0536523,0.477917,0.841851,0.892199,0.143324,0.197516,0.621876,0.829911,0.305131,0.139804,0.731845,0.265114,0.566832,0.184634,0.341728,0.440022,0.334579,0.324001,0.208019,0.56306,0.622648,0.649225,0.436304,0.61908,0.480378,0.761172,0.310673,0.250574,0.86268,0.590256,0.908249,0.249225,0.411094,0.810057,0.527466,0.329213,0.62586,0.192734,0.0416173,0.0451373,0.66695,0.0619939,0.253082,0.562736,0.826578,0.471197,0.401832,0.362556,0.540673,0.292857,0.457662,0.850923,0.799391,0.014386,0.173125,0.445631,0.916057,0.3645,0.0479947,0.745043,0.732074,0.463122,0.122581,0.603776,0.595357,0.503248,0.971069,0.887722,0.678403,0.9114,0.28722,0.974673,0.214448,0.0711814,0.388421,0.405465,0.691005,0.647442,0.0963312,0.64475,0.735551,0.474775,0.736737,0.160342,0.654998,0.0401693,0.327313,0.15562,0.624645,0.28011,0.367539,0.614155,0.0414153,0.00296181,0.485504,0.704192,0.287552,0.0677562,0.629461,0.543999,0.605202,0.880571,0.565091,0.885681,0.319952,0.984016,0.098772,0.655455,0.798825,0.660255,0.609785,0.00972074,0.438686,0.598075,0.975758,0.699898,0.224307,0.654153,0.999499,0.322205,0.16527,0.18789,0.426807,0.505098,0.752886,0.455676,0.143459,0.252924,0.56892,0.365388,0.378805,0.199276,0.947793,0.178649,0.959215,0.0759823,0.554227,0.51658,0.753577,0.309254,0.588248,0.753992,0.209564,0.198649,0.822639,0.333416,0.333005,0.938433,0.999343,0.770882,0.83296,0.976292,0.150326,0.223383,0.863024,0.374975,0.852666,0.97812,0.747855,0.739439,0.536068,0.408706,0.421463,0.127646,0.577372,0.0606774,0.696037,0.349624,0.670474,0.966593,0.423904,0.0926144,0.306398,0.432891,0.748181,0.988449,0.714494,0.3923,0.428123,0.00456691,0.560527,0.0693752,0.265623,0.0225951,0.269242,0.720055,0.43912,0.342798,0.561907,0.070155,0.399933,0.35661,0.822751,0.350695,0.632942,0.0796227,0.691249,0.591918,0.194535,0.0995816,0.137645,0.170939,0.560516,0.895267,0.746434,0.0737603,0.929275,0.8992,0.557557,0.947681,0.10537,0.757729,0.269565,0.708192,0.786011,0.321916,0.390637,0.297303,0.442572,0.262171,0.173789,0.962506,0.906855,0.96659,0.24137,0.697171,0.559485,0.0932137,0.967442,0.749523,0.65388,0.437749,0.256185,0.141507,0.688035,0.435148,0.161191,0.846946,0.34164,0.0886595,0.396777,0.953278,0.850101,0.44383,0.636318,0.532527,0.325902,0.28925,0.883038,0.942071,0.0830334,0.0335753,0.602407,0.514238,0.849883,0.929699,0.0201837,0.770667,0.60504,0.528138,0.696145,0.582538,0.872717,0.827274,0.974346,0.384999,0.373084,0.265909,0.109562,0.771512,0.218734,0.392172,0.737483,0.0334171,0.899753,0.411508,0.57255,0.726537,0.708441,0.870062,0.0286038,0.856526,0.018205,0.167737,0.817088,0.83135,0.53673,0.653337,0.185207,0.54595,0.0682065,0.793807,0.261024,0.35125,0.630429,0.952927,0.856098,0.547215,0.411089,0.44138,0.244839,0.764157,0.336241,0.540512,0.423828,0.298669,0.466756,0.741882,0.0502859,0.75297,0.311401,0.401833,0.919759,0.187815,0.967197,0.666957,0.950775,0.161786,0.119475,0.620557,0.153119,0.505581,0.160868,0.314974,0.198588,0.788953,0.0730479,0.251538,0.79777,0.914365,0.0789747,0.989131,0.465758,0.757354,0.806808,0.0763853,0.899928,0.673086,0.552294,0.849585,0.740048,0.180625,0.471962,0.553023,0.63622,0.469428,0.724073,0.733502,0.465893,0.894503,0.784681,0.40094,0.660728,0.889244,0.935212,0.786145,0.756468,0.844335,0.622633,0.139107,0.827905,0.449389,0.635622,0.350141,0.15029,0.746396,0.419696,0.0521394,0.670585,0.245759,0.741738,0.295141,0.245345,0.256236,0.164958,0.539415,0.276216,0.799985,0.284238,0.302393,0.935275,0.851923,0.728135,0.0798961,0.817122,0.566748,0.129166,0.46912,0.945906,0.768703,0.816907,0.328692,0.155189,0.281875,0.785032,0.436398,0.680045,0.897364,0.245986,0.0869107,0.768517,0.283921,0.396252,0.120472,0.763327,0.918043,0.402093,0.396402,0.100681,0.134159,0.143872,0.90773,0.139758,0.0161462,0.171579,0.112019,0.255809,0.0385838,0.721668,0.435776,0.12704,0.0193777,0.111928,0.418093,0.160009,0.984446,0.793988,0.560466,0.407497,0.62808,0.960234,0.547392,0.596663,0.236946,0.53311,0.889705,0.264493,0.292532,0.718153,0.175259,0.319982,0.427794,0.946176,0.291563,0.291861,0.586634,0.285055,0.425079,0.499725,0.815228,0.435665,0.967264,0.619934,0.750602,0.150805,0.401793,0.707878,0.074606,0.900014,0.178903,0.190664,0.892024,0.709394,0.919117,0.461836,0.780497,0.763263,0.224366,0.396394,0.882082,0.760396,0.930064,0.111042,0.570298,0.924267,0.662951,0.217806,0.540461,0.313204,0.138431,0.935019,0.541267,0.191763,0.418723,0.811411,0.506697,0.810686,0.637423,0.663948,0.103695,0.347755,0.886268,0.813093,0.710196,0.762225,0.534608,0.01004,0.292376,0.172251,0.267913,0.92326,0.978154,0.443167,0.7289,0.562184,0.978346,0.79912,0.919208,0.372805,0.0488632,0.192409,0.614145,0.658154,0.158002,0.795023,0.441409,0.41076,0.346712,0.191241,0.614999,0.9047,0.326971,0.173054,0.609866,0.859362,0.125556,0.435105,0.92234,0.545101,0.536112,0.318498,0.0802369,0.619144,0.938561,0.0643628,0.252551,0.817173,0.911176,0.897528,0.591719,0.513585,0.344948,0.324531,0.574692,0.794451,0.45116,0.832675,0.647194,0.296662,0.162392,0.701943,0.332502,0.697873,0.722052,0.307355,0.702745,0.541403,0.162058,0.574525,0.611618,0.812328,0.400731,0.970321,0.918607,0.966735,0.799808,0.779562,0.142829,0.686157,0.038657,0.0148509,0.548616,0.0950006,0.00520819,0.305419,0.802055,0.469499,0.525184,0.376569,0.818242,0.0630989,0.976403,0.219698,0.984555,0.158585,0.0205551,0.825426,0.608906,0.235311,0.311619,0.978572,0.919276,0.895236,0.254726,0.201353,0.53779,0.422049,0.0653268,0.651901,0.907159,0.00863093,0.728363,0.277125,0.10216,0.29682,0.234101,0.747291,0.844363,0.163655,0.698279,0.203811,0.269028,0.860751,0.97224,0.47002,0.214993,0.813729,0.604159,0.00154853,0.847917,0.061029,0.808914,0.367237,0.0469621,0.0439786,0.711552,0.30101,0.0215939,0.379582,0.333619,0.257722,0.84743,0.487986,0.735247,0.369247,0.70053,0.419439,0.73352,0.137553,0.680561,0.705497,0.619869,0.354759,0.688951,0.889073,0.308201,0.723274,0.262006,0.337542,0.221345,0.450302,0.944814,0.169805,0.216752,0.673754,0.0494445,0.714367,0.928945,0.939775,0.617886,0.905858,0.035229,0.222351,0.70942,0.217259,0.742349,0.91234,0.956575,0.595616,0.597443,0.957706,0.944722,0.840467,0.505169,0.458077,0.659537,0.689545,0.98876,0.143341,0.677817,0.849168,0.297984,0.347447,0.46769,0.737729,0.106807,0.518376,0.464643,0.691039,0.628383,0.38003,0.903606,0.822819,0.789135,0.698932,0.0138013,0.120204,0.133163,0.301287,0.370379,0.344988,0.470054,0.532076,0.921499,0.620551,0.861217,0.0711891,0.524296,0.0813658,0.884004,0.49042,0.932094,0.11998,0.0523567,0.514404,0.08464,0.537823,0.169599,0.258211,0.637275,0.699449,0.740741,0.286437,0.395187,0.873137,0.74684,0.99763,0.23047,0.348958,0.636433,0.361935,0.252374,0.703086,0.0212166,0.890204,0.32268,0.206329,0.465699,0.0867819,0.0552057,0.186712,0.841199,0.573148,0.326349,0.860332,0.930248,0.419454,0.627263,0.126303,0.0177178,0.403179,0.859527,0.503723,0.354196,0.219788,0.379385,0.122922,0.321526,0.712702,0.976105,0.886773,0.134249,0.349974,0.510306,0.345611,0.682062,0.597933,0.162771,0.391159,0.0726813,0.90432,0.23068,0.307542,0.537835,0.140657,0.289429,0.339353,0.663625,0.141467,0.353852,0.302604,0.431418,0.972165,0.00717378,0.0833137,0.410521,0.789075,0.340249,0.40832,0.283982,0.798567,0.812206,0.154845,0.325816,0.587772,0.441076,0.410477,0.507252,0.378981,0.776679,0.473091,0.288636,0.577948,0.693918,0.211596,0.351555,0.409582,0.263944,0.537637,0.915227,0.0600969,0.969017,0.247601,0.581754,0.467108,0.0250227,0.311146,0.241296,0.848496,0.934308,0.940917,0.891839,0.604769,0.924049,0.187121,0.0230186,0.252479,0.862404,0.765131,0.748368,0.792131,0.686764,0.818165,0.50387,0.453684,0.166803,0.292652,0.886882,0.557184,0.994351,0.559975,0.0896143,0.630552,0.0532376,0.918448,0.094555,0.0533014,0.740759,0.746138,0.681532,0.171889,0.264734,0.746359,0.966473,0.154646,0.966991,0.384141,0.278293,0.861861,0.737381,0.726283,0.68338,0.513117,0.562671,0.401947,0.985568,0.694554,0.769231,0.374053,0.962283,0.927744,0.972619,0.839949,0.503163,0.480865,0.390812,0.154669,0.255823,0.659091,0.0129859,0.208185,0.523206,0.556794,0.705964,0.490092,0.0536869,0.653743,0.514451,0.591583,0.212872,0.974519,0.0269966,0.920681,0.656784,0.274033,0.267108,0.742641,0.590437,0.721781,0.693577,0.828627,0.298605,0.154116,0.00350386,0.892465,0.0774195,0.0980155,0.583575,0.58071,0.694129,0.450568,0.515233,0.3827,0.976039,0.404664,|0.600536,0.474495,0.23232,0.169536,0.512496,0.531729,0.278788,0.351879,0.663959,0.670435,0.0679967,0.678838,0.32066,0.905633,0.547089,0.249226,0.269412,0.0984653,0.280885,0.775594,0.664823,0.0929832,0.0821773,0.0664515,0.251221,0.187002,0.455583,0.427072,0.392126,0.213397,0.461327,0.180417,0.423346,0.497481,0.197248,0.0495237,0.571161,0.350255,0.143793,0.850015,0.633441,0.786398,0.496465,0.367307,0.377886,0.861669,0.188142,0.601621,0.0441972,0.319902,0.323323,0.516069,0.613534,0.70349,0.420428,0.401406,0.255273,0.773665,0.253311,0.758617,0.434479,0.154367,0.124442,0.0539262,0.303749,0.880453,0.995929,0.893229,0.823379,0.930854,0.130031,0.73364,0.481526,0.192377,0.932423,0.0442765,0.529152,0.233898,0.940704,0.489052,0.808362,0.526444,0.463588,0.463639,0.902745,0.871591,0.710707,0.809548,0.219063,0.354919,0.00790703,0.460953,0.813617,0.385142,0.273042,0.235011,0.213726,0.14177,0.929094,0.0252996,0.248708,0.0359995,0.110785,0.727327,0.382421,0.721707,0.434192,0.743108,0.696348,0.0424434,0.306458,0.992573,0.886071,0.584538,0.758835,0.858509,0.018811,0.395316,0.0378249,0.119418,0.527045,0.211914,0.551844,0.723178,0.889044,0.174461,0.0263191,0.442752,0.480044,0.193695,0.413468,0.699492,0.327669,0.581333,0.420826,0.428118,0.666477,0.585598,0.73239,0.351587,0.98695,0.0891442,0.435854,0.6799,0.496444,0.0203642,0.691051,0.179271,0.00177455,0.931969,0.216193,0.725109,0.573705,0.278374,0.367383,0.395979,0.79239,0.385943,0.0776433,0.79436,0.277463,0.859231,0.181346,0.923876,0.742501,0.41771,0.963463,0.243994,0.97409,0.577976,0.0217651,0.980038,0.817922,0.68833,0.693946,0.895554,0.495386,0.24587,0.632033,0.362125,0.0701752,0.126911,0.531919,0.405882,0.828707,0.889394,0.968941,0.931393,0.759277,0.364727,0.16187,0.121501,0.739709,0.185563,0.496353,0.600091,0.02686,0.453016,0.583215,0.00751472,0.692246,0.100201,0.321904,0.4736,0.829116,0.47008,0.294018,0.0124202,0.806924,0.517121,0.939302,0.226299,0.552004,0.815397,0.330643,0.43121,0.692389,0.587145,0.0307298,0.0423244,0.88919,0.713138,0.682642,0.167434,0.21791,0.239915,0.621679,0.158696,0.296181,0.684463,0.0206802,0.876157,0.69616,0.277045,0.150972,0.553556,0.842332,0.330088,0.701777,0.407245,0.451411,0.947354,0.527072,0.0038895,0.427089,0.531859,0.635599,0.215428,0.593185,0.370742,0.438323,0.452383,0.870063,0.555174,0.767436,0.775116,0.490483,0.0327182,0.0815108,0.801361,0.818793,0.0674605,0.172906,0.891136,0.60848,0.0535038,0.742726,0.585149,0.898014,0.93494,0.977822,0.81978,0.474685,0.32906,0.411213,0.188577,0.778515,0.334872,0.406625,0.407095,0.180319,0.841285,0.0292096,0.471079,0.42577,0.100963,0.507847,0.976846,0.23363,0.453895,0.0919622,0.020444,0.815683,0.428223,0.718802,0.770661,0.549114,0.10009,0.35882,0.567874,0.613442,0.871153,0.109449,0.808213,0.388832,0.904663,0.995556,0.330872,0.284433,0.711429,0.888266,0.0034197,0.135268,0.110685,0.896538,0.955272,0.491811,0.444174,0.144391,0.720067,0.191295,0.916225,0.946334,0.5293,0.200194,0.931665,0.629884,0.612609,0.492065,0.493036,0.640685,0.384272,0.120819,0.475054,0.848839,0.591291,0.338672,0.909766,0.348477,0.230942,0.781662,0.661479,0.44416,0.317563,0.921848,0.679754,0.687942,0.210318,0.118157,0.779736,0.845325,0.705775,0.643372,0.168654,0.964169,0.209437,0.0395707,0.410146,0.0250681,0.988666,0.262948,0.692006,0.536991,0.418708,0.601992,0.770316,0.493679,0.834771,0.31235,0.680665,0.481045,0.353386,0.529335,0.590649,0.117887,0.0458562,0.256991,0.552461,0.404476,0.332804,0.624541,0.577459,0.0773256,0.0337279,0.0718611,0.161835,0.897072,0.800882,0.112425,0.400082,0.843287,0.844087,0.180107,0.966991,0.620623,0.279853,0.44443,0.242905,0.690959,0.701112,0.362807,0.0283723,0.31728,0.923381,0.993246,0.480959,0.684326,0.105279,0.886311,0.525717,0.95622,0.833865,0.380853,0.748935,0.481853,0.261831,0.884776,0.281971,0.97005,0.335007,0.70956,0.00645667,0.818495,0.919682,0.929803,0.726606,0.995331,0.773747,0.587353,0.00565094,0.795489,0.916301,0.65335,0.123544,0.434248,0.39173,0.112724,0.668186,0.348536,0.307738,0.748548,0.491216,0.278139,0.281602,0.537501,0.947494,0.920963,0.0551295,0.103821,0.876706,0.761305,0.0460802,0.68867,0.0196867,0.203236,0.206744,0.370264,0.955496,0.047565,0.427308,0.788064,0.525109,0.62048,0.432298,0.603848,0.499176,0.936594,0.994446,0.23929,0.196777,0.905281,0.133474,0.926745,0.684679,0.165438,0.338763,0.47753,0.0813233,0.788095,0.72395,0.595297,0.48587,0.389648,0.475791,0.996526,0.246587,0.926146,0.884824,0.0839918,0.309338,0.852831,0.206372,0.795903,0.727443,0.182109,0.774175,0.420696,0.876203,0.254646,0.482273,0.879979,0.657932,0.514477,0.0296766,0.743326,0.282776,0.940076,0.855045,0.603002,0.906121,0.55584,0.724994,0.950777,0.503532,0.245861,0.628878,0.654334,0.692089,0.0808145,0.787041,0.49228,0.382678,0.19165,0.668028,0.654417,0.272264,0.479959,0.738474,0.833075,0.997974,0.873543,0.744443,0.509853,0.384931,0.75918,0.294617,0.309057,0.25044,0.117331,0.662127,0.638308,0.636863,0.229224,0.611206,0.541248,0.568304,0.193997,0.159767,0.760239,0.780576,0.86115,0.387308,0.290579,0.209835,0.142483,0.548954,0.214515,0.316224,0.0457582,0.578105,0.68541,0.905173,0.194808,0.182026,0.464953,0.660131,0.231295,0.952443,0.682716,0.36545,0.522095,0.577322,0.541068,0.882453,0.352677,0.394191,0.0877031,0.172849,0.443491,0.743017,0.0230523,0.254499,0.394083,0.739998,0.894129,0.301721,0.841025,0.873813,0.108197,0.904277,0.136392,0.643293,0.911915,0.990579,0.413193,0.302249,0.753941,0.599653,0.638915,0.573329,0.672752,0.272313,0.916467,0.343838,0.466744,0.724985,0.612684,0.95672,0.528968,0.116918,0.164374,0.282806,0.621501,0.588001,0.296677,0.119569,0.27824,0.670933,0.975343,0.849095,0.975994,0.242818,0.499087,0.421008,0.61735,0.0816378,0.208592,0.758012,0.283827,0.449136,0.154385,0.226934,0.0433589,0.838737,0.0849132,0.976699,0.556599,0.0177635,0.0562131,0.957682,0.280218,0.914729,0.131561,0.0705409,0.494398,0.97722,0.569643,0.0954442,0.184183,0.211956,0.147778,0.0809052,0.884937,0.249423,0.207922,0.503103,0.497141,0.915613,0.810182,0.0295138,0.516355,0.24439,0.149884,0.326141,0.654756,0.151207,0.474802,0.12851,0.743113,0.804285,0.988005,0.514106,0.832279,0.855352,0.84167,0.780553,0.978832,0.764346,0.579603,0.552741,0.683526,0.16754,0.889349,0.906549,0.26507,0.634603,0.369607,0.268037,0.0723129,0.0231943,0.70264,0.894064,0.459302,0.430864,0.602362,0.786116,0.249164,0.781994,0.885364,0.473014,0.827066,0.310193,0.00284904,0.707354,0.513583,0.431616,0.193616,0.990629,0.695918,0.825214,0.322878,0.191223,0.452943,0.720865,0.544518,0.546573,0.372527,0.453153,0.379532,0.0247065,0.289107,0.647906,0.382076,0.553785,0.845171,0.733278,0.330343,0.938968,0.925189,0.814525,0.650278,0.607587,0.778535,0.541309,0.349575,0.657412,0.203882,0.677756,0.604151,0.783315,0.258393,0.685968,0.0784819,0.637857,0.0444006,0.812201,0.0988424,0.912282,0.0908356,0.763235,0.79233,0.181726,0.344535,0.125659,0.697538,0.973975,0.340364,0.822468,0.0629978,0.23461,0.880226,0.0466446,0.0138999,0.435341,0.160764,0.984684,0.146153,0.695328,0.615002,0.886045,0.990928,0.127259,0.693013,0.819618,0.068643,0.677665,0.714612,0.0995062,0.912886,0.261971,0.512788,0.892938,0.00559294,0.288466,0.153312,0.981031,0.810392,0.932139,0.897506,0.676036,0.406918,0.0365934,0.956885,0.558791,0.529438,0.507847,0.913493,0.69058,0.147586,0.74876,0.941863,0.927047,0.136221,0.620772,0.0973922,0.817742,0.775463,0.800669,0.589278,0.490195,0.455863,0.0808505,0.682393,0.106395,0.0484489,0.0142467,0.130779,0.937707,0.475895,0.196239,0.0636632,0.168402,0.0686778,0.402283,0.476408,0.219679,0.90738,0.47933,0.552959,0.710656,0.0342929,0.162036,0.241021,0.676008,0.302628,0.554294,0.893261,0.0430394,0.647287,0.505623,0.36794,0.130399,0.759929,0.58136,0.405583,0.0227891,0.742259,0.971261,0.669148,0.678602,0.760619,0.929874,0.00772125,0.511459,0.263869,0.507929,0.797743,0.166151,0.171198,0.284151,0.14386,0.0642778,0.191028,0.595745,0.438364,0.861407,0.812313,0.783716,0.397907,0.448157,0.274017,0.394111,0.545268,0.0710983,0.373602,0.932378,0.178182,0.563999,0.727254,0.604442,0.311745,0.207397,0.742363,0.849656,0.771487,0.724604,0.121292,0.988826,0.462561,0.877171,0.571344,0.481772,0.609958,0.338783,0.377025,0.21394,0.866451,0.768353,0.867396,0.488296,0.280605,0.571126,0.0575437,0.238071,0.775585,0.936929,0.838416,0.17703,0.132593,0.709112,0.267819,0.227657,0.578592,0.726726,0.842919,0.458546,0.749794,0.451394,0.0772566,0.14242,0.825381,0.643662,0.175576,0.935609,0.244738,0.730016,0.274536,0.011699,0.812061,0.656983,0.757381,0.331517,0.777638,0.0871459,0.366459,0.845668,0.918574,0.0234866,0.95983,0.885098,0.708458,0.0654176,0.276066,0.0383811,0.441711,0.231348,0.226829,0.513144,0.230363,0.922857,0.850452,0.0178935,0.280668,0.650404,0.755527,0.436087,0.387384,0.897187,0.0449554,0.657422,0.223259,0.563385,0.993352,0.610545,0.76796,0.33222,0.717677,0.141528,0.251926,0.435063,0.8939,0.924253,0.230109,0.158711,0.327076,0.907803,0.416363,0.345609,0.340553,0.479902,0.813873,0.0977142,0.261762,0.806897,0.838881,0.2213,0.916531,0.643319,0.15303,0.156796,0.552947,0.924205,0.842548,0.350571,0.711346,0.702129,0.504301,0.898552,0.396504,0.433718,|0.703297,0.813662,0.233568,0.153659,0.841256,0.241604,0.941463,0.623895,0.303353,0.198149,0.656352,0.875395,0.00931048,0.359763,0.651542,0.19741,0.901998,0.0122953,0.47868,0.812468,0.322176,0.0252023,0.839189,0.994682,0.0106601,0.677482,0.300161,0.371302,0.295339,0.326828,0.989451,0.134557,0.31058,0.00507116,0.35146,0.295072,0.268258,0.455608,0.855453,0.241977,0.163584,0.369671,0.00401479,0.116547,0.816874,0.646315,0.728417,0.231844,0.378013,0.847277,0.932206,0.0300962,0.738204,0.895922,0.741099,0.641858,0.0324992,0.430815,0.39989,0.860802,0.745675,0.692494,0.106992,0.365689,0.365345,0.466269,0.269335,0.229203,0.573072,0.0971602,0.868936,0.212204,0.738947,0.165854,0.730133,0.464814,0.481764,0.128589,0.125774,0.93158,0.214246,0.739567,0.0749738,0.924999,0.246266,0.110929,0.872655,0.0981063,0.307563,0.154011,0.43468,0.25005,0.236458,0.0463607,0.177393,0.639271,0.397197,0.340243,0.677168,0.074347,0.581512,0.813932,0.63964,0.593612,0.170656,0.0374138,0.0297875,0.493299,0.441111,0.835582,0.7818,0.157912,0.239411,0.881827,0.421143,0.698558,0.677528,0.305391,0.538021,0.172459,0.775238,0.266544,0.227535,0.478382,0.237255,0.676273,0.437172,0.268554,0.225087,0.489437,0.241215,0.226947,0.191338,0.0458426,0.274211,0.0737789,0.773042,0.276506,0.393321,0.542224,0.199352,0.0666898,0.947961,0.809443,0.219864,0.448851,0.980232,0.128231,0.905188,0.406655,0.00679761,0.308452,0.804965,0.749252,0.919564,0.931324,0.575884,0.224926,0.604674,0.978896,0.882891,0.861528,0.852356,0.386131,0.109662,0.708755,0.78796,0.925625,0.579714,0.30314,0.495251,0.214017,0.272558,0.604131,0.496654,0.376948,0.534237,0.144695,0.227652,0.0849468,0.204383,0.16299,0.301959,0.13945,0.590175,0.622895,0.81359,0.979593,0.655809,0.255604,0.117483,0.0451973,0.691691,0.813916,0.449808,0.304952,0.192484,0.51841,0.90312,0.373143,0.150056,0.711852,0.54153,0.442034,0.579759,0.288932,0.719122,0.110734,0.626351,0.0139267,0.728186,0.260026,0.957218,0.026621,0.790293,0.476989,0.693162,0.589356,0.143961,0.524906,0.853232,0.0199367,0.252925,0.293078,0.0727112,0.914863,0.883864,0.0318201,0.622647,0.917877,0.470358,0.696325,0.926758,0.61528,0.0741999,0.462316,0.142915,0.216176,0.48226,0.864724,0.777544,0.685511,0.706167,0.0370019,0.769049,0.860832,0.294038,0.765702,0.222877,0.192049,0.543596,0.669901,0.0258328,0.0909353,0.515079,0.304093,0.414443,0.88567,0.054697,0.570928,0.310244,0.527336,0.934344,0.096505,0.902907,0.31529,0.668056,0.855323,0.499477,0.0433464,0.889308,0.961931,0.52578,0.0186023,0.70932,0.827779,0.882779,0.709608,0.141535,0.341694,0.401362,0.641132,0.57357,0.551748,0.400404,0.94122,0.612986,0.5099,0.670466,0.0553364,0.114332,0.692107,0.258511,0.743225,0.817293,0.242702,0.292456,0.749285,0.320079,0.400149,0.766134,0.419741,0.785143,0.718408,0.514234,0.602474,0.437393,0.33764,0.497175,0.769751,0.853973,0.32246,0.926002,0.717277,0.520112,0.382172,0.838143,0.614048,0.806682,0.468049,0.124038,0.823936,0.161742,0.904152,0.846507,0.455756,0.343757,0.5852,0.716034,0.891747,0.586017,0.289402,0.0547262,0.446468,0.779099,0.384563,0.961619,0.279798,0.662404,0.118342,0.554997,0.173484,0.916158,0.282346,0.650649,0.0758405,0.587831,0.132522,0.406575,0.288307,0.533327,0.492883,0.226022,0.898584,0.713106,0.376167,0.0886319,0.138556,0.0325388,0.0341018,0.242168,0.903348,0.608005,0.377708,0.184691,0.9909,0.350692,0.949667,0.145203,0.970432,0.501407,0.301809,0.628375,0.102536,0.916853,0.365367,0.640719,0.972816,0.805829,0.58985,0.253986,0.669494,0.66015,0.551345,0.187217,0.419733,0.371039,0.827583,0.412839,0.901588,0.278279,0.96465,0.184776,0.450941,0.88369,0.745818,0.0188621,0.961406,0.570404,0.545282,0.547438,0.21859,0.965206,0.504004,0.695003,0.466678,0.823536,0.0147822,0.360357,0.768577,0.0335509,0.0134629,0.104999,0.676283,0.860389,0.297566,0.124286,0.172897,0.45757,0.393754,0.326719,0.298187,0.667325,0.409086,0.640684,0.15247,0.0259681,0.293768,0.572325,0.224691,0.530044,0.358602,0.842502,0.212896,0.860744,0.63322,0.49222,0.174471,0.704764,0.846366,0.969583,0.360359,0.39814,0.132444,0.941162,0.000741422,0.405715,0.733554,0.096846,0.55109,0.423204,0.726313,0.282123,0.800343,0.811873,0.26084,0.581724,0.339436,0.805522,0.349843,0.698633,0.340069,0.33496,0.284051,0.091553,0.358178,0.693675,0.249327,0.500042,0.389473,0.453982,0.068776,0.145148,0.986369,0.138932,0.532853,0.541342,0.0184707,0.743198,0.318991,0.481882,0.158718,0.071991,0.108088,0.216739,0.815191,0.473149,0.866196,0.798582,0.53209,0.395274,0.326429,0.0335331,0.946737,0.244525,0.441904,0.0173913,0.806806,0.221409,0.199792,0.902886,0.15425,0.664328,0.389888,0.856324,0.271394,0.266987,0.344635,0.375342,0.224815,0.608833,0.35612,0.395463,0.40817,0.783433,0.0963795,0.571868,0.430211,0.463703,0.125478,0.617305,0.274405,0.25626,0.335719,0.339853,0.855422,0.673328,0.198295,0.0954258,0.804612,0.735299,0.720868,0.27758,0.269272,0.613572,0.34278,0.329427,0.0382023,0.176451,0.914211,0.667013,0.732657,0.633958,0.691431,0.845849,0.564675,0.622534,0.990502,0.690923,0.228449,0.880731,0.342497,0.0513276,0.603982,0.673,0.139761,0.748425,0.678309,0.934717,0.17561,0.174643,0.641778,0.833427,0.0641298,0.595727,0.17469,0.789407,0.801121,0.0166095,0.40642,0.632497,0.228723,0.735996,0.157821,0.813787,0.29919,0.00759935,0.558289,0.981529,0.121956,0.470759,0.094734,0.230147,0.1511,0.213007,0.0180569,0.345503,0.926862,0.545488,0.967988,0.0950348,0.324558,0.782947,0.130409,0.751036,0.355485,0.980567,0.680324,0.157413,0.424602,0.304172,0.464475,0.643709,0.746112,0.753205,0.312165,0.174726,0.451238,0.801407,0.584366,0.698874,0.667207,0.137703,0.0207969,0.626858,0.20484,0.954069,0.988141,0.518806,0.862164,0.491003,0.675612,0.314827,0.401301,0.836358,0.174156,0.392697,0.031862,0.340692,0.0158077,0.622844,0.217491,0.493706,0.303309,0.934448,0.507675,0.162652,0.857656,0.475155,0.0299931,0.459993,0.629033,0.177259,0.0579698,0.320724,0.641165,0.390639,0.436834,0.498881,0.521504,0.921595,0.00345695,0.0302498,0.108237,0.422291,0.291415,0.376582,0.455641,0.422132,0.534234,0.77668,0.0767398,0.529846,0.638465,0.637452,0.403894,0.276145,0.161604,0.586912,0.559573,0.227859,0.344437,0.171521,0.845578,0.487455,0.569388,0.872358,0.203224,0.352269,0.74531,0.36023,0.160182,0.958912,0.667808,0.786707,0.681636,0.574471,0.700798,0.136559,0.258927,0.43325,0.453907,0.649537,0.184878,0.844559,0.357372,0.261858,0.577834,0.435665,0.753811,0.328011,0.0217558,0.124997,0.346826,0.424364,0.983768,0.367845,0.711359,0.973694,0.619622,0.613088,0.969591,0.393726,0.921875,0.532015,0.180906,0.77886,0.840784,0.642459,0.19968,0.902835,0.553242,0.33958,0.416001,0.685851,0.591358,0.969959,0.387112,0.0891621,0.782105,0.543652,0.269014,0.0772499,0.925668,0.133748,0.459641,0.745353,0.616192,0.399478,0.133533,0.897627,0.113005,0.392814,0.240525,0.788639,0.624471,0.303677,0.954218,0.989435,0.035857,0.214297,0.42312,0.391082,0.816422,0.9461,0.966233,0.321247,0.671344,0.0731387,0.484711,0.140092,0.858888,0.634609,0.317939,0.928139,0.945098,0.414705,0.956566,0.9727,0.887918,0.364736,0.628141,0.980066,0.868797,0.84814,0.667476,0.0082792,0.32016,0.796042,0.370505,0.438843,0.488067,0.0303625,0.1185,0.194807,0.491115,0.803465,0.404079,0.433232,0.0909165,0.185534,0.752677,0.0697588,0.0187348,0.887699,0.214365,0.108965,0.881884,0.860105,0.222416,0.430661,0.595568,0.99785,0.566214,0.612131,0.666487,0.0956051,0.196686,0.133129,0.815371,0.537452,0.543066,0.874702,0.114493,0.855478,0.649543,0.0886043,0.957416,0.875693,0.369783,0.497585,0.892534,0.910768,0.195818,0.121851,0.249117,0.631716,0.313866,0.736405,0.913842,0.280859,0.775022,0.983025,0.587471,0.30347,0.476521,0.184393,0.0315631,0.279407,0.31714,0.855825,0.16596,0.397892,0.875567,0.358238,0.174811,0.170416,0.509678,0.719595,0.940033,0.132203,0.544849,0.519735,0.213109,0.470998,0.166318,0.155648,0.498765,0.927154,0.645588,0.665812,0.416628,0.14324,0.492047,0.502103,0.142189,0.212285,0.903018,0.893754,0.825246,0.856012,0.391487,0.651071,0.0926969,0.315798,0.373597,0.149349,0.0331931,0.761781,0.730104,0.881017,0.247965,0.386079,0.0699621,0.384739,0.852599,0.0567039,0.77199,0.467553,0.587786,0.109692,0.713746,0.773531,0.511997,0.512496,0.312552,0.310469,0.945266,0.920035,0.829698,0.651768,0.691398,0.70928,0.57445,0.764467,0.409373,0.647506,0.887893,0.293605,0.0823748,0.705905,0.800997,0.848398,0.452569,0.430554,0.745814,0.685479,0.220131,0.14225,0.339029,0.0132753,0.0535783,0.430861,0.955045,0.981376,0.684744,0.0789347,0.844328,0.000532508,0.00799775,0.840161,0.114566,0.460769,0.657814,0.850707,0.445577,0.0350063,0.564672,0.665274,0.815013,0.360306,0.0506907,0.523606,0.241978,0.0407182,0.745417,0.161251,0.653729,0.392057,0.261931,0.564335,0.363041,0.364222,0.487007,0.316281,0.707156,0.226023,0.919728,0.415926,0.722692,0.963437,0.815746,0.563458,0.21055,0.433653,0.0225898,0.824793,0.242539,0.576224,0.469712,0.304673,0.180723,0.408655,0.92825,0.834437,0.433373,0.684916,0.574252,0.076766,0.165542,0.258234,0.209018,0.0268737,0.394536,0.411888,0.944172,0.406965,0.42037,0.18132,0.99963,0.169137,0.416468,0.749169,0.730972,0.325267,0.848112,0.84417,0.739574,0.10213,0.708636,|0.245776,0.058396,0.917492,0.386816,0.343656,0.924524,0.869216,0.260434,0.369354,0.0536897,0.306297,0.238135,0.0332943,0.515747,0.993979,0.224728,0.566169,0.908935,0.621158,0.508177,0.598955,0.969652,0.278033,0.429898,0.114696,0.0862346,0.976436,0.590208,0.424919,0.110528,0.337756,0.9139,0.0606427,0.788486,0.725771,0.946887,0.127251,0.392308,0.611566,0.829883,0.142498,0.112046,0.998931,0.440399,0.99116,0.313069,0.711916,0.196673,0.688154,0.729615,0.156551,0.582668,0.023215,0.699978,0.985784,0.97143,0.672343,0.721723,0.11637,0.523605,0.479686,0.4702,0.185221,0.191707,0.874426,0.0796307,0.515266,0.767681,0.554689,0.395213,0.216375,0.502745,0.287831,0.567109,0.683428,0.919232,0.925407,0.375267,0.0584005,0.387963,0.772747,0.767081,0.608635,0.397172,0.987686,0.0140777,0.632236,0.979904,0.107032,0.554624,0.936309,0.911966,0.961716,0.356474,0.957459,0.154345,0.408028,0.802796,0.495337,0.151825,0.00683481,0.250719,0.785359,0.028066,0.541873,0.470289,0.85031,0.127325,0.812944,0.566186,0.448543,0.150219,0.550932,0.923657,0.143743,0.299888,0.296076,0.190676,0.140355,0.758398,0.85309,0.201391,0.217598,0.788873,0.0267031,0.193323,0.0584593,0.723055,0.247214,0.19096,0.134198,0.582947,0.131533,0.0108703,0.60662,0.215511,0.810162,0.77981,0.559041,0.667019,0.381452,0.0850147,0.683616,0.545088,0.171191,0.625117,0.495475,0.0892215,0.17912,0.886797,0.818107,0.822615,0.708853,0.608571,0.200269,0.0546337,0.29198,0.143293,0.97123,0.12664,0.987129,0.147469,0.663101,0.568101,0.889998,0.782867,0.567932,0.635344,0.103084,0.393628,0.0425297,0.519327,0.925722,0.425865,0.69072,0.460342,0.065998,0.597268,0.575965,0.263624,0.0660234,0.121848,0.577515,0.91985,0.337591,0.450178,0.307954,0.990639,0.998792,0.245242,0.0680867,0.69542,0.392667,0.880059,0.712869,0.33131,0.298781,0.0845706,0.0204781,0.641489,0.794727,0.455289,0.426213,0.516572,0.670726,0.0184141,0.857519,0.30314,0.0592511,0.696764,0.00219041,0.48041,0.280495,0.0222684,0.484092,0.256431,0.907169,0.146988,0.692154,0.24559,0.267067,0.460455,0.781422,0.446563,0.456947,0.448425,0.690749,0.247006,0.965269,0.203735,0.162087,0.380207,0.173905,0.337091,0.0827521,0.865115,0.100326,0.292714,0.450492,0.401023,0.698372,0.436754,0.406621,0.219013,0.686073,0.300226,0.991932,0.702752,0.688062,0.266008,0.582543,0.00740713,0.475542,0.57052,0.101511,0.393878,0.856313,0.177841,0.882567,0.0876983,0.576847,0.772093,0.211459,0.237878,0.311906,0.69301,0.308375,0.141988,0.454151,0.0267418,0.696855,0.894575,0.793765,0.577179,0.720237,0.799418,0.465276,0.575694,0.683674,0.572574,0.193272,0.311687,0.360874,0.275692,0.223193,0.990748,0.751734,0.626554,0.0974561,0.970876,0.780896,0.0279206,0.41106,0.353239,0.179448,0.264099,0.973151,0.643814,0.475227,0.358564,0.490539,0.532737,0.982045,0.455059,0.946009,0.337306,0.148197,0.942104,0.857898,0.404547,0.06169,0.599526,0.736594,0.681344,0.627547,0.0430843,0.138889,0.76191,0.752599,0.462637,0.0575871,0.67226,0.201964,0.794775,0.976786,0.813564,0.288094,0.0989012,0.159249,0.914105,0.429086,0.946371,0.971697,0.99862,0.620043,0.0936189,0.201585,0.476882,0.300253,0.940091,0.830219,0.80106,0.992535,0.314909,0.856988,0.644188,0.228215,0.571913,0.130221,0.372519,0.512165,0.156809,0.95424,0.326353,0.180268,0.932132,0.450698,0.37852,0.152799,0.276705,0.690241,0.0563061,0.52682,0.0333679,0.443662,0.632896,0.81195,0.700995,0.84681,0.651739,0.706532,0.39573,0.585143,0.255356,0.595273,0.531666,0.661909,0.720995,0.605336,0.930893,0.517952,0.499653,0.561908,0.402929,0.340858,0.069882,0.746804,0.690419,0.550634,0.625478,0.0732449,0.132654,0.580786,0.301254,0.641906,0.554783,0.643278,0.746549,0.395745,0.0983314,0.24553,0.697482,0.997926,0.548903,0.770012,0.778423,0.612887,0.9517,0.3742,0.982181,0.274766,0.150168,0.305294,0.46876,0.999781,0.61548,0.406827,0.695651,0.550597,0.465301,0.518056,0.535434,0.176801,0.795071,0.822753,0.942521,0.689369,0.33562,0.922621,0.955642,0.97176,0.581007,0.15101,0.0742327,0.922212,0.868675,0.114365,0.368017,0.680407,0.396569,0.841404,0.443761,0.954161,0.28029,0.995197,0.94307,0.355984,0.0068717,0.309181,0.894241,0.861834,0.201727,0.108387,0.662006,0.985101,0.745509,0.359105,0.352579,0.771588,0.419008,0.141232,0.0598073,0.0913841,0.990123,0.482067,0.991098,0.757113,0.920997,0.183808,0.58337,0.0508548,0.408926,0.511234,0.967551,0.398768,0.0594952,0.195009,0.821404,0.175824,0.617221,0.171041,0.445745,0.587541,0.0871423,0.963361,0.914123,0.451128,0.0026772,0.314271,0.490746,0.625109,0.583734,0.463841,0.555626,0.908518,0.528478,0.734535,0.464201,0.67406,0.60873,0.0395315,0.876851,0.0849241,0.912962,0.891839,0.36266,0.138047,0.224346,0.418913,0.0466793,0.349183,0.263054,0.576813,0.937966,0.0072518,0.0402868,0.0137834,0.569195,0.161312,0.882983,0.123124,0.528287,0.839423,0.386454,0.415854,0.101239,0.0976434,0.516425,0.805737,0.00379092,0.610235,0.134573,0.279553,0.381492,0.813242,0.800029,0.73684,0.435753,0.551907,0.864172,0.938402,0.460646,0.74052,0.648307,0.522599,0.764646,0.714584,0.980328,0.967688,0.996889,0.789344,0.827369,0.720893,0.999267,0.739042,0.652244,0.846789,0.0916796,0.746735,0.99746,0.121907,0.902525,0.228573,0.752705,0.769986,0.255274,0.424983,0.890615,0.987006,0.765075,0.693698,0.0755008,0.101204,0.326385,0.61259,0.123415,0.206162,0.324412,0.798272,2.15173e-05,0.168381,0.758543,0.392812,0.663801,0.875676,0.511997,0.246435,0.0781075,0.0600922,0.128202,0.826545,0.784817,0.511379,0.110871,0.0161399,0.938893,0.325126,0.154109,0.491486,0.192222,0.915642,0.387688,0.896835,0.894096,0.982306,0.0690241,0.125675,0.138396,0.763392,0.326423,0.980348,0.759975,0.570219,0.117675,0.268573,0.48132,0.0160943,0.271861,0.68197,0.145058,0.0304367,0.578681,0.673284,0.334594,0.896108,0.812345,0.67471,0.610859,0.289573,0.952345,0.955679,0.249044,0.588862,0.366815,0.271945,0.542122,0.77775,0.901038,0.47756,0.824792,0.554265,0.322117,0.65978,0.807222,0.980451,0.871704,0.956286,0.497278,0.591697,0.927096,0.236766,0.80191,0.116042,0.238526,0.542548,0.483745,0.626648,0.551352,0.93118,0.0423136,0.511776,0.793246,0.493617,0.393891,0.824534,0.850692,0.365339,0.109895,0.0897671,0.830885,0.97092,0.384501,0.376211,0.271224,0.967993,0.758227,0.544914,0.138685,0.685421,0.231505,0.552662,0.106653,0.888782,0.720545,0.68483,0.230366,0.277275,0.422726,0.934399,0.529848,0.29255,0.997436,0.85873,0.890947,0.381307,0.616426,0.489304,0.35888,0.972543,0.409033,0.472231,0.582442,0.960251,0.0315223,0.272877,0.786432,0.795238,0.861019,0.0487822,0.481474,0.642946,0.0789046,0.200648,0.256488,0.174381,0.670792,0.106346,0.829008,0.256208,0.48545,0.825645,0.558076,0.539494,0.360495,0.173851,0.798499,0.671405,0.487773,0.236707,0.899412,0.663292,0.461971,0.526216,0.312932,0.294913,0.854469,0.598741,0.682517,0.222609,0.255655,0.412406,0.0504584,0.403721,0.76906,0.0474777,0.60034,0.0286112,0.860291,0.875915,0.485847,0.842384,0.405063,0.537832,0.497836,0.5642,0.50466,0.398384,0.462987,0.317624,0.380101,0.547915,0.894736,0.329201,0.870913,0.984081,0.685817,0.973275,0.915499,0.746584,0.320918,0.684488,0.714458,0.377335,0.406325,0.99702,0.774428,0.884259,0.64117,0.0901642,0.171008,0.233724,0.591233,0.502779,0.165848,0.398649,0.953677,0.30469,0.665399,0.734085,0.39122,0.419475,0.217326,0.261295,0.971214,0.701842,0.838336,0.801992,0.983455,0.654722,0.640983,0.13665,0.562192,0.433928,0.673826,0.254206,0.379578,0.863928,0.564921,0.200453,0.698625,0.121871,0.951804,0.829227,0.311873,0.763847,0.30441,0.963701,0.174238,0.81088,0.0881839,0.897863,0.0753657,0.720273,0.218934,0.134017,0.942097,0.222741,0.628458,0.708556,0.411348,0.958662,7.236e-05,0.60389,0.864441,0.286001,0.068499,0.0205985,0.771455,0.162611,0.445197,0.396013,0.937383,0.697473,0.545176,0.373038,0.230964,0.506665,0.147945,0.774883,0.19098,0.414749,0.940936,0.0653748,0.548719,0.407553,0.893288,0.225854,0.666224,0.809675,0.47053,0.196218,0.609078,0.258769,0.537449,0.738038,0.595511,0.534277,0.136662,0.559157,0.0313246,0.00589424,0.492276,0.778012,0.933318,0.278253,0.726423,0.043944,0.767941,0.685461,0.927465,0.0463723,0.211709,0.649484,0.182135,0.301001,0.172523,0.265172,0.770388,0.914871,0.19685,0.0578872,0.0333518,0.65251,0.407798,0.147628,0.660058,0.312107,0.420814,0.263184,0.0546851,0.302475,0.270849,0.019859,0.184306,0.749807,0.00709981,0.903944,0.346789,0.453902,0.2058,0.807651,0.333517,0.771884,0.258361,0.140875,0.116655,0.097749,0.93015,0.0171273,0.285715,0.755997,0.13778,0.0124969,0.38414,0.211089,0.675541,0.780648,0.940745,0.494093,0.896293,0.302166,0.832978,0.952595,0.125988,0.299712,0.477604,0.204651,0.120882,0.0793243,0.823125,0.153791,0.772428,0.40747,0.948384,0.800408,0.770887,0.263742,0.744053,0.960082,0.254104,0.601857,0.960334,0.112852,0.0230073,0.448835,0.577851,0.956393,0.333427,0.0111495,0.8367,0.965942,0.250673,0.76476,0.16932,0.709231,0.934169,0.293666,0.193778,0.204314,0.972167,0.366128,0.620328,0.427688,0.218261,0.183094,0.521234,0.197817,0.703535,0.657829,0.634906,0.478236,0.960329,0.833878,0.0211834,0.706962,0.752083,0.888949,0.772036,0.886463,0.58846,0.775099,0.97593,0.483556,0.58181,0.767884,0.313187,0.372389,0.424251,0.422999,0.252966,|0.977372,0.837397,0.804112,0.327125,0.638298,0.664833,0.805101,0.235942,0.0771376,0.609295,0.632634,0.844591,0.221282,0.971533,0.998151,0.462828,0.328899,0.509138,0.842435,0.710677,0.0863197,0.0632383,0.0989263,0.398551,0.374863,0.858101,0.189751,0.942532,0.982654,0.668845,0.987765,0.0782036,0.775846,0.309302,0.927391,0.165789,0.511938,0.108127,0.00332755,0.0892456,0.0885111,0.801607,0.823577,0.999478,0.991119,0.0824229,0.170161,0.498002,0.474197,0.023671,0.731642,0.987979,0.0894082,0.370916,0.346249,0.51633,0.116232,0.826252,0.685279,0.592817,0.533772,0.0610823,0.0484415,0.87237,0.941095,0.637887,0.46637,0.634055,0.271226,0.704485,0.00523072,0.321986,0.591084,0.439181,0.590282,0.295009,0.0311372,0.338605,0.666506,0.877257,0.443007,0.919054,0.000830054,0.45786,0.143075,0.130236,0.259261,0.174814,0.988492,0.700968,0.495266,0.518642,0.969396,0.579693,0.304519,0.930434,0.336039,0.867178,0.0448673,0.247254,0.566234,0.657108,0.0701737,0.41762,0.200566,0.828405,0.0616041,0.680226,0.0929771,0.124817,0.66628,0.0320158,0.774315,0.172236,0.926593,0.763367,0.647558,0.768036,0.589709,0.678187,0.81526,0.216161,0.202934,0.396367,0.366577,0.202816,0.140929,0.385434,0.471344,0.0456821,0.422988,0.861538,0.665875,0.879449,0.0844263,0.161612,0.552791,0.758945,0.484127,0.49914,0.0680484,0.539258,0.596294,0.732262,0.788679,0.447451,0.340571,0.852388,0.112632,0.720932,0.402455,0.0189662,0.731036,0.1442,0.243611,0.960888,0.715593,0.863974,0.286299,0.312215,0.697351,0.773801,0.522948,0.624391,0.973596,0.927475,0.835006,0.393593,0.515494,0.962706,0.0642732,0.762791,0.101481,0.328839,0.493092,0.091472,0.298125,0.308036,0.320061,0.83875,0.268421,0.125821,0.970855,0.86634,0.715743,0.366784,0.738,0.160739,0.38145,0.246632,0.311168,0.375892,0.441783,0.117403,0.910049,0.197221,0.793106,0.403382,0.690814,0.179103,0.309228,0.913481,0.617669,0.58017,0.191179,0.082988,0.157363,0.554072,0.582685,0.429318,0.0150697,0.151067,0.324451,0.420257,0.974529,0.510948,0.734422,0.795317,0.646737,0.188934,0.602084,0.779855,0.463815,0.40806,0.28808,0.445981,0.12241,0.271628,0.352233,0.266913,0.897041,0.867331,0.0889459,0.62852,0.795567,0.412018,0.73722,0.215505,0.420432,0.660135,0.255856,0.315707,0.44412,0.0331842,0.523885,0.190942,0.989588,0.0258587,0.987276,0.685801,0.357705,0.825253,0.598727,0.094354,0.735545,0.0171105,0.465199,0.0869299,0.570213,0.94599,0.420576,0.826426,0.247103,0.0088321,0.695615,0.642564,0.562216,0.0437956,0.0691204,0.02542,0.545555,0.547817,0.205178,0.905835,0.702306,0.601304,0.233902,0.373037,0.584731,0.83798,0.732678,0.744705,0.487509,0.684226,0.073833,0.270095,0.820891,0.479966,0.384646,0.687696,0.644918,0.359018,0.0219244,0.644693,0.723412,0.331964,0.0833029,0.430074,0.296451,0.870826,0.82934,0.67486,0.0950855,0.323622,0.548476,0.591315,0.21156,0.405727,0.891503,0.0412964,0.679965,0.41395,0.0966287,0.983349,0.316381,0.090982,0.925811,0.154691,0.974563,0.776847,0.859025,0.265638,0.859647,0.552736,0.213039,0.370127,0.890438,0.0383457,0.180377,0.384003,0.271702,0.911593,0.944745,0.874539,0.524392,0.0336873,0.667617,0.644401,0.462211,0.12256,0.815441,0.415151,0.802379,0.954461,0.118293,0.377351,0.63104,0.899925,0.986052,0.339463,0.0989703,0.0240375,0.384435,0.410576,0.387502,0.678699,0.0310187,0.299355,0.818001,0.435455,0.816896,0.460998,0.061883,0.831777,0.604092,0.4222,0.777171,0.597251,0.548995,0.297551,0.453025,0.242997,0.379598,0.513815,0.649437,0.747158,0.0635036,0.0487971,0.0787098,0.967133,0.805052,0.701313,0.244712,0.756084,0.0825496,0.772465,0.0564981,0.734865,0.774353,0.857609,0.00817472,0.41087,0.959088,0.182135,0.934568,0.727968,0.272866,0.830791,0.230804,0.378249,0.540861,0.530104,0.74165,0.811997,0.0174881,0.752374,0.0355166,0.504899,0.193709,0.638632,0.772587,0.148137,0.59925,0.614938,0.414206,0.770136,0.287128,0.720469,0.764016,0.751888,0.836733,0.0631046,0.440646,0.687542,0.417228,0.511649,0.0527787,0.769754,0.598416,0.799628,0.636721,0.747501,0.156071,0.933015,0.481205,0.942836,0.99665,0.765431,0.73616,0.530948,0.830989,0.561958,0.0573632,0.269925,0.202086,0.0278242,0.312968,0.460612,0.214227,0.2164,0.539681,0.155813,0.489138,0.724681,0.512856,0.250462,0.71964,0.450201,0.296966,0.00979006,0.107597,0.853961,0.457891,0.754747,0.572302,0.800601,0.226379,0.793183,0.78617,0.264223,0.135737,0.622832,0.296238,0.288886,0.742373,0.774797,0.488974,0.971568,0.28084,0.0923735,0.485579,0.409067,0.053482,0.582602,0.583975,0.0444147,0.171802,0.191485,0.84194,0.256361,0.529454,0.337184,0.11741,0.231833,0.974953,0.244612,0.458803,0.744895,0.86168,0.994519,0.738481,0.741222,0.939694,0.608634,0.788372,0.0764514,0.198433,0.2932,0.571498,0.878355,0.2464,0.575087,0.949561,0.163437,0.317485,0.865556,0.879757,0.021014,0.1778,0.427851,0.133246,0.904181,0.918799,0.481906,0.835213,0.586004,0.556663,0.373282,0.715819,0.700957,0.738475,0.751888,0.166284,0.54155,0.376743,0.237084,0.0218728,0.488745,0.598144,0.441506,0.828059,0.813162,0.292485,0.133173,0.241039,0.953901,0.314573,0.702987,0.305054,0.977569,0.125798,0.967284,0.196,0.351816,0.247532,0.964355,0.186315,0.905777,0.741184,0.549535,0.557735,0.561764,0.135017,0.365842,0.615116,0.00826806,0.60925,0.955525,0.833793,0.920863,0.71638,0.643856,0.686481,0.00555396,0.31228,0.61954,0.350702,0.46777,0.387542,0.680305,0.985492,0.85616,0.378862,0.917942,0.302294,0.886027,0.810471,0.810706,0.159237,0.208509,0.498492,0.0834188,0.0716049,0.884978,0.343679,0.379236,0.23658,0.633991,0.67275,0.109998,0.190974,0.929813,0.7246,0.637843,0.815425,0.248365,0.12996,0.419781,0.123337,0.792624,0.22682,0.925004,0.436991,0.589141,0.885174,0.274462,0.850153,0.865968,0.965828,0.898061,0.517461,0.0616306,0.310813,0.195568,0.110201,0.742431,0.0105036,0.789664,0.639806,0.348126,0.446288,0.672164,0.681702,0.982773,0.141186,0.67691,0.954555,0.729896,0.25871,0.708148,0.51929,0.13305,0.391958,0.149547,0.415426,0.991492,0.294318,0.668548,0.243942,0.663794,0.158682,0.0212812,0.642745,0.419805,0.776185,0.210875,0.315536,0.407229,0.376913,0.421429,0.35361,0.511554,0.678193,0.230388,0.345423,0.161212,0.159149,0.56529,0.579448,0.0496451,0.739422,0.927018,0.847661,0.685901,0.956773,0.373456,0.70662,0.221446,0.403746,0.977261,0.123976,0.773034,0.825072,0.804018,0.575737,0.158652,0.781256,0.447185,0.444304,0.560518,0.858435,0.727811,0.430053,0.880081,0.23885,0.312439,0.275525,0.59202,0.718839,0.454866,0.368225,0.813921,0.0267406,0.756323,0.986716,0.380213,0.255901,0.0744655,0.112132,0.258389,0.136138,0.479762,0.292323,0.727219,0.516796,0.949766,0.332494,0.787578,0.828265,0.279858,0.773923,0.154935,0.462173,0.385005,0.226851,0.671984,0.359791,0.717129,0.167512,0.957104,0.590439,0.746936,0.454661,0.615798,0.269566,0.103555,0.392083,0.411788,0.37815,0.725036,0.657747,0.0908673,0.134435,0.550919,0.743956,0.00521445,0.314614,0.692002,0.646139,0.804501,0.0236134,0.188878,0.278679,0.572335,0.544407,0.411046,0.205753,0.22973,0.246532,0.968463,0.510185,0.929799,0.224267,0.411426,0.594119,0.983383,0.00237226,0.289291,0.478343,0.276378,0.575245,0.999372,0.526734,0.578157,0.32169,0.305202,0.622193,0.803507,0.257397,0.04896,0.581315,0.607946,0.967799,0.460048,0.486706,0.00358725,0.259214,0.762005,0.514685,0.992382,0.978408,0.340846,0.112048,0.196416,0.62534,0.643938,0.486387,0.927812,0.661272,0.19577,0.677242,0.778877,0.401832,0.719955,0.488971,0.275786,0.449172,0.606056,0.633226,0.582015,0.605894,0.299906,0.683244,0.275246,0.584938,0.741505,0.461421,0.744613,0.0550682,0.167172,0.20369,0.435965,0.500754,0.843129,0.598987,0.984657,0.481473,0.0752219,0.935248,0.283165,0.769722,0.640637,0.895839,0.806675,0.451311,0.681384,0.123265,0.792444,0.798611,0.978522,0.601275,0.923644,0.968357,0.780725,0.0174763,0.630999,0.750277,0.452884,0.413897,0.851398,0.203939,0.000846744,0.856365,0.589641,0.479656,0.75813,0.242427,0.362776,0.563569,0.201334,0.858331,0.0434048,0.196367,0.91884,0.351307,0.361345,0.408337,0.183961,0.321426,0.00762028,0.770559,0.167496,0.835378,0.412418,0.745857,0.469987,0.157237,0.56852,0.617581,0.842437,0.436343,0.939413,0.254031,0.603412,0.732094,0.321696,0.475733,0.00481898,0.119975,0.787348,0.780008,0.173225,0.252983,0.535253,0.629474,0.931661,0.403771,0.342512,0.768911,0.525818,0.577364,0.452289,0.254901,0.0655543,0.893402,0.244346,0.746788,0.872784,0.463669,0.118744,0.531303,0.544132,0.713964,0.443383,0.115093,0.834912,0.0762639,0.94041,0.344652,0.298342,0.431272,0.191451,0.858703,0.881946,0.448601,0.623356,0.226981,0.780813,0.766873,0.690967,0.870177,0.576753,0.660754,0.701732,0.912015,0.39198,0.999828,0.32024,0.832915,0.427545,0.318901,0.70347,0.12999,0.597278,0.787788,0.562901,0.537642,0.100976,0.553909,0.116515,0.531737,0.0119978,0.581325,0.422594,0.077759,0.725671,0.87894,0.031487,0.464859,0.202282,0.798067,0.590002,0.646892,0.522211,0.958609,0.613409,0.78523,0.147875,0.382706,0.836017,0.462277,0.850836,0.748719,0.409139,0.690365,0.0912482,0.0167717,0.789294,0.957214,0.133316,0.499631,0.938381,0.931081,0.503489,0.195739,0.406212,0.922607,0.577613,0.131119,0.78098,0.0927342,0.886552,0.49017,0.00907439,0.226598,0.448944,0.165366,0.824667,0.177593,0.761455,|0.295733,0.581246,0.467199,0.743973,0.130453,0.0312783,0.457838,0.932254,0.639635,0.3518,0.94118,0.611102,0.344329,0.112088,0.894762,0.259913,0.622865,0.664195,0.756797,0.729667,0.51239,0.314834,0.786164,0.990121,0.856823,0.668953,0.896999,0.833614,0.08811,0.186314,0.284509,0.277305,0.27914,0.658582,0.299294,0.645161,0.565539,0.318852,0.405629,0.182736,0.181835,0.505903,0.301941,0.990235,0.0229893,0.923249,0.447281,0.855752,0.342245,0.748824,0.083595,0.633133,0.0417258,0.532261,0.388046,0.813819,0.341312,0.638642,0.818538,0.450519,0.596686,0.8792,0.699034,0.246964,0.824208,0.400429,0.855724,0.218364,0.212614,0.716664,0.682925,0.311864,0.583196,0.561524,0.364284,0.973498,0.450404,0.676413,0.738191,0.463566,0.445358,0.142282,0.802689,0.415662,0.681395,0.308659,0.167238,0.392544,0.0581639,0.865937,0.93366,0.585853,0.340255,0.505084,0.458366,0.53899,0.0700853,0.380388,0.652129,0.477641,0.371373,0.216526,0.7767,0.940496,0.244938,0.994777,0.936573,0.896655,0.0567549,0.86462,0.0822194,0.134194,0.236965,0.103741,0.966283,0.992149,0.703064,0.426964,0.478047,0.824645,0.0609697,0.369906,0.547263,0.120691,0.541826,0.756605,0.0188283,0.532248,0.551627,0.104939,0.407623,0.538879,0.97532,0.290433,0.108808,0.304435,0.543194,0.508355,0.330543,0.615457,0.476127,0.139486,0.10554,0.741467,0.444181,0.992065,0.856046,0.471342,0.918524,0.84077,0.416111,0.39331,0.750082,0.301384,0.865567,0.318586,0.608757,0.518888,0.852325,0.225059,0.244509,0.289588,0.845329,0.296088,0.483287,0.247011,0.983898,0.669447,0.148543,0.235685,0.323011,0.566854,0.607191,0.700687,0.823928,0.323205,0.875712,0.322264,0.498659,0.197719,0.297387,0.897425,0.204503,0.159408,0.514677,0.844657,0.441043,0.0469646,0.437936,0.673389,0.702828,0.168971,0.00541407,0.112086,0.243377,0.846348,0.580554,0.90263,0.0652876,0.339743,0.0543537,0.837727,0.529353,0.741373,0.0504624,0.661777,0.0199274,0.802657,0.636303,0.721231,0.041024,0.454733,0.0652494,0.995147,0.346124,0.633169,0.699283,0.0488698,0.535657,0.476559,0.0598565,0.216659,0.432441,0.941486,0.183313,0.456618,0.173074,0.732545,0.572436,0.52482,0.705196,0.452462,0.963349,0.0020296,0.654987,0.220892,0.546692,0.725062,0.497294,0.406408,0.0198846,0.349386,0.758786,0.893461,0.895513,0.90991,0.468552,0.109172,0.323041,0.972238,0.618593,0.504207,0.632537,0.297234,0.664658,0.044341,0.756987,0.777407,0.259541,0.987037,0.152067,0.527204,0.991884,0.929923,0.245709,0.0838019,0.566583,0.708141,0.496857,0.871478,0.161399,0.144121,0.875751,0.583225,0.263466,0.168334,0.37036,0.991594,0.702192,0.511835,0.374364,0.498225,0.764311,0.681849,0.668477,0.413307,0.958068,0.477654,0.262411,0.298759,0.905311,0.757478,0.0835748,0.915598,0.553267,0.757138,0.867381,0.303587,0.833715,0.306872,0.0721094,0.771936,0.321127,0.642969,0.404947,0.153778,0.253766,0.409278,0.150782,0.342979,0.130263,0.181743,0.652151,0.32533,0.798427,0.70759,0.705437,0.918574,0.428545,0.843202,0.750701,0.619824,0.348509,0.0293236,0.770639,0.0965077,0.248392,0.0434361,0.331038,0.947368,0.905873,0.233409,0.147962,0.854267,0.472918,0.197359,0.146235,0.121605,0.0253015,0.103919,0.705699,0.614764,0.0500606,0.0128658,0.640973,0.683207,0.404621,0.509999,0.315354,0.424376,0.888214,0.890584,0.795273,0.961877,0.779597,0.733805,0.932027,0.523921,0.897643,0.941449,0.312664,0.312198,0.72883,0.668751,0.0754396,0.403105,0.546105,0.880395,0.872143,0.639404,0.565176,0.439072,0.0415316,0.37845,0.605542,0.215271,0.633202,0.378727,0.516946,0.931935,0.417579,0.0900168,0.00301206,0.203004,0.23311,0.239187,0.42023,0.636248,0.397373,0.337338,0.144454,0.509455,0.655116,0.038672,0.93423,0.952531,0.280432,0.923163,0.835617,0.488784,0.618779,0.522905,0.975648,0.240606,0.574713,0.150936,0.706991,0.0478675,0.707719,0.591988,0.387517,0.129162,0.940979,0.102005,0.819242,0.206235,0.203019,0.184971,0.660631,0.151692,0.905473,0.77101,0.146381,0.361648,0.544258,0.820055,0.952578,0.759609,0.369979,0.751462,0.481273,0.289075,0.716433,0.0725142,0.860287,0.633774,0.64193,0.653382,0.152798,0.231194,0.466156,0.847442,0.642877,0.0610884,0.84071,0.0201897,0.956459,0.604278,0.730396,0.450834,0.0455834,0.567059,0.925102,0.699169,0.411924,0.901175,0.142181,0.912119,0.152732,0.161847,0.143697,0.686054,0.780475,0.442192,0.487085,0.544833,0.864801,0.88671,0.389787,0.7729,0.0768014,0.693161,0.923019,0.104485,0.348597,0.53477,0.0653545,0.794608,0.519005,0.741822,0.450592,0.276184,0.614278,0.559109,0.341725,0.0956891,0.90533,0.685758,0.033182,0.0695076,0.236131,0.501389,0.398214,0.324425,0.822884,0.622823,0.758354,0.480079,0.974506,0.145693,0.959849,0.516952,0.782569,0.24653,0.792041,0.41388,0.679259,0.879743,0.671382,0.280307,0.307291,0.179931,0.0895496,0.827761,0.687726,0.611756,0.535226,0.73477,0.33038,0.768192,0.633069,0.588584,0.561432,0.786126,0.649036,0.296931,0.905202,0.615505,0.12819,0.470338,0.495435,0.0605116,0.581922,0.242099,0.820469,0.50587,0.729644,0.644588,0.465423,0.578503,0.61779,0.790087,0.0587144,0.778199,0.282275,0.387379,0.25233,0.821253,0.838222,0.781549,0.375231,0.403716,0.515167,0.757129,0.437688,0.507834,0.743472,0.425351,0.574183,0.485102,0.0582641,0.768049,0.922932,0.380227,0.954244,0.42529,0.47409,0.00317746,0.877818,0.948918,0.315086,0.217102,0.0324349,0.793694,0.726828,0.956139,0.735522,0.792089,0.401595,0.392024,0.775511,0.176907,0.251576,0.219767,0.290458,0.660813,0.019794,0.0555475,0.190931,0.386358,0.0990531,0.494567,0.503485,0.226423,0.928124,0.749166,0.246883,0.549604,0.240599,0.868353,0.104734,0.76268,0.263165,0.358796,0.676283,0.53065,0.724581,0.333325,0.25902,0.769813,0.631028,0.908846,0.875035,0.556788,0.226927,0.507468,0.210014,0.384901,0.840283,0.392739,0.192935,0.53395,0.174146,0.29965,0.698383,0.295729,0.0754333,0.732198,0.0632922,0.559033,0.0415204,0.424295,0.205053,0.265279,0.0727408,0.100514,0.536162,0.93757,0.316874,0.421026,0.220522,0.733578,0.571028,0.985682,0.639848,0.257843,0.831398,0.305234,0.594658,0.523744,0.532547,0.0619916,0.563859,0.754655,0.590799,0.124084,0.426481,0.366683,0.744233,0.586765,0.201955,0.547252,0.40182,0.941298,0.355688,0.518559,0.244686,0.292595,0.532892,0.519595,0.599569,0.884659,0.724319,0.653796,0.726093,0.368242,0.928173,0.5521,0.137847,0.35322,0.349886,0.479211,0.923386,0.429129,0.0185938,0.314889,0.679424,0.393974,0.377631,0.0970547,0.560919,0.854447,0.00994295,0.920289,0.558337,0.835357,0.134027,0.156471,0.641974,0.641254,0.194638,0.104916,0.914291,0.0988861,0.0932171,0.699913,0.845725,0.566025,0.626901,0.327366,0.121573,0.954392,0.501283,0.0992416,0.640315,0.0862911,0.961773,0.460014,0.60582,0.188499,0.623374,0.949632,0.120649,0.319155,0.135972,0.072122,0.297525,0.279593,0.313972,0.00557345,0.441767,0.109464,0.819568,0.60121,0.503617,0.760192,0.167418,0.245918,0.688713,0.773856,0.018452,0.704437,0.0107251,0.517344,0.694532,0.221703,0.940913,0.584981,0.449821,0.0731037,0.450617,0.474548,0.610378,0.378419,0.281567,0.135657,0.753139,0.380888,0.305757,0.443763,0.869548,0.0731111,0.254522,0.186999,0.84892,0.814895,0.0858287,0.488761,0.783615,0.785577,0.439128,0.979931,0.973463,0.438365,0.106664,0.660829,0.227034,0.715133,0.370902,0.0490707,0.463181,0.746458,0.544076,0.45462,0.812081,0.261059,0.169411,0.0116555,0.865445,0.243318,0.942271,0.580501,0.196274,0.675864,0.913978,0.19199,0.0995904,0.0531668,0.605121,0.249997,0.581,0.694909,0.275201,0.0374852,0.403287,0.606171,0.697831,0.573074,0.507133,0.0138543,0.39241,0.561768,0.156993,0.876857,0.975617,0.962037,0.190255,0.282408,0.709932,0.372702,0.738949,0.751771,0.0789416,0.683621,0.0471341,0.978382,0.205916,0.0940439,0.520663,0.951829,0.925454,0.309581,0.416926,0.515368,0.766165,0.0749559,0.566305,0.962216,0.663544,0.422641,0.509441,0.98883,0.91604,0.565675,0.999663,0.667819,0.939696,0.0999993,0.764067,0.607007,0.699235,0.00291485,0.219567,0.547204,0.513214,0.304626,0.453395,0.82981,0.0801833,0.170646,0.651043,0.205023,0.565217,0.142101,0.0190989,0.716064,0.784117,0.381557,0.294637,0.578795,0.880424,0.440533,0.334551,0.783809,0.571538,0.14534,0.174461,0.386395,0.914862,0.154301,0.281061,0.139459,0.350114,0.737285,0.394203,0.706086,0.718473,0.118345,0.570548,0.0558754,0.171144,0.336527,0.280945,0.197458,0.967361,0.0434329,0.122296,0.584635,0.113949,0.291651,0.134015,0.923618,0.944933,0.479006,0.888586,0.307084,0.260783,0.539783,0.683367,0.569752,0.201876,0.0307361,0.598219,0.304696,0.114491,0.752444,0.938875,0.642484,0.891827,0.651103,0.208947,0.342823,0.768157,0.301954,0.904308,0.929227,0.441614,0.0279378,0.790649,0.294952,0.350267,0.0485613,0.621599,0.401109,0.379528,0.614131,0.854509,0.724541,0.78736,0.248254,0.385284,0.980146,0.970361,0.285774,0.0168531,0.155479,0.826302,0.919846,0.697879,0.996621,0.761923,0.398041,0.376988,0.51787,0.6865,0.475578,0.235994,0.850166,0.0865154,0.997982,0.62747,0.0913146,0.149177,0.332337,0.39192,0.337856,0.109609,0.473974,0.388597,0.803562,0.476578,0.98408,0.972739,0.169244,0.968208,0.734647,0.545938,0.684668,0.961862,0.0882438,0.857255,0.32663,0.41348,0.820901,0.844294,0.127712,0.801587,0.664238,0.149803,0.458575,0.749819,0.866086,0.679923,0.130061,0.204871,0.242381,0.848045,0.237158,0.352441,0.611292,|0.880893,0.519494,0.855038,0.762102,0.397622,0.870828,0.858052,0.943928,0.964751,0.646573,0.947632,0.423148,0.0586541,0.99091,0.401827,0.425756,0.98885,0.258217,0.632133,0.0135245,0.940847,0.676128,0.765474,0.720039,0.609141,0.751851,0.608026,0.0739515,0.0508174,0.840947,0.187268,0.930879,0.206545,0.619387,0.329247,0.768095,0.661724,0.00967914,0.626341,0.0204527,0.682171,0.182669,0.105318,0.932653,0.481156,0.276072,0.61934,0.728902,0.82108,0.897867,0.000970006,0.580585,0.926568,0.705845,0.432854,0.507629,0.159458,0.542302,0.387148,0.864886,0.985861,0.604667,0.42908,0.940975,0.241015,0.719162,0.244876,0.556241,0.758473,0.606312,0.593791,0.630892,0.0186979,0.746188,0.0482929,0.275229,0.777106,0.161941,0.171372,0.92627,0.137644,0.531504,0.0420775,0.973828,0.165843,0.279295,0.925485,0.571773,0.00154281,0.329283,0.885665,0.468887,0.692557,0.697227,0.310016,0.596285,0.0835462,0.160192,0.133363,0.716502,0.943605,0.337016,0.298188,0.130267,0.992719,0.455626,0.706981,0.804897,0.00221747,0.15084,0.371081,0.782572,0.508381,0.208548,0.371973,0.348888,0.128591,0.932215,0.741046,0.244163,0.57703,0.0927465,0.628962,0.391277,0.872031,0.434095,0.377963,0.489581,0.81882,0.886622,0.969141,0.794961,0.406921,0.0545816,0.983228,0.0439655,0.854244,0.498928,0.046707,0.328743,0.315438,0.0892816,0.178476,0.66694,0.48069,0.131102,0.945517,0.303432,0.635308,0.507274,0.0805211,0.583605,0.359253,0.188815,0.837174,0.0709455,0.0540212,0.0102737,0.458144,0.647854,0.278152,0.419769,0.493314,0.149943,0.000316262,0.66944,0.0043413,0.822113,0.531452,0.893934,0.402606,0.414681,0.561702,0.196414,0.616808,0.18142,0.35587,0.685727,0.86281,0.120908,0.216644,0.821883,0.383338,0.503181,0.841259,0.0452857,0.685476,0.369052,0.323036,0.596344,0.788772,0.909606,0.619633,0.610103,0.268756,0.702988,0.000561774,0.278335,0.344972,0.791,0.226368,0.824017,0.833908,0.275908,0.228777,0.181972,0.980741,0.826459,0.566978,0.330305,0.966716,0.249602,0.45325,0.347247,0.627743,0.253337,0.0446396,0.391762,0.976936,0.881968,0.845787,0.177857,0.760448,0.895176,0.0311403,0.786742,0.488129,0.688065,0.884655,0.73052,0.941176,0.142949,0.612941,0.349637,0.276427,0.98279,0.380688,0.6193,0.677796,0.430946,0.109252,0.55315,0.0734832,0.83643,0.0922458,0.266152,0.0143807,0.247811,0.551431,0.72488,0.66816,0.752839,0.668153,0.0891442,0.173042,0.792584,0.929279,0.473765,0.379558,0.72543,0.701039,0.857864,0.603272,0.320195,0.90243,0.77547,0.449121,0.856022,0.647381,0.260191,0.22853,0.0267293,0.619479,0.433485,0.609525,0.727587,0.384926,0.0763373,0.595127,0.953208,0.0768193,0.918237,0.583815,0.5036,0.190229,0.823046,0.88665,0.655316,0.0737158,0.178255,0.737561,0.992876,0.578513,0.598195,0.0873367,0.353264,0.737808,0.606527,0.158004,0.800408,0.42505,0.0861885,0.883238,0.677005,0.643171,0.210073,0.66564,0.177113,0.116389,0.929812,0.45377,0.788799,0.538915,0.794275,0.0034281,0.172397,0.583454,0.947434,0.899425,0.191059,0.168089,0.767651,0.227888,0.216444,0.441912,0.282235,0.212397,0.124223,0.325109,0.457643,0.508028,0.0172273,0.169293,0.963112,0.892515,0.689078,0.820974,0.5861,0.187441,0.356138,0.536575,0.8667,0.721875,0.418344,0.819285,0.165837,0.324555,0.651779,0.372681,0.356208,0.0714719,0.674613,0.0250468,0.235093,0.384596,0.0275848,0.741862,0.172709,0.924049,0.969629,0.299917,0.509849,0.961109,0.569939,0.758121,0.00341374,0.650042,0.484999,0.285625,0.45051,0.356052,0.650122,0.605736,0.0511701,0.17008,0.247019,0.851037,0.522227,0.113232,0.697966,0.47358,0.355817,0.170768,0.517437,0.915847,0.952061,0.527862,0.813032,0.798065,0.00541961,0.488523,0.0343994,0.303059,0.853675,0.919038,0.802031,0.947892,0.0198846,0.714247,0.00548631,0.746581,0.0789446,0.105135,0.5008,0.678846,0.522372,0.799323,0.833835,0.392625,0.24658,0.919703,0.979345,0.0662372,0.688809,0.71242,0.228424,0.579455,0.0783356,0.470603,0.402425,0.0480617,0.161551,0.488198,0.440575,0.335299,0.975538,0.959052,0.440623,0.819666,0.216233,0.565339,0.620195,0.689411,0.220484,0.92247,0.90419,0.922417,0.598103,0.502414,0.727139,0.233837,0.185689,0.167699,0.419087,0.471318,0.627803,0.208742,0.277911,0.921547,0.119037,0.710168,0.484527,0.789497,0.645236,0.988505,0.535021,0.00175554,0.871467,0.396586,0.466359,0.545385,0.27277,0.127547,0.940247,0.745658,0.0434092,0.889218,0.349004,0.741171,0.0836177,0.30111,0.416912,0.223619,0.544765,0.654109,0.773768,0.839167,0.0673702,0.566755,0.0863403,0.694916,0.847896,0.259097,0.496096,0.442513,0.51489,0.861314,0.535089,0.603699,0.891772,0.824035,0.34144,0.717472,0.884363,0.424427,0.784663,0.131385,0.0361416,0.199175,0.346372,0.559429,0.851824,0.981684,0.52216,0.94313,0.704688,0.746796,0.231014,0.598298,0.222341,0.729687,0.346635,0.687224,0.591855,0.0345777,0.0576007,0.420405,0.0296515,0.532457,0.978638,0.481936,0.892161,0.014832,0.48354,0.152779,0.521331,0.61081,0.726531,0.0495637,0.415656,0.598919,0.171201,0.86008,0.697722,0.558217,0.820398,0.731597,0.620843,0.684953,0.811149,0.189853,0.765597,0.147604,0.451393,0.0274956,0.497778,0.629051,0.0268956,0.667478,0.859945,0.98895,0.121406,0.792373,0.0484621,0.625842,0.23093,0.573842,0.217965,0.991421,0.23132,0.0721018,0.645828,0.812857,0.223463,0.948606,0.616638,0.859806,0.225732,0.882146,0.976615,0.730761,0.334186,0.324855,0.924092,0.619838,0.009152,0.497202,0.631912,0.16724,0.976629,0.129934,0.710208,0.634931,0.265803,0.620295,0.358202,0.751357,0.259971,0.121583,0.911618,0.324042,0.755427,0.903122,0.332179,0.419461,0.329221,0.781493,0.0779347,0.510148,0.0521864,0.458805,0.415291,0.561969,0.0561181,0.988352,0.267665,0.605117,0.0896201,0.23078,0.995655,0.934449,0.474912,0.887108,0.893453,0.0302196,0.659235,0.544812,0.62516,0.403916,0.718794,0.154489,0.155833,0.637432,0.292374,0.315691,0.496069,0.682813,0.792787,0.865527,0.597321,0.80842,0.707321,0.404249,0.6026,0.830722,0.921649,0.0393332,0.961627,0.259873,0.241864,0.184891,0.881754,0.864041,0.0075435,0.600368,0.458048,0.118118,0.357314,0.498357,0.246183,0.166058,0.134142,0.0811433,0.438233,0.706373,0.876931,0.833995,0.918747,0.347272,0.77114,0.15616,0.613242,0.866456,0.157072,0.339082,0.613929,0.489912,0.521373,0.511162,0.62525,0.376554,0.671297,0.716567,0.48847,0.531771,0.968544,0.92649,0.00185788,0.336443,0.501576,0.743753,0.0616744,0.669653,0.497932,0.599237,0.0996886,0.433705,0.901172,0.829812,0.458305,0.968587,0.158191,0.461283,0.00511307,0.686536,0.95777,0.453818,0.162483,0.92296,0.924159,0.399707,0.619112,0.299833,0.937072,0.515981,0.496606,0.944536,0.1257,0.0412956,0.111969,0.0213637,0.85646,0.359026,0.504374,0.347575,0.591553,0.855644,0.21795,0.0699894,0.384737,0.877505,0.881264,0.312356,0.238394,0.901559,0.0716622,0.928221,0.202688,0.182598,0.137952,0.810696,0.936135,0.737369,0.0336992,0.571907,0.882407,0.495484,0.713782,0.627731,0.15603,0.584442,0.864638,0.86891,0.351594,0.161205,0.844209,0.896042,0.096833,0.350532,0.815954,0.0221817,0.00569743,0.843417,0.109882,0.764462,0.683674,0.69891,0.300272,0.113746,0.826507,0.792494,0.785331,0.259775,0.788329,0.949005,0.290425,0.307391,0.478601,0.78176,0.0263386,0.313706,0.619492,0.811292,0.374865,0.908635,0.143731,0.761795,0.197161,0.610503,0.141816,0.744259,0.488908,0.182965,0.70792,0.0938298,0.699824,0.498559,0.172465,0.628944,0.43222,0.0603462,0.840101,0.630752,0.495817,0.938423,0.837411,0.813202,0.653949,0.166554,0.459824,0.367323,0.33602,0.0646413,0.0128226,0.862364,0.528958,0.409436,0.266701,0.209621,0.664533,0.85331,0.872937,0.166856,0.236371,0.83019,0.482697,0.964483,0.129162,0.00880396,0.313035,0.39236,0.182026,0.66862,0.728741,0.791334,0.860301,0.0516597,0.309264,0.523235,0.232251,0.217752,0.0557972,0.0215948,0.211007,0.709971,0.754334,0.0797821,0.00157309,0.148763,0.407739,0.38445,0.0530412,0.982821,0.51426,0.69204,0.815693,0.0328283,0.530017,0.982239,0.800206,0.535316,0.249217,0.591415,0.904827,0.000848651,0.586963,0.216987,0.916276,0.784031,0.148408,0.873704,0.928632,0.459949,0.1849,0.477418,0.902211,0.920117,0.760963,0.161636,0.0917239,0.511788,0.00442827,0.00675327,0.858488,0.946354,0.804527,0.0984392,0.643422,0.448803,0.277055,0.0828382,0.915629,0.54448,0.539746,0.469567,0.461779,0.229248,0.859951,0.644301,0.270433,0.483545,0.758072,0.873223,0.916272,0.397256,0.0242174,0.911175,0.913771,0.833663,0.250643,0.949039,0.490411,0.755507,0.511125,0.465403,0.200497,0.0590228,0.618618,0.0557658,0.185039,0.470157,0.447915,0.861451,0.816306,0.581135,0.680973,0.383271,0.595832,0.440785,0.319558,0.780634,0.706838,0.928799,0.651801,0.368958,0.0762916,0.629212,0.635796,0.178092,0.775485,0.744433,0.0785572,0.512386,0.896254,0.218674,0.00176311,0.13396,0.0136316,0.726576,0.869119,0.400932,0.448046,0.604939,0.457755,0.988907,0.570119,0.905138,0.392316,0.124456,0.69284,0.676657,0.91483,0.0448135,0.843541,0.12222,0.027792,0.368338,0.778061,0.69571,0.0150929,0.059948,0.403233,0.863886,0.765678,0.630847,0.963735,0.478826,0.974576,0.191873,0.132828,0.560557,0.955884,0.0554227,0.00700039,0.441701,0.272773,0.342294,0.341554,0.373949,0.440491,0.910033,0.458432,0.378174,0.242306,0.64235,0.962881,0.995174,0.399558,0.480922,0.200579,0.72671,0.650693,0.615229,0.696759,0.825851,0.677318,0.415136,0.986737,0.951876,0.748833,|0.0687003,0.934796,0.862876,0.688418,0.306174,0.0864772,0.98629,0.723016,0.173423,0.674452,0.919559,0.828792,0.385989,0.716595,0.855479,0.228641,0.416681,0.636257,0.315376,0.794581,0.91113,0.153374,0.00479656,0.572289,0.668898,0.687433,0.190018,0.24173,0.0296063,0.0292541,0.323151,0.890052,0.434673,0.665748,0.975227,0.454134,0.662614,0.060876,0.227926,0.866106,0.922385,0.552818,0.694419,0.260901,0.537362,0.577011,0.765142,0.825642,0.296986,0.170381,0.366555,0.23476,0.372841,0.282522,0.283471,0.319885,0.574711,0.993493,0.11417,0.138398,0.85083,0.556836,0.150902,0.957468,0.136885,0.506346,0.831656,0.747905,0.888301,0.469161,0.444295,0.0361965,0.0442413,0.766508,0.261484,0.405879,0.74753,0.326079,0.8227,0.618038,0.666076,0.882562,0.076009,0.868896,0.933648,0.40273,0.380668,0.500588,0.937056,0.356912,0.848575,0.342082,0.274703,0.795894,0.138721,0.692361,0.48555,0.984076,0.111988,0.0418333,0.741725,0.993646,0.644009,0.981414,0.6322,0.293662,0.356003,0.687511,0.882322,0.0340074,0.81716,0.452513,0.23357,0.458225,0.817798,0.919432,0.500118,0.762619,0.951354,0.52179,0.823338,0.180258,0.279239,0.436055,0.979152,0.138331,0.281455,0.264808,0.17055,0.246075,0.346924,0.804865,0.0944712,0.172543,0.145009,0.886504,0.617105,0.830245,0.485781,0.86618,0.441502,0.202081,0.948305,0.351322,0.441971,0.218826,0.988811,0.963319,0.980236,0.399731,0.386322,0.281457,0.133476,0.280853,0.988555,0.0230252,0.38184,0.785318,0.302045,0.37895,0.608034,0.561406,0.566147,0.814059,0.771831,0.0945336,0.209975,0.940063,0.533059,0.56924,0.976857,0.372717,0.353616,0.780973,0.71325,0.483991,0.651164,0.558025,0.228979,0.402269,0.561856,0.703839,0.737599,0.864547,0.472252,0.30741,0.656278,0.208114,0.409008,0.510599,0.30193,0.664721,0.604282,0.555994,0.759337,0.24224,0.754699,0.192319,0.0957004,0.826722,0.27541,0.439883,0.0466715,0.541663,0.903786,0.914177,0.0156305,0.693606,0.391073,0.151134,0.854996,0.399891,0.935245,0.825345,0.249784,0.481598,0.398649,0.327237,0.546252,0.333942,0.0458663,0.978423,0.716478,0.321614,0.21373,0.526904,0.343079,0.568113,0.0502305,0.0522972,0.65914,0.630959,0.311454,0.833951,0.215563,0.271512,0.706809,0.947553,0.0145551,0.906122,0.432309,0.0512898,0.886581,0.668462,0.447878,0.992927,0.797095,0.269542,0.0252607,0.972466,0.00666875,0.927829,0.526864,0.195609,0.686158,0.594429,0.565466,0.365472,0.843623,0.527615,0.50355,0.950081,0.987159,0.0285269,0.172386,0.398108,0.444752,0.539388,0.771247,0.644331,0.536484,0.906763,0.870305,0.322598,0.165648,0.508002,0.659506,0.689499,0.135473,0.730403,0.505549,0.960732,0.137577,0.5261,0.210082,0.568022,0.478287,0.0320419,0.147279,0.0657276,0.932699,0.0350102,0.509997,0.28407,0.035445,0.492252,0.700467,0.163895,0.401492,0.842713,0.820709,0.0405118,0.577833,0.427899,0.0867417,0.301884,0.0930602,0.353458,0.162476,0.552637,0.951127,0.0315315,0.436013,0.793632,0.0131007,0.573031,0.25852,0.657132,0.809783,0.176505,0.0394546,0.176724,0.670103,0.210142,0.653033,0.021961,0.464171,0.631726,0.298276,0.38588,0.882015,0.905381,0.0882939,0.120073,0.508381,0.925308,0.756333,0.176273,0.402286,0.31099,0.335266,0.148958,0.2661,0.454403,0.751676,0.449084,0.893377,0.508414,0.0327238,0.625605,0.0330824,0.0766135,0.348218,0.363953,0.0360941,0.990904,0.902686,0.00168622,0.420276,0.232953,0.0248899,0.901021,0.0542758,0.958448,0.392905,0.625747,0.24081,0.485239,0.94893,0.463976,0.737185,0.699843,0.271689,0.845808,0.0234237,0.871072,0.0794705,0.961223,0.187914,0.927583,0.00130969,0.0461438,0.729305,0.128848,0.722402,0.670062,0.615494,0.212458,0.778881,0.0179055,0.843764,0.785616,0.849162,0.522411,0.754091,0.151606,0.423162,0.120353,0.19208,0.836381,0.107022,0.618422,0.414534,0.142969,0.131163,0.301545,0.556788,0.206214,0.228995,0.745907,0.924105,0.786462,0.811856,0.0133106,0.0706998,0.269417,0.262897,0.543242,0.413836,0.23662,0.923867,0.546456,0.511556,0.759179,0.942697,0.0747653,0.541145,0.778334,0.592248,0.479827,0.596016,0.955085,0.962767,0.401273,0.359313,0.331289,0.0706221,0.570442,0.861831,0.891554,0.81692,0.999631,0.0859964,0.654121,0.183893,0.0200068,0.983567,0.352542,0.80826,0.917777,0.858171,0.291491,0.736509,0.0720508,0.00517547,0.124011,0.977211,0.826789,0.0878615,0.54957,0.27518,0.724803,0.668892,0.296152,0.567686,0.416822,0.695737,0.141255,0.682068,0.655062,0.115804,0.326727,0.38086,0.45603,0.543753,0.697516,0.544473,0.0128723,0.0201772,0.903795,0.0338804,0.924915,0.62097,0.237115,0.48276,0.230375,0.983029,0.700079,0.783072,0.777754,0.859324,0.0674117,0.135427,0.698678,0.0352976,0.013266,0.0233228,0.97771,0.784501,0.777012,0.974089,0.157082,0.00212985,0.870376,0.0123979,0.873516,0.916857,0.314754,0.603947,0.640548,0.623933,0.836932,0.859451,0.712744,0.848303,0.00315112,0.182379,0.103209,0.771426,0.975854,0.362835,0.899895,0.683687,0.0724958,0.867755,0.122662,0.57313,0.47754,0.275326,0.466014,0.340331,0.767067,0.747081,0.0476675,0.890898,0.542507,0.103446,0.0645236,0.540101,0.535284,0.195501,0.0785187,0.687668,0.0892813,0.105924,0.700742,0.0729116,0.668998,0.177855,0.562251,0.519631,0.794282,0.689726,0.750874,0.851009,0.971396,0.364763,0.774008,0.918348,0.182364,0.863428,0.991568,0.320774,0.882585,0.404082,0.783803,0.362328,0.571572,0.11627,0.949221,0.230892,0.0304114,0.16023,0.341682,0.353043,0.665131,0.377813,0.0274654,0.723742,0.555901,0.472328,0.939494,0.0653731,0.470804,0.7101,0.0617456,0.0745183,0.354843,0.172145,0.651991,0.679565,0.164021,0.715995,0.851916,0.661792,0.663557,0.956607,0.865983,0.386903,0.0741037,0.324314,0.510852,0.277023,0.709755,0.970859,0.776544,0.858149,0.0763596,0.950782,0.964899,0.328729,0.0374618,0.1201,0.688443,0.767242,0.062021,0.947937,0.342677,0.981281,0.566877,0.400374,0.802215,0.696003,0.733943,0.66088,0.622131,0.319193,0.414596,0.724388,0.790882,0.066034,0.316443,0.350808,0.554415,0.119334,0.00657445,0.19787,0.533256,0.910035,0.26676,0.166477,0.998061,0.456373,0.635862,0.868456,0.903658,0.0555874,0.644652,0.00792778,0.626599,0.679752,0.532925,0.18701,0.440611,0.250595,0.310021,0.62133,0.545195,0.22465,0.189819,0.648802,0.788388,0.148295,0.329305,0.0845787,0.163111,0.452807,0.145548,0.747258,0.403444,0.728075,0.498323,0.297224,0.535161,0.803176,0.18652,0.666677,0.253467,0.711962,0.918413,0.540883,0.861533,0.0791017,0.873813,0.113906,0.778516,0.00917041,0.736574,0.643294,0.481653,0.995104,0.809502,0.518898,0.11737,0.257037,0.876144,0.70241,0.458939,0.798473,0.904518,0.155365,0.0960274,0.292908,0.978731,0.569881,0.86177,0.121288,0.16488,0.48348,0.18566,0.99308,0.852005,0.893701,0.579217,0.305724,0.883168,0.778458,0.462429,0.690372,0.490304,0.923254,0.101423,0.74035,0.332401,0.972109,0.592741,0.187621,0.355045,0.240866,0.485684,0.270351,0.332274,0.462866,0.587938,0.813177,0.393162,0.870775,0.44517,0.693891,0.170063,0.436674,0.73641,0.445782,0.7139,0.866299,0.385133,0.0589847,0.306379,0.459652,0.306481,0.544901,0.109781,0.638265,0.251454,0.10388,0.471607,0.823257,0.85947,0.269828,0.568191,0.327233,0.803434,0.966588,0.113072,0.32328,0.70045,0.626232,0.678769,0.952497,0.820483,0.671092,0.0628819,0.594062,0.351913,0.799421,0.870886,0.136023,0.462611,0.498225,0.452145,0.718025,0.362788,0.0387089,0.0425327,0.398693,0.658301,0.989213,0.0874441,0.383997,0.149305,0.182024,0.779557,0.370051,0.872435,0.73917,0.0742999,0.933794,0.371178,0.296272,0.693275,0.794879,0.388609,0.300824,0.769473,0.139153,0.0377986,0.885571,0.0322332,0.85355,0.50947,0.13454,0.501789,0.78955,0.181252,0.892449,0.347646,0.927386,0.907431,0.0943955,0.869556,0.0442063,0.393108,0.10163,0.394929,0.812529,0.896177,0.726927,0.624845,0.0532012,0.136381,0.0333024,0.0677392,0.21442,0.35898,0.196702,0.921201,0.474454,0.840537,0.781297,0.17538,0.0966756,0.345211,0.529496,0.573451,0.296217,0.0581445,0.568967,0.0822796,0.740396,0.251988,0.173968,0.935293,0.141295,0.417881,0.593134,0.127555,0.139226,0.421713,0.797053,0.241921,0.740634,0.570261,0.322224,0.0231633,0.606406,0.633266,0.936085,0.748633,0.791293,0.11237,0.107371,0.965531,0.462626,0.377038,0.090449,0.473041,0.698987,0.719065,0.593857,0.746463,0.13563,0.342102,0.730694,0.815683,0.625301,0.950629,0.549525,0.383674,0.847845,0.15547,0.231686,0.00227833,0.101657,0.744249,0.454432,0.611993,0.941996,0.667119,0.742833,0.204551,0.442185,0.565571,0.0972009,0.458993,0.917605,0.0694569,0.311089,0.727015,0.948833,0.676812,0.762418,0.901371,0.286421,0.731381,0.979545,0.178409,0.50828,0.391062,0.49089,0.247783,0.909947,0.638446,0.399722,0.663703,0.458634,0.305831,0.886578,0.951511,0.330867,0.167732,0.78171,0.779312,0.475836,0.344479,0.90934,0.924892,0.237231,0.823996,0.464536,0.295111,0.733145,0.899974,0.0555152,0.917575,0.93678,0.717065,0.252013,0.884673,0.663851,0.246334,0.3554,0.737458,0.906347,0.333837,0.282005,0.157821,0.65118,0.237384,0.232321,0.741349,0.971287,0.175638,0.142945,0.0914867,0.74718,0.366482,0.277715,0.943506,0.926386,0.638274,0.306929,0.392991,0.521557,0.205861,0.970823,0.153167,0.430751,0.703543,0.462551,0.284134,0.280282,0.654523,0.165837,0.60404,0.941523,0.0417382,0.638844,0.44388,0.732287,0.119718,0.570146,0.10647,0.510538,0.464509,0.705393,0.95693,0.00230652,0.250038,0.229022,0.952146,|0.633858,0.931516,0.179645,0.22944,0.447355,0.347321,0.329034,0.0395055,0.0731568,0.552146,0.736141,0.319237,0.975002,0.724077,0.674991,0.580268,0.0383113,0.444944,0.95653,0.125881,0.438877,0.728474,0.827228,0.262966,0.388636,0.926471,0.991767,0.503033,0.90409,0.177961,0.166145,0.136787,0.280283,0.597891,0.0195943,0.245497,0.26861,0.253927,0.946134,0.607249,0.656164,0.711151,0.189993,0.242691,0.908327,0.514628,0.338812,0.836996,0.796025,0.242824,0.329336,0.69229,0.909427,0.979223,0.00929642,0.898371,0.59122,0.951056,0.364311,0.839252,0.723709,0.64747,0.0725372,0.285937,0.164107,0.538052,0.953041,0.0414541,0.126503,0.778371,0.387912,0.594234,0.0545743,0.618486,0.68638,0.979935,0.0762833,0.650975,0.28763,0.306089,0.888864,0.153315,0.431844,0.520657,0.285298,0.730386,0.19355,0.75558,0.864663,0.506984,0.782427,0.880214,0.838882,0.581299,0.197495,0.106992,0.420683,0.343844,0.747091,0.378629,0.0854748,0.232558,0.942288,0.812936,0.116784,0.85051,0.612762,0.480772,0.290288,0.175506,0.422652,0.437178,0.945487,0.167069,0.720864,0.612639,0.442286,0.879245,0.647489,0.089371,0.0247717,0.210363,0.109414,0.453056,0.381565,0.492614,0.156299,0.704754,0.470281,0.203563,0.221832,0.491578,0.350881,0.200293,0.601794,0.313429,0.248245,0.581183,0.613405,0.398948,0.399603,0.852725,0.324085,0.238765,0.136706,0.0801851,0.203382,0.601748,0.91639,0.480181,0.585513,0.945501,0.946228,0.211565,0.849843,0.706393,0.536803,0.0102843,0.0192001,0.746419,0.2845,0.120131,0.463135,0.877736,0.646611,0.011909,0.874323,0.124925,0.478746,0.191257,0.0804171,0.659426,0.352656,0.896273,0.15712,0.486834,0.926225,0.469703,0.58604,0.551944,0.355777,0.0974277,0.091222,0.973788,0.697987,0.907441,0.859343,0.135663,0.490415,0.556914,0.0904986,0.935421,0.680081,0.792367,0.58433,0.331291,0.642207,0.568374,0.961249,0.651909,0.165285,0.288523,0.527185,0.237626,0.569644,0.186681,0.0704362,0.337999,0.180182,0.91676,0.708542,0.658804,0.566796,0.263138,0.0387534,0.810092,0.217319,0.466753,0.0646421,0.700631,0.947254,0.739075,0.627078,0.180822,0.611389,0.272801,0.21118,0.90492,0.207931,0.19116,0.830755,0.136332,0.80434,0.4092,0.821351,0.636196,0.592557,0.425911,0.299775,0.0715288,0.423307,0.183097,0.178398,0.0714762,0.373495,0.0267978,0.178148,0.793704,0.766934,0.531298,0.402991,0.381285,0.160754,0.133738,0.478596,0.739879,0.76118,0.239744,0.757311,0.257832,0.700692,0.539957,0.332517,0.63599,0.342572,0.313729,0.332001,0.231178,0.178552,0.907071,0.793464,0.729301,0.143374,0.388027,0.581242,0.0198122,0.958355,0.0560625,0.56085,0.417018,0.401865,0.425911,0.57795,0.543098,0.633233,0.076449,0.197062,0.847506,0.378907,0.00798631,0.829245,0.828651,0.198798,0.316863,0.977024,0.245117,0.845555,0.482782,0.225682,0.28101,0.16361,0.350898,0.0905724,0.597859,0.279562,0.843483,0.156124,0.399124,0.544209,0.809269,0.164852,0.432074,0.326479,0.0919896,0.173433,0.0331439,0.138412,0.788607,0.97921,0.596699,0.938525,0.124766,0.0784988,0.31998,0.753039,0.706328,0.648571,0.972976,0.407106,0.887206,0.406169,0.016338,0.391152,0.340637,0.280728,0.850645,0.605011,0.117114,0.113981,0.865771,0.832067,0.182973,0.343694,0.432677,0.499139,0.62936,0.835842,0.613341,0.457049,0.112666,0.186099,0.876198,0.571934,0.311905,0.351942,0.766231,0.832591,0.909996,0.236242,0.357739,0.236649,0.699032,0.879307,0.943415,0.796295,0.179529,0.0671618,0.220616,0.0826009,0.568801,0.972892,0.28322,0.855744,0.665167,0.0508488,0.822498,0.880016,0.175653,0.909584,0.606255,0.76581,0.66388,0.468958,0.826755,0.833281,0.266531,0.437125,0.773517,0.554193,0.0549887,0.364608,0.957629,0.336998,0.678694,0.167193,0.376479,0.746065,0.984033,0.548237,0.124935,0.0805381,0.811272,0.00711948,0.337941,0.383177,0.955085,0.363769,0.983058,0.159625,0.437471,0.799148,0.823953,0.270231,0.261388,0.327554,0.594616,0.200134,0.945102,0.811874,0.503836,0.344203,0.288628,0.57496,0.636388,0.465705,0.7404,0.659198,0.761116,0.736829,0.139711,0.515592,0.0471931,0.113893,0.868492,0.691819,0.554468,0.863431,0.742897,0.805143,0.148358,0.954747,0.817882,0.498936,0.807249,0.96219,0.927191,0.384354,0.0981076,0.841631,0.0529442,0.782506,0.909243,0.419797,0.211376,0.579594,0.663254,0.463677,0.863116,0.469721,0.219597,0.657801,0.514558,0.402151,0.965977,0.55376,0.11536,0.536603,0.377663,0.774961,0.29574,0.701312,0.748108,0.546048,0.04166,0.551836,0.0392892,0.189337,0.0300169,0.0334907,0.679575,0.768798,0.651129,0.76932,0.353938,0.108894,0.206805,0.316334,0.443404,0.237427,0.355656,0.507795,0.364267,0.566264,0.368185,0.886399,0.955386,0.230106,0.967471,0.340341,0.0580217,0.0717548,0.865496,0.555994,0.273536,0.832669,0.166208,0.152261,0.234933,0.164595,0.402213,0.670956,0.441957,0.876074,0.902738,0.193992,0.801864,0.714416,0.111978,0.484143,0.993582,0.339013,0.416988,0.434637,0.764874,0.223921,0.781619,0.436236,0.829135,0.722426,0.671914,0.655462,0.956046,0.668715,0.554142,0.665331,0.210994,0.504583,0.762389,0.977208,0.820475,0.00696737,0.955717,0.707247,0.808259,0.0523333,0.407583,0.00681067,0.524079,0.759276,0.428233,0.507403,0.519677,0.0930791,0.250055,0.926828,0.553233,0.825732,0.0471027,0.984596,0.0863096,0.829955,0.70188,0.957231,0.975242,0.83862,0.962079,0.401961,0.540467,0.988039,0.62878,0.967802,0.221527,0.0386627,0.900516,0.603629,0.16027,0.671206,0.623512,0.348728,0.322577,0.301245,0.666037,0.000777781,0.0995231,0.306343,0.859176,0.828188,0.715065,0.0923065,0.325451,0.110263,0.494539,0.599253,0.193974,0.685804,0.0112871,0.388797,0.383834,0.618936,0.208913,0.4256,0.00252551,0.847661,0.933232,0.464229,0.446947,0.525178,0.805789,0.189515,0.45579,0.568673,0.747257,0.498493,0.94132,0.48863,0.185824,0.464983,0.278642,0.421271,0.447795,0.0277154,0.712517,0.77843,0.342284,0.421843,0.882201,0.428472,0.785233,0.956707,0.643082,0.0833883,0.842462,0.271183,0.731949,0.733345,0.172942,0.00799346,0.499888,0.389537,0.0806965,0.0135341,0.253299,0.39197,0.644311,0.677798,0.771182,0.76184,0.663068,0.767566,0.961715,0.924853,0.613979,0.436442,0.391906,0.984428,0.204512,0.149956,0.455692,0.080869,0.472486,0.11422,0.602642,0.483229,0.468942,0.209219,0.00454265,0.462722,0.879777,0.453386,0.221283,0.599591,0.454636,0.765865,0.68249,0.828643,0.50526,0.288498,0.335539,0.32268,0.0152464,0.0399555,0.450346,0.843743,0.358726,0.92846,0.174494,0.716419,0.445783,0.109631,0.559768,0.816957,0.16944,0.617512,0.720388,0.0637931,0.979291,0.580918,0.546578,0.54723,0.352513,0.505692,0.0793667,0.398563,0.275827,0.240522,0.423757,0.613853,0.24584,0.276839,0.046332,0.293965,0.366409,0.716493,0.17977,0.385227,0.402004,0.30606,0.913399,0.796624,0.492629,0.445504,0.897309,0.110029,0.724701,0.146634,0.595772,0.729525,0.224639,0.13287,0.447003,0.579718,0.47376,0.331004,0.590251,0.381284,0.446479,0.770708,0.390623,0.869856,0.0458989,0.949555,0.340362,0.942559,0.933724,0.340667,0.0849679,0.141834,0.513988,0.524921,0.497763,0.705216,0.246792,0.356865,0.426656,0.072407,0.119353,0.433375,0.813605,0.0233567,0.397649,0.260597,0.772837,0.857808,0.297865,0.233604,0.236645,0.494981,0.370515,0.870065,0.0548632,0.432241,0.648822,0.978617,0.122413,0.491398,0.741771,0.746933,0.588935,0.179402,0.762202,0.469567,0.416969,0.355479,0.160711,0.193035,0.654539,0.869156,0.0646479,0.314211,0.209641,0.815104,0.981111,0.822479,0.666437,0.0812989,0.226707,0.957591,0.897896,0.23386,0.432801,0.130455,0.296139,0.407477,0.952573,0.843615,0.0465552,0.385753,0.905925,0.166319,0.578442,0.451587,0.157318,0.00789797,0.300496,0.384217,0.378846,0.197049,0.00285983,0.264404,0.35068,0.144618,0.464365,0.578159,0.603806,0.251333,0.208045,0.16965,0.588823,0.575311,0.42232,0.500095,0.779767,0.656326,0.136949,0.647598,0.698416,0.26186,0.397514,0.665193,0.418163,0.00045687,0.631822,0.635352,0.710605,0.168973,0.724356,0.732799,0.95602,0.872875,0.334626,0.515014,0.306833,0.791119,0.0828488,0.430575,0.418188,0.614705,0.690056,0.443549,0.791296,0.0725163,0.6725,0.0500546,0.401636,0.487377,0.984684,0.301488,0.764681,0.902241,0.117517,0.0725841,0.996062,0.185569,0.422432,0.428257,0.241753,0.823719,0.518376,0.783468,0.894823,0.416014,0.703017,0.570587,0.865988,0.916158,0.490408,0.886446,0.36851,0.132583,0.629155,0.726787,0.47783,0.667938,0.295598,0.804666,0.0905548,0.423002,0.65162,0.840243,0.680221,0.603145,0.661981,0.919399,0.438681,0.405765,0.0277493,0.850894,0.838503,0.655814,0.556871,0.0832302,0.685257,0.162471,0.584569,0.630606,0.175961,0.167288,0.234565,0.802704,0.871383,0.365759,0.890708,0.315672,0.856655,0.607117,0.405618,0.849225,0.794176,0.238425,0.237665,0.0227728,0.731232,0.0614604,0.964175,0.544748,0.670044,0.109768,0.360051,0.259851,0.32477,0.0451718,0.818171,0.306666,0.0329776,0.300248,0.646345,0.597407,0.804098,0.701537,0.705472,0.805527,0.743487,0.933529,0.649254,0.867987,0.192708,0.501318,0.671646,0.12458,0.565643,0.531748,0.647744,0.116356,0.734443,0.549928,0.938908,0.0767632,0.634024,0.0118187,0.777523,0.891295,0.748354,0.879378,0.273653,0.900608,0.72613,0.0408303,0.140049,0.220279,0.934764,0.423183,0.268961,0.30909,0.397191,0.222125,0.790865,0.439622,0.383948,0.575205,0.529506,0.991363,0.736735,0.0702922,0.983066,0.416163,0.63136,0.197806,0.299609,0.285221,0.659447,|0.920203,0.598502,0.834359,0.691245,0.674865,0.173914,0.689808,0.281378,0.429709,0.221148,0.431131,0.38675,0.747895,0.819658,0.607429,0.304786,0.326891,0.343711,0.582036,0.573762,0.84326,0.802276,0.843741,0.638203,0.0761768,0.976502,0.923122,0.107189,0.45399,0.978091,0.101695,0.899951,0.831986,0.483202,0.499428,0.588625,0.661962,0.13964,0.676096,0.339861,0.0379984,0.000655711,0.390599,0.325751,0.389457,0.98569,0.550961,0.658392,0.895121,0.163297,0.0830708,0.170297,0.403492,0.0395061,0.604391,0.00758922,0.862626,0.906246,0.948714,0.816707,0.934604,0.422183,0.877397,0.685857,0.541502,0.332112,0.434558,0.317734,0.331111,0.25103,0.118652,0.401414,0.342881,0.497053,0.175836,0.826299,0.262262,0.577179,0.453343,0.0417549,0.447576,0.0360213,0.755442,0.766586,0.116097,0.255133,0.286598,0.448,0.713604,0.71884,0.875654,0.418598,0.42587,0.421946,0.487941,0.0175109,0.865214,0.223791,0.719404,0.107208,0.129233,0.970663,0.645996,0.444072,0.0889569,0.223964,0.382716,0.856083,0.230338,0.774562,0.719823,0.757173,0.685309,0.435027,0.809239,0.321945,0.495826,0.79343,0.09397,0.746809,0.934111,0.278746,0.432318,0.848938,0.492676,0.216165,0.480791,0.31194,0.848782,0.747777,0.36301,0.292469,0.151934,0.287885,0.757766,0.141895,0.0121039,0.62986,0.807575,0.145759,0.114664,0.235049,0.0765737,0.617617,0.030333,0.133148,0.850378,0.335509,0.647146,0.295416,0.489693,0.202766,0.942721,0.65302,0.555045,0.78065,0.434176,0.956672,0.860673,0.736656,0.833144,0.9294,0.944674,0.158624,0.879696,0.533771,0.645048,0.534842,0.700642,0.397123,0.774166,0.0764587,0.808976,0.255482,0.521858,0.377894,0.545708,0.290364,0.534311,0.751965,0.878393,0.683851,0.237128,0.842468,0.075914,0.853818,0.442809,0.979408,0.830844,0.882988,0.270854,0.505778,0.350241,0.61055,0.203549,0.616178,0.76278,0.327054,0.674357,0.416391,0.0931719,0.303771,0.487486,0.537225,0.710665,0.815366,0.872993,0.130355,0.717579,0.606407,0.347986,0.953317,0.422942,0.722574,0.0112594,0.927128,0.253559,0.292679,0.474465,0.836702,0.869002,0.0556602,0.773448,0.721166,0.606976,0.88529,0.0913826,0.338427,0.518846,0.338146,0.0541524,0.830739,0.507647,0.847564,0.188118,0.77333,0.179379,0.955156,0.213618,0.260301,0.539623,0.798267,0.595373,0.66393,0.226917,0.490909,0.572583,0.177864,0.601773,0.951688,0.127273,0.874687,0.077019,0.804139,0.814752,0.615281,0.0427372,0.716504,0.923156,0.650424,0.225843,0.467476,0.972127,0.789043,0.422383,0.600499,0.899309,0.881159,0.274219,0.699758,0.366509,0.878778,0.345191,0.195032,0.286379,0.426404,0.84772,0.0914575,0.671019,0.859672,0.324086,0.334248,0.542737,0.834592,0.845598,0.955409,0.129561,0.817462,0.847083,0.503992,0.367419,0.644387,0.716392,0.861892,0.342916,0.928746,0.243858,0.445386,0.713744,0.762192,0.192572,0.573684,0.866094,0.605117,0.573824,0.0896734,0.285969,0.476438,0.225438,0.57036,0.418016,0.818411,0.389811,0.649688,0.728086,0.751252,0.212139,0.697119,0.154151,0.067255,0.310049,0.877679,0.798975,0.483705,0.608327,0.101629,0.801302,0.42069,0.198754,0.473576,0.742418,0.40025,0.862957,0.751878,0.880558,0.0375865,0.705348,0.0261604,0.684777,0.864654,0.538729,0.628451,0.724299,0.96856,0.170693,0.121294,0.397764,0.446038,0.486568,0.296442,0.730927,0.715683,0.297028,0.0106183,0.929604,0.748005,0.0655203,0.66873,0.00876313,0.649149,0.811183,0.407039,0.665166,0.930032,0.806858,0.286605,0.560759,0.171604,0.562245,0.662505,0.686343,0.997503,0.0586346,0.477299,0.0534297,0.483837,0.10958,0.915745,0.812458,0.42327,0.951444,0.563188,0.213978,0.348882,0.056034,0.319534,0.603468,0.533845,0.160867,0.519599,0.0648328,0.805009,0.774069,0.38488,0.541528,0.38828,0.730763,0.200171,0.480955,0.122184,0.55852,0.80324,0.277043,0.517651,0.485986,0.0521761,0.77848,0.439105,0.958686,0.294575,0.739677,0.423488,0.311159,0.813986,0.866359,0.586505,0.184151,0.233603,0.861108,0.110828,0.64438,0.0346996,0.985088,0.124716,0.23327,0.038783,0.955448,0.223729,0.297825,0.552315,0.0764273,0.863674,0.357009,0.697258,0.324667,0.801575,0.423278,0.484211,0.370314,0.602683,0.549882,0.85774,0.0234435,0.291079,0.211062,0.278298,0.625498,0.910955,0.835478,0.230862,0.304149,0.656669,0.380184,0.372983,0.756192,0.69491,0.149273,0.735561,0.314372,0.979018,0.398608,0.295177,0.672383,0.99536,0.983665,0.875955,0.181678,0.735031,0.280523,0.484852,0.972044,0.23806,0.797209,0.867451,0.672089,0.891775,0.0988978,0.60112,0.408268,0.693294,0.408718,0.516561,0.559556,0.020465,0.607332,0.0823386,0.564532,0.677843,0.442561,0.317603,0.801709,0.173398,0.604316,0.819574,0.754468,0.600673,0.417615,0.300572,0.192688,0.87802,0.694273,0.840983,0.142272,0.880676,0.0259206,0.508534,0.23497,0.958768,0.386856,0.329219,0.261287,0.074979,0.380718,0.516685,0.434676,0.0072785,0.357246,0.12442,0.913841,0.983585,0.923115,0.867801,0.0276634,0.351266,0.210435,0.196796,0.413924,0.158825,0.405731,0.377189,0.0907999,0.25065,0.170969,0.430877,0.483046,0.390995,0.953852,0.471078,0.23594,0.698829,0.440922,0.979852,0.512718,0.311295,0.349693,0.704227,0.0471385,0.401638,0.585569,0.931268,0.703653,0.758201,0.0139961,0.982348,0.180774,0.048934,0.231822,0.382944,0.56287,0.120962,0.249717,0.643778,0.789008,0.566349,0.51851,0.527883,0.402802,0.660773,0.757852,0.262001,0.824439,0.568704,0.762888,0.790064,0.8558,0.784111,0.375628,0.217223,0.22859,0.567491,0.390538,0.589124,0.062475,0.406889,0.826261,0.86655,0.621925,0.974766,0.536606,0.854696,0.296867,0.414113,0.198314,0.898057,0.735935,0.721734,0.557024,0.435522,0.407592,0.268219,0.327914,0.575119,0.738733,0.449043,0.480114,0.425948,0.38872,0.364227,0.272035,0.380299,0.011353,0.70926,0.101388,0.188579,0.566513,0.486832,0.462226,0.405081,0.853268,0.0128316,0.799954,0.272225,0.252087,0.705288,0.438151,0.00928658,0.180979,0.0923501,0.518572,0.0580177,0.717293,0.253239,0.431147,0.682449,0.446729,0.798226,0.388176,0.0752453,0.967002,0.71745,0.729912,0.628758,0.312205,0.334583,0.694654,0.455539,0.679833,0.675149,0.703074,0.528545,0.732971,0.673436,0.955806,0.522419,0.75493,0.983364,0.338818,0.921211,0.400723,0.459029,0.336531,0.763846,0.309364,0.924231,0.274715,0.300497,0.387345,0.225266,0.00702119,0.549302,0.858734,0.399313,0.506027,0.574806,0.879522,0.170866,0.598889,0.436176,0.497171,0.32026,0.290495,0.115392,0.678125,0.884085,0.592234,0.933353,0.404575,0.292319,0.659394,0.790746,0.701881,0.113588,0.646799,0.701967,0.955383,0.479431,0.0339482,0.876465,0.667595,0.926299,0.891098,0.685683,0.840855,0.768955,0.164366,0.563402,0.771895,0.735799,0.560385,0.850235,0.971515,0.674695,0.530145,0.969517,0.345423,0.121291,0.514542,0.678324,0.162962,0.892232,0.107954,0.585238,0.103119,0.351916,0.880509,0.216627,0.839544,0.2987,0.652788,0.0441685,0.344821,0.54246,0.365167,0.572011,0.0466182,0.624917,0.652959,0.108695,0.510894,0.561805,0.657667,0.481157,0.300594,0.765222,0.359856,0.173675,0.482572,0.781056,0.774993,0.0364739,0.425407,0.119384,0.228132,0.781592,0.940917,0.0134624,0.085287,0.550349,0.346194,0.871366,0.604911,0.500493,0.543149,0.290645,0.770742,0.0219055,0.584294,0.751458,0.149445,0.139474,0.114587,0.286838,0.919828,0.281299,0.406327,0.0357659,0.333652,0.14845,0.18978,0.601775,0.942547,0.487991,0.132335,0.666571,0.411386,0.477788,0.689173,0.207186,0.740624,0.439536,0.786672,0.25865,0.326185,0.826284,0.806023,0.712221,0.861588,0.553038,0.103534,0.664244,0.441199,0.519742,0.675146,0.623506,0.730258,0.664012,0.457192,0.49389,0.205762,0.365662,0.440875,0.699753,0.207118,0.737194,0.234432,0.491113,0.87379,0.542499,0.941514,0.689598,0.672482,0.146767,0.781666,0.468259,0.535737,0.367312,0.944728,0.486351,0.561472,0.0653536,0.896252,0.798729,0.698151,0.153226,0.89353,0.335418,0.584202,0.871046,0.370389,0.641284,0.634548,0.25775,0.0738379,0.312689,0.477112,0.44147,0.367775,0.550544,0.554881,0.717219,0.760848,0.054683,0.588512,0.262359,0.141865,0.678594,0.257777,0.653075,0.651051,0.854061,0.85838,0.368468,0.717457,0.795148,0.345849,0.697141,0.676812,0.683125,0.706289,0.163202,0.0341539,0.754051,0.0947586,0.297992,0.869909,0.0575385,0.73391,0.124543,0.111032,0.405509,0.45673,0.957032,0.933818,0.31921,0.292554,0.536145,0.917517,0.285324,0.656699,0.59493,0.733923,0.422375,0.666624,0.145829,0.0947511,0.570888,0.038456,0.745806,0.124167,0.773002,0.734553,0.93018,0.206693,0.35687,0.549507,0.648113,0.204242,0.0150474,0.807851,0.126202,0.244155,0.589811,0.491183,0.196179,0.696766,0.374412,0.145741,0.887534,0.00428581,0.097598,0.950633,0.568087,0.702377,0.164713,0.52379,0.470023,0.145025,0.441774,0.55034,0.867674,0.416261,0.0610598,0.0735931,0.569708,0.426996,0.045053,0.934578,0.688612,0.750422,0.511401,0.809715,0.861232,0.537538,0.858908,0.626346,0.890527,0.249532,0.343662,0.715872,0.0956628,0.636429,0.44936,0.987542,0.209011,0.904849,0.651729,0.939433,0.950423,0.0609941,0.859431,0.960377,0.0815463,0.569889,0.690138,0.196845,0.418131,0.240036,0.719108,0.503278,0.635261,0.628557,0.0839052,0.554578,0.756803,0.75461,0.256502,0.655212,0.370495,0.369247,0.370795,0.63685,0.991304,0.283156,0.0107208,0.62251,0.254334,0.440863,0.0921863,0.41365,0.0919328,0.741715,0.881012,0.753384,0.388782,0.13283,0.946734,0.0782853,0.436224,0.666289,0.39141,|0.536825,0.824092,0.648561,0.207518,0.670021,0.229138,0.232419,0.729551,0.968696,0.533394,0.727862,0.853793,0.528088,0.323775,0.0816846,0.161854,0.96053,0.0994082,0.187498,0.40558,0.483857,0.637522,0.858484,0.923023,0.76244,0.594771,0.172387,0.4046,0.506664,0.595836,0.901608,0.263298,0.426347,0.604876,0.818111,0.178351,0.150498,0.677851,0.00316352,0.972868,0.0724199,0.680265,0.773036,0.679756,0.825036,0.0455287,0.156761,0.797853,0.00716746,0.282822,0.141519,0.513662,0.0752537,0.370044,0.25553,0.110442,0.293326,0.841202,0.017765,0.453919,0.910878,0.748146,0.766376,0.971882,0.318475,0.752088,0.976628,0.795703,0.767519,0.438118,0.538703,0.589036,0.884613,0.393139,0.16812,0.0576695,0.516059,0.7289,0.141158,0.31757,0.858028,0.370467,0.23757,0.820665,0.514207,0.211993,0.716674,0.959784,0.327933,0.6473,0.618059,0.0558818,0.714466,0.640473,0.433271,0.693304,0.576546,0.0311413,0.812945,0.603979,0.0444862,0.561275,0.990627,0.366082,0.345747,0.888023,0.813092,0.440868,0.139357,0.686543,0.580857,0.565878,0.298581,0.624684,0.938938,0.418558,0.194143,0.678009,0.585743,0.333527,0.398019,0.78779,0.37615,0.211029,0.27088,0.597172,0.814362,0.947226,0.580253,0.075786,0.868982,0.81155,0.282029,0.539863,0.73549,0.803639,0.814507,0.425921,0.746705,0.187998,0.662992,0.532419,0.212157,0.35685,0.0361131,0.312869,0.0483518,0.0316034,0.819733,0.311201,0.757809,0.272898,0.757271,0.969306,0.674242,0.908088,0.620782,0.497944,0.0411574,0.392211,0.888474,0.595617,0.871525,0.400864,0.147368,0.141268,0.235128,0.646889,0.385968,0.0834298,0.834954,0.647876,0.570946,0.253231,0.852671,0.494459,0.963206,0.209431,0.738546,0.32486,0.91406,0.782485,0.905411,0.264359,0.0345954,0.216305,0.896534,0.955285,0.205235,0.715108,0.0968906,0.563005,0.774944,0.702895,0.592587,0.531909,0.328939,0.176302,0.908367,0.102669,0.0911863,0.598204,0.115164,0.645283,0.922179,0.998002,0.481344,0.139554,0.816787,0.148131,0.930417,0.763963,0.284291,0.145737,0.833324,0.897256,0.0726266,0.426179,0.0356981,0.559638,0.410291,0.054615,0.328821,0.681977,0.545301,0.174286,0.149687,0.0173131,0.178427,0.0812913,0.139974,0.028243,0.0937361,0.365587,0.537199,0.253376,0.758115,0.609322,0.750535,0.496593,0.563878,0.969689,0.0538197,0.0227956,0.476909,0.863799,0.519294,0.21518,0.966005,0.248565,0.811312,0.502249,0.712338,0.625929,0.17037,0.17142,0.586547,0.0654474,0.50721,0.511614,0.07801,0.920918,0.0141153,0.922244,0.125086,0.90368,0.110448,0.00757027,0.155844,0.665492,0.103847,0.922269,0.52842,0.58864,0.305462,0.631425,0.583135,0.735981,0.93082,0.895457,0.245563,0.860733,0.945814,0.582829,0.191793,0.065967,0.926343,0.296416,0.3203,0.629979,0.605958,0.591901,0.705319,0.270125,0.144312,0.827268,0.527906,0.0102261,0.154664,0.653155,0.0352101,0.108188,0.227239,0.287041,0.134001,0.588935,0.573613,0.830301,0.891375,0.653256,0.0307928,0.389036,0.10064,0.443086,0.426392,0.611621,0.0960882,0.399677,0.93806,0.701015,0.11404,0.124917,0.297221,0.508595,0.564768,0.662383,0.842354,0.406233,0.11041,0.196606,0.890221,0.530519,0.176315,0.319766,0.346197,0.248566,0.357681,0.277257,0.0147789,0.301219,0.655876,0.334877,0.750227,0.640705,0.191207,0.290593,0.567677,0.866914,0.891151,0.100339,0.497914,0.306936,0.156953,0.252024,0.929044,0.0631663,0.249754,0.67101,0.00705045,0.70543,0.572064,0.00561345,0.702207,0.282077,0.239501,0.199092,0.149237,0.310898,0.116274,0.145261,0.863908,0.292477,0.824982,0.645756,0.636926,0.474681,0.297177,0.185027,0.454253,0.840544,0.918154,0.408931,0.797358,0.837276,0.89927,0.751987,0.438315,0.0834396,0.935985,0.753403,0.323308,0.307404,0.728368,0.786122,0.653419,0.950908,0.793389,0.134435,0.428437,0.906279,0.070223,0.466713,0.132695,0.771267,0.546093,0.86187,0.789282,0.869686,0.458907,0.0730488,0.541998,0.0444575,0.469383,0.173189,0.879651,0.635635,0.923963,0.937133,0.711621,0.971475,0.0218733,0.00613642,0.41291,0.721227,0.623653,0.0954477,0.376455,0.446798,0.293107,0.181019,0.424596,0.369489,0.799186,0.884575,0.793084,0.513047,0.845423,0.455095,0.825524,0.469339,0.543687,0.781987,0.0438336,0.611695,0.784153,0.867266,0.135783,0.135033,0.337568,0.879543,0.131629,0.7885,0.254665,0.780911,0.532031,0.310801,0.214543,0.925072,0.275417,0.71023,0.952079,0.0451598,0.126233,0.280465,0.671776,0.342135,0.325174,0.214085,0.637057,0.671558,0.890259,0.348913,0.124778,0.990767,0.708113,0.201605,0.0272217,0.00463539,0.0916375,0.963773,0.181024,0.715068,0.493703,0.219773,0.890055,0.0656568,0.556439,0.524563,0.669521,0.481028,0.462052,0.0483189,0.368945,0.737772,0.598082,0.322061,0.708575,0.401252,0.21072,0.979791,0.331949,0.0643018,0.925721,0.118728,0.591066,0.159726,0.29146,0.841727,0.309167,0.4634,0.264567,0.151558,0.810115,0.0298188,0.944954,0.778811,0.550301,0.335293,0.0290629,0.454116,0.861077,0.225691,0.00992876,0.202967,0.343731,0.0804681,0.314003,0.0861815,0.724542,0.750996,0.998175,0.772086,0.288172,0.977383,0.965113,0.310311,0.369806,0.0892185,0.802381,0.421332,0.507975,0.881001,0.63043,0.954689,0.945517,0.299551,0.686974,0.00912136,0.808677,0.357828,0.101851,0.378242,0.457544,0.473171,0.671782,0.431889,0.565866,0.0320311,0.488429,0.327371,0.962471,0.237187,0.0582122,0.299108,0.608465,0.0877078,0.714239,0.624188,0.165395,0.657934,0.00883925,0.117119,0.890266,0.748499,0.34385,0.961908,0.0107396,0.0709484,0.137823,0.123779,0.182645,0.531386,0.689696,0.648401,0.222833,0.567416,0.440803,0.471298,0.667686,0.635697,0.102339,0.402783,0.720849,0.517088,0.607438,0.453927,0.819839,0.0678168,0.667325,0.0432382,0.311392,0.852768,0.873428,0.185372,0.988464,0.0206095,0.716481,0.465854,0.200029,0.36458,0.596601,0.959968,0.0132324,0.198,0.144407,0.311529,0.111846,0.851632,0.601231,0.319557,0.505122,0.706249,0.865781,0.0510843,0.103354,0.364696,0.0386582,0.707155,0.0159308,0.0890303,0.325078,0.0355042,0.703422,0.0352467,0.845235,0.640011,0.490367,0.953089,0.386318,0.332936,0.114246,0.297922,0.599357,0.180591,0.570492,0.151483,0.341855,0.0172674,0.863888,0.066976,0.255162,0.227706,0.791332,0.772101,0.162541,0.583794,0.417905,0.57419,0.508911,0.723715,0.715397,0.850259,0.37328,0.315544,0.636703,0.56429,0.931206,0.648728,0.0719513,0.378593,0.278358,0.791146,0.0509647,0.869146,0.933435,0.120675,0.783387,0.290025,0.416768,0.60327,0.419773,0.550232,0.604743,0.151756,0.98083,0.977354,0.290218,0.855259,0.834413,0.96398,0.0226183,0.101104,0.133854,0.417472,0.992626,0.336082,0.180069,0.366588,0.11352,0.738001,0.475355,0.387263,0.095883,0.0651827,0.807492,0.545878,0.0217382,0.28972,0.28047,0.624215,0.187317,0.38553,0.739732,0.580712,0.117215,0.911679,0.625131,0.523951,0.592285,0.154424,0.381816,0.500279,0.619853,0.397014,0.0601767,0.329059,0.631268,0.576384,0.185394,0.583433,0.522929,0.0135716,0.0313802,0.880617,0.559039,0.343083,0.766974,0.699918,0.220552,0.968463,0.481716,0.421503,0.310397,0.983872,0.948314,0.774832,0.283177,0.509157,0.240456,0.635991,0.964567,0.294757,0.872414,0.215541,0.660076,0.830125,0.709924,0.404728,0.951815,0.691619,0.519886,0.991618,0.441563,0.336031,0.82305,0.0999321,0.592849,0.172905,0.768314,0.484629,0.377147,0.0163171,0.381253,0.154419,0.702237,0.577525,0.762479,0.813922,0.498771,0.972386,0.46911,0.81506,0.535919,0.545856,0.940264,0.127524,0.0457436,0.482193,0.52525,0.198376,0.696732,0.362191,0.756805,0.496244,0.0535401,0.634396,0.241711,0.323273,0.0902045,0.861678,0.0855804,0.953066,0.146514,0.24372,0.0174168,0.202381,0.874843,0.819001,0.692268,0.888215,0.0901172,0.895758,0.311584,0.622068,0.981145,0.841921,0.984654,0.183288,0.0221303,0.596799,0.684473,0.518868,0.222027,0.714048,0.39521,0.370299,0.776848,0.877419,0.845424,0.851775,0.373597,0.971032,0.461009,0.19222,0.847325,0.817101,0.396934,0.864764,0.787611,0.336796,0.918899,0.54212,0.883347,0.799256,0.622117,0.808211,0.609338,0.355909,0.0427094,0.316534,0.995616,0.976932,0.494757,0.326023,0.310333,0.689907,0.259397,0.114769,0.235445,0.708051,0.0541944,0.589296,0.0401155,0.238305,0.287264,0.320565,0.536713,0.426581,0.355991,0.793686,0.290125,0.196528,0.224416,0.298344,0.111299,0.518066,0.910103,0.72617,0.4597,0.100085,0.883837,0.702198,0.278931,0.25292,0.298063,0.58178,0.852888,0.452079,0.333922,0.225286,0.414409,0.0500511,0.525314,0.456036,0.12573,0.841843,0.914735,0.0275251,0.912996,0.264942,0.0459472,0.0094943,0.913638,0.113049,0.0638739,0.163911,0.627077,0.143557,0.311447,0.00936282,0.357285,0.10987,0.0900207,0.497062,0.168339,0.189856,0.641504,0.898834,0.580394,0.0115053,0.340073,0.332226,0.486993,0.819224,0.247704,0.597044,0.0993128,0.0178791,0.721197,0.362133,0.0554348,0.606926,0.363436,0.12119,0.0443749,0.322347,0.892263,0.440945,0.647365,0.714198,0.839386,0.716363,0.290462,0.29254,0.382771,0.259375,0.162109,0.945118,0.367722,0.466088,0.346421,0.153003,0.37402,0.704269,0.383357,0.51224,0.478218,0.753526,0.776764,0.597473,0.844494,0.570558,0.547729,0.509678,0.577417,0.300955,0.501073,0.695354,0.893081,0.119019,0.967984,0.941842,0.410102,0.294972,0.362414,0.758393,0.664904,0.949098,0.58055,0.773277,0.299358,0.870841,0.397631,0.207638,0.141819,0.0232839,0.378702,0.235378,0.656044,0.523165,0.128596,0.0437673,0.830761,0.397428,0.778241,0.466138,0.625683,0.275939,0.716461,0.737756,|0.304888,0.533874,0.910387,0.232466,0.801044,0.570713,0.320872,0.780906,0.899607,0.794495,0.934938,0.728533,0.816794,0.432167,0.353543,0.729336,0.721834,0.958412,0.977549,0.575678,0.239819,0.0990899,0.210607,0.0689515,0.13188,0.13301,0.708524,0.628824,0.382298,0.353505,0.622334,0.905264,0.432968,0.170111,0.332695,0.0717408,0.815112,0.115206,0.796635,0.480255,0.591777,0.662881,0.527205,0.574097,0.752335,0.451873,0.980412,0.936961,0.873003,0.0437797,0.78118,0.720285,0.286401,0.471256,0.683733,0.811258,0.594531,0.0393288,0.549865,0.131608,0.623642,0.909916,0.268398,0.756854,0.0667976,0.29754,0.432731,0.976112,0.168807,0.953741,0.603609,0.682033,0.243936,0.688901,0.707181,0.271767,0.611115,0.78081,0.256181,0.982428,0.113706,0.801721,0.629174,0.248308,0.428125,0.217829,0.856249,0.881966,0.884014,0.719556,0.328063,0.86515,0.992463,0.170847,0.491869,0.530382,0.0327247,0.0582064,0.0433002,0.0329714,0.199311,0.963661,0.0298856,0.0267246,0.903267,0.0728663,0.288881,0.908069,0.281273,0.805264,0.349294,0.818934,0.568912,0.606967,0.00291866,0.33248,0.193651,0.214551,0.0729472,0.824535,0.686633,0.13781,0.526789,0.325969,0.888129,0.7972,0.23775,0.854185,0.868556,0.359816,0.707813,0.453109,0.937401,0.508627,0.220479,0.336896,0.348649,0.0800924,0.948014,0.0195985,0.53593,0.514677,0.692975,0.739342,0.42582,0.651267,0.859075,0.348214,0.918087,0.486888,0.129124,0.393647,0.108736,0.74442,0.502227,0.914147,0.732112,0.0831951,0.571798,0.175454,0.461698,0.92854,0.708011,0.723226,0.234929,0.496643,0.750967,0.834371,0.683364,0.482989,0.00854373,0.453096,0.238723,0.291653,0.173367,0.691371,0.0188253,0.373423,0.77422,0.410671,0.480808,0.950137,0.782449,0.274163,0.62533,0.879566,0.231018,0.0561586,0.493033,0.866223,0.414374,0.201251,0.250202,0.821328,0.963941,0.529338,0.748348,0.645089,0.655342,0.971596,0.77193,0.631617,0.404471,0.317043,0.143641,0.420251,0.761525,0.23904,0.92664,0.0766417,0.218717,0.944299,0.731246,0.0173904,0.657951,0.47046,0.267221,0.397606,0.609681,0.525011,0.325307,0.435684,0.273633,0.0399656,0.14488,0.350139,0.0838661,0.5265,0.477991,0.39981,0.080882,0.654646,0.988077,0.872149,0.557188,0.98083,0.628498,0.503961,0.6077,0.448102,0.874816,0.627516,0.338323,0.530988,0.312583,0.605306,0.159734,0.957709,0.723118,0.426296,0.604019,0.626356,0.717535,0.73116,0.662115,0.101522,0.662166,0.314746,0.879881,0.0423208,0.47182,0.856497,0.178674,0.526676,0.0959516,0.748527,0.745969,0.93651,0.70425,0.16325,0.048647,0.667519,0.102809,0.649579,0.614354,0.800069,0.531981,0.45832,0.368537,0.878423,0.815003,0.925176,0.560265,0.905245,0.425758,0.0801156,0.194108,0.165689,0.100397,0.590551,0.387882,0.699922,0.176469,0.372342,0.731878,0.307274,0.365685,0.702465,0.378624,0.665665,0.381086,0.138566,0.257393,0.887882,0.0126303,0.276471,0.844668,0.686586,0.328038,0.657931,0.559985,0.310343,0.191311,0.128207,0.772694,0.360871,0.175688,0.535827,0.156573,0.199571,0.939021,0.111121,0.0989807,0.0699195,0.197887,0.192652,0.644206,0.398831,0.511574,0.222264,0.581267,0.299916,0.212215,0.95133,0.855032,0.627745,0.0659733,0.771119,0.740612,0.627636,0.104365,0.287943,0.522152,0.186015,0.717065,0.579839,0.0245405,0.746584,0.798158,0.89977,0.379745,0.693538,0.349595,0.357182,0.739925,0.100547,0.331173,0.767703,0.390726,0.805866,0.841974,0.933756,0.987634,0.412825,0.37534,0.305457,0.149465,0.133632,0.0120907,0.648259,0.900239,0.792435,0.125159,0.773053,0.721063,0.219441,0.47431,0.638448,0.465434,0.607576,0.149027,0.442145,0.963282,0.919359,0.427122,0.391249,0.000751138,0.807313,0.145031,0.227266,0.166299,0.432335,0.767463,0.776977,0.78989,0.479999,0.8012,0.824622,0.273412,0.698341,0.38293,0.543496,0.879486,0.406879,0.920116,0.876717,0.71898,0.675903,0.373732,0.486569,0.653847,0.136172,0.542149,0.234726,0.295039,0.456367,0.30199,0.219137,0.0401518,0.774927,0.393546,0.0769958,0.715429,0.268723,0.945248,0.271414,0.799387,0.957995,0.640333,0.0805729,0.322746,0.363061,0.370245,0.798921,0.678415,0.806586,0.829082,0.055328,0.502554,0.0438665,0.835624,0.410553,0.2599,0.510861,0.203116,0.783822,0.581977,0.493507,0.343509,0.586631,0.538065,0.7291,0.112425,0.982658,0.687832,0.762566,0.91124,0.907384,0.397207,0.623189,0.332532,0.363503,0.929723,0.0785121,0.462077,0.490849,0.588043,0.291974,0.270946,0.443241,0.960573,0.578904,0.489951,0.430779,0.239637,0.490913,0.74028,0.533249,0.299566,0.477871,0.754259,0.245599,0.37269,0.545871,0.623238,0.186367,0.588559,0.262181,0.947407,0.261899,0.259011,0.178326,0.0120566,0.164411,0.183218,0.54752,0.291539,0.316483,0.312087,0.743273,0.23845,0.664767,0.545107,0.329359,0.985098,0.943786,0.131885,0.0612258,0.0162914,0.831484,0.447247,0.144526,0.736846,0.858843,0.920919,0.441225,0.835242,0.136184,0.103633,0.492325,0.950647,0.320561,0.714765,0.0814737,0.710406,0.323543,0.433446,0.503388,0.185142,0.620872,0.732508,0.889131,0.517928,0.951611,0.312558,0.455261,0.805939,0.266676,0.0169704,0.299787,0.413851,0.82378,0.0307359,0.883273,0.749647,0.827194,0.00326186,0.793473,0.429452,0.125974,0.749465,0.0846317,0.716564,0.767142,0.249149,0.00446999,0.279663,0.900715,0.398236,0.904101,0.550455,0.422807,0.333984,0.391786,0.421283,0.227732,0.918326,0.792455,0.740555,0.740389,0.43858,0.461349,0.511369,0.594249,0.821253,0.552255,0.71327,0.811686,0.0577013,0.293053,0.0392557,0.192674,0.492338,0.263206,0.989401,0.964804,0.0136114,0.0749123,0.179787,0.180617,0.299086,0.666387,0.705502,0.902044,0.136719,0.533366,0.758294,0.808905,0.703401,0.811773,0.149972,0.829701,0.69577,0.782293,0.765363,0.514098,0.427181,0.343839,0.48009,0.393587,0.872164,0.0211604,0.0590222,0.74139,0.651977,0.616784,0.888609,0.557151,0.417425,0.490804,0.51993,0.800531,0.904808,0.684667,0.744712,0.310388,0.376355,0.0974268,0.037133,0.787046,0.624315,0.0111308,0.93649,0.2059,0.141625,0.43403,0.160448,0.365338,0.970994,0.433095,0.79142,0.00991964,0.283688,0.830127,0.40628,0.901769,0.526006,0.0307249,0.708773,0.93599,0.0548661,0.020939,0.206828,0.63593,0.171293,0.513887,0.434254,0.0750543,0.0927203,0.102618,0.291538,0.469515,0.265601,0.618967,0.34258,0.715869,0.468527,0.0795098,0.418943,0.46779,0.333582,0.571251,0.369239,0.595966,0.258358,0.125861,0.836405,0.49592,0.98271,0.652352,0.285008,0.942239,0.451965,0.430439,0.963494,0.223677,0.454742,0.559977,0.121036,0.474573,0.175171,0.0775133,0.994539,0.181679,0.0844613,0.0788179,0.564061,0.0476299,0.490293,0.917284,0.053143,0.804599,0.863764,0.449453,0.756004,0.535505,0.903452,0.58368,0.376671,0.130893,0.212939,0.428852,0.0461389,0.90316,0.198933,0.0824238,0.643525,0.584417,0.948287,0.723948,0.59077,0.473891,0.531312,0.27727,0.156538,0.235007,0.698534,0.193979,0.0717614,0.269489,0.555874,0.655173,0.491448,0.900799,0.616784,0.56682,0.808325,0.0211773,0.149236,0.874403,0.1776,0.420617,0.054931,0.729785,0.920829,0.365912,0.64129,0.673418,0.686608,0.565775,0.56808,0.536614,0.390339,0.607882,0.275012,0.148715,0.258096,0.262423,0.639117,0.0360222,0.974342,0.745388,0.794956,0.125717,0.531033,0.00255877,0.815409,0.373062,0.423965,0.874354,0.650524,0.0409721,0.239961,0.982973,0.134955,0.168381,0.52102,0.354902,0.404408,0.93528,0.527606,0.269176,0.477424,0.830688,0.637418,0.545378,0.969227,0.423631,0.53707,0.0222377,0.869807,0.17304,0.806286,0.83045,0.564737,0.270812,0.271703,0.67626,0.950031,0.281126,0.254989,0.246382,0.919521,0.203415,0.923859,0.284513,0.144222,0.738067,0.511299,0.353882,0.16046,0.78152,0.789651,0.841887,0.764116,0.416191,0.576102,0.156472,0.604586,0.797926,0.0365815,0.414723,0.0871704,0.528143,0.241953,0.908017,0.754944,0.157421,0.564658,0.749357,0.112015,0.972642,0.123975,0.626041,0.0370625,0.35522,0.307956,0.41219,0.858959,0.0646077,0.206988,0.160069,0.616621,0.917817,0.134624,0.635897,0.72788,0.457344,0.937788,0.940438,0.426638,0.85425,0.171442,0.75024,0.728203,0.472749,0.612609,0.601147,0.623124,0.808448,0.390304,0.275817,0.316175,0.961886,0.107986,0.847627,0.591402,0.161143,0.169446,0.57397,0.0691609,0.456193,0.700649,0.616159,0.197229,0.559122,0.577542,0.86551,0.689232,0.103211,0.664521,0.614703,0.513432,0.671164,0.14326,0.350144,0.0439157,0.75684,0.209618,0.647786,0.367943,0.305049,0.468778,0.699205,0.848545,0.699539,0.302301,0.243006,0.566505,0.892441,0.258114,0.0432508,0.391371,0.81187,0.160562,0.105171,0.438112,0.0321348,0.908907,0.252379,0.914505,0.768918,0.666207,0.245822,0.796429,0.461966,0.0694908,0.641094,0.208414,0.806097,0.707399,0.0483379,0.0522576,0.617255,0.407558,0.277041,0.0590614,0.461773,0.0649868,0.908242,0.0881146,0.646979,0.587928,0.641164,0.635886,0.348695,0.110501,0.843766,0.640425,0.785941,0.095531,0.784753,0.587459,0.79873,0.253768,0.805351,0.656749,0.553074,0.440626,0.521479,0.130308,0.498681,0.0587384,0.00424153,0.94402,0.938452,0.915873,0.48606,0.522101,0.989306,0.606862,0.0623431,0.947204,0.514216,0.437063,0.659501,0.907787,0.132104,0.223609,0.904276,0.257861,0.301936,0.460012,0.182279,0.149668,0.182509,0.995107,0.0009951,0.275325,0.472069,0.441313,0.0861185,0.760165,0.0827545,0.992539,0.412246,0.271839,0.100504,0.849701,0.884001,0.723857,0.0317014,0.940807,0.577035,0.564628,0.263831,0.973519,0.0084309,0.370681,0.744081,|0.246202,0.846969,0.144317,0.107775,0.412913,0.664684,0.538871,0.233606,0.360363,0.345301,0.268978,0.345275,0.854468,0.498694,0.155132,0.0787421,0.931072,0.822606,0.33166,0.971678,0.447893,0.446472,0.799976,0.157041,0.102751,0.182533,0.888864,0.0291017,0.231218,0.891784,0.0115397,0.21245,0.191203,0.37549,0.418674,0.696541,0.251917,0.971118,0.997112,0.639256,0.855112,0.145086,0.452353,0.92184,0.623401,0.313494,0.952881,0.0037201,0.706101,0.0525053,0.107869,0.295445,0.407691,0.0270194,0.439134,0.829404,0.95387,0.739555,0.337007,0.789888,0.0543924,0.112737,0.247021,0.317016,0.162884,0.960451,0.443775,0.664612,0.313578,0.0525954,0.512557,0.26382,0.716404,0.55171,0.815868,0.455241,0.487154,0.571208,0.576058,0.295318,0.345522,0.371802,0.392642,0.914797,0.554281,0.894315,0.452546,0.0674519,0.755916,0.778615,0.316218,0.275441,0.0513934,0.759649,0.0950395,0.18178,0.504058,0.683709,0.155231,0.0710936,0.851272,0.500023,0.6443,0.689208,0.629411,0.892452,0.114004,0.181959,0.65019,0.989953,0.306629,0.276786,0.913279,0.766355,0.173258,0.340384,0.0201085,0.994112,0.623803,0.373422,0.207728,0.167587,0.0753691,0.0672274,0.128799,0.191518,0.729907,0.317028,0.538096,0.695701,0.153116,0.394232,0.360783,0.218342,0.900794,0.115864,0.458768,0.280041,0.881891,0.692603,0.8361,0.274979,0.204125,0.339788,0.709459,0.273325,0.604294,0.685935,0.0846938,0.131316,0.216233,0.651146,0.247624,0.678302,0.880041,0.168069,0.877816,0.462929,0.397744,0.354165,0.554433,0.905875,0.0255652,0.817142,0.266063,0.0280834,0.0214339,0.381222,0.841241,0.388295,0.537733,0.872386,0.238096,0.21676,0.956074,0.644631,0.582943,0.436451,0.410511,0.392791,0.141314,0.993347,0.997186,0.710034,0.277662,0.945029,0.726474,0.187378,0.45589,0.476254,0.739288,0.665515,0.230674,0.385051,0.323249,0.285346,0.677273,0.827959,0.594288,0.355139,0.755198,0.735214,0.928022,0.616645,0.0703675,0.502861,0.930482,0.729283,0.952893,0.549269,0.638259,0.0711665,0.520134,0.405312,0.44793,0.366443,0.928816,0.469749,0.139649,0.61496,0.520593,0.160955,0.498537,0.58987,0.0980648,0.0193285,0.125181,0.19624,0.526759,0.600668,0.386608,0.0283934,0.920427,0.376836,0.216933,0.427661,0.805352,0.483081,0.663313,0.460355,0.396098,0.763579,0.762537,0.0988674,0.205383,0.449775,0.530109,0.6784,0.540003,0.310843,0.281463,0.841912,0.438594,0.815094,0.644267,0.368894,0.868577,0.201455,0.109128,0.780854,0.424647,0.476949,0.464055,0.377458,0.450137,0.255729,0.964408,0.651716,0.29166,0.807957,0.35109,0.70706,0.495618,0.149178,0.753968,0.857292,0.756569,0.145518,0.845196,0.457009,0.48231,0.268709,0.770281,0.980272,0.797756,0.245656,0.210676,0.284275,0.518995,0.339351,0.541049,0.228612,0.0999865,0.762639,0.883208,0.527973,0.799654,0.321376,0.609326,0.807722,0.663746,0.90986,0.481436,0.520353,0.231023,0.924695,0.295783,0.82814,0.533396,0.587329,0.105088,0.985395,0.049521,0.992284,0.340409,0.324002,0.582138,0.741582,0.351546,0.0753869,0.846767,0.603555,0.0595298,0.255253,0.403229,0.214429,0.704178,0.622628,0.705286,0.307397,0.282488,0.477637,0.703511,0.00777227,0.658555,0.30514,0.574203,0.619196,0.0549132,0.105421,0.668667,0.292324,0.781256,0.561807,0.871429,0.24591,0.184068,0.726038,0.856247,0.456279,0.0965897,0.747139,0.335675,0.0200551,0.497568,0.0474205,0.867433,0.328529,0.629899,0.24019,0.351971,0.650142,0.0842316,0.0361167,0.463594,0.762745,0.467884,0.0717706,0.96248,0.611358,0.013625,0.0590153,0.403945,0.693338,0.734143,0.503735,0.412332,0.621873,0.818506,0.74897,0.563771,0.123928,0.266614,0.708602,0.849257,0.913545,0.129719,0.82572,0.570309,0.174393,0.685339,0.776464,0.233294,0.900027,0.802818,0.885735,0.124082,0.101839,0.838184,0.744788,0.0893826,0.986731,0.248445,0.246545,0.670861,0.121035,0.698615,0.805244,0.260425,0.924767,0.562184,0.504568,0.498266,0.193883,0.556459,0.247936,0.18829,0.681386,0.975819,0.599422,0.623526,0.438834,0.129978,0.684158,0.515668,0.230374,0.733398,0.51119,0.711702,0.621593,0.459007,0.865573,0.0196518,0.530897,0.236286,0.517843,0.640499,0.340352,0.0116519,0.158388,0.445588,0.429628,0.578431,0.163536,0.351872,0.770772,0.0163863,0.96663,0.841438,0.00531101,0.940175,0.131341,0.173792,0.939252,0.560605,0.990755,0.983775,0.259916,0.358052,0.543982,0.98567,0.988832,0.771015,0.209416,0.427111,0.962936,0.898404,0.953218,0.155743,0.616631,0.569767,0.522914,0.831097,0.604615,0.683763,0.269467,0.708397,0.415908,0.86465,0.583084,0.382876,0.70924,0.85737,0.898527,0.228051,0.293268,0.98357,0.892766,0.750616,0.0131881,0.773251,0.285069,0.773459,0.0315273,0.355677,0.252275,0.914597,0.825262,0.371467,0.986702,0.991799,0.901695,0.700777,0.815492,0.0149147,0.810375,0.901725,0.335262,0.511649,0.106068,0.237266,0.235549,0.271563,0.24567,0.00736398,0.0587956,0.659919,0.0091325,0.485976,0.875944,0.341098,0.375078,0.248561,0.661191,0.473377,0.47129,0.583743,0.272159,0.876593,0.351918,0.390925,0.110584,0.688608,0.405217,0.513018,0.224437,0.74623,0.716051,0.635365,0.90798,0.839946,0.0410116,0.891498,0.924541,0.515299,0.499289,0.75453,0.298919,0.441466,0.1037,0.836392,0.873278,0.974945,0.0758618,0.47074,0.0852197,0.210616,0.232054,0.0160465,0.287546,0.402812,0.552838,0.259686,0.654021,0.389375,0.226489,0.808684,0.486523,0.375579,0.493721,0.392719,0.566244,0.241741,0.137827,0.0207369,0.0351398,0.399796,0.601532,0.96677,0.207432,0.994208,0.647861,0.39406,0.883201,0.895157,0.131227,0.209894,0.443144,0.951378,0.755804,0.391337,0.0426463,0.138236,0.437214,0.568535,0.0168843,0.963774,0.711971,0.0455313,0.593936,0.392894,0.109829,0.0824792,0.0616801,0.683998,0.819155,0.832575,0.152673,0.757032,0.670322,0.503264,0.362915,0.363177,0.0971378,0.51721,0.221979,0.676138,0.274336,0.76487,0.955591,0.0339108,0.320208,0.558044,0.0856488,0.0817055,0.899273,0.530568,0.189349,0.494738,0.708573,0.713762,0.969851,0.659321,0.468747,0.218404,0.573767,0.839959,0.0386485,0.690332,0.539058,0.42153,0.114419,0.82128,0.753955,0.390548,0.287075,0.938734,0.355098,0.229143,0.471916,0.322348,0.565073,0.0951952,0.453801,0.274335,0.0421085,0.0748401,0.0640403,0.503108,0.195108,0.803067,0.890406,0.768602,0.598542,0.313752,0.278543,0.983191,0.178183,0.105011,0.115517,0.647383,0.99968,0.345474,0.35321,0.823197,0.650885,0.979874,0.767745,0.58531,0.233559,0.190456,0.32928,0.37694,0.938688,0.577913,0.088457,0.798897,0.991225,0.0889708,0.209579,0.0515909,0.0726811,0.231717,0.978235,0.273465,0.547287,0.899184,0.890366,0.767236,0.799557,0.709071,0.358038,0.776162,0.0598497,0.122904,0.565441,0.808269,0.492425,0.722111,0.860415,0.504571,0.485568,0.153021,0.191816,0.920786,0.822939,0.710279,0.419437,0.553875,0.427483,0.0151118,0.687185,0.660918,0.993732,0.86796,0.869933,0.14995,0.954333,0.900913,0.0599656,0.479916,0.622163,0.948771,0.889901,0.301983,0.73646,0.9244,0.259958,0.353373,0.36967,0.803374,0.0599739,0.25838,0.553044,0.700351,0.683631,0.266167,0.977974,0.246359,0.707636,0.802018,0.535858,0.963058,0.36321,0.72048,0.329317,0.491889,0.8509,0.0375609,0.645295,0.758302,0.954662,0.372501,0.55082,0.978514,0.13711,0.481299,0.0221739,0.455919,0.548085,0.594359,0.891201,0.936729,0.647639,0.731634,0.0553929,0.382333,0.384066,0.516347,0.706739,0.0625137,0.454091,0.810542,0.183121,0.1479,0.39235,0.0590024,0.0572304,0.129095,0.623179,0.703173,0.906543,0.927334,0.214427,0.746706,0.400608,0.732913,0.537945,0.497814,0.621271,0.0274491,0.737808,0.83635,0.658454,0.634,0.376139,0.624761,0.540885,0.0589556,0.220459,0.226106,0.432516,0.400206,0.120726,0.0730672,0.997851,0.0115859,0.674861,0.962359,0.540119,0.284146,0.523323,0.682175,0.302365,0.330103,0.692176,0.0213852,0.231436,0.46132,0.99221,0.999436,0.16824,0.0250148,0.713524,0.798141,0.77886,0.560297,0.257711,0.441631,0.49401,0.10636,0.421379,0.0755814,0.131734,0.408689,0.130907,0.643016,0.66077,0.598493,0.487368,0.926222,0.641026,0.937441,0.860073,0.305708,0.664284,0.237887,0.124156,0.0809445,0.751987,0.545729,0.989169,0.886373,0.848504,0.910984,0.386322,0.894191,0.259221,0.109853,0.455335,0.343809,0.605287,0.626184,0.9743,0.571331,0.964555,0.620169,0.237093,0.693833,0.769457,0.642607,0.963292,0.734461,0.222855,0.635427,0.671396,0.364506,0.849946,0.307259,0.659923,0.479601,0.961956,0.641918,0.250145,0.803468,0.298663,0.877899,0.567373,0.626456,0.558867,0.534502,0.346796,0.237133,0.851311,0.734447,0.0537116,0.182227,0.73682,0.120229,0.960817,0.144996,0.555482,0.613656,0.73599,0.726511,0.273225,0.0880712,0.428203,0.227619,0.624822,0.414316,0.669466,0.998286,0.909668,0.270482,0.145698,0.299661,0.786756,0.552975,0.913768,0.0953541,0.043357,0.646921,0.826706,0.981036,0.213768,0.488025,0.0826479,0.688362,0.0662537,0.44164,0.265153,0.617563,0.00698304,0.417929,0.156389,0.151334,0.932652,0.693754,0.256564,0.21885,0.0341018,0.712149,0.767253,0.499464,0.0766189,0.630016,0.382465,0.70497,0.897589,0.644899,0.869207,0.601265,0.571458,0.718929,0.293165,0.134508,0.859942,0.719912,0.617758,0.220163,0.545921,0.0724186,0.338413,0.933254,0.636899,0.559866,0.662343,0.17723,0.514395,0.0916333,0.154193,0.144122,0.924202,0.865397,0.946154,0.0980462,0.470789,0.443097,0.891185,0.137244,0.340734,0.633354,0.569228,0.776638,0.965336,0.54849,0.00441241,0.515151,0.175361,|0.535041,0.849277,0.139025,0.446546,0.399048,0.665278,0.000212371,0.791302,0.364027,0.515412,0.254285,0.364695,0.237353,0.397304,0.572346,0.269727,0.823026,0.97051,0.783455,0.873164,0.840666,0.671171,0.0212085,0.0249313,0.735142,0.0846732,0.210112,0.061776,0.090793,0.886136,0.517855,0.907585,0.374093,0.149869,0.832954,0.0678658,0.025282,0.795252,0.843303,0.66368,0.494178,0.857758,0.3105,0.394229,0.577944,0.785115,0.235328,0.907894,0.909978,0.673539,0.0146099,0.052062,0.530686,0.657985,0.0276106,0.584147,0.438259,0.43221,0.335182,0.443482,0.397708,0.94433,0.340215,0.709079,0.444858,0.348744,0.104555,0.272503,0.123645,0.626126,0.331644,0.143478,0.739646,0.915932,0.598524,0.24767,0.30366,0.705153,0.722168,0.74951,0.679164,0.24192,0.058934,0.257019,0.163126,0.177857,0.318901,0.912754,0.850419,0.775616,0.615275,0.672906,0.826774,0.927998,0.789896,0.155333,0.937527,0.078229,0.107309,0.249269,0.643749,0.617931,0.91422,0.52541,0.262918,0.928556,0.405303,0.769347,0.818387,0.107554,0.334176,0.0178874,0.283539,0.912873,0.301775,0.271926,0.608413,0.112773,0.611345,0.407332,0.179916,0.776918,0.217669,0.545905,0.0201951,0.686657,0.24231,0.237788,0.323167,0.0470567,0.104752,0.872062,0.278876,0.337313,0.879062,0.460799,0.00934464,0.477683,0.443468,0.263914,0.598105,0.391996,0.876479,0.687615,0.936473,0.668796,0.26775,0.477327,0.0503986,0.321233,0.0343537,0.685633,0.538115,0.567623,0.798598,0.430901,0.535893,0.145711,0.259753,0.555908,0.972172,0.466074,0.674911,0.872137,0.549465,0.236798,0.906793,0.803612,0.906824,0.222014,0.698873,0.227083,0.378647,0.535127,0.373839,0.929773,0.852621,0.174061,0.455061,0.433298,0.113514,0.417337,0.149245,0.542209,0.963054,0.526117,0.66707,0.884833,0.247356,0.7038,0.740633,0.0679644,0.449748,0.968961,0.242242,0.277191,0.152875,0.0726671,0.917028,0.416423,0.200848,0.255404,0.749891,0.319583,0.440048,0.115199,0.705839,0.683855,0.305434,0.518592,0.0661925,0.0727052,0.0737588,0.239388,0.939988,0.666275,0.606744,0.498788,0.648537,0.240743,0.46288,0.0748199,0.67953,0.970448,0.187098,0.600309,0.433243,0.843095,0.838612,0.310605,0.916132,0.448211,0.699604,0.868178,0.467643,0.660078,0.0316513,0.256583,0.205612,0.9527,0.0464339,0.75311,0.712251,0.907031,0.799689,0.346126,0.724005,0.470362,0.391978,0.932861,0.518651,0.643462,0.314902,0.221515,0.179801,0.782722,0.483118,0.641483,0.302024,0.786958,0.688936,0.0827562,0.9336,0.864539,0.769285,0.620001,0.114509,0.244605,0.421326,0.217403,0.732994,0.719616,0.40433,0.162731,0.305708,0.945894,0.632723,0.340782,0.425145,0.854408,0.722179,0.823304,0.597868,0.251373,0.239194,0.624728,0.146965,0.20221,0.547913,0.582853,0.589973,0.131971,0.611619,0.0443137,0.751335,0.233907,0.37689,0.3923,0.166111,0.465941,0.870974,0.404989,0.248613,0.0855621,0.407205,0.0705616,0.0601224,0.782855,0.282269,0.734708,0.874946,0.879053,0.0791761,0.668428,0.845272,0.704528,0.773289,0.72973,0.797839,0.919951,0.0889692,0.904914,0.17713,0.122743,0.298149,0.236462,0.642181,0.151415,0.608104,0.988355,0.453589,0.171198,0.780304,0.323178,0.0202475,0.450624,0.190848,0.453999,0.145647,0.136395,0.00921291,0.248043,0.342938,0.542722,0.447862,0.351895,0.734771,0.359743,0.0484681,0.0808724,0.0313188,0.00157857,0.94275,0.141945,0.736378,0.633349,0.500817,0.0445932,0.74546,0.402159,0.865624,0.236797,0.0393241,0.613241,0.833475,0.950947,0.220365,0.395336,0.043377,0.205373,0.97689,0.846173,0.335573,0.616405,0.390524,0.202118,0.934112,0.398774,0.962876,0.107245,0.666632,0.146362,0.264025,0.714266,0.288164,0.766063,0.670845,0.619223,0.879384,0.485741,0.988807,0.0875515,0.709295,0.219916,0.858312,0.5628,0.208813,0.718343,0.11942,0.51098,0.477946,0.042769,0.183881,0.350881,0.345853,0.265377,0.492907,0.4742,0.80419,0.533056,0.249785,0.629813,0.583424,0.550885,0.432563,0.0539851,0.650045,0.334434,0.326359,0.811855,0.0159856,0.620345,0.999006,0.0564133,0.0929588,0.239989,0.67251,0.744312,0.738463,0.0761991,0.62967,0.812411,0.421476,0.220907,0.107799,0.189766,0.938947,0.534432,0.174431,0.907311,0.0124632,0.568551,0.78319,0.669579,0.172462,0.0716533,0.960617,0.55008,0.774699,0.728335,0.699103,0.610898,0.148065,0.458668,0.245588,0.921461,0.442956,0.701153,0.785444,0.375676,0.44423,0.992031,0.464326,0.418081,0.151593,0.995362,0.0270787,0.617134,0.89353,0.246894,0.356849,0.43805,0.660811,0.305343,0.688091,0.857328,0.74744,0.756103,0.89557,0.384768,0.982569,0.98955,0.46776,0.981831,0.503445,0.0369717,0.326193,0.337158,0.772891,0.1253,0.0970083,0.137599,0.853696,0.788677,0.808217,0.800077,0.503606,0.784235,0.852624,0.920109,0.770826,0.521917,0.43608,0.710894,0.659446,0.390683,0.525479,0.0202022,0.554032,0.629353,0.620566,0.288339,0.510408,0.730725,0.834342,0.603537,0.162043,0.372371,0.506161,0.147609,0.694646,0.98723,0.340091,0.978852,0.0712849,0.14677,0.468424,0.189881,0.774664,0.890692,0.981852,0.014739,0.577807,0.776951,0.734832,0.655905,0.287982,0.694886,0.844409,0.0423562,0.820215,0.79694,0.856646,0.231735,0.84192,0.267089,0.458894,0.814966,0.290963,0.538146,0.186501,0.498444,0.778619,0.672479,0.0657151,0.545316,0.709175,0.185687,0.0171114,0.132101,0.563214,0.100596,0.28126,0.850047,0.481701,0.385606,0.2455,0.975206,0.243497,0.560981,0.901713,0.49736,0.206975,0.848099,0.710601,0.760911,0.633739,0.111286,0.845109,0.665493,0.43977,0.977483,0.676205,0.645936,0.382183,0.81819,0.368788,0.549067,0.604362,0.079943,0.621823,0.316925,0.0332862,0.505042,0.242044,0.211234,0.479402,0.184533,0.532856,0.147005,0.642555,0.684939,0.0580048,0.713118,0.660781,0.180104,0.586774,0.494872,0.579021,0.802347,0.480527,0.0745165,0.733985,0.484129,0.749226,0.456879,0.299494,0.370841,0.925734,0.915549,0.414897,0.611282,0.534877,0.641355,0.739018,0.275707,0.426408,0.804571,0.260104,0.797897,0.121243,0.0105254,0.151606,0.1129,0.13637,0.0232933,0.784519,0.875132,0.627198,0.453641,0.0392747,0.339158,0.241929,0.989754,0.760494,0.0527141,0.653031,0.330101,0.197944,0.601409,0.0104008,0.120328,0.624583,0.849126,0.854824,0.977126,0.759504,0.83061,0.300065,0.817782,0.332596,0.840938,0.401024,0.417308,0.249068,0.243257,0.131303,0.690311,0.15397,0.440653,0.710334,0.0563936,0.625195,0.631372,0.950402,0.723252,0.447804,0.217616,0.291406,0.0944857,0.703062,0.636008,0.0230705,0.0756446,0.450516,0.628575,0.0251153,0.668797,0.916792,0.0495422,0.65924,0.241657,0.53922,0.800087,0.549523,0.225412,0.632976,0.607372,0.629413,0.0717188,0.735295,0.774694,0.258823,0.302829,0.781797,0.0248935,0.632767,0.13735,0.820942,0.32902,0.489698,0.206915,0.612328,0.502633,0.859724,0.645424,0.503624,0.472156,0.217156,0.68898,0.94296,0.733699,0.163375,0.453465,0.0407192,0.4306,0.373311,0.437613,0.452107,0.217836,0.0828084,0.846818,0.910767,0.524455,0.514145,0.660216,0.392173,0.193232,0.44,0.656817,0.158218,0.329685,0.559227,0.99179,0.210452,0.986173,0.927961,0.50499,0.538899,0.121807,0.33589,0.685635,0.656664,0.683649,0.424497,0.809328,0.102216,0.0312944,0.502752,0.970635,0.951937,0.560946,0.0825213,0.550041,0.626467,0.897842,0.516906,0.313768,0.892968,0.721002,0.239627,0.407967,0.0195493,0.160561,0.653961,0.241543,0.102365,0.896882,0.580509,0.697041,0.125093,0.709818,0.569779,0.380602,0.0401812,0.948529,0.347662,0.92026,0.712549,0.0651973,0.121483,0.361623,0.11532,0.40485,0.765504,0.647901,0.133428,0.794753,0.67231,0.0984234,0.183337,0.234528,0.0535787,0.362018,0.485678,0.739712,0.285321,0.877617,0.00581521,0.807897,0.306356,0.296436,0.349746,0.00557965,0.187341,0.680214,0.415799,0.0634055,0.541314,0.947554,0.435291,0.556713,0.847521,0.053504,0.480511,0.16208,0.342048,0.682148,0.0582926,0.589414,0.0312829,0.849367,0.0201411,0.841091,0.609792,0.72123,0.411831,0.416135,0.983472,0.934971,0.409459,0.642991,0.960453,0.315431,0.812981,0.776036,0.713572,0.76866,0.816552,0.918829,0.0998,0.280774,0.509568,0.338666,0.784256,0.275166,0.315188,0.922718,0.694657,0.568622,0.343179,0.993123,0.490433,0.00966907,0.126663,0.773535,0.289444,0.212807,0.0250655,0.881677,0.830849,0.417837,0.525107,0.96402,0.343775,0.622981,0.825351,0.106535,0.0859056,0.383656,0.389042,0.928245,0.36844,0.102782,0.682157,0.134877,0.650026,0.682697,0.0557126,0.778881,0.999707,0.398607,0.319957,0.0284123,0.299461,0.84952,0.386191,0.877539,0.231746,0.718153,0.347822,0.637692,0.999492,0.0720216,0.797027,0.307434,0.190378,0.215364,0.717538,0.783681,0.786216,0.784096,0.682014,0.35731,0.895703,0.703622,0.319188,0.611633,0.265677,0.829765,0.473795,0.137861,0.350881,0.774992,0.32246,0.842692,0.092911,0.0792199,0.659321,0.234304,0.43071,0.17354,0.810605,0.872031,0.316548,0.65554,0.377594,0.66583,0.928505,0.120706,0.523944,0.518761,0.240045,0.118644,0.403696,0.45091,0.748174,0.625031,0.252434,0.418103,0.127571,0.308483,0.997021,0.869217,0.46702,0.485545,0.324416,0.00964117,0.628771,0.835516,0.57557,0.167488,0.725134,0.935035,0.459567,0.652503,0.334695,0.947693,0.168581,0.00609004,0.892275,0.710784,0.943035,0.917551,0.791337,0.377428,0.934077,0.764889,0.681384,0.0374499,0.694885,0.50678,0.527908,0.985952,0.88506,0.956782,0.663409,0.416013,0.351538,0.537914,0.17859,0.144186,0.36703,0.707034,0.649136,0.790109,0.592529,0.633714,0.464852,0.644879,|0.36878,0.150402,0.167386,0.835282,0.863863,0.996652,0.554193,0.434517,0.921841,0.678381,0.331363,0.724206,0.0851837,0.492301,0.821417,0.513412,0.526718,0.794208,0.400577,0.36732,0.156665,0.535642,0.235378,0.584232,0.903651,0.558948,0.0656736,0.980042,0.957251,0.830953,0.937327,0.647972,0.864271,0.15367,0.432344,0.439473,0.327548,0.0316187,0.705368,0.0820541,0.55793,0.901723,0.0312651,0.0050205,0.822544,0.484832,0.934221,0.0494487,0.117468,0.422833,0.0518486,0.523945,0.8786,0.249301,0.686172,0.339327,0.854132,0.733863,0.0944621,0.976176,0.574692,0.168317,0.562206,0.817591,0.409711,0.569995,0.925322,0.343887,0.652991,0.73861,0.596045,0.789664,0.409932,0.971122,0.640831,0.674045,0.274933,0.455013,0.43787,0.152709,0.818757,0.515066,0.113075,0.871908,0.742002,0.274119,0.460949,0.00144386,0.443782,0.890448,0.719269,0.155049,0.144817,0.414644,0.0906366,0.945843,0.263314,0.491458,0.447678,0.325325,0.777202,0.995189,0.0699824,0.752382,0.356722,0.801817,0.30037,0.299274,0.574684,0.823827,0.364716,0.155478,0.935545,0.868505,0.502255,0.971275,0.586613,0.829428,0.804653,0.181554,0.91791,0.398169,0.662238,0.827933,0.265976,0.443297,0.765453,0.858782,0.373302,0.680464,0.517871,0.303746,0.335686,0.665038,0.236224,0.559183,0.0311847,0.253001,0.923521,0.456538,0.788701,0.320964,0.239173,0.394746,0.648404,0.64342,0.10899,0.0272811,0.62304,0.839538,0.969608,0.864615,0.885207,0.396693,0.228564,0.453121,0.44582,0.182258,0.567324,0.261806,0.875565,0.630373,0.423766,0.473844,0.143886,0.110559,0.462433,0.521724,0.805106,0.122591,0.547189,0.816471,0.125888,0.183793,0.197968,0.359239,0.202689,0.209803,0.389752,0.912357,0.635896,0.309335,0.23736,0.239949,0.580553,0.517116,0.426885,0.417746,0.262727,0.0809224,0.0844095,0.630314,0.635157,0.534063,0.812556,0.158864,0.180761,0.958553,0.203809,0.940516,0.175949,0.829647,0.207772,0.148037,0.354146,0.616782,0.599679,0.603854,0.678102,0.554348,0.47162,0.412435,0.0251461,0.492504,0.654664,0.0799255,0.624846,0.132227,0.759876,0.0161626,0.86711,0.449207,0.704494,0.344931,0.0179382,0.278359,0.572854,0.632183,0.507402,0.758413,0.473692,0.0788252,0.0415696,0.818937,0.487572,0.988921,0.212672,0.415838,0.496898,0.904681,0.260993,0.394989,0.437105,0.674534,0.15036,0.934792,0.250881,0.407206,0.115381,0.489717,0.0605843,0.502036,0.930105,0.604183,0.89443,0.405788,0.623666,0.634578,0.541771,0.586656,0.975061,0.337683,0.0278084,0.740807,0.840216,0.647784,0.208878,0.49138,0.131205,0.767046,0.818414,0.106971,0.369536,0.211314,0.103361,0.165262,0.838826,0.938663,0.436652,0.183717,0.961663,0.415034,0.416422,0.632965,0.91841,0.182716,0.756084,0.656263,0.651655,0.314304,0.423985,0.88169,0.323252,0.492547,0.968302,0.307501,0.786026,0.625468,0.419605,0.0241138,0.0151285,0.129987,0.636075,0.23205,0.568439,0.406103,0.738183,0.470733,0.967336,0.00529307,0.2528,0.704878,0.594242,0.942779,0.154976,0.623086,0.894391,0.395593,0.273377,0.10835,0.454717,0.823281,0.118078,0.930545,0.582507,0.856293,0.578901,0.772824,0.0542047,0.524892,0.220898,0.991528,0.105551,0.936799,0.982687,0.765241,0.964581,0.956007,0.308022,0.736698,0.657426,0.961632,0.00705111,0.269022,0.402925,0.987867,0.686515,0.0641593,0.596075,0.0900732,0.107102,0.161819,0.321784,0.209982,0.51242,0.127379,0.173431,0.808953,0.255395,0.290842,0.483659,0.855421,0.396664,0.801652,0.406775,0.591368,0.0392755,0.373378,0.288135,0.255776,0.131617,0.241651,0.287501,0.837397,0.622328,0.938413,0.997519,0.945565,0.926726,0.73623,0.942285,0.287086,0.938705,0.0676705,0.357669,0.448167,0.816462,0.440995,0.715195,0.463381,0.702908,0.0847254,0.716032,0.76972,0.453858,0.42125,0.955148,0.126047,0.875508,0.906761,0.603034,0.389512,0.0154474,0.814484,0.697016,0.883501,0.862224,0.654393,0.664661,0.726594,0.831781,0.338605,0.489597,0.633242,0.205472,0.84005,0.795379,0.767615,0.730405,0.859483,0.204599,0.549734,0.6823,0.740561,0.611422,0.169579,0.119637,0.27097,0.0366656,0.496684,0.202059,0.946305,0.931717,0.218926,0.29271,0.732434,0.0504562,0.978937,0.637393,0.242328,0.19709,0.121446,0.829551,0.564442,0.547927,0.738715,0.843864,0.117428,0.704021,0.715675,0.742158,0.00674158,0.081568,0.160337,0.512932,0.213618,0.645282,0.149004,0.174531,0.554585,0.101149,0.217277,0.954238,0.3436,0.716461,0.941246,0.307925,0.293525,0.320246,0.929817,0.12499,0.820111,0.924804,0.905298,0.445621,0.623806,0.0227612,0.735917,0.806898,0.542388,0.218128,0.995668,0.517728,0.848358,0.974388,0.933277,0.700389,0.720231,0.586993,0.495777,0.879224,0.37597,0.580678,0.252568,0.212143,0.19316,0.138256,0.328399,0.168946,0.166072,0.527893,0.108737,0.304594,0.981964,0.415325,0.347657,0.284565,0.763682,0.833395,0.353731,0.0189878,0.716429,0.798459,0.690828,0.0487688,0.0614545,0.797716,0.950302,0.438325,0.0938213,0.603874,0.742266,0.329936,0.785798,0.27725,0.66115,0.935268,0.0618026,0.518665,0.480571,0.493249,0.0464545,0.413421,0.518909,0.920373,0.520621,0.503239,0.673942,0.510089,0.822879,0.327495,0.572758,0.472895,0.177418,0.56028,0.0728852,0.115114,0.405706,0.242669,0.730621,0.265722,0.504723,0.216117,0.190152,0.709965,0.91114,0.0971635,0.147595,0.631138,0.395962,0.544552,0.225571,0.608575,0.34088,0.241899,0.986003,0.479187,0.986577,0.484906,0.25345,0.979326,0.182438,0.490704,0.899833,0.607728,0.523654,0.203823,0.0372847,0.48802,0.380727,0.269933,0.293505,0.894863,0.286613,0.783684,0.603415,0.181415,0.82606,0.803646,0.0887591,0.0856597,0.472278,0.281092,0.113891,0.435961,0.148368,0.296919,0.596934,0.20974,0.979494,0.567322,0.712342,0.80829,0.356263,0.550526,0.73773,0.207677,0.942148,0.570175,0.889019,0.689417,0.381653,0.300907,0.899332,0.0643026,0.730736,0.154348,0.915091,0.253024,0.394773,0.701049,0.733404,0.691569,0.0855437,0.538364,0.166357,0.691019,0.474706,0.768482,0.869019,0.436329,0.155367,0.689683,0.00834477,0.306345,0.827439,0.0017699,0.584875,0.463213,0.486361,0.862692,0.155662,0.0443405,0.645928,0.89138,0.169713,0.463677,0.991397,0.262396,0.588922,0.121164,0.254081,0.348712,0.070133,0.856375,0.745978,0.185482,0.79719,0.112506,0.0873434,0.0551605,0.387106,0.499195,0.239551,0.482919,0.157264,0.272854,0.490461,0.0759507,0.960751,0.0124752,0.471299,0.0830215,0.261149,0.940133,0.751498,0.508235,0.950394,0.368844,0.201496,0.622177,0.938817,0.793636,0.660593,0.928377,0.15356,0.0272433,0.596304,0.37692,0.072954,0.254492,0.214199,0.239717,0.301235,0.259275,0.233636,0.101703,0.871403,0.726825,0.829667,0.470847,0.15732,0.295972,0.324813,0.90931,0.859379,0.422359,0.478373,0.831881,0.230154,0.446161,0.25536,0.235344,0.96988,0.413144,0.732381,0.146644,0.884592,0.389075,0.610218,0.488249,0.86424,0.739971,0.0183253,0.356023,0.473155,0.610722,0.183595,0.0772628,0.301677,0.00405258,0.170076,0.0432523,0.512611,0.361769,0.778042,0.593162,0.740432,0.685111,0.123858,0.8493,0.3288,0.227182,0.682571,0.854456,0.654543,0.762107,0.827307,0.547859,0.685337,0.210487,0.097316,0.501336,0.160647,0.314945,0.335531,0.915183,0.821404,0.418488,0.989518,0.0271233,0.142373,0.583569,0.760014,0.203948,0.0817224,0.659618,0.640627,0.213166,0.804096,0.954893,0.0576879,0.322266,0.919832,0.179874,0.10459,0.363812,0.877265,0.245597,0.720656,0.0923512,0.312985,0.82725,0.0369279,0.395516,0.0303993,0.544334,0.781758,0.660968,0.481511,0.320775,0.319804,0.503407,0.755291,0.306864,0.384122,0.619685,0.366045,0.733321,0.522824,0.534001,0.275534,0.565928,0.375683,0.996738,0.756015,0.809621,0.112857,0.495202,0.184758,0.814951,0.495135,0.696693,0.867582,0.670705,0.558872,0.824556,0.020535,0.0201326,0.909215,0.191358,0.533636,0.6748,0.389919,0.225998,0.146659,0.202216,0.390999,0.670329,0.810321,0.129305,0.310361,0.509954,0.669009,0.213832,0.574584,0.29267,0.0846764,0.497847,0.0798211,0.886226,0.993244,0.812236,0.643673,0.698067,0.962657,0.436537,0.512871,0.690631,0.588926,0.152985,0.605498,0.456215,0.388361,0.51158,0.997197,0.75343,0.693567,0.0870029,0.968022,0.278636,0.613126,0.770314,0.490047,0.30429,0.950824,0.962031,0.917262,0.359856,0.187864,0.951231,0.598314,0.242272,0.668529,0.309045,0.669286,0.111771,0.248069,0.168718,0.223336,0.763942,0.96484,0.937592,0.837468,0.836495,0.750071,0.43422,0.191639,0.367198,0.805758,0.29177,0.627506,0.775012,0.291891,0.977033,0.557338,0.981195,0.566095,0.962674,0.733505,0.0972759,0.988744,0.968906,0.683926,0.312184,0.269438,0.388811,0.725879,0.55317,0.572932,0.153849,0.217579,0.434868,0.213539,0.128367,0.114197,0.0414106,0.798921,0.848128,0.662639,0.645832,0.962205,0.822325,0.469794,0.29113,0.65405,0.895277,0.714445,0.0336428,0.646021,0.643428,0.910113,0.360594,0.55776,0.718751,0.876664,0.443157,0.0536068,0.591451,0.657501,0.906277,0.3476,0.725408,0.972813,0.284252,0.239106,0.437592,0.435315,0.0747106,0.347171,0.111513,0.449587,0.557782,0.626743,0.438803,0.826597,0.508939,0.730973,0.255394,0.628974,0.760606,0.732755,0.615937,0.517088,0.327852,0.150524,0.0207618,0.725111,0.833153,0.997904,0.055654,0.953801,0.443612,0.858948,0.0870768,0.240571,0.316466,0.841304,0.0984495,0.143728,0.979118,0.738159,0.604499,0.86282,0.569411,0.256971,0.644475,0.0972423,0.369838,0.378095,0.210851,0.826873,0.939404,0.403565,0.0740336,0.156739,0.897211,0.64427,0.392373,0.446304,|0.531869,0.644332,0.630248,0.389801,0.491139,0.202302,0.784881,0.500979,0.117212,0.356958,0.390485,0.762752,0.581062,0.232989,0.220358,0.41979,0.766725,0.329167,0.512267,0.406799,0.136994,0.450466,0.996042,0.00441855,0.688589,0.371032,0.977189,0.516701,0.0808509,0.0580997,0.91269,0.657503,0.416851,0.701668,0.439544,0.11446,0.629424,0.0949015,0.9413,0.84374,0.191292,0.575696,0.366742,0.938115,0.539822,0.131127,0.398224,0.0106966,0.113672,0.0373802,0.51166,0.0409854,0.108931,0.40833,0.476237,0.0501303,0.885146,0.0842784,0.831265,0.333552,0.554175,0.432996,0.882537,0.0396594,0.317897,0.578468,0.523259,0.438379,0.975902,0.812318,0.188873,0.90254,0.486928,0.829572,0.524109,0.624916,0.564405,0.636009,0.343718,0.788174,0.0146461,0.217592,0.575403,0.331295,0.205197,0.865817,0.996894,0.557811,0.319428,0.699843,0.0397555,0.592383,0.962527,0.364238,0.301224,0.75772,0.049873,0.625604,0.722302,0.716318,0.413512,0.109574,0.459107,0.404093,0.332242,0.567121,0.319092,0.132815,0.390325,0.417469,0.505193,0.747413,0.924669,0.957642,0.534054,0.333964,0.405602,0.0820367,0.367596,0.20357,0.672275,0.335218,0.0933042,0.89599,0.945705,0.892774,0.740083,0.784607,0.270534,0.791093,0.430158,0.975616,0.850384,0.496295,0.251358,0.317715,0.751168,0.861934,0.355119,0.649505,0.560691,0.49723,0.544198,0.157541,0.431204,0.768419,0.235963,0.139323,0.593742,0.526374,0.231362,0.408657,0.216688,0.525795,0.0204095,0.0261594,0.249409,0.496869,0.532344,0.762631,0.794706,0.612383,0.329517,0.52079,0.160059,0.409305,0.975289,0.66611,0.403522,0.595717,0.729646,0.516357,0.974593,0.90169,0.134906,0.453995,0.679102,0.982377,0.121211,0.227652,0.0820913,0.343494,0.943631,0.339334,0.0577393,0.626978,0.745416,0.30592,0.614096,0.232624,0.869218,0.828388,0.226,0.559165,0.104842,0.0203163,0.00286549,0.672785,0.84162,0.347754,0.791921,0.351083,0.162815,0.845861,0.386266,0.842187,0.806991,0.461537,0.82031,0.361399,0.107281,0.166616,0.98398,0.834066,0.0178507,0.726116,0.21612,0.343286,0.912035,0.244321,0.397142,0.785659,0.113024,0.533369,0.243263,0.386531,0.455952,0.90508,0.56997,0.44332,0.126011,0.0305816,0.0256616,0.756044,0.844511,0.998871,0.834201,0.72788,0.416232,0.215114,0.29503,0.389468,0.341646,0.915201,0.955084,0.679691,0.81614,0.107408,0.128601,0.446437,0.701753,0.634596,0.580776,0.574537,0.855298,0.898712,0.467932,0.376766,0.347983,0.00780815,0.478486,0.654431,0.644924,0.570342,0.314641,0.161358,0.321178,0.483843,0.454592,0.0406098,0.853511,0.400954,0.0368696,0.36257,0.735658,0.421448,0.733017,0.104062,0.413003,0.964016,0.465634,0.392014,0.646337,0.784132,0.70872,0.5014,0.766226,0.471478,0.323943,0.919931,0.855541,0.703013,0.383887,0.805952,0.233864,0.220431,0.740222,0.10321,0.19604,0.0123609,0.668841,0.744759,0.712805,0.877827,0.827057,0.834219,0.846011,0.651684,0.434521,0.100071,0.675682,0.24597,0.814474,0.370167,0.723888,0.479508,0.122031,0.888181,0.179719,0.28664,0.89408,0.803476,0.817837,0.0245878,0.291191,0.967202,0.216312,0.578757,0.0241379,0.307744,0.807659,0.0887579,0.0585405,0.223921,0.556344,0.74545,0.234392,0.338591,0.50855,0.473135,0.922339,0.264953,0.336427,0.585822,0.850601,0.709778,0.291479,0.9106,0.0417291,0.531407,0.636102,0.245597,0.233177,0.199146,0.123156,0.932337,0.511288,0.707398,0.541338,0.65718,0.211282,0.302629,0.171609,0.417857,0.637126,0.198217,0.886271,0.761755,0.342951,0.591185,0.466531,0.241682,0.218533,0.524602,0.568334,0.988135,0.401274,0.0856005,0.569004,0.776484,0.260725,0.725404,0.319986,0.857763,0.980086,0.799227,0.510829,0.111772,0.535232,0.628415,0.49871,0.55466,0.0861093,0.75523,0.713996,0.24323,0.742112,0.317571,0.982314,0.805816,0.20331,0.483125,0.889333,0.256122,0.445559,0.925542,0.378826,0.815228,0.530018,0.353872,0.246484,0.542882,0.92929,0.528145,0.442722,0.479678,0.603582,0.381738,0.579648,0.253706,0.284727,0.786136,0.49647,0.69844,0.670771,0.768876,0.291529,0.884073,0.796953,0.101341,0.417625,0.460751,0.80313,0.423187,0.575613,0.395032,0.250852,0.503405,0.117366,0.555108,0.747162,0.0904853,0.076031,0.386112,0.322509,0.92934,0.188584,0.351339,0.033338,0.603144,0.0622936,0.723937,0.476028,0.353205,0.996483,0.503407,0.10544,0.120614,0.839056,0.982479,0.636388,0.373042,0.726095,0.0666079,0.702232,0.381639,0.215484,0.492677,0.52288,0.70056,0.370687,0.549896,0.000507474,0.292037,0.332158,0.0870664,0.979221,0.892857,0.138641,0.975593,0.592217,0.646109,0.356993,0.981751,0.32376,0.816898,0.795012,0.323956,0.445864,0.759409,0.285662,0.0161982,0.203731,0.804303,0.402209,0.723118,0.871077,0.340427,0.056812,0.546114,0.716716,0.641137,0.253127,0.0768066,0.276558,0.243024,0.911581,0.0882079,0.566496,0.614911,0.188118,0.534554,0.352116,0.348647,0.791829,0.123585,0.01335,0.588464,0.486628,0.30678,0.520873,0.78145,0.402923,0.467182,0.773933,0.521095,0.422253,0.225555,0.269181,0.902918,0.640573,0.532398,0.698735,0.412967,0.0470074,0.327996,0.767616,0.574535,0.304639,0.938546,0.437404,0.481477,0.617646,0.0631006,0.415753,0.0129459,0.114355,0.0604386,0.642238,0.993421,0.651631,0.891818,0.571635,0.664948,0.00335461,0.760591,0.560683,0.0119136,0.476142,0.745696,0.217745,0.0973095,0.747245,0.698898,0.124929,0.968465,0.712488,0.452888,0.516658,0.274931,0.0923567,0.587308,0.188222,0.824394,0.856883,0.334255,0.355905,0.930556,0.619161,0.75069,0.565334,0.610304,0.686181,0.954225,0.692123,0.256217,0.80006,0.863356,0.207587,0.695347,0.199362,0.916821,0.348008,0.165844,0.458472,0.865453,0.742906,0.461383,0.787685,0.110399,0.103239,0.173838,0.816328,0.342082,0.2578,0.84642,0.225886,0.0164318,0.606603,0.504225,0.685686,0.864951,0.739814,0.936154,0.123611,0.182561,0.604554,0.0619404,0.769938,0.856093,0.566154,0.645348,0.306004,0.0350298,0.912072,0.027473,0.44531,0.139801,0.439163,0.983647,0.818102,0.873724,0.543536,0.368149,0.749839,0.981329,0.913738,0.572271,0.346458,0.963767,0.86401,0.548815,0.604025,0.212732,0.811276,0.31859,0.0780385,0.198174,0.454742,0.935082,0.561625,0.349959,0.807228,0.551607,0.714288,0.248707,0.62938,0.317485,0.200466,0.594501,0.497599,0.0406528,0.190286,0.155769,0.082144,0.264681,0.774742,0.504305,0.11265,0.824861,0.230559,0.145583,0.552231,0.891768,0.32485,0.148654,0.0408424,0.695542,0.646217,0.686848,0.728109,0.585109,0.026539,0.882186,0.527849,0.0293536,0.581035,0.0409623,0.175516,0.81355,0.402217,0.853058,0.325831,0.288232,0.180393,0.0233944,0.742672,0.973172,0.246529,0.325556,0.0572875,0.143226,0.377109,0.757168,0.523135,0.958138,0.545464,0.413292,0.557947,0.728071,0.268465,0.303175,0.783642,0.76971,0.400745,0.527878,0.736116,0.849937,0.301466,0.274577,0.527202,0.297325,0.0353872,0.299728,0.408838,0.194195,0.67284,0.671496,0.650919,0.262321,0.28191,0.894409,0.168455,0.229644,0.563854,0.563142,0.651691,0.274217,0.940379,0.898887,0.773839,0.685355,0.198015,0.372834,0.506913,0.662198,0.854416,0.985327,0.504578,0.835257,0.325232,0.954835,0.966877,0.22101,0.774884,0.236038,0.358536,0.790806,0.932149,0.876718,0.352409,0.61744,0.985763,0.746033,0.768705,0.60603,0.939966,0.161257,0.860231,0.0588243,0.794266,0.157268,0.828187,0.902144,0.546279,0.738209,0.804326,0.515449,0.0610834,0.653562,0.0567833,0.682436,0.498114,0.983248,0.175783,0.492503,0.906363,0.616309,0.292569,0.897434,0.0184535,0.113412,0.266481,0.00627887,0.276689,0.0530125,0.941753,0.632656,0.487955,0.718444,0.192566,0.619448,0.905376,0.0354368,0.448045,0.133161,0.856799,0.770147,0.619874,0.703261,0.0378345,0.6668,0.806064,0.299941,0.195222,0.138928,0.979576,0.685382,0.166592,0.979512,0.960529,0.808195,0.386702,0.0809886,0.144724,0.413533,0.659068,0.632849,0.0788029,0.015795,0.944555,0.325569,0.434983,0.344222,0.217492,0.58291,0.336529,0.00857306,0.131306,0.038985,0.351591,0.0754741,0.761973,0.0154935,0.822532,0.671354,0.71756,0.990595,0.513129,0.379143,0.233714,0.560663,0.84283,0.0452681,0.487507,0.333115,0.946699,0.335927,0.951558,0.301801,0.109028,0.860923,0.149033,0.892335,0.727786,0.00822026,0.714039,0.220525,0.57006,0.796233,0.522845,0.374421,0.456903,0.226241,0.779434,0.599841,0.307986,0.587523,0.0134954,0.482589,0.155297,0.996226,0.539368,0.946997,0.265816,0.00339544,0.792975,0.493178,0.41348,0.0446523,0.382099,0.0161169,0.591034,0.653234,0.304788,0.875852,0.624782,0.793885,0.662658,0.134269,0.877192,0.984083,0.28406,0.47289,0.477996,0.132277,0.193513,0.190341,0.596003,0.497945,0.850515,0.500224,0.140754,0.410167,0.290908,0.485973,0.490485,0.755139,0.884168,0.340119,0.296161,0.0686885,0.0100714,0.227121,0.433411,0.232828,0.103815,0.556189,0.236153,0.292571,0.242792,0.504973,0.479339,0.876174,0.000191569,0.671168,0.942425,0.405743,0.0973142,0.642064,0.395752,0.0875812,0.986249,0.565933,0.316621,0.542285,0.19532,0.559775,0.928293,0.107759,0.0430384,0.858128,0.82033,0.0609782,0.829092,0.663838,0.492619,0.815015,0.602756,0.530225,0.329203,0.590136,0.84539,0.251472,0.194395,0.503001,0.216361,0.211784,0.963818,0.771933,0.867176,0.869993,0.186601,0.846398,0.098711,0.197364,0.142238,0.990682,0.132972,0.921786,0.0172374,0.526949,0.422245,0.380888,0.30985,0.019317,0.937487,0.0908575,0.952608,0.484131,0.441161,0.878202,0.351887,0.940395,0.187045,0.633053,0.595831,0.431457,0.80321,0.564628,|0.731234,0.728392,0.727412,0.59553,0.757422,0.485886,0.736417,0.973676,0.83864,0.842775,0.871488,0.437185,0.146079,0.471012,0.0416691,0.94413,0.548107,0.848142,0.54664,0.710428,0.494919,0.611466,0.272742,0.248592,0.774785,0.649135,0.603841,0.609928,0.339076,0.534499,0.977789,0.271945,0.404804,0.0958824,0.10141,0.608644,0.255944,0.0492582,0.465156,0.358242,0.0966098,0.494816,0.605782,0.0427123,0.618784,0.529006,0.776302,0.182362,0.139334,0.231614,0.708271,0.473342,0.953281,0.257973,0.866446,0.330775,0.764364,0.194072,0.651223,0.342455,0.751192,0.170892,0.484607,0.808048,0.0746264,0.756625,0.392597,0.608724,0.540159,0.416365,0.752604,0.947946,0.88858,0.463205,0.71202,0.0430149,0.769718,0.275393,0.981505,0.301836,0.58682,0.921744,0.411112,0.924977,0.308658,0.746545,0.479794,0.928679,0.283794,0.188226,0.450022,0.2046,0.471109,0.746659,0.375532,0.929726,0.00565058,0.250453,0.267567,0.515524,0.424442,0.911656,0.425017,0.230512,0.677642,0.655891,0.576422,0.77139,0.224122,0.488578,0.718317,0.267001,0.782308,0.889054,0.941949,0.541035,0.475804,0.153012,0.61977,0.818352,0.907865,0.112398,0.427609,0.313921,0.451829,0.671447,0.232519,0.644578,0.00519162,0.998212,0.483827,0.628643,0.848097,0.457574,0.769725,0.727958,0.292522,0.00970286,0.817464,0.582192,0.741714,0.84248,0.29618,0.291268,0.704693,0.799069,0.886838,0.0243835,0.474413,0.920366,0.198315,0.98825,0.612645,0.552565,0.395008,0.398217,0.174557,0.347255,0.872869,0.263783,0.992358,0.589919,0.535646,0.314105,0.0797498,0.477849,0.499542,0.743921,0.264539,0.855815,0.767285,0.0797768,0.138848,0.688688,0.723637,0.801373,0.986839,0.243932,0.598268,0.690438,0.171404,0.66373,0.087342,0.819767,0.964514,0.014899,0.495342,0.945678,0.428446,0.0935969,0.17494,0.0858015,0.499692,0.231087,0.875298,0.098528,0.209096,0.252553,0.40282,0.0896128,0.272688,0.27878,0.408672,0.829257,0.941979,0.695633,0.0686884,0.266182,0.551873,0.124199,0.0451197,0.655122,0.939168,0.9791,0.501682,0.336455,0.992073,0.0930322,0.686785,0.971314,0.419375,0.793652,0.918239,0.0367889,0.636311,0.802479,0.116329,0.608568,0.276674,0.621579,0.0452749,0.674693,0.130915,0.0697696,0.357227,0.88403,0.654743,0.987804,0.652866,0.312262,0.967492,0.75688,0.793144,0.581059,0.954467,0.0627303,0.582607,0.894927,0.0965624,0.0475134,0.0465766,0.340354,0.485808,0.509513,0.580457,0.0475647,0.184511,0.829538,0.0920234,0.0954033,0.903407,0.645764,0.246386,0.865935,0.423342,0.974924,0.91976,0.520318,0.86082,0.984849,0.836079,0.291924,0.283721,0.960304,0.703695,0.467299,0.609713,0.8125,0.367419,0.377766,0.983242,0.364096,0.395374,0.492131,0.369504,0.18062,0.798376,0.0160844,0.217904,0.317418,0.170924,0.0217983,0.258821,0.330735,0.296233,0.602499,0.599091,0.824464,0.375727,0.568458,0.00573719,0.983234,0.847579,0.958437,0.710159,0.0935133,0.883806,0.260663,0.404695,0.188905,0.374681,0.555782,0.958203,0.511636,0.0738674,0.554753,0.861396,0.742895,0.435012,0.751803,0.984433,0.916149,0.0299621,0.131584,0.442828,0.421368,0.22457,0.524938,0.182725,0.263328,0.0490221,0.69791,0.683196,0.929205,0.658793,0.764988,0.951284,0.314503,0.111705,0.740365,0.967992,0.403322,0.664356,0.94606,0.540366,0.183211,0.046063,0.709457,0.857251,0.64752,0.434688,0.853309,0.832969,0.0974277,0.351211,0.844443,0.593959,0.31524,0.860651,0.47329,0.269796,0.527956,0.433048,0.514782,0.559878,0.217325,0.560056,0.395927,0.355112,0.632219,0.208692,0.267106,0.267409,0.983278,0.629615,0.0244465,0.0110999,0.311395,0.95485,0.164585,0.534394,0.497224,0.494972,0.0737505,0.583023,0.55437,0.626666,0.182799,0.881224,0.717147,0.989011,0.0847256,0.0684284,0.783132,0.919269,0.212412,0.0648439,0.165301,0.667986,0.192103,0.978485,0.838311,0.904059,0.85273,0.828666,0.294576,0.910052,0.360485,0.490445,0.848789,0.474287,0.261539,0.316237,0.559227,0.0693884,0.222501,0.975743,0.778285,0.302382,0.0701974,0.599704,0.0502453,0.407006,0.783052,0.742741,0.638598,0.368646,0.820822,0.685785,0.783892,0.540569,0.0505394,0.927624,0.805908,0.3381,0.178726,0.414976,0.854095,0.415994,0.102016,0.112029,0.944208,0.076107,0.150595,0.738975,0.660509,0.625416,0.752806,0.150778,0.237002,0.921407,0.871738,0.779972,0.238956,0.217732,0.639063,0.660474,0.797184,0.910403,0.133127,0.866923,0.576476,0.79151,0.0834322,0.94063,0.745572,0.945075,0.580999,0.412189,0.95376,0.895957,0.613567,0.253054,0.53777,0.596027,0.167182,0.515758,0.444635,0.0595376,0.726067,0.797947,0.0774896,0.573266,0.0354375,0.134565,0.236971,0.336463,0.370059,0.960005,0.41276,0.356944,0.281674,0.687024,0.0427452,0.382572,0.899671,0.975244,0.197607,0.931544,0.0249895,0.16036,0.515113,0.371437,0.409552,0.124172,0.629179,0.428082,0.972006,0.415159,0.287418,0.116796,0.792655,0.997109,0.254364,0.554847,0.837031,0.539199,0.216646,0.248253,0.811824,0.793298,0.604745,0.374463,0.14529,0.238951,0.757338,0.772229,0.666378,0.813007,0.369696,0.319376,0.562824,0.828389,0.460476,0.815961,0.594823,0.895735,0.869894,0.0376742,0.882087,0.402743,0.599424,0.316707,0.29221,0.891854,0.214321,0.899386,0.627579,0.0336886,0.181416,0.425869,0.248378,0.720628,0.12194,0.977624,0.12022,0.466186,0.210709,0.620478,0.570619,0.891484,0.484557,0.261984,0.44242,0.590266,0.443652,0.268403,0.825808,0.463513,0.615867,0.362934,0.615747,0.854836,0.573156,0.019647,0.902848,0.913636,0.763485,0.0602375,0.991883,0.640112,0.434794,0.988611,0.98571,0.20651,0.81755,0.348506,0.741165,0.737862,0.192016,0.691709,0.498271,0.877941,0.600791,0.579052,0.712563,0.495266,0.275751,0.911046,0.979536,0.786447,0.945807,0.521485,0.643307,0.0877374,0.161217,0.557024,0.616252,0.633528,0.00209093,0.415824,0.865159,0.418682,0.353312,0.311749,0.803845,0.964322,0.462681,0.119146,0.140628,0.545436,0.930452,0.261012,0.253172,0.730266,0.611736,0.647638,0.111818,0.173642,0.571676,0.782868,0.891287,0.953868,0.885557,0.209856,0.258465,0.674565,0.930257,0.366206,0.319594,0.869947,0.460313,0.846656,0.524285,0.784169,0.90348,0.381512,0.0705733,0.712266,0.930397,0.787994,0.823195,0.0126178,0.0932989,0.0140074,0.0781695,0.654741,0.689682,0.786054,0.823748,0.048321,0.497794,0.70806,0.44065,0.0823533,0.835828,0.219302,0.483894,0.453923,0.270009,0.282648,0.723538,0.78666,0.0908501,0.711576,0.643099,0.0577171,0.877481,0.40731,0.37211,0.629572,0.523482,0.0696961,0.442046,0.883486,0.193081,0.747103,0.828933,0.494483,0.844069,0.234459,0.116867,0.633378,0.827835,0.871122,0.758405,0.489511,0.40939,0.878912,0.100803,0.687481,0.233021,0.193766,0.934399,0.111274,0.39498,0.517477,0.287956,0.114617,0.321593,0.55137,0.00282323,0.319712,0.24453,0.814917,0.885946,0.896401,0.758687,0.00659317,0.222342,0.988033,0.841144,0.382699,0.636765,0.732551,0.703123,0.979607,0.839449,0.0406446,0.486933,0.498976,0.533383,0.202653,0.0389148,0.899042,0.80084,0.999337,0.557734,0.0094102,0.399358,0.741799,0.548776,0.552514,0.45631,0.282943,0.872925,0.28858,0.0857704,0.3535,0.0458162,0.595718,0.272466,0.295233,0.321487,0.141945,0.937926,0.0390142,0.539671,0.298772,0.611982,0.290141,0.403217,0.133467,0.427679,0.641545,0.657856,0.521898,0.17953,0.196528,0.224813,0.179435,0.0997958,0.905754,0.426993,0.163687,0.555913,0.431772,0.874281,0.850435,0.350667,0.766417,0.58545,0.707093,0.612696,0.889992,0.319016,0.403369,0.585574,0.965829,0.178584,0.355497,0.155482,0.897656,0.132212,0.385682,0.558311,0.969546,0.480625,0.911129,0.0536398,0.295977,0.885855,0.0194161,0.382045,0.443928,0.318686,0.797583,0.231711,0.599555,0.884733,0.585118,0.560811,0.126797,0.197908,0.191067,0.537615,0.854226,0.939713,0.262015,0.699045,0.192704,0.257201,0.943611,0.984451,0.382027,0.999796,0.226493,0.746702,0.0232636,0.346145,0.0720229,0.704559,0.53129,0.652219,0.0754467,0.730876,0.275301,0.796114,0.997139,0.83596,0.74405,0.0861937,0.527588,0.150354,0.0882109,0.00934792,0.422459,0.927798,0.753582,0.996197,0.310595,0.594595,0.664925,0.674121,0.700323,0.8552,0.149335,0.968157,0.496038,0.452565,0.425004,0.463817,0.174456,0.534674,0.397409,0.0945659,0.859236,0.0599332,0.341184,0.680566,0.692761,0.740349,0.869204,0.243956,0.576572,0.533393,0.96598,0.63344,0.852116,0.199911,0.913662,0.712218,0.217486,0.970991,0.0300474,0.816001,0.811429,0.530105,0.753095,0.0569418,0.416603,0.693183,0.527824,0.729271,0.0725199,0.751355,0.566507,0.613121,0.456531,0.988041,0.0340111,0.737123,0.366652,0.473956,0.306851,0.175961,0.699122,0.277685,0.889337,0.867567,0.536897,0.426534,0.0299777,0.828583,0.721942,0.719418,0.990335,0.831225,0.311705,0.189572,0.913987,0.616693,0.897423,0.0774426,0.66907,0.872641,0.786483,0.533769,0.0323996,0.56334,0.418804,0.334378,0.525726,0.103503,0.454286,0.353009,0.172016,0.0559376,0.568929,0.263571,0.203465,0.809981,0.231106,0.445298,0.438348,0.550866,0.356624,0.967138,0.828859,0.0973324,0.999666,0.76812,0.462349,0.0772018,0.94544,0.921318,0.335758,0.526057,0.409939,0.938459,0.790608,0.53551,0.135695,0.423285,0.920662,0.212193,0.941504,0.734218,0.837891,0.469141,0.850836,0.420245,0.456736,0.763911,0.593458,0.661029,0.967701,0.579852,0.0685655,0.385147,0.412934,0.091644,0.538861,0.206069,0.713365,0.897816,0.907341,0.576203,0.507351,0.0162545,0.166916,0.118458,0.859823,0.797922,0.717036,0.539043,0.300812,0.827013,0.801013,0.345041,|0.54224,0.768788,0.0470839,0.6983,0.0998646,0.966166,0.51061,0.609503,0.17512,0.633382,0.531414,0.366463,0.17527,0.582551,0.109503,0.939606,0.180595,0.972863,0.449555,0.914928,0.256336,0.405286,0.688926,0.68609,0.579678,0.778848,0.740946,0.848336,0.642001,0.25252,0.945173,0.23883,0.159026,0.0810369,0.939654,0.435979,0.219202,0.309649,0.0732068,0.136045,0.340251,0.722277,0.791234,0.565136,0.0340627,0.94981,0.194403,0.174037,0.374651,0.278815,0.442577,0.525615,0.504702,0.0171279,0.830934,0.157427,0.839025,0.209228,0.765387,0.368986,0.0544899,0.0400543,0.0545048,0.14422,0.274269,0.415574,0.148208,0.398274,0.125156,0.18777,0.880924,0.653992,0.670854,0.604235,0.165721,0.277829,0.958285,0.602744,0.578949,0.22091,0.734954,0.928044,0.950126,0.992799,0.289351,0.309076,0.0339218,0.483894,0.469659,0.315288,0.335967,0.215286,0.408292,0.766285,0.52191,0.175276,0.35546,0.914622,0.68548,0.935504,0.63579,0.85647,0.0223989,0.188384,0.319781,0.755766,0.975047,0.977484,0.139481,0.40725,0.335242,0.815413,0.323447,0.0414425,0.157567,0.7497,0.570366,0.463438,0.810491,0.332,0.496821,0.457329,0.835285,0.156491,0.252085,0.309236,0.928232,0.518056,0.425033,0.375551,0.921727,0.158399,0.734315,0.324073,0.734095,0.35071,0.489906,0.134727,0.792181,0.904178,0.180505,0.0752947,0.518881,0.0333691,0.299425,0.873546,0.014251,0.752124,0.105048,0.226178,0.549071,0.764338,0.169481,0.942095,0.483963,0.662869,0.440745,0.330538,0.568094,0.460152,0.846527,0.169585,0.565157,0.0915948,0.596423,0.0809048,0.399277,0.856152,0.965415,0.867931,0.996857,0.180601,0.959781,0.396656,0.36554,0.778444,0.798052,0.920901,0.0585753,0.607951,0.664403,0.282087,0.514818,0.153753,0.163782,0.551793,0.908438,0.770559,0.409865,0.0969446,0.42825,0.249269,0.22926,0.986669,0.0150626,0.811272,0.205055,0.0238023,0.495824,0.09082,0.750179,0.950653,0.195267,0.0155955,0.45865,0.650113,0.526657,0.57912,0.0611116,0.934879,0.526229,0.465192,0.700897,0.55616,0.472663,0.892418,0.45891,0.31071,0.598479,0.379763,0.232316,0.65256,0.734441,0.995807,0.628728,0.348492,0.918577,0.909019,0.997036,0.745493,0.206675,0.35416,0.170413,0.788255,0.260818,0.254484,0.625011,0.618958,0.970866,0.244437,0.889445,0.180962,0.145179,0.33624,0.418066,0.91278,0.397788,0.0877176,0.956455,0.588499,0.675354,0.105139,0.971763,0.969576,0.547067,0.819334,0.133839,0.834716,0.0811948,0.237091,0.566138,0.893333,0.315459,0.436182,0.033619,0.818252,0.0750228,0.281558,0.949897,0.216859,0.500521,0.203492,0.350306,0.825079,0.984127,0.56346,0.651759,0.408707,0.544345,0.0130101,0.757668,0.941522,0.772306,0.278251,0.484131,0.670382,0.555675,0.774436,0.199579,0.892538,0.928026,0.317467,0.37861,0.00965476,0.473978,0.246657,0.707884,0.635714,0.130416,0.168903,0.0609917,0.189639,0.451459,0.258381,0.618334,0.949279,0.066016,0.46867,0.208699,0.696063,0.873686,0.94537,0.73124,0.00628388,0.088579,0.486808,0.321567,0.575595,0.0199638,0.0393085,0.0672364,0.851343,0.487294,0.920453,0.758052,0.834275,0.521344,0.805284,0.723656,0.424041,0.60272,0.539013,0.369419,0.807322,0.42582,0.691114,0.839451,0.944193,0.619794,0.830824,0.53835,0.56739,0.833312,0.0306234,0.138401,0.310241,0.992538,0.654122,0.274801,0.405321,0.0766851,0.947736,0.141997,0.125898,0.66344,0.157343,0.690643,0.932713,0.588171,0.775144,0.465642,0.190194,0.161928,0.751707,0.0708271,0.176383,0.0320244,0.954215,0.709113,0.706627,0.0102147,0.501001,0.239867,0.447146,0.661901,0.0811973,0.537358,0.908203,0.807477,0.298585,0.942245,0.122503,0.744111,0.017181,0.32986,0.781161,0.556951,0.426452,0.21669,0.82881,0.748646,0.129114,0.789186,0.444515,0.592758,0.847226,0.451054,0.648366,0.971421,0.825945,0.0062775,0.902463,0.351728,0.654396,0.0845437,0.507182,0.900818,0.210305,0.822973,0.229725,0.970715,0.489394,0.294366,0.453898,0.302529,0.563596,0.979583,0.713806,0.431186,0.138643,0.226426,0.0870835,0.395411,0.185753,0.430335,0.0660362,0.196353,0.411775,0.377374,0.229439,0.821378,0.313578,0.12239,0.395205,0.157195,0.595203,0.647351,0.577406,0.128452,0.443586,0.264733,0.520587,0.889386,0.246833,0.474092,0.255717,0.661026,0.895527,0.351241,0.533535,0.354018,0.435515,0.584798,0.423045,0.550949,0.726534,0.580288,0.864626,0.00311613,0.436802,0.942793,0.0921176,0.336563,0.28463,0.154747,0.0946077,0.947917,0.551868,0.0587729,0.56555,0.413237,0.928971,0.524324,0.109748,0.820131,0.146242,0.125599,0.636593,0.216461,0.438006,0.0888845,0.300564,0.311394,0.722289,0.680594,0.609258,0.140038,0.442488,0.324661,0.112548,0.126834,0.654083,0.129538,0.191443,0.353033,0.985956,0.845505,0.223511,0.648428,0.452144,0.301583,0.0498068,0.191432,0.639627,0.984806,0.505515,0.320557,0.484575,0.162371,0.333323,0.731713,0.0193488,0.0460723,0.871261,0.646052,0.974479,0.791883,0.774365,0.616901,0.0772973,0.262551,0.705942,0.397685,0.488219,0.894137,0.364386,0.618872,0.230733,0.411266,0.936946,0.527514,0.310104,0.885323,0.196701,0.482971,0.638294,0.310056,0.0137194,0.591555,0.591613,0.397974,0.983925,0.0250613,0.279248,0.719026,0.304291,0.127846,0.60755,0.421152,0.935908,0.470224,0.419437,0.213149,0.03358,0.752189,0.497841,0.763313,0.0780114,0.456334,0.998798,0.775445,0.740544,0.614295,0.97537,0.676933,0.785849,0.115819,0.8671,0.892177,0.471399,0.420021,0.261436,0.557318,0.161294,0.535904,0.594433,0.233897,0.772162,0.169859,0.342391,0.690026,0.811904,0.713808,0.211324,0.960604,0.490507,0.995419,0.834562,0.762691,0.195092,0.631194,0.80921,0.479477,0.99191,0.202922,0.8187,0.0740836,0.880118,0.591176,0.220802,0.803956,0.475265,0.90579,0.782181,0.0466343,0.73448,0.167896,0.303478,0.49006,0.608458,0.54622,0.486699,0.90549,0.397281,0.297501,0.170635,0.231996,0.769137,0.51422,0.226729,0.735891,0.849777,0.698683,0.10094,0.280133,0.376119,0.260768,0.342169,0.279905,0.946466,0.542287,0.972756,0.129703,0.00223637,0.596484,0.389611,0.414548,0.519361,0.0498233,0.19796,0.294346,0.833561,0.963025,0.874479,0.692861,0.466261,0.384091,0.95811,0.0946917,0.0416245,0.256321,0.37017,0.452282,0.921721,0.75754,0.0809703,0.315057,0.735231,0.516431,0.268305,0.617898,0.888191,0.259407,0.904162,0.784938,0.395168,0.166327,0.342921,0.3548,0.0536333,0.944986,0.866538,0.876366,0.258425,0.719808,0.727878,0.490535,0.172334,0.0036459,0.413913,0.455276,0.159039,0.740078,0.183596,0.387983,0.37348,0.792407,0.0254413,0.532191,0.671135,0.648843,0.933725,0.821573,0.896595,0.683923,0.0383834,0.397598,0.908479,0.390623,0.430828,0.872649,0.235075,0.796733,0.0911725,0.836259,0.362312,0.0278035,0.721725,0.180651,0.139845,0.157781,0.342284,0.137989,0.858425,0.827344,0.497719,0.0264935,0.538652,0.402473,0.742783,0.988554,0.309709,0.528731,0.0165845,0.159645,0.594644,0.45145,0.0553042,0.569521,0.679154,0.178791,0.599769,0.537644,0.936422,0.48575,0.961792,0.972169,0.278169,0.878105,0.0219932,0.280982,0.276688,0.259568,0.0527924,0.219513,0.163636,0.128288,0.256112,0.846188,0.449887,0.712776,0.750561,0.951269,0.94204,0.168646,0.832993,0.976267,0.32364,0.720888,0.285782,0.555382,0.947991,0.174226,0.733084,0.404524,0.993295,0.0864816,0.247407,0.452002,0.280073,0.126765,0.961601,0.373039,0.549412,0.156883,0.88323,0.230693,0.638413,0.665489,0.899307,0.476512,0.8243,0.769307,0.763779,0.899789,0.557102,0.535194,0.949055,0.31854,0.91706,0.81527,0.948144,0.851585,0.129566,0.370459,0.394425,0.27932,0.27339,0.325333,0.994223,0.76236,0.84386,0.117162,0.0772916,0.678703,0.802964,0.244122,0.598693,0.700364,0.0898204,0.425274,0.221802,0.954117,0.596257,0.882374,0.532507,0.538194,0.368081,0.221924,0.578261,0.511108,0.418659,0.395886,0.839057,0.109695,0.740158,0.617594,0.0547598,0.910201,0.341031,0.617501,0.766994,0.753646,0.252377,0.238895,0.505035,0.0716217,0.625279,0.701513,0.640557,0.667793,0.692946,0.179976,0.468598,0.328035,0.199334,0.678109,0.895131,0.919316,0.899234,0.391877,0.104358,0.945519,0.962939,0.728541,0.85669,0.107177,0.351965,0.924989,0.988169,0.635751,0.0164146,0.120347,0.440657,0.749826,0.433711,0.095648,0.319531,0.154302,0.0947911,0.539671,0.677192,0.876371,0.651675,0.118715,0.78361,0.954606,0.0943426,0.221325,0.00598407,0.106898,0.770457,0.493491,0.85252,0.770857,0.173612,0.962807,0.181524,0.244872,0.836377,0.761797,0.578485,0.609832,0.134929,0.336261,0.642743,0.697659,0.579963,0.550278,0.778989,0.494969,0.523998,0.888131,0.436335,0.263552,0.40007,0.699799,0.645365,0.0914786,0.556492,0.270499,0.776435,0.876032,0.0298019,0.13835,0.520617,0.773768,0.676265,0.65004,0.341082,0.991252,0.346959,0.780814,0.64288,0.116567,0.98753,0.366636,0.381512,0.699308,0.199505,0.533116,0.967063,0.00205135,0.147155,0.5471,0.0248128,0.745524,0.932282,0.915449,0.289017,0.170746,0.963558,0.230494,0.371496,0.971433,0.876478,0.393811,0.933474,0.445621,0.90595,0.2878,0.794148,0.0934949,0.7296,0.769632,0.831357,0.295764,0.278716,0.0699648,0.658805,0.724792,0.813121,0.40515,0.401342,0.900283,0.75144,0.120787,0.908001,0.593624,0.00426477,0.214689,0.530358,0.670752,0.182844,0.0762469,0.0190478,0.455834,0.770192,0.860096,0.435966,0.149387,0.73763,0.170343,0.753551,0.632892,0.611763,0.452702,0.493967,0.952417,0.359347,0.120524,0.00915796,0.176885,0.915924,0.669625,0.103813,0.0347758,0.089952,0.108022,0.232464,|0.667049,0.893104,0.542491,0.93312,0.884581,0.00464261,0.994115,0.347891,0.976842,0.365961,0.622489,0.748553,0.677811,0.671414,0.846448,0.753204,0.795222,0.535513,0.510446,0.4565,0.735312,0.474523,0.538417,0.955833,0.204174,0.499273,0.469803,0.336466,0.784144,0.566885,0.796664,0.647775,0.538342,0.171843,0.405955,0.794658,0.0325624,0.0397012,0.863642,0.599772,0.767526,0.61093,0.83339,0.224692,0.783984,0.522436,0.319012,0.0731139,0.201859,0.285975,0.888478,0.764263,0.396709,0.971715,0.443949,0.394741,0.396717,0.25559,0.987148,0.897378,0.891273,0.461912,0.725109,0.158683,0.890966,0.588379,0.310547,0.322417,0.554799,0.394325,0.949728,0.00127435,0.160811,0.971112,0.52934,0.211276,0.077086,0.452731,0.309334,0.290874,0.978037,0.198244,0.186318,0.408332,0.516402,0.502767,0.722321,0.50062,0.256615,0.874794,0.803843,0.355115,0.327139,0.503406,0.790762,0.976067,0.0652664,0.440691,0.125351,0.555423,0.858806,0.799184,0.358317,0.883651,0.0199562,0.0675979,0.895272,0.110321,0.686215,0.965962,0.132861,0.508013,0.963531,0.298561,0.535261,0.903018,0.0988188,0.141825,0.998187,0.576599,0.553603,0.474561,0.407065,0.617001,0.0747336,0.257868,0.356988,0.998003,0.259144,0.487377,0.157464,0.336214,0.349739,0.205149,0.715402,0.628289,0.497536,0.61351,0.422847,0.469891,0.671769,0.0298514,0.953261,0.452792,0.957629,0.553746,0.615787,0.301952,0.196357,0.572294,0.650085,0.390391,0.42598,0.967679,0.771299,0.765732,0.317976,0.685295,0.588171,0.584331,0.939694,0.501771,0.0333762,0.933286,0.730319,0.483819,0.0589703,0.788181,0.162069,0.41242,0.244108,0.893253,0.142339,0.0367917,0.84672,0.270865,0.108497,0.280491,0.354596,0.39407,0.322341,0.339373,0.746682,0.842063,0.400278,0.771359,0.820353,0.156137,0.777183,0.108871,0.595661,0.348218,0.257869,0.885863,0.190321,0.379757,0.121277,0.156845,0.0243868,0.891504,0.127383,0.356079,0.343677,0.93755,0.663258,0.577747,0.820168,0.829367,0.887082,0.957649,0.148903,0.13414,0.80247,0.213822,0.110476,0.534518,0.149272,0.808905,0.542422,0.771848,0.592672,0.319792,0.220108,0.553793,0.656922,0.378582,0.725345,0.724951,0.0901209,0.719682,0.176048,0.288688,0.974294,0.45472,0.488264,0.956128,0.37294,0.770623,0.968297,0.0106287,0.820668,0.494849,0.329332,0.0533031,0.9755,0.514125,0.712177,0.52129,0.838336,0.438603,0.118244,0.257021,0.322345,0.963457,0.735762,0.0522777,0.308733,0.797878,0.816116,0.291227,0.287239,0.0833576,0.141944,0.784587,0.04021,0.0750922,0.686441,0.956608,0.561852,0.640449,0.149004,0.536274,0.0219765,0.639868,0.215341,0.753697,0.830407,7.79629e-05,0.204471,0.570556,0.163966,0.286241,0.375817,0.931468,0.0268908,0.868622,0.881869,0.969965,0.394783,0.639708,0.235989,0.0819709,0.889562,0.323284,0.0676342,0.458155,0.56558,0.522933,0.252417,0.691599,0.555468,0.724404,0.115062,0.245115,0.511296,0.819479,0.0857306,0.302269,0.0303538,0.40049,0.401229,0.23002,0.0230227,0.204454,0.0820847,0.651507,0.294745,0.547933,0.696123,0.34493,0.229903,0.99293,0.112437,0.621249,0.945416,0.706158,0.921084,0.1327,0.3768,0.513045,0.0975947,0.727181,0.903058,0.639225,0.225565,0.708454,0.153483,0.646027,0.107128,0.515107,0.0690984,0.933792,0.518621,0.6743,0.578834,0.13789,0.255843,0.974821,0.177428,0.982711,0.335957,0.639929,0.59237,0.145309,0.173954,0.645597,0.430524,0.710301,0.990668,0.68882,0.722686,0.347773,0.876546,0.718763,0.159982,0.84925,0.59773,0.012696,0.370154,0.205214,0.200462,0.0411094,0.545059,0.47192,0.399197,0.293464,0.518032,0.607256,0.183793,0.22687,0.117186,0.919016,0.0966901,0.525252,0.840687,0.623249,0.264518,0.981796,0.487947,0.997773,0.709043,0.875681,0.526417,0.349205,0.3847,0.755585,0.780146,0.692515,0.98619,0.746094,0.996084,0.920545,0.912131,0.53252,0.865322,0.218319,0.916131,0.810995,0.852919,0.806,0.752914,0.894068,0.132601,0.89161,0.713467,0.300264,0.774884,0.101879,0.0234255,0.424798,0.70162,0.167544,0.966301,0.880851,0.386997,0.124515,0.87483,0.897947,0.819009,0.244547,0.0586633,0.26923,0.586481,0.641621,0.463569,0.625454,0.376168,0.964791,0.53727,0.708425,0.0616843,0.0635992,0.235793,0.0468056,0.940516,0.849498,0.0158791,0.951991,0.596719,0.0798858,0.232775,0.914769,0.657456,0.639334,0.720915,0.13149,0.561886,0.704989,0.971867,0.672911,0.140732,0.303037,0.219773,0.551079,0.138916,0.861265,0.744526,0.1501,0.887203,0.415611,0.449875,0.0969113,0.30126,0.968093,0.515481,0.711027,0.902036,0.396363,0.906929,0.756459,0.477224,0.491009,0.511584,0.26727,0.377199,0.511697,0.996771,0.295307,0.421245,0.0131223,0.592269,0.827356,0.269976,0.032005,0.60656,0.0752791,0.650915,0.375296,0.309826,0.0724183,0.0392491,0.498193,0.676573,0.53686,0.187557,0.0845178,0.50599,0.373552,0.674904,0.499306,0.419338,0.385269,0.640686,0.543412,0.811439,0.86023,0.637483,0.359256,0.36645,0.848969,0.115813,0.301638,0.130899,0.0643355,0.155484,0.434291,0.265915,0.662981,0.136428,0.743289,0.107074,0.735193,0.171942,0.792129,0.334298,0.732877,0.307908,0.536905,0.410174,0.369109,0.693874,0.438725,0.688129,0.244896,0.800485,0.554893,0.825358,0.307039,0.555562,0.890611,0.0270174,0.648219,0.939843,0.692773,0.310366,0.531637,0.969399,0.475775,0.784705,0.0263984,0.290736,0.96474,0.476488,0.274811,0.628394,0.546795,0.656689,0.0535625,0.181961,0.758581,0.15511,0.243134,0.506754,0.564886,0.654863,0.690594,0.409666,0.388174,0.152698,0.685048,0.497962,0.0664625,0.990566,0.882647,0.0320717,0.760116,0.990533,0.919688,0.854337,0.0683475,0.521927,0.388758,0.762771,0.16811,0.287785,0.51925,0.607889,0.417382,0.718542,0.459897,0.200786,0.815014,0.842205,0.635204,0.0458688,0.344697,0.54619,0.676338,0.261697,0.391449,0.257936,0.839882,0.215182,0.833959,0.955193,0.985147,0.0617794,0.934922,0.969862,0.635831,0.332861,0.400041,0.706358,0.487043,0.71369,0.0662672,0.794468,0.483995,0.747539,0.59635,0.972426,0.586796,0.0511644,0.310062,0.73955,0.295783,0.774249,0.143083,0.463105,0.988829,0.670346,0.854045,0.334957,0.558059,0.399934,0.23591,0.0921668,0.327959,0.472984,0.256064,0.86782,0.388451,0.741778,0.361517,0.15265,0.619618,0.525446,0.729251,0.063602,0.426891,0.498025,0.755602,0.0412895,0.453039,0.388149,0.47844,0.555992,0.538948,0.122319,0.494964,0.0776163,0.0603197,0.209991,0.45954,0.334785,0.536755,0.728231,0.24516,0.626281,0.443654,0.321975,0.523305,0.273479,0.120279,0.577652,0.408119,0.229866,0.546935,0.412371,0.806428,0.75626,0.398637,0.305187,0.186345,0.198522,0.343195,0.0440416,0.423862,0.466782,0.720822,0.93964,0.511514,0.975193,0.395544,0.84938,0.301655,0.561637,0.555499,0.75149,0.698229,0.882105,0.570023,0.940254,0.573082,0.743271,0.153376,0.674603,0.763271,0.40759,0.450103,0.979548,0.940786,0.903037,0.788182,0.0470398,0.843547,0.142433,0.872978,0.580271,0.810921,0.452439,0.573833,0.316201,0.889493,0.572554,0.503122,0.707431,0.80194,0.653607,0.570461,0.0417135,0.559186,0.367184,0.618266,0.461782,0.562034,0.0670356,0.370946,0.476056,0.872774,0.31698,0.927628,0.189799,0.829391,0.710812,0.309326,0.770416,0.181319,0.122677,0.0383539,0.646101,0.736563,0.380347,0.521888,0.473433,0.863819,0.444985,0.253925,0.598583,0.969354,0.251792,0.88934,0.348878,0.671015,0.189352,0.238031,0.0907441,0.517952,0.691436,0.859927,0.0473205,0.488625,0.359569,0.460145,0.838868,0.384702,0.998727,0.166378,0.963533,0.933777,0.164834,0.494151,0.4002,0.368496,0.0261329,0.875874,0.13865,0.821783,0.798874,0.185081,0.138723,0.609613,0.698709,0.965497,0.534609,0.0620548,0.77552,0.64131,0.352345,0.360144,0.219989,0.428859,0.132134,0.369644,0.538147,0.328627,0.892796,0.500143,0.317222,0.0395804,0.937822,0.704301,0.749424,0.580684,0.761642,0.462834,0.690934,0.228662,0.121702,0.13905,0.0835833,0.710433,0.77153,0.660904,0.078207,0.394741,0.376394,0.15701,0.929303,0.224216,0.879678,0.955846,0.943957,0.640132,0.796667,0.74803,0.438742,0.708904,0.268197,0.0481125,0.844836,0.180205,0.268761,0.276425,0.34417,0.367142,0.5706,0.1912,0.0518116,0.609834,0.579443,0.32637,0.801045,0.593236,0.0152227,0.160854,0.855991,0.73867,0.926537,0.472414,0.653864,0.631165,0.941108,0.769156,0.290558,0.0981085,0.12105,0.345547,0.378766,0.169075,0.613409,0.0712813,0.659702,0.357773,0.459104,0.33297,0.559554,0.53979,0.427529,0.410278,0.0929951,0.157792,0.60054,0.699116,0.315218,0.320358,0.914875,0.829054,0.0681328,0.353407,0.810522,0.363716,0.678935,0.302134,0.414791,0.41791,0.0712402,0.504355,0.257751,0.982441,0.00278294,0.43403,0.770823,0.0123889,0.145836,0.519938,0.202383,0.847117,0.336302,0.707247,0.774957,0.439095,0.83764,0.625454,0.2338,0.493036,0.369761,0.0222151,0.987057,0.390161,0.678699,0.477642,0.479396,0.834405,0.1847,0.567286,0.703711,0.951434,0.263758,0.176116,0.730472,0.558387,0.746827,0.00793576,0.925408,0.806111,0.979056,0.588938,0.27037,0.00872052,0.154594,0.0751376,0.441157,0.86629,0.161443,0.742767,0.963867,0.454523,0.271955,0.852754,0.643524,0.885887,0.736162,0.756944,0.362916,0.947777,0.0686695,0.766024,0.0803198,0.471396,0.864044,0.928436,0.345132,0.834534,0.512482,0.817214,0.0495461,0.79454,0.298396,0.79937,0.263238,0.0251711,0.75897,0.455484,0.705383,0.555467,0.686955,0.988278,0.240721,0.284369,0.319125,0.601403,0.693054,0.455446,0.0165886,0.0535577,0.795049,0.0154433,0.325038,0.210267,|0.874732,0.504825,0.80105,0.00588,0.964875,0.331111,0.501409,0.48645,0.194109,0.909977,0.258419,0.12567,0.874369,0.780495,0.626962,0.837429,0.124655,0.87035,0.131959,0.175094,0.931359,0.309688,0.403459,0.266711,0.769233,0.272703,0.375435,0.638325,0.641688,0.373438,0.653652,0.633176,0.329205,0.781561,0.452592,0.658531,0.522166,0.495358,0.391337,0.27777,0.788737,0.646416,0.432452,0.74262,0.965503,0.979902,0.842219,0.596245,0.394244,0.209101,0.362359,0.092229,0.401235,0.817395,0.0873172,0.970369,0.831884,0.0832875,0.0116805,0.81843,0.443348,0.732134,0.528445,0.190052,0.693876,0.638876,0.501072,0.384809,0.239928,0.579739,0.931219,0.777209,0.876592,0.990478,0.0298184,0.628164,0.160899,0.893227,0.36064,0.157863,0.906715,0.523103,0.319072,0.249202,0.705672,0.358587,0.598002,0.660874,0.534865,0.711451,0.253114,0.026284,0.673257,0.0126396,0.0927657,0.364139,0.593302,0.118237,0.890315,0.515151,0.527279,0.252573,0.712317,0.193639,0.482229,0.599015,0.610517,0.485141,0.466984,0.0685149,0.634402,0.76216,0.760915,0.326563,0.666215,0.245614,0.597121,0.955129,0.801352,0.48304,0.17457,0.344395,0.223398,0.751552,0.387452,0.725046,0.799038,0.593271,0.485135,0.762575,0.0919381,0.669387,0.0725498,0.196911,0.0823564,0.949418,0.871336,0.14225,0.0927241,0.668936,0.939671,0.791095,0.919505,0.719809,0.866572,0.747894,0.879609,0.514506,0.0997504,0.66952,0.368612,0.145404,0.214049,0.243335,0.982342,0.328251,0.591954,0.171478,0.281256,0.457548,0.771518,0.166638,0.873212,0.250771,0.000178874,0.656091,0.485491,0.115102,0.0237756,0.114311,0.423706,0.206465,0.370974,0.812091,0.943809,0.11782,0.855418,0.559332,0.726947,0.17116,0.151806,0.705829,0.944451,0.407902,0.431513,0.224154,0.475622,0.501752,0.293538,0.190264,0.250817,0.39955,0.792665,0.111858,0.148535,0.0690877,0.0252912,0.130507,0.266861,0.136645,0.358419,0.010794,0.286887,0.902625,0.967604,0.896123,0.932524,0.463627,0.751486,0.941979,0.951711,0.542921,0.0512785,0.368984,0.238188,0.58957,0.774901,0.407592,0.0710368,0.0133508,0.493761,0.9447,0.041333,0.687923,0.52087,0.983531,0.778711,0.169986,0.00651067,0.222329,0.0207198,0.650772,0.117664,0.176551,0.30416,0.560617,0.376399,0.534548,0.384908,0.123245,0.813068,0.830627,0.592333,0.541725,0.980855,0.832513,0.169969,0.437962,0.00297505,0.77839,0.16599,0.249333,0.772082,0.165081,0.0305457,0.160416,0.793873,0.36608,0.888739,0.179348,0.730247,0.183066,0.285403,0.0800874,0.262235,0.994159,0.062605,0.509135,0.408038,0.148628,0.458244,0.36818,0.0782886,0.201563,0.697844,0.160515,0.116681,0.164515,0.242813,0.103893,0.40554,0.661276,0.0383482,0.0966935,0.000994027,0.173647,0.828138,0.392883,0.543893,0.753805,0.882614,0.912058,0.882809,0.180826,0.325249,0.219541,0.913903,0.89688,0.98372,0.43448,0.727616,0.483241,0.324591,0.693573,0.469043,0.228153,0.945006,0.483235,0.494525,0.594896,0.0393972,0.918742,0.27879,0.947363,0.244242,0.213301,0.812278,0.260063,0.526063,0.93732,0.962703,0.824921,0.157423,0.885839,0.795454,0.349632,0.304325,0.568234,0.419539,0.444558,0.324027,0.816017,0.499947,0.41597,0.337575,0.521948,0.334902,0.649055,0.196469,0.344132,0.447713,0.00799513,0.0102837,0.85925,0.729231,0.989976,0.405051,0.990948,0.529933,0.547038,0.49056,0.599363,0.0380722,0.163487,0.857089,0.339007,0.891488,0.769904,0.390287,0.89684,0.193642,0.0293882,0.501152,0.519425,0.485075,0.113149,0.35717,0.918567,0.682219,0.865837,0.406513,0.518066,0.345595,0.547539,0.0549112,0.564672,0.31783,0.209176,0.853604,0.868688,0.436529,0.391564,0.0708741,0.378378,0.379128,0.542981,0.197424,0.442846,0.569481,0.366981,0.505559,0.15075,0.49622,0.0305021,0.802927,0.740066,0.00328887,0.935791,0.506553,0.361145,0.985068,0.230677,0.180728,0.893458,0.80664,0.125367,0.793703,0.931242,0.932705,0.146341,0.412053,0.161466,0.559435,0.621591,0.273557,0.748148,0.422806,0.504434,0.777812,0.155582,0.799488,0.00266498,0.404557,0.591743,0.503832,0.724197,0.819033,0.975897,0.310384,0.636612,0.589373,0.453314,0.716883,0.168158,0.383552,0.20316,0.664168,0.324603,0.911813,0.701765,0.987147,0.190187,0.286719,0.354196,0.837944,0.918997,0.843407,0.0241271,0.214721,0.196236,0.644443,0.137994,0.0453862,0.973611,0.826416,0.471237,0.681675,0.722301,0.706391,0.118357,0.200412,0.263033,0.497927,0.305403,0.898206,0.795381,0.919904,0.779673,0.331902,0.395386,0.565788,0.232929,0.0784789,0.413413,0.685537,0.119893,0.990924,0.468826,0.0987545,0.45922,0.829596,0.943231,0.138381,0.124957,0.85755,0.514632,0.599505,0.81339,0.62126,0.0102735,0.435948,0.418432,0.522508,0.183062,0.312957,0.370926,0.529957,0.253283,0.0128127,0.400725,0.610012,0.247112,0.131674,0.0433792,0.299233,0.619373,0.553268,0.29521,0.786982,0.64256,0.567107,0.300337,0.426946,0.777837,0.518047,0.338718,0.412771,0.936641,0.542216,0.443125,0.451094,0.00780708,0.944428,0.199194,0.241214,0.271405,0.181333,0.135542,0.26766,0.299263,0.353846,0.735796,0.057004,0.931837,0.989284,0.738857,0.281275,0.816528,0.484805,0.884486,0.4424,0.00241423,0.532735,0.380242,0.614533,0.420562,0.216045,0.652555,0.762787,0.219301,0.968435,0.985401,0.851032,0.946362,0.518109,0.348711,0.971758,0.254932,0.715885,0.851075,0.900753,0.383408,0.18643,0.170841,0.220786,0.00768149,0.661095,0.593638,0.41098,0.458016,0.478299,0.740946,0.890367,0.967548,0.504776,0.831204,0.363425,0.813368,0.331301,0.0240309,0.184319,0.175212,0.0596758,0.0539191,0.593614,0.924785,0.476063,0.10015,0.455758,0.146332,0.827638,0.876986,0.282805,0.672653,0.635028,0.638582,0.57154,0.375081,0.251206,0.959619,0.905489,0.679187,0.754054,0.483136,0.733719,0.67326,0.159303,0.581838,0.674074,0.279031,0.213229,0.656779,0.0935741,0.718618,0.335932,0.54767,0.54544,0.229649,0.999148,0.315603,0.856167,0.155921,0.986021,0.768314,0.190691,0.863615,0.101324,0.435179,0.882097,0.970897,0.784723,0.241226,0.337057,0.725536,0.177068,0.805984,0.457834,0.109586,0.81662,0.0945673,0.142615,0.146473,0.850003,0.859531,0.982529,0.38527,0.685475,0.284184,0.899107,0.672946,0.521768,0.914913,0.367224,0.863503,0.634598,0.893549,0.932323,0.887472,0.10181,0.764002,0.15283,0.507066,0.30713,0.923873,0.216345,0.345028,0.1143,0.464409,0.54851,0.773181,0.259242,0.366761,0.876042,0.0897042,0.815939,0.494639,0.786695,0.621356,0.579742,0.707155,0.050031,0.721587,0.928851,0.089754,0.5095,0.582571,0.820445,0.357527,0.211523,0.388442,0.028633,0.08117,0.484291,0.77975,0.824213,0.428247,0.175624,0.286293,0.711988,0.873704,0.258474,0.480154,0.488845,0.693842,0.346016,0.232258,0.18498,0.80168,0.308397,0.754052,0.963233,0.433039,0.0321829,0.243132,0.193649,0.300649,0.152115,0.570709,0.28732,0.693856,0.492454,0.455131,0.628794,0.451529,0.541156,0.385191,0.542078,0.0564221,0.292742,0.0514166,0.949032,0.534617,0.516546,0.783375,0.626375,0.886412,0.713018,0.77645,0.165586,0.410037,0.247021,0.636534,0.696631,0.693048,0.484331,0.449172,0.863448,0.120606,0.463878,0.890616,0.931669,0.412159,0.671597,0.136904,0.587303,0.807469,0.704518,0.430382,0.816514,0.267071,0.997119,0.16856,0.663079,0.78949,0.569283,0.513782,0.467491,0.847959,0.555084,0.231629,0.577591,0.0250744,0.043197,0.839201,0.609647,0.530153,0.0632042,0.763701,0.684295,0.758953,0.492684,0.626098,0.645723,0.411133,0.925613,0.525208,0.14775,0.0329435,0.0946518,0.638445,0.839595,0.114999,0.525779,0.575702,0.893635,0.548821,0.618519,0.285878,0.779443,0.805559,0.0563732,0.468842,0.0199167,0.521048,0.756908,0.632114,0.38798,0.978566,0.500627,0.240872,0.970955,0.635111,0.581666,0.40116,0.592856,0.396116,0.349225,0.499876,0.0854586,0.663306,0.9692,0.760917,0.160111,0.657407,0.873237,0.952259,0.184313,0.125307,0.968785,0.383101,0.720805,0.915616,0.698868,0.14807,0.721623,0.0401028,0.658443,0.0720754,0.985354,0.622793,0.482668,0.468664,0.192101,0.193169,0.836499,0.704581,0.924778,0.268123,0.872545,0.604751,0.388372,0.0927521,0.150791,0.189313,0.0163435,0.931044,0.172931,0.982721,0.654732,0.563092,0.143728,0.440444,0.893774,0.245209,0.200825,0.80922,0.413268,0.965069,0.890451,0.846593,0.0179935,0.439259,0.280301,0.170834,0.794364,0.239468,0.326827,0.223564,0.754874,0.431364,0.29931,0.648715,0.723117,0.882521,0.405596,0.730193,0.579854,0.441677,0.140086,0.55575,0.327282,0.873991,0.179819,0.708166,0.882137,0.659186,0.617345,0.816598,0.969223,0.757255,0.603103,0.0441845,0.358275,0.641715,0.701178,0.69353,0.873878,0.180875,0.121212,0.91365,0.754443,0.117212,0.051572,0.691501,0.0773954,0.252459,0.977135,0.123887,0.47896,0.528961,0.26962,0.683278,0.978112,0.429507,0.223671,0.0409869,0.558304,0.0767556,0.892132,0.450204,0.153302,0.353864,0.359026,0.864564,0.590519,0.916803,0.622593,0.891882,0.801744,0.448218,0.523717,0.998997,0.822682,0.433851,0.60858,0.227642,0.545633,0.907498,0.96613,0.835756,0.210893,0.79617,0.18751,0.132561,0.495585,0.310751,0.316689,0.00190377,0.758347,0.829689,0.0711427,0.282094,0.228036,0.904727,0.114101,0.387752,0.507775,0.942107,0.473732,0.605693,0.949424,0.176462,0.358843,0.625684,0.386787,0.952649,0.806506,0.641567,0.0752921,0.648526,0.312642,0.084472,0.441005,0.0534048,0.420311,0.255527,0.331993,0.592588,0.331013,0.162732,0.767744,0.500786,0.236257,0.744542,0.461398,0.911311,0.927137,0.31194,0.143176,0.189819,|0.159829,0.80896,0.0573664,0.487963,0.970965,0.387833,0.863967,0.728605,0.862092,0.649567,0.179271,0.549847,0.170856,0.840608,0.339222,0.526036,0.445404,0.539048,0.297743,0.727622,0.929646,0.443835,0.640119,0.0654336,0.952961,0.584657,0.141491,0.421449,0.299936,0.529012,0.116028,0.26173,0.757518,0.0414596,0.514634,0.772969,0.792597,0.910866,0.661194,0.0698614,0.795319,0.312132,0.241472,0.249073,0.357704,0.805571,0.596064,0.827411,0.463166,0.460323,0.607338,0.965697,0.383431,0.337591,0.497371,0.994365,0.466196,0.262315,0.2483,0.359441,0.657994,0.799977,0.151469,0.217632,0.167274,0.075563,0.174794,0.745656,0.256855,0.829244,0.384435,0.0565999,0.472518,0.912834,0.588239,0.527903,0.509262,0.308255,0.178959,0.114127,0.546656,0.876297,0.745896,0.594494,0.633501,0.0298437,0.29723,0.0565631,0.707546,0.674542,0.270428,0.322989,0.487314,0.582831,0.0869788,0.0770651,0.0644239,0.552405,0.604156,0.587285,0.577656,0.491443,0.943803,0.803961,0.820492,0.443633,0.2859,0.252495,0.316746,0.756431,0.957924,0.420288,0.168389,0.795761,0.855232,0.159271,0.437743,0.478458,0.943091,0.247904,0.106726,0.357809,0.725742,0.930025,0.912619,0.530868,0.0590378,0.247875,0.0912927,0.719654,0.315145,0.351979,0.860118,0.441783,0.466358,0.358169,0.305282,0.306439,0.562702,0.207869,0.84429,0.137554,0.799973,0.280248,0.672956,0.461354,0.742963,0.699166,0.367701,0.587105,0.708802,0.937198,0.31106,0.903291,0.909218,0.481213,0.270327,0.0758564,0.617105,0.293916,0.572166,0.659003,0.73026,0.976625,0.0907942,0.910194,0.103373,0.336078,0.907373,0.28695,0.433712,0.295789,0.889836,0.848272,0.154144,0.174015,0.320332,0.756875,0.11437,0.530943,0.168424,0.435961,0.265334,0.282642,0.158836,0.425451,0.763464,0.457391,0.929474,0.239227,0.787366,0.927485,0.101501,0.385451,0.474996,0.116582,0.68331,0.99065,0.414984,0.243991,0.664465,0.333565,0.224283,0.072326,0.370737,0.926197,0.372582,0.886187,0.350956,0.305727,0.929452,0.499513,0.22289,0.282451,0.714448,0.500346,0.7751,0.936293,0.453203,0.598667,0.542616,0.0322941,0.690163,0.601556,0.651446,0.872368,0.217825,0.0863974,0.62482,0.597319,0.777861,0.239133,0.250852,0.64947,0.840319,0.295589,0.733582,0.608147,0.643176,0.495078,0.0057047,0.80681,0.670353,0.819373,0.919543,0.247732,0.579664,0.248686,0.105061,0.439815,0.910806,0.299323,0.801416,0.258998,0.58812,0.0364436,0.792999,0.671142,0.499333,0.837552,0.160108,0.358472,0.25411,0.223954,0.00263625,0.989698,0.784249,0.100764,0.823245,0.66399,0.953234,0.138522,0.185541,0.800099,0.161434,0.698748,0.0445867,0.715553,0.46675,0.305334,0.0526655,0.405537,0.76257,0.40967,0.0314907,0.870425,0.0109442,0.586056,0.644603,0.833472,0.99722,0.859329,0.732049,0.186525,0.517229,0.439594,0.720982,0.285631,0.40817,0.288208,0.417428,0.462827,0.225811,0.602547,0.358821,0.830487,0.959886,0.406968,0.085978,0.0733466,0.20124,0.125455,0.40085,0.765273,0.854136,0.719644,0.275605,0.25405,0.692593,0.785043,0.362147,0.345473,0.804995,0.637194,0.331514,0.0706939,0.838315,0.779916,0.932016,0.484165,0.872037,0.722311,0.199081,0.928501,0.46267,0.945423,0.990289,0.839525,0.709435,0.175814,0.913713,0.290893,0.787634,0.923738,0.149622,0.367308,0.363915,0.421779,0.156088,0.789996,0.684985,0.30144,0.589517,0.616409,0.626412,0.653418,0.766474,0.90862,0.415477,0.909193,0.410169,0.438758,0.799736,0.495487,0.888631,0.230137,0.573393,0.344187,0.785747,0.958052,0.960928,0.918784,0.889624,0.0466258,0.675089,0.99715,0.536775,0.803084,0.593397,0.15928,0.80358,0.284806,0.375307,0.548096,0.896543,0.329553,0.499698,0.163948,0.221487,0.227363,0.339642,0.234963,0.944022,0.641379,0.114115,0.444006,0.932841,0.98501,0.656494,0.292987,0.861518,0.181174,0.0885178,0.0827262,0.900218,0.492726,0.930715,0.751561,0.582405,0.738041,0.972393,0.0510667,0.463694,0.0213007,0.142535,0.95369,0.998572,0.606655,0.939604,0.668301,0.81693,0.637856,0.849387,0.0283884,0.207837,0.0469132,0.445242,0.310191,0.218723,0.376644,0.811942,0.592712,0.32197,0.184206,0.0124072,0.203242,0.975615,0.190218,0.492504,0.461155,0.616109,0.260653,0.00475621,0.028894,0.158898,0.207622,0.267995,0.116243,0.769134,0.063426,0.206556,0.565739,0.723078,0.531523,0.213861,0.109253,0.177213,0.0672694,0.936192,0.341068,0.28663,0.202192,0.224491,0.744672,0.259207,0.293579,0.328736,0.152202,0.681299,0.637685,0.600133,0.474333,0.898517,0.834261,0.381274,0.815106,0.179514,0.140782,0.88873,0.362028,0.671913,0.625123,0.276141,0.427451,0.183645,0.883732,0.94956,0.405138,0.779128,0.292971,0.732947,0.434201,0.278283,0.0489275,0.583766,0.305812,0.200254,0.406085,0.873916,0.876314,0.281325,0.309253,0.368885,0.790949,0.147314,0.507281,0.50419,0.727358,0.992435,0.0173662,0.562481,0.983111,0.334223,0.675244,0.0178063,0.535868,0.361858,0.131689,0.28261,0.37014,0.614018,0.893875,0.562379,0.247385,0.990895,0.613985,0.816949,0.352932,0.580442,0.111777,0.892353,0.592132,0.624238,0.542375,0.182718,0.563351,0.51726,0.569174,0.735566,0.0705754,0.11875,0.0456616,0.757241,0.171864,0.368672,0.217287,0.535928,0.838604,0.178883,0.21308,0.53932,0.24134,0.474307,0.677922,0.840064,0.0936823,0.0789593,0.0564045,0.748087,0.66617,0.502917,0.216923,0.123778,0.58136,0.639957,0.364756,0.981226,0.0998681,0.730733,0.459689,0.485488,0.0865231,0.793134,0.869662,0.652388,0.342508,0.452227,0.417593,0.864546,0.894837,0.131003,0.440402,0.500552,0.323038,0.98104,0.0535197,0.730622,0.604866,0.344702,0.864173,0.843147,0.497455,0.866933,0.379095,0.553021,0.794401,0.211956,0.511731,0.231616,0.351772,0.512043,0.309237,0.0624096,0.135035,0.554512,0.842751,0.106086,0.614046,0.765619,0.872343,0.0123046,0.382808,0.574383,0.0201136,0.987101,0.432783,0.381193,0.444357,0.854326,0.88998,0.389289,0.224281,0.0847113,0.896235,0.861883,0.74784,0.0625736,0.592177,0.297758,0.489646,0.247534,0.602031,0.342385,0.528734,0.508438,0.878721,0.121751,0.455957,0.388369,0.325605,0.513787,0.650054,0.0680898,0.115689,0.190074,0.404695,0.76163,0.938811,0.104931,0.317586,0.214364,0.774204,0.61087,0.664223,0.188163,0.649971,0.354888,0.108061,0.407749,0.367093,0.954613,0.738931,0.334845,0.472088,0.887612,0.735813,0.888278,0.0503405,0.58009,0.957885,0.553623,0.119102,0.442151,0.460436,0.995376,0.0111202,0.403181,0.323288,0.788038,0.672009,0.89821,0.483654,0.472891,0.105555,0.703856,0.704107,0.225715,0.210899,0.790626,0.0892709,0.320362,0.522549,0.0968389,0.816651,0.940155,0.251136,0.269572,0.0629402,0.384917,0.495867,0.374065,0.188192,0.439492,0.384523,0.492902,0.441295,0.604075,0.629243,0.0938521,0.567422,0.314215,0.969369,0.528197,0.0341386,0.0787396,0.747011,0.348618,0.26536,0.240718,0.472313,0.757193,0.992031,0.99516,0.691914,0.20473,0.795408,0.323885,0.312814,0.192142,0.98115,0.300263,0.158078,0.817678,0.990581,0.356489,0.149793,0.960971,0.477978,0.858218,0.167214,0.314433,0.993711,0.932669,0.561888,0.700121,0.500867,0.374526,0.764433,0.93137,0.962962,0.882311,0.969829,0.108544,0.611892,0.796923,0.444785,0.132599,0.106131,0.122945,0.220397,0.523658,0.228872,0.0976396,0.918033,0.0969192,0.755766,0.399208,0.400969,0.392716,0.436464,0.134849,0.112753,0.925993,0.610264,0.298663,0.919016,0.384013,0.637693,0.887531,0.368068,0.46849,0.494438,0.989411,0.682117,0.692633,0.898146,0.108949,0.028701,0.887382,0.296136,0.787321,0.0151572,0.315258,0.694671,0.974185,0.684652,0.730477,0.722793,0.262652,0.886639,0.0081324,0.412535,0.965689,0.418296,0.854236,0.271927,0.526275,0.811877,0.409148,0.135184,0.138462,0.934689,0.867688,0.311904,0.475196,0.955522,0.103011,0.351587,0.127802,0.551544,0.877714,0.52573,0.0972787,0.456123,0.527551,0.671306,0.188549,0.564605,0.366368,0.780803,0.908786,0.18448,0.638714,0.525051,0.908956,0.784932,0.309356,0.382103,0.0195644,0.304517,0.0632493,0.495169,0.332102,0.574943,0.603276,0.687833,0.743674,0.299033,0.343536,0.541761,0.706011,0.930629,0.106474,0.140848,0.87161,0.65357,0.25889,0.186702,0.985901,0.757706,0.851264,0.341803,0.203943,0.599451,0.379904,0.271254,0.508303,0.493324,0.180474,0.172569,0.148556,0.946888,0.269812,0.0424006,0.976513,0.983417,0.463973,0.157942,0.191312,0.121159,0.924357,0.358517,0.682003,0.134783,0.272816,0.758918,0.706218,0.0608069,0.42177,0.335416,0.810434,0.607829,0.777563,0.165954,0.959434,0.105508,0.582859,0.88975,0.299501,0.49292,0.277173,0.326924,0.835415,0.222496,0.980475,0.767417,0.766171,0.805379,0.466633,0.679381,0.800702,0.100922,0.752158,0.166118,0.0656906,0.326936,0.995705,0.816415,0.0907485,0.700759,0.353902,0.622343,0.464924,0.834698,0.755041,0.310263,0.562903,0.154808,0.510798,0.779389,0.00691718,0.660208,0.44102,0.0106486,0.379188,0.325009,0.553512,0.962127,0.0519298,0.365095,0.646992,0.963843,0.939742,0.441277,0.790016,0.802075,0.012976,0.378615,0.412433,0.689303,0.998925,0.622871,0.892375,0.556009,0.220482,0.937291,0.614911,0.745952,0.784079,0.701174,0.300513,0.132415,0.327991,0.391359,0.488318,0.652075,0.305735,0.665167,0.567056,0.210876,0.235376,0.0207145,0.33854,0.395004,0.0102506,0.295678,0.85839,0.522833,0.84792,0.759521,0.406972,0.842832,0.817874,0.257332,0.77731,0.476865,0.460263,0.648556,0.00532693,0.336421,0.0592493,0.733903,0.0766724,0.653156,0.047973,0.511304,0.892081,0.530652,0.47928,0.734202,|0.144248,0.507134,0.585468,0.163238,0.746036,0.844503,0.527255,0.301235,0.08202,0.63215,0.165884,0.155928,0.141347,0.325265,0.759072,0.930559,0.811388,0.566087,0.47524,0.817839,0.92178,0.216683,0.12739,0.915957,0.233487,0.30651,0.661162,0.265509,0.404665,0.642743,0.528137,0.576428,0.506632,0.0645658,0.557344,0.342672,0.946997,0.766169,0.556917,0.0125103,0.299152,0.485625,0.0642681,0.764328,0.510472,0.756545,0.771653,0.296082,0.485886,0.123854,0.706551,0.107954,0.74983,0.32336,0.780131,0.746019,0.7647,0.717663,0.143501,0.505206,0.17317,0.682629,0.359874,0.548955,0.777253,0.599682,0.0717159,0.414356,0.83459,0.331771,0.867729,0.588643,0.791076,0.389382,0.302247,0.925951,0.871475,0.915095,0.659092,0.901315,0.229388,0.977631,0.585809,0.195919,0.79904,0.411796,0.0473455,0.216349,0.241656,0.668007,0.1671,0.863909,0.685585,0.261978,0.88654,0.19124,0.527415,0.286279,0.906243,0.0884238,0.575538,0.024481,0.0208408,0.219347,0.753107,0.20862,0.0395774,0.135097,0.0760064,0.642587,0.243353,0.797298,0.774554,0.841729,0.784891,0.803407,0.796909,0.0784366,0.00421095,0.407041,0.965867,0.556007,0.594434,0.76711,0.810402,0.976895,0.264666,0.645249,0.468356,0.78745,0.842418,0.473893,0.286389,0.85648,0.196225,0.0287623,0.470596,0.359437,0.662347,0.13006,0.226679,0.0701085,0.808178,0.5315,0.66567,0.688357,0.886036,0.767614,0.570213,0.154514,0.429194,0.658516,0.795616,0.728145,0.898699,0.391544,0.068734,0.217778,0.91587,0.433479,0.753936,0.219396,0.265772,0.0116015,0.0974156,0.0042541,0.903178,0.893696,0.408139,0.0505916,0.583913,0.0545753,0.668675,0.579134,0.831362,0.930489,0.835058,0.842351,0.48902,0.367573,0.196844,0.347651,0.184824,0.270512,0.891658,0.468181,0.288617,0.761728,0.877178,0.6509,0.0230103,0.888964,0.139776,0.335247,0.121733,0.331635,0.338383,0.824407,0.904904,0.00696504,0.416311,0.276472,0.0345226,0.810922,0.933447,0.798578,0.0589455,0.0731944,0.577173,0.0306947,0.900978,0.572081,0.944941,0.792858,0.992326,0.162266,0.563507,0.356166,0.834327,0.40991,0.600739,0.195669,0.285451,0.679126,0.322887,0.389323,0.450059,0.673514,0.721949,0.371213,0.035707,0.727212,0.739452,0.166389,0.930597,0.893838,0.846807,0.613742,0.924572,0.298614,0.720139,0.636268,0.574039,0.100374,0.79466,0.504227,0.652409,0.442842,0.22014,0.800752,0.116344,0.903123,0.13143,0.935007,0.513975,0.775514,0.518214,0.235049,0.0419888,0.134105,0.164278,0.812148,0.144313,0.744852,0.205409,0.353034,0.579496,0.86067,0.863319,0.815635,0.481057,0.219405,0.12551,0.808025,0.493058,0.0850832,0.098121,0.079689,0.563189,0.919147,0.87479,0.515143,0.587838,0.430995,0.155396,0.311296,0.0895869,0.803496,0.777468,0.713575,0.11502,0.192851,0.247961,0.0258484,0.787181,0.632018,0.125116,0.584433,0.86374,0.100725,0.871502,0.134107,0.523401,0.183679,0.995199,0.477248,0.90516,0.73625,0.367411,0.58054,0.27218,0.188022,0.605829,0.998786,0.539982,0.666678,0.0791669,0.344212,0.475046,0.0664812,0.498127,0.739777,0.150055,0.630553,0.442804,0.175937,0.279813,0.447986,0.583945,0.758784,0.637671,0.499544,0.877684,0.321783,0.36919,0.173373,0.8874,0.00754607,0.359613,0.605021,0.235389,0.501458,0.48289,0.395431,0.770866,0.991384,0.905255,0.432013,0.228853,0.752054,0.435125,0.882077,0.162336,0.496111,0.247382,0.0886147,0.859706,0.861382,0.607124,0.422022,0.338806,0.896451,0.529292,0.367552,0.609559,0.00438529,0.50865,0.0691497,0.148267,0.311675,0.315911,0.14333,0.992539,0.72479,0.532267,0.681457,0.630661,0.379604,0.9449,0.531481,0.170928,0.963937,0.249541,0.530944,0.639767,0.256226,0.188353,0.0144706,0.808288,0.653996,0.193602,0.0437006,0.251197,0.664366,0.0139025,0.0762236,0.435372,0.236749,0.0919906,0.0699847,0.291916,0.723114,0.232068,0.143112,0.798358,0.35341,0.822649,0.611995,0.689601,0.887782,0.142858,0.529565,0.814228,0.80031,0.355485,0.876385,0.0222692,0.815517,0.237092,0.886713,0.0343243,0.787876,0.229407,0.157649,0.508278,0.166409,0.168082,0.12382,0.727341,0.220249,0.518152,0.631092,0.180881,0.76277,0.117548,0.32476,0.680972,0.373065,0.70571,0.630117,0.65876,0.116555,0.830634,0.828386,0.62919,0.729441,0.342836,0.388191,0.233697,0.803943,0.148352,0.3063,0.970088,0.761272,0.361525,0.665038,0.17832,0.844733,0.287643,0.647584,0.605633,0.421137,0.400632,0.345394,0.972784,0.944722,0.645589,0.200168,0.0620661,0.084063,0.750401,0.0133093,0.0477006,0.48742,0.623936,0.980921,0.0084793,0.859476,0.348018,0.870576,0.0258037,0.651605,0.779503,0.136868,0.234579,0.0910358,0.992996,0.0462251,0.00392717,0.873992,0.895783,0.252569,0.120407,0.254868,0.550784,0.767245,0.0764055,0.326939,0.772726,0.761685,0.538007,0.408512,0.883754,0.049248,0.273064,0.0909966,0.62753,0.258902,0.121547,0.775875,0.389453,0.35471,0.515901,0.384106,0.603511,0.0640591,0.0600601,0.74313,0.301815,0.680804,0.86284,0.686307,0.558433,0.44805,0.593857,0.401698,0.0864028,0.67192,0.2326,0.0817232,0.811445,0.317086,0.222385,0.542717,0.448156,0.52678,0.494029,0.980169,0.382328,0.804011,0.697162,0.93239,0.841512,0.0392877,0.227428,0.435839,0.190142,0.452811,0.938557,0.589493,0.051617,0.727921,0.745352,0.35303,0.700565,0.98749,0.333631,0.700324,0.659925,0.751463,0.735567,0.301911,0.613799,0.88031,0.44387,0.545894,0.988934,0.230658,0.320061,0.100775,0.844329,0.618655,0.728687,0.305934,0.962799,0.528061,0.852926,0.610645,0.68903,0.738445,0.218284,0.185618,0.611816,0.913009,0.861284,0.0862142,0.297128,0.982005,0.764453,0.422847,0.0697333,0.892819,0.642212,0.169767,0.734552,0.448185,0.720717,0.526985,0.713269,0.893941,0.820937,0.0282946,0.940158,0.742425,0.209068,0.0911376,0.886662,0.375393,0.230843,0.868605,0.745691,0.86591,0.416389,0.577163,0.0845055,0.415726,0.254166,0.965426,0.0949401,0.914962,0.346441,0.999533,0.955571,0.160985,0.545172,0.513695,0.403339,0.0270588,0.431444,0.716016,0.952041,0.813856,0.644863,0.00481063,0.697973,0.800204,0.201634,0.869069,0.073262,0.156304,0.691108,0.713973,0.209551,0.702798,0.536163,0.131322,0.248265,0.217016,0.503711,0.435965,0.535103,0.177626,0.27487,0.78793,0.452664,0.223664,0.676975,0.0513898,0.885075,0.79489,0.722265,0.610969,0.360797,0.982866,0.532707,0.60942,0.470738,0.858007,0.467114,0.965701,0.678953,0.237756,0.107678,0.0317335,0.659303,0.1813,0.36193,0.419134,0.922511,0.902978,0.849863,0.648685,0.174076,0.159264,0.170718,0.343366,0.269865,0.939732,0.0103279,0.847518,0.716887,0.810342,0.407156,0.0437629,0.735916,0.176093,0.63561,0.00323409,0.491383,0.182013,0.3475,0.635049,0.404797,0.0403231,0.571489,0.331071,0.621537,0.313037,0.0877566,0.588422,0.589495,0.801305,0.655719,0.85602,0.141764,0.450773,0.400702,0.581669,0.346987,0.0223879,0.397506,0.465052,0.788525,0.531104,0.917306,0.0257031,0.3483,0.387445,0.930856,0.575767,0.0208838,0.39865,0.313626,0.574938,0.211418,0.630074,0.576393,0.105476,0.861322,0.317882,0.0695233,0.917189,0.301986,0.0697739,0.709519,0.178545,0.0242178,0.538942,0.891973,0.493688,0.181238,0.787162,0.127623,0.868523,0.115734,0.910519,0.497647,0.505508,0.296742,0.618322,0.62249,0.892968,0.0307784,0.453971,0.694018,0.720428,0.44867,0.803334,0.341066,0.423098,0.893777,0.439599,0.73381,0.608934,0.556749,0.218328,0.178442,0.433368,0.0654554,0.085201,0.468647,0.832224,0.395534,0.97188,0.718974,0.0779219,0.210474,0.283417,0.922376,0.378436,0.657355,0.522012,0.810214,0.113966,0.569437,0.897891,0.280342,0.817349,0.771267,0.330965,0.79831,0.0501608,0.630551,0.0824631,0.0894627,0.606502,0.513602,0.0895281,0.338883,0.821165,0.341336,0.316041,0.43288,0.289861,0.281698,0.000872374,0.400853,0.310293,0.854054,0.285979,0.204413,0.682553,0.563862,0.548517,0.710054,0.806523,0.224016,0.855034,0.536615,0.938246,0.195332,0.54515,0.473952,0.515521,0.670495,0.514419,0.657255,0.0173666,0.155248,0.816063,0.159353,0.393793,0.994606,0.635526,0.404432,0.337053,0.517648,0.521878,0.909393,0.645864,0.785791,0.616561,0.744177,0.19815,0.279759,0.334472,0.692749,0.665282,0.0431311,0.791801,0.292951,0.17812,0.462643,0.644128,0.610179,0.817925,0.668239,0.272503,0.239446,0.515936,0.736001,0.494013,0.482462,0.128035,0.440871,0.823127,0.268541,0.790681,0.462032,0.0642309,0.475588,0.78731,0.0673711,0.55892,0.332836,0.77608,0.676926,0.182641,0.598936,0.618736,0.163744,0.658853,0.659038,0.489129,0.596752,0.276616,0.119806,0.489866,0.889161,0.15884,0.1232,0.894672,0.141733,0.604159,0.631545,0.225826,0.817409,0.553243,0.766484,0.653894,0.209678,0.994953,0.708328,0.0224215,0.131707,0.0315539,0.900655,0.00916833,0.992614,0.938285,0.795792,0.309969,0.791445,0.377068,0.925377,0.622084,0.0362555,0.229499,0.696489,0.108684,0.499851,0.188154,0.933597,0.565454,0.39914,0.726572,0.832835,0.0618696,0.241557,0.885837,0.370616,0.37711,0.238439,0.318293,0.486278,0.508369,0.97598,0.646933,0.995365,0.147068,0.489349,0.54155,0.899174,0.866318,0.965543,0.306561,0.756717,0.0719933,0.842637,0.942847,0.891217,0.0222125,0.665005,0.778376,0.0374799,0.691598,0.958853,0.903192,0.654935,0.989371,0.979872,0.2812,0.295907,0.663785,0.557859,0.127554,0.623622,0.967436,0.477386,0.444032,0.894309,0.451975,0.304653,0.611335,0.201411,0.893353,0.555927,0.716905,0.94625,0.109475,0.938912,0.0727948,0.513307,0.755822,0.533786,0.650594,0.179278,0.133439,0.245484,0.865733,|0.00709343,0.744081,0.807143,0.793547,0.391726,0.00869375,0.959392,0.511748,0.6627,0.745485,0.0548842,0.118652,0.293089,0.795798,0.509845,0.475762,0.227191,0.47672,0.436023,0.71985,0.553285,0.598854,0.205608,0.400275,0.170259,0.460421,0.720045,0.747827,0.0283113,0.71864,0.779881,0.335182,0.408458,0.112764,0.0252166,0.421505,0.451733,0.425257,0.341813,0.534677,0.593888,0.971208,0.466143,0.675351,0.581587,0.789848,0.447208,0.343297,0.850375,0.715644,0.769623,0.242638,0.399567,0.375133,0.961801,0.147729,0.83732,0.723493,0.763822,0.510461,0.630366,0.728782,0.56822,0.483382,0.866381,0.00575793,0.444131,0.136355,0.32661,0.111593,0.0661498,0.0656087,0.405037,0.886319,0.269542,0.617628,0.0593801,0.660284,0.0788606,0.187362,0.237749,0.841976,0.0167454,0.837838,0.222119,0.913766,0.452592,0.324298,0.321795,0.579955,0.600292,0.887959,0.575511,0.690073,0.0732197,0.495397,0.0378692,0.790717,0.195381,0.548645,0.908954,0.17825,0.167926,0.636414,0.298847,0.482454,0.854911,0.326111,0.121552,0.645551,0.768358,0.368663,0.23239,0.299822,0.580884,0.528423,0.222917,0.0705007,0.135729,0.0782892,0.516408,0.924195,0.947421,0.202134,0.5575,0.167244,0.0931616,0.958977,0.347174,0.854699,0.677189,0.786815,0.574245,0.468591,0.831668,0.607014,0.937407,0.959093,0.43673,0.139469,0.469621,0.625828,0.725494,0.692819,0.604408,0.644711,0.171157,0.63496,0.980762,0.0959791,0.744034,0.707921,0.460314,0.643057,0.114204,0.860975,0.73344,0.993002,0.620268,0.737704,0.265181,0.790872,0.235571,0.414415,0.550991,0.424205,0.122775,0.87201,0.347354,0.336965,0.682658,0.947286,0.979287,0.114535,0.437901,0.932008,0.711554,0.788824,0.562435,0.177832,0.331655,0.391394,0.917473,0.0913401,0.434979,0.312975,0.922988,0.540474,0.157998,0.916098,0.546361,0.128055,0.173735,0.349149,0.849189,0.583345,0.920022,0.46947,0.837637,0.383446,0.272327,0.461143,0.897241,0.428976,0.760507,0.956302,0.455743,0.077213,0.894317,0.0910052,0.620792,0.181833,0.62729,0.811282,0.242338,0.20716,0.380227,0.171457,0.165872,0.894567,0.0927635,0.219158,0.707118,0.220537,0.355317,0.351608,0.220174,0.724716,0.574602,0.319198,0.386061,0.857015,0.355062,0.354854,0.462222,0.159102,0.824015,0.568634,0.173917,0.489673,0.627316,0.555961,0.369704,0.818978,0.715284,0.676846,0.863971,0.375804,0.144707,0.124226,0.231127,0.487894,0.780814,0.63353,0.990535,0.587459,0.851122,0.410177,0.11801,0.126084,0.507718,0.731673,0.853943,0.983126,0.125525,0.71422,0.892806,0.526124,0.59855,0.657854,0.9608,0.9227,0.57812,0.47268,0.858011,0.546537,0.205954,0.0800604,0.337714,0.826074,0.997468,0.00627691,0.598264,0.428116,0.963735,0.946756,0.559926,0.669748,0.633375,0.909848,0.180802,0.167833,0.103689,0.694777,0.083712,0.417523,0.114895,0.484754,0.00966996,0.758988,0.744595,0.615518,0.241504,0.933794,0.0640413,0.5712,0.986015,0.403826,0.17667,0.228954,0.0255848,0.128811,0.666976,0.179004,0.621339,0.573938,0.491916,0.94607,0.158978,0.462406,0.430245,0.867212,0.875203,0.321034,0.414965,0.806328,0.337804,0.0997525,0.686283,0.196918,0.640346,0.723974,0.103323,0.723386,0.599497,0.149158,0.547737,0.797776,0.721776,0.868574,0.937347,0.235329,0.526915,0.433625,0.221466,0.0221024,0.571505,0.493702,0.992958,0.178526,0.916047,0.27377,0.716323,0.893614,0.908432,0.653633,0.107659,0.231398,0.959392,0.739173,0.455687,0.715969,0.083766,0.742029,0.0236912,0.697758,0.622241,0.621796,0.878134,0.71969,0.0308573,0.151641,0.0215921,0.359724,0.390503,0.929189,0.269982,0.583974,0.107284,0.762751,0.592909,0.941299,0.905294,0.373003,0.323406,0.167321,0.647101,0.113336,0.0365373,0.0523479,0.118405,0.261922,0.784519,0.123191,0.251292,0.242917,0.56668,0.343822,0.24789,0.540667,0.114814,0.488047,0.927046,0.483573,0.363812,0.648645,0.385525,0.934783,0.45242,0.962633,0.206213,0.449333,0.207998,0.742744,0.531679,0.579241,0.0554182,0.0683843,0.0430766,0.838646,0.805451,0.982588,0.959084,0.949724,0.34262,0.53789,0.0774548,0.199963,0.805139,0.989117,0.787737,0.984192,0.355234,0.526944,0.795053,0.552362,0.352065,0.539392,0.380225,0.28219,0.588544,0.221737,0.70939,0.773552,0.309157,0.525172,0.793298,0.899223,0.0490814,0.876395,0.192095,0.401038,0.44642,0.612202,0.444992,0.855002,0.918555,0.12687,0.0757661,0.580871,0.220966,0.543159,0.575052,0.803093,0.983286,0.453979,0.997604,0.427257,0.846641,0.266073,0.575138,0.962223,0.472481,0.612326,0.094858,0.914842,0.617048,0.32255,0.259148,0.395626,0.155472,0.0611246,0.66298,0.263561,0.00745714,0.0176998,0.331822,0.382002,0.888169,0.736725,0.789026,0.964068,0.644718,0.257575,0.46828,0.79955,0.316585,0.990159,0.509995,0.642285,0.942379,0.759492,0.541407,0.420559,0.36175,0.615557,0.537301,0.658943,0.173565,0.577092,0.866251,0.017327,0.882035,0.889944,0.52135,0.938317,0.484208,0.830081,0.0586279,0.685456,0.722282,0.830537,0.414403,0.52043,0.861757,0.137225,0.735201,0.76458,0.779598,0.577938,0.46101,0.0955158,0.642857,0.312729,0.657535,0.955528,0.0607867,0.00465173,0.402425,0.191149,0.369145,0.0375986,0.970576,0.285033,0.361689,0.0228467,0.4163,0.546302,0.771664,0.0327277,0.0189607,0.755521,0.00914907,0.378197,0.309514,0.489193,0.416426,0.579288,0.815562,0.516044,0.639866,0.74297,0.375407,0.322737,0.326215,0.318955,0.620293,0.857025,0.848093,0.93202,0.466278,0.637101,0.344794,0.915184,0.587841,0.487513,0.397877,0.758578,0.891692,0.623927,0.376743,0.0733074,0.855509,0.416021,0.0649145,0.415831,0.613536,0.654572,0.835998,0.340078,0.353497,0.354258,0.262122,0.230529,0.547449,0.597921,0.608679,0.220512,0.78802,0.145771,0.905927,0.0380421,0.381423,0.230562,0.403545,0.16203,0.0977095,0.721951,0.428551,0.659147,0.277013,0.290372,0.0190278,0.154979,0.992976,0.475899,0.474877,0.649421,0.789941,0.480105,0.180394,0.186859,0.89039,0.97655,0.625579,0.221606,0.943041,0.937406,0.716794,0.700826,0.588187,0.505253,0.715742,0.326453,0.3692,0.478706,0.0102945,0.0216755,0.466936,0.627731,0.537005,0.82101,0.237797,0.776818,0.39735,0.935778,0.623283,0.621361,0.793059,0.105898,0.925109,0.751417,0.654694,0.905778,0.251583,0.725238,0.0746973,0.567399,0.895405,0.357117,0.934167,0.437983,0.263927,0.0915398,0.263998,5.93066e-05,0.541735,0.920819,0.318928,0.802281,0.351983,0.453583,0.903669,0.413302,0.217665,0.748233,0.981181,0.0359643,0.52541,0.936949,0.322138,0.282115,0.674913,0.424363,0.565367,0.825712,0.574784,0.707589,0.673735,0.692635,0.844115,0.570924,0.775151,0.13106,0.0533454,0.89337,0.303814,0.15274,0.923771,0.57295,0.578727,0.923626,0.0524568,0.341431,0.0152407,0.677398,0.639455,0.814166,0.806987,0.809295,0.49558,0.0304625,0.282894,0.721639,0.817652,0.930503,0.835178,0.581036,0.78917,0.369339,0.864623,0.36062,0.786964,0.272154,0.883812,0.523553,0.867351,0.0350184,0.39695,0.337933,0.290123,0.897553,0.828035,0.597927,0.000673115,0.453953,0.849885,0.481199,0.858645,0.119905,0.0207961,0.0959435,0.611763,0.244212,0.48343,0.079487,0.838876,0.853158,0.790039,0.536504,0.690078,0.174351,0.0514951,0.00688416,0.609367,0.114288,0.271235,0.4703,0.430614,0.88463,0.723074,0.5495,0.320713,0.0476038,0.562821,0.808474,0.861992,0.370258,0.201847,0.376971,0.87459,0.689622,0.556791,0.777232,0.971608,0.381825,0.508447,0.870317,0.72937,0.553758,0.400631,0.186514,0.0178446,0.287483,0.577385,0.628915,0.398571,0.334281,0.821842,0.17293,0.294174,0.0731674,0.694567,0.169307,0.374124,0.699644,0.70972,0.410289,0.196743,0.154709,0.267411,0.32979,0.252788,0.993389,0.844892,0.573401,0.421809,0.525882,0.842105,0.00587642,0.303988,0.724328,0.752452,0.706326,0.933974,0.189189,0.272978,0.0779366,0.974303,0.346721,0.26977,0.128011,0.440397,0.766803,0.134202,0.877819,0.433754,0.230717,0.15026,0.0581067,0.782486,0.319432,0.966294,0.673764,0.359986,0.859043,0.93785,0.642249,0.882369,0.697219,0.901366,0.5467,0.76311,0.236793,0.955907,0.539207,0.798997,0.582562,0.395031,0.3524,0.0849771,0.703766,0.976686,0.941276,0.944891,0.456827,0.202505,0.980533,0.886671,0.34696,0.993293,0.74304,0.0366414,0.791912,0.555917,0.721883,0.211524,0.412249,0.802153,0.70277,0.749741,0.608338,0.73205,0.75923,0.215779,0.772241,0.349161,0.424295,0.581348,0.971016,0.970141,0.481697,0.733057,0.640432,0.982552,0.134552,0.954858,0.576695,0.468618,0.0566636,0.0362059,0.666418,0.479453,0.629046,0.555452,0.650031,0.51053,0.50273,0.816815,0.790914,0.837075,0.902859,0.147986,0.648047,0.674378,0.748683,0.171982,0.708407,0.515646,0.72781,0.663183,0.190951,0.791798,0.365264,0.0493233,0.468271,0.845227,0.306166,0.287016,0.075673,0.783718,0.370897,0.404302,0.606643,0.788754,0.439794,0.675213,0.875725,0.332413,0.538941,0.275145,0.54867,0.111787,0.30986,0.116914,0.493182,0.662048,0.354672,0.525407,0.812657,0.0087049,0.672362,0.920907,0.0113293,0.89287,0.989102,0.157814,0.991722,0.894234,0.144337,0.94866,0.408951,0.706125,0.250783,0.253119,0.844348,0.370391,0.241239,0.134076,0.371173,0.156094,0.252708,0.438587,0.571901,0.732746,0.613367,0.32214,0.131242,0.785486,0.0474151,0.713172,0.0016098,0.627222,0.844486,0.654174,0.868024,0.501571,0.0521024,0.394534,0.960434,0.0386196,0.630337,0.161326,0.513039,0.145045,0.212502,0.943411,0.0687151,0.54836,0.0791209,0.20602,0.545595,0.363873,0.968407,0.908924,0.277308,0.618079,0.141649,0.888699,0.138057,|0.0941106,0.020335,0.782187,0.45774,0.351056,0.131111,0.995235,0.0803084,0.624657,0.412906,0.0903236,0.943718,0.1538,0.406868,0.534878,0.0829066,0.46486,0.091773,0.167358,0.621463,0.441268,0.327395,0.344214,0.568811,0.573127,0.489799,0.232264,0.602419,0.646904,0.831554,0.800315,0.783478,0.682163,0.0193056,0.461083,0.0718417,0.63664,0.161636,0.809106,0.367111,0.211922,0.0203915,0.895518,0.461256,0.267231,0.138364,0.056711,0.817934,0.703482,0.706285,0.897349,0.461991,0.803699,0.692423,0.0902446,0.173497,0.222359,0.59033,0.513718,0.713215,0.463453,0.224829,0.680293,0.517122,0.228491,0.326814,0.0779024,0.00223261,0.947782,0.214024,0.296023,0.627835,0.290343,0.645607,0.339567,0.599836,0.67066,0.576762,0.496097,0.567226,0.798765,0.787871,0.164701,0.616902,0.817877,0.200157,0.631715,0.811662,0.960898,0.4857,0.325277,0.723104,0.801031,0.858166,0.032285,0.403142,0.491421,0.544504,0.26143,0.89046,0.100146,0.892221,0.873615,0.315688,0.917126,0.416312,0.978369,0.286647,0.509786,0.500128,0.301706,0.206231,0.552785,0.135412,0.822805,0.204398,0.697096,0.503368,0.1894,0.360146,0.695056,0.128043,0.357768,0.597254,0.804647,0.425123,0.104731,0.551543,0.731768,0.383612,0.446393,0.94896,0.274858,0.22607,0.176611,0.460471,0.880075,0.100907,0.184212,0.349566,0.450719,0.77949,0.524254,0.898644,0.543059,0.761583,0.882775,0.207718,0.763864,0.597438,0.737973,0.11573,0.991893,0.450113,0.277941,0.561403,0.602827,0.941828,0.491739,0.333343,0.159122,0.576546,0.215918,0.479249,0.0131318,0.89577,0.991878,0.408223,0.85095,0.70009,0.770703,0.614891,0.650741,0.0669938,0.177376,0.23485,0.611662,0.664805,0.184753,0.339349,0.0993503,0.480973,0.0746022,0.654905,0.1949,0.814986,0.48626,0.564262,0.750506,0.570108,0.184385,0.275969,0.175717,0.945161,0.0489916,0.814179,0.809457,0.858727,0.268487,0.47868,0.141396,0.217387,0.866744,0.985904,0.872639,0.311976,0.0881951,0.0666662,0.249882,0.806139,0.900352,0.62419,0.17809,0.497694,0.412085,0.787398,0.374692,0.548025,0.717279,0.455027,0.878326,0.00936675,0.663639,0.514341,0.00441712,0.211055,0.751981,0.33329,0.677974,0.803406,0.372783,0.128702,0.583597,0.733022,0.0297127,0.864362,0.988888,0.124729,0.0582117,0.715919,0.160812,0.208899,0.97074,0.0904462,0.671146,0.60378,0.355651,0.963082,0.414281,0.0885861,0.618778,0.370734,0.230604,0.876204,0.604519,0.401158,0.20928,0.323912,0.889873,0.996895,0.646045,0.982019,0.790982,0.888163,0.947245,0.969911,0.386286,0.741588,0.816134,0.467736,0.415731,0.570575,0.240076,0.038819,0.97392,0.172881,0.814206,0.79864,0.432273,0.235975,0.663364,0.589513,0.400553,0.615149,0.848601,0.753895,0.359905,0.20537,0.672876,0.816577,0.979422,0.19039,0.0151745,0.676267,0.126322,0.681177,0.850502,0.530703,0.00688159,0.142632,0.74017,0.103139,0.874819,0.107391,0.601001,0.628029,0.274252,0.777837,0.585261,0.85827,0.132794,0.596046,0.438866,0.943899,0.787272,0.257063,0.769697,0.641292,0.809346,0.58125,0.0536964,0.995024,0.760211,0.800094,0.655537,0.422457,0.205739,0.161616,0.489541,0.772395,0.445046,0.62388,0.72036,0.128945,0.163075,0.423731,0.401073,0.206909,0.41363,0.0457327,0.60893,0.579489,0.616136,0.0700639,0.573985,0.0721681,0.76397,0.894892,0.660187,0.618372,0.879331,0.603113,0.658069,0.484125,0.612502,0.119486,0.243167,0.124692,0.261906,0.969797,0.987321,0.764162,0.0607972,0.748185,0.0859067,0.26498,0.201327,0.983723,0.186468,0.148879,0.74662,0.346546,0.427809,0.255256,0.161914,0.185708,0.923762,0.290711,0.0713354,0.843158,0.427988,0.90938,0.886746,0.45374,0.401914,0.660316,0.439051,0.0969718,0.968364,0.976173,0.695254,0.48458,0.462876,0.510589,0.0838828,0.595602,0.506923,0.643572,0.631171,0.443508,0.551258,0.037829,0.503438,0.439899,0.396457,0.230692,0.619055,0.48573,0.186915,0.494847,0.675066,0.836889,0.979377,0.814743,0.602776,0.917004,0.0591565,0.838114,0.259323,0.249612,0.581826,0.923447,0.0662233,0.186713,0.0571235,0.782521,0.767478,0.927567,0.770503,0.0947861,0.148509,0.383212,0.906499,0.605036,0.145715,0.462319,0.797942,0.804547,0.221916,0.477111,0.652654,0.531258,0.676048,0.410948,0.839382,0.726203,0.462955,0.222521,0.231497,0.449082,0.0919698,0.145265,0.261182,0.871938,0.607571,0.717419,0.523311,0.398227,0.422767,0.0888082,0.884291,0.0272106,0.279209,0.560671,0.936109,0.144188,0.882359,0.0237345,0.0560071,0.518582,0.106466,0.862214,0.223501,0.000635386,0.812464,0.507649,0.145106,0.978603,0.619508,0.661397,0.648108,0.0808612,0.871339,0.849227,0.555227,0.202703,0.182414,0.841346,0.321339,0.115648,0.983163,0.115364,0.111177,0.410357,0.0592873,0.755378,0.957179,0.352484,0.122861,0.801629,0.170387,0.0470871,0.955189,0.323673,0.580449,0.0481582,0.35373,0.84211,0.595876,0.298833,0.194288,0.615527,0.0800633,0.229751,0.53557,0.022831,0.0905755,0.712892,0.943581,0.995775,0.272809,0.17817,0.0302367,0.850804,0.423423,0.275557,0.454638,0.583952,0.620654,0.920597,0.153486,0.192389,0.0231368,0.147175,0.169781,0.321794,0.590702,0.89704,0.498733,0.352385,0.921175,0.348963,0.999462,0.0116336,0.41876,0.707799,0.465925,0.536511,0.807881,0.303968,0.811106,0.316489,0.156715,0.434723,0.0743374,0.66936,0.930923,0.824844,0.765819,0.629444,0.0031634,0.113248,0.433791,0.74755,0.107023,0.109247,0.630768,0.0761147,0.902221,0.249673,0.23246,0.202561,0.926859,0.885883,0.73548,0.212465,0.0809737,0.89761,0.569363,0.00679153,0.32721,0.371805,0.201178,0.916445,0.539343,0.794341,0.825874,0.657951,0.611128,0.121229,0.415955,0.5826,0.467243,0.304422,0.710084,0.392805,0.990418,0.0448002,0.926116,0.513349,0.958458,0.458111,0.980131,0.215088,0.112509,0.460736,0.583865,0.092047,0.315078,0.925127,0.192129,0.337405,0.201106,0.574075,0.586228,0.508679,0.920548,0.456653,0.423714,0.514819,0.0452099,0.461735,0.39845,0.209451,0.753903,0.99037,0.213294,0.207903,0.382088,0.597794,0.451267,0.585403,0.137518,0.165904,0.52196,0.792759,0.0346239,0.852509,0.976484,0.186116,0.74241,0.919097,0.974412,0.828233,0.373577,0.817811,0.160589,0.469204,0.0666432,0.508284,0.0793396,0.34733,0.486222,0.960329,0.975174,0.0936944,0.33773,0.671689,0.488273,0.889901,0.179159,0.840243,0.0583882,0.0352866,0.393058,0.494263,0.258205,0.362426,0.619167,0.58743,0.785909,0.795078,0.560289,0.379762,0.381596,0.994949,0.350944,0.987351,0.110586,0.0195796,0.567203,0.656346,0.41183,0.782821,0.290333,0.470091,0.77654,0.28779,0.850451,0.0116547,0.94364,0.46551,0.561864,0.544619,0.495556,0.569011,0.34474,0.854463,0.416837,0.319361,0.687722,0.51679,0.0554768,0.289578,0.769901,0.570747,0.0468916,0.980411,0.486178,0.730432,0.109745,0.501072,0.753452,0.754108,0.0856895,0.851345,0.256266,0.373501,0.819901,0.237821,0.513371,0.410939,0.737461,0.69346,0.714031,0.00386858,0.124137,0.4939,0.00676262,0.163694,0.64706,0.220845,0.866854,0.0763526,0.593757,0.282895,0.782224,0.0561267,0.458062,0.120557,0.66299,0.620369,0.193482,0.257501,0.258873,0.728493,0.878781,0.462319,0.780517,0.0213492,0.0652342,0.981444,0.143636,0.973525,0.943397,0.103632,0.371941,0.567416,0.708424,0.802429,0.618021,0.997559,0.911538,0.684314,0.86356,0.697226,0.673942,0.504885,0.396778,0.326969,0.712706,0.231566,0.555667,0.0449273,0.481265,0.764671,0.766616,0.360529,0.516238,0.114861,0.0991266,0.996334,0.285074,0.264297,0.446367,0.0971476,0.684494,0.698163,0.754617,0.744647,0.899727,0.111638,0.714469,0.350944,0.617555,0.956354,0.197972,0.410066,0.876308,0.944633,0.81671,0.926367,0.353867,0.094724,0.181871,0.792555,0.53512,0.971875,0.434134,0.0315539,0.290761,0.615967,0.682223,0.188917,0.55548,0.89418,0.115363,0.759064,0.997945,0.610771,0.0376618,0.983242,0.400279,0.808083,0.845601,0.537833,0.981784,0.467986,0.360749,0.484091,0.977741,0.344624,0.0990071,0.173286,0.431153,0.65301,0.32542,0.458399,0.208726,0.21657,0.736158,0.311801,0.419631,0.431204,0.304138,0.0846709,0.933167,0.407252,0.525612,0.551918,0.462892,0.566933,0.0925179,0.453892,0.329838,0.41049,0.232203,0.706417,0.672875,0.844196,0.654305,0.599651,0.199882,0.370486,0.59906,0.390497,0.709132,0.944696,0.0240398,0.455722,0.922318,0.282437,0.824287,0.933441,0.441755,0.0438989,0.785842,0.189568,0.385496,0.507151,0.247108,0.0486866,0.278097,0.731514,0.484825,0.830545,0.39892,0.307577,0.732849,0.786694,0.480951,0.000118971,0.772591,0.864624,0.501088,0.846817,0.6781,0.341166,0.741717,0.0883366,0.587951,0.797483,0.344338,0.755529,0.773697,0.223485,0.215245,0.805784,0.0559181,0.790741,0.749243,0.497516,0.6353,0.998804,0.218666,0.640323,0.0592881,0.551513,0.389427,0.740683,0.780013,0.791062,0.0793005,0.0832747,0.065818,0.534399,0.895094,0.359687,0.23136,0.509838,0.871593,0.170968,0.391066,0.506498,0.194087,0.873634,0.723272,0.825522,0.449181,0.0267846,0.798173,0.517158,0.747925,0.564634,0.470408,0.048103,0.896533,0.794415,0.32089,0.654556,0.4839,0.289697,0.846995,0.75901,0.185422,0.283303,0.782065,0.857199,0.0155109,0.480048,0.904494,0.433456,0.561493,0.0872651,0.14884,0.474937,0.0746784,0.947601,0.128681,0.628345,0.947109,0.736016,0.875293,0.679222,0.480385,0.347186,0.804798,0.838572,0.968274,0.945217,0.429812,0.603638,0.562326,0.741899,0.120532,0.732961,0.272964,0.525435,0.499457,0.66758,0.916382,0.577458,0.570489,0.66042,0.536734,0.405846,0.130139,0.748194,0.549929,0.0945658,|0.676072,0.28597,0.981636,0.575333,0.713379,0.491508,0.174935,0.475615,0.305216,0.578246,0.95667,0.949435,0.880548,0.65925,0.0254093,0.130619,0.338426,0.425199,0.297533,0.66337,0.713212,0.311779,0.213788,0.597942,0.67052,0.00219333,0.537616,0.480675,0.602133,0.720531,0.0298055,0.420918,0.372864,0.0362242,0.69981,0.542563,0.539426,0.590489,0.869992,0.818495,0.0333541,0.90975,0.143959,0.81242,0.492429,0.00618845,0.194287,0.780571,0.640579,0.168787,0.310721,0.439824,0.440271,0.648257,0.751701,0.211656,0.149789,0.824499,0.480494,0.220551,0.493088,0.0742336,0.713515,0.608737,0.6591,0.432436,0.882028,0.585762,0.171316,0.424567,0.0587722,0.676939,0.0461733,0.532513,0.624737,0.90962,0.77273,0.976692,0.791216,0.819158,0.889668,0.721207,0.220894,0.705798,0.472646,0.378434,0.930562,0.598913,0.272303,0.385797,0.759405,0.949338,0.880284,0.724555,0.660674,0.285168,0.792556,0.312418,0.392784,0.916633,0.165997,0.537648,0.338207,0.191769,0.765777,0.075944,0.670768,0.824157,0.531903,0.222254,0.79354,0.551966,0.266212,0.351581,0.0984223,0.982757,0.547052,0.416955,0.521768,0.477125,0.712017,0.0799266,0.65607,0.249927,0.0542645,0.477531,0.646289,0.337798,0.775623,0.429308,0.309127,0.328794,0.691259,0.954408,0.593032,0.110976,0.00699115,0.475426,0.574733,0.048479,0.757443,0.37016,0.934084,0.595973,0.876179,0.323896,0.999719,0.17559,0.530057,0.22801,0.0996151,0.421414,0.0085479,0.776314,0.329449,0.125167,0.334471,0.0460148,0.528732,0.773021,0.798197,0.991237,0.504162,0.890299,0.363096,0.314854,0.148012,0.147722,0.677142,0.978612,0.208478,0.134496,0.212046,0.826452,0.485563,0.0271946,0.772809,0.485817,0.570448,0.0118671,0.0608907,0.52619,0.788028,0.16473,0.132786,0.846463,0.595197,0.781913,0.829927,0.875131,0.454896,0.547154,0.747196,0.970038,0.962274,0.778045,0.107731,0.949438,0.679699,0.18869,0.249699,0.107364,0.273942,0.150755,0.356583,0.437409,0.396675,0.478796,0.566102,0.356484,0.309328,0.185218,0.765953,0.131532,0.0688429,0.00214309,0.830571,0.684975,0.968154,0.57912,0.308733,0.433123,0.779667,0.341305,0.165307,0.932561,0.14524,0.97111,0.423872,0.574182,0.338768,0.52546,0.279666,0.0534498,0.62377,0.439786,0.193648,0.809849,0.638224,0.561718,0.814262,0.591104,0.677475,0.423763,0.807579,0.109376,0.168959,0.927747,0.346009,0.175062,0.850342,0.428322,0.898577,0.067714,0.903825,0.719137,0.240125,0.689734,0.181132,0.348694,0.630116,0.356978,0.841009,0.0361939,0.305425,0.0371183,0.771782,0.958945,0.0604498,0.769657,0.968663,0.404622,0.703506,0.222899,0.227586,0.317278,0.745713,0.612416,0.48625,0.468663,0.814937,0.216037,0.221333,0.0869505,0.66736,0.205952,0.113391,0.346953,0.325159,0.158716,0.798658,0.25029,0.62773,0.202685,0.82087,0.599996,0.840299,0.774906,0.905932,0.910907,0.343509,0.0892318,0.24218,0.0536721,0.93985,0.742148,0.354251,0.0328678,0.43283,0.646274,0.220473,0.812444,0.421879,0.0906405,0.0865657,0.211104,0.0956846,0.966913,0.484859,0.849272,0.504912,0.675991,0.982856,0.759673,0.583041,0.265272,0.375676,0.0143074,0.507896,0.655219,0.282346,0.439569,0.183829,0.191737,0.468605,0.749708,0.558065,0.274755,0.304978,0.593678,0.914984,0.37073,0.0623391,0.992268,0.527839,0.371507,0.121155,0.473802,0.274827,0.852386,0.18616,0.561374,0.508197,0.195984,0.295533,0.521864,0.816565,0.269826,0.683383,0.674889,0.0425108,0.254179,0.542946,0.801721,0.744751,0.428212,0.749771,0.501171,0.89826,0.259244,0.156883,0.603282,0.58655,0.293438,0.978286,0.996099,0.668334,0.894731,0.513644,0.682347,0.745662,0.854589,0.164688,0.172601,0.00732183,0.697737,0.561682,0.847828,0.377668,0.137935,0.00142777,0.330081,0.204473,0.877368,0.928778,0.607344,0.347098,0.895926,0.0427795,0.0905917,0.943554,0.816637,0.0473208,0.969332,0.60274,0.266907,0.0805301,0.625918,0.304725,0.413255,0.911358,0.694532,0.0669261,0.823832,0.116375,0.863538,0.402837,0.139539,0.328489,0.883058,0.962193,0.312739,0.0578497,0.834867,0.0107011,0.060837,0.128324,0.161184,0.745404,0.967938,0.077008,0.673489,0.208604,0.236761,0.120163,0.971059,0.988783,0.334006,0.706488,0.0509496,0.498963,0.0874334,0.117885,0.535999,0.914241,0.174584,0.167758,0.592536,0.823574,0.494925,0.158633,0.57273,0.260569,0.315576,0.491525,0.555789,0.117874,0.142059,0.0988653,0.648939,0.993652,0.280119,0.396395,0.912277,0.149674,0.961919,0.385743,0.631413,0.774904,0.353873,0.174719,0.596459,0.757399,0.824931,0.126686,0.956055,0.189923,0.469454,0.745905,0.745574,0.446976,0.410165,0.735311,0.177115,0.480396,0.147226,0.122793,0.280068,0.116477,0.302322,0.00313461,0.709779,0.489917,0.761673,0.267639,0.238095,0.935195,0.0408062,0.00795257,0.822177,0.631154,0.0395718,0.545844,0.0319146,0.425469,0.0287001,0.0556583,0.609269,0.388092,0.285026,0.42128,0.59788,0.987952,0.343693,0.404761,0.948993,0.421723,0.277176,0.0632857,0.252971,0.86433,0.134493,0.414956,0.936106,0.610867,0.174475,0.359373,0.0193687,0.424893,0.663858,0.12008,0.101359,0.384564,0.103614,0.676442,0.711224,0.311613,0.708103,0.243769,0.884274,0.476836,0.598702,0.574968,0.952461,0.210294,0.739574,0.0650529,0.795108,0.191149,0.157794,0.811511,0.169555,0.0346341,0.487916,0.315035,0.819905,0.961924,0.217401,0.459092,0.975997,0.314405,0.662671,0.193792,0.0110062,0.185909,0.264209,0.471217,0.302795,0.810986,0.829609,0.72994,0.172561,0.0441155,0.808775,0.711737,0.515596,0.115565,0.661165,0.590612,0.986737,0.156468,0.270906,0.99488,0.751661,0.338766,0.620318,0.891481,0.933876,0.217006,0.75038,0.333448,0.225377,0.313752,0.0553722,0.498468,0.981494,0.656924,0.9725,0.674325,0.465721,0.190587,0.104008,0.99001,0.171288,0.528953,0.360267,0.348619,0.440896,0.840317,0.689875,0.602144,0.14696,0.0283515,0.073033,0.367472,0.926639,0.608181,0.45088,0.124817,0.852788,0.236443,0.87704,0.124747,0.96982,0.824483,0.227532,0.261546,0.251132,0.246906,0.928311,0.577182,0.568212,0.627943,0.760997,0.931595,0.511375,0.0647168,0.00107527,0.523362,0.313583,0.0471754,0.502487,0.930954,0.0950506,0.930972,0.847479,0.033294,0.255541,0.385031,0.823172,0.218503,0.892501,0.78527,0.36813,0.115906,0.443183,0.978237,0.433303,0.0624609,0.116504,0.938579,0.164586,0.11891,0.815906,0.203503,0.553312,0.58858,0.734454,0.645463,0.990549,0.131535,0.196845,0.133142,0.233001,0.895525,0.0559094,0.428457,0.0774454,0.687818,0.812091,0.670154,0.668126,0.0158275,0.559094,0.659929,0.144864,0.0224991,0.825719,0.766705,0.881227,0.988091,0.550069,0.913408,0.761633,0.488168,0.833429,0.767536,0.515912,0.616692,0.293535,0.466203,0.484871,0.37348,0.68953,0.0907134,0.348486,0.363481,0.0605317,0.794842,0.791856,0.913668,0.68216,0.285554,0.535356,0.944391,0.349947,0.0540037,0.601483,0.432364,0.731953,0.861698,0.761732,0.440529,0.81883,0.643188,0.539329,0.87527,0.329651,0.276106,0.35504,0.0509044,0.0373072,0.643789,0.427743,0.769568,0.496944,0.426136,0.67307,0.84235,0.232974,0.207295,0.44945,0.996117,0.937714,0.0491577,0.369581,0.891371,0.150905,0.798274,0.941439,0.853821,0.224433,0.603592,0.8644,0.586427,0.63215,0.440644,0.518952,0.960875,0.367284,0.261831,0.798618,0.848386,0.174175,0.041075,0.39093,0.830897,0.906531,0.036641,0.0135879,0.861889,0.353473,0.429457,0.716338,0.751118,0.820311,0.831964,0.354875,0.217162,0.829445,0.887365,0.987968,0.000322104,0.699074,0.13381,0.151599,0.303003,0.0637998,0.745619,0.482758,0.818738,0.36522,0.304705,0.67619,0.713177,0.421027,0.579885,0.817254,0.601131,0.701714,0.687466,0.118739,0.820966,0.884451,0.891261,0.597146,0.443799,0.906755,0.0968361,0.217338,0.972954,0.977315,0.310032,0.423594,0.565843,0.429857,0.874316,0.686441,0.732996,0.766217,0.378213,0.701234,0.138387,0.678499,0.432122,0.348216,0.051379,0.438627,0.0505697,0.53559,0.0143258,0.59176,0.178244,0.340088,0.0235611,0.49885,0.56199,0.634677,0.225236,0.415132,0.537834,0.164232,0.948463,0.246991,0.0746162,0.0347633,0.231717,0.639229,0.988737,0.358443,0.139108,0.955483,0.772358,0.238673,0.517028,0.370366,0.962205,0.923341,0.509819,0.244511,0.937936,0.949713,0.0555592,0.493484,0.369256,0.435554,0.286594,0.911229,0.291952,0.465415,0.492069,0.150805,0.0595293,0.087088,0.0519112,0.628538,0.513038,0.920568,0.785294,0.961113,0.213601,0.695998,0.98164,0.730655,0.390256,0.781792,0.216653,0.925968,0.73302,0.0608925,0.241254,0.506376,0.28235,0.307385,0.663861,0.90638,0.741677,0.0332454,0.233463,0.849955,0.766372,0.390052,0.699914,0.991187,0.73515,0.449826,0.0812785,0.642093,0.17296,0.154584,0.809763,0.260292,0.0262855,0.00879723,0.909704,0.223533,0.997963,0.430821,0.695144,0.01086,0.0998952,0.457806,0.709271,0.602931,0.416436,0.40744,0.184297,0.488005,0.653072,0.485585,0.535029,0.0902563,0.635037,0.769042,0.324883,0.299268,0.557139,0.0529954,0.512348,0.19197,0.710239,0.554076,0.379792,0.306194,0.148618,0.404858,0.777547,0.0920431,0.485568,0.928752,0.238921,0.357779,0.703013,0.379601,0.678038,0.12913,0.485536,0.862088,0.428015,0.65494,0.174416,0.959809,0.741846,0.857853,0.39069,0.159286,0.959493,0.104358,0.0554993,0.155559,0.825556,0.965804,0.197317,0.800141,0.901704,0.412151,0.16589,0.565718,0.0148777,0.284404,0.0486661,0.788177,0.520937,0.770568,0.827872,0.150039,0.452882,0.761352,0.294054,0.920625,0.134339,0.429148,0.911942,0.760587,0.627043,0.170516,0.850982,0.210016,0.319968,0.922556,|0.45694,0.712743,0.973678,0.444741,0.976299,0.966499,0.122868,0.884896,0.745587,0.994365,0.899724,0.400222,0.237815,0.69073,0.0884882,0.888137,0.55793,0.811036,0.823397,0.913722,0.622365,0.0415925,0.0811102,0.844943,0.982192,0.75493,0.676892,0.326523,0.914271,0.569938,0.0170419,0.0730975,0.348974,0.118639,0.442191,0.0940226,0.835327,0.482224,0.119304,0.551037,0.934037,0.175898,0.00566685,0.466429,0.518886,0.494918,0.744594,0.748308,0.328025,0.45845,0.22554,0.201052,0.514788,0.732313,0.810157,0.163527,0.0935538,0.979313,0.165356,0.922069,0.520572,0.623412,0.397229,0.484827,0.307178,0.31642,0.962667,0.77055,0.171469,0.443732,0.968993,0.881537,0.695731,0.488427,0.276131,0.844621,0.0373656,0.569714,0.0502583,0.301948,0.13215,0.748461,0.120732,0.0336403,0.966962,0.72904,0.586679,0.40113,0.676049,0.993658,0.637311,0.0592522,0.550443,0.324174,0.582658,0.749079,0.435946,0.46875,0.873734,0.868692,0.78226,0.998359,0.965244,0.291049,0.784566,0.134248,0.305733,0.46321,0.305248,0.837956,0.10906,0.221498,0.287267,0.0758411,0.259252,0.260551,0.54895,0.481112,0.987683,0.99454,0.249984,0.234537,0.126628,0.478932,0.0315886,0.726987,0.689817,0.364166,0.800097,0.94076,0.041082,0.423919,0.709693,0.664346,0.970507,0.128961,0.00108337,0.673732,0.0302265,0.605461,0.27223,0.709946,0.866109,0.2501,0.389242,0.626563,0.94254,0.499724,0.94818,0.0621876,0.739829,0.66257,0.977947,0.897242,0.616261,0.235653,0.790211,0.325,0.867526,0.849021,0.888867,0.97011,0.859059,0.148032,0.968202,0.971093,0.445834,0.807517,0.309859,0.95088,0.578294,0.566354,0.973528,0.652295,0.198703,0.451215,0.00146085,0.609067,0.22309,0.401469,0.96265,0.183293,0.321164,0.948422,0.469499,0.0319911,0.984945,0.34059,0.697911,0.08476,0.960564,0.964809,0.0263884,0.792344,0.957347,0.60974,0.0237809,0.681626,0.545968,0.909769,0.943618,0.140211,0.937419,0.985805,0.634841,0.533311,0.768573,0.35854,0.22894,0.6096,0.818274,0.967223,0.0783159,0.590766,0.150986,0.722734,0.352254,0.96153,0.256203,0.0884506,0.4534,0.776245,0.742348,0.808597,0.508845,0.472797,0.895899,0.959013,0.413069,0.700907,0.642583,0.995708,0.681946,0.691884,0.106902,0.214234,0.0682225,0.288984,0.887121,0.762772,0.12375,0.554459,0.559892,0.204983,0.207959,0.514862,0.985557,0.384894,0.786214,0.312247,0.459621,0.897625,0.588208,0.530149,0.490986,0.407571,0.940993,0.79855,0.570116,0.210088,0.441028,0.88211,0.348825,0.941682,0.779911,0.192669,0.5894,0.925727,0.910905,0.337413,0.534229,0.382289,0.191388,0.832424,0.828194,0.0187397,0.24102,0.665549,0.103811,0.839389,0.999526,0.622741,0.434024,0.626148,0.332215,0.782496,0.453265,0.0304927,0.72638,0.0851387,0.724963,0.615441,0.490716,0.508151,0.212588,0.874166,0.119137,0.226811,0.675628,0.573445,0.0658055,0.365639,0.974265,0.903172,0.194487,0.566715,0.350905,0.0791065,0.00154161,0.0990422,0.462882,0.346456,0.364204,0.131723,0.690891,0.0631241,0.267732,0.126761,0.413159,0.878652,0.812385,0.551638,0.0170931,0.0208737,0.892625,0.184689,0.263119,0.910414,0.00653332,0.40965,0.979425,0.374339,0.549252,0.936176,0.278668,0.797408,0.93854,0.38585,0.866725,0.20875,0.394836,0.509085,0.813344,0.45672,0.737204,0.0401194,0.862115,0.812785,0.853704,0.74329,0.779464,0.67594,0.873593,0.554164,0.18681,0.58533,0.215111,0.0701006,0.759884,0.936014,0.49443,0.63509,0.401701,0.428169,0.109481,0.0785421,0.200675,0.41247,0.309257,0.0882114,0.983919,0.446911,0.197775,0.660657,0.431446,0.00826281,0.0164907,0.452343,0.497111,0.924003,0.284728,0.14582,0.628708,0.595113,0.804495,0.609882,0.197151,0.817683,0.763049,0.481579,0.56206,0.884617,0.650265,0.503673,0.63246,0.915828,0.624068,0.685222,0.0389002,0.864536,0.0519767,0.480366,0.313694,0.0762327,0.717778,0.560565,0.929795,0.656755,0.306576,0.237574,0.357064,0.826549,0.855128,0.520601,0.25634,0.495895,0.00620097,0.817843,0.784686,0.230664,0.018214,0.985964,0.148576,0.683339,0.68784,0.70028,0.835905,0.109913,0.169591,0.244161,0.145172,0.0895617,0.526628,0.499899,0.469416,0.170269,0.456865,0.741749,0.637366,0.6725,0.0538052,0.506469,0.173098,0.650188,0.14279,0.322787,0.361402,0.536224,0.445945,0.931294,0.249979,0.160038,0.144453,0.797806,0.778211,0.520292,0.913449,0.901513,0.855357,0.938283,0.374346,0.374108,0.12662,0.981651,0.72708,0.40412,0.925788,0.678052,0.99945,0.987369,0.640103,0.593326,0.857252,0.870025,0.393378,0.066695,0.915949,0.43558,0.524222,0.650823,0.250671,0.208339,0.335682,0.39382,0.893773,0.728514,0.701846,0.289803,0.415373,0.966405,0.0806873,0.222222,0.525854,0.864129,0.802643,0.88304,0.921678,0.385331,0.469435,0.93006,0.273898,0.166853,0.723552,0.181086,0.359742,0.361248,0.060616,0.190335,0.383915,0.760312,0.406937,0.154162,0.137348,0.412179,0.545384,0.979196,0.312906,0.988911,0.69152,0.736565,0.175766,0.715586,0.0739113,0.716059,0.512265,0.110704,0.254996,0.485262,0.680168,0.20601,0.932593,0.910764,0.275795,0.752462,0.266139,0.953429,0.532645,0.282651,0.757765,0.806367,0.495909,0.705844,0.798743,0.773134,0.317462,0.303988,0.674626,0.0722206,0.39903,0.165372,0.507807,0.665355,0.0641343,0.192572,0.185002,0.642972,0.825839,0.616389,0.987466,0.942453,0.784147,0.403144,0.799075,0.966821,0.828842,0.974931,0.460444,0.26239,0.259916,0.411972,0.409899,0.53563,0.689011,0.346867,0.348749,0.407135,0.529181,0.184636,0.665266,0.361343,0.0260152,0.410725,0.916957,0.187026,0.943759,0.790388,0.481721,0.644894,0.378467,0.594077,0.328387,0.0678812,0.626962,0.0659781,0.285316,0.47792,0.0643805,0.837009,0.883291,0.650692,0.736262,0.0705714,0.322342,0.89219,0.946076,0.421644,0.739198,0.244914,0.921778,0.238283,0.092023,0.0930237,0.720885,0.0138993,0.667937,0.978581,0.405354,0.122174,0.578168,0.711302,0.585311,0.23469,0.277582,0.230046,0.797264,0.926363,0.567713,0.369285,0.96877,0.00874281,0.926345,0.404834,0.91617,0.849168,0.900121,0.156606,0.659771,0.0835154,0.843056,0.0479241,0.747924,0.559564,0.156514,0.917331,0.0873098,0.21474,0.977985,0.0611954,0.157474,0.830384,0.4522,0.462326,0.729787,0.995159,0.83204,0.279955,0.543328,0.240438,0.920783,0.952832,0.586606,0.448085,0.451158,0.0915937,0.486396,0.114484,0.908739,0.134223,0.605869,0.525556,0.363297,0.187288,0.777772,0.223101,0.930449,0.210292,0.159488,0.638699,0.513633,0.551958,0.361889,0.923444,0.266004,0.137433,0.994185,0.634059,0.180004,0.816145,0.112352,0.382257,0.558953,0.113834,0.770334,0.988623,0.307369,0.361305,0.219148,0.4582,0.430742,0.452372,0.549968,0.775762,0.0723751,0.633763,0.827814,0.421544,0.621911,0.301694,0.738034,0.309938,0.522865,0.0185375,0.517853,0.122347,0.775043,0.567802,0.883504,0.752899,0.699344,0.478421,0.260337,0.205981,0.578633,0.893427,0.174884,0.144969,0.443695,0.652177,0.822099,0.213908,0.56583,0.265116,0.512488,0.599269,0.630298,0.0790268,0.812573,0.736877,0.171076,0.0963386,0.117533,0.369475,0.90152,0.863627,0.994001,0.177162,0.0857033,0.404844,0.697973,0.0878758,0.625112,0.139319,0.669491,0.910433,0.113912,0.489577,0.632081,0.0562152,0.32676,0.298521,0.650456,0.266478,0.692534,0.733929,0.701845,0.231314,0.761492,0.730637,0.898785,0.636238,0.0257052,0.78371,0.593879,0.386729,0.940027,0.402558,0.125095,0.0568025,0.394254,0.855102,0.646146,0.611617,0.857329,0.608772,0.996279,0.00159979,0.48592,0.810586,0.344915,0.198533,0.878255,0.144427,0.378726,0.171449,0.0669969,0.257505,0.49439,0.843121,0.71226,0.432733,0.412809,0.940792,0.450437,0.589278,0.774558,0.163008,0.611944,0.948487,0.691001,0.848752,0.766918,0.938186,0.391503,0.119073,0.394687,0.934681,0.456349,0.837853,0.216356,0.0572037,0.281594,0.00937742,0.130496,0.862859,0.754252,0.499006,0.762047,0.303065,0.966225,0.119742,0.607421,0.506853,0.541813,0.107411,0.515233,0.239407,0.333795,0.227035,0.647488,0.734433,0.389723,0.529992,0.623811,0.990758,0.508465,0.410084,0.696413,0.680601,0.807655,0.360262,0.897767,0.673464,0.185953,0.546078,0.0289189,0.804365,0.306245,0.382115,0.0326354,0.124691,0.838856,0.139837,0.65197,0.136237,0.461607,0.176656,0.38921,0.705782,0.661272,0.892839,0.217804,0.17703,0.0609316,0.632366,0.917866,0.323266,0.934418,0.158113,0.223246,0.743005,0.813267,0.0229136,0.729106,0.94224,0.815812,0.533335,0.880558,0.139908,0.998902,0.197028,0.831515,0.159833,0.0588506,0.843444,0.333791,0.339376,0.355552,0.503631,0.561659,0.425116,0.953736,0.427594,0.824473,0.365341,0.1022,0.93649,0.704585,0.303357,0.903189,0.168764,0.165389,0.940719,0.839661,0.242105,0.785871,0.908507,0.784057,0.48265,0.729356,0.851155,0.573434,0.00314409,0.75296,0.46122,0.439311,0.373407,0.781064,0.47702,0.421723,0.464299,0.184784,0.968658,0.417732,0.270291,0.519492,0.367368,0.133779,0.116628,0.0414575,0.847755,0.314214,0.609705,0.493062,0.373195,0.884818,0.494956,0.733931,0.536598,0.227158,0.854213,0.790607,0.367147,0.153906,0.81069,0.376209,0.0269256,0.899085,0.440976,0.848373,0.44853,0.428913,0.127414,0.787088,0.96949,0.654747,0.905113,0.395485,0.00531143,0.25237,0.86176,0.0745133,0.230228,0.0562141,0.797891,0.362166,0.69887,0.175043,0.00565594,0.723171,0.953416,0.465159,0.846017,0.995278,0.712622,0.431098,0.516947,0.864124,0.477911,0.394352,0.430464,0.982588,0.02912,0.467553,0.624514,0.495382,0.203943,0.0399633,0.491197,0.512873,0.580145,|0.854972,0.415155,0.0486492,0.0230169,0.504616,0.959744,0.304302,0.836659,0.755715,0.0379406,0.111196,0.557757,0.448872,0.513472,0.182634,0.180098,0.980253,0.0818213,0.369354,0.974582,0.879222,0.370916,0.234409,0.889769,0.29194,0.777017,0.329154,0.0630801,0.734719,0.867597,0.74755,0.88908,0.242462,0.438185,0.519524,0.906811,0.0852858,0.360595,0.885847,0.0718244,0.771093,0.311623,0.207483,0.172612,0.912822,0.277276,0.61607,0.299395,0.328938,0.102734,0.688235,0.964178,0.333035,0.709479,0.825757,0.704729,0.325754,0.218235,0.0593885,0.0428704,0.942163,0.0511005,0.366512,0.580263,0.720942,0.746585,0.0350618,0.691396,0.648274,0.411615,0.491145,0.523902,0.97563,0.895077,0.644603,0.999985,0.846639,0.695876,0.187301,0.482722,0.868397,0.715904,0.436497,0.89101,0.627267,0.387724,0.606658,0.369458,0.252807,0.914903,0.799572,0.18697,0.786633,0.740888,0.89977,0.900527,0.922361,0.249129,0.0395205,0.412814,0.395447,0.575722,0.278767,0.0166471,0.429222,0.943963,0.7172,0.915366,0.841286,0.58355,0.812942,0.113116,0.391982,0.774658,0.870764,0.553579,0.917607,0.467826,0.228267,0.897674,0.191183,0.444512,0.134038,0.577569,0.0743154,0.00406373,0.276715,0.986783,0.369009,0.06883,0.470715,0.908686,0.231488,0.582458,0.408334,0.610385,0.523541,0.391804,0.831594,0.0760361,0.76956,0.859766,0.149106,0.219235,0.380697,0.00344348,0.780353,0.650235,0.819901,0.159004,0.545279,0.929996,0.239225,0.0777923,0.364593,0.960937,0.65363,0.582526,0.512688,0.525391,0.536122,0.396678,0.713587,0.856471,0.552482,0.904586,0.221435,0.26395,0.0809577,0.294207,0.423966,0.409202,0.637173,0.268004,0.222414,0.715086,0.537386,0.609369,0.834566,0.355163,0.636415,0.0436428,0.321163,0.021575,0.314459,0.664687,0.36645,0.367369,0.791502,0.823872,0.606283,0.208444,0.299063,0.425861,0.644119,0.741108,0.897551,0.61964,0.887477,0.200891,0.49173,0.0885315,0.661168,0.214973,0.996158,0.307647,0.990533,0.495991,0.275576,0.886725,0.49418,0.751758,0.08044,0.459547,0.0397013,0.253802,0.713271,0.275694,0.918789,0.27947,0.566089,0.473793,0.145483,0.865798,0.800298,0.633584,0.337649,0.767346,0.257248,0.426281,0.454681,0.283291,0.0566638,0.656624,0.500906,0.000934303,0.0333394,0.601203,0.568408,0.475009,0.724579,0.564138,0.181228,0.879132,0.0782619,0.237258,0.327979,0.011651,0.487148,0.486483,0.588889,0.31568,0.736887,0.275751,0.677535,0.283393,0.60874,0.968111,0.844778,0.756088,0.5845,0.740887,0.586277,0.746346,0.264718,0.283211,0.522437,0.366008,0.629385,0.260125,0.584759,0.311263,0.114589,0.348144,0.980533,0.950863,0.0282767,0.207105,0.947892,0.761127,0.423076,0.512853,0.473225,0.320197,0.308445,0.345438,0.546606,0.468991,0.528358,0.680973,0.206995,0.997348,0.737693,0.841691,0.489288,0.213113,0.475253,0.21479,0.207959,0.657641,0.0874927,0.44723,0.947112,0.853767,0.73424,0.706276,0.154418,0.158719,0.585223,0.256631,0.566019,0.0467279,0.305178,0.0302997,0.537193,0.180762,0.0983067,0.474484,0.264793,0.871319,0.347375,0.628918,0.388173,0.484908,0.900931,0.135076,0.950309,0.500081,0.161309,0.143241,0.0733876,0.675954,0.234925,0.255281,0.324704,0.249581,0.607611,0.755068,0.519596,0.892462,0.827559,0.166878,0.491462,0.454229,0.848322,0.858375,0.747775,0.277018,0.260239,0.335402,0.263723,0.916642,0.210562,0.540996,0.287015,0.946736,0.685657,0.480429,0.344874,0.603888,0.42488,0.536869,0.804869,0.439051,0.195381,0.821261,0.983006,0.730036,0.471154,0.97043,0.173188,0.171905,0.840353,0.72938,0.914913,0.101935,0.600661,0.659039,0.0906588,0.157637,0.25614,0.399356,0.732539,0.79551,0.0157686,0.998729,0.979606,0.247161,0.393254,0.435363,0.39079,0.683738,0.789122,0.512674,0.708633,0.955728,0.332058,0.613461,0.686036,0.546966,0.808394,0.282963,0.0827116,0.283203,0.933617,0.107283,0.265759,0.0809537,0.993548,0.415752,0.637701,0.416176,0.664511,0.578026,0.82645,0.212379,0.647819,0.297324,0.225844,0.544954,0.91554,0.830962,0.162287,0.870047,0.444854,0.400359,0.403468,0.815562,0.170531,0.881365,0.573127,0.261196,0.461242,0.608156,0.44291,0.725569,0.972619,0.94862,0.0943497,0.00348681,0.907667,0.854564,0.896293,0.881932,0.751329,0.743196,0.678235,0.844047,0.0551588,0.757032,0.740116,0.750455,0.93639,0.977255,0.0937504,0.867975,0.966037,0.27011,0.737848,0.164455,0.598961,0.593178,0.532728,0.841126,0.0381415,0.0719767,0.32306,0.932283,0.258614,0.309832,0.956096,0.775854,0.666187,0.993122,0.443022,0.51235,0.263186,0.944418,0.370188,0.722664,0.235893,0.321101,0.18197,0.835319,0.403732,0.756834,0.0393507,0.845182,0.816084,0.556428,0.101964,0.453981,0.977549,0.0654781,0.29739,0.68049,0.160484,0.543925,0.432559,0.795949,0.0481356,0.565527,0.215682,0.0993053,0.682624,0.210108,0.619131,0.838131,0.349655,0.721201,0.954013,0.11794,0.210502,0.405069,0.424711,0.625187,0.435388,0.275699,0.706648,0.216507,0.159794,0.6162,0.238506,0.911069,0.581241,0.254681,0.0120043,0.0521067,0.302901,0.939472,0.581494,0.291732,0.400884,0.549866,0.429329,0.121255,0.0990516,0.62051,0.0133336,0.635113,0.00445944,0.529365,0.426654,0.340086,0.646273,0.144223,0.266404,0.219156,0.659014,0.123331,0.629882,0.311861,0.210123,0.221126,0.0645213,0.46975,0.0445628,0.963164,0.736678,0.311816,0.972652,0.0213247,0.194272,0.808515,0.317364,0.598041,0.324076,0.32609,0.97655,0.962201,0.115647,0.685518,0.877701,0.620773,0.687392,0.24847,0.468876,0.946807,0.946473,0.459751,0.291907,0.56026,0.808917,0.187509,0.869509,0.21812,0.723025,0.189823,0.457863,0.778298,0.0144244,0.185186,0.105945,0.392677,0.397859,0.264405,0.230033,0.410807,0.276778,0.294744,0.830363,0.812654,0.517035,0.949676,0.546907,0.480609,0.60454,0.807797,0.543426,0.426125,0.0723847,0.750898,0.363771,0.774507,0.92222,0.373312,0.632192,0.731029,0.793933,0.857537,0.339039,0.691087,0.580359,0.882641,0.569159,0.141987,0.896206,0.445551,0.00846803,0.84286,0.0875497,0.979234,0.326934,0.922631,0.613099,0.973424,0.200373,0.614595,0.557525,0.320203,0.278626,0.951288,0.698819,0.540557,0.192726,0.705805,0.994385,0.581751,0.225565,0.534703,0.11678,0.881794,0.429656,0.936827,0.719581,0.514185,0.300101,0.887659,0.615244,0.814217,0.0358772,0.443149,0.146533,0.0389887,0.87421,0.79078,0.252359,0.690018,0.591831,0.637533,0.877888,0.120925,0.747189,0.171516,0.592697,0.641288,0.916443,0.295054,0.214386,0.0147153,0.450902,0.0256492,0.51925,0.377552,0.7586,0.102851,0.645339,0.655016,0.0321161,0.0572231,0.409637,0.572285,0.563658,0.867877,0.377709,0.240073,0.731639,0.468563,0.179377,0.155853,0.617193,0.281916,0.0256342,0.54052,0.120708,0.722786,0.40134,0.284991,0.74233,0.270277,0.236232,0.0250089,0.793285,0.879966,0.527055,0.877264,0.761842,0.66665,0.600453,0.827468,0.38989,0.554141,0.130974,0.73426,0.097595,0.805531,0.675084,0.25251,0.220754,0.483915,0.393422,0.0950356,0.917965,0.430031,0.281154,0.753034,0.825662,0.881574,0.0820392,0.942972,0.714129,0.477523,0.98578,0.538896,0.259303,0.73506,0.786484,0.815733,0.728037,0.811817,0.344389,0.985357,0.61787,0.991154,0.0104339,0.105593,0.622436,0.124751,0.763911,0.142309,0.501417,0.353548,0.48439,0.722989,0.301148,0.674167,0.883703,0.698867,0.507933,0.52342,0.296609,0.488282,0.913017,0.0542957,0.892543,0.991352,0.457744,0.606624,0.0734686,0.728615,0.956948,0.92341,0.492527,0.557321,0.314007,0.247764,0.320437,0.546073,0.68732,0.991247,0.110322,0.707325,0.732854,0.391516,0.397485,0.00918192,0.46167,0.50161,0.595026,0.3387,0.454292,0.106087,0.486735,0.543411,0.0154122,0.784249,0.651244,0.282739,0.211142,0.726847,0.130137,0.302071,0.197233,0.307991,0.538196,0.556704,0.716341,0.444775,0.244595,0.238011,0.0265622,0.992767,0.0659726,0.700111,0.499149,0.483196,0.913039,0.830066,0.883226,0.712004,0.761377,0.24356,0.402632,0.156587,0.299474,0.634506,0.957299,0.32579,0.625418,0.279452,0.159995,0.647959,0.345986,0.393156,0.795658,0.835608,0.209538,0.692273,0.435345,0.907045,0.915722,0.37146,0.4957,0.725772,0.0638474,0.662846,0.579785,0.241784,0.45452,0.197475,0.479383,0.451886,0.30465,0.923725,0.663706,0.0926183,0.954821,0.59575,0.875864,0.302359,0.26806,0.235495,0.430971,0.257903,0.128245,0.176849,0.694402,0.302336,0.734917,0.709528,0.250983,0.581105,0.680325,0.617921,0.977157,0.989759,0.340458,0.113835,0.139568,0.146851,0.374943,0.96426,0.301233,0.775108,0.955602,0.63402,0.92303,0.193832,0.99012,0.146665,0.686301,0.128119,0.76664,0.417289,0.507675,0.353133,0.335413,0.776323,0.870692,0.0713238,0.353689,0.370198,0.775852,0.994546,0.933706,0.569072,0.094335,0.855112,0.087023,0.618468,0.986125,0.309804,0.82702,0.477944,0.347338,0.834715,0.770162,0.232457,0.923395,0.706365,0.127256,0.863382,0.186673,0.739401,0.978562,0.0940755,0.236471,0.112582,0.914546,0.294673,0.262814,0.618325,0.900699,0.0201598,0.276881,0.38178,0.257565,0.86264,0.963114,0.765371,0.67378,0.799263,0.708382,0.751094,0.0625833,0.677621,0.00457472,0.0884824,0.163346,0.673636,0.376398,0.31306,0.738138,0.282438,0.557269,0.0770462,0.134863,0.749086,0.879951,0.837031,0.77579,0.534153,0.559824,0.416879,0.862533,0.611747,0.417017,0.755839,0.98782,0.758587,0.459995,0.484118,0.108654,0.039015,0.320244,0.653156,0.578878,0.588582,0.754116,0.343531,0.800932,0.406897,0.753515,0.668785,0.336537,0.0855232,0.5807,0.863697,0.424824,0.548155,|0.0151267,0.383402,0.705286,0.826666,0.905747,0.754524,0.195896,0.885083,0.211007,0.742648,0.714475,0.186042,0.505774,0.0189019,0.194744,0.192239,0.328534,0.0762995,0.671555,0.813645,0.799292,0.853819,0.834165,0.291641,0.168312,0.760053,0.98409,0.356583,0.498291,0.177141,0.427981,0.632312,0.534852,0.917997,0.815774,0.801778,0.627449,0.34041,0.597551,0.666035,0.170024,0.186543,0.424212,0.374477,0.0827205,0.597626,0.897918,0.194998,0.457326,0.0376271,0.412542,0.520324,0.416659,0.359373,0.877627,0.0420641,0.771744,0.739513,0.215425,0.0707126,0.337035,0.7243,0.308525,0.0386214,0.776691,0.0593461,0.872768,0.303462,0.110102,0.855138,0.959431,0.169264,0.735499,0.446482,0.0446578,0.508631,0.862879,0.154538,0.783331,0.821719,0.110381,0.343333,0.722117,0.898203,0.205699,0.892037,0.605866,0.932593,0.405396,0.494354,0.922409,0.565947,0.821284,0.846656,0.256699,0.858732,0.171895,0.926381,0.623404,0.600916,0.0335208,0.606867,0.241464,0.0412465,0.704391,0.735089,0.559323,0.649077,0.509519,0.748512,0.34437,0.119307,0.767934,0.29537,0.685119,0.819419,0.457764,0.115797,0.715613,0.168778,0.92003,0.146276,0.650202,0.601641,0.733615,0.594238,0.950656,0.366389,0.682048,0.323803,0.994676,0.421929,0.316089,0.821676,0.0347419,0.103383,0.170903,0.0934294,0.401569,0.572906,0.503292,0.479027,0.143984,0.401821,0.374213,0.52685,0.557952,0.503442,0.154658,0.493808,0.393423,0.809984,0.897979,0.710361,0.236014,0.00924248,0.385615,0.120259,0.345152,0.475473,0.969485,0.987325,0.805961,0.281963,0.406351,0.921935,0.0192667,0.572247,0.138816,0.269212,0.361387,0.689092,0.162525,0.146792,0.723137,0.0225715,0.947856,0.601642,0.864399,0.924058,0.809762,0.274804,0.824297,0.185045,0.160319,0.105256,0.531908,0.785872,0.161636,0.623524,0.452469,0.705886,0.458031,0.885154,0.405638,0.438136,0.738976,0.287345,0.932957,0.134389,0.365061,0.945346,0.128962,0.450426,0.862099,0.301348,0.416171,0.703629,0.81402,0.992677,0.350396,0.160497,0.541566,0.766794,0.724057,0.82676,0.96109,0.622457,0.106293,0.071479,0.979195,0.928661,0.74562,0.789723,0.567736,0.685514,0.645529,0.956637,0.798538,0.116797,0.659404,0.0547988,0.618502,0.536152,0.508334,0.859503,0.124044,0.745178,0.708785,0.479087,0.444057,0.180512,0.0250549,0.862059,0.7483,0.477154,0.651436,0.467099,0.273779,0.0804569,0.635721,0.0849053,0.356667,0.750741,0.831608,0.40827,0.804941,0.676922,0.996849,0.334367,0.927493,0.286773,0.951948,0.561971,0.134393,0.0267574,0.967843,0.030679,0.792623,0.656332,0.00653607,0.675044,0.579212,0.150412,0.974184,0.56912,0.493058,0.554588,0.519406,0.360478,0.814419,0.248736,0.185999,0.684596,0.700001,0.834863,0.566258,0.930751,0.196908,0.384457,0.766545,0.384647,0.753376,0.813865,0.514463,0.516195,0.520162,0.338819,0.45721,0.687758,0.968126,0.018653,0.458313,0.260763,0.730352,0.626386,0.92907,0.790801,0.587514,0.236999,0.0260121,0.723472,0.802325,0.486607,0.459433,0.0300584,0.1297,0.791219,0.0322703,0.218849,0.861628,0.962303,0.991844,0.485551,0.239585,0.510052,0.130635,0.562161,0.517275,0.535542,0.148204,0.979553,0.689489,0.206339,0.907389,0.376144,0.0860813,0.91285,0.53604,0.539616,0.922087,0.0390665,0.86658,0.987136,0.733685,0.61451,0.709044,0.750056,0.643118,0.966559,0.368319,0.0348246,0.964798,0.597177,0.0851302,0.781919,0.0618263,0.46529,0.297885,0.801597,0.966462,0.792337,0.72828,0.0089705,0.586436,0.328701,0.174974,0.915623,0.559266,0.973958,0.805739,0.423256,0.794059,0.811098,0.612571,0.032774,0.510142,0.190875,0.570253,0.670411,0.651067,0.102305,0.875832,0.465913,0.475595,0.0947769,0.744208,0.00855368,0.185941,0.29904,0.643597,0.809095,0.684304,0.470867,0.839223,0.430391,0.533377,0.994689,0.948585,0.294103,0.591581,0.877819,0.0276651,0.377003,0.307249,0.861866,0.627813,0.996472,0.129533,0.210362,0.162944,0.130695,0.329722,0.98459,0.264753,0.157499,0.355357,0.698096,0.180001,0.585881,0.525967,0.614103,0.229525,0.877285,0.00790155,0.148126,0.893713,0.207808,0.477001,0.24421,0.997095,0.72695,0.651621,0.173679,0.41031,0.187937,0.524769,0.962229,0.667013,0.698364,0.100042,0.867764,0.531495,0.532885,0.0246102,0.435369,0.480016,0.748218,0.373541,0.278058,0.431304,0.862941,0.110803,0.421072,0.882542,0.647969,0.622059,0.0076713,0.287446,0.547048,0.864381,0.138512,0.421086,0.429813,0.475917,0.877877,0.130554,0.123732,0.190495,0.29051,0.253533,0.837567,0.379162,0.717233,0.631543,0.302214,0.601565,0.430709,0.739073,0.493413,0.380804,0.386942,0.916004,0.625065,0.0904586,0.99018,0.578811,0.934931,0.31946,0.765411,0.8743,0.855539,0.375429,0.927453,0.119148,0.696553,0.937791,0.891039,0.591114,0.353865,0.912546,0.533807,0.808287,0.0717447,0.922506,0.20438,0.942161,0.422502,0.517774,0.933469,0.216352,0.728817,0.238281,0.323981,0.926993,0.620102,0.825254,0.778041,0.778427,0.583505,0.511292,0.673158,0.742741,0.654042,0.00766724,0.035676,0.545885,0.798556,0.439521,0.957266,0.129196,0.225782,0.293407,0.133663,0.663516,0.0457317,0.643308,0.416329,0.863914,0.814878,0.252636,0.508356,0.591285,0.879714,0.114928,0.311198,0.733339,0.773622,0.182491,0.812174,0.94518,0.0739008,0.702554,0.436291,0.534782,0.000525415,0.695888,0.800188,0.664201,0.78531,0.716739,0.045729,0.902512,0.671456,0.553305,0.52486,0.960157,0.958634,0.923667,0.434749,0.142221,0.452253,0.100543,0.0723838,0.230051,0.568054,0.395953,0.718087,0.136646,0.613683,0.303831,0.642148,0.949833,0.168535,0.889285,0.479279,0.897173,0.23083,0.847545,0.235537,0.248047,0.402451,0.846211,0.946948,0.813155,0.480697,0.862433,0.529211,0.32075,0.728423,0.106974,0.512299,0.817028,0.665201,0.447506,0.950205,0.1774,0.356151,0.828018,0.436823,0.215395,0.589074,0.21989,0.944821,0.68422,0.671072,0.570071,0.645388,0.812524,0.809726,0.886393,0.570023,0.0428522,0.94735,0.658948,0.155581,0.192963,0.422668,0.859256,0.0705442,0.488258,0.013592,0.922754,0.00345618,0.603793,0.0670897,0.571246,0.840747,0.053001,0.0781447,0.254739,0.512119,0.976999,0.184498,0.351384,0.261854,0.939796,0.560743,0.974108,0.776995,0.766973,0.0741649,0.163934,0.164639,0.197639,0.150177,0.76178,0.334229,0.0585571,0.63394,0.266261,0.247309,0.616204,0.141573,0.221937,0.939405,0.0439838,0.864259,0.781944,0.948793,0.360239,0.350604,0.888753,0.260194,0.665697,0.607233,0.667865,0.741995,0.853541,0.885672,0.0207394,0.0391542,0.615961,0.886458,0.491345,0.170255,0.293104,0.213475,0.158354,0.649963,0.656109,0.791003,0.520527,0.343433,0.564415,0.350376,0.586099,0.123574,0.697713,0.276315,0.882391,0.00159049,0.0623077,0.601191,0.114732,0.20294,0.78883,0.457168,0.855488,0.774691,0.336178,0.736086,0.939701,0.318721,0.144261,0.0327846,0.703105,0.689713,0.560118,0.996551,0.75337,0.707611,0.255695,0.00630462,0.0455856,0.487858,0.512915,0.0334238,0.144345,0.766616,0.536248,0.996608,0.307192,0.00808465,0.385519,0.622657,0.506152,0.718287,0.58555,0.926702,0.972866,0.772293,0.321477,0.422591,0.758817,0.508063,0.384726,0.800228,0.475304,0.186177,0.937917,0.502069,0.762662,0.341989,0.0966135,0.362847,0.956573,0.997942,0.398069,0.171642,0.346159,0.237623,0.608097,0.837579,0.724154,0.128294,0.60526,0.0676419,0.711892,0.559121,0.0619836,0.111929,0.452017,0.964289,0.482093,0.504942,0.815027,0.558906,0.301158,0.813076,0.729611,0.912014,0.592645,0.0596316,0.561257,0.325354,0.625799,0.571474,0.640921,0.728661,0.330617,0.777917,0.681513,0.0733399,0.682446,0.709238,0.732496,0.249831,0.23325,0.0893873,0.788691,0.421086,0.0243441,0.0475226,0.328279,0.800284,0.717237,0.612992,0.789253,0.603381,0.514008,0.103464,0.700949,0.561744,0.383422,0.821992,0.0340739,0.763347,0.743006,0.408799,0.462233,0.0969595,0.303321,0.915366,0.43827,0.413851,0.751696,0.334458,0.124771,0.3272,0.0205531,0.118056,0.634143,0.759178,0.838174,0.36169,0.800851,0.957636,0.679609,0.23312,0.146447,0.854863,0.849092,0.180881,0.587294,0.343058,0.486409,0.813547,0.640225,0.815466,0.685421,0.594651,0.239631,0.676526,0.800286,0.0197568,0.241339,0.985287,0.432502,0.980215,0.595662,0.348469,0.920439,0.145735,0.524297,0.644674,0.68564,0.4409,0.412858,0.630374,0.715444,0.392974,0.586765,0.799393,0.875384,0.155028,0.55279,0.5364,0.467104,0.599406,0.900465,0.645452,0.995881,0.880868,0.677959,0.482599,0.971668,0.460334,0.195801,0.282816,0.574962,0.15127,0.797238,0.908056,0.216018,0.61709,0.144094,0.966834,0.0531468,0.0839442,0.954648,0.336418,0.283112,0.337124,0.999494,0.927114,0.842037,0.459873,0.234044,0.706159,0.535913,0.315459,0.00449961,0.147168,0.493977,0.105862,0.959411,0.477423,0.555785,0.296147,0.412848,0.451742,0.694573,0.994281,0.347244,0.590117,0.708165,0.935454,0.419814,0.614548,0.211048,0.675596,0.981749,0.430608,0.703822,0.0875934,0.417157,0.766237,0.515879,0.348241,0.273962,0.549379,0.884423,0.227791,0.787462,0.828155,0.259745,0.516086,0.150758,0.839949,0.807668,0.453157,0.0754605,0.834833,0.8772,0.504064,0.256343,0.765391,0.64613,0.399411,0.0878628,0.465922,0.0173397,0.957791,0.274778,0.650199,0.277767,0.542625,0.959503,0.69745,0.0140485,0.0416597,0.891304,0.572628,0.243287,0.389877,0.925221,0.634211,0.661018,0.0920774,0.123434,0.802129,0.632519,0.739692,0.243252,0.916441,0.90875,0.556796,0.726695,0.168032,0.309756,0.43814,0.478838,0.889954,0.28433,0.958454,0.882287,0.20699,0.634514,0.595106,|0.498654,0.427461,0.696063,0.288669,0.983265,0.345616,0.68289,0.0402281,0.730521,0.584851,0.618451,0.140841,0.0136273,0.115749,0.287726,0.188604,0.844675,0.779896,0.424155,0.386923,0.553304,0.219736,0.893622,0.254706,0.982863,0.242994,0.508727,0.677068,0.870159,0.922902,0.722977,0.58078,0.900965,0.81499,0.226988,0.622452,0.925956,0.682605,0.601961,0.0149552,0.667806,0.141399,0.0403656,0.580782,0.244822,0.98686,0.532852,0.713507,0.423537,0.867817,0.387694,0.016819,0.309807,0.878134,0.781667,0.0992079,0.0844392,0.150343,0.399499,0.199217,0.0433877,0.0267304,0.999522,0.394521,0.350776,0.170006,0.0742698,0.362584,0.711537,0.0779073,0.943564,0.745625,0.419779,0.130579,0.0210424,0.427903,0.790913,0.017538,0.797168,0.564798,0.331245,0.0867567,0.026211,0.582107,0.212029,0.126993,0.833165,0.630313,0.118524,0.962806,0.829485,0.439756,0.873161,0.116654,0.455253,0.657665,0.701554,0.184008,0.114035,0.358849,0.133942,0.756377,0.234573,0.961024,0.242247,0.507083,0.645101,0.416097,0.438801,0.777446,0.949005,0.756534,0.302045,0.750761,0.591573,0.154709,0.704391,0.603166,0.285223,0.588899,0.218637,0.383868,0.528263,0.966772,0.979367,0.140606,0.557808,0.148803,0.921597,0.703828,0.290707,0.136332,0.784947,0.58823,0.290742,0.790342,0.831178,0.216829,0.186994,0.307829,0.133245,0.683752,0.806526,0.205084,0.296021,0.711828,0.919479,0.874523,0.711879,0.206559,0.613939,0.255562,0.74474,0.0869641,0.801064,0.52806,0.0603292,0.863141,0.542455,0.226638,0.849036,0.733643,0.731672,0.400762,0.753889,0.977896,0.0939014,0.813784,0.390169,0.349778,0.468772,0.925467,0.231286,0.835086,0.574379,0.222039,0.21043,0.165589,0.656557,0.30248,0.139489,0.470141,0.244104,0.282341,0.0191585,0.917635,0.705598,0.502231,0.877922,0.127831,0.196774,0.718094,0.695901,0.282407,0.81328,0.278229,0.311158,0.354419,0.997053,0.83466,0.659259,0.16423,0.948445,0.686229,0.0442886,0.957938,0.62005,0.798718,0.770823,0.800805,0.932939,0.750998,0.0551419,0.543181,0.750455,0.466261,0.95172,0.563902,0.302326,0.817796,0.417691,0.735071,0.775322,0.861386,0.138817,0.561628,0.331568,0.469198,0.306415,0.383574,0.524601,0.961056,0.783835,0.0876586,0.468526,0.581345,0.339273,0.897495,0.0880231,0.117432,0.0110041,0.582782,0.0451062,0.00554329,0.589165,0.188665,0.1909,0.0413089,0.387164,0.276615,0.0290617,0.846288,0.64445,0.861556,0.0144123,0.405547,0.906285,0.358421,0.388423,0.62992,0.731718,0.45478,0.261881,0.615521,0.049764,0.297213,0.667969,0.624251,0.604612,0.201293,0.582665,0.633389,0.576303,0.550626,0.893447,0.400683,0.495446,0.120764,0.556884,0.131152,0.774809,0.266148,0.362615,0.781677,0.734399,0.661143,0.247409,0.365209,0.450084,0.304186,0.382924,0.382573,0.0560758,0.763746,0.166672,0.898523,0.568027,0.0623261,0.385889,0.78886,0.17962,0.326285,0.228335,0.271348,0.749585,0.259045,0.816045,0.181617,0.65823,0.235615,0.991376,0.974314,0.403033,0.741252,0.980473,0.760426,0.0652279,0.702734,0.489834,0.670416,0.373716,0.209839,0.113081,0.950778,0.855004,0.181218,0.00111181,0.487389,0.774935,0.32894,0.722363,0.751627,0.148221,0.78301,0.188057,0.593978,0.80124,0.499996,0.532651,0.402694,0.436991,0.517764,0.615687,0.215358,0.391129,0.612494,0.863335,0.402901,0.571912,0.515301,0.179482,0.915722,0.236664,0.810075,0.854218,0.158803,0.260667,0.0278977,0.274076,0.2134,0.815396,0.748768,0.509852,0.264944,0.177923,0.292028,0.341809,0.269,0.424642,0.76885,0.871016,0.151014,0.368542,0.308898,0.147951,0.106207,0.299508,0.414335,0.88889,0.922237,0.451471,0.211996,0.104159,0.187265,0.820368,0.262082,0.633258,0.0918662,0.387516,0.536275,0.0282667,0.592997,0.143823,0.56796,0.875421,0.385394,0.931536,0.117101,0.0624276,0.00190794,0.365202,0.211785,0.580469,0.12619,0.61885,0.690086,0.0278863,0.937834,0.733835,0.846935,0.369448,0.512602,0.811346,0.204391,0.114057,0.753708,0.945219,0.81428,0.822863,0.404358,0.78588,0.204685,0.948573,0.971194,0.0900692,0.421542,0.303243,0.859103,0.571103,0.39888,0.646693,0.0964572,0.215699,0.141971,0.929556,0.880175,0.68889,0.747097,0.836769,0.79868,0.578727,0.831854,0.781565,0.116244,0.545106,0.878101,0.720033,0.0427806,0.253246,0.531502,0.777555,0.682366,0.190994,0.901021,0.968808,0.236484,0.827643,0.861121,0.879851,0.48435,0.840106,0.942178,0.165809,0.921921,0.430029,0.553441,0.776072,0.595532,0.40883,0.890204,0.310239,0.256361,0.514508,0.759367,0.450384,0.750178,0.104208,0.0830592,0.0580509,0.799613,0.654443,0.984978,0.551131,0.0898578,0.354743,0.337579,0.949669,0.209771,0.955916,0.844046,0.101878,0.154278,0.121055,0.969162,0.874685,0.904397,0.897149,0.317788,0.728192,0.712223,0.341452,0.436628,0.295938,0.362231,0.671918,0.19912,0.917248,0.320023,0.0770139,0.40111,0.0746968,0.311771,0.918091,0.117496,0.778156,0.416434,0.0736437,0.910029,0.831741,0.0191327,0.246638,0.109309,0.394409,0.670739,0.300884,0.0922479,0.779835,0.89487,0.891728,0.246932,0.591837,0.444079,0.906867,0.644093,0.178211,0.0837933,0.173779,0.88135,0.829229,0.462575,0.230076,0.583982,0.297052,0.295327,0.567568,0.416077,0.155379,0.803627,0.362063,0.151967,0.163367,0.944045,0.250566,0.655367,0.0381785,0.610204,0.3685,0.139881,0.381866,0.388831,0.253378,0.836406,0.807819,0.458285,0.0366858,0.746863,0.420389,0.149217,0.873204,0.89894,0.0281043,0.73229,0.597748,0.0321945,0.879243,0.338274,0.44806,0.918611,0.22971,0.58256,0.29732,0.401056,0.576692,0.919465,0.420153,0.530097,0.602383,0.646618,0.926866,0.822176,0.179273,0.738844,0.720048,0.346518,0.347529,0.974047,0.163397,0.719743,0.738121,0.107548,0.221614,0.151734,0.297109,0.224186,0.984797,0.893652,0.00724566,0.0300805,0.711982,0.95665,0.784947,0.369517,0.644422,0.450066,0.199919,0.849666,0.264496,0.465328,0.686386,0.550131,0.549845,0.727479,0.975944,0.315842,0.0718615,0.925092,0.567326,0.586948,0.362833,0.380369,0.106134,0.39818,0.25031,0.956452,0.37971,0.752562,0.415904,0.500135,0.059052,0.0112837,0.688851,0.937721,0.0235984,0.630979,0.456082,0.163675,0.0236332,0.957123,0.636541,0.347633,0.850233,0.263956,0.695,0.201854,0.118465,0.892163,0.541452,0.12009,0.728872,0.060892,0.567291,0.19898,0.818777,0.880074,0.964661,0.735009,0.135547,0.0590653,0.911758,0.939196,0.722053,0.538003,0.193929,0.572102,0.781731,0.666398,0.294514,0.781375,0.526298,0.0648151,0.039468,0.198514,0.578465,0.791672,0.16227,0.557029,0.100876,0.678551,0.133168,0.0224441,0.650847,0.473819,0.0564136,0.495781,0.999953,0.316298,0.30812,0.33527,0.107551,0.618524,0.883358,0.203084,0.919919,0.0822367,0.439406,0.913751,0.647404,0.64804,0.495591,0.547326,0.0268329,0.54882,0.636661,0.475055,0.0819145,0.3058,0.700148,0.481695,0.737305,0.625391,0.708682,0.47318,0.563429,0.55541,0.589748,0.585745,0.262031,0.00250512,0.107452,0.0506634,0.944196,0.90242,0.377796,0.325854,0.43039,0.261297,0.295869,0.849348,0.716706,0.524566,0.146732,0.00650483,0.15748,0.691377,0.482786,0.962423,0.873909,0.441465,0.873802,0.0752846,0.75917,0.0643917,0.815458,0.723786,0.153021,0.539198,0.812848,0.504693,0.0495318,0.285217,0.239487,0.791975,0.376919,0.332379,0.758142,0.250658,0.183914,0.123598,0.923143,0.797083,0.00139326,0.400895,0.65949,0.237681,0.0538997,0.697709,0.0865039,0.483058,0.97435,0.430119,0.173862,0.814213,0.425943,0.263284,0.841231,0.0688552,0.598725,0.172413,0.0970998,0.972321,0.622544,0.251949,0.552917,0.698825,0.44046,0.269826,0.190091,0.133652,0.210446,0.344283,0.508023,0.325913,0.798495,0.0486718,0.715736,0.700467,0.891806,0.150643,0.508284,0.844391,0.894705,0.542258,0.836406,0.0758785,0.637073,0.764244,0.326637,0.980771,0.530828,0.999806,0.454211,0.340037,0.254846,0.894204,0.450423,0.950986,0.0363854,0.636206,0.826923,0.092553,0.81866,0.079192,0.0658678,0.483196,0.937131,0.903112,0.152176,0.232842,0.354298,0.0724814,0.388649,0.973453,0.638845,0.164161,0.218001,0.406329,0.494022,0.458661,0.59602,0.400761,0.611651,0.608983,0.676378,0.0350371,0.351532,0.842422,0.218173,0.610749,0.65454,0.185205,0.0545394,0.557452,0.710015,0.056394,0.479075,0.943069,0.381128,0.450167,0.919605,0.114412,0.99672,0.755505,0.412844,0.330303,0.217748,0.338117,0.112932,0.445049,0.0262134,0.921457,0.834803,0.125443,0.184029,0.736502,0.352498,0.349617,0.895416,0.961452,0.145315,0.483846,0.673808,0.69996,0.402342,0.505664,0.488122,0.880218,0.215265,0.613956,0.22684,0.927768,0.051484,0.236057,0.0640982,0.015202,0.998824,0.826775,0.189286,0.50402,0.281547,0.603818,0.968934,0.815718,0.00687695,0.295068,0.442903,0.933131,0.166675,0.00306875,0.466105,0.924587,0.102051,0.35227,0.0323436,0.602487,0.983276,0.826568,0.222864,0.20469,0.565996,0.874405,0.299836,0.100925,0.703658,0.347064,0.457202,0.420088,0.621557,0.034094,0.422351,0.506859,0.729532,0.64407,0.429732,0.0461549,0.600516,0.52412,0.979202,0.976373,0.535954,0.34575,0.475815,0.189493,0.112985,0.16635,0.383722,0.489087,0.522298,0.447455,0.628549,0.182764,0.168105,0.793009,0.667078,0.623639,0.0619964,0.714543,0.660473,0.867821,0.0199609,0.531251,0.429312,0.925813,0.297646,0.690354,0.0797656,0.374673,0.129519,0.947147,0.588357,0.74233,0.738003,0.13331,0.113331,0.579372,0.725136,0.282815,0.257355,0.727477,0.726541,0.318706,0.359181,0.432669,0.871148,0.0406719,0.790383,0.547106,0.503768,0.460278,0.612366,0.380893,|0.0112144,0.267662,0.0516458,0.375994,0.105513,0.934167,0.644075,0.155187,0.678615,0.65037,0.72566,0.112721,0.561319,0.370394,0.688842,0.0240635,0.00166255,0.870648,0.888061,0.302011,0.167106,0.956578,0.545758,0.883655,0.117105,0.0367873,0.17812,0.0949049,0.316526,0.613848,0.260653,0.618794,0.488537,0.660725,0.693441,0.766722,0.902138,0.960907,0.42861,0.7403,0.26604,0.160126,0.652671,0.627408,0.995681,0.0663729,0.419962,0.463291,0.16646,0.482802,0.180052,0.0958,0.544261,0.767154,0.782095,0.998402,0.392584,0.673437,0.353149,0.0904387,0.985707,0.762903,0.859916,0.690888,0.559708,0.123145,0.561596,0.0265138,0.899006,0.637048,0.718395,0.752245,0.699583,0.775645,0.791708,0.794661,0.351719,0.721155,0.0701954,0.364343,0.828147,0.373558,0.688152,0.584887,0.964558,0.885902,0.605198,0.650906,0.399938,0.523647,0.973955,0.686107,0.256606,0.806071,0.980956,0.360265,0.152843,0.0163447,0.114625,0.970029,0.304604,0.635147,0.730815,0.385928,0.56224,0.994064,0.464651,0.923726,0.907958,0.408645,0.659807,0.876175,0.481646,0.419938,0.372753,0.883742,0.0755981,0.129719,0.825649,0.462273,0.55543,0.179873,0.861586,0.616336,0.879973,0.606571,0.874133,0.164061,0.523924,0.0693762,0.0205949,0.440862,0.15701,0.202344,0.897306,0.923254,0.78732,0.290115,0.812344,0.609951,0.968068,0.646675,0.85908,0.591422,0.35839,0.686514,0.196799,0.739738,0.636077,0.99482,0.400511,0.141301,0.233849,0.89431,0.0413899,0.452716,0.502757,0.30521,0.708268,0.0456583,0.82608,0.502405,0.468678,0.523221,0.34371,0.649288,0.353656,0.238046,0.339063,0.257325,0.378319,0.89064,0.867611,0.461383,0.211714,0.690472,0.73705,0.0261309,0.311743,0.726528,0.305218,0.443208,0.268609,0.190014,0.726621,0.362918,0.3833,0.88995,0.111408,0.512028,0.829039,0.664245,0.88124,0.267235,0.00159842,0.477704,0.767394,0.160391,0.00201213,0.296466,0.616445,0.935336,0.0444423,0.824805,0.683146,0.93437,0.600418,0.895083,0.0723388,0.60121,0.106707,0.097863,0.755825,0.204165,0.812886,0.925083,0.728455,0.429962,0.0897318,0.552495,0.338779,0.508741,0.544954,0.676548,0.81994,0.219692,0.175998,0.201845,0.797958,0.255639,0.610272,0.384882,0.06822,0.467466,0.792461,0.0498526,0.00796264,0.207913,0.659281,0.928951,0.206254,0.0514553,0.590347,0.0802978,0.845199,0.484429,0.485599,0.811222,0.547883,0.24574,0.996632,0.704409,0.361705,0.089453,0.605751,0.20144,0.432253,0.835635,0.325811,0.754076,0.750322,0.964685,0.0186927,0.871655,0.678859,0.277574,0.784004,0.973492,0.713586,0.459976,0.72882,0.282012,0.649382,0.159752,0.580656,0.228659,0.410943,0.879915,0.980133,0.0566652,0.678027,0.465155,0.51538,0.111633,0.999382,0.700957,0.565522,0.16291,0.856081,0.883734,0.919641,0.811853,0.433188,0.633243,0.373102,0.0504121,0.379338,0.625375,0.841604,0.348723,0.567212,0.997053,0.740045,0.922159,0.889372,0.691854,0.845717,0.80572,0.439464,0.148343,0.760548,0.574284,0.0991503,0.291388,0.773605,0.501062,0.714936,0.736447,0.594281,0.356259,0.642319,0.136953,0.91453,0.603289,0.728856,0.907725,0.0334585,0.124737,0.692336,0.30342,0.202442,0.742866,0.478212,0.554121,0.40093,0.47805,0.354154,0.757607,0.18015,0.582765,0.0300976,0.243541,0.172626,0.672018,0.951547,0.805223,0.999744,0.479281,0.69074,0.111303,0.241072,0.914488,0.0997791,0.580006,0.292373,0.124471,0.0663202,0.962003,0.770979,0.691619,0.72743,0.443181,0.428785,0.579485,0.881254,0.23157,0.646918,0.55125,0.480308,0.168063,0.28739,0.586322,0.829823,0.989714,0.956773,0.184822,0.105397,0.875395,0.312073,0.688795,0.268594,0.676346,0.134887,0.183722,0.544385,0.0363014,0.188948,0.688072,0.704823,0.982276,0.995526,0.83573,0.397092,0.471163,0.536364,0.0553411,0.95344,0.526983,0.131414,0.320314,0.531532,0.407589,0.873331,0.811406,0.714324,0.267273,0.199244,0.362332,0.840917,0.0662763,0.55704,0.336201,0.903811,0.540081,0.0814322,0.541533,0.640468,0.592047,0.504137,0.755049,0.780986,0.77699,0.500816,0.978999,0.401684,0.533344,0.120535,0.247483,0.81672,0.275108,0.592772,0.573535,0.989335,0.734647,0.185809,0.0322888,0.795524,0.572631,0.729191,0.808053,0.789521,0.188581,0.817096,0.503006,0.272221,0.163499,0.683156,0.735747,0.966604,0.753607,0.0664203,0.200706,0.116614,0.0795881,0.194974,0.0253139,0.531738,0.00437087,0.673239,0.591316,0.62914,0.772543,0.788568,0.453066,0.240382,0.500302,0.583085,0.579454,0.946681,0.0479799,0.513408,0.963903,0.656959,0.89451,0.964052,0.908737,0.363394,0.0261074,0.13594,0.796258,0.414948,0.960259,0.804561,0.484984,0.508891,0.31069,0.928508,0.5302,0.47926,0.933455,0.382831,0.443205,0.381317,0.52622,0.539028,0.69366,0.145662,0.909556,0.666756,0.350569,0.750034,0.702723,0.950459,0.778467,0.136217,0.319282,0.519876,0.35855,0.48707,0.165607,0.584732,0.660424,0.474791,0.0846875,0.230309,0.335203,0.82977,0.239179,0.194578,0.625557,0.301497,0.340716,0.743087,0.137109,0.775186,0.646524,0.00175864,0.123207,0.0861413,0.453452,0.437586,0.358961,0.0715901,0.649863,0.135518,0.798623,0.816889,0.344485,0.234281,0.131615,0.44135,0.237841,0.709831,0.502749,0.431271,0.593445,0.384127,0.514613,0.409741,0.836225,0.478923,0.109866,0.790345,0.302229,0.324474,0.696253,0.933945,0.149551,0.740538,0.344241,0.263371,0.68156,0.903625,0.682686,0.116065,0.320315,0.542242,0.00949109,0.0168353,0.526179,0.346426,0.793032,0.321063,0.876743,0.293519,0.869516,0.341305,0.0236548,0.416886,0.611174,0.813702,0.539847,0.364859,0.435488,0.120962,0.737266,0.863393,0.0958444,0.127571,0.325985,0.583092,0.729464,0.416844,0.311199,0.68128,0.710712,0.561474,0.375803,0.103284,0.118365,0.0555819,0.476491,0.167397,0.439619,0.41556,0.720962,0.864323,0.794732,0.0282327,0.840052,0.429636,0.0888779,0.46163,0.487383,0.127508,0.457037,0.475232,0.996227,0.548994,0.478789,0.271553,0.282977,0.82787,0.876623,0.457128,0.412333,0.115368,0.945842,0.482154,0.879155,0.5518,0.340438,0.477142,0.0898803,0.643601,0.221659,0.246235,0.260247,0.346507,0.208046,0.791344,0.809865,0.795086,0.595874,0.276719,0.784543,0.648662,0.945055,0.434626,0.202025,0.932876,0.509129,0.758085,0.354825,0.114497,0.93896,0.802541,0.502592,0.654151,0.70904,0.172523,0.409309,0.00776953,0.128345,0.510567,0.649721,0.751571,0.865981,0.625329,0.178544,0.476621,0.258307,0.828409,0.142104,0.859203,0.310172,0.0218953,0.378745,0.373917,0.957336,0.0688123,0.828739,0.274764,0.451054,0.443715,0.125313,0.192408,0.0632821,0.250815,0.00425416,0.532354,0.155124,0.975385,0.814857,0.394494,0.572545,0.264933,0.250859,0.519033,0.972715,0.937993,0.0501421,0.708826,0.730799,0.82948,0.504523,0.414347,0.654112,0.155335,0.828603,0.678252,0.577405,0.169937,0.754494,0.190308,0.117253,0.712253,0.980674,0.369055,0.434303,0.308692,0.248883,0.00492799,0.742002,0.207361,0.497111,0.916408,0.486741,0.654864,0.865721,0.341764,0.217957,0.846554,0.493972,0.826626,0.968501,0.79042,0.565389,0.596346,0.395995,0.844098,0.457333,0.475897,0.112039,0.855276,0.352923,0.0169892,0.0638338,0.711126,0.23777,0.496237,0.121614,0.845077,0.594117,0.411402,0.0986654,0.252296,0.861605,0.709882,0.647308,0.127626,0.292917,0.910447,0.856824,0.10648,0.428355,0.806646,0.97324,0.503484,0.747926,0.986381,0.682253,0.354385,0.0160035,0.424792,0.815921,0.339788,0.531968,0.150133,0.0556656,0.0149945,0.087947,0.72162,0.819689,0.673235,0.534658,0.0640131,0.48185,0.366175,0.504465,0.0606143,0.815352,0.217716,0.783385,0.16269,0.495398,0.832159,0.80052,0.572134,0.307611,0.380594,0.00221765,0.471132,0.9976,0.562463,0.146818,0.0341232,0.67901,0.93782,0.398531,0.138075,0.540693,0.833653,0.925696,0.54778,0.0904877,0.222907,0.373804,0.850402,0.60099,0.445603,0.422147,0.594716,0.258825,0.523585,0.136019,0.980245,0.961975,0.798482,0.584789,0.851421,0.0525128,0.663197,0.986412,0.531149,0.392294,0.090542,0.34864,0.225053,0.897082,0.667607,0.908988,0.602305,0.824271,0.0996754,0.804484,0.107468,0.456149,0.194993,0.97884,0.295789,0.543653,0.0624484,0.169981,0.67502,0.275962,0.90429,0.851954,0.703896,0.770331,0.565285,0.805178,0.463076,0.965966,0.129189,0.552891,0.336643,0.735864,0.457044,0.437656,0.922718,0.869929,0.979737,0.829932,0.791667,0.260473,0.488944,0.779544,0.817371,0.726419,0.455125,0.55867,0.271276,0.919405,0.168515,0.509072,0.541651,0.844849,0.298513,0.30314,0.895573,0.809755,0.197194,0.60161,0.791959,0.873845,0.440361,0.678543,0.26084,0.63078,0.0703135,0.953383,0.572612,0.32088,0.569525,0.551498,0.957996,0.999334,0.37679,0.409274,0.91234,0.122712,0.956489,0.0349238,0.433225,0.185069,0.40432,0.553764,0.305152,0.164256,0.623,0.580312,0.615796,0.710718,0.109839,0.286103,0.884548,0.913207,0.280577,0.925657,0.434199,0.0655722,0.702652,0.695,0.536371,0.772282,0.378776,0.317661,0.218728,0.415289,0.0279157,0.54349,0.384163,0.528901,0.48175,0.126055,0.426408,0.919044,0.310822,0.117066,0.097293,0.602562,0.435557,0.510418,0.979821,0.863593,0.728664,0.657323,0.751609,0.232488,0.459439,0.666515,0.537777,0.419552,0.471874,0.253124,0.0483148,0.471237,0.297703,0.847053,0.969139,0.281438,0.733767,0.121448,0.55286,0.743913,0.219938,0.192376,0.794882,0.277132,0.275791,0.308716,0.025958,0.869177,0.740817,0.848826,0.630926,0.0893499,0.832661,0.572627,0.0775765,0.096531,0.552052,0.888239,0.379769,0.960668,0.293815,0.481646,0.240695,0.0969596,|0.683077,0.331798,0.572321,0.795227,0.336884,0.165808,0.549892,0.300433,0.970234,0.850198,0.184813,0.181522,0.716027,0.545768,0.681103,0.52685,0.218052,0.395162,0.258493,0.393534,0.45681,0.172881,0.890733,0.99922,0.0908669,0.248651,0.915519,0.836176,0.0391074,0.0745552,0.226449,0.541863,0.842366,0.201125,0.0690313,0.290531,0.494172,0.816281,0.81219,0.712426,0.438066,0.473793,0.3522,0.430738,0.951108,0.694648,0.429712,0.154266,0.790057,0.192573,0.35488,0.648891,0.890251,0.343601,0.647432,0.349268,0.872634,0.785673,0.221013,0.725821,0.505781,0.52785,0.980273,0.899099,0.318528,0.184462,0.307506,0.918789,0.189358,0.858819,0.918715,0.952363,0.317857,0.0236213,0.478305,0.695429,0.608641,0.20079,0.293484,0.555363,0.752586,0.178055,0.396456,0.62475,0.357365,0.996827,0.805597,0.677289,0.247556,0.273639,0.172559,0.894902,0.276338,0.932668,0.862753,0.099179,0.783445,0.560422,0.152099,0.883375,0.845668,0.381159,0.120683,0.0805352,0.680763,0.401719,0.0492222,0.393754,0.767315,0.085564,0.0620417,0.583197,0.208464,0.99451,0.889962,0.177847,0.496692,0.689776,0.862516,0.554859,0.824858,0.839291,0.152124,0.790727,0.383731,0.0651282,0.637866,0.662304,0.35557,0.481981,0.507902,0.592027,0.211712,0.526168,0.956622,0.538629,0.890944,0.175665,0.163489,0.382327,0.402174,0.122102,0.484556,0.330545,0.350219,0.702712,0.549077,0.419167,0.88854,0.896049,0.903788,0.595381,0.358494,0.0411164,0.947709,0.786427,0.452987,0.449454,0.0121135,0.420514,0.113323,0.0201296,0.535159,0.716709,0.766659,0.933519,0.305429,0.987916,0.0534115,0.710225,0.362018,0.118064,0.241421,0.135852,0.398663,0.591955,0.486677,0.438926,0.933185,0.9922,0.923118,0.679074,0.170377,0.176405,0.152744,0.275167,0.915516,0.0474172,0.564069,0.208709,0.344606,0.945675,0.0830003,0.545572,0.132034,0.897173,0.529111,0.590089,0.395565,0.634568,0.308683,0.946896,0.484714,0.971727,0.309907,0.247099,0.238174,0.182362,0.393469,0.288362,0.325331,0.0188584,0.587557,0.644476,0.210917,0.181987,0.815233,0.306289,0.391871,0.271849,0.238219,0.360216,0.0275046,0.834229,0.911328,0.825425,0.296543,0.867289,0.614244,0.144401,0.127867,0.470633,0.897052,0.842389,0.729825,0.236242,0.184314,0.989885,0.898967,0.125718,0.987449,0.21951,0.795284,0.64163,0.162971,0.807277,0.198977,0.366924,0.494283,0.496062,0.986735,0.907414,0.217936,0.0467708,0.0992948,0.489431,0.851961,0.905076,0.0105181,0.712917,0.179865,0.534701,0.0931324,0.301966,0.782815,0.502438,0.138504,0.760786,0.767396,0.203084,0.618133,0.482799,0.788432,0.762908,0.329368,0.450423,0.674926,0.584372,0.460083,0.325965,0.745938,0.14807,0.368491,0.638069,0.553905,0.475196,0.560927,0.509217,0.838948,0.132461,0.0119908,0.878004,0.463773,0.988023,0.728826,0.906817,0.958383,0.0299024,0.027603,0.831414,0.0480765,0.515874,0.508831,0.274515,0.603051,0.734505,0.360772,0.0532786,0.115381,0.929344,0.504098,0.345821,0.532959,0.0288131,0.0751939,0.614609,0.511784,0.975564,0.133974,0.611958,0.711083,0.916667,0.458981,0.129312,0.454226,0.917284,0.837378,0.776487,0.158201,0.361739,0.939659,0.809622,0.452961,0.469311,0.650397,0.602427,0.335708,0.0458832,0.876665,0.501358,0.890788,0.935674,0.432581,0.241507,0.0384541,0.669917,0.705304,0.490933,0.374665,0.577623,0.944322,0.106875,0.180899,0.631801,0.715242,0.135192,0.861953,0.927687,0.315911,0.483652,0.446709,0.260182,0.796044,0.269691,0.160813,0.315698,0.441405,0.152931,0.501352,0.00415111,0.913358,0.0938694,0.00434548,0.938814,0.338148,0.120452,0.798983,0.754286,0.886312,0.284212,0.314823,0.847969,0.936808,0.124065,0.164209,0.586442,0.395977,0.554363,0.946444,0.206477,0.21383,0.400897,0.474246,0.723542,0.314969,0.413779,0.322378,0.0532998,0.0353051,0.164947,0.916186,0.61621,0.70467,0.692706,0.315938,0.624606,0.880468,0.922365,0.556867,0.348405,0.256844,0.862116,0.680024,0.323905,0.793965,0.319493,0.830139,0.714624,0.280097,0.533385,0.392792,0.516268,0.625797,0.435099,0.993303,0.753339,0.0631559,0.843492,0.354827,0.458038,0.483123,0.524084,0.230835,0.739902,0.892498,0.462217,0.766294,0.619957,0.49367,0.0805344,0.710517,0.600338,0.673913,0.213096,0.58551,0.991514,0.925021,0.587969,0.126484,0.349245,0.28608,0.162999,0.782773,0.0526314,0.804412,0.322933,0.492561,0.201244,0.324754,0.733241,0.119664,0.459614,0.977693,0.242939,0.25925,0.984417,0.131326,0.935734,0.52722,0.464841,0.774452,0.306764,0.542811,0.75843,0.116424,0.585085,0.368476,0.626757,0.846379,0.378078,0.421651,0.0685981,0.0798917,0.00449705,0.203049,0.609642,0.64399,0.92491,0.751134,0.831132,0.949481,0.397355,0.957776,0.899183,0.0342738,0.664399,0.816129,0.807726,0.700039,0.193654,0.7578,0.136948,0.134122,0.459078,0.1439,0.784249,0.57404,0.592161,0.184433,0.920826,0.0665491,0.726073,0.0152406,0.594478,0.671702,0.914418,0.914949,0.515363,0.496764,0.460421,0.0432621,0.881541,0.887816,0.0976161,0.622359,0.0450608,0.379308,0.302317,0.594506,0.621937,0.579254,0.580619,0.63539,0.849493,0.382368,0.111337,0.187305,0.0766909,0.188219,0.608387,0.634524,0.595894,0.161381,0.798889,0.549628,0.0693514,0.219214,0.259253,0.94128,0.839063,0.0750957,0.86729,0.968884,0.322718,0.279508,0.345758,0.410227,0.388008,0.195696,0.841551,0.893555,0.783168,0.257627,0.457586,0.157595,0.586804,0.671976,0.595569,0.0540459,0.409641,0.710893,0.360842,0.378008,0.994146,0.98696,0.597779,0.738382,0.791184,0.783902,0.119215,0.670933,0.965519,0.224407,0.935765,0.767211,0.197876,0.885182,0.354772,0.147028,0.0852972,0.142323,0.680772,0.177577,0.478213,0.39785,0.558125,0.520746,0.125415,0.928876,0.77266,0.197693,0.949624,0.142231,0.723832,0.337451,0.930852,0.574239,0.20846,0.775454,0.845571,0.426703,0.981092,0.442488,0.309051,0.0975578,0.680796,0.467265,0.0414337,0.33897,0.309805,0.287556,0.316912,0.63257,0.457565,0.659085,0.558993,0.00486416,0.586991,0.243951,0.506067,0.593845,0.837654,0.243028,0.343749,0.368443,0.0338329,0.630322,0.84168,0.570496,0.988283,0.944063,0.866202,0.00661111,0.533009,0.829705,0.577172,0.619673,0.566569,0.898775,0.730781,0.0942472,0.0136624,0.917027,0.748945,0.641455,0.643858,0.853816,0.406428,0.300361,0.23817,0.254854,0.835241,0.87744,0.117286,0.940599,0.420788,0.540296,0.826617,0.366651,0.741541,0.944729,0.35155,0.694697,0.243569,0.466261,0.781009,0.985386,0.0206696,0.714463,0.0623062,0.480078,0.99168,0.239639,0.899509,0.881395,0.139757,0.0396172,0.728021,0.942565,0.472792,0.987226,0.648703,0.39199,0.995828,0.966039,0.593831,0.507308,0.196177,0.463923,0.683902,0.588305,0.855776,0.634534,0.249173,0.730509,0.99118,0.98734,0.0250189,0.682077,0.370945,0.83367,0.267824,0.123704,0.111902,0.776318,0.562862,0.626046,0.785705,0.836914,0.718497,0.984134,0.69697,0.623593,0.587738,0.193384,0.627085,0.448759,0.768048,0.290714,0.539771,0.356759,0.730172,0.793634,0.227571,0.563184,0.748045,0.0801688,0.0618166,0.295744,0.622542,0.748604,0.45826,0.362139,0.708774,0.997466,0.271479,0.221016,0.800951,0.880616,0.378581,0.505953,0.805897,0.790003,0.957114,0.34299,0.542232,0.285963,0.984098,0.910304,0.450416,0.650213,0.762381,0.377239,0.435358,0.1218,0.156632,0.0630064,0.52128,0.508483,0.0211949,0.786837,0.435775,0.890871,0.480162,0.100944,0.503312,0.167176,0.91195,0.691307,0.576116,0.587829,0.896964,0.576146,0.449924,0.317548,0.42313,0.53244,0.414943,0.981619,0.464377,0.521379,0.509517,0.254713,0.72497,0.00614387,0.351783,0.694614,0.404311,0.290923,0.770607,0.542335,0.172394,0.768166,0.396946,0.289677,0.661764,0.618716,0.242235,0.445105,0.474467,0.301344,0.560832,0.00801802,0.0153117,0.154934,0.156068,0.985636,0.712279,0.616075,0.657663,0.151567,0.787629,0.972193,0.607273,0.907212,0.844905,0.174802,0.361536,0.530145,0.568385,0.90797,0.144763,0.827567,0.0446571,0.769049,0.878597,0.591474,0.677505,0.680872,0.971443,0.750954,0.734015,0.553154,0.844875,0.780578,0.66816,0.453672,0.314433,0.0762076,0.955593,0.955087,0.790195,0.2654,0.0599587,0.869281,0.340961,0.0723129,0.778139,0.791337,0.667179,0.620644,0.745177,0.911168,0.456482,0.749564,0.0539748,0.0914975,0.756761,0.690153,0.641051,0.637645,0.548208,0.541345,0.346441,0.594859,0.358482,0.328599,0.0258579,0.124776,0.601615,0.644126,0.193537,0.206126,0.349201,0.0937346,0.324734,0.842435,0.3856,0.0636193,0.672067,0.947739,0.820719,0.24648,0.272064,0.780355,0.834109,0.545337,0.746884,0.498651,0.764842,0.979256,0.204406,0.608222,0.893212,0.743513,0.744769,0.00853896,0.255402,0.89511,0.679265,0.482756,0.698941,0.776657,0.616192,0.553741,0.369045,0.84935,0.432651,0.797967,0.639132,0.651242,0.608898,0.78597,0.746983,0.366619,0.848367,0.629257,0.384651,0.833364,0.0811302,0.64626,0.584587,0.0362629,0.777996,0.842265,0.538874,0.787628,0.597031,0.887429,0.325843,0.386721,0.390943,0.34093,0.211711,0.433495,0.579465,0.213774,0.622424,0.867092,0.0794351,0.754628,0.695882,0.605151,0.793479,0.5144,0.0224944,0.67713,0.286358,0.534309,0.177387,0.384475,0.309705,0.380549,0.12646,0.868057,0.999761,0.968227,0.547687,0.53099,0.637947,0.580728,0.0918713,0.0926718,0.0319479,0.961478,0.841878,0.189523,0.818667,0.98307,0.811507,0.258698,0.846751,0.561188,0.516819,0.438793,0.849259,0.0855445,0.883491,0.363155,0.0261185,0.0809291,0.0791367,0.0629893,0.247902,0.597516,0.616255,0.847827,0.503621,0.896033,0.259784,|0.188146,0.38619,0.374109,0.395492,0.0974032,0.248341,0.437688,0.689915,0.123529,0.942324,0.967392,0.281433,0.29274,0.695131,0.976301,0.302612,0.840597,0.0288408,0.999917,0.465449,0.633303,0.108612,0.645133,0.37054,0.24979,0.146885,0.509378,0.59621,0.451241,0.940954,0.442521,0.302317,0.577134,0.497329,0.24479,0.712381,0.658026,0.356069,0.453811,0.569259,0.130401,0.643839,0.265362,0.295074,0.447675,0.625154,0.446244,0.577709,0.525188,0.475344,0.337184,0.705829,0.93675,0.446652,0.259226,0.480918,0.938021,0.448651,0.0552577,0.609648,0.764988,0.933212,0.933176,0.670946,0.781093,0.85167,0.139321,0.765971,0.47991,0.0980815,0.473186,0.0888628,0.3942,0.162654,0.807191,0.916993,0.821636,0.246691,0.696608,0.294753,0.300101,0.286445,0.479185,0.167571,0.725881,0.455785,0.720814,0.0287794,0.631659,0.354678,0.53782,0.366557,0.311631,0.767995,0.478789,0.367142,0.574493,0.798751,0.510631,0.605246,0.705057,0.0297161,0.663168,0.0302899,0.990305,0.983677,0.399748,0.246239,0.731145,0.047517,0.698459,0.854474,0.599229,0.110463,0.205802,0.513662,0.0841672,0.94944,0.431608,0.851102,0.962477,0.660359,0.119958,0.919838,0.686435,0.868318,0.312794,0.702621,0.914931,0.460091,0.824007,0.34611,0.162763,0.444989,0.368889,0.980893,0.372684,0.537207,0.7704,0.458496,0.751382,0.979234,0.518514,0.976551,0.132623,0.78536,0.478389,0.716864,0.186256,0.621244,0.84721,0.529736,0.525695,0.440712,0.498442,0.431661,0.833191,0.152144,0.646275,0.454433,0.173763,0.0421587,0.0686375,0.39932,0.984865,0.570883,0.66824,0.710407,0.56895,0.660408,0.223575,0.770218,0.405811,0.584069,0.708529,0.0536509,0.632305,0.247675,0.216443,0.251706,0.561807,0.607308,0.793155,0.173503,0.385826,0.0146759,0.353454,0.700725,0.734537,0.444495,0.700385,0.539432,0.335933,0.930102,0.119231,0.400997,0.158994,0.459957,0.559876,0.9125,0.0664036,0.107006,0.909628,0.35166,0.658702,0.229803,0.292247,0.845607,0.557562,0.723584,0.106723,0.536105,0.611436,0.526209,0.671616,0.58122,0.785697,0.352,0.722517,0.733997,0.812776,0.12456,0.743219,0.429115,0.339468,0.254213,0.0744041,0.438442,0.431105,0.23481,0.0832771,0.787428,0.115286,0.508367,0.414562,0.864399,0.454425,0.807575,0.572091,0.14085,0.908051,0.234931,0.937627,0.967162,0.135213,0.536914,0.773007,0.255495,0.684832,0.020508,0.287734,0.468313,0.924158,0.507496,0.195075,0.47969,0.364154,0.811762,0.370378,0.650024,0.578387,0.713162,0.422863,0.589345,0.396678,0.414128,0.697567,0.355211,0.668324,0.077476,0.944824,0.826765,0.852616,0.687402,0.766876,0.434833,0.484012,0.550555,0.243315,0.811838,0.809674,0.0864882,0.941727,0.758992,0.128702,0.924706,0.302331,0.682835,0.696873,0.653545,0.710811,0.937307,0.997931,0.737203,0.200779,0.927057,0.869028,0.121751,0.741258,0.815084,0.612834,0.30961,0.858433,0.170075,0.0950126,0.970751,0.314755,0.696701,0.0826527,0.0419294,0.549088,0.50584,0.214575,0.333461,0.0711222,0.965023,0.218568,0.838693,0.755161,0.953794,0.960206,0.322421,0.0892269,0.0826439,0.820794,0.272888,0.771886,0.898928,0.875942,0.691697,0.563577,0.395202,0.00726533,0.529186,0.349586,0.241987,0.0269248,0.628787,0.507638,0.202498,0.110692,0.297368,0.349713,0.420341,0.21302,0.293332,0.244098,0.295481,0.132804,0.745163,0.984209,0.833439,0.0994756,0.150094,0.546961,0.451007,0.806723,0.108995,0.849411,0.989837,0.574598,0.078694,0.478546,0.716533,0.885971,0.421515,0.573304,0.0250731,0.350635,0.427523,0.684319,0.0978436,0.897648,0.502659,0.497831,0.630835,0.484285,0.335422,0.184166,0.951339,0.919368,0.214892,0.756058,0.726466,0.179901,0.98705,0.187225,0.225602,0.593858,0.419488,0.611098,0.733182,0.511028,0.660871,0.974906,0.384587,0.201516,0.26345,0.622908,0.521249,0.306776,0.0796287,0.31697,0.836924,0.426757,0.0528275,0.770002,0.847972,0.268121,0.52383,0.981602,0.475767,0.697552,0.779407,0.995557,0.594071,0.830814,0.289956,0.909918,0.126495,0.350508,0.4925,0.017675,0.0145297,0.419015,0.0969995,0.722545,0.456843,0.973533,0.969009,0.161568,0.687139,0.845407,0.566028,0.859859,0.578446,0.435268,0.827431,0.225259,0.423137,0.844718,0.224226,0.477112,0.436879,0.876038,0.527817,0.0224474,0.473542,0.748468,0.569822,0.790632,0.937626,0.97203,0.770279,0.554332,0.205241,0.272005,0.961488,0.533837,0.969622,0.276349,0.756198,0.545186,0.266867,0.536173,0.840234,0.93725,0.535389,0.62569,0.853021,0.71273,0.609059,0.583073,0.503434,0.884641,0.757732,0.563058,0.291606,0.34689,0.783204,0.305123,0.188535,0.962871,0.0737627,0.184653,0.783783,0.266647,0.39601,0.741191,0.498104,0.0531085,0.0628343,0.728188,0.312136,0.305102,0.482755,0.84798,0.939457,0.525125,0.412609,0.483468,0.978969,0.998792,0.200144,0.309681,0.407429,0.000368059,0.614186,0.403102,0.60475,0.628212,0.175691,0.816756,0.353749,0.47188,0.0606779,0.570949,0.0339635,0.170925,0.240175,0.830888,0.0610673,0.543028,0.810258,0.588603,0.11854,0.469484,0.0614391,0.967789,0.930328,0.454416,0.0943997,0.0230299,0.933696,0.346041,0.680221,0.70095,0.992789,0.290332,0.086951,0.569365,0.349761,0.0725938,0.596963,0.259694,0.200326,0.917939,0.323599,0.959661,0.230234,0.54463,0.43325,0.460104,0.80882,0.485117,0.875657,0.415282,0.92424,0.357548,0.0420932,0.336989,0.883364,0.796884,0.532301,0.320681,0.0243638,0.410052,0.180958,0.531156,0.547673,0.807981,0.633479,0.00755626,0.687831,0.123033,0.713659,0.813091,0.609883,0.973242,0.616408,0.457917,0.834661,0.962297,0.346743,0.221432,0.237122,0.894685,0.538055,0.0949416,0.389007,0.0175693,0.525696,0.646614,0.863038,0.00782728,0.673313,0.744341,0.79911,0.993969,0.302879,0.339635,0.933276,0.808404,0.947915,0.405624,0.825018,0.55889,0.98444,0.819208,0.376517,0.151643,0.357299,0.991121,0.399725,0.534185,0.368008,0.792007,0.210512,0.855086,0.780231,0.142622,0.421603,0.13887,0.630116,0.429019,0.700564,0.694824,0.641416,0.657137,0.199405,0.261426,0.967938,0.976425,0.746824,0.901178,0.494171,0.38222,0.975157,0.778361,0.905344,0.500357,0.620534,0.556408,0.203049,0.778304,0.673343,0.552026,0.0607591,0.390649,0.305651,0.968971,0.405533,0.496957,0.671299,0.00710535,0.946447,0.604279,0.312867,0.334508,0.0921186,0.862788,0.873299,0.569868,0.47186,0.801672,0.74027,0.756757,0.834533,0.388235,0.0545972,0.867574,0.469713,0.733291,0.068407,0.916318,0.0421041,0.787434,0.318421,0.0101732,0.170155,0.147572,0.134351,0.850844,0.88561,0.153156,0.783973,0.0396892,0.455343,0.652959,0.877603,0.204973,0.332172,0.592465,0.679753,0.972221,0.363457,0.0104848,0.900092,0.456985,0.435674,0.195481,0.281581,0.817231,0.11458,0.195984,0.531109,0.914248,0.13297,0.0886452,0.582655,0.444701,0.971589,0.131154,0.241357,0.810155,0.406931,0.553326,0.993802,0.965106,0.27544,0.0484681,0.389052,0.351857,0.172792,0.182749,0.305749,0.50543,0.760853,0.992275,0.762797,0.587818,0.321018,0.734295,0.519783,0.839105,0.436903,0.0323941,0.15491,0.371688,0.166986,0.501243,0.238001,0.682159,0.236069,0.511981,0.370389,0.887133,0.010194,0.808292,0.299944,0.865973,0.368222,0.465989,0.881038,0.337252,0.895675,0.964917,0.73767,0.648853,0.831752,0.83276,0.953935,0.592117,0.322834,0.596667,0.94033,0.960272,0.683825,0.858806,0.240813,0.0616287,0.103384,0.0392056,0.311651,0.927031,0.95983,0.720367,0.685286,0.000431061,0.690769,0.33523,0.622608,0.190816,0.629596,0.138905,0.525936,0.548377,0.665203,0.984784,0.849835,0.620683,0.288364,0.836145,0.725781,0.603319,0.473246,0.594028,0.589837,0.790106,0.31638,0.0415455,0.561684,0.100807,0.267412,0.0806143,0.157862,0.50091,0.765543,0.874013,0.980846,0.988238,0.213073,0.851917,0.841185,0.97539,0.376464,0.468689,0.653376,0.358676,0.0834239,0.934319,0.449777,0.868736,0.055612,0.0539327,0.28943,0.269064,0.0619407,0.895487,0.0632694,0.730091,0.754994,0.832574,0.202527,0.736737,0.940388,0.465944,0.526712,0.544543,0.618376,0.506803,0.596409,0.924124,0.343645,0.572469,0.847384,0.833003,0.103797,0.30716,0.119998,0.33759,0.725173,0.119422,0.0808136,0.837766,0.421048,0.464868,0.230435,0.72185,0.365571,0.371148,0.924852,0.214004,0.336129,0.280028,0.547645,0.651933,0.363263,0.229978,0.762284,0.552433,0.326165,0.964646,0.38968,0.129399,0.0163047,0.78183,0.3011,0.745879,0.828751,0.0902688,0.568837,0.594227,0.237403,0.859948,0.544265,0.936361,0.00956178,0.890684,0.588609,0.729205,0.310174,0.685244,0.879428,0.410507,0.208642,0.374736,0.917765,0.717531,0.955893,0.0520107,0.455481,0.846482,0.747198,0.418065,0.0973694,0.11488,0.750286,0.744785,0.599868,0.555234,0.0681828,0.233063,0.559903,0.167358,0.898987,0.208959,0.0473922,0.161312,0.145655,0.666839,0.169624,0.497783,0.57167,0.723211,0.784272,0.182557,0.287787,0.309591,0.77749,0.0865569,0.0481831,0.749239,0.757415,0.551243,0.420058,0.75517,0.608553,0.803862,0.387027,0.6464,0.873629,0.272559,0.0534745,0.654875,0.678935,0.552342,0.00600576,0.834913,0.74332,0.791541,0.679991,0.419103,0.366542,0.113241,0.411751,0.562342,0.00655055,0.222914,0.0860655,0.712994,0.047803,0.913848,0.0542913,0.813638,0.694623,0.740653,0.739774,0.925295,0.761929,0.238532,0.612408,0.358432,0.901788,0.527084,0.804517,0.438577,0.567084,0.257209,0.707708,0.194118,0.444077,0.542623,0.269103,0.0778972,0.631713,0.477144,0.982264,0.73416,0.676122,0.98764,0.97616,0.0378377,0.452715,0.91684,0.338428,0.488288,0.836944,0.190221,0.851018,|0.658504,0.746829,0.424555,0.486584,0.0374777,0.213289,0.893396,0.207249,0.284625,0.708359,0.538479,0.916955,0.257427,0.637714,0.877137,0.642124,0.0148296,0.544244,0.445285,0.252744,0.698325,0.562252,0.416286,0.759185,0.873429,0.218402,0.848142,0.888001,0.223291,0.751958,0.0575764,0.027786,0.916057,0.792412,0.12384,0.993461,0.121414,0.660011,0.178786,0.491637,0.299756,0.484328,0.252159,0.586541,0.631877,0.508979,0.506514,0.933525,0.129841,0.616313,0.487157,0.275907,0.828421,0.311352,0.264488,0.607871,0.957547,0.553407,0.787592,0.651466,0.282309,0.462235,0.73976,0.933264,0.680004,0.0853266,0.223321,0.141806,0.732089,0.778632,0.343735,0.710882,0.825221,0.00502455,0.747933,0.0948375,0.665056,0.466999,0.0294097,0.276725,0.446542,0.295642,0.980524,0.785764,0.603997,0.0871235,0.7582,0.867117,0.555433,0.749352,0.751158,0.56952,0.109473,0.0848238,0.775687,0.0448171,0.329006,0.759666,0.807586,0.408926,0.205285,0.683535,0.151814,0.714098,0.0842539,0.644356,0.363231,0.232992,0.8927,0.458035,0.438153,0.277911,0.380105,0.250574,0.59243,0.923786,0.491164,0.79448,0.695732,0.803074,0.869506,0.245645,0.868774,0.80508,0.0335206,0.737489,0.753366,0.310156,0.589851,0.728729,0.429198,0.17719,0.053077,0.640067,0.354933,0.0584812,0.086889,0.265711,0.821467,0.489899,0.202384,0.617119,0.842112,0.875713,0.437405,0.431127,0.046084,0.646017,0.61251,0.916149,0.323321,0.559048,0.884218,0.291023,0.158061,0.101111,0.211846,0.680728,0.786295,0.823707,0.154775,0.934563,0.270612,0.414933,0.361486,0.317685,0.639691,0.912545,0.30433,0.249099,0.574394,0.975741,0.762747,0.673134,0.361161,0.0211501,0.595889,0.987485,0.292644,0.877062,0.31554,0.390315,0.853663,0.303527,0.519858,0.363228,0.174702,0.566661,0.628017,0.255153,0.00287843,0.472738,0.304378,0.684434,0.893024,0.867679,0.10022,0.954753,0.0889159,0.895108,0.0674513,0.199367,0.35236,0.0273455,0.317885,0.841549,0.221247,0.754926,0.853774,0.363022,0.257026,0.74801,0.808216,0.0757419,0.472568,0.729049,0.262501,0.6886,0.340118,0.722014,0.763596,0.671702,0.257566,0.517428,0.331583,0.222157,0.130543,0.578355,0.240451,0.138636,0.692834,0.990818,0.687721,0.640516,0.475299,0.658425,0.9079,0.379913,0.310083,0.286048,0.160757,0.758363,0.0192133,0.0975547,0.521031,0.0076285,0.287033,0.882021,0.612167,0.938453,0.63263,0.808539,0.0181914,0.618589,0.353049,0.805576,0.313234,0.415194,0.092398,0.362436,0.831476,0.850046,0.167666,0.543004,0.951395,0.256176,0.0620218,0.360326,0.648672,0.699716,0.609125,0.554104,0.0714191,0.112478,0.748769,0.147201,0.406993,0.648978,0.407034,0.346269,0.305475,0.837073,0.855548,0.232362,0.283011,0.106442,0.471717,0.770503,0.216758,0.816637,0.25796,0.372865,0.278318,0.810662,0.968074,0.343513,0.293309,0.613786,0.36324,0.312517,0.634123,0.719208,0.976826,0.989301,0.573616,0.315778,0.0234001,0.606014,0.192206,0.455427,0.642304,0.984846,0.497548,0.0273028,0.273535,0.229899,0.135755,0.612427,0.365762,0.189695,0.454496,0.561049,0.0466551,0.800278,0.283639,0.309708,0.297638,0.780691,0.618711,0.288016,0.430865,0.578541,0.973008,0.0634579,0.844635,0.125675,0.351348,0.574776,0.991128,0.521482,0.459728,0.0484894,0.725809,0.417286,0.85068,0.777579,0.733576,0.913728,0.391656,0.188276,0.346954,0.6981,0.69322,0.974264,0.156481,0.327025,0.3923,0.00600731,0.57532,0.712763,0.764356,0.29469,0.473279,0.421617,0.66155,0.833982,0.684344,0.548924,0.102481,0.249762,0.243626,0.909434,0.726059,0.667354,0.0822856,0.721344,0.690639,0.319275,0.0555128,0.915713,0.526623,0.680955,0.339104,0.293148,0.531857,0.515044,0.578563,0.0963569,0.734225,0.613561,0.185614,0.918173,0.668618,0.917385,0.4317,0.989591,0.3681,0.230711,0.948786,0.351939,0.64759,0.974825,0.450683,0.331327,0.769055,0.419323,0.0800121,0.227489,0.610468,0.0550631,0.855943,0.0977939,0.675806,0.324187,0.265018,0.967577,0.482965,0.335468,0.942628,0.171688,0.371896,0.120787,0.910687,0.843951,0.0542628,0.670393,0.620069,0.936443,0.113822,0.213048,0.986445,0.219854,0.413876,0.420081,0.634772,0.250675,0.711185,0.399971,0.14942,0.0129871,0.52458,0.390701,0.622257,0.538551,0.108083,0.178378,0.11207,0.821323,0.560001,0.548124,0.215391,0.296607,0.0639054,0.296175,0.252828,0.921361,0.317482,0.292728,0.0639622,0.856761,0.594872,0.318419,0.909719,0.926616,0.504443,0.737158,0.832493,0.0478457,0.706828,0.858495,0.28477,0.0109826,0.963533,0.940731,0.321467,0.339683,0.726011,0.117075,0.228192,0.00304401,0.981898,0.652101,0.752484,0.573757,0.929197,0.123461,0.106622,0.0180064,0.685073,0.0959343,0.876484,0.769402,0.68194,0.241108,0.112737,0.749976,0.366749,0.984219,0.552915,0.624663,0.285604,0.237467,0.736797,0.728597,0.176596,0.0508476,0.455964,0.781219,0.575695,0.39795,0.396766,0.240924,0.682063,0.688427,0.965435,0.653691,0.0833672,0.593472,0.102983,0.611897,0.574009,0.131895,0.48067,0.703373,0.731891,0.592798,0.408691,0.301508,0.24131,0.889113,0.0175615,0.420981,0.0474993,0.898403,0.814079,0.55036,0.74747,0.731503,0.135472,0.961057,0.269824,0.614269,0.914473,0.040125,0.876419,0.215637,0.435274,0.139267,0.3117,0.0947478,0.624648,0.383872,0.549568,0.54847,0.517876,0.444008,0.871643,0.63899,0.258124,0.693778,0.516619,0.946692,0.7364,0.729588,0.0631399,0.299863,0.566024,0.135939,0.0103571,0.608051,0.0830343,0.040413,0.276341,0.328946,0.783494,0.667823,0.180548,0.271588,0.897283,0.513441,0.119105,0.49484,0.112736,0.460426,0.736807,0.453408,0.682902,0.223536,0.305885,0.960845,0.951589,0.608117,0.478274,0.779732,0.308109,0.975952,0.724945,0.191847,0.429984,0.976799,0.417687,0.865034,0.257236,0.364232,0.280847,0.587169,0.820681,0.165439,0.0505468,0.825177,0.897606,0.267326,0.202038,0.383966,0.56946,0.341478,0.178225,0.912645,0.928772,0.857949,0.921125,0.284583,0.931437,0.566404,0.513586,0.812299,0.2876,0.0701679,0.160154,0.957896,0.515437,0.674643,0.780291,0.163051,0.270822,0.558087,0.057731,0.051954,0.0580968,0.136605,0.333921,0.836386,0.266409,0.543704,0.19129,0.824911,0.280375,0.973547,0.799935,0.589355,0.467964,0.664417,0.895291,0.356675,0.408554,0.641523,0.931332,0.248564,0.79711,0.639531,0.401693,0.262438,0.909445,0.119883,0.279815,0.0434164,0.564901,0.324345,0.738648,0.121952,0.282109,0.122515,0.948076,0.653562,0.578802,0.919346,0.780847,0.061165,0.317735,0.00100327,0.0918055,0.110191,0.333066,0.247335,0.810782,0.39303,0.693966,0.809216,0.390185,0.0262346,0.970761,0.272925,0.696345,0.870593,0.161339,0.388239,0.566917,0.0460739,0.606397,0.242065,0.244279,0.122144,0.811309,0.459699,0.878899,0.446316,0.329122,0.445777,0.370271,0.243323,0.490434,0.381895,0.0852666,0.911989,0.970175,0.714412,0.73302,0.858824,0.602283,0.221604,0.857527,0.456951,0.628501,0.859103,0.270007,0.452097,0.605281,0.309179,0.865334,0.765789,0.333107,0.581659,0.450474,0.940104,0.750048,0.112894,0.054505,0.324757,0.922662,0.955451,0.523999,0.423442,0.177996,0.14079,0.866838,0.875484,0.160205,0.251398,0.926055,0.84131,0.694463,0.211299,0.731313,0.290774,0.334304,0.320341,0.30104,0.251705,0.348947,0.64577,0.719352,0.389279,0.555655,0.630172,0.0101764,0.866535,0.635641,0.27991,0.0485719,0.459543,0.584855,0.80922,0.740361,0.267601,0.318371,0.972578,0.488812,0.266335,0.585319,0.973681,0.153333,0.443454,0.244248,0.116075,0.903852,0.770693,0.086695,0.219216,0.832355,0.0626365,0.458572,0.0887702,0.0410242,0.288285,0.585493,0.0877451,0.227185,0.628908,0.914241,0.99178,0.978403,0.660346,0.548726,0.511852,0.523562,0.37043,0.178385,0.0614758,0.784631,0.285826,0.431358,0.697967,0.891618,0.0774661,0.707232,0.104172,0.56644,0.58225,0.662127,0.803905,0.16459,0.822437,0.467546,0.406533,0.334624,0.660456,0.0885789,0.112867,0.355785,0.264506,0.0824158,0.894541,0.11712,0.357209,0.426993,0.234772,0.911662,0.253969,0.0289506,0.145746,0.276634,0.530815,0.586604,0.330439,0.343096,0.566332,0.0445196,0.732014,0.310039,0.336173,0.965488,0.52498,0.25754,0.280066,0.665301,0.328285,0.659475,0.283527,0.590778,0.309375,0.783785,0.488143,0.462696,0.134377,0.176885,0.0137081,0.90839,0.794669,0.834684,0.266213,0.658867,0.903288,0.424377,0.506594,0.559178,0.922856,0.214879,0.931723,0.367041,0.207115,0.338351,0.0405115,0.846757,0.236217,0.902496,0.526788,0.105977,0.777279,0.509453,0.617628,0.0903351,0.81599,0.281996,0.0501172,0.873767,0.620633,0.344484,0.73026,0.6197,0.380532,0.794398,0.68508,0.0782632,0.838285,0.711744,0.877857,0.524025,0.354567,0.0379681,0.91651,0.923909,0.960671,0.862837,0.701028,0.461001,0.216451,0.320027,0.153696,0.413184,0.85085,0.549068,0.310042,0.224379,0.181824,0.720642,0.709584,0.201571,0.775641,0.500739,0.951026,0.098601,0.693484,0.560279,0.719911,0.472869,0.539431,0.0676045,0.389716,0.901895,0.872335,0.8414,0.235011,0.204582,0.566584,0.0732986,0.154513,0.0871713,0.766541,0.374438,0.325059,0.918885,0.939959,0.379107,0.00271654,0.87991,0.279239,0.0055598,0.0889727,0.795497,0.581772,0.371124,0.2994,0.677087,0.140056,0.273696,0.660553,0.596289,0.0110036,0.886255,0.657021,0.302085,0.17038,0.340739,0.470088,0.727713,0.0167328,0.269293,0.952386,0.313865,0.435039,0.518687,0.917955,0.945442,0.859039,0.397562,0.606716,0.896521,0.918764,0.593467,0.521893,0.865282,0.423115,0.713111,0.585582,0.430366,0.657464,0.981775,0.898479,0.995675,0.133242,|0.43755,0.411976,0.163014,0.844741,0.19347,0.778248,0.114803,0.106692,0.697805,0.807911,0.150589,0.454001,0.499124,0.439609,0.0220645,0.224768,0.187753,0.825381,0.662795,0.880606,0.693381,0.807258,0.534686,0.370919,0.842541,0.634195,0.0436056,0.971339,0.633343,0.102528,0.208134,0.0491592,0.559687,0.103458,0.229325,0.792758,0.224708,0.82425,0.783547,0.228128,0.516714,0.618077,0.191986,0.21849,0.765201,0.273034,0.734799,0.131365,0.748661,0.746601,0.00420445,0.635253,0.788754,0.92627,0.594458,0.464947,0.776194,0.125649,0.117635,0.149538,0.292947,0.0100895,0.400527,0.315962,0.546285,0.263427,0.0562952,0.303529,0.959798,0.0238833,0.0944555,0.914561,0.675287,0.389718,0.550168,0.787101,0.343695,0.0959448,0.648217,0.701527,0.931323,0.290175,0.774741,0.890277,0.129849,0.252529,0.649809,0.844362,0.090028,0.164408,0.497979,0.0137402,0.895155,0.83968,0.0698117,0.80569,0.517084,0.750781,0.945812,0.614718,0.267497,0.940159,0.251707,0.707535,0.490444,0.277747,0.826404,0.109358,0.639391,0.0447494,0.661927,0.668702,0.768013,0.570764,0.649164,0.164437,0.553422,0.407833,0.0385036,0.610218,0.2911,0.162057,0.36817,0.348246,0.411038,0.695856,0.129697,0.921272,0.0996863,0.428928,0.125609,0.429363,0.294677,0.615371,0.078514,0.728007,0.0262575,0.622574,0.730284,0.271412,0.215832,0.472659,0.715775,0.949556,0.54492,0.129139,0.659148,0.564087,0.685796,0.474641,0.842811,0.773936,0.588413,0.630772,0.883941,0.0529568,0.26421,0.189868,0.672534,0.116917,0.322205,0.356504,0.954071,0.1533,0.983235,0.707392,0.482432,0.213605,0.0984456,0.974616,0.617624,0.171891,0.126201,0.358573,0.589277,0.93325,0.0326141,0.34275,0.939799,0.377651,0.130862,0.228242,0.228405,0.941534,0.492009,0.226417,0.913128,0.84377,0.915697,0.418545,0.182596,0.788796,0.0672879,0.0528899,0.660564,0.000281692,0.828523,0.743602,0.703539,0.151681,0.131317,0.871911,0.240022,0.655816,0.190024,0.570746,0.706924,0.54033,0.34367,0.486072,0.70881,0.501424,0.0610349,0.998767,0.544688,0.797628,0.355221,0.92069,0.180516,0.217782,0.972725,0.331206,0.459375,0.410655,0.792887,0.805815,0.35789,0.433293,0.0935583,0.676867,0.729034,0.704258,0.933325,0.950811,0.840878,0.509259,0.530242,0.594746,0.746542,0.97826,0.216402,0.278084,0.404444,0.0848057,0.875849,0.283771,0.0186853,0.836967,0.287693,0.179804,0.550856,0.187469,0.0347552,0.839229,0.236086,0.547879,0.594955,0.826005,0.347665,0.953994,0.625108,0.657641,0.63112,0.919572,0.22769,0.368485,0.754296,0.201593,0.12732,0.113087,0.716794,0.403238,0.556235,0.559987,0.783825,0.540944,0.167043,0.268086,0.0124073,0.846462,0.991664,0.228909,0.360352,0.388386,0.656139,0.272379,0.359231,0.162497,0.448672,0.535702,0.499805,0.196813,0.851769,0.0816695,0.681213,0.871287,0.697903,0.213385,0.115077,0.449007,0.530374,0.684379,0.560884,0.563534,0.390189,0.899117,0.810095,0.856747,0.674577,0.91598,0.635101,0.503922,0.816471,0.225147,0.682299,0.505047,0.353201,0.910044,0.613734,0.468771,0.670289,0.734019,0.66397,0.299832,0.686897,0.583654,0.863493,0.406885,0.620592,0.773276,0.311871,0.116536,0.21091,0.712422,0.333616,0.503862,0.852987,0.0405751,0.367698,0.831613,0.505936,0.309733,0.351909,0.762609,0.575733,0.174538,0.281758,0.308432,0.617205,0.0500849,0.48379,0.484951,0.419775,0.418289,0.760335,0.476103,0.457135,0.497488,0.0737943,0.196404,0.565623,0.57358,0.914366,0.192834,0.903909,0.767476,0.937089,0.203099,0.664124,0.000654161,0.719563,0.786717,0.31056,0.129671,0.490103,0.46961,0.736455,0.29988,0.199134,0.475185,0.587821,0.202513,0.64382,0.588209,0.474288,0.421728,0.521852,0.764579,0.930488,0.231893,0.345199,0.834804,0.773667,0.577299,0.290868,0.663702,0.821499,0.0618659,0.155826,0.924505,0.86551,0.735221,0.0161955,0.88217,0.962512,0.128294,0.983103,0.777622,0.804063,0.781652,0.328589,0.144133,0.892515,0.33848,0.30164,0.850368,0.0169209,0.197081,0.607881,0.170394,0.052835,0.50695,0.726882,0.775829,0.0474287,0.250858,0.349035,0.445564,0.721177,0.578112,0.353659,0.362132,0.148715,0.0279808,0.48862,0.730068,0.881453,0.0988719,0.807684,0.784312,0.0953979,0.416097,0.937062,0.0592581,0.666683,0.904533,0.508701,0.906751,0.476319,0.361127,0.460248,0.87413,0.735911,0.246853,0.203899,0.915308,0.300679,0.561758,0.079564,0.204189,0.0839702,0.955649,0.468179,0.751469,0.00572169,0.0199772,0.244733,0.652793,0.0616086,0.0230209,0.910867,0.273116,0.225561,0.544032,0.953976,0.479846,0.0283074,0.445882,0.199214,0.968289,0.487214,0.640912,0.386424,0.228803,0.436955,0.23401,0.596235,0.824051,0.298684,0.614746,0.430639,0.962013,0.0421693,0.59049,0.653529,0.0461803,0.0628941,0.744341,0.36962,0.795125,0.0831273,0.942593,0.875396,0.942793,0.758597,0.224278,0.266959,0.365849,0.561841,0.52442,0.310104,0.0935509,0.197216,0.735332,0.234663,0.872297,0.586156,0.231803,0.483564,0.937325,0.340167,0.301062,0.676205,0.0787355,0.520537,0.339533,0.337878,0.270023,0.681444,0.183812,0.037675,0.578796,0.808905,0.318332,0.758172,0.684732,0.421025,0.911575,0.295482,0.58706,0.979936,0.834053,0.308391,0.212053,0.0271898,0.119104,0.210406,0.0568331,0.620096,0.876066,0.410865,0.632482,0.914279,0.906464,0.5543,0.158916,0.78024,0.645004,0.977873,0.987727,0.170511,0.659729,0.117218,0.916528,0.396568,0.228205,0.807364,0.491379,0.576858,0.117401,0.853798,0.98511,0.584264,0.869656,0.823776,0.194024,0.339196,0.486838,0.389935,0.184096,0.013545,0.658254,0.772682,0.238725,0.225569,0.502488,0.073916,0.0127574,0.111582,0.698548,0.351283,0.785868,0.734929,0.589916,0.0197703,0.0999665,0.637736,0.204323,0.986661,0.0771028,0.98552,0.339728,0.954382,0.430937,0.0200059,0.920761,0.581914,0.364524,0.887682,0.326021,0.600123,0.0315611,0.347393,0.759094,0.518655,0.27276,0.0677269,0.869249,0.0670993,0.0708938,0.247674,0.633817,0.493577,0.108172,0.528196,0.437356,0.479261,0.798319,0.630929,0.525587,0.880084,0.386688,0.703997,0.0848988,0.777308,0.571592,0.136584,0.741298,0.692116,0.769049,0.956982,0.811354,0.535028,0.62696,0.556561,0.0518051,0.519499,0.276886,0.665425,0.333788,0.218803,0.205059,0.608827,0.243424,0.120092,0.408884,0.342437,0.0216711,0.732101,0.00742036,0.00190377,0.478599,0.862904,0.54024,0.0398061,0.0608445,0.182812,0.754333,0.63663,0.58918,0.432248,0.0474617,0.543548,0.785645,0.283246,0.306205,0.0631268,0.854779,0.483139,0.380012,0.559853,0.864541,0.36696,0.0592508,0.936748,0.717803,0.0424564,0.369717,0.883038,0.0767527,0.489348,0.324172,0.235555,0.264945,0.487647,0.0310124,0.447532,0.826696,0.184103,0.15353,0.236418,0.190758,0.396256,0.997126,0.891565,0.263262,0.0272423,0.500458,0.838584,0.233517,0.0569199,0.865089,0.0237393,0.622049,0.469828,0.0457531,0.09601,0.86147,0.839664,0.672779,0.325146,0.630318,0.130344,0.149585,0.302817,0.804737,0.225558,0.573836,0.699949,0.27664,0.305079,0.0218241,0.0206811,0.470154,0.887275,0.271572,0.697933,0.0865058,0.0989674,0.69618,0.444094,0.875825,0.595225,0.571179,0.573149,0.275975,0.348532,0.522121,0.267628,0.322737,0.734343,0.791691,0.470248,0.416546,0.454061,0.76928,0.919164,0.420544,0.870047,0.836431,0.602184,0.653878,0.843329,0.271625,0.808918,0.198276,0.557498,0.383917,0.350595,0.818155,0.927113,0.730242,0.0112414,0.0355845,0.736313,0.256979,0.101371,0.488351,0.878448,0.485311,0.174081,0.573837,0.781677,0.726668,0.524408,0.816297,0.214864,0.887259,0.862923,0.483437,0.117268,0.62523,0.639639,0.0460027,0.992896,0.181994,0.790673,0.693476,0.676506,0.946725,0.0114402,0.725426,0.568094,0.719256,0.502146,0.556968,0.402819,0.553755,0.920574,0.510558,0.819315,0.446223,0.7392,0.891296,0.666399,0.906139,0.882139,0.0831035,0.913592,0.396119,0.81886,0.332799,0.720436,0.619906,0.291523,0.817345,0.448763,0.901807,0.24532,0.925247,0.674638,0.227805,0.317944,0.646013,0.262144,0.929721,0.455932,0.177695,0.751863,0.434685,0.952446,0.803875,0.0610018,0.729677,0.634251,0.316244,0.858133,0.752993,0.277264,0.878152,0.996924,0.524843,0.414225,0.768601,0.851026,0.868212,0.918836,0.45627,0.373484,0.564246,0.446172,0.628184,0.58734,0.914804,0.500322,0.242831,0.945797,0.0525573,0.937887,0.917699,0.370593,0.442251,0.743164,0.9753,0.469414,0.955802,0.716442,0.790361,0.588693,0.877466,0.819208,0.444865,0.557418,0.0954782,0.201631,0.0474805,0.467751,0.372615,0.597535,0.540366,0.342374,0.456396,0.584494,0.327621,0.172545,0.697474,0.616171,0.644523,0.501988,0.873033,0.337126,0.0734753,0.78166,0.31066,0.542594,0.763559,0.199906,0.439672,0.265324,0.37326,0.339143,0.63712,0.70151,0.225485,0.259837,0.14716,0.229259,0.882827,0.172378,0.187196,0.516668,0.482029,0.306462,0.702391,0.891484,0.514618,0.826705,0.885794,0.809285,0.141641,0.513424,0.907806,0.955744,0.466277,0.534415,0.9176,0.473035,0.493956,0.103377,0.189902,0.44155,0.0174873,0.778834,0.828291,0.968741,0.578094,0.980005,0.640091,0.522443,0.119874,0.99279,0.603329,0.437961,0.461542,0.849569,0.82225,0.72709,0.186369,0.170141,0.153487,0.718884,0.471981,0.881299,0.030585,0.410391,0.444187,0.330538,0.555815,0.555611,0.0408927,0.914778,0.933669,0.358614,0.449045,0.788453,0.345738,0.161668,0.901742,0.927267,0.0451121,0.602681,0.543153,0.761072,0.467894,0.702393,0.422256,0.844762,0.369739,0.796643,0.678935,0.801438,0.677833,0.236603,0.997909,0.529139,0.748995,0.426237,0.48487,0.173052,0.637036,|0.78256,0.928391,0.859738,0.29897,0.355616,0.110549,0.197417,0.0349787,0.642836,0.880816,0.347812,0.584891,0.99541,0.152269,0.750276,0.04488,0.28384,0.36994,0.797203,0.516122,0.668553,0.30264,0.627672,0.70108,0.139285,0.503861,0.164401,0.449719,0.948589,0.829178,0.349375,0.300471,0.448436,0.625388,0.640421,0.371292,0.788168,0.0725487,0.840484,0.323474,0.0720905,0.965953,0.97878,0.97524,0.182403,0.192168,0.311937,0.410614,0.301712,0.242769,0.497481,0.950284,0.717772,0.994192,0.130366,0.219279,0.281315,0.15011,0.85925,0.406102,0.444724,0.341878,0.413192,0.260406,0.704239,0.314538,0.0669768,0.43056,0.510517,0.133573,0.520932,0.731527,0.604309,0.494024,0.0111291,0.234166,0.172327,0.606272,0.0313576,0.451177,0.000739753,0.47615,0.279084,0.11325,0.304794,0.92465,0.31258,0.232739,0.651839,0.108922,0.515917,0.00184298,0.108899,0.570179,0.723977,0.27594,0.0442706,0.159191,0.652165,0.939001,0.779414,0.515321,0.905312,0.102666,0.938005,0.590287,0.459834,0.0220219,0.946098,0.471699,0.726933,0.42558,0.954258,0.652258,0.00784051,0.278155,0.987876,0.0299535,0.056567,0.266729,0.462488,0.321251,0.741886,0.893028,0.695362,0.565074,0.772646,0.136673,0.81313,0.893587,0.384697,0.0235425,0.855283,0.239232,0.879151,0.771703,0.651937,0.909732,0.396069,0.603445,0.49026,0.796043,0.359913,0.263223,0.920893,0.290299,0.776453,0.467798,0.51428,0.751512,0.546912,0.450451,0.20057,0.148558,0.451311,0.566641,0.39736,0.867643,0.94277,0.855328,0.571022,0.94757,0.671911,0.58041,0.265775,0.490593,0.0781124,0.848796,0.614873,0.468278,0.501224,0.686465,0.607604,0.92843,0.664214,0.469991,0.0141735,0.710658,0.569715,0.95932,0.451554,0.0329866,0.967198,0.0232932,0.925871,0.037847,0.544004,0.455825,0.732722,0.124922,0.807174,0.690033,0.434138,0.0396259,0.193419,0.518615,0.149679,0.88804,0.960518,0.908399,0.557394,0.807804,0.948831,0.321382,0.208354,0.326647,0.564503,0.780281,0.343952,0.389818,0.354885,0.246299,0.891639,0.133725,0.993923,0.690333,0.903627,0.22287,0.531137,0.143923,0.267782,0.161799,0.357145,0.592442,0.0711881,0.730237,0.157777,0.903634,0.869418,0.136415,0.507547,0.831157,0.787881,0.140373,0.0959051,0.332218,0.178753,0.655811,0.360873,0.0408677,0.902463,0.72684,0.522971,0.577201,0.826882,0.399494,0.17013,0.272756,0.909119,0.995862,0.718684,0.206615,0.829862,0.989989,0.417214,0.386416,0.959715,0.527094,0.207191,0.850473,0.218876,0.745386,0.788702,0.311897,0.455265,0.839918,0.335868,0.456548,0.842751,0.559759,0.587272,0.00859487,0.0795452,0.194752,0.628844,0.676997,0.117032,0.364864,0.580958,0.995122,0.511517,0.635283,0.643202,0.798418,0.706718,0.200858,0.44038,0.66715,0.802498,0.0295629,0.182123,0.120424,0.891608,0.692845,0.213818,0.0922217,0.229542,0.76027,0.0162425,0.296259,0.417072,0.895778,0.333498,0.86041,0.150301,0.0679582,0.881373,0.458182,0.869898,0.654968,0.78687,0.780796,0.880025,0.845982,0.395853,0.45844,0.0393921,0.291178,0.822905,0.650281,0.918002,0.996909,0.0513788,0.146709,0.833759,0.0099507,0.0868536,0.434487,0.631045,0.483655,0.750644,0.886113,0.656756,0.610464,0.108687,0.544714,0.384125,0.698282,0.371218,0.807905,0.567399,0.375119,0.00443876,0.871906,0.49752,0.476335,0.719646,0.274097,0.937085,0.499311,0.770956,0.25148,0.0298144,0.189515,0.277326,0.682761,0.0267835,0.559465,0.574001,0.447679,0.680088,0.161228,0.918348,0.439438,0.283209,0.324558,0.635948,0.818955,0.560277,0.973922,0.578291,0.593099,0.863151,0.870116,0.024749,0.294127,0.287037,0.783229,0.643053,0.0289749,0.530393,0.424774,0.877968,0.0526599,0.162915,0.116685,0.959695,0.0101559,0.104952,0.506989,0.116724,0.0530608,0.763365,0.120706,0.999282,0.639931,0.405175,0.868234,0.427333,0.0672056,0.391136,0.86339,0.912497,0.0727924,0.255122,0.869213,0.352944,0.716222,0.675883,0.194301,0.32363,0.540836,0.324649,0.489916,0.0563509,0.299055,0.728102,0.949474,0.292417,0.171438,0.808024,0.044519,0.0371864,0.0273836,0.825961,0.50235,0.447882,0.246796,0.908865,0.460556,0.637598,0.348302,0.992401,0.127388,0.805708,0.436966,0.907486,0.376354,0.462275,0.57292,0.162492,0.670709,0.862946,0.868933,0.746606,0.041086,0.348862,0.935887,0.906126,0.887977,0.536358,0.151968,0.130598,0.407978,0.0319939,0.786798,0.725033,0.673847,0.637151,0.500934,0.769089,0.131035,0.583187,0.0974165,0.882601,0.906154,0.530621,0.0834192,0.185307,0.817716,0.544082,0.868275,0.616579,0.992262,0.197285,0.306051,0.574719,0.250288,0.475802,0.0497342,0.237867,0.0688329,0.72607,0.643551,0.00723112,0.201438,0.940817,0.385058,0.999142,0.943548,0.0666677,0.178913,0.292197,0.750402,0.182607,0.134279,0.626182,0.703473,0.773117,0.114818,0.273097,0.405667,0.0617251,0.365338,0.930467,0.896842,0.862894,0.345831,0.521227,0.155591,0.317532,0.66891,0.0172722,0.216001,0.415558,0.90732,0.427827,0.307659,0.14996,0.0102572,0.00172204,0.204027,0.584723,0.0605981,0.287101,0.681884,0.384965,0.930297,0.362547,0.401132,0.533347,0.906862,0.177343,0.421293,0.231179,0.814083,0.345828,0.215501,0.00987065,0.411846,0.221775,0.66754,0.162051,0.209249,0.167286,0.186351,0.666607,0.609261,0.0408925,0.185826,0.840529,0.464599,0.810666,0.963547,0.800913,0.631615,0.213475,0.332239,0.454192,0.578291,0.209373,0.179281,0.468261,0.374664,0.742994,0.621437,0.253505,0.216686,0.806554,0.0468763,0.569437,0.334117,0.747528,0.332288,0.2602,0.386773,0.644042,0.429611,0.451949,0.139578,0.374159,0.306068,0.860632,0.742159,0.137234,0.469264,0.569332,0.00249302,0.178126,0.0663156,0.570767,0.623972,0.267873,0.959783,0.256735,0.776449,0.713951,0.405377,0.694627,0.273585,0.524204,0.55771,0.654288,0.00761259,0.41343,0.416665,0.587901,0.701692,0.748593,0.106398,0.365408,0.252769,0.604479,0.0850863,0.282883,0.192209,0.41943,0.635902,0.110786,0.822967,0.781033,0.621184,0.937169,0.875239,0.176053,0.796252,0.168665,0.694777,0.622653,0.394518,0.26338,0.00601262,0.298153,0.0567898,0.0685943,0.966482,0.820216,0.704606,0.240991,0.725899,0.766897,0.764914,0.768726,0.107238,0.420877,0.411911,0.0173763,0.449128,0.288282,0.626242,0.626264,0.839936,0.0289087,0.0471939,0.745944,0.30879,0.722202,0.785423,0.177019,0.595483,0.471609,0.665807,0.177504,0.975824,0.874439,0.369176,0.916624,0.670395,0.776617,0.844041,0.04294,0.114936,0.26602,0.662912,0.765878,0.473244,0.673553,0.442313,0.0600012,0.645255,0.991007,0.723536,0.349209,0.187387,0.662368,0.399935,0.451762,0.789619,0.427426,0.725723,0.256174,0.365063,0.765532,0.398666,0.0983661,0.495687,0.292167,0.691459,0.624546,0.00181872,0.797198,0.110993,0.527158,0.155865,0.0327837,0.906203,0.254833,0.802387,0.0597824,0.239299,0.92473,0.734901,0.478136,0.917875,0.224649,0.0128456,0.594877,0.661465,0.101571,0.599028,0.186957,0.751946,0.90029,0.584117,0.944523,0.330829,0.189801,0.469216,0.121655,0.349554,0.871422,0.292181,0.638321,0.532777,0.1353,0.150269,0.145277,0.509251,0.495498,0.530114,0.750779,0.381371,0.289153,0.453305,0.836027,0.29585,0.586169,0.1469,0.513852,0.690953,0.268076,0.856711,0.578124,0.353982,0.371452,0.0629787,0.640242,0.840769,0.862838,0.536255,0.722701,0.0525233,0.618175,0.98971,0.241293,0.716411,0.107965,0.75907,0.0278279,0.285822,0.131403,0.316421,0.339294,0.95764,0.799796,0.258037,0.402212,0.116669,0.456573,0.132207,0.122327,0.0125716,0.547944,0.52345,0.0956376,0.36666,0.83905,0.744506,0.378376,0.508657,0.340334,0.417266,0.953344,0.867287,0.956695,0.567144,0.252536,0.933362,0.700907,0.455507,0.248206,0.359832,0.929944,0.145747,0.490956,0.0682628,0.680573,0.551927,0.252087,0.678011,0.713538,0.845535,0.511142,0.723435,0.301432,0.691348,0.336631,0.530056,0.95952,0.618911,0.715908,0.709311,0.549234,0.601415,0.865819,0.958943,0.773838,0.108217,0.598895,0.073986,0.0543575,0.74031,0.85822,0.0759977,0.241163,0.596237,0.556078,0.928745,0.657287,0.110149,0.875194,0.383927,0.455671,0.637242,0.0774481,0.862908,0.258831,0.0886563,0.225466,0.582408,0.147924,0.615991,0.309587,0.881702,0.361193,0.0676069,0.400625,0.825547,0.50077,0.687128,0.516926,0.76293,0.228191,0.084061,0.38544,0.420197,0.471288,0.988608,0.119792,0.921787,0.948105,0.732902,0.795674,0.417804,0.449354,0.540874,0.438495,0.740795,0.546269,0.974575,0.177026,0.0270218,0.841201,0.0891035,0.766178,0.0457262,0.672828,0.600927,0.74251,0.432702,0.671565,0.0213603,0.697192,0.843802,0.879548,0.952497,0.00328964,0.873926,0.790609,0.411987,0.781484,0.411441,0.995432,0.977624,0.617625,0.47492,0.268573,0.593531,0.841644,0.579267,0.696746,0.292256,0.576583,0.524703,0.720105,0.350103,0.257568,0.495357,0.261375,0.819226,0.355078,0.444467,0.178106,0.408054,0.226185,0.0925954,0.422598,0.776725,0.524199,0.223102,0.49044,0.859445,0.663101,0.753859,0.345103,0.857387,0.855367,0.523295,0.903397,0.605486,0.417392,0.969784,0.974595,0.570892,0.883728,0.211114,0.0567842,0.33234,0.633553,0.537633,0.348911,0.385843,0.758914,0.825999,0.279588,0.681865,0.433066,0.938106,0.660305,0.54192,0.89404,0.711133,0.400902,0.975263,0.121098,0.189295,0.0553014,0.108878,0.522057,0.673087,0.271015,0.453959,0.946826,0.57003,0.863349,0.773626,0.192431,0.711921,0.981558,0.355709,0.781613,0.937795,0.276359,0.960651,0.772778,0.0633205,0.241672,0.869917,0.870477,0.10077,0.486908,0.684967,0.641151,0.369494,0.295294,0.888867,0.379637,0.314856,0.138966,0.367495,|0.453888,0.84285,0.660887,0.808799,0.872862,0.114428,0.286418,0.623703,0.382895,0.0645961,0.565367,0.896072,0.514534,0.973113,0.211326,0.902691,0.442007,0.860525,0.944961,0.173213,0.626509,0.371106,0.203602,0.0369419,0.441475,0.528653,0.253189,0.793318,0.541701,0.363082,0.890006,0.857431,0.606951,0.513809,0.888608,0.792877,0.319456,0.514451,0.706686,0.574421,0.683545,0.888881,0.166705,0.707076,0.315435,0.580925,0.469758,0.840906,0.0657253,0.163676,0.988164,0.454278,0.326587,0.667573,0.850086,0.491057,0.243006,0.845252,0.988691,0.592131,0.0150441,0.618467,0.38079,0.107343,0.893765,0.695788,0.959966,0.151218,0.555169,0.227692,0.0619477,0.640768,0.343125,0.690405,0.22613,0.789132,0.140261,0.54642,0.334293,0.378555,0.393633,0.534982,0.629332,0.911875,0.803156,0.73238,0.268054,0.114849,0.29202,0.0963504,0.514722,0.804382,0.0230524,0.00815701,0.0313253,0.417039,0.94754,0.900985,0.275606,0.674316,0.283524,0.682095,0.303056,0.0441853,0.0889567,0.566008,0.932962,0.49709,0.78992,0.169449,0.519469,0.742006,0.188048,0.97677,0.257223,0.876465,0.88116,0.909536,0.759276,0.6601,0.0837816,0.374436,0.641136,0.161381,0.381198,0.109289,0.748402,0.383758,0.0507603,0.063552,0.131803,0.500877,0.609332,0.0782068,0.0547891,0.182979,0.622312,0.0219747,0.742682,0.3313,0.412585,0.941188,0.309843,0.125193,0.698462,0.306368,0.880411,0.126681,0.627116,0.823692,0.829372,0.768807,0.54304,0.100146,0.553685,0.935391,0.0907714,0.869221,0.224594,0.293109,0.500005,0.11889,0.514133,0.82558,0.438527,0.398706,0.650332,0.151889,0.178421,0.470039,0.558564,0.918347,0.0269961,0.0521798,0.93025,0.237893,0.0317371,0.0659708,0.886632,0.535652,0.0624759,0.299982,0.587524,0.452014,0.609657,0.726619,0.823213,0.181324,0.853676,0.448064,0.258428,0.345931,0.746117,0.874006,0.677131,0.0201147,0.939486,0.0249432,0.770191,0.353661,0.169925,0.260437,0.768056,0.448508,0.223979,0.992916,0.238881,0.279252,0.99774,0.860497,0.36088,0.452761,0.133126,0.269532,0.365301,0.0134095,0.740514,0.947077,0.486707,0.557255,0.905312,0.543054,0.483551,0.135706,0.720473,0.64733,0.49912,0.609461,0.972483,0.791593,0.429633,0.276792,0.159652,0.651207,0.315735,0.599934,0.440307,0.237491,0.71927,0.45547,0.0510752,0.864923,0.849713,0.370228,0.806965,0.454038,0.900561,0.341388,0.0875465,0.563985,0.957589,0.695701,0.582524,0.372656,0.837405,0.843262,0.467612,0.64548,0.0132353,0.888272,0.504802,0.515388,0.329621,0.977729,0.375079,0.0413231,0.931393,0.926563,0.618423,0.999669,0.683325,0.364461,0.450695,0.830293,0.666347,0.512943,0.0122622,0.438775,0.443882,0.612326,0.635264,0.345832,0.946512,0.620667,0.958607,0.975983,0.796023,0.360527,0.506116,0.393604,0.0572117,0.00190789,0.613048,0.642284,0.761683,0.715261,0.146284,0.815998,0.173877,0.903444,0.962534,0.317816,0.846055,0.816703,0.0131455,0.250274,0.197199,0.146589,0.061671,0.237422,0.387144,0.048519,0.628157,0.503234,0.686537,0.951298,0.921664,0.111329,0.656776,0.739247,0.801577,0.803863,0.867865,0.847588,0.862091,0.673088,0.511188,0.265649,0.136762,0.807417,0.369784,0.446324,0.340668,0.395636,0.87687,0.323816,0.7632,0.948419,0.103065,0.902422,0.650549,0.897922,0.59775,0.629129,0.250795,0.640969,0.416692,0.996151,0.679044,0.241171,0.0429802,0.812543,0.661274,0.343692,0.283071,0.220347,0.991947,0.4591,0.0645253,0.691953,0.584789,0.911969,0.963713,0.357,0.322436,0.249667,0.553573,0.69575,0.526478,0.821805,0.940426,0.30166,0.302547,0.785955,0.6715,0.0991247,0.584913,0.262212,0.747482,0.166887,0.246779,0.400717,0.627096,0.911713,0.0841106,0.282731,0.106318,0.508368,0.511124,0.701083,0.512303,0.366478,0.934202,0.185964,0.59554,0.439989,0.384481,0.788447,0.710132,0.0362117,0.431282,0.382595,0.407029,0.995112,0.252719,0.394049,0.707744,0.476516,0.125202,0.147001,0.0924578,0.529338,0.382668,0.958581,0.5005,0.81325,0.530739,0.0191835,0.0397949,0.857121,0.0635538,0.97336,0.0640005,0.905703,0.81985,0.0578009,0.944492,0.637475,0.932936,0.238318,0.537172,0.569987,0.627851,0.528305,0.80495,0.293385,0.450041,0.35026,0.361862,0.434421,0.962515,0.870952,0.23364,0.663916,0.540671,0.826822,0.319502,0.956746,0.104088,0.469579,0.964749,0.966287,0.468833,0.921948,0.878563,0.0474335,0.460996,0.752152,0.554571,0.519584,0.649939,0.00575387,0.768953,0.389775,0.011943,0.44644,0.430879,0.853445,0.143838,0.412778,0.114522,0.739399,0.0190071,0.125192,0.143157,0.49851,0.218449,0.881006,0.225757,0.376704,0.663744,0.0549026,0.978381,0.76832,0.534157,0.102803,0.443537,0.625476,0.301336,0.168454,0.5187,0.809193,0.834139,0.839399,0.25346,0.810544,0.451324,0.556535,0.312037,0.100468,0.0674376,0.598773,0.717019,0.202535,0.373483,0.682428,0.93848,0.10442,0.532486,0.60062,0.551203,0.53412,0.769431,0.787858,0.550369,0.514753,0.24378,0.668598,0.243857,0.38784,0.742218,0.622168,0.610871,0.183724,0.890441,0.301261,0.0921415,0.0959099,0.479209,0.595417,0.268927,0.0076322,0.956379,0.725739,0.716183,0.294316,0.0615497,0.417252,0.694853,0.703388,0.144251,0.0144662,0.159912,0.469988,0.142542,0.19272,0.530142,0.210534,0.702466,0.326555,0.115353,0.729302,0.76168,0.628431,0.970033,0.960351,0.488041,0.867637,0.467821,0.115659,0.887776,0.413838,0.287741,0.0502521,0.65691,0.927024,0.93315,0.835216,0.0556073,0.737007,0.917264,0.523808,0.884998,0.493468,0.078976,0.454533,0.622922,0.932404,0.236886,0.396384,0.533939,0.907775,0.971201,0.769954,0.182693,0.749777,0.247866,0.315221,0.933029,0.912573,0.550327,0.83188,0.680141,0.175893,0.0408149,0.681798,0.487272,0.293,0.288202,0.853765,0.86731,0.911521,0.730345,0.823947,0.143017,0.87171,0.504495,0.377734,0.894618,0.647896,0.588681,0.0900667,0.279035,0.0190427,0.8213,0.652463,0.364054,0.69494,0.922689,0.482536,0.473081,0.691608,0.825155,0.364264,0.615757,0.763861,0.84477,0.319477,0.357396,0.46932,0.870038,0.964401,0.439741,0.627276,0.807072,0.0683978,0.515732,0.0747828,0.202777,0.254669,0.229222,0.345071,0.152769,0.614958,0.86515,0.274587,0.66637,0.408938,0.954292,0.326523,0.1913,0.41733,0.0954888,0.152579,0.448688,0.491906,0.00967693,0.587526,0.54365,0.97359,0.0536484,0.398864,0.196598,0.671476,0.0610806,0.975214,0.410471,0.0612398,0.95995,0.406834,0.284385,0.25302,0.552959,0.65884,0.680491,0.0338602,0.513544,0.270405,0.189437,0.0652794,0.105668,0.225485,0.763349,0.844709,0.583539,0.905601,0.959194,0.402488,0.254964,0.58566,0.958737,0.822585,0.777244,0.184966,0.918759,0.897902,0.367443,0.532928,0.366461,0.969654,0.898908,0.160768,0.254301,0.810962,0.0775752,0.765624,0.726147,0.146732,0.174741,0.263787,0.286555,0.175457,0.662533,0.516211,0.230239,0.730896,0.346432,0.472802,0.918812,0.0887962,0.695997,0.2891,0.110809,0.00742704,0.668308,0.0803744,0.91221,0.93384,0.0296679,0.646787,0.0903113,0.462369,0.363033,0.39087,0.563908,0.549334,0.223027,0.203835,0.702459,0.782081,0.753671,0.326066,0.489614,0.803468,0.805421,0.97658,0.682591,0.126823,0.380578,0.309011,0.357986,0.607202,0.49,0.389359,0.329911,0.496058,0.867666,0.154278,0.0682371,0.655315,0.546512,0.219332,0.62456,0.941364,0.733979,0.785664,0.519117,0.262315,0.540219,0.0151632,0.449676,0.934416,0.478976,0.724479,0.572108,0.774054,0.587287,0.761759,0.422513,0.216644,0.767724,0.197169,0.414053,0.54807,0.556191,0.814466,0.214429,0.628642,0.322522,0.519805,0.323743,0.384063,0.228178,0.52866,0.627174,0.808623,0.0520095,0.117427,0.670696,0.538366,0.0454071,0.594826,0.0744219,0.741746,0.560605,0.12462,0.954146,0.308123,0.519975,0.572249,0.981709,0.790435,0.619987,0.674629,0.424022,0.553474,0.221522,0.421685,0.396286,0.418284,0.892512,0.359966,0.303776,0.966368,0.153151,0.878966,0.630843,0.785334,0.505457,0.054942,0.0688648,0.26322,0.97716,0.170074,0.627538,0.018923,0.317571,0.945649,0.938305,0.889784,0.639759,0.699759,0.711125,0.605864,0.462641,0.765459,0.62448,0.684559,0.605893,0.206744,0.0187995,0.150411,0.643635,0.755309,0.21462,0.760429,0.859484,0.788264,0.313137,0.971994,0.882342,0.254708,0.505822,0.453142,0.6717,0.429171,0.81738,0.628973,0.0316024,0.665782,0.259855,0.447905,0.363963,0.164988,0.974875,0.819913,0.398941,0.684007,0.340871,0.152168,0.156807,0.0457731,0.989059,0.943278,0.543888,0.105595,0.516325,0.126392,0.466246,0.825352,0.826541,0.489914,0.309428,0.566407,0.281264,0.90812,0.0943046,0.506555,0.511151,0.293926,0.173602,0.13361,0.574565,0.870403,0.336083,0.477701,0.163776,0.0148281,0.0931278,0.973007,0.842678,0.65571,0.851106,0.361228,0.25714,0.0346416,0.962617,0.376915,0.427237,0.39646,0.404842,0.962929,0.101732,0.239895,0.349117,0.512142,0.452597,0.755532,0.500694,0.726143,0.277294,0.262047,0.170262,0.283073,0.250157,0.368116,0.435359,0.288985,0.491378,0.263896,0.802734,0.735653,0.162555,0.212282,0.790104,0.253262,0.518039,0.145354,0.702639,0.224976,0.630983,0.508579,0.143208,0.259242,0.327173,0.0567544,0.311271,0.716317,0.343072,0.998709,0.116377,0.802162,0.894226,0.745805,0.650996,0.497104,0.856628,0.0574073,0.632591,0.991062,0.999227,0.581374,0.995372,0.501955,0.0804037,0.763805,0.00329727,0.055968,0.0887049,0.657553,0.218597,0.511915,0.376804,0.383301,0.451772,0.743784,0.247,0.351136,0.586079,0.56166,0.918494,0.0361519,0.506708,0.868219,0.44661,0.553293,0.290154,0.134931,0.134265,0.48024,|0.801092,0.761624,0.510435,0.0804618,0.739887,0.601972,0.360083,0.865598,0.819936,0.858865,0.491199,0.886975,0.194339,0.652154,0.789637,0.54014,0.848942,0.176332,0.9051,0.821426,0.421508,0.494587,0.383293,0.321102,0.0475134,0.381349,0.630626,0.145256,0.123114,0.232586,0.338701,0.271726,0.737795,0.101575,0.512943,0.912052,0.170121,0.872825,0.641047,0.368618,0.323765,0.509927,0.808993,0.44601,0.292877,0.883229,0.645696,0.60353,0.572924,0.583553,0.335959,0.206432,0.457995,0.301218,0.639147,0.642754,0.129068,0.964947,0.0165768,0.433315,0.18467,0.039102,0.707627,0.689597,0.297609,0.205122,0.729787,0.0352303,0.00939524,0.170843,0.714003,0.0620279,0.313219,0.665781,0.676249,0.111342,0.817368,0.330318,0.854915,0.0618764,0.808154,0.884377,0.140896,0.897194,0.450972,0.773337,0.471343,0.566018,0.419749,0.361956,0.694664,0.65339,0.343968,0.197833,0.805344,0.421942,0.125919,0.722397,0.253835,0.886011,0.454137,0.678997,0.870871,0.850685,0.318613,0.180046,0.467285,0.858346,0.366959,0.0836036,0.249549,0.740997,0.214616,0.252374,0.213861,0.82678,0.150572,0.329909,0.573899,0.00938034,0.549334,0.733978,0.606143,0.533371,0.840711,0.0670311,0.827831,0.0428972,0.137224,0.665553,0.267726,0.430928,0.270339,0.49505,0.0637885,0.369558,0.442022,0.385256,0.544329,0.511206,0.45192,0.00436777,0.615536,0.0579315,0.674074,0.704298,0.0316184,0.731451,0.156459,0.0115753,0.219286,0.998995,0.879415,0.894645,0.121566,0.767693,0.984158,0.629092,0.173349,0.440272,0.238188,0.748628,0.234806,0.860166,0.694844,0.909411,0.901985,0.533006,0.667917,0.331815,0.636493,0.575528,0.893644,0.702274,0.0187438,0.462736,0.343931,0.506736,0.309837,0.387798,0.722134,0.285508,0.530926,0.330465,0.547663,0.138025,0.589018,0.657721,0.415985,0.779982,0.434221,0.419183,0.212444,0.942696,0.346634,0.346519,0.565396,0.277251,0.0221326,0.520725,0.593702,0.963049,0.305304,0.0894216,0.621596,0.991105,0.599325,0.881615,0.488365,0.646793,0.9993,0.341227,0.312454,0.405739,0.0754564,0.451731,0.666247,0.781762,0.666746,0.579734,0.763808,0.289484,0.973892,0.880892,0.048042,0.285914,0.789297,0.928757,0.213351,0.746503,0.166882,0.975052,0.452918,0.447009,0.404868,0.865407,0.803032,0.314313,0.281639,0.444014,0.240067,0.597393,0.10105,0.591548,0.806512,0.672729,0.325614,0.164499,0.22452,0.583518,0.194241,0.701879,0.41232,0.790864,0.0579553,0.674839,0.13692,0.0173326,0.555737,0.718626,0.633334,0.971652,0.570071,0.713222,0.0959949,0.29017,0.198136,0.107466,0.981381,0.521379,0.0776097,0.955599,0.933741,0.919572,0.19027,0.483928,0.00182843,0.648015,0.24023,0.620259,0.933187,0.372083,0.0527526,0.899656,0.769926,0.117399,0.110633,0.982259,0.653698,0.404018,0.672884,0.314103,0.0655486,0.240446,0.985305,0.200794,0.184642,0.699973,0.574638,0.0967292,0.699222,0.690436,0.242938,0.513984,0.0321875,0.41325,0.772465,0.0540515,0.249209,0.174885,0.523513,0.103722,0.145965,0.819612,0.929125,0.864618,0.828114,0.426702,0.271003,0.898281,0.802159,0.514381,0.0285172,0.501125,0.250882,0.111595,0.960574,0.337448,0.551506,0.348454,0.509947,0.637578,0.695595,0.585238,0.00265485,0.381034,0.918207,0.031709,0.291486,0.0127011,0.336809,0.6295,0.579755,0.820611,0.817316,0.489828,0.671328,0.454561,0.39758,0.843977,0.261878,0.691118,0.756427,0.21397,0.667629,0.854738,0.178813,0.654161,0.277729,0.81141,0.042954,0.387411,0.862989,0.715745,0.31561,0.275604,0.462209,0.233224,0.628126,0.36608,0.723471,0.972781,0.0465648,0.508409,0.184289,0.172427,0.245864,0.507752,0.889858,0.111669,0.492373,0.790845,0.920412,0.0816449,0.71541,0.31272,0.74098,0.0488949,0.226665,0.0685766,0.204937,0.409714,0.392224,0.0550812,0.0795212,0.928174,0.864987,0.0339699,0.857344,0.46376,0.776385,0.587772,0.443566,0.525351,0.471429,0.826037,0.416071,0.231028,0.982218,0.0290739,0.255435,0.30933,0.0900877,0.813584,0.180869,0.846408,0.874252,0.507059,0.0778924,0.7485,0.448119,0.210354,0.764447,0.249961,0.805141,0.447092,0.735541,0.804997,0.136988,0.211388,0.862388,0.336567,0.34913,0.753117,0.718001,0.74052,0.733318,0.951039,0.15057,0.25547,0.013645,0.127155,0.519367,0.0918952,0.10654,0.32294,0.429514,0.800484,0.723707,0.637066,0.290782,0.2674,0.537341,0.0471596,0.979146,0.402464,0.576955,0.799644,0.353355,0.208135,0.107246,0.823405,0.982285,0.409838,0.00641841,0.594033,0.583027,0.227949,0.101316,0.299373,0.883051,0.827514,0.376446,0.978898,0.248165,0.113141,0.377068,0.656509,0.689265,0.996191,0.804441,0.989229,0.972821,0.76159,0.439454,0.914148,0.5392,0.183183,0.289227,0.579649,0.0748298,0.299526,0.400072,0.178517,0.355495,0.125521,0.202713,0.888618,0.698269,0.829402,0.283102,0.192535,0.391005,0.488869,0.700809,0.229341,0.0989553,0.420845,0.0171663,0.531516,0.766398,0.0273824,0.665688,0.876062,0.398817,0.58728,0.702964,0.507375,0.546018,0.373121,0.111738,0.194869,0.211921,0.440398,0.725945,0.00497985,0.407088,0.0233439,0.0980489,0.837693,0.0255787,0.228547,0.928338,0.790331,0.151168,0.0794793,0.424392,0.126792,0.658907,0.0369603,0.472693,0.658759,0.57054,0.124157,0.687833,0.822468,0.967461,0.198348,0.518056,0.249779,0.554716,0.474363,0.207633,0.405564,0.463034,0.458341,0.546955,0.0644616,0.132347,0.317379,0.441165,0.678133,0.311078,0.0979478,0.633025,0.159127,0.592577,0.0175394,0.294162,0.158099,0.127437,0.88432,0.496218,0.874705,0.840091,0.672868,0.295394,0.67603,0.833158,0.124021,0.168423,0.482952,0.179429,0.647894,0.842483,0.283217,0.219822,0.364231,0.693183,0.913779,0.037127,0.262078,0.0398416,0.962299,0.850205,0.0429785,0.365677,0.560425,0.387402,0.655682,0.950077,0.434205,0.435146,0.810694,0.784149,0.746327,0.195271,0.288173,0.114344,0.0293031,0.939611,0.374852,0.772472,0.607223,0.651401,0.443163,0.792215,0.127602,0.547985,0.353735,0.327794,0.201563,0.552406,0.2018,0.866569,0.510592,0.580103,0.933299,0.183162,0.266959,0.351288,0.3071,0.57184,0.375692,0.459586,0.0344674,0.532787,0.310454,0.701469,0.248601,0.971659,0.725035,0.554918,0.254257,0.0202918,0.816075,0.0114515,0.045294,0.500073,0.960743,0.995723,0.110607,0.266912,0.894993,0.79978,0.962589,0.332937,0.414207,0.296702,0.544209,0.515712,0.772976,0.518892,0.84326,0.0816633,0.172249,0.366956,0.0502122,0.576787,0.319116,0.00700164,0.853805,0.23763,0.0704173,0.509662,0.361072,0.746783,0.114146,0.740898,0.278518,0.160877,0.444267,0.449429,0.496059,0.702153,0.661496,0.344703,0.986046,0.0278141,0.0628964,0.705883,0.455331,0.439486,0.155706,0.499094,0.610293,0.527752,0.632506,0.543317,0.781938,0.145238,0.691556,0.494056,0.383349,0.452055,0.024453,0.118307,0.336692,0.767775,0.34681,0.944258,0.0209004,0.457971,0.331241,0.566161,0.815192,0.73034,0.0931987,0.918578,0.458006,0.680589,0.527072,0.741936,0.695398,0.375457,0.708378,0.437912,0.890554,0.0171708,0.108993,0.2264,0.238183,0.889347,0.385086,0.125634,0.173026,0.955698,0.0481654,0.627346,0.731452,0.550476,0.572341,0.990635,0.0521635,0.310531,0.185395,0.493929,0.167873,0.364884,0.455035,0.91672,0.73769,0.664433,0.20734,0.337295,0.591898,0.955712,0.75807,0.220358,0.522549,0.119698,0.35704,0.851655,0.215519,0.0842791,0.906313,0.415877,0.909239,0.0652721,0.426238,0.338644,0.883338,0.730464,0.318349,0.201561,0.786563,0.646479,0.926368,0.818972,0.636274,0.995937,0.521709,0.68692,0.248369,0.548431,0.543007,0.216891,0.853777,0.399951,0.621031,0.409199,0.190443,0.505352,0.67397,0.236269,0.0285429,0.880634,0.524734,0.834524,0.0474535,0.793393,0.936026,0.611957,0.897547,0.557014,0.868563,0.314146,0.867699,0.579821,0.938135,0.208545,0.912516,0.376198,0.911721,0.585016,0.558416,0.497495,0.372079,0.610844,0.648228,0.726917,0.521548,0.847367,0.550447,0.884047,0.665823,0.180223,0.520516,0.528636,0.338035,0.291196,0.318682,0.0212428,0.0233366,0.908957,0.297894,0.120458,0.919949,0.755749,0.550004,0.0378868,0.0989593,0.264469,0.686515,0.81302,0.313779,0.669022,0.278416,0.0390636,0.867454,0.586445,0.153081,0.210107,0.417197,0.849652,0.0513951,0.725761,0.89587,0.304967,0.602909,0.0418572,0.740562,0.682549,0.216039,0.667044,0.509429,0.485658,0.414753,0.9601,0.468726,0.275768,0.857758,0.787038,0.736502,0.641376,0.958503,0.634912,0.359815,0.0599715,0.833979,0.142597,0.875235,0.114709,0.654538,0.299786,0.993229,0.0681403,0.704824,0.746819,0.94085,0.260536,0.120533,0.27973,0.711279,0.845882,0.441663,0.154755,0.355072,0.895758,0.578512,0.694475,0.294908,0.235923,0.35981,0.600459,0.808651,0.307637,0.870548,0.151566,0.793607,0.384516,0.555951,0.303383,0.934218,0.938233,0.0115796,0.983108,0.668323,0.509963,0.0511528,0.528166,0.220655,0.466118,0.55251,0.660911,0.113489,0.758406,0.714771,0.551441,0.437179,0.374166,0.168399,0.317998,0.763684,0.724019,0.27915,0.756053,0.164755,0.782532,0.33801,0.283508,0.742121,0.688722,0.209932,0.802451,0.37146,0.3868,0.108638,0.403073,0.533817,0.488568,0.304087,0.584144,0.46079,0.895557,0.257175,0.655863,0.687452,0.395169,0.991373,0.842457,0.15376,0.424026,0.572218,0.314893,0.461552,0.0915636,0.983689,0.344853,0.208815,0.784071,0.722853,0.707847,0.904959,0.894661,0.0537394,0.964649,0.402291,0.743787,0.153351,0.974891,0.835537,0.0508044,0.177877,0.875778,0.884377,0.715674,0.130172,0.297693,0.81916,0.718432,0.631449,0.594323,0.541683,0.482823,0.322411,0.814853,0.0776768,0.540924,0.989242,|0.0154358,0.827432,0.775913,0.128901,0.011898,0.75393,0.728366,0.890264,0.656586,0.466061,0.616382,0.865897,0.364375,0.929624,0.362742,0.591262,0.906764,0.3886,0.534201,0.955199,0.547238,0.112061,0.807887,0.578268,0.914607,0.0142447,0.201109,0.270643,0.268022,0.961544,0.386621,0.58893,0.271353,0.654475,0.33808,0.924182,0.370138,0.567047,0.868745,0.386544,0.111899,0.0701153,0.588557,0.942079,0.0213927,0.491301,0.925786,0.147842,0.0972503,0.110221,0.114613,0.69573,0.999619,0.925035,0.175392,0.888522,0.176742,0.966993,0.245322,0.748101,0.291899,0.980386,0.392255,0.0320796,0.994341,0.699244,0.780051,0.0598845,0.896788,0.478072,0.243318,0.745631,0.909179,0.253365,0.256714,0.810832,0.0907681,0.531147,0.0663918,0.214875,0.171203,0.396913,0.770061,0.161997,0.971904,0.611309,0.678786,0.497709,0.678282,0.969888,0.286748,0.712363,0.409935,0.828236,0.76032,0.241882,0.982434,0.436473,0.949651,0.822608,0.224477,0.943483,0.125161,0.510618,0.994246,0.127779,0.560638,0.506045,0.412907,0.447404,0.159861,0.162504,0.788582,0.867065,0.382077,0.251128,0.0610029,0.26333,0.170239,0.25655,0.91094,0.765651,0.723653,0.951431,0.430257,0.192174,0.262771,0.364979,0.202784,0.181401,0.92426,0.384333,0.543778,0.580127,0.414671,0.390587,0.279422,0.941507,0.558738,0.511526,0.864333,0.0900943,0.382382,0.905924,0.573668,0.18321,0.329413,0.313549,0.868451,0.627908,0.392828,0.0820944,0.074289,0.932767,0.642951,0.146767,0.787155,0.884881,0.501895,0.102357,0.499118,0.433122,0.139043,0.78569,0.345658,0.636063,0.939553,0.451462,0.347537,0.743725,0.0765755,0.0921485,0.0351651,0.868904,0.15687,0.144918,0.632441,0.0475549,0.855871,0.506733,0.486657,0.770696,0.505487,0.897328,0.571467,0.882083,0.373731,0.573872,0.218973,0.057383,0.690274,0.549075,0.555645,0.351028,0.279112,0.435674,0.439772,0.205663,0.250998,0.670434,0.854424,0.0899716,0.985561,0.646884,0.556986,0.831954,0.00939876,0.683295,0.668067,0.37391,0.939681,0.438983,0.273232,0.351912,0.603729,0.976104,0.369857,0.0517966,0.283056,0.124582,0.939445,0.826367,0.639355,0.322844,0.378662,0.744913,0.43333,0.844241,0.855819,0.791486,0.486989,0.220349,0.448287,0.194178,0.579584,0.365236,0.314591,0.030846,0.0408089,0.163854,0.0479082,0.468221,0.924118,0.918608,0.210958,0.919104,0.182415,0.136114,0.888608,0.949357,0.30417,0.148956,0.836862,0.435219,0.901641,0.814902,0.531754,0.0881152,0.0466204,0.371084,0.208136,0.862753,0.461143,0.0957295,0.468123,0.699159,0.144955,0.910322,0.0262224,0.790034,0.356419,0.690211,0.438633,0.173821,0.63043,0.529231,0.482843,0.984309,0.138226,0.345521,0.023497,0.447878,0.167389,0.315165,0.274374,0.0980261,0.395562,0.947407,0.124281,0.163622,0.18035,0.174355,0.577326,0.0699477,0.811526,0.903825,0.618569,0.10177,0.0934876,0.6843,0.0814955,0.433962,0.971527,0.43914,0.763074,0.998925,0.725347,0.769499,0.676115,0.113446,0.921928,0.12191,0.993053,0.53219,0.445,0.228628,0.215541,0.0443325,0.0602449,0.208504,0.418097,0.942742,0.644122,0.142961,0.707474,0.184015,0.402054,0.2003,0.149679,0.0849633,0.221503,0.767195,0.331912,0.170601,0.66612,0.295401,0.70677,0.555695,0.8983,0.586875,0.480088,0.376884,0.442651,0.504241,0.203163,0.232418,0.908824,0.751284,0.967597,0.534079,0.0732012,0.0981222,0.698809,0.158355,0.76787,0.493824,0.766604,0.828505,0.443083,0.565398,0.0496776,0.845331,0.790638,0.0200092,0.161152,0.324069,0.857794,0.353499,0.117058,0.0687172,0.498338,0.941937,0.53888,0.895612,0.267226,0.4199,0.604863,0.092229,0.661106,0.989269,0.143412,0.173856,0.579491,0.637093,0.920029,0.945664,0.973409,0.864064,0.0813489,0.265368,0.221207,0.149448,0.417265,0.219341,0.535666,0.03942,0.838249,0.0776474,0.370077,0.00329727,0.804399,0.378131,0.956845,0.579664,0.669786,0.846187,0.823196,0.547739,0.311197,0.782089,0.953052,0.848687,0.342741,0.85395,0.311819,0.425289,0.0402638,0.730849,0.881116,0.657629,0.879139,0.720558,0.5556,0.456913,0.491727,0.33177,0.937185,0.555898,0.927072,0.0969411,0.0652291,0.141143,0.976704,0.225896,0.596271,0.135718,0.397359,0.36935,0.167211,0.784044,0.105772,0.451064,0.610597,0.744174,0.651963,0.794387,0.296483,0.529238,0.0363875,0.272447,0.0567576,0.0637456,0.557747,0.518453,0.554564,0.0280987,0.150509,0.719337,0.184056,0.0862871,0.626006,0.706499,0.137341,0.483172,0.541247,0.346334,0.823207,0.283848,0.563599,0.595591,0.280645,0.427123,0.0899029,0.193447,0.902121,0.741444,0.60052,0.932788,0.899688,0.235463,0.31335,0.343949,0.222544,0.644018,0.645495,0.621166,0.166003,0.213701,0.170535,0.872304,0.481164,0.708405,0.0539802,0.203586,0.284492,0.585411,0.559656,0.79209,0.460298,0.768062,0.483367,0.0901812,0.757306,0.592465,0.950507,0.794853,0.310186,0.594411,0.455285,0.769864,0.125465,0.922255,0.63826,0.429335,0.470952,0.0722758,0.853352,0.764048,0.823851,0.200408,0.337694,0.100482,0.890598,0.172712,0.198264,0.326273,0.548926,0.174581,0.35458,0.868126,0.523696,0.363115,0.52405,0.640108,0.645959,0.785698,0.598298,0.238208,0.697953,0.22194,0.119442,0.169672,0.0385991,0.717107,0.355256,0.912914,0.525084,0.0563442,0.615498,0.381527,0.58403,0.227122,0.31881,0.614572,0.654324,0.0733274,0.0255511,0.552848,0.407452,0.842733,0.706474,0.329705,0.878609,0.252903,0.210312,0.500911,0.875183,0.657194,0.963459,0.399147,0.154528,0.483193,0.435868,0.507854,0.250562,0.733714,0.685929,0.313991,0.867123,0.389257,0.234103,0.613227,0.0723596,0.0686283,0.529006,0.747458,0.932958,0.664132,0.332687,0.739419,0.526459,0.66929,0.413914,0.287044,0.0168327,0.993327,0.226657,0.415276,0.952961,0.365277,0.602479,0.625071,0.884496,0.953876,0.368319,0.288155,0.120346,0.248395,0.46797,0.302622,0.78898,0.552062,0.353005,0.291087,0.814676,0.439359,0.422532,0.987844,0.0405979,0.250745,0.378984,0.112777,0.527924,0.906474,0.794722,0.0116476,0.237339,0.740217,0.532471,0.016586,0.103909,0.827661,0.146434,0.896386,0.815486,0.561885,0.796459,0.889819,0.323356,0.984155,0.921051,0.955757,0.0249,0.121182,0.277127,0.0803427,0.565947,0.858023,0.18185,0.658058,0.161356,0.590861,0.813469,0.155832,0.751831,0.137529,0.336704,0.348544,0.179851,0.0186165,0.950293,0.867019,0.598727,0.222043,0.578048,0.138375,0.218206,0.23357,0.713785,0.568583,0.461652,0.664288,0.540905,0.667077,0.970426,0.0450473,0.535461,0.206393,0.398683,0.465383,0.794571,0.418861,0.196189,0.842774,0.609111,0.450035,0.823791,0.0172939,0.532708,0.533214,0.779898,0.479873,0.438302,0.217667,0.299451,0.777067,0.659285,0.572036,0.588698,0.662295,0.13446,0.589687,0.200123,0.167852,0.890268,0.0772378,0.517572,0.900573,0.64773,0.488534,0.138576,0.346528,0.548074,0.283796,0.292214,0.390287,0.319645,0.171066,0.179749,0.972257,0.86309,0.907522,0.238707,0.257809,0.699728,0.352882,0.42291,0.473421,0.675711,0.443925,0.649669,0.282741,0.238313,0.116324,0.632559,0.157442,0.183523,0.386692,0.997529,0.782059,0.476612,0.210599,0.232659,0.24335,0.510386,0.666782,0.695784,0.24368,0.759535,0.503599,0.447007,0.371348,0.423162,0.362952,0.488074,0.561251,0.593986,0.410905,0.745944,0.827783,0.160543,0.389898,0.243276,0.606015,0.984282,0.887595,0.848288,0.549139,0.362607,0.29915,0.0647799,0.296148,0.450175,0.831876,0.605686,0.128014,0.672439,0.450502,0.248135,0.54009,0.470689,0.259413,0.332239,0.460628,0.511883,0.914827,0.783048,0.350727,0.846647,0.082828,0.485143,0.997716,0.264978,0.65504,0.0572596,0.649075,0.736864,0.571075,0.246939,0.851452,0.484635,0.24427,0.868114,0.261234,0.845717,0.156975,0.970276,0.0796136,0.33852,0.956438,0.923108,0.524934,0.798658,0.253848,0.0521046,0.86723,0.416381,0.59466,0.84019,0.755919,0.621302,0.56009,0.612959,0.11386,0.502635,0.83002,0.675841,0.76441,0.0588135,0.148261,0.0361155,0.992561,0.77406,0.0984472,0.960933,0.649099,0.795483,0.000447631,0.813942,0.873819,0.64808,0.338898,0.792146,0.715172,0.0245119,0.539825,0.116243,0.718855,0.209774,0.582606,0.875023,0.177261,0.355927,0.114533,0.0849833,0.34772,0.0523442,0.187407,0.871431,0.489246,0.864819,0.776341,0.395592,0.849814,0.319415,0.702701,0.624232,0.671945,0.665066,0.590979,0.72761,0.918222,0.634903,0.569183,0.928006,0.462388,0.271565,0.261075,0.98609,0.694129,0.691643,0.639118,0.298451,0.924018,0.895329,0.366566,0.205282,0.31181,0.287386,0.913314,0.36655,0.217285,0.878102,0.742343,0.180019,0.568676,0.572506,0.443529,0.832845,0.736617,0.947641,0.915855,0.210067,0.437756,0.540025,0.809075,0.703793,0.110227,0.154459,0.326065,0.795519,0.695886,0.433491,0.286631,0.569911,0.0665084,0.181141,0.719991,0.533349,0.825359,0.509985,0.872468,0.481375,0.394532,0.0531461,0.428913,0.506506,0.0808156,0.503462,0.358377,0.429712,0.754056,0.354437,0.0857891,0.53639,0.009646,0.476908,0.0829579,0.741184,0.837482,0.321953,0.078316,0.648312,0.606476,0.990563,0.111738,0.846208,0.237618,0.170967,0.388683,0.843814,0.926014,0.0454318,0.0494223,0.569942,0.663555,0.97158,0.430467,0.035606,0.40892,0.475358,0.537189,0.589021,0.808189,0.664019,0.49313,0.077284,0.990639,0.804209,0.779452,0.719313,0.992612,0.0650403,0.826242,0.196987,0.590514,0.942284,0.285254,0.173044,0.845979,0.674821,0.370222,0.84144,0.607561,0.494985,0.923256,0.756893,0.496242,0.271368,0.965814,0.510484,0.160567,0.333274,0.586915,0.0385067,0.556572,0.974333,0.819472,0.77297,0.17289,|0.843043,0.804081,0.787544,0.529056,0.161164,0.0660012,0.45375,0.286808,0.924442,0.724474,0.18288,0.461736,0.964452,0.954123,0.493591,0.819383,0.749191,0.0481046,0.183921,0.651861,0.921214,0.45147,0.903648,0.450664,0.297785,0.610236,0.553526,0.575725,0.953756,0.642004,0.36402,0.851717,0.721325,0.247765,0.204632,0.69608,0.949012,0.541712,0.510016,0.0549637,0.313729,0.678423,0.744872,0.9057,0.391543,0.564826,0.383753,0.979154,0.709364,0.306602,0.903716,0.665362,0.817142,0.488329,0.718366,0.651516,0.228481,0.659437,0.310144,0.840201,0.215519,0.070562,0.743808,0.607925,0.649878,0.189613,0.146017,0.120087,0.181476,0.197938,0.317012,0.107909,0.815308,0.295281,0.451872,0.744036,0.329014,0.893554,0.160363,0.891926,0.152523,0.291803,0.83454,0.720921,0.00314623,0.294415,0.605763,0.539034,0.64382,0.609195,0.98517,0.763944,0.561083,0.272038,0.714,0.308834,0.192386,0.204429,0.351553,0.894551,0.881999,0.453292,0.353707,0.573216,0.443098,0.19645,0.767826,0.281757,0.798377,0.585182,0.794856,0.976139,0.570108,0.651414,0.881434,0.549121,0.12438,0.0753244,0.984749,0.557461,0.398857,0.662611,0.741001,0.284727,0.895817,0.721503,0.478988,0.928763,0.750533,0.0501494,0.159883,0.172878,0.000557125,0.865405,0.378881,0.907416,0.0765487,0.316287,0.712389,0.74675,0.797617,0.225364,0.646469,0.151391,0.886861,0.245362,0.370052,0.60449,0.500231,0.291004,0.00018996,0.273521,0.082926,0.763381,0.220069,0.196373,0.995108,0.13208,0.606135,0.813926,0.873269,0.384573,0.717292,0.505835,0.870791,0.559224,0.212945,0.726634,0.644427,0.0938532,0.412826,0.803062,0.163872,0.699754,0.315522,0.505294,0.354174,0.483489,0.735003,0.787002,0.525122,0.701685,0.508051,0.111448,0.0448276,0.95076,0.173606,0.422942,0.543575,0.667017,0.251378,0.770128,0.0990299,0.469276,0.304294,0.962835,0.96389,0.475099,0.176484,0.904293,0.335259,0.796104,0.600892,0.536063,0.71073,0.134157,0.0357304,0.451178,0.0769449,0.322566,0.56856,0.847175,0.585982,0.689699,0.728622,0.855815,0.84727,0.204763,0.0633501,0.502778,0.17849,0.636737,0.0248153,0.0570736,0.577092,0.0719759,0.818314,0.880825,0.546726,0.16139,0.376466,0.059234,0.442595,0.632007,0.632013,0.645078,0.0871929,0.905989,0.745149,0.621442,0.0606025,0.771293,0.664701,0.409414,0.788954,0.13621,0.586754,0.765647,0.7633,0.666668,0.85915,0.824612,0.590841,0.799038,0.319557,0.0618248,0.34744,0.755883,0.228794,0.131667,0.287225,0.935166,0.292913,0.204575,0.642978,0.867092,0.774606,0.680944,0.746505,0.988152,0.738441,0.613017,0.626225,0.892692,0.0137604,0.264449,0.964621,0.15513,0.162437,0.405444,0.0617804,0.57312,0.449681,0.97764,0.681827,0.281607,0.176051,0.0412246,0.357728,0.173802,0.117672,0.919193,0.188527,0.136333,0.806274,0.00629336,0.95858,0.854904,0.332526,0.275152,0.421126,0.185709,0.68073,0.85442,0.290692,0.937491,0.601976,0.221759,0.76503,0.317255,0.737138,0.29983,0.939539,0.115164,0.927051,0.0892746,0.125798,0.44119,0.324795,0.820699,0.319609,0.933988,0.189111,0.165652,0.113113,0.0489352,0.0695677,0.912896,0.115714,0.124242,0.967907,0.072835,0.149931,0.465081,0.814611,0.302098,0.91839,0.858057,0.725379,0.88827,0.634019,0.917021,0.619554,0.823064,0.767654,0.302368,0.768288,0.245255,0.139583,0.221978,0.791475,0.527784,0.429804,0.680208,0.993115,0.848126,0.510665,0.30675,0.369018,0.78857,0.522369,0.95162,0.487964,0.0582668,0.378413,0.710938,0.568324,0.447775,0.461231,0.408721,0.172472,0.564392,0.614335,0.705807,0.945283,0.651633,0.137186,0.165058,0.965429,0.173632,0.194803,0.835163,0.0498115,0.682714,0.158614,0.194649,0.492678,0.418322,0.0384377,0.595504,0.109599,0.00383538,0.920572,0.486924,0.734783,0.880181,0.43843,0.190383,0.0533165,0.967302,0.950793,0.275207,0.435627,0.0186489,0.0985678,0.588832,0.333742,0.654861,0.380988,0.510074,0.860926,0.060223,0.144185,0.985617,0.0724422,0.740355,0.953009,0.187802,0.986257,0.784782,0.477591,0.754557,0.400678,0.876854,0.467556,0.894482,0.634618,0.137508,0.592711,0.0974082,0.564646,0.675736,0.566373,0.697672,0.107614,0.708356,0.925675,0.0726927,0.739541,0.851062,0.744163,0.653884,0.162935,0.883654,0.567255,0.974755,0.218171,0.975923,0.645424,0.78071,0.192194,0.947106,0.787267,0.695284,0.568394,0.966874,0.678682,0.298845,0.613236,0.103806,0.785524,0.727507,0.610077,0.00425333,0.744025,0.0481407,0.910075,0.149761,0.851761,0.0599518,0.418948,0.0380363,0.18131,0.296376,0.29819,0.344581,0.908651,0.964757,0.163547,0.0806224,0.64834,0.743403,0.096214,0.41924,0.13574,0.860387,0.770367,0.307976,0.87518,0.0790845,0.847459,0.497022,0.340929,0.221086,0.368296,0.524446,0.531924,0.287944,0.826142,0.349198,0.486894,0.637003,0.246441,0.511715,0.78003,0.0971729,0.832946,0.2974,0.886599,0.844913,0.893554,0.0785565,0.158419,0.0499087,0.439989,0.806909,0.203152,0.332614,0.494178,0.322538,0.397135,0.440885,0.617227,0.30127,0.317286,0.355726,0.0928664,0.145102,0.352833,0.708832,0.00574285,0.788094,0.605352,0.595437,0.279773,0.245457,0.433623,0.0931013,0.906815,0.722416,0.219222,0.559183,0.99592,0.991699,0.426492,0.0465071,0.824079,0.399054,0.225368,0.473947,0.725617,0.194078,0.691779,0.828347,0.416123,0.0188102,0.701118,0.681679,0.811708,0.944332,0.982519,0.486812,0.220441,0.721098,0.167821,0.00821739,0.989895,0.1783,0.211706,0.901941,0.849044,0.831084,0.393249,0.81483,0.0301462,0.194145,0.734025,0.941366,0.303703,0.0855844,0.55238,0.178256,0.96499,0.576972,0.936731,0.218939,0.859613,0.520986,0.644313,0.459323,0.96853,0.511471,0.0447223,0.590823,0.235121,0.0969898,0.587469,0.361285,0.970692,0.191997,0.565436,0.592585,0.215336,0.158459,0.417601,0.134992,0.919443,0.515234,0.468867,0.516299,0.275518,0.840083,0.783447,0.981095,0.489043,0.101018,0.674037,0.403424,0.776996,0.436121,0.00185466,0.661127,0.850039,0.378116,0.541914,0.96932,0.998904,0.629138,0.146617,0.766823,0.150771,0.102146,0.976147,0.132392,0.737665,0.576894,0.00574672,0.734161,0.0586221,0.0496379,0.389463,0.205897,0.105212,0.55883,0.0786598,0.622125,0.582255,0.248724,0.0868343,0.64217,0.248162,0.553031,0.477784,0.507793,0.430371,0.965214,0.765444,0.756391,0.120834,0.807771,0.376009,0.0974741,0.409545,0.364068,0.936597,0.0561202,0.767398,0.518651,0.580941,0.144655,0.260649,0.398405,0.243437,0.18874,0.578548,0.824818,0.966852,0.209185,0.707938,0.644091,0.186552,0.823954,0.0311446,0.456144,0.615856,0.475016,0.0259045,0.0838221,0.968879,0.926976,0.367783,0.158627,0.147744,0.805932,0.204661,0.947497,0.379053,0.0796884,0.712427,0.295996,0.506792,0.77781,0.743405,0.280319,0.92141,0.206957,0.601251,0.933394,0.0790296,0.30167,0.813365,0.0902181,0.676035,0.872764,0.701717,0.580032,0.719646,0.657124,0.919692,0.36542,0.446373,0.643317,0.169824,0.203656,0.284245,0.143854,0.0043093,0.32848,0.141125,0.667593,0.493917,0.00182527,0.305476,0.312793,0.685161,0.34941,0.891692,0.156057,0.224949,0.662435,0.0471662,0.895199,0.740583,0.917996,0.890838,0.0404313,0.775491,0.550629,0.567325,0.216296,0.354006,0.643081,0.553041,0.583218,0.382782,0.428242,0.464099,0.38956,0.1612,0.322341,0.00439501,0.238309,0.255704,0.0997313,0.165669,0.0776384,0.565421,0.90231,0.117752,0.860714,0.755519,0.842661,0.58305,0.627833,0.250893,0.680574,0.942843,0.277954,0.0284933,0.716643,0.534638,0.500671,0.476685,0.226588,0.310786,0.623361,0.867927,0.222652,0.0296216,0.0973312,0.124228,0.549722,0.0244961,0.618699,0.0315707,0.0751653,0.0341479,0.100569,0.975278,0.464116,0.450383,0.0425257,0.255499,0.827796,0.0739192,0.519988,0.30934,0.0273565,0.367885,0.991188,0.223903,0.309848,0.479318,0.116809,0.0297279,0.0609986,0.397926,0.445442,0.742847,0.571591,0.327351,0.294079,0.367561,0.72525,0.55155,0.822447,0.643897,0.0842169,0.91171,0.393898,0.787762,0.112948,0.347098,0.839979,0.806149,0.267164,0.66059,0.0611999,0.576973,0.430525,0.928702,0.628698,0.977,0.755017,0.310268,0.587814,0.939681,0.679357,0.153054,0.113106,0.466863,0.298524,0.385505,0.882791,0.40371,0.153885,0.463931,0.466011,0.872817,0.423668,0.69036,0.267052,0.630752,0.926758,0.305557,0.42632,0.852711,0.425965,0.817829,0.531027,0.865413,0.793707,0.671728,0.635447,0.306772,0.00444341,0.369489,0.764081,0.902401,0.162991,0.822286,0.240175,0.907807,0.665999,0.410118,0.4744,0.154331,0.477775,0.303173,0.0293582,0.698949,0.483548,0.961842,0.161558,0.708172,0.0114254,0.0946631,0.438474,0.435426,0.591527,0.0867658,0.0839925,0.615253,0.440598,0.258884,0.466742,0.594112,0.0193971,0.445235,0.874832,0.934181,0.14221,0.385448,0.871546,0.274637,0.0466688,0.971891,0.182378,0.703784,0.334974,0.178423,0.674082,0.423433,0.916197,0.416879,0.531942,0.44966,0.748374,0.782878,0.661665,0.406111,0.776663,0.292371,0.353717,0.432725,0.131638,0.737618,0.735425,0.582679,0.969198,0.12958,0.0416462,0.98936,0.128163,0.400642,0.283732,0.261236,0.462685,0.184785,0.136102,0.0144344,0.436377,0.907348,0.422926,0.613206,0.924348,0.537668,0.868648,0.269994,0.151215,0.0164246,0.595996,0.322537,0.366542,0.863223,0.823426,0.874237,0.725001,0.944801,0.606842,0.478259,0.501668,0.873507,0.638139,0.40825,0.897385,0.111216,0.265934,0.877522,0.947459,0.449146,0.155727,0.459517,0.109956,0.587427,0.714175,0.969868,0.247245,0.806918,0.407033,0.316417,0.147297,0.294129,0.359755,0.411665,0.594214,0.294364,0.0620011,0.179468,0.930055,|0.00306761,0.807943,0.648697,0.97369,0.667165,0.745487,0.0554634,0.799927,0.447552,0.0510134,0.534591,0.984459,0.672953,0.374662,0.715698,0.224561,0.330588,0.800127,0.106648,0.230105,0.125673,0.0053488,0.193803,0.356003,0.678145,0.200357,0.491082,0.641745,0.725432,0.326205,0.551816,0.443263,0.318648,0.621211,0.496606,0.220279,0.479759,0.503262,0.373402,0.484565,0.31017,0.977376,0.359014,0.689207,0.691913,0.829805,0.958295,0.156825,0.941043,0.907489,0.866798,0.599187,0.864259,0.288393,0.315258,0.896637,0.843505,0.346154,0.185591,0.313757,0.103731,0.953486,0.196968,0.868454,0.532573,0.598523,0.354805,0.830221,0.113036,0.117739,0.270599,0.66478,0.230124,0.630306,0.481071,0.19305,0.813617,0.912896,0.547889,0.410089,0.06151,0.810254,0.954035,0.566875,0.159987,0.842176,0.306133,0.527183,0.569673,0.200337,0.684104,0.121126,0.888015,0.500009,0.965586,0.924093,0.61677,0.809974,0.375266,0.858542,0.211555,0.811923,0.456171,0.208318,0.882461,0.748834,0.255271,0.584775,0.440186,0.779458,0.900692,0.690823,0.873927,0.941062,0.151593,0.721067,0.491233,0.731266,0.0904332,0.0361329,0.211676,0.28326,0.792157,0.716911,0.753131,0.540236,0.159572,0.63588,0.648344,0.6707,0.705708,0.488689,0.507827,0.983502,0.77249,0.14664,0.0564672,0.629865,0.7386,0.498029,0.7091,0.452898,0.0255585,0.264347,0.217294,0.898481,0.759266,0.617772,0.293815,0.317039,0.0553745,0.623537,0.0649903,0.23085,0.142597,0.749637,0.659214,0.871222,0.268012,0.0744511,0.424975,0.387192,0.86285,0.934953,0.108877,0.16637,0.224849,0.522553,0.689824,0.45745,0.980729,0.163383,0.208755,0.753096,0.0254646,0.478411,0.716554,0.351319,0.596436,0.321945,0.127137,0.286077,0.830449,0.644855,0.0329626,0.969932,0.213158,0.207022,0.897687,0.951631,0.710688,0.939111,0.189169,0.223464,0.0995597,0.563525,0.137831,0.529649,0.421382,0.366309,0.0540263,0.778013,0.598256,0.322443,0.674785,0.131752,0.706454,0.807392,0.458447,0.81567,0.480313,0.160571,0.788763,0.555139,0.0813259,0.800302,0.748571,0.0588405,0.677477,0.796524,0.102072,0.906307,0.584237,0.97067,0.895033,0.448921,0.105384,0.914075,0.0198212,0.946327,0.422814,0.464654,0.0523483,0.753081,0.459395,0.273437,0.407422,0.83097,0.294275,0.938027,0.273533,0.919362,0.611494,0.695222,0.512082,0.268885,0.79245,0.515708,0.0251579,0.837853,0.531149,0.207926,0.507903,0.602588,0.231692,0.613403,0.301422,0.470733,0.550441,0.286717,0.746346,0.664461,0.442076,0.872198,0.192944,0.523738,0.601555,0.750369,0.567378,0.240733,0.53972,0.186694,0.487291,0.670763,0.461429,0.567377,0.660652,0.618172,0.0372944,0.307683,0.0121416,0.0166825,0.279523,0.168887,0.0243279,0.130522,0.65576,0.473461,0.578874,0.749874,0.285634,0.158571,0.328306,0.351596,0.56528,0.265262,0.169393,0.937925,0.149364,0.209754,0.758182,0.222066,0.90072,0.231625,0.770305,0.539012,0.268181,0.080191,0.260558,0.105034,0.143417,0.146907,0.746626,0.134788,0.884136,0.708114,0.60726,0.714462,0.706939,0.781245,0.796142,0.404254,0.3587,0.279075,0.708683,0.740687,0.524904,0.33389,0.192702,0.900256,0.551964,0.258452,0.427424,0.921636,0.118679,0.927076,0.393527,0.317845,0.000655711,0.425602,0.669831,0.361953,0.965031,0.743958,0.93921,0.340186,0.680039,0.456093,0.135401,0.647535,0.330987,0.429824,0.594346,0.185591,0.530016,0.21001,0.716218,0.420559,0.320349,0.200092,0.587578,0.983949,0.232567,0.546134,0.884521,0.468498,0.838805,0.957413,0.403036,0.000900149,0.471111,0.647929,0.65729,0.281801,0.129677,0.278862,0.452709,0.110504,0.297355,0.932541,0.984731,0.224987,0.922701,0.942818,0.269937,0.0790857,0.11944,0.539545,0.274055,0.567453,0.66968,0.951071,0.11553,0.838803,0.402591,0.808591,0.283205,0.417696,0.844448,0.512869,0.53533,0.458661,0.269027,0.750665,0.564183,0.735359,0.700966,0.485691,0.456765,0.418039,0.701358,0.86258,0.743233,0.891244,0.667387,0.21006,0.201664,0.148356,0.618703,0.26764,0.727326,0.338304,0.193504,0.412592,0.995311,0.852919,0.246,0.398489,0.560803,0.756957,0.600607,0.075491,0.578605,0.8749,0.306974,0.0917641,0.245055,0.772956,0.260395,0.154321,0.5027,0.332131,0.820637,0.445232,0.920902,0.640129,0.64805,0.955054,0.375722,0.435676,0.27635,0.610646,0.165146,0.260715,0.744352,0.270849,0.0232402,0.0765026,0.119913,0.382455,0.956379,0.377488,0.922816,0.408177,0.729563,0.132517,0.912769,0.79373,0.13296,0.745567,0.223966,0.53138,0.808553,0.06954,0.594396,0.626432,0.926522,0.26741,0.459398,0.373696,0.66015,0.494252,0.441843,0.139902,0.203467,0.0486298,0.905917,0.433981,0.0217531,0.687375,0.772149,0.503963,0.0316877,0.998149,0.2107,0.737921,0.678145,0.738762,0.661063,0.45002,0.532089,0.347447,0.0133829,0.151651,0.19437,0.707166,0.0613465,0.94821,0.33831,0.306841,0.869595,0.905027,0.997488,0.529408,0.760485,0.173615,0.59917,0.264206,0.076998,0.801964,0.275959,0.891434,0.104462,0.348706,0.615674,0.432372,0.851156,0.0653355,0.878746,0.555833,0.461586,0.955183,0.791602,0.906657,0.0871775,0.036391,0.124638,0.37936,0.86451,0.231356,0.804946,0.668274,0.751904,0.41418,0.363551,0.804066,0.974689,0.0336896,0.242109,0.978965,0.263134,0.646011,0.450888,0.973306,0.617417,0.0936122,0.201578,0.111476,0.464402,0.69216,0.424324,0.293956,0.796193,0.330682,0.896085,0.412525,0.123122,0.741063,0.54819,0.74385,0.246024,0.249979,0.318036,0.44055,0.173359,0.0309355,0.482824,0.134629,0.265557,0.279171,0.998953,0.184434,0.591538,0.20467,0.811749,0.241627,0.501224,0.837779,0.338102,0.946528,0.0619292,0.898331,0.0058046,0.97422,0.757988,0.19204,0.973164,0.837288,0.820747,0.393215,0.567425,0.400096,0.82529,0.120323,0.426362,0.123572,0.896331,0.137426,0.0297447,0.18111,0.976833,0.644681,0.4717,0.269746,0.112178,0.165136,0.428293,0.647692,0.42403,0.337229,0.124249,0.141871,0.671678,0.143713,0.828302,0.993848,0.87576,0.601121,0.408737,0.59671,0.0323166,0.917566,0.0359044,0.176921,0.667997,0.193835,0.509255,0.0514101,0.201755,0.70063,0.117659,0.837648,0.3734,0.366354,0.903057,0.80084,0.658531,0.252925,0.99961,0.952963,0.772256,0.155003,0.185866,0.223259,0.486305,0.452474,0.326827,0.0269768,0.0861583,0.389412,0.338352,0.913932,0.277128,0.394096,0.441671,0.710458,0.785499,0.529423,0.77403,0.489572,0.296299,0.972145,0.774699,0.968478,0.618247,0.452762,0.704194,0.659339,0.0967194,0.829078,0.647203,0.196851,0.931239,0.256406,0.559571,0.357644,0.292083,0.791776,0.109279,0.787759,0.0304575,0.84618,0.068608,0.463129,0.133143,0.0207427,0.671706,0.432607,0.609538,0.374071,0.589105,0.540282,0.961715,0.092443,0.667131,0.231502,0.709216,0.392291,0.7968,0.792849,0.0395356,0.783157,0.885494,0.695234,0.491836,0.0980218,0.204421,0.692212,0.372873,0.411623,0.985617,0.792009,0.107588,0.396712,0.247083,0.23702,0.58899,0.153335,0.835266,0.305006,0.309328,0.572328,0.702752,0.0463971,0.149552,0.170941,0.478916,0.359825,0.830324,0.477661,0.285269,0.870461,0.0365301,0.237203,0.51629,0.998334,0.606258,0.838839,0.812767,0.836355,0.793494,0.995911,0.404552,0.411669,0.719461,0.330989,0.847599,0.577474,0.777831,0.83462,0.433963,0.946568,0.322997,0.939546,0.813528,0.713839,0.182416,0.238317,0.987831,0.800541,0.158242,0.740298,0.497003,0.732986,0.247162,0.354685,0.546793,0.779914,0.443072,0.931236,0.900257,0.235525,0.396143,0.209537,0.308337,0.373121,0.716587,0.0299829,0.28832,0.445886,0.444526,0.527843,0.0846295,0.486872,0.548267,0.639426,0.374905,0.556101,0.0395451,0.836953,0.160737,0.169219,0.108144,0.404378,0.815117,0.963577,0.068268,0.682399,0.211314,0.199625,0.716244,0.269261,0.558763,0.745279,0.0579641,0.477882,0.124067,0.600663,0.231948,0.227018,0.29888,0.19565,0.463141,0.518655,0.993234,0.225565,0.887049,0.677437,0.948944,0.803771,0.0522768,0.602929,0.807047,0.291323,0.249332,0.766311,0.806352,0.74105,0.906416,0.569602,0.0207493,0.488961,0.224623,0.861529,0.253438,0.022687,0.960221,0.673791,0.809702,0.265778,0.615294,0.72358,0.183931,0.44527,0.642648,0.539879,0.360041,0.527674,0.375232,0.0933778,0.799176,0.859054,0.60304,0.973617,0.421788,0.402756,0.10354,0.796735,0.255727,0.897195,0.0210195,0.143285,0.795289,0.47186,0.931776,0.00967431,0.874208,0.147834,0.755631,0.413975,0.0422143,0.130825,0.00896829,0.581145,0.946252,0.706314,0.721864,0.624563,0.241546,0.121837,0.919091,0.735484,0.2115,0.776871,0.489187,0.580895,0.68236,0.505057,0.239609,0.87993,0.861268,0.153762,0.579175,0.241074,0.0836663,0.956783,0.129944,0.485548,0.908313,0.683447,0.184079,0.610429,0.0499326,0.916371,0.143334,0.128882,0.536554,0.0120854,0.92068,0.169146,0.94483,0.262062,0.350859,0.364025,0.34423,0.529968,0.675263,0.82509,0.93126,0.0901053,0.667969,0.199558,0.715926,0.117174,0.136908,0.413945,0.22296,0.0890579,0.463515,0.644519,0.345074,0.855593,0.644828,0.596136,0.663824,0.769526,0.203518,0.15461,0.226364,0.798392,0.138029,0.51126,0.329515,0.812294,0.220228,0.43925,0.579248,0.390507,0.0268195,0.767955,0.602649,0.0953807,0.818234,0.128699,0.788399,0.39978,0.265185,0.503258,0.718965,0.0614465,0.975673,0.0813733,0.560969,0.367832,0.021348,0.709949,0.548623,0.213103,0.619618,0.14026,0.502446,0.148579,0.488974,0.642592,0.076627,0.844373,0.825533,0.825097,0.375596,0.208713,0.72384,0.415147,0.317928,0.105839,0.425774,0.645443,0.883082,0.419473,0.880275,0.649212,|0.793617,0.319532,0.204418,0.957578,0.8944,0.483544,0.892668,0.722243,0.143849,0.383439,0.258509,0.8505,0.752446,0.154381,0.164826,0.591299,0.458689,0.170265,0.700268,0.410186,0.733007,0.268017,0.859176,0.0653963,0.489136,0.316918,0.757419,0.164961,0.373877,0.874627,0.00267172,0.00810534,0.689489,0.728781,0.386361,0.558114,0.441827,0.648238,0.250528,0.0233855,0.321278,0.317484,0.962728,0.221919,0.864333,0.750784,0.0704678,0.265236,0.206696,0.809042,0.725682,0.516283,0.261562,0.91961,0.0789643,0.305279,0.860998,0.896106,0.56246,0.592368,0.40444,0.419887,0.855198,0.298307,0.976419,0.28678,0.575004,0.370364,0.737419,0.462543,0.0951251,0.987361,0.341681,0.528779,0.419762,0.13405,0.0343004,0.348166,0.476886,0.857936,0.523127,0.545457,0.217864,0.0049867,0.639061,0.481853,0.672454,0.76109,0.609772,0.981954,0.0908877,0.0574221,0.571115,0.171922,0.763607,0.157767,0.244276,0.730724,0.298867,0.00349545,0.728398,0.312295,0.052574,0.170291,0.879541,0.297156,0.139526,0.303054,0.587971,0.808425,0.151444,0.301288,0.711033,0.925936,0.553182,0.483873,0.0756841,0.131606,0.584898,0.935332,0.974541,0.827185,0.229207,0.831178,0.44057,0.896213,0.192391,0.875317,0.52194,0.121241,0.912018,0.0855413,0.968763,0.343666,0.974354,0.778387,0.138781,0.735173,0.666464,0.328679,0.594642,0.404364,0.139551,0.60445,0.702065,0.168476,0.662137,0.0915603,0.659373,0.264716,0.96321,0.0768818,0.0822031,0.764669,0.743956,0.0947925,0.835317,0.572739,0.416161,0.639531,0.354102,0.68274,0.0736009,0.311418,0.475334,0.407053,0.753536,0.765132,0.0245106,0.97147,0.297812,0.547054,0.828011,0.038986,0.0527403,0.292432,0.707917,0.123054,0.994709,0.237627,0.0677599,0.688682,0.869058,0.786787,0.645715,0.180423,0.343569,0.324847,0.583308,0.169803,0.213268,0.658672,0.582077,0.259041,0.540804,0.635383,0.778167,0.536977,0.262794,0.438599,0.793131,0.084798,0.464424,0.782185,0.929148,0.966935,0.221109,0.260545,0.489966,0.778237,0.900571,0.742745,0.214757,0.87797,0.680859,0.859927,0.689751,0.584661,0.434216,0.876722,0.11234,0.712177,0.290434,0.681003,0.155021,0.691439,0.236876,0.148048,0.352762,0.0930256,0.103663,0.579499,0.21907,0.858969,0.660687,0.40268,0.58765,0.158335,0.166025,0.13989,0.650915,0.728599,0.456865,0.855633,0.10822,0.199173,0.729344,0.152248,0.887265,0.360269,0.803508,0.992049,0.767254,0.721721,0.165416,0.144728,0.255306,0.590147,0.251444,0.847931,0.254618,0.0439085,0.687983,0.349811,0.56865,0.399703,0.33502,0.613466,0.262359,0.370732,0.413939,0.202031,0.930038,0.877515,0.291398,0.262103,0.990203,0.808041,0.244023,0.658716,0.198802,0.707209,0.394672,0.109889,0.626812,0.980585,0.530039,0.00220072,0.348907,0.530943,0.108717,0.131217,0.579831,0.654551,0.564453,0.488556,0.532119,0.0942464,0.989125,0.48115,0.680862,0.66236,0.887097,0.881733,0.388757,0.401602,0.77963,0.119103,0.0366963,0.604504,0.904022,0.454658,0.576963,0.564032,0.688745,0.167192,0.466592,0.579723,0.869115,0.304357,0.113298,0.292572,0.309357,0.566443,0.856678,0.619652,0.358792,0.690951,0.181153,0.0467929,0.0861954,0.910081,0.104938,0.0859921,0.0613438,0.753654,0.296765,0.917356,0.908659,0.639839,0.673064,0.767459,0.986261,0.311508,0.919565,0.0753911,0.342307,0.523134,0.782149,0.697514,0.709297,0.466126,0.811689,0.652773,0.642856,0.823005,0.799048,0.301778,0.786658,0.0630124,0.850719,0.114302,0.412015,0.686961,0.242813,0.278296,0.390818,0.354903,0.600655,0.274162,0.803532,0.882726,0.697128,0.547675,0.293305,0.583454,0.398072,0.609201,0.881518,0.209371,0.748856,0.208978,0.229671,0.154603,0.609265,0.261437,0.802075,0.570492,0.379631,0.519259,0.112848,0.989223,0.340527,0.593719,0.301969,0.694507,0.5157,0.0663063,0.861737,0.919818,0.128137,0.404992,0.0195476,0.815331,0.155461,0.154144,0.714871,0.529738,0.621195,0.733942,0.435534,0.0904752,0.631208,0.940783,0.024389,0.547792,0.892053,0.639726,0.944178,0.739004,0.597012,0.861821,0.564119,0.241479,0.474981,0.996457,0.117569,0.415062,0.781945,0.074213,0.633712,0.412104,0.421319,0.0834713,0.329374,0.0440509,0.765804,0.218267,0.39736,0.684957,0.315485,0.360361,0.772308,0.556274,0.68525,0.277654,0.0280501,0.486907,0.310793,0.811903,0.0464954,0.558108,0.887317,0.99667,0.292655,0.460945,0.116976,0.840494,0.843767,0.351566,0.91039,0.175033,0.378755,0.57859,0.569707,0.489551,0.170381,0.989556,0.321361,0.284186,0.282156,0.355409,0.0995677,0.0911267,0.524392,0.659166,0.454841,0.118873,0.455519,0.307796,0.851128,0.189655,0.827101,0.562884,0.2241,0.895875,0.0867015,0.22952,0.497096,0.475095,0.969014,0.078099,0.373871,0.110556,0.373444,0.733485,0.477471,0.540821,0.869413,0.192779,0.164423,0.90554,0.0972183,0.767895,0.477456,0.849981,0.635889,0.206456,0.956562,0.668833,0.605144,0.534055,0.060345,0.306121,0.276067,0.402862,0.0692593,0.615733,0.264336,0.0944827,0.139552,0.108088,0.893759,0.634465,0.941994,0.473638,0.536393,0.973824,0.957574,0.700993,0.70421,0.35609,0.734093,0.600966,0.512184,0.101033,0.0415708,0.540017,0.641375,0.97678,0.721738,0.612967,0.811971,0.302216,0.906152,0.720977,0.328311,0.414232,0.880327,0.516728,0.0567418,0.490277,0.0572404,0.650497,0.195885,0.691785,0.744318,0.704907,0.564018,0.844151,0.755885,0.527015,0.900543,0.529181,0.374297,0.874479,0.388555,0.658987,0.503099,0.791534,0.849179,0.128874,0.348053,0.627983,0.93905,0.513172,0.691412,0.0783288,0.874739,0.303466,0.0272448,0.921192,0.21052,0.350053,0.271136,0.797502,0.647229,0.854106,0.865722,0.531028,0.00224787,0.00676745,0.715449,0.926741,0.144531,0.291957,0.863976,0.0819293,0.620938,0.365449,0.65488,0.474423,0.281218,0.859769,0.960111,0.113524,0.215454,0.963343,0.697154,0.753456,0.106966,0.411738,0.82104,0.17373,0.999417,0.989497,0.43033,0.845963,0.591269,0.0845132,0.153256,0.312537,0.342074,0.806423,0.942828,0.39884,0.340238,0.413671,0.389515,0.445999,0.477076,0.895,0.374789,0.0449978,0.875153,0.373966,0.192452,0.928349,0.895571,0.160714,0.849421,0.659783,0.364149,0.372131,0.255152,0.498256,0.132048,0.986579,0.00923985,0.598448,0.00349635,0.61587,0.937858,0.542737,0.102553,0.15213,0.205828,0.481012,0.0784734,0.420714,0.854362,0.724782,0.849524,0.720918,0.652989,0.404365,0.600896,0.919275,0.716076,0.0553941,0.187333,0.4192,0.551812,0.665618,0.889647,0.468232,0.940203,0.75645,0.34373,0.489628,0.627539,0.574649,0.44276,0.118551,0.434371,0.290913,0.311999,0.976249,0.705445,0.854745,0.326985,0.101309,0.518312,0.320594,0.934155,0.505188,0.255247,0.639452,0.0216908,0.164827,0.478073,0.559588,0.209203,0.416232,0.382782,0.186485,0.324979,0.556667,0.495751,0.354225,0.122271,0.751244,0.183756,0.136697,0.995171,0.618899,0.831397,0.477211,0.377207,0.29083,0.673591,0.689096,0.0802369,0.027804,0.616567,0.619662,0.177989,0.95229,0.98223,0.529649,0.0111701,0.335566,0.674859,0.560371,0.128491,0.546852,0.158846,0.382748,0.724543,0.235101,0.90758,0.981896,0.68961,0.369849,0.717128,0.47935,0.921258,0.41678,0.364315,0.0755975,0.839031,0.138367,0.995343,0.255298,0.511106,0.727444,0.25099,0.235996,0.300818,0.693807,0.875334,0.238224,0.230938,0.7439,0.652487,0.865617,0.823507,0.583309,0.657751,0.940788,0.865958,0.435526,0.963164,0.926919,0.203843,0.833748,0.563967,0.0630429,0.172759,0.534728,0.407145,0.291469,0.99215,0.986528,0.113433,0.288002,0.431849,0.349464,0.352673,0.930149,0.703089,0.46943,0.735606,0.227025,0.996434,0.472701,0.21619,0.394313,0.963014,0.51024,0.0276798,0.572284,0.215099,0.494005,0.504069,0.906287,0.78905,0.387062,0.279907,0.147756,0.213753,0.407836,0.937746,0.0823296,0.0733323,0.640737,0.910891,0.117444,0.326907,0.486643,0.700278,0.608954,0.303938,0.931351,0.590617,0.69544,0.175208,0.288061,0.380919,0.868393,0.199296,0.927631,0.385736,0.587999,0.493717,0.123367,0.89618,0.808235,0.765237,0.263837,0.193318,0.195585,0.885222,0.49401,0.896299,0.317163,0.394488,0.609663,0.668064,0.742305,0.197057,0.215934,0.113294,0.335112,0.291487,0.979104,0.704069,0.703531,0.533022,0.32509,0.224944,0.661371,0.0306614,0.54985,0.301567,0.494868,0.00135756,0.060603,0.371421,0.664282,0.91144,0.897162,0.0837494,0.8214,0.650056,0.30011,0.522735,0.45664,0.728748,0.0288917,0.876498,0.765367,0.442337,0.929142,0.772018,0.471452,0.542809,0.551026,0.720652,0.421286,0.149023,0.929022,0.113729,0.466674,0.436216,0.305932,0.171595,0.624923,0.249082,0.168173,0.138293,0.70457,0.972689,0.544292,0.0506359,0.244534,0.356646,0.414995,0.637366,0.273156,0.277189,0.0566666,0.985688,0.822241,0.0142493,0.698209,0.346292,0.908623,0.436718,0.998228,0.0526714,0.690159,0.938502,0.307066,0.855789,0.512555,0.233095,0.534222,0.31657,0.901692,0.470774,0.187133,0.0890006,0.881421,0.112297,0.221413,0.9893,0.208485,0.275104,0.180811,0.793303,0.744416,0.198372,0.157609,0.304884,0.333791,0.734883,0.0956956,0.828704,0.409029,0.110857,0.292171,0.419008,0.0864717,0.17482,0.729214,0.722353,0.282369,0.184517,0.652069,0.951317,0.0886719,0.436801,0.0757164,0.936644,0.530086,0.452584,0.932631,0.441607,0.712485,0.600396,0.780893,0.441456,0.986445,0.341933,0.229339,0.496027,0.581894,0.294148,0.342695,0.302605,0.189822,0.46386,0.571441,0.0971424,0.910035,0.373772,0.140921,0.288551,0.54298,0.730901,0.467268,0.367418,0.17851,0.695633,0.512802,0.613374,0.291552,0.500725,0.909784,|0.710616,0.285153,0.32955,0.468053,0.384862,0.453738,0.056821,0.144631,0.812806,0.711322,0.95226,0.593033,0.0420222,0.533499,0.0988892,0.374246,0.465698,0.448653,0.392218,0.664936,0.0833376,0.586454,0.86253,0.743381,0.607863,0.0195603,0.253169,0.382056,0.0114844,0.197113,0.273081,0.395322,0.323464,0.464534,0.479052,0.401997,0.744637,0.359752,0.880152,0.161905,0.36944,0.590358,0.0420851,0.527585,0.544399,0.0985968,0.256171,0.871525,0.356022,0.211638,0.887538,0.54455,0.566707,0.168931,0.281504,0.403692,0.57055,0.724818,0.129878,0.204617,0.330249,0.0947902,0.322011,0.443766,0.295499,0.580687,0.628829,0.869953,0.808207,0.584618,0.822017,0.512598,0.550534,0.439012,0.948047,0.999379,0.348346,0.392272,0.719606,0.541989,0.320238,0.994183,0.937474,0.602128,0.728074,0.489047,0.739943,0.82854,0.853558,0.33584,0.680829,0.475555,0.161464,0.0712253,0.516738,0.738486,0.522117,0.442183,0.296503,0.316738,0.516145,0.862858,0.265606,0.265857,0.423821,0.315649,0.472375,0.312532,0.824896,0.0676484,0.808657,0.942769,0.439351,0.259545,0.596774,0.342288,0.78836,0.34049,0.684377,0.0663957,0.102077,0.88294,0.987329,0.0410839,0.402272,0.714301,0.600086,0.610337,0.871972,0.675665,0.372026,0.363942,0.68427,0.717856,0.944513,0.149227,0.869392,0.157936,0.331896,0.0335655,0.423063,0.598161,0.493898,0.492225,0.478532,0.00545311,0.467747,0.373084,0.667975,0.748821,0.13844,0.131745,0.618338,0.189173,0.0807446,0.276752,0.189193,0.228743,0.15849,0.0569506,0.78841,0.634386,0.112244,0.569658,0.507772,0.236304,0.97893,0.814776,0.0691027,0.877314,0.113408,0.503546,0.177607,0.640955,0.491228,0.434907,0.865352,0.160505,0.196228,0.376784,0.257979,0.722619,0.0819157,0.0818312,0.985849,0.701547,0.0671099,0.378131,0.326554,0.334018,0.58216,0.083243,0.959153,0.773408,0.272805,0.514112,0.175563,0.402569,0.890172,0.728177,0.171331,0.809495,0.253662,0.791984,0.10133,0.0892199,0.772717,0.130574,0.489082,0.624855,0.602956,0.607642,0.392892,0.357835,0.7012,0.00259113,0.0810804,0.202609,0.440211,0.0564309,0.0311732,0.0775406,0.228009,0.0398324,0.597298,0.440378,0.53655,0.0592943,0.669995,0.250369,0.348783,0.804793,0.10243,0.830597,0.130739,0.338005,0.995263,0.452295,0.255228,0.686351,0.135005,0.829836,0.871785,0.294779,0.433915,0.80908,0.0957896,0.909512,0.0467647,0.868102,0.310989,0.773893,0.00310361,0.0204253,0.875489,0.114465,0.696235,0.297058,0.104357,0.2394,0.761514,0.82139,0.293565,0.637616,0.917672,0.191212,0.655773,0.348347,0.454524,0.984019,0.643788,0.935824,0.612189,0.369619,0.211712,0.69501,0.496372,0.217381,0.291732,0.965253,0.670231,0.0866109,0.658476,0.424895,0.201539,0.369059,0.546208,0.93018,0.458655,0.90337,0.265458,0.277107,0.214364,0.572418,0.160566,0.799031,0.548082,0.593144,0.379273,0.876402,0.830762,0.526767,0.765253,0.932599,0.340233,0.746648,0.269346,0.637573,0.471794,0.926214,0.670694,0.297583,0.93903,0.169543,0.532713,0.410127,0.0431739,0.444038,0.285083,0.517098,0.422043,0.639507,0.267506,0.884107,0.395163,0.0570869,0.353361,0.710825,0.144974,0.6896,0.0330448,0.236529,0.149664,0.167718,0.564319,0.501477,0.358447,0.249763,0.412582,0.662921,0.269285,0.291639,0.552383,0.571515,0.944303,0.686725,0.837542,0.932674,0.73173,0.359293,0.136375,0.19328,0.595349,0.686472,0.855972,0.722356,0.6705,0.661976,0.19077,0.774559,0.534546,0.490204,0.730829,0.762546,0.275341,0.658529,0.617383,0.00735158,0.157516,0.32043,0.618909,0.996604,0.809916,0.11667,0.513334,0.404843,0.442003,0.431764,0.748999,0.394316,0.192838,0.645013,0.955512,0.401783,0.110339,0.000330508,0.88267,0.307795,0.72758,0.80798,0.977383,0.878857,0.74562,0.974975,0.988147,0.469815,0.665065,0.526251,0.398547,0.713269,0.896102,0.521496,0.807388,0.0784082,0.933798,0.545286,0.719807,0.981272,0.970346,0.00941581,0.969813,0.939997,0.544159,0.223251,0.287103,0.145968,0.135175,0.652383,0.19391,0.89434,0.405618,0.168794,0.701988,0.449082,0.997524,0.476921,0.972563,0.924391,0.746984,0.12683,0.492381,0.871353,0.659113,0.293722,0.435803,0.658167,0.0973482,0.935558,0.719922,0.657727,0.292569,0.354674,0.711672,0.245584,0.583803,0.887522,0.35975,0.55411,0.0122301,0.375318,0.800594,0.693332,0.280834,0.494625,0.0646179,0.301511,0.995044,0.974604,0.679869,0.699144,0.834276,0.153907,0.51118,0.83992,0.837796,0.648804,0.55477,0.571616,0.621566,0.0891317,0.489878,0.933701,0.202501,0.64297,0.0318519,0.108624,0.161417,0.592252,0.442232,0.770174,0.388806,0.978154,0.313761,0.28254,0.639876,0.359141,0.936174,0.923697,0.265465,0.467659,0.835793,0.942326,0.620819,0.150705,0.198339,0.622268,0.474299,0.879892,0.0885541,0.249653,0.974041,0.790568,0.424542,0.711288,0.384817,0.84296,0.927226,0.0683565,0.779494,0.587012,0.0180184,0.761515,0.746856,0.510963,0.919565,0.222914,0.295916,0.790434,0.0204306,0.169982,0.361037,0.706772,0.529389,0.211662,0.936672,0.0923988,0.385456,0.215478,0.301816,0.92896,0.195438,0.885121,0.473413,0.943582,0.221579,0.863887,0.476577,0.502815,0.887469,0.0562065,0.0601431,0.762953,0.626233,0.458596,0.722965,0.902915,0.576507,0.475398,0.286308,0.968898,0.267873,0.984215,0.494389,0.233468,0.423485,0.590303,0.0855851,0.13051,0.56194,0.393183,0.108257,0.975823,0.618484,0.880925,0.118762,0.292859,0.990843,0.289218,0.570694,0.868887,0.970159,0.369679,0.725605,0.846217,0.962597,0.612818,0.643525,0.593656,0.764539,0.631667,0.891018,0.687686,0.30275,0.679765,0.668094,0.00661469,0.40736,0.765275,0.871676,0.351269,0.749214,0.753074,0.682065,0.69464,0.0795291,0.697692,0.423098,0.586682,0.584185,0.680111,0.70261,0.182049,0.333946,0.831516,0.462437,0.068614,0.627873,0.434597,0.713614,0.289856,0.198698,0.628375,0.443085,0.446955,0.495908,0.658307,0.865439,0.479142,0.408564,0.302314,0.250632,0.364972,0.337661,0.388237,0.0303146,0.444364,0.0131345,0.754704,0.221031,0.900214,0.789816,0.729018,0.943464,0.987215,0.0553787,0.192926,0.780155,0.516163,0.628297,0.61853,0.724565,0.126583,0.583408,0.100348,0.14851,0.383498,0.926422,0.476297,0.538947,0.324538,0.0407286,0.162981,0.650628,0.222568,0.570336,0.161313,0.480415,0.410455,0.920799,0.735257,0.447305,0.123756,0.70857,0.980268,0.0266471,0.456993,0.43652,0.74046,0.402399,0.000501573,0.509502,0.289048,0.0779918,0.115539,0.0209015,0.926724,0.22193,0.742125,0.823339,0.608022,0.107261,0.373693,0.951831,0.758288,0.662364,0.500661,0.725377,0.382739,0.0389935,0.0305029,0.794475,0.137867,0.397958,0.240309,0.511742,0.998556,0.306205,0.797236,0.847459,0.506896,0.366056,0.337574,0.477911,0.442154,0.740428,0.300584,0.529595,0.654021,0.909657,0.618813,0.363016,0.672858,0.00897193,0.326672,0.57593,0.0324842,0.424168,0.328736,0.855574,0.89514,0.441664,0.78534,0.157663,0.590877,0.757252,0.735242,0.931095,0.256034,0.639432,0.234639,0.600759,0.291119,0.159148,0.698637,0.549866,0.0377762,0.126057,0.484873,0.586549,0.682708,0.875483,0.201309,0.917012,0.101476,0.715389,0.783332,0.385975,0.11637,0.379023,0.366212,0.45003,0.842105,0.679163,0.387701,0.534685,0.00368702,0.185838,0.253735,0.930596,0.355334,0.627763,0.69381,0.103584,0.523827,0.90077,0.934886,0.266918,0.267104,0.769609,0.360179,0.391599,0.0120292,0.110005,0.874103,0.264123,0.215141,0.509772,0.907916,0.747549,0.0295683,0.991274,0.654651,0.161937,0.55836,0.528036,0.275814,0.741376,0.0951241,0.787624,0.21076,0.930603,0.53926,0.866797,0.115368,0.154866,0.521099,0.00328243,0.652191,0.632013,0.4716,0.855634,0.71287,0.179474,0.584791,0.457099,0.47715,0.301779,0.0597673,0.762905,0.321323,0.251847,0.46978,0.549546,0.925218,0.387239,0.211089,0.431602,0.985453,0.538302,0.66624,0.190993,0.807733,0.3997,0.774641,0.873108,0.201288,0.175663,0.178239,0.0226735,0.381504,0.725423,0.545657,0.0841671,0.0839056,0.414594,0.334155,0.475641,0.678868,0.577195,0.289039,0.896665,0.897075,0.0943636,0.338443,0.258614,0.930074,0.986113,0.891157,0.977854,0.517465,0.97674,0.171805,0.811108,0.22118,0.47894,0.611833,0.618794,0.226356,0.152909,0.575772,0.120571,0.55555,0.752815,0.747722,0.469709,0.502903,0.0618957,0.105944,0.772457,0.444461,0.998934,0.342165,0.639188,0.478291,0.215138,0.549347,0.191964,0.294911,0.658105,0.00138658,0.231865,0.465049,0.0226352,0.534318,0.522117,0.60616,0.476871,0.572123,0.560035,0.325613,0.596665,0.78921,0.805705,0.102315,0.195175,0.793145,0.871385,0.0827654,0.477355,0.415993,0.75648,0.900498,0.18738,0.838018,0.533834,0.0882153,0.00494331,0.543809,0.0145239,0.873072,0.554683,0.140305,0.222855,0.543824,0.721332,0.0334477,0.286832,0.671256,0.596594,0.596603,0.919271,0.594063,0.410614,0.919444,0.750926,0.57226,0.899978,0.971927,0.819919,0.742936,0.305106,0.618802,0.0748878,0.0442603,0.706006,0.761766,0.922609,0.179766,0.872969,0.369259,0.145479,0.593463,0.47072,0.275908,0.62098,0.115172,0.779444,0.822789,0.0926712,0.631871,0.499919,0.483329,0.745866,0.814321,0.151033,0.39927,0.876928,0.889826,0.540415,0.696755,0.268827,0.280145,0.948043,0.742173,0.678398,0.847257,0.108609,0.525716,0.983599,0.620965,0.270757,0.545769,0.878249,0.118444,0.142279,0.498001,0.225086,0.028941,0.0546665,0.0485173,0.111636,0.77013,0.862239,0.884486,0.452453,0.628208,0.942435,0.107423,0.745492,0.322154,0.159973,0.559824,0.203084,0.753,0.491067,0.479851,0.962662,0.512342,0.587797,0.34626,|0.399505,0.623891,0.907203,0.220939,0.958883,0.410715,0.725936,0.820653,0.263252,0.970186,0.51041,0.923578,0.188136,0.468298,0.0372059,0.85641,0.980591,0.424082,0.307706,0.83487,0.775329,0.122925,0.968943,0.506924,0.355975,0.741116,0.634943,0.38555,0.861068,0.0138085,0.428338,0.74866,0.647453,0.721845,0.347195,0.720689,0.755333,0.254189,0.988931,0.727259,0.304538,0.375864,0.549561,0.346626,0.655589,0.936496,0.941556,0.44426,0.473492,0.490357,0.387331,0.53206,0.0850945,0.411218,0.262053,0.195076,0.478101,0.547887,0.310389,0.0644963,0.946927,0.818751,0.28421,0.172928,0.937364,0.275815,0.999491,0.485509,0.643538,0.114859,0.212244,0.079351,0.954391,0.787027,0.472052,0.113565,0.745214,0.656301,0.082406,0.8568,0.681749,0.00856334,0.806092,0.581381,0.702988,0.834052,0.721714,0.755809,0.168893,0.0926517,0.448664,0.605325,0.337107,0.19002,0.638359,0.593912,0.487178,0.0321693,0.849434,0.718675,0.920043,0.428748,0.879259,0.833347,0.368408,0.0368671,0.599887,0.499338,0.993713,0.920951,0.422693,0.861494,0.861305,0.240721,0.33293,0.263659,0.408063,0.982159,0.978086,0.351527,0.262815,0.19648,0.0551261,0.805129,0.732073,0.263895,0.63906,0.793933,0.773715,0.562649,0.735894,0.605729,0.115729,0.943153,0.899388,0.409317,0.302419,0.246802,0.20837,0.321346,0.336173,0.511676,0.736511,0.839419,0.468096,0.336707,0.844704,0.806721,0.574642,0.614793,0.379142,0.638875,0.583816,0.524879,0.736508,0.815442,0.184865,0.989661,0.992595,0.848302,0.50441,0.796564,0.590923,0.818598,0.682534,0.43276,0.0897201,0.559117,0.88491,0.451549,0.142178,0.972582,0.549522,0.242304,0.265466,0.663989,0.718083,0.444108,0.457508,0.217267,0.39633,0.566087,0.292423,0.952613,0.098461,0.976828,0.683031,0.836981,0.493271,0.434803,0.217896,0.889998,0.415819,0.804325,0.0461615,0.558574,0.143346,0.872112,0.905283,0.269487,0.53059,0.802583,0.428913,0.711946,0.177129,0.582008,0.690523,0.531742,0.952006,0.58025,0.665859,0.882085,0.225593,0.719299,0.641761,0.38604,0.912487,0.859704,0.155428,0.451383,0.480855,0.093005,0.654241,0.955715,0.380993,0.601748,0.0883909,0.970686,0.0826848,0.588635,0.0371822,0.322272,0.938951,0.350936,0.534018,0.564035,0.704029,0.286405,0.411164,0.664627,0.72629,0.204973,0.503192,0.372234,0.388041,0.750557,0.538681,0.175019,0.550321,0.892613,0.668179,0.338709,0.375032,0.0545455,0.976061,0.58574,0.148534,0.340877,0.549779,0.34673,0.315758,0.00825167,0.86276,0.943739,0.528726,0.347728,0.362338,0.0748418,0.605606,0.202633,0.436366,0.571741,0.15462,0.834139,0.652121,0.678053,0.486318,0.922385,0.382663,0.0201991,0.90275,0.94985,0.0391788,0.741094,0.225159,0.877736,0.661044,0.0200235,0.339235,0.65586,0.96324,0.210517,0.971171,0.711539,0.145435,0.889919,0.104563,0.132049,0.515743,0.398107,0.0979986,0.759725,0.0564173,0.135827,0.861678,0.0474998,0.0175673,0.658136,0.936927,0.0546572,0.474415,0.647409,0.488994,0.381548,0.8719,0.912388,0.0756513,0.337796,0.677357,0.960302,0.573923,0.679203,0.158015,0.433859,0.875387,0.202458,0.198784,0.770511,0.130797,0.953948,0.387775,0.355229,0.828258,0.00318891,0.547967,0.704705,0.600038,0.0348048,0.769696,0.582208,0.683506,0.0601013,0.980464,0.675493,0.579074,0.846334,0.256229,0.745655,0.946238,0.458677,0.665826,0.731607,0.3749,0.675115,0.543731,0.98054,0.847316,0.325672,0.791732,0.762783,0.346024,0.140586,0.544037,0.785457,0.331629,0.262439,0.466113,0.357758,0.797633,0.318265,0.227722,0.147829,0.276501,0.545487,0.432823,0.150105,0.744956,0.602554,0.982587,0.670466,0.807516,0.613677,0.32422,0.79987,0.97023,0.820318,0.449239,0.884357,0.108571,0.899446,0.515746,0.439813,0.222348,0.266372,0.0188165,0.392374,0.973131,0.909988,0.236271,0.712122,0.652455,0.0421323,0.72073,0.743342,0.411812,0.373126,0.165049,0.257361,0.553718,0.765827,0.110597,0.155897,0.880343,0.937635,0.960483,0.0728494,0.353222,0.925661,0.275051,0.921737,0.0155585,0.0435737,0.161411,0.194278,0.179874,0.408679,0.0495819,0.581831,0.804347,0.0778098,0.609485,0.468386,0.0768288,0.462138,0.198366,0.879554,0.025744,0.279732,0.309446,0.856748,0.0745813,0.49619,0.627935,0.852275,0.0595877,0.211925,0.621468,0.937757,0.784622,0.406558,0.501544,0.710665,0.146565,0.673599,0.584255,0.149927,0.0189773,0.960152,0.0457264,0.198041,0.0594031,0.632567,0.624372,0.953177,0.39638,0.0934319,0.909033,0.583378,0.97636,0.489755,0.0831841,0.166863,0.276849,0.49679,0.0496087,0.660065,0.63155,0.481757,0.398433,0.319273,0.248451,0.929144,0.102114,0.280895,0.79399,0.349625,0.290757,0.577388,0.991023,0.865683,0.733569,0.0748916,0.771468,0.188735,0.753834,0.742032,0.301145,0.812001,0.493477,0.931866,0.220538,0.769359,0.251583,0.418205,0.0323994,0.940155,0.171573,0.181062,0.112491,0.589992,0.0326046,0.65399,0.583865,0.36177,0.965169,0.901706,0.511022,0.0416515,0.297575,0.34212,0.682455,0.624335,0.954036,0.709834,0.254674,0.220449,0.113714,0.456833,0.59065,0.913187,0.613828,0.879763,0.858218,0.970039,0.574337,0.479834,0.666713,0.512228,0.662209,0.792595,0.187317,0.903995,0.900844,0.623748,0.73495,0.240751,0.250568,0.0340917,0.195782,0.794303,0.242725,0.722638,0.432707,0.859513,0.774536,0.317447,0.63509,0.927308,0.0125426,0.829812,0.522798,0.561285,0.629242,0.174827,0.513204,0.532997,0.66817,0.450221,0.0623482,0.917368,0.576242,0.881736,0.211656,0.159015,0.714024,0.565112,0.501846,0.392676,0.621445,0.252365,0.662479,0.525926,0.794737,0.272741,0.0798591,0.450465,0.81302,0.00173169,0.326748,0.118443,0.610057,0.701585,0.714309,0.451116,0.347108,0.397587,0.245161,0.668566,0.364623,0.374562,0.985793,0.873701,0.633623,0.328606,0.869574,0.334194,0.112015,0.351536,0.549837,0.0563699,0.507145,0.950096,0.593431,0.268782,0.12922,0.102309,0.261406,0.918937,0.949674,0.366893,0.181805,0.021669,0.938454,0.379065,0.521226,0.23657,0.565577,0.453864,0.478557,0.0424792,0.0977286,0.955084,0.281228,0.645518,0.664245,0.346975,0.730232,0.489784,0.544543,0.798286,0.951198,0.804288,0.191287,0.475788,0.00898266,0.0472659,0.718278,0.091702,0.194799,0.973784,0.81051,0.096152,0.282462,0.666279,0.929931,0.149129,0.886249,0.515271,0.0647771,0.9397,0.853387,0.897362,0.550394,0.239258,0.984355,0.990439,0.879952,0.2125,0.576376,0.349745,0.633213,0.660821,0.366718,0.367111,0.321371,0.401185,0.179376,0.856166,0.0568909,0.256763,0.96825,0.557169,0.219517,0.753222,0.334829,0.645462,0.953589,0.0437807,0.25566,0.221325,0.44959,0.545222,0.952534,0.499635,0.278028,0.678009,0.513714,0.185337,0.913162,0.720651,0.298609,0.668539,0.919708,0.455223,0.545878,0.481332,0.242359,0.711574,0.452593,0.715403,0.223842,0.772779,0.115289,0.254021,0.0528474,0.12305,0.838662,0.529552,0.951055,0.577393,0.538759,0.0780013,0.618738,0.0724299,0.109284,0.480179,0.227672,0.276052,0.12223,0.854302,0.894027,0.840542,0.7201,0.0391198,0.633229,0.485756,0.198793,0.684594,0.368465,0.360408,0.24867,0.0192525,0.381581,0.00101447,0.0161084,0.741021,0.472692,0.652103,0.898662,0.569622,0.463384,0.049327,0.258243,0.62586,0.540362,0.195314,0.604464,0.840036,0.790371,0.182312,0.864307,0.241123,0.646082,0.180648,0.163676,0.273956,0.457964,0.253672,0.217105,0.27606,0.710377,0.713532,0.716316,0.14447,0.941329,0.600405,0.347391,0.990979,0.970605,0.634377,0.935379,0.0856019,0.0157641,0.732638,0.511238,0.0734733,0.0667596,0.719332,0.0782688,0.0788978,0.398651,0.858301,0.491286,0.579916,0.433534,0.142956,0.744462,0.527214,0.157962,0.159531,0.494274,0.610838,0.205002,0.312843,0.580645,0.135718,0.519421,0.669732,0.11238,0.147719,0.703402,0.916748,0.955022,0.744827,0.640769,0.199675,0.1168,0.110623,0.320458,0.704639,0.96409,0.101422,0.72168,0.4263,0.668147,0.499526,0.741375,0.726441,0.0601652,0.0904047,0.402099,0.0496557,0.632838,0.214245,0.0379412,0.167177,0.613274,0.151575,0.734925,0.29876,0.97874,0.948136,0.553528,0.944128,0.223776,0.700127,0.123081,0.12344,0.189243,0.273548,0.655766,0.401628,0.661778,0.24839,0.231495,0.197706,0.570068,0.21467,0.866853,0.561295,0.127825,0.742068,0.885089,0.413083,0.812138,0.209478,0.996545,0.131624,0.245299,0.147572,0.860795,0.983171,0.0131804,0.405065,0.399004,0.789013,0.362831,0.145136,0.264169,0.0304524,0.734381,0.640174,0.809629,0.795294,0.793426,0.599801,0.243697,0.399174,0.422281,0.50471,0.0159253,0.552095,0.150609,0.663659,0.191501,0.447988,0.380169,0.271659,0.0014953,0.966347,0.72276,0.59742,0.170015,0.963247,0.776235,0.620501,0.33645,0.601819,0.142832,0.285063,0.617546,0.157377,0.166821,0.530342,0.321393,0.846474,0.00435871,0.197793,0.257029,0.00625938,0.125193,0.385932,0.0825229,0.669369,0.516863,0.808813,0.739659,0.176664,0.356931,0.572989,0.773338,0.933117,0.779213,0.510301,0.812744,0.789409,0.0300115,0.939845,0.737231,0.0502691,0.466119,0.165515,0.521027,0.154051,0.477556,0.160092,0.640503,0.561806,0.0750052,0.207048,0.700862,0.927927,0.352281,0.437822,0.535318,0.661496,0.471837,0.973597,0.44865,0.329969,0.671823,0.89287,0.842029,0.962684,0.528045,0.762195,0.0742379,0.719456,0.917955,0.782227,0.348287,0.266948,0.802647,0.338287,0.788853,0.165052,0.205124,0.143387,0.1281,0.591858,0.149748,0.469404,0.524734,0.46849,0.143094,0.521079,0.546085,0.775091,0.34927,0.250251,0.649147,0.155409,0.340363,0.163306,0.484941,0.599797,0.239306,0.553387,0.300592,0.90502,|0.08822,0.0535806,0.700326,0.951618,0.197839,0.456834,0.388893,0.943319,0.28069,0.960685,0.839559,0.81747,0.986202,0.0902895,0.944292,0.708351,0.396101,0.746926,0.421303,0.598137,0.665577,0.197058,0.177865,0.456391,0.8226,0.116721,0.905032,0.987766,0.628882,0.860565,0.648117,0.0489163,0.890835,0.452225,0.433301,0.420719,0.117694,0.722807,0.833603,0.323149,0.734687,0.384813,0.389033,0.968948,0.261987,0.918658,0.945278,0.840833,0.748959,0.330763,0.544405,0.957734,0.23521,0.168671,0.182745,0.837611,0.872605,0.819517,0.15735,0.626394,0.541729,0.59021,0.551184,0.182325,0.402369,0.688949,0.665403,0.490042,0.547131,0.268314,0.835655,0.815717,0.917519,0.612274,0.34815,0.138059,0.494426,0.482735,0.558375,0.157006,0.103366,0.88418,0.886909,0.209952,0.745421,0.194838,0.805696,0.66347,0.190643,0.443065,0.816702,0.317213,0.557742,0.0648692,0.0245442,0.795486,0.615501,0.508521,0.278571,0.356113,0.593777,0.678389,0.513314,0.839707,0.321996,0.247158,0.530383,0.800529,0.284521,0.535389,0.12835,0.402902,0.912136,0.423509,0.0985069,0.69841,0.612787,0.204961,0.374197,0.95324,0.579016,0.192839,0.419658,0.97869,0.71142,0.180603,0.092133,0.724312,0.971865,0.502743,0.0574443,0.132469,0.534894,0.64229,0.373027,0.443164,0.0312431,0.456923,0.281205,0.877215,0.382899,0.655348,0.67294,0.00215113,0.0708933,0.171387,0.555808,0.85615,0.060608,0.597417,0.939879,0.870628,0.494309,0.801068,0.544687,0.957516,0.0125,0.271295,0.622431,0.437926,0.787674,0.281722,0.971069,0.196489,0.128213,0.95701,0.70751,0.277371,0.318052,0.545749,0.224845,0.685311,0.895312,0.203203,0.718721,0.072816,0.488526,0.266041,0.423461,0.0247283,0.205454,0.827426,0.674313,0.37434,0.608326,0.334782,0.699878,0.77484,0.599662,0.812192,0.049876,0.409616,0.672682,0.175482,0.283752,0.738015,0.170472,0.776691,0.355054,0.312162,0.208737,0.299884,0.541587,0.857276,0.147458,0.505989,0.17054,0.242809,0.362658,0.187442,0.825578,0.349717,0.282,0.660224,0.644096,0.150541,0.457721,0.482007,0.481875,0.495563,0.710059,0.128513,0.138007,0.491123,0.621525,0.295674,0.587146,0.79837,0.541633,0.391865,0.154925,0.311063,0.736465,0.568594,0.776202,0.472666,0.469589,0.140082,0.498538,0.241931,0.615824,0.469959,0.415448,0.508687,0.954752,0.759842,0.660866,0.194808,0.217701,0.310902,0.0294865,0.533129,0.203936,0.932849,0.477536,0.482148,0.423245,0.743129,0.429304,0.374905,0.210111,0.66446,0.423979,0.246617,0.408891,0.252802,0.903989,0.9068,0.478806,0.701945,0.823472,0.359739,0.0766985,0.736841,0.868584,0.393088,0.764302,0.541367,0.395676,0.495072,0.34047,0.065562,0.323492,0.576625,0.731894,0.583846,0.744172,0.716227,0.807029,0.593246,0.0135379,0.660636,0.849469,0.892263,0.972403,0.476833,0.180632,0.0903212,0.45087,0.451082,0.0707483,0.769533,0.87036,0.692733,0.611982,0.200005,0.666461,0.788149,0.500889,0.675171,0.186549,0.182304,0.775999,0.183814,0.299931,0.434155,0.00965744,0.352288,0.340453,0.00225466,0.114998,0.329478,0.86371,0.17214,0.643623,0.91466,0.880499,0.168315,0.840609,0.334717,0.664187,0.572794,0.8109,0.9793,0.496924,0.644272,0.487916,0.69937,0.60951,0.736496,0.627775,0.771112,0.316972,0.776641,0.50374,0.141718,0.0312769,0.388999,0.121726,0.680933,0.969908,0.565495,0.703581,0.980491,0.0604957,0.604456,0.931049,0.0867208,0.805942,0.998476,0.887798,0.151423,0.821755,0.103607,0.329271,0.40129,0.791102,0.913533,0.0594671,0.373307,0.993004,0.826429,0.699589,0.251185,0.768955,0.517026,0.810656,0.993004,0.268524,0.066541,0.307435,0.445231,0.397375,0.205389,0.285398,0.920675,0.755733,0.344468,0.16792,0.0545329,0.0492334,0.586367,0.579949,0.753485,0.193951,0.12412,0.5945,0.0951784,0.092445,0.0374535,0.734176,0.364463,0.879255,0.535808,0.128682,0.906764,0.706042,0.00552475,0.59091,0.952167,0.884437,0.859729,0.730553,0.630781,0.0267843,0.792713,0.791681,0.0475996,0.465269,0.39063,0.846024,0.316925,0.983888,0.961831,0.508383,0.0515857,0.20187,0.22466,0.829585,0.244552,0.0683599,0.665988,0.49795,0.625419,0.882538,0.330129,0.801469,0.0811849,0.284783,0.0231352,0.73391,0.440966,0.18134,0.182007,0.660117,0.948427,0.823651,0.0446858,0.999459,0.670267,0.26454,0.449356,0.247746,0.249681,0.805738,0.402519,0.81158,0.85801,0.253633,0.783542,0.889741,0.550296,0.493637,0.238839,0.657059,0.660817,0.81537,0.26774,0.18878,0.131672,0.984662,0.354957,0.573766,0.784416,0.993971,0.834739,0.334869,0.598318,0.489302,0.20878,0.826677,0.744316,0.743799,0.615993,0.928701,0.0327274,0.12722,0.642934,0.386505,0.407041,0.584955,0.127494,0.367318,0.404817,0.683894,0.33062,0.673565,0.124558,0.204726,0.560967,0.543787,0.21837,0.0285163,0.629831,0.238254,0.488834,0.380017,0.375235,0.731141,0.936817,0.562055,0.775056,0.00856918,0.494897,0.787046,0.33385,0.430329,0.0234831,0.609386,0.954836,0.403518,0.808486,0.537727,0.7261,0.0726281,0.0495211,0.701559,0.490923,0.745345,0.95554,0.804072,0.411614,0.590193,0.30453,0.0106235,0.0125949,0.286356,0.150525,0.39891,0.862431,0.648539,0.234164,0.290456,0.761066,0.449311,0.630568,0.688023,0.488542,0.0737931,0.522335,0.168053,0.388235,0.79942,0.81654,0.492751,0.412021,0.398724,0.802173,0.131019,0.256196,0.577188,0.215124,0.0604264,0.266667,0.0240935,0.338644,0.697334,0.411996,0.278403,0.298514,0.919217,0.259531,0.231821,0.78666,0.231872,0.985171,0.675517,0.161079,0.357902,0.35146,0.326773,0.748573,0.413683,0.0700924,0.00247639,0.208944,0.46536,0.683577,0.285296,0.69293,0.302326,0.31433,0.534071,0.520278,0.709322,0.0940737,0.735426,0.636976,0.510639,0.312137,0.69275,0.942801,0.732519,0.0878685,0.87141,0.478388,0.339888,0.662837,0.999415,0.468543,0.598602,0.452095,0.22172,0.149628,0.98646,0.536885,0.0822568,0.177858,0.257263,0.724471,0.626838,0.316322,0.361014,0.813331,0.0874929,0.0202901,0.341941,0.145156,0.387015,0.657962,0.564378,0.611491,0.0244488,0.118621,0.614117,0.517512,0.444993,0.428887,0.888457,0.882316,0.470904,0.0831916,0.542768,0.0482545,0.341339,0.744127,0.596803,0.0649423,0.840869,0.259324,0.208826,0.943817,0.495531,0.290676,0.713657,0.750295,0.707118,0.308389,0.0752949,0.500586,0.100832,0.907775,0.981955,0.292878,0.936267,0.800536,0.240731,0.404056,0.0661628,0.840572,0.639784,0.82662,0.357149,0.443089,0.556615,0.13716,0.263827,0.625773,0.552636,0.939817,0.818087,0.400084,0.885,0.951137,0.757538,0.395343,0.631818,0.127729,0.890113,0.152827,0.168533,0.687078,0.0852945,0.1152,0.0793466,0.168324,0.75976,0.0730273,0.979465,0.869508,0.830605,0.0515465,0.24005,0.606133,0.529177,0.981824,0.803797,0.180807,0.212575,0.117427,0.305882,0.0625109,0.145368,0.0471771,0.927386,0.104018,0.396685,0.142859,0.50879,0.23379,0.774353,0.792092,0.336633,0.0471292,0.300526,0.60323,0.196342,0.910921,0.911298,0.916214,0.584958,0.0168422,0.910897,0.479631,0.635416,0.604377,0.871758,0.250254,0.778294,0.125055,0.532663,0.163002,0.78734,0.833155,0.523885,0.0127933,0.0787596,0.920912,0.71866,0.113128,0.793336,0.508119,0.112655,0.671407,0.440279,0.490513,0.206997,0.361284,0.344042,0.961027,0.313031,0.571228,0.453511,0.0738125,0.252066,0.228388,0.448754,0.316701,0.0576244,0.548846,0.781601,0.647172,0.691301,0.645421,0.909525,0.554199,0.594201,0.0314799,0.576252,0.984965,0.45836,0.40059,0.928858,0.862683,0.962754,0.420564,0.752376,0.962873,0.124547,0.410779,0.623228,0.896825,0.182106,0.657911,0.560046,0.855299,0.366261,0.223578,0.105633,0.465782,0.948886,0.449032,0.0357514,0.611862,0.509805,0.428179,0.402059,0.870199,0.516024,0.873399,0.48506,0.329207,0.909657,0.269012,0.962146,0.319788,0.364923,0.621884,0.532715,0.548465,0.676776,0.252901,0.0512161,0.886422,0.869891,0.173986,0.551906,0.696424,0.852228,0.86424,0.0180323,0.0585333,0.777432,0.90706,0.385348,0.359877,0.883603,0.225057,0.807715,0.903719,0.872667,0.293916,0.956081,0.747839,0.118018,0.696295,0.624673,0.44064,0.33126,0.962995,0.582787,0.480358,0.934844,0.908638,0.18463,0.82914,0.815814,0.192967,0.108835,0.341835,0.495018,0.589859,0.798626,0.748436,0.425595,0.159354,0.123585,0.689366,0.453083,0.396366,0.157954,0.681284,0.78582,0.549889,0.876238,0.349419,0.835915,0.878466,0.969416,0.997529,0.520926,0.977531,0.931875,0.600147,0.0759407,0.861406,0.6234,0.323525,0.995025,0.297142,0.116854,0.841049,0.374458,0.042404,0.799319,0.787564,0.165748,0.139191,0.722043,0.80864,0.608932,0.235372,0.0317893,0.0742723,0.374507,0.10939,0.796346,0.779763,0.888215,0.990833,0.866774,0.347062,0.214023,0.0589306,0.0715234,0.91375,0.531684,0.59864,0.796235,0.0127097,0.581848,0.768157,0.829842,0.248713,0.592332,0.945371,0.0922892,0.0699371,0.557662,0.826123,0.113081,0.925294,0.084169,0.812437,0.625061,0.448169,0.665214,0.922191,0.402846,0.799249,0.512936,0.59858,0.505483,0.13765,0.825834,0.65203,0.703696,0.00116158,0.640199,0.825272,0.845799,0.563363,0.271318,0.539835,0.476103,0.399482,0.593661,0.204853,0.752894,0.795381,0.745777,0.575671,0.308363,0.866067,0.238046,0.206352,0.673181,0.940369,0.651505,0.367231,0.244901,0.0438684,0.497824,0.645302,0.279498,0.72447,0.722403,0.416131,0.227643,0.863241,0.240071,0.693567,0.0110646,0.973412,0.96046,0.632717,0.447696,0.526197,0.0758318,0.316534,0.936145,0.757567,0.800553,0.445927,0.641026,0.767261,0.895164,0.75476,0.191367,0.279042,|0.958467,0.0768405,0.211477,0.981004,0.114323,0.130734,0.235586,0.0484207,0.789261,0.645144,0.545735,0.778059,0.551176,0.672983,0.456829,0.963752,0.0138402,0.845169,0.884285,0.245048,0.00966489,0.970307,0.926844,0.670706,0.256705,0.334264,0.26017,0.978872,0.0175082,0.612495,0.837166,0.898208,0.563311,0.688887,0.325344,0.458672,0.971461,0.743665,0.580141,0.169822,0.0543668,0.149061,0.95032,0.643635,0.639576,0.016922,0.86604,0.803797,0.62729,0.328333,0.2144,0.151053,0.206633,0.110551,0.659536,0.508301,0.0807087,0.233569,0.564771,0.11326,0.08651,0.392788,0.970027,0.0131842,0.0777866,0.458215,0.655315,0.928778,0.890391,0.569581,0.747022,0.785465,0.24786,0.817299,0.984064,0.757808,0.272599,0.913387,0.458189,0.610169,0.288237,0.831567,0.334668,0.630696,0.0254578,0.0720233,0.686573,0.302717,0.0790287,0.274998,0.26531,0.993726,0.295365,0.257944,0.439525,0.297815,0.537913,0.426761,0.818694,0.262473,0.778418,0.880397,0.3304,0.298056,0.497393,0.344906,0.725826,0.00345707,0.777004,0.93093,0.993587,0.448618,0.241574,0.570804,0.410298,0.304389,0.830695,0.560123,0.676302,0.338254,0.581696,0.246875,0.652456,0.165809,0.443816,0.98194,0.00188857,0.821916,0.0990191,0.222669,0.516366,0.100474,0.510823,0.477468,0.737273,0.584893,0.528971,0.98447,0.668694,0.484532,0.285968,0.304744,0.479639,0.747243,0.0733095,0.903076,0.40283,0.0470583,0.637071,0.791169,0.627478,0.97594,0.755012,0.8227,0.484768,0.302592,0.943905,0.444303,0.172252,0.821679,0.359315,0.694507,0.913272,0.672907,0.734137,0.025701,0.0718434,0.212515,0.999064,0.382033,0.645425,0.730934,0.790168,0.538134,0.855467,0.478551,0.388583,0.355094,0.438666,0.165338,0.645802,0.195247,0.347418,0.798776,0.12578,0.390036,0.897446,0.335372,0.932266,0.162429,0.699172,0.139052,0.961711,0.0184118,0.0802247,0.711698,0.481987,0.445577,0.19209,0.234355,0.671063,0.70496,0.324982,0.806124,0.074021,0.345473,0.464559,0.476675,0.16914,0.864939,0.578183,0.761157,0.306023,0.07718,0.874943,0.907438,0.620396,0.797835,0.581235,0.0258736,0.969559,0.418574,0.529218,0.230051,0.530627,0.199559,0.616352,0.635609,0.0872887,0.0668413,0.843345,0.677993,0.598304,0.460752,0.0444072,0.605621,0.803797,0.844822,0.210378,0.733403,0.779285,0.610697,0.429898,0.0116349,0.454714,0.492417,0.910347,0.403755,0.0489165,0.940715,0.869342,0.75114,0.83851,0.184198,0.23985,0.588307,0.299875,0.0262803,0.789053,0.14252,0.884274,0.418575,0.767826,0.659563,0.950928,0.66991,0.297721,0.189902,0.111665,0.897525,0.128747,0.188938,0.576647,0.562664,0.372004,0.955267,0.200044,0.0864754,0.550793,0.10118,0.94885,0.266468,0.274305,0.0886517,0.0633912,0.22116,0.745334,0.450079,0.597222,0.244531,0.721169,0.520087,0.53948,0.745972,0.118508,0.898639,0.333991,0.163813,0.5118,0.523678,0.594392,0.357757,0.0799137,0.122993,0.604717,0.237118,0.429559,0.623623,0.685427,0.00615239,0.55919,0.233012,0.695536,0.178249,0.540237,0.935209,0.980438,0.147807,0.326151,0.748283,0.80706,0.0377977,0.673634,0.423623,0.428497,0.92892,0.312138,0.413985,0.234053,0.259711,0.267291,0.207009,0.758019,0.721497,0.286235,0.252731,0.0128595,0.375379,0.319296,0.146774,0.595811,0.752804,0.0624761,0.721744,0.620807,0.204935,0.763607,0.70039,0.0627235,0.626597,0.270765,0.804228,0.28963,0.10064,0.479463,0.533594,0.0842278,0.850823,0.473664,0.558107,0.125013,0.266032,0.985619,0.372555,0.212547,0.856875,0.149405,0.435042,0.582435,0.367382,0.26524,0.958403,0.0636665,0.673162,0.221762,0.475293,0.671145,0.567881,0.746248,0.767476,0.820054,0.716662,0.239008,0.318015,0.45427,0.83124,0.269792,0.418655,0.0923933,0.794609,0.630933,0.499884,0.744896,0.242686,0.157163,0.645698,0.0168774,0.456508,0.0771394,0.677722,0.970318,0.771248,0.457054,0.824382,0.683437,0.743638,0.718511,0.511658,0.747412,0.655431,0.286822,0.118417,0.816269,0.206094,0.222018,0.0515812,0.143657,0.0954539,0.734145,0.408168,0.906168,0.107211,0.803306,0.538394,0.590165,0.383383,0.551331,0.353662,0.615104,0.813412,0.00728756,0.775041,0.144145,0.794218,0.0939735,0.0723705,0.688271,0.110651,0.825985,0.450512,0.878088,0.474633,0.244054,0.208237,0.481113,0.019492,0.595553,0.0591859,0.869458,0.35379,0.34524,0.265315,0.318207,0.509272,0.184347,0.732107,0.73389,0.315479,0.363134,0.693499,0.889602,0.377729,0.902782,0.332804,0.560326,0.531087,0.246872,0.773684,0.596588,0.10232,0.555439,0.953054,0.14553,0.892476,0.736695,0.151436,0.485266,0.610597,0.294774,0.856169,0.423893,0.718339,0.958291,0.808756,0.194166,0.811836,0.760562,0.0569494,0.224998,0.951942,0.823014,0.572669,0.11721,0.641612,0.327097,0.316576,0.697579,0.306714,0.361617,0.0613183,0.289577,0.898673,0.212429,0.737913,0.700753,0.146154,0.0575199,0.453621,0.990338,0.926808,0.0536718,0.844359,0.365265,0.342714,0.975601,0.392361,0.0322844,0.0339785,0.308566,0.181756,0.593531,0.621859,0.956858,0.599231,0.799166,0.143393,0.118082,0.257042,0.497809,0.471767,0.351833,0.0774695,0.364299,0.573744,0.182388,0.440288,0.255239,0.838295,0.521718,0.0507243,0.449145,0.841929,0.650337,0.403687,0.741015,0.494815,0.109383,0.549153,0.98279,0.0191094,0.301353,0.505641,0.800292,0.652799,0.225001,0.754389,0.811646,0.0156279,0.810843,0.0503479,0.128147,0.916171,0.302406,0.44878,0.261929,0.392424,0.684011,0.0485912,0.382074,0.0791762,0.883361,0.99004,0.214133,0.715587,0.359915,0.410562,0.194425,0.86897,0.305301,0.814574,0.912543,0.132252,0.373035,0.203764,0.189803,0.255877,0.216778,0.311581,0.308412,0.786853,0.175904,0.844741,0.804061,0.578199,0.942208,0.206817,0.373825,0.482728,0.685508,0.207754,0.900158,0.894244,0.77601,0.706484,0.11513,0.454182,0.0337511,0.482444,0.727057,0.231585,0.747711,0.186077,0.160609,0.408197,0.523597,0.750106,0.0663912,0.640941,0.7065,0.555305,0.532815,0.813876,0.576052,0.809672,0.686101,0.648597,0.543341,0.743563,0.597878,0.953004,0.876338,0.511699,0.749178,0.974961,0.56272,0.236685,0.560073,0.765512,0.049108,0.00548095,0.215795,0.814419,0.25288,0.74021,0.132906,0.265075,0.7843,0.404663,0.978679,0.80444,0.976879,0.140884,0.762485,0.695621,0.0885706,0.687293,0.857309,0.181621,0.245226,0.370416,0.755059,0.296451,0.576812,0.500558,0.54443,0.933451,0.665516,0.279068,0.897217,0.613522,0.283222,0.303748,0.918532,0.0166837,0.196138,0.894526,0.463647,0.788116,0.252166,0.222856,0.604278,0.267248,0.974045,0.35381,0.570509,0.409376,0.0465072,0.267761,0.318647,0.626245,0.0442165,0.820192,0.774543,0.10861,0.0298411,0.611555,0.664856,0.189796,0.78959,0.718363,0.147368,0.401712,0.820172,0.09737,0.0197868,0.390446,0.303446,0.745485,0.876112,0.884017,0.388922,0.270019,0.0939792,0.351858,0.413904,0.527276,0.0316474,0.474179,0.687006,0.621904,0.71261,0.859264,0.237487,0.96866,0.528782,0.759606,0.00507087,0.202896,0.951352,0.837642,0.727315,0.602376,0.269113,0.0697471,0.857494,0.0696236,0.603546,0.605459,0.381966,0.398103,0.17683,0.265728,0.141384,0.478334,0.727884,0.972309,0.601116,0.672419,0.620089,0.0868052,0.821179,0.360547,0.601222,0.781149,0.0801855,0.937217,0.286711,0.965219,0.483533,0.939989,0.874987,0.757115,0.215771,0.400001,0.150386,0.410718,0.685667,0.083855,0.885279,0.604162,0.11081,0.0359989,0.541317,0.874892,0.932314,0.0788086,0.10428,0.206535,0.981586,0.242278,0.447051,0.561185,0.285485,0.963926,0.756798,0.920631,0.597885,0.0481707,0.633029,0.508886,0.501285,0.877138,0.575762,0.615915,0.41107,0.191625,0.381122,0.258159,0.478963,0.0250273,0.00140071,0.854432,0.500431,0.174375,0.00538135,0.949212,0.397839,0.658187,0.622616,0.72139,0.366592,0.105171,0.200452,0.518254,0.917819,0.724987,0.238187,0.375356,0.24544,0.172326,0.964286,0.925523,0.635054,0.977248,0.993801,0.234962,0.059148,0.617416,0.29427,0.367144,0.740297,0.641372,0.252396,0.489677,0.94468,0.326812,0.72425,0.801817,0.91694,0.302468,0.76569,0.748118,0.581944,0.283095,0.157238,0.488628,0.414397,0.701345,0.307059,0.482671,0.353549,0.215331,0.548197,0.334317,0.638331,0.469264,0.440299,0.736005,0.0610384,0.955433,0.14358,0.854042,0.172072,0.418519,0.386425,0.739713,0.317032,0.0118338,0.184164,0.797904,0.824144,0.120664,0.397514,0.14165,0.597126,0.785518,0.300508,0.0688384,0.675066,0.935707,0.993506,0.081906,0.229255,0.78097,0.130757,0.493874,0.382541,0.330822,0.108952,0.868511,0.0154814,0.257951,0.606044,0.745627,0.572958,0.715825,0.423478,0.305154,0.0307599,0.449158,0.479496,0.120203,0.808554,0.278685,0.0998714,0.706471,0.512752,0.0482078,0.780449,0.884052,0.230886,0.00127679,0.0684028,0.765461,0.879645,0.31891,0.283098,0.734426,0.288146,0.885977,0.413153,0.24765,0.548817,0.77529,0.110684,0.214624,0.103365,0.999393,0.959345,0.527075,0.848509,0.615458,0.99034,0.662547,0.614753,0.330736,0.775375,0.416222,0.707581,0.935271,0.257316,0.623916,0.467379,0.503795,0.95864,0.687528,0.837453,0.229287,0.851941,0.297949,0.37113,0.0615345,0.129645,0.105464,0.112888,0.679155,0.196225,0.51144,0.221421,0.160322,0.78145,0.603457,0.254308,0.18953,0.19237,0.876967,0.114267,0.736977,0.347231,0.546111,0.00251627,0.378911,0.753911,0.346318,0.76486,0.793126,0.382715,0.574026,0.713521,0.288411,0.198194,0.878909,0.728447,0.117587,0.290034,0.333191,0.55653,0.56736,0.0544834,0.165627,0.952002,0.285671,0.258018,0.644208,0.635375,0.959111,0.531848,0.492118,0.532032,0.655158,|0.00857276,0.8752,0.858419,0.564578,0.670737,0.531661,0.996036,0.403111,0.416405,0.496319,0.549381,0.428642,0.88198,0.314074,0.21021,0.468074,0.14353,0.552668,0.317226,0.990108,0.711521,0.962289,0.697824,0.136845,0.142708,0.0843336,0.356161,0.295412,0.961337,0.396448,0.513186,0.656932,0.654417,0.807558,0.718794,0.276664,0.0866451,0.943257,0.359454,0.27916,0.516432,0.241983,0.313534,0.866997,0.267972,0.879859,0.610384,0.229342,0.99512,0.243425,0.959994,0.18739,0.568436,0.439906,0.280833,0.828332,0.163302,0.378909,0.759997,0.229244,0.839951,0.115063,0.442239,0.656301,0.0196735,0.191113,0.440988,0.844868,0.896031,0.599797,0.301322,0.391011,0.474101,0.69655,0.931187,0.425745,0.303923,0.917943,0.545532,0.167532,0.271816,0.856376,0.0757017,0.662474,0.965528,0.246107,0.493638,0.983845,0.480052,0.703704,0.375145,0.316053,0.434424,0.682778,0.113468,0.458441,0.852667,0.209434,0.515631,0.97576,0.594735,0.997399,0.296618,0.000893295,0.523694,0.757703,0.0242912,0.519939,0.00615537,0.575657,0.969679,0.777638,0.154645,0.790973,0.356762,0.361492,0.438295,0.861825,0.27225,0.62977,0.478195,0.567848,0.397114,0.537422,0.0510288,0.670476,0.24498,0.651348,0.960672,0.720621,0.948105,0.765549,0.528238,0.106204,0.103533,0.116565,0.784546,0.198784,0.695709,0.389796,0.875626,0.857838,0.162672,0.293928,0.363181,0.361034,0.969949,0.506378,0.055297,0.0660635,0.983229,0.317341,0.566931,0.0783082,0.0157336,0.747951,0.458982,0.322298,0.644762,0.844394,0.329901,0.293091,0.467728,0.545431,0.948128,0.971231,0.2072,0.742421,0.10701,0.183208,0.43658,0.472942,0.32471,0.295009,0.62114,0.16507,0.878616,0.373971,0.438398,0.12424,0.710781,0.581552,0.579889,0.323362,0.033705,0.402893,0.168941,0.406099,0.150473,0.664123,0.891099,0.304675,0.0851011,0.881658,0.746329,0.73906,0.952854,0.379354,0.917147,0.575128,0.877027,0.924714,0.739875,0.0763314,0.16724,0.943179,0.846232,0.671668,0.805551,0.84176,0.761878,0.0955912,0.134485,0.999328,0.472916,0.569649,0.450898,0.992187,0.78985,0.61459,0.815126,0.467318,0.0839672,0.232727,0.741111,0.570592,0.119058,0.244472,0.493333,0.761967,0.942131,0.0488521,0.69995,0.903993,0.151359,0.226352,0.0527439,0.791732,0.199593,0.466228,0.743591,0.19421,0.551889,0.478489,0.831214,0.967641,0.501677,0.593517,0.889592,0.779931,0.398512,0.999358,0.158938,0.419563,0.695284,0.504437,0.58301,0.477711,0.969398,0.684877,0.94129,0.601474,0.969844,0.981081,0.51029,0.444669,0.103835,0.597739,0.188575,0.621421,0.112069,0.16922,0.589101,0.347063,0.500793,0.286837,0.0838891,0.595514,0.458282,0.50828,0.108525,0.777524,0.647321,0.0537831,0.254782,0.854427,0.685928,0.881074,0.584841,0.551901,0.592484,0.705637,0.50013,0.0321222,0.127369,0.355214,0.59118,0.573423,0.71788,0.101276,0.751122,0.73181,0.241703,0.258054,0.589069,0.710994,0.119132,0.999452,0.73352,0.98496,0.647724,0.162147,0.242114,0.981384,0.168986,0.159564,0.401647,0.900071,0.565894,0.298688,0.988044,0.360022,0.671665,0.500532,0.813909,0.348115,0.362917,0.723981,0.405941,0.263614,0.290226,0.6587,0.740586,0.10365,0.925126,0.255268,0.583131,0.117519,0.972898,0.942968,0.125008,0.219987,0.189553,0.650884,0.600109,0.651675,0.284777,0.992167,0.0180053,0.232979,0.256321,0.37686,0.0358154,0.487386,0.770193,0.0405663,0.407567,0.374204,0.709364,0.78248,0.445474,0.451839,0.494701,0.613083,0.0925351,0.910883,0.974461,0.995945,0.253256,0.946402,0.0800583,0.213475,0.810798,0.105835,0.265554,0.361977,0.616672,0.630426,0.864402,0.652633,0.931465,0.695754,0.508154,0.87943,0.84545,0.718409,0.610529,0.483982,0.641896,0.102673,0.677255,0.442653,0.845707,0.374889,0.108821,0.00955397,0.776216,0.116747,0.0198902,0.833628,0.303859,0.671479,0.887256,0.939466,0.589784,0.674228,0.78286,0.257243,0.434384,0.98707,0.943191,0.0874064,0.859102,0.525514,0.139453,0.841427,0.753664,0.621415,0.996328,0.335811,0.684713,0.488241,0.113334,0.549799,0.0111578,0.32159,0.293979,0.762679,0.66081,0.815017,0.0659899,0.0878972,0.050882,0.900551,0.0368257,0.268404,0.575575,0.142838,0.79317,0.408776,0.471701,0.784712,0.802729,0.609014,0.452231,0.430726,0.87475,0.210932,0.613763,0.901578,0.889012,0.348595,0.144891,0.203422,0.877857,0.0691403,0.296359,0.130133,0.40025,0.941531,0.344742,0.28777,0.175309,0.935432,0.84752,0.462774,0.43668,0.221786,0.0557169,0.845135,0.978122,0.921649,0.677927,0.151948,0.266374,0.346169,0.744405,0.538998,0.72134,0.96306,0.902682,0.296576,0.160744,0.67956,0.283589,0.837749,0.127852,0.157057,0.801195,0.66027,0.960782,0.279353,0.0175715,0.657744,0.0845678,0.925643,0.953554,0.918209,0.981242,0.604077,0.727813,0.110117,0.3059,0.532597,0.850173,0.000951946,0.830024,0.844074,0.690007,0.4122,0.93229,0.37699,0.519609,0.872282,0.287551,0.864313,0.72496,0.827616,0.553874,0.150195,0.862391,0.106325,0.0262177,0.47655,0.551257,0.17055,0.68814,0.737904,0.810873,0.214664,0.490599,0.268847,0.174574,0.635292,0.552024,0.0485664,0.64199,0.109489,0.26483,0.830133,0.379436,0.25917,0.905064,0.811434,0.952778,0.125087,0.781374,0.750359,0.504962,0.32849,0.749654,0.759044,0.24928,0.163576,0.234536,0.277173,0.438351,0.578099,0.520034,0.696744,0.239463,0.897796,0.825431,0.00598091,0.527497,0.507234,0.616822,0.00671095,0.331842,0.34437,0.319428,0.073255,0.710216,0.63427,0.665489,0.347997,0.595221,0.698916,0.285992,0.565992,0.462367,0.0734117,0.233602,0.336903,0.0925437,0.0915651,0.759205,0.0497568,0.776288,0.894041,0.979336,0.802049,0.697579,0.132914,0.33482,0.380738,0.263373,0.941635,0.234786,0.212467,0.488695,0.749804,0.935729,0.0388235,0.821485,0.354037,0.375665,0.354614,0.735846,0.153857,0.825052,0.734614,0.243927,0.768759,0.893798,0.174368,0.963586,0.69809,0.262944,0.941726,0.128267,0.244514,0.811726,0.483675,0.343201,0.830086,0.263101,0.762391,0.25435,0.637353,0.406885,0.857145,0.404386,0.265887,0.38906,0.423814,0.888866,0.280489,0.837783,0.512753,0.941418,0.0701395,0.398105,0.275843,0.335993,0.0685269,0.61141,0.667198,0.827229,0.308438,0.210137,0.33389,0.60449,0.158156,0.768013,0.0741686,0.81412,0.906139,0.524342,0.481869,0.209269,0.15014,0.761287,0.0182808,0.965268,0.504174,0.228729,0.873624,0.680658,0.471456,0.448973,0.699973,0.258402,0.357734,0.450427,0.915303,0.361724,0.275368,0.65381,0.0412362,0.502019,0.292772,0.772811,0.941261,0.934393,0.666098,0.125283,0.707818,0.364623,0.850651,0.740006,0.617419,0.864525,0.934973,0.59094,0.886572,0.2663,0.570267,0.0202616,0.635641,0.405898,0.629513,0.110375,0.91502,0.417689,0.218275,0.637946,0.694018,0.529175,0.676402,0.224635,0.904806,0.452472,0.497891,0.835944,0.934825,0.394718,0.929575,0.121353,0.951114,0.626246,0.273548,0.660263,0.579322,0.0266557,0.459417,0.263036,0.318922,0.717275,0.421272,0.953081,0.700977,0.516602,0.142501,0.864388,0.260682,0.920677,0.200772,0.368323,0.252436,0.794928,0.0239381,0.426558,0.172811,0.870916,0.879641,0.12641,0.971793,0.368134,0.817556,0.0435496,0.755086,0.292153,0.846064,0.602883,0.302257,0.178645,0.985884,0.0308744,0.154186,0.790168,0.188819,0.325633,0.795402,0.0667769,0.553006,0.939275,0.471049,0.831057,0.230343,0.397809,0.854309,0.535611,0.973204,0.150525,0.0635889,0.776942,0.296668,0.74273,0.218624,0.773069,0.0211441,0.787647,0.92669,0.0868433,0.263379,0.649389,0.519358,0.765435,0.507149,0.224332,0.853696,0.862778,0.00899202,0.399974,0.885161,0.781275,0.0193408,0.142644,0.972021,0.441205,0.977392,0.599379,0.289802,0.657357,0.602105,0.529229,0.89696,0.907814,0.672269,0.34599,0.803651,0.359056,0.534393,0.750204,0.738025,0.0933567,0.338879,0.988408,0.804511,0.60057,0.515956,0.0702903,0.0955936,0.65163,0.46331,0.739107,0.276005,0.241807,0.239872,0.069203,0.93609,0.941658,0.287927,0.87556,0.892051,0.427443,0.856515,0.830412,0.486099,0.260169,0.856657,0.70771,0.807918,0.204567,0.598613,0.297256,0.600605,0.216327,0.883094,0.676876,0.159581,0.134567,0.588573,0.744281,0.00670236,0.871838,0.872015,0.22535,0.486966,0.611799,0.376734,0.318565,0.100358,0.210774,0.983293,0.63223,0.123254,0.281629,0.759584,0.236807,0.214091,0.609897,0.551374,0.113925,0.690022,0.635131,0.484985,0.118493,0.192086,0.68773,0.749085,0.716208,0.32956,0.243314,0.217469,0.931255,0.473604,0.0275179,0.026653,0.7558,0.773975,0.364807,0.074904,0.758987,0.754574,0.0240711,0.278536,0.359243,0.766606,0.728513,0.145434,0.7422,0.984449,0.347741,0.717056,0.345767,0.284032,0.53394,0.202996,0.82069,0.554802,0.957344,0.343322,0.222659,0.540907,0.555686,0.691307,0.319341,0.0533402,0.359005,0.486273,0.0302238,0.894877,0.960294,0.307746,0.481478,0.0538937,0.417655,0.84527,0.476054,0.0851756,0.0832323,0.990795,0.998525,0.8217,0.254638,0.265121,0.901514,0.19827,0.656047,0.984308,0.169203,0.017229,0.673036,0.88874,0.486829,0.950095,0.983486,0.183206,0.927302,0.552354,0.630488,0.958025,0.243823,0.313767,0.432408,0.659859,0.936151,0.20901,0.307541,0.039184,0.112744,0.469423,0.485973,0.849719,0.918889,0.116585,0.544173,0.607506,0.28814,0.856412,0.630276,0.668051,0.00334764,0.191068,0.256397,0.762752,0.0137616,0.374438,0.576698,0.606436,0.679655,0.852434,0.528859,0.023408,0.265429,0.277095,0.997354,0.588613,0.352973,0.423443,0.841065,0.948067,0.909378,0.0459269,0.831657,0.814392,0.263243,0.941172,|0.125061,0.395181,0.353377,0.286046,0.0506673,0.363657,0.702745,0.0903526,0.543081,0.955761,0.313547,0.633181,0.892139,0.845793,0.754037,0.903327,0.18959,0.531068,0.613011,0.727796,0.618622,0.715302,0.799099,0.956616,0.459042,0.21483,0.791548,0.922244,0.419431,0.138275,0.177681,0.732735,0.425071,0.00144529,0.311459,0.829889,0.266023,0.744934,0.95578,0.69967,0.278795,0.898966,0.494368,0.354242,0.813839,0.975718,0.290033,0.7715,0.966759,0.660218,0.00514805,0.871936,0.845032,0.656894,0.81556,0.179288,0.520116,0.781305,0.878429,0.0853066,0.00341576,0.535942,0.755658,0.101817,0.810765,0.776544,0.692523,0.386168,0.318058,0.402732,0.178299,0.584274,0.540393,0.898768,0.930247,0.11284,0.642116,0.29093,0.168217,0.0371674,0.489389,0.0205835,0.230316,0.506788,0.751495,0.214925,0.63023,0.886525,0.189255,0.392474,0.0766516,0.280988,0.707505,0.558448,0.744262,0.0772055,0.65095,0.526864,0.280456,0.103829,0.237929,0.777921,0.0885407,0.273644,0.417993,0.403851,0.238338,0.0026831,0.507074,0.261557,0.779989,0.423397,0.889388,0.226834,0.324763,0.613059,0.555654,0.985936,0.805068,0.375896,0.483401,0.322466,0.756797,0.833392,0.916519,0.970326,0.443488,0.934028,0.321112,0.623432,0.103005,0.722861,0.720493,0.721862,0.786959,0.80253,0.444882,0.344907,0.286597,0.652852,0.0115629,0.0722564,0.212851,0.301022,0.45299,0.268568,0.0454127,0.925096,0.363773,0.233141,0.993326,0.843867,0.408652,0.549314,0.294646,0.438544,0.547419,0.0680318,0.722788,0.96027,0.754881,0.811759,0.248488,0.887848,0.915145,0.554244,0.251157,0.776456,0.974673,0.415818,0.0835956,0.294854,0.335118,0.197978,0.88413,0.106297,0.644766,0.369697,0.791164,0.157474,0.648901,0.46626,0.552968,0.24443,0.467802,0.566467,0.770952,0.889703,0.78458,0.790264,0.773679,0.136751,0.0610246,0.286781,0.473325,0.79226,0.901376,0.910426,0.501867,0.14387,0.632596,0.685883,0.883635,0.424554,0.483154,0.95415,0.762681,0.884193,0.090672,0.554005,0.234509,0.0340657,0.203979,0.93522,0.116311,0.0768545,0.97599,0.369399,0.448401,0.358534,0.103521,0.829427,0.736704,0.786519,0.433684,0.911838,0.97129,0.859403,0.655656,0.823622,0.450913,0.595189,0.619975,0.243979,0.644706,0.615596,0.401013,0.437027,0.705659,0.0200914,0.829009,0.00348645,0.155439,0.0885435,0.252922,0.62396,0.626181,0.471147,0.110278,0.243267,0.73322,0.745763,0.232134,0.972832,0.457455,0.246624,0.306844,0.992535,0.688321,0.875672,0.459149,0.698067,0.807463,0.960537,0.289619,0.971422,0.934321,0.279717,0.946168,0.440351,0.155247,0.635187,0.0392777,0.197769,0.113771,0.493934,0.709366,0.229621,0.587072,0.252802,0.631212,0.45368,0.0755752,0.138259,0.0940154,0.942066,0.526558,0.235202,0.857901,0.388967,0.439394,0.365842,0.728566,0.498055,0.93494,0.667819,0.382536,0.851404,0.945859,0.98187,0.618505,0.660219,0.519456,0.203108,0.0170896,0.830611,0.115457,0.388271,0.409134,0.0689777,0.211,0.779397,0.555727,0.655843,0.702266,0.700724,0.309134,0.215159,0.116324,0.656204,0.704373,0.0364001,0.213276,0.903616,0.980885,0.420633,0.362422,0.266978,0.692766,0.0806863,0.943866,0.70852,0.855696,0.959309,0.742157,0.0665579,0.0643817,0.892101,0.261141,0.0400605,0.63022,0.243015,0.019637,0.080296,0.606921,0.426813,0.616081,0.332658,0.644423,0.480352,0.170432,0.409635,0.253316,0.627799,0.373239,0.8773,0.722099,0.0831971,0.989741,0.67106,0.214786,0.901096,0.575162,0.632137,0.880662,0.894956,0.485712,0.481754,0.821318,0.158695,0.356513,0.7872,0.118553,0.905294,0.803389,0.178449,0.164282,0.925198,0.103259,0.120465,0.131738,0.144418,0.803716,0.837963,0.986874,0.318512,0.973143,0.601253,0.991674,0.458287,0.0413877,0.766289,0.260948,0.853421,0.606033,0.437089,0.917121,0.351872,0.0263404,0.554001,0.745905,0.820274,0.807955,0.625183,0.933749,0.384959,0.707694,0.577177,0.578372,0.79504,0.73501,0.155219,0.385558,0.477128,0.123674,0.86207,0.210634,0.776853,0.200829,0.272784,0.541004,0.879554,0.828817,0.646722,0.861203,0.779174,0.857476,0.165049,0.971044,0.53509,0.029686,0.53447,0.441323,0.780684,0.283467,0.544361,0.933365,0.770247,0.266359,0.0762696,0.104185,0.106392,0.886556,0.0460421,0.619394,0.749703,0.604193,0.762124,0.415001,0.237237,0.134941,0.412467,0.100633,0.0188244,0.444456,0.397658,0.0476595,0.929964,0.289293,0.0297609,0.0367591,0.382793,0.601686,0.765326,0.54111,0.460824,0.990223,0.917279,0.679063,0.388254,0.0284926,0.947048,0.511054,0.131922,0.67915,0.604578,0.1505,0.523004,0.357593,0.694812,0.0820749,0.840277,0.684366,0.0946252,0.766595,0.538313,0.42721,0.187377,0.692991,0.734296,0.523758,0.740901,0.694472,0.479703,0.465606,0.226493,0.540455,0.215548,0.568668,0.855561,0.340569,0.19441,0.188113,0.661586,0.501242,0.558415,0.69737,0.104501,0.586201,0.104523,0.753436,0.642895,0.0767601,0.959411,0.271671,0.794329,0.519712,0.629715,0.601844,0.253448,0.593809,0.567926,0.865714,0.988171,0.77185,0.461335,0.939295,0.030454,0.119883,0.0551406,0.235781,0.922427,0.836913,0.272171,0.992081,0.340638,0.449764,0.533655,0.782348,0.52703,0.47467,0.753709,0.629849,0.889227,0.961961,0.575632,0.140105,0.193903,0.563314,0.022302,0.124188,0.553544,0.209537,0.02266,0.104451,0.845382,0.172634,0.233077,0.386387,0.493978,0.271855,0.815917,0.311724,0.632542,0.748934,0.829281,0.493572,0.310954,0.357759,0.717188,0.824316,0.685415,0.0548239,0.262131,0.909645,0.875034,0.767794,0.185966,0.464301,0.704593,0.27372,0.493826,0.615347,0.816289,0.78188,0.493964,0.498011,0.0630892,0.353625,0.0278966,0.0911415,0.191025,0.761035,0.535219,0.121307,0.508355,0.404114,0.794919,0.825258,0.459138,0.682178,0.603553,0.892283,0.940446,0.667455,0.187787,0.924411,0.0674576,0.470747,0.33723,0.760092,0.164066,0.112589,0.985837,0.949358,0.0583636,0.598806,0.905731,0.549327,0.524943,0.109132,0.657117,0.386075,0.0598308,0.114597,0.915199,0.711696,0.524622,0.561606,0.507941,0.271937,0.164093,0.330867,0.923108,0.489478,0.287302,0.299488,0.632022,0.527894,0.281653,0.950813,0.282121,0.206855,0.31657,0.846307,0.236584,0.132419,0.497098,0.748839,0.100695,0.671933,0.693815,0.945719,0.98065,0.050633,0.718015,0.407133,0.6142,0.637681,0.266737,0.273434,0.538689,0.379548,0.881379,0.896059,0.204509,0.539493,0.694711,0.31055,0.697579,0.804607,0.824609,0.752797,0.200177,0.774959,0.174034,0.856928,0.0858621,0.715828,0.00294238,0.190801,0.919633,0.566026,0.800276,0.22576,0.456833,0.618448,0.466406,0.58931,0.299594,0.71711,0.809062,0.0260656,0.994837,0.817411,0.317375,0.499738,0.238169,0.263743,0.464604,0.00132626,0.808197,0.13746,0.743532,0.218701,0.959099,0.919763,0.470206,0.386469,0.42306,0.507531,0.628212,0.785533,0.198013,0.650454,0.414389,0.511032,0.943895,0.32703,0.7263,0.120532,0.230925,0.475516,0.204576,0.638319,0.976705,0.651524,0.033082,0.585213,0.532136,0.432657,0.797088,0.392607,0.814841,0.852976,0.405668,0.409087,0.949772,0.700066,0.449638,0.622338,0.982021,0.92025,0.555252,0.456072,0.39229,0.180538,0.963578,0.0169251,0.29663,0.309233,0.546181,0.471012,0.530293,0.905849,0.0430205,0.287439,0.404336,0.15154,0.314648,0.387691,0.301004,0.413095,0.330474,0.339878,0.235384,0.72642,0.411969,0.181425,0.749132,0.389407,0.325127,0.113903,0.465189,0.0601876,0.828205,0.135094,0.196524,0.225175,0.896309,0.636102,0.121353,0.0342908,0.00154132,0.811566,0.975684,0.577137,0.817677,0.933638,0.143408,0.904453,0.407839,0.0982708,0.65909,0.111856,0.73687,0.782823,0.696849,0.670049,0.144206,0.0375838,0.00452626,0.796188,0.908438,0.946868,0.351719,0.150623,0.408845,0.11435,0.548718,0.622515,0.776169,0.802471,0.906055,0.963877,0.614028,0.980989,0.137487,0.442625,0.289237,0.760049,0.208754,0.898463,0.0794951,0.158658,0.29652,0.507195,0.592966,0.219458,0.768065,0.150405,0.507496,0.413665,0.128883,0.672255,0.206115,0.309344,0.258423,0.275049,0.608535,0.134976,0.447954,0.0558744,0.171107,0.513213,0.86054,0.601203,0.0680126,0.463561,0.344134,0.636428,0.0416967,0.892197,0.692955,0.863192,0.678647,0.197219,0.762207,0.0117901,0.230422,0.456336,0.699858,0.854071,0.90627,0.490047,0.76832,0.00796378,0.88786,0.812793,0.952402,0.502785,0.0547484,0.997923,0.754351,0.61056,0.585033,0.788302,0.109544,0.559675,0.150273,0.690541,0.100038,0.284406,0.556136,0.663702,0.707532,0.892049,0.406084,0.870258,0.875316,0.985017,0.282179,0.00216067,0.861582,0.347229,0.683266,0.37258,0.261528,0.369403,0.742739,0.755609,0.605372,0.611207,0.707395,0.492825,0.865155,0.602706,0.976648,0.866228,0.779342,0.394934,0.417984,0.0302175,0.581624,0.926572,0.551634,0.573344,0.892921,0.884246,0.681131,0.793617,0.331059,0.900056,0.259061,0.0279797,0.63059,0.217211,0.687243,0.199707,0.864582,0.320441,0.296498,0.925606,0.586088,0.390519,0.580214,0.674922,0.423686,0.148269,0.470641,0.340601,0.512889,0.531218,0.189061,0.554277,0.958712,0.0763369,0.365949,0.0360186,0.998733,0.497651,0.734992,0.378761,0.0416507,0.768453,0.886825,0.427622,0.127231,0.574348,0.451225,0.203919,0.406087,0.361435,0.953431,0.128702,0.392419,0.833681,0.466588,0.633178,0.183791,0.192618,0.309158,0.543619,0.228269,0.55733,0.532952,0.302723,0.985851,0.144841,0.21564,0.164795,0.474235,0.439156,0.87522,0.67553,0.768066,0.370252,0.172071,0.910099,0.939889,0.330803,0.812672,0.643298,0.66968,0.806249,0.901806,0.717109,0.20448,0.981051,0.493242,|0.554738,0.713492,0.0262824,0.24868,0.216469,0.767402,0.468446,0.454185,0.242956,0.0824703,0.719883,0.588993,0.181065,0.514268,0.0277103,0.836422,0.310256,0.999321,0.215057,0.404057,0.510169,0.43858,0.13215,0.0911189,0.66397,0.564004,0.751954,0.332504,0.571942,0.0736112,0.532214,0.681538,0.613044,0.694162,0.0682559,0.514697,0.345269,0.152757,0.510054,0.874368,0.883052,0.967725,0.190784,0.950003,0.224008,0.142207,0.864617,0.149965,0.156754,0.350233,0.51347,0.987587,0.988842,0.687149,0.331682,0.69785,0.836034,0.177427,0.788734,0.332108,0.286425,0.0210122,0.434297,0.487439,0.871509,0.874912,0.573612,0.942951,0.384292,0.356914,0.262801,0.502315,0.373723,0.264321,0.492376,0.993591,0.562219,0.904022,0.369848,0.112587,0.398144,0.505237,0.748901,0.162414,0.492252,0.0113779,0.620288,0.513426,0.0684216,0.0567042,0.0480364,0.851094,0.349677,0.861694,0.127718,0.181511,0.802156,0.193761,0.849562,0.479607,0.825595,0.521364,0.611432,0.780098,0.584245,0.249916,0.555868,0.586803,0.679816,0.353636,0.612111,0.914199,0.490211,0.589032,0.0359335,0.817303,0.366143,0.47969,0.739721,0.761349,0.855656,0.917695,0.557554,0.503056,0.343646,0.0294579,0.735587,0.186332,0.0478558,0.266341,0.785659,0.695095,0.543632,0.0483051,0.356122,0.323214,0.749306,0.0776621,0.140598,0.55443,0.0273366,0.789161,0.797555,0.787146,0.331547,0.61661,0.479448,0.297606,0.124541,0.095537,0.671815,0.433839,0.207803,0.611838,0.140145,0.609866,0.985003,0.571016,0.110182,0.011808,0.771649,0.100079,0.493647,0.658944,0.856613,0.334539,0.25585,0.358083,0.925484,0.0145476,0.595533,0.968189,0.141277,0.521082,0.622601,0.0325183,0.872607,0.967342,0.853778,0.458053,0.105534,0.145891,0.622646,0.213693,0.831398,0.522362,0.900014,0.683816,0.925453,0.232871,0.0338401,0.7354,0.0105018,0.0521212,0.647627,0.389499,0.361512,0.74534,0.167657,0.924262,0.449337,0.182348,0.633916,0.113929,0.69811,0.675404,0.415755,0.575958,0.596871,0.811052,0.584797,0.896604,0.028194,0.138905,0.147945,0.532878,0.685536,0.110994,0.172175,0.528175,0.635387,0.504692,0.699976,0.820467,0.0759876,0.158499,0.805127,0.225216,0.162468,0.250992,0.812755,0.35381,0.184567,0.098722,0.508652,0.184904,0.377175,0.76474,0.87533,0.70767,0.518146,0.804924,0.266482,0.282517,0.702531,0.669027,0.497169,0.0881871,0.92027,0.69951,0.0270261,0.570896,0.894666,0.691537,0.813706,0.710287,0.778552,0.23042,0.960002,0.653152,0.70862,0.697346,0.906226,0.112085,0.873496,0.274868,0.468354,0.975898,0.506245,0.512262,0.0363251,0.123415,0.270558,0.142521,0.362549,0.69778,0.224605,0.88323,0.576719,0.2228,0.314936,0.606512,0.089689,0.798006,0.249919,0.113253,0.399838,0.926631,0.745923,0.477861,0.201269,0.852167,0.0438617,0.153189,0.477767,0.657466,0.774538,0.643054,0.560232,0.998354,0.916328,0.656344,0.870501,0.0279223,0.332479,0.87128,0.685199,0.119621,0.0858111,0.136812,0.812964,0.680364,0.563358,0.420184,0.831341,0.868812,0.288351,0.3293,0.930341,0.94605,0.735145,0.0669677,0.607254,0.0962601,0.499272,0.354763,0.344351,0.214732,0.988301,0.505704,0.888635,0.527539,0.463591,0.54932,0.0277371,0.777963,0.3508,0.245814,0.000346363,0.988085,0.164202,0.316626,0.446646,0.395794,0.938734,0.586296,0.511257,0.830915,0.254038,0.995658,0.847889,0.0490306,0.479772,0.264488,0.103537,0.751686,0.127176,0.441589,0.377347,0.17087,0.543833,0.429875,0.591532,0.465172,0.810551,0.188494,0.496817,0.267032,0.170883,0.500444,0.532224,0.846422,0.722146,0.259531,0.565674,0.222373,0.0918211,0.816158,0.511499,0.854934,0.830285,0.847327,0.469707,0.516092,0.687623,0.148914,0.946306,0.531894,0.744908,0.806996,0.988898,0.0275103,0.966373,0.286947,0.768779,0.869872,0.156276,0.952495,0.446283,0.444087,0.577208,0.0939782,0.0679798,0.59639,0.138679,0.329509,0.936981,0.321961,0.220426,0.884573,0.984763,0.791027,0.875587,0.737009,0.409888,0.653567,0.77001,0.799945,0.466165,0.538849,0.427253,0.692244,0.950092,0.16191,0.421095,0.201816,0.254431,0.364695,0.146208,0.978622,0.89807,0.891014,0.971437,0.605557,0.517618,0.257557,0.851345,0.0947137,0.984567,0.164787,0.189815,0.925405,0.759768,0.701313,0.720242,0.183091,0.361185,0.372217,0.105242,0.0342575,0.748179,0.881527,0.984799,0.372681,0.655119,0.314915,0.366057,0.26209,0.433857,0.91849,0.0527064,0.784825,0.95346,0.30119,0.481111,0.195185,0.120777,0.413339,0.394798,0.414329,0.370968,0.324322,0.518768,0.648772,0.259199,0.112144,0.522295,0.825992,0.293413,0.110808,0.137905,0.95563,0.307294,0.107561,0.541774,0.712909,0.399822,0.918871,0.35245,0.0643022,0.173665,0.742108,0.40789,0.671435,0.330172,0.510838,0.762843,0.938362,0.143376,0.611724,0.810929,0.386701,0.190701,0.188147,0.855746,0.166882,0.907298,0.693279,0.204138,0.492395,0.278503,0.0754996,0.969939,0.96252,0.108491,0.681781,0.72436,0.909104,0.220347,0.620147,0.727104,0.475502,0.935705,0.431004,0.812683,0.209544,0.299655,0.59521,0.559582,0.744856,0.104566,0.300437,0.749948,0.0202917,0.675791,0.780934,0.416152,0.559842,0.523449,0.661755,0.341904,0.72146,0.764778,0.592921,0.37872,0.961234,0.867716,0.198887,0.47613,0.946135,0.154299,0.792306,0.280523,0.64816,0.423306,0.76593,0.430496,0.0373865,0.752127,0.12207,0.209758,0.39049,0.959479,0.271772,0.566878,0.628162,0.156778,0.340242,0.414281,0.914465,0.896565,0.174831,0.874065,0.404354,0.718989,0.746839,0.0289705,0.129507,0.769805,0.107969,0.209757,0.0690584,0.825978,0.244419,0.821583,0.720699,0.181764,0.872432,0.916624,0.680646,0.163118,0.328701,0.177595,0.0813217,0.360635,0.918096,0.00330597,0.794858,0.873256,0.415227,0.715767,0.505426,0.238218,0.146345,0.517284,0.308949,0.859632,0.0633241,0.70433,0.693616,0.352149,0.201724,0.146766,0.681941,0.896158,0.679148,0.449604,0.768915,0.689392,0.428006,0.197643,0.757688,0.747715,0.133089,0.707601,0.18163,0.0457872,0.0622909,0.496361,0.716747,0.742143,0.989043,0.482879,0.116759,0.0758209,0.0367113,0.162287,0.160353,0.659876,0.684113,0.212761,0.990978,0.835756,0.593865,0.271099,0.0125378,0.260945,0.718111,0.127145,0.0465471,0.941061,0.749732,0.900858,0.745674,0.422742,0.596148,0.82873,0.211799,0.908963,0.483816,0.477538,0.441588,0.813513,0.536565,0.893808,0.14962,0.894614,0.891503,0.11862,0.339612,0.707489,0.889636,0.593635,0.362726,0.607922,0.448131,0.450489,0.404795,0.813403,0.13117,0.584563,0.941182,0.645825,0.0217441,0.171123,0.102256,0.734289,0.219657,0.126735,0.111946,0.226902,0.538914,0.322738,0.619075,0.908374,0.646723,0.168475,0.505426,0.11888,0.829838,0.630176,0.648615,0.756176,0.686225,0.957206,0.833098,0.169139,0.064191,0.963103,0.174394,0.450703,0.0617244,0.184305,0.975074,0.270225,0.670206,0.782651,0.331199,0.0178843,0.390853,0.30375,0.209997,0.890015,0.302279,0.486252,0.580791,0.167453,0.211483,0.254854,0.336739,0.43588,0.904476,0.0191683,0.434811,0.306688,0.965604,0.710875,0.552431,0.311379,0.613321,0.844264,0.579438,0.74849,0.0157121,0.165936,0.286229,0.5402,0.713644,0.492071,0.750454,0.646206,0.605084,0.252583,0.276531,0.554178,0.0804762,0.405497,0.816936,0.15052,0.481306,0.472573,0.526234,0.0147541,0.333456,0.0333155,0.807458,0.0154508,0.42888,0.654222,0.523489,0.666764,0.419686,0.41672,0.0224528,0.453993,0.885395,0.235694,0.531821,0.732907,0.476364,0.48852,0.135731,0.0182874,0.820227,0.33498,0.647698,0.260682,0.700794,0.947052,0.724608,0.527249,0.149852,0.258951,0.80567,0.654114,0.743981,0.0632262,0.503398,0.439379,0.733672,0.862912,0.289462,0.0564238,0.195413,0.650205,0.847319,0.650311,0.265442,0.190223,0.21246,0.987966,0.0727201,0.515002,0.737518,0.206059,0.191138,0.972308,0.557071,0.438061,0.689283,0.0451868,0.83514,0.230596,0.716464,0.904138,0.973574,0.113755,0.636889,0.504148,0.0232117,0.638438,0.903124,0.977029,0.136545,0.329586,0.961412,0.0673877,0.100911,0.575205,0.128816,0.75347,0.963532,0.543999,0.518688,0.626207,0.966644,0.314461,0.519827,0.956631,0.0673977,0.342594,0.725011,0.73002,0.971531,0.177683,0.794232,0.342511,0.398904,0.290928,0.239534,0.921848,0.741122,0.0311893,0.697044,0.821129,0.520081,0.111284,0.52109,0.290669,0.180895,0.296796,0.120017,0.134128,0.0132239,0.125488,0.196141,0.284314,0.959323,0.673953,0.776657,0.721023,0.835066,0.236659,0.307252,0.505998,0.934615,0.308283,0.892681,0.897612,0.508172,0.537777,0.0933349,0.828626,0.145029,0.133997,0.453344,0.674419,0.315944,0.470824,0.710856,0.272371,0.207833,0.895945,0.794548,0.226373,0.955981,0.103701,0.261976,0.765558,0.284003,0.750307,0.231716,0.279781,0.232283,0.574579,0.753247,0.1996,0.96335,0.920717,0.650497,0.986135,0.921845,0.419657,0.845137,0.199577,0.795472,0.298994,0.11841,0.726679,0.637391,0.441612,0.0465484,0.95021,0.93067,0.459322,0.228959,0.0149435,0.637765,0.415672,0.900947,0.766251,0.804722,0.498936,0.868496,0.557086,0.012522,0.202677,0.579661,0.78149,0.0394106,0.38056,0.000797749,0.704704,0.140087,0.508709,0.448058,0.8114,0.212793,0.986355,0.852111,0.758498,0.89033,0.385343,0.263827,0.510398,0.848297,0.242756,0.153204,0.322704,0.0959886,0.710696,0.818041,0.53237,0.825741,0.982887,0.850538,0.51538,0.608824,0.761296,0.4275,0.726355,0.0543784,0.16013,0.0412207,0.180468,0.572958,0.413957,0.424013,0.105002,0.0527155,0.817336,0.527147,0.878666,0.51141,0.241548,0.573647,0.488545,0.518217,0.946745,0.065334,|0.23289,0.233682,0.251991,0.475089,0.87705,0.508024,0.430798,0.241343,0.522474,0.0291406,0.774198,0.541931,0.0946864,0.0383719,0.389695,0.227086,0.347233,0.511534,0.839137,0.223775,0.171385,0.145867,0.167231,0.560799,0.330294,0.418281,0.637116,0.873335,0.340658,0.978719,0.387171,0.263459,0.165063,0.154152,0.720639,0.755978,0.140561,0.483428,0.569838,0.189231,0.836088,0.792106,0.221848,0.607939,0.0856969,0.147271,0.32367,0.534197,0.460642,0.394177,0.814886,0.402042,0.0671522,0.202039,0.42527,0.520195,0.0719022,0.666323,0.510464,0.265534,0.880034,0.974658,0.959714,0.49907,0.0128402,0.185099,0.985341,0.805499,0.778913,0.351643,0.411621,0.96107,0.571777,0.621703,0.108886,0.223557,0.794313,0.757489,0.732316,0.803715,0.10284,0.0897157,0.919717,0.181771,0.284945,0.484717,0.129054,0.84585,0.841025,0.925939,0.506165,0.770986,0.826668,0.952376,0.0363297,0.431886,0.792438,0.763958,0.284913,0.399597,0.913925,0.231615,0.79847,0.736592,0.244783,0.926259,0.624871,0.930765,0.267016,0.352386,0.920651,0.0970506,0.408156,0.892241,0.800729,0.0691375,0.303824,0.243597,0.625391,0.73925,0.963189,0.670238,0.964892,0.657812,0.186928,0.226923,0.548647,0.821899,0.62702,0.746577,0.437032,0.958443,0.791095,0.101954,0.0923746,0.975543,0.435981,0.451894,0.986621,0.455096,0.558049,0.351116,0.685876,0.53648,0.096824,0.509247,0.439859,0.976382,0.435263,0.142194,0.858087,0.205674,0.69969,0.871393,0.389179,0.294233,0.198137,0.860421,0.961532,0.594096,0.0827308,0.684669,0.678342,0.176151,0.10369,0.768683,0.129308,0.704686,0.170352,0.174224,0.564766,0.706326,0.183967,0.936293,0.452424,0.841214,0.788378,0.566255,0.302759,0.664715,0.350065,0.064971,0.638461,0.137649,0.418148,0.533765,0.578368,0.241403,0.363539,0.405805,0.920426,0.418514,0.167408,0.139791,0.506665,0.640443,0.624636,0.936273,0.421718,0.0904682,0.127807,0.235249,0.0172398,0.776013,0.0102582,0.72424,0.833992,0.66366,0.0400805,0.550212,0.986952,0.344993,0.0158935,0.0637125,0.189226,0.476019,0.651303,0.686932,0.799807,0.979247,0.767211,0.350326,0.0506784,0.981802,0.184442,0.362127,0.594246,0.468906,0.835294,0.202742,0.732886,0.131317,0.927751,0.443396,0.909478,0.983251,0.796364,0.658407,0.351824,0.735766,0.799941,0.673932,0.825529,0.473641,0.00794244,0.526523,0.778113,0.0471493,0.0997425,0.0782799,0.415378,0.372921,0.953072,0.730379,0.490759,0.856926,0.438479,0.617433,0.457456,0.030637,0.268905,0.62494,0.205678,0.905273,0.943836,0.984553,0.18575,0.731393,0.889355,0.765982,0.692228,0.139696,0.0162775,0.499133,0.0101708,0.474662,0.644386,0.385287,0.826144,0.900471,0.525904,0.162437,0.0412581,0.0371989,0.568899,0.150999,0.127872,0.226349,0.408086,0.60114,0.77066,0.640076,0.135654,0.865941,0.0205812,0.222509,0.135562,0.844337,0.91455,0.627993,0.465499,0.942232,0.628377,0.843114,0.860562,0.527618,0.119256,0.479884,0.134204,0.384469,0.39886,0.634146,0.387944,0.219281,0.102675,0.908135,0.220144,0.617009,0.644381,0.00310379,0.340659,0.0532031,0.089533,0.759119,0.06993,0.0593549,0.728274,0.762816,0.278514,0.723696,0.0984843,0.65861,0.970805,0.938034,0.477148,0.0450084,0.312598,0.53985,0.259441,0.943904,0.825949,0.310004,0.80031,0.648154,0.972211,0.708008,0.546677,0.446573,0.995147,0.920898,0.9401,0.326951,0.827415,0.0655465,0.966623,0.329875,0.831206,0.157494,0.681514,0.573166,0.313662,0.0513086,0.343518,0.981515,0.144846,0.67304,0.0487131,0.051024,0.440592,0.07572,0.159423,0.157972,0.67778,0.942081,0.0211934,0.323056,0.890499,0.427905,0.40023,0.181475,0.762161,0.165055,0.306866,0.909782,0.662792,0.438946,0.556309,0.544218,0.730361,0.96529,0.705498,0.502428,0.733895,0.0792156,0.688093,0.985284,0.776165,0.806126,0.913207,0.561495,0.820765,0.0639772,0.674135,0.770718,0.259975,0.960659,0.634517,0.785627,0.21967,0.207102,0.800846,0.173197,0.264391,0.271848,0.685006,0.880972,0.689441,0.369987,0.0437616,0.298114,0.613588,0.678923,0.955292,0.582973,0.214308,0.887807,0.914104,0.547411,0.0924374,0.931184,0.945369,0.753827,0.283561,0.419917,0.217872,0.780203,0.210309,0.980306,0.713547,0.372738,0.794449,0.0229518,0.00753969,0.181113,0.0221742,0.513192,0.143716,0.0133539,0.84485,0.893317,0.812598,0.663009,0.650577,0.936741,0.0591576,0.191228,0.107335,0.698167,0.113304,0.744177,0.0757321,0.536678,0.745276,0.145235,0.495729,0.772429,0.375498,0.47283,0.0540183,0.291019,0.740134,0.175221,0.878066,0.465293,0.724279,0.585284,0.228219,0.10524,0.809432,0.365014,0.18631,0.0863951,0.416691,0.603033,0.0171001,0.345671,0.686705,0.740944,0.963824,0.614891,0.0221298,0.932728,0.514387,0.736685,0.280135,0.703209,0.591866,0.500828,0.641254,0.69733,0.195102,0.756379,0.825297,0.436267,0.137588,0.540947,0.198015,0.027949,0.608774,0.00299031,0.103143,0.574116,0.0686117,0.0501479,0.774705,0.487563,0.631882,0.564434,0.981871,0.718579,0.267084,0.917814,0.876924,0.561543,0.611554,0.867084,0.693437,0.127217,0.0858289,0.936736,0.598417,0.0678996,0.749074,0.992031,0.52676,0.528684,0.130831,0.505286,0.904455,0.711601,0.0665436,0.886378,0.393683,0.613012,0.860378,0.705125,0.814667,0.547642,0.955328,0.426999,0.472598,0.856726,0.342106,0.0814532,0.0371009,0.556667,0.138089,0.781899,0.340536,0.922503,0.076148,0.46861,0.625435,0.202592,0.221474,0.252668,0.615384,0.0662272,0.649289,0.459301,0.739299,0.0432779,0.119445,0.211673,0.764041,0.648222,0.894821,0.461941,0.695824,0.850804,0.502299,0.984346,0.646624,0.1531,0.140739,0.357861,0.527108,0.139973,0.715071,0.0209195,0.371706,0.951463,0.919061,0.360873,0.209075,0.480272,0.372301,0.390554,0.408281,0.460106,0.0310465,0.332618,0.00424898,0.939515,0.342153,0.127399,0.615116,0.60029,0.611874,0.146434,0.610608,0.478245,0.531578,0.768449,0.715495,0.335882,0.843637,0.361564,0.373665,0.376733,0.582026,0.726742,0.686472,0.908549,0.843807,0.106782,0.651737,0.0151273,0.00186568,0.622189,0.26395,0.0594909,0.676347,0.6895,0.156124,0.193053,0.826565,0.842523,0.498949,0.25515,0.177594,0.632811,0.416247,0.637878,0.515144,0.467577,0.985986,0.0975236,0.400204,0.913004,0.454406,0.684441,0.847246,0.280598,0.168492,0.271701,0.953312,0.253802,0.387979,0.699711,0.68309,0.729412,0.68145,0.755094,0.519235,0.0959511,0.472009,0.771402,0.767141,0.961829,0.767409,0.625278,0.456531,0.999669,0.634764,0.150993,0.256675,0.556541,0.897626,0.0519946,0.641777,0.347238,0.387788,0.881904,0.199246,0.828326,0.809444,0.565629,0.396213,0.730645,0.295509,0.525976,0.0897034,0.24256,0.416196,0.460037,0.722273,0.556722,0.656952,0.819758,0.751393,0.781092,0.355426,0.520053,0.17728,0.864957,0.154088,0.561414,0.490071,0.138605,0.883914,0.19832,0.318579,0.71714,0.385557,0.639452,0.890069,0.986284,0.87946,0.68665,0.0883746,0.455383,0.580384,0.104053,0.611619,0.0938119,0.236945,0.138717,0.797118,0.109623,0.24222,0.342243,0.719266,0.0805717,0.81414,0.106212,0.0960307,0.826376,0.0930714,0.344149,0.28587,0.42339,0.874231,0.173823,0.0990491,0.0141695,0.0107433,0.635704,0.271212,0.189745,0.142397,0.378316,0.102883,0.529623,0.834585,0.0368466,0.667746,0.439821,0.699129,0.701758,0.099327,0.206,0.56955,0.791592,0.376705,0.990094,0.431152,0.703364,0.252192,0.90836,0.454261,0.715552,0.39333,0.869854,0.862757,0.858452,0.504498,0.217166,0.178727,0.262634,0.188287,0.726946,0.201242,0.199514,0.142172,0.361716,0.522902,0.381442,0.836628,0.174272,0.416894,0.26828,0.867187,0.598624,0.341157,0.238032,0.206985,0.557068,0.192452,0.42339,0.578265,0.541503,0.30597,0.560118,0.455762,0.988252,0.285296,0.457619,0.888331,0.785058,0.642317,0.952082,0.366385,0.348286,0.381704,0.145422,0.757396,0.497495,0.890132,0.75926,0.316705,0.460271,0.0216244,0.472939,0.443703,0.604543,0.408865,0.606124,0.0540805,0.562882,0.454815,0.526133,0.181758,0.723647,0.029177,0.235385,0.371078,0.109959,0.753168,0.679118,0.404372,0.072362,0.0297188,0.858684,0.207169,0.426471,0.00212157,0.993955,0.447562,0.0325879,0.929174,0.804841,0.85939,0.878748,0.318921,0.534674,0.939872,0.663112,0.249292,0.149439,0.63708,0.484539,0.396183,0.648142,0.85554,0.747887,0.566894,0.0244384,0.409287,0.180632,0.366946,0.825178,0.947759,0.0171163,0.435303,0.864332,0.175971,0.994137,0.529506,0.0657161,0.0153995,0.92031,0.106765,0.00716817,0.424988,0.864984,0.989125,0.0574724,0.049575,0.880012,0.944799,0.465123,0.376092,0.253621,0.637304,0.336675,0.195514,0.582744,0.108724,0.368739,0.0184083,0.950263,0.487438,0.0747494,0.04459,0.835857,0.819896,0.572043,0.770687,0.704248,0.417773,0.718927,0.110979,0.301048,0.845744,0.874383,0.882479,0.164184,0.516726,0.869632,0.603895,0.51595,0.728354,0.515668,0.0279354,0.963726,0.769703,0.881037,0.868342,0.697364,0.466079,0.954342,0.263969,0.423296,0.486152,0.444167,0.38271,0.00246763,0.91536,0.95662,0.888887,0.918738,0.152748,0.880728,0.230485,0.253225,0.646274,0.830269,0.883435,0.885023,0.415325,0.920342,0.181244,0.140788,0.303937,0.945604,0.908399,0.597248,0.84363,0.748589,0.87984,0.511789,0.253102,0.720286,0.412264,0.136376,0.500348,0.0232279,0.302218,0.187441,0.883081,0.811889,0.0293068,0.413594,0.853702,0.19158,0.209347,0.394639,0.651379,0.150263,0.604762,0.382301,0.0647031,0.0543919,0.250899,0.469256,0.911488,0.283032,0.737571,0.318135,0.250492,0.0893055,0.915698,0.340858,0.0407838,0.864404,0.336507,0.163931,0.0963521,0.00455534,|0.925581,0.219474,0.897209,0.126867,0.856781,0.322143,0.905518,0.86115,0.713322,0.0822412,0.581356,0.162559,0.107169,0.361462,0.682882,0.637718,0.472982,0.000686824,0.319812,0.98172,0.653988,0.762159,0.902955,0.410423,0.71625,0.667823,0.0454829,0.880461,0.703456,0.494641,0.88352,0.481518,0.742651,0.280652,0.583302,0.482067,0.279062,0.99358,0.360763,0.0926679,0.913956,0.194123,0.861619,0.0360771,0.1753,0.855518,0.275511,0.70925,0.141202,0.33317,0.888542,0.235498,0.40751,0.27926,0.94966,0.697064,0.597394,0.176874,0.395478,0.598678,0.393879,0.939058,0.381689,0.232175,0.652163,0.365589,0.624866,0.00853682,0.504101,0.000533164,0.37766,0.488946,0.496363,0.243656,0.849208,0.813522,0.0946622,0.728275,0.666192,0.113187,0.791202,0.570296,0.308019,0.773788,0.634568,0.262232,0.219463,0.786556,0.449304,0.267058,0.749094,0.937323,0.634069,0.859532,0.51258,0.77634,0.731008,0.547386,0.511523,0.344749,0.951295,0.314719,0.780999,0.34355,0.855914,0.866721,0.937581,0.0875186,0.198288,0.704724,0.42763,0.397624,0.710287,0.627026,0.114485,0.56267,0.434459,0.700028,0.556527,0.481594,0.125755,0.204346,0.939462,0.173664,0.128565,0.688081,0.158062,0.589499,0.0111502,0.855381,0.546136,0.233682,0.502372,0.465716,0.528243,0.71518,0.795422,0.879413,0.628513,0.9769,0.265443,0.742449,0.877572,0.861107,0.456921,0.369204,0.613246,0.907353,0.709335,0.311052,0.499958,0.211328,0.58515,0.298181,0.495041,0.705171,0.579947,0.558709,0.819548,0.771605,0.860869,0.910945,0.242244,0.403001,0.0309616,0.477397,0.61014,0.0137498,0.416472,0.0563962,0.163385,0.651958,0.0456229,0.422028,0.939838,0.715505,0.00519764,0.569625,0.455746,0.80049,0.790359,0.458271,0.910133,0.148491,0.611225,0.115074,0.964957,0.841197,0.706503,0.32205,0.635218,0.577004,0.174662,0.641698,0.559743,0.542297,0.335381,0.255733,0.898059,0.719829,0.959867,0.544735,0.0508877,0.864905,0.53886,0.0989167,0.914631,0.405599,0.973983,0.883681,0.116838,0.789484,0.267181,0.930226,0.940161,0.443832,0.726548,0.927558,0.506305,0.428677,0.913122,0.0575955,0.450509,0.85279,0.987976,0.0417255,0.0967364,0.806693,0.0873455,0.714632,0.524974,0.500048,0.797248,0.688158,0.408789,0.6584,0.200662,0.106564,0.484132,0.464628,0.211187,0.872979,0.298394,0.597154,0.475909,0.810764,0.436125,0.604806,0.410761,0.0885673,0.136909,0.440799,0.309081,0.354065,0.889994,0.401945,0.649195,0.6148,0.930725,0.992442,0.476552,0.986168,0.511112,0.27514,0.492993,0.324994,0.377252,0.386338,0.142615,0.144014,0.138842,0.499527,0.251859,0.31348,0.292752,0.0721031,0.211966,0.457395,0.63046,0.193844,0.589369,0.501469,0.175268,0.588842,0.152325,0.388014,0.672659,0.36579,0.791208,0.665177,0.619768,0.849405,0.258677,0.918907,0.772654,0.322799,0.540701,0.940729,0.451357,0.86987,0.370401,0.34718,0.382025,0.942529,0.569551,0.482143,0.959031,0.86084,0.877476,0.449411,0.418782,0.828317,0.0722133,0.747493,0.205037,0.316591,0.694678,0.499451,0.536542,0.230574,0.945952,0.773209,0.341807,0.613698,0.636666,0.569565,0.813448,0.0664285,0.00819719,0.979216,0.69005,0.942415,0.244712,0.298768,0.528243,0.388422,0.511254,0.391914,0.425848,0.926081,0.4152,0.715338,0.546763,0.704145,0.359545,0.0727763,0.174652,0.790151,0.810069,0.94437,0.64961,0.527347,0.239486,0.0146205,0.950597,0.647962,0.908339,0.809926,0.802196,0.183185,0.152524,0.0425777,0.262485,0.575258,0.680996,0.34771,0.0931678,0.280355,0.27688,0.994581,0.476986,0.259439,0.554163,0.112031,0.11372,0.271665,0.323462,0.810159,0.478894,0.78603,0.63858,0.749233,0.490671,0.776179,0.549896,0.400657,0.728193,0.0412154,0.483993,0.5473,0.383437,0.309714,0.256651,0.87005,0.681863,0.149339,0.00689214,0.291264,0.281742,0.161058,0.427568,0.375834,0.811653,0.534534,0.708171,0.127584,0.912658,0.18197,0.126251,0.92902,0.21651,0.427389,0.788206,0.138014,0.0528274,0.629781,0.907649,0.468177,0.510726,0.614767,0.390637,0.131931,0.295276,0.587089,0.157944,0.0858178,0.0126632,0.117204,0.0485911,0.438407,0.927751,0.729508,0.306918,0.314935,0.868205,0.240948,0.144408,0.691555,0.464063,0.167143,0.490246,0.511618,0.270945,0.695597,0.646812,0.630078,0.344581,0.494411,0.921014,0.727432,0.702891,0.800029,0.299605,0.5702,0.0835996,0.968426,0.772224,0.323245,0.218785,0.380133,0.919362,0.525293,0.254911,0.319493,0.376196,0.0675164,0.7554,0.890258,0.341842,0.715602,0.836241,0.173911,0.0646699,0.297735,0.203514,0.935033,0.140797,0.966032,0.321665,0.322782,0.344111,0.735883,0.736243,0.00701869,0.99236,0.0149053,0.087443,0.73698,0.0205717,0.151167,0.957126,0.78975,0.603058,0.0957868,0.712373,0.347506,0.916223,0.576947,0.25505,0.961778,0.650809,0.476458,0.117427,0.474775,0.682244,0.81988,0.95042,0.505479,0.0544567,0.0252886,0.417835,0.592818,0.371476,0.581119,0.653155,0.764494,0.897353,0.617009,0.693745,0.755775,0.337112,0.11045,0.772099,0.117913,0.208564,0.805838,0.448525,0.261058,0.991631,0.399439,0.874137,0.802135,0.371283,0.296532,0.614971,0.472442,0.554016,0.206449,0.579351,0.275799,0.306501,0.313657,0.201526,0.141008,0.0687451,0.904874,0.464694,0.984521,0.692031,0.388729,0.621904,0.775437,0.670022,0.219516,0.406028,0.754633,0.105527,0.290123,0.904658,0.0444872,0.410376,0.53043,0.104616,0.426961,0.810589,0.825067,0.544523,0.832446,0.961944,0.986849,0.0278051,0.0913819,0.872277,0.284667,0.942694,0.78555,0.894963,0.638007,0.560806,0.756002,0.351101,0.705143,0.846681,0.328281,0.780575,0.393152,0.154137,0.390784,0.270608,0.0930921,0.298733,0.323074,0.880674,0.173638,0.515022,0.604686,0.180695,0.914073,0.192799,0.553198,0.264555,0.865043,0.69785,0.563639,0.366749,0.582699,0.973278,0.512473,0.671878,0.757886,0.791651,0.766403,0.0779041,0.687368,0.890032,0.286883,0.137217,0.550988,0.685065,0.15772,0.647083,0.307565,0.924668,0.399968,0.182502,0.648088,0.850319,0.0563653,0.493325,0.178698,0.603973,0.382258,0.0299292,0.184012,0.49928,0.400195,0.47296,0.288788,0.993943,0.790519,0.198629,0.471363,0.796153,0.0576015,0.114869,0.809559,0.444709,0.71128,0.947381,0.22829,0.944158,0.102749,0.390997,0.389619,0.845547,0.828398,0.376337,0.236828,0.224555,0.529623,0.0236718,0.137277,0.0110449,0.381759,0.329071,0.929983,0.984812,0.278953,0.505333,0.444177,0.680789,0.838852,0.199369,0.563177,0.812531,0.595641,0.308613,0.133255,0.400633,0.899415,0.0956785,0.77674,0.81581,0.191451,0.436795,0.855762,0.874092,0.418173,0.384641,0.805289,0.162821,0.576523,0.510809,0.297175,0.0839036,0.532163,0.68243,0.275129,0.199593,0.314038,0.39076,0.289965,0.26254,0.797055,0.998923,0.773887,0.583291,0.279645,0.0595778,0.631794,0.255084,0.673188,0.00570816,0.197163,0.11899,0.397493,0.224206,0.76272,0.769222,0.316584,0.225549,0.809526,0.601403,0.0553139,0.977726,0.852132,0.41942,0.659117,0.73613,0.770999,0.792539,0.851442,0.894896,0.922622,0.373162,0.203729,0.852461,0.271974,0.642152,0.00495917,0.655791,0.642404,0.791189,0.118619,0.884879,0.0661138,0.260114,0.0625373,0.251409,0.729579,0.795714,0.926646,0.428626,0.753498,0.860353,0.978248,0.0891685,0.605544,0.17651,0.697121,0.21073,0.606714,0.878295,0.122839,0.0753359,0.426413,0.603798,0.499691,0.855394,0.228679,0.0359911,0.362554,0.0717604,0.392904,0.574364,0.0439974,0.261646,0.892757,0.147964,0.197287,0.248348,0.428156,0.335724,0.541966,0.197204,0.877654,0.621857,0.282802,0.636765,0.0336701,0.406482,0.469869,0.193393,0.0419586,0.375252,0.111307,0.472147,0.686424,0.92582,0.533143,0.996203,0.837921,0.395443,0.749118,0.105968,0.0350619,0.251048,0.229346,0.524509,0.968534,0.819785,0.768431,0.75632,0.83581,0.467006,0.183038,0.202965,0.111635,0.612657,0.429885,0.484123,0.0598932,0.120179,0.54719,0.0409752,0.490253,0.570124,0.523855,0.323978,0.16626,0.791845,0.790505,0.974157,0.238991,0.665788,0.576444,0.0148528,0.162308,0.099836,0.885147,0.617463,0.710288,0.302958,0.289783,0.201526,0.200333,0.164836,0.958502,0.359309,0.305921,0.128661,0.552835,0.342531,0.326346,0.33583,0.540525,0.185318,0.643568,0.983655,0.752029,0.0331274,0.133016,0.307924,0.0243126,0.719732,0.632052,0.396393,0.601209,0.432522,0.496847,0.801476,0.270196,0.0258414,0.941293,0.955157,0.113419,0.24746,0.0409727,0.546778,0.886116,0.676903,0.617646,0.408578,0.395023,0.254334,0.598176,0.977204,0.621956,0.264021,0.51673,0.514076,0.277048,0.144326,0.49856,0.13805,0.594888,0.875435,0.875607,0.448059,0.327413,0.676285,0.0610446,0.271128,0.466713,0.28786,0.00450343,0.130767,0.816833,0.40408,0.517353,0.309899,0.518416,0.238114,0.689056,0.342113,0.918567,0.637975,0.922953,0.721587,0.76496,0.125254,0.60768,0.98215,0.083048,0.629888,0.850114,0.465501,0.129087,0.264831,0.696582,0.928024,0.161115,0.760285,0.14688,0.401413,0.371199,0.661555,0.00485486,0.239787,0.730514,0.207435,0.149235,0.837394,0.862484,0.740072,0.566195,0.698849,0.377574,0.165561,0.155356,0.984171,0.967784,0.651604,0.146663,0.780393,0.207246,0.148294,0.561887,0.577144,0.195319,0.842109,0.541605,0.358655,0.274625,0.380287,0.895304,0.509616,0.934191,0.627649,0.595721,0.546169,0.471934,0.872425,0.294933,0.510655,0.456638,0.0442117,0.080838,0.204556,0.226648,0.898477,0.12334,0.975129,0.855107,0.388105,0.64151,0.574721,0.682808,0.969935,0.66248,0.114732,0.775861,0.732437,0.090903,0.882535,0.483563,0.553973,0.342818,0.705353,0.184847,|0.610024,0.682846,0.636868,0.250777,0.201727,0.662685,0.729836,0.545334,0.517796,0.682183,0.947836,0.382533,0.27209,0.402936,0.880874,0.408814,0.486435,0.917022,0.828883,0.471312,0.00213695,0.216008,0.524307,0.429976,0.179864,0.25518,0.57093,0.885026,0.360705,0.820586,0.419637,0.673376,0.673977,0.0553545,0.478764,0.122009,0.294806,0.138223,0.865125,0.451979,0.747133,0.38047,0.725536,0.260382,0.224284,0.124965,0.225585,0.177374,0.873254,0.204981,0.331509,0.938699,0.519808,0.0550923,0.938203,0.46137,0.607525,0.403286,0.467517,0.496174,0.990386,0.416724,0.13857,0.278466,0.0672334,0.355579,0.238226,0.123837,0.706833,0.919106,0.515604,0.0742315,0.506713,0.242047,0.0885833,0.38901,0.945404,0.551036,0.451438,0.901226,0.0152261,0.388755,0.595362,0.825029,0.997181,0.122763,0.815678,0.822135,0.0699617,0.786846,0.662653,0.662617,0.442883,0.368143,0.89752,0.25504,0.239566,0.107082,0.000467718,0.184589,0.113352,0.979753,0.182594,0.680256,0.772669,0.0468999,0.0563918,0.0442816,0.546125,0.346962,0.433231,0.778611,0.680678,0.0676274,0.0296246,0.665612,0.793731,0.846464,0.852692,0.426059,0.654093,0.552404,0.188223,0.837496,0.867015,0.861257,0.422201,0.348695,0.716904,0.801215,0.494811,0.628962,0.908168,0.505457,0.338843,0.480278,0.439663,0.889109,0.647468,0.586179,0.232044,0.429975,0.263091,0.821569,0.788743,0.0492103,0.500944,0.637304,0.0923789,0.607683,0.0386665,0.366767,0.00264394,0.466401,0.883703,0.673271,0.927764,0.850769,0.959373,0.731381,0.188405,0.501334,0.062986,0.791515,0.84857,0.967203,0.229877,0.897963,0.474644,0.971602,0.399824,0.857687,0.823208,0.658231,0.780578,0.832501,0.196352,0.20721,0.858227,0.423721,0.888175,0.266236,0.718464,0.802151,0.198777,0.34825,0.612892,0.578359,0.359708,0.109703,0.792902,0.496314,0.153109,0.855002,0.00458044,0.131019,0.792078,0.524205,0.452145,0.200115,0.696817,0.255524,0.969293,0.42207,0.586249,0.850246,0.916673,0.113356,0.930055,0.0817093,0.542892,0.559565,0.685239,0.183399,0.556822,0.307351,0.702713,0.127821,0.616815,0.061979,0.613271,0.380139,0.585667,0.32372,0.225711,0.0106174,0.121133,0.213091,0.965889,0.0693725,0.736801,0.761132,0.853245,0.0529742,0.609874,0.199852,0.386317,0.347769,0.374435,0.386253,0.441953,0.686398,0.445345,0.106324,0.684221,0.619442,0.0727879,0.925964,0.481374,0.596916,0.255437,0.771115,0.238865,0.804126,0.0607733,0.744921,0.740022,0.959207,0.909206,0.770186,0.439265,0.451274,0.920561,0.0513898,0.842025,0.512512,0.364015,0.350447,0.827246,0.382411,0.483696,0.421629,0.656202,0.642101,0.578203,0.606953,0.52445,0.888356,0.495393,0.936257,0.573581,0.655178,0.291723,0.568363,0.152818,0.685101,0.994486,0.599701,0.468466,0.315073,0.878826,0.383592,0.128497,0.523757,0.216973,0.281349,0.532236,0.58567,0.104931,0.427348,0.103895,0.0951652,0.464064,0.20839,0.351925,0.846398,0.266695,0.626787,0.223231,0.613661,0.970661,0.49621,0.332764,0.535308,0.131814,0.428628,0.997256,0.619934,0.854044,0.841805,0.429886,0.761001,0.61011,0.780009,0.615654,0.711471,0.855049,0.802657,0.899414,0.891766,0.474739,0.155953,0.569232,0.234899,0.436041,0.181645,0.415944,0.871872,0.373462,0.000949979,0.877908,0.0341361,0.432103,0.490797,0.697983,0.0510005,0.244303,0.231521,0.324099,0.638474,0.767802,0.212765,0.524698,0.58511,0.242844,0.000249088,0.341166,0.520076,0.124425,0.0133061,0.249705,0.267022,0.468929,0.545831,0.294479,0.336146,0.724327,0.409093,0.849115,0.933173,0.593426,0.59313,0.158239,0.790828,0.723585,0.833013,0.67867,0.312607,0.507959,0.400203,0.273716,0.951234,0.610495,0.839636,0.109927,0.51864,0.791409,0.122621,0.411521,0.733569,0.324685,0.556446,0.286716,0.614986,0.199169,0.670456,0.378764,0.626463,0.597319,0.490556,0.773698,0.969049,0.224575,0.944184,0.383995,0.0362348,0.624239,0.280147,0.0225387,0.939929,0.48114,0.723067,0.516246,0.909105,0.862043,0.797105,0.0119157,0.890822,0.0679422,0.90479,0.418577,0.27985,0.472633,0.310646,0.0610102,0.199258,0.86908,0.170559,0.792054,0.795069,0.485681,0.492987,0.478243,0.809755,0.441813,0.936487,0.870074,0.531302,0.237136,0.878921,0.259862,0.238515,0.610079,0.758,0.127584,0.309919,0.635762,0.0198824,0.176715,0.202278,0.101623,0.37516,0.114224,0.943827,0.151124,0.883422,0.295582,0.243855,0.98966,0.538308,0.215444,0.788063,0.0514287,0.802774,0.604725,0.333846,0.408809,0.0775818,0.537875,0.300774,0.790553,0.749635,0.868204,0.690374,0.328296,0.79873,0.309046,0.0899066,0.590467,0.43311,0.940837,0.143938,0.526282,0.6427,0.642891,0.0400127,0.645923,0.535916,0.901606,0.75831,0.77725,0.569791,0.192405,0.992243,0.398527,0.0788141,0.0880527,0.62604,0.912105,0.796452,0.994413,0.713685,0.810328,0.680559,0.366726,0.21041,0.59675,0.99182,0.543118,0.40334,0.182537,0.831746,0.963876,0.523055,0.392057,0.917466,0.342331,0.666728,0.178114,0.807209,0.524275,0.00746775,0.208642,0.280995,0.797088,0.218254,0.901077,0.0750374,0.0561453,0.950165,0.521978,0.52484,0.984054,0.518947,0.211411,0.93073,0.827649,0.988354,0.167935,0.00289398,0.502901,0.0159913,0.828408,0.300891,0.66384,0.691828,0.758584,0.645561,0.579904,0.548058,0.374114,0.599688,0.49375,0.852448,0.273262,0.657543,0.569489,0.841088,0.0345273,0.386516,0.572419,0.218613,0.213222,0.55909,0.00296801,0.772974,0.23004,0.356872,0.731179,0.679591,0.249771,0.130373,0.647969,0.815818,0.266388,0.85179,0.12019,0.595514,0.25939,0.118207,0.679223,0.903337,0.276011,0.520592,0.302674,0.841676,0.0728428,0.315781,0.454928,0.343666,0.360601,0.163321,0.229689,0.852431,0.0642985,0.423018,0.780934,0.120244,0.933849,0.279118,0.868007,0.485293,0.855857,0.671855,0.821885,0.0483485,0.627662,0.780753,0.476844,0.513817,0.208707,0.701001,0.999618,0.0300344,0.431487,0.515936,0.357044,0.0757182,0.377503,0.557677,0.455214,0.515132,0.767043,0.96667,0.839207,0.438839,0.0617327,0.132465,0.569636,0.721761,0.443479,0.295746,0.383012,0.416982,0.452855,0.978305,0.670029,0.0982312,0.852555,0.475953,0.0878596,0.782354,0.520967,0.602545,0.0464857,0.796916,0.472304,0.0924923,0.111086,0.253638,0.405415,0.851116,0.23455,0.224756,0.526034,0.221827,0.202188,0.132867,0.0346901,0.612902,0.258418,0.217672,0.210246,0.49124,0.454037,0.0216614,0.0162897,0.895613,0.854461,0.686468,0.351026,0.619029,0.64512,0.25903,0.412999,0.835801,0.482212,0.64549,0.103865,0.113037,0.808365,0.615793,0.356626,0.913458,0.0719552,0.136255,0.0706654,0.59086,0.663167,0.455692,0.875439,0.96211,0.442748,0.367423,0.387484,0.46457,0.90326,0.796122,0.117509,0.0254487,0.160894,0.693963,0.815316,0.591564,0.689359,0.239733,0.0823964,0.348567,0.492585,0.739456,0.558908,0.382594,0.950325,0.741892,0.593791,0.196292,0.94289,0.719379,0.966918,0.855876,0.142681,0.984349,0.631513,0.00568849,0.664969,0.993161,0.181099,0.0139384,0.678846,0.824273,0.210556,0.268658,0.0468521,0.34105,0.509129,0.977723,0.626148,0.400944,0.148063,0.32111,0.0902571,0.301878,0.0890403,0.877076,0.811687,0.0813432,0.700382,0.570361,0.31443,0.0898501,0.453957,0.556113,0.630138,0.732027,0.0947567,0.758102,0.86537,0.486686,0.401906,0.489841,0.699185,0.854213,0.0636289,0.391116,0.00889468,0.86953,0.302413,0.00327665,0.786722,0.523984,0.0451259,0.0556356,0.432308,0.284787,0.32268,0.299951,0.324892,0.0270299,0.591082,0.433422,0.377658,0.512286,0.115275,0.0804191,0.474557,0.275388,0.0591688,0.124886,0.334269,0.99146,0.172329,0.578952,0.0968004,0.570686,0.753651,0.0397763,0.146676,0.60179,0.238337,0.175909,0.149009,0.964031,0.277712,0.481526,0.210439,0.819667,0.583999,0.485779,0.584153,0.852047,0.262075,0.834413,0.641385,0.787337,0.4631,0.168364,0.780047,0.226389,0.839313,0.342564,0.195158,0.217824,0.709124,0.78249,0.8296,0.592409,0.49828,0.969521,0.505213,0.159072,0.00507337,0.720896,0.541627,0.812324,0.093608,0.169119,0.8724,0.175327,0.156405,0.92948,0.979312,0.193577,0.126266,0.797707,0.994829,0.0413696,0.136874,0.478799,0.939157,0.732101,0.94511,0.371682,0.75933,0.441893,0.382575,0.289839,0.909244,0.776221,0.0448325,0.772377,0.275658,0.944386,0.898441,0.0671136,0.287595,0.411452,0.896229,0.569646,0.981849,0.473444,0.904364,0.973573,0.650115,0.215933,0.831321,0.424541,0.032944,0.0399913,0.216572,0.647283,0.902129,0.36259,0.95608,0.19403,0.993121,0.857241,0.995304,0.131569,0.695436,0.0399046,0.0701069,0.716771,0.978385,0.138487,0.578363,0.730587,0.100021,0.112452,0.388874,0.897989,0.119382,0.45771,0.184392,0.247445,0.944884,0.103674,0.385644,0.957936,0.775166,0.0029133,0.890573,0.804675,0.889707,0.0376869,0.0533656,0.51127,0.00756627,0.575928,0.477033,0.579887,0.166645,0.943994,0.353964,0.383104,0.941663,0.947163,0.3973,0.792547,0.126738,0.905391,0.845789,0.30084,0.143645,0.872049,0.693987,0.555548,0.716626,0.290046,0.172609,0.287656,0.0529299,0.491123,0.6787,0.98843,0.188795,0.443523,0.3974,0.0572398,0.00772053,0.820582,0.576683,0.30329,0.92678,0.0442873,0.807175,0.272403,0.476861,0.848799,0.895911,0.878157,0.11051,0.0691555,0.262261,0.579666,0.347064,0.148809,0.412714,0.675376,0.452377,0.82684,0.751823,0.540142,0.615589,0.997123,0.660588,0.973932,0.273878,0.821595,0.581862,0.459678,0.7763,0.821352,0.182564,0.907401,0.0490506,0.2647,0.0217751,0.389092,0.0954397,0.994763,0.563755,0.77827,0.698864,0.873929,0.971837,0.100467,0.465896,0.290191,0.26526,0.538631,|0.790215,0.241839,0.794116,0.61481,0.731423,0.0396194,0.12833,0.430822,0.537379,0.414252,0.74475,0.745502,0.0414696,0.478053,0.339198,0.395122,0.780697,0.828175,0.843198,0.276752,0.733741,0.0575106,0.957072,0.983281,0.633193,0.706544,0.240883,0.685794,0.563512,0.521813,0.0689606,0.489103,0.782035,0.214742,0.234187,0.584903,0.146792,0.927382,0.278619,0.932447,0.321655,0.323954,0.384961,0.58116,0.302334,0.350183,0.794732,0.973633,0.648304,0.938416,0.472108,0.962955,0.443778,0.916901,0.0726551,0.391533,0.274783,0.10621,0.306917,0.149788,0.772061,0.414095,0.130377,0.912033,0.0924276,0.660484,0.792631,0.995809,0.742932,0.187461,0.0493212,0.728553,0.434279,0.606391,0.592965,0.890933,0.910159,0.190145,0.518074,0.765795,0.643586,0.98488,0.0405655,0.394313,0.967715,0.557694,0.466145,0.58644,0.463352,0.157993,0.225497,0.608624,0.997384,0.0833482,0.253982,0.485934,0.472465,0.45856,0.00643021,0.8043,0.742599,0.794725,0.298923,0.393918,0.0665424,0.61578,0.619779,0.640247,0.440319,0.873801,0.973583,0.19952,0.629154,0.00568157,0.867939,0.789861,0.209295,0.250623,0.157319,0.349941,0.912633,0.15646,0.708693,0.136807,0.198317,0.981844,0.535196,0.356181,0.739805,0.1991,0.997679,0.793739,0.669626,0.149692,0.59343,0.542778,0.905967,0.691665,0.000979006,0.858695,0.734575,0.674792,0.984346,0.643803,0.782194,0.108258,0.431045,0.89393,0.0482658,0.906336,0.713687,0.435107,0.607173,0.315708,0.807866,0.379122,0.928062,0.908579,0.976922,0.160546,0.564982,0.945804,0.853512,0.9121,0.6133,0.653583,0.118748,0.122703,0.48361,0.908674,0.279711,0.721618,0.451686,0.35377,0.578476,0.713824,0.959611,0.49085,0.382927,0.0463975,0.8474,0.491158,0.151365,0.208056,0.0177842,0.956047,0.346844,0.384318,0.0305462,0.671929,0.32559,0.146876,0.817618,0.74821,0.0218567,0.64752,0.973783,0.355345,0.580709,0.147898,0.981727,0.747408,0.294051,0.441016,0.98446,0.460952,0.714823,0.972461,0.232524,0.122156,0.412449,0.909948,0.843226,0.221205,0.427686,0.0606281,0.918075,0.192868,0.104315,0.473777,0.687405,0.38392,0.93488,0.335461,0.0128348,0.744186,0.76739,0.923304,0.0978398,0.422519,0.932464,0.795463,0.928092,0.681291,0.959177,0.441946,0.95363,0.187179,0.380403,0.732006,0.344322,0.644709,0.276822,0.0321854,0.237005,0.664306,0.656128,0.111396,0.380118,0.880747,0.468503,0.76331,0.6386,0.529267,0.790854,0.418867,0.79412,0.40907,0.286583,0.0394534,0.610839,0.930052,0.105114,0.172745,0.105408,0.160798,0.912593,0.758583,0.185298,0.791866,0.074984,0.635307,0.912235,0.692065,0.553417,0.465133,0.742242,0.902764,0.0176311,0.0707023,0.300653,0.0259188,0.140097,0.716548,0.579317,0.156484,0.418507,0.584031,0.488746,0.290365,0.217832,0.0374444,0.494151,0.650969,0.919038,0.347331,0.942974,0.388307,0.250422,0.791958,0.151744,0.596595,0.672879,0.221131,0.769058,0.429588,0.926473,0.970094,0.958642,0.510591,0.426581,0.423278,0.868091,0.751715,0.557485,0.173029,0.1798,0.179167,0.368827,0.873901,0.876133,0.616139,0.240365,0.226976,0.588835,0.198,0.614624,0.106252,0.399472,0.903239,0.207991,0.62912,0.420511,0.456767,0.85809,0.858576,0.959399,0.886782,0.646624,0.685428,0.874338,0.569533,0.900118,0.847997,0.266366,0.541357,0.96912,0.604041,0.56635,0.730993,0.717124,0.408549,0.261194,0.206323,0.9705,0.421462,0.636981,0.0457342,0.185349,0.322743,0.546982,0.21243,0.329707,0.292704,0.421967,0.930021,0.469691,0.274777,0.285639,0.708737,0.605692,0.203282,0.601184,0.322917,0.206066,0.180123,0.320923,0.0999191,0.45127,0.965316,0.674638,0.466221,0.540951,0.944728,0.794828,0.267043,0.216661,0.0282914,0.358093,0.763202,0.0573334,0.872654,0.54539,0.157636,0.893881,0.0667377,0.109858,0.352982,0.385873,0.410014,0.115589,0.272873,0.870146,0.356768,0.217613,0.176721,0.792754,0.76957,0.80541,0.431421,0.563548,0.250539,0.488087,0.134927,0.906519,0.322781,0.693572,0.985048,0.466542,0.801311,0.841444,0.240892,0.590382,0.271838,0.835886,0.905623,0.74999,0.195273,0.593278,0.766735,0.948748,0.604209,0.980819,0.966816,0.753139,0.831425,0.911132,0.164903,0.719564,0.808831,0.14032,0.122473,0.07231,0.0693689,0.662926,0.897845,0.380295,0.753338,0.138372,0.964879,0.621094,0.33109,0.214927,0.324861,0.405693,0.138929,0.518502,0.708078,0.795436,0.690946,0.110231,0.229724,0.742869,0.451253,0.31026,0.162743,0.594433,0.00544918,0.986244,0.231264,0.6044,0.996477,0.811686,0.62139,0.0303916,0.0826451,0.31644,0.645918,0.944447,0.818886,0.228513,0.551892,0.818211,0.947201,0.419951,0.673133,0.516011,0.624302,0.629658,0.0427358,0.876345,0.108409,0.651788,0.161301,0.0254602,0.445516,0.261647,0.786086,0.190852,0.443744,0.417847,0.509366,0.194468,0.612874,0.294747,0.245336,0.293088,0.299225,0.877565,0.746382,0.0582503,0.788638,0.854501,0.29101,0.305071,0.545569,0.494231,0.171022,0.254531,0.980768,0.0618522,0.962653,0.988621,0.664914,0.455938,0.117105,0.501815,0.929812,0.933817,0.457078,0.276448,0.095472,0.693706,0.570464,0.339588,0.836075,0.655486,0.12799,0.231858,0.817351,0.701538,0.186935,0.620942,0.879484,0.421528,0.411574,0.0471163,0.715009,0.503607,0.768655,0.567695,0.226166,0.34116,0.589588,0.227261,0.165059,0.87122,0.361393,0.383914,0.534674,0.947583,0.24431,0.983698,0.121674,0.000430167,0.285832,0.196154,0.184594,0.0753475,0.125439,0.0762635,0.560018,0.797988,0.848905,0.865918,0.980708,0.854202,0.524895,0.739073,0.172249,0.0335133,0.625352,0.99386,0.826153,0.15565,0.266452,0.848823,0.586727,0.150595,0.845779,0.197053,0.529812,0.524299,0.584774,0.442331,0.878083,0.720291,0.557465,0.445374,0.574102,0.634361,0.671512,0.938524,0.199198,0.0863654,0.0783618,0.572458,0.262906,0.31462,0.0868189,0.725486,0.456876,0.070068,0.814687,0.291335,0.924659,0.687448,0.669977,0.885548,0.214559,0.346076,0.0423649,0.847254,0.985595,0.98552,0.173947,0.457459,0.968684,0.346157,0.296973,0.307305,0.23117,0.605239,0.330211,0.379452,0.732807,0.232629,0.918086,0.655414,0.567284,0.753595,0.298645,0.473854,0.285525,0.460064,0.467781,0.604678,0.511081,0.227464,0.908239,0.263735,0.355625,0.667667,0.741291,0.871855,0.948883,0.611032,0.939089,0.119711,0.171899,0.817721,0.290583,0.176937,0.653865,0.168131,0.613282,0.481107,0.983267,0.882466,0.947429,0.180209,0.205473,0.776443,0.369975,0.196031,0.490734,0.0299909,0.535341,0.90108,0.547935,0.530732,0.00674587,0.365152,0.374748,0.551563,0.820528,0.373274,0.646767,0.493372,0.171468,0.787364,0.976756,0.118628,0.638314,0.328945,0.719282,0.691395,0.629755,0.163205,0.792203,0.345743,0.26837,0.823083,0.819638,0.11862,0.0129392,0.0209336,0.0656247,0.908083,0.432268,0.272769,0.542452,0.309141,0.830579,0.19909,0.187274,0.913715,0.570694,0.531665,0.654403,0.853095,0.946275,0.171447,0.173106,0.902858,0.0307677,0.853176,0.385329,0.382335,0.249323,0.165005,0.521917,0.0705265,0.38372,0.65382,0.984255,0.469755,0.302298,0.0501056,0.657738,0.059991,0.982907,0.715802,0.304483,0.912913,0.121234,0.249081,0.692019,0.118165,0.479227,0.405035,0.0354568,0.539584,0.386352,0.0684265,0.466674,0.271628,0.401514,0.700832,0.803774,0.831919,0.0665942,0.376199,0.994746,0.825596,0.321502,0.61948,0.284528,0.784911,0.856902,0.134334,0.246097,0.533861,0.290758,0.804361,0.30422,0.233022,0.632844,0.962106,0.164302,0.21645,0.940189,0.333194,0.306099,0.616329,0.636896,0.31563,0.252711,0.0573618,0.533951,0.547872,0.468111,0.494279,0.567413,0.764833,0.360651,0.690004,0.870996,0.780034,0.0821926,0.946889,0.370105,0.924572,0.387666,0.478467,0.900332,0.496758,0.0581798,0.149487,0.526193,0.922097,0.3947,0.296235,0.868037,0.570653,0.0246137,0.746672,0.0153021,0.794368,0.0880184,0.0556835,0.0368821,0.932705,0.913786,0.413874,0.554578,0.953385,0.651862,0.674185,0.0458333,0.929827,0.916336,0.598988,0.98574,0.128937,0.757356,0.0750775,0.539556,0.455286,0.83919,0.1254,0.477031,0.366557,0.0979652,0.0382187,0.62977,0.610872,0.51014,0.277635,0.723137,0.930959,0.0495653,0.15621,0.849632,0.190425,0.514665,0.724792,0.149958,0.697347,0.802845,0.898204,0.499128,0.583341,0.331503,0.973768,0.0852255,0.932439,0.59878,0.70845,0.574768,0.51477,0.900408,0.990825,0.260473,0.0617963,0.487591,0.16961,0.294105,0.419904,0.301648,0.417538,0.931752,0.0623773,0.96791,0.762311,0.64431,0.758605,0.987658,0.969491,0.75894,0.860524,0.76151,0.0337085,0.666518,0.265971,0.276454,0.242251,0.541227,0.187967,0.759903,0.172179,0.71312,0.823423,0.170406,0.479585,0.106508,0.58242,0.52914,0.848049,0.0304212,0.277954,0.520135,0.350828,0.925734,0.151649,0.4926,0.824498,0.827537,0.965994,0.125874,0.764622,0.0686824,0.571215,0.58436,0.245638,0.657344,0.401194,0.606059,0.701645,0.847801,0.709396,0.27661,0.235713,0.0220299,0.857477,0.0341026,0.938323,0.198643,0.120194,0.869151,0.997362,0.643241,0.412793,0.248385,0.200478,0.49839,0.444453,0.378984,0.500317,0.0054692,0.437542,0.943918,0.425637,0.994576,0.891211,0.0354614,0.376966,0.495552,0.860994,0.83801,0.0644405,0.384129,0.530881,0.385633,0.713331,0.928967,0.577588,0.0286558,0.59863,0.605262,0.284457,0.0242971,0.29562,0.904072,0.828616,0.270692,0.361236,0.0413244,0.724203,0.528321,0.436838,0.733426,0.179133,0.624677,0.452041,0.481193,0.393406,0.335024,0.321115,0.805077,0.16545,0.585829,0.142484,0.910765,0.942144,0.0417361,0.760448,0.69253,0.613522,0.532517,|0.242797,0.343841,0.568427,0.280223,0.250931,0.794431,0.724807,0.0736405,0.417502,0.752458,0.0636507,0.169414,0.139209,0.541234,0.776126,0.068397,0.742208,0.661994,0.280632,0.907069,0.0988833,0.831807,0.363886,0.81667,0.133491,0.512132,0.536456,0.119509,0.300341,0.72281,0.304447,0.893239,0.580957,0.569182,0.629204,0.297978,0.569756,0.123698,0.0411745,0.741593,0.694156,0.502764,0.910426,0.599486,0.798055,0.424812,0.228837,0.234882,0.775439,0.889085,0.451484,0.128668,0.163666,0.254732,0.973115,0.309029,0.253326,0.102683,0.658621,0.712639,0.973005,0.942002,0.501417,0.1013,0.860312,0.425032,0.213042,0.151273,0.949535,0.976708,0.771453,0.339458,0.683457,0.921461,0.635882,0.533838,0.717366,0.369796,0.850051,0.500599,0.131743,0.836058,0.285443,0.515643,0.135446,0.481443,0.713805,0.0907198,0.265159,0.726847,0.961606,0.362382,0.817188,0.608554,0.90515,0.425712,0.858257,0.545448,0.653367,0.191519,0.0533773,0.61281,0.666323,0.400492,0.00567561,0.637011,0.827515,0.773718,0.1282,0.788231,0.178074,0.83095,0.876656,0.442132,0.648551,0.535901,0.235116,0.447775,0.0325617,0.67873,0.286697,0.680766,0.870757,0.957783,0.240239,0.691815,0.721243,0.16522,0.190306,0.573905,0.277464,0.548385,0.802933,0.144071,0.313379,0.401188,0.569963,0.513965,0.101822,0.73278,0.581291,0.439225,0.260419,0.247167,0.841613,0.242825,0.282753,0.252896,0.483652,0.987346,0.983854,0.592005,0.273747,0.878711,0.418248,0.0451626,0.586906,0.695207,0.835986,0.792637,0.291344,0.694787,0.185497,0.825955,0.188866,0.612746,0.449555,0.846716,0.385636,0.944707,0.6651,0.0562424,0.792971,0.640547,0.5028,0.318266,0.0768941,0.907981,0.0633147,0.921734,0.0296868,0.059696,0.683591,0.888933,0.358108,0.998338,0.312935,0.794833,0.649832,0.303566,0.952724,0.893796,0.570973,0.752587,0.403042,0.481128,0.0713868,0.171712,0.431882,0.2388,0.28743,0.377288,0.66018,0.454057,0.175799,0.979569,0.306096,0.910832,0.324816,0.541521,0.941016,0.587081,0.0440314,0.747228,0.356809,0.375302,0.315697,0.235878,0.140194,0.975582,0.859149,0.659837,0.988988,0.441691,0.501838,0.72467,0.7426,0.608139,0.594984,0.575865,0.739382,0.390772,0.926476,0.454495,0.204995,0.642992,0.785902,0.281543,0.9866,0.121458,0.181975,0.187756,0.82481,0.761344,0.984885,0.43098,0.783712,0.252482,0.0493038,0.926509,0.805167,0.35524,0.850444,0.640521,0.0909894,0.542709,0.958738,0.412083,0.879962,0.0578051,0.727013,0.762324,0.794221,0.276849,0.648783,0.711153,0.25812,0.952386,0.228416,0.940933,0.580792,0.589493,0.679783,0.081273,0.502708,0.58378,0.0819718,0.177994,0.544027,0.231974,0.156873,0.421258,0.198391,0.0640936,0.762355,0.529023,0.777578,0.515752,0.64848,0.236778,0.827106,0.486463,0.795586,0.205029,0.0124689,0.829142,0.0522743,0.041243,0.660529,0.295242,0.0535015,0.438389,0.876463,0.146799,0.220486,0.998041,0.645471,0.479172,0.175315,0.16186,0.0602374,0.928546,0.491614,0.0526273,0.00374621,0.6513,0.015411,0.145062,0.641122,0.5717,0.924551,0.0668073,0.661449,0.176776,0.0341568,0.33096,0.642178,0.740695,0.398572,0.230491,0.0677165,0.212279,0.104723,0.718387,0.193465,0.260802,0.471804,0.186311,0.60854,0.0612891,0.939069,0.989969,0.770715,0.325297,0.59939,0.279103,0.852351,0.649778,0.437179,0.43658,0.761923,0.334411,0.920719,0.856406,0.0745094,0.924311,0.637985,0.768011,0.35296,0.00783366,0.79463,0.112684,0.536805,0.740399,0.828006,0.925784,0.9865,0.0611298,0.700178,0.213065,0.480965,0.0855123,0.759345,0.786636,0.447297,0.908782,0.428568,0.0548383,0.659658,0.57102,0.989586,0.956904,0.990496,0.323809,0.890441,0.235406,0.116758,0.884473,0.16657,0.999543,0.80347,0.94072,0.702923,0.0846893,0.662023,0.607265,0.749898,0.813883,0.178556,0.423423,0.720848,0.428569,0.711148,0.457928,0.880112,0.979271,0.339522,0.55493,0.520256,0.345798,0.20493,0.754017,0.355639,0.888839,0.513452,0.936884,0.338144,0.0181559,0.146026,0.0884268,0.489244,0.53714,0.753453,0.514284,0.941589,0.53017,0.95859,0.970763,0.795526,0.700885,0.205326,0.568579,0.368461,0.840554,0.762113,0.203926,0.788523,0.00583518,0.641964,0.285987,0.218604,0.567313,0.490329,0.565162,0.843441,0.599548,0.704038,0.993516,0.241099,0.998909,0.0293072,0.981625,0.781195,0.868229,0.765361,0.593586,0.704455,0.082364,0.613612,0.713698,0.29577,0.596083,0.821869,0.27162,0.942224,0.757996,0.274395,0.269598,0.0113242,0.824646,0.864115,0.725534,0.0464486,0.830263,0.492772,0.795223,0.231612,0.780028,0.947674,0.228762,0.889325,0.485852,0.309034,0.868035,0.511086,0.538004,0.725084,0.144312,0.624414,0.83818,0.867996,0.480187,0.15429,0.0972334,0.450228,0.625365,0.640162,0.781249,0.373415,0.803716,0.537759,0.212214,0.407503,0.539317,0.76089,0.993882,0.774092,0.901924,0.321715,0.399362,0.048157,0.995902,0.193984,0.337041,0.386395,0.863113,0.875463,0.584523,0.642695,0.747312,0.296218,0.620156,0.0324517,0.132857,0.0579253,0.361769,0.470532,0.922284,0.354016,0.964485,0.199539,0.1149,0.368852,0.175406,0.844123,0.736914,0.897913,0.832465,0.98263,0.45793,0.778911,0.553359,0.487402,0.276944,0.432793,0.964772,0.962245,0.960596,0.958768,0.992633,0.669602,0.965759,0.209262,0.149059,0.274206,0.982737,0.105261,0.413008,0.213462,0.483344,0.985176,0.820675,0.844782,0.65291,0.338701,0.211714,0.334816,0.902615,0.137854,0.576937,0.518399,0.712092,0.307947,0.543259,0.908587,0.910359,0.531343,0.747714,0.187304,0.415859,0.582142,0.478152,0.26437,0.822528,0.00476152,0.783899,0.893784,0.511259,0.973743,0.547423,0.680909,0.696519,0.356219,0.778026,0.161978,0.143975,0.433081,0.0407394,0.499887,0.0621386,0.0353062,0.694588,0.804735,0.874013,0.42737,0.553936,0.923096,0.460075,0.516529,0.716555,0.611465,0.553728,0.305528,0.237202,0.154248,0.0635593,0.0538306,0.243217,0.229139,0.606499,0.0931269,0.423598,0.90404,0.866809,0.823818,0.583209,0.0119177,0.316187,0.276824,0.818961,0.739829,0.77975,0.114429,0.326419,0.966391,0.241522,0.116167,0.979758,0.201835,0.404381,0.713461,0.117577,0.6113,0.0965976,0.457306,0.293658,0.141792,0.996198,0.745695,0.623544,0.602004,0.329473,0.272324,0.988914,0.962953,0.320737,0.407661,0.641066,0.202345,0.677121,0.412212,0.8469,0.321189,0.470031,0.0989468,0.433343,0.0879593,0.14084,0.535826,0.377432,0.367108,0.451847,0.103434,0.813587,0.880727,0.70964,0.536364,0.406587,0.678082,0.097998,0.88925,0.19362,0.506852,0.358367,0.350909,0.0991249,0.591844,0.925976,0.147692,0.584674,0.910371,0.551962,0.874588,0.0154685,0.0784447,0.802434,0.972485,0.178043,0.609894,0.408709,0.0376958,0.00290024,0.608235,0.078749,0.573281,0.209451,0.371154,0.628966,0.700626,0.800524,0.297105,0.230224,0.943445,0.907498,0.708721,0.276002,0.789818,0.925791,0.0413909,0.218445,0.582631,0.59788,0.76744,0.823823,0.806314,0.598177,0.169765,0.686428,0.442933,0.0251067,0.431351,0.161523,0.0679635,0.814572,0.0880591,0.979299,0.482113,0.932208,0.740513,0.461936,0.439092,0.447272,0.891164,0.872696,0.0558994,0.441996,0.717002,0.758615,0.452977,0.433841,0.088476,0.317001,0.344273,0.92897,0.275916,0.267299,0.904078,0.542572,0.976623,0.771869,0.362073,0.507257,0.0163516,0.958439,0.107782,0.401938,0.959164,0.135141,0.123251,0.477613,0.23328,0.840015,0.595861,0.341142,0.945286,0.400176,0.744058,0.655056,0.508321,0.0243378,0.614852,0.571987,0.949209,0.954521,0.717059,0.272233,0.470429,0.539154,0.525248,0.140777,0.162928,0.314175,0.899837,0.0343165,0.279958,0.678018,0.906616,0.990438,0.0497051,0.73047,0.983198,0.834485,0.828448,0.51351,0.614239,0.340984,0.150094,0.475693,0.103341,0.70621,0.913851,0.261821,0.546096,0.138251,0.826134,0.0350231,0.049279,0.453077,0.272369,0.215833,0.489919,0.469746,0.437207,0.851503,0.607408,0.983799,0.984598,0.958304,0.52403,0.721531,0.058925,0.143368,0.593113,0.486709,0.618644,0.534248,0.602781,0.461132,0.226626,0.391879,0.0323562,0.823573,0.517287,0.952215,0.942775,0.536759,0.368777,0.963608,0.611486,0.576589,0.0264015,0.302535,0.501359,0.929047,0.346713,0.577069,0.60587,0.19924,0.987409,0.370162,0.444819,0.552704,0.995069,0.139105,0.726406,0.846026,0.417757,0.657613,0.357656,0.298949,0.157933,0.556613,0.762316,0.978513,0.820275,0.200374,0.593735,0.684492,0.984243,0.60525,0.0135777,0.989329,0.21194,0.605451,0.225369,0.0521858,0.136929,0.351343,0.66473,0.188999,0.40861,0.721732,0.459906,0.975822,0.548658,0.672969,0.353371,0.0937596,0.745345,0.205266,0.809824,0.336729,0.541019,0.971361,0.367493,0.587712,0.667862,0.145012,0.47882,0.929738,0.197777,0.812906,0.156824,0.410809,0.00403821,0.648205,0.799733,0.626213,0.402753,0.354953,0.609113,0.934085,0.577463,0.520116,0.096244,0.951815,0.98861,0.783897,0.717171,0.962327,0.627513,0.19174,0.906649,0.292512,0.984767,0.869225,0.867422,0.525928,0.824279,0.840854,0.626408,0.358633,0.113602,0.288558,0.53568,0.0102105,0.689039,0.915409,0.0632207,0.277734,0.756126,0.908731,0.00706339,0.978708,0.315391,0.465562,0.0392082,0.167022,0.294507,0.913715,0.88002,0.927329,0.98431,0.280279,0.801271,0.802399,0.890096,0.476403,0.117085,0.66078,0.77082,0.0696174,0.885967,0.186869,0.855459,0.139312,0.631937,0.147296,0.333758,0.700019,0.401271,0.0800207,0.529976,0.138999,0.802624,0.317481,0.980931,0.0406133,0.917876,0.386626,0.234953,0.686129,0.96087,0.793371,0.601821,0.871211,0.179323,0.577593,0.74028,0.860118,|0.819437,0.520932,0.0132335,0.802426,0.539681,0.580069,0.340196,0.00382185,0.865923,0.237293,0.882777,0.710848,0.0907197,0.935967,0.985428,0.746585,0.907936,0.437411,0.696788,0.583086,0.998718,0.427161,0.267686,0.84735,0.433486,0.795581,0.911955,0.933246,0.257101,0.374554,0.607407,0.229345,0.276459,0.393912,0.112424,0.000514865,0.443624,0.557821,0.677156,0.00156379,0.764433,0.841822,0.987393,0.692236,0.550982,0.344517,0.21957,0.592693,0.804268,0.148318,0.319181,0.467171,0.193907,0.867952,0.898041,0.789739,0.084372,0.691397,0.0153108,0.637645,0.00071919,0.214911,0.0422466,0.918018,0.749644,0.425077,0.272921,0.270638,0.325905,0.33814,0.696181,0.49924,0.341668,0.310209,0.682816,0.821391,0.812079,0.838783,0.633884,0.572147,0.681715,0.0266938,0.331261,0.701128,0.660046,0.437406,0.668723,0.0954682,0.620515,0.299078,0.855661,0.082101,0.0111683,0.787898,0.363806,0.353439,0.852965,0.483416,0.00356197,0.00613886,0.322795,0.450635,0.312692,0.54615,0.121686,0.673286,0.459309,0.642568,0.821129,0.142308,0.0442203,0.867582,0.957158,0.582037,0.981711,0.682954,0.975572,0.837213,0.956184,0.298765,0.102668,0.393476,0.193055,0.815806,0.909066,0.567171,0.0873624,0.4446,0.876644,0.835825,0.894275,0.203883,0.556886,0.0264896,0.83719,0.633928,0.31356,0.586534,0.209467,0.260849,0.115634,0.373806,0.367707,0.270655,0.333472,0.29499,0.643348,0.672982,0.00376683,0.130306,0.0674237,0.209419,0.0784824,0.994243,0.689108,0.82989,0.235063,0.12247,0.217006,0.537238,0.449698,0.35986,0.357288,0.4217,0.117655,0.0660301,0.566542,0.199382,0.520518,0.259876,0.400044,0.641607,0.41966,0.166987,0.875529,0.297511,0.551735,0.041583,0.882405,0.898601,0.667411,0.728921,0.636001,0.726697,0.634339,0.810663,0.233096,0.0456417,0.941561,0.234864,0.969512,0.804288,0.885988,0.0671155,0.385283,0.250428,0.473317,0.221262,0.482617,0.293401,0.57582,0.383984,0.393102,0.265817,0.661359,0.896558,0.0918959,0.154927,0.924489,0.441473,0.939327,0.395817,0.213758,0.384721,0.824247,0.697443,0.875024,0.544464,0.640793,0.199661,0.032381,0.726607,0.893889,0.759259,0.443682,0.438895,0.907595,0.0789483,0.550429,0.58148,0.485866,0.42338,0.571649,0.989883,0.99531,0.771902,0.182735,0.935642,0.0693269,0.416301,0.777669,0.877832,0.105157,0.34184,0.130695,0.305688,0.993481,0.0707568,0.115318,0.673763,0.485453,0.550431,0.68196,0.580051,0.895291,0.437386,0.832093,0.176111,0.314873,0.461313,0.711575,0.533796,0.0507901,0.679578,0.844889,0.428719,0.0491975,0.334499,0.103924,0.0410277,0.595908,0.895862,0.324464,0.0816212,0.119144,0.848671,0.0144675,0.386575,0.591511,0.259944,0.169855,0.50542,0.519758,0.615794,0.319852,0.835556,0.164531,0.466604,0.344779,0.308198,0.263003,0.890757,0.583939,0.227435,0.205947,0.849957,0.285536,0.393968,0.120877,0.896837,0.040255,0.151896,0.788352,0.862939,0.463452,0.989018,0.280315,0.602983,0.373823,0.448591,0.30071,0.300305,0.15978,0.689283,0.406542,0.53459,0.977663,0.274291,0.581367,0.299764,0.114211,0.540255,0.930025,0.608146,0.936989,0.19853,0.222504,0.150135,0.983586,0.769354,0.202561,0.61233,0.0697076,0.915183,0.361832,0.758309,0.4379,0.254011,0.204896,0.786297,0.911496,0.440766,0.495314,0.750409,0.17491,0.96259,0.180078,0.0022279,0.856108,0.50607,0.793163,0.413275,0.0417359,0.288933,0.12975,0.533869,0.828111,0.762664,0.494658,0.793476,0.153822,0.98705,0.137061,0.443103,0.892822,0.917073,0.709944,0.0144137,0.547664,0.0885298,0.251695,0.848631,0.544473,0.52232,0.413711,0.111608,0.000822365,0.0273869,0.645988,0.146005,0.272848,0.385048,0.409949,0.169145,0.0513446,0.355097,0.202608,0.0829284,0.489743,0.103418,0.687047,0.301932,0.912579,0.159953,0.856536,0.934042,0.300876,0.0729246,0.915125,0.341748,0.840123,0.477757,0.101189,0.111452,0.336171,0.945066,0.817796,0.821632,0.46398,0.544714,0.711001,0.480799,0.28477,0.0698468,0.218406,0.9962,0.140689,0.418011,0.151905,0.0572566,0.588224,0.544425,0.072296,0.678724,0.708423,0.993282,0.54731,0.576538,0.413593,0.0656566,0.760628,0.0757508,0.601332,0.206799,0.325621,0.178316,0.544475,0.84538,0.287882,0.130753,0.124214,0.279113,0.714904,0.864151,0.647102,0.887815,0.58503,0.963111,0.0888311,0.696448,0.36998,0.980709,0.867634,0.426095,0.434967,0.473823,0.399271,0.944979,0.169356,0.661734,0.719226,0.212803,0.154361,0.926721,0.0321734,0.488072,0.162507,0.599784,0.182354,0.106828,0.278519,0.515814,0.104009,0.146757,0.873534,0.276129,0.407157,0.997786,0.620903,0.257752,0.941284,0.594497,0.739459,0.830614,0.311329,0.113872,0.625402,0.136703,0.837563,0.668286,0.238943,0.547438,0.59208,0.901575,0.321201,0.968924,0.633174,0.867445,0.635281,0.272882,0.980278,0.929725,0.616693,0.582798,0.643707,0.599141,0.304867,0.329625,0.806852,0.559866,0.916429,0.546304,0.359689,0.0614425,0.685241,0.481893,0.369488,0.164456,0.888475,0.447222,0.909214,0.883006,0.204074,0.925254,0.540542,0.824482,0.245101,0.847023,0.0944903,0.980208,0.960186,0.638231,0.183281,0.625394,0.646411,0.0791158,0.20011,0.819848,0.377238,0.668942,0.455321,0.458195,0.207728,0.352178,0.289102,0.825236,0.541932,0.270643,0.673811,0.0931125,0.460157,0.624604,0.860691,0.763359,0.821892,0.42762,0.33793,0.366482,0.247106,0.478761,0.186627,0.876102,0.308779,0.149631,0.5753,0.188056,0.89656,0.732895,0.41816,0.130936,0.949715,0.572791,0.920882,0.932696,0.298772,0.310894,0.607828,0.974074,0.950723,0.18001,0.331512,0.336937,0.0415801,0.873961,0.473083,0.56737,0.0638074,0.536119,0.925918,0.19102,0.163939,0.472434,0.245278,0.200961,0.220003,0.526557,0.166487,0.265319,0.278857,0.639485,0.618047,0.408811,0.692812,0.668649,0.251623,0.596586,0.818295,0.70583,0.0876324,0.775546,0.913665,0.44147,0.692303,0.0606071,0.238329,0.181621,0.818072,0.0162183,0.372278,0.422696,0.537646,0.902742,0.660976,0.618405,0.242452,0.847425,0.430114,0.266923,0.906415,0.696876,0.361538,0.206316,0.0261834,0.0692251,0.563125,0.282567,0.00675547,0.126668,0.471042,0.502106,0.433523,0.630419,0.302494,0.131977,0.203643,0.827784,0.987189,0.0217419,0.0184964,0.201195,0.987365,0.72948,0.358951,0.905521,0.102116,0.298732,0.629879,0.702459,0.710479,0.102142,0.192041,0.853015,0.718578,0.185189,0.259455,0.0293465,0.375047,0.529743,0.492114,0.974749,0.617027,0.406385,0.812788,0.516069,0.854271,0.445873,0.169056,0.155523,0.486162,0.127697,0.8095,0.468129,0.420476,0.470161,0.364745,0.701841,0.916137,0.268221,0.178622,0.00501901,0.479971,0.385427,0.390849,0.465001,0.239557,0.853569,0.371124,0.257756,0.533541,0.948522,0.489833,0.194216,0.118116,0.307825,0.217709,0.417812,0.705807,0.391251,0.87403,0.567935,0.312194,0.797769,0.0182151,0.583263,0.238755,0.930057,0.825922,0.271705,0.495469,0.248582,0.154067,0.438077,0.783945,0.334097,0.722302,0.660346,0.427073,0.838281,0.61115,0.224766,0.0632041,0.204491,0.406116,0.533279,0.969712,0.334932,0.998394,0.623332,0.0375844,0.0299698,0.295625,0.427318,0.659377,0.132201,0.145791,0.213449,0.0399326,0.812527,0.281551,0.8383,0.206808,0.657973,0.25553,0.405325,0.00349098,0.171451,0.281813,0.0991344,0.839518,0.988186,0.333389,0.191565,0.0197684,0.546971,0.334846,0.277076,0.602551,0.935598,0.759978,0.501257,0.338099,0.309901,0.614774,0.634229,0.345883,0.0900171,0.094602,0.240987,0.264592,0.742962,0.678945,0.215314,0.3451,0.988153,0.470852,0.348509,0.663447,0.267024,0.14464,0.774093,0.577407,0.878192,0.354372,0.450252,0.1501,0.315056,0.481829,0.273394,0.112555,0.300803,0.346214,0.814213,0.971483,0.986394,0.189199,0.213501,0.81263,0.494847,0.804913,0.11775,0.791491,0.469004,0.435668,0.0114298,0.27349,0.710412,0.296037,0.548773,0.579081,0.381066,0.0436452,0.325506,0.778295,0.56846,0.80792,0.582085,0.134151,0.00462395,0.122755,0.706336,0.264943,0.658438,0.24751,0.421149,0.895455,0.299241,0.79377,0.992503,0.761179,0.962249,0.63179,0.0410484,0.379719,0.183261,0.182046,0.169111,0.308327,0.141585,0.761318,0.389587,0.562721,0.149379,0.834616,0.536722,0.643016,0.000119925,0.53454,0.218329,0.996608,0.320505,0.416928,0.176463,0.781106,0.244517,0.445831,0.382418,0.569946,0.825448,0.271476,0.0668388,0.0133104,0.885364,0.178222,0.629144,0.300019,0.834488,0.365844,0.922539,0.258478,0.416592,0.613355,0.880008,0.214712,0.907189,0.709054,0.215234,0.991297,0.211371,0.886542,0.0246403,0.668053,0.428499,0.436228,0.763051,0.854511,0.06055,0.44266,0.474249,0.559577,0.0102559,0.127738,0.472842,0.0221723,0.11714,0.242506,0.456881,0.92814,0.887875,0.0730336,0.345955,0.50066,0.695844,0.156082,0.409571,0.345029,0.817743,0.173267,0.389137,0.668646,0.623591,0.0284361,0.73862,0.194294,0.489848,0.0588864,0.962208,0.43861,0.311866,0.699751,0.311656,0.816284,0.687535,0.522206,0.0781325,0.312318,0.984366,0.974877,0.898879,0.765362,0.637149,0.216958,0.255136,0.722512,0.731404,0.879064,0.22777,0.531029,0.676721,0.829884,0.710197,0.296299,0.252162,0.53785,0.687543,0.527092,0.130009,0.682552,0.800651,0.919359,0.420873,0.779365,0.021756,0.217444,0.75375,0.911864,0.644287,0.39808,0.743787,0.0815747,0.0849795,0.271981,0.265512,0.442389,0.3277,0.718703,0.573271,0.187247,0.497986,0.506929,0.212488,0.264411,0.838827,0.0626578,0.598514,0.0663485,0.951626,0.432396,0.333292,0.0836622,0.633656,0.542766,0.028742,0.111161,0.403652,0.0784464,0.500887,0.518729,0.217693,0.488886,0.235815,|0.362832,0.415998,0.392556,0.267092,0.421477,0.493232,0.684668,0.57411,0.426484,0.205423,0.849673,0.921719,0.828912,0.111071,0.915852,0.23694,0.120324,0.341703,0.841083,0.644693,0.183056,0.116787,0.152292,0.758139,0.169523,0.288615,0.883112,0.722069,0.49933,0.0829473,0.410987,0.776587,0.911548,0.971879,0.678537,0.850689,0.916779,0.724214,0.880276,0.0345649,0.613911,0.0839594,0.510616,0.950306,0.632794,0.112101,0.892253,0.946386,0.571354,0.869117,0.96812,0.404971,0.960805,0.900441,0.480101,0.799294,0.070228,0.946361,0.650164,0.0490196,0.317556,0.373631,0.653915,0.289993,0.908754,0.664156,0.865044,0.0952509,0.985362,0.818118,0.240084,0.315758,0.871611,0.679172,0.17927,0.422658,0.229114,0.285352,0.562711,0.527958,0.532837,0.741414,0.3632,0.957203,0.861109,0.335749,0.324627,0.546131,0.914625,0.326799,0.548776,0.63581,0.38125,0.727073,0.574883,0.281229,0.655304,0.17487,0.407323,0.595829,0.927808,0.785078,0.974745,0.934896,0.615836,0.528826,0.230222,0.165859,0.787744,0.863977,0.317437,0.399439,0.297796,0.757268,0.0662102,0.888557,0.121475,0.0339484,0.862463,0.726771,0.0375383,0.650031,0.42197,0.756859,0.174854,0.287563,0.312877,0.00657701,0.587505,0.009381,0.282979,0.0305243,0.676899,0.606801,0.526678,0.539271,0.400008,0.243537,0.683325,0.696795,0.0918053,0.239511,0.903491,0.0814995,0.45447,0.413265,0.928935,0.151432,0.476324,0.731133,0.26613,0.146549,0.482557,0.625443,0.22137,0.420992,0.0730274,0.941278,0.0729796,0.993213,0.653075,0.00738811,0.1449,0.0874971,0.37641,0.897784,0.0969962,0.675554,0.493985,0.883019,0.666778,0.348582,0.299865,0.880898,0.161222,0.152216,0.279916,0.952771,0.90761,0.295546,0.650836,0.436707,0.283104,0.831525,0.633486,0.968581,0.84151,0.0851778,0.578734,0.617684,0.0264622,0.370158,0.181988,0.998884,0.439263,0.529436,0.130734,0.238207,0.523353,0.645632,0.557725,0.604035,0.182303,0.782225,0.0817301,0.112722,0.872634,0.951883,0.875448,0.213093,0.64764,0.582841,0.185418,0.0945641,0.59867,0.250927,0.464879,0.549031,0.912607,0.290136,0.30976,0.931206,0.245378,0.496911,0.0864682,0.214845,0.313521,0.797053,0.2082,0.198517,0.804683,0.21207,0.274412,0.743532,0.241548,0.0309692,0.181487,0.393583,0.796382,0.292996,0.238217,0.576154,0.879625,0.397444,0.439099,0.0764616,0.696484,0.616507,0.581871,0.954809,0.775465,0.849289,0.715475,0.0580973,0.776124,0.769256,0.910223,0.915204,0.409102,0.222678,0.867359,0.868531,0.351859,0.688284,0.0725871,0.49818,0.003021,0.508914,0.0780593,0.21818,0.101347,0.636663,0.566617,0.690166,0.792972,0.423178,0.644634,0.0966349,0.926324,0.409614,0.313608,0.791948,0.179124,0.129596,0.619424,0.576469,0.238243,0.0489723,0.255398,0.0961018,0.454691,0.140873,0.947801,0.861167,0.0078482,0.425134,0.969786,0.213554,0.325358,0.574906,0.96748,0.380322,0.210057,0.0319768,0.83401,0.934511,0.48524,0.302791,0.169944,0.576878,0.529358,0.173311,0.896696,0.283144,0.738745,0.164832,0.0789217,0.734318,0.427375,0.261195,0.775936,0.138885,0.501693,0.941416,0.13886,0.893701,0.769838,0.892758,0.807627,0.426176,0.816357,0.832946,0.904225,0.413383,0.975499,0.789064,0.879381,0.541885,0.330266,0.96327,0.469904,0.974447,0.287095,0.625527,0.217928,0.558922,0.534303,0.249737,0.566877,0.828171,0.845145,0.988341,0.10989,0.749335,0.512335,0.278491,0.653553,0.995537,0.375083,0.658139,0.355883,0.611277,0.143919,0.846324,0.316352,0.557403,0.648336,0.819858,0.432086,0.320378,0.886292,0.793773,0.409569,0.559834,0.644419,0.652681,0.534743,0.405788,0.607328,0.197007,0.628769,0.821936,0.36625,0.631283,0.377167,0.771661,0.967997,0.311293,0.741582,0.885981,0.492632,0.727377,0.240887,0.390613,0.748072,0.639905,0.641029,0.600104,0.681103,0.475964,0.508632,0.560402,0.262841,0.287519,0.730667,0.53936,0.506098,0.475528,0.762684,0.824892,0.980835,0.929552,0.0842693,0.775976,0.566536,0.67852,0.0997677,0.521428,0.679978,0.2973,0.905304,0.109199,0.856658,0.903383,0.634492,0.888465,0.328602,0.373431,0.49098,0.685549,0.168973,0.719853,0.852881,0.188242,0.7576,0.808507,0.324015,0.694259,0.680441,0.0953415,0.916638,0.14058,0.837779,0.728945,0.735238,0.436264,0.708994,0.533471,0.630772,0.235553,0.615583,0.160712,0.945358,0.399536,0.722193,0.922971,0.411458,0.692663,0.420493,0.318167,0.178676,0.360012,0.963638,0.807759,0.698316,0.10448,0.242362,0.322662,0.892613,0.189394,0.0127449,0.31705,0.944836,0.867004,0.0363417,0.314256,0.65733,0.941127,0.461142,0.0335809,0.87931,0.392316,0.0924327,0.0265338,0.0461231,0.0302072,0.622207,0.676708,0.297109,0.267643,0.733823,0.0337858,0.741758,0.790987,0.629416,0.464993,0.0931343,0.233994,0.97234,0.88312,0.259537,0.962818,0.184519,0.886137,0.194671,0.236668,0.790884,0.626181,0.0759143,0.09267,0.516478,0.803423,0.280539,0.00433558,0.733143,0.0885032,0.423419,0.131891,0.690612,0.837412,0.554657,0.235424,0.589396,0.750566,0.457773,0.513899,0.991542,0.131311,0.638148,0.964374,0.705432,0.602255,0.0834517,0.337846,0.756238,0.913581,0.280608,0.842135,0.30531,0.52763,0.723082,0.781691,0.123131,0.635135,0.182355,0.0299494,0.820643,0.94181,0.254784,0.988823,0.614596,0.329377,0.973545,0.474219,0.504306,0.0419766,0.252786,0.13868,0.631461,0.991167,0.549639,0.786945,0.479065,0.636222,0.544527,0.697187,0.992805,0.701987,0.946734,0.546153,0.263632,0.439697,0.960359,0.925633,0.394799,0.0366535,0.982742,0.482278,0.285078,0.980056,0.410318,0.164489,0.0782891,0.60201,0.181105,0.143609,0.92143,0.691808,0.407063,0.500491,0.0894518,0.158826,0.0857183,0.585579,0.471559,0.944092,0.6741,0.829419,0.0299073,0.977045,0.798427,0.575971,0.384158,0.482369,0.426239,0.0686824,0.965502,0.612297,0.572027,0.975651,0.828361,0.784373,0.538475,0.554553,0.758678,0.118986,0.101988,0.904653,0.255647,0.343505,0.0792769,0.087308,0.548791,0.00157613,0.4366,0.601036,0.129504,0.141595,0.959334,0.778864,0.563311,0.337376,0.0788558,0.00529885,0.759938,0.702015,0.422885,0.994835,0.962047,0.25315,0.0741605,0.600656,0.0221865,0.869396,0.0805487,0.711459,0.403468,0.487518,0.793013,0.877563,0.334254,0.38361,0.0950723,0.372308,0.50489,0.111397,0.118564,0.855504,0.946779,0.232798,0.550669,0.309467,0.765559,0.540816,0.96354,0.964639,0.200546,0.791331,0.00527406,0.833389,0.701685,0.629422,0.675899,0.423616,0.868449,0.502568,0.0299599,0.261882,0.844833,0.00410241,0.669085,0.76432,0.0798585,0.661986,0.460825,0.968908,0.0845644,0.349081,0.479065,0.462059,0.467648,0.950887,0.96614,0.476847,0.615221,0.154648,0.136986,0.705135,0.231345,0.759316,0.428328,0.565479,0.365265,0.709938,0.458786,0.695697,0.0895173,0.204662,0.943578,0.668757,0.769151,0.879511,0.516547,0.659786,0.238985,0.786756,0.814673,0.65744,0.195044,0.725347,0.872999,0.128984,0.589852,0.573089,0.572846,0.122887,0.774229,0.971952,0.636932,0.480891,0.609496,0.780959,0.841061,0.833444,0.716263,0.63884,0.474479,0.190279,0.684411,0.868414,0.0635806,0.96898,0.585928,0.106134,0.844247,0.428362,0.110067,0.249172,0.724921,0.191766,0.358952,0.449572,0.603681,0.107382,0.199901,0.835298,0.444889,0.675443,0.608038,0.160805,0.931686,0.415263,0.492578,0.659107,0.879148,0.901199,0.198913,0.14322,0.270573,0.28394,0.299123,0.707032,0.363798,0.908818,0.0820213,0.996096,0.493383,0.311883,0.966043,0.878041,0.646045,0.284564,0.657196,0.0490854,0.132609,0.653383,0.862562,0.659719,0.506638,0.39393,0.898568,0.0590808,0.329449,0.825755,0.842217,0.955308,0.616024,0.714888,0.951437,0.421095,0.495854,0.22914,0.0690317,0.761654,0.745097,0.30413,0.66312,0.128561,0.134929,0.787743,0.0770339,0.260047,0.111537,0.00190842,0.349065,0.877633,0.206413,0.148979,0.77487,0.125178,0.739169,0.0510251,0.748186,0.349817,0.00240928,0.907439,0.859408,0.888315,0.867715,0.936962,0.535147,0.874898,0.0104226,0.861085,0.473909,0.557244,0.622682,0.552053,0.713089,0.635874,0.958826,0.389353,0.257369,0.628608,0.373745,0.83746,0.935525,0.693148,0.0373544,0.779594,0.318714,0.307851,0.582825,0.116845,0.587233,0.495945,0.9991,0.294078,0.906681,0.662598,0.971517,0.969518,0.07805,0.102344,0.531909,0.292077,0.18131,0.471738,0.290085,0.195511,0.109322,0.887831,0.267975,0.874254,0.394117,0.667513,0.601827,0.131977,0.953826,0.226296,0.292116,0.737367,0.362008,0.215735,0.42498,0.516232,0.58674,0.90743,0.735091,0.906084,0.508186,0.566679,0.0332492,0.327929,0.915464,0.618028,0.948008,0.534565,0.880465,0.537882,0.0581343,0.988976,0.977445,0.266254,0.386252,0.205258,0.198673,0.411459,0.465052,0.477221,0.595516,0.976811,0.719514,0.744399,0.995767,0.883714,0.25336,0.737817,0.397636,0.141504,0.993003,0.428286,0.818464,0.59918,0.0103844,0.00277662,0.427259,0.0756741,0.427998,0.480702,0.476005,0.407984,0.251103,0.923271,0.743658,0.813826,0.644313,0.909786,0.417681,0.782927,0.147061,0.891353,0.382825,0.704753,0.455376,0.403802,0.0314342,0.897,0.540243,0.864198,0.286439,0.748959,0.0164374,0.0120516,0.553056,0.554739,0.257026,0.660401,0.244614,0.348681,0.928215,0.270957,0.841699,0.945037,0.0985118,0.0439938,0.212692,0.634614,0.969927,0.612884,0.280541,0.00540662,0.984812,0.693754,0.248534,0.0210665,0.907136,0.321468,0.904504,0.659491,0.992231,0.154073,0.269328,0.163381,0.658217,0.669363,0.993301,0.0831097,0.283942,0.409516,0.676795,0.160789,0.0474073,0.606524,0.575755,0.918401,0.179546,0.0345918,0.275334,0.236938,|0.738481,0.598794,0.288943,0.409349,0.897135,0.139518,0.983968,0.939303,0.0289093,0.408266,0.167756,0.903982,0.776006,0.841303,0.0385965,0.344984,0.412444,0.471652,0.925023,0.234275,0.769389,0.860473,0.110408,0.632845,0.519371,0.207028,0.308646,0.437288,0.611549,0.42512,0.948847,0.733154,0.34708,0.946799,0.675573,0.735571,0.196206,0.699427,0.156561,0.292169,0.903183,0.564088,0.812077,0.974787,0.574346,0.541678,0.644575,0.46901,0.280067,0.372182,0.38725,0.561873,0.872463,0.545726,0.960676,0.482484,0.514293,0.611028,0.797666,0.175365,0.602085,0.361589,0.483383,0.172494,0.0218242,0.0148591,0.164218,0.827889,0.515341,0.893455,0.319202,0.0702402,0.387326,0.0620626,0.114775,0.243654,0.632416,0.579247,0.242444,0.133048,0.117868,0.528886,0.591278,0.518083,0.46452,0.0387871,0.0560748,0.494909,0.507658,0.0588952,0.514634,0.0243043,0.443966,0.344262,0.966647,0.718497,0.228546,0.549249,0.92355,0.590566,0.745592,0.551689,0.376893,0.368337,0.819999,0.524556,0.438721,0.9899,0.967143,0.720568,0.894598,0.22368,0.787147,0.349561,0.425623,0.508232,0.297669,0.896586,0.293527,0.598366,0.0673825,0.932017,0.2858,0.825597,0.00187922,0.483664,0.83717,0.697737,0.441816,0.499353,0.0411289,0.757073,0.548339,0.625962,0.073253,0.535881,0.165557,0.375639,0.74412,0.374008,0.202862,0.624272,0.742438,0.913527,0.211929,0.316906,0.953271,0.197329,0.987775,0.537091,0.288738,0.324034,0.7229,0.423484,0.0647736,0.948503,0.672884,0.671811,0.739653,0.87283,0.696382,0.347598,0.434031,0.185178,0.198705,0.90498,0.564811,0.152856,0.967185,0.811933,0.40163,0.33519,0.56268,0.367493,0.215985,0.856742,0.519052,0.882582,0.0333872,0.440463,0.39687,0.0857502,0.0906736,0.184445,0.560513,0.82346,0.457225,0.293786,0.177496,0.48916,0.16706,0.808658,0.740815,0.825281,0.568685,0.789195,0.930778,0.842888,0.454983,0.890816,0.85083,0.710018,0.445322,0.620488,0.22914,0.0865902,0.818204,0.140848,0.139682,0.460803,0.733852,0.442737,0.195509,0.905067,0.327688,0.550175,0.60682,0.887977,0.945884,0.332081,0.572303,0.548103,0.703256,0.705625,0.855872,0.247533,0.789641,0.557912,0.168856,0.227673,0.007379,0.836157,0.0706446,0.637874,0.431626,0.425437,0.696722,0.367575,0.224054,0.368135,0.831349,0.772544,0.331932,0.913442,0.941084,0.357388,0.0563775,0.477997,0.105826,0.99803,0.783067,0.075086,0.647955,0.261631,0.887999,0.24973,0.2227,0.906453,0.250038,0.498126,0.848941,0.649564,0.240067,0.439026,0.72538,0.397303,0.0819452,0.516221,0.182343,0.827832,0.373371,0.673024,0.0641571,0.768499,0.265035,0.391074,0.824647,0.909766,0.486038,0.892077,0.474278,0.695297,0.677362,0.282684,0.219319,0.263141,0.28727,0.323706,0.0996951,0.16494,0.302871,0.578221,0.137845,0.254425,0.238026,0.451162,0.438987,0.976491,0.793774,0.945052,0.614755,0.243334,0.773557,0.809223,0.606592,0.802455,0.452908,0.793201,0.364747,0.509512,0.313206,0.97923,0.972804,0.109522,0.824941,0.573703,0.0908127,0.144164,0.17221,0.677593,0.646993,0.577968,0.418259,0.830588,0.905922,0.907494,0.37479,0.370201,0.269306,0.497659,0.984082,0.967608,0.941908,0.195965,0.535956,0.965859,0.113384,0.971331,0.660256,0.516714,0.0220668,0.906761,0.434958,0.906829,0.559746,0.429698,0.326873,0.245251,0.662042,0.976183,0.0713248,0.592816,0.772847,0.645432,0.339238,0.134027,0.289781,0.211583,0.653344,0.557918,0.424972,0.424614,0.622582,0.805355,0.548934,0.401885,0.837215,0.628775,0.938224,0.868627,0.25846,0.373883,0.0484256,0.299667,0.281621,0.896053,0.998877,0.328256,0.139628,0.0673324,0.0519779,0.70673,0.0386046,0.170063,0.633215,0.76822,0.768933,0.619069,0.170558,0.274398,0.363151,0.659808,0.558435,0.864439,0.831832,0.414433,0.334679,0.92931,0.0214354,0.432193,0.373295,0.284802,0.312413,0.500748,0.45833,0.639149,0.727495,0.143199,0.406591,0.927215,0.939233,0.528414,0.142006,0.82348,0.720989,0.233487,0.512868,0.139202,0.297099,0.549372,0.161959,0.00126535,0.838876,0.751288,0.849642,0.437564,0.0914777,0.501691,0.77541,0.522808,0.70657,0.458134,0.00770187,0.0583972,0.868643,0.103269,0.159013,0.949165,0.665321,0.420391,0.0978936,0.779307,0.184696,0.750369,0.477465,0.287724,0.211419,0.437038,0.982479,0.493187,0.344107,0.513345,0.485567,0.495333,0.25335,0.0539761,0.53619,0.0683084,0.167087,0.301265,0.936933,0.664502,0.975991,0.836297,0.280329,0.587334,0.34343,0.173636,0.884637,0.756463,0.0454749,0.995845,0.110362,0.753125,0.69072,0.452144,0.635036,0.519407,0.584483,0.730814,0.28907,0.200908,0.246274,0.111601,0.213978,0.123281,0.169688,0.600656,0.302959,0.57231,0.248744,0.015766,0.741295,0.129353,0.991734,0.942071,0.568881,0.193163,0.20063,0.26536,0.851811,0.208362,0.338943,0.327074,0.571088,0.865775,0.825735,0.141168,0.474678,0.480891,0.0406574,0.372525,0.624457,0.699661,0.342775,0.948181,0.0632234,0.795828,0.807387,0.417695,0.406304,0.954453,0.422946,0.882607,0.371962,0.569933,0.915596,0.614472,0.155801,0.40704,0.544839,0.623369,0.235216,0.403197,0.16576,0.695426,0.140162,0.150038,0.382527,0.0116663,0.323156,0.831088,0.566089,0.288887,0.779576,0.202396,0.516347,0.773378,0.353153,0.393785,0.211871,0.343686,0.599131,0.282478,0.233845,0.71153,0.498591,0.00536299,0.927165,0.0636418,0.525669,0.473286,0.247882,0.0177075,0.536457,0.582077,0.993587,0.617272,0.0399612,0.71218,0.784219,0.469981,0.0474507,0.435865,0.514583,0.535053,0.640767,0.680217,0.382248,0.000589967,0.846715,0.151697,0.75621,0.923937,0.237911,0.975955,0.248467,0.992531,0.805573,0.71033,0.792054,0.215463,0.344005,0.436994,0.272749,0.056302,0.670389,0.788084,0.534843,0.912542,0.299973,0.906301,0.864706,0.923227,0.980114,0.355425,0.279862,0.119858,0.711882,0.0497723,0.00567907,0.660522,0.974683,0.112099,0.730998,0.226359,0.873864,0.188445,0.686695,0.867009,0.334089,0.701921,0.481924,0.762149,0.229236,0.878087,0.767115,0.337256,0.797598,0.181709,0.990211,0.355918,0.647165,0.792715,0.893763,0.38734,0.332153,0.281503,0.764119,0.213145,0.584789,0.633999,0.88265,0.720822,0.48535,0.880396,0.233123,0.373645,0.627945,0.610962,0.884806,0.691773,0.415642,0.596014,0.482524,0.279494,0.750366,0.00816184,0.241082,0.841733,0.2221,0.185114,0.679175,0.227926,0.798245,0.53295,0.217977,0.548185,0.581021,0.421397,0.676426,0.219984,0.307639,0.182182,0.260064,0.696701,0.528232,0.151585,0.46795,0.44936,0.149702,0.999268,0.59952,0.469212,0.180237,0.0893176,0.624635,0.0866561,0.18874,0.45649,0.410173,0.856361,0.998732,0.329704,0.0498208,0.021694,0.948402,0.990077,0.320785,0.543321,0.36163,0.339547,0.341973,0.136462,0.602581,0.68157,0.0134589,0.460782,0.94719,0.537392,0.0238225,0.136172,0.146833,0.798289,0.215886,0.634421,0.668484,0.698676,0.25188,0.934907,0.777211,0.597435,0.212731,0.760831,0.745995,0.340465,0.27249,0.219242,0.443166,0.102085,0.344488,0.897456,0.933272,0.529229,0.770406,0.130033,0.0308409,0.938913,0.452495,0.105612,0.933617,0.944596,0.736189,0.026336,0.0335967,0.355809,0.925359,0.626052,0.236466,0.354479,0.00533068,0.393482,0.678591,0.414206,0.759493,0.728788,0.371264,0.8937,0.537514,0.46116,0.050228,0.223532,0.61671,0.127073,0.132598,0.00773412,0.906495,0.274124,0.18676,0.906207,0.224743,0.811912,0.468791,0.252871,0.721856,0.960464,0.163404,0.399374,0.938615,0.297228,0.572273,0.00836104,0.861997,0.260046,0.28651,0.203768,0.303971,0.335299,0.958835,0.589562,0.61787,0.508984,0.508501,0.552267,0.577911,0.79882,0.61664,6.72936e-05,0.425866,0.543763,0.393652,0.884421,0.139968,0.726173,0.305948,0.564839,0.441431,0.921886,0.813408,0.555463,0.935728,0.983513,0.0540833,0.186222,0.889052,0.363217,0.700699,0.710822,0.769685,0.458732,0.193303,0.388095,0.411572,0.204107,0.161866,0.748491,0.531124,0.320803,0.594508,0.28782,0.450019,0.481902,0.697566,0.904964,0.659287,0.968222,0.380037,0.149555,0.125195,0.128782,0.518204,0.880743,0.916317,0.639602,0.40124,0.820961,0.222092,0.22562,0.574567,0.932311,0.667661,0.859707,0.747435,0.423827,0.806107,0.263535,0.053392,0.884846,0.908759,0.780733,0.162852,0.651305,0.0543458,0.41295,0.779521,0.50188,0.202546,0.137452,0.404422,0.551294,0.654493,0.55154,0.826184,0.301004,0.742963,0.405412,0.580052,0.906372,0.567981,0.242571,0.627325,0.348084,0.346519,0.457116,0.495795,0.323851,0.407451,0.988828,0.345178,0.819715,0.806807,0.158217,0.585487,0.656623,0.455638,0.363621,0.970496,0.294741,0.235081,0.621253,0.813452,0.129509,0.585289,0.645396,0.497137,0.886214,0.867035,0.991329,0.923143,0.66363,0.0129757,0.179038,0.214622,0.0599468,0.734337,0.131997,0.774841,0.967982,0.267872,0.825334,0.746436,0.971419,0.181702,0.613079,0.281415,0.166471,0.677943,0.958805,0.263046,0.3287,0.10464,0.465193,0.375805,0.594869,0.559885,0.321247,0.491015,0.843656,0.371224,0.282407,0.563835,0.986096,0.589395,0.550858,0.257058,0.870252,0.274429,0.506917,0.632818,0.560872,0.583559,0.483313,0.40943,0.415309,0.509542,0.0355277,0.552896,0.717795,0.990772,0.00200808,0.158553,0.556032,0.620615,0.346545,0.39955,0.137423,0.300678,0.512057,0.157936,0.593876,0.468063,0.735506,0.878716,0.214,0.405057,0.461174,0.185602,0.485858,0.160045,0.302863,0.409853,0.971012,0.918058,0.459248,0.179278,0.197944,0.716829,0.0545478,0.961427,0.242354,0.653873,0.10839,0.369999,0.210813,0.0460111,0.274067,0.777914,0.774336,0.0414324,0.312837,|0.826249,0.158281,0.893598,0.324449,0.251861,0.582448,0.877982,0.978449,0.515413,0.333206,0.132524,0.100541,0.232602,0.664469,0.597543,0.244788,0.70497,0.489128,0.200296,0.864073,0.498895,0.482597,0.459395,0.149415,0.106123,0.356015,0.254258,0.480638,0.00783002,0.493143,0.827047,0.540579,0.450397,0.230673,0.972066,0.962032,0.667749,0.122974,0.0202284,0.761841,0.424703,0.371925,0.981955,0.654912,0.844312,0.875078,0.601236,0.571289,0.908628,0.990403,0.496113,0.277756,0.261404,0.0539147,0.269025,0.348082,0.238167,0.0339454,0.30879,0.28812,0.808515,0.576801,0.540351,0.313161,0.419968,0.609868,0.540817,0.0572761,0.182044,0.895053,0.210171,0.448178,0.923796,0.321088,0.442636,0.585099,0.430664,0.680011,0.0206203,0.345307,0.622935,0.614159,0.199804,0.426273,0.692426,0.983589,0.406646,0.436785,0.494663,0.680181,0.0873823,0.268959,0.330301,0.199572,0.966431,0.612958,0.635173,0.404431,0.153465,0.715408,0.167426,0.766401,0.180469,0.433513,0.823337,0.441573,0.310168,0.10003,0.897657,0.0934491,0.7679,0.116962,0.255256,0.921656,0.865684,0.679908,0.0768539,0.277337,0.238774,0.94563,0.65187,0.787018,0.35113,0.764615,0.859003,0.919878,0.671037,0.395119,0.777679,0.365355,0.229886,0.330014,0.647927,0.0764714,0.635625,0.274049,0.350673,0.957323,0.641586,0.129204,0.378495,0.700493,0.486966,0.427089,0.133564,0.488837,0.204568,0.520663,0.369684,0.552511,0.0957059,0.117605,0.384562,0.21896,0.946625,0.316662,0.549354,0.975808,0.194123,0.461057,0.946687,0.255521,0.0779215,0.986327,0.162782,0.769099,0.935635,0.709493,0.662692,0.664499,0.767974,0.665759,0.220471,0.255776,0.232616,0.764138,0.0738078,0.800738,0.140145,0.102414,0.122947,0.895005,0.876862,0.655176,0.0754145,0.234222,0.456865,0.847538,0.0178329,0.604752,0.644322,0.229337,0.424195,0.840767,0.931313,0.257609,0.539167,0.885078,0.287867,0.137019,0.672932,0.102925,0.952875,0.61016,0.107027,0.081363,0.458189,0.661739,0.977169,0.350915,0.373437,0.24178,0.471407,0.794774,0.386554,0.742224,0.615357,0.289644,0.555469,0.905994,0.0586972,0.439519,0.531101,0.033178,0.358753,0.4623,0.511777,0.132035,0.595688,0.366497,0.507343,0.49134,0.0482123,0.752229,0.578957,0.64908,0.925678,0.0526798,0.519406,0.747166,0.508494,0.648687,0.916619,0.469713,0.0302916,0.397138,0.223483,0.00751883,0.112446,0.242751,0.623546,0.671199,0.90445,0.721033,0.656382,0.530479,0.56876,0.190123,0.634982,0.252631,0.496508,0.368588,0.481913,0.209897,0.905846,0.103378,0.0396258,0.721593,0.582957,0.0755504,0.762732,0.224433,0.434235,0.665404,0.0679431,0.865267,0.376891,0.575077,0.550491,0.998754,0.15189,0.23229,0.101475,0.53566,0.035144,0.962633,0.652606,0.561566,0.426866,0.947698,0.827229,0.0597062,0.715026,0.615649,0.623852,0.544542,0.189859,0.800942,0.406429,0.499717,0.0564476,0.346677,0.958415,0.585423,0.30809,0.714538,0.97966,0.11722,0.629588,0.383744,0.493143,0.906829,0.212901,0.275295,0.483651,0.539905,0.366247,0.908536,0.786787,0.906435,0.361998,0.958768,0.593601,0.496703,0.923428,0.928245,0.531334,0.424537,0.868405,0.0610004,0.0699844,0.156268,0.819229,0.173967,0.114013,0.260258,0.249514,0.0985399,0.4058,0.745135,0.88869,0.445655,0.324414,0.324326,0.532015,0.337467,0.806184,0.382672,0.602567,0.224659,0.186462,0.577414,0.0643359,0.477428,0.0252888,0.945922,0.529794,0.36768,0.999327,0.940611,0.241866,0.55843,0.714357,0.0255488,0.615478,0.0755336,0.206682,0.012255,0.185608,0.366831,0.806604,0.70137,0.91367,0.653289,0.819786,0.158449,0.271241,0.88489,0.836282,0.275746,0.815931,0.732646,0.932926,0.646327,0.973218,0.786497,0.783414,0.171481,0.199792,0.790101,0.303584,0.378699,0.414639,0.052386,0.455596,0.447342,0.929779,0.843027,0.896728,0.174318,0.17898,0.15053,0.770411,0.0613344,0.310674,0.480897,0.284446,0.255489,0.306167,0.978981,0.309654,0.609658,0.0279685,0.608356,0.0745643,0.333015,0.88596,0.697326,0.192252,0.938584,0.318339,0.442626,0.513131,0.865854,0.890522,0.365654,0.429906,0.346389,0.0204809,0.000655711,0.0325038,0.276677,0.49192,0.350586,0.391677,0.729823,0.910604,0.724031,0.889836,0.925712,0.350917,0.315531,0.0499876,0.382241,0.373622,0.057557,0.390186,0.00528365,0.468868,0.0708152,0.968289,0.887324,0.528029,0.424853,0.848582,0.931628,0.694545,0.922005,0.0266557,0.432795,0.635537,0.623441,0.52296,0.626249,0.503945,0.357287,0.269887,0.214963,0.849754,0.985692,0.424434,0.492985,0.430709,0.495282,0.871436,0.353214,0.318816,0.836113,0.65746,0.73013,0.558674,0.825504,0.394688,0.234129,0.987394,0.933453,0.510014,0.23956,0.727163,0.207861,0.598422,0.701707,0.310306,0.977014,0.124571,0.421186,0.505321,0.840129,0.155627,0.246104,0.203765,0.680791,0.887197,0.308381,0.510956,0.0544376,0.0153287,0.907228,0.422846,0.990711,0.967357,0.21207,0.986398,0.361885,0.0506533,0.449419,0.117871,0.213491,0.958728,0.568898,0.400255,0.557697,0.664151,0.886117,0.34643,0.800191,0.194948,0.447409,0.859191,0.182665,0.549593,0.680647,0.0149649,0.984017,0.227202,0.661754,0.332873,0.531148,0.111848,0.670413,0.562661,0.0686177,0.913399,0.898998,0.7385,0.900044,0.937658,0.454926,0.839844,0.113103,0.564448,0.87108,0.91105,0.390771,0.0116709,0.769505,0.815059,0.221866,0.837277,0.910655,0.594631,0.54697,0.799587,0.460043,0.072886,0.345998,0.422319,0.233519,0.815755,0.252988,0.858823,0.0176003,0.596365,0.722882,0.482598,0.0734971,0.399135,0.124282,0.431336,0.450633,0.394972,0.697217,0.322851,0.929303,0.483126,0.512596,0.473155,0.653229,0.689734,0.241173,0.738118,0.0395369,0.177154,0.994759,0.226292,0.993206,0.653485,0.73115,0.896112,0.230586,0.928932,0.88712,0.547451,0.500123,0.351924,0.283149,0.873253,0.353455,0.789149,0.114202,0.665958,0.694057,0.873582,0.106734,0.450844,0.950694,0.387627,0.725939,0.802904,0.0834584,0.788668,0.936927,0.110147,0.722888,0.524305,0.156097,0.473776,0.503761,0.761137,0.403255,0.292936,0.811694,0.85753,0.307768,0.893754,0.619266,0.810754,0.579592,0.69974,0.240799,0.598937,0.93271,0.504582,0.647758,0.271626,0.305208,0.892127,0.111924,0.55053,0.795737,0.0118383,0.720545,0.118139,0.743205,0.561975,0.0627342,0.732382,0.885651,0.762496,0.918359,0.586676,0.501124,0.910848,0.851407,0.710955,0.786511,0.0169225,0.0475954,0.658975,0.661972,0.311114,0.882875,0.732438,0.597275,0.790875,0.667918,0.828786,0.422421,0.985239,0.171193,0.385634,0.153138,0.214251,0.858924,0.815699,0.340448,0.0481138,0.550783,0.453398,0.834423,0.802968,0.453265,0.652119,0.213801,0.164741,0.966194,0.319954,0.175619,0.709058,0.309723,0.00766933,0.887866,0.740617,0.652727,0.0195276,0.185951,0.356736,0.106812,0.177673,0.294139,0.519858,0.697005,0.9142,0.860196,0.90076,0.54112,0.363311,0.883562,0.785663,0.739104,0.35099,0.688396,0.636913,0.0681286,0.84531,0.206671,0.0746321,0.843864,0.884208,0.64858,0.183081,0.442947,0.331784,0.164806,0.791308,0.79966,0.188878,0.274272,0.174043,0.963947,0.857442,0.193089,0.904134,0.708688,0.631493,0.9037,0.401103,0.951531,0.452636,0.0088473,0.112601,0.965736,0.761726,0.924037,0.918524,0.335315,0.674862,0.582501,0.625879,0.987302,0.586185,0.675583,0.626618,0.877108,0.0794289,0.036635,0.406686,0.0241569,0.172298,0.424142,0.337698,0.428958,0.0804157,0.522,0.151706,0.396858,0.728788,0.59443,0.828988,0.284824,0.388607,0.434245,0.688042,0.0543986,0.846905,0.44156,0.472678,0.443331,0.69211,0.10687,0.146485,0.921521,0.806832,0.41171,0.604794,0.566035,0.618259,0.761297,0.979268,0.154546,0.0624959,0.111327,0.90002,0.999254,0.991108,0.0161698,0.89439,0.449106,0.299451,0.450984,0.756929,0.538126,0.378425,0.743836,0.124893,0.28517,0.639309,0.426564,0.879729,0.878326,0.809638,0.289231,0.276364,0.6757,0.443219,0.542273,0.725165,0.151119,0.0905206,0.431953,0.732285,0.438822,0.371432,0.777449,0.452526,0.28622,0.271775,0.0707381,0.689435,0.375093,0.207908,0.00295305,0.647761,0.171009,0.788471,0.489946,0.0961354,0.595527,0.813562,0.0049457,0.469378,0.376985,0.407871,0.801619,0.42267,0.331127,0.821647,0.492077,0.652562,0.849128,0.518225,0.870065,0.2036,0.974967,0.57511,0.297489,0.742415,0.174556,0.431647,0.848834,0.209966,0.687645,0.688236,0.961973,0.416298,0.645889,0.147133,0.280837,0.0762773,0.380675,0.979992,0.203989,0.180512,0.10553,0.27274,0.263922,0.469677,0.937621,0.159301,0.581765,0.54497,0.159349,0.854202,0.809578,0.225635,0.621674,0.547033,0.647957,0.299339,0.858715,0.443261,0.0837386,0.669728,0.569341,0.420506,0.0144628,0.634608,0.790761,0.131354,0.44759,0.067943,0.76312,0.265458,0.36565,0.17957,0.187747,0.986862,0.169817,0.53262,0.537379,0.0304247,0.490364,0.223128,0.347022,0.209263,0.641249,0.769037,0.231023,0.668853,0.812492,0.826383,0.264356,0.720351,0.779834,0.456349,0.553047,0.890191,0.997272,0.22888,0.836495,0.487805,0.0249016,0.731189,0.923851,0.73821,0.851748,0.0711444,0.736507,0.820899,0.483673,0.884941,0.485268,0.0029003,0.302284,0.589897,0.76135,0.0347237,0.488605,0.892554,0.302235,0.887637,0.772694,0.0989779,0.0690517,0.258581,0.673373,0.23544,0.93336,0.691429,0.528983,0.417297,0.825736,0.312822,0.072126,0.338926,0.878389,0.895035,0.00833529,0.802242,0.704471,0.426022,0.383894,0.829775,0.783592,0.982401,0.518663,0.440006,0.224541,0.324386,0.579812,0.853722,0.734619,0.698743,0.00745839,0.938248,0.390254,0.824903,0.237856,0.692772,0.253883,|0.941898,0.161278,0.222793,0.683755,0.193286,0.320516,0.43759,0.955287,0.546705,0.976803,0.80907,0.00533003,0.51756,0.477455,0.738258,0.741816,0.178426,0.791001,0.969924,0.809222,0.784041,0.66984,0.854347,0.089112,0.924463,0.367941,0.585916,0.763574,0.836242,0.342838,0.845876,0.806842,0.300289,0.389413,0.609316,0.996658,0.181645,0.997239,0.756082,0.00429833,0.0215594,0.442082,0.990141,0.354848,0.595014,0.196337,0.410797,0.0137994,0.903186,0.851647,0.359106,0.135071,0.675822,0.431888,0.663381,0.238878,0.361698,0.107097,0.543591,0.458798,0.576264,0.583567,0.937892,0.108497,0.623635,0.995493,0.103856,0.697445,0.13575,0.390975,0.280245,0.292732,0.988375,0.0834112,0.646284,0.379808,0.0976894,0.0425047,0.169989,0.439855,0.471671,0.114923,0.533072,0.510908,0.463299,0.883651,0.258773,0.917746,0.0931336,0.652128,0.295699,0.375675,0.300188,0.814155,0.893542,0.192634,0.479001,0.0770457,0.836869,0.503724,0.702743,0.974697,0.922116,0.700502,0.484546,0.589293,0.0455816,0.306589,0.578643,0.323792,0.950245,0.0785182,0.70403,0.000848234,0.87556,0.335094,0.114644,0.384515,0.98786,0.234307,0.749171,0.266392,0.174478,0.861814,0.495151,0.0753466,0.511394,0.749285,0.4215,0.075214,0.627391,0.0531813,0.242756,0.153547,0.544512,0.213656,0.743722,0.996607,0.378002,0.855075,0.0788959,0.373693,0.373653,0.27186,0.913422,0.977919,0.0317375,0.251817,0.312976,0.237331,0.0786695,0.981073,0.144443,0.643957,0.771608,0.465132,0.319552,0.0533797,0.0617323,0.773887,0.133439,0.672868,0.659765,0.821661,0.83389,0.944345,0.95112,0.227469,0.729839,0.112157,0.665638,0.216187,0.113894,0.687057,0.804346,0.290702,0.918639,0.823899,0.817866,0.487278,0.942854,0.707141,0.419672,0.267885,0.895389,0.681309,0.738657,0.970354,0.584351,0.393928,0.0716442,0.588951,0.151936,0.201706,0.429825,0.65379,0.579806,0.185189,0.173804,0.643114,0.0511252,0.477261,0.799564,0.0563854,0.642112,0.588875,0.787321,0.0522547,0.811422,0.317609,0.241274,0.576905,0.611618,0.507255,0.90838,0.958756,0.815629,0.796748,0.46105,0.352223,0.592654,0.592175,0.421795,0.0594351,0.150894,0.190169,0.267407,0.0847639,0.0978304,0.926198,0.77358,0.527971,0.747185,0.952435,0.278429,0.882808,0.393506,0.0165567,0.984508,0.0654654,0.966652,0.484734,0.114735,0.476619,0.50458,0.00672626,0.530993,0.967873,0.209285,0.73622,0.678697,0.0198908,0.533827,0.0261672,0.143304,0.127092,0.100845,0.975343,0.399736,0.964704,0.935739,0.735808,0.0727581,0.207088,0.218322,0.258913,0.625185,0.0823968,0.0528954,0.793118,0.143601,0.651423,0.145099,0.338506,0.581018,0.459146,0.128289,0.393742,0.0438231,0.818147,0.646628,0.0179656,0.429796,0.383013,0.566485,0.719409,0.410744,0.0110747,0.324488,0.936004,0.706946,0.927858,0.883144,0.117265,0.284741,0.554586,0.7578,0.296533,0.269736,0.410889,0.292957,0.728681,0.466005,0.59245,0.735795,0.776668,0.387875,0.527043,0.897258,0.291268,0.726545,0.703014,0.421189,0.0663999,0.539802,0.233327,0.042562,0.0658798,0.913974,0.480132,0.543329,0.343017,0.0781121,0.483746,0.236128,0.746977,0.397568,0.614457,0.414137,0.601497,0.157684,0.148035,0.905007,0.333768,0.73262,0.0539606,0.316161,0.716276,0.434685,0.377862,0.0850694,0.514526,0.0979648,0.685769,0.0596752,0.372405,0.679669,0.925375,0.504898,0.922522,0.315643,0.483446,0.427233,0.640913,0.741694,0.0413126,0.702994,0.291582,0.212804,0.651021,0.823514,0.189521,0.401455,0.326873,0.131021,0.726559,0.637833,0.696617,0.640071,0.916433,0.0247667,0.790709,0.469471,0.377126,0.848445,0.738105,0.930231,0.695908,0.185888,0.774479,0.809615,0.101851,0.357224,0.0258911,0.176994,0.62265,0.131071,0.710707,0.953975,0.974739,0.640467,0.193739,0.540438,0.434417,0.631564,0.808638,0.478216,0.0169091,0.699105,0.265992,0.929525,0.647017,0.89427,0.228058,0.32197,0.387427,0.656714,0.546179,0.242286,0.557433,0.0786891,0.77131,0.0218206,0.781229,0.0584952,0.208494,0.544924,0.572008,0.284607,0.339208,0.31728,0.0925841,0.788437,0.12323,0.90586,0.116764,0.460892,0.667289,0.870165,0.562949,0.949112,0.653892,0.469,0.325486,0.175814,0.877754,0.076771,0.440206,0.707307,0.588713,0.750578,0.670715,0.642657,0.749695,0.0630836,0.616617,0.596879,0.744161,0.0336467,0.0142869,0.514669,0.836859,0.752944,0.0941542,0.963755,0.325541,0.466751,0.38682,0.678416,0.17962,0.274388,0.450356,0.713608,0.877097,0.636929,0.610746,0.321384,0.297693,0.523991,0.872692,0.96654,0.382424,0.488175,0.610169,0.83187,0.0709263,0.00233585,0.151532,0.606195,0.46406,0.175294,0.754497,0.778577,0.0424587,0.942949,0.62558,0.549278,0.664192,0.608516,0.277253,0.879339,0.751911,0.0892388,0.301326,0.465598,0.0755022,0.907453,0.715895,0.906384,0.792688,0.743865,0.433217,0.681013,0.91269,0.911938,0.425292,0.643149,0.896537,0.235441,0.895971,0.927038,0.511362,0.199491,0.980504,0.317435,0.833076,0.504014,0.613055,0.197232,0.0332823,0.111356,0.388653,0.851254,0.800152,0.0471255,0.19327,0.61877,0.835845,0.779061,0.536979,0.196486,0.86534,0.379534,0.639147,0.586117,0.347231,0.439196,0.364293,0.166195,0.0535911,0.982515,0.679831,0.114422,0.640386,0.119316,0.437099,0.401001,0.927939,0.72814,0.508721,0.694498,0.318253,0.953891,0.305872,0.20591,0.395702,0.603194,0.745757,0.939569,0.17751,0.14666,0.333061,0.769334,0.370122,0.67133,0.503432,0.781271,0.109045,0.347662,0.358421,0.323165,0.281532,0.417811,0.641443,0.45312,0.696639,0.237137,0.327256,0.173786,0.432315,0.819317,0.62323,0.62709,0.12359,0.968836,0.347798,0.353606,0.388874,0.110225,0.822724,0.0544855,0.461343,0.727789,0.664071,0.865686,0.713571,0.869723,0.718409,0.382713,0.970846,0.0190687,0.904776,0.396049,0.971187,0.0314389,0.0420645,0.0063737,0.317109,0.405539,0.314311,0.11132,0.832499,0.16336,0.565081,0.742764,0.516791,0.315369,0.491198,0.304765,0.640582,0.694278,0.0829499,0.99668,0.783851,0.669858,0.242681,0.56574,0.807445,0.669465,0.597813,0.433116,0.992416,0.682657,0.664078,0.34196,0.258854,0.431578,0.494853,0.37459,0.527385,0.640715,0.242964,0.0386032,0.521628,0.216125,0.866447,0.812141,0.867786,0.274497,0.304563,0.57245,0.536468,0.38608,0.266051,0.976784,0.960257,0.700262,0.865573,0.103201,0.484709,0.460362,0.952876,0.154794,0.142786,0.249804,0.245034,0.65646,0.0824913,0.412222,0.887612,0.51214,0.250486,0.357677,0.161147,0.837373,0.549847,0.576346,0.644536,0.780656,0.61716,0.193814,0.653556,0.919203,0.369293,0.741844,0.577112,0.200012,0.206152,0.880903,0.7082,0.18415,0.0179055,0.135489,0.597451,0.611733,0.507411,0.871706,0.0940073,0.692661,0.236663,0.294527,0.342665,0.329802,0.283453,0.679222,0.261804,0.628991,0.754905,0.0614286,0.266205,0.54254,0.636073,0.0846111,0.539808,0.201326,0.016469,0.352312,0.0462682,0.729577,0.801775,0.466076,0.489315,0.483834,0.45893,0.444575,0.630764,0.715091,0.174787,0.0419326,0.637448,0.365284,0.602635,0.297657,0.92476,0.556089,0.22078,0.689261,0.408976,0.0987439,0.499637,0.706523,0.623295,0.559249,0.149201,0.507805,0.723325,0.807541,0.346989,0.408541,0.833255,0.306908,0.701376,0.203942,0.106488,0.744849,0.428483,0.17526,0.210002,0.355666,0.38541,0.872636,0.113328,0.148708,0.153754,0.102464,0.675667,0.813619,0.312641,0.0498389,0.698174,0.51614,0.739318,0.929061,0.744938,0.522834,0.85049,0.353936,0.238595,0.616866,0.547035,0.538507,0.763418,0.806942,0.239258,0.320727,0.768173,0.656503,0.522956,0.998311,0.577385,0.397343,0.371738,0.940323,0.999482,0.727774,0.662335,0.415772,0.0514839,0.715173,0.663656,0.121563,0.708304,0.581254,0.349151,0.760564,0.923758,0.433796,0.181937,0.153942,0.575423,0.935681,0.637125,0.901309,0.405974,0.508753,0.612984,0.815483,0.969487,0.980479,0.771004,0.122886,0.268804,0.413213,0.890618,0.89764,0.615676,0.825463,0.645486,0.520723,0.426892,0.812264,0.218743,0.971001,0.496291,0.956188,0.615688,0.165954,0.0768782,0.890342,0.0284647,0.510964,0.65602,0.344357,0.474743,0.549212,0.174147,0.272521,0.880087,0.257217,0.794433,0.8496,0.348904,0.579946,0.357733,0.365743,0.310773,0.166984,0.590846,0.551488,0.000124395,0.190799,0.102207,0.348715,0.504292,0.0125237,0.618115,0.181992,0.564646,0.728663,0.106083,0.111374,0.447097,0.478646,0.0986965,0.0807076,0.212507,0.0216793,0.318142,0.078353,0.86186,0.656152,0.952772,0.664222,0.0110365,0.860692,0.784468,0.793685,0.78878,0.50879,0.614416,0.110527,0.395953,0.681197,0.477688,0.188218,0.487732,0.794276,0.951485,0.685001,0.553141,0.780534,0.503469,0.715112,0.276649,0.347198,0.412467,0.293966,0.0269931,0.0125961,0.262012,0.71295,0.43284,0.495315,0.572679,0.247557,0.694571,0.428344,0.623766,0.439296,0.32965,0.113838,0.67166,0.212706,0.505051,0.772305,0.000435293,0.451766,0.220852,0.224247,0.946381,0.91139,0.481755,0.151434,0.203714,0.374915,0.706681,0.0827626,0.997633,0.805615,0.924715,0.236099,0.047454,0.590979,0.896678,0.84417,0.921196,0.0540397,0.192331,0.500411,0.580894,0.713306,0.864967,0.377996,0.87923,0.59196,0.189967,0.0429149,0.156711,0.783887,0.0295722,0.638046,0.749351,0.0164585,0.149015,0.933125,0.547525,0.280158,0.478011,0.343627,0.297552,0.846818,0.160196,0.143415,0.601368,0.700447,0.87216,0.249344,0.179953,0.199792,0.865045,0.0449721,0.607691,0.528053,0.14071,0.611923,0.0338562,0.520575,0.700977,0.491149,0.928967,0.207154,0.628815,0.784306,0.19546,0.840517,0.140695,0.825599,0.352604,0.161207,0.589477,|0.567316,0.110419,0.0586389,0.782297,0.672557,0.39824,0.0449813,0.325383,0.548371,0.678666,0.386264,0.823245,0.0991797,0.518189,0.244265,0.405478,0.784582,0.238028,0.109817,0.817687,0.651687,0.354826,0.973548,0.45778,0.313019,0.736027,0.17737,0.0936573,0.962156,0.985496,0.842956,0.536703,0.056289,0.36409,0.240403,0.0454378,0.697972,0.501242,0.492759,0.165191,0.499361,0.225062,0.990096,0.632858,0.935145,0.52297,0.382672,0.934165,0.104609,0.523914,0.928692,0.96761,0.559284,0.46745,0.283651,0.489857,0.276969,0.489958,0.834538,0.823919,0.30072,0.0779999,0.692075,0.0041495,0.46691,0.526817,0.315695,0.482051,0.723635,0.349538,0.676153,0.111904,0.0860709,0.759776,0.509004,0.468008,0.0693153,0.648016,0.833392,0.413549,0.201088,0.40869,0.914585,0.13928,0.877459,0.998451,0.0290647,0.529795,0.868366,0.64621,0.572287,0.113487,0.490569,0.808296,0.110696,0.318428,0.146966,0.675823,0.769575,0.989537,0.494922,0.799262,0.662198,0.253753,0.851913,0.136181,0.83973,0.874188,0.602837,0.548413,0.103985,0.23736,0.944669,0.308975,0.780688,0.0724233,0.53499,0.331752,0.859902,0.314762,0.482994,0.0437021,0.768381,0.275653,0.33357,0.471602,0.016392,0.380443,0.600757,0.3372,0.894584,0.0217131,0.995323,0.84018,0.114723,0.580298,0.034353,0.884351,0.704832,0.304319,0.155254,0.383346,0.0284769,0.73824,0.667484,0.965666,0.0805972,0.102559,0.470727,0.705803,0.0626503,0.348836,0.641265,0.504005,0.404388,0.229581,0.65396,0.465308,0.634195,0.474258,0.405712,0.335201,0.0365191,0.372742,0.540337,0.145973,0.636707,0.755645,0.33456,0.652761,0.511465,0.673824,0.182764,0.966952,0.569009,0.64027,0.776009,0.50146,0.835211,0.0757111,0.294088,0.41712,0.287893,0.311621,0.523057,0.496582,0.784258,0.879941,0.483815,0.660984,0.260928,0.756004,0.115999,0.928166,0.407761,0.277031,0.994451,0.482498,0.495978,0.133695,0.780254,0.264402,0.468416,0.0187636,0.219018,0.71708,0.826994,0.697801,0.475335,0.122228,0.108864,0.814786,0.449526,0.452982,0.152696,0.816794,0.476867,0.0343874,0.7884,0.772375,0.154535,0.201872,0.0145097,0.787019,0.367516,0.610886,0.599976,0.584554,0.800764,0.963117,0.525594,0.617442,0.442763,0.230762,0.0638299,0.0942512,0.0253745,0.840308,0.820594,0.979222,0.0718645,0.853455,0.0585482,0.311915,0.537339,0.386869,0.269795,0.888161,0.325584,0.134129,0.305918,0.744378,0.817682,0.397362,0.19702,0.4707,0.870405,0.310707,0.948722,0.891127,0.660102,0.709176,0.447957,0.888954,0.533449,0.730444,0.681857,0.0277784,0.0365713,0.323961,0.30273,0.254301,0.979039,0.852723,0.0847896,0.433726,0.369251,0.594703,0.0977383,0.291091,0.407277,0.349848,0.00397205,0.232555,0.529283,0.0594135,0.54969,0.287635,0.353107,0.424969,0.533473,0.856141,0.793742,0.184514,0.522325,0.0939579,0.21412,0.389115,0.738937,0.429008,0.117475,0.130705,0.267892,0.325338,0.889269,0.0549595,0.75474,0.382885,0.256692,0.343916,0.652697,0.954719,0.904529,0.960705,0.810765,0.51716,0.507871,0.826643,0.451156,0.328534,0.0814961,0.051304,0.332963,0.651396,0.709266,0.991879,0.0747429,0.0890618,0.871893,0.194519,0.294822,0.0549305,0.963056,0.724834,0.235032,0.327006,0.297396,0.446595,0.272829,0.611168,0.414074,0.224015,0.4977,0.401696,0.938597,0.663248,0.436664,0.591648,0.795714,0.138656,0.880159,0.325046,0.680407,0.392862,0.664513,0.0434158,0.891918,0.144026,0.315969,0.829284,0.33182,0.285192,0.164578,0.992301,0.743693,0.966856,0.0508708,0.0503651,0.444537,0.140159,0.452805,0.185301,0.0357004,0.892536,0.305647,0.103311,0.895758,0.929952,0.458719,0.958732,0.770132,0.0786636,0.295683,0.857821,0.413461,0.890507,0.411545,0.562413,0.785662,0.536682,0.865493,0.0776731,0.507947,0.127957,0.728201,0.691408,0.925803,0.0934908,0.106029,0.183976,0.969133,0.0220426,0.884211,0.0229771,0.771291,0.116899,0.674863,0.707474,0.0543333,0.485516,0.222295,0.399175,0.803931,0.72446,0.100078,0.0857872,0.630055,0.465666,0.341349,0.639336,0.431172,0.915577,0.787496,0.851666,0.538641,0.242093,0.663004,0.71461,0.341996,0.439395,0.383198,0.406996,0.333592,0.962879,0.679632,0.81075,0.625771,0.11401,0.679127,0.500758,0.191647,0.600204,0.243848,0.899503,0.814178,0.540568,0.968697,0.116003,0.011511,0.908058,0.75626,0.371005,0.234548,0.657403,0.583417,0.963181,0.856783,0.372368,0.309991,0.22348,0.0220404,0.399303,0.476755,0.534813,0.677434,0.902759,0.746131,0.947953,0.042556,0.0334875,0.641715,0.959347,0.282352,0.927458,0.646051,0.898805,0.681314,0.3605,0.873342,0.263312,0.0633947,0.773337,0.431829,0.0413731,0.705677,0.873783,0.915266,0.182533,0.138709,0.850154,0.755651,0.597856,0.26947,0.850879,0.822009,0.817208,0.846243,0.0476862,0.514658,0.493255,0.390851,0.273294,0.281176,0.772311,0.518216,0.850568,0.492407,0.129567,0.927968,0.0211525,0.601054,0.130541,0.00153595,0.762282,0.527277,0.956724,0.0771003,0.754225,0.103097,0.91833,0.541655,0.365422,0.325116,0.0513855,0.679262,0.34683,0.306304,0.46042,0.112851,0.989615,0.934676,0.156645,0.845554,0.372256,0.80461,0.89956,0.44985,0.995637,0.767329,0.956456,0.292549,0.685131,0.339251,0.624742,0.482195,0.272529,0.665364,0.582388,0.603941,0.572246,0.34416,0.284784,0.701104,0.519934,0.343916,0.519682,0.815571,0.172895,0.744894,0.192786,0.340641,0.109434,0.788584,0.00189441,0.928286,0.740313,0.893233,0.220891,0.510821,0.845639,0.418453,0.638235,0.271019,0.26837,0.134553,0.208197,0.654163,0.239954,0.521487,0.402164,0.400735,0.440004,0.793022,0.23843,0.267761,0.410358,0.537463,0.59104,0.0899979,0.997479,0.596654,0.00990623,0.155791,0.230118,0.339267,0.790319,0.606603,0.998745,0.52621,0.344361,0.878777,0.1262,0.502369,0.730228,0.746746,0.938278,0.330151,0.955683,0.935534,0.300747,0.83276,0.770284,0.755426,0.598259,0.972491,0.263688,0.777488,0.141955,0.423908,0.707937,0.659206,0.641076,0.951437,0.154955,0.0110183,0.735448,0.767753,0.480558,0.101012,0.517468,0.831854,0.668637,0.940498,0.461552,0.435436,0.18175,0.484211,0.454292,0.997186,0.889108,0.782948,0.968878,0.0859433,0.51685,0.699684,0.00592971,0.528652,0.468651,0.422087,0.0736117,0.836723,0.528657,0.866032,0.178223,0.558585,0.832761,0.567557,0.227705,0.74746,0.117979,0.189109,0.579289,0.800658,0.504807,0.4029,0.393514,0.44414,0.899145,0.680571,0.939784,0.802657,0.922769,0.334463,0.461597,0.81544,0.0556907,0.179249,0.430316,0.444395,0.214221,0.897507,0.329288,0.0746458,0.88848,0.824592,0.75213,0.358778,0.246875,0.386511,0.314229,0.442973,0.691239,0.10747,0.896506,0.534493,0.415331,0.799638,0.220659,0.0682726,0.330158,0.80461,0.872697,0.922405,0.172073,0.587886,0.543423,0.703327,0.290709,0.514773,0.386279,0.267756,0.493347,0.957076,0.355778,0.287535,0.214493,0.971574,0.0961877,0.0642857,0.1478,0.128219,0.00942868,0.0653294,0.18795,0.678875,0.188976,0.284742,0.776644,0.0577548,0.705526,0.924298,0.240407,0.263455,0.547519,0.916098,0.0854788,0.0488665,0.0104352,0.168676,0.33709,0.92951,0.745587,0.724518,0.458721,0.752777,0.471186,0.973565,0.260615,0.261534,0.141817,0.56957,0.773946,0.70103,0.0782638,0.160411,0.506202,0.780952,0.703702,0.851948,0.942438,0.390127,0.624412,0.650101,0.313215,0.628493,0.0663378,0.636213,0.790522,0.871986,0.396498,0.650121,0.656928,0.554244,0.591569,0.554757,0.720868,0.76056,0.362887,0.449296,0.248265,0.976106,0.181895,0.744646,0.539152,0.18661,0.136394,0.740285,0.552225,0.833586,0.220624,0.528868,0.605686,0.890179,0.910826,0.0657037,0.739587,0.35464,0.871023,0.627815,0.11828,0.462314,0.65265,0.58799,0.323114,0.859714,0.462337,0.111091,0.15136,0.21235,0.441499,0.226376,0.972671,0.569854,0.0879529,0.68202,0.877388,0.55028,0.227473,0.570662,0.308063,0.321135,0.818866,0.480482,0.249158,0.794397,0.437669,0.298167,0.8601,0.114404,0.150129,0.810871,0.394519,0.719951,0.306212,0.206445,0.743209,0.357801,0.720615,0.21581,0.486002,0.686954,0.281531,0.592344,0.814295,0.930947,0.389095,0.301387,0.112754,0.587259,0.184895,0.985285,0.643375,0.885698,0.282342,0.959785,0.142335,0.307438,0.531966,0.697422,0.779909,0.53386,0.547527,0.411733,0.694324,0.629347,0.47418,0.00749099,0.0780516,0.44417,0.398632,0.45162,0.883568,0.788516,0.569011,0.417001,0.175356,0.0543208,0.378759,0.200931,0.90029,0.514244,0.714222,0.637565,0.829105,0.919777,0.0917511,0.142441,0.417407,0.210881,0.864396,0.74928,0.110785,0.0785176,0.890739,0.763534,0.673672,0.494169,0.625545,0.1214,0.439864,0.475338,0.479768,0.760534,0.92945,0.522129,0.343921,0.383077,0.67247,0.368522,0.907308,0.458541,0.624363,0.537417,0.195723,0.23564,0.139066,0.120827,0.469277,0.810191,0.440974,0.255702,0.244788,0.190627,0.404063,0.448735,0.734896,0.621801,0.445399,0.720562,0.809856,0.848888,0.163543,0.457184,0.0527229,0.390182,0.893434,0.413656,0.247472,0.79277,0.963411,0.759533,0.0959406,0.920552,0.392439,0.105479,0.690222,0.0628427,0.125067,0.51892,0.260271,0.84276,0.811748,0.569156,0.296208,0.220549,0.392907,0.178985,0.312392,0.00137639,0.01497,0.947217,0.897194,0.976072,0.792832,0.276065,0.663717,0.526301,0.633251,0.63615,0.149468,0.439577,0.0110944,0.592219,0.274338,0.375877,0.313061,0.919856,0.535515,0.181872,0.423651,0.953876,0.92602,0.308461,0.668406,0.953953,0.948847,0.539648,0.797421,0.11259,0.571831,0.667878,0.995822,0.719951,0.221635,0.0160969,0.90039,0.0516197,0.407755,0.434112,0.907833,|0.329303,0.0923921,0.702375,0.144664,0.985239,0.340637,0.287829,0.711462,0.417783,0.0712754,0.0615754,0.977815,0.825077,0.85993,0.92456,0.673611,0.776692,0.521602,0.669101,0.355005,0.673522,0.376946,0.332679,0.858148,0.796415,0.70978,0.613397,0.0922676,0.387077,0.85467,0.421002,0.356407,0.956778,0.75188,0.203807,0.797224,0.56792,0.800914,0.351587,0.087216,0.0386816,0.596441,0.713779,0.139209,0.524827,0.122164,0.72632,0.561449,0.739661,0.380229,0.948491,0.887422,0.345939,0.323824,0.68341,0.989026,0.221404,0.62621,0.690197,0.680522,0.831908,0.0684142,0.543142,0.126351,0.901953,0.399788,0.974323,0.254805,0.859855,0.926426,0.733481,0.755318,0.908825,0.850766,0.0559918,0.0498815,0.645601,0.717254,0.73005,0.173018,0.31618,0.93169,0.608922,0.10895,0.265246,0.139851,0.813124,0.870785,0.544197,0.59577,0.225037,0.804115,0.71317,0.503043,0.817696,0.950968,0.504867,0.0705836,0.451294,0.201205,0.53779,0.819773,0.670806,0.386126,0.314731,0.0945023,0.617424,0.735843,0.869162,0.00886369,0.706054,0.900426,0.80331,0.436527,0.825671,0.768238,0.892528,0.623974,0.336417,0.712945,0.958504,0.518814,0.906988,0.298199,0.258658,0.523186,0.445868,0.270967,0.179001,0.194628,0.289985,0.725645,0.027117,0.0365613,0.662871,0.628646,0.0796071,0.177711,0.0419874,0.300862,0.43855,0.549106,0.109263,0.487631,0.0600783,0.633107,0.683087,0.786713,0.736393,0.796205,0.543285,0.132338,0.891353,0.470714,0.130288,0.802907,0.424261,0.784089,0.770732,0.0136575,0.656207,0.166319,0.0920364,0.787896,0.141426,0.680352,0.773536,0.560513,0.485841,0.272911,0.675199,0.180225,0.602233,0.307231,0.233832,0.890569,0.519929,0.813893,0.00171548,0.958758,0.886943,0.729529,0.17882,0.4399,0.140113,0.832922,0.888878,0.577538,0.880168,0.0440931,0.951466,0.530234,0.943576,0.251158,0.703265,0.290124,0.804693,0.585048,0.109093,0.818859,0.548957,0.602866,0.133694,0.869224,0.66482,0.622953,0.375608,0.795162,0.702581,0.832723,0.754705,0.374479,0.928322,0.458293,0.926507,0.544789,0.423361,0.0170803,0.95629,0.919166,0.754961,0.872679,0.318919,0.470472,0.164385,0.694719,0.76171,0.768565,0.713028,0.346328,0.718202,0.642868,0.73435,0.160757,0.314805,0.908778,0.739951,0.32177,0.51389,0.968585,0.798589,0.678803,0.87301,0.580608,0.089085,0.951533,0.970083,0.953882,0.553789,0.0727352,0.904271,0.584682,0.104032,0.0743082,0.821616,0.337817,0.204152,0.83239,0.95862,0.595629,0.236394,0.236034,0.659287,0.638152,0.450979,0.0172135,0.425193,0.42228,0.975939,0.493306,0.16145,0.441849,0.425746,0.75111,0.0491722,0.470147,0.827752,0.307198,0.667045,0.424922,0.301912,0.739941,0.0803829,0.203201,0.294297,0.627436,0.944683,0.637884,0.42436,0.348522,0.118713,0.188403,0.434486,0.427677,0.180686,0.67749,0.682481,0.869661,0.0320446,0.889609,0.273851,0.810648,0.394475,0.545498,0.295401,0.900378,0.347022,0.864599,0.306841,0.891834,0.879241,0.630275,0.289308,0.478494,0.0984635,0.0103779,0.962165,0.65839,0.0267119,0.75969,0.077875,0.792642,0.609422,0.0268134,0.135564,0.685734,0.617444,0.887778,0.394798,0.29143,0.679324,0.319698,0.620694,0.093697,0.309997,0.245248,0.678175,0.18269,0.75494,0.396163,0.226079,0.706889,0.446908,0.363449,0.267297,0.264455,0.433901,0.385662,0.72951,0.587866,0.976412,0.918595,0.165753,0.300279,0.0694079,0.68119,0.610031,0.907689,0.195805,0.466787,0.252697,0.532419,0.730963,0.882967,0.107165,0.601871,0.474286,0.0583122,0.731899,0.830658,0.945187,0.242051,0.0327378,0.855894,0.0935773,0.830848,0.0225035,0.457869,0.341747,0.0287266,0.965399,0.390073,0.432964,0.312347,0.600587,0.173963,0.0466086,0.771704,0.302329,0.452423,0.902781,0.814426,0.24527,0.776458,0.76109,0.614057,0.143338,0.287158,0.723297,0.106231,0.442468,0.547339,0.846359,0.281891,0.247971,0.946493,0.720698,0.270061,0.300508,0.575234,0.236892,0.375393,0.622486,0.73535,0.161386,0.300838,0.0731134,0.656592,0.846422,0.124378,0.0186427,0.611836,0.88668,0.0157517,0.316376,0.323241,0.653442,0.144141,0.496159,0.174638,0.483972,0.725683,0.724532,0.815421,0.178989,0.835608,0.674292,0.351834,0.726241,0.170825,0.803765,0.0525293,0.339732,0.610033,0.373408,0.293094,0.26487,0.158263,0.945436,0.455319,0.153137,0.682772,0.870297,0.326469,0.333394,0.249408,0.666297,0.951323,0.448405,0.734485,0.0235962,0.769636,0.894275,0.123976,0.87285,0.982478,0.956807,0.0451433,0.432309,0.0647004,0.068961,0.651127,0.823042,0.791959,0.775514,0.594427,0.149319,0.113387,0.257006,0.950698,0.588401,0.603024,0.0161999,0.541107,0.66488,0.815427,0.113232,0.61648,0.658049,0.0106167,0.555135,0.339842,0.223526,0.701385,0.684053,0.657319,0.973823,0.373025,0.0874954,0.269119,0.545051,0.462078,0.668243,0.156354,0.192782,0.164184,0.243213,0.675915,0.352825,0.923082,0.655356,0.630821,0.679231,0.341692,0.785067,0.820258,0.96672,0.858707,0.15299,0.397462,0.1925,0.528722,0.993984,0.580346,0.39089,0.626602,0.943848,0.737649,0.975866,0.764442,0.456925,0.259259,0.852184,0.631264,0.204531,0.864367,0.3098,0.000571847,0.961203,0.842299,0.318025,0.141149,0.623743,0.516299,0.605929,0.741366,0.457414,0.156233,0.237476,0.377805,0.534467,0.600774,0.724291,0.456189,0.586592,0.862602,0.0550858,0.370777,0.823659,0.797742,0.588051,0.352457,0.193206,0.204087,0.636491,0.137793,0.653529,0.1535,0.301759,0.191864,0.0304627,0.672209,0.946658,0.394578,0.737372,0.745194,0.998521,0.0357536,0.31947,0.396616,0.158963,0.79078,0.47645,0.5042,0.733115,0.168675,0.737145,0.791795,0.790191,0.579439,0.0792349,0.260572,0.481831,0.288132,0.49765,0.665969,0.283895,0.699431,0.853919,0.31091,0.0339516,0.281761,0.213048,0.779988,0.678053,0.793317,0.261455,0.717003,0.647014,0.429983,0.679505,0.419333,0.226711,0.773707,0.965392,0.2186,0.020036,0.907472,0.408625,0.460477,0.0229726,0.58388,0.319478,0.586538,0.503627,0.578838,0.102389,0.973031,0.949362,0.563011,0.338968,0.340614,0.35072,0.875787,0.626355,0.409024,0.34228,0.606765,0.129603,0.0876157,0.373875,0.558777,0.565226,0.160421,0.258603,0.250125,0.674584,0.582437,0.746535,0.387665,0.111168,0.428018,0.29815,0.0830637,0.106471,0.703537,0.688318,0.260719,0.368839,0.519086,0.919901,0.97027,0.799469,0.0270119,0.673644,0.031067,0.667424,0.589916,0.00163579,0.637919,0.947757,0.300138,0.245755,0.878382,0.499102,0.110473,0.55841,0.647502,0.112881,0.951337,0.193166,0.580907,0.915788,0.743638,0.137841,0.0483158,0.460637,0.61933,0.0586069,0.0290125,0.909451,0.609178,0.369264,0.757979,0.525883,0.411789,0.458775,0.687345,0.928841,0.847941,0.027845,0.0593306,0.855278,0.0528798,0.367283,0.940959,0.988525,0.282391,0.194355,0.181697,0.899016,0.12821,0.198249,0.855895,0.551563,0.397024,0.0408128,0.567662,0.0862272,0.0525153,0.608545,0.915985,0.140833,0.0299287,0.252902,0.516182,0.401508,0.43809,0.086799,0.221784,0.962605,0.128763,0.38557,0.427878,0.161377,0.0522754,0.964499,0.985331,0.908714,0.728779,0.140483,0.763925,0.323557,0.474276,0.0812739,0.603755,0.11547,0.253462,0.940806,0.664745,0.541124,0.432856,0.822325,0.160247,0.26985,0.218174,0.921895,0.518482,0.885153,0.328679,0.601209,0.580609,0.706316,0.145421,0.177457,0.077082,0.222549,0.706999,0.169895,0.846643,0.45036,0.599937,0.901885,0.480724,0.758683,0.75512,0.279442,0.0438173,0.231067,0.884382,0.406595,0.121304,0.20348,0.462147,0.0632378,0.241877,0.878432,0.786732,0.252151,0.161995,0.634761,0.359497,0.750616,0.925981,0.3288,0.550495,0.598494,0.323613,0.375776,0.253373,0.571486,0.736334,0.0516471,0.0969493,0.814552,0.923065,0.759565,0.287212,0.934051,0.0400963,0.0641237,0.603413,0.45442,0.301565,0.194758,0.728899,0.783905,0.604003,0.324781,0.710384,0.0313452,0.146994,0.549809,0.669339,0.979109,0.538769,0.684339,0.759028,0.947173,0.521597,0.423684,0.921271,0.85489,0.825256,0.723573,0.726371,0.839316,0.221948,0.363315,0.00451577,0.484799,0.345559,0.508253,0.407435,0.854609,0.33506,0.15855,0.97071,0.30138,0.718131,0.391234,0.42159,0.196258,0.286978,0.403044,0.930856,0.916677,0.612529,0.168555,0.459786,0.749586,0.646302,0.833181,0.251796,0.0232227,0.585341,0.000616133,0.131939,0.560545,0.645045,0.0417818,0.0267792,0.801923,0.626638,0.00786513,0.335472,0.262254,0.450429,0.294605,0.513263,0.612323,0.859651,0.228535,0.0719715,0.477571,0.333035,0.668535,0.963385,0.766545,0.85075,0.620037,0.370456,0.0744263,0.547208,0.900052,0.0950001,0.85852,0.406319,0.539419,0.945204,0.466756,0.58526,0.646085,0.496468,0.130342,0.392369,0.944047,0.826525,0.0464562,0.5282,0.865117,0.162626,0.460962,0.750805,0.608584,0.0906633,0.173929,0.238682,0.359869,0.574539,0.758872,0.957186,0.816167,0.929608,0.778932,0.0057407,0.85463,0.428582,0.901593,0.464883,0.167933,0.587566,0.428,0.189501,0.0174858,0.35458,0.362164,0.306245,0.0918316,0.29198,0.00316113,0.970193,0.334521,0.229471,0.713145,0.107046,0.603667,0.267443,0.600884,0.362041,0.6348,0.152024,0.0165858,0.638669,0.54855,0.360862,0.9013,0.858201,0.83161,0.474011,0.284392,0.0889214,0.930137,0.396847,0.0428938,0.258494,0.684548,0.00401372,0.221673,0.512469,0.268796,0.181004,0.0951673,0.431524,0.666514,0.356606,0.433792,0.736388,0.913122,0.840721,0.607565,0.844416,0.000718296,0.352786,0.189395,0.551232,0.252961,0.798595,0.0507327,0.34995,0.825912,0.270194,0.467953,0.286225,0.746583,0.28935,0.805951,0.197234,0.0127525,0.22824,|0.693005,0.520734,0.892339,0.522507,0.918728,0.514343,0.432492,0.612972,0.851779,0.179688,0.0609394,0.0127781,0.0427718,0.40999,0.704107,0.92333,0.752655,0.501036,0.950138,0.422657,0.688421,0.315278,0.417374,0.501129,0.471054,0.783599,0.825082,0.945078,0.634879,0.515723,0.972319,0.59965,0.0667751,0.0490055,0.509169,0.970104,0.69228,0.170159,0.90713,0.880528,0.312735,0.704163,0.951433,0.388783,0.806283,0.357014,0.0667056,0.905837,0.705491,0.602707,0.912487,0.27257,0.193668,0.357245,0.796883,0.666164,0.951999,0.780992,0.187908,0.167717,0.724945,0.499168,0.569944,0.230209,0.873503,0.888403,0.944571,0.394534,0.768329,0.561171,0.36414,0.127047,0.990842,0.732005,0.304271,0.68334,0.670363,0.844329,0.491276,0.518224,0.474699,0.200497,0.0157415,0.254198,0.197295,0.895306,0.510269,0.215392,0.853091,0.550175,0.231305,0.588296,0.695291,0.167141,0.316802,0.950856,0.0860623,0.00199234,0.51847,0.40578,0.40698,0.635283,0.927059,0.11517,0.840892,0.85815,0.413033,0.735825,0.594851,0.871648,0.976765,0.987867,0.749476,0.37022,0.90107,0.261604,0.490877,0.876925,0.381969,0.259236,0.0461593,0.510252,0.641158,0.727121,0.327126,0.489106,0.138936,0.160481,0.12762,0.301978,0.445472,0.968133,0.353731,0.553806,0.701654,0.360501,0.477413,0.239624,0.51964,0.798051,0.847557,0.413611,0.0544018,0.753542,0.0893636,0.573289,0.380044,0.168955,0.760121,0.423313,0.888736,0.0788735,0.431911,0.723483,0.345616,0.323492,0.44657,0.164976,0.498539,0.460749,0.6472,0.211528,0.320642,0.487581,0.718316,0.554581,0.0858654,0.409934,0.314589,0.315429,0.0918205,0.87019,0.0381471,0.0839032,0.897557,0.723939,0.977478,0.755827,0.883937,0.604613,0.0134703,0.431263,0.0222542,0.0377573,0.454803,0.404422,0.335305,0.00469887,0.803584,0.038103,0.782173,0.0559467,0.987586,0.862831,0.634604,0.42408,0.435489,0.163432,0.124351,0.0619771,0.667559,0.133574,0.881353,0.310279,0.0885083,0.862751,0.417223,0.980156,0.445805,0.372309,0.712231,0.100642,0.71604,0.354333,0.495108,0.126068,0.609481,0.395068,0.552681,0.077579,0.542741,0.541601,0.599965,0.422553,0.0578977,0.811624,0.505731,0.569464,0.280876,0.909867,0.706732,0.597901,0.0964289,0.369618,0.0189515,0.89862,0.315872,0.980248,0.0909628,0.0814407,0.879401,0.159018,0.652713,0.691732,0.859119,0.345555,0.565823,0.388584,0.957611,0.136849,0.219414,0.76431,0.269917,0.539326,0.656513,0.0588461,0.429456,0.409311,0.575514,0.975839,0.974453,0.95355,0.975115,0.85045,0.92941,0.0984449,0.516994,0.101985,0.581845,0.0387956,0.0890182,0.750415,0.205228,0.54028,0.183833,0.63748,0.326604,0.178765,0.323266,0.436249,0.549717,0.283583,0.359218,0.307534,0.62129,0.0122089,0.220251,0.402766,0.458264,0.903221,0.810354,0.120255,0.396914,0.988424,0.664246,0.611425,0.110387,0.73265,0.841282,0.518142,0.47318,0.915664,0.409439,0.799829,0.0591527,0.0182323,0.169978,0.523869,0.760069,0.741674,0.364184,0.103635,0.819296,0.775782,0.192174,0.0303171,0.888758,0.323293,0.908892,0.251855,0.693071,0.447235,0.0428642,0.100589,0.905329,0.295146,0.869895,0.952895,0.439832,0.971638,0.858949,0.786868,0.299928,0.850039,0.519499,0.395275,0.155145,0.337019,0.939286,0.357924,0.381228,0.7421,0.563944,0.380579,0.861777,0.456644,0.188956,0.463666,0.0773729,0.220937,0.815866,0.721868,0.38269,0.223464,0.350391,0.628447,0.616026,0.822206,0.482824,0.664146,0.970172,0.0245818,0.179071,0.662635,0.109828,0.700129,0.684167,0.959047,0.927081,0.47518,0.0963563,0.827945,0.767242,0.673048,0.795492,0.354488,0.897319,0.896424,0.377417,0.0070945,0.125332,0.528284,0.773573,0.313123,0.270903,0.737555,0.906926,0.874118,0.162808,0.776723,0.149078,0.237894,0.992933,0.839881,0.539143,0.717407,0.786785,0.402604,0.402989,0.824979,0.838946,0.598295,0.366979,0.846065,0.134564,0.918034,0.889336,0.266431,0.529614,0.268872,0.515241,0.647633,0.802282,0.343554,0.039759,0.319823,0.124769,0.370153,0.83326,0.248006,0.0632302,0.123262,0.0524111,0.289481,0.0931582,0.709296,0.667675,0.687671,0.933943,0.251906,0.755157,0.313575,0.878164,0.219049,0.536674,0.294666,0.5819,0.12256,0.194623,0.898695,0.157292,0.263085,0.216719,0.755021,0.318029,0.162732,0.691696,0.572387,0.270624,0.267651,0.248348,0.642847,0.60398,0.173669,0.614485,0.95344,0.145108,0.0568115,0.0363465,0.336036,0.452006,0.351484,0.681515,0.090382,0.00669837,0.611746,0.616955,0.464892,0.435634,0.944911,0.630275,0.197521,0.810111,0.96188,0.513266,0.0107801,0.654649,0.943493,0.217634,0.83846,0.563127,0.876733,0.121629,0.459204,0.0843655,0.216158,0.753253,0.105918,0.180645,0.228773,0.980408,0.644857,0.185349,0.209408,0.680886,0.91093,0.876224,0.870919,0.348124,0.748079,0.836893,0.0161397,0.262887,0.51835,0.986139,0.677023,0.956165,0.943523,0.757476,0.258851,0.691882,0.264443,0.822514,0.810318,0.257194,0.388331,0.959999,0.141539,0.401786,0.247662,0.274193,0.0966491,0.844799,0.571644,0.53686,0.163925,0.0246732,0.614498,0.850419,0.638176,0.98987,0.255875,0.985148,0.260542,0.923803,0.682228,0.270286,0.0660028,0.229777,0.0338175,0.797121,0.623746,0.199224,0.618471,0.206994,0.884397,0.498529,0.694504,0.870926,0.927645,0.690556,0.318448,0.961041,0.825658,0.2303,0.20062,0.604483,0.607861,0.13467,0.285839,0.577106,0.275783,0.176515,0.235829,0.278439,0.973017,0.97622,0.672465,0.695327,0.227941,0.819144,0.412676,0.237078,0.767087,0.324954,0.657966,0.816665,0.948058,0.218253,0.209555,0.226683,0.242497,0.0993361,0.156754,0.0895696,0.70017,0.420503,0.397776,0.275198,0.08893,0.472252,0.0105481,0.51295,0.538896,0.427438,0.107212,0.453977,0.397675,0.263136,0.0347093,0.579036,0.576817,0.129894,0.525109,0.236457,0.57124,0.478049,0.665708,0.782048,0.0551205,0.279483,0.655191,0.354216,0.656569,0.811354,0.849368,0.374444,0.370308,0.657174,0.968652,0.650385,0.195224,0.666113,0.385189,0.65609,0.527217,0.187711,0.801878,0.658603,0.0309193,0.469736,0.974132,0.0786933,0.545795,0.59782,0.0764805,0.158699,0.50509,0.594391,0.263969,0.579232,0.135171,0.406177,0.0832954,0.263899,0.785855,0.524979,0.171351,0.149051,0.839857,0.951977,0.982089,0.983084,0.649248,0.118765,0.482239,0.217044,0.796343,0.92655,0.160513,0.68017,0.802032,0.714691,0.855264,0.10222,0.783686,0.729532,0.361019,0.181837,0.0195144,0.412816,0.743616,0.894579,0.26873,0.212218,0.305807,0.215556,0.77928,0.818767,0.277068,0.260501,0.621632,0.413328,0.862875,0.15777,0.842891,0.38337,0.58216,0.796477,0.961553,0.737225,0.852649,0.805288,0.759378,0.186448,0.638033,0.816834,0.191292,0.350413,0.26154,0.173863,0.763709,0.419011,0.962178,0.0760037,0.36624,0.717175,0.787108,0.987039,0.33121,0.873471,0.542353,0.970098,0.799187,0.99255,0.568428,0.776683,0.227677,0.746383,0.262109,0.0125456,0.298539,0.535393,0.998845,0.684773,0.347651,0.798444,0.656968,0.464551,0.641228,0.350009,0.00942659,0.438343,0.513257,0.869023,0.198378,0.978734,0.638013,0.252418,0.962114,0.627542,0.411231,0.151375,0.854087,0.0436265,0.452928,0.944597,0.83571,0.699518,0.00663042,0.757697,0.708213,0.805095,0.63038,0.194811,0.0383201,0.468335,0.833087,0.576158,0.739911,0.0176126,0.8794,0.966809,0.663988,0.721853,0.625331,0.987704,0.533883,0.154078,0.544005,0.306403,0.947641,0.401867,0.673514,0.268771,0.889706,0.108553,0.698544,0.963606,0.108474,0.886553,0.045382,0.687969,0.346254,0.274768,0.391691,0.0676355,0.939272,0.223714,0.671906,0.833348,0.562263,0.500028,0.418373,0.867636,0.0028742,0.262657,0.483426,0.976371,0.161951,0.423241,0.250527,0.0619149,0.973833,0.722547,0.889308,0.534345,0.163496,0.882734,0.723333,0.836958,0.172644,0.777116,0.293121,0.718298,0.44311,0.0122365,0.944668,0.204612,0.478404,0.0573426,0.405704,0.0717956,0.214356,0.938793,0.474303,0.973864,0.970044,0.27963,0.24561,0.536733,0.125652,0.890563,0.0514514,0.382811,0.963065,0.701607,0.917417,0.0220597,0.970865,0.306346,0.430715,0.713885,0.439222,0.00286549,0.0825227,0.286767,0.860992,0.521722,0.873087,0.563842,0.33758,0.0733752,0.201432,0.487141,0.559234,0.391776,0.622002,0.234077,0.892309,0.498678,0.984137,0.61122,0.229455,0.921171,0.0442761,0.0224187,0.170488,0.469634,0.568447,0.738827,0.336829,0.943845,0.447118,0.63026,0.531225,0.892135,0.885574,0.0807021,0.00232255,0.664113,0.36058,0.188187,0.943921,0.234592,0.562781,0.900182,0.225399,0.679682,0.980904,0.78686,0.181388,0.0586792,0.469523,0.190399,0.247425,0.231013,0.0619476,0.279208,0.0835468,0.125647,0.660265,0.149059,0.320235,0.890803,0.138474,0.142618,0.487853,0.822475,0.891423,0.598304,0.436998,0.677409,0.653661,0.805863,0.150383,0.261553,0.841728,0.287633,0.222708,0.0990428,0.71206,0.633289,0.474565,0.893084,0.10249,0.917928,0.970804,0.335545,0.660006,0.743533,0.991808,0.731068,0.850588,0.675603,0.889348,0.365238,0.184741,0.584948,0.71162,0.251771,0.523209,0.32782,0.269373,0.551984,0.508592,0.834441,0.623407,0.843465,0.566555,0.501431,0.71743,0.968564,0.559501,0.375718,0.743433,0.12914,0.53829,0.641705,0.420585,0.0383911,0.170841,0.324639,0.623604,0.217816,0.128177,0.0376548,0.751873,0.0437269,0.961497,0.110557,0.922501,0.461207,0.627928,0.26185,0.419136,0.327627,0.534874,0.307296,0.90452,0.0084461,0.766266,0.10286,0.504324,0.962274,0.337919,0.682038,0.217175,0.0510221,0.237962,0.453787,0.0798445,0.707555,0.152883,0.863353,0.77722,0.5098,0.145032,0.113971,0.488161,|0.277815,0.080291,0.750667,0.0755858,0.345841,0.576222,0.422675,0.459309,0.761433,0.296257,0.682769,0.282089,0.577966,0.204337,0.146763,0.0634922,0.0532373,0.108782,0.266508,0.919464,0.806544,0.41048,0.352156,0.776669,0.722655,0.0687557,0.64364,0.279633,0.252052,0.132999,0.841442,0.0681559,0.786538,0.172965,0.779667,0.321411,0.541796,0.811594,0.504833,0.0191811,0.734626,0.249155,0.718529,0.166037,0.386742,0.246036,0.00782663,0.500775,0.246945,0.0522116,0.619893,0.447447,0.273602,0.82672,0.947076,0.878147,0.261797,0.562085,0.847649,0.688592,0.583742,0.889189,0.327562,0.240848,0.919761,0.0997585,0.595695,0.988325,0.916889,0.87687,0.033662,0.452161,0.307129,0.837727,0.850115,0.085538,0.302396,0.130615,0.267819,0.561325,0.169556,0.686582,0.272063,0.202656,0.309775,0.442329,0.222329,0.137556,0.0435976,0.156873,0.396523,0.0466524,0.606423,0.299118,0.324009,0.76576,0.946361,0.450768,0.0868318,0.963604,0.833682,0.870171,0.036177,0.32837,0.766195,0.971483,0.193876,0.285239,0.924908,0.474978,0.386295,0.162923,0.0421971,0.81887,0.890767,0.652407,0.0349374,0.680179,0.625229,0.464611,0.0753316,0.0950536,0.505686,0.468734,0.296192,0.0490547,0.665098,0.376239,0.477024,0.804406,0.0823159,0.490657,0.888267,0.0211356,0.402166,0.521957,0.0303855,0.429668,0.438182,0.566836,0.20992,0.964945,0.924229,0.476657,0.473879,0.836271,0.332552,0.988666,0.951928,0.282613,0.716918,0.805036,0.40548,0.587727,0.557294,0.847216,0.984634,0.8863,0.123094,0.5734,0.226805,0.155363,0.48809,0.479357,0.314422,0.430673,0.887889,0.444004,0.785036,0.288644,0.8856,0.281012,0.128355,0.0730886,0.977591,0.958698,0.361341,0.881927,0.389893,0.648148,0.741714,0.107927,0.59054,0.845115,0.634663,0.628088,0.666608,0.753567,0.89096,0.424375,0.0136713,0.55561,0.0692282,0.341977,0.928652,0.729861,0.139428,0.646996,0.46802,0.326948,0.865047,0.550874,0.212601,0.0981618,0.167042,0.00778329,0.619254,0.0912687,0.144695,0.42475,0.769991,0.128528,0.864569,0.419255,0.700453,0.533263,0.034821,0.528445,0.834491,0.585178,0.737061,0.348637,0.320052,0.558022,0.980419,0.264825,0.766854,0.114091,0.00339442,0.849638,0.711714,0.26234,0.597745,0.0680651,0.703455,0.525547,0.0716887,0.160734,0.203358,0.690412,0.351599,0.752307,0.797091,0.0878129,0.130621,0.906777,0.500536,0.111606,0.114072,0.537372,0.550323,0.784735,0.192169,0.383359,0.49007,0.517791,0.900329,0.646023,0.538555,0.864411,0.289081,0.116342,0.150543,0.239846,0.711829,0.302794,0.774733,0.48445,0.527431,0.568301,0.131955,0.623626,0.872296,0.718352,0.835595,0.355741,0.546916,0.574786,0.130433,0.40602,0.790951,0.245915,0.703925,0.889603,0.694894,0.0740002,0.168727,0.994402,0.00514627,0.918214,0.131473,0.565318,0.49172,0.00960863,0.77216,0.466455,0.466383,0.273213,0.352584,0.222679,0.263268,0.812706,0.781386,0.23877,0.554144,0.914056,0.612086,0.889061,0.335199,0.932515,0.691197,0.60132,0.153325,0.794665,0.449863,0.364567,0.533771,0.808337,0.705572,0.614492,0.52847,0.382402,0.190984,0.079932,0.992915,0.893862,0.383519,0.909774,0.0387427,0.241215,0.796578,0.257475,0.404283,0.70443,0.347908,0.0598629,0.703902,0.752591,0.345598,0.924361,0.564019,0.0526821,0.293174,0.761511,0.998484,0.854315,0.42422,0.150507,0.154075,0.497619,0.355657,0.141057,0.366883,0.270677,0.852663,0.81673,0.351325,0.361187,0.665007,0.826592,0.0543897,0.433248,0.944471,0.484228,0.157149,0.863735,0.0145847,0.0188189,0.807896,0.874837,0.72116,0.48961,0.704356,0.472536,0.353163,0.694816,0.251905,0.0767671,0.73028,0.5077,0.384603,0.403986,0.288176,0.42568,0.163718,0.165685,0.980231,0.86881,0.412095,0.556066,0.302146,0.544791,0.890399,0.641783,0.245619,0.685533,0.712866,0.716868,0.841069,0.639161,0.393461,0.277266,0.565293,0.741435,0.136185,0.216576,0.743808,0.406031,0.40187,0.795421,0.899331,0.602311,0.76996,0.207362,0.901647,0.303367,0.219936,0.483484,0.367655,0.477139,0.0235732,0.751863,0.73955,0.677178,0.713332,0.32228,0.430314,0.126129,0.566006,0.452413,0.16963,0.345572,0.564362,0.7505,0.137053,0.52533,0.091339,0.140555,0.749407,0.786738,0.0945264,0.0880453,0.480094,0.836951,0.319948,0.330607,0.950923,0.245121,0.610411,0.815762,0.639872,0.102246,0.016996,0.502628,0.923452,0.536195,0.0585549,0.864256,0.35971,0.0818658,0.696286,0.553717,0.825847,0.972893,0.356417,0.188046,0.882115,0.93884,0.932013,0.350391,0.749636,0.750732,0.875786,0.00211024,0.742998,0.057668,0.284486,0.675574,0.357052,0.34307,0.402311,0.895426,0.828106,0.404847,0.383089,0.905328,0.133542,0.3448,0.801716,0.719857,0.248962,0.601518,0.516972,0.544046,0.720869,0.145915,0.0398372,0.309102,0.158088,0.415456,0.766232,0.190548,0.479153,0.0205904,0.699363,0.548985,0.603118,0.494595,0.627506,0.557939,0.546204,0.551228,0.408373,0.728083,0.153138,0.115278,0.359753,0.0835537,0.414462,0.785614,0.797066,0.288772,0.993726,0.0345153,0.895841,0.219678,0.094617,0.541226,0.293034,0.83586,0.435096,0.862024,0.941042,0.257924,0.690969,0.31009,0.00747412,0.950504,0.0114431,0.00999302,0.36984,0.553681,0.937772,0.872255,0.246612,0.152355,0.38657,0.26931,0.750557,0.0409325,0.142214,0.970662,0.948248,0.839354,0.45334,0.167179,0.145322,0.584253,0.934252,0.39336,0.315193,0.892401,0.629829,0.219705,0.633031,0.0419147,0.545204,0.565124,0.244574,0.121683,0.107172,0.123253,0.251342,0.876271,0.41971,0.921043,0.400716,0.484318,0.381631,0.854925,0.364992,0.172044,0.408361,0.595846,0.683347,0.298091,0.816027,0.144565,0.649533,0.471584,0.376161,0.546027,0.98508,0.385566,0.83169,0.124799,0.910806,0.421784,0.154063,0.749929,0.0463318,0.229395,0.817764,0.652581,0.152679,0.367207,0.333401,0.668738,0.294443,0.0489794,0.2475,0.243291,0.197087,0.170415,0.477566,0.650187,0.333925,0.401996,0.169918,0.600736,0.456909,0.227065,0.324945,0.909045,0.366235,0.728229,0.638255,0.455769,0.347244,0.348574,0.0128595,0.995104,0.297686,0.723802,0.616335,0.67591,0.516121,0.527673,0.843562,0.145896,0.815504,0.215767,0.99428,0.00795358,0.53738,0.2731,0.888726,0.67404,0.301739,0.682094,0.524256,0.774369,0.615785,0.648082,0.0842004,0.362968,0.319458,0.984106,0.570928,0.0894061,0.0761658,0.990668,0.229811,0.97832,0.355585,0.465911,0.742388,0.145933,0.13123,0.0448886,0.00363958,0.372708,0.617639,0.806019,0.975479,0.313517,0.2428,0.358218,0.61106,0.895201,0.0693139,0.143873,0.721825,0.443289,0.288814,0.821413,0.152579,0.678208,0.504156,0.115322,0.0533234,0.373584,0.361158,0.431105,0.541004,0.917588,0.399815,0.432886,0.663779,0.878163,0.235444,0.490937,0.1384,0.967238,0.416015,0.596923,0.458444,0.864902,0.159021,0.258066,0.0618197,0.383839,0.234253,0.227308,0.48377,0.000335634,0.600133,0.455471,0.691161,0.419673,0.0893315,0.624376,0.248477,0.0744772,0.231154,0.249423,0.489695,0.855161,0.681419,0.232777,0.0592704,0.46889,0.0671916,0.75479,0.467206,0.63172,0.572804,0.218821,0.620309,0.718399,0.611198,0.236616,0.995286,0.325554,0.366746,0.0326809,0.888892,0.492282,0.769693,0.863833,0.282367,0.973189,0.741086,0.267148,0.624929,0.690233,0.644853,0.609669,0.337056,0.0158848,0.75368,0.845397,0.165785,0.998898,0.238444,0.83097,0.585079,0.057577,0.504746,0.506161,0.976131,0.0225606,0.100005,0.0477856,0.286338,0.176866,0.807784,0.624708,0.956811,0.209847,0.131394,0.750911,0.719669,0.258589,0.923985,0.718943,0.557523,0.0796601,0.122747,0.902653,0.907122,0.365948,0.256212,0.904787,0.516184,0.156844,0.283577,0.287131,0.83327,0.665751,0.681643,0.804892,0.844165,0.235066,0.229417,0.0439662,0.0140782,0.128688,0.650038,0.635704,0.0734549,0.244575,0.416473,0.226273,0.186304,0.26951,0.533331,0.829748,0.0753074,0.676346,0.924898,0.642866,0.883944,0.75133,0.421754,0.705156,0.0943723,0.247033,0.438409,0.939739,0.74889,0.423496,0.452053,0.758364,0.03842,0.854556,0.508405,0.079707,0.675367,0.0997226,0.236048,0.621817,0.0697667,0.132328,0.376979,0.980748,0.243433,0.217196,0.344711,0.528604,0.603696,0.81901,0.826602,0.0131798,0.835417,0.187135,0.233998,0.816881,0.296009,0.901368,0.61364,0.533337,0.870838,0.635906,0.987303,0.173858,0.749625,0.173824,0.762423,0.502146,0.354114,0.645922,0.347017,0.139193,0.292286,0.150594,0.0391529,0.147429,0.113766,0.620283,0.805721,0.187556,0.118057,0.725262,0.44903,0.94179,0.928657,0.136729,0.527771,0.408867,0.909213,0.00664836,0.731526,0.136169,0.0139796,0.382197,0.815252,0.344552,0.624848,0.335181,0.15241,0.255044,0.928022,0.96233,0.402506,0.0752752,0.912219,0.228728,0.335335,0.0857127,0.554418,0.0955941,0.329999,0.668939,0.163066,0.859481,0.646188,0.716559,0.43741,0.975261,0.579117,0.544186,0.380623,0.858656,0.63932,0.522197,0.471909,0.487309,0.0318303,0.674795,0.91348,0.0296923,0.919299,0.806081,0.409132,0.0700919,0.274284,0.102687,0.497657,0.901502,0.981899,0.87941,0.916592,0.752602,0.966944,0.544324,0.937191,0.502319,0.0735744,0.293321,0.221867,0.0731861,0.885267,0.918342,0.314653,0.872893,0.544661,0.480479,0.708895,0.614855,0.920327,0.359029,0.590596,0.162213,0.198296,0.0454988,0.119687,0.184493,0.197383,0.276609,0.560989,0.345712,0.522108,0.864705,0.33756,0.522651,0.665858,0.235424,0.583179,0.378672,0.499749,0.328213,0.299239,0.863577,0.246696,0.312484,0.202101,0.220721,0.288093,0.0993591,0.245083,0.943006,0.858629,0.233499,0.407157,0.327767,0.00517952,0.397673,0.599476,0.721578,|0.649601,0.843985,0.0604585,0.514925,0.618704,0.341018,0.9828,0.533342,0.289568,0.58151,0.514117,0.738354,0.0165953,0.856093,0.752428,0.431739,0.10002,0.241476,0.33541,0.758752,0.212066,0.592058,0.381203,0.771616,0.261045,0.79177,0.76971,0.987654,0.339906,0.759478,0.269145,0.506597,0.852745,0.459035,0.185878,0.780487,0.234993,0.628422,0.581637,0.15565,0.942738,0.502798,0.032865,0.303252,0.518484,0.818262,0.375285,0.261034,0.0614257,0.93743,0.768361,0.751459,0.699798,0.950885,0.531668,0.300305,0.152968,0.165136,0.392939,0.113442,0.598533,0.520804,0.572477,0.62598,0.801683,0.772151,0.365812,0.473148,0.59475,0.612148,0.864589,0.202493,0.621058,0.859649,0.253245,0.500441,0.271089,0.232971,0.931782,0.607253,0.0877923,0.378965,0.033175,0.00258213,0.86068,0.347705,0.752967,0.355804,0.871111,0.478303,0.595676,0.91605,0.319128,0.208514,0.321294,0.487699,0.732812,0.426531,0.997741,0.66772,0.511965,0.119886,0.586171,0.261234,0.260829,0.0330024,0.437406,0.242294,0.637556,0.108366,0.351738,0.844828,0.26835,0.0630097,0.929014,0.570462,0.524273,0.0986794,0.714498,0.627374,0.299474,0.463504,0.723636,0.236087,0.87113,0.646624,0.195104,0.894968,0.667612,0.366323,0.9399,0.511989,0.161465,0.422728,0.755083,0.441099,0.116822,0.868709,0.760696,0.446638,0.741833,0.657499,0.476405,0.440645,0.974937,0.782802,0.900097,0.118014,0.0149853,0.377557,0.411097,0.882174,0.00805908,0.606596,0.59953,0.410419,0.548807,0.0725057,0.0663121,0.635253,0.686723,0.630147,0.558943,0.310842,0.561801,0.3478,0.633582,0.818133,0.186289,0.0105338,0.507481,0.0261987,0.0513402,0.979947,0.626049,0.545726,0.385,0.612295,0.829365,0.737394,0.729286,0.0895424,0.00585908,0.501358,0.687124,0.916072,0.0494471,0.401831,0.265338,0.209077,0.725085,0.458231,0.247685,0.459769,0.0789814,0.936386,0.0243299,0.757022,0.977806,0.132142,0.00207192,0.221069,0.218857,0.313325,0.98614,0.227293,0.494496,0.988171,0.897475,0.356881,0.602601,0.187758,0.812214,0.863173,0.0358279,0.980925,0.698692,0.28417,0.0246789,0.561212,0.971097,0.0794752,0.337717,0.926358,0.84914,0.464746,0.201585,0.195658,0.396892,0.979797,0.80879,0.0521836,0.95292,0.898476,0.738153,0.297157,0.711857,0.349338,0.484414,0.653002,0.941275,0.787255,0.360326,0.140359,0.861569,0.00333214,0.527717,0.694725,0.417275,0.180467,0.335418,0.232523,0.137017,0.0460861,0.278134,0.944337,0.72114,0.824153,0.0414758,0.826731,0.422249,0.942818,0.915008,0.865306,0.488093,0.757875,0.9863,0.357963,0.435051,0.132345,0.334473,0.314559,0.154446,0.717137,0.151114,0.127968,0.547998,0.279548,0.672049,0.719545,0.453628,0.136285,0.900678,0.681254,0.116255,0.274535,0.950077,0.326083,0.745853,0.52596,0.289765,0.50661,0.871243,0.723392,0.302144,0.632285,0.5777,0.264417,0.145122,0.119879,0.390521,0.343363,0.531396,0.542532,0.0902477,0.151628,0.226965,0.111213,0.902095,0.476947,0.889308,0.963675,0.390786,0.0126648,0.286791,0.202463,0.205275,0.606452,0.235035,0.134139,0.0433854,0.452331,0.656459,0.449567,0.586133,0.621504,0.781562,0.0135685,0.683302,0.479183,0.218563,0.762625,0.10399,0.746908,0.487224,0.480936,0.923862,0.515646,0.427627,0.624024,0.3495,0.295013,0.933227,0.31746,0.0416266,0.264463,0.754658,0.463756,0.695432,0.366605,0.84765,0.305158,0.401274,0.482545,0.364255,0.531205,0.58778,0.989819,0.679106,0.469281,0.472174,0.989127,0.493582,0.916971,0.782656,0.933428,0.154801,0.461166,0.023658,0.232772,0.934044,0.867209,0.160062,0.00181419,0.564942,0.268262,0.797065,0.995221,0.444773,0.215291,0.32477,0.904499,0.594836,0.167387,0.391534,0.312621,0.715642,0.0109615,0.843856,0.392583,0.296468,0.248172,0.656732,0.941886,0.524602,0.218806,0.651074,0.187515,0.633692,0.66236,0.148777,0.633259,0.950155,0.17063,0.764072,0.467199,0.196746,0.131831,0.0487899,0.990407,0.799023,0.158739,0.722008,0.821782,0.536886,0.322203,0.215468,0.630379,0.486849,0.16126,0.153167,0.538365,0.891962,0.182181,0.592277,0.148383,0.239556,0.3336,0.214164,0.559902,0.451853,0.403283,0.461434,0.418948,0.394485,0.37056,0.489564,0.655585,0.51393,0.591253,0.460469,0.935853,0.294793,0.811899,0.764925,0.656179,0.117069,0.76636,0.106104,0.379764,0.86709,0.153025,0.467247,0.805201,0.810512,0.657798,0.978062,0.775101,0.756747,0.864349,0.0362196,0.345466,0.0279871,0.604754,0.0559996,0.702444,0.640078,0.569418,0.271409,0.214912,0.12111,0.599349,0.482677,0.242916,0.967494,0.694242,0.723678,0.379044,0.192301,0.666822,0.397182,0.116837,0.311424,0.0452392,0.00649637,0.401941,0.303395,0.419585,0.943763,0.267535,0.361948,0.806,0.962045,0.559552,0.505459,0.797545,0.99153,0.637545,0.226325,0.516299,0.403403,0.568973,0.653357,0.171568,0.098691,0.396727,0.766871,0.42771,0.10127,0.00441438,0.386837,0.515611,0.417795,0.403286,0.861194,0.47318,0.047924,0.495729,0.0441219,0.57099,0.0413908,0.35891,0.965426,0.723661,0.348577,0.461771,0.234627,0.47187,0.740047,0.740957,0.5608,0.982346,0.0890332,0.658891,0.360885,0.757943,0.322819,0.587703,0.29897,0.781039,0.576056,0.624318,0.595865,0.659605,0.946686,0.786535,0.470576,0.96483,0.0354788,0.633484,0.674339,0.397463,0.483479,0.75015,0.0191327,0.845375,0.654649,0.945664,0.469242,0.183378,0.0961607,0.455058,0.742952,0.572719,0.0361103,0.814699,0.314696,0.955356,0.595606,0.726133,0.795933,0.742087,0.974618,0.827877,0.0810558,0.32003,0.553005,0.938223,0.120687,0.479043,0.158004,0.00192386,0.74694,0.765923,0.792766,0.198076,0.0378003,0.96584,0.260862,0.222589,0.685091,0.73788,0.851014,0.559574,0.584615,0.655738,0.652353,0.0846944,0.236266,0.419688,0.618299,0.13097,0.838289,0.818531,0.557353,0.0522459,0.917145,0.402468,0.582919,0.130941,0.840131,0.461766,0.866353,0.123649,0.0642463,0.283978,0.389477,0.868344,0.424229,0.563076,0.926023,0.225335,0.363219,0.767079,0.0794829,0.382564,0.151552,0.0737341,0.254005,0.981505,0.411402,0.43119,0.210435,0.25202,0.422173,0.702496,0.595822,0.203992,0.240833,0.454055,0.846078,0.0589511,0.0230145,0.180094,0.905926,0.301835,0.603917,0.689812,0.0787069,0.797149,0.325614,0.0828057,0.193082,0.652246,0.387287,0.907843,0.300428,0.795426,0.842103,0.156256,0.933199,0.783727,0.647584,0.771594,0.319558,0.221839,0.917829,0.999783,0.354485,0.277055,0.484465,0.639758,0.317653,0.252915,0.893622,0.539399,0.989602,0.657351,0.598846,0.978545,0.941645,0.811713,0.411754,0.421,0.944512,0.333712,0.226799,0.946457,0.631395,0.321905,0.16664,0.757952,0.503981,0.903671,0.546513,0.916811,0.523405,0.977221,0.146812,0.252432,0.976565,0.39704,0.75588,0.525416,0.11836,0.280718,0.572976,0.846658,0.228508,0.159269,0.536683,0.010429,0.340073,0.540408,0.664418,0.434056,0.419132,0.263402,0.35543,0.987771,0.755062,0.960788,0.348495,0.17046,0.591802,0.748973,0.0187732,0.42659,0.0917798,0.829269,0.750207,0.907403,0.710642,0.144018,0.874931,0.201222,0.538419,0.911121,0.566025,0.946546,0.139499,0.371917,0.433609,0.902452,0.88127,0.695379,0.358246,0.885421,0.664978,0.649731,0.192694,0.970477,0.424698,0.627834,0.867797,0.315128,0.625045,0.42318,0.526615,0.715743,0.0473034,0.892894,0.975249,0.563617,0.483848,0.892337,0.291521,0.402823,0.76705,0.461095,0.15109,0.210127,0.200271,0.642302,0.404223,0.553882,0.265624,0.623083,0.579258,0.741265,0.228707,0.582187,0.324808,0.724998,0.549304,0.8863,0.338095,0.955728,0.101844,0.372128,0.772522,0.800464,0.774062,0.245638,0.595558,0.0902579,0.146966,0.541588,0.101268,0.465889,0.952702,0.828276,0.603458,0.151461,0.348935,0.529207,0.580988,0.14811,0.488921,0.127879,0.926454,0.0830158,0.491108,0.346367,0.122729,0.299406,0.396032,0.84534,0.584799,0.901432,0.801207,0.631043,0.729034,0.636891,0.703974,0.338802,0.3949,0.493239,0.159907,0.757422,0.911626,0.455742,0.434909,0.23055,0.902946,0.957593,0.437199,0.598424,0.633399,0.687291,0.850698,0.129494,0.249503,0.953,0.106259,0.0935459,0.610564,0.318764,0.0470111,0.551866,0.153719,0.772163,0.69362,0.230023,0.166419,0.873482,0.906405,0.423932,0.637345,0.366147,0.872502,0.511108,0.224476,0.645689,0.79372,0.014308,0.691478,0.823008,0.56883,0.725177,0.950701,0.643835,0.373324,0.926743,0.397749,0.858889,0.896338,0.912183,0.333251,0.999302,0.326651,0.747199,0.519593,0.269035,0.445317,0.75816,0.66027,0.381103,0.311167,0.67791,0.0924023,0.541013,0.92835,0.268493,0.158116,0.428871,0.66165,0.427968,0.232483,0.0511466,0.65183,0.0333397,0.865417,0.847019,0.587691,0.532007,0.54002,0.313925,0.383516,0.0455835,0.694961,0.0528347,0.294488,0.65031,0.0368494,0.497008,0.437995,0.348098,0.132239,0.18188,0.141799,0.206257,0.206264,0.378525,0.0862539,0.642365,0.981266,0.319424,0.629333,0.901559,0.641386,0.150686,0.334623,0.537707,0.208156,0.00933623,0.309412,0.00284028,0.702202,0.0620483,0.138956,0.650672,0.100113,0.18568,0.425732,0.272709,0.208672,0.208539,0.567909,0.184192,0.924393,0.586885,0.362348,0.859395,0.948822,0.64999,0.363262,0.408356,0.519454,0.856294,0.756017,0.218661,0.261965,0.744555,0.906826,0.381696,0.723912,0.907804,0.910283,0.77727,0.84234,0.636222,0.865143,0.211298,0.000199854,0.61686,0.764472,0.949176,0.863525,0.903149,0.278923,0.56677,0.602288,0.257953,0.203146,0.45439,0.441976,0.882088,0.111288,0.0569924,0.650823,0.0870347,0.998545,0.728147,0.806546,0.0225745,0.74284,0.238885,0.0131626,0.810336,|0.268318,0.289525,0.223194,0.910603,0.629772,0.580265,0.535712,0.252541,0.87885,0.75821,0.715312,0.143819,0.626421,0.124895,0.760846,0.155199,0.934604,0.436478,0.285819,0.576551,0.343424,0.982588,0.295469,0.183039,0.305089,0.357817,0.0681536,0.00113434,0.0715725,0.921232,0.831351,0.450316,0.95899,0.288828,0.869744,0.421028,0.862968,0.823301,0.979119,0.0874749,0.888178,0.981497,0.265161,0.218764,0.485176,0.749844,0.16807,0.716461,0.930351,0.93637,0.334221,0.333538,0.654877,0.515205,0.283876,0.69005,0.208697,0.499665,0.262376,0.67236,0.0740655,0.824961,0.499884,0.11951,0.541781,0.818867,0.329086,0.367759,0.907291,0.33062,0.123455,0.405778,0.889142,0.440288,0.848483,0.590856,0.710664,0.354006,0.946171,0.8162,0.235513,0.215242,0.101799,0.464718,0.87097,0.451069,0.528355,0.507634,0.835396,0.611769,0.407919,0.692051,0.849275,0.868428,0.909054,0.214346,0.671989,0.495787,0.543714,0.473614,0.900847,0.0805944,0.12863,0.661238,0.493042,0.88588,0.870058,0.547243,0.766017,0.962652,0.444255,0.0567898,0.822748,0.593976,0.550399,0.42794,0.703022,0.470355,0.134953,0.344796,0.156837,0.898643,0.330403,0.627236,0.292507,0.837616,0.525258,0.446176,0.75192,0.47864,0.0890974,0.439639,0.913588,0.260897,0.631765,0.94871,0.341572,0.554774,0.296997,0.439103,0.235907,0.431319,0.158852,0.929251,0.634012,0.99789,0.209792,0.387614,0.476464,0.730458,0.744086,0.231158,0.464946,0.525346,0.472328,0.9727,0.47744,0.953851,0.0157341,0.421949,0.852166,0.029072,0.456921,0.584931,0.460322,0.738629,0.153893,0.218413,0.436185,0.572305,0.400707,0.389945,0.578937,0.798795,0.39174,0.602243,0.955782,0.472464,0.889894,0.95212,0.998343,0.0968236,0.860974,0.559665,0.655686,0.814358,0.193133,0.0543635,0.169583,0.242531,0.740107,0.111767,0.478217,0.607492,0.27329,0.500734,0.0296579,0.984502,0.807247,0.412743,0.365599,0.960339,0.83603,0.262513,0.823841,0.8327,0.651653,0.97743,0.152226,0.0822371,0.850989,0.441528,0.484331,0.793224,0.36191,0.0910694,0.135955,0.960115,0.763751,0.297626,0.614825,0.551923,0.617875,0.180321,0.248218,0.522762,0.689227,0.70964,0.819681,0.79444,0.891864,0.983783,0.0411354,0.212145,0.378225,0.118596,0.173928,0.234476,0.300094,0.843521,0.0812269,0.63805,0.217682,0.950495,0.014756,0.388071,0.697818,0.594541,0.323823,0.499126,0.501127,0.0911502,0.503547,0.110532,0.321021,0.59372,0.645931,0.617602,0.0131652,0.863782,0.40842,0.602168,0.853689,0.79535,0.333334,0.842582,0.453373,0.895327,0.608924,0.0387614,0.197976,0.287313,0.0142784,0.385602,0.529508,0.231272,0.664653,0.731794,0.118015,0.158465,0.0106078,0.0750608,0.44444,0.66921,0.243751,0.0403359,0.908172,0.772273,0.80539,0.236088,0.402589,0.562815,0.62183,0.122275,0.442296,0.430449,0.14532,0.943274,0.150276,0.762907,0.300936,0.0159925,0.67232,0.933591,0.400605,0.912897,0.0235428,0.82297,0.82887,0.277135,0.0903222,0.485929,0.255352,0.332467,0.860816,0.220475,0.71549,0.523269,0.146307,0.30326,0.000623822,0.881249,0.579973,0.179996,0.140215,0.356125,0.726937,0.691095,0.983941,0.679338,0.580587,0.0802561,0.242456,0.480158,0.839152,0.0206667,0.669957,0.801516,0.484575,0.592667,0.357053,0.795823,0.0295403,0.244812,0.65988,0.370584,0.564716,0.724994,0.662003,0.322389,0.767392,0.948041,0.71499,0.844337,0.846171,0.701395,0.815749,0.197055,0.619871,0.856899,0.1665,0.222063,0.824499,0.130014,0.183185,0.473566,0.893918,0.807538,0.811338,0.848349,0.462048,0.0576284,0.137537,0.189483,0.142997,0.535002,0.136734,0.250442,0.711965,0.890466,0.916626,0.963604,0.139209,0.440019,0.218887,0.910143,0.889459,0.303256,0.9217,0.00994235,0.12308,0.836399,0.0590678,0.0176857,0.0716008,0.631639,0.55965,0.705063,0.872107,0.917922,0.694695,0.380704,0.141421,0.338052,0.829257,0.0716542,0.152654,0.34636,0.0156287,0.324123,0.407825,0.297046,0.0851889,0.465888,0.211717,0.608141,0.42544,0.332363,0.511209,0.386915,0.223088,0.409474,0.591088,0.681232,0.615633,0.579023,0.23575,0.281874,0.227985,0.020937,0.906334,0.340755,0.914604,0.918317,0.393659,0.611715,0.35633,0.548759,0.0712893,0.893527,0.994781,0.0771099,0.308215,0.0516509,0.892961,0.501928,0.67613,0.930146,0.177456,0.0469784,0.112006,0.871173,0.67795,0.554019,0.479752,0.185423,0.411529,0.289857,0.993988,0.648499,0.337899,0.180215,0.863565,0.312333,0.449775,0.015402,0.168814,0.215839,0.71811,0.125549,0.162792,0.989251,0.10154,0.418287,0.844843,0.779931,0.232627,0.334907,0.0472684,0.33211,0.496023,0.470871,0.52117,0.92967,0.261866,0.670038,0.621298,0.912122,0.162437,0.256001,0.0487154,0.276116,0.0548048,0.691307,0.705709,0.519764,0.875915,0.868663,0.708267,0.950779,0.239749,0.483273,0.7659,0.843293,0.13983,0.98739,0.59097,0.489992,0.927194,0.275518,0.556901,0.462721,0.837865,0.991593,0.420723,0.961545,0.834362,0.626091,0.182937,0.578615,0.825253,0.413484,0.0483751,0.729018,0.692544,0.0202531,0.763068,0.948061,0.639959,0.060948,0.908479,0.785584,0.708478,0.507131,0.55909,0.980151,0.630754,0.594619,0.585283,0.423034,0.0973174,0.0512142,0.936614,0.503963,0.404502,0.867019,0.889031,0.185956,0.11315,0.550742,0.749801,0.833953,0.877612,0.797989,0.105242,0.885429,0.86143,0.550199,0.448139,0.4029,0.632098,0.635247,0.949857,0.680998,0.251474,0.463473,0.262752,0.490296,0.164434,0.000901163,0.869714,0.244468,0.980077,0.665495,0.383529,0.339363,0.382232,0.931662,0.775933,0.230845,0.914681,0.943881,0.327981,0.948639,0.649819,0.533571,0.570911,0.614161,0.103142,0.657844,0.674088,0.200444,0.840441,0.180805,0.0204331,0.786474,0.562897,0.766284,0.273751,0.428359,0.390041,0.809874,0.327262,0.319703,0.862038,0.865937,0.519438,0.81646,0.892206,0.913256,0.663458,0.939618,0.759632,0.896732,0.705514,0.844917,0.593041,0.874358,0.0543039,0.585468,0.300858,0.191141,0.714943,0.17371,0.278177,0.754876,0.344212,0.814577,0.901819,0.851117,0.0828884,0.948381,0.977864,0.891306,0.486223,0.373824,0.515333,0.11093,0.226445,0.943007,0.51912,0.371266,0.588992,0.000509202,0.565979,0.179223,0.431664,0.740086,0.713829,0.571489,0.249543,0.578958,0.0569937,0.0174154,0.680315,0.0124121,0.216542,0.591683,0.647944,0.795617,0.34569,0.470515,0.534219,0.545846,0.812253,0.323556,0.30002,0.585613,0.302475,0.201812,0.214716,0.185569,0.704507,0.998439,0.72407,0.235108,0.0254384,0.076663,0.615871,0.348764,0.260604,0.457221,0.823079,0.215451,0.654092,0.0814338,0.411741,0.0833753,0.969936,0.00390989,0.429784,0.602483,0.186735,0.265669,0.314877,0.822114,0.396169,0.631909,0.504755,0.38563,0.894133,0.0624459,0.831549,0.82981,0.140952,0.703164,0.198519,0.171266,0.865291,0.55892,0.138522,0.965565,0.774625,0.653576,0.712099,0.950413,0.621259,0.254215,0.406661,0.623252,0.995126,0.151565,0.564517,0.163481,0.381396,0.747088,0.728458,0.780534,0.122859,0.17561,0.151779,0.926144,0.582908,0.44727,0.786868,0.673353,0.336101,0.0945153,0.559246,0.348509,0.0501947,0.583025,0.208046,0.830755,0.907315,0.369709,0.450535,0.00670505,0.499544,0.378915,0.0407031,0.678945,0.346575,0.82671,0.273524,0.831329,0.151256,0.254601,0.61546,0.990836,0.199141,0.498159,0.341592,0.567769,0.956643,0.529804,0.179504,0.942544,0.518065,0.646588,0.268383,0.562336,0.155622,0.271889,0.703367,0.958359,0.0532773,0.186321,0.723344,0.977119,0.482941,0.492359,0.29918,0.332307,0.306872,0.0374427,0.747838,0.496514,0.737303,0.516667,0.665477,0.0553309,0.76573,0.708475,0.422319,0.00177175,0.612838,0.0904411,0.163966,0.823484,0.909818,0.357325,0.441724,0.627879,0.184556,0.608761,0.372203,0.60246,0.03413,0.957419,0.635152,0.436153,0.66967,0.170212,0.362966,0.330082,0.54529,0.33976,0.277758,0.207323,0.36699,0.51162,0.69548,0.852889,0.136164,0.64144,0.234084,0.516353,0.966986,0.442733,0.205534,0.298845,0.068691,0.338265,0.0482067,0.744304,0.441433,0.589503,0.853853,0.45573,0.732898,0.978487,0.0986136,0.000666142,0.379698,0.270137,0.334093,0.528744,0.877405,0.169065,0.796981,0.423857,0.841606,0.463908,0.0415089,0.615727,0.711193,0.0346009,0.690195,0.220949,0.919535,0.727466,0.437962,0.1661,0.279229,0.15339,0.184846,0.895103,0.335003,0.658493,0.0956036,0.691783,0.21381,0.97853,0.398566,0.480149,0.636474,0.354677,0.0623688,0.998601,0.351123,0.321913,0.304012,0.713166,0.457663,0.822843,0.383919,0.782035,0.535572,0.66099,0.0647246,0.0316005,0.340084,0.484567,0.738891,0.974502,0.419863,0.748789,0.491939,0.199595,0.0203503,0.805905,0.0642455,0.923472,0.142672,0.430206,0.732969,0.181133,0.321719,0.723423,0.779928,0.13544,0.840448,0.621459,0.350537,0.459473,0.490041,0.286336,0.206163,0.64341,0.320998,0.0473894,0.0170428,0.952927,0.36695,0.928894,0.564697,0.0101271,0.0590879,0.586197,0.478201,0.416052,0.218148,0.976287,0.706962,0.576209,0.3677,0.888484,0.0660582,0.634321,0.982238,0.957214,0.0495582,0.609416,0.527679,0.0404472,0.215967,0.783696,0.468369,0.60466,0.536912,0.251085,0.0848285,0.913453,0.67946,0.362533,0.709956,0.661149,0.295793,0.947549,0.516779,0.402028,0.956472,0.220071,0.061239,0.212799,0.952896,0.914471,0.390081,0.434757,0.549773,0.95783,0.413102,0.63202,0.174312,0.116315,0.166869,0.496675,0.666311,0.597074,0.687597,0.289278,0.529253,0.934493,0.695592,0.699995,0.68532,0.979593,0.956502,0.359129,0.309515,0.861398,0.608102,0.0656505,0.775693,0.114912,0.335748,0.730513,0.720014,0.19173,|0.729745,0.986222,0.256148,0.943484,0.497234,0.66208,0.701246,0.862011,0.544473,0.231129,0.0123476,0.937216,0.158398,0.156371,0.0947577,0.643062,0.254362,0.770365,0.207049,0.991848,0.320939,0.799976,0.519511,0.791168,0.525861,0.437324,0.0716838,0.562495,0.71065,0.38618,0.828267,0.172727,0.161892,0.98507,0.439625,0.066101,0.585593,0.895148,0.578774,0.40923,0.921216,0.641583,0.0173078,0.274532,0.235618,0.01015,0.429445,0.4587,0.0991521,0.147875,0.210175,0.696913,0.603904,0.576541,0.241979,0.0792896,0.664641,0.405273,0.169106,0.601262,0.455907,0.713622,0.00515258,0.950762,0.720439,0.498513,0.939111,0.550105,0.683689,0.0727866,0.859015,0.173976,0.735978,0.535315,0.442972,0.450881,0.969026,0.496509,0.74181,0.611788,0.513805,0.411111,0.82374,0.676039,0.821024,0.276201,0.316057,0.0383638,0.746101,0.0533866,0.265294,0.926007,0.401485,0.863834,0.0302017,0.633749,0.717257,0.315819,0.186329,0.932794,0.570058,0.328826,0.43401,0.455615,0.957033,0.790292,0.733913,0.319619,0.7613,0.00270706,0.426999,0.367944,0.467082,0.462841,0.666319,0.126917,0.353351,0.159204,0.248358,0.596632,0.905256,0.381266,0.18482,0.475096,0.531852,0.861705,0.929803,0.0782166,0.366084,0.645331,0.0842238,0.385211,0.675395,0.235799,0.187428,0.889569,0.0458471,0.010672,0.54969,0.000927627,0.540068,0.74064,0.148148,0.129386,0.445524,0.911693,0.763258,0.769498,0.528377,0.154601,0.591901,0.595788,0.94777,0.344374,0.502071,0.443241,0.883839,0.472575,0.132595,0.630905,0.117298,0.751084,0.0824319,0.89072,0.814204,0.73935,0.142501,0.582178,0.632674,0.0781164,0.632737,0.197887,0.834283,0.0737531,0.78409,0.302688,0.572545,0.618172,0.534052,0.954204,0.0750352,0.298892,0.693871,0.388922,0.377429,0.0243754,0.144427,0.157486,0.893933,0.589591,0.31513,0.338488,0.509515,0.326686,0.704938,0.844979,0.821814,0.306353,0.330777,0.63021,0.549177,0.968077,0.770205,0.509355,0.0351998,0.0753019,0.0119695,0.106527,0.714034,0.657396,0.0790859,0.0925249,0.561263,0.499952,0.810583,0.250021,0.579068,0.034389,0.814734,0.67931,0.289816,0.448691,0.305703,0.0374653,0.758893,0.199156,0.673997,0.708551,0.967932,0.316649,0.51511,0.671532,0.097375,0.257644,0.577913,0.138877,0.806845,0.24412,0.770867,0.103591,0.614124,0.699055,0.369421,0.888782,0.779374,0.0821065,0.64519,0.685764,0.302105,0.489409,0.5626,0.886995,0.0163254,0.565869,0.357122,0.829762,0.407779,0.38063,0.833808,0.104217,0.142617,0.154843,0.421867,0.373356,0.980688,0.757143,0.323113,0.320297,0.87703,0.790547,0.464254,0.532297,0.40625,0.0024026,0.997664,0.651936,0.778858,0.682769,0.911801,0.478064,0.334678,0.909196,0.342763,0.626443,0.0961678,0.7482,0.039057,0.850268,0.0304381,0.203079,0.551797,0.137752,0.495659,0.547277,0.384332,0.211079,0.00164515,0.987699,0.942618,0.673593,0.427599,0.154774,0.460617,0.10772,0.407022,0.0944865,0.821376,0.377418,0.46301,0.621846,0.114896,0.254554,0.544755,0.418451,0.923796,0.21082,0.672461,0.800438,0.772777,0.592919,0.80294,0.665437,0.959127,0.0484192,0.880334,0.313052,0.117246,0.371568,0.649903,0.136203,0.67802,0.369116,0.739459,0.92426,0.0145547,0.412465,0.883474,0.475202,0.733787,0.955652,0.910372,0.782837,0.663243,0.61066,0.346441,0.856135,0.475486,0.0459505,0.365103,0.241059,0.65509,0.90135,0.148768,0.47786,0.397891,0.289693,0.351469,0.542993,0.021436,0.765521,0.224457,0.0771367,0.232993,0.329692,0.41524,0.537926,0.81189,0.880556,0.365836,0.740925,0.291932,0.933544,0.333682,0.214149,0.43534,0.237264,0.553431,0.736064,0.326683,0.455544,0.332293,0.897451,0.923865,0.291307,0.419101,0.111395,0.945874,0.394031,0.3374,0.227351,0.66365,0.0884898,0.278539,0.352605,0.629959,0.79644,0.787863,0.935523,0.78413,0.331823,0.822679,0.35219,0.13268,0.563425,0.150589,0.019426,0.856838,0.63137,0.518752,0.465152,0.802806,0.714498,0.902151,0.970581,0.553259,0.0350659,0.838463,0.849944,0.404909,0.214124,0.332907,0.605603,0.704997,0.0631098,0.412162,0.644328,0.737048,0.154317,0.101313,0.666958,0.610472,0.630577,0.450609,0.570022,0.363418,0.320312,0.945639,0.60002,0.0129082,0.592084,0.481536,0.818581,0.688675,0.403015,0.464163,0.14693,0.332484,0.488299,0.758289,0.254264,0.65668,0.380448,0.764553,0.631297,0.302482,0.964021,0.194662,0.0436808,0.988069,0.210055,0.556307,0.728038,0.804826,0.425188,0.529248,0.46528,0.896909,0.184357,0.495613,0.545044,0.455564,0.026406,0.48155,0.395909,0.00241518,0.679935,0.698532,0.932759,0.192333,0.977977,0.980098,0.966782,0.603523,0.324373,0.155804,0.326532,0.434856,0.77847,0.21647,0.659285,0.496619,0.589185,0.501784,0.853663,0.453196,0.812835,0.739492,0.359349,0.318303,0.508352,0.0963736,0.413979,0.00477743,0.4694,0.744131,0.798648,0.0999779,0.578024,0.892511,0.375996,0.931409,0.669906,0.120366,0.940486,0.139264,0.267857,0.992844,0.00486851,0.746815,0.915266,0.875885,0.874467,0.563682,0.717042,0.170636,0.020807,0.714311,0.455972,0.622179,0.127671,0.0545073,0.198761,0.253245,0.595991,0.770653,0.384211,0.463131,0.598247,0.799348,0.834709,0.231409,0.403939,0.637013,0.827998,0.400231,0.00901121,0.812864,0.846402,0.115408,0.82633,0.561327,0.147252,0.675117,0.358758,0.500653,0.150404,0.285773,0.94868,0.716215,0.351681,0.553562,0.337113,0.802615,0.514726,0.872347,0.10794,0.271492,0.573855,0.238313,0.504914,0.459299,0.76908,0.772683,0.556852,0.317104,0.192965,0.994507,0.266656,0.317063,0.172964,0.558841,0.249027,0.945513,0.0869659,0.496501,0.515993,0.375309,0.952042,0.910835,0.290087,0.817759,0.965592,0.392817,0.591778,0.57868,0.0442281,0.959522,0.23024,0.810881,0.162639,0.326258,0.106221,0.254831,0.960005,0.0506233,0.149573,0.690667,0.907947,0.698759,0.503087,0.282556,0.342263,0.13388,0.44859,0.500534,0.329823,0.0787848,0.477588,0.870181,0.640519,0.357539,0.870457,0.321664,0.463656,0.540352,0.138049,0.34929,0.790243,0.334656,0.655595,0.716417,0.282558,0.0233722,0.834654,0.899347,0.594828,0.285493,0.412463,0.903768,0.965254,0.579219,0.861974,0.544197,0.230298,0.305593,0.315459,0.923724,0.351745,0.936834,0.370836,0.328514,0.345154,0.760423,0.782524,0.706842,0.563873,0.85323,0.641912,0.917959,0.670153,0.529827,0.171629,0.625135,0.858625,0.97988,0.652949,0.876446,0.241835,0.397985,0.721496,0.408892,0.603012,0.792469,0.872547,0.964944,0.931125,0.680438,0.133696,0.220197,0.248919,0.890352,0.0965779,0.287993,0.707009,0.311731,0.0848156,0.634397,0.772761,0.0285237,0.948332,0.488217,0.0689325,0.149155,0.364927,0.0183063,0.0141156,0.335785,0.410204,0.297189,0.0156323,0.525499,0.24312,0.982551,0.904371,0.601922,0.0151803,0.0169274,0.988017,0.816185,0.789091,0.814659,0.203203,0.274255,0.285649,0.525103,0.336625,0.329765,0.0603878,0.57316,0.121337,0.188625,0.712938,0.821811,0.34419,0.33824,0.246153,0.28466,0.777781,0.965838,0.618905,0.54091,0.638249,0.197285,0.882582,0.402575,0.949835,0.296832,0.737774,0.186481,0.223387,0.29203,0.0905448,0.740501,0.230586,0.250258,0.038922,0.03648,0.671174,0.908253,0.331718,0.0854713,0.865749,0.63592,0.4314,0.801873,0.31717,0.366963,0.714539,0.600991,0.418515,0.973687,0.361462,0.844518,0.957558,0.47219,0.687577,0.576086,0.394256,0.732536,0.354109,0.86522,0.736684,0.625797,0.683457,0.877847,0.655914,0.614094,0.0830222,0.670533,0.659336,0.390579,0.306642,0.578921,0.820083,0.135109,0.113944,0.215204,0.474165,0.387142,0.15866,0.433776,0.398165,0.0872532,0.982646,0.758947,0.334885,0.138289,0.81143,0.197191,0.112123,0.846183,0.951323,0.192462,0.728651,0.435046,0.992382,0.194209,0.516171,0.925238,0.659887,0.466462,0.803979,0.405359,0.789036,0.855674,0.441248,0.585415,0.344016,0.993492,0.045765,0.0888578,0.764553,0.948401,0.415139,0.681696,0.652789,0.963971,0.561466,0.519417,0.297098,0.0213323,0.373107,0.0696995,0.828024,0.232447,0.480395,0.899395,0.1616,0.273044,0.572961,0.123712,0.257004,0.773349,0.574346,0.464228,0.179743,0.0206447,0.746494,0.225374,0.0856224,0.160564,0.054454,0.981571,0.679649,0.34909,0.86023,0.340552,0.394804,0.804918,0.211109,0.95384,0.339915,0.889661,0.990916,0.61963,0.678904,0.239643,0.338296,0.627185,0.77181,0.874914,0.209025,0.611045,0.0683684,0.477767,0.148168,0.106025,0.53591,0.0361194,0.361378,0.712084,0.0595838,0.0904083,0.728395,0.313984,0.731022,0.764205,0.503701,0.138712,0.942832,0.0884709,0.978802,0.116877,0.280171,0.380678,0.896671,0.682375,0.909696,0.755961,0.922579,0.906804,0.341985,0.0475954,0.696984,0.872601,0.575007,0.779025,0.255162,0.0445022,0.054327,0.846513,0.617815,0.446785,0.123174,0.0119749,0.165205,0.249758,0.00467086,0.972582,0.124792,0.738557,0.569046,0.284527,0.589207,0.292999,0.51848,0.361177,0.405244,0.305271,0.798839,0.245063,0.324628,0.79118,0.369871,0.992618,0.987963,0.298623,0.575612,0.658766,0.663496,0.111137,0.356352,0.194611,0.693611,0.422856,0.876556,0.466521,0.120492,0.0326935,0.318445,0.479692,0.707245,0.695664,0.484572,0.921642,0.298592,0.222685,0.961936,0.00264472,0.0697892,0.533014,0.211388,0.182978,0.392589,0.186302,0.243954,0.806953,0.588028,0.431701,0.95258,0.962721,0.51688,0.435261,0.3799,0.0184911,0.34707,0.129735,0.748479,0.785453,0.192926,0.461697,0.0490583,0.287595,0.393051,0.560912,0.575172,0.811279,0.465318,0.378924,0.416585,0.763794,0.862029,0.761833,0.103104,0.673631,0.469394,0.929512,0.0344015,0.339934,0.123641,|0.888475,0.717509,0.772271,0.871762,0.943494,0.774203,0.323889,0.85057,0.165514,0.391149,0.656163,0.0208218,0.0959421,0.59238,0.0442227,0.274997,0.0027582,0.612567,0.674368,0.647944,0.157964,0.586513,0.681179,0.918882,0.537808,0.612095,0.840954,0.752223,0.299051,0.484523,0.307059,0.472792,0.108486,0.76743,0.0955945,0.979156,0.760164,0.942451,0.584303,0.853893,0.125645,0.822457,0.466933,0.499146,0.431089,0.690144,0.612971,0.480916,0.0842413,0.622058,0.168233,0.598754,0.807118,0.531981,0.81236,0.841381,0.620095,0.784373,0.385693,0.688888,0.549946,0.080488,0.260944,0.138599,0.876007,0.398341,0.598388,0.83151,0.945925,0.264644,0.409074,0.676968,0.313945,0.568991,0.16975,0.392823,0.931767,0.564773,0.991039,0.483571,0.679803,0.292747,0.670119,0.783762,0.601896,0.483053,0.169095,0.7014,0.238007,0.991472,0.578551,0.573386,0.92761,0.830105,0.892223,0.582569,0.993132,0.0696134,0.044218,0.0862846,0.866315,0.170155,0.785589,0.771204,0.0504012,0.390486,0.329451,0.280215,0.652222,0.555866,0.640442,0.337052,0.841458,0.151249,0.193207,0.225204,0.598551,0.404973,0.509974,0.895599,0.0713474,0.263829,0.264953,0.245362,0.544002,0.55228,0.640159,0.822898,0.099048,0.458471,0.816684,0.596349,0.684177,0.273839,0.636419,0.0591819,0.233162,0.607426,0.328486,0.969807,0.0303333,0.345923,0.963033,0.789702,0.716049,0.617053,0.373068,0.0424052,0.928039,0.108129,0.278732,0.985003,0.299185,0.127321,0.431177,0.867251,0.905538,0.737264,0.761624,0.421426,0.250942,0.173301,0.960589,0.689498,0.757835,0.194303,0.737342,0.86847,0.429828,0.495211,0.92416,0.095495,0.511743,0.431874,0.764989,0.242563,0.0819809,0.164022,0.348677,0.526033,0.162445,0.0517997,0.596524,0.898655,0.871534,0.492113,0.246335,0.845281,0.530869,0.442855,0.289997,0.690526,0.931727,0.839243,0.0385121,0.647449,0.859505,0.469042,0.992954,0.954363,0.559745,0.190655,0.731901,0.149592,0.537264,0.247233,0.556297,0.83289,0.916193,0.0350496,0.551994,0.55525,0.723008,0.158395,0.734522,0.378673,0.870738,0.218668,0.483589,0.228475,0.168112,0.941555,0.178123,0.807144,0.441297,0.340564,0.559705,0.0919033,0.527625,0.188305,0.731855,0.664373,0.937631,0.764858,0.219864,0.9866,0.0589814,0.780251,0.600006,0.475831,0.883645,0.988876,0.954014,0.81742,0.367051,0.00671154,0.0809814,0.100447,0.474685,0.549497,0.156747,0.538584,0.898429,0.916898,0.0869865,0.695911,0.093193,0.346589,0.763133,0.996884,0.803751,0.949093,0.814577,0.645304,0.405851,0.194349,0.401864,0.811011,0.796367,0.747722,0.639839,0.0492923,0.115761,0.35189,0.980404,0.132193,0.320802,0.114886,0.47324,0.243833,0.482931,0.177278,0.9129,0.129556,0.46153,0.856403,0.690686,0.357034,0.868832,0.159851,0.435716,0.189277,0.85382,0.725718,0.00478715,0.230486,0.685895,0.406791,0.691399,0.23396,0.4387,0.87793,0.959647,0.00189453,0.173864,0.518578,0.752878,0.243988,0.188104,0.640433,0.15555,0.265414,0.635555,0.850266,0.529214,0.894078,0.656928,0.652887,0.965128,0.694864,0.761545,0.854472,0.0139199,0.0126117,0.0297361,0.207043,0.16578,0.93609,0.854148,0.512436,0.788088,0.74915,0.714007,0.755316,0.915137,0.0344055,0.788243,0.14888,0.739727,0.0704727,0.387684,0.328059,0.970149,0.353468,0.85894,0.0884631,0.97463,0.250896,0.182846,0.00266862,0.103004,0.681814,0.766156,0.755733,0.586091,0.299431,0.184776,0.506151,0.609178,0.68707,0.895589,0.239097,0.857321,0.445201,0.679814,0.736106,0.44067,0.589212,0.569086,0.819248,0.930043,0.782805,0.881227,0.562428,0.749573,0.12856,0.713099,0.342083,0.863216,0.197882,0.873688,0.154729,0.311273,0.261738,0.261495,0.730359,0.933052,0.826669,0.954408,0.625035,0.303905,0.590608,0.801012,0.178843,0.365182,0.474357,0.544403,0.679045,0.279975,0.64798,0.0964894,0.475783,0.225028,0.00795239,0.238125,0.583468,0.606281,0.820781,0.653156,0.583087,0.526019,0.634541,0.86031,0.0784081,0.997966,0.718197,0.628413,0.10825,0.0870327,0.561143,0.414151,0.867393,0.19899,0.544881,0.624871,0.438092,0.145996,0.933971,0.461355,0.0481767,0.0418069,0.0821002,0.909524,0.0635794,0.774238,0.254048,0.52217,0.572124,0.098402,0.0391129,0.339115,0.670365,0.599352,0.211305,0.299051,0.405909,0.632263,0.530939,0.259912,0.184895,0.079813,0.20252,0.231447,0.471368,0.774153,0.559473,0.233866,0.725906,0.554251,0.362987,0.824537,0.466193,0.40027,0.0952625,0.72628,0.891674,0.24986,0.231993,0.263847,0.173174,0.704026,0.284685,0.989319,0.427869,0.236564,0.0854731,0.00567967,0.308904,0.153008,0.0818761,0.212659,0.657597,0.459175,0.199372,0.303897,0.150937,0.681354,0.968016,0.691396,0.676447,0.597184,0.632932,0.468109,0.506784,0.705668,0.689153,0.137276,0.83235,0.562569,0.755299,0.0493069,0.294174,0.185837,0.70911,0.238224,0.856109,0.468782,0.398977,0.862911,0.201422,0.25723,0.00022763,0.819328,0.20523,0.290762,0.760511,0.789028,0.0561479,0.464422,0.643817,0.661172,0.414962,0.519137,0.638549,0.660079,0.625682,0.832031,0.34798,0.955796,0.355004,0.544155,0.661338,0.836415,0.669399,0.475908,0.571534,0.181674,0.65834,0.105154,0.465599,0.874834,0.484269,0.866208,0.462222,0.748396,0.549495,0.06062,0.765218,0.706022,0.964232,0.416743,0.232242,0.143427,0.858708,0.266342,0.671256,0.999018,0.287452,0.96038,0.567388,0.181483,0.779328,0.295314,0.486279,0.713582,0.946808,0.976978,0.456312,0.702565,0.921141,0.643765,0.430143,0.71006,0.660942,0.532803,0.667005,0.59373,0.916016,0.259455,0.974273,0.400123,0.482642,0.54789,0.5878,0.310277,0.312977,0.962065,0.00191694,0.0799412,0.0958213,0.953361,0.358403,0.220475,0.467109,0.259025,0.973856,0.364172,0.704573,0.110483,0.620893,0.42991,0.815276,0.94554,0.588992,0.114067,0.924117,0.394223,0.804796,0.523743,0.835155,0.598723,0.360855,0.0368201,0.897743,0.0433322,0.0757309,0.315881,0.974112,0.471482,0.301682,0.464877,0.579027,0.294172,0.0949719,0.434911,0.574642,0.453743,0.153247,0.25104,0.0249254,0.925469,0.680634,0.327593,0.0203435,0.958768,0.691979,0.475204,0.381779,0.61364,0.463093,0.303729,0.141916,0.226502,0.598772,0.450774,0.506815,0.855601,0.64649,0.936539,0.389257,0.339061,0.725475,0.980406,0.44728,0.408182,0.19962,0.417951,0.277818,0.205035,0.711129,0.939336,0.745794,0.992044,0.365312,0.509653,0.536925,0.267979,0.73197,0.892039,0.836157,0.278681,0.540186,0.422171,0.642333,0.0833095,0.151009,0.188149,0.48221,0.909591,0.85287,0.854874,0.450322,0.365847,0.826265,0.0802409,0.749281,0.486666,0.515643,0.112384,0.548093,0.942972,0.386892,0.622113,0.378724,0.461282,0.288092,0.535328,0.87647,0.54703,0.527313,0.96847,0.688996,0.537872,0.829307,0.850843,0.933138,0.361766,0.754307,0.0145446,0.201728,0.693182,0.325279,0.841336,0.706978,0.843151,0.509371,0.669423,0.932153,0.326911,0.40604,0.817452,0.0430414,0.979502,0.544256,0.0976557,0.153722,0.104681,0.021917,0.303307,0.531747,0.199586,0.578064,0.864868,0.325664,0.508066,0.412202,0.43412,0.435298,0.785449,0.691702,0.242537,0.464933,0.831303,0.176724,0.917923,0.0547446,0.495984,0.677727,0.715627,0.870735,0.568456,0.538679,0.236452,0.0325305,0.111065,0.694858,0.822025,0.666934,0.058834,0.979287,0.671609,0.0145692,0.448798,0.964743,0.905537,0.771857,0.953629,0.0813918,0.787077,0.89126,0.0322102,0.104805,0.355269,0.353264,0.812407,0.251129,0.345117,0.778442,0.742976,0.735444,0.982619,0.00224012,0.057137,0.331319,0.804674,0.116159,0.793562,0.393832,0.598872,0.850245,0.186001,0.795758,0.286026,0.799357,0.249197,0.514659,0.269221,0.358047,0.850376,0.935707,0.37188,0.0608958,0.856315,0.694445,0.658772,0.0513718,0.552557,0.479258,0.77361,0.895923,0.941215,0.480149,0.101556,0.023524,0.876989,0.207158,0.966742,0.604689,0.438335,0.758177,0.504122,0.579646,0.29774,0.99547,0.381192,0.40883,0.0168461,0.885893,0.297009,0.646425,0.555,0.9472,0.561829,0.496372,0.306581,0.649479,0.771912,0.100088,0.502755,0.627409,0.0550549,0.512663,0.114888,0.122978,0.668884,0.327778,0.00387919,0.904105,0.370533,0.164768,0.125323,0.173083,0.49375,0.468469,0.5973,0.0329993,0.834073,0.264801,0.559152,0.560125,0.724306,0.170491,0.16543,0.505132,0.635483,0.0656455,0.428976,0.720184,0.369402,0.139194,0.651856,0.196717,0.798911,0.318631,0.437901,0.233826,0.430419,0.436025,0.888023,0.563999,0.172094,0.16511,0.124645,0.118527,0.500126,0.829748,0.624775,0.603766,0.75303,0.701965,0.479075,0.623424,0.751901,0.243046,0.150224,0.265928,0.294639,0.860343,0.768779,0.474292,0.670878,0.0427045,0.875721,0.685706,0.358795,0.0412246,0.534079,0.641259,0.0355943,0.610079,0.122894,0.500684,0.912175,0.733422,0.962185,0.310669,0.0168797,0.283343,0.252867,0.804798,0.921284,0.398195,0.325913,0.575815,0.909609,0.917838,0.666126,0.623033,0.583583,0.649769,0.868515,0.0862885,0.961635,0.873961,0.957165,0.540568,0.319955,0.787822,0.586608,0.88196,0.424141,0.430071,0.524427,0.344357,0.0330973,0.435791,0.0210869,0.113978,0.556939,0.290849,0.0295407,0.126097,0.687183,0.137254,0.265061,0.18986,0.886421,0.113792,0.671524,0.693884,0.329525,0.615279,0.241845,0.52738,0.738082,0.315258,0.00906056,0.945563,0.503586,0.298798,0.241924,0.866615,0.17433,0.950461,0.900649,0.994882,0.0428888,0.423893,0.69021,0.435886,0.317858,0.731267,0.840881,0.106474,0.761345,0.0552969,0.105356,0.651411,0.557262,0.322508,0.312388,0.464694,0.545678,0.202279,0.458672,0.758664,0.759221,0.187822,0.681808,0.133481,|0.53582,0.46643,0.693043,0.0103518,0.808535,0.239415,0.236571,0.995219,0.10694,0.442246,0.707456,0.440452,0.95734,0.808569,0.613114,0.642202,0.195981,0.0419086,0.447717,0.176955,0.190653,0.787463,0.247577,0.607106,0.472353,0.824356,0.768722,0.464319,0.241732,0.149899,0.834308,0.441639,0.563176,0.106984,0.194108,0.0267442,0.940843,0.794346,0.478154,0.206978,0.685967,0.180276,0.174897,0.91367,0.487227,0.606497,0.396567,0.050675,0.235712,0.593385,0.205611,0.128435,0.460061,0.525773,0.935953,0.875191,0.852102,0.122654,0.884485,0.566696,0.789122,0.380461,0.80449,0.863511,0.433141,0.41751,0.846777,0.219471,0.697901,0.115058,0.567204,0.554575,0.721819,0.696737,0.462454,0.585604,0.0255916,0.544966,0.30026,0.424289,0.0928416,0.952913,0.414431,0.395475,0.709058,0.506386,0.636247,0.188963,0.239717,0.478077,0.245835,0.613306,0.25544,0.698104,0.634038,0.864195,0.934458,0.469583,0.247503,0.850634,0.539352,0.909499,0.820623,0.643148,0.241315,0.277589,0.0998337,0.537947,0.272363,0.38504,0.259514,0.762253,0.597508,0.303376,0.358166,0.792791,0.25037,0.847547,0.48501,0.979578,0.466483,0.309396,0.653257,0.801383,0.886662,0.9563,0.915137,0.000632465,0.0162749,0.166795,0.977172,0.518751,0.622849,0.406276,0.484813,0.107916,0.118387,0.11972,0.839708,0.363585,0.953283,0.570121,0.929262,0.653227,0.0608121,0.203014,0.0753261,0.390159,0.407269,0.79695,0.0316702,0.952725,0.453726,0.579222,0.94095,0.226874,0.536581,0.343137,0.242264,0.584388,0.0517291,0.933355,0.296844,0.00103605,0.544497,0.972862,0.863724,0.607148,0.51267,0.440815,0.491747,0.735584,0.689415,0.91616,0.421879,0.972309,0.257115,0.532749,0.730259,0.441111,0.130248,0.69874,0.943,0.628039,0.398834,0.855501,0.197928,0.254532,0.868868,0.7693,0.682679,0.285206,0.995945,0.550385,0.345614,0.266021,0.378092,0.00103492,0.279824,0.188308,0.884425,0.522183,0.330001,0.826086,0.159739,0.0518804,0.68572,0.244679,0.236059,0.192886,0.29568,0.217874,0.132844,0.974206,0.110021,0.225647,0.0204194,0.86971,0.961089,0.0466006,0.868907,0.986159,0.975582,0.331385,0.319374,0.311664,0.620413,0.575087,0.870602,0.132995,0.937227,0.376016,0.982613,0.253281,0.468311,0.72434,0.0876149,0.500386,0.362075,0.250319,0.911024,0.88554,0.437573,0.986036,0.189071,0.167868,0.382636,0.55656,0.154024,0.561943,0.521324,0.582449,0.479474,0.564581,0.58346,0.413737,0.0903371,0.18727,0.822626,0.364008,0.604915,0.496476,0.919935,0.128104,0.514971,0.756553,0.554803,0.973293,0.0424358,0.337763,0.0604147,0.0892992,0.522463,0.146321,0.0205904,0.499197,0.934231,0.701079,0.819229,0.465955,0.267233,0.377744,0.0370986,0.480724,0.758582,0.190137,0.682483,0.83085,0.0894596,0.123912,0.729175,0.137758,0.573749,0.0772529,0.0202591,0.129001,0.00255489,0.299904,0.332979,0.87971,0.152189,0.429114,0.197654,0.117883,0.941015,0.230184,0.429082,0.77059,0.817725,0.698803,0.973809,0.557154,0.160896,0.751405,0.916991,0.686369,0.380749,0.664002,0.0609948,0.886337,0.107564,0.340441,0.739783,0.856659,0.757175,0.511481,0.941808,0.547494,0.442375,0.193561,0.230034,0.0909856,0.062747,0.508421,0.593815,0.298398,0.385779,0.525954,0.478889,0.660578,0.483128,0.168092,0.546736,0.21439,0.611532,0.123427,0.417218,0.523623,0.51546,0.162615,0.111175,0.0282375,0.962466,0.462582,0.528648,0.74738,0.994193,0.813958,0.971468,0.742634,0.113963,0.44881,0.320172,0.107233,0.467647,0.81645,0.887446,0.306565,0.436643,0.971367,0.76289,0.276188,0.644642,0.909074,0.612226,0.00124419,0.567547,0.117781,0.861968,0.676665,0.806333,0.0800778,0.861924,0.184963,0.890831,0.355608,0.654974,0.0273032,0.450221,0.519565,0.520286,0.659418,0.228254,0.357598,0.167031,0.229569,0.100355,0.64008,0.645195,0.681626,0.683033,0.553525,0.569286,0.847775,0.598168,0.549145,0.0483442,0.835925,0.826112,0.740325,0.059312,0.368867,0.103066,0.625457,0.761692,0.252465,0.51328,0.606695,0.323059,0.475952,0.509136,0.61223,0.00406343,0.825875,0.545912,0.131074,0.373025,0.1444,0.445019,0.321089,0.980825,0.773766,0.183667,0.816754,0.281839,0.0380415,0.454921,0.251812,0.590441,0.304755,0.692153,0.509335,0.332244,0.634367,0.655277,0.500699,0.00546652,0.792279,0.185895,0.920544,0.736842,0.744374,0.114832,0.68877,0.782386,0.911309,0.664348,0.608134,0.401371,0.762207,0.243654,0.585497,0.562766,0.120369,0.840696,0.814196,0.923815,0.170621,0.665498,0.733791,0.539156,0.0264905,0.00812328,0.573687,0.0544262,0.459509,0.982836,0.136198,0.781031,0.162459,0.174921,0.679594,0.0514136,0.377639,0.910351,0.157016,0.805353,0.32106,0.862317,0.203026,0.55645,0.780917,0.381404,0.459103,0.331398,0.156224,0.0589221,0.635305,0.717812,0.642685,0.555305,0.753383,0.685506,0.0687239,0.453737,0.691973,0.774298,0.898226,0.807062,0.935863,0.83884,0.774669,0.23343,0.369456,0.293003,0.797111,0.986466,0.104768,0.644884,0.61837,0.360212,0.227405,0.352378,0.104635,0.338347,0.129924,0.423769,0.777501,0.609297,0.669622,0.986299,0.708461,0.782236,0.583607,0.830022,0.24692,0.950309,0.628643,0.97174,0.903964,0.14418,0.898009,0.716834,0.70621,0.80794,0.522229,0.113718,0.173332,0.982587,0.0449995,0.0273671,0.676171,0.0645756,0.358727,0.0122222,0.588783,0.569569,0.693002,0.296099,0.615466,0.428995,0.409463,0.284802,0.289066,0.847519,0.149472,0.737551,0.270419,0.950419,0.795507,0.466096,0.901692,0.969271,0.763545,0.994982,0.552747,0.3728,0.289583,0.646122,0.0401913,0.212222,0.344558,0.556767,0.0157326,0.960984,0.635228,0.251376,0.913466,0.194495,0.840578,0.717763,0.969572,0.805233,0.817517,0.419446,0.957181,0.502007,0.485151,0.790402,0.0086661,0.762119,0.816322,0.515338,0.747377,0.236385,0.154174,0.126222,0.919856,0.69362,0.170091,0.294419,0.016982,0.590752,0.688178,0.869653,0.352706,0.825974,0.05836,0.275685,0.540535,0.278083,0.785194,0.334327,0.606309,0.457737,0.828705,0.0537857,0.316296,0.615151,0.299175,0.850079,0.317247,0.64263,0.81325,0.0959412,0.733273,0.251738,0.285412,0.641523,0.881215,0.258138,0.312973,0.652308,0.239167,0.751983,0.433826,0.266841,0.478934,0.112372,0.51763,0.345703,0.7748,0.338016,0.602861,0.550011,0.0149582,0.142594,0.812762,0.455915,0.132539,0.562502,0.756849,0.910301,0.0628854,0.494227,0.730141,0.696952,0.564848,0.368306,0.978019,0.0809109,0.219168,0.818747,0.63765,0.327592,0.768142,0.930955,0.259794,0.569209,0.496668,0.668686,0.44989,0.739922,0.342786,0.342092,0.784327,0.505408,0.998656,0.380792,0.598128,0.252536,0.220087,0.783901,0.00683486,0.158666,0.427319,0.803079,0.263276,0.841225,0.121113,0.00757849,0.111721,0.765209,0.301067,0.739053,0.379305,0.246685,0.83966,0.372122,0.925465,0.739956,0.757213,0.641698,0.926065,0.544123,0.764363,0.0223334,0.389531,0.728694,0.585247,0.783224,0.198041,0.647793,0.131427,0.00981158,0.607272,0.547226,0.173251,0.96531,0.949952,0.754104,0.486287,0.569551,0.669902,0.968555,0.572308,0.512471,0.295518,0.00461781,0.202852,0.0510564,0.350707,0.0897323,0.158162,0.240016,0.426329,0.106828,0.16962,0.629049,0.381222,0.147998,0.944052,0.367458,0.33912,0.625877,0.771123,0.760538,0.983254,0.160035,0.464397,0.664225,0.540828,0.919406,0.270207,0.46825,0.579362,0.890709,0.26806,0.522667,0.159483,0.136441,0.881723,0.443244,0.421873,0.0822186,0.67439,0.249214,0.431706,0.121256,0.476595,0.162103,0.396976,0.783612,0.351159,0.661876,0.385933,0.0980839,0.232147,0.544662,0.175546,0.150836,0.449992,0.989819,0.305028,0.584825,0.400944,0.723508,0.506467,0.844026,0.183,0.832839,0.588793,0.592277,0.469962,0.604338,0.368148,0.1318,0.289694,0.901971,0.0293529,0.967659,0.849206,0.862318,0.794596,0.168125,0.647008,0.955766,0.382527,0.465744,0.935494,0.817272,0.880341,0.588356,0.560813,0.470459,0.286955,0.303381,0.461738,0.88897,0.555487,0.636681,0.464408,0.90935,0.805288,0.411338,0.924551,0.906862,0.22682,0.637876,0.962967,0.0884061,0.252622,0.707401,0.639605,0.151693,0.0925674,0.845746,0.796242,0.492214,0.137777,0.818564,0.119771,0.227033,0.372084,0.358053,0.678896,0.768728,0.0391311,0.930774,0.282235,0.285375,0.53395,0.326612,0.112808,0.173882,0.267881,0.52131,0.185255,0.54111,0.193753,0.900498,0.133363,0.227471,0.286441,0.578917,0.458233,0.324256,0.944101,0.147773,0.764678,0.997934,0.953447,0.413493,0.346767,0.290502,0.33497,0.568628,0.0723293,0.844442,0.43669,0.457199,0.892816,0.820942,0.308651,0.68645,0.846664,0.654767,0.274082,0.245449,0.483985,0.612164,0.60733,0.774044,0.992688,0.0363173,0.404351,0.330243,0.25337,0.890014,0.818642,0.802029,0.791471,0.763787,0.708758,0.953976,0.68256,0.890887,0.0375059,0.695038,0.354153,0.719895,0.988464,0.0972164,0.397488,0.410332,0.360164,0.421115,0.474107,0.33417,0.936582,0.119533,0.494372,0.215233,0.968254,0.89846,0.393365,0.224451,0.583171,0.38452,0.677974,0.0491214,0.332136,0.837074,0.468802,0.796017,0.760499,0.549648,0.151492,0.736709,0.0452967,0.685291,0.944789,0.561432,0.157366,0.846474,0.525502,0.850532,0.600683,0.662756,0.348692,0.553561,0.243893,0.211754,0.371396,0.844962,0.777902,0.767034,0.331365,0.585945,0.585886,0.712481,0.745087,0.829211,0.452785,0.237953,0.0396635,0.704722,0.261862,0.974209,0.577919,0.0793543,0.720817,0.696089,0.4605,0.0387338,0.0135119,0.653806,0.500315,0.108644,0.069164,0.942817,0.531014,0.134285,0.372609,0.0129665,0.92223,0.0266248,0.257929,0.825163,0.0278635,|0.952011,0.0757118,0.582483,0.328098,0.319902,0.975524,0.591235,0.452914,0.59659,0.535961,0.861318,0.60466,0.298869,0.615721,0.280439,0.551628,0.275726,0.808333,0.681878,0.358251,0.0418659,0.998701,0.844574,0.48191,0.311795,0.732933,0.960398,0.963169,0.367664,0.782444,0.141936,0.781126,0.221997,0.483758,0.385858,0.0800849,0.273308,0.598687,0.97753,0.794112,0.191782,0.607466,0.124624,0.590267,0.415786,0.28543,0.65648,0.381758,0.431508,0.657493,0.93145,0.0613638,0.384816,0.814717,0.390054,0.13568,0.637402,0.743127,0.193024,0.867679,0.771198,0.470056,0.526019,0.949434,0.235816,0.467479,0.718791,0.73691,0.629586,0.230545,0.677325,0.930495,0.375514,0.338331,0.362518,0.5248,0.802452,0.474079,0.304905,0.353072,0.962215,0.131408,0.230079,0.0344566,0.788857,0.600586,0.174958,0.625998,0.548648,0.12108,0.729945,0.880108,0.340238,0.81177,0.329514,0.372632,0.0671983,0.930047,0.562102,0.630539,0.830038,0.800523,0.419764,0.304518,0.471744,0.508417,0.767663,0.284401,0.398464,0.925572,0.107054,0.495495,0.723787,0.408873,0.083182,0.283732,0.811804,0.319389,0.405648,0.092418,0.149027,0.577113,0.571446,0.243727,0.278406,0.656391,0.0915394,0.249545,0.140076,0.760047,0.988043,0.387885,0.184298,0.486942,0.0624282,0.404945,0.896395,0.595125,0.42488,0.38976,0.0528067,0.681447,0.827987,0.6368,0.808897,0.448784,0.233673,0.674091,0.438239,0.173136,0.610599,0.172856,0.521327,0.841533,0.578306,0.217651,0.963817,0.384711,0.901558,0.00622278,0.449076,0.6136,0.623974,0.578137,0.732363,0.121816,0.378044,0.178151,0.228574,0.0794967,0.130685,0.00632584,0.302926,0.126073,0.472828,0.210069,0.318244,0.435506,0.0617819,0.250668,0.862929,0.320715,0.101204,0.046263,0.84285,0.879939,0.972334,0.782233,0.187234,0.706096,0.767753,0.0341654,0.592029,0.624093,0.214017,0.922874,0.867997,0.543945,0.597279,0.851258,0.192905,0.980899,0.562315,0.563913,0.739924,0.968951,0.49142,0.024339,0.811433,0.0666181,0.290756,0.514155,0.14875,0.863613,0.450904,0.352721,0.0619823,0.560679,0.0659527,0.553334,0.20338,0.933134,0.468344,0.636312,0.480133,0.214053,0.418192,0.0908386,0.148733,0.330862,0.270908,0.0919296,0.208264,0.751831,0.163104,0.580373,0.975541,0.424605,0.091862,0.376863,0.288671,0.701868,0.750939,0.841273,0.509175,0.330108,0.655781,0.149105,0.658848,0.367251,0.0908743,0.0132435,0.559874,0.547368,0.404031,0.0154068,0.476326,0.717562,0.986056,0.995201,0.340177,0.0580969,0.458485,0.00279802,0.593814,0.430841,0.136682,0.708016,0.285586,0.0509673,0.970033,0.729422,0.970562,0.545225,0.474594,0.719799,0.548727,0.952713,0.520324,0.704623,0.622091,0.920858,0.811546,0.795275,0.968504,0.321927,0.34116,0.61852,0.720553,0.553324,0.426813,0.567581,0.0391918,0.830675,0.375325,0.208277,0.654469,0.557086,0.318542,0.988019,0.368708,0.558497,0.0618834,0.904644,0.81914,0.749331,0.84059,0.100132,0.62361,0.82455,0.624361,0.865701,0.653953,0.862018,0.136671,0.180823,0.948918,0.363328,0.529097,0.940924,0.803006,0.211553,0.713092,0.0611852,0.754024,0.453087,0.281199,0.723196,0.722447,0.406282,0.686385,0.564997,0.906907,0.762597,0.0736973,0.483747,0.595633,0.488824,0.453558,0.618619,0.436461,0.997689,0.592564,0.285666,0.0084548,0.967159,0.38506,0.31607,0.608982,0.683523,0.854566,0.968761,0.553623,0.952854,0.750009,0.291372,0.476311,0.891436,0.431281,0.172969,0.651628,0.0513428,0.863132,0.0495413,0.497155,0.0838524,0.458428,0.449755,0.637028,0.521178,0.901003,0.937503,0.308067,0.804807,0.594084,0.96566,0.615709,0.897803,0.692497,0.703277,0.587875,0.74265,0.193649,0.416424,0.799173,0.221397,0.760545,0.149246,0.113097,0.827699,0.00293529,0.301028,0.0787704,0.132992,0.78705,0.156887,0.159922,0.419684,0.481275,0.432514,0.335186,0.801827,0.0562363,0.230608,0.517823,0.769619,0.626073,0.653482,0.643205,0.718934,0.650399,0.618724,0.546355,0.75292,0.13458,0.387275,0.547975,0.775982,0.0218198,0.335002,0.596744,0.928903,0.698838,0.791663,0.648328,0.77433,0.507971,0.492224,0.562991,0.492736,0.637374,0.615498,0.144574,0.774141,0.0836074,0.82209,0.439241,0.240214,0.383183,0.559507,0.217563,0.690523,0.866358,0.761249,0.568744,0.493488,0.392376,0.752763,0.143824,0.251954,0.236211,0.480599,0.496731,0.112322,0.0854322,0.590726,0.239731,0.992019,0.0510407,0.208012,0.827926,0.723965,0.457452,0.0818835,0.317362,0.382923,0.855738,0.963797,0.901348,0.355422,0.725104,0.00285691,0.573506,0.103485,0.665424,0.466045,0.123385,0.686452,0.41755,0.178498,0.925627,0.984437,0.568986,0.71304,0.284175,0.917501,0.239966,0.00507706,0.0304689,0.609946,0.263919,0.977219,0.983349,0.253512,0.90532,0.0222602,0.0657331,0.670091,0.0561845,0.902365,0.801967,0.393562,0.502923,0.202556,0.307305,0.19633,0.667916,0.216291,0.419616,0.122385,0.149829,0.304777,0.467852,0.0372484,0.525446,0.259916,0.0969502,0.957572,0.0211559,0.918711,0.55316,0.252472,0.293727,0.185569,0.698063,0.453783,0.117115,0.989358,0.56211,0.563315,0.185166,0.954382,0.683994,0.750944,0.231167,0.572182,0.753383,0.939812,0.772956,0.259045,0.964069,0.321671,0.511119,0.366336,0.431849,0.81487,0.823457,0.554022,0.0635733,0.884557,0.698566,0.189845,0.084916,0.480565,0.442497,0.160674,0.954604,0.626575,0.725421,0.0265895,0.793377,0.881532,0.117152,0.859343,0.269952,0.566832,0.509641,0.153534,0.149696,0.736955,0.682662,0.357535,0.174002,0.300694,0.365903,0.224988,0.180358,0.759105,0.896142,0.857166,0.920537,0.84237,0.389309,0.401225,0.581565,0.112951,0.560072,0.342414,0.587133,0.286525,0.564916,0.925658,0.406116,0.168998,0.541729,0.868414,0.969968,0.712488,0.513125,0.447362,0.694394,0.387659,0.00792098,0.262025,0.47881,0.211293,0.402238,0.388525,0.0927657,0.543713,0.641763,0.571056,0.675629,0.869823,0.264121,0.267838,0.388938,0.577892,0.679171,0.0262531,0.0879427,0.267672,0.0697243,0.239596,0.230041,0.966839,0.0356589,0.74703,0.962885,0.709767,0.551311,0.817728,0.200273,0.474313,0.0846025,0.159709,0.304118,0.453688,0.154778,0.775423,0.308728,0.482588,0.521788,0.561922,0.986253,0.978654,0.30929,0.19862,0.16658,0.643273,0.97739,0.965049,0.0263239,0.496618,0.487365,0.256724,0.672334,0.306901,0.288059,0.478804,0.0307009,0.738099,0.46673,0.231558,0.820283,0.953654,0.389118,0.914575,0.411727,0.917248,0.211774,0.182827,0.593332,0.272399,0.155173,0.591635,0.0174412,0.617401,0.694089,0.744314,0.970974,0.69201,0.302437,0.498202,0.718001,0.00279212,0.449666,0.254604,0.00594944,0.242054,0.196959,0.665272,0.889693,0.64336,0.344341,0.533537,0.0819264,0.260557,0.359239,0.602392,0.88468,0.905513,0.606552,0.410266,0.588904,0.722161,0.176546,0.213733,0.336161,0.655916,0.458027,0.346936,0.348793,0.958961,0.505178,0.484881,0.45881,0.776019,0.597277,0.973516,0.93477,0.909099,0.203995,0.758379,0.813465,0.0561773,0.935891,0.114951,0.903862,0.903417,0.334955,0.12697,0.101401,0.232862,0.816423,0.406984,0.294249,0.539442,0.577761,0.18205,0.903264,0.201419,0.481479,0.24576,0.322893,0.801799,0.427676,0.718763,0.389257,0.451604,0.705972,0.583987,0.562322,0.587962,0.543136,0.483075,0.441285,0.277784,0.309545,0.000248551,0.215658,0.803796,0.137352,0.848186,0.398443,0.375559,0.151067,0.664864,0.378088,0.216969,0.498146,0.210824,0.642638,0.360796,0.602908,0.872789,0.37869,0.487293,0.973721,0.751658,0.38491,0.480782,0.366584,0.201302,0.350527,0.457632,0.537065,0.903525,0.180649,0.591922,0.0871447,0.127119,0.554798,0.817583,0.931143,0.604978,0.381404,0.0785139,0.234768,0.837631,0.0513999,0.0692898,0.926509,0.350887,0.268594,0.716744,0.607009,0.971593,0.642429,0.419516,0.189108,0.753627,0.960488,0.942484,0.250785,0.809934,0.511609,0.903849,0.997205,0.709681,0.516699,0.267614,0.367574,0.669182,0.386546,0.17229,0.343983,0.937165,0.539722,0.443241,0.999871,0.0699655,0.739443,0.73197,0.401809,0.524187,0.0929089,0.633433,0.956188,0.511565,0.4722,0.862432,0.845659,0.286602,0.420719,0.219981,0.488795,0.688387,0.929439,0.433042,0.759903,0.945725,0.673007,0.395159,0.997954,0.567319,0.494976,0.284868,0.275386,0.0920171,0.663163,0.347214,0.59915,0.00391948,0.453149,0.592481,0.571352,0.196941,0.662032,0.734882,0.200715,0.509453,0.519984,0.142144,0.694927,0.287251,0.237553,0.786078,0.034641,0.122854,0.798792,0.777077,0.501105,0.101001,0.324858,0.189989,0.72986,0.816617,0.294375,0.971831,0.388493,0.921906,0.0326633,0.103363,0.0716332,0.803091,0.988125,0.44859,0.234449,0.0127659,0.923438,0.650508,0.189314,0.164179,0.976211,0.867851,0.807354,0.42713,0.530788,0.982805,0.464025,0.122564,0.736122,0.685363,0.751211,0.454892,0.405242,0.463824,0.339558,0.0915541,0.0559587,0.0464127,0.54859,0.632509,0.813865,0.337338,0.447189,0.579694,0.193747,0.546446,0.682519,0.773484,0.671729,0.907714,0.560518,0.22156,0.573669,0.00622672,0.292413,0.599165,0.473652,0.22859,0.704752,0.183468,0.639779,0.789647,0.346113,0.0883272,0.825967,0.0426556,0.781953,0.942325,0.114165,0.334205,0.550251,0.232403,0.278324,0.0645602,0.423506,0.769906,0.317226,0.6879,0.507756,0.26839,0.755177,0.948157,0.56281,0.608884,0.775145,0.363662,0.670944,0.0454173,0.80877,0.886095,0.999066,0.882703,0.743723,0.548849,0.616163,0.50187,0.00698918,0.387667,0.936491,0.693937,0.644011,0.613594,0.500718,0.405338,0.158733,0.157636,0.938081,0.352231,0.229797,0.571919,0.232796,0.500446,0.395007,0.4374,0.657148,0.940796,|0.909531,0.436469,0.0902924,0.945861,0.466413,0.292266,0.467638,0.155334,0.638651,0.985907,0.276032,0.502824,0.112114,0.688462,0.461089,0.485405,0.878485,0.507153,0.571167,0.493499,0.268561,0.404497,0.767848,0.413899,0.0794355,0.69722,0.0368919,0.244501,0.392056,0.723694,0.589669,0.343861,0.444276,0.945678,0.855713,0.842997,0.640065,0.908371,0.485567,0.789492,0.230983,0.819226,0.423417,0.864314,0.383141,0.682494,0.804149,0.108429,0.656068,0.703757,0.416275,0.217868,0.315269,0.584835,0.886741,0.018858,0.273719,0.791775,0.0149441,0.618358,0.657402,0.43568,0.343447,0.256581,0.828324,0.424177,0.887359,0.813138,0.275287,0.310426,0.96825,0.587994,0.330687,0.643142,0.254331,0.762777,0.250655,0.533979,0.696288,0.620192,0.433441,0.417809,0.769273,0.0659124,0.218727,0.539435,0.0564589,0.463244,0.0573944,0.616118,0.469937,0.893721,0.5465,0.712702,0.346939,0.77052,0.735159,0.63761,0.97949,0.625045,0.572126,0.961741,0.926403,0.462349,0.123255,0.431556,0.100198,0.550318,0.29049,0.165731,0.640806,0.260308,0.825401,0.695097,0.207772,0.140903,0.750947,0.372212,0.493962,0.0728604,0.254592,0.0842447,0.502757,0.808665,0.799533,0.845243,0.0467325,0.0208108,0.581925,0.296722,0.991574,0.239321,0.681766,0.714686,0.292899,0.573778,0.437841,0.51133,0.120357,0.179196,0.0656118,0.39277,0.968587,0.541699,0.604975,0.608277,0.593313,0.216243,0.434725,0.754454,0.973984,0.382086,0.218961,0.97749,0.0478898,0.879276,0.872009,0.625298,0.75062,0.354661,0.178389,0.226928,0.912148,0.441097,0.44029,0.0838342,0.81691,0.459943,0.806061,0.291429,0.839176,0.800905,0.900656,0.15123,0.490347,0.0900643,0.0475686,0.830109,0.747848,0.893697,0.565111,0.199784,0.923512,0.0376382,0.610726,0.873001,0.787226,0.07929,0.242689,0.491582,0.273738,0.535369,0.452881,0.253326,0.582479,0.524367,0.65575,0.757084,0.169075,0.781128,0.16029,0.841612,0.860871,0.623811,0.369933,0.0959541,0.472073,0.283425,0.711456,0.53702,0.143765,0.462805,0.697281,0.233317,0.435959,0.588179,0.430774,0.726326,0.618496,0.13812,0.477932,0.703654,0.493541,0.0610294,0.599911,0.323428,0.436274,0.910529,0.722744,0.443545,0.763647,0.758747,0.321047,0.507493,0.897986,0.232138,0.93497,0.0305504,0.399738,0.609285,0.994217,0.0298871,0.644869,0.0842752,0.490305,0.475875,0.445455,0.245002,0.559346,0.22703,0.614884,0.632723,0.505079,0.631857,0.37059,0.129889,0.402246,0.877405,0.189247,0.235168,0.228328,0.0389702,0.40112,0.160061,0.150639,0.948726,0.433457,0.203158,0.684119,0.364779,0.266806,0.393632,0.333116,0.210721,0.947646,0.925694,0.239568,0.0932707,0.312174,0.271124,0.979405,0.807666,0.671567,0.858015,0.139532,0.505109,0.792608,0.354933,0.550505,0.0134479,0.663779,0.0275761,0.731116,0.0435831,0.307301,0.537754,0.187487,0.689978,0.866892,0.28584,0.157707,0.972182,0.701725,0.213264,0.022725,0.290615,0.44603,0.424995,0.594427,0.727324,0.497007,0.697532,0.98114,0.476601,0.754841,0.415541,0.121728,0.877239,0.617407,0.429863,0.764034,0.435105,0.452454,0.54292,0.118515,0.518122,0.888491,0.356934,0.1982,0.869867,0.449817,0.459754,0.182485,0.731983,0.897333,0.500714,0.259926,0.396399,0.804282,0.963373,0.424459,0.39326,0.538137,0.0982806,0.194618,0.735917,0.888515,0.935319,0.573029,0.792715,0.435853,0.128084,0.526433,0.430692,0.256091,0.165407,0.810294,0.432424,0.566522,0.210244,0.261894,0.0137926,0.721982,0.765454,0.332814,0.6512,0.0548189,0.0688357,0.466307,0.41729,0.996661,0.535784,0.51831,0.0674513,0.450594,0.621312,0.0381421,0.18664,0.408659,0.640135,0.665833,0.72549,0.98132,0.990558,0.427772,0.635852,0.866246,0.613919,0.730232,0.0163347,0.581621,0.543027,0.332886,0.160394,0.10324,0.339932,0.749364,0.779107,0.961245,0.600803,0.787964,0.430254,0.358335,0.948776,0.544336,0.858308,0.980886,0.0235322,0.647267,0.744536,0.205316,0.0214117,0.725627,0.997962,0.274256,0.288675,0.743428,0.96693,0.267155,0.180901,0.205435,0.48093,0.0548843,0.744913,0.68998,0.927463,0.406273,0.0308012,0.994221,0.104515,0.0151525,0.0303886,0.451786,0.563996,0.406336,0.735853,0.235549,0.594959,0.0599466,0.490348,0.882351,0.329296,0.337695,0.40567,0.181799,0.748063,0.41564,0.182265,0.89127,0.178766,0.20738,0.00573671,0.446918,0.279229,0.882854,0.834392,0.883858,0.845741,0.440815,0.605436,0.302729,0.629809,0.827417,0.402612,0.0603309,0.475145,0.0331238,0.611184,0.378023,0.537633,0.78584,0.0807551,0.69981,0.395984,0.207503,0.369777,0.585784,0.295115,0.318348,0.109102,0.279596,0.319234,0.0463279,0.0902473,0.16496,0.559157,0.261456,0.902019,0.894979,0.710082,0.978287,0.793972,0.204964,0.000422776,0.749132,0.168574,0.93136,0.933925,0.449418,0.481906,0.712741,0.386589,0.298945,0.499405,0.317364,0.470939,0.412056,0.16334,0.339329,0.633823,0.546505,0.83696,0.869924,0.63215,0.905133,0.997892,0.314257,0.0407554,0.288714,0.691069,0.130317,0.651282,0.911939,0.0874193,0.190962,0.579699,0.475448,0.0301754,0.0479834,0.973473,0.801201,0.744936,0.875289,0.128144,0.903461,0.332281,0.132123,0.154263,0.0277308,0.376819,0.314415,0.32734,0.278317,0.311611,0.871707,0.0393002,0.986284,0.665234,0.248267,0.0386077,0.0779328,0.36595,0.0343665,0.648106,0.228965,0.934523,0.177693,0.893013,0.186863,0.404203,0.120363,0.0349714,0.0693433,0.676694,0.789908,0.290501,0.235867,0.942193,0.21684,0.284106,0.288356,0.462744,0.922199,0.801469,0.592643,0.606028,0.80958,0.85748,0.738709,0.0522595,0.345465,0.232326,0.358386,0.554039,0.300335,0.125313,0.691032,0.779311,0.294117,0.0537396,0.661076,0.193738,0.284587,0.93199,0.811584,0.644129,0.857317,0.661577,0.809826,0.0814807,0.294584,0.0188011,0.356329,0.142672,0.181982,0.867557,0.282531,0.754354,0.302851,0.770773,0.620577,0.878708,0.977562,0.96112,0.782272,0.303591,0.693014,0.490797,0.209531,0.638277,0.940605,0.512967,0.0292302,0.326019,0.605745,0.53312,0.624387,0.464041,0.822671,0.674867,0.36133,0.364531,0.556437,0.520769,0.393472,0.861226,0.410919,0.0670277,0.0390327,0.572908,0.552664,0.822173,0.384578,0.134405,0.951529,0.929944,0.23195,0.731706,0.391224,0.736099,0.797726,0.423396,0.466817,0.999093,0.624131,0.177293,0.890314,0.320979,0.059686,0.804214,0.800767,0.420352,0.270382,0.586834,0.18627,0.00643373,0.372027,0.763657,0.114169,0.368293,0.519782,0.466806,0.744275,0.326405,0.311576,0.599962,0.187741,0.481391,0.226998,0.771057,0.951301,0.436584,0.937314,0.393661,0.115594,0.834811,0.916881,0.187198,0.384524,0.248484,0.425181,0.187284,0.906124,0.67861,0.659218,0.769354,0.908796,0.700292,0.240146,0.537412,0.154739,0.0941758,0.341061,0.721887,0.451536,0.431505,0.863873,0.0147213,0.432669,0.886016,0.780331,0.357416,0.892316,0.492471,0.920159,0.632186,0.307354,0.951394,0.0667935,0.288054,0.218356,0.958731,0.229505,0.568795,0.584723,0.607454,0.629688,0.198068,0.505397,0.531919,0.759849,0.159149,0.796108,0.330571,0.848073,0.927656,0.0104113,0.134577,0.601826,0.843879,0.903934,0.0943834,0.398316,0.693282,0.852455,0.95401,0.16866,0.561635,0.341845,0.486821,0.896268,0.559729,0.987564,0.816987,0.275712,0.763218,0.387123,0.808878,0.843412,0.111619,0.181315,0.0179621,0.962676,0.64381,0.105827,0.869154,0.221455,0.729855,0.870886,0.504085,0.509895,0.450552,0.167637,0.319629,0.484771,0.570635,0.895658,0.620561,0.629131,0.171397,0.744341,0.835597,0.383566,0.562554,0.279868,0.905124,0.827466,0.913219,0.624473,0.291018,0.726286,0.552748,0.578646,0.940957,0.125336,0.0660335,0.688567,0.900627,0.586306,0.748875,0.991059,0.325644,0.915266,0.988704,0.303227,0.255298,0.618917,0.306602,0.238789,0.0245776,0.686222,0.604509,0.477251,0.480522,0.0817747,0.364799,0.882984,0.575507,0.237372,0.329745,0.923884,0.484468,0.218761,0.618318,0.234747,0.854543,0.0180193,0.903696,0.979556,0.535923,0.753561,0.415688,0.767417,0.290095,0.0175833,0.008591,0.590943,0.596249,0.136854,0.016069,0.846945,0.521305,0.24447,0.882304,0.951447,0.0391134,0.362123,0.674282,0.489756,0.491522,0.541759,0.992896,0.890569,0.0850607,0.878168,0.403487,0.918735,0.486956,0.31062,0.415916,0.643375,0.404337,0.624828,0.174307,0.912416,0.960025,0.275755,0.683458,0.439845,0.865705,0.702969,0.669049,0.613931,0.605177,0.0914491,0.971832,0.835791,0.587697,0.620583,0.391159,0.706699,0.663127,0.462946,0.151647,0.933568,0.596543,0.882502,0.194924,0.0898724,0.752615,0.451442,0.199598,0.232553,0.129663,0.899929,0.414722,0.72825,0.414483,0.737896,0.890659,0.704343,0.23728,0.520328,0.324416,0.843144,0.0624195,0.438137,0.389482,0.657985,0.208298,0.814728,0.087595,0.8021,0.710594,0.543219,0.908257,0.503639,0.119826,0.406866,0.247031,0.452325,0.0921079,0.577424,0.878849,0.355724,0.108741,0.537476,0.848568,0.545691,0.307621,0.21312,0.286633,0.584495,0.158743,0.793216,0.866775,0.604821,0.388837,0.328531,0.478464,0.864413,0.42011,0.357246,0.268278,0.915807,0.863463,0.0969378,0.490906,0.355197,0.575853,0.720221,0.745692,0.575668,0.603429,0.857541,0.81711,0.0569523,0.0357642,0.915457,0.759532,0.892662,0.360704,0.364018,0.849911,0.852056,0.0611334,0.877969,0.0769891,0.626747,0.32459,0.335508,0.671611,0.958391,0.683353,0.546063,0.985674,0.79511,0.486352,0.806791,0.142743,0.991377,0.0352076,0.861598,0.515442,0.592766,0.424686,0.487884,0.534592,0.216881,0.993527,0.977566,0.221434,0.724193,0.181246,0.353537,0.870791,0.662369,0.828922,0.561676,0.248264,|0.864482,3.24845e-05,0.0914273,0.773045,0.961256,0.785917,0.867021,0.701643,0.0542226,0.83423,0.951664,0.0669715,0.155405,0.672833,0.686962,0.785881,0.21911,0.449254,0.496886,0.844085,0.0674928,0.820246,0.0683762,0.776844,0.200214,0.4477,0.887067,0.338967,0.120789,0.766119,0.0632526,0.856903,0.184303,0.124696,0.226401,0.456139,0.221571,0.926589,0.114533,0.431264,0.0127239,0.507725,0.79227,0.861049,0.36823,0.297275,0.602737,0.246712,0.801058,0.541157,0.918234,0.435925,0.74634,0.214743,0.544224,0.91397,0.0730222,0.854556,0.270791,0.504049,0.00154805,0.699884,0.0156517,0.991121,0.841456,0.968925,0.660017,0.508853,0.00138015,0.640945,0.102709,0.0688951,0.311525,0.136362,0.580746,0.646688,0.185053,0.084057,0.731189,0.813586,0.82106,0.934005,0.248933,0.0605733,0.0113681,0.868995,0.483766,0.806031,0.500778,0.737296,0.0588883,0.72534,0.786892,0.833371,0.419408,0.891079,0.585401,0.389738,0.955558,0.656064,0.679876,0.411593,0.796048,0.849172,0.371509,0.656353,0.0186369,0.563292,0.714638,0.0180982,0.165077,0.297019,0.683625,0.286254,0.685347,0.652325,0.770193,0.468975,0.406947,0.25303,0.648428,0.333415,0.0726103,0.806795,0.334038,0.888623,0.325113,0.706639,0.527843,0.147641,0.970435,0.309228,0.551958,0.0153753,0.206553,0.874074,0.260075,0.194937,0.755594,0.371462,0.939331,0.0859241,0.870123,0.251724,0.962494,0.500756,0.827069,0.476386,0.292106,0.346242,0.27301,0.36324,0.253093,0.38495,0.387409,0.0098719,0.829997,0.0766606,0.55167,0.959205,0.542013,0.238824,0.382528,0.860213,0.757159,0.146305,0.104778,0.138564,0.883795,0.34452,0.797402,0.938751,0.641585,0.455618,0.381934,0.190018,0.566844,0.0673895,0.928839,0.19361,0.737239,0.420711,0.131482,0.51665,0.339635,0.744454,0.764921,0.631382,0.0169811,0.979185,0.365033,0.326683,0.968011,0.0733826,0.683952,0.407515,0.233746,0.969927,0.349231,0.251656,0.27591,0.598672,0.252088,0.515303,0.231055,0.0513892,0.872761,0.592447,0.857909,0.677592,0.61687,0.335694,0.956257,0.036082,0.058844,0.76401,0.0428873,0.143854,0.638663,0.549666,0.0846251,0.116703,0.513183,0.692868,0.807817,0.411221,0.1445,0.54704,0.927343,0.876347,0.219088,0.717474,0.0138028,0.324916,0.493499,0.432784,0.366883,0.629787,0.512628,0.155123,0.674103,0.851805,0.730557,0.347889,0.729711,0.456819,0.40947,0.697156,0.996503,0.819987,0.848945,0.168948,0.907687,0.495996,0.449073,0.235284,0.242328,0.945679,0.198454,0.913822,0.749444,0.537166,0.902922,0.947895,0.563909,0.915683,0.145725,0.757248,0.714899,0.270971,0.927363,0.114825,0.204804,0.180072,0.824977,0.753952,0.521911,0.132628,0.936345,0.993325,0.355798,0.257286,0.573346,0.754739,0.971292,0.335691,0.671009,0.990905,0.847172,0.319013,0.3711,0.77848,0.103121,0.86923,0.173708,0.438747,0.744372,0.767874,0.243122,0.167201,0.783666,0.329763,0.714319,0.505731,0.406251,0.241721,0.123304,0.218069,0.141155,0.430187,0.85994,0.88726,0.119241,0.114168,0.257562,0.517216,0.0405078,0.769354,0.0970319,0.755511,0.513241,0.395436,0.0390695,0.420164,0.562577,0.430313,0.780989,0.839814,0.277409,0.902264,0.653825,0.810354,0.314332,0.222645,0.709011,0.0425457,0.830481,0.952623,0.600694,0.556799,0.708475,0.928773,0.176986,0.604715,0.220083,0.625658,0.547194,0.632909,0.870377,0.99142,0.152118,0.568233,0.253966,0.557179,0.0709466,0.250368,0.114235,0.417868,0.105485,0.985283,0.329455,0.641546,0.605021,0.44192,0.841513,0.00232321,0.630473,0.484085,0.316776,0.247524,0.824183,0.420476,0.874961,0.393706,0.575567,0.349782,0.389775,0.148454,0.348342,0.319797,0.987322,0.106788,0.0620176,0.305347,0.330331,0.00157756,0.85298,0.108516,0.834098,0.0232226,0.614034,0.613826,0.217316,0.246743,0.861153,0.130768,0.430128,0.116959,0.772978,0.985355,0.486597,0.527846,0.101364,0.986982,0.493495,0.0385866,0.494927,0.967173,0.750501,0.751002,0.0272247,0.0212978,0.737853,0.119916,0.163894,0.42952,0.0322315,0.623858,0.564012,0.995585,0.671236,0.946213,0.0708433,0.326302,0.295997,0.944295,0.949063,0.0853468,0.298539,0.845081,0.00842047,0.203115,0.937957,0.744663,0.0762028,0.126875,0.290428,0.054558,0.150614,0.203749,0.478606,0.750025,0.0364997,0.797397,0.796064,0.184992,0.813388,0.34964,0.652652,0.878564,0.175057,0.968287,0.196275,0.931762,0.0841737,0.128774,0.585972,0.830004,0.112582,0.891735,0.291816,0.109359,0.592875,0.755007,0.930878,0.0612077,0.299747,0.934696,0.468714,0.861816,0.773225,0.923267,0.290857,0.448966,0.710531,0.783505,0.630021,0.486865,0.785926,0.555648,0.780194,0.948933,0.12674,0.21688,0.632551,0.657426,0.70338,0.184392,0.374506,0.252001,0.260103,0.736669,0.353446,0.295914,0.296929,0.724836,0.67805,0.203512,0.271056,0.593639,0.0770444,0.0292579,0.0958188,0.427656,0.638577,0.67261,0.377667,0.354226,0.828411,0.397717,0.673176,0.727617,0.984904,0.417283,0.488245,0.133861,0.83086,0.603002,0.852198,0.347577,0.768575,0.59847,0.438623,0.263453,0.172763,0.210068,0.0487626,0.949985,0.0356814,0.528197,0.475945,0.816856,0.203581,0.94575,0.859394,0.900465,0.618381,0.813587,0.450175,0.472717,0.225691,0.618327,0.392972,0.468328,0.400286,0.888899,0.325979,0.432316,0.872791,0.962637,0.501517,0.4085,0.983271,0.625568,0.0613151,0.961672,0.217471,0.71125,0.496917,0.517176,0.123591,0.803077,0.979711,0.276518,0.854073,0.20362,0.347736,0.105699,0.476909,0.68087,0.954584,0.239003,0.822251,0.945482,0.709067,0.496832,0.253812,0.420926,0.584517,0.611005,0.198886,0.539017,0.433912,0.789164,0.603566,0.851431,0.832121,0.718323,0.411195,0.948972,0.0295795,0.977217,0.939703,0.277444,0.20611,0.374147,0.30917,0.24761,0.765372,0.638823,0.800534,0.662419,0.52702,0.670445,0.244907,0.320306,0.486459,0.0506403,0.377871,0.296979,0.962531,0.567547,0.862138,0.580128,0.762655,0.0706245,0.331917,0.0708356,0.26767,0.68113,0.241298,0.830194,0.724591,0.416988,0.343102,0.449963,0.61849,0.610826,0.558383,0.968835,0.508643,0.0197067,0.441187,0.970735,0.825813,0.707456,0.166035,0.00617474,0.387651,0.42029,0.839917,0.881395,0.357183,0.804301,0.791384,0.738059,0.69807,0.270056,0.814612,0.870396,0.992139,0.203284,0.130216,0.858526,0.448191,0.226623,0.666562,0.753809,0.468076,0.0608724,0.994774,0.18221,0.676923,0.387388,0.321234,0.683805,0.00653762,0.634181,0.0599285,0.639905,0.321278,0.624402,0.682619,0.360502,0.171819,0.135118,0.218846,0.213629,0.976176,0.134438,0.834182,0.554641,0.627578,0.530033,0.625082,0.880396,0.252679,0.769688,0.972941,0.536366,0.534239,0.111926,0.174521,0.393127,0.384835,0.409247,0.895644,0.370076,0.449032,0.606652,0.857265,0.369788,0.539964,0.173009,0.668338,0.592539,0.158379,0.359229,0.844161,0.96668,0.216553,0.0306532,0.100571,0.856661,0.553082,0.00188565,0.655724,0.0221555,0.400653,0.321238,0.147229,0.767678,0.283305,0.143302,0.412165,0.394498,0.102147,0.732657,0.938567,0.842775,0.17281,0.840511,0.796416,0.606126,0.63273,0.756285,0.914253,0.164369,0.617075,0.351181,0.134873,0.811067,0.765444,0.483343,0.386389,0.710408,0.664721,0.00126356,0.159228,0.00894856,0.256075,0.675136,0.640007,0.555692,0.841571,0.878042,0.57798,0.463258,0.208829,0.972763,0.115071,0.345627,0.33675,0.910194,0.366638,0.418536,0.67079,0.776984,0.444268,0.434151,0.525171,0.917993,0.0910841,0.191042,0.310329,0.124625,0.492843,0.758423,0.0364004,0.690035,0.729091,0.767289,0.0729226,0.0916634,0.645212,0.0338168,0.707635,0.0806103,0.950547,0.607326,0.00124305,0.253122,0.888623,0.906263,0.991081,0.991811,0.174829,0.304229,0.170594,0.949473,0.606308,0.454824,0.585326,0.308501,0.890587,0.60221,0.132113,0.608058,0.332515,0.285417,0.127766,0.110014,0.0303127,0.050077,0.281462,0.156559,0.939177,0.826043,0.100783,0.392456,0.946869,0.335306,0.0482505,0.339704,0.738651,0.639261,0.892675,0.160346,0.578824,0.157732,0.53743,0.57771,0.268746,0.456619,0.76885,0.976236,0.61676,0.976241,0.393945,0.461228,0.340525,0.335303,0.564766,0.726244,0.492408,0.88112,0.833504,0.995346,0.536817,0.611868,0.138344,0.153541,0.621511,0.194099,0.695991,0.577451,0.393768,0.83895,0.811398,0.677876,0.471104,0.497627,0.953745,0.0629302,0.184813,0.0710005,0.410679,0.162297,0.357194,0.430484,0.789332,0.149656,0.0267981,0.833694,0.27955,0.638226,0.684181,0.939397,0.910648,0.0223907,0.538031,0.747954,0.651771,0.803763,0.484302,0.533915,0.693578,0.58379,0.468606,0.0660303,0.13646,0.582807,0.347534,0.595035,0.886694,0.427343,0.984945,0.235462,0.642716,0.253994,0.0983864,0.79526,0.807815,0.0196811,0.0325745,0.221157,0.150784,0.0139186,0.322598,0.549339,0.897639,0.423956,0.374652,0.997531,0.191632,0.516151,0.966639,0.756009,0.461166,0.886894,0.448797,0.587105,0.123502,0.0650422,0.541858,0.214494,0.220694,0.120268,0.194496,0.590848,0.23826,0.024617,0.97367,0.0617884,0.853484,0.918206,0.0424003,0.97689,0.0445931,0.553585,0.668753,0.200404,0.52618,0.0262455,0.279667,0.922484,0.316112,0.0702948,0.518074,0.177823,0.666562,0.710522,0.52075,0.909208,0.318614,0.346529,0.866424,0.345953,0.731999,0.545106,0.455765,0.690889,0.411913,0.790413,0.619299,0.525405,0.39645,0.0962412,0.395036,0.543295,0.815457,0.159734,0.98235,0.816643,0.583733,0.918822,0.286396,0.445331,0.720005,0.420685,0.280223,0.0827512,0.184774,0.543288,0.962164,0.885988,0.700971,0.172694,0.153871,0.183991,0.466258,0.625646,0.903861,0.841348,0.0315349,0.742706,0.803249,0.656417,0.593029,0.254049,|0.594037,0.290012,0.12147,0.100037,0.767955,0.119466,0.232168,0.380909,0.728984,0.46249,0.431457,0.912668,0.338626,0.289959,0.918263,0.665297,0.481549,0.845729,0.472483,0.852787,0.955113,0.871124,0.575136,0.499845,0.854046,0.870862,0.808077,0.656753,0.856169,0.75303,0.636625,0.663265,0.143092,0.555281,0.851528,0.990001,0.0400622,0.734217,0.112777,0.443,0.307907,0.689222,0.225067,0.416479,0.363942,0.977066,0.455405,0.243741,0.444305,0.900442,0.889091,0.462363,0.260309,0.365957,0.724516,0.0282983,0.207302,0.963822,0.493524,0.36008,0.302399,0.210189,0.321115,0.670721,0.636446,0.776369,0.486237,0.639184,0.00876272,0.529646,0.956908,0.408341,0.203816,0.652835,0.763119,0.909302,0.191282,0.362506,0.355547,0.71646,0.656104,0.335099,0.135569,0.460427,0.327527,0.08587,0.144068,0.589801,0.221132,0.813387,0.0545933,0.0996733,0.813438,0.172879,0.161798,0.00724494,0.716677,0.982906,0.530972,0.630947,0.0124872,0.563206,0.570304,0.398372,0.909978,0.213598,0.639289,0.0864549,0.465768,0.389168,0.878692,0.23695,0.792284,0.476669,0.381572,0.120118,0.410464,0.0333444,0.937567,0.805997,0.17292,0.837646,0.186683,0.861916,0.606925,0.988424,0.71007,0.127825,0.0523756,0.295698,0.636953,0.473809,0.449659,0.167745,0.12699,0.71851,0.855255,0.388295,0.0338381,0.728859,0.791453,0.464968,0.906196,0.424162,0.853248,0.799836,0.1492,0.144775,0.41421,0.0611343,0.104087,0.85488,0.657679,0.369394,0.978147,0.484385,0.8592,0.991854,0.394687,0.74063,0.0248193,0.599867,0.0313339,0.614456,0.381104,0.525425,0.379512,0.424292,0.714274,0.867234,0.922871,0.67596,0.579159,0.632244,0.441794,0.452227,0.479313,0.404794,0.0688756,0.901468,0.272811,0.595148,0.159492,0.86426,0.423571,0.81946,0.998181,0.768232,0.735979,0.558849,0.224143,0.921455,0.720255,0.521706,0.0556087,0.546264,0.818249,0.279733,0.660604,0.605484,0.109735,0.238873,0.367724,0.0144364,0.626045,0.566638,0.0851185,0.451619,0.248564,0.825922,0.777918,0.421962,0.871697,0.660943,0.811659,0.670923,0.26964,0.793906,0.568643,0.918489,0.103757,0.760037,0.629436,0.348868,0.322807,0.681475,0.515721,0.817393,0.385499,0.670531,0.626157,0.25293,0.150849,0.342802,0.873968,0.177488,0.192146,0.268318,0.353258,0.803841,0.706128,0.297747,0.0776806,0.70603,0.271778,0.504046,0.147511,0.262602,0.950811,0.222606,0.143345,0.768311,0.249855,0.701842,0.821444,0.439935,0.257478,0.397799,0.336979,0.124216,0.313434,0.968158,0.16417,0.152897,0.423652,0.967154,0.9054,0.0730094,0.297013,0.0865577,0.274812,0.692992,0.534169,0.657616,0.596874,0.343938,0.137777,0.063155,0.107568,0.321778,0.631416,0.797293,0.260457,0.989217,0.659015,0.996793,0.270843,0.331291,0.629775,0.718834,0.0583559,0.558481,0.215479,0.289614,0.820881,0.422528,0.560234,0.116171,0.485644,0.147917,0.23937,0.901692,0.0972384,0.564842,0.328873,0.736676,0.993081,0.851544,0.663427,0.0712732,0.579623,0.260029,0.822843,0.0196255,0.844767,0.24961,0.161334,0.907912,0.925507,0.961265,0.461907,0.0463505,0.755542,0.762328,0.761013,0.924558,0.112345,0.571111,0.874433,0.769356,0.579843,0.437332,0.4664,0.241712,0.245044,0.637494,0.242041,0.975811,0.743157,0.852257,0.369126,0.834616,0.498559,0.265777,0.0673736,0.981743,0.90942,0.67695,0.502795,0.782763,0.0639499,0.765928,0.339395,0.280287,0.944494,0.402706,0.143245,0.747108,0.0343748,0.558327,0.692207,0.368178,0.343745,0.0202167,0.726994,0.188477,0.981091,0.399531,0.890819,0.691833,0.155145,0.636157,0.752941,0.0452588,0.829068,0.341742,0.459433,0.939797,0.0238388,0.0547373,0.99334,0.0454392,0.715442,0.0461094,0.656341,0.887117,0.73613,0.180537,0.903503,0.812383,0.272225,0.477506,0.848302,0.908679,0.464355,0.98455,0.449501,0.385006,0.94353,0.102808,0.215946,0.360112,0.0197138,0.275181,0.207983,0.754216,0.349076,0.406547,0.792718,0.842337,0.522981,0.163539,0.371777,0.764791,0.856167,0.14645,0.162094,0.452704,0.069066,0.964282,0.796931,0.354746,0.0866669,0.322068,0.438784,0.871042,0.758951,0.0456217,0.351283,0.614575,0.732415,0.631628,0.477652,0.0499927,0.576703,0.422391,0.280264,0.940866,0.140633,0.795923,0.0196124,0.548373,0.0637584,0.573283,0.401274,0.164838,0.996369,0.922765,0.272243,0.700071,0.530374,0.90624,0.980618,0.334585,0.837112,0.071636,0.796939,0.0164726,0.50334,0.144004,0.193674,0.45442,0.480458,0.966807,0.867185,0.321321,0.0454218,0.670415,0.243361,0.0463125,0.859419,0.541979,0.133288,0.983945,0.350559,0.764975,0.319111,0.817564,0.103552,0.296815,0.250407,0.572979,0.346899,0.544612,0.26922,0.880045,0.695709,0.400176,0.963471,0.18935,0.705642,0.0491555,0.984698,0.0481739,0.397,0.848296,0.0268833,0.767705,0.874475,0.738239,0.196141,0.75736,0.925805,0.914096,0.287953,0.286175,0.988614,0.765566,0.705784,0.244966,0.887969,0.100782,0.168638,0.0167972,0.842883,0.117346,0.689682,0.913118,0.894751,0.142549,0.775196,0.590169,0.715938,0.636712,0.997518,0.302769,0.650435,0.478472,0.507232,0.0775571,0.70359,0.559399,0.506763,0.690147,0.629481,0.140469,0.034481,0.810019,0.815797,0.53605,0.183386,0.24925,0.23703,0.268198,0.24847,0.0254651,0.70283,0.779536,0.631561,0.826045,0.821053,0.574709,0.610834,0.230626,0.652035,0.416761,0.220154,0.982234,0.905932,0.647109,0.863362,0.791172,0.0985534,0.250881,0.19574,0.889143,0.0909214,0.869604,0.701339,0.164915,0.742994,0.0197535,0.20866,0.371471,0.142509,0.0440077,0.272386,0.00966901,0.83419,0.686832,0.778584,0.350011,0.0145082,0.383995,0.497573,0.863505,0.498732,0.320586,0.787203,0.835272,0.620451,0.402942,0.616596,0.895868,0.22116,0.727763,0.875886,0.796734,0.789604,0.505211,0.633752,0.551702,0.233792,0.4255,0.25843,0.544584,0.91671,0.334909,0.208476,0.43773,0.460824,0.831822,0.499141,0.0177352,0.292119,0.0522099,0.168788,0.657335,0.652885,0.756705,0.727001,0.459853,0.01824,0.247034,0.417659,0.619307,0.0867643,0.217213,0.837701,0.287793,0.658811,0.309582,0.183934,0.935359,0.203677,0.716347,0.876851,0.303303,0.696141,0.127386,0.839321,0.302346,0.3644,0.368913,0.129986,2.563e-05,0.610376,0.668242,0.897807,0.301551,0.67254,0.308104,0.34623,0.754442,0.197559,0.831468,0.303946,0.662876,0.543752,0.519184,0.422939,0.365645,0.671148,0.978567,0.240103,0.778857,0.0509384,0.175661,0.300821,0.380859,0.749509,0.16633,0.752276,0.918585,0.545612,0.158898,0.0144734,0.695804,0.344513,0.868586,0.223349,0.851065,0.0960361,0.14217,0.249997,0.00228012,0.347043,0.32512,0.845265,0.74527,0.952117,0.193471,0.520599,0.868736,0.944415,0.335859,0.227337,0.466162,0.483017,0.73607,0.0671317,0.300735,0.480018,0.891912,0.193399,0.52588,0.792677,0.883978,0.382154,0.129909,0.838228,0.170822,0.517239,0.596217,0.0688151,0.254249,0.31882,0.145136,0.817358,0.833473,0.858917,0.95833,0.881317,0.279683,0.579646,0.762483,0.46582,0.486772,0.556649,0.32778,0.38171,0.842624,0.676616,0.198807,0.358184,0.975849,0.347405,0.699139,0.271188,0.831164,0.964138,0.162514,0.572464,0.634253,0.705081,0.504396,0.636149,0.505519,0.847653,0.562019,0.0747047,0.673508,0.291609,0.43746,0.21691,0.193763,0.737128,0.0221398,0.0259761,0.316653,0.87948,0.977169,0.929142,0.635886,0.783542,0.679948,0.387179,0.497354,0.129975,0.699286,0.736072,0.162488,0.891796,0.380264,0.689153,0.32657,0.270592,0.224035,0.726486,0.374938,0.0418274,0.851725,0.782044,0.740339,0.4517,0.728751,0.908005,0.0353486,0.543704,0.0285528,0.998026,0.295786,0.793637,0.489656,0.805815,0.536022,0.587651,0.00473851,0.437284,0.991703,0.329421,0.954983,0.578479,0.889944,0.11823,0.639365,0.153886,0.170638,0.620004,0.633019,0.570731,0.188547,0.297102,0.302958,0.628336,0.18601,0.416183,0.169582,0.261265,0.366395,0.580975,0.0918905,0.876069,0.986046,0.447168,0.234288,0.973969,0.75586,0.202357,0.486654,0.436896,0.586321,0.952745,0.98436,0.738978,0.487219,0.909876,0.78413,0.15997,0.20354,0.654786,0.988264,0.222202,0.152961,0.744828,0.244195,0.468822,0.532996,0.077946,0.935735,0.0610735,0.0406337,0.405226,0.248345,0.441457,0.773406,0.0550894,0.873234,0.814493,0.373575,0.901271,0.825893,0.88448,0.0119713,0.749675,0.539726,0.158199,0.780028,0.536647,0.0543659,0.286252,0.708986,0.053323,0.869699,0.212783,0.376692,0.714269,0.46661,0.90595,0.0303357,0.431316,0.877444,0.933241,0.911895,0.0508912,0.363542,0.862691,0.241527,0.792235,0.732746,0.926445,0.323613,0.74102,0.610771,0.557946,0.208972,0.114578,0.792872,0.850888,0.994467,0.772139,0.443132,0.888291,0.15255,0.474313,0.847883,0.22597,0.668046,0.404001,0.826755,0.768403,0.968785,0.387988,0.655264,0.39244,0.222538,0.706017,0.187879,0.871411,0.147096,0.780878,0.744775,0.2583,0.0726727,0.418257,0.174934,0.0837799,0.643664,0.0480453,0.620192,0.972195,0.596509,0.160595,0.10723,0.265411,0.147137,0.766506,0.696604,0.0264367,0.00413209,0.286463,0.971674,0.539508,0.65378,0.234682,0.674073,0.835151,0.282304,0.0292235,0.868761,0.486112,0.916363,0.151178,0.579863,0.587735,0.68132,0.779651,0.308069,0.169661,0.72733,0.639618,0.316689,0.525433,0.602631,0.187587,0.226459,0.844309,0.707964,0.905198,0.824759,0.626315,0.908665,0.558587,0.867268,0.776042,0.1481,0.0706335,0.297561,0.620782,0.513535,0.329036,0.148783,0.957424,0.754543,0.165124,0.746896,0.0606391,0.782565,0.703208,0.893221,0.155128,0.0310892,0.217227,0.191649,0.842385,0.200355,0.453082,0.422966,0.628251,0.159567,|0.446726,0.228127,0.657289,0.493582,0.851932,0.339466,0.258607,0.674638,0.964189,0.207166,0.800816,0.586323,0.0652295,0.994489,0.297894,0.135463,0.978761,0.698886,0.57769,0.0670609,0.185444,0.217415,0.820908,0.187942,0.342289,0.983743,0.545746,0.738728,0.822553,0.229234,0.546413,0.745665,0.0876852,0.424064,0.736358,0.970752,0.00557715,0.933262,0.439189,0.909831,0.702028,0.666592,0.232197,0.817722,0.878059,0.317157,0.359596,0.153634,0.200991,0.360088,0.111124,0.309886,0.436446,0.308914,0.570731,0.75554,0.226078,0.031036,0.691913,0.208627,0.628586,0.108146,0.782821,0.77915,0.23378,0.491738,0.767023,0.160828,0.809617,0.156389,0.636032,0.593706,0.230566,0.57513,0.397646,0.575132,0.0938245,0.868346,0.20684,0.763016,0.44819,0.303718,0.39986,0.613105,0.301189,0.37785,0.64754,0.854752,0.747212,0.832979,0.719398,0.88899,0.0588053,0.614486,0.270176,0.937285,0.431979,0.170316,0.20961,0.553125,0.704015,0.0613778,0.800357,0.652546,0.426804,0.132224,0.311865,0.8602,0.803005,0.376033,0.0452402,0.65069,0.158421,0.988878,0.676646,0.522555,0.229812,0.858861,0.0199475,0.0274312,0.859202,0.957177,0.600598,0.796466,0.806552,0.521261,0.28472,0.0119681,0.160598,0.0979012,0.661862,0.488945,0.551874,0.169267,0.0739444,0.550321,0.717695,0.272313,0.98898,0.183972,0.0929396,0.397911,0.571065,0.691512,0.108868,0.274287,0.606891,0.872497,0.815887,0.47141,0.968046,0.162116,0.899437,0.732378,0.872389,0.499644,0.161897,0.48364,0.0713438,0.947344,0.185183,0.117823,0.764405,0.139476,0.913462,0.946443,0.862322,0.432738,0.842376,0.93345,0.70374,0.190948,0.411761,0.247583,0.221075,0.219472,0.05626,0.214078,0.923952,0.790378,0.628095,0.560357,0.388324,0.830494,0.547712,0.978699,0.466203,0.546337,0.52262,0.289161,0.425104,0.622516,0.515522,0.263155,0.894235,0.334749,0.789832,0.686897,0.646632,0.982307,0.433813,0.450652,0.431925,0.148986,0.913402,0.988443,0.848399,0.410222,0.0800799,0.518979,0.685461,0.386194,0.870042,0.639518,0.785628,0.625673,0.0883045,0.401562,0.239989,0.966641,0.265538,0.305815,0.560934,0.309053,0.466382,0.0239852,0.889189,0.90127,0.459882,0.519978,0.56159,0.435732,0.880724,0.447683,0.82518,0.350084,0.447978,0.864422,0.473326,0.421727,0.566683,0.625846,0.253426,0.0855125,0.95155,0.428142,0.726268,0.242967,0.366657,0.49271,0.470848,0.0232064,0.562004,0.42781,0.447589,0.480186,0.063799,0.0362756,0.993486,0.815187,0.0476484,0.239083,0.110525,0.657984,0.138657,0.797183,0.47687,0.703148,0.820027,0.22652,0.202477,0.80173,0.237706,0.28251,0.972478,0.385454,0.330106,0.496104,0.424876,0.779734,0.378505,0.684347,0.0431083,0.6233,0.505316,0.0566701,0.644286,0.604878,0.0067094,0.442641,0.069117,0.161855,0.479761,0.137504,0.720937,0.145244,0.685051,0.0352736,0.656569,0.0771019,0.978709,0.716414,0.47876,0.941474,0.997195,0.911965,0.948838,0.790307,0.362828,0.584916,0.211772,0.411894,0.807646,0.150904,0.801621,0.116518,0.123237,0.439337,0.32644,0.332743,0.165024,0.701681,0.000721991,0.176609,0.257441,0.671967,0.326441,0.734746,0.286817,0.259457,0.351329,0.747363,0.872994,0.0508464,0.0706776,0.691653,0.637028,0.333467,0.0504374,0.652398,0.441566,0.0270983,0.108279,0.234285,0.0267969,0.843512,0.00320816,0.0564442,0.517561,0.0598631,0.406108,0.359527,0.312403,0.488285,0.652432,0.755864,0.739054,0.987216,0.849598,0.31659,0.842559,0.877396,0.118985,0.00657684,0.794776,0.645803,0.105726,0.645108,0.911107,0.944791,0.604928,0.890668,0.202151,0.144372,0.395279,0.0109338,0.942838,0.556251,0.571876,0.721458,0.1634,0.644492,0.831366,0.441235,0.259755,0.397039,0.479336,0.290272,0.548032,0.143918,0.901245,0.244622,0.250042,0.00759137,0.464474,0.410619,0.508071,0.265981,0.0142939,0.424267,0.944725,0.426059,0.727038,0.0923985,0.485438,0.151447,0.360872,0.999837,0.0653142,0.747847,0.892045,0.969771,0.0981669,0.353344,0.810818,0.491863,0.840205,0.846022,0.105621,0.715376,0.282601,0.385325,0.76698,0.724069,0.201995,0.654035,0.771769,0.587863,0.67986,0.41346,0.696665,0.963348,0.25865,0.176497,0.216084,0.414813,0.046207,0.0807261,0.96471,0.791139,0.0144078,0.205526,0.304196,0.143145,0.646049,0.735572,0.70506,0.96161,0.582508,0.685531,0.354113,0.786529,0.273606,0.851533,0.313399,0.277978,0.0914521,0.708456,0.934687,0.278578,0.257697,0.896201,0.959226,0.0893255,0.697647,0.280645,0.017985,0.571137,0.615144,0.216217,0.216079,0.956689,0.794505,0.609415,0.359551,0.394859,0.0297282,0.713894,0.316126,0.470427,0.437052,0.40889,0.628958,0.277415,0.510373,0.341838,0.525647,0.68382,0.892466,0.46825,0.815375,0.00373608,0.336861,0.487822,0.425773,0.315099,0.587176,0.392913,0.383157,0.781651,0.24879,0.440012,0.689675,0.54504,0.979297,0.667964,0.0612407,0.500215,0.689695,0.67889,0.13287,0.391421,0.746816,0.403174,0.315975,0.981908,0.288719,0.223524,0.467231,0.739702,0.0377447,0.366576,0.697575,0.883166,0.403797,0.413138,0.248665,0.940671,0.519079,0.868253,0.615496,0.167631,0.30916,0.918306,0.212063,0.451151,0.125466,0.926983,0.171388,0.0128168,0.573055,0.250655,0.595172,0.451051,0.474421,0.288804,0.799997,0.00678474,0.14232,0.232565,0.370899,0.530339,0.861667,0.54997,0.185057,0.540298,0.369963,0.692207,0.23946,0.940875,0.483282,0.683726,0.27879,0.734322,0.149178,0.230859,0.125464,0.553181,0.426878,0.577452,0.98648,0.807672,0.182215,0.691752,0.470039,0.399375,0.967063,0.151316,0.352661,0.124787,0.6472,0.744368,0.596541,0.524074,0.318104,0.584295,0.810541,0.252714,0.362262,0.274767,0.751155,0.262552,0.651595,0.517797,0.44304,0.587687,0.226446,0.585243,0.145287,0.208007,0.99992,0.447515,0.999136,0.279357,0.424539,0.311906,0.376314,0.710124,0.67823,0.945356,0.473573,0.0414466,0.92674,0.177085,0.816601,0.0914423,0.161052,0.478164,0.360951,0.978835,0.730091,0.521536,0.450303,0.480181,0.291566,0.763529,0.782536,0.760758,0.541593,0.340752,0.709303,0.981266,0.0959645,0.838558,0.174553,0.607528,0.532163,0.285733,0.337624,0.355274,0.197031,0.942097,0.420118,0.263507,0.000407755,0.853826,0.199145,0.967773,0.488576,0.883395,0.564695,0.943065,0.261514,0.926504,0.672794,0.718059,0.652764,0.804526,0.709466,0.781492,0.86025,0.391096,0.310928,0.869093,0.0353983,0.802114,0.269134,0.454159,0.877871,0.11965,0.311393,0.869735,0.923276,0.0259906,0.627486,0.109548,0.129955,0.0243939,0.914069,0.658608,0.48493,0.903114,0.856848,0.419229,0.127443,0.743347,0.211199,0.250633,0.333523,0.894817,0.517986,0.705473,0.255968,0.0274432,0.70677,0.16802,0.713476,0.422691,0.204514,0.978172,0.975087,0.869069,0.239927,0.530324,0.232796,0.945794,0.125273,0.384071,0.205988,0.239741,0.701394,0.0812274,0.0221883,0.348648,0.349907,0.968604,0.956176,0.0300149,0.173844,0.926793,0.11296,0.38423,0.263948,0.0386961,0.0621622,0.850701,0.573868,0.734435,0.848905,0.370854,0.258322,0.877852,0.702768,0.0711353,0.618032,0.561832,0.0384907,0.952323,0.229755,0.0153244,0.81835,0.14406,0.199698,0.321216,0.515706,0.971055,0.321482,0.263093,0.392565,0.0491814,0.328305,0.931518,0.991064,0.0628045,0.942072,0.877556,0.951002,0.0885205,0.75017,0.0622856,0.804888,0.160837,0.893736,0.483259,0.765327,0.187868,0.964215,0.815603,0.0276132,0.371952,0.454019,0.814326,0.300947,0.803323,0.629752,0.859108,0.919682,0.361622,0.128999,0.122402,0.0955147,0.912951,0.751391,0.764075,0.404477,0.626418,0.146304,0.625562,0.293277,0.307725,0.921945,0.780343,0.280261,0.830209,0.196471,0.711698,0.209007,0.828519,0.00252342,0.426951,0.326759,0.648201,0.644855,0.862763,0.477487,0.358209,0.434535,0.411435,0.51967,0.623531,0.0393973,0.0731041,0.718943,0.533139,0.229227,0.279718,0.559617,0.109539,0.708306,0.412471,0.956017,0.885163,0.254593,0.65642,0.063024,0.531851,0.385348,0.0214741,0.417642,0.793329,0.916619,0.250489,0.86108,0.431929,0.397835,0.663837,0.840645,0.668514,0.984064,0.342873,0.377582,0.241636,0.0430959,0.316408,0.125013,0.149845,0.118548,0.793841,0.397841,0.608624,0.816552,0.23757,0.379496,0.26376,0.557669,0.572175,0.453984,0.898572,0.673109,0.427388,0.898091,0.58997,0.400142,0.407146,0.384342,0.0540466,0.00358713,0.0322974,0.528034,0.00820899,0.253063,0.528647,0.946939,0.922541,0.20225,0.647096,0.865881,0.838465,0.0151802,0.216044,0.829894,0.47829,0.398644,0.139564,0.598824,0.178681,0.741699,0.477759,0.800417,0.128216,0.814328,0.185267,0.598827,0.348641,0.358124,0.321168,0.507341,0.475205,0.691345,0.837536,0.82973,0.757965,0.976992,0.121283,0.128889,0.931611,0.460747,0.96104,0.4947,0.670579,0.255687,0.244436,0.772357,0.0485588,0.055169,0.0476013,0.0539435,0.339636,0.879794,0.891831,0.529577,0.819191,0.871295,0.369777,0.468907,0.182304,0.913105,0.597406,0.568078,0.986295,0.831979,0.0416767,0.663616,0.115055,0.135144,0.364421,0.814169,0.0736584,0.440773,0.263921,0.00511116,0.6028,0.63649,0.561749,0.280679,0.0538008,0.193139,0.345629,0.913378,0.563571,0.526618,0.883334,0.376115,0.0314919,0.677746,0.770421,0.933211,0.467835,0.189405,0.231736,0.606716,0.515572,0.932381,0.956115,0.987387,0.241141,0.56597,0.697648,0.261487,0.252454,0.434422,0.835279,0.599095,0.154844,0.539434,0.303504,0.26742,0.980683,0.0454918,0.471821,0.609707,0.960304,0.885376,0.699293,0.303934,0.367373,0.777257,0.464306,0.00133234,0.728183,0.0695258,0.112789,0.328014,0.959465,0.558782,0.519719,0.290712,0.115019,0.974071,0.984026,|0.107588,0.823107,0.753761,0.584719,0.441878,0.587607,0.622783,0.780544,0.709178,0.670094,0.808209,0.409093,0.419888,0.956175,0.833867,0.245761,0.0287934,0.0480136,0.638082,0.200413,0.0333614,0.0931433,0.582359,0.486349,0.21541,0.595905,0.0710276,0.168525,0.640739,0.879815,0.434063,0.625904,0.731042,0.636535,0.928562,0.674656,0.772371,0.0606828,0.396725,0.513919,0.834131,0.538899,0.803686,0.310969,0.277421,0.924447,0.0545924,0.822662,0.222398,0.0205783,0.126315,0.628129,0.40283,0.651509,0.735277,0.542287,0.831943,0.830422,0.024291,0.612269,0.22435,0.424551,0.593607,0.418752,0.264869,0.850718,0.376217,0.94693,0.182909,0.730795,0.573106,0.756122,0.32428,0.632899,0.612335,0.527541,0.766338,0.99654,0.0877898,0.647906,0.446064,0.13599,0.606774,0.0617875,0.969706,0.373481,0.366551,0.823709,0.1655,0.415494,0.18729,0.542583,0.608533,0.764116,0.443825,0.0707181,0.177117,0.705326,0.487487,0.460235,0.267974,0.0767595,0.954404,0.246688,0.601105,0.457141,0.139371,0.515382,0.438464,0.0606529,0.63267,0.652552,0.428313,0.925874,0.317608,0.438077,0.186987,0.229514,0.00461781,0.714834,0.79209,0.0837941,0.390609,0.156706,0.000339866,0.215482,0.244492,0.2474,0.645922,0.872759,0.625972,0.152958,0.846358,0.945713,0.281305,0.188729,0.507791,0.734356,0.998753,0.477568,0.829851,0.713064,0.871957,0.737232,0.923474,0.088469,0.714738,0.58326,0.613313,0.267459,0.860182,0.576162,0.530318,0.690388,0.556362,0.043317,0.686548,0.543586,0.628823,0.899299,0.705956,0.114476,0.2857,0.558227,0.895516,0.980024,0.570168,0.809846,0.934624,0.953176,0.845443,0.426113,0.127286,0.952094,0.775678,0.194925,0.00126004,0.432586,0.508144,0.532553,0.0904418,0.605194,0.356886,0.722272,0.583793,0.53269,0.594483,0.857693,0.124948,0.268657,0.134838,0.882486,0.906863,0.501407,0.638009,0.889372,0.391855,0.633319,0.212507,0.430762,0.310187,0.28433,0.0131224,0.361695,0.585856,0.104068,0.636642,0.768033,0.776044,0.424509,0.873889,0.719708,0.297339,0.162242,0.0292915,0.534056,0.12311,0.0180624,0.888969,0.106552,0.319468,0.519658,0.769555,0.549987,0.180286,0.264081,0.992294,0.513169,0.677824,0.42812,0.913742,0.85036,0.0457454,0.816531,0.372414,0.492645,0.448207,0.276195,0.97975,0.510991,0.401124,0.997268,0.601411,0.71449,0.469543,0.964234,0.00806206,0.993335,0.0683421,0.561224,0.235566,0.946822,0.22013,0.830606,0.0775455,0.963721,0.355812,0.640422,0.183686,0.473168,0.548183,0.905883,0.233341,0.167757,0.00837344,0.909382,0.12104,0.181669,0.782315,0.297218,0.586305,0.0599092,0.824599,0.261981,0.552076,0.795948,0.847345,0.959525,0.290382,0.268881,0.613342,0.973034,0.0391255,0.637609,0.600964,0.327622,0.12568,0.93554,0.819829,0.329515,0.803615,0.799836,0.221703,0.722081,0.603724,0.0496998,0.630216,0.93056,0.934037,0.870176,0.708308,0.21977,0.622409,0.103137,0.264147,0.47302,0.494077,0.805274,0.206393,0.998046,0.402874,0.699555,0.693789,0.196777,0.0599445,0.243211,0.361354,0.935173,0.944545,0.670038,0.0741806,0.974838,0.891795,0.0468561,0.799071,0.922774,0.840856,0.960399,0.247766,0.4028,0.795871,0.652508,0.153162,0.241697,0.778218,0.659448,0.867327,0.107379,0.211961,0.0333132,0.204522,0.22667,0.474066,0.944249,0.378369,0.878835,0.470607,0.247033,0.431663,0.787904,0.75077,0.69804,0.292834,0.847247,0.390089,0.434997,0.550546,0.559281,0.619915,0.97234,0.339408,0.80105,0.109429,0.404233,0.088676,0.577598,0.752317,0.303955,0.0947651,0.882107,0.99585,0.194005,0.589862,0.833053,0.340952,0.0423208,0.237472,0.276602,0.830249,0.739551,0.178616,0.754623,0.575293,0.535434,0.536192,0.781128,0.197478,0.608094,0.275791,0.863233,0.500456,0.374572,0.53692,0.714813,0.291974,0.467812,0.443407,0.805602,0.945415,0.198012,0.272984,0.859243,0.386186,0.833232,0.773441,0.905901,0.771408,0.188017,0.187583,0.0765504,0.967147,0.515061,0.226402,0.334974,0.132287,0.127988,0.298604,0.628215,0.578897,0.324944,0.486916,0.155957,0.219941,0.215611,0.72704,0.963588,0.422408,0.899865,0.782433,0.0395353,0.977509,0.812832,0.870091,0.763554,0.971022,0.476686,0.748171,0.600879,0.98327,0.644696,0.982309,0.643166,0.171866,0.186506,0.310009,0.0132524,0.26767,0.0907556,0.355197,0.267212,0.806746,0.786405,0.628051,0.222849,0.0209569,0.325284,0.272081,0.35878,0.784336,0.22165,0.189378,0.951824,0.724417,0.873851,0.583246,0.11213,0.747749,0.970202,0.90098,0.181394,0.921615,0.37929,0.733835,0.0863613,0.0635559,0.106373,0.836425,0.528814,0.704982,0.630365,0.569744,0.66826,0.472079,0.362414,0.124143,0.234976,0.368217,0.545673,0.715806,0.748789,0.994897,0.0321641,0.33905,0.650918,0.965216,0.421662,0.0772294,0.804091,0.823898,0.70077,0.113752,0.400203,0.121652,0.0302357,0.524847,0.736408,0.0412932,0.509138,0.612829,0.834731,0.198989,0.981353,0.909155,0.793261,0.599348,0.182799,0.21465,0.328116,0.955092,0.487892,0.239659,0.531875,0.227118,0.326519,0.227703,0.658124,0.568637,0.152542,0.963343,0.107602,0.200876,0.694143,0.519614,0.623394,0.798786,0.460982,0.524582,0.0773426,0.165952,0.574953,0.177066,0.688916,0.0414438,0.400194,0.345956,0.115985,0.901265,0.53362,0.610582,0.690631,0.750759,0.643466,0.128967,0.284002,0.616256,0.631332,0.403714,0.826042,0.940619,0.826175,0.29544,0.537291,0.65303,0.612355,0.858958,0.559073,0.593863,0.830421,0.817933,0.0892011,0.391444,0.396851,0.36805,0.892055,0.145153,0.312091,0.349901,0.840499,0.0769556,0.158449,0.016643,0.393699,0.721546,0.470434,0.924512,0.984578,0.418011,0.448408,0.560571,0.131845,0.785631,0.52421,0.468278,0.961399,0.743185,0.638611,0.0937142,0.454503,0.550016,0.337678,0.166113,0.710762,0.815376,0.723172,0.641009,0.0201735,0.296633,0.374121,0.112412,0.82267,0.304785,0.303555,0.0234987,0.0204055,0.716596,0.928976,0.57645,0.169769,0.652627,0.296012,0.790222,0.319319,0.57655,0.671485,0.164325,0.785087,0.784516,0.924392,0.015982,0.233921,0.222237,0.0170597,0.246133,0.542226,0.877859,0.839408,0.89662,0.147978,0.671665,0.956653,0.528096,0.160499,0.0429144,0.745725,0.479008,0.647864,0.166546,0.64477,0.677291,0.784007,0.0924761,0.240817,0.698477,0.212505,0.646758,0.882575,0.975883,0.540496,0.549985,0.840945,0.89829,0.0133708,0.561633,0.161957,0.566332,0.213389,0.109764,0.745312,0.540384,0.873617,0.75085,0.827723,0.964842,0.340576,0.591635,0.0688405,0.542172,0.572165,0.122354,0.770224,0.0729914,0.915328,0.576427,0.743641,0.202139,0.132042,0.494832,0.459103,0.323116,0.754154,0.532569,0.189201,0.775472,0.668656,0.91255,0.779521,0.708293,0.335685,0.761663,0.782367,0.745188,0.408535,0.566984,0.565993,0.0496089,0.0709262,0.864361,0.701315,0.178394,0.911037,0.654073,0.757297,0.860096,0.0307285,0.346347,0.583674,0.562548,0.190375,0.856198,0.478744,0.710493,0.0149575,0.727039,0.761409,0.0755669,0.860376,0.374506,0.00567526,0.0142439,0.0812784,0.511107,0.726547,0.667037,0.0935363,0.826621,0.111559,0.132348,0.465525,0.827752,0.340338,0.891272,0.766122,0.521378,0.0228531,0.714425,0.671969,0.65449,0.872428,0.39202,0.170115,0.850934,0.837216,0.682123,0.431846,0.726844,0.585854,0.914762,0.346775,0.47916,0.0018602,0.681298,0.475496,0.576872,0.871117,0.6044,0.856091,0.730704,0.695243,0.887094,0.862202,0.884017,0.40753,0.475217,0.834054,0.883552,0.622545,0.0213566,0.904676,0.632235,0.496862,0.465919,0.842711,0.819092,0.375398,0.545672,0.352879,0.786013,0.854695,0.595409,0.0119625,0.0475643,0.780492,0.837045,0.40709,0.973523,0.318924,0.822255,0.750526,0.100435,0.045542,0.648517,0.738577,0.427789,0.753618,0.0779811,0.872291,0.880327,0.938141,0.822511,0.181216,0.057034,0.730919,0.245566,0.24963,0.63732,0.0936686,0.296211,0.322814,0.970335,0.679638,0.649842,0.706837,0.583553,0.189246,0.1592,0.664819,0.419798,0.0972624,0.54364,0.130681,0.402899,0.212977,0.942801,0.894218,0.433864,0.0387206,0.832742,0.713754,0.245387,0.83542,0.755396,0.405159,0.421143,0.312322,0.12145,0.716626,0.971434,0.661874,0.278738,0.830727,0.976236,0.908368,0.624606,0.383499,0.947647,0.801223,0.218183,0.699271,0.0768142,0.923299,0.560266,0.918314,0.361894,0.959633,0.742544,0.211461,0.891844,0.547098,0.327805,0.730037,0.942225,0.114681,0.153335,0.581803,0.072777,0.0668616,0.0844818,0.0353251,0.970458,0.851981,0.714747,0.335825,0.406466,0.520288,0.570356,0.548728,0.548899,0.566491,0.914746,0.152027,0.145207,0.862565,0.932121,0.703393,0.171381,0.460341,0.540902,0.0438164,0.367024,0.335905,0.711978,0.458617,0.333548,0.995237,0.481548,0.723934,0.299571,0.398321,0.465562,0.394156,0.938211,0.561015,0.196968,0.0105066,0.583733,0.232683,0.607614,0.344831,0.788832,0.904272,0.850203,0.943621,0.715715,0.0779815,0.229796,0.363444,0.525259,0.599051,0.808848,0.107436,0.459052,0.813426,0.0694879,0.0165258,0.633917,0.791942,0.794061,0.130971,0.780301,0.328954,0.728712,0.626023,0.0967444,0.357335,0.553997,0.521128,0.267598,0.580443,0.283755,0.346538,0.117288,0.316764,0.294677,0.737531,0.388694,0.690406,0.181491,0.83905,0.629825,0.554403,0.216089,0.65969,0.620575,0.0256423,0.607063,0.869057,0.35983,0.363352,0.935867,0.910505,0.227564,0.0670258,0.953317,0.910466,0.991032,0.10053,0.247244,0.291434,0.367021,0.082577,0.458855,0.667114,0.680666,0.0457629,0.64593,0.240976,0.243982,0.207846,0.162566,0.475906,0.94603,0.32476,0.333511,0.0281024,0.82993,0.516962,0.212553,0.00719959,0.128688,0.0811254,|0.306808,0.723607,0.808999,0.232033,0.701434,0.1989,0.203727,0.615399,0.555109,0.0688368,0.995356,0.80722,0.15816,0.497278,0.7534,0.736161,0.250692,0.63356,0.256398,0.8362,0.943827,0.418211,0.99473,0.231771,0.527834,0.758704,0.06235,0.669805,0.796329,0.356842,0.853634,0.0328573,0.427291,0.556024,0.541293,0.111986,0.867243,0.242293,0.530111,0.488743,0.25211,0.24763,0.0856019,0.233488,0.956398,0.548555,0.286002,0.0376655,0.592999,0.715485,0.230195,0.904476,0.208234,0.846583,0.0491742,0.227466,0.735136,0.800737,0.488171,0.82163,0.0193685,0.851631,0.591199,0.895188,0.178839,0.250988,0.962182,0.332227,0.0965796,0.678297,0.814734,0.224829,0.206972,0.638912,0.457311,0.318464,0.478522,0.210241,0.631343,0.0669684,0.945751,0.798784,0.676884,0.25274,0.51519,0.798029,0.557309,0.963166,0.664987,0.0468022,0.690738,0.552791,0.45133,0.897772,0.589466,0.115399,0.611572,0.285735,0.0672659,0.175338,0.7935,0.735671,0.328066,0.916627,0.644748,0.55614,0.624461,0.245322,0.597402,0.131884,0.799359,0.655846,0.986341,0.286271,0.767324,0.794769,0.258689,0.25763,0.325695,0.977471,0.616623,0.542319,0.437456,0.0140002,0.252409,0.382496,0.753295,0.644193,0.0401241,0.707732,0.295046,0.9123,0.32818,0.710272,0.619616,0.0316944,0.345769,0.695298,0.608554,0.931569,0.487404,0.993074,0.955861,0.0911928,0.360665,0.26134,0.333997,0.273621,0.793882,0.163415,0.6862,0.708227,0.237487,0.0992521,0.013367,0.555365,0.380558,0.519786,0.782942,0.200099,0.912207,0.588705,0.0381546,0.797566,0.367221,0.503987,0.547287,0.654318,0.855328,0.860167,0.191174,0.91016,0.381091,0.750846,0.135676,0.653488,0.00399858,0.640149,0.167887,0.94551,0.19257,0.604007,0.242788,0.924508,0.764598,0.69536,0.658581,0.529661,0.668573,0.9592,0.782989,0.935727,0.968458,0.731269,0.366791,0.596563,0.733287,0.251517,0.538789,0.596609,0.0106161,0.128003,0.70322,0.00143534,0.159679,0.758599,0.0767717,0.896263,0.804228,0.664082,0.744464,0.194983,0.0696018,0.893048,0.943189,0.379726,0.0714467,0.942832,0.109554,0.470632,0.874319,0.801778,0.109817,0.172429,0.80362,0.695628,0.313647,0.746247,0.182766,0.745809,0.691371,0.962911,0.549231,0.0249574,0.219746,0.301233,0.488327,0.0322087,0.878911,0.54232,0.87924,0.522892,0.326896,0.933476,0.399363,0.999512,0.132966,0.553661,0.576947,0.379443,0.815015,0.0894777,0.267244,0.829063,0.496305,0.944688,0.933204,0.323681,0.420176,0.0670438,0.277156,0.181258,0.405346,0.274169,0.420434,0.850523,0.720234,0.65897,0.771486,0.604986,0.573494,0.235313,0.724884,0.00985277,0.762583,0.65327,0.431008,0.264812,0.324673,0.203327,0.0478115,0.330279,0.592049,0.0852241,0.0928686,0.516197,0.641857,0.769559,0.808919,0.243625,0.584909,0.702604,0.564517,0.582367,0.0446768,0.359852,0.949758,0.544658,0.0316352,0.357669,0.632378,0.0818375,0.610058,0.435512,0.491432,0.610845,0.472855,0.558967,0.919001,0.24467,0.648316,0.062888,0.601699,0.785563,0.501701,0.0615942,0.222148,0.156897,0.837211,0.688395,0.665118,0.515373,0.0528531,0.341899,0.0628101,0.976173,0.297345,0.600412,0.967996,0.193229,0.101528,0.0227678,0.359477,0.536169,0.427177,0.649485,0.352292,0.443937,0.188694,0.302522,0.421513,0.610067,0.334658,0.168669,0.607018,0.655053,0.896493,0.896014,0.439574,0.183755,0.854695,0.161328,0.92502,0.594057,0.920225,0.107315,0.90022,0.772164,0.526382,0.620818,0.286426,0.0515087,0.0490896,0.129837,0.503809,0.251135,0.688816,0.507122,0.341428,0.0603203,0.962133,0.434692,0.174835,0.183168,0.787992,0.571736,0.806534,0.0987061,0.466067,0.174078,0.680728,0.876544,0.0663734,0.192275,0.606287,0.0735903,0.873899,0.0508808,0.844235,0.56147,0.733977,0.482948,0.426002,0.0741242,0.30019,0.720723,0.799763,0.820358,0.0240925,0.322183,0.508455,0.51278,0.580861,0.679573,0.776512,0.481798,0.139966,0.0976254,0.582179,0.880986,0.800844,0.157825,0.0453963,0.332651,0.905898,0.346427,0.578349,0.0336716,0.335783,0.116259,0.728233,0.307723,0.459638,0.153765,0.365182,0.0188007,0.325196,0.612805,0.451224,0.799846,0.934529,0.866261,0.921457,0.417305,0.339802,0.451266,0.525208,0.734901,0.172213,0.460217,0.0987061,0.511234,0.527453,0.175304,0.605626,0.644567,0.848117,0.981775,0.905135,0.185591,0.845788,0.0434873,0.877321,0.942807,0.407168,0.0646198,0.0752075,0.535719,0.0729837,0.173456,0.866982,0.449146,0.325505,0.745504,0.494924,0.145476,0.228383,0.232043,0.838877,0.356767,0.739987,0.523467,0.823563,0.20196,0.685511,0.407076,0.968684,0.407688,0.186051,0.891582,0.643852,0.29424,0.82094,0.640771,0.417898,0.95858,0.587969,0.866018,0.148177,0.706699,0.815595,0.735353,0.169969,0.72834,0.904415,0.84124,0.646579,0.566043,0.337111,0.341209,0.679325,0.318077,0.21493,0.216761,0.256372,0.388857,0.788777,0.928698,0.457884,0.201148,0.243815,0.67064,0.0102471,0.160082,0.940037,0.528208,0.707507,0.94903,0.088873,0.0154965,0.0962616,0.0582612,0.171384,0.945981,0.567943,0.908415,0.622803,0.910951,0.315535,0.662641,0.975771,0.356488,0.253105,0.190641,0.619354,0.327818,0.700083,0.885013,0.742477,0.487407,0.62987,0.251769,0.0538838,0.985838,0.412093,0.08255,0.492602,0.0654881,0.302464,0.395824,0.708596,0.291848,0.358977,0.925162,0.37676,0.502111,0.972229,0.65071,0.630638,0.433188,0.232631,0.787493,0.161541,0.667737,0.508919,0.349316,0.0486979,0.910759,0.586834,0.177335,0.687982,0.118241,0.391213,0.388932,0.927511,0.620424,0.513873,0.885472,0.307416,0.335845,0.128887,0.157335,0.492631,0.342522,0.830437,0.197418,0.183556,0.599414,0.665446,0.763798,0.925554,0.129788,0.610793,0.071126,0.151964,0.777827,0.875535,0.957034,0.752715,0.905717,0.688497,0.146639,0.45244,0.356096,0.63658,0.24405,0.659635,0.39092,0.290986,0.392594,0.149265,0.696638,0.760124,0.758757,0.965094,0.282198,0.567691,0.640734,0.621468,0.696342,0.345224,0.692741,0.269696,0.0845937,0.00736088,0.8344,0.222668,0.204046,0.923019,0.925683,0.430178,0.0719371,0.470145,0.916951,0.142047,0.762367,0.546955,0.942668,0.33389,0.696294,0.99506,0.104045,0.204913,0.439767,0.253679,0.793792,0.181851,0.582749,0.456414,0.0625797,0.706333,0.0562963,0.616434,0.36278,0.64028,0.273662,0.858339,0.994336,0.732122,0.746936,0.871321,0.759761,0.0898973,0.671208,0.110746,0.876382,0.353323,0.860893,0.938652,0.846096,0.962841,0.844552,0.549797,0.921463,0.328577,0.229344,0.0856451,0.193387,0.101984,0.972975,0.832196,0.574919,0.106365,0.768298,0.168266,0.486634,0.850331,0.630056,0.562743,0.585434,0.00907189,0.146233,0.670229,0.180561,0.630861,0.106524,0.807451,0.199463,0.542181,0.335132,0.213107,0.532778,0.968393,0.91354,0.268805,0.597258,0.564072,0.792159,0.990162,0.944103,0.587433,0.437537,0.804851,0.705444,0.976879,0.699457,0.0010187,0.46026,0.0940675,0.730564,0.114243,0.48708,0.490368,0.250176,0.423699,0.0928825,0.105458,0.297726,0.207648,0.859157,0.93923,0.106848,0.594381,0.182966,0.317936,0.046055,0.376861,0.0726996,0.0845557,0.214864,0.500674,0.875223,0.15371,0.866382,0.243855,0.0618504,0.0771065,0.700571,0.0207404,0.164538,0.246004,0.972478,0.695218,0.865601,0.448314,0.718305,0.781849,0.424575,0.0971846,0.494105,0.36728,0.669306,0.119123,0.0325661,0.840966,0.0460625,0.253637,0.748305,0.633682,0.919692,0.724192,0.622624,0.220582,0.0111051,0.671198,0.177828,0.735788,0.851419,0.14133,0.00204778,0.127294,0.601136,0.129141,0.113369,0.428927,0.614718,0.987905,0.0347729,0.550651,0.00581324,0.623502,0.757906,0.373812,0.647612,0.0630631,0.43753,0.925092,0.445595,0.588001,0.371505,0.777709,0.854831,0.427888,0.454318,0.236825,0.471727,0.676013,0.956202,0.563036,0.107727,0.456911,0.661242,0.496342,0.241027,0.955649,0.200914,0.186329,0.135045,0.634338,0.202541,0.59361,0.832872,0.541782,0.484477,0.527593,0.742997,0.36431,0.886392,0.246499,0.14658,0.0882913,0.912561,0.726602,0.773372,0.177388,0.585136,0.771856,0.99043,0.276245,0.250684,0.413472,0.3152,0.0243956,0.631229,0.537212,0.940803,0.411681,0.954588,0.945352,0.855417,0.968481,0.0304291,0.336172,0.111518,0.163496,0.244075,0.475474,0.313669,0.574803,0.394956,0.903491,0.87574,0.575676,0.304617,0.213879,0.626644,0.490736,0.987298,0.0312417,0.232943,0.833568,0.239641,0.428818,0.138377,0.819009,0.672182,0.315731,0.561457,0.0904858,0.980648,0.203964,0.126825,0.778855,0.114056,0.829404,0.131491,0.493217,0.683371,0.681084,0.846061,0.719351,0.0406443,0.806292,0.418712,0.254819,0.0281115,0.900524,0.334811,0.464855,0.0138894,0.890937,0.942584,0.0240141,0.632178,0.215268,0.762837,0.501545,0.88034,0.350729,0.266843,0.646839,0.317974,0.328744,0.623736,0.223977,0.317864,0.398515,0.263757,0.279646,0.606957,0.7199,0.738978,0.85768,0.620219,0.67133,0.315439,0.439145,0.468718,0.920546,0.367141,0.0571366,0.175949,0.151606,0.815632,0.639595,0.103495,0.253527,0.900049,0.82934,0.623986,0.0383791,0.228869,0.0551435,0.10488,0.511126,0.841069,0.702923,0.783319,0.931678,0.754364,0.141823,0.713246,0.138364,0.179674,0.0541608,0.216211,0.0772308,0.836822,0.994393,0.479356,0.0261589,0.618996,0.588785,0.295644,0.204006,0.220222,0.00639492,0.533816,0.469067,0.0531688,0.361052,0.12699,0.456431,0.935666,0.706103,0.915124,0.562845,0.531962,0.218232,0.801602,0.965357,0.00474554,0.628017,0.160547,0.640839,0.674535,0.429598,0.553475,0.12899,0.353151,0.495407,0.973667,0.783808,0.263169,0.777706,0.830648,0.511145,0.638542,0.898921,0.113048,|0.978749,0.290011,0.496087,0.944987,0.45065,0.144451,0.765432,0.279495,0.560225,0.57215,0.462843,0.614312,0.864988,0.800227,0.0930836,0.755215,0.293343,0.149393,0.460877,0.00256062,0.934526,0.392871,0.214495,0.296399,0.739704,0.152801,0.0663685,0.193784,0.379369,0.997408,0.0997686,0.204268,0.193023,0.819364,0.81939,0.752653,0.764851,0.281565,0.264861,0.194252,0.174284,0.350532,0.6359,0.0926308,0.881195,0.860626,0.706055,0.621957,0.303752,0.497959,0.206587,0.702772,0.0137756,0.736403,0.215295,0.905273,0.866889,0.542893,0.770528,0.89757,0.199448,0.784279,0.099482,0.719675,0.03802,0.290342,0.893122,0.238995,0.732689,0.788875,0.796695,0.0293894,0.856929,0.87087,0.119867,0.690119,0.587436,0.82477,0.467792,0.357026,0.610371,0.694565,0.520797,0.738499,0.377906,0.526391,0.0258709,0.121354,0.122648,0.807803,0.0674348,0.877621,0.607801,0.0244848,0.735645,0.169699,0.213629,0.347424,0.935916,0.906698,0.59418,0.795482,0.908979,0.862573,0.914978,0.803141,0.484775,0.918157,0.739526,0.601419,0.227718,0.324109,0.290364,0.0298576,0.75345,0.0802174,0.137375,0.0455521,0.249581,0.447684,0.542605,0.779379,0.640157,0.424179,0.97166,0.437158,0.407336,0.745366,0.329127,0.398846,0.0110887,0.254899,0.860143,0.902419,0.0641545,0.213427,0.637629,0.161366,0.375929,0.0482609,0.709292,0.0951486,0.938013,0.583953,0.574494,0.30505,0.256516,0.176974,0.69741,0.597123,0.63861,0.45728,0.0567139,0.212571,0.130585,0.960835,0.89107,0.759158,0.670574,0.70403,0.0943832,0.172739,0.792405,0.655296,0.569539,0.106494,0.188476,0.0173019,0.141909,0.943161,0.059087,0.400581,0.148993,0.522477,0.269611,0.688477,0.8191,0.655341,0.716677,0.418692,0.39315,0.844522,0.434738,0.112128,0.315231,0.475501,0.552768,0.688537,0.850277,0.396991,0.668341,0.472164,0.941345,0.635086,0.279702,0.637303,0.580944,0.343634,0.59928,0.613667,0.00780404,0.338156,0.103153,0.513546,0.0585576,0.940554,0.779292,0.431853,0.351227,0.594205,0.89587,0.0836558,0.412414,0.248894,0.371922,0.597749,0.986629,0.476959,0.484645,0.086941,0.746929,0.853673,0.138738,0.476212,0.261683,0.520172,0.0421721,0.682974,0.548021,0.748929,0.812485,0.363759,0.678701,0.00222987,0.0473766,0.0460748,0.179633,0.451573,0.356794,0.430549,0.848106,0.165432,0.377391,0.42817,0.42969,0.270667,0.865375,0.645261,0.659568,0.0488769,0.424691,0.794742,0.587003,0.0753049,0.490573,0.190878,0.288455,0.981636,0.221872,0.224216,0.484173,0.844657,0.461459,0.998081,0.0218396,0.162587,0.48701,0.541644,0.167472,0.564717,0.0617017,0.842798,0.617905,0.178815,0.125574,0.273045,0.276507,0.178407,0.66855,0.457111,0.751308,0.863878,0.0435446,0.129746,0.00647324,0.0922679,0.035916,0.814473,0.0200415,0.192982,0.838056,0.321689,0.73961,0.564602,0.849105,0.848204,0.199323,0.84868,0.606432,0.829332,0.397466,0.329643,0.366051,0.169059,0.196412,0.123281,0.759832,0.530359,0.851853,0.391252,0.129042,0.750852,0.136945,0.868741,0.15616,0.354877,0.0971944,0.120324,0.43155,0.580828,0.724547,0.558605,0.73296,0.178675,0.530082,0.853437,0.917742,0.543882,0.642474,0.670022,0.0472783,0.824966,0.841356,0.414559,0.715239,0.314979,0.506083,0.471191,0.748235,0.751017,0.201225,0.45439,0.449655,0.264439,0.267244,0.558792,0.572517,0.862248,0.411001,0.131275,0.766994,0.80422,0.84698,0.00635618,0.115839,0.421456,0.748835,0.670792,0.417391,0.214199,0.0542843,0.647404,0.673074,0.323346,0.651704,0.913318,0.414003,0.579992,0.611359,0.815867,0.521743,0.0877503,0.633697,0.0677087,0.115419,0.800704,0.828199,0.940832,0.725418,0.460476,0.994259,0.582594,0.602054,0.813366,0.0123937,0.343907,0.176051,0.545239,0.0807663,0.165888,0.101668,0.432417,0.00639057,0.932562,0.793118,0.864404,0.457209,0.116525,0.578508,0.933637,0.979711,0.450363,0.846896,0.950458,0.669934,0.234286,0.934935,0.355401,0.944972,0.512745,0.669414,0.295101,0.266642,0.768649,0.501419,0.926582,0.380781,0.848671,0.0934135,0.480266,0.637738,0.8404,0.711593,0.923391,0.30301,0.408584,0.402518,0.981593,0.994951,0.45067,0.0617318,0.947425,0.893482,0.927886,0.998846,0.0136529,0.758308,0.931863,0.930331,0.257849,0.356655,0.626744,0.971046,0.649508,0.818778,0.436425,0.833632,0.2123,0.314138,0.540963,0.130216,0.0404978,0.250142,0.239639,0.826284,0.196575,0.827907,0.103335,0.278515,0.788861,0.509844,0.56419,0.837415,0.271418,0.359478,0.42005,0.976232,0.286174,0.341726,0.851008,0.429479,0.855646,0.737751,0.679809,0.265787,0.311871,0.110594,0.205894,0.38508,0.135446,0.496807,0.671087,0.042146,0.0648379,0.151618,0.081016,0.0174753,0.212241,0.441835,0.343453,0.190023,0.272357,0.0603341,0.862687,0.445751,0.990238,0.915776,0.731143,0.07193,0.868665,0.10225,0.507956,0.892625,0.869227,0.295066,0.116998,0.375666,0.220389,0.224417,0.100408,0.6794,0.273483,0.451474,0.277267,0.979859,0.911563,0.559171,0.078675,0.281482,0.69284,0.471612,0.364988,0.431343,0.211058,0.168614,0.688449,0.0605428,0.677104,0.567126,0.907724,0.630291,0.595095,0.704902,0.580405,0.0425918,0.513518,0.608259,0.87645,0.453688,0.201582,0.0527704,0.47572,0.204768,0.693826,0.0224536,0.933506,0.31229,0.297113,0.301217,0.612572,0.269116,0.628769,0.0151887,0.456623,0.368046,0.726049,0.510027,0.840142,0.49151,0.424276,0.17835,0.769582,0.981175,0.893134,0.802767,0.429262,0.287885,0.982346,0.235116,0.263771,0.220495,0.382002,0.687763,0.339229,0.76948,0.985148,0.911206,0.744811,0.778305,0.715632,0.282133,0.107987,0.324871,0.376352,0.581076,0.887131,0.948065,0.456565,0.573725,0.877785,0.575812,0.391029,0.544753,0.326614,0.851375,0.255729,0.463979,0.0339739,0.634351,0.852863,0.409358,0.253681,0.411574,0.326336,0.623966,0.30576,0.384616,0.154888,0.0817841,0.647394,0.165357,0.779217,0.159706,0.186993,0.903867,0.2865,0.461482,0.036549,0.210234,0.99975,0.0118752,0.992822,0.75316,0.955285,0.231849,0.831397,0.319682,0.929291,0.0850117,0.507404,0.58294,0.51827,0.971408,0.677343,0.781638,0.1991,0.263515,0.43029,0.459845,0.751064,0.219416,0.399625,0.544043,0.670421,0.335372,0.66782,0.865576,0.835836,0.945097,0.354942,0.415623,0.709655,0.828974,0.809462,0.886027,0.506186,0.3943,0.11682,0.569793,0.0218397,0.123432,0.570428,0.109694,0.623387,0.743707,0.83187,0.651783,0.742467,0.0890313,0.238594,0.604604,0.185487,0.333391,0.493037,0.956661,0.154647,0.648471,0.480121,0.0624858,0.847203,0.197759,0.764107,0.388936,0.194913,0.165572,0.920853,0.211067,0.221035,0.380239,0.975591,0.922877,0.462184,0.282669,0.413838,0.410998,0.280711,0.154827,0.906121,0.281546,0.924095,0.809288,0.38504,0.922115,0.894913,0.779688,0.551581,0.481318,0.764119,0.685796,0.969341,0.596682,0.764169,0.111347,0.622485,0.105624,0.717856,0.56517,0.934569,0.396051,0.939401,0.8976,0.631832,0.611775,0.237529,0.715143,0.454174,0.0290977,0.815422,0.0895692,0.313208,0.947842,0.0593688,0.862067,0.30052,0.0437884,0.765385,0.0210193,0.398531,0.919462,0.920847,0.322515,0.979253,0.749127,0.392397,0.330405,0.979958,0.420198,0.0671541,0.030958,0.0487565,0.0366006,0.0374818,0.477847,0.223582,0.625515,0.372075,0.86449,0.165937,0.314984,0.394939,0.252207,0.621287,0.209065,0.825743,0.339351,0.633625,0.247671,0.015545,0.482096,0.100331,0.487077,0.0553075,0.108276,0.239622,0.00686091,0.363259,0.434934,0.922806,0.393835,0.770298,0.251227,0.151468,0.192428,0.908934,0.908255,0.434036,0.144713,0.118414,0.329104,0.837405,0.61437,0.308702,0.0238753,0.200513,0.464357,0.242817,0.150712,0.622617,0.73138,0.672867,0.0933309,0.697957,0.517719,0.99263,0.510922,0.778532,0.579316,0.816164,0.666147,0.696748,0.109384,0.484645,0.104229,0.239125,0.123635,0.094304,0.452656,0.0766869,0.742698,0.0935924,0.38561,0.0128471,0.539331,0.293428,0.188196,0.600939,0.618674,0.441018,0.518357,0.141817,0.667614,0.580325,0.62512,0.0643436,0.131024,0.546699,0.743364,0.0530072,0.527626,0.0807549,0.234715,0.823522,0.334436,0.703512,0.866425,0.605346,0.0183563,0.632854,0.289804,0.238214,0.369355,0.43562,0.704021,0.781308,0.396265,0.282266,0.349588,0.4595,0.272474,0.489986,0.043241,0.797978,0.581306,0.429845,0.668678,0.796934,0.437843,0.0276236,0.682647,0.917755,0.487046,0.48849,0.300804,0.917123,0.20669,0.946912,0.469009,0.0952076,0.776891,0.726765,0.527887,0.439589,0.525376,0.344334,0.851466,0.995111,0.35189,0.350384,0.616338,0.193461,0.834028,0.396925,0.747689,0.0571873,0.202853,0.143445,0.49159,0.822333,0.621336,0.798481,0.218317,0.799049,0.471462,0.266581,0.613951,0.546803,0.629023,0.569746,0.770886,0.85899,0.392181,0.208708,0.817008,0.124888,0.292337,0.0499898,0.887187,0.181433,0.644892,0.4018,0.222749,0.767047,0.591042,0.178576,0.226866,0.963318,0.609385,0.812468,0.699797,0.0440329,0.582568,0.241231,0.444499,0.339893,0.807846,0.840177,0.796524,0.629413,0.559766,0.923922,0.569658,0.538688,0.766067,0.537277,0.743922,0.397682,0.776005,0.916241,0.959131,0.0105444,0.0692886,0.898965,0.798941,0.568047,0.764888,0.944812,0.682872,0.315698,0.747325,0.546549,0.889952,0.353257,0.687147,0.269831,0.740774,0.317488,0.595994,0.936577,0.700952,0.0135666,0.99,0.00546819,0.523019,0.837264,0.370968,0.856493,0.508264,0.66366,0.658265,0.735399,0.992574,0.873055,0.677065,0.963557,0.637499,0.898235,0.499354,0.980666,0.396159,0.394151,0.139742,0.291869,0.943122,0.821351,0.189194,0.608697,0.402424,0.772637,0.127424,0.508268,|0.573494,0.972763,0.981596,0.14682,0.982755,0.246866,0.0915431,0.589096,0.989317,0.808996,0.576976,0.171768,0.626133,0.0219914,0.0802156,0.305707,0.700696,0.237156,0.550888,0.376069,0.6991,0.496026,0.86237,0.0333004,0.779224,0.104436,0.00175357,0.144196,0.766057,0.696924,0.589503,0.240152,0.888561,0.938558,0.399848,0.181947,0.334489,0.783971,0.207693,0.541335,0.123636,0.728718,0.0652761,0.2276,0.764443,0.264657,0.0643929,0.729991,0.518249,0.569587,0.955774,0.372888,0.151697,0.192085,0.606027,0.763111,0.463184,0.676548,0.647646,0.716528,0.186295,0.32499,0.29954,0.0876719,0.337022,0.819996,0.781555,0.773415,0.326789,0.437066,0.525071,0.116848,0.632601,0.653485,0.547705,0.591695,0.269685,0.800098,0.01612,0.405864,0.345177,0.114374,0.937148,0.977338,0.237866,0.233301,0.588247,0.169939,0.215328,0.53389,0.186984,0.584976,0.52523,0.0511278,0.411031,0.602138,0.538735,0.314763,0.742941,0.238009,0.447837,0.0844769,0.417199,0.294947,0.515417,0.225751,0.273206,0.53987,0.602941,0.502721,0.52027,0.677107,0.333402,0.649779,0.808526,0.688221,0.562166,0.140195,0.962073,0.400222,0.16572,0.343477,0.427453,0.0775872,0.458934,0.937541,0.930412,0.129796,0.423893,0.23835,0.686106,0.0115622,0.209066,0.103004,0.297251,0.604068,0.626154,0.788372,0.192955,0.336451,0.556642,0.416865,0.892045,0.504261,0.763993,0.705954,0.815168,0.60218,0.745242,0.240357,0.876901,0.96166,0.842875,0.0466927,0.77742,0.356586,0.844198,0.432267,0.0263398,0.0798725,0.668037,0.830454,0.7304,0.720197,0.611575,0.565641,0.584475,0.361056,0.135918,0.636493,0.919586,0.420905,0.257358,0.824002,0.19477,0.222825,0.634098,0.121604,0.201769,0.482183,0.844012,0.0234011,0.533629,0.388926,0.0856145,0.926296,0.94277,0.300313,0.353789,0.288044,0.893205,0.828122,0.722065,0.266134,0.638309,0.513742,0.245637,0.159884,0.424776,0.597726,0.783604,0.73895,0.823429,0.943751,0.801563,0.764975,0.690053,0.124108,0.459434,0.927512,0.0468081,0.976281,0.348108,0.106358,0.324287,0.254986,0.441529,0.559867,0.303006,0.689702,0.7363,0.74591,0.732074,0.0833357,0.37931,0.635332,0.845389,0.824656,0.488368,0.0374088,0.709822,0.0600818,0.0427403,0.702836,0.829876,0.609332,0.467677,0.757295,0.842777,0.386468,0.378111,0.103494,0.491393,0.226018,0.0895823,0.674319,0.380129,0.646618,0.90888,0.982855,0.15301,0.642422,0.347618,0.640278,0.722007,0.13741,0.635203,0.859049,0.0680886,0.623656,0.9244,0.78499,0.43276,0.752651,0.649489,0.732278,0.729608,0.204251,0.194766,0.764149,0.423687,0.5351,0.554264,0.107518,0.216027,0.388689,0.191222,0.504492,0.994209,0.567326,0.980114,0.935398,0.537231,0.0420422,0.286352,0.815378,0.00564104,0.32779,0.817213,0.120393,0.554144,0.396219,0.482607,0.924779,0.428033,0.219462,0.736584,0.981042,0.652212,0.585014,0.299147,0.821023,0.485763,0.613741,0.334099,0.256278,0.0574084,0.781536,0.765629,0.172597,0.434252,0.000486612,0.841708,0.460714,0.369317,0.57824,0.178993,0.603886,0.151015,0.481318,0.87711,0.244595,0.483665,0.1611,0.451233,0.267573,0.403657,0.434153,0.306498,0.397778,0.881995,0.453245,0.786414,0.755357,0.00562727,0.707487,0.984518,0.823097,0.636321,0.516568,0.439049,0.300074,0.74561,0.965894,0.688729,0.923695,0.978616,0.211558,0.983679,0.231748,0.0649501,0.18454,0.830705,0.837158,0.604076,0.714843,0.387177,0.480231,0.506812,0.5798,0.865195,0.562367,0.891356,0.991035,0.315362,0.0183746,0.837854,0.427155,0.475868,0.125112,0.039038,0.941254,0.572569,0.475313,0.627034,0.266783,0.153377,0.253968,0.0657127,0.559703,0.174934,0.15401,0.662227,0.072298,0.852439,0.893088,0.910837,0.48946,0.58234,0.685479,0.668243,0.485159,0.187781,0.455318,0.139688,0.633439,0.466888,0.774444,0.626914,0.298073,0.813343,0.776558,0.717481,0.957341,0.581147,0.363903,0.571601,0.123377,0.0393508,0.576067,0.792153,0.088626,0.42779,0.306126,0.950589,0.974047,0.114317,0.00990367,0.967151,0.547695,0.226059,0.852415,0.263127,0.839685,0.38154,0.355922,0.46947,0.906421,0.162385,0.109988,0.34198,0.06093,0.182006,0.784427,0.866218,0.535193,0.00920874,0.819618,0.0188553,0.893985,0.191457,0.430859,0.977942,0.145486,0.715237,0.275334,0.409699,0.752706,0.775379,0.337988,0.7883,0.306028,0.725731,0.681632,0.213554,0.488574,0.314304,0.18205,0.798844,0.613736,0.686829,0.756309,0.677433,0.823611,0.295771,0.397614,0.309405,0.183024,0.348735,0.00924802,0.951593,0.548158,0.0671518,0.854902,0.939215,0.845496,0.0600473,0.93542,0.676788,0.575833,0.181385,0.435773,0.914596,0.729265,0.298908,0.895878,0.382725,0.16899,0.903817,0.286993,0.793632,0.602657,0.326081,0.592588,0.503674,0.833653,0.451124,0.226144,0.361228,0.0776283,0.940122,0.380843,0.659228,0.209932,0.628854,0.520919,0.238115,0.937749,0.0432687,0.420143,0.532102,0.171703,0.956608,0.35333,0.31688,0.437351,0.125547,0.26438,0.920201,0.51758,0.541401,0.890341,0.789439,0.7962,0.0730508,0.559539,0.109511,0.18283,0.0868927,0.474835,0.406926,0.0404076,0.814721,0.908646,0.60013,0.57195,0.871193,0.423605,0.434235,0.28709,0.689,0.205865,0.482264,0.662946,0.849946,0.284077,0.137516,0.487193,0.00738508,0.996607,0.163817,0.131819,0.0941476,0.571252,0.403287,0.13409,0.559679,0.355373,0.172192,0.177938,0.864216,0.214099,0.285901,0.80212,0.848275,0.859931,0.338325,0.0401686,0.208269,0.444753,0.156886,0.00115836,0.222311,0.958895,0.53041,0.0809779,0.578627,0.16874,0.192212,0.71159,0.193905,0.327874,0.580668,0.539077,0.113106,0.469226,0.243414,0.901511,0.139543,0.721851,0.168176,0.16236,0.233433,0.297827,0.914234,0.0948347,0.0524058,0.63998,0.499017,0.521927,0.395939,0.663528,0.591199,0.457315,0.952444,0.753726,0.518386,0.208553,0.217375,0.00372547,0.608491,0.844953,0.432542,0.674004,0.0565718,0.949042,0.0843927,0.103271,0.223672,0.190456,0.505318,0.753945,0.454202,0.723443,0.832061,0.197223,0.533258,0.156457,0.293946,0.242625,0.958316,0.56322,0.931096,0.283138,0.258687,0.94885,0.956898,0.609077,0.0620552,0.454781,0.0600018,0.746983,0.689676,0.773433,0.649629,0.786724,0.689378,0.866663,0.399816,0.0679964,0.474768,0.227932,0.935955,0.266536,0.216433,0.862294,0.150207,0.767127,0.24657,0.866818,0.162889,0.48627,0.24783,0.357656,0.294155,0.614943,0.780451,0.0822983,0.604345,0.578988,0.256901,0.553787,0.739169,0.511611,0.0557494,0.649255,0.342209,0.444799,0.471005,0.401473,0.946476,0.492192,0.577312,0.735757,0.461778,0.379222,0.0978276,0.000414371,0.815467,0.273173,0.0504104,0.929762,0.110489,0.268165,0.806669,0.996404,0.249119,0.718488,0.415033,0.408318,0.808124,0.99756,0.463139,0.55951,0.444087,0.460595,0.0715077,0.766285,0.515726,0.567231,0.889703,0.453045,0.964627,0.615487,0.71512,0.483401,0.999812,0.629384,0.116291,0.760576,0.59674,0.873836,0.914579,0.332643,0.444539,0.316987,0.537206,0.0458196,0.868744,0.333187,0.608553,0.329326,0.328498,0.290658,0.653377,0.156602,0.581251,0.0781012,0.588336,0.803729,0.979273,0.496239,0.0188699,0.559284,0.544593,0.636532,0.0258148,0.270146,0.0223558,0.261137,0.0826116,0.817676,0.693463,0.661933,0.501258,0.655688,0.668152,0.780867,0.246291,0.154544,0.449063,0.136419,0.614483,0.971254,0.591174,0.183518,0.88885,0.645273,0.621292,0.616201,0.885916,0.53076,0.652784,0.325802,0.323996,0.503871,0.491769,0.651915,0.287158,0.530362,0.761101,0.0164922,0.119301,0.160101,0.924144,0.871752,0.54333,0.0844629,0.678492,0.509124,0.582474,0.447797,0.381943,0.021838,0.821758,0.843279,0.494364,0.370886,0.687657,0.172785,0.304368,0.309651,0.394883,0.25934,0.325521,0.0869787,0.0174453,0.583132,0.276069,0.967802,0.748234,0.752754,0.212793,0.80368,0.438697,0.818053,0.831818,0.803306,0.962937,0.483503,0.215927,0.993389,0.822859,0.830663,0.810215,0.344898,0.709103,0.684031,0.216906,0.430683,0.166609,0.0731724,0.163402,0.259528,0.907051,0.466526,0.369126,0.431302,0.600506,0.492676,0.566559,0.4119,0.162071,0.912103,0.868872,0.56842,0.0144181,0.39547,0.817898,0.477288,0.795789,0.284566,0.93538,0.914472,0.724649,0.334792,0.797768,0.103197,0.829972,0.158569,0.561231,0.948605,0.722289,0.155512,0.831344,0.72323,0.902015,0.149219,0.414987,0.290293,0.953725,0.288964,0.295131,0.45858,0.883468,0.207862,0.987715,0.604163,0.995635,0.697035,0.491259,0.974578,0.0469121,0.423001,0.70698,0.413325,0.878147,0.789621,0.971669,0.925251,0.943081,0.136168,0.931467,0.825581,0.809535,0.202485,0.978918,0.478742,0.095409,0.332684,0.180191,0.922774,0.434819,0.947428,0.471099,0.485567,0.846712,0.0594662,0.695255,0.513883,0.459147,0.392549,0.38641,0.126902,0.641817,0.869142,0.594325,0.322549,0.679352,0.311634,0.309423,0.772963,0.389918,0.661116,0.56488,0.718817,0.79217,0.900174,0.166752,0.188551,0.573764,0.142943,0.855329,0.779392,0.848945,0.251584,0.927809,0.787899,0.434116,0.066743,0.0660429,0.283774,0.667609,0.792065,0.975981,0.942918,0.449459,0.72834,0.0260162,0.89373,0.621031,0.429945,0.452094,0.539859,0.153064,0.655295,0.202303,0.26821,0.676139,0.134686,0.351112,0.546432,0.606396,0.111368,0.0860383,0.421926,0.555379,0.156139,0.140857,0.60322,0.989316,0.383445,0.687425,0.802459,0.985919,0.548119,0.589685,0.33384,0.103907,0.710548,0.96562,0.742966,0.751887,0.435048,0.484089,0.00375909,0.691998,0.720296,0.356941,0.0293807,0.162069,0.539826,0.974801,0.578537,0.0166392,0.915929,0.600588,0.180324,0.207611,0.139419,|0.495912,0.487194,0.164066,0.514979,0.140038,0.558014,0.255101,0.512875,0.520258,0.613853,0.0611163,0.861228,0.00272506,0.434187,0.71599,0.156464,0.141182,0.207503,0.85468,0.794808,0.770191,0.685121,0.267055,0.525524,0.709515,0.9168,0.561012,0.532516,0.625346,0.421234,0.52214,0.760796,0.486026,0.179268,0.444902,0.473739,0.981295,0.454046,0.769322,0.499902,0.441284,0.739993,0.561675,0.0907009,0.228088,0.0353732,0.00138217,0.554592,0.559839,0.341819,0.84305,0.0933636,0.680786,0.951485,0.787927,0.0610406,0.801396,0.678877,0.790164,0.824409,0.629492,0.99214,0.0366109,0.653941,0.757036,0.248823,0.676804,0.841385,0.69267,0.320864,0.116725,0.33726,0.81534,0.425664,0.264397,0.0992395,0.125091,0.609143,0.106142,0.972092,0.526546,0.982134,0.860647,0.176775,0.953128,0.562008,0.530824,0.691139,0.162588,0.619549,0.621526,0.1082,0.477597,0.912544,0.284495,0.637013,0.691692,0.264101,0.911153,0.586408,0.27995,0.946835,0.171128,0.84,0.555303,0.890881,0.608753,0.0839496,0.0960736,0.251234,0.908021,0.305434,0.105727,0.634149,0.632839,0.117411,0.349842,0.147576,0.449748,0.0763873,0.142623,0.796744,0.949419,0.946476,0.594925,0.255924,0.554254,0.568447,0.59654,0.443582,0.649094,0.035342,0.457316,0.297358,0.956334,0.163508,0.729088,0.185444,0.585808,0.351562,0.189248,0.812577,0.489716,0.717606,0.300514,0.225082,0.138236,0.41261,0.53359,0.796168,0.276823,0.670477,0.687392,0.843509,0.624664,0.183755,0.404413,0.313759,0.938697,0.843892,0.0562379,0.0395198,0.252087,0.800467,0.893106,0.174514,0.722589,0.136683,0.391719,0.879901,0.202989,0.497605,0.600507,0.790262,0.300893,0.809899,0.460336,0.31386,0.512036,0.314489,0.415462,0.16161,0.161091,0.153252,0.940173,0.36891,0.576726,0.673181,0.822869,0.712934,0.33958,0.660488,0.754079,0.747366,0.722803,0.906992,0.297475,0.0199706,0.208082,0.429947,0.274349,0.0973189,0.238279,0.785917,0.487471,0.888365,0.247225,0.452921,0.0216826,0.208365,0.556747,0.7599,0.577564,0.0458161,0.959721,0.637967,0.590898,0.0504558,0.0428245,0.331679,0.0164969,0.313851,0.297826,0.382267,0.363156,0.205065,0.878688,0.0546531,0.370931,0.952154,0.234146,0.204977,0.209507,0.174519,0.732611,0.00684547,0.0221034,0.62437,0.421241,0.78897,0.872817,0.0406911,0.374319,0.414198,0.7821,0.480405,0.124842,0.481776,0.121956,0.244043,0.797844,0.939456,0.177053,0.266088,0.664076,0.036774,0.476006,0.330619,0.1368,0.393496,0.586782,0.696447,0.982976,0.833308,0.250786,0.662773,0.496588,0.960553,0.115252,0.869886,0.364647,0.229503,0.608425,0.694057,0.890843,0.258867,0.176376,0.497595,0.687342,0.0068624,0.339287,0.196619,0.67923,0.350872,0.639492,0.280338,0.976142,0.187392,0.0552449,0.707667,0.724776,0.653399,0.931804,0.1148,0.293259,0.955376,0.961963,0.886564,0.985553,0.549316,0.798183,0.709332,0.201486,0.508673,0.473308,0.326655,0.258686,0.345771,0.739555,0.0325423,0.180172,0.909204,0.837669,0.365475,0.989872,0.658395,0.0622253,0.0798522,0.806117,0.149508,0.192372,0.91851,0.892203,0.541218,0.239497,0.838139,0.242909,0.254281,0.045973,0.345944,0.660962,0.794224,0.974841,0.458299,0.420296,0.149836,0.757041,0.547749,0.229497,0.668832,0.858952,0.830635,0.620094,0.799197,0.237175,0.405153,0.865592,0.854193,0.202002,0.253075,0.874093,0.611581,0.644077,0.350081,0.716448,0.674011,0.625478,0.84371,0.398569,0.30796,0.0653022,0.903064,0.408517,0.789812,0.807748,0.0809688,0.968671,0.169402,0.394292,0.603822,0.258036,0.352018,0.19901,0.292726,0.42598,0.201104,0.384238,0.947631,0.518466,0.898949,0.867186,0.775851,0.594504,0.824686,0.187333,0.322219,0.923048,0.577487,0.983606,0.464524,0.560119,0.434371,0.299267,0.0448099,0.24813,0.879561,0.365137,0.9559,0.217454,0.857325,0.537216,0.496451,0.850243,0.458406,0.321103,0.820687,0.887458,0.541788,0.518865,0.536819,0.591994,0.859959,0.13813,0.791025,0.77896,0.686858,0.806325,0.840954,0.688703,0.852179,0.280858,0.709253,0.0834877,0.50856,0.321513,0.192489,0.452586,0.225821,0.369298,0.10577,0.49688,0.10743,0.969519,0.925015,0.0197523,0.897911,0.454877,0.19148,0.838352,0.0403399,0.801358,0.0362291,0.275662,0.885974,0.729367,0.0765413,0.0795671,0.331383,0.645688,0.580765,0.609204,0.295166,0.882812,0.524871,0.817881,0.520502,0.689106,0.613203,0.684715,0.855479,0.617085,0.170672,0.0978197,0.148986,0.341581,0.520747,0.770003,0.341941,0.104044,0.726017,0.321953,0.248573,0.693214,0.348791,0.898437,0.0496414,0.284721,0.458306,0.0096041,0.175676,0.336248,0.260637,0.189234,0.113705,0.99218,0.917728,0.0944513,0.984863,0.678511,0.522683,0.757935,0.541121,0.74352,0.31314,0.84967,0.28112,0.159275,0.968794,0.876781,0.952966,0.271692,0.0778214,0.277139,0.0703762,0.718058,0.424448,0.431638,0.827061,0.324519,0.0413052,0.366987,0.00187701,0.284341,0.7037,0.831238,0.288426,0.111371,0.187379,0.462005,0.358437,0.848913,0.262313,0.90495,0.511215,0.729532,0.756462,0.982424,0.981621,0.865789,0.437263,0.913765,0.100008,0.666157,0.650825,0.745322,0.462982,0.0960022,0.370226,0.865055,0.590063,0.853968,0.874975,0.702745,0.96163,0.081175,0.562892,0.565323,0.0602865,0.896372,0.168211,0.265416,0.909937,0.466063,0.427785,0.839821,0.692242,0.936498,0.482834,0.286978,0.20455,0.821676,0.403994,0.5618,0.422656,0.785407,0.875519,0.570343,0.603617,0.315404,0.705413,0.284814,0.854157,0.616514,0.649067,0.436187,0.216405,0.649839,0.693443,0.577104,0.416621,0.000326753,0.860529,0.591653,0.0691653,0.680674,0.439299,0.603369,0.953011,0.978099,0.782359,0.652182,0.458199,0.0241224,0.171526,0.407633,0.420518,0.889568,0.47386,0.0403946,0.804431,0.432182,0.311357,0.784469,0.384194,0.869977,0.995449,0.269569,0.0305969,0.0252677,0.762407,0.759334,0.800685,0.473549,0.590982,0.148222,0.438592,0.701221,0.0469395,0.351387,0.746997,0.674564,0.484748,0.769834,0.969613,0.0229654,0.201929,0.72362,0.185671,0.8546,0.654989,0.839624,0.982101,0.687485,0.40657,0.0842631,0.782433,0.100108,0.851955,0.660376,0.980104,0.1934,0.773116,0.949198,0.861813,0.0244833,0.53871,0.659086,0.599122,0.280885,0.0590728,0.878091,0.444051,0.577589,0.480098,0.29041,0.764912,0.680836,0.7379,0.461685,0.355735,0.406986,0.301124,0.843023,0.669625,0.948663,0.920018,0.0390345,0.939669,0.186063,0.83356,0.00208968,0.104882,0.437828,0.227989,0.851674,0.64082,0.239197,0.167625,0.214929,0.0835171,0.925724,0.0380763,0.654727,0.803252,0.441971,0.938274,0.206186,0.0915946,0.719172,0.548684,0.506836,0.876612,0.84665,0.677233,0.954451,0.847253,0.445955,0.845864,0.107851,0.759341,0.120887,0.918878,0.690134,0.339339,0.477215,0.686482,0.423813,0.0490874,0.494308,0.227403,0.710343,0.510235,0.712259,0.572107,0.310702,0.474599,0.292258,0.923405,0.743102,0.829613,0.267806,0.873332,0.59418,0.588855,0.239911,0.242287,0.709107,0.13667,0.293461,0.868187,0.163764,0.610187,0.987575,0.85576,0.217079,0.812484,0.913366,0.258896,0.421941,0.375915,0.0252476,0.674558,0.189294,0.751732,0.28657,0.0937768,0.947604,0.479463,0.501984,0.273635,0.0427225,0.372258,0.465151,0.293902,0.382057,0.360478,0.0151143,0.595762,0.0964409,0.212644,0.51996,0.568959,0.573552,0.646371,0.16276,0.781225,0.924007,0.763438,0.00816655,0.867859,0.818019,0.7074,0.80686,0.613343,0.248096,0.217024,0.680262,0.95907,0.353355,0.291391,0.827347,0.745238,0.0281858,0.691922,0.193336,0.52774,0.311025,0.350809,0.9573,0.78265,0.108417,0.0157053,0.307928,0.124971,0.510289,0.978708,0.806607,0.554952,0.810985,0.378694,0.761814,0.794314,0.46945,0.838728,0.77579,0.492071,0.819599,0.42091,0.342989,0.0207207,0.278719,0.790392,0.709111,0.33288,0.165046,0.569019,0.764795,0.651221,0.918518,0.204558,0.450195,0.340528,0.124997,0.0688266,0.960227,0.526576,0.744835,0.716433,0.218972,0.15411,0.434532,0.51531,0.336034,0.499443,0.904179,0.38873,0.112202,0.643865,0.889862,0.31678,0.170684,0.219506,0.528745,0.802711,0.487096,0.656779,0.590049,0.510867,0.274011,0.477585,0.679275,0.181811,0.17397,0.0655369,0.242973,0.916986,0.520356,0.909052,0.438001,0.560302,0.948744,0.26066,0.81555,0.589087,0.449968,0.220978,0.169382,0.167057,0.684103,0.2505,0.249713,0.763788,0.388746,0.674227,0.291471,0.0587649,0.0681118,0.57343,0.879234,0.199291,0.655622,0.404287,0.225612,0.789936,0.707375,0.275091,0.749861,0.467021,0.235758,0.323891,0.171465,0.0673424,0.637932,0.224903,0.0925445,0.770279,0.591628,0.248459,0.528655,0.890052,0.272024,0.935505,0.0496196,0.922995,0.486471,0.988793,0.1927,0.139687,0.937351,0.783626,0.816364,0.40486,0.366522,0.0788779,0.766544,0.191261,0.713912,0.382256,0.819782,0.0944563,0.149021,0.223548,0.29619,0.575436,0.961084,0.371356,0.744154,0.153732,0.0130929,0.484875,0.435539,0.273187,0.726031,0.393805,0.558759,0.969249,0.980544,0.69241,0.131646,0.525169,0.12545,0.7255,0.770732,0.0493146,0.469766,0.786748,0.395179,0.686247,0.861997,0.173862,0.208955,0.637002,0.957957,0.938562,0.200819,0.717672,0.205865,0.947153,0.716202,0.436186,0.302639,0.460871,0.724198,0.228414,0.496592,0.893843,0.03986,0.0555762,0.805526,0.654024,0.0134809,0.406966,0.695603,0.442312,0.319008,0.666075,0.691211,0.282984,0.0245723,0.484451,0.231079,0.101623,0.0877493,0.92972,0.0161505,0.326289,0.11367,0.533,0.674907,0.171922,0.103023,0.206589,0.497719,0.0473588,0.179841,0.288711,0.226728,0.883337,0.311827,0.588784,|0.975124,0.683042,0.772544,0.895163,0.661721,0.0173917,0.85333,0.181961,0.189893,0.393565,0.0638998,0.29944,0.554545,0.798389,0.800997,0.829479,0.665534,0.803567,0.409037,0.75662,0.416861,0.620611,0.396964,0.0981814,0.947676,0.28348,0.414337,0.154505,0.611959,0.0987511,0.483648,0.357068,0.370691,0.651702,0.278201,0.846207,0.172304,0.710987,0.84319,0.3946,0.120603,0.599334,0.700584,0.13452,0.360393,0.0179687,0.687293,0.642871,0.902556,0.693474,0.0656679,0.924513,0.513233,0.135939,0.803274,0.626829,0.515973,0.627979,0.585551,0.166587,0.692834,0.694637,0.461475,0.481905,0.612893,0.599241,0.0868021,0.457249,0.0575632,0.0133929,0.00208682,0.699122,0.917425,0.0529647,0.605409,0.148698,0.555478,0.889136,0.298992,0.127295,0.120184,0.483448,0.745732,0.604107,0.771959,0.39104,0.398362,0.925799,0.664725,0.282126,0.996323,0.24141,0.01113,0.837912,0.0142932,0.87663,0.534093,0.81866,0.393274,0.319707,0.569249,0.334647,0.786424,0.992558,0.752678,0.613513,0.64298,0.935925,0.0970251,0.720616,0.751069,0.475701,0.377049,0.805413,0.35377,0.0722604,0.256372,0.867122,0.777318,0.903326,0.492021,0.133799,0.453557,0.886034,0.451726,0.0352294,0.636937,0.0705354,0.241509,0.628585,0.689661,0.57167,0.684303,0.260846,0.555192,0.349836,0.725989,0.662955,0.98789,0.696915,0.452024,0.98347,0.280284,0.342035,0.722728,0.0919823,0.202761,0.948339,0.417925,0.477395,0.574399,0.755015,0.567896,0.618318,0.588941,0.497515,0.268439,0.386059,0.452479,0.995241,0.187076,0.567035,0.170639,0.299865,0.471612,0.261092,0.178882,0.521998,0.731507,0.0373026,0.468293,0.531471,0.894171,0.0559379,0.62104,0.182334,0.269682,0.535103,0.983406,0.729103,0.974458,0.50213,0.876916,0.366726,0.724624,0.79222,0.607817,0.958468,0.190241,0.258153,0.825271,0.552908,0.231079,0.594079,0.821072,0.587192,0.267244,0.806224,0.196637,0.0585276,0.759064,0.83887,0.468965,0.651104,0.725932,0.456982,0.212093,0.322086,0.432315,0.179398,0.251913,0.9329,0.676244,0.225437,0.771298,0.921485,0.677753,0.935748,0.791181,0.0835091,0.646746,0.4798,0.785212,0.0063383,0.993486,0.737873,0.623973,0.154769,0.239683,0.351312,0.712964,0.515523,0.148016,0.56581,0.411206,0.377939,0.173032,0.915032,0.134856,0.484796,0.135665,0.936317,0.244628,0.53925,0.652869,0.970999,0.476356,0.0126349,0.00852787,0.384443,0.639146,0.810008,0.183939,0.962595,0.0467044,0.113273,0.127528,0.255295,0.714923,0.286747,0.541981,0.335152,0.287063,0.505801,0.645916,0.40854,0.431267,0.976645,0.307053,0.924877,0.211252,0.84439,0.0920747,0.369102,0.649588,0.530851,0.827464,0.655396,0.153085,0.28082,0.800803,0.706862,0.559599,0.116305,0.940828,0.6657,0.688734,0.470061,0.931745,0.22843,0.441398,0.389439,0.282058,0.835483,0.00859433,0.914402,0.277189,0.92659,0.922721,0.912456,0.340489,0.0032599,0.879708,0.0939168,0.0241035,0.206412,0.030371,0.0427209,0.0410921,0.745456,0.835947,0.515417,0.182156,0.972449,0.255426,0.920593,0.180903,0.920541,0.387754,0.490096,0.840856,0.576065,0.956788,0.963907,0.3567,0.256345,0.0160551,0.322418,0.260509,0.737399,0.713087,0.905887,0.553425,0.541705,0.0608431,0.554585,0.435057,0.648497,0.0303873,0.672755,0.791229,0.272177,0.31422,0.673395,0.248998,0.36162,0.224644,0.51304,0.780019,0.0404948,0.132778,0.719959,0.521541,0.585758,0.71131,0.826852,0.223681,0.194482,0.853618,0.368656,0.409068,0.548688,0.468534,0.0843375,0.551981,0.671199,0.916404,0.872205,0.419439,0.681121,0.63201,0.924041,0.736619,0.139456,0.60412,0.335616,0.246743,0.144845,0.18766,0.769306,0.54303,0.483544,0.000711501,0.353801,0.565562,0.547567,0.018324,0.162482,0.620348,0.63894,0.361816,0.06222,0.37008,0.35971,0.992748,0.667569,0.709008,0.9261,0.477561,0.226172,0.0527402,0.615944,0.168937,0.0406426,0.838053,0.0153723,0.444435,0.930666,0.813697,0.483898,0.00657535,0.658607,0.157476,0.696032,0.89337,0.973279,0.981105,0.847589,0.624148,0.789547,0.738462,0.122791,0.180427,0.234049,0.472855,0.572809,0.0607727,0.606016,0.746835,0.676783,0.412603,0.481505,0.944471,0.475798,0.334476,0.871688,0.739088,0.944848,0.208493,0.855886,0.289845,0.305251,0.922926,0.0452491,0.603148,0.0309595,0.2949,0.687084,0.122883,0.335654,0.621578,0.998785,0.290474,0.407347,0.138323,0.565885,0.28218,0.294136,0.778433,0.693139,0.612454,0.132847,0.230033,0.439806,0.48276,0.494948,0.525783,0.898302,0.791534,0.96899,0.842098,0.627285,0.551658,0.904631,0.99257,0.914206,0.929379,0.472731,0.941559,0.967128,0.963476,0.486801,0.960945,0.0347515,0.588874,0.513667,0.535931,0.016584,0.0223292,0.63242,0.847265,0.0559981,0.658061,0.398589,0.116786,0.0549707,0.954646,0.301817,0.0546201,0.909231,0.564493,0.811966,0.132193,0.11516,0.104411,0.286685,0.963984,0.621768,0.131191,0.449265,0.622172,0.866796,0.390491,0.975324,0.470992,0.645893,0.719586,0.934152,0.696528,0.566032,0.272539,0.772683,0.403344,0.201885,0.821694,0.63635,0.43978,0.0636005,0.181794,0.0127074,0.167261,0.302565,0.00694704,0.751712,0.953416,0.886907,0.317023,0.886159,0.307835,0.243052,0.151746,0.120451,0.23208,0.997656,0.222716,0.306346,0.71351,0.992722,0.591836,0.626537,0.994534,0.297145,0.610233,0.286978,0.729374,0.483479,0.714969,0.282055,0.349872,0.259261,0.698668,0.675339,0.390532,0.663068,0.71995,0.223127,0.835711,0.605683,0.695433,0.639555,0.100958,0.662331,0.875373,0.492159,0.609559,0.991503,0.148911,0.320827,0.65204,0.449246,0.345485,0.0201171,0.994579,0.351274,0.993401,0.137141,0.210315,0.50767,0.337745,0.311811,0.783033,0.0614551,0.78988,0.56879,0.224912,0.217647,0.513956,0.213496,0.490948,0.390652,0.497176,0.783169,0.134037,0.151838,0.442551,0.770091,0.944428,0.354981,0.553692,0.492495,0.0974348,0.470379,0.182057,0.532477,0.869715,0.367172,0.930124,0.727923,0.514938,0.636707,0.363968,0.528965,0.256052,0.299899,0.536016,0.980138,0.328445,0.842404,0.0157042,0.257753,0.619126,0.568782,0.691018,0.156715,0.392744,0.477026,0.190987,0.579094,0.951537,0.491418,0.386975,0.996983,0.997046,0.277439,0.362776,0.155725,0.343306,0.61562,0.276193,0.760036,0.379151,0.935553,0.316319,0.999247,0.892398,0.943615,0.253753,0.447436,0.67465,0.916436,0.260247,0.597863,0.456309,0.973045,0.707023,0.627262,0.718009,0.58848,0.70996,0.898479,0.28378,0.672123,0.89652,0.253649,0.508602,0.798138,0.512331,0.528551,0.271218,0.208894,0.622018,0.275169,0.4129,0.565655,0.276215,0.767065,0.966405,0.495695,0.197921,0.392884,0.00223124,0.338071,0.895529,0.117451,0.62551,0.550105,0.471862,0.948085,0.483576,0.986813,0.0464513,0.385381,0.872809,0.387897,0.368343,0.49489,0.512766,0.152167,0.552235,0.804491,0.36439,0.0978862,0.71757,0.729202,0.690132,0.351766,0.286145,0.778779,0.887695,0.782957,0.0866762,0.85004,0.196052,0.764365,0.225454,0.636782,0.111198,0.575692,0.0197354,0.233709,0.823075,0.763312,0.0986142,0.519533,0.356696,0.124908,0.455525,0.239011,0.0091148,0.673272,0.515737,0.41928,0.454827,0.0400227,0.548596,0.0064072,0.578451,0.972846,0.317014,0.642924,0.417641,0.692051,0.00128269,0.407204,0.103454,0.0933258,0.342843,0.627907,0.271218,0.788312,0.930598,0.909267,0.904654,0.532049,0.380882,0.182236,0.92968,0.473078,0.937903,0.616038,0.0676088,0.801183,0.511471,0.870197,0.125252,0.818231,0.850805,0.470438,0.482832,0.197351,0.980106,0.255155,0.723366,0.268522,0.0339935,0.982994,0.39128,0.0503368,0.90603,0.403477,0.889565,0.405335,0.948027,0.341807,0.769424,0.441724,0.13705,0.214117,0.287568,0.910539,0.0250134,0.983571,0.546236,0.0206994,0.47959,0.410023,0.852322,0.400501,0.71462,0.39956,0.391096,0.132233,0.576849,0.794177,0.0513907,0.995299,0.0384516,0.967087,0.606802,0.237387,0.58718,0.0312386,0.517661,0.893103,0.825535,0.0907932,0.731849,0.769017,0.228979,0.364803,0.691167,0.725761,0.202125,0.825409,0.397081,0.161964,0.17469,0.983645,0.389122,0.107561,0.611506,0.233892,0.44672,0.00744671,0.532673,0.0960501,0.726388,0.480039,0.0493175,0.732262,0.158756,0.0812418,0.343197,0.877125,0.0786217,0.833131,0.932509,0.281167,0.746778,0.82265,0.358893,0.426115,0.0573742,0.621034,0.166412,0.770418,0.599843,0.0791266,0.846868,0.420161,0.0754884,0.527192,0.0371794,0.126091,0.0715022,0.222036,0.194366,0.512959,0.371235,0.0130364,0.202938,0.98362,0.593321,0.940853,0.528832,0.472928,0.639386,0.970696,0.764111,0.191671,0.627017,0.205635,0.902367,0.691557,0.413329,0.891177,0.210296,0.532315,0.495187,0.960237,0.823378,0.128902,0.203241,0.0493386,0.297681,0.64525,0.31066,0.909338,0.926994,0.844613,0.717092,0.701267,0.230492,0.739133,0.749004,0.456828,0.0523474,0.73695,0.88093,0.871573,0.956424,0.936861,0.910322,0.699688,0.262162,0.565667,0.616098,0.359082,0.610095,0.472857,0.900536,0.973336,0.198503,0.0705472,0.49766,0.835585,0.0602604,0.341914,0.201392,0.156142,0.245557,0.0592584,0.921454,0.195612,0.29154,0.496502,0.842408,0.460717,0.198142,0.637875,0.951342,0.777787,0.578353,0.514875,0.723928,0.763645,0.998526,0.806244,0.271388,0.877033,0.192258,0.980242,0.857395,0.738254,0.105677,0.916185,0.295277,0.288249,0.993684,0.296745,0.774385,0.56959,0.282209,0.658992,0.974365,0.829362,0.0853626,0.425748,0.544184,0.231645,0.761467,0.93253,0.633679,0.156757,0.0949227,0.60231,0.146424,0.0744717,0.898269,0.636856,0.936876,0.163911,0.0425152,0.690864,0.254231,0.923061,0.110208,0.998324,0.455245,0.466477,|0.847181,0.557773,0.824655,0.0506935,0.0552942,0.847158,0.855117,0.175632,0.452445,0.112336,0.41342,0.202027,0.335076,0.494926,0.583366,0.800311,0.43718,0.0876402,0.532642,0.488521,0.0683028,0.253705,0.838402,0.869313,0.108026,0.157191,0.850243,0.711964,0.0820607,0.818885,0.678292,0.0363343,0.670058,0.0581448,0.232028,0.495032,0.958881,0.441961,0.183379,0.208693,0.0882897,0.599528,0.846139,0.503356,0.28784,0.218902,0.43053,0.868329,0.558393,0.729478,0.0121934,0.637568,0.944252,0.69844,0.750886,0.770614,0.00528419,0.153842,0.55212,0.849153,0.0585977,0.200939,0.106605,0.481282,0.220039,0.394252,0.554646,0.507766,0.296279,0.991153,0.224649,0.948204,0.472497,0.446006,0.361095,0.124333,0.249105,0.48133,0.396197,0.325605,0.929978,0.339229,0.299953,0.0570475,0.451761,0.266091,0.381732,0.619623,0.803755,0.372438,0.264332,0.292515,0.464818,0.509521,0.62374,0.10237,0.125021,0.921691,0.743402,0.194552,0.280431,0.841225,0.644635,0.0539914,0.294723,0.046157,0.291743,0.0763632,0.453257,0.560476,0.718858,0.721777,0.0152444,0.457448,0.732271,0.22246,0.331763,0.325927,0.727565,0.512639,0.0367985,0.986146,0.463917,0.620376,0.0978017,0.206065,0.445382,0.804061,0.4327,0.404455,0.0439923,0.889837,0.693622,0.294576,0.153103,0.278418,0.5314,0.491556,0.686348,0.0423594,0.517891,0.624175,0.989233,0.712152,0.353128,0.636852,0.299137,0.426901,0.118468,0.707925,0.925502,0.0141627,0.111137,0.332713,0.681922,0.332882,0.659654,0.830836,0.0116068,0.000310957,0.427287,0.507263,0.303427,0.813423,0.250027,0.207085,0.934777,0.0774692,0.74863,0.816398,0.250072,0.807849,0.891313,0.48153,0.139903,0.232689,0.139623,0.332669,0.707323,0.856154,0.861477,0.321424,0.830779,0.592416,0.0936351,0.813605,0.873702,0.904855,0.695246,0.687579,0.567397,0.707637,0.958917,0.192587,0.717085,0.948438,0.362229,0.614255,0.9891,0.815476,0.357112,0.650696,0.493901,0.903005,0.0493163,0.535267,0.0651909,0.202481,0.186899,0.218649,0.307272,0.559143,0.189594,0.210844,0.298653,0.31983,0.981313,0.620876,0.608392,0.866963,0.134549,0.407908,0.708586,0.627573,0.180309,0.746812,0.718224,0.648636,0.559057,0.624174,0.790571,0.334901,0.272807,0.709159,0.311918,0.982709,0.426233,0.220642,0.935956,0.471627,0.865994,0.188852,0.795408,0.970307,0.534134,0.46825,0.655384,0.420481,0.329172,0.325243,0.28001,0.847661,0.509804,0.00294626,0.730041,0.628134,0.02303,0.129176,0.159571,0.93811,0.44741,0.285749,0.492323,0.79716,0.685314,0.338201,0.510385,0.629073,0.600894,0.81968,0.584365,0.150042,0.489624,0.311323,0.246284,0.751805,0.751846,0.348694,0.0826165,0.3061,0.36839,0.872161,0.00406635,0.829716,0.297461,0.744051,0.546037,0.971668,0.665958,0.848176,0.479763,0.851235,0.676975,0.293167,0.610607,0.63564,0.225792,0.793707,0.455513,0.335037,0.238901,0.945464,0.766389,0.353937,0.116238,0.771355,0.540721,0.653273,0.545947,0.70166,0.51421,0.0290669,0.0278324,0.541635,0.510705,0.273775,0.602301,0.972671,0.668171,0.878867,0.364131,0.96684,0.166892,0.580628,0.318265,0.811711,0.559917,0.774521,0.492759,0.554574,0.428159,0.709712,0.788242,0.769323,0.160515,0.685723,0.631291,0.366952,0.601335,0.0346119,0.515576,0.411115,0.865927,0.484692,0.756189,0.34136,0.655092,0.465122,0.599577,0.00935024,0.744304,0.786183,0.222214,0.857971,0.419381,0.477181,0.165791,0.831902,0.723208,0.0583558,0.91797,0.603513,0.0115083,0.777157,0.429341,0.977798,0.237647,0.392072,0.401491,0.192612,0.528068,0.295363,0.911618,0.95608,0.336563,0.700537,0.970191,0.699682,0.428808,0.8877,0.305661,0.437653,0.959752,0.732657,0.519118,0.505821,0.675211,0.335791,0.556623,0.140089,0.0885808,0.962933,0.64023,0.40314,0.624823,0.401501,0.812489,0.414895,0.620341,0.0192468,0.77526,0.81607,0.64899,0.259644,0.440728,0.53193,0.555763,0.722866,0.613604,0.652255,0.0859973,0.911382,0.852382,0.168365,0.984075,0.509696,0.0987622,0.446886,0.107476,0.418124,0.40183,0.275984,0.970932,0.493969,0.452798,0.419097,0.327725,0.6447,0.784734,0.482807,0.052178,0.0943931,0.265137,0.103248,0.164574,0.958898,0.235882,0.582608,0.00395238,0.682186,0.697927,0.518505,0.0209094,0.696852,0.208275,0.244316,0.874601,0.875503,0.0563753,0.824865,0.76828,0.83616,0.747914,0.879509,0.237874,0.546449,0.751573,0.537802,0.165105,0.597199,0.656546,0.827448,0.72535,0.95425,0.861824,0.739312,0.639862,0.275405,0.640046,0.281371,0.0132161,0.369041,0.324745,0.00892848,0.777263,0.818565,0.579559,0.569124,0.628305,0.261614,0.614751,0.53902,0.150041,0.671616,0.0474002,0.10682,0.0481982,0.0538602,0.333709,0.470798,0.775073,0.988703,0.110196,0.242097,0.22516,0.343732,0.747333,0.157051,0.882614,0.10611,0.798849,0.213075,0.084412,0.739629,0.772669,0.270094,0.153451,0.0754493,0.384885,0.388577,0.103187,0.576273,0.551306,0.999865,0.0661756,0.0837562,0.919306,0.314304,0.155897,0.130801,0.298386,0.275207,0.971066,0.387528,0.601584,0.102185,0.801813,0.903315,0.335146,0.419996,0.280425,0.25125,0.635964,0.96633,0.164232,0.264175,0.739112,0.157561,0.420994,0.277784,0.919604,0.240064,0.35017,0.919219,0.197771,0.504422,0.422083,0.118745,0.889965,0.312514,0.551591,0.76512,0.995245,0.0503886,0.938439,0.432698,0.944496,0.253467,0.362838,0.676422,0.812867,0.630913,0.847225,0.228097,0.471782,0.0746002,0.0427566,0.465711,0.0348722,0.00802827,0.838292,0.0521613,0.147189,0.984367,0.336363,0.720757,0.616451,0.641966,0.968902,0.269203,0.617957,0.119477,0.917006,0.494772,0.407989,0.263558,0.828749,0.495713,0.951128,0.689276,0.98303,0.268362,0.272061,0.299188,0.174143,0.623105,0.710868,0.378091,0.192865,0.135181,0.745992,0.937151,0.364392,0.729334,0.675172,0.620941,0.20999,0.157558,0.565101,0.264362,0.753335,0.89835,0.625905,0.0471734,0.364942,0.863545,0.568792,0.65555,0.286578,0.527806,0.785101,0.417166,0.0500126,0.329011,0.834736,0.647658,0.349674,0.364238,0.926083,0.708325,0.879001,0.956323,0.432889,0.560491,0.453743,0.164919,0.725459,0.85999,0.301401,0.845047,0.818642,0.582175,0.679005,0.16818,0.128687,0.835444,0.119831,0.181347,0.129683,0.973898,0.166763,0.302533,0.61098,0.639085,0.815825,0.849182,0.88193,0.915077,0.583308,0.120072,0.147316,0.194074,0.721109,0.138317,0.159142,0.87312,0.887427,0.250874,0.522617,0.92292,0.86217,0.00223845,0.982931,0.273441,0.278311,0.701184,0.887574,0.379661,0.9392,0.661382,0.298115,0.740791,0.551936,0.215004,0.52856,0.557983,0.208694,0.119997,0.0731153,0.595406,0.913464,0.192102,0.383997,0.71077,0.945087,0.287842,0.283631,0.464006,0.618008,0.804948,0.724454,0.270379,0.500811,0.436864,0.606275,0.78744,0.785641,0.0589364,0.0257016,0.458634,0.473261,0.0274132,0.634746,0.342523,0.00795346,0.640347,0.819267,0.274524,0.864737,0.0265042,0.631507,0.730335,0.547486,0.984991,0.446804,0.240184,0.140304,0.407398,0.896552,0.700159,0.429305,0.500139,0.55097,0.329887,0.419738,0.031382,0.390367,0.473678,0.137198,0.955456,0.651461,0.555742,0.333746,0.0797523,0.336794,0.892626,0.60308,0.348357,0.987156,0.719199,0.427652,0.216532,0.702064,0.0746927,0.809575,0.0309701,0.776578,0.789801,0.893702,0.726815,0.450987,0.666545,0.356281,0.3124,0.527107,0.998559,0.893857,0.700498,0.275376,0.312508,0.178185,0.87393,0.0657389,0.0521625,0.892236,0.691054,0.390912,0.659759,0.581906,0.496381,0.297849,0.131467,0.279734,0.306668,0.419777,0.74705,0.0483676,0.0610397,0.418878,0.240367,0.538162,0.528401,0.0821481,0.329544,0.478293,0.996303,0.365316,0.880013,0.797942,0.21805,0.541094,0.236056,0.304263,0.889735,0.308163,0.811541,0.619081,0.381288,0.709695,0.779657,0.811215,0.956665,0.264083,0.377649,0.443477,0.496944,0.573284,0.911173,0.222191,0.620092,0.863948,0.877018,0.0393296,0.523138,0.422916,0.832133,0.633394,0.383041,0.696157,0.869204,0.995902,0.847532,0.681165,0.175198,0.764726,0.211923,0.115794,0.97522,0.0704722,0.901311,0.936237,0.882109,0.128052,0.844258,0.891214,0.0485398,0.0542179,0.891751,0.54673,0.779744,0.0661936,0.0183915,0.677509,0.253441,0.99629,0.69833,0.434117,0.303718,0.555958,0.286502,0.799915,0.836628,0.930617,0.319906,0.19897,0.00377941,0.238965,0.0928836,0.974632,0.62655,0.387288,0.951326,0.6211,0.790076,0.640676,0.557928,0.83202,0.183586,0.50423,0.328246,0.312884,0.905428,0.473717,0.721128,0.278498,0.664446,0.120018,0.0978267,0.917344,0.947838,0.0283138,0.823936,0.994477,0.909363,0.0911993,0.77846,0.837655,0.315959,0.239824,0.946342,0.703694,0.096139,0.0283465,0.276919,0.915327,0.695915,0.68358,0.638499,0.0719019,0.334092,0.711013,0.567699,0.56806,0.646115,0.797603,0.581928,0.501824,0.659391,0.98127,0.102414,0.435978,0.840028,0.560683,0.131845,0.00649655,0.528014,0.119223,0.804016,0.242912,0.262797,0.0822811,0.174515,0.0741954,0.267174,0.0835266,0.523313,0.6298,0.576614,0.741103,0.378879,0.624378,0.170834,0.253166,0.260004,0.120489,0.58425,0.603647,0.224791,0.30316,0.894696,0.98582,0.0670967,0.704375,0.835668,0.841836,0.86152,0.721225,0.218018,0.514018,0.228824,0.948936,0.733941,0.111269,0.439025,0.478242,0.468729,0.62974,0.0231505,0.247455,0.969505,0.82668,0.773323,0.961114,0.167003,0.276765,0.268572,0.77755,0.780202,0.373668,0.20943,0.697383,0.700178,0.416596,0.772116,0.30546,0.580816,0.391527,0.895792,0.749895,0.611835,0.509551,0.898092,0.47833,0.504286,0.706436,0.633077,0.280126,0.744338,0.160929,0.71101,|0.802866,0.745235,0.223384,0.153142,0.210822,0.434761,0.41205,0.255149,0.161486,0.733147,0.808145,0.916365,0.0812891,0.976056,0.576164,0.466386,0.778626,0.7034,0.688219,0.932412,0.618575,0.0294273,0.104003,0.440331,0.201147,0.206235,0.632103,0.770921,0.680746,0.267887,0.68293,0.849361,0.0577354,0.263554,0.538505,0.986614,0.736927,0.294724,0.523911,0.782502,0.160645,0.298435,0.615744,0.828338,0.311829,0.740583,0.419801,0.671653,0.364173,0.932929,0.564944,0.49075,0.465538,0.721743,0.226928,0.602264,0.801301,0.486158,0.337691,0.335506,0.488935,0.468613,0.285887,0.602572,0.16394,0.186259,0.361773,0.55212,0.808379,0.505725,0.762053,0.19285,0.903335,0.467174,0.314005,0.424455,0.374938,0.531473,0.234773,0.974294,0.226431,0.548381,0.632887,0.801226,0.45267,0.39701,0.900186,0.652298,0.114829,0.746438,0.196103,0.384328,0.280696,0.425479,0.283379,0.0783396,0.519009,0.470556,0.17893,0.612491,0.539221,0.400077,0.770084,0.643604,0.237978,0.748406,0.211664,0.671981,0.0992451,0.890438,0.494564,0.0423544,0.605149,0.0696588,0.735435,0.0218231,0.784621,0.590782,0.625285,0.615996,0.146511,0.427116,0.686429,0.402644,0.910156,0.81209,0.862153,0.346311,0.0508855,0.00230223,0.85734,0.880137,0.913512,0.56168,0.871237,0.443446,0.437814,0.272625,0.0423356,0.361047,0.352193,0.877564,0.728943,0.58558,0.772631,0.802104,0.0351134,0.695714,0.821458,0.102619,0.829817,0.187752,0.693945,0.224391,0.237764,0.170178,0.381421,0.362492,0.26899,0.515707,0.246172,0.00241709,0.811884,0.258798,0.888501,0.693937,0.730484,0.529621,0.390327,0.0862463,0.629672,0.996854,0.178146,0.575817,0.961565,0.666864,0.657809,0.679764,0.355928,0.474449,0.915542,0.246131,0.403858,0.192629,0.755008,0.638674,0.439038,0.527338,0.747256,0.264304,0.465186,0.184501,0.372752,0.484865,0.62948,0.120611,0.640995,0.814672,0.53373,0.950634,0.15899,0.673398,0.801004,0.433482,0.498113,0.165468,0.106672,0.471819,0.678427,0.4254,0.676612,0.114468,0.147947,0.971163,0.777445,0.356265,0.642686,0.974341,0.845277,0.15068,0.904374,0.127675,0.965452,0.597095,0.490696,0.13255,0.915758,0.884592,0.253852,0.13868,0.299853,0.789507,0.970141,0.825205,0.952936,0.509431,0.481593,0.660415,0.8803,0.0378727,0.91399,0.349472,0.165645,0.183097,0.455106,0.320966,0.361734,0.285243,0.536369,0.560652,0.659817,0.465944,0.215966,0.617679,0.759528,0.47243,0.075078,0.0104519,0.61526,0.537488,0.302566,0.69859,0.784019,0.411518,0.428232,0.0840345,0.0582101,0.37993,0.142195,0.67502,0.765681,0.340111,0.425515,0.681155,0.535311,0.942828,0.559594,0.766957,0.962788,0.587344,0.217304,0.081494,0.550094,0.765341,0.0979944,0.736024,0.0741565,0.368757,0.992985,0.992193,0.695061,0.770768,0.202475,0.664204,0.19815,0.154064,0.992372,0.875025,0.266691,0.922126,0.923956,0.592783,0.489159,0.94332,0.644331,0.534253,0.0621686,0.976057,0.317673,0.263285,0.376358,0.816948,0.887584,0.731694,0.472633,0.0213266,0.636391,0.863741,0.0245655,0.626703,0.235913,0.0334699,0.281601,0.00667721,0.687405,0.72566,0.883172,0.732839,0.0379166,0.19154,0.351909,0.513121,0.236046,0.0270009,0.246467,0.581302,0.598662,0.807048,0.770723,0.95767,0.65528,0.7331,0.544879,0.446486,0.48756,0.652738,0.450073,0.948089,0.834678,0.932431,0.711004,0.372265,0.289995,0.354903,0.428147,0.0856143,0.290157,0.897806,0.213521,0.48959,0.431357,0.528035,0.649085,0.152035,0.313867,0.404183,0.223053,0.85596,0.7197,0.708344,0.917466,0.756402,0.402484,0.171617,0.0501863,0.0666523,0.317926,0.265308,0.659027,0.0214864,0.598652,0.74118,0.156004,0.693149,0.830433,0.747351,0.508475,0.530941,0.606853,0.0155881,0.633784,0.209551,0.0290604,0.832374,0.370183,0.335047,0.200507,0.237426,0.150395,0.921175,0.27347,0.872445,0.698625,0.0118927,0.450366,0.946269,0.833225,0.75761,0.190709,0.742501,0.797097,0.49046,0.207753,0.458688,0.919089,0.927058,0.265033,0.883356,0.574756,0.119825,0.0386527,0.459323,0.590959,0.72524,0.244361,0.929348,0.168686,0.811727,0.810102,0.258628,0.0724287,0.163502,0.834802,0.145806,0.466902,0.921242,0.583765,0.755125,0.45711,0.684991,0.086938,0.923486,0.588679,0.680574,0.216162,0.532185,0.595234,0.801461,0.649963,0.351759,0.0821704,0.4943,0.231504,0.944126,0.368725,0.739312,0.504638,0.273362,0.345511,0.379222,0.726553,0.31217,0.110881,0.544515,0.26079,0.84055,0.706548,0.667593,0.498434,0.548166,0.640307,0.539498,0.167667,0.180305,0.328925,0.285427,0.984613,0.706774,0.293244,0.688335,0.998779,0.0732399,0.219802,0.996204,0.0496129,0.588477,0.238163,0.113109,0.144943,0.6445,0.569988,0.790697,0.71634,0.187484,0.924528,0.0303841,0.826273,0.93466,0.365809,0.182211,0.388517,0.339363,0.926006,0.152063,0.341736,0.418448,0.015173,0.276844,0.000159144,0.168151,0.575658,0.289531,0.0943491,0.918988,0.76029,0.545224,0.835629,0.0520436,0.782925,0.458279,0.956417,0.779807,0.648031,0.659346,0.159337,0.541549,0.206511,0.690726,0.649067,0.245972,0.957758,0.247585,0.49284,0.906108,0.322244,0.943468,0.700461,0.953647,0.89424,0.506607,0.40021,0.606032,0.495395,0.339318,0.736113,0.760989,0.888106,0.881176,0.0913271,0.955616,0.665153,0.52526,0.270533,0.850516,0.378133,0.361173,0.0336534,0.447725,0.674919,0.0537915,0.160267,0.230072,0.703326,0.753753,0.266129,0.744381,0.496385,0.191428,0.906731,0.405524,0.235197,0.823406,0.429862,0.750104,0.856352,0.040926,0.16636,0.954142,0.923362,0.578747,0.713552,0.209241,0.940164,0.349706,0.856239,0.127374,0.753538,0.550808,0.720685,0.661246,0.0084579,0.637602,0.518391,0.0911807,0.295942,0.300042,0.776203,0.137607,0.773034,0.972338,0.360497,0.870416,0.736612,0.48936,0.322027,0.0943054,0.507119,0.542067,0.825818,0.30454,0.421779,0.752196,0.725891,0.939463,0.949969,0.171714,0.387375,0.190032,0.90898,0.89338,0.272933,0.195904,0.316901,0.218707,0.818865,0.585574,0.0931568,0.965801,0.0468349,0.0714056,0.81112,0.415511,0.670192,0.684209,0.775965,0.710192,0.692605,0.718689,0.906255,0.937279,0.635584,0.202023,0.933717,0.23375,0.221437,0.668232,0.312292,0.78603,0.949693,0.0745953,0.0344296,0.565667,0.0302165,0.469272,0.495166,0.995842,0.985926,0.624395,0.128631,0.315833,0.0872937,0.0287956,0.240903,0.315361,0.380886,0.0764574,0.466215,0.365539,0.306575,0.79782,0.561321,0.356314,0.319419,0.365659,0.584609,0.62455,0.841205,0.987477,0.169035,0.0772566,0.888471,0.0754082,0.748632,0.522196,0.681644,0.923383,0.230526,0.984734,0.667045,0.951928,0.606199,0.155324,0.030131,0.83211,0.153372,0.975907,0.107992,0.825585,0.42255,0.00963688,0.329763,0.463207,0.5017,0.37459,0.370054,0.639381,0.359909,0.709518,0.229342,0.496739,0.376147,0.912367,0.290563,0.281962,0.007056,0.152453,0.802387,0.0394826,0.855557,0.0425963,0.487066,0.723427,0.728147,0.542608,0.366703,0.803726,0.212107,0.469288,0.865962,0.369755,0.538573,0.375003,0.303657,0.436748,0.877146,0.266715,0.426964,0.223908,0.494599,0.570151,0.664928,0.215073,0.569011,0.201649,0.322298,0.935892,0.483646,0.43714,0.94123,0.184304,0.685887,0.36875,0.185479,0.446193,0.585439,0.67485,0.33425,0.0754384,0.0494391,0.665419,0.621022,0.974627,0.166712,0.293795,0.470298,0.13698,0.919029,0.377277,0.999944,0.500983,0.237585,0.875325,0.0513096,0.326583,0.560871,0.8008,0.305312,0.65033,0.455003,0.845103,0.294199,0.401604,0.534014,0.995384,0.254871,0.213509,0.529752,0.445129,0.302701,0.0864677,0.182288,0.943476,0.0998985,0.560876,0.0604416,0.293157,0.491487,0.521847,0.0228574,0.511033,0.670368,0.828205,0.798525,0.00469697,0.166607,0.978511,0.428566,0.954135,0.949026,0.646672,0.03506,0.440077,0.0847411,0.117502,0.117159,0.840952,0.912837,0.812653,0.634458,0.803167,0.312442,0.962949,0.773388,0.0525914,0.50968,0.0349591,0.40184,0.109078,0.393845,0.953126,0.661024,0.596479,0.904957,0.980728,0.49781,0.902775,0.671077,0.998463,0.586887,0.359116,0.341797,0.967663,0.0875058,0.733082,0.642267,0.497272,0.242852,0.300977,0.559017,0.382307,0.432127,0.956412,0.382649,0.567111,0.744931,0.386919,0.605737,0.794766,0.885645,0.357885,0.195141,0.49289,0.315612,0.295974,0.060366,0.411333,0.899371,0.652819,0.272532,0.465426,0.0552915,0.58113,0.284622,0.140027,0.0713699,0.554404,0.440336,0.509252,0.711913,0.881361,0.928674,0.224185,0.174791,0.229227,0.113358,0.482601,0.729919,0.649961,0.0637364,0.978219,0.587292,0.471706,0.767257,0.232949,0.483968,0.263267,0.799581,0.746434,0.343986,0.0913097,0.0488907,0.0803244,0.198685,0.242686,0.707888,0.240778,0.87476,0.47676,0.886593,0.908949,0.304038,0.00946671,0.559627,0.224347,0.717234,0.27285,0.159256,0.282936,0.250566,0.631633,0.248427,0.256215,0.434421,0.874518,0.243613,0.970581,0.98971,0.937255,0.940375,0.634119,0.22197,0.193241,0.878684,0.906222,0.0889747,0.959976,0.321398,0.529728,0.163109,0.734477,0.298092,0.218159,0.930886,0.957091,0.96522,0.868525,0.265959,0.475265,0.607568,0.5659,0.227718,0.22232,0.44333,0.579965,0.101544,0.748417,0.644617,0.189648,0.0296642,0.801194,0.276097,0.282031,0.980831,0.361264,0.234725,0.781988,0.547728,0.779242,0.330195,0.579092,0.395909,0.789542,0.553019,0.723919,0.763882,0.119425,0.281901,0.311072,0.454692,0.600744,0.847552,0.88403,0.886675,0.033285,0.848345,0.554271,0.840792,0.0861286,0.154313,0.833084,0.31793,0.26608,0.356555,0.0304642,0.666682,0.595958,0.312589,0.739779,0.418431,0.240606,|0.945042,0.694305,0.0287548,0.522757,0.700137,0.0450194,0.784805,0.77133,0.173696,0.275633,0.758801,0.408938,0.683253,0.666608,0.170859,0.109435,0.565693,0.646589,0.759628,0.551474,0.910263,0.322203,0.348787,0.142724,0.0983716,0.24367,0.26685,0.892717,0.0329487,0.431424,0.686989,0.1708,0.790889,0.0773844,0.459303,0.539885,0.491132,0.718269,0.691425,0.582001,0.0380518,0.428171,0.814312,0.220709,0.225431,0.317273,0.654822,0.350991,0.58729,0.928417,0.666518,0.366366,0.287486,0.411191,0.335266,0.254602,0.534999,0.719936,0.998042,0.27474,0.8287,0.283677,0.563446,0.888503,0.255437,0.856739,0.491459,0.255985,0.532926,0.0583666,0.63868,0.454853,0.10797,0.18607,0.369057,0.224315,0.694438,0.0525605,0.520514,0.40865,0.591648,0.899504,0.0435064,0.314281,0.426348,0.670004,0.455603,0.573915,0.956198,0.569909,0.0571597,0.423403,0.0152707,0.0664337,0.991643,0.83628,0.317927,0.704014,0.52208,0.743932,0.173384,0.393022,0.0653903,0.373565,0.12781,0.508027,0.449326,0.251046,0.538267,0.169435,0.673841,0.830841,0.224369,0.87486,0.0193185,0.325807,0.879699,0.336025,0.489873,0.835145,0.510665,0.384324,0.345359,0.293002,0.286586,0.874316,0.747128,0.783756,0.543358,0.432326,0.662026,0.925373,0.873,0.518781,0.691336,0.0793676,0.503916,0.681947,0.538666,0.400249,0.479739,0.0149983,0.748738,0.411127,0.041293,0.359457,0.683194,0.735179,0.162612,0.563346,0.274868,0.622322,0.707247,0.987391,0.479062,0.911258,0.515693,0.60943,0.619204,0.483047,0.579007,0.698712,0.194743,0.391779,0.992201,0.427123,0.195268,0.197664,0.603358,0.109404,0.332039,0.983038,0.311147,0.508179,0.632845,0.885237,0.308379,0.520687,0.499261,0.503296,0.558316,0.121244,0.821342,0.6478,0.226562,0.564659,0.493364,0.284077,0.52432,0.305011,0.517857,0.503686,0.854788,0.998734,0.415786,0.559199,0.319646,0.517282,0.693048,0.116475,0.584307,0.391644,0.638748,0.809173,0.628336,0.892912,0.868293,0.283671,0.490145,0.976478,0.874275,0.797509,0.818649,0.704967,0.427366,0.86901,0.769377,0.214544,0.539212,0.579068,0.154622,0.592992,0.864093,0.673498,0.491035,0.992872,0.861947,0.362985,0.348388,0.59206,0.388546,0.627843,0.334127,0.0819982,0.27054,0.804025,0.382702,0.578223,0.818161,0.132922,0.402065,0.932519,0.868852,0.533096,0.0622894,0.721065,0.664348,0.191699,0.418396,0.426976,0.335588,0.0884317,0.244591,0.776913,0.439032,0.709369,0.47129,0.271489,0.488308,0.854532,0.318172,0.83455,0.313451,0.649035,0.508228,0.105456,0.953105,0.354437,0.538769,0.318235,0.533778,0.363407,0.0880062,0.938136,0.0306,0.58576,0.449764,0.885942,0.0366861,0.207532,0.420921,0.47646,0.714977,0.731472,0.570948,0.385045,0.35306,0.00592977,0.638873,0.503109,0.106479,0.60914,0.0873585,0.024464,0.570974,0.530717,0.549473,0.42537,0.870971,0.372295,0.588212,0.629742,0.153265,0.612692,0.229995,0.677182,0.408389,0.806027,0.150845,0.0974498,0.18678,0.356608,0.80365,0.590655,0.153413,0.821572,0.000720799,0.564167,0.328111,0.358964,0.540517,0.121444,0.162499,0.948037,0.0922531,0.334247,0.41794,0.0950443,0.189294,0.171154,0.282336,0.365535,0.750674,0.286543,0.369759,0.362324,0.619219,0.967423,0.0992189,0.806857,0.953535,0.0827904,0.310628,0.374851,0.913256,0.581431,0.326706,0.147005,0.443977,0.355198,0.76502,0.214815,0.191435,0.330119,0.194785,0.329391,0.0525942,0.380014,0.00126529,0.549533,0.0015685,0.938572,0.861269,0.689427,0.164806,0.290959,0.208772,0.203951,0.0779963,0.61422,0.114368,0.989305,0.514982,0.926519,0.398962,0.0325868,0.839587,0.921017,0.338275,0.0780746,0.435642,0.693604,0.777911,0.377229,0.467897,0.389541,0.607255,0.638048,0.857787,0.472681,0.577171,0.971365,0.178803,0.542717,0.0458983,0.0542678,0.453138,0.371391,0.854218,0.266624,0.502142,0.901594,0.575777,0.98313,0.119329,0.606062,0.956447,0.247703,0.314231,0.236027,0.0202448,0.504057,0.240212,0.818532,0.220925,0.426556,0.863617,0.654135,0.0735935,0.769185,0.123093,0.360202,0.954224,0.241004,0.0724996,0.629194,0.578847,0.726591,0.943223,0.0968414,0.448701,0.500147,0.869642,0.4766,0.376358,0.924604,0.268021,0.0212575,0.411045,0.739966,0.577684,0.845631,0.970176,0.137972,0.704739,0.63621,0.599875,0.0295473,0.143087,0.1826,0.636257,0.293988,0.567331,0.608318,0.951268,0.00177133,0.024201,0.756346,0.500403,0.761606,0.811998,0.103843,0.0376011,0.353889,0.388694,0.560104,0.339662,0.18707,0.651234,0.720249,0.518128,0.792077,0.0853359,0.724006,0.516912,0.292442,0.807656,0.629367,0.332424,0.329995,0.53173,0.93618,0.19691,0.461403,0.362215,0.936009,0.923392,0.192002,0.5588,0.825008,0.64155,0.882967,0.707144,0.0720646,0.270316,0.31941,0.560684,0.0533282,0.963292,0.155594,0.511157,0.0781112,0.0632349,0.422095,0.94216,0.337756,0.84695,0.385732,0.216418,0.721792,0.851157,0.971962,0.903987,0.570334,0.065616,0.738795,0.227137,0.377575,0.50605,0.254384,0.869711,0.457591,0.370751,0.249524,0.50557,0.763351,0.882738,0.909513,0.396338,0.021272,0.403506,0.098604,0.443818,0.780128,0.6099,0.639626,0.1193,0.115647,0.592272,0.315783,0.245557,0.079187,0.96165,0.581865,0.481596,0.475836,0.855124,0.172704,0.409456,0.611875,0.368816,0.345151,0.422488,0.547182,0.622555,0.312716,0.576815,0.719333,0.57918,0.161459,0.646297,0.779452,0.710993,0.346867,0.298891,0.538076,0.795451,0.937143,0.906952,0.451971,0.992882,0.835298,0.845274,0.961567,0.0280368,0.735477,0.482714,0.484865,0.876069,0.250762,0.35949,0.230573,0.907455,0.911661,0.985831,0.33567,0.99589,0.828071,0.00684619,0.848022,0.696201,0.181936,0.254851,0.445478,0.00280589,0.168316,0.109147,0.427139,0.225558,0.138539,0.433731,0.814067,0.964975,0.47929,0.564977,0.963643,0.675699,0.685613,0.975207,0.0913159,0.645982,0.702812,0.244806,0.651242,0.0674667,0.815981,0.419254,0.279898,0.283347,0.0386859,0.125898,0.699422,0.57959,0.134061,0.561122,0.758185,0.495681,0.421777,0.164018,0.125413,0.702515,0.845733,0.427847,0.242311,0.0578308,0.273041,0.141778,0.0156322,0.0380226,0.896478,0.784718,0.549143,0.22993,0.291053,0.149331,0.213255,0.260451,0.700659,0.130782,0.480836,0.970745,0.29436,0.939231,0.326046,0.849929,0.753292,0.325594,0.0146863,0.695288,0.815373,0.712977,0.949706,0.667025,0.0491189,0.265833,0.702319,0.380133,0.528275,0.133905,0.570522,0.754851,0.0224823,0.699851,0.216191,0.677045,0.292158,0.67997,0.302007,0.254833,0.543621,0.763256,0.0179923,0.862713,0.324855,0.48658,0.222767,0.28607,0.032435,0.298285,0.996115,0.768722,0.921374,0.293196,0.297747,0.438628,0.8385,0.521211,0.572028,0.598344,0.901406,0.907918,0.494586,0.0945687,0.226287,0.292033,0.589532,0.0164726,0.656041,0.333173,0.0867697,0.150877,0.265702,0.396212,0.0380923,0.487893,0.673829,0.464097,0.717936,0.0578954,0.892975,0.59398,0.377142,0.339135,0.18805,0.565508,0.718215,0.403688,0.643014,0.893642,0.784071,0.13851,0.101075,0.210399,0.391321,0.794169,0.450219,0.723191,0.180126,0.64437,0.941673,0.55218,0.602564,0.0918476,0.637198,0.685846,0.662063,0.389757,0.598405,0.471269,0.00704229,0.36664,0.190705,0.0757233,0.0553329,0.228583,0.0437011,0.387952,0.51559,0.660171,0.358419,0.573723,0.104792,0.114152,0.5113,0.302831,0.34398,0.537364,0.296028,0.40422,0.375442,0.957787,0.0750033,0.0254256,0.18195,0.449347,0.76223,0.37185,0.261949,0.863086,0.630638,0.19211,0.186934,0.519936,0.341959,0.407674,0.0197799,0.503983,0.810897,0.830893,0.470822,0.467283,0.0313005,0.283834,0.48056,0.0482594,0.0600814,0.972808,0.884951,0.606191,0.209207,0.706666,0.997509,0.701521,0.780837,0.717834,0.440051,0.107926,0.815932,0.421694,0.550762,0.433658,0.723585,0.285888,0.697406,0.240814,0.431657,0.386949,0.144048,0.349028,0.172688,0.129658,0.261549,0.0441751,0.53115,0.763258,0.308015,0.635427,0.55723,0.113735,0.871314,0.713262,0.336556,0.396867,0.538852,0.433334,0.640963,0.636016,0.157634,0.679401,0.675871,0.714383,0.276406,0.0433669,0.847769,0.311981,0.730556,0.894248,0.606582,0.050868,0.822972,0.967605,0.211666,0.0171826,0.792859,0.892985,0.617351,0.766401,0.589363,0.44708,0.690213,0.493122,0.704752,0.649721,0.217225,0.824131,0.218426,0.0182101,0.201052,0.557297,0.343917,0.882536,0.951852,0.944361,0.0871546,0.357212,0.494347,0.626617,0.158546,0.47599,0.490073,0.549863,0.035412,0.295471,0.940036,0.528846,0.807687,0.954908,0.345168,0.409267,0.527858,0.242825,0.715677,0.300436,0.974456,0.735859,0.515498,0.361711,0.668225,0.27946,0.0790494,0.555932,0.32812,0.3425,0.40234,0.450565,0.166919,0.381886,0.876632,0.20776,0.466762,0.632269,0.495547,0.0246512,0.652291,0.737576,0.171655,0.335275,0.810558,0.35506,0.349566,0.24604,0.624238,0.94203,0.2031,0.40243,0.289884,0.209225,0.383429,0.199299,0.835428,0.492972,0.646251,0.394539,0.508381,0.296406,0.588303,0.320409,0.822371,0.0861573,0.288442,0.593124,0.342021,0.769694,0.157514,0.329774,0.166891,0.395657,0.5696,0.751418,0.0706246,0.91309,0.63745,0.47265,0.0640967,0.088111,0.653243,0.858082,0.939102,0.883273,0.812254,0.534245,0.889571,0.825464,0.80796,0.78533,0.545735,0.462897,0.452046,0.990592,0.0989887,0.938396,0.608742,0.918261,0.168088,0.11567,0.0761652,0.755144,0.482412,0.896381,0.374646,0.0445382,0.404523,0.389024,0.279561,0.889914,0.723647,0.217573,0.454543,0.142448,0.36733,0.395036,0.86926,0.459227,0.64748,0.554673,0.405425,0.353935,0.0967601,0.0785633,0.223658,|0.610263,0.246549,0.432059,0.752666,0.910408,0.163036,0.858238,0.644986,0.995322,0.0710481,0.218662,0.760063,0.36805,0.303915,0.968841,0.160324,0.03782,0.00489461,0.453313,0.0116524,0.344272,0.326681,0.0808845,0.89207,0.170959,0.528829,0.351306,0.321199,0.954184,0.550503,0.537121,0.0538558,0.411661,0.298894,0.717619,0.209635,0.676553,0.481291,0.923634,0.146866,0.397457,0.759052,0.434635,0.194739,0.741622,0.628805,0.741218,0.00418735,0.0537696,0.754818,0.0506898,0.494247,0.213912,0.482576,0.245015,0.721607,0.638058,0.782182,0.182687,0.235935,0.427749,0.639517,0.540791,0.611481,0.961637,0.0417768,0.31366,0.126756,0.124109,0.327285,0.747281,0.800657,0.362328,0.0975116,0.873115,0.31559,0.692682,0.486486,0.950651,0.0421616,0.81453,0.665696,0.299617,0.552355,0.593947,0.575397,0.0915367,0.760225,0.98503,0.800147,0.000569999,0.497372,0.608239,0.604395,0.218966,0.93738,0.491264,0.95047,0.100082,0.0424583,0.525585,0.983962,0.535664,0.133797,0.301951,0.991502,0.066152,0.518603,0.349167,0.994384,0.24481,0.165228,0.14394,0.34785,0.939724,0.0336901,0.352718,0.113572,0.951776,0.732166,0.985257,0.302668,0.0518743,0.537475,0.257647,0.0493525,0.849835,0.442679,0.342785,0.595838,0.431016,0.476996,0.556175,0.713107,0.231443,0.731384,0.746636,0.874267,0.613094,0.048412,0.395039,0.697611,0.925817,0.350972,0.29925,0.00912213,0.957967,0.226549,0.843852,0.795273,0.278143,0.368692,0.940898,0.354576,0.345996,0.864591,0.754842,0.630112,0.248537,0.0833692,0.984039,0.170605,0.485593,0.00839025,0.730816,0.602489,0.877675,0.852793,0.544822,0.774069,0.591012,0.542027,0.850361,0.336976,0.165869,0.197919,0.884093,0.954262,0.745384,0.939692,0.860654,0.99796,0.802004,0.700976,0.679425,0.011991,0.952255,0.944973,0.231455,0.0698692,0.758999,0.706653,0.27279,0.520186,0.91912,0.576512,0.305059,0.0203183,0.454218,0.854428,0.968446,0.99674,0.322691,0.367761,0.90167,0.970962,0.480974,0.623044,0.810239,0.50327,0.0320635,0.0854365,0.834497,0.375368,0.671217,0.243709,0.976698,0.863857,0.92924,0.432448,0.274486,0.5162,0.0787107,0.593362,0.62909,0.22494,0.717094,0.172162,0.654781,0.29254,0.559571,0.230648,0.224838,0.549474,0.174679,0.168895,0.952516,0.00586665,0.326717,0.469868,0.631413,0.384494,0.153325,0.755029,0.936225,0.935998,0.936732,0.340137,0.171193,0.411471,0.80758,0.730944,0.482705,0.970531,0.060289,0.902798,0.939715,0.789677,0.89805,0.0797547,0.279534,0.222154,0.949138,0.467755,0.906305,0.281724,0.253183,0.254064,0.505173,0.0733511,0.312611,0.627694,0.0190647,0.691064,0.71081,0.477297,0.839432,0.9154,0.61568,0.537554,0.355352,0.892204,0.926676,0.114037,0.393816,0.735211,0.854271,0.441789,0.357561,0.38507,0.453474,0.0403721,0.444902,0.441698,0.9893,0.250845,0.984825,0.102371,0.422459,0.467309,0.185801,0.263987,0.761269,0.157104,0.813837,0.677481,0.744392,0.428161,0.00275356,0.994319,0.955644,0.626493,0.962575,0.558151,0.0692856,0.191124,0.385899,0.38048,0.176068,0.0285615,0.88105,0.540494,0.583749,0.363167,0.786632,0.529516,0.626931,0.197443,0.335807,0.827507,0.541029,0.518074,0.397981,0.829953,0.594076,0.821329,0.190364,0.652043,0.433469,0.938818,0.839229,0.347136,0.50939,0.585509,0.225946,0.458104,0.0513798,0.815656,0.819732,0.340617,0.423373,0.633313,0.51192,0.424829,0.870509,0.912115,0.279852,0.377378,0.788996,0.96159,0.483991,0.807697,0.187592,0.605093,0.11359,0.779605,0.166969,0.896866,0.424766,0.372344,0.957225,0.952282,0.174212,0.465629,0.978579,0.526498,0.534599,0.175847,0.677883,0.736782,0.940607,0.765633,0.433222,0.0890841,0.127663,0.0890725,0.432848,0.0119841,0.0459546,0.153258,0.228563,0.975684,0.889185,0.527524,0.336304,0.858169,0.44072,0.206622,0.0615436,0.543406,0.356308,0.634424,0.0867927,0.491689,0.811764,0.333985,0.84461,0.908088,0.307196,0.452167,0.598248,0.0485688,0.466614,0.433228,0.606745,0.278925,0.303217,0.538668,0.43824,0.582884,0.126494,0.465286,0.875297,0.787872,0.978313,0.810506,0.863872,0.359486,0.514571,0.594422,0.616974,0.756166,0.686722,0.746582,0.927411,0.716735,0.132038,0.905451,0.917147,0.321036,0.531082,0.486159,0.6638,0.0913315,0.843558,0.52525,0.911908,0.230343,0.164274,0.739324,0.227845,0.0696762,0.462024,0.851897,0.284883,0.526536,0.441408,0.497881,0.497065,0.7715,0.574784,0.79542,0.151141,0.921936,0.667323,0.458214,0.763793,0.665612,0.967807,0.839275,0.873637,0.521649,0.779689,0.548206,0.826686,0.144166,0.226832,0.33303,0.864414,0.986887,0.394249,0.393124,0.206967,0.412175,0.57138,0.681266,0.883423,0.304623,0.34205,0.293919,0.262907,0.117016,0.523889,0.589984,0.788622,0.562212,0.0273188,0.461478,0.0619525,0.944554,0.550085,0.529901,0.925853,0.356341,0.775179,0.150993,0.872171,0.690849,0.794891,0.0760193,0.265523,0.306728,0.25195,0.285945,0.854634,0.394712,0.467415,0.256184,0.215606,0.620541,0.436772,0.216213,0.619828,0.0454015,0.388851,0.0553482,0.389595,0.283548,0.114184,0.726621,0.931595,0.786083,0.169889,0.687074,0.531329,0.220701,0.982584,0.266931,0.902001,0.0281112,0.886688,0.989139,0.266419,0.218705,0.531182,0.802911,0.0144254,0.419672,0.406939,0.777244,0.192709,0.719677,0.598647,0.405957,0.760534,0.00546718,0.827042,0.906826,0.888738,0.868113,0.282914,0.521053,0.130316,0.279012,0.898992,0.57785,0.474064,0.1721,0.39282,0.105116,0.970304,0.113991,0.874089,0.0898393,0.75708,0.375889,0.0561168,0.995518,0.6301,0.979755,0.950032,0.114596,0.416663,0.406876,0.997936,0.746423,0.504916,0.870125,0.254358,0.419406,0.0714639,0.629097,0.810872,0.504503,0.398282,0.834482,0.988031,0.781438,0.53506,0.342282,0.441453,0.0287133,0.931819,0.17201,0.529147,0.762565,0.500176,0.273628,0.854991,0.415907,0.400994,0.538107,0.512041,0.807674,0.345536,0.0727882,0.0271161,0.233786,0.309121,0.612945,0.588584,0.54152,0.694177,0.223897,0.128814,0.928771,0.274939,0.188522,0.690659,0.492339,0.467345,0.015815,0.0752236,0.792377,0.410288,0.504796,0.666258,0.214173,0.362631,0.168327,0.830415,0.548934,0.704899,0.647477,0.688933,0.531204,0.469604,0.170968,0.0531555,0.992999,0.117199,0.424047,0.87526,0.126552,0.297344,0.177798,0.860883,0.712296,0.649937,0.63416,0.853898,0.107596,0.260786,0.135857,0.585862,0.249115,0.215584,0.890865,0.86567,0.480438,0.183074,0.0677618,0.934845,0.994804,0.743811,0.492176,0.826941,0.772632,0.164727,0.885598,0.913882,0.804647,0.139285,0.0930561,0.4145,0.319748,0.30273,0.250168,0.115281,0.567545,0.819535,0.757628,0.74892,0.445104,0.162191,0.995277,0.942631,0.157618,0.623022,0.672495,0.883044,0.779579,0.0868825,0.265095,0.292612,0.460115,0.196966,0.439553,0.131333,0.456439,0.281166,0.201791,0.958634,0.506969,0.833314,0.442604,0.218751,0.286172,0.0538464,0.6878,0.951864,0.255928,0.385543,0.576575,0.947035,0.764928,0.936447,0.0145742,0.71865,0.559313,0.71782,0.86375,0.150978,0.164597,0.344117,0.597338,0.294455,0.395473,0.684077,0.152488,0.778969,0.337903,0.596709,0.973669,0.750261,0.5525,0.598993,0.520613,0.0687879,0.5226,0.989714,0.301792,0.93476,0.62268,0.287898,0.724949,0.412825,0.380255,0.274735,0.776141,0.0431156,0.291293,0.557297,0.601381,0.178147,0.624987,0.762897,0.0786502,0.930392,0.532791,0.918175,0.807169,0.683942,0.628428,0.285125,0.249115,0.841451,0.885375,0.763283,0.57794,0.170884,0.0185406,0.798579,0.73648,0.342566,0.609783,0.730794,0.192352,0.0752811,0.879238,0.337838,0.872526,0.902757,0.856921,0.318358,0.838248,0.773982,0.496335,0.603269,0.956979,0.754671,0.846451,0.109653,0.458834,0.467751,0.326009,0.652018,0.630028,0.295808,0.153146,0.018717,0.715761,0.389451,0.185374,0.0353271,0.843464,0.780198,0.19766,0.835644,0.12374,0.849588,0.852342,0.689441,0.136609,0.420464,0.124694,0.65828,0.922119,0.622884,0.263129,0.424674,0.755881,0.963308,0.968761,0.99678,0.780454,0.0774933,0.379922,0.929988,0.695335,0.876682,0.0131243,0.677636,0.0542544,0.052786,0.00755966,0.985715,0.0928212,0.925025,0.992663,0.193658,0.519094,0.352953,0.848798,0.114582,0.00400001,0.830223,0.871203,0.547919,0.020458,0.153144,0.47259,0.421905,0.267552,0.49421,0.451168,0.367787,0.305709,0.809041,0.432902,0.842668,0.850883,0.876147,0.378107,0.224624,0.527052,0.836216,0.670021,0.560518,0.501623,0.287042,0.356678,0.314566,0.0117651,0.823308,0.603319,0.229616,0.782326,0.716369,0.138578,0.136015,0.0675669,0.796539,0.246033,0.352327,0.697073,0.379921,0.554837,0.0944617,0.211454,0.65447,0.127888,0.249002,0.891955,0.710607,0.151351,0.365634,0.550066,0.0297641,0.24122,0.105331,0.382514,0.529652,0.620208,0.0200659,0.973939,0.547454,0.49481,0.401135,0.122461,0.298362,0.882534,0.720308,0.935974,0.123811,0.964898,0.389348,0.622883,0.289994,0.396295,0.78124,0.660638,0.736138,0.372412,0.46983,0.177611,0.166526,0.387442,0.446798,0.430011,0.669308,0.0775236,0.481281,0.458032,0.732399,0.994297,0.0770713,0.736359,0.0838742,0.94929,0.83073,0.606772,0.35704,0.51725,0.562757,0.733239,0.406612,0.502518,0.235084,0.0508116,0.940966,0.88461,0.416937,0.011116,0.640811,0.667853,0.471904,0.528117,0.499333,0.183186,0.0709052,0.681932,0.0562838,0.810679,0.854193,0.616418,0.493734,0.7133,0.170079,0.234306,0.174954,0.259849,0.212461,0.407174,0.208262,0.427962,0.527515,0.135079,0.655177,0.878735,0.00336266,0.304187,0.733542,0.87479,0.539908,0.291455,0.379355,0.948706,0.124404,0.267588,|0.305641,0.62748,0.958994,0.333003,0.425909,0.962874,0.077378,0.665452,0.523566,0.180045,0.442506,0.867636,0.117364,0.725169,0.961073,0.93642,0.6692,0.882811,0.086596,0.212367,0.0588683,0.960928,0.423946,0.939607,0.787818,0.940656,0.69716,0.275962,0.903561,0.221454,0.246738,0.354093,0.708889,0.17645,0.0295539,0.753267,0.458267,0.80943,0.505163,0.579867,0.937844,0.74096,0.367728,0.889226,0.550526,0.392363,0.438998,0.494348,0.665762,0.974128,0.33284,0.215261,0.673662,0.13892,0.494574,0.748971,0.442645,0.341913,0.289341,0.329963,0.524548,0.471763,0.657595,0.41601,0.545144,0.440117,0.436551,0.565102,0.182236,0.267964,0.866789,0.556483,0.207615,0.208637,0.0653349,0.130365,0.338434,0.0465145,0.33324,0.686253,0.246797,0.703435,0.754212,0.0867859,0.367858,0.600218,0.736994,0.5284,0.212288,0.64748,0.854834,0.448357,0.161855,0.464935,0.194956,0.247612,0.822255,0.913101,0.383415,0.997127,0.576709,0.979078,0.749266,0.641534,0.0321566,0.573058,0.708035,0.187309,0.801368,0.89253,0.659354,0.314451,0.409005,0.274349,0.541792,0.81602,0.762476,0.11414,0.914541,0.485862,0.483498,0.914782,0.0680698,0.28532,0.927015,0.833671,0.228309,0.551922,0.061758,0.584456,0.466782,0.396736,0.481598,0.468224,0.198993,0.352972,0.480733,0.615089,0.372475,0.319779,0.747278,0.870193,0.475553,0.222558,0.198769,0.365155,0.606902,0.15247,0.143754,0.671525,0.500363,0.0196739,0.682775,0.92314,0.859208,0.907851,0.211618,0.41382,0.421978,0.55155,0.837576,0.647982,0.187836,0.832657,0.0620624,0.990929,0.442286,0.257075,0.984683,0.366854,0.277705,0.821625,0.0575359,0.893409,0.122011,0.761239,0.934817,0.834227,0.857442,0.918879,0.0230844,0.743692,0.414115,0.0340259,0.405114,0.288541,0.0714535,0.984942,0.544086,0.985868,0.392438,0.557115,0.256877,0.123225,0.395911,0.88498,0.532229,0.126536,0.54536,0.194682,0.347364,0.465623,0.448546,0.909592,0.309615,0.387122,0.529984,0.697034,0.895172,0.289445,0.416968,0.876847,0.76173,0.889075,0.398433,0.0368356,0.613799,0.64613,0.927716,0.469753,0.0530462,0.116109,0.0605479,0.436497,0.8028,0.291761,0.24914,0.831556,0.979148,0.257694,0.885183,0.964125,0.912125,0.42446,0.512851,0.164117,0.0334141,0.969941,0.34537,0.504834,0.616571,0.64765,0.837355,0.277421,0.0650447,0.428029,0.0220688,0.433664,0.734061,0.559662,0.774711,0.191679,0.711149,0.343618,0.789442,0.416494,0.903058,0.855686,0.809117,0.0518967,0.725643,0.466819,0.369339,0.483979,0.0503439,0.576762,0.77561,0.159611,0.121817,0.112465,0.840078,0.456224,0.803622,0.00521857,0.109372,0.431946,0.550659,0.882076,0.777107,0.372685,0.30775,0.475197,0.550687,0.9871,0.870428,0.265143,0.645224,0.0666828,0.227984,0.846747,0.966999,0.00638241,0.537183,0.768276,0.914657,0.601869,0.373567,0.415865,0.0462877,0.904181,0.392447,0.159653,0.840272,0.818056,0.928846,0.129757,0.302503,0.771077,0.962646,0.596768,0.66547,0.0661033,0.822388,0.553272,0.49366,0.823188,0.677182,0.822918,0.593111,0.396456,0.616548,0.342568,0.585434,0.516372,0.0551885,0.710308,0.174041,0.107461,0.338914,0.0313328,0.419137,0.747943,0.596599,0.372761,0.340522,0.190122,0.530681,0.593612,0.82763,0.626229,0.00429994,0.577982,0.367342,0.473995,0.258178,0.362847,0.884882,0.859508,0.139955,0.867682,0.534945,0.40978,0.166292,0.194104,0.19447,0.733568,0.356189,0.714486,0.156034,0.814343,0.849573,0.648292,0.899654,0.380017,0.695077,0.251501,0.0650346,0.265484,0.939712,0.950453,0.356152,0.654008,0.193322,0.689169,0.621654,0.0393691,0.248069,0.218799,0.0932787,0.915281,0.183648,0.614067,0.228574,0.628657,0.475298,0.852635,0.0607978,0.170508,0.326141,0.904296,0.339191,0.0450449,0.234539,0.171288,0.943971,0.231453,0.435857,0.484945,0.107217,0.394743,0.953644,0.167896,0.647204,0.723876,0.16072,0.875218,0.703222,0.651311,0.80305,0.9742,0.692782,0.636091,0.335059,0.00724846,0.124465,0.429038,0.726369,0.450831,0.137148,0.852929,0.250755,0.0579865,0.687606,0.846076,0.451849,0.0661888,0.636824,0.976437,0.869588,0.442154,0.277136,0.698991,0.58104,0.559697,0.522284,0.85821,0.0790133,0.804348,0.0469034,0.577705,0.806455,0.0436747,0.049211,0.625804,0.776477,0.307608,0.487851,0.783875,0.132418,0.563857,0.77621,0.132515,0.763338,0.423505,0.276003,0.90342,0.83217,0.0167947,0.85279,0.854139,0.196008,0.420703,0.336541,0.884648,0.905811,0.103027,0.559206,0.150993,0.40489,0.392235,0.518732,0.957692,0.56528,0.600368,0.784132,0.0690241,0.696137,0.262565,0.85372,0.490247,0.224673,0.580308,0.195015,0.617228,0.210546,0.978456,0.0470368,0.201444,0.731576,0.0627943,0.335089,0.775601,0.707768,0.0944831,0.929774,0.812879,0.232518,0.958017,0.65976,0.279021,0.0468458,0.291695,0.485135,0.938803,0.25759,0.42937,0.895224,0.973852,0.940121,0.428716,0.620008,0.652191,0.377249,0.90375,0.894611,0.334731,0.911206,0.380135,0.0475542,0.489701,0.638176,0.496871,0.159873,0.109947,0.195027,0.710439,0.300712,0.825909,0.809245,0.157741,0.96718,0.0144308,0.0168693,0.360677,0.58688,0.696778,0.876838,0.364291,0.26534,0.981956,0.947605,0.944721,0.340489,0.660057,0.256789,0.304457,0.818278,0.732096,0.0196971,0.830076,0.25263,0.262088,0.354001,0.974527,0.13029,0.980974,0.437342,0.498138,0.847565,0.562118,0.631514,0.833578,0.862447,0.447939,0.756382,0.805889,0.175946,0.142843,0.669575,0.640559,0.474413,0.36064,0.51672,0.772863,0.489057,0.332308,0.229734,0.799829,0.616917,0.53208,0.601403,0.526131,0.644159,0.562139,0.476275,0.0472956,0.543697,0.1126,0.677481,0.813376,0.715474,0.0858714,0.378428,0.119064,0.284654,0.0450866,0.97825,0.559332,0.383734,0.923653,0.490588,0.790891,0.619614,0.626458,0.38091,0.967211,0.568396,0.526775,0.926152,0.0491799,0.255076,0.86476,0.487612,0.584613,0.564818,0.131276,0.557523,0.734825,0.0885749,0.639293,0.996088,0.773252,0.557336,0.194351,0.189303,0.337658,0.197051,0.852684,0.740826,0.709482,0.47297,0.0454288,0.233985,0.23423,0.700658,0.437617,0.0656056,0.131615,0.370879,0.800907,0.0740737,0.600516,0.0728514,0.108554,0.0778871,0.932163,0.168552,0.147367,0.562664,0.263719,0.545843,0.944373,0.913736,0.00592554,0.215518,0.46313,0.131061,0.509567,0.962254,0.286396,0.714001,0.977872,0.875631,0.576922,0.0717778,0.584318,0.229232,0.956786,0.810436,0.848056,0.353574,0.230864,0.835544,0.758911,0.501369,0.394297,0.878717,0.350613,0.225189,0.114863,0.198789,0.273853,0.69707,0.81044,0.0894083,0.899189,0.557824,0.857928,0.522357,0.111165,0.930385,0.94053,0.759136,0.1695,0.60545,0.437873,0.952746,0.733181,0.190924,0.00953287,0.0293937,0.668117,0.796171,0.900611,0.538152,0.829669,0.654674,0.279215,0.308991,0.925979,0.863333,0.0597385,0.99988,0.28147,0.0817622,0.389561,0.523784,0.508488,0.903141,0.182887,0.47686,0.24255,0.366701,0.596005,0.108198,0.87219,0.964663,0.755644,0.0691714,0.0723933,0.305718,0.815586,0.213038,0.801327,0.248147,0.0458875,0.490105,0.494282,0.481864,0.34457,0.296187,0.353129,0.466126,0.123527,0.934876,0.65928,0.521337,0.148103,0.0208212,0.232314,0.0776108,0.385387,0.10797,0.280761,0.569138,0.820099,0.45885,0.00959182,0.108148,0.620674,0.182799,0.738785,0.489128,0.315541,0.228592,0.787939,0.660661,0.612914,0.475647,0.952206,0.905897,0.340607,0.696238,0.649176,0.594024,0.956563,0.587356,0.0716701,0.113026,0.493184,0.630991,0.016523,0.342558,0.155219,0.896254,0.194277,0.465134,0.0574204,0.283104,0.715415,0.22918,0.869924,0.726466,0.0120587,0.728369,0.440329,0.310319,0.338365,0.302766,0.358791,0.032162,0.78289,0.724406,0.99777,0.00670421,0.794741,0.593075,0.821977,0.795425,0.323505,0.506848,0.103083,0.403859,0.98429,0.467299,0.0960317,0.35308,0.227714,0.413417,0.395794,0.655627,0.544485,0.341847,0.837353,0.856803,0.192792,0.901208,0.467816,0.219958,0.611794,0.496239,0.414391,0.18184,0.151767,0.0243112,0.881437,0.767892,0.671439,0.339188,0.994635,0.462233,0.574637,0.268777,0.486349,0.874148,0.724913,0.385681,0.258883,0.68301,0.0180421,0.917372,0.166627,0.097692,0.256105,0.497182,0.749227,0.184097,0.406561,0.766393,0.811136,0.828754,0.624339,0.768124,0.46063,0.259786,0.435435,0.147518,0.549065,0.384353,0.867491,0.748058,0.674462,0.28968,0.190323,0.133347,0.768789,0.507335,0.678899,0.565557,0.666041,0.536919,0.687535,0.460048,0.643474,0.911276,0.0739431,0.0919412,0.430308,0.275997,0.305455,0.922605,0.0942727,0.631273,0.175712,0.352586,0.355317,0.969939,0.232033,0.103914,0.919553,0.219966,0.566717,0.459724,0.4308,0.864081,0.643138,0.827017,0.580869,0.539378,0.66686,0.53471,0.739081,0.42039,0.970638,0.298883,0.190673,0.502685,0.47782,0.0608515,0.989561,0.0537569,0.612276,0.85268,0.171963,0.243289,0.181118,0.336546,0.652923,0.753564,0.0578764,0.66856,0.965971,0.255024,0.239005,0.4396,0.189716,0.999474,0.131395,0.983395,0.312819,0.57248,0.333419,0.78592,0.856875,0.368199,0.518669,0.0939679,0.279724,0.824816,0.684981,0.756653,0.248563,0.339894,0.011018,0.350947,0.272562,0.84036,0.718453,0.150817,0.312036,0.61898,0.798706,0.870714,0.97262,0.0235383,0.971439,0.879444,0.767392,0.943032,0.362383,0.314887,0.597704,0.209528,0.369192,0.573558,0.249918,0.798516,0.0420592,0.0882565,0.579111,0.749691,0.468164,0.339073,0.827638,0.778865,0.0906956,0.713374,0.907949,0.125989,0.758723,0.367424,0.405759,0.521448,0.207922,0.631079,0.830605,0.969113,0.537766,0.195308,0.338285,|0.323644,0.43694,0.163997,0.401634,0.775831,0.744178,0.954145,0.0787158,0.88557,0.321847,0.766262,0.954595,0.319912,0.113206,0.523635,0.161625,0.719622,0.733863,0.368641,0.29436,0.535843,0.731845,0.995,0.719686,0.83863,0.69892,0.962169,0.10695,0.300928,0.125818,0.00103235,0.569885,0.655718,0.653946,0.565353,0.637949,0.0718436,0.428486,0.285695,0.4087,0.330877,0.549936,0.675186,0.0428635,0.776182,0.607367,0.477684,0.459877,0.776012,0.624307,0.463664,0.294487,0.230205,0.669313,0.115277,0.961492,0.720658,0.117968,0.0110357,0.445372,0.425572,0.774414,0.0696784,0.484788,0.176595,0.610725,0.601436,0.97146,0.440636,0.304729,0.657213,0.160712,0.93684,0.0156518,0.905136,0.68561,0.733321,0.080112,0.331638,0.109542,0.889202,0.0404237,0.663692,0.392919,0.630809,0.495667,0.247805,0.142207,0.0920088,0.606509,0.105912,0.873593,0.888231,0.402593,0.738176,0.656947,0.990152,0.1202,0.552945,0.253833,0.543906,0.87631,0.9859,0.528844,0.706762,0.947035,0.397437,0.475622,0.368665,0.62379,0.803396,0.0538519,0.801021,0.71132,0.318543,0.448476,0.345425,0.997152,0.0851767,0.74101,0.939686,0.510101,0.308666,0.385026,0.890436,0.496795,0.0981993,0.321496,0.102933,0.782272,0.220023,0.770526,0.324662,0.893915,0.0974349,0.259747,0.883597,0.551793,0.0426894,0.679933,0.364438,0.614746,0.547839,0.262353,0.392062,0.487068,0.253021,0.614918,0.574272,0.131047,0.680678,0.00265104,0.506061,0.574362,0.130964,0.207417,0.860316,0.255761,0.701009,0.665947,0.767214,0.00160754,0.782708,0.814809,0.695484,0.541535,0.742741,0.0305265,0.516519,0.151046,0.412872,0.496533,0.224883,0.988114,0.407243,0.410959,0.488434,0.747474,0.957918,0.327086,0.390566,0.0810419,0.932902,0.979708,0.484268,0.924627,0.936476,0.518838,0.123457,0.350984,0.525128,0.880519,0.930347,0.718834,0.851903,0.692165,0.288679,0.895977,0.463021,0.937638,0.291346,0.0693712,0.649278,0.516322,0.42349,0.746323,0.799941,0.0237575,0.463746,0.989296,0.281563,0.392745,0.438978,0.702618,0.107241,0.151954,0.632714,0.797817,0.622135,0.000145376,0.282484,0.0782014,0.151354,0.96124,0.720081,0.967727,0.177929,0.17596,0.363159,0.821407,0.0394033,0.540489,0.539145,0.415631,0.665196,0.46643,0.64996,0.260392,0.418828,0.983118,0.511563,0.772082,0.252381,0.20178,0.203114,0.915839,0.938965,0.623078,0.351565,0.563312,0.836718,0.944963,0.020798,0.832504,0.779178,0.678914,0.978232,0.25958,0.961552,0.704963,0.0201123,0.370317,0.703353,0.639122,0.0682969,0.284044,0.580603,0.290698,0.385085,0.760515,0.792139,0.179903,0.853061,0.849851,0.586253,0.848901,0.3146,0.700926,0.836349,0.74975,0.693102,0.92843,0.480805,0.385396,0.462189,0.318932,0.587195,0.15636,0.62595,0.853088,0.740389,0.932533,0.448314,0.942492,0.454207,0.0730375,0.6061,0.902065,0.724219,0.372883,0.705945,0.174436,0.394362,0.660292,0.291791,0.262764,0.522725,0.608593,0.850515,0.0315872,0.0289345,0.896594,0.992998,0.523762,0.091302,0.278097,0.664025,0.397648,0.80178,0.993632,0.203716,0.658036,0.787467,0.650151,0.728229,0.385923,0.198083,0.694465,0.870636,0.783277,0.930207,0.251562,0.561342,0.281093,0.640427,0.00229579,0.667241,0.560962,0.0587713,0.0557396,0.662808,0.388234,0.910464,0.906448,0.192119,0.151393,0.17417,0.821605,0.620264,0.770763,0.789819,0.581381,0.999374,0.455965,0.0888441,0.56605,0.453683,0.628447,0.469724,0.772159,0.966765,0.1945,0.509861,0.953478,0.488361,0.713153,0.571256,0.412279,0.314094,0.35662,0.809003,0.412732,0.545959,0.115251,0.204419,0.288732,0.975204,0.991435,0.890246,0.92718,0.0700452,0.527695,0.893676,0.779341,0.330459,0.339364,0.92526,0.0802712,0.33313,0.894547,0.34614,0.130764,0.945918,0.212174,0.0645761,0.374641,0.817,0.393155,0.482085,0.596505,0.238916,0.58015,0.492909,0.68022,0.491955,0.626988,0.410329,0.341936,0.324019,0.167905,0.252082,0.130817,0.890351,0.583256,0.425048,0.681633,0.990753,0.858281,0.227232,0.0929698,0.476959,0.0148922,0.489066,0.998161,0.437651,0.971178,0.977834,0.579022,0.0864588,0.362785,0.210893,0.026452,0.651617,0.490424,0.560144,0.314824,0.431058,0.956359,0.295963,0.0987029,0.692747,0.466885,0.513811,0.863073,0.566932,0.810304,0.296942,0.328764,0.751251,0.657734,0.491417,0.387109,0.451821,0.271593,0.680919,0.795561,0.244242,0.645338,0.429601,0.658727,0.719932,0.760762,0.478357,0.233326,0.636006,0.558949,0.579122,0.687667,0.559091,0.32769,0.444373,0.430024,0.0800079,0.214977,0.718418,0.953501,0.0306551,0.0213935,0.197359,0.17922,0.188997,0.742161,0.168297,0.109285,0.288649,0.938028,0.56719,0.194418,0.582223,0.429359,0.0545602,0.491055,0.611851,0.89672,0.283109,0.701067,0.603136,0.0630981,0.818557,0.291091,0.614376,0.930888,0.380056,0.384984,0.50853,0.874181,0.736213,0.888648,0.0761423,0.525537,0.991699,0.0259994,0.816373,0.133645,0.325612,0.267606,0.163098,0.237827,0.0758438,0.000307083,0.587093,0.301605,0.235738,0.18455,0.975036,0.822898,0.932523,0.499955,0.03993,0.850533,0.894416,0.872093,0.121735,0.695346,0.612915,0.291725,0.869164,0.10114,0.893376,0.667415,0.145471,0.369888,0.523173,0.207332,0.599688,0.188438,0.452513,0.927151,0.901476,0.716657,0.704124,0.95212,0.145937,0.417085,0.506892,0.712865,0.885069,0.604925,0.284723,0.712657,0.255459,0.570268,0.581828,0.334873,0.342819,0.168975,0.265278,0.756525,0.508057,0.245803,0.360324,0.0632971,0.745629,0.358544,0.555932,0.178015,0.662588,0.185358,0.10166,0.205348,0.858696,0.988219,0.251969,0.349003,0.498416,0.991368,0.427724,0.0639608,0.543712,0.827909,0.89089,0.594042,0.945152,0.505378,0.0161209,0.145285,0.972129,0.636423,0.673074,0.656036,0.661926,0.703495,0.458326,0.211123,0.540842,0.392015,0.8565,0.672334,0.662486,0.574757,0.702887,0.278085,0.356708,0.594459,0.672413,0.885853,0.132807,0.8879,0.965503,0.84599,0.9901,0.358001,0.800773,0.221663,0.533053,0.894693,0.919,0.117093,0.17432,0.00881833,0.636604,0.106939,0.424807,0.501937,0.734272,0.92455,0.806781,0.489118,0.724405,0.529417,0.0861071,0.971886,0.989178,0.928937,0.68478,0.629379,0.415578,0.920248,0.821534,0.75576,0.0303925,0.305899,0.951892,0.174405,0.24858,0.367164,0.858657,0.577823,0.187252,0.454473,0.892278,0.525561,0.340938,0.00311136,0.80996,0.644216,0.686567,0.998915,0.937591,0.404266,0.625152,0.137177,0.779571,0.72597,0.530479,0.236185,0.482208,0.817493,0.764551,0.987634,0.713637,0.460411,0.257851,0.656365,0.931616,0.561639,0.934142,0.441762,0.277224,0.36013,0.346966,0.0019902,0.192677,0.64479,0.720402,0.386486,0.725339,0.179371,0.33629,0.244425,0.0798968,0.590868,0.834846,0.592857,0.817931,0.00968874,0.441074,0.477392,0.341842,0.528498,0.732607,0.828862,0.70529,0.29726,0.765793,0.421009,0.395414,0.811733,0.217212,0.450492,0.733557,0.936865,0.434007,0.207096,0.798645,0.0738749,0.214778,0.0679165,0.619144,0.584617,0.13826,0.409816,0.269678,0.749055,0.806913,0.477135,0.691071,0.509719,0.11463,0.216549,0.770788,0.744467,0.326848,0.348378,0.52517,0.84458,0.386782,0.0638418,0.835552,0.921395,0.744152,0.537585,0.239847,0.514647,0.0832021,0.421795,0.807088,0.461618,0.848196,0.439855,0.393521,0.235561,0.433487,0.827431,0.65226,0.583935,0.948142,0.14584,0.69746,0.340138,0.866846,0.317344,0.060223,0.529001,0.52937,0.428038,0.735009,0.661452,0.174506,0.484697,0.889327,0.357271,0.000231445,0.3857,0.513893,0.379324,0.192958,0.0836062,0.66558,0.230554,0.467094,0.0339106,0.563451,0.558256,0.893584,0.242454,0.647162,0.987197,0.83268,0.374268,0.520761,0.724348,0.519132,0.958761,0.747008,0.671835,0.961718,0.250795,0.410071,0.454462,0.638943,0.810407,0.691905,0.672221,0.655693,0.0799107,0.495678,0.447985,0.864492,0.199557,0.288023,0.774464,0.0330897,0.163368,0.0126704,0.700122,0.0413768,0.58747,0.862807,0.860891,0.881054,0.270067,0.253969,0.206007,0.588186,0.093276,0.586575,0.453703,0.894588,0.711917,0.452019,0.931836,0.243887,0.0829208,0.553113,0.72409,0.831585,0.847976,0.430171,0.839886,0.12556,0.341171,0.176106,0.415106,0.386392,0.629087,0.896548,0.950719,0.937033,0.331101,0.932787,0.821364,0.503039,0.386311,0.323333,0.799692,0.169641,0.770059,0.335052,0.923209,0.81045,0.567355,0.00437295,0.232928,0.660905,0.108738,0.16399,0.389981,0.788317,0.866076,0.805108,0.960334,0.149377,0.393222,0.652627,0.778832,0.380239,0.862886,0.360007,0.181279,0.68636,0.751306,0.34802,0.116077,0.535453,0.240879,0.872849,0.418177,0.733763,0.31209,0.749359,0.737917,0.462574,0.811029,0.678358,0.947905,0.750205,0.125417,0.92474,0.362011,0.309997,0.291584,0.630026,0.67851,0.714598,0.852963,0.599868,0.224405,0.341527,0.4409,0.626791,0.384949,0.133305,0.328602,0.656017,0.472503,0.042787,0.956944,0.701063,0.323983,0.532554,0.955267,0.940031,0.573124,0.917333,0.447854,0.0100581,0.886905,0.318331,0.898169,0.276863,0.406432,0.896877,0.577792,0.481293,0.639438,0.45842,0.459129,0.885697,0.73234,0.0327306,0.586904,0.284307,0.266393,0.00778025,0.201265,0.874029,0.843921,0.594694,0.039227,0.161959,0.566505,0.380125,0.324892,0.31282,0.731603,0.709364,0.470234,0.0447302,0.984829,0.133253,0.68246,0.37529,0.20632,0.693699,0.2012,0.754144,0.552821,0.236778,0.118387,0.943008,0.60739,0.819074,0.855131,0.858814,0.530959,0.453429,0.549159,0.414882,0.397831,0.169607,0.966589,0.449887,0.543786,0.542479,0.705064,0.268717,0.974646,0.717979,0.213049,|0.88264,0.509785,0.792224,0.705496,0.84712,0.539568,0.0956039,0.00945425,0.239551,0.817347,0.525666,0.00063616,0.150488,0.410253,0.571794,0.472502,0.0334954,0.672311,0.641197,0.554797,0.773467,0.0121796,0.743491,0.459764,0.0271801,0.623885,0.24399,0.357169,0.650449,0.567964,0.725878,0.741039,0.655874,0.152839,0.735207,0.402724,0.741149,0.185918,0.324481,0.923776,0.797908,0.454454,0.240348,0.809808,0.274888,0.906911,0.0484961,0.834644,0.864307,0.909727,0.0140224,0.176559,0.241564,0.896376,0.532369,0.974416,0.44444,0.879081,0.493634,0.608126,0.76112,0.352875,0.204297,0.332803,0.718229,0.2015,0.768796,0.349065,0.697316,0.770229,0.893513,0.0128412,0.505513,0.847195,0.0895824,0.702893,0.622713,0.980782,0.422175,0.779035,0.741402,0.126776,0.711379,0.0549038,0.0696599,0.353817,0.825149,0.289133,0.0325082,0.108156,0.0534477,0.511104,0.905121,0.947208,0.354419,0.573612,0.421959,0.855087,0.734697,0.718541,0.701433,0.188467,0.705128,0.465957,0.979871,0.611552,0.337529,0.505651,0.961537,0.0427274,0.578943,0.635742,0.699848,0.0232447,0.658436,0.440418,0.497638,0.498531,0.810592,0.567898,0.404066,0.7867,0.285571,0.840664,0.587303,0.283737,0.515799,0.293864,0.921311,0.0407993,0.134602,0.0602782,0.564248,0.424726,0.598286,0.90974,0.984112,0.357111,0.105665,0.467581,0.276046,0.653023,0.0897444,0.357851,0.528069,0.869834,0.625794,0.666918,0.453704,0.837419,0.139646,0.968234,0.116188,0.966162,0.339542,0.763769,0.876235,0.177003,0.936383,0.957754,0.788399,0.915225,0.698742,0.893489,0.698857,0.792571,0.206702,0.146812,0.783224,0.738592,0.738296,0.717998,0.877019,0.480423,0.239593,0.000468671,0.11008,0.307859,0.753063,0.749306,0.239705,0.291773,0.146101,0.778988,0.643162,0.15863,0.157309,0.410594,0.287103,0.308872,0.442817,0.55522,0.70225,0.692744,0.703795,0.516365,0.0609387,0.938101,0.0716086,0.944127,0.675612,0.847518,0.673377,0.463528,0.471977,0.123098,0.323379,0.570794,0.764207,0.218895,0.519434,0.548757,0.464523,0.389285,0.178956,0.6355,0.631441,0.694554,0.660523,0.14465,0.836112,0.274227,0.463195,0.251323,0.766023,0.856976,0.873036,0.699468,0.749234,0.367198,0.9496,0.963325,0.842127,0.951864,0.991567,0.113673,0.808618,0.00170588,0.783473,0.272077,0.970528,0.801789,0.580693,0.962991,0.473612,0.63466,0.304083,0.176603,0.789385,0.768335,0.200283,0.44087,0.894281,0.965568,0.601183,0.102391,0.0175991,0.598488,0.079998,0.934951,0.25141,0.748641,0.308784,0.0566557,0.685913,0.912058,0.392232,0.405165,0.232727,0.370933,0.810989,0.597896,0.912945,0.847987,0.574469,0.113506,0.915641,0.421038,0.568967,0.361373,0.886402,0.271783,0.132822,0.301341,0.698571,0.147232,0.7414,0.474756,0.885616,0.103606,0.32252,0.503565,0.00525266,0.0435207,0.851012,0.423802,0.184657,0.714766,0.204054,0.473888,0.277941,0.726795,0.679544,0.253749,0.829569,0.649639,0.555902,0.634968,0.936951,0.976694,0.155248,0.766747,0.843126,0.245938,0.0517968,0.269918,0.268366,0.963886,0.572992,0.632698,0.0645885,0.465398,0.437778,0.298811,0.696215,0.103436,0.62576,0.0436908,0.063309,0.733502,0.548069,0.0129523,0.698087,0.726727,0.819593,0.027748,0.0705097,0.329391,0.230863,0.805589,0.775128,0.858404,0.220903,0.975835,0.0415996,0.795107,0.626606,0.824065,0.288767,0.940763,0.255155,0.882611,0.819545,0.064005,0.492892,0.919205,0.932549,0.745523,0.737816,0.743088,0.615294,0.120047,0.363487,0.751817,0.704494,0.506167,0.0117922,0.450447,0.742485,0.329669,0.283147,0.0486719,0.543803,0.599724,0.469127,0.577366,0.570717,0.173899,0.0689335,0.142899,0.512671,0.508592,0.565119,0.395186,0.361229,0.696761,0.581993,0.589876,0.998278,0.33162,0.908248,0.460711,0.252186,0.159293,0.0282137,0.0946701,0.347822,0.885666,0.298504,0.198272,0.980693,0.00742412,0.80909,0.758651,0.247151,0.273417,0.28777,0.217209,0.902588,0.148775,0.919365,0.763957,0.691186,0.583964,0.761573,0.508613,0.322546,0.830222,0.766967,0.919444,0.282443,0.786586,0.0714958,0.0207828,0.784628,0.0890311,0.837906,0.358289,0.847102,0.998451,0.153597,0.573138,0.114199,0.961461,0.599917,0.560925,0.713033,0.659037,0.969009,0.680509,0.517761,0.41756,0.166426,0.0316761,0.721947,0.613238,0.760132,0.661411,0.0504768,0.153168,0.764293,0.181899,0.140715,0.934073,0.251069,0.557042,0.280823,0.571048,0.36534,0.888886,0.346666,0.789503,0.790273,0.597738,0.581575,0.0739461,0.48745,0.706746,0.554048,0.22866,0.0571222,0.506651,0.0980073,0.276089,0.0539594,0.325472,0.195765,0.0521755,0.599456,0.292067,0.944521,0.0360367,0.389732,0.496856,0.576442,0.790542,0.313292,0.364413,0.201771,0.86275,0.9854,0.808962,0.57128,0.0486087,0.614296,0.520318,0.472534,0.310903,0.305528,0.642109,0.962239,0.375999,0.843538,0.626957,0.173911,0.5374,0.362917,0.0178475,0.810162,0.126327,0.00724411,0.338975,0.450037,0.195751,0.690022,0.158005,0.925049,0.296884,0.916044,0.306223,0.513589,0.266256,0.650423,0.636259,0.247635,0.0697241,0.180081,0.179894,0.400821,0.851821,0.597968,0.13566,0.436758,0.641397,0.12704,0.466801,0.682582,0.390777,0.541279,0.0843764,0.87635,0.860827,0.329091,0.976851,0.302004,0.0892488,0.708871,0.555557,0.318722,0.0876483,0.89183,0.0310332,0.0716041,0.371188,0.708984,0.799771,0.0825629,0.633853,0.906355,0.482796,0.0793706,0.700363,0.15151,0.0248911,0.731965,0.390703,0.878225,0.533767,0.0897541,0.708743,0.720272,0.259488,0.542471,0.395779,0.913161,0.910088,0.635784,0.144829,0.00737125,0.846958,0.589613,0.214487,0.0868957,0.644013,0.33012,0.103393,0.378942,0.381714,0.394065,0.426851,0.534291,0.954893,0.889421,0.311495,0.727818,0.729614,0.56346,0.391228,0.296282,0.905186,0.145913,0.982016,0.409654,0.858721,0.561718,0.722432,0.0926654,0.493271,0.338055,0.045819,0.0782958,0.715804,0.53982,0.880274,0.187077,0.495124,0.548533,0.229578,0.986029,0.0231508,0.108601,0.301886,0.395486,0.958423,0.589272,0.252806,0.966924,0.0597695,0.723103,0.728829,0.8947,0.42574,0.190357,0.951641,0.643174,0.366672,0.551603,0.196272,0.922462,0.395362,0.822322,0.79651,0.0899982,0.227429,0.738688,0.0661294,0.712832,0.718758,0.91526,0.554386,0.661237,0.0739499,0.00773102,0.96159,0.672655,0.955788,0.997738,0.510142,0.770566,0.132029,0.304623,0.663436,0.190312,0.758708,0.63307,0.676934,0.601719,0.736865,0.314581,0.880036,0.570747,0.121006,0.408681,0.123613,0.169889,0.599307,0.32691,0.622812,0.852796,0.716602,0.271167,0.428481,0.946578,0.271792,0.84183,0.473772,0.553486,0.904691,0.820584,0.21174,0.229151,0.959289,0.673183,0.907416,0.072271,0.271701,0.86919,0.610145,0.623739,0.81158,0.221791,0.192606,0.488494,0.479263,0.30313,0.316968,0.449965,0.965533,0.261544,0.705222,0.583382,0.347535,0.383959,0.725881,0.259554,0.738669,0.339944,0.806966,0.097397,0.594191,0.263292,0.441558,0.568232,0.384485,0.418066,0.583094,0.592639,0.56082,0.620044,0.767971,0.877762,0.756686,0.357575,0.212812,0.903081,0.0497929,0.736833,0.895633,0.696033,0.951734,0.143914,0.854868,0.602634,0.719986,0.189686,0.70458,0.672488,0.366718,0.395967,0.787026,0.971252,0.980401,0.947201,0.375437,0.733432,0.140688,0.811424,0.355412,0.453724,0.701638,0.504752,0.790666,0.779158,0.823599,0.834099,0.822261,0.92622,0.41136,0.178564,0.509043,0.398377,0.921455,0.901446,0.605741,0.274986,0.00789577,0.156534,0.792245,0.648157,0.886088,0.814682,0.830019,0.777256,0.188526,0.219627,0.302073,0.63873,0.387417,0.865574,0.157509,0.0236472,0.228408,0.285496,0.020126,0.159687,0.813797,0.667386,0.61223,0.0163603,0.700926,0.320551,0.457876,0.393665,0.474219,0.283704,0.607411,0.950226,0.458186,0.419908,0.537843,0.475855,0.298896,0.85199,0.520491,0.856647,0.966812,0.495563,0.379867,0.214084,0.216373,0.586779,0.643133,0.0703299,0.388434,0.38755,0.916214,0.996465,0.973932,0.762383,0.641112,0.0370666,0.250681,0.0725868,0.580764,0.584003,0.0122546,0.425044,0.283903,0.753381,0.592876,0.724257,0.983237,0.698837,0.432581,0.617197,0.142697,0.484556,0.879142,0.506658,0.697545,0.597955,0.989759,0.683006,0.414324,0.541256,0.574848,0.809392,0.892756,0.134176,0.699013,0.348053,0.583828,0.116821,0.139421,0.798684,0.0128151,0.0479314,0.351795,0.618322,0.543241,0.200265,0.0221782,0.288931,0.337547,0.382708,0.586396,0.449675,0.030573,0.27912,0.632856,0.547427,0.589864,0.501084,0.308471,0.953426,0.186712,0.0631592,0.404801,0.99024,0.718959,0.158545,0.969656,0.496002,0.917663,0.689281,0.102463,0.493426,0.801665,0.507573,0.12585,0.78884,0.338132,0.768904,0.173341,0.262575,0.0576996,0.0671722,0.968772,0.886811,0.299713,0.953396,0.146227,0.662555,0.553263,0.0210727,0.0887946,0.900193,0.583508,0.850968,0.572843,0.86096,0.284822,0.765607,0.0528986,0.843264,0.372252,0.515337,0.667863,0.921325,0.404966,0.491659,0.324533,0.11105,0.751512,0.833962,0.0238627,0.387818,0.2342,0.0530544,0.357282,0.940448,0.974048,0.445092,0.170268,0.118673,0.0951301,0.493547,0.469503,0.216145,0.135088,0.197661,0.171225,0.812415,0.469896,0.217337,0.0856522,0.102766,0.457908,0.173889,0.0480118,0.416871,0.587881,0.962049,0.673055,0.787323,0.49976,0.391347,0.85865,0.118098,0.243949,0.637707,0.00820625,0.66305,0.362607,0.37721,0.69647,0.844995,0.654711,0.218278,0.524557,0.179167,0.526873,0.158903,0.104694,0.405317,0.70481,0.636436,0.975126,0.284928,0.621397,0.0556347,0.746809,0.844452,0.140486,0.811812,0.228503,0.260591,0.355782,0.739425,0.816339,|0.196129,0.779336,0.866562,0.252224,0.806933,0.435336,0.592173,0.801265,0.526721,0.137222,0.462443,0.47573,0.259534,0.326281,0.881086,0.893904,0.890396,0.884598,0.392282,0.975702,0.739127,0.667229,0.352188,0.902718,0.0515471,0.00752491,0.0381927,0.150561,0.221329,0.802952,0.426211,0.143411,0.608901,0.55607,0.597715,0.200674,0.523846,0.110514,0.270388,0.0503926,0.0932364,0.957893,0.319459,0.933942,0.0380674,0.225818,0.849676,0.370017,0.678526,0.248022,0.190267,0.607504,0.133152,0.719338,0.729216,0.445002,0.569475,0.19917,0.122342,0.920386,0.8365,0.119171,0.939597,0.452903,0.696298,0.925676,0.660996,0.951321,0.822003,0.968257,0.513856,0.531215,0.124072,0.599653,0.70737,0.0913638,0.965737,0.584312,0.677399,0.240237,0.929641,0.119363,0.587294,0.334327,0.68979,0.0736938,0.347594,0.380575,0.782406,0.256533,0.106328,0.901755,0.532636,0.127472,0.51014,0.929416,0.293921,0.991635,0.511824,0.0628604,0.401687,0.33896,0.0584871,0.132121,0.561658,0.731736,0.00774997,0.263523,0.6638,0.465406,0.0863827,0.701865,0.132349,0.714206,0.0556015,0.601841,0.511209,0.798493,0.874188,0.00495178,0.67252,0.343246,0.324194,0.0505354,0.968598,0.821914,0.0311182,0.797463,0.872548,0.187612,0.658454,0.795824,0.134936,0.849276,0.0554388,0.00257421,0.12163,0.973787,0.429852,0.424294,0.402031,0.304425,0.900157,0.594655,0.153856,0.513463,0.385282,0.996682,0.886568,0.71129,0.67776,0.480978,0.782202,0.766597,0.407318,0.26427,0.674726,0.657612,0.291072,0.612905,0.411676,0.124091,0.911368,0.766601,0.65677,0.471374,0.427146,0.563523,0.227889,0.649833,0.436556,0.601559,0.792733,0.769052,0.273553,0.849723,0.26184,0.395511,0.590857,0.321845,0.100163,0.251626,0.253603,0.162868,0.312959,0.136068,0.442897,0.832384,0.543774,0.775121,0.526741,0.0978997,0.574381,0.353506,0.996836,0.184868,0.170455,0.314206,0.272818,0.543007,0.352739,0.809971,0.885923,0.529294,0.331686,0.243766,0.31188,0.58969,0.754722,0.225252,0.302316,0.372779,0.537364,0.788983,0.0906131,0.719581,0.936761,0.420883,0.226517,0.331351,0.40176,0.287953,0.0153219,0.566274,0.673858,0.777261,0.277867,0.819041,0.354786,0.526153,0.201189,0.514249,0.296654,0.585447,0.321791,0.758198,0.319078,0.648849,0.608616,0.983953,0.894982,0.125803,0.313238,0.841674,0.946853,0.641103,0.791305,0.706731,0.0702268,0.906524,0.841121,0.044214,0.505563,0.32837,0.000508547,0.158313,0.0670177,0.588547,0.645284,0.512282,0.0519466,0.00223905,0.850924,0.473952,0.466604,0.174072,0.759125,0.959885,0.243087,0.930684,0.964307,0.284846,0.806642,0.0812219,0.890416,0.554977,0.0828655,0.496065,0.13081,0.482208,0.261525,0.856744,0.2906,0.731975,0.737763,0.245396,0.0779349,0.581249,0.891635,0.235392,0.684768,0.0200403,0.513679,0.212977,0.198387,0.920853,0.687135,0.469009,0.977134,0.741175,0.323774,0.990883,0.548687,0.226942,0.403781,0.928512,0.629744,0.840831,0.195475,0.433377,0.459107,0.207459,0.653992,0.796172,0.570529,0.0520499,0.599308,0.778574,0.015835,0.049436,0.593528,0.987439,0.475349,0.384441,0.253729,0.407141,0.859109,0.21541,0.11969,0.827337,0.729385,0.989272,0.755135,0.284079,0.0813743,0.536715,0.21611,0.862191,0.185536,0.816678,0.606397,0.747613,0.871065,0.950241,0.428404,0.175421,0.3908,0.633757,0.819875,0.0544332,0.518377,0.115696,0.994153,0.71543,0.741096,0.514402,0.994496,0.678021,0.316758,0.895758,0.430907,0.843051,0.616798,0.446662,0.96563,0.766855,0.453304,0.0248469,0.801351,0.588926,0.811893,0.882552,0.445823,0.901318,0.021075,0.294286,0.123898,0.0308966,0.489154,0.835518,0.0552392,0.86447,0.107415,0.107857,0.240746,0.181826,0.521889,0.91146,0.0685716,0.523877,0.960483,0.730273,0.749477,0.456858,0.444729,0.748402,0.248236,0.315855,0.0475895,0.140579,0.297547,0.605156,0.861535,0.153962,0.177247,0.784289,0.462471,0.648888,0.961352,0.146963,0.803366,0.96346,0.742607,0.586454,0.0959713,0.229833,0.364593,0.13733,0.603436,0.429993,0.719939,0.618635,0.908264,0.954276,0.613192,0.814689,0.298679,0.295279,0.111582,0.613467,0.655139,0.834687,0.973592,0.571386,0.671308,0.79508,0.232159,0.859739,0.573304,0.358585,0.935092,0.962073,0.256335,0.206346,0.674873,0.136214,0.834737,0.768137,0.110306,0.752876,0.246435,0.223026,0.19058,0.697845,0.710275,0.179624,0.410137,0.357623,0.773679,0.753953,0.954661,0.195634,0.782575,0.698395,0.149086,0.397328,0.598767,0.517913,0.444544,0.0902852,0.0492229,0.947065,0.282312,0.81279,0.505759,0.405113,0.990137,0.997994,0.828332,0.735131,0.191492,0.359872,0.735851,0.61348,0.0534773,0.225164,0.260047,0.0667449,0.945665,0.0348106,0.83173,0.775324,0.00309843,0.817573,0.978029,0.58884,0.341676,0.125355,0.692427,0.643915,0.613308,0.88582,0.475375,0.0610631,0.644446,0.809296,0.351141,0.195569,0.932008,0.943934,0.625198,0.221062,0.00962549,0.260731,0.357482,0.340931,0.0698312,0.381662,0.37656,0.99934,0.530462,0.412965,0.70669,0.942398,0.55044,0.834691,0.755275,0.256384,0.498827,0.632279,0.691384,0.629339,0.787865,0.771107,0.901623,0.795353,0.538789,0.937724,0.947886,0.468727,0.250402,0.833788,0.214735,0.307478,0.969973,0.0363227,0.0559835,0.00525951,0.811134,0.317693,0.10616,0.769148,0.364186,0.708962,0.238185,0.921551,0.549495,0.821792,0.0889277,0.752469,0.244935,0.348841,0.698117,0.598102,0.960022,0.187136,0.0332405,0.795117,0.950507,0.19247,0.100378,0.941279,0.94906,0.379138,0.467913,0.929796,0.818247,0.192254,0.283547,0.190429,0.530345,0.727257,0.712021,0.627269,0.298101,0.24522,0.736115,0.867277,0.200691,0.582393,0.940029,0.430707,0.834603,0.0850593,0.622518,0.836517,0.111646,0.860271,0.749457,0.395055,0.0453079,0.181495,0.72401,0.626799,0.373618,0.913822,0.856966,0.833507,0.163209,0.644891,0.330921,0.317175,0.0987889,0.296811,0.759904,0.207225,0.638938,0.891243,0.174307,0.155362,0.909288,0.524866,0.903029,0.290517,0.373281,0.151203,0.172005,0.137606,0.522704,0.779993,0.96617,0.559283,0.033248,0.818485,0.811142,0.429572,0.455303,0.689727,0.947519,0.28059,0.131862,0.0432356,0.903079,0.331623,0.698037,0.948502,0.50243,0.253244,0.46453,0.947425,0.856426,0.362246,0.766206,0.68286,0.933998,0.701082,0.957647,0.974625,0.508236,0.144821,0.154626,0.734229,0.134409,0.411315,0.903809,0.277066,0.154559,0.919374,0.310072,0.698489,0.550486,0.952983,0.152781,0.555444,0.0807972,0.914673,0.724813,0.567149,0.680833,0.860598,0.348509,0.255659,0.614951,0.757421,0.410481,0.274137,0.653308,0.854362,0.394637,0.599552,0.485973,0.771158,0.678178,0.356823,0.743299,0.527943,0.139024,0.314694,0.545489,0.56532,0.802235,0.6464,0.151731,0.937138,0.76507,0.0615907,0.370397,0.915108,0.541369,0.580571,0.3414,0.125449,0.623778,0.78935,0.720658,0.842879,0.787531,0.265481,0.614274,0.49326,0.252565,0.521085,0.761535,0.717406,0.831013,0.359244,0.748185,0.779372,0.50167,0.859897,0.528233,0.0492405,0.583878,0.549373,0.918403,0.46258,0.417318,0.178341,0.347318,0.762567,0.13888,0.459809,0.967588,0.983748,0.665159,0.743097,0.448261,0.524173,0.853388,0.0861738,0.828674,0.414838,0.864191,0.476738,0.688097,0.869556,0.971373,0.0258551,0.635038,0.0510868,0.297393,0.488349,0.937841,0.103806,0.571952,0.201909,0.591636,0.309952,0.280669,0.187441,0.646893,0.836873,0.715264,0.925176,0.0729733,0.884744,0.493531,0.538625,0.970597,0.916081,0.974088,0.101852,0.563803,0.316489,0.822789,0.87702,0.788275,0.636482,0.231922,0.29235,0.685425,0.532593,0.687573,0.65228,0.155652,0.569878,0.52472,0.360344,0.557462,0.805232,0.202926,0.197111,0.0199422,0.720193,0.957999,0.0174592,0.378247,0.291877,0.198604,0.90052,0.927578,0.694035,0.731156,0.402322,0.871125,0.868517,0.13577,0.232748,0.654195,0.16844,0.0840769,0.236054,0.7099,0.489592,0.257741,0.576319,0.757092,0.0189198,0.707783,0.527355,0.881351,0.202565,0.306093,0.570639,0.0187408,0.26227,0.355894,0.878236,0.0568839,0.542558,0.719989,0.74937,0.388198,0.208716,0.953101,0.128013,0.936198,0.456336,0.918033,0.641368,0.108246,0.487117,0.68322,0.992396,0.573015,0.435616,0.0700497,0.890522,0.0161458,0.466002,0.48934,0.342593,0.943839,0.725811,0.786263,0.650037,0.391944,0.902125,0.605982,0.572068,0.673611,0.475035,0.00551426,0.25414,0.569598,0.176587,0.802332,0.223873,0.038964,0.705616,0.843979,0.321252,0.838538,0.304474,0.660545,0.549724,0.425591,0.281004,0.401353,0.629269,0.826451,0.949991,0.472349,0.745069,0.25427,0.403084,0.4272,0.328197,0.921517,0.5364,0.492525,0.0444874,0.996055,0.626034,0.533749,0.365663,0.319617,0.317119,0.827702,0.35634,0.312917,0.206492,0.345926,0.318236,0.0752446,0.848768,0.566365,0.902597,0.849611,0.657498,0.32568,0.250542,0.352145,0.0739393,0.87805,0.780253,0.745397,0.194102,0.284526,0.69608,0.322999,0.86951,0.933122,0.00332212,0.132274,0.351145,0.248548,0.19606,0.456937,0.737201,0.703473,0.873449,0.445692,0.466975,0.467542,0.252934,0.367528,0.966048,0.998734,0.265161,0.933414,0.105175,0.3217,0.666732,0.566894,0.523379,0.232872,0.128734,0.624969,0.870878,0.35983,0.887097,0.158542,0.0869641,0.108262,0.942879,0.239657,0.582839,0.00272018,0.338379,0.994617,0.414398,0.529721,0.572402,0.158484,0.860762,0.0887273,0.134949,0.437883,0.699089,0.749816,0.812509,0.949854,0.118158,0.476547,0.844973,0.868822,0.526472,0.977965,0.601436,0.788197,0.906652,0.961064,0.803752,0.947432,0.0941041,0.630602,0.140765,0.221719,0.659981,|0.194405,0.970096,0.886602,0.0227239,0.592203,0.220052,0.900557,0.510926,0.108602,0.0870734,0.166374,0.279966,0.53162,0.64264,0.422397,0.347446,0.642034,0.628526,0.768868,0.779097,0.66167,0.964056,0.938717,0.700668,0.89475,0.85342,0.777978,0.341392,0.854694,0.430271,0.359522,0.872279,0.809262,0.844264,0.16337,0.735281,0.301353,0.299901,0.789294,0.407349,0.34292,0.816918,0.0904294,0.635567,0.354358,0.756948,0.00251967,0.405296,0.322927,0.88493,0.289037,0.723038,0.0670722,0.995582,0.983106,0.853383,0.608738,0.616493,0.313113,0.22942,0.668045,0.423536,0.103564,0.267693,0.700357,0.942774,0.203303,0.483825,0.427558,0.308594,0.426559,0.283634,0.332554,0.828569,0.0988523,0.215816,0.0555879,0.802287,0.849223,0.192237,0.518813,0.0244646,0.435704,0.0594496,0.100188,0.713112,0.390088,0.399992,0.147296,0.387416,0.54342,0.525465,0.405673,0.149568,0.795037,0.323637,0.156506,0.721014,0.344374,0.325517,0.55197,0.744103,0.283675,0.22525,0.385314,0.00854164,0.274098,0.201001,0.361309,0.5561,0.732673,0.658546,0.545423,0.86979,0.460681,0.153247,0.720557,0.989453,0.239862,0.789717,0.185375,0.868385,0.608099,0.302584,0.512696,0.00341135,0.322871,0.296836,0.440485,0.895671,0.376836,0.0182372,0.476098,0.0396771,0.111104,0.00609541,0.353601,0.530997,0.732854,0.99962,0.80425,0.83495,0.335557,0.658237,0.305526,0.634672,0.270176,0.75205,0.315122,0.832144,0.676153,0.21379,0.0844881,0.346258,0.275331,0.0622538,0.949041,0.420273,0.606821,0.452563,0.119935,0.570355,0.244763,0.650734,0.0480984,0.12353,0.837542,0.175604,0.37842,0.215927,0.763051,0.711598,0.451908,0.365675,0.377928,0.407564,0.1726,0.824509,0.41419,0.116149,0.372277,0.29609,0.10902,0.928409,0.261722,0.477963,0.450906,0.391011,0.490723,0.498168,0.252623,0.660592,0.623716,0.8962,0.618539,0.942822,0.366108,0.700672,0.633796,0.471461,0.692766,0.922046,0.926027,0.721154,0.881221,0.476873,0.0237554,0.72701,0.255753,0.241614,0.363823,0.0403123,0.332105,0.446738,0.119609,0.06979,0.709942,0.236992,0.342068,0.0678217,0.760096,0.864446,0.135377,0.586299,0.464342,0.225099,0.58155,0.322107,0.11186,0.0521504,0.686833,0.439397,0.584568,0.410588,0.365415,0.118635,0.649567,0.432446,0.243411,0.832336,0.937884,0.698418,0.319125,0.152464,0.707304,0.816234,0.0637062,0.770495,0.0764911,0.361371,0.733093,0.50725,0.555601,0.399438,0.350318,0.637272,0.613213,0.687396,0.405272,0.947044,0.790909,0.307477,0.255867,0.145624,0.93993,0.377555,0.246494,0.953632,0.713461,0.221329,0.0679326,0.241859,0.000656843,0.235786,0.568565,0.469999,0.982854,0.821756,0.986445,0.698622,0.920069,0.946277,0.0576047,0.752897,0.904156,0.8714,0.587373,0.532631,0.098119,0.890548,0.637599,0.0223507,0.854653,0.308668,0.871782,0.132138,0.691414,0.296889,0.916392,0.110445,0.765735,0.152965,0.814335,0.259688,0.401894,0.634267,0.315484,0.778083,0.24197,0.455467,0.538069,0.00969809,0.759784,0.677172,0.818211,0.796858,0.808184,0.935223,0.0464064,0.114463,0.173889,0.0730518,0.901401,0.360396,0.307527,0.391403,0.990153,0.662463,0.625028,0.0658267,0.541165,0.897445,0.77694,0.179694,0.913828,0.0430081,0.800521,0.715635,0.0477037,0.334083,0.62274,0.307817,0.141928,0.773809,0.146076,0.219349,0.616771,0.322827,0.650296,0.1115,0.318225,0.836024,0.200922,0.805739,0.355731,0.28959,0.783395,0.833826,0.931052,0.728831,0.983852,0.806275,0.147347,0.466805,0.377978,0.905082,0.442445,0.948091,0.577873,0.583394,0.328818,0.896939,0.825011,0.513875,0.633989,0.15746,0.762508,0.0645267,0.841312,0.310543,0.295821,0.340553,0.0423465,0.844596,0.147968,0.858634,0.716027,0.993666,0.890026,0.0781636,0.523947,0.859886,0.999675,0.0356518,0.589214,0.031548,0.237989,0.223219,0.14057,0.304613,0.197659,0.18859,0.587589,0.803392,0.693637,0.809003,0.270192,0.44591,0.000534832,0.361738,0.784118,0.288107,0.941948,0.0187792,0.629913,0.492856,0.550553,0.118015,0.218604,0.896743,0.190018,0.488254,0.154465,0.819874,0.88625,0.273131,0.535571,0.576161,0.89608,0.80199,0.463766,0.99722,0.624844,0.360431,0.516627,0.525196,0.152721,0.0932769,0.575077,0.482981,0.0876704,0.540693,0.913234,0.934568,0.310834,0.733998,0.388541,0.749161,0.863735,0.87828,0.161369,0.237543,0.172005,0.655035,0.25484,0.0106234,0.208821,0.344987,0.26459,0.651068,0.338081,0.78188,0.746702,0.52575,0.00240499,0.623948,0.179209,0.286372,0.772522,0.079224,0.204635,0.199793,0.331059,0.307488,0.120828,0.104648,0.950329,0.616189,0.619324,0.969254,0.0749245,0.672875,0.372019,0.493774,0.724512,0.315329,0.464585,0.482579,0.870012,0.193987,0.0557213,0.15371,0.758018,0.293296,0.881221,0.728067,0.283274,0.716047,0.480408,0.489429,0.797127,0.502564,0.102147,0.45537,0.278032,0.192737,0.465588,0.302012,0.805972,0.312487,0.760008,0.170357,0.8107,0.342438,0.310037,0.28174,0.0534407,0.833364,0.82331,0.258755,0.0896283,0.525494,0.252033,0.438504,0.403957,0.016518,0.143402,0.720438,0.678087,0.823345,0.347113,0.722806,0.0531368,0.37193,0.0366548,0.23444,0.035237,0.706927,0.648273,0.0578191,0.319486,0.166597,0.87409,0.223086,0.212604,0.00382185,0.654627,0.715361,0.746707,0.272155,0.356496,0.0250472,0.832867,0.985056,0.252295,0.175924,0.827562,0.0571151,0.196562,0.936912,0.745937,0.175172,0.638797,0.206718,0.256288,0.495514,0.475635,0.941676,0.974179,0.397642,0.381363,0.898945,0.183895,0.765122,0.92022,0.661302,0.90763,0.602412,0.442864,0.360905,0.361571,0.44672,0.640071,0.495281,0.626885,0.71692,0.230492,0.846112,0.85767,0.608989,0.778973,0.292007,0.453465,0.0768588,0.291231,0.174966,0.253955,0.42132,0.210341,0.79793,0.419883,0.286647,0.910583,0.633874,0.866731,0.69652,0.613862,0.247872,0.945094,0.844096,0.76336,0.0813804,0.961832,0.131029,0.0219906,0.946756,0.435469,0.709544,0.0913164,0.665473,0.286811,0.642249,0.767907,0.146792,0.899703,0.964873,0.649258,0.771611,0.385537,0.887239,0.84108,0.1654,0.666471,0.151681,0.787879,0.7345,0.545335,0.932094,0.982397,0.938806,0.247523,0.489327,0.60267,0.847086,0.589659,0.815039,0.44329,0.00151819,0.501353,0.929937,0.307815,0.817189,0.454702,0.341611,0.289734,0.558468,0.343955,0.423797,0.813989,0.667107,0.362674,0.825817,0.514556,0.789915,0.495906,0.448558,0.700276,0.819192,0.354366,0.953592,0.613803,0.666439,0.016673,0.70734,0.513672,0.735789,0.0273335,0.363455,0.657367,0.392272,0.390215,0.705111,0.509992,0.814865,0.35567,0.591089,0.5066,0.548488,0.520811,0.446438,0.303665,0.730381,0.431374,0.19718,0.950489,0.91187,0.753922,0.291837,0.878461,0.579543,0.239863,0.706058,0.973488,0.914387,0.127353,0.369727,0.890412,0.420043,0.788685,0.657891,0.00712049,0.994716,0.604715,0.0260305,0.00277615,0.374214,0.476567,0.356511,0.763805,0.392875,0.899902,0.682446,0.828729,0.335091,0.204085,0.123802,0.936303,0.635301,0.15604,0.427031,0.328414,0.395435,0.195624,0.767602,0.336491,0.331466,0.18191,0.669645,0.725412,0.865956,0.0848384,0.655855,0.443287,0.241125,0.387918,0.0640648,0.20707,0.526951,0.10057,0.113559,0.743923,0.486213,0.709769,0.26775,0.710515,0.114007,0.843151,0.781577,0.531317,0.794416,0.290507,0.709305,0.107672,0.666824,0.469879,0.399574,0.561231,0.732187,0.302049,0.153395,0.687837,0.0922178,0.260334,0.64752,0.0289686,0.79471,0.4171,0.924656,0.122881,0.662252,0.249803,0.47239,0.453413,0.524336,0.227545,0.645056,0.913095,0.734506,0.602525,0.959359,0.788061,0.878143,0.21805,0.759883,0.207634,0.150652,0.921905,0.706155,0.505186,0.088441,0.186196,0.942175,0.291652,0.227397,0.336319,0.929958,0.799224,0.918407,0.556797,0.571999,0.801713,0.00845683,0.92259,0.271171,0.761696,0.885678,0.188933,0.423829,0.449311,0.5563,0.432076,0.658989,0.747444,0.901251,0.834821,0.086069,0.553259,0.135327,0.696483,0.33523,0.180501,0.245704,0.971415,0.938831,0.0998728,0.508157,0.282099,0.427598,0.74013,0.159026,0.462543,0.153418,0.650671,0.79784,0.136366,0.320154,0.589036,0.299993,0.74953,0.104177,0.956862,0.763322,0.685296,0.736448,0.761657,0.697418,0.0954783,0.389908,0.170977,0.0696669,0.580682,0.136418,0.81918,0.443496,0.231905,0.23147,0.570688,0.74117,0.0184737,0.0351784,0.782547,0.0737577,0.411613,0.621187,0.0161312,0.983682,0.853662,0.274217,0.441594,0.549184,0.373498,0.828726,0.410649,0.0610248,0.518073,0.290277,0.466476,0.017045,0.277877,0.324391,0.148941,0.882259,0.407433,0.989771,0.853057,0.423212,0.560539,0.916829,0.684178,0.740839,0.686358,0.668278,0.58578,0.959654,0.882769,0.83247,0.455766,0.161109,0.304572,0.479068,0.133626,0.533456,0.0121079,0.663371,0.84317,0.963786,0.812316,0.163983,0.0192361,0.933931,0.0961402,0.962698,0.976667,0.180317,0.11404,0.369611,0.729244,0.634508,0.0885413,0.884805,0.214902,0.871362,0.696549,0.00813854,0.505853,0.432871,0.934395,0.704114,0.465008,0.536905,0.00253403,0.684519,0.890881,0.904941,0.227624,0.0306646,0.415567,0.936583,0.584032,0.451204,0.410383,0.517532,0.931628,0.840142,0.142768,0.540403,0.135989,0.089071,0.736673,0.191569,0.403801,0.287969,0.207651,0.64499,0.286632,0.0796869,0.907188,0.694197,0.157397,0.95405,0.987527,0.460729,0.703687,0.961218,0.440647,0.340933,0.151713,0.543032,0.384057,0.947412,0.904332,0.687192,0.292407,0.104162,0.545465,0.665121,0.949323,0.976993,0.114684,0.116183,0.190097,0.294531,0.525981,0.203717,0.208334,0.63317,0.579306,0.927199,0.686086,0.316172,|0.0367853,0.419303,0.207508,0.591557,0.0459224,0.392109,0.604222,0.671174,0.371051,0.924614,0.043833,0.996736,0.951602,0.121256,0.135198,0.350071,0.489761,0.196587,0.252625,0.0204275,0.349765,0.19315,0.404857,0.329495,0.107143,0.464325,0.522815,0.400803,0.899468,0.838419,0.594802,0.594811,0.656718,0.0201115,0.744317,0.222618,0.419078,0.553304,0.124974,0.0605627,0.0700725,0.588191,0.0874992,0.219487,0.375073,0.674566,0.0281095,0.33263,0.317155,0.37414,0.312658,0.967261,0.681394,0.956149,0.660259,0.941024,0.746129,0.414255,0.406146,0.26294,0.893369,0.174175,0.485304,0.951645,0.356048,0.0706112,0.0393537,0.341906,0.59654,0.136738,0.77973,0.877243,0.0972775,0.231016,0.562206,0.44266,0.502656,0.43508,0.0743603,0.35069,0.603724,0.419385,0.764299,0.237883,0.272401,0.162836,0.36959,0.750856,0.740058,0.533118,0.302681,0.963231,0.0784875,0.0894696,0.129577,0.26821,0.476608,0.970766,0.250685,0.921229,0.25192,0.839998,0.169764,0.909486,0.640619,0.608955,0.813515,0.0725033,0.0927492,0.613748,0.304676,0.673038,0.144494,0.340891,0.965847,0.951587,0.116815,0.72157,0.452648,0.658862,0.280075,0.0267961,0.339846,0.803855,0.74199,0.0402382,0.0483982,0.0247747,0.499748,0.514626,0.927507,0.91441,0.156336,0.0333625,0.25925,0.894489,0.501396,0.891343,0.42799,0.219752,0.875669,0.251589,0.766413,0.919219,0.364402,0.47739,0.295107,0.611975,0.334157,0.417412,0.431456,0.540916,0.215938,0.955492,0.617136,0.443245,0.263812,0.0797487,0.834232,0.0517075,0.449898,0.786214,0.720517,0.821579,0.0580535,0.60278,0.966802,0.195482,0.218623,0.417134,0.720988,0.16147,0.204189,0.713368,0.0402046,0.308211,0.528408,0.0751714,0.172733,0.563152,0.533541,0.48851,0.923548,0.261638,0.524576,0.809695,0.387824,0.893076,0.847693,0.434598,0.777966,0.509584,0.593781,0.322809,0.922722,0.589926,0.307888,0.446115,0.557753,0.104737,0.531989,0.422322,0.521999,0.755907,0.977541,0.0606246,0.0837495,0.654058,0.787532,0.283226,0.50694,0.676122,0.393728,0.915713,0.316773,0.218125,0.793275,0.574837,0.054579,0.407796,0.925323,0.244946,0.251146,0.385994,0.804445,0.420819,0.215259,0.481824,0.880344,0.838294,0.243832,0.803191,0.487855,0.173021,0.749023,0.912644,0.963931,0.610894,0.997635,0.187981,0.469451,0.245723,0.841159,0.191776,0.0253074,0.59515,0.832553,0.642134,0.316978,0.976688,0.18208,0.170766,0.40602,0.566981,0.295783,0.247366,0.174873,0.519026,0.818288,0.410829,0.667347,0.995057,0.450403,0.219243,0.545915,0.987857,0.146404,0.470371,0.23932,0.909728,0.794518,0.72192,0.208041,0.622345,0.20049,0.535047,0.0280148,0.323036,0.276341,0.709413,0.190436,0.565451,0.802375,0.453969,0.85817,0.648558,0.527082,0.021753,0.0640171,0.379279,0.152302,0.00186658,0.977261,0.107085,0.542683,0.895045,0.44597,0.278623,0.731019,0.376963,0.541917,0.0111446,0.0943898,0.568735,0.192728,0.313917,0.335515,0.842487,0.594293,0.113871,0.665602,0.963943,0.344369,0.350282,0.176923,0.167636,0.719266,0.107057,0.526793,0.0954224,0.410635,0.89746,0.864999,0.288652,0.0303998,0.915714,0.99329,0.498564,0.540498,0.850347,0.360567,0.275937,0.570582,0.612662,0.157393,0.140488,0.00700128,0.731418,0.731914,0.971843,0.876561,0.0854297,0.534323,0.708829,0.780266,0.882211,0.472981,0.484142,0.540301,0.795066,0.0707801,0.103868,0.605471,0.773432,0.999224,0.900592,0.314677,0.447406,0.707368,0.64083,0.277559,0.0667487,0.290362,0.884947,0.0583721,0.0534327,0.000933766,0.702228,0.578515,0.884775,0.244137,0.526804,0.0389776,0.268436,0.988206,0.299896,0.367115,0.121597,0.81645,0.0140055,0.282091,0.164024,0.748137,0.505585,0.950498,0.0848725,0.0597081,0.873554,0.641822,0.832123,0.882097,0.34955,0.435855,0.694239,0.93215,0.560167,0.644742,0.975728,0.563367,0.0174636,0.210007,0.500083,0.821104,0.680906,0.683422,0.612518,0.555654,0.187698,0.772131,0.503545,0.276247,0.511406,0.67802,0.87412,0.375149,0.722239,0.556559,0.283104,0.0936908,0.613542,0.88516,0.223173,0.0595691,0.231085,0.257256,0.368352,0.418224,0.502268,0.376095,0.268548,0.638126,0.17854,0.488199,0.660402,0.979462,0.0267728,0.394996,0.913957,0.879529,0.0155756,0.250504,0.537669,0.823454,0.0765511,0.0673546,0.0781819,0.29099,0.624163,0.48264,0.723193,0.104913,0.902108,0.152603,0.5218,0.274582,0.388909,0.247776,0.870336,0.714942,0.379683,0.288399,0.543572,0.355721,0.711925,0.15384,0.265271,0.172581,0.204008,0.0378534,0.52827,0.641042,0.201209,0.381158,0.39364,0.600817,0.868154,0.38432,0.349752,0.554645,0.495454,0.298244,0.195367,0.873818,0.725247,0.0541117,0.7721,0.807846,0.402182,0.100677,0.884581,0.0267441,0.26242,0.533368,0.560521,0.235434,0.513169,0.960583,0.766085,0.994583,0.756349,0.900306,0.408238,0.211531,0.955111,0.366879,0.728732,0.821315,0.396999,0.858217,0.344881,0.64739,0.542624,0.939333,0.919552,0.962806,0.443468,0.179572,0.409571,0.806136,0.741371,0.577344,0.301794,0.934885,0.700355,0.430646,0.46548,0.8294,0.447411,0.700527,0.080053,0.963548,0.271512,0.249822,0.492191,0.317765,0.667596,0.482382,0.567364,0.339226,0.362492,0.952038,0.595933,0.921241,0.700589,0.993184,0.155808,0.165155,0.571095,0.328911,0.885975,0.3491,0.987528,0.0322789,0.55603,0.553726,0.600129,0.597905,0.347036,0.962395,0.571415,0.819659,0.725443,0.260292,0.106304,0.227051,0.472823,0.305636,0.360794,0.807493,0.907686,0.0637181,0.155029,0.845085,0.352606,0.536043,0.622518,0.337533,0.743935,0.817603,0.59727,0.0678348,0.215326,0.253344,0.461286,0.0387173,0.895776,0.912704,0.162211,0.607956,0.423572,0.417703,0.472655,0.715412,0.0353979,0.451904,0.731898,0.515361,0.455043,0.0185643,0.122572,0.538354,0.413649,0.478974,0.171459,0.670215,0.18359,0.245784,0.497531,0.585477,0.945088,0.26102,0.329686,0.346477,0.383247,0.825893,0.820703,0.246333,0.397847,0.031013,0.88921,0.56545,0.139825,0.412377,0.918504,0.261838,0.122068,0.125089,0.977335,0.0633988,0.759412,0.471815,0.0833756,0.22556,0.573788,0.490925,0.886445,0.382743,0.279299,0.432786,0.936365,0.941608,0.642484,0.497263,0.0105326,0.17295,0.123185,0.737442,0.372952,0.183291,0.77443,0.643057,0.956728,0.870253,0.3673,0.330138,0.0352932,0.300326,0.203778,0.540915,0.487864,0.648363,0.0285352,0.87211,0.0240393,0.0263971,0.483648,0.0860674,0.993806,0.925138,0.529085,0.685063,0.342184,0.620944,0.178949,0.834681,0.474808,0.590193,0.983709,0.820783,0.641573,0.504373,0.190091,0.502616,0.777484,0.300534,0.319699,0.000867486,0.803314,0.0238762,0.290078,0.245822,0.467214,0.0872889,0.246533,0.958817,0.11693,0.0801983,0.343288,0.662678,0.054843,0.381691,0.751396,0.291959,0.678961,0.976331,0.956562,0.480415,0.885362,0.237432,0.620143,0.170188,0.873062,0.840114,0.22375,0.203145,0.877849,0.694564,0.926426,0.917909,0.327729,0.453883,0.397525,0.933457,0.877426,0.591161,0.957179,0.82981,0.696024,0.206062,0.0635985,0.617556,0.219013,0.856148,0.742224,0.341819,0.356864,0.183639,0.567419,0.321305,0.900132,0.423262,0.207676,0.130043,0.917715,0.140202,0.656932,0.881772,0.097089,0.546685,0.476133,0.055519,0.256577,0.586503,0.872663,0.553659,0.513689,0.0549193,0.659328,0.11794,0.265,0.227606,0.782303,0.53944,0.208808,0.738096,0.967156,0.808835,0.656018,0.76971,0.507931,0.130515,0.484836,0.0989389,0.61461,0.88329,0.00742543,0.650807,0.833212,0.522995,0.78227,0.0459427,0.356417,0.510147,0.826177,0.71551,0.675535,0.276181,0.608334,0.392609,0.713829,0.99819,0.323475,0.612089,0.547512,0.89763,0.0347552,0.547196,0.0982633,0.765312,0.101186,0.33067,0.828655,0.579795,0.049632,0.51553,0.959826,0.417565,0.321032,0.225006,0.328872,0.47977,0.987912,0.222892,0.342229,0.787208,0.0472907,0.0783532,0.131581,0.662573,0.299904,0.752872,0.805134,0.349635,0.368568,0.00427002,0.827154,0.329139,0.9057,0.234641,0.722975,0.995338,0.681112,0.557555,0.289036,0.628526,0.754455,0.62111,0.69528,0.181575,0.675588,0.424712,0.947853,0.200861,0.771919,0.414611,0.401435,0.485865,0.766564,0.980541,0.538611,0.501876,0.41668,0.466298,0.301115,0.67936,0.987474,0.00408179,0.769756,0.242156,0.261663,0.230834,0.394211,0.494005,0.905793,0.293078,0.304984,0.65439,0.2615,0.0627675,0.746588,0.394131,0.995691,0.921746,0.268018,0.622364,0.65809,0.969274,0.28185,0.0814247,0.557271,0.991428,0.214161,0.837976,0.362833,0.143006,0.831088,0.840904,0.245105,0.283789,0.497101,0.201217,0.978251,0.226413,0.135935,0.502154,0.200921,0.649832,0.541056,0.022922,0.765262,0.222908,0.0283316,0.27817,0.929014,0.0407453,0.329061,0.311616,0.450169,0.148975,0.0255366,0.941595,0.314227,0.319301,0.579762,0.503731,0.10716,0.320126,0.857977,0.632699,0.769814,0.42699,0.855033,0.523778,0.750221,0.734852,0.11985,0.000141561,0.0804982,0.36716,0.148553,0.330851,0.898777,0.304352,0.377641,0.596806,0.233887,0.0807058,0.879235,0.693888,0.785215,0.613389,0.0761359,0.979807,0.422826,0.411711,0.825755,0.155772,0.519573,0.499251,0.425718,0.385733,0.552818,0.127643,0.556065,0.135509,0.723485,0.952992,0.719607,0.444683,0.782534,0.25519,0.434883,0.262423,0.723785,0.123303,0.541658,0.249999,0.481509,0.892301,0.599847,0.0160601,0.682496,0.537654,0.594268,0.472165,0.0513206,0.0454024,0.936406,0.162018,0.72916,0.537898,0.884141,0.595955,0.706869,0.123083,0.0261429,0.225812,0.33039,0.185447,0.454419,0.177189,0.399345,0.685105,0.478835,0.580641,0.263386,0.443503,0.0842601,0.933683,0.509558,|0.23435,0.173806,0.248534,0.695844,0.145385,0.745717,0.330652,0.727135,0.494259,0.0421184,0.480984,0.135674,0.989211,0.961137,0.953558,0.188633,0.285344,0.26725,0.804013,0.260569,0.695598,0.592704,0.895469,0.582406,0.409594,0.280731,0.697443,0.354866,0.734463,0.611876,0.976612,0.493503,0.85692,0.916652,0.31326,0.689058,0.782033,0.490743,0.236906,0.855222,0.517711,0.957041,0.546455,0.498402,0.608744,0.267165,0.0992111,0.372979,0.642347,0.280907,0.467385,0.739034,0.820022,0.60081,0.389276,0.66205,0.0898887,0.0695484,0.248321,0.171649,0.628085,0.0569155,0.393797,0.367214,0.470147,0.709335,0.262539,0.258049,0.517362,0.322832,0.95523,0.395101,0.873826,0.889654,0.660165,0.00520903,0.849846,0.589957,0.625929,0.409919,0.152315,0.651495,0.788579,0.420379,0.415128,0.442261,0.24409,0.144851,0.783708,0.0799945,0.46139,0.244924,0.423347,0.990232,0.275236,0.46625,0.142253,0.434255,0.581845,0.333719,0.787858,0.143146,0.107139,0.598253,0.43673,0.743796,0.547384,0.463423,0.184293,0.470179,0.832498,0.0917886,0.911287,0.623303,0.865993,0.297885,0.971952,0.519621,0.340211,0.246383,0.01385,0.711326,0.387529,0.100394,0.337963,0.681361,0.783896,0.265191,0.700695,0.893066,0.886926,0.0436004,0.274245,0.0213135,0.757889,0.692704,0.326443,0.515499,0.139795,0.878248,0.302198,0.56947,0.828633,0.011744,0.857039,0.725168,0.534219,0.231097,0.381519,0.269164,0.371768,0.466455,0.945419,0.57538,0.982274,0.936955,0.500657,0.188103,0.98112,0.599762,0.748825,0.803256,0.990008,0.413145,0.976495,0.936199,0.271252,0.967879,0.951695,0.408005,0.876599,0.336598,0.284335,0.00562555,0.0505684,0.758735,0.283002,0.927979,0.670991,0.310199,0.081677,0.287426,0.00212163,0.521818,0.220195,0.0395939,0.420134,0.669787,0.898376,0.990426,0.312359,0.555938,0.388398,0.918812,0.344754,0.152898,0.942369,0.0667631,0.0829453,0.84604,0.479288,0.290144,0.434401,0.143488,0.269515,0.0201679,0.132916,0.131683,0.976448,0.748814,0.571699,0.719558,0.378635,0.331861,0.381598,0.422895,0.952843,0.0139602,0.703898,0.309367,0.73656,0.300808,0.193569,0.209141,0.544245,0.740487,0.405752,0.792244,0.188487,0.154291,0.482748,0.298127,0.437041,0.60771,0.394727,0.594912,0.536918,0.0663863,0.770833,0.520955,0.868551,0.0636173,0.743265,0.0556239,0.179966,0.376271,0.25601,0.0415604,0.242112,0.170653,0.987614,0.171049,0.885871,0.950621,0.786282,0.747977,0.389846,0.942464,0.795472,0.1634,0.442757,0.13392,0.810961,0.408998,0.0834827,0.894294,0.629924,0.400991,0.187037,0.534287,0.640014,0.579293,0.685181,0.479004,0.466493,0.982,0.13782,0.8541,0.540904,0.541517,0.872884,0.1597,0.478576,0.159,0.474532,0.0354552,0.509865,0.862519,0.900236,0.263847,0.885826,0.167936,0.380791,0.321487,0.156489,0.92175,0.980962,0.134871,0.862633,0.311214,0.12193,0.142622,0.065234,0.766705,0.575718,0.814955,0.119044,0.534144,0.876467,0.379924,0.949669,0.0606471,0.532466,0.552928,0.843354,0.97611,0.863501,0.502181,0.900792,0.785132,0.873123,0.1438,0.745874,0.566095,0.483595,0.144084,0.258253,0.975943,0.697466,0.353484,0.681141,0.68846,0.602505,0.318966,0.745159,0.846685,0.886144,0.687631,0.352571,0.122491,0.766643,0.865965,0.144802,0.628315,0.643178,0.854642,0.974922,0.523216,0.99611,0.771238,0.85742,0.592813,0.98405,0.563597,0.615909,0.276617,0.435186,0.936511,0.831175,0.000462294,0.555871,0.551631,0.273712,0.788126,0.682459,0.366775,0.804087,0.938819,0.792759,0.603711,0.0362833,0.302518,0.623542,0.879047,0.0553063,0.573907,0.131308,0.587768,0.065249,0.926427,0.93381,0.125471,0.068572,0.337554,0.39294,0.785051,0.22221,0.516981,0.714333,0.00406921,0.246842,0.969316,0.0400606,0.721992,0.729071,0.619129,0.158627,0.0643846,0.31518,0.444763,0.27035,0.373911,0.356718,0.251791,0.0055244,0.471876,0.802104,0.607322,0.0402721,0.0756158,0.0242547,0.483936,0.0279765,0.665429,0.370558,0.783255,0.989734,0.747538,0.672617,0.0987082,0.844699,0.522325,0.0818224,0.0706471,0.518383,0.140512,0.154237,0.718852,0.826851,0.411468,0.909778,0.415343,0.72092,0.237943,0.22864,0.553551,0.151627,0.174704,0.213699,0.935096,0.655552,0.259295,0.819102,0.706555,0.579131,0.769096,0.245672,0.950942,0.0264574,0.766107,0.326749,0.0441315,0.00118053,0.137863,0.845355,0.905253,0.303725,0.407019,0.617936,0.221635,0.331722,0.716167,0.370553,0.356249,0.300768,0.146811,0.258538,0.0551842,0.100495,0.0596738,0.453555,0.910447,0.722714,0.0409347,0.781097,0.393302,0.29803,0.0219085,0.441959,0.277563,0.790838,0.00736386,0.168701,0.957534,0.0974308,0.408707,0.319606,0.0352916,0.101422,0.424115,0.887187,0.312819,0.420502,0.26049,0.1179,0.648637,0.801703,0.259915,0.99455,0.709886,0.964977,0.112195,0.951511,0.0438187,0.605251,0.901939,0.160811,0.780288,0.521297,0.299787,0.787245,0.318685,0.100469,0.630539,0.717499,0.689353,0.980569,0.11377,0.933586,0.548508,0.858384,0.457279,0.809123,0.80323,0.188734,0.197332,0.660452,0.758247,0.608091,0.666944,0.690901,0.810832,0.210519,0.414523,0.288838,0.55738,0.67045,0.702177,0.426443,0.34888,0.511307,0.952645,0.699548,0.668364,0.973805,0.179046,0.911912,0.774147,0.84736,0.615461,0.316326,0.566261,0.955665,0.714919,0.57755,0.233381,0.64266,0.583334,0.971126,0.912167,0.0943082,0.0292972,0.686186,0.196811,0.325134,0.615966,0.606011,0.367893,0.882587,0.0331989,0.858998,0.262422,0.716636,0.114652,0.863622,0.206706,0.173946,0.948164,0.368912,0.630039,0.10012,0.521375,0.615867,0.916952,0.998361,0.636457,0.448513,0.794948,0.654575,0.393803,0.208113,0.610828,0.87102,0.387024,0.296923,0.448423,0.831374,0.059458,0.0550249,0.0372269,0.434764,0.19585,0.543549,0.751761,0.178318,0.632291,0.747689,0.35601,0.632304,0.149172,0.545162,0.336445,0.770307,0.267224,0.583886,0.831656,0.0791377,0.89899,0.148547,0.18521,0.349602,0.598093,0.620258,0.198293,0.022904,0.00348508,0.952489,0.84059,0.579742,0.91372,0.04351,0.293565,0.19557,0.503838,0.222877,0.134645,0.304349,0.812472,0.487915,0.999568,0.741109,0.184401,0.600089,0.445388,0.105017,0.469517,0.991609,0.037917,0.722634,0.752635,0.936123,0.718341,0.13202,0.222139,0.764839,0.439802,0.385404,0.163576,0.129981,0.561348,0.317078,0.650846,0.696222,0.555226,0.769653,0.461594,0.524655,0.991169,0.00692296,0.7635,0.12449,0.484415,0.253644,0.315718,0.658108,0.146952,0.718499,0.853408,0.057623,0.874454,0.856368,0.207988,0.113442,0.334276,0.818938,0.353173,0.253806,0.959598,0.823091,0.478336,0.191144,0.350245,0.605897,0.303868,0.863759,0.00684804,0.938323,0.721867,0.0188708,0.394617,0.43674,0.868276,0.584442,0.497944,0.127703,0.0926591,0.432056,0.0276071,0.377845,0.266784,0.45483,0.977821,0.776109,0.201095,0.998962,0.705905,0.732738,0.0485986,0.739084,0.174675,0.884365,0.907095,0.0181695,0.0660452,0.0150612,0.977416,0.0283509,0.516257,0.826786,0.158912,0.162431,0.628226,0.817927,0.191819,0.0683947,0.290111,0.0952514,0.410961,0.891003,0.455828,0.287835,0.374926,0.322284,0.724371,0.868366,0.59494,0.193641,0.312251,0.386453,0.533561,0.927627,0.376555,0.855864,0.366343,0.858131,0.51639,0.0683225,0.458654,0.43206,0.963331,0.0644061,0.545014,0.306515,0.603248,0.101848,0.857187,0.0445879,0.480463,0.252438,0.907515,0.623077,0.386912,0.158361,0.0190899,0.020301,0.259808,0.533379,0.201626,0.266326,0.39351,0.526533,0.516195,0.361936,0.236162,0.84834,0.979011,0.0253375,0.102782,0.325233,0.531851,0.881372,0.392148,0.174757,0.799331,0.412268,0.380112,0.953074,0.427108,0.235363,0.676204,0.300954,0.369459,0.573696,0.61143,0.417655,0.0758185,0.543922,0.819567,0.779597,0.14488,0.462007,0.518351,0.03038,0.7444,0.332013,0.759538,0.271269,0.975194,0.725408,0.951052,0.184001,0.960963,0.0726359,0.822065,0.484618,0.644374,0.728705,0.52582,0.323703,0.305839,0.0901859,0.295495,0.721806,0.470976,0.742719,0.0976899,0.0980052,0.784831,0.651945,0.93076,0.236401,0.3526,0.675528,0.665322,0.477429,0.972772,0.512419,0.682934,0.359253,0.583465,0.119997,0.444602,0.870891,0.122318,0.638723,0.100641,0.029493,0.534772,0.60209,0.523001,0.806561,0.636121,0.670237,0.677251,0.760336,0.508718,0.987632,0.748077,0.785173,0.406198,0.302242,0.781417,0.00225222,0.287958,0.00733465,0.281957,0.657047,0.606918,0.757185,0.0362412,0.332768,0.377008,0.0905991,0.404568,0.638668,0.715743,0.757368,0.487894,0.675347,0.428578,0.15223,0.578508,0.570982,0.183982,0.807569,0.662681,0.0575066,0.0479697,0.870601,0.177002,0.524311,0.664346,0.00796467,0.99532,0.232091,0.515624,0.0547967,0.420734,0.101147,0.827077,0.284803,0.613787,0.632974,0.91203,0.721423,0.10666,0.805108,0.636873,0.804437,0.542704,0.111518,0.479068,0.0966005,0.420954,0.530608,0.187949,0.68452,0.187267,0.458418,0.671016,0.899866,0.266693,0.664259,0.402131,0.395438,0.667126,0.681216,0.969787,0.507748,0.0133736,0.715779,0.1114,0.511496,0.528237,0.869356,0.182771,0.966802,0.71517,0.646501,0.135593,0.460818,0.84302,0.748914,0.00111622,0.945338,0.743571,0.0190941,0.814643,0.779975,0.850427,0.461278,0.120872,0.975429,0.658384,0.0319688,0.472105,0.427214,0.356594,0.768439,0.267999,0.115573,0.248819,0.179065,0.861796,0.358136,0.657174,0.802674,0.420013,0.0563562,0.579898,0.948018,0.626666,0.746234,0.0445893,0.238363,0.361284,0.904282,0.636974,0.221932,0.498038,0.47417,0.857298,0.713484,0.403267,0.00178158,0.709205,0.909332,0.481375,0.269692,0.515928,|0.162466,0.856737,0.155369,0.42177,0.62659,0.298943,0.490073,0.874871,0.0272041,0.741786,0.136691,0.332547,0.173538,0.765639,0.528644,0.914348,0.954763,0.597662,0.663705,0.964457,0.548546,0.370835,0.0248365,0.978201,0.200652,0.7524,0.221788,0.403412,0.884401,0.859716,0.13443,0.274114,0.501455,0.0989679,0.503585,0.35106,0.369029,0.543396,0.556581,0.232321,0.0937526,0.926203,0.343689,0.0311318,0.282647,0.397211,0.0502691,0.170868,0.00106704,0.594718,0.80919,0.767668,0.76845,0.562426,0.108677,0.0713432,0.0525872,0.268147,0.567201,0.222259,0.432049,0.0913948,0.22301,0.504062,0.490164,0.238204,0.411286,0.498128,0.48227,0.255513,0.480065,0.429734,0.96393,0.836106,0.706636,0.325526,0.743317,0.136872,0.654644,0.22263,0.122105,0.805441,0.338482,0.50595,0.466299,0.908897,0.166511,0.134457,0.642679,0.0224577,0.646699,0.129408,0.260864,0.866138,0.982436,0.34686,0.979804,0.0301052,0.743898,0.974104,0.0542045,0.421827,0.497771,0.744832,0.301086,0.375775,0.0830406,0.870463,0.487294,0.51032,0.185131,0.547589,0.0582603,0.983979,0.898444,0.497076,0.925724,0.676622,0.379435,0.903516,0.403546,0.438415,0.892462,0.992663,0.45919,0.387526,0.487217,0.841891,0.421764,0.025497,0.518096,0.465368,0.384408,0.47508,0.393896,0.519205,0.747391,0.492848,0.311302,0.524697,0.659945,0.552884,0.977641,0.174997,0.725696,0.590013,0.53441,0.695664,0.415804,0.52568,0.261758,0.325349,0.53157,0.998393,0.323142,0.050943,0.0856286,0.818172,0.208232,0.243947,0.129405,0.393486,0.609677,0.966793,0.624544,0.344842,0.0526527,0.0915771,0.646515,0.432781,0.0815467,0.790803,0.42858,0.0769481,0.771332,0.626159,0.44643,0.979466,0.0727218,0.151936,0.427634,0.80246,0.554487,0.0306495,0.338647,0.462677,0.76115,0.696437,0.680847,0.78847,0.805289,0.180995,0.373803,0.83994,0.886327,0.0897344,0.34783,0.494253,0.48867,0.434388,0.908377,0.851533,0.160622,0.770815,0.415416,0.0703668,0.393096,0.799938,0.0886879,0.154924,0.83802,0.14737,0.986652,0.254671,0.94987,0.818489,0.457695,0.610712,0.626858,0.236257,0.17284,0.441266,0.733526,0.333507,0.718621,0.821293,0.726316,0.259565,0.355687,0.579156,0.4411,0.688068,0.424198,0.128197,0.292129,0.711986,0.466753,0.174907,0.304274,0.695028,0.685019,0.339126,0.358669,0.0291301,0.684491,0.290428,0.799305,0.337219,0.755722,0.142384,0.503263,0.43476,0.613675,0.155673,0.885591,0.51972,0.758554,0.524421,0.197884,0.10214,0.45063,0.576199,0.828142,0.682595,0.190695,0.238349,0.00679046,0.239666,0.171855,0.609001,0.775856,0.0356485,0.196049,0.529486,0.345646,0.871223,0.198361,0.863667,0.172462,0.408603,0.952279,0.98949,0.638721,0.804503,0.968697,0.110359,0.121788,0.556601,0.350941,0.584355,0.0930686,0.91235,0.821307,0.851833,0.892862,0.200808,0.122507,0.330463,0.0268441,0.369465,0.823231,0.174952,0.825083,0.732211,0.591119,0.316091,0.208087,0.161266,0.549411,0.378655,0.566369,0.598112,0.7379,0.996204,0.621844,0.00532961,0.0369011,0.406484,0.532681,0.576684,0.206795,0.740994,0.352462,0.348851,0.45913,0.0456546,0.836528,0.0361606,0.309677,0.762773,0.501869,0.613175,0.53361,0.582665,0.409211,0.716231,0.700461,0.49834,0.178765,0.33509,0.476674,0.275975,0.482871,0.343696,0.0475979,0.431235,0.274742,0.191371,0.282164,0.910726,0.758532,0.0760352,0.432274,0.577548,0.564238,0.709834,0.0691432,0.400809,0.858792,0.768568,0.244653,0.919667,0.25642,0.902579,0.443777,0.791841,0.136102,0.61507,0.207049,0.341801,0.349863,0.630441,0.114171,0.754792,0.0566487,0.757784,0.642142,0.447574,0.193501,0.423802,0.306135,0.231508,0.442839,0.611621,0.0250104,0.245875,0.566885,0.991297,0.935547,0.791126,0.772979,0.0434225,0.0202385,0.0449939,0.743656,0.0612196,0.499148,0.212861,0.200451,0.447032,0.933912,0.476209,0.973851,0.693046,0.386017,0.842991,0.920827,0.690014,0.650381,0.249796,0.464866,0.600948,0.483085,0.170472,0.455388,0.282413,0.55556,0.592949,0.997012,0.951669,0.580262,0.832415,0.704359,0.674304,0.0685059,0.982316,0.0571811,0.523592,0.748807,0.870089,0.115196,0.330017,0.63261,0.8819,0.104387,0.0103015,0.27727,0.233086,0.0178916,0.322081,0.311051,0.188782,0.0527476,0.488,0.148145,0.310521,0.519096,0.462227,0.882101,0.131047,0.0597057,0.837353,0.511247,0.993704,0.728736,0.45254,0.212958,0.971068,0.0107638,0.208985,0.816518,0.702123,0.569684,0.13318,0.456873,0.0253116,0.0883684,0.67469,0.274583,0.86773,0.0141783,0.185438,0.916282,0.700814,0.704764,0.528625,0.0600187,0.00898165,0.516506,0.145455,0.160151,0.667081,0.190483,0.00546384,0.422422,0.167705,0.0546461,0.479144,0.517762,0.598019,0.0400924,0.905383,0.53818,0.429976,0.682098,0.786865,0.879409,0.417029,0.169134,0.317559,0.955121,0.265065,0.505469,0.021753,0.8696,0.942101,0.525802,0.494925,0.465334,0.408232,0.202077,0.0693668,0.803578,0.736226,0.441358,0.65109,0.710126,0.52285,0.399968,0.325598,0.0555775,0.275309,0.267167,0.934073,0.718539,0.62396,0.857369,0.949832,0.581366,0.0153825,0.31408,0.717086,0.830394,0.948931,0.866827,0.235462,0.947664,0.203791,0.631804,0.538546,0.362759,0.804429,0.240707,0.541496,0.604382,0.340356,0.854667,0.312428,0.32454,0.927569,0.554245,0.767013,0.143978,0.710571,0.187798,0.0232069,0.488772,0.410148,0.538816,0.669519,0.922898,0.892202,0.638545,0.773979,0.743136,0.306656,0.215311,0.375932,0.218292,0.703731,0.165337,0.181573,0.0671496,0.951843,0.260786,0.648985,0.961996,0.101149,0.53315,0.580721,0.0707746,0.317948,0.562236,0.354731,0.322014,0.0495737,0.267776,0.321978,0.188417,0.5359,0.133233,0.718934,0.485951,0.344301,0.941502,0.805884,0.962098,0.319957,0.474335,0.844369,0.00514036,0.36007,0.987668,0.199505,0.347726,0.347049,0.733468,0.972854,0.43975,0.11562,0.744824,0.902731,0.501781,0.350533,0.550083,0.664595,0.0265618,0.286335,0.476999,0.965146,0.638886,0.738752,0.568531,0.434333,0.359171,0.157725,0.593319,0.399838,0.313658,0.323132,0.788578,0.232373,0.948625,0.963463,0.806522,0.0806629,0.126305,0.715267,0.329094,0.333448,0.237602,0.688596,0.956327,0.245693,0.0792869,0.387667,0.976144,0.798129,0.576617,0.960488,0.0693747,0.689318,0.77911,0.953534,0.532367,0.229926,0.82385,0.688138,0.270954,0.261988,0.328505,0.0567328,0.982666,0.934515,0.236491,0.0380737,0.410485,0.702104,0.771721,0.115009,0.794006,0.862362,0.186219,0.711283,0.0514925,0.248719,0.264575,0.0889792,0.95686,0.73376,0.37377,0.92844,0.839854,0.965632,0.02017,0.999623,0.686256,0.482199,0.958588,0.703301,0.192152,0.944537,0.708123,0.753673,0.318504,0.688338,0.0921066,0.315372,0.449347,0.388497,0.224763,0.735497,0.572568,0.979825,0.797151,0.59514,0.367628,0.910106,0.921588,0.815465,0.115319,0.552882,0.694659,0.478634,0.742992,0.619973,0.526495,0.071724,0.868487,0.612992,0.831256,0.571287,0.0664665,0.78112,0.0230168,0.512851,0.197015,0.160764,0.307787,0.858853,0.469008,0.743451,0.456588,0.806658,0.741488,0.727803,0.173799,0.493577,0.227199,0.976346,0.866488,0.493958,0.918092,0.935262,0.354049,0.259545,0.798557,0.411871,0.346673,0.552548,0.0643833,0.27993,0.0207464,0.967862,0.418275,0.903062,0.494702,0.0836086,0.957247,0.517838,0.979653,0.231453,0.667967,0.756175,0.922651,0.656944,0.529294,0.539552,0.198148,0.0737992,0.896348,0.641278,0.0153307,0.101816,0.0271524,0.301827,0.411037,0.719173,0.818942,0.910256,0.880594,0.318934,0.929708,0.742682,0.387091,0.40861,0.722926,0.131915,0.542141,0.421803,0.919745,0.0161805,0.0398378,0.360199,0.738803,0.636952,0.641721,0.0870045,0.145771,0.675845,0.91566,0.313968,0.865656,0.0690187,0.0191054,0.707052,0.725276,0.948917,0.96348,0.868549,0.720404,0.150749,0.143024,0.558393,0.106156,0.590955,0.968855,0.987536,0.279203,0.541958,0.741087,0.0406804,0.528741,0.650038,0.919363,0.709371,0.269347,0.521421,0.410543,0.620894,0.113721,0.0701902,0.232723,0.172595,0.148587,0.75379,0.468238,0.691372,0.7462,0.468006,0.626949,0.101521,0.803123,0.62479,0.0262722,0.0234614,0.783584,0.57327,0.968595,0.926996,0.766679,0.284656,0.925689,0.917796,0.559526,0.810596,0.762116,0.143895,0.56554,0.814619,0.51813,0.808332,0.895517,0.615995,0.32051,0.0789424,0.131419,0.590299,0.244495,0.977105,0.523392,0.0813918,0.634379,0.130959,0.576096,0.494994,0.638768,0.572692,0.183964,0.959071,0.21893,0.734764,0.944453,0.106163,0.211481,0.435452,0.901326,0.266589,0.723601,0.875768,0.400912,0.744599,0.824053,0.329585,0.32113,0.603515,0.737582,0.6653,0.21789,0.186864,0.123837,0.434366,0.501818,0.749928,0.604374,0.893816,0.172688,0.305221,0.753678,0.529955,0.734253,0.0510636,0.947024,0.00810713,0.210536,0.599407,0.260711,0.324217,0.306306,0.50155,0.519847,0.655643,0.336064,0.0307521,0.528625,0.0324213,0.325598,0.966431,0.286451,0.757331,0.755048,0.105754,0.159905,0.352803,0.490452,0.132015,0.946409,0.126831,0.956188,0.748498,0.477851,0.151628,0.847031,0.0220807,0.165056,0.814042,0.378557,0.932903,0.895776,0.390278,0.874883,0.155501,0.512741,0.295202,0.392801,0.580268,0.612166,0.969405,0.629109,0.901686,0.347027,0.640664,0.871365,0.617081,0.141567,0.0306093,0.276838,0.998035,0.58992,0.0219639,0.0980735,0.979099,0.0496224,0.0879186,0.9522,0.093679,0.10092,0.848339,0.792403,0.993644,0.266281,0.632803,0.145912,0.220644,0.667576,0.254505,0.178602,0.263376,0.280939,0.0247144,0.0670614,0.716142,0.473821,0.601524,0.469095,0.346804,0.0947921,0.336408,0.868892,0.768453,|0.322791,0.353469,0.277009,0.171411,0.0976101,0.84173,0.571296,0.3764,0.339788,0.0569094,0.638652,0.797434,0.240905,0.923707,0.334802,0.492911,0.548306,0.814,0.956307,0.208321,0.0267527,0.539171,0.0370563,0.614492,0.354288,0.481125,0.491088,0.755448,0.456709,0.355904,0.973903,0.62309,0.0341291,0.998913,0.230095,0.249484,0.258022,0.193531,0.241028,0.619657,0.93058,0.528224,0.826376,0.00368279,0.878204,0.154869,0.218017,0.100062,0.0159075,0.301591,0.488322,0.19637,0.590167,0.756214,0.582724,0.0905346,0.386212,0.868214,0.960946,0.111216,0.773318,0.219244,0.811786,0.24809,0.772616,0.618605,0.846306,0.423475,0.0583976,0.062802,0.0131051,0.129997,0.65763,0.898042,0.694549,0.00086993,0.478137,0.460655,0.42795,0.412349,0.533208,0.0809234,0.317147,0.631343,0.717405,0.106871,0.481406,0.659043,0.0642927,0.81483,0.388921,0.131779,0.217341,0.501463,0.851193,0.793325,0.168932,0.120006,0.653301,0.679618,0.433471,0.429516,0.642363,0.948256,0.682388,0.24765,0.886118,0.207383,0.155282,0.649073,0.680853,0.215277,0.747721,0.533823,0.958422,0.526126,0.69182,0.399489,0.14402,0.111657,0.23804,0.428321,0.423701,0.827378,0.320227,0.110247,0.353897,0.961465,0.473068,0.779822,0.621449,0.921798,0.08607,0.131638,0.200115,0.247969,0.629874,0.618371,0.925498,0.183668,0.667185,0.623116,0.676691,0.648737,0.231673,0.632625,0.995045,0.316851,0.602125,0.256892,0.399107,0.276349,0.0369881,0.191261,0.0656403,0.165388,0.162435,0.584833,0.65426,0.183022,0.512128,0.585679,0.510044,0.390458,0.328362,0.630418,0.40347,0.165906,0.924419,0.204912,0.290421,0.280361,0.190364,0.735155,0.525892,0.319263,0.827931,0.25752,0.5627,0.92672,0.165062,0.17104,0.625915,0.0763878,0.591606,0.851471,0.577477,0.143837,0.933403,0.301035,0.141596,0.914934,0.0853391,0.461782,0.756024,0.564675,0.747384,0.728983,0.0302345,0.325155,0.461432,0.579942,0.955631,0.379235,0.730652,0.471727,0.0156893,0.130248,0.761324,0.606488,0.55843,0.851448,0.524833,0.43421,0.379716,0.908484,0.966183,0.195543,0.569777,0.720294,0.664934,0.868009,0.845535,0.192851,0.577811,0.110968,0.85092,0.659755,0.454795,0.259597,0.274504,0.0376346,0.0867016,0.830317,0.735305,0.247402,0.613862,0.109058,0.715544,0.00664937,0.543018,0.763364,0.603666,0.271777,0.960716,0.526797,0.330334,0.273983,0.0633602,0.530419,0.897654,0.1582,0.590299,0.796984,0.407256,0.362056,0.612227,0.642353,0.669423,0.365141,0.236185,0.141776,0.121422,0.0349388,0.654941,0.34033,0.44284,0.216236,0.157244,0.619063,0.936954,0.247922,0.146812,0.727224,0.38599,0.910503,0.987971,0.100414,0.0902435,0.823176,0.760856,0.404597,0.750623,0.120935,0.738382,0.366858,0.24795,0.981387,0.302304,0.112703,0.192562,0.997041,0.814206,0.758474,0.62574,0.805163,0.519521,0.035106,0.781929,0.586292,0.792054,0.478786,0.661866,0.334672,0.776366,0.630955,0.293783,0.948283,0.868633,0.789194,0.437583,0.765792,0.470249,0.842209,0.168834,0.594508,0.891845,0.745892,0.423435,0.548162,0.28842,0.143427,0.589152,0.508694,0.39328,0.560163,0.368434,0.908229,0.423561,0.707677,0.661167,0.551934,0.184604,0.982402,0.228083,0.579919,0.831533,0.878056,0.733864,0.616481,0.195163,0.215118,0.283173,0.815664,0.646557,0.0323946,0.483864,0.904539,0.1901,0.62284,0.241733,0.676472,0.928749,0.82655,0.751527,0.236667,0.186849,0.503341,0.310002,0.645032,0.564766,0.265129,0.525516,0.0378377,0.744951,0.508622,0.764215,0.508484,0.0275797,0.837292,0.92753,0.156284,0.213689,0.332618,0.513722,0.891508,0.648767,0.293497,0.417074,0.0464749,0.198342,0.913714,0.468611,0.0988964,0.895366,0.924704,0.759378,0.535847,0.918193,0.000439405,0.214128,0.563602,0.468635,0.100515,0.0513409,0.257319,0.636987,0.61664,0.412238,0.595716,0.777619,0.425957,0.916583,0.118966,0.815619,0.5753,0.0640103,0.723468,0.038443,0.821427,0.362643,0.57666,0.16956,0.802292,0.620713,0.0502616,0.780279,0.599713,0.395631,0.27179,0.7289,0.360081,0.611365,0.172403,0.350124,0.947787,0.209975,0.338047,0.344327,0.0313312,0.330634,0.188242,0.304473,0.194754,0.0472077,0.680882,0.0764365,0.76936,0.127596,0.626174,0.543132,0.195022,0.484537,0.807933,0.153855,0.644854,0.350986,0.81518,0.421534,0.953074,0.50359,0.865199,0.0452093,0.705527,0.286011,0.0744785,0.810783,0.0272279,0.224992,0.447503,0.33833,0.918804,0.239437,0.974221,0.275892,0.577695,0.437728,0.153243,0.592731,0.49627,0.949297,0.209659,0.257216,0.168977,0.585219,0.348092,0.144972,0.437038,0.986912,0.210663,0.161161,0.911615,0.431206,0.649432,0.52116,0.689709,0.162922,0.983985,0.739486,0.170757,0.697754,0.468295,0.260964,0.894216,0.0124274,0.723518,0.276924,0.864365,0.296044,0.649998,0.961175,0.427421,0.142567,0.622667,0.443198,0.220909,0.147515,0.00391537,0.814791,0.708992,0.307989,0.60241,0.396012,0.843244,0.483497,0.928415,0.348006,0.624928,0.270051,0.0979605,0.83991,0.192208,0.277246,0.891857,0.503008,0.044009,0.920477,0.785409,0.404176,0.767945,0.982696,0.87165,0.121631,0.107066,0.969548,0.416284,0.508367,0.471469,0.0874975,0.824409,0.472708,0.992494,0.754215,0.622248,0.742821,0.223672,0.362245,0.763028,0.120334,0.261818,0.209115,0.938353,0.163309,0.93122,0.719606,0.157076,0.772202,0.268152,0.110457,0.651518,0.835678,0.409682,0.435012,0.30369,0.652663,0.634695,0.17226,0.893559,0.589476,0.610609,0.120573,0.862379,0.662664,0.214891,0.28233,0.0337288,0.646802,0.496501,0.895407,0.599163,0.674007,0.315423,0.880073,0.340111,0.00915456,0.278444,0.77429,0.819389,0.185421,0.754418,0.281417,0.254052,0.362577,0.228407,0.844881,0.752659,0.861125,0.655332,0.583373,0.349186,0.571093,0.196471,0.541051,0.0875176,0.166048,0.948821,0.936199,0.517677,0.422042,0.296189,0.830134,0.3444,0.716428,0.219407,0.639857,0.924126,0.160621,0.517591,0.461946,0.379453,0.209207,0.382533,0.499117,0.757668,0.239561,0.928677,0.925946,0.672754,0.814797,0.733432,0.530253,0.307529,0.0645834,0.470481,0.0104356,0.0961965,0.0691619,0.341281,0.393822,0.906795,0.384036,0.571187,0.0647715,0.625599,0.755819,0.837803,0.657643,0.766357,0.190034,0.429883,0.53502,0.0507267,0.0900087,0.373692,0.395329,0.532144,0.117968,0.754695,0.811154,0.343085,0.00895101,0.798713,0.476533,0.81515,0.00137943,0.648087,0.523054,0.323443,0.7529,0.457211,0.421324,0.691121,0.403801,0.46314,0.690822,0.79278,0.798917,0.241284,0.203467,0.998989,0.148015,0.16582,0.581313,0.156687,0.190284,0.299765,0.611132,0.277677,0.759947,0.155905,0.89646,0.616768,0.0903548,0.723005,0.53373,0.273794,0.945529,0.999506,0.265719,0.783315,0.833619,0.13937,0.690112,0.185442,0.198446,0.93222,0.97697,0.757157,0.772013,0.644566,0.156738,0.299503,0.981177,0.530739,0.770062,0.321314,0.689488,0.317529,0.025066,0.250393,0.859372,0.151908,0.435815,0.726758,0.70237,0.372554,0.0706609,0.499454,0.479855,0.493897,0.0705984,0.881137,0.835157,0.57932,0.448509,0.699879,0.297861,0.689662,0.888894,0.40354,0.674736,0.259953,0.697278,0.423052,0.819028,0.672476,0.838571,0.539715,0.893775,0.922172,0.865597,0.368979,0.58311,0.703906,0.216106,0.313469,0.319625,0.345719,0.141779,0.0504986,0.274675,0.580339,0.652228,0.317404,0.394521,0.991957,0.355151,0.641595,0.262143,0.309526,0.391883,0.215648,0.723973,0.904048,0.951441,0.743656,0.115739,0.228134,0.260316,0.19568,0.278947,0.141732,0.341719,0.184415,0.0552827,0.797088,0.561842,0.348157,0.5448,0.648732,0.959074,0.54913,0.655306,0.21616,0.000437438,0.0427947,0.892204,0.914791,0.797868,0.282495,0.0801355,0.962264,0.95727,0.348267,0.0614734,0.736744,0.46875,0.569715,0.262246,0.353984,0.780389,0.669697,0.0911405,0.863153,0.979054,0.96215,0.698268,0.580202,0.680425,0.346367,0.0869205,0.694688,0.442646,0.340362,0.907515,0.428802,0.815471,0.277617,0.364019,0.164226,0.343153,0.240124,0.196184,0.516585,0.257393,0.573064,0.544443,0.881086,0.0284573,0.172557,0.477903,0.760009,0.243673,0.295141,0.802203,0.726857,0.0960511,0.407434,0.880233,0.538906,0.187212,0.328378,0.0351005,0.517871,0.433132,0.936097,0.23254,0.480283,0.0553858,0.854547,0.298251,0.727573,0.693265,0.520529,0.225125,0.86118,0.0408059,0.417325,0.202291,0.979739,0.0908949,0.207697,0.807934,0.568245,0.875772,0.658299,0.85417,0.928009,0.512253,0.816703,0.0649186,0.327165,0.924952,0.173497,0.435598,0.0569564,0.985789,0.184112,0.0761723,0.993939,0.616572,0.466082,0.339935,0.879995,0.461332,0.0741315,0.928694,0.354062,0.393038,0.608185,0.590718,0.864191,0.505342,0.0161463,0.490501,0.756896,0.669148,0.579626,0.315413,0.402706,0.00219774,0.488279,0.713315,0.544342,0.76979,0.975826,0.557639,0.553932,0.228535,0.550055,0.380101,0.188914,0.255838,0.656344,0.126692,0.744301,0.902773,0.528776,0.547809,0.213323,0.965246,0.125903,0.912768,0.440073,0.67943,0.162294,0.692552,0.0112793,0.37958,0.993798,0.186392,0.297683,0.103883,0.79001,0.207388,0.742373,0.70778,0.949428,0.920184,0.850845,0.774721,0.558759,0.260676,0.641626,0.408659,0.331136,0.577163,0.449819,0.562647,0.62819,0.395562,0.552206,0.640235,0.791916,0.257174,0.163611,0.919451,0.979879,0.931734,0.116077,0.444717,0.984171,0.401183,0.422769,0.761187,0.924017,0.475383,0.26231,0.417159,0.318511,0.185756,0.930679,0.592572,0.748756,0.49351,0.296246,0.734408,0.701655,0.340249,0.618619,0.162576,0.530565,0.836838,0.326764,0.726945,0.657571,0.979106,0.189551,0.615381,0.56929,|0.251652,0.32328,0.277009,0.304641,0.560734,0.49038,0.984183,0.197619,0.268322,0.452185,0.122955,0.91465,0.74728,0.229453,0.204023,0.276084,0.642199,0.522519,0.0340595,0.631894,0.0859417,0.925117,0.735145,0.943845,0.488988,0.142974,0.353831,0.169106,0.734144,0.280007,0.959087,0.315057,0.704983,0.805829,0.401272,0.423217,0.0529323,0.666591,0.194575,0.179035,0.976037,0.704127,0.178754,0.916626,0.0516277,0.718941,0.164105,0.818505,0.687402,0.356729,0.492179,0.768493,0.159169,0.0350451,0.338298,0.687463,0.621362,0.509619,0.700381,0.848558,0.929883,0.0379408,0.0683706,0.89506,0.257338,0.13024,0.942297,0.514224,0.7233,0.597557,0.803365,0.426147,0.780462,0.23525,0.138541,0.918489,0.416677,0.870676,0.448333,0.90489,0.862935,0.0109769,0.397153,0.694971,0.207164,0.0557377,0.136895,0.326072,0.039194,0.469805,0.773086,0.608332,0.923954,0.844912,0.833663,0.518825,0.40893,0.213731,0.119928,0.0173936,0.0179619,0.597253,0.956952,0.518492,0.14508,0.825624,0.908582,0.34076,0.540956,0.84839,0.632082,0.396226,0.257178,0.580727,0.155827,0.524841,0.724242,0.0985017,0.906433,0.0614438,0.148243,0.181796,0.895271,0.155448,0.211191,0.839387,0.986516,0.288101,0.779331,0.504912,0.928366,0.195125,0.784894,0.246381,0.0741451,0.593426,0.916293,0.123348,0.194116,0.335246,0.408996,0.375722,0.44519,0.690881,0.243891,0.437812,0.901894,0.0857282,0.745777,0.908655,0.392603,0.160226,0.777485,0.690241,0.891816,0.889847,0.569946,0.872208,0.463039,0.385946,0.312831,0.17948,0.565974,0.515757,0.792389,0.729822,0.23709,0.879045,0.602829,0.144454,0.529826,0.702427,0.0411521,0.513226,0.216524,0.922296,0.316843,0.865288,0.215708,0.681908,0.0897083,0.603566,0.935542,0.367709,0.792141,0.803961,0.20101,0.965805,0.525007,0.670281,0.978022,0.0306987,0.726167,0.722553,0.567573,0.571903,0.780807,0.957344,0.696921,0.245674,0.00457454,0.849074,0.539305,0.719319,0.163572,0.615414,0.0167823,0.636398,0.899717,0.134512,0.125924,0.595479,0.691649,0.747823,0.334086,0.256439,0.95232,0.657067,0.110209,0.223907,0.574361,0.640341,0.805141,0.0834252,0.822853,0.605143,0.36312,0.401608,0.488957,0.00829536,0.701918,0.177708,0.673134,0.467075,0.0916561,0.586831,0.40418,0.868914,0.103616,0.429017,0.376384,0.959983,0.301058,0.524924,0.75136,0.170827,0.148576,0.232619,0.970698,0.54362,0.617316,0.075733,0.0893403,0.375277,0.429063,0.214537,0.978251,0.458435,0.794173,0.30516,0.632799,0.668011,0.592951,0.406556,0.0923001,0.947116,0.0253618,0.211227,0.836145,0.15157,0.35582,0.856026,0.461626,0.202984,0.204411,0.306204,0.126961,0.311445,0.344358,0.551666,0.283774,0.669293,0.495666,0.0780972,0.879849,0.297377,0.304637,0.986676,0.823417,0.157623,0.323982,0.834273,0.189164,0.412324,0.0471122,0.455417,0.626036,0.105535,0.34997,0.583799,0.450431,0.681889,0.658078,0.272005,0.478497,0.857317,0.265432,0.18631,0.69508,0.201172,0.352332,0.547746,0.818078,0.117748,0.598774,0.39327,0.36263,0.154783,0.689794,0.0972593,0.580846,0.942893,0.151035,0.356738,0.228852,0.897577,0.131555,0.266432,0.382878,0.026799,0.912216,0.684007,0.771614,0.718599,0.494059,0.133085,0.366772,0.0740512,0.365831,0.165641,0.643237,0.990885,0.84251,0.824669,0.670201,0.555229,0.778195,0.906716,0.602246,0.139235,0.902577,0.14156,0.43132,0.666821,0.200733,0.175239,0.480519,0.145848,0.794493,0.173006,0.401278,0.259598,0.184956,0.591539,0.502593,0.882571,0.960563,0.241489,0.166931,0.672747,0.0764253,0.826231,0.671683,0.860654,0.194625,0.6539,0.0713505,0.299106,0.415253,0.8899,0.256463,0.382171,0.456977,0.655738,0.0398982,0.650626,0.851287,0.590438,0.235073,0.735826,0.706567,0.0478373,0.182163,0.596601,0.152143,0.513191,0.218161,0.298976,0.437596,0.209857,0.357653,0.0378691,0.500683,0.565166,0.867008,0.711897,0.454845,0.251157,0.650044,0.84431,0.572205,0.472018,0.949936,0.820651,0.379991,0.601083,0.878208,0.582909,0.900595,0.897112,0.862347,0.303751,0.579918,0.670241,0.994893,0.31454,0.0138165,0.529723,0.946242,0.991137,0.581044,0.590336,0.29522,0.757509,0.670622,0.400976,0.851389,0.266001,0.349224,0.914082,0.978567,0.970749,0.142788,0.931361,0.543593,0.707916,0.225429,0.798703,0.538545,0.483988,0.150388,0.241727,0.505112,0.459645,0.19066,0.813453,0.324519,0.0656539,0.384678,0.0919417,0.122866,0.0391344,0.0958444,0.000956953,0.357213,0.874581,0.409021,0.771962,0.842171,0.454937,0.558718,0.294764,0.233909,0.409625,0.576543,0.548839,0.648521,0.212993,0.159764,0.342235,0.779584,0.604115,0.924327,0.776495,0.151857,0.666798,0.434041,0.154505,0.719593,0.219855,0.899593,0.507117,0.0968337,0.149615,0.656859,0.215361,0.371533,0.292465,0.0890362,0.513924,0.22911,0.985828,0.634688,0.6713,0.956338,0.0554991,0.791759,0.883911,0.660633,0.45533,0.614032,0.919539,0.0171721,0.632251,0.0695457,0.775544,0.420222,0.949661,0.847514,0.49138,0.173804,0.308101,0.39995,0.638071,0.402091,0.0786219,0.0205857,0.995107,0.408791,0.662232,0.162249,0.163052,0.725432,0.493222,0.305361,0.569342,0.944773,0.806673,0.992057,0.719497,0.292228,0.0640522,0.348459,0.87572,0.611523,0.972223,0.500581,0.520885,0.445287,0.749884,0.738753,0.937046,0.215946,0.33358,0.155922,0.0220022,0.583289,0.715782,0.0622771,0.999286,0.2436,0.0148306,0.0131455,0.542351,0.247848,0.987506,0.664083,0.256735,0.0738827,0.0616531,0.471023,0.678716,0.42142,0.393771,0.834749,0.946263,0.824566,0.0271958,0.605183,0.760216,0.0848423,0.515196,0.37506,0.125417,0.777937,0.0736089,0.995311,0.0934147,0.304693,0.701141,0.980437,0.524797,0.069527,0.982477,0.943729,0.556207,0.598452,0.601923,0.123891,0.460977,0.445786,0.762492,0.251098,0.880591,0.243223,0.0135977,0.0554903,0.971639,0.582636,0.0746629,0.370053,0.38731,0.497545,0.222615,0.943683,0.244081,0.00431174,0.359988,0.948922,0.643741,0.131204,0.57057,0.0805884,0.84209,0.0284087,0.845846,0.0682997,0.619688,0.344486,0.635078,0.41471,0.806592,0.383631,0.977876,0.307454,0.161204,0.369191,0.0301272,0.408339,0.0301738,0.270683,0.240024,0.824675,0.534116,0.44509,0.282251,0.240634,0.392403,0.810576,0.731486,0.743441,0.865289,0.121407,0.720472,0.45665,0.419022,0.799537,0.250619,0.115121,0.180028,0.577919,0.77724,0.043438,0.615566,0.528452,0.204136,0.565601,0.391485,0.717637,0.765789,0.791096,0.0134008,0.333988,0.434426,0.508499,0.598525,0.554977,0.757615,0.296059,0.808107,0.862568,0.799608,0.373249,0.674012,0.748771,0.761509,0.0206643,0.601071,0.736882,0.696782,0.196129,0.547836,0.645059,0.883998,0.160025,0.134546,0.376556,0.400336,0.52589,0.231508,0.0240393,0.358321,0.0885185,0.213628,0.161853,0.824211,0.984282,0.778918,0.46264,0.915158,0.554025,0.269748,0.959819,0.841382,0.736033,0.32857,0.989792,0.822423,0.414497,0.316845,0.523532,0.987881,0.480206,0.451877,0.813559,0.0357751,0.400583,0.330722,0.523762,0.909962,0.850553,0.547045,0.765295,0.525526,0.545041,0.646403,0.693235,0.227543,0.779481,0.288136,0.198427,0.99976,0.804008,0.527411,0.0874515,0.961293,0.270642,0.960359,0.6826,0.27358,0.65416,0.264096,0.768445,0.532002,0.0171538,0.69177,0.875304,0.368158,0.919612,0.249973,0.197396,0.740302,0.472747,0.595838,0.688793,0.940266,0.427687,0.883583,0.354443,0.0365871,0.357153,0.909491,0.122171,0.497309,0.0545169,0.527745,0.00704581,0.76189,0.165808,0.605175,0.280528,0.987915,0.208824,0.067938,0.137171,0.766867,0.605184,0.303611,0.93633,0.902432,0.00476509,0.956185,0.664947,0.411284,0.402243,0.573504,0.530386,0.952247,0.703698,0.306002,0.705748,0.491697,0.106055,0.447035,0.400079,0.538628,0.309972,0.0770051,0.144962,0.97599,0.494409,0.370398,0.580024,0.361074,0.252792,0.519191,0.347378,0.766253,0.856783,0.771715,0.541827,0.131241,0.890569,0.319008,0.262557,0.475547,0.597544,0.239606,0.374245,0.898853,0.536874,0.640998,0.23928,0.110142,0.436536,0.629813,0.353014,0.00768864,0.748943,0.251921,0.808499,0.82437,0.26508,0.619873,0.341625,0.91694,0.9183,0.933531,0.986605,0.105776,0.852511,0.322469,0.985543,0.292023,0.321507,0.241486,0.501154,0.37453,0.601637,0.628535,0.960387,0.0884271,0.0624247,0.423735,0.372344,0.476379,0.0809696,0.270748,0.187728,0.428097,0.740552,0.972707,0.075228,0.185915,0.583321,0.101533,0.0702164,0.970678,0.655286,0.196732,0.849557,0.062593,0.68263,0.19034,0.153049,0.368078,0.716638,0.406499,0.476325,0.591744,0.0201504,0.430565,0.0132502,0.377956,0.529395,0.120757,0.979538,0.254502,0.6353,0.358341,0.346225,0.291103,0.550229,0.527137,0.836306,0.597625,0.750766,0.962593,0.587097,0.795119,0.103898,0.718473,0.0743315,0.126062,0.718385,0.37097,0.441325,0.415277,0.424352,0.741222,0.651067,0.000815034,0.459054,0.935547,0.779136,0.808776,0.568483,0.670809,0.991537,0.0726122,0.568773,0.537523,0.501685,0.377655,0.523912,0.894567,0.619568,0.550987,0.141972,0.378587,0.280985,0.337713,0.780381,0.981358,0.245163,0.484696,0.17764,0.288744,0.997964,0.733367,0.237906,0.240619,0.111065,0.240354,0.999998,0.43476,0.697599,0.855129,0.728275,0.252354,0.679591,0.339785,0.911597,0.865284,0.151585,0.556246,0.370953,0.0226397,0.226928,0.648575,0.801258,0.530976,0.242781,0.159716,0.369673,0.359074,0.221472,0.123637,0.852918,0.723267,0.330057,0.673826,0.520039,0.159498,0.100601,0.185292,0.562152,0.277169,0.974296,0.446072,0.865346,0.0786851,0.981059,0.361616,0.640128,0.354026,0.0532438,0.969855,0.936184,0.807257,|0.598749,0.155525,0.458249,0.108093,0.919409,0.710732,0.196637,0.439018,0.624977,0.960928,0.321066,0.461722,0.501283,0.197313,0.597382,0.819898,0.416292,0.951608,0.877182,0.886594,0.869287,0.435922,0.163401,0.148009,0.916716,0.744479,0.761858,0.713307,0.372322,0.842671,0.615311,0.385,0.0943426,0.885832,0.0857892,0.101896,0.476092,0.208742,0.991729,0.0475959,0.60624,0.299247,0.231691,0.864342,0.477084,0.734594,0.979593,0.141747,0.782567,0.155342,0.0242278,0.147586,0.534646,0.330544,0.85381,0.515204,0.56574,0.736112,0.0618348,0.233296,0.462838,0.0655531,0.339811,0.724122,0.626323,0.0122493,0.613514,0.120609,0.628857,0.831528,0.779625,0.332138,0.866802,0.659456,0.156721,0.877089,0.369051,0.0857481,0.911929,0.861516,0.723831,0.0318234,0.770822,0.529391,0.397417,0.174346,0.696022,0.753812,0.950809,0.747019,0.237838,0.667862,0.139026,0.521975,0.585406,0.0533962,0.752232,0.664832,0.598755,0.675778,0.507677,0.329475,0.0456448,0.295241,0.434264,0.0851395,0.682392,0.364845,0.874606,0.0125483,0.457854,0.199603,0.0361639,0.955061,0.106678,0.391518,0.759194,0.124433,0.464167,0.370931,0.325954,0.511977,0.012625,0.689094,0.209112,0.397589,0.702154,0.372401,0.152556,0.037309,0.473357,0.682282,0.277017,0.0174881,0.524918,0.672939,0.145975,0.599302,0.0457526,0.298178,0.369223,0.0393436,0.311152,0.52892,0.346823,0.403882,0.91989,0.0442742,0.615881,0.430195,0.623866,0.50696,0.866543,0.0726718,0.859114,0.3997,0.640926,0.537176,0.114928,0.845489,0.350809,0.961351,0.132597,0.455676,0.668273,0.404721,0.668142,0.625381,0.677986,0.848928,0.391816,0.278263,0.217416,0.601752,0.0649237,0.652131,0.0802739,0.730477,0.365144,0.964334,0.843435,0.217936,0.0106894,0.113433,0.00955117,0.578296,0.568435,0.619021,0.0374864,0.942098,0.3925,0.99301,0.421473,0.39402,0.0525149,0.930873,0.046836,0.835939,0.284316,0.0698426,0.915107,0.348508,0.93885,0.272371,0.0301121,0.0204667,0.466609,0.766569,0.776612,0.675653,0.262024,0.818979,0.530504,0.513141,0.91946,0.685926,0.402212,0.746319,0.516291,0.4158,0.959513,0.712524,0.241548,0.855961,0.429122,0.41018,0.534898,0.0694894,0.139367,0.10105,0.831933,0.321693,0.0923897,0.293378,0.169811,0.84856,0.760382,0.98959,0.903915,0.112364,0.159054,0.964932,0.565881,0.746587,0.952159,0.546592,0.523008,0.362206,0.567467,0.58305,0.49336,0.123152,0.147923,0.164262,0.815276,0.49046,0.346198,0.903454,0.955809,0.872998,0.149607,0.0643656,0.320518,0.719858,0.0426253,0.385521,0.854949,0.533348,0.5723,0.234162,0.621315,0.612952,0.353954,0.248201,0.899031,0.728162,0.261621,0.916342,0.574692,0.487731,0.924129,0.592501,0.0475452,0.678221,0.146725,0.1687,0.169122,0.629044,0.524491,0.454952,0.599186,0.591274,0.934617,0.485597,0.913413,0.57976,0.871961,0.282262,0.875832,0.413124,0.597905,0.779494,0.801159,0.529234,0.968988,0.488883,0.958989,0.797028,0.266027,0.425453,0.969801,0.135601,0.590644,0.239583,0.204032,0.211308,0.851821,0.294069,0.138414,0.629425,0.745235,0.718996,0.831831,0.75925,0.255521,0.610967,0.641462,0.668079,0.00972068,0.684978,0.429083,0.781956,0.920192,0.534962,0.026647,0.339123,0.71393,0.731415,0.758278,0.0544632,0.348943,0.658082,0.64378,0.970117,0.402548,0.299527,0.375111,0.579988,0.946161,0.383434,0.173773,0.818247,0.821193,0.861375,0.833793,0.942321,0.403881,0.558022,0.833572,0.698091,0.887115,0.142377,0.313785,0.588145,0.525128,0.34133,0.678098,0.119215,0.702566,0.394832,0.690572,0.822256,0.699099,0.271086,0.793867,0.245806,0.00907773,0.501913,0.469314,0.804592,0.592907,0.42409,0.358036,0.664417,0.219981,0.0677455,0.828687,0.481977,0.356444,0.801053,0.473655,0.416194,0.575516,0.667454,0.408865,0.439642,0.407677,0.585821,0.22017,0.148297,0.880403,0.273152,0.357666,0.645642,0.272749,0.959679,0.0722978,0.741136,0.739353,0.711498,0.131634,0.885896,0.332771,0.21939,0.527348,0.284977,0.321285,0.66425,0.501676,0.608729,0.692851,0.86682,0.389648,0.553915,0.68956,0.123354,0.816226,0.742332,0.135797,0.774438,0.345374,0.503282,0.29885,0.876421,0.989908,0.359919,0.149706,0.796613,0.357521,0.0104544,0.543568,0.094271,0.792635,0.51504,0.186512,0.931234,0.380802,0.779086,0.503046,0.108037,0.645793,0.558301,0.841338,0.39948,0.717491,0.86583,0.194682,0.479391,0.861779,0.881054,0.4214,0.353071,0.561053,0.361327,0.607893,0.0999733,0.700237,0.0182233,0.397385,0.755028,0.493067,0.489402,0.821589,0.353318,0.301026,0.261074,0.15775,0.121043,0.998165,0.790028,0.392223,0.421074,0.837047,0.383461,0.190004,0.53124,0.264989,0.501309,0.304944,0.187271,0.693305,0.456538,0.637974,0.511151,0.224902,0.78659,0.985648,0.824157,0.726619,0.0583802,0.520289,0.770776,0.72123,0.0534638,0.28372,0.360418,0.468438,0.407306,0.708559,0.329674,0.300135,0.149099,0.649782,0.427662,0.253022,0.905415,0.21865,0.815689,0.920621,0.3579,0.398028,0.018448,0.449227,0.689441,0.982183,0.533952,0.99418,0.998626,0.0997056,0.767476,0.962318,0.940547,0.537545,0.652439,0.176399,0.911851,0.222399,0.62335,0.694853,0.202653,0.800972,0.317766,0.530617,0.259559,0.602827,0.872314,0.299546,0.548685,0.56149,0.296964,0.579755,0.931882,0.957037,0.219923,0.00262988,0.512088,0.474137,0.671591,0.415788,0.333307,0.83141,0.373365,0.239579,0.0904846,0.407,0.849093,0.0881373,0.108855,0.811957,0.176692,0.00250113,0.201531,0.145679,0.0599748,0.373064,0.223552,0.0987688,0.0654215,0.669222,0.0014357,0.902733,0.693768,0.156145,0.73305,0.58084,0.474747,0.58644,0.880175,0.140871,0.377277,0.642438,0.375276,0.130038,0.529218,0.45057,0.803305,0.601956,0.378655,0.524426,0.24921,0.34563,0.62325,0.467114,0.526173,0.922879,0.38582,0.602492,0.515678,0.0604702,0.985867,0.644207,0.254303,0.956667,0.650935,0.113622,0.106082,0.83039,0.300199,0.906943,0.783663,0.534771,0.76276,0.339074,0.692381,0.858149,0.0721487,0.972487,0.652622,0.687721,0.567953,0.464404,0.0711346,0.874885,0.96004,0.722315,0.130094,0.131214,0.758816,0.619268,0.675674,0.896069,0.232152,0.91239,0.229651,0.120172,0.644458,0.917905,0.664718,0.770003,0.238015,0.879837,0.265028,0.898803,0.576109,0.0767751,0.0629528,0.382993,0.649447,0.677915,0.0631203,0.261939,0.987963,0.916106,0.345379,0.412559,0.0363942,0.790849,0.190638,0.947054,0.159979,0.747746,0.858879,0.535491,0.114083,0.783426,0.325928,0.0919234,0.866019,0.776057,0.810808,0.255526,0.148224,0.313187,0.100897,0.526222,0.74129,0.874156,0.734191,0.685124,0.788975,0.273552,0.677568,0.682366,0.675659,0.494205,0.989011,0.0698315,0.105233,0.361857,0.266411,0.252688,0.508677,0.705925,0.930391,0.435705,0.930169,0.213759,0.0999497,0.87965,0.245018,0.76854,0.76886,0.68503,0.107952,0.379703,0.819221,0.451789,0.912231,0.585919,0.235327,0.903239,0.184644,0.0504154,0.520278,0.479549,0.771557,0.578525,0.351486,0.253881,0.266627,0.157881,0.481477,0.136967,0.917582,0.447613,0.273605,0.528615,0.483004,0.22799,0.326728,0.695546,0.471757,0.458893,0.538936,0.703595,0.7633,0.785592,0.408756,0.18062,0.230627,0.0437134,0.227313,0.860659,0.110944,0.0566622,0.883822,0.847158,0.471696,0.301153,0.406727,0.0439299,0.765848,0.953909,0.704675,0.642188,0.721081,0.801587,0.457121,0.87062,0.538672,0.437668,0.721591,0.202644,0.840548,0.348973,0.0424584,0.506566,0.966135,0.374345,0.941096,0.807516,0.437831,0.98441,0.401434,0.662744,0.370093,0.474028,0.25624,0.27125,0.940415,0.774472,0.889247,0.277532,0.472339,0.309295,0.490334,0.0796342,0.503172,0.0369577,0.894003,0.726717,0.704013,0.212325,0.170549,0.253443,0.0595278,0.529032,0.917752,0.122568,0.372539,0.619181,0.727643,0.614091,0.0479554,0.994261,0.63911,0.310246,0.0953304,0.184544,0.580482,0.73119,0.706976,0.56607,0.285561,0.360696,0.228235,0.28668,0.231923,0.998478,0.167998,0.545919,0.433273,0.716021,0.516937,0.440642,0.982784,0.120298,0.37718,0.961219,0.499625,0.314017,0.294413,0.602392,0.44081,0.868408,0.606954,0.904278,0.179641,0.267603,0.875368,0.596473,0.165989,0.584366,0.846587,0.780953,0.0638491,0.231055,0.540503,0.734468,0.244949,0.880608,0.460815,0.812774,0.521117,0.345767,0.244389,0.353808,0.27675,0.621633,0.324603,0.0103592,0.170991,0.0850965,0.624358,0.910469,0.520669,0.934056,0.273683,0.421049,0.292211,0.792539,0.376084,0.16564,0.699662,0.76323,0.422933,0.724441,0.244084,0.559585,0.538875,0.8381,0.026663,0.298175,0.194344,0.259864,0.517397,0.025739,0.00460792,0.847827,0.507953,0.241901,0.845185,0.543425,0.31156,0.172646,0.597983,0.160538,0.238891,0.216565,0.783924,0.737033,0.762297,0.325331,0.864182,0.0303807,0.343065,0.586952,0.702688,0.237918,0.0558108,0.0760794,0.383661,0.195479,0.260127,0.492188,0.0409833,0.314883,0.833882,0.262547,0.777221,0.953189,0.0456259,0.974353,0.470571,0.3678,0.701309,0.0614453,0.292865,0.630883,0.243543,0.722997,0.324724,0.850654,0.111188,0.691039,0.0721211,0.614919,0.532772,0.0910944,0.290138,0.109336,0.0594329,0.254644,0.223364,0.0321982,0.190749,0.702444,0.829622,0.038745,0.479053,0.0210872,0.194049,0.138272,0.671477,0.695305,0.994166,0.504243,0.114673,0.518761,0.882568,0.454149,0.0170962,0.680883,0.574987,0.617754,0.711484,0.503439,0.0526488,0.65118,0.677067,0.00997162,0.89062,0.454823,0.560406,0.59215,0.325509,0.319138,0.586946,0.994842,0.191705,0.792293,0.671902,0.125688,0.99533,0.593064,0.90869,0.275413,0.984795,0.517778,0.319821,|0.80544,0.682233,0.0212254,0.754744,0.414823,0.795499,0.820938,0.0153899,0.218139,0.669666,0.649861,0.413068,0.00704116,0.170556,0.923509,0.311526,0.452581,0.855609,0.360734,0.853688,0.861027,0.63667,0.0327096,0.748329,0.850184,0.620855,0.16854,0.275277,0.612179,0.193146,0.209067,0.800421,0.33177,0.204319,0.0795404,0.717513,0.733089,0.825107,0.89073,0.871782,0.786086,0.91076,0.742914,0.0486168,0.23065,0.505283,0.972859,0.917392,0.984038,0.118723,0.863654,0.0541523,0.386153,0.64343,0.0191472,0.669839,0.907888,0.141073,0.561184,0.429838,0.433925,0.280297,0.369258,0.564256,0.623084,0.0843796,0.447374,0.160156,0.248616,0.346479,0.573704,0.810437,0.147482,0.137334,0.159907,0.111574,0.302909,0.260282,0.0792447,0.158315,0.613241,0.257646,0.26127,0.648797,0.19032,0.612725,0.71494,0.224323,0.505061,0.0525447,0.891136,0.216875,0.818089,0.966333,0.0496589,0.686255,0.546506,0.29818,0.961091,0.217845,0.750799,0.261461,0.756238,0.0502521,0.514276,0.108854,0.483792,0.189673,0.450464,0.733691,0.575348,0.282621,0.974446,0.261812,0.0569558,0.22274,0.626758,0.35661,0.532686,0.814179,0.849686,0.942493,0.364106,0.276173,0.0099259,0.903796,0.874272,0.676111,0.821778,0.554837,0.948937,0.744309,0.126221,0.717882,0.940337,0.946031,0.902077,0.913371,0.957229,0.920835,0.972301,0.531621,0.132521,0.128988,0.581548,0.816264,0.492409,0.206434,0.0781179,0.955066,0.659397,0.522817,0.227473,0.117784,0.612005,0.894221,0.614515,0.794507,0.996417,0.555273,0.216833,0.584378,0.77066,0.971301,0.792959,0.257143,0.432018,0.661825,0.783891,0.381724,0.117847,0.527385,0.980341,0.366602,0.31492,0.870258,0.629622,0.499932,0.722504,0.466493,0.433598,0.995652,0.168095,0.617354,0.0138069,0.530033,0.404893,0.835752,0.699536,0.353924,0.912169,0.0769265,0.00670791,0.640861,0.712198,0.639482,0.521428,0.0211285,0.0049246,0.902743,0.678045,0.486516,0.0347677,0.627506,0.531825,0.741373,0.43151,0.357275,0.422955,0.498336,0.71276,0.257249,0.0329177,0.793734,0.759992,0.976833,0.845707,0.646187,0.000901461,0.267276,0.697834,0.714472,0.0231083,0.235081,0.966922,0.198359,0.191727,0.641379,0.0766127,0.762727,0.209694,0.466282,0.483585,0.571447,0.336807,0.0301627,0.217304,0.573938,0.969995,0.36688,0.777453,0.415981,0.414885,0.445235,0.339986,0.987373,0.0541298,0.698103,0.602543,0.339025,0.273681,0.0420543,0.368282,0.0778427,0.238964,0.584189,0.958945,0.830398,0.831127,0.668601,0.0807872,0.378628,0.525119,0.0826977,0.853716,0.675684,0.570546,0.402396,0.998214,0.482861,0.632677,0.214327,0.88801,0.63468,0.741437,0.523654,0.469054,0.433952,0.534044,0.0725338,0.0202149,0.124837,0.408418,0.216132,0.807466,0.884505,0.911436,0.656195,0.561727,0.440814,0.741631,0.306693,0.723352,0.771425,0.111405,0.775769,0.607302,0.275932,0.381458,0.822907,0.721041,0.247958,0.714646,0.86535,0.673063,0.230507,0.911344,0.422148,0.648913,0.0180483,0.892866,0.170842,0.674876,0.715951,0.0764349,0.905655,0.330734,0.749447,0.983195,0.732447,0.372129,0.102325,0.0735533,0.390682,0.821892,0.141721,0.810384,0.197751,0.673786,0.202001,0.147684,0.670028,0.217744,0.539406,0.97294,0.769998,0.483024,0.106219,0.849289,0.138304,0.653919,0.661526,0.378128,0.954793,0.468626,0.911833,0.658715,0.639156,0.0710732,0.959761,0.668504,0.296814,0.825968,0.375623,0.290671,0.0813109,0.079217,0.629255,0.639144,0.507714,0.280203,0.263405,0.458819,0.838268,0.889189,0.935997,0.959914,0.491247,0.910878,0.863334,0.479191,0.410433,0.289944,0.976804,0.352092,0.212033,0.374856,0.834743,0.740864,0.458368,0.643259,0.30289,0.561524,0.0313575,0.905312,0.961512,0.135222,0.0835232,0.48444,0.64135,0.663481,0.511666,0.165968,0.35313,0.706574,0.556973,0.855513,0.853289,0.808773,0.643128,0.921127,0.394672,0.0909579,0.336124,0.698958,0.236132,0.135564,0.333463,0.933041,0.894473,0.65237,0.029336,0.468214,0.509324,0.336512,0.966685,0.0349267,0.826194,0.195333,0.603729,0.0906376,0.0412098,0.0306945,0.517171,0.0782462,0.595396,0.751059,0.145372,0.368329,0.124393,0.506151,0.366131,0.19401,0.557529,0.621492,0.998529,0.961788,0.896645,0.101932,0.688884,0.393717,0.53655,0.847122,0.683457,0.349971,0.95943,0.11313,0.537426,0.223145,0.167314,0.847786,0.801589,0.466295,0.432373,0.664666,0.590941,0.0164604,0.919761,0.26389,0.0500448,0.748386,0.195261,0.267271,0.983331,0.698107,0.691602,0.624282,0.247263,0.328171,0.499946,0.616558,0.305481,0.33773,0.663649,0.750098,0.415668,0.375759,0.52934,0.386564,0.69071,0.839494,0.510317,0.338612,0.460741,0.588313,0.930275,0.0887641,0.475766,0.366512,0.390305,0.818067,0.31992,0.646907,0.82679,0.671408,0.0585715,0.192125,0.247851,0.0949178,0.546895,0.739961,0.387836,0.184754,0.697969,0.0255608,0.863767,0.10523,0.710157,0.830816,0.12056,0.89091,0.200922,0.626425,0.344439,0.488531,0.983992,0.573057,0.773747,0.120297,0.551919,0.704469,0.0639124,0.614836,0.885551,0.407786,0.31676,0.465871,0.224946,0.842021,0.569623,0.879704,0.00630736,0.236418,0.683839,0.475866,0.103078,0.708986,0.259601,0.98314,0.359278,0.746173,0.19804,0.913869,0.835405,0.335593,0.573175,0.855572,0.705615,0.0419461,0.186023,0.904979,0.738858,0.539154,0.108352,0.538279,0.420496,0.725708,0.459524,0.421701,0.326173,0.594168,0.632626,0.154812,0.510974,0.671369,0.784844,0.903505,0.464318,0.0992358,0.767533,0.501774,0.198424,0.369585,0.59991,0.785572,0.925892,0.731318,0.715245,0.477409,0.681408,0.465682,0.912798,0.0769539,0.230027,0.761557,0.505197,0.276449,0.667123,0.0396373,0.768126,0.295525,0.602151,0.0990516,0.918876,0.168548,0.899349,0.596697,0.389476,0.123838,0.587434,0.278977,0.771342,0.679337,0.883265,0.478343,0.0373808,0.788137,0.119192,0.316303,0.880498,0.276,0.931475,0.774377,0.277983,0.602322,0.57238,0.316244,0.991183,0.596511,0.786602,0.520531,0.20604,0.361896,0.839785,0.238007,0.871909,0.791521,0.165647,0.885868,0.548488,0.523413,0.984013,0.420558,0.803212,0.0360797,0.648979,0.574286,0.396128,0.383921,0.101588,0.4231,0.0343734,0.410744,0.949642,0.0196808,0.0021928,0.435255,0.905814,0.842241,0.870018,0.758323,0.641497,0.166388,0.23977,0.0597393,0.68368,0.365415,0.162932,0.242484,0.536875,0.591706,0.727155,0.636726,0.564927,0.254713,0.69891,0.341869,0.780953,0.406906,0.399141,0.304867,0.132709,0.0251917,0.511243,0.547156,0.206775,0.833732,0.0317426,0.433043,0.181557,0.49046,0.250162,0.253044,0.686295,0.238377,0.0464832,0.342649,0.999434,0.45148,0.379914,0.489099,0.494291,0.416253,0.677595,0.862594,0.699814,0.52099,0.413413,0.143481,0.803354,0.586456,0.122834,0.61699,0.88337,0.640214,0.564108,0.0455816,0.516794,0.823345,0.412171,0.342778,0.237439,0.302874,0.806086,0.426022,0.352715,0.680965,0.296603,0.729538,0.426973,0.0807051,0.816518,0.612585,0.628224,0.134563,0.9318,0.11004,0.166973,0.583192,0.86319,0.915601,0.426963,0.23991,0.164828,0.0329675,0.586131,0.636759,0.878976,0.922017,0.280142,0.155476,0.323685,0.144153,0.108688,0.65153,0.898157,0.48168,0.960423,0.694724,0.857633,0.180223,0.673416,0.120863,0.943986,0.343412,0.712362,0.854874,0.413965,0.0148979,0.228417,0.135198,0.742101,0.568044,0.907541,0.665305,0.408689,0.371569,0.506383,0.803498,0.519868,0.347574,0.511932,0.661789,0.805091,0.503419,0.681377,0.103871,0.373788,0.839807,0.830189,0.553402,0.501231,0.256043,0.143568,0.50105,0.615279,0.0188639,0.640819,0.853102,0.609327,0.959131,0.949221,0.660081,0.480072,0.180178,0.447684,0.803988,0.654739,0.96913,0.399758,0.743944,0.510469,0.175542,0.249778,0.349303,0.88188,0.692241,0.757404,0.614457,0.310178,0.536603,0.535911,0.15183,0.217358,0.370968,0.950523,0.187066,0.541628,0.110764,0.347548,0.675592,0.907077,0.901909,0.3678,0.894308,0.485836,0.839713,0.839585,0.606161,0.581699,0.671954,0.928281,0.714616,0.00144488,0.594215,0.187752,0.422193,0.57471,0.362004,0.548786,0.467376,0.668796,0.320672,0.823602,0.854437,0.88215,0.259879,0.602899,0.182358,0.361863,0.250565,0.735883,0.0905991,0.37924,0.0875961,0.675187,0.839899,0.00179839,0.118097,0.820533,0.707407,0.958254,0.177321,0.976346,0.0062964,0.958585,0.751808,0.809955,0.819322,0.625028,0.80916,0.586306,0.371475,0.344345,0.943165,0.97313,0.802639,0.752891,0.529296,0.348163,0.770758,0.745322,0.931298,0.645463,0.270606,0.290299,0.860328,0.552573,0.23969,0.622807,0.781921,0.832721,0.579908,0.762803,0.368492,0.0314268,0.313132,0.486549,0.2943,0.0777009,0.128681,0.272721,0.0141075,0.789964,0.395244,0.768546,0.887199,0.0772717,0.534644,0.342098,0.381552,0.102948,0.851334,0.205494,0.934278,0.515267,0.181001,0.931252,0.336073,0.951006,0.637315,0.899933,0.0787916,0.188,0.441546,0.751936,0.890126,0.379134,0.280685,0.0656898,0.978646,0.116683,0.154935,0.487867,0.298808,0.380376,0.492181,0.959809,0.0314626,0.707982,0.0784833,0.720399,0.519923,0.000809252,0.170646,0.343975,0.679199,0.321889,0.976951,0.80014,0.433196,0.399348,0.0912994,0.383162,0.945708,0.0583807,0.628628,0.0150399,0.172858,0.803743,0.441712,0.928276,0.959493,0.547265,0.328983,0.0610259,0.748786,0.348506,0.810719,0.183418,0.618493,0.727219,0.827152,0.0400124,0.0279697,0.719118,0.276607,0.6087,0.705104,0.0669763,0.613728,0.168861,0.265938,0.876894,0.523108,0.756874,0.422347,0.126765,0.939175,0.873308,0.7502,0.608354,0.409576,0.444705,0.661066,0.528554,0.454005,0.0408208,0.10068,0.353183,|0.315087,0.477827,0.400174,0.20446,0.635169,0.522341,0.939523,0.555562,0.699162,0.642564,0.679351,0.135044,0.185059,0.325476,0.711347,0.774824,0.818854,0.565514,0.968337,0.876722,0.373941,0.442435,0.0867969,0.271188,0.796294,0.954162,0.242798,0.732013,0.159713,0.0345851,0.551844,0.267667,0.616512,0.424232,0.0749717,0.281788,0.922435,0.300577,0.451616,0.505522,0.0427483,0.523456,0.287244,0.800494,0.0932219,0.51838,0.583494,0.941725,0.850174,0.480108,0.780575,0.44995,0.426161,0.407737,0.0873029,0.483908,0.33607,0.0482787,0.713623,0.592804,0.865485,0.633621,0.0277745,0.503433,0.625967,0.908741,0.585618,0.267444,0.0113519,0.667861,0.752419,0.566949,0.560518,0.81439,0.475748,0.332734,0.848966,0.174566,0.31836,0.50868,0.0950353,0.290308,0.722276,0.319289,0.954856,0.202842,0.694984,0.887278,0.998643,0.94038,0.786254,0.255989,0.384415,0.984772,0.440592,0.198862,0.167267,0.22975,0.853282,0.836563,0.249487,0.462063,0.834266,0.518564,0.877521,0.365222,0.172015,0.683764,0.523412,0.940698,0.657574,0.37219,0.633244,0.00408447,0.270042,0.482438,0.119153,0.736026,0.831456,0.0363209,0.0295483,0.977815,0.170038,0.324448,0.88237,0.73207,0.474012,0.201099,0.750959,0.164251,0.321026,0.616936,0.391687,0.0709211,0.953968,0.907007,0.0636447,0.914741,0.683022,0.0734969,0.261065,0.189807,0.251632,0.839637,0.609221,0.346739,0.797843,0.711868,0.49894,0.786131,0.322311,0.530037,0.792161,0.151941,0.483633,0.614031,0.767768,0.264171,0.762654,0.951775,0.25174,0.0895704,0.205467,0.0839759,0.37527,0.838991,0.834771,0.39477,0.124294,0.450952,0.373058,0.21825,0.0964957,0.41063,0.543137,0.186761,0.675842,0.652578,0.0897432,0.341628,0.587143,0.915886,0.559116,0.0164061,0.903776,0.290983,0.695907,0.993067,0.188613,0.783196,0.770589,0.977903,0.86334,0.376982,0.976342,0.422722,0.603382,0.0279987,0.666679,0.262361,0.968256,0.916675,0.286441,0.128932,0.0163627,0.708236,0.485593,0.799955,0.488565,0.575893,0.387844,0.862832,0.366967,0.627629,0.88678,0.71213,0.691014,0.156331,0.385935,0.557174,0.481434,0.122792,0.0144045,0.88034,0.853049,0.0416088,0.951656,0.750407,0.332795,0.580845,0.15587,0.712723,0.402819,0.723547,0.762158,0.767008,0.62183,0.527509,0.420537,0.369263,0.474256,0.550413,0.56294,0.540565,0.638164,0.699794,0.790086,0.6184,0.869902,0.807194,0.54326,0.790824,0.0333228,0.613024,0.103525,0.267079,0.650124,0.609513,0.95112,0.145572,0.921041,0.516565,0.614011,0.85614,0.840263,0.532352,0.521015,0.63659,0.440813,0.792121,0.49176,0.476271,0.356085,0.366562,0.904256,0.358819,0.652856,0.651042,0.811914,0.0270985,0.913327,0.34908,0.166433,0.268239,0.177692,0.326362,0.373341,0.4726,0.0253625,0.924647,0.026211,0.0111029,0.0401713,0.52952,0.00878745,0.229713,0.0921378,0.864645,0.210151,0.713396,0.354335,0.902586,0.413554,0.16995,0.266223,0.651971,0.637563,0.577344,0.980273,0.956385,0.887779,0.64769,0.840953,0.622422,0.684809,0.895709,0.425603,0.936049,0.194486,0.541187,0.835391,0.0572053,0.655956,0.833284,0.151359,0.532364,0.918861,0.293684,0.0221963,0.294531,0.367162,0.629983,0.524123,0.715434,0.612867,0.0507678,0.228961,0.484675,0.822044,0.560944,0.319912,0.0420094,0.47463,0.969274,0.702233,0.174628,0.273475,0.992852,0.915429,0.330262,0.371103,0.177254,0.0939155,0.655269,0.684388,0.0214087,0.170904,0.662194,0.97582,0.944464,0.41451,0.841274,0.135325,0.0817552,0.63408,0.244838,0.203604,0.92817,0.175163,0.160558,0.101592,0.935621,0.674125,0.954092,0.329597,0.544537,0.495049,0.594761,0.702922,0.399857,0.989744,0.151608,0.799874,0.300819,0.759614,0.0988986,0.288362,0.722312,0.19673,0.769142,0.119295,0.945411,0.188726,0.365845,0.439189,0.346303,0.80726,0.895596,0.664343,0.539158,0.797819,0.365893,0.105349,0.161385,0.575984,0.51789,0.70045,0.594028,0.732771,0.525657,0.2089,0.854435,0.216289,0.221919,0.391611,0.227221,0.925924,0.233183,0.0441445,0.197082,0.115767,0.855102,0.0133825,0.727935,0.381993,0.894968,0.630631,0.314375,0.715342,0.899331,0.291479,0.657423,0.261342,0.0672258,0.589415,0.094405,0.336113,0.602352,0.0534987,0.287337,0.392443,0.236719,0.515446,0.663022,0.733872,0.738472,0.420059,0.401054,0.619393,0.63793,0.308499,0.536845,0.958465,0.216815,0.421428,0.812228,0.153316,0.750818,0.131681,0.562637,0.604386,0.680396,0.690783,0.0870188,0.765958,0.0401694,0.704425,0.55357,0.62413,0.169006,0.317263,0.628297,0.0119026,0.0371407,0.220332,0.789883,0.837296,0.411059,0.896472,0.0576885,0.0750576,0.170417,0.291572,0.0281729,0.0222314,0.814158,0.280538,0.711247,0.839416,0.891275,0.920235,0.166642,0.764736,0.176892,0.115041,0.905127,0.793369,0.825538,0.985135,0.209066,0.746993,0.462499,0.912781,0.135145,0.495158,0.266546,0.89161,0.8292,0.185099,0.809033,0.577264,0.716535,0.00584048,0.790317,0.235882,0.246935,0.41173,0.714508,0.550284,0.309373,0.260191,0.425323,0.623439,0.74853,0.514949,0.176826,0.297811,0.948939,0.729643,0.795506,0.301196,0.753743,0.661487,0.00325537,0.206144,0.57549,0.856211,0.084876,0.626866,0.772168,0.0435173,0.640148,0.942432,0.650922,0.942525,0.658322,0.514701,0.888635,0.924453,0.317095,0.580206,0.203399,0.673565,0.977862,0.0674806,0.246423,0.0104207,0.886803,0.539154,0.34205,0.837039,0.850942,0.831879,0.120252,0.178743,0.569968,0.670127,0.243655,0.0842115,0.226285,0.666919,0.680839,0.443362,0.0667245,0.206795,0.584252,0.0354023,0.157116,0.832228,0.28805,0.509672,0.62493,0.256997,0.121866,0.342732,0.609835,0.0648375,0.993696,0.53458,0.0697365,0.862787,0.808036,0.590145,0.0801815,0.612244,0.793288,0.17263,0.166084,0.183121,0.576988,0.161487,0.294702,0.361344,0.215479,0.0207544,0.714897,0.530302,0.460395,0.245071,0.648134,0.858498,0.169493,0.238934,0.135841,0.937716,0.473746,0.748602,0.929915,0.034215,0.448613,0.325479,0.228038,0.518928,0.514817,0.219419,0.474949,0.897399,0.609024,0.91291,0.53221,0.0874273,0.183125,0.227746,0.167413,0.0341236,0.627573,0.288408,0.475723,0.510182,0.000620782,0.755857,0.0102513,0.152928,0.67974,0.190583,0.282829,0.749349,0.416384,0.253,0.877494,0.35577,0.565209,0.668101,0.204235,0.845435,0.34407,0.367071,0.264414,0.764957,0.0170082,0.440916,0.109446,0.821152,0.61454,0.814886,0.666893,0.64798,0.429117,0.203983,0.249567,0.769431,0.537725,0.333366,0.982255,0.926286,0.885421,0.394968,0.15234,0.735656,0.822557,0.494702,0.925528,0.896899,0.759677,0.484813,0.150191,0.645282,0.0908482,0.659478,0.187699,0.185039,0.259289,0.316581,0.424272,0.86277,0.937284,0.235389,0.771625,0.444366,0.196903,0.433663,0.175361,0.412404,0.924288,0.150752,0.171538,0.590754,0.377882,0.0664528,0.623025,0.492398,0.205944,0.493133,0.0715551,0.424435,0.145931,0.585227,0.802301,0.0219105,0.462482,0.31881,0.263873,0.363376,0.582637,0.457706,0.119872,0.626222,0.768313,0.93748,0.53276,0.777641,0.418545,0.809339,0.846611,0.80332,0.253863,0.8748,0.417154,0.672686,0.0898404,0.476572,0.24348,0.974187,0.297693,0.476993,0.821577,0.801516,0.73421,0.391253,0.0517814,0.872028,0.397614,0.958818,0.823777,0.532271,0.586887,0.147727,0.115633,0.443958,0.154452,0.796039,0.300343,0.541642,0.498504,0.96535,0.889997,0.00258505,0.439712,0.357142,0.637571,0.367972,0.896975,0.228598,0.851748,0.314523,0.571027,0.917835,0.748595,0.854486,0.596362,0.848324,0.583976,0.815872,0.7781,0.703167,0.328597,0.789042,0.244511,0.659602,0.84224,0.702133,0.736928,0.783517,0.328519,0.628405,0.00861204,0.916824,0.109866,0.843911,0.712559,0.20691,0.464952,0.0641543,0.489879,0.943216,0.905084,0.623762,0.291475,0.0156041,0.906166,0.311433,0.807908,0.96056,0.79564,0.165817,0.314599,0.42795,0.837734,0.588287,0.915076,0.690752,0.23191,0.280757,0.863227,0.622339,0.884466,0.170693,0.939639,0.593674,0.802243,0.622053,0.256452,0.0530605,0.919886,0.50616,0.527066,0.903421,0.430589,0.462061,0.166005,0.0282813,0.459409,0.357909,0.62843,0.38441,0.770556,0.0250683,0.164835,0.530506,0.552237,0.25217,0.638998,0.166734,0.574823,0.0656252,0.235632,0.311503,0.617874,0.395551,0.277587,0.114104,0.40843,0.19978,0.472596,0.276538,0.484429,0.183007,0.738793,0.713159,0.453521,0.542985,0.188745,0.761037,0.295639,0.992922,0.607184,0.751894,0.884734,0.198119,0.231575,0.880013,0.771154,0.0523896,0.602027,0.460502,0.266314,0.416808,0.534028,0.317171,0.240915,0.325643,0.86292,0.894885,0.931757,0.588793,0.936306,0.114486,0.122942,0.438332,0.188089,0.737242,0.800279,0.115778,0.00948334,0.791002,0.500469,0.524486,0.515936,0.135097,0.838165,0.912076,0.356785,0.258383,0.781854,0.954227,0.918312,0.254116,0.473972,0.64065,0.805433,0.0378421,0.897458,0.0363368,0.269832,0.728775,0.766358,0.646901,0.343934,0.460247,0.917237,0.98095,0.512168,0.15325,0.898684,0.688648,0.780026,0.177978,0.443439,0.400702,0.925162,0.548788,0.0391857,0.861867,0.568094,0.983692,0.920367,0.340873,0.522427,0.48039,0.24916,0.147382,0.958953,0.931178,0.701544,0.928323,0.739558,0.291531,0.80068,0.665869,0.971058,0.127415,0.635022,0.936516,0.123969,0.459291,0.765234,0.962227,0.0104759,0.602615,0.0601944,0.177535,0.401054,0.586389,0.0412623,0.870554,0.566561,0.641384,0.192189,0.141593,0.861939,0.975417,0.616541,0.191716,0.625785,0.715453,0.787547,0.728205,0.975878,0.817396,0.89023,0.200329,0.99615,0.348721,0.161019,0.386764,0.844894,0.0684457,0.918236,0.831038,0.241192,|0.165412,0.437913,0.549908,0.780869,0.0296081,0.249035,0.25516,0.298958,0.0927928,0.486545,0.79749,0.52036,0.583614,0.446239,0.0228336,0.942965,0.170857,0.455039,0.71775,0.911963,0.456971,0.660525,0.032693,0.490175,0.368916,0.899651,0.0364129,0.313776,0.98888,0.676982,0.894335,0.964843,0.632658,0.0947502,0.192384,0.509694,0.367127,0.619879,0.230698,0.281462,0.640375,0.0438913,0.311125,0.241688,0.107577,0.557483,0.239725,0.663882,0.830661,0.929382,0.273825,0.150307,0.718421,0.362752,0.242802,0.796067,0.433313,0.498263,0.375393,0.925821,0.968371,0.876029,0.472237,0.907289,0.712231,0.138611,0.949116,0.998227,0.333991,0.909246,0.893894,0.0734404,0.626573,0.490189,0.0789167,0.415891,0.369749,0.181406,0.860121,0.601152,0.339812,0.187313,0.321484,0.361295,0.127428,0.914939,0.662775,0.254228,0.351252,0.654436,0.480458,0.547495,0.229585,0.993812,0.437396,0.694272,0.316457,0.949039,0.805252,0.910383,0.381648,0.537249,0.394332,0.762074,0.77128,0.00526708,0.839463,0.307079,0.356053,0.962028,0.277458,0.973017,0.921031,0.609759,0.79887,0.0139894,0.568019,0.386792,0.267862,0.286085,0.787012,0.00173938,0.616375,0.0688264,0.563257,0.488434,0.136425,0.00612408,0.529888,0.135763,0.341513,0.964364,0.20826,0.546096,0.503373,0.843977,0.953126,0.165845,0.932601,0.26422,0.175173,0.155645,0.27089,0.380611,0.581935,0.878647,0.795332,0.573621,0.838256,0.195331,0.213303,0.193231,0.115284,0.499181,0.913973,0.0361913,0.709768,0.416682,0.32925,0.426365,0.465641,0.735754,0.0308745,0.933215,0.210422,0.789331,0.273739,0.432602,0.2197,0.497638,0.373312,0.615166,0.877283,0.807089,0.490363,0.955019,0.917558,0.51814,0.295038,0.483762,0.322136,0.784483,0.889168,0.277132,0.82963,0.185709,0.387655,0.898791,0.851104,0.301068,0.419696,0.257357,0.225889,0.789295,0.138393,0.889538,0.261281,0.773715,0.554164,0.266444,0.271604,0.344038,0.799279,0.298364,0.201687,0.131256,0.455903,0.87295,0.317224,0.483421,0.62217,0.436282,0.699338,0.330319,0.693023,0.783436,0.0992622,0.878079,0.125174,0.754733,0.47359,0.0738827,0.851052,0.956051,0.760527,0.946148,0.525029,0.702156,0.975754,0.151672,0.0564803,0.265041,0.777938,0.0413327,0.0217571,0.0580385,0.0089131,0.0553049,0.0608333,0.417995,0.661975,0.700254,0.648453,0.168074,0.149989,0.281293,0.131284,0.57106,0.878723,0.294787,0.899773,0.068935,0.435142,0.545964,0.2253,0.836681,0.239541,0.679892,0.0936975,0.422098,0.997205,0.839258,0.888653,0.635697,0.812621,0.316093,0.688063,0.0997031,0.495247,0.668469,0.693902,0.566381,0.689055,0.886772,0.371781,0.385942,0.0137415,0.845965,0.366144,0.530565,0.825459,0.143446,0.355386,0.312513,0.96671,0.734763,0.072665,0.251383,0.969561,0.864819,0.157024,0.414684,0.998212,0.453153,0.77959,0.373449,0.407227,0.940061,0.987825,0.707943,0.844111,0.237975,0.0637138,0.254404,0.0338658,0.762473,0.957175,0.726838,0.782932,0.30412,0.204593,0.534906,0.974194,0.295449,0.33895,0.520444,0.907413,0.226125,0.0193439,0.505694,0.137564,0.328722,0.823293,0.508688,0.175436,0.0831896,0.945277,0.20651,0.55708,0.840506,0.648338,0.176738,0.804926,0.830367,0.694203,0.743219,0.427581,0.169458,0.653798,0.541241,0.287558,0.987123,0.492689,0.351785,0.342607,0.304038,0.319313,0.235005,0.181465,0.669819,0.585653,0.597687,0.236137,0.0240372,0.486951,0.274653,0.294993,0.560966,0.456656,0.788911,0.229577,0.135676,0.637471,0.937587,0.138266,0.123221,0.377617,0.848104,0.33886,0.57065,0.615217,0.59289,0.899436,0.67049,0.804399,0.164356,0.161596,0.687139,0.938156,0.223329,0.14225,0.658028,0.635269,0.593153,0.877469,0.815447,0.459819,0.0819126,0.583149,0.935024,0.298562,0.251231,0.0155252,0.121486,0.814801,0.323655,0.655273,0.800399,0.12548,0.582494,0.979892,0.632232,0.388573,0.961759,0.292413,0.918045,0.348334,0.38552,0.484724,0.251571,0.265054,0.463078,0.982651,0.141564,0.697725,0.846373,0.96252,0.0926775,0.394678,0.24255,0.657165,0.490285,0.663972,0.972699,0.394632,0.74769,0.315869,0.343894,0.419511,0.609602,0.575644,0.104928,0.639688,0.331753,0.293544,0.1037,0.641807,0.154383,0.438122,0.525807,0.481734,0.639953,0.134364,0.274852,0.801238,0.102181,0.485376,0.90548,0.84577,0.0901812,0.0982961,0.566331,0.485791,0.316761,0.935884,0.421355,0.15661,0.987195,0.722004,0.234791,0.372059,0.414886,0.387491,0.0572574,0.921878,0.263021,0.155332,0.669563,0.77035,0.389411,0.451046,0.136083,0.35586,0.403909,0.290924,0.695971,0.813811,0.355909,0.720617,0.78579,0.805093,0.450223,0.927975,0.102951,0.346456,0.570605,0.284211,0.242246,0.615067,0.966207,0.411408,0.797641,0.277408,0.667457,0.272747,0.221502,0.807134,0.137295,0.0548152,0.297383,0.217987,0.390572,0.597316,0.50669,0.806909,0.482694,0.051677,0.353333,0.482177,0.68197,0.934124,0.429129,0.372691,0.169117,0.951573,0.470607,0.427896,0.848653,0.433451,0.971181,0.958939,0.993804,0.704366,0.545813,0.552508,0.557565,0.904495,0.425447,0.784843,0.14453,0.310827,0.970667,0.726733,0.459641,0.413138,0.7068,0.151412,0.432338,0.392983,0.860503,0.43468,0.123349,0.257956,0.145811,0.330889,0.655676,0.996938,0.386182,0.503631,0.550749,0.226058,0.934145,0.13857,0.102096,0.419301,0.10246,0.726924,0.843034,0.967654,0.0844299,0.271808,0.319425,0.740447,0.085217,0.394491,0.104763,0.276863,0.486804,0.769587,0.0566892,0.660131,0.2966,0.37618,0.915785,0.818171,0.235093,0.0383384,0.0738413,0.937868,0.289183,0.656889,0.599446,0.873877,0.0841041,0.125727,0.639035,0.342555,0.254515,0.815118,0.934258,0.874604,0.563739,0.0603955,0.607005,0.646952,0.882706,0.18505,0.69406,0.998976,0.372865,0.154215,0.533817,0.879726,0.985525,0.995042,0.99265,0.411136,0.554346,0.153558,0.774203,0.973821,0.796636,0.359923,0.484316,0.907124,0.597977,0.414128,0.706777,0.760872,0.598902,0.514805,0.62626,0.900758,0.0938905,0.21052,0.820161,0.093457,0.491065,0.885818,0.974366,0.620861,0.738634,0.529631,0.897372,0.470105,0.501342,0.796645,0.781515,0.542618,0.901913,0.631008,0.648295,0.112763,0.389686,0.274475,0.686377,0.959804,0.366692,0.411036,0.54313,0.3038,0.657299,0.382095,0.317613,0.57943,0.803125,0.112221,0.490546,0.253592,0.0949554,0.376777,0.974049,0.0493277,0.116487,0.401405,0.478844,0.960896,0.0121823,0.935134,0.792123,0.455311,0.178913,0.783656,0.876474,0.53389,0.480934,0.0930861,0.383885,0.559707,0.788459,0.315288,0.285273,0.247545,0.853803,0.550527,0.892572,0.947847,0.131758,0.975383,0.0265528,0.17151,0.445614,0.881939,0.385047,0.109912,0.81729,0.377799,0.681182,0.571615,0.32415,0.673621,0.704915,0.281818,0.817894,0.270864,0.500898,0.697536,0.134663,0.843621,0.592458,0.484889,0.958431,0.0438113,0.26934,0.0188105,0.860176,0.028695,0.848944,0.613327,0.0151551,0.39491,0.37092,0.435074,0.628031,0.560275,0.804989,0.719885,0.324128,0.914883,0.541916,0.935793,0.0710927,0.812976,0.415122,0.566116,0.239295,0.0870463,0.584922,0.843207,0.307721,0.167432,0.705006,0.857591,0.0435066,0.158946,0.26822,0.580908,0.689365,0.981496,0.283401,0.347481,0.525724,0.767417,0.0308738,0.164241,0.740509,0.362107,0.00483054,0.195809,0.935442,0.122933,0.99092,0.679293,0.572727,0.20775,0.081467,0.65416,0.395817,0.353257,0.0471152,0.731879,0.278001,0.290767,0.481535,0.448596,0.429059,0.197897,0.263503,0.321319,0.849461,0.0924879,0.877795,0.313516,0.0135951,0.511999,0.56768,0.859536,0.146229,0.410907,0.273619,0.975023,0.888982,0.0127021,0.606541,0.287973,0.557464,0.549445,0.053908,0.463514,0.103418,0.602662,0.0787407,0.567503,0.595635,0.446991,0.974939,0.145399,0.86776,0.0435755,0.115389,0.660067,0.620249,0.868684,0.679225,0.195755,0.332691,0.128732,0.521326,0.723394,0.364568,0.666071,0.364377,0.0252921,0.355605,0.296638,0.808776,0.0841174,0.729478,0.344953,0.0712629,0.686646,0.0551608,0.209857,0.294372,0.224864,0.0684599,0.572885,0.195446,0.958317,0.68034,0.445458,0.370015,0.870904,0.804656,0.732034,0.406376,0.821876,0.58812,0.573902,0.231104,0.667306,0.455096,0.622271,0.36281,0.0369687,0.51884,0.4274,0.113642,0.72038,0.092424,0.504175,0.638028,0.906609,0.607045,0.119905,0.714142,0.221169,0.933778,0.637488,0.240935,0.388323,0.0818819,0.880904,0.0759813,0.116338,0.286359,0.524258,0.828767,0.484823,0.35213,0.107688,0.965976,0.853813,0.780815,0.717398,0.598519,0.489355,0.311392,0.122651,0.175875,0.607593,0.326817,0.266811,0.868549,0.263927,0.113994,0.595567,0.701487,0.835509,0.798534,0.415143,0.750902,0.10011,0.284703,0.890386,0.918267,0.732235,0.459969,0.314639,0.318907,0.0878627,0.758284,0.658802,0.130897,0.411907,0.56293,0.535191,0.77082,0.576362,0.973886,0.955967,0.686799,0.362774,0.607841,0.370061,0.970384,0.688421,0.828254,0.858929,0.756667,0.109009,0.215188,0.570796,0.852388,0.0578832,0.528859,0.062662,0.539932,0.395133,0.377912,0.855525,0.846712,0.365876,0.137235,0.959928,0.417472,0.596045,0.0793229,0.584745,0.0228826,0.867763,0.63202,0.136981,0.380227,0.539665,0.636421,0.232792,0.686887,0.800855,0.805864,0.346533,0.806777,0.200754,0.315902,0.234707,0.380571,0.135104,0.880202,0.773732,0.735631,0.39952,0.168491,0.127437,0.648072,0.654596,0.795938,0.389616,0.24143,0.897112,0.0747574,0.114075,0.502521,0.732828,0.406119,0.00198507,0.451769,0.909671,0.0928011,0.0664867,0.634725,0.303227,0.225409,0.810006,0.622875,0.0159473,0.181781,0.812156,0.90502,0.611082,0.385665,|0.338711,0.6393,0.689166,0.0702796,0.00449938,0.316917,0.907539,0.307649,0.422781,0.423973,0.444459,0.330337,0.298609,0.198686,0.55513,0.87231,0.95006,0.805907,0.101488,0.350752,0.365323,0.0734166,0.241261,0.721679,0.0428706,0.15551,0.402745,0.614186,0.770854,0.364472,0.810839,0.0410169,0.142175,0.719341,0.711511,0.454224,0.0742024,0.346879,0.485934,0.472217,0.693217,0.149708,0.727752,0.779508,0.28766,0.318936,0.617315,0.985627,0.256875,0.689198,0.953807,0.0992867,0.721439,0.866034,0.557008,0.53955,0.569084,0.000856102,0.724474,0.669932,0.865395,0.48841,0.0467079,0.628807,0.656963,0.010083,0.70894,0.307314,0.129099,0.749558,0.548689,0.864946,0.71652,0.158289,0.434178,0.610586,0.24009,0.789096,0.0810943,0.594449,0.726992,0.164235,0.569468,0.15775,0.686943,0.0580732,0.818515,0.178116,0.210733,0.710422,0.252717,0.328262,0.950174,0.789551,0.687684,0.173502,0.00512511,0.102847,0.157206,0.875814,0.880968,0.206254,0.439724,0.541288,0.757025,0.542701,0.430901,0.90003,0.258418,0.00553536,0.14884,0.415498,0.21632,0.172012,0.113021,0.677723,0.231276,0.398658,0.164318,0.593358,0.927252,0.21695,0.24092,0.337629,0.0590275,0.48074,0.825952,0.981828,0.557007,0.404929,0.591517,0.404163,0.460415,0.526625,0.500957,0.0397688,0.788091,0.978232,0.0283752,0.926614,0.952302,0.565567,0.276662,0.815465,0.652628,0.959312,0.839465,0.33202,0.600924,0.554583,0.948302,0.661401,0.0608728,0.362912,0.30927,0.450388,0.668318,0.185323,0.394957,0.418746,0.79367,0.182997,0.778955,0.374716,0.0159412,0.0695251,0.783325,0.612284,0.520429,0.785171,0.957715,0.948739,0.369986,0.31794,0.903386,0.488734,0.997374,0.349084,0.99391,0.637051,0.85177,0.430988,0.10614,0.625098,0.249655,0.655672,0.855002,0.766711,0.085528,0.965295,0.59817,0.177748,0.596083,0.847507,0.793532,0.105993,0.339531,0.897296,0.454219,0.716459,0.621053,0.0889434,0.797029,0.557395,0.841721,0.544866,0.340375,0.831874,0.445786,0.482781,0.0175526,0.694426,0.997418,0.318936,0.0969223,0.464435,0.226275,0.664858,0.549499,0.0977855,0.732877,0.517294,0.183617,0.313343,0.395658,0.641905,0.933555,0.297209,0.5024,0.507332,0.761374,0.644375,0.00405788,0.484469,0.258637,0.115454,0.349616,0.204159,0.798663,0.610992,0.840788,0.976102,0.221618,0.506009,0.352835,0.201317,0.232612,0.768755,0.972994,0.783981,0.438059,0.0545174,0.177777,0.764988,0.210418,0.507777,0.263098,0.278022,0.810623,0.327845,0.248384,0.970523,0.911913,0.726356,0.49646,0.520112,0.950055,0.957008,0.529739,0.280258,0.709362,0.746257,0.11494,0.370965,0.772368,0.584413,0.783723,0.0814704,0.139019,0.68884,0.113814,0.935548,0.235314,0.390193,0.385857,0.274167,0.710028,0.506401,0.760622,0.0425146,0.647163,0.897609,0.413057,0.308492,0.768421,0.787858,0.258571,0.407169,0.667943,0.433553,0.0812091,0.966763,0.159654,0.207022,0.126771,0.30782,0.391808,0.68124,0.319276,0.729562,0.309271,0.352847,0.839693,0.65532,0.897144,0.444929,0.344735,0.405386,0.852247,0.751329,0.976002,0.587448,0.569811,0.446421,0.172383,0.922147,0.682585,0.191138,0.591619,0.442714,0.201323,0.00734389,0.80473,0.272293,0.00257456,0.395301,0.806655,0.778941,0.622317,0.546134,0.424609,0.860975,0.140645,0.567442,0.618218,0.282506,0.830116,0.55756,0.486366,0.820325,0.623782,0.484632,0.513146,0.797808,0.834386,0.19972,0.219683,0.0550688,0.484071,0.377895,0.0261678,0.939698,0.875233,0.886416,0.22416,0.275131,0.0344296,0.940037,0.336467,0.428419,0.0665371,0.479418,0.489333,0.668265,0.567428,0.0660464,0.909044,0.292407,0.239545,0.851106,0.29377,0.0697445,0.0475507,0.0351622,0.423648,0.52119,0.383947,0.670221,0.912444,0.308187,0.53566,0.930988,0.923396,0.184596,0.450606,0.822716,0.187876,0.134741,0.0765052,0.313364,0.288162,0.189554,0.565395,0.424013,0.259013,0.916675,0.852878,0.388659,0.863471,0.35267,0.87162,0.640765,0.863876,0.745627,0.10237,0.496242,0.302144,0.568338,0.327495,0.591693,0.917738,0.425123,0.0351261,0.724267,0.690182,0.448185,0.0103412,0.640964,0.242966,0.915079,0.394767,0.101368,0.589692,0.961832,0.172719,0.302254,0.8867,0.306954,0.899867,0.0910639,0.380062,0.0672405,0.974853,0.64858,0.462636,0.451055,0.907632,0.833244,0.019621,0.240282,0.0144037,0.458939,0.483584,0.171468,0.813953,0.853399,0.147391,0.179909,0.61076,0.666677,0.968936,0.389323,0.0693088,0.69877,0.591474,0.0362635,0.975502,0.246882,0.351195,0.573623,0.684446,0.881125,0.620544,0.96824,0.273257,0.315654,0.834802,0.409419,0.234659,0.748635,0.836817,0.665884,0.86144,0.298435,0.905489,0.330286,0.802497,0.153766,0.732078,0.132615,0.143462,0.0309299,0.430404,0.342776,0.961296,0.99771,0.721035,0.307387,0.396553,0.409588,0.0079385,0.891774,0.705145,0.338214,0.472157,0.576978,0.399998,0.275019,0.0202981,0.180721,0.271154,0.937232,0.462099,0.368803,0.430648,0.645586,0.87729,0.905046,0.922265,0.889395,0.138541,0.885405,0.0178241,0.556511,0.125042,0.209366,0.516014,0.251615,0.0108401,0.311876,0.0289056,0.0796961,0.415602,0.220107,0.935393,0.672429,0.19759,0.431161,0.987288,0.777625,0.310854,0.584098,0.925599,0.940329,0.533804,0.252903,0.0489772,0.413427,0.0196438,0.571077,0.111106,0.361457,0.703009,0.176426,0.723028,0.755142,0.173519,0.122395,0.756466,0.277944,0.142138,0.773391,0.327021,0.595718,0.441808,0.164755,0.0355486,0.206046,0.956001,0.81817,0.820951,0.0811648,0.407794,0.0213206,0.127702,0.999028,0.558261,0.0334353,0.600825,0.369935,0.115131,0.773452,0.628002,0.523063,0.182424,0.86392,0.538087,0.052499,0.432172,0.646089,0.906005,0.529079,0.00821108,0.880282,0.626411,0.587577,0.758687,0.869312,0.0847032,0.188657,0.120083,0.653895,0.741065,0.478893,0.978576,0.0705919,0.138863,0.458929,0.0571838,0.478838,0.457225,0.0491072,0.603033,0.357545,0.101221,0.786145,0.090974,0.780811,0.8484,0.73431,0.389334,0.897929,0.223321,0.189979,0.410837,0.673569,0.358893,0.92211,0.593751,0.558281,0.290755,0.45488,0.287577,0.370921,0.321914,0.825808,0.815295,0.23048,0.188982,0.479182,0.374781,0.360042,0.830984,0.088286,0.176778,0.277103,0.716353,0.801281,0.659169,0.34556,0.405833,0.917914,0.956948,0.772184,0.889822,0.327535,0.700452,0.471718,0.180508,0.779518,0.213987,0.579543,0.994664,0.927932,0.893323,0.421276,0.559263,0.981072,0.0262053,0.66594,0.682443,0.401652,0.73395,0.485583,0.785544,0.593395,0.123538,0.266894,0.23938,0.981685,0.979065,0.235597,0.046297,0.721281,0.702322,0.861562,0.742723,0.0169693,0.967411,0.608202,0.850427,0.966161,0.118581,0.251296,0.119324,0.483411,0.745029,0.259401,0.444339,0.666177,0.763564,0.836293,0.0618626,0.0244568,0.928783,0.288377,0.453735,0.246358,0.278291,0.277468,0.648873,0.620213,0.603494,0.636132,0.403678,0.00622147,0.681628,0.323438,0.874,0.914975,0.0429029,0.89027,0.725532,0.852479,0.690226,0.0883127,0.44347,0.596201,0.752927,0.993182,0.135919,0.923771,0.0276285,0.380584,0.83979,0.557154,0.6928,0.978552,0.476199,0.0903953,0.637825,0.382624,0.171211,0.431554,0.233661,0.828762,0.660552,0.295613,0.283723,0.697405,0.775489,0.266778,0.722584,0.93835,0.294174,0.754078,0.848311,0.0108814,0.148415,0.25749,0.700599,0.403195,0.231535,0.87819,0.221121,0.521937,0.112876,0.449335,0.338024,0.0266097,0.958734,0.269315,0.520052,0.839454,0.0848075,0.246133,0.961434,0.813053,0.482075,0.196529,0.983876,0.488405,0.889798,0.0505,0.20931,0.398947,0.847345,0.488845,0.436275,0.736536,0.445075,0.132,0.295621,0.419341,0.397392,0.715017,0.45274,0.296783,0.69763,0.542517,0.125482,0.486759,0.052922,0.865013,0.475174,0.0313766,0.269719,0.290962,0.412252,0.0659049,0.139583,0.603034,0.609142,0.377369,0.524516,0.919791,0.573039,0.676033,0.778183,0.887093,0.54866,0.507951,0.899572,0.709946,0.126154,0.340201,0.526895,0.113892,0.387378,0.557606,0.119992,0.55153,0.841256,0.582086,0.123837,0.101232,0.674232,0.69707,0.806515,0.484684,0.168156,0.576106,0.226158,0.645418,0.694514,0.787582,0.322946,0.807424,0.219316,0.277196,0.914686,0.142242,0.615292,0.148549,0.545782,0.362745,0.868278,0.781832,0.766936,0.947788,0.354198,0.661256,0.891867,0.215929,0.391452,0.858121,0.190669,0.113916,0.672418,0.311328,0.00583458,0.132707,0.895247,0.2021,0.0610896,0.94415,0.918835,0.207293,0.888816,0.0640942,0.0651471,0.122424,0.203924,0.595417,0.0666175,0.289882,0.512913,0.411854,0.257045,0.844562,0.917968,0.926276,0.226245,0.956659,0.723383,0.345844,0.255645,0.125184,0.684359,0.919903,0.214261,0.32181,0.545183,0.0699973,0.0702576,0.992726,0.947087,0.249013,0.552409,0.50098,0.931252,0.366986,0.0567598,0.934242,0.153557,0.376417,0.213863,0.359382,0.984893,0.954314,0.132213,0.160653,0.635804,0.442831,0.764581,0.169704,0.119865,0.792313,0.250085,0.0765613,0.198683,0.66973,0.0811206,0.0176695,0.557032,0.614481,0.723922,0.715555,0.865581,0.690628,0.0313289,0.425622,0.0788755,0.981078,0.596123,0.126344,0.149837,0.822185,0.636402,0.796982,0.281509,0.629626,0.757882,0.131758,0.362574,0.812504,0.0923747,0.876529,0.480058,0.0169637,0.122795,0.623183,0.661722,0.771266,0.0573525,0.563452,0.400046,0.93582,0.314557,0.0105287,0.310718,0.573815,0.966412,0.639723,0.911439,0.0487974,0.349938,0.267416,0.746791,0.0915101,0.479015,0.135706,0.999121,0.829206,0.397251,0.170386,0.112541,0.530825,0.851549,0.518393,0.664391,0.948305,0.246476,0.178638,0.0780555,0.344738,0.342857,0.688035,0.600659,0.429595,|0.504104,0.411015,0.136844,0.00405324,0.200717,0.422462,0.958817,0.194965,0.0427607,0.88487,0.521391,0.211639,0.742441,0.340962,0.717634,0.563398,0.897855,0.276429,0.941599,0.865434,0.350848,0.133801,0.755066,0.160469,0.101101,0.989257,0.240774,0.253446,0.263647,0.873132,0.911169,0.495944,0.592764,0.711039,0.0362815,0.0988407,0.894498,0.313797,0.148117,0.63368,0.243741,0.527376,0.168823,0.205342,0.409589,0.127471,0.839431,0.476087,0.786549,0.00832355,0.448764,0.0490509,0.985072,0.996137,0.040484,0.513326,0.709857,0.935428,0.725576,0.138491,0.497386,0.96384,0.505462,0.893449,0.312993,0.308711,0.600934,0.169092,0.378831,0.204072,0.581439,0.112057,0.622044,0.410423,0.341073,0.180473,0.735383,0.939766,0.83294,0.501192,0.257614,0.127592,0.442865,0.742571,0.567847,0.748374,0.699555,0.369588,0.878812,0.591375,0.00901538,0.6546,0.474763,0.171118,0.71253,0.516451,0.61305,0.161099,0.726084,0.209356,0.432689,0.883423,0.517342,0.454994,0.761123,0.0200254,0.0804375,0.401624,0.208889,0.364735,0.773685,0.615122,0.198802,0.388128,0.0547341,0.217481,0.723506,0.47731,0.207856,0.710614,0.718545,0.373107,0.228213,0.148965,0.251685,0.498966,0.53039,0.908703,0.62042,0.644693,0.772449,0.658592,0.0422173,0.140202,0.500866,0.798525,0.806133,0.863318,0.435043,0.813279,0.520901,0.511464,0.103365,0.248922,0.790151,0.052937,0.580257,0.858375,0.901034,0.544868,0.910943,0.623213,0.244941,0.869296,0.297126,0.358854,0.704836,0.602236,0.520777,0.654925,0.360018,0.404943,0.163723,0.534609,0.650579,0.917749,0.492761,0.845187,0.496877,0.0624025,0.310194,0.336367,0.43495,0.0564641,0.70828,0.983853,0.833424,0.453625,0.300984,0.122868,0.222918,0.804978,0.260297,0.376216,0.604729,0.304001,0.406982,0.384298,0.368565,0.663739,0.322265,0.311268,0.658775,0.196103,0.680351,0.185327,0.726599,0.141692,0.946929,0.69427,0.114361,0.660083,0.357251,0.841093,0.277084,0.417719,0.601374,0.190195,0.923875,0.145808,0.293952,0.0169898,0.127521,0.182042,0.62556,0.446547,0.92952,0.574313,0.154688,0.642083,0.744512,0.632998,0.041267,0.850592,0.561275,0.103298,0.127214,0.858494,0.365455,0.0310367,0.92191,0.503665,0.237257,0.917153,0.880054,0.372436,0.978682,0.135737,0.540944,0.581987,0.871733,0.282462,0.174114,0.760203,0.607741,0.401757,0.624789,0.389695,0.32676,0.224306,0.890853,0.0261347,0.92723,0.721182,0.662364,0.54011,0.565307,0.727409,0.977327,0.562839,0.543296,0.779164,0.643942,0.196572,0.489147,0.461625,0.506914,0.966103,0.0252478,0.834041,0.667182,0.570448,0.843643,0.444579,0.678305,0.548826,0.364339,0.992938,0.381551,0.609681,0.234171,0.971335,0.705128,0.564782,0.131317,0.0280273,0.48658,0.706513,0.486457,0.792052,0.663247,0.200467,0.950247,0.675703,0.514291,0.926044,0.709353,0.903885,0.789631,0.0745649,0.70154,0.197747,0.678395,0.303701,0.530643,0.806398,0.119354,0.169406,0.22434,0.455577,0.170977,0.256173,0.606276,0.370898,0.939062,0.218564,0.618542,0.912197,0.398013,0.235478,0.525443,0.781694,0.0476513,0.301106,0.681478,0.977299,0.944108,0.0572979,0.0747666,0.870775,0.218548,0.117968,0.839935,0.279905,0.13494,0.878021,0.3544,0.998823,0.285833,0.306447,0.196221,0.0261875,0.134627,0.408324,0.845592,0.69658,0.549956,0.181203,0.135921,0.499367,0.885006,0.547221,0.637751,0.724482,0.473454,0.259473,0.496537,0.613806,0.00307232,0.582475,0.784846,0.405821,0.795052,0.696556,0.134296,0.250211,0.141487,0.983946,0.437044,0.690228,0.60138,0.833592,0.75885,0.898515,0.692416,0.219678,0.818152,0.76257,0.348785,0.495846,0.27374,0.0993956,0.989086,0.628825,0.435457,0.0821189,0.742436,0.641739,0.91541,0.628073,0.182231,0.606252,0.246084,0.0641093,0.4774,0.592179,0.466313,0.527655,0.339378,0.770335,0.607163,0.641635,0.708998,0.822269,0.0721081,0.426913,0.145805,0.781868,0.551381,0.659494,0.185492,0.688372,0.353919,0.588494,0.603209,0.318698,0.535963,0.495509,0.609144,0.0540512,0.466276,0.441887,0.355905,0.182007,0.765912,0.35438,0.914538,0.217303,0.193157,0.299212,0.560838,0.465354,0.917895,0.752185,0.136387,0.907313,0.671586,0.132112,0.478528,0.336006,0.0877368,0.156938,0.316075,0.0866503,0.940546,0.379062,0.443929,0.375981,0.966779,0.252499,0.53095,0.00653058,0.733747,0.31383,0.366973,0.90644,0.961352,0.26204,0.734962,0.499171,0.0360942,0.921797,0.0370362,0.848716,0.389091,0.241169,0.440108,0.73403,0.98911,0.942566,0.270901,0.350238,0.0826229,0.594581,0.0236909,0.272951,0.655203,0.846233,0.647361,0.26388,0.00409245,0.622445,0.473528,0.97454,0.0654532,0.696269,0.570315,0.475987,0.770348,0.813556,0.637111,0.23794,0.0612037,0.798266,0.614483,0.782633,0.114752,0.163361,0.467113,0.709638,0.952868,0.526696,0.947985,0.667526,0.943319,0.845221,0.840321,0.12224,0.211136,0.481899,0.643679,0.449665,0.990221,0.177161,0.569414,0.725569,0.845801,0.0360892,0.217098,0.59709,0.95541,0.02808,0.718898,0.386622,0.0165009,0.640847,0.226395,0.0666243,0.875268,0.873423,0.92545,0.322254,0.0441312,0.558754,0.370973,0.606233,0.776484,0.665205,0.359455,0.554207,0.465432,0.350806,0.767608,0.960114,0.88794,0.178696,0.520022,0.339561,0.86691,0.728772,0.0187654,0.195904,0.559344,0.51501,0.780471,0.343791,0.617152,0.963364,0.106167,0.552632,0.163168,0.0985967,0.612682,0.3017,0.985395,0.886555,0.897207,0.28279,0.969199,0.743212,0.196255,0.741042,0.128124,0.95194,0.995022,0.956761,0.0251188,0.60721,0.193381,0.0415733,0.441569,0.135443,0.170046,0.662614,0.463155,0.560048,0.119174,0.263097,0.357637,0.2642,0.163574,0.144072,0.767672,0.590499,0.936642,0.572901,0.39095,0.965336,0.835465,0.359598,0.665657,0.963064,0.596554,0.51411,0.80468,0.127557,0.992647,0.375603,0.722587,0.857002,0.853833,0.391232,0.282533,0.815474,0.851744,0.0123186,0.832603,0.343514,0.64081,0.503132,0.942356,0.855293,0.721175,0.19176,0.744472,0.137118,0.563107,0.994451,0.938454,0.63174,0.878599,0.987689,0.902435,0.733963,0.0833865,0.73864,0.571489,0.658582,0.652432,0.0822901,0.26712,0.519315,0.994919,0.278611,0.215254,0.689671,0.767812,0.524906,0.650882,0.678865,0.410822,0.293709,0.615606,0.59162,0.161219,0.381246,0.049911,0.965307,0.70203,0.0636416,0.0786808,0.423385,0.172268,0.0115929,0.765488,0.226529,0.864888,0.170049,0.367721,0.831408,0.57876,0.0525028,0.365894,0.524815,0.249668,0.420268,0.989695,0.752545,0.638819,0.981198,0.735409,0.927575,0.764271,0.428378,0.800334,0.0871727,0.64281,0.828785,0.294112,0.437376,0.856303,0.375969,0.414278,0.554604,0.935901,0.0428867,0.549506,0.337244,0.0270498,0.624692,0.640841,0.577455,0.269595,0.975224,0.418846,0.0646092,0.418591,0.634777,0.288511,0.322808,0.773855,0.400661,0.208851,0.0845152,0.442459,0.29733,0.405602,0.724324,0.139468,0.68378,0.415594,0.564393,0.149596,0.347765,0.0143374,0.623454,0.784277,0.306306,0.745502,0.453702,0.772327,0.785231,0.0922282,0.988621,0.14623,0.260137,0.653145,0.143167,0.0433165,0.0666064,0.231643,0.494732,0.640099,0.36124,0.769863,0.713638,0.410276,0.529149,0.226332,0.352631,0.486609,0.0482656,0.930144,0.615491,0.654281,0.44464,0.0567365,0.998478,0.95787,0.60895,0.244651,0.97381,0.586712,0.600016,0.428959,0.654036,0.881815,0.202416,0.969247,0.96228,0.499254,0.22105,0.375777,0.730272,0.824359,0.668891,0.698267,0.156844,0.5334,0.304575,0.753462,0.934496,0.89705,0.201824,0.921734,0.43553,0.366995,0.543912,0.429906,0.802296,0.508612,0.309445,0.726564,0.00747114,0.629621,0.310961,0.0205867,0.22971,0.340317,0.954365,0.567895,0.759375,0.999916,0.032052,0.408045,0.894347,0.0692877,0.795978,0.29622,0.700617,0.18003,0.964678,0.187541,0.978368,0.272308,0.530595,0.855857,0.391492,0.432361,0.462499,0.758543,0.781628,0.380551,0.113984,0.20247,0.840947,0.0301086,0.123547,0.299314,0.970233,0.171674,0.416466,0.808704,0.40149,0.972769,0.871413,0.297606,0.641147,0.499973,0.755509,0.0534101,0.0771883,0.916066,0.395009,0.580365,0.824306,0.617767,0.912815,0.273542,0.426967,0.0711024,0.130033,0.753061,0.748087,0.747401,0.280067,0.386415,0.441371,0.158275,0.987814,0.91175,0.296385,0.486497,0.488444,0.0603946,0.318411,0.175681,0.726677,0.850733,0.999781,0.578729,0.510578,0.0777591,0.936296,0.176927,0.33165,0.72788,0.0828761,0.82646,0.827648,0.0123323,0.706021,0.102356,0.728128,0.999338,0.867849,0.533883,0.750393,0.0248788,0.989937,0.103467,0.623785,0.468097,0.191295,0.146151,0.774025,0.721241,0.712328,0.169989,0.459331,0.783793,0.572885,0.792975,0.322046,0.445993,0.725087,0.0279674,0.491133,0.466053,0.51159,0.941278,0.125895,0.959928,0.969283,0.669713,0.238676,0.610369,0.510722,0.275549,0.386465,0.160386,0.427811,0.747148,0.543812,0.595568,0.731034,0.330345,0.62773,0.0540661,0.437918,0.0653222,0.779732,0.690285,0.602803,0.651832,0.273534,0.404014,0.530296,0.813878,0.197011,0.0945899,0.220722,0.384819,0.650296,0.693841,0.934973,0.579021,0.753445,0.193009,0.481624,0.8923,0.0904931,0.0791454,0.152441,0.734026,0.0916389,0.51799,0.7264,0.534354,0.0380554,0.665899,0.913334,0.480962,0.380958,0.52313,0.181343,0.83649,0.61661,0.302694,0.0386084,0.152267,0.244998,0.533013,0.0510662,0.956389,0.586015,0.80491,0.485562,0.393427,0.611719,0.417535,0.638854,0.049378,0.960501,0.0302762,0.729595,0.511145,0.151313,0.49697,0.000781953,0.0151016,0.987475,0.308116,0.119325,0.465423,0.142883,0.373813,0.571184,0.941577,0.302149,|0.37984,0.518877,0.905725,0.202153,0.403405,0.554179,0.947804,0.611359,0.45508,0.609881,0.710319,0.701283,0.0196584,0.485229,0.0484593,0.879623,0.281169,0.0028438,0.601035,0.541381,0.999086,0.725153,0.0942879,0.900414,0.0483322,0.226907,0.911656,0.0722961,0.183179,0.994408,0.391421,0.143281,0.250665,0.478931,0.479628,0.906133,0.805018,0.855087,0.423112,0.677208,0.379249,0.739317,0.156089,0.584047,0.311459,0.474614,0.459569,0.75763,0.191281,0.0793311,0.265316,0.334675,0.144239,0.185419,0.563893,0.641088,0.132322,0.500158,0.74472,0.619633,0.156421,0.0755904,0.733872,0.541586,0.698712,0.27485,0.348414,0.977404,0.998791,0.0517592,0.499913,0.300385,0.855707,0.907829,0.340195,0.854029,0.150477,0.498205,0.896898,0.514024,0.851163,0.48227,0.155518,0.592265,0.714577,0.321225,0.124774,0.913905,0.196767,0.210034,0.067301,0.392443,0.524199,0.274786,0.765252,0.723141,0.32312,0.20451,0.905355,0.389193,0.218289,0.460944,0.833787,0.905124,0.816365,0.377288,0.936095,0.618296,0.508428,0.668926,0.593272,0.357772,0.758484,0.195183,0.219588,0.117026,0.887824,0.354428,0.134898,0.122741,0.0355134,0.684687,0.565103,0.00341094,0.508119,0.0928251,0.98456,0.0964541,0.818529,0.85314,0.767853,0.250223,0.662975,0.51548,0.567981,0.809467,0.70795,0.949833,0.547455,0.671286,0.880272,0.41144,0.22274,0.540706,0.803026,0.0243771,0.475361,0.1338,0.375521,0.771616,0.155181,0.376252,0.242814,0.610857,0.583325,0.986193,0.799998,0.270861,0.832743,0.730673,0.135485,0.119351,0.73371,0.0756395,0.508329,0.438256,0.84965,0.86736,0.699961,0.911886,0.623076,0.477538,0.300469,0.192065,0.509266,0.017505,0.854759,0.268183,0.436512,0.924159,0.508023,0.00656182,0.385873,0.053184,0.698917,0.391979,0.155185,0.215062,0.222991,0.206166,0.600736,0.102234,0.173566,0.805988,0.117599,0.72304,0.728484,0.290392,0.76569,0.977619,0.422331,0.195299,0.833479,0.866448,0.551672,0.294828,0.583107,0.533653,0.0230391,0.714453,0.96853,0.439363,0.836763,0.0848141,0.833371,0.477536,0.226037,0.186091,0.742095,0.823407,0.34891,0.181073,0.589419,0.0182153,0.128838,0.154947,0.313777,0.512605,0.510451,0.164395,0.647402,0.71405,0.0417262,0.288006,0.212842,0.50497,0.143184,0.310853,0.185017,0.459715,0.248227,0.805095,0.335561,0.91031,0.792863,0.774564,0.0024398,0.158808,0.299612,0.462193,0.0360022,0.305214,0.334958,0.373958,0.238863,0.96955,0.534302,0.755945,0.681238,0.621071,0.881757,0.733701,0.574721,0.983463,0.201992,0.215942,0.995748,0.0166362,0.760069,0.908633,0.774721,0.102684,0.20108,0.331106,0.886807,0.664906,0.641388,0.764197,0.158975,0.313954,0.212632,0.143172,0.800161,0.570413,0.225696,0.732848,0.854028,0.379775,0.460918,0.00500393,0.421595,0.108631,0.612871,0.692613,0.625882,0.187329,0.363526,0.0341585,0.604534,0.296849,0.382692,0.66652,0.990872,0.974437,0.67627,0.805317,0.43294,0.424839,0.921378,0.294249,0.373067,0.91523,0.115517,0.224357,0.528502,0.562786,0.501463,0.415538,0.0473569,0.940841,0.464506,0.040396,0.522818,0.740442,0.429623,0.722155,0.457693,0.255343,0.0686838,0.582231,0.242503,0.419544,0.052974,0.641595,0.766275,0.49122,0.765526,0.199029,0.166954,0.0874463,0.97441,0.254514,0.395294,0.61464,0.728361,0.715104,0.171612,0.427826,0.825615,0.535394,0.324329,0.485163,0.597079,0.742538,0.990143,0.157998,0.605158,0.763212,0.614228,0.586564,0.757323,0.333807,0.744641,0.589063,0.464599,0.300935,0.614305,0.466036,0.345934,0.865905,0.572492,0.487385,0.767669,0.795913,0.594363,0.52744,0.248584,0.573855,0.0655002,0.70482,0.248926,0.90705,0.734598,0.33458,0.295291,0.386696,0.0585944,0.305732,0.134144,0.925217,0.514967,0.135165,0.674163,0.295536,0.227995,0.861797,0.132231,0.922813,0.398852,0.525233,0.559899,0.314356,0.946144,0.825733,0.106068,0.807057,0.581479,0.713215,0.780209,0.34773,0.229894,0.253381,0.17728,0.248097,0.645794,0.358236,0.336739,0.655058,0.0762523,0.783101,0.934467,0.142623,0.316604,0.530502,0.974115,0.536905,0.731815,0.534444,0.657513,0.448546,0.394464,0.0273758,0.719976,0.338035,0.10982,0.400003,0.462556,0.835813,0.662251,0.70052,0.961133,0.77307,0.121783,0.0914556,0.689074,0.253857,0.39401,0.373661,0.65778,0.241988,0.00154835,0.329888,0.142383,0.846159,0.853287,0.118399,0.0947828,0.802302,0.886199,0.333531,0.246852,0.383045,0.249284,0.852327,0.814447,0.339548,0.778354,0.274275,0.354786,0.850599,0.00387979,0.171993,0.405164,0.14604,0.274194,0.413262,0.234072,0.338965,0.866193,0.133089,0.764162,0.290527,0.845053,0.389174,0.296782,0.747326,0.10816,0.630571,0.0680664,0.204695,0.600129,0.880195,0.920895,0.354349,0.299229,0.65673,0.376387,0.909157,0.509349,0.807985,0.743637,0.294503,0.527373,0.0210018,0.385383,0.239483,0.89888,0.39706,0.737009,0.613419,0.223933,0.351857,0.311458,0.372452,0.387861,0.236525,0.0541275,0.652605,0.58428,0.172544,0.872189,0.527448,0.210173,0.167343,0.0459575,0.854884,0.545527,0.477794,0.0191492,0.109674,0.409859,0.621011,0.932446,0.444081,0.362486,0.651284,0.182654,0.296046,0.502829,0.338175,0.188144,0.101396,0.959682,0.108962,0.492747,0.708423,0.857603,0.408532,0.935595,0.44862,0.621263,0.815095,0.890263,0.649347,0.957183,0.912421,0.551763,0.411552,0.405351,0.875774,0.0627532,0.412345,0.562837,0.984033,0.207169,0.98194,0.604365,0.134512,0.420928,0.0858017,0.31357,0.0279556,0.626646,0.646689,0.585932,0.69279,0.905595,0.187764,0.387191,0.301331,0.0596189,0.389024,0.0899432,0.974984,0.00278449,0.841116,0.169666,0.40733,0.740767,0.909747,0.784161,0.384629,0.044626,0.426046,0.83009,0.76829,0.214324,0.931447,0.9888,0.894648,0.86444,0.942385,0.0445668,0.522533,0.394405,0.128259,0.998864,0.115956,0.254635,0.023198,0.692116,0.21288,0.0622147,0.0733148,0.504584,0.0284712,0.538487,0.589043,0.651491,0.935041,0.685718,0.663563,0.272294,0.983722,0.766643,0.515091,0.715753,0.35736,0.659909,0.274567,0.0756611,0.763083,0.751616,0.558774,0.482267,0.516963,0.676285,0.743104,0.395047,0.505769,0.361092,0.0277364,0.0324544,0.580495,0.373974,0.727739,0.413305,0.180682,0.455624,0.0720799,0.650882,0.155212,0.930853,0.451793,0.894558,0.648635,0.935781,0.930449,0.82672,0.420523,0.970422,0.245439,0.0606464,0.934305,0.954937,0.848448,0.692093,0.180506,0.410784,0.69773,0.744014,0.758631,0.283546,0.137239,0.104578,0.507406,0.83524,0.798082,0.0488067,0.899229,0.810587,0.993938,0.898774,0.860938,0.815839,0.422278,0.370561,0.567896,0.769148,0.547106,0.0894352,0.540215,0.610872,0.920538,0.826721,0.719742,0.213243,0.778206,0.76364,0.165709,0.199259,0.440439,0.100172,0.828675,0.0557247,0.677777,0.378908,0.239272,0.0419245,0.933331,0.381556,0.754425,0.877568,0.703649,0.5107,0.735136,0.454789,0.885183,0.310454,0.298484,0.238777,0.135143,0.378272,0.219209,0.6536,0.49062,0.701242,0.820693,0.776372,0.450903,0.361079,0.875836,0.820344,0.555619,0.383221,0.631765,0.395135,0.339192,0.317975,0.836036,0.723037,0.250398,0.893124,0.864764,0.852748,0.544968,0.589319,0.566582,0.578047,0.308168,0.54131,0.547097,0.0469453,0.432434,0.20957,0.560112,0.116145,0.615594,0.654807,0.564684,0.65408,0.443036,0.168229,0.980395,0.237419,0.749987,0.163713,0.225083,0.887911,0.328395,0.00836658,0.398285,0.189652,0.672336,0.0402931,0.152883,0.704027,0.712433,0.77934,0.851285,0.622158,0.730286,0.55906,0.335931,0.238197,0.186954,0.254303,0.459047,0.236128,0.926859,0.68007,0.0251412,0.198525,0.918222,0.125344,0.202247,0.235508,0.682638,0.800315,0.937654,0.956842,0.023378,0.823641,0.16734,0.426091,0.0292861,0.408685,0.839253,0.448509,0.270573,0.0885186,0.96589,0.0127921,0.320343,0.800906,0.89486,0.0802462,0.791026,0.57152,0.998468,0.351356,0.0619318,0.257167,0.975363,0.682138,0.464354,0.349501,0.00112927,0.849886,0.995374,0.197159,0.329164,0.149447,0.543885,0.466975,0.450505,0.560324,0.322652,0.691646,0.276181,0.783364,0.0531121,0.213784,0.605712,0.441366,0.557193,0.138628,0.689073,0.0406811,0.108225,0.358756,0.763427,0.404911,0.998677,0.663471,0.42429,0.0656416,0.229034,0.628308,0.78772,0.655425,0.941288,0.397868,0.430087,0.720232,0.871196,0.619228,0.796921,0.551146,0.829441,0.0917124,0.653322,0.876111,0.684771,0.507892,0.957909,0.453444,0.318659,0.322927,0.907102,0.624937,0.477196,0.493784,0.124396,0.64452,0.525794,0.419997,0.846443,0.444698,0.0380912,0.719464,0.841638,0.72095,0.591259,0.151027,0.0073579,0.581668,0.706105,0.67846,0.366118,0.923362,0.813435,0.692112,0.877945,0.830354,0.68684,0.040838,0.415252,0.96542,0.554335,0.149452,0.229543,0.711854,0.270208,0.399378,0.932634,0.953066,0.881534,0.324814,0.857804,0.450737,0.976698,0.731734,0.888626,0.209282,0.258657,0.51737,0.710236,0.0735785,0.505215,0.481261,0.286901,0.584826,0.792404,0.732921,0.522982,0.397314,0.322759,0.802421,0.490234,0.771204,0.780121,0.939983,0.584695,0.675916,0.599438,0.234833,0.0189059,0.640901,0.741571,0.607662,0.90814,0.598106,0.540597,0.579866,0.860525,0.518173,0.77066,0.558924,0.893584,0.906214,0.93978,0.549134,0.700734,0.352107,0.85998,0.841971,0.788482,0.550344,0.648432,0.232213,0.563926,0.0788722,0.884578,0.375061,0.77122,0.927647,0.214918,0.347885,0.779007,0.823705,0.426366,0.721515,0.560775,0.610035,0.76997,0.144402,0.301319,0.511125,0.226661,0.641979,0.849881,0.268229,0.911102,0.684339,0.798618,0.991854,0.627434,0.884298,0.929934,|0.599722,0.246671,0.374274,0.233752,0.615607,0.0108113,0.55868,0.00262278,0.418189,0.780899,0.693016,0.975719,0.964433,0.579711,0.40824,0.507324,0.285149,0.723812,0.212616,0.747505,0.565573,0.988842,0.116146,0.551054,0.919727,0.510278,0.421912,0.0313214,0.228424,0.387237,0.187165,0.551399,0.0925509,0.903471,0.174716,0.749679,0.0596941,0.208828,0.594161,0.582945,0.697033,0.519134,0.978892,0.103298,0.966233,0.951601,0.964047,0.940524,0.243322,0.558272,0.285534,0.571544,0.835717,0.534241,0.376788,0.266628,0.291449,0.605446,0.379712,0.574968,0.940432,0.373788,0.976581,0.759671,0.899258,0.38694,0.256332,0.61401,0.917886,0.611175,0.118258,0.633201,0.486515,0.425709,0.277851,0.985275,0.472557,0.879548,0.0762696,0.234335,0.729491,0.468801,0.370052,0.95783,0.994138,0.146515,0.0852256,0.837932,0.501221,0.835908,0.145494,0.426608,0.667482,0.178044,0.771509,0.71731,0.419502,0.00916213,0.2352,0.0858835,0.419143,0.0608805,0.456988,0.513957,0.931781,0.7374,0.304525,0.49693,0.224519,0.381052,0.517011,0.117761,0.526964,0.7004,0.103802,0.713828,0.2293,0.300553,0.296205,0.177364,0.515917,0.220772,0.902814,0.393326,0.286824,0.529449,0.287788,0.176477,0.0162498,0.670936,0.202375,0.353002,0.74574,0.541982,0.821084,0.771141,0.848145,0.212216,0.774696,0.910194,0.27457,0.213964,0.98825,0.0277347,0.179043,0.852403,0.785987,0.050983,0.795689,0.731546,0.956231,0.475994,0.678417,0.355687,0.316156,0.478877,0.397026,0.562754,0.0664155,0.665663,0.843251,0.124924,0.965017,0.49601,0.984962,0.956949,0.861339,0.635859,0.745811,0.483112,0.635773,0.129617,0.498889,0.923638,0.219816,0.363611,0.237736,0.0264589,0.769689,0.953023,0.168757,0.0517331,0.491104,0.102052,0.506732,0.358903,0.17421,0.491682,0.858324,0.421687,0.435423,0.731516,0.142918,0.460823,0.625164,0.792945,0.796888,0.219866,0.97015,0.122848,0.173432,0.617774,0.535527,0.427368,0.32878,0.780335,0.171746,0.840385,0.341942,0.520466,0.829962,0.692349,0.490201,0.768068,0.0695054,0.707467,0.249324,0.564055,0.397361,0.366494,0.251197,0.57795,0.784862,0.635647,0.467728,0.594899,0.854263,0.980266,0.803163,0.607351,0.764034,0.149358,0.342101,0.576163,0.777481,0.936612,0.563042,0.510111,0.639464,0.0592242,0.265757,0.295387,0.795277,0.464047,0.0178149,0.0959752,0.0596539,0.458163,0.439425,0.0382707,0.504708,0.0824457,0.984681,0.544665,0.55269,0.171379,0.34503,0.842475,0.70268,0.659412,0.533206,0.48841,0.8289,0.8166,0.171583,0.198343,0.398176,0.351125,0.831236,0.684467,0.226904,0.651569,0.0587882,0.63549,0.0290586,0.498395,0.516134,0.243594,0.844683,0.278971,0.190586,0.474269,0.377206,0.443861,0.761491,0.804706,0.382361,0.103191,0.557145,0.422329,0.675214,0.0606655,0.210238,0.466268,0.0491796,0.141294,0.490023,0.227229,0.533121,0.045733,0.149512,0.233101,0.44972,0.985987,0.199555,0.87955,0.232206,0.947023,0.102031,0.872278,0.584974,0.951835,0.177208,0.527981,0.665653,0.988131,0.923531,0.123905,0.757012,0.516366,0.358595,0.943621,0.67885,0.21134,0.0402877,0.173271,0.721858,0.897071,0.129753,0.575283,0.209372,0.764746,0.665247,0.417844,0.594261,0.511994,0.0765311,0.929762,0.710094,0.149356,0.0358977,0.614813,0.463103,0.438682,0.0310749,0.685858,0.776264,0.849196,0.917084,0.432971,0.801549,0.0151385,0.688699,0.355405,0.766048,0.626349,0.142613,0.143741,0.738639,0.414848,0.342453,0.00831383,0.440782,0.0215397,0.110589,0.621474,0.203241,0.974099,0.212581,0.715054,0.0587959,0.944974,0.707889,0.407342,0.283329,0.525573,0.149856,0.0843283,0.625262,0.976855,0.499288,0.730275,0.518002,0.144112,0.807687,0.21922,0.364704,0.36343,0.655105,0.879757,0.25084,0.0295846,0.904683,0.995688,0.690103,0.531977,0.01135,0.290439,0.189838,0.402974,0.502494,0.770064,0.3367,0.409196,0.633324,0.881224,0.442747,0.00803214,0.21751,0.30414,0.6375,0.461687,0.586084,0.939358,0.0213251,0.334044,0.690389,0.109015,0.471015,0.758917,0.77515,0.0411943,0.0254495,0.631716,0.233858,0.842104,0.157563,0.346961,0.280339,0.136154,0.358229,0.665582,0.177033,0.325178,0.201631,0.507699,0.853792,0.304365,0.783875,0.911782,0.0702688,0.481718,0.33637,0.285043,0.36761,0.850312,0.809488,0.152132,0.871689,0.280775,0.573418,0.911948,0.829874,0.47601,0.479116,0.147258,0.386485,0.144918,0.14117,0.995622,0.905492,0.520709,0.100752,0.963217,0.619792,0.127346,0.792858,0.352047,0.144791,0.0582774,0.0969103,0.760621,0.356501,0.522153,0.202703,0.510758,0.774943,0.906778,0.778711,0.294746,0.795489,0.382389,0.106534,0.797082,0.867086,0.132405,0.0214772,0.270802,0.563807,0.18691,0.23641,0.796409,0.654423,0.691096,0.429299,0.133857,0.58074,0.47848,0.733642,0.895992,0.936814,0.213038,0.722155,0.534453,0.941471,0.799907,0.48674,0.441889,0.736144,0.0320262,0.727803,0.422696,0.358975,0.428075,0.419767,0.0242202,0.517535,0.938094,0.720625,0.141622,0.622963,0.716658,0.940934,0.374365,0.190723,0.306409,0.59588,0.957261,0.0309562,0.473996,0.0396661,0.93116,0.555539,0.796409,0.0556092,0.128302,0.247,0.723046,0.75571,0.0861194,0.417042,0.134302,0.592451,0.564646,0.30569,0.838057,0.540514,0.690942,0.458483,0.52003,0.2763,0.568591,0.290028,0.842314,0.960338,0.26375,0.717421,0.995538,0.204643,0.520068,0.0877367,0.889428,0.510561,0.541019,0.41308,0.436611,0.571193,0.121439,0.310782,0.394337,0.628942,0.639084,0.063511,0.389552,0.520072,0.343523,0.615403,0.418215,0.907641,0.76696,0.43643,0.453292,0.889333,0.563091,0.0167575,0.601243,0.614612,0.432378,0.321397,0.168364,0.579877,0.401316,0.964738,0.327632,0.384092,0.780894,0.607753,0.407255,0.371625,0.717595,0.766375,0.414248,0.869236,0.0175336,0.544106,0.657593,0.92049,0.985608,0.952395,0.0918137,0.452261,0.387452,0.128048,0.0526978,0.535996,0.326369,0.819386,0.335666,0.637571,0.983724,0.000759721,0.622428,0.661766,0.731434,0.314886,0.804849,0.704003,0.548189,0.369008,0.0501089,0.477605,0.654092,0.290588,0.63431,0.416629,0.857191,0.813971,0.963025,0.880627,0.0623988,0.148881,0.854787,0.351005,0.15191,0.871385,0.107871,0.355209,0.726667,0.671527,0.480939,0.663832,0.786461,0.134743,0.844092,0.109008,0.771015,0.871597,0.639941,0.35341,0.845232,0.871235,0.327302,0.991016,0.797922,0.274321,0.249328,0.686074,0.640301,0.326301,0.23278,0.808582,0.302091,0.00755662,0.0805066,0.734303,0.181212,0.596269,0.27118,0.83795,0.170682,0.00412136,0.022885,0.27815,0.836515,0.967744,0.803141,0.841914,0.549641,0.00117582,0.709157,0.974633,0.432635,0.0519291,0.768679,0.602798,0.860765,0.348916,0.185846,0.921702,0.457578,0.0242923,0.110538,0.475142,0.280799,0.269857,0.844396,0.253174,0.159741,0.717174,0.675004,0.320643,0.706373,0.141571,0.531509,0.912972,0.309841,0.12704,0.608764,0.896903,0.563304,0.75427,0.0602512,0.781406,0.709282,0.660134,0.634768,0.32075,0.854632,0.661861,0.277939,0.276051,0.124694,0.458857,0.276439,0.00598127,0.903545,0.41738,0.662777,0.432008,0.0483957,0.638675,0.403857,0.630654,0.457657,0.823223,0.843835,0.109829,0.659245,0.556193,0.578689,0.547647,0.147461,0.692899,0.948396,0.0366471,0.170542,0.421606,0.272545,0.172268,0.0774221,0.173212,0.0876606,0.624293,0.628728,0.332402,0.140137,0.129216,0.89417,0.177342,0.0814292,0.132418,0.530073,0.239423,0.45184,0.226958,0.274569,0.664591,0.0180178,0.29322,0.473168,0.115964,0.72644,0.222561,0.986052,0.537419,0.160746,0.0886341,0.389061,0.929118,0.988877,0.108695,0.0718887,0.704483,0.137431,0.352517,0.632122,0.340819,0.580234,0.0866972,0.706773,0.493922,0.598082,0.215896,0.84854,0.48478,0.186851,0.288065,0.663734,0.401807,0.334328,0.472373,0.579771,0.959131,0.274244,0.517851,0.52962,0.102648,0.116662,0.278744,0.989612,0.872891,0.325135,0.662045,0.643113,0.175246,0.299117,0.383434,0.831671,0.018326,0.733377,0.751794,0.194749,0.724951,0.943008,0.909589,0.6259,0.516383,0.400822,0.417117,0.434482,0.985827,0.437862,0.42754,0.501605,0.564809,0.0693964,0.165689,0.652645,0.216173,0.202823,0.70175,0.639248,0.69054,0.170928,0.113912,0.13027,0.371642,0.440181,0.0997937,0.369372,0.648736,0.345521,0.839946,0.0938873,0.0955207,0.154155,0.364376,0.989167,0.0617311,0.262088,0.43141,0.183337,0.860772,0.581769,0.287322,0.755922,0.189019,0.757294,0.32898,0.776322,0.396407,0.0683024,0.196428,0.668626,0.60394,0.0469495,0.860459,0.467127,0.435628,0.95912,0.962868,0.289596,0.544427,0.701214,0.0536691,0.913928,0.066671,0.113175,0.556139,0.101134,0.737508,0.390725,0.446059,0.503412,0.209523,0.122771,0.973802,0.660532,0.000421524,0.683203,0.851737,0.374034,0.619047,0.284167,0.0433605,0.231652,0.781926,0.768247,0.662268,0.656861,0.653417,0.894267,0.876592,0.454254,0.86159,0.812207,0.517164,0.872974,0.177216,0.225552,0.814409,0.429813,0.0751538,0.980597,0.686526,0.610961,0.755338,0.114976,0.228089,0.697841,0.831894,0.101636,0.757702,0.548938,0.938639,0.870017,0.692305,0.996093,0.427044,0.198109,0.188539,0.760903,0.00309914,0.63462,0.813915,0.421493,0.966639,0.244287,0.259941,0.77708,0.922622,0.587318,0.516822,0.400878,0.657579,0.774485,0.100771,0.0927967,0.146026,0.734789,0.911038,0.885053,0.0374986,0.89795,0.185405,0.981495,0.490892,0.40546,0.963118,0.339072,0.757104,0.9895,0.269205,0.389182,0.457167,0.226701,0.548018,0.374029,0.135085,0.939031,0.0433388,0.434172,0.332557,0.0804032,0.849398,0.540471,0.424862,0.262892,0.291193,0.950339,|0.135596,0.934004,0.275283,0.940693,0.503028,0.549473,0.610912,0.566346,0.84608,0.0617715,0.25786,0.0373064,0.714281,0.267471,0.451814,0.516205,0.253375,0.0720515,0.54017,0.183007,0.949941,0.921309,0.62472,0.59369,0.543267,0.981298,0.309993,0.0129623,0.196364,0.988072,0.072154,0.303675,0.114744,0.814034,0.579197,0.876972,0.622587,0.271355,0.994535,0.998658,0.937571,0.490842,0.148582,0.433673,0.941477,0.0789375,0.757016,0.0988816,0.493427,0.569651,0.18484,0.376032,0.895911,0.263522,0.288208,0.303832,0.472071,0.490552,0.918727,0.780681,0.979943,0.558024,0.267592,0.45067,0.555479,0.639578,0.994294,0.0312331,0.211561,0.368895,0.821808,0.193089,0.865937,0.876226,0.395444,0.228862,0.644972,0.0212643,0.864078,0.749394,0.0152301,0.693216,0.26256,0.136189,0.241233,0.689716,0.538358,0.968799,0.660176,0.454286,0.852979,0.2265,0.632412,0.67445,0.204326,0.680116,0.514025,0.568015,0.439772,0.79989,0.717301,0.607199,0.10136,0.456507,0.983768,0.105609,0.491916,0.426775,0.474351,0.123419,0.305022,0.00272566,0.225163,0.701038,0.337159,0.926549,0.434057,0.0129944,0.744338,0.47541,0.632913,0.927527,0.724883,0.960912,0.256369,0.348452,0.611662,0.52245,0.0491815,0.803435,0.906955,0.281084,0.839846,0.195254,0.483746,0.414235,0.988701,0.739343,0.336255,0.495584,0.870497,0.118479,0.238994,0.225575,0.7975,0.820181,0.291346,0.314214,0.924899,0.38138,0.519483,0.541171,0.603063,0.226139,0.701682,0.949225,0.0362934,0.0994097,0.94974,0.482045,0.0215026,0.417816,0.561815,0.405092,0.401316,0.824498,0.602909,0.651736,0.919506,0.165437,0.751935,0.287122,0.397328,0.632852,0.560622,0.401392,0.128958,0.400736,0.740691,0.16373,0.469211,0.297156,0.619888,0.623933,0.552328,0.727486,0.865767,0.51339,0.753017,0.76836,0.365315,0.215015,0.437224,0.722781,0.0897742,0.955613,0.700777,0.00749636,0.524228,0.712623,0.736187,0.638547,0.326702,0.57675,0.181292,0.785838,0.219191,0.860546,0.0452636,0.640504,0.924036,0.178661,0.9386,0.900602,0.0552834,0.17472,0.00145054,0.0997332,0.48601,0.867071,0.0697504,0.765562,0.0695443,0.252487,0.818913,0.933919,0.744612,0.27549,0.364792,0.127945,0.345507,0.0266784,0.160606,0.614049,0.678627,0.780597,0.118838,0.480772,0.521769,0.791187,0.281185,0.964825,0.0635674,0.981715,0.665079,0.110532,0.780377,0.826147,0.038968,0.318212,0.789101,0.587657,0.0619974,0.881635,0.731108,0.0227859,0.540908,0.395577,0.000807583,0.187153,0.803925,0.376397,0.526533,0.205884,0.400999,0.328011,0.9946,0.407724,0.431565,0.860605,0.0919935,0.520878,0.604435,0.570375,0.142389,0.301571,0.00820613,0.397943,0.450136,0.505463,0.572593,0.165315,0.669118,0.93263,0.824946,0.177018,0.625357,0.105868,0.273042,0.449166,0.0794608,0.494381,0.0881895,0.0397799,0.356206,0.691251,0.36538,0.715229,0.904237,0.442487,0.295878,0.869828,0.822449,0.857042,0.804063,0.311233,0.715542,0.455812,0.73796,0.426591,0.479201,0.982989,0.0191228,0.338164,0.963081,0.490496,0.402663,0.194068,0.594079,0.688189,0.628421,0.578728,0.0584013,0.268058,0.170152,0.425834,0.63855,0.371765,0.397654,0.439876,0.265344,0.978884,0.697942,0.476143,0.0375302,0.723028,0.0540962,0.911855,0.181423,0.456207,0.282121,0.718101,0.0904146,0.104929,0.444278,0.192265,0.318651,0.48433,0.355081,0.593562,0.73472,0.748486,0.377065,0.647636,0.68716,0.955473,0.0540349,0.0720137,0.0575942,0.188723,0.507256,0.912026,0.226777,0.789219,0.213461,0.0324305,0.28954,0.874712,0.725158,0.520389,0.427488,0.477252,0.91494,0.980663,0.623896,0.729525,0.785759,0.157463,0.574162,0.599944,0.539855,0.585368,0.101098,0.564853,0.645933,0.821619,0.266729,0.620758,0.907378,0.654274,0.184054,0.331668,0.562622,0.712879,0.227532,0.776606,0.738129,0.284285,0.792036,0.183021,0.613511,0.952009,0.500607,0.742767,0.71305,0.391151,0.464828,0.937083,0.176858,0.534594,0.0196145,0.563126,0.153433,0.697967,0.588161,0.949414,0.632119,0.261056,0.813176,0.375908,0.814852,0.217622,0.852094,0.263625,0.505131,0.971438,0.151205,0.143421,0.583286,0.138249,0.000831485,0.0114501,0.888539,0.743969,0.132522,0.866453,0.812013,0.905684,0.101358,0.126376,0.166639,0.699398,0.124454,0.713228,0.368543,0.107283,0.717657,0.621746,0.693677,0.414458,0.482762,0.54967,0.404579,0.806459,0.290271,0.891512,0.154929,0.179331,0.423447,0.728507,0.967471,0.0409355,0.312885,0.595792,0.087567,0.981962,0.153947,0.636961,0.101827,0.176896,0.116159,0.927367,0.126229,0.762182,0.461645,0.253482,0.276311,0.401058,0.301069,0.434188,0.795924,0.318739,0.925743,0.861057,0.948941,0.626665,0.26654,0.175834,0.644335,0.503339,0.12045,0.734724,0.950757,0.258096,0.140026,0.98506,0.0179003,0.768045,0.0041036,0.64317,0.206161,0.415973,0.350599,0.210412,0.592458,0.447824,0.732463,0.522759,0.482612,0.146914,0.651632,0.827036,0.396172,0.474178,0.29635,0.371779,0.162591,0.867977,0.842278,0.046056,0.587253,0.574528,0.76397,0.988964,0.355764,0.0900655,0.44531,0.602698,0.51502,0.481628,0.652495,0.18607,0.0519949,0.780494,0.110285,0.737229,0.643297,0.672409,0.479716,0.041167,0.00562853,0.52947,0.61168,0.41533,0.902021,0.7784,0.768817,0.380552,0.468878,0.915783,0.00324142,0.923838,0.943745,0.374959,0.595764,0.679508,0.627722,0.203973,0.912391,0.561016,0.746339,0.141947,0.024147,0.117001,0.319478,0.0817828,0.789739,0.901796,0.692832,0.0241474,0.824463,0.799285,0.307362,0.050887,0.319382,0.977627,0.650447,0.416117,0.040853,0.773956,0.367275,0.936173,0.116772,0.711791,0.513136,0.519169,0.809589,0.860563,0.394784,0.6336,0.847898,0.719727,0.210773,0.174279,0.696848,0.858541,0.426644,0.396446,0.450683,0.166343,0.148318,0.155475,0.655501,0.582424,0.298648,0.214463,0.929313,0.618477,0.545683,0.0670528,0.544733,0.616927,0.0852813,0.548456,0.518353,0.318038,0.0382785,0.338708,0.194495,0.805992,0.739172,0.610366,0.69194,0.553496,0.671479,0.174804,0.245302,0.810216,0.195503,0.50186,0.421565,0.567339,0.0797046,0.114595,0.205334,0.115908,0.410053,0.254977,0.911031,0.60008,0.200667,0.777229,0.463576,0.969151,0.956123,0.294827,0.845401,0.695932,0.691634,0.212573,0.570081,0.484607,0.194962,0.771471,0.888535,0.528329,0.34541,0.791437,0.170304,0.759124,0.872098,0.475175,0.544507,0.746262,0.872065,0.194401,0.32413,0.415812,0.195856,0.15375,0.888958,0.449061,0.2846,0.708716,0.84667,0.958734,0.385521,0.508368,0.966415,0.245388,0.316095,0.774798,0.823422,0.161137,0.300956,0.970954,0.686673,0.625283,0.799013,0.120454,0.886084,0.0243347,0.265212,0.86129,0.450681,0.567811,0.240837,0.616296,0.978062,0.0904096,0.809097,0.719459,0.78485,0.382408,0.809888,0.447409,0.386506,0.185262,0.271627,0.770997,0.576851,0.0352539,0.683038,0.500783,0.903117,0.142472,0.682127,0.27737,0.78835,0.547237,0.616912,0.503016,0.857418,0.498978,0.123474,0.663971,0.326158,0.954734,0.01932,0.55051,0.643923,0.385833,0.118376,0.707282,0.459027,0.619777,0.0932804,0.840976,0.663627,0.880485,0.662627,0.422477,0.51961,0.781263,0.887482,0.162124,0.705839,0.0135678,0.298928,0.447613,0.518158,0.972044,0.560896,0.389713,0.660592,0.859286,0.188827,0.197467,0.0848186,0.610969,0.0598794,0.925327,0.616072,0.439486,0.0212705,0.827779,0.941178,0.078945,0.545317,0.948074,0.111746,0.646419,0.636578,0.982303,0.774123,0.32835,0.371079,0.0750489,0.982186,0.813224,0.651916,0.768295,0.587439,0.254887,0.0391005,0.372068,0.00201416,0.801675,0.816297,0.606658,0.0427382,0.948361,0.395773,0.713986,0.694839,0.308472,0.0329459,0.048578,0.0265187,0.134495,0.453247,0.306816,0.503828,0.374985,0.347149,0.44196,0.692831,0.933356,0.341234,0.135592,0.892052,0.805205,0.908459,0.352313,0.343584,0.230091,0.167857,0.959045,0.946662,0.73349,0.290698,0.366385,0.892403,0.648471,0.361905,0.044952,0.17318,0.209934,0.611807,0.963612,0.299588,0.3025,0.352393,0.824853,0.24998,0.428992,0.707976,0.825351,0.0537118,0.321319,0.803524,0.0605036,0.579241,0.608383,0.578929,0.458981,0.913223,0.919781,0.652335,0.64642,0.198525,0.953735,0.0634385,0.661905,0.737757,0.921386,0.0611653,0.760291,0.200284,0.848276,0.356839,0.0635126,0.740171,0.684954,0.518041,0.466626,0.217948,0.591773,0.325253,0.36576,0.890119,0.647471,0.425157,0.116872,0.163763,0.154326,0.716813,0.414571,0.738184,0.956633,0.174796,0.577914,0.679244,0.559319,0.419904,0.349407,0.595839,0.984916,0.203394,0.118977,0.314901,0.930135,0.520702,0.0297664,0.906411,0.668913,0.299661,0.156953,0.0952768,0.372008,0.0598781,0.283141,0.0369381,0.0643664,0.80077,0.680032,0.490863,0.927098,0.144289,0.342063,0.6798,0.403398,0.584706,0.317229,0.15293,0.668415,0.51764,0.544072,0.93844,0.770001,0.246164,0.398077,0.508455,0.459579,0.409144,0.96785,0.343283,0.323439,0.752908,0.63688,0.935749,0.757647,0.457093,0.430828,0.860326,0.965517,0.601041,0.903975,0.0641639,0.892279,0.203342,0.251443,0.334898,0.124985,0.173886,0.355905,0.64468,0.231353,0.607933,0.265593,0.130896,0.0227805,0.294631,0.801713,0.267952,0.2368,0.158299,0.978238,0.914128,0.182156,0.110184,0.661085,0.952076,0.614758,0.552374,0.808334,0.187102,0.0251969,0.148155,0.260785,0.507613,0.835939,0.168015,0.0796218,0.254829,0.210208,0.757813,0.872857,0.936477,0.948181,0.141871,0.936729,0.609404,0.382478,0.63485,0.617758,0.687678,0.852116,0.683766,0.435709,0.942777,0.770038,0.0370017,0.866281,0.746253,0.183384,0.622467,0.618716,0.723752,0.838425,|0.852218,0.688545,0.885659,0.318309,0.769627,0.924654,0.617266,0.212083,0.491919,0.573547,0.192082,0.412711,0.354644,0.556704,0.175133,0.759515,0.826589,0.40716,0.187925,0.166028,0.0792724,0.650642,0.184343,0.683178,0.813502,0.7824,0.506842,0.406947,0.219931,0.384964,0.288604,0.0619071,0.11357,0.323013,0.0397692,0.839182,0.118254,0.290537,0.667727,0.76742,0.636834,0.950664,0.375778,0.203249,0.370808,0.909687,0.090844,0.878149,0.856958,0.632048,0.918289,0.440192,0.713089,0.548626,0.234317,0.0491189,0.967982,0.341694,0.423333,0.169552,0.442552,0.0883477,0.841877,0.298427,0.883083,0.0802405,0.0241444,0.0737718,0.510284,0.269202,0.184261,0.0318299,0.82947,0.60445,0.21101,0.793803,0.819336,0.996854,0.43829,0.867919,0.609034,0.694336,0.620678,0.114207,0.333517,0.357008,0.261112,0.571585,0.322883,0.239198,0.819634,0.740535,0.795562,0.249909,0.285426,0.834321,0.867372,0.0152441,0.19494,0.46241,0.607611,0.288083,0.633166,0.778641,0.668441,0.608562,0.0452466,0.946674,0.271344,0.0293825,0.52218,0.85547,0.575348,0.295556,0.252095,0.758911,0.668405,0.434764,0.0466487,0.794183,0.0545252,0.294951,0.484477,0.977744,0.983459,0.0233625,0.490928,0.536808,0.147693,0.281799,0.758342,0.538045,0.54486,0.230429,0.881378,0.05742,0.484029,0.89652,0.732684,0.0432906,0.523267,0.146046,0.331343,0.0817815,0.393243,0.356366,0.913663,0.701031,0.36203,0.9142,0.629804,0.499413,0.0203392,0.628823,0.375911,0.102113,0.386467,0.0998397,0.182445,0.0255836,0.736383,0.478088,0.225061,0.0568966,0.765177,0.898366,0.641109,0.699915,0.377112,0.134321,0.460666,0.405924,0.618632,0.0822603,0.260661,0.829662,0.364335,0.0649148,0.912466,0.385124,0.826706,0.000397146,0.79906,0.978274,0.279929,0.0613693,0.604028,0.581143,0.542783,0.865839,0.346926,0.610678,0.615856,0.342659,0.910134,0.92811,0.815812,0.623818,0.440546,0.00689089,0.321148,0.176068,0.530409,0.114761,0.224789,0.0924007,0.501011,0.184873,0.140657,0.84948,0.0174106,0.786807,0.850311,0.757888,0.142683,0.00332916,0.70212,0.614105,0.568249,0.723456,0.747062,0.344245,0.746825,0.218366,0.858071,0.476424,0.57362,0.421184,0.267293,0.18804,0.0580944,0.919209,0.896866,0.642157,0.11543,0.0712953,0.799572,0.986324,0.530638,0.796143,0.663255,0.832265,0.972661,0.840498,0.765438,0.0433287,0.470937,0.444394,0.750517,0.0175667,0.907978,0.449861,0.900888,0.959556,0.339109,0.978586,0.00452679,0.777181,0.78363,0.998022,0.363414,0.415444,0.22613,0.299609,0.252877,0.605985,0.297246,0.789648,0.496144,0.594578,0.758434,0.493186,0.921183,0.033228,0.229578,0.0800359,0.399042,0.445386,0.875136,0.15139,0.134614,0.635884,0.86268,0.829812,0.259932,0.0975164,0.522766,0.654273,0.036749,0.493537,0.0372608,0.942023,0.938157,0.118927,0.81644,0.683461,0.688365,0.629739,0.489576,0.620259,0.441928,0.817569,0.649581,0.003232,0.0981678,0.395296,0.9334,0.177438,0.626561,0.16908,0.268368,0.504395,0.327639,0.927046,0.438772,0.408036,0.265168,0.666224,0.938699,0.586343,0.71108,0.57051,0.664982,0.995747,0.15984,0.869755,0.996531,0.611386,0.453549,0.95286,0.881417,0.679024,0.462672,0.733314,0.959492,0.311593,0.309497,0.803009,0.311682,0.502053,0.923318,0.925593,0.584828,0.0549228,0.98921,0.585754,0.0688227,0.643324,0.0831668,0.972162,0.997448,0.934053,0.105181,0.766797,0.25903,0.643963,0.199557,0.421611,0.146018,0.355845,0.586099,0.932968,0.654719,0.458619,0.10232,0.242055,0.106006,0.650852,0.265873,0.542469,0.54344,0.287006,0.796347,0.0208715,0.419741,0.0511766,0.795529,0.665099,0.63135,0.752874,0.430714,0.68967,0.352715,0.197812,0.567517,0.589846,0.65722,0.584137,0.726634,0.573078,0.477621,0.746725,0.18359,0.87789,0.670949,0.279713,0.251521,0.815298,0.484966,0.281111,0.977877,0.606951,0.609018,0.0214138,0.0539585,0.491554,0.0342653,0.972183,0.535982,0.771082,0.792595,0.642782,0.402368,0.121633,0.253241,0.628566,0.516862,0.282063,0.812983,0.352851,0.742308,0.303002,0.508047,0.910526,0.27083,0.112883,0.587001,0.887931,0.780231,0.0115404,0.750255,0.412688,0.414935,0.973586,0.279903,0.0274969,0.895123,0.0769228,0.551434,0.875706,0.593166,0.472544,0.112657,0.582012,0.420804,0.452966,0.225029,0.913834,0.404725,0.92337,0.252395,0.862477,0.659057,0.443276,0.492968,0.528944,0.682314,0.164175,0.842477,0.939427,0.318363,0.38694,0.624868,0.498764,0.742039,0.243085,0.134363,0.394514,0.868302,0.809839,0.459976,0.0882077,0.879843,0.854473,0.541314,0.607963,0.701814,0.0869458,0.204097,0.0492814,0.876827,0.173795,0.367216,0.309643,0.352353,0.761403,0.476586,0.332964,0.866214,0.0925952,0.0888059,0.566435,0.603642,0.205301,0.875131,0.979072,0.237755,0.137304,0.496728,0.421623,0.107455,0.189457,0.0632088,0.738614,0.474837,0.814311,0.709629,0.0735496,0.635552,0.0808802,0.86951,0.632189,0.492484,0.969183,0.265128,0.816985,0.712073,0.224001,0.152693,0.59362,0.317987,0.00691682,0.0827029,0.0930402,0.556203,0.686056,0.43819,0.404747,0.42947,0.188553,0.635141,0.595376,0.768992,0.15844,0.642888,0.956051,0.11175,0.593179,0.941268,0.735674,0.50601,0.0171065,0.0465141,0.720163,0.919906,0.494745,0.340868,0.400668,0.662843,0.806625,0.14135,0.215125,0.836386,0.965731,0.00983095,0.0935464,0.930912,0.146703,0.549645,0.508022,0.837467,0.804493,0.357458,0.22487,0.142712,0.303492,0.716684,0.52064,0.770889,0.659004,0.898846,0.80638,0.16092,0.675522,0.968659,0.856696,0.102403,0.880772,0.277024,0.430231,0.774085,0.388904,0.0486667,0.830167,0.0320446,0.696192,0.161665,0.650198,0.726871,0.207932,0.284943,0.524035,0.544589,0.15562,0.123802,0.499367,0.581105,0.404707,0.620054,0.921142,0.0811113,0.089752,0.560024,0.0946398,0.413836,0.513772,0.242725,0.230575,0.154228,0.25765,0.0820678,0.545938,0.73769,0.416997,0.436271,0.661158,0.656631,0.590248,0.874341,0.466386,0.18513,0.800061,0.880821,0.536968,0.873463,0.334707,0.490109,0.125578,0.164893,0.896043,0.729016,0.170239,0.142142,0.989599,0.588971,0.038738,0.00425696,0.0795907,0.759809,0.77583,0.259174,0.921415,0.388872,0.252724,0.885936,0.328751,0.300413,0.257454,0.36547,0.962086,0.626038,0.919299,0.114169,0.901997,0.373929,0.610277,0.849586,0.17593,0.531123,0.383353,0.233843,0.500361,0.418289,0.650616,0.394227,0.757108,0.547104,0.343997,0.581608,0.389821,0.868874,0.54467,0.593016,0.870577,0.448696,0.769764,0.547727,0.527302,0.047052,0.885661,0.95507,0.27133,0.396526,0.233669,0.75484,0.700669,0.0494247,0.439277,0.176775,0.540357,0.142898,0.123605,0.0240296,0.47943,0.247421,0.89822,0.806885,0.64582,0.55138,0.97991,0.825799,0.0033226,0.814592,0.633834,0.383154,0.372984,0.360278,0.0736101,0.210751,0.0483632,0.708657,0.187584,0.244034,0.386175,0.515241,0.26452,0.163232,0.634966,0.764846,0.980719,0.807721,0.993881,0.402908,0.000485778,0.55463,0.407191,0.284374,0.285393,0.169602,0.851607,0.0102333,0.565903,0.874536,0.702048,0.74204,0.575942,0.67021,0.0484058,0.919616,0.397547,0.531856,0.709226,0.220116,0.512795,0.772863,0.458154,0.674254,0.741462,0.0882024,0.382572,0.210897,0.807907,0.894147,0.144887,0.247239,0.230097,0.64961,0.974665,0.983211,0.524414,0.68231,0.338363,0.909102,0.932499,0.88576,0.317469,0.635904,0.237314,0.952576,0.437505,0.330979,0.397709,0.308813,0.541655,0.832054,0.0213855,0.242629,0.635681,0.707439,0.5467,0.138643,0.152385,0.948852,0.288226,0.0990248,0.32481,0.987698,0.390122,0.389533,0.187295,0.66948,0.273683,0.819775,0.34247,0.600522,0.605808,0.36794,0.909414,0.289962,0.427427,0.834203,0.97642,0.471387,0.436902,0.542167,0.395783,0.366344,0.925505,0.886356,0.213359,0.831429,0.705494,0.116202,0.64811,0.541263,0.706372,0.689733,0.903235,0.927013,0.391982,0.30257,0.734343,0.150676,0.298124,0.545083,0.578692,0.77269,0.167004,0.239844,0.0303103,0.657669,0.0727288,0.739504,0.32244,0.697621,0.545805,0.728087,0.5862,0.418083,0.356429,0.803697,0.704133,0.892865,0.823446,0.150481,0.451253,0.223803,0.125397,0.0213086,0.631216,0.219628,0.484752,0.944359,0.639657,0.697563,0.00760221,0.912941,0.854215,0.178797,0.0859588,0.869929,0.163554,0.785855,0.280673,0.149819,0.991246,0.488211,0.684616,0.1824,0.966838,0.727883,0.51613,0.431799,0.0514013,0.186471,0.703001,0.657652,0.52585,0.610432,0.91308,0.0895361,0.134902,0.685185,0.581299,0.668558,0.417775,0.0104149,0.860159,0.034938,0.0333327,0.614677,0.701243,0.558711,0.561806,0.652872,0.745967,0.823297,0.901097,0.877786,0.385955,0.167272,0.811692,0.451964,0.247544,0.176585,0.108742,0.486403,0.48995,0.738506,0.28647,0.611833,0.170472,0.548052,0.294898,0.825625,0.920437,0.839541,0.820567,0.67658,0.582431,0.1897,0.166228,0.970922,0.891855,0.344532,0.528258,0.145463,0.00448072,0.987532,0.527959,0.780851,0.223764,0.197379,0.607992,0.893011,0.656059,0.2246,0.00604856,0.916257,0.395543,0.944476,0.968904,0.214249,0.952761,0.0279149,0.567291,0.83929,0.225651,0.979408,0.204947,0.0154291,0.553842,0.368811,0.973679,0.0184346,0.178611,0.921408,0.00140047,0.582412,0.119923,0.492663,0.0262861,0.927709,0.661561,0.26149,0.658117,0.62152,0.848913,0.571741,0.306711,0.53497,0.760198,0.909806,0.578751,0.433647,0.430026,0.468361,0.940182,0.0987976,0.394905,0.803702,0.653686,0.546149,0.839558,0.904085,0.242651,0.610156,0.0715007,0.67926,0.386192,0.329509,0.326381,0.3109,0.268012,0.912591,0.85947,0.28265,0.57152,0.327701,0.641146,|0.591927,0.403345,0.856446,0.0648845,0.153157,0.488263,0.470232,0.58287,0.792745,0.538667,0.0933013,0.481088,0.939173,0.27225,0.618328,0.978835,0.893598,0.102868,0.658309,0.407154,0.536653,0.345653,0.0359588,0.710008,0.494009,0.0244782,0.563864,0.995576,0.267014,0.0922034,0.0052616,0.973094,0.788689,0.437165,0.252429,0.0955914,0.461079,0.82712,0.337961,0.490679,0.248141,0.485458,0.0598723,0.885966,0.892983,0.969106,0.791947,0.898667,0.86394,0.263136,0.0609593,0.257121,0.898824,0.59076,0.521058,0.784291,0.432492,0.295433,0.0625787,0.159443,0.309973,0.397022,0.125825,0.655096,0.550372,0.0642785,0.653353,0.894236,0.192843,0.628307,0.0928926,0.623269,0.446145,0.483403,0.726364,0.936201,0.873801,0.847432,0.56011,0.227474,0.287381,0.73751,0.338978,0.523665,0.189703,0.202482,0.769758,0.44941,0.603756,0.610227,0.0653033,0.976824,0.179153,0.051425,0.340014,0.668647,0.255099,0.0137189,0.890439,0.999435,0.994541,0.551147,0.104709,0.887732,0.761534,0.966464,0.947436,0.431618,0.305481,0.512566,0.269007,0.407095,0.559711,0.516223,0.286053,0.387795,0.715398,0.228153,0.733409,0.00703204,0.229852,0.863245,0.735473,0.467991,0.990831,0.763883,0.302173,0.272031,0.817002,0.861362,0.417373,0.82439,0.555095,0.44718,0.108805,0.295931,0.834446,0.673691,0.38306,0.803461,0.828415,0.301416,0.025152,0.416578,0.748825,0.265266,0.0416839,0.745477,0.493364,0.311611,0.986809,0.349825,0.588919,0.553472,0.132206,0.704659,0.165288,0.801496,0.431662,0.048364,0.270289,0.954831,0.927592,0.587759,0.840528,0.0875789,0.0732741,0.269971,0.844225,0.108876,0.715277,0.737285,0.272467,0.188817,0.812839,0.79467,0.695554,0.0684444,0.680135,0.970953,0.295404,0.772732,0.235052,0.617733,0.830202,0.656226,0.177392,0.535693,0.129493,0.384244,0.481102,0.183372,0.320702,0.0563524,0.859951,0.477364,0.615138,0.847051,0.492394,0.964803,0.0867864,0.630263,0.804701,0.117159,0.985621,0.51937,0.292401,0.915207,0.275842,0.924722,0.737042,0.968935,0.165803,0.418439,0.924202,0.976863,0.940635,0.985697,0.150123,0.170197,0.278162,0.6048,0.583814,0.142384,0.112407,0.584237,0.00647807,0.585862,0.646484,0.577016,0.386657,0.623907,0.181251,0.253617,0.00436115,0.651672,0.443939,0.0110942,0.379872,0.597396,0.845903,0.839397,0.0218877,0.733873,0.485357,0.693338,0.224731,0.844349,0.718116,0.00829774,0.0949855,0.203262,0.30769,0.0537754,0.213367,0.989753,0.536767,0.0707995,0.740585,0.703834,0.68085,0.0506048,0.766402,0.832163,0.0971403,0.599007,0.390296,0.926722,0.0253459,0.246543,0.85613,0.476663,0.96119,0.36588,0.589235,0.735507,0.17367,0.0239034,0.108644,0.790807,0.222376,0.780406,0.208092,0.788325,0.815809,0.671102,0.460395,0.874567,0.733815,0.94273,0.116725,0.0839245,0.125947,0.621579,0.587021,0.3091,0.454924,0.925726,0.641397,0.010098,0.113964,0.489399,0.532549,0.461614,0.116837,0.446547,0.059252,0.454848,0.0366941,0.0640372,0.836397,0.559081,0.882275,0.562202,0.415017,0.968363,0.326334,0.592875,0.399411,0.0535674,0.165207,0.15481,0.582334,0.544562,0.652424,0.284147,0.940431,0.0831248,0.367593,0.682485,0.399807,0.432597,0.296273,0.366525,0.0695696,0.150613,0.256039,0.403532,0.00279564,0.267367,0.888257,0.82173,0.126715,0.596904,0.298846,0.558941,0.231339,0.901103,0.703007,0.845985,0.322295,0.0407539,0.629338,0.855823,0.361376,0.715398,0.0805563,0.104491,0.395486,0.827078,0.850833,0.806764,0.511148,0.949845,0.0758913,0.291898,0.256435,0.481823,0.253852,0.947938,0.811343,0.635537,0.399876,0.00552237,0.0791951,0.93788,0.589706,0.101481,0.8942,0.756339,0.737701,0.767381,0.231888,0.329964,0.643418,0.764414,0.474398,0.539886,0.627028,0.0649639,0.937522,0.641693,0.619218,0.161263,0.53436,0.282345,0.854892,0.367382,0.341597,0.593225,0.619651,0.163124,0.85078,0.0369123,0.712692,0.435546,0.614443,0.40648,0.920614,0.104386,0.282461,0.027488,0.760376,0.582256,0.81101,0.820561,0.351572,0.58165,0.319076,0.720809,0.0634426,0.820604,0.228698,0.755495,0.59397,0.881947,0.47061,0.311687,0.242002,0.356453,0.73883,0.681132,0.398786,0.414546,0.104886,0.855921,0.317013,0.998718,0.178236,0.432829,0.411917,0.350618,0.365144,0.362207,0.0952492,0.499051,0.999142,0.144242,0.470988,0.197056,0.294407,0.296816,0.787083,0.348996,0.952874,0.897755,0.273833,0.268931,0.27599,0.184188,0.870186,0.429213,0.0888641,0.244711,0.901611,0.953137,0.636021,0.329179,0.856772,0.815331,0.59302,0.694536,0.967598,0.805099,0.486761,0.516417,0.475067,0.233229,0.383179,0.344993,0.0592133,0.665334,0.890962,0.618027,0.403453,0.609714,0.355708,0.29449,0.446525,0.258276,0.989815,0.547309,0.0035457,0.964005,0.921839,0.939642,0.288992,0.679806,0.266878,0.849473,0.766373,0.340838,0.211002,0.875505,0.951984,0.386879,0.74433,0.370178,0.208706,0.366162,0.501274,0.588287,0.627117,0.805141,0.327784,0.251828,0.994956,0.289265,0.700985,0.942632,0.0116771,0.332929,0.836183,0.264807,0.0881384,0.926983,0.0071736,0.933345,0.716011,0.216095,0.338452,0.78617,0.104789,0.481956,0.0460565,0.127987,0.807313,0.612028,0.28001,0.881556,0.260863,0.0505829,0.0919983,0.993284,0.893079,0.67678,0.428463,0.816247,0.890053,0.781797,0.769109,0.464626,0.468259,0.717626,0.258623,0.585563,0.668857,0.12614,0.688528,0.929706,0.959882,0.0783005,0.983604,0.408505,0.178931,0.379219,0.913849,0.568026,0.983523,0.69143,0.979182,0.979773,0.942309,0.64405,0.742661,0.434899,0.120629,0.103898,0.106056,0.130612,0.0553792,0.297893,0.758421,0.22134,0.288639,0.792526,0.779686,0.808133,0.0153815,0.000720561,0.846563,0.965139,0.115028,0.612192,0.173626,0.587135,0.918271,0.346997,0.201917,0.88649,0.300674,0.0909105,0.0194537,0.626457,0.896639,0.336278,0.347913,0.191969,0.165696,0.299887,0.524708,0.380879,0.0699543,0.353033,0.223814,0.542594,0.46566,0.275196,0.628814,0.871226,0.44803,0.720392,0.543516,0.126416,0.063458,0.756037,0.42771,0.815759,0.134848,0.230457,0.235178,0.315757,0.710597,0.164079,0.186914,0.912021,0.370181,0.690557,0.0499848,0.108541,0.822038,0.705693,0.716253,0.40055,0.663234,0.819607,0.790901,0.756601,0.519071,0.26326,0.715865,0.965684,0.323855,0.366508,0.266922,0.144124,0.370404,0.299549,0.408363,0.544044,0.54033,0.545171,0.583702,0.91178,0.0915415,0.0817176,0.536104,0.399582,0.795465,0.428563,0.766216,0.429176,0.375458,0.0520995,0.31636,0.834018,0.170404,0.451258,0.720703,0.879809,0.579432,0.992627,0.919083,0.198902,0.049307,0.973709,0.346412,0.284657,0.973247,0.720373,0.746565,0.487896,0.400652,0.609624,0.637536,0.795824,0.461121,0.0342196,0.330606,0.390804,0.871375,0.0436351,0.166427,0.0749222,0.900895,0.210191,0.00114799,0.806531,0.240173,0.417892,0.0478402,0.927532,0.926118,0.411681,0.500302,0.828179,0.383405,0.986786,0.245018,0.645613,0.165487,0.944522,0.381702,0.669638,0.42772,0.0561374,0.75134,0.0401009,0.0927384,0.94227,0.0432073,0.965425,0.242576,0.188047,0.390092,0.311239,0.2242,0.0455147,0.764943,0.0448756,0.819182,0.0309505,0.724556,0.858831,0.383149,0.144592,0.686875,0.832444,0.472861,0.722009,0.624721,0.818756,0.346724,0.302783,0.885262,0.903918,0.424499,0.598306,0.426169,0.0318972,0.746143,0.0697124,0.289552,0.118328,0.503435,0.767256,0.693274,0.863547,0.299917,0.641847,0.447947,0.0391477,0.668323,0.855542,0.874261,0.745422,0.00175685,0.0770484,0.157963,0.401479,0.484369,0.445866,0.0565118,0.383854,0.948756,0.666011,0.49574,0.712921,0.288441,0.867991,0.716601,0.956797,0.879409,0.0620751,0.779123,0.428042,0.811813,0.023426,0.283212,0.555328,0.839778,0.0108747,0.4816,0.696546,0.0410796,0.0601167,0.83444,0.404458,0.777685,0.046223,0.312192,0.35567,0.00434464,0.447163,0.544228,0.667565,0.0955842,0.305505,0.961753,0.953515,0.753812,0.942462,0.767265,0.787983,0.898003,0.822284,0.595158,0.164647,0.616418,0.180635,0.390028,0.422985,0.901502,0.894602,0.0441276,0.618077,0.0758634,0.690153,0.020587,0.238872,0.354388,0.944069,0.36224,0.802498,0.64643,0.949024,0.818205,0.472709,0.851368,0.386363,0.966725,0.348421,0.514551,0.298936,0.858094,0.626131,0.372153,0.296263,0.971585,0.96129,0.95619,0.220052,0.98351,0.150641,0.445516,0.486067,0.947691,0.664161,0.515572,0.448216,0.427249,0.974882,0.934817,0.826396,0.310478,0.617055,0.700063,0.140655,0.152837,0.184635,0.018109,0.0134433,0.617039,0.88817,0.709348,0.840927,0.335677,0.116029,0.529441,0.84868,0.545744,0.353297,0.395919,0.379016,0.817423,0.866196,0.940437,0.400774,0.807278,0.49726,0.0660141,0.093914,0.824619,0.970459,0.405951,0.121878,0.255978,0.486138,0.467509,0.937671,0.083891,0.604837,0.150311,0.318484,0.368603,0.169264,0.60048,0.522818,0.520236,0.5982,0.850475,0.871962,0.695935,0.253972,0.886018,0.00269127,0.408659,0.404937,0.900606,0.866556,0.763245,0.186293,0.617532,0.170294,0.75402,0.0238143,0.605421,0.789804,0.0116776,0.547122,0.48995,0.632371,0.0415771,0.703987,0.67794,0.146911,0.737074,0.0828679,0.168315,0.271421,0.44312,0.144131,0.530783,0.332422,0.159967,0.926567,0.258354,0.347735,0.641452,0.167479,0.695645,0.206127,0.837644,0.0220261,0.439984,0.787739,0.411368,0.115987,0.346304,0.81385,0.0903866,0.310672,0.217725,0.471883,0.701721,0.41346,0.489997,0.573105,0.955791,0.563101,0.62704,0.103807,0.209398,0.242753,0.376607,0.28403,0.813656,0.816595,0.314236,0.116644,0.0657722,0.556909,0.202206,0.237374,0.73728,0.0131435,0.127027,0.572777,0.810993,0.549684,|0.211615,0.320235,0.79919,0.488913,0.234682,0.182701,0.730968,0.0450308,0.457595,0.863279,0.118951,0.41643,0.23775,0.416661,0.84607,0.107258,0.544809,0.238692,0.482711,0.492472,0.869055,0.188751,0.608505,0.588089,0.611704,0.440609,0.117119,0.351811,0.759402,0.510821,0.327094,0.943642,0.462839,0.697781,0.876808,0.0687542,0.427835,0.910493,0.318789,0.452138,0.120008,0.625726,0.420698,0.247981,0.845583,0.038355,0.176127,0.369498,0.14106,0.91684,0.814818,0.743836,0.582847,0.364422,0.71556,0.422587,0.0287759,0.91123,0.341664,0.725778,0.0513547,0.671443,0.479151,0.519264,0.317707,0.964349,0.749085,0.327192,0.867267,0.922504,0.307004,0.333035,0.964084,0.9044,0.0746856,0.173224,0.279363,0.432372,0.004067,0.988298,0.632707,0.968682,0.876831,0.0155979,0.364391,0.170993,0.541202,0.307204,0.605876,0.603859,0.776187,0.234047,0.732573,0.749248,0.754477,0.383446,0.185855,0.907248,0.39512,0.402571,0.351078,0.421006,0.970904,0.148268,0.362498,0.406317,0.759389,0.08921,0.794432,0.045558,0.838137,0.326287,0.398901,0.171327,0.808161,0.932098,0.600663,0.7307,0.363666,0.602557,0.347327,0.319349,0.82586,0.81629,0.911135,0.109087,0.22581,0.824812,0.0200049,0.150353,0.548495,0.94568,0.738017,0.193014,0.413934,0.963359,0.0730369,0.519536,0.946446,0.154071,0.532472,0.704931,0.380099,0.044418,0.892771,0.189001,0.295483,0.313137,0.0474816,0.308869,0.37952,0.2829,0.00939929,0.214682,0.746877,0.137871,0.447686,0.397364,0.191008,0.304599,0.206582,0.129452,0.977895,0.171383,0.839105,0.00584227,0.863757,0.173839,0.42569,0.834865,0.37231,0.382329,0.933488,0.160283,0.0138478,0.756779,0.999816,0.35374,0.979845,0.961445,0.505077,0.293942,0.953028,0.692796,0.363739,0.835743,0.00180644,0.41106,0.548872,0.126763,0.215313,0.395884,0.73168,0.594339,0.0225469,0.873622,0.558071,0.984977,0.876158,0.102935,0.437084,0.377612,0.213456,0.741426,0.218192,0.224105,0.856472,0.842355,0.370803,0.536914,0.0783525,0.132888,0.891971,0.852036,0.860433,0.00286072,0.50891,0.0839331,0.745776,0.486755,0.00702953,0.0124313,0.645318,0.410565,0.181833,0.855196,0.955414,0.365115,0.159082,0.765225,0.538375,0.782552,0.618469,0.101747,0.766789,0.606147,0.516759,0.624295,0.297051,0.239532,0.342064,0.106123,0.748433,0.581835,0.139371,0.154353,0.778549,0.773151,0.758938,0.42672,0.269478,0.305889,0.395079,0.272068,0.232928,0.22939,0.120343,0.290225,0.126911,0.240783,0.273427,0.605591,0.26172,0.637856,0.301282,0.0381297,0.0352926,0.564383,0.776215,0.709963,0.915428,0.689894,0.0771626,0.911397,0.938451,0.502386,0.957291,0.593624,0.819539,0.433175,0.6244,0.0685308,0.12346,0.867135,0.100642,0.386028,0.576077,0.21056,0.845266,0.679904,0.532702,0.347488,0.939281,0.192519,0.723948,0.419074,0.171002,0.168543,0.600758,0.860158,0.192102,0.235137,0.892734,0.823299,0.823879,0.587421,0.955553,0.0775984,0.381308,0.331803,0.151845,0.397146,0.857872,0.242827,0.309604,0.577476,0.201093,0.275376,0.215519,0.646139,0.1473,0.136582,0.0226535,0.129216,0.638977,0.286126,0.827908,0.70999,0.777489,0.197662,0.971394,0.635206,0.866557,0.0653714,0.598191,0.534319,0.0684284,0.237797,0.746292,0.666186,0.864413,0.861445,0.348906,0.123114,0.330621,0.923502,0.0515178,0.585072,0.84249,0.0204048,0.103452,0.862533,0.525748,0.324191,0.856151,0.0564141,0.709267,0.422653,0.19883,0.314647,0.387238,0.823875,0.448908,0.613356,0.600232,0.460912,0.327876,0.456638,0.64296,0.148611,0.943353,0.524774,0.953703,0.677459,0.973594,0.115904,0.514977,0.919314,0.956407,0.854193,0.479393,0.280893,0.0991049,0.669296,0.64551,0.169774,0.447917,0.5473,0.102984,0.79745,0.10967,0.244911,0.709305,0.072525,0.524293,0.300292,0.916809,0.426462,0.666284,0.0996156,0.17321,0.325463,0.623407,0.0321173,0.827344,0.797487,0.690605,0.0499576,0.794615,0.25252,0.274024,0.121592,0.442759,0.554539,0.0845731,0.67597,0.135067,0.888373,0.985296,0.298636,0.494798,0.734926,0.823456,0.536456,0.474478,0.122797,0.989665,0.889022,0.231206,0.354692,0.901274,0.141309,0.0242382,0.380138,0.617642,0.0684311,0.767087,0.211804,0.316421,0.297842,0.650299,0.794679,0.716089,0.532626,0.816101,0.478878,0.0846338,0.701155,0.101659,0.825592,0.0444178,0.190661,0.544298,0.969469,0.766801,0.574875,0.601737,0.0737977,0.887097,0.571433,0.0586751,0.319009,0.734371,0.502635,0.206392,0.907279,0.175871,0.690671,0.69835,0.950777,0.626284,0.623324,0.894401,0.00075382,0.459747,0.554618,0.928534,0.205035,0.504687,0.686617,0.980606,0.999238,0.778461,0.509231,0.826876,0.02689,0.354351,0.845747,0.0836335,0.241146,0.282297,0.577549,0.601856,0.0644132,0.164572,0.457695,0.253117,0.320193,0.111991,0.769365,0.994773,0.28825,0.82421,0.443407,0.711777,0.390651,0.327307,0.0152175,0.856063,0.99806,0.939699,0.43167,0.734443,0.390216,0.527728,0.444298,0.937031,0.483103,0.384905,0.299426,0.644912,0.490655,0.960756,0.265087,0.712379,0.568332,0.174619,0.0639664,0.454576,0.680401,0.440014,0.110816,0.323307,0.782013,0.460543,0.761431,0.336994,0.790488,0.769286,0.614829,0.961979,0.642455,0.0674019,0.777399,0.375385,0.209143,0.32984,0.378346,0.42843,0.911657,0.932895,0.724565,0.978097,0.812856,0.146959,0.160249,0.494122,0.643542,0.891938,0.0583779,0.0521966,0.531192,0.53858,0.459614,0.0990276,0.702654,0.591583,0.886294,0.920023,0.340801,0.934041,0.631715,0.377542,0.0472239,0.131745,0.344748,0.495575,0.083187,0.788978,0.318711,0.648237,0.736691,0.107947,0.947982,0.43244,0.101996,0.232371,0.746067,0.821049,0.230078,0.20199,0.868132,0.083474,0.65473,0.465022,0.732887,0.66608,0.524634,0.240668,0.630515,0.599946,0.0667906,0.070087,0.810676,0.092403,0.363456,0.757218,0.382952,0.667165,0.076272,0.197742,0.292529,0.348808,0.564134,0.680421,0.536974,0.494347,0.420959,0.130574,0.34761,0.372394,0.650304,0.93159,0.861683,0.985942,0.204659,0.219945,0.605232,0.43036,0.683736,0.337427,0.174683,0.819179,0.634941,0.63598,0.127515,0.688368,0.434718,0.418244,0.731992,0.485035,0.902557,0.252758,0.235265,0.717693,0.171309,0.485072,0.791693,0.73125,0.539466,0.923768,0.506673,0.305884,0.837948,0.134413,0.837809,0.666436,0.532248,0.425822,0.307648,0.9342,0.269247,0.728962,0.742435,0.409289,0.787523,0.0845895,0.992188,0.589284,0.956911,0.514755,0.268275,0.866549,0.409121,0.277432,0.279121,0.218991,0.854519,0.0380215,0.155036,0.51403,0.0294653,0.222205,0.475776,0.570798,0.345392,0.881848,0.977322,0.814569,0.7638,0.736715,0.513061,0.918124,0.884347,0.448989,0.111489,0.208449,0.5177,0.606943,0.0603278,0.0112897,0.102816,0.973275,0.266664,0.354364,0.881879,0.432677,0.750065,0.891622,0.818767,0.455659,0.151686,0.864203,0.281758,0.184727,0.746356,0.704324,0.00527507,0.604935,0.323751,0.518163,0.280278,0.722455,0.701814,0.391979,0.6633,0.840742,0.726872,0.996129,0.803837,0.252525,0.248464,0.0580918,0.285532,0.346541,0.0838473,0.501589,0.513701,0.550057,0.657095,0.228663,0.924339,0.578784,0.376407,0.700992,0.0145329,0.639339,0.398612,0.491048,0.138057,0.22664,0.345842,0.47393,0.855765,0.171752,0.587915,0.5055,0.191358,0.274081,0.853996,0.967469,0.462021,0.0416849,0.971961,0.935479,0.0809226,0.267544,0.834305,0.216877,0.614073,0.858716,0.656275,0.693828,0.734464,0.0501623,0.495401,0.987043,0.929874,0.411107,0.539563,0.475142,0.325512,0.847896,0.744281,0.84471,0.845963,0.289097,0.901038,0.485715,0.22431,0.994299,0.00735682,0.390057,0.564178,0.545934,0.0188018,0.0934956,0.949554,0.19371,0.102216,0.155975,0.781029,0.960502,0.49289,0.124851,0.933089,0.788026,0.578233,0.759662,0.837635,0.402231,0.370422,0.336412,0.841758,0.281308,0.907747,0.386504,0.93134,0.432237,0.559365,0.790783,0.640187,0.986811,0.857728,0.153935,0.971867,0.700573,0.929353,0.876222,0.181324,0.498197,0.0314002,0.152926,0.750587,0.454662,0.778657,0.384394,0.294519,0.28484,0.68763,0.647322,0.549124,0.93041,0.926614,0.688736,0.752219,0.478537,0.377723,0.551627,0.474855,0.544466,0.500594,0.719084,0.400571,0.461293,0.304969,0.93892,0.0899294,0.910509,0.616044,0.250124,0.807028,0.82112,0.0507781,0.678332,0.317432,0.974812,0.566569,0.603078,0.210408,0.419466,0.132898,0.500514,0.481004,0.121009,0.338089,0.325544,0.017058,0.856647,0.331909,0.718845,0.902171,0.198633,0.0965933,0.156429,0.874875,0.307729,0.621513,0.131729,0.406736,0.990733,0.160101,0.327104,0.637731,0.395979,0.899091,0.113827,0.480125,0.40799,0.90085,0.868119,0.886694,0.542359,0.922412,0.88486,0.592172,0.842277,0.49636,0.174857,0.101751,0.841237,0.929283,0.0465912,0.293074,0.811922,0.69809,0.814007,0.527949,0.365975,0.750944,0.503677,0.504184,0.508559,0.170543,0.50987,0.861135,0.897777,0.657395,0.915191,0.668287,0.217489,0.137045,0.306745,0.963604,0.764845,0.175713,0.866822,0.637488,0.884435,0.0349342,0.762463,0.0752572,0.375168,0.878729,0.929174,0.650611,0.404697,0.51734,0.280866,0.344983,0.0307077,0.451738,0.383732,0.199509,0.323437,0.0598043,0.19475,0.366856,0.0715871,0.41917,0.392511,0.901135,0.238607,0.3759,0.574732,0.852668,0.470375,0.91998,0.554088,0.947986,0.12658,0.359019,0.244471,0.70204,0.443906,0.436989,0.789546,0.246209,0.0284987,0.861476,0.752908,0.027168,0.398499,0.218828,0.519994,0.592733,0.0181313,0.839512,0.349472,0.7789,0.744208,0.66555,0.682637,0.0227351,0.824311,0.0926766,0.481378,0.664712,0.354249,0.367532,|0.488892,0.537012,0.110754,0.927975,0.317464,0.80228,0.661307,0.587704,0.662499,0.226279,0.951645,0.803749,0.0125634,0.458121,0.8964,0.529065,0.461392,0.606913,0.956091,0.60977,0.462991,0.302852,0.014192,0.752786,0.0378125,0.545649,0.941306,0.690143,0.280474,0.77041,0.68033,0.375936,0.958699,0.0177534,0.937963,0.982501,0.375657,0.802971,0.760991,0.583182,0.542246,0.392235,0.299239,0.905682,0.775971,0.0858774,0.487836,0.349695,0.010901,0.101796,0.500705,0.396754,0.676993,0.304192,0.369461,0.689135,0.554129,0.259391,0.271912,0.246282,0.547649,0.424605,0.988966,0.287737,0.0166402,0.532014,0.24215,0.405037,0.539787,0.490195,0.550316,0.258083,0.354971,0.319332,0.557381,0.821122,0.928815,0.438446,0.714789,0.678771,0.854997,0.944653,0.294303,0.717044,0.84572,0.937263,0.300728,0.282531,0.2289,0.417325,0.592083,0.35712,0.699794,0.821327,0.462604,0.801079,0.431454,0.740127,0.171501,0.772777,0.629384,0.583813,0.748379,0.659884,0.571692,0.252003,0.401389,0.54666,0.0884823,0.785897,0.323739,0.730057,0.263664,0.759042,0.153693,0.0911333,0.231956,0.301821,0.119355,0.58952,0.27459,0.244232,0.295465,0.564114,0.723472,0.947024,0.670991,0.353559,0.424379,0.381329,0.627733,0.280371,0.633699,0.432428,0.387304,0.451221,0.880798,0.942077,0.721863,0.198828,0.870389,0.486688,0.269604,0.600904,0.160593,0.775897,0.811184,0.937789,0.442818,0.7428,0.18798,0.20743,0.279302,0.0756199,0.238628,0.677138,0.98901,0.263187,0.532734,0.823925,0.423975,0.989507,0.390184,0.576426,0.50035,0.176161,0.533758,0.913327,0.577149,0.543459,0.475987,0.121288,0.237883,0.217591,0.850683,0.0868566,0.0612425,0.323055,0.178354,0.902185,0.644581,0.597344,0.579101,0.791066,0.575956,0.393542,0.0492944,0.11087,0.834229,0.722151,0.734614,0.417174,0.246214,0.494822,0.0165814,0.631021,0.902853,0.405377,0.555134,0.515802,0.469151,0.318621,0.0592678,0.930937,0.310164,0.88193,0.107856,0.141355,0.289039,0.678976,0.0738132,0.82888,0.960689,0.119449,0.868786,0.595777,0.51413,0.58153,0.371664,0.31369,0.183076,0.557604,0.095973,0.7118,0.945284,0.920326,0.571463,0.853406,0.373242,0.425743,0.240093,0.349974,0.17452,0.802714,0.470738,0.324119,0.351754,0.38191,0.921534,0.438198,0.0124248,0.0438123,0.514269,0.789211,0.545481,0.870942,0.758108,0.755589,0.525748,0.331258,0.324899,0.679302,0.275355,0.498277,0.265998,0.918464,0.498293,0.338141,0.661398,0.473952,0.26632,0.403558,0.925622,0.0965838,0.938866,0.789442,0.491034,0.881317,0.588647,0.452082,0.679384,0.175017,0.328422,0.0827053,0.0258895,0.204763,0.528715,0.809771,0.375566,0.896307,0.881637,0.377677,0.160937,0.34134,0.594496,0.941238,0.535788,0.173005,0.258653,0.674438,0.175148,0.370396,0.681248,0.648502,0.932017,0.0857072,0.21526,0.254167,0.0473786,0.73961,0.909123,0.433153,0.351126,0.623235,0.402292,0.716212,0.910464,0.104679,0.0793569,0.410381,0.0416743,0.96426,0.342583,0.777535,0.411854,0.389451,0.804986,0.0288805,0.27487,0.24194,0.802481,0.661146,0.939102,0.540746,0.188768,0.451207,0.355574,0.32406,0.169576,0.775412,0.731414,0.650553,0.632911,0.580151,0.303349,0.75327,0.493996,0.665273,0.00551099,0.709619,0.470265,0.304843,0.394123,0.0279636,0.060309,0.179218,0.34119,0.264756,0.00451297,0.82408,0.496583,0.752036,0.370223,0.977649,0.760435,0.00897795,0.263381,0.655479,0.629236,0.379436,0.307726,0.681274,0.136239,0.351712,0.642221,0.611736,0.343805,0.399297,0.70617,0.825728,0.540096,0.878266,0.24765,0.663007,0.412624,0.606565,0.746107,0.858593,0.113629,0.534574,0.433544,0.332423,0.418365,0.259735,0.284884,0.490283,0.402101,0.17811,0.353439,0.0352316,0.472204,0.756118,0.801466,0.820103,0.151334,0.139077,0.276872,0.090307,0.680343,0.0875703,0.786289,0.251091,0.139457,0.846669,0.285699,0.895598,0.670707,0.179819,0.420233,0.327173,0.198787,0.942922,0.824782,0.207201,0.17266,0.299682,0.638755,0.87148,0.962517,0.683695,0.232861,0.267998,0.874,0.415423,0.993441,0.837243,0.367622,0.0975802,0.0855724,0.203659,0.457658,0.275063,0.0606854,0.535335,0.839403,0.052527,0.130468,0.512154,0.102865,0.526612,0.228769,0.0818864,0.504302,0.0114464,0.267854,0.865841,0.897581,0.334067,0.314917,0.25757,0.959515,0.81089,0.149044,0.366777,0.952552,0.390803,0.856868,0.158585,0.340236,0.376889,0.738885,0.13375,0.629187,0.118677,0.562229,0.775187,0.645997,0.938879,0.889233,0.587395,0.0213327,0.722586,0.402185,0.0789643,0.769035,0.778369,0.624716,0.0910232,0.689949,0.697971,0.364576,0.69846,0.120742,0.938025,0.207149,0.0204838,0.165427,0.156251,0.56132,0.504152,0.273217,0.775926,0.68357,0.561015,0.878393,0.628449,0.827293,0.236492,0.26514,0.793269,0.372428,0.988173,0.312274,0.524749,0.596801,0.695082,0.988539,0.420839,0.193339,0.92651,0.479966,0.785545,0.704158,0.310659,0.461284,0.973901,0.830886,0.300179,0.528081,0.667728,0.236443,0.230803,0.408132,0.518243,0.507462,0.887062,0.221957,0.43482,0.552228,0.95245,0.341625,0.986732,0.403409,0.324173,0.624413,0.00414592,0.652576,0.752553,0.844553,0.821797,0.0302359,0.883017,0.33199,0.0461417,0.368993,0.868856,0.130401,0.631728,0.204066,0.150531,0.0575816,0.226784,0.783312,0.917458,0.380344,0.82801,0.391525,0.281978,0.831814,0.8711,0.27023,0.0657499,0.564633,0.255489,0.219445,0.669536,0.455486,0.981716,0.721927,0.551608,0.914443,0.641171,0.371839,0.991632,0.00252038,0.327023,0.108841,0.448663,0.67781,0.164597,0.858957,0.821997,0.785227,0.683859,0.00417852,0.782927,0.201598,0.567973,0.018696,0.530932,0.480189,0.88552,0.681311,0.996989,0.689402,0.542543,0.506563,0.483243,0.62225,0.444568,0.996993,0.319973,0.734184,0.900814,0.541117,0.124293,0.844606,0.831434,0.959552,0.810885,0.646453,0.413715,0.791285,0.460559,0.525928,0.448216,0.389223,0.508258,0.799227,0.0945484,0.897258,0.638812,0.142823,0.0134064,0.559194,0.820734,0.754378,0.0917837,0.442446,0.0537263,0.0611776,0.423811,0.514129,0.999544,0.374089,0.897759,0.244608,0.425995,0.667108,0.376636,0.785591,0.333115,0.650649,0.776113,0.114265,0.937183,0.562877,0.431493,0.360592,0.800072,0.288803,0.522607,0.277641,0.639633,0.498271,0.611244,0.144257,0.694232,0.555152,0.344491,0.684613,0.182971,0.901482,0.336639,0.676251,0.284531,0.546816,0.258979,0.602332,0.406756,0.267601,0.775916,0.595677,0.434456,0.273007,0.92485,0.326528,0.161711,0.712387,0.940783,0.313392,0.277621,0.669565,0.365014,0.635795,0.805477,0.831849,0.603335,0.466694,0.286406,0.80327,0.650447,0.783011,0.0677564,0.240963,0.837354,0.898459,0.344037,0.957528,0.348339,0.0357342,0.875926,0.0808676,0.291402,0.757432,0.733305,0.539758,0.659487,0.139656,0.11748,0.571607,0.516319,0.474314,0.00798512,0.291941,0.0271673,0.13586,0.47551,0.388558,0.962774,0.744448,0.818951,0.084169,0.203927,0.698224,0.978619,0.295688,0.540672,0.767074,0.305161,0.0208281,0.976652,0.135078,0.484473,0.0975318,0.147508,0.90994,0.13081,0.458586,0.794259,0.42249,0.339054,0.704374,0.783308,0.949366,0.88563,0.920483,0.880878,0.328185,0.914565,0.206538,0.565583,0.607166,0.52258,0.13496,0.472297,0.864348,0.511902,0.874484,0.0894084,0.933194,0.053321,0.899254,0.0489898,0.340284,0.600029,0.492922,0.371229,0.342645,0.940431,0.682448,0.5312,0.188499,0.219731,0.507434,0.872718,0.364959,0.573559,0.99031,0.325758,0.395436,0.440113,0.559497,0.0490918,0.785976,0.455065,0.730925,0.701088,0.523073,0.975885,0.587985,0.529807,0.440722,0.870962,0.150814,0.576341,0.355623,0.0529189,0.905749,0.976415,0.678579,0.456864,0.832749,0.137272,0.817501,0.650458,0.189621,0.131866,0.211563,0.0284137,0.440571,0.398945,0.981595,0.546235,0.0588877,0.510911,0.260521,0.997058,0.428535,0.111102,0.300692,0.286028,0.940972,0.870794,0.713924,0.765963,0.11194,0.529214,0.805786,0.974091,0.526325,0.782006,0.100174,0.707817,0.0353974,0.147247,0.833923,0.761038,0.664515,0.817422,0.0436686,0.734522,0.954668,0.681283,0.0125577,0.873565,0.0164095,0.469829,0.8606,0.874739,0.730551,0.866178,0.542341,0.192246,0.91541,0.452679,0.726364,0.810945,0.59134,0.599557,0.971231,0.188569,0.131003,0.192051,0.231984,0.579504,0.565738,0.798526,0.816807,0.862001,0.217701,0.971519,0.1689,0.891357,0.622423,0.281959,0.464896,0.476391,0.859968,0.34781,0.608354,0.0417049,0.383632,0.824868,0.0272176,0.885935,0.0955517,0.993343,0.716816,0.828879,0.630896,0.763252,0.665514,0.499549,0.364796,0.64822,0.280262,0.793763,0.64908,0.12623,0.381442,0.38049,0.0816754,0.371489,0.915973,0.558136,0.38776,0.21215,0.319431,0.841583,0.683726,0.268944,0.704083,0.31617,0.492036,0.0141049,0.0797015,0.122602,0.0436078,0.790491,0.842949,0.962146,0.909619,0.635243,0.2346,0.942926,0.188474,0.748022,0.991756,0.342563,0.60583,0.803866,0.979207,0.643253,0.661226,0.771616,0.207656,0.37052,0.219545,0.382827,0.830565,0.654935,0.408311,0.294581,0.198496,0.328051,0.60835,0.708548,0.340207,0.805778,0.794853,0.0890193,0.0725154,0.608612,0.409309,0.661007,0.0421673,0.899804,0.374057,0.0440939,0.737942,0.76195,0.9102,0.443111,0.572285,0.438158,0.936168,0.175041,0.884075,0.21381,0.98002,0.21647,0.215266,0.190929,0.598299,0.929386,0.764292,0.777662,0.361961,0.645182,0.547664,0.924107,0.0115475,0.754064,0.0872136,0.418609,0.500466,0.0647929,0.926396,0.689493,0.184918,0.730651,0.158372,0.316902,0.787357,0.629216,0.457875,0.083384,0.698003,0.489665,|0.428916,0.7861,0.607095,0.755896,0.60309,0.143093,0.577288,0.907035,0.577179,0.114723,0.654307,0.834109,0.867503,0.683079,0.163887,0.661479,0.33368,0.853101,0.876113,0.504832,0.078022,0.899571,0.198264,0.505841,0.922312,0.902794,0.897653,0.77915,0.0329812,0.226099,0.581493,0.578458,0.673235,0.507414,0.0951504,0.694231,0.797141,0.149725,0.216004,0.193479,0.250447,0.290827,0.2669,0.877551,0.906885,0.951425,0.957643,0.281125,0.2375,0.55125,0.101357,0.956012,0.708561,0.384435,0.103028,0.291731,0.727846,0.37673,0.278797,0.914608,0.812932,0.802366,0.428081,0.523612,0.60775,0.6813,0.781409,0.853678,0.765645,0.996194,0.21488,0.917772,0.226249,0.0648208,0.161377,0.569127,0.105705,0.226912,0.70266,0.710598,0.470163,0.228574,0.236002,0.680844,0.547796,0.396843,0.0307676,0.67458,0.0927948,0.3159,0.331205,0.151626,0.51623,0.226632,0.126566,0.374125,0.38901,0.0142761,0.0597944,0.826219,0.104327,0.0294534,0.280295,0.535682,0.575637,0.384192,0.185257,0.450705,0.607821,0.137991,0.484325,0.998939,0.228852,0.297096,0.0815794,0.554521,0.990452,0.569682,0.699546,0.506493,0.41757,0.858852,0.436886,0.845012,0.77882,0.703419,0.570653,0.376958,0.79076,0.1768,0.941289,0.398412,0.745313,0.655797,0.5915,0.132003,0.51154,0.781147,0.219105,0.583556,0.466789,0.586357,0.369254,0.848589,0.60588,0.145967,0.909654,0.908555,0.142095,0.326629,0.0914755,0.491595,0.994799,0.991788,0.702726,0.614683,0.381005,0.173481,0.572462,0.767585,0.601513,0.19171,0.152341,0.0712551,0.15382,0.685798,0.934961,0.884004,0.599557,0.72471,0.952979,0.64847,0.169409,0.562565,0.93072,0.354668,0.0359679,0.141801,0.307704,0.820964,0.114614,0.625567,0.917493,0.365548,0.084214,0.869851,0.558641,0.0794984,0.0608711,0.770582,0.835663,0.24908,0.725944,0.682186,0.203006,0.764474,0.597648,0.488053,0.826676,0.897821,0.126489,0.642091,0.030944,0.190509,0.271261,0.293673,0.668641,0.41848,0.379695,0.0583565,0.583436,0.821718,0.43077,0.307647,0.217317,0.872407,0.622477,0.811611,0.957572,0.296294,0.995658,0.0523961,0.184999,0.308861,0.442078,0.662047,0.671196,0.0906288,0.581763,0.618957,0.0153529,0.687154,0.117639,0.363216,0.682389,0.946369,0.655301,0.0477228,0.689683,0.480554,0.437325,0.959683,0.707566,0.433917,0.939219,0.800661,0.186746,0.554186,0.756814,0.103374,0.0915878,0.941738,0.263411,0.961895,0.785957,0.897225,0.492303,0.682797,0.886924,0.631281,0.54431,0.816196,0.8094,0.594177,0.0532691,0.990871,0.736131,0.568613,0.716041,0.0889499,0.224407,0.285746,0.581514,0.969705,0.0875469,0.159125,0.24433,0.0954654,0.906795,0.837025,0.0661585,0.919125,0.0842883,0.145064,0.607799,0.212106,0.129026,0.436524,0.95189,0.763326,0.197327,0.683935,0.368181,0.113893,0.678015,0.340153,0.543555,0.576266,0.410136,0.817666,0.301345,0.664059,0.484745,0.327345,0.715921,0.831597,0.717756,0.973749,0.0120558,0.485296,0.685615,0.970817,0.28062,0.181324,0.732105,0.531681,0.442283,0.0309411,0.312943,0.749185,0.496284,0.287758,0.411819,0.0452648,0.188254,0.7851,0.912043,0.296886,0.747645,0.405429,0.865123,0.597562,0.664352,0.663454,0.192369,0.42947,0.353614,0.748784,0.345112,0.754617,0.365861,0.155858,0.907951,0.862198,0.213559,0.878052,0.122278,0.268154,0.611294,0.477996,0.0910171,0.0757896,0.638624,0.267856,0.98695,0.40579,0.316143,0.375358,0.196323,0.262224,0.0258532,0.132337,0.156062,0.0506789,0.325236,0.314405,0.601575,0.581367,0.207772,0.198966,0.731122,0.583984,0.636205,0.21905,0.458963,0.582023,0.130826,0.82146,0.0610912,0.647863,0.346574,0.424078,0.522979,0.390216,0.663138,0.706588,0.415898,0.231556,0.33693,0.92734,0.0847588,0.237172,0.31723,0.453089,0.501206,0.23455,0.084422,0.490612,0.338924,0.348266,0.298625,0.619513,0.68977,0.238095,0.717698,0.932048,0.78073,0.0971558,0.883904,0.975534,0.184528,0.955701,0.289446,0.537732,0.452035,0.0874664,0.450283,0.290924,0.300235,0.696858,0.43825,0.412748,0.151038,0.533528,0.919486,0.218168,0.11615,0.117996,0.300573,0.758288,0.55915,0.365498,0.306695,0.761251,0.476641,0.0419345,0.644065,0.478924,0.581857,0.916507,0.627125,0.67072,0.625207,0.0294918,0.463394,0.0227381,0.855218,0.0948614,0.877654,0.957644,0.41696,0.855589,0.740135,0.303711,0.283723,0.918878,0.314972,0.464507,0.19351,0.729057,0.280919,0.170163,0.887194,0.169923,0.365669,0.250862,0.596693,0.808602,0.981083,0.380135,0.264932,0.286517,0.413522,0.600683,0.835184,0.983722,0.229403,0.301065,0.224383,0.776853,0.0874201,0.576988,0.553773,0.717364,0.485389,0.211251,0.0722899,0.0887085,0.331674,0.966244,0.570422,0.716435,0.311091,0.9354,0.229979,0.838174,0.986946,0.304306,0.647436,0.389256,0.00513244,0.0150167,0.582,0.673626,0.403869,0.746058,0.0464321,0.51656,0.426116,0.798087,0.353812,0.216772,0.480762,0.886377,0.831074,0.782601,0.317374,0.810683,0.121243,0.259994,0.45092,0.391352,0.0075258,0.723909,0.969068,0.709306,0.881099,0.631211,0.0375572,0.132006,0.949723,0.285799,0.514164,0.343986,0.864907,0.447366,0.333248,0.492768,0.0905395,0.542676,0.870741,0.460045,0.0667325,0.221503,0.430333,0.546124,0.0315682,0.200014,0.785775,0.458975,0.016484,0.155892,0.635995,0.937712,0.0332774,0.242553,0.611643,0.266162,0.400828,0.120381,0.610497,0.0662972,0.425066,0.866925,0.120629,0.170931,0.96161,0.0688923,0.27755,0.28689,0.48025,0.983285,0.467984,0.254669,0.909155,0.0373221,0.0569124,0.0878369,0.374497,0.548205,0.0834284,0.118327,0.979703,0.663414,0.785573,0.505636,0.0933344,0.399051,0.371902,0.544494,0.265587,0.516091,0.882098,0.527432,0.780836,0.630175,0.348209,0.756407,0.512611,0.377029,0.53945,0.109584,0.28001,0.333133,0.762235,0.257486,0.0392659,0.151794,0.134002,0.892953,0.854556,0.241094,0.995645,0.962048,0.744379,0.768052,0.247905,0.587978,0.906931,0.357852,0.41759,0.938853,0.826845,0.425918,0.071017,0.00914395,0.478897,0.178609,0.864012,0.673634,0.0354874,0.79656,0.979422,0.160176,0.551961,0.99383,0.00528151,0.80948,0.509967,0.396089,0.509704,0.39789,0.926491,0.4759,0.69961,0.120915,0.212745,0.20363,0.685651,0.755279,0.0621044,0.500999,0.90683,0.1627,0.417018,0.557397,0.440823,0.239199,0.578042,0.023322,0.520575,0.707291,0.735442,0.182127,0.326506,0.601266,0.604263,0.603742,0.508392,0.11033,0.264473,0.59427,0.779474,0.61753,0.241181,0.931819,0.556665,0.0438541,0.229185,0.0523267,0.561643,0.0537292,0.1592,0.81609,0.517198,0.751625,0.206085,0.451759,0.139929,0.704412,0.493021,0.850811,0.397308,0.447427,0.36961,0.644438,0.358457,0.438407,0.0290786,0.888556,0.921669,0.681765,0.66174,0.939224,0.456209,0.882806,0.111731,0.682941,0.383323,0.707369,0.339698,0.174437,0.811019,0.647712,0.80403,0.810551,0.178277,0.515978,0.651895,0.499399,0.3482,0.75151,0.513581,0.018829,0.179866,0.716649,0.0377598,0.793742,0.660442,0.00648564,0.660245,0.769954,0.631446,0.0127148,0.154927,0.276227,0.641785,0.0190669,0.0310564,0.537318,0.149213,0.428493,0.161332,0.720468,0.944931,0.914818,0.458157,0.723539,0.945233,0.960632,0.346133,0.892107,0.47035,0.884414,0.663438,0.242431,0.312521,0.723866,0.139052,0.170535,0.429633,0.695773,0.111746,0.122926,0.259464,0.460278,0.0266182,0.314519,0.867564,0.305383,0.101512,0.0533044,0.354373,0.0323086,0.555607,0.956977,0.0961229,0.378908,0.315267,0.762298,0.75869,0.288789,0.861049,0.414651,0.468216,0.341911,0.86989,0.500666,0.194578,0.908662,0.121824,0.542735,0.907348,0.0205321,0.533131,0.221446,0.743107,0.0199817,0.668685,0.26339,0.187956,0.581687,0.573415,0.833765,0.613557,0.452857,0.796706,0.0859521,0.701302,0.0599995,0.0146751,0.896096,0.578981,0.43869,0.587078,0.729569,0.0618395,0.414762,0.519991,0.527963,0.364714,0.787704,0.37021,0.354271,0.260766,0.492375,0.751132,0.97719,0.786716,0.879792,0.960212,0.839997,0.346357,0.538089,0.0462215,0.49933,0.0810415,0.309596,0.623509,0.94901,0.262977,0.834063,0.229166,0.918445,0.761519,0.172796,0.941613,0.966081,0.937997,0.822571,0.622912,0.221764,0.773805,0.713104,0.346274,0.758093,0.625885,0.333216,0.501078,0.24075,0.236292,0.427706,0.598053,0.21001,0.333878,0.60824,0.0544744,0.585249,0.611917,0.247249,0.657707,0.185177,0.576982,0.959121,0.555737,0.436946,0.479201,0.718718,0.860138,0.452973,0.710268,0.528784,0.210543,0.598713,0.995334,0.597965,0.99399,0.0149653,0.693931,0.177556,0.762831,0.409141,0.148665,0.668627,0.718111,0.116435,0.0031271,0.960564,0.994196,0.281739,0.29252,0.831605,0.0971072,0.859376,0.850896,0.254729,0.925489,0.0753878,0.516479,0.404329,0.729094,0.0107395,0.580543,0.904022,0.381914,0.468647,0.735456,0.991027,0.995015,0.820151,0.396165,0.360269,0.0797408,0.960433,0.956004,0.966982,0.315646,0.611124,0.0934526,0.281771,0.756219,0.829087,0.998705,0.104297,0.871213,0.581111,0.126155,0.0189389,0.0990703,0.857427,0.0222562,0.128422,0.181101,0.358761,0.694523,0.211696,0.151095,0.519915,0.551163,0.163705,0.521875,0.331831,0.0371355,0.774571,0.546879,0.651012,0.0445128,0.349945,0.363132,0.695497,0.414614,0.889087,0.27923,0.860391,0.673887,0.533829,0.833925,0.74981,0.0539221,0.198185,0.504605,0.530329,0.0772343,0.919177,0.423999,0.125113,0.076931,0.352032,0.736371,0.250697,0.362985,0.137331,0.622024,0.619451,0.00238323,0.148509,0.784289,0.472717,0.148082,0.557741,0.614473,0.504918,0.924352,0.689409,0.142393,0.301306,0.637194,0.725966,0.800561,0.763776,|0.535076,0.383938,0.406663,0.064973,0.00195944,0.344416,0.903242,0.951567,0.108517,0.707265,0.576326,0.567368,0.634743,0.0298163,0.581207,0.903408,0.742662,0.386851,0.12704,0.647829,0.575182,0.606072,0.902979,0.975471,0.658244,0.0925354,0.664997,0.879117,0.827725,0.452854,0.757762,0.0469788,0.983089,0.801711,0.596532,0.0495348,0.665296,0.30142,0.606108,0.0621396,0.970676,0.44159,0.874033,0.00011009,0.131668,0.233612,0.322382,0.071267,0.62394,0.609912,0.895105,0.132837,0.605307,0.360834,0.351339,0.616604,0.72507,0.509213,0.834073,0.835077,0.321436,0.239057,0.348443,0.586876,0.237468,0.268632,0.432029,0.668684,0.973457,0.494563,0.883294,0.431715,0.25971,0.349859,0.271524,0.20239,0.32337,0.37285,0.140796,0.848558,0.978629,0.501984,0.920595,0.372349,0.34342,0.67539,0.846808,0.260515,0.78284,0.950189,0.56924,0.0528267,0.758146,0.627927,0.642363,0.556476,0.302248,0.374701,0.150874,0.230544,0.203379,0.782524,0.0829607,0.252722,0.517856,0.197463,0.399412,0.473098,0.609737,0.594437,0.890948,0.896221,0.234917,0.514012,0.708948,0.910629,0.764681,0.117674,0.761326,0.246958,0.300758,0.85645,0.0105439,0.221643,0.769206,0.174585,0.123215,0.744428,0.826623,0.846839,0.557889,0.291481,0.964694,0.959153,0.297074,0.290447,0.47761,0.864496,0.565358,0.800586,0.0546483,0.19399,0.724377,0.879105,0.809116,0.964284,0.849228,0.628677,0.498368,0.662875,0.996363,0.0831236,0.930015,0.258863,0.273743,0.631515,0.968054,0.374954,0.00407815,0.0721117,0.802817,0.510002,0.556329,0.70872,0.559125,0.903806,0.882759,0.738379,0.932721,0.309224,0.884972,0.761787,0.506435,0.764068,0.171583,0.229456,0.217163,0.459765,0.864943,0.639153,0.136465,0.0499119,0.672383,0.0512254,0.915433,0.61838,0.509038,0.974943,0.79301,0.416606,0.733265,0.678628,0.422363,0.790296,0.512583,0.772341,0.402836,0.653674,0.0668986,0.744159,0.549326,0.702794,0.417282,0.155035,0.880219,0.421936,0.286294,0.740144,0.451475,0.0314525,0.652863,0.991388,0.416214,0.0211617,0.277209,0.900079,0.811682,0.429096,0.917012,0.530509,0.29443,0.926347,0.00403064,0.658623,0.581597,0.449417,0.448707,0.717718,0.261677,0.570233,0.305562,0.090101,0.634206,0.111163,0.106925,0.844846,0.984908,0.726516,0.0390571,0.0074082,0.46483,0.912784,0.627134,0.685744,0.0245829,0.526574,0.962214,0.41085,0.0931807,0.220672,0.998444,0.746575,0.625597,0.702334,0.177416,0.671549,0.730561,0.146287,0.309531,0.79792,0.991896,0.369912,0.902822,0.378119,0.843301,0.707393,0.159975,0.166982,0.866691,0.840244,0.680498,0.0191934,0.545699,0.946638,0.252775,0.69785,0.0891622,0.189753,0.340134,0.74929,0.594937,0.883358,0.529703,0.697324,0.440447,0.554991,0.941815,0.635159,0.0687571,0.490627,0.316191,0.825952,0.672004,0.0439887,0.779259,0.688555,0.40531,0.477669,0.694164,0.175036,0.18469,0.655661,0.600973,0.53628,0.407228,0.270793,0.829933,0.207465,0.450286,0.600895,0.638225,0.082782,0.534876,0.75896,0.264559,0.00576836,0.186904,0.448391,0.188452,0.67375,0.560469,0.726764,0.869132,0.629353,0.291822,0.277799,0.417408,0.468287,0.136175,0.630729,0.644354,0.166899,0.584451,0.587423,0.776548,0.444094,0.57258,0.561242,0.27948,0.191153,0.639998,0.958332,0.436587,0.840657,0.811826,0.911647,0.275523,0.360012,0.185219,0.292852,0.0922675,0.998131,0.446918,0.380702,0.182787,0.742576,0.29541,0.214344,0.645839,0.951878,0.0659411,0.938797,0.902893,0.714403,0.202697,0.878518,0.807918,0.945035,0.438359,0.947589,0.708946,0.711913,0.237401,0.410276,0.884938,0.156904,0.627217,0.917187,0.657067,0.478315,0.599789,0.909636,0.39623,0.409937,0.840759,0.499081,0.0456063,0.91952,0.412862,0.791844,0.904975,0.805338,0.615597,0.764082,0.159205,0.0495169,0.866666,0.396303,0.452791,0.0644402,0.829325,0.834737,0.38313,0.895605,0.138933,0.473779,0.509409,0.803566,0.726364,0.905988,0.359111,0.513255,0.878549,0.500405,0.508313,0.6084,0.998414,0.902767,0.769997,0.32299,0.929708,0.336758,0.127456,0.140977,0.831421,0.212891,0.758102,0.406695,0.822761,0.039197,0.667949,0.416372,0.425825,0.256233,0.482297,0.00120407,0.709627,0.234112,0.335761,0.214927,0.100234,0.269994,0.133089,0.838439,0.271674,0.791845,0.182934,0.260907,0.588372,0.0264196,0.921802,0.761842,0.383197,0.0275145,0.285513,0.292238,0.524395,0.522122,0.216533,0.305933,0.625368,0.00354141,0.154366,0.767149,0.979132,0.750899,0.476736,0.669013,0.0526469,0.790091,0.0922078,0.423661,0.48013,0.505054,0.0147277,0.64681,0.496226,0.219862,0.619199,0.205139,0.322618,0.310773,0.438111,0.268543,0.254627,0.816411,0.108989,0.603558,0.00626189,0.671665,0.00309926,0.0969825,0.835487,0.115833,0.237545,0.692791,0.94186,0.977877,0.591887,0.98291,0.479259,0.709075,0.20605,0.132149,0.325499,0.28784,0.173467,0.933198,0.96254,0.634209,0.804805,0.507538,0.0107336,0.216596,0.88602,0.242537,0.0170962,0.701726,0.596086,0.925697,0.495078,0.556218,0.885845,0.186589,0.228777,0.023042,0.057699,0.940495,0.985971,0.870663,0.284646,0.333844,0.923693,0.662854,0.00817955,0.35841,0.518705,0.177404,0.123927,0.475237,0.936789,0.315449,0.0852144,0.942532,0.403277,0.190022,0.978696,0.100434,0.00449425,0.216103,0.0806056,0.256309,0.456631,0.051138,0.0831437,0.44137,0.223399,0.335825,0.549568,0.641013,0.500804,0.0778555,0.802494,0.093694,0.326515,0.765302,0.997047,0.51287,0.377007,0.348405,0.161956,0.993435,0.388262,0.220706,0.0580066,0.181192,0.924644,0.253285,0.889913,0.597618,0.490912,0.351042,0.214606,0.33298,0.839197,0.818696,0.315399,0.0925958,0.745162,0.856228,0.37054,0.812954,0.599509,0.7554,0.468461,0.715221,0.890753,0.524196,0.771914,0.664505,0.0196998,0.784107,0.392289,0.60536,0.588345,0.279695,0.857806,0.826029,0.0347859,0.126969,0.926925,0.883072,0.307063,0.493571,0.206367,0.11514,0.311224,0.486748,0.812076,0.91905,0.975448,0.417485,0.130083,0.33324,0.642823,0.429649,0.829258,0.502183,0.481274,0.905113,0.173963,0.575334,0.661206,0.139258,0.260947,0.177757,0.140822,0.550888,0.320472,0.903269,0.0595998,0.543784,0.39672,0.0621964,0.259533,0.363847,0.869086,0.00480801,0.794155,0.288429,0.158854,0.512947,0.487359,0.900031,0.776836,0.147668,0.702961,0.132099,0.387599,0.974548,0.77158,0.769042,0.817432,0.336001,0.715352,0.803935,0.128366,0.874291,0.661963,0.258795,0.961471,0.10839,0.969888,0.955631,0.554262,0.518837,0.318879,0.587132,0.365917,0.618445,0.854486,0.325243,0.0961313,0.655222,0.216324,0.499694,0.24577,0.668087,0.48872,0.896219,0.722799,0.525843,0.00132936,0.625442,0.925909,0.296622,0.622919,0.647541,0.569361,0.561853,0.183695,0.870325,0.354075,0.428064,0.962377,0.235821,0.830988,0.78271,0.789389,0.972513,0.53976,0.483511,0.620242,0.315713,0.925799,0.805666,0.370913,0.328093,0.396949,0.570721,0.696777,0.218314,0.86545,0.609986,0.141896,0.392792,0.443897,0.344014,0.803138,0.546271,0.388624,0.92163,0.110123,0.876932,0.945927,0.760116,0.919883,0.903416,0.18206,0.394944,0.430631,0.391372,0.228215,0.773643,0.903381,0.481831,0.961619,0.0886903,0.146846,0.793033,0.0646214,0.618793,0.515127,0.635489,0.13585,0.457665,0.835812,0.314273,0.910697,0.885245,0.880181,0.478858,0.975839,0.990523,0.323682,0.053393,0.323808,0.798556,0.953298,0.693718,0.453341,0.393623,0.690799,0.291294,0.665385,0.577322,0.267112,0.816316,0.739289,0.571344,0.922985,0.673769,0.0209986,0.525161,0.0658912,0.923786,0.360056,0.231806,0.868258,0.360564,0.77214,0.76721,0.971186,0.724618,0.834301,0.207826,0.766758,0.638779,0.472525,0.444426,0.763396,0.188361,0.0450453,0.621008,0.238058,0.75312,0.130182,0.231456,0.419897,0.0363402,0.930262,0.287543,0.882407,0.598759,0.0905739,0.45567,0.104774,0.425507,0.0236564,0.0827638,0.110544,0.613469,0.35443,0.861309,0.754128,0.802392,0.129458,0.985244,0.232876,0.837465,0.215979,0.751987,0.0279095,0.333056,0.152395,0.673621,0.977483,0.705655,0.181856,0.988327,0.968007,0.154392,0.821141,0.657329,0.432639,0.899553,0.892785,0.226163,0.930256,0.60979,0.633922,0.405544,0.401439,0.805027,0.574382,0.184548,0.580512,0.391813,0.0167248,0.713208,0.102635,0.476986,0.917049,0.602992,0.417657,0.0589794,0.75967,0.760925,0.366556,0.815971,0.0505228,0.116328,0.0151968,0.720244,0.352014,0.980815,0.716721,0.721635,0.546058,0.465548,0.404714,0.209968,0.292624,0.731002,0.434339,0.458733,0.978892,0.407306,0.338319,0.276345,0.241664,0.0746761,0.597222,0.186616,0.938071,0.776552,0.967834,0.245447,0.849582,0.801168,0.687749,0.743284,0.786514,0.301733,0.812255,0.661998,0.351375,0.59649,0.307816,0.155629,0.0981007,0.948807,0.503093,0.313297,0.965792,0.795201,0.576881,0.272172,0.997942,0.492514,0.177147,0.0150919,0.536157,0.339524,0.0567017,0.953985,0.873695,0.362559,0.218233,0.185523,0.370801,0.52707,0.0423555,0.742528,0.206956,0.390105,0.413619,0.882735,0.57935,0.0127099,0.496283,0.0649495,0.154829,0.833054,0.48253,0.729953,0.00059849,0.377596,0.239266,0.717194,0.145969,0.248777,0.778276,0.774619,0.101429,0.958715,0.644091,0.0734236,0.78907,0.371783,0.45693,0.486949,0.761867,0.0558272,0.908619,0.40572,0.589046,0.625653,0.816569,0.746447,0.736079,0.574082,0.873053,0.981688,0.190042,0.549701,0.426487,0.806332,0.239039,0.559363,0.649232,0.97644,0.604127,0.665376,0.264995,0.379348,0.260632,0.41452,0.769198,0.214341,0.198887,0.958898,0.274642,0.170408,0.0610052,0.807743,0.702378,0.555024,0.668125,0.581402,|0.498554,0.472561,0.964705,0.0320235,0.819757,0.870068,0.581423,0.399612,0.703305,0.236355,0.243634,0.706628,0.860518,0.0167773,0.765457,0.546086,0.721742,0.797246,0.218723,0.670093,0.394431,0.558312,0.291064,0.542032,0.405563,0.244021,0.211294,0.547253,0.686913,0.127107,0.756724,0.421032,0.0933916,0.541766,0.475098,0.991633,0.686316,0.45819,0.949555,0.1386,0.164538,0.684466,0.00510573,0.673357,0.00862145,0.618852,0.267214,0.732013,0.534894,0.708612,0.659534,0.070301,0.34985,0.681475,0.316934,0.349801,0.48858,0.0322227,0.141785,0.283399,0.919791,0.964217,0.477508,0.399275,0.0100365,0.0348144,0.612312,0.915807,0.753361,0.963268,0.751668,0.419817,0.537775,0.17101,0.755131,0.630878,0.43901,0.324554,0.771287,0.856017,0.558443,0.115356,0.335596,0.118965,0.945879,0.398386,0.276652,0.87288,0.945016,0.818432,0.145276,0.261306,0.516907,0.912175,0.843829,0.145902,0.0765529,0.930866,0.120624,0.559017,0.786371,0.101529,0.865515,0.582294,0.22833,0.449168,0.559485,0.176225,0.353348,0.490453,0.827312,0.774004,0.0495543,0.20288,0.329828,0.0255214,0.912545,0.747986,0.863177,0.398708,0.295619,0.0907876,0.945327,0.325828,0.458821,0.999579,0.444561,0.521419,0.774608,0.406961,0.791724,0.20612,0.114588,0.0760046,0.291162,0.111474,0.276849,0.930812,0.79635,0.708576,0.501062,0.568337,0.155524,0.320819,0.835159,0.155893,0.210698,0.254736,0.592069,0.101943,0.434251,0.448226,0.0538194,0.9957,0.648757,0.502631,0.870742,0.623489,0.980545,0.964207,0.443365,0.928684,0.255682,0.412626,0.612003,0.339445,0.152742,0.523844,0.338853,0.486639,0.782752,0.583513,0.0901594,0.992747,0.135975,0.16456,0.874954,0.972221,0.917605,0.832475,0.986192,0.262944,0.648847,0.958334,0.824789,0.874492,0.881381,0.60459,0.851807,0.605339,0.0799499,0.722369,0.278181,0.320351,0.464792,0.223589,0.662337,0.692807,0.367469,0.531978,0.79486,0.424986,0.728738,0.726673,0.96503,0.276441,0.324874,0.892931,0.522808,0.227942,0.537792,0.662621,0.294846,0.617073,0.39051,0.928009,0.903283,0.489137,0.305252,0.626697,0.226788,0.194977,0.737983,0.783401,0.859334,0.0168164,0.599298,0.215259,0.901494,0.59787,0.787701,0.812066,0.198217,0.965062,0.547845,0.0949178,0.823326,0.445922,0.729614,0.736658,0.664886,0.803138,0.590638,0.699401,0.00291508,0.680647,0.102652,0.988016,0.585248,0.769228,0.740266,0.728266,0.110677,0.478536,0.447164,0.278964,0.592527,0.424635,0.290518,0.677958,0.44144,0.549347,0.322352,0.301276,0.205094,0.68094,0.44852,0.98986,0.146215,0.3241,0.265112,0.581789,0.955223,0.737548,0.765606,0.355884,0.695996,0.846055,0.472833,0.096333,0.928398,0.447526,0.312389,0.172262,0.0393984,0.516581,0.510221,0.0795754,0.796352,0.775671,0.703024,0.335319,0.536753,0.00634509,0.683417,0.871979,0.119926,0.605778,0.195637,0.596917,0.97305,0.35702,0.503142,0.422792,0.46917,0.852175,0.57014,0.664956,0.268551,0.935931,0.0829258,0.793545,0.626822,0.055423,0.284665,0.673586,0.937893,0.312596,0.624567,0.357388,0.0223817,0.352283,0.314264,0.800156,0.50559,0.184617,0.547767,0.672657,0.49415,0.804197,0.550129,0.361977,0.939184,0.21753,0.304359,0.735527,0.650816,0.919813,0.48725,0.00178391,0.915207,0.840735,0.134866,0.917206,0.737232,0.69289,0.847289,0.44137,0.847912,0.384533,0.105946,0.0864166,0.112778,0.665507,0.793833,0.442804,0.838601,0.361759,0.850507,0.717259,0.928039,0.375777,0.276047,0.802102,0.701833,0.698718,0.55412,0.73981,0.171485,0.762257,0.757547,0.0850518,0.232508,0.554102,0.232773,0.218949,0.269806,0.646234,0.637478,0.15476,0.705379,0.594768,0.587888,0.674825,0.154309,0.97658,0.953148,0.120941,0.507703,0.890651,0.472816,0.827499,0.763435,0.91071,0.0115901,0.86542,0.843678,0.98275,0.563218,0.229008,0.629743,0.191963,0.158863,0.113109,0.0803509,0.78888,0.664668,0.241567,0.0839995,0.169113,0.929227,0.14973,0.837999,0.580651,0.366377,0.926659,0.683174,0.643882,0.719603,0.719928,0.483577,0.389299,0.979434,0.301313,0.959253,0.42602,0.832392,0.773143,0.191303,0.753549,0.0333599,0.841597,0.525083,0.907155,0.576434,0.61493,0.917585,0.792106,0.660312,0.175094,0.104732,0.131502,0.692619,0.134962,0.300898,0.765646,0.394023,0.10292,0.618769,0.865169,0.706534,0.977107,0.143428,0.178122,0.227073,0.182263,0.707417,0.662399,0.870979,0.182377,0.797216,0.269211,0.939227,0.242406,0.353191,0.48651,0.955142,0.31399,0.815681,0.714701,0.0713982,0.347291,0.00301081,0.011792,0.276936,0.995229,0.400185,0.849597,0.435571,0.505332,0.43956,0.671713,0.141163,0.705406,0.193825,0.468349,0.170751,0.448672,0.337553,0.333652,0.391199,0.172581,0.942057,0.337394,0.781301,0.313371,0.0551865,0.0492278,0.0164698,0.740452,0.335854,0.26524,0.502966,0.36832,0.787552,0.338545,0.782614,0.0454847,0.0914093,0.2289,0.924102,0.828074,0.790726,0.424181,0.273268,0.567058,0.957022,0.526451,0.543966,0.112256,0.499832,0.758582,0.43738,0.638657,0.827846,0.891905,0.0301008,0.167193,0.612738,0.642286,0.0270674,0.565662,0.485328,0.896199,0.373391,0.147005,0.194689,0.402521,0.82087,0.248459,0.723821,0.521271,0.035081,0.372606,0.244981,0.408461,0.741607,0.736016,0.817406,0.209671,0.105758,0.481842,0.64298,0.377985,0.951018,0.730277,0.644765,0.893955,0.567312,0.574426,0.986622,0.377516,0.18666,0.405735,0.294237,0.0435597,0.758929,0.87447,0.91079,0.137473,0.967664,0.585133,0.897344,0.252793,0.0704709,0.626535,0.522009,0.284297,0.236261,0.191687,0.626079,0.040346,0.0728878,0.571186,0.316623,0.908974,0.477277,0.918883,0.0677995,0.0767703,0.666817,0.35477,0.325381,0.603644,0.361772,0.57737,0.448732,0.369156,0.426989,0.205455,0.752948,0.70079,0.662176,0.340874,0.535574,0.934836,0.0985289,0.0456023,0.953792,0.450042,0.425409,0.244739,0.232243,0.0750135,0.0344319,0.697973,0.734447,0.493735,0.511611,0.82747,0.0893952,0.852505,0.873671,0.0638456,0.229807,0.2045,0.906372,0.798942,0.216156,0.807549,0.532071,0.10314,0.440081,0.464994,0.575031,0.275723,0.0980979,0.810895,0.502322,0.913433,0.693638,0.951745,0.746427,0.645408,0.723854,0.761852,0.381485,0.813179,0.546452,0.918995,0.943762,0.193927,0.794077,0.161215,0.231544,0.278836,0.435488,0.151448,0.735751,0.845722,0.487481,0.825352,0.949861,0.56043,0.769797,0.600211,0.462533,0.616041,0.519488,0.806069,0.702183,0.873843,0.732529,0.225814,0.699773,0.0264032,0.974819,0.469053,0.933335,0.874617,0.402294,0.318782,0.614754,0.386215,0.691815,0.330606,0.484529,0.590692,0.292311,0.567004,0.419786,0.249869,0.246399,0.665081,0.0851271,0.77498,0.618601,0.567917,0.643512,0.191994,0.705964,0.400059,0.922111,0.282185,0.576927,0.960265,0.319187,0.0340956,0.194082,0.595612,0.151064,0.931482,0.432968,0.873629,0.23392,0.968948,0.117117,0.581984,0.96207,0.0397404,0.0802323,0.0264609,0.382544,0.277421,0.140352,0.157089,0.440336,0.493524,0.417056,0.274698,0.786888,0.873761,0.0101579,0.643712,0.865959,0.940155,0.872281,0.231301,0.976062,0.678032,0.919057,0.501615,0.285423,0.70716,0.996454,0.8057,0.973433,0.0623096,0.207512,0.735989,0.00165492,0.569243,0.858223,0.60062,0.786043,0.181576,0.585023,0.068746,0.437482,0.825598,0.00777197,0.818336,0.00549716,0.0216023,0.219282,0.911211,0.608583,0.979982,0.744085,0.686439,0.433319,0.370748,0.902712,0.0726818,0.601575,0.632795,0.353746,0.681276,0.964859,0.277656,0.687368,0.393815,0.125578,0.653721,0.482917,0.0144736,0.23587,0.737026,0.194298,0.0565525,0.432788,0.917986,0.945756,0.113464,0.69804,0.493382,0.102265,0.710338,0.801404,0.92683,0.563756,0.16882,0.468695,0.0380779,0.748104,0.734877,0.677417,0.160834,0.357585,0.930458,0.344732,0.638125,0.563512,0.443557,0.532777,0.213954,0.275276,0.395123,0.395984,0.121504,0.492972,0.741242,0.385548,0.800783,0.709075,0.605751,0.15278,0.14438,0.888705,0.860165,0.914432,0.955575,0.495251,0.122372,0.9882,0.388783,0.157744,0.535257,0.368084,0.727915,0.517155,0.942862,0.388873,0.966903,0.537259,0.611691,0.23392,0.627341,0.979356,0.352034,0.805188,0.904439,0.943666,0.528912,0.863686,0.443428,0.960935,0.820224,0.259329,0.411501,0.606994,0.179283,0.97642,0.334248,0.651076,0.00866461,0.488649,0.703963,0.891708,0.271459,0.450355,0.27732,0.90908,0.213742,0.653198,0.275133,0.874342,0.878101,0.888911,0.802083,0.343299,0.0731435,0.698314,0.855042,0.121818,0.738663,0.671713,0.239905,0.21055,0.932764,0.560006,0.42717,0.496127,0.612718,0.484751,0.0380264,0.727571,0.13024,0.704844,0.381605,0.262307,0.398586,0.785529,0.378228,0.460516,0.440759,0.0653808,0.331786,0.916271,0.850001,0.336508,0.272714,0.975778,0.540197,0.582543,0.643199,0.142217,0.447419,0.0225525,0.390407,0.440517,0.970099,0.398204,0.797937,0.860106,0.554956,0.210478,0.746815,0.902304,0.679521,0.29257,0.306109,0.891781,0.195862,0.333161,0.957695,0.603273,0.663219,0.240888,0.288079,0.404778,0.692969,0.429468,0.222729,0.00859028,0.309718,0.316733,0.880543,0.739803,0.119028,0.301449,0.987615,0.300333,0.659169,0.935073,0.182392,0.33267,0.898739,0.402284,0.156991,0.925492,0.892324,0.217693,0.852214,0.620859,0.272381,0.398532,0.885653,0.202175,0.998893,0.347651,0.422852,0.0875462,0.265326,0.764785,0.855709,0.776228,0.687735,0.249179,0.531952,0.446361,0.638178,0.605331,0.425556,0.574473,0.555133,0.027725,0.68896,0.513144,0.449794,0.683866,0.00950921,0.0749915,0.909792,0.525678,0.659925,0.312861,0.831998,0.959551,0.916857,|0.596057,0.715552,0.698982,0.951882,0.520218,0.808712,0.302545,0.688639,0.95273,0.569594,0.0758789,0.442188,0.738194,0.431179,0.50488,0.0421888,0.535957,0.0190985,0.327536,0.389182,0.233213,0.385644,0.919222,0.413266,0.466512,0.235152,0.0855358,0.279469,0.92116,0.792795,0.171505,0.00289571,0.374077,0.348435,0.873307,0.432705,0.200188,0.819,0.885714,0.954891,0.685338,0.219322,0.530272,0.640726,0.058318,0.241477,0.0222358,0.73359,0.48005,0.591612,0.978657,0.211335,0.0555415,0.156185,0.423496,0.989305,0.357223,0.859755,0.944739,0.921205,0.960019,0.988464,0.0810475,0.354665,0.608957,0.759745,0.642845,0.181491,0.398369,0.914516,0.935342,0.25305,0.305201,0.660673,0.403435,0.349007,0.1265,0.611328,0.654338,0.0780098,0.329167,0.509184,0.821632,0.270174,0.883663,0.311532,0.00165194,0.0099327,0.249302,0.888927,0.72979,0.761113,0.650243,0.696869,0.110424,0.95378,0.162239,0.905244,0.198793,0.960055,0.528242,0.43494,0.853852,0.872837,0.778307,0.910505,0.0400431,0.36969,0.266713,0.173264,0.896815,0.940853,0.648638,0.569933,0.0677546,0.0109462,0.795538,0.375673,0.507966,0.444856,0.408661,0.743699,0.0623111,0.250647,0.28237,0.768483,0.367471,0.530101,0.155546,0.593387,0.714868,0.831146,0.876712,0.436539,0.778598,0.630068,0.439464,0.103422,0.456666,0.341766,0.419389,0.302976,0.993649,0.404386,0.62229,0.792419,0.305242,0.291378,0.621939,0.302907,0.619313,0.781864,0.225277,0.697593,0.199019,0.107637,0.942383,0.968279,0.584909,0.572531,0.815232,0.934204,0.385948,0.914757,0.795428,0.0375765,0.254187,0.660815,0.418471,0.568885,0.306193,0.295334,0.400992,0.670483,0.0875463,0.361376,0.436504,0.843565,0.921119,0.881155,0.181287,0.080201,0.488368,0.60408,0.579857,0.712438,0.762102,0.441023,0.544293,0.789826,0.77841,0.989154,0.00683481,0.891484,0.474362,0.750288,0.530287,0.331469,0.646417,0.288077,0.899804,0.563434,0.818236,0.996466,0.25902,0.752076,0.250766,0.623521,0.629537,0.644466,0.9622,0.502907,0.779519,0.645275,0.517201,0.703408,0.841476,0.0984355,0.0113153,0.0589929,0.0888322,0.0790825,0.387403,0.593562,0.852136,0.0693934,0.216866,0.916336,0.48675,0.168234,0.204781,0.679995,0.56633,0.134538,0.38876,0.328065,0.340762,0.132391,0.680692,0.717266,0.776223,0.700857,0.611553,0.362927,0.784745,0.716143,0.214738,0.227251,0.165032,0.280695,0.483027,0.985388,0.862177,0.082639,0.8617,0.148958,0.738122,0.758299,0.038138,0.664549,0.233272,0.461186,0.939312,0.23143,0.346253,0.884224,0.398249,0.0914636,0.90215,0.560859,0.912061,0.74541,0.985989,0.402598,0.848457,0.448477,0.242506,0.726703,0.700257,0.172234,0.197774,0.840683,0.297613,0.680533,0.5254,0.0502683,0.653113,0.155859,0.757016,0.525459,0.751221,0.732444,0.938832,0.237532,0.560875,0.418743,0.663495,0.23169,0.958316,0.743065,0.124397,0.425989,0.979678,0.952689,0.813354,0.887795,0.547146,0.630357,0.796888,0.261784,0.477526,0.229317,0.497726,0.948636,0.176419,0.919086,0.102999,0.590878,0.492191,0.454588,0.763186,0.301634,0.749457,0.239904,0.712493,0.188466,0.241554,0.136077,0.882751,0.823031,0.755764,0.252965,0.853449,0.383911,0.922394,0.708709,0.156156,0.75439,0.927019,0.851261,0.458909,0.0122261,0.858091,0.828933,0.554158,0.996978,0.687246,0.228304,0.420895,0.236909,0.361604,0.187036,0.25698,0.00502181,0.0909346,0.45457,0.525841,0.772375,0.575822,0.319431,0.949225,0.428329,0.928669,0.888176,0.218501,0.551191,0.65191,0.926889,0.0510536,0.768221,0.991553,0.818901,0.300729,0.592371,0.514255,0.830997,0.624819,0.303784,0.997894,0.990573,0.996464,0.636892,0.832479,0.790479,0.391616,0.848531,0.894144,0.710998,0.0155841,0.737619,0.275969,0.29927,0.956351,0.583695,0.381533,0.527355,0.301857,0.823363,0.468826,0.903462,0.0590537,0.252816,0.996012,0.0422658,0.290846,0.983411,0.664398,0.526984,0.206898,0.0592936,0.73723,0.481163,0.443776,0.988873,0.410253,0.241246,0.824559,0.495789,0.22263,0.129676,0.6458,0.66042,0.379708,0.671096,0.212359,0.238712,0.278832,0.914315,0.38384,0.0941966,0.698307,0.0433225,0.538816,0.742425,0.693113,0.806323,0.884028,0.659366,0.0286984,0.740735,0.146292,0.447831,0.426618,0.0268264,0.537851,0.526733,0.614753,0.0796455,0.761849,0.571686,0.801701,0.138252,0.864087,0.669075,0.621258,0.112084,0.70811,0.24937,0.176733,0.641037,0.36262,0.152607,0.116629,0.878381,0.616426,0.00602555,0.607324,0.193681,0.795109,0.617622,0.911806,0.843788,0.457101,0.406298,0.335479,0.0962387,0.381873,0.414914,0.474381,0.138341,0.528046,0.747099,0.812022,0.912869,0.798783,0.137768,0.860905,0.303935,0.0652544,0.127259,0.194604,0.602959,0.390422,0.287915,0.686329,0.215699,0.00973713,0.513937,0.660214,0.293165,0.340686,0.44046,0.126285,0.494221,0.5662,0.700417,0.0967519,0.202485,0.601734,0.595846,0.0877757,0.00156599,0.380445,0.159044,0.696988,0.115631,0.0794162,0.86544,0.753371,0.111531,0.530864,0.910388,0.842357,0.259275,0.918816,0.120941,0.639369,0.299633,0.433752,0.984859,0.417836,0.728862,0.1694,0.811379,0.74504,0.710404,0.367425,0.662855,0.914149,0.608591,0.983175,0.859368,0.676851,0.172306,0.0315437,0.168843,0.650496,0.163451,0.0798028,0.261423,0.853527,0.391938,0.285422,0.615703,0.234137,0.763342,0.188356,0.0543707,0.597834,0.339467,0.187335,0.50804,0.0369272,0.703567,0.756987,0.146425,0.453712,0.469935,0.998541,0.489137,0.196264,0.782896,0.750743,0.247044,0.368166,0.743774,0.326394,0.902144,0.636671,0.225356,0.518097,0.0834975,0.158978,0.492898,0.532435,0.856263,0.929966,0.305294,0.349839,0.299441,0.47734,0.622155,0.121848,0.72835,0.220101,0.409123,0.986732,0.0255539,0.823807,0.213198,0.841609,0.867637,0.76496,0.634888,0.21438,0.797597,0.748607,0.267966,0.74118,0.528686,0.268007,0.983611,0.547179,0.471843,0.938819,0.941101,0.46382,0.747798,0.397959,0.877854,0.319157,0.856491,0.167931,0.262338,0.0621235,0.621385,0.507702,0.103345,0.452649,0.90825,0.006405,0.94256,0.888848,0.737768,0.968086,0.919089,0.49468,0.436674,0.626694,0.796615,0.336849,0.530254,0.306032,0.0769981,0.36658,0.691941,0.571267,0.17226,0.239875,0.968606,0.526908,0.918331,0.604122,0.922524,0.334802,0.576612,0.547306,0.487045,0.12506,0.00476635,0.170398,0.322953,0.384998,0.52194,0.702514,0.0661475,0.731982,0.245729,0.302524,0.129122,0.422987,0.591471,0.0667829,0.395566,0.512009,0.124986,0.0707574,0.919749,0.906179,0.428565,0.78458,0.726993,0.752468,0.233792,0.560061,0.903086,0.0398812,0.243755,0.764665,0.412849,0.900263,0.420818,0.308445,0.374658,0.852228,0.277142,0.241047,0.589664,0.282079,0.984266,0.276429,0.492764,0.136054,0.667568,0.165202,0.415879,0.773031,0.333095,0.109694,0.697249,0.850895,0.833778,0.73049,0.802702,0.782095,0.903964,0.642375,0.154243,0.453514,0.0803297,0.0878558,0.677308,0.20505,0.690266,0.267761,0.193535,0.125893,0.986766,0.874466,0.71458,0.289373,0.985635,0.549952,0.395477,0.350422,0.469116,0.870547,0.469188,0.89224,0.413345,0.0641616,0.172897,0.782436,0.940437,0.872747,0.445517,0.278326,0.52028,0.82058,0.572553,0.323362,0.181218,0.033318,0.54942,0.420835,0.234608,0.585393,0.244788,0.523172,0.582016,0.730625,0.726107,0.689397,0.279882,0.871142,0.956137,0.935341,0.326815,0.47373,0.646766,0.651047,0.179087,0.426657,0.176679,0.134686,0.763858,0.516362,0.417017,0.35964,0.591389,0.296513,0.257189,0.990277,0.500361,0.293888,0.0655826,0.614129,0.398179,0.912326,0.705329,0.0474097,0.662598,0.360792,0.1629,0.347853,0.555297,0.248938,0.376615,0.839532,0.829934,0.446948,0.227564,0.438068,0.837243,0.00190169,0.0784997,0.335887,0.112623,0.899917,0.369467,0.614621,0.188836,0.174548,0.396913,0.257114,0.0154596,0.580639,0.388699,0.230753,0.961846,0.654108,0.405118,0.125279,0.362817,0.973779,0.659626,0.958672,0.575546,0.825854,0.621951,0.570433,0.0917289,0.560167,0.266359,0.588425,0.465171,0.645825,0.473831,0.127582,0.603202,0.296966,0.36843,0.421045,0.697985,0.554231,0.800709,0.875337,0.921535,0.910511,0.477389,0.604512,0.520114,0.297542,0.917598,0.665738,0.78698,0.540981,0.0249635,0.847075,0.178349,0.71832,0.84549,0.159887,0.867853,0.465621,0.210763,0.667568,0.654002,0.641182,0.48159,0.753061,0.977056,0.862243,0.919165,0.805542,0.473772,0.38423,0.983081,0.318236,0.524406,0.720015,0.124977,0.202296,0.746647,0.581225,0.503546,0.182309,0.398418,0.800171,0.510004,0.466844,0.0787985,0.647983,0.161647,0.776227,0.260189,0.334339,0.753075,0.234747,0.453298,0.163499,0.431126,0.952262,0.73521,0.654665,0.309143,0.249176,0.190776,0.16921,0.752805,0.261457,0.0944029,0.932539,0.870944,0.190419,0.216528,0.00371534,0.517319,0.817889,0.273821,0.301455,0.146876,0.829811,0.955804,0.994927,0.775138,0.844907,0.671274,0.0747148,0.434175,0.545442,0.702398,0.021826,0.744698,0.00221431,0.867709,0.310932,0.333161,0.391374,0.501421,0.0854478,0.882165,0.898727,0.165405,0.195792,0.845419,0.29206,0.690058,0.76196,0.807534,0.545739,0.0834842,0.389418,0.233169,0.93531,0.210047,0.378664,0.962876,0.457236,0.996185,0.840096,0.547348,0.470709,0.921128,0.41315,0.570319,0.299975,0.948148,0.396742,0.876268,0.447772,0.0440663,0.161665,0.345713,0.568968,0.165496,0.784568,0.627505,0.534796,0.716142,0.60821,0.298848,0.476558,0.818719,0.225557,0.989125,0.899881,0.658535,0.897676,0.261426,0.203143,0.604684,0.754321,0.506175,0.888331,0.479017,0.110241,0.836125,0.292128,0.203225,|0.949822,0.883443,0.586964,0.0604414,0.341832,0.844447,0.166755,0.705535,0.896152,0.484203,0.828382,0.349572,0.365992,0.965431,0.769937,0.600078,0.541622,0.499422,0.765424,0.916924,0.759002,0.991372,0.753425,0.247798,0.775922,0.420665,0.919524,0.857055,0.843214,0.120888,0.00439429,0.639159,0.234098,0.978609,0.323836,0.977801,0.942939,0.718245,0.121255,0.362887,0.471672,0.744835,0.861867,0.184038,0.71288,0.583161,0.0943108,0.950423,0.722067,0.783962,0.638898,0.790967,0.923024,0.84339,0.799108,0.296769,0.822603,0.894102,0.106716,0.561469,0.954486,0.902613,0.388677,0.246198,0.479773,0.280941,0.756666,0.59891,0.969383,0.397071,0.65454,0.320681,0.817869,0.679339,0.935292,0.378656,0.72238,0.204306,0.516207,0.765514,0.990158,0.933267,0.935156,0.0841235,0.385997,0.499227,0.828999,0.83618,0.248255,0.00126231,0.385303,0.789518,0.547652,0.510244,0.766478,0.391052,0.239689,0.0806015,0.756997,0.464931,0.772055,0.0167437,0.911381,0.580623,0.863049,0.517238,0.883833,0.0047437,0.639133,0.871852,0.595528,0.959441,0.701362,0.551121,0.346096,0.625912,0.0918043,0.423621,0.71076,0.936727,0.617478,0.0724617,0.325829,0.0328017,0.756532,0.0752848,0.82746,0.307329,0.972046,0.0688468,0.861671,0.613861,0.285432,0.624256,0.14505,0.40584,0.76419,0.818491,0.709668,0.736389,0.810257,0.870111,0.495961,0.986729,0.71899,0.211398,0.832317,0.292708,0.275087,0.293317,0.183366,0.816765,0.0565484,0.901729,0.990413,0.883174,0.819175,0.6451,0.767407,0.83783,0.962167,0.803998,0.974428,0.643399,0.403918,0.276273,0.898657,0.890999,0.675998,0.950044,0.768972,0.0864786,0.914753,0.718784,0.238548,0.554816,0.678761,0.167514,0.431495,0.296486,0.12445,0.567635,0.502713,0.214306,0.971557,0.320212,0.874512,0.457607,0.551041,0.907644,0.040519,0.824572,0.18575,0.0873649,0.441712,0.176978,0.688824,0.642492,0.131031,0.108647,0.438538,0.560242,0.761349,0.493667,0.230305,0.0951365,0.343269,0.157279,0.793756,0.833011,0.841401,0.791893,0.547577,0.460015,0.495205,0.86393,0.412306,0.962941,0.0601701,0.116912,0.0269317,0.84024,0.552257,0.438405,0.702816,0.252481,0.574018,0.743733,0.988475,0.299384,0.372926,0.0148494,0.346136,0.440503,0.82004,0.830958,0.858859,0.0846747,0.18181,0.910724,0.236578,0.458935,0.933433,0.939583,0.209454,0.453642,0.949422,0.708007,0.113597,0.341778,0.385431,0.076434,0.516838,0.377172,0.46596,0.778666,0.721771,0.308183,0.0444713,0.533652,0.197141,0.533476,0.793221,0.366697,0.203184,0.56693,0.599415,0.701328,0.0671747,0.306558,0.892085,0.807433,0.654944,0.135971,0.163645,0.144511,0.598646,0.580869,0.418022,0.769239,0.217581,0.516084,0.306165,0.754089,0.986222,0.633123,0.586316,0.896958,0.257381,0.401322,0.461619,0.248286,0.527776,0.0927712,0.712634,0.686094,0.850533,0.902701,0.341946,0.357154,0.397043,0.706202,0.307399,0.654077,0.374909,0.173909,0.303521,0.861731,0.827434,0.269032,0.886584,0.04992,0.860999,0.0208731,0.220616,0.407412,0.370629,0.612889,0.739478,0.462807,0.466505,0.280958,0.816649,0.0695132,0.268784,0.809976,0.0318726,0.694975,0.986133,0.618086,0.269998,0.788716,0.227386,0.210494,0.348653,0.80408,0.653282,0.816507,0.312877,0.489852,0.278926,0.379887,0.268987,0.400967,0.0968249,0.909056,0.727797,0.622553,0.880973,0.0579208,0.483076,0.186798,0.292347,0.774371,0.2392,0.758282,0.271338,0.932159,0.0358841,0.192006,0.589308,0.419384,0.894212,0.85792,0.507637,0.572184,0.72535,0.192607,0.242972,0.885317,0.764669,0.497891,0.592933,0.0242971,0.949406,0.21475,0.706388,0.841302,0.592349,0.16677,0.806889,0.244901,0.740942,0.86341,0.255876,0.863104,0.0397683,0.809859,0.485034,0.674035,0.551503,0.366068,0.333673,0.208179,0.960265,0.611726,0.983875,0.671936,0.0602338,0.794758,0.548071,0.00878811,0.571702,0.554393,0.615575,0.398135,0.129446,0.0441828,0.501351,0.277799,0.157972,0.817132,0.753575,0.683112,0.26072,0.680966,0.105322,0.991574,0.688459,0.164558,0.56375,0.257815,0.16964,0.604903,0.285897,0.495128,0.384953,0.877857,0.717559,0.327031,0.798889,0.670031,0.892586,0.762798,0.749857,0.470203,0.108713,0.626016,0.657329,0.680056,0.235966,0.236925,0.311423,0.938613,0.215652,0.549085,0.680905,0.295674,0.553373,0.448371,0.929715,0.804943,0.409488,0.637656,0.939268,0.292112,0.338628,0.0363268,0.881798,0.5789,0.0474068,0.169065,0.838679,0.910077,0.999864,0.40307,0.275915,0.190149,0.493998,0.601328,0.412694,0.591382,0.670943,0.702667,0.407957,0.811485,0.341124,0.0354916,0.952331,0.102657,0.621186,0.531873,0.835846,0.193944,0.947316,0.770441,0.545053,0.716619,0.54433,0.0409565,0.218924,0.709626,0.576982,0.661497,0.826913,0.6385,0.106567,0.643458,0.237858,0.811514,0.531163,0.641872,0.523445,0.883421,0.469415,0.251797,0.070531,0.921791,0.201563,0.145426,0.904829,0.0198831,0.55414,0.824219,0.58641,0.991643,0.471178,0.461103,0.755121,0.779268,0.625986,0.590378,0.722809,0.191296,0.374169,0.755194,0.929113,0.817124,0.936431,0.182021,0.795071,0.109432,0.378023,0.484387,0.47097,0.813074,0.80817,0.677606,0.243754,0.362302,0.817954,0.691364,0.617062,0.930697,0.307735,0.758417,0.57505,0.587933,0.662748,0.536949,0.922851,0.416906,0.736187,0.918336,0.260112,0.854907,0.273221,0.406796,0.799943,0.898579,0.691546,0.324213,0.0348866,0.325801,0.248315,0.0892953,0.166968,0.334683,0.605589,0.16619,0.636826,0.784561,0.201707,0.130462,0.0724013,0.0184235,0.39125,0.0139474,0.065736,0.247596,0.101849,0.600924,0.742352,0.192331,0.493664,0.765691,0.237191,0.922253,0.360284,0.343269,0.831477,0.32101,0.769598,0.989523,0.228268,0.118849,0.772439,0.737213,0.780125,0.614351,0.0803924,0.281342,0.84839,0.905318,0.936835,0.176949,0.957405,0.444152,0.388263,0.793381,0.946,0.808611,0.848397,0.0692187,0.484567,0.262976,0.296684,0.641371,0.962062,0.0298492,0.577139,0.336946,0.444835,0.92418,0.00488919,0.718853,0.464961,0.295941,0.615469,0.106205,0.30138,0.358534,0.944679,0.204194,0.699266,0.366992,0.369972,0.422265,0.935907,0.912432,0.437499,0.965121,0.778159,0.649209,0.444481,0.477715,0.180449,0.970734,0.955523,0.971057,0.254796,0.381291,0.338881,0.140642,0.480186,0.802331,0.270374,0.566319,0.144751,0.889737,0.5669,0.773461,0.299005,0.853852,0.757512,0.989072,0.984926,0.850142,0.111748,0.660458,0.192866,0.283582,0.5513,0.625576,0.633957,0.612848,0.137771,0.110146,0.875598,0.501836,0.17131,0.452301,0.279591,0.880013,0.732123,0.585058,0.547494,0.964379,0.995593,0.186395,0.837115,0.708891,0.321279,0.190247,0.659498,0.42812,0.598945,0.66853,0.938285,0.672344,0.475802,0.815502,0.92849,0.414935,0.832796,0.621416,0.872546,0.72735,0.0407608,0.289213,0.837172,0.587348,0.520165,0.501216,0.566297,0.544264,0.662785,0.455159,0.719994,0.963426,0.0372611,0.864125,0.943559,0.0172652,0.328075,0.059354,0.975159,0.638498,0.768004,0.341349,0.612164,0.877863,0.920731,0.234816,0.119403,0.192329,0.465268,0.94149,0.36383,0.311405,0.729851,0.829741,0.315485,0.66626,0.0167149,0.751944,0.98692,0.2639,0.853505,0.0040819,0.809672,0.554025,0.746181,0.445478,0.726571,0.84186,0.608108,0.67772,0.795672,0.747575,0.992754,0.747339,0.424409,0.831422,0.748547,0.86905,0.174967,0.490119,0.637759,0.305018,0.239697,0.58063,0.805236,0.916737,0.199565,0.201413,0.974416,0.280007,0.159906,0.923506,0.222968,0.129161,0.495392,0.116552,0.158056,0.0665457,0.443611,0.0949697,0.612425,0.389664,0.475668,0.573991,0.443997,0.840389,0.0479326,0.982154,0.896272,0.115176,0.867971,0.77001,0.0542514,0.475012,0.251055,0.850782,0.184081,0.445346,0.253105,0.452256,0.957781,0.681374,0.0484079,0.870387,0.987403,0.651228,0.957923,0.104516,0.156708,0.216496,0.144832,0.685275,0.886289,0.50403,0.831228,0.0708694,0.133951,0.98376,0.851584,0.744715,0.793432,0.744352,0.816784,0.420394,0.0236362,0.956843,0.00497895,0.903948,0.406634,0.788319,0.758989,0.3582,0.0644246,0.540254,0.324745,0.947913,0.621008,0.425318,0.0422615,0.409079,0.724636,0.333068,0.0409279,0.0476592,0.313671,0.529651,0.943126,0.68023,0.00856781,0.306063,0.978447,0.0327575,0.339029,0.315266,0.641805,0.825091,0.89995,0.65613,0.4241,0.975792,0.646724,0.143836,0.0751518,0.703905,0.829159,0.466281,0.766859,0.44099,0.716113,0.235599,0.668481,0.338967,0.966582,0.701289,0.528366,0.915525,0.411127,0.652915,0.563162,0.804444,0.439964,0.404539,0.981568,0.725945,0.110486,0.699063,0.180537,0.266984,0.430858,0.347382,0.649442,0.819954,0.236483,0.891245,0.979671,0.802661,0.593862,0.147047,0.585907,0.553553,0.338719,0.501399,0.540194,0.408766,0.904975,0.561715,0.899778,0.229035,0.448545,0.819645,0.770366,0.947909,0.884967,0.252867,0.115092,0.551638,0.768918,0.622997,0.552751,0.00078541,0.223913,0.651029,0.401679,0.438152,0.44439,0.764024,0.431451,0.178882,0.0778193,0.41308,0.283616,0.170033,0.134113,0.694163,0.462341,0.199972,0.732956,0.930649,0.70187,0.72675,0.2929,0.93085,0.577399,0.218434,0.776177,0.838207,0.300158,0.881158,0.781716,0.153883,0.418754,0.0169421,0.0169656,0.687742,0.277664,0.804669,0.580897,0.246573,0.924713,0.256518,0.713663,0.606845,0.935714,0.62297,0.17565,0.378616,0.662983,0.906072,0.598833,0.509857,0.380853,0.497513,0.129162,0.765369,0.657275,0.151728,0.420849,0.85587,0.836639,0.856784,0.117242,0.915451,0.360337,0.18795,0.169354,0.432682,0.0883213,0.983906,0.105599,0.359641,0.566033,0.900608,|0.126755,0.383684,0.810939,0.0316646,0.214359,0.983079,0.15578,0.0502779,0.894868,0.0546135,0.812805,0.503884,0.00591099,0.66919,0.696567,0.344954,0.534247,0.411791,0.897135,0.772765,0.0980244,0.858481,0.255935,0.734179,0.069662,0.901328,0.51172,0.951702,0.362788,0.934617,0.279566,0.509719,0.106461,0.284292,0.732422,0.800474,0.859609,0.132534,0.677953,0.903798,0.0570032,0.137327,0.024227,0.493235,0.0519164,0.409563,0.16067,0.176857,0.311254,0.74233,0.856792,0.581613,0.451667,0.646272,0.130238,0.979306,0.779978,0.402944,0.314538,0.668201,0.664153,0.0136241,0.694205,0.31155,0.159407,0.165187,0.325484,0.455346,0.489965,0.766517,0.457537,0.0552183,0.582314,0.646938,0.993263,0.310654,0.295354,0.372725,0.312426,0.741769,0.846313,0.817662,0.854341,0.870683,0.914138,0.0256514,0.269622,0.983799,0.467176,0.822444,0.933227,0.413437,0.286564,0.782508,0.878369,0.804281,0.995081,0.957787,0.766092,0.478103,0.974661,0.715418,0.075859,0.521776,0.163383,0.916962,0.314045,0.578034,0.313827,0.430531,0.130257,0.699457,0.754281,0.963029,0.913467,0.751922,0.86351,0.439292,0.257988,0.147165,0.763786,0.437388,0.0939872,0.734546,0.798311,0.554016,0.260756,0.939575,0.180001,0.0906161,0.653644,0.915361,0.0726698,0.539489,0.642535,0.347533,0.835501,0.67605,0.66391,0.759449,0.142536,0.527742,0.966671,0.841248,0.790744,0.866466,0.382401,0.753051,0.468813,0.848304,0.92526,0.108308,0.763545,0.270591,0.0893172,0.481485,0.00432235,0.913671,0.515727,0.859847,0.594375,0.730032,0.253616,0.0888152,0.719649,0.511396,0.821095,0.00950193,0.55475,0.837576,0.978314,0.370329,0.359031,0.682371,0.743371,0.370044,0.00702167,0.633052,0.287201,0.856486,0.974624,0.403588,0.933251,0.937595,0.160093,0.657278,0.223667,0.323456,0.246647,0.873199,0.355925,0.184562,0.491632,0.872193,0.0222067,0.362902,0.67788,0.713278,0.837276,0.859258,0.0966873,0.013536,0.697931,0.173329,0.516458,0.680453,0.470437,0.925746,0.990723,0.729304,0.545587,0.663075,0.0789669,0.490477,0.646778,0.211853,0.217047,0.832267,0.361074,0.715281,0.985704,0.81476,0.333123,0.46581,0.754975,0.82989,0.512577,0.780146,0.00935835,0.509467,0.541179,0.501155,0.166499,0.118074,0.694112,0.972987,0.86105,0.430493,0.461352,0.387045,0.544925,0.654471,0.561219,0.231203,0.48802,0.775313,0.720337,0.59007,0.387752,0.00513762,0.894537,0.962929,0.616272,0.58556,0.85127,0.743052,0.572969,0.889715,0.0355052,0.476326,0.215189,0.378803,0.0465163,0.933625,0.120055,0.0570145,0.993198,0.451054,0.677241,0.812306,0.948083,0.732563,0.822415,0.55907,0.917514,0.0469611,0.38249,0.944384,0.744324,0.0115786,0.912191,0.302472,0.214997,0.391968,0.418227,0.271459,0.969101,0.598053,0.37688,0.23202,0.00574023,0.826272,0.67609,0.704638,0.979613,0.185339,0.164748,0.369517,0.94398,0.806683,0.387385,0.104095,0.357065,0.442951,0.928939,0.888422,0.166717,0.394166,0.772618,0.128246,0.592828,0.487166,0.348982,0.0449691,0.40696,0.434903,0.298639,0.80949,0.606152,0.536642,0.652368,0.25859,0.73959,0.0106292,0.403856,0.449082,0.716026,0.0299353,0.525745,0.334587,0.6313,0.545037,0.657066,0.846938,0.685541,0.6067,0.351214,0.546387,0.551132,0.850339,0.798818,0.893063,0.634005,0.114375,0.274515,0.0845951,0.831932,0.170006,0.44798,0.677426,0.597454,0.621424,0.584519,0.13748,0.620253,0.655435,0.0592678,0.750653,0.688574,0.0827371,0.237988,0.900339,0.207843,0.758876,0.716586,0.289317,0.0988334,0.781854,0.599427,0.707627,0.0640054,0.0897815,0.243056,0.501035,0.409877,0.57376,0.817874,0.912235,0.211205,0.539912,0.579156,0.557023,0.762216,0.566695,0.534925,0.0649084,0.951281,0.636711,0.184648,0.69838,0.787544,0.930795,0.5745,0.351619,0.640825,0.340005,0.742844,0.0741733,0.583484,0.386125,0.954468,0.490451,0.870704,0.695309,0.167649,0.110501,0.4893,0.652775,0.497552,0.517354,0.0369123,0.233244,0.634539,0.238785,0.841269,0.433339,0.582861,0.232328,0.414683,0.158511,0.0728158,0.803999,0.211673,0.403587,0.123888,0.451594,0.240436,0.504794,0.448847,0.0697583,0.472499,0.694288,0.296386,0.493603,0.0702479,0.765724,0.53423,0.731383,0.976848,0.903547,0.0989523,0.785745,0.621894,0.658222,0.372682,0.121697,0.581066,0.515136,0.936404,0.466282,0.831162,0.278891,0.109233,0.899583,0.0261022,0.248183,0.338278,0.861328,0.857088,0.287527,0.580582,0.771902,0.643898,0.16384,0.339783,0.998677,0.125965,0.109705,0.632423,0.318064,0.991467,0.220064,0.641544,0.855566,0.0470886,0.222883,0.505574,0.819031,0.159515,0.546241,0.12755,0.922588,0.780509,0.456746,0.762358,0.309606,0.443061,0.585537,0.0521157,0.644399,0.360785,0.758387,0.493436,0.455684,0.258774,0.126277,0.604177,0.791717,0.462158,0.787976,0.703854,0.218304,0.813349,0.416539,0.228656,0.311005,0.434342,0.0971234,0.787554,0.435142,0.186836,0.595166,0.645657,0.0481781,0.216198,0.405665,0.339641,0.8488,0.408618,0.0450119,0.712719,0.65441,0.564703,0.561124,0.575506,0.559075,0.907271,0.884571,0.797476,0.513553,0.780856,0.788046,0.00080806,0.171693,0.872809,0.765199,0.442983,0.150436,0.535747,0.351761,0.65124,0.80555,0.708369,0.691409,0.727146,0.208546,0.0244235,0.652381,0.993813,0.251608,0.782649,0.0673634,0.200079,0.624628,0.543405,0.679595,0.632592,0.332474,0.858954,0.0547386,0.279471,0.760892,0.410674,0.265665,0.549874,0.532821,0.133576,0.974649,0.521937,0.190433,0.313824,0.495116,0.869927,0.50205,0.44353,0.931027,0.169616,0.184713,0.603575,0.630129,0.209195,0.402589,0.383539,0.40765,0.535098,0.939863,0.420591,0.207777,0.178053,0.795504,0.809186,0.412025,0.625286,0.42293,0.0624582,0.286612,0.198297,0.22798,0.0710419,0.942671,0.381569,0.874827,0.344827,0.580727,0.800229,0.417418,0.0214296,0.16801,0.13998,0.5687,0.456808,0.130011,0.321906,0.850068,0.599515,0.824072,0.445152,0.88357,0.465665,0.00332522,0.575071,0.973797,0.771716,0.920525,0.117793,0.687301,0.874883,0.285965,0.10938,0.637235,0.898016,0.191188,0.42337,0.0131276,0.408348,0.134951,0.313848,0.319075,0.919918,0.901913,0.42188,0.163405,0.73562,0.885529,0.433094,0.472984,0.581355,0.224408,0.0802832,0.831611,0.277235,0.984376,0.299067,0.174062,0.172188,0.132956,0.568839,0.673304,0.863577,0.550877,0.854649,0.916704,0.884054,0.879055,0.449891,0.786087,0.994456,0.977191,0.8772,0.311036,0.715298,0.361151,0.0438232,0.496381,0.198552,0.382065,0.2031,0.586125,0.454413,0.587932,0.702881,0.406999,0.510298,0.391866,0.682059,0.571272,0.764013,0.106843,0.774923,0.308059,0.551635,0.839829,0.910875,0.54134,0.24065,0.488218,0.193659,0.0658031,0.395802,0.949535,0.0124509,0.198021,0.228706,0.624441,0.848368,0.974188,0.868057,0.00392604,0.00423062,0.841812,0.351829,0.933485,0.332455,0.595626,0.8162,0.34607,0.49769,0.595906,0.407636,0.229782,0.24562,0.276898,0.617488,0.346922,0.859153,0.912959,0.854567,0.427301,0.672873,0.106762,0.130349,0.881634,0.417489,0.283322,0.907881,0.116838,0.219458,0.2221,0.521732,0.42325,0.527484,0.247048,0.480725,0.976333,0.437807,0.494886,0.765151,0.291859,0.347828,0.580723,0.254536,0.548386,0.797473,0.736812,0.684962,0.0844119,0.572736,0.399502,0.224522,0.293637,0.928038,0.365168,0.808613,0.33349,0.740469,0.31314,0.723087,0.119608,0.794221,0.122356,0.762034,0.412591,0.616454,0.901827,0.074003,0.523026,0.892453,0.957897,0.0499202,0.00373149,0.787839,0.968044,0.818948,0.099582,0.818189,0.282844,0.480162,0.348243,0.376198,0.499603,0.562544,0.791329,0.7396,0.435684,0.424501,0.42474,0.572518,0.138071,0.0417286,0.745626,0.895391,0.435181,0.389803,0.497147,0.702241,0.662969,0.267305,0.647426,0.149774,0.493028,0.614605,0.00416875,0.816693,0.994075,0.0967034,0.134526,0.15683,0.788007,0.100316,0.317591,0.34151,0.444116,0.367344,0.614087,0.530458,0.896357,0.684682,0.614746,0.066299,0.0662065,0.104963,0.039194,0.37139,0.650915,0.161427,0.171538,0.450273,0.84613,0.316252,0.644303,0.0857687,0.139206,0.85076,0.310485,0.637296,0.196616,0.549224,0.0360565,0.922339,0.633665,0.486523,0.422799,0.685444,0.731088,0.527199,0.464634,0.637175,0.556146,0.412881,0.966367,0.752899,0.0480273,0.251681,0.667594,0.296377,0.869851,0.848262,0.112413,0.500977,0.902247,0.579038,0.589661,0.324408,0.639065,0.724435,0.372878,0.158955,0.632272,0.125398,0.842927,0.33124,0.0285649,0.164658,0.743171,0.214214,0.850304,0.6018,0.204217,0.310833,0.410978,0.504784,0.134786,0.9151,0.802663,0.984106,0.118916,0.0653554,0.20151,0.475608,0.280953,0.312285,0.929405,0.611527,0.063253,0.374089,0.641995,0.607171,0.071605,0.0541599,0.480883,0.181373,0.112138,0.43741,0.856585,0.839154,0.203113,0.0490685,0.603332,0.73876,0.959076,0.250227,0.635689,0.826381,0.485862,0.238862,0.433005,0.252637,0.148313,0.349165,0.998275,0.47386,0.320904,0.483571,0.917301,0.503904,0.620152,0.349141,0.96952,0.797299,0.876364,0.728191,0.40499,0.194555,0.237758,0.434206,0.169362,0.356034,0.323838,0.274668,0.726782,0.561611,0.237239,0.57184,0.590927,0.468909,0.825538,0.332474,0.2048,0.96661,0.897677,0.724109,0.287893,0.627752,0.483786,0.893581,0.491451,0.927571,0.08777,0.532162,0.318507,0.475709,0.938365,0.64553,0.440277,0.720447,0.868691,0.814837,0.916288,0.0740475,0.106339,0.626461,0.0849695,0.555253,0.301102,0.191473,0.164703,0.476531,0.591519,0.071617,0.755879,0.829574,0.934917,0.480282,0.956066,0.659702,0.969154,0.538086,0.654558,0.210878,0.00500697,|0.566688,0.374565,0.947154,0.736589,0.889901,0.268215,0.353378,0.282043,0.145828,0.963734,0.163285,0.877997,0.58257,0.255556,0.142815,0.30373,0.777677,0.195938,0.337657,0.752389,0.789689,0.754212,0.378016,0.636299,0.929055,0.80039,0.37177,0.177311,0.319418,0.510743,0.0582531,0.163032,0.10139,0.601981,0.16253,0.0639014,0.289982,0.0180591,0.164499,0.714368,0.495931,0.250763,0.188992,0.634416,0.475901,0.951378,0.372079,0.706268,0.754345,0.808189,0.264315,0.834803,0.257755,0.226435,0.581707,0.749874,0.267957,0.403528,0.206599,0.708258,0.471548,0.689913,0.655084,0.268855,0.668405,0.293704,0.591175,0.626046,0.717448,0.556847,0.464881,0.661442,0.491506,0.863658,0.352489,0.660973,0.0527044,0.499812,0.069415,0.907215,0.213965,0.330409,0.611822,0.309208,0.842804,0.108786,0.658462,0.66748,0.635308,0.538456,0.0216714,0.967439,0.904802,0.473108,0.931675,0.791106,0.5932,0.395379,0.721341,0.177363,0.970365,0.609631,0.635704,0.190236,0.799592,0.805937,0.490402,0.888333,0.76532,0.118858,0.494985,0.302456,0.608778,0.213976,0.276598,0.247954,0.679231,0.792116,0.140141,0.952418,0.448255,0.0454168,0.777805,0.979945,0.92748,0.650443,0.464181,0.660279,0.0410864,0.10457,0.829891,0.0701505,0.935878,0.957657,0.61364,0.607548,0.465497,0.665834,0.698727,0.900715,0.470911,0.24513,0.164622,0.563725,0.572112,0.83011,0.46906,0.454531,0.576805,0.526973,0.929254,0.33179,0.596508,0.965501,0.0879082,0.485108,0.304418,0.213702,0.0693069,0.683547,0.0449831,0.89065,0.500493,0.29075,0.899053,0.78133,0.616084,0.843206,0.606664,0.0146348,0.985187,0.808782,0.778073,0.875538,0.162989,0.610366,0.273681,0.340503,0.797953,0.57672,0.7218,0.469996,0.0144672,0.0641609,0.470587,0.644742,0.551549,0.93695,0.0189377,0.706513,0.527879,0.975284,0.360641,0.295186,0.0420492,0.837011,0.976554,0.721418,0.0717984,0.705397,0.757027,0.839668,0.258417,0.721858,0.0388698,0.612974,0.462393,0.163574,0.222287,0.43967,0.115092,0.0247857,0.953599,0.140913,0.572086,0.00158054,0.150163,0.359153,0.926709,0.194857,0.273198,0.667879,0.253783,0.498889,0.50581,0.314049,0.813381,0.39245,0.952991,0.216813,0.860843,0.438487,0.0808619,0.018945,0.103033,0.244766,0.400082,0.233312,0.513502,0.0446298,0.394362,0.0493482,0.603622,0.262035,0.955467,0.909132,0.161781,0.391487,0.540151,0.973515,0.335936,0.65145,0.897071,0.876187,0.229986,0.29137,0.503473,0.565419,0.96822,0.167302,0.145992,0.920597,0.705672,0.811179,0.757631,0.597047,0.744398,0.759217,0.775868,0.740381,0.311217,0.63517,0.510424,0.77534,0.978327,0.635975,0.684401,0.167658,0.667709,0.59642,0.0610412,0.116182,0.34798,0.891905,0.580801,0.163394,0.395201,0.536956,0.711217,0.858666,0.364114,0.365382,0.0805072,0.940651,0.00835913,0.699053,0.470646,0.68368,0.358501,0.890242,0.334771,0.293294,0.822411,0.731005,0.641743,0.717596,0.838618,0.467063,0.52567,0.643229,0.0742377,0.473993,0.831961,0.451765,0.189992,0.777296,0.643092,0.0929273,0.290806,0.32258,0.357692,0.805991,0.63668,0.424375,0.46163,0.419901,0.602753,0.120806,0.275729,0.794819,0.454511,0.367611,0.0307353,0.199099,0.943102,0.78003,0.468005,0.0988301,0.825441,0.484702,0.424601,0.526692,0.793378,0.937696,0.913352,0.832949,0.778868,0.0545508,0.0410448,0.0667571,0.137053,0.975715,0.241123,0.00263363,0.75674,0.892618,0.737905,0.963192,0.418448,0.775589,0.3372,0.624803,0.207796,0.638177,0.160012,0.0994332,0.0646356,0.299908,0.717618,0.474231,0.640493,0.119551,0.774519,0.0709646,0.520497,0.589995,0.64396,0.836511,0.292398,0.782826,0.556449,0.673616,0.951215,0.753131,0.179929,0.652247,0.556325,0.520468,0.172312,0.78803,0.851863,0.08474,0.700303,0.103659,0.528831,0.209217,0.804056,0.652702,0.662128,0.697515,0.185683,0.197976,0.404296,0.15652,0.763226,0.849268,0.511533,0.00459266,0.618157,0.260516,0.92266,0.203638,0.279519,0.149528,0.336002,0.45117,0.640204,0.834196,0.235249,0.0926576,0.382534,0.483966,0.199025,0.117296,0.294012,0.858322,0.116825,0.95666,0.253008,0.34693,0.567232,0.505271,0.82225,0.146166,0.990259,0.978284,0.825263,0.894111,0.295165,0.866513,0.837903,0.768629,0.203117,0.812805,0.280897,0.284619,0.395393,0.512397,0.0652177,0.500986,0.481702,0.681267,0.760867,0.141934,0.240737,0.558083,0.57232,0.275951,0.336294,0.294379,0.233862,0.0241689,0.719799,0.986359,0.0846781,0.270285,0.375483,0.0279937,0.449475,0.212409,0.435618,0.131903,0.878861,0.0102894,0.0718066,0.472789,0.966224,0.43721,0.730139,0.736736,0.99154,0.494266,0.752387,0.749296,0.463068,0.70473,0.243113,0.806989,0.196113,0.857555,0.168189,0.490216,0.449223,0.987418,0.636247,0.0402662,0.795169,0.816538,0.472405,0.604968,0.701742,0.490983,0.78421,0.187301,0.582418,0.705178,0.468953,0.485769,0.364948,0.0137324,0.37148,0.780587,0.0450117,0.838891,0.695093,0.602409,0.307484,0.551579,0.316735,0.429764,0.299385,0.976076,0.755673,0.278196,0.432748,0.513947,0.0285572,0.413947,0.260208,0.294314,0.292708,0.341012,0.205973,0.951124,0.775482,0.253807,0.638858,0.0725996,0.997381,0.31336,0.707921,0.260544,0.51075,0.140356,0.399213,0.500356,0.85194,0.972732,0.771531,0.0357614,0.189279,0.231207,0.503506,0.167896,0.603901,0.688163,0.287406,0.146271,0.680931,0.215519,0.190148,0.0366881,0.0270892,0.216489,0.374126,0.842077,0.0972779,0.440449,0.797725,0.726219,0.58538,0.623772,0.26238,0.333249,0.587738,0.519835,0.441521,0.502402,0.833935,0.603455,0.251121,0.234934,0.780308,0.839647,0.103164,0.203688,0.973155,0.275383,0.110598,0.153881,0.295847,0.194063,0.877006,0.98829,0.971893,0.269238,0.628825,0.388397,0.267209,0.996703,0.117169,0.248716,0.458138,0.0424641,0.987557,0.594226,0.590763,0.668959,0.632157,0.695023,0.418863,0.581139,0.0812482,0.11067,0.858313,0.828161,0.232918,0.0405206,0.84814,0.72367,0.995549,0.333298,0.226415,0.494873,0.338391,0.176167,0.768254,0.702854,0.571692,0.232021,0.543594,0.402124,0.458648,0.0613312,0.0265241,0.19026,0.0952922,0.265137,0.994694,0.0664074,0.803668,0.294886,0.668236,0.650909,0.484281,0.378542,0.620216,0.721063,0.796666,0.205207,0.301446,0.550878,0.646477,0.284088,0.841421,0.0353147,0.413078,0.0199602,0.661806,0.537201,0.134796,0.0160007,0.232592,0.653686,0.282351,0.532401,0.468834,0.549699,0.400863,0.588777,0.889249,0.571048,0.693482,0.619709,0.371267,0.0467113,0.347502,0.634485,0.452642,0.981087,0.0350498,0.157573,0.532919,0.0423072,0.36453,0.294882,0.344635,0.454088,0.205953,0.498558,0.699879,0.73432,0.548339,0.982037,0.590395,0.404991,0.769287,0.326769,0.0896901,0.96972,0.0150425,0.298755,0.00492483,0.926921,0.85089,0.69043,0.158352,0.754184,0.6918,0.375734,0.904299,0.335489,0.133397,0.782284,0.836703,0.418666,0.87437,0.310078,0.918916,0.854771,0.804839,0.363921,0.635548,0.323675,0.356755,0.776888,0.949778,0.831089,0.65017,0.121746,0.961458,0.544557,0.497395,0.0118513,0.903822,0.196788,0.633978,0.988243,0.78422,0.147654,0.645036,0.443571,0.133352,0.426982,0.912271,0.747604,0.0768203,0.156946,0.145478,0.306949,0.324523,0.601694,0.578303,0.579128,0.0512136,0.449059,0.264996,0.953225,0.225947,0.613887,0.54242,0.5165,0.415208,0.908108,0.42045,0.523313,0.715108,0.311042,0.804472,0.304551,0.896127,0.149814,0.495044,0.452233,0.755679,0.675453,0.557521,0.580514,0.698246,0.282428,0.178403,0.146285,0.471059,0.933969,0.394777,0.383255,0.367642,0.821204,0.753188,0.567287,0.860919,0.0315623,0.349517,0.581433,0.172996,0.249687,0.363622,0.875313,0.22011,0.741968,0.16906,0.344542,0.936815,0.170744,0.438494,0.748849,0.417966,0.050931,0.765442,0.171667,0.927341,0.270066,0.532696,0.425967,0.181891,0.778242,0.260986,0.39653,0.0440712,0.506305,0.650943,0.230728,0.767749,0.519701,0.87656,0.709327,0.774158,0.0856779,0.424556,0.3985,0.695341,0.485586,0.043375,0.114052,0.666374,0.241977,0.708939,0.607829,0.264091,0.671937,0.295853,0.407646,0.34604,0.0669802,0.791164,0.218077,0.174107,0.31107,0.813389,0.752905,0.553287,0.0121316,0.58792,0.431152,0.973417,0.135033,0.925995,0.378431,0.437238,0.955433,0.00397795,0.404243,0.335305,0.0446902,0.873415,0.410718,0.0526958,0.861815,0.599925,0.317588,0.0721248,0.340852,0.670978,0.86249,0.974449,0.443968,0.516717,0.109524,0.427939,0.901185,0.0904677,0.0413785,0.613366,0.592851,0.29504,0.18294,0.884207,0.449041,0.511621,0.834002,0.817517,0.877673,0.557329,0.641065,0.80446,0.0515664,0.897236,0.843387,0.424637,0.269794,0.520051,0.805724,0.259941,0.558773,0.137495,0.582172,0.215249,0.592462,0.0439814,0.721166,0.196253,0.0722147,0.484461,0.77437,0.374301,0.614128,0.149145,0.830665,0.420248,0.0580588,0.905946,0.0592954,0.275347,0.790901,0.926678,0.57698,0.737849,0.0793496,0.720561,0.289212,0.242604,0.426434,0.253689,0.526938,0.325201,0.685549,0.920444,0.832069,0.966872,0.659334,0.792829,0.379301,0.0309154,0.659202,0.640793,0.643296,0.19435,0.765614,0.575352,0.945135,0.834302,0.530935,0.43252,0.747181,0.967996,0.729323,0.456407,0.209429,0.790438,0.467822,0.394724,0.903735,0.639009,0.404115,0.651117,0.924389,0.740923,0.738775,0.66251,0.460265,0.348197,0.0989926,0.599627,0.310411,0.543702,0.258359,0.609807,0.183847,0.194689,0.814065,0.48357,0.696496,0.800326,0.88977,0.885788,0.898976,0.885337,0.279518,0.924071,0.808727,0.675039,0.693543,0.182376,0.618172,0.224935,0.369779,0.851076,0.0929143,0.271646,0.387254,|0.692496,0.146818,0.401219,0.812414,0.160142,0.683942,0.926154,0.896586,0.25774,0.308,0.940124,0.0409656,0.908158,0.168966,0.864199,0.849368,0.774109,0.184391,0.0574343,0.59034,0.694625,0.675321,0.102531,0.890804,0.777649,0.584201,0.348468,0.383904,0.956732,0.904956,0.702035,0.855398,0.985399,0.453653,0.293954,0.329467,0.982621,0.980054,0.00923961,0.470934,0.57987,0.257892,0.351389,0.0919049,0.937576,0.578026,0.158818,0.667068,0.102299,0.144796,0.680365,0.306684,0.562987,0.335122,0.974816,0.896127,0.536337,0.931266,0.923725,0.549649,0.139738,0.414586,0.317719,0.453654,0.0824521,0.741729,0.753916,0.0829806,0.424555,0.79242,0.626472,0.192971,0.468834,0.412417,0.745366,0.100817,0.0110798,0.0600663,0.799181,0.162167,0.161131,0.0959303,0.212674,0.537403,0.0520564,0.236603,0.503302,0.72991,0.394628,0.742403,0.573172,0.74803,0.939493,0.346409,0.370536,0.305291,0.300561,0.255577,0.257102,0.228979,0.903185,0.178703,0.775978,0.694279,0.365578,0.690977,0.532077,0.348984,0.428629,0.337107,0.698212,0.00735027,0.410003,0.151893,0.972639,0.152318,0.143577,0.0525438,0.254646,0.257494,0.927834,0.679686,0.375737,0.1068,0.224359,0.245248,0.697006,0.282027,0.133511,0.477991,0.0141175,0.640514,0.680962,0.101321,0.104714,0.889547,0.314884,0.729002,0.497374,0.00973642,0.898221,0.293839,0.546373,0.241031,0.892989,0.41537,0.882029,0.339997,0.595955,0.893353,0.93035,0.802275,0.952999,0.461333,0.241385,0.862109,0.393529,0.35828,0.853056,0.391557,0.339333,0.197889,0.198737,0.758921,0.611608,0.259145,0.416264,0.099198,0.769162,0.58331,0.489564,0.735312,0.252441,0.157395,0.83139,0.0298769,0.715659,0.428421,0.83001,0.484045,0.199495,0.413473,0.245197,0.919802,0.885277,0.93932,0.631917,0.909196,0.83559,0.734187,0.961121,0.342737,0.363409,0.244175,0.728957,0.742861,0.837587,0.365103,0.963064,0.652695,0.802178,0.136769,0.887189,0.909723,0.206475,0.0791203,0.586116,0.804863,0.917586,0.188536,0.416162,0.881049,0.114294,0.584922,0.104514,0.0976335,0.559975,0.20108,0.750006,0.482689,0.333746,0.683895,0.685041,0.516691,0.511468,0.572303,0.246679,0.506519,0.312211,0.0724978,0.180486,0.301641,0.977271,0.645882,0.946433,0.788431,0.345982,0.694936,0.986542,0.576157,0.176308,0.410975,0.121972,0.706518,0.94093,0.211369,0.463713,0.587287,0.775741,0.369766,0.774707,0.974181,0.00249678,0.0835465,0.239058,0.088701,0.531571,0.347666,0.523101,0.88622,0.973786,0.142529,0.702673,0.866423,0.464325,0.555244,0.836248,0.822499,0.997238,0.565167,0.199154,0.456084,0.361303,0.255562,0.627362,0.0997024,0.725807,0.264219,0.11039,0.846933,0.51204,0.521963,0.599826,0.343822,0.680745,0.864679,0.0650153,0.572057,0.763817,0.381706,0.551667,0.336447,0.798029,0.0290923,0.40062,0.891981,0.0986882,0.865186,0.669816,0.515418,0.37954,0.084071,0.788895,0.376656,0.505703,0.282289,0.24249,0.517959,0.845757,0.620955,0.44878,0.632246,0.316788,0.838662,0.210052,0.0504346,0.874268,0.571407,0.683209,0.0182229,0.413015,0.31807,0.888937,0.977938,0.574961,0.0420807,0.154941,0.191507,0.443005,0.157831,0.420818,0.603736,0.939679,0.650468,0.463048,0.588865,0.364266,0.422496,0.279246,0.130117,0.219681,0.75541,0.107795,0.283888,0.982749,0.968008,0.614444,0.867843,0.0608175,0.469027,0.444241,0.0210707,0.570964,0.697826,0.453213,0.684986,0.629909,0.198915,0.316472,0.721534,0.895995,0.145118,0.246744,0.831138,0.0492765,0.676555,0.804858,0.502084,0.974312,0.117759,0.658493,0.829697,0.00188386,0.745969,0.292007,0.542349,0.318714,0.292577,0.826445,0.97251,0.781097,0.306206,0.669684,0.758774,0.583505,0.841693,0.528152,0.264432,0.851974,0.978015,0.419771,0.598748,0.93129,0.392488,0.534417,0.82537,0.665845,0.319348,0.669815,0.462168,0.861885,0.649043,0.882729,0.868108,0.957275,0.942384,0.727947,0.227663,0.379783,0.270533,0.630155,0.619871,0.855855,0.261469,0.955695,0.132525,0.46814,0.261919,0.0969186,0.417643,0.688686,0.21273,0.187017,0.878131,0.320405,0.54163,0.0935982,0.896934,0.0534272,0.253379,0.754522,0.263244,0.858253,0.836861,0.584069,0.6797,0.583151,0.671006,0.599098,0.779163,0.559509,0.985157,0.667788,0.899106,0.354664,0.259585,0.416025,0.17712,0.913563,0.800987,0.758553,0.422083,0.410351,0.450495,0.945836,0.431283,0.474645,0.464676,0.543873,0.413749,0.76737,0.715641,0.518273,0.702311,0.412241,0.640357,0.394399,0.168557,0.811959,0.195272,0.261576,0.695775,0.0270008,0.751264,0.126905,0.471016,0.390703,0.505839,0.422677,0.794452,0.940059,0.046995,0.574506,0.700013,0.906432,0.39119,0.639061,0.231337,0.526964,0.913223,0.737661,0.579914,0.606661,0.259516,0.0636512,0.728493,0.171061,0.433764,0.106811,0.0868098,0.358791,0.581231,0.561961,0.64857,0.25842,0.00676733,0.0966514,0.647568,0.446534,0.400123,0.790685,0.499199,0.832424,0.424883,0.626768,0.150891,0.690664,0.539865,0.450746,0.902974,0.802833,0.258441,0.340092,0.342866,0.213216,0.352652,0.267238,0.85118,0.91465,0.706506,0.263157,0.477099,0.81423,0.730008,0.791937,0.25662,0.0298529,0.197695,0.950852,0.394557,0.0765076,0.606859,0.39435,0.059227,0.640555,0.262622,0.803968,0.395152,0.66232,0.462423,0.121119,0.128305,0.723676,0.889413,0.344251,0.458386,0.995245,0.315674,0.158412,0.150568,0.311426,0.543722,0.267863,0.858271,0.169407,0.698824,0.129687,0.210695,0.639231,0.771872,0.0862473,0.241693,0.0174818,0.718785,0.614146,0.638954,0.838066,0.782948,0.735097,0.204509,0.496674,0.744969,0.041201,0.662953,0.442327,0.57074,0.206285,0.755388,0.472374,0.556026,0.557675,0.485523,0.697975,0.389195,0.219606,0.512336,0.473384,0.679017,0.0896872,0.131204,0.841398,0.719481,0.993485,0.979918,0.345425,0.357985,0.530965,0.256487,0.0629275,0.692889,0.703555,0.277505,0.892908,0.0185326,0.478079,0.462407,0.118588,0.927752,0.445063,0.105173,0.0549133,0.968604,0.0577027,0.16361,0.785257,0.562181,0.261828,0.859683,0.470122,0.182711,0.403625,0.343575,0.243913,0.700964,0.253475,0.766521,0.987692,0.614727,0.485397,0.958434,0.886916,0.983419,0.665103,0.534869,0.0783395,0.0365734,0.415138,0.642319,0.693096,0.266627,0.597295,0.657038,0.0388794,0.694894,0.453529,0.35526,0.103066,0.533152,0.933133,0.844933,0.686909,0.738345,0.541851,0.55434,0.0580505,0.810098,0.28751,0.502465,0.0950281,0.746773,0.638111,0.397174,0.257219,0.415321,0.722419,0.474981,0.710983,0.956678,0.0783166,0.0609858,0.518325,0.0743362,0.622948,0.791578,0.242433,0.487254,0.0635757,0.446882,0.585583,0.751717,0.913604,0.496419,0.684879,0.85434,0.288778,0.500054,0.745709,0.650512,0.653778,0.765252,0.925857,0.890195,0.625769,0.653371,0.454197,0.42549,0.991335,0.118741,0.438159,0.999049,0.210884,0.100112,0.831773,0.656823,0.707636,0.202994,0.815875,0.142628,0.321143,0.953942,0.581912,0.772607,0.50129,0.25283,0.355935,0.870309,0.870752,0.299723,0.754085,0.460593,0.332771,0.724539,0.643587,0.34604,0.332436,0.742383,0.660346,0.528232,0.355039,0.872795,0.526326,0.0383607,0.429417,0.867193,0.364568,0.8224,0.234234,0.827709,0.912062,0.595423,0.314605,0.963373,0.529012,0.631905,0.205153,0.52707,0.797176,0.61911,0.39738,0.994322,0.239858,0.117536,0.175763,0.750547,0.7843,0.25232,0.727725,0.846495,0.160858,0.272502,0.319916,0.622906,0.785883,0.79786,0.409652,0.0888295,0.152966,0.00813293,0.878868,0.938041,0.0999889,0.42642,0.659179,0.732267,0.609389,0.137486,0.998075,0.0761929,0.691136,0.28932,0.088949,0.842007,0.827696,0.41749,0.98871,0.87528,0.806474,0.517258,0.589172,0.434942,0.113684,0.425954,0.406587,0.447551,0.839079,0.167781,0.875786,0.592516,0.993517,0.387364,0.0104815,0.231873,0.107967,0.729363,0.757414,0.692918,0.0456848,0.883327,0.769908,0.482588,0.682436,0.0160348,0.0123819,0.61451,0.612864,0.278789,0.470834,0.884626,0.637054,0.846228,0.201129,0.972829,0.0501766,0.545682,0.191556,0.480433,0.206641,0.0858169,0.242587,0.694156,0.739047,0.18679,0.0189606,0.0797389,0.940663,0.8697,0.0927184,0.434284,0.173615,0.997104,0.560124,0.360156,0.81304,0.304804,0.830749,0.37942,0.763743,0.248889,0.239005,0.618758,0.854337,0.654068,0.255131,0.201295,0.669836,0.847522,0.295991,0.252546,0.216138,0.963242,0.504438,0.304416,0.541126,0.45496,0.221331,0.904982,0.633987,0.988489,0.819032,0.20172,0.867145,0.866536,0.296576,0.983515,0.300875,0.432661,0.887871,0.0669755,0.525971,0.537951,0.948493,0.559859,0.517412,0.748352,0.32307,0.653538,0.733772,0.357275,0.876629,0.282339,0.0463818,0.687047,0.105014,0.0890222,0.963344,0.431869,0.966706,0.0565024,0.32599,0.953852,0.413288,0.891213,0.605541,0.87037,0.793019,0.136563,0.142433,0.776191,0.301993,0.333713,0.883299,0.40234,0.536387,0.294772,0.800199,0.881857,0.3938,0.428622,0.972034,0.50205,0.526803,0.0855735,0.386266,0.465804,0.22418,0.0163205,0.29197,0.641078,0.691996,0.408085,0.19894,0.985041,0.836645,0.17875,0.110444,0.408041,0.276419,0.483418,0.0796605,0.762144,0.915375,0.65157,0.0062719,0.51438,0.156156,0.914897,0.45128,0.7381,0.718485,0.939438,0.964607,0.874649,0.613389,0.460788,0.158423,0.167105,0.255719,0.820229,0.564239,0.138703,0.287354,0.101621,0.963076,0.556205,0.428614,0.893097,0.423867,0.277532,0.780912,0.495909,0.456979,0.482976,0.3188,0.871608,0.0879958,0.737068,0.531411,0.626718,0.158647,0.383474,0.0928814,0.291151,0.978643,0.0496837,0.211798,0.582878,0.573574,0.843202,0.756249,0.0127323,|0.755624,0.553565,0.216356,0.695154,0.161694,0.403116,0.114685,0.645185,0.984743,0.208044,0.932158,0.122027,0.0403482,0.212053,0.910372,0.60692,0.725181,0.339145,0.728868,0.122389,0.570717,0.388653,0.232719,0.676455,0.122952,0.0288173,0.103601,0.0322216,0.894435,0.391538,0.741702,0.227025,0.096917,0.868156,0.932318,0.485775,0.0870349,0.733111,0.592066,0.556566,0.917913,0.505533,0.75207,0.683132,0.72697,0.0473946,0.744343,0.583948,0.279497,0.22822,0.302768,0.175029,0.567741,0.12021,0.701623,0.768837,0.21762,0.752496,0.734462,0.314515,0.615614,0.630649,0.775349,0.0922269,0.756759,0.770258,0.699206,0.736525,0.797482,0.0959776,0.218616,0.896242,0.428593,0.0442013,0.19297,0.134214,0.865233,0.193639,0.899562,0.373313,0.829071,0.311171,0.653073,0.366403,0.165197,0.56728,0.446819,0.505237,0.18119,0.715516,0.787332,0.929962,0.00671309,0.907255,0.614797,0.648466,0.278836,0.504072,0.0819121,0.275589,0.710519,0.493643,0.647738,0.889619,0.990757,0.641837,0.143483,0.954286,0.753097,0.404971,0.25652,0.00127411,0.981511,0.224201,0.860848,0.730565,0.610947,0.725077,0.107776,0.85851,0.429674,0.856212,0.69999,0.644038,0.791472,0.119596,0.413443,0.79794,0.0991365,0.194126,0.606674,0.844458,0.344291,0.277538,0.492134,0.956336,0.278331,0.0305095,0.259222,0.0848764,0.757661,0.66684,0.770101,0.673127,0.687368,0.154234,0.975873,0.168745,0.170552,0.748569,0.0469311,0.451463,0.504103,0.598974,0.114572,0.419787,0.330417,0.145769,0.509229,0.506028,0.524725,0.611526,0.286368,0.905658,0.466504,0.334609,0.376383,0.408452,0.770633,0.311025,0.0467289,0.156465,0.0426784,0.706601,0.720997,0.920337,0.892718,0.140846,0.314617,0.423705,0.786158,0.970909,0.0135732,0.113546,0.679292,0.0161661,0.490862,0.402668,0.489345,0.911558,0.547031,0.411227,0.597725,0.425319,0.512798,0.467616,0.76665,0.449249,0.479008,0.32797,0.66553,0.174005,0.85164,0.568422,0.271649,0.0577056,0.562142,0.226266,0.388157,0.64092,0.56208,0.765398,0.910444,0.835378,0.411696,0.457769,0.577428,0.507421,0.35078,0.654688,0.226068,0.840743,0.947892,0.0517235,0.880831,0.722525,0.430963,0.403875,0.41053,0.954645,0.696584,0.801752,0.00801665,0.652944,0.95686,0.393659,0.985512,0.240965,0.0427096,0.94445,0.683283,0.649636,0.2741,0.0683063,0.470579,0.718664,0.130957,0.387042,0.93167,0.0594082,0.470787,0.517567,0.89236,0.530869,0.0630854,0.480331,0.0240002,0.337467,0.200295,0.692661,0.765328,0.11378,0.954618,0.100095,0.0865972,0.825278,0.102031,0.551375,0.10843,0.533055,0.215575,0.956219,0.842955,0.875994,0.949141,0.273907,0.575889,0.940988,0.0571586,0.284931,0.123626,0.702744,0.406787,0.211795,0.251494,0.69511,0.742927,0.0175212,0.403434,0.981642,0.143075,0.966651,0.970704,0.200327,0.411209,0.833605,0.904297,0.734483,0.176254,0.988897,0.305964,0.708177,0.750382,0.751759,0.890887,0.206528,0.741222,0.391141,0.153763,0.137774,0.715472,0.175806,0.0958243,0.659996,0.189919,0.214445,0.90387,0.746557,0.14179,0.358576,0.10949,0.584375,0.444112,0.500268,0.657414,0.911335,0.916597,0.0439492,0.903544,0.923775,0.697735,0.102667,0.835636,0.705931,0.635995,0.880708,0.305763,0.586806,0.384647,0.776957,0.136547,0.906095,0.420995,0.126971,0.918323,0.240167,0.31577,0.879108,0.745556,0.850417,0.0347801,0.948129,0.411406,0.588545,0.937427,0.302166,0.792753,0.36933,0.974208,0.275036,0.447114,0.66458,0.523324,0.0458618,0.57725,0.252467,0.595958,0.692399,0.42754,0.120058,0.455387,0.582982,0.290034,0.404928,0.651031,0.996023,0.200085,0.208578,0.479154,0.0121704,0.193156,0.362143,0.233077,0.820453,0.902991,0.610888,0.178236,0.585371,0.18915,0.0310361,0.184985,0.187684,0.610937,0.342229,0.471131,0.744656,0.529881,0.675292,0.79574,0.294626,0.869942,0.376791,0.0791174,0.424034,0.0586538,0.0623294,0.0784423,0.333273,0.309045,0.922906,0.790857,0.870931,0.92365,0.922337,0.303422,0.365737,0.658743,0.137188,0.109709,0.614174,0.718701,0.158943,0.311457,0.823155,0.383515,0.321505,0.390112,0.791183,0.823112,0.24,0.20551,0.185863,0.985024,0.601711,0.178852,0.910018,0.578088,0.663084,0.554535,0.966807,0.841049,0.992184,0.0750751,0.189414,0.210653,0.826901,0.115677,0.442904,0.872684,0.507705,0.798708,0.73543,0.0962808,0.23886,0.788773,0.862512,0.0198458,0.721109,0.822778,0.528737,0.537826,0.0660164,0.152567,0.539105,0.0402022,0.695955,0.765947,0.897498,0.377108,0.100038,0.812327,0.531937,0.489029,0.0189737,0.865176,0.602844,0.333762,0.419683,0.133485,0.860201,0.466494,0.0805159,0.765864,0.433696,0.171939,0.185152,0.838421,0.107938,0.498445,0.642703,0.874188,0.280373,0.20038,0.628545,0.963918,0.289447,0.726447,0.674544,0.361255,0.0213307,0.146863,0.143511,0.789759,0.985923,0.943492,0.562537,0.842899,0.703349,0.189118,0.163701,0.719019,0.231747,0.281518,0.551578,0.0464994,0.158879,0.918235,0.879579,0.703993,0.247836,0.579647,0.358611,0.106384,0.520256,0.569145,0.711869,0.93532,0.0731584,0.0213432,0.463655,0.345346,0.238879,0.0879208,0.690764,0.223459,0.278441,0.560107,0.221921,0.089383,0.427256,0.922575,0.876963,0.282585,0.750254,0.643163,0.388909,0.378095,0.477081,0.802549,0.177549,0.0559298,0.951866,0.423671,0.472651,0.346401,0.0523766,0.83607,0.120593,0.0319005,0.0249203,0.739904,0.748278,0.742343,0.94701,0.885023,0.567951,0.178598,0.28035,0.966832,0.618763,0.482973,0.360731,0.776594,0.943638,0.868711,0.80424,0.872335,0.629354,0.563393,0.887791,0.101182,0.752287,0.31333,0.529273,0.729935,0.0986359,0.685424,0.159882,0.748996,0.90527,0.766693,0.923826,0.784335,0.295196,0.40096,0.911771,0.657112,0.932094,0.863469,0.452107,0.196313,0.550426,0.531822,0.404834,0.345278,0.528702,0.742355,0.0568737,0.764904,0.463269,8.89897e-05,0.0961747,0.0865389,0.0482231,0.22231,0.607059,0.867707,0.514311,0.285457,0.479907,0.957681,0.706948,0.587017,0.0957443,0.246599,0.279125,0.784824,0.562732,0.973119,0.606143,0.0624316,0.0187365,0.275594,0.910266,0.288393,0.960599,0.808567,0.602524,0.756937,0.260261,0.190846,0.761971,0.505514,0.302921,0.0766413,0.770954,0.80861,0.275565,0.178295,0.157669,0.7289,0.948354,0.721728,0.210345,0.753602,0.0622445,0.679915,0.772748,0.586351,0.451032,0.972724,0.467026,0.459155,0.397257,0.221416,0.0998971,0.866947,0.0684054,0.941557,0.00478345,0.785456,0.856278,0.550773,0.279375,0.361054,0.678189,0.222339,0.0988643,0.0981525,0.708426,0.146038,0.659781,0.89595,0.787896,0.827763,0.174025,0.416914,0.0292547,0.807302,0.143369,0.163323,0.208176,0.143532,0.367096,0.787383,0.0504747,0.555411,0.679893,0.916692,0.535288,0.129489,0.330593,0.43511,0.0184011,0.842365,0.706284,0.152967,0.620061,0.21601,0.122373,0.81254,0.145974,0.901062,0.777634,0.662451,0.796494,0.00228453,0.405332,0.646244,0.423943,0.98305,0.981626,0.0631987,0.972076,0.279094,0.00302821,0.445864,0.144282,0.893214,0.580935,0.392565,0.966226,0.383347,0.720381,0.0640372,0.548576,0.225303,0.673221,0.747821,0.316943,0.00672048,0.134155,0.469518,0.129661,0.640006,0.538823,0.312909,0.132626,0.130306,0.592058,0.141651,0.34743,0.532957,0.746846,0.0905779,0.134756,0.261967,0.758813,0.496069,0.460351,0.417907,0.985972,0.954035,0.383527,0.503362,0.964249,0.977558,0.358343,0.708905,0.13049,0.0880035,0.679364,0.939857,0.356804,0.363086,0.346046,0.446724,0.630618,0.601043,0.137479,0.389843,0.633325,0.711365,0.846606,0.718699,0.511263,0.650017,0.371577,0.582589,0.634246,0.184439,0.934789,0.110552,0.00878048,0.04143,0.383281,0.425417,0.302271,0.722235,0.2541,0.0902331,0.434246,0.358072,0.732005,0.282529,0.245601,0.0747729,0.26576,0.434221,0.411076,0.77498,0.19941,0.354876,0.376131,0.15511,0.0899713,0.223468,0.852388,0.553994,0.138772,0.649694,0.401225,0.474271,0.909218,0.0403133,0.648111,0.929409,0.803092,0.713564,0.499267,0.902384,0.728572,0.897057,0.432682,0.798926,0.425524,0.443095,0.618373,0.602674,0.153801,0.0989842,0.623464,0.778319,0.538772,0.777853,0.339662,0.342922,0.372429,0.873915,0.351087,0.209123,0.767907,0.298654,0.415635,0.763219,0.840949,0.841549,0.0112397,0.923417,0.769144,0.318957,0.467084,0.316294,0.0546658,0.269455,0.0983489,0.695431,0.446431,0.197602,0.0394232,0.426627,0.360745,0.598596,0.92146,0.920787,0.695749,0.168148,0.318913,0.424092,0.801154,0.236171,0.995752,0.490612,0.0841146,0.241133,0.579603,0.743831,0.599329,0.975816,0.409109,0.31682,0.505701,0.0663748,0.676898,0.340015,0.444161,0.560089,0.230979,0.543406,0.100642,0.0506833,0.366155,0.722705,0.00781769,0.755825,0.934902,0.0956526,0.042082,0.757063,0.136757,0.0387399,0.152986,0.130325,0.175105,0.81244,0.758107,0.539991,0.641337,0.0885237,0.846904,0.568758,0.672011,0.775131,0.602588,0.380393,0.239339,0.759274,0.748456,0.861479,0.513137,0.521938,0.329836,0.896278,0.0858663,0.83592,0.751341,0.317922,0.346881,0.186153,0.941712,0.153197,0.360994,0.492308,0.464953,0.900407,0.745137,0.0842834,0.566034,0.0394993,0.111949,0.809359,0.955323,0.0728045,0.902545,0.525385,0.978546,0.0512311,0.895113,0.61186,0.745072,0.324707,0.52955,0.903643,0.91034,0.696226,0.222727,0.555355,0.0646598,0.523839,0.118597,0.560921,0.98448,0.221171,0.105303,0.17317,0.649672,0.812775,0.89757,0.211597,0.461004,0.881132,0.752208,0.33187,0.969103,0.19977,0.390321,0.0508816,0.600113,0.819817,0.906031,0.600831,0.197363,0.964862,0.953596,0.827289,0.0357334,0.737521,0.962561,0.199575,0.105663,|0.741889,0.252643,0.270207,0.00682569,0.081089,0.42849,0.426546,0.499783,0.989606,0.73998,0.571923,0.36184,0.20658,0.47703,0.996397,0.419647,0.0320173,0.912712,0.707603,0.896293,0.205724,0.987629,0.354363,0.0345485,0.570943,0.199135,0.685461,0.213162,0.461863,0.0865573,0.987941,0.491338,0.137828,0.129332,0.308614,0.932128,0.343787,0.36061,0.670421,0.943541,0.381759,0.561644,0.885287,0.860645,0.456771,0.293575,0.314436,0.58452,0.72816,0.47234,0.116089,0.0723127,0.907399,0.871974,0.857908,0.701311,0.50578,0.737976,0.493426,0.939995,0.297329,0.62699,0.692973,0.297664,0.50093,0.176998,0.220059,0.408514,0.118906,0.624329,0.383603,0.595468,0.147282,0.819289,0.897101,0.270562,0.719544,0.561468,0.850253,0.0487951,0.788281,0.437188,0.860941,0.600772,0.507606,0.358064,0.502541,0.503792,0.444882,0.620294,0.669408,0.853777,0.174324,0.96452,0.116323,0.596761,0.570335,0.819066,0.758599,0.13815,0.919554,0.824847,0.457374,0.0541258,0.305126,0.969822,0.147767,0.835618,0.469233,0.262123,0.382326,0.0633774,0.468645,0.445378,0.00944316,0.155032,0.579998,0.669546,0.109813,0.526858,0.782408,0.666332,0.365137,0.695269,0.397654,0.0768144,0.963802,0.653106,0.716886,0.230722,0.954288,0.621828,0.0639045,0.595413,0.888795,0.835992,0.543816,0.592549,0.82973,0.0265515,0.688317,0.176418,0.0244496,0.188111,0.545886,0.0986592,0.290322,0.666395,0.184745,0.705709,0.594188,0.651954,0.669238,0.906784,0.663569,0.852512,0.000274479,0.453274,0.341778,0.902633,0.231392,0.166237,0.363578,0.131743,0.937592,0.785564,0.945415,0.449101,0.334757,0.591044,0.64917,0.422838,0.494169,0.814361,0.580552,0.894317,0.147208,0.720576,0.706006,0.955971,0.487509,0.619243,0.279605,0.676531,0.912106,0.332398,0.0644454,0.987431,0.105046,0.995666,0.517099,0.83067,0.929693,0.748836,0.796657,0.163614,0.23445,0.686204,0.50436,0.00226223,0.642664,0.323556,0.956405,0.762579,0.700769,0.767301,0.56194,0.975292,0.801498,0.724255,0.450788,0.788887,0.230211,0.672612,0.198418,0.117949,0.291854,0.185382,0.0500372,0.143866,0.78858,0.413723,0.876319,0.128343,0.654418,0.711346,0.69482,0.758713,0.413215,0.527305,0.441833,0.946963,0.691699,0.326525,0.793106,0.464361,0.875196,0.213357,0.628,0.406262,0.766919,0.377959,0.514884,0.117307,0.87305,0.200234,0.965556,0.940107,0.0153412,0.683024,0.63778,0.739835,0.852919,0.815854,0.338224,0.638398,0.90951,0.43793,0.670975,0.141867,0.279404,0.792503,0.612588,0.841908,0.570795,0.389238,0.40948,0.126339,0.79231,0.902999,0.969921,0.474717,0.920774,0.751738,0.763941,0.668178,0.291774,0.227923,0.0395682,0.635971,0.778156,0.100043,0.186527,0.981245,0.575943,0.850418,0.454226,0.859037,0.904927,0.136377,0.790273,0.911212,0.0229229,0.801634,0.879701,0.035364,0.0308076,0.368496,0.762636,0.779631,0.811395,0.606839,0.972112,0.216043,0.345277,0.916625,0.0840032,0.279423,0.548959,0.10341,0.611025,0.280972,0.71054,0.291189,0.959449,0.948865,0.387192,0.729091,0.630983,0.594149,0.12474,0.218532,0.154194,0.105572,0.737128,0.518031,0.179783,0.746112,0.421883,0.312226,0.798548,0.997387,0.131632,0.498776,0.699553,0.808568,0.420359,0.898844,0.0956826,0.612567,0.929872,0.912123,0.502234,0.408038,0.840571,0.479903,0.546061,0.0299246,0.375406,0.185797,0.750598,0.321985,0.57291,0.342868,0.853054,0.394082,0.849304,0.00512052,0.356786,0.925475,0.0350309,0.568745,0.190449,0.679811,0.401431,0.763817,0.72483,0.719128,0.156389,0.244844,0.92502,0.218561,0.159763,0.253528,0.326813,0.192242,0.0710798,0.913684,0.688111,0.478479,0.282758,0.313478,0.168602,0.019577,0.948184,0.549647,0.161713,0.991214,0.221336,0.463087,0.114874,0.73484,0.864278,0.462195,0.122443,0.605717,0.773165,0.945725,0.298053,0.357633,0.183939,0.558879,0.685956,0.506152,0.114007,0.169501,0.592279,0.911623,0.240519,0.880191,0.344837,0.281063,0.15459,0.596141,0.530978,0.757346,0.754627,0.694006,0.600164,0.973223,0.0254841,0.632695,0.709547,0.0707538,0.0742335,0.324023,0.389648,0.371748,0.937723,0.0113819,0.342579,0.967724,0.0547945,0.521785,0.0148827,0.57827,0.770533,0.645993,0.23897,0.670159,0.618592,0.954945,0.540186,0.47686,0.779109,0.0847546,0.0211333,0.359212,0.402581,0.454866,0.615537,0.411275,0.688372,0.517896,0.712992,0.445299,0.995335,0.284181,0.620517,0.418978,0.83461,0.266652,0.382056,0.380816,0.706721,0.420428,0.727397,0.585445,0.0053708,0.784722,0.150535,0.41636,0.29416,0.559411,0.467597,0.833523,0.719851,0.203784,0.0416781,0.914196,0.966229,0.243731,0.766177,0.546676,0.405153,0.310574,0.683453,0.98016,0.849026,0.91564,0.870005,0.813557,0.276916,0.861491,0.502724,0.543222,0.163252,0.363782,0.787074,0.265561,0.409381,0.463926,0.0852344,0.385831,0.895226,0.599167,0.117204,0.485504,0.356096,0.462874,0.186386,0.665937,0.288508,0.98154,0.312415,0.583939,0.923122,0.302047,0.251175,0.766496,0.878484,0.669773,0.467494,0.528882,0.796309,0.346587,0.0530179,0.894174,0.900637,0.599694,0.622214,0.351288,0.479454,0.764276,0.996042,0.671685,0.186971,0.126462,0.807199,0.798354,0.509128,0.584525,0.455486,0.906685,0.812521,0.387788,0.635617,0.302353,0.568893,0.598878,0.142594,0.271208,0.871839,0.85679,0.521045,0.208138,0.817155,0.808539,0.882632,0.731667,0.66466,0.65591,0.322389,0.245675,0.31919,0.69272,0.606353,0.860803,0.711287,0.84963,0.857299,0.618737,0.706948,0.267611,0.754213,0.181353,0.547968,0.187506,0.582376,0.196931,0.379393,0.0142087,0.0532993,0.926044,0.74408,0.988528,0.593475,0.89338,0.3498,0.260357,0.0681598,0.111352,0.221105,0.301,0.515993,0.696194,0.331103,0.594456,0.822496,0.382427,0.896269,0.130091,0.754796,0.545456,0.842666,0.850027,0.00212264,0.14863,0.58159,0.376355,0.877528,0.21693,0.682412,0.232552,0.407696,0.912061,0.253779,0.925814,0.554956,0.505204,0.599297,0.340353,0.265802,0.251779,0.702083,0.669745,0.91147,0.0802016,0.635,0.610734,0.0205433,0.872367,0.00175846,0.48063,0.56246,0.260836,0.961476,0.241948,0.988141,0.272103,0.627704,0.854646,0.694427,0.594406,0.715165,0.540652,0.0157751,0.637096,0.290186,0.196877,0.405747,0.884928,0.811743,0.165772,0.683692,0.746715,0.893369,0.213916,0.674582,0.221758,0.539145,0.817718,0.0428215,0.556016,0.301724,0.108377,0.133374,0.309051,0.902014,0.907041,0.62859,0.198154,0.247293,0.83539,0.924634,0.925934,0.768007,0.745924,0.768857,0.20697,0.239512,0.471651,0.362283,0.000757575,0.252319,0.603977,0.957445,0.818309,0.215055,0.810388,0.55544,0.511286,0.265372,0.340424,0.161195,0.142781,0.926928,0.348397,0.558918,0.566305,0.282158,0.0887465,0.0580025,0.626318,0.161486,0.911009,0.701406,0.726708,0.113207,0.798239,0.593237,0.232187,0.463576,0.746997,0.434382,0.114852,0.536824,0.422512,0.860795,0.856922,0.568444,0.880064,0.909301,0.426289,0.708472,0.0323188,0.200831,0.207626,0.78228,0.806883,0.0953879,0.615924,0.35606,0.327655,0.244597,0.847291,0.477624,0.947776,0.0220767,0.268317,0.563807,0.814232,0.34821,0.748828,0.942404,0.742207,0.689607,0.387751,0.768883,0.929319,0.141613,0.47328,0.283316,0.429939,0.898892,0.39917,0.197275,0.528482,0.787222,0.153261,0.552387,0.99336,0.283647,0.794825,0.89954,0.224546,0.911993,0.638086,0.00239676,0.427177,0.618688,0.672078,0.402858,0.809511,0.883228,0.464628,0.0806273,0.86971,0.863172,0.135802,0.445414,0.422573,0.0161787,0.910154,0.532957,0.0143394,0.105308,0.48008,0.509243,0.489032,0.88451,0.318624,0.76327,0.736169,0.41534,0.779101,0.844669,0.983283,0.194434,0.293067,0.943045,0.760544,0.669702,0.041878,0.69578,0.40185,0.245334,0.630676,0.722021,0.429851,0.66488,0.935412,0.191509,0.883927,0.983751,0.658469,0.0256217,0.465393,0.0693287,0.892923,0.135875,0.405109,0.393487,0.905335,0.673085,0.461882,0.863691,0.657945,0.85542,0.76858,0.249071,0.586212,0.0697019,0.785738,0.470127,0.751915,0.457957,0.564014,0.126268,0.0482081,0.9172,0.467892,0.407701,0.19889,0.802,0.543844,0.423035,0.12211,0.70733,0.128145,0.967688,0.0923073,0.486354,0.872911,0.563986,0.984223,0.979227,0.390505,0.55666,0.293432,0.96231,0.816208,0.0659108,0.0236169,0.294035,0.863347,0.34074,0.98105,0.66344,0.233426,0.439601,0.643174,0.366272,0.0150866,0.509707,0.856481,0.0101719,0.259713,0.938211,0.663635,0.701981,0.142347,0.0105751,0.235039,0.834172,0.509258,0.683784,0.0930013,0.567177,0.919571,0.843812,0.210819,0.70713,0.770589,0.191242,0.0385695,0.248907,0.0812979,0.67918,0.442054,0.377517,0.350631,0.171439,0.510473,0.819718,0.348398,0.931688,0.861223,0.316603,0.00603545,0.147122,0.311162,0.639131,0.58787,0.298586,0.252893,0.553618,0.128159,0.492522,0.229414,0.41712,0.468985,0.0584748,0.0986049,0.636413,0.29904,0.210617,0.816018,0.658092,0.923043,0.296034,0.792669,0.607755,0.806644,0.710291,0.358827,0.776568,0.711303,0.628461,0.600008,0.548915,0.286857,0.96328,0.379726,0.134863,0.725883,0.277742,0.0576667,0.212823,0.347007,0.378746,0.241515,0.396135,0.00823283,0.363261,0.382459,0.828358,0.415105,0.1612,0.779397,0.0871184,0.769152,0.057745,0.7716,0.715279,0.299001,0.26041,0.784887,0.147793,0.83165,0.0893539,0.181104,0.279785,0.10832,0.0119159,0.0689765,0.181154,0.404262,0.0509312,0.224582,0.393009,0.569575,0.491934,0.54802,0.287015,0.557158,0.0406929,0.957636,0.548077,0.438577,0.354056,0.872263,0.267555,0.482658,0.533794,0.113928,0.157265,0.936011,0.449522,0.434787,|0.105869,0.122498,0.0797535,0.373661,0.34544,0.758485,0.088468,0.4292,0.749172,0.892955,0.827364,0.467724,0.673455,0.794854,0.0863008,0.467658,0.859828,0.257709,0.507919,0.794075,0.349966,0.260846,0.20018,0.00473148,0.389775,0.594727,0.819942,0.46221,0.776785,0.187343,0.132289,0.247703,0.280253,0.180487,0.656551,0.487422,0.492393,0.256788,0.378149,0.633944,0.438632,0.158833,0.678754,0.311243,0.119706,0.687407,0.452175,0.269432,0.0509425,0.186837,0.508744,0.6024,0.748966,0.402031,0.0113798,0.746591,0.846825,0.571383,0.594605,0.411069,0.577745,0.178431,0.0530485,0.130469,0.765336,0.687312,0.304774,0.927183,0.209156,0.561388,0.974117,0.344107,0.636065,0.248943,0.542865,0.179536,0.29652,0.709791,0.837027,0.659828,0.102816,0.399321,0.699545,0.949833,0.412194,0.209965,0.865938,0.468541,0.723509,0.949347,0.730944,0.881031,0.64751,0.261324,0.71141,0.845366,0.852788,0.909753,0.958476,0.589732,0.611563,0.976375,0.191797,0.540128,0.946137,0.610309,0.681239,0.759728,0.375504,0.927367,0.227817,0.745762,0.744178,0.15221,0.30542,0.0553256,0.373789,0.727731,0.23902,0.796291,0.125735,0.256358,0.646824,0.459181,0.795887,0.517892,0.31325,0.320754,0.700539,0.447755,0.176385,0.039655,0.79509,0.373754,0.286264,0.30394,0.528072,0.527086,0.130013,0.22412,0.0341284,0.834065,0.303994,0.683337,0.136588,0.354061,0.374038,0.566661,0.152025,0.506624,0.12312,0.132691,0.133577,0.767786,0.742214,0.891757,0.694475,0.643793,0.0610238,0.207515,0.0760772,0.340532,0.884329,0.254114,0.939311,0.239346,0.984887,0.442718,0.580061,0.191065,0.798084,0.0462162,0.493461,0.0819203,0.203196,0.515725,0.955419,0.630221,0.0429603,0.773022,0.215388,0.927379,0.812971,0.674186,0.351781,0.714342,0.0760761,0.0268941,0.784401,0.0713214,0.385453,0.788699,0.0378125,0.39317,0.611278,0.719053,0.408053,0.604613,0.662296,0.420282,0.328739,0.221784,0.798452,0.0571836,0.315281,0.126179,0.82422,0.0965301,0.0439118,0.155545,0.696753,0.717797,0.974632,0.371396,0.409733,0.222059,0.371104,0.8882,0.789492,0.694587,0.693944,0.348036,0.219581,0.918774,0.141664,0.769391,0.0774885,0.890756,0.719171,0.569024,0.134512,0.801682,0.319442,0.518968,0.303733,0.691494,0.95092,0.223592,0.835251,0.886347,0.506647,0.762645,0.81752,0.527185,0.579969,0.877594,0.802688,0.667774,0.557163,0.27815,0.161899,0.601496,0.22664,0.0971104,0.0616427,0.34087,0.401341,0.0430267,0.346869,0.109327,0.284837,0.870314,0.962835,0.0644326,0.512098,0.72897,0.997395,0.845187,0.0434294,0.0332136,0.71301,0.45224,0.0586323,0.909777,0.751417,0.514058,0.854375,0.29765,0.300718,0.0205725,0.807747,0.0171604,0.881587,0.993041,0.441129,0.449672,0.785675,0.531025,0.46752,0.000212252,0.259732,0.782852,0.984196,0.999532,0.114045,0.23795,0.451775,0.515621,0.0808913,0.871697,0.197963,0.274722,0.328082,0.696172,0.402342,0.317242,0.596915,0.754304,0.591087,0.315568,0.167005,0.943723,0.874963,0.756916,0.0433254,0.673905,0.434802,0.48017,0.367482,0.842366,0.186655,0.979715,0.227136,0.847132,0.509627,0.151554,0.263973,0.675175,0.479745,0.921728,0.434488,0.397303,0.805688,0.638005,0.453857,0.231779,0.666032,0.116566,0.682021,0.888722,0.118078,0.643459,0.102818,0.707889,0.874591,0.0486341,0.935484,0.22197,0.0727623,0.0286582,0.418251,0.873376,0.204103,0.931887,0.546371,0.302132,0.998644,0.573603,0.50134,0.67203,0.422933,0.20479,0.904373,0.896715,0.940237,0.0930275,0.934941,0.132897,0.491781,0.87035,0.283712,0.223759,0.599775,0.236905,0.170185,0.21248,0.64043,0.515781,0.386029,0.898112,0.0140847,0.0320206,0.539291,0.994392,0.955847,0.0861059,0.668231,0.597318,0.482501,0.0969917,0.906023,0.220066,0.0738117,0.133905,0.0131715,0.768162,0.650062,0.196743,0.172839,0.393394,0.483856,0.276022,0.857986,0.968962,0.56035,0.249129,0.0701168,0.0100226,0.781246,0.347941,0.621134,0.0546328,0.734156,0.0872491,0.907401,0.561912,0.0578197,0.469798,0.346303,0.54869,0.577695,0.160575,0.841645,0.308656,0.414734,0.656465,0.770402,0.518067,0.0999173,0.547298,0.668251,0.399288,0.243636,0.881075,0.612113,0.358567,0.657922,0.00226581,0.819499,0.636539,0.859443,0.988828,0.252673,0.752388,0.137603,0.36922,0.965128,0.669539,0.486237,0.623559,0.373342,0.169596,0.571432,0.928733,0.0965915,0.181309,0.126891,0.105171,0.283162,0.0464004,0.3939,0.839087,0.318266,0.606363,0.743522,0.257994,0.339233,0.180995,0.791372,0.930984,0.684184,0.107413,0.560154,0.226023,0.184904,0.956444,0.305392,0.632125,0.697022,0.629559,0.472668,0.163616,0.722673,0.801094,0.879081,0.736077,0.900587,0.343409,0.681236,0.93683,0.714511,0.641782,0.0106853,0.88377,0.382141,0.771354,0.60954,0.587552,0.188128,0.743014,0.931329,0.676583,0.769499,0.559057,0.376099,0.811813,0.721946,0.733208,0.669681,0.142815,0.171748,0.401875,0.0671969,0.232658,0.00261539,0.818339,0.479095,0.749195,0.725858,0.220125,0.175567,0.633365,0.290422,0.792283,0.596784,0.917468,0.710105,0.193149,0.112554,0.0200058,0.0946002,0.466237,0.0948899,0.465643,0.520099,0.374771,0.382955,0.36621,0.328637,0.632578,0.863333,0.177359,0.729255,0.661053,0.038937,0.87138,0.645527,0.932447,0.836258,0.231652,0.0443377,0.984047,0.657682,0.630881,0.721795,0.293153,0.0454566,0.873976,0.359815,0.00581551,0.0857812,0.808527,0.752237,0.463803,0.967895,0.34436,0.547507,0.70554,0.749883,0.363824,0.877441,0.920359,0.776089,0.36035,0.623232,0.592295,0.787865,0.494583,0.358788,0.667331,0.880091,0.747454,0.920704,0.363464,0.517554,0.180226,0.947567,0.766033,0.358966,0.121093,0.325663,0.408297,0.248527,0.803265,0.286521,0.650343,0.547951,0.480603,0.508382,0.825098,0.460389,0.544802,0.245109,0.375319,0.0564113,0.693051,0.983728,0.77824,0.812399,0.990615,0.847476,0.130217,0.507293,0.923406,0.784646,0.785191,0.497458,0.819921,0.519616,0.397475,0.271461,0.612026,0.355529,0.739181,0.770875,0.776283,0.445461,0.290843,0.808808,0.0080418,0.410812,0.239102,0.942068,0.374262,0.564494,0.286585,0.491903,0.692699,0.692381,0.846289,0.221307,0.195716,0.293985,0.54642,0.202365,0.298005,0.815723,0.20706,0.861665,0.141401,0.69032,0.0960246,0.342715,0.0129586,0.159422,0.987081,0.107239,0.365675,0.991238,0.351499,0.0493203,0.382856,0.552085,0.322766,0.910509,0.334497,0.139789,0.608342,0.865823,0.690092,0.391649,0.689191,0.0506148,0.0891785,0.969129,0.110559,0.926385,0.583542,0.795818,0.842365,0.908916,0.472559,0.181899,0.564743,0.127389,0.309499,0.966747,0.982392,0.166354,0.399969,0.153063,0.957936,0.061543,0.0159887,0.972852,0.11545,0.72719,0.0388516,0.895334,0.140676,0.171926,0.116587,0.495653,0.993058,0.283362,0.292586,0.99694,0.642649,0.49497,0.771512,0.51818,0.992154,0.0301412,0.415922,0.178477,0.574689,0.719771,0.778678,0.956474,0.25128,0.298688,0.204021,0.846218,0.763426,0.618737,0.759533,0.173708,0.880223,0.084741,0.571822,0.0788079,0.613421,0.241506,0.215651,0.994481,0.772668,0.000926554,0.396642,0.129233,0.17812,0.843215,0.714428,0.0765646,0.0331191,0.146328,0.449255,0.688133,0.798018,0.475222,0.297628,0.44894,0.28745,0.106629,0.14692,0.0758287,0.83964,0.520401,0.233464,0.95453,0.637996,0.930189,0.296477,0.0316239,0.368047,0.011129,0.756693,0.51953,0.626711,0.829857,0.863004,0.175552,0.465517,0.80036,0.58027,0.759692,0.873071,0.340403,0.462562,0.866799,0.692603,0.685429,0.362714,0.104518,0.501038,0.865537,0.902107,0.729344,0.963849,0.847218,0.0290311,0.390947,0.710491,0.92533,0.775112,0.363017,0.819441,0.710564,0.301587,0.422798,0.254028,0.25576,0.616316,0.0322765,0.641229,0.268119,0.577043,0.239572,0.522134,0.876591,0.978299,0.546776,0.425073,0.0945669,0.183769,0.253893,0.0277421,0.246738,0.298879,0.681263,0.882566,0.643425,0.468682,0.360848,0.387072,0.59779,0.0831895,0.48027,0.893659,0.163523,0.837221,0.887158,0.638426,0.179566,0.381549,0.722919,0.132568,0.644471,0.760856,0.946555,0.138232,0.666977,0.759389,0.00647205,0.751882,0.0738166,0.0958914,0.136913,0.854632,0.91287,0.915119,0.319388,0.769626,0.357544,0.0156112,0.0675765,0.0715333,0.0593807,0.404663,0.407578,0.423472,0.893598,0.275069,0.724364,0.234425,0.881923,0.419501,0.436934,0.927822,0.71887,0.201586,0.196982,0.815356,0.200968,0.669275,0.476337,0.800227,0.413154,0.997352,0.201676,0.801896,0.637604,0.300443,0.196244,0.737736,0.756476,0.0443507,0.849425,0.685881,0.554195,0.895932,0.360852,0.736703,0.543447,0.125428,0.649628,0.46525,0.421562,0.837853,0.720853,0.325581,0.484199,0.567174,0.189816,0.444891,0.480274,0.0862521,0.932558,0.838558,0.142052,0.47075,0.796252,0.804509,0.714248,0.850868,0.354137,0.16466,0.647912,0.64073,0.837266,0.00691408,0.825521,0.998207,0.849638,0.899124,0.90214,0.796738,0.77115,0.726216,0.740819,0.179336,0.353886,0.0247378,0.561629,0.371751,0.0654275,0.752168,0.973083,0.0129354,0.154166,0.632705,0.0813939,0.224871,0.519679,0.69089,0.75481,0.845686,0.66092,0.734524,0.148858,0.546307,0.970216,0.289044,0.126866,0.866956,0.473712,0.815781,0.612285,0.497211,0.726408,0.106368,0.696719,0.739525,0.564291,0.786871,0.290013,0.714591,0.317682,0.612593,0.55751,0.00661981,0.95086,0.648401,0.0832002,0.514154,0.270731,0.204185,0.0476496,0.986866,0.438133,0.746275,0.839897,0.759291,0.0308876,0.184728,0.733094,0.458217,0.191875,0.225392,0.52984,0.771502,0.191955,0.532453,0.517648,0.204751,0.40198,0.682546,0.6211,0.104388,0.426088,0.790562,|0.993586,0.305506,0.271674,0.952451,0.932778,0.0966554,0.718191,0.950383,0.0446265,0.688992,0.837891,0.0169218,0.117954,0.685972,0.729637,0.478889,0.896431,0.323953,0.363226,0.81356,0.81709,0.723254,0.510673,0.385373,0.9058,0.995781,0.818793,0.31206,0.19083,0.207283,0.875434,0.344317,0.995829,0.460364,0.431331,0.557592,0.100946,0.0380408,0.350909,0.553275,0.770342,0.281548,0.58323,0.00485784,0.627966,0.192396,0.54872,0.0122778,0.621074,0.683849,0.771133,0.948186,0.668926,0.999125,0.277437,0.851382,0.869266,0.57475,0.0208642,0.901803,0.119417,0.947626,0.729268,0.17272,0.0463775,0.10158,0.0143801,0.0806679,0.407355,0.0780967,0.635606,0.952135,0.685956,0.74606,0.0859585,0.42624,0.30561,0.0539515,0.75333,0.399735,0.819922,0.865385,0.912107,0.974172,0.859045,0.477126,0.385,0.579719,0.127693,0.682347,0.103949,0.849743,0.814056,0.846926,0.436616,0.683015,0.0092392,0.156979,0.737022,0.0607116,0.84811,0.0257248,0.0987436,0.617701,0.643499,0.588912,0.205082,0.587848,0.533674,0.380414,0.913153,0.854789,0.669856,0.328294,0.824532,0.320081,0.0503741,0.830119,0.865316,0.331522,0.0737867,0.483274,0.471138,0.182264,0.746115,0.72284,0.280864,0.286042,0.0435102,0.715073,0.20334,0.671971,0.595211,0.838565,0.4061,0.860195,0.454478,0.151268,0.17078,0.321859,0.177495,0.156117,0.934142,0.603625,0.546743,0.254469,0.899231,0.774413,0.31182,0.984246,0.0338271,0.394861,0.225166,0.363512,0.492137,0.259497,0.330848,0.579342,0.662802,0.375974,0.82193,0.890586,0.766972,0.0191655,0.0675735,0.863974,0.22674,0.304657,0.127827,0.338434,0.99619,0.121918,0.869232,0.816734,0.770718,0.457573,0.463107,0.947363,0.162953,0.0391265,0.495285,0.478674,0.369101,0.557504,0.727565,0.945192,0.688395,0.587608,0.931349,0.212621,0.461986,0.344616,0.249961,0.645102,0.12481,0.708708,0.139726,0.552269,0.780436,0.716172,0.878458,0.182122,0.26368,0.50078,0.969669,0.404244,0.27374,0.441176,0.9487,0.479958,0.252999,0.69338,0.521126,0.427616,0.582975,0.303555,0.0342321,0.717187,0.00640863,0.488098,0.511924,0.99336,0.87845,0.621798,0.589574,0.809183,0.71521,0.174049,0.279009,0.165728,0.730102,0.776606,0.404476,0.92338,0.963179,0.483511,0.119764,0.903685,0.469957,0.636261,0.747016,0.431024,0.0637389,0.83699,0.509012,0.784422,0.178493,0.500137,0.13868,0.669004,0.462898,0.248121,0.454791,0.548628,0.662052,0.953242,0.102315,0.245099,0.240687,0.828651,0.612057,0.70415,0.0540035,0.254252,0.463983,0.259625,0.282109,0.803732,0.0375683,0.164045,0.148637,0.924246,0.709908,0.433243,0.743493,0.245621,0.676778,0.270402,0.97512,0.925671,0.425929,0.839107,0.941319,0.990223,0.0693993,0.943186,0.512276,0.837238,0.39153,0.00453889,0.68209,0.83024,0.263367,0.999443,0.159017,0.684922,0.212018,0.375405,0.636901,0.797461,0.615557,0.907716,0.869146,0.35858,0.56209,0.0426067,0.886581,0.432911,0.929633,0.33468,0.233089,0.474397,0.94852,0.351389,0.225581,0.714393,0.0802319,0.502738,0.891006,0.871674,0.194758,0.868026,0.240825,0.250106,0.249284,0.398311,0.427797,0.0714547,0.280949,0.0199125,0.19125,0.695226,0.283107,0.888584,0.648429,0.771206,0.0599368,0.857645,0.500739,0.654553,0.103805,0.554029,0.145843,0.36581,0.157591,0.0531415,0.388078,0.897112,0.815102,0.82651,0.540234,0.416699,0.482402,0.0512517,0.176176,0.784555,0.670736,0.509237,0.699086,0.496746,0.575864,0.58911,0.0497859,0.173511,0.852882,0.188746,0.851192,0.908338,0.897659,0.262242,0.0913393,0.871042,0.0216138,0.447141,0.350548,0.0473161,0.507948,0.468732,0.967985,0.684441,0.338253,0.0464965,0.471673,0.570383,0.302557,0.375595,0.828923,0.399748,0.854635,0.672196,0.0444092,0.257261,0.0889632,0.515418,0.456056,0.311285,0.433468,0.559375,0.0235395,0.386071,0.129639,0.898505,0.113878,0.513884,0.516747,0.864425,0.0500901,0.193514,0.228166,0.110772,0.49109,0.572563,0.115735,0.929586,0.515006,0.94723,0.815554,0.0398986,0.938712,0.00524122,0.364658,0.263598,0.643195,0.624692,0.186209,0.520068,0.945171,0.615503,0.900126,0.939896,0.223454,0.580067,0.517843,0.424375,0.190988,0.413993,0.19744,0.14432,0.270836,0.665101,0.933093,0.749568,0.0790522,0.938052,0.286613,0.424173,0.470289,0.0223763,0.110121,0.901808,0.408414,0.14578,0.408902,0.486668,0.924916,0.330588,0.509441,0.875155,0.857123,0.140288,0.0770499,0.193154,0.773067,0.96546,0.261584,0.569566,0.775169,0.0457876,0.748642,0.886424,0.252381,0.559529,0.842747,0.927288,0.0550994,0.761397,0.943839,0.71312,0.328977,0.229702,0.54038,0.774127,0.154247,0.53035,0.763502,0.0953449,0.491174,0.68386,0.756256,0.798046,0.78582,0.315573,0.0325868,0.731979,0.413638,0.210531,0.292788,0.749667,0.599065,0.040402,0.662212,0.785267,0.524042,0.316217,0.379158,0.208558,0.884574,0.562421,0.921963,0.723973,0.170565,0.530882,0.912663,0.335939,0.155893,0.115765,0.0684409,0.618263,0.681957,0.099885,0.63308,0.727926,0.722977,0.511965,0.670802,0.422895,0.939075,0.747255,0.798357,0.715115,0.921332,0.843888,0.426181,0.233138,0.289623,0.258116,0.514565,0.882712,0.928788,0.827364,0.581926,0.49274,0.222086,0.890734,0.774219,0.801535,0.235193,0.204587,0.447251,0.986945,0.70915,0.994175,0.454243,0.251534,0.36786,0.256738,0.109755,0.936062,0.385965,0.58315,0.685007,0.202091,0.650003,0.350165,0.123191,0.866566,0.221354,0.682248,0.971194,0.450889,0.707948,0.768603,0.630422,0.245684,0.575156,0.344325,0.100398,0.81769,0.170815,0.775631,0.30704,0.524905,0.444032,0.872767,0.847749,0.406448,0.0443853,0.426653,0.903844,0.478148,0.695433,0.175739,0.436297,0.84088,0.895104,0.226465,0.556578,0.91465,0.708038,0.553014,0.268801,0.157826,0.849347,0.518245,0.114713,0.389349,0.908128,0.389296,0.773452,0.753004,0.830046,0.346929,0.627932,0.31862,0.139906,0.591035,0.0378278,0.921744,0.271849,0.534298,0.254299,0.589056,0.646396,0.466501,0.420697,0.78356,0.692852,0.429773,0.444063,0.474232,0.0627834,0.230763,0.168207,0.934734,0.718992,0.5244,0.0198736,0.050364,0.506884,0.489505,0.743319,0.511945,0.112823,0.382569,0.685302,0.803555,0.325817,0.95438,0.961659,0.742977,0.718113,0.452901,0.0126866,0.0117316,0.758881,0.114497,0.420367,0.875584,0.223581,0.320801,0.80604,0.754834,0.668727,0.852605,0.477769,0.121869,0.807078,0.459873,0.565028,0.0865837,0.430051,0.0977292,0.015007,0.706069,0.072539,0.9907,0.00734663,0.492056,0.469453,0.884323,0.872991,0.364013,0.3775,0.574945,0.387547,0.796477,0.594028,0.600288,0.0466297,0.402331,0.815429,0.351935,0.774687,0.120998,0.40558,0.415864,0.255138,0.326256,0.606663,0.533095,0.519332,0.741663,0.789879,0.0153713,0.34255,0.377208,0.143355,0.243358,0.385577,0.653488,0.61073,0.800574,0.260155,0.0413768,0.182326,0.432647,0.747095,0.633455,0.416139,0.266421,0.321697,0.0921434,0.984598,0.0781848,0.988516,0.304278,0.587014,0.626723,0.855385,0.824102,0.189374,0.690731,0.842057,0.656354,0.811543,0.117959,0.36516,0.206024,0.00890356,0.309631,0.775458,0.439359,0.279723,0.147894,0.973253,0.628795,0.551508,0.671179,0.680823,0.827798,0.545547,0.771864,0.527709,0.293828,0.510835,0.434897,0.906411,0.274281,0.132707,0.514149,0.126014,0.0725089,0.155559,0.320503,0.489223,0.703766,0.346594,0.902187,0.638593,0.788123,0.397826,0.751815,0.578715,0.475367,0.369578,0.415214,0.294017,0.0623664,0.71929,0.791571,0.984426,0.683224,0.759554,0.415997,0.837801,0.47494,0.0609236,0.00713092,0.0636276,0.650909,0.0935361,0.0812806,0.139009,0.890102,0.785308,0.981571,0.308348,0.105412,0.128234,0.29978,0.535527,0.49382,0.422039,0.738353,0.465367,0.490257,0.377622,0.630865,0.809732,0.315322,0.968411,0.755972,0.919863,0.390192,0.973946,0.784082,0.120808,0.740924,0.886222,0.598963,0.878518,0.100546,0.717402,0.860774,0.718857,0.404778,0.231753,0.244918,0.306269,0.1539,0.00128931,0.135831,0.495928,0.716705,0.704515,0.410377,0.888888,0.396118,0.727473,0.923288,0.501202,0.177522,0.638489,0.244691,0.756315,0.306548,0.106887,0.602137,0.0522327,0.714606,0.566401,0.716951,0.39151,0.565219,0.0619736,0.671371,0.325842,0.118293,0.883227,0.964606,0.447437,0.945797,0.368315,0.601072,0.38643,0.195586,0.368205,0.934073,0.736502,0.714134,0.309499,0.629216,0.145694,0.895019,0.476464,0.248298,0.838275,0.652675,0.792236,0.417498,0.854575,0.497536,0.834373,0.383286,0.977263,0.776906,0.0347905,0.627422,0.117909,0.920802,0.668902,0.912321,0.127022,0.0317816,0.392751,0.770875,0.594909,0.63178,0.526686,0.681087,0.471732,0.131724,0.934087,0.753535,0.745901,0.850153,0.0772111,0.264108,0.976887,0.278582,0.443404,0.620856,0.902869,0.141028,0.378948,0.445254,0.429824,0.431318,0.939315,0.863282,0.442206,0.399303,0.356228,0.1783,0.242451,0.452512,0.351313,0.0407352,0.601121,0.190666,0.252742,0.650157,0.79195,0.748398,0.0609829,0.89436,0.838754,0.33011,0.758268,0.357288,0.930836,0.927982,0.247467,0.6742,0.324632,0.00788444,0.372907,0.88351,0.649206,0.973212,0.0444685,0.927932,0.532055,0.438416,0.132176,0.526429,0.132284,0.213599,0.573165,0.203428,0.938915,0.511493,0.292244,0.934253,0.467264,0.220627,0.917939,0.418196,0.469097,0.374239,0.0525666,0.0556925,0.43081,0.703647,0.894993,0.00406277,0.670225,0.196958,0.68796,0.719114,0.609809,0.938902,0.130193,0.00483835,0.0339139,0.744702,0.599616,0.842271,0.0975465,0.723485,0.521669,0.587527,0.982539,0.404417,0.375244,0.481069,0.366755,0.460858,0.222272,0.476631,|0.682538,0.659998,0.286502,0.194227,0.914946,0.201738,0.240598,0.105002,0.704764,0.0895896,0.807641,0.732253,0.414789,0.148593,0.869337,0.790008,0.00181109,0.746338,0.832195,0.272321,0.783062,0.323908,0.185696,0.663799,0.271904,0.626817,0.252151,0.544609,0.673564,0.197156,0.143223,0.060717,0.842024,0.420555,0.560027,0.671507,0.783655,0.199589,0.636116,0.623268,0.469431,0.639712,0.146741,0.043638,0.831902,0.421277,0.115372,0.738843,0.503705,0.803578,0.164802,0.143537,0.214267,0.702151,0.768159,0.244085,0.388087,0.0882587,0.861779,0.815047,0.629382,0.917005,0.66532,0.478942,0.810095,0.155494,0.0892714,0.643255,0.425037,0.984487,0.544362,0.103045,0.687287,0.90782,0.169529,0.35803,0.267011,0.963979,0.458651,0.97137,0.250397,0.824891,0.303957,0.355394,0.962281,0.737999,0.0192305,0.608973,0.068523,0.10777,0.213072,0.606745,0.841926,0.817866,0.492502,0.471175,0.271922,0.99662,0.384627,0.644451,0.746356,0.969559,0.661805,0.182982,0.653487,0.0211887,0.353466,0.0981631,0.558262,0.175255,0.940318,0.811992,0.978409,0.526533,0.738744,0.13558,0.0858994,0.0192588,0.565335,0.0712543,0.283343,0.420019,0.826083,0.0305748,0.231138,0.355356,0.70556,0.277038,0.425543,0.0906631,0.0699639,0.101645,0.142153,0.863333,0.0675717,0.129298,0.960035,0.883204,0.205029,0.667845,0.764199,0.181949,0.120097,0.718455,0.196765,0.263237,0.689099,0.751777,0.902968,0.600678,0.0364056,0.344058,0.615699,0.0306234,0.218438,0.569046,0.0434216,0.0442522,0.0415003,0.971853,0.0227113,0.456346,0.65856,0.219994,0.149066,0.200753,0.21968,0.773062,0.885318,0.274025,0.375981,0.110395,0.908076,0.168085,0.707474,0.120742,0.143319,0.523434,0.25902,0.674281,0.846679,0.0100172,0.385031,0.699293,0.480517,0.807301,0.0446901,0.479945,0.899087,0.0478195,0.311336,0.542936,0.0531224,0.830254,0.694971,0.762564,0.620705,0.355949,0.818919,0.868132,0.671276,0.0300201,0.670423,0.348104,0.811574,0.00204343,0.532261,0.28445,0.367651,0.193381,0.191008,0.369135,0.800991,0.252603,0.109994,0.303823,0.234166,0.710424,0.0211605,0.529074,0.888191,0.392124,0.257595,0.894024,0.233034,0.411227,0.0535261,0.412269,0.403522,0.599782,0.720132,0.19982,0.847271,0.945508,0.944945,0.0775621,0.651772,0.817264,0.843531,0.430043,0.622522,0.404294,0.126861,0.443616,0.588745,0.337131,0.887992,0.633204,0.276938,0.826445,0.652028,0.179162,0.222188,0.692876,0.0708756,0.94771,0.569957,0.324001,0.544974,0.539276,0.44949,0.699298,0.155665,0.768913,0.374983,0.116478,0.271515,0.894521,0.505552,0.769404,0.557942,0.810946,0.591276,0.763337,0.826972,0.381418,0.0911114,0.883269,0.418422,0.199124,0.402391,0.94398,0.831307,0.70877,0.429812,0.951706,0.712102,0.0826569,0.982656,0.410624,0.4526,0.729028,0.120503,0.727354,0.0274515,0.173002,0.425346,0.15544,0.0536047,0.983505,0.369145,0.245979,0.4514,0.425848,0.689058,0.810708,0.284623,0.370468,0.940661,0.454911,0.618343,0.271159,0.982612,0.41596,0.0542195,0.909668,0.403303,0.824438,0.522086,0.694801,0.0655602,0.14959,0.866562,0.810193,0.549362,0.765307,0.118251,0.456093,0.298873,0.048957,0.290175,0.236141,0.74677,0.375343,0.511928,0.101765,0.0292857,0.67619,0.0663268,0.864021,0.730302,0.867,0.9291,0.0986112,0.505041,0.913988,0.989821,0.474938,0.0681366,0.941778,0.349902,0.936219,0.158784,0.363516,0.723646,0.726119,0.754742,0.443035,0.965071,0.483703,0.76632,0.474944,0.788644,0.26314,0.338105,0.543264,0.439295,0.955424,0.579642,0.782503,0.598274,0.269763,0.666288,0.604353,0.139392,0.616182,0.776646,0.91415,0.57174,0.895393,0.000924945,0.759049,0.909568,0.0518087,0.244765,0.339432,0.645175,0.762759,0.84455,0.330983,0.957611,0.686881,0.0307699,0.84183,0.314985,0.783843,0.0272959,0.542336,0.474246,0.210549,0.0615849,0.215457,0.33448,0.985442,0.796817,0.854694,0.502452,0.968692,0.784101,0.342356,0.633992,0.304105,0.514768,0.374207,0.926906,0.289146,0.429339,0.418569,0.673901,0.381115,0.11166,0.579261,0.954755,0.473548,0.0404568,0.74654,0.285082,0.94639,0.546211,0.573107,0.980728,0.542262,0.243548,0.0567838,0.608336,0.770706,0.460841,0.904696,0.698883,0.0501496,0.755833,0.255164,0.252668,0.840488,0.405276,0.245127,0.0235057,0.552802,0.35099,0.76691,0.319853,0.950335,0.493461,0.656793,0.2025,0.757692,0.00454861,0.927626,0.688704,0.810069,0.581352,0.0662109,0.718147,0.593953,0.598357,0.995492,0.21492,0.13319,0.290965,0.0325755,0.838283,0.1059,0.119608,0.653553,0.336076,0.500059,0.728094,0.405952,0.354384,0.0471544,0.460786,0.250405,0.718206,0.646741,0.175635,0.196291,0.580272,0.294598,0.0103922,0.366539,0.0182476,0.359422,0.927659,0.280825,0.0900748,0.890103,0.231567,0.249061,0.463003,0.716379,0.617357,0.250295,0.578092,0.231594,0.652888,0.894906,0.327547,0.919746,0.237685,0.453612,0.602693,0.763878,0.368893,0.132688,0.825347,0.700056,0.109289,0.165812,0.446779,0.75304,0.966292,0.269201,0.927409,0.337359,0.519813,0.702018,0.497137,0.64472,0.423143,0.234369,0.777239,0.89175,0.687141,0.461675,0.697673,0.663782,0.946289,0.629525,0.819087,0.534654,0.973633,0.905111,0.177569,0.0389895,0.403926,0.791192,0.548134,0.847521,0.91319,0.468235,0.853267,0.785055,0.00748742,0.43462,0.952696,0.0820653,0.926643,0.505428,0.804323,0.642498,0.235317,0.319353,0.769853,0.659005,0.372543,0.0960328,0.512957,0.652326,0.67756,0.356318,0.0958743,0.968789,0.864396,0.173597,0.692351,0.496726,0.188723,0.417154,0.472986,0.358904,0.807487,0.764132,0.926574,0.828966,0.883263,0.237717,0.952649,0.779425,0.89143,0.334473,0.81929,0.179807,0.0600611,0.611358,0.974386,0.891163,0.534879,0.42696,0.520044,0.854407,0.735322,0.055984,0.812038,0.142757,0.527342,0.210233,0.382298,0.335275,0.965975,0.433388,0.18158,0.58969,0.0860541,0.481525,0.809847,0.845246,0.97197,0.364353,0.668669,0.416645,0.385711,0.248086,0.805721,0.763917,0.615205,0.0992216,0.536392,0.848925,0.293744,0.489305,0.894427,0.995947,0.220897,0.374849,0.822943,0.0312858,0.559196,0.590882,0.701274,0.684791,0.962962,0.297727,0.360387,0.208684,0.159002,0.976229,0.62087,0.11526,0.881616,0.017732,0.282801,0.815074,0.456627,0.602606,0.370197,0.337208,0.745714,0.767704,0.962368,0.543803,0.96049,0.00974095,0.167044,0.656832,0.351046,0.118817,0.739953,0.123323,0.805077,0.36113,0.989573,0.870275,0.566282,0.467144,0.644632,0.818391,0.715819,0.502922,0.940798,0.322855,0.493961,0.327953,0.921871,0.501426,0.764475,0.864068,0.582936,0.381036,0.158477,0.359603,0.339787,0.389928,0.91256,0.99499,0.895822,0.498968,0.00947094,0.648497,0.762273,0.698753,0.00167012,0.578437,0.227477,0.146076,0.765176,0.5206,0.465935,0.946194,0.538536,0.96535,0.0591835,0.684479,0.412916,0.847714,0.245004,0.488059,0.305431,0.476818,0.569915,0.556045,0.109684,0.00983638,0.359264,0.807173,0.814986,0.920757,0.896645,0.755483,0.619055,0.918705,0.0470193,0.0221882,0.959541,0.848522,0.0859661,0.0456898,0.646286,0.497325,0.658206,0.627587,0.643349,0.945972,0.197177,0.215433,0.738444,0.709855,0.627257,0.505267,0.556256,0.074665,0.0706168,0.825358,0.0483199,0.303479,0.831236,0.000787377,0.275959,0.465548,0.319708,0.0324368,0.635011,0.0394939,0.722917,0.987654,0.148139,0.0625657,0.406749,0.932472,0.690507,0.588458,0.951836,0.782643,0.385997,0.464237,0.47055,0.900368,0.955758,0.461743,0.843868,0.35553,0.479911,0.185875,0.686528,0.839013,0.969706,0.339224,0.799241,0.52011,0.467172,0.114399,0.261435,0.142691,0.391155,0.122,0.250575,0.690044,0.104639,0.544298,0.00399756,0.531706,0.0403044,0.742576,0.74917,0.778248,0.525756,0.164733,0.547785,0.35327,0.388185,0.390933,0.367559,0.877887,0.0811051,0.340193,0.573925,0.031928,0.241871,0.383785,0.0424271,0.645989,0.764185,0.781259,0.750851,0.692202,0.279367,0.14604,0.595863,0.200967,0.697291,0.324786,0.761191,0.590814,0.664189,0.380149,0.715962,0.201216,0.776676,0.117668,0.708671,0.698848,0.726071,0.973178,0.319655,0.907114,0.771018,0.949456,0.63355,0.416134,0.778089,0.940926,0.278893,0.0850747,0.808371,0.885844,0.813725,0.14368,0.138936,0.106534,0.507114,0.675816,0.937406,0.391002,0.309869,0.947485,0.575885,0.428706,0.844286,0.772543,0.075142,0.882005,0.224911,0.834376,0.950548,0.615595,0.266508,0.0592051,0.416736,0.736284,0.370327,0.220023,0.521619,0.789111,0.906607,0.772802,0.139715,0.955468,0.59288,0.621308,0.77048,0.629788,0.291542,0.108423,0.446134,0.0396984,0.11851,0.725146,0.796648,0.899049,0.59174,0.563001,0.852538,0.875609,0.900664,0.809199,0.604537,0.384235,0.431888,0.879017,0.626379,0.962996,0.485286,0.847675,0.662004,0.834635,0.421848,0.739508,0.887457,0.875361,0.229487,0.647537,0.574229,0.385438,0.581619,0.438487,0.918984,0.00736165,0.817435,0.438591,0.981928,0.0256929,0.840564,0.00103635,0.47151,0.762942,0.471979,0.922625,0.831113,0.352119,0.718554,0.376979,0.731208,0.703754,0.178972,0.696117,0.78886,0.346578,0.654813,0.15319,0.133195,0.892957,0.337024,0.874146,0.556053,0.616796,0.182013,0.796286,0.656248,0.651672,0.0677581,0.598312,0.929842,0.785298,0.582785,0.713045,0.625729,0.495858,0.986296,0.269691,0.826715,0.448724,0.0110634,0.00986665,0.517602,0.761978,0.89443,0.635979,0.998572,0.465192,0.987951,0.830255,0.0981646,0.606084,0.271348,0.0476999,0.629021,0.363164,0.703111,0.462639,0.211592,0.797383,0.724335,0.819285,0.956468,0.119119,0.0635599,0.233148,0.0876956,0.277623,0.983954,0.394012,|0.441964,0.362111,0.454835,0.621343,0.808616,0.551482,0.689794,0.434728,0.641972,0.601339,0.806991,0.109552,0.390322,0.213771,0.992165,0.315889,0.999656,0.513996,0.0875766,0.0906066,0.380096,0.800098,0.431066,0.806509,0.0780242,0.539042,0.918304,0.467571,0.415259,0.218162,0.111579,0.746775,0.557733,0.753415,0.299926,0.619777,0.727646,0.00645983,0.669206,0.229584,0.625694,0.115747,0.432934,0.252644,0.733941,0.164529,0.767661,0.295159,0.143066,0.0238356,0.217133,0.679819,0.916116,0.193911,0.752254,0.44632,0.103199,0.413446,0.0579684,0.187453,0.272842,0.157988,0.749461,0.0421541,0.33617,0.252091,0.724602,0.932124,0.386051,0.00317138,0.393237,0.145029,0.00257581,0.393497,0.788495,0.298608,0.419247,0.536896,0.259094,0.705846,0.491192,0.860109,0.465309,0.857041,0.990338,0.636659,0.410629,0.537745,0.338415,0.761884,0.514993,0.451348,0.59449,0.114046,0.734111,0.86282,0.247595,0.0477973,0.354315,0.454921,0.478396,0.051467,0.0657482,0.264358,0.456204,0.597416,0.783713,0.805882,0.753867,0.208731,0.742486,0.557447,0.902382,0.796667,0.976293,0.954927,0.909194,0.246425,0.0313325,0.748817,0.0701664,0.511318,0.0880587,0.781264,0.625755,0.1026,0.731755,0.867348,0.786198,0.972792,0.408787,0.830308,0.335241,0.996513,0.942707,0.473535,0.574515,0.693247,0.278046,0.75661,0.451867,0.019034,0.440343,0.543752,0.309532,0.869759,0.855767,0.341922,0.223656,0.471107,0.427604,0.923513,0.391699,0.678315,0.0564114,0.68983,0.99163,0.853499,0.0320671,0.291219,0.162111,0.483118,0.202556,0.127499,0.526965,0.574187,0.890242,0.750206,0.586238,0.104659,0.926802,0.0331756,0.507912,0.721817,0.735244,0.117628,0.731445,0.831771,0.426862,0.60634,0.864068,0.780546,0.539074,0.181963,0.090389,0.407041,0.217883,0.502372,0.662977,0.640749,0.982587,0.586084,0.147082,0.525261,0.136862,0.584227,0.352771,0.583152,0.999174,0.934866,0.245985,0.972734,0.60377,0.255582,0.352191,0.190269,0.106442,0.0317144,0.156058,0.949646,0.300747,0.499479,0.631137,0.653557,0.795924,0.656388,0.160685,0.282924,0.893366,0.629884,0.171626,0.813193,0.580511,0.121271,0.953888,0.541056,0.31429,0.455878,0.700438,0.186187,0.863425,0.847252,0.0816209,0.85554,0.552201,0.431332,0.510135,0.385417,0.904173,0.952589,0.102348,0.778053,0.979663,0.105197,0.520644,0.902652,0.354074,0.792585,0.946059,0.965077,0.330129,0.64009,0.0679275,0.78398,0.337098,0.803256,0.358924,0.33318,0.000324011,0.560638,0.734826,0.0403714,0.106542,0.147401,0.113533,0.885168,0.434684,0.161181,0.937276,0.814231,0.963067,0.224961,0.601488,0.659736,0.198169,0.862717,0.957069,0.716328,0.797879,0.0852137,0.392045,0.99076,0.915572,0.817715,0.138651,0.489831,0.322111,0.712468,0.991145,0.49253,0.0479566,0.634077,0.847148,0.937492,0.872315,0.585781,0.433818,0.963299,0.282526,0.0848382,0.624967,0.13098,0.64738,0.0418115,0.939672,0.00414824,0.511757,0.636633,0.174393,0.90341,0.61469,0.289923,0.0956948,0.287394,0.841749,0.393122,0.702488,0.611757,0.834221,0.260773,0.791376,0.314348,0.560693,0.953509,0.751337,0.652711,0.265534,0.921895,0.52935,0.61721,0.597942,0.0462921,0.617796,0.568342,0.320534,0.400317,0.703108,0.90253,0.212952,0.100237,0.89319,0.276866,0.0122949,0.3479,0.684134,0.955535,0.0667938,0.681566,0.782735,0.977611,0.656445,0.224964,0.223273,0.487578,0.409602,0.101076,0.575335,0.367754,0.885517,0.989847,0.293881,0.409858,0.698418,0.824992,0.449549,0.714594,0.963161,0.554987,0.763989,0.31148,0.174705,0.661705,0.510438,0.0472659,0.0216152,0.311086,0.074371,0.204062,0.419638,0.408029,0.21538,0.912121,0.283189,0.331045,0.484966,0.489118,0.668865,0.441421,0.0645955,0.174757,0.919179,0.189847,0.427775,0.352873,0.0214936,0.0990075,0.995104,0.294712,0.889324,0.734237,0.00269634,0.214519,0.477419,0.752026,0.880416,0.148676,0.69764,0.51323,0.17197,0.860132,0.299132,0.117882,0.200826,0.136936,0.377156,0.59955,0.409509,0.59475,0.835377,0.482405,0.872086,0.774456,0.771565,0.569885,0.625918,0.906716,0.916341,0.689404,0.210001,0.784028,0.00829589,0.743066,0.0564611,0.292156,0.827189,0.496265,0.954423,0.231515,0.414021,0.774936,0.475048,0.783929,0.349122,0.334619,0.685126,0.402935,0.162342,0.841572,0.568375,0.282653,0.769102,0.117025,0.206757,0.281863,0.778223,0.878678,0.956732,0.611352,0.514744,0.835904,0.750229,0.403881,0.997218,0.768687,0.228612,0.591108,0.0767866,0.470828,0.339056,0.341749,0.873366,0.728861,0.284814,0.633357,0.523504,0.502925,0.492937,0.856929,0.209339,0.381981,0.781075,0.250001,0.532135,0.245939,0.720451,0.93712,0.459206,0.262108,0.877598,0.382308,0.249278,0.941086,0.33962,0.133878,0.313715,0.197288,0.0245517,0.183157,0.844319,0.374517,0.178628,0.469498,0.744673,0.746656,0.955512,0.762064,0.890507,0.918555,0.485918,0.696316,0.925122,0.888194,0.686508,0.929006,0.131846,0.0662783,0.239819,0.0115647,0.069573,0.344343,0.982822,0.961616,0.797339,0.584747,0.173347,0.547308,0.746597,0.101647,0.552371,0.688198,0.851087,0.77964,0.909608,0.3621,0.363237,0.989033,0.955824,0.0356178,0.0248674,0.718326,0.691487,0.67657,0.238835,0.610633,0.588875,0.551977,0.845166,0.599309,0.421753,0.48862,0.0338305,0.519946,0.0351586,0.285518,0.500396,0.1998,0.598693,0.684415,0.63275,0.497579,0.87694,0.225568,0.261284,0.152065,0.897489,0.93947,0.665119,0.980969,0.636324,0.298301,0.478438,0.533704,0.260094,0.305399,0.4301,0.153099,0.21853,0.925921,0.696355,0.106681,0.478903,0.945707,0.288542,0.280319,0.490742,0.0343046,0.425739,0.0804589,0.783325,0.708244,0.317259,0.847585,0.516005,0.677588,0.524713,0.416048,0.813237,0.187793,0.758858,0.473114,0.485737,0.729257,0.729945,0.55945,0.656791,0.984664,0.942105,0.796765,0.858891,0.120591,0.418764,0.419387,0.897979,0.725167,0.383016,0.207997,0.209637,0.617192,0.640151,0.583735,0.297217,0.701857,0.183979,0.658806,0.553212,0.752235,0.00280094,0.575977,0.855176,0.34602,0.0931853,0.0855709,0.304466,0.958311,0.597368,0.190733,0.184438,0.66451,0.686605,0.79268,0.181277,0.498191,0.552521,0.918954,0.432486,0.255059,0.396766,0.841582,0.29993,0.191231,0.254198,0.028777,0.380701,0.229552,0.0506006,0.924313,0.53508,0.619881,0.251593,0.697203,0.0407518,0.466921,0.21538,0.522667,0.884304,0.179107,0.988858,0.509922,0.713361,0.812802,0.804866,0.559791,0.0266854,0.121305,0.355269,0.730543,0.165164,0.073227,0.489385,0.958231,0.71022,0.393266,0.708139,0.0579381,0.0916106,0.725139,0.746306,0.976028,0.363822,0.341138,0.642833,0.455333,0.638398,0.851338,0.558576,0.495468,0.118618,0.73194,0.221934,0.00137806,0.155009,0.442452,0.27248,0.282142,0.360611,0.419566,0.965254,0.957958,0.244395,0.216632,0.449257,0.0010494,0.7772,0.530329,0.679584,0.849089,0.926606,0.131841,0.366229,0.520631,0.896835,0.287475,0.273953,0.305341,0.766356,0.92621,0.52599,0.120665,0.450131,0.43172,0.650203,0.997898,0.448043,0.393203,0.797915,0.492037,0.00717014,0.894495,0.0560632,0.26377,0.771092,0.3555,0.614538,0.651995,0.27348,0.882875,0.836249,0.790801,0.753785,0.494906,0.0461411,0.758675,0.0825274,0.114844,0.480649,0.384804,0.475214,0.927943,0.182146,0.548545,0.222781,0.991672,0.189746,0.46307,0.751171,0.307326,0.376633,0.0639389,0.435498,0.38944,0.95389,0.755753,0.0510989,0.691545,0.550475,0.481722,0.496703,0.912763,0.138058,0.448027,0.469682,0.947691,0.485295,0.0782135,0.315039,0.0770885,0.0355165,0.656776,0.133147,0.212206,0.0489148,0.226853,0.299131,0.329688,0.363342,0.0209425,0.227647,0.60729,0.554188,0.926696,0.431021,0.176882,0.988688,0.558227,0.291272,0.220257,0.341859,0.621428,0.704759,0.585004,0.0686433,0.227776,0.0552343,0.428763,0.152262,0.132735,0.628407,0.763673,0.802399,0.878584,0.813196,0.256089,0.6013,0.17934,0.460078,0.129402,0.578318,0.582506,0.601392,0.739422,0.32094,0.271933,0.865685,0.60186,0.98116,0.370395,0.393057,0.309667,0.708453,0.602267,0.378754,0.776118,0.541142,0.373575,0.919891,0.0393396,0.284673,0.553303,0.41256,0.552606,0.277421,0.416391,0.695105,0.904926,0.344035,0.929886,0.356532,0.602562,0.740991,0.652082,0.379286,0.34465,0.26873,0.482264,0.367592,0.203233,0.78262,0.969156,0.078866,0.339765,0.88434,0.567355,0.727841,0.63277,0.888081,0.752195,0.741788,0.565557,0.832241,0.906789,0.725985,0.464803,0.369182,0.623042,0.612452,0.84826,0.53177,0.840738,0.849884,0.14398,0.163307,0.919048,0.431619,0.797526,0.269954,0.468005,0.0978295,0.945031,0.125202,0.630639,0.826523,0.451958,0.836949,0.672478,0.230902,0.900884,0.43552,0.39637,0.670479,0.79975,0.666033,0.15135,0.399065,0.955919,0.791312,0.0926105,0.820732,0.0919147,0.550968,0.453756,0.179606,0.995415,0.244684,0.626068,0.33413,0.867198,0.584936,0.978321,0.214863,0.511708,0.754445,0.59712,0.29045,0.257661,0.872389,0.986862,0.0560576,0.444883,0.992281,0.437064,0.782682,0.164453,0.15754,0.650474,0.478669,0.740628,0.296626,0.00239003,0.860288,0.944141,0.867234,0.877766,0.320832,0.0672506,0.894584,0.333565,0.458394,0.686141,0.298961,0.812409,0.971011,0.172219,0.515416,0.332166,0.708927,0.139778,0.521956,0.175419,0.691972,0.508783,0.0132196,0.769585,0.355281,0.690043,0.354985,0.793835,0.848535,0.60472,0.6961,0.123689,0.884934,0.153586,0.881743,0.133005,0.224492,0.967877,0.980766,0.522427,0.697251,0.413911,0.849598,0.0549717,0.783111,0.74645,0.880693,0.789559,0.888481,0.973561,0.056036,0.807677,|0.655941,0.805874,0.779111,0.48754,0.536569,0.836678,0.00124556,0.839201,0.270238,0.0055331,0.280555,0.409435,0.272096,0.378374,0.108307,0.792539,0.889375,0.691344,0.933564,0.124954,0.471404,0.747241,0.649041,0.632812,0.924756,0.579381,0.778006,0.733608,0.68809,0.988447,0.714525,0.935484,0.28302,0.948789,0.302573,0.396205,0.478906,0.839524,0.402609,0.991641,0.0614793,0.577196,0.712171,0.139868,0.646282,0.553553,0.44668,0.202018,0.966312,0.993666,0.835959,0.922316,0.0352,0.284911,0.394496,0.446794,0.570593,0.251277,0.624048,0.400439,0.631129,0.666967,0.744152,0.495958,0.0788645,0.921684,0.393466,0.0972001,0.988029,0.557801,0.782677,0.225208,0.108099,0.767701,0.16777,0.561423,0.756589,0.643591,0.240728,0.712436,0.206595,0.370677,0.224568,0.154572,0.132245,0.856268,0.49136,0.789093,0.83395,0.115651,0.514124,0.618733,0.56668,0.225957,0.416782,0.385496,0.41991,0.599871,0.403861,0.405931,0.331027,0.0489246,0.588889,0.868907,0.149366,0.958419,0.627595,0.17387,0.18936,0.0323042,0.212636,0.600062,0.209236,0.261295,0.31344,0.706413,0.568942,0.538053,0.823943,0.147185,0.572076,0.313318,0.570317,0.872769,0.290927,0.965568,0.308723,0.813876,0.742855,0.703136,0.392838,0.318765,0.558059,0.0272279,0.177398,0.781296,0.99439,0.33842,0.914695,0.187525,0.137551,0.138701,0.845249,0.263766,0.963728,0.731795,0.459768,0.827187,0.348891,0.348266,0.1813,0.099504,0.608014,0.698617,0.790723,0.913811,0.936078,0.235665,0.880665,0.961018,0.260747,0.53433,0.546648,0.0778285,0.312907,0.295139,0.554019,0.0639665,0.781878,0.722021,0.960821,0.690113,0.501809,0.85393,0.331969,0.42211,0.892385,0.342302,0.18588,0.470439,0.0157002,0.107364,0.432615,0.82597,0.815071,0.905621,0.955463,0.608917,0.726124,0.151318,0.355249,0.91632,0.561602,0.545667,0.223567,0.637685,0.0253839,0.18016,0.949763,0.576618,0.40119,0.207092,0.734459,0.502572,0.175752,0.722722,0.200136,0.212282,0.234586,0.219182,0.396853,0.486648,0.927999,0.136111,0.459642,0.756874,0.276539,0.455404,0.48502,0.775523,0.0849609,0.280974,0.380095,0.308723,0.405725,0.354149,0.295313,0.069631,0.212136,0.94601,0.226704,0.885324,0.210411,0.00724995,0.252563,0.0229609,0.512157,0.393879,0.94329,0.777248,0.43844,0.979468,0.793613,0.941692,0.201874,0.6531,0.127293,0.133154,0.506125,0.116665,0.20848,0.764911,0.507012,0.537944,0.821383,0.0975646,0.126975,0.396425,0.4773,0.894409,0.805576,0.66505,0.884267,0.348204,0.543252,0.445142,0.469771,0.255147,0.0900984,0.434637,0.885706,0.709543,0.217994,0.969219,0.69931,0.528158,0.373976,0.591478,0.866972,0.119369,0.694916,0.99443,0.918749,0.195262,0.479571,0.448984,0.127382,0.372921,0.681283,0.146398,0.528048,0.804247,0.242135,0.613683,0.854232,0.719056,0.79401,0.27119,0.0243506,0.212285,0.850996,0.418408,0.419616,0.524781,0.719471,0.907937,0.911631,0.155518,0.820276,0.457834,0.538225,0.981655,0.0559417,0.610324,0.305179,0.604698,0.998382,0.966154,0.698801,0.184082,0.874418,0.102782,0.5548,0.152473,0.461373,0.402359,0.00830919,0.105754,0.756072,0.110154,0.330572,0.902402,0.614741,0.530959,0.705554,0.857085,0.178661,0.237999,0.282437,0.187786,0.740789,0.721428,0.166098,0.257234,0.195354,0.534344,0.425655,0.730842,0.532,0.254564,0.831778,0.305197,0.240626,0.616674,0.543767,0.200053,0.0157679,0.235307,0.334608,0.936387,0.264099,0.750934,0.396435,0.415868,0.360751,0.893772,0.36256,0.208841,0.796831,0.0547629,0.27439,0.898464,0.988732,0.632156,0.88227,0.672216,0.0626802,0.11495,0.453239,0.79202,0.089819,0.200833,0.684116,0.491551,0.430413,0.41097,0.772061,0.885615,0.7861,0.635033,0.27127,0.364017,0.215177,0.313495,0.521729,0.58639,0.0446171,0.656618,0.049826,0.294059,0.366422,0.918031,0.435056,0.352074,0.496657,0.503791,0.997178,0.848225,0.623941,0.639941,0.226179,0.194825,0.76698,0.983018,0.510674,0.703614,0.9909,0.61493,0.324566,0.713969,0.0667705,0.104182,0.346939,0.184693,0.366763,0.30299,0.509665,0.105927,0.107077,0.893503,0.620968,0.598769,0.806809,0.556367,0.496023,0.763183,0.73951,0.374762,0.748091,0.403459,0.264541,0.308999,0.416913,0.686905,0.352813,0.513853,0.564156,0.6064,0.157577,0.46196,0.342001,0.233194,0.541762,0.519744,0.420474,0.672404,0.519537,0.808517,0.387212,0.812333,0.26703,0.494488,0.923379,0.146393,0.62667,0.787498,0.635687,0.934617,0.683322,0.614571,0.989739,0.730478,0.276795,0.571273,0.287632,0.63172,0.4371,0.630358,0.850905,0.954263,0.152973,0.42366,0.616665,0.488686,0.297786,0.32064,0.213157,0.721496,0.971471,0.512076,0.940173,0.606603,0.208287,0.304381,0.678966,0.411522,0.218786,0.268504,0.188228,0.607983,0.213969,0.358539,0.778086,0.504208,0.808472,0.0733033,0.773067,0.982942,0.972485,0.532312,0.266175,0.0445641,0.467547,0.185907,0.462519,0.677415,0.550723,0.919363,0.433944,0.291211,0.303469,0.972904,0.192622,0.135641,0.399089,0.938492,0.366462,0.54515,0.358726,0.00573289,0.144585,0.0143212,0.23977,0.0186024,0.544057,0.331284,0.781196,0.292702,0.747412,0.682033,0.618955,0.0574975,0.890869,0.792813,0.920774,0.177079,0.860413,0.608719,0.686408,0.605746,0.602487,0.703179,0.241368,0.524685,0.136261,0.545724,0.967763,0.0250763,0.017992,0.914298,0.162238,0.246558,0.726173,0.807185,0.149285,0.517591,0.0168934,0.0834738,0.66281,0.849795,0.369014,0.837766,0.0444159,0.474576,0.157127,0.663753,0.150877,0.348138,0.920763,0.134948,0.958122,0.802363,0.290564,0.897579,0.268227,0.77002,0.484191,0.431505,0.314872,0.584265,0.916922,0.77062,0.638369,0.255953,0.23652,0.866647,0.260218,0.893258,0.145594,0.145636,0.970886,0.758155,0.558316,0.74546,0.774906,0.902715,0.577593,0.915451,0.273818,0.532331,0.769789,0.35713,0.828656,0.0933903,0.619393,0.259569,0.598691,0.980043,0.135171,0.0523862,0.574498,0.470785,0.585321,0.415494,0.633023,0.274172,0.934707,0.906856,0.832754,0.0245705,0.695469,0.472869,0.345805,0.858593,0.210431,0.335706,0.79173,0.737764,0.64314,0.854946,0.111436,0.192022,0.067664,0.0535158,0.179255,0.443902,0.400869,0.251785,0.00394493,0.408583,0.881197,0.87749,0.574002,0.46175,0.768855,0.16451,0.0788424,0.187224,0.512973,0.168951,0.698766,0.00380021,0.36735,0.754836,0.881306,0.152674,0.249023,0.812605,0.781954,0.01642,0.612999,0.992431,0.640866,0.994031,0.203697,0.515349,0.116454,0.998023,0.881605,0.279217,0.322801,0.33596,0.637813,0.390105,0.0178294,0.0541548,0.681803,0.400021,0.617733,0.696837,0.422587,0.929163,0.807657,0.213973,0.354755,0.318713,0.76597,0.0304775,0.868271,0.829093,0.449104,0.667338,0.104895,0.635083,0.163979,0.706985,0.675253,0.349874,0.351493,0.715005,0.167067,0.77891,0.339672,0.168979,0.381226,0.116464,0.332041,0.269962,0.802019,0.677193,0.837221,0.912046,0.320141,0.930668,0.424777,0.709908,0.486491,0.84525,0.294539,0.848895,0.851642,0.760488,0.308396,0.281197,0.169749,0.137364,0.541583,0.787642,0.254809,0.817491,0.674444,0.888136,0.288303,0.748484,0.671993,0.668966,0.493271,0.636701,0.169131,0.122667,0.461741,0.45811,0.37297,0.335787,0.875781,0.380462,0.174833,0.0916095,0.0338518,0.791177,0.75495,0.202665,0.759357,0.0983377,0.777957,0.516517,0.16816,0.609594,0.65814,0.144659,0.173609,0.713857,0.962637,0.903281,0.893212,0.387882,0.903641,0.367703,0.820028,0.0620827,0.00479072,0.448623,0.357645,0.964264,0.568326,0.00546443,0.351953,0.318428,0.859445,0.688722,0.919869,0.500331,0.644643,0.482733,0.8294,0.601437,0.0873891,0.920771,0.750532,0.229513,0.161661,0.905061,0.443254,0.637499,0.392012,0.860154,0.189273,0.816177,0.866618,0.113383,0.0407177,0.29537,0.382185,0.114675,0.378311,0.680816,0.176121,0.397058,0.100596,0.7107,0.0363036,0.274002,0.944715,0.171763,0.574775,0.966155,0.497193,0.769884,0.223182,0.723974,0.0536445,0.907068,0.933335,0.476591,0.812284,0.478724,0.231379,0.564888,0.495542,0.59316,0.644641,0.743586,0.398185,0.977966,0.472845,0.059036,0.25023,0.486305,0.793716,0.898758,0.830194,0.158783,0.322354,0.0695721,0.26754,0.122985,0.750414,0.596172,0.494751,0.64807,0.484994,0.960761,0.316032,0.431594,0.483865,0.461641,0.918101,0.786892,0.711976,0.382878,0.590184,0.174785,0.674546,0.611846,0.335401,0.147391,0.696405,0.156425,0.326088,0.525258,0.82641,0.974115,0.665719,0.865375,0.166988,0.883568,0.789166,0.288712,0.355491,0.216363,0.965638,0.408551,0.237335,0.579555,0.534284,0.672056,0.082979,0.582589,0.341895,0.490474,0.113041,0.623523,0.597896,0.515006,0.338024,0.811211,0.0590466,0.0765566,0.48402,0.698945,0.670226,0.578599,0.945599,0.043083,0.292085,0.151173,0.6349,0.602544,0.347974,0.102638,0.125541,0.398771,0.957065,0.706044,0.734643,0.990653,0.310302,0.93022,0.791124,0.334271,0.753018,0.371102,0.441501,0.167002,0.293363,0.343701,0.955754,0.524296,0.360156,0.0552472,0.392106,0.00707525,0.907437,0.736119,0.0838226,0.542226,0.989791,0.219062,0.820671,0.419604,0.181165,0.186625,0.356517,0.972809,0.0492023,0.782934,0.368841,0.812181,0.732941,0.98536,0.492359,0.0818404,0.404769,0.588393,0.207193,0.00330442,0.925772,0.293916,0.347683,0.168235,0.666779,0.267518,0.896914,0.103065,0.162698,0.275857,0.0839296,0.356523,0.301436,0.646936,0.128563,0.130757,0.085331,0.822753,0.401104,0.245548,0.949175,0.636361,0.195674,0.908461,0.737324,0.653017,0.287953,0.377499,0.0568643,0.499234,0.900154,0.857521,0.486542,0.569198,|0.136567,0.885646,0.834704,0.77487,0.216921,0.120262,0.272603,0.478611,0.191515,0.507764,0.136,0.849618,0.148873,0.47736,0.698349,0.347786,0.429098,0.213203,0.771868,0.587621,0.31999,0.507796,0.651519,0.0636665,0.352833,0.572854,0.27582,0.5594,0.571599,0.263742,0.492987,0.296273,0.0794747,0.0150989,0.0401483,0.364336,0.129154,0.266265,0.545529,0.960208,0.602329,0.948498,0.879724,0.804722,0.46978,0.736837,0.491186,0.265883,0.188061,0.21403,0.0372351,0.786153,0.942252,0.698672,0.0424711,0.703431,0.902525,0.613366,0.177815,0.235006,0.314234,0.315613,0.981555,0.99388,0.313715,0.95356,0.317401,0.0125184,0.238182,0.245966,0.164429,0.939529,0.332297,0.198005,0.00211549,0.608444,0.388718,0.0882603,0.712881,0.321923,0.349538,0.362537,0.415459,0.871107,0.501837,0.225104,0.408235,0.132827,0.0293343,0.922716,0.989092,0.660564,0.742437,0.164081,0.347737,0.186122,0.0225071,0.194731,0.0363236,0.750795,0.291844,0.395037,0.74495,0.789063,0.381288,0.546789,0.611364,0.19216,0.91276,0.000266433,0.681836,0.373917,0.0657867,0.59009,0.871115,0.747374,0.84739,0.732331,0.610587,0.0869191,0.795687,0.18504,0.531474,0.843964,0.18304,0.608235,0.590023,0.436224,0.367955,0.653335,0.914384,0.663002,0.730365,0.256738,0.945144,0.650291,0.468005,0.392645,0.200352,0.397827,0.647896,0.0512974,0.400671,0.765072,0.924233,0.693637,0.026243,0.387439,0.127387,0.0866818,0.139361,0.610483,0.547641,0.252438,0.0310829,0.107891,0.863243,0.400247,0.622953,0.508417,0.20115,0.98078,0.252813,0.917274,0.131087,0.38795,0.843741,0.197736,0.0222403,0.878146,0.236475,0.921219,0.595987,0.771067,0.516642,0.734738,0.751395,0.221887,0.416623,0.382146,0.473876,0.661366,0.445405,0.131644,0.927934,0.971254,0.524042,0.209649,0.151354,0.891447,0.97482,0.0920486,0.891963,0.590819,0.0369232,0.627962,0.845026,0.0514819,0.121228,0.103322,0.664277,0.459267,0.496212,0.188379,0.754342,0.308919,0.492126,0.60389,0.764787,0.630971,0.087472,0.569988,0.257149,0.685103,0.685438,0.57096,0.22471,0.912236,0.390235,0.708323,0.691694,0.789984,0.726562,0.0124694,0.00204635,0.405581,0.905485,0.916891,0.646825,0.453746,0.37776,0.68434,0.0526881,0.318708,0.0814348,0.367508,0.567933,0.7328,0.66052,0.599111,0.841447,0.95029,0.966008,0.267525,0.389103,0.477518,0.264871,0.394811,0.469431,0.650756,0.798375,0.377205,0.83302,0.30907,0.8774,0.155641,0.964433,0.815213,0.239625,0.811769,0.8909,0.378657,0.188475,0.492482,0.0333791,0.677317,0.716524,0.935027,0.263409,0.151628,0.940615,0.363937,0.314521,0.265782,0.240192,0.109211,0.545978,0.133175,0.327428,0.179496,0.723794,0.925705,0.782601,0.635367,0.565216,0.18474,0.962573,0.335277,0.788751,0.172385,0.0944514,0.52849,0.708542,0.477602,0.288271,0.241614,0.799715,0.454838,0.807107,0.725558,0.200348,0.481888,0.379454,0.908912,0.990721,0.4925,0.33304,0.55061,0.226642,0.913357,0.585519,0.417762,0.216314,0.0908316,0.749128,0.305491,0.256473,0.874223,0.395583,0.934535,0.099684,0.99034,0.602613,0.520737,0.0192721,0.197618,0.793154,0.929305,0.753952,0.439096,0.152163,0.682302,0.268449,0.686961,0.142673,0.904207,0.0194556,0.696305,0.269894,0.212912,0.0817187,0.0722526,0.846778,0.495029,0.882084,0.739154,0.189567,0.742593,0.788108,0.170974,0.0368745,0.504136,0.521811,0.0388701,0.605819,0.844728,0.625791,0.670621,0.759428,0.72191,0.0471978,0.422014,0.541249,0.181565,0.878182,0.318519,0.901846,0.968568,0.00634116,0.472546,0.444911,0.666977,0.201297,0.769863,0.968298,0.264079,0.287828,0.587668,0.0982003,0.769102,0.289165,0.776316,0.55543,0.996077,0.268992,0.411331,0.389532,0.164385,0.695507,0.999518,0.980387,0.592187,0.095831,0.729406,0.706526,0.647551,0.334819,0.0954748,0.705867,0.746621,0.700402,0.407515,0.0264274,0.0589873,0.0640351,0.333936,0.130895,0.275201,0.773864,0.782211,0.559211,0.71787,0.480152,0.558411,0.386809,0.922369,0.0426686,0.177883,0.184335,0.334638,0.823879,0.810987,0.905726,0.760626,0.769989,0.20748,0.487521,0.714087,0.308201,0.480641,0.870282,0.664399,0.162727,0.104437,0.0534211,0.641898,0.532574,0.420905,0.912863,0.945984,0.0412737,0.590998,0.699986,0.94737,0.512992,0.935433,0.837758,0.519038,0.83095,0.814456,0.706993,0.786141,0.921034,0.94541,0.670988,0.260832,0.957315,0.297927,0.774047,0.474123,0.168181,0.559883,0.0380616,0.482973,0.589159,0.0220876,0.528967,0.902707,0.499367,0.312212,0.0368939,0.230115,0.771901,0.306876,0.128374,0.162999,0.475106,0.0253206,0.382592,0.840617,0.643957,0.212392,0.548731,0.948325,0.212043,0.938552,0.76878,0.762832,0.87464,0.26547,0.0793666,0.843633,0.781659,0.0878709,0.474603,0.35798,0.482847,0.891122,0.456922,0.67853,0.150969,0.624716,0.511207,0.0595183,0.139788,0.598174,0.262491,0.157972,0.55849,0.615343,0.361452,0.17363,0.509785,0.0343643,0.375769,0.572243,0.327609,0.114024,0.0685418,0.990107,0.83895,0.609771,0.220231,0.0618705,0.596896,0.564367,0.338194,0.425778,0.559502,0.371586,0.683789,0.816879,0.656296,0.82524,0.185162,0.0155951,0.889532,0.0769338,0.799567,0.482242,0.286825,0.588236,0.226206,0.639303,0.761176,0.300952,0.38646,0.0103953,0.381371,0.663402,0.307003,0.741824,0.196998,0.64468,0.0255983,0.654062,0.654432,0.453199,0.941475,0.57203,0.335142,0.242806,0.886313,0.17911,0.942549,0.925866,0.629948,0.138,0.208499,0.860775,0.926612,0.216866,0.353537,0.952249,0.963102,0.898874,0.212036,0.810228,0.937147,0.274093,0.788654,0.865717,0.131716,0.626295,0.832052,0.133233,0.585488,0.421378,0.830132,0.77748,0.722147,0.258416,0.174782,0.973887,0.686634,0.173462,0.695512,0.592095,0.277474,0.996182,0.356291,0.564718,0.684362,0.478451,0.188507,0.750765,0.775118,0.182208,0.857873,0.13235,0.0838304,0.905438,0.47338,0.767678,0.0478752,0.454078,0.00418359,0.556663,0.272853,0.958294,0.8538,0.550976,0.554892,0.220833,0.283657,0.647651,0.569249,0.634841,0.40782,0.186229,0.951812,0.367813,0.770812,0.693976,0.573816,0.159245,0.319527,0.436949,0.236382,0.30856,0.653208,0.34286,0.562129,0.439806,0.685028,0.521526,0.84677,0.681362,0.565692,0.13102,0.702329,0.488092,0.0419296,0.681241,0.965379,0.88123,0.484152,0.149814,0.279746,0.672657,0.47021,0.535212,0.943379,0.840299,0.78581,0.287902,0.86365,0.261025,0.733597,0.968597,0.200917,0.372626,0.717963,0.579958,0.479482,0.0233607,0.485085,0.0434133,0.54127,0.266294,0.638749,0.598377,0.107099,0.675703,0.271503,0.564333,0.97493,0.200956,0.420094,0.684835,0.0139806,0.579635,0.720284,0.752388,0.610964,0.49788,0.692455,0.121402,0.820607,0.690419,0.48951,0.877555,0.697362,0.707021,0.12759,0.261977,0.0685606,0.254686,0.195908,0.345207,0.477467,0.0596775,0.999805,0.490363,0.836182,0.270294,0.10654,0.0892007,0.112168,0.169474,0.133313,0.988129,0.51777,0.0861189,0.475582,0.396412,0.827974,0.956963,0.419078,0.0128573,0.411947,0.648993,0.869806,0.769182,0.639399,0.781983,0.31568,0.106991,0.988794,0.149591,0.985984,0.847423,0.354924,0.37313,0.599378,0.239156,0.173866,0.0381165,0.103995,0.738705,0.00500482,0.699224,0.267471,0.578984,0.553769,0.966779,0.339944,0.780807,0.083956,0.254359,0.629221,0.547482,0.624577,0.599417,0.200196,0.823611,0.695486,0.74088,0.29006,0.773146,0.0693958,0.68925,0.517148,0.716509,0.796761,0.696756,0.678091,0.481409,0.645168,0.550739,0.604836,0.397587,0.9331,0.665236,0.792176,0.214697,0.90506,0.494561,0.200687,0.392355,0.023598,0.973138,0.146056,0.259893,0.0948427,0.36415,0.996637,0.988575,0.20358,0.411638,0.981574,0.127039,0.0107189,0.98312,0.48955,0.738876,0.516595,0.805438,0.641705,0.624869,0.373663,0.112868,0.664288,0.0902997,0.085053,0.652059,0.274407,0.143246,0.566085,0.461166,0.902694,0.136289,0.183047,0.350264,0.230798,0.0841873,0.817898,0.136274,0.984782,0.740505,0.961817,0.169449,0.121398,0.613387,0.459044,0.634665,0.963505,0.490174,0.0555147,0.523795,0.149214,0.208934,0.645391,0.78306,0.443398,0.445324,0.987904,0.262508,0.181478,0.562406,0.899692,0.00234735,0.173312,0.743663,0.812126,0.0120012,0.917106,0.145833,0.685904,0.858707,0.0194136,0.304077,0.681968,0.227968,0.121753,0.887035,0.0811125,0.0878922,0.792086,0.900619,0.415276,0.940047,0.896521,0.474517,0.383831,0.621,0.0483888,0.293111,0.180764,0.246982,0.669603,0.453621,0.572166,0.966018,0.217904,0.0577485,0.515195,0.167859,0.0907427,0.259859,0.256348,0.984937,0.337794,0.176336,0.670568,0.173755,0.969411,0.382868,0.47346,0.834475,0.900417,0.486972,0.654884,0.036038,0.217526,0.556857,0.479545,0.310516,0.622957,0.563241,0.804681,0.781788,0.345031,0.595042,0.734618,0.671918,0.779983,0.742545,0.628131,0.993825,0.459213,0.00517863,0.596618,0.665397,0.56019,0.721554,0.199918,0.608423,0.277224,0.136844,0.456498,0.481356,0.979792,0.378996,0.839172,0.943361,0.319712,0.81331,0.485502,0.905646,0.431856,0.288228,0.388455,0.198537,0.829971,0.840636,0.451739,0.859067,0.636803,0.336175,0.586755,0.146269,0.0163715,0.933047,0.179456,0.139957,0.39156,0.785616,0.205697,0.463229,0.92332,0.989682,0.789391,0.860083,0.256274,0.77292,0.542281,0.741403,0.331238,0.893196,0.858454,0.797391,0.805721,0.211706,0.790486,0.0831652,0.407597,0.286207,0.594928,0.725808,0.961454,0.928755,0.106842,0.763617,0.153928,0.11148,0.769586,0.217205,0.273953,0.0318794,0.890558,0.275041,0.213355,0.61839,0.162255,0.726254,0.696874,0.855528,0.219455,0.702958,|0.92291,0.916866,0.396285,0.788369,0.948616,0.365414,0.285627,0.0666583,0.0996339,0.98813,0.714837,0.365384,0.250033,0.736686,0.721699,0.915444,0.657784,0.967139,0.862638,0.365319,0.907815,0.761779,0.0421715,0.94702,0.967838,0.153753,0.890219,0.48056,0.883663,0.415504,0.593378,0.938549,0.725271,0.704905,0.2838,0.979896,0.634786,0.139451,0.910412,0.843941,0.343166,0.752363,0.509825,0.586637,0.925915,0.529333,0.841605,0.103489,0.209696,0.0104243,0.293524,0.571542,0.249447,0.835098,0.728953,0.566753,0.83509,0.768582,0.0680602,0.41533,0.734473,0.339089,0.222923,0.315967,0.455834,0.326517,0.0573226,0.115039,0.687692,0.0851117,0.687347,0.825526,0.757863,0.990628,0.528751,0.213507,0.105174,0.628688,0.235548,0.28496,0.18984,0.916395,0.697804,0.556624,0.198748,0.0900126,0.629413,0.115488,0.604604,0.415733,0.812059,0.513923,0.252463,0.944807,0.34805,0.505106,0.801161,0.474991,0.1343,0.488329,0.753804,0.106036,0.905858,0.921762,0.0389202,0.801039,0.844874,0.25561,0.57409,0.42078,0.347266,0.616094,0.771095,0.486011,0.341378,0.523259,0.356793,0.847264,0.0553197,0.168095,0.903151,0.889265,0.652669,0.856755,0.657307,0.175991,0.139736,0.618189,0.988924,0.886524,0.683771,0.687817,0.382711,0.26212,0.197999,0.770968,0.791188,0.241763,0.97896,0.666084,0.222401,0.628871,0.684849,0.267972,0.624118,0.518359,0.16533,0.405139,0.00813174,0.442221,0.433907,0.0707766,0.600833,0.423608,0.497436,0.0110018,0.809261,0.493197,0.674221,0.172064,0.694638,0.0117732,0.069082,0.85511,0.454482,0.748072,0.0971654,0.198599,0.695005,0.637327,0.928092,0.375862,0.752412,0.721282,0.078403,0.545705,0.645887,0.976849,0.179768,0.676083,0.169314,0.977973,0.479279,0.365921,0.357973,0.734381,0.743808,0.663377,0.829598,0.728687,0.101701,0.302585,0.0922826,0.00833702,0.328956,0.467899,0.419378,0.714822,0.0236792,0.793184,0.718377,0.857173,0.158348,0.664053,0.524237,0.0164787,0.147987,0.480179,0.425436,0.736545,0.0742463,0.731872,0.565793,0.20653,0.592537,0.978706,0.930551,0.434502,0.102997,0.127643,0.187602,0.194981,0.916664,0.290926,0.999119,0.919629,0.0507936,0.808705,0.455194,0.49195,0.599635,0.0246511,0.297478,0.456428,0.407915,0.479759,0.685765,0.997962,0.642981,0.391159,0.475959,0.579091,0.551444,0.637936,0.0990904,0.913633,0.836016,0.299163,0.733233,0.572065,0.407424,0.932588,0.137267,0.613862,0.011959,0.368024,0.976975,0.62129,0.479819,0.910079,0.245721,0.883927,0.691446,0.695048,0.754405,0.797467,0.204113,0.714911,0.566817,0.0369406,0.670302,0.765004,0.565094,0.964489,0.539955,0.611109,0.532501,0.0187556,0.600308,0.439286,0.673562,0.894382,0.461415,0.59236,0.14827,0.0558777,0.350118,0.726346,0.493813,0.786701,0.496929,0.753971,0.254189,0.609151,0.402096,0.690261,0.0455382,0.288312,0.837563,0.545567,0.765495,0.442156,0.937457,0.686097,0.947848,0.44081,0.207846,0.316173,0.846433,0.0867357,0.185501,0.884439,0.484221,0.407466,0.223479,0.583371,0.443113,0.894763,0.519661,0.447611,0.157086,0.201627,0.936467,0.835491,0.694344,0.570118,0.609232,0.14606,0.547747,0.526854,0.0598524,0.155621,0.137705,0.846608,0.256172,0.41136,0.685244,0.00823522,0.150005,0.155999,0.522781,0.710164,0.998146,0.558158,0.800228,0.596553,0.721628,0.749697,0.0501642,0.449288,0.573088,0.074699,0.980444,0.363532,0.640153,0.755338,0.704943,0.709997,0.759315,0.982866,0.537107,0.405455,0.292157,0.907072,0.837304,0.661638,0.19165,0.321321,0.0217649,0.337331,0.0221669,0.0399686,0.583042,0.641067,0.334361,0.583006,0.305039,0.293683,0.401207,0.839819,0.184339,0.973922,0.300095,0.272296,0.69942,0.441716,0.890295,0.607928,0.260108,0.591922,0.19514,0.540656,0.584815,0.923917,0.832394,0.81031,0.942525,0.252191,0.557673,0.744478,0.257255,0.183366,0.232047,0.788277,0.145091,0.334538,0.372881,0.808553,0.931739,0.767142,0.826253,0.432686,0.174581,0.860536,0.00178891,0.602071,0.106016,0.389738,0.687302,0.726154,0.121276,0.475786,0.185652,0.836004,0.29683,0.626074,0.715046,0.128173,0.989088,0.453308,0.151237,0.424286,0.805042,0.112474,0.328464,0.0612835,0.530778,0.177774,0.49505,0.0371543,0.297327,0.415821,0.262709,0.576368,0.531049,0.417422,0.0411631,0.163053,0.898521,0.942271,0.531727,0.982017,0.620979,0.0792134,0.573341,0.559592,0.923303,0.680399,0.350706,0.594194,0.446348,0.450582,0.735833,0.569546,0.839546,0.013394,0.957362,0.132564,0.749772,0.242953,0.35499,0.471176,0.969749,0.137074,0.630468,0.17386,0.808771,0.0846733,0.544762,0.545739,0.678171,0.379285,0.123918,0.269887,0.791619,0.710094,0.445555,0.391917,0.202674,0.534967,0.186308,0.490812,0.955933,0.135522,0.989817,0.777937,0.507261,0.182488,0.070349,0.00321984,0.622429,0.587099,0.506208,0.818356,0.545954,0.486544,0.551314,0.184866,0.952571,0.309406,0.766864,0.254991,0.915247,0.387619,0.0930519,0.927134,0.334307,0.943669,0.227039,0.365918,0.612475,0.160274,0.126119,0.75162,0.725159,0.875821,0.958503,0.637821,0.0382985,0.289881,0.763976,0.444668,0.234245,0.362402,0.188184,0.845003,0.497777,0.0039773,0.97353,0.217499,0.150524,0.305983,0.278067,0.69552,0.204544,0.0103352,0.519979,0.38929,0.0656883,0.399566,0.751744,0.348892,0.78425,0.925029,0.955286,0.0646995,0.562215,0.0441803,0.607481,0.615822,0.602428,0.219215,0.111175,0.579203,0.829768,0.850996,0.770326,0.351883,0.774577,0.281223,0.322973,0.255916,0.486061,0.761525,0.825921,0.302285,0.294607,0.733414,0.736613,0.41788,0.279424,0.597753,0.799473,0.164385,0.8119,0.0205784,0.293119,0.00232142,0.236603,0.97944,0.149228,0.156429,0.42655,0.100065,0.673448,0.80758,0.849627,0.54414,0.612658,0.106229,0.490714,0.96519,0.260918,0.572507,0.518476,0.679991,0.0255435,0.704097,0.860304,0.0315572,0.663997,0.232532,0.420851,0.215919,0.44518,0.429451,0.176621,0.493573,0.615621,0.820967,0.88274,0.341576,0.748759,0.0153978,0.245324,0.661436,0.801436,0.303722,0.24031,0.730194,0.636128,0.60768,0.819276,0.745609,0.876239,0.485069,0.177374,0.820978,0.980853,0.485124,0.568396,0.308972,0.0474908,0.309369,0.59139,0.483154,0.0760289,0.279231,0.826732,0.976425,0.881257,0.398151,0.789289,0.0296628,0.413303,0.576762,0.31927,0.498702,0.612387,0.201466,0.791971,0.244263,0.994328,0.418518,0.217384,0.0905769,0.735876,0.687704,0.983284,0.0136562,0.507426,0.905515,0.707651,0.775814,0.217735,0.214257,0.862295,0.774125,0.473003,0.00568259,0.0927669,0.210986,0.652609,0.377768,0.546354,0.345141,0.0810357,0.893689,0.401093,0.179874,0.31147,0.350711,0.643923,0.394713,0.699437,0.538801,0.538822,0.453828,0.128781,0.927683,0.200355,0.61178,0.770312,0.405704,0.298678,0.301133,0.770126,0.824632,0.872789,0.486844,0.523853,0.18163,0.822437,0.890172,0.80664,0.109514,0.0158412,0.492787,0.78554,0.574826,0.388698,0.665208,0.236872,0.70292,0.752532,0.543255,0.620123,0.508877,0.891484,0.0132479,0.040567,0.329565,0.157392,0.579381,0.220177,0.324147,0.401466,0.384844,0.122866,0.0552625,0.891846,0.767331,0.865845,0.927398,0.420448,0.0307796,0.421991,0.0966809,0.265431,0.845369,0.986005,0.294135,0.969718,0.413047,0.238831,0.290977,0.649462,0.763295,0.877047,0.312524,0.036119,0.17495,0.180517,0.538324,0.226968,0.645134,0.437761,0.482224,0.162454,0.123619,0.946015,0.593844,0.979532,0.824816,0.20348,0.603847,0.71342,0.445461,0.529664,0.905275,0.957995,0.161974,0.912597,0.980795,0.928081,0.639077,0.676041,0.662435,0.728218,0.292242,0.0292156,0.550544,0.848067,0.568745,0.557769,0.180026,0.270132,0.65415,0.759924,0.329452,0.10447,0.25428,0.610435,0.914294,0.423444,0.527247,0.400123,0.557634,0.812025,0.208296,0.50942,0.790446,0.354276,0.674052,0.475701,0.660918,0.229588,0.995486,0.78894,0.582951,0.596037,0.856192,0.264968,0.436513,0.405461,0.453927,0.546214,0.494208,0.10873,0.363884,0.283587,0.412294,0.328825,0.586444,0.00770926,0.975064,0.550652,0.337721,0.0052458,0.207386,0.350005,0.079806,0.779663,0.156752,0.828975,0.722737,0.55163,0.453625,0.96701,0.15435,0.317985,0.276092,0.187136,0.705949,0.235703,0.761751,0.677309,0.861592,0.0374046,0.618481,0.180848,0.483381,0.281873,0.71109,0.487109,0.619597,0.687172,0.771061,0.872068,0.193411,0.442443,0.302053,0.549697,0.0378969,0.410993,0.913669,0.414556,0.712169,0.251827,0.764068,0.729303,0.553579,0.236075,0.964571,0.526103,0.323776,0.177649,0.685068,0.760095,0.389332,0.397348,0.973475,0.74875,0.168557,0.545379,0.618389,0.525846,0.224853,0.587662,0.693473,0.294638,0.783045,0.186206,0.765485,0.91783,0.0652722,0.268152,0.341239,0.533766,0.909137,0.195528,0.354824,0.197463,0.163639,0.546637,0.47172,0.22171,0.224171,0.0805475,0.60916,0.502653,0.206715,0.680775,0.531812,0.270189,0.145705,0.130791,0.525508,0.171327,0.51649,0.479935,0.287888,0.0339398,0.769229,0.0386783,0.583475,0.112252,0.503797,0.631924,0.650621,0.819862,0.213839,0.0970232,0.570962,0.747928,0.322871,0.781006,0.045716,0.462247,0.275104,0.602625,0.709393,0.349503,0.677542,0.782303,0.522179,0.518367,0.480893,0.417943,0.650485,0.85724,0.235057,0.24922,0.845704,0.859661,0.401239,0.0852975,0.11712,0.744617,0.782545,0.356693,0.869747,0.843989,0.0305702,0.71532,0.328964,0.885442,0.037649,0.127637,0.922872,0.365778,0.300643,0.233278,0.56202,0.315523,0.960324,0.584584,0.977419,0.197813,0.764127,0.703432,0.649073,0.863262,0.944229,0.857679,0.859782,0.419307,0.412061,0.48105,0.889474,|0.306667,0.906247,0.91522,0.484573,0.844802,0.994487,0.686804,0.363189,0.276363,0.413684,0.774398,0.478955,0.966972,0.324565,0.986752,0.124342,0.65444,0.521901,0.200789,0.500137,0.427759,0.398037,0.934946,0.512729,0.905935,0.0346878,0.549163,0.812041,0.364665,0.44808,0.0879575,0.776286,0.40537,0.420084,0.703578,0.566372,0.631585,0.826743,0.0396251,0.645831,0.757354,0.398233,0.923687,0.341024,0.76464,0.689302,0.0761617,0.673612,0.194634,0.652713,0.932093,0.374843,0.488343,0.822179,0.48006,0.624836,0.411209,0.80082,0.677174,0.20037,0.328299,0.66419,0.326896,0.768455,0.573852,0.264195,0.558668,0.393438,0.270853,0.880009,0.171847,0.258244,0.641377,0.102138,0.991597,0.863875,0.382875,0.440742,0.293639,0.951245,0.672244,0.597872,0.534797,0.292014,0.271464,0.0903924,0.711821,0.758401,0.63531,0.911299,0.016005,0.495021,0.0458673,0.457308,0.133302,0.860501,0.865508,0.615385,0.403157,0.0473647,0.726102,0.300185,0.437938,0.578481,0.964819,0.87407,0.607381,0.961798,0.274428,0.240679,0.250158,0.532083,0.634189,0.769186,0.108468,0.10262,0.80071,0.835329,0.9432,0.531455,0.0724284,0.0539368,0.487348,0.0963864,0.390734,0.634126,0.070683,0.913538,0.592862,0.0020206,0.367508,0.0117804,0.677781,0.667582,0.208275,0.615534,0.715299,0.123852,0.621938,0.32632,0.240455,0.813999,0.406197,0.0894974,0.184622,0.451239,0.556184,0.936796,0.197824,0.719376,0.878267,0.877424,0.508597,0.821738,0.608007,0.866339,0.573611,0.365066,0.372466,0.727302,0.278722,0.38948,0.429901,0.71053,0.399706,0.764344,0.327082,0.880241,0.279464,0.945205,0.738723,0.275491,0.610632,0.647369,0.53442,0.398964,0.081774,0.455572,0.92501,0.336074,0.202024,0.415702,0.947092,0.21707,0.946544,0.111647,0.435596,0.23266,0.626203,0.782782,0.868835,0.932722,0.0586292,0.881779,0.422599,0.788957,0.95002,0.261021,0.0597088,0.288753,0.770493,0.0105318,0.0946931,0.185162,0.0622545,0.533132,0.650404,0.408141,0.948906,0.77884,0.783805,0.835571,0.105453,0.745212,0.444554,0.506693,0.723732,0.487145,0.259004,0.909064,0.455788,0.281082,0.695914,0.768212,0.406464,0.678701,0.58872,0.0126783,0.21961,0.742871,0.493269,0.260979,0.0343777,0.0913999,0.778613,0.102611,0.992049,0.53196,0.142586,0.924086,0.986488,0.685747,0.653343,0.503356,0.885571,0.357365,0.588538,0.684305,0.380773,0.261714,0.924532,0.181408,0.0686081,0.515621,0.43576,0.861379,0.676254,0.815485,0.573187,0.970379,0.758129,0.217562,0.562965,0.44894,0.496468,0.271129,0.864606,0.467714,0.960155,0.441367,0.962532,0.842863,0.86349,0.606922,0.407442,0.00327265,0.348082,0.792943,0.220991,0.782318,0.68371,0.0969653,0.231254,0.582684,0.594389,0.946309,0.972189,0.639902,0.64778,0.844323,0.00471765,0.488413,0.547556,0.677249,0.359979,0.767007,0.804875,0.279551,0.750034,0.694925,0.98525,0.695495,0.264807,0.409926,0.811237,0.0368847,0.400157,0.772392,0.424591,0.953544,0.459437,0.541622,0.894518,0.331339,0.787373,0.727589,0.0396413,0.580348,0.206225,0.678393,0.876005,0.0872505,0.87853,0.578486,0.522405,0.0169191,0.286816,0.162429,0.0507833,0.703257,0.212177,0.993922,0.982835,0.681014,0.419428,0.974567,0.938597,0.159122,0.550757,0.364805,0.36963,0.610054,0.0209938,0.682583,0.0930426,0.521201,0.0500586,0.907908,0.426779,0.696097,0.390729,0.458349,0.963247,0.581162,0.408781,0.959006,0.816807,0.688532,0.361807,0.742446,0.62638,0.757164,0.401933,0.199146,0.121148,0.537849,0.44871,0.416941,0.0889421,0.367591,0.81666,0.544085,0.151582,0.572017,0.721786,0.791081,0.939811,0.271672,0.909683,0.478767,0.120173,0.16416,0.955867,0.247357,0.304708,0.827481,0.14859,0.785063,0.847822,0.737864,0.802432,0.637867,0.923545,0.428778,0.374821,0.661549,0.465375,0.782075,0.143506,0.36853,0.485901,0.594886,0.821823,0.708264,0.905316,0.237258,0.829557,0.854018,0.960343,0.731128,0.00486213,0.2661,0.397095,0.989427,0.083234,0.256192,0.160459,0.436921,0.0243949,0.140881,0.651561,0.730705,0.0836575,0.36816,0.427013,0.714788,0.237306,0.237252,0.583051,0.992472,0.395407,0.838463,0.993122,0.0932431,0.808227,0.19319,0.0609124,0.566377,0.847776,0.880524,0.342377,0.792871,0.496933,0.251448,0.149203,0.386671,0.504476,0.376956,0.776747,0.816815,0.311285,0.996512,0.376891,0.517983,0.0512714,0.848202,0.0908225,0.178624,0.0141014,0.455467,0.126774,0.139498,0.302445,0.800418,0.094896,0.549164,0.449813,0.356577,0.533297,0.0927723,0.787478,0.618213,0.925261,0.74372,0.847953,0.432836,0.796405,0.191525,0.299185,0.442175,0.933652,0.091424,0.566371,0.186003,0.15945,0.212215,0.893337,0.557118,0.348547,0.862136,0.581033,0.956897,0.618239,0.812152,0.580086,0.895007,0.401185,0.865124,0.351116,0.82873,0.598174,0.623727,0.843721,0.540148,0.70878,0.758526,0.15395,0.00484997,0.654885,0.165953,0.0758137,0.415149,0.277108,0.212781,0.0727794,0.945346,0.761956,0.453532,0.456396,0.498311,0.364225,0.691686,0.97041,0.713848,0.898434,0.784923,0.59083,0.419624,0.200878,0.317009,0.957633,0.889684,0.184257,0.826542,0.0202224,0.299619,0.991162,0.753434,0.126494,0.692332,0.678845,0.035476,0.0518609,0.0810627,0.330184,0.493006,0.0664623,0.368717,0.910008,0.502119,0.0945969,0.588007,0.546323,0.213624,0.20529,0.979813,0.0619118,0.751108,0.821731,0.156499,0.509712,0.499934,0.551566,0.80313,0.106959,0.987724,0.320298,0.55878,0.0010761,0.641791,0.748203,0.679807,0.600049,0.339153,0.860224,0.429815,0.545799,0.822562,0.684402,0.166186,0.0633097,0.311572,0.258749,0.893382,0.279076,0.903915,0.490665,0.195031,0.895052,0.949746,0.925332,0.906085,0.915529,0.238509,0.830365,0.35805,0.176757,0.388178,0.302153,0.162701,0.594406,0.900293,0.670914,0.247694,0.973486,0.755606,0.445751,0.0321199,0.452254,0.835691,0.106468,0.428026,0.353526,0.157052,0.0641288,0.0414357,0.0147359,0.97386,0.916221,0.718194,0.680214,0.521537,0.735444,0.759544,0.0435933,0.207556,0.245348,0.310923,0.262332,0.133191,0.260879,0.0703679,0.510471,0.944343,0.259528,0.142719,0.119855,0.694792,0.668181,0.0466004,0.367137,0.162585,0.206774,0.861571,0.491395,0.77952,0.817354,0.830988,0.745085,0.667101,0.538167,0.928788,0.0283563,0.887174,0.232574,0.0168577,0.507114,0.968767,0.905604,0.649064,0.698311,0.32103,0.984109,0.629926,0.0882092,0.615894,0.912974,0.881178,0.698236,0.50263,0.796702,0.368529,0.70729,0.294734,0.00714475,0.619517,0.412291,0.29623,0.785724,0.6142,0.0359331,0.291888,0.150786,0.143643,0.0465607,0.690607,0.152024,0.476632,0.396789,0.868239,0.0495384,0.982095,0.00531936,0.135644,0.0607604,0.705747,0.122534,0.881857,0.170135,0.942829,0.799987,0.722512,0.617856,0.680165,0.745683,0.979271,0.585301,0.461896,0.404348,0.86163,0.128102,0.532107,0.0286056,0.500823,0.942622,0.250757,0.601277,0.56412,0.745065,0.385439,0.638732,0.177822,0.413896,0.728992,0.907698,0.852947,0.57551,0.717338,0.327472,0.0487299,0.570617,0.584104,0.551939,0.34892,0.199304,0.387934,0.276294,0.11206,0.249123,0.552842,0.31097,0.131982,0.0130345,0.733905,0.936723,0.575584,0.919873,0.978669,0.814494,0.242643,0.624648,0.0638202,0.188942,0.235082,0.292045,0.602939,0.648962,0.819611,0.574715,0.465768,0.672754,0.162735,0.658761,0.694043,0.668806,0.990691,0.187916,0.920099,0.807354,0.985974,0.998801,0.0671236,0.173781,0.934932,0.965259,0.0337695,0.462105,0.661627,0.29609,0.827882,0.321113,0.0829617,0.589519,0.688768,0.905106,0.113368,0.387829,0.607876,0.596963,0.378194,0.234307,0.282891,0.651073,0.441498,0.111349,0.618679,0.338188,0.0771294,0.445348,0.252719,0.680024,0.486129,0.807113,0.941084,0.716327,0.550788,0.597546,0.482886,0.889625,0.551749,0.331538,0.491575,0.973082,0.809115,0.587959,0.662414,0.82795,0.622172,0.0807699,0.160985,0.863307,0.693664,0.480094,0.685246,0.15911,0.161552,0.0127097,0.517787,0.207336,0.0227968,0.147271,0.0502388,0.190306,0.409917,0.192228,0.961839,0.278522,0.491636,0.409661,0.696388,0.523558,0.796531,0.535284,0.0441085,0.777285,0.80452,0.583496,0.254589,0.668519,0.463075,0.0617846,0.212865,0.949008,0.0257089,0.569372,0.246325,0.593067,0.352287,0.469537,0.692114,0.85007,0.791657,0.0438572,0.0714527,0.0886768,0.236556,0.866283,0.191078,0.121957,0.787898,0.630407,0.794069,0.0673823,0.865233,0.838283,0.508547,0.220782,0.628643,0.189529,0.0312219,0.694266,0.583374,0.0123873,0.634097,0.220079,0.935466,0.892816,0.569782,0.762437,0.804215,0.977972,0.359553,0.556939,0.543354,0.336895,0.620677,0.141728,0.792889,0.831675,0.974521,0.365164,0.926909,0.853511,0.161638,0.160287,0.687683,0.0757425,0.847619,0.685688,0.189434,0.410644,0.170913,0.136789,0.282418,0.150355,0.49491,0.308775,0.668693,0.465416,0.475766,0.419096,0.8195,0.261731,0.793978,0.689129,0.602361,0.710561,0.99676,0.319944,0.275308,0.0523571,0.194544,0.835268,0.719023,0.00672656,0.729742,0.183704,0.472163,0.822961,0.116487,0.615148,0.412272,0.841848,0.74812,0.0310848,0.0444516,0.539769,0.350777,0.886866,0.487089,0.982897,0.363245,0.984378,0.927182,0.319435,0.912415,0.801619,0.642295,0.829726,0.574572,0.0524472,0.903304,0.401296,0.987585,0.437264,0.154096,0.726071,0.205181,0.716162,0.382565,0.879716,0.302615,0.0829473,0.0372171,0.477738,0.0706561,0.491571,0.822043,0.587974,0.282804,0.297757,0.426559,0.292789,0.195793,0.0419412,0.114308,0.620858,0.321713,0.71906,0.51166,0.230243,0.61044,0.0738695,0.0706397,0.746241,0.778965,0.35028,0.837106,0.301878,0.434265,|0.451208,0.506345,0.367261,0.430657,0.547506,0.491925,0.750125,0.258237,0.272417,0.0556511,0.868897,0.145875,0.320313,0.595063,0.566756,0.381143,0.769364,0.844378,0.711924,0.541656,0.373778,0.183095,0.618525,0.97096,0.406547,0.562392,0.165498,0.15284,0.52601,0.43983,0.701694,0.0843024,0.853732,0.512798,0.128176,0.928783,0.462557,0.668593,0.720022,0.784469,0.666346,0.407488,0.00575858,0.225076,0.738546,0.00918514,0.947397,0.989074,0.427904,0.670257,0.197074,0.983764,0.788021,0.369647,0.631976,0.0897843,0.121479,0.646796,0.458567,0.335069,0.198177,0.599988,0.137327,0.498744,0.662428,0.595503,0.45087,0.176964,0.027082,0.469515,0.974696,0.444614,0.231646,0.705272,0.313626,0.466748,0.800162,0.576815,0.903556,0.174916,0.133293,0.28122,0.978689,0.65373,0.222514,0.00786573,0.442547,0.472703,0.490299,0.090032,0.0143329,0.0587667,0.188655,0.842245,0.785767,0.910639,0.509172,0.338091,0.81976,0.287696,0.164992,0.692405,0.450382,0.585924,0.538437,0.533016,0.0266308,0.0708604,0.402494,0.984096,0.399302,0.241051,0.535877,0.575919,0.382822,0.791063,0.80958,0.11424,0.947954,0.215702,0.0387627,0.556048,0.476971,0.827539,0.799389,0.382249,0.901776,0.57818,0.685999,0.181546,0.619755,0.677061,0.27292,0.31749,0.737176,0.136778,0.580952,0.834599,0.313249,0.852933,0.131201,0.687515,0.962675,0.975526,0.609586,0.739936,0.0152785,0.429223,0.0343626,0.893087,0.622212,0.42811,0.602283,0.094883,0.130548,0.620025,0.590761,0.180115,0.797657,0.456015,0.132255,0.867475,0.100113,0.271155,0.519711,0.196022,0.730483,0.528752,0.684476,0.624666,0.235355,0.227257,0.763515,0.955691,0.648153,0.359242,0.299304,0.322367,0.471026,0.234869,0.83669,0.750237,0.560354,0.8852,0.486429,0.107918,0.640304,0.757406,0.446434,0.0555784,0.00655121,0.978644,0.666996,0.375678,0.639848,0.84655,0.334633,0.00762653,0.938678,0.687411,0.0252901,0.0287354,0.478368,0.166972,0.904469,0.0192387,0.588433,0.440879,0.300839,0.680263,0.516875,0.957397,0.831461,0.490243,0.540991,0.316787,0.82136,0.437528,0.936513,0.604002,0.724331,0.0203878,0.116847,0.548952,0.0555578,0.974515,0.738643,0.652628,0.424925,0.594511,0.0913129,0.761758,0.15234,0.434406,0.24378,0.00225532,0.618079,0.366144,0.173899,0.0507358,0.272625,0.684598,0.60246,0.889833,0.284422,0.393041,0.428237,0.247069,0.204208,0.713648,0.129403,0.144399,0.419442,0.495906,0.73506,0.261304,0.243518,0.890471,0.277618,0.399748,0.0158495,0.0763804,0.328718,0.300611,0.887539,0.108095,0.772607,0.27007,0.591995,0.0216046,0.0477382,0.0792444,0.619702,0.652622,0.897868,0.474775,0.03019,0.0957385,0.732719,0.970453,0.382497,0.892192,0.293162,0.569685,0.668386,0.171318,0.496747,0.219953,0.382309,0.481029,0.677908,0.0851361,0.726858,0.89023,0.381154,0.227894,0.221267,0.55132,0.0149435,0.0851158,0.741148,0.908182,0.311476,0.197236,0.696902,0.103296,0.299969,0.294649,0.333087,0.0590111,0.547241,0.308047,0.634819,0.0982783,0.328201,0.701516,0.0626748,0.670005,0.702307,0.613346,0.22216,0.310503,0.853736,0.275081,0.590487,0.17121,0.493907,0.102993,0.172601,0.158322,0.137894,0.0474745,0.796332,0.296613,0.913814,0.122144,0.957816,0.307064,0.0527588,0.557749,0.0225757,0.906517,0.581772,0.58838,0.710016,0.894637,0.802267,0.722306,0.831487,0.440655,0.330061,0.882188,0.985356,0.754711,0.60225,0.246258,0.584113,0.840569,0.529592,0.768525,0.679816,0.894953,0.428259,0.747757,0.0937492,0.573678,0.0215614,0.945648,0.0515002,0.624974,0.327653,0.337364,0.667726,0.394561,0.808705,0.480845,0.594171,0.448968,0.945494,0.288922,0.212266,0.190245,0.713163,0.132935,0.26681,0.621116,0.927071,0.533004,0.986106,0.373195,0.196053,0.414764,0.510345,0.808824,0.58796,0.115233,0.997207,0.794095,0.937581,0.270786,0.511845,0.414201,0.171079,0.493126,0.690161,0.63083,0.963612,0.285292,0.359592,0.651467,0.476591,0.361702,0.711113,0.839045,0.891988,0.0717598,0.785914,0.395995,0.587541,0.206257,0.840779,0.859131,0.0962237,0.891045,0.865456,0.20161,0.250152,0.654354,0.328449,0.616167,0.72163,0.697374,0.407378,0.542635,0.662511,0.809795,0.852117,0.923677,0.117724,0.0492854,0.816925,0.352148,0.591383,0.714118,0.583935,0.638503,0.827043,0.0567674,0.749684,0.969988,0.561628,0.973599,0.752943,0.665513,0.0575636,0.937362,0.227155,0.809344,0.507107,0.743616,0.153615,0.442254,0.654998,0.321143,0.742614,0.416587,0.956646,0.64009,0.928686,0.172645,0.484795,0.320104,0.457781,0.273692,0.62097,0.410868,0.573556,0.325374,0.101816,0.0997185,0.189138,0.303178,0.174077,0.526063,0.837639,0.99517,0.179039,0.0802913,0.049418,0.877051,0.795574,0.11296,0.665127,0.595214,0.789687,0.363139,0.174662,0.00947082,0.0639366,0.126505,0.984781,0.306244,0.0681172,0.144577,0.647337,0.701036,0.109024,0.669295,0.367657,0.205349,0.57086,0.357379,0.124359,0.406055,0.209985,0.305683,0.265367,0.281991,0.537816,0.883817,0.539445,0.125141,0.109892,0.658407,0.184938,0.0117863,0.267297,0.734163,0.59521,0.135724,0.107613,0.661262,0.475673,0.0116733,0.981744,0.844298,0.0248994,0.729264,0.0611339,0.244353,0.928842,0.472567,0.690071,0.646616,0.415566,0.810953,0.144099,0.625475,0.860119,0.21708,0.913282,0.486917,0.660718,0.12901,0.678715,0.503309,0.916645,0.105948,0.308413,0.476765,0.600477,0.477101,0.90997,0.67222,0.520638,0.658372,0.0805726,0.567235,0.617315,0.149825,0.199763,0.377358,0.902742,0.0278656,0.293706,0.494052,0.61867,0.221859,0.0521832,0.611498,0.568154,0.947253,0.297377,0.687912,0.468005,0.862581,0.0521414,0.165547,0.285623,0.184612,0.443794,0.59933,0.130983,0.117261,0.959762,0.726044,0.95007,0.284008,0.956367,0.882587,0.962706,0.88158,0.742028,0.686049,0.507561,0.39278,0.424587,0.751036,0.143127,0.189262,0.230472,0.834554,0.39729,0.116577,0.897507,0.647133,3.30806e-05,0.482155,0.328762,0.064801,0.78291,0.0394357,0.654038,0.698268,0.0395846,0.9039,0.284601,0.631329,0.0702284,0.258742,0.732435,0.747105,0.113164,0.819789,0.997417,0.258211,0.695257,0.553914,0.907077,0.346419,0.820507,0.264433,0.786,0.334724,0.562301,0.622739,0.915729,0.679273,0.513581,0.437528,0.042845,0.616792,0.12817,0.792377,0.548406,0.766066,0.328776,0.123911,0.735618,0.56131,0.52388,0.881325,0.887594,0.802727,0.39265,0.292364,0.942944,0.145903,0.292386,0.0557857,0.950116,0.0679109,0.882997,0.398136,0.0811852,0.0943612,0.561186,0.235738,0.429128,0.823879,0.654453,0.304336,0.350266,0.577771,0.858464,0.0805205,0.647346,0.360239,0.223308,0.331472,0.85071,0.659642,0.519425,0.0489882,0.0283403,0.702969,0.408346,0.707169,0.98259,0.26267,0.464867,0.614706,0.452111,0.964097,0.935019,0.749488,0.405931,0.670032,0.767217,0.0548391,0.602362,0.684458,0.0765381,0.751299,0.265185,0.0526867,0.103445,0.513938,0.199293,0.72652,0.562178,0.739142,0.478208,0.315915,0.681611,0.259924,0.617116,0.293466,0.0898058,0.221157,0.252842,0.374442,0.525436,0.479936,0.381723,0.772527,0.663851,0.833364,0.973631,0.856358,0.39561,0.333654,0.660066,0.372339,0.0525224,0.247893,0.270836,0.666695,0.878479,0.833986,0.196649,0.0139835,0.102172,0.0622188,0.768111,0.344956,0.701946,0.956643,0.616798,0.397583,0.501255,0.0397518,0.120084,0.720419,0.485759,0.441044,0.0463092,0.678116,0.00711316,0.596657,0.665454,0.680006,0.616027,0.434466,0.648207,0.306301,0.00841594,0.0887727,0.0959217,0.600066,0.0279686,0.212972,0.0969256,0.590473,0.997269,0.934935,0.425595,0.70211,0.51032,0.273281,0.957203,0.650501,0.560024,0.0504754,0.512433,0.525839,0.980835,0.656693,0.971888,0.210462,0.43867,0.408618,0.474647,0.246908,0.95251,0.919886,0.150059,0.0184951,0.798606,0.278425,0.895643,0.603763,0.638324,0.963161,0.320409,0.792353,0.887168,0.729626,0.178389,0.659345,0.72953,0.951356,0.281724,0.297711,0.664091,0.146713,0.0335215,0.909127,0.381072,0.895072,0.17992,0.190228,0.21598,0.602748,0.249243,0.724922,0.149902,0.419618,0.219587,0.343338,0.927728,0.44681,0.347245,0.212764,0.814626,0.671048,0.695567,0.460757,0.624915,0.552615,0.645054,0.726637,0.464369,0.347401,0.481782,0.794036,0.372133,0.114756,0.530181,0.155094,0.0305049,0.613764,0.756796,0.108699,0.831659,0.0841647,0.706402,0.783693,0.713953,0.0900706,0.93995,0.091983,0.426662,0.899785,0.215654,0.0622892,0.263561,0.353554,0.295186,0.437492,0.500206,0.207136,0.0812489,0.573253,0.700294,0.279297,0.391938,0.991125,0.5719,0.993603,0.0452846,0.959458,0.697447,0.180036,0.403508,0.281684,0.0181964,0.913802,0.690933,0.183502,0.53886,0.473506,0.479885,0.579214,0.755006,0.0859391,0.0387785,0.274277,0.828268,0.213729,0.495041,0.172676,0.0573483,0.347171,0.191826,0.102945,0.79764,0.0591533,0.735753,0.31269,0.606047,0.431709,0.748717,0.0750965,0.865118,0.520386,0.764125,0.227344,0.254229,0.183919,0.40723,0.586104,0.533019,0.0467353,0.599364,0.00503558,0.615477,0.120477,0.650802,0.629815,0.123321,0.456271,0.178362,0.280381,0.044834,0.82501,0.676503,0.577831,0.282967,0.850717,0.687114,0.495856,0.782142,0.628373,0.366195,0.328472,0.0365101,0.034277,0.597329,0.680811,0.0214697,0.062152,0.192526,0.770024,0.63457,0.473152,0.679732,0.111096,0.782284,0.0529014,0.434106,0.923479,0.531803,0.922309,0.237999,0.677118,0.546914,0.51549,0.838315,0.164002,0.491488,0.465543,0.827779,0.927625,0.773045,0.995988,0.438092,0.38464,0.984118,0.585753,0.629424,0.313126,0.639162,0.802497,0.887963,0.175575,0.799469,0.893184,0.566908,0.515804,|0.627646,0.495707,0.752825,0.383516,0.0485416,0.186159,0.95741,0.250568,0.299757,0.2748,0.581536,0.26408,0.10842,0.331822,0.88124,0.923713,0.77704,0.0541748,0.460829,0.875641,0.442073,0.562974,0.573466,0.585088,0.310761,0.404764,0.448817,0.93812,0.510295,0.565861,0.714917,0.180749,0.824382,0.617667,0.187312,0.681981,0.25789,0.699099,0.850825,0.769734,0.331284,0.288271,0.723032,0.923909,0.267582,0.936884,0.445437,0.567337,0.452496,0.29605,0.0871136,0.376003,0.76599,0.280947,0.999756,0.432263,0.241733,0.388763,0.143803,0.989994,0.270153,0.926402,0.315572,0.284978,0.179455,0.9586,0.36162,0.779584,0.695625,0.0488689,0.282419,0.987715,0.27328,0.759761,0.808762,0.0604074,0.783296,0.994265,0.598484,0.0112236,0.0918275,0.245664,0.0475205,0.931445,0.265116,0.410406,0.291252,0.25633,0.226556,0.0392356,0.68841,0.604131,0.563131,0.54993,0.35056,0.779011,0.88622,0.422093,0.517335,0.516626,0.37803,0.530311,0.825109,0.40927,0.908826,0.350171,0.42798,0.581723,0.725082,0.92053,0.517426,0.994032,0.082319,0.11798,0.419873,0.825788,0.690886,0.573554,0.873572,0.487229,0.769371,0.362074,0.904497,0.0734112,0.632452,0.503771,0.896101,0.449898,0.413605,0.930409,0.862976,0.553845,0.987118,0.227419,0.60692,0.211889,0.424968,0.659088,0.452982,0.82789,0.0649229,0.979862,0.302905,0.576402,0.781439,0.131134,0.659919,0.540746,0.88633,0.285999,0.0546595,0.446505,0.820881,0.6773,0.575402,0.891019,0.0771779,0.455853,0.797116,0.82947,0.565569,0.1019,0.0736139,0.646492,0.147757,0.668598,0.26495,0.89299,0.153107,0.733693,0.945183,0.245781,0.661536,0.07157,0.655989,0.971686,0.939063,0.71478,0.896922,0.566232,0.214216,0.632891,0.803476,0.573681,0.19443,0.274175,0.607983,0.487922,0.213467,0.0470439,0.278754,0.371235,0.231293,0.373125,0.121412,0.135065,0.574093,0.781339,0.63688,0.139445,0.15068,0.616121,0.279115,0.552643,0.288699,0.145567,0.0433965,0.391362,0.16526,0.52069,0.103396,0.915757,0.700038,0.949013,0.750545,0.797319,0.856946,0.882258,0.0413552,0.631794,0.930423,0.421853,0.658432,0.521347,0.116678,0.429414,0.0502507,0.0313498,0.753654,0.589308,0.963129,0.595142,0.860106,0.664899,0.0838934,0.995734,0.0844374,0.725222,0.183076,0.653696,0.173076,0.390016,0.667245,0.906096,0.0999591,0.74659,0.892546,0.761215,0.176053,0.694443,0.943051,0.0862005,0.954435,0.699169,0.716638,0.0278844,0.877183,0.104679,0.300505,0.637812,0.758494,0.623031,0.127477,0.733472,0.580895,0.00380689,0.402236,0.827078,0.651675,0.665782,0.649766,0.91963,0.586472,0.565919,0.539587,0.325054,0.961888,0.486366,0.69727,0.00182271,0.565965,0.11348,0.686576,0.173677,0.731439,0.48884,0.0427889,0.376534,0.549927,0.946123,0.818082,0.0456845,0.261597,0.303492,0.154316,0.00155956,0.226216,0.791085,0.153989,0.255118,0.698683,0.849443,0.441241,0.553819,0.231888,0.499985,0.637042,0.736327,0.131898,0.296567,0.948041,0.646717,0.906523,0.2701,0.470046,0.193123,0.470151,0.655572,0.475115,0.481505,0.829718,0.971689,0.567726,0.964596,0.660879,0.629728,0.895132,0.987326,0.675602,0.46283,0.0904265,0.285359,0.786109,0.223131,0.609694,0.573657,0.865852,0.409814,0.839198,0.525759,0.491603,0.651279,0.457492,0.492461,0.460497,0.735219,0.117979,0.737013,0.68636,0.589738,0.172635,0.246877,0.296889,0.563817,0.621717,0.563419,0.0718475,0.577323,0.0467606,0.0271903,0.816589,0.17814,0.706435,0.799663,0.787239,0.40077,0.927181,0.896322,0.605955,0.293367,0.483835,0.651402,0.370238,0.726866,0.858917,0.264233,0.791113,0.412065,0.98329,0.0925432,0.0197912,0.253967,0.98023,0.969678,0.79448,0.984564,0.387423,0.690602,0.249553,0.455247,0.934192,0.758299,0.0158139,0.771501,0.0138216,0.413167,0.783264,0.388382,0.315812,0.814918,0.0975085,0.129573,0.92457,0.132153,0.553612,0.588147,0.672026,0.967896,0.900577,0.120413,0.718094,0.31751,0.92261,0.888839,0.282301,0.474451,0.316255,0.704182,0.560122,0.232361,0.615911,0.504184,0.786116,0.684609,0.0433942,0.691944,0.974938,0.698054,0.57134,0.643761,0.215907,0.163468,0.133547,0.461485,0.0508223,0.279001,0.904991,0.569614,0.57637,0.163172,0.269266,0.432962,0.922762,0.332657,0.519355,0.233318,0.501383,0.370161,0.538548,0.47378,0.549068,0.132008,0.677001,0.253071,0.219367,0.9825,0.42378,0.918397,0.604649,0.627257,0.458407,0.322802,0.198876,0.355716,0.531016,0.39384,0.975648,0.982414,0.543164,0.159329,0.569,0.367587,0.896931,0.31842,0.906179,0.07854,0.647753,0.33056,0.0975518,0.490527,0.321659,0.908004,0.211356,0.0407735,0.699836,0.753002,0.750781,0.649914,0.689437,0.0609891,0.753077,0.472599,0.713375,0.683067,0.546205,0.920146,0.357917,0.61763,0.428344,0.336358,0.672855,0.696003,0.751896,0.145906,0.272605,0.312182,0.196325,0.766316,0.158553,0.770432,0.0616825,0.333427,0.507493,0.393333,0.99391,0.214437,0.456541,0.0565526,0.525174,0.441459,0.136554,0.625699,0.383058,0.490738,0.29207,0.317638,0.704979,0.540745,0.550779,0.628506,0.401762,0.448811,0.774664,0.575114,0.738345,0.394259,0.159299,0.755404,0.222883,0.0843335,0.410722,0.831709,0.562199,0.849939,0.49969,0.740209,0.530831,0.808334,0.282903,0.805991,0.00707519,0.499826,0.173435,0.450318,0.160645,0.132962,0.813016,0.0233611,0.50877,0.832809,0.783257,0.0971345,0.0619823,0.415252,0.619351,0.42898,0.0854018,0.427402,0.527078,0.1364,0.325933,0.0118965,0.0239731,0.735199,0.362529,0.602541,0.358668,0.44131,0.0693155,0.790884,0.32297,0.64127,0.341203,0.0385957,0.718863,0.0549709,0.813582,0.841345,0.27723,0.80618,0.701142,0.929655,0.0129865,0.748467,0.807093,0.815088,0.2283,0.971287,0.926654,0.968188,0.192692,0.204147,0.175853,0.661074,0.360369,0.818635,0.127352,0.0540096,0.879069,0.842199,0.133312,0.223675,0.142596,0.0747241,0.34199,0.378584,0.27023,0.706507,0.776651,0.089774,0.0660599,0.362567,0.638254,0.231487,0.19087,0.54007,0.866394,0.952309,0.47648,0.769804,0.450529,0.24124,0.980952,0.285169,0.0994509,0.998394,0.659832,0.317523,0.592957,0.64918,0.396468,0.646065,0.117926,0.223465,0.845311,0.48163,0.14162,0.767303,0.77684,0.427819,0.850404,0.746623,0.449422,0.170009,0.0176807,0.578884,0.632043,0.243032,0.777577,0.897685,0.262871,0.161001,0.754429,0.376287,0.37601,0.269413,0.964016,0.836522,0.931196,0.370611,0.178258,0.941949,0.360386,0.353691,0.772827,0.702812,0.564253,0.862356,0.329959,0.449693,0.536984,0.0903071,0.657258,0.103703,0.66937,0.179595,0.384562,0.814568,0.332351,0.210315,0.283558,0.456841,0.347798,0.50613,0.43297,0.734026,0.980709,0.258734,0.968154,0.108076,0.70677,0.174495,0.261254,0.0152467,0.665467,0.349554,0.282282,0.000667989,0.220068,0.270766,0.890957,0.152121,0.119311,0.53938,0.719605,0.885661,0.237221,0.817061,0.66564,0.599913,0.116262,0.84336,0.951391,0.60863,0.792568,0.0298662,0.934369,0.489796,0.634465,0.817364,0.657464,0.453838,0.831788,0.330358,0.370114,0.472256,0.0680008,0.304328,0.514848,0.390255,0.733248,0.164162,0.613664,0.400501,0.187173,0.184877,0.84603,0.0315392,0.727577,0.403609,0.542617,0.432839,0.748832,0.648488,0.847117,0.644901,0.0407335,0.855886,0.271035,0.428943,0.610614,0.910967,0.0355018,0.24975,0.334914,0.216902,0.0308266,0.464094,0.066754,0.749574,0.950499,0.442618,0.232713,0.440658,0.360142,0.468382,0.213334,0.544675,0.711744,0.928029,0.776135,0.431984,0.414532,0.689024,0.788246,0.881356,0.356889,0.651359,0.413329,0.418295,0.0520748,0.0577816,0.278271,0.74359,0.923298,0.99938,0.367778,0.356442,0.43013,0.358166,0.973113,0.233717,0.891676,0.452172,0.450534,0.231588,0.873525,0.00312793,0.0359799,0.305746,0.910007,0.541648,0.871877,0.706601,0.757681,0.0772982,0.540449,0.0451753,0.11682,0.455208,0.221111,0.612182,0.879534,0.0337311,0.66534,0.658819,0.4298,0.451513,0.654347,0.348552,0.239952,0.953055,0.956153,0.417024,0.243874,0.0458955,0.27623,0.30193,0.562508,0.0897288,0.0610062,0.0132053,0.160789,0.906263,0.562489,0.240537,0.898781,0.0869297,0.808313,0.576807,0.919091,0.170485,0.770087,0.365085,0.195795,0.351731,0.747819,0.714795,0.930607,0.075489,0.922491,0.464574,0.657644,0.578315,0.818269,0.519054,0.248687,0.59572,0.89602,0.406658,0.805014,0.656845,0.308848,0.27821,0.21293,0.329983,0.345284,0.798384,0.911201,0.669863,0.532213,0.293521,0.499638,0.306691,0.674843,0.558094,0.107288,0.728605,0.490496,0.0049898,0.88609,0.330071,0.247435,0.169479,0.864842,0.778978,0.273543,0.918841,0.0527983,0.958427,0.661772,0.264173,0.0895647,0.673306,0.225746,0.848943,0.598628,0.497487,0.580857,0.31192,0.963902,0.976566,0.508527,0.655542,0.836228,0.0230864,0.166367,0.273201,0.339957,0.90516,0.594268,0.756946,0.939433,0.305457,0.960894,0.849107,0.983029,0.13482,0.71294,0.330315,0.580756,0.343993,0.528501,0.781317,0.690951,0.277285,0.858793,0.333605,0.509387,0.181809,0.837723,0.0279331,0.796527,0.772639,0.568705,0.427943,0.171798,0.104792,0.586989,0.750379,0.536012,0.485166,0.53617,0.152328,0.263325,0.467186,0.915992,0.83229,0.872836,0.771386,0.319027,0.49334,0.980652,0.440063,0.928064,0.85474,0.69777,0.743232,0.00229037,0.214954,0.266901,0.105199,0.534846,0.248739,0.0310636,0.585238,0.00896281,0.196324,0.940349,0.371759,0.275729,0.410138,0.108962,0.268002,0.73642,0.43224,0.215025,0.316143,0.912984,0.73537,0.28677,0.725283,0.500207,0.266983,0.85556,0.322694,0.62279,0.733134,0.515361,0.532318,|0.915272,0.773264,0.842637,0.560135,0.0201271,0.0070985,0.66482,0.493343,0.195374,0.299022,0.619904,0.819825,0.39082,0.823439,0.516143,0.831331,0.560004,0.401906,0.776759,0.162126,0.536404,0.984997,0.124688,0.355956,0.998732,0.840973,0.808818,0.0816325,0.157744,0.604976,0.589432,0.805657,0.386401,0.778181,0.80828,0.994649,0.567393,0.366775,0.872154,0.893328,0.322103,0.0517657,0.633398,0.326574,0.557556,0.638659,0.949501,0.481069,0.580271,0.550865,0.620857,0.633559,0.704814,0.515189,0.0414087,0.130498,0.502651,0.999082,0.373301,0.121916,0.234524,0.0339192,0.549513,0.305827,0.0560298,0.637963,0.859102,0.709461,0.292837,0.242176,0.480079,0.897534,0.929423,0.243505,0.774814,0.136942,0.966645,0.293167,0.700007,0.22638,0.968151,0.326451,0.635413,0.251079,0.964217,0.700851,0.966214,0.760142,0.604413,0.95273,0.663327,0.920907,0.336767,0.169916,0.352792,0.464255,0.230147,0.149559,0.890473,0.888327,0.50625,0.0757061,0.181343,0.723153,0.513529,0.985516,0.704674,0.174052,0.943781,0.631567,0.124548,0.869026,0.21782,0.890002,0.625928,0.864121,0.852981,0.748227,0.18406,0.235663,0.793261,0.299827,0.794567,0.766343,0.646978,0.949415,0.130733,0.96296,0.305254,0.278133,0.208335,0.732675,0.721614,0.86963,0.0305461,0.517358,0.470832,0.244254,0.756067,0.146197,0.125869,0.323762,0.0675862,0.183288,0.000644147,0.355349,0.952428,0.763513,0.782393,0.334475,0.80244,0.948838,0.21018,0.956782,0.29347,0.921839,0.454255,0.174648,0.78151,0.737088,0.527629,0.221329,0.25555,0.367068,0.662929,0.328238,0.167397,0.242578,0.576904,0.121761,0.98719,0.222561,0.396451,0.527154,0.0212207,0.303591,0.0539306,0.381085,0.0436672,0.67076,0.929158,0.0747963,0.826192,0.198596,0.0430409,0.296764,0.105817,0.746011,0.568633,0.0870098,0.742226,0.0638121,0.556931,0.219486,0.893131,0.679637,0.0663659,0.256024,0.392476,0.949354,0.433945,0.835636,0.184882,0.754203,0.523589,0.365289,0.154581,0.0777343,0.414107,0.920764,0.100916,0.14775,0.239384,0.570144,0.0658078,0.812388,0.203373,0.335405,0.756265,0.0947306,0.367866,0.966419,0.773664,0.11141,0.539397,0.213185,0.0578324,0.510703,0.336192,0.150963,0.690829,0.806298,0.699185,0.959445,0.384046,0.356398,0.165139,0.24184,0.558545,0.506013,0.80214,0.727179,0.342599,0.738179,0.145174,0.754724,0.970142,0.52941,0.9028,0.920269,0.0396647,0.665439,0.604153,0.091208,0.132761,0.357879,0.588295,0.0970363,0.0839034,0.222551,0.481624,0.141986,0.73673,0.876628,0.526314,0.0448095,0.615101,0.452246,0.235079,0.587639,0.332462,0.120674,0.157607,0.0140817,0.796321,0.865805,0.08182,0.109879,0.959775,0.0133353,0.149021,0.557689,0.195083,0.497368,0.261528,0.0187268,0.575903,0.425465,0.942908,0.290446,0.989122,0.949426,0.537008,0.9327,0.0951975,0.240125,0.145322,0.801937,0.111528,0.981783,0.890039,0.704304,0.427321,0.588327,0.783887,0.0764039,0.936211,0.503442,0.417754,0.134995,0.0164995,0.565323,0.919238,0.696939,0.141018,0.956453,0.648368,0.180656,0.751235,0.191117,0.45573,0.733966,0.565285,0.0413166,0.414912,0.0653332,0.380201,0.115345,0.132966,0.332206,0.58857,0.539758,0.377799,0.0530615,0.165212,0.345609,0.376615,0.858845,0.0424768,0.565346,0.422863,0.391778,0.158195,0.419715,0.108647,0.857461,0.508829,0.540056,0.885453,0.770377,0.755889,0.153234,0.105253,0.688383,0.100131,0.519064,0.136098,0.080745,0.615522,0.433837,0.408801,0.631465,0.320724,0.782577,0.0101816,0.70408,0.737062,0.343375,0.744516,0.262971,0.205609,0.460857,0.0948192,0.151778,0.529792,0.704331,0.871533,0.392398,0.805864,0.619336,0.0506287,0.367072,0.323868,0.957351,0.75478,0.278201,0.760678,0.728252,0.524803,0.536395,0.0719948,0.462118,0.0194132,0.984562,0.356033,0.0907778,0.125179,0.58534,0.75822,0.37895,0.691489,0.757551,0.821757,0.418747,0.659295,0.348947,0.90078,0.508956,0.201933,0.952877,0.841375,0.846733,0.325082,0.905496,0.108114,0.562424,0.253705,0.795048,0.654083,0.899877,0.678266,0.657619,0.511735,0.145882,0.260787,0.811988,0.584343,0.123847,0.967747,0.245998,0.165946,0.697396,0.510659,0.57922,0.227183,0.4296,0.505956,0.988009,0.56401,0.134301,0.169084,0.203279,0.945091,0.592593,0.584959,0.373767,0.209099,0.809849,0.945151,0.44627,0.489923,0.197227,0.875361,0.36758,0.421608,0.100019,0.584155,0.43439,0.98533,0.177384,0.0802097,0.5682,0.525421,0.504157,0.121742,0.93532,0.10143,0.136925,0.215752,0.0483094,0.0262307,0.748099,0.890831,0.36384,0.0784269,0.894764,0.973074,0.847329,0.908742,0.840079,0.82167,0.753424,0.594861,0.395452,0.350284,0.853874,0.794297,0.310758,0.869566,0.702117,0.860255,0.0792382,0.1979,0.280417,0.77536,0.193708,0.393806,0.980152,0.963703,0.0958885,0.618707,0.841192,0.0122746,0.284619,0.390311,0.37346,0.195408,0.711007,0.337408,0.39278,0.374173,0.298926,0.252798,0.74268,0.632171,0.507554,0.932394,0.785579,0.467216,0.018266,0.941093,0.87597,0.753723,0.112712,0.215761,0.184253,0.338555,0.276991,0.400783,0.352323,0.772435,0.540855,0.3608,0.674404,0.0937961,0.807865,0.345619,0.724571,0.155357,0.74506,0.821665,0.660383,0.164346,0.151385,0.607444,0.879746,0.402863,0.731026,0.12628,0.785435,0.0145299,0.531849,0.967804,0.409315,0.136286,0.571925,0.388333,0.750202,0.315342,0.19473,0.0630406,0.977945,0.441756,0.223195,0.496725,0.193114,0.654478,0.157939,0.318379,0.561426,0.498518,0.215771,0.795119,0.87619,0.307712,0.253729,0.0774798,0.0514631,0.522031,0.646065,0.234365,0.73085,0.717707,0.901789,0.828079,0.297635,0.396264,0.786073,0.682489,0.869325,0.926776,0.255427,0.812393,0.357269,0.0581353,0.0722328,0.0866127,0.948282,0.501756,0.509309,0.827397,0.530963,0.929819,0.639298,0.797964,0.609531,0.980046,0.322681,0.581626,0.946071,0.590389,0.54347,0.349443,0.999379,0.112895,0.502166,0.797572,0.22763,0.572301,0.229294,0.336178,0.908492,0.616593,0.737843,0.864497,0.295793,0.779101,0.783625,0.0337305,0.503599,0.84988,0.856346,0.316133,0.366893,0.660575,0.924828,0.90931,0.573606,0.0797455,0.377162,0.242004,0.933918,0.447897,0.564648,0.785571,0.381379,0.241807,0.102464,0.825411,0.829594,0.924072,0.989034,0.753788,0.7291,0.308145,0.602787,0.558112,0.0655872,0.860826,0.655347,0.286832,0.425178,0.34759,0.490702,0.753083,0.978097,0.000938594,0.247419,0.452004,0.267761,0.498192,0.547577,0.0551914,0.614027,0.919524,0.189503,0.895224,0.130336,0.960439,0.653312,0.789065,0.811761,0.261097,0.146703,0.108039,0.798494,0.284145,0.361772,0.255595,0.0866119,0.491878,0.209779,0.543799,0.680069,0.58033,0.919883,0.219609,0.458169,0.146262,0.107373,0.314032,0.533651,0.617647,0.517173,0.67606,0.117139,0.582848,0.920694,0.532159,0.95347,0.632401,0.520402,0.265458,0.75795,0.651713,0.0867429,0.303065,0.939853,0.355603,0.0935444,0.567189,0.797037,0.0853815,0.242263,0.549082,0.672318,0.565332,0.73473,0.976231,0.661699,0.560638,0.791741,0.415372,0.986603,0.0550629,0.941112,0.685793,0.543322,0.0437474,0.152964,0.054794,0.425271,0.438194,0.427607,0.813565,0.550126,0.134027,0.289061,0.199994,0.575186,0.717301,0.431833,0.187175,0.93894,0.189919,0.797554,0.498687,0.942022,0.469017,0.695998,0.256218,0.682621,0.852105,0.224132,0.741294,0.421554,0.586377,0.970243,0.575699,0.695343,0.544542,0.336599,0.590635,0.227229,0.00419348,0.178042,0.769354,0.324177,0.961806,0.341803,0.872244,0.322115,0.35555,0.851467,0.0590209,0.235896,0.139061,0.645353,0.5306,0.488311,0.721098,0.468214,0.666317,0.068,0.292485,0.295777,0.639387,0.558927,0.509772,0.99759,0.94128,0.615353,0.43873,0.891382,0.959138,0.523397,0.151848,0.350016,0.485251,0.112568,0.200694,0.718172,0.581052,0.888059,0.833095,0.991888,0.390694,0.0516961,0.743244,0.384471,0.750817,0.498118,0.155144,0.252165,0.732397,0.73586,0.931864,0.835216,0.296177,0.82333,0.475303,0.8896,0.305257,0.461514,0.743821,0.245286,0.676738,0.529406,0.797773,0.793201,0.0763156,0.30673,0.752877,0.372754,0.0345302,0.0134853,0.16068,0.437788,0.920465,0.970944,0.519272,0.597888,0.779377,0.425975,0.81444,0.219125,0.58893,0.915722,0.784864,0.021104,0.0405253,0.68428,0.035221,0.117765,0.526678,0.5284,0.32094,0.20821,0.643349,0.485387,0.141404,0.255211,0.198107,0.91083,0.124249,0.904546,0.855603,0.163352,0.689674,0.890992,0.770259,0.408015,0.0172785,0.307312,0.789379,0.857665,0.321779,0.0388041,0.907265,0.149729,0.494778,0.219457,0.2908,0.522032,0.359345,0.71829,0.874547,0.776702,0.322849,0.586336,0.523563,0.124822,0.667565,0.0234321,0.129464,0.938909,0.758647,0.207248,0.726529,0.356212,0.729161,0.926942,0.429594,0.385248,0.728001,0.527075,0.0572618,0.98329,0.401029,0.390402,0.581885,0.124038,0.93373,0.412708,0.183344,0.962962,0.668945,0.492049,0.142054,0.459822,0.769558,0.281436,0.148296,0.732047,0.607996,0.545386,0.58154,0.749402,0.103743,0.186507,0.305072,0.605656,0.184677,0.441534,0.0540454,0.95156,0.346764,0.445956,0.0473313,0.369728,0.406071,0.739291,0.413411,0.190375,0.231452,0.105165,0.850235,0.537593,0.77433,0.466102,0.783393,0.20921,0.758206,0.983614,0.872927,0.27862,0.846365,0.36649,0.836976,0.791932,0.770206,0.679598,0.230085,0.609535,0.0317842,0.510601,0.970033,0.878904,0.380829,0.633503,0.209778,0.0112191,0.280226,0.975859,0.11247,0.485466,0.108667,0.838505,0.754345,0.846534,0.769615,0.626105,0.650276,0.119185,0.272706,0.939693,0.700339,0.12356,0.217327,0.194468,|0.19426,0.748552,0.967869,0.762934,0.0660757,0.948586,0.802003,0.663889,0.440357,0.446178,0.24659,0.788837,0.264642,0.260696,0.982751,0.864917,0.652618,0.263723,0.738368,0.557834,0.971782,0.40638,0.74489,0.197943,0.707374,0.62678,0.585581,0.5531,0.145509,0.0415214,0.683585,0.764645,0.825952,0.541625,0.791055,0.867204,0.351393,0.717842,0.711977,0.895173,0.797189,0.257779,0.892419,0.452923,0.334547,0.515909,0.942407,0.950142,0.775173,0.54764,0.168058,0.476731,0.427562,0.974084,0.477708,0.224665,0.877063,0.179782,0.736449,0.646593,0.968763,0.526928,0.14844,0.489612,0.158315,0.938898,0.991957,0.648394,0.578869,0.421919,0.633529,0.300858,0.131621,0.0852147,0.693525,0.405057,0.0593355,0.0740709,0.114948,0.368876,0.848291,0.846425,0.125551,0.928838,0.983875,0.454619,0.93143,0.88535,0.0964141,0.241241,0.10811,0.277774,0.664007,0.939785,0.183874,0.153782,0.750585,0.120971,0.0736986,0.247593,0.696897,0.284533,0.242832,0.287914,0.85503,0.0617709,0.873491,0.418381,0.729851,0.0879461,0.47587,0.943332,0.593386,0.945363,0.101246,0.322111,0.513104,0.659371,0.258194,0.0139055,0.29571,0.614623,0.685085,0.340313,0.570426,0.00672621,0.991974,0.621327,0.488076,0.596723,0.504877,0.786188,0.504758,0.216673,0.388705,0.239049,0.907414,0.652476,0.143307,0.190487,0.973929,0.798054,0.201078,0.594062,0.0131279,0.540277,0.166755,0.686888,0.276236,0.0218524,0.224123,0.890099,0.388274,0.829593,0.802749,0.999477,0.476514,0.863293,0.721196,0.817153,0.418093,0.63591,0.511514,0.748668,0.521784,0.873063,0.409774,0.499792,0.0820216,0.0271471,0.471277,0.0319124,0.837481,0.433718,0.0230989,0.270169,0.303548,0.0542479,0.749908,0.847105,0.113228,0.18698,0.992054,0.723898,0.618083,0.732077,0.124942,0.87833,0.743082,0.273335,0.996485,0.889726,0.515605,0.453739,0.355167,0.788691,0.345944,0.685651,0.530516,0.92497,0.094106,0.0223088,0.690055,0.543561,0.428701,0.300674,0.700357,0.543193,0.652489,0.296054,0.867741,0.991977,0.836362,0.06339,0.047901,0.701545,0.0587227,0.407751,0.83811,0.824906,0.733233,0.212737,0.248067,0.759218,0.673458,0.309902,0.0880294,0.0396737,0.512392,0.396016,0.742324,0.660056,0.602838,0.257233,0.152761,0.375316,0.827733,0.704508,0.647752,0.267924,0.66236,0.382625,0.330609,0.228393,0.611038,0.89148,0.702326,0.451957,0.464785,0.574597,0.559483,0.92972,0.99395,0.937057,0.338963,0.159054,0.154425,0.387133,0.923222,0.0765754,0.0244969,0.0874264,0.280822,0.288418,0.487903,0.994916,0.185937,0.447145,0.0339196,0.64649,0.981443,0.670206,0.558259,0.906883,0.0546359,0.48767,0.659604,0.0756452,0.56099,0.656219,0.105467,0.0498225,0.267794,0.823262,0.481526,0.983064,0.523773,0.602035,0.477778,0.649006,0.524338,0.532438,0.600274,0.0760396,0.697103,0.110038,0.610857,0.148094,0.00933188,0.848451,0.646078,0.51708,0.119259,0.330699,0.427908,0.428508,0.65095,0.332211,0.702707,0.0728397,0.857049,0.0928556,0.47698,0.110556,0.739944,0.31903,0.852058,0.118519,0.898021,0.574939,0.919703,0.26549,0.564805,0.913428,0.161163,0.900419,0.297592,0.0259543,0.196324,0.154178,0.237627,0.723022,0.344615,0.137428,0.271099,0.145022,0.798108,0.722053,0.674249,0.00228298,0.617356,0.223879,0.430617,0.472242,0.278116,0.0406027,0.298226,0.829546,0.393622,0.974033,0.139855,0.291111,0.874015,0.58357,0.997048,0.150106,0.157548,0.211481,0.267824,0.832651,0.266201,0.133119,0.86852,0.901695,0.400406,0.316483,0.0831248,0.744301,0.963016,0.197914,0.649789,0.9277,0.395724,0.876049,0.044506,0.517107,0.509565,0.724563,0.726762,0.684267,0.814487,0.880958,0.359652,0.835728,0.731169,0.967738,0.935939,0.956456,0.62025,0.513218,0.647905,0.649238,0.0496144,0.801198,0.273043,0.260339,0.113237,0.32648,0.480735,0.680631,0.731367,0.304853,0.296507,0.499734,0.991193,0.952465,0.527066,0.671341,0.67643,0.584054,0.697963,0.870121,0.890953,0.113018,0.499398,0.88029,0.0799575,0.974414,0.226291,0.0751027,0.934655,0.460344,0.198385,0.667765,0.32974,0.7809,0.65237,0.316029,0.631906,0.80938,0.282202,0.267532,0.883749,0.250746,0.192895,0.775974,0.623897,0.347496,0.743131,0.603573,0.738233,0.810597,0.468638,0.728281,0.961622,0.841922,0.719031,0.640123,0.428878,0.409314,0.204813,0.179025,0.156398,0.838504,0.0738339,0.353781,0.696607,0.953771,0.592199,0.592538,0.467378,0.994547,0.153808,0.809996,0.703505,0.229941,0.853778,0.471868,0.00560939,0.221266,0.228538,0.235718,0.00178421,0.385408,0.329349,0.898151,0.3785,0.502036,0.848968,0.128003,0.483674,0.650752,0.0802733,0.861158,0.0834464,0.00622243,0.105262,0.572666,0.839822,0.797212,0.978186,0.323296,0.911969,0.773508,0.502724,0.59789,0.783753,0.488787,0.0539021,0.660232,0.477286,0.709668,0.146848,0.216579,0.436786,0.303429,0.546813,0.986803,0.139022,0.492676,0.946686,0.410057,0.657245,0.795487,0.747709,0.42234,0.135214,0.940332,0.115723,0.137808,0.828414,0.740132,0.270132,0.285195,0.529439,0.630186,0.261348,0.813993,0.702118,0.521507,0.00851345,0.682011,0.937226,0.111173,0.517759,0.0204924,0.0318297,0.805204,0.629816,0.634744,0.40303,0.0337812,0.676968,0.640043,0.259798,0.448967,0.229962,0.454015,0.988849,0.91133,0.423143,0.748678,0.90289,0.0451704,0.430759,0.909625,0.230306,0.684646,0.941204,0.91068,0.794832,0.393537,0.644274,0.573696,0.726183,0.833914,0.634671,0.383096,0.654419,0.828258,0.925974,0.256236,0.418775,0.379942,0.446287,0.622991,0.93234,0.51772,0.789956,0.645021,0.0917616,0.164435,0.593699,0.351156,0.062719,0.140682,0.948483,0.298305,0.0151536,0.0374619,0.921546,0.978166,0.865327,0.333787,0.639065,0.682767,0.761312,0.456255,0.933685,0.784856,0.376694,0.562783,0.67078,0.514816,0.0552599,0.584086,0.907844,0.237829,0.197176,0.654839,0.988007,0.0697551,0.495533,0.0680736,0.277254,0.577412,0.000124097,0.179908,0.588891,0.0834414,0.35602,0.168103,0.231711,0.643936,0.426092,0.510058,0.0784841,0.236119,0.505426,0.494163,0.933376,0.79368,0.474226,0.235706,0.024555,0.599888,0.826241,0.225222,0.468696,0.755916,0.866834,0.76139,0.653059,0.785201,0.738526,0.170943,0.656754,0.605108,0.954938,0.720157,0.235887,0.65665,0.247148,0.388441,0.930381,0.150804,0.743138,0.666901,0.854114,0.251712,0.804994,0.872141,0.155581,0.0612907,0.496347,0.611079,0.408431,0.219743,0.015561,0.605157,0.154073,0.384976,0.234151,0.254943,0.28949,0.328289,0.697742,0.951045,0.900506,0.0177894,0.0965357,0.390446,0.280099,0.574483,0.547949,0.498411,0.801176,0.156029,0.0659661,0.139722,0.188017,0.167865,0.969707,0.110231,0.17552,0.294759,0.0417084,0.524598,0.114583,0.437005,0.938262,0.401393,0.941507,0.132196,0.0954412,0.357934,0.434586,0.512831,0.918757,0.623504,0.275641,0.0629947,0.629721,0.592394,0.164706,0.0538542,0.643782,0.610874,0.676181,0.404111,0.523051,0.403005,0.107341,0.785042,0.388991,0.630779,0.693,0.947437,0.634611,0.902947,0.364109,0.401792,0.755249,0.81182,0.0816532,0.973654,0.328815,0.387021,0.649582,0.275131,0.345617,0.69735,0.839931,0.922225,0.343346,0.0364712,0.484026,0.0817097,0.206567,0.000943124,0.485421,0.842238,0.305946,0.193523,0.655533,0.15772,0.322514,0.326787,0.724051,0.978015,0.450744,0.792082,0.624905,0.554157,0.329983,0.846422,0.494826,0.880238,0.473608,0.799805,0.191901,0.465699,0.778289,0.686925,0.833642,0.670059,0.152077,0.105534,0.102441,0.833246,0.462287,0.0511873,0.0239199,0.114621,0.846939,0.93792,0.787926,0.169669,0.190998,0.00895578,0.736376,0.383009,0.490787,0.752856,0.247764,0.824079,0.931019,0.927149,0.786321,0.0293961,0.343781,0.259053,0.806062,0.360448,0.621714,0.908333,0.0968863,0.89544,0.0430355,0.496275,0.82745,0.367352,0.752175,0.101803,0.413726,0.551158,0.282419,0.0603622,0.420217,0.989901,0.955476,0.482678,0.590488,0.0486345,0.465884,0.0980853,0.201715,0.687729,0.464135,0.59698,0.707126,0.468582,0.98074,0.896485,0.695678,0.927015,0.559547,0.455257,0.744376,0.634749,0.964921,0.855721,0.564164,0.13085,0.183706,0.602198,0.370301,0.635651,0.890607,0.372438,0.433045,0.281987,0.0477144,0.374174,0.958217,0.763408,0.215295,0.655476,0.14526,0.111116,0.499976,0.873503,0.25169,0.221586,0.69573,0.423142,0.476055,0.382387,0.921176,0.0859997,0.964383,0.320264,0.032536,0.803516,0.61017,0.20586,0.719802,0.178673,0.063589,0.0226812,0.294189,0.252612,0.565976,0.659291,0.626945,0.452545,0.455671,0.218672,0.545887,0.91856,0.875615,0.507758,0.526441,0.75224,0.992269,0.836691,0.539685,0.778604,0.538087,0.111532,0.376645,0.463581,0.28254,0.555853,0.123605,0.566324,0.881017,0.546064,0.374166,0.780698,0.240407,0.267015,0.508297,0.229089,0.205135,0.549243,0.589157,0.537484,0.813507,0.6762,0.196048,0.0541824,0.781769,0.582328,0.282848,0.339091,0.716848,0.133402,0.553991,0.487147,0.701415,0.29494,0.433376,0.911263,0.253014,0.209204,0.0330219,0.0376768,0.00347251,0.591134,0.44838,0.558859,0.696485,0.964465,0.0806177,0.74087,0.770098,0.12929,0.448129,0.314556,0.53538,0.577449,0.140217,0.148064,0.653603,0.62365,0.624836,0.378393,0.882312,0.249346,0.196095,0.39179,0.415328,0.861999,0.110608,0.347515,0.233581,0.0913429,0.158699,0.797535,0.965198,0.564861,0.246226,0.541003,0.429844,0.998499,0.946057,0.262789,0.275075,0.0200745,0.299621,0.297044,0.738774,0.532458,0.593146,0.991912,0.373415,0.876391,0.233563,0.383852,0.0809897,0.631192,0.0732322,0.328648,0.41165,0.1224,0.000782073,0.885485,0.716256,0.929871,|0.889645,0.164111,0.323369,0.0634497,0.663991,0.546356,0.552357,0.962946,0.95348,0.735912,0.544902,0.208566,0.390845,0.537787,0.676591,0.779768,0.0166769,0.155788,0.676691,0.710399,0.54288,0.731095,0.956246,0.274346,0.852176,0.94317,0.692777,0.576112,0.448242,0.647929,0.745276,0.404668,0.983452,0.339057,0.916875,0.292082,0.179494,0.100917,0.233304,0.421153,0.958053,0.872402,0.841611,0.259569,0.964586,0.332564,0.949614,0.669023,0.291161,0.289768,0.7995,0.799274,0.90267,0.11373,0.572149,0.881484,0.0737873,0.00363183,0.0199024,0.745055,0.217131,0.23679,0.885702,0.349714,0.281723,0.120357,0.0108418,0.638511,0.883314,0.177376,0.50696,0.836151,0.788397,0.757756,0.479105,0.761405,0.0607469,0.705951,0.249128,0.430622,0.437039,0.835744,0.319589,0.256209,0.400541,0.677011,0.350058,0.126076,0.364079,0.51834,0.202949,0.950772,0.284681,0.967809,0.954919,0.027741,0.720223,0.100526,0.164262,0.93884,0.805438,0.029896,0.947655,0.29251,0.298681,0.289649,0.434884,0.642165,0.756885,0.384815,0.0668125,0.803591,0.771848,0.457842,0.826898,0.819205,0.830794,0.885879,0.0725257,0.433262,0.808499,0.203255,0.852651,0.385864,0.179475,0.858229,0.439277,0.266443,0.424147,0.972999,0.911077,0.32306,0.213381,0.717388,0.447815,0.768964,0.0499685,0.108423,0.748759,0.63276,0.0391294,0.0630224,0.489034,0.988048,0.476479,0.115373,0.263378,0.51693,0.290108,0.893695,0.865707,0.180111,0.0503763,0.464698,0.873145,0.199178,0.937734,0.223751,0.669811,0.562626,0.687815,0.983718,0.185748,0.16295,0.941361,0.113847,0.307351,0.346681,0.00148499,0.809118,0.123624,0.654849,0.561106,0.603644,0.935102,0.465967,0.818225,0.609593,0.857301,0.468037,0.930237,0.731268,0.966138,0.128658,0.98861,0.936553,0.479391,0.0450249,0.253597,0.645999,0.0885959,0.779311,0.187839,0.391381,0.218118,0.798885,0.56056,0.104154,0.392101,0.188144,0.228337,0.918866,0.235473,0.805279,0.146177,0.489612,0.279702,0.665107,0.807217,0.991846,0.4498,0.0166578,0.157106,0.570063,0.102815,0.99564,0.730184,0.685153,0.433679,0.112176,0.396779,0.909386,0.590994,0.699239,0.0639245,0.00674146,0.543968,0.58201,0.905977,0.193922,0.643859,0.696538,0.0608135,0.23353,0.212052,0.795083,0.756453,0.191493,0.635072,0.521325,0.0475965,0.808499,0.18847,0.369721,0.602898,0.21903,0.748836,0.764935,0.715753,0.680945,0.197206,0.900596,0.23451,0.87419,0.914828,0.130246,0.946908,0.20824,0.291744,0.0721795,0.0641887,0.445907,0.461919,0.269237,0.159513,0.00460339,0.640308,0.468434,0.162544,0.775509,0.0678362,0.92806,0.616576,0.571444,0.718033,0.210817,0.0621196,0.124137,0.585519,0.390228,0.504461,0.0153483,0.80116,0.554595,0.943902,0.48244,0.914979,0.29324,0.445891,0.603034,0.895714,0.417877,0.334302,0.842062,0.630927,0.213694,0.654974,0.458269,0.4672,0.226907,0.753722,0.71539,0.043479,0.930337,0.535654,0.767424,0.670406,0.831229,0.549263,0.921864,0.0337268,0.140115,0.163157,0.627022,0.180378,0.536796,0.584205,0.94329,0.297259,0.832628,0.131338,0.25001,0.551106,0.643479,0.648328,0.571513,0.872013,0.299172,0.671803,0.232748,0.881826,0.740661,0.192674,0.587401,0.232573,0.108321,0.908061,0.720308,0.0674182,0.604215,0.932459,0.412803,0.187169,0.095201,0.686811,0.584961,0.730772,0.0359099,0.92314,0.755119,0.521191,0.446025,0.88977,0.440331,0.414536,0.678258,0.535482,0.303092,0.168971,0.849943,0.573601,0.929051,0.464133,0.914256,0.0188503,0.0180811,0.59979,0.337049,0.0906201,0.834973,0.922865,0.345311,0.18704,0.63026,0.342121,0.399016,0.513266,0.747324,0.30142,0.0118719,0.197857,0.856993,0.929501,0.0105516,0.373449,0.631126,0.738718,0.890881,0.552472,0.206494,0.95429,0.364187,0.289448,0.0677273,0.905427,0.933651,0.293346,0.915837,0.409076,0.721383,0.893548,0.624873,0.609732,0.490869,0.0734496,0.448397,0.971551,0.0138833,0.493434,0.627773,0.38784,0.491538,0.292393,0.552301,0.0389462,0.255898,0.562655,0.19936,0.710401,0.346863,0.379377,0.952822,0.81488,0.840622,0.205679,0.0425283,0.0179387,0.148349,0.648383,0.355784,0.288177,0.506165,0.179698,0.206467,0.494663,0.809504,0.393462,0.510392,0.129045,0.590075,0.126599,0.292594,0.608511,0.712444,0.789802,0.200484,0.1646,0.572951,0.443889,0.958159,0.420518,0.496173,0.0252707,0.316935,0.199384,0.893793,0.381333,0.305604,0.931979,0.328036,0.919396,0.012437,0.206352,0.954184,0.712746,0.781605,0.348162,0.911752,0.256048,0.656337,0.86986,0.947681,0.850374,0.621519,0.488527,0.354436,0.417383,0.120635,0.92154,0.223777,0.991561,0.739016,0.638178,0.320383,0.503834,0.547911,0.342703,0.0423869,0.403837,0.733174,0.0769388,0.62692,0.605827,0.110875,0.336313,0.29467,0.186851,0.298514,0.152328,0.28269,0.110556,0.997884,0.0524198,0.863476,0.998524,0.492274,0.959335,0.31375,0.402106,0.147143,0.209762,0.0550003,0.442741,0.118081,0.288018,0.965564,0.935942,0.61139,0.292695,0.735025,0.532673,0.250689,0.0523756,0.0502059,0.0276921,0.365026,0.386146,0.327563,0.117296,0.83443,0.686256,0.704745,0.741349,0.110525,0.958314,0.892506,0.232289,0.559912,0.693658,0.668548,0.386225,0.923776,0.999306,0.575792,0.699126,0.946378,0.659248,0.40331,0.164977,0.139229,0.896095,0.673639,0.291605,0.981548,0.663031,0.389204,0.496131,0.0735114,0.0886773,0.799767,0.166962,0.880518,0.0745566,0.0400295,0.446971,0.0159124,0.104348,0.277499,0.376203,0.791355,0.251903,0.828245,0.362077,0.290156,0.960037,0.465195,0.0495292,0.599057,0.877175,0.874944,0.311383,0.103955,0.397844,0.577831,0.524966,0.848872,0.742306,0.339499,0.500277,0.459949,0.427767,0.404257,0.997738,0.09505,0.847613,0.184648,0.843358,0.642031,0.0468131,0.887609,0.763854,0.299347,0.449893,0.466078,0.627913,0.112464,0.476919,0.225777,0.0409227,0.681318,0.348057,0.962038,0.456275,0.289144,0.348525,0.81454,0.138363,0.47432,0.822925,0.979177,0.348238,0.157588,0.544059,0.809156,0.941736,0.420128,0.827341,0.863645,0.578295,0.300877,0.882866,0.571818,0.771642,0.912891,0.69533,0.122147,0.0573531,0.106681,0.726909,0.992139,0.849896,0.513377,0.0337692,0.558921,0.319434,0.813199,0.840278,0.21589,0.804546,0.389187,0.830109,0.649774,0.163342,0.795245,0.461051,0.546411,0.962465,0.444561,0.433771,0.631875,0.573562,0.436252,0.107674,0.970044,0.983216,0.228373,0.0179988,0.289038,0.921933,0.176477,0.180731,0.703814,0.691445,0.163153,0.703339,0.512564,0.637384,0.587388,0.99213,0.417821,0.287766,0.565301,0.821487,0.246622,0.194128,0.238533,0.350565,0.564744,0.773609,0.710511,0.41171,0.153517,0.673928,0.906921,0.0551065,0.868389,0.136229,0.317867,0.424094,0.397905,0.783711,0.962927,0.400986,0.0369244,0.846723,0.450344,0.474638,0.976263,0.754715,0.506945,0.311159,0.838626,0.61827,0.814255,0.753778,0.97346,0.519522,0.109272,0.572523,0.523857,0.114465,0.888519,0.589629,0.672356,0.840933,0.850613,0.961083,0.798928,0.991308,0.51131,0.81549,0.6291,0.785832,0.797386,0.519264,0.484006,0.475378,0.121686,0.51529,0.706791,0.658677,0.197739,0.959127,0.572074,0.00209016,0.337444,0.226299,0.0653425,0.884091,0.741672,0.710133,0.00421482,0.432025,0.712722,0.390381,0.429161,0.925538,0.59934,0.405308,0.339211,0.94675,0.651461,0.72336,0.522876,0.568142,0.524282,0.976435,0.0211463,0.182608,0.34172,0.17712,0.136287,0.54243,0.599057,0.690056,0.339622,0.76383,0.858908,0.968653,0.320581,0.253529,0.747758,0.93719,0.555578,0.705132,0.504438,0.620828,0.792043,0.463161,0.466055,0.565063,0.498949,0.0875239,0.025795,0.0273573,0.413094,0.346726,0.476086,0.369085,0.902725,0.920457,0.886316,0.482225,0.148559,0.919991,0.275895,0.612607,0.312499,0.525596,0.237095,0.305893,0.454467,0.346326,0.714372,0.224027,0.60365,0.0888985,0.666085,0.303721,0.557672,0.592333,0.125569,0.00679064,0.0596175,0.186417,0.411499,0.608156,0.125478,0.892004,0.635872,0.701298,0.837424,0.0136701,0.34779,0.112815,0.326942,0.902291,0.740048,0.376048,0.340869,0.095149,0.767072,0.935866,0.138824,0.313098,0.101847,0.751399,0.911136,0.406533,0.348647,0.364223,0.978637,0.750817,0.808367,0.0130835,0.442991,0.784167,0.103487,0.214724,0.958079,0.622329,0.395365,0.584142,0.302815,0.265996,0.256123,0.950167,0.473722,0.115404,0.0639676,0.270253,0.452046,0.240752,0.0104629,0.819123,0.229307,0.146343,0.175391,0.725542,0.267972,0.568641,0.163638,0.335249,0.376322,0.660761,0.390957,0.908592,0.8019,0.813796,0.8022,0.190944,0.228162,0.598824,0.28796,0.372543,0.670488,0.00492495,0.343269,0.574231,0.596125,0.526834,0.469736,0.588507,0.954116,0.269682,0.381177,0.977714,0.610882,0.760858,0.955409,0.562693,0.734182,0.0573189,0.534302,0.6893,0.0905622,0.306205,0.648206,0.639748,0.299835,0.172318,0.0660631,0.57014,0.831137,0.143123,0.0386291,0.717578,0.947681,0.165793,0.181915,0.470551,0.91924,0.465789,0.729944,0.402864,0.444144,0.524659,0.339163,0.751187,0.15331,0.763277,0.922109,0.541636,0.0716947,0.139851,0.00732511,0.112031,0.0616882,0.708114,0.96356,0.90001,0.461055,0.0510221,0.948131,0.959979,0.547734,0.978823,0.272212,0.755716,0.167287,0.404024,0.168751,0.446999,0.308629,0.88536,0.796005,0.117575,0.569502,0.903624,0.0989753,0.998528,0.328986,0.988765,0.0282379,0.081663,0.216455,0.911969,0.723447,0.65855,0.861681,0.638026,0.691635,0.11679,0.163905,0.37406,0.0537662,0.022324,0.240429,0.158746,0.234914,0.083759,0.393324,0.0883744,0.159397,0.433845,0.857434,0.764756,0.342704,0.968304,0.528031,|0.745653,0.686103,0.69619,0.0928799,0.384196,0.0987111,0.328752,0.888217,0.376605,0.0522459,0.914313,0.0203386,0.049235,0.915025,0.424239,0.664962,0.397821,0.607752,0.611819,0.605397,0.297029,0.0378999,0.764839,0.167575,0.0368782,0.221141,0.745833,0.143475,0.193392,0.109852,0.223623,0.31319,0.193317,0.205708,0.273451,0.0537825,0.455992,0.618257,0.783499,0.168717,0.160556,0.196453,0.918316,0.067704,0.613185,0.876976,0.446714,0.838383,0.278496,0.471426,0.811168,0.738848,0.442083,0.923082,0.409307,0.347775,0.47952,0.523228,0.141379,0.710694,0.333074,0.57,0.452773,0.255761,0.015642,0.656568,0.516399,0.423801,0.144171,0.767557,0.438449,0.369577,0.783601,0.745191,0.0191261,0.249757,0.701474,0.0799451,0.162296,0.564778,0.329998,0.572501,0.654566,0.473673,0.877817,0.873849,0.23425,0.816329,0.97095,0.176636,0.365118,0.160913,0.540659,0.223167,0.563031,0.373275,0.273077,0.634983,0.530678,0.750112,0.629299,0.974872,0.4904,0.0233967,0.966682,0.888169,0.325417,0.71055,0.45258,0.887156,0.634151,0.896181,0.424055,0.0796673,0.116006,0.804553,0.936105,0.318048,0.99356,0.0164605,0.54013,0.727824,0.0503567,0.145994,0.720764,0.593414,0.660966,0.505105,0.745827,0.810457,0.259452,0.821346,0.824171,0.596684,0.274135,0.00734979,0.362721,0.249409,0.588951,0.657957,0.974593,0.761961,0.872621,0.506774,0.0421848,0.897384,0.599936,0.793718,0.658032,0.294743,0.670437,0.587237,0.0227038,0.393505,0.407465,0.0899727,0.473998,0.803186,0.0179792,0.677838,0.690318,0.240674,0.872861,0.898686,0.952555,0.929895,0.138517,0.061509,0.371491,0.604172,0.43104,0.366812,0.179814,0.30275,0.135373,0.23471,0.440921,0.672494,0.201646,0.036611,0.152847,0.229924,0.620475,0.812455,0.400956,0.578129,0.369454,0.285254,0.15933,0.0414511,0.67343,0.37399,0.159995,0.720439,0.156072,0.986843,0.734434,0.210291,0.301851,0.01248,0.114086,0.313329,0.266795,0.688948,0.580011,0.612582,0.886175,0.147041,0.33936,0.910399,0.0201768,0.0969604,0.198196,0.716325,0.630265,0.625767,0.270452,0.971332,0.151199,0.358539,0.577265,0.72498,0.0457629,0.0225759,0.878071,0.755155,0.410952,0.0255821,0.0296558,0.120622,0.667345,0.525858,0.726857,0.697529,0.554082,0.271484,0.699209,0.680208,0.433018,0.84165,0.586641,0.65659,0.662154,0.84204,0.00965112,0.720371,0.371494,0.75098,0.0993561,0.167796,0.642209,0.331469,0.396982,0.244336,0.592559,0.718877,0.783055,0.218076,0.217497,0.335296,0.811855,0.825423,0.455231,0.932603,0.453118,0.409489,0.629851,0.485116,0.59432,0.217938,0.595806,0.676967,0.966827,0.110756,0.112837,0.448785,0.395483,0.968562,0.49924,0.768147,0.98484,0.458362,0.899218,0.211525,0.103414,0.164666,0.651818,0.687736,0.434589,0.579921,0.948541,0.813392,0.417182,0.397407,0.174665,0.590448,0.250924,0.955871,0.222778,0.498875,0.40627,0.635168,0.657461,0.200567,0.718425,0.414329,0.993641,0.964298,0.803848,0.345463,0.470655,0.633957,0.364042,0.213782,0.35109,0.786228,0.106888,0.314843,0.626979,0.772213,0.46069,0.646882,0.789778,0.788055,0.112721,0.546406,0.546289,0.928695,0.171597,0.440095,0.931292,0.521383,0.0739039,0.693449,0.439791,0.263345,0.306973,0.464699,0.138714,0.386452,0.527773,0.0340829,0.982471,0.107476,0.537293,0.150001,0.513675,0.399589,0.173888,0.915615,0.245481,0.782426,0.230419,0.539699,0.315522,0.955332,0.54772,0.578838,0.517896,0.493317,0.456659,0.341238,0.200348,0.573458,0.664125,0.729106,0.113621,0.922943,0.209104,0.789763,0.656666,0.938318,0.0180836,0.430968,0.437336,0.485495,0.585369,0.166116,0.955304,0.463319,0.000800669,0.148543,0.343889,0.530719,0.0936653,0.385158,0.823238,0.775806,0.757726,0.652169,0.325218,0.0537813,0.032188,0.670983,0.0593362,0.889145,0.191269,0.360824,0.00504059,0.858729,0.657768,0.484181,0.547751,0.0478917,0.00709021,0.384735,0.947788,0.34223,0.574397,0.952838,0.501538,0.101641,0.50428,0.105815,0.293703,0.610336,0.84907,0.423864,0.546103,0.505069,0.527291,0.730566,0.953683,0.022809,0.5923,0.56767,0.713968,0.749013,0.495558,0.492009,0.170635,0.408726,0.622916,0.754659,0.0603766,0.377076,0.696203,0.989102,0.472025,0.834175,0.710797,0.32106,0.735886,0.934143,0.845032,0.980689,0.627189,0.571808,0.880342,0.354089,0.653061,0.827054,0.115527,0.262773,0.0650081,0.104008,0.525633,0.930406,0.628674,0.882727,0.0156252,0.976246,0.759587,0.0139721,0.222313,0.41604,0.94128,0.966012,0.179784,0.0999287,0.437085,0.258241,0.754736,0.316592,0.494827,0.879427,0.933007,0.453892,0.00142562,0.282808,0.926751,0.79305,0.828964,0.0550253,0.16715,0.404314,0.405777,0.0778646,0.440759,0.958798,0.0139273,0.188986,0.506651,0.0206754,0.0228698,0.955182,0.226434,0.203394,0.222927,0.273644,0.0689633,0.532165,0.292871,0.0814566,0.950174,0.741151,0.019872,0.256431,0.21322,0.44807,0.241172,0.394487,0.020938,0.780848,0.628397,0.184403,0.542377,0.12632,0.594913,0.225943,0.997165,0.618935,0.386646,0.835399,0.555254,0.932001,0.00243604,0.0402377,0.440182,0.813879,0.270193,0.210747,0.888756,0.833909,0.451394,0.263455,0.0269873,0.997396,0.0605149,0.332919,0.953723,0.790789,0.567369,0.604647,0.567035,0.107729,0.0148051,0.946475,0.809785,0.145349,0.841446,0.807169,0.26345,0.867209,0.674535,0.956974,0.872213,0.500115,0.139295,0.398007,0.600535,0.500899,0.139682,0.945365,0.491979,0.0157087,0.269902,0.501429,0.865247,0.639361,0.719734,0.888599,0.0483127,0.314676,0.664345,0.650098,0.706854,0.135504,0.273647,0.373304,0.497349,0.00653714,0.855323,0.0350556,0.271352,0.29751,0.576434,0.676815,0.26684,0.208834,0.215126,0.821648,0.483553,0.200577,0.872094,0.448766,0.0979748,0.631538,0.848665,0.714402,0.925929,0.284165,0.684527,0.810576,0.990823,0.812698,0.834945,0.770281,0.630651,0.276394,0.544838,0.243549,0.777476,0.137492,0.462614,0.940938,0.251251,0.163906,0.630196,0.170452,0.591248,0.0833218,0.646132,0.966537,0.262777,0.788042,0.0922855,0.0404683,0.788253,0.464116,0.0784412,0.542901,0.193174,0.729749,0.636043,0.756626,0.886766,0.429301,0.0238946,0.321843,0.525738,0.360902,0.03088,0.463947,0.407212,0.0739887,0.873055,0.454708,0.0424032,0.651511,0.0206811,0.0171905,0.0145565,0.987056,0.388223,0.415753,0.595623,0.136537,0.715095,0.316748,0.641578,0.0879704,0.226638,0.0725663,0.0447432,0.483943,0.228223,0.711164,0.336232,0.997835,0.256068,0.981837,0.511014,0.256475,0.880908,0.760499,0.478859,0.502668,0.323185,0.660466,0.704177,0.789167,0.981704,0.906491,0.194751,0.522279,0.206052,0.944305,0.619085,0.319411,0.248409,0.0868304,0.858651,0.417693,0.159648,0.440017,0.65334,0.954192,0.691423,0.839367,0.716401,0.0923294,0.547099,0.252654,0.408965,0.661234,0.496642,0.701786,0.463195,0.69514,0.24216,0.648059,0.892219,0.75408,0.0385814,0.0587907,0.760775,0.872372,0.881174,0.821611,0.702311,0.468846,0.504017,0.374096,0.86276,0.28935,0.771446,0.65619,0.00563413,0.894269,0.734903,0.335146,0.00810492,0.907796,0.817067,0.0279572,0.324719,0.274847,0.753285,0.135803,0.474527,0.973959,0.76436,0.756028,0.000546694,0.0289819,0.00945234,0.0819759,0.647632,0.257298,0.204189,0.226421,0.928296,0.939194,0.144099,0.271963,0.367459,0.811659,0.341162,0.931241,0.343877,0.749767,0.865139,0.995078,0.855582,0.686208,0.499385,0.598713,0.714509,0.893706,0.704232,0.601719,0.0598645,0.420341,0.790853,0.50045,0.576723,0.760794,0.571996,0.570065,0.430038,0.552383,0.275152,0.455428,0.0443329,0.494406,0.00441819,0.75149,0.0259395,0.313853,0.651923,0.0220773,0.666808,0.219535,0.253902,0.675926,0.797869,0.336428,0.300132,0.976301,0.182599,0.983384,0.733818,0.470061,0.865819,0.395997,0.362786,0.988955,0.745659,0.415177,0.177168,0.0607526,0.581073,0.575172,0.0822127,0.0453129,0.914319,0.164519,0.565257,0.950468,0.326851,0.939092,0.330032,0.204392,0.361477,0.976007,0.108498,0.49318,0.114107,0.305728,0.79434,0.480038,0.634969,0.755512,0.437839,0.237787,0.569647,0.760606,0.118392,0.909489,0.890662,0.602394,0.211749,0.416662,0.251744,0.564862,0.0473108,0.953279,0.956599,0.97313,0.275183,0.922952,0.0762977,0.525005,0.129541,0.837223,0.555894,0.363419,0.291193,0.943775,0.418932,0.760063,0.232183,0.279178,0.153814,0.320989,0.64443,0.677111,0.0647816,0.336451,0.444999,0.103483,0.484819,0.807871,0.831734,0.0993298,0.11262,0.756039,0.278072,0.379828,0.919603,0.584343,0.293426,0.465695,0.272315,0.062652,0.845895,0.310962,0.425401,0.0388851,0.458103,0.584601,0.504994,0.548197,0.530782,0.721666,0.12642,0.251376,0.876371,0.635913,0.376372,0.788213,0.36553,0.491073,0.140889,0.3554,0.40417,0.489813,0.757505,0.664283,0.780739,0.490155,0.121537,0.698329,0.221195,0.58302,0.41806,0.495798,0.214364,0.0462285,0.872677,0.0610881,0.645194,0.736409,0.107397,0.242851,0.962221,0.491979,0.747525,0.817343,0.213836,0.966939,0.648366,0.534335,0.0614006,0.948961,0.454289,0.465174,0.757065,0.470457,0.903643,0.223047,0.409063,0.491929,0.48321,0.151425,0.407284,0.909574,0.430578,0.141729,0.217709,0.53552,0.72979,0.920284,0.528911,0.0901309,0.118773,0.0441905,0.786526,0.708987,0.23966,0.361936,0.902824,0.593843,0.182246,0.254341,0.942524,0.794019,0.823393,0.0333943,0.990737,0.442318,0.16719,0.666466,0.672803,0.548085,0.109263,0.055028,0.856962,0.602454,0.91597,0.9528,0.920238,0.368409,0.776112,0.315069,0.892002,0.587919,0.745619,0.922053,0.103885,0.460495,0.337057,0.791178,0.729469,0.231365,0.98049,0.529361,0.181438,0.844375,|0.505334,0.0797978,0.0209357,0.396201,0.134943,0.718303,0.589041,0.97224,0.916395,0.683497,0.522133,0.0793775,0.485372,0.026239,0.229518,0.432027,0.328437,0.98833,0.566961,0.580344,0.625849,0.55719,0.00380349,0.568536,0.224772,0.468182,0.0490154,0.0368242,0.411519,0.0694589,0.194592,0.977133,0.822182,0.951462,0.858017,0.985965,0.71167,0.0119702,0.00796539,0.252622,0.879122,0.80995,0.00887758,0.873527,0.161159,0.354859,0.171815,0.0429636,0.223261,0.909312,0.789545,0.907099,0.943146,0.339798,0.84718,0.884956,0.0735828,0.164498,0.63693,0.185295,0.208026,0.411772,0.752045,0.725687,0.426458,0.255531,0.631444,0.338983,0.92597,0.10639,0.749079,0.804056,0.394378,0.713846,0.431651,0.0398816,0.720178,0.472885,0.45536,0.629892,0.80877,0.644011,0.18591,0.221408,0.768233,0.10087,0.833238,0.818736,0.861177,0.568305,0.576357,0.329951,0.626082,0.411171,0.493883,0.969518,0.715655,0.0172665,0.556961,0.209604,0.651804,0.511775,0.065857,0.645511,0.701121,0.657142,0.889433,0.277141,0.475652,0.249085,0.252379,0.889738,0.0603738,0.178348,0.478283,0.994427,0.768405,0.845938,0.469537,0.296512,0.140963,0.660409,0.463608,0.684657,0.263968,0.193233,0.96016,0.740186,0.613168,0.0500565,0.201449,0.550537,0.15512,0.807989,0.341641,0.504118,0.421694,0.714654,0.786569,0.310217,0.309395,0.179526,0.194164,0.700479,0.50374,0.911304,0.817698,0.0604923,0.115464,0.631501,0.913118,0.829632,0.577404,0.30912,0.629273,0.187067,0.197954,0.110542,0.150781,0.118256,0.628561,0.81357,0.723845,0.558946,0.0510691,0.662451,0.105684,0.682101,0.687139,0.575016,0.478612,0.400513,0.46942,0.225978,0.970349,0.358309,0.113509,0.394652,0.765441,0.93381,0.979811,0.175068,0.17805,0.496332,0.653161,0.660034,0.556844,0.83988,0.138808,0.818541,0.831431,0.665363,0.335178,0.347519,0.0617664,0.902696,0.914301,0.312255,0.943981,0.0745953,0.767998,0.910077,0.0889916,0.239056,0.72854,0.624497,0.138003,0.894068,0.737279,0.574329,0.759599,0.0266886,0.0235313,0.708622,0.764845,0.630444,0.00545293,0.0155879,0.748775,0.933736,0.227021,0.781418,0.169065,0.318178,0.621504,0.0763708,0.588199,0.205007,0.953057,0.308626,0.463278,0.928593,0.805064,0.766521,0.46775,0.508394,0.492342,0.198778,0.0787292,0.138657,0.778748,0.367403,0.680636,0.892505,0.00356901,0.874179,0.808244,0.0418693,0.567575,0.727004,0.154719,0.494528,0.888845,0.725694,0.466287,0.323556,0.166,0.157811,0.700619,0.846271,0.0855412,0.00138968,0.591008,0.687784,0.528351,0.0915928,0.543537,0.241652,0.5322,0.860782,0.410333,0.440728,0.796635,0.836822,0.850468,0.042623,0.722014,0.553295,0.149401,0.140106,0.550152,0.180612,0.728589,0.855067,0.601265,0.472424,0.0267372,0.580614,0.638387,0.209667,0.935009,0.33606,0.390836,0.655548,0.805785,0.10506,0.927076,0.0164988,0.326563,0.495954,0.0881872,0.907678,0.076978,0.621453,0.714156,0.864777,0.56381,0.891002,0.444822,0.707606,0.0314922,0.47215,0.654796,0.175879,0.0631092,0.24044,0.917576,0.512668,0.0390288,0.635332,0.471069,0.593361,0.0493663,0.644409,0.652593,0.456452,0.319916,0.936742,0.654294,0.969696,0.455031,0.187284,0.1002,0.434319,0.319094,0.320372,0.103131,0.390842,0.272186,0.910812,0.275008,0.804781,0.478127,0.208095,0.143558,0.415258,0.934792,0.54034,0.0018574,0.143994,0.864524,0.423893,0.616175,0.536497,0.460412,0.896183,0.0918359,0.245748,0.0733641,0.554079,0.637409,0.70288,0.728296,0.810658,0.00621772,0.814513,0.624709,0.0221227,0.382727,0.928576,0.159237,0.445388,0.637137,0.0324603,0.129344,0.551238,0.523139,0.610614,0.541942,0.384118,0.0649415,0.486636,0.116921,0.854304,0.62848,0.709014,0.323709,0.468934,0.10612,0.771973,0.16667,0.990564,0.91958,0.204804,0.288172,0.877413,0.494628,0.864048,0.581659,0.207274,0.256979,0.741324,0.0659181,0.202916,0.198342,0.327364,0.27306,0.266056,0.588442,0.608785,0.837056,0.344604,0.286337,0.648178,0.213802,0.00986725,0.342137,0.297038,0.364928,0.521573,0.0900136,0.410962,0.134597,0.579929,0.448759,0.866576,0.584513,0.809145,0.734226,0.125378,0.501041,0.272476,0.661171,0.0135705,0.547119,0.331532,0.52176,0.578319,0.010553,0.897158,0.784789,0.40293,0.64801,0.417443,0.399633,0.520707,0.281567,0.400724,0.260785,0.961803,0.387559,0.244546,0.197685,0.717876,0.702481,0.501923,0.137666,0.271521,0.957634,0.417032,0.451153,0.0376353,0.924632,0.754143,0.943961,0.439712,0.194823,0.761579,0.00213021,0.246023,0.206678,0.41216,0.855288,0.72233,0.197801,0.270843,0.401647,0.782373,0.462097,0.377163,0.559556,0.889623,0.108554,0.134931,0.447426,0.65111,0.745835,0.600014,0.363369,0.414009,0.0583666,0.753697,0.883503,0.962518,0.347549,0.421325,0.169164,0.353787,0.149555,0.473967,0.31985,0.486246,0.457861,0.312091,0.217158,0.153382,0.590801,0.232692,0.884948,0.110088,0.958633,0.222426,0.584399,0.285127,0.338828,0.108036,0.72335,0.399399,0.931763,0.793954,0.374566,0.299589,0.724838,0.39862,0.554659,0.874409,0.998712,0.719889,0.9486,0.0424578,0.754617,0.640284,0.893028,0.502862,0.91228,0.314707,0.86769,0.68147,0.570005,0.305862,0.606572,0.397309,0.626768,0.964455,0.868029,0.720314,0.0640324,0.805709,0.263466,0.963078,0.954347,0.478932,0.938653,0.413838,0.829232,0.301265,0.0382875,0.501758,0.242797,0.14295,0.780039,0.664101,0.671573,0.436166,0.93668,0.471899,0.665815,0.684366,0.148824,0.721364,0.455397,0.371438,0.184625,0.780535,0.868413,0.298984,0.0621216,0.716854,0.256603,0.336042,0.0779805,0.222008,0.28804,0.815901,0.921023,0.514122,0.223534,0.57259,0.326075,0.770826,0.285386,0.294418,0.968665,0.644491,0.125919,0.532078,0.532062,0.308143,0.407022,0.159396,0.451351,0.871467,0.657327,0.279772,0.830774,0.656465,0.498498,0.521164,0.784952,0.287184,0.794981,0.63724,0.934774,0.641744,0.573613,0.169683,0.235908,0.0215253,0.227834,0.656735,0.323264,0.239018,0.916247,0.905327,0.103552,0.843136,0.831104,0.744871,0.232901,0.810253,0.591254,0.149865,0.455952,0.168039,0.665412,0.154042,0.66358,0.977759,0.731807,0.273555,0.698349,0.649694,0.53097,0.0630772,0.0109857,0.250458,0.560978,0.276729,0.401644,0.592203,0.609208,0.800792,0.787231,0.832275,0.97624,0.853628,0.559092,0.169733,0.246185,0.97835,0.365102,0.874819,0.253881,0.796171,0.815289,0.0559223,0.379948,0.619457,0.556592,0.14155,0.894402,0.480972,0.449838,0.566394,0.138875,0.192155,0.570364,0.887794,0.849197,0.682238,0.143238,0.881048,0.576215,0.273634,0.773728,0.868104,0.0765873,0.647572,0.924171,0.621713,0.0162954,0.461302,0.710284,0.97181,0.485095,0.47883,0.658005,0.50469,0.771939,0.951138,0.954002,0.881455,0.0823232,0.674706,0.683118,0.644498,0.992761,0.0607151,0.734678,0.814608,0.602514,0.0376402,0.416432,0.985617,0.648029,0.0648752,0.152114,0.130971,0.186993,0.646769,0.171483,0.641475,0.862948,0.935254,0.068711,0.912295,0.297764,0.745323,0.511387,0.755644,0.399437,0.465789,0.896441,0.942556,0.299184,0.745489,0.319629,0.269358,0.775315,0.967884,0.982493,0.0411569,0.83046,0.028415,0.193704,0.369011,0.838141,0.83012,0.021201,0.301574,0.112714,0.587582,0.158352,0.0401487,0.253044,0.556406,0.255175,0.509923,0.598917,0.82911,0.715134,0.617364,0.955083,0.21091,0.11113,0.9149,0.561925,0.82433,0.123887,0.0657672,0.297925,0.255881,0.108029,0.122373,0.581668,0.16198,0.191558,0.375599,0.334753,0.809071,0.341601,0.931616,0.274239,0.912517,0.996381,0.735845,0.36531,0.655277,0.247766,0.531472,0.661069,0.817758,0.411834,0.759708,0.442659,0.658478,0.423652,0.984162,0.707334,0.256442,0.112598,0.585581,0.370945,0.371669,0.347222,0.753724,0.837872,0.580435,0.71172,0.195469,0.490381,0.967227,0.228702,0.763383,0.715521,0.00315171,0.181991,0.254909,0.166616,0.460925,0.0394309,0.619726,0.949764,0.162492,0.71014,0.737957,0.330704,0.0528337,0.0100216,0.360275,0.775234,0.989952,0.10927,0.332301,0.63569,0.96025,0.53255,0.109736,0.416516,0.0163227,0.12432,0.595442,0.67045,0.135787,0.642532,0.982972,0.255479,0.432889,0.246466,0.123456,0.718467,0.699347,0.161533,0.333654,0.904619,0.589914,0.521986,0.191336,0.650166,0.228679,0.212419,0.203158,0.737916,0.270765,0.988282,0.535561,0.313194,0.0357414,0.349677,0.103079,0.362615,0.361142,0.0724158,0.391693,0.0980241,0.993967,0.220383,0.110759,0.94689,0.071534,0.961986,0.348148,0.54243,0.577954,0.26849,0.502709,0.986101,0.41582,0.831238,0.585836,0.479429,0.0529194,0.660224,0.222661,0.615295,0.867419,0.444179,0.540307,0.707047,0.974214,0.294879,0.27372,0.944274,0.475563,0.929103,0.971353,0.688514,0.945577,0.299225,0.139635,0.148738,0.580981,0.564157,0.664549,0.672804,0.277448,0.896527,0.235034,0.760843,0.00425434,0.614705,0.329164,0.735417,0.0986074,0.796141,0.143273,0.89328,0.00258803,0.730845,0.668891,0.709168,0.91237,0.098389,0.810361,0.554539,0.874602,0.612751,0.310222,0.513607,0.718563,0.551723,0.271308,0.405199,0.487577,0.422239,0.153978,0.193919,0.574988,0.209785,0.642902,0.474495,0.581715,0.981334,0.481266,0.0443904,0.467747,0.141858,0.0710339,0.559061,0.610862,0.407185,0.283144,0.778993,0.63853,0.834764,0.953128,0.0481034,0.916915,0.81278,0.46448,0.425799,0.097817,0.81473,0.306912,0.78135,0.920258,0.734284,0.0141928,0.319957,0.061346,0.266982,0.882873,0.891091,0.801956,0.203441,0.922439,0.389661,0.401095,0.75746,0.667857,0.900794,0.785137,0.578081,0.721134,0.350445,0.19719,0.922897,0.568706,0.419506,0.115084,|0.621121,0.850242,0.0906023,0.514327,0.345978,0.0525498,0.0487178,0.752429,0.542563,0.0464141,0.00587893,0.420259,0.711157,0.280754,0.894994,0.12356,0.743348,0.522387,0.242935,0.814746,0.333708,0.999963,0.195141,0.324508,0.528797,0.628381,0.832131,0.354156,0.341741,0.100948,0.844676,0.822799,0.081881,0.439432,0.7254,0.671625,0.556056,0.917868,0.256769,0.964909,0.629227,0.954836,0.538416,0.611176,0.7434,0.61379,0.867041,0.548188,0.977721,0.360245,0.769729,0.89015,0.340865,0.715048,0.21589,0.621933,0.0258418,0.25312,0.540768,0.124782,0.508265,0.533148,0.662386,0.418723,0.44892,0.426423,0.518256,0.700594,0.927002,0.739229,0.436496,0.664864,0.0795736,0.587218,0.725984,0.789712,0.921107,0.199484,0.683847,0.924016,0.575184,0.955939,0.568094,0.907971,0.224088,0.9338,0.581411,0.283433,0.316944,0.0788443,0.401191,0.468094,0.476292,0.787874,0.438733,0.733433,0.0641626,0.847714,0.331578,0.396144,0.25369,0.732375,0.650241,0.0620055,0.831487,0.729015,0.621706,0.0115159,0.535509,0.217917,0.862725,0.439984,0.816209,0.73499,0.109631,0.297273,0.262835,0.769026,0.275262,0.536104,0.843878,0.703853,0.490307,0.609342,0.103939,0.0655652,0.40727,0.35791,0.968827,0.479321,0.954864,0.454888,0.119031,0.637139,0.183663,0.489611,0.697158,0.482256,0.465041,0.315167,0.0690753,0.535986,0.211246,0.186033,0.945962,0.799845,0.527906,0.615513,0.555565,0.521918,0.956502,0.602282,0.428874,0.279575,0.502204,0.651231,0.0370426,0.555182,0.779955,0.838442,0.119674,0.605657,0.489825,0.848895,0.001926,0.393425,0.621274,0.399349,0.196701,0.187039,0.471046,0.590801,0.489123,0.350039,0.369478,0.405826,0.21243,0.646575,0.683174,0.429543,0.434951,0.733364,0.178235,0.35643,0.638044,0.192928,0.958512,0.208701,0.339992,0.715926,0.514568,0.331989,0.975377,0.899971,0.911492,0.328754,0.785143,0.000263989,0.828207,0.0279588,0.693562,0.236339,0.732329,0.525283,0.192456,0.409823,0.956689,0.835544,0.79981,0.706288,0.854103,0.233932,0.242943,0.813978,0.124714,0.598749,0.197671,0.931411,0.686665,0.892632,0.137292,0.517927,0.735106,0.132504,0.845338,0.765874,0.608958,0.737308,0.882815,0.63672,0.212403,0.115332,0.310542,0.902505,0.815915,0.294734,0.0428801,0.340019,0.27739,0.798774,0.908948,0.381363,0.126524,0.643022,0.086244,0.287244,0.187352,0.922613,0.386506,0.880209,0.549984,0.793365,0.816649,0.919462,0.550042,0.834237,0.874625,0.0858873,0.92167,0.305923,0.444761,0.0468223,0.0969632,0.995916,0.915659,0.848128,0.821912,0.575292,0.0807141,0.907252,0.327953,0.30235,0.881941,0.349999,0.273058,0.440319,0.696466,0.545128,0.447668,0.987742,0.672488,0.710137,0.787846,0.546692,0.63482,0.119409,0.010244,0.252557,0.761132,0.236555,0.429872,0.451791,0.65744,0.958965,0.898299,0.621245,0.121487,0.194928,0.880677,0.442096,0.0263785,0.990477,0.0980228,0.0762572,0.37066,0.836819,0.251872,0.550184,0.159154,0.216971,0.26686,0.352024,0.0946994,0.704143,0.30204,0.331382,0.394025,0.798088,0.374711,0.257364,0.141281,0.123325,0.989555,0.150399,0.966845,0.194588,0.0556796,0.164025,0.731532,0.402715,0.357694,0.526691,0.928755,0.435576,0.514471,0.642223,0.915754,0.800362,0.826554,0.983668,0.430002,0.101616,0.255359,0.0935519,0.786866,0.200285,0.44052,0.443996,0.128129,0.931491,0.585222,0.311058,0.706839,0.305728,0.231703,0.723413,0.157624,0.0437518,0.33509,0.177052,0.402564,0.973987,0.80849,0.756691,0.194661,0.787885,0.692293,0.243949,0.745835,0.00238752,0.93567,0.202503,0.214816,0.876591,0.293546,0.179363,0.521738,0.791614,0.435789,0.837053,0.0840885,0.163172,0.0544813,0.868592,0.0365557,0.195734,0.613927,0.262356,0.40243,0.928064,0.927949,0.689394,0.588112,0.545792,0.734438,0.626451,0.0316365,0.630492,0.255371,0.228315,0.0607731,0.655425,0.765413,0.684569,0.214491,0.625167,0.358303,0.338394,0.503459,0.408536,0.13997,0.88711,0.657573,0.596768,0.404766,0.215579,0.642375,0.188065,0.602176,0.434554,0.28328,0.309882,0.960432,0.825391,0.699778,0.152385,0.845281,0.0386233,0.754158,0.249757,0.944305,0.280864,0.290717,0.195629,0.915164,0.673631,0.376307,0.940721,0.539101,0.646169,0.204943,0.798521,0.499939,0.14593,0.0876352,0.304851,0.401683,0.0872601,0.180098,0.757119,0.416864,0.825664,0.211866,0.411717,0.617209,0.371806,0.0287123,0.669493,0.535795,0.0230007,0.706031,0.146025,0.0830474,0.252003,0.946298,0.577075,0.0217693,0.777215,0.67884,0.391475,0.218946,0.630303,0.0452657,0.918559,0.871034,0.995308,0.526817,0.885591,0.30707,0.859884,0.848692,0.661856,0.653163,0.175687,0.680444,0.138913,0.443547,0.515644,0.40326,0.378105,0.914947,0.110995,0.319794,0.985788,0.606805,0.783397,0.300833,0.0863659,0.375547,0.286615,0.74113,0.948807,0.556345,0.744153,0.694509,0.366266,0.180404,0.199907,0.251512,0.377647,0.53264,0.303426,0.00854528,0.665391,0.763482,0.141321,0.578666,0.420713,0.813193,0.588308,0.385982,0.274303,0.478456,0.900218,0.446094,0.732222,0.403606,0.500446,0.895192,0.181485,0.157396,0.904838,0.54222,0.39873,0.472786,0.132622,0.242331,0.489232,0.597817,0.00164419,0.987405,0.146002,0.163265,0.364238,0.956253,0.716569,0.450573,0.860872,0.763438,0.22996,0.39762,0.848319,0.572775,0.29068,0.343118,0.916034,0.917895,0.0982503,0.305907,0.717482,0.498648,0.916258,0.458233,0.522501,0.737326,0.743685,0.712224,0.149961,0.192904,0.578565,0.848296,0.683536,0.860498,0.780805,0.260311,0.926598,0.00468659,0.409984,0.855357,0.205018,0.981831,0.268371,0.212161,0.728342,0.0799944,0.351973,0.774309,0.866973,0.733945,0.882263,0.434421,0.0828252,0.0992406,0.957558,0.148842,0.220461,0.0602733,0.262008,0.089758,0.379856,0.127215,0.64604,0.808684,0.961537,0.915965,0.773279,0.718296,0.609304,0.468799,0.903985,0.419734,0.215856,0.79992,0.110539,0.836885,0.381819,0.276586,0.871369,0.103455,0.85135,0.622466,0.645842,0.560921,0.0589057,0.880444,0.931782,0.164058,0.0668832,0.805661,0.962316,0.993496,0.231366,0.0417027,0.884307,0.89735,0.909418,0.952151,0.0838834,0.702492,0.840057,0.291178,0.622548,0.070832,0.556264,0.538302,0.159168,0.0899701,0.507656,0.543168,0.0113074,0.899028,0.189371,0.690338,0.233688,0.483981,0.892917,0.262368,0.146421,0.465944,0.477834,0.275743,0.880813,0.695458,0.28209,0.663529,0.316583,0.620932,0.383264,0.672302,0.185331,0.925379,0.477009,0.478357,0.391306,0.755185,0.781135,0.933449,0.42053,0.186445,0.605608,0.986473,0.0599427,0.326811,0.471987,0.239311,0.679168,0.741524,0.690611,0.826512,0.388458,0.92188,0.142753,0.49611,0.539748,0.819716,0.549924,0.376488,0.976368,0.360977,0.718039,0.906971,0.418231,0.336902,0.0357421,0.728188,0.406159,0.143387,0.0616272,0.0931368,0.855192,0.938798,0.562055,0.168718,0.616748,0.56866,0.803539,0.156316,0.339754,0.297702,0.694135,0.857038,0.837858,0.346172,0.0167688,0.378386,0.141448,0.240504,0.144917,0.422125,0.477435,0.754072,0.00654584,0.714206,0.348593,0.198273,0.880897,0.362098,0.291108,0.0260852,0.493542,0.228657,0.561441,0.465248,0.72848,0.559534,0.506158,0.314796,0.181676,0.654556,0.121048,0.659286,0.743434,0.364321,0.641302,0.589661,0.407138,0.0888394,0.648913,0.548332,0.817803,0.522299,0.316766,0.281385,0.769819,0.81291,0.926221,0.316558,0.479322,0.215715,0.30883,0.00397491,0.739258,0.407814,0.181468,0.0585927,0.369628,0.670264,0.0364902,0.025239,0.594013,0.404017,0.11907,0.937312,0.0246044,0.480475,0.4471,0.361132,0.711698,0.318309,0.162804,0.665459,0.333777,0.600015,0.251901,0.525236,0.436802,0.45245,0.18025,0.34026,0.146257,0.897396,0.259312,0.890707,0.27208,0.465604,0.465791,0.737109,0.0671774,0.828467,0.713556,0.0234587,0.306046,0.978884,0.478045,0.928962,0.564712,0.653884,0.980312,0.232864,0.671049,0.721979,0.873778,0.530417,0.82009,0.957633,0.377016,0.087451,0.275534,0.818504,0.595892,0.0684162,0.0507144,0.56742,0.733017,0.898449,0.0862318,0.696076,0.883141,0.961612,0.0292357,0.141171,0.0284146,0.260487,0.491787,0.992118,0.319177,0.00997251,0.545121,0.162018,0.0692133,0.578384,0.0415249,0.345271,0.0133358,0.77035,0.00291067,0.944198,0.516981,0.196408,0.141724,0.767028,0.789021,0.418246,0.399473,0.139312,0.791534,0.286695,0.509457,0.491346,0.760446,0.634902,0.655635,0.542557,0.25126,0.567044,0.967224,0.208793,0.695093,0.82299,0.379219,0.0367612,0.233056,0.81324,0.756667,0.0210336,0.334139,0.270972,0.413814,0.0339596,0.702389,0.491337,0.555451,0.306013,0.768209,0.356369,0.97631,0.131709,0.684034,0.444742,0.307886,0.610774,0.590801,0.435976,0.923126,0.0298855,0.0662711,0.324097,0.169761,0.508191,0.88506,0.151899,0.585392,0.796597,0.553355,0.619032,0.0886287,0.273148,0.0882223,0.270811,0.974635,0.0390589,0.180116,0.398183,0.979619,0.439734,0.207319,0.186463,0.581685,0.422106,0.169061,0.284332,0.754114,0.818045,0.184257,0.0140043,0.239128,0.953702,0.219814,0.0249772,0.00509876,0.162677,0.482905,0.7228,0.711754,0.11689,0.234333,0.574545,0.173483,0.738835,0.93805,0.317159,0.957636,0.188125,0.618921,0.112443,0.163336,0.63572,0.530067,0.186827,0.422972,0.0768831,0.570183,0.218785,0.599742,0.572578,0.0247293,0.81828,0.175144,0.30105,0.423882,0.979596,0.632325,0.539738,0.288451,0.23702,0.932341,0.738133,0.235806,0.782178,0.697687,0.94077,0.510315,0.441766,0.665928,0.692305,0.610839,0.522807,0.176325,0.188433,0.883434,0.0913682,0.24756,0.770675,0.948752,0.732778,0.054599,0.913737,0.0466536,0.503385,0.121715,|0.896552,0.140977,0.0136332,0.562415,0.0444745,0.912832,0.806731,0.616601,0.970003,0.214091,0.0512164,0.222228,0.558619,0.363261,0.0224544,0.715999,0.0774029,0.361973,0.896898,0.961984,0.163097,0.650172,0.738652,0.7626,0.0872231,0.570058,0.204402,0.167969,0.119562,0.488462,0.418567,0.924273,0.187699,0.0939315,0.00788683,0.3684,0.453363,0.725423,0.435103,0.426455,0.147893,0.961948,0.388078,0.200071,0.2908,0.293622,0.649343,0.965425,0.962079,0.798842,0.644031,0.427778,0.681879,0.68793,0.257227,0.879012,0.119932,0.649016,0.664358,0.284205,0.584701,0.390983,0.178802,0.958076,0.00236398,0.635421,0.532332,0.699549,0.429657,0.803823,0.716147,0.61084,0.0991709,0.291159,0.802702,0.863653,0.28969,0.630684,0.466991,0.812636,0.958714,0.17277,0.145758,0.39193,0.0916889,0.662402,0.92954,0.95614,0.761641,0.910861,0.28188,0.505607,0.461475,0.784508,0.177713,0.820449,0.5019,0.125328,0.76603,0.827065,0.832996,0.984105,0.409686,0.384795,0.276268,0.574039,0.00808078,0.44024,0.531914,0.411416,0.148149,0.474577,0.730199,0.161938,0.764792,0.299602,0.166487,0.184521,0.839312,0.810659,0.663515,0.711397,0.984078,0.171839,0.0369867,0.526475,0.720926,0.636199,0.708161,0.320924,0.941678,0.690786,0.842747,0.614694,0.475066,0.821052,0.0504794,0.376937,0.745016,0.527294,0.951515,0.234636,0.393638,0.307345,0.502574,0.608442,0.731902,0.63483,0.700214,0.27466,0.61611,0.46692,0.272604,0.590761,0.921923,0.569854,0.343987,0.887502,0.754775,0.774102,0.0867315,0.845344,0.587669,0.804773,0.124528,0.615073,0.0913564,0.556873,0.08051,0.749329,0.645083,0.973901,0.268292,0.423353,0.346544,0.135387,0.222299,0.970663,0.0330144,0.0975755,0.53923,0.3884,0.206519,0.00633967,0.397407,0.635568,0.750909,0.325541,0.765966,0.530599,0.988935,0.241601,0.67355,0.489821,0.182822,0.280895,0.670155,0.52806,0.49854,0.142844,0.819557,0.468964,0.623319,0.705221,0.338859,0.773333,0.242247,0.492448,0.533969,0.223428,0.0842853,0.65765,0.00816858,0.203938,0.209818,0.372094,0.768759,0.0157009,0.896821,0.783236,0.100978,0.382953,0.98651,0.653141,0.617108,0.532374,0.614356,0.816678,0.422061,0.0281371,0.228211,0.409706,0.407273,0.270993,0.397094,0.275526,0.576236,0.134777,0.375193,0.61035,0.507886,0.0858366,0.44044,0.493247,0.220616,0.29033,0.23764,0.336679,0.896076,0.00360048,0.961653,0.663119,0.608894,0.0230022,0.440771,0.148212,0.167247,0.199032,0.493232,0.461763,0.599621,0.830439,0.981308,0.777564,0.292946,0.174864,0.692147,0.134714,0.971302,0.043442,0.259302,0.948527,0.604692,0.272481,0.220502,0.542219,0.765182,0.18993,0.321009,0.920768,0.748138,0.505499,0.153357,0.670205,0.374151,0.284276,0.58801,0.0732663,0.878757,0.82146,0.0636345,0.0735052,0.090099,0.290007,0.528608,0.289562,0.0302601,0.031884,0.68124,0.100185,0.0869946,0.389404,0.324344,0.690578,0.133393,0.877222,0.949121,0.489337,0.612228,0.0631958,0.777199,0.610332,0.0915158,0.750132,0.265959,0.541802,0.854386,0.159278,0.131016,0.811133,0.0953969,0.924069,0.467537,0.331238,0.813109,0.638734,0.980692,0.858454,0.480243,0.980834,0.764056,0.589263,0.509933,0.264474,0.158385,0.33102,0.753849,0.0866148,0.0982518,0.550134,0.101381,0.118225,0.786979,0.0851553,0.70512,0.858318,0.308185,0.625815,0.928755,0.613468,0.675428,0.643415,0.861968,0.979022,0.747229,0.450954,0.0135559,0.198401,0.485556,0.324206,0.90571,0.899559,0.549968,0.376799,0.200237,0.12882,0.82499,0.402736,0.416349,0.650893,0.783799,0.848144,0.864195,0.891195,0.597353,0.0678533,0.495161,0.137114,0.656051,0.761557,0.684837,0.49486,0.54573,0.65306,0.314733,0.434234,0.838469,0.48446,0.551177,0.488449,0.0126809,0.285832,0.680422,0.513944,0.28114,0.106979,0.521515,0.866285,0.887405,0.131719,0.0794641,0.0735064,0.532623,0.866986,0.328768,0.626769,0.561387,0.477175,0.752372,0.356528,0.51422,0.2141,0.364973,0.614612,0.818057,0.631565,0.682031,0.530623,0.819983,0.778172,0.713191,0.138676,0.132039,0.358866,0.570309,0.893354,0.453909,0.833084,0.12751,0.626604,0.388288,0.486546,0.723351,0.180396,0.296514,0.840916,0.146427,0.253845,0.345481,0.576159,0.541045,0.902592,0.231016,0.99348,0.910867,0.628804,0.892909,0.798964,0.25822,0.245552,0.249416,0.778959,0.151889,0.550063,0.409669,0.091772,0.450595,0.495917,0.68266,0.894476,0.902404,0.989375,0.69216,0.729194,0.296692,0.991101,0.0245825,0.514789,0.170212,0.279187,0.24801,0.0444672,0.959608,0.762422,0.826326,0.808941,0.583044,0.196341,0.64957,0.300831,0.223598,0.81969,0.33428,0.0312505,0.801086,0.11307,0.203813,0.0729132,0.110317,0.879839,0.786506,0.0581031,0.955264,0.653695,0.846483,0.668323,0.350903,0.179975,0.121244,0.521848,0.965819,0.77852,0.361521,0.0806958,0.891166,0.82699,0.248109,0.333596,0.314924,0.908321,0.140212,0.984329,0.331205,0.721209,0.449551,0.947951,0.62334,0.810089,0.297535,0.0263355,0.370835,0.375244,0.492761,0.344289,0.0369182,0.686661,0.00590861,0.99763,0.44204,0.626115,0.899627,0.369536,0.426283,0.296011,0.564126,0.547172,0.855412,0.158333,0.862555,0.558445,0.217,0.797964,0.837093,0.336044,0.022307,0.722379,0.86789,0.320409,0.850038,0.607119,0.482432,0.859831,0.845438,0.868897,0.0723197,0.966634,0.00616872,0.974189,0.314009,0.258529,0.0032208,0.905156,0.990418,0.675445,0.0169046,0.911291,0.0806561,0.347675,0.744267,0.198591,0.3956,0.877455,0.930981,0.305192,0.344011,0.438216,0.0949583,0.533952,0.816427,0.462525,0.903241,0.277759,0.0495529,0.278435,0.386399,0.435793,0.740708,0.706749,0.000281811,0.349604,0.844942,0.750522,0.968394,0.255221,0.165868,0.985904,0.544881,0.981178,0.995795,0.167131,0.573909,0.30652,0.0143663,0.629382,0.722876,0.375584,0.683148,0.811846,0.0844803,0.554633,0.932664,0.419684,0.295932,0.710395,0.783105,0.763654,0.42432,0.761404,0.0704354,0.194406,0.788973,0.669106,0.574957,0.366623,0.439486,0.5846,0.658793,0.125091,0.046696,0.703377,0.947349,0.0242448,0.574854,0.255459,0.601941,0.59151,0.0385093,0.539026,0.853523,0.60637,0.852246,0.32107,0.819032,0.56791,0.390884,0.523377,0.91966,0.117861,0.295057,0.97477,0.725576,0.921953,0.353498,0.402501,0.61301,0.6012,0.98697,0.139132,0.0858673,0.365152,0.0654278,0.819713,0.55297,0.429868,0.883327,0.81654,0.870639,0.737429,0.559696,0.643434,0.306691,0.948037,0.450656,0.668331,0.241086,0.361375,0.36259,0.895562,0.00542682,0.556953,0.260334,0.198454,0.988137,0.948871,0.169869,0.753934,0.764579,0.23108,0.0503457,0.493129,0.779673,0.0371614,0.554458,0.326149,0.498384,0.292453,0.614244,0.0872048,0.97716,0.0962299,0.676348,0.0929909,0.189362,0.309564,0.96761,0.991223,0.375917,0.858055,0.803701,0.202365,0.00822639,0.170664,0.0821345,0.00299591,0.534281,0.504832,0.788448,0.556063,0.00406241,0.537365,0.113867,0.547807,0.975113,0.217181,0.226599,0.884693,0.1169,0.291447,0.772027,0.40652,0.575144,0.496237,0.705209,0.773022,0.8619,0.718388,0.914606,0.0312562,0.784137,0.763566,0.812815,0.561889,0.570306,0.315445,0.51172,0.700207,0.251091,0.487517,0.724715,0.368666,0.515334,0.0695327,0.240607,0.223263,0.0535769,0.719069,0.237118,0.123901,0.647846,0.367343,0.9114,0.486706,0.633411,0.647509,0.777,0.378165,0.600385,0.367279,0.247262,0.258102,0.114077,0.927865,0.747702,0.920524,0.318098,0.586179,0.940965,0.784861,0.157631,0.647534,0.527297,0.263647,0.401358,0.444171,0.472794,0.31691,0.500908,0.440612,0.813476,0.626305,0.685022,0.00668001,0.467273,0.360425,0.587237,0.102078,0.761633,0.879968,0.58877,0.371724,0.672384,0.584842,0.823126,0.665586,0.290598,0.434921,0.827005,0.553937,0.108046,0.690354,0.544903,0.738151,0.0696504,0.596388,0.413452,0.628038,0.728686,0.599447,0.0908047,0.307301,0.107996,0.293531,0.753462,0.169832,0.40347,0.568381,0.0963621,0.239649,0.776666,0.00614315,0.689701,0.795623,0.817303,0.530718,0.488351,0.000562906,0.79263,0.0824077,0.826496,0.983746,0.546823,0.69576,0.255727,0.0180628,0.758482,0.143926,0.0632707,0.980183,0.783661,0.0490009,0.071286,0.227032,0.66692,0.291752,0.238299,0.281891,0.62241,0.163572,0.799887,0.771433,0.291842,0.222231,0.845885,0.096054,0.0564308,0.685794,0.790693,0.816536,0.136758,0.59881,0.414299,0.956647,0.577997,0.803765,0.952763,0.43509,0.110225,0.890012,0.0455458,0.14434,0.300945,0.383463,0.461238,0.426749,0.0570746,0.676862,0.191221,0.315794,0.502011,0.959203,0.614527,0.681669,0.429947,0.99194,0.113519,0.615536,0.264122,0.572647,0.825303,0.279309,0.152717,0.753345,0.466074,0.573999,0.0282373,0.831963,0.878776,0.0996934,0.873203,0.260025,0.813134,0.338126,0.402362,0.718293,0.169211,0.586689,0.467309,0.0119067,0.463608,0.366383,0.502577,0.778249,0.560641,0.302957,0.469383,0.79257,0.579079,0.236023,0.292188,0.592269,0.272409,0.712922,0.0828853,0.946127,0.181644,0.279852,0.403141,0.319841,0.352331,0.625419,0.255124,0.164495,0.954117,0.150285,0.986636,0.472956,0.896379,0.648865,0.854759,0.429776,0.0989444,0.332659,0.959848,0.0340596,0.0162438,0.1694,0.833148,0.740795,0.84758,0.726598,0.240824,0.935787,0.248083,0.944402,0.537242,0.842135,0.930948,0.105083,0.798375,0.94492,0.630767,0.262347,0.0941744,0.642478,0.0967705,0.778275,0.181754,0.739159,0.0807846,0.70397,0.630931,0.364929,0.820153,0.797091,0.917118,0.840475,0.799493,0.107133,0.990778,0.843094,0.431403,0.873604,0.981471,0.579667,0.194221,0.455746,0.896589,0.208631,0.928778,0.796495,|0.115347,0.31105,0.48653,0.946006,0.953768,0.157319,0.582901,0.295201,0.474719,0.675294,0.406559,0.132336,0.817862,0.822235,0.504046,0.391718,0.277948,0.646492,0.368113,0.692299,0.476826,0.98654,0.122358,0.135333,0.00220203,0.902248,0.933669,0.20607,0.533599,0.568497,0.572666,0.909338,0.987152,0.244946,0.3314,0.121894,0.543296,0.216255,0.98662,0.0480984,0.511972,0.455073,0.358107,0.0126129,0.529846,0.47885,0.0576575,0.865399,0.742418,0.152381,0.36894,0.197942,0.620142,0.0250808,0.321896,0.207949,0.853469,0.490717,0.565169,0.613164,0.763436,0.296771,0.878102,0.895002,0.780348,0.163714,0.881076,0.995337,0.993038,0.809908,0.895704,0.259113,0.401834,0.691033,0.610275,0.716439,0.205906,0.559362,0.724028,0.503205,0.248257,0.311294,0.723669,0.157626,0.983636,0.867503,0.577116,0.729973,0.0502939,0.195352,0.571128,0.778894,0.981129,0.569137,0.928287,0.82964,0.812537,0.467492,0.786973,0.668606,0.407013,0.472682,0.513078,0.131641,0.268996,0.192511,0.735644,0.251226,0.972126,0.650558,0.859331,0.519285,0.370024,0.759171,0.246562,0.915622,0.21435,0.555751,0.411598,0.9028,0.259087,0.298174,0.880537,0.991215,0.455434,0.791914,0.385801,0.488647,0.113503,0.756293,0.00790817,0.465658,0.670055,0.762083,0.56477,0.97312,0.380698,0.345758,0.819328,0.605402,0.687883,0.381844,0.791647,0.753997,0.399168,0.709647,0.997429,0.901022,0.480274,0.405276,0.72419,0.766795,0.52804,0.452916,0.971918,0.868751,0.752294,0.758418,0.608623,0.668623,0.189544,0.599202,0.106368,0.952321,0.443193,0.561501,0.993673,0.905521,0.687769,0.187209,0.999582,0.316247,0.798263,0.988828,0.519654,0.100076,0.64963,0.807248,0.207258,0.621543,0.657361,0.889055,0.338922,0.617336,0.0401827,0.384447,0.0603087,0.167566,0.28671,0.951323,0.45884,0.518916,0.392863,0.76387,0.473087,0.673565,0.293581,0.764294,0.915746,0.857624,0.357565,0.836148,0.203902,0.886484,0.419562,0.0564466,0.569203,0.384857,0.860462,0.0397796,0.11987,0.739735,0.807807,0.948305,0.285762,0.0305117,0.388021,0.582158,0.159504,0.438868,0.427127,0.649135,0.67211,0.940085,0.798943,0.164084,0.310384,0.130355,0.112555,0.999364,0.173979,0.826857,0.886705,0.640822,0.316426,0.930833,0.091489,0.782132,0.67239,0.618793,0.102784,0.478895,0.369623,0.0446576,0.262966,0.534498,0.957232,0.819013,0.0549468,0.84188,0.933175,0.758183,0.377612,0.623342,0.865364,0.852883,0.476309,0.261703,0.768167,0.361638,0.175095,0.200314,0.878687,0.347934,0.953038,0.388355,0.204318,0.87521,0.970929,0.210711,0.910926,0.547061,0.57637,0.270019,0.42204,0.521071,0.536257,0.987936,0.291029,0.748562,0.298082,0.536705,0.53195,0.0569144,0.523918,0.735671,0.56205,0.914666,0.233859,0.437354,0.448747,0.739834,0.322645,0.970263,0.214826,0.0946597,0.917881,0.78639,0.0654838,0.0930253,0.147801,0.861424,0.569633,0.0149262,0.0362267,0.687186,0.511923,0.332787,0.272733,0.411656,0.131889,0.445927,0.185673,0.282102,0.631332,0.850466,0.676221,0.18372,0.785266,0.465138,0.75578,0.139813,0.711136,0.79519,0.240267,0.570406,0.0330448,0.568733,0.1806,0.666458,0.665707,0.00968057,0.848439,0.0692632,0.727135,0.238474,0.0124326,0.463754,0.138603,0.754048,0.551761,0.341424,0.179712,0.991592,0.874483,0.6004,0.370737,0.272693,0.535058,0.51879,0.00182372,0.935037,0.945622,0.0991282,0.125349,0.849004,0.624291,0.782371,0.994966,0.846061,0.604522,0.361486,0.197572,0.376244,0.996399,0.7464,0.522061,0.204337,0.685836,0.823929,0.863744,0.303352,0.482541,0.469414,0.618364,0.714154,0.19552,0.10274,0.743128,0.0311315,0.903303,0.362227,0.264082,0.0868357,0.966794,0.771378,0.925394,0.642896,0.703547,0.442792,0.537498,0.44445,0.677425,0.745119,0.547445,0.164596,0.850046,0.485779,0.704375,0.223963,0.651151,0.664069,0.771221,0.108816,0.271937,0.326702,0.877545,0.755126,0.540642,0.754132,0.154481,0.225868,0.64451,0.0267228,0.927267,0.0202772,0.436724,0.315829,0.521836,0.980587,0.983429,0.647047,0.302654,0.511006,0.268453,0.493995,0.0931895,0.950455,0.336279,0.412842,0.732087,0.355611,0.155017,0.869351,0.396399,0.515746,0.426161,0.409248,0.960967,0.906685,0.466893,0.0567092,0.69828,0.99597,0.707046,0.0450508,0.73932,0.493399,0.956694,0.729013,0.711265,0.68177,0.282647,0.735531,0.104009,0.136501,0.384815,0.925095,0.913566,0.966396,0.388067,0.645577,0.101202,0.945519,0.489844,0.684182,0.342421,0.889732,0.190689,0.412682,0.516189,0.368454,0.585141,0.640367,0.842341,0.240909,0.049615,0.0518706,0.749177,0.312904,0.256283,0.572137,0.458289,0.139732,0.920052,0.0740989,0.242001,0.276122,0.541875,0.213043,0.294455,0.691424,0.987185,0.362523,0.131232,0.330783,0.109283,0.905745,0.85446,0.113857,0.800198,0.0685043,0.899978,0.181688,0.107327,0.901567,0.129025,0.887588,0.620855,0.745618,0.601103,0.668267,0.0152744,0.420396,0.304415,0.354971,0.382655,0.815547,0.230679,0.762375,0.328233,0.475903,0.530431,0.219547,0.205283,0.334277,0.948503,0.411119,0.493523,0.800655,0.172782,0.719218,0.319024,0.828614,0.378228,0.965843,0.294235,0.313178,0.464433,0.361096,0.381656,0.58865,0.807806,0.256802,0.995925,0.356393,0.419368,0.415445,0.605061,0.860424,0.109139,0.171037,0.875704,0.0122198,0.333841,0.406019,0.776152,0.476905,0.382239,0.359686,0.654848,0.613756,0.373553,0.879925,0.110157,0.60131,0.208203,0.323125,0.731151,0.27726,0.664508,0.213422,0.683634,0.765329,0.233243,0.446211,0.95493,0.519667,0.901299,0.489366,0.574862,0.232117,0.677107,0.386496,0.657885,0.0581852,0.955418,0.608222,0.689219,0.0852423,0.652225,0.795305,0.967525,0.739094,0.148323,0.99745,0.292919,0.0206741,0.584026,0.0575798,0.0782163,0.586968,0.761553,0.359501,0.374863,0.487713,0.911328,0.333235,0.021244,0.712477,0.692548,0.65632,0.766883,0.356677,0.934136,0.502185,0.133167,0.688828,0.0840424,0.829073,0.167848,0.933551,0.613839,0.447542,0.909284,0.242297,0.370399,0.493377,0.353206,0.627987,0.971615,0.932833,0.470911,0.00613248,0.87729,0.920941,0.984457,0.390134,0.552509,0.511212,0.655738,0.370483,0.545118,0.000718713,0.421661,0.0184116,0.729148,0.264409,0.458959,0.0362,0.181907,0.385894,0.0338817,0.183816,0.190094,0.152702,0.12384,0.347417,0.743888,0.274727,0.612339,0.684167,0.344985,0.00947934,0.395423,0.919639,0.360611,0.598664,0.593296,0.380538,0.0754142,0.75376,0.100154,0.377374,0.715395,0.557658,0.652055,0.51939,0.421966,0.900708,0.227686,0.148807,0.366955,0.862838,0.967674,0.517137,0.370587,0.14082,0.0103989,0.155972,0.751863,0.231203,0.514178,0.420723,0.867819,0.808779,0.11295,0.695271,0.623333,0.108176,0.370312,0.522275,0.020687,0.795617,0.753744,0.214877,0.857113,0.944793,0.894342,0.82759,0.959566,0.980513,0.467665,0.640641,0.381648,0.0721059,0.27849,0.413763,0.804866,0.715693,0.817406,0.658446,0.326191,0.485316,0.643136,0.903462,0.478353,0.655022,0.619521,0.132886,0.00450176,0.351059,0.677567,0.836289,0.229773,0.207436,0.785252,0.635184,0.133881,0.208107,0.269411,0.669086,0.734183,0.427027,0.228357,0.244227,0.8402,0.0877358,0.123426,0.131849,0.0871903,0.222642,0.16642,0.758399,0.683797,0.973208,0.128113,0.410734,0.413992,0.605068,0.0729292,0.00581968,0.491084,0.367577,0.567623,0.843871,0.497933,0.918661,0.809147,0.526673,0.186903,0.309853,0.974801,0.793114,0.191528,0.606349,0.0553632,0.401444,0.0715476,0.478576,0.829111,0.694292,0.376342,0.985706,0.687485,0.635927,0.872479,0.0587035,0.917978,0.707505,0.92221,0.864975,0.203961,0.767224,0.427521,0.58656,0.621852,0.676725,0.798086,0.53647,0.384798,0.401938,0.131537,0.832653,0.472139,0.468522,0.1269,0.408061,0.844998,0.0589341,0.201361,0.309717,0.786901,0.546449,0.240123,0.933594,0.517809,0.021116,0.371042,0.0111693,0.573021,0.639416,0.2507,0.156376,0.48115,0.0222166,0.649337,0.927304,0.0456198,0.510767,0.892608,0.528506,0.399153,0.75037,0.66381,0.832151,0.0374114,0.504618,0.287294,0.549,0.27519,0.0171974,0.892677,0.445078,0.206083,0.409923,0.4037,0.169981,0.956639,0.623664,0.0961621,0.941482,0.0411854,0.224146,0.852017,0.0900675,0.525809,0.112921,0.00539327,0.633058,0.578571,0.688681,0.792899,0.536545,0.447719,0.543722,0.993147,0.703495,0.651254,0.829627,0.597796,0.739918,0.713696,0.821047,0.0370246,0.116472,0.193019,0.261872,0.00556171,0.859604,0.667392,0.0622989,0.156093,0.0245143,0.579194,0.320803,0.549401,0.841652,0.487702,0.859108,0.950067,0.972263,0.964642,0.430247,0.612297,0.777455,0.908612,0.892136,0.122122,0.62392,0.512644,0.228038,0.236883,0.290528,0.181713,0.923832,0.439144,0.667115,0.620942,0.628904,0.134615,0.560639,0.65973,0.254004,0.160624,0.996751,0.0532669,0.860616,0.752191,0.810217,0.519767,0.138505,0.903259,0.920163,0.621524,0.294571,0.685713,0.740451,0.944184,0.288658,0.269789,0.744656,0.812616,0.37346,0.771913,0.0815417,0.118303,0.403157,0.937887,0.550523,0.342438,0.647584,0.357549,0.545832,0.0385177,0.0841764,0.813821,0.468572,0.425348,0.91147,0.49552,0.988856,0.0242668,0.840163,0.190967,0.888181,0.767001,0.495902,0.780412,0.492551,0.769131,0.965482,0.0897808,0.666371,0.642741,0.914824,0.578181,0.141935,0.305052,0.640327,0.942783,0.478079,0.412124,0.234225,0.0421857,0.804438,0.174672,0.352898,0.526373,0.0401168,0.768418,0.383237,0.803247,0.809683,0.37424,0.00268215,0.897944,0.639529,0.870049,0.513284,0.896724,0.954395,0.035526,0.911104,0.718491,0.968466,0.628476,0.583107,0.342163,0.09066,|0.574322,0.761764,0.0883875,0.693915,0.3708,0.54109,0.801165,0.698004,0.151175,0.0702822,0.245053,0.292576,0.795206,0.227351,0.763014,0.880708,0.16719,0.101259,0.333706,0.398971,0.489695,0.540044,0.0884197,0.994128,0.124849,0.0826439,0.885382,0.785899,0.594428,0.81146,0.947775,0.91821,0.0858789,0.928726,0.445359,0.55789,0.27931,0.747286,0.82203,0.0988277,0.236839,0.195016,0.0987712,0.0167297,0.969497,0.530472,0.0115363,0.0314235,0.532533,0.601476,0.427507,0.0111797,0.553767,0.739609,0.247075,0.481523,0.372665,0.909817,0.017457,0.666475,0.86129,0.816502,0.0386561,0.980804,0.523688,0.173994,0.964624,0.0965849,0.0450216,0.678032,0.514795,0.160553,0.673922,0.609924,0.86439,0.4745,0.890393,0.35482,0.277068,0.972393,0.0991806,0.0862413,0.545507,0.960984,0.545675,0.025968,0.860767,0.883067,0.212858,0.452751,0.310382,0.882252,0.0375609,0.394666,0.626981,0.30249,0.321285,0.981106,0.760132,0.790632,0.79344,0.236679,0.162079,0.0900694,0.0118787,0.140315,0.403668,0.225783,0.851411,0.459257,0.610426,0.689859,0.878984,0.528284,0.813007,0.784032,0.80949,0.0366491,0.558553,0.37112,0.0994852,0.320633,0.0496897,0.174678,0.382298,0.254131,0.484699,0.991479,0.316897,0.00423336,0.511874,0.0695129,0.0763717,0.85101,0.59107,0.30967,0.714726,0.308398,0.0519835,0.403813,0.0736563,0.612302,0.200797,0.874096,0.684883,0.12228,0.753568,0.833464,0.511194,0.755605,0.30967,0.618185,0.518908,0.406107,0.386567,0.849302,0.203576,0.193945,0.862548,0.103884,0.0266251,0.413214,0.465373,0.811369,0.099966,0.444625,0.415331,0.140331,0.48614,0.48481,0.801091,0.129471,0.311822,0.903849,0.652861,0.505195,0.158958,0.661991,0.266789,0.430927,0.856612,0.748645,0.271302,0.947132,0.435235,0.0308892,0.75777,0.862017,0.8879,0.953803,0.846017,0.250044,0.556194,0.892489,0.310039,0.292081,0.561985,0.602229,0.847995,0.918675,0.524773,0.168482,0.846693,0.377527,0.526675,0.031221,0.371155,0.836786,0.157915,0.653783,0.0527275,0.252915,0.746211,0.408914,0.737313,0.886729,0.371366,0.260016,0.137492,0.26414,0.308692,0.366377,0.0912773,0.626005,0.720729,0.793596,0.145028,0.00831831,0.771756,0.826297,0.44846,0.0413231,0.283449,0.894594,0.0681186,0.228863,0.14721,0.657574,0.79655,0.629121,0.687962,0.597111,0.293462,0.958593,0.425563,0.721964,0.0313746,0.441189,0.0119085,0.771342,0.377534,0.069473,0.0718301,0.467397,0.213688,0.670176,0.0160077,0.889363,0.824886,0.702591,0.00413173,0.727887,0.341657,0.424719,0.267846,0.223286,0.0422445,0.151946,0.0227674,0.340633,0.384292,0.621196,0.070332,0.0520341,0.454462,0.452119,0.919608,0.763051,0.0102034,0.808969,0.0470104,0.881165,0.512778,0.203931,0.94044,0.858995,0.381322,0.969246,0.896959,0.761632,0.460608,0.255992,0.366902,0.28696,0.2767,0.566415,0.440714,0.140676,0.918062,0.137994,0.982655,0.321287,0.780912,0.489673,0.12716,0.730551,0.0850706,0.476356,0.961208,0.971698,0.434283,0.744756,0.604656,0.836127,0.492651,0.262378,0.403011,0.316635,0.6815,0.167435,0.497306,0.756342,0.463767,0.640238,0.1954,0.553849,0.701564,6.44326e-05,0.72982,0.817246,0.506859,0.352565,0.980734,0.999638,0.917081,0.616317,0.714611,0.169942,0.29368,0.137881,0.96898,0.382343,0.411678,0.935417,0.587109,0.246113,0.818868,0.936642,0.501961,0.469911,0.943452,0.327366,0.510776,0.210394,0.01441,0.994099,0.556465,0.226262,0.301068,0.383684,0.458726,0.311123,0.651073,0.640011,0.268522,0.753377,0.978871,0.108543,0.479973,0.845045,0.567864,0.105426,0.31437,0.306725,0.646406,0.571577,0.632636,0.403271,0.466252,0.427859,0.920773,0.732469,0.43692,0.647589,0.127086,0.400078,0.975136,0.661421,0.447894,0.414998,0.721791,0.0643817,0.00837767,0.86879,0.891817,0.848795,0.240305,0.508079,0.0444672,0.182811,0.463982,0.104452,0.778324,0.142142,0.669492,0.291978,0.0988318,0.303536,0.125372,0.904412,0.264138,0.705268,0.188412,0.459625,0.71709,0.564003,0.582221,0.811877,0.47558,0.235974,0.354835,0.845798,0.721232,0.691801,0.223759,0.249788,0.785788,0.726613,0.791306,0.505391,0.857695,0.485615,0.139545,0.756041,0.149168,0.75487,0.407806,0.941834,0.72465,0.0325691,0.427298,0.443691,0.280682,0.759574,0.830292,0.144278,0.286697,0.611067,0.290008,0.495356,0.477547,0.238316,0.663561,0.987316,0.842534,0.626593,0.355407,0.590269,0.729563,0.758689,0.0990334,0.820318,0.990199,0.446451,0.0594446,0.352512,0.845707,0.294524,0.766514,0.368232,0.835562,0.779945,0.900167,0.639022,0.887843,0.28134,0.670206,0.431656,0.174026,0.104196,0.928631,0.514889,0.0114644,0.0727404,0.373104,0.13721,0.566444,0.77461,0.537792,0.75213,0.146773,0.383298,0.715713,0.889181,0.889755,0.952106,0.891721,0.666403,0.414911,0.244533,0.504433,0.201101,0.107369,0.984666,0.349595,0.270025,0.743859,0.521151,0.885189,0.173429,0.64092,0.504236,0.523012,0.638323,0.483369,0.44097,0.339716,0.249161,0.632422,0.562623,0.55582,0.503225,0.100582,0.567445,0.0306929,0.088413,0.32076,0.790954,0.310137,0.463689,0.684649,0.0546634,0.415946,0.140471,0.132705,0.477106,0.664514,0.965796,0.423883,0.0450836,0.570955,0.620062,0.737685,0.101001,0.850227,0.969973,0.719553,0.771464,0.712248,0.974239,0.563757,0.945043,0.340521,0.895548,0.518651,0.70419,0.924078,0.419733,0.439442,0.238782,0.130199,0.335819,0.594809,0.628776,0.294542,0.265364,0.949303,0.304794,0.569113,0.445992,0.936966,0.231896,0.240144,0.822267,0.617013,0.757212,0.325347,0.948333,0.69622,0.805433,0.679908,0.315756,0.426581,0.704768,0.719664,0.218964,0.0809397,0.292564,0.4482,0.444391,0.888137,0.322255,0.924412,0.396542,0.480129,0.898824,0.072953,0.436035,0.337591,0.57497,0.847221,0.427067,0.443952,0.441714,0.152856,0.497598,0.345712,0.418125,0.494938,0.454857,0.607937,0.803428,0.289724,0.770747,0.106252,0.716159,0.0716228,0.0843278,0.717174,0.372658,0.44425,0.566496,0.599262,0.692865,0.736826,0.338726,0.961248,0.800525,0.992587,0.526541,0.00222284,0.113656,0.0920216,0.81397,0.843792,0.751319,0.994905,0.24735,0.771756,0.279387,0.734447,0.603226,0.667615,0.913684,0.261418,0.0371245,0.0670876,0.954409,0.759924,0.204135,0.507229,0.0374961,0.684909,0.542076,0.0811077,0.239878,0.549484,0.816695,0.353302,0.518456,0.268713,0.28259,0.00695527,0.443306,0.133834,0.996061,0.250211,0.619573,0.908511,0.969967,0.36633,0.175334,0.56155,0.334139,0.465118,0.923599,0.25621,0.841474,0.431985,0.125744,0.957742,0.512767,0.0484596,0.745397,0.337389,0.0877349,0.0732028,0.678852,0.890109,0.530307,0.610943,0.523697,0.178032,0.251738,0.240623,0.504341,0.384719,0.740258,0.122287,0.802916,0.666206,0.841865,0.976778,0.798508,0.116529,0.924916,0.673884,0.164428,0.579132,0.237098,0.312661,0.781268,0.963048,0.12955,0.180603,0.351353,0.453377,0.579716,0.543671,0.441787,0.0960925,0.148769,0.0584651,0.255536,0.586886,0.738827,0.162072,0.32847,0.971559,0.457129,0.377014,0.525641,0.951325,0.792145,0.458703,0.494502,0.817291,0.0607699,0.305106,0.175139,0.246265,0.101423,0.0481908,0.638769,0.708466,0.319994,0.470698,0.517755,0.402647,0.00445557,0.699417,0.165246,0.415171,0.742223,0.235091,0.40128,0.672281,0.65768,0.763809,0.893231,0.89525,0.535728,0.666055,0.119861,0.13341,0.440015,0.497275,0.0794217,0.628926,0.329826,0.221426,0.867964,0.695198,0.455473,0.496657,0.437489,0.0166324,0.890881,0.839693,0.361841,0.681166,0.430372,0.415348,0.164662,0.254995,0.888627,0.639527,0.687371,0.448827,0.372848,0.752615,0.0630022,0.192859,0.38339,0.854162,0.328377,0.647098,0.345556,0.487828,0.47026,0.073363,0.979396,0.0328352,0.146359,0.485011,0.629276,0.154812,0.0578192,0.725257,0.830385,0.271649,0.775496,0.579196,0.865236,0.887959,0.886787,0.749547,0.130905,0.0692981,0.880389,0.148487,0.872129,0.974154,0.87305,0.0405611,0.797523,0.699418,0.976865,0.166774,0.678066,0.9671,0.390184,0.123511,0.419529,0.44088,0.305636,0.238479,0.1902,0.109515,0.858117,0.581502,0.940305,0.260324,0.303045,0.192753,0.0425829,0.425203,0.127651,0.417695,0.9345,0.472413,0.060923,0.0540447,0.208664,0.237923,0.808095,0.242506,0.506404,0.35145,0.463339,0.935684,0.725961,0.386274,0.736458,0.283327,0.480849,0.122907,0.390235,0.582616,0.0204212,0.558293,0.832341,0.413732,0.264121,0.102644,0.733147,0.221531,0.700792,0.302455,0.778806,0.134497,0.942135,0.739154,0.261742,0.952436,0.0120808,0.146047,0.00280493,0.97201,0.837944,0.144265,0.902939,0.872801,0.692558,0.463099,0.752415,0.270982,0.757022,0.119939,0.867425,0.897924,0.0295257,0.776376,0.326581,0.819923,0.913044,0.67204,0.106004,0.352146,0.232485,0.151328,0.958052,0.353359,0.675852,0.346048,0.359008,0.397261,0.45709,0.251448,0.749692,0.610815,0.699463,0.20449,0.791274,0.277311,0.16238,0.498939,0.3087,0.29403,0.52472,0.0791605,0.915086,0.592392,0.266644,0.154361,0.393526,0.357199,0.560249,0.180936,0.788414,0.334757,0.242236,0.456664,0.985533,0.235187,0.896821,0.61793,0.366894,0.199112,0.566769,0.72938,0.758225,0.958227,0.639779,0.822308,0.140564,0.152771,0.372939,0.643222,0.0110665,0.918198,0.148114,0.859332,0.0141824,0.667446,0.23439,0.077321,0.427936,0.899337,0.169265,0.10148,0.742193,0.183608,0.163033,0.106019,0.826027,0.580995,0.136572,0.98989,0.0785855,0.856102,0.715099,0.622901,0.612454,0.438589,0.191455,0.304364,0.692532,0.489492,0.567352,0.934694,0.879831,0.131915,0.741679,0.304469,0.0161508,0.792851,0.88861,0.339513,0.511238,|0.637133,0.17087,0.862278,0.745961,0.937389,0.0643036,0.87714,0.398736,0.910514,0.717277,0.883276,0.0797377,0.872013,0.107065,0.156613,0.544715,0.345506,0.949327,0.347552,0.339308,0.442704,0.16208,0.318958,0.939705,0.435495,0.208723,0.0927128,0.0326355,0.443975,0.574718,0.575239,0.343998,0.24967,0.168465,0.366874,0.838767,0.499424,0.69495,0.887303,0.97639,0.561712,0.484133,0.268943,0.719614,0.181977,0.7055,0.541674,0.810309,0.980373,0.458094,0.875066,0.535288,0.460021,0.953812,0.668998,0.454272,0.423063,0.675753,0.125541,0.930972,0.151704,0.0165149,0.642504,0.241332,0.806383,0.972781,0.404614,0.60959,0.0186035,0.121826,0.717425,0.788665,0.0160116,0.749618,0.798739,0.389974,0.799074,0.471474,0.863838,0.309289,0.542781,0.754136,0.676158,0.242059,0.304119,0.763836,0.657716,0.117362,0.0685253,0.920018,0.945958,0.565133,0.0816526,0.479819,0.358894,0.350453,0.742461,0.366352,0.991459,0.343953,0.401288,0.0762342,0.215917,0.936849,0.148963,0.523645,0.445874,0.616882,0.776824,0.610488,0.496199,0.00215,0.590239,0.909708,0.512011,0.471215,0.777688,0.934838,0.880323,0.871292,0.919894,0.727722,0.857732,0.821379,0.921564,0.523648,0.419498,0.958473,0.71819,0.460202,0.515842,0.0189399,0.885573,0.136093,0.428499,0.0766978,0.312494,0.645493,0.0251905,0.996512,0.0845456,0.247576,0.551669,0.7631,0.788432,0.398001,0.196788,0.643344,0.692809,0.359682,0.220525,0.37802,0.88935,0.017032,0.0218354,0.421101,0.656516,0.478772,0.701308,0.295919,0.892529,0.733509,0.250087,0.318778,0.315458,0.406762,0.298644,0.041435,0.905055,0.479596,0.472181,0.0761392,0.704553,0.740322,0.421444,0.9324,0.102818,0.0294673,0.989629,0.36806,0.147393,0.253951,0.172551,0.455526,0.468782,0.36542,0.0109117,0.191537,0.899881,0.674066,0.667528,0.782663,0.927557,0.346934,0.918409,0.127151,0.739679,0.0121478,0.715194,0.800673,0.586371,0.251983,0.877891,0.543827,0.64754,0.295127,0.29327,0.351678,0.850505,0.945394,0.717394,0.899091,0.142305,0.510965,0.674008,0.845868,0.00748408,0.508501,0.93304,0.901979,0.460385,0.974124,0.737036,0.540077,0.00646389,0.524055,0.152929,0.0814628,0.777354,0.92451,0.287094,0.704184,0.223886,0.678003,0.0164515,0.0960161,0.321738,0.987619,0.658244,0.953074,0.544846,0.820953,0.602429,0.637192,0.347138,0.99002,0.426756,0.217035,0.790131,0.465231,0.361864,0.450016,0.413015,0.462242,0.719376,0.368575,0.631861,0.882362,0.670461,0.538791,0.529951,0.0504675,0.168374,0.447736,0.78651,0.275319,0.402469,0.212696,0.423418,0.202668,0.57357,0.243157,0.635924,0.478697,0.0690907,0.191641,0.282193,0.88486,0.717447,0.0406359,0.227367,0.984189,0.189971,0.691735,0.312026,0.205227,0.682123,0.605571,0.728727,0.923887,0.0218751,0.828164,0.0949396,0.0964994,0.326607,0.907632,0.144265,0.792445,0.774805,0.820959,0.974473,0.00205117,0.474865,0.767796,0.610063,0.822182,0.297193,0.986846,0.258078,0.653282,0.894754,0.397473,0.892139,0.461113,0.0676029,0.990905,0.825137,0.659525,0.945927,0.802403,0.854691,0.0558888,0.976966,0.826061,0.522588,0.679737,0.882832,0.362503,0.373862,0.655329,0.920238,0.700812,0.0644704,0.473083,0.98743,0.24393,0.334869,0.0466806,0.449398,0.564024,0.914633,0.158554,0.781312,0.37414,0.923928,0.76901,0.956522,0.889058,0.971767,0.00186813,0.44121,0.27118,0.0319221,0.154,0.415441,0.84774,0.45591,0.992012,0.667122,0.257339,0.598365,0.304013,0.0909302,0.135672,0.366797,0.551293,0.701484,0.944518,0.0333872,0.105592,0.41177,0.474987,0.815635,0.99116,0.0972952,0.247052,0.735458,0.354026,0.106998,0.881117,0.0733838,0.388116,0.95623,0.950023,0.813186,0.942968,0.174939,0.602125,0.727587,0.566352,0.269293,0.943061,0.00088805,0.377325,0.19367,0.419949,0.831655,0.431385,0.342058,0.732571,0.911437,0.46945,0.760871,0.73242,0.223706,0.0916826,0.525779,0.739884,0.751097,0.218457,0.748477,0.103255,0.512154,0.33973,0.798835,0.154063,0.454094,0.404778,0.233497,0.75654,0.000941515,0.373178,0.0523785,0.0310868,0.388827,0.760342,0.866283,0.187123,0.605582,0.0708365,0.695947,0.926303,0.574059,0.80504,0.792759,0.620713,0.749247,0.0876386,0.518814,0.994305,0.0738605,0.421863,0.22286,0.0147923,0.641755,0.382593,0.929892,0.0228969,0.0838249,0.424284,0.444481,0.672053,0.125818,0.333377,0.965274,0.0314482,0.278781,0.0549477,0.302633,0.61257,0.832226,0.656793,0.162991,0.266763,0.444941,0.177733,0.800982,0.539987,0.03944,0.830139,0.636234,0.802085,0.77118,0.917867,0.103603,0.478666,0.722673,0.943558,0.981956,0.0773757,0.687319,0.831613,0.204944,0.500299,0.42374,0.921709,0.836866,0.0473278,0.0734385,0.284706,0.61425,0.974219,0.0493007,0.950607,0.363079,0.23446,0.106271,0.785287,0.00704557,0.372027,0.954821,0.869579,0.71979,0.721391,0.495758,0.75182,0.397086,0.0517014,0.270061,0.626778,0.517928,0.0296437,0.643467,0.122421,0.135022,0.275104,0.657486,0.185455,0.264521,0.710203,0.694971,0.585998,0.640398,0.762818,0.272896,0.313101,0.0782462,0.813305,0.632427,0.778189,0.297757,0.574721,0.789241,0.844078,0.868688,0.336546,0.85619,0.333541,0.502879,0.93026,0.56864,0.128822,0.629075,0.58344,0.624049,0.944961,0.110386,0.567004,0.190179,0.095241,0.477792,0.0175356,0.185489,0.283503,0.314695,0.611977,0.281534,0.613853,0.355569,0.209613,0.747501,0.145162,0.824768,0.886326,0.663493,0.238755,0.316682,0.0925625,0.167401,0.677556,0.952041,0.0005005,0.973908,0.275228,0.0893364,0.120213,0.755162,0.0571439,0.736696,0.305346,0.564549,0.704527,0.366198,0.904173,0.739216,0.635236,0.304098,0.365364,0.375858,0.0397384,0.186208,0.920966,0.296238,0.504209,0.589485,0.284235,0.23633,0.831845,0.803379,0.875218,0.321249,0.210827,0.70551,0.118165,0.878471,0.0300387,0.293824,0.170533,0.993214,0.408324,0.31788,0.5782,0.712617,0.0557158,0.641501,0.227051,0.0911826,0.105391,0.833317,0.521587,0.804025,0.130355,0.877632,0.532849,0.8274,0.179132,0.197608,0.679829,0.399188,0.918232,0.178993,0.778756,0.452886,0.599989,0.569973,0.856586,0.00849724,0.0278366,0.192918,0.633931,0.140828,0.148177,0.900607,0.691645,0.639308,0.672925,0.930441,0.0705603,0.0037201,0.358201,0.289512,0.224699,0.0975746,0.925963,0.166611,0.396811,0.405068,0.557501,0.286752,0.360936,0.464575,0.0569857,0.206432,0.0371687,0.46406,0.854728,0.154927,0.935932,0.385159,0.82239,0.936866,0.315101,0.582402,0.345979,0.209835,0.485251,0.350791,0.340211,0.426693,0.707868,0.138533,0.928192,0.814342,0.75921,0.725339,0.125221,0.18105,0.916983,0.456003,0.870637,0.831826,0.0359448,0.730825,0.725519,0.537455,0.239378,0.57583,0.216184,0.754993,0.0524504,0.659561,0.354257,0.0801792,0.665497,0.015393,0.725288,0.831171,0.319347,0.927312,0.223883,0.885418,0.0294561,0.988918,0.344785,0.837111,0.577058,0.0147238,0.778018,0.432558,0.449567,0.402563,0.759383,0.783135,0.345436,0.395863,0.434631,0.28072,0.690032,0.220553,0.670013,0.267897,0.460885,0.884683,0.987025,0.0732094,0.73092,0.687501,0.571056,0.562269,0.279426,0.157785,0.0672212,0.0234902,0.213922,0.261313,0.0488753,0.723292,0.325959,0.586665,0.662231,0.379107,0.136568,0.856114,0.726876,0.788077,0.903466,0.907074,0.579471,0.397497,0.137269,0.781916,0.19356,0.331935,0.261315,0.0482496,0.378417,0.0575501,0.265543,0.756202,0.209283,0.185026,0.0752034,0.535359,0.230079,0.605211,0.661838,0.0596694,0.08837,0.137259,0.178508,0.739851,0.0735385,0.620152,0.475773,0.897038,0.130181,0.119797,0.611141,0.84279,0.744189,0.966243,0.747149,0.188254,0.506838,0.527207,0.261441,0.460853,0.867683,0.632752,0.12543,0.323212,0.0721713,0.392009,0.0580195,0.178264,0.675082,0.899349,0.978565,0.902,0.498512,0.407805,0.0094285,0.612122,0.0148558,0.71242,0.301003,0.758318,0.943872,0.392559,0.76511,0.389104,0.887492,0.6988,0.235341,0.192767,0.654113,0.907945,0.24462,0.0320572,0.254613,0.774913,0.188787,0.198296,0.282065,0.652968,0.888908,0.666733,0.0047459,0.920421,0.934192,0.875364,0.890113,0.796216,0.966391,0.358686,0.637776,0.69503,0.940449,0.237081,0.0406302,0.736952,0.369328,0.382283,0.655103,0.983675,0.280535,0.905516,0.944509,0.331231,0.366205,0.343865,0.469925,0.905233,0.917248,0.147062,0.373859,0.24451,0.314297,0.864148,0.903321,0.617556,0.368808,0.204153,0.315255,0.905724,0.797895,0.905865,0.516214,0.531868,0.855507,0.537686,0.670818,0.139046,0.315014,0.424041,0.380958,0.452581,0.94016,0.00447977,0.718948,0.440086,0.595202,0.312501,0.863676,0.542402,0.821416,0.208242,0.482279,0.852345,0.976115,0.286733,0.570834,0.640901,0.0345927,0.297932,0.411742,0.365582,0.0431156,0.0237374,0.509096,0.788143,0.316427,0.359763,0.46711,0.682619,0.367153,0.778951,0.410697,0.81255,0.513057,0.416317,0.966254,0.692524,0.492906,0.0884892,0.517097,0.763294,0.24701,0.791375,0.548869,0.074248,0.723341,0.518338,0.140113,0.230318,0.438204,0.898616,0.0409042,0.750319,0.593775,0.54033,0.833408,0.290865,0.605971,0.897731,0.1876,0.801965,0.883726,0.181753,0.153174,0.603362,0.00809276,0.568167,0.660296,0.605142,0.0527907,0.0352393,0.323988,0.797654,0.695627,0.0660114,0.671191,0.572174,0.259607,0.212203,0.620282,0.20307,0.849713,0.930508,0.51588,0.355919,0.165243,0.280787,0.739049,0.505292,0.647201,0.720544,0.575362,0.979373,0.675284,0.831489,0.332368,0.374951,0.890343,0.515962,0.055078,0.706989,0.577802,0.860511,0.65742,0.26191,0.307742,0.701876,0.480602,0.21963,0.605979,0.301786,0.16255,0.828976,0.50936,|0.951989,0.340046,0.398463,0.395591,0.462337,0.832594,0.683302,0.392039,0.0790041,0.0728401,0.728362,0.293361,0.0520619,0.607144,0.790716,0.892887,0.839989,0.992913,0.617503,0.683642,0.534806,0.504214,0.250378,0.552299,0.856152,0.0899112,0.51054,0.169667,0.171113,0.539051,0.464341,0.921709,0.201418,0.748289,0.216971,0.000899255,0.33127,0.0383514,0.435118,0.506542,0.293811,0.783705,0.397459,0.779941,0.603015,0.0257152,0.714601,0.519644,0.851679,0.562837,0.803135,0.749202,0.53295,0.709458,0.789854,0.755494,0.441714,0.954748,0.129012,0.0610734,0.56054,0.955827,0.46053,0.957295,0.59704,0.357097,0.578279,0.57033,0.388572,0.935839,0.151441,0.865932,0.174565,0.378562,0.141653,0.874344,0.393537,0.861324,0.797336,0.439046,0.167882,0.483266,0.200014,0.128042,0.900733,0.292158,0.958714,0.0871277,0.281205,0.103563,0.921854,0.882798,0.231132,0.0203294,0.0146497,0.0811347,0.302838,0.122797,0.945194,0.4429,0.802137,0.487756,0.290998,0.363881,0.682707,0.874816,0.478404,0.851746,0.660071,0.00757003,0.526354,0.115586,0.469731,0.395486,0.782967,0.82128,0.361601,0.779538,0.488439,0.473516,0.491821,0.176963,0.530984,0.34808,0.227104,0.316619,0.320414,0.787052,0.711554,0.349438,0.255429,0.611609,0.103197,0.0641189,0.363677,0.717339,0.500099,0.670987,0.15853,0.660373,0.41344,0.0701529,0.538826,0.512132,0.993646,0.802185,0.638373,0.578738,0.17414,0.849679,0.564428,0.0805304,0.650993,0.973068,0.137256,0.227685,0.754214,0.899911,0.490594,0.800518,0.038477,0.311553,0.216802,0.130432,0.508485,0.946811,0.78848,0.997491,0.938033,0.526947,0.739043,0.53073,0.557657,0.115088,0.255505,0.423546,0.735694,0.502228,0.960514,0.284396,0.842653,0.0975977,0.0298606,0.386453,0.149971,0.450553,0.515724,0.606849,0.0567965,0.855422,0.766213,0.158324,0.649802,0.0903702,0.777773,0.459551,0.0864723,0.683209,0.508131,0.326463,0.793747,0.953465,0.625125,0.38743,0.359268,0.856894,0.498755,0.477147,0.729598,0.0435612,0.279188,0.957093,0.706537,0.680082,0.657052,0.465773,0.724483,0.454434,0.313244,0.821024,0.92027,0.160743,0.11021,0.547205,0.762593,0.068361,0.365021,0.0690085,0.789883,0.346197,0.823119,0.924479,0.276726,0.761967,0.114364,0.408582,0.858258,0.804187,0.734116,0.257698,0.196296,0.456969,0.65257,0.692679,0.285281,0.524328,0.703246,0.43017,0.51141,0.899665,0.247486,0.996733,0.512303,0.761344,0.283746,0.863082,0.12267,0.871811,0.124486,0.656648,0.722009,0.246756,0.802372,0.443564,0.429478,0.0613174,0.61214,0.250728,0.54806,0.56509,0.339157,0.284398,0.458164,0.642578,0.684507,0.386837,0.898591,0.119462,0.934011,0.928469,0.231871,0.342689,0.567518,0.634457,0.892728,0.270489,0.642479,0.252204,0.767713,0.815695,0.932392,0.033161,0.628263,0.45951,0.516392,0.0926976,0.0746796,0.657065,0.950307,0.128896,0.502623,0.170944,0.7987,0.295226,0.85877,0.832437,0.403362,0.0767345,0.856994,0.308721,0.337763,0.170344,0.903621,0.837928,0.782186,0.0969092,0.663841,0.409909,0.878263,0.985879,0.836085,0.502161,0.807855,0.418556,0.201381,0.723909,0.557104,0.856474,0.114235,0.987238,0.917644,0.601151,0.459606,0.779521,0.0434931,0.367507,0.851635,0.981182,0.810309,0.676481,0.0113675,0.152037,0.336154,0.415175,0.935659,0.197477,0.97508,0.764351,0.471583,0.697814,0.432001,0.405757,0.903659,0.555349,0.221207,0.855768,0.196306,0.702365,0.0618615,0.990375,0.907013,0.126244,0.841757,0.192164,0.820642,0.273993,0.0253159,0.441783,0.309028,0.490531,0.96074,0.279193,0.0106491,0.833116,0.289844,0.555919,0.145653,0.114737,0.721557,0.933825,0.917532,0.916341,0.565208,0.161366,0.177569,0.464214,0.821521,0.72619,0.380273,0.725748,0.0877743,0.47224,0.110235,0.655239,0.853873,0.991957,0.364203,0.612421,0.233799,0.566892,0.0109461,0.114165,0.553693,0.768495,0.710161,0.28862,0.352317,0.347798,0.876685,0.143685,0.795587,0.730509,0.444225,0.771946,0.465703,0.853002,0.503743,0.431245,0.853848,0.592332,0.931485,0.210329,0.809731,0.537571,0.558469,0.0665132,0.74396,0.905414,0.648199,0.61492,0.24925,0.348598,0.6341,0.765792,0.952865,0.834723,0.421966,0.182834,0.816334,0.349953,0.164211,0.630653,0.544812,0.317175,0.568836,0.250146,0.552378,0.317767,0.800908,0.569256,0.90206,0.10902,0.838219,0.0429683,0.49372,0.245303,0.965356,0.248394,0.337936,0.730649,0.567526,0.579199,0.947321,0.135525,0.170988,0.0869669,0.461544,0.746532,0.914154,0.286513,0.201158,0.754692,0.837699,0.145499,0.209672,0.250367,0.085068,0.366965,0.799616,0.184892,0.397132,0.153738,0.776814,0.302596,0.571864,0.783387,0.480792,0.813698,0.596613,0.667407,0.401355,0.581598,0.831678,0.966493,0.0601894,0.867946,0.662454,0.110489,0.356469,0.318332,0.0844812,0.0323024,0.995693,0.229416,0.00540829,0.516927,0.711386,0.0138973,0.657882,0.398843,0.491065,0.71508,0.136521,0.0430348,0.874379,0.928973,0.539935,0.0166429,0.348772,0.711268,0.263827,0.835857,0.501101,0.435332,0.115415,0.452528,0.722398,0.354309,0.0534334,0.644946,0.111364,0.163955,0.466074,0.935569,0.82167,0.410419,0.223929,0.56561,0.850265,0.375408,0.0182731,0.744557,0.501637,0.198641,0.318331,0.281066,0.174282,0.0525815,0.756238,0.767598,0.0691245,0.0517394,0.391961,0.136085,0.946423,0.825859,0.941393,0.981408,0.178392,0.864682,0.636392,0.476847,0.874312,0.341018,0.0707361,0.195451,0.968621,0.221644,0.787192,0.294114,0.596284,0.527088,0.32891,0.761288,0.3142,0.46567,0.268922,0.368737,0.170588,0.158173,0.460633,0.078291,0.904941,0.970215,0.385955,0.791695,0.694326,0.127341,0.262176,0.820305,0.906535,0.497041,0.624261,0.438834,0.649532,0.793469,0.107668,0.476784,0.634399,0.147911,0.416036,0.738535,0.730438,0.787099,0.791867,0.036748,0.156804,0.915973,0.480895,0.45635,0.00474954,0.581526,0.508937,0.484312,0.0155616,0.960236,0.217256,0.804551,0.209957,0.564599,0.799643,0.923807,0.600527,0.338115,0.12918,0.996037,0.744387,0.253229,0.992281,0.261657,0.538435,0.319518,0.943219,0.208013,0.13767,0.900788,0.365915,0.643089,0.365278,0.048805,0.609006,0.346085,0.84728,0.237093,0.486391,0.758882,0.974589,0.292053,0.118998,0.144419,0.962679,0.957191,0.829664,0.514168,0.06688,0.873852,0.624696,0.732423,0.117827,0.0665411,0.638214,0.555293,0.677005,0.457944,0.03267,0.508151,0.433279,0.753475,0.169221,0.0840144,0.176336,0.476283,0.129855,0.542699,0.42547,0.600653,0.430908,0.129402,0.88554,0.928769,0.624851,0.172372,0.130718,0.796683,0.293575,0.49695,0.674073,0.740952,0.253551,0.685615,0.874848,0.254223,0.689156,0.379428,0.7913,0.824047,0.436469,0.909823,0.68726,0.704131,0.208043,0.697693,0.553965,0.277865,0.609233,0.463555,0.00238937,0.756194,0.413106,0.469756,0.883826,0.533754,0.376043,0.612889,0.328113,0.798233,0.712986,0.525765,0.404158,0.559561,0.362929,0.704706,0.137409,0.758047,0.956747,0.107904,0.252407,0.888026,0.0109664,0.706505,0.588694,0.887293,0.258086,0.470717,0.587716,0.863725,0.090548,0.361876,0.922602,0.122163,0.405307,0.430571,0.820576,0.501417,0.00229931,0.0369603,0.908029,0.388047,0.591658,0.442609,0.156376,0.793999,0.591657,0.389074,0.341758,0.258428,0.0747263,0.327875,0.857431,0.713369,0.348074,0.958054,0.396598,0.587801,0.18777,0.261414,0.455271,0.53631,0.705777,0.49214,0.222203,0.757338,0.0016802,0.59028,0.987773,0.0498396,0.924595,0.69543,0.402722,0.628483,0.74739,0.455769,0.0382355,0.372347,0.0787009,0.6544,0.364398,0.738585,0.153837,0.480421,0.141644,0.942626,0.048243,0.70593,0.655643,0.248529,0.884919,0.745197,0.662179,0.161304,0.544497,0.125764,0.453699,0.0232273,0.81368,0.147404,0.490098,0.00425839,0.497241,0.205528,0.737926,0.124235,0.0735118,0.554239,0.754173,0.436686,0.829188,0.876701,0.171985,0.0371391,0.306739,0.804283,0.336087,0.659655,0.885949,0.793241,0.13382,0.961561,0.69226,0.0877133,0.1047,0.848559,0.457874,0.0137388,0.947203,0.7925,0.322143,0.628405,0.89533,0.979923,0.902329,0.207245,0.877152,0.512186,0.539064,0.321738,0.540707,0.879776,0.00373054,0.609098,0.354608,0.452485,0.196063,0.904645,0.740853,0.635812,0.600546,0.470705,0.564069,0.478032,0.235324,0.214001,0.0498104,0.349349,0.393181,0.214038,0.0334341,0.292495,0.956647,0.404959,0.233633,0.790144,0.70991,0.0258101,0.726234,0.417349,0.684527,0.0161386,0.194743,0.380087,0.729241,0.0505496,0.219181,0.88027,0.0577774,0.183283,0.205659,0.383059,0.174135,0.6801,0.393074,0.287236,0.858059,0.0270586,0.749696,0.222768,0.750889,0.794499,0.0806497,0.549186,0.291422,0.817139,0.0684184,0.897675,0.245281,0.0836484,0.640821,0.314612,0.103593,0.535575,0.00194651,0.351146,0.73866,0.143942,0.405681,0.0537201,0.881335,0.868361,0.817347,0.402896,0.368449,0.861315,0.439191,0.537843,0.783578,0.658744,0.504477,0.0168196,0.391286,0.244511,0.249058,0.768914,0.908478,0.0747218,0.558118,0.898086,0.160698,0.803651,0.620453,0.715894,0.836549,0.14728,0.586509,0.130118,0.107984,0.394612,0.259619,0.472278,0.999333,0.0671479,0.178699,0.182012,0.687577,0.583815,0.227401,0.0679069,0.588651,0.41279,0.499209,0.603494,0.829611,0.985749,0.877424,0.944631,0.445173,0.777204,0.761636,0.0692175,0.30377,0.0502146,0.622837,0.601289,0.451046,0.0633371,0.272878,0.335449,0.441806,0.87045,0.363792,0.126351,0.425982,0.830655,0.196447,0.727297,0.277463,0.227439,0.674055,0.00924563,0.306852,0.948758,0.634661,0.739419,0.343643,0.0132714,0.823154,0.960696,0.819423,0.61697,0.145526,0.0728744,|0.29111,0.5621,0.754635,0.833019,0.401959,0.585089,0.733389,0.304026,0.603645,0.352482,0.011222,0.363242,0.56441,0.105628,0.0723803,0.944955,0.757473,0.786919,0.926402,0.34516,0.194347,0.770705,0.43618,0.083767,0.891226,0.758653,0.329363,0.376775,0.527391,0.90128,0.666399,0.683556,0.922195,0.195287,0.967901,0.0650942,0.0613766,0.9837,0.428129,0.952513,0.936285,0.885526,0.305171,0.248274,0.346804,0.0138917,0.484716,0.316679,0.449476,0.08996,0.274167,0.134889,0.626658,0.346983,0.980778,0.489115,0.441698,0.0820536,0.891054,0.380185,0.457492,0.106598,0.823315,0.924295,0.884283,0.260569,0.98438,0.932095,0.00425625,0.214881,0.0845529,0.642866,0.221698,0.744597,0.932794,0.220924,0.882725,0.782681,0.217582,0.219642,0.246553,0.128749,0.330164,0.874743,0.696629,0.94257,0.715862,0.266812,0.384762,0.0046708,0.597117,0.646272,0.800846,0.121379,0.144826,0.83049,0.497563,0.850579,0.447582,0.68418,0.775269,0.534903,0.927558,0.713139,0.67285,0.742248,0.968172,0.603886,0.0810801,0.542336,0.877951,0.52525,0.438359,0.0784033,0.774193,0.00186026,0.453369,0.721051,0.90288,0.998132,0.571066,0.80411,0.237291,0.525482,0.139963,0.857658,0.198578,0.890302,0.974147,0.264734,0.448347,0.915919,0.0481244,0.111088,0.651368,0.598633,0.142922,0.067646,0.9608,0.826951,0.413169,0.534968,0.765839,0.500404,0.657794,0.20184,0.559275,0.670806,0.825019,0.488184,0.651182,0.514299,0.112029,0.0230101,0.767725,0.696666,0.0744746,0.891074,0.575868,0.605223,0.641595,0.210787,0.996234,0.607552,0.246583,0.694259,0.461851,0.622606,0.502606,0.716966,0.389159,0.188051,0.261156,0.670399,0.176657,0.479687,0.998381,0.109485,0.777975,0.918865,0.0666382,0.707986,0.569094,0.706798,0.997035,0.669229,0.249154,0.545846,0.348397,0.463722,0.696081,0.773083,0.367445,0.0710803,0.735942,0.657268,0.158247,0.955106,0.37894,0.705474,0.714292,0.778225,0.649655,0.79122,0.791591,0.489972,0.951367,0.259788,0.699857,0.0645227,0.37099,0.675763,0.880366,0.328832,0.424552,0.000639796,0.514684,0.423899,0.398066,0.344362,0.0247489,0.20444,0.971752,0.844979,0.57802,0.255167,0.139004,0.843642,0.468787,0.418513,0.36223,0.886913,0.16919,0.205618,0.888093,0.0843349,0.936779,0.121743,0.967217,0.835189,0.196511,0.897294,0.88502,0.614668,0.311287,0.648782,0.0863621,0.699755,0.102206,0.550447,0.574439,0.0218519,0.384903,0.441282,0.397563,0.37008,0.323287,0.693468,0.0652567,0.577984,0.366556,0.925021,0.919333,0.533454,0.305029,0.0122517,0.821503,0.514915,0.707255,0.848323,0.732592,0.905254,0.13924,0.989274,0.238787,0.163317,0.567579,0.726041,0.0156552,0.316679,0.802492,0.518339,0.467515,0.405461,0.643973,0.302602,0.0212644,0.0263725,0.784714,0.925017,0.437147,0.387074,0.628302,0.111393,0.0273127,0.570056,0.868939,0.359384,0.22792,0.972577,0.104602,0.858975,0.748545,0.368829,0.619567,0.79476,0.900858,0.0813957,0.570801,0.971744,0.313389,0.217518,0.146977,0.88693,0.43176,0.745312,0.360932,0.307999,0.68706,0.123074,0.438736,0.944752,0.332349,0.130113,0.864024,0.29171,0.442807,0.518535,0.920833,0.62876,0.934798,0.980133,0.0324351,0.826468,0.2618,0.935272,0.127093,0.396151,0.0594601,0.5172,0.64046,0.125852,0.0268989,0.00359684,0.278436,0.0149038,0.705547,0.540948,0.0975295,0.0729319,0.137144,0.167505,0.070312,0.569476,0.767636,0.561096,0.912223,0.494631,0.171398,0.972317,0.586668,0.792743,0.668551,0.963902,0.487858,0.652177,0.103079,0.725029,0.60363,0.753675,0.129832,0.0749407,0.207809,0.494738,0.320491,0.705513,0.112217,0.131233,0.24904,0.156364,0.2236,0.915255,0.0364436,0.854055,0.0946485,0.954318,0.641992,0.0879458,0.0510189,0.32294,0.522642,0.95921,0.0493966,0.928163,0.523082,0.325688,0.256053,0.449525,0.984291,0.445448,0.463118,0.697645,0.850663,0.842455,0.762251,0.312642,0.104693,0.0447589,0.258461,0.491843,0.450096,0.531263,0.984107,0.0370377,0.648739,0.56725,0.501877,0.035767,0.976131,0.332785,0.509115,0.626185,0.339357,0.233163,0.431641,0.0292062,0.383169,0.401443,0.426956,0.705102,0.148036,0.790972,0.87636,0.313937,0.352905,0.755768,0.375157,0.198352,0.26804,0.783029,0.818663,0.157702,0.221738,0.703479,0.285627,0.025443,0.755187,0.533906,0.900343,0.949555,0.70943,0.727512,0.169291,0.905123,0.435747,0.716848,0.213731,0.168639,0.777949,0.260937,0.653411,0.0564618,0.98939,0.674198,0.26389,0.835348,0.556417,0.617508,0.871962,0.769887,0.855693,0.66923,0.516196,0.329393,0.239932,0.341802,0.871019,0.832193,0.362982,0.771966,0.708242,0.480549,0.88175,0.384229,0.336897,0.604846,0.488385,0.526219,0.970328,0.0611479,0.0367054,0.379404,0.0480762,0.147373,0.195423,0.325664,0.748606,0.228794,0.00910842,0.678615,0.811471,0.183047,0.651831,0.387832,0.562371,0.959851,0.633988,0.515761,0.243826,0.310189,0.624913,0.0434535,0.0513009,0.969746,0.13592,0.890647,0.542596,0.755333,0.940572,0.187364,0.57354,0.260458,0.8286,0.923666,0.69495,0.420669,0.807701,0.382636,0.517766,0.157048,0.201407,0.930091,0.51296,0.4831,0.284174,0.941027,0.210691,0.311541,0.484295,0.424619,0.661628,0.218034,0.117389,0.352817,0.300701,0.28309,0.424071,0.644055,0.596532,0.377988,0.98147,0.654064,0.818799,0.54856,0.630225,0.943884,0.152837,0.806955,0.910048,0.356969,0.0864873,0.606921,0.727126,0.323789,0.258307,0.0887073,0.189968,0.274646,0.0315316,0.845884,0.292591,0.233972,0.692307,0.479756,0.788308,0.342297,0.478632,0.182132,0.776317,0.717501,0.674127,0.617127,0.829044,0.0297535,0.610609,0.528566,0.00150198,0.52438,0.120651,0.925745,0.0300285,0.982767,0.84836,0.640389,0.522939,0.853592,0.852684,0.39246,0.823897,0.975739,0.408534,0.65485,0.918066,0.819167,0.709202,0.129521,0.0652149,0.607787,0.187197,0.0262316,0.7117,0.332061,0.352104,0.149363,0.634857,0.909585,0.287066,0.365643,0.128541,0.410155,0.45464,0.678551,0.746077,0.216627,0.00628877,0.869183,0.442285,0.6482,0.14208,0.435259,0.341946,0.715722,0.279548,0.573086,0.856428,0.936219,0.13868,0.443711,0.441985,0.21904,0.245474,0.617751,0.569573,0.186224,0.276622,0.678754,0.727732,0.261069,0.625317,0.571101,0.145397,0.154613,0.887671,0.467992,0.985497,0.266135,0.376748,0.670525,0.89207,0.359584,0.306045,0.97369,0.722713,0.62407,0.113321,0.973156,0.539225,0.811212,0.117131,0.372581,0.304393,0.507897,0.141924,0.52976,0.990456,0.457558,0.912834,0.0757405,0.843284,0.292565,0.81224,0.639451,0.0465021,0.0372466,0.653164,0.0673434,0.593427,0.858142,0.562365,0.858346,0.895649,0.814202,0.467833,0.757684,0.242678,0.634009,0.157523,0.749226,0.627782,0.428698,0.352922,0.668353,0.315345,0.435082,0.855914,0.317056,0.0456797,0.746438,0.318266,0.654418,0.0654483,0.472178,0.804821,0.146961,0.273476,0.117579,0.588059,0.699274,0.512262,0.134572,0.167363,0.754817,0.189364,0.374906,0.654981,0.709446,0.240164,0.708657,0.821981,0.377563,0.286102,0.144544,0.0793119,0.882207,0.65448,0.245134,0.308147,0.598461,0.741156,0.895431,0.766091,0.664213,0.620692,0.51162,0.458045,0.357456,0.784517,0.625454,0.598828,0.753242,0.475556,0.820938,0.829394,0.387172,0.0747175,0.534316,0.753158,0.893454,0.288804,0.783365,0.209384,0.194462,0.00920272,0.997348,0.99297,0.428559,0.0784162,0.471117,0.85039,0.941743,0.118643,0.351901,0.505926,0.339686,0.11756,0.573731,0.549742,0.577742,0.631098,0.564321,0.543524,0.551841,0.524471,0.208549,0.796512,0.889058,0.84884,0.100433,0.917794,0.60581,0.496867,0.936517,0.539833,0.115097,0.424028,0.684054,0.983412,0.546372,0.806399,0.651421,0.401748,0.338016,0.778088,0.317045,0.135435,0.26907,0.248171,0.148944,0.940965,0.110322,0.120764,0.943153,0.172617,0.554128,0.0706361,0.774423,0.782802,0.529839,0.504076,0.0852593,0.301768,0.542287,0.402856,0.960472,0.523307,0.883049,0.617277,0.252433,0.0243325,0.652147,0.0318329,0.865468,0.177769,0.310486,0.641934,0.797699,0.712599,0.205771,0.74132,0.571282,0.0681649,0.900161,0.256076,0.212394,0.82234,0.284915,0.632825,0.778715,0.239995,0.466996,0.995201,0.859362,0.227454,0.736,0.508529,0.0870824,0.399811,0.186852,0.851269,0.426561,0.411183,0.824882,0.504412,0.289814,0.402924,0.250277,0.592223,0.171064,0.330884,0.0310596,0.437324,0.706176,0.532715,0.650392,0.356228,0.562575,0.887051,0.554652,0.95337,0.330704,0.605224,0.937533,0.815374,0.0364782,0.193503,0.96439,0.256991,0.910622,0.836567,0.0382389,0.674229,0.656918,0.781612,0.366646,0.847145,0.927156,0.280221,0.0634954,0.235863,0.882442,0.280796,0.256949,0.276637,0.0736077,0.692899,0.515988,0.880471,0.93988,0.00843221,0.522608,0.35356,0.978217,0.500175,0.752235,0.796313,0.698165,0.903782,0.40705,0.409417,0.574557,0.309487,0.92938,0.522198,0.677713,0.705616,0.0680437,0.0819862,0.143152,0.365876,0.921237,0.0606297,0.486107,0.153844,0.263954,0.507249,0.633147,0.773464,0.49918,0.309303,0.760308,0.804531,0.278629,0.712708,0.750435,0.882188,0.905514,0.82987,0.888387,0.326306,0.031085,0.249486,0.816281,0.328493,0.610531,0.710498,0.45577,0.215408,0.525542,0.955598,0.700687,0.37344,0.00852615,0.591393,0.403237,0.729654,0.440822,0.713267,0.7256,0.687039,0.382086,0.544399,0.506859,0.369916,0.708066,0.0783796,0.80599,0.924531,0.883487,0.478824,0.173176,0.898959,0.244513,0.214917,0.514318,0.745408,0.943596,0.128778,0.691259,0.9716,0.490877,0.488611,0.279721,0.431867,0.631702,0.322319,0.660634,0.39446,0.887664,0.801986,0.196593,|0.984547,0.298035,0.248432,0.140815,0.86093,0.721156,0.0649471,0.345141,0.307012,0.443347,0.532729,0.467167,0.801591,0.926714,0.0100845,0.913628,0.600553,0.261688,0.637623,0.353769,0.593774,0.953035,0.766767,0.454921,0.550041,0.934737,0.172368,0.007572,0.225153,0.292156,0.888487,0.0201882,0.160484,0.907472,0.820547,0.293338,0.940567,0.195376,0.622963,0.118952,0.797419,0.0717835,0.134905,0.262594,0.116252,0.466963,0.150018,0.71592,0.954337,0.538328,0.859701,0.852083,0.501677,0.962268,0.775864,0.74592,0.393249,0.610749,0.742637,0.448681,0.0559283,0.643413,0.820462,0.891452,0.512305,0.537335,0.1609,0.565974,0.368789,0.657094,0.315569,0.20031,0.224651,0.625562,0.171405,0.205172,0.137321,0.429662,0.783486,0.691913,0.516457,0.878104,0.166333,0.351084,0.3676,0.388231,0.0374803,0.643768,0.287778,0.247648,0.272297,0.790919,0.380851,0.0830485,0.0152923,0.271281,0.085496,0.842488,0.760131,0.468286,0.236262,0.00626582,0.901386,0.485289,0.515446,0.968583,0.938515,0.697703,0.539971,0.683376,0.0836921,0.889685,0.398383,0.146737,0.194387,0.535076,0.481776,0.508909,0.0372663,0.485327,0.866898,0.0738617,0.0885563,0.436309,0.784369,0.735359,0.484474,0.708366,0.435741,0.673856,0.789826,0.932658,0.0703893,0.75906,0.154686,0.00985044,0.148131,0.633308,0.00710011,0.798636,0.172212,0.177135,0.495891,0.0147123,0.424438,0.914871,0.87854,0.594363,0.307594,0.0664654,0.106151,0.082081,0.382672,0.771594,0.603824,0.140315,0.677796,0.282027,0.406529,0.30735,0.0799549,0.302256,0.582611,0.878988,0.330353,0.102229,0.708772,0.263852,0.0472147,0.930326,0.0300645,0.230673,0.202012,0.30737,0.805834,0.829366,0.573605,0.0100519,0.976544,0.238001,0.331323,0.543993,0.722716,0.917513,0.935186,0.302036,0.166662,0.715981,0.636492,0.126325,0.642649,0.82408,0.151956,0.374681,0.814318,0.211729,0.410146,0.351476,0.0637938,0.474016,0.00313318,0.858466,0.613329,0.844707,0.511569,0.668367,0.13302,0.352077,0.865824,0.0842757,0.600928,0.267524,0.614349,0.787782,0.860567,0.327515,0.0533242,0.661336,0.525876,0.31813,0.951099,0.281475,0.430783,0.243081,0.270826,0.608085,0.442332,0.256667,0.636996,0.594525,0.833931,0.355214,0.978387,0.114038,0.33512,0.875784,0.26607,0.952879,0.9035,0.242073,0.727076,0.601907,0.416653,0.646513,0.868006,0.687828,0.646007,0.335471,0.468213,0.441608,0.447094,0.247407,0.905315,0.370902,0.82647,0.325339,0.388106,0.879645,0.812491,0.243314,0.425323,0.24577,0.830896,0.180502,0.869722,0.407727,0.921823,0.523116,0.617276,0.264808,0.451437,0.529294,0.930451,0.347381,0.0978165,0.107692,0.576913,0.192744,0.394867,0.730885,0.806202,0.305596,0.72088,0.942887,0.547829,0.965426,0.768745,0.975966,0.532174,0.345045,0.802747,0.731527,0.612606,0.0687299,0.763873,0.721033,0.0587317,0.0963931,0.835874,0.344034,0.67847,0.727613,0.818339,0.509466,0.594466,0.692388,0.00620937,0.903318,0.018454,0.66593,0.634638,0.278289,0.0697557,0.373715,0.219974,0.108229,0.922754,0.385157,0.787181,0.767292,0.266315,0.37019,0.135719,0.201394,0.97666,0.296587,0.00216496,0.405665,0.601426,0.371716,0.995581,0.714049,0.476404,0.361872,0.487186,0.0986466,0.715493,0.533023,0.651394,0.162531,0.711699,0.266844,0.407534,0.509216,0.161809,0.399635,0.901443,0.382361,0.987297,0.00964481,0.858439,0.819852,0.291931,0.679002,0.622871,0.181442,0.337962,0.13087,0.73881,0.979022,0.29968,0.116141,0.915,0.917878,0.666728,0.285008,0.385698,0.197623,0.256361,0.133055,0.604284,0.358012,0.344455,0.929358,0.299259,0.0655902,0.54875,0.610287,0.222052,0.873132,0.961996,0.238608,0.864267,0.661164,0.0976601,0.246983,0.561031,0.733103,0.955426,0.173346,0.989338,0.256082,0.731345,0.544042,0.0571752,0.551447,0.0230843,0.84281,0.506724,0.15677,0.71438,0.618585,0.0519077,0.556225,0.689429,0.425394,0.904698,0.121709,0.886854,0.470602,0.879078,0.0568696,0.20523,0.97658,0.561928,0.388231,0.499144,0.268218,0.0448389,0.418706,0.923377,0.486045,0.22062,0.874199,0.946574,0.573056,0.252266,0.391565,0.987186,0.0234235,0.509286,0.770895,0.281523,0.263593,0.966476,0.728133,0.716567,0.905927,0.204052,0.678863,0.778276,0.242485,0.560829,0.932027,0.703891,0.556429,0.39494,0.204604,0.430922,0.602549,0.439185,0.824607,0.605371,0.400171,0.799749,0.880122,0.32596,0.765572,0.966358,0.3563,0.587384,0.656241,0.221891,0.019851,0.0865642,0.0346202,0.824266,0.516494,0.33166,0.800306,0.0314053,0.568823,0.673878,0.249019,0.293583,0.284119,0.801291,0.181984,0.290339,0.187058,0.924988,0.589251,0.707428,0.635863,0.665635,0.792123,0.922502,0.194918,0.706627,0.567664,0.664991,0.252778,0.918526,0.0402569,0.0273693,0.875856,0.985638,0.0895118,0.420451,0.635343,0.932493,0.373908,0.682147,0.748275,0.951344,0.261785,0.414416,0.515646,0.541704,0.85872,0.159671,0.512083,0.485699,0.308561,0.411724,0.534185,0.996979,0.00943184,0.673068,0.146482,0.237189,0.283172,0.569725,0.729397,0.555107,0.342072,0.876456,0.566867,0.083043,0.660537,0.412023,0.785807,0.220726,0.908964,0.0519207,0.261783,0.640131,0.284425,0.864513,0.027457,0.774033,0.903333,0.793094,0.240325,0.191204,0.836769,0.311653,0.451903,0.969295,0.789946,0.345608,0.117031,0.68623,0.971984,0.373251,0.134244,0.937264,0.70431,0.813595,0.227425,0.362402,0.751626,0.0885782,0.773182,0.94543,0.516983,0.753384,0.199742,0.273414,0.656079,0.866745,0.385317,0.970105,0.866892,0.151884,0.706592,0.983253,0.00380802,0.449116,0.757959,0.527992,0.950534,0.589978,0.23044,0.449574,0.0544619,0.308027,0.568264,0.994921,0.126799,0.354522,0.460351,0.783776,0.964458,0.683246,0.316432,0.69457,0.523624,0.128147,0.289509,0.688442,0.236627,0.541358,0.498668,0.586675,0.491762,0.53864,0.793953,0.27236,0.541874,0.244415,0.618524,0.803159,0.376363,0.831842,0.285507,0.770532,0.114764,0.244643,0.727411,0.58303,0.777272,0.568814,0.548596,0.432643,0.32082,0.906937,0.080626,0.413167,0.355917,0.0297318,0.153134,0.0612974,0.357319,0.609728,0.0380944,0.866093,0.92436,0.228404,0.462961,0.555238,0.499727,0.152486,0.544476,0.0932462,0.857455,0.124524,0.497719,0.528695,0.111759,0.875971,0.765135,0.187022,0.22272,0.328876,0.918938,0.021413,0.995668,0.19424,0.202442,0.175151,0.482957,0.0204564,0.683775,0.701491,0.902567,0.782836,0.882027,0.320144,0.865626,0.421533,0.511331,0.598253,0.231838,0.873405,0.809608,0.590037,0.347431,0.280028,0.111036,0.809452,0.951591,0.267598,0.395996,0.616709,0.542059,0.365198,0.206267,0.0891283,0.0365462,0.526498,0.0960071,0.686386,0.966769,0.00347549,0.4221,0.0765705,0.939668,0.613606,0.267099,0.334274,0.207671,0.309518,0.28949,0.115807,0.616632,0.251464,0.887172,0.1932,0.264016,0.731435,0.403381,0.192553,0.631913,0.575088,0.865325,0.654406,0.783295,0.745699,0.0243459,0.514138,0.789796,0.211982,0.875982,0.454755,0.749122,0.637436,0.246982,0.208841,0.706227,0.984326,0.813049,0.205408,0.219065,0.482461,0.195643,0.370459,0.222282,0.197357,0.344416,0.308981,0.904289,0.770209,0.603913,0.53613,0.28823,0.953942,0.319262,0.826672,0.699528,0.482435,0.423833,0.415679,0.543383,0.591945,0.393248,0.273137,0.762184,0.967836,0.579125,0.512575,0.905494,0.0792914,0.684727,0.62699,0.756734,0.893666,0.578792,0.0247037,0.114069,0.148607,0.117454,0.769122,0.905736,0.530497,0.618414,0.399047,0.853168,0.448209,0.895746,0.137034,0.100991,0.972483,0.121492,0.66687,0.406323,0.909885,0.646443,0.606821,0.439281,0.951162,0.64382,0.456955,0.784734,0.33089,0.452331,0.124701,0.624665,0.55217,0.288044,0.113728,0.672846,0.74951,0.835652,0.640847,0.294749,0.761026,0.711236,0.0436063,0.959018,0.566837,0.349553,0.323687,0.799677,0.287713,0.578433,0.0106156,0.673683,0.808407,0.0624937,0.415234,0.196993,0.0142251,0.325137,0.814646,0.86928,0.343043,0.775702,0.46407,0.519197,0.456115,0.852972,0.96315,0.0954362,0.820863,0.259859,0.14808,0.377186,0.693694,0.4562,0.658366,0.959098,0.119323,0.08955,0.0544019,0.872052,0.252713,0.996328,0.990339,0.640017,0.201839,0.459659,0.770387,0.28675,0.559897,0.880422,0.989883,0.388321,0.194524,0.883319,0.175132,0.864844,0.189586,0.504077,0.113487,0.794813,0.584007,0.558663,0.00207412,0.752448,0.439045,0.188901,0.340805,0.417092,0.940587,0.811754,0.0580398,0.558986,0.398952,0.344651,0.183951,0.39526,0.00190747,0.565534,0.234143,0.910555,0.564117,0.601683,0.132532,0.237672,0.708084,0.156383,0.406037,0.303998,0.158492,0.5075,0.0633205,0.55163,0.307558,0.0100703,0.465278,0.675585,0.253437,0.107854,0.0533281,0.711729,0.561705,0.33519,0.60858,0.918522,0.871605,0.794053,0.461683,0.304173,0.388218,0.854525,0.89104,0.945887,0.531715,0.0367985,0.587536,0.125318,0.42579,0.361822,0.418504,0.963562,0.0843924,0.857043,0.283656,0.741274,0.699353,0.979908,0.325482,0.485146,0.0850112,0.596838,0.639744,0.789867,0.944848,0.614182,0.170381,0.15973,0.298651,0.342602,0.566154,0.183993,0.211856,0.491831,0.978583,0.816224,0.91127,0.185127,0.369935,0.584923,0.0387185,0.733629,0.644731,0.421399,0.457449,0.766024,0.882766,0.216157,0.468352,0.558366,0.758573,0.395007,0.0792707,0.672845,0.391975,0.609646,0.360931,0.514215,0.127932,0.719511,0.249052,0.174364,0.230801,0.163197,0.223083,0.228501,0.0595922,0.275162,0.0263643,0.643681,0.649383,0.586526,0.781411,0.478492,0.110015,0.831249,0.159278,0.849882,0.706736,0.89816,0.389271,0.50273,0.800655,0.554097,0.972172,0.0682136,|0.240275,0.009296,0.447847,0.112743,0.405335,0.247242,0.171835,0.368892,0.380618,0.587733,0.767335,0.125819,0.0770764,0.853764,0.731175,0.887783,0.870691,0.464039,0.224572,0.0897568,0.467499,0.906783,0.822135,0.0838989,0.770169,0.546686,0.294424,0.266152,0.359969,0.959581,0.30824,0.215179,0.956211,0.410612,0.777544,0.776381,0.682952,0.983386,0.604462,0.846895,0.249299,0.173287,0.850595,0.569329,0.839559,0.126377,0.634033,0.174873,0.780431,0.0707934,0.771567,0.652362,0.579753,0.075671,0.184773,0.877959,0.817657,0.0592338,0.759358,0.00230813,0.254626,0.894819,0.613159,0.465269,0.00675005,0.685636,0.62876,0.106773,0.719332,0.928128,0.974661,0.432263,0.068868,0.842741,0.793189,0.253076,0.169007,0.832751,0.681789,0.790394,0.455253,0.185378,0.363798,0.628027,0.880331,0.566993,0.386022,0.154404,0.632107,0.143032,0.659529,0.54671,0.175394,0.994927,0.649874,0.764364,0.645503,0.741454,0.546519,0.170613,0.695071,0.360298,0.0787727,0.248315,0.0731081,0.662355,0.42626,0.00586516,0.834033,0.975645,0.751992,0.666933,0.147507,0.550797,0.287073,0.767733,0.821874,0.0983452,0.60771,0.991689,0.7588,0.961222,0.27846,0.491543,0.462773,0.505589,0.93095,0.862628,0.44334,0.939395,0.686761,0.756311,0.0844469,0.444701,0.413108,0.467604,0.606265,0.911071,0.127084,0.57499,0.526861,0.432607,0.737406,0.107695,0.806491,0.414705,0.0981416,0.096643,0.359243,0.327611,0.307272,0.693459,0.248152,0.514347,0.272562,0.799938,0.856529,0.257472,0.407242,0.547624,0.78564,0.723312,0.170374,0.517973,0.903012,0.419319,0.475164,0.0300722,0.0793347,0.341225,0.911218,0.273743,0.00977629,0.135899,0.821244,0.787514,0.115894,0.193023,0.172417,0.577981,0.764954,0.293688,0.959457,0.940898,0.706588,0.689235,0.841311,0.980857,0.853165,0.594079,0.268215,0.405657,0.865033,0.816939,0.922527,0.200208,0.199585,0.841053,0.971608,0.606413,0.686033,0.801535,0.10727,0.628135,0.643308,0.183573,0.280285,0.876571,0.20681,0.935401,0.72648,0.867854,0.837814,0.725645,0.276244,0.697082,0.926893,0.471834,0.17419,0.296227,0.098404,0.661781,0.266005,0.25003,0.717859,0.26667,0.55874,0.861912,0.39001,0.983613,0.845044,0.827606,0.253848,0.244287,0.0605484,0.646115,0.653589,0.172406,0.922007,0.293853,0.468085,0.722287,0.269831,0.413283,0.89852,0.374674,0.83963,0.6935,0.828244,0.0238162,0.283912,0.456099,0.348476,0.162279,0.557711,0.0845867,0.801847,0.205405,0.154856,0.819626,0.917344,0.264894,0.139758,0.549887,0.625946,0.729335,0.415842,0.14698,0.872032,0.217805,0.348688,0.314682,0.285743,0.853961,0.150922,0.392318,0.152076,0.612116,0.238631,0.286629,0.614817,0.275713,0.919932,0.122954,0.139281,0.778618,0.39968,0.16805,0.445482,0.303198,0.295861,0.129273,0.99044,0.452758,0.156265,0.64778,0.417407,0.358224,0.517122,0.164789,0.969147,0.829575,0.75116,0.935554,0.138719,0.426551,0.129639,0.256208,0.462544,0.88685,0.279496,0.746073,0.179037,0.706467,0.694308,0.763862,0.0397581,0.408276,0.504873,0.305435,0.318775,0.681291,0.628746,0.939125,0.00504118,0.279095,0.955894,0.371458,0.621405,0.122073,0.876131,0.31611,0.142766,0.483175,0.00750053,0.297152,0.494794,0.472801,0.649098,0.392231,0.605345,0.345035,0.0794531,0.977131,0.86557,0.0977131,0.711081,0.122136,0.10248,0.167748,0.0106817,0.673007,0.324767,0.941162,0.159704,0.806715,0.970761,0.706011,0.0396188,0.884463,0.755835,0.185384,0.427734,0.998877,0.0379738,0.657621,0.870504,0.760067,0.763849,0.937155,0.803611,0.993793,0.90676,0.596116,0.742891,0.318205,0.448694,0.92692,0.107252,0.285326,0.275292,0.741918,0.919975,0.297169,0.109282,0.316027,0.0303808,0.49773,0.872244,0.257315,0.0310647,0.0983675,0.268616,0.79718,0.467659,0.891088,0.250669,0.813197,0.823748,0.030247,0.986721,0.192026,0.699195,0.178057,0.213078,0.0153416,0.131887,0.0829928,0.619485,0.551479,0.494674,0.280917,0.362007,0.15407,0.168507,0.256578,0.71746,0.944394,0.602199,0.701488,0.104246,0.950592,0.428122,0.612022,0.971088,0.0601259,0.748227,0.154976,0.0978629,0.498335,0.641318,0.634955,0.396054,0.341593,0.184695,0.178049,0.0283059,0.0137463,0.628271,0.657077,0.117283,0.101579,0.247828,0.614781,0.657787,0.770098,0.281654,0.906841,0.290989,0.110842,0.676604,0.793826,0.00201118,0.119461,0.702345,0.991779,0.33148,0.363446,0.185875,0.944577,0.818831,0.500813,0.813053,0.68812,0.446263,0.851025,0.592305,0.941106,0.204207,0.0758255,0.603083,0.45723,0.0437499,0.972823,0.874904,0.410264,0.177142,0.481025,0.0417688,0.919045,0.804268,0.447902,0.4536,0.794616,0.497579,0.802615,0.0757841,0.825086,0.149829,0.543966,0.559068,0.860026,0.398304,0.715639,0.96916,0.749973,0.66155,0.284793,0.00394398,0.0722285,0.320812,0.699732,0.935868,0.372402,0.822991,0.511195,0.756371,0.783305,0.937999,0.8754,0.895673,0.198382,0.988346,0.0449454,0.0417553,0.11639,0.104482,0.75053,0.147095,0.0181555,0.541188,0.696953,0.371849,0.575874,0.436367,0.695054,0.86034,0.98827,0.855526,0.908874,0.838947,0.290673,0.97926,0.707461,0.227545,0.0781283,0.583014,0.470034,0.0904131,0.0448814,0.360516,0.577128,0.274967,0.758124,0.887858,0.861864,0.434726,0.765387,0.988056,0.636107,0.826381,0.793266,0.693989,0.297905,0.88105,0.828574,0.246164,0.188545,0.376849,0.926902,0.271088,0.0685659,0.0916007,0.0919412,0.496116,0.542218,0.211145,0.795069,0.619387,0.827176,0.860081,0.02086,0.05243,0.0552685,0.855561,0.69026,0.824082,0.572062,0.435227,0.545244,0.449956,0.774299,0.380557,0.419467,0.591389,0.467054,0.7286,0.27602,0.231409,0.830433,0.504103,0.896561,0.212856,0.929789,0.533208,0.029487,0.484972,0.745739,0.0501375,0.526738,0.236571,0.721161,0.481674,0.553271,0.164436,0.761503,0.662792,0.71074,0.219019,0.633234,0.602926,0.534664,0.294794,0.995714,0.953426,0.0343202,0.123677,0.18145,0.0778633,0.772929,0.254245,0.313042,0.145274,0.667988,0.678631,0.66124,0.52577,0.786464,0.8092,0.407851,0.230719,0.690153,0.331195,0.246095,0.825544,0.984818,0.234972,0.157821,0.0584698,0.690397,0.0457684,0.217879,0.5955,0.259512,0.629892,0.817061,0.142282,0.414716,0.870063,0.481414,0.7124,0.312958,0.906167,0.42318,0.0420571,0.0507335,0.172197,0.689857,0.574246,0.887327,0.932184,0.19199,0.214416,0.673929,0.704205,0.620586,0.149483,0.00145847,0.0632665,0.266285,0.917116,0.263667,0.195961,0.270529,0.560923,0.991588,0.588056,0.0627875,0.363235,0.908014,0.228398,0.593136,0.389297,0.951171,0.192057,0.3069,0.250869,0.980737,0.949354,0.659697,0.0200961,0.264795,0.0685425,0.302962,0.754423,0.409272,0.787713,0.429789,0.0615362,0.722761,0.00504774,0.696918,0.562195,0.856554,0.636067,0.210512,0.713073,0.324354,0.237296,0.910489,0.276165,0.608604,0.20861,0.301665,0.348906,0.448095,0.848534,0.344621,0.721734,0.192771,0.67622,0.732131,0.253443,0.197859,0.0427921,0.622069,0.382239,0.911152,0.154723,0.195868,0.684785,0.346177,0.895014,0.676158,0.642745,0.160651,0.173929,0.604288,0.826466,0.382823,0.59905,0.894282,0.972394,0.202033,0.856094,0.376019,0.269833,0.840712,0.659004,0.129297,0.629299,0.401696,0.756401,0.236061,0.144723,0.172377,0.218896,0.0251041,0.828598,0.458534,0.359588,0.838144,0.027952,0.288244,0.357572,0.815287,0.717451,0.476904,0.802606,0.312854,0.75435,0.784567,0.979101,0.2285,0.0229921,0.584555,0.421265,0.964772,0.497324,0.36654,0.785736,0.300285,0.223475,0.667825,0.937748,0.951275,0.765054,0.998388,0.885824,0.692911,0.466756,0.659752,0.368289,0.0566622,0.843785,0.354972,0.9851,0.918771,0.113815,0.500221,0.921509,0.745575,0.809239,0.918206,0.00583827,0.420555,0.86878,0.478283,0.935566,0.00967646,0.596342,0.609707,0.829451,0.436929,0.0573947,0.355886,0.290202,0.71583,0.253784,0.973171,0.594014,0.893337,0.916657,0.0446842,0.273263,0.84244,0.884455,0.167181,0.497163,0.545003,0.630243,0.905041,0.256876,0.541902,0.0792736,0.0778174,0.49728,0.113211,0.698264,0.989499,0.692161,0.372862,0.630358,0.892912,0.155192,0.525842,0.301129,0.973887,0.724367,0.0100272,0.723787,0.561521,0.394605,0.0322723,0.721971,0.469997,0.434595,0.217983,0.920445,0.00994241,0.922157,0.878856,0.677662,0.487699,0.588406,0.566797,0.293375,0.978645,0.962327,0.344667,0.705405,0.430431,0.519865,0.674751,0.500884,0.735056,0.828035,0.505916,0.11683,0.798835,0.346982,0.411538,0.256995,0.712028,0.0260116,0.146751,0.858369,0.154084,0.427467,0.151545,0.936874,0.635546,0.49475,0.135072,0.895666,0.790506,0.449454,0.788253,0.582687,0.1109,0.99707,0.603683,0.91909,0.470486,0.100405,0.295826,0.769595,0.17551,0.776096,0.553468,0.962587,0.00948828,0.624958,0.610913,0.604376,0.115219,0.147848,0.931581,0.230063,3.51667e-05,0.557329,0.71046,0.921054,0.751425,0.138472,0.23383,0.341948,0.376619,0.924674,0.162269,0.651312,0.361401,0.0351804,0.675286,0.103024,0.878317,0.509496,0.421564,0.728778,0.822257,0.962,0.432243,0.819104,0.435677,0.0892004,0.401517,0.45104,0.362891,0.609508,0.449786,0.753761,0.354358,0.883861,0.981796,0.134472,0.786812,0.178142,0.0889641,0.0980115,0.0793193,0.225468,0.262598,0.110673,0.70261,0.114986,0.994362,0.969353,0.93871,0.0515999,0.702349,0.338591,0.37577,0.690624,0.251948,0.23113,0.148736,0.253256,0.747162,0.528913,0.540425,0.44609,0.107232,0.198978,0.875212,0.0727398,0.844544,0.67799,0.683266,0.0779607,0.810547,0.38585,0.991671,0.420448,0.585459,0.799088,0.975368,0.871143,0.18328,0.999703,0.554151,|0.541655,0.264843,0.872588,0.860936,0.0911981,0.861116,0.10105,0.211929,0.816561,0.776789,0.4702,0.192223,0.346638,0.842755,0.222629,0.279745,0.26039,0.832605,0.230568,0.757759,0.468569,0.079084,0.991583,0.520253,0.870458,0.917276,0.817944,0.416711,0.702607,0.46227,0.26541,0.628316,0.600262,0.257796,0.970287,0.684597,0.681177,0.817792,0.510784,0.154766,0.232536,0.00128186,0.181786,0.542114,0.771032,0.178488,0.084306,0.71551,0.180848,0.909396,0.173843,0.79026,0.984689,0.56161,0.95096,0.0315372,0.0832031,0.965241,0.723705,0.275716,0.722867,0.427384,0.225202,0.292197,0.0604575,0.789335,0.784282,0.567148,0.646644,0.0664561,0.936134,0.733141,0.305755,0.196045,0.140945,0.969698,0.743219,0.0381343,0.611616,0.780985,0.348606,0.259947,0.493225,0.784114,0.464555,0.872253,0.0951446,0.47672,0.596113,0.560807,0.0595549,0.0320328,0.98567,0.362477,0.0149543,0.123691,0.323327,0.341121,0.0937837,0.0200543,0.66053,0.710577,0.402653,0.669584,0.90471,0.711239,0.657013,0.942953,0.779916,0.276166,0.889309,0.578229,0.357136,0.394718,0.549124,0.123321,0.670674,0.883067,0.722366,0.690825,0.984898,0.0218849,0.327258,0.7372,0.223191,0.94661,0.793653,0.9184,0.558409,0.837019,0.159245,0.138862,0.777356,0.385589,0.732973,0.916479,0.251956,0.679356,0.0963843,0.744657,0.680729,0.902748,0.419027,0.648149,0.13047,0.725547,0.0813565,0.649888,0.901163,0.122288,0.807699,0.966384,0.978055,0.438003,0.347708,0.217685,0.466064,0.178409,0.823336,0.71623,0.522502,0.318946,0.0100245,0.737731,0.444793,0.637768,0.0416411,0.903239,0.000136375,0.842599,0.379158,0.0546405,0.931982,0.395482,0.814481,0.683648,0.583139,0.715042,0.715704,0.590424,0.248785,0.963977,0.927349,0.352002,0.172322,0.443095,0.400108,0.788571,0.073341,0.986819,0.435029,0.97136,0.451769,0.733283,0.337131,0.514496,0.354477,0.116872,0.612248,0.985544,0.374393,0.285307,0.832025,0.0887273,0.166057,0.352655,0.845775,0.624999,0.816674,0.527555,0.817272,0.258878,0.457179,0.38029,0.800501,0.909439,0.0623881,0.224295,0.9122,0.982642,0.660935,0.881321,0.791683,0.739669,0.867063,0.229893,0.303458,0.545086,0.568598,0.860288,0.54208,0.945949,0.512418,0.280996,0.535411,0.19477,0.589617,0.830141,0.0702696,0.958974,0.571321,0.763948,0.822316,0.320012,0.0958686,0.495247,0.845429,0.239118,0.175831,0.554716,0.0893058,0.181262,0.718802,0.339566,0.640278,0.202971,0.490702,0.977369,0.362505,0.527817,0.151155,0.0799886,0.184292,0.488561,0.350117,0.32685,0.355541,0.206831,0.419364,0.595996,0.356336,0.188135,0.503374,0.909734,0.29962,0.920736,0.213618,0.143777,0.958941,0.167557,0.501936,0.726837,0.368192,0.15252,0.483991,0.683827,0.404205,0.94643,0.381281,0.0697823,0.612014,0.894196,0.978874,0.471984,0.287293,0.532923,0.454067,0.75885,0.208369,0.179187,0.637622,0.776991,0.121101,0.318621,0.626385,0.629306,0.764423,0.916608,0.119239,0.373209,0.505496,0.173596,0.439804,0.444643,0.417531,0.567789,0.665263,0.980356,0.31873,0.704514,0.656182,0.478344,0.248469,0.766328,0.3212,0.686156,0.52634,0.266602,0.410248,0.651239,0.845442,0.582031,0.157706,0.175738,0.195222,0.685312,0.827461,0.106836,0.439661,0.942407,0.423073,0.944194,0.672289,0.214267,0.8249,0.390766,0.735663,0.0835949,0.831485,0.966573,0.50661,0.758252,0.474741,0.0627484,0.833858,0.301943,0.332226,0.519813,0.444053,0.056067,0.516661,0.560887,0.644938,0.483117,0.955069,0.442027,0.584426,0.360729,0.46864,0.811116,0.73694,0.623167,0.211357,0.917797,0.198242,0.657418,0.839825,0.75966,0.10548,0.727967,0.955202,0.940598,0.372893,0.259282,0.0731502,0.102122,0.951401,0.552783,0.260713,0.601309,0.197776,0.346032,0.0987441,0.156884,0.600451,0.462638,0.869929,0.131706,0.544073,0.219991,0.0453331,0.221571,0.662963,0.615129,0.905748,0.934526,0.846977,0.2811,0.0968549,0.596826,0.0791864,0.73267,0.831032,0.739299,0.525542,0.229799,0.482759,0.093389,0.70705,0.0496553,0.64504,0.542653,0.39662,0.166897,0.693826,0.0855545,0.0210607,0.920561,0.202788,0.332547,0.0695132,0.213715,0.588804,0.0185954,0.0482938,0.0826709,0.858839,0.143913,0.948475,0.137149,0.535867,0.411799,0.797631,0.130101,0.112958,0.0799714,0.947014,0.276478,0.871114,0.919433,0.694411,0.0439546,0.274791,0.0387557,0.211113,0.0848191,0.819583,0.00724053,0.148074,0.291267,0.275512,0.0220711,0.957344,0.416209,0.246243,0.0692225,0.665213,0.529144,0.506801,0.389557,0.765968,0.365839,0.366717,0.548755,0.04444,0.12072,0.326381,0.743795,0.804655,0.455862,0.363448,0.62922,0.216278,0.0970629,0.614131,0.841995,0.853323,0.271293,0.594319,0.0404473,0.431822,0.927911,0.285337,0.43954,0.750662,0.268755,0.192982,0.897603,0.116203,0.134352,0.556002,0.598315,0.14661,0.263569,0.821096,0.0714156,0.524549,0.653357,0.00246882,0.611766,0.873028,0.726382,0.314952,0.463094,0.42733,0.461478,0.430863,0.141908,0.29155,0.834744,0.612696,0.0356233,0.819384,0.504726,0.988615,0.230608,0.283259,0.196193,0.748924,0.407022,0.674372,0.987777,0.338937,0.746562,0.391878,0.191379,0.14885,0.321645,0.409212,0.272467,0.528704,0.559446,0.274673,0.0736086,0.861921,0.212726,0.368224,0.16884,0.786194,0.164343,0.127336,0.634414,0.0453982,0.0515352,0.484376,0.125548,0.67942,0.252129,0.832259,0.547136,0.921746,0.707692,0.700713,0.941479,0.63644,0.764125,0.320852,0.324014,0.0791722,0.889098,0.743371,0.111133,0.854634,0.861989,0.380469,0.277449,0.287472,0.394776,0.950258,0.829711,0.963105,0.0483965,0.140982,0.0129639,0.610857,0.475547,0.186044,0.911759,0.228306,0.51235,0.696346,0.259132,0.69091,0.472701,0.229096,0.847298,0.132869,0.288223,0.663522,0.920449,0.076317,0.753131,0.399136,0.750723,0.236693,0.254521,0.516762,0.285539,0.90738,0.524633,0.152608,0.660797,0.00841796,0.803601,0.208413,0.0401559,0.158403,0.895156,0.529581,0.713831,0.470737,0.5214,0.0777236,0.32412,0.496925,0.385234,0.408853,0.46639,0.349062,0.51761,0.759418,0.625651,0.884093,0.0301127,0.0338036,0.417712,0.342565,0.333456,0.762486,0.76246,0.748512,0.519758,0.767835,0.958576,0.0616847,0.922156,0.0428824,0.131972,0.44843,0.907027,0.130979,0.103157,0.461675,0.605821,0.666905,0.870235,0.446324,0.527969,0.0595115,0.457696,0.89871,0.185531,0.48831,0.944714,0.413237,0.572337,0.622667,0.399394,0.503653,0.855006,0.117805,0.970077,0.508965,0.813297,0.921129,0.545904,0.776524,0.0479699,0.573368,0.712598,0.622682,0.283091,0.950903,0.0233744,0.303284,0.116168,0.52654,0.587255,0.085352,0.260259,0.418666,0.708857,0.734241,0.791841,0.0222643,0.518513,0.127875,0.986963,0.257537,0.678464,0.255809,0.766397,0.983595,0.422103,0.237908,0.34219,0.175555,0.0843775,0.623873,0.547054,0.809356,0.667249,0.215032,0.129997,0.633314,0.313557,0.504769,0.366569,0.741388,0.878268,0.803656,0.289246,0.501913,0.471367,0.373332,0.982566,0.351286,0.284515,0.912735,0.843576,0.72552,0.807826,0.760434,0.702381,0.0995084,0.127755,0.686091,0.923838,0.839076,0.51232,0.347973,0.441182,0.594901,0.148518,0.703832,0.12466,0.353407,0.820714,0.049626,0.248698,0.322544,0.662966,0.660247,0.104029,0.612862,0.523497,0.385633,0.148531,0.385474,0.766694,0.0821609,0.0195324,0.292027,0.796089,0.416547,0.781123,0.853057,0.915375,0.458901,0.466591,0.509177,0.390757,0.330073,0.569442,0.974587,0.769475,0.812307,0.690299,0.401683,0.83417,0.990442,0.296836,0.384636,0.0226158,0.525235,0.171623,0.743151,0.216211,0.63546,0.235731,0.149307,0.202076,0.269141,0.0376304,0.450741,0.00674796,0.88817,0.55305,0.0465539,0.694717,0.536428,0.588133,0.872404,0.823185,0.450729,0.896107,0.81894,0.403925,0.611197,0.851335,0.924429,0.844307,0.453788,0.379543,0.570687,0.855904,0.644196,0.447635,0.77059,0.208644,0.0477005,0.879829,0.41205,0.555326,0.0983796,0.647887,0.792344,0.0071069,0.463748,0.716483,0.975835,0.597688,0.98659,0.811184,0.843517,0.0525202,0.121461,0.783868,0.27903,0.35001,0.159854,0.403502,0.27031,0.755803,0.202843,0.419521,0.0334421,0.165723,0.0905642,0.564937,0.377736,0.93263,0.597984,0.0788137,0.137302,0.092327,0.420674,0.867425,0.545994,0.342766,0.00119489,0.282942,0.289205,0.540024,0.128569,0.163655,0.224005,0.842917,0.283845,0.0975558,0.91072,0.515919,0.822208,0.419628,0.880681,0.61682,0.571401,0.323011,0.337509,0.136903,0.0310283,0.237226,0.629679,0.663188,0.272045,0.206184,0.545492,0.0521162,0.850732,0.078595,0.760576,0.772126,0.710587,0.145312,0.473948,0.689775,0.0568096,0.835826,0.186567,0.978347,0.6285,0.787158,0.959717,0.00513923,0.625557,0.709883,0.00460809,0.802568,0.961818,0.285601,0.891493,0.056918,0.979915,0.0198712,0.82965,0.261812,0.126005,0.419041,0.183931,0.36097,0.519031,0.549163,0.73716,0.174499,0.596784,0.15884,0.783014,0.426955,0.407155,0.455556,0.261675,0.743043,0.355888,0.377376,0.706273,0.0609449,0.43261,0.176749,0.05946,0.2365,0.16318,0.125747,0.342505,0.477125,0.95626,0.157534,0.693621,0.682528,0.99493,0.337191,0.24713,0.65011,0.657283,0.871318,0.978228,0.363989,0.725105,0.806767,0.496446,0.584946,0.843657,0.451638,0.289088,0.338521,0.191187,0.126044,0.789683,0.946469,0.279112,0.974616,0.453232,0.102258,0.843409,0.180028,0.419218,0.58973,0.586403,0.18864,0.0784778,0.422209,0.595415,0.226458,0.833396,0.339377,0.989212,0.308532,0.824798,0.0973506,0.560152,0.986908,0.310018,0.632734,0.599707,0.238944,0.471432,0.313297,0.706066,0.367737,0.0229747,0.540317,|0.968942,0.000825882,0.653665,0.816421,0.756127,0.920171,0.605393,0.229725,0.590597,0.172912,0.610454,0.510486,0.981031,0.765555,0.831272,0.371867,0.833818,0.116509,0.844158,0.173961,0.382563,0.0890876,0.616932,0.515501,0.890181,0.949978,0.971293,0.480403,0.540371,0.988568,0.136179,0.165458,0.749179,0.433296,0.0795018,0.467735,0.878227,0.669098,0.472019,0.0249288,0.264849,0.615388,0.818631,0.656761,0.407438,0.569389,0.0783298,0.30365,0.280925,0.285399,0.248027,0.384465,0.337893,0.361189,0.951477,0.384572,0.149771,0.179698,0.379451,0.801726,0.598746,0.110793,0.667822,0.745683,0.160509,0.0482619,0.0235725,0.102411,0.524633,0.414572,0.744387,0.0299901,0.126122,0.536401,0.689064,0.852425,0.0502567,0.961289,0.574663,0.154634,0.872854,0.511295,0.560609,0.329559,0.939168,0.524361,0.808378,0.348617,0.534367,0.584157,0.180004,0.274592,0.574064,0.412944,0.00459707,0.85362,0.597429,0.885863,0.283986,0.653002,0.239323,0.0475458,0.875408,0.764983,0.828065,0.385298,0.125433,0.416861,0.607599,0.47449,0.714034,0.834207,0.00472277,0.382927,0.922869,0.266279,0.805859,0.244068,0.0261434,0.260852,0.0263772,0.827627,0.559466,0.556248,0.7951,0.929549,0.95482,0.207713,0.364842,0.250187,0.0649737,0.956576,0.419957,0.222537,0.188852,0.608131,0.0758603,0.565835,0.735587,0.734653,0.541551,0.177257,0.173961,0.723674,0.789608,0.97783,0.896308,0.20076,0.595057,0.846949,0.0757993,0.494603,0.633672,0.289693,0.943496,0.995103,0.168633,0.604192,0.920203,0.664592,0.681993,0.917739,0.85665,0.205248,0.892781,0.907668,0.314802,0.989979,0.485255,0.319829,0.434898,0.667793,0.0165985,0.18371,0.118051,0.821138,0.790861,0.425165,0.516717,0.0195863,0.728739,0.791037,0.6024,0.0281046,0.993507,0.134915,0.0380905,0.427844,0.362738,0.917555,0.985214,0.764632,0.811047,0.0482783,0.274146,0.411688,0.0543542,0.662375,0.577032,0.966805,0.763148,0.934082,0.0746229,0.294202,0.33015,0.921119,0.303161,0.512394,0.145014,0.366038,0.68028,0.336133,0.000745773,0.762672,0.915493,0.368415,0.576509,0.745794,0.747585,0.506321,0.166184,0.716605,0.283371,0.421882,0.571757,0.141912,0.674531,0.949583,0.611033,0.142152,0.921246,0.778135,0.804602,0.662944,0.124364,0.1708,0.0158387,0.485967,0.119776,0.892795,0.269118,0.529273,0.337087,0.430937,0.713279,0.814338,0.803648,0.0348729,0.272916,0.347715,0.669814,0.154195,0.268551,0.333819,0.263568,0.611608,0.224102,0.308646,0.644925,0.372966,0.639614,0.836228,0.00963151,0.600546,0.453551,0.903809,0.981122,0.951994,0.0728136,0.234473,0.645728,0.00458038,0.898257,0.927174,0.455997,0.43669,0.096914,0.452313,0.590907,0.882997,0.533809,0.563212,0.871313,0.454669,0.44852,0.0486165,0.519378,0.283726,0.227374,0.89752,0.618383,0.279478,0.304903,0.960392,0.586774,0.194794,0.281687,0.803939,0.495092,0.229666,0.0942613,0.363554,0.860825,0.40654,0.284096,0.71206,0.880568,0.238293,0.01217,0.220442,0.255212,0.842972,0.542574,0.170596,0.148258,0.669014,0.066793,0.409022,0.361134,0.588621,0.41111,0.0887005,0.224203,0.926274,0.964441,0.593939,0.804056,0.690557,0.663268,0.803331,0.476796,0.689121,0.546969,0.395225,0.796436,0.559745,0.679419,0.358693,0.992638,0.163902,0.188342,0.700551,0.352876,0.938246,0.183361,0.905487,0.846288,0.907712,0.745381,0.727813,0.848602,0.603082,0.264648,0.156232,0.180681,0.0788817,0.912923,0.395237,0.548483,0.0561115,0.928612,0.525028,0.760884,0.915157,0.975452,0.991399,0.582749,0.457239,0.90379,0.91019,0.45273,0.0679373,0.122674,0.0448575,0.387531,0.517256,0.397272,0.862107,0.599516,0.744619,0.0602427,0.537379,0.646034,0.766145,0.274075,0.419351,0.0662526,0.398248,0.431336,0.605347,0.363018,0.890963,0.421172,0.34722,0.403855,0.497216,0.69169,0.186229,0.017685,0.36127,0.221409,0.546067,0.578834,0.408805,0.581417,0.771051,0.921532,0.491852,0.578598,0.547162,0.381934,0.0930719,0.306119,0.382974,0.583524,0.0345193,0.279594,0.0621995,0.886591,0.944628,0.158677,0.820817,0.948897,0.109317,0.428687,0.522206,0.34894,0.996859,0.595037,0.855813,0.267871,0.403441,0.319879,0.230546,0.363776,0.483205,0.55243,0.160684,0.819046,0.361654,0.979283,0.65587,0.410693,0.990928,0.881522,0.32979,0.283866,0.116359,0.058023,0.015354,0.141911,0.410463,0.519594,0.403563,0.972396,0.967367,0.265289,0.0824485,0.0793195,0.289279,0.0122032,0.208696,0.165771,0.344084,0.795619,0.123682,0.984148,0.756262,0.404161,0.435965,0.865756,0.294972,0.762899,0.916166,0.436705,0.75528,0.0265741,0.221981,0.561399,0.0505783,0.759018,0.475013,0.436583,0.191332,0.369692,0.40053,0.0432046,0.482367,0.00800264,0.842707,0.956188,0.525508,0.46612,0.657171,0.428788,0.0538323,0.792554,0.287815,0.85952,0.5832,0.761564,0.0348215,0.276151,0.267888,0.0678322,0.0905322,0.706656,0.349329,0.600181,0.934276,0.727414,0.329794,0.181462,0.083761,0.16981,0.78417,0.400829,0.0765138,0.515305,0.710878,0.803104,0.65202,0.144441,0.852765,0.646313,0.171525,0.979511,0.322907,0.874276,0.991572,0.565665,0.279218,0.13042,0.99645,0.975139,0.996888,0.459287,0.00600088,0.0191388,0.417584,0.983748,0.585754,0.0084908,0.297712,0.929321,0.841538,0.929986,0.0630541,0.392289,0.202866,0.71886,0.324738,0.235665,0.136403,0.782966,0.931754,0.964729,0.907507,0.426343,0.326644,0.316086,0.724431,0.376348,0.0183628,0.10008,0.514054,0.63783,0.515921,0.72173,0.330016,0.0197768,0.809263,0.239337,0.87243,0.466006,0.497112,0.228858,0.217005,0.829642,0.0827253,0.11642,0.891934,0.00631511,0.583821,0.768528,0.48011,0.46832,0.719316,0.548321,0.792985,0.521502,0.774785,0.27557,0.587814,0.576095,0.815121,0.00734162,0.853275,0.0888126,0.522176,0.613551,0.529204,0.235328,0.505437,0.521104,0.446368,0.86198,0.257743,0.0293661,0.373073,0.285157,0.978171,0.76985,0.653777,0.435969,0.936313,0.245643,0.540743,0.793031,0.784945,0.266575,0.166351,0.574162,0.32661,0.679838,0.68979,0.0263469,0.576959,0.61998,0.703739,0.121513,0.624205,0.56057,0.176249,0.388336,0.356757,0.167475,0.0568717,0.18156,0.726971,0.387992,0.86485,0.598498,0.344834,0.883348,0.801676,0.549752,0.23876,0.763635,0.372756,0.187101,0.174335,0.0713558,0.235659,0.284044,0.654069,0.467724,0.707061,0.760274,0.622603,0.345769,0.803014,0.351508,0.554183,0.664546,0.911286,0.244718,0.661113,0.0942624,0.543855,0.853011,0.293966,0.00992769,0.328973,0.450691,0.571868,0.927971,0.731719,0.60168,0.117498,0.920419,0.476632,0.707705,0.874804,0.797827,0.813963,0.927869,0.755462,0.0699793,0.126342,0.542212,0.730342,0.183948,0.564114,0.38437,0.497814,0.810022,0.657674,0.513793,0.401374,0.145886,0.70616,0.140785,0.251601,0.840437,0.157925,0.312191,0.693207,0.344083,0.47815,0.461511,0.0205781,0.465017,0.148647,0.70539,0.20818,0.612413,0.98606,0.141034,0.544969,0.304404,0.138555,0.398515,0.762822,0.235756,0.249069,0.163897,0.921255,0.595127,0.668094,0.697043,0.256707,0.698036,0.012277,0.693923,0.327712,0.703778,0.179394,0.170153,0.0811495,0.434656,0.902626,0.862443,0.410201,0.168487,0.831897,0.783365,0.549159,0.827149,0.287886,0.0176985,0.67741,0.177812,0.000349939,0.377521,0.549777,0.673168,0.609255,0.819076,0.720707,0.458782,0.254259,0.468981,0.298109,0.635155,0.374627,0.105006,0.419108,0.501468,0.976237,0.791241,0.0691234,0.938245,0.439621,0.686599,0.487107,0.654982,0.833832,0.404382,0.844242,0.904319,0.757301,0.294863,0.706759,0.457361,0.301386,0.223056,0.33524,0.396972,0.493648,0.713859,0.627474,0.430108,0.260527,0.014811,0.561508,0.372774,0.913841,0.332227,0.296738,0.766378,0.834125,0.625738,0.778096,0.725587,0.36785,0.344663,0.97747,0.136854,0.00884414,0.275637,0.746789,0.716641,0.0716356,0.545171,0.754546,0.506247,0.612035,0.0851243,0.065053,0.396525,0.899832,0.0127829,0.0782949,0.0186992,0.0325829,0.0844761,0.392884,0.956105,0.426777,0.831245,0.396443,0.0711926,0.352806,0.294109,0.950562,0.0530217,0.0269573,0.789212,0.717968,0.446734,0.145849,0.814176,0.16421,0.541032,0.0891319,0.270333,0.409293,0.39996,0.250725,0.705579,0.0542809,0.396888,0.494468,0.754927,0.83282,0.544341,0.830781,0.984378,0.291084,0.113247,0.0950426,0.19496,0.813187,0.988648,0.831984,0.915338,0.47267,0.941788,0.446723,0.947309,0.156858,0.546107,0.587856,0.681813,0.482836,0.993359,0.477645,0.964786,0.154143,0.640889,0.222327,0.882838,0.181503,0.49014,0.188384,0.435828,0.707834,0.830497,0.204138,0.0372613,0.0548867,0.398866,0.919726,0.66063,0.588648,0.22541,0.572868,0.0233213,0.562217,0.0165101,0.377854,0.517356,0.681917,0.173276,0.626308,0.953661,0.246135,0.487107,0.462549,0.737364,0.0565612,0.415232,0.0970809,0.463168,0.319019,0.310918,0.257303,0.140833,0.894436,0.323398,0.636354,0.486747,0.509859,0.860036,0.958907,0.940386,0.110178,0.755875,0.150737,0.0434683,0.0880781,0.776764,0.769723,0.265111,0.211091,0.487626,0.903813,0.245241,0.54975,0.118942,0.214668,0.784285,0.19676,0.0894291,0.0785069,0.489878,0.416045,0.692861,0.00618732,0.0644264,0.333438,0.520842,0.879633,0.915713,0.831675,0.476671,0.516289,0.985477,0.981664,0.107068,0.808884,0.162618,0.277395,0.976801,0.490106,0.295998,0.132784,0.306413,0.921471,0.0373486,0.514282,0.242261,0.922359,0.553651,0.0106044,0.784488,0.636935,0.756136,0.719446,0.206708,0.570076,0.590581,0.283869,0.694267,0.588135,0.903157,0.151374,0.524331,0.42962,0.154681,0.0782804,0.626603,0.842582,0.569173,0.051928,0.966025,0.0143054,0.825487,0.528252,|0.951226,0.593339,0.714549,0.973487,0.200669,0.854499,0.335216,0.66189,0.343485,0.383949,0.607153,0.64843,0.430186,0.862911,0.886942,0.0243235,0.0814227,0.471169,0.166983,0.344703,0.540753,0.112384,0.815615,0.0700836,0.158178,0.681485,0.615835,0.190615,0.0585055,0.34071,0.256122,0.934141,0.449346,0.620076,0.231621,0.500511,0.562045,0.313925,0.386554,0.246499,0.690866,0.957549,0.223511,0.642672,0.938673,0.334406,0.889841,0.632055,0.0611952,0.0571692,0.162093,0.219317,0.396646,0.313389,0.820636,0.732618,0.299986,0.956834,0.792181,0.759534,0.0473974,0.107356,0.320115,0.465289,0.263493,0.84565,0.989563,0.263145,0.957814,0.718636,0.813528,0.15242,0.469148,0.441514,0.0724031,0.71657,0.778985,0.28942,0.547369,0.698536,0.579166,0.372127,0.542628,0.294347,0.729551,0.16928,0.606672,0.268826,0.815897,0.28738,0.618324,0.110911,0.573451,0.66257,0.433061,0.562837,0.88672,0.999471,0.202383,0.400713,0.776416,0.703086,0.41519,0.695386,0.838491,0.453026,0.0441918,0.213972,0.404217,0.481164,0.0132581,0.181269,0.308704,0.632891,0.545553,0.839502,0.322073,0.582004,0.71805,0.32281,0.137401,0.640369,0.974454,0.240154,0.179003,0.791273,0.557251,0.054302,0.668227,0.300001,0.586072,0.732625,0.852856,0.877826,0.863499,0.0314164,0.247862,0.428551,0.60832,0.900725,0.89511,0.12384,0.767835,0.427093,0.0180896,0.666453,0.223279,0.625145,0.772305,0.858699,0.93116,0.0277982,0.963499,0.105866,0.277891,0.170298,0.964479,0.783525,0.304108,0.421647,0.270452,0.194504,0.164149,0.724373,0.810746,0.954498,0.508063,0.203045,0.81569,0.148654,0.809351,0.599844,0.562708,0.14249,0.5165,0.417915,0.322428,0.432508,0.489854,0.484185,0.210168,0.742617,0.689914,0.600618,0.355328,0.452121,0.690641,0.250185,0.82459,0.2586,0.171916,0.0195007,0.155879,0.336601,0.549404,0.196548,0.513919,0.725359,0.733272,0.468601,0.18079,0.268817,0.12278,0.533348,0.296111,0.0934851,0.465006,0.442674,0.219636,0.554137,0.41585,0.437734,0.176944,0.0523098,0.836932,0.29899,0.397047,0.295398,0.832045,0.617658,0.673984,0.19442,0.336277,0.115583,0.246357,0.169679,0.418757,0.229936,0.597241,0.92291,0.0177352,0.421238,0.338371,0.939449,0.306561,0.425475,0.360358,0.992245,0.503388,0.0433722,0.890014,0.522354,0.318655,0.405632,0.5813,0.365282,0.822271,0.373923,0.21995,0.920232,0.43316,0.425421,0.773514,0.280757,0.984023,0.15522,0.573547,0.993504,0.242353,0.421087,0.712543,0.287171,0.233967,0.28862,0.910327,0.0557913,0.914914,0.839305,0.0809638,0.697781,0.535382,0.59506,0.0214151,0.719133,0.222326,0.4886,0.732908,0.745962,0.124932,0.792811,0.756658,0.578373,0.581913,0.187847,0.081974,0.523449,0.272161,0.129858,0.327278,0.892755,0.0770553,0.230739,0.78746,0.383213,0.573077,0.487015,0.0182202,0.509489,0.612215,0.477995,0.83979,0.554903,0.508292,0.641369,0.0931271,0.0574994,0.434519,0.175472,0.345493,0.940857,0.993774,0.413851,0.484431,0.766254,0.363401,0.870135,0.00487131,0.105388,0.587686,0.79247,0.0954908,0.969009,0.865912,0.017132,0.473834,0.227227,0.3304,0.899219,0.164418,0.134952,0.120693,0.648032,0.183705,0.297989,0.440719,0.113779,0.96779,0.532819,0.2591,0.962437,0.182002,0.463942,0.352884,0.159778,0.473761,0.239683,0.680856,0.103036,0.775957,0.88915,0.020366,0.422269,0.729864,0.676798,0.712507,0.340778,0.792632,0.197696,0.542253,0.455115,0.844474,0.000735581,0.361811,0.686841,0.432318,0.456271,0.786278,0.849139,0.436702,0.0369287,0.121584,0.578586,0.174751,0.92902,0.0123146,0.812065,0.905377,0.948909,0.413714,0.75391,0.356244,0.309021,0.345843,0.614694,0.800902,0.212716,0.686407,0.345318,0.101858,0.212974,0.729792,0.795278,0.477074,0.912347,0.97616,0.171521,0.471514,0.793171,0.17269,0.256237,0.088869,0.155075,0.864913,0.95464,0.340317,0.943521,0.652606,0.5704,0.435278,0.312577,0.362713,0.794396,0.985673,0.489976,0.491782,0.684813,0.29674,0.882812,0.165845,0.77988,0.352033,0.884317,0.247865,0.345851,0.0632357,0.147554,0.0260983,0.310348,0.906067,0.0484902,0.721003,0.568894,0.828499,0.63776,0.896971,0.504959,0.751114,0.827292,0.911141,0.496319,0.578126,0.674764,0.762475,0.412037,0.182626,0.666866,0.897186,0.848013,0.935137,0.843661,0.285645,0.0973757,0.491235,0.149488,0.91986,0.332287,0.357393,0.868701,0.770667,0.650494,0.146706,0.642176,0.800853,0.874918,0.0878334,0.879659,0.563863,0.811378,0.846671,0.244662,0.533577,0.642587,0.0805314,0.615276,0.501106,0.628927,0.724254,0.0735134,0.518657,0.0374048,0.600814,0.187474,0.880844,0.150535,0.257234,0.714772,0.241323,0.925683,0.795029,0.377167,0.202019,0.74141,0.231499,0.0413252,0.824396,0.487513,0.496577,0.209533,0.585761,0.349504,0.444722,0.85839,0.422594,0.82911,0.654574,0.123672,0.900051,0.332862,0.878291,0.981465,0.543778,0.603879,0.847928,0.62278,0.348716,0.678965,0.0825475,0.541777,0.20965,0.604353,0.382526,0.901441,0.476918,0.027443,0.18095,0.510059,0.751059,0.0916477,0.815852,0.600639,0.0336351,0.221797,0.705772,0.238475,0.963479,0.17932,0.765518,0.98293,0.109443,0.937842,0.979062,0.422554,0.300193,0.414564,0.790905,0.644089,0.715988,0.718188,0.628315,0.343239,0.0687722,0.675142,0.13979,0.788422,0.0945851,0.108024,0.864019,0.944699,0.656719,0.52685,0.563541,0.544431,0.0126152,0.524959,0.510876,0.298579,0.245752,0.851244,0.852787,0.633631,0.788752,0.382051,0.642745,0.960555,0.163249,0.404681,0.652414,0.155801,0.180079,0.941373,0.644119,0.186947,0.532619,0.712389,0.0783283,0.26765,0.899838,0.404847,0.869571,0.239583,0.770358,0.758789,0.79442,0.25196,0.265061,0.684756,0.292099,0.687634,0.236565,0.0453657,0.508146,0.744865,0.127605,0.553424,0.76158,0.689244,0.025965,0.787852,0.389058,0.448126,0.588937,0.640597,0.400141,0.478035,0.120664,0.753219,0.872184,0.101594,0.947354,0.0440865,0.805819,0.599846,0.673648,0.192191,0.699222,0.964169,0.0398074,0.40516,0.376653,0.965716,0.450475,0.659419,0.614604,0.381235,0.0220886,0.188868,0.424048,0.013987,0.195494,0.998552,0.368266,0.585041,0.167493,0.92259,0.943426,0.313077,0.155401,0.201205,0.890355,0.308171,0.337856,0.661843,0.87616,0.455724,0.401722,0.596471,0.429122,0.730586,0.0479004,0.045995,0.108016,0.918703,0.14929,0.187434,0.957676,0.532496,0.365981,0.611808,0.75821,0.890133,0.978976,0.980602,0.0384343,0.214396,0.420654,0.290987,0.952796,0.907796,0.522633,0.836765,0.989846,0.936258,0.0658746,0.782382,0.202711,0.872257,0.218389,0.869551,0.329971,0.179185,0.380966,0.296289,0.593804,0.493803,0.288153,0.644235,0.160405,0.903266,0.673241,0.823926,0.335333,0.62576,0.657713,0.380196,0.586405,0.210741,0.507821,0.763228,0.901433,0.354603,0.180993,0.574577,0.62307,0.00912297,0.0337602,0.988803,0.738879,0.577082,0.339128,0.614489,0.548289,0.31055,0.982486,0.821219,0.95447,0.112284,0.160876,0.915103,0.858661,0.944452,0.412009,0.19391,0.0775499,0.484854,0.149731,0.980235,0.311336,0.74245,0.902523,0.0559849,0.131626,0.901749,0.593794,0.510989,0.27207,0.279711,0.0301661,0.26786,0.726951,0.825545,0.420306,0.108991,0.49221,0.699361,0.7879,0.31554,0.635254,0.391196,0.420093,0.373498,0.244962,0.480607,0.427268,0.529048,0.787235,0.450606,0.297732,0.670439,0.934564,0.713638,0.916398,0.0135573,0.434063,0.654447,0.681685,0.298433,0.769322,0.440752,0.16116,0.913924,0.952703,0.604465,0.0329548,0.610619,0.406045,0.975859,0.57988,0.03362,0.632838,0.830291,0.823801,0.983259,0.0327942,0.227476,0.339667,0.654974,0.365673,0.412883,0.450369,0.501932,0.952441,0.297192,0.123114,0.591216,0.352502,0.049284,0.844907,0.921314,0.446506,0.372651,0.833186,0.589345,0.437841,0.75779,0.560233,0.0978855,0.541244,0.945747,0.135893,0.0304379,0.632574,0.565119,0.841111,0.494204,0.64454,0.296016,0.512551,0.91328,0.541686,0.223607,0.435507,0.869976,0.0115798,0.0820272,0.224669,0.00528592,0.684806,0.123968,0.0855745,0.348363,0.585069,0.378492,0.892464,0.884436,0.474756,0.361499,0.747557,0.887502,0.138201,0.676749,0.397334,0.485376,0.979383,0.834772,0.744776,0.300541,0.756031,0.152031,0.782102,0.409404,0.331545,0.714992,0.438331,0.279693,0.341622,0.284274,0.518627,0.908797,0.176782,0.99967,0.0299693,0.957663,0.717521,0.920017,0.139641,0.0510367,0.672578,0.658257,0.944169,0.892739,0.045171,0.337259,0.663663,0.0639101,0.554698,0.341088,0.3168,0.783602,0.996973,0.135049,0.755891,0.637479,0.0830292,0.310345,0.390705,0.226844,0.349625,0.125543,0.627701,0.217837,0.2142,0.537045,0.464805,0.771954,0.46715,0.507599,0.820085,0.63324,0.543462,0.876906,0.911997,0.206357,0.595211,0.33045,0.541227,0.451117,0.231856,0.728137,0.346389,0.803512,0.971012,0.934629,0.275499,0.715391,0.454893,0.0874811,0.068829,0.270449,0.391465,0.104761,0.919244,0.865752,0.123085,0.991736,0.0977805,0.364819,0.767388,0.0322919,0.159175,0.895987,0.257001,0.961293,0.751182,0.467935,0.122827,0.982139,0.571859,0.146974,0.493914,0.321818,0.625151,0.848128,0.552058,0.805776,0.132193,0.637881,0.152431,0.534363,0.434576,0.462188,0.795414,0.85309,0.838918,0.854279,0.860657,0.180579,0.605196,0.238813,0.593886,0.107735,0.810525,0.948342,0.606173,0.43856,0.535932,0.70154,0.287554,0.650889,0.799424,0.12094,0.512927,0.736176,0.192777,0.39113,0.873124,0.989192,0.879159,0.65487,0.449717,0.299351,0.423288,0.382951,0.687419,0.71355,0.382393,0.75157,0.355459,0.350776,0.0551822,0.275005,|0.561508,0.740233,0.180219,0.535377,0.431707,0.829408,0.791946,0.58621,0.335871,0.817871,0.695544,0.882566,0.740337,0.321133,0.495389,0.750483,0.950699,0.644213,0.32659,0.180862,0.877171,0.730408,0.0855302,0.794063,0.261675,0.874337,0.857844,0.634117,0.176468,0.381947,0.963505,0.179653,0.585365,0.87755,0.791728,0.605427,0.810511,0.232284,0.496363,0.736663,0.608714,0.582018,0.0661747,0.536778,0.147462,0.227188,0.0384592,0.18544,0.328211,0.467117,0.170247,0.583701,0.48311,0.121608,0.573519,0.709676,0.609806,0.630654,0.302784,0.716934,0.66204,0.135333,0.242103,0.879855,0.377051,0.948489,0.482808,0.23004,0.905513,0.782645,0.578994,0.334377,0.642847,0.499609,0.529222,0.189828,0.926205,0.823638,0.134106,0.35889,0.135445,0.890146,0.448139,0.920273,0.591121,0.997324,0.388259,0.529364,0.163134,0.501835,0.757525,0.773119,0.243557,0.406857,0.060086,0.742523,0.738435,0.13631,0.225763,0.23963,0.43313,0.11182,0.198069,0.773704,0.696342,0.0494408,0.976004,0.787029,0.128426,0.0228602,0.0840823,0.960137,0.397181,0.458422,0.972346,0.560909,0.112316,0.188943,0.824519,0.432683,0.64609,0.659465,0.374791,0.641799,0.921571,0.779621,0.87261,0.972662,0.21395,0.103001,0.212381,0.0981889,0.949854,0.860473,0.378533,0.557058,0.701037,0.236893,0.86213,0.278855,0.678649,0.958211,0.820937,0.717165,0.446724,0.379942,0.634713,0.526034,0.0925256,0.536016,0.0998419,0.807154,0.037401,0.918515,0.657014,0.70836,0.976534,0.860767,0.618985,0.238223,0.406046,0.684928,0.710306,0.212084,0.0124196,0.880988,0.202079,0.478495,0.575067,0.0782583,0.09641,0.386469,0.899988,0.857146,0.859997,0.97737,0.568099,0.590722,0.510213,0.928337,0.635478,0.93603,0.834355,0.105832,0.864572,0.000582635,0.308103,0.0710009,0.456623,0.0783952,0.674351,0.945409,0.622945,0.901376,0.404488,0.829443,0.949563,0.623074,0.229542,0.594705,0.115114,0.918666,0.275762,0.127719,0.601013,0.741888,0.379986,0.075443,0.687982,0.850996,0.582686,0.307284,0.652826,0.70574,0.533179,0.842488,0.6415,0.521203,0.476348,0.971285,0.918653,0.88988,0.339565,0.867531,0.56965,0.47936,0.185517,0.344696,0.515143,0.00901514,0.207415,0.626633,0.43114,0.238629,0.0658922,0.286377,0.0536708,0.125827,0.912899,0.690499,0.506595,0.536516,0.0827175,0.629772,0.993616,0.461937,0.420964,0.229876,0.383665,0.51505,0.965169,0.382091,0.250925,0.77287,0.796446,0.580611,0.266761,0.650038,0.838404,0.0490851,0.837707,0.173485,0.169597,0.894619,0.0947928,0.97345,0.309561,0.116342,0.988653,0.333219,0.0672476,0.454753,0.358108,0.646241,0.635619,0.041612,0.782242,0.0718502,0.944304,0.775024,0.954491,0.246203,0.905173,0.0458998,0.0350589,0.446162,0.214681,0.908164,0.0965991,0.9207,0.601334,0.691999,0.684775,0.196553,0.414489,0.680409,0.905726,0.137276,0.897561,0.613018,0.495454,0.224805,0.570687,0.238137,0.74699,0.0231315,0.526165,0.85377,0.994358,0.409118,0.772177,0.38596,0.85502,0.381617,0.656372,0.982869,0.872874,0.212968,0.707179,0.289518,0.582924,0.12493,0.197383,0.717622,0.954661,0.116624,0.278035,0.549229,0.233649,0.896993,0.182356,0.739701,0.479017,0.314896,0.994923,0.230743,0.695299,0.370741,0.502615,0.858118,0.265183,0.313612,0.191481,0.225456,0.0399259,0.0145177,0.481036,0.52286,0.612625,0.0404807,0.254846,0.194358,0.0372525,0.575864,0.730814,0.833145,0.544734,0.0970938,0.889095,0.542875,0.447296,0.368666,0.0455506,0.731245,0.70467,0.469886,0.172355,0.633167,0.387214,0.978409,0.224738,0.131102,0.939139,0.745063,0.363553,0.350765,0.30174,0.908919,0.495808,0.959441,0.395849,0.623544,0.0207677,0.847919,0.760914,0.598864,0.752729,0.956127,0.759572,0.891096,0.85518,0.329989,0.515631,0.0119734,0.28782,0.513088,0.252175,0.510825,0.926059,0.687665,0.317942,0.899759,0.983549,0.294627,0.815036,0.932165,0.584082,0.346109,0.570303,0.261292,0.434194,0.502499,0.402118,0.119177,0.285585,0.125699,0.257312,0.442278,0.098998,0.617656,0.0606314,0.281049,0.934898,0.115386,0.91445,0.482802,0.637955,0.0625094,0.827924,0.61903,0.548967,0.264237,0.808579,0.292423,0.610202,0.989425,0.887955,0.579854,0.629113,0.668558,0.818743,0.538266,0.396519,0.342192,0.585073,0.568284,0.292831,0.840035,0.207541,0.255508,0.729806,0.52821,0.547434,0.503714,0.914763,0.86178,0.844401,0.264145,0.952661,3.58224e-05,0.236033,0.834774,0.719355,0.616221,0.40497,0.932597,0.872072,0.793499,0.866713,0.898551,0.0940962,0.408822,0.991759,0.932826,0.145349,0.441514,0.18667,0.842679,0.985829,0.0604615,0.968826,0.104886,0.236145,0.853277,0.669066,0.310741,0.269497,0.138408,0.798892,0.781466,0.145952,0.550097,0.943266,0.758429,0.0184063,0.790993,0.992654,0.049666,0.708908,0.956965,0.814054,0.426085,0.628496,0.121139,0.164331,0.973513,0.957888,0.8159,0.656195,0.151109,0.788044,0.199107,0.66907,0.574574,0.430569,0.252806,0.886622,0.854006,0.198314,0.17552,0.208544,0.177129,0.978641,0.221045,0.497759,0.954686,0.224741,0.270844,0.485406,0.159267,0.17484,0.397426,0.60847,0.00392628,0.460839,0.547649,0.764981,0.645304,0.882817,0.474144,0.354755,0.527985,0.411215,0.279556,0.230522,0.688955,0.406059,0.43369,0.727103,0.833553,0.205489,0.712214,0.536634,0.899746,0.579277,0.587952,0.830608,0.920211,0.460054,0.464435,0.572499,0.567339,0.476001,0.954133,0.667741,0.524617,0.416623,0.679501,0.588711,0.794476,0.266757,0.0657954,0.259078,0.733208,0.828124,0.0117168,0.638319,0.509375,0.102961,0.561484,0.926603,0.549692,0.204241,0.3335,0.68735,0.0855348,0.567323,0.490676,0.728491,0.521183,0.485193,0.642477,0.631192,0.328908,0.507593,0.608309,0.230783,0.224077,0.159645,0.794553,0.662522,0.369294,0.673627,0.285438,0.150635,0.871775,0.871053,0.289639,0.773847,0.322717,0.927664,0.0565847,0.384501,0.607089,0.408075,0.273912,0.221686,0.92409,0.52427,0.887404,0.97212,0.525451,0.0901911,0.374248,0.167208,0.548518,0.253836,0.0822918,0.00581259,0.458961,0.562636,0.165203,0.382169,0.878154,0.608094,0.874907,0.585429,0.680635,0.265637,0.713181,0.0784175,0.789943,0.168333,0.267082,0.602121,0.549367,0.622049,0.305453,0.347356,0.510291,0.987329,0.601845,0.247599,0.852443,0.197193,0.74505,0.849363,0.242303,0.966845,0.0259309,0.48715,0.802554,0.191963,0.920795,0.761045,0.623302,0.91672,0.1684,0.567509,0.54785,0.44922,0.449136,0.822448,0.991933,0.616928,0.748337,0.92678,0.834338,0.856782,0.909101,0.547202,0.562623,0.738343,0.144567,0.58432,0.0774737,0.159869,0.973289,0.918136,0.415954,0.51849,0.576734,0.250098,0.97123,0.428987,0.413865,0.439483,0.0131831,0.764321,0.77799,0.668007,0.393045,0.965097,0.495633,0.95369,0.378632,0.975481,0.881334,0.858622,0.930348,0.417219,0.886796,0.879312,0.0922109,0.129084,0.0159884,0.608744,0.742201,0.0278384,0.917345,0.475781,0.559658,0.241318,0.459609,0.962539,0.448914,0.249615,0.534223,0.188663,0.926128,0.824883,0.959947,0.174549,0.601616,0.0812622,0.984972,0.356885,0.0663985,0.18369,0.0466847,0.136696,0.590804,0.964959,0.786216,0.662958,0.223865,0.497689,0.250419,0.878633,0.0379164,0.107222,0.081751,0.673843,0.905084,0.112887,0.0759847,0.678351,0.370754,0.275709,0.486595,0.15919,0.269138,0.252043,0.281999,0.148779,0.822999,0.609907,0.129259,0.732766,0.384789,0.613206,0.869212,0.180984,0.312278,0.768983,0.962931,0.195368,0.581331,0.916939,0.387912,0.636974,0.125575,0.881485,0.136545,0.536908,0.0898028,0.202206,0.0962022,0.12469,0.910053,0.890247,0.848998,0.426864,0.0636596,0.480054,0.683344,0.700031,0.834771,0.555752,0.190656,0.509472,0.320544,0.245774,0.975823,0.565981,0.220888,0.0946598,0.354342,0.361733,0.656375,0.386924,0.692356,0.0483183,0.612601,0.289506,0.565882,0.102364,0.799227,0.801119,0.130546,0.0515322,0.752579,0.686095,0.907764,0.0016579,0.996626,0.0384168,0.0445344,0.70146,0.631222,0.803506,0.628124,0.235991,0.594782,0.489352,0.938466,0.452346,0.487585,0.836555,0.185247,0.997894,0.657538,0.102333,0.369646,0.248892,0.855322,0.515206,0.58464,0.698159,0.258015,0.310268,0.532232,0.110353,0.39154,0.83561,0.475509,0.898678,0.509205,0.028307,0.93574,0.695163,0.801504,0.540767,0.791416,0.636985,0.0065217,0.0124683,0.811348,0.376342,0.850424,0.455965,0.144025,0.70426,0.853465,0.322492,0.915072,0.499512,0.557111,0.268344,0.795836,0.654805,0.978806,0.995235,0.369268,0.036772,0.420978,0.191607,0.935621,0.447765,0.73531,0.820548,0.110873,0.314387,0.883155,0.472289,0.683966,0.0826548,0.936837,0.693291,0.469499,0.64329,0.378718,0.0123556,0.942298,0.852467,0.643976,0.479345,0.767995,0.857226,0.860966,0.949235,0.893784,0.849603,0.143001,0.0551435,0.538673,0.528134,0.30497,0.0987203,0.809335,0.29924,0.498688,0.151295,0.288764,0.0188935,0.138383,0.250904,0.254762,0.984413,0.414903,0.413717,0.744173,0.578895,0.793827,0.48693,0.0693444,0.349499,0.543535,0.0463583,0.0790796,0.11964,0.551421,0.406007,0.751061,0.3634,0.631816,0.193958,0.519375,0.584049,0.210407,0.662085,0.569553,0.126045,0.690781,0.174309,0.111072,0.261711,0.522177,0.400019,0.984649,0.999848,0.751466,0.578014,0.614616,0.146747,0.139854,0.920091,0.0945357,0.726477,0.464969,0.598933,0.399649,0.229714,0.937041,0.512638,0.566466,0.527462,0.340091,0.571463,0.51931,0.873518,0.705243,0.932634,0.0415057,0.17042,0.70388,0.758552,0.401381,0.319855,0.613686,0.0821647,0.586731,0.431141,0.727664,0.414948,0.448421,0.391232,0.255285,0.808447,0.477885,|0.621638,0.823194,0.655253,0.00815046,0.557726,0.757343,0.859061,0.483723,0.821731,0.31951,0.734787,0.487067,0.351189,0.970451,0.0661309,0.538452,0.840555,0.0390189,0.0703308,0.988774,0.333754,0.0408621,0.845837,0.487521,0.708748,0.888125,0.768395,0.931989,0.297653,0.124551,0.127623,0.43718,0.451641,0.264736,0.103134,0.666686,0.59824,0.544637,0.11117,0.0545937,0.936161,0.285475,0.154779,0.715034,0.915136,0.951562,0.851707,0.275091,0.952337,0.143726,0.462277,0.676615,0.702761,0.0716397,0.663372,0.897961,0.240484,0.570748,0.115348,0.475398,0.781203,0.260241,0.435404,0.0391042,0.934434,0.960876,0.701404,0.353592,0.266258,0.225806,0.349069,0.121888,0.447066,0.595744,0.994678,0.846846,0.717252,0.796738,0.270599,0.200189,0.993464,0.547991,0.66137,0.917406,0.469961,0.876218,0.00449884,0.456222,0.447922,0.404117,0.4636,0.366529,0.048903,0.8562,0.725033,0.446574,0.530959,0.817684,0.256153,0.580015,0.738079,0.13036,0.927096,0.4587,0.53698,0.577721,0.115702,0.794078,0.0447633,0.178648,0.708855,0.447931,0.426909,0.689964,0.168537,0.526466,0.0956872,0.021781,0.923982,0.240903,0.321168,0.664878,0.0246659,0.31463,0.545003,0.838159,0.933891,0.0642623,0.0768028,0.877578,0.0933412,0.95141,0.00485933,0.110418,0.676527,0.738905,0.701316,0.586141,0.782483,0.219177,0.99034,0.644025,0.887296,0.649975,0.655009,0.925271,0.894042,0.437343,0.367935,0.291719,0.299789,0.56152,0.214643,0.5407,0.30575,0.843782,0.69089,0.147239,0.935044,0.738991,0.791497,0.0258618,0.496501,0.771657,0.666597,0.702781,0.813405,0.701734,0.577229,0.49694,0.757078,0.719125,0.552663,0.193961,0.0855383,0.954497,0.390685,0.619131,0.29434,0.436431,0.327196,0.282653,0.892416,0.237976,0.990485,0.953558,0.815226,0.281523,0.584848,0.598952,0.271025,0.113954,0.345295,0.0430773,0.768955,0.226549,0.523011,0.346473,0.304487,0.114252,0.570149,0.598856,0.018503,0.814321,0.785386,0.132683,0.263572,0.59933,0.907535,0.778219,0.147784,0.944422,0.0364596,0.203524,0.050653,0.895831,0.0668296,0.00680089,0.997401,0.0824547,0.446335,0.594402,0.492435,0.974802,0.680469,0.960792,0.765104,0.762052,0.142249,0.329456,0.821789,0.0244216,0.971432,0.367638,0.831794,0.441006,0.565517,0.399653,0.358848,0.491444,0.374976,0.827661,0.972711,0.205532,0.64749,0.780782,0.213778,0.855156,0.586755,0.131552,0.314434,0.260686,0.0288552,0.749355,0.803935,0.54416,0.416217,0.453318,0.738211,0.172597,0.645172,0.538105,0.0323703,0.726095,0.118134,0.681146,0.532463,0.113664,0.627699,0.719028,0.467586,0.513046,0.330549,0.640042,0.365892,0.289075,0.31518,0.761019,0.542694,0.591823,0.7306,0.488793,0.731205,0.467584,0.243562,0.767306,0.96515,0.700538,0.653847,0.265097,0.972776,0.968584,0.881434,0.41839,0.750289,0.338014,0.23342,0.710671,0.450564,0.147142,0.23991,0.452983,0.614698,0.362112,0.214438,0.530528,0.203384,0.38545,0.846942,0.890001,0.49665,0.441128,0.018182,0.687901,0.938486,0.493797,0.953445,0.219606,0.850261,0.270157,0.472894,0.674947,0.822772,0.25147,0.253544,0.113591,0.7589,0.670557,0.149392,0.0665239,0.846685,0.311856,0.69762,0.493024,0.191534,0.462961,0.431145,0.885763,0.0615567,0.95644,0.133136,0.20024,0.82939,0.671791,0.156284,0.719363,0.300452,0.223036,0.873822,0.623098,0.894221,0.479745,0.839684,0.422342,0.167706,0.873396,0.20132,0.808755,0.343509,0.425185,0.281644,0.488628,0.520951,0.143544,0.128551,0.169439,0.283801,0.944698,0.991057,0.968078,0.406977,0.896201,0.278552,0.912939,0.985042,0.961328,0.483339,0.260703,0.354347,0.858524,0.24635,0.639006,0.010517,0.216117,0.477718,0.00950223,0.965583,0.971968,0.778874,0.884826,0.136579,0.592305,0.182418,0.156922,0.139263,0.684383,0.157345,0.339745,0.0995615,0.213157,0.921801,0.556353,0.744724,0.733144,0.693052,0.342206,0.58004,0.87452,0.725809,0.0457618,0.0542102,0.612647,0.457902,0.638578,0.37644,0.160654,0.147646,0.530924,0.550866,0.403096,0.168138,0.46572,0.0449201,0.336577,0.730964,0.304075,0.0427357,0.0979722,0.405581,0.620389,0.407814,0.482793,0.91294,0.750635,0.24163,0.167061,0.765606,0.376598,0.451028,0.439679,0.0105583,0.0252891,0.614496,0.240973,0.410501,0.733173,0.557126,0.383468,0.588585,0.414277,0.00639057,0.345007,0.56014,0.98576,0.214869,0.744447,0.755824,0.374169,0.532761,0.615607,0.636921,0.887524,0.324121,0.0804701,0.44671,0.276297,0.405203,0.110782,0.116042,0.176556,0.472982,0.619446,0.423738,0.15471,0.192686,0.131872,0.377195,0.155391,0.384325,0.125499,0.87807,0.92234,0.640903,0.112483,0.222977,0.349132,0.870239,0.0585015,0.166534,0.436788,0.585557,0.0631667,0.15186,0.865948,0.546766,0.0699641,0.446377,0.219388,0.884931,0.43766,0.346757,0.320847,0.840447,0.371949,0.201164,0.0213117,0.908374,0.0954183,0.477815,0.158647,0.0914454,0.469704,0.625047,0.924379,0.394926,0.976057,0.791209,0.0121171,0.0184974,0.512289,0.549431,0.41829,0.968098,0.558683,0.115285,0.301911,0.613177,0.0815039,0.373953,0.830718,0.147244,0.584029,0.821528,0.960068,0.355901,0.0883418,0.942143,0.270759,0.529581,0.360655,0.0638551,0.629368,0.485737,0.102561,0.151079,0.0493697,0.25286,0.0117262,0.684431,0.537976,0.0861229,0.351123,0.454535,0.644452,0.716821,0.203172,0.555696,0.240172,0.0723206,0.740365,0.706896,0.782291,0.567934,0.724089,0.281435,0.0684929,0.405399,0.62746,0.346968,0.10956,0.722741,0.991557,0.982281,0.523874,0.794127,0.499267,0.589046,0.992603,0.800036,0.313961,0.0567839,0.0493893,0.762247,0.67952,0.581836,0.513274,0.0954343,0.107632,0.709351,0.641014,0.063976,0.017075,0.164558,0.526027,0.757709,0.75753,0.523726,0.360568,0.819473,0.501355,0.453188,0.619671,0.232454,0.486265,0.100745,0.87733,0.817171,0.992905,0.535754,0.216755,0.0388455,0.925346,0.167955,0.0987683,0.825737,0.902256,0.805592,0.938882,0.784701,0.683385,0.957279,0.888692,0.226802,0.816171,0.243223,0.730103,0.0357224,0.540898,0.693086,0.0486585,0.889772,0.98197,0.168756,0.957428,0.55982,0.218278,0.100001,0.919305,0.175128,0.0562727,0.906979,0.405822,0.263117,0.273372,0.965162,0.0728843,0.798295,0.0665396,0.638703,0.120847,0.172945,0.532903,0.944383,0.468013,0.360577,0.33897,0.403468,0.586283,0.11065,0.777959,0.496155,0.939403,0.838661,0.796013,0.393862,0.25866,0.781432,0.348556,0.49081,0.991608,0.914592,0.971141,0.0821446,0.264817,0.49296,0.161126,0.64486,0.879244,0.514058,0.0999711,0.957035,0.116685,0.729513,0.935997,0.603341,0.929398,0.887266,0.652104,0.886201,0.850772,0.973997,0.466544,0.566443,0.910242,0.230517,0.543908,0.754648,0.939265,0.949932,0.141519,0.80264,0.121773,0.450881,0.108471,0.566875,0.203055,0.456621,0.932916,0.241176,0.966596,0.877469,0.525555,0.104197,0.503406,0.244808,0.376689,0.421079,0.0611175,0.196335,0.589376,0.689011,0.361213,0.796024,0.682387,0.533969,0.10682,0.341398,0.636949,0.18065,0.825525,0.542763,0.61082,0.257046,0.0323442,0.243485,0.0714799,0.543146,0.608427,0.261175,0.170423,0.094534,0.223567,0.744429,0.680687,0.563704,0.973068,0.518172,0.727879,0.681491,0.978619,0.545296,0.940343,0.0368395,0.0481687,0.912862,0.426001,0.443158,0.390724,0.438018,0.0423588,0.352281,0.962589,0.581918,0.751993,0.461644,0.987661,0.2724,0.946336,0.0865555,0.178636,0.875462,0.00272053,0.903085,0.616815,0.676167,0.595445,0.58092,0.406217,0.808306,0.776279,0.432305,0.808107,0.0763795,0.938645,0.285622,0.843045,0.268722,0.63917,0.687784,0.564335,0.224436,0.159044,0.149739,0.014258,0.469083,0.104574,0.554622,0.617525,0.219373,0.326683,0.302072,0.902138,0.242357,0.605387,0.844359,0.990142,0.480125,0.820279,0.88041,0.994444,0.790491,0.635485,0.399314,0.863221,0.208399,0.109982,0.851976,0.114682,0.282598,0.00693536,0.0670819,0.874904,0.837488,0.718894,0.517711,0.307898,0.989319,0.0418864,0.898481,0.202338,0.648274,0.388845,0.736147,0.922639,0.684091,0.0210677,0.970385,0.312576,0.887629,0.290608,0.585205,0.243121,0.717112,0.973968,0.576486,0.00323087,0.684002,0.727274,0.114338,0.848313,0.688988,0.854884,0.797209,0.329338,0.592971,0.92593,0.0668597,0.796828,0.23813,0.871038,0.0704058,0.776028,0.536449,0.831034,0.17852,0.535641,0.0459011,0.683138,0.0639288,0.186026,0.524442,0.292778,0.479455,0.379087,0.574807,0.103341,0.0867141,0.850922,0.411189,0.188539,0.17934,0.825489,0.827213,0.965248,0.783199,0.76459,0.256028,0.350599,0.657778,0.679685,0.641266,0.0431674,0.866299,0.742253,0.58044,0.471741,0.428845,0.365047,0.737603,0.710906,0.45337,0.756789,0.354586,0.790159,0.22147,0.824703,0.652388,0.516529,0.140669,0.0577398,0.697968,0.534124,0.220651,0.642857,0.143128,0.0761173,0.691837,0.151658,0.161897,0.91501,0.0243659,0.204859,0.551427,0.511295,0.356139,0.538106,0.066413,0.785783,0.638047,0.779338,0.148117,0.122213,0.891673,0.804573,0.572971,0.177009,0.277991,0.192088,0.0679859,0.0995721,0.0575391,0.499564,0.482112,0.671866,0.771693,0.851956,0.640599,0.654333,0.815972,0.0423434,0.519196,0.310199,0.364558,0.445553,0.509341,0.443736,0.934208,0.291469,0.975372,0.642955,0.456388,0.832803,0.713064,0.766291,0.927982,0.147254,0.781493,0.356909,0.475594,0.780571,0.375517,0.280292,0.566988,0.40172,0.922594,0.972288,0.736144,0.159785,0.90777,0.748378,0.244211,0.673649,0.712359,0.316326,0.761952,0.666859,0.77684,0.549683,0.717583,0.277488,0.992007,0.047005,0.791536,0.420815,0.951482,0.43891,0.250212,0.68977,0.529198,0.31123,|0.540397,0.468505,0.882409,0.99581,0.25491,0.919428,0.32839,0.233146,0.646553,0.505117,0.699506,0.816307,0.291084,0.185902,0.155195,0.509016,0.599965,0.79898,0.20967,0.268327,0.160337,0.85939,0.35867,0.364718,0.979595,0.569311,0.543464,0.626909,0.86307,0.873776,0.162861,0.840871,0.55972,0.633999,0.237109,0.434095,0.212476,0.87002,0.800833,0.473547,0.26494,0.647715,0.744769,0.892569,0.930318,0.697508,0.706659,0.941527,0.158388,0.639405,0.318907,0.512652,0.297429,0.610752,0.809883,0.350992,0.357181,0.494832,0.201392,0.308693,0.816321,0.175501,0.824871,0.148522,0.41746,0.279726,0.340057,0.475033,0.733843,0.263397,0.143454,0.421336,0.691186,0.414981,0.5821,0.739119,0.903055,0.708665,0.501426,0.488962,0.978758,0.205736,0.800377,0.387599,0.176216,0.101328,0.90007,0.28227,0.139896,0.0167232,0.515751,0.366634,0.935125,0.720199,0.0299501,0.22775,0.645075,0.77462,0.309311,0.595608,0.906083,0.604312,0.255862,0.100905,0.0703178,0.178885,0.438132,0.679406,0.287793,0.0877806,0.446597,0.829686,0.584495,0.701692,0.991706,0.290034,0.0864861,0.940873,0.0342259,0.491896,0.423516,0.340844,0.700961,0.790708,0.226699,0.790299,0.954974,0.317711,0.924805,0.332641,0.819885,0.483912,0.456251,0.195035,0.847166,0.157425,0.653318,0.337133,0.200076,0.940837,0.385626,0.178091,0.776631,0.817857,0.16697,0.498134,0.839884,0.827947,0.998923,0.527536,0.671027,0.251254,0.575347,0.51194,0.0183696,0.23863,0.996122,0.909085,0.700639,0.16588,0.227863,0.415342,0.478277,0.79723,0.745412,0.977809,0.538777,0.820816,0.714415,0.67399,0.4491,0.638715,0.989302,0.209733,0.64611,0.0103619,0.601554,0.619714,0.0318204,0.84803,0.580275,0.880067,0.233053,0.94585,0.62246,0.926752,0.506003,0.850874,0.639758,0.00542706,0.0812207,0.750616,0.461121,0.0166484,0.963688,0.23212,0.294512,0.993203,0.20374,0.0805598,0.98739,0.234378,0.0187507,0.466357,0.88726,0.736679,0.10613,0.898079,0.543873,0.128913,0.356612,0.403384,0.595985,0.353345,0.0315655,0.565895,0.547082,0.646348,0.972111,0.27346,0.534167,0.674002,0.675952,0.587306,0.673902,0.405312,0.644246,0.207322,0.672399,0.414496,0.467252,0.238026,0.618432,0.112013,0.813819,0.0234101,0.0662411,0.956292,0.699489,0.149052,0.213241,0.568262,0.755941,0.778853,0.544588,0.180264,0.0711028,0.49028,0.360016,0.00486875,0.280762,0.819419,0.973567,0.647606,0.60814,0.844904,0.770617,0.852243,0.706504,0.147615,0.176289,0.0534598,0.75847,0.454056,0.515709,0.358183,0.610185,0.312267,0.544541,0.703791,0.447175,0.285315,0.78669,0.488452,0.609563,0.153696,0.666564,0.199167,0.554496,0.709269,0.272701,0.567452,0.81837,0.33465,0.915886,0.833768,0.352545,0.78864,0.249045,0.646518,0.751103,0.598494,0.0019334,0.120763,0.759481,0.825276,0.103471,0.268692,0.822863,0.579902,0.28622,0.0355595,0.955431,0.587768,0.254618,0.537008,0.317487,0.394692,0.0989665,0.561234,0.649272,0.556768,0.257123,0.383038,0.623615,0.845562,0.499371,0.126183,0.886206,0.675696,0.605314,0.137718,0.740581,0.223912,0.332061,0.62975,0.419569,0.113601,0.153838,0.0995955,0.733209,0.231249,0.876308,0.22895,0.518231,0.966515,0.516259,0.369313,0.659752,0.611228,0.185777,0.530622,0.668372,0.894788,0.316485,0.00511998,0.212748,0.878191,0.133266,0.584342,0.00254267,0.551775,0.42339,0.084745,0.278358,0.633683,0.136357,0.46029,0.227794,0.999802,0.909647,0.119113,0.274661,0.633552,0.24359,0.366956,0.379624,0.618302,0.0835895,0.0344083,0.932764,0.777529,0.777565,0.374548,0.545317,0.67921,0.96501,0.999862,0.369079,0.409401,0.325131,0.730898,0.00863498,0.46967,0.778262,0.299724,0.857383,0.773923,0.339896,0.205508,0.844835,0.511972,0.699537,0.54344,0.990977,0.539762,0.660115,0.176362,0.0465245,0.500868,0.830386,0.663832,0.432287,0.973253,0.751168,0.335282,0.258579,0.154969,0.0795912,0.301591,0.177809,0.40093,0.0376247,0.841996,0.818716,0.911015,0.307415,0.501789,0.0525502,0.805187,0.461084,0.794996,0.405466,0.421169,0.911627,0.35009,0.368304,0.715652,0.891225,0.57998,0.163007,0.335736,0.703497,0.00441831,0.147563,0.764959,0.563104,0.166039,0.0193413,0.815533,0.219744,0.166212,0.25235,0.271642,0.942644,0.115154,0.48651,0.593421,0.313412,0.0413365,0.878069,0.00673062,0.835951,0.0978156,0.0914649,0.657903,0.932622,0.410775,0.611227,0.526122,0.283853,0.675771,0.115139,0.24898,0.187668,0.759698,0.033555,0.119035,0.899658,0.112494,0.352305,0.00721341,0.41942,0.56821,0.506323,0.224458,0.39219,0.716786,0.27105,0.0242218,0.157206,0.228695,0.532445,0.563855,0.479005,0.579211,0.645645,0.930973,0.946738,0.151739,0.550331,0.636064,0.435987,0.943899,0.671318,0.554022,0.944917,0.844472,0.362109,0.147821,0.501837,0.37654,0.652312,0.381275,0.466501,0.205898,0.747427,0.0572047,0.402599,0.0599465,0.510158,0.840924,0.486218,0.422401,0.69713,0.243878,0.727259,0.252272,0.576779,0.0182858,0.446923,0.0715722,0.0396689,0.437929,0.681111,0.417199,0.717,0.377482,0.0711666,0.640468,0.98436,0.8405,0.391955,0.516573,0.278119,0.369102,0.901037,0.259346,0.0153558,0.895784,0.930077,0.0778378,0.602304,0.0560077,0.43412,0.486272,0.24895,0.33662,0.979203,0.725791,0.606734,0.939157,0.0782696,0.371818,0.0144334,0.30355,0.815192,0.226175,0.149778,0.407293,0.502655,0.625788,0.607869,0.0310785,0.522833,0.464172,0.530762,0.99353,0.103512,0.139913,0.795337,0.750447,0.832659,0.147845,0.239412,0.67927,0.993627,0.811146,0.519677,0.51135,0.216017,0.807868,0.649787,0.369994,0.693909,0.314098,0.382582,0.959182,0.141571,0.744293,0.461348,0.0330164,0.571905,0.478695,0.854623,0.119555,0.618579,0.751107,0.792641,0.143365,0.922227,0.167191,0.719232,0.0620261,0.0268974,0.0655512,0.335367,0.242621,0.176071,0.0996315,0.800848,0.609715,0.65081,0.785236,0.338525,0.645265,0.510382,0.398517,0.928576,0.773722,0.857383,0.0196273,0.333027,0.604089,0.310374,0.959928,0.969655,0.674569,0.604506,0.128012,0.513717,0.151189,0.927419,0.693337,0.0365727,0.679304,0.915576,0.0366367,0.849056,0.000775278,0.378046,0.303047,0.258251,0.859235,0.780217,0.292621,0.540034,0.625951,0.657172,0.419081,0.79216,0.616233,0.324615,0.653991,0.83872,0.0380822,0.620133,0.523449,0.675885,0.745297,0.403157,0.999024,0.478028,0.0707067,0.93619,0.0366608,0.971052,0.828096,0.139539,0.157924,0.929939,0.424028,0.565948,0.87211,0.519593,0.959506,0.0474327,0.369472,0.846604,0.902878,0.419577,0.283221,0.357135,0.814066,0.59925,0.920153,0.597294,0.642044,0.34742,0.0956083,0.542173,0.120273,0.848873,0.448317,0.874846,0.887582,0.906393,0.441044,0.0918114,0.300294,0.876495,0.874036,0.897568,0.362493,0.157625,0.870911,0.861504,0.490957,0.48109,0.830478,0.28198,0.857426,0.747052,0.140458,0.865622,0.414545,0.646468,0.506975,0.354512,0.844718,0.245355,0.948171,0.15799,0.661446,0.919094,0.23881,0.217638,0.45925,0.189335,0.845271,0.0324882,0.482677,0.959996,0.204386,0.863004,0.753169,0.279582,0.168529,0.48845,0.884071,0.00178868,0.281775,0.0554236,0.967438,0.17363,0.203614,0.217763,0.337433,0.881676,0.139481,0.0638304,0.69301,0.488022,0.397458,0.780778,0.149125,0.2609,0.554668,0.894067,0.757897,0.411617,0.0200233,0.0257768,0.854769,0.229036,0.725124,0.813099,0.545537,0.250339,0.53873,0.952384,0.775416,0.37351,0.98007,0.467655,0.0573008,0.965191,0.624835,0.234645,0.0129343,0.203617,0.474015,0.571097,0.01144,0.41,0.699357,0.5876,0.745311,0.973156,0.431353,0.458886,0.0250151,0.416216,0.698046,0.359426,0.0184584,0.793393,0.668558,0.261812,0.311217,0.0996358,0.137874,0.714174,0.611817,0.486491,0.0802283,0.823608,0.879014,0.340558,0.53686,0.578222,0.218662,0.473009,0.712571,0.755662,0.765804,0.650401,0.971194,0.542164,0.632747,0.890286,0.375519,0.937448,0.378316,0.92685,0.520477,0.955107,0.0663494,0.38706,0.0903545,0.150887,0.572721,0.190475,0.0893874,0.837016,0.00750792,0.925345,0.823984,0.895747,0.888915,0.22585,0.845499,0.716172,0.36605,0.608738,0.0160478,0.0969421,0.180473,0.0756146,0.666314,0.583236,0.430932,0.820396,0.599852,0.505965,0.656085,0.0314159,0.155446,0.429763,0.734935,0.879341,0.79968,0.416745,0.725191,0.774434,0.929046,0.517755,0.594351,0.230929,0.230608,0.43144,0.522289,0.198925,0.678313,0.938258,0.924304,0.331082,0.543967,0.827234,0.393007,0.091555,0.17724,0.337451,0.983085,0.249806,0.285386,0.613237,0.402019,0.301531,0.748082,0.725011,0.781503,0.996608,0.701054,0.0651456,0.420719,0.764695,0.394815,0.606012,0.0383819,0.234293,0.651267,0.169888,0.842803,0.791085,0.500078,0.512109,0.205672,0.807483,0.421928,0.0966291,0.817814,0.138902,0.768286,0.257008,0.917997,0.365369,0.680064,0.0384447,0.756399,0.10578,0.368631,0.0199545,0.337593,0.839825,0.128764,0.146427,0.454269,0.368293,0.786113,0.815153,0.282903,0.548433,0.313436,0.054221,0.467979,0.995559,0.0632327,0.999885,0.359749,0.298929,0.835585,0.252794,0.771834,0.038989,0.688087,0.532601,0.262535,0.631312,0.731928,0.767386,0.312466,0.36144,0.549914,0.739935,0.898874,0.541293,0.932935,0.145266,0.913933,0.0627572,0.639898,0.00975531,0.724862,0.876981,0.166652,0.300276,0.377072,0.795623,0.780745,0.0604438,0.398631,0.804602,0.727207,0.581744,0.563492,0.154528,0.279322,0.847261,0.331732,0.194947,0.22168,0.433006,0.242924,0.871963,0.351474,0.553427,0.446656,0.622998,0.325884,0.515514,0.590797,0.545756,0.438994,0.613903,0.989232,0.514333,0.92378,0.854144,0.791881,|0.707717,0.966054,0.626437,0.97869,0.053626,0.620102,0.462273,0.339353,0.0972455,0.836343,0.701031,0.807845,0.56844,0.25154,0.785854,0.773317,0.789944,0.334895,0.119601,0.37561,0.331581,0.0480463,0.908696,0.89351,0.0107161,0.966943,0.662779,0.83625,0.0755872,0.811234,0.62565,0.556544,0.493173,0.366352,0.722267,0.977663,0.806093,0.0996353,0.619279,0.337282,0.314931,0.675068,0.998758,0.896328,0.236703,0.514734,0.38042,0.642917,0.701684,0.801796,0.704528,0.714106,0.82682,0.228747,0.547147,0.278602,0.152516,0.494916,0.96667,7.70688e-05,0.944417,0.233049,0.102303,0.460758,0.392008,0.0879101,0.655912,0.799168,0.691321,0.686212,0.285971,0.999381,0.701194,0.423144,0.226037,0.489829,0.903517,0.0457402,0.497662,0.432132,0.317157,0.426471,0.620776,0.939197,0.730634,0.375388,0.673135,0.864692,0.638181,0.944074,0.831028,0.752544,0.58063,0.430645,0.762725,0.506511,0.517545,0.712492,0.81998,0.443796,0.559069,0.0163019,0.435274,0.0654815,0.382371,0.416362,0.217238,0.462928,0.740006,0.144558,0.717725,0.278546,0.671978,0.36418,0.747758,0.333411,0.735895,0.469797,0.975619,0.284729,0.246214,0.420057,0.861457,0.495923,0.355203,0.140162,0.656993,0.0325604,0.847268,0.626521,0.25856,0.190374,0.943453,0.459292,0.295387,0.196501,0.786831,0.225446,0.273708,0.533072,0.303671,0.337598,0.221485,0.736977,0.613748,0.533919,0.331573,0.927409,0.771307,0.165615,0.336651,0.313687,0.334953,0.183811,0.30462,0.103177,0.173774,0.677834,0.452484,0.995746,0.836052,0.101381,0.0741799,0.264536,0.350694,0.887032,0.786268,0.266501,0.229606,0.408256,0.065083,0.0602724,0.419891,0.605613,0.709255,0.909744,0.997421,0.582798,0.0913347,0.55261,0.651494,0.187202,0.598871,0.242091,0.56906,0.528308,0.0311825,0.48957,0.0653616,0.918827,0.49085,0.0533299,0.497764,0.84664,0.941161,0.799652,0.452526,0.563754,0.53537,0.911303,0.792441,0.535369,0.60694,0.955187,0.102039,0.562336,0.248077,0.502317,0.519653,0.452348,0.967778,0.171067,0.974408,0.365891,0.994932,0.0533417,0.207273,0.448097,0.255586,0.879659,0.473041,0.403682,0.0835031,0.400549,0.0583043,0.773408,0.281797,0.45929,0.846525,0.261132,0.946782,0.656989,0.946783,0.667634,0.713589,0.600909,0.910572,0.667559,0.969891,0.039232,0.0479903,0.172659,0.580624,0.679985,0.726509,0.931797,0.478626,0.352853,0.508153,0.680046,0.413722,0.27999,0.413004,0.539462,0.810018,0.305983,0.890881,0.63941,0.30151,0.77137,0.401695,0.738612,0.489847,0.688934,0.73393,0.423948,0.846719,0.595491,0.626715,0.348857,0.951318,0.97593,0.496234,0.885866,0.984199,0.411683,0.258147,0.589042,0.334213,0.396895,0.0147459,0.58874,0.042699,0.854669,0.150455,0.86589,0.925684,0.0747813,0.312266,0.0329615,0.99789,0.0470082,0.873514,0.633386,0.554394,0.0329836,0.320405,0.377401,0.591063,0.0645727,0.218018,0.763113,0.378137,0.34567,0.60428,0.686281,0.598088,0.214113,0.883131,0.196225,0.132208,0.521897,0.947056,0.382614,0.822771,0.944362,0.673534,0.0675466,0.416773,0.324125,0.155168,0.571612,0.159953,0.906878,0.845481,0.887705,0.398477,0.0301629,0.829607,0.926231,0.860474,0.200261,0.943271,0.409995,0.547786,0.780038,0.182942,0.518257,0.0201526,0.210883,0.540909,0.526686,0.261603,0.147861,0.651108,0.0051266,0.533094,0.797338,0.618179,0.6043,0.731552,0.0302355,0.465675,0.786652,0.294839,0.921141,0.702723,0.843697,0.502504,0.801603,0.441267,0.258158,0.392154,0.947682,0.791197,0.24549,0.684015,0.275199,0.211096,0.441287,0.219788,0.586021,0.718894,0.72072,0.352103,0.00326526,0.802008,0.0823773,0.305098,0.190607,0.554715,0.592394,0.475602,0.19535,0.384937,0.263127,0.313404,0.873199,0.00292993,0.322208,0.33368,0.639429,0.634054,0.299711,0.560002,0.468474,0.770269,0.616547,0.847272,0.454429,0.774992,0.875625,0.0180755,0.471085,0.914139,0.799575,0.494501,0.812641,0.674022,0.697563,0.759378,0.978834,0.33656,0.905393,0.790071,0.873643,0.640742,0.384001,0.750306,0.854912,0.416706,0.768075,0.610893,0.773599,0.734868,0.547988,0.129529,0.346854,0.01292,0.797306,0.76592,0.549794,0.594871,0.0357462,0.728437,0.0289007,0.435812,0.944374,0.797909,0.783227,0.892304,0.135898,0.0641617,0.506734,0.0511932,0.881912,0.86495,0.106739,0.877937,0.703675,0.344003,0.769436,0.770545,0.353657,0.254362,0.844702,0.773164,0.238773,0.999728,0.668557,0.877719,0.920741,0.751782,0.484149,0.0228659,0.430241,0.351565,0.888844,0.882212,0.960451,0.407762,0.912589,0.589544,0.911009,0.336587,0.426548,0.15503,0.270732,0.702659,0.808594,0.242209,0.189066,0.734945,0.635248,0.66384,0.00791872,0.410824,0.0928364,0.465469,0.308951,0.277361,0.0458442,0.681628,0.0394953,0.472624,0.884674,0.238506,0.0411639,0.438977,0.8507,0.560756,0.176533,0.930167,0.95753,0.916615,0.00390702,0.201358,0.917968,0.385589,0.917792,0.139275,0.934992,0.243367,0.655953,0.422694,0.673411,0.379991,0.85103,0.0301992,0.13295,0.606906,0.691104,0.961573,0.0497946,0.419381,0.955471,0.618442,0.947704,0.217858,0.27433,0.683946,0.578293,0.55759,0.823561,0.741926,0.101604,0.804249,0.752436,0.347938,0.52254,0.817196,0.258109,0.358077,0.351848,0.80871,0.979175,0.853135,0.664363,0.0460885,0.171676,0.560932,0.946217,0.243836,0.945256,0.286646,0.791407,0.251657,0.649695,0.535632,0.0857041,0.492586,0.188302,0.89178,0.104339,0.642269,0.506545,0.0990503,0.727814,0.0359902,0.730854,0.10976,0.134686,0.802105,0.520347,0.296772,0.774812,0.417343,0.538119,0.0999503,0.479434,0.945669,0.68978,0.355589,0.826313,0.39933,0.411615,0.175193,0.479899,0.692676,0.296414,0.889386,0.0923002,0.558444,0.520976,0.214697,0.103665,0.547194,0.90935,0.230733,0.672932,0.160609,0.556367,0.434157,0.241885,0.245281,0.43068,0.360277,0.40286,0.18225,0.775034,0.824593,0.315627,0.370019,0.488041,0.0532595,0.905707,0.969502,0.359784,0.281169,0.177686,0.541661,0.805283,0.535913,0.113811,0.366958,0.558494,0.980395,0.476114,0.0454118,0.365517,0.99802,0.412021,0.732941,0.417666,0.928614,0.603702,0.50553,0.530996,0.529473,0.335589,0.0095976,0.988072,0.291691,0.598271,0.64702,0.158143,0.63947,0.0384334,0.348498,0.378542,0.115417,0.0459407,0.710076,0.345547,0.656051,0.450761,0.799556,0.747605,0.46114,0.496827,0.824749,0.106721,0.203188,0.809538,0.0160584,0.874732,0.75417,0.564516,0.477889,0.67299,0.927137,0.654034,0.494532,0.418901,0.83116,0.334784,0.876963,0.516056,0.907836,0.0938125,0.0384302,0.353589,0.321756,0.344431,0.445474,0.796297,0.146705,0.230698,0.701139,0.396927,0.914738,0.641886,0.0644055,0.755457,0.786036,0.842769,0.161093,0.319614,0.34687,0.730473,0.667322,0.327135,0.290246,0.136628,0.728909,0.606095,0.426747,0.803973,0.119257,0.250758,0.79618,0.391068,0.506531,0.4522,0.276362,0.670438,0.61636,0.668942,0.492961,0.665662,0.19484,0.0701452,0.295604,0.399819,0.195221,0.420173,0.840991,0.728369,0.6087,0.979607,0.00748765,0.96114,0.00163728,0.253165,0.350146,0.169418,0.285083,0.828631,0.169722,0.740844,0.143749,0.263187,0.194957,0.039797,0.935994,0.0378485,0.0126248,0.564238,0.307595,0.316945,0.66623,0.645999,0.57644,0.151239,0.306246,0.256919,0.674244,0.936201,0.589142,0.780615,0.293007,0.0845425,0.353464,0.646892,0.853092,0.509363,0.351099,0.328618,0.3349,0.551869,0.114936,0.738604,0.0463277,0.968609,0.202526,0.606594,0.389555,0.871439,0.669629,0.58108,0.82383,0.562292,0.791789,0.868651,0.0292237,0.29079,0.0669481,0.537587,0.0604543,0.790105,0.254783,0.668457,0.575085,0.227436,0.0720725,0.0208482,0.89774,0.10407,0.747474,0.158575,0.597306,0.0354978,0.687827,0.195841,0.368445,0.919955,0.0251015,0.225809,0.270244,0.692627,0.116865,0.863209,0.851939,0.53752,0.246045,0.685597,0.689382,0.731789,0.233155,0.902627,0.0484763,0.113724,0.906329,0.754741,0.359958,0.553924,0.274876,0.0362157,0.992447,0.236218,0.912151,0.251447,0.722386,0.175715,0.151352,0.679438,0.364635,0.82281,0.70638,0.876216,0.600032,0.547856,0.0220613,0.93664,0.203775,0.758764,0.48743,0.0360705,0.422267,0.698785,0.798425,0.497396,0.777749,0.745378,0.419924,0.389606,0.0226055,0.343716,0.442176,0.412603,0.755505,0.732234,0.987764,0.517648,0.61407,0.00502449,0.546025,0.811335,0.460303,0.932553,0.0928513,0.898859,0.949822,0.81332,0.321584,0.23325,0.410763,0.326812,0.567293,0.254521,0.60215,0.108169,0.541989,0.502781,0.00251561,0.377932,0.284354,0.256471,0.200647,0.448218,0.885857,0.00489128,0.242691,0.224602,0.313501,0.0391014,0.506077,0.17887,0.347275,0.431418,0.244226,0.841222,0.011092,0.171785,0.185617,0.388362,0.955118,0.547036,0.132945,0.712709,0.416974,0.125993,0.426705,0.36339,0.295108,0.635594,0.374159,0.190668,0.311269,0.739166,0.976077,0.174469,0.301853,0.275638,0.584215,0.65668,0.166924,0.860771,0.0889137,0.266503,0.702213,0.515488,0.435435,0.481131,0.555607,0.270351,0.839207,0.43877,0.199015,0.462108,0.706207,0.310709,0.345381,0.960887,0.83407,0.824353,0.900829,0.261041,6.41942e-05,0.279929,0.372247,0.439939,0.0603987,0.717844,0.813102,0.638757,0.997609,0.73002,0.45002,0.985364,0.923234,0.462228,0.350838,0.220081,0.89088,0.856039,0.783312,0.383984,0.184158,0.458643,0.468098,0.482843,0.669694,0.931752,0.928086,0.761292,0.417611,0.876657,0.711523,0.391841,0.985386,0.321464,0.276641,0.576916,0.295993,0.554463,0.76997,0.723904,0.589002,0.425271,0.931699,0.667156,0.928757,0.22754,0.0248794,0.60646,0.788576,0.181279,0.365799,0.0425656,|0.395611,0.83873,0.461554,0.595099,0.064484,0.114917,0.577994,0.904271,0.837093,0.357431,0.152209,0.951705,0.660913,0.911321,0.305277,0.0903753,0.120555,0.477135,0.756182,0.702046,0.443422,0.823113,0.659965,0.481438,0.370937,0.832425,0.00511515,0.859362,0.293113,0.314812,0.0337504,0.337152,0.517634,0.588521,0.487461,0.814455,0.0312531,0.417827,0.828595,0.466657,0.887306,0.774936,0.15055,0.959942,0.860092,0.618453,0.290954,0.559207,0.321101,0.27736,0.425119,0.241744,0.174259,0.854092,0.788023,0.559635,0.958832,0.789561,0.792433,0.268814,0.117076,0.331028,0.0690207,0.489974,0.826346,0.668252,0.498181,0.43892,0.912568,0.909725,0.526409,0.19388,0.237311,0.60578,0.23757,0.750947,0.347105,0.178549,0.710707,0.461782,0.1315,0.575634,0.896456,0.888791,0.328745,0.169371,0.989239,0.0281924,0.370916,0.70718,0.471196,0.297761,0.875316,0.927491,0.811812,0.747621,0.252949,0.0515768,0.32069,0.728862,0.274741,0.866577,0.48383,0.861145,0.874736,0.525994,0.860055,0.904124,0.505514,0.216046,0.226941,0.590536,0.559881,0.866144,0.191421,0.237827,0.42164,0.0470091,0.565573,0.746891,0.7414,0.758887,0.303282,0.806318,0.104067,0.474673,0.837819,0.0460529,0.217897,0.379486,0.473687,0.249077,0.9741,0.503575,0.241324,0.166867,0.65429,0.640212,0.120079,0.67351,0.816536,0.88686,0.221051,0.419163,0.227198,0.944605,0.168887,0.875785,0.0604282,0.997963,0.873951,0.433476,0.51993,0.776944,0.484192,0.201328,0.361419,0.155041,0.857195,0.670042,0.535237,0.177337,0.273266,0.120834,0.296385,0.0119605,0.78004,0.906365,0.929388,0.993902,0.281066,0.669916,0.544086,0.813396,0.966943,0.759369,0.0486177,0.201473,0.608388,0.954419,0.869885,0.126799,0.214634,0.843362,0.377549,0.695311,0.303813,0.613638,0.321565,0.979875,0.1556,0.738622,0.164145,0.0296147,0.819369,0.265515,0.170856,0.689175,0.768742,0.760613,0.696378,0.819258,0.287776,0.126593,0.237701,0.197031,0.200946,0.66101,0.766645,0.576992,0.371271,0.94258,0.915547,0.417992,0.0803565,0.751128,0.85265,0.256596,0.55682,0.528355,0.54407,0.424311,0.240591,0.388446,0.55653,0.439652,0.0787805,0.0478169,0.708499,0.849756,0.297733,0.209711,0.173412,0.818076,0.435345,0.607286,0.504036,0.0717272,0.11669,0.465359,0.323962,0.897742,0.208183,0.20748,0.801899,0.622964,0.897391,0.457405,0.352423,0.923526,0.96898,0.138982,0.935255,0.782072,0.483029,0.257315,0.892779,0.776719,0.560111,0.470802,0.583624,0.0121567,0.822683,0.222374,0.994565,0.736038,0.722113,0.554338,0.311049,0.407264,0.840048,0.447612,0.0297363,0.380962,0.344495,0.0857283,0.890473,0.378119,0.290428,0.501215,0.836009,0.895741,0.653654,0.482793,0.611263,0.390139,0.132865,0.624797,0.482204,0.893539,0.8783,0.849814,0.0510429,0.460786,0.253583,0.318849,0.670357,0.835488,0.392947,0.316545,0.971352,0.410142,0.494926,0.229323,0.905765,0.395381,0.232431,0.150595,0.472241,0.0603053,0.0399917,0.959342,0.458498,0.579934,0.123895,0.568621,0.327206,0.159194,0.158646,0.299584,0.841568,0.975176,0.0694128,0.621688,0.159585,0.123541,0.968307,0.263314,0.732003,0.82893,0.601267,0.0619057,0.823601,0.731148,0.198934,0.580453,0.369764,0.141587,0.841815,0.286237,0.214884,0.328584,0.0294421,0.802894,0.982067,0.460051,0.508323,0.300808,0.191852,0.591204,0.564392,0.891224,0.831787,0.496294,0.0381132,0.701634,0.287058,0.404092,0.909261,0.00659704,0.257577,0.368624,0.524667,0.913966,0.116854,0.0469639,0.124025,0.0608819,0.360503,0.0390745,0.978489,0.851642,0.574353,0.985967,0.13858,0.894827,0.437702,0.200571,0.562954,0.463542,0.635183,0.450477,0.627482,0.149047,0.461386,0.914618,0.799991,0.0133902,0.327376,0.654007,0.128429,0.577708,0.999635,0.918259,0.33479,0.123256,0.136765,0.116616,0.494824,0.733885,0.0943466,0.345671,0.563491,0.642532,0.277131,0.0552354,0.147937,0.11755,0.781269,0.378496,0.780475,0.342688,0.377719,0.00136143,0.843154,0.733901,0.739369,0.594494,0.81651,0.0668978,0.642798,0.828023,0.344867,0.0542555,0.277351,0.261484,0.728432,0.797193,0.435786,0.357903,0.569702,0.0989983,0.794528,0.465374,0.435707,0.174149,0.593983,0.405701,0.973883,0.0960801,0.652646,0.745355,0.241922,0.610853,0.40331,0.78973,0.811447,0.213692,0.257169,0.484414,0.549392,0.540911,0.71361,0.261768,0.516359,0.0245928,0.322089,0.28456,0.904976,0.712692,0.458694,0.187513,0.537527,0.376731,0.964254,0.786769,0.339246,0.87643,0.913125,0.573496,0.703375,0.908257,0.227469,0.599014,0.428569,0.420161,0.923176,0.452513,0.73371,0.933696,0.169777,0.0672269,0.517631,0.433718,0.531012,0.255476,0.561311,0.91306,0.497172,0.213262,0.59342,0.967076,0.461535,0.0420927,0.772377,0.386629,0.153829,0.277785,0.723925,0.0173059,0.933248,0.65295,0.539101,0.54688,0.508054,0.585422,0.753022,0.291145,0.860859,0.650317,0.0476214,0.58445,0.133458,0.826094,0.337531,0.446498,0.0979661,0.0911732,0.0353655,0.405863,0.688533,0.252307,0.567115,0.85962,0.470255,0.736704,0.420196,0.276189,0.194023,0.149534,0.346269,0.236087,0.798865,0.867965,0.855573,0.331906,0.827613,0.271645,0.617757,0.211587,0.114617,0.439498,0.844226,0.0617609,0.980335,0.643706,0.564711,0.83821,0.13971,0.333954,0.549365,0.954811,0.558662,0.181158,0.115455,0.743413,0.280306,0.776009,0.909089,0.380366,0.958716,0.560425,0.174829,0.301278,0.123288,0.982907,0.29168,0.0850149,0.143494,0.83664,0.798519,0.862013,0.962882,0.535714,0.497314,0.647809,0.444688,0.598522,0.689636,0.107844,0.569071,0.0308127,0.293028,0.0926128,0.121309,0.781322,0.327151,0.0445342,0.803418,0.366067,0.848448,0.38602,0.0670335,0.339659,0.18346,0.258518,0.191247,0.458283,0.181558,0.469682,0.536533,0.712816,0.536611,0.796171,0.688777,0.389221,0.0520803,0.305188,0.963255,0.6529,0.703229,0.581108,0.0246232,0.480416,0.938554,0.713467,0.871265,0.716441,0.55475,0.992714,0.508579,0.604593,0.317592,0.982545,0.966291,0.312207,0.039201,0.793434,0.26547,0.230524,0.975956,0.656017,0.794194,0.604616,0.468736,0.314808,0.211589,0.94552,0.147656,0.419532,0.406774,0.0526402,0.0971468,0.239013,0.486823,0.627111,0.130113,0.496279,0.977157,0.763874,0.120356,0.028512,0.63362,0.986894,0.789844,0.282441,0.558531,0.656782,0.602617,0.667584,0.0382752,0.260723,0.387302,0.823933,0.0501491,0.911258,0.0256009,0.816457,0.588605,0.951502,0.254017,0.314869,0.82905,0.389296,0.0240009,0.565362,0.564559,0.740312,0.156973,0.667856,0.818158,0.0203622,0.367103,0.790328,0.483566,0.947735,0.438001,0.581649,0.274172,0.289756,0.088352,0.629816,0.111757,0.0412634,0.436264,0.232796,0.0827012,0.116457,0.317734,0.166735,0.147265,0.35303,0.698953,0.403112,0.31395,0.520474,0.686405,0.91868,0.0950171,0.0629382,0.733362,0.898217,0.0985249,0.51567,0.304019,0.214725,0.187371,0.830022,0.0983386,0.186757,0.795923,0.249703,0.290086,0.984005,0.964729,0.023113,0.208836,0.422078,0.457659,0.937293,0.866973,0.0882753,0.203557,0.501631,0.838201,0.0346337,0.481319,0.643532,0.856988,0.325378,0.811011,0.97389,0.65315,0.418709,0.747988,0.730318,0.461304,0.946888,0.91732,0.895849,0.542751,0.230592,0.361711,0.143153,0.297307,0.835741,0.134952,0.53439,0.45836,0.337367,0.802513,0.552594,0.492789,0.152807,0.588698,0.800044,0.395411,0.0383053,0.674238,0.0665486,0.694043,0.0839704,0.646902,0.644843,0.0379265,0.205259,0.00512838,0.286036,0.891684,0.173957,0.522157,0.175888,0.030637,0.19705,0.0272601,0.179166,0.569571,0.83492,0.9735,0.142757,0.284816,0.262746,0.661301,0.261953,0.715185,0.849404,0.0761441,0.937416,0.944752,0.891231,0.919161,0.418426,0.162398,0.976977,0.704702,0.408662,0.893762,0.589436,0.707192,0.491334,0.108481,0.0141807,0.492439,0.863379,0.221538,0.992442,0.232785,0.951791,0.598082,0.86751,0.100001,0.550508,0.963191,0.767977,0.794126,0.152501,0.37517,0.29043,0.149899,0.678978,0.266524,0.0969539,0.424167,0.891272,0.430437,0.739068,0.0460602,0.844031,0.551943,0.0360326,0.608159,0.234572,0.199456,0.965994,0.689801,0.391191,0.423561,0.0850991,0.32165,0.492673,0.768675,0.789012,0.996608,0.317944,0.0422007,0.217372,0.864778,0.496866,0.479549,0.398481,0.999684,0.809671,0.260098,0.602015,0.946192,0.158991,0.86114,0.182893,0.897329,0.59268,0.265885,0.866304,0.47224,0.72781,0.887122,0.397185,0.105224,0.406394,0.663258,0.0793538,0.21258,0.843734,0.498895,0.477329,0.0045929,0.883097,0.422353,0.687876,0.47796,0.109623,0.648407,0.951703,0.888787,0.897705,0.283983,0.56367,0.973023,0.406622,0.662001,0.574766,0.820053,0.392385,0.546189,0.390863,0.0639358,0.527525,0.291417,0.481858,0.760624,0.172698,0.205162,0.38371,0.33328,0.596485,0.586378,0.322494,0.450918,0.735974,0.528994,0.112053,0.759349,0.785132,0.232046,0.690616,0.919412,0.932379,0.727828,0.539568,0.607004,0.58053,0.711518,0.330293,0.966653,0.205679,0.662484,0.608721,0.0154738,0.00112629,0.000192225,0.907806,0.309042,0.629694,0.528144,0.48553,0.961397,0.158613,0.921588,0.709307,0.150843,0.708811,0.569758,0.579874,0.029907,0.348617,0.803813,0.601318,0.450295,0.805121,0.0378487,0.554538,0.337018,0.714741,0.91187,0.568218,0.385648,0.964463,0.672714,0.916008,0.193518,0.022655,0.0761484,0.770081,0.706048,0.850684,0.0181627,0.0282913,0.035459,0.722783,0.267457,0.474624,0.203424,0.0917687,0.229957,0.422473,0.0160194,0.910419,0.108017,0.521946,0.100628,0.400563,0.53009,0.197707,0.02817,0.8305,0.552677,0.029604,0.610293,0.583274,0.361052,0.937766,|0.789585,0.156085,0.838589,0.552292,0.374171,0.855189,0.944761,0.680925,0.804817,0.572222,0.69233,0.842136,0.443749,0.764142,0.233336,0.711376,0.29675,0.644495,0.307409,0.357192,0.43116,0.522639,0.246815,0.566038,0.567539,0.195472,0.180861,0.858096,0.643974,0.686779,0.058597,0.209512,0.265501,0.863,0.71515,0.67861,0.81366,0.784934,0.809273,0.0731732,0.337156,0.278801,0.132881,0.901942,0.154291,0.0494613,0.923431,0.347662,0.448542,0.616973,0.192756,0.741073,0.733102,0.163508,0.587541,0.488105,0.445238,0.219828,0.0197175,0.610126,0.746922,0.446095,0.290431,0.750458,0.394759,0.235159,0.2826,0.277054,0.120815,0.79227,0.976626,0.740827,0.183065,0.173849,0.833112,0.562284,0.537651,0.321687,0.910907,0.157711,0.499884,0.208128,0.702589,0.147362,0.895878,0.84586,0.348112,0.0537395,0.945537,0.0483885,0.513644,0.631374,0.797294,0.130715,0.30561,0.146761,0.998807,0.0429165,0.0833317,0.831995,0.631206,0.502506,0.654256,0.602776,0.435916,0.223547,0.598736,0.973409,0.263458,0.0279166,0.959725,0.660453,0.480396,0.970311,0.672719,0.328154,0.177935,0.453045,0.872093,0.903503,0.744718,0.0526211,0.587874,0.420632,0.740859,0.345931,0.479458,0.180382,0.535304,0.485608,0.394124,0.950432,0.301118,0.371769,0.602972,0.155131,0.832923,0.600412,0.484252,0.0120797,0.304209,0.16602,0.289419,0.957865,0.356052,0.761334,0.935912,0.170634,0.988973,0.731269,0.777932,0.0151411,0.968175,0.195951,0.769149,0.348699,0.282441,0.727784,0.97796,0.932597,0.251562,0.176014,0.742662,0.99474,0.485655,0.869027,0.548014,0.0477011,0.633461,0.115035,0.436039,0.544245,0.806397,0.42907,0.8736,0.212272,0.187361,0.865494,0.45037,0.196468,0.43749,0.486168,0.0281348,0.31141,0.445843,0.645039,0.926449,0.803527,0.176658,0.970054,0.107592,0.288699,0.18518,0.939154,0.168991,0.583673,0.989242,0.364322,0.381398,0.696988,0.789563,0.436052,0.545257,0.401096,0.101915,0.567175,0.857026,0.237462,0.0595342,0.984029,0.365076,0.26957,0.961889,0.212551,0.0519366,0.689814,0.945488,0.702722,0.514589,0.574361,0.107142,0.898081,0.895128,0.109052,0.179864,0.140233,0.499285,0.278342,0.825027,0.0509225,0.484101,0.245984,0.154035,0.0539845,0.676338,0.946126,0.344859,0.659239,0.0954932,0.294525,0.67208,0.141954,0.890764,0.625368,0.743007,0.185162,0.693336,0.576133,0.727165,0.170856,0.0492845,0.833751,0.162634,0.166913,0.49062,0.0756957,0.0597011,0.59987,0.0771072,0.0105473,0.973474,0.460008,0.509828,0.160146,0.288276,0.977993,0.091443,0.635609,0.0186754,0.285273,0.404898,0.457037,0.576985,0.629228,0.827473,0.582338,0.963433,0.903859,0.801278,0.155862,0.791946,0.103409,0.781656,0.974835,0.59733,0.407025,0.97102,0.919469,0.578185,0.754803,0.327274,0.587574,0.460736,0.713605,0.604608,0.975276,0.790095,0.61222,0.319234,0.133602,0.521468,0.789728,0.59626,0.242852,0.845244,0.325134,0.945327,0.916444,0.862256,0.111905,0.864215,0.987719,0.651693,0.592968,0.87671,0.278983,0.799495,0.284226,0.355334,0.480697,0.732311,0.803478,0.844928,0.878116,0.364367,0.685971,0.443907,0.120083,0.835676,0.980466,0.052345,0.525445,0.964759,0.941757,0.482059,0.0579552,0.836714,0.44199,0.382992,0.234826,0.911718,0.63124,0.37604,0.31987,0.00529635,0.796865,0.736014,0.229978,0.62116,0.617336,0.477543,0.513384,0.663692,0.437381,0.453045,0.944709,0.869417,0.847736,0.575341,0.293595,0.86211,0.0649147,0.239991,0.434087,0.694844,0.610547,0.877503,0.632869,0.57138,0.285673,0.618599,0.341961,0.366395,0.343775,0.0874087,0.299115,0.314639,0.39212,0.39099,0.370593,0.971437,0.357517,0.266266,0.0239058,0.16685,0.610261,0.248932,0.877659,0.830778,0.815448,0.100991,0.0901546,0.345774,0.982186,0.0909884,0.0407899,0.996515,0.925139,0.0595533,0.996617,0.942459,0.568658,0.294024,0.0171464,0.884361,0.548584,0.254291,0.66569,0.298753,0.875797,0.0490593,0.240398,0.990712,0.207435,0.582945,0.612538,0.497008,0.656565,0.23227,0.70001,0.639193,0.199716,0.964402,0.467483,0.946021,0.11491,0.963668,0.687285,0.575899,0.745599,0.621236,0.327798,0.153661,0.591829,0.948723,0.263009,0.930314,0.407514,0.153138,0.545743,0.439326,0.883188,0.309723,0.556403,0.802311,0.277197,0.824007,0.489873,0.0174304,0.309749,0.389296,0.529677,0.976378,0.614706,0.689552,0.843315,0.404441,0.832063,0.711042,0.779203,0.660665,0.762892,0.0984699,0.118302,0.643028,0.54862,0.643775,0.596623,0.67643,0.913162,0.445908,0.11637,0.0464346,0.398193,0.926508,0.841514,0.464386,0.562864,0.454852,0.541375,0.600938,0.871746,0.863499,0.541359,0.549735,0.236482,0.672952,0.15532,0.617865,0.700855,0.000980973,0.758182,0.651871,0.0777407,0.394973,0.527792,0.0079934,0.900229,0.14678,0.671501,0.720303,0.814793,0.181539,0.69763,0.944597,0.733502,0.299474,0.442507,0.486486,0.0491766,0.919794,0.169762,0.0484243,0.166268,0.973273,0.370067,0.192213,0.522921,0.325596,0.961575,0.65682,0.451806,0.217855,0.854352,0.575301,0.586954,0.680973,0.348925,0.552771,0.68683,0.968868,0.659829,0.0693408,0.0247183,0.939624,0.403406,0.599426,0.0862783,0.179847,0.736154,0.702923,0.981661,0.758586,0.375117,0.679702,0.44641,0.489091,0.70843,0.631343,0.931447,0.149379,0.581091,0.204333,0.791232,0.287184,0.417913,0.470196,0.0820107,0.145939,0.572287,0.390058,0.624812,0.363258,0.361321,0.273182,0.514495,0.380874,0.785683,0.378467,0.0118492,0.736997,0.255309,0.887035,0.532749,0.936082,0.164813,0.720742,0.175993,0.81608,0.15317,0.72394,0.184565,0.0132003,0.338233,0.228304,0.273684,0.0270767,0.833236,0.187199,0.958221,0.404798,0.426521,0.930405,0.0339966,0.460041,0.116026,0.836977,0.779407,0.340188,0.156,0.0812854,0.109156,0.530191,0.178058,0.710197,0.354674,0.23615,0.0529461,0.716929,0.780873,0.210887,0.102491,0.389194,0.658027,0.956778,0.899969,0.724675,0.2315,0.108083,0.790656,0.421483,0.747459,0.910229,0.715829,0.434701,0.46261,0.893032,0.332264,0.217524,0.66717,0.903293,0.62083,0.809687,0.138181,0.117248,0.00427562,0.0702516,0.168161,0.709829,0.422569,0.179901,0.954486,0.752712,0.571317,0.893327,0.297319,0.106484,0.296145,0.692479,0.846139,0.157296,0.148637,0.220126,0.0353853,0.724731,0.3012,0.378601,0.303087,0.408928,0.899855,0.536814,0.72561,0.978637,0.159916,0.0192195,0.252616,0.569892,0.566779,0.358031,0.404926,0.51698,0.494949,0.541546,0.749066,0.942187,0.210738,0.782402,0.090876,0.0151043,0.432512,0.0354818,0.621036,0.960577,0.212108,0.953129,0.740101,0.445203,0.721986,0.910789,0.666413,0.726743,0.898048,0.136018,0.857567,0.0106872,0.844728,0.0701242,0.271144,0.779444,0.0341453,0.622586,0.397665,0.936933,0.574287,0.547267,0.244147,0.554601,0.475873,0.683915,0.959373,0.965147,0.774019,0.411703,0.150669,0.651978,0.518363,0.130038,0.704887,0.337732,0.77514,0.779854,0.537428,0.761754,0.94323,0.0164306,0.347106,0.444208,0.0554225,0.863021,0.403242,0.554254,0.300967,0.489188,0.219616,0.365371,0.592673,0.656166,0.552603,0.100581,0.902377,0.520396,0.378846,0.61523,0.303707,0.192397,0.166648,0.694565,0.740399,0.35756,0.545148,0.666999,0.708107,0.73719,0.385446,0.887476,0.757692,0.300177,0.527351,0.965974,0.668094,0.120179,0.649821,0.24046,0.0372232,0.431217,0.18255,0.411037,0.0327366,0.996,0.0395959,0.281668,0.770655,0.673701,0.918243,0.53089,0.417835,0.0697944,0.0530647,0.0701804,0.159433,0.990203,0.158997,0.0704646,0.275623,0.899644,0.0609444,0.695961,0.82303,0.927446,0.862903,0.8132,0.571661,0.975393,0.324762,0.168557,0.570056,0.516342,0.0821213,0.00166172,0.852252,0.682986,0.485619,0.532101,0.32511,0.534843,0.162441,0.404012,0.380086,0.279967,0.714787,0.580835,0.81352,0.875929,0.997861,0.19625,0.71748,0.521735,0.142493,0.670529,0.614487,0.825801,0.169967,0.847029,0.795442,0.803182,0.236854,0.547338,0.152796,0.299881,0.483431,0.941033,0.585679,0.467613,0.710773,0.704623,0.940114,0.440087,0.715031,0.773508,0.689129,0.786555,0.0566392,0.39172,0.451626,0.655395,0.56506,0.8231,0.414068,0.892656,0.705089,0.447182,0.787109,0.554362,0.921273,0.726711,0.576403,0.862497,0.677942,0.263509,0.534425,0.685943,0.0148177,0.968792,0.21505,0.0301298,0.85099,0.661866,0.893683,0.70158,0.931276,0.500572,0.915461,0.183937,0.828133,0.455263,0.375628,0.389953,0.503375,0.908316,0.264248,0.256268,0.649037,0.517683,0.566365,0.00793976,0.146528,0.0529617,0.309816,0.649628,0.252544,0.928724,0.0604002,0.00448722,0.228514,0.619393,0.553788,0.934378,0.991401,0.331508,0.479954,0.0860813,0.744025,0.0949981,0.858723,0.324693,0.654453,0.817033,0.524432,0.0579123,0.103655,0.849044,0.708546,0.817209,0.727312,0.605743,0.353795,0.652047,0.19821,0.540297,0.569402,0.814558,0.683147,0.706702,0.573134,0.195988,0.434848,0.993573,0.656757,0.336027,0.974456,0.462236,0.391879,0.308857,0.169917,0.550122,0.322922,0.796475,0.013101,0.237309,0.584372,0.346143,0.655021,0.138285,0.880566,0.369166,0.3178,0.675119,0.0997537,0.28611,0.225486,0.454712,0.511498,0.94428,0.116791,0.651087,0.14258,0.289221,0.0460141,0.539287,0.56977,0.0648385,0.276717,0.191213,0.815652,0.963605,0.791256,0.103913,0.0957305,0.81489,0.655794,0.409449,0.269929,0.742012,0.123213,0.745396,0.555881,0.46044,0.883552,0.193702,0.668876,0.871543,0.142239,0.694097,0.106335,0.505464,0.664122,0.944867,0.0755487,0.440418,0.0923141,0.481098,0.70175,0.612759,0.949213,0.001212,0.0444514,0.573105,0.37602,0.818597,0.563712,|0.984607,0.632174,0.0333999,0.123612,0.635636,0.200512,0.135236,0.760219,0.555578,0.980464,0.883156,0.0404477,0.353791,0.771618,0.615325,0.401382,0.793274,0.0413781,0.544197,0.50582,0.698663,0.652984,0.149445,0.657098,0.080997,0.942904,0.908318,0.269002,0.35738,0.18411,0.150366,0.139401,0.446376,0.207927,0.636495,0.136175,0.525565,0.575557,0.412776,0.929285,0.985054,0.831387,0.477179,0.851433,0.929694,0.548001,0.678775,0.603207,0.613546,0.87939,0.798245,0.375793,0.661429,0.786879,0.70395,0.171509,0.720581,0.739838,0.508336,0.126117,0.437892,0.683064,0.00174624,0.317911,0.562332,0.435533,0.837815,0.689835,0.0860053,0.340028,0.910697,0.229576,0.562135,0.597925,0.567605,0.469886,0.232726,0.241559,0.62111,0.322945,0.118501,0.109031,0.686356,0.730578,0.601086,0.966042,0.442812,0.705766,0.70454,0.795109,0.117469,0.902478,0.915551,0.662202,0.0810475,0.464321,0.918352,0.970054,0.598513,0.319982,0.857237,0.719679,0.918029,0.034137,0.855499,0.442111,0.309421,0.775877,0.844101,0.151665,0.0276085,0.384881,0.858263,0.588694,0.31513,0.360037,0.162031,0.597003,0.25929,0.749807,0.888684,0.485054,0.875725,0.0915447,0.0481576,0.180183,0.444644,0.687892,0.778131,0.0402943,0.0444338,0.591881,0.975139,0.399052,0.293564,0.146326,0.762623,0.474231,0.9446,0.617426,0.34936,0.521217,0.734743,0.264395,0.541048,0.95249,0.806682,0.8004,0.753733,0.817242,0.668141,0.691993,0.725352,0.952114,0.340429,0.859181,0.186442,0.765811,0.400243,0.0340286,0.61701,0.650255,0.831346,0.0797028,0.204013,0.935493,0.4535,0.535534,0.601153,0.212247,0.860021,0.946963,0.246217,0.640011,0.10933,0.637154,0.234215,0.247472,0.504591,0.421667,0.0210901,0.895246,0.363676,0.193136,0.852055,0.150969,0.813805,0.866593,0.000167847,0.656126,0.676719,0.245638,0.369306,0.0182447,0.334977,0.3264,0.499354,0.881758,0.971282,0.0263252,0.303071,0.518756,0.232502,0.0551921,0.0853165,0.0926079,0.929835,0.0144842,0.259491,0.0224764,0.784238,0.363254,0.354316,0.773878,0.485673,0.611865,0.525229,0.129034,0.0732371,0.693647,0.262149,0.285331,0.721881,0.166114,0.737803,0.675443,0.857315,0.474997,0.898612,0.602833,0.972124,0.292729,0.521731,0.113099,0.637797,0.319343,0.00445324,0.905217,0.812629,0.00831825,0.846959,0.84516,0.860008,0.754507,0.599276,0.299842,0.946213,0.334701,0.218424,0.546213,0.762399,0.286652,0.890499,0.203029,0.037102,0.391164,0.854519,0.457036,0.914754,0.303418,0.61048,0.752276,0.0384405,0.87452,0.37372,0.901938,0.924455,0.225659,0.55803,0.792194,0.362094,0.864037,0.101558,0.548482,0.0447202,0.203977,0.30692,0.861592,0.987555,0.813406,0.517833,0.529709,0.976112,0.910529,0.540638,0.845478,0.295866,0.512512,0.906702,0.7265,0.060991,0.56577,0.135016,0.413457,0.438764,0.140932,0.438226,0.943903,0.670236,0.0616592,0.91739,0.668308,0.552261,0.440628,0.0449244,0.67838,0.672186,0.683468,0.206618,0.747184,0.898163,0.44004,0.135805,0.0437334,0.759074,0.586446,0.593027,0.0761201,0.861699,0.139655,0.374766,0.00785333,0.865734,0.321674,0.729665,0.899408,0.349084,0.519242,0.758433,0.672753,0.436212,0.492201,0.374069,0.0669313,0.983725,0.695746,0.401057,0.546397,0.844341,0.502392,0.638491,0.61354,0.0164578,0.25639,0.478478,0.262984,0.144369,0.628959,0.180655,0.912231,0.660094,0.900033,0.941216,0.070258,0.858744,0.824408,0.330205,0.0952876,0.364208,0.427133,0.324964,0.322607,0.78043,0.0955887,0.365899,0.898463,0.515758,0.562636,0.135703,0.974474,0.401294,0.477848,0.853176,0.217558,0.412718,0.438504,0.0255662,0.694449,0.229223,0.435194,0.412212,0.0243144,0.326316,0.839153,0.106872,0.0876377,0.118048,0.741677,0.931583,0.300191,0.684495,0.279464,0.182,0.828615,0.418882,0.0889121,0.992468,0.222309,0.0998574,0.333554,0.577833,0.154004,0.493139,0.495291,0.884716,0.170308,0.223926,0.525419,0.149251,0.487818,0.818214,0.370151,0.325452,0.83879,0.929805,0.340953,0.450997,0.118815,0.548925,0.496481,0.70882,0.845285,0.878148,0.252981,0.00227201,0.14828,0.184767,0.877923,0.671389,0.220858,0.714831,0.913547,0.586503,0.903169,0.853267,0.299464,0.3385,0.0231021,0.924383,0.0705364,0.941297,0.365941,0.629014,0.628941,0.44326,0.274662,0.188905,0.523753,0.144723,0.662245,0.933232,0.422247,0.193681,0.99114,0.625588,0.640215,0.818828,0.943639,0.392944,0.0213631,0.832398,0.736737,0.155743,0.324417,0.243155,0.533303,0.689474,0.102521,0.835416,0.807378,0.35048,0.582621,0.160947,0.483639,0.948717,0.6405,0.160821,0.74219,0.954349,0.54559,0.184444,0.766518,0.498845,0.546215,0.877471,0.354752,0.262401,0.526142,0.450298,0.398453,0.861885,0.845254,0.340022,0.944722,0.500561,0.812404,0.438006,0.320652,0.0978882,0.896043,0.804795,0.570127,0.215599,0.393236,0.453617,0.55473,0.460739,0.592616,0.0930038,0.957847,0.490624,0.721923,0.377801,0.230993,0.976665,0.906694,0.731148,0.341409,0.0450508,0.142336,0.638853,0.387332,0.946041,0.862344,0.787886,0.0472825,0.670487,0.780682,0.868743,0.180017,0.984154,0.0828598,0.984164,0.242225,0.867866,0.520361,0.563968,0.539944,0.618889,0.977931,0.444065,0.943303,0.244736,0.824268,0.799,0.756394,0.962235,0.0793042,0.648261,0.943212,0.193829,0.27124,0.0437676,0.160625,0.633769,0.988703,0.154157,0.675639,0.738166,0.0599558,0.29575,0.331623,0.369712,0.661145,0.35505,0.71918,0.273544,0.991299,0.208619,0.635625,0.247955,0.304485,0.531487,0.666644,0.66783,0.658143,0.273976,0.295187,0.365766,0.533033,0.0947522,0.948399,0.421661,0.930281,0.131219,0.450126,0.89021,0.262603,0.000622749,0.414403,0.16148,0.431541,0.661714,0.0244319,0.806392,0.584552,0.131744,0.942745,0.434331,0.372299,0.59334,0.663387,0.778737,0.753274,0.687515,0.908643,0.153978,0.237994,0.541687,0.491154,0.524544,0.19871,0.697055,0.308189,0.536462,0.800292,0.421776,0.923451,0.886228,0.21839,0.145574,0.650797,0.351522,0.14918,0.492436,0.667605,0.283652,0.371377,0.0733106,0.868963,0.941081,0.99309,0.0210014,0.998964,0.119945,0.990345,0.663628,0.726845,0.94632,0.965507,0.6747,0.42439,0.986293,0.0126455,0.287327,0.0775667,0.522934,0.292625,0.436566,0.0156444,0.407002,0.377424,0.589014,0.794828,0.286622,0.384934,0.22388,0.650554,0.161078,0.447772,0.328259,0.956397,0.731325,0.406529,0.939901,0.211501,0.737196,0.912944,0.883351,0.145452,0.986252,0.621289,0.818231,0.422826,0.287181,0.603586,0.599657,0.550839,0.108842,0.392676,0.292098,0.858628,0.955747,0.477277,0.0688879,0.554095,0.273493,0.041117,0.0467716,0.075784,0.585711,0.706351,0.0234672,0.1743,0.893354,0.0140249,0.121381,0.277124,0.75997,0.936681,0.582344,0.73558,0.167475,0.830965,0.493994,0.792151,0.796345,0.164047,0.842245,0.00822508,0.480585,0.601448,0.0515434,0.107254,0.950944,0.627393,0.497565,0.162848,0.421914,0.546028,0.494234,0.319193,0.80589,0.523243,0.874488,0.0985461,0.131616,0.277365,0.676928,0.559855,0.899397,0.436619,0.829063,0.243688,0.0657887,0.0972097,0.296207,0.736122,0.151417,0.721268,0.773756,0.951099,0.766064,0.334531,0.237715,0.682855,0.869423,0.952536,0.553309,0.322118,0.952531,0.425975,0.732314,0.0751846,0.966318,0.64483,0.451964,0.376499,0.52948,0.908455,0.965707,0.747312,0.383281,0.873927,0.36043,0.815669,0.958291,0.992041,0.584905,0.667523,0.50343,0.233144,0.308015,0.904624,0.586664,0.924462,0.599979,0.809845,0.943269,0.731018,0.0323811,0.275674,0.437173,0.657715,0.500901,0.250275,0.502787,0.627116,0.614009,0.549378,0.448204,0.239892,0.82266,0.647376,0.32255,0.151925,0.00171679,0.405927,0.199545,0.63562,0.168104,0.120288,0.373684,0.650153,0.214218,0.101757,0.0676569,0.932094,0.719641,0.372376,0.367269,0.148076,0.345001,0.433566,0.672651,0.810981,0.982172,0.91012,0.914482,0.0715205,0.465673,0.432428,0.856508,0.157586,0.03029,0.364282,0.565205,0.316467,0.179129,0.0564643,0.706645,0.785479,0.172406,0.382756,0.0211241,0.739049,0.64575,0.998191,0.718669,0.204411,0.903134,0.484949,0.595794,0.284983,0.653714,0.926807,0.0559853,0.881208,0.669696,0.276767,0.567769,0.0965582,0.809623,0.729154,0.0433258,0.305879,0.254039,0.5411,0.0649036,0.662801,0.091358,0.509529,0.217691,0.827807,0.706044,0.67078,0.960362,0.0193985,0.378094,0.0705806,0.446745,0.975241,0.967281,0.425963,0.170343,0.976761,0.479966,0.0840805,0.138982,0.268483,0.80685,0.509667,0.622576,0.760611,0.715495,0.475289,0.347901,0.922207,0.817325,0.0865645,0.170697,0.440157,0.984275,0.12881,0.639289,0.876208,0.534258,0.426164,0.973653,0.816688,0.867778,0.470834,0.0980924,0.577572,0.503445,0.704165,0.295829,0.45675,0.18553,0.180771,0.850362,0.0102214,0.744399,0.343135,0.709924,0.851,0.729694,0.373923,0.654853,0.124367,0.0494764,0.763939,0.884453,0.494793,0.82674,0.211113,0.782092,0.921061,0.873426,0.779754,0.48357,0.380592,0.76608,0.670947,0.376614,0.999377,0.940827,0.639166,0.138311,0.807657,0.671024,0.190592,0.1418,0.849223,0.581643,0.47929,0.685222,0.890108,0.683802,0.182374,0.000137925,0.375696,0.440119,0.261185,0.988309,0.510305,0.832975,0.937158,0.241185,0.871486,0.594971,0.235666,0.262538,0.803704,0.898847,0.287951,0.771454,0.559246,0.124901,0.146342,0.967284,0.865229,0.138652,0.668842,0.455851,0.283674,0.356962,0.720836,0.554866,0.777455,0.0813549,0.562509,0.100453,0.377099,0.00463486,0.516789,0.0394751,0.826537,0.844267,0.523257,0.70179,0.362639,0.123409,0.687043,0.512219,0.337457,0.634969,0.315648,0.743381,0.930887,|0.577844,0.983361,0.414565,0.434686,0.299093,0.53843,0.225397,0.108575,0.694479,0.832227,0.879746,0.478125,0.66187,0.37051,0.354271,0.189328,0.099058,0.753408,0.261003,0.0195984,0.103849,0.78572,0.805252,0.840511,0.25655,0.083482,0.74943,0.0823001,0.759097,0.102084,0.303434,0.9451,0.30263,0.454701,0.409276,0.0250033,0.715995,0.784083,0.284885,0.18033,0.69766,0.493231,0.329559,0.44043,0.835713,0.526179,0.962477,0.22603,0.942537,0.581552,0.951676,0.952356,0.510764,0.666789,0.987794,0.146924,0.705697,0.312166,0.350009,0.90522,0.0834054,0.403975,0.940004,0.593615,0.79415,0.28932,0.824201,0.60676,0.65705,0.839102,0.595662,0.912593,0.991837,0.670745,0.317698,0.0821242,0.51583,0.225512,0.548209,0.314692,0.461066,0.463798,0.0203431,0.663871,0.612492,0.0580522,0.990965,0.0598161,0.61549,0.862292,0.35324,0.016643,0.217362,0.136983,0.673587,0.276333,0.248189,0.916607,0.803862,0.0435511,0.383961,0.770537,0.432745,0.445642,0.261077,0.556955,0.430631,0.882387,0.893912,0.54353,0.224561,0.249587,0.0417253,0.364038,0.71962,0.353773,0.613604,0.388928,0.296994,0.616929,0.690637,0.219654,0.0726041,0.741264,0.509457,0.923924,0.381742,0.239823,0.811429,0.967347,0.863599,0.250285,0.496272,0.183899,0.0133165,0.157452,0.0938531,0.679469,0.0829065,0.693982,0.556786,0.889055,0.792963,0.41734,0.766353,0.274449,0.102214,0.815568,0.854145,0.527217,0.916339,0.697859,0.359345,0.678396,0.540552,0.142192,0.837112,0.359679,0.750374,0.399807,0.128084,0.428009,0.857934,0.00642884,0.319715,0.852457,0.483966,0.225046,0.680289,0.744114,0.0403637,0.497866,0.0935774,0.119949,0.216483,0.432998,0.280261,0.651471,0.18591,0.875008,0.626196,0.146386,0.990324,0.26728,0.526515,0.287612,0.435962,0.489547,0.425253,0.831095,0.401237,0.698365,0.533767,0.182119,0.211829,0.454426,0.381293,0.390266,0.352908,0.318473,0.38683,0.378145,0.752303,0.483607,0.104988,0.746881,0.714058,0.8133,0.257166,0.226255,0.733954,0.698539,0.375623,0.5659,0.322968,0.537436,0.287667,0.393628,0.104926,0.324992,0.46718,0.913125,0.0171719,0.977486,0.0973682,0.794116,0.348616,0.977214,0.195443,0.416105,0.716037,0.322247,0.763799,0.580328,0.561681,0.401352,0.499877,0.791569,0.595033,0.132147,0.240253,0.538989,0.366091,0.747985,0.684918,0.271381,0.082602,0.97436,0.584376,0.885919,0.0825899,0.877936,0.163739,0.692156,0.582033,0.887744,0.205712,0.421915,0.717859,0.806465,0.691202,0.0516214,0.645108,0.827568,0.445675,0.179609,0.124349,0.793133,0.00214684,0.812684,0.17679,0.0245965,0.788082,0.556075,0.913544,0.578448,0.0269792,0.802571,0.340921,0.572884,0.960538,0.483921,0.376366,0.966806,0.318095,0.706104,0.610423,0.280767,0.604932,0.355381,0.119575,0.605742,0.74168,0.13812,0.321424,0.136108,0.585416,0.4538,0.610045,0.701778,0.526504,0.364931,0.578023,0.79627,0.980988,0.58237,0.0830888,0.641469,0.313717,0.312882,0.250403,0.730758,0.915382,0.066348,0.628529,0.984881,0.31875,0.504035,0.838992,0.432211,0.255216,0.218367,0.403811,0.205013,0.568404,0.147132,0.251554,0.419726,0.29483,0.844641,0.956926,0.411726,0.672053,0.125769,0.592592,0.734554,0.626966,0.747437,0.166112,0.0773196,0.947796,0.0481287,0.866015,0.959804,0.516752,0.437622,0.188134,0.699364,0.644059,0.804598,0.10963,0.753759,0.925046,0.312622,0.958441,0.956178,0.216722,0.0911329,0.555289,0.708577,0.770343,0.841745,0.284786,0.604512,0.163994,0.450174,0.891052,0.861777,0.240483,0.341652,0.778174,0.812968,0.56023,0.283691,0.248083,0.0835619,0.927919,0.315896,0.0217814,0.426759,0.145319,0.257505,0.899565,0.727401,0.835844,0.044174,0.437048,0.407643,0.982018,0.850416,0.00757563,0.981848,0.586924,0.748725,0.0888989,0.508272,0.869486,0.260007,0.0180483,0.128216,0.311621,0.695958,0.613084,0.951891,0.122861,0.750706,0.832983,0.568834,0.2039,0.211138,0.625779,0.244805,0.933547,0.427629,0.515712,0.46605,0.851594,0.615362,0.163438,0.900697,0.926937,0.918498,0.233503,0.206751,0.201106,0.202943,0.362155,0.957114,0.222457,0.0550676,0.286254,0.0945415,0.17856,0.371248,0.965829,0.38821,0.667213,0.33387,0.843415,0.980623,0.632668,0.334694,0.87514,0.0128316,0.669139,0.411051,0.32649,0.597424,0.148115,0.499786,0.3911,0.790629,0.70714,0.705652,0.375673,0.503975,0.874499,0.497675,0.775879,0.384733,0.469769,0.797821,0.298223,0.0273596,0.331469,0.0842761,0.280226,0.587991,0.870332,0.126447,0.754975,0.0150723,0.290668,0.854962,0.420229,0.941515,0.752384,0.794626,0.826896,0.0213348,0.70427,0.795511,0.0725493,0.565264,0.0320625,0.665009,0.325696,0.499038,0.648204,0.621004,0.766699,0.262104,0.946519,0.912435,0.394012,0.142807,0.161313,0.793156,0.408321,0.623924,0.10085,0.692344,0.509196,0.279609,0.164564,0.430422,0.910211,0.911078,0.840507,0.627967,0.779934,0.757877,0.565152,0.266112,0.516643,0.863949,0.196755,0.860249,0.907304,0.493745,0.774094,0.454221,0.26557,0.626012,0.378806,0.358756,0.832974,0.313796,0.0279428,0.525416,0.40058,0.214133,0.390044,0.390074,0.534393,0.0424997,0.189494,0.4803,0.711963,0.32505,0.372932,0.45412,0.626174,0.809919,0.697657,0.533525,0.981205,0.885831,0.908621,0.865037,0.752944,0.717654,0.338606,0.40719,0.466151,0.0424784,0.490412,0.958971,0.850452,0.202372,0.715247,0.314752,0.692138,0.543467,0.706667,0.765581,0.917461,0.607124,0.648079,0.5681,0.576355,0.172119,0.665596,0.90298,0.149188,0.138475,0.545088,0.0372441,0.670918,0.646045,0.969356,0.487958,0.621378,0.44026,0.481981,0.632727,0.410563,0.159601,0.511069,0.703179,0.826211,0.07796,0.950305,0.455254,0.151891,0.643721,0.609564,0.537077,0.244602,0.712835,0.99384,0.0834017,0.510965,0.797071,0.0979552,0.363151,0.527555,0.353158,0.847516,0.153614,0.124872,0.188425,0.288802,0.396607,0.684111,0.356146,0.64779,0.846117,0.166785,0.0112012,0.872926,0.214534,0.328104,0.732913,0.772699,0.304617,0.662203,0.329127,0.407111,0.943108,0.357505,0.806741,0.871483,0.354592,0.957499,0.585812,0.0601867,0.741986,0.00376034,0.0614183,0.232007,0.359744,0.407292,0.632399,0.70001,0.345568,0.586515,0.0727747,0.480543,0.403836,0.161968,0.908545,0.00628901,0.324184,0.0671835,0.27844,0.819079,0.822809,0.669222,0.409954,0.162054,0.851264,0.0861101,0.343314,0.554787,0.0971169,0.452007,0.345874,0.291719,0.797748,0.961975,0.125143,0.907399,0.510056,0.188251,0.922954,0.521876,0.264915,0.283851,0.837577,0.447634,0.218365,0.782663,0.759569,0.0447484,0.604883,0.896987,0.814847,0.206293,0.264427,0.181882,0.605908,0.169914,0.356663,0.00944912,0.241183,0.174386,0.568222,0.679841,0.88424,0.929159,0.161084,0.0441434,0.680166,0.998419,0.23695,0.575175,0.120763,0.444243,0.83465,0.0510176,0.123983,0.849974,0.19659,0.299411,0.60086,0.396994,0.397938,0.709707,0.0393428,0.6776,0.536296,0.021096,0.104216,0.376531,0.222964,0.490809,0.522506,0.966291,0.648158,0.395609,0.907485,0.687374,0.27207,0.788193,0.920969,0.194593,0.916766,0.7801,0.295746,0.651049,0.668627,0.170185,0.740766,0.693767,0.927662,0.0778205,0.057081,0.852403,0.0648255,0.898661,0.863836,0.988779,0.750934,0.515428,0.357377,0.121135,0.761325,0.836368,0.2612,0.652533,0.509843,0.84539,0.324214,0.103463,0.748568,0.605586,0.893563,0.70789,0.0161855,0.350653,0.979582,0.181652,0.831995,0.914055,0.827244,0.207524,0.541926,0.685939,0.628127,0.998759,0.928881,0.949796,0.0360939,0.881856,0.622134,0.544786,0.737533,0.575557,0.306076,0.533841,0.833671,0.391574,0.744704,0.868074,0.852717,0.17951,0.823674,0.568404,0.418167,0.791486,0.606334,0.0182742,0.905299,0.740086,0.200543,0.0642321,0.232406,0.527144,0.982374,0.388186,0.274132,0.423789,0.600446,0.302753,0.350347,0.291242,0.168759,0.155855,0.223702,0.120447,0.841127,0.506067,0.851166,0.116766,0.167568,0.367207,0.22351,0.5817,0.536169,0.0904498,0.825392,0.133114,0.11955,0.983126,0.831618,0.422152,0.987752,0.488703,0.380022,0.0518704,0.259165,0.334638,0.687688,0.486625,0.530524,0.15188,0.869771,0.177726,0.111111,0.219309,0.0493879,0.50376,0.627778,0.551639,0.570994,0.580717,0.870778,0.363418,0.514704,0.488792,0.585258,0.634015,0.919446,0.787898,0.42416,0.611781,0.267811,0.227248,0.160417,0.561641,0.698681,0.259046,0.270039,0.521791,0.108738,0.927992,0.920727,0.711111,0.688909,0.454143,0.886902,0.242058,0.352318,0.546465,0.962872,0.731027,0.731278,0.147684,0.179455,0.055258,0.372307,0.954825,0.319495,0.0315051,0.558374,0.51507,0.65299,0.363542,0.634635,0.937093,0.598924,0.77048,0.244513,0.178327,0.909386,0.12641,0.943304,0.862891,0.285042,0.72249,0.387079,0.737123,0.218715,0.573884,0.790888,0.486121,0.301894,0.549582,0.00261927,0.125414,0.103568,0.641757,0.387031,0.853629,0.164525,0.845664,0.082249,0.888034,0.869181,0.107132,0.296057,0.888702,0.496535,0.572058,0.895444,0.068863,0.0298162,0.693339,0.658221,0.495967,0.389863,0.577684,0.337572,0.09604,0.227901,0.997,0.812196,0.311595,0.306585,0.482285,0.608898,0.360242,0.278539,0.559203,0.690423,0.548703,0.020775,0.813455,0.656722,0.677128,0.672651,0.82394,0.254333,0.243548,0.644006,0.47197,0.716293,0.749345,0.680471,0.340739,0.826211,0.311684,0.548829,0.0809215,0.487632,0.810665,0.968376,0.0203162,0.547216,0.151159,0.716238,0.412976,0.367127,0.942021,0.89284,0.997713,0.712789,0.900625,0.268223,0.087305,0.731702,0.102082,0.690014,0.201137,0.11396,0.544058,0.876296,0.984452,0.0807561,|0.515341,0.933335,0.830415,0.934997,0.954026,0.484702,0.938418,0.0561577,0.542916,0.945783,0.317275,0.0679378,0.155038,0.0353065,0.240895,0.0542637,0.135762,0.908814,0.877196,0.737833,0.204624,0.0513254,0.152159,0.542366,0.111856,0.750678,0.356363,0.592934,0.350084,0.99422,0.314508,0.935058,0.271048,0.273472,0.478221,0.0612031,0.770494,0.82314,0.796288,0.558412,0.328754,0.0341722,0.444893,0.794573,0.419322,0.371858,0.798518,0.778528,0.307674,0.664195,0.956078,0.210188,0.11282,0.819624,0.19722,0.849179,0.491505,0.610554,0.52562,0.770668,0.558636,0.747625,0.942685,0.754545,0.137691,0.214587,0.0372916,0.0911583,0.71291,0.97538,0.982002,0.202541,0.312748,0.600546,0.851802,0.811877,0.99187,0.849695,0.820048,0.186293,0.243314,0.924957,0.738672,0.912192,0.114253,0.889426,0.95426,0.58472,0.552809,0.523184,0.55436,0.586167,0.18588,0.364978,0.642664,0.0704384,0.0427955,0.575577,0.872148,0.140468,0.476875,0.380383,0.487778,0.817759,0.878416,0.511178,0.568571,0.508977,0.435596,0.43341,0.0651268,0.424573,0.601613,0.0712875,0.552682,0.0881724,0.0360515,0.661279,0.30096,0.0100214,0.253479,0.186591,0.568817,0.452491,0.493626,0.822601,0.156949,0.430927,0.448831,0.278073,0.770723,0.687992,0.40407,0.317987,0.587476,0.0765354,0.457684,0.959731,0.92801,0.425842,0.775876,0.962115,0.409601,0.549159,0.568531,0.252043,0.851667,0.215018,0.282059,0.668866,0.449813,0.550017,0.253422,0.2875,0.513575,0.271353,0.467385,0.521727,0.0561354,0.572005,0.219396,0.735643,0.31672,0.182257,0.511537,0.899704,0.577737,0.141913,0.138359,0.818597,0.8502,0.0678794,0.106559,0.585965,0.782892,0.640738,0.526271,0.458172,0.420672,0.454301,0.0662516,0.509234,0.39051,0.108538,0.870702,0.613569,0.994802,0.237811,0.655157,0.644228,0.347564,0.804839,0.410101,0.994225,0.612123,0.454404,0.117474,0.470044,0.318927,0.0910181,0.750908,0.575199,0.912595,0.00582099,0.73506,0.856285,0.740608,0.730739,0.635354,0.604534,0.292957,0.756476,0.418734,0.197414,0.611467,0.754404,0.69272,0.186826,0.435563,0.598162,0.590856,0.573895,0.850009,0.591496,0.292368,0.208992,0.552346,0.322918,0.209869,0.511116,0.170612,0.189395,0.526606,0.888717,0.819417,0.71193,0.795745,0.110786,0.944864,0.246989,0.396377,0.366571,0.643363,0.654079,0.881527,0.0774437,0.197827,0.0647416,0.575315,0.676167,0.12332,0.951464,0.611266,0.213087,0.0211481,0.470206,0.630372,0.00576437,0.64291,0.253794,0.901787,0.492834,0.0783221,0.671763,0.0739714,0.00871342,0.15885,0.100043,0.734606,0.767773,0.131233,0.724988,0.764479,0.663747,0.673316,0.852762,0.154066,0.598125,0.859409,0.486017,0.8933,0.732917,0.134256,0.779219,0.717093,0.56568,0.212229,0.825484,0.989771,0.937727,0.234364,0.335797,0.793941,0.296111,0.441532,0.71636,0.314625,0.695683,0.522829,0.494008,0.615532,0.622177,0.622663,0.283702,0.181363,0.559884,0.553774,0.601178,0.147661,0.13877,0.857734,0.215805,0.850989,0.562337,0.2666,0.218009,0.0530574,0.218623,0.268826,0.264732,0.212588,0.136403,0.916573,0.805602,0.731249,0.731114,0.884253,0.832768,0.198081,0.160432,0.555594,0.199355,0.335905,0.792017,0.131082,0.343781,0.166959,0.0966485,0.096893,0.73359,0.075564,0.414467,0.724207,0.404992,0.0552779,0.49734,0.57599,0.584732,0.510252,0.624344,0.451416,0.0902165,0.231554,0.908283,0.754016,0.813633,0.405112,0.715062,0.779692,0.721025,0.987359,0.662262,0.250897,0.321597,0.806541,0.559171,0.272317,0.856729,0.333255,0.772418,0.253155,0.327444,0.991586,0.561687,0.389579,0.130982,0.858006,0.116627,0.351298,0.899431,0.934737,0.526977,0.612964,0.928502,0.412779,0.632893,0.801091,0.0603387,0.881316,0.799748,0.733598,0.0626332,0.421015,0.344365,0.42099,0.823628,0.0869539,0.571706,0.857506,0.0746348,0.894963,0.663695,0.814688,0.986419,0.157076,0.873642,0.965287,0.645988,0.654584,0.565126,0.319521,0.194218,0.596575,0.257602,0.401294,0.0819514,0.895913,0.483725,0.888881,0.244438,0.494621,0.863608,0.50185,0.381865,0.765526,0.0199429,0.53951,0.408587,0.365334,0.0728068,0.751624,0.677477,0.133625,0.727376,0.930571,0.00813287,0.491549,0.763651,0.941031,0.339333,0.0279937,0.734306,0.88008,0.890781,0.129734,0.162458,0.850017,0.531625,0.443474,0.924321,0.766901,0.243888,0.224381,0.196484,0.263821,0.375904,0.394599,0.697385,0.917187,0.599316,0.725124,0.320042,0.056422,0.538667,0.924204,0.51785,0.262413,0.730883,0.22094,0.493791,0.691949,0.936173,0.163908,0.137163,0.773955,0.403915,0.792012,0.488097,0.0220363,0.715767,0.94819,0.292296,0.859409,0.715708,0.0535314,0.601947,0.436178,0.0304457,0.665101,0.261501,0.27364,0.251187,0.256709,0.665694,0.218539,0.683307,0.99038,0.454962,0.984351,0.767876,0.0503912,0.604598,0.465865,0.214864,0.28075,0.374971,0.854645,0.589455,0.388782,0.275269,0.929353,0.357914,0.830077,0.887014,0.769727,0.7203,0.802537,0.521146,0.217569,0.53236,0.52985,0.548746,0.692627,0.494121,0.544883,0.00618708,0.986353,0.110826,0.689406,0.557549,0.881285,0.368424,0.510266,0.606882,0.0611555,0.496359,0.105387,0.767641,0.820147,0.548542,0.53742,0.618828,0.480012,0.175775,0.934587,0.497494,0.873038,0.640731,0.842414,0.303769,0.858404,0.468643,0.742858,0.141334,0.901867,0.277519,0.122068,0.647336,0.975091,0.822228,0.945796,0.367658,0.281276,0.623256,0.505674,0.0576713,0.00902271,0.431991,0.228451,0.205946,0.36802,0.407762,0.945329,0.306544,0.159196,0.112618,0.525139,0.0206609,0.789812,0.497338,0.788454,0.784346,0.272255,0.868892,0.548897,0.52294,0.868915,0.818083,0.988614,0.234478,0.362524,0.615153,0.0818825,0.71812,0.154539,0.103755,0.44971,0.968697,0.888618,0.39693,0.899901,0.153528,0.137841,0.339837,0.404497,0.844085,0.750223,0.0134301,0.863037,0.109119,0.278193,0.279501,0.680005,0.929093,0.923522,0.955679,0.870213,0.36384,0.11582,0.78552,0.548969,0.72624,0.431489,0.261414,0.834214,0.416641,0.481296,0.652358,0.136244,0.616055,0.744362,0.0289798,0.0143345,0.221142,0.284419,0.173058,0.117404,0.687921,0.0158973,0.800774,0.20459,0.0760606,0.906791,0.926705,0.954654,0.239897,0.672462,0.0754485,0.474161,0.562065,0.157725,0.0447955,0.470593,0.141843,0.319593,0.482058,0.170702,0.776415,0.207672,0.113932,0.216139,0.490423,0.681608,0.330491,0.00474417,0.0284349,0.0921351,0.680042,0.930729,0.640216,0.482664,0.798757,0.051734,0.00265956,0.430857,0.542688,0.625756,0.671464,0.527894,0.278019,0.133241,0.358288,0.781076,0.915941,0.804239,0.639466,0.603536,0.923937,0.468091,0.410379,0.600763,0.812219,0.388407,0.702107,0.0876639,0.423612,0.839926,0.257967,0.242651,0.667506,0.00809044,0.046865,0.410562,0.821888,0.946132,0.533071,0.789218,0.861607,0.839273,0.978502,0.965442,0.543189,0.849385,0.478184,0.208298,0.267223,0.0541356,0.717839,0.500138,0.524989,0.125462,0.589667,0.775291,0.159211,0.15052,0.213203,0.299406,0.0200241,0.737596,0.0296365,0.128102,0.467539,0.368945,0.217414,0.439797,0.529674,0.566359,0.968649,0.157489,0.868999,0.1915,0.82318,0.901202,0.290692,0.827489,0.863703,0.343473,0.142669,0.185505,0.920155,0.0994332,0.429462,0.169813,0.00591362,0.0488095,0.980168,0.210405,0.80196,0.719096,0.879882,0.735895,0.0928102,0.376467,0.97618,0.960466,0.393381,0.254201,0.971486,0.511561,0.435323,0.459637,0.175815,0.439895,0.852098,0.385854,0.837587,0.577429,0.558787,0.547472,0.220396,0.415712,0.128374,0.580684,0.238873,0.472617,0.56462,0.0571371,0.341678,0.979173,0.117717,0.809911,0.348965,0.962894,0.388918,0.0503015,0.523503,0.376076,0.0435228,0.585229,0.956665,0.350008,0.367712,0.996278,0.763025,0.884765,0.879192,0.147032,0.373408,0.103743,0.38302,0.274677,0.224904,0.679694,0.652444,0.0957331,0.850789,0.501926,0.19124,0.113244,0.854483,0.369795,0.31189,0.187821,0.578386,0.248065,0.663338,0.830278,0.0641795,0.424586,0.862005,0.511743,0.249447,0.437526,0.414253,0.717577,0.224673,0.797773,0.588943,0.0661358,0.113864,0.773309,0.92418,0.440839,0.921539,0.686284,0.167748,0.892039,0.519952,0.312803,0.144921,0.582998,0.13884,0.468388,0.718542,0.797509,0.38417,0.281611,0.24092,0.054212,0.833511,0.848588,0.366654,0.260369,0.45499,0.0102038,0.302532,0.217166,0.40121,0.879194,0.0383317,0.0321038,0.294248,0.809449,0.390199,0.289105,0.573342,0.0500287,0.997016,0.669425,0.130683,0.584584,0.338279,0.91879,0.526794,0.232648,0.328628,0.48877,0.337299,0.0490173,0.410935,0.555159,0.319679,0.230804,0.135272,0.771931,0.531226,0.792772,0.883939,0.364805,0.473782,0.930755,0.77192,0.308466,0.123974,0.680029,0.453771,0.577922,0.82807,0.325505,0.500151,0.291923,0.220369,0.652261,0.981634,0.441032,0.302802,0.650652,0.942554,0.81788,0.492189,0.520566,0.143999,0.944427,0.791882,0.730523,0.735952,0.130389,0.0731815,0.620986,0.893464,0.596169,0.415279,0.440684,0.998488,0.798662,0.853707,0.399943,0.0679621,0.170196,0.882287,0.16373,0.781269,0.883634,0.647456,0.36275,0.875271,0.490423,0.0670742,0.71234,0.307343,0.663877,0.575014,0.0173569,0.14042,0.38204,0.671829,0.550221,0.147087,0.513425,0.758849,0.0998476,0.589429,0.731479,0.757184,0.917621,0.719971,0.71299,0.84211,0.205918,0.952297,0.268142,0.323289,0.883994,0.932134,0.855404,0.632153,0.697649,0.57464,0.778428,0.766958,0.121768,0.0693169,0.0507312,0.0479329,0.114153,0.317126,0.127273,0.7726,0.940324,0.858525,0.766532,0.307036,0.957222,0.149414,0.880583,0.265016,0.68331,0.398819,0.0391709,0.851256,|0.445251,0.732159,0.536446,0.669967,0.953592,0.144624,0.399379,0.651949,0.196015,0.679356,0.730024,0.260926,0.375184,0.158082,0.003304,0.641626,0.237468,0.0465518,0.770634,0.733842,0.580955,0.736499,0.287356,0.851559,0.470791,0.413236,0.767358,0.536806,0.820657,0.0112547,0.31082,0.915357,0.880481,0.570662,0.721584,0.169478,0.222678,0.982497,0.437076,0.0407938,0.833755,0.860689,0.723885,0.133619,0.0364689,0.669312,0.442447,0.520744,0.52709,0.822185,0.689122,0.337379,0.759545,0.522091,0.632008,0.322192,0.290392,0.530662,0.260373,0.940303,0.0825308,0.169536,0.3489,0.813899,0.578388,0.733188,0.418214,0.390886,0.501614,0.197141,0.79006,0.57581,0.354697,0.649397,0.412999,0.0640635,0.144928,0.705416,0.0213078,0.665927,0.609993,0.779159,0.611637,0.638788,0.377217,0.330489,4.47631e-05,0.837623,0.116068,0.945408,0.21959,0.81849,0.371415,0.483648,0.214952,0.582103,0.570127,0.0372511,0.773981,0.795481,0.60326,0.763653,0.506989,0.0931455,0.220882,0.566507,0.759498,0.889437,0.572283,0.997308,0.479092,0.714137,0.795417,0.323716,0.296758,0.563278,0.800427,0.382942,0.0785167,0.0449408,0.250873,0.98844,0.43395,0.67278,0.841554,0.119123,0.256718,0.1984,0.50785,0.954492,0.395693,0.818965,0.955825,0.550331,0.728207,0.374824,0.631991,0.896347,0.537415,0.0437288,0.107187,0.87268,0.843181,0.160455,0.260758,0.711189,0.0446068,0.246156,0.45565,0.925073,0.164252,0.597711,0.051391,0.438654,0.0588704,0.460623,0.477578,0.502749,0.0745305,0.0551585,0.797385,0.940092,0.45473,0.612845,0.76725,0.514905,0.893277,0.916457,0.148839,0.161992,0.295521,0.584668,0.448334,0.865219,0.965023,0.158241,0.544592,0.676986,0.858365,0.775937,0.818133,0.150499,0.759765,0.248067,0.10327,0.23466,0.289711,0.708028,0.324916,0.68629,0.438878,0.0294877,0.728548,0.853327,0.439035,0.357107,0.356519,0.88082,0.851544,0.608183,0.52139,0.0352853,0.650241,0.26329,0.747293,0.450807,0.0485499,0.441752,0.95555,0.261876,0.0187778,0.247639,0.977887,0.558603,0.115944,0.119714,0.270938,0.605816,0.0883432,0.386718,0.767742,0.190823,0.192696,0.683297,0.0836589,0.747112,0.361654,0.406978,0.337861,0.0362005,0.442921,0.515958,0.105165,0.0947496,0.577913,0.852058,0.787672,0.435567,0.157542,0.445787,0.518926,0.221151,0.313072,0.73733,0.715792,0.149702,0.456696,0.742471,0.968862,0.789827,0.359869,0.0819638,0.253048,0.272124,0.0940073,0.207543,0.673325,0.0548659,0.369772,0.328554,0.989972,0.843858,0.848128,0.411166,0.400027,0.089358,0.821675,0.870353,0.145074,0.354868,0.0411935,0.455491,0.71325,0.89879,0.840275,0.830791,0.777325,0.182571,0.481958,0.129511,0.531618,0.613265,0.714662,0.43267,0.849123,0.203881,0.685817,0.185467,0.379618,0.471023,0.259779,0.741839,0.713327,0.509001,0.19753,0.777655,0.213971,0.842097,0.0488631,0.380733,0.532383,0.588734,0.469381,0.310473,0.127895,0.278166,0.562435,0.550224,0.700284,0.255479,0.0788478,0.244898,0.868069,0.394252,0.721467,0.45065,0.619702,0.16569,0.501189,0.50593,0.992238,0.200626,0.983429,0.258623,0.892164,0.55088,0.38335,0.210083,0.923838,0.747105,0.0720234,0.334914,0.0158793,0.198152,0.880132,0.124897,0.669038,0.837173,0.0958122,0.201428,0.0671954,0.827304,0.166969,0.854257,0.115312,0.692626,0.535863,0.344114,0.422746,0.74252,0.496537,0.690433,0.12155,0.544652,0.914462,0.0912837,0.965832,0.774012,0.998437,0.69559,0.00524342,0.355291,0.127241,0.785208,0.894929,0.657571,0.712346,0.0467085,0.720496,0.236992,0.207334,0.530883,0.862919,0.929877,0.367978,0.13436,0.486845,0.34636,0.88005,0.409276,0.269316,0.535364,0.372314,0.418333,0.0551866,0.0923349,0.539735,0.0167395,0.560864,0.401646,0.918636,0.441296,0.709009,0.387741,0.228255,0.710893,0.12567,0.74836,0.168891,0.546933,0.29693,0.971862,0.0819186,0.681219,0.901627,0.744452,0.9181,0.631158,0.657508,0.643072,0.986209,0.293595,0.504181,0.787671,0.493895,0.314881,0.699256,0.289471,0.274717,0.0373851,0.626929,0.413513,0.944826,0.186913,0.151972,0.996589,0.335484,0.864917,0.830275,0.264871,0.831076,0.506095,0.823412,0.0570131,0.396363,0.85192,0.348172,0.455434,0.286208,0.255199,0.772626,0.66634,0.289567,0.346639,0.354594,0.247495,0.312289,0.0743384,0.299368,0.442658,0.85496,0.438959,0.289953,0.159595,0.615035,0.933788,0.144017,0.296122,0.480819,0.956244,0.252062,0.0873298,0.773469,0.571226,0.892424,0.0048542,0.306108,0.699507,0.118266,0.0261571,0.85714,0.825409,0.460898,0.805419,0.680524,0.674538,0.783361,0.207556,0.511003,0.0122178,0.141076,0.603524,0.0484548,0.24963,0.62516,0.624383,0.778315,0.586718,0.223149,0.188717,0.950293,0.958161,0.99924,0.801608,0.107972,0.707869,0.00339359,0.231733,0.614135,0.0510868,0.136876,0.723268,0.515287,0.758198,0.221149,0.927585,0.821323,0.807065,0.545787,0.799609,0.744326,0.750566,0.667226,0.454082,0.0811583,0.867479,0.50319,0.402507,0.26669,0.883146,0.0999396,0.668097,0.119386,0.089887,0.798151,0.196784,0.242069,0.417489,0.0893661,0.647864,0.161681,0.598157,0.523139,0.386758,0.0285228,0.267596,0.526562,0.614897,0.95895,0.0164909,0.236515,0.513458,0.341342,0.580757,0.138724,0.959796,0.000818372,0.534543,0.404699,0.510347,0.577871,0.860169,0.738345,0.458845,0.574945,0.0165836,0.286818,0.375104,0.946614,0.0917227,0.860658,0.917838,0.690773,0.882637,0.937221,0.964021,0.576883,0.389163,0.0228471,0.663952,0.0712229,0.115038,0.192202,0.956283,0.0562608,0.401266,0.204366,0.272995,0.243104,0.543464,0.146015,0.425641,0.402666,0.505181,0.775498,0.993682,0.402541,0.246937,0.298832,0.313844,0.755925,0.607199,0.435981,0.444416,0.670875,0.309443,0.0797695,0.47975,0.61515,0.271094,0.859377,0.0148555,0.824999,0.1803,0.193972,0.431008,0.68894,0.547331,0.747022,0.648953,0.089091,0.83968,0.678956,0.00531292,0.68044,0.628309,0.211132,0.737412,0.95695,0.955113,0.942031,0.0993842,0.88427,0.627524,0.440618,0.844792,0.755091,0.974043,0.959475,0.441684,0.790386,0.427786,0.557563,0.0597712,0.7716,0.975766,0.491709,0.546151,0.547474,0.239667,0.0529719,0.318328,0.285943,0.451034,0.837848,0.465243,0.951037,0.615583,0.621803,0.748324,0.0803717,0.164268,0.567271,0.200598,0.436414,0.612033,0.810987,0.102768,0.403477,0.357885,0.141398,0.700261,0.21411,0.732928,0.454591,0.316789,0.282955,0.586889,0.843376,0.822075,0.992772,0.603623,0.926168,0.132084,0.102883,0.49093,0.698086,0.968291,0.631412,0.892986,0.00656348,0.834616,0.625635,0.306428,0.30369,0.14176,0.658883,0.367422,0.796588,0.0544172,0.513974,0.264118,0.575139,0.423592,0.814116,0.483599,0.0832525,0.841751,0.372978,0.728931,0.731101,0.266053,0.144158,0.571377,0.506641,0.882881,0.100687,0.0999412,0.419625,0.659669,0.555702,0.0316549,0.6745,0.340251,0.889796,0.481448,0.42177,0.0781806,0.528552,0.0943432,0.218855,0.884789,0.272362,0.58675,0.31029,0.197093,0.602392,0.582181,0.442074,0.849278,0.463849,0.0270711,0.52134,0.47922,0.674802,0.776667,0.844454,0.621117,0.0944918,0.543251,0.433432,0.809138,0.909007,0.0969006,0.513204,0.256478,0.147542,0.952422,0.679525,0.354544,0.417148,0.471314,0.189943,0.094049,0.737472,0.288234,0.136015,0.847634,0.602874,0.575041,0.57502,0.362336,0.0995731,0.0933774,0.415691,0.0524186,0.822461,0.883273,0.399779,0.416112,0.968972,0.0695158,0.478658,0.730099,0.335385,0.207282,0.0745804,0.595306,0.148838,0.888479,0.118394,0.67424,0.461052,0.28871,0.117322,0.0268292,0.618159,0.202825,0.901577,0.220808,0.00264728,0.279622,0.144735,0.712522,0.544321,0.897483,0.253127,0.476359,0.319598,0.187906,0.00691587,0.297254,0.720328,0.960924,0.979994,0.989329,0.848956,0.768763,0.00853211,0.392781,0.632057,0.415923,0.838281,0.663792,0.145013,0.721506,0.589806,0.479064,0.824124,0.359098,0.566295,0.084736,0.465289,0.54524,0.601563,0.384019,0.423502,0.852625,0.21021,0.645718,0.384542,0.36754,0.0666438,0.140522,0.716885,0.207796,0.500358,0.931127,0.449068,0.132044,0.376223,0.574278,0.55906,0.339923,0.103505,0.339647,0.56541,0.221516,0.266884,0.535858,0.484779,0.796221,0.390353,0.825386,0.314934,0.87389,0.62889,0.946853,0.377942,0.349485,0.489369,0.375281,0.7145,0.559325,0.297448,0.407131,0.879489,0.133578,0.237978,0.376597,0.523238,0.41394,0.993766,0.903706,0.500673,0.213421,0.89791,0.55178,0.694106,0.0571429,0.202066,0.905673,0.134717,0.0568492,0.878908,0.247328,0.000731409,0.805489,0.769643,0.280961,0.22812,0.921125,0.71805,0.242567,0.107069,0.689108,0.00763965,0.493052,0.910073,0.115349,0.473877,0.153606,0.770714,0.916982,0.0531314,0.564877,0.191669,0.319043,0.157959,0.567657,0.153439,0.932764,0.88585,0.789767,0.0372162,0.196968,0.732732,0.613097,0.157901,0.195083,0.522143,0.471235,0.76284,0.480861,0.216873,0.848983,0.911463,0.653031,0.211604,0.264348,0.699479,0.0609553,0.93987,0.168831,0.907665,0.943918,0.382564,0.24774,0.217216,0.358223,0.265031,0.496272,0.536171,0.55972,0.605535,0.646137,0.399838,0.198093,0.677253,0.119587,0.357654,0.584714,0.180527,0.816441,0.139652,0.360447,0.715442,0.153556,0.982486,0.440826,0.840542,0.999288,0.733932,0.57776,0.185473,0.349704,0.0970979,0.26138,0.971692,0.705224,0.844999,0.990709,0.468515,0.799047,0.964895,0.179364,0.672182,0.894551,0.826252,0.0305032,0.151609,0.479541,0.524905,0.900619,0.335439,0.645543,0.714837,0.364725,0.713179,0.235039,0.562583,0.711169,0.730574,0.666601,0.0342366,0.26383,0.221786,0.237434,0.63526,0.173165,|0.970082,0.289823,0.120424,0.676738,0.975201,0.98298,0.0591129,0.947629,0.516965,0.830576,0.940519,0.659297,0.194848,0.667194,0.840809,0.338542,0.939677,0.98179,0.163928,0.819376,0.725741,0.388283,0.963137,0.193769,0.354902,0.789777,0.416809,0.945101,0.109617,0.266861,0.887904,0.529036,0.836209,0.161337,0.744933,0.675175,0.912434,0.0284098,0.278149,0.882496,0.618996,0.568778,0.308721,0.265478,0.458072,0.156952,0.861651,0.553758,0.634502,0.0105793,0.90583,0.315042,0.185035,0.646655,0.167626,0.52582,0.441008,0.249598,0.484133,0.833449,0.620827,0.490352,0.267315,0.571159,0.126662,0.518435,0.960259,0.361862,0.24536,0.148805,0.634402,0.149518,0.21414,0.426588,0.543611,0.0431402,0.23061,0.135784,0.030335,0.304614,0.0740697,0.511277,0.305916,0.725753,0.871499,0.0290756,0.399497,0.525016,0.457404,0.961226,0.96275,0.72891,0.403516,0.35094,0.0448719,0.0548373,0.975514,0.649833,0.276141,0.282826,0.0158076,0.927417,0.840811,0.00369328,0.09749,0.793933,0.301852,0.806918,0.156869,0.180938,0.487909,0.73682,0.467547,0.0162229,0.288768,0.0298649,0.737455,0.329086,0.293779,0.760094,0.0763413,0.963487,0.468831,0.896912,0.83992,0.0703532,0.863836,0.78279,0.532651,0.231279,0.648752,0.165222,0.672936,0.135352,0.493779,0.0851303,0.876552,0.702836,0.951837,0.900092,0.894974,0.599708,0.94171,0.414846,0.299293,0.426707,0.792178,0.243288,0.655368,0.237101,0.919405,0.0764323,0.737768,0.792744,0.611173,0.346752,0.504408,0.859839,0.191695,0.418985,0.280655,0.26886,0.0435176,0.254515,0.736246,0.0165256,0.744046,0.720657,0.86534,0.616317,0.251581,0.0706482,0.704295,0.672829,0.0094198,0.710816,0.536043,0.189241,0.620876,0.210404,0.516517,0.271969,0.996443,0.468636,0.24168,0.209726,0.652473,0.654289,0.492758,0.445584,0.155383,0.833842,0.446788,0.374997,0.372493,0.390096,0.558567,0.0895213,0.960379,0.162999,0.947338,0.320452,0.149423,0.746385,0.677701,0.0992755,0.824067,0.665042,0.718722,0.125,0.644028,0.763989,0.667732,0.91716,0.650975,0.663986,0.264495,0.954696,0.485447,0.182266,0.0519472,0.5229,0.993695,0.744787,0.23662,0.0576958,0.244136,0.181617,0.595871,0.642435,0.853418,0.680808,0.709808,0.56464,0.621671,0.829005,0.791983,0.411775,0.237774,0.968813,0.266722,0.064418,0.529769,0.985824,0.00287169,0.924073,0.84414,0.839806,0.396719,0.316572,0.470771,0.0789005,0.207065,0.569419,0.0070222,0.847247,0.291026,0.57421,0.549097,0.734777,0.414534,0.542558,0.994795,0.849356,0.167136,0.853329,0.297526,0.585416,0.221525,0.725783,0.0402228,0.68894,0.294433,0.666202,0.496071,0.270625,0.789531,0.484992,0.394088,0.456515,0.580106,0.815277,0.241029,0.764926,0.734112,0.60939,0.0147655,0.0512455,0.0227214,0.198219,0.0502881,0.58979,0.864734,0.416481,0.203987,0.440033,0.495831,0.968381,0.319806,0.72516,0.206102,0.210726,0.935751,0.667224,0.63912,0.614219,0.970725,0.154063,0.157485,0.204193,0.28269,0.0130522,0.794138,0.166359,0.203019,0.10756,0.618743,0.311372,0.139796,0.984559,0.171478,0.326889,0.480388,0.52607,0.420436,0.485885,0.373368,0.352774,0.128392,0.597574,0.942144,0.00462198,0.940541,0.454083,0.0672212,0.122242,0.481548,0.887542,0.253467,0.825109,0.914375,0.81183,0.442135,0.463329,0.295382,0.850919,0.33187,0.528209,0.442382,0.925217,0.405133,0.354471,0.496182,0.253166,0.277793,0.166465,0.46776,0.72567,0.146487,0.240116,0.588861,0.788974,0.183379,0.685146,0.0330524,0.0899238,0.307477,0.359274,0.579409,0.0542381,0.617797,0.351223,0.95259,0.239181,0.591922,0.6033,0.398833,0.181696,0.234117,0.196737,0.939558,0.0730702,0.159531,0.30401,0.468999,0.785185,0.893862,0.557952,0.293982,0.698826,0.622002,0.259017,0.263929,0.370158,0.335533,0.849999,0.247438,0.239613,0.880117,0.650931,0.53548,0.58653,0.623493,0.553132,0.360865,0.850429,0.311014,0.669131,0.00973034,0.474879,0.147899,0.0580449,0.0198313,0.960184,0.450199,0.33485,0.34982,0.0916724,0.839786,0.199516,0.169283,0.709534,0.860226,0.37169,0.980905,0.264937,0.279397,0.349911,0.0522848,0.374381,0.0581477,0.329879,0.709432,0.829799,0.366098,0.388595,0.823111,0.323073,0.687362,0.0992438,0.362187,0.334927,0.726279,0.00918263,0.985066,0.223434,0.280883,0.861196,0.851598,0.587637,0.886132,0.760566,0.418933,0.57173,0.00800431,0.923086,0.242191,0.296702,0.581597,0.249691,0.878246,0.689795,0.261869,0.890456,0.390472,0.204347,0.806727,0.979381,0.980524,0.212114,0.806279,0.915588,0.66392,0.249329,0.544956,0.488794,0.843678,0.0366471,0.191405,0.405779,0.00390589,0.539863,0.680907,0.793396,0.861315,0.45852,0.231367,0.637045,0.711234,0.554671,0.560603,0.149066,0.683672,0.429126,0.931751,0.029245,0.8654,0.935214,0.915126,0.731933,0.909181,0.432323,0.204448,0.607175,0.179388,0.38495,0.0734438,0.570668,0.804779,0.966986,0.691606,0.544672,0.75373,0.938291,0.812443,0.240126,0.536451,0.447296,0.447024,0.630906,0.250575,0.445605,0.842723,0.263782,0.429264,0.218936,0.958206,0.765142,0.386999,0.400834,0.680876,0.494859,0.991745,0.380642,0.874894,0.810646,0.359047,0.464622,0.305397,0.638894,0.152304,0.16116,0.56299,0.75104,0.458827,0.589437,0.18646,0.73432,0.465529,0.65145,0.187333,0.282173,0.368623,0.0603149,0.181628,0.971975,0.738677,0.788272,0.932878,0.759352,0.645782,0.63668,0.101243,0.564683,0.135185,0.260233,0.491891,0.397493,0.355314,0.206092,0.0550525,0.582496,0.0710248,0.894408,0.173086,0.935255,0.245331,0.622465,0.735185,0.829364,0.00132328,0.519291,0.306051,0.976585,0.340523,0.319034,0.534767,0.568209,0.543482,0.381734,0.722366,0.359696,0.428471,0.745068,0.202429,0.108888,0.416031,0.972459,0.550624,0.250108,0.598286,0.0277205,0.0566162,0.253634,0.179463,0.849818,0.309396,0.124479,0.818996,0.391758,0.601033,0.497857,0.267175,0.183347,0.709624,0.171308,0.19361,0.294963,0.505282,0.601234,0.741778,0.33921,0.731906,0.765229,0.965545,0.164845,0.893323,0.387188,0.761312,0.970059,0.218394,0.347394,0.849682,0.478798,0.477053,0.54822,0.474118,0.28396,0.957146,0.536818,0.73307,0.9034,0.525092,0.831354,0.87468,0.387747,0.935003,0.0180387,0.833634,0.389464,0.378326,0.234007,0.305281,0.255294,0.0334728,0.0776086,0.444689,0.605654,0.903508,0.638994,0.255474,0.337777,0.563348,0.807589,0.635765,0.322095,0.946113,0.907628,0.17031,0.0764157,0.737496,0.517297,0.922076,0.18285,0.214439,0.262174,0.310036,0.146835,0.0310932,0.434924,0.826611,0.255473,0.415135,0.249395,0.531608,0.432971,0.787477,0.0420735,0.539189,0.860368,0.816731,0.378306,0.962002,0.830154,0.151608,0.503339,0.691865,0.963631,0.854262,0.254503,0.208457,0.651424,0.596537,0.939327,0.978752,0.0720076,0.967414,0.59028,0.290395,0.5775,0.928894,0.414714,0.486117,0.468774,0.398199,0.27306,0.217146,0.944322,0.761681,0.637341,0.0649309,0.416498,0.107759,0.390538,0.500975,0.875996,0.930359,0.998108,0.217085,0.18099,0.298193,0.695907,0.417946,0.499574,0.634956,0.993877,0.199071,0.685443,0.227562,0.161876,0.284203,0.288323,0.98185,0.662281,0.329634,0.865396,0.464437,0.426445,0.922004,0.22102,0.794849,0.230493,0.0328896,0.945401,0.629226,0.192612,0.850697,0.697809,0.564639,0.826933,0.956971,0.144476,0.49089,0.600671,0.590292,0.19542,0.25547,0.0786626,0.488717,0.209227,0.276227,0.620875,0.19731,0.961044,0.464874,0.490806,0.276091,0.493805,0.131414,0.479013,0.544625,0.0239079,0.731713,0.289905,0.957938,0.999422,0.683202,0.752932,0.696417,0.21473,0.0639134,0.302316,0.249094,0.219422,0.137361,0.933032,0.613539,0.899771,0.0527036,0.903644,0.392887,0.686313,0.549063,0.841696,0.52501,0.837638,0.663642,0.436651,0.563867,0.24042,0.143841,0.473722,0.344468,0.0940654,0.425404,0.677247,0.265288,0.926592,0.964314,0.944594,0.617185,0.264129,0.77273,0.409873,0.338918,0.746688,0.895399,0.520786,0.79395,0.919948,0.471512,0.139562,0.658178,0.748319,0.823081,0.663713,0.100086,0.148167,0.610962,0.819015,0.559056,0.309499,0.0749738,0.946345,0.711976,0.0387437,0.254867,0.907398,0.411901,0.952467,0.116664,0.838717,0.791744,0.266304,0.815981,0.443186,0.619789,0.784727,0.587093,0.0915352,0.410368,0.480788,0.0311112,0.47613,0.697431,0.507897,0.145293,0.573501,0.493166,0.555586,0.881473,0.0822635,0.852959,0.464668,0.0506931,0.791891,0.44395,0.0427708,0.912337,0.827161,0.290066,0.16736,0.554123,0.857448,0.365775,0.927129,0.663405,0.0782973,0.190435,0.689628,0.275234,0.672628,0.04101,0.910336,0.140053,0.735697,0.76874,0.931182,0.255163,0.619329,0.966474,0.822378,0.23816,0.0219908,0.42949,0.887381,0.851905,0.911272,0.205617,0.883775,0.764379,0.602489,0.0697573,0.61674,0.522963,0.576646,0.54085,0.326956,0.902754,0.663905,0.570199,0.160454,0.663511,0.993659,0.254309,0.00559276,0.100935,0.581404,0.222548,0.575522,0.379527,0.468246,0.409769,0.16927,0.437755,0.689105,0.532012,0.672153,0.295984,0.065487,0.297697,0.811683,0.104948,0.563157,0.238953,0.00461268,0.861919,0.555504,0.894267,0.177984,0.315404,0.405903,0.697295,0.792772,0.409906,0.67349,0.519232,0.79736,0.38671,0.650285,0.262069,0.918967,0.355106,0.176771,0.042103,0.139137,0.490419,0.579533,0.510257,0.72609,0.975283,0.0726282,0.396262,0.111808,0.107579,0.44547,0.553309,0.225795,0.282696,0.611356,0.0315914,0.807125,0.811802,0.616349,0.0779775,0.793281,0.924538,0.974396,0.910808,0.297855,0.370536,0.408742,0.419731,0.211991,0.0482879,0.10336,0.709757,0.0666685,0.908349,0.42057,|0.459112,0.518428,0.236618,0.934604,0.644696,0.172214,0.938494,0.687284,0.291579,0.0709237,0.0708073,0.624886,0.200029,0.41792,0.718874,0.556064,0.13205,0.159645,0.947452,0.821363,0.91338,0.568629,0.0689337,0.29891,0.789077,0.00902748,0.128749,0.395816,0.190056,0.645694,0.0723178,0.573675,0.322748,0.55215,0.0512574,0.302295,0.797456,0.160451,0.628329,0.0416979,0.275679,0.39616,0.0353191,0.324439,0.653567,0.226129,0.521051,0.554573,0.799192,0.345279,0.294187,0.171472,0.157398,0.580217,0.666743,0.30586,0.840042,0.208394,0.216933,0.383763,0.89351,0.195615,0.574198,0.585657,0.238138,0.601282,0.400711,0.55258,0.545105,0.478181,0.944555,0.439997,0.23179,0.931182,0.232525,0.101769,0.634748,0.125581,0.982132,0.359286,0.436285,0.465884,0.327551,0.903719,0.190422,0.493644,0.420273,0.587945,0.532228,0.00999415,0.858581,0.656479,0.872696,0.930798,0.95656,0.762111,0.269029,0.0900978,0.875665,0.848603,0.995633,0.578568,0.542151,0.428069,0.392533,0.776493,0.66846,0.360942,0.0785494,0.581021,0.639004,0.0665419,0.865655,0.875191,0.510714,0.38805,0.482696,0.787988,0.639395,0.583811,0.960546,0.823663,0.665007,0.228889,0.701651,0.457935,0.591127,0.865782,0.572558,0.911673,0.678822,0.885835,0.421278,0.336097,0.959223,0.0449473,0.947723,0.694171,0.249239,0.909621,0.590046,0.994087,0.567958,0.241261,0.860333,0.814602,0.163669,0.00752431,0.846554,0.30335,0.0967218,0.207207,0.0174459,0.307882,0.951995,0.278485,0.369435,0.639169,0.0823304,0.502448,0.751787,0.256676,0.496922,0.251137,0.967114,0.0283325,0.237687,0.175702,0.951991,0.426184,0.0049122,0.331842,0.727717,0.490547,0.545767,0.232844,0.887371,0.61879,0.0310937,0.541876,0.173783,0.306972,0.71611,0.991449,0.541344,0.385039,0.719044,0.724648,0.240246,0.0689057,0.525582,0.737839,0.589919,0.8777,0.459036,0.459507,0.781682,0.37994,0.606483,0.604871,0.172236,0.367989,0.0949481,0.877748,0.845453,0.94067,0.220962,0.723051,0.0651969,0.320313,0.181331,0.200629,0.113468,0.391609,0.220015,0.995793,0.156512,0.106421,0.82415,0.681468,0.000609934,0.317032,0.998776,0.645341,0.812109,0.558617,0.598609,0.329573,0.365211,0.492038,0.921572,0.388739,0.0349673,0.434543,0.202625,0.444487,0.944204,0.723496,0.100552,0.75791,0.842181,0.561205,0.805897,0.180996,0.643261,0.507251,0.418635,0.977593,0.88075,0.717356,0.572405,0.272555,0.242544,0.312088,0.530138,0.850735,0.0173576,0.786613,0.000202596,0.484253,0.976911,0.00462806,0.958144,0.203994,0.195548,0.313965,0.782116,0.386473,0.916036,0.349987,0.059875,0.42521,0.253339,0.566312,0.80925,0.417773,0.129664,0.181745,0.0248235,0.626961,0.97361,0.27722,0.957615,0.566009,0.545608,0.821733,0.256674,0.910914,0.769476,0.666208,0.662244,0.176403,0.506914,0.543317,0.37426,0.476812,0.900481,0.803676,0.353501,0.132357,0.778842,0.0510672,0.503237,0.33341,0.853693,0.249926,0.0527817,0.287483,0.161709,0.913505,0.805962,0.562058,0.496529,0.0389286,0.571036,0.469,0.722456,0.0185301,0.751142,0.142914,0.640923,0.399367,0.0607746,0.134518,0.107833,0.174904,0.991346,0.313923,0.0780506,0.200815,0.112187,0.876608,0.371122,0.248575,0.612937,0.929227,0.780799,0.26931,0.59666,0.631814,0.604163,0.403521,0.762176,0.117176,0.803509,0.354228,0.229678,0.599008,0.751367,0.331642,0.123953,0.271772,0.892811,0.874521,0.339002,0.605044,0.0603448,0.579902,0.140479,0.145846,0.57892,0.579316,0.040452,0.166308,0.38543,0.856428,0.210337,0.312111,0.561342,0.30224,0.334844,0.692547,0.691916,0.49417,0.526159,0.103882,0.874944,0.697186,0.99948,0.941741,0.758235,0.118234,0.0902854,0.610315,0.0210161,0.166939,0.822629,0.912242,0.385441,0.631917,0.727156,0.890403,0.96176,0.705251,0.354819,0.801468,0.546341,0.536142,0.770323,0.210191,0.592647,0.144733,0.159797,0.649507,0.961949,0.979106,0.0297815,0.362794,0.913472,0.558471,0.594791,0.192366,0.158508,0.519205,0.855915,0.330981,0.36517,0.495052,0.341035,0.626444,0.614038,0.724599,0.705621,0.436097,0.549408,0.847065,0.657177,0.0459241,0.425407,0.521159,0.0783045,0.350696,0.173002,0.519708,0.185615,0.444349,0.47275,0.267855,0.347478,0.412645,0.379361,0.390738,0.724409,0.70077,0.0680099,0.409707,0.920475,0.464511,0.359326,0.193985,0.341496,0.970825,0.55437,0.269589,0.871718,0.688664,0.640763,0.532337,0.993209,0.604393,0.726311,0.830361,0.326544,0.692525,0.0541157,0.0794036,0.708173,0.685215,0.451052,0.189125,0.995909,0.545169,0.112056,0.347132,0.639171,0.0442261,0.088459,0.281894,0.84532,0.403491,0.654724,0.877295,0.197028,0.219123,0.030379,0.0912671,0.0710685,0.630045,0.767998,0.7045,0.0918004,0.437967,0.355502,0.174809,0.447253,0.0344344,0.166227,0.374807,0.925375,0.462451,0.10713,0.908799,0.19733,0.602575,0.925107,0.206781,0.932748,0.817017,0.83963,0.445588,0.984598,0.957752,0.0271672,0.164388,0.158082,0.661002,0.946818,0.134312,0.000617266,0.452402,0.0919442,0.209885,0.658104,0.134519,0.893892,0.570034,0.617985,0.00430614,0.105598,0.476322,0.432746,0.231641,0.817123,0.212409,0.38183,0.603861,0.41046,0.203214,0.276907,0.188901,0.472544,0.275614,0.761796,0.90135,0.232094,0.478595,0.634231,0.172647,0.488748,0.249968,0.655445,0.387644,0.854619,0.734363,0.804406,0.370586,0.825449,0.407279,0.693226,0.562038,0.325175,0.531095,0.784856,0.493029,0.728658,0.642091,0.903118,0.147393,0.287672,0.663779,0.260232,0.648451,0.654513,0.404833,0.117833,0.339109,0.0254472,0.814855,0.943106,0.476129,0.57906,0.923458,0.772358,0.90166,0.493225,0.515321,0.262376,0.384798,0.236865,0.889272,0.491189,0.678701,0.915617,0.509729,0.300874,0.0708488,0.738046,0.483387,0.573083,0.789142,0.885181,0.778487,0.376778,0.548356,0.443453,0.361484,0.59838,0.250848,0.237429,0.251394,0.380619,0.806297,0.565361,0.444556,0.0517241,0.886621,0.423169,0.255007,0.92205,0.906088,0.637605,0.070968,0.154872,0.610129,0.363111,0.220353,0.80407,0.861713,0.947645,0.372887,0.244055,0.691756,0.618425,0.945106,0.962736,0.715956,0.0552692,0.472886,0.478137,0.767114,0.936026,0.480037,0.434965,0.0528523,0.103278,0.882772,0.796409,0.869048,0.317285,0.36788,0.0543783,0.671833,0.0986665,0.927159,0.0790548,0.644436,0.481987,0.424527,0.761259,0.43217,0.0703045,0.772703,0.998973,0.297141,0.688586,0.553216,0.905052,0.360611,0.551355,0.903284,0.881092,0.388893,0.110533,0.179306,0.0450663,0.430409,0.740106,0.41059,0.84556,0.804211,0.230038,0.501373,0.598093,0.759358,0.877322,0.551243,0.118382,0.958773,0.883268,0.227899,0.721602,0.211818,0.799794,0.910071,0.393007,0.300955,0.781625,0.981051,0.856677,0.528749,0.186824,0.810023,0.936645,0.713778,0.0502191,0.792849,0.510916,0.0670072,0.560281,0.116276,0.771062,0.963249,0.974452,0.658921,0.220606,0.459686,0.818752,0.948713,0.835582,0.111237,0.105547,0.14398,0.252705,0.469702,0.307393,0.26613,0.294002,0.300003,0.974558,0.533582,0.315631,0.464996,0.673162,0.541946,0.791597,0.84213,0.875891,0.808951,0.395934,0.731581,0.718264,0.226503,0.618886,0.246851,0.625891,0.746932,0.654249,0.319922,0.0768306,0.273743,0.470759,0.558375,0.900276,0.359028,0.366091,0.00787508,0.914546,0.587892,0.510609,0.104619,0.0114575,0.226675,0.475618,0.670919,0.495153,0.09372,0.0485533,0.693371,0.74527,0.983546,0.736965,0.000738263,0.0252576,0.00156564,0.627756,0.562132,0.242378,0.362774,0.858809,0.10853,0.141411,0.550337,0.849712,0.599541,0.474481,0.981694,0.129918,0.461918,0.0969023,0.43647,0.84944,0.610143,0.847682,0.0500385,0.0712025,0.0469492,0.247836,0.990632,0.838514,0.856982,0.0338039,0.165406,0.391682,0.107796,0.664465,0.523697,0.19903,0.258388,0.78437,0.65727,0.116964,0.422505,0.645519,0.427796,0.207387,0.901626,0.156677,0.213072,0.830599,0.81522,0.408379,0.735992,0.47432,0.661335,0.483655,0.809581,0.155886,0.0608814,0.63688,0.878549,0.255778,0.385811,0.670891,0.0853414,0.762181,0.37415,0.822869,0.789556,0.020295,0.472315,0.264559,0.1476,0.222816,0.102699,0.671563,0.402649,0.557572,0.493666,0.0654011,0.456508,0.0459965,0.208035,0.676532,0.216579,0.902,0.319318,0.0152621,0.932857,0.223851,0.950317,0.463587,0.181546,0.363142,0.796622,0.765652,0.63282,0.531575,0.00853622,0.0609744,0.202545,0.0796423,0.757039,0.0771781,0.143687,0.430879,0.0981712,0.433688,0.706716,0.256621,0.925472,0.608067,0.717018,0.265025,0.41816,0.975856,0.366047,0.538353,0.786347,0.971937,0.6478,0.703801,0.376308,0.181458,0.7161,0.764104,0.735651,0.497441,0.939794,0.849854,0.167246,0.686936,0.474456,0.130806,0.0538749,0.924914,0.533104,0.811025,0.63656,0.251063,0.29495,0.367485,0.526941,0.347543,0.379639,0.53677,0.0479709,0.0136511,0.901353,0.395942,0.720429,0.443753,0.804277,0.251256,0.311446,0.22897,0.4905,0.766888,0.89366,0.460584,0.289494,0.321286,0.184555,0.681827,0.97237,0.161423,0.207701,0.656585,0.980533,0.493599,0.184125,0.471866,0.451094,0.863803,0.798426,0.0374579,0.820415,0.687753,0.29744,0.280559,0.677105,0.654489,0.896343,0.788886,0.535508,0.854587,0.302807,0.565145,0.588409,0.46629,0.197842,0.401072,0.16765,0.0105883,0.375024,0.638083,0.532857,0.22272,0.475525,0.0333834,0.434092,0.215291,0.22718,0.118699,0.95327,0.235262,0.919163,0.842659,0.759894,0.739334,0.208718,0.577855,0.608052,0.0823261,0.164649,0.318697,0.638435,0.348223,0.665578,0.702941,0.119574,0.294701,0.447565,0.979941,0.312291,0.23194,0.705675,0.301174,0.0300014,0.297258,0.719143,|0.780548,0.5244,0.205238,0.155739,0.466959,0.607945,0.924903,0.339507,0.580834,0.676142,0.360896,0.662452,0.962635,0.727871,0.989424,0.432659,0.0787506,0.848299,0.50035,0.620698,0.501704,0.169528,0.817546,0.505337,0.145558,0.652593,0.579395,0.935782,0.301256,0.372482,0.810059,0.0344883,0.808442,0.309646,0.896734,0.480941,0.482015,0.961674,0.0238892,0.957515,0.998886,0.894207,0.821424,0.83788,0.448842,0.120189,0.353246,0.553694,0.806786,0.575267,0.446074,0.481204,0.155004,0.704691,0.403759,0.507133,0.642868,0.443665,0.784718,0.0835925,0.87096,0.411148,0.233273,0.123613,0.166285,0.249336,0.36619,0.924945,0.42121,0.917717,0.999249,0.654221,0.671012,0.237158,0.0407228,0.353886,0.516418,0.777738,0.401884,0.629844,0.187843,0.701575,0.679404,0.173421,0.72035,0.059392,0.457673,0.105245,0.812627,0.147721,0.671167,0.0117708,0.924022,0.434286,0.74673,0.891706,0.934662,0.0741073,0.5339,0.093954,0.418406,0.218192,0.964355,0.216688,0.344872,0.694816,0.757685,0.378603,0.0306709,0.43892,0.117666,0.867832,0.818254,0.0950422,0.755015,0.237279,0.0782908,0.493224,0.954469,0.128066,0.395205,0.927291,0.766596,0.987956,0.760626,0.859579,0.671338,0.515861,0.236984,0.271865,0.486392,0.478269,0.316693,0.0967042,0.991381,0.161436,0.00563276,0.330112,0.550197,0.533478,0.955519,0.701733,0.722333,0.615966,0.707771,0.993717,0.961178,0.510285,0.443286,0.203496,0.10161,0.672555,0.0022257,0.958387,0.738887,0.274068,0.2742,0.558146,0.449169,0.600495,0.0600738,0.0413041,0.488989,0.00224441,0.255396,0.656988,0.770716,0.882309,0.0170746,0.270067,0.888242,0.042473,0.943903,0.0831142,0.0615242,0.187537,0.624319,0.736453,0.747955,0.0146101,0.42079,0.762556,0.255381,0.894651,0.938833,0.391687,0.982626,0.358172,0.131852,0.965873,0.324294,0.106119,0.99211,0.875708,0.576451,0.333712,0.124375,0.257469,0.0789912,0.519368,0.572671,0.259043,0.299939,0.635301,0.990545,0.330106,0.437171,0.82901,0.530564,0.897798,0.941236,0.170978,0.118741,0.153814,0.799535,0.615283,0.819066,0.966961,0.703952,0.76581,0.190282,0.0274818,0.384948,0.770514,0.479451,0.42043,0.553543,0.728728,0.423054,0.937956,0.768573,0.462885,0.877156,0.67126,0.478394,0.68926,0.290286,0.396062,0.908479,0.930179,0.726384,0.833779,0.691064,0.862818,0.810044,0.840131,0.802181,0.552463,0.131527,0.502832,0.308251,0.14861,0.565458,0.155338,0.828287,0.880242,0.975388,0.471029,0.860524,0.106338,0.760192,0.177108,0.869524,0.882178,0.607374,0.491374,0.789051,0.492385,0.161937,0.351614,0.765178,0.0830534,0.262729,0.779023,0.471974,0.568683,0.570539,0.304724,0.758802,0.813207,0.856924,0.167676,0.636361,0.402939,0.50346,0.154006,0.294163,0.218928,0.136944,0.811352,0.307489,0.958829,0.607938,0.423436,0.932052,0.0262953,0.520439,0.842093,0.349158,0.778695,0.836634,0.809229,0.32432,0.370674,0.571123,0.17785,0.454308,0.554449,0.695935,0.470402,0.443279,0.464624,0.963525,0.313458,0.967404,0.0771626,0.741765,0.0133844,0.110612,0.676804,0.527264,0.0879164,0.828812,0.0197341,0.733284,0.903837,0.360294,0.0151475,0.373363,0.346655,0.00417918,0.19085,0.345769,0.166841,0.312493,0.19577,0.83107,0.424397,0.191691,0.694072,0.376387,0.90378,0.0710536,0.846142,0.0885399,0.459026,0.805691,0.139735,0.93309,0.684663,0.602429,0.651825,0.942202,0.507239,0.852693,0.0279949,0.514522,0.0518941,0.728625,0.642901,0.50823,0.182888,0.186076,0.747063,0.866617,0.0310898,0.888166,0.648744,0.856983,0.989849,0.802894,0.565304,0.833584,0.523045,0.537758,0.991733,0.448807,0.162884,0.473763,0.663791,0.483369,0.835126,0.686883,0.0193269,0.909572,0.585175,0.550404,0.266682,0.536108,0.662606,0.739847,0.571032,0.0981311,0.1951,0.32268,0.516096,0.880985,0.431384,0.974553,0.477222,0.279378,0.544806,0.978377,0.245602,0.88817,0.84624,0.384406,0.571157,0.281162,0.125301,0.351654,0.197984,0.359156,0.663039,0.886747,0.164435,0.909982,0.613433,0.601314,0.0373233,0.434791,0.668248,0.943286,0.892869,0.434038,0.153949,0.255116,0.94629,0.514102,0.0769473,0.868804,0.382618,0.808252,0.286672,0.649557,0.98643,0.605278,0.642255,0.813,0.643154,0.44692,0.309495,0.204892,0.320488,0.0943071,0.170717,0.849146,0.811577,0.519596,0.563171,0.278418,0.490215,0.82317,0.674791,0.425173,0.619304,0.522044,0.39977,0.51819,0.972607,0.401364,0.520293,0.19756,0.438859,0.00191718,0.747078,0.467783,0.00605655,0.0394654,0.415004,0.277759,0.419674,0.204253,0.97707,0.993068,0.668329,0.0125088,0.753492,0.262572,0.117631,0.500589,0.277193,0.814232,0.286694,0.0376204,0.918412,0.989705,0.427947,0.312011,0.199551,0.447496,0.868108,0.54014,0.956899,0.561415,0.44238,0.467132,0.286885,0.29647,0.280605,0.505798,0.792696,0.559864,0.463906,0.451083,0.34938,0.252445,0.636479,0.00539565,0.875847,0.290701,0.976953,0.94011,0.296375,0.947643,0.814198,0.723775,0.5936,0.896478,0.355749,0.871947,0.710233,0.812402,0.879938,0.748355,0.750002,0.701305,0.595835,0.466655,0.793451,0.482278,0.217996,0.360541,0.283151,0.949916,0.515206,0.227624,0.474295,0.330281,0.804176,0.045366,0.466247,0.456457,0.247595,0.672478,0.88655,0.269809,0.233936,0.841638,0.885983,0.577109,0.480049,0.86795,0.628027,0.960515,0.0761223,0.0393877,0.843337,0.70613,0.974707,0.847452,0.83175,0.0778173,0.307815,0.76028,0.359222,0.232911,0.272591,0.215727,0.335033,0.190259,0.763759,0.564397,0.146875,0.166472,0.937715,0.295751,0.0586933,0.922965,0.000832736,0.69101,0.54708,0.315285,0.952591,0.856578,0.0680299,0.621951,0.516943,0.501912,0.669037,0.778475,0.794866,0.110418,0.498033,0.27551,0.911388,0.429808,0.984775,0.792366,0.587969,0.0173336,0.439349,0.327082,0.519405,0.366517,0.389798,0.0499847,0.0136307,0.523357,0.009278,0.453937,0.873432,0.801469,0.182122,0.0464574,0.721624,0.16371,0.317173,0.202671,0.844578,0.229011,0.809618,0.630345,0.00928342,0.256512,0.191785,0.870458,0.197598,0.0594665,0.619445,0.222128,0.288143,0.243779,0.912848,0.823445,0.171793,0.89272,0.568804,0.0416588,0.0911626,0.956928,0.505792,0.00521725,0.986557,0.271603,0.132207,0.811864,0.0104292,0.490087,0.907308,0.482924,0.245666,0.307478,0.00884044,0.871644,0.00784075,0.910834,0.21145,0.0923999,0.916184,0.72801,0.0610819,0.493759,0.563843,0.644402,0.264076,0.907774,0.535303,0.675093,0.805962,0.207931,0.282489,0.428798,0.956338,0.0860219,0.352326,0.583335,0.820473,0.72517,0.915405,0.194986,0.780244,0.537771,0.241848,0.171415,0.719016,0.721246,0.143823,0.891562,0.554985,0.372439,0.175818,0.169157,0.754263,0.358267,0.526627,0.576515,0.443549,0.815821,0.989965,0.823322,0.724579,0.835503,0.358919,0.627068,0.843709,0.461319,0.280562,0.611944,0.751977,0.975729,0.794724,0.825233,0.623722,0.728482,0.0830536,0.573391,0.620692,0.174416,0.599161,0.0253229,0.491803,0.0717584,0.661309,0.248322,0.739848,0.884492,0.146691,0.511103,0.520017,0.136455,0.444098,0.395772,0.347366,0.37044,0.255553,0.717157,0.117697,0.449352,0.0972623,0.0472804,0.490228,0.311559,0.566959,0.160012,0.494475,0.0410743,0.928768,0.449064,0.642044,0.290113,0.257927,0.507844,0.716243,0.854141,0.61291,0.0433552,0.721458,0.699585,0.826384,0.870082,0.0384563,0.388988,0.255055,0.0670499,0.0749658,0.239414,0.830096,0.743801,0.835163,0.788838,0.715881,0.0582233,0.73935,0.0121347,0.909574,0.344175,0.683984,0.732117,0.00751245,0.616798,0.487594,0.0833544,0.891695,0.280226,0.411466,0.267171,0.879712,0.778948,0.163192,0.348626,0.621979,0.523403,0.250082,0.68308,0.832622,0.0915028,0.0938266,0.485251,0.105722,0.648995,0.625941,0.630986,0.0280297,0.504307,0.370067,0.633426,0.690318,0.917254,0.775843,0.73658,0.450989,0.970116,0.370931,0.849075,0.965937,0.0371095,0.877153,0.366625,0.156863,0.745991,0.525664,0.636735,0.733405,0.301369,0.601269,0.208061,0.435944,0.693237,0.604564,0.156352,0.0130951,0.791538,0.149372,0.0604156,0.426001,0.678688,0.6132,0.413595,0.254841,0.0765436,0.577202,0.444463,0.286436,0.573798,0.0946537,0.816902,0.878904,0.763492,0.682014,0.216268,0.888635,0.859003,0.770845,0.0345032,0.817562,0.626571,0.25135,0.568764,0.575711,0.82239,0.13593,0.987849,0.57982,0.0166579,0.747601,0.590704,0.0287355,0.214456,0.964535,0.122345,0.410696,0.456668,0.116836,0.471274,0.865042,0.945316,0.45418,0.236504,0.00611013,0.476562,0.459999,0.457216,0.648224,0.710488,0.623959,0.860183,0.377867,0.564,0.850117,0.209434,0.509452,0.778117,0.165721,0.940645,0.256697,0.649483,0.907272,0.154824,0.667219,0.774583,0.0686361,0.561775,0.787598,0.585571,0.50695,0.0575711,0.932826,0.393431,0.560251,0.680783,0.190502,0.598431,0.286837,0.517107,0.104491,0.107502,0.327814,0.0128052,0.069045,0.581195,0.815718,0.40122,0.286155,0.648616,0.199744,0.974973,0.731731,0.191783,0.967827,0.642307,0.687711,0.47905,0.814398,0.443333,0.677328,0.136635,0.393868,0.35268,0.948766,0.980095,0.48024,0.475326,0.192988,0.0524195,0.838885,0.318255,0.766823,0.138528,0.572816,0.075727,0.0287624,0.642115,0.867767,0.222544,0.920493,0.671806,0.49681,0.555185,0.811273,0.910052,0.202646,0.781893,0.69603,0.695889,0.43302,0.759776,0.847223,0.257525,0.316847,0.865827,0.835518,0.565682,0.448918,0.549225,0.387414,0.671215,0.474774,0.472075,0.96627,0.559431,0.438054,0.36623,0.801953,0.92128,0.377798,0.09727,0.126902,0.880928,0.365395,0.346946,0.320563,0.191674,0.220731,0.453145,0.325819,0.56482,0.243403,0.924727,0.820749,|0.541606,0.792471,0.603422,0.096716,0.0383241,0.0139526,0.13127,0.148358,0.150419,0.945436,0.944342,0.935367,0.730092,0.143638,0.151781,0.772619,0.327268,0.0290549,0.436277,0.0162374,0.401909,0.298819,0.204311,0.963231,0.171359,0.833595,0.0429004,0.923436,0.292633,0.110937,0.760736,0.52413,0.0847522,0.775121,0.867063,0.822667,0.810847,0.188039,0.400465,0.727209,0.514809,0.0286247,0.399175,0.992814,0.847666,0.432917,0.602932,0.36193,0.812169,0.396227,0.441998,0.443885,0.775135,0.737413,0.625219,0.958292,0.432691,0.408158,0.955646,0.381798,0.454956,0.188656,0.454792,0.0877076,0.526494,0.837919,0.0301185,0.541512,0.504366,0.214423,0.0586913,0.706856,0.57003,0.348714,0.127662,0.965656,0.793078,0.443661,0.381474,0.45798,0.0120141,0.249931,0.693014,0.313582,0.837252,0.0459424,0.372659,0.121467,0.424067,0.185827,0.387117,0.378842,0.720683,0.97085,0.66863,0.986329,0.814977,0.0682928,0.85363,0.289322,0.381307,0.926088,0.208629,0.0257993,0.338615,0.750116,0.566138,0.936045,0.698762,0.995974,0.903997,0.703022,0.265429,0.447322,0.420564,0.725202,0.975376,0.0390906,0.449557,0.290371,0.593156,0.947528,0.235403,0.474207,0.177254,0.833667,0.293414,0.457265,0.992938,0.547094,0.889119,0.133986,0.236817,0.597996,0.915115,0.906203,0.747102,0.629778,0.647602,0.284691,0.985253,0.0904496,0.201127,0.154297,0.686272,0.367819,0.567372,0.339887,0.908417,0.816379,0.114998,0.0207691,0.190597,0.965733,0.676866,0.701014,0.447485,0.9985,0.34601,0.106564,0.986184,0.0704314,0.122528,0.0295685,0.160366,0.669158,0.85534,0.787346,0.719409,0.968884,0.284301,0.72091,0.44228,0.0978166,0.279226,0.481317,0.39272,0.463181,0.713799,0.287954,0.278284,0.627036,0.647049,0.597807,0.907935,0.485464,0.0998527,0.979968,0.910824,0.234995,0.234618,0.141017,0.200153,0.316915,0.246719,0.886006,0.123774,0.621788,0.972481,0.931105,0.692523,0.858814,0.661823,0.228459,0.0322974,0.393997,0.0973963,0.890868,0.407875,0.991119,0.439231,0.0008834,0.335674,0.810303,0.66157,0.877083,0.479371,0.756583,0.0682523,0.166551,0.710089,0.707658,0.792642,0.369776,0.286964,0.369714,0.179374,0.580881,0.30803,0.628646,0.501574,0.0617741,0.551503,0.490439,0.598931,0.709917,0.377961,0.0234085,0.716146,0.056944,0.660696,0.719114,0.364889,0.0701424,0.836621,0.368821,0.414366,0.700898,0.543226,0.342976,0.155514,0.782675,0.530017,0.296081,0.895697,0.254704,0.391921,0.688813,0.121978,0.197374,0.275528,0.652813,0.356461,0.454657,0.238814,0.0124366,0.685797,0.198867,0.450291,0.355161,0.979525,0.804598,0.832786,0.966682,0.20011,0.804773,0.476122,0.522279,0.177906,0.839451,0.424605,0.779391,0.196165,0.308221,0.27944,0.0533726,0.419247,0.388899,0.694588,0.167065,0.614296,0.125826,0.948217,0.0637032,0.572322,0.814346,0.283172,0.423048,0.903524,0.549913,0.155337,0.895769,0.168086,0.989727,0.108883,0.73967,0.827395,0.171446,0.0687873,0.429461,0.803246,0.258062,0.291355,0.183117,0.0531755,0.81713,0.256847,0.678321,0.592599,0.718536,0.782773,0.0767186,0.626077,0.518953,0.669803,0.196145,0.64704,0.030511,0.34805,0.151252,0.192209,0.70439,0.599883,0.454814,0.707526,0.88846,0.823225,0.808436,0.853752,0.264282,0.280747,0.645066,0.318594,0.144227,0.420539,0.354521,0.140072,0.49635,0.949133,0.109284,0.596478,0.349321,0.845719,0.741786,0.5914,0.0221766,0.467156,0.656108,0.0507284,0.49775,0.828907,0.714418,0.548402,0.10677,0.614128,0.935586,0.708551,0.917096,0.633291,0.72951,0.947748,0.645341,0.0202544,0.395956,0.712546,0.617872,0.135573,0.478495,0.0418546,0.432782,0.398755,0.711009,0.0243415,0.670633,0.0555841,0.321635,0.68545,0.68783,0.149171,0.281603,0.788361,0.539095,0.405831,0.158698,0.185939,0.890782,0.0250512,0.892976,0.787534,0.428016,0.485417,0.722987,0.199328,0.0295781,0.486276,0.796242,0.192683,0.399705,0.745079,0.064,0.331012,0.330692,0.871501,0.112374,0.0894009,0.281408,0.878241,0.320321,0.0209102,0.258923,0.768759,0.851572,0.740091,0.673909,0.499628,0.214207,0.788039,0.642802,0.286376,0.313672,0.500217,0.160927,0.497195,0.411905,0.155739,0.165561,0.10306,0.719979,0.161416,0.975549,0.44607,0.119522,0.0356861,0.171272,0.450752,0.158717,0.432642,0.47995,0.313911,0.920964,0.76767,0.417648,0.059625,0.638498,0.262649,0.59198,0.552214,0.335771,0.360906,0.359586,0.979909,0.291284,0.171857,0.76964,0.822556,0.163757,0.863451,0.900076,0.148166,0.425737,0.0295212,0.666774,0.440584,0.719464,0.760663,0.201384,0.388616,0.601768,0.850185,0.35966,0.876245,0.731316,0.982922,0.206288,0.733851,0.739906,0.506558,0.247346,0.952167,0.527068,0.853672,0.759921,0.424477,0.447129,0.589548,0.490041,0.190456,0.617313,0.437523,0.762761,0.550832,0.839073,0.659592,0.115198,0.116797,0.811094,0.520443,0.678715,0.61161,0.789595,0.654201,0.268369,0.982582,0.603193,0.395428,0.0269254,0.319512,0.495308,0.484413,0.537227,0.0661266,0.778987,0.611375,0.100038,0.806637,0.42478,0.618523,0.603246,0.980288,0.589261,0.716352,0.983366,0.358384,0.614051,0.648146,0.439044,0.873904,0.677176,0.923649,0.530534,0.364253,0.106243,0.036262,0.632733,0.465086,0.564752,0.971729,0.929933,0.252128,0.622466,0.639566,0.0154063,0.0005759,0.844874,0.210684,0.267748,0.357184,0.0508174,0.706194,0.518151,0.385629,0.449516,0.242476,0.890789,0.468953,0.842971,0.661488,0.897229,0.933756,0.356125,0.188647,0.338591,0.373155,0.401686,0.665151,0.917727,0.169802,0.194741,0.0348882,0.411495,0.860799,0.547248,0.97185,0.102302,0.469768,0.166594,0.296562,0.197137,0.571894,0.857687,0.981009,0.0475168,0.574485,0.196246,0.556514,0.400925,0.23505,0.518126,0.801417,0.153119,0.460616,0.870432,0.898488,0.0837591,0.331809,0.880547,0.0030933,0.705386,0.331982,0.495787,0.260371,0.604085,0.454513,0.513901,0.0192032,0.432226,0.332669,0.984007,0.92024,0.00992447,0.404069,0.430936,0.445977,0.672863,0.542253,0.934179,0.294401,0.886055,0.506985,0.332083,0.854321,0.461281,0.219014,0.975283,0.391835,0.0732731,0.22668,0.645234,0.654775,0.0208598,0.93526,0.784288,0.116137,0.436653,0.386069,0.155489,0.927513,0.763549,0.148095,0.17967,0.678698,0.542009,0.465297,0.436385,0.792583,0.404299,0.27719,0.866249,0.104675,0.997567,0.684487,0.651908,0.0531114,0.678422,0.768323,0.590584,0.900851,0.256753,0.768018,0.281001,0.118849,0.517591,0.726647,0.461258,0.245701,0.762402,0.564334,0.913062,0.242723,0.89426,0.610293,0.0551823,0.575831,0.06535,0.667053,0.616837,0.612901,0.645071,0.838444,0.735231,0.211339,0.249199,0.514647,0.145144,0.29559,0.503221,0.475135,0.563793,0.960591,0.107515,0.771874,0.538107,0.508953,0.714875,0.610379,0.63653,0.511378,0.431021,0.937719,0.406746,0.4002,0.491866,0.840813,0.616168,0.94394,0.924548,0.451696,0.457896,0.514137,0.63573,0.0886135,0.7912,0.779353,0.469819,0.5083,0.438851,0.751776,0.43946,0.958742,0.840328,0.32629,0.582554,0.412225,0.619069,0.748385,0.776305,0.783292,0.654953,0.573557,0.61561,0.991958,0.513426,0.315541,0.0146143,0.726468,0.675471,0.357375,0.88164,0.918776,0.223507,0.266788,0.695978,0.105766,0.114459,0.278552,0.603764,0.176485,0.636074,0.00247592,0.340499,0.24887,0.618281,0.0226099,0.878054,0.201421,0.953863,0.312426,0.549545,0.910258,0.120721,0.621324,0.424799,0.939903,0.55427,0.959526,0.650614,0.840399,0.503608,0.418706,0.0569945,0.319607,0.806931,0.348372,0.899801,0.239883,0.384412,0.0086537,0.783492,0.123966,0.317367,0.708273,0.436051,0.264674,0.0550312,0.792682,0.425151,0.540389,0.407771,0.958041,0.315004,0.600169,0.322768,0.720139,0.724715,0.661771,0.904287,0.150725,0.529862,0.324076,0.354492,0.83371,0.240034,0.133205,0.447509,0.556485,0.775014,0.688019,0.891175,0.639338,0.158486,0.725007,0.457807,0.530491,0.891313,0.323683,0.627852,0.0190453,0.0118118,0.719483,0.454275,0.86576,0.26807,0.219809,0.350287,0.637683,0.872334,0.692443,0.110917,0.224177,0.161523,0.204663,0.694969,0.422161,0.879092,0.527922,0.745292,0.262351,0.697941,0.557347,0.650888,0.450935,0.417612,0.319273,0.54743,0.152333,0.646045,0.857444,0.543464,0.528579,0.901956,0.237541,0.520056,0.0313135,0.519014,0.178083,0.849336,0.948347,0.450869,0.1118,0.657204,0.116902,0.851493,0.796285,0.440829,0.379505,0.706118,0.923615,0.541733,0.464858,0.575693,0.411052,0.1807,0.0651997,0.772091,0.745583,0.529386,0.113,0.649767,0.664428,0.952626,0.350401,0.259914,0.754142,0.427062,0.375893,0.939588,0.416408,0.105706,0.749639,0.817831,0.263275,0.815168,0.40847,0.741821,0.0671237,0.620605,0.639065,0.804033,0.701959,0.575722,0.97812,0.346588,0.53695,0.241702,0.272629,0.337773,0.0304096,0.532314,0.942352,0.480776,0.163648,0.943423,0.922405,0.4872,0.227042,0.933827,0.990314,0.525118,0.667409,0.350224,0.62053,0.677507,0.203203,0.878826,0.636865,0.447468,0.852723,0.584162,0.0271656,0.141639,0.962483,0.738511,0.268733,0.252225,0.577137,0.851714,0.196554,0.736716,0.900134,0.244269,0.0483271,0.735171,0.492879,0.330392,0.595589,0.547479,0.748723,0.0573633,0.30842,0.272323,0.443354,0.140785,0.111148,0.836031,0.520331,0.209334,0.0903277,0.907508,0.330546,0.716235,0.176861,0.887417,0.951392,0.0706548,0.799914,0.178726,0.657289,0.0318474,0.616378,0.888796,0.942108,0.308888,0.665183,0.514647,0.746227,0.0535609,0.547291,0.965655,0.562893,0.709361,0.239337,0.825983,0.907002,0.48385,0.867986,0.455289,0.164462,0.0938837,0.0886958,0.943237,|0.223819,0.461936,0.295241,0.0407565,0.917608,0.0168184,0.519762,0.383439,0.0217752,0.203837,0.516704,0.682844,0.330775,0.9387,0.740511,0.0143316,0.422656,0.130249,0.201845,0.505986,0.468711,0.696557,0.511737,0.364606,0.679574,0.15111,0.631162,0.77348,0.215802,0.412834,0.588982,0.768814,0.150853,0.630377,0.704341,0.372242,0.132456,0.752274,0.110377,0.846379,0.850335,0.869426,0.103555,0.143319,0.675171,0.8092,0.0891974,0.305501,0.370246,0.0306264,0.507698,0.546836,0.0105804,0.222149,0.670624,0.272974,0.860458,0.806159,0.840831,0.368585,0.6764,0.958464,0.599872,0.779141,0.389456,0.566133,0.844793,0.920875,0.772746,0.728769,0.841017,0.454166,0.111907,0.538817,0.248656,0.910805,0.888049,0.384593,0.314208,0.148775,0.502723,0.379553,0.638751,0.612805,0.386011,0.0316331,0.180762,0.0388033,0.153107,0.614875,0.377634,0.837475,0.519621,0.296892,0.735164,0.0510721,0.730652,0.743257,0.762407,0.9877,0.362382,0.205957,0.868796,0.0966615,0.714664,0.100126,0.300565,0.390328,0.697464,0.481306,0.941343,0.888852,0.498718,0.035626,0.833795,0.19032,0.548239,0.19862,0.684805,0.556082,0.688187,0.734254,0.343278,0.870717,0.549493,0.242125,0.114357,0.357161,0.22859,0.321038,0.226357,0.84128,0.53349,0.0640697,0.0324964,0.188202,0.0889754,0.380989,0.160934,0.441392,0.633569,0.137566,0.429241,0.374522,0.838225,0.313032,0.611769,0.857332,0.776754,0.0465207,0.524645,0.30587,0.695214,0.0334563,0.231326,0.437225,0.384588,0.650248,0.670903,0.458867,0.945341,0.436714,0.461798,0.384096,0.05273,0.312427,0.26298,0.354699,0.594412,0.308946,0.628154,0.88464,0.237738,0.42284,0.818699,0.260735,0.710487,0.642993,0.547042,0.573633,0.307327,0.155946,0.211598,0.388293,0.633769,0.550361,0.158019,0.86212,0.485413,0.143419,0.193409,0.999766,0.452879,0.863198,0.451189,0.409914,0.0508428,0.854367,0.591672,0.419581,0.473006,0.0415289,0.557119,0.235264,0.813705,0.57447,0.32502,0.379478,0.25221,0.825593,0.668378,0.921184,0.604339,0.973274,0.571988,0.309234,0.525979,0.354582,0.480599,0.786709,0.701834,0.761073,0.497161,0.823104,0.10862,0.17159,0.00120562,0.163125,0.484383,0.139696,0.898364,0.474923,0.104666,0.464932,0.890279,0.424079,0.593212,0.518106,0.0826575,0.83996,0.215561,0.130372,0.31048,0.696379,0.0302823,0.138333,0.778267,0.561595,0.621651,0.201106,0.390131,0.113258,0.277594,0.329964,0.297081,0.20565,0.745115,0.490764,0.301921,0.700399,0.122062,0.780792,0.522682,0.562467,0.519614,0.810163,0.175627,0.329607,0.442687,0.889959,0.224803,0.924712,0.45315,0.862852,0.500874,0.159701,0.894819,0.113243,0.382523,0.274402,0.469335,0.554075,0.0674708,0.898091,0.29462,0.447387,0.155895,0.967876,0.236997,0.601937,0.702682,0.466865,0.916704,0.429855,0.118691,0.13156,0.23555,0.9714,0.71476,0.465539,0.572737,0.777941,0.443284,0.602504,0.825303,0.458553,0.213916,0.768824,0.754052,0.300478,0.114557,0.794249,0.982671,0.329187,0.0274199,0.81965,0.16506,0.763532,0.986044,0.760201,0.772556,0.517005,0.669411,0.732442,0.8235,0.830907,0.143546,0.54583,0.654363,0.297461,0.719432,0.982903,0.19373,0.781732,0.283802,0.937708,0.0373952,0.0797725,0.348573,0.832626,0.102314,0.657879,0.794163,0.571156,0.193217,0.514728,0.838742,0.963276,0.600221,0.196232,0.286157,0.61527,0.318467,0.906481,0.154499,0.19926,0.531109,0.610601,0.987552,0.577684,0.0288283,0.0278124,0.803719,0.693898,0.409977,0.77943,0.537099,0.906408,0.0654244,0.567943,0.161113,0.662918,0.420654,0.23214,0.0100882,0.276837,0.230882,0.651063,0.701324,0.0818377,0.979924,0.138342,0.846832,0.615466,0.221635,0.208322,0.080488,0.50873,0.752219,0.608522,0.842727,0.296452,0.594496,0.133626,0.948961,0.525317,0.33452,0.643759,0.761481,0.902833,0.955431,0.0985681,0.210972,0.167384,0.030412,0.767762,0.0947456,0.567169,0.198071,0.0472694,0.3075,0.176582,0.107281,0.403395,0.0775694,0.575749,0.197925,0.297171,0.884128,0.332659,0.917583,0.753455,0.575247,0.701297,0.096862,0.775276,0.63793,0.725152,0.609461,0.484784,0.210686,0.756752,0.76696,0.535658,0.331438,0.707591,0.0177621,0.214229,0.256072,0.614949,0.0386958,0.258456,0.259702,0.202898,0.773248,0.194883,0.31249,0.0921719,0.775016,0.236843,0.89038,0.22591,0.590978,0.750864,0.654291,0.235412,0.284858,0.574814,0.6542,0.0726125,0.89886,0.0714372,0.188248,0.303798,0.740956,0.265121,0.268911,0.99795,0.162679,0.0268976,0.469742,0.218909,0.659335,0.51627,0.722853,0.624257,0.75292,0.28008,0.746006,0.117644,0.23863,0.33283,0.593218,0.696682,0.548472,0.0480592,0.483783,0.127639,0.930699,0.625053,0.799998,0.643244,0.107818,0.393656,0.989142,0.433796,0.831446,0.212844,0.0107942,0.20683,0.204601,0.347045,0.734195,0.514415,0.678436,0.792188,0.253925,0.401885,0.0750465,0.142042,0.464366,0.933029,0.723869,0.902329,0.658486,0.20929,0.361683,0.308502,0.044597,0.426213,0.576454,0.346438,0.456077,0.286598,0.500951,0.231967,0.182777,0.643802,0.686913,0.197396,0.574672,0.822146,0.681223,0.11959,0.385697,0.93513,0.703464,0.180791,0.327066,0.221743,0.460054,0.780923,0.636933,0.623344,0.558453,0.582313,0.735739,0.958319,0.419932,0.564024,0.852357,0.00314611,0.360119,0.348919,0.790424,0.240644,0.0608369,0.199906,0.824677,0.782489,0.0969733,0.288368,0.703336,0.114665,0.360237,0.634363,0.76547,0.687654,0.906574,0.843144,0.183357,0.736654,0.291726,0.195701,0.549004,0.575262,0.223658,0.517929,0.647434,0.153042,0.618275,0.142906,0.750473,0.971856,0.0964888,0.0234895,0.71399,0.582705,0.931377,0.0169654,0.308352,0.238208,0.686985,0.241134,0.34827,0.485239,0.333754,0.308404,0.637825,0.602335,0.780566,0.527134,0.098942,0.473849,0.784819,0.862475,0.468098,0.400779,0.40654,0.437854,0.927207,0.208588,0.374093,0.031931,0.166663,0.69965,0.636004,0.778377,0.0492766,0.840381,0.812747,0.176359,0.192422,0.632734,0.616321,0.804655,0.417658,0.212811,0.226028,0.374952,0.626414,0.461341,0.408074,0.803718,0.725222,0.725321,0.76877,0.274562,0.369671,0.174036,0.273406,0.90399,0.0825073,0.693172,0.874498,0.882882,0.476573,0.535041,0.742921,0.192161,0.481704,0.748497,0.425366,0.208639,0.187451,0.751705,0.973799,0.403298,0.224546,0.756191,0.205693,0.601868,0.24113,0.258516,0.904183,0.171001,0.477953,0.60247,0.739276,0.70843,0.681741,0.0852923,0.100885,0.731537,0.89025,0.873545,0.00475347,0.590958,0.398698,0.219417,0.158301,0.295967,0.735189,0.59719,0.486613,0.504746,0.584248,0.42359,0.378939,0.158246,0.563436,0.817352,0.163523,0.974922,0.905892,0.107518,0.562351,0.420154,0.103307,0.242782,0.776099,0.337234,0.363777,0.780932,0.399586,0.109061,0.911321,0.980612,0.223788,0.387439,0.948416,0.982046,0.306159,0.765161,0.363114,0.024681,0.767115,0.617643,0.00541258,0.3393,0.113561,0.688119,0.404297,0.133669,0.491899,0.461421,0.465466,0.792974,0.46331,0.569316,0.37502,0.135252,0.998616,0.70413,0.0114767,0.124798,0.0811312,0.587565,0.94102,0.331189,0.663026,0.745352,0.331636,0.397378,0.493699,0.596103,0.494325,0.116741,0.394305,0.65612,0.0141555,0.133185,0.264909,0.00856012,0.613675,0.38148,0.362535,0.22996,0.075828,0.0765172,0.523506,0.825519,0.254518,0.293981,0.997083,0.644196,0.724691,0.750673,0.438157,0.144111,0.373663,0.351103,0.096668,0.425937,0.790277,0.415734,0.396496,0.396607,0.0748131,0.791296,0.245315,0.0687392,0.85564,0.632028,0.905113,0.746477,0.264254,0.89629,0.50206,0.900217,0.883902,0.395125,0.286607,0.738423,0.545534,0.50552,0.190994,0.119229,0.71338,0.956558,0.582064,0.268613,0.780144,0.472414,0.0839443,0.938232,0.955996,0.715604,0.721574,0.0864028,0.445923,0.107653,0.622138,0.387185,0.402108,0.132607,0.730195,0.764033,0.27289,0.524127,0.178472,0.103517,0.813537,0.211849,0.439617,0.540086,0.721796,0.403943,0.515044,0.122434,0.80401,0.782286,0.287532,0.670959,0.812975,0.0339313,0.065975,0.713612,0.251508,0.166352,0.419684,0.0251485,0.349108,0.359083,0.152615,0.459048,0.880156,0.28313,0.805644,0.73427,0.537569,0.518741,0.869778,0.644368,0.798503,0.477309,0.926334,0.57558,0.0640027,0.845634,0.0112732,0.66722,0.458677,0.785581,0.277594,0.698146,0.371846,0.90194,0.0366325,0.443559,0.135882,0.22053,0.3878,0.132597,0.680668,0.0221093,0.343488,0.824093,0.710535,0.501334,0.396876,0.568234,0.543921,0.788585,0.105314,0.248089,0.00981361,0.556073,0.289884,0.997844,0.685366,0.579331,0.398808,0.573287,0.214146,0.774707,0.36125,0.566295,0.263947,0.553048,0.16083,0.0248038,0.344016,0.384002,0.576584,0.359751,0.848164,0.0790333,0.2238,0.527458,0.186411,0.300547,0.985171,0.123273,0.365362,0.722239,0.511917,0.98486,0.00306404,0.525847,0.880709,0.851871,0.157417,0.97676,0.952373,0.45048,0.86237,0.0201065,0.0215065,0.147913,0.137358,0.129004,0.687631,0.79619,0.948491,0.372683,0.382957,0.00668859,0.529164,0.74027,0.0148658,0.354539,0.99078,0.10223,0.206457,0.149899,0.567571,0.999336,0.0166214,0.632531,0.288785,0.967215,0.366474,0.749206,0.779932,0.414252,0.0579661,0.343918,0.849656,0.10023,0.131712,0.360959,0.726315,0.107818,0.898349,0.661085,0.144551,0.483532,0.408608,0.925117,0.963299,0.634643,0.521112,0.831149,0.554289,0.898697,0.928179,0.866425,0.270595,0.482881,0.710556,0.294807,0.462405,0.752356,0.123234,0.0628037,0.744501,0.124956,0.130029,0.0800827,0.228763,0.779863,0.516156,0.463461,0.221428,0.605628,0.217848,0.38276,0.56407,0.820531,|0.817453,0.0374477,0.142436,0.620004,0.499121,0.516473,0.500509,0.485807,0.927381,0.148169,0.415945,0.12038,0.912337,0.446649,0.540493,0.808913,0.130415,0.439757,0.184326,0.614989,0.724743,0.0927532,0.282271,0.833334,0.397254,0.0116534,0.918867,0.458938,0.790177,0.289341,0.439079,0.0684016,0.682401,0.512893,0.411671,0.736902,0.799493,0.0412921,0.818937,0.933066,0.733254,0.611116,0.253612,0.222934,0.795613,0.365231,0.377564,0.11906,0.991757,0.43229,0.664323,0.788104,0.426569,0.423218,0.61097,0.214123,0.522748,0.994657,0.98083,0.456503,0.424132,0.439559,0.441135,0.639925,0.466956,0.119716,0.122903,0.99348,0.422683,0.487101,0.613535,0.373135,0.120211,0.945668,0.297346,0.813388,0.0088042,0.969057,0.686658,0.545218,0.993856,0.0410761,0.524846,0.310612,0.175274,0.708444,0.0377158,0.323588,0.834689,0.167964,0.52688,0.0719314,0.37042,0.475482,0.0891942,0.516385,0.846428,0.661745,0.390601,0.357579,0.0452146,0.215183,0.704947,0.0883399,0.216357,0.240715,0.0923014,0.0283124,0.70087,0.308068,0.116431,0.991357,0.686663,0.156387,0.0204198,0.298849,0.561009,0.529941,0.160559,0.3802,0.785504,0.579674,0.102051,0.607085,0.14914,0.103508,0.753794,0.188005,0.115513,0.988471,0.64369,0.0772879,0.967518,0.913471,0.667556,0.495764,0.0547429,0.218543,0.707479,0.559832,0.828492,0.764648,0.25505,0.906217,0.100459,0.772002,0.506073,0.114307,0.780551,0.0309954,0.0408404,0.577987,0.695556,0.115164,0.741446,0.30035,0.600808,0.414093,0.509015,0.685399,0.195045,0.250875,0.835599,0.154259,0.414399,0.619582,0.241224,0.406039,0.0924568,0.762949,0.488535,0.53925,0.632384,0.333474,0.0565429,0.404207,0.072758,0.0785914,0.0300903,0.336034,0.508666,0.0284814,0.319518,0.888786,0.661041,0.108732,0.273654,0.0902821,0.101,0.463522,0.389962,0.837597,0.119154,0.817682,0.226973,0.860779,0.198648,0.207345,0.0756937,0.189255,0.966912,0.378919,0.587889,0.598789,0.410515,0.24745,0.984049,0.00362247,0.131164,0.672413,0.806208,0.957846,0.795222,0.690364,0.291023,0.218605,0.695861,0.976464,0.97616,0.767743,0.281336,0.319934,0.167996,0.761521,0.0559704,0.489112,0.779356,0.318231,0.352121,0.981326,0.259181,0.949409,0.139817,0.0210644,0.204732,0.326631,0.835708,0.457697,0.754498,0.619327,0.957708,0.636685,0.65928,0.84335,0.77208,0.993862,0.617309,0.658674,0.362747,0.254034,0.452867,0.800751,0.0656162,0.82154,0.711712,0.965194,0.657038,0.126853,0.330239,0.104292,0.342874,0.709518,0.940305,0.506658,0.458789,0.0524715,0.79172,0.99048,0.69595,0.709682,0.44119,0.0512536,0.275785,0.0108993,0.343904,0.397066,0.871311,0.0189824,0.407121,0.704858,0.119304,0.645988,0.271403,0.0974262,0.353142,0.842202,0.883964,0.146393,0.777859,0.12612,0.0873398,0.482831,0.924621,0.0848852,0.496356,0.0970938,0.523428,0.106463,0.6284,0.667075,0.639789,0.786341,0.496869,0.0369562,0.469195,0.553866,0.555153,0.87381,0.166842,0.622945,0.601567,0.63603,0.193263,0.759841,0.508246,0.354514,0.643905,0.712197,0.305926,0.672562,0.518026,0.665883,0.417916,0.178416,0.0710344,0.873249,0.335158,0.47024,0.829406,0.152487,0.881978,0.190167,0.481155,0.460055,0.117786,0.747741,0.150403,0.838498,0.679903,0.846372,0.341508,0.333372,0.145069,0.303311,0.694286,0.61372,0.0630395,0.663068,0.228344,0.122502,0.44637,0.80021,0.686483,0.141596,0.637676,0.814124,0.476373,0.882839,0.50788,0.862463,0.328519,0.817158,0.667394,0.653676,0.382612,0.829401,0.661904,0.188863,0.6621,0.99899,0.529542,0.533367,0.795691,0.717465,0.831239,0.800502,0.0718089,0.960189,0.929707,0.576272,0.348995,0.118927,0.169134,0.631644,0.814005,0.991323,0.159605,0.0402799,0.698208,0.628638,0.0634257,0.471567,0.117939,0.256078,0.692444,0.193802,0.52107,0.579,0.685509,0.36208,0.861535,0.728655,0.552148,0.432704,0.0474196,0.169819,0.0655751,0.583218,0.891602,0.348256,0.563753,0.272041,0.851566,0.796072,0.154473,0.550366,0.736848,0.208294,0.590708,0.762108,0.089572,0.840766,0.415963,0.102384,0.847719,0.862525,0.0242028,0.295675,0.227671,0.28887,0.176591,0.201485,0.13114,0.77623,0.811507,0.180943,0.934469,0.57758,0.275362,0.921279,0.933356,0.505569,0.0531546,0.47837,0.00946128,0.120201,0.5844,0.726402,0.675065,0.144778,0.75934,0.301584,0.579988,0.468682,0.297719,0.563356,0.362153,0.882116,0.303794,0.281873,0.925273,0.886398,0.619375,0.578032,0.621395,0.913097,0.411814,0.419691,0.0768304,0.306917,0.76657,0.88442,0.682921,0.751201,0.680433,0.483597,0.892918,0.246581,0.830426,0.186796,0.287553,0.603853,0.927028,0.973839,0.759802,0.896536,0.441481,0.801888,0.184106,0.702006,0.05134,0.23587,0.677676,0.0439606,0.971716,0.777285,0.437912,0.446022,0.562868,0.428508,0.232217,0.919583,0.691449,0.231952,0.600595,0.176545,0.308457,0.898397,0.512762,0.807805,0.602005,0.118387,0.552997,0.635487,0.683055,0.248948,0.920856,0.164612,0.305401,0.839143,0.704882,0.978007,0.55368,0.795087,0.6342,0.552968,0.841903,0.774378,0.956487,0.362045,0.96322,0.662166,0.723641,0.835258,0.20983,0.156908,0.493408,0.127394,0.816612,0.392136,0.21902,0.51099,0.228609,0.107857,0.845047,0.125329,0.14629,0.328818,0.314156,0.36389,0.508576,0.19461,0.165554,0.654329,0.158123,0.130818,0.211798,0.488603,0.833357,0.707143,0.246016,0.0590068,0.214185,0.919014,0.57761,0.671719,0.101815,0.789768,0.693907,0.579267,0.187564,0.279197,0.961481,0.0799054,0.699706,0.543057,0.788794,0.223094,0.583642,0.259465,0.786391,0.801721,0.0933033,0.683833,0.969974,0.56741,0.747202,0.388878,0.87873,0.0698205,0.798332,0.0807698,0.705104,0.641782,0.753214,0.143877,0.309415,0.102452,0.38103,0.86505,0.760412,0.666262,0.627705,0.997601,0.588801,0.292801,0.465937,0.125183,0.284849,0.349674,0.3771,0.277041,0.110167,0.362336,0.458662,0.981142,0.669043,0.302929,0.375525,0.030582,0.811718,0.162143,0.488728,0.207176,0.870237,0.688382,0.0294344,0.00228137,0.347014,0.479803,0.968553,0.53406,0.545059,0.169223,0.31899,0.547263,0.855842,0.042281,0.0912231,0.162238,0.919229,0.237513,0.829673,0.583654,0.24903,0.155519,0.457304,0.989608,0.616496,0.406655,0.634494,0.146829,0.871307,0.358334,0.378066,0.200718,0.352585,0.165519,0.834761,0.577218,0.940047,0.555865,0.855595,0.225315,0.476288,0.65491,0.217189,0.658366,0.344729,0.766136,0.360455,0.728139,0.176353,0.227796,0.806468,0.345145,0.17999,0.3539,0.738363,0.183673,0.838034,0.296342,0.0915176,0.865714,0.305203,0.587085,0.190702,0.914122,0.462299,0.0323721,0.935128,0.552222,0.781364,0.152914,0.608687,0.56904,0.785943,0.30185,0.237157,0.31523,0.939615,0.962772,0.149617,0.673804,0.177703,0.0950894,0.279051,0.0349349,0.516307,0.875758,0.815514,0.519582,0.794524,0.601265,0.517187,0.30394,0.899397,0.379684,0.308683,0.650298,0.984232,0.627905,0.588657,0.0236733,0.0851011,0.302712,0.279603,0.469992,0.731031,0.01148,0.710191,0.0485497,0.0978252,0.509795,0.0476675,0.942972,0.247961,0.775252,0.778628,0.956154,0.538371,0.103539,0.397995,0.589639,0.224559,0.211136,0.700399,0.446445,0.167721,0.416749,0.0250303,0.479957,0.444423,0.148381,0.880165,0.112033,0.980649,0.580928,0.41279,0.58337,0.825994,0.511279,0.903258,0.518122,0.0878553,0.340695,0.231283,0.612969,0.82613,0.0111306,0.297318,0.00538236,0.100752,0.571146,0.828569,0.885614,0.332951,0.94523,0.0769295,0.918898,0.595566,0.556101,0.888416,0.766905,0.509315,0.269546,0.170907,0.413025,0.114189,0.343409,0.950533,0.949736,0.0770372,0.820666,0.424764,0.547549,0.54897,0.41314,0.915602,0.730926,0.318368,0.365913,0.139807,0.525201,0.591467,0.481917,0.318916,0.567573,0.815863,0.968987,0.164076,0.0622291,0.209247,0.22967,0.4763,0.32407,0.72848,0.202277,0.307109,0.362053,0.416135,0.791029,0.129216,0.73456,0.764409,0.226751,0.764647,0.227327,0.143322,0.515303,0.295092,0.171294,0.184015,0.171822,0.0904185,0.48511,0.946074,0.827121,0.00943971,0.350206,0.228558,0.398212,0.195247,0.866465,0.00589961,0.161498,0.95448,0.55514,0.939136,0.345342,0.169855,0.43027,0.560403,0.031706,0.425095,0.693886,0.673186,0.563688,0.146631,0.861032,0.412641,0.827287,0.0363769,0.34343,0.813308,0.0271064,0.595085,0.125142,0.990494,0.274016,0.13735,0.220823,0.310592,0.924358,0.175483,0.0518883,0.600161,0.778235,0.855485,0.173456,0.0336177,0.475374,0.903444,0.757975,0.207628,0.936612,0.944632,0.798951,0.516137,0.936776,0.482924,0.220671,0.565201,0.261378,0.0066787,0.775513,0.450692,0.167557,0.295352,0.445509,0.907525,0.590053,0.0771954,0.710565,0.160805,0.556608,0.620887,0.197781,0.0119396,0.375669,0.353548,0.288081,0.807926,0.1705,0.895253,0.418721,0.862369,0.921849,0.0972069,0.0307248,0.0304736,0.208505,0.973378,0.597156,0.797399,0.0255881,0.908135,0.674088,0.515449,0.409474,0.507814,0.89887,0.503306,0.434917,0.668932,0.548711,0.249415,0.478211,0.301755,0.229228,0.936101,0.971717,0.0449088,0.996589,0.853522,0.820237,0.803973,0.893166,0.201371,0.911424,0.135236,0.696362,0.245128,0.469431,0.312105,0.75154,0.419823,0.646867,0.0811198,0.16862,0.0167518,0.924268,0.677779,0.831217,0.584628,0.910594,0.58585,0.711639,0.138711,0.495503,0.418938,0.896529,0.576708,0.844609,0.782471,0.0793203,0.983887,0.626548,0.902374,0.306434,0.857329,0.677899,0.763523,0.854163,0.737352,0.295648,0.672117,0.936156,0.916593,0.816693,0.467203,0.44732,0.389519,0.501565,0.597518,0.33147,0.738112,0.423837,0.462814,0.297051,|0.685895,0.660192,0.476718,0.29902,0.466177,0.702119,0.298459,0.413419,0.574195,0.261052,0.727771,0.959326,0.297164,0.544168,0.733321,0.552061,0.995115,0.57024,0.47644,0.769457,0.152671,0.395649,0.0805521,0.311161,0.0973582,0.410785,0.300105,0.436963,0.589406,0.782587,0.302337,0.878404,0.727074,0.625333,0.0344502,0.453244,0.820321,0.0625205,0.938772,0.508179,0.665191,0.495134,0.964392,0.79738,0.900272,0.877788,0.76128,0.478661,0.645907,0.983085,0.120051,0.0761796,0.778032,0.73572,0.416985,0.925944,0.583447,0.0454186,0.169676,0.105731,0.671124,0.0509658,0.871663,0.532157,0.426237,0.328994,0.557496,0.583087,0.883565,0.513545,0.968749,0.740559,0.567561,0.571464,0.911207,0.941666,0.57127,0.411308,0.125054,0.0898101,0.447061,0.943815,0.0968859,0.165021,0.148521,0.220678,0.520464,0.627762,0.223677,0.945534,0.837974,0.472584,0.907152,0.328013,0.524681,0.667863,0.462465,0.168306,0.685953,0.203363,0.781236,0.17706,0.74362,0.755455,0.86514,0.695989,0.190203,0.804128,0.688297,0.682876,0.733436,0.220955,0.626795,0.846044,0.125237,0.993088,0.58548,0.547228,0.720972,0.559587,0.342586,0.322726,0.562077,0.680989,0.484257,0.475397,0.195491,0.308143,0.0942373,0.0999664,0.987782,0.877719,0.820569,0.894703,0.145843,0.507942,0.956438,0.184332,0.999931,0.941937,0.906662,0.521229,0.720974,0.0386699,0.169643,0.943326,0.552218,0.350915,0.589288,0.184019,0.28389,0.50874,0.261758,0.4668,0.959582,0.0935866,0.858477,0.450371,0.310121,0.935803,0.37143,0.0693048,0.543377,0.562415,0.7942,0.11162,0.547496,0.0759097,0.620213,0.57298,0.766157,0.160511,0.985276,0.29883,0.451786,0.0893962,0.124002,0.737624,0.0736831,0.79913,0.618336,0.32847,0.472434,0.823072,0.295056,0.00766081,0.891289,0.708961,0.0187097,0.587882,0.3727,0.405917,0.730093,0.469556,0.958984,0.878229,0.943095,0.449952,0.190211,0.449162,0.307123,0.8838,0.925455,0.386573,0.397467,0.634627,0.976645,0.0132243,0.690206,0.634457,0.51597,0.78605,0.374494,0.78518,0.975034,0.38505,0.966899,0.547666,0.784447,0.617835,0.525054,0.174473,0.541812,0.0887422,0.0872459,0.913616,0.209492,0.715948,0.955522,0.654214,0.837087,0.0917979,0.994051,0.65555,0.147272,0.223411,0.686109,0.263499,0.291222,0.105677,0.50368,0.682435,0.790865,0.0589612,0.413226,0.5031,0.671119,0.775675,0.640135,0.439546,0.727518,0.214551,0.638786,0.532174,0.73626,0.159547,0.204125,0.530349,0.856002,0.436083,0.31705,0.892528,0.484535,0.467473,0.272815,0.847152,0.37274,0.510241,0.249804,0.116554,0.733053,0.26893,0.240313,0.238866,0.8762,0.960523,0.414674,0.945377,0.56976,0.337147,0.559698,0.827112,0.972088,0.578642,0.175617,0.691631,0.986357,0.82759,0.173118,0.555378,0.541606,0.529801,0.710465,0.516792,0.702757,0.774092,0.654032,0.759827,0.711345,0.711641,0.13457,0.761984,0.301261,0.18053,0.747285,0.473528,0.697169,0.140725,0.520398,0.306123,0.256855,0.479309,0.363484,0.123192,0.81131,0.652075,0.665307,0.0634977,0.949015,0.444871,0.402186,0.114199,0.598502,0.983703,0.160024,0.191174,0.695417,0.669489,0.194276,0.549562,0.48865,0.441196,0.86572,0.948992,0.669761,0.88835,0.724308,0.470408,0.387506,0.914606,0.472987,0.608862,0.210609,0.785858,0.485065,0.0657994,0.795215,0.962546,0.18502,0.120332,0.216261,0.630336,0.0551463,0.482128,0.986424,0.94949,0.660232,0.751506,0.473022,0.0789073,0.0626854,0.312899,0.939465,0.916323,0.859209,0.183276,0.600693,0.353497,0.979187,0.959448,0.0729955,0.107136,0.150219,0.0996012,0.511599,0.330126,0.258574,0.1632,0.507108,0.549179,0.0682455,0.367485,0.850052,0.737906,0.830659,0.94377,0.50572,0.0584161,0.845623,0.273297,0.313338,0.74102,0.401192,0.0827935,0.0685253,0.0847952,0.753438,0.49703,0.221005,0.192624,0.0883443,0.286001,0.870031,0.906853,0.32972,0.443118,0.236421,0.651962,0.311911,0.741855,0.338852,0.966648,0.517735,0.678613,0.0863959,0.772539,0.312745,0.775721,0.965256,0.246659,0.320455,0.118532,0.917724,0.901736,0.731338,0.999902,0.136035,0.364588,0.417885,0.771942,0.733572,0.145294,0.472099,0.114888,0.655668,0.0827894,0.79672,0.207821,0.622749,0.411372,0.455649,0.942091,0.401319,0.249568,0.985013,0.00130635,0.509161,0.771903,0.465806,0.899942,0.38141,0.441468,0.143201,0.888745,0.549555,0.0877349,0.354596,0.746274,0.418828,0.138396,0.622648,0.823644,0.647123,0.965173,0.843732,0.0518922,0.943589,0.0105631,0.879945,0.844655,0.783752,0.18097,0.446169,0.489248,0.758097,0.0525286,0.963639,0.0609573,0.0675005,0.286415,0.102496,0.0742667,0.1657,0.247664,0.789565,0.540133,0.394709,0.80769,0.672252,0.809596,0.227371,0.11213,0.377588,0.535538,0.680312,0.178405,0.480268,0.87614,0.755021,0.40294,0.257887,0.40149,0.130396,0.422159,0.0742043,0.524501,0.350631,0.264231,0.250406,0.123348,0.0613185,0.0604215,0.97886,0.657315,0.512672,0.939973,0.522328,0.640498,0.170026,0.287326,0.277699,0.224331,0.730517,0.86944,0.452179,0.787562,0.337987,0.575924,0.617131,0.624437,0.347187,0.659087,0.447697,0.840135,0.789405,0.719598,0.97644,0.399859,0.138238,0.953955,0.330494,0.497382,0.809656,0.36313,0.055216,0.640778,0.733028,0.842719,0.582235,0.681713,0.23702,0.782504,0.740734,0.355287,0.935552,0.528824,0.131811,0.0757318,0.656052,0.0502964,0.0633973,0.751015,0.312795,0.00390106,0.439009,0.876891,0.375736,0.911268,0.937604,0.0677713,0.29619,0.171076,0.535009,0.594795,0.366152,0.124203,0.117036,0.551136,0.835098,0.310752,0.576616,0.229617,0.257433,0.686891,0.0679532,0.618078,0.0368448,0.525116,0.327802,0.697389,0.713061,0.24614,0.559108,0.14933,0.90979,0.443069,0.426331,0.0839604,0.387466,0.559635,0.842402,0.474096,0.58772,0.198435,0.603573,0.866789,0.624579,0.762103,0.60175,0.574654,0.708521,0.911426,0.030093,0.00797045,0.306871,0.942999,0.771251,0.280437,0.0482106,0.2367,0.342935,0.322628,0.17378,0.73732,0.950734,0.101944,0.680273,0.573933,0.264346,0.980453,0.332145,0.376903,0.648049,0.865279,0.651636,0.127442,0.381137,0.415761,0.979922,0.862454,0.29807,0.472245,0.292795,0.914161,0.823892,0.511182,0.364073,0.176373,0.533636,0.960628,0.486782,0.115379,0.608478,0.235266,0.922842,0.584483,0.0752916,0.511944,0.560459,0.00743252,0.445072,0.967067,0.976967,0.0690503,0.777261,0.471157,0.659419,0.352912,0.0526554,0.529119,0.150251,0.191115,0.735143,0.938651,0.0120273,0.46737,0.312228,0.891286,0.280152,0.940051,0.062028,0.428307,0.0197347,0.439887,0.49668,0.38656,0.368768,0.289163,0.200147,0.745231,0.834017,0.342012,0.237949,0.00280029,0.583727,0.553988,0.34943,0.205746,0.644329,0.387894,0.463692,0.0051685,0.237889,0.397101,0.534689,0.760111,0.399529,0.372787,0.646233,0.328733,0.805524,0.897471,0.891737,0.194011,0.323423,0.670624,0.354251,0.40158,0.891289,0.0490773,0.067398,0.00875157,0.457125,0.914813,0.711196,0.795982,0.92785,0.244806,0.352221,0.73194,0.952946,0.454247,0.527768,0.215226,0.53095,0.302321,0.505356,0.743499,0.403038,0.0636781,0.847941,0.816028,0.999123,0.354551,0.0196127,0.113342,0.640102,0.393184,0.660081,0.944638,0.862125,0.803676,0.454717,0.611696,0.481109,0.555954,0.0548777,0.366059,0.548306,0.164998,0.760735,0.365088,0.947614,0.961566,0.241668,0.0619585,0.158404,0.502687,0.833955,0.0947589,0.882229,0.248985,0.927558,0.737951,0.12068,0.511352,0.276264,0.325353,0.488308,0.266236,0.784684,0.896991,0.690894,0.518,0.556568,0.347307,0.967731,0.0138097,0.195709,0.386837,0.340966,0.665362,0.441706,0.894737,0.54054,0.264603,0.965917,0.704212,0.853005,0.757136,0.543647,0.750456,0.593229,0.319772,0.156828,0.78458,0.639874,0.132544,0.692601,0.845444,0.908325,0.878697,0.0966558,0.592893,0.487334,0.871081,0.627278,0.160656,0.254425,0.5491,0.940531,0.44621,0.276037,0.538718,0.811305,0.495639,0.583263,0.237634,0.992038,0.582071,0.747885,0.869174,0.202994,0.678508,0.0455269,0.205505,0.556281,0.324235,0.791313,0.492895,0.831232,0.0301306,0.519325,0.418966,0.912188,0.0128821,0.132572,0.419689,0.525137,0.837647,0.957184,0.962631,0.253131,0.369062,0.878397,0.552632,0.564601,0.597699,0.687377,0.287609,0.48232,0.163421,0.653457,0.820455,0.700923,0.0645431,0.331917,0.936627,0.380336,0.040329,0.0156085,0.285133,0.447556,0.557987,0.671768,0.626164,0.276407,0.0607426,0.855207,0.211784,0.608133,0.396146,0.603609,0.763385,0.431985,0.685095,0.226231,0.877537,0.0776465,0.271303,0.76081,0.0537974,0.597282,0.481307,0.895444,0.185577,0.0655466,0.258047,0.859419,0.676382,0.817126,0.947176,0.385722,0.346336,0.85807,0.79082,0.385961,0.375608,0.539558,0.323682,0.714845,0.368963,0.880481,0.304709,0.450559,0.629839,0.831852,0.865974,0.994631,0.282686,0.583297,0.326518,0.0886485,0.20208,0.722436,0.613545,0.803928,0.266622,0.721811,0.5961,0.537248,0.43132,0.609839,0.610186,0.655134,0.582959,0.756416,0.518309,0.920317,0.874441,0.616197,0.137177,0.0496745,0.0313536,0.311601,0.803655,0.214024,0.131164,0.269253,0.054445,0.786426,0.783643,0.171183,0.0704982,0.696177,0.835746,0.575453,0.579284,0.546498,0.474319,0.0729373,0.253285,0.502876,0.201925,0.584062,0.0486643,0.241871,0.0416619,0.533165,0.613023,0.356645,0.914281,0.0260777,0.536196,0.848555,0.485404,0.541517,0.979209,0.563554,0.341523,0.642637,0.0880135,0.419608,0.0119026,0.978071,0.798692,0.566655,0.524034,0.197396,0.248476,0.314472,0.211241,0.0195615,0.0517349,0.732326,0.513861,0.771854,0.658489,0.70674,0.677198,|0.966315,0.214223,0.352058,0.323636,0.401712,0.967866,0.669409,0.665588,0.506229,0.547463,0.806583,0.425704,0.568645,0.649206,0.483288,0.655267,0.893106,0.0709187,0.193376,0.257972,0.234185,0.364583,0.609711,0.0882344,0.606426,0.364318,0.952104,0.331918,0.775273,0.990983,0.326657,0.461542,0.0130648,0.46522,0.859725,0.49996,0.439111,0.918498,0.159756,0.923559,0.673879,0.849629,0.0096826,0.295931,0.847324,0.189629,0.415163,0.179299,0.131677,0.64605,0.0946447,0.98926,0.720418,0.0493075,0.551884,0.253866,0.461889,0.892141,0.981484,0.310169,0.837626,0.997041,0.742016,0.98893,0.123905,0.889035,0.115277,0.837942,0.321193,0.156526,0.562381,0.722076,0.152378,0.901521,0.837278,0.942053,0.90636,0.527263,0.747752,0.995817,0.0680465,0.704759,0.793978,0.601224,0.0238624,0.449122,0.571548,0.193782,0.667016,0.52461,0.314088,0.838989,0.350906,0.722248,0.842036,0.448056,0.510125,0.667899,0.640507,0.35289,0.657465,0.0621413,0.237146,0.00759375,0.46321,0.628711,0.168519,0.480163,0.0887082,0.71501,0.553762,0.96999,0.392818,0.658499,0.313248,0.964061,0.599895,0.756606,0.644062,0.201372,0.0123016,0.698512,0.330433,0.11517,0.390913,0.543579,0.296968,0.718879,0.0411213,0.477952,0.10768,0.607021,0.696498,0.719537,0.29429,0.659318,0.869675,0.0765861,0.424614,0.224326,0.418597,0.23967,0.165363,0.86483,0.57362,0.267117,0.711642,0.267239,0.958396,0.476187,0.416574,0.518252,0.288136,0.0317874,0.830737,0.670213,0.198547,0.773388,0.917068,0.386819,0.845617,0.934826,0.779453,0.840227,0.761004,0.652248,0.772978,0.0356517,0.537078,0.275795,0.413952,0.0847682,0.765278,0.554103,0.232533,0.39292,0.370411,0.461588,0.895282,0.698655,0.78386,0.699755,0.292372,0.915532,0.0556085,0.44262,0.508194,0.0200347,0.628533,0.666641,0.136705,0.263662,0.365162,0.0317584,0.68078,0.731737,0.912693,0.39104,0.784853,0.0156792,0.402313,0.945589,0.226586,0.577981,0.0240528,0.289965,0.165463,0.500391,0.603315,0.273447,0.959855,0.768365,0.816521,0.624408,0.0638129,0.696722,0.474527,0.108107,0.891609,0.263419,0.776269,0.22248,0.907719,0.796861,0.633655,0.787605,0.0595627,0.867962,0.392993,0.309579,0.573986,0.451457,0.0514852,0.0233822,0.576902,0.412966,0.211911,0.523204,0.824545,0.621047,0.0398767,0.051752,0.0823188,0.914632,0.0787351,0.764802,0.36837,0.272695,0.252927,0.368634,0.589722,0.606057,0.30001,0.150997,0.311131,0.998379,0.0777026,0.359376,0.372085,0.179999,0.206568,0.492669,0.0824723,0.812735,0.193238,0.955091,0.171087,0.342192,0.618359,0.208287,0.949644,0.84468,0.0128214,0.670551,0.948865,0.69635,0.00823724,0.825338,0.0825862,0.983189,0.870916,0.016636,0.459425,0.290018,0.214964,0.719697,0.427493,0.742352,0.449984,0.414943,0.995164,0.985264,0.505548,0.714068,0.633953,0.638698,0.0092181,0.254823,0.730266,0.133608,0.190732,0.561202,0.678918,0.424437,0.870793,0.0932783,0.830279,0.265889,0.00726134,0.694908,0.708325,0.176198,0.492456,0.124044,0.553166,0.546608,0.706423,0.788739,0.646389,0.503475,0.524765,0.376995,0.247979,0.639272,0.574714,0.477072,0.471885,0.59389,0.0457341,0.940091,0.680421,0.744433,0.566346,0.749141,0.0100718,0.494341,0.752349,0.803345,0.292681,0.933516,0.978566,0.680386,0.653513,0.220313,0.163698,0.665508,0.629964,0.28806,0.194304,0.626301,0.795432,0.948792,0.541292,0.461392,0.709557,0.374911,0.792844,0.38802,0.90077,0.828671,0.104119,0.936938,0.096808,0.39977,0.834805,0.194167,0.888815,0.255434,0.646625,0.702815,0.768154,0.388704,0.615749,0.578324,0.0277595,0.810043,0.89827,0.0252057,0.096069,0.382038,0.10813,0.67541,0.893822,0.0141521,0.0682219,0.538042,0.941989,0.0761387,0.286758,0.0418835,0.924321,0.269989,0.553106,0.388564,0.583935,0.0231547,0.787274,0.887029,0.311693,0.170242,0.838504,0.37615,0.697548,0.854985,0.286503,0.39001,0.265385,0.868594,0.15623,0.702597,0.319533,0.499704,0.961134,0.16186,0.00545317,0.155303,0.558142,0.395883,0.491086,0.217981,0.0427528,0.191842,0.541004,0.945068,0.384357,0.510873,0.251376,0.61387,0.785348,0.813216,0.102646,0.483035,0.794277,0.309417,0.559004,0.684157,0.112496,0.599422,0.671043,0.588525,0.711583,0.86093,0.981651,0.112409,0.203911,0.0349724,0.832902,0.831351,0.141645,0.103529,0.721812,0.72866,0.510808,0.787528,0.98332,0.875611,0.37317,0.159224,0.615902,0.350184,0.960935,0.702466,0.870395,0.959091,0.382888,0.035473,0.183235,0.262561,0.170433,0.776554,0.438841,0.43156,0.166413,0.420837,0.707464,0.41226,0.946239,0.689358,0.420594,0.602314,0.611063,0.387213,0.863974,0.143194,0.901333,0.309863,0.00334918,0.185845,0.130642,0.290473,0.0215696,0.290866,0.34069,0.398114,0.798013,0.600787,0.447554,0.919247,0.319594,0.701967,0.0923045,0.816746,0.615561,0.121761,0.804714,0.164223,0.495631,0.164271,0.0568175,0.346565,0.456769,0.699062,0.508251,0.716783,0.1613,0.308061,0.18532,0.0447291,0.523506,0.442812,0.7232,0.0815839,0.121408,0.235713,0.354093,0.506974,0.721062,0.886951,0.754063,0.503168,0.230435,0.17717,0.307247,0.214302,0.341686,0.439339,0.667781,0.78676,0.530411,0.194299,0.673606,0.339175,0.927962,0.727149,0.506196,0.855192,0.837276,0.0258563,0.035691,0.363066,0.981954,0.896948,0.183535,0.0529437,0.87127,0.140543,0.863671,0.929972,0.911932,0.565887,0.383322,0.727392,0.205649,0.60873,0.970754,0.0345497,0.569919,0.561463,0.685341,0.140157,0.995138,0.453788,0.637091,0.66137,0.544875,0.600385,0.211454,0.110225,0.731821,0.995295,0.761176,0.397912,0.833255,0.744514,0.604057,0.858743,0.0637083,0.779048,0.537776,0.550992,0.531361,0.375496,0.365678,0.279324,0.42876,0.0720921,0.861713,0.898018,0.00772887,0.862221,0.127788,0.432539,0.608745,0.711848,0.840763,0.232091,0.0127063,0.723389,0.638832,0.982336,0.845267,0.84361,0.377216,0.366518,0.774112,0.627345,0.731247,0.391358,0.838034,0.562444,0.173665,0.425403,0.00939071,0.942377,0.645592,0.535763,0.5901,0.332911,0.844678,0.275716,0.687613,0.340418,0.409148,0.767813,0.390117,0.406195,0.715917,0.653166,0.440451,0.209143,0.154164,0.326475,0.800614,0.85797,0.378442,0.393078,0.553621,0.875655,0.0330133,0.652752,0.794801,0.645548,0.549139,0.390543,0.472873,0.0359674,0.842393,0.701279,0.696142,0.6002,0.79273,0.551861,0.502584,0.373112,0.570076,0.971548,0.13203,0.163193,0.358729,0.679051,0.479316,0.470706,0.293102,0.386042,0.688107,0.639054,0.623482,0.110436,0.67671,0.199832,0.127593,0.701377,0.295979,0.0202789,0.965819,0.577303,0.200168,0.572059,0.295862,0.947388,0.499377,0.767112,0.568032,0.266578,0.401626,0.76701,0.0926269,0.518749,0.535238,0.426501,0.505061,0.998455,0.670171,0.0819646,0.709106,0.776572,0.684022,0.316477,0.532092,0.294597,0.34686,0.0844421,0.290299,0.565409,0.530573,0.812747,0.135672,0.436647,0.666968,0.0479562,0.800739,0.107277,0.211156,0.213929,0.496099,0.0617489,0.15547,0.6067,0.586949,0.679486,0.0546518,0.869906,0.849276,0.356738,0.225586,0.932992,0.807426,0.9228,0.946865,0.473272,0.571999,0.35574,0.844419,0.719318,0.754973,0.67569,0.607053,0.282201,0.25226,0.385143,0.145493,0.282153,0.932195,0.32112,0.362746,0.893972,0.879731,0.208774,0.923919,0.44519,0.707443,0.690371,0.578408,0.258832,0.936753,0.248986,0.475564,0.698411,0.754679,0.511192,0.511939,0.913743,0.321875,0.126444,0.576414,0.47495,0.509779,0.628076,0.908326,0.325536,0.000968456,0.0446822,0.536041,0.114998,0.655716,0.776814,0.764592,0.557816,0.95201,0.53731,0.857688,0.49787,0.689527,0.681498,0.674598,0.463935,0.678878,0.403245,0.704638,0.362278,0.527436,0.771906,0.608738,0.74134,0.524327,0.981289,0.545773,0.496856,0.350247,0.119112,0.676726,0.927031,0.936669,0.700918,0.288361,0.114838,0.914804,0.237108,0.318739,0.911473,0.330277,0.623447,0.398288,0.954363,0.992166,0.503736,0.513751,0.876628,0.134937,0.288432,0.0961553,0.838431,0.182783,0.216113,0.914671,0.0861826,0.620377,0.701433,0.862049,0.669511,0.149446,0.523504,0.546268,0.198243,0.607426,0.906014,0.880578,0.336859,0.33748,0.491962,0.646754,0.322002,0.639439,0.711617,0.767345,0.569222,0.25063,0.327355,0.0968,0.0204257,0.360857,0.142261,0.70625,0.800456,0.212513,0.207851,0.31661,0.776955,0.162258,0.149349,0.363909,0.0116168,0.108433,0.509682,0.0522129,0.875425,0.228766,0.94107,0.0397823,0.410207,0.504602,0.761583,0.481976,0.192731,0.710102,0.796733,0.715506,0.520462,0.904811,0.54975,0.971035,0.800409,0.693431,0.968724,0.957499,0.62857,0.211763,0.952995,0.366815,0.0438229,0.748449,0.758849,0.528916,0.269723,0.69449,0.944586,0.60746,0.509439,0.0133488,0.360501,0.911028,0.706765,0.515398,0.162855,0.709723,0.387468,0.696662,0.343199,0.208125,0.974416,0.928562,0.781449,0.317747,0.555572,0.505275,0.305012,0.41795,0.818854,0.990222,0.457361,0.794067,0.0377999,0.552318,0.0110164,0.23763,0.753743,0.00259477,0.619744,0.79909,0.0379062,0.917327,0.00202209,0.765097,0.698585,0.238546,0.749466,0.741209,0.465989,0.752003,0.977836,0.156759,0.300808,0.185394,0.300123,0.873901,0.613478,0.815097,0.862028,0.937986,0.103476,0.000432849,0.242425,0.707029,0.329797,0.322479,0.863319,0.303286,0.447895,0.376397,0.467865,0.600605,0.536424,0.588825,0.608058,0.860157,0.669952,0.430817,0.60216,0.767255,0.127844,0.555328,0.452021,0.049201,0.538737,0.590829,0.902045,0.0938519,0.928194,0.68633,0.557342,0.236902,0.718556,0.42966,0.740813,0.144501,0.771363,0.646341,0.989014,0.744787,0.371741,|0.270225,0.945277,0.692282,0.940883,0.826193,0.774058,0.93481,0.00713849,0.197581,0.19316,0.653986,0.659325,0.170558,0.462285,0.471649,0.245835,0.199228,0.0907828,0.150227,0.799976,0.915017,0.0077588,0.771986,0.822223,0.69459,0.852642,0.693101,0.236375,0.250065,0.1037,0.985769,0.837925,0.0169223,0.868966,0.820279,0.881109,0.188496,0.0342844,0.36097,0.216653,0.452994,0.71231,0.0376878,0.549306,0.254926,0.536336,0.103491,0.483436,0.495796,0.138574,0.815177,0.904381,0.0417476,0.825518,0.068207,0.116549,0.118369,0.61645,0.879913,0.991655,0.767235,0.765544,0.429185,0.148531,0.597719,0.622447,0.0869192,0.707989,0.758681,0.357564,0.210164,0.492547,0.718234,0.502353,0.211576,0.217245,0.237705,0.810671,0.796507,0.195192,0.561694,0.294191,0.994288,0.119594,0.818619,0.223531,0.946041,0.114434,0.238221,0.563285,0.396218,0.875415,0.222871,0.236772,0.470978,0.0909251,0.0223089,0.939054,0.402304,0.763,0.533238,0.994053,0.926332,0.598735,0.877364,0.0417498,0.254816,0.401959,0.493951,0.664698,0.164268,0.789816,0.367874,0.906574,0.566986,0.746779,0.447415,0.523533,0.666289,0.182384,0.448131,0.461251,0.909171,0.0613571,0.27809,0.67852,0.11163,0.961287,0.432636,0.725272,0.106386,0.255986,0.66561,0.135025,0.37709,0.478397,0.30972,0.57829,0.0627497,0.136267,0.0135256,0.829702,0.397749,0.649551,0.861129,0.175452,0.668596,0.64546,0.699495,0.956797,0.311735,0.577169,0.992463,0.286584,0.0635627,0.262897,0.27953,0.313198,0.167792,0.659775,0.237622,0.206277,0.805925,0.923331,0.109633,0.800059,0.934744,0.336259,0.175688,0.346715,0.84907,0.897364,0.623557,0.484587,0.485545,0.670367,0.30821,0.409693,0.938774,0.554984,0.252743,0.795869,0.237569,0.304734,0.801368,0.514344,0.832915,0.0348939,0.211673,0.712997,0.245195,0.107502,0.331254,0.523496,0.394863,0.306414,0.268381,0.478774,0.946144,0.643053,0.799489,0.431113,0.758826,0.770754,0.720212,0.8128,0.841295,0.307589,0.220051,0.0329125,0.672518,0.205957,0.481205,0.0665396,0.153933,0.867721,0.136802,0.855129,0.974171,0.615949,0.278987,0.65065,0.453054,0.721948,0.582546,0.81069,0.175449,0.610394,0.0213182,0.388531,0.985225,0.828157,0.841092,0.375499,0.962409,0.868533,0.979843,0.446424,0.729137,0.497139,0.843137,0.969287,0.917689,0.00122213,0.896517,0.932277,0.467465,0.341142,0.389307,0.597116,0.0265982,0.654279,0.832923,0.17043,0.702959,0.424735,0.259408,0.389452,0.481281,0.125695,0.239231,0.0238481,0.948371,0.852999,0.937103,0.27879,0.103091,0.51939,0.74546,0.417174,0.52492,0.418773,0.781556,0.640154,0.588869,0.488333,0.410388,0.247093,0.271048,0.537179,0.796471,0.780997,0.90101,0.35928,0.703504,0.402456,0.498731,0.357542,0.118789,0.10169,0.32626,0.91181,0.664509,0.319851,0.566863,0.539745,0.475625,0.357146,0.38798,0.911099,0.769353,0.469553,0.551951,0.698859,0.586532,0.732279,0.838946,0.986871,0.806859,0.595585,0.530678,0.891441,0.0420322,0.892134,0.849994,0.51793,0.208391,0.501917,0.135203,0.981955,0.867619,0.963525,0.105624,0.730622,0.587339,0.152031,0.17161,0.562277,0.393391,0.338213,0.845166,0.490987,0.513803,0.990861,0.507756,0.557831,0.632378,0.875789,0.157841,0.499599,0.0651426,0.17907,0.120049,0.401002,0.189993,0.414045,0.410945,0.73502,0.691797,0.425291,0.741733,0.0514994,0.885808,0.605524,0.311338,0.386932,0.165914,0.990725,0.18596,0.18892,0.859258,0.458646,0.615775,0.792759,0.371002,0.816888,0.160567,0.366704,0.789342,0.179585,0.796196,0.710564,0.652931,0.97821,0.200586,0.19848,0.502563,0.352787,0.0540175,0.501923,0.419723,0.386121,0.969624,0.631668,0.130881,0.028879,0.947765,0.00829029,0.902192,0.132873,0.303559,0.167054,0.229339,0.0324732,0.593695,0.602567,0.553157,0.0756491,0.945129,0.835555,0.79385,0.901883,0.610119,0.838883,0.264185,0.210631,0.873515,0.44212,0.146039,0.105806,0.00325692,0.355956,0.220579,0.568379,0.949121,0.599869,0.906636,0.734295,0.0857224,0.728321,0.602339,0.648288,0.41344,0.274296,0.10987,0.316345,0.555776,0.541158,0.85727,0.468255,0.197941,0.471467,0.663153,0.264071,0.850008,0.106045,0.303586,0.304961,0.139118,0.926322,0.343711,0.421096,0.205607,0.878994,0.462795,0.226789,0.866388,0.304352,0.908744,0.744462,0.125088,0.707871,0.0850927,0.421784,0.557464,0.208769,0.218182,0.612267,0.931863,0.539445,0.0968171,0.607114,0.871713,0.735655,0.977454,0.854306,0.968246,0.116442,0.0943365,0.869664,0.639868,0.152478,0.133969,0.354574,0.392901,0.784497,0.644265,0.654032,0.503683,0.929011,0.361895,0.159556,0.258814,0.249428,0.695297,0.438491,0.532157,0.648759,0.491682,0.0305341,0.519416,0.567871,0.220996,0.644904,0.749531,0.203611,0.574492,0.585584,0.756392,0.979985,0.113379,0.192585,0.261603,0.189755,0.394938,0.0285631,0.333978,0.431557,0.177114,0.744121,0.175222,0.258998,0.933902,0.636202,0.775394,0.21867,0.89885,0.0527918,0.0204818,0.13964,0.472945,0.185359,0.30926,0.0549478,0.337529,0.167408,0.261855,0.763242,0.869954,0.119025,0.544482,0.303527,0.927497,0.329517,0.706389,0.198961,0.510177,0.244419,0.85407,0.849694,0.128793,0.529124,0.749013,0.720405,0.22089,0.499591,0.0157034,0.52186,0.799455,0.746216,0.887916,0.4416,0.496416,0.578111,0.191747,0.93828,0.905634,0.251645,0.439636,0.389934,0.364,0.763261,0.421305,0.0453654,0.254914,0.553456,0.409601,0.86173,0.00641471,0.871829,0.192955,0.569687,0.28596,0.0389956,0.997802,0.89661,0.153872,0.941178,0.422121,0.480375,0.546775,0.0957738,0.189129,0.310183,0.656889,0.31143,0.616154,0.867656,0.189275,0.409328,0.947494,0.993372,0.970971,0.607006,0.0962684,0.719431,0.160584,0.417076,0.805941,0.817251,0.730359,0.466625,0.350278,0.695442,0.975911,0.135068,0.222965,0.353821,0.405293,0.0670585,0.973841,0.254538,0.967007,0.580997,0.16842,0.827455,0.0382559,0.669442,0.931355,0.525383,0.275441,0.963998,0.0629328,0.563331,0.863743,0.220552,0.985255,0.74372,0.998074,0.54602,0.648112,0.900967,0.0398425,0.468929,0.143396,0.264959,0.181042,0.12915,0.780086,0.898172,0.703367,0.222291,0.713917,0.882315,0.268772,0.769347,0.704833,0.107259,0.458259,0.363385,0.535898,0.29005,0.609107,0.0319858,0.751836,0.396455,0.223464,0.214033,0.822097,0.29433,0.923353,0.27766,0.127121,0.952197,0.395663,0.607804,0.0969455,0.988558,0.752697,0.616866,0.950475,0.515617,0.399276,0.596924,0.243765,0.520165,0.614921,0.584717,0.14846,0.140698,0.817991,0.678578,0.500455,0.809746,0.73544,0.492843,0.343545,0.0266583,0.376333,0.433795,0.0723892,0.377797,0.633394,0.136091,0.379499,0.0616139,0.39853,0.540238,0.197764,0.6173,0.685046,0.641152,0.453152,0.129546,0.558926,0.0227682,0.886839,0.495764,0.300602,0.990925,0.687884,0.118246,0.788093,0.00339419,0.780793,0.76142,0.758087,0.812099,0.351715,0.056786,0.733389,0.953373,0.823749,0.108846,0.280496,0.594168,0.893645,0.725046,0.986474,0.128146,0.899252,0.855944,0.229242,0.593368,0.327847,0.88146,0.220244,0.161614,0.00277722,0.195602,0.945991,0.0791122,0.0733739,0.00896543,0.51413,0.210281,0.112856,0.335041,0.200179,0.492858,0.0817933,0.903018,0.396182,0.159093,0.0602216,0.0422673,0.364597,0.25674,0.856548,0.350504,0.321257,0.407677,0.301647,0.609472,0.789727,0.223807,0.990687,0.910415,0.496738,0.772907,0.212458,0.674238,0.0406025,0.810679,0.615364,0.211441,0.504955,0.177554,0.896161,0.761646,0.895746,0.461002,0.0930439,0.842647,0.859013,0.60297,0.870049,0.307186,0.583693,0.27223,0.62998,0.489273,0.0212381,0.617539,0.61581,0.0648285,0.391683,0.489816,0.740397,0.391325,0.277162,0.885789,0.477811,0.753186,0.302044,0.0686346,0.725854,0.925649,0.875674,0.873574,0.19494,0.0475478,0.519562,0.668115,0.32442,0.478747,0.575051,0.848806,0.557477,0.501722,0.679091,0.94025,0.365897,0.0402701,0.646045,0.169072,0.340064,0.357038,0.345146,0.364832,0.377368,0.893347,0.675379,0.514936,0.105468,0.148596,0.671047,2.36034e-05,0.88715,0.785592,0.209148,5.12004e-05,0.187838,0.304943,0.29274,0.657242,0.0303717,0.235088,0.0660039,0.700879,0.379425,0.015447,0.833425,0.413666,0.00403768,0.353044,0.379387,0.215732,0.671148,0.266824,0.455048,0.156427,0.253608,0.2528,0.932409,0.287296,0.612326,0.797642,0.237311,0.568065,0.261268,0.677565,0.677204,0.3191,0.705252,0.981405,0.0818561,0.745101,0.161979,0.972195,0.724408,0.585689,0.513758,0.267116,0.940837,0.674382,0.343746,0.207809,0.611839,0.546655,0.872622,0.298167,0.764864,0.722773,0.954349,0.0208766,0.919456,0.582762,0.00295997,0.695055,0.891535,0.209459,0.815513,0.843479,0.866698,0.32548,0.345741,0.0309346,0.735099,0.27214,0.290439,0.783935,0.446653,0.576099,0.169071,0.323752,0.108616,0.715076,0.321473,0.151951,0.0272213,0.164474,0.0829015,0.645494,0.591688,0.834906,0.073189,0.157401,0.391691,0.176771,0.470799,0.88645,0.243848,0.96915,0.98736,0.977308,0.870969,0.0136786,0.307756,0.439584,0.364161,0.78257,0.215324,0.96485,0.369038,0.880968,0.993048,0.0826334,0.341671,0.0554885,0.479303,0.0419613,0.520813,0.271595,0.481323,0.95714,0.288986,0.386934,0.3839,0.838763,0.0833382,0.671916,0.543738,0.189242,0.514574,0.587778,0.00699866,0.851979,0.806769,0.67239,0.495177,0.100244,0.150132,0.546271,0.20189,0.215196,0.0189807,0.11437,0.371292,0.98626,0.369996,0.224145,0.0217392,0.210126,0.128191,0.265625,0.0951314,0.887386,0.847702,0.62504,0.107986,0.862742,0.247255,0.456213,0.230732,0.599119,0.309757,0.861506,0.36757,0.566008,|0.58923,0.0685605,0.16977,0.732412,0.182182,0.814121,0.949412,0.895475,0.0538347,0.338482,0.779647,0.859922,0.681667,0.773715,0.755128,0.927444,0.96329,0.584559,0.404229,0.0463974,0.517389,0.635543,0.396416,0.442343,0.467304,0.100586,0.865749,0.829471,0.0877562,0.573492,0.866763,0.29231,0.697093,0.104317,0.814355,0.382995,0.872748,0.719861,0.472897,0.642606,0.717232,0.0575604,0.524276,0.28733,0.51903,0.12736,0.681338,0.934773,0.170332,0.541781,0.652285,0.00343299,0.373729,0.801683,0.524331,0.418438,0.378767,0.384374,0.797666,0.143193,0.177177,0.345457,0.955764,0.933913,0.83457,0.488895,0.40232,0.494948,0.192331,0.0415532,0.991136,0.135459,0.599114,0.157324,0.764853,0.221796,0.0732781,0.50586,0.107226,0.460271,0.463278,0.299367,0.97748,0.0449345,0.503656,0.900254,0.453399,0.257774,0.0388229,0.8084,0.316693,0.0527569,0.0676257,0.238206,0.443792,0.756701,0.753446,0.300385,0.0973793,0.0791493,0.0371556,0.44416,0.380522,0.718776,0.125952,0.878625,0.324277,0.0134717,0.897693,0.49709,0.940457,0.714623,0.403167,0.737415,0.103605,0.434717,0.96715,0.00154471,0.549012,0.928097,0.269651,0.669929,0.695192,0.943879,0.680141,0.723971,0.964433,0.711559,0.111526,0.122349,0.375386,0.788331,0.908247,0.443399,0.670072,0.103232,0.477573,0.454026,0.783589,0.329685,0.413668,0.90543,0.795147,0.765926,0.174649,0.0708246,0.567972,0.613469,0.474823,0.0076583,0.148228,0.633981,0.607654,0.919638,0.423436,0.967338,0.136692,0.577904,0.174098,0.0233523,0.248372,0.159313,0.484015,0.31293,0.115066,0.839656,0.398289,0.785803,0.0644752,0.546145,0.746539,0.532851,0.0679783,0.82359,0.71424,0.281017,0.412769,0.829143,0.0733472,0.728411,0.884845,0.834142,0.819626,0.993655,0.0298653,0.583575,0.381037,0.137963,0.302405,0.868083,0.094158,0.78368,0.418631,0.929829,0.020633,0.848583,0.190822,0.559484,0.296282,0.0434275,0.676064,0.647585,0.0776976,0.502213,0.20187,0.438435,0.929059,0.269957,0.389969,0.124404,0.953825,0.530405,0.109382,0.916106,0.986311,0.213571,0.119037,0.421952,0.0328811,0.803947,0.704363,0.558364,0.117916,0.305425,0.11005,0.403382,0.403567,0.936868,0.120219,0.79368,0.432588,0.233585,0.966697,0.42416,0.503836,0.892067,0.926939,0.25309,0.436664,0.833318,0.868314,0.958509,0.21682,0.316515,0.475005,0.483377,0.427284,0.899052,0.828227,0.150048,0.678809,0.82303,0.792074,0.426603,0.590241,0.666742,0.726296,0.908671,0.612878,0.38978,0.557513,0.0421355,0.96099,0.72317,0.195895,0.655201,0.211004,0.0485682,0.814036,0.467649,0.622721,0.949742,0.744297,0.978907,0.633728,0.119485,0.835771,0.155049,0.266458,0.289567,0.792211,0.471271,0.206557,0.184231,0.303256,0.494209,0.914282,0.00982922,0.438198,0.566414,0.843283,0.0234918,0.437104,0.552749,0.346748,0.816441,0.944549,0.144143,0.47058,0.987452,0.638793,0.114004,0.430393,0.0926186,0.965313,0.827783,0.262187,0.460477,0.945779,0.90539,0.609194,0.521885,0.907116,0.218901,0.529922,0.50049,0.138598,0.0970765,0.69857,0.999933,0.835849,0.795705,0.805546,0.877161,0.70677,0.345319,0.516404,0.826007,0.283364,0.571213,0.994269,0.104857,0.134268,0.458971,0.383821,0.385209,0.546554,0.934202,0.293315,0.200573,0.0247203,0.789583,0.861637,0.870655,0.723439,0.374453,0.590935,0.722306,0.737234,0.706899,0.522821,0.0354467,0.826954,0.406051,0.0679981,0.923617,0.560808,0.448999,0.952006,0.0628845,0.474845,0.859754,0.801738,0.110169,0.32144,0.99812,0.886114,0.642739,0.554812,0.0095616,0.843321,0.756317,0.107216,0.558339,0.378627,0.110004,0.0372914,0.767243,0.50564,0.0487197,0.712715,0.651867,0.939773,0.237164,0.790461,0.0393732,0.439573,0.464394,0.649705,0.95509,0.867909,0.52966,0.97744,0.459619,0.538821,0.890935,0.203737,0.65182,0.605356,0.593243,0.464332,0.949412,0.842933,0.84844,0.624463,0.311651,0.378541,0.0344267,0.983437,0.282805,0.425227,0.206695,0.0911654,0.713099,0.49166,0.336806,0.169959,0.448767,0.0909774,0.238477,0.660639,0.602372,0.844239,0.97145,0.523891,0.105711,0.190903,0.570746,0.500868,0.485629,0.549935,0.206592,0.167991,0.18166,0.602055,0.300517,0.121265,0.152231,0.148466,0.632152,0.0392182,0.596208,0.960316,0.590565,0.525627,0.607459,0.140367,0.424055,0.174543,0.439287,0.0872256,0.933722,0.0856768,0.369213,0.716207,0.141194,0.459408,0.73288,0.387235,0.993935,0.00825286,0.172659,0.550044,0.752688,0.594398,0.242194,0.0670502,0.767684,0.477048,0.324013,0.0160206,0.644311,0.0209082,0.936342,0.401406,0.403137,0.237695,0.638387,0.790939,0.214764,0.861561,0.614167,0.556545,0.696507,0.174389,0.789224,0.0965918,0.739366,0.508913,0.827434,0.386698,0.607747,0.843356,0.495076,0.060267,0.966186,0.389827,0.730071,0.918594,0.0136515,0.584262,0.792526,0.351886,0.691233,0.875285,0.0747532,0.146321,0.343722,0.787349,0.416861,0.290302,0.928716,0.0233366,0.346006,0.351948,0.0843481,0.217398,0.515449,0.0438336,0.439503,0.880596,0.899104,0.884523,0.438772,0.861847,0.576953,0.974345,0.878969,0.298461,0.504035,0.861827,0.938553,0.298528,0.502009,0.32716,0.308662,0.882968,0.238953,0.780408,0.301007,0.39834,0.93308,0.196581,0.181818,0.142298,0.965973,0.51977,0.133913,0.261766,0.541865,0.0656754,0.248836,0.13731,0.373792,0.803947,0.675966,0.942396,0.337862,0.0923974,0.296361,0.986455,0.291249,0.140762,0.899266,0.597098,0.966656,0.256968,0.441239,0.509474,0.484752,0.998888,0.512171,0.807457,0.110777,0.394122,0.205707,0.301225,0.973347,0.591416,0.179712,0.0393803,0.627142,0.452468,0.448136,0.196449,0.95556,0.664839,0.0727283,0.152891,0.0200947,0.305343,0.501348,0.984765,0.67264,0.377347,0.508423,0.669235,0.953391,0.554149,0.246373,0.249271,0.429074,0.615994,0.682403,0.524527,0.696107,0.809771,0.961561,0.44659,0.630392,0.739131,0.987573,0.382704,0.0989997,0.169654,0.503918,0.529161,0.174485,0.789485,0.182652,0.189467,0.261118,0.87818,0.52379,0.700049,0.297056,0.728314,0.86753,0.285468,0.597484,0.376234,0.318474,0.324655,0.191535,0.695153,0.87876,0.877869,0.83944,0.0502244,0.960237,0.157759,0.244203,0.113712,0.8461,0.888348,0.0524394,0.207876,0.884628,0.450239,0.535294,0.458825,0.888663,0.76938,0.115042,0.732575,0.0624568,0.993281,0.0502615,0.448077,0.765258,0.33749,0.274838,0.107139,0.223581,0.573889,0.664469,0.762527,0.220966,0.942416,0.719912,0.0479885,0.148679,0.492,0.340332,0.614241,0.0384948,0.314386,0.405817,0.239751,0.23835,0.290813,0.918571,0.451449,0.99741,0.874117,0.0860763,0.1225,0.984876,0.684528,0.440484,0.943808,0.0869393,0.653283,0.613949,0.311779,0.510572,0.759886,0.330814,0.373607,0.401425,0.920592,0.612235,0.346112,0.1902,0.959339,0.115744,0.976008,0.808041,0.612091,0.154008,0.726779,0.457884,0.945265,0.961379,0.0919766,0.500423,0.0229879,0.297501,0.258585,0.0457003,0.069276,0.941262,0.912081,0.812944,0.446185,0.820426,0.31153,0.640943,0.85584,0.514017,0.72095,0.353166,0.522588,0.350851,0.376368,0.950778,0.284265,0.423494,0.175171,0.610352,0.441178,0.457575,0.949415,0.939011,0.0973474,0.724623,0.45845,0.212887,0.835851,0.543992,0.453379,0.788305,0.0382118,0.696696,0.263344,0.549904,0.425881,0.0505123,0.691474,0.0259021,0.509647,0.31163,0.270151,0.465229,0.631981,0.205215,0.783544,0.820982,0.049915,0.0591332,0.980044,0.507747,0.485386,0.455654,0.175056,0.263039,0.848677,0.160668,0.0617908,0.561861,0.0844367,0.114921,0.175042,0.395854,0.0963119,0.0420304,0.021004,0.783429,0.583449,0.630845,0.751395,0.206052,0.20353,0.788572,0.583186,0.0328455,0.148691,0.434133,0.623404,0.420286,0.827414,0.223283,0.706787,0.484364,0.193612,0.388021,0.420231,0.4182,0.78476,0.66778,0.708471,0.0161298,0.518738,0.606827,0.746688,0.306684,0.0738072,0.49081,0.780269,0.443453,0.257773,0.974837,0.304305,0.147483,0.0489637,0.107563,0.704282,0.216499,0.0927423,0.634586,0.652627,0.624473,0.0918115,0.476809,0.421247,0.901692,0.264883,0.868248,0.833694,0.936334,0.645167,0.955257,0.702672,0.17866,0.304077,0.225218,0.227496,0.207645,0.0260581,0.172396,0.938286,0.0119242,0.739696,0.706753,0.543648,0.564868,0.657958,0.775502,0.0796393,0.669343,0.424611,0.100703,0.296325,0.0850062,0.985226,0.321002,0.531156,0.548948,0.271602,0.65003,0.0923345,0.498675,0.642516,0.939529,0.223066,0.0703207,0.954948,0.841333,0.484979,0.634002,0.363089,0.525716,0.652028,0.0624785,0.400019,0.925832,0.575396,0.367471,0.577433,0.523928,0.0742385,0.919371,0.408587,0.635851,0.86999,0.407825,0.0765229,0.199873,0.148857,0.744631,0.32567,0.426604,0.135861,0.147968,0.623288,0.54279,0.938204,0.145497,0.812506,0.0707797,0.356408,0.564229,0.54199,0.637341,0.878667,0.69014,0.88961,0.877564,0.574298,0.627519,0.113572,0.403518,0.263169,0.966196,0.603697,0.598552,0.130642,0.33891,0.1867,0.566405,0.547412,0.92136,0.95289,0.0409452,0.829058,0.839281,0.808405,0.118599,0.13749,0.586443,0.69162,0.703425,0.342273,0.671341,0.413884,0.724358,0.542484,0.355104,0.515655,0.735906,0.578748,0.0840865,0.69202,0.472295,0.0396815,0.513685,0.429063,0.522967,0.736215,0.838692,0.126147,0.995061,0.348275,0.826775,0.137088,0.327106,0.20551,0.398414,0.927524,0.665999,0.43327,0.105633,0.810487,0.758634,0.229603,0.251614,0.261382,0.431113,0.461309,0.458379,0.383454,0.529941,0.550043,0.870034,0.611041,0.101106,0.0547092,0.0457305,0.15749,0.148854,0.142497,0.925359,0.0202683,0.718965,0.466558,0.680688,0.934878,0.729887,0.53862,0.654795,|0.421219,0.165405,0.640569,0.767343,0.700279,0.0180154,0.655104,0.482174,0.396104,0.896831,0.800871,0.31393,0.409178,0.99475,0.123953,0.825093,0.884405,0.594352,0.589142,0.917032,0.568638,0.674649,0.989193,0.644247,0.429159,0.702407,0.394709,0.868163,0.0152773,0.663015,0.705248,0.385,0.334267,0.809599,0.910969,0.513737,0.543828,0.767068,0.571808,0.0305737,0.31461,0.80863,0.414975,0.250015,0.807429,0.194889,0.765194,0.167144,0.879313,0.0360402,0.114852,0.000699699,0.291238,0.540555,0.238596,0.355218,0.444831,0.815774,0.387231,0.88897,0.152119,0.526,0.668573,0.121212,0.866672,0.0199487,0.234308,0.986276,0.539047,0.470854,0.0291749,0.895996,0.0507337,0.531999,0.395208,0.0902058,0.52615,0.441705,0.0130726,0.407079,0.802686,0.055334,0.403937,0.765853,0.465313,0.917917,0.281393,0.044283,0.0249525,0.712983,0.597632,0.243006,0.279366,0.769485,0.666689,0.380659,0.862791,0.363177,0.930836,0.300844,0.480717,0.965727,0.00396395,0.801604,0.29752,0.158111,0.962127,0.985573,0.83974,0.332952,0.800588,0.254013,0.106878,0.876344,0.447114,0.144068,0.178855,0.116853,0.779594,0.782093,0.390322,0.710831,0.115002,0.17227,0.663357,0.0709831,0.834859,0.0902626,0.522338,0.853283,0.118832,0.594692,0.352285,0.578105,0.528763,0.189104,0.834276,0.326401,0.836738,0.0215154,0.389456,0.288325,0.100579,0.119729,0.0832425,0.250717,0.282541,0.520272,0.51091,0.891864,0.470585,0.700535,0.900041,0.293071,0.19695,0.166521,0.754989,0.702065,0.0615951,0.702163,0.971874,0.633143,0.390037,0.8646,0.109703,0.785749,0.256694,0.22047,0.483301,0.67726,0.222692,0.698956,0.316938,0.353344,0.314819,0.092604,0.385583,0.465501,0.87422,0.817037,0.945939,0.380653,0.608546,0.0420676,0.00125891,0.180797,0.188409,0.764296,0.725967,0.223598,0.808885,0.624018,0.145457,0.120467,0.170302,0.239999,0.867393,0.387912,0.116101,0.00985247,0.374873,0.365258,0.8121,0.0729225,0.534313,0.328243,0.00639284,0.263964,0.55201,0.640259,0.950445,0.45586,0.567825,0.308721,0.344948,0.973272,0.346497,0.708637,0.659655,0.402679,0.498267,0.446909,0.948897,0.450494,0.0836924,0.723813,0.714546,0.228177,0.249428,0.229514,0.845067,0.267316,0.0582558,0.990234,0.671367,0.483897,0.892526,0.859157,0.0611593,0.26614,0.0672357,0.315651,0.16284,0.739551,0.366026,0.309805,0.444895,0.814994,0.939364,0.0229606,0.265069,0.328738,0.143429,0.861137,0.125948,0.140591,0.374782,0.555727,0.136197,0.0935649,0.608715,0.256163,0.253999,0.790096,0.13553,0.592558,0.125939,0.0299457,0.365561,0.347842,0.419165,0.544387,0.0421404,0.357789,0.819532,0.868095,0.0451636,0.785689,0.335554,0.890935,0.274444,0.247814,0.0370053,0.172546,0.167843,0.192327,0.393314,0.760526,0.766057,0.856484,0.506132,0.826186,0.0110043,0.117031,0.330061,0.135111,0.774933,0.475256,0.533181,0.044162,0.952188,0.63113,0.915939,0.482249,0.887197,0.485374,0.352998,0.812034,0.429449,0.87892,0.0450175,0.95938,0.924903,0.133745,0.504301,0.406143,0.0731162,0.122627,0.678753,0.146437,0.218649,0.788014,0.292003,0.34727,0.831985,0.00125796,0.178673,0.819961,0.825487,0.458514,0.548586,0.0619868,0.563496,0.755151,0.255116,0.531395,0.832626,0.505513,0.607591,0.445289,0.561804,0.881839,0.390842,0.556736,0.148748,0.683768,0.997993,0.742706,0.751273,0.868668,0.889211,0.838949,0.25313,0.903582,0.968151,0.813849,0.20134,0.314822,0.675848,0.97553,0.497735,0.0985804,0.777588,0.0746747,0.232475,0.602431,0.189771,0.804862,0.290111,0.504003,0.506274,0.395483,0.254681,0.503403,0.628457,0.902427,0.495507,0.79788,0.831605,0.379807,0.579096,0.788143,0.501275,0.0349782,0.969934,0.596859,0.271818,0.7032,0.0187203,0.137843,0.628373,0.730088,0.0390902,0.143615,0.0836975,0.237862,0.440851,0.848683,0.253031,0.598235,0.679698,0.533521,0.116232,0.247831,0.857017,0.373418,0.847556,0.415278,0.0264221,0.453331,0.410254,0.0569575,0.807147,0.627075,0.833081,0.293781,0.593992,0.874417,0.593686,0.845182,0.749398,0.003712,0.0511659,0.0477532,0.244301,0.649634,0.36235,0.352282,0.289973,0.828552,0.00727314,0.546077,0.506613,0.099705,0.999382,0.0500892,0.663737,0.00292122,0.677596,0.0377453,0.468449,0.500166,0.36928,0.623293,0.109451,0.52461,0.245618,0.038517,0.289118,0.519146,0.346143,0.886845,0.522088,0.97513,0.526813,0.11732,0.616086,0.156895,0.120417,0.387474,0.710293,0.0998441,0.307412,0.851571,0.602464,0.325791,0.472758,0.642113,0.588086,0.448847,0.460512,0.86963,0.881375,0.937224,0.938583,0.965203,0.879741,0.379039,0.0515935,0.721857,0.581832,0.3688,0.90442,0.481862,0.427812,0.514188,0.676688,0.471071,0.877662,0.218146,0.292431,0.963961,0.118244,0.00350982,0.0195691,0.6962,0.218736,0.799772,0.34683,0.523307,0.252286,0.346442,0.550978,0.832113,0.118462,0.187746,0.65243,0.802022,0.177815,0.251099,0.761627,0.389845,0.660421,0.601087,0.294982,0.333993,0.783933,0.239323,0.0439782,0.864183,0.275059,0.461065,0.759214,0.270405,0.0450667,0.0554602,0.998791,0.665419,0.680444,0.0521641,0.370738,0.0163217,0.626487,0.858968,0.7514,0.0833216,0.153811,0.0558557,0.7778,0.691008,0.527699,0.277601,0.3585,0.117593,0.656748,0.560836,0.849104,0.745714,0.966558,0.628514,0.298374,0.29728,0.653159,0.816842,0.301507,0.0947222,0.558311,0.785769,0.609193,0.449561,0.0300339,0.905678,0.383616,0.0238494,0.0447248,0.755075,0.841673,0.608037,0.921491,0.918808,0.917938,0.95202,0.534941,0.634558,0.18336,0.416212,0.13603,0.367714,0.269017,0.562069,0.438287,0.13419,0.366597,0.928678,0.661333,0.787768,0.94692,0.393631,0.259936,0.422223,0.442022,0.710708,0.332261,0.383649,0.261391,0.321874,0.317967,0.727785,0.548597,0.486274,0.0897459,0.821876,0.952134,0.645959,0.295675,0.611543,0.0710189,0.571198,0.107238,0.184264,0.0576604,0.344294,0.334995,0.869281,0.468952,0.859195,0.893036,0.153826,0.995325,0.818239,0.600615,0.560211,0.57158,0.965685,0.729991,0.676372,0.0437349,0.351855,0.11491,0.514137,0.179655,0.0638963,0.556077,0.574003,0.481122,0.123012,0.655811,0.94079,0.311964,0.222568,0.621567,0.935083,0.409454,0.542191,0.998894,0.898,0.936779,0.227116,0.832707,0.225607,0.0385052,0.757596,0.648245,0.614108,0.493339,0.985509,0.18908,0.48429,0.896239,0.157736,0.327707,0.0399939,0.797868,0.690429,0.916704,0.125946,0.63255,0.872568,0.757633,0.67243,0.151327,0.163131,0.894024,0.417344,0.289974,0.237331,0.462178,0.687279,0.042704,0.695942,0.974111,0.243769,0.110789,0.0823794,0.0354219,0.26454,0.0804222,0.150188,0.667282,0.341337,0.0625156,0.460533,0.424107,0.518606,0.170284,0.363459,0.761946,0.329028,0.26466,0.30541,0.835849,0.264713,0.653116,0.41318,0.454534,0.631918,0.97539,0.705452,0.0415583,0.8311,0.450768,0.320761,0.680235,0.828294,0.874916,0.175058,0.322321,0.909273,0.72428,0.520541,0.335363,0.829253,0.6776,0.629673,0.925977,0.816632,0.881093,0.856309,0.984076,0.804945,0.478106,0.56369,0.307199,0.946191,0.353892,0.384484,0.781825,0.46149,0.852062,0.0998261,0.00627708,0.819952,0.174883,0.368609,0.399833,0.156863,0.594559,0.408013,0.184822,0.755405,0.182364,0.588299,0.328947,0.139322,0.487544,0.361212,0.71252,0.0757241,0.322682,0.20446,0.724104,0.893228,0.43902,0.202518,0.782474,0.604081,0.619767,0.646397,0.772324,0.765798,0.708242,0.623855,0.637742,0.567476,0.53464,0.650632,0.324102,0.673332,0.942003,0.84865,0.320354,0.331784,0.0531554,0.453659,0.036347,0.963772,0.315446,0.135592,0.585563,0.0263619,0.41425,0.882965,0.056659,0.65729,0.363824,0.0855796,0.0357797,0.949617,0.774281,0.269133,0.213577,0.753149,0.531233,0.402244,0.178238,0.275934,0.683472,0.138513,0.327351,0.632474,0.649718,0.48315,0.290259,0.49882,0.684211,0.556314,0.416373,0.0294109,0.36823,0.945994,0.164461,0.482312,0.894012,0.058216,0.918412,0.208674,0.438157,0.563541,0.725589,0.657867,0.380667,0.31624,0.511953,0.0153553,0.634931,0.371076,0.58601,0.0306935,0.00302583,0.702882,0.202201,0.795923,0.348867,0.199318,0.482418,0.279574,0.359756,0.722138,0.874742,0.637705,0.781125,0.500017,0.0436184,0.563372,0.43167,0.855586,0.523448,0.516051,0.0718608,0.504359,0.555879,0.712785,0.983641,0.643778,0.0194187,0.533884,0.451442,0.361881,0.925447,0.913216,0.209018,0.768727,0.766799,0.648642,0.487289,0.977052,0.0422454,0.254364,0.896161,0.00514007,0.397074,0.101434,0.00413495,0.99937,0.640719,0.697414,0.183648,0.513173,0.0121623,0.0517319,0.776509,0.615632,0.288895,0.0788665,0.150852,0.633723,0.88672,0.466715,0.173827,0.152165,0.518117,0.660382,0.439868,0.304195,0.390059,0.656019,0.601875,0.00071609,0.496558,0.0950662,0.651359,0.158013,0.551896,0.327188,0.0590923,0.396626,0.956764,0.027716,0.217564,0.029208,0.678322,0.582537,0.09588,0.738333,0.919091,0.292005,0.66483,0.309822,0.613064,0.962168,0.234587,0.220527,0.975499,0.672366,0.257427,0.500343,0.264035,0.450014,0.199617,0.00667,0.850617,0.277356,0.716646,0.402632,0.315589,0.583128,0.830264,0.406925,0.656041,0.0256369,0.681515,0.552509,0.927975,0.564383,0.662175,0.829077,0.954687,0.0765148,0.901925,0.725486,0.661289,0.174256,0.488062,0.10785,0.0773412,0.385662,0.696285,0.920993,0.181884,0.790238,0.227521,0.536311,0.861759,0.863853,0.787708,0.784174,0.482922,0.565918,0.888271,0.968844,0.823184,0.425612,0.717671,0.907016,0.374574,0.269923,0.23936,0.549967,0.804436,0.659056,0.110161,0.724793,0.878125,0.362614,0.73756,0.279104,0.875815,0.554668,0.362836,0.979053,|0.488018,0.302844,0.723905,0.791263,0.845225,0.717497,0.413956,0.81527,0.593556,0.283327,0.28677,0.775036,0.528707,0.0920509,0.973138,0.156051,0.236318,0.137821,0.631889,0.959478,0.98304,0.116815,0.136062,0.84609,0.194507,0.619272,0.561046,0.558941,0.759389,0.143596,0.698176,0.24225,0.332822,0.467997,0.949887,0.947065,0.103941,0.849314,0.529917,0.581371,0.0782259,0.0490599,0.238095,0.686929,0.384158,0.549094,0.00674921,0.6485,0.600173,0.111612,0.984098,0.327173,0.579525,0.0629793,0.48624,0.185651,0.362386,0.177505,0.418166,0.503933,0.89212,0.571649,0.967113,0.970861,0.826612,0.543072,0.936822,0.254077,0.34249,0.0272793,0.541352,0.641279,0.321065,0.00072217,0.885598,0.59403,0.707304,0.62803,0.0496408,0.461194,0.0559862,0.790155,0.64169,0.470003,0.807758,0.0373533,0.844417,0.0165013,0.125401,0.503572,0.996063,0.92366,0.463674,0.776502,0.436375,0.489191,0.969908,0.201591,0.554937,0.904783,0.727834,0.176152,0.941846,0.232893,0.417619,0.0492285,0.692379,0.915055,0.861352,0.222628,0.167485,0.945932,0.387328,0.254993,0.241913,0.941232,0.480143,0.777445,0.443015,0.333798,0.349412,0.136335,0.179832,0.457726,0.861292,0.234296,0.699493,0.87022,0.906355,0.166881,0.953192,0.869704,0.293277,0.75235,0.805968,0.70508,0.892442,0.982587,0.462648,0.701316,0.782335,0.521767,0.8775,0.759591,0.573051,0.827194,0.605473,0.659309,0.772728,0.220773,0.293699,0.0300234,0.270008,0.903401,0.236644,0.941029,0.521723,0.0167462,0.489109,0.599142,0.808997,0.157443,0.535375,0.104824,0.432424,0.611706,0.13494,0.363803,0.239661,0.22421,0.0747299,0.548886,0.192173,0.682683,0.908451,0.389198,0.26662,0.522054,0.00141495,0.554355,0.907146,0.166172,0.979061,0.827407,0.255288,0.565872,0.900444,0.217363,0.929407,0.688766,0.131089,0.00144047,0.272132,0.866361,0.990254,0.287054,0.615626,0.686426,0.659141,0.401294,0.841911,0.828347,0.684172,0.10965,0.54079,0.433345,0.196219,0.495798,0.590374,0.694717,0.636162,0.529082,0.915471,0.749172,0.179489,0.832418,0.888231,0.773178,0.437795,0.337223,0.494866,0.617417,0.767565,0.160975,0.465421,0.811246,0.867792,0.996714,0.176939,0.317449,0.542775,0.147291,0.630795,0.86959,0.907439,0.199965,0.361087,0.410369,0.757859,0.0390989,0.670782,0.983942,0.838089,0.572317,0.137515,0.670916,0.593721,0.711134,0.304677,0.334988,0.396051,0.681855,0.6476,0.134458,0.768031,0.880622,0.342678,0.693738,0.313314,0.117598,0.992743,0.291351,0.959826,0.333539,0.414746,0.273938,0.0159178,0.163017,0.227759,0.743251,0.077204,0.51881,0.0198599,0.340913,0.132798,0.361205,0.264815,0.362016,0.0974746,0.541055,0.102375,0.457929,0.760186,0.164225,0.911675,0.05463,0.557781,0.684005,0.031913,0.70036,0.623619,0.703573,0.792533,0.469943,0.414482,0.389972,0.8782,0.24574,0.512162,0.0764033,0.439634,0.424817,0.920049,0.743541,0.967187,0.37351,0.85064,0.095555,0.945893,0.195512,0.825102,0.218313,0.039345,0.143568,0.324843,0.998902,0.958222,0.309428,0.225158,0.80362,0.700467,0.696565,0.438228,0.100688,0.275289,0.193117,0.241541,0.378636,0.456616,0.320204,0.820625,0.456549,0.503455,0.167326,0.423689,0.457279,0.915115,0.719452,0.109706,0.298879,0.795233,0.39743,0.0119714,0.959114,0.286516,0.889407,0.513022,0.975102,0.175979,0.141414,0.592221,0.434953,0.956484,0.831118,0.58696,0.965965,0.93599,0.555969,0.382972,0.885911,0.562959,0.844761,0.0914952,0.700504,0.0790931,0.64218,0.894114,0.672332,0.684097,0.829386,0.895799,0.21696,0.185877,0.718887,0.141152,0.462398,0.197111,0.0507206,0.946812,0.560361,0.501402,0.998778,0.826317,0.677237,0.757848,0.900948,0.943682,0.479231,0.674361,0.486235,0.0653346,0.300276,0.190048,0.47839,0.874958,0.851422,0.876289,0.13425,0.926586,0.408257,0.831562,0.534206,0.844447,0.736426,0.764925,0.145763,0.27105,0.846586,0.79546,0.448141,0.850655,0.625086,0.31655,0.0808542,0.329928,0.344708,0.370154,0.478829,0.735859,0.798455,0.180828,0.6854,0.605269,0.679783,0.151857,0.886663,0.857443,0.193674,0.889194,0.630504,0.841911,0.850862,0.0656019,0.623051,0.1315,0.958862,0.829161,0.20912,0.626541,0.871977,0.778029,0.452594,0.990567,0.216836,0.502164,0.924659,0.31613,0.516252,0.698559,0.159492,0.663801,0.634282,0.572559,0.617043,0.876932,0.603592,0.864734,0.588298,0.408465,0.319876,0.534459,0.911375,0.361749,0.479339,0.936902,0.735085,0.108777,0.889475,0.414132,0.188197,0.483305,0.816493,0.541406,0.725259,0.308067,0.309474,0.0869994,0.649493,0.440825,0.0408282,0.56774,0.537943,0.233098,0.0457106,0.77636,0.532885,0.585296,0.129193,0.506658,0.280107,0.0542235,0.139302,0.509549,0.178077,0.373892,0.542658,0.315732,0.0846795,0.0901504,0.352956,0.991862,0.741743,0.705833,0.708757,0.11457,0.139041,0.580494,0.885868,0.029211,0.510263,0.514832,0.870523,0.495337,0.61741,0.45261,0.801635,0.613971,0.842539,0.937815,0.796929,0.177618,0.0909032,0.192163,0.622023,0.625655,0.574853,0.288189,0.760218,0.183609,0.0950798,0.413455,0.366953,0.544288,0.373849,0.821727,0.093478,0.493696,0.140227,0.990278,0.14118,0.0668458,0.336127,0.897067,0.658709,0.377372,0.129408,0.640501,0.00641721,0.663132,0.464431,0.381902,0.344728,0.0936224,0.432614,0.714159,0.319104,0.292749,0.552315,0.694309,0.556469,0.293167,0.631872,0.842832,0.492524,0.0444231,0.0584626,0.427252,0.535194,0.0630759,0.885168,0.0910862,0.244672,0.201536,0.978645,0.467125,0.440187,0.832482,0.908114,0.48287,0.0254064,0.00932211,0.317371,0.858882,0.100892,0.85052,0.053674,0.505746,0.288121,0.869059,0.546074,0.22162,0.0793623,0.265052,0.00666535,0.632995,0.920202,0.0173665,0.327662,0.791179,0.289898,0.00205326,0.0681863,0.307795,0.810749,0.735793,0.213437,0.140757,0.374423,0.733643,0.533463,0.861404,0.967537,0.0700722,0.0672292,0.323063,0.452036,0.608548,0.0549358,0.336397,0.692852,0.263182,0.352179,0.181592,0.465888,0.534928,0.382111,0.949248,0.61076,0.21774,0.411759,0.00702715,0.8201,0.668996,0.368156,0.344573,0.484116,0.774171,0.0864887,0.848807,0.876714,0.351674,0.868529,0.38929,0.395926,0.384747,0.0314548,0.94198,0.532066,0.306991,0.020795,0.72137,0.0628216,0.210037,0.553789,0.787748,0.250614,0.698563,0.818917,0.935515,0.194936,0.627573,0.137923,0.383679,0.113584,0.99173,0.0252299,0.140997,0.22975,0.76397,0.268919,0.731227,0.440471,0.404337,0.140118,0.469143,0.752189,0.538419,0.437657,0.0975527,0.210613,0.940667,0.284432,0.742546,0.698379,0.615045,0.0976018,0.271644,0.241448,0.996295,0.261228,0.945119,0.917452,0.653174,0.0171334,0.861456,0.925971,0.48715,0.154167,0.0187573,0.117635,0.366196,0.026294,0.506009,0.420212,0.449343,0.0969957,0.525589,0.303373,0.605731,0.984179,0.761058,0.512688,0.947304,0.147876,0.920007,0.994807,0.363861,0.592118,0.869225,0.0571682,0.430506,0.992891,0.259732,0.352256,0.255156,0.988599,0.84401,0.530834,0.568937,0.820831,0.969989,0.0574932,0.385561,0.0968816,0.426605,0.58631,0.236611,0.452268,0.381843,0.834785,0.91496,0.683863,0.882495,0.262046,0.602533,0.376684,0.472718,0.364487,0.385302,0.85427,0.00523925,0.617855,0.726934,0.708813,0.264604,0.343116,0.132407,0.655593,0.0726284,0.478316,0.462595,0.143805,0.858126,0.609505,0.463572,0.0776413,0.475359,0.50347,0.467165,0.435814,0.953829,0.128175,0.263585,0.118019,0.406958,0.460718,0.095278,0.569741,0.716561,0.712428,0.181651,0.688028,0.00707024,0.83843,0.730858,0.455992,0.579546,0.213153,0.76765,0.104068,0.462172,0.309909,0.389068,0.0417572,0.601044,0.695054,0.00664049,0.408636,0.678462,0.847017,0.99899,0.218909,0.0628975,0.961158,0.32202,0.967696,0.96878,0.766104,0.888478,0.542596,0.506846,0.750934,0.681555,0.666444,0.462757,0.454482,0.42258,0.668607,0.0878255,0.698779,0.251574,0.343073,0.93293,0.980097,0.446421,0.460824,0.378603,0.892491,0.784852,0.463039,0.0326281,0.555738,0.807377,0.418309,0.0657023,0.394394,0.425983,0.994541,0.690605,0.17899,0.495059,0.857771,0.525628,0.734748,0.918469,0.0713471,0.568726,0.112831,0.778457,0.621262,0.174705,0.550389,0.931031,0.240368,0.39433,0.750074,0.32925,0.237354,0.684433,0.995534,0.265527,0.43053,0.943942,0.855735,0.949276,0.210924,0.487413,0.302851,0.661558,0.382377,0.133498,0.0468011,0.600892,0.675898,0.418863,0.0587031,0.671007,0.619595,0.944264,0.873606,0.564393,0.891565,0.376869,0.625223,0.400654,0.608332,0.00612736,0.241866,0.84825,0.561855,0.458699,0.607573,0.24673,0.757173,0.183492,0.22433,0.691945,0.604103,0.780419,0.23566,0.392628,0.660462,0.0190963,0.399416,0.809404,0.446304,0.453218,0.134916,0.336665,0.153007,0.479367,0.413194,0.80574,0.6322,0.204726,0.623267,0.253246,0.320023,0.773178,0.323583,0.606749,0.0238955,0.259741,0.668755,0.0692291,0.635244,0.451165,0.767406,0.893266,0.888436,0.0262392,0.0644774,0.880229,0.546467,0.200939,0.225929,0.758029,0.58674,0.853636,0.740957,0.182977,0.558149,0.648979,0.244455,0.0129318,0.72715,0.470755,0.329328,0.118368,0.0303848,0.662156,0.598273,0.825415,0.557369,0.200417,0.23572,0.00401378,0.510949,0.789024,0.715639,0.897496,0.239447,0.260464,0.260563,0.884225,0.00295836,0.69657,0.71934,0.491926,0.85301,0.661054,0.460966,0.698221,0.499367,0.0140356,0.448586,0.0762664,0.967056,0.618481,0.951088,0.35003,0.826788,0.768234,0.0814707,0.592804,0.125737,0.734655,0.341977,0.00683165,0.665306,0.443706,0.995563,0.491347,0.0438113,0.212542,0.968693,0.892883,0.383811,0.387778,0.892926,|0.977578,0.101425,0.928504,0.110798,0.220805,0.351635,0.413101,0.422105,0.406393,0.851912,0.979563,0.588932,0.512784,0.033955,0.702695,0.732312,0.560063,0.563251,0.686437,0.0159808,0.221612,0.212389,0.828326,0.366857,0.38417,0.996654,0.0421842,0.562198,0.460347,0.518287,0.712465,0.41594,0.124888,0.177375,0.883834,0.607792,0.38144,0.629259,0.401634,0.0671949,0.00703162,0.147924,0.250893,0.814599,0.123211,0.647425,0.387592,0.61453,0.195176,0.821615,0.728681,0.329603,0.914606,0.443601,0.961115,0.893097,0.328631,0.317834,0.111539,0.789613,0.414545,0.92436,0.339783,0.309315,0.668572,0.246443,0.670014,0.850235,0.223963,0.157467,0.393033,0.279035,0.810174,0.638064,0.838231,0.835138,0.624182,0.0784438,0.192059,0.441276,0.0828187,0.23144,0.749757,0.624761,0.495622,0.0749936,0.914503,0.329753,0.141121,0.937347,0.549416,0.158057,0.734976,0.199468,0.659982,0.637043,0.352979,0.982997,0.833819,0.721373,0.882542,0.869595,0.620022,0.805039,0.6963,0.911775,0.479982,0.498791,0.0313705,0.446198,0.443675,0.321164,0.160673,0.381805,0.729585,0.214162,0.516617,0.294862,0.226002,0.0124714,0.326862,0.539651,0.486983,0.429373,0.199428,0.214252,0.849195,0.390726,0.00261885,0.493915,0.408745,0.378712,0.216006,0.235697,0.150601,0.785603,0.483982,0.262519,0.9411,0.332626,0.880804,0.146799,0.617118,0.138951,0.0654261,0.547321,0.221826,0.413716,0.404433,0.253955,0.0768623,0.123021,0.430306,0.74239,0.236238,0.943552,0.143584,0.678093,0.820982,0.542206,0.211053,0.603523,0.671713,0.286592,0.592751,0.317751,0.268457,0.991963,0.54904,0.484197,0.67539,0.311191,0.789267,0.598425,0.423117,0.0191138,0.353004,0.288997,0.481205,0.555288,0.95126,0.851249,0.299982,0.418635,0.959202,0.863589,0.425846,0.776637,0.158568,0.124449,0.294813,0.350458,0.373397,0.711525,0.826812,0.0687838,0.281434,0.0953482,0.797248,0.373158,0.627049,0.919649,0.674468,0.0159199,0.530041,0.0168188,0.552144,0.333887,0.240043,0.861721,0.380303,0.297086,0.284949,0.542593,0.349569,0.300835,0.681591,0.397899,0.947378,0.310429,0.262601,0.518995,0.59566,0.0551541,0.480432,0.326612,0.410174,0.904868,0.141431,0.253134,0.95313,0.996975,0.881961,0.92199,0.535711,0.137183,0.511809,0.209417,0.294086,0.300107,0.659092,0.290127,0.735021,0.263339,0.867598,0.553527,0.96766,0.315299,0.751502,0.551462,0.936786,0.435518,0.083178,0.879084,0.565881,0.544776,0.235844,0.0984591,0.47405,0.153726,0.669134,0.702646,0.891714,0.0451264,0.201377,0.028075,0.70507,0.172355,0.722871,0.590269,0.602911,0.277536,0.752748,0.0871773,0.643119,0.966288,0.159899,0.314925,0.748459,0.190354,0.123061,0.442032,0.825947,0.861144,0.153638,0.778201,0.988913,0.234596,0.0755715,0.725739,0.779425,0.590739,0.904467,0.725415,0.195575,0.692046,0.437739,0.572473,0.345164,0.697866,0.0552949,0.478212,0.39881,0.836963,0.772543,0.17945,0.900544,0.957006,0.0410056,0.684704,0.650628,0.0866884,0.232122,0.192034,0.16622,0.0905561,0.91959,0.22745,0.760244,0.514584,0.683743,0.697278,0.708922,0.528779,0.947358,0.0299135,0.195513,0.0810309,0.310244,0.117679,0.889455,0.970172,0.928954,0.17979,0.934766,0.262682,0.525857,0.511051,0.494332,0.836832,0.544934,0.5445,0.868151,0.934777,0.794183,0.381588,0.0650665,0.0293542,0.753915,0.511259,0.774904,0.646115,0.730377,0.744501,0.39739,0.500014,0.892801,0.599061,0.938877,0.326911,0.970251,0.30063,0.280543,0.602264,0.811918,0.991538,0.665782,0.272171,0.406677,0.40578,0.0745592,0.15331,0.275273,0.646697,0.383119,0.0122039,0.531065,0.0244032,0.102981,0.43327,0.97291,0.497717,0.474802,0.26706,0.414753,0.661971,0.566147,0.395124,0.74386,0.752865,0.764316,0.917878,0.00481731,0.773912,0.686813,0.477911,0.406423,0.39532,0.993194,0.41184,0.780949,0.393995,0.433845,0.0610737,0.628631,0.428489,0.568733,0.45825,0.432973,0.723801,0.221407,0.861155,0.649055,0.0830204,0.334936,0.946229,0.237153,0.589255,0.131015,0.771934,0.437095,0.644295,0.161016,0.119656,0.140474,0.308404,0.280626,0.106117,0.434136,0.268008,0.625895,0.299158,0.417111,0.405309,0.838545,0.615281,0.992296,0.761896,0.807293,0.506837,0.712564,0.927455,0.887926,0.070568,0.211257,0.807066,0.546612,0.24016,0.334255,0.736931,0.873571,0.224303,0.772149,0.658119,0.0691229,0.644072,0.584242,0.148735,0.543889,0.664952,0.562397,0.911242,0.0252093,0.583984,0.738341,0.411807,0.457482,0.389949,0.485906,0.742204,0.842709,0.254423,0.234398,0.874848,0.0986543,0.135888,0.594554,0.0345747,0.262718,0.934763,0.936367,0.497932,0.886306,0.927347,0.432464,0.376363,0.245656,0.751415,0.510972,0.891056,0.487686,0.318541,0.48706,0.157215,0.765299,0.255271,0.560146,0.597754,0.0759891,0.490223,0.708072,0.271852,0.196608,0.476556,0.45522,0.832285,0.735539,0.0308654,0.0039385,0.222395,0.64942,0.901908,0.321354,0.540294,0.585847,0.757603,0.634404,0.967685,0.249685,0.927597,0.331734,0.564037,0.724526,0.22173,0.769504,0.188604,0.929998,0.404504,0.102634,0.845324,0.182972,0.947977,0.742964,0.733909,0.210559,0.919362,0.760693,0.28637,0.904724,0.561621,0.735254,0.902965,0.536582,0.882568,0.245246,0.579435,0.392122,0.946733,0.803199,0.811339,0.245165,0.400658,0.233845,0.408754,0.521373,0.165068,0.489319,0.269695,0.20774,0.788384,0.205075,0.262984,0.210724,0.747278,0.396381,0.13001,0.626225,0.157569,0.730415,0.750404,0.909291,0.549859,0.674549,0.580059,0.548489,0.703488,0.062305,0.409501,0.602068,0.245642,0.961594,0.354505,0.512297,0.320613,0.982291,0.606408,0.967368,0.373748,0.582058,0.000558019,0.838392,0.556582,0.906761,0.732649,0.660461,0.0418641,0.353062,0.0164817,0.523615,0.96468,0.163553,0.383023,0.531206,0.59432,0.645101,0.73689,0.180294,0.762902,0.468303,0.399393,0.641581,0.000759006,0.571837,0.818382,0.160805,0.961942,0.0023427,0.750557,0.04304,0.620291,0.402625,0.486468,0.0720263,0.2902,0.753071,0.237472,0.179781,0.842445,0.186823,0.399022,0.0149643,0.0573123,0.059334,0.942427,0.991006,0.912563,0.24623,0.719975,0.291889,0.146929,0.941583,0.0967429,0.0801657,0.779722,0.266167,0.183224,0.428225,0.976945,0.133122,0.118743,0.471371,0.582877,0.594171,0.531576,0.551502,0.870056,0.469857,0.594175,0.412607,0.972557,0.327582,0.581735,0.252977,0.887146,0.632811,0.283841,0.728373,0.0182938,0.647797,0.985744,0.424975,0.805043,0.080878,0.631905,0.527682,0.0129312,0.645414,0.527811,0.494912,0.54101,0.208515,0.41914,0.421006,0.457874,0.463685,0.548565,0.444287,0.728508,0.629272,0.428972,0.98155,0.851063,0.616587,0.926113,0.645308,0.0318879,0.629959,0.269937,0.863465,0.909577,0.787991,0.431773,0.250426,0.565668,0.257238,0.702412,0.249534,0.608403,0.139878,0.724397,0.90504,0.166737,0.0905434,0.73989,0.423654,0.0138591,0.537302,0.849882,0.614521,0.672165,0.111878,0.250205,0.203833,0.79177,0.694063,0.492923,0.320019,0.0798526,0.804278,0.360952,0.992944,0.226078,0.846722,0.420064,0.707102,0.822766,0.187045,0.13388,0.516805,0.189105,0.16288,0.884076,0.236479,0.551799,0.727072,0.00651371,0.334088,0.968481,0.0150807,0.244133,0.476246,0.947684,0.776889,0.781859,0.0190201,0.443598,0.728271,0.510154,0.751132,0.441739,0.789333,0.548069,0.656607,0.964104,0.951548,0.0215881,0.00428468,0.761385,0.955323,0.497698,0.282484,0.893161,0.54064,0.357966,0.720605,0.0415018,0.7734,0.972415,0.395332,0.960802,0.0113366,0.450966,0.271686,0.976443,0.438677,0.379383,0.522794,0.878999,0.129584,0.769393,0.264053,0.657405,0.354868,0.115469,0.968325,0.605762,0.835711,0.144594,0.0382317,0.267417,0.490074,0.678583,0.7052,0.231973,0.415874,0.0796424,0.8878,0.161015,0.988282,0.156391,0.876677,0.447358,0.91865,0.859453,0.825685,0.0235311,0.237801,0.164881,0.251922,0.105497,0.921878,0.672455,0.42792,0.516892,0.955517,0.533322,0.629715,0.758017,0.0842837,0.889493,0.848645,0.725466,0.916509,0.148929,0.188077,0.322828,0.201725,0.726066,0.294051,0.467295,0.974224,0.355631,0.930425,0.25195,0.215626,0.687209,0.794215,0.295202,0.988562,0.365761,0.704469,0.261119,0.931498,0.473557,0.625449,0.173339,0.960519,0.816774,0.446957,0.0960431,0.821183,0.20028,0.60828,0.204668,0.464555,0.940229,0.0418269,0.579159,0.578203,0.250734,0.496573,0.664585,0.976674,0.00470591,0.0562748,0.937399,0.550482,0.0934964,0.510706,0.704653,0.303768,0.973983,0.540455,0.565165,0.832676,0.855347,0.438702,0.101833,0.231338,0.564585,0.934604,0.411547,0.464484,0.823319,0.327394,0.0710805,0.803526,0.129616,0.309645,0.704105,0.871041,0.482123,0.498278,0.314145,0.315597,0.0566132,0.508278,0.754012,0.0989536,0.625196,0.991726,0.0190222,0.954931,0.257166,0.163181,0.558328,0.195745,0.733275,0.656582,0.964473,0.0472091,0.953328,0.837544,0.934179,0.375439,0.135821,0.338157,0.252559,0.677268,0.0218226,0.234907,0.186516,0.0561358,0.795793,0.923991,0.846542,0.130614,0.0361923,0.701204,0.511382,0.127137,0.389997,0.831022,0.744252,0.302873,0.750517,0.413202,0.782035,0.712234,0.748713,0.898943,0.662799,0.696338,0.846728,0.414682,0.665565,0.429616,0.450498,0.199846,0.0745904,0.811128,0.686923,0.476935,0.409197,0.109709,0.0851344,0.18691,0.357361,0.229944,0.130899,0.587721,0.242241,0.839746,0.783115,0.717631,0.187313,0.0838773,0.214184,0.857408,0.30834,0.553498,0.194318,0.849473,0.351604,0.462703,0.713684,0.539117,0.52836,0.873917,0.600284,0.209877,0.508658,0.701333,0.465208,0.581121,0.451715,0.924239,0.767966,0.414333,0.93096,|0.582914,0.0124899,0.38241,0.671843,0.556457,0.465536,0.840963,0.775919,0.32241,0.294523,0.40245,0.389562,0.66726,0.353036,0.820194,0.964079,0.19911,0.7002,0.247846,0.0546282,0.454674,0.0919102,0.217451,0.637492,0.86826,0.0615858,0.723117,0.31298,0.600884,0.887902,0.310902,0.763644,0.874331,0.506615,0.345884,0.0571623,0.457483,0.908729,0.0894166,0.213987,0.885459,0.933845,0.395179,0.183275,0.754859,0.201091,0.5189,0.182234,0.661862,0.0297535,0.409217,0.405726,0.0787336,0.28974,0.739241,0.598624,0.470046,0.743709,0.853766,0.590538,0.914934,0.210323,0.0158702,0.614134,0.664333,0.0831788,0.425722,0.544795,0.775264,0.655217,0.84569,0.165411,0.690206,0.677636,0.819859,0.289431,0.504647,0.219844,0.763535,0.218919,0.335818,0.416619,0.0524483,0.528857,0.361701,0.317891,0.0951232,0.769509,0.142307,0.255664,0.771093,0.34113,0.336408,0.763337,0.0943863,0.552794,0.0511863,0.630941,0.660681,0.64302,0.251125,0.684268,0.139881,0.293775,0.806738,0.759061,0.647695,0.904873,0.955876,0.303347,0.18975,0.139357,0.358378,0.234409,0.51178,0.694584,0.0135565,0.968493,0.522718,0.504631,0.277864,0.487128,0.55139,0.626181,0.347856,0.750091,0.271711,0.0951297,0.386409,0.264268,0.181916,0.200688,0.332071,0.813269,0.23454,0.234989,0.743857,0.254432,0.133324,0.970373,0.00538313,0.17528,0.972914,0.0547667,0.835204,0.275135,0.692448,0.697249,0.388286,0.504763,0.250434,0.36739,0.758528,0.255838,0.461243,0.855725,0.0210864,0.662141,0.423969,0.35319,0.522671,0.801229,0.787643,0.00810438,0.286881,0.792361,0.458732,0.328875,0.518084,0.662798,0.216531,0.232883,0.0569751,0.0533173,0.467549,0.498881,0.891029,0.976451,0.874802,0.142753,0.216466,0.0417311,0.601531,0.0547297,0.170653,0.0148173,0.623253,0.358169,0.542306,0.0911376,0.242227,0.63089,0.0724062,0.809343,0.719355,0.0367865,0.42141,0.789247,0.974842,0.383649,0.144577,0.719957,0.93666,0.441615,0.473722,0.449245,0.862048,0.534034,0.178309,0.801196,0.561831,0.134854,0.554424,0.175945,0.166879,0.905335,0.695166,0.786487,0.867561,0.603372,0.373101,0.654676,0.503728,0.17049,0.852705,0.765511,0.0121776,0.769927,0.351007,0.880618,0.344222,0.606473,0.357237,0.859982,0.141548,0.37886,0.947929,0.302865,0.61569,0.231505,0.48852,0.43956,0.44698,0.807635,0.490829,0.582109,0.956468,0.566549,0.832084,0.64233,0.727761,0.24729,0.703053,0.200072,0.356189,0.863061,0.138391,0.0822934,0.0969663,0.0380261,0.521416,0.213569,0.922482,0.365582,0.124371,0.232493,0.0166162,0.282981,0.97245,0.942997,0.0954652,0.950244,0.565534,0.16006,0.691776,0.245937,0.461491,0.911175,0.458986,0.538264,0.32101,0.536936,0.841579,0.74399,0.561537,0.180963,0.97531,0.946275,0.811502,0.411793,0.00428355,0.210738,0.92486,0.209014,0.306102,0.539393,0.105475,0.511545,0.914414,0.882555,0.0718715,0.0682337,0.357455,0.45109,0.927389,0.447787,0.709468,0.344586,0.179336,0.91931,0.607458,0.454119,0.294838,0.0737825,0.747542,0.609194,0.960963,0.430783,0.449205,0.904252,0.0260891,0.284584,0.435687,0.966719,0.954437,0.299043,0.66565,0.853932,0.136086,0.542723,0.596481,0.961212,0.566636,0.813028,0.820779,0.0997278,0.915995,0.784711,0.899472,0.748394,0.177763,0.102763,0.655167,0.340788,0.338088,0.0591057,0.464462,0.723286,0.599342,0.226467,0.258207,0.549459,0.409537,0.158418,0.787434,0.920925,0.593535,0.85905,0.739327,0.352063,0.24021,0.0355531,0.580786,0.954176,0.0711452,0.516224,0.703176,0.418082,0.16382,0.30535,0.887985,0.153839,0.0886376,0.0630943,0.73272,0.124933,0.0389475,0.645763,0.278065,0.108712,0.400356,0.758195,0.11994,0.667795,0.309768,0.647181,0.0685443,0.400867,0.379306,0.547485,0.771985,0.58145,0.437616,0.557317,0.328075,0.973598,0.22323,0.475997,0.420758,0.375664,0.774937,0.253362,0.472424,0.74302,0.558791,0.254881,0.326832,0.299663,0.871179,0.676697,0.992063,0.499868,0.801023,0.458973,0.850659,0.896549,0.320355,0.771949,0.169047,0.325084,0.102265,0.655019,0.578421,0.613524,0.0428861,0.0465221,0.972931,0.496619,0.188314,0.220412,0.706965,0.509668,0.0583352,0.681002,0.817973,0.822832,0.18808,0.907266,0.873229,0.827754,0.959804,8.52346e-05,0.927087,0.965035,0.737374,0.987638,0.568911,0.384474,0.683512,0.304451,0.129864,0.35265,0.854499,0.882365,0.596773,0.806368,0.841389,0.713379,0.78382,0.640133,0.580381,0.85618,0.0872797,0.0530869,0.697684,0.13508,0.589707,0.59069,0.250517,0.776376,0.276585,0.781886,0.278562,0.0856889,0.0818456,0.50301,0.639312,0.382036,0.999516,0.436192,0.665618,0.693612,0.777033,0.420657,0.149132,0.600109,0.311383,0.517121,0.265054,0.877949,0.125162,0.737407,0.107728,0.770554,0.976705,0.455444,0.0375693,0.902481,0.978033,0.966743,0.570247,0.526998,0.119725,0.895177,0.944552,0.789307,0.390703,0.552383,0.15036,0.907256,0.4206,0.964176,0.941687,0.463988,0.183912,0.796317,0.13369,0.952414,0.118707,0.266183,0.160941,0.644242,0.24784,0.110752,0.669383,0.974044,0.141982,0.631237,0.581589,0.649326,0.813062,0.2469,0.497258,0.466614,0.382749,0.148832,0.837271,0.131893,0.945751,0.748028,0.919836,0.690263,0.709597,0.00481653,0.215768,0.785205,0.138329,0.374441,0.390766,0.54446,0.829407,0.914764,0.950252,0.519761,0.470991,0.781613,0.661527,0.499048,0.636257,0.908162,0.542814,0.257611,0.438191,0.170021,0.0643451,0.887571,0.618115,0.716691,0.745642,0.904777,0.730384,0.777613,0.0216204,0.945766,0.765683,0.160335,0.759726,0.0540524,0.0604113,0.158339,0.387365,0.818304,0.147266,0.363324,0.863245,0.216917,0.861642,0.976771,0.495103,0.659065,0.885985,0.147224,0.0800573,0.105731,0.984618,0.582705,0.05786,0.749227,0.523549,0.66731,0.610518,0.00342095,0.331418,0.590855,0.962354,0.608103,0.465208,0.979525,0.487271,0.518584,0.639928,0.686447,0.348391,0.99987,0.0312044,0.93851,0.408975,0.975307,0.0653407,0.414795,0.390458,0.551314,0.16163,0.135484,0.812455,0.32343,0.189349,0.434099,0.357439,0.883701,0.427709,0.824751,0.628669,0.953613,0.928679,0.664546,0.852262,0.0214866,0.109261,0.96581,0.0650554,0.186679,0.691362,0.0769681,0.183418,0.491983,0.4597,0.0705894,0.574253,0.655412,0.501971,0.469867,0.695544,0.366135,0.908143,0.712312,0.586181,0.0714183,0.118652,0.635969,0.690397,0.28841,0.43009,0.808195,0.921663,0.711124,0.382065,0.805911,0.694803,0.216896,0.26242,0.307253,0.250368,0.620522,0.45124,0.666544,0.158112,0.441039,0.857492,0.0558215,0.713298,0.410129,0.666209,0.662595,0.4184,0.588399,0.593266,0.152078,0.681593,0.347728,0.438031,0.0229023,0.203771,0.929836,0.85427,0.854623,0.42101,0.205297,0.0589508,0.181425,0.688487,0.189925,0.918834,0.767872,0.671117,0.316014,0.774113,0.092163,0.392619,0.949896,0.153933,0.484166,0.741851,0.125489,0.770547,0.564582,0.77657,0.385847,0.983625,0.729032,0.0456269,0.832112,0.479387,0.420286,0.89207,0.355916,0.678681,0.282622,0.980894,0.125061,0.1159,0.795753,0.429569,0.231072,0.995515,0.948946,0.745827,0.86705,0.639623,0.825402,0.133809,0.475321,0.857718,0.44723,0.29586,0.00795317,0.241008,0.211671,0.93539,0.83592,0.339859,0.66253,0.735849,0.72792,0.766942,0.459212,0.296854,0.826152,0.308007,0.636253,0.459492,0.692385,0.91546,0.524585,0.523677,0.81285,0.93462,0.569072,0.430359,0.635362,0.863466,0.123741,0.871423,0.188199,0.440212,0.547384,0.387089,0.369085,0.878604,0.932217,0.213928,0.0077709,0.876067,0.540018,0.635875,0.433316,0.45641,0.338184,0.485414,0.985492,0.826923,0.351299,0.511903,0.974648,0.723893,0.706381,0.617696,0.386969,0.203924,0.265626,0.804677,0.91962,0.446576,0.275493,0.709052,0.338442,0.652476,0.246182,0.734154,0.667846,0.129754,0.0191522,0.607701,0.99084,0.519088,0.502564,0.0350175,0.365336,0.21956,0.55594,0.935549,0.817811,0.254766,0.868588,0.120844,0.158494,0.15235,0.724541,0.730198,0.657941,0.656703,0.00520974,0.64623,0.079586,0.277387,0.627899,0.727984,0.53775,0.127376,0.748902,0.827111,0.289231,0.534232,0.970462,0.0915061,0.607872,0.503972,0.790734,0.977154,0.0763837,0.612589,0.0892025,0.474965,0.850429,0.490954,0.609117,0.489399,0.904747,0.777401,0.776678,0.506364,0.919312,0.881727,0.840212,0.271728,0.156086,0.632458,0.973336,0.304932,0.573741,0.807686,0.189167,0.504016,0.263482,0.896629,0.136834,0.127644,0.499853,0.0899622,0.608214,0.589487,0.865128,0.493772,0.71435,0.1853,0.295299,0.941585,0.761825,0.0519622,0.240721,0.613805,0.691283,0.262198,0.260481,0.961837,0.795184,0.345636,0.0823781,0.845484,0.0327532,0.884915,0.991512,0.558657,0.957024,0.869254,0.110447,0.825299,0.756321,0.164371,0.942583,0.132037,0.289617,0.31295,0.445166,0.154963,0.9412,0.28919,0.031841,0.902459,0.747157,0.0193641,0.0918465,0.323079,0.111136,0.498269,0.731467,0.260034,0.819992,0.810293,0.769453,0.191731,0.864837,0.878659,0.500353,0.0964162,0.123489,0.0868727,0.160813,0.441478,0.571367,0.7302,0.324943,0.0060879,0.395508,0.554232,0.99639,0.119546,0.82421,0.952883,0.0906901,0.415947,0.0032987,0.302543,0.716034,0.820657,0.033069,0.603968,0.877409,0.641765,0.907792,0.816452,0.704039,0.257232,0.303444,0.972116,0.456586,0.999922,0.676761,0.75584,0.868526,0.424291,0.164369,0.464495,0.424685,0.322349,0.216581,0.25055,0.618231,0.700165,0.990668,0.557655,0.215921,0.891765,0.485281,0.592684,0.302715,0.767092,0.774544,0.360245,0.111083,0.0172188,0.117683,0.75625,0.91173,0.660737,0.990899,0.548961,0.394703,0.606289,0.330371,|0.906362,0.728646,0.39341,0.126249,0.125062,0.0950782,0.123398,0.765555,0.0185545,0.874487,0.615109,0.832465,0.0408665,0.723866,0.968378,0.69829,0.909924,0.127309,0.0152957,0.888117,0.842202,0.465039,0.997972,0.211749,0.468424,0.17989,0.219049,0.262105,0.667904,0.191348,0.97949,0.557049,0.515837,0.934393,0.754609,0.153338,0.972767,0.690787,0.356247,0.365805,0.581258,0.577944,0.322689,0.79134,0.668501,0.628907,0.493919,0.601584,0.754057,0.263163,0.555862,0.982355,0.816127,0.760965,0.802488,0.966507,0.425071,0.245521,0.329304,0.234397,0.120858,0.349459,0.959711,0.23285,0.128224,0.255113,0.245805,0.683196,0.00167215,0.12386,0.087148,0.00548911,0.178633,0.0293655,0.992365,0.916697,0.541473,0.903198,0.447594,0.285195,0.783026,0.85642,0.934007,0.00626624,0.138864,0.593861,0.938827,0.346317,0.645769,0.852136,0.409751,0.40458,0.347294,0.990908,0.06249,0.20067,0.472619,0.611103,0.264156,0.893788,0.437247,0.51841,0.485742,0.350843,0.598093,0.356129,0.881646,0.309795,0.960352,0.127852,0.32613,0.307978,0.7684,0.35204,0.33006,0.701352,0.136564,0.271206,0.684208,0.644236,0.272816,0.858438,0.153554,0.411469,0.326314,0.964075,0.962518,0.807574,0.405799,0.951314,0.6962,0.463108,0.205484,0.898571,0.224354,0.0637863,0.724281,0.155405,0.407126,0.835872,0.877986,0.895081,0.598968,0.655566,0.468897,0.327294,0.00465107,0.51374,0.679014,0.907966,0.215413,0.134426,0.947973,0.232931,0.708579,0.106486,0.0440509,0.706268,0.683358,0.337377,0.546067,0.660381,0.83112,0.488346,0.0301136,0.590807,0.820543,0.773009,0.697326,0.0551091,0.258144,0.381189,0.462804,0.418523,0.739253,0.482336,0.386971,0.349626,0.234056,0.641679,0.988248,0.523452,0.134511,0.693913,0.620203,0.0103987,0.0420452,0.393992,0.815877,0.796594,0.0826684,0.876053,0.600509,0.777897,0.477265,0.520217,0.103805,0.930585,0.982519,0.18824,0.288677,0.127249,0.330167,0.103793,0.697693,0.198658,0.426734,0.759221,0.137757,0.517611,0.267161,0.357294,0.68066,0.98092,0.939461,0.169864,0.678123,0.932921,0.841944,0.195876,0.101152,0.903123,0.866838,0.87164,0.574787,0.788792,0.187204,0.848015,0.429901,0.645671,0.57165,0.0812774,0.757803,0.101445,0.136915,0.313434,0.351186,0.378595,0.882872,0.580515,0.99989,0.441545,0.377891,0.807754,0.0411181,0.565855,0.156552,0.914733,0.454588,0.700147,0.286877,0.925287,0.235039,0.784069,0.967711,0.953315,0.754226,0.513559,0.0620664,0.251643,0.827908,0.763008,0.956983,0.0596915,0.987789,0.9933,0.995673,0.201754,0.375718,0.60232,0.240834,0.813782,0.564286,0.692953,0.895046,0.221721,0.483041,0.853548,0.321885,0.122255,0.559447,0.662827,0.343321,0.254872,0.204694,0.200512,0.92704,0.0131848,0.0735615,0.267018,0.548429,0.614485,0.0168729,0.711026,0.347814,0.28428,0.712468,0.984613,0.635522,0.0222048,0.827419,0.264093,0.701693,0.0718893,0.336716,0.36735,0.400371,0.510082,0.04173,0.514777,0.0363587,0.14995,0.661905,0.0742311,0.278015,0.773385,0.885461,0.534703,0.0381499,0.0171154,0.25192,0.568716,0.882022,0.590635,0.728354,0.6835,0.27314,0.784332,0.127461,0.0607148,0.821662,0.61587,0.49778,0.0277658,0.339844,0.458388,0.0324822,0.354733,0.588145,0.814288,0.98365,0.033485,0.750795,0.163827,0.878991,0.110976,0.142737,0.780634,0.0421022,0.0673775,0.700312,0.736145,0.135246,0.712036,0.433137,0.205111,0.159676,0.592914,0.717537,0.637129,0.533343,0.54251,0.207161,0.151983,0.0434061,0.778503,0.557404,0.374782,0.502014,0.419506,0.152033,0.827655,0.0872638,0.736869,0.169439,0.472919,0.869867,0.493211,0.29158,0.336868,0.263833,0.697937,0.571885,0.157004,0.490633,0.719781,0.962926,0.0431573,0.794756,0.704037,0.797561,0.641543,0.994591,0.71044,0.963274,0.320746,0.215171,0.333129,0.311608,0.776945,0.593676,0.396224,0.794871,0.718566,0.648009,0.0348732,0.441563,0.427673,0.775485,0.74416,0.842599,0.790893,0.598156,0.422073,0.173514,0.858745,0.403789,0.497485,0.644107,0.201874,0.0231036,0.86133,0.866011,0.41146,0.257377,0.686978,0.615193,0.572463,0.650835,0.553307,0.813178,0.541179,0.0165747,0.14483,0.427604,0.082093,0.17103,0.925056,0.0664095,0.0252376,0.668964,0.309611,0.838521,0.990242,0.0325502,0.724449,0.0495413,0.32953,0.751672,0.299965,0.0966765,0.915826,0.748548,0.0115698,0.67832,0.832787,0.944741,0.453206,0.972583,0.587908,0.322912,0.995438,0.821798,0.561958,0.559329,0.0415172,0.0572174,0.0107666,0.679464,0.623989,0.994673,0.0733055,0.335244,0.822917,0.473208,0.256821,0.297942,0.180387,0.739092,0.479083,0.332727,0.45757,0.615687,0.347309,0.251398,0.864835,0.969909,0.0616827,0.301366,0.784506,0.127264,0.0851371,0.451377,0.842276,0.894326,0.215122,0.911971,0.197814,0.845335,0.640912,0.146699,0.0297509,0.438977,0.0423738,0.168838,0.764838,0.464139,0.901255,0.886374,0.0370011,0.876161,0.592653,0.976356,0.498568,0.181319,0.814971,0.954749,0.707238,0.760698,0.162527,0.502659,0.57227,0.869511,0.746258,0.0739059,0.452257,0.176514,0.97963,0.822025,0.756768,0.810796,0.205147,0.392407,0.252402,0.488956,0.100598,0.262943,0.759534,0.0732155,0.121976,0.98204,0.405852,0.960769,0.392617,0.424195,0.525515,0.852362,0.318439,0.0570849,0.808287,0.577328,0.831876,0.128708,0.685383,0.520146,0.763854,0.123942,0.842295,0.415373,0.137312,0.229577,0.992159,0.628874,0.826938,0.736327,0.787363,0.678225,0.425167,0.577893,0.646908,0.948794,0.400847,0.425265,0.275993,0.800406,0.911598,0.222649,0.596498,0.693039,0.137387,0.203777,0.207373,0.603363,0.101002,0.584052,0.670598,0.235231,0.451635,0.0888118,0.818173,0.645868,0.507357,0.342736,0.516594,0.426107,0.410924,0.475045,0.927627,0.144991,0.160125,0.876152,0.728441,0.86504,0.0223753,0.897756,0.0616437,0.397274,0.868069,0.311419,0.055226,0.416213,0.323417,0.67604,0.180836,0.724005,0.130825,0.415049,0.310338,0.270744,0.0790664,0.731997,0.026544,0.113335,0.20326,0.372966,0.884957,0.856429,0.334086,0.683985,0.280041,0.677241,0.105427,0.564063,0.391238,0.334913,0.656744,0.341186,0.497731,0.903347,0.627116,0.0369108,0.241273,0.120094,0.774435,0.491432,0.973557,0.317726,0.741324,0.437018,0.236205,0.961632,0.0344635,0.0994953,0.8572,0.695367,0.0415359,0.0241499,0.745373,0.0177421,0.510001,0.979805,0.176908,0.569486,0.899688,0.449861,0.110507,0.702231,0.979169,0.313746,0.00211447,0.728978,0.758995,0.556865,0.541574,0.0479471,0.307738,0.378826,0.16029,0.0420066,0.883267,0.428553,0.991414,0.665733,0.0608672,0.0301024,0.968032,0.936063,0.564348,0.271498,0.406923,0.501378,0.406114,0.499299,0.407773,0.601531,0.959562,0.381465,0.80394,0.372327,0.802382,0.265073,0.588634,0.814955,0.153615,0.687617,0.0682222,0.468845,0.596384,0.894867,0.459037,0.803166,0.737661,0.399407,0.325098,0.495278,0.582101,0.290308,0.0831971,0.815005,0.791088,0.996918,0.872132,0.675348,0.467691,0.309925,0.962248,0.193897,0.880818,0.0952541,0.806128,0.402387,0.775309,0.900994,0.548877,0.375075,0.16579,0.540228,0.965156,0.688582,0.51518,0.22391,0.00516754,0.120936,0.324953,0.710926,0.121378,0.0963135,0.370731,0.384838,0.838537,0.936818,0.527636,0.364115,0.75825,0.403041,0.0954047,0.677077,0.139986,0.882544,0.456335,0.347279,0.0244705,0.944855,0.599631,0.508518,0.158235,0.142563,0.59415,0.0949949,0.424109,0.793735,0.896882,0.0410188,0.0349706,0.10544,0.445662,0.604577,0.466558,0.279863,0.11412,0.537789,0.64867,0.768448,0.874911,0.823327,0.458962,0.259098,0.853517,0.577145,0.237539,0.0856465,0.209384,0.27325,0.195063,0.776528,0.420956,0.54228,0.0031758,0.182038,0.336456,0.901888,0.994353,0.0205107,0.896771,0.0795339,0.393767,0.255953,0.724411,0.790011,0.584774,0.255867,0.979838,0.228584,0.594133,0.157909,0.129132,0.153328,0.657962,0.177902,0.57164,0.190531,0.806992,0.552287,0.533457,0.927107,0.372927,0.120727,0.758139,0.479002,0.853416,0.117176,0.874526,0.544086,0.186376,0.399565,0.594785,0.999858,0.805317,0.902259,0.558257,0.456237,0.882195,0.375089,0.217915,0.507866,0.577453,0.615824,0.951809,0.172587,0.896184,0.255146,0.0777276,0.637855,0.0433232,0.984454,0.356409,0.407044,0.423996,0.241276,0.596604,0.0583172,0.440372,0.433237,0.920565,0.0809278,0.943607,0.952857,0.222972,0.811694,0.0663904,0.720841,0.667891,0.910825,0.200499,0.110986,0.146162,0.0278758,0.0758269,0.335591,0.764482,0.441028,0.465502,0.212223,0.0390227,0.362392,0.636372,0.149331,0.109727,0.678035,0.131544,0.0013029,0.379371,0.0638561,0.268265,0.541655,0.336954,0.37533,0.450867,0.560125,0.111182,0.464403,0.469044,0.447109,0.763504,0.534655,0.990386,0.472482,0.770072,0.973572,0.295995,0.739141,0.163514,0.546997,0.869444,0.399723,0.243432,0.346385,0.24229,0.4645,0.376779,0.718864,0.0347803,0.94292,0.6634,0.859198,0.859861,0.510488,0.760322,0.701079,0.688588,0.965537,0.572193,0.787964,0.782174,0.0698017,0.0624838,0.032084,0.121167,0.597365,0.497988,0.881149,0.228833,0.615418,0.641924,0.466532,0.0361137,0.578711,0.967427,0.444557,0.149055,0.0841032,0.976135,0.408973,0.26282,0.257957,0.624231,0.596729,0.134416,0.903377,0.893398,0.517487,0.9626,0.882,0.251902,0.479101,0.56293,0.615387,0.103477,0.00228602,0.107464,0.818051,0.183114,0.0670401,0.5741,0.560205,0.488263,0.975039,0.0828957,0.834744,0.235062,0.648627,0.550583,0.00202072,0.772615,0.75879,0.237572,0.232519,0.126385,0.692354,0.391838,0.205587,0.262474,0.495501,0.622603,0.28397,0.15065,0.759595,0.374467,0.642334,0.723221,|0.214435,0.589048,0.752195,0.26423,0.351342,0.497305,0.450335,0.140411,0.749817,0.49218,0.346987,0.955961,0.291062,0.440767,0.905178,0.975117,0.810162,0.634729,0.751609,0.75504,0.255539,0.243217,0.859888,0.584298,0.890434,0.084997,0.651551,0.726031,0.569683,0.363484,0.880742,0.442645,0.422984,0.524812,0.862188,0.928018,0.0229098,0.345892,0.0758917,0.125717,0.537313,0.619481,0.688738,0.644762,0.760188,0.317899,0.283079,0.816998,0.738012,0.654286,0.929035,0.71304,0.8666,0.567735,0.897913,0.796024,0.592023,0.155383,0.951072,0.205718,0.00985384,0.133877,0.937766,0.744146,0.0560311,0.393457,0.0130229,0.0651646,0.590716,0.848181,0.594434,0.550575,0.60719,0.564598,0.731633,0.602036,0.817396,0.194884,0.162572,0.259202,0.836707,0.794517,0.0185488,0.247228,0.351379,0.863414,0.909996,0.0112878,0.977817,0.871595,0.439256,0.791705,0.705554,0.0828288,0.941097,0.617081,0.0437753,0.978762,0.96608,0.172429,0.557681,0.232443,0.338753,0.562795,0.354103,0.216184,0.0477771,0.0463665,0.742566,0.619386,0.198592,0.64588,0.261213,0.977969,0.413888,0.201708,0.931143,0.0528241,0.724581,0.573085,0.266754,0.177199,0.897254,0.450974,0.147914,0.866105,0.635597,0.553644,0.589138,0.626771,0.171218,0.901931,0.528742,0.354806,0.452398,0.28541,0.515328,0.321144,0.0226568,0.435584,0.108836,0.297228,0.0226566,0.749727,0.382737,0.121159,0.863248,0.58822,0.998448,0.465997,0.243602,0.294757,0.89031,0.231297,0.157254,0.213651,0.368738,0.595394,0.140717,0.463362,0.242298,0.16687,0.779011,0.7046,0.454448,0.98534,0.810342,0.48532,0.801202,0.293617,0.364006,0.866718,0.569123,0.529814,0.874772,0.0723047,0.019004,0.217873,0.367278,0.405738,0.848031,0.0892635,0.138518,0.587822,0.179168,0.251397,0.331755,0.131151,0.759125,0.429179,0.742136,0.330413,0.102306,0.56082,0.105025,0.875977,0.873552,0.454288,0.245659,0.0442725,0.525527,0.123318,0.768824,0.71525,0.535996,0.749904,0.981576,0.365185,0.242106,0.660763,0.176681,0.27996,0.62751,0.0244015,0.424874,0.0241113,0.327253,0.24401,0.250139,0.368537,0.278654,0.35897,0.18673,0.151481,0.644423,0.460968,0.86891,0.82575,0.745949,0.440309,0.0046528,0.0262035,0.0415881,0.0994989,0.204481,0.742562,0.398229,0.770046,0.426753,0.414491,0.705479,0.825756,0.846003,0.909989,0.280499,0.780815,0.552152,0.981167,0.772054,0.257084,0.518223,0.87963,0.630902,0.649711,0.170036,0.8514,0.0984977,0.267266,0.0923674,0.421275,0.436467,0.329012,0.178266,0.202338,0.013631,0.493388,0.336352,0.808037,0.320838,0.331948,0.746592,0.786883,0.59267,0.9769,0.041295,0.655532,0.778327,0.78003,0.208221,0.449259,0.290251,0.647311,0.724198,0.537328,0.793376,0.831034,0.87125,0.447607,0.360903,0.963131,0.932022,0.617396,0.281067,0.229526,0.867817,0.922774,0.174177,0.181332,0.274452,0.416335,0.989905,0.435212,0.254791,0.283561,0.807243,0.825141,0.425921,0.478341,0.0908866,0.156984,0.536636,0.476282,0.639765,0.11026,0.296124,0.701759,0.683586,0.504026,0.611631,0.552665,0.378951,0.119497,0.113031,0.295408,0.968036,0.516802,0.0602717,0.316661,0.579532,0.35488,0.109565,0.687889,0.611686,0.57893,0.0950621,0.370744,0.638997,0.404407,0.150404,0.997904,0.391336,0.595286,0.880634,0.336376,0.98191,0.314496,0.447834,0.447497,0.575471,0.609502,0.962415,0.731971,0.554193,0.469492,0.986926,0.491456,0.0712588,0.876757,0.0793089,0.00787038,0.853103,0.636211,0.742728,0.257072,0.712366,0.30868,0.349003,0.857174,0.734512,0.177025,0.679203,0.41516,0.743255,0.968115,0.589177,0.429594,0.825729,0.314767,0.983799,0.678449,0.513465,0.0271705,0.893854,0.186853,0.52552,0.393932,0.107951,0.155226,0.874571,0.765647,0.312648,0.971443,0.154849,0.668964,0.662819,0.751667,0.653063,0.964914,0.136119,0.817021,0.104337,0.00740921,0.886226,0.643629,0.282838,0.393488,0.0207464,0.00515473,0.636272,0.0164384,0.616051,0.0557348,0.491129,0.204812,0.432438,0.150473,0.678463,0.64396,0.570436,0.58404,0.662351,0.141572,0.780037,0.409319,0.783813,0.865944,0.314578,0.387761,0.618605,0.445784,0.0263942,0.555106,0.400425,0.380859,0.983392,0.651082,0.870161,0.644372,0.415604,0.722864,0.486523,0.653982,0.110616,0.549956,0.421802,0.163362,0.712266,0.908917,0.619337,0.246407,0.0687274,0.251956,0.738779,0.185143,0.524007,0.71155,0.989505,0.499816,0.563243,0.358101,0.0446189,0.34066,0.581057,0.148053,0.656328,0.572814,0.470873,0.680303,0.85099,0.915038,0.857529,0.662694,0.848604,0.799057,0.172503,0.91442,0.15384,0.795655,0.219521,0.169054,0.955604,0.825764,0.76504,0.40659,0.505302,0.76155,0.681834,0.457618,0.447052,0.924262,0.0363908,0.503965,0.929423,0.555718,0.0235415,0.038707,0.393003,0.639694,0.815073,0.00646204,0.345801,0.456594,0.924997,0.24657,0.630735,0.444665,0.323556,0.99057,0.912092,0.412695,0.542119,0.0704214,0.676094,0.320079,0.758236,0.78841,0.77404,0.163784,0.159629,0.90116,0.361342,0.890859,0.324762,0.433475,0.914881,0.187425,0.335097,0.379886,0.104702,0.842867,0.238173,0.547428,0.228395,0.659756,0.234931,0.247571,0.16296,0.898475,0.95675,0.457904,0.924879,0.488048,0.81325,0.164936,0.540769,0.386595,0.719436,0.310302,0.778372,0.488447,0.268534,0.543297,0.465768,0.675583,0.74863,0.7624,0.750551,0.686509,0.183806,0.360099,0.122775,0.341509,0.438643,0.118835,0.898348,0.298167,0.102555,0.876256,0.716665,0.875646,0.823632,0.213538,0.78866,0.064154,0.745253,0.232913,0.314982,0.445657,0.167008,0.105605,0.647706,0.311225,0.437085,0.604663,0.108091,0.871251,0.992229,0.308019,0.351186,0.727612,0.422673,0.0281249,0.794418,0.755783,0.0353377,0.631674,0.594969,0.00442511,0.967795,0.863655,0.338131,0.465989,0.34699,0.298029,0.326192,0.0181246,0.15914,0.91662,0.904984,0.354342,0.94364,0.375779,0.963659,0.324905,0.873542,0.850929,0.79107,0.746632,0.706573,0.214405,0.829826,0.435632,0.581491,0.0286004,0.605874,0.941077,0.090887,0.781468,0.00196379,0.729866,0.729651,0.312361,0.0817335,0.791915,0.277685,0.555359,0.210704,0.251234,0.172383,0.0227123,0.216077,0.612008,0.626126,0.703395,0.454938,0.913754,0.108512,0.751806,0.498781,0.72457,0.637064,0.786696,0.889027,0.400059,0.170566,0.8582,0.188959,0.681318,0.86955,0.582603,0.4096,0.354173,0.430992,0.922799,0.928525,0.821614,0.572151,0.910951,0.409995,0.873029,0.458402,0.884139,0.450648,0.612596,0.25714,0.11086,0.542019,0.27185,0.281318,0.0588908,0.619429,0.152254,0.387292,0.706625,0.215055,0.355597,0.652929,0.923668,0.670106,0.949952,0.461382,0.299219,0.652171,0.309052,0.159404,0.640327,0.683862,0.328726,0.558495,0.639438,0.558288,0.476808,0.013518,0.14076,0.374899,0.432178,0.568881,0.985607,0.947607,0.00412059,0.317034,0.221703,0.818679,0.114129,0.162417,0.528839,0.828569,0.905744,0.102609,0.524574,0.662723,0.257623,0.829,0.878841,0.644362,0.727715,0.131816,0.843206,0.510016,0.567577,0.312533,0.0680297,0.494871,0.411059,0.659209,0.456398,0.460749,0.50052,0.674943,0.62835,0.424247,0.933735,0.758835,0.499737,0.369857,0.188172,0.164649,0.409901,0.397477,0.200828,0.0335531,0.557171,0.535634,0.872147,0.509636,0.829641,0.643968,0.479298,0.078309,0.139308,0.301577,0.951598,0.063228,0.940452,0.0275606,0.193771,0.654915,0.245482,0.744737,0.754914,0.487926,0.387033,0.579317,0.356104,0.552402,0.250374,0.599052,0.382335,0.594413,0.847829,0.0423803,0.938257,0.419949,0.807566,0.466418,0.0269967,0.542703,0.434267,0.0652442,0.817754,0.861636,0.693277,0.26998,0.990213,0.759632,0.0295973,0.611475,0.0395176,0.924074,0.871148,0.115742,0.860141,0.326625,0.386512,0.363262,0.0177655,0.319552,0.277077,0.230909,0.997258,0.0579316,0.879988,0.91085,0.173866,0.555784,0.521014,0.465512,0.0228319,0.133804,0.577307,0.782616,0.203953,0.273622,0.145086,0.550017,0.395306,0.293049,0.939193,0.826866,0.646264,0.782398,0.704371,0.314943,0.545864,0.568097,0.98949,0.254387,0.186823,0.992672,0.152042,0.00604916,0.201325,0.579352,0.141013,0.708201,0.671851,0.806433,0.340101,0.107637,0.0207427,0.762801,0.498415,0.610284,0.559614,0.630986,0.66419,0.543015,0.064298,0.165217,0.0852398,0.768049,0.709549,0.395766,0.214518,0.433215,0.229912,0.518691,0.0638486,0.748851,0.9839,0.350302,0.633784,0.183237,0.798935,0.812971,0.677884,0.917707,0.303303,0.614995,0.0497983,0.831421,0.342597,0.0741198,0.874682,0.389333,0.833817,0.401357,0.615587,0.626975,0.771382,0.0358973,0.4809,0.654108,0.817382,0.545217,0.509207,0.71159,0.713088,0.284963,0.572052,0.655682,0.524738,0.177454,0.295746,0.625542,0.293577,0.670282,0.409038,0.240246,0.0312763,0.650537,0.977842,0.458207,0.940542,0.221894,0.429393,0.538357,0.981226,0.427453,0.702565,0.787135,0.35849,0.424194,0.301403,0.0490062,0.651421,0.296397,0.210053,0.179645,0.0135703,0.668997,0.689259,0.75584,0.312833,0.709951,0.0882925,0.528648,0.903973,0.166591,0.00642705,0.183393,0.354036,0.971749,0.818465,0.131917,0.287407,0.412791,0.939444,0.165066,0.284516,0.185083,0.68912,0.194411,0.0524555,0.913221,0.971038,0.791407,0.0400174,0.29085,0.116671,0.71192,0.00811237,0.2779,0.794062,0.304757,0.560671,0.14918,0.529,0.469679,0.896876,0.925479,0.252167,0.831931,0.827235,0.956624,0.157276,0.0141974,0.794029,0.565108,0.0717511,0.831473,0.72674,0.11311,0.643244,0.441674,0.998526,0.707901,0.636706,0.729879,0.773887,0.476567,0.584772,0.578883,0.821973,0.124985,0.630148,0.0159067,0.47948,0.711758,0.675139,|0.423747,0.0825294,0.114041,0.685802,0.504845,0.744125,0.243887,0.894463,0.853697,0.207837,0.913715,0.624457,0.0631604,0.302907,0.134525,0.84577,0.684267,0.29824,0.981881,0.485929,0.791635,0.768096,0.0694377,0.0534921,0.462997,0.12828,0.492664,0.602675,0.468039,0.261462,0.668356,0.891351,0.166245,0.956278,0.312515,0.467228,0.293974,0.625751,0.941394,0.502006,0.304985,0.375162,0.497608,0.911185,0.0283977,0.341767,0.878315,0.990928,0.253619,0.431021,0.307278,0.163325,0.278549,0.892149,0.132126,0.996214,0.0850919,0.59153,0.0495568,0.521368,0.451877,0.393191,0.778283,0.765029,0.157068,0.0450189,0.413114,0.260406,0.225325,0.51271,0.887105,0.101033,0.334632,0.741316,0.669194,0.321692,0.989055,0.0842892,0.29772,0.38715,0.918018,0.159518,0.569679,0.0474254,0.459084,0.900346,0.113928,0.299195,0.288412,0.851018,0.433084,0.323054,0.231161,0.272962,0.584581,0.0216264,0.53507,0.754223,0.835748,0.326169,0.805898,0.827517,0.798989,0.110871,0.0750321,0.419593,0.118956,0.521744,0.530873,0.536044,0.881354,0.999825,0.00965208,0.497767,0.854616,0.545299,0.877911,0.616934,0.0430596,0.159654,0.986708,0.0301045,0.371402,0.439806,0.638298,0.527346,0.911678,0.855027,0.0906533,0.365906,0.0923865,0.0401931,0.23443,0.0678472,0.825364,0.829076,0.348921,0.00849104,0.718991,0.365544,0.966692,0.832939,0.819537,0.635294,0.511949,0.929396,0.510846,0.158469,0.854267,0.0704387,0.247216,0.0416435,0.648768,0.760349,0.768303,0.129673,0.618246,0.958001,0.980574,0.0514532,0.586442,0.752254,0.905482,0.399928,0.382284,0.495595,0.730891,0.109416,0.0936909,0.198736,0.363727,0.533307,0.311787,0.693601,0.0902224,0.2559,0.711132,0.411107,0.982599,0.061631,0.258047,0.549481,0.526083,0.958576,0.116765,0.408045,0.943833,0.856374,0.527979,0.970291,0.827249,0.336539,0.0837719,0.31673,0.801837,0.16384,0.444343,0.408888,0.0806072,0.510405,0.0804603,0.374862,0.117757,0.140223,0.780032,0.232403,0.0019508,0.997727,0.550181,0.940209,0.468644,0.23097,0.0600676,0.228378,0.513944,0.596896,0.766824,0.811383,0.68045,0.0823799,0.862187,0.464804,0.80585,0.364133,0.185609,0.973356,0.621837,0.0194425,0.202141,0.0852488,0.39964,0.180806,0.432245,0.981502,0.138685,0.845453,0.503708,0.905789,0.0649286,0.746796,0.944779,0.324307,0.638705,0.814003,0.177922,0.294562,0.00261003,0.589216,0.69032,0.228286,0.864628,0.126657,0.321483,0.14994,0.854172,0.0769765,0.265893,0.230512,0.645414,0.454254,0.273471,0.490062,0.0598905,0.164202,0.13873,0.130736,0.0906359,0.38411,0.0774963,0.221948,0.276713,0.0634199,0.498389,0.566013,0.724398,0.224308,0.0138555,0.654213,0.446901,0.186377,0.513872,0.0268193,0.721112,0.0138166,0.719479,0.774326,0.449574,0.788788,0.0979787,0.679816,0.294902,0.0693018,0.629249,0.305139,0.546797,0.726409,0.753548,0.47033,0.580851,0.859948,0.834467,0.344186,0.74749,0.0453711,0.735012,0.876959,0.360251,0.0202235,0.287359,0.0377407,0.155736,0.227342,0.218182,0.878846,0.521622,0.111483,0.826227,0.430057,0.551896,0.00509059,0.187319,0.0553774,0.101609,0.245959,0.0779046,0.777079,0.517056,0.564818,0.250721,0.916844,0.507731,0.688297,0.459941,0.589621,0.198107,0.712549,0.530809,0.562624,0.847666,0.637752,0.390185,0.215986,0.112656,0.519668,0.134197,0.627447,0.757769,0.967541,0.0619104,0.783194,0.355935,0.576036,0.232077,0.847987,0.671914,0.490303,0.458653,0.902142,0.121382,0.218513,0.630505,0.453885,0.710762,0.330689,0.225048,0.0569062,0.0937126,0.102857,0.221207,0.761443,0.0514434,0.929029,0.336949,0.799151,0.591695,0.596433,0.230499,0.234635,0.25664,0.32765,0.93502,0.502167,0.11968,0.916546,0.666449,0.0777589,0.720711,0.573548,0.150023,0.453884,0.38851,0.959651,0.706258,0.596465,0.0198475,0.965532,0.394144,0.693985,0.778466,0.571816,0.988277,0.101748,0.442498,0.990857,0.906879,0.0869373,0.490723,0.426709,0.676238,0.271498,0.617225,0.930786,0.677112,0.147331,0.544724,0.953998,0.481183,0.214313,0.797257,0.763461,0.374113,0.482665,0.621546,0.97929,0.586774,0.283813,0.288649,0.0500904,0.952113,0.232732,0.79509,0.239225,0.819354,0.887115,0.845652,0.875923,0.860188,0.868356,0.144721,0.223916,0.494598,0.181303,0.107173,0.606313,0.642977,0.186061,0.934696,0.534849,0.43899,0.0243083,0.546281,0.650492,0.789567,0.463252,0.70414,0.0219522,0.729355,0.193359,0.248622,0.145827,0.408376,0.604495,0.080686,0.195854,0.384181,0.838468,0.97645,0.10507,0.201336,0.999732,0.319195,0.307666,0.742557,0.783109,0.427237,0.867501,0.760245,0.698479,0.668498,0.975797,0.314415,0.584315,0.489004,0.633514,0.311334,0.028485,0.661034,0.965208,0.98366,0.504079,0.473473,0.847714,0.748114,0.148939,0.671501,0.124181,0.823211,0.825715,0.420538,0.541395,0.482279,0.597017,0.0154557,0.915469,0.239368,0.457419,0.00351816,0.0486096,0.147718,0.55632,0.930387,0.574193,0.0436193,0.225254,0.419143,0.919685,0.747713,0.417561,0.725038,0.906941,0.928325,0.616076,0.288794,0.722232,0.893857,0.869471,0.46949,0.574031,0.393423,0.381054,0.691891,0.883296,0.558928,0.389451,0.940432,0.973622,0.371134,0.647319,0.305968,0.0278193,0.79746,0.767265,0.109323,0.0189929,0.649205,0.19875,0.165303,0.0290464,0.191919,0.291921,0.592895,0.270197,0.608429,0.525429,0.0684027,0.968303,0.302865,0.95198,0.36599,0.318856,0.804346,0.297593,0.242014,0.283161,0.880526,0.458112,0.737552,0.470126,0.875596,0.572136,0.575382,0.234176,0.53555,0.373943,0.648793,0.283821,0.5294,0.467669,0.792892,0.302914,0.0445923,0.191971,0.211651,0.100584,0.418964,0.600163,0.981052,0.290811,0.5297,0.48211,0.257299,0.852469,0.8948,0.301234,0.972309,0.294955,0.946995,0.91516,0.860801,0.59052,0.571952,0.595573,0.750149,0.736848,0.514297,0.223586,0.634044,0.87716,0.482117,0.325791,0.893558,0.100845,0.394076,0.434698,0.300048,0.24503,0.903565,0.356045,0.421195,0.967582,0.841169,0.270705,0.496725,0.0986728,0.114614,0.211501,0.122288,0.402666,0.13223,0.257226,0.281437,0.928131,0.677171,0.486513,0.39137,0.0312589,0.34282,0.619883,0.628273,0.40864,0.299144,0.699689,0.564948,0.689663,0.6565,0.0187819,0.467288,0.504097,0.929925,0.55406,0.925025,0.419431,0.464375,0.556355,0.30476,0.556589,0.542108,0.0549659,0.304481,0.671692,0.0674047,0.97568,0.734721,0.159659,0.757941,0.19887,0.475088,0.777677,0.159322,0.685451,0.163902,0.920724,0.0647925,0.57622,0.953187,0.686032,0.286085,0.0377129,0.35005,0.697889,0.200305,0.808446,0.113685,0.476931,0.87048,0.237846,0.0596777,0.331468,0.781118,0.269301,0.8592,0.731588,0.870949,0.582502,0.633753,0.932605,0.224587,0.757386,0.56531,0.364541,0.553204,0.0834803,0.587467,0.446482,0.438721,0.37046,0.472335,0.813354,0.960325,0.849137,0.294299,0.783953,0.173728,0.90828,0.951713,0.450811,0.68093,0.562444,0.0187038,0.104108,0.269111,0.308527,0.53254,0.00210196,0.793266,0.698853,0.301267,0.472872,0.0532937,0.279508,0.354487,0.882129,0.353012,0.677838,0.248784,0.350653,0.384165,0.706419,0.0664908,0.595771,0.656561,0.79913,0.107656,0.893557,0.294068,0.64082,0.365228,0.823967,0.313643,0.985868,0.50286,0.664115,0.33431,0.258072,0.280418,0.0252426,0.700419,0.711696,0.951785,0.621902,0.34519,0.530654,0.479854,0.215379,0.844513,0.442985,0.973546,0.465516,0.904983,0.643558,0.325327,0.121521,0.262287,0.47041,0.909006,0.217336,0.794319,0.305505,0.149668,0.15591,0.123217,0.507358,0.0651695,0.113147,0.267631,0.807423,0.615633,0.624828,0.375178,0.986675,0.295498,0.850038,0.0399889,0.373129,0.925945,0.0140991,0.880686,0.864792,0.274394,0.804314,0.298963,0.363909,0.246846,0.341518,0.077577,0.1074,0.100826,0.570423,0.733278,0.58318,0.443104,0.744695,0.895787,0.0223315,0.00953907,0.577408,0.233825,0.545632,0.853302,0.447422,0.905838,0.813619,0.785709,0.712712,0.197992,0.634437,0.293589,0.130627,0.546069,0.910624,0.760417,0.688333,0.283962,0.709095,0.51195,0.0817927,0.864536,0.809564,0.924164,0.257678,0.340517,0.772459,0.946393,0.0241224,0.246861,0.0443587,0.116482,0.00982505,0.488619,0.517986,0.939397,0.0892962,0.402561,0.0603516,0.451739,0.168707,0.8418,0.642152,0.610275,0.0220625,0.599481,0.554608,0.710345,0.850931,0.430713,0.954114,0.790606,0.47439,0.0514336,0.901704,0.354575,0.682711,0.85462,0.659025,0.92971,0.235729,0.983471,0.705523,0.918998,0.902183,0.545557,0.700113,0.0216817,0.341001,0.656841,0.220799,0.0760296,0.916587,0.409733,0.720741,0.819616,0.64924,0.158427,0.669718,0.272926,0.251084,0.989569,0.101754,0.971869,0.693828,0.533365,0.0948558,0.564204,0.69605,0.0281183,0.0536532,0.943327,0.753915,0.378614,0.100814,0.396101,0.301141,0.478543,0.163937,0.315715,0.956956,0.312049,0.561292,0.309715,0.0705176,0.616625,0.160538,0.553372,0.830956,0.496526,0.946831,0.422323,0.214271,0.845531,0.717985,0.329004,0.817232,0.994131,0.657328,0.123733,0.574495,0.703575,0.185134,0.550471,0.606002,0.637594,0.242377,0.776363,0.446662,0.2489,0.689523,0.747345,0.389659,0.947819,0.029586,0.179826,0.371154,0.410848,0.155394,0.768054,0.0670783,0.517115,0.718752,0.566859,0.925197,0.98095,0.808737,0.202656,0.585372,0.626759,0.240624,0.851714,0.796471,0.684004,0.742237,0.779182,0.207743,0.502428,0.785257,0.964732,0.811547,0.120158,0.544088,0.326807,0.968006,0.0634192,0.720856,0.737548,0.572361,0.318572,0.551253,0.0824363,0.627733,0.0418934,0.80295,0.471269,0.111482,0.367051,0.792267,0.275946,0.415183,0.076307,0.229736,0.43619,0.47586,|0.375751,0.754822,0.704713,0.454742,0.314993,0.581061,0.450966,0.102907,0.219122,0.980913,0.626973,0.115073,0.287918,0.699851,0.561743,0.840491,0.270742,0.679369,0.106131,0.66184,0.298742,0.611477,0.589614,0.357425,0.824769,0.811764,0.0250701,0.590785,0.288589,0.708505,0.156633,0.1613,0.749337,0.94445,0.663503,0.859857,0.685774,0.276449,0.610819,0.764287,0.976268,0.139335,0.0143034,0.358082,0.886082,0.707618,0.528902,0.296588,0.861225,0.292085,0.456331,0.110523,0.150064,0.106437,0.236355,0.776949,0.724362,0.15419,0.702225,0.766884,0.95226,0.0180524,0.289864,0.165378,0.10326,0.696948,0.23739,0.578517,0.648418,0.150152,0.696889,0.438436,0.180656,0.0953042,0.702296,0.245333,0.558747,0.469463,0.7597,0.827622,0.500708,0.551186,0.770061,0.318643,0.305957,0.345125,0.578084,0.38118,0.263488,0.823629,0.672393,0.454291,0.208811,0.416846,0.353861,0.742917,0.503266,0.667244,0.240623,0.476657,0.456435,0.535783,0.409962,0.0848933,0.834197,0.286755,0.206825,0.75128,0.198292,0.0888013,0.900986,0.468728,0.113607,0.560498,0.508236,0.856207,0.734072,0.042178,0.0751487,0.125556,0.681822,0.116282,0.0356563,0.903528,0.981297,0.713519,0.479665,0.050034,0.516455,0.483702,0.877436,0.594788,0.0301472,0.0455595,0.927711,0.469466,0.898377,0.828247,0.668728,0.607416,0.1728,0.978515,0.541018,0.691143,0.736816,0.134411,0.383229,0.175697,0.973051,0.457081,0.94348,0.0272176,0.951062,0.418586,0.57286,0.256072,0.249056,0.331693,0.537502,0.148963,0.12128,0.912157,0.516576,0.780859,0.302974,0.10828,0.251888,0.672528,0.162983,0.329006,0.179452,0.200635,0.944584,0.451537,0.0638015,0.995054,0.311184,0.579053,0.068593,0.945298,0.588857,0.710573,0.899079,0.48915,0.332937,0.54635,0.580442,0.521131,0.952397,0.834745,0.811048,0.211609,0.428429,0.220887,0.861735,0.283369,0.577992,0.995591,0.446463,0.103798,0.400634,0.862317,0.60816,0.476287,0.889596,0.432138,0.890862,0.399412,0.42505,0.209996,0.632242,0.521664,0.904348,0.412485,0.748107,0.689815,0.520108,0.485884,0.477802,0.00690949,0.0597588,0.900358,0.920461,0.568037,0.781702,0.604434,0.297606,0.780191,0.527437,0.607761,0.471924,0.0291898,0.659294,0.864206,0.98281,0.742144,0.764205,0.45232,0.28165,0.86103,0.685587,0.685321,0.457535,0.850458,0.572704,0.458902,0.577338,0.492579,0.207986,0.702178,0.698855,0.850293,0.565676,0.28481,0.973314,0.0943452,0.265285,0.544166,0.730525,0.907566,0.250553,0.54157,0.477507,0.643298,0.0547858,0.782506,0.614723,0.0658327,0.769061,0.891966,0.6525,0.695553,0.402042,0.528231,0.871512,0.39955,0.716071,0.96613,0.0978833,0.886612,0.744628,0.454895,0.420504,0.07166,0.59243,0.174375,0.204926,0.133437,0.0928657,0.266522,0.175534,0.177788,0.599844,0.320012,0.460454,0.259327,0.908857,0.166602,0.489302,0.572553,0.204475,0.560855,0.298478,0.708747,0.684356,0.337109,0.966609,0.386936,0.360694,0.704671,0.32028,0.0486573,0.97567,0.498958,0.130566,0.188144,0.143666,0.138734,0.345825,0.462974,0.50219,0.464574,0.0220445,0.510726,0.743885,0.512727,0.97128,0.332653,0.309624,0.0564356,0.588829,0.646076,0.684968,0.984892,0.928533,0.12198,0.451905,0.753217,0.982823,0.92591,0.717848,0.539635,0.150341,0.632831,0.419911,0.0531488,0.0348082,0.285445,0.693671,0.804081,0.747607,0.890206,0.412941,0.862862,0.441378,0.748993,0.271535,0.126245,0.487373,0.627176,0.973707,0.0119461,0.910876,0.278069,0.676029,0.459577,0.930683,0.416018,0.90675,0.806983,0.31899,0.180429,0.617643,0.253514,0.575211,0.581016,0.409744,0.374469,0.0625249,0.753435,0.367706,0.446825,0.815509,0.643227,0.452098,0.205555,0.51801,0.98609,0.106815,0.654243,0.522268,0.767777,0.693194,0.150978,0.890079,0.27594,0.580678,0.184901,0.51906,0.666357,0.222973,0.299076,0.21672,0.39446,0.307194,0.907917,0.808579,0.555519,0.416265,0.0290792,0.998082,0.648438,0.145889,0.870507,0.178949,0.960047,0.82057,0.272742,0.306087,0.415614,0.107626,0.207417,0.320504,0.333788,0.364764,0.295267,0.92665,0.0637299,0.435023,0.440762,0.382333,0.254839,0.577927,0.788927,0.582203,0.275795,0.260449,0.886456,0.0670166,0.184565,0.265527,0.732808,0.314303,0.632319,0.048016,0.414548,0.0110133,0.954995,0.186909,0.641728,0.751038,0.148962,0.0225148,0.460375,0.62478,0.0942446,0.456876,0.28485,0.0448871,0.491701,0.756016,0.266157,0.800756,0.910381,0.103972,0.575971,0.348077,0.147141,0.579014,0.742083,0.839442,0.105162,0.498716,0.163614,0.551553,0.89936,0.46449,0.154486,0.742461,0.174065,0.000476182,0.287355,0.828496,0.959107,0.208191,0.824235,0.114781,0.0666808,0.760009,0.852575,0.382479,0.471987,0.106443,0.504156,0.960512,0.564993,0.419638,0.803565,0.277714,0.146019,0.393712,0.929745,0.455047,0.00604028,0.393221,0.847814,0.505896,0.661637,0.723419,0.539639,0.241278,0.862648,0.968708,0.527952,0.90274,0.761118,0.0602609,0.601892,0.976544,0.883489,0.759122,0.00582242,0.525059,0.498078,0.99181,0.952254,0.363645,0.216027,0.439463,0.688564,0.532692,0.725554,0.235049,0.275633,0.745997,0.870301,0.658434,0.0234015,0.969748,0.31917,0.867381,0.748417,0.896928,0.280598,0.0839881,0.597488,0.287735,0.644009,0.123228,0.708568,0.039665,0.323335,0.915896,0.766444,0.229517,0.300316,0.719646,0.521425,0.795111,0.322806,0.265337,0.490527,0.798341,0.463156,0.254984,0.728881,0.498345,0.257545,0.875121,0.212072,0.203598,0.973507,0.340558,0.605823,0.146589,0.328749,0.917087,0.136314,0.851824,0.18407,0.0155398,0.828865,0.641825,0.34533,0.832605,0.71361,0.185803,0.910484,0.087334,0.263155,0.785816,0.83993,0.386102,0.509578,0.126044,0.212321,0.35421,0.905564,0.144667,0.371005,0.164538,0.568556,0.640359,0.858506,0.921326,0.526371,0.222932,0.819766,0.486741,0.687276,0.568396,0.664828,0.339577,0.814546,0.796259,0.106264,0.300426,0.10817,0.68629,0.331663,0.111817,0.376675,0.731456,0.58053,0.952859,0.635294,0.7574,0.7292,0.950024,0.894868,0.196194,0.280791,0.291804,0.580291,0.337462,0.30452,0.24637,0.560443,0.24815,0.645556,0.67213,0.73914,0.450054,0.888889,0.761798,0.482509,0.234348,0.932229,0.77692,0.789971,0.591314,0.743132,0.034331,0.0503135,0.600637,0.853789,0.267401,0.740801,0.886489,0.00339961,0.663897,0.28987,0.611061,0.573619,0.104145,0.327416,0.210302,0.578887,0.845883,0.938554,0.876694,0.112994,0.104779,0.811068,0.582221,0.793043,0.88606,0.181002,0.665833,0.986298,0.0395707,0.795236,0.237324,0.632053,0.171273,0.797747,0.905171,0.0200943,0.702755,0.526549,0.799808,0.350705,0.732776,0.991612,0.420945,0.453336,0.16211,0.0201409,0.785093,0.891896,0.728116,0.428687,0.984573,0.0468789,0.213927,0.294112,0.933483,0.258915,0.822598,0.956514,0.662668,0.0698293,0.727587,0.910936,0.0927128,0.614578,0.158266,0.820695,0.0019995,0.420142,0.0189339,0.287349,0.869352,0.202255,0.705701,0.044315,0.76242,0.899222,0.506518,0.916257,0.954139,0.882835,0.384164,0.419883,0.675804,0.572432,0.483071,0.357029,0.507077,0.369926,0.616548,0.594754,0.147089,0.499737,0.405589,0.609719,0.930693,0.353613,0.416081,0.363459,0.359044,0.958954,0.0331584,0.0502291,0.453016,0.584112,0.644109,0.250839,0.684562,0.377896,0.861048,0.79234,0.760096,0.694817,0.554697,0.488171,0.260975,0.315812,0.896802,0.693092,0.738215,0.429554,0.162695,0.310443,0.356823,0.194348,0.300635,0.736239,0.339363,0.225691,0.592151,0.211531,0.480474,0.392643,0.129929,0.715377,0.803282,0.444661,0.15766,0.302023,0.612242,0.971948,0.0820966,0.859329,0.861876,0.970413,0.76087,0.425947,0.543416,0.460605,0.819885,0.848935,0.129893,0.742965,0.666332,0.662274,0.666001,0.0274229,0.208553,0.520033,0.791676,0.181124,0.31227,0.681536,0.627616,0.135524,0.303121,0.0898734,0.092692,0.305795,0.463084,0.0391358,0.11621,0.709961,0.720448,0.00784731,0.643743,0.723075,0.904493,0.25521,0.768209,0.915692,0.173277,0.170841,0.898544,0.346652,0.599395,0.521418,0.884954,0.606515,0.789534,0.434221,0.642643,0.860063,0.263745,0.487386,0.300208,0.709937,0.268888,0.40421,0.745238,0.501325,0.283751,0.755363,0.102443,0.715037,0.800332,0.449709,0.103366,0.330592,0.920479,0.635585,0.419017,0.534204,0.251106,0.309848,0.863595,0.524749,0.34294,0.315544,0.333113,0.775778,0.703161,0.709014,0.758227,0.0962245,0.725715,0.128627,0.441684,0.97548,0.803404,0.410321,0.914766,0.0726552,0.0701661,0.97672,0.657715,0.66338,0.220415,0.591709,0.252041,0.409057,0.707556,0.664081,0.657704,0.690453,0.765612,0.584834,0.776191,0.0991566,0.609345,0.233038,0.513992,0.353226,0.0616128,0.318747,0.617857,0.462807,0.590534,0.294198,0.474036,0.865588,0.640726,0.0165709,0.691072,0.579245,0.651034,0.976671,0.790955,0.519011,0.155719,0.288634,0.104275,0.643169,0.11995,0.42056,0.779326,0.982134,0.421916,0.416246,0.0720975,0.743222,0.746983,0.358687,0.244992,0.361516,0.735903,0.268331,0.297528,0.931384,0.260794,0.669564,0.638679,0.698686,0.588774,0.783352,0.12148,0.203116,0.6015,0.382649,0.513118,0.977775,0.169869,0.652051,0.782682,0.186832,0.295754,0.953238,0.13274,0.491014,0.457914,0.454898,0.950452,0.915472,0.878508,0.966547,0.964838,0.3693,0.888219,0.378387,0.469581,0.39629,0.553324,0.972145,0.968474,0.44343,0.320271,0.0916973,0.0840319,0.930202,0.705581,0.930755,0.903926,0.0832276,0.725911,0.685082,0.727995,0.610697,0.476153,0.74286,0.845307,0.867103,0.975338,0.106011,0.116879,0.261687,0.973828,0.970022,0.703392,0.679274,|0.659935,0.721741,0.222401,0.38762,0.02544,0.696938,0.461099,0.00713468,0.392651,0.449281,0.144672,0.942329,0.695894,0.834647,0.559519,0.469152,0.495921,0.900303,0.779851,0.897894,0.626865,0.840089,0.952362,0.738393,0.80321,0.548676,0.532141,0.11795,0.0401955,0.21492,0.409367,0.844672,0.202943,0.773386,0.121537,0.267448,0.985276,0.934415,0.383843,0.984116,0.634468,0.469305,0.383216,0.767168,0.432672,0.108633,0.0518739,0.340075,0.585145,0.474482,0.348832,0.991132,0.303317,0.431954,0.39201,0.254696,0.220603,0.17606,0.815655,0.140838,0.53743,0.207399,0.606698,0.766297,0.0978616,0.795478,0.263495,0.17345,0.325172,0.790124,0.87947,0.500676,0.787471,0.525949,0.290701,0.279225,0.695422,0.764205,0.454246,0.913762,0.273287,0.320475,0.897668,0.484383,0.0650473,0.72819,0.0420886,0.526368,0.579238,0.310774,0.741022,0.595368,0.494864,0.251476,0.672747,0.792326,0.970656,0.753999,0.734437,0.0500395,0.313287,0.982502,0.551834,0.707565,0.126892,0.291866,0.202957,0.324043,0.146959,0.0419761,0.861627,0.383632,0.295389,0.341784,0.629999,0.912985,0.369868,0.316839,0.247634,0.324492,0.423852,0.260531,0.926139,0.000236094,0.4465,0.716847,0.792144,0.750064,0.635159,0.829542,0.245914,0.692147,0.922039,0.545755,0.601761,0.712827,0.200344,0.88434,0.268885,0.945899,0.371983,0.617239,0.438849,0.249823,0.486287,0.780319,0.423295,0.764456,0.905302,0.0950202,0.216707,0.0195492,0.337023,0.402417,0.785031,0.126187,0.856408,0.740892,0.409701,0.167889,0.580334,0.400628,0.157908,0.536977,0.740422,0.606877,0.990569,0.857585,0.423684,0.333072,0.107159,0.133843,0.269914,0.13227,0.528587,0.0922089,0.308994,0.99382,0.707013,0.672837,0.998452,0.61634,0.712733,0.969631,0.859656,0.616368,0.237467,0.901221,0.887466,0.205056,0.93174,0.342868,0.835586,0.625492,0.140843,0.731003,0.556208,0.833297,0.992043,0.163523,0.772644,0.470797,0.967867,0.0376022,0.570199,0.0415346,0.157857,0.884119,0.218262,0.695437,0.183934,0.38419,0.681804,0.0627632,0.749195,0.182115,0.290033,0.0777786,0.589888,0.130409,0.952763,0.994852,0.551405,0.960455,0.851265,0.228565,0.972834,0.383658,0.0499442,0.243184,0.972048,0.792575,0.0199498,0.910087,0.841669,0.9056,0.576253,0.594773,0.163151,0.118717,0.146775,0.0396802,0.82994,0.861539,0.184281,0.855658,0.674014,0.846903,0.0147541,0.0716991,0.827222,0.451584,0.129569,0.195948,0.898282,0.883379,0.138569,0.563099,0.480031,0.1866,0.69981,0.907913,0.8594,0.298996,0.292715,0.779136,0.419724,0.714862,0.605039,0.558677,0.894141,0.756548,0.790136,0.184457,0.559215,0.274963,0.571763,0.418683,0.777381,0.78104,0.558673,0.0459638,0.0096994,0.773603,0.100076,0.903556,0.00106519,0.290534,0.684304,0.539659,0.320771,0.293808,0.934709,0.434593,0.0925987,0.868207,0.854814,0.248707,0.66364,0.664096,0.393565,0.660105,0.420857,0.310747,0.104651,0.344396,0.375678,0.49916,0.798493,0.805673,0.607406,0.431061,0.83866,0.910431,0.115685,0.898732,0.84543,0.234447,0.980711,0.477357,0.471597,0.339749,0.560983,0.960638,0.1035,0.24632,0.564442,0.281053,0.383269,0.990599,0.0322878,0.279802,0.828115,0.157767,0.213158,0.958979,0.564828,0.26868,0.71921,0.400942,0.633315,0.175354,0.298274,0.282111,0.50144,0.551643,0.291922,0.925299,0.0585164,0.00102359,0.849685,0.92724,0.808614,0.0473725,0.274223,0.989664,0.63405,0.286944,0.594337,0.704679,0.515464,0.38727,0.749043,0.88253,0.0759369,0.994772,0.725274,0.197548,0.371519,0.607843,0.952756,0.508613,0.331239,0.703838,0.607094,0.597182,0.0752462,0.860364,0.698071,0.354482,0.884423,0.408137,0.514394,0.207983,0.586738,0.072093,0.877161,0.337179,0.888486,0.657599,0.835763,0.871942,0.351409,0.831266,0.551585,0.290417,0.178651,0.200527,0.446904,0.0513371,0.515289,0.0198939,0.482609,0.280691,0.592667,0.287488,0.0160684,0.425212,0.830167,0.665165,0.466271,0.00157148,0.480657,0.125325,0.65177,0.912153,0.515752,0.225409,0.124397,0.409362,0.991067,0.60302,0.0875,0.239982,0.181877,0.545761,0.780473,0.911319,0.759821,0.599366,0.193686,0.828401,0.615929,0.729397,0.42421,0.948545,0.540326,0.146783,0.695641,0.386283,0.551089,0.98604,0.327587,0.674519,0.223497,0.627093,0.391384,0.0645837,0.878597,0.987448,0.693521,0.750004,0.771319,0.542814,0.262204,0.686505,0.018433,0.0924064,0.405754,0.70411,0.147942,0.751503,0.140787,0.73567,0.101231,0.998026,0.304034,0.457947,0.961926,0.540633,0.5971,0.264836,0.00848293,0.440425,0.41891,0.735368,0.88257,0.944595,0.792809,0.168733,0.37848,0.914149,0.889854,0.680499,0.982782,0.778071,0.65152,0.613294,0.787277,0.348613,0.94796,0.370916,0.573436,0.513618,0.467717,0.821485,0.222014,0.740497,0.797674,0.38557,0.335683,0.277944,0.847082,0.00971842,0.527931,0.32543,0.73546,0.521604,0.40763,0.728152,0.97682,0.660578,0.937286,0.639059,0.827109,0.932617,0.708175,0.717377,0.939154,0.444569,0.53724,0.397128,0.707215,0.928517,0.364615,0.0399386,0.0440233,0.850592,0.46729,0.748,0.343975,0.698491,0.454338,0.386396,0.0831483,0.469661,0.98172,0.546109,0.0637614,0.90683,0.662973,0.871455,0.535895,0.405583,0.228362,0.690246,0.486052,0.177246,0.0923893,0.0398262,0.0349116,0.831822,0.0647467,0.077729,0.256776,0.291957,0.330301,0.754708,0.57832,0.658775,0.00152421,0.472275,0.394049,0.116401,0.69795,0.809665,0.0176498,0.784405,0.144913,0.272017,0.127861,0.269404,0.619881,0.439439,0.697778,0.387518,0.726988,0.828349,0.553452,0.408542,0.472445,0.107964,0.257427,0.757912,0.581232,0.519855,0.631253,0.273375,0.0143911,0.570664,0.848595,0.00245064,0.500722,0.537323,0.437711,0.217577,0.665913,0.170326,0.316841,0.883174,0.575653,0.404757,0.228771,0.607209,0.957843,0.313392,0.513805,0.389603,0.319681,0.122034,0.164598,0.609035,0.0915637,0.978254,0.849826,0.933651,0.349174,0.400478,0.277124,0.640467,0.610091,0.794361,0.469618,0.06122,0.211791,0.10429,0.770647,0.126912,0.421254,0.474232,0.103674,0.40767,0.0302485,0.00989062,0.637956,0.180999,0.824146,0.476277,0.881332,0.666837,0.639694,0.763742,0.426363,0.493222,0.932021,0.714661,0.0687845,0.714181,0.192064,0.598495,0.617865,0.793233,0.75437,0.467652,0.934153,0.0456839,0.387125,0.296044,0.798423,0.887463,0.442751,0.985538,0.495092,0.284182,0.28608,0.729066,0.59111,0.645698,0.368337,0.943643,0.41682,0.504406,0.887427,0.0636803,0.639238,0.646827,0.43499,0.871198,0.0858836,0.710753,0.151811,0.974316,0.999142,0.488426,0.812664,0.95884,0.160245,0.632405,0.375741,0.529555,0.186673,0.119027,0.504939,0.985439,0.127139,0.862405,0.552723,0.578642,0.331631,0.973183,0.60055,0.456006,0.363879,0.671304,0.634875,0.41057,0.0137621,0.168772,0.313392,0.0579957,0.197338,0.284036,0.870664,0.80479,0.674214,0.763497,0.583681,0.185113,0.0732245,0.778927,0.522317,0.207552,0.331621,0.898158,0.0557193,0.111081,0.414135,0.688832,0.151541,0.842456,0.846924,0.765923,0.255042,0.832453,0.874437,0.771186,0.0350353,0.980946,0.961549,0.426047,0.345603,0.048191,0.45779,0.679859,0.940834,0.97229,0.910862,0.0625772,0.411995,0.221127,0.292715,0.757326,0.243353,0.715581,0.977695,0.432475,0.110808,0.81187,0.277929,0.463031,0.283493,0.579113,0.246181,0.0424628,0.324125,0.824351,0.818106,0.645868,0.364017,0.944631,0.728643,0.748317,0.825037,0.0467406,0.611756,0.399344,0.389397,0.534588,0.0231191,0.464994,0.757102,0.804842,0.557449,0.683684,0.374069,0.472664,0.728989,0.636168,0.393404,0.578677,0.22303,0.538299,0.361957,0.456394,0.239805,0.232573,0.348605,0.952065,0.912897,0.610766,0.141721,0.347819,0.251663,0.722168,0.174575,0.976812,0.414649,0.443806,0.990495,0.694716,0.655344,0.0354489,0.300564,0.803703,0.683501,0.593995,0.973429,0.770612,0.576453,0.62884,0.680698,0.758191,0.939733,0.868379,0.42705,0.334791,0.411269,0.405463,0.252507,0.785116,0.760357,0.654775,0.820743,0.309768,0.305974,0.42577,0.592012,0.503521,0.444816,0.0359831,0.245788,0.0663796,0.492812,0.476397,0.92625,0.0375644,0.0172018,0.24912,0.869863,0.921537,0.208757,0.989995,0.727026,0.337916,0.471862,0.257278,0.805021,0.775057,0.997181,0.821891,0.252097,0.547853,0.523408,0.659106,0.869713,0.45295,0.0345963,0.560678,0.823731,0.0321657,0.960543,0.30203,0.920489,0.818839,0.747937,0.955566,0.947371,0.880293,0.555088,0.441165,0.675063,0.401234,0.923676,0.246682,0.0202563,0.821267,0.817951,0.00205332,0.803284,0.559232,0.609185,0.0871899,0.824853,0.489042,0.207297,0.253091,0.353193,0.549449,0.0899033,0.609825,0.8007,0.0718015,0.68199,0.492023,0.45463,0.268231,0.0023706,0.615041,0.227533,0.957588,0.373576,0.424138,0.155998,0.813857,0.302704,0.557763,0.306863,0.992032,0.288722,0.735844,0.931866,0.030107,0.186344,0.521319,0.137991,0.675202,0.951484,0.594715,0.769557,0.668959,0.875439,0.794289,0.755569,0.304823,0.428702,0.119966,0.158897,0.15231,0.256291,0.283467,0.785473,0.417657,0.396047,0.285804,0.838176,0.366144,0.483422,0.210478,0.503422,0.825754,0.298115,0.316541,0.867511,0.621877,0.447545,0.836536,0.296465,0.729101,0.447548,0.915666,0.105631,0.39887,0.604889,0.209675,0.707567,0.807646,0.940568,0.854148,0.21239,0.832541,0.980058,0.22709,0.945318,0.644784,0.311496,0.841052,0.295063,0.0634059,0.0810199,0.880405,0.722551,0.978987,0.182086,0.290949,0.444507,0.0613967,0.8565,0.0967109,0.901819,0.514709,0.957013,0.918683,0.815802,0.126074,0.294572,0.457174,0.617295,0.502702,0.239193,0.983366,|0.439837,0.167773,0.343453,0.649862,0.440066,0.935638,0.782285,0.37846,0.625556,0.921705,0.235583,0.329923,0.739109,0.32913,0.43865,0.3876,0.404214,0.441272,0.392896,0.556448,0.31904,0.349478,0.192289,0.63971,0.0264971,0.753739,0.650082,0.782724,0.520317,0.0916023,0.0150599,0.0381255,0.870039,0.406839,0.897682,0.890611,0.243838,0.971659,0.620791,0.45929,0.161283,0.0414819,0.604062,0.471407,0.29521,0.640632,0.037286,0.0326079,0.734899,0.352243,0.763253,0.333517,0.108708,0.65229,0.794718,0.738448,0.767758,0.19101,0.667851,0.246353,0.789345,0.579735,0.685264,0.89925,0.353785,0.421437,0.100129,0.852103,0.228364,0.323925,0.33414,0.341708,0.388524,0.0928514,0.297185,0.00275189,0.406171,0.699045,0.432831,0.0658189,0.696569,0.477962,0.694265,0.671182,0.455979,0.420111,0.171469,0.0269122,0.814195,0.0250319,0.39637,0.3353,0.606023,0.48485,0.421256,0.494058,0.0706767,0.3238,0.385673,0.588714,0.422641,0.669989,0.700499,0.122574,0.61782,0.641472,0.536619,0.583896,0.173297,0.483238,0.136999,0.258643,0.583212,0.910029,0.646714,0.160343,0.116786,0.0376337,0.482491,0.099661,0.907167,0.932447,0.703258,0.577639,0.738352,0.29752,0.300211,0.867508,0.826347,0.369394,0.47553,0.22842,0.242491,0.787686,0.455908,0.354923,0.156977,0.904201,0.27649,0.45708,0.541705,0.410501,0.422007,0.906898,0.214255,0.00817353,0.597352,0.446883,0.487492,0.400719,0.285425,0.439041,0.782487,0.485009,0.937583,0.861162,0.0793477,0.98103,0.698453,0.237645,0.659006,0.776797,0.941926,0.667149,0.20011,0.7287,0.240731,0.654307,0.944298,0.272469,0.157556,0.251005,0.205139,0.685711,0.672987,0.498073,0.0350599,0.678917,0.236601,0.766679,0.0786557,0.21147,0.636634,0.602199,0.915514,0.678231,0.246512,0.0386282,0.56579,0.904003,0.622968,0.799404,0.119119,0.949611,0.0809418,0.156808,0.843762,0.299567,0.614626,0.476553,0.361325,0.522833,0.762657,0.837224,0.395738,0.579321,0.371958,0.705209,0.602052,0.806773,0.117804,0.275011,0.293444,0.678868,0.957563,0.741393,0.616798,0.812356,0.0164837,0.0900739,0.919707,0.615799,0.890291,0.752738,0.250896,0.505621,0.0358127,0.470207,0.710379,0.566524,0.429375,0.812205,0.0610813,0.53781,0.953278,0.997553,0.416491,0.566316,0.388821,0.0734873,0.57312,0.302486,0.948385,0.635971,0.596656,0.0353099,0.764714,0.666932,0.5413,0.20149,0.829697,0.762379,0.507399,0.565771,0.556831,0.480543,0.376926,0.655977,0.797725,0.990844,0.926066,0.20819,0.156804,0.496342,0.861895,0.816281,0.169981,0.181742,0.754139,0.371485,0.629052,0.333703,0.80512,0.781361,0.066731,0.893137,0.711568,0.693455,0.617926,0.688523,0.166714,0.801802,0.127801,0.987402,0.999316,0.583438,0.169615,0.704638,0.945856,0.219243,0.30591,0.951576,0.800472,0.652301,0.546661,0.904836,0.0894673,0.0301443,0.720122,0.84939,0.347526,0.277677,0.7539,0.492745,0.338256,0.602678,0.897453,0.641615,0.400297,0.296568,0.583168,0.237082,0.605736,0.31077,0.271754,0.243726,0.794867,0.885982,0.359853,0.905804,0.690272,0.419282,0.0998504,0.187779,0.860822,0.790367,0.868822,0.866027,0.176733,0.438882,0.877845,0.609692,0.911034,0.642012,0.155059,0.112813,0.17088,0.683221,0.985511,0.285441,0.313961,0.752747,0.364685,0.64607,0.843195,0.255875,0.504009,0.085649,0.650425,0.0283845,0.537659,0.537546,0.496011,0.676145,0.579165,0.931644,0.691922,0.669639,0.93758,0.128213,0.700325,0.796692,0.796445,0.0273628,0.984841,0.479125,0.166952,0.610003,0.797464,0.131881,0.368783,0.266401,0.174755,0.962955,0.260649,0.715531,0.826858,0.00234604,0.186858,0.683365,0.715019,0.191965,0.36802,0.0197142,0.289721,0.859576,0.873118,0.517421,0.741136,0.0103129,0.472936,0.984101,0.941289,0.840698,0.483121,0.544685,0.181913,0.0619141,0.316753,0.813908,0.436489,0.00753784,0.799504,0.279327,0.630036,0.403664,0.179992,0.684781,0.327493,0.245753,0.105369,0.597503,0.563608,0.637863,0.0674487,0.922451,0.862722,0.671766,0.242501,0.032748,0.31981,0.471673,0.024147,0.410631,0.26669,0.0482038,0.718049,0.416664,0.328048,0.840654,0.913577,0.71429,0.666694,0.150201,0.813174,0.525363,0.883254,0.0347906,0.567362,0.691372,0.0670921,0.163743,0.0819592,0.808647,0.915214,0.764361,0.605026,0.000397086,0.1195,0.617204,0.166831,0.507559,0.484771,0.325787,0.244788,0.97778,0.87899,0.791211,0.437719,0.490873,0.819969,0.41962,0.342888,0.407608,0.579176,0.673884,0.530897,0.918769,0.351284,0.43777,0.297835,0.992459,0.231222,0.936407,0.74029,0.374992,0.893076,0.84544,0.703706,0.49125,0.677749,0.45752,0.356875,0.265051,0.382861,0.569827,0.791407,0.982781,0.768867,0.138774,0.32756,0.464752,0.290526,0.132954,0.00194818,0.231335,0.54042,0.509311,0.253142,0.965855,0.250848,0.257721,0.490031,0.0639679,0.837665,0.514838,0.680277,0.888934,0.845504,0.98647,0.192907,0.901384,0.0766432,0.174473,0.810074,0.277376,0.231187,0.970154,0.269769,0.740786,0.65115,0.492758,0.483825,0.961478,0.74187,0.00560659,0.559871,0.680754,0.276625,0.606267,0.250362,0.853679,0.0320218,0.825631,0.667056,0.00465572,0.898992,0.190078,0.172479,0.488421,0.514691,0.105671,0.26512,0.237982,0.344743,0.840001,0.931577,0.898832,0.365897,0.517601,0.473191,0.606721,0.096883,0.390878,0.699838,0.694339,0.65121,0.917577,0.375502,0.426069,0.972359,0.40258,0.982374,0.0626315,0.621569,0.604311,0.26581,0.390938,0.568397,0.473685,0.524914,0.475532,0.294414,0.156574,0.624758,0.515016,0.168669,0.0853465,0.555845,0.314285,0.057646,0.796274,0.636483,0.483028,0.810492,0.352584,0.944891,0.943233,0.588631,0.999126,0.622772,0.93263,0.017892,0.971646,0.584735,0.0531819,0.974862,0.896361,0.946647,0.961686,0.699489,0.262329,0.71869,0.406161,0.203968,0.345114,0.847735,0.349269,0.659145,0.131164,0.0801848,0.057099,0.627386,0.241282,0.473245,0.688587,0.264712,0.983363,0.77076,0.980813,0.971037,0.473608,0.282834,0.290392,0.566569,0.851131,0.373265,0.393562,0.268934,0.202548,0.809968,0.89999,0.995808,0.0411443,0.249277,0.663263,0.364167,0.426021,0.72241,0.201877,0.220838,0.744233,0.928737,0.0491256,0.34063,0.595047,0.996902,0.253197,0.0399798,0.91252,0.937616,0.202067,0.266348,0.157956,0.495351,0.137961,0.239717,0.751396,0.486818,0.7981,0.318674,0.540904,0.0553706,0.111266,0.00322843,0.535364,0.634132,0.541124,0.862704,0.705491,0.238797,0.460334,0.218731,0.647261,0.251018,0.965349,0.283397,0.300144,0.467746,0.334782,0.598092,0.585113,0.810312,0.979632,0.795243,0.180864,0.785734,0.754023,0.220294,0.161038,0.676828,0.161334,0.376226,0.980191,0.442312,0.427226,0.431024,0.393741,0.349996,0.0615857,0.0183328,0.950543,0.0885989,0.102504,0.0377805,0.686745,0.0569491,0.114219,0.130763,0.179259,0.170762,0.401638,0.152327,0.920155,0.457321,0.937168,0.3098,0.920626,0.0903736,0.25024,0.0434526,0.772813,0.705425,0.752463,0.976269,0.567648,0.236615,0.606539,0.416457,0.989131,0.310645,0.631345,0.95957,0.0788333,0.25224,0.978702,0.78913,0.454123,0.725229,0.637191,0.79625,0.108012,0.88356,0.55937,0.605947,0.879983,0.476978,0.191758,0.891046,0.340402,0.187382,0.9142,0.185505,0.200887,0.78917,0.926159,0.0692022,0.695418,0.0565801,0.963211,0.306942,0.597722,0.752014,0.272065,0.258745,0.565544,0.673334,0.686,0.936091,0.240627,0.378205,0.12416,0.852782,0.268634,0.886327,0.4184,0.60306,0.917234,0.715432,0.880241,0.948304,0.767161,0.304875,0.659887,0.199891,0.161842,0.783835,0.549148,0.303425,0.219628,0.0214341,0.0798906,0.922341,0.144357,0.791814,0.131545,0.0545679,0.446861,0.637843,0.937699,0.282302,0.271738,0.283689,0.341879,0.780173,0.791334,0.113418,0.332899,0.173588,0.390786,0.370326,0.490888,0.132971,0.16558,0.583761,0.0300099,0.0872138,0.417953,0.626556,0.319402,0.73916,0.262175,0.308199,0.878407,0.369912,0.537568,0.429943,0.911252,0.639448,0.942497,0.7749,0.649848,0.935453,0.572413,0.924973,0.158813,0.576999,0.689833,0.0232545,0.214226,0.767834,0.917571,0.512275,0.342326,0.867269,0.568869,0.984597,0.519923,0.849045,0.932199,0.0868351,0.646157,0.973353,0.275221,0.602727,0.33104,0.321657,0.107901,0.251114,0.397981,0.991651,0.116165,0.499995,0.000742733,0.278131,0.254135,0.450819,0.628172,0.489903,0.605269,0.971635,0.21911,0.140882,0.685798,0.241051,0.929511,0.324829,0.875794,0.0851777,0.766914,0.924269,0.50618,0.917824,0.175904,0.0548252,0.234706,0.46426,0.641256,0.119671,0.793306,0.43309,0.747335,0.266213,0.467563,0.391589,0.328466,0.507171,0.483968,0.597838,0.688662,0.447901,0.775351,0.898665,0.452695,0.922096,0.192361,0.527749,0.847746,0.935652,0.434772,0.0911518,0.381291,0.197028,0.668471,0.179033,0.274075,0.782187,0.249559,0.31527,0.429429,0.773221,0.885182,0.246014,0.288161,0.749493,0.501319,0.685916,0.959855,0.315433,0.938587,0.811144,0.0355958,0.305924,0.629225,0.634234,0.401381,0.577432,0.0211316,0.0199567,0.949568,0.0760702,0.714935,0.78207,0.819803,0.601628,0.129193,0.219516,0.421469,0.268941,0.0304716,0.261768,0.224442,0.51793,0.412549,0.133342,0.240227,0.87212,0.961341,0.279538,0.518149,0.168019,0.64948,0.809714,0.279984,0.588788,0.158991,0.222873,0.573981,0.422111,0.816013,0.822763,0.62974,0.564644,0.455194,0.999266,0.210792,0.619649,0.49011,0.277708,0.758533,0.394302,0.291214,0.00412869,0.64012,0.122178,0.290149,0.488916,0.636481,0.135788,0.616533,0.826423,0.508707,0.00861913,0.264496,0.30788,0.837124,0.609503,0.327835,0.145653,0.519986,|0.203512,0.105862,0.306531,0.348802,0.484686,0.092172,0.642719,0.444214,0.375151,0.179471,0.960296,0.629036,0.496217,0.931156,0.488316,0.19095,0.097723,0.38051,0.129741,0.846394,0.259237,0.245885,0.0011887,0.808878,0.182042,0.720506,0.697947,0.973162,0.680252,0.41712,0.717205,0.090468,0.0146853,0.311783,0.629316,0.39568,0.140827,0.581247,0.656814,0.191323,0.0854453,0.684699,0.65828,0.0898257,0.288592,0.670557,0.833438,0.413669,0.612339,0.594474,0.305764,0.645719,0.37965,0.775597,0.286115,0.681349,0.497193,0.00224286,0.260512,0.635575,0.332779,0.30397,0.309502,0.835302,0.988526,0.786793,0.921566,0.638311,0.44818,0.306626,0.278105,0.144376,0.696665,0.403849,0.103266,0.0857481,0.963621,0.935912,0.857845,0.302063,0.909461,0.578896,0.656998,0.549817,0.558487,0.334814,0.566023,0.77109,0.747865,0.62375,0.948933,0.506859,0.817915,0.427033,0.969223,0.512054,0.10447,0.790685,0.335581,0.196808,0.0515068,0.796632,0.577015,0.855152,0.930078,0.931444,0.0205319,0.998507,0.30915,0.903449,0.193509,0.409783,0.509315,0.382208,0.199549,0.44479,0.751756,0.293939,0.634801,0.00749594,0.610204,0.505224,0.893449,0.888826,0.144643,0.580823,0.616093,0.389235,0.60403,0.903677,0.50569,0.759565,0.511096,0.876197,0.18333,0.0266533,0.289383,0.804394,0.97731,0.375166,0.417265,0.675253,0.927952,0.859969,0.335824,0.803469,0.854745,0.0242561,0.147285,0.932179,0.987738,0.81441,0.235999,0.767079,0.610292,0.495448,0.545328,0.0245594,0.418418,0.326925,0.600814,0.446233,0.720223,0.437038,0.956329,0.339215,0.295297,0.108977,0.483652,0.630957,0.0696271,0.61415,0.762925,0.52803,0.536734,0.46061,0.325661,0.847618,0.200107,0.191339,0.956307,0.962672,0.676357,0.709971,0.782486,0.0998443,0.882114,0.140352,0.113669,0.440801,0.833931,0.577669,0.567961,0.969194,0.516831,0.901364,0.707628,0.121938,0.617343,0.679653,0.308736,0.351952,0.868441,0.901389,0.683322,0.544148,0.866117,0.837921,0.0840685,0.999249,0.239167,0.816117,0.158912,0.652868,0.315916,0.773884,0.756066,0.892341,0.420459,0.189372,0.58748,0.546048,0.547424,0.919335,0.739711,0.232024,0.533822,0.422575,0.548568,0.707116,0.291103,0.318769,0.917495,0.30951,0.654543,0.444538,0.945492,0.252316,0.361691,0.584957,0.149295,0.0422862,0.272104,0.573736,0.865056,0.934029,0.813176,0.271896,0.293284,0.987294,0.772448,0.664296,0.601894,0.0923235,0.992122,0.804219,0.861294,0.368669,0.99939,0.44722,0.429387,0.533046,0.107325,0.815342,0.305164,0.942833,0.50466,0.753698,0.230024,0.62465,0.427878,0.679941,0.641407,0.984786,0.597061,0.013546,0.378672,0.328611,0.846345,0.597324,0.00817662,0.879407,0.650074,0.644165,0.186894,0.103153,0.376928,0.486036,0.0172859,0.441906,0.782092,0.849706,0.645174,0.233795,0.786085,0.844152,0.613044,0.0694527,0.833589,0.186362,0.51506,0.412986,0.478926,0.980512,0.654569,0.779801,0.235038,0.319116,0.0226504,0.944832,0.703639,0.164621,0.651232,0.416073,0.860027,0.798511,0.772799,0.807737,0.371219,0.834132,0.401738,0.530407,0.644702,0.65639,0.32391,0.246375,0.386745,0.322504,0.964305,0.136614,0.28271,0.948475,0.101589,0.285066,0.655291,0.823516,0.343262,0.390284,0.264368,0.0659816,0.449516,0.228078,0.763483,0.893234,0.412273,0.258669,0.513529,0.380197,0.224545,0.158507,0.233644,0.978747,0.355886,0.908386,0.633475,0.247761,0.181739,0.304636,0.310193,0.182271,0.620497,0.424638,0.297786,0.892877,0.205892,0.595662,0.825688,0.134867,0.50358,0.629611,0.822682,0.0740985,0.393699,0.710993,0.878814,0.623184,0.452701,0.181826,0.913837,0.11552,0.755163,0.174958,0.403071,0.272368,0.862641,0.698609,0.677389,0.928512,0.782739,0.768304,0.592194,0.0373797,0.108572,0.696522,0.660378,0.0066179,0.874679,0.648637,0.467414,0.577458,0.151639,0.645716,0.374975,0.0546635,0.0495998,0.316427,0.158322,0.0544651,0.641939,0.0505949,0.00264943,0.30242,0.514803,0.33475,0.34934,0.0266588,0.680308,0.345957,0.597106,0.0750655,0.559043,0.0227393,0.12456,0.539859,0.960873,0.235115,0.308792,0.312764,0.232012,0.398799,0.039101,0.942631,0.354192,0.0712492,0.0544954,0.516747,0.845377,0.442797,0.187127,0.887476,0.706032,0.469907,0.0176255,0.0284079,0.298835,0.454458,0.410249,0.413834,0.538293,0.154518,0.396238,0.98465,0.675159,0.606064,0.870767,0.756641,0.51569,0.561608,0.658103,0.0606343,0.24169,0.219744,0.974883,0.980458,0.129621,0.817073,0.578841,0.96343,0.748752,0.266439,0.713609,0.281956,0.348013,0.501085,0.524674,0.632733,0.818267,0.763602,0.028966,0.682822,0.414234,0.760822,0.0367996,0.7417,0.0983168,0.204626,0.0442988,0.646197,0.894304,0.702483,0.436338,0.163827,0.505976,0.713275,0.114654,0.121471,0.377618,0.319017,0.557142,0.0411531,0.839009,0.388255,0.70562,0.850782,0.70588,0.527996,0.368443,0.869864,0.718853,0.550451,0.420774,0.0699265,0.420923,0.203148,0.0994613,0.539588,0.510321,0.357871,0.632965,0.311575,0.616115,0.0897318,0.226365,0.224959,0.782952,0.320639,0.397193,0.494134,0.137466,0.510966,0.991862,0.666297,0.855862,0.587628,0.846612,0.79117,0.254349,0.339829,0.942521,0.0687239,0.293995,0.672335,0.878495,0.844746,0.276976,0.983589,0.976805,0.640183,0.0307993,0.0765973,0.899664,0.465861,0.397986,0.363141,0.819313,0.00752461,0.632127,0.327736,0.895982,0.541894,0.799377,0.126773,0.330824,0.413627,0.206043,0.223827,0.200195,0.163094,0.874257,0.38777,0.38651,0.218863,0.516387,0.485537,0.540174,0.70675,0.121475,0.0272407,0.762437,0.100212,0.112325,0.801109,0.391429,0.650961,0.504402,0.557482,0.185138,0.73939,0.325136,0.898531,0.749817,0.733458,0.30499,0.42969,0.986192,0.715555,0.115478,0.649378,0.902409,0.135452,0.0900978,0.329403,0.62872,0.793789,0.379193,0.54185,0.619696,0.345284,0.51077,0.69342,0.973892,0.553189,0.106931,0.660704,0.417769,0.136101,0.986811,0.865787,0.796751,0.673923,0.72204,0.555232,0.204917,0.766735,0.482992,0.682807,0.127602,0.834339,0.849551,0.501448,0.465345,0.691832,0.0603872,0.240786,0.372458,0.011005,0.156062,0.847026,0.664178,0.763951,0.996931,0.361255,0.403484,0.368874,0.813205,0.00366718,0.229772,0.864959,0.56283,0.932263,0.435706,0.579324,0.880472,0.395942,0.88903,0.60809,0.422432,0.37098,0.434137,0.0447455,0.123515,0.397514,0.150882,0.543053,0.166727,0.81721,0.790648,0.503037,0.336506,0.0153168,0.752834,0.177766,0.938446,0.254527,0.231789,0.174448,0.826748,0.166867,0.851524,0.934614,0.914483,0.260045,0.760206,0.763626,0.846555,0.138367,0.438149,0.429587,0.234804,0.582591,0.372466,0.00360203,0.710135,0.504693,0.851283,0.271527,0.805568,0.518413,0.190133,0.437867,0.113483,0.32752,0.691773,0.912692,0.627024,0.256202,0.137444,0.860001,0.60667,0.562634,0.830276,0.82999,0.0400487,0.423057,0.0586436,0.271745,0.523711,0.903733,0.51729,0.500094,0.815888,0.854807,0.102908,0.361336,0.0702699,0.42033,0.924811,0.750607,0.610528,0.219797,0.359308,0.745824,0.710832,0.403859,0.371838,0.692767,0.761542,0.70565,0.723474,0.671562,0.112385,0.582247,0.865347,0.118148,0.500622,0.145859,0.199033,0.0168211,0.310505,0.00623447,0.435761,0.49572,0.657611,0.952055,0.0564691,0.984946,0.737334,0.871433,0.396184,0.00734907,0.224708,0.498053,0.769122,0.314169,0.141949,0.552411,0.505756,0.317757,0.515415,0.776535,0.807894,0.418294,0.504988,0.677899,0.319866,0.375438,0.791682,0.242744,0.869509,0.966438,0.369037,0.759703,0.257426,0.581757,0.467846,0.0156828,0.499627,0.364479,0.757093,0.221636,0.0960829,0.36343,0.300609,0.67166,0.906765,0.0637859,0.24514,0.732391,0.933339,0.502059,0.974358,0.0712366,0.556477,0.111375,0.551806,0.665063,0.0550444,0.379071,0.180334,0.266721,0.217816,0.449175,0.420906,0.162393,0.340146,0.294855,0.0622708,0.424019,0.189011,0.699326,0.762576,0.182507,0.576469,0.370278,0.458167,0.315126,0.56226,0.609458,0.495186,0.487045,0.499086,0.479041,0.255442,0.350924,0.735138,0.927928,0.544948,0.981448,0.678564,0.746706,0.794758,0.540631,0.850104,0.989934,0.518664,0.200955,0.0342562,0.210416,0.282134,0.836388,0.999596,0.377476,0.0238744,0.507401,0.670762,0.82616,0.825684,0.0428731,0.530439,0.20301,0.934676,0.213955,0.362109,0.385646,0.0793549,0.975789,0.178224,0.856597,0.116345,0.450422,0.992738,0.435316,0.201716,0.163431,0.887442,0.882601,0.375689,0.482775,0.329967,0.215186,0.211682,0.730698,0.717874,0.608616,0.613995,0.388327,0.306331,0.606724,0.187632,0.200116,0.0411126,0.670056,0.320877,0.638743,0.210523,0.599285,0.38865,0.436937,0.72621,0.00959897,0.523399,0.819005,0.597239,0.677092,0.942877,0.66868,0.577263,0.0970231,0.208521,0.750419,0.819213,0.340865,0.190044,0.834673,0.359609,0.874406,0.68618,0.997401,0.718488,0.732049,0.0879931,0.513076,0.218453,0.737452,0.8391,0.529162,0.464052,0.879021,0.969236,0.157053,0.438772,0.121483,0.795763,0.0683867,0.73418,0.396113,0.975252,0.304232,0.865677,0.466209,0.682499,0.00190037,0.374467,0.401411,0.607396,0.885216,0.556817,0.032942,0.711639,0.729994,0.805451,0.437183,0.255308,0.521459,0.388435,0.433459,0.626129,0.266378,0.681034,0.78503,0.860131,0.56507,0.247276,0.668547,0.861973,0.811628,0.248382,0.975335,0.309499,0.599284,0.512012,0.189559,0.603083,0.0199046,0.210862,0.317972,0.24096,0.670622,0.683439,0.0135378,0.226564,0.319217,0.38831,0.177252,0.776267,0.821197,0.311782,0.107077,0.517319,0.558882,0.473037,0.0870981,0.229114,0.645204,0.585476,0.19352,0.0230412,0.153518,0.276956,0.0269081,|0.36991,0.275086,0.810271,0.863719,0.553489,0.236923,0.344602,0.875136,0.750658,0.843926,0.627747,0.861624,0.540247,0.186371,0.573212,0.585427,0.703715,0.0627521,0.124857,0.949501,0.569887,0.563127,0.347908,0.668128,0.435988,0.0741039,0.292544,0.925845,0.804721,0.649952,0.151036,0.59002,0.987881,0.746171,0.702412,0.286522,0.381855,0.43056,0.48208,0.358717,0.202972,0.773968,0.72448,0.102983,0.130139,0.0212755,0.078631,0.976906,0.886955,0.212643,0.472464,0.355183,0.288633,0.182227,0.0158337,0.471118,0.89055,0.540243,0.46592,0.904484,0.262313,0.601392,0.952295,0.837513,0.523877,0.883015,0.609357,0.813354,0.960818,0.270275,0.165386,0.846583,0.990869,0.759222,0.856042,0.373969,0.519296,0.0392724,0.423094,0.0536382,0.62121,0.283187,0.763861,0.0308585,0.323923,0.278487,0.0556599,0.351384,0.223415,0.277033,0.381059,0.11899,0.373577,0.598415,0.571442,0.376108,0.643028,0.649143,0.00345087,0.0915764,0.109072,0.0867915,0.67863,0.178804,0.423428,0.309455,0.302206,0.130325,0.0280941,0.160666,0.954102,0.830119,0.274863,0.772948,0.709022,0.335242,0.237936,0.01355,0.497738,0.279282,0.88393,0.59499,0.0413617,0.195589,0.832783,0.0139093,0.437352,0.705969,0.555742,0.189211,0.0937105,0.414256,0.7181,0.446909,0.116025,0.815014,0.77285,0.897652,0.776766,0.162344,0.80969,0.884652,0.179554,0.249156,0.619164,0.380469,0.0712283,0.978165,0.327059,0.636457,0.0257306,0.216505,0.207159,0.569973,0.117977,0.767827,0.719305,0.606884,0.222739,0.769663,0.636691,0.330307,0.962393,0.310635,0.781229,0.800184,0.330279,0.169168,0.257759,0.24332,0.257795,0.175153,0.495784,0.784374,0.858274,0.664995,0.439008,0.0327978,0.0929317,0.867269,0.48023,0.0593998,0.136468,0.257466,0.281485,0.511198,0.744294,0.20827,0.139536,0.2825,0.768354,0.556612,0.384673,0.297548,0.189157,0.490759,0.862611,0.208211,0.458098,0.431687,0.51521,0.146248,0.869087,0.569186,0.790115,0.876432,0.161342,0.835868,0.269334,0.542438,0.456154,0.200373,0.664437,0.870098,0.488793,0.645528,0.779641,0.161644,0.448182,0.774042,0.949987,0.931811,0.0495708,0.134683,0.569319,0.943276,0.598024,0.724782,0.130322,0.49698,0.511954,0.459616,0.468917,0.712805,0.321291,0.31175,0.376534,0.508314,0.267841,0.82386,0.472986,0.728386,0.524963,0.772906,0.431869,0.702071,0.968147,0.85226,0.993878,0.15318,0.657821,0.306346,0.911391,0.333059,0.0683745,0.429847,0.698184,0.283978,0.907515,0.444721,0.222623,0.863303,0.844447,0.758361,0.802426,0.744003,0.834867,0.776043,0.197575,0.679919,0.344113,0.339677,0.525114,0.191727,0.527396,0.636132,0.333774,0.75268,0.222111,0.785,0.306994,0.462894,0.0233048,0.994893,0.234682,0.663417,0.890937,0.624122,0.79929,0.750576,0.342641,0.049884,0.254733,0.515369,0.525363,0.0129812,0.0241667,0.399297,0.894703,0.471831,0.209449,0.61523,0.695379,0.908096,0.818635,0.587644,0.923285,0.953519,0.91004,0.901151,0.0417556,0.881033,0.0979525,0.234935,0.283754,0.212907,0.713631,0.39723,0.219979,0.0035398,0.102291,0.71968,0.756519,0.0702185,0.951586,0.870838,0.895641,0.589239,0.0365543,0.293265,0.706341,0.046151,0.612971,0.222087,0.0222857,0.302381,0.589334,0.223958,0.13404,0.125692,0.0849898,0.522046,0.905169,0.376311,0.933505,0.0639376,0.423273,0.577439,0.893745,0.962017,0.0771099,0.520501,0.479438,0.922175,0.364876,0.400187,0.232507,0.385892,0.375964,0.486055,0.958284,0.57109,0.795766,0.0289606,0.566754,0.96173,0.819308,0.937419,0.880929,0.668295,0.345891,0.520739,0.814514,0.464715,0.773273,0.748718,0.90285,0.497836,0.104988,0.0697721,0.718065,0.824575,0.910571,0.262247,0.534955,0.614214,0.803875,0.846581,0.0657709,0.972667,0.950865,0.0207138,0.735242,0.942271,0.511319,0.335211,0.283619,0.771016,0.173246,0.548621,0.312655,0.131275,0.0250553,0.923612,0.744818,0.814071,0.712496,0.184208,0.878909,0.734583,0.681908,0.0132331,0.933887,0.97211,0.817723,0.8214,0.630715,0.953639,0.0432916,0.837325,0.395064,0.132605,0.772851,0.757086,0.817819,0.634293,0.0188192,0.805947,0.104443,0.2059,0.777651,0.416658,0.191773,0.755073,0.203596,0.0508735,0.936065,0.227314,0.795362,0.784295,0.893607,0.872131,0.0132819,0.529324,0.492274,0.664021,0.889749,0.0360755,0.184305,0.111034,0.949598,0.392766,0.0522094,0.80654,0.214328,0.285905,0.114998,0.486943,0.281219,0.0693091,0.898064,0.665946,0.0993245,0.604965,0.381493,0.473817,0.272398,0.644308,0.610925,0.936258,0.188666,0.0392929,0.0396402,0.181261,0.576941,0.850778,0.458971,0.324398,0.230215,0.938555,0.0425113,0.728338,0.70744,0.308453,0.980779,0.598487,0.636107,0.142389,0.856891,0.161221,0.729625,0.471622,0.504032,0.459133,0.895615,0.213055,0.887077,0.332156,0.233268,0.958964,0.766376,0.462953,0.787202,0.629619,0.310854,0.139841,0.642599,0.590875,0.881931,0.69919,0.455381,0.186719,0.232673,0.138411,0.338447,0.814976,0.445444,0.486099,0.417224,0.217754,0.993937,0.95509,0.667209,0.898168,0.151289,0.828455,0.105404,0.116378,0.624089,0.172277,0.938433,0.0959209,0.217941,0.0520641,0.39876,0.395832,0.750602,0.667899,0.707812,0.445478,0.26182,0.59459,0.516407,0.415753,0.614975,0.326949,0.88896,0.420411,0.967384,0.490422,0.81953,0.0539027,0.465912,0.663381,0.121753,0.446563,0.855395,0.709848,0.416503,0.112285,0.0579712,0.481108,0.964139,0.619823,0.83315,0.927237,0.823264,0.519047,0.717158,0.262808,0.666117,0.179025,0.941592,0.930973,0.928821,0.150214,0.537388,0.310327,0.901236,0.671631,0.685676,0.380465,0.277657,0.755188,0.589702,0.894109,0.739234,0.23973,0.251546,0.581215,0.0601076,0.959593,0.65262,0.560956,0.680978,0.363513,0.435167,0.989363,0.364796,0.230118,0.0639777,0.520418,0.748296,0.411044,0.076391,0.476158,0.768778,0.620743,0.794166,0.163662,0.024671,0.90963,0.69144,0.325117,0.899084,0.790288,0.0330272,0.950416,0.412229,0.924156,0.522047,0.969336,0.957472,0.730701,0.492054,0.998373,0.701901,0.775191,0.337463,0.48046,0.892606,0.557133,0.627901,0.0819359,0.49029,0.857571,0.496231,0.857401,0.622375,0.0503558,0.860143,0.20828,0.100889,0.675731,0.39743,0.0309545,0.357077,0.446517,0.652921,0.577936,0.138747,0.318676,0.94533,0.718188,0.490261,0.294284,0.927597,0.802112,0.022694,0.518956,0.23462,0.703726,0.0348736,0.792379,0.148999,0.637845,0.0399986,0.752352,0.971009,0.969379,0.480752,0.659918,0.902786,0.731551,0.579132,0.86613,0.551284,0.548199,0.21321,0.0778365,0.484463,0.492323,0.431531,0.424486,0.317851,0.574825,0.473792,0.873769,0.0631663,0.00107557,0.715441,0.882757,0.741186,0.521944,0.871462,0.652554,0.970283,0.200587,0.382425,0.314756,0.624531,0.338338,0.201901,0.730628,0.629379,0.258557,0.0413846,0.908198,0.774982,0.27934,0.642694,0.668456,0.971332,0.783649,0.411935,0.916349,0.648769,0.787364,0.881464,0.264018,0.815412,0.640234,0.0621729,0.113809,0.699036,0.329929,0.330402,0.430427,0.0475774,0.022429,0.643582,0.289946,0.836447,0.820495,0.168725,0.114944,0.985774,0.369412,0.84989,0.422397,0.630647,0.160743,0.893789,0.00717628,0.62962,0.928683,0.85394,0.516188,0.214358,0.698835,0.574685,0.437939,0.67013,0.731093,0.290576,0.940617,0.102194,0.21372,0.696871,0.794543,0.137443,0.656804,0.251569,0.34907,0.362185,0.820269,0.254154,0.988641,0.698427,0.822927,0.0918199,0.941341,0.229887,0.34423,0.607464,0.776884,0.645602,0.602643,0.577373,0.336618,0.110845,0.885475,0.62738,0.589092,0.834072,0.649816,0.602997,0.806638,0.357879,0.849625,0.627497,0.090591,0.236365,0.381174,0.764662,0.456199,0.414712,0.0938837,0.262951,0.181669,0.0205325,0.88961,0.596791,0.469898,0.601751,0.972517,0.907697,0.183374,0.0743225,0.592223,0.888606,0.203381,0.361589,0.0163931,0.368453,0.47664,0.770303,0.791722,0.467659,0.772609,0.666601,0.103942,0.32666,0.834597,0.759599,0.616145,0.384854,0.30864,0.913213,0.14217,0.332911,0.507437,0.196872,0.975056,0.969245,0.638932,0.0564377,0.56687,0.873089,0.140795,0.435357,0.833576,0.274321,0.998247,0.75556,0.53417,0.16406,0.504293,0.0907353,0.656602,0.922265,0.501697,0.185825,0.852509,0.042789,0.891959,0.571485,0.955661,0.115588,0.193184,0.534434,0.335582,0.951145,0.402231,0.786675,0.866203,0.662285,0.679851,0.306169,0.105608,0.860473,0.982831,0.991288,0.0404761,0.942874,0.821987,0.569992,0.173871,0.744929,0.830894,0.23373,0.792573,0.230294,0.468771,0.379561,0.286719,0.486986,0.136824,0.861299,0.905991,0.413737,0.136561,0.347839,0.939847,0.486651,0.298254,0.706474,0.00732511,0.231069,0.533793,0.0808443,0.812731,0.850345,0.219081,0.651961,0.267093,0.0517806,0.823757,0.597632,0.247201,0.62783,0.672489,0.875703,0.735687,0.854022,0.552898,0.656565,0.519349,0.769609,0.491438,0.396946,0.342405,0.347063,0.391583,0.887001,0.195666,0.536534,0.754728,0.615894,0.735995,0.25717,0.0017516,0.562574,0.468958,0.624058,0.00137842,0.112027,0.812751,0.710727,0.549631,0.76442,0.578834,0.483263,0.441642,0.300065,0.493136,0.222397,0.336611,0.5425,0.622791,0.926908,0.879879,0.668748,0.636845,0.928357,0.698945,0.279507,0.843113,0.962743,0.228251,0.920117,0.457189,0.825771,0.599041,0.686749,0.957384,0.303434,0.873628,0.871014,0.683605,0.355309,0.382787,0.0545498,0.581412,0.235206,0.712119,0.597069,0.0722656,0.983691,0.965641,0.794453,0.532195,0.468385,0.847922,0.670613,0.998504,0.67987,0.224862,0.764298,0.625727,0.359261,0.844829,0.598386,0.662837,0.00818622,0.589855,0.724163,0.951925,0.723045,0.34348,|0.721648,0.836905,0.218426,0.155782,0.480069,0.106122,0.997359,0.7983,0.204302,0.578289,0.877263,0.92216,0.289343,0.586936,0.475475,0.883141,0.562628,0.879964,0.704929,0.585322,0.12947,0.189914,0.371894,0.471764,0.812485,0.853698,0.147099,0.342423,0.52707,0.720285,0.752321,0.0928037,0.122701,0.200101,0.951341,0.628249,0.715418,0.88427,0.0538148,0.357092,0.249157,0.683549,0.939539,0.333547,0.976187,0.0998293,0.494273,0.573232,0.708566,0.601318,0.515843,0.830427,0.910126,0.927362,0.869374,0.599551,0.24058,0.832829,0.838347,0.9329,0.869764,0.676737,0.460277,0.605151,0.466172,0.173623,0.879222,0.213789,0.833447,0.703897,0.957874,0.260083,0.732538,0.879439,0.505255,0.121098,0.917568,0.978571,0.502634,0.109221,0.641001,0.124613,0.144371,0.191515,0.654512,0.322204,0.414126,0.208753,0.216296,0.332299,0.478801,0.760907,0.693603,0.691837,0.109329,0.566564,0.471726,0.34529,0.303464,0.317645,0.829599,0.534955,0.805722,0.389733,0.273629,0.40338,0.851174,0.520928,0.827959,0.0895906,0.88192,0.776496,0.665435,0.712675,0.417389,0.942614,0.8305,0.506977,0.128555,0.157251,0.297298,0.945247,0.996212,0.935799,0.592452,0.1641,0.761496,0.266213,0.0998094,0.0438207,0.835645,0.175674,0.179594,0.672512,0.785551,0.79651,0.0244474,0.786132,0.940382,0.74905,0.112571,0.477047,0.916188,0.327879,0.602331,0.0393815,0.566529,0.438274,0.859142,0.474963,0.949371,0.196276,0.630989,0.632541,0.12995,0.232532,0.740508,0.965777,0.612904,0.500734,0.118627,0.0310291,0.0290954,0.0654451,0.577536,0.254659,0.0764669,0.756881,0.0464064,0.515741,0.965141,0.606838,0.624586,0.448729,0.981533,0.412851,0.348472,0.796766,0.391989,0.0347196,0.31375,0.844564,0.984004,0.961259,0.639656,0.0493195,0.560185,0.311568,0.652744,0.295208,0.526768,0.138396,0.794672,0.75907,0.858765,0.674506,0.39035,0.418562,0.217516,0.746543,0.122869,0.37304,0.732905,0.590235,0.269201,0.969272,0.267802,0.794533,0.90467,0.203869,0.269172,0.646464,0.511779,0.855381,0.297446,0.0553133,0.887474,0.368448,0.88046,0.250572,0.569501,0.840513,0.313408,0.851702,0.0659307,0.463532,0.753764,0.260078,0.0382187,0.469452,0.748615,0.0718985,0.176444,0.185796,0.798137,0.63873,0.972033,0.79366,0.346434,0.393986,0.818345,0.63932,0.693925,0.131866,0.310613,0.144315,0.18247,0.561023,0.228708,0.884328,0.683462,0.170906,0.054659,0.595859,0.200554,0.489184,0.684703,0.975277,0.15256,0.959503,0.356398,0.753437,0.344063,0.330818,0.419662,0.901741,0.527364,0.799045,0.851714,0.40516,0.457722,0.00154984,0.951557,0.701566,0.892038,0.0150086,0.844251,0.790483,0.287739,0.739166,0.47941,0.349359,0.361293,0.898009,0.38136,0.109059,0.949383,0.334665,0.386025,0.382689,0.10531,0.419403,0.407885,0.143077,0.315218,0.101683,0.335054,0.208918,0.779255,0.570994,0.284822,0.544625,0.126995,0.385248,0.890056,0.849768,0.751711,0.118254,0.734575,0.498195,0.901561,0.709752,0.474128,0.173265,0.344539,0.600377,0.559546,0.340814,0.148637,0.718568,0.158581,0.848095,0.136215,0.308034,0.153396,0.798648,0.881596,0.883498,0.215945,0.869225,0.173238,0.468997,0.178497,0.656864,0.910434,0.613759,0.704285,0.591228,0.521502,0.689592,0.801215,0.200243,0.856351,0.587975,0.829487,0.749046,0.29104,0.376123,0.464392,0.290594,0.818513,0.982814,0.469588,0.4242,0.734917,0.8157,0.957282,0.809971,0.647789,0.166287,0.376024,0.737189,0.962708,0.119569,0.171653,0.664901,0.103122,0.675966,0.0295788,0.690195,0.500135,0.44135,0.275975,0.0942602,0.350988,0.677037,0.193057,0.775717,0.798365,0.500347,0.890666,0.0930344,0.814254,0.495623,0.483679,0.717058,0.964654,0.21688,0.663244,0.835176,0.258145,0.173945,0.333433,0.443193,0.195953,0.449404,0.252375,0.317141,0.509425,0.839365,0.461306,0.215787,0.377471,0.432737,0.405456,0.352151,0.00780541,0.414488,0.704906,0.730705,0.236506,0.429203,0.61419,0.859893,0.292566,0.355802,0.491957,0.295506,0.455994,0.864683,0.198657,0.367399,0.640881,0.0566338,0.651627,0.0253602,0.347204,0.0011012,0.689458,0.620599,0.60098,0.468251,0.887409,0.051254,0.932086,0.949831,0.1373,0.114006,0.297687,0.430102,0.560785,0.325226,0.548379,0.704024,0.869665,0.258614,0.163147,0.0927274,0.397037,0.849547,0.436958,0.165261,0.759827,0.629669,0.597035,0.123229,0.12449,0.498797,0.087926,0.606014,0.597241,0.729526,0.636978,0.370006,0.71572,0.800663,0.149407,0.55077,0.967617,0.753679,0.0717809,0.382067,0.388535,0.246838,0.748178,0.538162,0.857352,0.853345,0.765266,0.197937,0.179759,0.32612,0.219005,0.388487,0.429139,0.402973,0.664838,0.852352,0.239285,0.821852,0.279954,0.615813,0.0487425,0.410755,0.289574,0.681215,0.592834,0.739697,0.435271,0.807789,0.877078,0.0656286,0.468102,0.128447,0.787423,0.707506,0.553961,0.196681,0.884613,0.847856,0.135037,0.615415,0.185102,0.975991,0.689383,0.41886,0.215854,0.964092,0.0930896,0.388759,0.178156,0.828345,0.807667,0.198233,0.470333,0.407771,0.828503,0.817962,0.272133,0.395726,0.239508,0.141528,0.505814,0.891365,0.63934,0.510112,0.242383,0.132242,0.0165312,0.272103,0.491594,0.198894,0.188834,0.999574,0.123896,0.376844,0.421444,0.343254,0.57613,0.481732,0.980519,0.993385,0.914173,0.381511,0.290528,0.347425,0.609676,0.399419,0.877591,0.20027,0.981423,0.956593,0.789754,0.470856,0.381121,0.132548,0.285749,0.00989574,0.623675,0.44049,0.138036,0.435303,0.485803,0.35415,0.978642,0.884908,0.784258,0.56524,0.712501,0.558953,0.547657,0.397282,0.655812,0.204161,0.624018,0.326858,0.654061,0.124147,0.557155,0.588147,0.729254,0.69939,0.65954,0.0266785,0.539786,0.158114,0.911217,0.825382,0.385224,0.638441,0.302558,0.965579,0.574985,0.836926,0.333926,0.794585,0.00534433,0.448639,0.354791,0.281913,0.0800941,0.223716,0.212178,0.635841,0.807171,0.0920593,0.739066,0.2373,0.0103565,0.671696,0.114666,0.0722914,0.0484151,0.180458,0.5415,0.580476,0.238597,0.52162,0.993223,0.834866,0.0472721,0.509952,0.68768,0.161888,0.106835,0.239721,0.353025,0.0175076,0.435172,0.754538,0.927763,0.820947,0.919995,0.278364,0.785987,0.740429,0.239959,0.838056,0.635909,0.2439,0.0459815,0.244938,0.914479,0.813518,0.969449,0.25746,0.54651,0.0988325,0.0244796,0.30715,0.152151,0.748003,0.346895,0.379926,0.24887,0.626824,0.506299,0.343125,0.446319,0.928103,0.227349,0.547478,0.045997,0.818867,0.651613,0.203604,0.180593,0.972719,0.580574,0.412628,0.0525534,0.35552,0.431531,0.38112,0.0359091,0.454352,0.838251,0.852722,0.876747,0.387425,0.492205,0.386506,0.513305,0.560427,0.680195,0.0265757,0.193676,0.58157,0.781246,0.842484,0.30177,0.379048,0.226696,0.336813,0.287246,0.151945,0.167985,0.108549,0.815211,0.724176,0.092235,0.323344,0.370641,0.991888,0.721192,0.819258,0.606669,0.580837,0.925923,0.538171,0.494043,0.595153,0.750866,0.536473,0.789964,0.651739,0.516771,0.802127,0.934452,0.232645,0.434414,0.49563,0.706425,0.0635971,0.588571,0.0960603,0.925193,0.153803,0.961348,0.613492,0.048778,0.45832,0.155535,0.487333,0.518031,0.871422,0.110401,0.740524,0.620922,0.472541,0.291461,0.932226,0.883889,0.908712,0.518623,0.159611,0.0144523,0.547972,0.826976,0.224125,0.215324,0.385358,0.941664,0.245561,0.939282,0.594931,0.746086,0.425076,0.801348,0.98278,0.73253,0.775349,0.806651,0.758517,0.431923,0.332161,0.339029,0.927846,0.18389,0.150142,0.819766,0.246687,0.0689355,0.143498,0.291654,0.065861,0.239327,0.599909,0.192426,0.889816,0.372492,0.0351624,0.781382,0.771606,0.869327,0.103477,0.435337,0.299379,0.744373,0.493757,0.548357,0.499432,0.373287,0.637168,0.979036,0.345263,0.741018,0.433112,0.828131,0.314939,0.750095,0.655173,0.838252,0.271469,0.0597775,0.0895318,0.812089,0.333507,0.0907584,0.229393,0.833467,0.0285587,0.449042,0.275629,0.855797,0.605602,0.348718,0.230913,0.776322,0.457138,0.97,0.861808,0.911014,0.480133,0.0494222,0.118467,0.615299,0.196506,0.531266,0.667308,0.102394,0.00108081,0.25613,0.398854,0.969696,0.372985,0.802559,0.895319,0.0625121,0.947119,0.736093,0.0468017,0.246792,0.314422,0.313462,0.240674,0.467298,0.246828,0.44279,0.344528,0.404508,0.274151,0.446842,0.933064,0.219757,0.888217,0.425875,0.30786,0.0862591,0.184279,0.293661,0.823303,0.961507,0.657014,0.415805,0.993922,0.894974,0.67832,0.0558131,0.635393,0.589177,0.4396,0.421522,0.18426,0.944407,0.150846,0.204478,0.564607,0.884843,0.999175,0.786098,0.7998,0.121157,0.352916,0.186073,0.0871783,0.0488632,0.500744,0.702673,0.827205,0.227042,0.661832,0.637943,0.854722,0.256238,0.970648,0.93531,0.88632,0.197625,0.918213,0.391172,0.385938,0.439362,0.314662,0.976937,0.410194,0.761043,0.829682,0.659607,0.446058,0.00718027,0.759982,0.370916,0.653151,0.234185,0.362063,0.314077,0.677249,0.762332,0.379438,0.981176,0.791111,0.176515,0.876632,0.730447,0.633684,0.992189,0.307132,0.98246,0.17058,0.327263,0.938931,0.887104,0.842769,0.502342,0.996947,0.92381,0.0402621,0.997693,0.00394458,0.649735,0.465989,0.718597,0.361313,0.940554,0.290397,0.0327308,0.862384,0.137751,0.0573938,0.431449,0.123264,0.790287,0.774335,0.588181,0.283184,0.482866,0.920267,0.70639,0.985011,0.15121,0.809392,0.36188,0.214286,0.227967,0.918655,0.432994,0.366675,0.790227,0.829709,0.838429,0.167454,0.264516,0.272578,0.138801,0.841263,0.774856,0.69186,0.505602,0.211307,0.212379,0.153652,0.138,0.31962,0.859159,0.193633,0.954939,0.241933,0.14422,0.294661,|0.724541,0.878617,0.016046,0.217383,0.0461592,0.469763,0.661296,0.532642,0.961793,0.394545,0.156351,0.183775,0.274319,0.0123186,0.937384,0.798284,0.513961,0.393177,0.0846603,0.0824232,0.669215,0.615065,0.852453,0.283781,0.730797,0.88448,0.643679,0.0435638,0.354441,0.0550406,0.0348821,0.254423,0.235669,0.144822,0.111916,0.616648,0.457744,0.00347757,0.830578,0.701464,0.76214,0.985346,0.489824,0.767013,0.528576,0.869318,0.155723,0.705782,0.118558,0.918367,0.638768,0.349168,0.738138,0.969042,0.284743,0.690219,0.68121,0.278237,0.795647,0.13873,0.778835,0.0938209,0.0160096,0.0162248,0.641492,0.78194,0.689331,0.228588,0.191234,0.380441,0.408143,0.485079,0.381595,0.709144,0.0228795,0.066657,0.732915,0.372359,0.223437,0.855513,0.956611,0.954111,0.181255,0.691928,0.848298,0.690685,0.12956,0.977234,0.924907,0.0322266,0.858958,0.78032,0.909688,0.969332,0.56889,0.828364,0.391584,0.272909,0.218475,0.986627,0.668433,0.727197,0.936992,0.07878,0.830696,0.530173,0.129483,0.928266,0.0459271,0.897286,0.0160807,0.83547,0.00781441,0.620217,0.591726,0.146997,0.709155,0.377632,0.0988293,0.667541,0.650642,0.395891,0.489934,0.995523,0.362686,0.228588,0.834364,0.93943,0.141456,0.547259,0.124803,0.425763,0.670204,0.971042,0.670229,0.951881,0.479529,0.0654206,0.690471,0.351393,0.137013,0.533804,0.0618782,0.805519,0.198954,0.478115,0.719677,0.248596,0.377325,0.0756379,0.550916,0.726179,0.564699,0.163604,0.305043,0.803227,0.398058,0.419707,0.935507,0.132482,0.723288,0.145545,0.0199819,0.0236529,0.497468,0.287769,0.00881255,0.862577,0.254354,0.813961,0.766884,0.571991,0.86521,0.507348,0.879687,0.281086,0.697338,0.328054,0.996171,0.393406,0.213648,0.198105,0.0600387,0.317132,0.135998,0.162557,0.47423,0.330202,0.588302,0.282818,0.277133,0.754946,0.559354,0.0601964,0.623955,0.134724,0.0441352,0.591483,0.925071,0.675591,0.935149,0.184516,0.563087,0.489617,0.866117,0.515817,0.234096,0.796254,0.558945,0.912621,0.0131604,0.850135,0.390618,0.559319,0.714298,0.715189,0.286822,0.578453,0.361799,0.712655,0.978477,0.891213,0.188526,0.187129,0.28876,0.615595,0.539613,0.508355,0.0250083,0.455499,0.553231,0.726166,0.629938,0.812332,0.374011,0.95812,0.370265,0.155477,0.407018,0.661553,0.554187,0.889878,0.548279,0.395949,0.182363,0.72124,0.176322,0.569486,0.131709,0.43961,0.583838,0.401022,0.395042,0.887762,0.871025,0.299048,0.513528,0.0925234,0.423303,0.01353,0.107301,0.21115,0.200919,0.211783,0.190662,0.227255,0.108937,0.427477,0.0733154,0.285077,0.497137,0.399374,0.45528,0.590515,0.339294,0.87668,0.126145,0.707311,0.871586,0.349608,0.518855,0.985373,0.509579,0.517054,0.61292,0.853744,0.659689,0.46462,0.826143,0.421534,0.160108,0.573823,0.552133,0.443091,0.0643584,0.951983,0.410624,0.914814,0.301423,0.524229,0.154406,0.585128,0.462367,0.500642,0.582319,0.654666,0.613444,0.000209928,0.604044,0.835415,0.31014,0.768547,0.663847,0.765559,0.895815,0.229274,0.962866,0.737959,0.515164,0.33366,0.858618,0.467481,0.215116,0.982535,0.835076,0.677738,0.762396,0.296521,0.773153,0.0150457,0.94298,0.382334,0.938507,0.0685515,0.733923,0.331456,0.659482,0.440633,0.921646,0.711267,0.863623,0.0765517,0.954319,0.972867,0.0136876,0.916112,0.379358,0.280585,0.123334,0.213241,0.979959,0.165769,0.0685827,0.0230262,0.930404,0.808857,0.147975,0.119746,0.534458,0.744252,0.452523,0.89124,0.537691,0.70269,0.346941,0.65835,0.394434,0.52201,0.872423,0.441977,0.831237,0.534518,0.435329,0.464553,0.976023,0.796729,0.169525,0.816428,0.572754,0.227353,0.728101,0.0892792,0.633128,0.587785,0.854571,0.954047,0.87294,0.0772651,0.257891,0.71959,0.016567,0.65611,0.609489,0.659437,0.809387,0.280652,0.922738,0.503696,0.955611,0.866323,0.134275,0.253365,0.364366,0.435709,0.998521,0.0444881,0.287261,0.040441,0.122221,0.556428,0.0269493,0.134123,0.719853,0.2885,0.608536,0.286038,0.507215,0.803406,0.0258408,0.336243,0.945237,0.885035,0.214523,0.366127,0.213371,0.739162,0.731838,0.161361,0.0156049,0.813634,0.563968,0.512912,0.999405,0.873043,0.537231,0.27593,0.0343077,0.431571,0.698878,0.576944,0.217936,0.662996,0.966218,0.935945,0.189876,0.289522,0.289863,0.835514,0.0763391,0.120408,0.693867,0.495369,0.332558,0.639378,0.234099,0.38181,0.483969,0.80838,0.423647,0.090322,0.919789,0.121862,0.0848265,0.799748,0.677806,0.77923,0.910714,0.963336,0.082,0.612685,0.569747,0.473089,0.75342,0.0992849,0.591036,0.850786,0.433467,0.0710273,0.54902,0.476791,0.375897,0.715969,0.342742,0.0948986,0.385229,0.242955,0.491346,0.914928,0.818914,0.491451,0.0200559,0.333966,0.173782,0.121699,0.0855424,0.0392166,0.863359,0.147712,0.116961,0.388483,0.518934,0.749329,0.333963,0.626349,0.872712,0.126951,0.214626,0.155124,0.935718,0.0656174,0.154992,0.413453,0.114684,0.339864,0.475508,0.456033,0.875591,0.372704,0.552945,0.907442,0.397383,0.426372,0.611261,0.290387,0.25808,0.94102,0.830954,0.627123,0.469676,0.873622,0.939451,0.826205,0.630403,0.00961196,0.442966,0.797551,0.421753,0.440122,0.489834,0.560585,0.623863,0.829449,0.963886,0.839012,0.586441,0.343758,0.265914,0.535876,0.349572,0.947002,0.372183,0.0315881,0.458592,0.903815,0.523949,0.377197,0.59463,0.43637,0.31585,0.77746,0.0913715,0.340046,0.654651,0.782863,0.550295,0.636564,0.848035,0.907766,0.759762,0.726143,0.433353,0.341298,0.715128,0.940698,0.901864,0.489679,0.8874,0.776037,0.855941,0.838052,0.0079065,0.0303388,0.0468856,0.956729,0.956008,0.0506166,0.129067,0.613995,0.120599,0.799733,0.109828,0.186435,0.761214,0.352872,0.98931,0.945223,0.756109,0.739359,0.811135,0.0170369,0.517431,0.857058,0.500605,0.937315,0.820323,0.270398,0.86635,0.916192,0.346461,0.718677,0.664168,0.755879,0.512704,0.234294,0.577261,0.349961,0.485463,0.324944,0.167055,0.190257,0.245247,0.917252,0.679434,0.584415,0.789716,0.0813732,0.394908,0.0543247,0.332245,0.781035,0.0839419,0.553192,0.572771,0.412902,0.27411,0.24548,0.997886,0.884801,0.192353,0.0244389,0.947497,0.2003,0.346915,0.571238,0.83163,0.368024,0.460242,0.874832,0.705808,0.360723,0.966994,0.758606,0.908897,0.647507,0.134938,0.0153514,0.80395,0.474959,0.414401,0.81596,0.120221,0.602489,0.0348716,0.382111,0.148017,0.477517,0.425515,0.234306,0.688703,0.62559,0.926298,0.44772,0.446393,0.010765,0.547471,0.355853,0.582629,0.88411,0.314952,0.948167,0.0288491,0.232897,0.206839,0.709123,0.119123,0.87447,0.385055,0.199737,0.209391,0.380199,0.268707,0.463728,0.254872,0.369776,0.492098,0.495815,0.99852,0.291102,0.419957,0.0887001,0.0458663,0.537941,0.497656,0.102447,0.0684019,0.587505,0.0434657,0.0464367,0.185027,0.191918,0.268516,0.521839,0.320884,0.189654,0.0590191,0.549997,0.173918,0.504426,0.0719027,0.981114,0.925724,0.811685,0.811545,0.48063,0.993219,0.253634,0.504311,0.784922,0.220701,0.249555,0.895884,0.190474,0.353923,0.161763,0.12092,0.0617204,0.137488,0.880996,0.197351,0.838134,0.339715,0.742331,0.217041,0.362246,0.0828858,0.940078,0.493446,0.821612,0.452784,0.641318,0.147969,0.822733,0.358556,0.76722,0.554141,0.725197,0.160559,0.722965,0.336744,0.6212,0.485871,0.429431,0.204268,0.629357,0.926818,0.64317,0.781273,0.742487,0.102537,0.640681,0.876171,0.719198,0.787414,0.652012,0.355861,0.490555,0.220631,0.465606,0.552888,0.0218729,0.0779125,0.773986,0.926823,0.906362,0.956337,0.341234,0.0485736,0.0191664,0.473314,0.967127,0.366988,0.597207,0.45082,0.895751,0.325645,0.544352,0.878398,0.502833,0.655653,0.293005,0.0931063,0.167477,0.195961,0.29191,0.430498,0.164736,0.0646006,0.244828,0.692977,0.554363,0.118785,0.788114,0.259631,0.768102,0.695736,0.235947,0.843652,0.880839,0.924383,0.662515,0.208895,0.121623,0.128282,0.845368,0.435244,0.500889,0.981271,0.445132,0.219907,0.400202,0.400203,0.0535069,0.296608,0.146723,0.869999,0.612406,0.774675,0.484728,0.3694,0.498265,0.744642,0.928012,0.87109,0.941984,0.406995,0.323357,0.146086,0.54844,0.277764,0.716477,0.832695,0.622664,0.00803983,0.192749,0.892652,0.296355,0.453706,0.492143,0.32683,0.238766,0.868297,0.869832,0.629045,0.610701,0.188479,0.193457,0.00548702,0.558952,0.752762,0.694223,0.255491,0.150869,0.368638,0.495298,0.905509,0.827187,0.198199,0.576719,0.393228,0.559693,0.741416,0.649916,0.456388,0.939728,0.778676,0.802639,0.746927,0.357692,0.572497,0.163108,0.398701,0.313634,0.270859,0.258217,0.899636,0.244644,0.689705,0.775879,0.0983943,0.0868434,0.968132,0.365023,0.660033,0.490004,0.29784,0.123945,0.76,0.32438,0.454213,0.43623,0.933122,0.107089,0.435685,0.657498,0.707989,0.229806,0.377283,0.745662,0.328619,0.5941,0.539553,0.222919,0.893082,0.97094,0.949504,0.691152,0.448282,0.411344,0.636138,0.354137,0.587258,0.702101,0.899084,0.377529,0.02227,0.675021,0.281924,0.520641,0.336646,0.822265,0.577754,0.902833,0.029362,0.189486,0.0767991,0.0173476,0.399954,0.841699,0.829025,0.778334,0.443141,0.483384,0.870997,0.947026,0.561598,0.417781,0.612514,0.200655,0.30232,0.587625,0.543534,0.0216767,0.317416,0.898298,0.831487,0.0308437,0.90364,0.299404,0.222722,0.269764,0.257132,0.461592,0.312925,0.37131,0.923375,0.839337,0.152461,0.802064,0.0583786,0.275813,0.712072,0.151237,0.651209,0.846578,0.379518,0.274521,0.234377,0.537443,0.607898,0.642724,0.0284168,0.265003,0.875657,0.664382,0.574662,0.633095,0.916518,0.454246,0.422644,0.68917,|0.599562,0.521927,0.525646,0.827131,0.311516,0.767892,0.538296,0.325059,0.556626,0.160693,0.155574,0.212943,0.644848,0.179347,0.625499,0.369006,0.94201,0.590951,0.194794,0.296066,0.88505,0.0673031,0.639094,0.341473,0.638576,0.378199,0.752142,0.140787,0.845035,0.626635,0.868416,0.535735,0.364589,0.28803,0.176515,0.822299,0.0804023,0.649012,0.656795,0.172021,0.512295,0.893999,0.294526,0.615847,0.979699,0.80758,0.966684,0.0350906,0.383328,0.686499,0.691148,0.344859,0.409768,0.649264,0.55457,0.906232,0.685879,0.607231,0.917227,0.968308,0.300885,0.437884,0.124619,0.460936,0.279437,0.613314,0.752585,0.435714,0.507874,0.799569,0.610261,0.994736,0.980705,0.750389,0.604151,0.916456,0.378748,0.601316,0.763927,0.245488,0.758762,0.056281,0.375175,0.785394,0.473568,0.127525,0.0777129,0.088546,0.822526,0.567808,0.92974,0.884579,0.390099,0.490841,0.348032,0.841357,0.116271,0.208197,0.0420673,0.994242,0.733777,0.506199,0.108804,0.0764966,0.0664939,0.0223908,0.628953,0.596877,0.301496,0.383382,0.249771,0.883999,0.707007,0.0310276,0.0146473,0.150658,0.972593,0.315079,0.26839,0.217155,0.388975,0.600503,0.767844,0.922923,0.947282,0.600417,0.184968,0.295195,0.168319,0.365966,0.0690449,0.0631876,0.278334,0.633024,0.1705,0.314686,0.541418,0.199814,0.216533,0.0414512,0.61064,0.536409,0.239894,0.502094,0.833669,0.0533223,0.580723,0.725256,0.456072,0.637193,0.663272,0.672497,0.762709,0.610524,0.803717,0.605411,0.0290012,0.435084,0.866637,0.801803,0.235002,0.754087,0.245261,0.496635,0.479059,0.00769186,0.381802,0.442903,0.363538,0.278591,0.683919,0.798548,0.876686,0.0509331,0.135522,0.183876,0.746794,0.610453,0.101378,0.281979,0.506156,0.0190884,0.406336,0.843056,0.906781,0.797114,0.147078,0.973726,0.423234,0.884724,0.160213,0.782439,0.0397744,0.871261,0.33849,0.343591,0.947999,0.831241,0.457307,0.982236,0.134486,0.80427,0.426219,0.173444,0.851192,0.711742,0.746294,0.40267,0.831173,0.22526,0.205229,0.714134,0.0567006,0.187161,0.562287,0.34233,0.410566,0.46769,0.287161,0.311921,0.0478911,0.798765,0.553211,0.693413,0.327235,0.203512,0.854936,0.344238,0.495688,0.255086,0.424186,0.61062,0.997488,0.727445,0.859072,0.68823,0.96594,0.258529,0.566331,0.576558,0.381873,0.170592,0.796913,0.475954,0.471073,0.415221,0.425229,0.528407,0.879986,0.780418,0.880035,0.831761,0.0209311,0.665607,0.242883,0.118973,0.633983,0.281352,0.0257352,0.11343,0.812322,0.548773,0.684534,0.0478274,0.58759,0.0447488,0.27395,0.234442,0.415677,0.878469,0.411461,0.535018,0.983802,0.754769,0.238232,0.472707,0.429989,0.553895,0.236683,0.603643,0.0800034,0.95783,0.361824,0.112261,0.514981,0.403085,0.187147,0.0779268,0.236156,0.605785,0.289181,0.968366,0.156118,0.699592,0.115592,0.610438,0.383066,0.470311,0.923939,0.399712,0.506106,0.686738,0.861236,0.863072,0.192343,0.719652,0.883691,0.386614,0.901929,0.6514,0.657405,0.715348,0.983444,0.745455,0.412898,0.969105,0.836226,0.360933,0.0933852,0.257333,0.717987,0.0454819,0.668863,0.220513,0.939314,0.358549,0.218857,0.58523,0.0852323,0.22022,0.903635,0.584082,0.528749,0.313817,0.0737398,0.519765,0.809087,0.935944,0.336094,0.925337,0.963078,0.719213,0.769122,0.683986,0.639225,0.253746,0.0643555,0.50778,0.511678,0.383118,0.47701,0.657475,0.453907,0.0937061,0.270243,0.880445,0.620334,0.320117,0.195586,0.252973,0.39264,0.0922154,0.226497,0.112161,0.892979,0.707484,0.0341055,0.444356,0.351068,0.00809127,0.956521,0.824103,0.338325,0.0733747,0.801192,0.768346,0.442409,0.265271,0.133616,0.319582,0.859291,0.661172,0.473144,0.289085,0.517057,0.075781,0.10198,0.234815,0.111671,0.74034,0.130395,0.827666,0.472734,0.160803,0.942026,0.180423,0.416392,0.934267,0.717882,0.941062,0.115412,0.555541,0.342335,0.961786,0.861232,0.317924,0.46542,0.665149,0.348903,0.544076,0.100518,0.508517,0.188488,0.219085,0.936866,0.297228,0.925185,0.56793,0.374297,0.0909889,0.715952,0.998113,0.593966,0.287955,0.804735,0.786209,0.817221,0.439021,0.292005,0.730646,0.430902,0.181754,0.658653,0.88546,0.164596,0.540288,0.582518,0.587369,0.659943,0.835046,0.27265,0.667917,0.857812,0.568131,0.0618719,0.30736,0.152301,0.6482,0.181451,0.79603,0.753127,0.782805,0.452322,0.640491,0.691747,0.082619,0.240578,0.786217,0.497003,0.700092,0.677197,0.291666,0.722373,0.348877,0.755143,0.0762148,0.408392,0.682103,0.880515,0.58435,0.102725,0.167814,0.00377852,0.511985,0.778761,0.583933,0.740547,0.0265309,0.273421,0.68211,0.83795,0.609707,0.367611,0.765919,0.944574,0.674487,0.461292,0.722434,0.605458,0.108053,0.235644,0.821475,0.165711,0.067901,0.719611,0.749368,0.160902,0.453259,0.711067,0.855306,0.167037,0.419139,0.744684,0.564378,0.894176,0.869281,0.785925,0.148066,0.896779,0.540682,0.63004,0.572259,0.599955,0.0871417,0.570814,0.0917275,0.736587,0.170703,0.770709,0.214817,0.0289488,0.589925,0.521208,0.64295,0.58966,0.38292,0.63576,0.198774,0.952219,0.528029,0.879787,0.317014,0.288033,0.225076,0.728166,0.440693,0.180621,0.70939,0.1078,0.140866,0.732046,0.584295,0.840101,0.996827,0.3319,0.218779,0.698259,0.871518,0.918456,0.556728,0.472125,0.322717,0.43772,0.164146,0.118526,0.98766,0.254075,0.551833,0.345997,0.889901,0.814668,0.655434,0.685673,0.57819,0.525822,0.344997,0.557105,0.820996,0.64993,0.213138,0.629248,0.362618,0.106872,0.181196,0.776266,0.312617,0.315812,0.143213,0.585398,0.37377,0.318253,0.733316,0.672684,0.33836,0.015871,0.801319,0.367819,0.585653,0.5461,0.591895,0.695056,0.0421448,0.676531,0.418814,0.697075,0.449537,0.543046,0.0216558,0.056129,0.127826,0.180902,0.183737,0.212518,0.695212,0.777279,0.221978,0.361685,0.748019,0.828419,0.460267,0.30787,0.973696,0.847682,0.505557,0.439226,0.419818,0.309365,0.738902,0.604309,0.24518,0.376063,0.254231,0.45678,0.784569,0.0552929,0.100111,0.056396,0.411267,0.310691,0.687237,0.0499979,0.72655,0.744196,0.773747,0.947887,0.531486,0.85598,0.735448,0.838584,0.454237,0.0282065,0.0288653,0.0915809,0.913347,0.458331,0.470855,0.714516,0.634404,0.266195,0.0719384,0.0574522,0.735794,0.41559,0.0446609,0.0625159,0.301662,0.712401,0.610022,0.704394,0.945777,0.00224209,0.616226,0.340915,0.81837,0.301725,0.544031,0.973205,0.449329,0.64833,0.158566,0.993917,0.894334,0.0434517,0.373382,0.657326,0.620608,0.677622,0.594606,0.695078,0.694866,0.700043,0.258166,0.979632,0.37253,0.511796,0.906604,0.0808963,0.949556,0.812173,0.275365,0.154219,0.164366,0.580877,0.144152,0.515009,0.0976635,0.479794,0.911191,0.486654,0.272034,0.356675,0.569819,0.269613,0.754153,0.129852,0.0754962,0.000590146,0.506788,0.198751,0.707606,0.9256,0.888546,0.588736,0.840438,0.301304,0.182084,0.241782,0.334069,0.395734,0.962893,0.762967,0.947941,0.98248,0.861064,0.880364,0.222421,0.41058,0.97531,0.644806,0.464783,0.352302,0.0250243,0.251798,0.357861,0.877513,0.397143,0.669734,0.478368,0.64841,0.08265,0.103559,0.540697,0.353731,0.333285,0.997534,0.554422,0.209146,0.452497,0.579309,0.301471,0.183956,0.0108059,0.221709,0.463848,0.406549,0.810278,0.607033,0.64116,0.853873,0.907389,0.876875,0.150536,0.706488,0.00127143,0.43585,0.864092,0.854386,0.968156,0.40601,0.980591,0.341593,0.894514,0.824114,0.255921,0.770967,0.665522,0.625714,0.635116,0.726483,0.69414,0.892287,0.982607,0.715039,0.591313,0.932155,0.203843,0.224222,0.19523,0.421478,0.524371,0.61266,0.551489,0.248895,0.0948775,0.0810927,0.633767,0.682665,0.388611,0.31503,0.875326,0.78071,0.181115,0.687128,0.907329,0.48503,0.973665,0.916602,0.80489,0.240696,0.0282586,0.477767,0.969155,0.776323,0.565856,0.964127,0.877367,0.105622,0.931965,0.237932,0.557973,0.0197852,0.811597,0.864049,0.322552,0.621316,0.137688,0.38706,0.877927,0.334532,0.213331,0.402951,0.25552,0.715336,0.595665,0.863743,0.191075,0.686746,0.0589756,0.773122,0.369849,0.0875984,0.887345,0.649325,0.647395,0.125407,0.374623,0.301845,0.462419,0.689796,0.916354,0.489918,0.118531,0.75286,0.206308,0.4828,0.207547,0.113501,0.116224,0.385341,0.190483,0.279414,0.595407,0.53913,0.131556,0.0323986,0.704153,0.859741,0.989511,0.579913,0.537434,0.151689,0.595227,0.668127,0.940336,0.807562,0.968219,0.629877,0.34886,0.0199193,0.534558,0.269433,0.917618,0.841681,0.0532634,0.747742,0.128869,0.454928,0.458961,0.851462,0.548897,0.350327,0.534643,0.642436,0.177886,0.579266,0.808813,0.59895,0.152594,0.564169,0.631544,0.336675,0.894152,0.166907,0.11108,0.0857113,0.751113,0.941954,0.593346,0.457286,0.531576,0.642786,0.81711,0.220064,0.396528,0.14009,0.848223,0.564854,0.440989,0.752745,0.77205,0.343988,0.201271,0.500878,0.286421,0.419879,0.760326,0.158085,0.777674,0.116275,0.901074,0.50127,0.993802,0.0902247,0.00030756,0.0901729,0.877678,0.0341308,0.80829,0.54222,0.846378,0.106941,0.282639,0.528022,0.293241,0.577897,0.722062,0.583727,0.921098,0.652315,0.0783607,0.469563,0.0845492,0.417278,0.299411,0.832885,0.280768,0.0247502,0.503854,0.781035,0.724317,0.817622,0.141576,0.0854983,0.576049,0.624065,0.887715,0.122934,0.753532,0.236475,0.980229,0.8549,0.901657,0.616763,0.415963,0.116051,0.645947,0.487127,0.582928,0.012993,0.310954,0.929778,0.326234,0.790975,0.487421,0.466941,0.858766,0.65374,0.760223,0.429896,0.89185,0.0833201,0.328521,0.0368737,0.0577778,0.312168,0.247329,0.773673,0.0609292,0.933746,0.872364,|0.959236,0.763484,0.503557,0.797852,0.827342,0.151877,0.450769,0.524404,0.0391566,0.34828,0.414378,0.0763651,0.0279623,0.74869,0.0464643,0.726971,0.378118,0.206454,0.835002,0.146544,0.0599716,0.356633,0.123103,0.691814,0.173661,0.404831,0.0576935,0.89555,0.787759,0.774073,0.727032,0.617549,0.282335,0.718959,0.219042,0.0481966,0.103557,0.297389,0.452783,0.399083,0.250256,0.17591,0.676235,0.178291,0.248017,0.304511,0.537468,0.105208,0.545115,0.169833,0.851538,0.450114,0.79496,0.911651,0.936763,0.938202,0.109272,0.700193,0.938028,0.88008,0.168279,0.329551,0.657612,0.114308,0.482531,0.779469,0.863116,0.524384,0.375458,0.462431,0.741702,0.633516,0.967933,0.37223,0.396733,0.858456,0.986238,0.889191,0.284628,0.700997,0.0449458,0.94569,0.0489112,0.436533,0.862702,0.927234,0.374415,0.470154,0.402594,0.809996,0.155716,0.870898,0.898608,0.733792,0.23623,0.845449,0.43382,0.618098,0.573562,0.0307082,0.90726,0.992827,0.123679,0.0435002,0.524096,0.530402,0.35222,0.327009,0.86676,0.410116,0.33825,0.636312,0.464953,0.411753,0.877658,0.74959,0.90523,0.697121,0.0873387,0.973152,0.353293,0.882091,0.263402,0.247224,0.826156,0.826177,0.339672,0.299638,0.482325,0.109768,0.223949,0.928384,0.917901,0.141786,0.172081,0.175257,0.490745,0.664378,0.0971094,0.825086,0.122002,0.759782,0.284667,0.186962,0.479968,0.843941,0.711402,0.691971,0.391176,0.145099,0.350996,0.455294,0.315165,0.534177,0.292717,0.550558,0.921699,0.149202,0.146765,0.356904,0.602569,0.97753,0.323407,0.0799901,0.25544,0.71939,0.510209,0.442367,0.940379,0.188596,0.0890504,0.945287,0.151937,0.876642,0.473477,0.759645,0.817852,0.610419,0.632293,0.727052,0.719004,0.371479,0.144094,0.982411,0.767979,0.1187,0.601305,0.259343,0.285089,0.9253,0.577437,0.825374,0.0665967,0.674494,0.569669,0.744119,0.0808291,0.515097,0.508241,0.954857,0.918035,0.466202,0.913591,0.244791,0.691557,0.214745,0.753996,0.956022,0.0577189,0.45772,0.991947,0.48472,0.607052,0.575437,0.00158685,0.352478,0.145651,0.342459,0.257569,0.554293,0.580303,0.378787,0.611015,0.0772386,0.610171,0.0235986,0.914937,0.182805,0.361788,0.183283,0.348884,0.40581,0.0980392,0.39539,0.718977,0.177757,0.252197,0.908759,0.90407,0.257886,0.574174,0.916893,0.311091,0.0930342,0.181556,0.65258,0.614999,0.154852,0.551629,0.863438,0.236761,0.0773628,0.378246,0.478548,0.999785,0.610406,0.221418,0.338812,0.224224,0.166897,0.310422,0.816315,0.711862,0.903191,0.00835955,0.193995,0.00905436,0.216653,0.765477,0.762023,0.00497407,0.860497,0.193779,0.58813,0.746821,0.321424,0.863193,0.727953,0.829932,0.643679,0.73145,0.0274327,0.44705,0.174636,0.450751,0.202953,0.648472,0.461319,0.425925,0.0374812,0.0160575,0.0642574,0.604993,0.796237,0.124643,0.571782,0.162255,0.967147,0.0866609,0.939144,0.051771,0.694451,0.564644,0.636125,0.731696,0.249479,0.098424,0.869232,0.366751,0.637925,0.255772,0.727766,0.52997,0.689143,0.676679,0.64166,0.244826,0.12702,0.865278,0.819662,0.476778,0.815586,0.572508,0.154589,0.369961,0.347104,0.179752,0.627896,0.372149,0.44863,0.460028,0.426499,0.782489,0.828211,0.239084,0.772963,0.393245,0.372936,0.0251016,0.66393,0.789661,0.333366,0.638133,0.400226,0.255685,0.804495,0.961809,0.951607,0.0493507,0.468776,0.779697,0.114864,0.681465,0.394527,0.0117573,0.937162,0.144844,0.303853,0.743288,0.461083,0.0378105,0.510127,0.668292,0.472644,0.532685,0.456171,0.00246847,0.729695,0.525537,0.251844,0.866923,0.515135,0.887724,0.473802,0.611727,0.270312,0.364893,0.530947,0.652934,0.754784,0.566302,0.969024,0.448686,0.76139,0.664301,0.34927,0.346632,0.221322,0.62994,0.467742,0.124775,0.849714,0.679156,0.68168,0.0278084,0.65668,0.0912951,0.339756,0.319172,0.596074,0.222891,0.860108,0.978644,0.902621,0.868777,0.984356,0.20656,0.857537,0.103307,0.812021,0.458573,0.834675,0.028468,0.3004,0.834085,0.480063,0.54354,0.405072,0.438346,0.745422,0.112429,0.620046,0.148861,0.512929,0.975353,0.305577,0.798065,0.514696,0.103314,0.0740662,0.908762,0.923209,0.809728,0.473976,0.317814,0.13595,0.19062,0.0678321,0.695663,0.748901,0.161815,0.654691,0.828355,0.184831,0.650105,0.238141,0.0741796,0.255006,0.184259,0.0755357,0.176245,0.481877,0.302359,0.202949,0.238144,0.545285,0.811988,0.867668,0.4475,0.331924,0.799979,0.467917,0.0179665,0.785482,0.677391,0.142585,0.487441,0.61348,0.610723,0.236521,0.495693,0.423079,0.128157,0.240598,0.153436,0.761924,0.429247,0.579193,0.116394,0.333102,0.657943,0.813633,0.188325,0.00355875,0.518878,0.639921,0.584244,0.12726,0.581703,0.969722,0.206042,0.592199,0.445967,0.535088,0.301477,0.344857,0.439819,0.183586,0.142129,0.0532715,0.725709,0.482546,0.659839,0.580722,0.0337343,0.469788,0.791469,0.968881,0.0255924,0.226074,0.635955,0.458447,0.357312,0.396688,0.980024,0.791219,0.619884,0.479028,0.459816,0.521358,0.314814,0.465934,0.55589,0.777902,0.396514,0.622272,0.900182,0.673159,0.925385,0.649237,0.583317,0.375186,0.082249,0.834153,0.464149,0.495217,0.435885,0.97494,0.0779526,0.705892,0.981893,0.942804,0.718596,0.448196,0.164403,0.561397,0.679109,0.997326,0.564506,0.584215,0.950128,0.877255,0.825512,0.122887,0.300102,0.670383,0.319307,0.722421,0.331004,0.749663,0.899014,0.498906,0.719422,0.893968,0.823516,0.655883,0.295126,0.467883,0.801729,0.647429,0.4913,0.971992,0.299022,0.515193,0.0589012,0.997054,0.726357,0.627848,0.695069,0.0795234,0.608198,0.485083,0.907602,0.677206,0.796746,0.417666,0.715473,0.639691,0.847096,0.350039,0.673997,0.923576,0.836548,0.990862,0.687427,0.663576,0.0383683,0.296271,0.597168,0.395747,0.877586,0.0624858,0.476354,0.632981,0.279936,0.992821,0.282877,0.659336,0.976684,0.684109,0.231172,0.215093,0.0363759,0.0781178,0.324088,0.639307,0.488194,0.657938,0.891744,0.566384,0.943171,0.774968,0.597395,0.555391,0.795836,0.605018,0.272201,0.452015,0.481857,0.50944,0.757124,0.441479,0.38899,0.213366,0.528581,0.582748,0.960879,0.0944788,0.368278,0.287916,0.677448,0.779818,0.871672,0.696375,0.696579,0.983765,0.682729,0.164933,0.787396,0.149811,0.695675,0.594751,0.0229284,0.347282,0.106883,0.893106,0.196454,0.476484,0.615887,0.971873,0.833206,0.0478254,0.529339,0.610337,0.610241,0.289629,0.737682,0.0687732,0.838728,0.832368,0.696293,0.598665,0.314453,0.124711,0.684348,0.153241,0.580097,0.0889809,0.408249,0.0697759,0.585115,0.924864,0.733556,0.904383,0.994003,0.189995,0.172269,0.772287,0.938299,0.938969,0.0689854,0.195949,0.379458,0.424877,0.496202,0.976019,0.870469,0.0226998,0.27711,0.226574,0.648759,0.0702899,0.174306,0.883487,0.0615368,0.0306937,0.996265,0.551037,0.586823,0.317753,0.640618,0.0736067,0.23103,0.238582,0.687624,0.227148,0.382389,0.559629,0.470749,0.838807,0.257097,0.721183,0.448614,0.152389,0.0191368,0.522583,0.925706,0.759398,0.141317,0.724978,0.583169,0.115044,0.389542,0.180611,0.405735,0.265246,0.798127,0.111706,0.750283,0.322234,0.0191589,0.0902584,0.989204,0.141259,0.83693,0.520837,0.13412,0.812981,0.515671,0.0275146,0.946691,0.703891,0.150176,0.234288,0.53924,0.94867,0.603291,0.930074,0.960436,0.773464,0.247451,0.210059,0.855461,0.567984,0.878953,0.507476,0.422481,0.071299,0.423995,0.331093,0.21305,0.0122256,0.506499,0.0709213,0.804775,0.960738,0.886361,0.653935,0.458893,0.385611,0.614652,0.00906396,0.476464,0.944242,0.0184972,0.128706,0.761777,0.324214,0.256466,0.625271,0.725541,0.52383,0.335268,0.953914,0.223109,0.029966,0.330675,0.332204,0.6185,0.57578,0.290941,0.00033325,0.498013,0.650056,0.38475,0.364669,0.149345,0.554969,0.300452,0.341119,0.870824,0.387143,0.0661396,0.689001,0.785128,0.0657906,0.872042,0.208623,0.210847,0.196879,0.55288,0.846251,0.997097,0.284819,0.409806,0.126131,0.319624,0.882987,0.646076,0.908507,0.580768,0.989056,0.700935,0.223117,0.116623,0.286145,0.175997,0.838254,0.124215,0.0611624,0.235329,0.670927,0.222345,0.658153,0.113686,0.854377,0.222642,0.0028258,0.964353,0.456676,0.178596,0.0782413,0.154121,0.763283,0.894373,0.732372,0.503331,0.915384,0.900456,0.132338,0.110546,0.0047031,0.648279,0.439694,0.493841,0.581555,0.628465,0.382634,0.348441,0.920776,0.444462,0.850182,0.140275,0.166157,0.397109,0.153334,0.294366,0.723089,0.396056,0.836599,0.434119,0.194797,0.832283,0.452726,0.604476,0.170322,0.976488,0.262857,0.367431,0.530322,0.490863,0.928601,0.662655,0.52193,0.3619,0.0713761,0.638442,0.741424,0.206478,0.293802,0.509142,0.316994,0.675093,0.587641,0.0457906,0.0303293,0.985288,0.252276,0.726877,0.645701,0.243336,0.0227341,0.992189,0.894627,0.699089,0.248637,0.652616,0.743173,0.0539601,0.0267177,0.0865759,0.355439,0.385751,0.584768,0.656147,0.211324,0.579352,0.527785,0.931601,0.427766,0.0676722,0.163689,0.89796,0.599784,0.538598,0.391119,0.427013,0.99654,0.403686,0.0871745,0.232023,0.413772,0.863881,0.482762,0.275698,0.103977,0.425457,0.266864,0.482735,0.420421,0.877442,0.293231,0.337236,0.343891,0.941235,0.333101,0.565279,0.410921,0.459341,0.0812354,0.623034,0.0431674,0.751229,0.118466,0.476149,0.61275,0.531498,0.616564,0.576868,0.145341,0.697602,0.480434,0.721041,0.663946,0.522968,0.0978232,0.136888,0.773845,0.807889,0.753348,0.0222055,0.966802,0.645342,0.95627,0.98436,0.0526615,0.708038,0.366997,0.0247656,0.694886,0.370963,0.772958,0.65325,0.607276,0.0917699,0.199889,0.817574,0.842194,0.73299,0.286162,|0.166162,0.0694482,0.993983,0.273799,0.0713416,0.791782,0.64206,0.641718,0.850884,0.482346,0.67707,0.661963,0.745112,0.329578,0.287481,0.161333,0.182813,0.176903,0.428556,0.357931,0.446581,0.0213252,0.452475,0.816677,0.470881,0.755138,0.906452,0.799402,0.425656,0.531754,0.320317,0.892741,0.27033,0.876875,0.153597,0.140952,0.93005,0.57097,0.174543,0.737526,0.244091,0.864537,0.924858,0.225674,0.573892,0.535875,0.891641,0.507655,0.933186,0.850098,0.757005,0.593876,0.893301,0.974241,0.841301,0.357958,0.57152,0.914972,0.0561291,0.668817,0.843807,0.772483,0.0111087,0.604978,0.812157,0.293991,0.955124,0.962349,0.478331,0.241911,0.684949,0.382314,0.12562,0.946684,0.939086,0.0709956,0.444615,0.801881,0.488982,0.501782,0.103939,0.724485,0.918438,0.923728,0.85283,0.102704,0.280895,0.76193,0.038266,0.933069,0.56642,0.513484,0.0719886,0.288463,0.506402,0.526853,0.743061,0.777426,0.55137,0.748912,0.201031,0.239878,0.465045,0.659164,0.329407,0.495654,0.263595,0.480022,0.591801,0.23206,0.352688,0.623146,0.292763,0.983355,0.627104,0.696131,0.75844,0.74096,0.764949,0.242173,0.774346,0.0996671,0.583768,0.499042,0.299483,0.968913,0.333286,0.00764847,0.261536,0.246042,0.635298,0.588612,0.532006,0.386813,0.101874,0.822952,0.491472,0.622783,0.315905,0.170329,0.407986,0.0468283,0.510886,0.953182,0.535731,0.727188,0.962628,0.954108,0.66327,0.532991,0.519657,0.695772,0.308664,0.521952,0.172052,0.448752,0.529067,0.358856,0.165525,0.512238,0.0886089,0.668648,0.675462,0.740179,0.20476,0.808323,0.323952,0.481708,0.951803,0.802861,0.0180347,0.865356,0.184129,0.64553,0.196151,0.212829,0.668521,0.0131195,0.354231,0.253078,0.567673,0.532946,0.797396,0.620047,0.854444,0.118338,0.10323,0.392233,0.220645,0.953253,0.0196721,0.265729,0.808436,0.0633026,0.452563,0.661783,0.268038,0.914501,0.622237,0.992379,0.03028,0.992998,0.186596,0.3941,0.994843,0.662191,0.919058,0.0130827,0.945355,0.164038,0.170563,0.639761,0.725405,0.0637985,0.955196,0.5015,0.770115,0.732606,0.01096,0.407875,0.507652,0.332631,0.228059,0.909085,0.133514,0.308562,0.316481,0.934699,0.934482,0.0157943,0.906964,0.389534,0.438107,0.10917,0.220914,0.891856,0.919945,0.625973,0.540253,0.273703,0.576999,0.257308,0.935097,0.215301,0.690119,0.441502,0.584201,0.152108,0.348061,0.14934,0.684235,0.21602,0.43962,0.875892,0.270341,0.964166,0.0512842,0.859868,0.0912532,0.451021,0.96424,0.15091,0.144174,0.630568,0.812479,0.557693,0.492243,0.0465745,0.0923471,0.940752,0.15894,0.794404,0.236701,0.120022,0.0834709,0.201604,0.392124,0.525571,0.710015,0.997026,0.624476,0.856944,0.927388,0.778387,0.242631,0.486896,0.840808,0.497413,0.92545,0.636063,0.0761806,0.862631,0.823161,0.0978709,0.35628,0.259062,0.193398,0.263452,0.52476,0.633229,0.957165,0.28036,0.52989,0.973641,0.109177,0.571945,0.188108,0.298263,0.150579,0.732068,0.370609,0.821525,0.699532,0.411708,0.0108609,0.430746,0.609709,0.0318587,0.595254,0.249142,0.880525,0.225357,0.113314,0.789428,0.0928832,0.246138,0.0733796,0.932821,0.474575,0.213356,0.502375,0.749538,0.219494,0.224826,0.624213,0.520842,0.313866,0.167732,0.0328068,0.0886285,0.592771,0.523354,0.269474,0.605033,0.711651,0.509445,0.96429,0.243621,0.836139,0.619027,0.209164,0.275974,0.205285,0.667085,0.494542,0.468313,0.856248,0.424073,0.0131817,0.190375,0.117763,0.99503,0.942878,0.672763,0.400498,0.911892,0.433202,0.03768,0.924257,0.245439,0.837318,0.036292,0.391967,0.0956388,0.0387235,0.220722,0.91672,0.485353,0.437787,0.0336786,0.901825,0.594703,0.577765,0.362928,0.705338,0.950193,0.408552,0.921996,0.732532,0.558728,0.319337,0.0776849,0.668272,0.107811,0.280812,0.768044,0.969804,0.364374,0.59103,0.971534,0.684175,0.988046,0.658202,0.745011,0.263171,0.595306,0.983518,0.847708,0.248751,0.998533,0.579339,0.72886,0.276477,0.289956,0.128844,0.0056327,0.320188,0.973033,0.446836,0.854595,0.73526,0.0608342,0.675779,0.781871,0.805967,0.0455387,0.658155,0.749369,0.613665,0.132767,0.224693,0.17487,0.179526,0.989665,0.724745,0.468004,0.426625,0.520803,0.0112956,0.458718,0.36912,0.797912,0.110638,0.112641,0.29213,0.924235,0.166664,0.941986,0.653492,0.726021,0.394399,0.211563,0.276145,0.520122,0.291984,0.477586,0.311704,0.87687,0.105858,0.54142,0.204186,0.498203,0.573263,0.579382,0.00931221,0.508662,0.585132,0.290443,0.481798,0.952802,0.377962,0.121866,0.0749864,0.0567668,0.262831,0.996328,0.55432,0.997976,0.422331,0.109561,0.649993,0.821154,0.250008,0.286849,0.6532,0.738515,0.574969,0.0601652,0.288127,0.142467,0.922839,0.651472,0.733666,0.701857,0.0790523,0.856988,0.447656,0.770028,0.606302,0.131089,0.814875,0.295408,0.850209,0.0933555,0.342332,0.989199,0.0761185,0.225458,0.496742,0.975058,0.117368,0.527763,0.958552,0.882397,0.765396,0.696915,0.844786,0.398272,0.476203,0.703317,0.963278,0.30176,0.190757,0.301918,0.697791,0.935716,0.75951,0.180443,0.438029,0.910258,0.768908,0.584485,0.0663708,0.351654,0.264388,0.350189,0.716886,0.809679,0.800759,0.389881,0.0433205,0.397612,0.354292,0.286834,0.752688,0.681957,0.742357,0.287754,0.545059,0.229173,0.641335,0.733595,0.435704,0.965313,0.142481,0.4557,0.532096,0.82713,0.816469,0.442385,0.52592,0.708512,0.0272114,0.146644,0.0744453,0.967366,0.629587,0.628736,0.106922,0.0260864,0.615482,0.867792,0.679752,0.0686427,0.841215,0.714232,0.484388,0.926338,0.129946,0.838477,0.239954,0.598327,0.0565326,0.36477,0.319143,0.563489,0.14844,0.678423,0.760222,0.156575,0.172818,0.277783,0.557138,0.16305,0.233704,0.665207,0.00121361,0.825485,0.0971012,0.54619,0.162374,0.99986,0.534081,0.980645,0.480608,0.890718,0.722395,0.339439,0.275466,0.940774,0.155031,0.118452,0.673306,0.0820117,0.93159,0.318116,0.314976,0.637719,0.0212336,0.131686,0.231726,0.458402,0.985607,0.495239,0.680998,0.51133,0.436226,0.256704,0.885207,0.455214,0.872884,0.281955,0.484246,0.960986,0.834891,0.680462,0.872942,0.317711,0.824398,0.125394,0.374919,0.446325,0.383909,0.914469,0.907275,0.934019,0.132846,0.989301,0.506751,0.155394,0.234202,0.503637,0.874886,0.874293,0.501868,0.106093,0.283059,0.00835812,0.35811,0.780757,0.109657,0.821079,0.932448,0.807979,0.110621,0.680507,0.292528,0.901164,0.196948,0.520659,0.71585,0.862167,0.586469,0.926009,0.734092,0.110051,0.370721,0.896329,0.0441684,0.243614,0.852629,0.989555,0.859198,0.554699,0.904776,0.705615,0.36698,0.535033,0.59522,0.417817,0.536957,0.483046,0.144513,0.786482,0.99546,0.15005,0.634837,0.0101658,0.302174,0.481035,0.889918,0.497333,0.502677,0.125737,0.685569,0.308948,0.863866,0.162665,0.092307,0.375758,0.688508,0.396988,0.568829,0.597292,0.379702,0.91729,0.652024,0.58515,0.550236,0.89342,0.165252,0.524794,0.991036,0.301582,0.603688,0.674266,0.483733,0.253227,0.246084,0.256111,0.932214,0.152316,0.638184,0.571719,0.808353,0.664682,0.93203,0.0687143,0.300038,0.798769,0.426613,0.346447,0.956119,0.23172,0.931316,0.158333,0.511396,0.581284,0.65969,0.664412,0.264384,0.399771,0.0720439,0.300987,0.911194,0.357931,0.884736,0.488937,0.122652,0.589961,0.131927,0.55604,0.738009,0.759587,0.513544,0.404272,0.998879,0.829459,0.764128,0.0272979,0.158484,0.969097,0.959117,0.283763,0.465921,0.943886,0.2604,0.161297,0.14266,0.245661,0.110176,0.477407,0.672165,0.966493,0.0953981,0.588711,0.558782,0.156547,0.568166,0.22316,0.959107,0.923748,0.839749,0.735153,0.93493,0.283854,0.400721,0.0163784,0.850404,0.258694,0.354094,0.294542,0.932652,0.005108,0.105949,0.0973681,0.46461,0.729485,0.904694,0.679525,0.322246,0.678018,0.655508,0.0231457,0.394515,0.875971,0.887594,0.783598,0.976642,0.14833,0.975624,0.560605,0.430522,0.745528,0.0209453,0.402851,0.338609,0.738575,0.37368,0.744239,0.191727,0.599292,0.367922,0.768019,0.290357,0.0113356,0.0777764,0.269012,0.926157,0.400964,0.269009,0.578314,0.0291808,0.412087,0.423347,0.517086,0.556853,0.944542,0.162306,0.948257,0.113195,0.446748,0.353111,0.412434,0.358594,0.299811,0.637429,0.240272,0.501844,0.118297,0.651886,0.748155,0.348411,0.130938,0.341898,0.219362,0.900617,0.111361,0.460549,0.986689,0.483215,0.457502,0.00459027,0.951063,0.383232,0.438442,0.738931,0.341223,0.832283,0.941186,0.825373,0.349852,0.241086,0.965345,0.793643,0.777935,0.205724,0.733289,0.339706,0.274972,0.128733,0.184575,0.209585,0.840956,0.639032,0.917995,0.744063,0.506138,0.00133216,0.909524,0.830899,0.624643,0.638438,0.38524,0.977395,0.664015,0.254044,0.0379959,0.958092,0.433674,0.175322,0.448276,0.219929,0.35372,0.198666,0.874032,0.0426451,0.150629,0.179624,0.535636,0.443725,0.98805,0.263352,0.163228,0.260539,0.765332,0.819825,0.338015,0.750479,0.971307,0.462812,0.28384,0.566453,0.476098,0.449389,0.330202,0.380446,0.346126,0.200389,0.665904,0.760631,0.844831,0.857258,0.0881665,0.418667,0.482093,0.87225,0.886482,0.463056,0.93701,0.835426,0.839219,0.515148,0.915604,0.328543,0.490209,0.271106,0.915945,0.432274,0.417391,0.144018,0.720161,0.703561,0.741927,0.478049,0.249399,0.227229,0.655028,0.097103,0.247453,0.145292,0.500489,0.91869,0.262166,0.730877,0.0282946,0.21259,0.219822,0.344652,0.924828,0.785525,0.600781,0.316416,0.915151,0.0584407,0.390937,0.00141865,0.494698,0.69403,0.109313,0.623728,0.838109,0.937025,0.0291598,0.589612,0.575826,0.342813,0.695124,0.843105,0.658753,|0.648362,0.129427,0.771335,0.8813,0.4274,0.124453,0.407065,0.16524,0.81872,0.311564,0.172712,0.933084,0.179392,0.862098,0.701355,0.602934,0.590773,0.876669,0.806104,0.913333,0.508206,0.704604,0.431429,0.556862,0.929032,0.750744,0.439902,0.815632,0.413755,0.208996,0.0309351,0.0361527,0.0900292,0.479297,0.84303,0.587642,0.547748,0.438682,0.427816,0.354637,0.425909,0.067118,0.895561,0.751779,0.553848,0.402017,0.259286,0.914909,0.96708,0.0367029,0.19243,0.757709,0.243346,0.876656,0.79803,0.773607,0.541322,0.820764,0.290445,0.646347,0.524217,0.102232,0.890785,0.160496,0.76734,0.681241,0.417938,0.76592,0.256595,0.135114,0.141915,0.477279,0.200656,0.547853,0.192538,0.154118,0.916662,0.512207,0.585138,0.230335,0.418571,0.119473,0.315465,0.386373,0.75911,0.578568,0.192372,0.27446,0.309181,0.260823,0.838353,0.864511,0.775092,0.813776,0.0266615,0.668087,0.45964,0.482496,0.63965,0.746675,0.685458,0.421418,0.257458,0.848616,0.639857,0.396092,0.869998,0.457585,0.887748,0.696571,0.313763,0.961856,0.146793,0.0725191,0.0844735,0.638109,0.544976,0.249578,0.916041,0.442708,0.865733,0.218665,0.311786,0.990575,0.51491,0.973908,0.816218,0.889553,0.604028,0.326342,0.0185788,0.447853,0.644905,0.0608419,0.648853,0.776866,0.212477,0.80456,0.398572,0.495571,0.548015,0.717886,0.50176,0.52023,0.441223,0.0155132,0.92687,0.73889,0.00681126,0.421038,0.420362,0.525412,0.565029,0.568162,0.675002,0.499273,0.0332964,0.0844294,0.0113651,0.949654,0.910545,0.179704,0.099054,0.0140208,0.270345,0.879492,0.00356442,0.32046,0.121796,0.34945,0.813148,0.995066,0.999317,0.670829,0.0858172,0.520639,0.632266,0.00539392,0.145546,0.461284,0.0829424,0.664563,0.784453,0.131947,0.650367,0.948735,0.74556,0.431351,0.615184,0.325487,0.0508515,0.912643,0.294587,0.0742302,0.915624,0.779615,0.325787,0.454736,0.89547,0.280591,0.868418,0.822371,0.786043,0.962779,0.236084,0.460744,0.0267034,0.471959,0.188338,0.3423,0.862157,0.00912112,0.13639,0.753233,0.155166,0.704309,0.429247,0.243827,0.775371,0.640164,0.872184,0.277534,0.932803,0.112465,0.61629,0.574268,0.498045,0.373878,0.525706,0.943799,0.151276,0.353026,0.536634,0.728968,0.0818843,0.688694,0.199566,0.479786,0.14188,0.122675,0.506797,0.342942,0.540361,0.224472,0.907525,0.292162,0.711307,0.24981,0.115967,0.0360228,0.863346,0.733141,0.59949,0.275849,0.596512,0.631279,0.426916,0.786668,0.466645,0.146382,0.0950661,0.582752,0.0258185,0.410498,0.404559,0.642379,0.950732,0.528384,0.765988,0.301162,0.467802,0.0575399,0.00944638,0.173148,0.225487,0.65667,0.872158,0.147266,0.984074,0.463761,0.206919,0.237906,0.218299,0.903893,0.232917,0.840379,0.245171,0.108611,0.489046,0.739484,0.182422,0.964393,0.170194,0.608453,0.389689,0.939083,0.935411,0.842648,0.741184,0.216146,0.910594,0.524361,0.65376,0.667815,0.83138,0.366002,0.406632,0.296849,0.345496,0.544182,0.572772,0.29621,0.758672,0.591833,0.609389,0.0609927,0.0825755,0.130221,0.782407,0.385796,0.791339,0.991064,0.113798,0.0199595,0.578686,0.370926,0.386318,0.710343,0.940153,0.970283,0.587234,0.918227,0.702638,0.900315,0.129759,0.325664,0.701868,0.298086,0.102321,0.155033,0.833048,0.849274,0.850515,0.0276536,0.498641,0.483646,0.302674,0.745936,0.553571,0.585506,0.588821,0.12853,0.29812,0.701311,0.565399,0.673595,0.325049,0.731014,0.084807,0.73184,0.662839,0.606147,0.16042,0.286924,0.262593,0.761139,0.98394,0.833264,0.678224,0.0641077,0.0723822,0.448245,0.575067,0.381327,0.304436,0.562855,0.0922458,0.247422,0.642765,0.863827,0.953891,0.30114,0.291848,0.744422,0.397235,0.429821,0.0758712,0.280823,0.280552,0.961411,0.745438,0.251779,0.900042,0.593723,0.233065,0.973119,0.0708184,0.146102,0.157721,0.398561,0.122772,0.699047,0.310006,0.41925,0.0705456,0.0400439,0.1601,0.767677,0.154442,0.734584,0.533888,0.107774,0.896384,0.888408,0.294283,0.208422,0.133888,0.612695,0.678964,0.637813,0.360627,0.502276,0.821412,0.851861,0.219538,0.543307,0.698141,0.497119,0.532658,0.0261596,0.248984,0.282748,0.0489055,0.697344,0.886131,0.937846,0.701495,0.242246,0.446497,0.109105,0.779876,0.0251498,0.697103,0.23239,0.831357,0.127042,0.195126,0.335085,0.157616,0.143729,0.292997,0.837709,0.382938,0.536309,0.904398,0.645464,0.538866,0.737597,0.627765,0.970724,0.40827,0.968814,0.854656,0.744128,0.779533,0.41411,0.124057,0.331829,0.187454,0.366082,0.174021,0.830477,0.842465,0.452964,0.763929,0.794842,0.503404,0.415591,0.168066,0.197277,0.0339825,0.904146,0.989993,0.500192,0.398036,0.801017,0.432842,0.063272,0.642171,0.148663,0.304988,0.0127585,0.52736,0.94274,0.930302,0.606935,0.804867,0.418039,0.756718,0.321798,0.844038,0.189066,0.537932,0.779575,0.203633,0.0315523,0.329216,0.385528,0.218186,0.885193,0.767864,0.341348,0.215752,0.289694,0.561489,0.540481,0.232631,0.00267678,0.492367,0.354749,0.620642,0.574403,0.931795,0.361748,0.80011,0.732343,0.641468,0.916638,0.686308,0.456946,0.0494447,0.384079,0.90405,0.595754,0.824097,0.252142,0.409074,0.415618,0.488872,0.556665,0.166664,0.424035,0.539478,0.78531,0.0308058,0.816997,0.856833,0.833656,0.763216,0.173502,0.940149,0.184063,0.183735,0.558263,0.116085,0.511247,0.0724199,0.463029,0.484177,0.49876,0.735577,0.662941,0.304223,0.384991,0.993509,0.0425429,0.429832,0.544076,0.449209,0.667589,0.848767,0.22702,0.264453,0.831381,0.54519,0.505448,0.0889821,0.986248,0.384476,0.141115,0.0349858,0.325608,0.489298,0.596588,0.00140184,0.3031,0.00713652,0.367053,0.274341,0.96864,0.442692,0.754573,0.765157,0.72503,0.56199,0.540081,0.749931,0.291366,0.174926,0.723326,0.11393,0.837415,0.699257,0.221484,0.376865,0.811151,0.233319,0.0423954,0.675889,0.399741,0.134496,0.841249,0.341753,0.215203,0.0687659,0.714743,0.590994,0.925224,0.747751,0.104154,0.0010438,0.208878,0.291134,0.864619,0.978169,0.335011,0.594355,0.917587,0.436639,0.481547,0.270645,0.36688,0.420789,0.042634,0.919174,0.760963,0.454833,0.854218,0.784807,0.0268624,0.745774,0.649223,0.621811,0.709377,0.818461,0.689421,0.422679,0.293298,0.314804,0.262789,0.669869,0.879948,0.963224,0.213579,0.598893,0.00466293,0.433349,0.376163,0.935831,0.41384,0.339406,0.28242,0.928067,0.962865,0.730962,0.211526,0.947315,0.841595,0.774098,0.0284708,0.750687,0.326948,0.783203,0.305924,0.0646345,0.67139,0.841779,0.643119,0.62665,0.163886,0.386328,0.30558,0.567227,0.779581,0.902732,0.257309,0.732705,0.234237,0.491988,0.393432,0.340583,0.486443,0.918712,0.720631,0.35029,0.395257,0.215897,0.123577,0.727522,0.335398,0.402635,0.331134,0.327872,0.54397,0.816276,0.815199,0.059946,0.886158,0.440659,0.183006,0.830227,0.37018,0.649725,0.125085,0.68336,0.0441073,0.324375,0.902093,0.57543,0.899135,0.00426346,0.442544,0.0912027,0.187041,0.544177,0.361283,0.971895,0.145436,0.114569,0.713603,0.772069,0.705766,0.755061,0.418258,0.0708563,0.139248,0.994758,0.551112,0.990127,0.947349,0.828597,0.314381,0.0322628,0.0461232,0.0905139,0.376838,0.709236,0.287965,0.813214,0.543516,0.256976,0.293224,0.137517,0.126584,0.751075,0.50802,0.753843,0.484808,0.771145,0.250561,0.765031,0.118059,0.902181,0.549979,0.912157,0.20101,0.382722,0.0057162,0.555719,0.502919,0.668914,0.851141,0.607725,0.241942,0.827852,0.590205,0.774962,0.498714,0.0715372,0.120535,0.919747,0.978538,0.71523,0.984744,0.0304651,0.0642641,0.13423,0.893529,0.236201,0.167202,0.353524,0.38718,0.210398,0.65075,0.918972,0.438343,0.603812,0.52005,0.990769,0.726141,0.136874,0.847309,0.694862,0.505014,0.940533,0.0290692,0.536118,0.405274,0.114448,0.308266,0.249108,0.150889,0.810736,0.149859,0.346531,0.299305,0.619572,0.140274,0.515658,0.110088,0.691588,0.72848,0.748092,0.932491,0.5153,0.177829,0.520348,0.610261,0.235101,0.877055,0.756865,0.881722,0.466936,0.962293,0.691436,0.711408,0.0679485,0.134439,0.71124,0.430638,0.131746,0.295045,0.264878,0.694143,0.990084,0.336394,0.175776,0.815893,0.941474,0.240593,0.346354,0.681173,0.386619,0.911318,0.573059,0.379317,0.484868,0.746407,0.373178,0.170442,0.306582,0.113534,0.786191,0.888588,0.179185,0.451275,0.862822,0.980406,0.547084,0.226404,0.118206,0.987311,0.90369,0.404708,0.558961,0.323693,0.684712,0.541124,0.760149,0.563621,0.13305,0.514309,0.0607892,0.0498394,0.636541,0.402504,0.00682658,0.620818,0.285457,0.833585,0.639397,0.789575,0.950445,0.854512,0.788937,0.947912,0.215333,0.466524,0.760781,0.962812,0.701842,0.762019,0.37925,0.0816596,0.0651463,0.08448,0.208239,0.480551,0.226634,0.753646,0.789327,0.0291018,0.473275,0.925084,0.335365,0.158062,0.995968,0.754209,0.659503,0.344818,0.0470749,0.111023,0.0837052,0.172025,0.812342,0.0678086,0.981005,0.436296,0.645251,0.282696,0.683932,0.722071,0.555724,0.837689,0.843892,0.413431,0.88353,0.543797,0.0148731,0.175234,0.449874,0.778845,0.208376,0.737939,0.0716216,0.126367,0.698303,0.555775,0.82542,0.0700998,0.543886,0.550726,0.483203,0.561374,0.145926,0.918213,0.0812806,0.178193,0.129433,0.539543,0.097877,0.477694,0.723749,0.327971,0.441343,0.506764,0.893371,0.71325,0.954178,0.727601,0.648176,0.588463,0.103739,0.339377,0.933966,0.32199,0.33336,0.789358,0.185631,0.278667,0.0139804,0.48808,0.164506,0.60602,0.813927,0.558034,0.167943,0.732514,0.349901,0.232053,0.470892,0.0541924,0.0976232,0.456481,0.546829,0.863873,0.32686,0.677959,0.39664,0.694424,|0.277453,0.846775,0.560987,0.692962,0.655951,0.230468,0.609909,0.979124,0.127047,0.368067,0.765589,0.514846,0.584589,0.554232,0.997249,0.655575,0.800155,0.0589195,0.52217,0.392765,0.898805,0.146647,0.895562,0.220073,0.612664,0.175512,0.918826,0.702796,0.881547,0.0340097,0.780691,0.987563,0.691543,0.683784,0.480317,0.773441,0.642673,0.444178,0.518243,0.179739,0.350559,0.108258,0.956059,0.376416,0.824365,0.602871,0.796689,0.864704,0.100923,0.921791,0.145492,0.521472,0.018273,0.404428,0.124169,0.110623,0.863885,0.212154,0.756559,0.982183,0.992318,0.0716315,0.771102,0.684507,0.618585,0.993147,0.983173,0.680743,0.0353606,0.553303,0.803008,0.583698,0.182459,0.750386,0.458126,0.933622,0.508331,0.920883,0.171101,0.823493,0.149241,0.548792,0.466204,0.943799,0.270235,0.687072,0.4801,0.929197,0.880354,0.0945405,0.573113,0.261292,0.981434,0.468198,0.614539,0.825798,0.866794,0.946466,0.218551,0.110161,0.683387,0.410172,0.328214,0.850202,0.384178,0.872385,0.582105,0.596029,0.601196,0.495546,0.758525,0.959861,0.426534,0.818715,0.528402,0.996221,0.656681,0.23207,0.680056,0.358455,0.139042,0.656378,0.906285,0.426437,0.193904,0.346225,0.0453058,0.585013,0.665121,0.782349,0.823849,0.12623,0.490029,0.4482,0.868272,0.919553,0.0366892,0.667277,0.371207,0.800792,0.871318,0.716311,0.417869,0.210856,0.543833,0.641838,0.940121,0.320626,0.125789,0.299002,0.951528,0.0952309,0.247076,0.788493,0.562752,0.0465075,0.845802,0.906959,0.894881,0.758845,0.912558,0.542967,0.906363,0.357296,0.939951,0.234356,0.140512,0.583774,0.874088,0.607824,0.836405,0.433421,0.65306,0.791937,0.789776,0.602814,0.128941,0.85047,0.989844,0.201252,0.38046,0.764648,0.472328,0.209392,0.918655,0.751839,0.339111,0.152006,0.942261,0.572291,0.252914,0.396987,0.151452,0.541441,0.816959,0.415672,0.972555,0.224158,0.316397,0.107973,0.26728,0.643007,0.557207,0.428624,0.754319,0.932341,0.290148,0.745742,0.61185,0.165285,0.993153,0.645528,0.259939,0.876999,0.733602,0.129194,0.62787,0.75029,0.0225626,0.278874,0.203263,0.70491,0.378116,0.211002,0.180005,0.726245,0.624435,0.155735,0.135081,0.552327,0.841573,0.62568,0.895799,0.906771,0.702705,0.796145,0.445325,0.767756,0.948856,0.312486,0.429164,0.246918,0.515389,0.806166,0.856692,0.482635,0.600706,0.415971,0.973791,0.137767,0.327505,0.00238442,0.579693,0.00482905,0.16612,0.0150459,0.368926,0.752344,0.269322,0.736969,0.406276,0.291982,0.837357,0.0652189,0.24443,0.739053,0.034565,0.28755,0.528568,0.262683,0.56999,0.656463,0.234558,0.796167,0.162809,0.521641,0.511527,0.803254,0.486725,0.0886275,0.997715,0.390694,0.976359,0.899457,0.632217,0.690454,0.640679,0.365159,0.61452,0.550974,0.971157,0.332932,0.748918,0.867233,0.844693,0.55515,0.117242,0.445591,0.800653,0.47801,0.429725,0.439563,0.660273,0.240383,0.540995,0.44942,0.880687,0.424848,0.510115,0.561206,0.480799,0.645236,0.782595,0.777793,0.230833,0.544654,0.190011,0.173876,0.0614284,0.399784,0.588798,0.301227,0.436681,0.386897,0.19839,0.815131,0.834024,0.414902,0.138934,0.367011,0.420066,0.163415,0.747971,0.315436,0.694446,0.619581,0.231489,0.671629,0.766046,0.149542,0.506813,0.546481,0.52838,0.129973,0.660656,0.613682,0.670579,0.258723,0.0743675,0.484981,0.0715419,0.896448,0.241385,0.684851,0.426636,0.98504,0.0551547,0.118337,0.794022,0.862745,0.65687,0.901695,0.382849,0.586615,0.568686,0.507279,0.0909035,0.889106,0.94849,0.241402,0.251974,0.835832,0.0139741,0.931637,0.542832,0.131468,0.0172476,0.89334,0.921088,0.0756613,0.903386,0.538465,0.698,0.784861,0.315555,0.875113,0.0279599,0.527273,0.145032,0.291274,0.849267,0.70772,0.249661,0.0860584,0.0473897,0.825268,0.891694,0.575555,0.950789,0.299441,0.842044,0.943922,0.182936,0.680433,0.428355,0.394087,0.203109,0.130612,0.751778,0.680605,0.0387029,0.065467,0.248243,0.437559,0.571902,0.608693,0.795474,0.258926,0.860613,0.173951,0.0418035,0.532567,0.856126,0.694908,0.543594,0.498116,0.272633,0.818856,0.909754,0.288979,0.0950755,0.696152,0.754754,0.761994,0.903822,0.190628,0.122186,0.455537,0.47448,0.917441,0.574208,0.149311,0.71729,0.675623,0.0300936,0.68228,0.542404,0.501254,0.716083,0.0615099,0.118007,0.741854,0.439674,0.609433,0.626981,0.285612,0.369545,0.0197154,0.433345,0.953879,0.371462,0.389528,0.660707,0.0814073,0.335106,0.36713,0.915921,0.0443756,0.403445,0.748415,0.745735,0.064027,0.542025,0.452632,0.967364,0.298429,0.964679,0.00148153,0.668021,0.778838,0.643245,0.383176,0.0270208,0.769292,0.645723,0.375329,0.239916,0.506779,0.295202,0.972567,0.686171,0.0513695,0.16502,0.064769,0.183373,0.0799674,0.667631,0.372488,0.683384,0.937967,0.232906,0.675901,0.33415,0.800332,0.39343,0.801836,0.961911,0.547432,0.126497,0.0818688,0.39962,0.787767,0.0257283,0.428902,0.766765,0.327515,0.985698,0.366815,0.187361,0.173679,0.593279,0.810553,0.907705,0.340545,0.23054,0.248946,0.138508,0.110015,0.0280464,0.314879,0.152425,0.194868,0.432602,0.786769,0.856611,0.276754,0.481988,0.791735,0.292235,0.585936,0.61398,0.908093,0.93271,0.0722141,0.900655,0.745149,0.389323,0.451215,0.359616,0.369425,0.0831535,0.92729,0.082184,0.0583239,0.585865,0.498959,0.139953,0.755349,0.773886,0.381726,0.770987,0.741606,0.0811913,0.673684,0.607662,0.192707,0.387182,0.143205,0.263976,0.176502,0.131562,0.697436,0.117748,0.833461,0.504063,0.683222,0.321055,0.225236,0.359177,0.139301,0.926866,0.0139804,0.224183,0.710165,0.683774,0.397966,0.747944,0.0158488,0.695391,0.225288,0.0804636,0.50174,0.843101,0.466555,0.674235,0.570735,0.652692,0.645686,0.945961,0.228672,0.628767,0.320731,0.854019,0.355719,0.563513,0.267426,0.96179,0.784258,0.994409,0.644695,0.219622,0.478825,0.228409,0.393009,0.193267,0.158685,0.219612,0.905669,0.854761,0.206551,0.549041,0.459182,0.0095951,0.952865,0.0973464,0.0288516,0.00308669,0.876303,0.740598,0.700889,0.695292,0.958859,0.818597,0.982981,0.708409,0.471341,0.0183954,0.441377,0.0790866,0.671331,0.713663,0.450814,0.521163,0.0919513,0.905115,0.266513,0.0280551,0.56426,0.714207,0.265547,0.388886,0.740131,0.0255547,0.489159,0.154236,0.207815,0.273776,0.827164,0.544736,0.616618,0.729543,0.0569955,0.982604,0.916565,0.0848055,0.434736,0.36123,0.904264,0.690749,0.0553648,0.522058,0.933427,0.653012,0.789269,0.156417,0.617634,0.0223248,0.161377,0.0841317,0.520873,0.315529,0.893232,0.0197811,0.262004,0.486678,0.517337,0.82624,0.430705,0.0494933,0.314925,0.745479,0.829657,0.638436,0.517951,0.248667,0.890132,0.639019,0.488768,0.0140819,0.831611,0.432565,0.29142,0.414474,0.561104,0.325489,0.780292,0.468406,0.425331,0.603947,0.255917,0.962641,0.25369,0.85738,0.78399,0.888666,0.570908,0.26171,0.287501,0.517966,0.411669,0.0938789,0.936647,0.458534,0.836622,0.289399,0.897803,0.10628,0.217268,0.643521,0.959215,0.745867,0.320245,0.301555,0.946672,0.343587,0.937757,0.237592,0.833391,0.908127,0.0658715,0.0736504,0.841971,0.306252,0.0412171,0.285384,0.944153,0.213633,0.41409,0.215988,0.161327,0.904583,0.140753,0.0152517,0.794556,0.642838,0.533473,0.539971,0.525913,0.760215,0.602675,0.324105,0.624057,0.629393,0.106707,0.928032,0.672227,0.884659,0.177024,0.955062,0.875065,0.829171,0.914266,0.648062,0.597207,0.578285,0.2799,0.698459,0.515024,0.741478,0.143176,0.0979447,0.980007,0.127228,0.96895,0.773707,0.214696,0.243894,0.814948,0.0030548,0.901598,0.0862076,0.234451,0.388968,0.774353,0.216588,0.98934,0.415574,0.895544,0.610773,0.320541,0.526707,0.705282,0.449837,0.136983,0.237918,0.444086,0.534905,0.93601,0.430879,0.815132,0.971231,0.411053,0.869766,0.907271,0.49743,0.649734,0.598262,0.384665,0.229443,0.262881,0.978358,0.945057,0.0792271,0.0734046,0.139195,0.0182573,0.332132,0.359565,0.283258,0.199779,0.339164,0.924915,0.516223,0.320604,0.203936,0.727513,0.181398,0.368792,0.800158,0.481561,0.155586,0.743147,0.988222,0.877622,0.674327,0.0770096,0.425088,0.0296274,0.588476,0.483881,0.249565,0.396586,0.562085,0.994816,0.646442,0.510314,0.657125,0.348925,0.425146,0.853485,0.734358,0.205994,0.479183,0.0417454,0.158567,0.759954,0.538056,0.636829,0.0909047,0.0145048,0.303814,0.595569,0.895677,0.0816665,0.191866,0.536939,0.0247,0.384829,0.562661,0.0695802,0.922308,0.710885,0.968657,0.397176,0.882841,0.00344878,0.0657291,0.970005,0.872464,0.293767,0.716376,0.953993,0.0588723,0.425582,0.0492744,0.292303,0.894101,0.551205,0.432956,0.323055,0.540291,0.403985,0.284125,0.0893037,0.818106,0.925078,0.812874,0.916468,0.242576,0.64064,0.922204,0.205877,0.164873,0.592053,0.930278,0.298194,0.924134,0.749782,0.566672,0.619926,0.827356,0.3792,0.429336,0.315798,0.82736,0.191316,0.196854,0.692494,0.91475,0.663188,0.939466,0.0758026,0.642531,0.654941,0.619771,0.255596,0.0912755,0.648991,0.791763,0.201248,0.405833,0.239811,0.811943,0.045925,0.47134,0.73291,0.677122,0.615488,0.923113,0.829183,0.302008,0.688419,0.28465,0.618009,0.965424,0.192154,0.624334,0.114457,0.905584,0.523543,0.976651,0.881351,0.50176,0.48809,0.479889,0.877966,0.090039,0.284508,0.0948021,0.192032,0.941673,0.685505,0.590699,0.0973043,0.0136291,0.526779,0.371066,0.453386,0.633299,0.83487,0.26578,0.684499,0.268499,0.741365,0.442425,0.857839,0.0768794,0.596188,0.399635,0.712542,0.215034,0.917086,0.982902,0.604574,0.10867,0.335948,0.338457,0.151847,0.668779,0.85952,|0.993067,0.661308,0.68416,0.097634,0.0932453,0.095341,0.26558,0.855291,0.894399,0.177786,0.323796,0.262835,0.527003,0.457418,0.0502636,0.41003,0.578385,0.979313,0.481244,0.809413,0.0716168,0.452806,0.0316759,0.0407156,0.464757,0.583686,0.616406,0.417647,0.864523,0.000882566,0.33219,0.757591,0.112653,0.377173,0.795937,0.102294,0.344111,0.686957,0.126129,0.226808,0.915519,0.649793,0.826238,0.694617,0.323428,0.656689,0.475373,0.80673,0.168296,0.264226,0.897705,0.937018,0.143428,0.00412184,0.811802,0.810162,0.100167,0.675138,0.857843,0.666666,0.478922,0.684541,0.0789385,0.0654507,0.45097,0.0438449,0.250016,0.445733,0.14389,0.147354,0.00760865,0.422929,0.903743,0.449785,0.234215,0.0267051,0.805542,0.122289,0.714018,0.81975,0.0172652,0.924543,0.911259,0.830929,0.245437,0.12158,0.0719841,0.728972,0.321005,0.76843,0.610743,0.0659332,0.624983,0.908149,0.721638,0.381771,0.331357,0.00714296,0.131358,0.0133341,0.134614,0.762712,0.0403415,0.311023,0.732046,0.961708,0.584061,0.326862,0.887739,0.779071,0.36971,0.132789,0.0504014,0.798299,0.691317,0.417576,0.0241995,0.31129,0.346657,0.577373,0.728893,0.899455,0.119137,0.435268,0.121998,0.681358,0.978369,0.694914,0.146231,0.612386,0.385081,0.251713,0.944813,0.508638,0.336161,0.227386,0.493499,0.691162,0.740411,0.395606,0.463224,0.263815,0.981694,0.358437,0.621772,0.742684,0.792006,0.393387,0.604785,0.849151,0.253563,0.334674,0.510015,0.477216,0.876275,0.194065,0.692919,0.657004,0.229292,0.115294,0.757701,0.364438,0.455265,0.258181,0.304993,0.13894,0.974235,0.425071,0.00120699,0.138457,0.893672,0.0651162,0.556017,0.803726,0.465164,0.480764,0.872122,0.677672,0.357659,0.493383,0.808935,0.716639,0.586121,0.474707,0.647407,0.138035,0.600584,0.260163,0.965444,0.513599,0.844897,0.274115,0.99672,0.71396,0.938696,0.397802,0.518898,0.368538,0.908108,0.186252,0.424921,0.955388,0.144691,0.0126858,0.837769,0.631086,0.221038,0.69678,0.976669,0.933773,0.0353397,0.642812,0.380728,0.807712,0.584082,0.266139,0.676722,0.327931,0.974434,0.721727,0.798297,0.742779,0.56342,0.418533,0.612159,0.909035,0.204226,0.688738,0.133783,0.575699,0.143988,0.632622,0.48767,0.530693,0.736864,0.427811,0.220201,0.75807,0.173433,0.759204,0.236605,0.50296,0.478575,0.451949,0.989512,0.432594,0.168251,0.541308,0.491906,0.482717,0.0540286,0.661698,0.855375,0.138881,0.498552,0.578089,0.480723,0.840655,0.382037,0.19215,0.516796,0.377773,0.00975025,0.50563,0.519429,0.446666,0.489325,0.796424,0.517477,0.682916,0.964484,0.369531,0.844958,0.771128,0.308679,0.550845,0.282135,0.126458,0.755929,0.716276,0.913781,0.764575,0.58751,0.986644,0.808011,0.480401,0.262247,0.341007,0.747831,0.757595,0.59972,0.420369,0.396517,0.379407,0.884867,0.0335702,0.0689542,0.110944,0.553881,0.144168,0.268203,0.210486,0.23861,0.253623,0.773872,0.786856,0.970039,0.508846,0.177602,0.448603,0.0847936,0.87834,0.894246,0.0195363,0.0115457,0.94359,0.103194,0.526288,0.0822362,0.133894,0.221801,0.468681,0.0282372,0.758682,0.0651159,0.931101,0.113012,0.189512,0.474632,0.492982,0.0997763,0.19876,0.903973,0.556588,0.599758,0.171546,0.371243,0.165931,0.292959,0.943203,0.277295,0.270648,0.945088,0.173888,0.967399,0.416143,0.0142258,0.1107,0.0237853,0.589151,0.596474,0.49828,0.856995,0.992928,0.599103,0.432485,0.374664,0.676673,0.343967,0.924378,0.935616,0.92712,0.230487,0.684397,0.344329,0.548465,0.714582,0.415383,0.863097,0.183503,0.940733,0.197136,0.4204,0.0660734,0.827821,0.894637,0.863262,0.344051,0.617946,0.617685,0.58126,0.644348,0.041787,0.404762,0.312717,0.0236754,0.763683,0.47227,0.730678,0.745936,0.960635,0.433751,0.716176,0.524784,0.910948,0.124398,0.371306,0.567331,0.0788952,0.87766,0.462087,0.8818,0.728175,0.916598,0.0793909,0.763645,0.00296807,0.52366,0.908046,0.00445777,0.969757,0.921119,0.353411,0.995425,0.553102,0.393903,0.731075,0.756062,0.152184,0.281381,0.836323,0.642638,0.997325,0.164368,0.643433,0.903088,0.156272,0.865717,0.654856,0.619948,0.804942,0.427688,0.78659,0.148546,0.391996,0.584566,0.614464,0.0823235,0.830018,0.362845,0.619644,0.203195,0.982142,0.0314312,0.900008,0.0856391,0.349381,0.953488,0.341341,0.158257,0.0888116,0.175772,0.0414997,0.594606,0.831448,0.614868,0.624158,0.111641,0.374898,0.795983,0.81599,0.769493,0.30003,0.62775,0.413843,0.0203754,0.373703,0.0683733,0.577038,0.708736,0.882115,0.856737,0.510277,0.238492,0.292824,0.118944,0.301181,0.29056,0.496999,0.734876,0.44258,0.269543,0.539007,0.936193,0.616876,0.213033,0.24916,0.456563,0.368959,0.642454,0.247992,0.0647811,0.358023,0.553309,0.159679,0.0848886,0.917422,0.517084,0.160527,0.72036,0.385771,0.491773,0.21937,0.203532,0.463199,0.492245,0.203822,0.96428,0.683851,0.23823,0.564839,0.99579,0.318958,0.801677,0.210712,0.156473,0.668471,0.102471,0.981826,0.558782,0.643619,0.348409,0.681094,0.362196,0.403239,0.00260609,0.588523,0.252252,0.944216,0.316672,0.251082,0.0411177,0.96213,0.0558436,0.0324818,0.93245,0.235734,0.119692,0.558714,0.0945754,0.524058,0.829422,0.316364,0.240688,0.589573,0.423223,0.850607,0.616603,0.734435,0.790645,0.751025,0.484628,0.459028,0.310285,0.786802,0.248306,0.403127,0.315252,0.747005,0.595292,0.856535,0.256425,0.703174,0.52902,0.824199,0.916145,0.913753,0.90977,0.796642,0.572295,0.736084,0.798405,0.786845,0.818297,0.134464,0.316623,0.393867,0.958345,0.345032,0.212742,0.338542,0.518989,0.343366,0.776745,0.570681,0.935547,0.68793,0.885545,0.48135,0.110667,0.38126,0.381404,0.888741,0.835118,0.0618385,0.625994,0.913518,0.768363,0.484022,0.523504,0.614986,0.0709472,0.262589,0.262804,0.0796783,0.521731,0.809162,0.0465069,0.612888,0.0870081,0.438657,0.492716,0.363858,0.420559,0.221164,0.361656,0.141177,0.898898,0.017548,0.450933,0.152297,0.459071,0.767342,0.456222,0.404774,0.762525,0.709354,0.30757,0.630354,0.252157,0.499316,0.48248,0.306082,0.605464,0.737578,0.233701,0.0974003,0.205824,0.631613,0.537637,0.508575,0.871231,0.483998,0.244152,0.219652,0.763056,0.111636,0.430937,0.682912,0.479365,0.387235,0.776798,0.726754,0.605482,0.155315,0.212103,0.466192,0.683043,0.212267,0.950091,0.332824,0.53863,0.0476411,0.0391746,0.242682,0.94841,0.457669,0.25587,0.752683,0.183647,0.385251,0.868846,0.651626,0.511032,0.247132,0.975491,0.0037064,0.600477,0.686435,0.309226,0.0707082,0.119725,0.902386,0.553813,0.810098,0.379283,0.913091,0.406977,0.0153522,0.856515,0.229518,0.778533,0.929681,0.029296,0.545848,0.271201,0.0562413,0.454295,0.26053,0.355412,0.310786,0.681916,0.0905865,0.47475,0.160849,0.45052,0.866508,0.131067,0.836492,0.614391,0.658991,0.0986966,0.917789,0.469435,0.932315,0.935935,0.932534,0.501424,0.0372283,0.83708,0.0787034,0.350028,0.158559,0.168677,0.834114,0.570769,0.482797,0.766995,0.708398,0.325287,0.27244,0.38637,0.333825,0.0664593,0.233521,0.0288832,0.652734,0.733549,0.700339,0.506648,0.842176,0.404955,0.168971,0.602221,0.354804,0.914465,0.901618,0.069508,0.907241,0.447717,0.773444,0.887818,0.151015,0.908856,0.313953,0.685159,0.225748,0.273929,0.351018,0.720814,0.608054,0.803369,0.567792,0.665672,0.0755185,0.0657972,0.709864,0.00023526,0.460774,0.771811,0.335125,0.327161,0.307711,0.514066,0.162692,0.060298,0.465646,0.550628,0.864793,0.176517,0.543157,0.966165,0.275735,0.0901186,0.369127,0.974111,0.205126,0.99022,0.757414,0.471915,0.163704,0.627104,0.324996,0.162067,0.074313,0.890258,0.175365,0.387561,0.878733,0.274722,0.916011,0.835407,0.0440796,0.709167,0.954581,0.250556,0.0297709,0.658368,0.146041,0.300974,0.106426,0.396972,0.223323,0.423418,0.0916854,0.0298784,0.270212,0.345607,0.709655,0.0927645,0.566233,0.410017,0.221569,0.761824,0.632061,0.41564,0.204091,0.110817,0.134496,0.343827,0.447359,0.126022,0.465784,0.0978863,0.354606,0.432498,0.618072,0.784295,0.814124,0.711159,0.489936,0.699219,0.769635,0.844685,0.75216,0.523971,0.757741,0.832257,0.206876,0.56813,0.0173019,0.663213,0.529906,0.871622,0.867562,0.184065,0.806028,0.634772,0.604921,0.823942,0.707831,0.820005,0.474413,0.461014,0.961831,0.578343,0.509363,0.974159,0.354268,0.549933,0.43622,0.725119,0.356849,0.199997,0.583409,0.638589,0.615345,0.876429,0.0838603,0.267421,0.96148,0.213067,0.786263,0.941006,0.0252432,0.921452,0.462441,0.955498,0.00494039,0.119746,0.622543,0.283448,0.545386,0.133218,0.71527,0.021652,0.617416,0.376536,0.0361233,0.677968,0.665036,0.394014,0.70803,0.0893766,0.926608,0.871608,0.171792,0.0502886,0.154738,0.367797,0.420404,0.313442,0.143801,0.425497,0.273898,0.352235,0.444924,0.994238,0.284478,0.866094,0.384086,0.512914,0.837867,0.881666,0.986812,0.945068,0.145218,0.721009,0.498091,0.576005,0.859435,0.472797,0.291571,0.020872,0.383377,0.4368,0.059686,0.401482,0.473019,0.239061,0.0745749,0.860908,0.549575,0.850386,0.0791802,0.881984,0.706183,0.869338,0.839317,0.167978,0.0441403,0.914174,0.30807,0.444571,0.421297,0.0895432,0.94205,0.761527,0.865211,0.498434,0.49106,0.212222,0.864156,0.493171,0.0779746,0.404092,0.661325,0.13512,0.789022,0.129215,0.776076,0.530114,0.874179,0.0302095,0.489522,0.671594,0.0771289,0.628893,0.615943,0.71503,0.659907,0.406953,0.297075,0.596169,0.153307,0.747935,0.882472,0.995092,0.18998,0.713676,0.714486,0.71464,0.534746,0.73529,0.587072,0.382149,0.723268,0.4348,0.662899,0.245378,|0.577187,0.764803,0.396244,0.640729,0.00193441,0.785584,0.40865,0.777217,0.437216,0.0981712,0.785228,0.285304,0.775719,0.615078,0.717642,0.0852908,0.333506,0.837435,0.686815,0.630554,0.622095,0.589137,0.382572,0.769781,0.880137,0.814927,0.604092,0.134028,0.405948,0.692302,0.671038,0.497371,0.921546,0.147262,0.0479512,0.65257,0.344761,0.400731,0.65535,0.95579,0.377557,0.69244,0.169546,0.558664,0.176707,0.557318,0.499588,0.506001,0.0293944,0.974951,0.658577,0.00674647,0.524508,0.399106,0.782862,0.019437,0.781353,0.43834,0.863789,0.0173439,0.671742,0.663856,0.387341,0.572716,0.0426836,0.827371,0.779234,0.962666,0.195188,0.710684,0.194686,0.790073,0.97744,0.490736,0.0372734,0.499478,0.823271,0.529657,0.446878,0.239281,0.245374,0.592005,0.138453,0.0334529,0.402755,0.910056,0.952165,0.0410882,0.898488,0.083555,0.426032,0.456325,0.782674,0.660502,0.676248,0.579524,0.202836,0.416857,0.128157,0.612686,0.594578,0.44041,0.316763,0.826923,0.461475,0.49676,0.414496,0.60905,0.686904,0.52098,0.51162,0.47971,0.631503,0.93444,0.114337,0.933381,0.687823,0.327942,0.890316,0.129759,0.206268,0.147965,0.679948,0.836313,0.913745,0.892096,0.202442,0.269461,0.138905,0.104549,0.11146,0.956901,0.330017,0.499429,0.234778,0.662108,0.942865,0.447837,0.124687,0.29515,0.360539,0.71673,0.150446,0.521459,0.712019,0.635668,0.0269869,0.970965,0.883278,0.48338,0.592373,0.985752,0.0695971,0.871229,0.468738,0.353401,0.842265,0.818917,0.377494,0.253151,0.00265801,0.123959,0.928991,0.870373,0.792919,0.694739,0.0702169,0.480465,0.104675,0.422779,0.110656,0.186071,0.228347,0.0123954,0.3971,0.525397,0.152606,0.561312,0.427637,0.712888,0.435942,0.0319219,0.971611,0.159884,0.788155,0.912889,0.664027,0.272055,0.30126,0.564477,0.316628,0.316732,0.99293,0.825053,0.740403,0.0171057,0.578835,0.784279,0.762092,0.499708,0.652215,0.393261,0.661042,0.429481,0.0130466,0.224677,0.479947,0.337891,0.931046,0.126015,0.728058,0.228889,0.197445,0.0746898,0.439789,0.105482,0.325283,0.892342,0.092564,0.360567,0.00784808,0.151231,0.983707,0.961221,0.0333864,0.280431,0.564141,0.401694,0.599209,0.208453,0.169757,0.621199,0.311061,0.479435,0.433245,0.693005,0.271266,0.259642,0.891222,0.0435702,0.301494,0.391283,0.880087,0.426029,0.858974,0.415307,0.0480168,0.728241,0.43135,0.277757,0.0204286,0.0506859,0.0853713,0.898904,0.505971,0.0983407,0.00505805,0.877074,0.517456,0.992127,0.974067,0.460626,0.723432,0.242461,0.386263,0.486906,0.707051,0.281794,0.942222,0.518911,0.930967,0.676212,0.417349,0.874696,0.763277,0.224912,0.783264,0.822755,0.756395,0.261091,0.553476,0.739515,0.27388,0.979792,0.725921,0.0233084,0.74775,0.743271,0.777569,0.70928,0.225105,0.896665,0.335672,0.0818592,0.583283,0.108284,0.934692,0.915316,0.830064,0.310977,0.0979742,0.45504,0.381132,0.940217,0.951075,0.300996,0.242557,0.457873,0.433312,0.826756,0.323089,0.275159,0.932981,0.0122217,0.17031,0.367104,0.916402,0.491454,0.0861605,0.244448,0.672787,0.509592,0.0804921,0.497297,0.581572,0.302866,0.44801,0.0509235,0.205101,0.864032,0.219387,0.649229,0.482221,0.0413759,0.520812,0.860147,0.0577275,0.85953,0.455221,0.190588,0.836768,0.0686551,0.789161,0.883303,0.753429,0.881492,0.14085,0.249809,0.321399,0.47824,0.5152,0.175993,0.62037,0.136769,0.845264,0.648172,0.443547,0.390591,0.710879,0.52849,0.241846,0.738441,0.506236,0.624804,0.943951,0.426633,0.877639,0.818923,0.132062,0.460717,0.276977,0.570613,0.634768,0.899489,0.250851,0.302814,0.828097,0.92914,0.708857,0.59865,0.732073,0.165207,0.515483,0.861628,0.00850588,0.232749,0.945766,0.391709,0.152331,0.69086,0.37368,0.562989,0.53973,0.533777,0.505064,0.288681,0.0392734,0.916769,0.774229,0.403154,0.796751,0.964309,0.110362,0.479384,0.252082,0.210994,0.761015,0.926219,0.945198,0.172015,0.193139,0.230171,0.705308,0.450389,0.746898,0.765547,0.87259,0.647772,0.914594,0.0911616,0.119661,0.563054,0.626451,0.705027,0.659147,0.66116,0.601602,0.318121,0.0423007,0.0777811,0.251459,0.323525,0.667895,0.825469,0.853648,0.973834,0.288925,0.556447,0.450193,0.963042,0.91789,0.242817,0.277033,0.0373597,0.545252,0.393817,0.260772,0.315733,0.92726,0.266186,0.665181,0.605501,0.125887,0.152764,0.460128,0.061436,0.992111,0.866062,0.70394,0.66143,0.0565485,0.568772,0.338465,0.588623,0.0476667,0.105546,0.630475,0.179077,0.843367,0.846884,0.922062,0.667295,0.36866,0.0547327,0.41917,0.629844,0.210295,0.553947,0.866553,0.432716,0.80508,0.559351,0.345518,0.398985,0.392291,0.720222,0.651137,0.345725,0.822236,0.413529,0.558474,0.221481,0.471422,0.166321,0.203438,0.0225607,0.777809,0.823217,0.683038,0.830473,0.797579,0.351737,0.581833,0.210007,0.634545,0.601639,0.392297,0.23044,0.964689,0.726764,0.270613,0.882212,0.459983,0.86797,0.33453,0.517962,0.0880554,0.536862,0.980959,0.020948,0.770719,0.996706,0.907935,0.855103,0.501357,0.731904,0.342379,0.541439,0.964352,0.683558,0.435023,0.477045,0.901038,0.638909,0.862665,0.165635,0.789355,0.436493,0.642611,0.523222,0.231384,0.234033,0.692278,0.111616,0.95753,0.520182,0.142991,0.592949,0.908567,0.548071,0.876844,0.654346,0.523152,0.139341,0.650268,0.729867,0.294541,0.519333,0.249607,0.792413,0.802076,0.386527,0.488151,0.902876,0.079528,0.532243,0.922495,0.972598,0.186612,0.502148,0.753082,0.225332,0.762609,0.365609,0.485063,0.198498,0.401102,0.167899,0.861495,0.766153,0.758048,0.256825,0.318467,0.226168,0.976031,0.466668,0.424068,0.103086,0.210998,0.715854,0.172083,0.447012,0.559423,0.693803,0.512782,0.321464,0.429226,0.857177,0.67378,0.60225,0.742303,0.955118,0.536782,0.0318399,0.0954791,0.298575,0.665253,0.471486,0.195951,0.120958,0.458467,0.576414,0.375583,0.901954,0.69602,0.863488,0.876889,0.138098,0.250523,0.205936,0.15087,0.914512,0.683001,0.793129,0.418459,0.765937,0.746024,0.55013,0.211166,0.0271257,0.46246,0.944138,0.0467342,0.926494,0.778763,0.11139,0.228041,0.869021,0.946738,0.942542,0.31636,0.880404,0.891165,0.414413,0.957976,0.0356573,0.797067,0.605705,0.814672,0.708589,0.486353,0.259663,0.610683,0.956531,0.479879,0.0295746,0.688311,0.894558,0.417446,0.655662,0.807691,0.72612,0.805799,0.0441056,0.584987,0.382726,0.48297,0.933983,0.659915,0.580422,0.565212,0.0840906,0.997249,0.708288,0.818261,0.774943,0.10608,0.499761,0.154,0.117866,0.761687,0.103117,0.795301,0.950085,0.35329,0.843798,0.716503,0.49327,0.283867,0.768764,0.573282,0.760898,0.031311,0.411602,0.370073,0.477862,0.0627223,0.0612707,0.734717,0.571634,0.759218,0.166237,0.0299444,0.279155,0.878446,0.0702929,0.907679,0.305846,0.279019,0.356521,0.491804,0.484805,0.318846,0.495984,0.756347,0.821184,0.503743,0.420787,0.586415,0.936323,0.784254,0.812824,0.823709,0.509571,0.586005,0.358282,0.482133,0.599904,0.640876,0.902552,0.543957,0.111162,0.267109,0.0807058,0.591221,0.564016,0.330587,0.510997,0.82809,0.857541,0.11742,0.0408727,0.626631,0.238248,0.0476094,0.622132,0.998592,0.456927,0.441079,0.441347,0.755509,0.52564,0.852907,0.615136,0.689581,0.894858,0.605518,0.69236,0.320664,0.494796,0.564799,0.0749385,0.413062,0.629365,0.367327,0.680927,0.0567348,0.308424,0.535271,0.968846,0.910161,0.249503,0.476694,0.145174,0.648571,0.193747,0.845416,0.127233,0.305034,0.60631,0.552395,0.150141,0.194899,0.69057,0.903859,0.178123,0.786633,0.216621,0.727985,0.308138,0.547339,0.881652,0.440087,0.642053,0.664155,0.0113167,0.562756,0.693027,0.946687,0.41786,0.624,0.0291851,0.141901,0.964051,0.289509,0.194488,0.347967,0.818522,0.102459,0.685592,0.256334,0.449481,0.0926659,0.574891,0.030502,0.110056,0.147287,0.105108,0.666765,0.120762,0.906085,0.00745636,0.630124,0.817034,0.376967,0.799448,0.0691333,0.142057,0.179988,0.0373484,0.778018,0.309332,0.496341,0.450772,0.992166,0.210414,0.0973461,0.319852,0.854129,0.540309,0.436649,0.516471,0.477745,0.066778,0.975546,0.282737,0.700657,0.971263,0.311287,0.73289,0.0866908,0.237922,0.296227,0.156144,0.820622,0.470478,0.771649,0.47295,0.286526,0.942735,0.767468,0.38786,0.0376755,0.0363187,0.701861,0.922036,0.137516,0.0456576,0.914269,0.797574,0.813155,0.0629018,0.191843,0.755245,0.219109,0.225291,0.232322,0.433733,0.299973,0.782799,0.710549,0.8117,0.911388,0.122414,0.348361,0.482566,0.677751,0.51152,0.724898,0.518392,0.872945,0.347789,0.321209,0.918517,0.864011,0.16636,0.287536,0.282743,0.389422,0.304091,0.267988,0.593333,0.145359,0.77734,0.842923,0.0147605,0.648177,0.194418,0.784828,0.606912,0.547827,0.191768,0.198916,0.887488,0.482558,0.806074,0.650018,0.481825,0.799315,0.85658,0.703012,0.317056,0.376828,0.422666,0.839551,0.283993,0.532928,0.105966,0.0551605,0.319104,0.0255283,0.148781,0.319338,0.338269,0.787224,0.825031,0.878017,0.97919,0.635703,0.417384,0.456584,0.415191,0.367764,0.518432,0.983161,0.936119,0.241006,0.360678,0.78103,0.888896,0.657666,0.0393087,0.391076,0.586172,0.686198,0.989844,0.983105,0.349406,0.555411,0.533062,0.519336,0.239183,0.496838,0.803468,0.849743,0.602913,0.601431,0.170344,0.014482,0.614375,0.173394,0.762006,0.269765,0.551172,0.546892,0.0931256,0.650432,0.865342,0.873194,0.668939,0.0887288,0.165975,0.741576,0.762953,0.852337,0.766877,0.777608,0.391698,0.551021,0.0182344,0.244892,0.17963,0.405531,0.257077,0.0312098,0.826417,0.53997,0.71202,0.68377,0.554324,|0.443651,0.84815,0.361646,0.490869,0.0688366,0.446806,0.868571,0.348307,0.0967645,0.0539834,0.532799,0.868159,0.872783,0.36136,0.598405,0.968247,0.813729,0.212065,0.406865,0.680532,0.0586482,0.240451,0.934011,0.981644,0.819256,0.829691,0.376621,0.894436,0.497124,0.0541893,0.375213,0.660192,0.518179,0.654996,0.0498607,0.948138,0.391612,0.793375,0.422768,0.451155,0.676572,0.515748,0.451353,0.331205,0.935301,0.179985,0.800023,0.534877,0.629631,0.193253,0.687796,0.986496,0.974412,0.145007,0.333197,0.850294,0.122144,0.502584,0.733985,0.899623,0.577015,0.889961,0.710985,0.347936,0.348233,0.205765,0.940624,0.546286,0.641587,0.962637,0.609244,0.712911,0.543059,0.467024,0.34611,0.61073,0.155984,0.555027,0.226069,0.216806,0.696355,0.697475,0.57761,0.240969,0.0174004,0.377852,0.508019,0.89109,0.222908,0.517699,0.513081,0.697595,0.605368,0.866256,0.32785,0.950325,0.966564,0.329871,0.77979,0.0536941,0.0815096,0.736087,0.702166,0.579504,0.753888,0.000370085,0.213182,0.0668427,0.588778,0.238821,0.497689,0.107378,0.981493,0.184799,0.269166,0.363676,0.2074,0.132634,0.669928,0.567624,0.965052,0.735371,0.574906,0.721195,0.0349627,0.034928,0.59128,0.433969,0.910416,0.719248,0.389216,0.561716,0.773939,0.160366,0.296555,0.502563,0.734652,0.600743,0.964607,0.57448,0.293621,0.716281,0.0660349,0.720897,0.291234,0.677495,0.15776,0.970375,0.74939,0.906521,0.00732654,0.763443,0.176674,0.891117,0.382855,0.737195,0.0238765,0.971454,0.778709,0.538866,0.716978,0.198871,0.809406,0.362876,0.961981,0.229954,0.604221,0.615658,0.336995,0.367635,0.0333458,0.117156,0.401394,0.925593,0.886707,0.870575,0.594054,0.730219,0.452454,0.137885,0.582053,0.224883,0.468501,0.574305,0.601651,0.594029,0.171483,0.3951,0.923883,0.350797,0.228958,0.34807,0.424559,0.456449,0.616817,0.308949,0.909409,0.0558785,0.649048,0.743362,0.957658,0.742501,0.115121,0.264811,0.426193,0.754138,0.0756898,0.353178,0.135793,0.630893,0.224841,0.845664,0.79292,0.104278,0.649639,0.933357,0.648109,0.257446,0.0917,0.538936,0.131574,0.891906,0.290525,0.462843,0.119572,0.475336,0.829772,0.623535,0.287893,0.943687,0.144129,0.342067,0.150172,0.201425,0.185765,0.768477,0.461794,0.197313,0.87923,0.0333476,0.500772,0.535205,0.84608,0.929788,0.950212,0.943187,0.746563,0.244772,0.212914,0.648299,0.611946,0.367568,0.171554,0.464994,0.948442,0.0905693,0.613404,0.523448,0.918895,0.164425,0.429892,0.542068,0.30556,0.484314,0.821221,0.898136,0.527365,0.325123,0.814814,0.808798,0.892388,0.108506,0.581314,0.887236,0.711097,0.467286,0.0514596,0.0483562,0.697289,0.453502,0.317342,0.0613133,0.430709,0.176561,0.29025,0.481398,0.822498,0.891221,0.688428,0.767768,0.911784,0.635448,0.569414,0.901487,0.639294,0.47658,0.433821,0.806059,0.327069,0.449174,0.69559,0.483664,0.348264,0.563756,0.00610685,0.598312,0.0275223,0.975646,0.587197,0.15863,0.608922,0.0949845,0.245885,0.580032,0.348662,0.977556,0.982187,0.0926491,0.460949,0.361658,0.481409,0.709552,0.116294,0.2891,0.157033,0.944164,0.890435,0.785386,0.428849,0.381698,0.493072,0.482508,0.946451,0.469208,0.793064,0.656605,0.88649,0.345765,0.406398,0.668709,0.437107,0.129128,0.585332,0.345978,0.387019,0.714597,0.764803,0.482883,0.649553,0.525185,0.888249,0.736033,0.979689,0.594919,0.39479,0.360243,0.107409,0.559382,0.473373,0.936189,0.808077,0.480449,0.753034,0.429367,0.209567,0.110854,0.978204,0.0378664,0.0229822,0.559398,0.854739,0.240859,0.84634,0.201839,0.0557781,0.22307,0.697318,0.762782,0.355052,0.178202,0.11927,0.897896,0.0928694,0.317613,0.939406,0.995488,0.114274,0.98524,0.00119889,0.49131,0.210531,0.393636,0.376861,0.103348,0.771681,0.104152,0.765991,0.620654,0.00642872,0.983724,0.0379951,0.564378,0.348752,0.9135,0.684331,0.362205,0.59707,0.575218,0.521154,0.561465,0.369667,0.363704,0.395936,0.220014,0.0311487,0.0920573,0.17005,0.319131,0.926765,0.706637,0.261595,0.163488,0.786882,0.12499,0.897325,0.375943,0.183361,0.0143377,0.433956,0.467359,0.769181,0.0762545,0.146293,0.79395,0.352811,0.0343646,0.432813,0.443231,0.482305,0.456316,0.376291,0.869026,0.727471,0.359985,0.415875,0.302284,0.862506,0.764829,0.648881,0.51636,0.646447,0.788123,0.60334,0.822661,0.308002,0.53976,0.24979,0.326622,0.910913,0.732404,0.353337,0.359069,0.73496,0.835845,0.275581,0.520291,0.760355,0.0802987,0.455953,0.791106,0.333964,0.256694,0.641188,0.544049,0.419059,0.886047,0.803007,0.786497,0.363189,0.126059,0.107632,0.561773,0.215177,0.993586,0.920035,0.669773,0.0888901,0.403035,0.650056,0.00624156,0.0413902,0.379913,0.848987,0.260214,0.233737,0.661197,0.657505,0.476902,0.500552,0.477465,0.53789,0.706893,0.95335,0.732481,0.749515,0.667892,0.0363196,0.385238,0.718609,0.878808,0.346942,0.53697,0.935342,0.357941,0.241282,0.0420826,0.13453,0.796999,0.165505,0.665935,0.663154,0.441746,0.824445,0.628271,0.969751,0.0188559,0.368915,0.979785,0.704903,0.420796,0.174212,0.926306,0.323486,0.827141,0.935396,0.113431,0.895567,0.0883292,0.571205,0.882976,0.271419,0.46316,0.871232,0.191536,0.706204,0.907176,0.827414,0.0171894,0.633385,0.326825,0.620109,0.00845468,0.592049,0.759596,0.81622,0.664276,0.758412,0.944322,0.545218,0.827644,0.487828,0.680521,0.393234,0.178424,0.758326,0.551848,0.348591,0.600247,0.565015,0.27706,0.126782,0.210039,0.712012,0.893742,0.728533,0.51708,0.515297,0.884817,0.603938,0.900196,0.728251,0.719689,0.720683,0.965741,0.903552,0.239465,0.725237,0.996733,0.991322,0.161023,0.708994,0.29666,0.525571,0.0898967,0.138252,0.105512,0.0208685,0.284539,0.248837,0.625855,0.953354,0.258956,0.347287,0.556308,0.744168,0.0735427,0.43423,0.430333,0.584699,0.254353,0.722356,0.127271,0.0649545,0.423554,0.27376,0.843978,0.770731,0.264635,0.702773,0.662733,0.728221,0.0394327,0.831915,0.308305,0.32784,0.0419661,0.931649,0.789219,0.30071,0.768283,0.566553,0.830057,0.0395071,0.959642,0.439,0.28347,0.546455,0.924428,0.363485,0.805204,0.00185484,0.67395,0.347858,0.950786,0.870325,0.809746,0.992003,0.260799,0.181041,0.387324,0.209187,0.0119327,0.349304,0.438168,0.767773,0.392149,0.696054,0.217772,0.0406929,0.36861,0.73446,0.422728,0.00880873,0.957723,0.555354,0.559912,0.551737,0.441006,0.927199,0.955725,0.725241,0.581443,0.556625,0.271476,0.235734,0.576624,0.727927,0.409862,0.403051,0.518432,0.421581,0.0863724,0.506466,0.742934,0.111235,0.150091,0.494942,0.286092,0.303155,0.685543,0.610442,0.538782,0.569416,0.22318,0.601127,0.334521,0.669005,0.322545,0.704389,0.325516,0.718289,0.134336,0.362962,0.0932149,0.414993,0.0105286,0.806385,0.882524,0.444012,0.595438,0.75543,0.0216815,0.708625,0.963029,0.169384,0.231134,0.660296,0.475373,0.800691,0.0315126,0.520372,0.518469,0.889545,0.205577,0.678279,0.200588,0.973189,0.525006,0.216417,0.273327,0.755706,0.829353,0.734267,0.361413,0.607178,0.707016,0.202207,0.383516,0.417738,0.647762,0.566039,0.500129,0.199361,0.26861,0.253238,0.848618,0.341536,0.0993975,0.0216818,0.246938,0.897567,0.875477,0.330144,0.320162,0.477299,0.607377,0.911447,0.142941,0.333387,0.125483,0.943304,0.18221,0.950257,0.795559,0.66884,0.77697,0.0797992,0.740922,0.870288,0.944468,0.381587,0.547798,0.512764,0.58585,0.292638,0.134893,0.0147895,0.0269154,0.887855,0.931438,0.786962,0.901306,0.919144,0.943497,0.89082,0.802755,0.968267,0.426198,0.0850386,0.334256,0.516765,0.884897,0.676708,0.665229,0.487428,0.299375,0.98565,0.728818,0.217233,0.394558,0.501067,0.667134,0.154836,0.202068,0.972735,0.529046,0.307836,0.193514,0.735411,0.363948,0.0542496,0.952997,0.608208,0.644332,0.178445,0.8213,0.425185,0.0740266,0.353944,0.646612,0.0761951,0.973296,0.749227,0.747996,0.241214,0.914579,0.376664,0.530367,0.965981,0.164194,0.145178,0.409183,0.158231,0.216915,0.38734,0.0543047,0.144061,0.368995,0.234108,0.739641,0.313936,0.579894,0.849905,0.672358,0.648231,0.36532,0.688436,0.29919,0.624839,0.276615,0.192669,0.138869,0.329091,0.637022,0.309983,0.241088,0.0550128,0.122357,0.904511,0.795248,0.328906,0.43226,0.515946,0.47924,0.176219,0.683311,0.424786,0.798624,0.157464,0.0421574,0.952923,0.502188,0.895697,0.92741,0.262365,0.55644,0.841286,0.222812,0.816811,0.962861,0.19658,0.74458,0.120429,0.570403,0.2585,0.981101,0.886769,0.46539,0.562652,0.0220029,0.914545,0.809587,0.620458,0.895759,0.209981,0.662203,0.30536,0.401938,0.739417,0.122668,0.0932536,0.913354,0.3678,0.734781,0.273232,0.978452,0.984777,0.77627,0.857746,0.308903,0.771384,0.64615,0.691293,0.413408,0.836116,0.313655,0.092691,0.080483,0.299124,0.325116,0.365099,0.768637,0.834333,0.452069,0.171737,0.171066,0.118916,0.237502,0.293159,0.829166,0.390754,0.773842,0.0379812,0.194288,0.100439,0.420385,0.791982,0.775834,0.463874,0.288693,0.794591,0.943753,0.339266,0.7156,0.341312,0.657384,0.193637,0.750321,0.575,0.418777,0.572494,0.0734597,0.582316,0.662191,0.657809,0.838062,0.716604,0.287691,0.68726,0.549467,0.533309,0.654828,0.0409952,0.875681,0.600502,0.436464,0.816773,0.177658,0.963587,0.833364,0.0507118,0.0351102,0.715724,0.370398,0.077087,0.871195,0.751899,0.474273,0.668085,0.89545,0.96342,0.445905,0.679375,0.0165939,0.380896,0.160173,0.865958,0.60682,0.801776,0.0634553,0.545477,0.395557,0.658394,0.7267,0.895557,0.214847,0.219472,0.34066,0.284504,0.346833,|0.834694,0.282287,0.324345,0.583864,0.877102,0.458253,0.735123,0.398752,0.821756,0.657086,0.25568,0.453247,0.841383,0.455887,0.014617,0.597647,0.6932,0.519113,0.597564,0.309043,0.264666,0.384235,0.551149,0.0581979,0.740308,0.38714,0.250982,0.785098,0.647892,0.227716,0.758385,0.248821,0.472145,0.0717741,0.478009,0.834231,0.742554,0.0608697,0.842484,0.640743,0.309894,0.618778,0.398837,0.0653409,0.553913,0.853987,0.123533,0.378579,0.222635,0.337553,0.982021,0.0570757,0.951141,0.353004,0.655655,0.0314555,0.106881,0.536858,0.525125,0.16649,0.225529,0.345562,0.85976,0.858821,0.456852,0.576586,0.426617,0.271456,0.447266,0.645169,0.671425,0.980208,0.747237,0.370497,0.796473,0.595288,0.289227,0.775079,0.280765,0.915867,0.64432,0.585374,0.0736638,0.51226,0.282534,0.785354,0.571867,0.607771,0.975095,0.127461,0.0981779,0.905589,0.593262,0.575766,0.366985,0.723162,0.912594,0.733302,0.874853,0.935023,0.237558,0.776569,0.298392,0.83058,0.0230346,0.874195,0.846952,0.595291,0.603111,0.151601,0.812554,0.455546,0.329338,0.709676,0.409846,0.744681,0.200038,0.704798,0.0920232,0.501323,0.315723,0.419364,0.770704,0.00595123,0.996478,0.805531,0.404999,0.697832,0.494685,0.837643,0.902098,0.596625,0.153654,0.923896,0.331868,0.0281962,0.790788,0.175114,0.428116,0.736945,0.240099,0.208001,0.635241,0.0714829,0.544551,0.152979,0.0264296,0.991593,0.217146,0.834053,0.925537,0.226154,0.97995,0.734656,0.968235,0.452419,0.380469,0.67358,0.171681,0.561925,0.0788841,0.060948,0.398844,0.394168,0.64376,0.0175669,0.829529,0.920927,0.337984,0.480676,0.101542,0.987262,0.476638,0.316042,0.423103,0.5678,0.966239,0.200262,0.523305,0.94796,0.175142,0.969808,0.793607,0.0111654,0.0427645,0.025016,0.242392,0.270312,0.997153,0.260449,0.304305,0.165516,0.761793,0.428971,0.318747,0.607866,0.779616,0.377416,0.0229121,0.321948,0.403844,0.81602,0.12076,0.339173,0.0802976,0.689304,0.844226,0.821708,0.96792,0.578777,0.271699,0.245611,0.981226,0.344532,0.080604,0.774232,0.901856,0.990207,0.789991,0.0494099,0.860181,0.0184258,0.836054,0.335365,0.0828002,0.576633,0.92169,0.630238,0.662394,0.170002,0.459911,0.14432,0.18205,0.0313936,0.296629,0.727863,0.0631513,0.909826,0.784322,0.126088,0.17782,0.969751,0.203796,0.483883,0.855849,0.581846,0.817989,0.823875,0.43912,0.690488,0.607382,0.753756,0.113057,0.236034,0.652098,0.237645,0.841703,0.551241,0.0404059,0.230461,0.233737,0.49678,0.617914,0.738466,0.329439,0.835679,0.519485,0.958444,0.814969,0.473517,0.265283,0.0848071,0.496104,0.433062,0.928493,0.570107,0.697157,0.0369627,0.353876,0.755167,0.95961,0.685019,0.505937,0.120059,0.396409,0.520989,0.56354,0.108751,0.500545,0.911224,0.338246,0.501942,0.690175,0.188864,0.701208,0.577098,0.427183,0.486624,0.532258,0.974673,0.135196,0.748202,0.240391,0.447738,0.728369,0.405763,0.468264,0.811179,0.747457,0.232281,0.131549,0.668173,0.704066,0.910371,0.856026,0.42353,0.174294,0.167219,0.65965,0.0252506,0.28404,0.741262,0.114009,0.894424,0.36991,0.426594,0.274612,0.822176,0.936767,0.347763,0.736375,0.0834216,0.122412,0.284725,0.863282,0.499127,0.837413,0.886496,0.765148,0.347208,0.646084,0.0623058,0.105293,0.0648032,0.406265,0.761796,0.171731,0.255385,0.43774,0.614089,0.839192,0.36667,0.661536,0.979657,0.524955,0.558173,0.782303,0.54579,0.976968,0.89436,0.684895,0.610481,0.182402,0.904371,0.264698,0.299611,0.620407,0.81945,0.625634,0.00136572,0.921577,0.328873,0.387616,0.868433,0.342666,0.249147,0.167475,0.380888,0.985108,0.0655173,0.698744,0.981425,0.590597,0.039216,0.193564,0.690443,0.255753,0.591534,0.495566,0.153565,0.225115,0.693602,0.684958,0.631665,0.644655,0.452285,0.586952,0.130282,0.431142,0.18227,0.437328,0.27579,0.995597,0.205581,0.0156505,0.764921,0.0159605,0.13981,0.438322,0.0357222,0.31896,0.750384,0.634102,0.797803,0.959528,0.594115,0.794202,0.909922,0.360254,0.692206,0.873675,0.298242,0.535333,0.0103282,0.339097,0.53476,0.875539,0.926567,0.199479,0.317782,0.148562,0.384097,0.471656,0.309092,0.161165,0.825903,0.760182,0.984363,0.514302,0.441731,0.0294356,0.630091,0.590147,0.378367,0.0424973,0.275616,0.847324,0.164399,0.549982,0.322894,0.401504,0.488903,0.907776,0.405438,0.647509,0.934361,0.377629,0.0245712,0.159427,0.657583,0.438869,0.692763,0.318149,0.648552,0.0815168,0.472281,0.667645,0.616545,0.732701,0.291936,0.97811,0.390381,0.808423,0.347648,0.301839,0.624276,0.942528,0.351736,0.0135034,0.990537,0.937673,0.547795,0.58439,0.719854,0.663551,0.880879,0.268401,0.477736,0.711714,0.379748,0.390798,0.0634235,0.524716,0.178398,0.241556,0.664111,0.680113,0.377987,0.580814,0.485202,0.164997,0.252506,0.796116,0.524983,0.00633472,0.682769,0.12611,0.418946,0.335294,0.0209916,0.154048,0.794582,0.628223,0.864649,0.0322102,0.555406,0.0906065,0.0333456,0.0364296,0.889856,0.913023,0.518178,0.22537,0.290115,0.508578,0.816642,0.295614,0.140162,0.300012,0.349928,0.402439,0.274766,0.0913723,0.711037,0.599341,0.737584,0.0190409,0.648345,0.589925,0.612184,0.89302,0.339583,0.355534,0.276007,0.730798,0.428794,0.577808,0.25168,0.479358,0.214005,0.823888,0.25778,0.791632,0.509255,0.419262,0.499665,0.202456,0.803133,0.779594,0.800877,0.227881,0.534689,0.396376,0.311703,0.277307,0.579129,0.189233,0.391487,0.399701,0.236365,0.605897,0.706052,0.574178,0.0756023,0.615605,0.395018,0.918409,0.825959,0.411695,0.841153,0.108663,0.804196,0.304091,0.874862,0.468427,0.209366,0.427107,0.825906,0.315169,0.617694,0.846906,0.523935,0.193104,0.701734,0.462011,0.144041,0.549722,0.297359,0.509258,0.459103,0.657454,0.50716,0.00668168,0.116541,0.000340521,0.843501,0.261857,0.170166,0.618622,0.292649,0.663329,0.857526,0.21197,0.975127,0.0193619,0.433506,0.297737,0.240939,0.539355,0.166142,0.0740035,0.958331,0.784821,0.317772,0.803406,0.31286,0.754771,0.360275,0.452189,0.897407,0.357121,0.521642,0.472926,0.611963,0.594932,0.218188,0.602891,0.329962,0.590275,0.115009,0.312826,0.210431,0.563729,0.162208,0.464186,0.808673,0.737982,0.997548,0.928873,0.336467,0.0812923,0.117914,0.792021,0.05068,0.18579,0.584296,0.911217,0.341181,0.337378,0.0925488,0.963227,0.711159,0.105373,0.0822728,0.709322,0.216795,0.471639,0.775628,0.258058,0.424379,0.127283,0.761624,0.843731,0.37082,0.584838,0.806992,0.812703,0.660847,0.366641,0.593807,0.0297648,0.653836,0.652542,0.913652,0.610387,0.527352,0.787777,0.252114,0.412354,0.348636,0.0701498,0.0443023,0.441746,0.769382,0.32747,0.400438,0.725,0.692762,0.835272,0.50065,0.343169,0.558715,0.976724,0.603083,0.463961,0.581852,0.644352,0.181916,0.596501,0.615774,0.0930997,0.297406,0.991107,0.185389,0.148189,0.538642,0.0632825,0.974099,0.851832,0.711867,0.738333,0.611288,0.474497,0.128849,0.711579,0.6859,0.0355745,0.576858,0.949983,0.953808,0.396488,0.554739,0.854909,0.97891,0.698415,0.866506,0.781938,0.990641,0.93197,0.441636,0.484488,0.293006,0.263024,0.474375,0.144398,0.796487,0.282396,0.0950413,0.0219327,0.498154,0.256707,0.765985,0.250552,0.257889,0.393308,0.62972,0.997303,0.365623,0.192049,0.370886,0.983087,0.376999,0.876037,0.254656,0.501289,0.719905,0.994845,0.912778,0.324197,0.9526,0.724686,0.115304,0.308248,0.736338,0.264933,0.65974,0.425231,0.45393,0.315534,0.952221,0.0259522,0.0578719,0.348661,0.814606,0.118987,0.697467,0.993504,0.899817,0.42932,0.546053,0.968745,0.177576,0.848126,0.212058,0.330544,0.6162,0.867971,0.083802,0.349282,0.456117,0.313184,0.316072,0.0715143,0.130107,0.826537,0.830376,0.630431,0.725989,0.504214,0.721305,0.322047,0.155728,0.671547,0.694746,0.772952,0.639491,0.555055,0.648491,0.970312,0.0555897,0.494461,0.0273158,0.313108,0.544525,0.958437,0.13444,0.109033,0.560783,0.820059,0.442608,0.119813,0.236615,0.263117,0.843812,0.775805,0.3948,0.271612,0.969508,0.575681,0.610935,0.180936,0.396765,0.15464,0.218516,0.0646967,0.749237,0.238469,0.980215,0.917572,0.0894542,0.999858,0.794087,0.861834,0.277673,0.854019,0.594365,0.30636,0.833177,0.910432,0.293432,0.429285,0.538662,0.614039,0.962813,0.135937,0.896342,0.957697,0.684144,0.348769,0.414921,0.143686,0.346696,0.882114,0.607324,0.162147,0.920524,0.97131,0.0182731,0.641304,0.546909,0.641112,0.731969,0.547474,0.102505,0.226609,0.188782,0.413558,0.75773,0.923708,0.100344,0.0600772,0.839904,0.58067,0.758769,0.110978,0.0551048,0.405399,0.914266,0.00759846,0.0929263,0.58762,0.787012,0.221404,0.417259,0.00943106,0.318985,0.737777,0.0134614,0.538555,0.425756,0.848964,0.973653,0.357691,0.485228,0.160727,0.947101,0.956146,0.244318,0.872749,0.95162,0.249815,0.0648553,0.949168,0.453491,0.145441,0.350005,0.813418,0.431885,0.10631,0.175972,0.0194914,0.454813,0.50375,0.689652,0.0600465,0.458961,0.893137,0.73719,0.997697,0.41008,0.780088,0.566171,0.664299,0.263139,0.0390121,0.439396,0.683877,0.101126,0.97412,0.259914,0.754558,0.489612,0.502944,0.0265285,0.549643,0.145599,0.970234,0.665714,0.961502,0.941046,0.631264,0.194293,0.294342,0.536151,0.631768,0.930905,0.00207406,0.168527,0.472961,0.11563,0.800056,0.628972,0.553243,0.705843,0.593735,0.262957,0.00562149,0.47862,0.715068,0.385548,0.625491,0.917374,0.731445,0.814978,0.0106064,0.738342,0.32032,0.724204,0.077078,0.749378,0.806091,0.246877,0.713668,0.829428,0.427948,0.600864,0.784424,0.788078,0.242574,0.999782,|0.0737004,0.529785,0.740905,0.127609,0.847079,0.379965,0.519753,0.0539126,0.554166,0.588875,0.174471,0.656696,0.606613,0.977559,0.731039,0.714405,0.517267,0.846327,0.998238,0.882056,0.932606,0.110564,0.609289,0.208777,0.195226,0.617403,0.686292,0.789589,0.546804,0.380899,0.315144,0.202243,0.835563,0.233029,0.797431,0.830624,0.358169,0.823397,0.403219,0.690691,0.939635,0.89607,0.224956,0.325636,0.271933,0.938005,0.00220084,0.198422,0.861903,0.172237,0.177789,0.133116,0.104186,0.640117,0.761178,0.122369,0.444991,0.314655,0.455406,0.762322,0.242095,0.764932,0.75144,0.414741,0.2818,0.904869,0.0770822,0.670757,0.85641,0.00165129,0.287028,0.577354,0.0235865,0.858813,0.91013,0.619962,0.569572,0.423774,0.900162,0.324889,0.108067,0.295144,0.892681,0.132181,0.631893,0.474957,0.856698,0.264246,0.990219,0.465739,0.211899,0.818485,0.291647,0.892699,0.189143,0.402194,0.690889,0.0808361,0.144245,0.256175,0.499846,0.848546,0.278541,0.248335,0.612116,0.505261,0.168986,0.0737923,0.213466,0.326589,0.443124,0.250577,0.530978,0.0104492,0.707064,0.882429,0.850594,0.000785053,0.563754,0.304003,0.317192,0.342189,0.553253,0.326247,0.15299,0.0785607,0.273894,0.614765,0.0928265,0.518278,0.520251,0.605566,0.713753,0.945113,0.804233,0.797588,0.553851,0.772697,0.623555,0.58591,0.858179,0.556731,0.390566,0.981451,0.588127,0.998246,0.955276,0.940265,0.468383,0.918241,0.997883,0.848477,0.0986359,0.0433394,0.660599,0.247585,0.848271,0.416509,0.223737,0.938509,0.0117716,0.623818,0.0127813,0.310139,0.808489,0.295593,0.792392,0.731886,0.975921,0.823764,0.783376,0.786043,0.322276,0.74204,0.637796,0.183341,0.29525,0.683286,0.781616,0.933461,0.047528,0.682331,0.868461,0.680882,0.763017,0.739635,0.100889,0.884448,0.295242,0.59589,0.915616,0.596794,0.18561,0.569659,0.94611,0.801918,0.883363,0.0070715,0.992144,0.387203,0.713164,0.490477,0.176146,0.426001,0.823836,0.571029,0.284537,0.513926,0.301445,0.586239,0.911664,0.253525,0.206748,0.79702,0.899146,0.913127,0.398543,0.397562,0.781861,0.296047,0.418978,0.368906,0.447233,0.0951044,0.791058,0.293558,0.411088,0.189082,0.772902,0.453741,0.748708,0.543562,0.826823,0.879061,0.64621,0.18148,0.43085,0.783011,0.164548,0.986063,0.655019,0.0493156,0.579611,0.097578,0.397053,0.315568,0.675325,0.518753,0.655691,0.270101,0.861873,0.876712,0.754122,0.0920292,0.427502,0.685187,0.00450999,0.710211,0.588377,0.835152,0.232132,0.879516,0.0286622,0.313131,0.666721,0.258816,0.317328,0.761034,0.294605,0.637128,0.526201,0.0889912,0.208896,0.643245,0.106924,0.0749878,0.956616,0.695798,0.776954,0.724199,0.384803,0.926352,0.0608499,0.0868902,0.725589,0.00688571,0.872552,0.265928,0.121578,0.518104,0.401261,0.397622,0.46968,0.950497,0.375636,0.976399,0.220318,0.238206,0.614706,0.33103,0.746693,0.165085,0.377309,0.981464,0.356658,0.542367,0.520255,0.592396,0.314016,0.750729,0.0217535,0.597787,0.989224,0.700132,0.962797,0.780756,0.260106,0.503114,0.55361,0.066242,0.865377,0.422452,0.857208,0.829078,0.853907,0.662941,0.813045,0.0117797,0.191157,0.161526,0.916641,0.856558,0.781802,0.879416,0.411178,0.163142,0.880036,0.986741,0.396171,0.589658,0.4156,0.990454,0.631909,0.162092,0.81443,0.3251,0.521465,0.997493,0.351959,0.999166,0.886082,0.345411,0.0737329,0.0141014,0.588407,0.349412,0.872624,0.00669193,0.41156,0.385778,0.735729,0.235094,0.437941,0.883669,0.890368,0.782492,0.723947,0.136983,0.889217,0.309531,0.394126,0.508352,0.285444,0.149518,0.817279,0.275207,0.874606,0.586434,0.816355,0.876389,0.365654,0.799462,0.282912,0.234557,0.272612,0.556055,0.923321,0.513889,0.76849,0.156139,0.918815,0.16192,0.75701,0.142012,0.69029,0.242592,0.629915,0.172652,0.802855,0.535891,0.167717,0.356779,0.684813,0.285836,0.308879,0.807362,0.565244,0.166627,0.0248488,0.881572,0.652534,0.229798,0.209951,0.0787429,0.584704,0.224016,0.491514,0.0573698,0.359593,0.336332,0.173508,0.998033,0.274739,0.283574,0.501146,0.404646,0.299816,0.611115,0.0504881,0.241797,0.326918,0.504987,0.287317,0.108132,0.988898,0.734041,0.915704,0.207897,0.833327,0.380801,0.379088,0.833714,0.999347,0.232099,0.0307932,0.37393,0.843111,0.0506181,0.840184,0.281585,0.606045,0.292749,0.705643,0.7388,0.577088,0.453614,0.234859,0.622959,0.928698,0.60731,0.740066,0.0726342,0.218946,0.00784439,0.408018,0.971867,0.358395,0.356594,0.412587,0.621982,0.35661,0.847366,0.85204,0.401538,0.325321,0.630459,0.981304,0.969757,0.897112,0.577408,0.591688,0.0743501,0.983174,0.259915,0.437944,0.879466,0.214899,0.619403,0.837028,0.775415,0.871154,0.621466,0.22189,0.752249,0.174537,0.138038,0.536987,0.866858,0.192736,0.17368,0.105513,0.243899,0.551836,0.410914,0.587249,0.00057739,0.151612,0.858642,0.689398,0.118034,0.876244,0.128211,0.0621014,0.351822,0.470643,0.65369,0.138698,0.777105,0.982145,0.695994,0.183109,0.722993,0.830807,0.964805,0.320513,0.73864,0.845749,0.664987,0.645287,0.728489,0.771401,0.503386,0.978688,0.32133,0.204149,0.641835,0.876949,0.836684,0.477218,0.256276,0.00873959,0.3881,0.842396,0.144795,0.461147,0.130518,0.334628,0.737132,0.901647,0.0189359,0.86707,0.795309,0.549639,0.152507,0.578489,0.230785,0.810154,0.0047375,0.767457,0.164647,0.343217,0.472158,0.477481,0.0486231,0.183606,0.125842,0.10533,0.241758,0.923698,0.58135,0.118628,0.789654,0.0460136,0.160801,0.236382,0.230354,0.178333,0.469902,0.967137,0.583628,0.72436,0.302415,0.310996,0.244479,0.695476,0.266661,0.013368,0.28782,0.988712,0.934183,0.200987,0.667323,0.299915,0.604783,0.417905,0.486501,0.65346,0.032597,0.635657,0.705254,0.0146534,0.0737951,0.916518,0.935673,0.751016,0.999821,0.717375,0.790574,0.809615,0.0668246,0.199838,0.437376,0.78167,0.375212,0.505979,0.00294822,0.838728,0.733195,0.980905,0.724,0.863966,0.212644,0.350716,0.497652,0.159959,0.109368,0.758789,0.433765,0.37028,0.486134,0.0651149,0.0818028,0.468764,0.449241,0.315299,0.174322,0.570235,0.785204,0.0638168,0.0897508,0.893107,0.700229,0.452048,0.176325,0.171489,0.806658,0.488612,0.520402,0.991051,0.528562,0.273323,0.637415,0.961156,0.827577,0.734875,0.440183,0.472212,0.634461,0.0269139,0.442444,0.654895,0.414218,0.626908,0.0341287,0.848433,0.770119,0.861554,0.0879606,0.267111,0.614043,0.0606363,0.00885022,0.316088,0.594438,0.776113,0.390392,0.636055,0.781713,0.78535,0.764406,0.41105,0.816588,0.938303,0.567025,0.623691,0.524655,0.699153,0.443506,0.646839,0.400879,0.833226,0.0583968,0.84597,0.127394,0.660807,0.609695,0.108747,0.999376,0.246259,0.374991,0.541388,0.997475,0.9997,0.288306,0.938385,0.495205,0.0561683,0.380285,0.482852,0.102482,0.754866,0.584632,0.0318907,0.686401,0.608917,0.705193,0.516139,0.672671,0.071967,0.765223,0.109597,0.740876,0.964531,0.51353,0.578771,0.00125921,0.718987,0.163456,0.388084,0.895436,0.992357,0.902309,0.991063,0.565356,0.889111,0.382017,0.0394491,0.373114,0.609676,0.599494,0.826968,0.488526,0.401343,0.442193,0.499977,0.185034,0.19608,0.283913,0.666912,0.715867,0.551674,0.215236,0.437027,0.555571,0.543649,0.955429,0.34543,0.758459,0.0360487,0.215936,0.242729,0.361252,0.484725,0.698643,0.205814,0.436125,0.721741,0.530849,0.601814,0.119512,0.220279,0.506912,0.193727,0.729066,0.878585,0.690068,0.244281,0.290342,0.387129,0.855431,0.232292,0.943812,0.648369,0.993546,0.211626,0.0370802,0.600008,0.520324,0.379663,0.151389,0.383094,0.114522,0.818212,0.423217,0.880309,0.847796,0.271793,0.881806,0.00158125,0.823415,0.0710881,0.0711041,0.833756,0.439412,0.960297,0.673346,0.324397,0.0285982,0.934114,0.882956,0.0777301,0.210394,0.805288,0.698178,0.100903,0.921373,0.525693,0.512828,0.421424,0.62132,0.300863,0.070567,0.262129,0.063201,0.575383,0.971724,0.419644,0.721131,0.831099,0.0245944,0.486956,0.701151,0.440421,0.979117,0.273904,0.710625,0.111801,0.618045,0.496918,0.275017,0.174525,0.690547,0.189551,0.582962,0.558194,0.772782,0.35307,0.755152,0.908432,0.228369,0.50167,0.511456,0.0108598,0.548928,0.0671502,0.0737714,0.873617,0.36304,0.789525,0.807242,0.239259,0.760818,0.843568,0.333266,0.153697,0.402307,0.813253,0.863233,0.348444,0.282652,0.190228,0.308939,0.191854,0.218582,0.646911,0.669522,0.282095,0.992253,0.248176,0.206292,0.265869,0.455173,0.730497,0.718819,0.608362,0.217672,0.709679,0.730436,0.0182795,0.0683668,0.832415,0.376408,0.187031,0.591644,0.911131,0.625645,0.865241,0.214746,0.84465,0.687114,0.798642,0.981601,0.104606,0.382515,0.197801,0.605514,0.0158578,0.827012,0.0697397,0.0236551,0.721201,0.812712,0.471992,0.196035,0.63552,0.780451,0.819173,0.202391,0.00915658,0.861634,0.202594,0.270893,0.414618,0.384504,0.173976,0.795984,0.52926,0.485385,0.0106617,0.0848665,0.655004,0.588947,0.290424,0.350519,0.258725,0.631358,0.479927,0.0109388,0.20746,0.595925,0.85201,0.434209,0.0895869,0.43987,0.964402,0.823016,0.473919,0.0186394,0.264734,0.497422,0.0296946,0.699512,0.951762,0.279774,0.722514,0.222211,0.221135,0.339428,0.286392,0.377595,0.98378,0.328613,0.203739,0.596036,0.989223,0.181093,0.56549,0.0796374,0.967142,0.173669,0.80228,0.158315,0.680582,0.0713441,0.243744,0.164364,0.882976,0.870395,0.559508,0.668308,0.691932,0.775461,0.386861,0.487702,0.866418,0.267706,0.526879,0.215917,0.289501,0.831537,0.160835,0.905394,0.0911872,0.243771,0.179764,0.0751228,0.132662,0.565814,0.665022,0.194003,|0.658144,0.0868757,0.606567,0.582561,0.91831,0.119336,0.28789,0.340718,0.362555,0.689246,0.203382,0.890608,0.364158,0.00253689,0.565377,0.409765,0.941331,0.413573,0.518947,0.00357068,0.374271,0.931309,0.736422,0.327478,0.113761,0.702473,0.201613,0.486095,0.202956,0.99491,0.712637,0.0671757,0.082449,0.380641,0.91076,0.815899,0.270441,0.493983,0.231868,0.058448,0.425488,0.813281,0.452765,0.836678,0.851534,0.932827,0.569758,0.820019,0.169307,0.252071,0.269923,0.758502,0.562058,0.164078,0.147866,0.409022,0.454939,0.387657,0.598024,0.381713,0.53309,0.417512,0.445356,0.212525,0.444868,0.010608,0.985983,0.0756767,0.448567,0.770597,0.307758,0.992729,0.616016,0.544705,0.257179,0.720018,0.132549,0.412424,0.308856,0.480631,0.125074,0.647925,0.0653589,0.843865,0.231388,0.699508,0.298864,0.362099,0.93527,0.166049,0.545478,0.920896,0.495542,0.131613,0.133033,0.029417,0.542631,0.533151,0.61455,0.613156,0.519796,0.14819,0.760677,0.647214,0.0935508,0.179591,0.0158399,0.271587,0.686546,0.0111694,0.148125,0.97093,0.0178102,0.600061,0.945815,0.707023,0.773278,0.552908,0.947207,0.0852576,0.108967,0.920879,0.711262,0.776362,0.353245,0.778536,0.967903,0.202053,0.64292,0.245029,0.414141,0.150155,0.0298553,0.739177,0.15472,0.96414,0.26386,0.278736,0.899616,0.77083,0.110016,0.985832,0.163467,0.527294,0.619023,0.842568,0.0898419,0.00572205,0.0703352,0.585817,0.0472296,0.514089,0.75205,0.365572,0.208208,0.975657,0.669779,0.69029,0.549208,0.89851,0.798107,0.0173433,0.544995,0.548474,0.472421,0.535234,0.902959,0.0481004,0.909179,0.534016,0.721965,0.945389,0.752303,0.504496,0.517896,0.114673,0.634932,0.565823,0.872037,0.825109,0.945492,0.130256,0.600525,0.994648,0.925099,0.190323,0.035832,0.594903,0.348595,0.415668,0.0575026,0.184847,0.402645,0.823229,0.177507,0.655341,0.948299,0.514736,0.556807,0.333597,0.893208,0.0473471,0.319237,0.75934,0.727625,0.0852219,0.528021,0.0587969,0.709395,0.471777,0.695715,0.781482,0.811371,0.428485,0.656133,0.759798,0.245605,0.786255,0.138741,0.333293,0.735431,0.811987,0.196679,0.751582,0.545733,0.0628901,0.0355396,0.327965,0.166084,0.598265,0.0977209,0.501908,0.720205,0.16903,0.694421,0.470679,0.280484,0.951533,0.28213,0.810111,0.546434,0.487803,0.899634,0.722714,0.0782089,0.662007,0.668058,0.148815,0.72149,0.163402,0.452816,0.683424,0.201446,0.0536363,0.670484,0.785532,0.493063,0.293896,0.221983,0.244576,0.499783,0.325608,0.686163,0.578251,0.183717,0.15362,0.446354,0.214517,0.445272,0.0873667,0.595202,0.603791,0.131329,0.426604,0.124243,0.722214,0.96267,0.502873,0.385635,0.104987,0.105853,0.556536,0.645147,0.996715,0.568405,0.66922,0.833957,0.692026,0.685885,0.0890366,0.953899,0.0199492,0.528651,0.822002,0.822667,0.625287,0.856093,0.415116,0.441041,0.190184,0.565639,0.118249,0.305619,0.605353,0.11266,0.373288,0.974059,0.0870013,0.535879,0.489488,0.0205406,0.504628,0.101244,0.579847,0.702437,0.0554569,0.599802,0.775682,0.863033,0.837085,0.819999,0.396345,0.32707,0.822528,0.126981,0.992227,0.365705,0.611867,0.0962722,0.157753,0.541634,0.686521,0.251267,0.701303,0.975043,0.353616,0.879351,0.549006,0.996851,0.75452,0.258412,0.50556,0.0379089,0.844964,0.721381,0.128181,0.947686,0.291323,0.631334,0.103037,0.940801,0.394582,0.0488481,0.0715031,0.719742,0.621596,0.728397,0.0631488,0.800331,0.970236,0.0278102,0.31828,0.362912,0.647195,0.180277,0.503143,0.301133,0.455904,0.599697,0.0333593,0.0911704,0.293784,0.305338,0.0883275,0.273099,0.368589,0.867043,0.880675,0.662508,0.615276,0.907053,0.401353,0.342037,0.207338,0.0732268,0.326896,0.453658,0.769982,0.891198,0.776425,0.626261,0.0987076,0.74439,0.383645,0.81723,0.643343,0.251002,0.0516226,0.989089,0.781873,0.482194,0.244511,0.591025,0.464461,0.813099,0.0226858,0.176378,0.211469,0.493536,0.227399,0.0471539,0.0112515,0.243527,0.973964,0.719895,0.404175,0.27122,0.848219,0.83573,0.0838566,0.15005,0.171305,0.202377,0.685168,0.109362,0.550133,0.224737,0.0059014,0.26122,0.824784,0.248124,0.142614,0.951888,0.847782,0.61665,0.188223,0.206938,0.114301,0.123068,0.32661,0.377198,0.783968,0.935467,0.403697,0.383697,0.386152,0.441679,0.823869,0.586075,0.387331,0.609246,0.187595,0.146313,0.458854,0.617986,0.336308,0.587484,0.602568,0.10126,0.847299,0.678143,0.106663,0.37191,0.890502,0.201387,0.0427982,0.917628,0.944185,0.742859,0.0713524,0.679387,0.179379,0.145937,0.683854,0.0901338,0.663356,0.763865,0.867585,0.240274,0.305205,0.248778,0.34431,0.909393,0.025095,0.331656,0.758344,0.0170951,0.0120752,0.313372,0.224693,0.0436258,0.723062,0.27551,0.509743,0.301168,0.300965,0.289832,0.139945,0.521229,0.123142,0.982754,0.0294299,0.553176,0.430055,0.593226,0.22339,0.765709,0.89633,0.779291,0.132559,0.642433,0.0728568,0.16436,0.653048,0.293358,0.157755,0.529961,0.871604,0.570648,0.444306,0.477414,0.898746,0.296797,0.0706028,0.450022,0.939694,0.220445,0.33138,0.328713,0.558496,0.609376,0.170636,0.471734,0.741593,0.0728784,0.95611,0.344272,0.211163,0.885607,0.805613,0.762143,0.708349,0.718131,0.929267,0.185556,0.0929036,0.365887,0.00592273,0.282746,0.885049,0.470437,0.63733,0.223332,0.829736,0.908903,0.9422,0.23757,0.756837,0.0532107,0.352642,0.860591,0.220048,0.45309,0.645102,0.559108,0.643235,0.804674,0.718824,0.473499,0.603668,0.654321,0.7374,0.013153,0.532938,0.602236,0.631842,0.720227,0.432373,0.341497,0.987612,0.862535,0.832235,0.39015,0.956439,0.00642401,0.380719,0.67597,0.505721,0.631113,0.917844,0.88815,0.0138362,0.310396,0.510803,0.611254,0.62987,0.377345,0.000548542,0.900186,0.447769,0.872819,0.106614,0.267235,0.848026,0.714381,0.721268,0.493035,0.558057,0.851724,0.242234,0.613767,0.514246,0.241862,0.0705392,0.4231,0.329262,0.138453,0.518204,0.424224,0.812035,0.07181,0.473661,0.44427,0.499324,0.888342,0.152232,0.196831,0.148513,0.869436,0.142905,0.912683,0.00748289,0.174521,0.847299,0.336868,0.767104,0.0792634,0.0492524,0.719535,0.611099,0.00215101,0.301791,0.0335321,0.123102,0.120839,0.77532,0.382883,0.927492,0.99719,0.47905,0.90596,0.214737,0.71915,0.0611581,0.708246,0.648202,0.44054,0.488525,0.765466,0.829843,0.242475,0.218163,0.134075,0.919459,0.239268,0.325154,0.441879,0.622815,0.588418,0.803599,0.432443,0.234847,0.447386,0.0361226,0.0228337,0.0681791,0.559244,0.393562,0.669593,0.0929134,0.849214,0.805939,0.431778,0.506782,0.350965,0.802686,0.238369,0.493891,0.445637,0.101061,0.513449,0.751591,0.216687,0.697811,0.475333,0.567508,0.901456,0.828987,0.950006,0.445591,0.615634,0.0376643,0.957489,0.442848,0.473698,0.267478,0.693202,0.260596,0.193474,0.241331,0.42497,0.52659,0.802056,0.688218,0.402573,0.959462,0.085568,0.96302,0.436224,0.551712,0.105396,0.458604,0.745805,0.320675,0.314654,0.898059,0.0675866,0.925925,0.895258,0.243086,0.345624,0.70673,0.606022,0.224451,0.73233,0.944315,0.58998,0.44825,0.445329,0.723969,0.506209,0.21707,0.876167,0.452435,0.680229,0.807191,0.133104,0.534882,0.483543,0.744093,0.236456,0.562461,0.873585,0.605645,0.485821,0.322467,0.521949,0.939399,0.466578,0.643437,0.847207,0.226077,0.458317,0.434718,0.213971,0.582859,0.636729,0.369349,0.250482,0.829636,0.657384,0.685624,0.258593,0.458352,0.634978,0.725468,0.336882,0.899408,0.470307,0.069619,0.672655,0.56108,0.755023,0.187087,0.514577,0.453828,0.60019,0.539529,0.658385,0.434503,0.172957,0.0682043,0.397762,0.923981,0.200379,0.426577,0.545491,0.30931,0.97682,0.865353,0.372407,0.150476,0.568511,0.973019,0.895234,0.0319768,0.0309809,0.788368,0.0571082,0.161509,0.255549,0.940491,0.162799,0.425941,0.178251,0.88371,0.778992,0.605217,0.275402,0.251419,0.428796,0.489283,0.533656,0.292411,0.676261,0.891389,0.460425,0.989699,0.663139,0.128428,0.150498,0.894418,0.0182975,0.29036,0.708153,0.869086,0.759168,0.0354987,0.370664,0.026028,0.442596,0.672025,0.788983,0.736273,0.428725,0.766853,0.435925,0.367518,0.494904,0.269975,0.161816,0.673976,0.932162,0.610966,0.352928,0.943162,0.422914,0.96854,0.736113,0.855797,0.617237,0.174667,0.788128,0.216568,0.260875,0.386858,0.243471,0.0899821,0.572565,0.026146,0.133869,0.662215,0.195293,0.326666,0.230103,0.603612,0.0211537,0.0167327,0.639232,0.660543,0.00231647,0.0234678,0.247666,0.906347,0.57826,0.743683,0.700697,0.787606,0.659454,0.726755,0.242348,0.693329,0.77636,0.0329105,0.940639,0.19472,0.429539,0.128454,0.3763,0.390155,0.0788493,0.251604,0.94711,0.014166,0.623146,0.916872,0.587157,0.615561,0.541918,0.780909,0.801647,0.699237,0.78026,0.323494,0.495599,0.592935,0.213841,0.655427,0.290805,0.321228,0.126142,0.371106,0.924614,0.150074,0.311993,0.327719,0.695443,0.71301,0.269467,0.349446,0.0347348,0.989228,0.9226,0.988061,0.819068,0.0349183,0.18118,0.31254,0.823625,0.12508,0.644208,0.515796,0.142858,0.882555,0.595168,0.505261,0.380753,0.649057,0.0518851,0.358124,0.161317,0.121524,0.318011,0.834511,0.195521,0.419665,0.26715,0.0384668,0.49311,0.0526394,0.800925,0.302312,0.642641,0.736314,0.0541621,0.92104,0.188516,0.039682,0.467305,0.12552,0.84164,0.927812,0.785929,0.252318,0.725413,0.812207,0.169905,0.531235,0.516945,0.172625,0.759781,0.795414,0.917906,0.623445,0.684422,0.339137,0.524555,0.279595,0.179096,0.337444,0.478298,0.957087,0.811536,0.636681,0.431218,0.74961,0.18639,0.702691,0.513426,0.254414,|0.527197,0.668289,0.796905,0.485598,0.361082,0.275892,0.429312,0.441562,0.646756,0.164786,0.0527031,0.206165,0.308855,0.901069,0.905177,0.108996,0.978558,0.010412,0.113679,0.485627,0.995748,0.817313,0.00715011,0.290112,0.140874,0.543064,0.248106,0.313851,0.766559,0.412301,0.823297,0.741743,0.864592,0.706764,0.451076,0.150717,0.0161018,0.296849,0.74223,0.218868,0.854502,0.959406,0.00341922,0.589164,0.231704,0.447394,0.100538,0.615433,0.492771,0.693871,0.268931,0.724728,0.827082,0.330532,0.424589,0.702257,0.645618,0.984987,0.679975,0.127549,0.459916,0.861676,0.926782,0.723342,0.231437,0.237857,0.4491,0.742438,0.0070495,0.197424,0.111281,0.0772406,0.465391,0.0981154,0.267745,0.255594,0.967602,0.250206,0.500862,0.754911,0.538948,0.373489,0.75468,0.00586474,0.269588,0.110608,0.954507,0.463097,0.21926,0.281256,0.127201,0.20248,0.347384,0.625296,0.400368,0.986462,0.456517,0.721748,0.101615,0.339185,0.295473,0.936259,0.890587,0.106388,0.1427,0.74095,0.55359,0.105104,0.611417,0.163085,0.610698,0.291819,0.256634,0.571284,0.205803,0.287838,0.529261,0.732382,0.73509,0.691173,0.537962,0.756873,0.598488,0.417465,0.569846,0.0683339,0.219248,0.867875,0.63752,0.90974,0.371837,0.313669,0.79477,0.99062,0.3397,0.13402,0.110985,0.40986,0.373344,0.644901,0.926986,0.963862,0.311481,0.980994,0.274248,0.521196,0.129063,0.257291,0.179567,0.699555,0.52209,0.955531,0.311184,0.402213,0.112675,0.561506,0.771747,0.282016,0.476631,0.877655,0.12934,0.348787,0.280822,0.0935718,0.996271,0.489797,0.348252,0.971086,0.253323,0.146043,0.505443,0.0942976,0.985246,0.0903678,0.215401,0.716701,0.492503,0.157744,0.820561,0.441123,0.510293,0.475953,0.493133,0.735956,0.760932,0.834702,0.570645,0.188476,0.0167896,0.46912,0.184369,0.484209,0.244082,0.364903,0.00565952,0.23482,0.769688,0.678386,0.244991,0.833589,0.518727,0.996965,0.31878,0.310035,0.620157,0.423156,0.682882,0.334622,0.366598,0.155487,0.913396,0.845485,0.893359,0.579339,0.30773,0.825103,0.546606,0.307699,0.423251,0.698496,0.651282,0.838129,0.728494,0.544595,0.525203,0.970103,0.420277,0.817381,0.734924,0.376042,0.878665,0.0597115,0.57402,0.203519,0.247415,0.637808,0.671958,0.162625,0.803984,0.204119,0.0620815,0.759061,0.523024,0.48715,0.0677266,0.340086,0.299205,0.231649,0.1832,0.873606,0.339451,0.299002,0.297716,0.50497,0.153977,0.326244,0.27863,0.184413,0.742849,0.944493,0.163856,0.0447862,0.587981,0.28544,0.694809,0.539645,0.048972,0.251697,0.842715,0.374271,0.736985,0.565677,0.305934,0.275648,0.647033,0.22304,0.237074,0.0342012,0.52496,0.563441,0.300382,0.0317074,0.612152,0.487613,0.819815,0.902601,0.00254685,0.455136,0.0341449,0.529291,0.556121,0.654829,0.561937,0.949215,0.263204,0.115607,0.918471,0.380786,0.122749,0.758333,0.107818,0.143929,0.0666568,0.000261903,0.567181,0.997576,0.919071,0.591846,0.672954,0.732446,0.451893,0.559554,0.745505,0.281873,0.481929,0.566482,0.981053,0.609663,0.251374,0.484051,0.719225,0.673763,0.132826,0.317523,0.212309,0.243943,0.607208,0.0588648,0.255541,0.570736,0.436411,0.723196,0.27717,0.623097,0.318317,0.0868224,0.808106,0.719374,0.989185,0.66619,0.84555,0.0403585,0.929352,0.547086,0.18174,0.0952068,0.39301,0.663358,0.407301,0.565841,0.106238,0.265975,0.776962,0.208315,0.485653,0.769384,0.178858,0.385941,0.404162,0.263814,0.387994,0.0871162,0.668236,0.141763,0.366654,0.708896,0.222693,0.0779724,0.697162,0.099669,0.285892,0.831441,0.755677,0.656561,0.326521,0.0184473,0.35588,0.725588,0.349763,0.950884,0.0605001,0.350206,0.134804,0.586967,0.765243,0.924472,0.278369,0.884118,0.548899,0.196772,0.717198,0.107656,0.457247,0.266583,0.0896658,0.622014,0.19131,0.479309,0.306125,0.684266,0.95579,0.113908,0.814587,0.537968,0.476989,0.15487,0.596374,0.827738,0.186796,0.321682,0.608563,0.403156,0.871711,0.979137,0.758539,0.874176,0.630065,0.802246,0.760147,0.35192,0.63886,0.961451,0.285791,0.314302,0.540502,0.970267,0.0896849,0.672596,0.360749,0.274143,0.844179,0.435261,0.772711,0.986834,0.575969,0.765087,0.0508776,0.738763,0.753556,0.494283,0.291224,0.275979,0.759189,0.0659989,0.050657,0.409616,0.709948,0.884086,0.326019,0.343345,0.580188,0.281295,0.447343,0.133536,0.696966,0.0784874,0.714108,0.0282717,0.312749,0.567713,0.142843,0.352334,0.350219,0.746676,0.775298,0.704543,0.0788409,0.275658,0.446634,0.184621,0.0399896,0.707926,0.268735,0.886187,0.509166,0.880085,0.116848,0.164856,0.729538,0.239531,0.692667,0.869662,0.541105,0.691294,0.442334,0.999465,0.439934,0.246597,0.659567,0.679682,0.913823,0.677631,0.204382,0.26101,0.72293,0.503602,0.38375,0.745753,0.438001,0.115596,0.522115,0.0239503,0.568982,0.651704,0.664484,0.598818,0.775556,0.189029,0.17604,0.522908,0.551928,0.928943,0.104542,0.134917,0.71724,0.786368,0.510448,0.0887828,0.448554,0.813806,0.309827,0.634728,0.833058,0.35978,0.164814,0.78896,0.0117566,0.914044,0.831838,0.704975,0.762111,0.0349255,0.332934,0.00778067,0.913841,0.679623,0.0837584,0.913372,0.90321,0.522536,0.506002,0.484499,0.848104,0.0263875,0.400279,0.45027,0.523102,0.312951,0.543205,0.424817,0.800553,0.341631,0.295551,0.54403,0.29587,0.695422,0.473775,0.211212,0.0161289,0.780707,0.0131239,0.96742,0.887749,0.197155,0.839426,0.942575,0.28763,0.876852,0.237794,0.241361,0.299573,0.51341,0.838967,0.674299,0.426653,0.707978,0.867015,0.844612,0.381861,0.560103,0.757523,0.632291,0.822207,0.234871,0.0777112,0.187382,0.414767,0.583824,0.590677,0.340505,0.980412,0.850355,0.397066,0.979523,0.0565299,0.455323,0.455074,0.792687,0.913857,0.146521,0.353072,0.604767,0.880521,0.736548,0.499632,0.773775,0.78519,0.935443,0.816152,0.627273,0.206738,0.7899,0.431033,0.497425,0.0227554,0.524743,0.658519,0.107235,0.443856,0.207296,0.825159,0.89339,0.847834,0.950189,0.201671,0.226489,0.56322,0.186302,0.591573,0.414071,0.372629,0.724655,0.881306,0.937921,0.28566,0.649171,0.585902,0.454451,0.572718,0.440324,0.511581,0.869162,0.397156,0.0238332,0.301273,0.991135,0.906072,0.624267,0.893137,0.886104,0.00735569,0.317086,0.860741,0.0618913,0.45045,0.897217,0.290303,0.48439,0.658861,0.255232,0.680027,0.762727,0.817609,0.753158,0.384344,0.783604,0.330995,0.00126845,0.163817,0.184138,0.38266,0.240141,0.538519,0.861526,0.320818,0.184875,0.0735119,0.580027,0.920387,0.0102308,0.987741,0.375252,0.480503,0.639333,0.632062,0.401825,0.866842,0.952807,0.449996,0.231291,0.271409,0.700638,0.170769,0.0623295,0.442739,0.573754,0.612852,0.936685,0.509182,0.0987183,0.625299,0.65651,0.00432497,0.311655,0.738021,0.421343,0.941892,0.57906,0.792897,0.00760704,0.845031,0.791263,0.845794,0.406546,0.40431,0.85843,0.88545,0.593021,0.916718,0.243605,0.946602,0.205287,0.721627,0.228494,0.922695,0.420062,0.564736,0.365028,0.946836,0.85151,0.822511,0.588482,0.981072,0.210259,0.935837,0.135309,0.0537288,0.184043,0.130317,0.861553,0.900217,0.359013,0.769135,0.943873,0.500428,0.991194,0.690601,0.753024,0.267532,0.330548,0.485663,0.875741,0.450481,0.552434,0.686501,0.0853379,0.358403,0.34198,0.652226,0.706748,0.931139,0.282644,0.218676,0.850537,0.0829052,0.114167,0.160568,0.346447,0.0480886,0.125684,0.303256,0.0141425,0.00590301,0.65796,0.549578,0.222877,0.768855,0.662312,0.393772,0.696879,0.213885,0.645101,0.312542,0.465859,0.918246,0.980709,0.912456,0.302255,0.27609,0.799499,0.771844,0.920925,0.549359,0.595516,0.0183634,0.168458,0.0912629,0.944669,0.16615,0.34371,0.216251,0.580165,0.969087,0.712008,0.324803,0.706323,0.315315,0.937782,0.344666,0.66631,0.976468,0.810531,0.742763,0.768439,0.135528,0.616782,0.265594,0.385971,0.0944497,0.560611,0.485882,0.664163,0.834225,0.0647664,0.318325,0.434337,0.506759,0.140687,0.710873,0.622597,0.654713,0.831982,0.835298,0.912757,0.778572,0.518595,0.161163,0.473552,0.362652,0.550225,0.644583,0.259751,0.679294,0.431188,0.0745658,0.86323,0.0532147,0.0684215,0.624551,0.637684,0.692757,0.664782,0.158826,0.360554,0.0773949,0.300994,0.488961,0.628216,0.578457,0.560148,0.920773,0.337614,0.571843,0.519973,0.475183,0.419553,0.461714,0.677388,0.920723,0.591003,0.348252,0.892436,0.62923,0.934497,0.566576,0.854222,0.233487,0.3061,0.226339,0.208239,0.303485,0.993389,0.179376,0.983083,0.36133,0.790333,0.278281,0.932709,0.427234,0.445867,0.620335,0.533541,0.198992,0.137742,0.139018,0.46453,0.201606,0.974577,0.201881,0.789354,0.914248,0.0749795,0.233695,0.673419,0.164678,0.310723,0.291022,0.84796,0.417134,0.359728,0.349254,0.0843012,0.472186,0.317378,0.395803,0.751838,0.205824,0.189711,0.978201,0.142616,0.598022,0.776419,0.531334,0.930144,0.338165,0.426172,0.348563,0.73788,0.111021,0.442621,0.721462,0.633946,0.442472,0.351418,0.794032,0.573584,0.103647,0.485996,0.49692,0.138298,0.662151,0.0989801,0.174824,0.386099,0.833246,0.494138,0.143807,0.960529,0.170487,0.447502,0.109679,0.655277,0.182186,0.256184,0.813413,0.103322,0.414979,0.241177,0.634287,0.847104,0.618645,0.205439,0.371069,0.743728,0.821067,0.617149,0.994638,0.527958,0.672537,0.533572,0.573383,0.244596,0.793437,0.81412,0.206429,0.725559,0.774733,0.326697,0.815017,0.877753,0.274151,0.209848,0.648129,0.591982,0.284322,0.239915,0.219888,0.300318,0.215431,0.243902,0.975253,0.436796,0.58372,0.281506,0.517519,0.696752,0.191561,0.140014,0.699525,0.173845,|0.705711,0.280661,0.0174269,0.233105,0.445438,0.44766,0.849888,0.202208,0.366695,0.123616,0.478807,0.778032,0.601968,0.105359,0.412568,0.633611,0.0680643,0.474635,0.630602,0.429979,0.985032,0.34713,0.997896,0.622334,0.240449,0.927126,0.954424,0.0702727,0.772707,0.533959,0.65265,0.681984,0.311818,0.0878519,0.410615,0.124284,0.53259,0.81179,0.985529,0.596816,0.133203,0.0352551,0.934803,0.265839,0.199974,0.702475,0.364311,0.619683,0.819986,0.264827,0.136713,0.256675,0.662146,0.930015,0.263214,0.867204,0.574425,0.349374,0.417274,0.355816,0.0292644,0.746954,0.0761703,0.146474,0.890585,0.788621,0.0795761,0.136975,0.352769,0.692748,0.458289,0.894243,0.506847,0.775141,0.375167,0.526909,0.644482,0.865167,0.91052,0.89602,0.796606,0.230389,0.745614,0.256999,0.531744,0.412467,0.227384,0.59881,0.736139,0.698947,0.117216,0.56297,0.051082,0.782242,0.814623,0.0335498,0.642067,0.132018,0.382342,0.997692,0.161608,0.542201,0.961976,0.581832,0.900184,0.720648,0.671554,0.239448,0.655887,0.763497,0.271448,0.699114,0.95107,0.410755,0.973724,0.276344,0.653132,0.480587,0.946361,0.639672,0.790886,0.0837774,0.0574182,0.762207,0.550295,0.851829,0.246157,0.219374,0.605201,0.585572,0.89229,0.836244,0.38212,0.698315,0.708762,0.442712,0.433262,0.422104,0.26777,0.00619477,0.569155,0.08736,0.0203604,0.440926,0.401385,0.720799,0.572258,0.851722,0.0285345,0.919445,0.428439,0.638111,0.888888,0.550962,0.0241316,0.873089,0.593789,0.133832,0.816077,0.247371,0.771619,0.990879,0.669611,0.958449,0.0193349,0.247297,0.664648,0.410978,0.0622015,0.976431,0.977719,0.590625,0.744031,0.798229,0.911909,0.570747,0.348419,0.473091,0.815674,0.906074,0.834528,0.726053,0.586055,0.716046,0.420676,0.407812,0.610551,0.355644,0.972171,0.0926448,0.56492,0.614349,0.605863,0.980652,0.94381,0.811577,0.0153808,0.124403,0.42788,0.482954,0.472428,0.66287,0.731202,0.39471,0.98657,0.693752,0.91358,0.75235,0.188719,0.858329,0.517878,0.428882,0.309838,0.13058,0.291116,0.0403718,0.655754,0.78404,0.299051,0.0707924,0.298807,0.116207,0.89469,0.167783,0.0692571,0.603604,0.597243,0.1373,0.219858,0.30285,0.064118,0.915771,0.852681,0.85863,0.291909,0.608934,0.995266,0.323621,0.209937,0.883166,0.872734,0.207188,0.0562601,0.711568,0.883926,0.675007,0.858118,0.738692,0.58592,0.23914,0.471236,0.101126,0.102033,0.280322,0.856958,0.322349,0.488791,0.860745,0.832103,0.93023,0.108038,0.52049,0.738378,0.159792,0.978441,0.473657,0.868828,0.716544,0.96432,0.484411,0.206693,0.813234,0.559548,0.996975,0.414832,0.973512,0.490148,0.969971,0.388459,0.844108,0.948012,0.270375,0.217076,0.538729,0.593015,0.211984,0.222319,0.225876,0.851174,0.989504,0.842472,0.143944,0.430589,0.156912,0.0435172,0.546225,0.898833,0.168603,0.189519,0.512633,0.862033,0.34729,0.925662,0.898905,0.0430013,0.698385,0.0534012,0.231575,0.633433,0.551906,0.28819,0.672842,0.528238,0.936393,0.0906506,0.152713,0.539775,0.732436,0.863926,0.468562,0.738241,0.591069,0.144421,0.504967,0.591661,0.94531,0.0117876,0.842016,0.344503,0.998903,0.723633,0.701487,0.93951,0.431753,0.930909,0.753799,0.757261,0.0238615,0.383372,0.110521,0.969814,0.0955085,0.467226,0.0819176,0.0780563,0.457384,0.726138,0.217943,0.066177,0.111371,0.51451,0.584423,0.249423,0.684921,0.43911,0.311826,0.853184,0.852814,0.697679,0.202298,0.993444,0.382492,0.342776,0.722454,0.770553,0.0732605,0.00604582,0.893348,0.883571,0.163659,0.253319,0.862834,0.325297,0.828783,0.320006,0.85353,0.134412,0.356553,0.921895,0.17738,0.117845,0.34574,0.225077,0.953535,0.215181,0.280962,0.349985,0.810984,0.926414,0.842751,0.294027,0.291171,0.608218,0.300183,0.0528895,0.937154,0.311318,0.518237,0.0897036,0.892182,0.313249,0.2808,0.262156,0.0627919,0.758536,0.356582,0.338321,0.99445,0.28014,0.751857,0.394767,0.220798,0.572668,0.450953,0.00497282,0.304946,0.785214,0.268579,0.82164,0.569376,0.232284,0.828469,0.514281,0.752804,0.432803,0.991477,0.152675,0.499309,0.738792,0.885477,0.936377,0.38959,0.109547,0.0617643,0.826526,0.957345,0.500386,0.756708,0.903284,0.131757,0.232872,0.65898,0.299985,0.520195,0.61041,0.687468,0.226783,0.553954,0.35275,0.158347,0.244362,0.372323,0.368222,0.245527,0.0897766,0.598923,0.940407,0.803029,0.177904,0.804832,0.154105,0.71712,0.472355,0.708772,0.153382,0.743414,0.911721,0.875472,0.957777,0.169497,0.0181358,0.788814,0.0697016,0.0655129,0.749951,0.314086,0.612,0.593977,0.514664,0.526836,0.0330427,0.487178,0.319018,0.956258,0.117769,0.288072,0.0167991,0.0808928,0.173192,0.191941,0.95328,0.541868,0.728687,0.311818,0.213098,0.960342,0.605491,0.392066,0.416184,0.551085,0.174877,0.142584,0.867887,0.261448,0.599934,0.0811225,0.506712,0.0670691,0.347176,0.363466,0.945145,0.67236,0.181484,0.589932,0.651534,0.868716,0.2972,0.409992,0.792976,0.396747,0.0279422,0.168511,0.80158,0.111539,0.51595,0.685921,0.386195,0.497354,0.128799,0.0700864,0.7177,0.952648,0.435333,0.306135,0.931046,0.680578,0.107181,0.0403032,0.345795,0.658129,0.219183,0.984982,0.127162,0.182174,0.792262,0.0539655,0.320667,0.492854,0.60433,0.541656,0.673771,0.228991,0.241953,0.0406932,0.358513,0.561616,0.20231,0.283308,0.759415,0.96017,0.840435,0.436364,0.307413,0.325711,0.762277,0.643931,0.956677,0.616134,0.673254,0.35039,0.452879,0.512369,0.0352996,0.443989,0.115438,0.18466,0.88869,0.0222814,0.094614,0.955169,0.0902716,0.946827,0.7403,0.675025,0.649772,0.71548,0.219711,0.555066,0.814902,0.261534,0.534079,0.989171,0.065177,0.275012,0.406299,0.370267,0.599493,0.178795,0.82783,0.900329,0.319627,0.366512,0.402286,0.78553,0.631697,0.0475673,0.921375,0.192798,0.0642316,0.462861,0.12487,0.231827,0.398039,0.179747,0.242088,0.624883,0.361863,0.265208,0.691609,0.102101,0.101624,0.518883,0.249247,0.0402371,0.96318,0.487274,0.0403449,0.352685,0.12882,0.663876,0.832003,0.98216,0.200353,0.890267,0.596801,0.617047,0.705162,0.82609,0.6752,0.468404,0.887061,0.655961,0.126848,0.482073,0.871792,0.3208,0.136713,0.745615,0.165587,0.509917,0.969025,0.890509,0.872306,0.882112,0.823123,0.519134,0.257577,0.302307,0.803116,0.86876,0.736654,0.887526,0.0919467,0.835552,0.929989,0.188119,0.635089,0.660366,0.909987,0.39487,0.510207,0.206959,0.466821,0.115908,0.505595,0.224022,0.516705,0.302563,0.728212,0.804545,0.96051,0.799505,0.130951,0.998195,0.270925,0.0917138,0.316844,0.104438,0.970785,0.460521,0.322596,0.298049,0.722554,0.0653191,0.0194116,0.371573,0.046142,0.41388,0.453364,0.381785,0.775404,0.442753,0.617202,0.126637,0.503903,0.827524,0.329555,0.139794,0.707483,0.0114873,0.298824,0.00793046,0.118997,0.10412,0.1441,0.747823,0.557227,0.268857,0.236462,0.807545,0.708059,0.867381,0.916192,0.915857,0.941201,0.000441611,0.349409,0.0270964,0.867957,0.197328,0.659873,0.218134,0.54764,0.85662,0.742227,0.369206,0.364036,0.24196,0.373513,0.878274,0.998235,0.800216,0.606168,0.831565,0.645469,0.891065,0.298389,0.477598,0.0475127,0.14889,0.553266,0.496154,0.0813797,0.394119,0.282469,0.617954,0.886212,0.349436,0.961344,0.416734,0.976003,0.516028,0.59331,0.971584,0.14858,0.94395,0.0655892,0.254942,0.83559,0.410464,0.000170767,0.983505,0.215615,0.243695,0.113989,0.855424,0.344259,0.167108,0.467285,0.276088,0.431053,0.800386,0.265871,0.611019,0.241857,0.0663858,0.393404,0.477467,0.462134,0.665889,0.851522,0.460402,0.878292,0.30468,0.164457,0.130809,0.885438,0.443189,0.491099,0.808284,0.401062,0.902524,0.10902,0.642003,0.0411045,0.900612,0.0476981,0.177054,0.853275,0.0293873,0.624193,0.937802,0.166823,0.374163,0.234129,0.962895,0.850116,0.304296,0.806299,0.996061,0.419731,0.836395,0.118305,0.0717051,0.774985,0.589513,0.674424,0.152018,0.590057,0.636635,0.324565,0.0408772,0.238063,0.209445,0.424018,0.944533,0.40322,0.660056,0.530859,0.319792,0.39282,0.473805,0.238947,0.551658,0.912157,0.331231,0.43504,0.866049,0.71503,0.229437,0.743717,0.854865,0.127019,0.299064,0.927705,0.860754,0.977362,0.448117,0.0175204,0.77801,0.84734,0.669287,0.585169,0.686229,0.892013,0.869375,0.327148,0.376478,0.398453,0.945197,0.815108,0.687565,0.69535,0.998823,0.12191,0.918721,0.816714,0.839259,0.520893,0.715392,0.133778,0.779508,0.375614,0.523059,0.168515,0.473786,0.89298,0.800476,0.604231,0.231695,0.361259,0.225844,0.753779,0.0512753,0.744348,0.474046,0.558236,0.614742,0.903508,0.818108,0.606757,0.223331,0.891167,0.314534,0.184294,0.818395,0.315622,0.331664,0.439016,0.806836,0.145764,0.621173,0.197848,0.79772,0.534604,0.626417,0.928467,0.220506,0.849337,0.934085,0.469914,0.258346,0.0221726,0.823399,0.618344,0.868647,0.776022,0.722629,0.937821,0.0299402,0.581138,0.71259,0.701935,0.305318,0.549735,0.354346,0.404336,0.137997,0.552399,0.20586,0.229785,0.020265,0.633362,0.323313,0.0673959,0.712938,0.700696,0.725933,0.385278,0.369002,0.477094,0.787441,0.536829,0.453119,0.130206,0.981302,0.531172,0.660886,0.969961,0.760518,0.702795,0.998346,0.1841,0.182694,0.945792,0.250097,0.628751,0.18056,0.240782,0.658833,0.374658,0.772138,0.0578852,0.610379,0.407419,0.177093,0.170861,0.90284,0.0939464,0.172353,0.41683,0.447962,0.471368,0.473621,0.127606,0.500663,0.126153,0.812224,0.250769,0.417704,0.564969,0.0466384,0.253099,0.833823,0.289181,0.872109,0.120617,0.753036,0.935402,0.749416,|0.369945,0.140278,0.439918,0.0944908,0.0112268,0.146731,0.994911,0.736721,0.045297,0.494242,0.0787101,0.688216,0.630605,0.247605,0.649697,0.385115,0.510228,0.870092,0.851938,0.744798,0.86925,0.552922,0.141866,0.364085,0.972695,0.590388,0.779519,0.2422,0.74738,0.0719337,0.261079,0.0353111,0.0544174,0.437717,0.0228885,0.719339,0.462091,0.115035,0.980205,0.429381,0.771675,0.376848,0.146176,0.994045,0.825157,0.455043,0.837009,0.509534,0.561662,0.695879,0.0549098,0.58192,0.884,0.272238,0.0644811,0.637099,0.448718,0.0892515,0.302649,0.144684,0.225122,0.885729,0.875188,0.346023,0.649257,0.264162,0.156333,0.896187,0.519213,0.316331,0.174183,0.791482,0.569778,0.100546,0.699986,0.696424,0.711975,0.567956,0.430996,0.983686,0.731199,0.73085,0.0908526,0.832671,0.53817,0.549914,0.067798,0.378837,0.504725,0.0175361,0.988216,0.0354394,0.541725,0.603608,0.265157,0.600762,0.181416,0.931281,0.512698,0.622036,0.240032,0.507128,0.287982,0.0570399,0.19879,0.0146124,0.780617,0.443534,0.473268,0.205202,0.561745,0.746391,0.0244136,0.596838,0.558096,0.958509,0.29932,0.547376,0.800003,0.22507,0.81913,0.14102,0.0601291,0.774063,0.418329,0.926474,0.965218,0.231602,0.977713,0.584189,0.667764,0.680617,0.170256,0.627785,0.153442,0.555673,0.254012,0.0639804,0.0692184,0.671145,0.362321,0.646834,0.0878475,0.111652,0.905278,0.998509,0.320564,0.890718,0.581429,0.11925,0.237943,0.778101,0.878565,0.243085,0.270402,0.925337,0.585312,0.547526,0.00934666,0.846022,0.672262,0.847324,0.714505,0.327802,0.00824952,0.0187536,0.459077,0.780596,0.621569,0.274039,0.0271737,0.944451,0.354246,0.177066,0.361086,0.679924,0.69585,0.917568,0.533372,0.905665,0.821753,0.730039,0.386317,0.970488,0.447167,0.923687,0.845751,0.917917,0.709684,0.896436,0.579313,0.810326,0.853289,0.0642242,0.844915,0.902509,0.821089,0.653296,0.410292,0.237713,0.550056,0.422105,0.417315,0.607093,0.56949,0.0217202,0.144161,0.00218201,0.332695,0.183728,0.530886,0.437638,0.847115,0.561257,0.694311,0.953644,0.208746,0.830928,0.512551,0.187012,0.864537,0.315851,0.433404,0.922159,0.549718,0.697654,0.00960183,0.642724,0.307412,0.931087,0.113996,0.621121,0.138656,0.0950848,0.0303122,0.391809,0.380491,0.655733,0.391802,0.454117,0.00699645,0.262922,0.759411,0.934141,0.889473,0.448744,0.401983,0.462873,0.717096,0.354157,0.446599,0.695917,0.176485,0.162759,0.49251,0.311912,0.762332,0.446045,0.19821,0.967914,0.673835,0.0757222,0.269003,0.99565,0.719586,0.227959,0.139492,0.0971248,0.411724,0.0607277,0.92945,0.946817,0.539213,0.527438,0.0158273,0.844549,0.841474,0.998143,0.417193,0.777294,0.523809,0.651703,0.306913,0.0280348,0.925026,0.0340034,0.472484,0.634955,0.144763,0.779869,0.0852624,0.35221,0.698923,0.29381,0.512193,0.842113,0.476622,0.156104,0.395574,0.804251,0.559939,0.180851,0.886565,0.192714,0.772627,0.238106,0.651233,0.345142,0.671887,0.939088,0.813676,0.354913,0.189583,0.235057,0.182376,0.405454,0.228977,0.0496199,0.0298814,0.597374,0.223294,0.857137,0.0288306,0.834754,0.777347,0.964683,0.700013,0.989988,0.713478,0.357647,0.335794,0.193448,0.415258,0.450763,0.992337,0.659538,0.478903,0.502184,0.60981,0.0222296,0.605935,0.339792,0.977482,0.945172,0.832904,0.179414,0.880613,0.381679,0.548039,0.524792,0.936819,0.915859,0.32328,0.290551,0.786615,0.427541,0.229245,0.458738,0.230435,0.125428,0.828784,0.913687,0.889698,0.867736,0.0644294,0.874933,0.487881,0.729288,0.811148,0.560092,0.538493,0.767527,0.757795,0.00734425,0.75084,0.989912,0.773902,0.51559,0.422925,0.63085,0.41533,0.904453,0.365944,0.216898,0.118647,0.586694,0.511375,0.749097,0.0613207,0.692881,0.963812,0.0395471,0.590225,0.124721,0.0720555,0.958773,0.0797535,0.0148165,0.444757,0.569413,0.0232468,0.969263,0.562487,0.853555,0.905418,0.0463847,0.669701,0.133383,0.56462,0.761672,0.775706,0.266164,0.8982,0.833746,0.634363,0.962375,0.328383,0.323499,0.580792,0.482414,0.536816,0.468573,0.328056,0.217184,0.324472,0.913677,0.210527,0.169353,0.372733,0.722776,0.912507,0.53593,0.789419,0.314963,0.105812,0.537568,0.9439,0.478129,0.155989,0.224976,0.406447,0.983328,0.183254,0.586702,0.215133,0.326255,0.00887895,0.762611,0.819694,0.0253771,0.00211966,0.363841,0.565255,0.891548,0.82553,0.0858806,0.685328,0.984623,0.912432,0.552338,0.573678,0.563804,0.0316834,0.222093,0.559487,0.803334,0.31885,0.988144,0.932497,0.272041,0.953189,0.951321,0.0387948,0.590462,0.961514,0.255944,0.326998,0.748413,0.0869083,0.816246,0.14877,0.639848,0.737069,0.585514,0.857196,0.0371612,0.97512,0.766219,0.395106,0.740219,0.871392,0.600128,0.31035,0.637573,0.676652,0.0123589,0.802137,0.703771,0.272569,0.014844,0.176419,0.0214979,0.366513,0.857425,0.242599,0.341124,0.0175605,0.812512,0.624096,0.253664,0.0754023,0.16631,0.339887,0.138341,0.235548,0.525757,0.40642,0.529439,0.940255,0.858475,0.220847,0.544241,0.17175,0.165503,0.334021,0.918083,0.829583,0.317059,0.140665,0.626003,0.403249,0.376339,0.0431591,0.591681,0.955793,0.531879,0.353025,0.446313,0.849172,0.120515,0.474391,0.432373,0.428018,0.477442,0.943354,0.47153,0.691933,0.43161,0.615719,0.364072,0.464922,0.881726,0.851267,0.645531,0.533477,0.684521,0.772443,0.492053,0.831172,0.245153,0.667482,0.0657109,0.987201,0.825928,0.37298,0.972418,0.155246,0.121863,0.0243637,0.0579596,0.967007,0.272103,0.979905,0.8794,0.234923,0.575892,0.57124,0.498273,0.267796,0.71076,0.404214,0.337757,0.901011,0.26118,0.62905,0.579678,0.774223,0.689662,0.585222,0.606038,0.104289,0.527324,0.217994,0.323464,0.516358,0.894853,0.494963,0.105789,0.563543,0.168329,0.65156,0.850636,0.426128,0.196175,0.846872,0.877988,0.00811243,0.155835,0.928243,0.193685,0.882052,0.883431,0.698341,0.00775284,0.414301,0.302312,0.197094,0.707466,0.768659,0.139511,0.600002,0.501348,0.461612,0.806123,0.49366,0.0391164,0.772436,0.366635,0.688501,0.223004,0.897099,0.809347,0.380901,0.67831,0.105708,0.666144,0.0443953,0.83376,0.655672,0.332117,0.908885,0.0145135,0.728492,0.98165,0.894193,0.18501,0.836719,0.908132,0.308895,0.81265,0.433675,0.672501,0.208301,0.736778,0.99252,0.0404436,0.898344,0.296104,0.325037,0.943399,0.914905,0.498429,0.353523,0.66979,0.55385,0.262042,0.191094,0.97805,0.975108,0.651127,0.298891,0.924718,0.385063,0.779893,0.361041,0.116492,0.528379,0.948655,0.387322,0.686042,0.673615,0.65919,0.242109,0.091671,0.883108,0.844192,0.247035,0.531951,0.409477,0.00956541,0.43493,0.421337,0.431828,0.749146,0.243139,0.953407,0.407341,0.777904,0.788588,0.478941,0.203387,0.0439686,0.14576,0.897162,0.129454,0.356701,0.921785,0.454921,0.711158,0.151649,0.493844,0.928928,0.548021,0.245154,0.0499045,0.946774,0.732855,0.71889,0.131729,0.472336,0.9326,0.53507,0.624429,0.0213566,0.471799,0.0425329,0.640808,0.45185,0.184497,0.358022,0.135503,0.255088,0.295721,0.839207,0.434653,0.764877,0.858964,0.463574,0.66199,0.288555,0.378653,0.516232,0.398701,0.917742,0.00472194,0.212458,0.196239,0.829907,0.995679,0.800266,0.808544,0.34827,0.485802,0.385895,0.763204,0.756512,0.303689,0.299423,0.755343,0.557165,0.86727,0.26208,0.25302,0.188354,0.053588,0.376548,0.0857553,0.225611,0.727364,0.0321776,0.942674,0.296129,0.915203,0.663914,0.124696,0.0163029,0.93934,0.0985581,0.353046,0.910218,0.0691387,0.766466,0.184009,0.0324822,0.727507,0.907619,0.716294,0.250565,0.408427,0.0701645,0.543588,0.53601,0.291624,0.984541,0.257554,0.745124,0.641434,0.685483,0.775564,0.624833,0.527784,0.996803,0.85152,0.211728,0.420481,0.932981,0.475064,0.716201,0.0417472,0.617009,0.535389,0.982849,0.61409,0.972759,0.354478,0.673007,0.464104,0.52161,0.760699,0.176672,0.800164,0.657731,0.122414,0.542532,0.701627,0.916441,0.154579,0.471665,0.547463,0.920874,0.0795002,0.510608,0.208369,0.81429,0.476654,0.733991,0.31623,0.931388,0.979563,0.742675,0.342779,0.115375,0.352551,0.0765099,0.969451,0.366048,0.462856,0.247959,0.0508761,0.740235,0.361027,0.400838,0.421553,0.992397,0.837765,0.778826,0.449045,0.935601,0.519385,0.813627,0.404727,0.370059,0.735113,0.866349,0.47952,0.239172,0.865885,0.459906,0.821333,0.946604,0.671477,0.677424,0.0192789,0.876616,0.10533,0.673035,0.946031,0.857899,0.318283,0.63467,0.0213326,0.0768369,0.390049,0.839169,0.661552,0.794437,0.069313,0.504589,0.235224,0.533723,0.376142,0.975108,0.410511,0.078612,0.929429,0.574416,0.901052,0.678186,0.0267503,0.0683283,0.00143152,0.159574,0.242317,0.353941,0.942508,0.993497,0.0225277,0.383994,0.638559,0.980045,0.34292,0.910367,0.316266,0.03851,0.529858,0.346457,0.812997,0.40174,0.378075,0.846313,0.355595,0.0680634,0.91579,0.861371,0.943641,0.254958,0.458178,0.492903,0.23745,0.937932,0.938857,0.35102,0.692516,0.658451,0.667418,0.692985,0.672401,0.520578,0.0555338,0.505503,0.53304,0.313735,0.675509,0.350549,0.453752,0.44367,0.374506,0.682107,0.899115,0.832379,0.294872,0.23244,0.943774,0.160163,0.986465,0.568124,0.606193,0.984799,0.772002,0.160202,0.19617,0.922774,0.121273,0.889261,0.590741,0.405763,0.155989,0.00309491,0.0791912,0.457195,0.388747,0.591665,0.0906952,0.301646,0.930128,0.295154,0.909725,0.258942,0.637468,0.251576,0.507683,0.279673,0.236466,0.856068,0.17948,0.487601,0.0631936,0.584746,0.0469133,0.529554,0.637557,0.899327,0.350849,0.311261,0.584399,0.66647,0.646527,0.405122,0.898325,0.868795,|0.0751585,0.400323,0.201479,0.372582,0.109336,0.452604,0.615854,0.119934,0.605756,0.572807,0.380267,0.825948,0.470216,0.527895,0.095561,0.913226,0.411847,0.814358,0.604711,0.226216,0.895134,0.677302,0.74794,0.0218159,0.597162,0.864087,0.707128,0.945727,0.617041,0.335918,0.235421,0.119695,0.681668,0.628475,0.252688,0.537037,0.300257,0.761692,0.117426,0.123505,0.762884,0.277291,0.433652,0.309269,0.190281,0.229533,0.234812,0.150005,0.0455401,0.61287,0.998608,0.337004,0.872288,0.218778,0.0839466,0.631351,0.870913,0.72242,0.511109,0.066744,0.352087,0.794538,0.387702,0.22514,0.0914233,0.0978658,0.0914067,0.858518,0.317689,0.291946,0.408059,0.73863,0.103213,0.421375,0.66129,0.452789,0.243904,0.666363,0.751575,0.676752,0.2631,0.0915387,0.592162,0.271661,0.306532,0.684928,0.409859,0.394172,0.925145,0.731913,0.549487,0.623669,0.693402,0.87357,0.409203,0.958318,0.842646,0.560942,0.735209,0.880276,0.232942,0.854403,0.0736067,0.165133,0.331747,0.803379,0.757248,0.101588,0.744328,0.188017,0.949869,0.391769,0.340921,0.496882,0.0683864,0.764181,0.171204,0.961978,0.76898,0.152348,0.90639,0.809403,0.848187,0.855885,0.00888938,0.476029,0.0497472,0.152124,0.474098,0.805648,0.95863,0.354969,0.144854,0.609402,0.0011577,0.0519468,0.826274,0.623499,0.235192,0.781662,0.779876,0.546041,0.919626,0.25357,0.816332,0.680203,0.141661,0.923279,0.341477,0.720788,0.529681,0.0193338,0.211199,0.874891,0.027786,0.106871,0.287618,0.292502,0.575279,0.375277,0.114839,0.411721,0.279144,0.981751,0.277247,0.0948164,0.421512,0.207617,0.529992,0.631412,0.595628,0.248339,0.944384,0.341646,0.459642,0.835212,0.651651,0.625203,0.750713,0.821897,0.869455,0.0607304,0.048128,0.246334,0.539854,0.585113,0.709616,0.999342,0.24261,0.924537,0.701669,0.876114,0.168262,0.265207,0.982576,0.634083,0.790569,0.652756,0.341624,0.352684,0.817004,0.556972,0.667934,0.803479,0.110748,0.775595,0.954739,0.947867,0.155873,0.730334,0.204683,0.794621,0.0284407,0.880367,0.750482,0.737499,0.39411,0.0309115,0.910053,0.204485,0.737644,0.678322,0.00996423,0.815765,0.942132,0.990794,0.321124,0.233142,0.197349,0.557894,0.0846218,0.155034,0.0375133,0.336038,0.204864,0.158026,0.45845,0.440377,0.197716,0.0377317,0.0628557,0.676963,0.272808,0.91557,0.374437,0.18893,0.30307,0.920415,0.926859,0.0366886,0.628229,0.729457,0.626946,0.61906,0.318126,0.158784,0.576006,0.620652,0.822484,0.738333,0.86792,0.417635,0.435425,0.545182,0.583698,0.794612,0.838029,0.32034,0.247692,0.758909,0.641974,0.125683,0.0129644,0.289771,0.808404,0.0346746,0.641522,0.527925,0.487943,0.43357,0.775702,0.327706,0.746631,0.981166,0.378304,0.568478,0.870346,0.0667059,0.833029,0.688446,0.294311,0.908687,0.0901042,0.376193,0.391381,0.639148,0.885105,0.147815,0.663172,0.0732974,0.402827,0.0108548,0.703404,0.701579,0.415753,0.692508,0.856638,0.0894554,0.838873,0.617437,0.268588,0.2744,0.798479,0.216561,0.78862,0.206013,0.452298,0.835395,0.591137,0.967454,0.80157,0.737181,0.36599,0.357198,0.465309,0.795979,0.194058,0.144392,0.186037,0.395037,0.747966,0.0587361,0.144743,0.181815,0.152112,0.459227,0.390739,0.203132,0.322596,0.249478,0.810988,0.774696,0.778511,0.165454,0.620268,0.485312,0.458018,0.785671,0.936103,0.682258,0.143791,0.924061,0.973336,0.339895,0.507709,0.00375605,0.0224292,0.433934,0.892029,0.657819,0.123292,0.26337,0.925472,0.590692,0.630458,0.699758,0.464728,0.30702,0.694849,0.310731,0.137929,0.967654,0.0227653,0.621011,0.561612,0.191385,0.625045,0.971893,0.935074,0.657494,0.931533,0.672491,0.329787,0.423893,0.771827,0.844517,0.344655,0.286712,0.869859,0.910897,0.966088,0.787105,0.31173,0.100819,0.1013,0.0524533,0.530309,0.159532,0.150616,0.906074,0.171363,0.546602,0.630502,0.64963,0.900422,0.0902401,0.225877,0.350195,0.894573,0.327593,0.0614906,0.656702,0.728416,0.614099,0.595078,0.586541,0.102615,0.754671,0.296786,0.886546,0.526306,0.388757,0.471853,0.841184,0.513974,0.208399,0.609715,0.622147,0.370412,0.491081,0.0617663,0.551859,0.267321,0.411677,0.824019,0.0419106,0.783271,0.918258,0.614743,0.13601,0.935584,0.389713,0.0678682,0.467911,0.878317,0.351596,0.176978,0.516197,0.545657,0.714203,0.611447,0.449512,0.646698,0.930835,0.831747,0.415428,0.86494,0.758949,0.527484,0.378319,0.627248,0.198042,0.970474,0.535765,0.0464851,0.808052,0.0018602,0.57301,0.442781,0.96075,0.702237,0.826917,0.974129,0.953268,0.974144,0.55646,0.0796416,0.77277,0.193511,0.841449,0.411099,0.782022,0.955952,0.229904,0.28892,0.260757,0.947153,0.512811,0.139679,0.955832,0.910128,0.843187,0.500892,0.950278,0.914623,0.792026,0.485699,0.0880044,0.140632,0.579042,0.771871,0.975793,0.301065,0.352033,0.304078,0.121848,0.84183,0.582761,0.516194,0.0463354,0.532273,0.645905,0.818059,0.64517,0.274852,0.723688,0.43738,0.264877,0.733313,0.484208,0.659508,0.269198,0.710176,0.848658,0.0825311,0.615558,0.894591,0.182704,0.744412,0.691947,0.238462,0.755616,0.459804,0.714206,0.154323,0.954139,0.249157,0.0771896,0.995706,0.276459,0.545069,0.474855,0.098963,0.407482,0.901557,0.853816,0.845267,0.983555,0.00801444,0.65335,0.347167,0.00832087,0.164059,0.862623,0.473859,0.826949,0.190377,0.786853,0.187726,0.660586,0.597068,0.55783,0.388041,0.6798,0.718573,0.779231,0.153483,0.465633,0.888366,0.0702118,0.0204468,0.119653,0.855759,0.889857,0.342507,0.648728,0.461324,0.34555,0.361656,0.555718,0.526652,0.681827,0.229686,0.80544,0.943261,0.311417,0.939392,0.4105,0.0991245,0.0660529,0.678004,0.27915,0.244615,0.429051,0.726002,0.366716,0.406244,0.474626,0.298527,0.0612831,0.88503,0.178505,0.120855,0.503819,0.147705,0.31603,0.629876,0.76677,0.216842,0.472941,0.34929,0.35571,0.923304,0.950465,0.835452,0.369195,0.797546,0.68454,0.166967,0.47283,0.0913931,0.726566,0.669715,0.0716048,0.305093,0.411019,0.690152,0.723269,0.0915219,0.829835,0.0438393,0.0848191,0.784194,0.0858886,0.550412,0.55888,0.142895,0.80563,0.0574611,0.791809,0.384787,0.512993,0.454195,0.821552,0.743306,0.131358,0.252628,0.911778,0.810459,0.453819,0.168846,0.00266355,0.492989,0.0126688,0.82037,0.347805,0.999559,0.560181,0.113208,0.607183,0.0584702,0.844804,0.72299,0.901552,0.55853,0.108629,0.47694,0.00170434,0.516992,0.668724,0.569092,0.154974,0.870764,0.254106,0.0021798,0.20243,0.28884,0.358032,0.685711,0.418499,0.294476,0.623558,0.615284,0.456637,0.600459,0.477794,0.895523,0.817847,0.231577,0.64767,0.833983,0.263416,0.920946,0.561949,0.944851,0.278608,0.372449,0.771254,0.149,0.813791,0.738002,0.447243,0.658626,0.296732,0.79948,0.360145,0.470601,0.549789,0.736999,0.593019,0.522099,0.191322,0.45664,0.730738,0.546249,0.55259,0.070452,0.216786,0.765839,0.450278,0.313401,0.211358,0.31543,0.729908,0.785924,0.393477,0.25232,0.526111,0.566327,0.0564529,0.559236,0.991121,0.880086,0.171175,0.881967,0.907567,0.878604,0.869283,0.234434,0.191602,0.0243916,0.260303,0.0647067,0.0681628,0.117801,0.155327,0.0692831,0.100948,0.859106,0.291064,0.321815,0.130616,0.617481,0.119649,0.259637,0.233919,0.311896,0.642355,0.415214,0.814096,0.217114,0.730313,0.471183,0.874089,0.662252,0.808011,0.153368,0.962983,0.201248,0.0265934,0.257102,0.352578,0.49157,0.621712,0.635914,0.631424,0.486864,0.0714645,0.24113,0.566801,0.155244,0.735956,0.333659,0.646249,0.24504,0.522991,0.736401,0.212429,0.743625,0.649094,0.579429,0.295203,0.0304616,0.399479,0.40749,0.155875,0.80727,0.923446,0.228035,0.615693,0.440227,0.357679,0.470787,0.4953,0.318043,0.970819,0.518239,0.0375168,0.0823197,0.790422,0.120316,0.338305,0.798113,0.453869,0.782847,0.291884,0.876932,0.535431,0.649408,0.780779,0.928472,0.988947,0.251429,0.133497,0.318163,0.409993,0.478687,0.873629,0.809287,0.631753,0.65058,0.426556,0.571897,0.361471,0.483006,0.40889,0.765079,0.32638,0.905465,0.269967,0.400315,0.763464,0.344774,0.435075,0.805353,0.668693,0.711369,0.204076,0.499598,0.622308,0.439942,0.589307,0.0258101,0.959209,0.787381,0.99691,0.676732,0.850549,0.487341,0.922939,0.973816,0.720856,0.245081,0.0972435,0.516081,0.118031,0.869743,0.285252,0.771102,0.548909,0.773488,0.483938,0.907761,0.53705,0.328823,0.328147,0.0542235,0.912768,0.158314,0.146998,0.977995,0.786712,0.0735507,0.249248,0.769085,0.813956,0.795231,0.494855,0.164877,0.911439,0.58465,0.50517,0.359647,0.695122,0.795592,0.881071,0.0849094,0.745141,0.369192,0.520986,0.324009,0.457001,0.235606,0.831543,0.18043,0.804502,0.511948,0.4314,0.970261,0.821298,0.235557,0.414109,0.315698,0.35974,0.503252,0.794063,0.214428,0.00178581,0.630634,0.36151,0.183991,0.815887,0.625357,0.127365,0.361005,0.636109,0.938577,0.214109,0.0452856,0.719949,0.788256,0.124284,0.795334,0.240764,0.269877,0.97237,0.330244,0.0122785,0.642154,0.0832765,0.215271,0.0324117,0.222148,0.670398,0.378622,0.100636,0.770773,0.13051,0.541928,0.0029524,0.466934,0.529624,0.881443,0.440411,0.812114,0.637518,0.597385,0.751843,0.0858334,0.480042,0.998188,0.713409,0.929765,0.125672,0.6343,0.454724,0.666614,0.273167,0.0493091,0.0152181,0.205124,0.805017,0.359606,0.894563,0.28766,0.164981,0.856829,0.170058,0.375922,0.246748,0.948104,0.471558,0.91522,0.168503,0.890597,0.364246,0.370728,0.69732,0.333608,0.407571,0.278222,0.541559,0.920473,0.766656,0.879771,0.619248,0.646029,0.192383,0.907567,0.685823,|0.882906,0.493191,0.426251,0.106601,0.46182,0.85481,0.544123,0.663493,0.529723,0.551831,0.234334,0.509312,0.467914,0.214544,0.673726,0.109443,0.37122,0.102297,0.529773,0.929714,0.332508,0.657237,0.870528,0.419675,0.752409,0.292917,0.750935,0.673709,0.158293,0.797754,0.996347,0.102804,0.703185,0.884045,0.572838,0.65263,0.758044,0.997757,0.486153,0.782019,0.473887,0.921019,0.801727,0.992694,0.732187,0.315549,0.0134516,0.0590882,0.380851,0.363319,0.38355,0.951707,0.710373,0.89173,0.354872,0.476941,0.0678582,0.816468,0.861608,0.840946,0.190995,0.39435,0.602028,0.595634,0.98253,0.235393,0.479226,0.306168,0.927535,0.00623459,0.0790582,0.292398,0.767594,0.638988,0.25149,0.263121,0.21752,0.784289,0.370042,0.641423,0.238537,0.184088,0.263988,0.683136,0.0803168,0.6507,0.71415,0.633398,0.466939,0.0315247,0.161888,0.0228032,0.259696,0.834096,0.386624,0.825013,0.385993,0.625181,0.092083,0.561599,0.624655,0.812417,0.986745,0.288093,0.760145,0.299623,0.728398,0.799563,0.770816,0.334232,0.874705,0.113756,0.940165,0.528913,0.852083,0.9559,0.851307,0.793705,0.563704,0.278254,0.848538,0.493931,0.155073,0.933605,0.41419,0.0845433,0.745563,0.410477,0.87521,0.221985,0.318369,0.0766515,0.109883,0.0736242,0.437896,0.50488,0.0542869,0.95792,0.85281,0.228896,0.00558007,0.985814,0.989053,0.717108,0.444173,0.168232,0.901351,0.354837,0.332336,0.696599,0.585037,0.589993,0.740135,0.393297,0.0804828,0.64267,0.913954,0.565344,0.567049,0.298942,0.420667,0.370118,0.0677941,0.0797839,0.522537,0.980582,0.566809,0.468852,0.581078,0.358531,0.716244,0.773237,0.17357,0.637596,0.214322,0.375988,0.231136,0.185652,0.708567,0.166846,0.532553,0.121962,0.557629,0.876395,0.131253,0.454452,0.458847,0.11217,0.150121,0.73235,0.104809,0.485422,0.692374,0.818683,0.270519,0.9748,0.366109,0.161096,0.702369,0.138304,0.410225,0.367176,0.125277,0.723786,0.294563,0.951447,0.340294,0.725897,0.0674538,0.18632,0.31824,0.00388849,0.721139,0.517106,0.383532,0.0994746,0.559465,0.81686,0.987794,0.990202,0.492359,0.268727,0.0562019,0.856936,0.0765392,0.413586,0.379898,0.775548,0.734295,0.873629,0.432988,0.659088,0.573338,0.182908,0.720963,0.210549,0.227719,0.618236,0.311857,0.744384,0.555431,0.130662,0.591023,0.198782,0.727675,0.74038,0.0766082,0.949528,0.809485,0.530661,0.861499,0.344732,0.646564,0.6314,0.95997,0.990503,0.42395,0.107255,0.326196,0.457865,0.389906,0.629199,0.87463,0.691808,0.267663,0.869342,0.801305,0.512283,0.647325,0.380553,0.723449,0.682841,0.236714,0.252468,0.453682,0.0246809,0.833217,0.337884,0.312676,0.503831,0.589023,0.636439,0.262274,0.137693,0.582553,0.736418,0.796917,0.564827,0.751942,0.725626,0.98022,0.555219,0.668474,0.723607,0.760647,0.780088,0.99941,0.638375,0.765761,0.527387,0.0699482,0.627277,0.0194719,0.465688,0.950308,0.522268,0.479396,0.679675,0.557416,0.775036,0.27242,0.25839,0.418823,0.394987,0.00326997,0.771328,0.776567,0.763652,0.645188,0.975042,0.0260468,0.441171,0.160371,0.859672,0.709381,0.220229,0.801844,0.524306,0.407605,0.206335,0.693849,0.817156,0.208138,0.537553,0.932545,0.303832,0.77611,0.601817,0.0874954,0.410086,0.0110067,0.531739,0.958301,0.851504,0.774823,0.879613,0.32859,0.254234,0.466259,0.371661,0.563824,0.116546,0.561575,0.421139,0.308594,0.0578964,0.875409,0.163575,0.215858,0.847479,0.232468,0.753365,0.44375,0.282169,0.480675,0.907812,0.331726,0.437219,0.80769,0.589299,0.392092,0.660853,0.0997462,0.959753,0.932544,0.774822,0.84027,0.169342,0.639334,0.432429,0.629637,0.674756,0.81252,0.813386,0.762268,0.344276,0.148402,0.414854,0.758328,0.961007,0.674484,0.119413,0.629478,0.328472,0.252919,0.882916,0.142254,0.968178,0.383007,0.995133,0.528631,0.822102,0.0400645,0.138408,0.601356,0.581326,0.290252,0.267033,0.0937022,0.744322,0.335036,0.658561,0.0282609,0.880902,0.0865121,0.256973,0.276827,0.190395,0.443556,0.467631,0.911714,0.210963,0.467127,0.750087,0.462331,0.636045,0.158966,0.279002,0.0921711,0.753603,0.625508,0.314179,0.357313,0.685258,0.243388,0.145921,0.500848,0.129352,0.972448,0.778688,0.635569,0.996154,0.876851,0.269391,0.285215,0.781128,0.413361,0.906858,0.978002,0.706319,0.908917,0.567583,0.31478,0.016503,0.0789627,0.564448,0.229453,0.137934,0.543918,0.500756,0.396345,0.61788,0.396496,0.484078,0.344614,0.801719,0.0932149,0.643309,0.389836,0.939863,0.390962,0.843508,0.126753,0.117916,0.0383134,0.391133,0.24838,0.590669,0.748668,0.90664,0.221395,0.121119,0.913499,0.0515025,0.193259,0.623012,0.75283,0.656006,0.703721,0.67811,0.00910383,0.50813,0.396163,0.463408,0.0447229,0.881708,0.351642,0.314083,0.231395,0.889866,0.393358,0.6765,0.243751,0.961441,0.0280133,0.959463,0.874014,0.473886,0.683272,0.509894,0.575064,0.617554,0.654119,0.878985,0.0317903,0.436119,0.213388,0.0145829,0.497669,0.851337,0.467842,0.905071,0.129095,0.541604,0.713758,0.995744,0.783425,0.579071,0.122849,0.183506,0.32769,0.0364598,0.963853,0.366793,0.777806,0.273806,0.894167,0.581909,0.775778,0.0733613,0.555344,0.0378804,0.820015,0.229299,0.746933,0.133727,0.088107,0.0506405,0.100179,0.17883,0.87812,0.930556,0.0544034,0.768828,0.147228,0.076772,0.737632,0.926788,0.776756,0.677745,0.911568,0.201542,0.51354,0.666908,0.426277,0.794214,0.907249,0.457452,0.473176,0.265887,0.465383,0.970704,0.938949,0.232785,0.994015,0.193209,0.794192,0.90831,0.645867,0.160754,0.982143,0.78552,0.387908,0.941463,0.27565,0.295027,0.242408,0.628532,0.365458,0.936607,0.183559,0.963674,0.562725,0.869872,0.259497,0.584286,0.34292,0.787968,0.82218,0.382453,0.429772,0.577629,0.0481727,0.348513,0.940585,0.948475,0.190076,0.248584,0.4899,0.0186069,0.381707,0.926544,0.122722,0.660229,0.532033,0.864705,0.338686,0.699027,0.053769,0.344124,0.355139,0.171976,0.0054906,0.522805,0.131887,0.805641,0.342189,0.0376784,0.731921,0.190007,0.985242,0.0101577,0.180002,0.512662,0.229357,0.262111,0.501633,0.223834,0.327522,0.16069,0.769517,0.00607824,0.586205,0.496762,0.209605,0.549746,0.127816,0.449707,0.176383,0.606811,0.572277,0.462621,0.249082,0.432053,0.195178,0.371192,0.104463,0.253287,0.111865,0.749908,0.818742,0.555297,0.682671,0.363823,0.611636,0.477241,0.181543,0.380899,0.396542,0.85174,0.714032,0.701709,0.505802,0.901917,0.243043,0.0734977,0.239232,0.50476,0.30983,0.0340496,0.0562907,0.133298,0.238971,0.644743,0.848953,0.862114,0.756559,0.989755,0.779579,0.142071,0.540882,0.00222892,0.768981,0.745831,0.749483,0.423439,0.684367,0.991862,0.813227,0.142203,0.00510079,0.00717223,0.534538,0.524159,0.517021,0.57328,0.964537,0.657547,0.112312,0.0307434,0.0942682,0.906263,0.160894,0.597799,0.64195,0.801834,0.313056,0.687722,0.235995,0.900331,0.680739,0.416523,0.615745,0.553848,0.0971051,0.311746,0.40015,0.0344461,0.625575,0.356874,0.456068,0.42243,0.184798,0.192398,0.748826,0.540991,0.123297,0.47949,0.183649,0.160154,0.237216,0.242144,0.311485,0.710515,0.770135,0.729002,0.188006,0.11761,0.0234975,0.955173,0.819484,0.837875,0.596143,0.862082,0.0897744,0.220123,0.798445,0.803967,0.304911,0.371529,0.0870975,0.106885,0.518233,0.908782,0.0230766,0.533239,0.550792,0.333484,0.472351,0.412611,0.618234,0.769509,0.273814,0.79477,0.50985,0.0603505,0.335132,0.176178,0.0884449,0.603132,0.833013,0.504225,0.462223,0.579537,0.281931,0.518786,0.944072,0.571825,0.551054,0.31099,0.764153,0.103501,0.513243,0.983725,0.48293,0.120641,0.550888,0.00610608,0.593092,0.759761,0.272174,0.668652,0.123388,0.590189,0.0109317,0.628673,0.0279099,0.465882,0.562516,0.480152,0.307077,0.496351,0.114709,0.193332,0.0435758,0.508294,0.357717,0.103336,0.797991,0.0855759,0.0958439,0.569923,0.36227,0.731158,0.334155,0.0103763,0.388972,0.435522,0.630705,0.546744,0.228932,0.374768,0.873805,0.434557,0.17825,0.241582,0.849082,0.497555,0.56649,0.909556,0.557291,0.890021,0.868372,0.546725,0.843774,0.890696,0.709918,0.244868,0.680853,0.863685,0.958335,0.41723,0.222633,0.0364841,0.494082,0.0271292,0.361105,0.987414,0.349207,0.045971,0.0633804,0.384773,0.216122,0.408743,0.222013,0.968223,0.89822,0.746411,0.355788,0.415554,0.112141,0.48,0.0234989,0.757396,0.578366,0.0831116,0.336484,0.346364,0.345466,0.280724,0.957192,0.131851,0.945258,0.554494,0.0852488,0.0598443,0.232627,0.944603,0.584393,0.696518,0.109904,0.623999,0.980469,0.342676,0.473074,0.826857,0.487342,0.462368,0.758838,0.912176,0.133725,0.89017,0.316648,0.731884,0.218283,0.951488,0.361169,0.69771,0.69448,0.23663,0.218343,0.313033,0.873821,0.045324,0.472589,0.520201,0.0388678,0.322997,0.210633,0.892979,0.965984,0.603182,0.0796916,0.0491154,0.644303,0.870574,0.528799,0.0369253,0.679868,0.667914,0.755404,0.567684,0.355627,0.154454,0.716343,0.432786,0.674696,0.559871,0.704585,0.999945,0.853895,0.0502549,0.427526,0.821133,0.665398,0.779637,0.654171,0.951594,0.59592,0.836696,0.282547,0.80335,0.95871,0.221133,0.823748,0.731251,0.669498,0.770468,0.600235,0.590302,0.449532,0.190585,0.280634,0.256702,0.0907406,0.644823,0.154077,0.68092,0.780321,0.596373,0.822216,0.975919,0.423082,0.0423769,0.792355,0.975187,0.913969,0.927469,0.197999,0.28385,0.731224,0.291654,0.618065,0.196081,0.328377,0.775617,0.698675,0.297292,0.402583,0.462508,0.522838,0.573856,0.640036,0.763761,0.760565,0.863661,0.97004,0.654142,0.399451,0.245392,|0.249197,0.100565,0.483159,0.166711,0.163111,0.230004,0.69337,0.401569,0.631572,0.523561,0.841178,0.760427,0.412486,0.582972,0.575328,0.276738,0.778766,0.290969,0.465645,0.297246,0.0465333,0.472096,0.179629,0.746206,0.411392,0.256699,0.148726,0.0197699,0.0342568,0.296096,0.259625,0.0622312,0.172369,0.580367,0.0775261,0.531116,0.000613093,0.693509,0.476968,0.330779,0.880087,0.87011,0.455228,0.00754136,0.50956,0.852859,0.343614,0.0537442,0.796462,0.0723851,0.706266,0.915358,0.655899,0.989541,0.410685,0.98413,0.634543,0.424712,0.821618,0.513418,0.0527932,0.711979,0.232821,0.880099,0.542007,0.674581,0.599818,0.575558,0.16558,0.521,0.323216,0.969488,0.178681,0.0434884,0.894417,0.410204,0.425201,0.0743539,0.609057,0.0547343,0.237681,0.860173,0.024096,0.664909,0.401481,0.287016,0.468501,0.769261,0.956147,0.426196,0.439606,0.406401,0.140206,0.401325,0.416123,0.302808,0.0903124,0.798737,0.101887,0.730456,0.853074,0.390761,0.138826,0.272967,0.0849223,0.739137,0.202756,0.519065,0.990475,0.238756,0.738934,0.0537902,0.255841,0.932882,0.102983,0.628259,0.0639542,0.248226,0.226032,0.737508,0.426203,0.0320572,0.128158,0.491513,0.604169,0.392675,0.53049,0.251088,0.720728,0.240059,0.142238,0.100784,0.545191,0.858915,0.887789,0.467278,0.125822,0.696827,0.76961,0.773844,0.263265,0.187799,0.561259,0.85443,0.159562,0.173202,0.243974,0.446089,0.0380859,0.461922,0.148611,0.266273,0.84966,0.366321,0.814199,0.0545118,0.38344,0.851256,0.451183,0.927569,0.468105,0.671144,0.646711,0.0791367,0.332172,0.352656,0.603088,0.39125,0.644861,0.323124,0.222287,0.596955,0.13595,0.722735,0.329163,0.955684,0.882978,0.290269,0.948518,0.0748531,0.177222,0.547626,0.636688,0.489291,0.208447,0.456531,0.692754,0.527683,0.567108,0.397045,0.270903,0.442801,0.271002,0.872162,0.727223,0.968045,0.410835,0.210001,0.98665,0.837352,0.649044,0.470707,0.5253,0.0639278,0.777052,0.789907,0.533201,0.148834,0.157788,0.676323,0.96815,0.0131433,0.25111,0.360527,0.219411,0.273721,0.420106,0.42934,0.648297,0.881524,0.862637,0.336074,0.724577,0.539018,0.956687,0.210021,0.398211,0.289449,0.979158,0.532316,0.805763,0.533506,0.639853,0.196619,0.31064,0.746897,0.365162,0.211995,0.411559,0.583788,0.575017,0.458699,0.629712,0.005606,0.0293589,0.163431,0.654899,0.367217,0.657726,0.852263,0.501774,0.672762,0.829453,0.728902,0.378373,0.00953257,0.983572,0.947979,0.935106,0.451984,0.536343,0.70137,0.43214,0.677887,0.109727,0.170031,0.383745,0.0573029,0.362957,0.174708,0.537418,0.186157,0.17648,0.127025,0.483855,0.0334623,0.10279,0.0188826,0.403003,0.2727,0.19144,0.964676,0.504796,0.190706,0.034133,0.329467,0.156028,0.998618,0.0428216,0.521243,0.293319,0.352662,0.132422,0.52065,0.335148,0.0709259,0.226639,0.292591,0.453287,0.626044,0.448638,0.444075,0.0587578,0.533629,0.516172,0.648209,0.49073,0.923038,0.308898,0.446254,0.371578,0.00521463,0.990523,0.983765,0.290281,0.327563,0.795955,0.786269,0.886456,0.969887,0.805067,0.541712,0.451119,0.62997,0.102756,0.785187,0.8542,0.971,0.445011,0.961906,0.812633,0.635108,0.539065,0.745763,0.102287,0.721225,0.583883,0.763978,0.65159,0.101583,0.93275,0.505919,0.503107,0.893747,0.376833,0.331109,0.492087,0.648839,0.0592853,0.296177,0.306002,0.278246,0.200214,0.230808,0.48111,0.781233,0.810402,0.614961,0.538311,0.306669,0.086746,0.139894,0.908182,0.252701,0.544555,0.981735,0.0362954,0.637091,0.193356,0.339914,0.412778,0.0598224,0.644872,0.949355,0.180662,0.253806,0.400558,0.846484,0.18291,0.606285,0.737106,0.174708,0.97304,0.224466,0.41089,0.152843,0.14223,0.63069,0.570184,0.113398,0.996421,0.971637,0.598538,0.173089,0.115938,0.372184,0.224148,0.726783,0.150507,0.441042,0.00110584,0.693981,0.0801737,0.349278,0.876422,0.045486,0.916075,0.560612,0.28542,0.333959,0.118104,0.360341,0.430225,0.753826,0.31279,0.403138,0.290965,0.924418,0.0929633,0.195406,0.167788,0.177479,0.484246,0.359312,0.0622093,0.957351,0.392536,0.664353,0.196346,0.884693,0.0964674,0.337867,0.340389,0.137793,0.439199,0.856765,0.248524,0.451952,0.0109536,0.67743,0.656022,0.158009,0.790517,0.340182,0.094499,0.61605,0.338998,0.896927,0.187725,0.133534,0.538415,0.611513,0.103401,0.00572008,0.525237,0.270041,0.587234,0.300673,0.561697,0.410085,0.647039,0.811313,0.017619,0.972319,0.0421515,0.0665628,0.8381,0.289431,0.204387,0.301443,0.249958,0.110806,0.522872,0.811909,0.885704,0.121052,0.284047,0.563215,0.895651,0.211418,0.163395,0.158872,0.308902,0.952068,0.167686,0.569014,0.866897,0.522022,0.986366,0.0399414,0.621596,0.0292558,0.395307,0.380893,0.361368,0.294753,0.190879,0.708866,0.216971,0.103945,0.969465,0.882463,0.728401,0.60047,0.660456,0.66039,0.898277,0.79072,0.431008,0.00147891,0.80205,0.264588,0.901291,0.442193,0.364626,0.679252,0.804999,0.0736685,0.484441,0.766202,0.267894,0.521227,0.107057,0.900081,0.84753,0.954767,0.594435,0.0624721,0.297064,0.488117,0.615997,0.658443,0.753892,0.389331,0.094443,0.419311,0.282624,0.127982,0.833673,0.623187,0.0650881,0.201381,0.194848,0.604417,0.756451,0.893997,0.675542,0.807012,0.124243,0.988604,0.648749,0.227314,0.881777,0.244197,0.341838,0.364114,0.757439,0.0515935,0.830509,0.336735,0.561204,0.871668,0.814086,0.426564,0.61431,0.565192,0.319499,0.603016,0.350152,0.610515,0.353369,0.822883,0.126299,0.22106,0.638379,0.323679,0.377559,0.333219,0.367733,0.175532,0.122196,0.514715,0.806267,0.382637,0.665565,0.815207,0.264398,0.878446,0.440526,0.0507936,0.540398,0.592847,0.213528,0.840025,0.238174,0.294315,0.483528,0.754868,0.850335,0.467323,0.644646,0.670286,0.725955,0.631319,0.994939,0.444713,0.714334,0.396803,0.125046,0.917853,0.526894,0.185696,0.491902,0.464951,0.531911,0.269829,0.231745,0.0493392,0.537216,0.190695,0.0735111,0.708575,0.517671,0.716865,0.924431,0.779349,0.557966,0.307329,0.255238,0.831999,0.491231,0.658745,0.496027,0.72793,0.274457,0.979056,0.930107,0.852403,0.00140119,0.0104699,0.33556,0.855667,0.336923,0.511641,0.265413,0.775132,0.663188,0.319468,0.235808,0.162861,0.0129626,0.302865,0.159385,0.576616,0.564783,0.347688,0.959769,0.795677,0.999441,0.700216,0.595149,0.0432779,0.136969,0.334731,0.780522,0.552778,0.420306,0.150316,0.0603546,0.854409,0.491229,0.532739,0.746516,0.318167,0.888981,0.275521,0.980224,0.508443,0.167132,0.570571,0.108641,0.673868,0.578807,0.281727,0.0806231,0.422662,0.928091,0.727118,0.410579,0.359325,0.7241,0.254114,0.944669,0.953299,0.313606,0.647383,0.663354,0.48175,0.63972,0.412766,0.0655496,0.797199,0.965905,0.0473071,0.71805,0.642936,0.312337,0.784815,0.57809,0.290664,0.130419,0.80382,0.0180951,0.579047,0.78059,0.551783,0.0387415,0.673182,0.468394,0.35565,0.0813885,0.767347,0.0124905,0.378642,0.980683,0.801805,0.693537,0.872307,0.908994,0.0921959,0.0854557,0.600564,0.296392,0.659218,0.29707,0.424012,0.763019,0.620452,0.666842,0.732942,0.913264,0.534373,0.54893,0.846263,0.187206,0.722299,0.798614,0.473118,0.697029,0.150287,0.232266,0.577106,0.223658,0.385855,0.862179,0.570839,0.552938,0.719439,0.348119,0.967634,0.142922,0.363899,0.0869178,0.935005,0.171612,0.731112,0.98312,0.978687,0.291987,0.0440992,0.77632,0.131667,0.771965,0.621695,0.292257,0.51734,0.50742,0.998605,0.80366,0.219649,0.0309834,0.80197,0.285241,0.755459,0.525088,0.554741,0.0513662,0.485831,0.684207,0.0543612,0.215765,0.325435,0.932634,0.640618,0.184736,0.484849,0.127935,0.887447,0.700533,0.901376,0.416288,0.287636,0.233264,0.359115,0.117876,0.981232,0.856615,0.37453,0.487325,0.64503,0.117051,0.658734,0.0101576,0.0962535,0.988793,0.206105,0.633564,0.575539,0.129653,0.513247,0.872829,0.561153,0.763331,0.589033,0.00845492,0.312364,0.116618,0.180521,0.832305,0.732776,0.138299,0.51688,0.248345,0.255104,0.694864,0.149766,0.753274,0.122022,0.747039,0.397277,0.788391,0.458622,0.193842,0.930274,0.453085,0.343691,0.101719,0.33205,0.905636,0.794191,0.349166,0.614209,0.904383,0.131393,0.234711,0.658364,0.0436164,0.584495,0.355391,0.730557,0.553591,0.871427,0.939317,0.937406,0.580263,0.302711,0.628271,0.269695,0.204058,0.319117,0.319265,0.09521,0.542815,0.357048,0.764999,0.0755693,0.323341,0.740144,0.562327,0.937443,0.7808,0.197623,0.965651,0.773628,0.37211,0.463108,0.690091,0.602257,0.0762897,0.617924,0.272529,0.64949,0.552731,0.288424,0.788022,0.0178599,0.13395,0.994314,0.523719,0.464617,0.0278577,0.99559,0.27525,0.762987,0.369736,0.692012,0.981358,0.385829,0.796461,0.485956,0.82435,0.985722,0.261712,0.0668853,0.915887,0.792781,0.527998,0.075615,0.760235,0.0348703,0.828746,0.262267,0.680261,0.119044,0.642575,0.0584579,0.0411151,0.854925,0.748794,0.691876,0.764141,0.488677,0.339053,0.653881,0.582475,0.790241,0.873872,0.473398,0.854319,0.435519,0.559991,0.831697,0.829332,0.525183,0.545104,0.487071,0.769238,0.360488,0.938798,0.928105,0.456271,0.232462,0.968682,0.0756485,0.492612,0.753532,0.264547,0.102261,0.2206,0.89532,0.522378,0.319827,0.988641,0.780073,0.637998,0.508748,0.0795394,0.847675,0.607096,0.0254139,0.916303,0.296908,0.00910538,0.566824,0.416172,0.264436,0.343974,0.879715,0.626031,0.918409,0.0494953,0.755509,0.890352,0.113182,0.535121,0.0103321,0.997589,0.980149,0.676032,0.538565,0.700589,0.918737,0.411391,0.032701,0.220928,0.71783,0.312459,0.804005,0.130518,0.405996,|0.443002,0.373697,0.522505,0.527021,0.952119,0.866914,0.161362,0.512109,0.786338,0.543322,0.894554,0.503174,0.328573,0.970317,0.0575277,0.234703,0.595302,0.658881,0.880163,0.986154,0.0543235,0.827802,0.389117,0.328193,0.669708,0.624666,0.873601,0.571585,0.853656,0.0480265,0.5912,0.335474,0.315095,0.0487707,0.19271,0.0135481,0.930526,0.652496,0.402813,0.655598,0.858101,0.187289,0.272556,0.988755,0.754296,0.909388,0.650158,0.729256,0.513128,0.187181,0.616783,0.0830466,0.887531,0.0828108,0.315532,0.859958,0.289235,0.714145,0.684297,0.154035,0.881809,0.0212176,0.262264,0.924486,0.800964,0.573091,0.821835,0.824364,0.94811,0.0963957,0.342602,0.146264,0.681015,0.6221,0.978055,0.0768453,0.55368,0.541155,0.31098,0.0919104,0.959696,0.672813,0.409062,0.59228,0.322228,0.0337368,0.654754,0.905027,0.902764,0.0958502,0.927172,0.588728,0.0163811,0.890129,0.485911,0.856907,0.196199,0.210541,0.0927386,0.754964,0.0290083,0.769254,0.57186,0.600113,0.716341,0.585261,0.574834,0.337461,0.945654,0.267588,0.680746,0.884701,0.85617,0.931754,0.861058,0.506476,0.197096,0.792052,0.747133,0.698453,0.83332,0.724601,0.761495,0.0801641,0.86288,0.0989446,0.0827385,0.489136,0.739733,0.21209,0.996214,0.714456,0.683607,0.0899321,0.656855,0.409508,0.411626,0.849972,0.880886,0.874379,0.882894,0.945283,0.953239,0.0594451,0.748696,0.675484,0.0509099,0.428674,0.435998,0.104955,0.803628,0.588992,0.766801,0.564217,0.111196,0.865669,0.304226,0.614869,0.439739,0.2667,0.359622,0.320765,0.158189,0.402249,0.296551,0.482972,0.205958,0.878457,0.207744,0.883719,0.885671,0.0904934,0.535188,0.180291,0.673419,0.0697547,0.121285,0.379506,0.865972,0.873169,0.642094,0.730694,0.755281,0.425159,0.505509,0.317027,0.287087,0.391854,0.321609,0.506457,0.822511,0.728699,0.867624,0.989505,0.404646,0.410513,0.838751,0.174512,0.432604,0.610357,0.395536,0.161431,0.844674,0.263566,0.786388,0.364826,0.554365,0.122348,0.476426,0.174414,0.689465,0.617794,0.634016,0.625004,0.128864,0.724388,0.483846,0.297597,0.590074,0.204963,0.355253,0.0220659,0.0436178,0.684264,0.162749,0.681607,0.97049,0.266723,0.24549,0.0714609,0.632039,0.126903,0.695926,0.536464,0.656829,0.722234,0.472422,0.871935,0.64877,0.043702,0.412466,0.0466634,0.530645,0.476719,0.999138,0.038371,0.130558,0.5442,0.555606,0.544353,0.354944,0.504913,0.542731,0.850316,0.320209,0.32279,0.740849,0.189856,0.0495149,0.581033,0.251304,0.639873,0.149638,0.0367047,0.958568,0.759455,0.075982,0.0172438,0.536772,0.269025,0.945462,0.106444,0.762764,0.829513,0.98856,0.628803,0.042292,0.2544,0.493357,0.0737187,0.961844,0.697268,0.653537,0.508446,0.674526,0.910804,0.671148,0.67255,0.697955,0.856995,0.00236899,0.135214,0.0982055,0.671091,0.233758,0.929311,0.446334,0.873165,0.731289,0.88415,0.780825,0.758119,0.679713,0.418404,0.334143,0.522939,0.674855,0.458165,0.658697,0.901168,0.0120544,0.435419,0.0703875,0.27008,0.315313,0.68696,0.0612181,0.921677,0.741248,0.565526,0.478503,0.213669,0.620103,0.137071,0.387344,0.676363,0.559609,0.211761,0.085708,0.080596,0.24612,0.718442,0.335374,0.980047,0.0759742,0.450378,0.978814,0.0716134,0.925755,0.561446,0.367779,0.37153,0.535287,0.462539,0.225876,0.723299,0.954283,0.201704,0.235468,0.495154,0.978717,0.542405,0.463341,0.25469,0.168705,0.522376,0.731319,0.604278,0.804894,0.529248,0.985079,0.202385,0.415125,0.829483,0.961983,0.593808,0.72017,0.789905,0.135586,0.330181,0.0500662,0.00970995,0.0272303,0.810532,0.193105,0.184661,0.786214,0.749666,0.652504,0.305311,0.876752,0.881317,0.463194,0.8415,0.461036,0.0939818,0.317161,0.728338,0.10055,0.0965614,0.309156,0.248295,0.657107,0.994217,0.453669,0.596226,0.108187,0.940678,0.792156,0.837412,0.762316,0.283158,0.533585,0.315002,0.932263,0.674399,0.463118,0.253573,0.416208,0.812988,0.879232,0.970072,0.852425,0.375026,0.985632,0.0891494,0.392727,0.862039,0.935903,0.488719,0.896284,0.378656,0.365799,0.517147,0.687663,0.174672,0.995547,0.469655,0.871176,0.890002,0.284425,0.88541,0.116366,0.145835,0.327555,0.462462,0.152903,0.868663,0.777815,0.0630873,0.21708,0.283263,0.629353,0.312986,0.28002,0.525937,0.437805,0.460174,0.439845,0.909979,0.9961,0.601838,0.290242,0.591209,0.32499,0.960288,0.0562597,0.390561,0.222292,0.85585,0.155215,0.938124,0.927721,0.128988,0.892414,0.538181,0.56417,0.834918,0.202275,0.326623,0.961284,0.255554,0.596754,0.42964,0.1901,0.0887284,0.0291107,0.171775,0.0506403,0.276283,0.274509,0.482278,0.387514,0.853396,0.778961,0.0466239,0.359166,0.290666,0.85521,0.223357,0.517292,0.319809,0.143967,0.743397,0.0530013,0.372863,0.474636,0.925523,0.845506,0.619613,0.958019,0.321657,0.0737302,0.492917,0.350069,0.419751,0.28187,0.901167,0.387609,0.920628,0.57471,0.317291,0.547393,0.0323751,0.947897,0.35727,0.846723,0.91165,0.496737,0.355462,0.885468,0.20595,0.790568,0.0225243,0.492865,0.876303,0.428487,0.480487,0.936349,0.324514,0.939912,0.121963,0.661191,0.443327,0.43681,0.895742,0.164918,0.392662,0.149642,0.306993,0.879505,0.468246,0.272976,0.108023,0.938921,0.779165,0.371398,0.870245,0.901169,0.522027,0.200355,0.484207,0.0893568,0.595493,0.146512,0.621876,0.851461,0.886578,0.022895,0.565814,0.29254,0.768962,0.343238,0.453177,0.35428,0.0994133,0.310497,0.359362,0.821584,0.390477,0.344263,0.909764,0.846731,0.0104629,0.305922,0.928454,0.4885,0.00333983,0.73749,0.285075,0.427579,0.405263,0.271088,0.344183,0.618505,0.045631,0.899536,0.6647,0.850798,0.145757,0.41935,0.183318,0.819852,0.755281,0.364173,0.181879,0.096097,0.337366,0.0488262,0.597232,0.156829,0.58421,0.591705,0.0257612,0.168811,0.460459,0.394622,0.99246,0.677131,0.878882,0.444504,0.510838,0.352927,0.545047,0.226473,0.254943,0.513485,0.355175,0.604575,0.87165,0.90611,0.285548,0.788117,0.360285,0.340661,0.240457,0.0853378,0.880904,0.494165,0.249454,0.575602,0.557017,0.140556,0.63621,0.0232669,0.628103,0.173,0.49753,0.804235,0.311564,0.53355,0.376561,0.193911,0.35604,0.521429,0.351196,0.603809,0.117356,0.9751,0.646479,0.229909,0.582812,0.786155,0.679508,0.183601,0.998897,0.76079,0.146953,0.807756,0.0360774,0.36385,0.450777,0.0452573,0.255664,0.22766,0.018335,0.558377,0.880544,0.813969,0.830533,0.61357,0.954198,0.771283,0.711974,0.147169,0.270692,0.360902,0.444286,0.184188,0.621116,0.587224,0.553871,0.104952,0.27705,0.394415,0.98553,0.322479,0.401089,0.426043,0.416544,0.217708,0.59643,0.653203,0.121461,0.428626,0.72226,0.371262,0.651351,0.619098,0.344275,0.22804,0.352287,0.767283,0.601571,0.325353,0.810624,0.275901,0.323165,0.388557,0.202112,0.00900793,0.296213,0.410133,0.562249,0.71112,0.831389,0.0798807,0.943752,0.220029,0.589634,0.0370651,0.606054,0.404181,0.368443,0.498746,0.372372,0.518379,0.912498,0.244401,0.881502,0.220726,0.595448,0.123273,0.127819,0.634941,0.470218,0.646698,0.701448,0.666888,0.977861,0.32467,0.591453,0.915132,0.806861,0.242644,0.438493,0.334355,0.193938,0.815058,0.628844,0.333873,0.486703,0.936382,0.534082,0.659959,0.637788,0.462993,0.397566,0.834441,0.685449,0.604495,0.104739,0.970241,0.172548,0.957369,0.724262,0.984706,0.762035,0.280931,0.645542,0.446971,0.854618,0.134494,0.385346,0.282002,0.907538,0.93033,0.830153,0.658541,0.0948271,0.735397,0.306395,0.782808,0.83996,0.210244,0.0576057,0.383829,0.421881,0.472645,0.458731,0.403508,0.460222,0.614077,0.358782,0.536238,0.466075,0.779787,0.0416476,0.213889,0.574385,0.00634891,0.142951,0.0035345,0.100482,0.0549431,0.120281,0.210218,0.986706,0.329207,0.760723,0.8114,0.60481,0.317176,0.962884,0.801053,0.41432,0.846475,0.926333,0.963768,0.25984,0.841208,0.955152,0.0963596,0.317275,0.066469,0.442011,0.761324,0.993313,0.382065,0.516803,0.0412165,0.531682,0.336024,0.851174,0.260235,0.778374,0.329524,0.243939,0.908497,0.794091,0.0379311,0.63145,0.637365,0.889018,0.612288,0.221158,0.381484,0.234066,0.98525,0.2932,0.562055,0.967186,0.439852,0.263803,0.299434,0.972713,0.115267,0.167853,0.588568,0.388476,0.179835,0.157444,0.702587,0.486164,0.447446,0.386554,0.520677,0.199428,0.668702,0.146561,0.843916,0.152735,0.102921,0.912384,0.259138,0.633888,0.242284,0.390626,0.299037,0.164912,0.12702,0.0386807,0.848366,0.971018,0.915554,0.0251893,0.168204,0.41686,0.634385,0.103444,0.59578,0.477054,0.446609,0.228538,0.63827,0.0484902,0.37368,0.747272,0.641184,0.0485743,0.82747,0.156691,0.764521,0.136459,0.0883811,0.246276,0.337384,0.632429,0.819138,0.971841,0.141675,0.819631,0.272392,0.770326,0.646643,0.232181,0.478819,0.941624,0.146308,0.0455871,0.0383645,0.898509,0.890542,0.375344,0.168243,0.565903,0.132469,0.885774,0.106702,0.651897,0.978072,0.297936,0.184654,0.231762,0.585027,0.439588,0.562406,0.408915,0.737812,0.660568,0.587605,0.149347,0.503258,0.588395,0.661477,0.411093,0.477228,0.591247,0.340878,0.0933159,0.293678,0.447329,0.627587,0.83827,0.0979302,0.929511,0.46972,0.610957,0.71758,0.220706,0.0347809,0.293255,0.59507,0.12288,0.907715,0.647,0.913912,0.203558,0.713353,0.449071,0.468524,0.982031,0.869799,0.685137,0.452435,0.472318,0.0888081,0.420381,0.662579,0.824287,0.541174,0.219153,0.545628,0.179911,0.823224,0.711109,0.360882,0.924069,0.317215,0.0115115,0.597232,0.792277,0.559427,0.524919,0.00384074,0.170498,0.85645,0.0153899,0.10647,0.364723,|0.167853,0.47595,0.331289,0.720081,0.84421,0.500052,0.0178571,0.887107,0.816092,0.686196,0.371599,0.109552,0.847454,0.643012,0.721475,0.732103,0.589144,0.118907,0.192572,0.778133,0.452954,0.675249,0.19531,0.324617,0.52021,0.10116,0.622905,0.409254,0.151063,0.58127,0.811993,0.938114,0.584677,0.776175,0.300944,0.791792,0.39199,0.759614,0.0474141,0.310917,0.221204,0.569584,0.912151,0.434635,0.660872,0.355771,0.195613,0.268138,0.461756,0.287163,0.626375,0.724476,0.417817,0.370853,0.878691,0.520591,0.994497,0.989698,0.781122,0.488021,0.312725,0.766303,0.639542,0.0248793,0.576703,0.718901,0.211354,0.827343,0.164127,0.276459,0.340234,0.00865382,0.199032,0.917474,0.237595,0.408993,0.838916,0.518574,0.762557,0.838783,0.314789,0.470096,0.943144,0.348479,0.849022,0.828878,0.64659,0.0140301,0.531141,0.582608,0.0124547,0.15879,0.889964,0.595516,0.315266,0.917666,0.504968,0.477012,0.737119,0.800152,0.653405,0.906863,0.886564,0.266662,0.877849,0.312028,0.0928375,0.449681,0.96595,0.744368,0.0372329,0.756991,0.894965,0.988682,0.960986,0.583364,0.954749,0.481246,0.439272,0.835367,0.540276,0.621335,0.806275,0.619763,0.323647,0.233863,0.923479,0.34854,0.649818,0.690568,0.420712,0.537213,0.00337124,0.500206,0.858724,0.179667,0.238971,0.294507,0.076006,0.868202,0.972344,0.819713,0.70659,0.782012,0.901021,0.0649074,0.821477,0.674032,0.632554,0.905238,0.260503,0.382994,0.947723,0.22645,0.872428,0.0224776,0.355349,0.98793,0.171635,0.364242,0.533057,0.238704,0.0304089,0.666296,0.517359,0.691603,0.146052,0.863441,0.480998,0.530653,0.862864,0.677536,0.0477651,0.194252,0.455278,0.611303,0.765169,0.747618,0.847844,0.467858,0.807131,0.0531359,0.988449,0.575186,0.83919,0.642784,0.788078,0.978294,0.129608,0.585133,0.667441,0.127126,0.875829,0.227369,0.315347,0.219206,0.0273223,0.068657,0.14836,0.257745,0.308819,0.279127,0.347002,0.663229,0.352598,0.0441405,0.946094,0.984155,0.333732,0.222536,0.936899,0.928713,0.765864,0.819157,0.858498,0.162148,0.645833,0.0940543,0.568268,0.951736,0.129682,0.373775,0.595653,0.931805,0.107892,0.372679,0.250613,0.988145,0.673698,0.587163,0.762199,0.46632,0.00863558,0.0285513,0.0740578,0.507495,0.476416,0.466146,0.641664,0.576421,0.60935,0.52642,0.827344,0.747501,0.137138,0.0296367,0.798287,0.264142,0.888689,0.807394,0.679188,0.980394,0.848164,0.716474,0.805362,0.47661,0.496776,0.615767,0.772215,0.550791,0.112845,0.389482,0.0100343,0.0742201,0.920071,0.10653,0.572445,0.469439,0.570833,0.783927,0.166569,0.0265943,0.94654,0.955492,0.0101063,0.043433,0.370242,0.227046,0.0191809,0.589418,0.655574,0.90763,0.371154,0.70853,0.478628,0.181739,0.806172,0.596795,0.0255609,0.786843,0.760107,0.141593,0.619793,0.269774,0.854052,0.077444,0.353686,0.0221847,0.0979767,0.542934,0.930571,0.761631,0.177991,0.353549,0.137638,0.096592,0.124423,0.269793,0.0175743,0.79891,0.851419,0.197987,0.11291,0.819315,0.146912,0.91686,0.412356,0.934278,0.402635,0.311738,0.73005,0.362294,0.962476,0.518565,0.835515,0.67246,0.00795585,0.674813,0.880363,0.751862,0.47017,0.211591,0.538735,0.997608,0.0174716,0.401259,0.102393,0.394575,0.954132,0.626506,0.556917,0.935655,0.141731,0.223386,0.675395,0.745319,0.553369,0.34526,0.382725,0.208606,0.18086,0.586705,0.0264845,0.0959693,0.419135,0.800849,0.40341,0.2237,0.358403,0.503058,0.407924,0.705059,0.962628,0.859319,0.0816346,0.774867,0.789502,0.351401,0.866777,0.419821,0.598963,0.327123,0.551554,0.389174,0.598941,0.508258,0.481179,0.0627506,0.687635,0.6102,0.275421,0.792526,0.978465,0.46905,0.0568818,0.00716335,0.106617,0.358343,0.301573,0.405451,0.463593,0.310537,0.122928,0.774125,0.39135,0.865377,0.395102,0.166606,0.284685,0.457383,0.761612,0.274468,0.278601,0.0450479,0.147481,0.2487,0.155951,0.103203,0.171567,0.952551,0.635923,0.046958,0.684266,0.179,0.959819,0.163576,0.370034,0.272715,0.385424,0.156727,0.803125,0.199366,0.862944,0.894123,0.172761,0.648376,0.167783,0.689475,0.775131,0.850767,0.895368,0.941109,0.709854,0.391259,0.731153,0.662426,0.0331134,0.964999,0.739115,0.0734724,0.955077,0.610934,0.693372,0.73607,0.21403,0.0925043,0.11416,0.319151,0.284307,0.943859,0.460161,0.727814,0.382832,0.233269,0.766077,0.104132,0.381716,0.0539539,0.823094,0.966304,0.256881,0.386429,0.577309,0.917427,0.0592936,0.167701,0.693751,0.396424,0.942281,0.458916,0.747449,0.335282,0.383354,0.325462,0.0538988,0.801852,0.517205,0.381015,0.661112,0.860646,0.0769489,0.601359,0.907199,0.196504,0.0738431,0.893215,0.471692,0.983665,0.313346,0.510069,0.495842,0.912454,0.85586,0.886762,0.611475,0.874353,0.659665,0.578953,0.252009,0.958358,0.0863785,0.550525,0.632785,0.0993848,0.89617,0.0905064,0.234437,0.732873,0.367689,0.7134,0.934166,0.210206,0.326449,0.030772,0.525814,0.788518,0.32605,0.6408,0.467062,0.32083,0.0453115,0.377171,0.823308,0.238059,0.238919,0.511931,0.0887108,0.326891,0.271643,0.687418,0.164445,0.280374,0.000967145,0.529481,0.127798,0.197855,0.930502,0.672593,0.740171,0.65324,0.638344,0.29359,0.453696,0.0316234,0.664156,0.639898,0.0854799,0.868587,0.130767,0.339163,0.0675877,0.65121,0.841268,0.955724,0.731574,0.542504,0.184236,0.790643,0.198653,0.0143408,0.0761371,0.55065,0.56,0.00379986,0.836612,0.556336,0.905153,0.522245,0.855202,0.357653,0.239765,0.834204,0.914885,0.30839,0.517544,0.448564,0.67138,0.790832,0.308043,0.412876,0.326447,0.676247,0.696907,0.797739,0.513081,0.0347002,0.645422,0.673474,0.899251,0.110333,0.300681,0.913136,0.524975,0.129776,0.0577404,0.163198,0.264477,0.00458378,0.245838,0.412407,0.241292,0.868471,0.53264,0.552171,0.647084,0.407553,0.548203,0.732912,0.0668974,0.283409,0.931659,0.29047,0.619286,0.270741,0.428635,0.569539,0.572551,0.786161,0.873156,0.727449,0.598855,0.242497,0.425441,0.815657,0.797845,0.432137,0.357841,0.513432,0.350169,0.642686,0.42818,0.242807,0.235657,0.52525,0.13809,0.534978,0.0330819,0.446589,0.736197,0.274784,0.776833,0.950906,0.40906,0.413124,0.0405246,0.0883969,0.0249926,0.729781,0.883361,0.43508,0.343956,0.330546,0.54329,0.668472,0.613505,0.145471,0.862146,0.128616,0.12207,0.230998,0.767258,0.401717,0.14644,0.637318,0.547448,0.0493559,0.00705802,0.412054,0.12303,0.938634,0.740015,0.196674,0.695652,0.222378,0.953878,0.845524,0.873624,0.862392,0.328596,0.53248,0.303225,0.968887,0.244809,0.260192,0.465054,0.672126,0.435072,0.537282,0.880299,0.569489,0.625359,0.358071,0.378608,0.973541,0.291023,0.648754,0.322326,0.164158,0.747541,0.304431,0.998331,0.118431,0.791487,0.132008,0.315512,0.526399,0.242311,0.483718,0.0657228,0.733645,0.564223,0.722221,0.117276,0.484702,0.190237,0.224656,0.611926,0.24111,0.610909,0.299182,0.324209,0.38397,0.579287,0.72091,0.487769,0.109098,0.922841,0.525558,0.367458,0.378617,0.997842,0.795911,0.848614,0.886387,0.0868636,0.175204,0.228283,0.26422,0.139823,0.648141,0.510916,0.975121,0.268642,0.485424,0.371591,0.978111,0.630798,0.408691,0.109146,0.626832,0.655536,0.519257,0.795905,0.474946,0.279944,0.086863,0.859822,0.715509,0.406015,0.434539,0.184452,0.304701,0.354331,0.841642,0.883236,0.139758,0.920089,0.115813,0.611036,0.0746562,0.46031,0.87875,0.697511,0.0249867,0.285464,0.699853,0.269815,0.314964,0.698982,0.857188,0.232451,0.0763371,0.812179,0.710859,0.246638,0.55924,0.987235,0.212254,0.711524,0.441495,0.399711,0.0289351,0.479644,0.068197,0.00964218,0.785334,0.902545,0.573274,0.229219,0.420518,0.574329,0.214727,0.836548,0.958675,0.745155,0.971528,0.517108,0.866541,0.28165,0.675111,0.217061,0.606027,0.545821,0.730455,0.227092,0.706936,0.0560822,0.348675,0.232552,0.68487,0.664527,0.179465,0.687205,0.120206,0.184137,0.492965,0.408004,0.896489,0.38288,0.857177,0.7451,0.2544,0.890334,0.880916,0.309543,0.350103,0.414467,0.140457,0.634751,0.540701,0.820792,0.721287,0.276564,0.892643,0.257446,0.646941,0.769831,0.601339,0.51457,0.442646,0.127097,0.864966,0.212457,0.499754,0.448987,0.637922,0.443463,0.215813,0.194655,0.666283,0.241733,0.497055,0.231824,0.441516,0.795141,0.985003,0.0550874,0.804637,0.182404,0.626926,0.12814,0.611133,0.770293,0.961933,0.242093,0.224292,0.142105,0.831505,0.878717,0.711027,0.748085,0.727015,0.182531,0.824314,0.814063,0.452872,0.300565,0.900386,0.200999,0.779729,0.77567,0.470526,0.538655,0.612377,0.354089,0.404009,0.421382,0.184266,0.422944,0.225882,0.605571,0.52171,0.483197,0.0480767,0.797717,0.539391,0.333889,0.660127,0.173199,0.572538,0.944748,0.0495988,0.92795,0.334446,0.599622,0.305336,0.411588,0.214534,0.694095,0.572559,0.0427526,0.167399,0.551733,0.312519,0.308653,0.580513,0.117783,0.585167,0.0676811,0.543544,0.391519,0.952544,0.216965,0.105439,0.101582,0.698927,0.486785,0.451056,0.785815,0.412181,0.802707,0.817191,0.165091,0.429987,0.903931,0.519996,0.134271,0.790048,0.940472,0.347448,0.776032,0.654272,0.119497,0.796135,0.329431,0.106532,0.184587,0.0352257,0.584394,0.619917,0.365745,0.237714,0.0840449,0.693731,0.355908,0.779882,0.296227,0.77369,0.993507,0.607592,0.593417,0.398957,0.25708,0.0307621,0.134847,0.198579,0.181311,0.66861,0.573657,0.300646,0.638274,0.524476,0.78156,0.734817,0.744121,0.79283,0.613723,0.785191,0.474389,0.844382,0.820215,0.172641,0.449411,0.722476,0.812246,0.939745,0.548522,0.351284,0.357232,0.517783,|0.289326,0.679512,0.150483,0.112559,0.215803,0.381535,0.195423,0.959622,0.301522,0.306766,0.443294,0.168018,0.802339,0.291825,0.635924,0.63332,0.65703,0.493357,0.797534,0.256426,0.89955,0.738469,0.290959,0.97592,0.130224,0.674792,0.759551,0.740804,0.249906,0.653534,0.319413,0.803633,0.428312,0.867707,0.117703,0.905661,0.268343,0.133462,0.325543,0.0298426,0.109781,0.308503,0.260051,0.348706,0.653604,0.446053,0.255441,0.128608,0.708129,0.190012,0.393498,0.928204,0.431787,0.462658,0.274669,0.441706,0.996079,0.715997,0.0885624,0.467515,0.846484,0.595331,0.375699,0.756075,0.453834,0.967107,0.848617,0.96216,0.371454,0.539328,0.143146,0.473196,0.42915,0.876261,0.100664,0.942598,0.821952,0.835657,0.106068,0.332747,0.278579,0.369542,0.815665,0.814353,0.977569,0.00111604,0.19116,0.165573,0.756075,0.748147,0.929086,0.500176,0.475139,0.732858,0.91513,0.184556,0.33424,0.257021,0.521146,0.705164,0.0598844,0.155761,0.789841,0.626184,0.0977963,0.617412,0.167679,0.843946,0.156552,0.122836,0.332541,0.936044,0.373395,0.889997,0.742999,0.0627698,0.184854,0.947771,0.789751,0.442987,0.760101,0.784862,0.952326,0.811768,0.298281,0.894354,0.00312215,0.15334,0.242576,0.579098,0.756957,0.621501,0.306354,0.305634,0.576346,0.00963211,0.212478,0.823113,0.445944,0.950834,0.120482,0.404111,0.147499,0.302468,0.239628,0.0624412,0.60475,0.936507,0.0613071,0.0691872,0.520242,0.955861,0.751856,0.657481,0.555933,0.614662,0.583713,0.704016,0.674272,0.0445025,0.368032,0.672436,0.990451,0.447623,0.0358109,0.390013,0.219397,0.650774,0.873092,0.942857,0.738664,0.782035,0.188037,0.774175,0.899616,0.373926,0.776228,0.390798,0.760004,0.737158,0.499307,0.67144,0.419757,0.145728,0.0273278,0.585859,0.25715,0.490663,0.575441,0.93044,0.974744,0.176304,0.67462,0.811327,0.639557,0.855027,0.512378,0.29009,0.671256,0.232753,0.69581,0.885493,0.603476,0.917756,0.894916,0.984153,0.39735,0.342487,0.574462,0.543802,0.0650484,0.55914,0.105729,0.531563,0.979012,0.0684448,0.248943,0.428389,0.439541,0.964351,0.774651,0.628846,0.868799,0.163446,0.793832,0.0463226,0.145901,0.360744,0.987821,0.624146,0.939251,0.944478,0.726222,0.000813663,0.179148,0.537112,0.102796,0.514063,0.0354554,0.617235,0.380785,0.670533,0.686821,0.907276,0.630594,0.474271,0.527046,0.085899,0.0633699,0.0990949,0.152359,0.166443,0.271094,0.772117,0.447497,0.598314,0.885442,0.445771,0.0948895,0.229297,0.897911,0.424476,0.704289,0.185164,0.79185,0.385764,0.572627,0.892486,0.46734,0.11566,0.0719454,0.11863,0.882704,0.249536,0.876688,0.431832,0.859702,0.545185,0.822309,0.200627,0.299859,0.333255,0.601455,0.941812,0.760478,0.44138,0.199676,0.433712,0.354909,0.0611771,0.570745,0.508796,0.307885,0.311144,0.737741,0.512883,0.561156,0.458392,0.167939,0.456329,0.541145,0.0221519,0.375383,0.225832,0.549867,0.146846,0.709758,0.0543134,0.536149,0.643023,0.336383,0.588141,0.827123,0.584593,0.102736,0.586334,0.811771,0.385253,0.231747,0.668316,0.614634,0.435635,0.840345,0.894951,0.68288,0.0415839,0.721757,0.108832,0.816763,0.0984533,0.567988,0.818339,0.112809,0.168414,0.402805,0.29699,0.523927,0.0620273,0.872736,0.535954,0.21802,0.269679,0.681698,0.180811,0.178917,0.0155843,0.641503,0.342711,0.76468,0.677954,0.836895,0.700571,0.0961766,0.0598197,0.979194,0.913369,0.445407,0.158071,0.442558,0.134347,0.248377,0.335319,0.406645,0.588876,0.820087,0.699054,0.367021,0.879717,0.88258,0.911317,0.899463,0.0470118,0.419633,0.579497,0.817802,0.349536,0.249607,0.0906373,0.889187,0.0484197,0.895629,0.143876,0.50193,0.40338,0.522049,0.699375,0.284298,0.932409,0.155385,0.230444,0.561488,0.0962251,0.958535,0.0499566,0.496706,0.891656,0.58396,0.291426,0.539612,0.343132,0.0872773,0.60816,0.414218,0.91816,0.110431,0.838784,0.610142,0.89117,0.113296,0.595002,0.791746,0.208423,0.390072,0.791855,0.807176,0.617965,0.854467,0.199662,0.393472,0.2773,0.193315,0.581086,0.572704,0.736523,0.403111,0.323789,0.11708,0.543589,0.653089,0.610185,0.777875,0.0663729,0.747218,0.330073,0.882775,0.498348,0.6395,0.869914,0.120926,0.064285,0.441531,0.267525,0.01796,0.29522,0.508477,0.445557,0.308204,0.818969,0.284723,0.242625,0.488318,0.356578,0.0471993,0.310463,0.375253,0.0449944,0.0941569,0.301735,0.890781,0.801312,0.887177,0.643346,0.181113,0.122959,0.583002,0.113327,0.100897,0.390246,0.753461,0.360841,0.177426,0.396521,0.056511,0.864821,0.830968,0.349848,0.935087,0.177365,0.420921,0.859318,0.516728,0.322986,0.564849,0.359221,0.293815,0.00582528,0.102364,0.999127,0.0842268,0.448877,0.279431,0.691872,0.644805,0.896195,0.854672,0.448615,0.221191,0.898614,0.346491,0.862612,0.349441,0.791104,0.559405,0.427344,0.296021,0.42569,0.367239,0.211179,0.459034,0.404871,0.156745,0.0874819,0.899633,0.201718,0.0220529,0.697121,0.426124,0.13108,0.308193,0.33826,0.199602,0.405057,0.627588,0.33808,0.817096,0.952189,0.0353832,0.910103,0.296337,0.116484,0.578748,0.67036,0.19371,0.382193,0.714829,0.882617,0.0514878,0.624405,0.610535,0.218326,0.755824,0.00280315,0.333949,0.477515,0.140934,0.66801,0.679703,0.722929,0.746368,0.294899,0.569759,0.321492,0.412573,0.742014,0.00507402,0.76812,0.654024,0.488003,0.0553904,0.243727,0.740834,0.992761,0.146878,0.275175,0.151119,0.689057,0.813368,0.489578,0.136004,0.665731,0.163192,0.80868,0.508216,0.190767,0.280133,0.283156,0.593758,0.49164,0.23102,0.981457,0.943498,0.883131,0.396117,0.618136,0.462834,0.680665,0.0737796,0.145383,0.928593,0.653752,0.874275,0.791621,0.826078,0.343137,0.856385,0.942769,0.157596,0.853697,0.987301,0.171257,0.575427,0.698364,0.935681,0.620343,0.876984,0.375092,0.448104,0.463732,0.18474,0.0103666,0.543632,0.740095,0.266469,0.518816,0.790529,0.33809,0.0635006,0.394499,0.515734,0.510787,0.267789,0.585301,0.358515,0.412055,0.00365794,0.205771,0.769148,0.893694,0.871419,0.121572,0.452224,0.471306,0.806451,0.536112,0.558831,0.213542,0.804605,0.438862,0.96303,0.14315,0.351937,0.987167,0.0360621,0.802851,0.179083,0.237649,0.57493,0.503002,0.350771,0.0780423,0.301892,0.693537,0.708061,0.185375,0.760397,0.917157,0.637255,0.534019,0.0158151,0.309955,0.567886,0.20367,0.760598,0.70404,0.10741,0.195797,0.321864,0.790804,0.912279,0.983153,0.909941,0.278546,0.0968251,0.681058,0.410224,0.114101,0.850738,0.483937,0.0191835,0.314181,0.63102,0.498343,0.66394,0.435224,0.720027,0.407232,0.163971,0.812924,0.24663,0.94519,0.250307,0.132389,0.908891,0.221797,0.857547,0.0976632,0.617902,0.770285,0.161764,0.767459,0.477425,0.676099,0.172034,0.992989,0.473001,0.693689,0.153326,0.611571,0.770951,0.361045,0.0763156,0.997531,0.116504,0.52248,0.752391,0.553652,0.797868,0.911029,0.138578,0.305595,0.775001,0.824106,0.336715,0.321483,0.734504,0.279086,0.286588,0.829976,0.0781593,0.641872,0.664277,0.0486569,0.255155,0.28406,0.279576,0.0607352,0.874881,0.16578,0.176452,0.365803,0.579256,0.117029,0.0034861,0.961116,0.42262,0.335349,0.0152371,0.318751,0.950091,0.521854,0.212026,0.756315,0.0231148,0.482986,0.92676,0.900403,0.923273,0.320364,0.799385,0.346302,0.103306,0.679209,0.779427,0.13295,0.283843,0.0163403,0.686222,0.604727,0.933436,0.619908,0.919155,0.496215,0.811149,0.343683,0.21694,0.29831,0.688441,0.554131,0.230596,0.103799,0.6324,0.384517,0.83686,0.741843,0.308932,0.663868,0.530687,0.239154,0.0653253,0.948144,0.194201,0.425186,0.264765,0.188028,0.828231,0.532971,0.0222622,0.199645,0.656975,0.792796,0.804842,0.625126,0.413902,0.0401065,0.838805,0.693654,0.388682,0.0356494,0.478955,0.631736,0.00462735,0.411754,0.217515,0.650208,0.997528,0.323156,0.487895,0.960836,0.0695188,0.558674,0.502032,0.0473598,0.457561,0.518122,0.414815,0.570853,0.0758038,0.687233,0.922467,0.808299,0.581012,0.139222,0.0856514,0.454827,0.259179,0.417064,0.249886,0.827729,0.128101,0.320196,0.822613,0.710382,0.191209,0.278695,0.872765,0.38959,0.978875,0.436583,0.600612,0.840262,0.260077,0.36914,0.700084,0.338379,0.59372,0.697858,0.0199143,0.165133,0.906805,0.0370923,0.39608,0.645787,0.962363,0.933706,0.264502,0.637386,0.657234,0.138623,0.836174,0.844504,0.0213792,0.234429,0.177118,0.854636,0.265604,0.488468,0.292779,0.88807,0.687187,0.508966,0.81602,0.708393,0.86973,0.0420351,0.180828,0.512201,0.829678,0.278967,0.972763,0.395146,0.595674,0.096318,0.559038,0.687155,0.374942,0.615031,0.197913,0.942846,0.240703,0.0672624,0.0538716,0.5228,0.698417,0.0406116,0.662827,0.170589,0.632909,0.769375,0.334674,0.54337,0.713326,0.750539,0.811145,0.0997753,0.0917705,0.9257,0.991339,0.310783,0.384309,0.475516,0.9189,0.660965,0.968956,0.27401,0.757421,0.624164,0.272611,0.232508,0.993929,0.883966,0.320621,0.418312,0.449922,0.260641,0.00936168,0.969105,0.307223,0.169457,0.114186,0.818541,0.38966,0.449325,0.549545,0.222839,0.344264,0.0535231,0.717635,0.597968,0.620225,0.889808,0.561837,0.198168,0.979046,0.486494,0.739857,0.577895,0.618019,0.799263,0.967141,0.748649,0.746501,0.815102,0.829083,0.208747,0.395413,0.832645,0.328443,0.744847,0.998972,0.514615,0.948189,0.353477,0.126379,0.517702,0.681102,0.075334,0.772283,0.694746,0.361409,0.227369,0.74777,0.845971,0.616589,0.482933,0.241958,0.484423,0.64672,0.714784,0.746949,0.692246,0.254469,0.956295,0.868348,0.662587,0.0683784,0.00408465,0.497978,0.0809339,0.839004,0.924365,|0.270569,0.188525,0.422713,0.611093,0.616676,0.894362,0.642607,0.173196,0.535614,0.858355,0.425261,0.0442304,0.640626,0.534084,0.881169,0.199169,0.636473,0.410611,0.158714,0.977673,0.932724,0.815698,0.0724689,0.371602,0.732086,0.328217,0.884164,0.338715,0.981041,0.91801,0.292764,0.730998,0.895416,0.844832,0.231678,0.417136,0.168256,0.00962555,0.855317,0.0297312,0.301468,0.290204,0.616816,0.511632,0.939447,0.320786,0.395891,0.820857,0.237846,0.622043,0.094444,0.787598,0.175126,0.886436,0.783543,0.685495,0.829856,0.154558,0.1412,0.235069,0.0497814,0.937975,0.32525,0.75995,0.300221,0.455762,0.334921,0.0862843,0.550645,0.801068,0.0365027,0.545037,0.806937,0.903468,0.789651,0.640812,0.879691,0.5348,0.891802,0.264493,0.566596,0.763695,0.60701,0.0617245,0.475152,0.266994,0.552519,0.841867,0.772372,0.45509,0.253346,0.0713518,0.351183,0.226406,0.051075,0.98621,0.111588,0.30605,0.346518,0.373443,0.339106,0.0161118,0.268369,0.667044,0.176357,0.808352,0.304125,0.99019,0.442388,0.492634,0.0780062,0.549842,0.67534,0.919556,0.505002,0.854843,0.788885,0.427185,0.317791,0.572795,0.997815,0.809022,0.476559,0.694131,0.330573,0.874038,0.717544,0.521121,0.84285,0.621073,0.330077,0.215466,0.387848,0.974427,0.12827,0.830637,0.340583,0.422454,0.95492,0.346392,0.059051,0.314835,0.586852,0.325331,0.495956,0.804522,0.461405,0.205202,0.0994304,0.428578,0.536692,0.802294,0.347189,0.625357,0.144378,0.634056,0.614569,0.742018,0.12707,0.322054,0.529124,0.727191,0.379049,0.254797,0.634142,0.652318,0.644945,0.689227,0.235828,0.297607,0.646127,0.473629,0.590739,0.247533,0.681145,0.118931,0.193871,0.775367,0.633778,0.21734,0.266266,0.149503,0.989327,0.519813,0.094502,0.0855792,0.626532,0.564529,0.773696,0.748754,0.827425,0.140897,0.603942,0.268545,0.0515531,0.528056,0.866715,0.366646,0.960129,0.127088,0.610847,0.924051,0.182359,0.465941,0.316977,0.344003,0.317426,0.993739,0.768546,0.954066,0.952457,0.608232,0.563648,0.0129237,0.654443,0.577629,0.923988,0.162761,0.419856,0.0490785,0.95505,0.253768,0.673293,0.159083,0.430471,0.572215,0.916827,0.920493,0.663389,0.843346,0.732325,0.221195,0.0513653,0.102711,0.169874,0.0840054,0.0100407,0.780943,0.895401,0.760359,0.504763,0.561063,0.237628,0.93213,0.461326,0.739698,0.747683,0.975804,0.289737,0.48003,0.602682,0.682244,0.428975,0.946679,0.229766,0.821266,0.0374985,0.742859,0.232875,0.0737273,0.600719,0.741471,0.186353,0.475663,0.557496,0.813489,0.547554,0.634987,0.184846,0.709626,0.238997,0.544296,0.387816,0.721245,0.197226,0.904223,0.866811,0.25931,0.468599,0.815324,0.105974,0.396806,0.534973,0.713274,0.701234,0.0336281,0.731892,0.196803,0.768081,0.814928,0.940431,0.602756,0.817614,0.421715,0.865546,0.486236,0.777139,0.0923893,0.26273,0.711881,0.0577019,0.369097,0.941897,0.434055,0.917757,0.705627,0.30143,0.352863,0.580758,0.283902,0.523427,0.224592,0.452273,0.198673,0.587528,0.834497,0.714379,0.702445,0.319282,0.619021,0.972654,0.714463,0.45575,0.752864,0.286766,0.120495,0.0298457,0.727761,0.623913,0.498462,0.610274,0.449904,0.693672,0.308362,0.527446,0.834907,0.789912,0.0949941,0.334557,0.640901,0.796305,0.919318,0.664049,0.0677307,0.480517,0.561403,0.475301,0.408716,0.996257,0.771841,0.784711,0.131216,0.401059,0.243833,0.240058,0.0420455,0.186566,0.572316,0.625898,0.405733,0.0479777,0.398132,0.665647,0.308393,0.503425,0.0224587,0.418018,0.946263,0.0131754,0.124969,0.177649,0.788751,0.488906,0.826426,0.990559,0.285051,0.0996919,0.44234,0.075772,0.18434,0.280814,0.422301,0.206743,0.432244,0.334904,0.38579,0.174342,0.387457,0.0152471,0.491567,0.955331,0.811061,0.0646167,0.640852,0.589619,0.486408,0.701343,0.389583,0.480401,0.661147,0.853126,0.725561,0.738124,0.063273,0.444142,0.164927,0.664921,0.0321214,0.512413,0.359652,0.365173,0.117271,0.215608,0.711369,0.333398,0.495478,0.142724,0.502634,0.726029,0.691078,0.228976,0.682205,0.432628,0.0341566,0.745452,0.513238,0.165863,0.243968,0.626913,0.336339,0.0529518,0.614659,0.684424,0.890646,0.254665,0.423121,0.379073,0.996193,0.945871,0.851273,0.537195,0.495813,0.840207,0.535852,0.639382,0.710948,0.439165,0.26486,0.338383,0.134626,0.863222,0.927444,0.0694429,0.595734,0.49522,0.937703,0.533844,0.892911,0.478207,0.950202,0.175544,0.112496,0.493259,0.558542,0.32771,0.0394223,0.014504,0.781323,0.985603,0.523849,0.801911,0.8476,0.925996,0.645336,0.165522,0.791415,0.00838053,0.343817,0.487247,0.584371,0.112103,0.726695,0.490172,0.564281,0.346601,0.4514,0.34242,0.23051,0.125075,0.461223,0.883713,0.447271,0.251679,0.214087,0.694838,0.00273341,0.148722,0.706882,0.325114,0.827914,0.471685,0.624199,0.116872,0.889351,0.482689,0.143772,0.966516,0.516905,0.12009,0.655929,0.436583,0.657852,0.675666,0.487804,0.821174,0.218752,0.478489,0.432575,0.904377,0.197463,0.879767,0.0255796,0.462544,0.486908,0.854523,0.791668,0.475751,0.0711014,0.765303,0.377278,0.0703883,0.259949,0.410826,0.21742,0.536907,0.277288,0.00131744,0.115046,0.393412,0.960788,0.200366,0.248108,0.97073,0.382672,0.637874,0.0869486,0.827077,0.379431,0.0457541,0.323176,0.56618,0.855382,0.831977,0.0678809,0.878446,0.679097,0.810402,0.998065,0.0649719,0.787331,0.791619,0.612951,0.625728,0.879519,0.734941,0.408095,0.4239,0.153356,0.61949,0.32995,0.0822719,0.517036,0.781635,0.78646,0.117881,0.601817,0.957963,0.325751,0.903763,0.248381,0.917687,0.228399,0.835898,0.78397,0.854904,0.842517,0.401713,0.295586,0.0544043,0.2909,0.484434,0.946028,0.439157,0.242642,0.103469,0.425435,0.769179,0.00791752,0.832901,0.185891,0.615213,0.638576,0.167024,0.774654,0.986383,0.581055,0.334491,0.0746691,0.998601,0.96485,0.541282,0.00772411,0.477901,0.0938603,0.758983,0.806185,0.132429,0.497966,0.848595,0.531987,0.725797,0.53861,0.430363,0.735492,0.816762,0.630364,0.802654,0.227063,0.230803,0.0831185,0.687563,0.192145,0.40591,0.600848,0.741877,0.536639,0.328312,0.526765,0.155926,0.186894,0.659282,0.549816,0.502872,0.0145104,0.478425,0.336765,0.0677124,0.117867,0.499578,0.8628,0.697822,0.384443,0.22651,0.157006,0.932162,0.765524,0.503845,0.52992,0.584232,0.637279,0.656937,0.223843,0.48928,0.496767,0.383096,0.731499,0.141953,0.856772,0.623048,0.631266,0.780868,0.539767,0.511576,0.164315,0.500344,0.316747,0.878532,0.44407,0.547304,0.299836,0.0171646,0.516746,0.0608924,0.754299,0.60024,0.15919,0.00657487,0.734405,0.734906,0.415902,0.268025,0.866567,0.0399232,0.0330005,0.639838,0.91393,0.402953,0.0414694,0.795862,0.154567,0.957431,0.720047,0.212249,0.210101,0.447115,0.237584,0.351707,0.684377,0.754963,0.267567,0.234299,0.784526,0.97006,0.870038,0.136295,0.150434,0.141811,0.346379,0.595366,0.489314,0.303492,0.408248,0.044625,0.466619,0.898346,0.19213,0.588697,0.643988,0.549669,0.346317,0.890906,0.0891373,0.607337,0.745314,0.642332,0.443955,0.361791,0.218639,0.955536,0.651329,0.450346,0.460629,0.335251,0.0595575,0.804538,0.618307,0.419165,0.92892,0.460373,0.309931,0.123633,0.0179654,0.91423,0.84883,0.739444,0.846988,0.527327,0.885858,0.90734,0.910503,0.285342,0.409321,0.948925,0.872191,0.692185,0.934339,0.296803,0.684291,0.143596,0.435747,0.586029,0.849768,0.851709,0.211468,0.284787,0.613246,0.980738,0.00422662,0.611187,0.386563,0.842641,0.974573,0.383679,0.00690538,0.0474476,0.129696,0.553642,0.428474,0.375048,0.90988,0.467491,0.0138004,0.244914,0.135829,0.451327,0.716086,0.380491,0.182055,0.807792,0.237917,0.549366,0.557272,0.975294,0.44975,0.581625,0.239441,0.709231,0.62543,0.962531,0.711022,0.667734,0.77419,0.524852,0.215043,0.740452,0.668371,0.863102,0.869844,0.129701,0.561515,0.857,0.500652,0.580921,0.234518,0.685773,0.784539,0.205108,0.667253,0.588733,0.0647568,0.914481,0.624337,0.32023,0.870476,0.580605,0.633147,0.125866,0.28782,0.528288,0.495984,0.6096,0.181136,0.0816506,0.963193,0.96136,0.705061,0.0540575,0.178929,0.567957,0.1052,0.72744,0.971444,0.157682,0.163004,0.924242,0.953775,0.588917,0.786618,0.546176,0.660286,0.433857,0.215367,0.951635,0.2215,0.0734718,0.625233,0.188264,0.0123216,0.680393,0.73867,0.389028,0.441507,0.105231,0.647171,0.302572,0.46873,0.66273,0.234327,0.00423729,0.777478,0.269771,0.0473669,0.106592,0.175532,0.41962,0.888018,0.727339,0.52307,0.616828,0.437281,0.888803,0.959784,0.794703,0.28483,0.417431,0.942217,0.486205,0.38316,0.828914,0.093576,0.270655,0.148497,0.525662,0.16813,0.474551,0.688512,0.781333,0.516425,0.124907,0.373147,0.540338,0.119116,0.078448,0.516391,0.0871931,0.0164022,0.630876,0.530164,0.404762,0.480082,0.255825,0.94635,0.336509,0.705679,0.669014,0.709815,0.193257,0.0213667,0.347479,0.072367,0.362939,0.201255,0.361416,0.0737345,0.771283,0.859947,0.0371433,0.684075,0.137874,0.59139,0.135296,0.942169,0.866246,0.65568,0.592418,0.654432,0.695454,0.816596,0.134408,0.816956,0.423828,0.705038,0.83135,0.488267,0.220979,0.926656,0.258143,0.43297,0.0879556,0.918118,0.899724,0.862294,0.249539,0.145376,0.425555,0.829593,0.701762,0.312831,0.428955,0.0135769,0.557828,0.716556,0.577282,0.417271,0.19131,0.509387,0.312778,0.778792,0.292364,0.178374,0.736477,0.0721388,0.41307,0.0817114,0.917804,0.191706,0.46416,0.504645,0.986288,0.496536,0.00301009,0.899393,0.0653206,0.102567,0.687083,0.151634,0.77877,0.994821,0.62702,0.575745,|0.563553,0.585571,0.530441,0.608699,0.252016,0.615238,0.359233,0.653578,0.899461,0.0936995,0.775276,0.397912,0.258776,0.512845,0.951062,0.446319,0.0410597,0.827733,0.101107,0.158182,0.638505,0.348192,0.0427719,0.686473,0.517516,0.578081,0.480087,0.397465,0.124881,0.587992,0.0349259,0.892642,0.116391,0.894836,0.691225,0.62838,0.614503,0.416209,0.858779,0.236654,0.042385,0.681534,0.745574,0.805289,0.340515,0.777033,0.802374,0.4973,0.691481,0.483414,0.749956,0.255314,0.648117,0.640616,0.0415862,0.902303,0.182828,0.21594,0.240198,0.999354,0.461418,0.765712,0.045912,0.351533,0.567264,0.265067,0.759564,0.027068,0.754127,0.136081,0.267242,0.290118,0.0727538,0.635767,0.795166,0.946678,0.59255,0.226804,0.840392,0.479454,0.649664,0.187405,0.505109,0.640274,0.589239,0.0094949,0.0445642,0.552064,0.336891,0.683999,0.357381,0.862315,0.593136,0.504965,0.515711,0.063151,0.84523,0.667818,0.785708,0.684348,0.659598,0.465057,0.451745,0.534974,0.263429,0.674721,0.235436,0.738417,0.33017,0.205762,0.601432,0.153786,0.394099,0.514201,0.00458318,0.182201,0.471246,0.579803,0.146563,0.197195,0.888752,0.635562,0.0863987,0.540261,0.471958,0.446229,0.370314,0.509715,0.24421,0.349903,0.319995,0.518091,0.94228,0.854244,0.523092,0.816442,0.517162,0.886509,0.556412,0.470826,0.607985,0.597727,0.7503,0.832825,0.273198,0.35714,0.967896,0.721777,0.310559,0.0378068,0.924368,0.809629,0.0448013,0.703257,0.606716,0.240912,0.818458,0.903198,0.215215,0.145621,0.256525,0.150245,0.763848,0.899115,0.0957857,0.0391055,0.457013,0.324065,0.747617,0.907428,0.226454,0.127235,0.759318,0.154324,0.0801557,0.646322,0.790482,0.728699,0.479545,0.351239,0.566132,0.756171,0.0446094,0.786704,0.400113,0.00288486,0.20254,0.129134,0.730604,0.892854,0.564535,0.0325716,0.178662,0.258593,0.278654,0.987767,0.508069,0.766229,0.219087,0.988112,0.470482,0.394977,0.213145,0.339101,0.456158,0.635623,0.123475,0.0734979,0.111612,0.597311,0.17333,0.314069,0.80474,0.186235,0.767032,0.630735,0.79527,0.434997,0.734088,0.363277,0.283082,0.786319,0.0817276,0.776876,0.8458,0.921772,0.488084,0.598864,0.521346,0.416419,0.0320765,0.254239,0.747971,0.0891458,0.894798,0.135321,0.552453,0.864023,0.343787,0.569988,0.246697,0.311091,0.155118,0.634177,0.0100729,0.0929323,0.186012,0.523567,0.66345,0.749033,0.633284,0.164907,0.058979,0.046559,0.73352,0.811696,0.81363,0.989292,0.265271,0.940148,0.421953,0.458958,0.00377625,0.267671,0.714308,0.423492,0.982444,0.0887163,0.56867,0.516502,0.912831,0.186829,0.588594,0.689425,0.446229,0.991233,0.0726942,0.653585,0.73862,0.468217,0.102302,0.635646,0.409579,0.219364,0.160168,0.601215,0.30426,0.705941,0.575022,0.47415,0.918082,0.401606,0.115634,0.312678,0.404895,0.414665,0.150969,0.559178,0.782477,0.453618,0.636832,0.990118,0.753793,0.944326,0.789473,0.691464,0.430458,0.402253,0.445657,0.775522,0.243798,0.609897,0.530666,0.10415,0.27016,0.856614,0.184371,0.292738,0.127342,0.641686,0.456121,0.477938,0.415079,0.799071,0.297556,0.69785,0.908935,0.500398,0.956877,0.922576,0.372543,0.477514,0.311907,0.964678,0.850477,0.34556,0.270643,0.113932,0.283465,0.691419,0.603013,0.654047,0.510881,0.921289,0.374159,0.480853,0.831077,0.136635,0.452377,0.497361,0.85344,0.84282,0.548803,0.648107,0.505247,0.961803,0.545281,0.361441,0.72065,0.912052,0.412789,0.209302,0.805806,0.572231,0.403726,0.19365,0.793182,0.670875,0.909269,0.923695,0.900932,0.672065,0.779543,0.0250714,0.918482,0.0585138,0.137664,0.42018,0.878267,0.801976,0.485686,0.308888,0.913647,0.823166,0.194756,0.618524,0.559219,0.999521,0.308789,0.364142,0.387693,0.280666,0.447348,0.133006,0.880095,0.252687,0.367117,0.50466,0.20904,0.509837,0.888193,0.657368,0.78484,0.988477,0.208775,0.564823,0.324436,0.543777,0.603706,0.221567,0.585931,0.337825,0.25109,0.90251,0.955674,0.0177045,0.895136,0.773993,0.828796,0.681869,0.205386,0.0702075,0.0838363,0.814785,0.488033,0.604297,0.972142,0.185217,0.060059,0.273776,0.210854,0.935807,0.372981,0.740603,0.435714,0.118931,0.280174,0.19135,0.550063,0.391726,0.403958,0.614048,0.712448,0.401419,0.859406,0.115466,0.268387,0.583068,0.505153,0.00389653,0.105981,0.303902,0.660477,0.636642,0.745854,0.534315,0.19652,0.296614,0.203386,0.407668,0.032232,0.98594,0.709743,0.392865,0.82649,0.772962,0.691467,0.243047,0.702928,0.0540227,0.702724,0.545595,0.508836,0.95262,0.626237,0.378672,0.2616,0.790607,0.910012,0.101335,0.952572,0.496026,0.395745,0.479125,0.818552,0.995923,0.618026,0.183307,0.877361,0.281047,0.0249738,0.323198,0.970752,0.816496,0.557455,0.960631,0.543307,0.375596,0.563323,0.478029,0.514495,0.858858,0.962244,0.744359,0.889646,0.822868,0.178235,0.187189,0.332636,0.676162,0.65402,0.516306,0.583092,0.205027,0.63,0.129047,0.158756,0.505545,0.483848,0.46209,0.269235,0.643444,0.205654,0.265306,0.42488,0.286689,0.408993,0.859728,0.879671,0.264106,0.611131,0.687274,0.210124,0.699951,0.529469,0.405425,0.00827581,0.826671,0.504,0.510755,0.470003,0.334809,0.502005,0.2962,0.663996,0.88431,0.531714,0.710245,0.0675343,0.647039,0.696551,0.697929,0.503463,0.270958,0.249286,0.369561,0.567407,0.809816,0.368124,0.205332,0.769319,0.472905,0.799875,0.202226,0.0844171,0.526085,0.657227,0.489329,0.672929,0.749009,0.377485,0.77268,0.561774,0.276322,0.233636,0.369684,0.727877,0.667818,0.318453,0.949783,0.777544,0.898077,0.66537,0.196174,0.521707,0.319495,0.309125,0.957819,0.763917,0.822895,0.834214,0.0506641,0.877825,0.749448,0.897045,0.878969,0.367066,0.469992,0.857151,0.988812,0.727522,0.31255,0.206526,0.593313,0.473912,0.785181,0.772407,0.627225,0.732376,0.964606,0.717269,0.14921,0.457703,0.631429,0.595699,0.0990271,0.710512,0.472268,0.331861,0.591765,0.579164,0.163178,0.550058,0.351946,0.661011,0.395653,0.376497,0.33389,0.88988,0.436756,0.718387,0.743137,0.929308,0.97919,0.758132,0.410741,0.951475,0.0272741,0.698155,0.757356,0.730863,0.997243,0.871431,0.22547,0.489041,0.945335,0.93723,0.692588,0.286054,0.375938,0.684516,0.530656,0.870297,0.623915,0.691909,0.0354429,0.101601,0.138969,0.909811,0.135379,0.723382,0.571836,0.338418,0.537916,0.787819,0.00279361,0.511559,0.943796,0.482252,0.697036,0.791108,0.797785,0.347175,0.124169,0.11763,0.704436,0.845129,0.452501,0.0949462,0.808733,0.998302,0.216042,0.975966,0.562855,0.488331,0.579938,0.208294,0.200582,0.108638,0.0373953,0.720171,0.911476,0.732133,0.408856,0.673089,0.523581,0.262224,0.706648,0.55665,0.624768,0.364723,0.690621,0.236981,0.871064,0.12858,0.134859,0.601167,0.149257,0.715406,0.0387534,0.825827,0.683235,0.86105,0.973403,0.946148,0.11923,0.768087,0.991307,0.898803,0.887558,0.488886,0.130869,0.607063,0.861198,0.994092,0.128318,0.223637,0.449605,0.544032,0.968499,0.184893,0.630223,0.409143,0.471466,0.232346,0.21198,0.101964,0.360509,0.29898,0.469879,0.25396,0.623369,0.575399,0.210967,0.735996,0.865453,0.822444,0.47593,0.634999,0.547027,0.294302,0.395163,0.196455,0.393737,0.576423,0.109094,0.181124,0.74503,0.722943,0.409987,0.163238,0.175159,0.467926,0.909508,0.276695,0.909466,0.65741,0.582725,0.187394,0.609219,0.873196,0.237101,0.0102251,0.209448,0.320558,0.452075,0.496425,0.670363,0.674456,0.844363,0.208973,0.68097,0.307524,0.116694,0.592911,0.512167,0.00365257,0.46839,0.889039,0.273889,0.889207,0.908859,0.233566,0.813212,0.658836,0.797288,0.65238,0.589038,0.336262,0.0279914,0.511758,0.508194,0.848601,0.580557,0.28112,0.727603,0.635024,0.107648,0.696747,0.376998,0.652678,0.185462,0.70448,0.0176553,0.0759947,0.821132,0.849721,0.54849,0.45854,0.257067,0.541081,0.316981,0.224563,0.370283,0.884484,0.815442,0.339405,0.359876,0.00134522,0.162991,0.484532,0.343974,0.027557,0.961635,0.391557,0.536382,0.539924,0.414257,0.869329,0.505995,0.670201,0.933546,0.0906124,0.793029,0.198787,0.341679,0.360664,0.5717,0.907235,0.0818649,0.305741,0.819552,0.198821,0.752331,0.843467,0.430404,0.106243,0.569626,0.354903,0.557937,0.397739,0.991793,0.538308,0.768841,0.727971,0.149252,0.677714,0.202112,0.983747,0.057169,0.877137,0.196581,0.0462182,0.64999,0.623844,0.914179,0.149462,0.311264,0.0220204,0.315957,0.820202,0.677441,0.590007,0.212747,0.106617,0.00256103,0.00448799,0.466799,0.501324,0.896751,0.0530971,0.26804,0.280633,0.694128,0.383598,0.433618,0.0918695,0.578595,0.807066,0.349321,0.462784,0.876584,0.700323,0.933794,0.599907,0.787529,0.178242,0.902278,0.184683,0.55584,0.00402606,0.247745,0.905645,0.324174,0.579834,0.239571,0.0143796,0.326564,0.818791,0.424809,0.862814,0.991579,0.165019,0.162656,0.235958,0.153667,0.0303044,0.730303,0.85918,0.295659,0.0396054,0.198877,0.819195,0.788872,0.54654,0.0366262,0.116885,0.717008,0.725206,0.979486,0.939781,0.154245,0.629484,0.97991,0.653457,0.467141,0.962286,0.645603,0.712582,0.913414,0.489713,0.908664,0.237698,0.856497,0.200898,0.361503,0.332704,0.719029,0.130864,0.57402,0.234533,0.0283238,0.380059,0.571376,0.60377,0.487307,0.135164,0.892184,0.359194,0.0896896,0.960024,0.000284016,0.348843,0.812195,0.00593245,0.653673,0.746631,0.136307,0.135742,0.162349,0.947476,0.346224,0.799255,0.734785,0.765928,0.675145,0.525821,0.176651,0.532226,0.756167,0.779975,0.168826,0.517726,0.834228,0.610608,0.345294,0.551194,0.852708,0.526821,0.976176,|0.972156,0.884567,0.0138879,0.249322,0.126967,0.133802,0.889625,0.232972,0.118239,0.932923,0.724916,0.44112,0.542452,0.342309,0.259449,0.0877717,0.295988,0.937971,0.706124,0.637091,0.665454,0.00628805,0.311979,0.698744,0.852931,0.236385,0.267945,0.338988,0.667931,0.127186,0.401183,0.922861,0.206974,0.366896,0.0570349,0.0914212,0.944448,0.959742,0.963265,0.383155,0.341693,0.299205,0.21449,0.734153,0.366552,0.465465,0.641616,0.00681144,0.441135,0.922302,0.617711,0.6801,0.27427,0.498868,0.8114,0.350764,0.208013,0.0967484,0.00329173,0.628619,0.907439,0.780918,0.0331466,0.996737,0.13836,0.623388,0.46288,0.535077,0.707824,0.880612,0.0937445,0.0125121,0.0558859,0.340569,0.288172,0.52029,0.803045,0.641962,0.941294,0.55222,0.814968,0.0874027,0.979805,0.170165,0.347334,0.163697,0.648697,0.125439,0.659191,0.626365,0.355559,0.0300851,0.402952,0.978575,0.578955,0.748951,0.54179,0.632391,0.903197,0.763954,0.830789,0.9957,0.497184,0.790067,0.412816,0.444569,0.42438,0.568708,0.147343,0.614891,0.295102,0.820016,0.137732,0.919031,0.639276,0.816095,0.130363,0.464879,0.915684,0.187917,0.92464,0.181985,0.191033,0.378974,0.580076,0.496005,0.196147,0.897625,0.353037,0.104518,0.249701,0.0488916,0.169287,0.398802,0.35509,0.36603,0.965738,0.237798,0.144414,0.129824,0.268742,0.898005,0.553199,0.533129,0.208725,0.819965,0.0520388,0.214963,0.135703,0.506273,0.382966,0.929152,0.815247,0.77221,0.940757,0.0435719,0.814288,0.160236,0.277911,0.399807,0.921793,0.956825,0.412963,0.00585574,0.473166,0.750565,0.896961,0.976826,0.472459,0.994595,0.187,0.182296,0.246365,0.922693,0.2875,0.0885057,0.746245,0.364942,0.735016,0.062275,0.943564,0.0776696,0.908037,0.496622,0.71174,0.775365,0.727431,0.292045,0.241986,0.31673,0.991236,0.986462,0.200667,0.113447,0.214674,0.545875,0.520592,0.145222,0.161643,0.822053,0.544267,0.49382,0.189793,0.633598,0.574174,0.975238,0.478798,0.996418,0.479625,0.887674,0.466332,0.461999,0.820804,0.828248,0.608443,0.0243697,0.9154,0.844129,0.156426,0.187989,0.418229,0.741644,0.680618,0.884714,0.348625,0.102149,0.918318,0.353271,0.94462,0.817519,0.877661,0.537514,0.18911,0.845912,0.328348,0.280668,0.167734,0.762827,0.392687,0.773401,0.543407,0.668518,0.52402,0.377929,0.0144694,0.520303,0.945534,0.675605,0.935128,0.729534,0.736505,0.299855,0.350415,0.347654,0.684851,0.396675,0.999562,0.125996,0.606867,0.207014,0.952455,0.652215,0.98425,0.91814,0.493443,0.925954,0.474958,0.814187,0.581118,0.430902,0.997397,0.461441,0.141292,0.851604,0.91179,0.554544,0.200994,0.490667,0.128142,0.210331,0.477025,0.707756,0.35218,0.713793,0.895651,0.662678,0.331013,0.877241,0.207706,0.120831,0.80334,0.732321,0.738917,0.624136,0.612467,0.928734,0.771401,0.0431849,0.743993,0.288795,0.157343,0.876753,0.961969,0.751217,0.546677,0.054378,0.931693,0.0489398,0.609086,0.698116,0.498679,0.363422,0.508876,0.504452,0.268597,0.551471,0.425063,0.348626,0.480069,0.0586894,0.253613,0.0904731,0.986806,0.899395,0.802613,0.826232,0.105069,0.097399,0.331934,0.933171,0.529845,0.292818,0.593377,0.768058,0.6901,0.237597,0.0777461,0.239099,0.376583,0.663992,0.340237,0.124599,0.599313,0.349755,0.828256,0.66716,0.422163,0.270287,0.117851,0.206164,0.577101,0.921569,0.731807,0.199451,0.467486,0.341046,0.531932,0.842753,0.248807,0.291993,0.749581,0.918768,0.782185,0.83898,0.267479,0.922885,0.415773,0.163192,0.581199,0.621792,0.0786996,0.60116,0.866124,0.27546,0.710613,0.509177,0.242856,0.144751,0.085084,0.0479053,0.482731,0.758181,0.372575,0.780425,0.597357,0.359709,0.754923,0.789188,0.00297773,0.548108,0.156495,0.306684,0.388455,0.174424,0.0905669,0.740788,0.016611,0.875157,0.644702,0.603075,0.348022,0.146629,0.73462,0.216223,0.680114,0.674783,0.505625,0.359409,0.281562,0.608071,0.23788,0.377369,0.65162,0.547328,0.317426,0.683358,0.827676,0.302724,0.803979,0.141835,0.820352,0.720558,0.145425,0.0958581,0.342274,0.7196,0.377627,0.995882,0.457142,0.571297,0.361116,0.826866,0.476818,0.630045,0.985583,0.15303,0.992056,0.611794,0.940002,0.620924,0.36233,0.759775,0.802756,0.510251,0.277344,0.215559,0.889388,0.408988,0.57205,0.711034,0.267403,0.391167,0.461527,0.692434,0.179008,0.0548329,0.611388,0.220498,0.879902,0.206679,0.954936,0.394787,0.343211,0.574572,0.311868,0.723215,0.90329,0.962986,0.658826,0.654764,0.161381,0.103363,0.982876,0.523868,0.105636,0.497964,0.475339,0.653067,0.0570356,0.2197,0.342321,0.228434,0.95753,0.355168,0.367903,0.347615,0.964635,0.791491,0.398372,0.831593,0.924545,0.418279,0.195559,0.198453,0.863874,0.315751,0.00493801,0.676999,0.571129,0.491655,0.739136,0.490722,0.299203,0.166901,0.36941,0.266077,0.908263,0.0202559,0.20569,0.727928,0.497786,0.561043,0.136564,0.112284,0.877862,0.648153,0.557002,0.296966,0.728572,0.0941949,0.179994,0.345299,0.0657311,0.0463513,0.307558,0.0458743,0.853722,0.554943,0.0473052,0.243152,0.0968179,0.76982,0.954819,0.216728,0.287047,0.793607,0.500503,0.948589,0.269861,0.0503927,0.442717,0.0623049,0.712668,0.783958,0.963599,0.431229,0.569461,0.782968,0.537616,0.874476,0.562281,0.348716,0.367046,0.697895,0.514555,0.444263,0.728417,0.867457,0.950816,0.931129,0.089165,0.159433,0.092435,0.367008,0.916411,0.869977,0.173573,0.911298,0.643084,0.386672,0.718041,0.0401536,0.413621,0.79678,0.977942,0.977263,0.460356,0.866337,0.362494,0.191897,0.402993,0.145706,0.260689,0.138973,0.797377,0.271163,0.23246,0.730441,0.619991,0.771074,0.865685,0.303788,0.741722,0.753671,0.873467,0.620379,0.932288,0.119305,0.0578196,0.322002,0.634696,0.518725,0.726034,0.656764,0.929487,0.264768,0.89579,0.147528,0.305523,0.841342,0.457158,0.713828,0.608684,0.904905,0.651306,0.329367,0.582123,0.820472,0.391481,0.0828264,0.450024,0.236299,0.898532,0.215343,0.47924,0.755389,0.591608,0.0891756,0.520602,0.551772,0.0915899,0.911235,0.855978,0.0298147,0.447744,0.45903,0.29054,0.377949,0.551666,0.713986,0.336227,0.8786,0.485899,0.613305,0.804238,0.991032,0.881877,0.250207,0.755844,0.531441,0.942993,0.137953,0.438283,0.147147,0.336364,0.693574,0.756473,0.811581,0.204421,0.0543361,0.626521,0.974025,0.217104,0.326521,0.19779,0.363976,0.740756,0.61676,0.245342,0.210016,0.611566,0.373996,0.107555,0.0477679,0.0357652,0.561435,0.68142,0.722946,0.226419,0.12781,0.334269,0.418929,0.141836,0.0113283,0.391871,0.67131,0.37795,0.122766,0.848834,0.681937,0.92508,0.966249,0.998017,0.811214,0.627328,0.399749,0.968725,0.941668,0.787011,0.0490665,0.408485,0.742233,0.500182,0.864463,0.906953,0.352667,0.334629,0.436601,0.0172881,0.21449,0.561537,0.364088,0.894048,0.528811,0.547827,0.193547,0.172424,0.564331,0.788517,0.626214,0.354466,0.170559,0.495321,0.398807,0.458117,0.112875,0.534784,0.947302,0.479519,0.881206,0.842352,0.0951526,0.216009,0.264249,0.61637,0.758022,0.168281,0.716895,0.466862,0.729039,0.664656,0.505716,0.197676,0.852129,0.98537,0.389892,0.118881,0.511019,0.0692196,0.470298,0.728492,0.530582,0.883646,0.859,0.998347,0.852072,0.76724,0.676983,0.557002,0.559211,0.82772,0.68549,0.147627,0.221607,0.359736,0.598813,0.423114,0.704603,0.83446,0.42468,0.483314,0.962901,0.273051,0.591601,0.85658,0.429103,0.957038,0.611286,0.424901,0.562084,0.235728,0.210492,0.649594,0.968925,0.996571,0.181748,0.952573,0.566209,0.384845,0.976512,0.788076,0.197162,0.666905,0.232483,0.831572,0.966668,0.701353,0.733611,0.88642,0.213743,0.0807132,0.162591,0.865726,0.575009,0.27642,0.521045,0.52947,0.0848644,0.654243,0.0355985,0.349235,0.793658,0.25316,0.0613236,0.43129,0.789415,0.665742,0.677699,0.613165,0.921281,0.530263,0.680306,0.987673,0.0829026,0.977945,0.758169,0.830036,0.78512,0.991509,0.869342,0.622606,0.53679,0.155259,0.601206,0.111043,0.264702,0.775664,0.969755,0.978414,0.255571,0.0270244,0.698237,0.500636,0.859826,0.85199,0.154422,0.126631,0.156287,0.662645,0.812329,0.658705,0.416176,0.160619,0.781457,0.0885174,0.992308,0.0840616,0.514204,0.16247,0.219383,0.540299,0.520044,0.944948,0.762699,0.333222,0.213246,0.200708,0.54643,0.332682,0.679819,0.441445,0.0359381,0.469854,0.0753957,0.595668,0.253607,0.99803,0.470605,0.341866,0.578995,0.609622,0.297102,0.206619,0.487131,0.720112,0.151997,0.184562,0.793424,0.040795,0.833043,0.527679,0.36783,0.0814562,0.353952,0.615232,0.672716,0.420296,0.223309,0.447163,0.85004,0.6795,0.19489,0.279172,0.280942,0.324568,0.414698,0.235947,0.257917,0.634709,0.328998,0.253821,0.969758,0.125272,0.968191,0.854455,0.226481,0.906008,0.781178,0.108034,0.384769,0.998478,0.749076,0.547953,0.657608,0.297186,0.144172,0.920438,0.28973,0.802876,0.371375,0.487314,0.799431,0.142215,0.410337,0.681826,0.730208,0.936807,0.342621,0.951941,0.155517,0.529781,0.476687,0.122944,0.938605,0.591212,0.151539,0.00327528,0.852681,0.358842,0.224025,0.880054,0.112887,0.13935,0.593903,0.264479,0.577533,0.330113,0.479419,0.999251,0.908015,0.769706,0.411181,0.883407,0.0407083,0.139747,0.474713,0.982611,0.13425,0.510971,0.399554,0.237578,0.643174,0.20729,0.139756,0.990995,0.836082,0.440542,0.773388,0.843033,0.487868,0.906753,0.836974,0.111934,0.931551,0.511462,0.892565,0.297688,0.464637,0.636956,0.721905,0.582446,0.210258,0.100397,0.306051,0.765581,0.563938,0.00721753,0.592042,0.612226,0.169684,|0.440733,0.186365,0.163386,0.71114,0.402026,0.601415,0.330992,0.721918,0.47348,0.0610761,0.857381,0.875331,0.0822178,0.348427,0.66211,0.706914,0.0218689,0.965132,0.172693,0.162332,0.406815,0.985704,0.819485,0.941447,0.397049,0.498446,0.838192,0.379364,0.401532,0.0348467,0.474661,0.482857,0.0379014,0.290123,0.395508,0.619712,0.0209562,0.879284,0.584052,0.597864,0.993811,0.463208,0.261104,0.912775,0.143176,0.743571,0.0765669,0.923601,0.74028,0.958442,0.16909,0.560925,0.565455,0.0526494,0.239058,0.154173,0.779268,0.378654,0.652706,0.489075,0.728774,0.0370223,0.196688,0.947335,0.25742,0.226169,0.867314,0.995403,0.534326,0.784448,0.756528,0.754562,0.275158,0.807151,0.600132,0.272022,0.23605,0.632222,0.685587,0.818065,0.333016,0.913455,0.0074178,0.403019,0.176439,0.0521308,0.899411,0.156392,0.338904,0.290552,0.30902,0.845825,0.718633,0.387913,0.376226,0.416553,0.284448,0.357494,0.284975,0.633398,0.732945,0.571716,0.658337,0.549767,0.461805,0.49923,0.368091,0.151531,0.307702,0.223749,0.120549,0.924257,0.218596,0.280959,0.599331,0.863412,0.944723,0.995258,0.895706,0.773533,0.48691,0.288962,0.571792,0.63236,0.323254,0.778534,0.79703,0.303219,0.217244,0.976396,0.258221,0.694971,0.463482,0.803445,0.0207602,0.173168,0.352183,0.705227,0.395533,0.463272,0.270319,0.850022,0.260607,0.666655,0.501182,0.988706,0.888473,0.940473,0.769769,0.523932,0.208066,0.709953,0.212556,0.647521,0.68289,0.603442,0.34912,0.459973,0.167241,0.37416,0.145506,0.978947,0.50314,0.085573,0.498047,0.357431,0.407823,0.416492,0.854999,0.0595383,0.0726212,0.434145,0.379891,0.282531,0.507816,0.591396,0.474251,0.408224,0.743018,0.352653,0.945541,0.111487,0.531431,0.59523,0.331459,0.694791,0.459392,0.902661,0.29415,0.276228,0.732813,0.15093,0.931821,0.185125,0.422011,0.283076,0.0843128,0.348384,0.532234,0.697055,0.215133,0.628861,0.976741,0.762566,0.635037,0.929924,0.796492,0.820935,0.615353,0.720683,0.442622,0.261223,0.552375,0.204891,0.329644,0.210554,0.898951,0.881357,0.0646768,0.702213,0.660248,0.167226,0.666053,0.960906,0.802728,0.161891,0.818609,0.334443,0.241349,0.127011,0.277937,0.329816,0.212408,0.0486621,0.0351721,0.0591908,0.35367,0.323288,0.911307,0.244203,0.587899,0.714305,0.572936,0.742138,0.417873,0.885924,0.921802,0.468311,0.387303,0.359307,0.308216,0.666548,0.39874,0.396626,0.0964026,0.604428,0.890493,0.324718,0.226531,0.163165,0.798882,0.931518,0.391781,0.524013,0.237395,0.485264,0.173848,0.591074,0.379906,0.647882,0.26891,0.232717,0.372976,0.456541,0.551724,0.122901,0.349212,0.142597,0.00631094,0.789844,0.934899,0.669661,0.312841,0.926264,0.721162,0.5993,0.0993629,0.231248,0.308582,0.93268,0.67225,0.105559,0.769107,0.983415,0.121985,0.64474,0.352657,0.100322,0.66602,0.208654,0.546871,0.0290624,0.0487188,0.713281,0.923589,0.987974,0.777208,0.555682,0.246331,0.374627,0.208599,0.0523303,0.524178,0.747575,0.390779,0.438472,0.123169,0.348215,0.825921,0.033114,0.5592,0.115146,0.221011,0.84609,0.0102682,0.401913,0.9843,0.38915,0.0432006,0.204801,0.819368,0.91985,0.425206,0.363661,0.475401,0.0518371,0.0657651,0.663689,0.381234,0.12192,0.772481,0.812289,0.687577,0.795112,0.075608,0.113053,0.159728,0.753106,0.704439,0.040227,0.901913,0.309681,0.608883,0.881395,0.366336,0.771892,0.850335,0.594126,0.076802,0.442125,0.624113,0.290999,0.747079,0.321684,0.550319,0.607738,0.971693,0.626337,0.515809,0.0881425,0.0633641,0.710849,0.929003,0.605102,0.363417,0.0968189,0.352059,0.445376,0.375015,0.377441,0.613554,0.8419,0.318683,0.115883,0.228267,0.387721,0.436331,0.844319,0.218229,0.46656,0.0105901,0.82525,0.892186,0.150094,0.991744,0.967797,0.0592282,0.952159,0.369369,0.761339,0.131204,0.203589,0.981144,0.870856,0.574722,0.543754,0.252854,0.979738,0.513332,0.45344,0.439891,0.336305,0.780501,0.971091,0.792839,0.113399,0.0993652,0.277167,0.350052,0.644881,0.23919,0.877256,0.077195,0.384032,0.991807,0.933852,0.0129159,0.830732,0.344009,0.55804,0.366466,0.128796,0.30242,0.353718,0.707122,0.221346,0.362217,0.437373,0.120889,0.952509,0.190215,0.482296,0.989483,0.849147,0.171647,0.168956,0.629355,0.185239,0.715177,0.768669,0.750156,0.393205,0.589194,0.851159,0.882226,0.00959134,0.89733,0.594968,0.766736,0.97995,0.197054,0.652295,0.139296,0.884982,0.648259,0.882376,0.997279,0.594436,0.0278714,0.534394,0.315831,0.652626,0.730893,0.907725,0.843886,0.253858,0.460732,0.421686,0.484294,0.573506,0.493764,0.37787,0.575908,0.777024,0.967692,0.180015,0.856416,0.212353,0.429917,0.875546,0.763297,0.499902,0.0645272,0.40432,0.363065,0.606363,0.309371,0.623267,0.220532,0.55569,0.0806956,0.714897,0.0182283,0.449593,0.472542,0.864634,0.931297,0.747059,0.462364,0.824669,0.114016,0.348759,0.371053,0.221695,0.392047,0.719936,0.414093,0.387461,0.61305,0.125655,0.980186,0.363354,0.467653,0.231749,0.495888,0.891519,0.655127,0.430028,0.383375,0.0484641,0.495492,0.6168,0.471334,0.451178,0.344119,0.535318,0.645649,0.166892,0.0106332,0.894543,0.697251,0.216789,0.421654,0.12066,0.68004,0.669679,0.276572,0.479074,0.356068,0.130181,0.285682,0.188699,0.306229,0.93539,0.304895,0.979877,0.181586,0.20998,0.875253,0.457589,0.376061,0.238534,0.121537,0.545022,0.926698,0.158433,0.646282,0.0483849,0.428873,0.281013,0.105931,0.238206,0.348202,0.333106,0.232702,0.446987,0.309281,0.493618,0.827941,0.0879415,0.118221,0.0395954,0.0632403,0.349813,0.65745,0.00512362,0.75467,0.839935,0.0147082,0.389969,0.98078,0.0471658,0.89613,0.287401,0.129511,0.140386,0.646686,0.383563,0.21631,0.723158,0.231685,0.51502,0.0244757,0.770425,0.232657,0.662314,0.999722,0.265618,0.298348,0.958195,0.837472,0.966611,0.200552,0.180806,0.43262,0.689189,0.612466,0.894724,0.18825,0.468571,0.59902,0.577416,0.978662,0.459793,0.84204,0.256535,0.415304,0.949464,0.24096,0.302169,0.378372,0.0342972,0.755848,0.132282,0.494755,0.990287,0.0152715,0.215377,0.84831,0.982261,0.766404,0.258864,0.311713,0.629356,0.766965,0.238221,0.0348222,0.725463,0.515405,0.34489,0.558309,0.178038,0.0646312,0.597477,0.157532,0.868047,0.869034,0.509292,0.380958,0.344668,0.697858,0.447212,0.932118,0.859349,0.553264,0.423243,0.13562,0.470517,0.71438,0.818874,0.338524,0.179419,0.0174977,0.774435,0.464449,0.0677041,0.112268,0.282753,0.354529,0.0170745,0.799167,0.0128207,0.966921,0.93334,0.669234,0.499918,0.99096,0.347538,0.758853,0.217423,0.812357,0.796249,0.333048,0.0177258,0.418727,0.141133,0.397327,0.129831,0.143079,0.485163,0.2539,0.322243,0.12069,0.343973,0.598511,0.282668,0.412433,0.0692546,0.837427,0.745413,0.586835,0.75851,0.490306,0.688602,0.850301,0.989603,0.604963,0.930415,0.625928,0.320973,0.221526,0.76503,0.862185,0.425847,0.4535,0.585718,0.0879382,0.357467,0.857935,0.980456,0.66337,0.36376,0.632083,0.181331,0.0621294,0.20937,0.756408,0.239172,0.617158,0.718196,0.349652,0.427994,0.940135,0.852973,0.0774847,0.065181,0.869864,0.0833142,0.368866,0.152858,0.399077,0.372946,0.254708,0.119131,0.533805,0.599093,0.32208,0.0454779,0.284726,0.540331,0.649855,0.832715,0.237927,0.487991,0.295909,0.680925,0.995343,0.803405,0.530607,0.558314,0.862228,0.477534,0.575244,0.659438,0.777802,0.345535,0.0284542,0.441645,0.688989,0.323748,0.695184,0.794346,0.226124,0.181049,0.404664,0.533037,0.306267,0.79841,0.250273,0.589151,0.752056,0.218473,0.511154,0.80052,0.634204,0.56162,0.146709,0.338619,0.611085,0.290659,0.593455,0.90423,0.876229,0.625115,0.992833,0.997143,0.434038,0.871768,0.783464,0.503156,0.720567,0.174672,0.313912,0.298148,0.487673,0.386656,0.74847,0.896543,0.922237,0.113804,0.689992,0.553533,0.918412,0.0218358,0.693832,0.227144,0.309286,0.934839,0.230688,0.46151,0.500944,0.560863,0.566264,0.566755,0.3305,0.485511,0.508958,0.225972,0.758019,0.608084,0.308726,0.368827,0.0371541,0.0422546,0.818803,0.794136,0.177702,0.353107,0.563634,0.601127,0.266141,0.505943,0.360576,0.358955,0.686604,0.603616,0.868987,0.57699,0.0570623,0.887561,0.0950226,0.221895,0.777849,0.877931,0.352317,0.965391,0.642331,0.736805,0.732572,0.396246,0.0913824,0.5986,0.44182,0.319487,0.427513,0.723313,0.54382,0.353633,0.999512,0.652834,0.786429,0.176686,0.356614,0.34527,0.190317,0.785833,0.0671849,0.785996,0.0414431,0.343088,0.668089,0.538294,0.596882,0.493824,0.505958,0.387196,0.766669,0.343559,0.225016,0.509783,0.429258,0.68267,0.114946,0.5915,0.466544,0.508014,0.514485,0.192177,0.976085,0.769659,0.487522,0.63765,0.501257,0.807497,0.317276,0.190258,0.922248,0.728115,0.0551484,0.00518018,0.625837,0.322775,0.927785,0.00894994,0.543998,0.210679,0.275275,0.00558031,0.983908,0.279762,0.863465,0.696731,0.888236,0.123697,0.315999,0.667522,0.396325,0.926968,0.561868,0.844826,0.784614,0.422643,0.857485,0.396992,0.907903,0.443938,0.500692,0.157626,0.64985,0.505607,0.67268,0.0767545,0.687296,0.414799,0.130137,0.902258,0.76393,0.745519,0.783841,0.849038,0.792905,0.584631,0.302026,0.138138,0.192434,0.00822324,0.227727,0.928966,0.146558,0.676294,0.427404,0.243646,0.889967,0.327673,0.0417162,0.653893,0.0458424,0.120918,0.806198,0.444041,0.146338,0.149342,0.897274,0.0418391,0.402777,0.135156,0.907757,0.761252,0.0132445,0.520516,0.684591,0.842513,0.0860162,0.248416,0.78959,0.60121,0.501433,0.422816,0.408855,0.716904,|0.0854686,0.405818,0.490702,0.379614,0.0736374,0.775969,0.434902,0.554285,0.0180236,0.47807,0.373652,0.505085,0.210394,0.0521535,0.399391,0.818735,0.55429,0.627771,0.603043,0.926741,0.0606697,0.101289,0.778622,0.611576,0.444124,0.990086,0.141381,0.85181,0.505517,0.501087,0.938967,0.993222,0.785579,0.299993,0.924364,0.094243,0.489137,0.474698,0.53744,0.832965,0.717041,0.508696,0.858537,0.86642,0.647129,0.112555,0.774249,0.827634,0.108214,0.642304,0.509863,0.140401,0.43491,0.305467,0.546175,0.473006,0.712634,0.469726,0.404123,0.501231,0.305891,0.153936,0.217843,0.179168,0.307663,0.426922,0.81974,0.331158,0.97097,0.887661,0.945926,0.657018,0.654409,0.987155,0.014483,0.520435,0.920994,0.162326,0.552963,0.453985,0.416204,0.0805317,0.993311,0.140803,0.558178,0.687365,0.196981,0.585079,0.818924,0.700786,0.481343,0.75227,0.250033,0.988935,0.237192,0.539186,0.512087,0.999428,0.249843,0.523713,0.510914,0.809094,0.350287,0.932915,0.484122,0.476858,0.921428,0.508543,0.968162,0.727717,0.58722,0.811626,0.973304,0.436296,0.206753,0.835971,0.441248,0.490914,0.85352,0.856542,0.298017,0.241328,0.165542,0.358401,0.618349,0.716761,0.109525,0.568943,0.526595,0.739204,0.436883,0.74039,0.693618,0.586351,0.525452,0.373222,0.418515,0.698557,0.885552,0.698403,0.51952,0.274632,0.918688,0.311219,0.159779,0.891862,0.965804,0.782493,0.11503,0.057243,0.363434,0.352989,0.0201235,0.568311,0.689591,0.860776,0.559745,0.497493,0.439601,0.140472,0.110203,0.731967,0.759848,0.503167,0.791892,0.766022,0.14882,0.79218,0.70942,0.320377,0.208239,0.541888,0.0201566,0.827065,0.645713,0.596132,0.0493535,0.537559,0.296153,0.314713,0.65388,0.371265,0.235554,0.885579,0.659805,0.821171,0.94173,0.139543,0.896871,0.0809627,0.340674,0.394405,0.198656,0.925752,0.0776798,0.603644,0.989627,0.974994,0.132656,0.357486,0.455615,0.00258482,0.573488,0.143795,0.548693,0.776798,0.0476261,0.578155,0.317836,0.348962,0.920586,0.506902,0.899974,0.896654,0.0370718,0.596979,0.340441,0.233707,0.391016,0.0303662,0.884997,0.493139,0.733041,0.909625,0.737704,0.467473,0.323549,0.644812,0.441076,0.111985,0.232072,0.0958461,0.245208,0.0467018,0.893192,0.0148453,0.369249,0.901623,0.334244,0.466181,0.755055,0.569332,0.05657,0.545583,0.360033,0.332812,0.919608,0.531388,0.468522,0.527174,0.372327,0.592779,0.463964,0.609854,0.0619141,0.200936,0.505129,0.0486839,0.961886,0.693525,0.0932204,0.177757,0.397866,0.143526,0.488344,0.201652,0.995626,0.914305,0.852999,0.955524,0.391459,0.45277,0.549903,0.610269,0.220374,0.994112,0.236463,0.0483068,0.00169092,0.775712,0.251314,0.695979,0.334725,0.598379,0.626779,0.881746,0.953332,0.635167,0.714537,0.00950193,0.87467,0.87156,0.742746,0.00371927,0.997652,0.291469,0.910705,0.271397,0.808478,0.424751,0.99011,0.450242,0.358526,0.468277,0.621451,0.744158,0.769651,0.0287508,0.383067,0.0794529,0.140602,0.883982,0.581057,0.620216,0.779028,0.486867,0.731234,0.399776,0.124457,0.731992,0.773489,0.0310384,0.254269,0.367487,0.223576,0.343593,0.686206,0.70189,0.30585,0.785901,0.480968,0.314886,0.995426,0.965142,0.358807,0.350558,0.488237,0.192144,0.495623,0.771157,0.245561,0.251083,0.355768,0.54201,0.692033,0.633873,0.763788,0.298867,0.895203,0.757242,0.515471,0.217234,0.493694,0.395147,0.591058,0.662842,0.766251,0.405453,0.402615,0.0754718,0.0166152,0.886897,0.896915,0.907018,0.610737,0.69811,0.417148,0.165505,0.628803,0.181092,0.910426,0.843849,0.588556,0.189335,0.716356,0.0228295,0.507458,0.242516,0.150749,0.400726,0.505163,0.433513,0.158532,0.143532,0.573155,0.485241,0.76033,0.832037,0.0874969,0.670192,0.515371,0.658513,0.700027,0.416006,0.189898,0.326367,0.498909,0.710404,0.288059,0.431629,0.213418,0.279032,0.632764,0.858994,0.0170816,0.325239,0.0787234,0.811516,0.349619,0.616348,0.916327,0.893923,0.242891,0.983711,0.811308,0.161095,0.46182,0.992578,0.693045,0.889953,0.670287,0.448309,0.718442,0.361095,0.0884349,0.668594,0.117359,0.986291,0.354456,0.870327,0.0801697,0.993196,0.352441,0.24681,0.242471,0.51212,0.353779,0.532831,0.221344,0.356123,0.71029,0.847224,0.919904,0.850492,0.619578,0.564627,0.491938,0.33,0.55743,0.504987,0.0902283,0.948678,0.471014,0.168889,0.471015,0.59762,0.0855336,0.345305,0.0424772,0.172035,0.237975,0.767454,0.107562,0.961998,0.781773,0.329789,0.18857,0.36288,0.540665,0.396682,0.752366,0.348429,0.824764,0.051255,0.535767,0.160888,0.365621,0.859533,0.480868,0.555909,0.157416,0.234463,0.613072,0.0248999,0.0964553,0.00965106,0.729397,0.744856,0.706435,0.776804,0.351299,0.374686,0.986248,0.512607,0.797468,0.560917,0.0773282,0.661544,0.776964,0.0405694,0.235151,0.14786,0.319406,0.639543,0.132404,0.518191,0.417942,0.748308,0.151444,0.646446,0.935391,0.27684,0.00883579,0.34125,0.427549,0.222696,0.802637,0.372974,0.589449,0.0642416,0.755962,0.446447,0.400158,0.637143,0.794538,0.71414,0.0863228,0.00822431,0.68481,0.235673,0.871593,0.468265,0.398772,0.477361,0.119907,0.0313249,0.686472,0.532631,0.464317,0.87563,0.403629,0.991184,0.614633,0.210109,0.938916,0.10452,0.746051,0.125974,0.679336,0.805672,0.86935,0.554821,0.862969,0.296287,0.967836,0.564968,0.652515,0.936266,0.854269,0.508626,0.473843,0.576555,0.26699,0.618604,0.724442,0.895859,0.50501,0.168074,0.747921,0.933307,0.00285602,0.999425,0.289315,0.513032,0.470495,0.842731,0.203486,0.300228,0.928264,0.94919,0.567506,0.347876,0.316737,0.0408247,0.380607,0.633255,0.458534,0.935784,0.608164,0.630852,0.488837,0.273612,0.422065,0.224844,0.759251,0.702553,0.946862,0.778621,0.737955,0.189671,0.950929,0.139659,0.105894,0.0561736,0.0674905,0.21973,0.27161,0.550035,0.165336,0.543843,0.60701,0.154873,0.174671,0.661415,0.843699,0.414623,0.475809,0.473528,0.0509027,0.482082,0.179039,0.979976,0.0612875,0.803323,0.996156,0.656009,0.619985,0.140697,0.316737,0.650183,0.63186,0.0944805,0.831076,0.765322,0.727485,0.933094,0.430254,0.935596,0.188285,0.921133,0.122608,0.342047,0.783734,0.10301,0.59241,0.762793,0.892119,0.486513,0.0715516,0.74501,0.739136,0.82207,0.715507,0.95924,0.846919,0.995241,0.407191,0.656128,0.950384,0.756829,0.190194,0.522897,0.388041,0.56339,0.378975,0.330993,0.0439047,0.916956,0.881381,0.422381,0.914607,0.141578,0.414547,0.205514,0.355217,0.884961,0.520641,0.674554,0.725819,0.233128,0.113814,0.586307,0.631142,0.735032,0.907533,0.687119,0.877035,0.233715,0.658456,0.0991421,0.925623,0.173354,0.252249,0.265323,0.926253,0.133308,0.502622,0.868057,0.393596,0.771248,0.0592623,0.575389,0.58941,0.920626,0.34551,0.17267,0.785211,0.541337,0.647277,0.65805,0.931827,0.811297,0.162645,0.620859,0.00779295,0.522862,0.918579,0.161732,0.258873,0.443938,0.441983,0.565832,0.90875,0.849121,0.0859765,0.897769,0.744574,0.121945,0.258592,0.0165532,0.226406,0.701288,0.120942,0.747318,0.800085,0.192267,0.837084,0.152423,0.902284,0.769927,0.32583,0.0592691,0.266001,0.510207,0.131693,0.0248562,0.563977,0.248292,0.168574,0.049765,0.0854649,0.373649,0.0129104,0.726397,0.295716,0.191878,0.157235,0.677336,0.322061,0.0562697,0.905928,0.153089,0.554322,0.286308,0.486243,0.900519,0.177576,0.398465,0.0701137,0.0982938,0.494003,0.615705,0.549911,0.124018,0.369371,0.416983,0.666964,0.953445,0.691226,0.150038,0.851008,0.118119,0.188126,0.710429,0.674567,0.717437,0.748058,0.947017,0.00936747,0.909039,0.980594,0.666374,0.47723,0.707072,0.9346,0.220308,0.831857,0.0392767,0.294902,0.962416,0.510476,0.562974,0.690561,0.620602,0.256625,0.70526,0.720436,0.545808,0.277744,0.710286,0.796005,0.153865,0.801152,0.605908,0.175303,0.652511,0.465258,0.640628,0.817876,0.764801,0.50192,0.0540491,0.676685,0.397535,0.262606,0.00885153,0.900785,0.401444,0.725535,0.582989,0.893733,0.151158,0.683605,0.237147,0.417792,0.943952,0.748071,0.28528,0.686183,0.749347,0.0011664,0.370805,0.797293,0.0230687,0.604495,0.331314,0.644092,0.568791,0.576022,0.193749,0.830044,0.0250632,0.355241,0.814751,0.305345,0.798719,0.876819,0.874651,0.31305,0.00933838,0.865101,0.294543,0.966873,0.315805,0.700759,0.131923,0.887399,0.774233,0.261278,0.506858,0.54075,0.405815,0.0740245,0.0356485,0.69,0.51816,0.518768,0.281509,0.434291,0.29132,0.131463,0.44321,0.929165,0.551002,0.0921283,0.124852,0.826268,0.115529,0.483908,0.696355,0.563933,0.126854,0.895322,0.181214,0.909635,0.108727,0.657618,0.999456,0.334752,0.187747,0.416035,0.517157,0.878107,0.0691165,0.525276,0.780481,0.785775,0.971444,0.31668,0.396926,0.52433,0.256056,0.0474215,0.324746,0.501774,0.1071,0.0434813,0.310229,0.712459,0.362983,0.153424,0.790491,0.849519,0.277327,0.520619,0.522124,0.0321212,0.963855,0.677941,0.405321,0.299751,0.186595,0.784814,0.636617,0.99132,0.44355,0.798281,0.158529,0.386138,0.606224,0.220631,0.998341,0.651671,0.771314,0.174792,0.769939,0.170878,0.432981,0.0642761,0.0302927,0.992788,0.0107023,0.598935,0.72521,0.905698,0.156705,0.331887,0.305194,0.915286,0.277532,0.858511,0.979089,0.958567,0.792222,0.359556,0.197458,0.332293,0.0569305,0.844567,0.154643,0.453106,0.951294,0.784911,0.345368,0.322634,0.12768,0.286586,0.96173,0.673568,0.760765,0.547761,0.729773,0.277438,0.943928,0.64508,0.7803,0.629423,0.570927,0.786115,0.660999,0.454293,0.0775341,0.675629,0.569791,0.586413,0.235915,0.572613,0.491865,0.256508,0.285014,|0.758989,0.237889,0.232883,0.36727,0.19191,0.409122,0.888927,0.714078,0.386005,0.315569,0.435874,0.0145485,0.157705,0.430208,0.162383,0.745099,0.151606,0.973395,0.565722,0.482466,0.0814821,0.318457,0.315587,0.62238,0.0823888,0.939287,0.913118,0.409067,0.456414,0.33588,0.873487,0.948897,0.586745,0.887552,0.936186,0.52397,0.492832,0.514807,0.174538,0.656872,0.3241,0.516458,0.52515,0.674914,0.0387813,0.376482,0.50502,0.496949,0.471242,0.052501,0.0530246,0.482205,0.627379,0.622135,0.0756759,0.0345407,0.806275,0.325547,0.289793,0.811379,0.937351,0.742422,0.245959,0.304889,0.185498,0.665988,0.37792,0.643326,0.0628569,0.875011,0.748309,0.913779,0.818613,0.364903,0.261907,0.319919,0.242449,0.791092,0.387588,0.489773,0.726058,0.243415,0.442472,0.596473,0.22833,0.734706,0.831431,0.0889543,0.563246,0.250885,0.321955,0.503024,0.171664,0.47282,0.046525,0.123934,0.683502,0.948127,0.82925,0.294754,0.812462,0.288927,0.874627,0.848734,0.0139746,0.248294,0.180147,0.257546,0.0417631,0.902941,0.461331,0.189742,0.753473,0.518793,0.9294,0.586565,0.191541,0.0804566,0.60172,0.00524151,0.981431,0.893564,0.368354,0.56327,0.808161,0.082669,0.395994,0.348395,0.945763,0.150599,0.489895,0.751625,0.872421,0.62772,0.51179,0.642458,0.618034,0.812899,0.386868,0.700761,0.0372051,0.162924,0.726448,0.569412,0.232297,0.178115,0.69372,0.0402967,0.985301,0.524165,0.934203,0.229392,0.201039,0.13125,0.392923,0.157831,0.841925,0.218092,0.206747,0.986282,0.576233,0.96397,0.203591,0.397049,0.263195,0.982459,0.7141,0.384131,0.111725,0.678331,0.786207,0.61496,0.172077,0.0714971,0.534451,0.521907,0.110066,0.331413,0.411334,0.0873153,0.953768,0.0765712,0.782995,0.682632,0.00709832,0.321353,0.00764716,0.331797,0.691416,0.39263,0.967561,0.513308,0.0900043,0.0318469,0.120727,0.729429,0.741625,0.611405,0.708458,0.773709,0.332287,0.698514,0.0444791,0.490651,0.24066,0.130104,0.566753,0.72751,0.741527,0.639642,0.193961,0.910046,0.976733,0.542346,0.257365,0.202466,0.480151,0.990914,0.145594,0.727164,0.231767,0.329104,0.387594,0.0695232,0.519554,0.214262,0.497138,0.545862,0.780333,0.170015,0.362081,0.84089,0.0475552,0.0418969,0.320613,0.033349,0.319377,0.577411,0.729762,0.699088,0.189616,0.290076,0.596857,0.832705,0.799396,0.53126,0.15399,0.428739,0.965644,0.034871,0.73451,0.953411,0.0702602,0.256241,0.371897,0.663921,0.904947,0.50512,0.865302,0.644308,0.754152,0.676761,0.687494,0.576084,0.0622743,0.482217,0.874226,0.404207,0.446917,0.139337,0.531128,0.0838709,0.131422,0.564301,0.176272,0.837214,0.472442,0.701482,0.0220873,0.200882,0.763777,0.82875,0.132197,0.478425,0.935598,0.0128247,0.550014,0.0251665,0.612553,0.926682,0.935643,0.567425,0.659338,0.235714,0.43152,0.782061,0.25754,0.290468,0.198701,0.424866,0.493693,0.20304,0.30025,0.278013,0.728094,0.185203,0.598032,0.104292,0.200158,0.698552,0.943283,0.924668,0.231378,0.569018,0.0662007,0.691049,0.34477,0.893881,0.608547,0.923039,0.240987,0.317857,0.15429,0.27055,0.940312,0.344866,0.544151,0.837996,0.652366,0.37362,0.875005,0.232449,0.143453,0.0817249,0.194488,0.980168,0.429466,0.699354,0.937998,0.693244,0.818416,0.0587327,0.146778,0.0955308,0.830461,0.36615,0.225439,0.998969,0.491814,0.475013,0.857004,0.0166224,0.175496,0.819221,0.785523,0.341244,0.491068,0.648849,0.41085,0.392461,0.0909523,0.671177,0.524891,0.100916,0.541762,0.764831,0.876642,0.314534,0.591203,0.0394853,0.968877,0.127151,0.923927,0.360633,0.711322,0.297349,0.376605,0.706354,0.317134,0.768527,0.240091,0.897357,0.0475389,0.202843,0.679153,0.631308,0.356706,0.00975507,0.139764,0.586859,0.663826,0.507069,0.636072,0.116159,0.665671,0.382098,0.563803,0.14159,0.197053,0.266931,0.0968592,0.296792,0.896352,0.37807,0.30061,0.0296261,0.234842,0.131889,0.765381,0.444572,0.337779,0.983565,0.400428,0.915497,0.680256,0.406811,0.716837,0.229794,0.735299,0.822452,0.886527,0.347135,0.962152,0.762774,0.337713,0.175034,0.0579172,0.495054,0.316754,0.434571,0.794341,0.618169,0.772036,0.49969,0.272277,0.319346,0.0908902,0.224506,0.510415,0.332418,0.628373,0.672372,0.787311,0.83028,0.869053,0.1262,0.456938,0.68718,0.641109,0.631063,0.648123,0.00297511,0.0964127,0.994822,0.692267,0.359275,0.916713,0.873335,0.14588,0.896586,0.813314,0.556602,0.752456,0.0632349,0.992911,0.720793,0.530953,0.318732,0.735196,0.14623,0.166664,0.344592,0.102939,0.813886,0.958019,0.40537,0.469448,0.333888,0.0143967,0.471641,0.408476,0.113033,0.482841,0.5193,0.884926,0.112333,0.575657,0.567779,0.509155,0.856143,0.524259,0.502677,0.892658,0.362241,0.468987,0.699872,0.407757,0.913459,0.0830631,0.298594,0.644033,0.219684,0.756959,0.332872,0.930619,0.82108,0.713299,0.474523,0.772913,0.87265,0.313374,0.437551,0.0438691,0.324621,0.299051,0.909034,0.163585,0.301094,0.988695,0.723227,0.0662292,0.970649,0.939177,0.676798,0.644451,0.878456,0.309186,0.334448,0.187455,0.977415,0.932749,0.344208,0.984785,0.499441,0.0127789,0.521547,0.545789,0.761379,0.284138,0.627439,0.657503,0.290431,0.185415,0.0561896,0.703826,0.0728669,0.473886,0.739652,0.144566,0.961478,0.573434,0.539096,0.66355,0.293246,0.665668,0.500102,0.397759,0.0760184,0.974888,0.597335,0.427302,0.413471,0.872416,0.192444,0.0892945,0.0269029,0.239846,0.638183,0.461883,0.219674,0.848575,0.734982,0.3341,0.979485,0.437626,0.786321,0.49813,0.792855,0.120553,0.853205,0.501393,0.290249,0.00971049,0.488327,0.52148,0.545506,0.517698,0.800794,0.17597,0.279058,0.523067,0.934516,0.845024,0.613749,0.402304,0.93008,0.0105004,0.203157,0.735938,0.132234,0.583875,0.418546,0.576863,0.497993,0.161739,0.251389,0.100084,0.510564,0.20279,0.905688,0.501742,0.463796,0.446656,0.682914,0.195099,0.684388,0.795244,0.612996,0.498918,0.390467,0.630489,0.704946,0.154249,0.898133,0.895757,0.99941,0.91626,0.937163,0.622711,0.377044,0.478936,0.418197,0.195134,0.666759,0.157869,0.227619,0.708262,0.612669,0.336442,0.000622392,0.708158,0.818548,0.271491,0.0632349,0.374963,0.531252,0.313972,0.679227,0.052343,0.601291,0.212258,0.43193,0.935599,0.832057,0.382174,0.272797,0.544794,0.328257,0.689101,0.191416,0.822682,0.427162,0.174256,0.266816,0.753415,0.339659,0.71092,0.893805,0.272001,0.00134319,0.571906,0.212653,0.820633,0.992702,0.713688,0.407486,0.179467,0.0885087,0.401636,0.966906,0.652107,0.806966,0.679378,0.310748,0.628793,0.17531,0.336457,0.795108,0.302922,0.0439925,0.431741,0.842966,0.719729,0.306605,0.675435,0.0596845,0.415736,0.0200449,0.302895,0.275222,0.770002,0.521591,0.988438,0.361303,0.520579,0.580062,0.395407,0.699016,0.0732937,0.461762,0.0916474,0.78945,0.516235,0.0825895,0.870052,0.135087,0.191181,0.466002,0.0912945,0.359814,0.492501,0.856744,0.545942,0.68824,0.583191,0.798707,0.983234,0.419401,0.744605,0.609224,0.344799,0.417141,0.876554,0.941626,0.447069,0.209554,0.355636,0.722119,0.175129,0.813945,0.622147,0.21217,0.0298364,0.71595,0.452852,0.01354,0.372817,0.126761,0.422107,0.875081,0.109426,0.609459,0.866701,0.514082,0.335799,0.379807,0.794648,0.345512,0.381534,0.312501,0.723122,0.536371,0.0516648,0.505009,0.358497,0.856258,0.595843,0.299218,0.957283,0.420315,0.0426025,0.699686,0.832758,0.419973,0.439408,0.495843,0.033529,0.135221,0.316677,0.874382,0.937015,0.507166,0.677184,0.529584,0.460109,0.30229,0.282688,0.376381,0.857307,0.652884,0.423744,0.436289,0.983196,0.0751585,0.982013,0.269013,0.9409,0.986554,0.0978217,0.0381593,0.640213,0.335893,0.0843686,0.7235,0.6108,0.313427,0.954707,0.529618,0.91126,0.337804,0.358978,0.525326,0.619202,0.736572,0.713825,0.217928,0.690242,0.380131,0.983509,0.272983,0.189085,0.993686,0.525915,0.0146563,0.522686,0.114882,0.964102,0.288156,0.389191,0.183699,0.973809,0.51292,0.187097,0.137461,0.996884,0.807717,0.0401096,0.207699,0.390794,0.0826113,0.0067659,0.950818,0.36705,0.103288,0.390929,0.377769,0.137717,0.113373,0.539388,0.572453,0.713038,0.917315,0.373076,0.602818,0.605299,0.0421881,0.670658,0.976612,0.651854,0.772176,0.205154,0.0224701,0.683705,0.777071,0.271785,0.570361,0.70942,0.58735,0.959473,0.833465,0.621959,0.1755,0.701137,0.0586312,0.792539,0.707292,0.669526,0.536113,0.0619061,0.407216,0.625608,0.836587,0.965255,0.421509,0.618472,0.989864,0.527856,0.740674,0.598191,0.110133,0.14258,0.193695,0.289094,0.480009,0.220654,0.754428,0.797391,0.106502,0.200893,0.784901,0.0874782,0.00876439,0.293773,0.0865648,0.483596,0.736987,0.988891,0.734826,0.176005,0.280006,0.339004,0.10205,0.59686,0.288584,0.98285,0.798403,0.960817,0.810678,0.261107,0.732867,0.147104,0.671221,0.310322,0.0826022,0.338589,0.718015,0.758119,0.20284,0.236069,0.454545,0.31306,0.723852,0.461373,0.220793,0.627945,0.36616,0.828447,0.71045,0.170172,0.500941,0.215263,0.00684881,0.852487,0.498519,0.441545,0.120712,0.260461,0.554307,0.599015,0.562997,0.976211,0.25253,0.10558,0.98672,0.599728,0.531436,0.57536,0.480768,0.186426,0.176019,0.465988,0.13221,0.543696,0.547019,0.480069,0.239072,0.14698,0.679865,0.721299,0.0181277,0.499286,0.127865,0.754348,0.302621,0.469158,0.425234,0.767649,0.988527,0.44536,0.10682,0.95686,0.787578,0.357308,0.757112,0.649386,0.791893,0.539984,0.139745,0.732896,0.477049,0.543888,0.390456,0.999085,0.493623,0.0682997,0.72988,0.725531,0.112761,0.921065,0.0133126,|0.889265,0.594701,0.872706,0.718275,0.145961,0.171151,0.591725,0.706796,0.251697,0.647577,0.937533,0.546347,0.893152,0.687444,0.188124,0.0324979,0.678791,0.562832,0.861437,0.829794,0.743847,0.493072,0.680925,0.749867,0.576878,0.550532,0.769991,0.474638,0.9794,0.187738,0.0787974,0.59108,0.367076,0.137702,0.756431,0.898835,0.477079,0.00282758,0.371948,0.70637,0.245649,0.386701,0.160091,0.957618,0.00503695,0.00677848,0.493263,0.0725805,0.274069,0.242015,0.787853,0.134947,0.944938,0.0452926,0.839414,0.440416,0.328495,0.15404,0.688589,0.844261,0.905523,0.840452,0.699545,0.433142,0.5846,0.352113,0.289524,0.976538,0.867937,0.359434,0.94127,0.372857,0.230267,0.157976,0.815762,0.408936,0.559607,0.144581,0.736724,0.786524,0.677265,0.147017,0.943103,0.326356,0.437416,0.487412,0.199274,0.301664,0.697966,0.568197,0.139531,0.531964,0.0352001,0.332975,0.560434,0.49257,0.833168,0.777568,0.974466,0.276888,0.631414,0.0749982,0.522908,0.887969,0.190073,0.667093,0.884198,0.923117,0.389363,0.987291,0.395861,0.410174,0.650674,0.965273,0.172789,0.655988,0.871185,0.737,0.637837,0.230405,0.812321,0.535725,0.492688,0.403881,0.754057,0.294528,0.128258,0.52643,0.808008,0.389211,0.954666,0.478554,0.392203,0.843021,0.251289,0.931855,0.53312,0.872543,0.0395931,0.804443,0.907795,0.768192,0.272043,0.626279,0.0241909,0.545806,0.00306356,0.268045,0.52712,0.618028,0.461046,0.0633759,0.31813,0.0157365,0.875848,0.132525,0.85509,0.451037,0.159445,0.994944,0.626908,0.543479,0.321901,0.975037,0.701486,0.116978,0.107116,0.573849,0.761474,0.567058,0.497518,0.482749,0.643023,0.906223,0.404347,0.355493,0.635286,0.307804,0.818246,0.0949512,0.617085,0.807138,0.933964,0.933897,0.85763,0.846056,0.563155,0.0424064,0.313966,0.390882,0.962272,0.498531,0.933708,0.382943,0.360923,0.165013,0.539753,0.180662,0.154721,0.987925,0.0652667,0.445484,0.383409,0.146533,0.715601,0.0238122,0.490287,0.953045,0.630352,0.878363,0.947098,0.301892,0.958989,0.0554296,0.341251,0.730443,0.805425,0.228299,0.92636,0.921706,0.527843,0.985841,0.800754,0.973128,0.160436,0.846003,0.619587,0.441634,0.213801,0.828464,0.456069,0.691088,0.912302,0.854119,0.0783253,0.621346,0.969365,0.553757,0.965189,0.661589,0.493378,0.273759,0.549611,0.882005,0.195861,0.741046,0.834048,0.153522,0.659884,0.116226,0.979148,0.250635,0.115106,0.349076,0.963736,0.154744,0.139422,0.587218,0.423053,0.562341,0.249919,0.269254,0.033127,0.679169,0.548474,0.854932,0.92985,0.487533,0.827849,0.682459,0.243228,0.186421,0.482132,0.348114,0.547576,0.509972,0.660005,0.83232,0.252255,0.624101,0.589014,0.26447,0.0989797,0.924887,0.536171,0.105186,0.553064,0.32013,0.149326,0.943204,0.671908,0.904031,0.0541129,0.890485,0.343225,0.578046,0.343898,0.520068,0.624536,0.253836,0.323714,0.727337,0.284014,0.452025,0.295385,0.429976,0.0111265,0.42155,0.500688,0.853965,0.992479,0.0827084,0.262996,0.937552,0.106447,0.236783,0.351994,0.453612,0.290829,0.239598,0.361743,0.274484,0.902825,0.73904,0.535028,0.826297,0.950772,0.234054,0.599205,0.247994,0.501193,0.00436145,0.373814,0.372865,0.303419,0.130052,0.976284,0.345927,0.0476246,0.892656,0.0490569,0.551875,0.631194,0.217734,0.947467,0.664509,0.177489,0.826252,0.267486,0.504472,0.170424,0.550729,0.269449,0.792738,0.854346,0.279721,0.223165,0.898699,0.020731,0.98588,0.582324,0.603164,0.109871,0.620933,0.0737121,0.0664659,0.596051,0.771755,0.00037992,0.685608,0.885904,0.981858,0.407182,0.509009,0.882805,0.587836,0.497656,0.228366,0.0329137,0.8286,0.17741,0.935145,0.737614,0.478959,0.928987,0.442901,0.957692,0.531793,0.143559,0.421076,0.334115,0.930885,0.297024,0.177848,0.744628,0.417331,0.91787,0.376818,0.0666237,0.68652,0.564029,0.230893,0.316488,0.428744,0.557798,0.785044,0.648793,0.075522,0.760496,0.403835,0.962085,0.575711,0.214853,0.683981,0.241542,0.627943,0.00789332,0.992973,0.901786,0.319608,0.406816,0.419089,0.448991,0.158849,0.853771,0.33587,0.421643,0.61925,0.338988,0.497762,0.69979,0.168031,0.718426,0.345935,0.490822,0.609795,0.318636,0.0917473,0.366411,0.0114217,0.694676,0.0168699,0.0436642,0.48244,0.15646,0.322933,0.127113,0.678973,0.371575,0.771282,0.916487,0.646191,0.383828,0.421775,0.927951,0.187903,0.852261,0.49046,0.72764,0.760981,0.785666,0.875966,0.948185,0.025229,0.0214349,0.787543,0.118056,0.539526,0.0748259,0.151008,0.115174,0.770883,0.917138,0.510849,0.171531,0.963371,0.50315,0.0954015,0.109847,0.97576,0.663519,0.800039,0.167721,0.230744,0.227069,0.436125,0.341651,0.5519,0.128685,0.857022,0.399242,0.653338,0.969902,0.736103,0.0931773,0.533075,0.15821,0.893926,0.0731294,0.938626,0.592195,0.523682,0.608728,0.636131,0.627529,0.0266615,0.576459,0.699137,0.50646,0.135719,0.947746,0.26457,0.685305,0.43102,0.902223,0.896861,0.762659,0.328565,0.615993,0.0326989,0.742992,0.728305,0.288308,0.106494,0.942578,0.829281,0.246601,0.312601,0.86187,0.407261,0.716776,0.042743,0.782108,0.428546,0.0764073,0.65724,0.129898,0.418755,0.258671,0.482434,0.325769,0.356552,0.371637,0.727963,0.533267,0.586954,0.659764,0.713172,0.982467,0.115286,0.61562,0.815667,0.636693,0.421544,0.438531,0.37689,0.607947,0.177055,0.744541,0.614913,0.0663521,0.203783,0.294968,0.535438,0.536726,0.961383,0.0300321,0.505089,0.57187,0.525465,0.756477,0.133637,0.442015,0.615102,0.126072,0.385179,0.23579,0.737788,0.793215,0.379118,0.32783,0.76781,0.555469,0.0301794,0.619182,0.278757,0.963864,0.357675,0.124816,0.546295,0.0745351,0.497969,0.713343,0.183487,0.547378,0.572364,0.363496,0.378923,0.0158901,0.182191,0.766395,0.261124,0.215821,0.667764,0.179523,0.33987,0.855132,0.325243,0.246627,0.196528,0.289974,0.639816,0.156735,0.67921,0.517106,0.047632,0.585454,0.0331595,0.929675,0.129492,0.532003,0.0644466,0.67563,0.890314,0.707379,0.481367,0.0541734,0.782981,0.874753,0.169298,0.376826,0.975528,0.87226,0.766654,0.616012,0.159705,0.064546,0.575743,0.132168,0.0374379,0.989302,0.400378,0.197295,0.459071,0.986212,0.212428,0.344175,0.315325,0.470599,0.917619,0.57384,0.417119,0.795008,0.368983,0.30635,0.531226,0.755062,0.60945,0.636956,0.945433,0.15307,0.968742,0.286561,0.822205,0.321868,0.780055,0.520394,0.076718,0.637105,0.557704,0.0742408,0.910597,0.667108,0.601507,0.599225,0.460727,0.335551,0.0884487,0.0148576,0.278404,0.567098,0.201647,0.00105476,0.438497,0.763597,0.537002,0.665841,0.244396,0.0207146,0.365337,0.687693,0.793666,0.335947,0.972847,0.831763,0.314722,0.0690135,0.708177,0.0843705,0.485411,0.243261,0.279587,0.853633,0.774239,0.718355,0.355071,0.24161,0.519459,0.214405,0.338458,0.0133498,0.670173,0.247558,0.54432,0.234492,0.487659,0.738012,0.0395976,0.110061,0.520673,0.361861,0.0278101,0.808325,0.257388,0.387205,0.248778,0.100271,0.995345,0.0853982,0.550274,0.124436,0.813916,0.274512,0.688108,0.64224,0.337327,0.908583,0.231937,0.907453,0.44707,0.151185,0.309902,0.398512,0.941065,0.621062,0.79757,0.0273819,0.466148,0.75918,0.618951,0.216044,0.329217,0.299732,0.158248,0.254439,0.825145,0.925673,0.433436,0.141701,0.147469,0.591865,0.0489749,0.715337,0.979012,0.0204622,0.0421818,0.769983,0.55599,0.584206,0.170238,0.161352,0.751719,0.0302196,0.502451,0.329373,0.494198,0.0988163,0.479712,0.170086,0.512592,0.400242,0.101153,0.590537,0.0268109,0.419478,0.552683,0.796524,0.514324,0.702429,0.169313,0.470066,0.225683,0.855304,0.827631,0.479558,0.900696,0.626928,0.510662,0.837085,0.520742,0.123617,0.298604,0.973474,0.950264,0.96531,0.0664085,0.77422,0.137637,0.974213,0.314793,0.0204153,0.197945,0.843133,0.601423,0.0402209,0.622353,0.255612,0.897147,0.321545,0.88204,0.644808,0.0861325,0.455214,0.732328,0.757485,0.70808,0.257682,0.623799,0.576755,0.0492703,0.98746,0.949085,0.774728,0.489119,0.937217,0.0995919,0.891787,0.940249,0.980404,0.773123,0.621663,0.0432769,0.374331,0.0133583,0.501217,0.540848,0.277127,0.622372,0.512795,0.414481,0.336758,0.648608,0.227876,0.841429,0.833316,0.501778,0.0843219,0.915313,0.423084,0.98568,0.734379,0.90837,0.399533,0.217795,0.70246,0.102644,0.214041,0.510781,0.177378,0.691294,0.230814,0.0160698,0.629087,0.0215231,0.134685,0.128036,0.780303,0.315239,0.798436,0.230196,0.712737,0.0959558,0.528868,0.977823,0.317352,0.0306489,0.0361377,0.578152,0.0756939,0.609508,0.40318,0.576165,0.0730764,0.0702962,0.157356,0.352086,0.242315,0.759174,0.337985,0.291816,0.340479,0.654973,0.832391,0.403285,0.220809,0.591409,0.886458,0.748991,0.701453,0.120229,0.808169,0.911411,0.556912,0.982924,0.4915,0.65066,0.675448,0.35946,0.754829,0.0184816,0.88124,0.716256,0.790216,0.198189,0.954684,0.547625,0.330139,0.785333,0.610952,0.785386,0.910784,0.850573,0.218247,0.0743959,0.397357,0.30262,0.408632,0.420807,0.964012,0.826825,0.757891,0.495637,0.21991,0.146357,0.834332,0.537619,0.803694,0.612068,0.799963,0.250724,0.972777,0.571022,0.557639,0.39212,0.327728,0.322765,0.646663,0.49575,0.898256,0.998659,0.483971,0.0594078,0.751763,0.720836,0.103387,0.285837,0.769149,0.926352,0.424341,0.0522602,0.169811,0.235857,0.322648,0.878807,0.767851,0.870173,0.971839,0.284791,0.430754,0.264271,0.494962,0.831966,0.434505,0.0709859,0.538263,0.0391376,0.859126,0.221829,0.0050661,0.934947,0.517672,0.156158,0.764604,0.468054,0.881003,0.172244,0.324564,0.168241,0.619376,0.966912,|0.591823,0.125825,0.120771,0.700054,0.302614,0.268437,0.819063,0.58958,0.125029,0.533325,0.733664,0.109128,0.265772,0.266733,0.112474,0.818784,0.883859,0.67476,0.229804,0.218526,0.777037,0.990001,0.177298,0.95926,0.638324,0.153138,0.130309,0.129634,0.227761,0.192798,0.722228,0.439146,0.0829217,0.20405,0.0389893,0.279033,0.222348,0.465471,0.219636,0.130921,0.898566,0.158807,0.795683,0.413278,0.111229,0.627306,0.236191,0.0848445,0.337198,0.501763,0.330802,0.98252,0.965119,0.828616,0.860872,0.834642,0.295959,0.775403,0.0786232,0.952476,0.0333899,0.175866,0.521931,0.768738,0.976189,0.820772,0.896773,0.809535,0.54939,0.624568,0.217157,0.777352,0.598826,0.515709,0.680942,0.876995,0.496539,0.495142,0.504694,0.347709,0.152098,0.411068,0.785511,0.632966,0.277073,0.199069,0.8654,0.0876675,0.526661,0.564301,0.0115257,0.0293607,0.360481,0.870717,0.989472,0.18544,0.888497,0.994089,0.66506,0.0886936,0.109235,0.535034,0.836068,0.125401,0.38055,0.0400903,0.92173,0.446689,0.269831,0.238711,0.298604,0.277139,0.683027,0.80273,0.625633,0.186664,0.0294477,0.487264,0.803928,0.284627,0.52292,0.117696,0.373819,0.972987,0.0412926,0.998679,0.522084,0.41707,0.943678,0.782455,0.995861,0.106142,0.502771,0.0893304,0.324584,0.869925,0.759494,0.551266,0.043871,0.162215,0.896501,0.485832,0.10452,0.343869,0.949335,0.431886,0.797746,0.483662,0.636519,0.187025,0.828932,0.407104,0.590507,0.198098,0.454093,0.224735,0.615895,0.987255,0.22794,0.450389,0.0020054,0.798928,0.35695,0.283722,0.81669,0.748458,0.194432,0.771659,0.564963,0.0602465,0.56291,0.907927,0.568613,0.736576,0.0772164,0.647892,0.344638,0.52594,0.620116,0.127818,0.456229,0.00303143,0.814292,0.681271,0.232469,0.435447,0.650613,0.217794,0.701196,0.944068,0.408943,0.475877,0.868407,0.358222,0.197377,0.00579548,0.675333,0.942362,0.326574,0.981451,0.288119,0.245726,0.128793,0.341947,0.613644,0.813226,0.951181,0.161136,0.698893,0.230473,0.824948,0.763062,0.987754,0.849678,0.887375,0.183079,0.13679,0.529566,0.751198,0.0110763,0.651176,0.733209,0.542284,0.631916,0.867543,0.110326,0.474449,0.948272,0.149745,0.994902,0.81773,0.312475,0.701418,0.529096,0.820634,0.732909,0.93781,0.44992,0.117245,0.0106873,0.528399,0.53574,0.436276,0.123116,0.334455,0.819877,0.952408,0.274707,0.953051,0.162679,0.0142863,0.269775,0.204964,0.282084,0.336641,0.342841,0.96628,0.354811,0.52185,0.624241,0.402257,0.658196,0.541723,0.132844,0.58992,0.927225,0.552366,0.647325,0.930788,0.221782,0.430752,0.389259,0.139866,0.186971,0.243369,0.414693,0.489713,0.680581,0.976644,0.690988,0.766234,0.248884,0.701696,0.542307,0.618859,0.0143838,0.362143,0.662509,0.337953,0.288941,0.468225,0.230226,0.437176,0.561607,0.389824,0.962896,0.505279,0.334432,0.267055,0.726468,0.814336,0.619642,0.476647,0.397272,0.515162,0.0799052,0.435167,0.525293,0.0676081,0.370208,0.822782,0.513394,0.595598,0.695388,0.146633,0.664508,0.558523,0.596437,0.701059,0.423323,0.447425,0.661446,0.228125,0.522419,0.20445,0.683396,0.0669274,0.199775,0.784785,0.00773191,0.670014,0.893603,0.104182,0.0225785,0.381064,0.715091,0.715827,0.416542,0.596661,0.282365,0.23809,0.914004,0.0173801,0.674075,0.145957,0.670396,0.150104,0.488632,0.537654,0.621478,0.472568,0.121725,0.426283,0.173926,0.822932,0.187565,0.104585,0.258675,0.881734,0.562012,0.112308,0.55449,0.434386,0.699727,0.757451,0.685265,0.118178,0.473976,0.0933058,0.96513,0.536204,0.81267,0.478793,0.575479,0.478014,0.736232,0.675296,0.0133412,0.44148,0.865595,0.347835,0.715141,0.0948014,0.241577,0.719267,0.781186,0.917421,0.315515,0.545832,0.456786,0.650794,0.59775,0.616409,0.858784,0.826912,0.512947,0.202963,0.519818,0.982327,0.000565052,0.614536,0.624096,0.714087,0.706335,0.438818,0.242741,0.965818,0.54842,0.173463,0.0445849,0.774339,0.719365,0.920781,0.262991,0.0888743,0.13322,0.439152,0.930902,0.995824,0.725191,0.497862,0.496925,0.996378,0.259473,0.778218,0.901467,0.324901,0.826914,0.721153,0.864826,0.797203,0.743372,0.768182,0.815158,0.572639,0.242616,0.481899,0.0974742,0.123624,0.0380077,0.387729,0.799998,0.386323,0.351231,0.958099,0.534406,0.315221,0.194252,0.052611,0.68316,0.106984,0.695977,0.227325,0.605022,0.561419,0.901166,0.429427,0.103183,0.273148,0.266116,0.19102,0.628239,0.759378,0.753747,0.413308,0.263299,0.699218,0.680434,0.785756,0.978633,0.409001,0.700507,0.766218,0.389504,0.799122,0.890262,0.125181,0.686075,0.0763987,0.142854,0.858454,0.186912,0.242677,0.186303,0.105637,0.898965,0.487882,0.81369,0.777384,0.774101,0.3882,0.0989332,0.547248,0.333452,0.846915,0.260537,0.40783,0.823199,0.17332,0.0381064,0.564429,0.72108,0.477066,0.021315,0.631615,0.772153,0.619636,0.273714,0.113208,0.258131,0.0648022,0.130961,0.92939,0.949832,0.759891,0.043996,0.980548,0.429269,0.238998,0.562435,0.0163541,0.251186,0.620492,0.958564,0.816801,0.617847,0.438,0.579271,0.0525646,0.893717,0.276741,0.596981,0.8476,0.686991,0.936126,0.79663,0.66551,0.887505,0.273308,0.393532,0.0433022,0.778619,0.707698,0.797723,0.907068,0.283571,0.180216,0.0565518,0.173722,0.41589,0.60671,0.421427,0.345317,0.410563,0.380642,0.682973,0.883346,0.174761,0.496411,0.636635,0.25261,0.753031,0.807426,0.999968,0.433287,0.115166,0.0670183,0.932451,0.219019,0.910498,0.629044,0.745609,0.234546,0.392816,0.38342,0.240781,0.700781,0.186162,0.00661075,0.122232,0.229719,0.407128,0.984322,0.561408,0.967788,0.255135,0.114335,0.270681,0.012614,0.711114,0.308932,0.441562,0.519129,0.72702,0.327575,0.952919,0.116801,0.815834,0.367028,0.787902,0.390222,0.256965,0.98975,0.721315,0.154822,0.54416,0.859424,0.223953,0.951136,0.485232,0.718188,0.679985,0.409163,0.690166,0.655911,0.836087,0.162089,0.822516,0.308864,0.49021,0.962438,0.11832,0.854503,0.49901,0.931114,0.662721,0.906841,0.468809,0.285328,0.929096,0.445693,0.586033,0.0750231,0.0582915,0.299338,0.94284,0.367318,0.714807,0.700724,0.399625,0.423059,0.0266804,0.226808,0.483423,0.191958,0.912894,0.869033,0.279801,0.92551,0.360536,0.641629,0.0925899,0.427541,0.0962927,0.997678,0.623138,0.506536,0.220687,0.839908,0.810081,0.407418,0.142,0.724314,0.759464,0.955395,0.244619,0.43266,0.83635,0.652923,0.957974,0.929311,0.309337,0.878077,0.163248,0.173392,0.662957,0.538625,0.406376,0.402749,0.995917,0.899269,0.00416678,0.248687,0.683266,0.194943,0.839005,0.267014,0.168573,0.0033139,0.29029,0.887678,0.443411,0.499189,0.600558,0.197799,0.586978,0.139142,0.734326,0.137325,0.00431257,0.373294,0.052716,0.460703,0.889674,0.562894,0.28447,0.2103,0.165464,0.738001,0.138206,0.434166,0.876977,0.478059,0.911676,0.161528,0.630011,0.0488178,0.0557892,0.300492,0.536321,0.922525,0.554038,0.884622,0.922404,0.450514,0.365177,0.103021,0.74684,0.970718,0.884349,0.619131,0.447889,0.0873173,0.866492,0.383316,0.791483,0.785599,0.539988,0.150838,0.608009,0.324184,0.728285,0.540232,0.490575,0.093496,0.489642,0.935578,0.0745756,0.611248,0.599753,0.760434,0.575029,0.888436,0.346357,0.784603,0.954942,0.22618,0.348516,0.850141,0.15098,0.7798,0.713301,0.720215,0.712145,0.953033,0.951193,0.42489,0.300707,0.218891,0.284288,0.224071,0.347685,0.648639,0.0555293,0.111406,0.569142,0.155745,0.425429,0.364777,0.387218,0.196971,0.925278,0.0212002,0.716809,0.68735,0.293313,0.334064,0.3099,0.545216,0.299562,0.806043,0.151371,0.0844348,0.698823,0.730213,0.263372,0.692592,0.417119,0.382127,0.879902,0.63096,0.628527,0.480846,0.847199,0.621918,0.840817,0.182264,0.651169,0.700667,0.714534,0.792311,0.562716,0.653995,0.396226,0.652945,0.639753,0.721121,0.0860983,0.547784,0.291288,0.340863,0.0816557,0.603695,0.123819,0.233031,0.410578,0.781415,0.118476,0.600076,0.0867483,0.511937,0.251164,0.843005,0.187032,0.67726,0.0196781,0.234763,0.0705126,0.427588,0.147047,0.197312,0.923237,0.362228,0.683844,0.765677,0.412307,0.873564,0.047251,0.604115,0.79304,0.685149,0.102026,0.492839,0.342811,0.384943,0.749016,0.467156,0.847126,0.613226,0.757743,0.484769,0.412367,0.502503,0.0920266,0.900108,0.549953,0.803744,0.751916,0.195205,0.931291,0.928137,0.434972,0.470095,0.016385,0.312026,0.297201,0.778085,0.133322,0.0198527,0.120197,0.070433,0.819291,0.732143,0.0672893,0.936279,0.0969484,0.577479,0.778619,0.0238114,0.828342,0.223114,0.0110183,0.385329,0.645252,0.663402,0.365057,0.52248,0.386624,0.20605,0.684428,0.781299,0.873054,0.846672,0.671423,0.23089,0.664438,0.852528,0.762144,0.00620264,0.300873,0.256864,0.567887,0.960605,0.125555,0.234593,0.0919509,0.519978,0.181373,0.94808,0.7127,0.587802,0.363227,0.188206,0.256302,0.0925125,0.24617,0.815328,0.613365,0.39575,0.402758,0.0103705,0.318348,0.599909,0.592537,0.200418,0.729172,0.392989,0.696322,0.7956,0.985524,0.628821,0.459875,0.612754,0.0714995,0.233451,0.769912,0.156239,0.830107,0.587651,0.64698,0.59757,0.592774,0.949509,0.0248832,0.801117,0.789231,0.887707,0.56207,0.244026,0.679467,0.543127,0.251762,0.959889,0.5284,0.925574,0.243189,0.434971,0.59943,0.202295,0.973195,0.66906,0.21176,0.144974,0.220587,0.390971,0.00495058,0.810156,0.463453,0.327257,0.278255,0.869119,0.127233,0.11583,0.539071,0.56211,0.202634,0.0296832,0.750224,0.513856,0.516643,0.618347,0.212513,0.814313,0.0789697,0.637276,0.498993,0.638093,0.0606313,0.196781,0.448439,|0.660229,0.626176,0.509494,0.670353,0.701397,0.895424,0.0385122,0.0626731,0.862324,0.527327,0.846229,0.0164863,0.216073,0.11929,0.874862,0.0399054,0.279648,0.840577,0.712769,0.791163,0.968879,0.637792,0.801544,0.899913,0.838617,0.56607,0.241383,0.815119,0.558059,0.655131,0.990427,0.134469,0.0977578,0.150647,0.260039,0.118115,0.0251096,0.142978,0.380125,0.0206032,0.448374,0.855489,0.66978,0.922466,0.939171,0.222296,0.83428,0.783375,0.0375043,0.788732,0.081969,0.36427,0.709005,0.11118,0.666577,0.279213,0.0273274,0.955082,0.492774,0.606712,0.246938,0.558975,0.204865,0.817684,0.0435386,0.923147,0.708183,0.683008,0.934088,0.927068,0.15318,0.243706,0.574574,0.459395,0.107169,0.552495,0.429441,0.276923,0.58027,0.865692,0.33502,0.283632,0.032946,0.277466,0.547839,0.960715,0.61947,0.289941,0.645309,0.612705,0.733711,0.472144,0.868508,0.88256,0.321699,0.624565,0.890175,0.767347,0.782465,0.719822,0.647408,0.658482,0.144932,0.156686,0.92432,0.202071,0.461796,0.0549645,0.0454424,0.156899,0.791041,0.965661,0.29871,0.697569,0.96709,0.955421,0.526909,0.529048,0.00819737,0.302571,0.183163,0.447881,0.532536,0.970716,0.966822,0.194089,0.873831,0.78868,0.305371,0.676898,0.00692254,0.946639,0.311803,0.716635,0.86982,0.0873968,0.529446,0.000262797,0.238011,0.702417,0.463239,0.160153,0.984868,0.881159,0.715504,0.897662,0.518388,0.437298,0.0765212,0.139787,0.754017,0.0460932,0.32455,0.0619807,0.859982,0.817463,0.314559,0.998086,0.981271,0.218619,0.275061,0.304234,0.837061,0.414054,0.00494719,0.709141,0.119082,0.104018,0.872721,0.0597081,0.187202,0.799268,0.415654,0.924751,0.71605,0.76585,0.550387,0.311779,0.0704902,0.0921463,0.305909,0.911766,0.996907,0.192968,0.494631,0.947048,0.753924,0.0316101,0.772437,0.949241,0.0221945,0.0426521,0.962912,0.315385,0.91972,0.756761,0.264813,0.000604808,0.100142,0.475906,0.134174,0.462974,0.640059,0.481374,0.449628,0.820103,0.361749,0.8695,0.826933,0.670466,0.494295,0.64359,0.69276,0.389113,0.931108,0.57236,0.685088,0.735572,0.0492478,0.393714,0.216971,0.92751,0.568168,0.916664,0.851123,0.123828,0.215129,0.674289,0.548656,0.862018,0.593688,0.788799,0.424632,0.634629,0.142577,0.91199,0.678396,0.88343,0.943994,0.000218868,0.0880951,0.372061,0.107959,0.43268,0.307632,0.186702,0.194098,0.766905,0.861648,0.214046,0.949989,0.779999,0.128992,0.508558,0.766271,0.438333,0.508618,0.821635,0.00844806,0.776021,0.644681,0.972714,0.537739,0.363918,0.0562531,0.748342,0.582756,0.716202,0.175871,0.194768,0.275275,0.0483683,0.48955,0.940796,0.522534,0.792964,0.728988,0.53339,0.1619,0.569645,0.466631,0.842053,0.240328,0.117408,0.0312135,0.785712,0.0155048,0.544761,0.175972,0.654714,0.490602,0.463884,0.0318106,0.643022,0.226145,0.75065,0.251858,0.917727,0.00547862,0.361018,0.236788,0.227446,0.136603,0.315187,0.684191,0.20372,0.564253,0.468915,0.699908,0.0390249,0.944499,0.230447,0.202081,0.428231,0.369515,0.000629544,0.301452,0.42724,0.509634,0.988268,0.610468,0.478407,0.689925,0.646858,0.564668,0.320516,0.164998,0.454799,0.688224,0.361624,0.957324,0.10434,0.0974141,0.0437074,0.3776,0.783021,0.952754,0.125627,0.816938,0.311471,0.961808,0.724677,0.459484,0.401152,0.0974786,0.130523,0.30645,0.62656,0.155343,0.643436,0.341144,0.945169,0.516861,0.784948,0.404667,0.620151,0.154395,0.905245,0.954396,0.516545,0.0230742,0.540714,0.569684,0.822727,0.631151,0.140544,0.513336,0.225435,0.581889,0.574891,0.549754,0.687134,0.968032,0.337165,0.65649,0.0522608,0.495806,0.868443,0.104997,0.650356,0.890825,0.524945,0.912399,0.13244,0.601144,0.636344,0.476583,0.886278,0.611095,0.894681,0.70771,0.611844,0.590969,0.265963,0.875713,0.644422,0.411742,0.600916,0.342501,0.768124,0.0457332,0.675364,0.679859,0.367525,0.837416,0.398376,0.0909758,0.670705,0.208655,0.539803,0.475335,0.438488,0.950742,0.348228,0.904614,0.0758457,0.485835,0.576387,0.0184733,0.801188,0.405777,0.428265,0.915382,0.414239,0.789316,0.177197,0.492298,0.899833,0.297918,0.707717,0.245998,0.280174,0.587477,0.139083,0.732756,0.606303,0.811104,0.249413,0.906485,0.747138,0.0324515,0.592223,0.257182,0.918065,0.0693801,0.533379,0.831989,0.924847,0.619195,0.0547757,0.933433,0.577411,0.607282,0.615028,0.352152,0.742512,0.636857,0.338478,0.58808,0.730008,0.285922,0.462922,0.773447,0.564532,0.144318,0.999043,0.207121,0.109977,0.227466,0.106548,0.868595,0.470557,0.476208,0.979137,0.89451,0.738073,0.911566,0.0795583,0.782146,0.190596,0.122913,0.20145,0.397889,0.250055,0.647509,0.847232,0.68031,0.298487,0.176673,0.343902,0.633152,0.838137,0.584658,0.480524,0.766507,0.0119232,0.996076,0.0343333,0.156584,0.582039,0.617999,0.271623,0.866029,0.838761,0.0110444,0.893537,0.485095,0.954446,0.30743,0.240953,0.985204,0.4132,0.324768,0.247866,0.542619,0.444689,0.612998,0.477062,0.365123,0.596256,0.584682,0.77418,0.741407,0.796892,0.747207,0.305818,0.592493,0.87768,0.874908,0.27621,0.363856,0.59056,0.862999,0.509888,0.521225,0.185508,0.595041,0.339223,0.214662,0.440644,0.360197,0.869696,0.601635,0.438142,0.291235,0.803948,0.404665,0.983332,0.482289,0.445776,0.606769,0.128853,0.819216,0.762672,0.812643,0.080662,0.607056,0.658753,0.359268,0.157747,0.943643,0.523512,0.42009,0.663196,0.21818,0.201531,0.0672547,0.162621,0.725743,0.833322,0.560721,0.624438,0.157597,0.534504,0.538264,0.17002,0.338282,0.988229,0.280765,0.657022,0.0717019,0.16014,0.970663,0.0164092,0.27425,0.966376,0.0534396,0.483579,0.539176,0.20357,0.420319,0.563961,0.589701,0.567094,0.237043,0.321803,0.00541979,0.970501,0.834768,0.0465846,0.398674,0.284836,0.33652,0.609571,0.709098,0.420584,0.0297817,0.946967,0.452098,0.598633,0.418273,0.315731,0.931498,0.744865,0.85891,0.387919,0.113156,0.202697,0.146155,0.382863,0.00442785,0.714257,0.457104,0.686644,0.421393,0.0878612,0.0879856,0.582174,0.160891,0.731014,0.169922,0.918019,0.500076,0.94805,0.949837,0.975825,0.22576,0.997723,0.789911,0.00998712,0.563747,0.289008,0.218625,0.990856,0.77257,0.554275,0.733001,0.290872,0.723956,0.681018,0.264273,0.726295,0.0561894,0.51743,0.717654,0.372671,0.88275,0.424876,0.204059,0.92892,0.98446,0.866337,0.56853,0.389635,0.988228,0.090465,0.563141,0.461725,0.18822,0.867487,0.342605,0.532778,0.425943,0.157234,0.913991,0.998245,0.681639,0.833165,0.218381,0.267026,0.865038,0.731393,0.031582,0.691534,0.281953,0.903031,0.113167,0.172928,0.158907,0.0707275,0.116838,0.781317,0.611902,0.239913,0.152642,0.215577,0.921144,0.271074,0.0731493,0.557934,0.413083,0.683235,0.0622836,0.5663,0.509549,0.454574,0.47531,0.24314,0.226388,0.276218,0.329828,0.889382,0.988977,0.220333,0.715804,0.786517,0.787079,0.827408,0.875254,0.74239,0.690619,0.487042,0.385612,0.095745,0.37621,0.790996,0.707654,0.944291,0.0380558,0.795957,0.263185,0.681011,0.576031,0.0420727,0.199673,0.41704,0.801429,0.18714,0.0847212,0.276145,0.449026,0.255557,0.0242567,0.167963,0.115294,0.445141,0.723705,0.537134,0.803023,0.661933,0.882536,0.0252176,0.569345,0.511781,0.370464,0.0984153,0.0992784,0.490663,0.587985,0.568293,0.319498,0.52064,0.540527,0.807236,0.915421,0.666098,0.38208,0.790446,0.404971,0.549354,0.841586,0.226373,0.31371,0.121369,0.376535,0.825303,0.491089,0.706209,0.712057,0.65161,0.133007,0.728512,0.637359,0.881909,0.6385,0.486731,0.563677,0.78866,0.68168,0.359517,0.425493,0.697217,0.183386,0.24413,0.419529,0.83141,0.655972,0.222628,0.766105,0.814757,0.393268,0.0554588,0.0964987,0.462686,0.340552,0.883993,0.916654,0.59372,0.377885,0.714443,0.123644,0.80377,0.363926,0.501962,0.321872,0.876587,0.0631795,0.222851,0.392601,0.532643,0.488699,0.568787,0.426314,0.16119,0.652012,0.834576,0.894441,0.546457,0.0901202,0.141143,0.428281,0.627293,0.649268,0.423436,0.741571,0.0984018,0.10747,0.794276,0.425586,0.521547,0.285863,0.183371,0.22165,0.657702,0.765457,0.188038,0.0468984,0.941295,0.486644,0.779704,0.572762,0.766395,0.533629,0.405888,0.864728,0.973969,0.764768,0.550353,0.114484,0.87121,0.201777,0.207762,0.313141,0.203475,0.275694,0.361554,0.566556,0.404471,0.29677,0.888802,0.99845,0.304404,0.0988138,0.333268,0.890774,0.615076,0.0553589,0.41003,0.0856567,0.252787,0.925603,0.745296,0.786963,0.00673288,0.675251,0.0164363,0.712596,0.89952,0.255878,0.0217026,0.953807,0.586826,0.889665,0.0710331,0.113728,0.15233,0.68758,0.922841,0.398623,0.305264,0.825344,0.534069,0.949896,0.674849,0.899771,0.625513,0.541126,0.401527,0.812134,0.275855,0.764267,0.168117,0.722218,0.711303,0.517941,0.946287,0.552394,0.848289,0.0606927,0.501825,0.903163,0.0238679,0.834009,0.0662454,0.370495,0.774862,0.750371,0.331816,0.225471,0.787124,0.801962,0.898051,0.97566,0.309578,0.163759,0.489348,0.0834395,0.354714,0.264253,0.860361,0.912543,0.960877,0.49095,0.102842,0.882297,0.562879,0.785205,0.672504,0.0509255,0.828879,0.474741,0.0876018,0.9846,0.249521,0.259356,0.278202,0.626811,0.157106,0.15305,0.689714,0.308914,0.968085,0.779824,0.636472,0.605749,0.882175,0.560892,0.450248,0.176196,0.694358,0.560236,0.053825,0.94933,0.919104,0.165755,0.649248,0.0805593,0.506025,0.971184,0.662676,0.96184,0.696484,0.405039,0.63286,0.30642,0.87649,0.272153,0.822038,0.179364,0.332541,0.403849,0.33665,0.381772,0.486906,0.51542,0.345392,0.685811,0.563366,0.323451,0.0626373,|0.371846,0.869567,0.392762,0.152875,0.990633,0.549842,0.500595,0.0201412,0.226192,0.146409,0.942767,0.52955,0.142879,0.362636,0.0989572,0.195253,0.640136,0.389537,0.093989,0.204015,0.95902,0.259642,0.711966,0.822201,0.139219,0.754561,0.928268,0.723381,0.13814,0.195819,0.886048,0.712047,0.588821,0.781902,0.589037,0.65584,0.345341,0.675941,0.590379,0.947462,0.715109,0.217728,0.0357368,0.596309,0.142567,0.337843,0.784237,0.463726,0.973729,0.659797,0.278071,0.504001,0.846139,0.256055,0.892104,0.126487,0.0730836,0.525213,0.623759,0.164962,0.919592,0.962547,0.986179,0.290664,0.202267,0.474127,0.294279,0.411292,0.0150392,0.141192,0.0198015,0.941585,0.658801,0.924237,0.486642,0.828883,0.239775,0.264538,0.16042,0.577457,0.999045,0.513231,0.792929,0.250882,0.764809,0.154772,0.176833,0.574941,0.278205,0.036038,0.391617,0.316495,0.0963717,0.157215,0.95434,0.729098,0.539292,0.325714,0.133736,0.359878,0.504825,0.164382,0.8112,0.456922,0.4335,0.734926,0.462529,0.281863,0.433948,0.988747,0.603148,0.332439,0.906436,0.217948,0.131763,0.0923454,0.796754,0.822484,0.354766,0.362812,0.835434,0.525959,0.462509,0.563502,0.942242,0.238135,0.116669,0.448098,0.225191,0.372142,0.686906,0.555044,0.0535286,0.493255,0.176055,0.969402,0.0035882,0.141588,0.294768,0.635292,0.668152,0.555535,0.642742,0.938719,0.0116979,0.459925,0.298129,0.331485,0.863476,0.35681,0.16877,0.0660381,0.535253,0.0249581,0.154344,0.146927,0.0979197,0.778831,0.146747,0.602259,0.636674,0.774608,0.508195,0.208167,0.131389,0.929816,0.116145,0.172096,0.671018,0.54359,0.719523,0.427493,0.0241929,0.252564,0.59275,0.442262,0.560847,0.188434,0.507708,0.984252,0.62216,0.318594,0.305993,0.596521,0.292369,0.406496,0.281357,0.977039,0.393577,0.529597,0.41571,0.766031,0.181976,0.56072,0.431705,0.546865,0.443171,0.153857,0.653754,0.955095,0.390647,0.923638,0.440023,0.803074,0.968199,0.0867853,0.230371,0.654763,0.73601,0.203248,0.751853,0.554803,0.793387,0.249199,0.498319,0.657712,0.703395,0.581047,0.459723,0.750681,0.874105,0.591934,0.935083,0.260082,0.844436,0.168872,0.157439,0.654571,0.870354,0.331635,0.676568,0.289479,0.689748,0.107372,0.244542,0.777833,0.983804,0.401517,0.252146,0.976907,0.184649,0.0387951,0.562098,0.928902,0.382119,0.197671,0.28179,0.943192,0.427211,0.900337,0.684313,0.022346,0.147083,0.275173,0.746208,0.169832,0.660529,0.48752,0.83737,0.574752,0.743572,0.98266,0.349957,0.728699,0.203756,0.885184,0.405045,0.495349,0.116421,0.028019,0.828706,0.607878,0.328733,0.495634,0.094373,0.673577,0.594061,0.0684479,0.813973,0.750482,0.978718,0.0484874,0.218679,0.845717,0.481081,0.640963,0.165938,0.271789,0.106086,0.405686,0.844549,0.667809,0.363257,0.916889,0.856532,0.180645,0.838979,0.379591,0.0412958,0.784372,0.199303,0.0448703,0.0814833,0.763982,0.22848,0.445064,0.249448,0.967735,0.959679,0.892804,0.891601,0.802245,0.611775,0.410538,0.00434035,0.73686,0.605014,0.793779,0.196914,0.37906,0.107874,0.968138,0.661901,0.4618,0.0696937,0.478455,0.579053,0.00409198,0.954952,0.144515,0.336001,0.0909942,0.77969,0.410976,0.111783,0.844489,0.304823,0.615329,0.652313,0.153388,0.438692,0.756734,0.677201,0.446143,0.931025,0.0185451,0.218367,0.129395,0.68914,0.602482,0.731998,0.590412,0.0237431,0.284464,0.532654,0.997386,0.068477,0.740494,0.0801983,0.265951,0.651086,0.126993,0.698239,0.439577,0.0734408,0.730318,0.36595,0.521425,0.0953966,0.489098,0.789424,0.753517,0.710561,0.727064,0.997782,0.946113,0.819422,0.821576,0.455827,0.975257,0.585822,0.663024,0.207153,0.787738,0.491157,0.373112,0.800971,0.53709,0.413259,0.105306,0.535101,0.134062,0.56002,0.822398,0.723636,0.266105,0.22785,0.203782,0.563493,0.756171,0.53218,0.806253,0.289888,0.836744,0.742979,0.688056,0.0828364,0.71121,0.291299,0.365933,0.64957,0.0330925,0.73314,0.265479,0.913555,0.137498,0.723212,0.825727,0.545987,0.100114,0.380102,0.477427,0.690468,0.0187337,0.821675,0.592228,0.63157,0.554475,0.754589,0.391028,0.901992,0.998585,0.105931,0.400681,0.533199,0.0647835,0.788902,0.853003,0.694207,0.250282,0.251219,0.0769413,0.978858,0.64962,0.402517,0.181494,0.655854,0.73924,0.525275,0.505824,0.52982,0.325925,0.050182,0.461978,0.272559,0.509065,0.588608,0.122326,0.410156,0.478538,0.408328,0.0425441,0.867482,0.747181,0.746918,0.596167,0.94902,0.400232,0.79232,0.336146,0.214978,0.613535,0.528887,0.683058,0.744166,0.971556,0.66374,0.924814,0.822644,0.872399,0.248865,0.734084,0.742315,0.9988,0.364117,0.177249,0.58861,0.206097,0.440644,0.124074,0.769089,0.835781,0.375477,0.684497,0.834158,0.210242,0.605487,0.412748,0.929996,0.200429,0.185132,0.704327,0.721294,0.0934359,0.175406,0.080354,0.444744,0.64275,0.350662,0.8876,0.982811,0.654342,0.958363,0.896875,0.511773,0.153478,0.109203,0.834738,0.99195,0.474163,0.121488,0.249393,0.348206,0.902612,0.581704,0.593758,0.288045,0.260597,0.891115,0.514049,0.706753,0.992048,0.997507,0.694536,0.987305,0.60521,0.306914,0.42862,0.216921,0.678256,0.0924943,0.46382,0.150372,0.31385,0.217659,0.16298,0.724508,0.837034,0.0239108,0.711473,0.940303,0.694635,0.984438,0.544223,0.997661,0.649915,0.720126,0.991557,0.501522,0.833333,0.905032,0.301736,0.527158,0.334246,0.918189,0.969182,0.148787,0.0103539,0.115434,0.470238,0.152956,0.742279,0.614914,0.30659,0.275118,0.702884,0.210419,0.986688,0.29113,0.261279,0.0545419,0.51014,0.0847332,0.195453,0.682642,0.0471446,0.422699,0.279956,0.408659,0.311658,0.0901986,0.294576,0.832875,0.492513,0.276118,0.0168961,0.514475,0.122552,0.36625,0.676927,0.0116459,0.621849,0.180423,0.837623,0.548698,0.12072,0.66508,0.667053,0.146417,0.108012,0.182604,0.0905337,0.414078,0.245233,0.860964,0.617526,0.92582,0.070272,0.798856,0.895325,0.0901644,0.912911,0.103001,0.718228,0.639764,0.961375,0.892497,0.560031,0.302296,0.503353,0.0414875,0.968324,0.786028,0.915887,0.60441,0.293039,0.893196,0.191258,0.820903,0.903383,0.514706,0.199293,0.992436,0.661768,0.916948,0.964657,0.265847,0.748201,0.798838,0.0468067,0.232248,0.982036,0.227278,0.15171,0.994651,0.365283,0.339747,0.196537,0.198283,0.0978821,0.17277,0.326722,0.0563552,0.438287,0.0881164,0.165958,0.40278,0.453131,0.952305,0.412632,0.498178,0.735842,0.279687,0.9989,0.906957,0.55373,0.140134,0.640398,0.84562,0.722898,0.174298,0.519418,0.103167,0.0721477,0.676371,0.433688,0.279734,0.956436,0.090471,0.416648,0.67565,0.58579,0.986362,0.993784,0.953256,0.580122,0.443491,0.581672,0.0533873,0.00744164,0.308735,0.336488,0.0984967,0.606791,0.416862,0.308825,0.613383,0.253965,0.551113,0.0403542,0.46935,0.880498,0.287649,0.774129,0.484362,0.101169,0.3165,0.385915,0.983146,0.452037,0.302638,0.273644,0.133687,0.295856,0.585937,0.724702,0.872707,0.246804,0.40194,0.291753,0.327795,0.271106,0.581439,0.743251,0.865085,0.929354,0.403242,0.328208,0.700157,0.0027957,0.574238,0.230207,0.420211,0.593847,0.766911,0.908164,0.5678,0.869631,0.236174,0.236962,0.400728,0.274208,0.636833,0.158951,0.971988,0.57932,0.885503,0.283987,0.114412,0.482579,0.0932057,0.843313,0.20054,0.572315,0.0602288,0.0528126,0.0632203,0.857937,0.3134,0.216964,0.283501,0.541826,0.426879,0.513575,0.641273,0.439953,0.758792,0.129438,0.694469,0.443494,0.561666,0.883836,0.384971,0.85436,0.00425571,0.891129,0.219483,0.598689,0.453981,0.0151314,0.472767,0.810335,0.814264,0.0190887,0.274666,0.809191,0.955832,0.584724,0.362722,0.996735,0.566215,0.468,0.47585,0.975488,0.291978,0.114719,0.34694,0.304504,0.082839,0.618532,0.418778,0.0681267,0.9694,0.340526,0.515991,0.981934,0.890221,0.416159,0.108035,0.0930454,0.260935,0.719329,0.787635,0.633419,0.186493,0.405447,0.733093,0.598477,0.867192,0.863687,0.848529,0.428825,0.41572,0.949126,0.495895,0.304343,0.537838,0.0421003,0.203899,0.175757,0.550705,0.451317,0.273618,0.0991089,0.59206,0.171974,0.765377,0.718284,0.292967,0.573463,0.888249,0.0953615,0.71631,0.479836,0.302654,0.822115,0.711301,0.754599,0.59673,0.323853,0.240512,0.979137,0.0620796,0.676871,0.248712,0.977306,0.426106,0.254634,0.881125,0.129025,0.770536,0.711216,0.0904731,0.405683,0.328469,0.801612,0.142842,0.721725,0.966549,0.744806,0.547361,0.895791,0.367872,0.276254,0.716452,0.56964,0.0344136,0.302039,0.0753421,0.0256349,0.111148,0.802503,0.279043,0.350591,0.304171,0.823584,0.295503,0.0253195,0.730322,0.122193,0.343191,0.291514,0.262827,0.141829,0.511785,0.261459,0.287709,0.143621,0.31686,0.817539,0.0105443,0.509752,0.783882,0.906599,0.16524,0.346135,0.852089,0.41692,0.424342,0.831653,0.562997,0.351955,0.324829,0.590024,0.775159,0.799001,0.474394,0.598706,0.375202,0.0806326,0.0481369,0.0886288,0.423358,0.509828,0.839382,0.318473,0.600777,0.731642,0.179301,0.520996,0.2106,0.875032,0.766846,0.17868,0.0827906,0.270242,0.442392,0.0948276,0.832752,0.0623763,0.256528,0.0732414,0.778781,0.548665,0.6724,0.0565426,0.285643,0.633135,0.0401504,0.727884,0.207575,0.650234,0.432855,0.939585,0.29514,0.273589,0.517133,0.947717,0.48588,0.442402,0.315423,0.925518,0.903692,0.108549,0.193351,0.968722,0.631486,0.967772,0.723494,0.283239,0.0859205,0.285316,0.307901,0.1861,0.0937374,0.619752,0.330172,0.0444933,0.390725,0.56316,0.0117402,0.313962,0.148647,0.490094,0.387573,0.621309,0.442071,0.0677708,0.291445,0.322293,|0.575074,0.790125,0.411374,0.660394,0.0146185,0.336346,0.306308,0.495854,0.694641,0.392757,0.0144327,0.176308,0.491068,0.89188,0.121715,0.719964,0.329637,0.944977,0.44847,0.0413619,0.0683551,0.695959,0.103771,0.443291,0.362174,0.446716,0.167857,0.835125,0.382396,0.725081,0.307574,0.761592,0.290921,0.00190526,0.554087,0.635902,0.434802,0.802479,0.718368,0.990356,0.307901,0.732443,0.66882,0.0383255,0.626723,0.857138,0.338249,0.742495,0.792289,0.387895,0.913986,0.94568,0.962937,0.063346,0.153842,0.03691,0.768234,0.0480215,0.342105,0.909758,0.650371,0.638686,0.0830249,0.825597,0.226156,0.864964,0.489683,0.952469,0.920058,0.95086,0.115868,0.614937,0.153042,0.615511,0.303683,0.427186,0.456523,0.722144,0.940586,0.000559449,0.803794,0.972158,0.607892,0.443227,0.784448,0.400086,0.482562,0.129672,0.260877,0.580112,0.805388,0.653371,0.527661,0.472165,0.767827,0.0878118,0.0543642,0.492539,0.922104,0.900799,0.689482,0.456811,0.575936,0.0196855,0.686341,0.838059,0.36922,0.91438,0.691354,0.355504,0.433558,0.311178,0.0609644,0.53219,0.675019,0.113005,0.153851,0.410173,0.104676,0.55614,0.247555,0.24849,0.199707,0.219773,0.72593,0.911455,0.135419,0.0632128,0.387656,0.532602,0.292037,0.133377,0.886415,0.763856,0.694989,0.250838,0.890965,0.0856676,0.652779,0.935064,0.00653023,0.580118,0.721336,0.672398,0.576122,0.6538,0.423091,0.229327,0.915112,0.0885727,0.751772,0.221433,0.555452,0.600483,0.49042,0.344184,0.435092,0.252642,0.272707,0.722009,0.736204,0.18996,0.713672,0.848259,0.112799,0.705913,0.517468,0.556314,0.0206878,0.814121,0.801017,0.429262,0.338601,0.41606,0.745313,0.420859,0.114967,0.224332,0.65766,0.0779074,0.401636,0.342112,0.362671,0.768537,0.173215,0.821982,0.488097,0.759156,0.858971,0.124414,0.129783,0.723996,0.340367,0.581226,0.477326,0.0649946,0.477064,0.625961,0.341766,0.927989,0.795615,0.0364472,0.643663,0.468237,0.967882,0.890291,0.863378,0.308158,0.350265,0.256135,0.762751,0.886386,0.888095,0.311592,0.0804371,0.560131,0.107132,0.518312,0.213188,0.732729,0.11461,0.553612,0.103552,0.0359416,0.615428,0.316576,0.515227,0.844452,0.674173,0.846767,0.692065,0.0263823,0.146806,0.475222,0.723543,0.689336,0.352607,0.966232,0.390378,0.0178667,0.724495,0.0881453,0.991952,0.661465,0.135076,0.999686,0.996352,0.7758,0.436147,0.532682,0.741669,0.96566,0.192676,0.0471981,0.470872,0.576807,0.448739,0.394482,0.838205,0.651943,0.401541,0.671225,0.259107,0.129827,0.755316,0.355702,0.826145,0.450694,0.294335,0.0166811,0.117166,0.124275,0.335958,0.74637,0.0796934,0.19436,0.936062,0.385207,0.126656,0.0150751,0.603009,0.908582,0.76938,0.389275,0.0742838,0.14461,0.845761,0.863737,0.557415,0.640833,0.551341,0.27788,0.56481,0.384632,0.341895,0.670865,0.503226,0.110673,0.0286672,0.542037,0.384757,0.505217,0.462242,0.182895,0.758649,0.187877,0.387028,0.0684514,0.33315,0.563037,0.741997,0.631127,0.308652,0.210994,0.509341,0.254179,0.973345,0.129616,0.792697,0.753231,0.726672,0.966303,0.710811,0.205325,0.812944,0.470604,0.299777,0.210253,0.491772,0.432976,0.0887101,0.505514,0.997642,0.862177,0.0734223,0.960131,0.284932,0.840064,0.166631,0.561414,0.0268707,0.691567,0.0705005,0.955854,0.273264,0.541249,0.694305,0.869864,0.397665,0.857775,0.954884,0.471724,0.604507,0.659026,0.891505,0.723393,0.24671,0.720508,0.65752,0.294552,0.754158,0.339018,0.979691,0.548417,0.19811,0.239604,0.310073,0.831131,0.462251,0.7694,0.419539,0.996415,0.87009,0.121669,0.533716,0.926508,0.277095,0.628044,0.523597,0.477497,0.0843281,0.262566,0.977332,0.801936,0.454579,0.177049,0.78755,0.895922,0.0421928,0.606648,0.579033,0.782052,0.30832,0.740462,0.123117,0.66689,0.272216,0.94648,0.327539,0.451512,0.658839,0.285208,0.806891,0.686817,0.903646,0.624245,0.879493,0.598982,0.756838,0.151723,0.400599,0.255439,0.795288,0.14562,0.824379,0.764958,0.956736,0.119572,0.0350167,0.649457,0.172254,0.527779,0.365758,0.636475,0.052301,0.0971975,0.612607,0.598268,0.847848,0.0433187,0.86013,0.167241,0.0310066,0.91556,0.552658,0.538616,0.136041,0.935653,0.832193,0.958807,0.668003,0.251763,0.191052,0.363451,0.741332,0.207036,0.753259,0.76226,0.481907,0.896459,0.287289,0.078531,0.337196,0.185085,0.834659,0.29332,0.859615,0.972805,0.0194932,0.537655,0.389819,0.281383,0.388724,0.225926,0.0987313,0.24344,0.66016,0.439228,0.887197,0.38974,0.0845028,0.890619,0.84078,0.629548,0.00362593,0.974521,0.21932,0.788622,0.843127,0.76442,0.754302,0.878176,0.341782,0.41236,0.948986,0.791119,0.313394,0.838672,0.507239,0.383818,0.227642,0.86459,0.0399497,0.555815,0.915948,0.0584019,0.87369,0.315075,0.509433,0.91058,0.42902,0.760337,0.151421,0.473439,0.648177,0.937943,0.168766,0.477773,0.321552,0.194256,0.713766,0.238226,0.432298,0.480555,0.887679,0.400493,0.662885,0.364834,0.533419,0.667282,0.937828,0.823735,0.593666,0.715909,0.39958,0.85249,0.229336,0.0554299,0.855038,0.922523,0.31676,0.918114,0.840229,0.707465,0.252407,0.150184,0.69035,0.803354,0.358585,0.513874,0.34174,0.273647,0.607916,0.10283,0.537436,0.883029,0.545748,0.0448961,0.00892365,0.841438,0.338047,0.550298,0.104314,0.156583,0.225135,0.520034,0.17129,0.00759137,0.617996,0.238995,0.564374,0.0662659,0.857828,0.489602,0.509669,0.81907,0.967164,0.699313,0.380561,0.863914,0.48483,0.0418139,0.853599,0.587654,0.140077,0.884647,0.427392,0.226984,0.400387,0.0575661,0.136594,0.483883,0.518903,0.384639,0.719908,0.430022,0.718174,0.440994,0.84574,0.39432,0.870428,0.482454,0.827735,0.354813,0.543322,0.00409561,0.684691,0.0792428,0.0730565,0.623943,0.389809,0.448309,0.823117,0.310927,0.330649,0.576446,0.87494,0.0579571,0.91779,0.390768,0.328241,0.602168,0.578319,0.310805,0.288003,0.860264,0.68522,0.788966,0.0276697,0.956994,0.740317,0.891166,0.16778,0.913415,0.952149,0.531857,0.284724,0.889495,0.0913196,0.990457,0.990075,0.704596,0.406249,0.172387,0.304964,0.770812,0.299008,0.00491107,0.870952,0.621405,0.861635,0.0221192,0.189123,0.819804,0.350576,0.330042,0.31645,0.767013,0.0748906,0.150334,0.26596,0.682029,0.780423,0.45062,0.67268,0.458331,0.521176,0.822729,0.159867,0.536752,0.045339,0.863307,0.188167,0.245361,0.376287,0.795178,0.871931,0.734971,0.868763,0.745587,0.856008,0.496407,0.565437,0.0431111,0.997439,0.203915,0.301365,0.744136,0.744245,0.601601,0.206897,0.44313,0.0724585,0.610047,0.713456,0.560598,0.326708,0.312829,0.690457,0.862037,0.0281557,0.329128,0.277534,0.300108,0.558641,0.17186,0.771117,0.585855,0.622282,0.25111,0.559107,0.154404,0.309059,0.378673,0.948114,0.14313,0.254224,0.902441,0.504262,0.0808116,0.563597,0.0283402,0.60216,0.0792326,0.298762,0.97825,0.903185,0.969689,0.3916,0.991942,0.0402645,0.0391316,0.786107,0.26226,0.48488,0.0313477,0.624884,0.512381,0.632663,0.772626,0.95493,0.12637,0.494411,0.405421,0.638908,0.1497,0.0691237,0.34523,0.784841,0.71371,0.913383,0.794312,0.254608,0.440392,0.627213,0.222146,0.78373,0.628223,0.754103,0.0111752,0.00830877,0.823264,0.916408,0.660449,0.331124,0.69109,0.292326,0.303296,0.951897,0.94219,0.243764,0.418647,0.17907,0.48114,0.687961,0.282594,0.0956381,0.399269,0.774844,0.148522,0.778426,0.696817,0.955127,0.937207,0.446759,0.649317,0.697154,0.989313,0.411703,0.654597,0.8501,0.759808,0.429241,0.694853,0.558277,0.613851,0.180822,0.371524,0.642568,0.302504,0.0561695,0.237718,0.96981,0.426497,0.103842,0.357034,0.428714,0.255382,0.401664,0.819646,0.594845,0.416609,0.620189,0.129639,0.497567,0.611872,0.422758,0.906041,0.736846,0.0358468,0.910087,0.661428,0.32816,0.504747,0.0494046,0.422821,0.277852,0.254786,0.0825908,0.207937,0.308687,0.481596,0.621656,0.800067,0.790313,0.390971,0.141559,0.182385,0.333221,0.265106,0.413765,0.210677,0.134739,0.531127,0.184939,0.00128013,0.108943,0.0875444,0.548543,0.686849,0.110335,0.569824,0.198696,0.809176,0.702705,0.354436,0.765324,0.710615,0.880125,0.333375,0.768845,0.116207,0.454142,0.154866,0.257412,0.0547398,0.145596,0.882936,0.37529,0.82577,0.179899,0.031874,0.403708,0.236036,0.437837,0.697793,0.675224,0.207329,0.737212,0.45298,0.0745732,0.394666,0.742147,0.586788,0.64115,0.812246,0.247051,0.855774,0.192,0.829681,0.755908,0.911614,0.301967,0.829504,0.0616205,0.199599,0.748677,0.00619608,0.961469,0.922891,0.305515,0.360515,0.0455243,0.296097,0.789818,0.46326,0.948893,0.623121,0.270167,0.288121,0.389968,0.083785,0.459411,0.193185,0.579024,0.577664,0.482362,0.339556,0.67542,0.476729,0.257948,0.935324,0.808777,0.297307,0.218039,0.71331,0.190867,0.970854,0.0568036,0.61962,0.0318205,0.101715,0.21269,0.999368,0.21242,0.127231,0.58102,0.531153,0.828822,0.265648,0.197002,0.462839,0.977422,0.74414,0.852925,0.368068,0.548473,0.811049,0.382957,0.689733,0.797629,0.565794,0.896609,0.925277,0.623814,0.715697,0.970284,0.833458,0.675839,0.381641,0.65636,0.442344,0.0432373,0.226332,0.434327,0.874266,0.613195,0.954352,0.672011,0.988583,0.957271,0.582344,0.462097,0.269124,0.195619,0.609937,0.341539,0.115435,0.461498,0.617653,0.963628,0.286986,0.901172,0.507339,0.77002,0.468993,0.560682,0.503326,0.621601,0.502742,0.272059,0.621066,0.212452,0.370053,0.924608,0.616607,0.497479,0.829647,0.882489,0.125629,0.857787,0.775374,0.392559,0.464146,0.868439,0.790308,0.534975,0.286781,0.726184,0.407313,|0.629443,0.0706156,0.699671,0.778383,0.899783,0.868662,0.620043,0.590598,0.623531,0.5572,0.348035,0.132223,0.884337,0.795253,0.426044,0.484621,0.805532,0.654769,0.688674,0.963144,0.352168,0.271721,0.715644,0.0611469,0.532688,0.913864,0.744771,0.342468,0.0486044,0.34737,0.593525,0.373909,0.944227,0.0938859,0.41006,0.886913,0.590012,0.369931,0.749423,0.438089,0.622201,0.487118,0.714287,0.991413,0.972136,0.639578,0.876092,0.442265,0.388256,0.368675,0.138745,0.788735,0.531182,0.378053,0.521745,0.0586914,0.616624,0.312307,0.18095,0.113847,0.57206,0.0401224,0.523486,0.0398679,0.795473,0.182455,0.897248,0.0822922,0.911105,0.710953,0.317835,0.586227,0.6718,0.820808,0.960629,0.288568,0.571557,0.264286,0.656943,0.94786,0.0214337,0.0695941,0.949411,0.949194,0.253392,0.0776318,0.646277,0.981496,0.062579,0.112644,0.520684,0.457747,0.284994,0.805031,0.234235,0.545336,0.6297,0.990272,0.242169,0.349307,0.55851,0.560593,0.250782,0.604172,0.432636,0.263885,0.947704,0.292059,0.443218,0.741273,0.867824,0.171748,0.406252,0.895744,0.239708,0.167293,0.272612,0.39138,0.136005,0.0890554,0.548922,0.226027,0.870715,0.333041,0.476609,0.408042,0.452561,0.642188,0.683226,0.0276241,0.331956,0.949457,0.623327,0.738385,0.394091,0.178367,0.807335,0.257333,0.977104,0.00167561,0.430961,0.87613,0.448355,0.535393,0.604468,0.459853,0.384492,0.541317,0.445815,0.0625564,0.919323,0.534356,0.233114,0.984956,0.572866,0.774159,0.728799,0.552798,0.828302,0.641523,0.359718,0.164195,0.363541,0.282197,0.93625,0.941085,0.238548,0.812911,0.0171563,0.440408,0.22634,0.966711,0.609893,0.478197,0.346707,0.559242,0.306124,0.151188,0.770002,0.661681,0.146281,0.891496,0.425254,0.848765,0.68227,0.668689,0.109989,0.832098,0.850378,0.116127,0.494427,0.107201,0.953477,0.679897,0.250843,0.594641,0.948932,0.364078,0.413951,0.178729,0.17846,0.552434,0.544109,0.452943,0.125075,0.116765,0.693956,0.581356,0.794557,0.831363,0.272042,0.988477,0.614727,0.926173,0.890718,0.95572,0.856962,0.758948,0.654046,0.999993,0.298832,0.597817,0.129159,0.221049,0.231582,0.698397,0.39218,0.533502,0.656789,0.670851,0.44664,0.867974,0.950663,0.880831,0.547454,0.624877,0.556354,0.788335,0.514354,0.200952,0.396827,0.629978,0.0287012,0.483122,0.192484,0.474727,0.202851,0.350432,0.472468,0.394937,0.718306,0.537939,0.758962,0.905369,0.406944,0.113019,0.873157,0.300067,0.0655798,0.539897,0.95461,0.00256354,0.0335439,0.0865388,0.476452,0.334507,0.916644,0.521338,0.568255,0.943315,0.967667,0.0519451,0.993881,0.172627,0.431822,0.0453491,0.0173961,0.770824,0.946773,0.738347,0.611309,0.917588,0.843939,0.799194,0.976894,0.275198,0.297167,0.00979674,0.532584,0.269445,0.7827,0.838009,0.835171,0.723957,0.969065,0.883836,0.160829,0.0302674,0.0384631,0.77784,0.219219,0.0971076,0.261533,0.660598,0.0304744,0.347144,0.864736,0.0765366,0.776533,0.265393,0.122058,0.860449,0.624445,0.737363,0.534832,0.0287215,0.284654,0.506877,0.105466,0.209825,0.974241,0.542321,0.664706,0.087059,0.728111,0.838552,0.766555,0.189008,0.983438,0.17895,0.859693,0.845459,0.740813,0.780841,0.326237,0.0554983,0.692416,0.897535,0.500197,0.0998316,0.813971,0.728769,0.804674,0.729662,0.862937,0.245601,0.295066,0.578121,0.893012,0.225615,0.494659,0.297351,0.219075,0.862605,0.785313,0.849506,0.693111,0.184051,0.852095,0.902904,0.582691,0.91464,0.0478111,0.612442,0.356896,0.514461,0.882934,0.0521895,0.384537,0.658831,0.813384,0.579876,0.384742,0.442552,0.732332,0.569263,0.305694,0.311287,0.602595,0.978936,0.328647,0.344971,0.0716274,0.242172,0.435064,0.136724,0.400234,0.0599973,0.543885,0.356377,0.792359,0.800752,0.334153,0.526402,0.184944,0.608953,0.69078,0.453229,0.95115,0.666482,0.382712,0.25242,0.595529,0.547046,0.612149,0.397772,0.246472,0.381307,0.396335,0.0341112,0.956628,0.559998,0.0472462,0.503058,0.223461,0.98422,0.800616,0.641987,0.621533,0.577995,0.380174,0.664572,0.0967933,0.944715,0.910906,0.116157,0.145254,0.306906,0.32111,0.461256,0.0915396,0.567307,0.300883,0.369553,0.926752,0.735842,0.640327,0.637176,0.74817,0.545153,0.768071,0.574793,0.17993,0.986273,0.416931,0.52243,0.363371,0.391708,0.0459465,0.0755643,0.825589,0.594646,0.352893,0.386377,0.038001,0.584262,0.234118,0.843859,0.98509,0.953112,0.953421,0.100107,0.666385,0.118097,0.915063,0.775742,0.515044,0.477092,0.428037,0.439477,0.785436,0.775503,0.43323,0.442979,0.367869,0.937273,0.79518,0.244697,0.701623,0.693461,0.120331,0.452168,0.445893,0.981593,0.149913,0.519407,0.73945,0.919218,0.297141,0.078375,0.42858,0.056655,0.976225,0.653032,0.895582,0.158346,0.811048,0.291427,0.758537,0.553953,0.144679,0.326195,0.665533,0.943796,0.92833,0.923963,0.00251526,0.859156,0.623592,0.303755,0.478068,0.316576,0.19754,0.808561,0.0299849,0.948586,0.947464,0.842537,0.280853,0.0646764,0.112137,0.142027,0.445821,0.49636,0.0558354,0.218557,0.0371268,0.940898,0.761056,0.489451,0.0451881,0.721467,0.961652,0.785695,0.541501,0.294756,0.307841,0.856399,0.282944,0.458517,0.529161,0.629673,0.436507,0.0964797,0.743585,0.940826,0.498542,0.955168,0.219853,0.865509,0.691786,0.311724,0.843054,0.681757,0.299035,0.0347351,0.966695,0.629691,0.465742,0.298658,0.206316,0.510521,0.395639,0.264894,0.265075,0.45067,0.827292,0.595793,0.289694,0.51178,0.37154,0.945151,0.191936,0.154484,0.755424,0.417793,0.369501,0.0188861,0.603974,0.73007,0.819465,0.531337,0.636981,0.278332,0.274311,0.655971,0.402888,0.424574,0.31488,0.28032,0.758851,0.030331,0.409417,0.0738677,0.18834,0.54253,0.66411,0.223009,0.467965,0.959868,0.650335,0.642107,0.41333,0.283546,0.0686926,0.669941,0.384291,0.826782,0.557045,0.661717,0.722172,0.349773,0.849489,0.0143293,0.432548,0.747359,0.689929,0.433905,0.28393,0.62013,0.519328,0.586989,0.91937,0.735831,0.404976,0.68904,0.362447,0.125563,0.662031,0.163703,0.481148,0.691568,0.877428,0.0733708,0.583854,0.251891,0.577525,0.472787,0.193426,0.347602,0.667398,0.538234,0.0318174,0.435025,0.512401,0.328238,0.246627,0.306917,0.303319,0.577611,0.0562324,0.00241232,0.336404,0.839853,0.758829,0.128587,0.315857,0.824676,0.952738,0.477434,0.93847,0.584421,0.0777411,0.552479,0.14696,0.628801,0.238912,0.431945,0.511038,0.578919,0.153014,0.916972,0.349717,0.196809,0.333057,0.508832,0.188031,0.224045,0.787713,0.24915,0.0930919,0.0280332,0.992974,0.509078,0.989272,0.957765,0.62455,0.267205,0.661695,0.764809,0.686073,0.769146,0.587855,0.552943,0.60947,0.71395,0.174595,0.136967,0.668444,0.418291,0.481295,0.602895,0.336226,0.265343,0.135357,0.173122,0.223361,0.257787,0.278307,0.497989,0.042879,0.998507,0.484023,0.216032,0.909659,0.674129,0.0655518,0.0857194,0.000374019,0.332922,0.323069,0.18964,0.774858,0.540734,0.779539,0.826667,0.949427,0.179071,0.48065,0.813358,0.535813,0.807711,0.713635,0.839504,0.444715,0.74743,0.718089,0.062103,0.902943,0.488166,0.927761,0.189471,0.0203594,0.44174,0.80211,0.406521,0.434088,0.785772,0.269371,0.904009,0.785144,0.481954,0.564956,0.507424,0.704991,0.163268,0.65385,0.854271,0.801998,0.628021,0.751106,0.0839586,0.101078,0.184776,0.339362,0.430921,0.866253,0.11877,0.372151,0.0618216,0.371621,0.122697,0.618716,0.714419,0.294649,0.432912,0.0176675,0.974531,0.189775,0.209832,0.140519,0.131364,0.139871,0.404095,0.856376,0.269896,0.423872,0.0807173,0.957882,0.0264166,0.424327,0.313952,0.350176,0.0894861,0.40609,0.287956,0.794385,0.47864,0.888839,0.174452,0.321918,0.199364,0.204648,0.676801,0.0328707,0.218529,0.813363,0.120691,0.438924,0.00225955,0.128474,0.532574,0.60947,0.0254213,0.603173,0.155936,0.156102,0.920167,0.369795,0.52478,0.770598,0.920127,0.781065,0.749805,0.482566,0.657424,0.718893,0.295828,0.305194,0.461432,0.931956,0.514089,0.635024,0.00403541,0.270607,0.197541,0.794144,0.782084,0.813729,0.645812,0.264869,0.66758,0.710771,0.608473,0.698202,0.681058,0.186239,0.272469,0.33112,0.136393,0.176002,0.630632,0.567155,0.983903,0.238918,0.578049,0.037073,0.289713,0.554548,0.523175,0.938678,0.655734,0.0154376,0.981131,0.886392,0.0271238,0.0992221,0.236472,0.554177,0.448759,0.737503,0.951157,0.391427,0.287663,0.548983,0.724413,0.120471,0.0204352,0.0193968,0.0563937,0.0887719,0.273291,0.453858,0.192503,0.361633,0.0211533,0.31449,0.865279,0.467474,0.181389,0.728968,0.818701,0.785158,0.643273,0.12009,0.174498,0.51539,0.991316,0.816498,0.0257171,0.319879,0.389899,0.796242,0.00765234,0.598674,0.766211,0.371474,0.136056,0.3434,0.0236973,0.100999,0.403513,0.0686678,0.978093,0.546144,0.0426153,0.168378,0.370813,0.0744632,0.0506156,0.586456,0.985617,0.576811,0.997422,0.930264,0.367539,0.437104,0.397386,0.10236,0.556608,0.823087,0.114153,0.559534,0.951392,0.544021,0.214601,0.435595,0.113884,0.481689,0.786259,0.908832,0.824171,0.808442,0.522912,0.177943,0.687931,0.607517,0.865366,0.185758,0.0151293,0.474149,0.986353,0.936444,0.453075,0.0911887,0.210407,0.0321659,0.274529,0.683485,0.286753,0.562872,0.6099,0.376371,0.793798,0.691036,0.75001,0.0458332,0.512132,0.735958,0.379852,0.688871,0.819428,0.183164,0.310962,0.308167,0.123954,0.149955,0.620818,0.891877,0.970025,0.136324,0.341272,0.537587,0.405968,0.700102,0.770202,0.292003,0.152562,0.448969,0.890569,0.0238712,0.188936,0.502964,0.885523,0.468352,0.408601,0.187926,0.790008,0.342843,0.280312,|0.981219,0.56087,0.518987,0.208161,0.0508955,0.205499,0.712294,0.0473732,0.573391,0.485441,0.239777,0.417429,0.245381,0.959107,0.362436,0.618341,0.806378,0.516891,0.0952889,0.316603,0.70766,0.326757,0.0368277,0.0940463,0.684668,0.183587,0.0493559,0.663582,0.601229,0.434159,0.336224,0.739901,0.66482,0.114904,0.993652,0.928564,0.076228,0.613791,0.24165,0.0748433,0.897589,0.159822,0.623638,0.219558,0.475187,0.815753,0.0397186,0.669019,0.159252,0.846961,0.956536,0.814112,0.754269,0.0760766,0.780206,0.598216,0.424449,0.111651,0.0872485,0.451285,0.61508,0.679898,0.325085,0.312012,0.850917,0.913068,0.200112,0.910087,0.157284,0.622338,0.206948,0.930856,0.505192,0.662284,0.929278,0.848222,0.930264,0.594759,0.748287,0.726582,0.0746919,0.81068,0.051945,0.112625,0.181089,0.0133172,0.80563,0.324493,0.213284,0.0560245,0.193222,0.494298,0.00800765,0.99356,0.293634,0.245892,0.568552,0.688601,0.028715,0.96456,0.720825,0.483849,0.57019,0.555011,0.87691,0.734856,0.982914,0.337033,0.879092,0.084438,0.437614,0.919757,0.963062,0.663962,0.746164,0.2456,0.741408,0.636365,0.400794,0.793863,0.676004,0.236791,0.921053,0.71848,0.630599,0.00457966,0.83485,0.0323062,0.433567,0.167595,0.969845,0.0118511,0.272849,0.259829,0.31285,0.301718,0.269436,0.397715,0.458544,0.753404,0.91138,0.357115,0.499793,0.229418,0.949349,0.0244136,0.922428,0.0568056,0.117325,0.241539,0.505549,0.774645,0.574371,0.304274,0.101904,0.380103,0.692196,0.76587,0.771413,0.614237,0.786302,0.669098,0.0853837,0.230373,0.968744,0.827683,0.775355,0.222433,0.345395,0.477342,0.0838968,0.267435,0.267476,0.866965,0.00966173,0.505768,0.144547,0.369262,0.322005,0.908446,0.641625,0.265434,0.604156,0.010938,0.382062,0.0634287,0.573232,0.255507,0.692246,0.674631,0.735651,0.0807145,0.395219,0.0271484,0.472773,0.773219,0.0588737,0.0724968,0.1171,0.279895,0.32717,0.985514,0.0827504,0.653552,0.502247,0.993794,0.567966,0.635584,0.327585,0.912406,0.327662,0.828936,0.502004,0.372968,0.119602,0.794384,0.52779,0.76963,0.428828,0.862746,0.231383,0.208501,0.331525,0.469385,0.0158272,0.899508,0.62869,0.511668,0.959486,0.187656,0.790232,0.450189,0.495075,0.602856,0.748803,0.585595,0.526764,0.930448,0.502098,0.79279,0.457541,0.772134,0.130143,0.252444,0.898665,0.315991,0.67448,0.622521,0.571258,0.523543,0.0583528,0.721838,0.144721,0.79785,0.232725,0.556618,0.305993,0.927184,0.801329,0.372293,0.497661,0.953295,0.926994,0.881726,0.936883,0.908725,0.239748,0.542302,0.860242,0.99162,0.948811,0.617131,0.830674,0.570374,0.835738,0.795635,0.133388,0.533936,0.673977,0.574622,0.753624,0.843384,0.894184,0.835639,0.466754,0.114526,0.489081,0.366133,0.434735,0.57081,0.26818,0.421449,0.647795,0.406898,0.0681629,0.479632,0.32615,0.056923,0.458459,0.334777,0.166707,0.395661,0.463628,0.239073,0.454715,0.339818,0.254674,0.803049,0.518496,0.265015,0.522538,0.230518,0.82761,0.655518,0.105638,0.034084,0.334645,0.033825,0.239197,0.0896427,0.506798,0.839854,0.41587,0.281781,0.199719,0.21739,0.233274,0.920642,0.04952,0.466131,0.487894,0.933328,0.10903,0.322711,0.871393,0.237469,0.239923,0.539991,0.909494,0.241087,0.772459,0.297908,0.322511,0.599491,0.559185,0.923694,0.30444,0.400371,0.3609,0.352555,0.305866,0.0988209,0.816021,0.0643039,0.851518,0.647504,0.841549,0.630118,0.175941,0.635747,0.896107,0.509358,0.499675,0.518057,0.360142,0.377276,0.779113,0.572056,0.260866,0.272221,0.12468,0.655612,0.329792,0.563979,0.907451,0.639293,0.133677,0.0912811,0.167368,0.826621,0.103874,0.301169,0.812858,0.00301844,0.200222,0.425262,0.433694,0.0141079,0.262559,0.264125,0.0439843,0.291812,0.866106,0.750828,0.626344,0.219327,0.578433,0.335608,0.897428,0.493889,0.0033325,0.710438,0.125542,0.873544,0.36304,0.0941438,0.405678,0.0948963,0.950939,0.731634,0.672842,0.659137,0.0350344,0.077413,0.279814,0.137853,0.908303,0.898009,0.152335,0.507795,0.358572,0.812827,0.454141,0.162831,0.762475,0.87719,0.80317,0.483344,0.46787,0.974482,0.352096,0.0985479,0.639114,0.149173,0.824031,0.359102,0.945285,0.994083,0.872521,0.997137,0.312679,0.0629295,0.312365,0.71523,0.958382,0.332873,0.030755,0.381983,0.452361,0.549269,0.175907,0.725071,0.781999,0.198622,0.504127,0.60902,0.099415,0.417293,0.662767,0.183903,0.35823,0.149171,0.0467814,0.174627,0.829292,0.685542,0.592184,0.368055,0.0433145,0.888447,0.38229,0.0426466,0.670856,0.962616,0.787065,0.485479,0.125775,0.890634,0.684826,0.54317,0.804934,0.751982,0.319668,0.334157,0.760249,0.714012,0.730235,0.784317,0.205629,0.132775,0.016512,0.63549,0.339745,0.364576,0.0783819,0.889354,0.373016,0.633447,0.606058,0.917946,0.385781,0.778241,0.768473,0.853289,0.266905,0.252905,0.889359,0.455968,0.931375,0.49746,0.963327,0.235811,0.104804,0.28094,0.539261,0.249114,0.106965,0.624275,0.176624,0.354316,0.895215,0.918437,0.282636,0.223968,0.858128,0.84201,0.455793,0.445345,0.518573,0.0462735,0.289531,0.799715,0.297421,0.916787,0.119529,0.0337619,0.0505063,0.650112,0.295057,0.342906,0.839787,0.272709,0.583531,0.871068,0.330513,0.714661,0.717617,0.263714,0.685356,0.201086,0.262168,0.609759,0.976739,0.467555,0.654614,0.88687,0.431733,0.716771,0.753723,0.69859,0.265371,0.651548,0.332886,0.286471,0.146461,0.130085,0.473071,0.579198,0.769601,0.366754,0.0588656,0.961696,0.152876,0.600695,0.485757,0.970667,0.134114,0.84263,0.494718,0.430635,0.759925,0.826054,0.272453,0.531299,0.990192,0.210751,0.333204,0.635662,0.368993,0.289977,0.425718,0.189092,0.236705,0.278439,0.727039,0.0228524,0.456657,0.47844,0.753292,0.100204,0.778402,0.482778,0.050459,0.949206,0.506143,0.239553,0.239034,0.160547,0.13517,0.578652,0.49077,0.0179571,0.525333,0.389595,0.122349,0.955077,0.484009,0.263764,0.455685,0.909807,0.981259,0.825836,0.565638,0.510761,0.294302,0.645608,0.138508,0.490323,0.131805,0.964109,0.840063,0.61818,0.573491,0.164219,0.0624854,0.419956,0.738512,0.554414,0.912864,0.592718,0.575284,0.793706,0.946741,0.649746,0.892038,0.119407,0.0557519,0.319808,0.804958,0.373152,0.656077,0.321124,0.283732,0.424586,0.477287,0.329077,0.164863,0.568849,0.318387,0.0194799,0.282439,0.310007,0.552137,0.251131,0.901943,0.705202,0.21022,0.371587,0.959534,0.572128,0.336501,0.111102,0.417829,0.711454,0.223581,0.0803445,0.630632,0.207488,0.12808,0.199239,0.907441,0.473002,0.711138,0.962757,0.767924,0.576368,0.811573,0.579292,0.988615,0.762305,0.304653,0.388312,0.924253,0.761066,0.329426,0.221948,0.237173,0.146154,0.610224,0.923546,0.951252,0.143723,0.428068,0.858875,0.0600361,0.0578986,0.787106,0.309388,0.350233,0.40604,0.753066,0.931538,0.358786,0.366772,0.675718,0.357064,0.850088,0.882611,0.877526,0.830243,0.217138,0.651072,0.808931,0.948865,0.560832,0.703539,0.737502,0.47236,0.625048,0.960729,0.28313,0.509144,0.415922,0.678024,0.782296,0.6579,0.956015,0.943018,0.950066,0.19177,0.880613,0.750262,0.498345,0.254532,0.755814,0.664109,0.953249,0.885434,0.899205,0.186004,0.895415,0.272546,0.366543,0.299875,0.474027,0.991121,0.244388,0.198318,0.544732,0.859464,0.46183,0.413795,0.589501,0.74654,0.870347,0.98773,0.240479,0.51421,0.933409,0.785467,0.639987,0.0210768,0.484655,0.562681,0.0311382,0.229993,0.805485,0.669012,0.984542,0.205002,0.766349,0.513891,0.104841,0.421971,0.572231,0.28305,0.77531,0.545407,0.0522603,0.751752,0.865602,0.318068,0.171739,0.816653,0.181152,0.332272,0.682587,0.640864,0.852017,0.492325,0.290207,0.740461,0.618541,0.737634,0.453461,0.225965,0.994763,0.6585,0.287717,0.769578,0.238214,0.959296,0.442605,0.418861,0.0188984,0.0271295,0.20385,0.271435,0.281408,0.451574,0.273299,0.807153,0.376308,0.170236,0.693395,0.360955,0.501906,0.697252,0.941056,0.502252,0.938409,0.500136,0.734071,0.354933,0.420364,0.955394,0.529667,0.0920826,0.917666,0.975828,0.397113,0.164278,0.763168,0.556718,0.047752,0.593196,0.109934,0.0686752,0.497431,0.237493,0.74708,0.422972,0.0211562,0.659158,0.196254,0.976193,0.374355,0.319605,0.833424,0.475222,0.00656897,0.89149,0.320686,0.359788,0.455245,0.0945969,0.371633,0.481287,0.494778,0.472556,0.296824,0.388442,0.536474,0.200595,0.586357,0.660101,0.55398,0.968855,0.141623,0.246522,0.361416,0.185592,0.203266,0.677537,0.74072,0.878888,0.240548,0.540445,0.739629,0.974776,0.971618,0.0313835,0.427353,0.0719039,0.167358,0.551146,0.859171,0.0844923,0.0143514,0.429656,0.502938,0.580673,0.727183,0.883661,0.536902,0.704663,0.239884,0.00663978,0.270608,0.279727,0.680282,0.957524,0.255376,0.187941,0.650241,0.696431,0.787925,0.178494,0.697606,0.209392,0.428872,0.940332,0.780059,0.707734,0.457182,0.423231,0.234443,0.539887,0.977404,0.511064,0.710055,0.216188,0.813829,0.156513,0.655194,0.915779,0.470836,0.798562,0.148814,0.656283,0.13215,0.0276425,0.666869,0.0239481,0.731664,0.500103,0.635408,0.936145,0.567937,0.795271,0.95817,0.735719,0.304905,0.650472,0.699207,0.123542,0.963394,0.630461,0.534688,0.371988,0.499144,0.508098,0.327748,0.14536,0.536715,0.390969,0.979172,0.9558,0.784008,0.383733,0.204951,0.165056,0.573043,0.187107,0.550773,0.814486,0.000560164,0.203054,0.912699,0.549738,0.587329,0.0361692,0.304347,0.818291,0.465818,0.73343,0.848484,0.373371,0.162909,0.797561,0.243295,0.233632,0.965277,0.341307,0.0740542,0.18354,0.707857,0.106667,0.656839,0.344973,|0.409284,0.927296,0.483941,0.566472,0.475498,0.679665,0.0359519,0.0160346,0.754026,0.309888,0.359408,0.712491,0.88936,0.702019,0.0553982,0.272249,0.229094,0.926107,0.262773,0.651424,0.21952,0.128335,0.460513,0.665894,0.648947,0.0218068,0.982925,0.378827,0.54138,0.632076,0.755599,0.906684,0.390236,0.243552,0.175364,0.731699,0.748457,0.742311,0.0374582,0.897327,0.532896,0.0390771,0.763273,0.986508,0.490111,0.451679,0.632126,0.983038,0.738945,0.146665,0.248658,0.553225,0.161008,0.298014,0.376873,0.127449,0.00497073,0.889651,0.277269,0.255505,0.0858453,0.614381,0.706697,0.253054,0.0728213,0.826881,0.165546,0.817232,0.560788,0.996637,0.416421,0.391541,0.104874,0.123552,0.108401,0.520083,0.454494,0.508604,0.20937,0.784507,0.0243754,0.907131,0.534392,0.479292,0.0444251,0.347532,0.174592,0.118418,0.777453,0.187869,0.790449,0.217866,0.40582,0.554477,0.192577,0.713887,0.351872,0.696726,0.343586,0.154473,0.781901,0.54592,0.0362879,0.977646,0.112589,0.920763,0.41946,0.597841,0.757738,0.875487,0.654395,0.25058,0.47352,0.388846,0.967684,0.259515,0.340812,0.691355,0.174746,0.584519,0.808447,0.914346,0.846486,0.71773,0.125161,0.599264,0.965621,0.966896,0.554766,0.810809,0.819383,0.898599,0.136038,0.927695,0.127482,0.0829024,0.275186,0.43866,0.5327,0.477046,0.318274,0.964158,0.415188,0.172626,0.949724,0.279279,0.50967,0.829017,0.0938168,0.0444293,0.0472808,0.631859,0.732771,0.665737,0.528427,0.0909076,0.522347,0.29407,0.366047,0.7613,0.144943,0.853368,0.581832,0.144017,0.917629,0.874925,0.719433,0.763176,0.087522,0.941631,0.988831,0.0410784,0.767782,0.845432,0.0996425,0.540092,0.705609,0.125934,0.608662,0.849345,0.10139,0.954684,0.346278,0.86607,0.323298,0.910819,0.845741,0.707431,0.900311,0.105485,0.467366,0.221326,0.722624,0.451828,0.968477,0.0449785,0.301978,0.913893,0.48719,0.688642,0.324936,0.0272753,0.92788,0.800502,0.830193,0.0584689,0.206201,0.18229,0.955992,0.712725,0.60853,0.0560375,0.0657609,0.749235,0.411031,0.947582,0.69056,0.0093509,0.382359,0.183937,0.386988,0.501385,0.55811,0.550675,0.146273,0.572092,0.880112,0.795909,0.65968,0.754058,0.533344,0.0950252,0.96666,0.0805582,0.22714,0.769247,0.520018,0.740531,0.0854278,0.243172,0.359232,0.00265992,0.972609,0.940311,0.686942,0.990533,0.417294,0.530327,0.0780144,0.269122,0.990443,0.800259,0.738825,0.0674745,0.443913,0.82204,0.81573,0.896315,0.182941,0.816706,0.759124,0.295381,0.987031,0.408218,0.275168,0.829916,0.99133,0.759313,0.560227,0.384322,0.170149,0.010735,0.83458,0.445203,0.00804156,0.837946,0.352935,0.154803,0.180432,0.496241,0.688865,0.811892,0.208408,0.0829355,0.973664,0.780687,0.341915,0.51761,0.276825,0.399686,0.866425,0.574675,0.262047,0.292838,0.476782,0.655275,0.840431,0.321198,0.938482,0.407046,0.336988,0.579616,0.256256,0.433094,0.854643,0.540009,0.299641,0.314091,0.637742,0.250013,0.497277,0.0531664,0.703925,0.436957,0.914122,0.814315,0.365595,0.336976,0.143695,0.696962,0.183163,0.207605,0.43583,0.444654,0.895977,0.643076,0.480038,0.261356,0.555654,0.465338,0.28734,0.780245,0.845471,0.134556,0.839539,0.101148,0.678626,0.543515,0.440379,0.457214,0.506646,0.978801,0.222335,0.505393,0.155536,0.505292,0.0626267,0.952145,0.504502,0.61267,0.932249,0.629012,0.478862,0.282135,0.592478,0.91449,0.366312,0.984719,0.532017,0.675869,0.447159,0.577695,0.817459,0.417126,0.0799681,0.28924,0.328113,0.888022,0.467573,0.541211,0.202628,0.437845,0.742588,0.439331,0.764786,0.0494244,0.45211,0.410402,0.483305,0.317844,0.39665,0.516794,0.142172,0.895115,0.552624,0.863123,0.373415,0.0250657,0.738282,0.671436,0.810788,0.210134,0.182249,0.780133,0.783831,0.905956,0.0784054,0.99278,0.628929,0.489092,0.688082,0.290724,0.696756,0.509814,0.358822,0.455402,0.443659,0.585253,0.410657,0.833816,0.754322,0.663544,0.748363,0.511893,0.347932,0.484935,0.110947,0.554508,0.838392,0.0495102,0.39232,0.117444,0.14726,0.959186,0.421264,0.985142,0.193823,0.219618,0.12846,0.61028,0.0701271,0.962214,0.647027,0.558644,0.649972,0.363914,0.667112,0.461117,0.863955,0.417712,0.479603,0.0964349,0.923309,0.307476,0.750092,0.0882826,0.896361,0.633057,0.236356,0.0624288,0.93877,0.416806,0.794825,0.324852,0.289476,0.724872,0.0453421,0.395495,0.120078,0.860085,0.619798,0.763303,0.442587,0.49956,0.28282,0.888604,0.243144,0.409066,0.968767,0.521964,0.826641,0.120895,0.171822,0.796552,0.984558,0.337562,0.41309,0.872009,0.145971,0.00896239,0.702784,0.937447,0.0146824,0.569379,0.589661,0.744138,0.54698,0.378786,0.565412,0.415198,0.8141,0.305358,0.776444,0.663248,0.406626,0.451136,0.888235,0.878991,0.984075,0.794386,0.190808,0.982138,0.356538,0.965529,0.0467184,0.436695,0.00090915,0.196613,0.740446,0.285553,0.273761,0.591752,0.923085,0.0253642,0.681128,0.317197,0.266395,0.137116,0.325323,0.0409873,0.391726,0.896994,0.084501,0.949041,0.0130598,0.0425135,0.48114,0.232716,0.406627,0.479272,0.251921,0.310972,0.538698,0.578259,0.449577,0.17627,0.892522,0.403704,0.328782,0.230278,0.710263,0.33293,0.979717,0.381735,0.618661,0.054608,0.0895908,0.736481,0.958483,0.563662,0.563288,0.778375,0.333608,0.395526,0.284637,0.337315,0.759548,0.0553866,0.492794,0.397801,0.272246,0.556942,0.39218,0.926885,0.587781,0.991947,0.988929,0.0308622,0.0231612,0.834258,0.684492,0.0636883,0.222584,0.607011,0.489534,0.684993,0.741795,0.89438,0.254681,0.296069,0.320012,0.130899,0.523906,0.794632,0.7899,0.394255,0.472552,0.535634,0.711902,0.811602,0.436767,0.367085,0.167442,0.303144,0.0446018,0.730681,0.444911,0.980813,0.831356,0.856719,0.300144,0.981655,0.153244,0.769768,0.767295,0.787003,0.480249,0.127062,0.392396,0.738594,0.399191,0.726288,0.341492,0.120868,0.877962,0.0740373,0.779145,0.00443196,0.628842,0.291918,0.682808,0.997907,0.305496,0.74453,0.169424,0.911866,0.409171,0.335063,0.654662,0.759447,0.636513,0.919999,0.369929,0.308238,0.188018,0.322492,0.0779914,0.563709,0.12402,0.0901113,0.822638,0.935888,0.797033,0.410503,0.672197,0.305045,0.539404,0.616734,0.732267,0.627276,0.0142724,0.0790343,0.804037,0.609379,0.0261352,0.0691763,0.406763,0.503472,0.301086,0.595397,0.169095,0.645584,0.450035,0.586496,0.379536,0.0472078,0.0069108,0.987957,0.722572,0.786796,0.524708,0.510774,0.0535384,0.352987,0.29726,0.918157,0.66625,0.142382,0.105385,0.171977,0.845565,0.479428,0.602153,0.806278,0.812112,0.501497,0.876678,0.35634,0.974144,0.536727,0.413862,0.0563568,0.600671,0.578922,0.996045,0.678804,0.91792,0.251215,0.463523,0.389681,0.704075,0.704488,0.130691,0.998489,0.940147,0.332602,0.911308,0.722709,0.328101,0.696547,0.731046,0.287149,0.283714,0.717726,0.872747,0.0995079,0.552562,0.319457,0.0810124,0.408115,0.321254,0.237346,0.216015,0.220652,0.271918,0.275995,0.0198818,0.377427,0.9726,0.90342,0.742185,0.962745,0.601738,0.633479,0.921563,0.322684,0.612146,0.362898,0.994196,0.272151,0.89126,0.562039,0.274629,0.192583,0.658175,0.132073,0.0696705,0.22228,0.735409,0.330777,0.128645,0.697726,0.361933,0.247188,0.421859,0.750826,0.202156,0.341663,0.710766,0.500469,0.268979,0.531589,0.609518,0.558874,0.764213,0.914797,0.00666076,0.625565,0.29938,0.807496,0.342943,0.541821,0.22056,0.507355,0.549629,0.113597,0.124182,0.340612,0.771016,0.962768,0.269518,0.891543,0.00189525,0.304935,0.389837,0.305742,0.476772,0.321835,0.520165,0.840788,0.280716,0.973948,0.516002,0.245524,0.0975904,0.0157521,0.648345,0.147791,0.691896,0.348521,0.735772,0.98604,0.30602,0.0460651,0.0931477,0.819556,0.335592,0.875248,0.299293,0.124663,0.429892,0.671123,0.18541,0.141774,0.428976,0.71517,0.283479,0.579787,0.248303,0.28861,0.0453944,0.840874,0.361486,0.686906,0.0767365,0.919343,0.24632,0.182151,0.249101,0.0216569,0.282539,0.831169,0.995966,0.70745,0.330979,0.465664,0.105433,0.520085,0.252108,0.224711,0.548294,0.389564,0.473711,0.951576,0.278262,0.686846,0.53396,0.645462,0.0911903,0.577081,0.498391,0.562614,0.126245,0.453324,0.130232,0.135056,0.540394,0.101593,0.410163,0.141117,0.225056,0.632262,0.549858,0.241069,0.491817,0.510435,0.167874,0.0644473,0.733414,0.440806,0.482217,0.292527,0.514287,0.149238,0.487457,0.469114,0.930978,0.407654,0.334795,0.160166,0.280969,0.958453,0.0476167,0.141794,0.0815004,0.295874,0.474113,0.885819,0.72183,0.928441,0.478465,0.309445,0.673108,0.43358,0.155276,0.178307,0.234972,0.00612503,0.645198,0.374693,0.812089,0.217549,0.545648,0.802202,0.777578,0.669444,0.127871,0.169722,0.821962,0.713366,0.594361,0.675887,0.731982,0.887124,0.732448,0.0850032,0.430576,0.618328,0.594137,0.859345,0.13376,0.836872,0.728239,0.681561,0.491353,0.662301,0.862866,0.00666976,0.124095,0.109615,0.240266,0.57037,0.602627,0.438212,0.770118,0.355614,0.816504,0.453274,0.247873,0.994108,0.122636,0.104251,0.710091,0.886851,0.715387,0.362002,0.705896,0.442643,0.605201,0.0978485,0.732565,0.568199,0.718389,0.40557,0.570091,0.837226,0.73183,0.913424,0.00970864,0.354857,0.601131,0.308144,0.0969671,0.387065,0.00967687,0.9008,0.772175,0.941639,0.491901,0.462244,0.240203,0.429427,0.0194104,0.0113289,0.0590294,0.215312,0.014509,0.11568,0.293306,0.514583,0.411125,0.00752437,0.0249497,0.684939,0.0441052,0.162619,0.201624,0.446202,0.60946,0.566281,0.854908,0.32971,0.779994,0.111828,0.442105,0.207916,0.304159,0.773073,0.295752,0.38333,|0.22841,0.407702,0.247776,0.609911,0.933036,0.603836,0.0345326,0.220271,0.464506,0.72841,0.9308,0.61664,0.958205,0.00493729,0.245538,0.66207,0.852368,0.3305,0.846681,0.875452,0.689531,0.73323,0.508906,0.701449,0.400749,0.437445,0.84622,0.404074,0.991117,0.949028,0.420974,0.412044,0.676243,0.959379,0.869417,0.135868,0.293413,0.884117,0.604338,0.626043,0.931179,0.0655751,0.429561,0.772802,0.926535,0.886003,0.555247,0.627355,0.551702,0.756445,0.0479903,0.0910754,0.806279,0.538377,0.914341,0.806336,0.468101,0.642649,0.87631,0.722222,0.603105,0.468236,0.841309,0.987509,0.481828,0.735608,0.64886,0.137351,0.992495,0.283114,0.817937,0.0165185,0.08321,0.14401,0.982545,0.98837,0.881649,0.701962,0.839664,0.839856,0.701934,0.63166,0.494645,0.735979,0.0210498,0.831628,0.633379,0.215031,0.10087,0.88702,0.703606,0.318542,0.642028,0.26385,0.00723881,0.919942,0.251417,0.931271,0.339198,0.310453,0.83187,0.20063,0.616605,0.817959,0.591868,0.412689,0.820598,0.654833,0.171249,0.205085,0.0881316,0.535443,0.219379,0.698389,0.554607,0.926782,0.815521,0.0743429,0.67858,0.72045,0.245143,0.17156,0.937271,0.382855,0.978875,0.438259,0.972638,0.523506,0.622451,0.198721,0.612323,0.094071,0.843848,0.308941,0.475016,0.190375,3.46899e-05,0.290671,0.495798,0.148968,0.0338755,0.133415,0.0829762,0.806939,0.80634,0.0624371,0.0700061,0.278214,0.558192,0.84353,0.583481,0.67189,0.92283,0.485836,0.63,0.307242,0.785978,0.689188,0.467069,0.481062,0.763375,0.862002,0.237163,0.406386,0.848314,0.642701,0.40309,0.585116,0.848733,0.482421,0.968685,0.271878,0.0840207,0.96569,0.935927,0.654559,0.890877,0.0308335,0.0852546,0.133688,0.0437865,0.329316,0.700878,0.171706,0.775091,0.951611,0.293329,0.12315,0.776805,0.0055877,0.0666363,0.169751,0.223626,0.684329,0.164097,0.424048,0.770342,0.0985287,0.95186,0.368896,0.388342,0.0209789,0.58112,0.61642,0.91227,0.583932,0.0722619,0.512384,0.808998,0.969572,0.650903,0.235339,0.787211,0.397844,0.500621,0.856215,0.735301,0.959496,0.788217,0.213513,0.68837,0.781223,0.270579,0.168088,0.0583764,0.264025,0.416197,0.840149,0.637665,0.0107704,0.718188,0.797039,0.691656,0.227654,0.465788,0.762509,0.719557,0.99555,0.827321,0.607343,0.905404,0.610314,0.491499,0.291254,0.403222,0.231052,0.289805,0.398228,0.948713,0.0190779,0.337307,0.429916,0.930579,0.197181,0.383765,0.682612,0.682995,0.133528,0.760046,0.427231,0.483418,0.934587,0.0282077,0.218467,0.220262,0.140479,0.752603,0.190304,0.465965,0.147758,0.907018,0.754102,0.558981,0.688447,0.227134,0.228359,0.0378887,0.77539,0.863575,0.303528,0.253878,0.228961,0.626335,0.443137,0.895285,0.79578,0.936153,0.419468,0.474553,0.558643,0.414261,0.366835,0.958035,0.674918,0.927704,0.774953,0.603775,0.789708,0.992732,0.74713,0.671828,0.0171718,0.13021,0.401816,0.842557,0.589258,0.811232,0.660685,0.795329,0.0380968,0.0492758,0.0370969,0.12543,0.483175,0.964074,0.61199,0.556169,0.878456,0.595334,0.419489,0.405591,0.22829,0.607192,0.856281,0.979947,0.346796,0.856008,0.547926,0.0141809,0.188322,0.289944,0.903573,0.09778,0.501988,0.120183,0.987732,0.130883,0.972637,0.313911,0.50888,0.965425,0.908385,0.861897,0.705331,0.515448,0.284022,0.405779,0.744939,0.658539,0.959043,0.982294,0.389418,0.643352,0.164054,0.419147,0.781712,0.672303,0.991128,0.84867,0.989801,0.366816,0.743767,0.0369105,0.742573,0.853438,0.223985,0.64546,0.729483,0.25393,0.0775412,0.86816,0.797818,0.8571,0.889166,0.298522,0.85714,0.671563,0.215147,0.994525,0.840494,0.311204,0.193099,0.335156,0.950892,0.862452,0.986982,0.70868,0.637963,0.932724,0.683608,0.781349,0.509444,0.254343,0.681192,0.943596,0.417861,0.187596,0.860102,0.767092,0.605077,0.846186,0.620856,0.205598,0.715439,0.630072,0.492615,0.469281,0.232064,0.866655,0.348595,0.240868,0.112977,0.575602,0.13188,0.845286,0.195848,0.425545,0.960271,0.919075,0.239487,0.551887,0.78639,0.19164,0.0533182,0.276655,0.883467,0.411646,0.280336,0.190449,0.797794,0.872638,0.923511,0.711513,0.251976,0.338872,0.0242814,0.856171,0.546215,0.873753,0.479389,0.777183,0.642244,0.785073,0.839376,0.797819,0.0871633,0.494548,0.0180161,0.05655,0.315558,0.0814323,0.94551,0.182522,0.726098,0.268414,0.212472,0.364799,0.433413,0.819025,0.3756,0.649076,0.174292,0.873489,0.362441,0.291668,0.263071,0.0562967,0.321261,0.525487,0.50529,0.0889733,0.918303,0.292659,0.871052,0.0631925,0.690298,0.378273,0.9447,0.411916,0.487506,0.937171,0.986234,0.0990527,0.774223,0.699281,0.9855,0.49214,0.275054,0.377428,0.319652,0.909993,0.446904,0.152519,0.524107,0.914499,0.919407,0.0337542,0.408214,0.504294,0.766269,0.333058,0.348743,0.617843,0.968113,0.138145,0.869063,0.518929,0.547036,0.272867,0.587369,0.500929,0.11129,0.69002,0.706133,0.910965,0.572856,0.557826,0.0103526,0.180594,0.162114,0.745612,0.460972,0.832473,0.861862,0.746404,0.948159,0.413298,0.732733,0.86964,0.565337,0.0920889,0.679797,0.243177,0.0887984,0.440613,0.15658,0.343905,0.059823,0.542479,0.98871,0.252078,0.992821,0.607811,0.341711,0.346341,0.34311,0.123339,0.629395,0.769847,0.735906,0.158929,0.459626,0.493809,0.209839,0.0637846,0.331405,0.0667686,0.525322,0.919105,0.32439,0.131646,0.749164,0.36936,0.0920721,0.370077,0.215599,0.479027,0.534032,0.251909,0.193885,0.492596,0.390993,0.193222,0.645937,0.54912,0.255503,0.777662,0.764689,0.369382,0.404181,0.347348,0.869664,0.523113,0.609611,0.649181,0.577686,0.366396,0.0770122,0.0971565,0.264498,0.899689,0.431494,0.0435697,0.864204,0.860183,0.146071,0.311222,0.929472,0.899618,0.479129,0.596791,0.777405,0.985398,0.0447643,0.668304,0.727421,0.990613,0.174478,0.081059,0.333042,0.0678906,0.170641,0.957408,0.416812,0.834396,0.243207,0.924632,0.287844,0.511652,0.619381,0.323945,0.651414,0.24854,0.374021,0.881886,0.819793,0.0995363,0.622806,0.597675,0.535568,0.964711,0.195495,0.907786,0.661719,0.49353,0.574911,0.654191,0.263248,0.738049,0.670158,0.38814,0.804883,0.335561,0.419177,0.922502,0.0673363,0.601817,0.647832,0.483269,0.309311,0.204498,0.493466,0.126475,0.759185,0.414944,0.600361,0.380284,0.936901,0.25603,0.53827,0.0433542,0.982905,0.10085,0.0372254,0.366688,0.265958,0.404963,0.135346,0.558875,0.254101,0.964666,0.506913,0.00794488,0.800636,0.913197,0.396878,0.331573,0.737031,0.927822,0.766644,0.661727,0.824442,0.216205,0.333036,0.761382,0.956303,0.0695531,0.902649,0.176788,0.967181,0.906007,0.85444,0.3192,0.788707,0.0269457,0.93544,0.63069,0.723807,0.384876,0.419261,0.193801,0.796175,0.279326,0.538193,0.90672,0.571592,0.0334268,0.725716,0.969154,0.629905,0.324194,0.346287,0.837743,0.567426,0.0451531,0.611953,0.423275,0.769894,0.936614,0.149997,0.807916,0.764211,0.947468,0.0761203,0.726608,0.939549,0.0255286,0.430028,0.465498,0.639329,0.928499,0.618653,0.909471,0.105856,0.67793,0.573101,0.745966,0.584774,0.843011,0.774031,0.00988746,0.414342,0.554972,0.622572,0.78703,0.49988,0.16124,0.744865,0.368607,0.448283,0.723736,0.395923,0.733415,0.0820689,0.208945,0.834599,0.410659,0.977591,0.939015,0.763732,0.20009,0.66539,0.268258,0.417339,0.322179,0.13753,0.0609574,0.31593,0.85496,0.34957,0.588127,0.680117,0.674853,0.582444,0.4029,0.483135,0.847298,0.409022,0.826862,0.644401,0.0504023,0.668428,0.157522,0.5833,0.527851,0.820593,0.654323,0.300919,0.32191,0.540443,0.428785,0.443131,0.366359,0.293018,0.784975,0.545776,0.480715,0.527396,0.346344,0.476568,0.134078,0.723021,0.287872,0.32824,0.661735,0.849634,0.839001,0.90644,0.366948,0.56422,0.328543,0.279877,0.909502,0.680806,0.239059,0.198802,0.669877,0.384088,0.30469,0.608306,0.391239,0.363506,0.591874,0.716546,0.719001,0.494497,0.231766,0.622818,0.525778,0.646464,0.374715,0.822987,0.244807,0.393086,0.948638,0.278279,0.422089,0.0127112,0.682759,0.497558,0.654564,0.160123,0.394347,0.117664,0.219344,0.705712,0.144153,0.0708197,0.775702,0.359774,0.83026,0.384426,0.945075,0.903155,0.0631804,0.046635,0.392116,0.762337,0.656437,0.3168,0.104324,0.296158,0.0926478,0.348327,0.553535,0.490967,0.420363,0.556376,0.53406,0.858374,0.071474,0.868478,0.43836,0.958336,0.173767,0.355518,0.786405,0.686032,0.818261,0.1907,0.753866,0.991636,0.106636,0.745676,0.956449,0.483233,0.668124,0.519634,0.0179859,0.392739,0.675575,0.284651,0.778781,0.706001,0.507129,0.0114133,0.3318,0.457688,0.970075,0.39873,0.810108,0.91173,0.381665,0.0505822,0.0374668,0.915361,0.880677,0.612028,0.653081,0.0989968,0.31263,0.550704,0.958983,0.236307,0.30624,0.453941,0.611667,0.263826,0.359354,0.45629,0.505949,0.87949,0.74565,0.293415,0.0126821,0.398175,0.179758,0.980283,0.57545,0.837788,0.744734,0.0165601,0.0402194,0.239932,0.726643,0.242984,0.77093,0.501943,0.414664,0.0473712,0.73524,0.810906,0.309792,0.393142,0.101663,0.190027,0.653496,0.860144,0.933581,0.174165,0.566997,0.12398,0.572815,0.70705,0.324342,0.839813,0.895842,0.491936,0.72893,0.330357,0.961977,0.0444962,0.823619,0.701258,0.0212591,0.908735,0.370785,0.808718,0.524189,0.333339,0.856864,0.781451,0.921698,0.279897,0.289794,0.724099,0.867305,0.0658044,0.915645,0.265279,0.0117182,0.672518,0.296261,0.997624,0.745988,0.787848,0.513061,0.111706,0.211364,0.981423,0.830268,0.873296,0.219459,0.747002,0.223433,0.199941,0.747409,0.0755153,0.768791,0.384479,|0.244196,0.6495,0.40799,0.0551221,0.554549,0.899196,0.181025,0.211325,0.0864318,0.972159,0.0454659,0.340182,0.0536996,0.798794,0.846099,0.401601,0.38424,0.117652,0.199596,0.125107,0.490287,0.922902,0.756763,0.638584,0.275547,0.257615,0.577039,0.336326,0.338624,0.577006,0.115608,0.486556,0.206371,0.671321,0.130159,0.390853,0.906046,0.0388307,0.932075,0.384837,0.237703,0.14601,0.712586,0.323075,0.4552,0.536009,0.987245,0.581531,0.939748,0.491063,0.815757,0.736047,0.902557,0.42934,0.532553,0.626871,0.874754,0.989385,0.995586,0.129234,0.768242,0.494054,0.265567,0.203588,0.0989097,0.0876734,0.642256,0.737237,0.581777,0.93946,0.548011,0.0842535,0.0969962,0.218503,0.823947,0.066614,0.602505,0.782739,0.917019,0.703125,0.86687,0.889672,0.117197,0.503509,0.422278,0.0461977,0.983278,0.847436,0.432683,0.679584,0.946538,0.171789,0.651168,0.0810875,0.820687,0.911072,0.82009,0.565392,0.837456,0.641955,0.987102,0.637442,0.843089,0.121,0.407012,0.9803,0.114384,0.347097,0.93859,0.492637,0.262433,0.603262,0.907681,0.0148054,0.859164,0.0104511,0.72996,0.664087,0.438715,0.881727,0.179652,0.865243,0.0859457,0.12316,0.374087,0.542049,0.145531,0.638255,0.95746,0.831727,0.823595,0.8811,0.804223,0.668066,0.913014,0.715453,0.84162,0.793347,0.152696,0.104859,0.837485,0.937546,0.52785,0.27375,0.839348,0.916932,0.595935,0.735512,0.975809,0.868238,0.806316,0.781798,0.360797,0.423631,0.785413,4.59552e-05,0.615139,0.932088,0.258799,0.295332,0.643626,0.176819,0.549502,0.144336,0.193174,0.516106,0.862328,0.0494316,0.329201,0.95984,0.858631,0.459516,0.921024,0.198831,0.0951644,0.481857,0.953243,0.0853581,0.0249704,0.485373,0.776082,0.257098,0.527272,0.678888,0.756995,0.128318,0.912362,0.822436,0.0884488,0.25534,0.165415,0.160085,0.184897,0.262298,0.607873,0.4358,0.180008,0.929891,0.978175,0.190525,0.0302032,0.625076,0.472233,0.0756212,0.717622,0.695487,0.573407,0.945966,0.439314,0.272209,0.505432,0.334589,0.839195,0.648194,0.20256,0.777348,0.22721,0.25063,0.700472,0.943674,0.141339,0.832459,0.417767,0.295438,0.945948,0.426645,0.869429,0.467161,0.251959,0.658826,0.151107,0.74972,0.342718,0.295297,0.560379,0.697779,0.666502,0.255639,0.185196,0.526324,0.247213,0.555967,0.368716,0.804363,0.127221,0.784804,0.657471,0.489832,0.83361,0.721583,0.0474256,0.537632,0.413136,0.491202,0.8318,0.512597,0.00900388,0.211852,0.831311,0.308219,0.40659,0.89136,0.38401,0.302388,0.839122,0.70596,0.964983,0.649962,0.0494291,0.833428,0.183008,0.404081,0.868295,0.27222,0.537744,0.248665,0.990908,0.925439,0.307942,0.428424,0.692028,0.596226,0.902023,0.459127,0.239619,0.959606,0.552815,0.574804,0.976095,0.916965,0.620488,0.185092,0.959631,0.738064,0.400113,0.138025,0.382045,0.43748,0.374339,0.400601,0.20103,0.359442,0.959891,0.741296,0.553481,0.215556,0.835467,0.341507,0.307598,0.282032,0.654535,0.703245,0.0655682,0.383794,0.120489,0.388374,0.318198,0.922062,0.443627,0.819718,0.517211,0.782891,0.416253,0.976595,0.162017,0.645675,0.104892,0.653108,0.310207,0.314962,0.0451471,0.621535,0.959883,0.163901,0.503182,0.270083,0.641335,0.960263,0.233016,0.973664,0.994817,0.559123,0.178947,0.251545,0.0621113,0.740806,0.463938,0.606115,0.938604,0.483741,0.145667,0.638435,0.719771,0.85505,0.447935,0.26791,0.882712,0.66115,0.0207207,0.318744,0.723466,0.670991,0.374694,0.905142,0.897995,0.702497,0.985724,0.659761,0.593979,0.812047,0.497634,0.233154,0.8957,0.307651,0.474058,0.63823,0.585523,0.122891,0.415324,0.102877,0.692824,0.942597,0.472995,0.104579,0.788305,0.268296,0.95561,0.814026,0.390258,0.0657727,0.499054,0.78976,0.757602,0.643159,0.0161986,0.906545,0.152148,0.612351,0.905773,0.481242,0.046248,0.139821,0.554292,0.135935,0.994266,0.988463,0.337762,0.220616,0.774044,0.93747,0.279009,0.540401,0.922775,0.873087,0.61014,0.531032,0.307485,0.902193,0.256379,0.78828,0.713321,0.636644,0.899843,0.983079,0.0273699,0.883069,0.603645,0.495977,0.30237,0.37707,0.96834,0.994273,0.778746,0.0874892,0.764173,0.498798,0.403831,0.0713235,0.438876,0.926249,0.828582,0.357887,0.713425,0.997699,0.210925,0.350349,0.19799,0.131229,0.368963,0.158934,0.337921,0.533933,0.642876,0.102987,0.0708842,0.673954,0.694848,0.672015,0.800038,0.560486,0.684492,0.318574,0.595839,0.613005,0.86361,0.130166,0.741919,0.362053,0.509723,0.702743,0.382405,0.242899,0.321319,0.548072,0.714767,0.185149,0.0818027,0.0286784,0.574845,0.340169,0.229724,0.279816,0.245193,0.483369,0.415069,0.205944,0.374868,0.0977988,0.419134,0.593779,0.562967,0.199006,0.558256,0.829964,0.0287271,0.630661,0.425474,0.416255,0.936926,0.540691,0.982829,0.978269,0.136159,0.202103,0.721817,0.0841964,0.782571,0.24844,0.637653,0.231058,0.23008,0.489512,0.891661,0.541705,0.863424,0.33274,0.101868,0.553178,0.229561,0.424286,0.243182,0.438667,0.104013,0.309977,0.0939711,0.134786,0.998301,0.562613,0.538701,0.823091,0.242769,0.853858,0.653822,0.996062,0.880095,0.493397,0.725273,0.505195,0.0710789,0.998538,0.477664,0.793143,0.923672,0.926139,0.14117,0.40146,0.100874,0.0913499,0.247388,0.771031,0.992339,0.387062,0.690609,0.441351,0.949429,0.0499386,0.472917,0.068574,0.939814,0.254605,0.101272,0.0204934,0.137204,0.12477,0.24577,0.587335,0.838563,0.177396,0.59182,0.0915951,0.607291,0.44466,0.707789,0.741916,0.402278,0.281768,0.139384,0.194756,0.418923,0.469561,0.119814,0.779099,0.794077,0.141327,0.69016,0.833145,0.615773,0.880257,0.203907,0.440368,0.138764,0.105422,0.443703,0.601761,0.236658,0.462658,0.171821,0.468511,0.770135,0.624462,0.381897,0.573538,0.310948,4.9293e-05,0.0804369,0.399319,0.852923,0.404679,0.154171,0.928791,0.837105,0.663002,0.957889,0.164191,0.764075,0.644237,0.100243,0.804695,0.834581,0.200231,0.569405,0.497388,0.329712,0.174202,0.0809599,0.827718,0.570711,0.335558,0.898039,0.149034,0.626624,0.464932,0.772799,0.170278,0.0397415,0.821058,0.975824,0.614637,0.0272427,0.836503,0.803434,0.365818,0.378918,0.815211,0.269262,0.171042,0.241407,0.150574,0.378451,0.680634,0.538626,0.673743,0.884826,0.859097,0.284121,0.847809,0.654041,0.0703719,0.598522,0.904375,0.120076,0.888646,0.200323,0.634315,0.371,0.361398,0.374373,0.972925,0.441696,0.556666,0.0418348,0.566958,0.416405,0.826896,0.136373,0.355961,0.363553,0.827491,0.976817,0.653128,0.237158,0.141691,0.085628,0.432852,0.75898,0.187944,0.748039,0.645156,0.407775,0.148722,0.0591328,0.557503,0.958141,0.153924,0.12743,0.337726,0.453604,0.407146,0.307263,0.647076,0.131153,0.685987,0.12871,0.781669,0.740149,0.340576,0.511086,0.589992,0.4076,0.087979,0.754827,0.037686,0.874033,0.55561,0.895899,0.289454,0.484135,0.133194,0.312139,0.680451,0.313605,0.0491665,0.686805,0.563219,0.567805,0.363638,0.821291,0.662156,0.107737,0.675077,0.0447833,0.602435,0.775197,0.443691,0.231909,0.779647,0.472385,0.0427535,0.563394,0.741411,0.713387,0.241304,0.851379,0.164514,0.538346,0.0771152,0.850368,0.389994,0.606959,0.196481,0.616878,0.276245,0.471055,0.140789,0.513035,0.249686,0.13786,0.804881,0.692486,0.670663,0.304574,0.687854,0.597564,0.996891,0.796676,0.591215,0.38696,0.926971,0.125199,0.721114,0.160114,0.416176,0.0179055,0.0675685,0.721616,0.713046,0.216261,0.369623,0.110358,0.954486,0.593675,0.179722,0.559126,0.162313,0.85235,0.235832,0.300349,0.864966,0.187665,0.279707,0.850572,0.259639,0.167715,0.551964,0.921443,0.116666,0.730084,0.848352,0.390295,0.608842,0.19824,0.335212,0.516111,0.641981,0.27932,0.534981,0.888847,0.251042,0.688268,0.258667,0.767397,0.22598,0.556907,0.0974871,0.851412,0.211827,0.966411,0.370792,0.983581,0.298375,0.175994,0.164164,0.278415,0.240017,0.237741,0.26801,0.900724,0.37748,0.600985,0.898849,0.155567,0.380092,0.00996381,0.406924,0.452739,0.0307267,0.153738,0.146398,0.540392,0.0146903,0.855995,0.197958,0.270417,0.85222,0.0158209,0.00904244,0.679747,0.664161,0.141557,0.382605,0.315838,0.32776,0.0677891,0.837151,0.661437,0.071813,0.953875,0.905954,0.0772015,0.364941,0.420134,0.711838,0.676256,0.0260221,0.290983,0.697436,0.913003,0.761304,0.685109,0.934316,0.288363,0.64716,0.861089,0.312914,0.41646,0.632987,0.316623,0.860033,0.578459,0.390544,0.239402,0.586692,0.825853,0.140733,0.251679,0.44727,0.793926,0.115278,0.465921,0.14674,0.911597,0.219971,0.157859,0.81521,0.542243,0.0328354,0.294246,0.592487,0.391722,0.761964,0.803072,0.672333,0.487821,0.32779,0.971766,0.320823,0.653713,0.738702,0.858264,0.0485203,0.542005,0.306798,0.916844,0.490107,0.491608,0.936175,0.797906,0.207582,0.0150039,0.903518,0.210278,0.945109,0.392323,0.0414288,0.327703,0.768053,0.959546,0.996526,0.415894,0.73808,0.949051,0.835044,0.602374,0.15556,0.698063,0.498763,0.589101,0.837475,0.501671,0.860453,0.681234,0.230624,0.264716,0.432741,0.825978,0.664504,0.0758115,0.0964015,0.439112,0.181525,0.59361,0.209701,0.124079,0.0850109,0.29247,0.300871,0.019763,0.878881,0.553783,0.746296,0.488831,0.608765,0.15528,0.661651,0.72837,0.477702,0.897296,0.765467,0.241577,0.12864,0.307322,0.821195,0.951423,0.773249,0.772059,0.831527,0.573788,0.409862,0.326775,0.154729,0.811074,0.977699,0.675225,0.478444,0.815609,0.328914,0.515269,0.885854,0.20193,0.489975,0.475677,0.379523,0.87027,0.93235,0.796776,0.633544,0.783449,0.455354,0.0172779,0.915385,|0.330875,0.927502,0.748565,0.873919,0.394182,0.937572,0.773964,0.989256,0.84049,0.926076,0.713323,0.0571859,0.749279,0.345848,0.220971,0.595427,0.636601,0.799888,0.180929,0.345185,0.413597,0.728491,0.440047,0.903905,0.990707,0.734445,0.670082,0.349894,0.616902,0.459954,0.634197,0.62626,0.0680099,0.981126,0.570453,0.675138,0.831354,0.0402709,0.213293,0.308439,0.728863,0.540663,0.734916,0.939884,0.294181,0.679574,0.386162,0.534745,0.336671,0.733457,0.565094,0.481082,0.509214,0.6728,0.26462,0.375777,0.991094,0.928227,0.433514,0.881497,0.425233,0.349033,0.928769,0.85128,0.968786,0.782733,0.926062,0.959751,0.786566,0.556092,0.553539,0.845155,0.0366883,0.526758,0.340585,0.235809,0.986321,0.986052,0.690142,0.276252,0.786313,0.607522,0.509136,0.730043,0.106766,0.201594,0.613576,0.107987,0.296858,0.23427,0.451196,0.633645,0.141028,0.523516,0.071312,0.0133739,0.113734,0.87244,0.776358,0.640257,0.443447,0.00988448,0.436999,0.0779271,0.00316399,0.045167,0.307159,0.0994948,0.978449,0.476068,0.453255,0.719563,0.916454,0.483764,0.648054,0.0519308,0.259879,0.871649,0.759137,0.611824,0.57854,0.170296,0.522514,0.859984,0.300813,0.254607,0.717934,0.275391,0.774262,0.920162,0.0320607,0.156011,0.581778,0.87778,0.861206,0.848943,0.96746,0.557288,0.292692,0.253285,0.308327,0.610117,0.804432,0.671125,0.997591,0.0412713,0.551708,0.130052,0.262444,0.252574,0.799094,0.899799,0.139907,0.0426248,0.726225,0.254137,0.0888928,0.420554,0.428675,0.174419,0.0658764,0.240606,0.258319,0.981607,0.0271698,0.56601,0.262592,0.905577,0.704738,0.0437539,0.0813909,0.108573,0.863993,0.934258,0.708274,0.710655,0.27288,0.933905,0.352727,0.99371,0.464709,0.6617,0.772624,0.387973,0.300928,0.692287,0.766064,0.197783,0.597228,0.289504,0.917573,0.0359286,0.922301,0.324333,0.0220064,0.197691,0.827061,0.0920668,0.970581,0.595227,0.442505,0.525136,0.683113,0.825496,0.852554,0.228,0.020516,0.976595,0.914842,0.134859,0.613647,0.466913,0.849909,0.789327,0.253708,0.859243,0.230877,0.865435,0.981481,0.174114,0.778912,0.492683,0.516749,0.726703,0.0714723,0.679731,0.709014,0.986061,0.321124,0.36805,0.245244,0.854214,0.126858,0.770967,0.455623,0.899715,0.457066,0.705414,0.049139,0.981756,0.0275146,0.749126,0.46838,0.587115,0.715851,0.121067,0.160682,0.345111,0.583511,0.641351,0.342638,0.75095,0.826312,0.102182,0.141867,0.535777,0.309438,0.550738,0.681944,0.732215,0.194161,0.00914621,0.168184,0.566777,0.0829573,0.905392,0.433368,0.129356,0.90177,0.580535,0.374098,0.951127,0.430934,0.16653,0.80748,0.578507,0.0412728,0.311621,0.788234,0.162041,0.323911,0.839543,0.716271,0.468693,0.449677,0.978597,0.0760562,0.756754,0.491475,0.598251,0.979528,0.129342,0.419681,0.538503,0.208374,0.203594,0.988439,0.992156,0.66165,0.209363,0.661117,0.630236,0.611532,0.656797,0.670947,0.853633,0.226673,0.942821,0.894898,0.0213463,0.222727,0.903269,0.92381,0.392631,0.866756,0.540992,0.834552,0.716827,0.0985476,0.280085,0.36821,0.864898,0.47972,0.268636,0.757136,0.741935,0.0431409,0.173883,0.612755,0.848943,0.445484,0.697776,0.673129,0.397414,0.0955071,0.961786,0.324352,0.373902,0.341232,0.0950745,0.969621,0.488852,0.152239,0.375348,0.226364,0.897764,0.253802,0.605635,0.367498,0.735172,0.34112,0.651128,0.614928,0.0511861,0.887067,0.581702,0.327046,0.969571,0.220454,0.180811,0.786617,0.151722,0.649168,0.735692,0.103459,0.167117,0.76879,0.526194,0.624006,0.588977,0.988637,0.397809,0.239347,0.797966,0.261758,0.232871,0.256984,0.339098,0.493707,0.663288,0.158355,0.900419,0.358078,0.754583,0.183858,0.3004,0.0233039,0.561172,0.308413,0.666174,0.220966,0.826663,0.821942,0.627334,0.184325,0.411305,0.843848,0.708366,0.250995,0.587782,0.389698,0.013094,0.571204,0.52549,0.650795,0.908803,0.552814,0.323501,0.321973,0.137356,0.584236,0.263195,0.391715,0.97964,0.972485,0.0794421,0.206924,0.764861,0.569523,0.935859,0.0280154,0.037097,0.934263,0.225627,0.795639,0.125378,0.741774,0.319009,0.553242,0.0146568,0.327762,0.85015,0.318616,0.0276272,0.875831,0.657191,0.489786,0.983535,0.356035,0.968781,0.815701,0.934107,0.234213,0.302117,0.154794,0.939413,0.182189,0.65503,0.528926,0.321122,0.240993,0.481202,0.663221,0.125026,0.343245,0.643216,0.529011,0.429481,0.130932,0.312091,0.910165,0.592167,0.849522,0.427266,0.821183,0.284837,0.801967,0.217542,0.00468981,0.75191,0.43626,0.787227,0.540236,0.572706,0.120542,0.211945,0.320864,0.10324,0.443056,0.266886,0.992338,0.500268,0.270252,0.327505,0.84958,0.951781,0.741779,0.699425,0.0419193,0.832835,0.909446,0.383061,0.197374,0.508681,0.00804561,0.575041,0.952924,0.762825,0.326954,0.384345,0.803419,0.186711,0.400053,0.440341,0.254752,0.398103,0.104932,0.759116,0.271267,0.185055,0.238183,0.236638,0.134963,0.906832,0.428344,0.959392,0.569755,0.344677,0.238029,0.482634,0.196985,0.0867788,0.0696909,0.491098,0.939551,0.143459,0.65673,0.992308,0.870775,0.0435736,0.561617,0.0262422,0.481332,0.392371,0.392009,0.785057,0.79193,0.607332,0.930719,0.51202,0.253223,0.452546,0.955077,0.846512,0.455295,0.964658,0.550702,0.154063,0.919531,0.657538,0.411584,0.880453,0.160761,0.345444,0.453943,0.800334,0.415314,0.977434,0.768876,0.52428,0.946027,0.771991,0.757533,0.422235,0.83215,0.722258,0.863143,0.211478,0.507545,0.123268,0.996867,0.0281537,0.391256,0.955068,0.473521,0.919348,0.925011,0.241467,0.493926,0.450456,0.507871,0.554946,0.760458,0.0887229,0.791142,0.455108,0.35636,0.263027,0.835999,0.186679,0.240219,0.146808,0.772147,0.681819,0.189441,0.985312,0.102483,0.957673,0.470436,0.45591,0.185535,0.802401,0.530117,0.888934,0.268144,0.330444,0.304343,0.771175,0.771841,0.738173,0.844587,0.432431,0.0299922,0.730146,0.950724,0.160903,0.73619,0.439093,0.0917666,0.173794,0.0993136,0.152843,0.586239,0.765767,0.727384,0.495471,0.616618,0.961547,0.497607,0.723247,0.551946,0.885449,0.832007,0.630921,0.102294,0.214633,0.400594,0.61322,0.335109,0.945066,0.103067,0.815508,0.70066,0.252303,0.400466,0.3314,0.225644,0.50344,0.743087,0.105403,0.3649,0.267796,0.0166676,0.808392,0.0150542,0.719522,0.399868,0.445972,0.28612,0.730189,0.258561,0.427972,0.481686,0.66011,0.300396,0.326755,0.131348,0.301226,0.994251,0.248418,0.276116,0.200187,0.950131,0.352645,0.0952548,0.847516,0.642233,0.324867,0.333905,0.571553,0.784689,0.347445,0.320643,0.84722,0.05753,0.450878,0.496963,0.870242,0.54951,0.661465,0.21659,0.911538,0.641823,0.682074,0.325824,0.69748,0.902497,0.859616,0.160572,0.172544,0.323795,0.392738,0.931291,0.329267,0.825673,0.259327,0.917313,0.0425083,0.795149,0.755354,0.842392,0.275205,0.155807,0.527557,0.408113,0.169134,0.832399,0.641817,0.717444,0.596572,0.00304544,0.234853,0.746306,0.343834,0.185364,0.313778,0.92207,0.526494,0.689369,0.249076,0.762659,0.829123,0.933913,0.761669,0.664218,0.809981,0.138881,0.127947,0.92013,0.864532,0.222535,0.220591,0.322946,0.140607,0.529632,0.788921,0.754037,0.249044,0.0389748,0.207984,0.817262,0.198078,0.87417,0.374333,0.732964,0.14716,0.524869,0.612466,0.344228,0.403252,0.899966,0.389159,0.249787,0.0556017,0.842425,0.918414,0.739169,0.964021,0.908293,0.702904,0.686169,0.131055,0.265035,0.146295,0.439043,0.605595,0.600754,0.768104,0.639431,0.892259,0.604522,0.113476,0.0751356,0.209115,0.777665,0.831749,0.4091,0.269086,0.41152,0.777379,0.540873,0.0902393,0.28465,0.808634,0.700109,0.708502,0.0983732,0.807795,0.911109,0.800007,0.26696,0.866974,0.92919,0.483843,0.632543,0.702291,0.695236,0.918817,0.434053,0.153389,0.922067,0.57225,0.188598,0.563065,0.449034,0.961653,0.857863,0.356196,0.744648,0.636374,0.0907395,0.781043,0.888494,0.0539635,0.340846,0.767349,0.685884,0.920064,0.215829,0.575615,0.0233877,0.0450513,0.635165,0.569669,0.2751,0.278336,0.537443,0.55759,0.134397,0.711315,0.359045,0.906523,0.484079,0.353399,0.0783245,0.146923,0.691498,0.106793,0.0861169,0.186051,0.111879,0.180181,0.569354,0.0756325,0.988025,0.426938,0.441227,0.795012,0.408034,0.649092,0.736928,0.15829,0.277841,0.336655,0.321017,0.0571582,0.931065,0.827994,0.528438,0.694822,0.16806,0.587752,0.531176,0.604703,0.616508,0.188015,0.0397838,0.973561,0.970225,0.913476,0.134114,0.96396,0.851056,0.246614,0.668291,0.561337,0.808429,0.442085,0.373734,0.536203,0.445686,0.493111,0.306594,0.0698774,0.828556,0.714683,0.0486715,0.101692,0.744544,0.667581,0.803844,0.544196,0.59883,0.457683,0.413697,0.709977,0.220619,0.190882,0.494978,0.719269,0.911739,0.619112,0.918849,0.144805,0.479457,0.500712,0.866339,0.576358,0.485237,0.312122,0.257091,0.786306,0.965814,0.342237,0.207823,0.546943,0.913076,0.883906,0.464024,0.433339,0.245926,0.812291,0.139692,0.259619,0.562799,0.408333,0.598427,0.537282,0.891144,0.126759,0.465557,0.264626,0.936609,0.117507,0.90627,0.766386,0.141161,0.341825,0.461381,0.024441,0.814242,0.601032,0.00859982,0.0285947,0.100304,0.848876,0.286354,0.773194,0.40679,0.0962381,0.573364,0.260923,0.540414,0.117077,0.134671,0.902817,0.579946,0.0396826,0.845229,0.0540619,0.874098,0.833234,0.801434,0.910422,0.498099,0.29241,0.827468,0.285246,0.828815,0.959073,0.596316,0.56276,0.707357,0.0768596,0.29434,0.988653,0.893982,0.967345,0.776557,0.223142,0.0487625,0.22422,0.252078,0.272251,0.240632,0.55414,0.28827,0.241375,0.378578,0.773055,|0.87758,0.224992,0.171397,0.693404,0.545782,0.730118,0.582667,0.291801,0.30601,0.788092,0.952758,0.0176985,0.92167,0.720484,0.0429237,0.741725,0.701249,0.405446,0.371306,0.426022,0.901099,0.315376,0.479077,0.236819,0.962387,0.642722,0.587798,0.556999,0.624661,0.775286,0.996509,0.809141,0.660974,0.361148,0.609731,0.193777,0.93598,0.658485,0.238823,0.735703,0.364221,0.436575,0.741133,0.211101,0.335159,0.441585,0.00689125,0.600805,0.361908,0.416595,0.872256,0.559083,0.405486,0.283569,0.959186,0.660045,0.535892,0.205894,0.332111,0.531784,0.73444,0.524179,0.337819,0.152188,0.285154,0.500196,0.251422,0.628904,0.485787,0.218112,0.609,0.89683,0.866384,0.757523,0.363933,0.748805,0.374145,0.509586,0.386783,0.357637,0.827772,0.558371,0.994624,0.837486,0.991505,0.568168,0.966468,0.877967,0.897961,0.32116,0.154456,0.694997,0.937504,0.19234,0.37326,0.47566,0.627009,0.0389085,0.916582,0.446506,0.701861,0.555782,0.97136,0.10198,0.0536407,0.567628,0.102308,0.639581,0.580288,0.842083,0.744299,0.0176581,0.242136,0.490742,0.289426,0.197279,0.351619,0.527533,0.0205139,0.633155,0.424337,0.929759,0.917225,0.756079,0.164312,0.205402,0.449463,0.830797,0.691538,0.743425,0.581316,0.398626,0.185886,0.967051,0.532138,0.481192,0.529202,0.828201,0.306383,0.499395,0.909127,0.88728,0.376872,0.888897,0.628252,0.0871255,0.440389,0.184032,0.665041,0.259146,0.935464,0.66899,0.122626,0.181339,0.222493,0.00805515,0.00382924,0.369927,0.0340137,0.294386,0.226806,0.228561,0.464953,0.321442,0.208155,0.984052,0.204353,0.827231,0.539697,0.805691,0.908175,0.968165,0.646855,0.266168,0.917232,0.568314,0.211332,0.167068,0.0610063,0.138161,0.899268,0.521861,0.331659,0.133835,0.851829,0.200507,0.665659,0.257857,0.847691,0.609252,0.584302,0.0273368,0.181177,0.605881,0.100761,0.854953,0.108405,0.742298,0.473535,0.0290091,0.542238,0.730591,0.232656,0.605757,0.780301,0.561853,0.135702,0.649759,0.583098,0.0603103,0.420522,0.161982,0.167508,0.167965,0.747137,0.125861,0.849282,0.0642661,0.765277,0.630524,0.135361,0.979584,0.28723,0.686208,0.34997,0.895587,0.139705,0.729066,0.994365,0.342445,0.256722,0.160476,0.297781,0.522758,0.386032,0.59188,0.366704,0.790306,0.592201,0.692489,0.415686,0.00100261,0.179113,0.216738,0.788653,0.309163,0.264529,0.278053,0.830699,0.164938,0.0120691,0.770402,0.201894,0.0439233,0.673408,0.488361,0.485014,0.440903,0.000515759,0.680528,0.355795,0.691116,0.050864,0.510861,0.79887,0.108496,0.595373,0.810529,0.0612109,0.160351,0.329178,0.0316793,0.600401,0.951367,0.569839,0.310935,0.260324,0.886644,0.391698,0.136664,0.919496,0.715225,0.0646781,0.642292,0.690717,0.841137,0.732342,0.150235,0.0209724,0.693266,0.120565,0.181987,0.682201,0.050037,0.963712,0.899966,0.000921369,0.902084,0.743479,0.848358,0.47687,3.62992e-05,0.723297,0.957485,0.411727,0.712329,0.503845,0.0220556,0.00236648,0.176334,0.529409,0.60085,0.748435,0.136924,0.730051,0.180046,0.162701,0.396942,0.678328,0.263026,0.309033,0.356406,0.567047,0.0388122,0.990601,0.180016,0.92448,0.795286,0.569867,0.0708115,0.815407,0.644435,0.625167,0.34981,0.937668,0.880191,0.628891,0.937,0.288194,0.559191,0.80477,0.860715,0.832466,0.641193,0.753548,0.707195,0.783158,0.947837,0.766821,0.791977,0.729594,0.505719,0.269686,0.944878,0.987297,0.762514,0.0479679,0.130042,0.897328,0.745447,0.145972,0.0472445,0.68461,0.0475401,0.504507,0.523743,0.286523,0.914206,0.000801206,0.5244,0.640547,0.321088,0.0880085,0.584578,0.815646,0.215737,0.150066,0.713293,0.943922,0.014109,0.819046,0.578191,0.606085,0.950508,0.997893,0.198837,0.0768346,0.766327,0.990085,0.485347,0.817713,0.483248,0.529443,0.0433831,0.70556,0.954134,0.541102,0.872318,0.154096,0.886004,0.955546,0.165512,0.772574,0.15723,0.922498,0.6577,0.435545,0.636905,0.235393,0.468218,0.0750698,0.301426,0.484456,0.479268,0.335564,0.772351,0.936138,0.549219,0.986101,0.568049,0.262523,0.0885,0.490355,0.549283,0.506951,0.823459,0.0246276,0.575497,0.75162,0.915854,0.0465218,0.105165,0.213658,0.661355,0.683579,0.607768,0.923757,0.384846,0.949813,0.946554,0.770968,0.105247,0.491229,0.0378522,0.0567397,0.539786,0.479242,0.0166605,0.0612085,0.688734,0.311938,0.230609,0.139117,0.777875,0.466431,0.479898,0.0500613,0.955968,0.0318291,0.626608,0.622033,0.57362,0.746308,0.155428,0.652111,0.572306,0.0362922,0.304508,0.169944,0.736625,0.774348,0.456878,0.198795,0.563341,0.864699,0.202398,0.2055,0.74344,0.784563,0.916087,0.45617,0.7274,0.068862,0.686227,0.136285,0.474779,0.379552,0.0711842,0.805504,0.0702729,0.842068,0.0928778,0.832295,0.687769,0.802399,0.341395,0.991404,0.340595,0.379281,0.796811,0.279994,0.624127,0.0398966,0.330802,0.171665,0.467821,0.78827,0.578633,0.583946,0.195304,0.573486,0.90756,0.575071,0.876068,0.0777978,0.287391,0.868133,0.228753,0.927258,0.895222,0.444112,0.804685,0.788191,0.526479,0.400939,0.564008,0.828642,0.00589001,0.401765,0.644271,0.670274,0.563785,0.335874,0.850375,0.193218,0.107945,0.0816727,0.993669,0.792093,0.0663331,0.484121,0.180358,0.627957,0.52255,0.278176,0.266104,0.394615,0.432751,0.934113,0.863154,0.822841,0.792846,0.301834,0.726893,0.0958474,0.247941,0.974246,0.386175,0.653374,0.424808,0.708534,0.144018,0.330444,0.0870772,0.791183,0.795897,0.259741,0.834912,0.233931,0.420936,0.42969,0.409124,0.577012,0.170964,0.444238,0.144209,0.865522,0.0212629,0.729797,0.780336,0.604299,0.559268,0.244547,0.552927,0.773784,0.407759,0.179735,0.778856,0.822754,0.295103,0.00230122,0.919996,0.574687,0.683178,0.00274062,0.11297,0.0308968,0.832826,0.821826,0.360935,0.9761,0.901029,0.31869,0.485029,0.671953,0.937156,0.54374,0.373712,0.0437494,0.688877,0.861157,0.26541,0.593934,0.702772,0.331311,0.189809,0.449222,0.753089,0.737815,0.966605,0.557329,0.958913,0.130698,0.662412,0.599003,0.652566,0.7446,0.60306,0.589144,0.338876,0.280044,0.2186,0.605069,0.42405,0.260161,0.560777,0.499309,0.784396,0.511282,0.878592,0.781683,0.568786,0.367617,0.151187,0.848814,0.189023,0.0130991,0.680184,0.450737,0.0101515,0.431995,0.177539,0.962123,0.774542,0.0174002,0.144549,0.814062,0.992135,0.882643,0.964111,0.156201,0.872427,0.680983,0.193407,0.67355,0.833505,0.0371928,0.30342,0.428822,0.315415,0.49242,0.160104,0.717305,0.385946,0.845266,0.274668,0.227724,0.208162,0.815812,0.865681,0.129531,0.572148,0.0950099,0.897821,0.326774,0.517222,0.267202,0.0176641,0.0247586,0.757922,0.825532,0.0991983,0.0189582,0.701051,0.0244525,0.345853,0.591803,0.642057,0.52996,0.145456,0.0408903,0.844931,0.883209,0.905998,0.609183,0.993492,0.894066,0.179722,0.315437,0.522841,0.558866,0.386711,0.854473,0.206653,0.397914,0.985402,0.00142497,0.643619,0.85653,0.719004,0.140104,0.377891,0.768748,0.908612,0.0154832,0.440177,0.870548,0.46343,0.278016,0.861402,0.645475,0.86098,0.472775,0.236861,0.561441,0.403135,0.296531,0.190977,0.600859,0.0154264,0.592119,0.839181,0.494961,0.39696,0.219852,0.360722,0.209584,0.603489,0.0519242,0.660369,0.239532,0.18425,0.0923861,0.307145,0.800972,0.95608,0.599554,0.325615,0.511659,0.500654,0.964312,0.365739,0.470325,0.777636,0.612104,0.529608,0.149908,0.823526,0.633816,0.30663,0.953795,0.987711,0.754758,0.363186,0.185608,0.513999,0.672096,0.34683,0.157041,0.725197,0.952404,0.580981,0.363437,0.562594,0.771183,0.857829,0.448541,0.756384,0.301833,0.258212,0.348773,0.588268,0.82458,0.848602,0.531819,0.415671,0.226403,0.0442347,0.826706,0.324466,0.447548,0.373035,0.195947,0.746608,0.158082,0.765593,0.771952,0.637544,0.991494,0.135368,0.184934,0.869229,0.189588,0.803002,0.419632,0.133114,0.756985,0.111493,0.725436,0.596859,0.0893682,0.459584,0.378675,0.210493,0.593387,0.179051,0.033653,0.778913,0.71055,0.201823,0.217258,0.231696,0.103096,0.235555,0.00646186,0.193713,0.461933,0.138908,0.474663,0.0448,0.475672,0.77689,0.56844,0.317423,0.269521,0.806004,0.174401,0.640957,0.798944,0.0536778,0.584001,0.925452,0.808986,0.705749,0.782952,0.733423,0.0918442,0.704277,0.234789,0.543758,0.322617,0.360928,0.406907,0.776485,0.159543,0.168235,0.447189,0.0720601,0.936146,0.309708,0.191832,0.474222,0.82858,0.344035,0.441288,0.914832,0.311524,0.206262,0.565814,0.310267,0.320805,0.651616,0.695484,0.574316,0.133051,0.827888,0.489179,0.730329,0.807155,0.134161,0.688778,0.109814,0.778401,0.595721,0.749334,0.345399,0.601003,0.73583,0.069047,0.257017,0.481201,0.874867,0.62294,0.468799,0.860885,0.4177,0.120374,0.250906,0.129348,0.26501,0.823542,0.929839,0.145592,0.200451,0.760728,0.950227,0.0991634,0.842344,0.205384,0.381355,0.334537,0.00827289,0.0902804,0.935426,0.337715,0.162791,0.804204,0.308962,0.161525,0.465399,0.464438,0.596405,0.330591,0.500895,0.555691,0.0494347,0.575064,0.788107,0.415098,0.779612,0.125441,0.895046,0.42523,0.943704,0.199984,0.188925,0.204031,0.617427,0.527142,0.165313,0.167695,0.852076,0.923269,0.931073,0.586677,0.818404,0.614862,0.200004,0.132668,0.478994,0.07907,0.914163,0.134594,0.0374767,0.0803755,0.1546,0.960588,0.774055,0.0229729,0.423531,0.117045,0.586491,0.66957,0.352764,0.76399,0.529975,0.100542,0.373207,0.548174,0.154567,0.331495,0.620265,0.412171,0.187913,0.565524,0.432864,0.355711,0.471372,0.126439,0.614293,0.796991,0.575056,0.359068,0.0617614,0.197401,0.382461,0.439172,0.571152,0.271199,0.595103,|0.925305,0.0577053,0.118664,0.379525,0.314235,0.573488,0.701486,0.489455,0.7212,0.553574,0.23131,0.313533,0.071977,0.270098,0.315608,0.030957,0.410724,0.922213,0.890187,0.618171,0.485576,0.137751,0.914448,0.897014,0.378643,0.206158,0.195393,0.626559,0.221401,0.928257,0.259877,0.759724,0.681056,0.0669344,0.00482267,0.379266,0.806846,0.519333,0.584635,0.5544,0.639336,0.644901,0.24867,0.503507,0.520909,0.220239,0.981297,0.783056,0.203278,0.0620651,0.109115,0.745164,0.15297,0.492864,0.707786,0.763101,0.331122,0.834055,0.0581853,0.805466,0.112736,0.527119,0.51149,0.647216,0.182306,0.462435,0.366175,0.862298,0.821636,0.720295,0.391308,0.618915,0.35111,0.30762,0.23304,0.0140143,0.723691,0.738763,0.32161,0.376924,0.663199,0.122271,0.892538,0.82348,0.102511,0.344048,0.194898,0.934181,0.28358,0.742709,0.791478,0.183253,0.021098,0.800952,0.983579,0.421811,0.363639,0.056383,0.124051,0.448695,0.855758,0.927501,0.17076,0.751124,0.870202,0.133578,0.518336,0.646834,0.611993,0.739963,0.763534,0.30208,0.532651,0.385966,0.991713,0.0382795,0.73674,0.19993,0.92288,0.345122,0.699216,0.37408,0.851086,0.889561,0.197671,0.19924,0.0286959,0.371226,0.256016,0.760408,0.0441335,0.482103,0.0700973,0.0658213,0.26159,0.757029,0.863132,0.000432253,0.880798,0.784842,0.653966,0.674841,0.997029,0.987014,0.74288,0.65232,0.65137,0.255477,0.574733,0.0465788,0.146978,0.270801,0.250317,0.235871,0.0672771,0.651853,0.703748,0.53536,0.971726,0.41227,0.885868,0.854695,0.736121,0.459935,0.824253,0.821771,0.346484,0.192051,0.56272,0.569033,0.507627,0.905436,0.743577,0.359903,0.468871,0.968636,0.773327,0.488762,0.363633,0.19266,0.274787,0.222255,0.767611,0.0371127,0.65525,0.248194,0.775513,0.908095,0.0895919,0.636943,0.587655,0.245903,0.228322,0.748205,0.730396,0.184112,0.296971,0.807006,0.825224,0.469447,0.976092,0.959277,0.960513,0.403309,0.878283,0.121698,0.969739,0.963448,0.529551,0.806464,0.529908,0.711168,0.880779,0.737516,0.681181,0.0252727,0.779989,0.346922,0.0621517,0.244024,0.666254,0.985097,0.905415,0.216293,0.528473,0.66404,0.0448927,0.641693,0.356219,0.775733,0.755655,0.498808,0.66478,0.78325,0.146921,0.648018,0.815325,0.200286,0.814308,0.363544,0.953715,0.981325,0.0982132,0.843626,0.450346,0.139129,0.721598,0.110499,0.36713,0.76798,0.846906,0.347245,0.502368,0.397868,0.0794268,0.742302,0.965425,0.650179,0.304377,0.248298,0.55538,0.150348,0.632793,0.126016,0.252958,0.14119,0.588427,0.572214,0.65565,0.420473,0.540999,0.866363,0.504274,0.438927,0.00655818,0.784501,0.926493,0.139336,0.663998,0.67653,0.0422858,0.821275,0.878565,0.205698,0.442179,0.748436,0.735988,0.19517,0.0162135,0.934802,0.936814,0.0706838,0.419179,0.347586,0.117692,0.812893,0.413223,0.115591,0.399914,0.318369,0.357006,0.204208,0.743059,0.907361,0.792954,0.346789,0.423028,0.838132,0.718707,0.283971,0.26974,0.360838,0.490793,0.457789,0.337611,0.235906,0.165883,0.845476,0.119901,0.711492,0.535161,0.711962,0.701071,0.234086,0.116417,0.946178,0.13197,0.0330855,0.0571835,0.630851,0.488662,0.00510716,0.423063,0.160788,0.732482,0.232042,0.399207,0.661685,0.699938,0.27528,0.600832,0.722971,0.805342,0.348013,0.252969,0.00152194,0.463334,0.00496346,0.51072,0.642537,0.920082,0.287143,0.855303,0.994747,0.874357,0.0795793,0.218167,0.980113,0.653327,0.651058,0.506738,0.622188,0.356514,0.655214,0.155396,0.282846,0.940012,0.0441321,0.609706,0.6716,0.929129,0.580614,0.563121,0.0346365,0.95573,0.895479,0.0152073,0.378655,0.324551,0.704174,0.453201,0.2388,0.158534,0.7504,0.717076,0.42718,0.424135,0.29943,0.420203,0.449522,0.367593,0.984525,0.051691,0.859866,0.524055,0.935108,0.725557,0.311269,0.248706,0.643192,0.999924,0.0762982,0.107054,0.0859489,0.571085,0.919279,0.909183,0.952886,0.147272,0.00808001,0.196998,0.715598,0.691273,0.790435,0.739025,0.199537,0.518455,0.694257,0.959504,0.161356,0.225793,0.453568,0.610463,0.216609,0.262042,0.231461,0.464056,0.347875,0.323621,0.0323106,0.70325,0.051575,0.706781,0.946273,0.54659,0.389227,0.884566,0.453391,0.772007,0.73009,0.0202299,0.36195,0.25253,0.0425107,0.0941105,0.944325,0.497808,0.13754,0.325635,0.281151,0.621649,0.00546837,0.439197,0.272391,0.0352342,0.245564,0.742461,0.613465,0.219546,0.483249,0.561423,0.901812,0.903664,0.0672316,0.20544,0.824555,0.981234,0.88624,0.454205,0.297155,0.566123,0.825432,0.184648,0.291781,0.34082,0.363224,0.0292527,0.52237,0.540065,0.112847,0.856841,0.985622,0.781816,0.318863,0.443115,0.411214,0.40505,0.826334,0.878234,0.756524,0.184517,0.357805,0.339171,0.721035,0.531303,0.815734,0.622053,0.209286,0.137569,0.785462,0.58206,0.133058,0.455136,0.588064,0.0231449,0.606745,0.462299,0.131498,0.812085,0.542212,0.50686,0.898755,0.766789,0.278989,0.610052,0.751755,0.199834,0.078716,0.99243,0.949911,0.0428695,0.565615,0.787459,0.437853,0.780328,0.035961,0.436272,0.750677,0.569058,0.406507,0.334056,0.204477,0.483084,0.220517,0.7233,0.319026,0.564752,0.491637,0.761558,0.767321,0.00591797,0.162778,0.705961,0.468757,0.301772,0.24876,0.731465,0.642622,0.849302,0.944566,0.889016,0.975351,0.253118,0.995537,0.682323,0.214192,0.0292027,0.959689,0.730856,0.067714,0.466895,0.677893,0.666451,0.809341,0.197352,0.342532,0.853059,0.629065,0.0133942,0.658106,0.981902,0.0047785,0.471494,0.350583,0.161001,0.279762,0.815364,0.884877,0.331232,0.325868,0.457652,0.565598,0.908218,0.00226706,0.434604,0.699969,0.214125,0.17176,0.597089,0.427079,0.934419,0.793952,0.543327,0.183958,0.725363,0.208213,0.148295,0.621473,0.544258,0.933629,0.627351,0.554737,0.639721,0.80131,0.951742,0.0830396,0.0998902,0.944507,0.863629,0.361877,0.0647787,0.483557,0.906977,0.7439,0.107172,0.49007,0.285863,0.455961,0.550685,0.772814,0.747585,0.617376,0.142493,0.496613,0.494362,0.114468,0.971227,0.511555,0.00985134,0.744526,0.0963118,0.0343316,0.730158,0.0349861,0.731242,0.755614,0.839774,0.861337,0.123748,0.295176,0.52728,0.157478,0.23475,0.741724,0.276379,0.1477,0.0619405,0.99453,0.512069,0.460823,0.408855,0.446917,0.580578,0.14919,0.147288,0.865881,0.775945,0.727326,0.552003,0.375544,0.357458,0.470438,0.437666,0.879816,0.888404,0.416966,0.28988,0.1171,0.247935,0.414573,0.224041,0.168689,0.138373,0.196556,0.124632,0.792549,0.173935,0.941025,0.241696,0.575549,0.692961,0.624068,0.0132239,0.846347,0.449318,0.664342,0.152634,0.960763,0.803715,0.706766,0.823518,0.358091,0.854907,0.496935,0.196601,0.367687,0.0351787,0.835348,0.319403,0.306157,0.820878,0.979648,0.69206,0.82149,0.457456,0.372831,0.864945,0.317992,0.76077,0.17804,0.593019,0.739084,0.194725,0.632487,0.905718,0.465814,0.227717,0.84146,0.414162,0.84618,0.52059,0.444431,0.986913,0.899995,0.980549,0.121534,0.301221,0.611492,0.932431,0.948896,0.909364,0.478315,0.819861,0.884192,0.63206,0.193289,0.302927,0.748543,0.0862731,0.974024,0.244538,0.227847,0.651955,0.883129,0.0886511,0.770961,0.0157859,0.415667,0.540386,0.0572761,0.995775,0.664824,0.500081,0.239376,0.888949,0.3304,0.0537139,0.294236,0.554335,0.069863,0.622863,0.198106,0.448053,0.950866,0.249499,0.116431,0.255047,0.270885,0.94736,0.536906,0.360465,0.115553,0.964938,0.424847,0.885661,0.463667,0.47929,0.538738,0.271744,0.974896,0.305144,0.0156922,0.104544,0.419457,0.0272507,0.0827468,0.603808,0.789582,0.70995,0.0632992,0.0464811,0.994159,0.765797,0.646128,0.45846,0.68853,0.29923,0.0138903,0.2352,0.253807,0.0335158,0.529663,0.473976,0.0818446,0.696575,0.00377947,0.466548,0.15551,0.182653,0.706411,0.126462,0.0407839,0.120949,0.956119,0.155102,0.900346,0.902255,0.804302,0.54058,0.248926,0.289219,0.0322503,0.631488,0.102849,0.31295,0.275002,0.465514,0.778543,0.00633413,0.306714,0.191872,0.478836,0.297901,0.000267029,0.109263,0.685831,0.907276,0.341754,0.825979,0.731153,0.541935,0.726672,0.767419,0.902615,0.846658,0.619719,0.350946,0.123823,0.445624,0.442814,0.917892,0.536397,0.674399,0.110431,0.722846,0.0662255,0.0162954,0.715803,0.78723,0.282231,0.137077,0.702493,0.432431,0.154526,0.312921,0.244122,0.863642,0.369653,0.412306,0.745847,0.230361,0.987766,0.129147,0.762704,0.513421,0.354907,0.222119,0.34105,0.451904,0.905947,0.2437,0.488702,0.254898,0.764229,0.652127,0.867401,0.849435,0.0789199,0.678966,0.815484,0.888897,0.251538,0.430385,0.987673,0.347543,0.0739619,0.98963,0.571656,0.136049,0.960106,0.749577,0.734715,0.885654,0.321062,0.467729,0.574029,0.523639,0.54744,0.536387,0.278931,0.845056,0.728146,0.470627,0.22014,0.969101,0.444709,0.165017,0.707464,0.80869,0.624046,0.878564,0.191459,0.838124,0.872822,0.623774,0.628135,0.294144,0.536824,0.653516,0.837806,0.550439,0.387933,0.483273,0.348789,0.222421,0.516202,0.0868306,0.86154,0.958469,0.938137,0.495696,0.992541,0.989304,0.596319,0.144285,0.801534,0.954387,0.196048,0.32174,0.291347,0.00526536,0.920338,0.0869392,0.183559,0.135036,0.736097,0.879487,0.182671,0.20154,0.424659,0.138511,0.440314,0.94074,0.779506,0.655519,0.477127,0.276788,0.251471,0.964037,0.679124,0.0557216,0.795129,0.357806,0.987789,0.669972,0.467254,0.701314,0.0394112,0.987605,0.203313,0.853046,0.887711,0.329073,0.482945,0.801096,0.928443,0.011229,0.405893,0.876837,0.687898,0.559115,0.757537,0.224868,0.142569,0.79801,0.200983,0.666301,0.0367396,0.535153,0.427044,|0.882615,0.0640555,0.586774,0.98839,0.493436,0.00986981,0.348116,0.0182757,0.890212,0.0662765,0.597074,0.225753,0.134064,0.704062,0.462416,0.264291,0.72214,0.375496,0.497218,0.344128,0.626656,0.507819,0.702776,0.722625,0.764783,0.0464614,0.85261,0.820085,0.0284052,0.167811,0.353319,0.712928,0.333453,0.671849,0.220904,0.873447,0.120541,0.544977,0.536911,0.885276,0.231299,0.786449,0.486064,0.437812,0.761941,0.135943,0.905682,0.289502,0.17406,0.868204,0.353177,0.882566,0.403472,0.37829,0.792158,0.34459,0.072561,0.0561986,0.776167,0.553238,0.913172,0.62383,0.0113137,0.944714,0.260152,0.958287,0.41646,0.306042,0.721509,0.244613,0.970631,0.418815,0.863401,0.316649,0.550113,0.212785,0.132065,0.656177,0.174545,0.417502,0.956788,0.236654,0.0735577,0.191819,0.455803,0.368773,0.15725,0.567532,0.583677,0.441244,0.971314,0.785469,0.291541,0.211043,0.78784,0.312103,0.298741,0.176907,0.682404,0.013719,0.982048,0.931715,0.860115,0.596756,0.153717,0.379944,0.716952,0.547036,0.820549,0.983433,0.90233,0.147037,0.245775,0.33734,0.182904,0.974492,0.254208,0.0646234,0.918152,0.0149518,0.751104,0.222522,0.193272,0.177795,0.57461,0.957969,0.957925,0.404257,0.840455,0.744811,0.827852,0.639951,0.847636,0.0877728,0.236018,0.768396,0.339202,0.318745,0.0861043,0.804969,0.48296,0.0852348,0.531111,0.868464,0.383924,0.152576,0.984719,0.519158,0.040979,0.584652,0.325996,0.737479,0.389368,0.667017,0.713774,0.369279,0.781334,0.939623,0.403721,0.212938,0.313178,0.948538,0.187189,0.433363,0.912704,0.471903,0.892472,0.508587,0.956064,0.682116,0.146775,0.217741,0.891502,0.414269,0.366888,0.783777,0.0163025,0.0648528,0.212208,0.121711,0.449836,0.272056,0.810626,0.910471,0.272207,0.748336,0.161087,0.752678,0.815352,0.267424,0.141778,0.756193,0.0136048,0.942595,0.0427535,0.894346,0.441648,0.198009,0.515991,0.0117307,0.948694,0.873137,0.00770932,0.711196,0.0382874,0.300902,0.2812,0.647224,0.180055,0.423899,0.338069,0.682922,0.918094,0.489415,0.182508,0.579967,0.741512,0.446083,0.344082,0.77104,0.267812,0.207811,0.558451,0.00624925,0.836239,0.229926,0.167071,0.0757711,0.546368,0.871011,0.0977032,0.244674,0.0307691,0.114782,0.897645,0.170962,0.624303,0.863141,0.614298,0.1631,0.557561,0.786984,0.398136,0.579678,0.631325,0.305492,0.827638,0.56945,0.312946,0.384015,0.832611,0.899744,0.0348079,0.500564,0.825427,0.908412,0.882441,0.893886,0.357166,0.546065,0.388514,0.640517,0.107547,0.625148,0.162903,0.235293,0.542858,0.681428,0.102086,0.512341,0.0383554,0.349,0.108637,0.407413,0.550431,0.676611,0.165559,0.998077,0.426661,0.293174,0.962917,0.0761822,0.554924,0.512478,0.337098,0.679131,0.42991,0.318293,0.321111,0.0233973,0.946166,0.963227,0.059589,0.841182,0.682537,0.345883,0.479045,0.442262,0.0305586,0.879146,0.148596,0.877305,0.574516,0.646763,0.132904,0.640312,0.520063,0.954321,0.423326,0.589893,0.592314,0.146222,0.0464703,0.707098,0.101785,0.269274,0.357583,0.167819,0.402625,0.621703,0.613306,0.0636276,0.149115,0.125704,0.506523,0.624013,0.850751,0.245132,0.426884,0.236905,0.194966,0.378536,0.886935,0.132507,0.949896,0.920602,0.940418,0.44648,0.739575,0.576978,0.610954,0.847502,0.730662,0.946305,0.456966,0.891086,0.438947,0.401873,0.443877,0.577866,0.372006,0.226918,0.262732,0.588433,0.215732,0.901505,0.279818,0.206637,0.196774,0.37159,0.0269263,0.628981,0.0813305,0.668186,0.0511619,0.554314,0.774685,0.911423,0.0841795,0.0738807,0.516105,0.459927,0.0919347,0.533025,0.087761,0.878574,0.639231,0.264302,0.55113,0.737301,0.433748,0.707832,0.853565,0.237036,0.0899228,0.614891,0.399335,0.0593355,0.117437,0.793244,0.595661,0.914498,0.447262,0.784343,0.305694,0.95496,0.398215,0.585721,0.893205,0.368558,0.740034,0.715195,0.776739,0.325926,0.420261,0.712038,0.993772,0.521309,0.198564,0.328269,0.988255,0.351718,0.889751,0.281105,0.831043,0.346338,0.670585,0.592704,0.728303,0.523192,0.435935,0.176997,0.830272,0.303768,0.0116026,0.422307,0.762401,0.530397,0.728162,0.484191,0.72277,0.0819831,0.847854,0.233205,0.791156,0.873377,0.934902,0.0730071,0.740264,0.787915,0.151556,0.338009,0.387071,0.562795,0.197756,0.849674,0.950406,0.391069,0.438151,0.671085,0.078913,0.901412,0.111825,0.553694,0.435313,0.248861,0.00448281,0.525015,0.611016,0.573872,0.571701,0.139634,0.309678,0.488719,0.717396,0.320002,0.160684,0.69655,0.685306,0.580317,0.30937,0.104641,0.734585,0.389653,0.313883,0.603385,0.172526,0.614535,0.288203,0.932365,0.315551,0.122656,0.826771,0.750107,0.775481,0.527923,0.565735,0.428217,0.0558405,0.255493,0.500979,0.721249,0.674843,0.167048,0.601239,0.577198,0.317276,0.362578,0.552483,0.943681,0.168547,0.471079,0.109152,0.0767233,0.276053,0.0390074,0.821475,0.0555465,0.786214,0.323502,0.0287427,0.970552,0.281206,0.226739,0.553216,0.0927587,0.648159,0.766584,0.489028,0.841641,0.218974,0.213896,0.21673,0.13999,0.612149,0.615064,0.732682,0.248888,0.318342,0.831724,0.222206,0.185801,0.520399,0.0302503,0.726013,0.328916,0.869472,0.996793,0.621378,0.250725,0.582123,0.793131,0.148657,0.651332,0.436849,0.744871,0.109525,0.14567,0.32099,0.559941,0.532691,0.820136,0.0952241,0.999551,0.0657568,0.343302,0.742563,0.308029,0.2313,0.558095,0.315934,0.702897,0.37533,0.351997,0.216647,0.852362,0.55852,0.67501,0.293711,0.128638,0.438068,0.040386,0.390712,0.0515091,0.452715,0.937659,0.938852,0.948026,0.434336,0.468573,0.841766,0.334336,0.93371,0.230559,0.970771,0.425144,0.775391,0.933897,0.860373,0.948562,0.319141,0.727294,0.942006,0.185716,0.443062,0.494463,0.799181,0.205724,0.617502,0.717909,0.125925,0.557761,0.131278,0.866808,0.557509,0.90548,0.764369,0.825461,0.359077,0.902673,0.545765,0.0015794,0.368097,0.876793,0.898305,0.270893,0.960351,0.0801775,0.902348,0.0571698,0.0976611,0.370242,0.550684,0.911418,0.779122,0.722383,0.851802,0.278349,0.314575,0.195511,0.858006,0.623467,0.942449,0.542685,0.608862,0.0950024,0.930785,0.292175,0.740865,0.213229,0.918594,0.58341,0.430293,0.942699,0.221817,0.514115,0.343132,0.567419,0.95357,0.720413,0.377951,0.969251,0.397547,0.877275,0.336917,0.842248,0.264842,0.516891,0.706598,0.235978,0.916369,0.782142,0.509231,0.0422762,0.709154,0.863144,0.754928,0.202556,0.224217,0.334439,0.732503,0.0998263,0.335563,0.47737,0.633654,0.872021,0.332857,0.778812,0.839216,0.731603,0.278579,0.256939,0.694958,0.0934529,0.449582,0.871928,0.329711,0.500423,0.927451,0.267206,0.826972,0.623749,0.733436,0.0165067,0.818367,0.151466,0.950173,0.220125,0.74871,0.590225,0.0743999,0.434364,0.713237,0.544793,0.977529,0.463621,0.0587959,0.80927,0.682047,0.38214,0.59466,0.973618,0.410477,0.502105,0.0631587,0.302012,0.517792,0.121003,0.189306,0.542611,0.104228,0.257784,0.411051,0.0934368,0.0628584,0.716093,0.944696,0.0377063,0.271433,0.429434,0.654608,0.675513,0.309633,0.235463,0.307435,0.501013,0.826523,0.40432,0.750773,0.70263,0.0438192,0.185761,0.436098,0.187336,0.287575,0.0307128,0.489201,0.818115,0.444629,0.89317,0.566181,0.119061,0.802108,0.410243,0.842247,0.830917,0.556276,0.756734,0.403667,0.86329,0.542303,0.74931,0.735799,0.802149,0.676911,0.0519205,0.231926,0.0746687,0.571694,0.725266,0.142171,0.466466,0.52153,0.870634,0.0817323,0.321619,0.388584,0.283698,0.337961,0.390334,0.098877,0.362327,0.327342,0.345759,0.928739,0.600318,0.981135,0.149872,0.480127,0.648285,0.792405,0.951613,0.392009,0.225906,0.204788,0.489369,0.737995,0.0666431,0.820947,0.477349,0.282726,0.724482,0.569189,0.983312,0.612144,0.994676,0.596156,0.142503,0.671435,0.637276,0.822198,0.347481,0.404471,0.945172,0.465729,0.131125,0.651221,0.163808,0.866023,0.122779,0.535584,0.361961,0.742804,0.307631,0.423034,0.397715,0.240334,0.853529,0.83481,0.619719,0.702638,0.865462,0.699489,0.303538,0.779925,0.630582,0.517456,0.0273979,0.529072,0.311043,0.911535,0.855055,0.522217,0.930842,0.665927,0.841397,0.366943,0.129225,0.742549,0.708696,0.805897,0.658251,0.614005,0.938959,0.6086,0.509212,0.246897,0.350941,0.722451,0.932566,0.497275,0.725018,0.699777,0.130477,0.836622,0.694077,0.443879,0.0879565,0.804676,0.308081,0.252646,0.568738,0.895186,0.770322,0.626731,0.870749,0.180023,0.991054,0.741529,0.828888,0.221521,0.466826,0.176474,0.382756,0.584991,0.204763,0.623028,0.667484,0.0313448,0.435625,0.121235,0.43869,0.921336,0.829093,0.314697,0.0653172,0.95581,0.0786167,0.511713,0.49961,0.519131,0.650096,0.746653,0.58329,0.542243,0.235292,0.414094,0.682056,0.478451,0.514725,0.256082,0.785698,0.889968,0.595309,0.401701,0.775081,0.708126,0.713081,0.159607,0.567423,0.176404,0.890568,0.67937,0.10952,0.919452,0.354983,0.528503,0.0296564,0.611691,0.41704,0.405566,0.812051,0.818614,0.611273,0.0570108,0.592356,0.410953,0.936408,0.851844,0.473756,0.795729,0.0973646,0.240351,0.94038,0.0770385,0.773898,0.206835,0.873522,0.816752,0.78167,0.0303769,0.997137,0.668506,0.706562,0.759679,0.0957606,0.71698,0.693299,0.561923,0.381256,0.215094,0.674262,0.86187,0.819871,0.353985,0.140393,0.892188,0.409098,0.850083,0.193842,0.297539,0.197046,0.493535,0.63683,0.763053,0.48675,0.0294765,0.294894,0.827634,0.0881843,0.0275555,0.711362,0.185442,0.168973,0.308891,0.260355,0.200834,0.921825,0.767871,0.0990845,0.0263785,0.290029,0.817498,0.234385,0.540377,0.204125,0.112754,0.514826,0.736289,0.238305,|0.586494,0.503303,0.123657,0.0390237,0.274006,0.671392,0.184342,0.182806,0.194281,0.745794,0.521827,0.395808,0.506511,0.486725,0.189183,0.299702,0.483435,0.72656,0.996126,0.382349,0.447773,0.225103,0.613197,0.394303,0.850471,0.455152,0.854876,0.957291,0.811869,0.275803,0.344313,0.792754,0.876099,0.0642828,0.683233,0.978221,0.169789,0.909424,0.67988,0.711872,0.953319,0.3546,0.466577,0.678887,0.987398,0.0538208,0.118996,0.348332,0.766058,0.417196,0.35346,0.486058,0.777595,0.370805,0.383736,0.895439,0.260338,0.766426,0.971375,0.146251,0.50236,0.33375,0.178553,0.497859,0.818525,0.484077,0.258411,0.0105116,0.0858301,0.518057,0.0105128,0.998193,0.716258,0.574328,0.87399,0.676679,0.873367,0.723856,0.118277,0.604964,0.924639,0.493935,0.876007,0.288499,0.0491092,0.383332,0.331318,0.107771,0.999634,0.741029,0.967341,0.720939,0.843858,0.702212,0.0181658,0.978009,0.739495,0.394,0.415613,0.953907,0.344606,0.747626,0.658683,0.991435,0.897527,0.984738,0.583735,0.844171,0.207356,0.461563,0.123693,0.0177085,0.798855,0.826517,0.113231,0.476899,0.572573,0.788419,0.762528,0.504634,0.926348,0.252275,0.215257,0.485611,0.887996,0.153373,0.550255,0.333621,0.482625,0.855567,0.0451074,0.861326,0.572309,0.749712,0.367688,0.0842079,0.455488,0.062897,0.427648,0.722069,0.951423,0.644898,0.443722,0.111553,0.630215,0.823956,0.347574,0.731067,0.433407,0.0582469,0.989198,0.777518,0.923798,0.241893,0.125855,0.620623,0.132614,0.901479,0.716901,0.188241,0.477341,0.722105,0.607946,0.78052,0.599589,0.398444,0.489081,0.995365,0.101745,0.90011,0.557012,0.627186,0.845253,0.286471,0.461891,0.0116017,0.995645,0.962286,0.498306,0.662466,0.551826,0.644995,0.117497,0.357565,0.29091,0.532866,0.380307,0.223337,0.80212,0.900244,0.137036,0.532966,0.606383,0.571073,0.176276,0.914564,0.241727,0.395133,0.337996,0.814466,0.794052,0.161388,0.769411,0.149453,0.797894,0.859073,0.35871,0.831457,0.82061,0.809244,0.662691,0.804403,0.872078,0.943759,0.428846,0.521574,0.584767,0.383,0.237408,0.769644,0.592907,0.520019,0.935906,0.779268,0.111358,0.193519,0.77678,0.745162,0.868018,0.124399,0.236937,0.396021,0.30272,0.73398,0.717232,0.444338,0.528234,0.561615,0.116996,0.395492,0.860102,0.281769,0.370804,0.13944,0.994498,0.629353,0.204368,0.999904,0.563808,0.401193,0.703481,0.146574,0.150677,0.421466,0.179914,0.867795,0.482382,0.579958,0.657085,0.515697,0.393617,0.309659,0.455182,0.259466,0.0234176,0.0259673,0.124701,0.463602,0.967379,0.60038,0.898826,0.913875,0.383413,0.60032,0.857969,0.0869048,0.520355,0.381238,0.763708,0.29367,0.657223,0.855032,0.500657,0.984598,0.760811,0.551635,0.137735,0.0620542,0.30323,0.124437,0.401305,0.108812,0.147863,0.787775,0.496692,0.755879,0.181442,0.147486,0.806485,0.464585,0.894099,0.877616,0.910858,0.753825,0.354762,0.315821,0.420978,0.736974,0.218743,0.341731,0.375012,0.717972,0.202571,0.926625,0.855427,0.579026,0.338298,0.91198,0.300299,0.110869,0.34928,0.663148,0.36233,0.633349,0.392899,0.256568,0.134815,0.379679,0.639241,0.694049,0.727794,0.627803,0.558944,0.131404,0.84191,0.124646,0.670814,0.0813763,0.134546,0.619868,0.736424,0.485828,0.751206,0.321895,0.468111,0.42564,0.652881,0.782793,0.273585,0.328224,0.101553,0.153248,0.281351,0.553154,0.418219,0.201741,0.412571,0.371932,0.342735,0.83765,0.0363914,0.259307,0.224333,0.0535746,0.741987,0.830847,0.982893,0.265004,0.966875,0.595988,0.143353,0.853435,0.0853509,0.634982,0.805503,0.973553,0.616028,0.769952,0.035794,0.967053,0.97878,0.3275,0.972631,0.952317,0.228135,0.863751,0.253129,0.514166,0.676384,0.704382,0.569623,0.139078,0.868934,0.697098,0.968201,0.763132,0.00434852,0.451791,0.434091,0.515298,0.334607,0.646108,0.695937,0.845784,0.393331,0.940638,0.177555,0.292846,0.0117447,0.288318,0.977114,0.76319,0.151806,0.124095,0.989891,0.801441,0.789798,0.104137,0.0989903,0.469159,0.699147,0.104594,0.290345,0.911665,0.126824,0.381521,0.742157,0.733332,0.897532,0.995645,0.545006,0.104026,0.777809,0.400891,0.2449,0.532273,0.634109,0.751946,0.886133,0.691085,0.591273,0.690511,0.26113,0.306919,0.454935,0.182653,0.876937,0.974092,0.0939372,0.991973,0.196086,0.0124091,0.811529,0.704288,0.377655,0.508949,0.0453411,0.908148,0.984332,0.406017,0.289583,0.766538,0.105908,0.336525,0.396767,0.0620288,0.573245,0.420241,0.314284,0.40925,0.375849,0.799345,0.343737,0.154515,0.620071,0.624553,0.353411,0.34211,0.176702,0.968229,0.0355206,0.333722,0.88478,0.609381,0.0838256,0.347273,0.225718,0.95772,0.126962,0.262948,0.169749,0.0228633,0.173982,0.785405,0.805079,0.566526,0.6303,0.457031,0.756218,0.993365,0.471244,0.838382,0.780842,0.961846,0.415124,0.357737,0.408236,0.00881636,0.0472801,0.283487,0.892287,0.753497,0.338279,0.5352,0.799922,0.506201,0.196473,0.785962,0.768578,0.817866,0.372881,0.119444,0.21069,0.740883,0.300012,0.0949441,0.989439,0.428689,0.424502,0.387789,0.210216,0.870775,0.492137,0.750283,0.438599,0.331388,0.801313,0.317826,0.363448,0.393144,0.49813,0.516155,0.317895,0.592092,0.0843064,0.111526,0.260722,0.781062,0.583409,0.641327,0.612285,0.637962,0.0918942,0.2773,0.660332,0.472601,0.292866,0.11575,0.73956,0.447991,0.724457,0.286301,0.267812,0.173662,0.428591,0.197588,0.624764,0.979337,0.192526,0.888303,0.618777,0.463979,0.727656,0.0473298,0.74594,0.553947,0.105401,0.987455,0.969807,0.303354,0.635775,0.351453,0.132044,0.778542,0.756763,0.920611,0.154189,0.88369,0.339782,0.307231,0.938519,0.0860292,0.859672,0.511877,0.858571,0.958173,0.591154,0.808949,0.355758,0.486938,0.186989,0.343261,0.858203,0.717363,0.737702,0.74436,0.142157,0.387466,0.581215,0.602,0.446243,0.290734,0.112231,0.994538,0.140319,0.44862,0.687639,0.405515,0.763128,0.555972,0.610649,0.991588,0.402721,0.787447,0.0625591,0.593012,0.966228,0.463416,0.990333,0.828241,0.812206,0.975951,0.397032,0.5195,0.270825,0.659887,0.89495,0.604845,0.0263019,0.721313,0.357147,0.0844389,0.606189,0.162722,0.423218,0.951012,0.764063,0.931818,0.0679213,0.408265,0.800367,0.195458,0.389189,0.15241,0.048329,0.681519,0.916725,0.947472,0.520501,0.795774,0.122181,0.111956,0.893355,0.0864066,0.971178,0.841999,0.752968,0.750681,0.437122,0.931652,0.385293,0.468652,0.154812,0.420004,0.686026,0.883184,0.0827659,0.683188,0.180029,0.805778,0.0838741,0.393524,0.0615361,0.89835,0.19967,0.567927,0.965069,0.952985,0.488273,0.576997,0.893707,0.709907,0.649284,0.0462038,0.805,0.916955,0.821032,0.931761,0.360091,0.646117,0.518424,0.327365,0.941533,0.0302262,0.657444,0.952094,0.371148,0.555473,0.806469,0.0121977,0.696935,0.555194,0.175085,0.545412,0.444927,0.861064,0.235437,0.947721,0.172271,0.498975,0.536226,0.612503,0.620227,0.610289,0.766372,0.15292,0.313306,0.131197,0.812735,0.762833,0.285493,0.828722,0.905934,0.899112,0.52606,0.787241,0.518843,0.600927,0.740175,0.219597,0.237081,0.508028,0.068041,0.53198,0.118339,0.228562,0.647501,0.0276209,0.935752,0.066792,0.544197,0.697351,0.503299,0.0351135,0.347356,0.0376085,0.207949,0.190976,0.704946,0.355969,0.633789,0.0253901,0.554992,0.109994,0.291616,0.36153,0.279423,0.259876,0.942741,0.851181,0.612606,0.270767,0.0654421,0.545112,0.931142,0.101975,0.763983,0.965031,0.896363,0.624766,0.919166,0.917472,0.484058,0.953722,0.734751,0.125784,0.577515,0.639936,0.435391,0.998561,0.181357,0.957982,0.626064,0.412978,0.973288,0.355896,0.330788,0.859983,0.328562,0.968143,0.986495,0.99931,0.491471,0.285988,0.510881,0.689807,0.547185,0.0131524,0.229339,0.423654,0.614065,0.803453,0.786741,0.00418752,0.282772,0.15679,0.428659,0.510826,0.51086,0.543963,0.576895,0.0113224,0.612003,0.376093,0.669087,0.211868,0.743118,0.90547,0.661009,0.0277629,0.54447,0.922805,0.980359,0.69402,0.841214,0.0601616,0.072953,0.597119,0.811948,0.241757,0.212502,0.8582,0.0739638,0.719026,0.121983,0.923121,0.405592,0.148194,0.0021953,0.596728,0.0649815,0.72703,0.515152,0.171826,0.552294,0.131439,0.147409,0.462621,0.215718,0.642978,0.0636342,0.239274,0.186495,0.310256,0.0702885,0.454853,0.199227,0.890175,0.266103,0.584474,0.617964,0.887495,0.611424,0.710972,0.681135,0.0606312,0.278609,0.911031,0.255455,0.389813,0.703428,0.0842491,0.815102,0.874741,0.535458,0.345491,0.146189,0.501467,0.109915,0.325891,0.80674,0.0522357,0.311214,0.634663,0.19705,0.433378,0.84921,0.102815,0.841127,0.552416,0.216488,0.7751,0.0881796,0.748674,0.476879,0.9869,0.836263,0.212694,0.633412,0.650212,0.0175814,0.567717,0.0314155,0.209847,0.747636,0.794718,0.672875,0.379231,0.0484688,0.909912,0.871617,0.726447,0.282834,0.90382,0.834136,0.558035,0.944114,0.962779,0.0138443,0.666025,0.509366,0.347993,0.593509,0.581416,0.394318,0.332151,0.234536,0.0776021,0.835137,0.843673,0.0608729,0.851062,0.580787,0.198584,0.618982,0.789031,0.0709959,0.227663,0.746034,0.757053,0.0489671,0.65442,0.0749446,0.182166,0.952951,0.0651745,0.470358,0.500394,0.473087,0.647541,0.551825,0.742651,0.63213,0.225189,0.694268,0.383437,0.264893,0.240148,0.902169,0.973877,0.524642,0.619342,0.333757,0.376827,0.573566,0.185412,0.020711,0.401353,0.25956,0.346293,0.672328,0.59073,0.534864,0.0490453,0.631878,0.167957,0.257329,0.463184,0.531707,0.182106,0.685893,0.986581,0.758864,0.929209,0.402976,0.0243289,0.75139,0.375602,0.847218,0.0138345,|0.165103,0.427884,0.0277691,0.529931,0.103832,0.0661204,0.125621,0.643162,0.490878,0.719398,0.848305,0.267959,0.631652,0.708818,0.37555,0.288425,0.310024,0.232359,0.127279,0.984782,0.676616,0.847887,0.0551876,0.855776,0.766601,0.871458,0.769123,0.560469,0.697492,0.503565,0.457376,0.145891,0.140253,0.898191,0.818697,0.159781,0.107135,0.417819,0.803008,0.884643,0.758353,0.590378,0.978374,0.825476,0.954629,0.650788,0.859812,0.621446,0.308194,0.223206,0.975098,0.529795,0.396973,0.447996,0.0123097,0.652835,0.0892119,0.159647,0.0866115,0.303061,0.78189,0.867917,0.579144,0.403006,0.0174143,0.653705,0.389977,0.812927,0.92654,0.724587,0.221511,0.055321,0.2945,0.560917,0.091942,0.143215,0.239396,0.401449,0.0554516,0.487954,0.162164,0.857742,0.458713,0.801806,0.126714,0.163377,0.791997,0.0033322,0.750454,0.75282,0.844229,0.825583,0.880788,0.464577,0.0343412,0.313385,0.695159,0.426815,0.673253,0.774022,0.201456,0.516679,0.442588,0.0274446,0.661533,0.142458,0.620882,0.134567,0.272733,0.648352,0.672039,0.231279,0.733639,0.131321,0.662928,0.93988,0.254932,0.468857,0.350993,0.100716,0.904017,0.726413,0.902893,0.701198,0.0155542,0.369137,0.522648,0.0110273,0.0844894,0.90005,0.114722,0.303219,0.797733,0.923645,0.481203,0.498058,0.957689,0.473078,0.777109,0.173132,0.0533525,0.078802,0.246313,0.383326,0.757646,0.0933185,0.984105,0.610153,0.439382,0.256078,0.897651,0.318543,0.226603,0.399133,0.680565,0.771786,0.0939339,0.644599,0.809314,0.728906,0.455787,0.197096,0.886978,0.248047,0.842482,0.581472,0.740917,0.33748,0.0110683,0.719988,0.301347,0.394578,0.84452,0.79435,0.652805,0.431445,0.335058,0.444133,0.78614,0.948283,0.248289,0.883472,0.202916,0.553709,0.962443,0.36949,0.588579,0.142546,0.341503,0.807396,0.229803,0.652019,0.199273,0.291833,0.817904,0.329861,0.607721,0.857721,0.617814,0.528534,0.739592,0.422108,0.496183,0.973883,0.898708,0.422526,0.12518,0.579436,0.446094,0.777417,0.0653917,0.838402,0.938606,0.689361,0.623863,0.449039,0.358107,0.728609,0.959418,0.510605,0.86861,0.394991,0.502252,0.246,0.543999,0.236723,0.153817,0.879517,0.995936,0.299486,0.192707,0.648522,0.252245,0.140294,0.730299,0.0260461,0.710942,0.877972,0.880819,0.43645,0.127299,0.225877,0.925714,0.0166098,0.763999,0.176237,0.614075,0.921792,0.637917,0.0833861,0.334715,0.443578,0.988919,0.811278,0.904659,0.971517,0.915462,0.83498,0.0362819,0.408116,0.697827,0.0688954,0.96046,0.224529,0.0846865,0.893484,0.994861,0.115585,0.44374,0.480336,0.840846,0.255897,0.642872,0.50406,0.405515,0.0700507,0.505935,0.226393,0.742288,0.360067,0.591589,0.764411,0.237605,0.931833,0.526788,0.817843,0.511656,0.843672,0.45841,0.212741,0.660893,0.68938,0.827569,0.0249846,0.424483,0.905597,0.587262,0.263844,0.622301,0.340375,0.364566,0.44539,0.0793551,0.107558,0.537062,0.497098,0.052683,0.70344,0.444588,0.399797,0.395699,0.972593,0.334432,0.467422,0.229809,0.535435,0.804713,0.803212,0.937119,0.846985,0.778101,0.804156,0.0423517,0.764407,0.307027,0.295725,0.818824,0.111001,0.459475,0.651008,0.792553,0.937636,0.20059,0.532837,0.158962,0.55923,0.883954,0.526368,0.175515,0.268302,0.707172,0.547835,0.142963,0.927239,0.58052,0.180272,0.489602,0.812638,0.253854,0.64057,0.149656,0.140681,0.834715,0.507795,0.878462,0.622681,0.917864,0.0941572,0.151261,0.355896,0.511395,0.419065,0.713937,0.867123,0.656211,0.981926,0.84257,0.691018,0.627578,0.996616,0.852964,0.468618,0.510679,0.492365,0.424454,0.625638,0.204734,0.294569,0.306764,0.461879,0.119439,0.112605,0.0210457,0.166515,0.784813,0.922946,0.153937,0.224668,0.322539,0.323448,0.050867,0.988131,0.419023,0.378592,0.926296,0.278964,0.843453,0.0545792,0.247555,0.546502,0.831433,0.709539,0.311677,0.780592,0.859115,0.680201,0.951442,0.816289,0.827825,0.242837,0.273092,0.111284,0.548567,0.994558,0.0497566,0.0621826,0.0430759,0.508576,0.341752,0.55611,0.358355,0.353143,0.562656,0.0548539,0.49791,0.667731,0.47562,0.65503,0.611786,0.486237,0.575388,0.0360551,0.306761,0.766621,0.665056,0.512072,0.911185,0.671853,0.819538,0.355002,0.133137,0.52946,0.09634,0.866523,0.801465,0.00143594,0.481577,0.450379,0.902516,0.615092,0.77761,0.207789,0.526445,0.906027,0.1269,0.515736,0.214303,0.0241697,0.735373,0.693987,0.0129768,0.0406868,0.349559,0.548032,0.450561,0.877534,0.572209,0.377502,0.696651,0.565432,0.259207,0.229706,0.425393,0.857107,0.889168,0.359704,0.874182,0.971175,0.822778,0.341414,0.544708,0.0684452,0.00345337,0.0980544,0.936024,0.097916,0.530195,0.950603,0.602688,0.719114,0.836775,0.535379,0.857433,0.287232,0.175156,0.721406,0.255526,0.797389,0.427678,0.589249,0.267284,0.582849,0.959511,0.711983,0.867982,0.42856,0.261122,0.742392,0.462498,0.584487,0.804129,0.463052,0.459398,0.494852,0.245832,0.882185,0.896206,0.236815,0.324,0.191991,0.035719,0.752807,0.241989,0.00916082,0.880621,0.993673,0.124167,0.4887,0.111202,0.163779,0.401339,0.731272,0.348995,0.0558345,0.056132,0.150563,0.772888,0.136234,0.933117,0.680891,0.482957,0.730743,0.225481,0.447978,0.303757,0.422986,0.910463,0.0176563,0.730471,0.559568,0.544397,0.764482,0.352258,0.605428,0.63595,0.496575,0.927608,0.602787,0.225424,0.795777,0.594802,0.816445,0.0429372,0.936462,0.985533,0.299864,0.871273,0.248291,0.488706,0.260091,0.784507,0.419437,0.444793,0.179145,0.714399,0.965183,0.230135,0.852073,0.90574,0.357308,0.0976278,0.315101,0.689597,0.780497,0.304062,0.0646349,0.835146,0.972347,0.872857,0.00186139,0.792617,0.0889876,0.823745,0.846239,0.209941,0.794058,0.162745,0.645302,0.0931244,0.179178,0.329616,0.445515,0.723226,0.110733,0.262793,0.801742,0.00719684,0.778327,0.412392,0.101733,0.991104,0.596932,0.114543,0.101799,0.920373,0.182114,0.358017,0.871771,0.188321,0.354473,0.992578,0.560943,0.169932,0.179402,0.360063,0.770548,0.515331,0.602051,0.593447,0.698523,0.484054,0.695449,0.201704,0.0411472,0.913303,0.153496,0.568319,0.156571,0.922267,0.26156,0.998414,0.232054,0.691855,0.707252,0.138161,0.957955,0.115562,0.936446,0.303761,0.506374,0.829495,0.360777,0.34626,0.0408373,0.746198,0.0192604,0.7802,0.337329,0.5993,0.653779,0.340395,0.317543,0.740731,0.505449,0.216781,0.056685,0.0363536,0.791249,0.949899,0.721397,0.0329424,0.861148,0.46084,0.449047,0.858711,0.287718,0.0455735,0.937178,0.66725,0.00317973,0.605417,0.132852,0.151108,0.0302464,0.452627,0.726042,0.479791,0.404566,0.689779,0.325464,0.630846,0.532869,0.462631,0.981515,0.692898,0.703688,0.301965,0.885044,0.336629,0.926638,0.908763,0.0412667,0.562347,0.654142,0.0316301,0.153111,0.728281,0.3475,0.0982112,0.771208,0.712002,0.340115,0.386208,0.927491,0.680759,0.207558,0.808016,0.765801,0.553382,0.563755,0.718125,0.371238,0.510371,0.532552,0.576729,0.868109,0.411577,0.0618623,0.805846,0.640654,0.370606,0.0255135,0.366322,0.259845,0.315336,0.831536,0.11592,0.889018,0.837391,0.930451,0.5564,0.957879,0.503661,0.068684,0.282503,0.238812,0.870919,0.853628,0.180893,0.105444,0.713889,0.0681386,0.33209,0.80706,0.448513,0.502298,0.397857,0.566742,0.690436,0.824704,0.373174,0.0338128,0.991508,0.581808,0.482434,0.829046,0.152956,0.382972,0.733105,0.97167,0.662204,0.91301,0.347039,0.477159,0.599943,0.189621,0.797728,0.856633,0.793632,0.843893,0.218435,0.272662,0.83237,0.0542106,0.318712,0.423425,0.0946289,0.835003,0.00341803,0.430252,0.868792,0.01707,0.866785,0.479818,0.320392,0.501843,0.656664,0.532695,0.761641,0.110579,0.159303,0.27946,0.842958,0.619359,0.614729,0.582146,0.377585,0.145166,0.700697,0.871542,0.0943743,0.999314,0.665132,0.415665,0.260268,0.483481,0.603216,0.0317051,0.803368,0.919446,0.304591,0.117729,0.17181,0.833846,0.7149,0.242975,0.383666,0.346977,0.933689,0.529719,0.518833,0.184709,0.36286,0.473232,0.0679855,0.0289518,0.963692,0.457513,0.0871655,0.0586119,0.68064,0.812054,0.572883,0.481414,0.240992,0.246556,0.16284,0.539942,0.809613,0.944199,0.982794,0.69686,0.0776974,0.0435697,0.261803,0.0856112,0.497501,0.313746,0.964013,0.826639,0.483311,0.964282,0.918364,0.163857,0.0882385,0.31722,0.220399,0.593866,0.382315,0.471245,0.135434,0.268703,0.19636,0.160235,0.0618301,0.202244,0.622252,0.406038,0.180621,0.0516713,0.0658588,0.220376,0.0346678,0.417157,0.235675,0.946096,0.676113,0.884362,0.0836654,0.630413,0.847164,0.494272,0.148362,0.492978,0.987508,0.185401,0.826613,0.167272,0.00203484,0.579088,0.967328,0.0557438,0.548774,0.756664,0.750859,0.407964,0.330903,0.490363,0.297429,0.769494,0.8117,0.545543,0.840316,0.287385,0.834233,0.395493,0.113669,0.202575,0.623033,0.128043,0.687059,0.859478,0.481407,0.388518,0.509192,0.77296,0.12433,0.390735,0.0951601,0.679065,0.127278,0.645644,0.963136,0.798293,0.138516,0.539474,0.0120334,0.210956,0.168421,0.8322,0.420099,0.658151,0.976717,0.782683,0.909146,0.451265,0.432661,0.753139,0.592027,0.667252,0.00503874,0.880121,0.69659,0.950052,0.0186037,0.445317,0.302798,0.267954,0.308605,0.440445,0.584233,0.355886,0.0775791,0.00876403,0.0917367,0.0646559,0.796549,0.0237212,0.358902,0.983366,0.666064,0.690076,0.491491,0.392039,0.639912,0.242102,0.501935,0.467777,0.0313503,0.937521,0.791422,0.10254,0.595653,0.796675,0.0925543,0.245632,0.76623,0.588684,0.323853,0.370856,0.481795,0.946665,0.247099,0.85624,0.817262,0.997642,0.961473,0.682207,0.829937,0.0533723,|0.106235,0.235651,0.240418,0.239978,0.770665,0.990863,0.855226,0.804952,0.245111,0.518323,0.790366,0.940087,0.407741,0.0779273,0.330128,0.943958,0.843552,0.61061,0.417937,0.744755,0.175822,0.542901,0.688429,0.375203,0.030956,0.305533,0.265236,0.226667,0.353039,0.235195,0.557016,0.219704,0.00233692,0.603332,0.804763,0.906687,0.768196,0.894867,0.802455,0.168384,0.303821,0.221314,0.206185,0.680056,0.431983,0.870147,0.013932,0.274576,0.135404,0.653381,0.383964,0.491181,0.24822,0.890096,0.661073,0.735876,0.0827538,0.585533,0.210882,0.653248,0.186373,0.436522,0.59152,0.355413,0.661718,0.824144,0.439367,0.197212,0.722589,0.466681,0.737895,0.406605,0.707674,0.624402,0.911103,0.419003,0.764502,0.73408,0.0427431,0.845943,0.717262,0.642115,0.432241,0.166207,0.555287,0.0191597,0.170181,0.502966,0.841906,0.294507,0.788234,0.209935,0.528222,0.828861,0.0660312,0.501249,0.185911,0.235409,0.583907,0.578504,0.950954,0.988159,0.839807,0.540256,0.81448,0.54278,0.160976,0.952516,0.349599,0.615202,0.371895,0.167034,0.323526,0.543863,0.686215,0.327499,0.105391,0.744406,0.0618653,0.351253,0.156489,0.372621,0.269267,0.852197,0.719037,0.143099,0.0906737,0.276866,0.753343,0.937119,0.45111,0.780561,0.959914,0.794931,0.0390711,0.902687,0.189351,0.649802,0.269145,0.555991,0.424862,0.0102484,0.647347,0.189667,0.287446,0.488693,0.272964,0.829735,0.370692,0.472228,0.990112,0.611161,0.554289,0.359494,0.728119,0.705536,0.279459,0.319009,0.142364,0.248214,0.409904,0.536374,0.855895,0.616268,0.180282,0.718739,0.474265,0.277239,0.46064,0.576371,0.736874,0.455653,0.531181,0.335295,0.0711348,0.981011,0.586024,0.909651,0.438689,0.308543,0.117545,0.134371,0.725424,0.294373,0.638919,0.175467,0.0741323,0.369196,0.695932,0.770907,0.207693,0.836591,0.924703,0.967372,0.532346,0.881281,0.146264,0.410723,0.843068,0.2375,0.119124,0.63372,0.64863,0.335563,0.169754,0.959602,0.47264,0.571034,0.144105,0.170589,0.450541,0.173642,0.387561,0.96169,0.326022,0.301641,0.176425,0.175531,0.963245,0.606537,0.689454,0.673832,0.804758,0.275093,0.838515,0.818135,0.195099,0.741922,0.807031,0.630111,0.0829246,0.0298476,0.184781,0.0149553,0.525235,0.669657,0.614848,0.983555,0.26464,0.615603,0.228953,0.778907,0.0937382,0.0975628,0.533438,0.133828,0.173936,0.352137,0.610379,0.872465,0.991145,0.858447,0.890986,0.235017,0.0361868,0.165394,0.918392,0.573472,0.476195,0.997985,0.0724267,0.837923,0.705935,0.121107,0.925438,0.49376,0.324784,0.057856,0.917063,0.640746,0.457856,0.36276,0.0331075,0.836574,0.230076,0.504124,0.013181,0.545699,0.575751,0.729508,0.692401,0.0915359,0.225185,0.528906,0.817778,0.864673,0.694083,0.978705,0.557785,0.770768,0.548499,0.498037,0.0432231,0.187986,0.56183,0.821834,0.999633,0.274182,0.578837,0.335379,0.512961,0.892697,0.915493,0.248668,0.873877,0.914501,0.983912,0.46695,0.740318,0.79867,0.482675,0.711317,0.0779509,0.00363606,0.271375,0.414913,0.857354,0.713368,0.583832,0.540989,0.00953299,0.337456,0.941823,0.205282,0.454811,0.272689,0.643627,0.72344,0.782504,0.169987,0.485909,0.0916086,0.390215,0.00709099,0.232629,0.475443,0.834366,0.906182,0.540014,0.63757,0.391038,0.0289234,0.956845,0.0183956,0.615739,0.724208,0.117783,0.160866,0.371104,0.688403,0.95751,0.582315,0.08906,0.072058,0.869139,0.98537,0.554126,0.101007,0.301133,0.807951,0.909588,0.434742,0.608106,0.212582,0.309285,0.508411,0.841116,0.89876,0.483437,0.299375,0.317865,0.19261,0.274307,0.261597,0.702123,0.323181,0.0695381,0.956506,0.572556,0.224896,0.825149,0.831664,0.840134,0.010412,0.308421,0.807826,0.0953063,0.388319,0.103306,0.582401,0.142983,0.277758,0.663943,0.41682,0.214495,0.71916,0.474189,0.44538,0.995033,0.123958,0.673036,0.0234606,0.507574,0.242979,0.873778,0.793509,0.0780501,0.580062,0.650522,0.54449,0.57056,0.219422,0.340101,0.0206533,0.159149,0.49787,0.963039,0.565332,0.107173,0.260547,0.0593662,0.912811,0.718255,0.447698,0.976727,0.787492,0.866999,0.454275,0.552724,0.650678,0.627546,0.844616,0.73646,0.174888,0.628845,0.844704,0.172267,0.698253,0.861282,0.635104,0.364262,0.281627,0.978115,0.856658,0.656059,0.907577,0.60317,0.214616,0.126154,0.966061,0.750134,0.796663,0.959782,0.326127,0.638709,0.0116718,0.273226,0.829332,0.878113,0.630197,0.410839,0.551492,0.886302,0.764966,0.898751,0.756019,0.618677,0.486582,0.0618792,0.367208,0.219744,0.403904,0.999047,0.529695,0.299192,0.430111,0.0814423,0.878628,0.543271,0.150886,0.217351,0.0727827,0.941305,0.312437,0.751052,0.728736,0.130273,0.900943,0.657412,0.134307,0.753101,0.169387,0.394109,0.133498,0.427896,0.781772,0.500584,0.98358,0.412916,0.65598,0.70499,0.217375,0.295546,0.718765,0.477458,0.662169,0.504933,0.412408,0.737643,0.0716674,0.690058,0.40954,0.102864,0.0140604,0.754772,0.600195,0.576614,0.669969,0.487764,0.790745,0.988137,0.893633,0.575202,0.582642,0.640263,0.13636,0.643029,0.111295,0.191661,0.965043,0.275185,0.830527,0.0609517,0.310523,0.472118,0.66734,0.335139,0.706964,0.698351,0.807388,0.961316,0.0153307,0.60675,0.49104,0.969502,0.356622,0.332344,0.506518,0.0349613,0.813206,0.998436,0.367546,0.259348,0.524155,0.721894,0.0278844,0.399339,0.86793,0.13495,0.510351,0.6398,0.0852089,0.409137,0.876848,0.820987,0.719914,0.561583,0.852401,0.935315,0.487032,0.709346,0.0982988,0.951042,0.0609308,0.0565159,0.43581,0.146921,0.925449,0.262729,0.518172,0.929605,0.967302,0.352353,0.213589,0.164003,0.0163208,0.81945,0.549139,0.511742,0.761049,0.116604,0.858328,0.715541,0.121521,0.567278,0.0985388,0.794874,0.995097,0.424527,0.141035,0.568875,0.672641,0.68963,0.798701,0.214015,0.167783,0.0927628,0.323461,0.800438,0.884076,0.625686,0.696015,0.608554,0.851076,0.148191,0.877772,0.945693,0.496555,0.499556,0.315727,0.331425,0.565839,0.291069,0.80775,0.465992,0.634798,0.206793,0.558975,0.546847,0.268437,0.396968,0.320017,0.61426,0.688064,0.367273,0.605719,0.323711,0.479486,0.244824,0.892945,0.940954,0.726833,0.147367,0.417495,0.691406,0.846489,0.74846,0.580492,0.654281,0.889389,0.635195,0.211282,0.446429,0.575393,0.47257,0.606053,0.564794,0.93948,0.193415,0.33692,0.767178,0.929023,0.454631,0.113179,0.133478,0.826153,0.251081,0.363433,0.347125,0.194247,0.132985,0.81279,0.635064,0.457924,0.763056,0.867711,0.817844,0.500022,0.085126,0.988831,0.284668,0.987253,0.263955,0.65531,0.256662,0.451507,0.638866,0.296925,0.257057,0.949483,0.336406,0.183121,0.803136,0.538181,0.18188,0.639789,0.90721,0.450489,0.406191,0.685655,0.198704,0.313376,0.422047,0.719846,0.984536,0.258976,0.452248,0.132061,0.30094,0.12305,0.0644473,0.772305,0.624859,0.0763441,0.143658,0.394903,0.110537,0.316169,0.931469,0.73835,0.78782,0.0945418,0.362088,0.460709,0.190279,0.230487,0.705089,0.76504,0.184313,0.180911,0.419185,0.592765,0.0384375,0.663099,0.44844,0.24887,0.921619,0.55108,0.805393,0.279051,0.879145,0.0455605,0.778246,0.791695,0.666404,0.219406,0.848248,0.319294,0.0430763,0.921595,0.977292,0.183332,0.0521513,0.314882,0.335176,0.728568,0.284498,0.76707,0.00833225,0.736784,0.690576,0.778821,0.730576,0.652499,0.717312,0.287025,0.306949,0.700885,0.0133315,0.611679,0.544071,0.988568,0.339083,0.218389,0.792003,0.94336,0.479446,0.517012,0.717379,0.718084,0.948612,0.592909,0.0589083,0.480009,0.589829,0.885125,0.523116,0.793159,0.355835,0.056177,0.212121,0.390831,0.97508,0.92028,0.415465,0.806147,0.493897,0.844032,0.642049,0.702462,0.925871,0.725275,0.151051,0.399664,0.746427,0.950599,0.226499,0.195818,0.25486,0.271015,0.757194,0.662195,0.723678,0.637686,0.248112,0.363365,0.71053,0.350985,0.86849,0.754254,0.518519,0.75018,0.448351,0.825085,0.91335,0.000193059,0.089128,0.634843,0.970297,0.144262,0.718348,0.150794,0.948377,0.765542,0.561129,0.397813,0.336542,0.0980341,0.969689,0.707906,0.0108433,0.757446,0.921333,0.30237,0.453097,0.409721,0.651946,0.45307,0.985045,0.389443,0.0643151,0.274602,0.610767,0.151089,0.482662,0.106192,0.815765,0.442282,0.883488,0.891827,0.350071,0.902551,0.513405,0.288335,0.950961,0.000849664,0.0494247,0.376429,0.764152,0.643765,0.404954,0.742091,0.622607,0.329887,0.484374,0.859753,0.792251,0.387044,0.947011,0.952981,0.0593209,0.00119418,0.818555,0.337674,0.691045,0.0817901,0.0564425,0.0301717,0.569835,0.345329,0.205659,0.672148,0.219889,0.742487,0.124376,0.911439,0.0764419,0.756181,0.797568,0.191558,0.764914,0.343479,0.867275,0.524459,0.688516,0.145503,0.814088,0.185912,0.127433,0.881419,0.453468,0.395218,0.705962,0.849319,0.282907,0.491538,0.815165,0.4299,0.389672,0.652473,0.773684,0.542617,0.564165,0.784125,0.362224,0.034889,0.609477,0.109946,0.999333,0.0309764,0.114248,0.280604,0.672231,0.0735058,0.765919,0.199504,0.437529,0.279877,0.587182,0.563466,0.17315,0.996594,0.18856,0.806002,0.107556,0.196844,0.0450857,0.61746,0.807413,0.614032,0.189694,0.396522,0.686701,0.869153,0.386914,0.310789,0.0975984,0.244348,0.742723,0.705721,0.781548,0.0479046,0.277955,0.0378745,0.125325,0.189524,0.0328218,0.43253,0.356772,0.711879,0.207841,0.365792,0.727891,0.142424,0.585056,0.443339,0.251436,0.544511,0.849845,0.211152,0.646772,0.593787,0.0193307,0.927284,0.309821,0.648569,0.978521,0.113491,0.394667,0.528443,0.152233,0.456255,0.0155916,0.147432,0.94529,0.176869,0.803505,0.327638,0.000394166,0.386524,|0.379427,0.742977,0.626645,0.155898,0.0594988,0.752799,0.724145,0.382535,0.974943,0.116377,0.3131,0.337874,0.695977,0.203873,0.531481,0.453516,0.286731,0.751993,0.869291,0.829822,0.0321403,0.923597,0.537222,0.40195,0.735411,0.800921,0.678569,0.095367,0.410008,0.67325,0.58147,0.806404,0.780075,0.726027,0.767222,0.687862,0.0663999,0.106122,0.56246,0.120096,0.578478,0.792217,0.954539,0.882468,0.298966,0.524952,0.830383,0.47503,0.75223,0.323982,0.802518,0.64406,0.239412,0.128328,0.729893,0.268618,0.341219,0.790608,0.107828,0.155423,0.0330294,0.883906,0.723366,0.422819,0.480261,0.110594,0.280257,0.377768,0.0682259,0.639574,0.501087,0.274089,0.80778,0.00774765,0.324236,0.489875,0.482027,0.710963,0.284802,0.845426,0.992164,0.553121,0.603945,0.160214,0.971609,0.517953,0.195929,0.143953,0.0037303,0.647856,0.745275,0.755897,0.199547,0.850845,0.121374,0.667394,0.204189,0.593941,0.386764,0.877318,0.41518,0.572668,0.940416,0.435343,0.173494,0.261474,0.171601,0.729601,0.305295,0.742778,0.0298712,0.425032,0.499418,0.829242,0.35173,0.538957,0.511239,0.959487,0.667734,0.437222,0.383751,0.467607,0.436643,0.0589488,0.836758,0.0338337,0.326579,0.46653,0.108314,0.600572,0.21135,0.889852,0.88688,0.890009,0.372047,0.859545,0.477794,0.416732,0.290668,0.388661,0.965056,0.104023,0.830471,0.154687,0.735636,0.344841,0.236016,0.196877,0.26696,0.527373,0.636262,0.675887,0.283401,0.833747,0.548476,0.0623382,0.538219,0.489191,0.321868,0.289466,0.518736,0.229666,0.169335,0.266761,0.798309,0.398539,0.253222,0.42426,0.822868,0.526132,0.609558,0.824662,0.629106,0.0280556,0.473796,0.363126,0.389158,0.0103268,0.227167,0.663905,0.680076,0.925328,0.793844,0.969909,0.88189,0.702105,0.406797,0.237475,0.291798,0.702901,0.377552,0.923348,0.221468,0.577707,0.601321,0.196572,0.598283,0.975094,0.470279,0.268747,0.441928,0.797434,0.0116268,0.344456,0.597925,0.72735,0.406874,0.658991,0.750667,0.0122318,0.415737,0.416045,0.25901,0.978657,0.276384,0.0310121,0.0324619,0.22522,0.378002,0.506139,0.202416,0.085397,0.31158,0.189392,0.014127,0.159272,0.609986,0.190747,0.00700396,0.155053,0.840576,0.643938,0.312772,0.0382121,0.821131,0.108151,0.886858,0.160659,0.6992,0.889672,0.882982,0.130138,0.530242,0.0499131,0.872525,0.513876,0.422137,0.239538,0.781517,0.469538,0.616782,0.829216,0.4399,0.859653,0.422166,0.320443,0.749823,0.19341,0.996908,0.65496,0.739707,0.706179,0.306807,0.647177,0.738753,0.337297,0.163481,0.80706,0.661447,0.876196,0.992486,0.890886,0.159254,0.687912,0.869382,0.589913,0.489713,0.930687,0.380761,0.577687,0.610697,0.0980234,0.232851,0.54771,0.73842,0.24077,0.663088,0.311766,0.0185084,0.943049,0.347587,0.368353,0.624601,0.785091,0.358053,0.877922,0.167498,0.585996,0.184647,0.0258264,0.476158,0.317752,0.48729,0.0385391,0.0634431,0.125923,0.464727,0.329147,0.63169,0.403111,0.897409,0.674384,0.40728,0.207325,0.887069,0.699992,0.551154,0.367353,0.715118,0.32544,0.867157,0.660402,0.906584,0.0515447,0.890724,0.412009,0.369875,0.830081,0.900463,0.769446,0.274148,0.239526,0.35092,0.0860268,0.192654,0.144915,0.1352,0.26438,0.746776,0.463311,0.0921322,0.114063,0.0458703,0.333577,0.0925236,0.412886,0.497616,0.0601513,0.804066,0.0907515,0.0808357,0.279472,0.835451,0.319206,0.270416,0.0108864,0.205316,0.883122,0.763156,0.4931,0.96492,0.586292,0.0410357,0.537388,0.0037784,0.776916,0.278554,0.421759,0.721581,0.91006,0.483699,0.847507,0.190505,0.90744,0.301232,0.881142,0.920941,0.598785,0.151001,0.620933,0.588139,0.556322,0.435325,0.930178,0.459196,0.273961,0.950998,0.994669,0.703439,0.597476,0.274789,0.353652,0.113484,0.35026,0.721233,0.919062,0.801041,0.50197,0.946082,0.688724,0.205483,0.255218,0.936386,0.540653,0.486181,0.377339,0.335019,0.563609,0.887035,0.0830085,0.0511674,0.514462,0.917682,0.29009,0.728906,0.122754,0.468116,0.887609,0.433961,0.872956,0.580352,0.772956,0.561906,0.109986,0.447996,0.357503,0.0385687,0.306072,0.485193,0.435577,0.402963,0.91991,0.516788,0.467318,0.245387,0.671831,0.445686,0.146955,0.413154,0.736815,0.609044,0.724369,0.819791,0.658316,0.373808,0.29664,0.658868,0.738441,0.331249,0.0520263,0.954597,0.528738,0.440268,0.796039,0.239826,0.361801,0.552582,0.233347,0.109178,0.743101,0.62587,0.508387,0.392648,0.888654,0.191591,0.633702,0.606164,0.182094,0.355287,0.428708,0.598599,0.307131,0.727893,0.807602,0.0110331,0.247045,0.353952,0.455173,0.373248,0.930364,0.983155,0.931466,0.835702,0.606798,0.342474,0.386878,0.58756,0.420441,0.54675,0.900912,0.270486,0.74638,0.258089,0.969267,0.00811803,0.656474,0.0952802,0.486974,0.777673,0.857059,0.597902,0.577229,0.339223,0.74412,0.940589,0.333444,0.564745,0.567164,0.0663433,0.466318,0.894549,0.518988,0.0270891,0.258139,0.264694,0.589025,0.644545,0.979309,0.669812,0.247209,0.524844,0.419365,0.345837,0.326541,0.887869,0.11639,0.362545,0.817581,0.721621,0.206551,0.504239,0.51586,0.692366,0.862051,0.991999,0.937037,0.126656,0.501495,0.173492,0.37622,0.476016,0.693304,0.586204,0.806145,0.635126,0.0494639,0.183686,0.611764,0.812453,0.910494,0.671584,0.837725,0.515388,0.186093,0.259233,0.139242,0.100582,0.023864,0.346195,0.288763,0.21694,0.247862,0.874518,0.833413,0.214144,0.833702,0.88688,0.177784,0.95801,0.387299,0.760488,0.349234,0.535198,0.216332,0.165495,0.396757,0.611865,0.516119,0.809274,0.063199,0.0152934,0.866526,0.0248441,0.390724,0.556715,0.78666,0.582961,0.158441,0.580983,0.96081,0.993538,0.835217,0.889304,0.606796,0.968897,0.915689,0.630379,0.967287,0.604029,0.660407,0.253431,0.144214,0.555854,0.762818,0.887158,0.70417,0.356849,0.361966,0.871796,0.965071,0.584343,0.752003,0.118573,0.313842,0.666362,0.376803,0.0973179,0.614604,0.365616,0.506436,0.436686,0.42876,0.455892,0.894282,0.587648,0.75001,0.827243,0.115185,0.796869,0.226483,0.524894,0.302198,0.216833,0.540949,0.516645,0.398064,0.671909,0.153521,0.358912,0.235635,0.649719,0.592431,0.384458,0.924696,0.010319,0.391542,0.123276,0.371222,0.894396,0.413776,0.758847,0.101032,0.761775,0.00463325,0.83245,0.656604,0.26536,0.814907,0.859898,0.571623,0.397492,0.0317685,0.996032,0.152115,0.495547,0.0374741,0.743339,0.0153666,0.807503,0.331764,0.908602,0.512678,0.678643,0.753071,0.391367,0.818292,0.416044,0.989059,0.538666,0.420401,0.412253,0.41246,0.456679,0.642493,0.230597,0.630652,0.189821,0.967565,0.93423,0.508418,0.949405,0.671063,0.642385,0.556168,0.954017,0.458229,0.601402,0.725963,0.458473,0.575203,0.682273,0.750067,0.141716,0.320344,0.611156,0.35902,0.161637,0.229473,0.468,0.860938,0.581889,0.217427,0.850102,0.296021,0.262595,0.950513,0.0222592,0.162165,0.233969,0.383645,0.525092,0.107225,0.246401,0.227421,0.38084,0.761809,0.569134,0.136829,0.543151,0.241378,0.271568,0.994039,0.549891,0.214682,0.864442,0.0679795,0.160131,0.168201,0.673127,0.24378,0.794069,0.470354,0.69293,0.325565,0.873491,0.725893,0.472616,0.925153,0.297201,0.759189,0.631907,0.381617,0.959002,0.818142,0.646795,0.0312928,0.660037,0.876198,0.649187,0.464281,0.204883,0.314379,0.842243,0.585974,0.101654,0.0114778,0.717643,0.83189,0.891254,0.242629,0.0629867,0.448618,0.0789292,0.303763,0.82446,0.758966,0.683719,0.735869,0.638027,0.133127,0.0960912,0.0232747,0.412052,0.0153939,0.0320867,0.178659,0.915621,0.330383,0.728298,0.585431,0.184812,0.982611,0.603519,0.682317,0.831979,0.615177,0.597976,0.356185,0.968259,0.175278,0.576185,0.0956136,0.86232,0.57153,0.0145664,0.580674,0.159039,0.559947,0.831346,0.862098,0.579633,0.277562,0.0302448,0.394039,0.112527,0.687622,0.572173,0.752357,0.787749,0.580389,0.936747,0.321108,0.355157,0.110353,0.197203,0.750619,0.862257,0.689567,0.518312,0.865698,0.645397,0.706101,0.938853,0.910084,0.238678,0.718818,0.935452,0.672949,0.00685608,0.351331,0.358975,0.496896,0.458685,0.809451,0.606585,0.0985252,0.319616,0.891395,0.997063,0.75044,0.858588,0.500156,0.179119,0.145638,0.782721,0.465021,0.48917,0.160302,0.853116,0.727496,0.452991,0.0314909,0.538185,0.740292,0.22768,0.0631656,0.614272,0.50165,0.183662,0.441814,0.7839,0.541828,0.906368,0.659988,0.366998,0.650257,0.698271,0.665056,0.252535,0.199428,0.147471,0.530289,0.143469,0.946999,0.296382,0.202149,0.66275,0.43506,0.742112,0.902829,0.572385,0.776043,0.700917,0.777403,0.713197,0.976897,0.753517,0.424615,0.954898,0.590542,0.414297,0.316286,0.79333,0.700549,0.213718,0.15781,0.608594,0.723955,0.591336,0.368654,0.812101,0.26894,0.2182,0.435541,0.724108,0.50993,0.385314,0.524172,0.0290187,0.418881,0.98185,0.658077,0.909934,0.0223551,0.168063,0.516626,0.723593,0.596333,0.102392,0.254779,0.425915,0.375891,0.816667,0.559149,0.177845,0.561158,0.57411,0.375113,0.0285882,0.494909,0.192018,0.506862,0.51709,0.65586,0.730555,0.181522,0.605811,0.844524,0.198309,0.786209,0.950586,0.508094,0.930688,0.199302,0.47572,0.506816,0.176817,0.488101,0.39748,0.601242,0.103815,0.655654,0.341881,0.218109,0.956531,0.875002,0.176049,0.700755,0.703049,0.409555,0.100601,0.569247,0.869269,0.202949,0.0472428,0.991151,0.81876,0.348327,0.480586,0.662189,0.0538655,0.483453,0.530376,0.925924,0.713225,0.255023,0.845064,0.226912,0.101881,0.93581,0.73747,0.188568,0.789433,0.408404,0.80835,0.718742,0.908118,0.907221,0.57666,0.916239,|0.577048,0.886803,0.732607,0.313867,0.373066,0.698156,0.416986,0.36438,0.768239,0.985796,0.111341,0.326959,0.989915,0.984393,0.735401,0.739562,0.602079,0.669301,0.266966,0.532475,0.968878,0.00555915,0.213976,0.889135,0.187244,0.0455993,0.441231,0.437373,0.739774,0.0835207,0.594817,0.282983,0.0590106,0.283383,0.787365,0.826,0.692713,0.225885,0.606955,0.899552,0.158551,0.734796,0.758772,0.740622,0.595871,0.286719,0.845459,0.0424541,0.130402,0.15491,0.523885,0.18886,0.630345,0.781226,0.522651,0.760915,0.752965,0.21158,0.976889,0.0912234,0.473182,0.703632,0.300928,0.25566,0.797117,0.366478,0.956077,0.165957,0.155683,0.750101,0.0505112,0.72812,0.857479,0.458771,0.541278,0.228359,0.966516,0.559696,0.158828,0.896329,0.941492,0.618167,0.801227,0.306291,0.468364,0.89417,0.810739,0.333093,0.0296763,0.454415,0.830888,0.5403,0.338344,0.0331154,0.0169905,0.463595,0.0773044,0.196791,0.125923,0.00959229,0.639157,0.538093,0.802384,0.396533,0.053569,0.731437,0.118017,0.313232,0.927478,0.143209,0.666564,0.599068,0.39457,0.387614,0.84086,0.965553,0.501054,0.318993,0.881068,0.770521,0.709944,0.172931,0.0476676,0.243758,0.403141,0.655762,0.308264,0.634227,0.100075,0.738943,0.428568,0.898817,0.5214,0.429369,0.34506,0.336089,0.691754,0.0553568,0.610396,0.596923,0.76865,0.903417,0.297067,0.389751,0.158381,0.858213,0.801283,0.710946,0.73797,0.238781,0.29943,0.882492,0.0426079,0.494741,0.0280397,0.890697,0.275097,0.783989,0.0818671,0.287969,0.0475906,0.876169,0.502773,0.511368,0.778527,0.719387,0.994089,0.481476,0.507244,0.535589,0.764473,0.904003,0.900776,0.525606,0.163167,0.55276,0.22857,0.260966,0.95145,0.474728,0.164414,0.614563,0.857335,0.0114929,0.769406,0.422811,0.783389,0.757611,0.594998,0.0860988,0.761409,0.485904,0.14096,0.26527,0.182139,0.582991,0.558291,0.474393,0.873527,0.0156183,0.525931,0.502267,0.0616954,0.535867,0.952426,0.941123,0.850807,0.584664,0.723527,0.232648,0.776544,0.783512,0.282628,0.647595,0.377149,0.605302,0.466586,0.677372,0.113789,0.733671,0.437837,0.429944,0.700668,0.505191,0.0192196,0.506206,0.155331,0.23523,0.820772,0.857812,0.710901,0.628308,0.793118,0.532751,0.518805,0.248986,0.761762,0.452957,0.523041,0.123018,0.942128,0.747124,0.13715,0.618589,0.974105,0.814621,0.834374,0.870272,0.860432,0.0463099,0.454637,0.365161,0.618001,0.301788,0.825449,0.915668,0.758386,0.797944,0.0447611,0.514104,0.0277653,0.304796,0.448561,0.568819,0.126209,0.245878,0.721629,0.988729,0.827373,0.217552,0.0709811,0.505236,0.843306,0.790052,0.106464,0.250836,0.9914,0.582358,0.28216,0.979933,0.0571017,0.399516,0.525989,0.418894,0.0515553,0.255858,0.834325,0.553414,0.230264,0.969989,0.779866,0.178996,0.475338,0.196448,0.195024,0.740065,0.855628,0.807811,0.81028,0.80876,0.453166,0.209876,0.994379,0.130398,0.645558,0.728974,0.0692639,0.114375,0.683678,0.0902173,0.403128,0.130316,0.272236,0.614432,0.168334,0.857067,0.215028,0.0804333,0.319202,0.371715,0.553155,0.6202,0.910871,0.691775,0.716322,0.782566,0.0576186,0.752215,0.100188,0.86295,0.184816,0.147631,0.749374,0.443599,0.0408263,0.718772,0.831842,0.643056,0.883618,0.692127,0.91433,0.102275,0.32918,0.00646174,0.96395,0.815356,0.691434,0.458218,0.0021261,0.839634,0.8869,0.601733,0.414526,0.470805,0.297084,0.613866,0.748536,0.90064,0.0421973,0.102005,0.281868,0.885721,0.502949,0.855909,0.61236,0.951709,0.768803,0.706801,0.0241396,0.978052,0.607366,0.304041,0.193638,0.136712,0.143196,0.166591,0.4956,0.524498,0.409118,0.852913,0.381679,0.487138,0.432743,0.383983,0.0992847,0.107968,0.879471,0.397342,0.39758,0.879353,0.77021,0.237,0.798077,0.636009,0.464296,0.978123,0.0741169,0.229429,0.519801,0.357609,0.871691,0.598091,0.444783,0.322542,0.761325,0.58189,0.527977,0.483469,0.253671,0.716907,0.112913,0.0180368,0.952933,0.319176,0.337187,0.918833,0.0433595,0.0334244,0.709636,0.44746,0.412056,0.731658,0.0904771,0.218576,0.706155,0.830045,0.19499,0.761256,0.81887,0.679611,0.292701,0.0464453,0.846194,0.911291,0.866872,0.0431887,0.769544,0.0756696,0.27621,0.717677,0.0747467,0.976404,0.479703,0.981272,0.0438627,0.366718,0.706863,0.575851,0.00196111,0.369694,0.899228,0.0142928,0.123276,0.249692,0.811878,0.855499,0.556537,0.208512,0.491847,0.554941,0.441976,0.139813,0.984773,0.793312,0.56324,0.62778,0.316656,0.379501,0.153241,0.812313,0.0978628,0.080403,0.24098,0.590919,0.77096,0.954894,0.174231,0.551217,0.835849,0.851106,0.86856,0.784951,0.519964,0.337353,0.348985,0.729225,0.263781,0.286705,0.185747,0.657722,0.802163,0.431605,0.114265,0.231005,0.823579,0.58952,0.921687,0.382483,0.568269,0.453027,0.449327,0.510031,0.593397,0.129779,0.314178,0.109698,0.569272,0.603415,0.0832278,0.424995,0.0563229,0.330506,0.512083,0.492142,0.473373,0.415299,0.508282,0.163191,0.665391,0.922129,0.339608,0.674157,0.261025,0.171439,0.833124,0.980693,0.315607,0.94267,0.662046,0.45012,0.906988,0.718119,0.803389,0.686907,0.945925,0.916606,0.316027,0.714447,0.558754,0.850657,0.179058,0.69132,0.288935,0.712149,0.337296,0.769914,0.887519,0.899468,0.343947,0.766171,0.0301254,0.0874503,0.728161,0.348606,0.362441,0.977164,0.295102,0.798025,0.498703,0.886058,0.638055,0.227984,0.690495,0.978987,0.790088,0.893134,0.134254,0.914158,0.925434,0.0527883,0.547645,0.523784,0.583361,0.0543649,0.193743,0.90952,0.914198,0.460385,0.864512,0.576237,0.550298,0.959811,0.791154,0.403576,0.674297,0.69861,0.125098,0.120854,0.725324,0.247798,0.758717,0.511877,0.701086,0.188771,0.707234,0.269131,0.630628,0.078167,0.24758,0.891972,0.654923,0.232266,0.132777,0.0686012,0.724033,0.219028,0.0294818,0.530819,0.809981,0.72135,0.118239,0.770915,0.239791,0.838143,0.0870802,0.00971675,0.891012,0.563189,0.309774,0.00890964,0.329707,0.936044,0.958917,0.967047,0.013469,0.671898,0.388507,0.920115,0.325385,0.834033,0.504456,0.523893,0.0797529,0.987207,0.655692,0.0278788,0.693923,0.839959,0.0129669,0.427397,0.909588,0.740763,0.381829,0.44826,0.413505,0.505877,0.295695,0.937983,0.18827,0.491379,0.13869,0.508631,0.527576,0.8731,0.397361,0.741166,0.539496,0.646039,0.921463,0.328002,0.162342,0.0034734,0.393152,0.0272763,0.509574,0.2197,0.802993,0.622026,0.897485,0.513057,0.133492,0.111457,0.460367,0.970461,0.658697,0.414048,0.270066,0.15696,0.685427,0.0114478,0.438604,0.458517,0.351003,0.548756,0.864385,0.162426,0.567519,0.722095,0.11914,0.0835522,0.281568,0.806451,0.194184,0.358003,0.0575906,0.503399,0.469767,0.332975,0.969348,0.64827,0.335008,0.332629,0.0406318,0.526838,0.283834,0.798623,0.356866,0.264221,0.282617,0.165083,0.449764,0.187197,0.808623,0.302718,0.523901,0.0069809,0.253401,0.829089,0.116777,0.299821,0.243805,0.137872,0.615057,0.494544,0.976376,0.946928,0.22555,0.187024,0.387634,0.00152564,0.775096,0.959223,0.37904,0.139358,0.596972,0.518588,0.691185,0.978325,0.904151,0.387981,0.689358,0.866333,0.807271,0.588072,0.694194,0.922648,0.215478,0.133899,0.0757378,0.926114,0.251992,0.203393,0.600865,0.35076,0.687256,0.988574,0.70611,0.495896,0.82742,0.92727,0.134241,0.524876,0.557092,0.419388,0.370688,0.103579,0.177024,0.269282,0.40197,0.346869,0.167957,0.482375,0.000279903,0.19664,0.74533,0.016657,0.750457,0.241028,0.714727,0.825579,0.566225,0.0771002,0.561285,0.180637,0.949761,0.946768,0.171174,0.0868232,0.990532,0.45072,0.899706,0.371349,0.911239,0.199831,0.773095,0.474851,0.514807,0.572212,0.414217,0.766261,0.455059,0.351657,0.623705,0.678042,0.599475,0.652688,0.575076,0.0421473,0.74128,0.444156,0.398273,0.233989,0.525141,0.0690646,0.0736782,0.394367,0.646861,0.1492,0.946115,0.169444,0.0503292,0.0583304,0.0629063,0.57386,0.794503,0.755973,0.0146735,0.0724744,0.818863,0.727683,0.947235,0.530297,0.377677,0.263135,0.369605,0.243759,0.575048,0.0931189,0.531128,0.994462,0.0782332,0.136749,0.0337987,0.315632,0.456519,0.208095,0.154378,0.11413,0.87206,0.732388,0.328132,0.348245,0.347131,0.646584,0.953125,0.665977,0.234837,0.636797,0.387645,0.231479,0.14039,0.333101,0.496522,0.568908,0.463723,0.824675,0.499329,0.27547,0.0916224,0.695294,0.493379,0.303513,0.996447,0.221545,0.51061,0.302211,0.892884,0.515743,0.851931,0.94192,0.94908,0.734884,0.876581,0.631416,0.616376,0.727291,0.738132,0.372132,0.285934,0.470122,0.629473,0.43355,0.0912663,0.689443,0.17863,0.981796,0.198282,0.027868,0.603096,0.466987,0.940735,0.489538,0.739981,0.670393,0.661301,0.992774,0.897087,0.811038,0.204082,0.952107,0.657586,0.99685,0.932413,0.888943,0.717884,0.220248,0.55959,0.39432,0.546104,0.389106,0.14411,0.642461,0.172146,0.607672,0.224309,0.598759,0.0326341,0.129002,0.741188,0.0715412,0.0996293,0.927898,0.00996423,0.074307,0.75651,0.545326,0.0985696,0.19401,0.222109,0.0528872,0.248059,0.69648,0.964955,0.274952,0.193836,0.213693,0.485651,0.00744402,0.12695,0.98805,0.32361,0.173719,0.00548249,0.00412446,0.700709,0.220648,0.975814,0.854692,0.383061,0.0954857,0.448491,0.558246,0.556281,0.613838,0.0244232,0.512678,0.23504,0.626332,0.409385,0.753981,0.0451756,0.451439,0.86111,0.289306,0.644383,0.228946,0.247804,0.00758797,0.715331,0.401171,0.679359,0.415311,0.930126,0.561782,0.622607,0.186167,0.621572,0.578508,0.105416,0.838592,0.960342,0.839202,0.653139,0.110321,0.233071,0.835203,0.999531,0.140106,0.448142,0.488998,|0.643681,0.218931,0.264718,0.79784,0.705216,0.345499,0.0866408,0.134748,0.382969,0.126068,0.0817718,0.681898,0.811566,0.955144,0.556791,0.966026,0.988792,0.929216,0.935957,0.288585,0.54373,0.905792,0.973786,0.192777,0.601073,0.607254,0.732455,0.590619,0.0979485,0.331603,0.0412846,0.328667,0.986459,0.988883,0.925495,0.506612,0.213671,0.79911,0.0247291,0.791702,0.420036,0.815307,0.748995,0.370341,0.873691,0.371713,0.219283,0.864845,0.378966,0.066855,0.0378147,0.770601,0.00231135,0.00610751,0.708084,0.677575,0.607543,0.151376,0.424624,0.63041,0.00146359,0.503606,0.180626,0.494847,0.74797,0.124593,0.105389,0.685706,0.326883,0.780573,0.510158,0.568288,0.465616,0.683087,0.641108,0.457737,0.894746,0.621875,0.0963848,0.571578,0.154345,0.653185,0.0275424,0.590916,0.20506,0.839174,0.885627,0.792955,0.19205,0.249739,0.841295,0.270344,0.546779,0.717884,0.496352,0.706361,0.606992,0.692414,0.614214,0.150793,0.78152,0.906987,0.284904,0.651092,0.8078,0.753906,0.385686,0.000502765,0.23984,0.162418,0.215885,0.085094,0.944599,0.93839,0.892625,0.868967,0.645546,0.307229,0.378464,0.14763,0.585391,0.468834,0.780586,0.800361,0.669133,0.622697,0.668819,0.253083,0.558286,0.427062,0.231102,0.993802,0.9417,0.408864,0.4574,0.11363,0.78825,0.178157,0.760509,0.500375,0.19571,0.851209,0.329629,0.917225,0.480398,0.144592,0.491865,0.749923,0.985109,0.594411,0.9577,0.530658,0.893975,0.441822,0.529343,0.698972,0.126015,0.0390981,0.451583,0.993725,0.953962,0.930786,0.658133,0.730972,0.593715,0.691473,0.445884,0.0794479,0.571361,0.609589,0.733089,0.582309,0.15165,0.136644,0.664129,0.221884,0.206502,0.488712,0.692761,0.356417,0.913243,0.202481,0.506005,0.499695,0.495426,0.961687,0.674529,0.80731,0.0499814,0.503051,0.242344,0.644031,0.903791,0.264306,0.522663,0.770417,0.0205515,0.305847,0.320999,0.883659,0.212433,0.531839,0.53344,0.359103,0.226052,0.953031,0.515386,0.952781,0.757507,0.326366,0.997259,0.140022,0.968398,0.00638103,0.83212,0.0995244,0.499409,0.265729,0.599822,0.24497,0.534013,0.600916,0.289979,0.789893,0.370217,0.119769,0.807091,0.370854,0.964057,0.768112,0.890963,0.560726,0.766032,0.369202,0.895769,0.641349,0.841802,0.0255747,0.00621784,0.684415,0.0954121,0.197472,0.748252,0.431323,0.557518,0.736234,0.778815,0.751232,0.615838,0.796019,0.419658,0.126108,0.679177,0.263564,0.217679,0.757587,0.957342,0.596247,0.425855,0.320623,0.225285,0.70975,0.277918,0.80763,0.497661,0.839647,0.405661,0.316917,0.151211,0.008187,0.00888234,0.794083,0.636322,0.668156,0.793823,0.563085,0.626798,0.381399,0.709011,0.498239,0.152278,0.210633,0.0676442,0.399382,0.774257,0.79276,0.572048,0.0894432,0.3799,0.86639,0.599039,0.14588,0.650615,0.463071,0.0466812,0.192042,0.665384,0.55359,0.0119801,0.589158,0.60781,0.98209,0.907756,0.8277,0.187272,0.419564,0.668385,0.86865,0.204942,0.61926,0.312242,0.411576,0.525753,0.61143,0.547845,0.320142,0.943845,0.15506,0.633441,0.0402794,0.754123,0.43924,0.106251,0.309252,0.209032,0.0288578,0.314725,0.493459,0.743433,0.835458,0.770529,0.982637,0.690255,0.388259,0.68317,0.416193,0.406947,0.135438,0.773654,0.373324,0.966354,0.0664615,0.869282,0.389974,0.325761,0.815768,0.935685,0.867151,0.921857,0.692766,0.0132483,0.773782,0.0508116,0.275657,0.499916,0.808186,0.717139,0.488452,0.139109,0.119507,0.498788,0.778468,0.97654,0.706972,0.0845574,0.454559,0.783537,0.307391,0.819301,0.12745,0.742631,0.458866,0.873598,0.281543,0.0936263,0.71102,0.207301,0.495135,0.580512,0.287104,0.748724,0.198318,0.0446553,0.352793,0.466988,0.0544225,0.124192,0.214385,0.230868,0.139625,0.645855,0.155894,0.977401,0.248762,0.693993,0.0777192,0.263157,0.825107,0.744656,0.796249,0.865364,0.508196,0.985326,0.533854,0.398623,0.32325,0.724973,0.814481,0.264173,0.385089,0.913465,0.360064,0.905369,0.879722,0.360868,0.402432,0.953992,0.254567,0.120404,0.665991,0.933209,0.921111,0.77513,0.278221,0.94602,0.312774,0.6495,0.572987,0.516302,0.75571,0.310143,0.308828,0.87578,0.778127,0.752575,0.720537,0.195947,0.279893,0.324906,0.879759,0.990979,0.260881,0.311204,0.648683,0.310874,0.543301,0.315811,0.0748157,0.228006,0.030827,0.394098,0.537349,0.804928,0.808262,0.64607,0.858263,0.620255,0.391899,0.457163,0.459621,0.969718,0.495058,0.2063,0.630167,0.985451,0.896813,0.516822,0.142742,0.10207,0.98574,0.222822,0.128903,0.817144,0.443229,0.104272,0.126952,0.874967,0.299009,0.541263,0.423912,0.253603,0.552816,0.446179,0.767682,0.578354,0.252556,0.585438,0.132315,0.572107,0.169603,0.0864503,0.434014,0.275818,0.230477,0.117669,0.739252,0.799804,0.31667,0.65403,0.478816,0.347594,0.594589,0.783008,0.170313,0.713287,0.0794823,0.563519,0.791548,0.995486,0.115102,0.14062,0.486706,0.867107,0.260508,0.0229291,0.951414,0.76296,0.239815,0.79934,0.328963,0.715555,0.84674,0.39994,0.747896,0.744354,0.601694,0.936873,0.633799,0.103012,0.190742,0.636593,0.55347,0.325426,0.787501,0.339369,0.947558,0.715704,0.270979,0.193966,0.421462,0.725786,0.459605,0.366484,0.72944,0.881685,0.584359,0.709353,0.685437,0.240724,0.686302,0.205192,0.312746,0.752999,0.534354,0.362215,0.191465,0.734708,0.727125,0.441205,0.624907,0.118183,0.636838,0.133902,0.210076,0.68807,0.336283,0.707823,0.403869,0.309029,0.669912,0.967016,0.532727,0.731622,0.236469,0.102127,0.900212,0.228056,0.792333,0.733292,0.403581,0.305942,0.571892,0.928054,0.999898,0.64649,0.00417006,0.728132,0.512506,0.198921,0.899913,0.861045,0.283194,0.292014,0.416154,0.783369,0.546672,0.473677,0.702345,0.612552,0.751383,0.671249,0.862463,0.4714,0.944315,0.228023,0.205994,0.792895,0.865209,0.371734,0.284439,0.946773,0.0927014,0.251622,0.57172,0.617978,0.834238,0.177678,0.538696,0.837118,0.999322,0.454887,0.543525,0.470099,0.905848,0.357763,0.977857,0.458762,0.997229,0.669801,0.730915,0.556854,0.561139,0.428658,0.676807,0.201726,0.669531,0.43229,0.363576,0.877671,0.847828,0.229571,0.179228,0.369404,0.75479,0.971006,0.274257,0.0986706,0.426616,0.356485,0.577767,0.480358,0.866865,0.591204,0.626505,0.00966835,0.751803,0.0864238,0.358639,0.0880026,0.0769328,0.608892,0.722585,0.215874,0.0633965,0.716307,0.995043,0.278303,0.758221,0.448171,0.261614,0.815294,0.518133,0.855141,0.445069,0.809294,0.63025,0.496332,0.238315,0.0398394,0.646338,0.265454,0.308285,0.302365,0.399713,0.786339,0.714411,0.870001,0.730393,0.0228074,0.844361,0.0242545,0.347495,0.897074,0.038805,0.938666,0.910169,0.712932,0.519979,0.481616,0.371357,0.279113,0.386268,0.616549,0.728069,0.583336,0.403288,0.636515,0.354276,0.508992,0.142588,0.971566,0.924036,0.723529,0.103019,0.858375,0.170108,0.889003,0.410686,0.893248,0.923621,0.718554,0.587009,0.17534,0.908787,0.0105322,0.148548,0.67757,0.184909,0.312184,0.232076,0.407324,0.792192,0.785718,0.407448,0.812168,0.35167,0.131767,0.880741,0.247392,0.201727,0.732191,0.453858,0.65697,0.128913,0.891923,0.0425107,0.171768,0.686376,0.376318,0.0969477,0.642211,0.732142,0.392566,0.508196,0.187317,0.440674,0.763168,0.686266,0.311569,0.730552,0.663182,0.504066,0.783944,0.581043,0.0717142,0.292713,0.813476,0.200494,0.315261,0.338683,0.049334,0.823305,0.238649,0.718038,0.174533,0.633335,0.43938,0.764195,0.486266,0.681736,0.0944629,0.581616,0.280943,0.593964,0.267024,0.530669,0.985615,0.923137,0.978844,0.718274,0.93226,0.0903608,0.230062,0.39868,0.883001,0.588545,0.205523,0.43853,0.187213,0.378236,0.480919,0.923323,0.432053,0.640055,0.907268,0.411389,0.698484,0.852579,0.797654,0.145002,0.30881,0.385565,0.453477,0.179358,0.161595,0.924271,0.0690872,0.0402734,0.49011,0.754257,0.438798,0.940775,0.269548,0.139794,0.18981,0.107845,0.633436,0.575719,0.0118265,0.321421,0.112762,0.0363101,0.270723,0.709538,0.148842,0.628415,0.153884,0.964738,0.0994869,0.267203,0.735297,0.729283,0.915232,0.646341,0.0224031,0.430843,0.379937,0.20928,0.645506,0.274341,0.462014,0.526012,0.272471,0.716796,0.696124,0.388676,0.78938,0.640463,0.522481,0.994805,0.87252,0.528853,0.487863,0.198645,0.464967,0.00432742,0.556125,0.130396,0.998208,0.925567,0.420212,0.670617,0.709073,0.230606,0.291804,0.680385,0.131138,0.611877,0.579647,0.953581,0.225115,0.928561,0.0989509,0.490247,0.527906,0.968784,0.581804,0.460096,0.278106,0.0880265,0.304153,0.419987,0.982537,0.296669,0.922544,0.0749869,0.278042,0.650777,0.142477,0.703717,0.379864,0.0189627,0.548744,0.686421,0.998557,0.446668,0.883195,0.170661,0.867361,0.925557,0.295633,0.315869,0.227507,0.284627,0.958955,0.790683,0.462438,0.55051,0.528215,0.500143,0.170885,0.172371,0.108686,0.13181,0.448771,0.375196,0.967724,0.26238,0.483222,0.153713,0.354665,0.511028,0.706927,0.467312,0.582636,0.71786,0.328751,0.839845,0.164624,0.717501,0.661012,0.202788,0.20792,0.280689,0.781157,0.234459,0.799475,0.703739,0.0820851,0.898228,0.00318319,0.056116,0.698612,0.34066,0.804814,0.343207,0.335938,0.394277,0.282913,0.923217,0.204896,0.634669,0.835794,0.348188,0.66529,0.0317205,0.701826,0.986394,0.643285,0.854927,0.970746,0.078917,0.442883,0.336644,0.600285,0.770986,0.499488,0.836048,0.194395,0.366866,0.842445,0.585361,0.00537574,0.420973,0.52239,0.577353,0.769313,0.355289,0.669522,0.182104,0.948668,0.681847,0.687339,0.84504,0.233841,0.178184,0.47918,0.465333,0.278913,0.061839,|0.33218,0.666954,0.0544441,0.288312,0.847406,0.751903,0.112618,0.331379,0.461239,0.888376,0.307003,0.395822,0.799661,0.66298,0.556697,0.330626,0.451698,0.677601,0.418025,0.117609,0.526528,0.355304,0.0823817,0.57851,0.42724,0.978422,0.860596,0.289067,0.240266,0.0181853,0.356316,0.208564,0.357944,0.839395,0.35075,0.21094,0.223814,0.151844,0.502019,0.336236,0.249253,0.169955,0.497035,0.949175,0.401177,0.176139,0.0593265,0.0499703,0.555553,0.432861,0.7952,0.872099,0.0807097,0.971881,0.0340565,0.770536,0.692379,0.305689,0.230974,0.133505,0.478006,0.00184453,0.491623,0.953364,0.0661031,0.751607,0.571691,0.0964981,0.787175,0.170991,0.0584896,0.842369,0.456992,0.459421,0.407818,0.240739,0.540766,0.904491,0.627675,0.149781,0.46663,0.14862,0.76778,0.532737,0.557522,0.590029,0.310133,0.993462,0.705485,0.898023,0.888117,0.841398,0.561931,0.382489,0.487528,0.539915,0.729567,0.330602,0.7741,0.426638,0.203623,0.605967,0.59631,0.762305,0.079863,0.840053,0.67735,0.645887,0.355837,0.97933,0.963089,0.849688,0.934169,0.100935,0.421085,0.478284,0.377198,0.711829,0.694945,0.727341,0.263829,0.42195,0.0820376,0.835105,0.219997,0.326729,0.645951,0.222558,0.549355,0.623251,0.35125,0.240223,0.58852,0.594939,0.427438,0.958895,0.108477,0.0529358,0.519421,0.775754,0.684806,0.291956,0.129355,0.135362,0.547283,0.748107,0.119528,0.105785,0.0640539,0.377261,0.552234,0.30377,0.546783,0.559335,0.297281,0.316631,0.78609,0.637996,0.36552,0.730742,0.0311137,0.510256,0.924727,0.556605,0.601061,0.150859,0.898073,0.420206,0.0881363,0.686836,0.388388,0.0250974,0.662413,0.779502,0.990157,0.0166921,0.348628,0.499502,0.278317,0.823514,0.298027,0.598496,0.956764,0.419604,0.197345,0.369732,0.0480675,0.693313,0.960319,0.891255,0.96029,0.35597,0.525609,0.429969,0.378593,0.889604,0.289375,0.640434,0.517789,0.811354,0.712462,0.810718,0.0623783,0.799883,0.787767,0.748335,0.329286,0.35886,0.524624,0.395645,0.0872302,0.881935,0.216166,0.736541,0.383576,0.594757,0.310323,0.184663,0.639677,0.600562,0.622076,0.531962,0.208944,0.312344,0.16263,0.645081,0.17173,0.774413,0.783074,0.959029,0.762003,0.427447,0.109585,0.420182,0.076396,0.853901,0.654162,0.957317,0.168905,0.328424,0.117065,0.783988,0.548064,0.932704,0.638715,0.241046,0.410608,0.379736,0.821471,0.846131,0.00295126,0.220306,0.452021,0.426765,0.668753,0.966026,0.974826,0.0554925,0.848818,0.620683,0.597396,0.0313604,0.491055,0.0269717,0.0951695,0.826121,0.0797951,0.736194,0.648426,0.143613,0.0789824,0.890265,0.711052,0.413041,0.991522,0.925759,0.108701,0.059481,0.500645,0.58054,0.781551,0.577326,0.749124,0.433049,0.881571,0.479796,0.838449,0.238799,0.684598,0.180377,0.111291,0.58141,0.75875,0.703271,0.279563,0.33901,0.96889,0.372813,0.097074,0.391697,0.458053,0.899363,0.0672495,0.269699,0.180008,0.709302,0.239633,0.0263869,0.204776,0.8122,0.0894364,0.958797,0.228175,0.347021,0.251572,0.858407,0.81841,0.386321,0.417976,0.148655,0.0945342,0.118352,0.300487,0.549034,0.844291,0.821957,0.291859,0.0473068,0.0815278,0.893608,0.0904995,0.532011,0.237911,0.957297,0.537429,0.492234,0.416298,0.338851,0.168443,0.430611,0.0886275,0.981662,0.64198,0.337837,0.591138,0.160788,0.119762,0.255407,0.34484,0.549222,0.964012,0.262047,0.761847,0.114923,0.117613,0.363773,0.614456,0.438255,0.871619,0.159628,0.984753,0.812602,0.518004,0.499173,0.57841,0.720789,0.205712,0.707099,0.745372,0.146669,0.579975,0.572498,0.93018,0.954505,0.52598,0.232221,0.84172,0.547219,0.0895813,0.000160217,0.195584,0.593967,0.43927,0.163164,0.938613,0.298076,0.265647,0.449257,0.970805,0.438659,0.282143,0.594881,0.16038,0.437132,0.976632,0.760622,0.339864,0.518807,0.482631,0.363267,0.2044,0.113933,0.649599,0.833574,0.803684,0.906139,0.932254,0.369752,0.346449,0.552869,0.0788655,0.51176,0.786645,0.532305,0.663257,0.89392,0.650566,0.826682,0.941152,0.507297,0.200787,0.390669,0.296865,0.586872,0.00654304,0.325803,0.701685,0.417365,0.903856,0.687063,0.739625,0.367587,0.95626,0.168738,0.917015,0.758062,0.965953,0.257878,0.625398,0.230328,0.637862,0.689502,0.725903,0.0652381,0.744788,0.0511185,0.680485,0.691491,0.976642,0.647271,0.807495,0.0179386,0.951547,0.885831,0.555328,0.154518,0.0643536,0.127009,0.801594,0.494663,0.945992,0.298517,0.615982,0.378224,0.421191,0.493515,0.949899,0.353561,0.673594,0.519987,0.669178,0.288164,0.488384,0.952253,0.241782,0.90321,0.903271,0.863335,0.925984,0.973679,0.626627,0.0474972,0.385903,0.172552,0.428307,0.345879,0.268974,0.300065,0.743126,0.850133,0.267159,0.670529,0.822928,0.632852,0.856416,0.329211,0.299957,0.550236,0.859014,0.427934,0.776725,0.240444,0.0314446,0.280339,0.937368,0.376159,0.723819,0.867188,0.179088,0.282007,0.0612307,0.6171,0.118329,0.913512,0.622067,0.402171,0.474797,0.389125,0.841524,0.105999,0.297718,0.456541,0.443343,0.723373,0.670346,0.166936,0.985573,0.101638,0.570646,0.936671,0.855935,0.612262,0.617145,0.331197,0.301369,0.414509,0.587371,0.376935,0.221752,0.288852,0.00275552,0.246212,0.302043,0.421144,0.306593,0.373236,0.457092,0.28108,0.623042,0.991306,0.175463,0.67565,0.736394,0.701452,0.394697,0.585847,0.521886,0.386766,0.369333,0.767105,0.610825,0.368356,0.369921,0.893284,0.302789,0.296433,0.710875,0.508513,0.235187,0.368526,0.445766,0.766357,0.594981,0.272074,0.471751,0.946132,0.19608,0.108667,0.394741,0.0288584,0.629527,0.542851,0.968475,0.978662,0.0881361,0.889259,0.0320359,0.591871,0.506725,0.745731,0.344894,0.311684,0.684708,0.180828,0.169341,0.748202,0.399804,0.641313,0.942059,0.929029,0.807706,0.0309145,0.747239,0.759093,0.602793,0.959353,0.669328,0.992818,0.238091,0.584346,0.972091,0.410226,0.194043,0.596331,0.183318,0.941735,0.0668449,0.895949,0.308697,0.89835,0.586479,0.159579,0.297737,0.335556,0.853039,0.333572,0.753266,0.691885,0.88855,0.443953,0.909633,0.629973,0.302454,0.2822,0.441704,0.750766,0.620463,0.786885,0.0090701,0.246548,0.439562,0.479538,0.659276,0.474659,0.428507,0.335016,0.289133,0.526957,0.473365,0.684237,0.870325,0.47153,0.839262,0.328029,0.359726,0.309268,0.70315,0.924679,0.299912,0.192243,0.792537,0.464844,0.606203,0.258254,0.515568,0.100645,0.259712,0.588597,0.322457,0.617458,0.760238,0.0774473,0.898301,0.902034,0.659577,0.187547,0.352204,0.39378,0.321702,0.492543,0.271538,0.991099,0.159559,0.5718,0.621442,0.82976,0.887007,0.433895,0.942922,0.99177,0.628157,0.53094,0.866562,0.496523,0.694472,0.116234,0.156184,0.147551,0.66813,0.83992,0.854243,0.442459,0.753104,0.509042,0.0921602,0.422177,0.348104,0.64165,0.729612,0.420131,0.246723,0.278881,0.62222,0.335664,0.979496,0.77067,0.841303,0.577321,0.433512,0.995255,0.72326,0.677323,0.361065,0.864726,0.0336293,0.476317,0.374703,0.0756575,0.666793,0.428732,0.20723,0.924773,0.556543,0.113533,0.0234307,0.881112,0.165028,0.391169,0.457298,0.393942,0.435726,0.331643,0.450779,0.692601,0.367883,0.835643,0.249221,0.0943857,0.209313,0.165437,0.866693,0.756538,0.356939,0.777364,0.303694,0.548903,0.327433,0.466399,0.388757,0.812412,0.00779057,0.981926,0.165822,0.000625551,0.536813,0.493618,0.570281,0.805736,0.0764179,0.645428,0.272252,0.0509794,0.593084,0.531341,0.817777,0.640501,0.884497,0.606763,0.996064,0.747999,0.0158638,0.608551,0.703063,0.776002,0.492472,0.288865,0.648545,0.0236302,0.173011,0.155071,0.651959,0.6012,0.0907447,0.847871,0.922877,0.386675,0.714814,0.172582,0.334045,0.550484,0.879884,0.722531,0.517468,0.0344489,0.22018,0.697662,0.172896,0.979746,0.338177,0.844074,0.0143774,0.633811,0.1403,0.629091,0.616682,0.917339,0.314958,0.278155,0.71626,0.0508328,0.674914,0.978603,0.385138,0.247807,0.0399386,0.520009,0.865704,0.183202,0.590022,0.370842,0.647795,0.17829,0.512866,0.232759,0.0438445,0.2854,0.0695303,0.103257,0.169509,0.891433,0.903538,0.195812,0.953395,0.562844,0.282741,0.304155,0.453458,0.366581,0.582181,0.135166,0.67164,0.262561,0.368019,0.0246193,0.789625,0.24006,0.0627297,0.979374,0.544622,0.284866,0.148353,0.424451,0.919767,0.165394,0.251637,0.872596,0.0591052,0.416787,0.151893,0.552736,0.347218,0.447613,0.886213,0.954925,0.636249,0.871744,0.0519637,0.466491,0.629841,0.918368,0.56022,0.980007,0.815887,0.501056,0.775964,0.179242,0.252429,0.333156,0.423875,0.525382,0.40914,0.493372,0.251711,0.142246,0.959431,0.80994,0.221219,0.91958,0.614677,0.360738,0.841209,0.209554,0.196671,0.336812,0.0220732,0.875073,0.509718,0.954199,0.572303,0.0479836,0.840255,0.802081,0.081248,0.759208,0.469604,0.239164,0.978723,0.851393,0.187457,0.517474,0.309166,0.538963,0.735442,0.823353,0.570234,0.181066,0.933022,0.0725499,0.985105,0.353914,0.673668,0.231748,0.570515,0.864977,0.796207,0.75015,0.747418,0.885116,0.772281,0.597983,0.565581,0.595577,0.443333,0.880799,0.54404,0.658648,0.140336,0.503573,0.609586,0.258427,0.621553,0.233719,0.738338,0.413557,0.797928,0.685356,0.958543,0.415344,0.308768,0.388438,0.275211,0.134833,0.760364,0.16567,0.0702749,0.350447,0.279894,0.102147,0.425776,0.477172,0.868494,0.0463541,0.600597,0.536252,0.454437,0.370208,0.32969,0.304806,0.336888,0.837494,0.120937,0.846097,0.904424,0.505808,0.169562,0.430988,0.844621,0.116733,0.295607,0.962393,0.650867,0.790363,0.167732,0.554677,0.486082,0.466962,0.150531,0.831092,0.194374,0.150842,|0.630849,0.104726,0.484891,0.883178,0.703281,0.411275,0.752809,0.349067,0.52509,0.0422241,0.65809,0.72997,0.763629,0.861048,0.750809,0.462596,0.397311,0.442532,0.741421,0.872159,0.89583,0.373105,0.454915,0.584586,0.302807,0.986034,0.918605,0.0797318,0.763336,0.874197,0.840431,0.600983,0.985151,0.162898,0.91405,0.714829,0.902798,0.987507,0.645277,0.335076,0.660667,0.551258,0.0609102,0.0729422,0.955938,0.963665,0.226437,0.474423,0.45704,0.851381,0.880153,0.4362,0.933618,0.202085,0.45789,0.475138,0.958811,0.981087,0.945674,0.690625,0.256921,0.578622,0.269205,0.158861,0.704305,0.772762,0.560906,0.841894,0.56401,0.765039,0.0784745,0.768672,0.0707343,0.425241,0.280277,0.198499,0.406024,0.759578,0.745305,0.447713,0.00644577,0.239158,0.295131,0.819897,0.798235,0.852489,0.693243,0.200244,0.555599,0.341433,0.689774,0.0940529,0.757622,0.278822,0.207473,0.504687,0.236724,0.0345969,0.195077,0.403455,0.571426,0.279704,0.862095,0.572314,0.910976,0.65247,0.737776,0.94413,0.0228775,0.0727617,0.910037,0.279131,0.449055,0.920006,0.0131032,0.773538,0.673628,0.139417,0.96293,0.373363,0.919553,0.278583,0.608661,0.240903,0.726374,0.36349,0.646898,0.753401,0.0349452,0.311448,0.579387,0.30291,0.193371,0.380004,0.661029,0.600408,0.491397,0.112276,0.743179,0.663501,0.390727,0.636573,0.398398,0.407096,0.165858,0.367978,0.139843,0.623977,0.027978,0.39745,0.189494,0.651246,0.737827,0.85126,0.21762,0.137068,0.350127,0.968959,0.00437373,0.0419366,0.207611,0.934631,0.845783,0.0786054,0.808372,0.802353,0.549884,0.534264,0.804881,0.496157,0.840044,0.368795,0.241431,0.573393,0.415688,0.986348,0.408801,0.466476,0.790228,0.894748,0.520533,0.903661,0.182785,0.128112,0.475888,0.646471,0.916474,0.583082,0.946471,0.202341,0.718331,0.757394,0.15921,0.575066,0.256187,0.269707,0.00939506,0.307131,0.799245,0.919371,0.436592,0.808589,0.904243,0.91563,0.618746,0.895856,0.465805,0.614244,0.508904,0.997333,0.0207866,0.799433,0.113996,0.808174,0.521576,0.342075,0.842204,0.969993,0.832594,0.619564,0.361814,0.294196,0.478557,0.665819,0.990818,0.665028,0.0317852,0.0785556,0.318751,0.315108,0.152811,0.239308,0.345574,0.438526,0.770169,0.49921,0.485415,0.0244227,0.513074,0.142054,0.592659,0.801563,0.798231,0.27984,0.00670201,0.351297,0.699313,0.0942009,0.597893,0.965044,0.0381942,0.638305,0.514953,0.221298,0.859381,0.595364,0.483174,0.0544249,0.121453,0.442461,0.443767,0.509717,0.104833,0.186047,0.498823,0.930213,0.473004,0.936816,0.59044,0.832755,0.137819,0.366928,0.547017,0.58928,0.938779,0.0738429,0.156386,0.777858,0.0489299,0.21053,0.477909,0.938418,0.462735,0.698332,0.815961,0.620387,0.724243,0.541589,0.876078,0.864827,0.386795,0.258132,0.197923,0.185228,0.0618365,0.346559,0.97852,0.0561227,0.163139,0.266271,0.640964,0.480258,0.359661,0.761889,0.477558,0.29163,0.815873,0.13969,0.72586,0.594464,0.260409,0.446802,0.045869,0.902289,0.659989,0.162225,0.304061,0.689593,0.963744,0.329202,0.127083,0.398386,0.280484,0.391901,0.699691,0.720683,0.457872,0.729838,0.918153,0.60795,0.246801,0.0201575,0.646424,0.032796,0.0847111,0.750028,0.915588,0.217909,0.351218,0.0501204,0.901541,0.114958,0.388554,0.953015,0.609201,0.589948,0.294093,0.543743,0.857527,0.955513,0.921657,0.415172,0.5377,0.423692,0.293102,0.0186813,0.232171,0.116773,0.827566,0.890243,0.481358,0.858756,0.0648866,0.235239,0.864826,0.316337,0.327156,0.747757,0.617564,0.77193,0.889323,0.967601,0.891027,0.673016,0.637591,0.505938,0.595778,0.746864,0.113438,0.965056,0.245044,0.222401,0.925711,0.14655,0.767471,0.7526,0.146677,0.892677,0.857282,0.567138,0.133503,0.993404,0.165148,0.81985,0.578264,0.666441,0.317654,0.814843,0.788618,0.836652,0.697506,0.343752,0.186642,0.853789,0.436058,0.53725,0.877758,0.588173,0.897606,0.89869,0.562303,0.2436,0.111981,0.242079,0.650047,0.735499,0.704486,0.285991,0.277302,0.959509,0.0838498,0.623454,0.177761,0.880095,0.944801,0.455494,0.752446,0.629041,0.521753,0.407691,0.835229,0.304356,0.907174,0.127927,0.720177,0.0379724,0.588797,0.14409,0.22454,0.989347,0.04352,0.345065,0.996253,0.766812,0.155427,0.342689,0.897307,0.863826,0.76123,0.274376,0.613519,0.340355,0.026744,0.175561,0.231152,0.999854,0.487795,0.354971,0.698732,0.386378,0.206723,0.260749,0.329871,0.617718,0.685112,0.2301,0.686313,0.545667,0.918188,0.971407,0.836502,0.951862,0.68932,0.679077,0.332958,0.124238,0.517721,0.124585,0.629334,0.594966,0.997814,0.0430021,0.558819,0.404969,0.940729,0.291504,0.838901,0.0927632,0.882851,0.864984,0.928117,0.25168,0.403696,0.663117,0.519319,0.472885,0.54304,0.563526,0.229648,0.414713,0.459686,0.220441,0.916667,0.739813,0.31532,0.299361,0.17601,0.500192,0.939022,0.38818,0.769513,0.809253,0.560452,0.0832161,0.797807,0.60346,0.866568,0.528449,0.0931368,0.233863,0.311531,0.709973,0.633148,0.00317311,0.275416,0.8244,0.45911,0.733199,0.364745,0.50715,0.152471,0.998935,0.773123,0.244535,0.0608872,0.399262,0.74732,0.632422,0.604463,0.122877,0.348433,0.208676,0.409329,0.425183,0.331378,0.33949,0.440886,0.513351,0.327155,0.456184,0.142657,0.797895,0.59121,0.234619,0.442128,0.335995,0.340067,0.772884,0.132733,0.455529,0.558996,0.430791,0.0394098,0.317698,0.0948963,0.415126,0.387676,0.546264,0.268087,0.736878,0.768601,0.933752,0.128641,0.592007,0.530615,0.357247,0.549838,0.37414,0.905857,0.0574406,0.44685,0.382187,0.812388,0.646541,0.274601,0.993157,0.485105,0.237781,0.875717,0.941468,0.970299,0.673194,0.618626,0.710963,0.18727,0.852218,0.138224,0.256588,0.21716,0.207537,0.905537,0.996868,0.853644,0.434905,0.345847,0.806372,0.35917,0.0793992,0.516388,0.774529,0.597648,0.491137,0.156819,0.310866,0.0746527,0.780659,0.613455,0.270798,0.906631,0.891144,0.820475,0.0217791,0.636388,0.429065,0.104154,0.805053,0.426025,0.394907,0.0350793,0.642577,0.675814,0.422317,0.874241,0.591547,0.106125,0.443186,0.287798,0.961039,0.782065,0.968724,0.805724,0.187442,0.0941715,0.290012,0.190207,0.175789,0.897337,0.0757155,0.63284,0.933115,0.544018,0.0590537,0.931619,0.255328,0.710438,0.222179,0.0659884,0.545639,0.0414861,0.97113,0.343885,0.863961,0.716438,0.560072,0.203165,0.0322117,0.842285,0.899605,0.872891,0.903411,0.683585,0.967414,0.365449,0.972019,0.428762,0.729064,0.775687,0.0446376,0.0250444,0.249435,0.0167486,0.945568,0.307337,0.634442,0.802387,0.477522,0.0599807,0.733006,0.299073,0.898965,0.707567,0.0874137,0.0759635,0.922415,0.212848,0.467482,0.614691,0.351781,0.0497427,0.017799,0.0557105,0.99778,0.981296,0.783602,0.132889,0.585734,0.67895,0.250567,0.635273,0.727987,0.150192,0.306536,0.834084,0.848126,0.404136,0.682696,0.505944,0.334278,0.0215847,0.270958,0.929725,0.623973,0.349501,0.606116,0.281366,0.499953,0.981824,0.442864,0.993872,0.868679,0.53457,0.677866,0.74438,0.397792,0.869992,0.467262,0.609616,0.319586,0.511531,0.864316,0.311527,0.463936,0.4394,0.649038,0.831131,0.466615,0.679659,0.284733,0.993655,0.134897,0.988867,0.432477,0.853668,0.512633,0.157408,0.829687,0.467709,0.373664,0.773888,0.915664,0.276733,0.608862,0.668018,0.834808,0.868572,0.860312,0.405274,0.466386,0.0853073,0.12193,0.272862,0.948887,0.583893,0.589788,0.304467,0.626926,0.409289,0.441965,0.0518436,0.869143,0.224183,0.181132,0.620719,0.318242,0.0379908,0.644911,0.538977,0.0750049,0.89897,0.40036,0.31701,0.773874,0.747864,0.750095,0.613575,0.125929,0.849863,0.311553,0.0757976,0.759265,0.576805,0.575873,0.972623,0.219669,0.409019,0.891447,0.559574,0.544993,0.284109,0.896626,0.723717,0.494955,0.879592,0.736174,0.206125,0.97007,0.313009,0.089146,0.855441,0.33757,0.929836,0.49225,0.132152,0.608246,0.487716,0.561946,0.123592,0.585956,0.927257,0.613432,0.934618,0.786195,0.308451,0.514066,0.295538,0.347464,0.197612,0.313096,0.620404,0.403764,0.0942692,0.600301,0.920514,0.377445,0.824328,0.571723,0.34375,0.634799,0.218678,0.90819,0.165867,0.836227,0.510972,0.340915,0.655097,0.237582,0.894004,0.292591,0.547463,0.924374,0.633191,0.781942,0.575304,0.765699,0.314525,0.576952,0.502274,0.904949,0.625384,0.901427,0.751575,0.0498794,0.910133,0.674154,0.931501,0.885615,0.338523,0.291701,0.157074,0.227782,0.662409,0.998481,0.635675,0.76171,0.043926,0.609168,0.344914,0.577598,0.275473,0.0700235,0.548732,0.149529,0.0582139,0.13203,0.611328,0.888833,0.0339382,0.665942,0.862317,0.166135,0.970142,0.567625,0.794084,0.695871,0.627096,0.573269,0.943635,0.327709,0.248512,0.67947,0.270805,0.575343,0.642066,0.553393,0.0786227,0.105798,0.939435,0.622499,0.289356,0.154419,0.671943,0.432063,0.531944,0.602097,0.951796,0.685936,0.0537013,0.409836,0.460111,0.310855,0.225823,0.238782,0.927098,0.920368,0.0867233,0.345338,0.619483,0.358293,0.890737,0.359839,0.255197,0.430896,0.274348,0.340755,0.724733,0.705961,0.519596,0.0568587,0.832421,0.344757,0.968478,0.0271025,0.84327,0.193949,0.887873,0.450441,0.5368,0.810836,0.766269,0.214308,0.126275,0.437346,0.737424,0.0186804,0.701418,0.315542,0.596734,0.586909,0.624097,0.0766344,0.865378,0.685532,0.388105,0.514109,0.100412,0.749313,0.362744,0.304031,0.894991,0.0965593,0.0125024,0.440079,0.300448,0.284808,0.647668,0.794608,0.629094,0.824126,0.445141,0.503192,0.950741,0.550567,0.471157,0.943399,0.19731,0.17992,0.414266,0.130013,0.0873524,0.495055,|0.487262,0.38887,0.568829,0.553451,0.619726,0.808761,0.682146,0.308331,0.205591,0.183254,0.195315,0.597372,0.0928539,0.612167,0.16329,0.209359,0.500355,0.693381,0.0132059,0.0260788,0.170704,0.0118874,0.239057,0.847435,0.206477,0.564045,0.131576,0.323621,0.660931,0.702147,0.242578,0.96789,0.534733,0.781015,0.359429,0.261601,0.478325,0.113286,0.83889,0.777322,0.409588,0.183674,0.588794,0.177917,0.673359,0.57515,0.673314,0.372499,0.23496,0.50068,0.733011,0.0560545,0.544784,0.500222,0.00211155,0.644199,0.222119,0.993005,0.400231,0.0622147,0.532932,0.720331,0.662624,0.181691,0.0582215,0.905075,0.935241,0.0613021,0.390436,0.194021,0.398313,0.523595,0.222235,0.472995,0.797281,0.260189,0.735658,0.380755,0.823977,0.68418,0.0850376,0.862098,0.379003,0.873416,0.0574142,0.680351,0.911551,0.105549,0.811856,0.404872,0.633806,0.467887,0.566302,0.402174,0.625922,0.139162,0.815029,0.573943,0.347978,0.71545,0.483262,0.470554,0.943334,0.846589,0.578463,0.00779748,0.274859,0.203812,0.914378,0.494923,0.41501,0.390289,0.357863,0.276541,0.356326,0.541348,0.669153,0.972929,0.138765,0.362378,0.651563,0.0924321,0.402534,0.778801,0.449353,0.73653,0.11029,0.890372,0.679773,0.153284,0.211572,0.144008,0.51357,0.61069,0.565277,0.402864,0.130604,0.443511,0.402982,0.800486,0.118491,0.0403527,0.778014,0.552459,0.294957,0.247166,0.281528,0.725613,0.0889755,0.0934073,0.482518,0.881973,0.16442,0.718784,0.361075,0.320304,0.776893,0.190581,0.963439,0.207195,0.941202,0.197937,0.708647,0.128011,0.113926,0.444173,0.0018301,0.857834,0.775726,0.158223,0.165687,0.299156,0.0646849,0.855103,0.926276,0.374689,0.794705,0.289553,0.875369,0.419732,0.0200977,0.670666,0.385278,0.275365,0.37251,0.243213,0.194295,0.251102,0.742355,0.277978,0.165449,0.988628,0.881079,0.615286,0.453014,0.164352,0.727873,0.91903,0.816253,0.558009,0.779161,0.493013,0.714326,0.0931411,0.390733,0.148166,0.394157,0.816819,0.971323,0.873624,0.748921,0.124562,0.265267,0.454501,0.669666,0.762104,0.400739,0.775795,0.504624,0.956056,0.371247,0.704622,0.0236682,0.294975,0.256102,0.855904,0.737284,0.596657,0.697399,0.577545,0.718645,0.537431,0.488792,0.813096,0.454872,0.815106,0.814501,0.797521,0.9941,0.745908,0.000539243,0.159201,0.185322,0.872794,0.37844,0.718956,0.0725178,0.841014,0.807776,0.17797,0.844688,0.950167,0.412158,0.643,0.526392,0.94145,0.79,0.242153,0.596839,0.589113,0.440705,0.0922358,0.0780787,0.730869,0.40565,0.68368,0.843511,0.527728,0.154662,0.892942,0.478155,0.0217937,0.754915,0.290455,0.612332,0.23164,0.860899,0.394007,0.719999,0.771121,0.182466,0.629048,0.641001,0.794445,0.89172,0.75151,0.0257661,0.639851,0.125452,0.176661,0.301668,0.665646,0.939405,0.91725,0.496442,0.775666,0.671964,0.798774,0.993935,0.981028,0.114167,0.443439,0.453565,0.962219,0.557885,0.207623,0.37564,0.415256,0.738673,0.244628,0.877197,0.901962,0.924063,0.289463,0.0484744,0.971374,0.385554,0.985054,0.493445,0.0815838,0.381293,0.661008,0.231265,0.836207,0.445093,0.985843,0.859825,0.328946,0.393356,0.223008,0.678296,0.432273,0.143866,0.275707,0.207914,0.637371,0.519401,0.64199,0.425134,0.117929,0.960168,0.478995,0.869351,0.0193595,0.740485,0.993079,0.385839,0.99202,0.965905,0.616497,0.994532,0.24632,0.0935978,0.486524,0.350649,0.4649,0.355642,0.301134,0.177057,0.55976,0.05626,0.255013,0.306012,0.203387,0.069191,0.0442688,0.0915778,0.407468,0.00843984,0.180506,0.671719,0.288264,0.676162,0.166799,0.970546,0.0197958,0.877905,0.408622,0.562577,0.825716,0.704362,0.951375,0.206377,0.437132,0.699608,0.353239,0.55355,0.839336,0.803744,0.4447,0.61203,0.131525,0.877445,0.599004,0.911484,0.31153,0.699092,0.386674,0.612887,0.447657,0.674859,0.258853,0.341718,0.114482,0.387381,0.802665,0.77512,0.251194,0.636869,0.692833,0.705511,0.140043,0.826705,0.889845,0.664426,0.215382,0.70091,0.153955,0.305871,0.180947,0.283918,0.181074,0.727065,0.127335,0.534484,0.438523,0.528963,0.713976,0.974494,0.0233862,0.167775,0.229031,0.854861,0.642015,0.716697,0.368862,0.0621452,0.191412,0.618931,0.669288,0.850155,0.200621,0.849989,0.6035,0.991711,0.438993,0.433073,0.71807,0.113246,0.580359,0.373488,0.0396288,0.12452,0.477398,0.744118,0.913467,0.00456393,0.16457,0.854625,0.309716,0.300248,0.472631,0.540007,0.109262,0.878034,0.662699,0.540419,0.246562,0.284532,0.430582,0.362154,0.92374,0.543749,0.964273,0.54066,0.253978,0.746408,0.478524,0.15912,0.827278,0.290318,0.0560195,0.463552,0.255199,0.857234,0.124046,0.847218,0.773682,0.117684,0.491124,0.440786,0.115043,0.63995,0.547395,0.245775,0.0301397,0.373071,0.631155,0.301526,0.482699,0.36784,0.154381,0.570413,0.103103,0.159069,0.844894,0.710708,0.416689,0.479503,0.665837,0.283514,0.835606,0.177818,0.491421,0.624605,0.209107,0.730651,0.253629,0.0874785,0.779941,0.88883,0.0758355,0.0150725,0.45382,0.676414,0.453821,0.455578,0.0601599,0.132587,0.473721,0.690126,0.516113,0.419108,0.138911,0.419781,0.853028,0.265302,0.310478,0.609114,0.603293,0.11031,0.714122,0.439358,0.892873,0.246603,0.504852,0.661631,0.0460088,0.859127,0.345529,0.0610236,0.865778,0.319698,0.0421966,0.884781,0.292919,0.932126,0.811334,0.641914,0.236568,0.106416,0.255082,0.403747,0.43224,0.0915526,0.0104632,0.703875,0.161606,0.981611,0.211891,0.35159,0.648302,0.327346,0.46902,0.769278,0.820751,0.777257,0.632665,0.0351722,0.333269,0.413871,0.185364,0.817859,0.151888,0.0512124,0.642492,0.680254,0.22884,0.494336,0.243726,0.410399,0.192902,0.463071,0.976768,0.711292,0.799828,0.553359,0.524563,0.926788,0.55668,0.176054,0.824476,0.726974,0.581235,0.590723,0.480412,0.454448,0.820982,0.188611,0.906345,0.572587,0.122716,0.444434,0.524865,0.297918,0.76312,0.570199,0.502231,0.700554,0.779998,0.21763,0.407187,0.771194,0.712838,0.743146,0.698564,0.041426,0.528728,0.631456,0.829414,0.834888,0.334796,0.233443,0.843805,0.220763,0.0766668,0.100383,0.178632,0.240534,0.945996,0.882957,0.594165,0.559645,0.72707,0.706065,0.741434,0.34477,0.175293,0.647618,0.763011,0.235481,0.845146,0.345514,0.875822,0.415467,0.138151,0.751475,0.0515141,0.20619,0.634651,0.455103,0.379332,0.232585,0.945249,0.140852,0.79313,0.253856,0.148581,0.450199,0.0920247,0.509013,0.202271,0.897647,0.773447,0.182747,0.705612,0.238477,0.573801,0.413305,0.529593,0.029332,0.940271,0.403954,0.116179,0.125696,0.169579,0.827064,0.309202,0.671259,0.596694,0.264746,0.586679,0.513672,0.952777,0.145469,0.388802,0.605778,0.891298,0.117084,0.262035,0.619502,0.996071,0.847256,0.402505,0.446657,0.402452,0.95633,0.589344,0.570872,0.526486,0.924951,0.707214,0.633987,0.510127,0.521399,0.966501,0.76038,0.0734934,0.354006,0.28634,0.33212,0.122833,0.41677,0.35169,0.866839,0.555722,0.534766,0.809244,0.932826,0.107834,0.908882,0.370956,0.0922093,0.669985,0.0916957,0.656428,0.671022,0.0343421,0.445451,0.176889,0.642758,0.276127,0.578294,0.380241,0.299513,0.271066,0.837478,0.743468,0.398772,0.977622,0.66839,0.730799,0.211772,0.926621,0.405249,0.89915,0.323175,0.537077,0.758418,0.389227,0.229179,0.762431,0.947009,0.0686694,0.250962,0.57777,0.494034,0.954065,0.36151,0.0634344,0.818481,0.482768,0.85397,0.527908,0.209921,0.887693,0.817784,0.720077,0.645645,0.81898,0.540104,0.990647,0.607935,0.989794,0.983681,0.97688,0.0944891,0.198182,0.733278,0.316447,0.617447,0.747028,0.379021,0.777998,0.987661,0.807939,0.506021,0.6331,0.397083,0.578478,0.284579,0.758853,0.0705839,0.424134,0.279256,0.112899,0.706357,0.0842238,0.736827,0.646081,0.106739,0.440161,0.973509,0.761215,0.993366,0.658316,0.386735,0.343775,0.630089,0.674958,0.849966,0.53689,0.806592,0.464105,0.755307,0.101025,0.654684,0.00925905,0.0309047,0.213178,0.715597,0.147053,0.113403,0.202552,0.561128,0.838364,0.541911,0.373844,0.607974,0.878921,0.324243,0.715274,0.0149284,0.926525,0.322019,0.717886,0.285339,0.195811,0.0365843,0.163595,0.293728,0.627236,0.275565,0.731982,0.564417,0.888352,0.229908,0.388316,0.421148,0.0356998,0.435331,0.994262,0.85227,0.970158,0.651307,0.642164,0.383733,0.268331,0.953536,0.543084,0.177555,0.320147,0.25158,0.224445,0.871301,0.393167,0.25766,0.966999,0.31779,0.395315,0.366385,0.338806,0.342686,0.604518,0.888409,0.1295,0.0528573,0.261179,0.955329,0.368339,0.512486,0.724364,0.530083,0.78479,0.91759,0.464022,0.414488,0.432112,0.894305,0.910808,0.438903,0.504243,0.319447,0.0739129,0.911886,0.501532,0.463716,0.130979,0.266704,0.307575,0.921658,0.709079,0.247238,0.14153,0.837653,0.17426,0.652756,0.311962,0.816316,0.466185,0.234611,0.171465,0.189684,0.0599017,0.270092,0.0511146,0.538101,0.408899,0.150903,0.0695836,0.903765,0.916429,0.604492,0.849855,0.0453574,0.916737,0.587416,0.146004,0.0449383,0.977904,0.22454,0.848873,0.661605,0.730516,0.666448,0.498837,0.104133,0.12277,0.0515527,0.654948,0.468824,0.904766,0.522888,0.742634,0.924637,0.249614,0.240692,0.58473,0.0861669,0.110566,0.208207,0.0411097,0.261195,0.626276,0.995349,0.28202,0.207614,0.238609,0.236253,0.792584,0.146818,0.286426,0.424274,0.910705,0.739344,0.759141,0.363953,0.110482,0.432289,0.524494,0.737965,0.428037,0.248031,0.828372,0.555883,0.286784,0.679118,0.786079,0.579048,0.225109,0.819007,0.0387365,0.606239,0.429923,0.887639,0.947005,0.12561,0.143549,0.773751,0.455547,|0.102972,0.422916,0.42673,0.569602,0.92826,0.460893,0.0696539,0.91909,0.511809,0.525639,0.03434,0.781801,0.716446,0.518018,0.795737,0.800912,0.00884068,0.749134,0.835882,0.767352,0.437291,0.00651777,0.772834,0.915063,0.397005,0.358332,0.126298,0.562816,0.275043,0.610529,0.64102,0.951628,0.07089,0.668643,0.66924,0.609273,0.516436,0.226093,0.897864,0.798007,0.762188,0.220872,0.770455,0.121572,0.571594,0.142887,0.836983,0.823188,0.128416,0.669288,0.44964,0.975782,0.350113,0.318487,0.364216,0.269094,0.97626,0.440768,0.100858,0.894602,0.49496,0.0246323,0.450899,0.992515,0.613385,0.896803,0.343364,0.577126,0.816234,0.928117,0.747538,0.147864,0.205305,0.0444456,0.340106,0.387309,0.742528,0.410219,0.989687,0.152895,0.351028,0.581876,0.485648,0.478202,0.652402,0.182419,0.811514,0.970471,0.00319386,0.630932,0.673284,0.193987,0.55459,0.951873,0.140448,0.186221,0.946803,0.728704,0.772665,0.60134,0.798744,0.530534,0.187775,0.281136,0.0706139,0.710722,0.907663,0.630878,0.754226,0.787813,0.992008,0.315632,0.227045,0.829118,0.925363,0.432492,0.340543,0.156047,0.176051,0.798018,0.753469,0.870406,0.116926,0.982018,0.228241,0.859653,0.628946,0.935256,0.598918,0.239652,0.119746,0.651296,0.453775,0.528593,0.372573,0.755749,0.491706,0.670709,0.208644,0.658074,0.208717,0.32903,0.573237,0.354113,0.320113,0.424809,0.95379,0.0410969,0.07189,0.528146,0.996555,0.303937,0.403668,0.901862,0.508366,0.365721,0.183994,0.703334,0.0921887,0.0816658,0.787045,0.944356,0.642641,0.750939,0.351532,0.888591,0.0402151,0.53739,0.397908,0.245299,0.730054,0.452047,0.42465,0.63953,0.885688,0.783147,0.613804,0.657429,0.89825,0.108074,0.599967,0.119921,0.541568,0.718339,0.132753,0.784208,0.0199365,0.724476,0.839896,0.837132,0.878338,0.722099,0.929784,0.353388,0.600075,0.217489,0.702136,0.927382,0.678372,0.797726,0.733157,0.510694,0.49231,0.71532,0.873414,0.429866,0.410303,0.499185,0.254067,0.574863,0.080119,0.4647,0.632679,0.3193,0.168157,0.6293,0.717699,0.894742,0.145586,0.0717657,0.824628,0.144163,0.544549,0.995678,0.00630164,0.244078,0.459917,0.721662,0.726835,0.094667,0.263633,0.963224,0.844873,0.226351,0.404717,0.730442,0.688051,0.362363,0.426737,0.377151,0.814139,0.368294,0.327975,0.105181,0.326109,0.492493,0.403296,0.152535,0.779611,0.34899,0.599184,0.421198,0.258762,0.134617,0.434292,0.192786,0.213971,0.737322,0.909151,0.0185812,0.248236,0.425188,0.848613,0.286355,0.111513,0.181062,0.211404,0.463428,0.0176081,0.297273,0.261771,0.316669,0.249214,0.675059,0.295362,0.432142,0.0222856,0.845792,0.000816286,0.599219,0.870746,0.539896,0.866501,0.177216,0.870616,0.836038,0.348121,0.748521,0.659114,0.208946,0.873675,0.346191,0.292604,0.456802,0.730297,0.752286,0.031144,0.195685,0.328461,0.81044,0.338615,0.317903,0.982961,0.282732,0.651936,0.759046,0.84276,0.606039,0.981188,0.125435,0.981831,0.216317,0.0530086,0.676568,0.357219,0.453241,0.310919,0.20204,0.396465,0.418381,0.315444,0.490999,0.693675,0.714015,0.329083,0.752678,0.354591,0.900189,0.554103,0.897919,0.230032,0.0798475,0.137485,0.676384,0.494024,0.0886826,0.893021,0.922195,0.753395,0.500183,0.635755,0.665114,0.278379,0.313308,0.470648,0.892693,0.607683,0.173225,0.420431,0.774547,0.930757,0.231611,0.524809,0.0707886,0.931549,0.129736,0.421043,0.952183,0.715195,0.943214,0.755844,0.0808656,0.43391,0.394003,0.617421,0.0300496,0.152321,0.00536954,0.138913,0.597784,0.856405,0.458454,0.478806,0.946414,0.458939,0.407451,0.633059,0.794967,0.361425,0.84718,0.38273,0.755641,0.0538878,0.279152,0.669593,0.915403,0.43534,0.297801,0.129941,0.508344,0.612866,0.661032,0.188888,0.0693343,0.204236,0.71706,0.339121,0.885981,0.147014,0.424045,0.0853551,0.819446,0.379024,0.991246,0.880192,0.976745,0.470608,0.949053,0.843016,0.827848,0.258674,0.158387,0.806262,0.0853599,0.763081,0.323992,0.283372,0.189704,0.733813,0.158995,0.52678,0.197655,0.671211,0.671455,0.734083,0.61127,0.753856,0.563076,0.426036,0.397082,0.425422,0.0864088,0.877974,0.519992,0.613892,0.618721,0.0272494,0.300261,0.252281,0.0388312,0.222901,0.955765,0.107911,0.0633292,0.293283,0.334174,0.929952,0.635806,0.305328,0.873555,0.606591,0.706317,0.103845,0.300345,0.687441,0.149171,0.405524,0.608027,0.116588,0.416229,0.184853,0.91719,0.123611,0.652003,0.0581428,0.454576,0.0747669,0.219019,0.310728,0.207377,0.757971,0.046198,0.82247,0.241032,0.303822,0.895001,0.0456759,0.15865,0.589105,0.188521,0.73969,0.117391,0.770024,0.479645,0.677447,0.240459,0.610005,0.298211,0.424435,0.63398,0.615198,0.468765,0.989473,0.710325,0.896035,0.779365,0.00943309,0.216046,0.796785,0.0676473,0.117175,0.639974,0.864309,0.732372,0.263199,0.344765,0.444579,0.76684,0.1178,0.0124523,0.477067,0.853766,0.282765,0.772402,0.958834,0.544107,0.16448,0.575711,0.0356126,0.23935,0.583559,0.514845,0.221474,0.699853,0.530919,0.971773,0.515149,0.0853423,0.640792,0.516693,0.516955,0.692044,0.423794,0.562331,0.984866,0.0772247,0.495525,0.671487,0.347184,0.274103,0.896987,0.722172,0.591631,0.0513189,0.452582,0.997106,0.394863,0.893583,0.156473,0.586253,0.19514,0.156447,0.508288,0.829057,0.604455,0.092729,0.354649,0.202663,0.87709,0.890586,0.0277643,0.0503718,0.15132,0.211007,0.88559,0.226802,0.964067,0.644889,0.248393,0.910283,0.00653476,0.385789,0.460635,0.934976,0.886224,0.239434,0.538721,0.180301,0.0385438,0.630361,0.849136,0.886909,0.590776,0.791233,0.395494,0.599205,0.481271,0.115778,0.15147,0.256627,0.71491,0.72107,0.954541,0.816168,0.0187607,0.037966,0.792919,0.735063,0.467446,0.599168,0.37369,0.779838,0.461875,0.706316,0.40056,0.410312,0.206995,0.870424,0.884755,0.632464,0.937054,0.331621,0.919111,0.461483,0.945962,0.975366,0.640475,0.0180932,0.173952,0.814776,0.256662,0.489812,0.45743,0.0123407,0.806458,0.837772,0.920972,0.41031,0.890848,0.337335,0.672937,0.912272,0.947474,0.956247,0.851972,0.835368,0.467406,0.55016,0.295218,0.224924,0.960864,0.178887,0.328801,0.841518,0.404159,0.145213,0.283816,0.102372,0.252916,0.455478,0.495275,0.202025,0.25065,0.400648,0.171184,0.523839,0.268651,0.504574,0.776031,0.754462,0.509786,0.00334805,0.311104,0.98935,0.725141,0.378651,0.614554,0.227124,0.725367,0.854314,0.947762,0.0911689,0.288788,0.636916,0.64668,0.323123,0.80178,0.166233,0.705638,0.677378,0.0822595,0.52265,0.910521,0.942328,0.948428,0.0203703,0.430658,0.598539,0.3123,0.624215,0.242748,0.329181,0.784424,0.300558,0.901931,0.192584,0.373862,0.815228,0.684017,0.755371,0.385432,0.336382,0.853611,0.257968,0.413019,0.394381,0.186021,0.833866,0.233002,0.432059,0.424175,0.815922,0.452254,0.695482,0.575477,0.831851,0.572452,0.623539,0.952445,0.219726,0.433666,0.540833,0.557963,0.269872,0.0798519,0.479737,0.257586,0.653811,0.69198,0.456929,0.903871,0.225051,0.672241,0.347071,0.382126,0.346704,0.764155,0.517792,0.296619,0.853877,0.908825,0.28377,0.789366,0.305619,0.55548,0.544701,0.144712,0.917781,0.534991,0.470896,0.738262,0.301375,0.0983488,0.485344,0.85067,0.490977,0.873935,0.0502664,0.578419,0.894504,0.580219,0.51136,0.550048,0.492468,0.304709,0.406378,0.915416,0.638666,0.0709224,0.876226,0.941925,0.646055,0.396809,0.795237,0.911803,0.976482,0.659333,0.763664,0.747844,0.89568,0.0685779,0.656575,0.140696,0.455697,0.194841,0.464475,0.865903,0.163496,0.246757,0.541154,0.280464,0.691829,0.934366,0.654361,0.37556,0.427516,0.465342,0.519365,0.236518,0.782972,0.15217,0.403312,0.59093,0.328075,0.531762,0.480117,0.437077,0.426497,0.937048,0.0989106,0.357814,0.456643,0.591571,0.961472,0.549547,0.0128127,0.0598291,0.66088,0.820704,0.687616,0.826853,0.315902,0.700539,0.967942,0.68879,0.155327,0.123054,0.595533,0.876339,0.00558585,0.685837,0.302936,0.233194,0.245773,0.0677484,0.306484,0.212022,0.599055,0.195269,0.546996,0.424343,0.740063,0.0513303,0.825799,0.763016,0.247663,0.208117,0.1989,0.599253,0.144715,0.391442,0.878612,0.974943,0.0998816,0.196763,0.289481,0.661628,0.567491,0.995744,0.973907,0.470832,0.274097,0.623115,0.519691,0.893639,0.323366,0.532393,0.763126,0.28551,0.159424,0.561304,0.383743,0.919827,0.0480554,0.951891,0.432438,0.239411,0.326506,0.151253,0.611772,0.334528,0.651901,0.28838,0.944215,0.919711,0.551907,0.231138,0.422852,0.4695,0.636651,0.682039,0.998678,0.961796,0.616608,0.946562,0.667303,0.41061,0.205551,0.835032,0.66164,0.564196,0.876294,0.5811,0.450894,0.742789,0.712116,0.821406,0.00192815,0.0263814,0.971544,0.0610879,0.730031,0.649332,0.268859,0.489652,0.0304784,0.192646,0.724181,0.703908,0.492437,0.953307,0.0650007,0.980699,0.38664,0.715837,0.218205,0.5308,0.284333,0.699621,0.633399,0.482226,0.512374,0.359854,0.279485,0.386097,0.0783436,0.759604,0.939152,0.142407,0.278895,0.153617,0.10981,0.906852,0.232384,0.626086,0.327089,0.173248,0.218604,0.0968382,0.66065,0.909638,0.743067,0.730825,0.266359,0.679813,0.777466,0.266133,0.381912,0.408961,0.520542,0.941552,0.681955,0.323703,0.405363,0.31163,0.847215,0.0440426,0.0838344,0.00271767,0.646874,0.142073,0.68354,0.971164,0.951476,0.236908,0.84949,0.0627112,0.536608,0.232568,0.678881,0.745428,0.771641,0.157124,0.0612832,0.614908,0.509822,0.249247,0.432748,0.123797,0.899876,0.888404,0.668384,0.134604,0.438236,0.138521,0.592614,0.694725,0.651744,0.74194,0.794696,|0.369478,0.431241,0.552622,0.230849,0.391133,0.0248927,0.0266245,0.841047,0.924227,0.698888,0.675084,0.861749,0.100707,0.564074,0.872089,0.672834,0.177168,0.757011,0.0721669,0.210538,0.366684,0.0245917,0.877279,0.000230908,0.0750304,0.666892,0.212654,0.36719,0.823825,0.612969,0.137514,0.0213509,0.380422,0.668599,0.521245,0.278772,0.911391,0.328364,0.549183,0.618993,0.969808,0.539279,0.328829,0.888331,0.881093,0.853361,0.98813,0.302893,0.473216,0.870438,0.293599,0.679851,0.609572,0.716512,0.357479,0.652623,0.931101,0.490134,0.406796,0.498322,0.699391,0.286893,0.0218191,0.477066,0.887392,0.199763,0.530166,0.422772,0.722362,0.873106,0.217366,0.757236,0.480375,0.463161,0.364609,0.719937,0.326544,0.812047,0.697101,0.578875,0.0305322,0.341976,0.717809,0.520333,0.297414,0.188592,0.739443,0.249955,0.35221,0.707497,0.311396,0.808853,0.44049,0.899639,0.432692,0.159486,0.460694,0.526095,0.233326,0.990573,0.749461,0.838579,0.515406,0.745703,0.617367,0.248083,0.529854,0.526466,0.0400858,0.833478,0.111553,0.528705,0.580664,0.118825,0.591513,0.248211,0.35088,0.220304,0.503476,0.224584,0.0513369,0.915515,0.860935,0.232167,0.00307894,0.714768,0.506269,0.915623,0.626655,0.574618,0.184117,0.99253,0.89757,0.473105,0.728953,0.694542,0.905292,0.0503745,0.439574,0.904175,0.0137953,0.335019,0.577867,0.841057,0.619726,0.438693,0.909083,0.0870485,0.084062,0.135119,0.603296,0.000950038,0.00317377,0.512261,0.482039,0.488723,0.88988,0.78386,0.814023,0.910677,0.785428,0.770859,0.980169,0.81409,0.536514,0.922216,0.97142,0.87289,0.438875,0.708099,0.634097,0.423437,0.903882,0.582539,0.875203,0.978658,0.705206,0.976556,0.989436,0.745704,0.653875,0.886585,0.311178,0.273585,0.127415,0.930292,0.582889,0.0329152,0.753231,0.0822474,0.788378,0.573888,0.962001,0.137616,0.774043,0.755422,0.275066,0.658945,0.120473,0.694155,0.0124548,0.684343,0.470465,0.181211,0.00458348,0.40049,0.328985,0.30567,0.4237,0.911967,0.0432776,0.0295058,0.371205,0.407111,0.0938429,0.298454,0.113871,0.694627,0.506284,0.883943,0.936622,0.917427,0.0365385,0.570157,0.143675,0.80806,0.209967,0.0947218,0.0606112,0.226905,0.0572,0.41383,0.364844,0.945155,0.775453,0.581305,0.529553,0.587284,0.320533,0.613407,0.0658653,0.328393,0.59537,0.956576,0.837801,0.537049,0.0607938,0.399201,0.989246,0.594133,0.204539,0.600114,0.657772,0.126434,0.380727,0.76559,0.152804,0.943695,0.828596,0.196274,0.0297838,0.610325,0.985287,0.269352,0.491565,0.224035,0.762901,0.61127,0.268571,0.996236,0.167752,0.187903,0.816096,0.696484,0.362366,0.617161,0.617305,0.924462,0.429899,0.180287,0.191227,0.44221,0.216248,0.784436,0.539595,0.8557,0.395128,0.197363,0.116996,0.464466,0.308414,0.731448,0.71279,0.410107,0.567746,0.20912,0.61904,0.833188,0.0846817,0.812396,0.294979,0.611603,0.370382,0.639287,0.89596,0.507632,0.199173,0.54435,0.786276,0.57692,0.136038,0.583085,0.304193,0.36736,0.08005,0.86077,0.355114,0.840562,0.918938,0.286805,0.656359,0.0592807,0.410412,0.897977,0.657521,0.756759,0.972436,0.247654,0.326361,0.657864,0.527492,0.307772,0.302715,0.776717,0.936619,0.0352135,0.238228,0.466177,0.845938,0.57096,0.229286,0.347126,0.852311,0.382263,0.302806,0.0921635,0.631146,0.285173,0.888303,0.818056,0.0126739,0.91136,0.0480014,0.585849,0.0335079,0.195958,0.158982,0.844845,0.103907,0.381321,0.0648491,0.452238,0.718164,0.983488,0.253544,0.964463,0.390351,0.762977,0.73323,0.512346,0.561952,0.383273,0.259392,0.797199,0.221776,0.943076,0.223856,0.211091,0.710215,0.497535,0.3835,0.894726,0.851486,0.0995009,0.28518,0.949137,0.0476236,0.156876,0.299147,0.582869,0.427351,0.142231,0.651285,0.101206,0.200559,0.614149,0.89485,0.433615,0.831808,0.696605,0.921989,0.903048,0.794453,0.383971,0.642737,0.254917,0.926595,0.0980951,0.882752,0.357963,0.428503,0.60511,0.355155,0.199813,0.523356,0.159352,0.439281,0.82567,0.446949,0.529123,0.344857,0.920792,0.298495,0.0355133,0.896834,0.51923,0.648939,0.229306,0.569219,0.113882,0.921859,0.443833,0.677623,0.58763,0.38857,0.175523,0.145662,0.127926,0.276213,0.762757,0.718064,0.149893,0.758628,0.309728,0.568255,0.0914891,0.1868,0.774872,0.978699,0.177865,0.31463,0.983352,0.867266,0.152984,0.873099,0.87902,0.591139,0.546102,0.099868,0.748111,0.868469,0.135668,0.699041,0.905186,0.986317,0.882032,0.0715899,0.199986,0.0780257,0.933744,0.0714544,0.207789,0.437448,0.631643,0.580015,0.730707,0.124585,0.728803,0.3118,0.218711,0.90773,0.141823,0.821798,0.160196,0.880972,0.869606,0.668022,0.926634,0.582421,0.361745,0.288712,0.490577,0.171028,0.828489,0.905745,0.860169,0.284448,0.507737,0.833292,0.0193202,0.835063,0.931965,0.307339,0.279796,0.659744,0.470095,0.84218,0.551754,0.911441,0.927007,0.801214,0.8013,0.785655,0.867996,0.423521,0.91974,0.0370573,0.170558,0.503438,0.738765,0.691975,0.4096,0.522556,0.762517,0.459454,0.518322,0.934312,0.0402333,0.309264,0.150521,0.341835,0.47094,0.786833,0.456092,0.609423,0.776495,0.981575,0.636682,0.684483,0.517356,0.403453,0.727736,0.761581,0.784048,0.309368,0.949661,0.592522,0.771709,0.920875,0.715852,0.324581,0.578854,0.938893,0.985376,0.915154,0.211997,0.594609,0.383445,0.847438,0.277424,0.0732253,0.678762,0.453409,0.99107,0.809826,0.814275,0.12324,0.877492,0.305981,0.907739,0.367094,0.864788,0.664224,0.626448,0.666094,0.109852,0.439944,0.469269,0.387439,0.879957,0.881033,0.269096,0.648229,0.634971,0.169792,0.834956,0.397206,0.764191,0.384833,0.365921,0.727257,0.59966,0.168674,0.739824,0.682457,0.451536,0.829053,0.731042,0.911775,0.00434172,0.472115,0.450314,0.23438,0.959949,0.762272,0.266358,0.230612,0.161663,0.0372446,0.245856,0.674856,0.234647,0.877176,0.115653,0.330731,0.129101,0.674933,7.88569e-05,0.780675,0.974187,0.282523,0.833598,0.956218,0.416272,0.411173,0.293307,0.832902,0.289047,0.458851,0.805995,0.355774,0.917912,0.716395,0.281145,0.383674,0.861476,0.349439,0.204337,0.0598617,0.477154,0.150311,0.884338,0.1849,0.857406,0.806226,0.782789,0.476737,0.779152,0.00381768,0.883831,0.687304,0.537426,0.910255,0.494361,0.335636,0.528196,0.985694,0.557811,0.00544411,0.831652,0.428421,0.4943,0.569009,0.249903,0.438518,0.896934,0.12546,0.77699,0.662924,0.15208,0.68364,0.992485,0.371063,0.842905,0.650338,0.731056,0.85613,0.987299,0.409378,0.24285,0.227554,0.962685,0.130991,0.283265,0.284534,0.435219,0.606637,0.757192,0.11937,0.0497282,0.0715127,0.169301,0.784387,0.0858479,0.525319,0.171181,0.865597,0.531353,0.0972106,0.301232,0.627057,0.780951,0.986797,0.393806,0.221264,0.543789,0.512086,0.783529,0.408649,0.20879,0.170119,0.926768,0.368893,0.807624,0.123119,0.981682,0.437818,0.395848,0.476147,0.600756,0.50301,0.653334,0.371329,0.127678,0.78688,0.633804,0.806294,0.406135,0.0489193,0.83229,0.951453,0.729463,0.527287,0.0532916,0.984325,0.250127,0.172966,0.0210544,0.535381,0.54543,0.433685,0.431182,0.860779,0.51803,0.721532,0.357414,0.566605,0.877647,0.599601,0.142489,0.705473,0.639578,0.00171906,0.761714,0.111771,0.398138,0.924095,0.0278459,0.347431,0.746465,0.290084,0.590489,0.583742,0.963793,0.235276,0.952118,0.901092,0.221753,0.879357,0.628332,0.222072,0.0835069,0.350648,0.460171,0.0632147,0.893779,0.792344,0.289855,0.439284,0.720947,0.173451,0.462812,0.831686,0.910641,0.95095,0.173158,0.711392,0.434181,0.201141,0.590607,0.870056,0.0763298,0.698777,0.604505,0.522818,0.443642,0.977863,0.0402095,0.629071,0.51564,0.977537,0.448517,0.615792,0.525958,0.0047434,0.366807,0.150028,0.614253,0.232502,0.406028,0.439395,0.889945,0.0140335,0.0349783,0.563891,0.386352,0.410762,0.430057,0.765215,0.757016,0.580372,0.688219,0.736542,0.954339,0.707949,0.0625048,0.441774,0.803874,0.392247,0.87878,0.331255,0.853441,0.364802,0.639126,0.630981,0.419917,0.304931,0.391317,0.238599,0.385393,0.0343635,0.487864,0.733551,0.0389823,0.678102,0.552093,0.211844,0.237409,0.572573,0.316817,0.313958,0.912385,0.571331,0.223171,0.0860348,0.208714,0.867704,0.90669,0.766663,0.30481,0.969801,0.320589,0.611495,0.0508525,0.750343,0.821384,0.818317,0.566267,0.52255,0.624986,0.732618,0.552767,0.149282,0.496553,0.566823,0.916977,0.778577,0.742025,0.826236,0.510022,0.300888,0.0952786,0.278024,0.225259,0.175609,0.443233,0.191236,0.446707,0.733253,0.374931,0.135198,0.133995,0.507527,0.0704737,0.564788,0.828635,0.861807,0.892086,0.465568,0.031465,0.148895,0.318873,0.58946,0.0519173,0.438892,0.942737,0.808603,0.737523,0.581745,0.476817,0.604865,0.133186,0.194885,0.82467,0.504691,0.759471,0.829975,0.0632347,0.11177,0.816331,0.740722,0.389314,0.940562,0.294312,0.843987,0.810864,0.691496,0.892222,0.644783,0.177676,0.43505,0.472293,0.986182,0.655665,0.85373,0.971832,0.0224099,0.346059,0.74381,0.311069,0.910816,0.589165,0.298507,0.0935101,0.702439,0.101607,0.316579,0.36906,0.17917,0.858324,0.0237113,0.844374,0.678303,0.514066,0.116746,0.550415,0.0648707,0.109187,0.807399,0.00608653,0.526368,0.823014,0.177926,0.40781,0.566517,0.748299,0.241683,0.589884,0.270698,0.91462,0.0333267,0.0577067,0.283762,0.0154012,0.466912,0.289195,0.660425,0.612615,0.876379,0.811242,0.833325,0.636658,0.361218,0.817901,0.404841,0.275105,0.949881,0.938252,0.166778,0.790548,0.563577,0.990802,0.119752,0.739663,0.556965,0.234385,0.283378,0.141576,0.821303,0.0543525,|0.0811049,0.0621502,0.00969177,0.408338,0.863095,0.205201,0.772466,0.0141492,0.484907,0.328944,0.532178,0.303059,0.191711,0.213153,0.838683,0.649995,0.808498,0.945838,0.191238,0.0738837,0.316354,0.739255,0.721098,0.609553,0.14813,0.19175,0.742789,0.508645,0.320896,0.424523,0.153099,0.212629,0.146813,0.450108,0.471808,0.0232671,0.317869,0.735542,0.554234,0.962523,0.521056,0.318168,0.656239,0.552918,0.636039,0.103198,0.024235,0.957583,0.990853,0.777357,0.957075,0.920368,0.969526,0.469253,0.644298,0.348393,0.012391,0.633574,0.756392,0.546704,0.148709,0.900356,0.504107,0.677327,0.650069,0.981602,0.732849,0.235596,0.138695,0.985786,0.837313,0.516217,0.337802,0.301104,0.231649,0.992912,0.485903,0.0460506,0.902526,0.634483,0.525731,0.423927,0.720435,0.769284,0.87114,0.030068,0.00192136,0.518697,0.592564,0.742029,0.122089,0.670253,0.694191,0.295818,0.149097,0.864287,0.1653,0.962951,0.893271,0.0442891,0.344494,0.293694,0.192421,0.432805,0.826426,0.234329,0.243951,0.0156762,0.915904,0.602806,0.589831,0.449745,0.375456,0.109769,0.705955,0.0710346,0.151629,0.597029,0.527414,0.744393,0.823587,0.786532,0.0800157,0.477338,0.943038,0.597903,0.439556,0.815287,0.864466,0.461432,0.23204,0.24323,0.0888265,0.427994,0.270681,0.735876,0.318431,0.765679,0.353455,0.0762925,0.694747,0.726604,0.0453246,0.271828,0.507105,0.849616,0.334304,0.602229,0.155927,0.0499361,0.290726,0.762406,0.165989,0.247083,0.801127,0.274369,0.335275,0.951857,0.11237,0.919296,0.548869,0.640898,0.485569,0.069468,0.818071,0.227151,0.740209,0.117634,0.079823,0.254263,0.909872,0.815874,0.939216,0.250726,0.938359,0.812168,0.14427,0.827493,0.83703,0.154529,0.797469,0.320028,0.227452,0.704709,0.583592,0.540794,0.850995,0.00418562,0.975981,0.177639,0.615168,0.682661,0.975852,0.917038,0.910227,0.458159,0.721033,0.274739,0.65163,0.429222,0.113823,0.760202,0.661268,0.393327,0.0514558,0.362883,0.967755,0.436491,0.354343,0.445467,0.879247,0.989533,0.364433,0.205675,0.682205,0.529244,0.132507,0.132856,0.791154,0.111881,0.278821,0.0513347,0.856526,0.776046,0.0893643,0.0992893,0.278882,0.724072,0.936009,0.45602,0.434524,0.668109,0.277316,0.793941,0.910607,0.663553,0.673253,0.207256,0.427865,0.299476,0.895878,0.0911683,0.0896925,0.566356,0.48419,0.17681,0.0412927,0.0162078,0.633501,0.216829,0.900593,0.111543,0.84786,0.329071,0.828446,0.146944,0.194203,0.488688,0.406726,0.904394,0.00850999,0.322607,0.0308588,0.368351,0.210679,0.0717461,0.315345,0.0525408,0.401742,0.437997,0.716257,0.57409,0.80834,0.603473,0.204999,0.542698,0.661706,0.643954,0.635433,0.0612776,0.134097,0.298954,0.616335,0.826098,0.851587,0.214844,0.881851,0.0191273,0.719387,0.981001,0.959195,0.0190963,0.25167,0.683738,0.894768,0.0744717,0.342414,0.162618,0.0412463,0.362634,0.450722,0.840252,0.372331,0.261482,0.0106974,0.0439655,0.629529,0.143664,0.588891,0.848124,0.295328,0.0256545,0.517237,0.55109,0.408067,0.293607,0.29584,0.404148,0.200911,0.557839,0.425041,0.923622,0.0140643,0.395336,0.403472,0.639602,0.358317,0.260314,0.759274,0.220048,0.932464,0.0284126,0.411786,0.314601,0.182565,0.988593,0.489862,0.831178,0.51432,0.943168,0.445368,0.950587,0.17161,0.535701,0.844398,0.701203,0.753179,0.453558,0.376853,0.926264,0.594592,0.522108,0.776973,0.252932,0.458077,0.795568,0.46963,0.173903,0.47613,0.720514,0.695951,0.619401,0.755538,0.0375559,0.514736,0.168081,0.502712,0.948524,0.609791,0.323855,0.856667,0.317928,0.773659,0.0519643,0.454411,0.0917586,0.420882,0.318972,0.466165,0.317265,0.666405,0.357741,0.138878,0.169903,0.365136,0.12138,0.0731199,0.796793,0.797866,0.142203,0.654152,0.63064,0.531394,0.72682,0.540911,0.0604591,0.368517,0.597891,0.792896,0.270171,0.518894,0.411056,0.309313,0.92114,0.06714,0.216695,0.727531,0.582123,0.400805,0.38119,0.477081,0.992929,0.460866,0.741485,0.981315,0.309335,0.775032,0.0126446,0.328555,0.692866,0.624165,0.0262637,0.00512248,0.4201,0.69584,0.0956918,0.115838,0.43804,0.702188,0.512022,0.950142,0.249814,0.937208,0.348298,0.221234,0.253154,0.906816,0.732575,0.727202,0.461293,0.0716138,0.904439,0.290497,0.443303,0.545285,0.574369,0.958414,0.186419,0.507394,0.266847,0.100359,0.885106,0.911151,0.928536,0.900691,0.649896,0.729333,0.873821,0.544432,0.553805,0.664841,0.508976,0.738414,0.793606,0.901394,0.836689,0.00499797,0.229775,0.896904,0.788092,0.939089,0.834659,0.319465,0.682377,0.4901,0.879162,0.330582,0.26511,0.32764,0.573778,0.640141,0.942143,0.0338976,0.661557,0.314896,0.986817,0.361092,0.112731,0.585998,0.126781,0.0522732,0.135542,0.119908,0.467391,0.273973,0.806117,0.680245,0.739009,0.8937,0.608133,0.249166,0.747658,0.64545,0.437477,0.662838,0.986885,0.390134,0.714126,0.355879,0.612939,0.197495,0.242341,0.415697,0.120231,0.981533,0.605952,0.606491,0.965011,0.484581,0.916455,0.732414,0.411536,0.7892,0.377589,0.796448,0.470089,0.71926,0.950457,0.0587077,0.15683,0.553691,0.375221,0.453453,0.724365,0.487091,0.738554,0.222581,0.359807,0.574643,0.324678,0.0585054,0.0397359,0.733168,0.360091,0.130749,0.169885,0.782432,0.892997,0.519174,0.221051,0.812155,0.311844,0.274433,0.171985,0.719716,0.432056,0.436731,0.956004,0.135385,0.52893,0.911746,0.413266,0.151033,0.468006,0.236399,0.47823,0.804061,0.792649,0.100378,0.486375,0.786676,0.655346,0.43434,0.845695,0.801314,0.467704,0.917253,0.519805,0.508722,0.968882,0.367036,0.507576,0.680609,0.968578,0.124558,0.524175,0.806415,0.0172525,0.430821,0.955648,0.683221,0.639364,0.208035,0.0957036,0.960255,0.377285,0.0459321,0.768632,0.892437,0.976911,0.267869,0.355176,0.289078,0.0359223,0.494661,0.448939,0.538817,0.568032,0.255598,0.088771,0.302722,0.359268,0.32621,0.158485,0.767073,0.833204,0.460362,0.295183,0.836177,0.19791,0.14395,0.398611,0.0972756,0.383208,0.244588,0.0477798,0.933336,0.33485,0.39641,0.455714,0.466159,0.481886,0.684356,0.274402,0.321425,0.502651,0.074715,0.180745,0.500726,0.0639982,0.149605,0.624594,0.0718677,0.448742,0.278524,0.705865,0.741747,0.979631,0.952131,0.443564,0.807706,0.406365,0.0737942,0.587967,0.121588,0.584311,0.70408,0.46791,0.700326,0.481823,0.374348,0.863744,0.397114,0.162271,0.030625,0.458371,0.413271,0.581934,0.362728,0.199291,0.528051,0.247695,0.598388,0.275496,0.366207,0.481576,0.766299,0.52737,0.0450577,0.105985,0.481707,0.574913,0.98392,0.973062,0.819038,0.645562,0.739074,0.916301,0.449759,0.451481,0.666689,0.371136,0.876275,0.20319,0.351813,0.896007,0.888174,0.759194,0.437728,0.405944,0.460289,0.0900691,0.917131,0.941552,0.468847,0.486754,0.110341,0.75602,0.680832,0.701895,0.0854393,0.562961,0.545364,0.105025,0.611836,0.526834,0.677769,0.626369,0.439321,0.415101,0.882525,0.85212,0.633359,0.64565,0.594591,0.828885,0.502998,0.378804,0.0462599,0.923597,0.850155,0.725412,0.738661,0.555028,0.492947,0.575319,0.502371,0.417824,0.405659,0.0562366,0.958457,0.274119,0.514305,0.925211,0.932036,0.643273,0.35281,0.847192,0.238636,0.295558,0.25342,0.274401,0.440174,0.0264797,0.451075,0.547627,0.200518,0.710087,0.197908,0.0147486,0.9883,0.325528,0.921717,0.924329,0.165739,0.485694,0.0560957,0.0490044,0.576525,0.949774,0.0179526,0.46709,0.998768,0.00338936,0.0253369,0.640004,0.273669,0.202007,0.808541,0.390821,0.801367,0.937958,0.452156,0.368001,0.371165,0.931508,0.241327,0.260963,0.784217,0.309309,0.49871,0.103003,0.823859,0.169191,0.0455883,0.646862,0.830433,0.0919695,0.800605,0.431294,0.308796,0.684834,0.53689,0.792296,0.58068,0.645824,0.749763,0.433713,0.203116,0.290432,0.0491624,0.12858,0.427621,0.695651,0.810808,0.44868,0.0473173,0.550163,0.0306589,0.868863,0.807962,0.757522,0.303768,0.957397,0.140032,0.497949,0.863319,0.860808,0.491942,0.27293,0.832557,0.872081,0.648903,0.354789,0.476252,0.969894,0.569912,0.393524,0.284165,0.735879,0.123902,0.446871,0.572471,0.749979,0.250919,0.856471,0.0507211,0.797338,0.346619,0.898402,0.925075,0.471757,0.11892,0.844193,0.627676,0.438819,0.799052,0.433952,0.399327,0.308989,0.604799,0.905091,0.451435,0.341465,0.936052,0.922519,0.356605,0.0305454,0.106621,0.20825,0.150573,0.736103,0.709731,0.123563,0.0996585,0.79568,0.272431,0.57054,0.395712,0.758262,0.310138,0.270525,0.0756907,0.948493,0.500227,0.8712,0.515335,0.669637,0.928228,0.728005,0.691952,0.453146,0.892997,0.506799,0.232077,0.836799,0.90545,0.384977,0.445244,0.32085,0.876717,0.510253,0.192439,0.710445,0.367388,0.885215,0.794645,0.399443,0.500222,0.495802,0.699963,0.280692,0.196549,0.859115,0.349843,0.0274888,0.532682,0.544579,0.572003,0.42844,0.0717757,0.106871,0.0265965,0.0332216,0.355714,0.536872,0.209059,0.775187,0.92222,0.826956,0.341148,0.00847608,0.197832,0.400631,0.692749,0.183433,0.215703,0.171348,0.187452,0.619314,0.370044,0.462065,0.221498,0.200099,0.90716,0.00869018,0.372321,0.523107,0.78602,0.373876,0.640889,0.663307,0.197221,0.587441,0.772766,0.661502,0.170248,0.820443,0.0858536,0.131066,0.924385,0.702079,0.541586,0.845853,0.697435,0.5664,0.277374,0.864503,0.294074,0.82569,0.739264,0.614707,0.0648347,0.360759,0.594764,0.189518,0.473453,0.277642,0.887599,0.640145,0.251914,0.239923,0.536944,0.466156,0.830343,0.564028,0.424557,0.626811,0.0297624,0.341456,0.748129,0.453856,0.723423,0.601455,0.395758,0.641852,0.22197,0.925349,0.174949,0.760314,|0.606884,0.357692,0.232373,0.355136,0.807696,0.101098,0.238791,0.00216502,0.253041,0.995674,0.898541,0.536016,0.445874,0.745911,0.682823,0.929646,0.392758,0.89096,0.947568,0.475817,0.516887,0.165866,0.579338,0.923649,0.593899,0.0562328,0.380065,0.95917,0.347507,0.565226,0.231404,0.833042,0.955453,0.481011,0.0301989,0.329882,0.512145,0.14094,0.969217,0.233659,0.380549,0.756521,0.20171,0.598652,0.432817,0.145992,0.484384,0.923424,0.47744,0.436934,0.0139034,0.958514,0.747746,0.0518459,0.59176,0.398878,0.487695,0.53605,0.206532,0.671557,0.689916,0.87518,0.992894,0.283693,0.895881,0.843382,0.755111,0.201006,0.989649,0.843113,0.753711,0.717599,0.0257513,0.614453,0.875356,0.224873,0.580592,0.538155,0.178184,0.565056,0.712658,0.194429,0.345496,0.170279,0.939825,0.0910565,0.056666,0.0397972,0.40138,0.708196,0.60441,0.840126,0.194388,0.413322,0.88414,0.161711,0.789311,0.364885,0.582235,0.082972,0.184233,0.64665,0.881254,0.986433,0.0469001,0.892357,0.31831,0.518363,0.0180401,0.606974,0.732221,0.518602,0.024352,0.652946,0.435238,0.0543621,0.908762,0.484179,0.00571257,0.472834,0.386462,0.184609,0.0948215,0.725664,0.284352,0.399358,0.460248,0.798546,0.557755,0.131078,0.230413,0.834774,0.606164,0.35799,0.135068,0.33603,0.617583,0.842038,0.148122,0.813446,0.281852,0.598617,0.172493,0.349155,0.0743213,0.943651,0.328265,0.622904,0.584853,0.13171,0.774258,0.533208,0.859751,0.410982,0.786865,0.0533092,0.574429,0.852058,0.283027,0.491872,0.568711,0.341921,0.298433,0.120554,0.953337,0.071222,0.340019,0.355029,0.375722,0.173051,0.0745021,0.146729,0.55972,0.0888238,0.540555,0.759993,0.326999,0.971309,0.397076,0.750186,0.783204,0.325434,0.323586,0.974211,0.463976,0.3927,0.394467,0.517449,0.401353,0.584121,0.307527,0.53609,0.742429,0.574444,0.919863,0.530105,0.0041796,0.867277,0.664568,0.0762046,0.412114,0.67661,0.938901,0.726282,0.264917,0.559434,0.712235,0.819713,0.137213,0.898709,0.779241,0.200148,0.703419,0.806514,0.0447044,0.224664,0.729242,0.287286,0.0585657,0.814352,0.266239,0.295608,0.147963,0.583835,0.324837,0.276126,0.647098,0.977533,0.561316,0.00597274,0.681731,0.0456095,0.160452,0.745719,0.112987,0.722066,0.666274,0.782596,0.841483,0.241138,0.293374,0.622673,0.165836,0.709033,0.328198,0.904487,0.622314,0.852278,0.33998,0.479123,0.364907,0.418244,0.0750173,0.226623,0.944943,0.555519,0.0365047,0.9036,0.645471,0.289836,0.806058,0.105146,0.822371,0.560871,0.759546,0.560047,0.536667,0.296875,0.25572,0.970299,0.889791,0.728957,0.978959,0.556601,0.608798,0.255846,0.0725647,0.871066,0.132156,0.834508,0.0563917,0.170981,0.788036,0.753712,0.881663,0.937536,0.463181,0.349493,0.986944,0.388498,0.326265,0.23873,0.228153,0.165442,0.51675,0.511336,0.511873,0.647767,0.69693,0.545326,0.202438,0.00143313,0.617461,0.753438,0.845336,0.772272,0.772426,0.985553,0.435996,0.5504,0.42697,0.320121,0.1643,0.674905,0.701603,0.202525,0.0397113,0.193914,0.355105,0.300503,0.967944,0.591798,0.201471,0.527393,0.0165746,0.208035,0.135971,0.662895,0.84078,0.42322,0.769471,0.509697,0.170378,0.469661,0.44217,0.452948,0.753097,0.969025,0.773832,0.671688,0.55498,0.679575,0.779206,0.210186,0.0725803,0.401991,0.138511,0.609124,0.928651,0.0558072,0.0868533,0.244289,0.292782,0.816704,0.142031,0.646592,0.563589,0.341719,0.442601,0.994133,0.553643,0.697478,0.592383,0.989704,0.447248,0.0536187,0.481093,0.00853038,0.870714,0.680512,0.920978,0.238349,0.404996,0.105792,0.79894,0.0911489,0.866718,0.535954,0.525811,0.0736743,0.444508,0.206715,0.569995,0.121087,0.135971,0.524269,0.787874,0.174049,0.0429592,0.0943193,0.850253,0.643773,0.825023,0.993027,0.230905,0.395834,0.748985,0.368213,0.724961,0.453627,0.0324325,0.550223,0.36051,0.230314,0.305893,0.122156,0.917572,0.673146,0.327144,0.363843,0.268981,0.160722,0.671167,0.927055,0.620298,0.628823,0.395491,0.980455,0.788563,0.788026,0.344958,0.348665,0.700286,0.285519,0.761192,0.0528264,0.425437,0.780728,0.951571,0.523727,0.141505,0.405278,0.600948,0.332613,0.0998242,0.0155268,0.0417427,0.356711,0.324692,0.59236,0.314696,0.385714,0.495152,0.954604,0.362395,0.0394019,0.278889,0.0734954,0.78779,0.904058,0.544705,0.00365609,0.935038,0.420037,0.597778,0.872842,0.0979319,0.158004,0.0434756,0.0725297,0.156757,0.437809,0.829388,0.0878925,0.166386,0.722374,0.0938121,0.315331,0.790101,0.0783058,0.111088,0.914618,0.196842,0.629316,0.313046,0.405579,0.0522647,0.909687,0.373138,0.947621,0.52655,0.36615,0.594788,0.668347,0.890395,0.83828,0.285554,0.851671,0.960305,0.892025,0.934411,0.130525,0.163369,0.268801,0.690399,0.390862,0.538319,0.183636,0.568121,0.572311,0.741914,0.693048,0.7335,0.2332,0.289572,0.964108,0.691258,0.471888,0.408596,0.340425,0.163281,0.528041,0.0555739,0.572674,0.037842,0.862848,0.0154101,0.963742,0.476865,0.861219,0.684831,0.137313,0.427966,0.472278,0.260163,0.870398,0.722879,0.0194762,0.711672,0.0712642,0.130116,0.0226653,0.437757,0.0503117,0.762211,0.786581,0.725102,0.387187,0.260091,0.306815,0.24215,0.941559,0.502322,0.37237,0.238267,0.0626706,0.099659,0.433838,0.85811,0.618669,0.765557,0.516405,0.459565,0.403047,0.215458,0.0157993,0.0243471,0.408254,0.211491,0.651465,0.31231,0.958833,0.906204,0.795891,0.549371,0.880974,0.78179,0.663343,0.377849,0.0876409,0.398751,0.4362,0.83464,0.835987,0.339036,0.138303,0.157289,0.0332792,0.0647138,0.453505,0.0593132,0.76086,0.0580337,0.342832,0.96509,0.882242,0.945841,0.382003,0.735322,0.911166,0.455168,0.824107,0.512263,0.442683,0.721402,0.309161,0.0584874,0.573736,0.19745,0.0837765,0.505102,0.276524,0.810184,0.126167,0.432268,0.920626,0.378357,0.857942,0.426401,0.499639,0.867315,0.135974,0.226731,0.455881,0.460778,0.240001,0.963793,0.645292,0.514765,0.130514,0.804106,0.745802,0.294118,0.266958,0.906143,0.582244,0.386594,0.265162,0.900664,0.755302,0.477605,0.030398,0.309501,0.318263,0.0477655,0.498571,0.738328,0.0694042,0.509096,0.177861,0.757505,0.158021,0.0653506,0.384187,0.289778,0.650975,0.455023,0.950655,0.328888,0.992075,0.109333,0.392011,0.314824,0.854459,0.723451,0.849453,0.358632,0.0242488,0.575383,0.36868,0.258988,0.513854,0.472365,0.380075,0.487187,0.494318,0.830951,0.791976,0.0208382,0.905696,0.202653,0.234918,0.13258,0.401511,0.753806,0.334967,0.455633,0.186375,0.677502,0.722,0.127609,0.591066,0.429467,0.86656,0.896175,0.670293,0.444093,0.751584,0.256478,0.606907,0.190288,0.175391,0.275988,0.968484,0.681386,0.098949,0.0286367,0.384016,0.945746,0.647738,0.231977,0.425634,0.857413,0.0333787,0.0806797,0.771849,0.706949,0.0969709,0.572574,0.258348,0.777333,0.0931995,0.0626104,0.294579,0.141011,0.623599,0.22286,0.635016,0.841739,0.0670525,0.678845,0.340683,0.179695,0.332765,0.701315,0.177434,0.6512,0.97591,0.877064,0.880988,0.491286,0.28663,0.107403,0.186633,0.153456,0.203432,0.242861,0.374793,0.450226,0.0578126,0.633353,0.478962,0.896998,0.322438,0.608511,0.74853,0.887273,0.0341845,0.545716,0.737817,0.26252,0.744516,0.677192,0.485861,0.416034,0.62656,0.886868,0.652546,0.93825,0.337921,0.891099,0.95954,0.835385,0.4596,0.763654,0.507514,0.639305,0.683584,0.331752,0.11299,0.197416,0.326629,0.280569,0.570372,0.211423,0.244252,0.0346221,0.187608,0.551169,0.216875,0.98492,0.00808686,0.103887,0.0677223,0.976712,0.0649636,0.357171,0.256184,0.712045,0.696802,0.292034,0.43967,0.515656,0.737337,0.977269,0.144433,0.408009,0.570383,0.529743,0.627274,0.674688,0.860903,0.951546,0.588367,0.609486,0.961538,0.303291,0.570057,0.741273,0.402976,0.777399,0.0703571,0.34789,0.50061,0.580192,0.876124,0.540898,0.728935,0.850992,0.602058,0.688509,0.0705303,0.629276,0.790121,0.816173,0.290496,0.600644,0.144821,0.638878,0.701403,0.0021897,0.753693,0.77347,0.300686,0.58985,0.754278,0.24951,0.11256,0.077858,0.688776,0.764681,0.728039,0.257916,0.503478,0.350461,0.176325,0.894362,0.641106,0.496043,0.775078,0.866861,0.510726,0.923558,0.945637,0.827842,0.489267,0.543603,0.446125,0.514198,0.682748,0.847031,0.827378,0.261137,0.102557,0.053351,0.260115,0.860392,0.0803266,0.640943,0.746651,0.200486,0.354484,0.868859,0.806475,0.433102,0.181153,0.595801,0.935476,0.100789,0.364172,0.388495,0.327909,0.583794,0.252006,0.576835,0.95462,0.507491,0.416342,0.917475,0.653077,0.214718,0.540477,0.13456,0.363559,0.198066,0.573113,0.495979,0.106977,0.951811,0.900597,0.501281,0.811784,0.167464,0.757977,0.684924,0.851068,0.611983,0.34038,0.763918,0.350994,0.0185825,0.566691,0.941434,0.151045,0.885153,0.298765,0.282825,0.146261,0.810903,0.437618,0.408968,0.264713,0.0637226,0.451285,0.205769,0.673431,0.27497,0.905267,0.617825,0.898275,0.376251,0.966367,0.508836,0.652127,0.832763,0.622866,0.210745,0.942054,0.55988,0.12385,0.490238,0.515681,0.1896,0.640311,0.171595,0.692827,0.87667,0.562656,0.0131639,0.908178,0.337146,0.0383263,0.0831158,0.624531,0.725893,0.0108148,0.81486,0.889257,0.311361,0.292117,0.859895,0.452443,0.618113,0.858254,0.359962,0.395193,0.866521,0.945978,0.501497,0.0736439,0.507668,0.679617,0.215177,0.750264,0.144897,0.447367,0.174208,0.659138,0.0488113,0.185252,0.0146572,0.992956,0.624831,0.61486,0.952587,0.33795,0.263022,0.290124,0.814462,0.862491,0.511382,0.404859,0.178338,0.480852,0.132311,0.6125,0.29514,0.0875926,0.38345,0.910719,|0.723661,0.312007,0.630322,0.49905,0.183992,0.125411,0.106797,0.801431,0.156995,0.0475448,0.12272,0.884126,0.43267,0.510063,0.651469,0.967398,0.12367,0.0656139,0.745769,0.479908,0.983572,0.414769,0.642645,0.291881,0.994239,0.982091,0.965927,0.922071,0.502803,0.603172,0.42935,0.999669,0.957282,0.457919,0.500461,0.0881204,0.0949313,0.558834,0.433256,0.0497586,0.635213,0.536308,0.609361,0.161586,0.778516,0.039412,0.813077,0.0290457,0.0741107,0.397589,0.860741,0.223709,0.145589,0.850704,0.910723,0.335812,0.805451,0.0635449,0.983821,0.535723,0.632707,0.000910163,0.848139,0.366157,0.0527077,0.728121,0.755134,0.0334003,0.486715,0.348707,0.487512,0.566208,0.130621,0.54836,0.00790805,0.838112,0.772082,0.389003,0.866146,0.359077,0.218094,0.726514,0.423109,0.570936,0.127713,0.501991,0.685517,0.0941185,0.369766,0.0582074,0.540239,0.998856,0.226228,0.851313,0.903724,0.384095,0.959455,0.492529,0.691921,0.952088,0.602272,0.0216274,0.757588,0.670616,0.223915,0.328322,0.933159,0.893683,0.635776,0.702486,0.378679,0.0566621,0.602843,0.154363,0.844189,0.134625,0.443591,0.712517,0.778251,0.986122,0.405374,0.995469,0.153643,0.691677,0.361064,0.469103,0.18401,0.452297,0.437192,0.0780845,0.448822,0.490821,0.551381,0.490407,0.636157,0.144447,0.497521,0.110165,0.580952,0.907094,0.712891,0.0719875,0.653417,0.373614,0.957937,0.126025,0.763987,0.377739,0.915616,0.530122,0.875765,0.963945,0.330742,0.300709,0.706338,0.452495,0.621048,0.895324,0.598566,0.826716,0.411571,0.245868,0.0479299,0.699996,0.917301,0.00415647,0.317259,0.672416,0.963485,0.204872,0.15369,0.393776,0.202745,0.92855,0.101184,0.175141,0.976178,0.280858,0.316591,0.713544,0.245377,0.953913,0.340891,0.623145,0.444838,0.839918,0.26817,0.357593,0.519842,0.207925,0.373613,0.696589,0.167925,0.635916,0.620663,0.479917,0.830909,0.896371,0.317888,0.317651,0.161492,0.0670696,0.27619,0.357463,0.131352,0.544048,0.117945,0.739732,0.877962,0.902078,0.50509,0.27138,0.340867,0.934909,0.09231,0.476664,0.747737,0.338944,0.792714,0.482952,0.436264,0.815184,0.843945,0.763968,0.905398,0.477388,0.518196,0.30879,0.696161,0.723137,0.193738,0.332233,0.678424,0.650668,0.428903,0.904272,0.454818,0.925183,0.884211,0.184081,0.0463678,0.97088,0.342546,0.396316,0.781407,0.128465,0.869685,0.469679,0.232246,0.617455,0.988469,0.986662,0.797547,0.338426,0.450741,0.895413,0.36908,0.842468,0.925577,0.583245,0.783638,0.237464,0.147383,0.0263365,0.789762,0.101903,0.935431,0.259205,0.037005,0.708474,0.393636,0.203526,0.144385,0.334012,0.660187,0.84845,0.417091,0.773616,0.539441,0.201104,0.341541,0.110111,0.22338,0.196506,0.941348,0.485887,0.716593,0.330349,0.94601,0.630795,0.118289,0.480623,0.151758,0.33816,0.511267,0.371644,0.551664,0.0665642,0.862453,0.716347,0.0256962,0.800542,0.980539,0.144248,0.418494,0.696358,0.0738595,0.857302,0.733617,0.346859,0.527546,0.453959,0.0513109,0.0327796,0.769051,0.842472,0.691169,0.744943,0.327985,0.0405691,0.493918,0.895722,0.149681,0.960387,0.945994,0.947301,0.448005,0.257009,0.515659,0.840675,0.57362,0.167311,0.0628414,0.639508,0.83608,0.808456,0.239003,0.955904,0.872908,0.217934,0.513373,0.396997,0.93981,0.264206,0.027993,0.636103,0.361082,0.406746,0.145331,0.47496,0.721648,0.121537,0.298114,0.194469,0.670136,0.955114,0.0399968,0.402029,0.673784,0.450474,0.533014,0.575824,0.955188,0.880122,0.143468,0.115429,0.967289,0.178562,0.370618,0.900817,0.641149,0.965782,0.547093,0.297246,0.929452,0.75088,0.748973,0.00267655,0.88997,0.396013,0.778283,0.927662,0.147361,0.604716,0.0565552,0.546356,0.4084,0.915933,0.349266,0.217423,0.199732,0.600039,0.186397,0.603949,0.507798,0.94435,0.101399,0.687479,0.886627,0.109509,0.480436,0.947185,0.0395619,0.842119,0.512337,0.575591,0.555734,0.998606,0.572934,0.523126,0.485038,0.109182,0.666459,0.0826406,0.525001,0.291681,0.356332,0.701486,0.790396,0.99704,0.675419,0.71334,0.517622,0.546719,0.221696,0.0209957,0.678047,0.86738,0.00567102,0.110115,0.181093,0.105975,0.489044,0.914938,0.402958,0.193405,0.948641,0.836981,0.559735,0.0339225,0.44803,0.533007,0.0154222,0.168951,0.900539,0.466913,0.6115,0.582141,0.873136,0.969775,0.8847,0.688324,0.727756,0.205362,0.333726,0.411027,0.0685542,0.326734,0.90188,0.1075,0.69018,0.142006,0.156597,0.164709,0.28059,0.667778,0.166767,0.0482742,0.453254,0.560634,0.198245,0.371943,0.0991881,0.407751,0.975298,0.64476,0.446759,0.0755364,0.734099,0.669831,0.636583,0.711853,0.5117,0.840666,0.924608,0.3678,0.836914,0.326473,0.5971,0.360444,0.278398,0.435825,0.0658892,0.575292,0.23463,0.0796618,0.418345,0.98122,0.0722607,0.556735,0.989084,0.330566,0.0629434,0.812463,0.112801,0.167863,0.1763,0.122452,0.770161,0.738996,0.468242,0.282685,0.431085,0.342737,0.538463,0.833658,0.1134,0.140952,0.72132,0.406271,0.204021,0.988825,0.210098,0.695592,0.985911,0.288569,0.386389,0.150354,0.671093,0.033209,0.27535,0.738548,0.629313,0.229489,0.294275,0.2897,0.61924,0.630471,0.712033,0.0567269,0.986954,0.899473,0.756002,0.65075,0.503481,0.142788,0.587364,0.456904,0.884649,0.382208,0.937945,0.528845,0.747267,0.0593886,0.264535,0.19145,0.643521,0.511506,0.0539009,0.584047,0.704059,0.0288837,0.578403,0.162386,0.0406557,0.841276,0.0895695,0.0888585,0.504542,0.319059,0.232171,0.24728,0.560512,0.602512,0.719027,0.506551,0.327991,0.415875,0.111102,0.20369,0.153111,0.625529,0.643175,0.54204,0.552982,0.696022,0.754886,0.753279,0.481019,0.965771,0.910445,0.334057,0.636899,0.719936,0.402607,0.424491,0.745561,0.34747,0.34925,0.818852,0.750879,0.886933,0.42823,0.603834,0.377369,0.865032,0.807041,0.0749066,0.840457,0.952569,0.185942,0.111677,0.939076,0.732059,0.0237982,0.125877,0.786678,0.458688,0.586356,0.429796,0.195445,0.874357,0.744972,0.214029,0.182645,0.667775,0.913116,0.535623,0.860866,0.563693,0.761719,0.123008,0.26202,0.0201481,0.0427504,0.000375032,0.711583,0.225334,0.681979,0.890034,0.0948392,0.360457,0.0997401,0.436867,0.455038,0.517009,0.575116,0.409968,0.540263,0.116613,0.907281,0.233318,0.862636,0.856667,0.372304,0.940331,0.604743,0.976717,0.672498,0.20702,0.817185,0.524782,0.885255,0.952463,0.824146,0.488318,0.240509,0.253237,0.611598,0.135971,0.317773,0.692313,0.482972,0.22621,0.452208,0.508079,0.18367,0.481586,0.700606,0.972335,0.87106,0.134581,0.139343,0.0701604,0.0698379,0.90492,0.894839,0.439318,0.20793,0.184125,0.442838,0.702663,0.348783,0.0849825,0.29268,0.925006,0.0658673,0.942037,0.288164,0.775782,0.708707,0.397547,0.136934,0.808659,0.0526702,0.133354,0.838116,0.348793,0.855575,0.099385,0.525288,0.00530082,0.491291,0.723031,0.138455,0.314628,0.205273,0.399312,0.124752,0.549154,0.632686,0.559894,0.615916,0.0327622,0.983625,0.803299,0.137303,0.844479,0.797437,0.207146,0.497833,0.93236,0.509405,0.308661,0.373624,0.508985,0.0260596,0.831676,0.985239,0.608207,0.464427,0.438035,0.63173,0.139125,0.929037,0.984637,0.713422,0.956804,0.686609,0.195508,0.189306,0.463574,0.914915,0.69695,0.893967,0.220982,0.413949,0.982995,0.665527,0.501599,0.66584,0.678276,0.410842,0.579765,0.148393,0.369594,0.224019,0.514818,0.100212,0.643175,0.855354,0.0925974,0.761275,0.528503,0.906055,0.787077,0.00805479,0.191855,0.419765,0.58712,0.425623,0.783538,0.251577,0.865368,0.38445,0.295996,0.411485,0.134889,0.133278,0.950657,0.124908,0.685161,0.532293,0.347242,0.00679666,0.93006,0.116758,0.765499,0.991124,0.0416451,0.714525,0.503284,0.0615749,0.957195,0.653805,0.943744,0.578148,0.226352,0.483385,0.490769,0.98277,0.207724,0.64401,0.361291,0.147854,0.871112,0.653516,0.366558,0.0056414,0.222286,0.562214,0.0350175,0.0563083,0.524138,0.144706,0.923217,0.683508,0.384857,0.918752,0.5003,0.482157,0.29632,0.88636,0.467255,0.214258,0.075927,0.790807,0.564527,0.202327,0.285364,0.432019,0.153868,0.662464,0.848644,0.510793,0.716041,0.312232,0.072435,0.879742,0.200575,0.285057,0.286837,0.00595492,0.802152,0.438208,0.219911,0.682861,0.271935,0.0670748,0.399181,0.881089,0.544622,0.238229,0.323912,0.742586,0.444405,0.689653,0.909088,0.83378,0.660448,0.996953,0.548148,0.4711,0.880019,0.389885,0.0450885,0.804408,0.278763,0.256857,0.742425,0.172851,0.23883,0.0360102,0.256162,0.47383,0.705306,0.455493,0.785486,0.707918,0.409838,0.637838,0.983197,0.247598,0.999711,0.157326,0.91486,0.463756,0.108005,0.589212,0.184018,0.193294,0.233452,0.162404,0.583319,0.140321,0.220029,0.677816,0.173223,0.631396,0.0748162,0.426221,0.493432,0.710967,0.420283,0.975934,0.104772,0.484078,0.172892,0.96231,0.760376,0.714256,0.993182,0.53224,0.114112,0.756038,0.234605,0.977935,0.330135,0.26537,0.75901,0.115301,0.492316,0.984281,0.56953,0.840318,0.591166,0.973273,0.310939,0.794054,0.354101,0.445843,0.269738,0.422807,0.343061,0.101336,0.670142,0.641442,0.876717,0.503867,0.116969,0.934928,0.952515,0.470662,0.171744,0.809164,0.855673,0.811657,0.393546,0.483844,0.273489,0.304413,0.596654,0.161144,0.810581,0.876074,0.907486,0.102772,0.592604,0.284303,0.278744,0.627682,0.718873,0.666233,0.333918,0.192506,0.139606,0.545027,0.0131665,0.913172,0.526933,0.431482,0.972583,0.474489,0.554822,0.430486,0.930597,0.291305,0.896396,0.70779,0.860742,0.986336,0.065829,0.329448,0.439028,0.688987,0.824455,0.501943,0.988569,0.843717,0.299555,|0.428416,0.256621,0.663837,0.876933,0.367878,0.139207,0.160904,0.662952,0.585302,0.8126,0.778254,0.0995597,0.955017,0.243259,0.412694,0.349262,0.149834,0.635361,0.131113,0.898833,0.860368,0.0835561,0.0417544,0.63042,0.49533,0.174692,0.150951,0.380067,0.264464,0.826039,0.683159,0.178249,0.564421,0.795688,0.309519,0.0430706,0.307371,0.945035,0.937782,0.269107,0.0633582,0.235219,0.651598,0.337029,0.00395173,0.749571,0.24623,0.848294,0.878549,0.552243,0.686638,0.0230731,0.872519,0.639342,0.493155,0.350653,0.536453,0.466877,0.200267,0.560137,0.423707,0.672506,0.288147,0.942428,0.858375,0.458778,0.147794,0.890166,0.270901,0.258465,0.408972,0.370082,0.243866,0.23324,0.959035,0.311257,0.543882,0.603415,0.275087,0.75294,0.155943,0.781742,0.210163,0.96857,0.117217,0.511055,0.942948,0.784792,0.502246,0.493381,0.805355,0.0321721,0.510709,0.418941,0.817107,0.561559,0.194871,0.314455,0.13932,0.417035,0.893404,0.596897,0.849196,0.224456,0.147949,0.97472,0.277505,0.886733,0.0321119,0.526862,0.318776,0.660702,0.724099,0.254842,0.457351,0.363653,0.688017,0.623745,0.380259,0.856432,0.354678,0.343207,0.963608,0.526902,0.0507647,0.932659,0.139907,0.830656,0.925047,0.812817,0.663654,0.387858,0.850851,0.460272,0.399675,0.619124,0.533384,0.226244,0.891091,0.135714,0.910242,0.324498,0.753024,0.611581,0.220443,0.641698,0.110614,0.398174,0.343077,0.0884737,0.976126,0.503888,0.167678,0.7653,0.169334,0.962854,0.70692,0.523319,0.00251281,0.0428569,0.122129,0.691579,0.536411,0.658296,0.509365,0.164775,0.363738,0.713499,0.760258,0.730224,0.743795,0.10822,0.977074,0.171007,0.674699,0.156733,0.878694,0.483035,0.536398,0.165836,0.783937,0.749231,0.840203,0.511038,0.331881,0.398068,0.0253134,0.177217,0.74062,0.58387,0.960708,0.710972,0.412641,0.744995,0.512338,0.151235,0.795178,0.802152,0.0865648,0.725577,0.541453,0.392728,0.78976,0.82939,0.802232,0.354159,0.825681,0.859251,0.547543,0.0818229,0.369834,0.382656,0.258939,0.518337,0.776788,0.0549943,0.0414322,0.989197,0.293483,0.819449,0.901266,0.820255,0.0126222,0.263868,0.624527,0.763171,0.529639,0.0137174,0.854152,0.766821,0.693196,0.267181,0.310707,0.504939,0.0541367,0.561415,0.135112,0.233307,0.555338,0.466748,0.282892,0.421338,0.886765,0.359091,0.747076,0.392748,0.462789,0.905526,0.662447,0.914217,0.809004,0.909987,0.554932,0.24455,0.300948,0.0360428,0.208555,0.572546,0.860902,0.49644,0.0893281,0.145648,0.978065,0.431243,0.0791729,0.287455,0.396826,0.335793,0.160157,0.148729,0.409683,0.924488,0.520926,0.259906,0.41229,0.498825,0.910099,0.00823426,0.0351629,0.447974,0.426056,0.474423,0.083235,0.706121,0.0033673,0.977312,0.835924,0.342141,0.737833,0.698892,0.742467,0.0934772,0.275736,0.745162,0.678563,0.500409,0.0529519,0.997659,0.268788,0.55077,0.231498,0.734538,0.363183,0.647813,0.112309,0.215948,0.917563,0.856917,0.304012,0.746778,0.597855,0.881881,0.306432,0.66612,0.222222,0.920196,0.705188,0.891804,0.479828,0.549159,0.507272,0.360929,0.881206,0.12355,0.392706,0.50391,0.343417,0.537522,0.365658,0.0834465,0.353826,0.200652,0.324666,0.805272,0.416508,0.898262,0.259653,0.51711,0.289116,0.464339,0.646877,0.5611,0.282922,0.729451,0.259227,0.399578,0.782404,0.685727,0.253888,0.415424,0.621101,0.622084,0.837487,0.667959,0.141612,0.870555,0.051882,0.078817,0.204609,0.260754,0.0368478,0.386832,0.130434,0.808596,0.320153,0.373107,0.95307,0.923955,0.681977,0.0252182,0.935918,0.274213,0.00479609,0.0535948,0.70694,0.111594,0.0805528,0.826208,0.571186,0.612684,0.882725,0.236112,0.0719308,0.00709617,0.599988,0.529673,0.669434,0.12815,0.362859,0.375415,0.332647,0.842617,0.734646,0.480487,0.871237,0.210805,0.936653,0.143304,0.921579,0.198234,0.747047,0.0636258,0.486272,0.963389,0.492511,0.836445,0.281278,0.44151,0.265736,0.172837,0.709346,0.622743,0.978312,0.153628,0.847106,0.472432,0.58901,0.247806,0.658577,0.0903798,0.688536,0.11383,0.390574,0.356539,0.203418,0.220845,0.792463,0.752303,0.565585,0.812752,0.910637,0.731258,0.64941,0.452557,0.815302,0.163769,0.684423,0.469967,0.104552,0.0469493,0.306955,0.488938,0.493433,0.0176353,0.85451,0.762038,0.0653754,0.775788,0.148345,0.715584,0.0547037,0.533768,0.141994,0.248209,0.0733735,0.545868,0.92189,0.474211,0.409843,0.490616,0.151249,0.898825,0.885955,0.640385,0.202805,0.923404,0.825495,0.454135,0.318989,0.989251,0.779526,0.704944,0.71159,0.624678,0.644565,0.141611,0.524746,0.366646,0.848991,0.598071,0.608843,0.259885,0.509906,0.358418,0.797373,0.199052,0.0244877,0.503201,0.491844,0.0178574,0.000251889,0.756309,0.0818921,0.135003,0.568648,0.306806,0.411129,0.750765,0.103299,0.736604,0.190886,0.56432,0.328407,0.472538,0.990025,0.184529,0.170823,0.480522,0.764146,0.827878,0.445229,0.308788,0.0832955,0.623311,0.786729,0.198969,0.349065,0.582543,0.364682,0.477811,0.616966,0.85454,0.688485,0.659047,0.278217,0.608932,0.596228,0.730487,0.340616,0.260858,0.0533732,0.719357,0.747428,0.757954,0.207402,0.293819,0.37852,0.742028,0.756122,0.174863,0.42255,0.9535,0.164926,0.282675,0.662942,0.983787,0.222341,0.0518359,0.0617774,0.623754,0.82193,0.0304987,0.236456,0.890676,0.844139,0.00483197,0.48427,0.676995,0.206038,0.296467,0.45804,0.134768,0.490685,0.38821,0.44089,0.88753,0.473216,0.0564685,0.196802,0.706705,0.0969748,0.211902,0.559306,0.191646,0.479427,0.14589,0.695514,0.414095,0.386412,0.371841,0.402915,0.263374,0.952107,0.896021,0.357261,0.250044,0.379907,0.985981,0.159388,0.291419,0.914966,0.752245,0.174376,0.181609,0.129543,0.471205,0.0222685,0.301184,0.317816,0.313306,0.99161,0.430985,0.536446,0.74403,0.0839795,0.219924,0.717775,0.32101,0.985601,0.610145,0.420351,0.815495,0.828146,0.771021,0.163933,0.72832,0.138458,0.0560626,0.332958,0.331293,0.875998,0.283537,0.59396,0.919776,0.321055,0.309135,0.165879,0.402432,0.409272,0.639367,0.791793,0.862496,0.534899,0.79298,0.933173,0.00733429,0.729756,0.293955,0.77633,0.598143,0.526642,0.0994296,0.762814,0.816348,0.478437,0.0886145,0.234761,0.516435,0.926775,0.829627,0.543825,0.590763,0.508369,0.291309,0.00999862,0.302973,0.807458,0.552136,0.193752,0.596128,0.598359,0.219214,0.340655,0.218367,0.264673,0.0871333,0.206404,0.834128,0.776095,0.589229,0.257883,0.517256,0.801114,0.981414,0.854248,0.31026,0.684853,0.662626,0.37122,0.643674,0.765574,0.152618,0.521979,0.385469,0.957393,0.904544,0.0299724,0.603119,0.23782,0.717024,0.59294,0.104951,0.299286,0.543016,0.741186,0.819103,0.832601,0.984185,0.806455,0.0267019,0.714773,0.241737,0.646771,0.912904,0.686708,0.244212,0.753317,0.382613,0.181361,0.641208,0.282007,0.642207,0.198027,0.0699605,0.330052,0.390329,0.103544,0.668466,0.26369,0.472361,0.0575557,0.961105,0.131274,0.903834,0.112363,0.462147,0.252268,0.849533,0.738959,0.637677,0.281683,0.457231,0.114875,0.371172,0.0106111,0.236951,0.79293,0.542617,0.125792,0.195125,0.272858,0.74928,0.920959,0.447518,0.222892,0.435673,0.718876,0.444161,0.216581,0.968239,0.0321196,0.289882,0.868526,0.893993,0.238686,0.307023,0.0113002,0.841427,0.529203,0.042182,0.0402388,0.181325,0.928029,0.192018,0.284353,0.15911,0.737356,0.373504,0.477614,0.363752,0.878491,0.395508,0.745331,0.216567,0.53044,0.449779,0.27957,0.635908,0.914084,0.439379,0.858102,0.00618345,0.743583,0.393351,0.360477,0.101364,0.629651,0.318809,0.161318,0.737338,0.201111,0.870898,0.0161617,0.453967,0.674985,0.232519,0.608009,0.174689,0.421878,0.40789,0.80329,0.649895,0.21911,0.824373,0.307357,0.274708,0.171353,0.495202,0.0012719,0.252918,0.396038,0.464185,0.742727,0.0656313,0.0590702,0.0066033,0.974306,0.258969,0.442417,0.395473,0.236296,0.059545,0.795731,0.542445,0.648816,0.533874,0.337964,0.295846,0.634057,0.0525493,0.226174,0.412887,0.569878,0.662156,0.538989,0.545048,0.291408,0.350792,0.989305,0.788029,0.840485,0.349832,0.780423,0.928135,0.659565,0.150876,0.820165,0.976711,0.239931,0.398473,0.88209,0.847782,0.984041,0.915535,0.0192519,0.600737,0.891391,0.30752,0.260273,0.569159,0.0303624,0.980892,0.195391,0.212464,0.437847,0.632936,0.166603,0.960885,0.66512,0.337319,0.733046,0.123369,0.601343,0.905842,0.932641,0.0643649,0.122035,0.80461,0.762716,0.200882,0.720518,0.97011,0.407192,0.616197,0.587154,0.182523,0.755733,0.529076,0.938606,0.132969,0.304621,0.0137063,0.0213613,0.427419,0.467623,0.758794,0.532299,0.0415747,0.966487,0.469587,0.600789,0.364544,0.875089,0.964822,0.776051,0.099792,0.845674,0.0388349,0.35341,0.668757,0.201774,0.48027,0.0293223,0.567451,0.637693,0.731369,0.0249392,0.364321,0.372879,0.0623653,0.823761,0.578218,0.572118,0.66864,0.938796,0.30253,0.585134,0.166004,0.939716,0.128873,0.0558792,0.276973,0.585645,0.670007,0.251691,0.387569,0.473287,0.099035,0.743616,0.99657,0.169397,0.0450536,0.107728,0.632054,0.514962,0.690977,0.931823,0.866524,0.849399,0.376316,0.605756,0.185625,0.842747,0.892708,0.797177,0.803464,0.992607,0.0141391,0.196884,0.813481,0.473101,0.603966,0.969146,0.369021,0.104396,0.0798781,0.968169,0.424574,0.795295,0.954029,0.675597,0.366465,0.488634,0.738982,0.275038,0.0740435,0.603178,0.921601,0.378048,0.996335,0.77325,0.503526,0.580438,0.921493,0.908541,0.483764,0.63228,0.849817,0.145677,0.855341,0.284817,0.894812,0.767055,0.661425,0.799429,0.384041,0.522601,0.564772,0.0136959,0.960863,|0.268496,0.812925,0.256206,0.195437,0.722913,0.100013,0.295033,0.966399,0.697081,0.623889,0.714734,0.494135,0.233785,0.374941,0.896887,0.301224,0.134537,0.29843,0.944618,0.896082,0.207444,0.880022,0.242604,0.701457,0.478879,0.312213,0.0026077,0.227062,0.130542,0.508714,0.755619,0.343592,0.150225,0.160431,0.429134,0.555136,0.16261,0.270549,0.85735,0.928424,0.788231,0.0580999,0.113404,0.360341,0.949124,0.38675,0.687427,0.836593,0.0544472,0.261762,0.627861,0.962382,0.295812,0.359096,0.379639,0.92849,0.266004,0.457503,0.572942,0.996148,0.170661,0.249661,0.714236,0.0686419,0.113209,0.956182,0.0181578,0.36104,0.0806391,0.463966,0.850579,0.851071,0.329388,0.302273,0.22903,0.978457,0.824101,0.901742,0.973087,0.947137,0.447972,0.0872635,0.730317,0.232902,0.45131,0.0620327,0.83829,0.831706,0.0404562,0.94671,0.694503,0.172985,0.830612,0.747264,0.990579,0.89326,0.0580831,0.326126,0.413485,0.71918,0.692501,0.240525,0.303261,0.357055,0.262914,0.416815,0.554434,0.000415802,0.476599,0.872559,0.84298,0.495572,0.383561,0.0202339,0.729839,0.180642,0.971332,0.19591,0.208519,0.986293,0.541348,0.66235,0.108419,0.561296,0.823826,0.698533,0.56254,0.40493,0.495127,0.675521,0.0409179,0.44877,0.793902,0.404427,0.425269,0.22921,0.0248979,0.859622,0.797992,0.832397,0.674052,0.301351,0.00815433,0.0424103,0.923283,0.943691,0.952263,0.249883,0.730359,0.746436,0.926068,0.0328724,0.949175,0.803868,0.359559,0.125637,0.575881,0.271012,0.0948342,0.798457,0.483065,0.298634,0.59043,0.596281,0.513153,0.338441,0.105937,0.0310518,0.819089,0.557715,0.0433053,0.0834625,0.781577,0.882986,0.166653,0.287599,0.870113,0.112877,0.192599,0.584974,0.595866,0.236456,0.077651,0.513855,0.415189,0.705938,0.278712,0.849957,0.239789,0.668048,0.418478,0.721231,0.0488212,0.685809,0.880059,0.0272871,0.557874,0.337796,0.109885,0.929214,0.125075,0.440548,0.00819606,0.109442,0.162718,0.917074,0.783754,0.550187,0.237196,0.00168192,0.0925179,0.845775,0.978581,0.322315,0.467206,0.384594,0.121485,0.806273,0.92034,0.0087558,0.992177,0.308324,0.709896,0.892446,0.420923,0.549862,0.163716,0.527417,0.476071,0.776645,0.154974,0.200303,0.276997,0.562451,0.908959,0.713601,0.557056,0.869531,0.0507819,0.809078,0.183509,0.682862,0.173512,0.355356,0.594393,0.334916,0.118817,0.909258,0.206411,0.392307,0.829002,0.357682,0.708626,0.401221,0.206182,0.453659,0.100907,0.343462,0.0280802,0.198819,0.320032,0.787574,0.639777,0.448081,0.259992,0.200754,0.766313,0.998629,0.89795,0.115827,0.918706,0.283179,0.780853,0.852075,0.244158,0.103893,0.677906,0.799645,0.270051,0.889322,0.30012,0.200848,0.837716,0.0142763,0.148703,0.598505,0.1124,0.553882,0.0640718,0.626181,0.131746,0.0947638,0.42952,0.148704,0.990935,0.431017,0.444657,0.493003,0.958083,0.585892,0.292341,0.85521,0.0280799,0.394937,0.73751,0.348754,0.789298,0.0965376,0.268661,0.850609,0.0337813,0.273445,0.223289,0.296879,0.194103,0.217497,0.0637549,0.683584,0.259505,0.240561,0.865884,0.0292556,0.277463,0.896072,0.907959,0.69465,0.0804722,0.784203,0.924094,0.0216057,0.588483,0.836724,0.993304,0.533584,0.123875,0.705291,0.537783,0.679904,0.523308,0.486635,0.311037,0.885912,0.23411,0.0175885,0.182665,0.824115,0.579307,0.672117,0.474997,0.462632,0.524454,0.899269,0.29758,0.245134,0.202343,0.399434,0.11366,0.0181103,0.861951,0.169085,0.447507,0.488081,0.341384,0.842183,0.501547,0.350094,0.755013,0.644151,0.0139154,0.493231,0.29756,0.536553,0.8185,0.694473,0.458836,0.93588,0.245117,0.925046,0.268366,0.67949,0.336765,0.732975,0.212456,0.127963,0.641197,0.38195,0.372437,0.589998,0.239433,0.207291,0.157267,0.521136,0.0927974,0.81322,0.83507,0.644735,0.238239,0.627519,0.574976,0.683667,0.628829,0.536913,0.204366,0.998117,0.873869,0.0806529,0.18128,0.197307,0.543235,0.697334,0.122871,0.0188687,0.424004,0.395148,0.223475,0.499192,0.840232,0.564743,0.951752,0.829736,0.694831,0.497592,0.510116,0.775946,0.764179,0.585922,0.208807,0.174708,0.353711,0.172224,0.95785,0.0641196,0.228488,0.613592,0.0908715,0.0661963,0.058819,0.582806,0.648179,0.936908,0.99324,0.361532,0.979584,0.0320066,0.309934,0.640142,0.94298,0.169024,0.622175,0.337164,0.652296,0.215083,0.068029,0.309205,0.485987,0.732173,0.311817,0.595001,0.63643,0.16289,0.709741,0.816974,0.217552,0.968191,0.864024,0.234791,0.777084,0.763151,0.523166,0.312525,0.999743,0.688767,0.370316,0.746918,0.723993,0.662064,0.907253,0.935836,0.877523,0.310938,0.378046,0.0944808,0.59409,0.769658,0.719195,0.276458,0.337893,0.848856,0.749343,0.0503988,0.192429,0.480009,0.80145,0.821696,0.954426,0.206119,0.479518,0.926289,0.125221,0.48052,0.943054,0.712998,0.428165,0.738852,0.520246,0.196232,0.558994,0.445871,0.405565,0.548287,0.0931446,0.464163,0.695157,0.755566,0.918488,0.524142,0.351798,0.960604,0.630146,0.84954,0.390794,0.341186,0.978353,0.0654017,0.569661,0.501801,0.414773,0.469811,0.172866,0.489246,0.207719,0.370095,0.227696,0.862916,0.245381,0.610147,0.828022,0.25014,0.34852,0.0502679,0.11822,0.216787,0.925227,0.269131,0.191885,0.961501,0.0215988,0.540452,0.489454,0.338181,0.849345,0.744793,0.655721,0.375284,0.67509,0.880616,0.917264,0.517756,0.432386,0.759243,0.815599,0.149867,0.847986,0.095695,0.0109048,0.985938,0.723586,0.243812,0.294552,0.663865,0.198729,0.634216,0.266794,0.74465,0.266024,0.2412,0.694047,0.649252,0.974479,0.580652,0.796667,0.991736,0.148062,0.687236,0.443961,0.887737,0.859709,0.593954,0.134036,0.736422,0.898577,0.978576,0.619623,0.475982,0.903026,0.836501,0.992341,0.422563,0.107965,0.621118,0.966425,0.691353,0.3431,0.712822,0.509475,0.628902,0.0691822,0.330101,0.0870795,0.391795,0.0186362,0.534081,0.726568,0.745207,0.00109702,0.0133857,0.464249,0.189378,0.42442,0.267423,0.294466,0.43564,0.391413,0.895184,0.827753,0.15951,0.216785,0.189094,0.598823,0.971039,0.84487,0.934353,0.906202,0.199131,0.105483,0.187814,0.877618,0.964096,0.785185,0.570429,0.454169,0.0811394,0.423492,0.326867,0.747954,0.580103,0.91092,0.445828,0.767707,0.34203,0.265919,0.774034,0.613461,0.167623,0.754466,0.657622,0.876659,0.701321,0.370411,0.271166,0.893909,0.865284,0.38028,0.095097,0.0661551,0.681639,0.538646,0.416866,0.503887,0.470272,0.538172,0.270251,0.470338,0.746486,0.609063,0.30636,0.862344,0.255988,0.659187,0.922878,0.443133,0.821622,0.252204,0.882505,0.752288,0.430372,0.859591,0.626452,0.480179,0.0560231,0.865938,0.161759,0.422412,0.157014,0.582103,0.565004,0.409456,0.0770034,0.556334,0.949929,0.15499,0.420721,0.0792935,0.544821,0.369393,0.733661,0.31132,0.441391,0.908652,0.895864,0.99391,0.2641,0.564692,0.563835,0.591446,0.847214,0.918579,0.705046,0.857754,0.292256,0.258782,0.0740954,0.739198,0.957845,0.409066,0.107556,0.803259,0.982919,0.327439,0.899687,0.978327,0.373118,0.586814,0.220639,0.669593,0.346741,0.464915,0.690237,0.299219,0.0460898,0.383292,0.872164,0.449309,0.812076,0.864818,0.369026,0.0936853,0.19973,0.588034,0.673906,0.283402,0.976161,0.295109,0.808405,0.0210646,0.562699,0.430207,0.766364,0.793953,0.549474,0.13169,0.538843,0.702534,0.874353,0.0986338,0.669196,0.271916,0.251393,0.128198,0.449524,0.000298977,0.291145,0.790216,0.0190398,0.0412422,0.596417,0.161301,0.31205,0.816261,0.0331389,0.676359,0.649249,0.980031,0.541431,0.134946,0.551806,0.917708,0.291216,0.347537,0.46574,0.179932,0.301852,0.785345,0.348244,0.6779,0.788265,0.628688,0.0896688,0.987753,0.0857259,0.190077,0.432673,0.0206253,0.271557,0.174935,0.76654,0.212902,0.0659236,0.771184,0.656779,0.354643,0.685724,0.330465,0.136065,0.151886,0.371674,0.761949,0.757796,0.543488,0.542105,0.937834,0.126675,0.996208,0.509616,0.461942,0.851204,0.228358,0.599939,0.934037,0.148298,0.679066,0.523562,0.122229,0.799121,0.648739,0.358814,0.866954,0.895692,0.319582,0.812429,0.975137,0.199249,0.0914924,0.830691,0.8592,0.0195842,0.366963,0.816207,0.0843737,0.399447,0.506812,0.367694,0.462556,0.550112,0.289168,0.886249,0.810706,0.789603,0.638099,0.828769,0.315762,0.349721,0.383883,0.844844,0.432515,0.832013,0.844195,0.0473904,0.299287,0.990392,0.12208,0.940727,0.809297,0.263684,0.587897,0.682541,0.455766,0.159419,0.151772,0.999901,0.684029,0.000330091,0.210973,0.0435509,0.103406,0.351139,0.702699,0.0302932,0.26415,0.891965,0.643693,0.00122559,0.0350164,0.808086,0.404827,0.854674,0.510012,0.0628616,0.0672689,0.344836,0.679707,0.436614,0.645289,0.470358,0.888089,0.288831,0.0350043,0.263554,0.0527008,0.562871,0.593766,0.866587,0.729389,0.80589,0.942081,0.429385,0.917215,0.173687,0.875283,0.564614,0.579179,0.0368823,0.950833,0.148383,0.484091,0.15357,0.409429,0.00567257,0.417053,0.724919,0.0995415,0.1846,0.198786,0.65842,0.452642,0.852148,0.652927,0.981171,0.548087,0.0506089,0.295511,0.632871,0.73753,0.716193,0.498849,0.727114,0.937571,0.794761,0.948015,0.242887,0.684381,0.698867,0.34688,0.745008,0.503038,0.483625,0.0908393,0.684625,0.774985,0.195451,0.286508,0.813992,0.590256,0.738812,0.929381,0.888329,0.922924,0.741772,0.0819488,0.439776,0.995224,0.830631,0.93585,0.476627,0.848258,0.275031,0.422962,0.297642,0.842045,0.571599,0.0156898,0.517544,0.241964,0.484595,0.0636797,0.393677,0.443651,0.40345,0.972058,0.541734,0.813885,0.932078,0.133475,0.231193,0.759072,0.180811,0.850414,0.741598,0.0918234,0.509978,|0.976201,0.634905,0.229954,0.108811,0.129398,0.482174,0.0585171,0.836776,0.760249,0.000692308,0.718436,0.249735,0.721162,0.286357,0.748684,0.653141,0.460883,0.673222,0.407588,0.750228,0.642149,0.6117,0.844912,0.380156,0.741502,0.803366,0.92434,0.813228,0.151367,0.271477,0.213395,0.0474723,0.601348,0.549799,0.0823153,0.00744551,0.000126481,0.0181233,0.0243818,0.890736,0.352596,0.712574,0.872169,0.895639,0.607532,0.440362,0.956773,0.418789,0.37985,0.231922,0.0097512,0.274322,0.968268,0.0676221,0.872856,0.946889,0.141016,0.117784,0.489064,0.658297,0.475227,0.582633,0.799734,0.558332,0.119366,0.0457508,0.0148666,0.0146889,0.833945,0.59229,0.963992,0.107422,0.135527,0.49089,0.506798,0.488023,0.627997,0.936843,0.916495,0.375713,0.578031,0.0758918,0.148154,0.91174,0.653988,0.652781,0.126773,0.490572,0.789885,0.718343,0.313149,0.193943,0.500484,0.129702,0.954126,0.635198,0.997325,0.180901,0.295458,0.0868354,0.428663,0.95071,0.507535,0.120733,0.661533,0.608544,0.603145,0.175317,0.0584003,0.0405933,0.210388,0.519894,0.203559,0.593029,0.638073,0.961258,0.64163,0.739284,0.55466,0.380527,0.0692624,0.601831,0.665888,0.464844,0.645204,0.216365,0.81319,0.391118,0.0777957,0.382265,0.262208,0.635576,0.491289,0.980513,0.474304,0.68895,0.864324,0.484295,0.386885,0.460671,0.119699,0.240667,0.23842,0.118165,0.604499,0.161494,0.129275,0.794001,0.747963,0.200954,0.142251,0.788881,0.217436,0.0544106,0.610816,0.736575,0.791817,0.939191,0.511759,0.943375,0.162697,0.352208,0.146992,0.30725,0.0970327,0.748762,0.208801,0.0146555,0.0805259,0.413311,0.819372,0.167064,0.139662,0.620639,0.806093,0.0487253,0.779615,0.310109,0.935779,0.299749,0.296164,0.73467,0.851505,0.916132,0.60357,0.0238472,0.907153,0.656059,0.843521,0.839102,0.647259,0.963804,0.898955,0.19006,0.86332,0.0761663,0.123575,0.670515,0.0337673,0.644044,0.528167,0.973491,0.767184,0.319489,0.981907,0.682467,0.368493,0.16389,0.370804,0.703358,0.390673,0.686944,0.408031,0.223799,0.723418,0.556492,0.453943,0.816073,0.0690578,0.28571,0.506848,0.174742,0.417878,0.284541,0.980141,0.157165,0.250723,0.0926713,0.896579,0.0369002,0.569238,0.779198,0.0138397,0.82287,0.916132,0.161768,0.452433,0.961525,0.294005,0.0906547,0.504257,0.784231,0.504229,0.199132,0.0533492,0.658386,0.390432,0.718859,0.123258,0.896305,0.782692,0.482657,0.0903513,0.698449,0.621232,0.458,0.0639606,0.222035,0.979547,0.776692,0.482994,0.0120118,0.693192,0.708553,0.314262,0.660179,0.966564,0.432156,0.225167,0.704982,0.756838,0.22078,0.799837,0.478902,0.445101,0.149744,0.651962,0.254773,0.415661,0.946542,0.957534,0.254723,0.432097,0.49583,0.787681,0.159706,0.810986,0.662951,0.464909,0.18939,0.445006,0.953906,0.49693,0.149653,0.147695,0.215042,0.604505,0.0180829,0.20738,0.362559,0.902798,0.608778,0.887066,0.852068,0.378227,0.620839,0.390578,0.141793,0.812558,0.812685,0.383307,0.797698,0.94628,0.978898,0.108349,0.215106,0.489526,0.390017,0.273293,0.776537,0.97857,0.532264,0.606079,0.677562,0.522894,0.184196,0.128064,0.685226,0.866112,0.308062,0.953223,0.860386,0.683906,0.152494,0.621313,0.826153,0.660885,0.764817,0.556457,0.931957,0.638247,0.130904,0.0543185,0.12995,0.726069,0.97798,0.679765,0.563895,0.0924313,0.157985,0.734873,0.0151948,0.93123,0.43376,0.338469,0.796799,0.273444,0.539104,0.101851,0.820607,0.0403222,0.518934,0.417237,0.539642,0.855836,0.834497,0.233173,0.301706,0.59765,0.634993,0.503138,0.675067,0.974281,0.61736,0.156462,0.479426,0.831144,0.791152,0.371684,0.305808,0.733637,0.322161,0.364065,0.0439001,0.652633,0.763532,0.55369,0.812532,0.826585,0.121884,0.815809,0.971663,0.123375,0.545372,0.0897804,0.928778,0.398354,0.935074,0.70152,0.264944,0.25704,0.262538,0.349418,0.0823779,0.0643784,0.816341,0.902826,0.219472,0.128572,0.866293,0.444822,0.969817,0.547434,0.35505,0.927032,0.892472,0.0284987,0.828055,0.662226,0.214478,0.220026,0.544819,0.618164,0.722065,0.591358,0.518234,0.294578,0.274735,0.711666,0.320405,0.775796,0.0511868,0.599448,0.121802,0.271904,0.382523,0.401173,0.753101,0.526663,0.100964,0.736403,0.608726,0.765182,0.814459,0.0880555,0.575281,0.643114,0.857625,0.0541775,0.954692,0.426662,0.383718,0.667549,0.751725,0.255149,0.993378,0.214574,0.729403,0.650691,0.816746,0.601664,0.0859088,0.729753,0.228254,0.370791,0.938663,0.444694,0.156219,0.325396,0.149421,0.84675,0.840813,0.276225,0.141948,0.514617,0.113848,0.668703,0.833341,0.912812,0.407743,0.507087,0.38553,0.826036,0.356721,0.872502,0.510661,0.044866,0.84236,0.147565,0.854781,0.0723037,0.491007,0.520926,0.0104511,0.906813,0.351424,0.655305,0.0944887,0.391354,0.112653,0.146049,0.883624,0.84735,0.453467,0.49103,0.310137,0.620674,0.119291,0.29404,0.126096,0.0744976,0.154937,0.497713,0.77248,0.576419,0.132662,0.738099,0.00712281,0.995415,0.514876,0.768872,0.722234,0.675765,0.869012,0.605479,0.40628,0.760657,0.338554,0.23903,0.309141,0.659662,0.161094,0.927573,0.11911,0.53069,0.967372,0.525521,0.19015,0.781266,0.638463,0.502952,0.472383,0.155782,0.0866325,0.841766,0.575353,0.0799319,0.298511,0.872433,0.266931,0.818673,0.541883,0.865935,0.442327,0.900966,0.253457,0.0309584,0.770276,0.747092,0.688105,0.323403,0.659532,0.821394,0.265275,0.292133,0.996585,0.951802,0.150054,0.201825,0.364746,0.473473,0.70702,0.0487003,0.849947,0.138372,0.692464,0.200855,0.360782,0.610034,0.696467,0.990314,0.649363,0.0526437,0.483724,0.323744,0.955036,0.021358,0.247549,0.0422288,0.1361,0.821982,0.641586,0.533052,0.264602,0.585002,0.587895,0.0809156,0.757872,0.488528,0.293244,0.29597,0.364678,0.207439,0.389405,0.715686,0.077786,0.890805,0.861306,0.19392,0.263864,0.624006,0.806904,0.878666,0.580713,0.000211418,0.324025,0.431708,0.99199,0.0677261,0.753429,0.503241,0.692017,0.690654,0.239262,0.595915,0.581879,0.914609,0.88221,0.833384,0.719134,0.60295,0.51577,0.940075,0.360447,0.173734,0.79972,0.466715,0.197812,0.768133,0.90247,0.0186477,0.87416,0.257913,0.404207,0.107543,0.691292,0.655654,0.570776,0.291632,0.428011,0.961428,0.993346,0.621597,0.60901,0.19957,0.875273,0.291779,0.996249,0.250826,0.551042,0.557779,0.606096,0.386478,0.513022,0.775464,0.971503,0.0734987,0.615919,0.480641,0.542281,0.858568,0.771214,0.797286,0.444653,0.743427,0.114358,0.0736958,0.178465,0.296659,0.00357842,0.681683,0.379699,0.550632,0.624977,0.372818,0.610255,0.972101,0.711604,0.859583,0.265151,0.1959,0.697397,0.987303,0.324266,0.465949,0.775221,0.295614,0.841919,0.0462037,0.418771,0.925341,0.00259602,0.782196,0.901105,0.00335157,0.477132,0.890645,0.491942,0.453377,0.598675,0.179541,0.172035,0.739998,0.364718,0.18954,0.987059,0.828132,0.839311,0.50399,0.357516,0.307093,0.456749,0.240479,0.0238488,0.146161,0.605714,0.373987,0.52398,0.171497,0.902874,0.714096,0.408857,0.600785,0.780189,0.0310488,0.99791,0.672076,0.0326971,0.811899,0.16131,0.744621,0.689576,0.381311,0.102892,0.415344,0.965756,0.345689,0.334167,0.127045,0.0252317,0.477377,0.862721,0.343639,0.548786,0.51653,0.0613582,0.153173,0.722562,0.153202,0.000252366,0.292658,0.306323,0.745975,0.638161,0.260934,0.477536,0.174727,0.0913123,0.539562,0.337704,0.961225,0.856515,0.129062,0.912492,0.427029,0.566353,0.364102,0.324974,0.101089,0.571886,0.569729,0.798477,0.305808,0.989969,0.474808,0.852068,0.567922,0.172695,0.818412,0.361592,0.764443,0.548326,0.691762,0.598453,0.754562,0.806791,0.243228,0.667525,0.495851,0.504846,0.743857,0.651374,0.253927,0.19166,0.582309,0.668007,0.802811,0.970887,0.53801,0.526539,0.616853,0.200676,0.350607,0.16031,0.884514,0.0131582,0.0164003,0.780644,0.828847,0.364674,0.987253,0.430326,0.500792,0.655902,0.840245,0.0120538,0.335692,0.593573,0.18309,0.411332,0.360392,0.928168,0.432313,0.201908,0.392235,0.934632,0.100613,0.693,0.108278,0.666145,0.624184,0.877915,0.747113,0.40033,0.229024,0.705977,0.959652,0.801692,0.106016,0.359532,0.727318,0.181115,0.0403445,0.267783,0.375696,0.333812,0.134257,0.670968,0.754289,0.736454,0.836773,0.187517,0.435617,0.826814,0.77496,0.180487,0.706534,0.517759,0.493304,0.298683,0.577224,0.840097,0.952577,0.00675386,0.0404863,0.724347,0.0703586,0.474832,0.350333,0.912977,0.683342,0.0169144,0.573947,0.251049,0.388786,0.453471,0.588093,0.624758,0.740193,0.260725,0.859222,0.399544,0.560171,0.0730091,0.260487,0.286454,0.482666,0.970652,0.380146,0.458902,0.825482,0.13584,0.120151,0.300133,0.916668,0.336837,0.162798,0.107288,0.557331,0.465063,0.064648,0.430217,0.530507,0.759199,0.644642,0.463759,0.635295,0.487475,0.75864,0.605796,0.703836,0.512767,0.586277,0.662013,0.760637,0.255974,0.528418,0.618616,0.15052,0.753674,0.752098,0.972284,0.258146,0.404906,0.941034,0.0331756,0.753684,0.251679,0.275954,0.030919,0.0985759,0.198886,0.0563694,0.0419623,0.349051,0.809538,0.0253713,0.049024,0.599866,0.00800735,0.170774,0.155883,0.996473,0.221229,0.518184,0.00619256,0.926525,0.537721,0.899394,0.201475,0.803299,0.92499,0.229751,0.79325,0.764272,0.381329,0.185841,0.840268,0.924832,0.551115,0.710845,0.0805309,0.0774425,0.295763,0.611552,0.0557274,0.859417,0.521946,0.918352,0.543087,0.195057,0.700691,0.40753,0.823203,0.0445687,0.710949,0.0812114,0.994368,0.333314,0.278611,0.410927,0.776584,0.0225936,0.0269023,0.894391,0.841218,0.239574,0.791805,0.906331,0.472863,|0.721451,0.773408,0.680557,0.0195208,0.967024,0.927922,0.027576,0.847196,0.4198,0.522235,0.828935,0.420309,0.0953626,0.442722,0.701372,0.529463,0.762905,0.590661,0.697787,0.588996,0.526856,0.145187,0.629341,0.115548,0.424647,0.335907,0.162005,0.382448,0.926516,0.577481,0.409012,0.711023,0.508673,0.733896,0.659415,0.208506,0.108257,0.280723,0.882175,0.739926,0.899457,0.811445,0.136372,0.691739,0.674363,0.332042,0.378982,0.680191,0.44647,0.176518,0.470101,0.350691,0.496978,0.433785,0.0409175,0.826982,0.547032,0.674817,0.969093,0.272511,0.487953,0.319061,0.283607,0.112268,0.826723,0.662493,0.152279,0.655207,0.175202,0.594867,0.269801,0.0439957,0.25169,0.0154777,0.219934,0.877963,0.450548,0.523277,0.984271,0.206031,0.782592,0.500727,0.807842,0.72117,0.880127,0.396552,0.29936,0.752491,0.729621,0.50783,0.108099,0.66122,0.569179,0.0840941,0.773824,0.901202,0.87868,0.51009,0.360462,0.686704,0.428987,0.719066,0.720011,0.980778,0.164172,0.245924,0.0584812,0.613088,0.956344,0.422626,0.335896,0.707718,0.454064,0.690352,0.264834,0.644279,0.458289,0.678505,0.0444037,0.590021,0.889746,0.133439,0.589059,0.695737,0.465668,0.00715917,0.934371,0.607209,0.350464,0.65463,0.381045,0.338332,0.96236,0.474387,0.200206,0.734354,0.660119,0.826855,0.525483,0.366296,0.520242,0.307983,0.724356,0.40206,0.163865,0.267839,0.682537,0.558191,0.221445,0.592494,0.895674,0.23385,0.576392,0.870739,0.921791,0.663748,0.475287,0.995928,0.853186,0.341646,0.684604,0.835182,0.570639,0.226668,0.377965,0.175107,0.259893,0.523179,0.441133,0.197229,0.932382,0.945896,0.928984,0.40778,0.991043,0.464166,0.181442,0.450967,0.365699,0.732435,0.56537,0.058605,0.657964,0.972386,0.806781,0.308408,0.730275,0.254321,0.816082,0.136282,0.311593,0.764437,0.171624,0.739074,0.276616,0.0655568,0.179381,0.70316,0.00723332,0.0834205,0.26587,0.342153,0.518029,0.149973,0.622786,0.0222871,0.361447,0.278746,0.979277,0.70579,0.528681,0.976951,0.316742,0.199158,0.569511,0.822996,0.960288,0.184742,0.0465282,0.741232,0.630866,0.29571,0.675316,0.423705,0.891153,0.263646,0.0948344,0.69609,0.26908,0.584716,0.426959,0.854526,0.816674,0.847288,0.128873,0.678319,0.142026,0.334893,0.642307,0.185985,0.382945,0.336387,0.60264,0.889686,0.446568,0.33224,0.328935,0.230707,0.283226,0.162735,0.00525206,0.0184572,0.507868,0.92169,0.51571,0.676611,0.0679475,0.130973,0.323725,0.191983,0.123826,0.0838916,0.872151,0.203827,0.129751,0.908382,0.505895,0.153546,0.387253,0.147657,0.174797,0.259232,0.688242,0.334186,0.0268466,0.261745,0.164671,0.0916492,0.873966,0.0389157,0.273516,0.970837,0.229122,0.789369,0.91017,0.3233,0.359368,0.597941,0.358907,0.620448,0.248198,0.573589,0.385518,0.670883,0.66382,0.111967,0.569286,0.259668,0.634563,0.195724,0.132844,0.841671,0.0963098,0.612961,0.740361,0.98312,0.594286,0.282825,0.970327,0.823526,0.874424,0.457507,0.701509,0.960196,0.559847,0.803829,0.536981,0.696723,0.523868,0.064028,0.222653,0.566272,0.166972,0.0265028,0.10493,0.579317,0.760792,0.146593,0.450566,0.751146,0.127478,0.558634,0.897662,0.61625,0.926043,0.694854,0.585171,0.224194,0.0563411,0.375297,0.487541,0.879493,0.821956,0.742182,0.765903,0.247965,0.958649,0.527352,0.108633,0.00589758,0.807997,0.928145,0.0513927,0.353355,0.745192,0.206876,0.465789,0.930612,0.928595,0.62426,0.70785,0.429786,0.135263,0.753573,0.286888,0.172571,0.11746,0.357183,0.235266,0.365042,0.587862,0.340892,0.108548,0.440821,0.573475,0.838335,0.632248,0.952616,0.41132,0.058024,0.964155,0.709379,0.327191,0.747509,0.330769,0.393199,0.404456,0.209928,0.378382,0.224912,0.281854,0.284711,0.116898,0.780488,0.680903,0.0780683,0.875494,0.82559,0.383373,0.11456,0.244428,0.709204,0.389317,0.796066,0.953962,0.538719,0.303427,0.35137,0.703591,0.25397,0.316587,0.873479,0.294957,0.148582,0.238325,0.889885,0.483664,0.731464,0.404275,0.807437,0.85245,0.756054,0.43666,0.553914,0.943855,0.792101,0.217843,0.79673,0.108835,0.706205,0.187432,0.910964,0.712463,0.541961,0.473505,0.748827,0.795312,0.847952,0.173285,0.627047,0.680725,0.504209,0.610787,0.512229,0.216309,0.139555,0.803188,0.216842,0.915811,0.652283,0.363048,0.132334,0.223311,0.500083,0.211631,0.162798,0.190729,0.544035,0.454629,0.645315,0.0869915,0.343673,0.522401,0.777426,0.00736976,0.127769,0.173249,0.666627,0.807497,0.944352,0.819252,0.929465,0.234239,0.995759,0.0931764,0.996882,0.695126,0.678236,0.539547,0.930854,0.611193,0.911618,0.127491,0.719469,0.367958,0.991276,0.0590563,0.104448,0.828684,0.865833,0.952448,0.487075,0.0668299,0.320454,0.788394,0.781746,0.31759,0.87219,0.302468,0.922834,0.0393595,0.34211,0.135133,0.435686,0.702171,0.820099,0.298668,0.714381,0.678677,0.381788,0.867694,0.0999968,0.334611,0.684052,0.197645,0.90896,0.20038,0.0714021,0.856806,0.956625,0.734289,0.844799,0.489164,0.781745,0.98261,0.45301,0.438844,0.830542,0.785687,0.486659,0.713867,0.779993,0.270362,0.264469,0.276133,0.774453,0.411095,0.296258,0.911156,0.298014,0.325761,0.252235,0.538486,0.785193,0.346278,0.950131,0.185519,0.139251,0.109375,0.721491,0.213499,0.0795853,0.0127752,0.650214,0.494831,0.35733,0.616645,0.488746,0.648355,0.731407,0.624449,0.0802653,0.552993,0.0866888,0.668351,0.0838642,0.0786488,0.139492,0.255124,0.218849,0.208558,0.747752,0.432403,0.639985,0.175514,0.12793,0.301165,0.20449,0.44858,0.282619,0.236353,0.856953,0.857289,0.481129,0.191762,0.976581,0.194498,0.377925,0.272251,0.915573,0.552745,0.594988,0.452153,0.838705,0.294251,0.311454,0.623186,0.684796,0.722355,0.284767,0.100496,0.418037,0.953779,0.739197,0.152579,0.617764,0.52314,0.887337,0.724904,0.733982,0.732225,0.984613,0.398176,0.0599948,0.457408,0.710778,0.0314553,0.20295,0.138875,0.11608,0.161781,0.492075,0.627587,0.17755,0.909106,0.579616,0.251656,0.0365406,0.984671,0.185114,0.972394,0.36137,0.0427496,0.564759,0.637414,0.368092,0.0834603,0.763791,0.140284,0.449834,0.999123,0.321334,0.260947,0.829966,0.927016,0.426197,0.761046,0.645607,0.721002,0.441747,0.607808,0.831709,0.0334972,0.523064,0.041456,0.230775,0.231004,0.463184,0.56125,0.747097,0.598876,0.254472,0.335171,0.0370977,0.223609,0.293789,0.35491,0.371327,0.616164,0.0462491,0.404904,0.232529,0.285341,0.689789,0.494125,0.861403,0.926133,0.903096,0.571302,0.637123,0.115279,0.646955,0.340733,0.999711,0.968762,0.83742,0.987048,0.0182195,0.0600878,0.378039,0.495941,0.780564,0.540417,0.344881,0.128683,0.372415,0.99576,0.510736,0.33809,0.00863737,0.150639,0.299472,0.714844,0.394996,0.880584,0.539313,0.82014,0.625432,0.501212,0.923348,0.294826,0.404977,0.91238,0.0527998,0.076171,0.238785,0.92533,0.519079,0.443075,0.896666,0.644369,0.465901,0.357792,0.0163665,0.0189841,0.0254765,0.849118,0.946253,0.1569,0.0905892,0.673319,0.143693,0.48412,0.830648,0.279794,0.252998,0.517433,0.762686,0.0553148,0.234635,0.0174874,0.827798,0.973155,0.370833,0.71697,0.842843,0.387584,0.275765,0.164503,0.512501,0.827168,0.996211,0.642253,0.557467,0.773076,0.629419,0.213233,0.455681,0.0958403,0.0203308,0.792192,0.783926,0.353169,0.708595,0.744471,0.741908,0.754776,0.387452,0.482658,0.0847345,0.377877,0.0815723,0.354492,0.209384,0.892912,0.450084,0.341028,0.655142,0.435524,0.028764,0.913304,0.671423,0.480781,0.347998,0.860793,0.137212,0.681385,0.474388,0.907991,0.606207,0.085041,0.587905,0.145638,0.514498,0.0477481,0.906782,0.985848,0.334078,0.975333,0.263822,0.213248,0.384125,0.52566,0.688513,0.732291,0.683658,0.0791231,0.65795,0.166786,0.282563,0.612958,0.826115,0.386884,0.575281,0.306277,0.434498,0.434831,0.945105,0.694157,0.996549,0.347049,0.245114,0.222288,0.10677,0.652272,0.442808,0.154772,0.359937,0.284329,0.17156,0.0642968,0.645982,0.572447,0.879349,0.0488019,0.688238,0.864622,0.0247326,0.579595,0.339239,0.525283,0.653971,0.652579,0.738232,0.85645,0.377171,0.456494,0.850668,0.285152,0.71773,0.341466,0.212074,0.609292,0.130381,0.104193,0.0106452,0.979458,0.932185,0.351427,0.547226,0.669886,0.421289,0.304664,0.833458,0.37934,0.826604,0.0186,0.878955,0.108551,0.392785,0.502101,0.631533,0.196365,0.274577,0.194191,0.956878,0.408978,0.891929,0.546192,0.342059,0.00446522,0.793402,0.0145503,0.656104,0.833186,0.960335,0.17165,0.890524,0.992867,0.250363,0.564332,0.511028,0.0143011,0.425865,0.835692,0.326749,0.476877,0.752709,0.532718,0.969473,0.15931,0.717644,0.0140725,0.911067,0.806737,0.881469,0.867358,0.180423,0.590003,0.716893,0.342728,0.131916,0.332286,0.658509,0.862608,0.984725,0.895036,0.445022,0.377458,0.689493,0.000708997,0.74375,0.376216,0.0598926,0.782381,0.457772,0.430029,0.805594,0.533095,0.333841,0.0555022,0.305999,0.453665,0.0400989,0.57008,0.750794,0.776099,0.89309,0.426092,0.953804,0.521279,0.923102,0.259867,0.664448,0.537682,0.475203,0.316435,0.990939,0.379242,0.88532,0.304289,0.202622,0.0971199,0.794906,0.971191,0.135548,0.894276,0.344491,0.576529,0.481917,0.896998,0.85992,0.905239,0.432631,0.284779,0.841749,0.706372,0.483537,0.266793,0.261226,0.259247,0.674632,0.61161,0.21136,0.550512,0.0462768,0.230922,0.813814,0.420126,0.12642,0.15976,0.729904,0.758378,0.625757,0.426414,0.904408,0.296259,0.39022,0.17035,0.52513,0.703308,0.0764065,0.446383,0.904097,0.791745,0.650999,0.320948,0.476491,0.772054,0.841721,|0.785995,0.686167,0.352722,0.625219,0.61726,0.468108,0.740781,0.678985,0.195748,0.268958,0.161081,0.377733,0.479453,0.551352,0.874856,0.632502,0.678761,0.152301,0.716399,0.304684,0.471302,0.128166,0.802593,0.165947,0.00432038,0.393271,0.363677,0.855883,0.154383,0.520097,0.408674,0.496037,0.186911,0.292239,0.45926,0.956093,0.0427244,0.832722,0.706216,0.97092,0.866738,0.220061,0.733921,0.319835,0.688909,0.747744,0.258467,0.970261,0.15124,0.912685,0.465823,0.24951,0.159898,0.12556,0.989749,0.0170696,0.357556,0.204371,0.337515,0.372537,0.767106,0.422116,0.789476,0.262766,0.453226,0.8547,0.301841,0.904939,0.414912,0.872875,0.60531,0.21398,0.66241,0.0620301,0.0822051,0.906063,0.578264,0.915631,0.202146,0.650117,0.354194,0.489218,0.744452,0.418676,0.45515,0.479991,0.355018,0.916903,0.903792,0.326124,0.472331,0.76314,0.671146,0.566296,0.402254,0.171462,0.116162,0.7869,0.348896,0.384827,0.481915,0.609271,0.429912,0.17778,0.831558,0.168411,0.761753,0.348209,0.0053485,0.15432,0.11606,0.461082,0.616139,0.012685,0.371813,0.873652,0.0547921,0.164188,0.0390598,0.190064,0.851139,0.33254,0.299156,0.35521,0.312131,0.194222,0.856573,0.966563,0.0948532,0.712198,0.602622,0.0967616,0.767962,0.104823,0.191579,0.9603,0.0332921,0.272328,0.928349,0.323902,0.266964,0.360102,0.132719,0.844154,0.366882,0.572989,0.532922,0.658849,0.894535,0.380822,0.892752,0.27597,0.693943,0.770036,0.602035,0.319443,0.920743,0.820964,0.444078,0.257553,0.908966,0.75687,0.352253,0.343126,0.16376,0.21843,0.341812,0.295715,0.866377,0.35351,0.16936,0.568465,0.060319,0.0455206,0.395426,0.454516,0.552854,0.664676,0.461604,0.943297,0.362247,0.0801414,0.622449,0.908814,0.34343,0.471082,0.778197,0.46986,0.242839,0.91709,0.652243,0.400141,0.533222,0.678495,0.0115998,0.245756,0.97859,0.972735,0.625727,0.983597,0.537182,0.696273,0.791123,0.257075,0.931566,0.772583,0.431237,0.522211,0.379417,0.16125,0.706959,0.80433,0.962067,0.852344,0.163209,0.591575,0.196867,0.26646,0.284005,0.842928,0.0536984,0.0394658,0.766523,0.195965,0.690944,0.233324,0.402547,0.598343,0.183197,0.196446,0.850491,0.96911,0.679136,0.800624,0.434563,0.744665,0.977276,0.321832,0.276786,0.751907,0.774618,0.522662,0.912251,0.725402,0.734875,0.690739,0.169619,0.693766,0.60709,0.416982,0.297232,0.409478,0.470413,0.764197,0.653224,0.284046,0.266498,0.106613,0.0247642,0.684569,0.552583,0.199857,0.300317,0.0419179,0.503576,0.219489,0.430565,0.272401,0.710424,0.0256528,0.383478,0.966608,0.0572273,0.587018,0.881712,0.187381,0.217385,0.552701,0.682002,0.101307,0.365797,0.296695,0.575434,0.731337,0.899225,0.389462,0.220923,0.47275,0.946805,0.869991,0.523605,0.947129,0.0345296,0.0470689,0.213668,0.516916,0.0669699,0.265072,0.128909,0.755586,0.536653,0.682772,0.853574,0.915687,0.503605,0.737347,0.55833,0.376799,0.465993,0.464992,0.530101,0.0600746,0.697634,0.53538,0.942694,0.991773,0.142512,0.350132,0.686126,0.0105526,0.967996,0.1592,0.569701,0.931373,0.364977,0.810504,0.997494,0.387753,0.212929,0.172616,0.666356,0.592241,0.815367,0.532326,0.757121,0.156087,0.10296,0.829567,0.550681,0.212326,0.434664,0.940112,0.642076,0.763737,0.730869,0.387019,0.776145,0.531571,0.641861,0.792749,0.258388,0.507205,0.135786,0.500083,0.626739,0.259341,0.605896,0.224877,0.288323,0.852975,0.583655,0.896277,0.603812,0.401193,0.921902,0.528544,0.264128,0.294773,0.12891,0.240889,0.00551212,0.977444,0.284104,0.675532,0.558796,0.492206,0.53743,0.748028,0.319111,0.285994,0.396586,0.987071,0.492179,0.680392,0.221441,0.98779,0.682871,0.0301276,0.0547011,0.942901,0.336604,0.960146,0.971273,0.341122,0.678115,0.541746,0.371766,0.468249,0.232536,0.88775,0.869054,0.676468,0.23156,0.367293,0.232286,0.910538,0.988452,0.504773,0.444488,0.80468,0.433835,0.214673,0.95852,0.50653,0.829352,0.968138,0.511062,0.334305,0.0382078,0.369115,0.734931,0.751823,0.496343,0.337166,0.815897,0.358421,0.419929,0.97935,0.0456375,0.767676,0.839837,0.624172,0.635311,0.0418679,0.819094,0.703689,0.590898,0.926637,0.13354,0.749966,0.688132,0.867581,0.174051,0.450159,0.19278,0.935124,0.627693,0.608025,0.326321,0.817628,0.951732,0.592543,0.747821,0.490349,0.23429,0.596767,0.814717,0.302712,0.122043,0.18121,0.326704,0.142091,0.972729,0.926101,0.187371,0.549273,0.422579,0.98268,0.713272,0.743025,0.115189,0.532884,0.896418,0.673467,0.474684,0.759128,0.360264,0.464811,0.0324491,0.834565,0.380774,0.940628,0.735166,0.574813,0.510207,0.912815,0.72425,0.688739,0.568127,0.413146,0.796151,0.363184,0.198378,0.301902,0.95114,0.152389,0.967021,0.273148,0.809576,0.12772,0.904956,0.373523,0.638548,0.0908582,0.022402,0.536754,0.137315,0.105157,0.724729,0.892374,0.163348,0.486378,0.449768,0.784541,0.738583,0.524847,0.337223,0.429442,0.0237841,0.758366,0.166982,0.0237185,0.111275,0.309761,0.838706,0.470403,0.521032,0.227744,0.179873,0.430705,0.0974401,0.156884,0.468105,0.7045,0.755602,0.422271,0.929421,0.653131,0.373375,0.141913,0.806038,0.246555,0.174322,0.631126,0.466163,0.475687,0.46845,0.862327,0.188967,0.34695,0.528431,0.98439,0.763712,0.141713,0.225799,0.342354,0.941269,0.758083,0.413556,0.419403,0.276117,0.725803,0.292988,0.867929,0.425831,0.389513,0.982043,0.780426,0.638933,0.929731,0.740128,0.202553,0.230952,0.496501,0.0942649,0.77505,0.218863,0.821767,0.589806,0.342788,0.726814,0.689357,0.741719,0.212665,0.00416547,0.406467,0.421395,0.344266,0.711859,0.31342,0.291307,0.129816,0.310438,0.7129,0.505137,0.744037,0.594961,0.490347,0.885232,0.370466,0.18162,0.107157,0.713627,0.186201,0.0517325,0.530524,0.391166,0.044654,0.582388,0.269252,0.918543,0.58145,0.571323,0.728908,0.238177,0.832501,0.971171,0.336799,0.819012,0.663498,0.0171515,0.162249,0.901579,0.329974,0.32103,0.555399,0.40938,0.612115,0.787504,0.49422,0.309465,0.127511,0.887832,0.231311,0.0859044,0.332325,0.224086,0.0516427,0.472706,0.851831,0.297799,0.864196,0.273186,0.257345,0.0121524,0.0507024,0.862932,0.879299,0.274281,0.100974,0.972393,0.393353,0.936996,0.0660245,0.430018,0.993728,0.00213695,0.0761549,0.555596,0.732856,0.736115,0.936928,0.497718,0.811966,0.878152,0.938553,0.681687,0.037172,0.558227,0.388986,0.5212,0.824743,0.00432032,0.489672,0.632591,0.344327,0.591379,0.926055,0.554229,0.0941426,0.959232,0.195118,0.713929,0.969978,0.970231,0.715471,0.129926,0.145548,0.333554,0.890959,0.0972405,0.40546,0.647243,0.857477,0.0364969,0.0404704,0.364471,0.631896,0.26538,0.276443,0.552005,0.0822572,0.444736,0.406258,0.698296,0.176714,0.475177,0.204485,0.656546,0.790032,0.167631,0.363382,0.99285,0.958052,0.359838,0.453723,0.461953,0.295859,0.896984,0.0831485,0.996684,0.00083524,0.911849,0.912485,0.665507,0.781088,0.444268,0.0982665,0.84302,0.946539,0.918074,0.339914,0.403754,0.542066,0.649492,0.25693,0.437325,0.424966,0.00529414,0.329685,0.0555343,0.343089,0.409043,0.688322,0.991787,0.607074,0.614832,0.352885,0.824781,0.0531315,0.856376,0.367127,0.818051,0.0680746,0.537355,0.685372,0.528034,0.160832,0.246426,0.817231,0.33791,0.0526333,0.608999,0.916487,0.708747,0.454889,0.17385,0.800886,0.422115,0.517214,0.890501,0.517126,0.878466,0.267467,0.392816,0.655098,0.00688368,0.212095,0.995353,0.923948,0.228873,0.0755171,0.793637,0.820626,0.240001,0.992331,0.920354,0.0825024,0.387315,0.081152,0.479365,0.451169,0.548745,0.713803,0.555895,0.304638,0.933744,0.466913,0.0293473,0.0975177,0.842752,0.36476,0.876673,0.218651,0.29392,0.553878,0.598679,0.799084,0.909326,0.482282,0.233812,0.628008,0.720484,0.34844,0.889764,0.249657,0.115418,0.554145,0.0141169,0.66015,0.457227,0.282341,0.694658,0.190023,0.0366457,0.561264,0.308576,0.902271,0.990451,0.973783,0.0864204,0.537812,0.884724,0.590232,0.91508,0.81338,0.516068,0.703918,0.365765,0.257232,0.699726,0.63497,0.992983,0.221396,0.654619,0.306279,0.772737,0.517241,0.300562,0.712525,0.00945032,0.916345,0.405327,0.733238,0.523221,0.838739,0.384431,0.718568,0.956171,0.202363,0.728251,0.761687,0.583692,0.231462,0.536797,0.956927,0.330946,0.98999,0.13597,0.128139,0.315698,0.796371,0.400191,0.063729,0.464979,0.19425,0.482733,0.232518,0.562755,0.420634,0.85982,0.822153,0.564236,0.811538,0.00287771,0.974148,0.924164,0.544352,0.849439,0.375065,0.882778,0.963124,0.589424,0.233847,0.352279,0.61055,0.472907,0.218619,0.81998,0.00376433,0.836543,0.456296,0.68334,0.566401,0.501074,0.300243,0.678111,0.571266,0.749638,0.4259,0.863895,0.0355082,0.436278,0.663504,0.773752,0.76503,0.85414,0.282835,0.569791,0.989975,0.609683,0.842431,0.760649,0.416225,0.0954064,0.859647,0.0557423,0.952878,0.244745,0.544787,0.664494,0.983778,0.695072,0.916183,0.495108,0.81866,0.756587,0.606344,0.585019,0.0754241,0.966378,0.159283,0.836162,0.710798,0.690325,0.505126,0.208895,0.563739,0.951078,0.172696,0.881566,0.573088,0.0113606,0.412109,0.0801947,0.299758,0.519433,0.690757,0.439889,0.777247,0.387883,0.353823,0.776112,0.655887,0.175561,0.554561,0.986414,0.377971,0.174791,0.264153,0.953901,0.480722,0.280054,0.322826,0.529178,0.543576,0.887728,0.176337,0.92517,0.75226,0.847985,0.92546,0.708111,0.534183,0.23683,0.171966,0.88806,0.684849,0.955453,0.305427,0.40175,0.257002,0.925195,0.0130931,0.677427,0.952841,0.797559,0.0435073,0.225029,0.267322,|0.957797,0.195633,0.843143,0.397856,0.0577176,0.00426698,0.302792,0.394146,0.253185,0.610174,0.952032,0.0832009,0.869078,0.964992,0.641332,0.937246,0.237149,0.627328,0.000383139,0.0127724,0.513464,0.849396,0.84284,0.648635,0.367662,0.904942,0.439926,0.884299,0.761606,0.173081,0.989206,0.326843,0.499819,0.0853261,0.238481,0.0795801,0.918064,0.293667,0.551084,0.699231,0.88744,0.923582,0.234807,0.383915,0.420647,0.99897,0.47115,0.495469,0.133082,0.374577,0.751582,0.255474,0.193575,0.834942,0.432622,0.637765,0.833562,0.617043,0.288954,0.0340322,0.158502,0.312508,0.34548,0.501153,0.0398449,0.783392,0.771103,0.288229,0.939349,0.196854,0.533607,0.0391148,0.726287,0.621363,0.953093,0.511204,0.447767,0.678347,0.998882,0.272969,0.675303,0.824161,0.806349,0.551177,0.0365217,0.217423,0.410258,0.527614,0.157705,0.340521,0.769221,0.820628,0.233147,0.499096,0.63307,0.971913,0.630338,0.190763,0.822455,0.625452,0.317057,0.21643,0.610501,0.106021,0.914364,0.564193,0.832883,0.580193,0.655823,0.360135,0.68029,0.854817,0.0711014,0.270342,0.816993,0.749816,0.526557,0.409098,0.309892,0.08513,0.497996,0.517899,0.686252,0.148818,0.270956,0.527824,0.482446,0.334999,0.510045,0.556527,0.277724,0.509371,0.997551,0.961489,0.226239,0.29569,0.168536,0.740572,0.96317,0.922518,0.413118,0.536181,0.910767,0.108286,0.134073,0.389583,0.493206,0.742619,0.734771,0.336079,0.360568,0.808691,0.920805,0.165916,0.414813,0.207817,0.595923,0.903093,0.74149,0.107713,0.86585,0.709666,0.708539,0.00179112,0.409254,0.327097,0.811326,0.407698,0.299465,0.518061,0.631367,0.300365,0.925194,0.183654,0.837327,0.721493,0.576828,0.571398,0.525889,0.042702,0.958928,0.662019,0.577296,0.0930301,0.24271,0.842443,0.452761,0.723946,0.733301,0.921621,0.0833091,0.300468,0.526504,0.479467,0.746755,0.346167,0.871423,0.176103,0.778077,0.454036,0.602251,0.615122,0.87399,0.0329961,0.883849,0.400985,0.412275,0.278834,0.0691831,0.791793,0.651731,0.727476,0.809846,0.0640945,0.195492,0.462899,0.497294,0.298886,0.935012,0.347845,0.920649,0.267124,0.140992,0.550457,0.320079,0.0402352,0.411557,0.4623,0.88548,0.34109,0.479887,0.447052,0.466912,0.815286,0.826411,0.0392796,0.751803,0.589186,0.0647668,0.257098,0.9798,0.847547,0.579756,0.501584,0.162134,0.288603,0.0638047,0.683772,0.239873,0.321137,0.511216,0.235062,0.249545,0.966418,0.49057,0.631633,0.995975,0.459165,0.705903,0.561614,0.180591,0.630703,0.617794,0.604541,0.47299,0.705988,0.067191,0.658388,0.0342321,0.706904,0.677228,0.768904,0.257572,0.645467,0.906576,0.362184,0.281307,0.0731437,0.435704,0.987396,0.624349,0.259373,0.0471797,0.935648,0.18799,0.0182478,0.566275,0.634718,0.47116,0.664046,0.0657108,0.51082,0.69384,0.356948,0.063113,0.570204,0.94938,0.0460212,0.641954,0.143838,0.0982887,0.523547,0.39179,0.948772,0.371067,0.257513,0.270536,0.121548,0.61954,0.561924,0.740365,0.978267,0.482682,0.467113,0.975946,0.808326,0.517658,0.216799,0.233982,0.562066,0.00293922,0.985984,0.641719,0.0939685,0.187458,0.677361,0.542656,0.0770224,0.754829,0.413784,0.919299,0.266681,0.347762,0.349956,0.246932,0.257666,0.62308,0.278275,0.253207,0.92534,0.620306,0.654369,0.707742,0.343351,0.974424,0.328197,0.95174,0.876777,0.846036,0.93036,0.545581,0.337496,0.358698,0.390838,0.565585,0.539769,0.276654,0.478676,0.398659,0.897014,0.871855,0.326381,0.186582,0.579345,0.808687,0.0201929,0.115421,0.214448,0.636659,0.561169,0.587192,0.96894,0.572098,0.00193208,0.614916,0.739013,0.117331,0.680394,0.0902525,0.373768,0.745391,0.065031,0.329832,0.375185,0.325126,0.614028,0.95902,0.994349,0.824534,0.425485,0.0233312,0.96103,0.356492,0.453108,0.32555,0.579839,0.406825,0.0109689,0.0771418,0.462365,0.397818,0.536591,0.687491,0.347227,0.380754,0.466533,0.229103,0.295343,0.21705,0.94057,0.0479077,0.0813646,0.896749,0.0884603,0.835459,0.0301391,0.2836,0.73389,0.843644,0.11428,0.0533306,0.311114,0.108995,0.232254,0.502693,0.184282,0.0608777,0.416961,0.289751,0.784115,0.827821,0.269299,0.133864,0.847383,0.578746,0.6704,0.28539,0.239349,0.496893,0.551656,0.391329,0.69257,0.942859,0.1493,0.307265,0.800397,0.416944,0.626225,0.242519,0.650013,0.461394,0.652039,0.74483,0.0767952,0.174221,0.959975,0.289461,0.108455,0.289175,0.88661,0.095884,0.0525215,0.467471,0.185268,0.621213,0.549941,0.670467,0.566084,0.263325,0.300596,0.39164,0.948819,0.0748094,0.904833,0.946383,0.901954,0.356074,0.103585,0.587532,0.439775,0.199292,0.137083,0.557637,0.537,0.612119,0.0450048,0.0441037,0.82231,0.398559,0.481759,0.958279,0.518798,0.719033,0.390567,0.835949,0.527262,0.0700249,0.884689,0.310355,0.188116,0.858829,0.536592,0.334166,0.848373,0.155944,0.0374138,0.178546,0.0973183,0.0714193,0.16307,0.409736,0.365293,0.693115,0.722051,0.882802,0.619356,0.584825,0.452219,0.307066,0.867356,0.781462,0.752015,0.647097,0.247233,0.611246,0.510661,0.0342795,0.179707,0.465291,0.334355,0.280186,0.956991,0.0700437,0.0391658,0.902664,0.00885469,0.22345,0.803499,0.868496,0.417006,0.128897,0.138764,0.00440085,0.223541,0.235442,0.512778,0.977985,0.0528024,0.81276,0.261678,0.804563,0.291361,0.966415,0.27958,0.917512,0.298806,0.255681,0.729046,0.352335,0.909928,0.573568,0.934619,0.0225335,0.104474,0.412278,0.304189,0.593137,0.788899,0.0910007,0.914372,0.0301388,0.0904828,0.488797,0.795557,0.0620011,0.603095,0.458495,0.547422,0.984382,0.574546,0.333419,0.256096,0.948791,0.987916,0.134465,0.649293,0.0463563,0.773416,0.116282,0.00763267,0.720452,0.644848,0.244343,0.779285,0.405143,0.893299,0.0344128,0.47582,0.81603,0.646044,0.245176,0.190762,0.636648,0.983245,0.248546,0.039651,0.0620819,0.498106,0.843273,0.349386,0.355626,0.318812,0.338488,0.00681299,0.0176457,0.181341,0.190332,0.70655,0.899497,0.775659,0.60799,0.943122,0.0818104,0.965274,0.616794,0.461582,0.665932,0.288409,0.282131,0.0305899,0.851058,0.855974,0.875964,0.223699,0.153425,0.145987,0.479428,0.158565,0.858511,0.971966,0.785405,0.0746871,0.0759373,0.639954,0.0877556,0.905191,0.912429,0.137704,0.634686,0.754641,0.993885,0.410516,0.356823,0.727258,0.452923,0.814958,0.934271,0.930506,0.578081,0.23298,0.045274,0.857246,0.492575,0.376163,0.236931,0.436943,0.957173,0.474515,0.506014,0.837959,0.44385,0.0138484,0.154525,0.212861,0.263051,0.913967,0.794681,0.876961,0.998841,0.376459,0.591259,0.301429,0.55116,0.190462,0.183643,0.897556,0.363548,0.281307,0.989267,0.08406,0.565599,0.371036,0.650732,0.301725,0.804138,0.560173,0.0816159,0.362908,0.454803,0.913078,0.578793,0.621567,0.935159,0.399224,0.502618,0.966851,0.544628,0.912431,0.328892,0.223982,0.900598,0.520677,0.23439,0.688691,0.987222,0.932665,0.439677,0.290505,0.297218,0.77145,0.339061,0.514033,0.619479,0.569518,0.587097,0.700128,0.0673077,0.820413,0.990229,0.446737,0.483322,0.181392,0.456661,0.976345,0.274001,0.938559,0.0179235,0.0564444,0.461058,0.737717,0.692459,0.135527,0.931213,0.187275,0.970977,0.915786,0.67365,0.679322,0.784798,0.683128,0.890543,0.898519,0.893809,0.701434,0.185709,0.696898,0.00448924,0.731459,0.527808,0.896417,0.266061,0.663979,0.0750012,0.167575,0.0787036,0.644642,0.951273,0.475869,0.619917,0.654856,0.282789,0.264002,0.963125,0.339042,0.37975,0.42764,0.989297,0.298762,0.451957,0.66342,0.123957,0.442922,0.925909,0.128431,0.886608,0.504417,0.483747,0.257552,0.309432,0.719264,0.916427,0.274414,0.270956,0.781142,0.64439,0.215528,0.710855,0.92119,0.777479,0.414683,0.0226198,0.544084,0.599876,0.634879,0.981085,0.402252,0.184091,0.165449,0.177177,0.624246,0.183025,0.0444622,0.745955,0.122324,0.104606,0.0555714,0.669247,0.298177,0.674827,0.871031,0.702426,0.805168,0.139245,0.397518,0.133127,0.741248,0.708142,0.122493,0.0807397,0.0616263,0.175963,0.906029,0.26397,0.161849,0.717775,0.986624,0.341399,0.258207,0.540234,0.970363,0.270801,0.0935146,0.792342,0.619145,0.134393,0.929129,0.385473,0.0540427,0.987745,0.128878,0.724932,0.58673,0.5603,0.551199,0.397515,0.508045,0.343657,0.39335,0.653024,0.0622808,0.30467,0.926903,0.457548,0.350844,0.956654,0.403546,0.514683,0.758249,0.961272,0.923918,0.363734,0.712601,0.388726,0.17093,0.367769,0.804772,0.595724,0.669986,0.232341,0.995318,0.440799,0.0695117,0.214927,0.375258,0.33967,0.649898,0.516228,0.161589,0.15798,0.164571,0.472097,0.732294,0.993402,0.498938,0.514041,0.275643,0.211365,0.365184,0.365612,0.780013,0.503338,0.632644,0.447409,0.656861,0.559579,0.431805,0.781422,0.386587,0.423423,0.814748,0.734182,0.29893,0.0690268,0.452905,0.0189205,0.693879,0.228766,0.239863,0.694772,0.854073,0.498438,0.197325,0.337157,0.408468,0.949908,0.658362,0.221351,0.0998393,0.364806,0.83219,0.680566,0.194065,0.238804,0.176315,0.61005,0.385353,0.320408,0.437117,0.142392,0.611272,0.221251,0.401098,0.885041,0.934648,0.10015,0.305077,0.0935578,0.750641,0.390915,0.202301,0.802153,0.775592,0.0549662,0.700463,0.0705366,0.67205,0.454183,0.438625,0.134418,0.159675,0.528759,0.631067,0.191646,0.942245,0.608135,0.676742,0.0841445,0.473674,0.916395,0.233527,0.581668,0.857682,0.782428,0.690073,0.160954,0.367286,0.842174,0.249701,0.388592,0.0487403,0.722046,0.624215,0.0930373,0.49449,0.548523,0.269688,0.361169,0.0952237,0.553803,0.604426,0.659433,0.616749,0.511615,0.532345,0.577116,0.82631,0.490872,0.0595508,0.337462,0.0916725,|0.655615,0.585275,0.0609981,0.553647,0.022472,0.529539,0.676366,0.627818,0.279674,0.847577,0.487986,0.884253,0.343922,0.628911,0.163098,0.0354604,0.767641,0.96772,0.798983,0.0857695,0.0302591,0.517565,0.929618,0.637122,0.299906,0.588298,0.502215,0.892812,0.960138,0.661196,0.787863,0.845313,0.355716,0.155274,0.19913,0.0235344,0.978344,0.128137,0.318197,0.366359,0.544921,0.666324,0.0611219,0.788043,0.315194,0.0848857,0.200489,0.929553,0.59026,0.439355,0.2174,0.345,0.408551,0.233306,0.565304,0.304565,0.902816,0.803562,0.546399,0.681415,0.464934,0.338851,0.647911,0.0594118,0.691463,0.00779235,0.436944,0.0355906,0.357264,0.158305,0.00638103,0.0140268,0.683036,0.739088,0.595567,0.246669,0.178998,0.771576,0.569757,0.556062,0.232009,0.430334,0.668124,0.298397,0.507057,0.627757,0.134792,0.354588,0.619791,0.531054,0.488264,0.277892,0.888228,0.465818,0.715156,0.828556,0.226619,0.210019,0.60732,0.623452,0.627356,0.479652,0.388054,0.98445,0.624331,0.982404,0.506515,0.547568,0.545647,0.29404,0.697473,0.777091,0.10958,0.775126,0.202007,0.303708,0.821032,0.602485,0.354299,0.320704,0.582127,0.438033,0.441892,0.888745,0.64487,0.00256026,0.433407,0.628643,0.137333,0.265661,0.136586,0.88689,0.265241,0.853477,0.709165,0.464197,0.726983,0.751936,0.669943,0.50251,0.439202,0.332593,0.482983,0.0254771,0.353972,0.0105058,0.927129,0.677399,0.253082,0.939144,0.521846,0.29168,0.10322,0.803116,0.468214,0.880388,0.648965,0.871481,0.304302,0.366542,0.276783,0.298857,0.0355423,0.973463,0.977845,0.233856,0.415429,0.924787,0.678891,0.927058,0.283487,0.726457,0.21816,0.833746,0.806634,0.289524,0.354824,0.10035,0.36073,0.458389,0.0142689,0.239784,0.914378,0.0221444,0.814247,0.942253,0.653758,0.984173,0.439293,0.856864,0.0784064,0.14363,0.994666,0.617793,0.978805,0.713208,0.311812,0.457477,0.940488,0.250068,0.0205421,0.368669,0.0795619,0.458078,0.0987498,0.936307,0.369026,0.251157,0.549963,0.0851931,0.343652,0.776691,0.822978,0.945147,0.339171,0.885157,0.78551,0.739077,0.704784,0.311924,0.917219,0.261317,0.307346,0.364913,0.520162,0.139994,0.0874913,0.201896,0.363745,0.576068,0.000885308,0.620388,0.0586888,0.212837,0.241543,0.750062,0.129908,0.270954,0.160185,0.470558,0.0677897,0.756945,0.660678,0.0806105,0.87664,0.0651959,0.91847,0.899273,0.312158,0.0969744,0.157426,0.423112,0.614999,0.40465,0.702928,0.461559,0.751198,0.951902,0.643903,0.183184,0.326297,0.987758,0.0164886,0.0995009,0.995434,0.892089,0.755382,0.35005,0.69898,0.526845,0.994411,0.340099,0.806963,0.272772,0.592372,0.0397008,0.41553,0.762663,0.527293,0.492662,0.996548,0.168432,0.47562,0.301376,0.317518,0.637489,0.50922,0.0832493,0.621161,0.947789,0.621718,0.196801,0.622342,0.543082,0.534727,0.232802,0.176405,0.260938,0.958093,0.327903,0.984321,0.78103,0.810051,0.709175,0.616634,0.666877,0.148526,0.782961,0.327457,0.075662,0.377854,0.450425,0.92657,0.637232,0.932888,0.650817,0.573635,0.290842,0.479669,0.359715,0.564914,0.861145,0.161885,0.120034,0.502998,0.691748,0.969104,0.299495,0.520427,0.168308,0.322834,0.570678,0.812037,0.491487,0.249386,0.76399,0.752131,0.731456,0.552828,0.57722,0.482232,0.172288,0.0559514,0.674445,0.612761,0.680198,0.524258,0.604797,0.562748,0.680189,0.672206,0.766203,0.368421,0.759918,0.60952,0.0442385,0.185718,0.0632944,0.779525,0.154875,0.658105,0.479411,0.311031,0.961867,0.551279,0.947951,0.624101,0.55035,0.824132,0.206846,0.536728,0.18528,0.868607,0.793855,0.597651,0.752436,0.148588,0.173595,0.440443,0.778285,0.294944,0.168291,0.481094,0.366159,0.0363839,0.33196,0.65429,0.0192879,0.272323,0.709921,0.980136,0.23653,0.77974,0.283314,0.742817,0.959346,0.836738,0.811896,0.189168,0.472677,0.373542,0.405542,0.507833,0.538708,0.685926,0.0339835,0.766275,0.269667,0.33124,0.158812,0.373123,0.285119,0.368165,0.994064,0.000927627,0.282477,0.93481,0.769673,0.774595,0.324479,0.564167,0.204967,0.969963,0.707413,0.873127,0.84304,0.257565,0.68263,0.455449,0.572882,0.694775,0.014972,0.82006,0.561289,0.401153,0.359918,0.844677,0.556952,0.748755,0.762781,0.153609,0.161087,0.389038,0.359206,0.557329,0.382129,0.426511,0.302406,0.815311,0.728728,0.385564,0.960265,0.106814,0.439077,0.961332,0.372485,0.564923,0.448807,0.232167,0.0157534,0.793594,0.276973,0.282929,0.214287,0.509777,0.497221,0.690859,0.56935,0.0204071,0.699363,0.997978,0.06171,0.59684,0.668025,0.727301,0.816863,0.49141,0.486079,0.394222,0.0830529,0.144736,0.967926,0.216663,0.0743731,0.309341,0.233825,0.559211,0.649073,0.800022,0.936262,0.0804857,0.173032,0.830593,0.745222,0.688661,0.80949,0.891143,0.15788,0.96121,0.266621,0.338814,0.79642,0.286399,0.899528,0.626225,0.58353,0.0726163,0.950294,0.866898,0.643168,0.656668,0.504614,0.33316,0.221049,0.571963,0.767058,0.541717,0.102944,0.75934,0.333942,0.521674,0.797339,0.330005,0.599581,0.851708,0.941791,0.479403,0.412498,0.082558,0.11481,0.389996,0.763737,0.274564,0.74168,0.530313,0.320329,0.467921,0.0960268,0.776819,0.589542,0.744435,0.392263,0.419968,0.410347,0.413073,0.411488,0.643803,0.0430548,0.395587,0.725117,0.763715,0.828947,0.456324,0.108855,0.601622,0.59676,0.873989,0.827609,0.643867,0.435448,0.676698,0.420131,0.742178,0.820404,0.618798,0.364999,0.621472,0.0330666,0.67302,0.72065,0.419275,0.762246,0.99639,0.258015,0.463879,0.477556,0.0225571,0.567327,0.972953,0.711565,0.0811614,0.357395,0.692716,0.552266,0.329086,0.893891,0.148229,0.477305,0.216733,0.9925,0.632586,0.384893,0.251188,0.562456,0.327349,0.816837,0.123424,0.518028,0.254059,0.698465,0.0915747,0.225345,0.0411118,0.409415,0.660774,0.367016,0.597804,0.864299,0.346939,0.864912,0.925055,0.633247,0.944756,0.817373,0.772637,0.57745,0.520788,0.791777,0.228914,0.960999,0.915757,0.506502,0.290537,0.638102,0.551543,0.897656,0.819946,0.740646,0.812209,0.71219,0.675887,0.581081,0.876112,0.861145,0.945734,0.615874,0.528272,0.631993,0.0517882,0.658653,0.62944,0.176,0.721052,0.209662,0.16973,0.833357,0.162005,0.0443926,0.944476,0.479944,0.53727,0.095719,0.161597,0.0145487,0.657787,0.211728,0.839899,0.349701,0.0298405,0.720547,0.890912,0.975862,0.803029,0.417815,0.769194,0.699756,0.600649,0.730264,0.144446,0.92515,0.280482,0.872588,0.183833,0.219603,0.504553,0.782292,0.956018,0.328037,0.8564,0.700661,0.272709,0.794075,0.500339,0.0813166,0.432361,0.566371,0.218069,0.541391,0.4181,0.505549,0.0613627,0.567402,0.0974303,0.556327,0.138008,0.909639,0.361017,0.578797,0.0671966,0.763342,0.933311,0.513315,0.114351,0.152617,0.448525,0.674595,0.693401,0.794141,0.227905,0.537863,0.765011,0.106562,0.590355,0.478335,0.790476,0.271061,0.973282,0.775082,0.00135458,0.656644,0.00960308,0.157616,0.449257,0.700867,0.063319,0.455724,0.876053,0.526079,0.278157,0.260805,0.419617,0.907664,0.248902,0.775387,0.161032,0.552086,0.602248,0.218462,0.997609,0.767823,0.663086,0.422038,0.763622,0.20446,0.567393,0.965138,0.233834,0.979687,0.0354884,0.805787,0.154074,0.416028,0.433997,0.196239,0.912584,0.887371,0.452648,0.52383,0.236448,0.333337,0.653321,0.660796,0.704194,0.165989,0.409255,0.512295,0.763799,0.51818,0.779994,0.263762,0.782519,0.737274,0.831638,0.282504,0.993622,0.96969,0.395345,0.628317,0.693293,0.217295,0.238031,0.197408,0.785971,0.271669,0.204279,0.733596,0.482813,0.0857481,0.580577,0.152378,0.699542,0.106007,0.329305,0.523397,0.983261,0.451025,0.912712,0.688481,0.120777,0.849854,0.282457,0.114467,0.555308,0.893124,0.237252,0.0547138,0.192593,0.767223,0.788961,0.482936,0.261307,0.974766,0.593487,0.449735,0.396736,0.593606,0.620917,0.747839,0.119472,0.728398,0.324743,0.401728,0.822648,0.541183,0.341191,0.637902,0.567901,0.307744,0.364738,0.364181,0.974392,0.404508,0.00862324,0.204856,0.434412,0.946732,0.979837,0.333601,0.546875,0.920738,0.637363,0.617413,0.564475,0.490438,0.90269,0.235537,0.752503,0.39136,0.18165,0.078539,0.261086,0.371618,0.469685,0.336624,0.2343,0.867157,0.0448832,0.559893,0.793268,0.744457,0.49788,0.252337,0.405445,0.153,0.438568,0.845504,0.74602,0.366889,0.687544,0.948305,0.235613,0.00493038,0.715992,0.131388,0.851908,0.878005,0.432466,0.554624,0.89944,0.259433,0.0103655,0.280013,0.0499002,0.437816,0.952273,0.565475,0.992035,0.386687,0.600841,0.95889,0.413428,0.878357,0.685205,0.557618,0.984044,0.757581,0.0587528,0.0186968,0.0664502,0.221561,0.686891,0.00987673,0.988466,0.639356,0.56,0.415559,0.0369513,0.343524,0.997314,0.208854,0.128377,0.424687,0.354082,0.782189,0.19914,0.493882,0.714604,0.659611,0.681118,0.0627861,0.948407,0.222427,0.34444,0.837785,0.917774,0.389991,0.969122,0.95141,0.725367,0.724903,0.449678,0.0580225,0.372866,0.522716,0.653576,0.596033,0.764576,0.975035,0.124085,0.861983,0.125081,0.316995,0.27082,0.703838,0.947106,0.759559,0.52081,0.727462,0.574168,0.526247,0.0283974,0.888323,0.208084,0.229516,0.549941,0.291551,0.0598224,0.6588,0.34647,0.670968,0.378228,0.195636,0.886432,0.439346,0.0422283,0.611109,0.992674,0.926543,0.0384488,0.533533,0.487697,0.489926,0.33885,0.69309,0.0838718,0.311675,0.0377242,0.19844,0.550638,0.373452,0.401363,0.45853,0.891737,0.55883,0.0810327,0.85831,0.582196,0.662704,0.0451612,0.971533,0.332836,0.393364,0.91443,0.349553,0.0949841,0.57703,0.642324,0.995575,0.61029,0.777991,|0.0863193,0.158991,0.728562,0.928489,0.63436,0.476155,0.0413417,0.428559,0.238708,0.00752062,0.42589,0.578494,0.320967,0.941304,0.538932,0.0580154,0.355797,0.401767,0.522263,0.451489,0.465782,0.395329,0.412841,0.0899058,0.656076,0.130217,0.665127,0.968909,0.115786,0.620086,0.0349054,0.2036,0.930351,0.619892,0.0600771,0.426772,0.883815,0.0715344,0.803842,0.663683,0.610647,0.389054,0.969218,0.00995576,0.675879,0.701377,0.916414,0.646273,0.453798,0.206367,0.576375,0.756963,0.510183,0.168896,0.427966,0.900905,0.964822,0.807411,0.645295,0.691789,0.108291,0.602288,0.18938,0.518369,0.731027,0.271394,0.1418,0.717905,0.696854,0.703622,0.568323,0.0729322,0.0298006,0.828143,0.139419,0.0885831,0.285616,0.934646,0.0800593,0.0125678,0.949898,0.657015,0.69003,0.0720527,0.735379,0.190215,0.148386,0.842149,0.476067,0.00185955,0.119106,0.819939,0.554156,0.441088,0.313898,0.827662,0.968252,0.0269896,0.13717,0.562526,0.854975,0.890064,0.141696,0.646416,0.129861,0.557763,0.739104,0.704061,0.366415,0.949424,0.441004,0.223202,0.794558,0.396734,0.480988,0.115665,0.852717,0.0886059,0.00617212,0.967862,0.537272,0.218912,0.318987,0.883813,0.334949,0.458605,0.354781,0.928935,0.985399,0.46637,0.0754513,0.791201,0.926267,0.59981,0.185577,0.40685,0.055709,0.371476,0.345919,0.396426,0.0165709,0.399271,0.341353,0.645884,0.283068,0.824321,0.399189,0.744641,0.0979269,0.918873,0.717493,0.266612,0.177276,0.56247,0.301921,0.714839,0.228482,0.607356,0.396742,0.822139,0.511419,0.217056,0.702905,0.209766,0.191081,0.896448,0.320876,0.581011,0.929526,0.805698,0.442236,0.00138289,0.874552,0.369122,0.974122,0.796862,0.187729,0.744137,0.223634,0.310003,0.94115,0.896675,0.246095,0.302328,0.449177,0.421054,0.270108,0.610054,0.410337,0.569568,0.877554,0.943448,0.595589,0.0231638,0.0404431,0.273568,0.188445,0.125067,0.38085,0.218769,0.427401,0.168625,0.595775,0.57351,0.00526297,0.91667,0.03433,0.513658,0.44604,0.770377,0.10479,0.774732,0.0167266,0.905069,0.180534,0.935705,0.165521,0.849349,0.353207,0.807573,0.987083,0.630209,0.0664927,0.627122,0.717058,0.495275,0.757479,0.860943,0.359438,0.274985,0.196413,0.449108,0.43516,0.777162,0.474956,0.535045,0.108926,0.679845,0.486591,0.635608,0.639991,0.96514,0.134061,0.290944,0.0297453,0.798036,0.290215,0.656584,0.667604,0.844048,0.316826,0.423785,0.990335,0.824093,0.0634501,0.219822,0.621171,0.328342,0.551128,0.175077,0.292631,0.733391,0.206775,0.826057,0.0149174,0.975846,0.677537,0.69337,0.71859,0.928616,0.0728273,0.453154,0.535105,0.0527867,0.668936,0.934993,0.0018028,0.616458,0.947332,0.0617463,0.363561,0.322538,0.984052,0.349714,0.932829,0.0710256,0.0434677,0.312334,0.656064,0.994097,0.482348,0.568309,0.989335,0.306989,0.0252046,0.373313,0.818806,0.779917,0.746471,0.562128,0.753546,0.722732,0.0724931,0.452819,0.608782,0.713858,0.423422,0.755264,0.853169,0.660188,0.310522,0.242159,0.0585202,0.576999,0.965096,0.575409,0.170264,0.0929087,0.72601,0.331625,0.779989,0.183617,0.636427,0.448623,0.213281,0.735475,0.790308,0.28215,0.203502,0.747462,0.797697,0.405466,0.27619,0.813686,0.280341,0.905254,0.960161,0.568267,0.366392,0.833908,0.760212,0.326346,0.71686,0.212149,0.544903,0.830984,0.00747263,0.47521,0.409847,0.124044,0.729165,0.63468,0.607214,0.866869,0.334886,0.145174,0.718939,0.285992,0.220111,0.802819,0.270332,0.05316,0.509086,0.085888,0.18263,0.0797205,0.674887,0.553656,0.793859,0.950114,0.910403,0.373154,0.596763,0.659211,0.468433,0.555349,0.708227,0.255099,0.339135,0.235223,0.968592,0.291924,0.705301,0.259329,0.986974,0.144502,0.502599,0.942469,0.0809637,0.540246,0.368396,0.733773,0.305549,0.460732,0.941044,0.524815,0.122165,0.130722,0.650691,0.0910752,0.784607,0.0788485,0.548539,0.538984,0.631038,0.810399,0.659487,0.354601,0.756777,0.681666,0.532721,0.605825,0.473903,0.925941,0.50356,0.0183777,0.574274,0.238732,0.490018,0.520544,0.894416,0.642705,0.625812,0.441013,0.704703,0.370689,0.946699,0.693605,0.671623,0.106326,0.156288,0.436399,0.622561,0.44489,0.986333,0.0848348,0.585124,0.685854,0.321916,0.649446,0.520401,0.528511,0.793184,0.211395,0.120227,0.0901724,0.378109,0.256495,0.250823,0.529908,0.626863,0.443028,0.405351,0.835992,0.686251,0.930158,0.0326793,0.169438,0.906684,0.516556,0.718493,0.0541127,0.174303,0.611245,0.188576,0.356733,0.0401259,0.352043,0.582738,0.548319,0.890043,0.0284849,0.199139,0.5679,0.49135,0.362475,0.878221,0.131057,0.669536,0.733936,0.763289,0.67268,0.900497,0.523309,0.457305,0.233888,0.455835,0.120459,0.506671,0.822169,0.470474,0.993693,0.110927,0.707336,0.0138081,0.102146,0.865467,0.365753,0.957914,0.834349,0.430164,0.0781372,0.3392,0.352327,0.438438,0.402009,0.909168,0.0420933,0.924928,0.126612,0.760853,0.829784,0.357363,0.639253,0.0644616,0.613922,0.373116,0.334882,0.285218,0.307152,0.405224,0.690022,0.527723,0.0481972,0.645866,0.49191,0.526892,0.503357,0.915685,0.398394,0.0468063,0.431512,0.066533,0.63869,0.901552,0.16441,0.411373,0.619366,0.395913,0.0306478,0.399751,0.538961,0.0882037,0.0576443,0.289501,0.671943,0.316544,0.595626,0.0624309,0.960288,0.718084,0.0347182,0.657809,0.650072,0.817988,0.750053,0.578231,0.0500389,0.285429,0.20187,0.29937,0.262141,0.232984,0.909567,0.782806,0.22883,0.80429,0.885835,0.11239,0.889826,0.846961,0.405978,0.199565,0.211343,0.463389,0.418211,0.278378,0.332753,0.457711,0.887311,0.91952,0.274778,0.181104,0.515427,0.311719,0.955225,0.663303,0.281282,0.865604,0.867864,0.570389,0.868911,0.178408,0.853671,0.626585,0.318247,0.681521,0.831498,0.937043,0.845517,0.681849,0.92892,0.939161,0.627457,0.210184,0.208008,0.953814,0.105353,0.00310981,0.125449,0.966064,0.497887,0.0703987,0.785524,0.0756618,0.181975,0.984915,0.234092,0.101798,0.641049,0.774989,0.623208,0.838947,0.870846,0.981846,0.360295,0.760403,0.583505,0.518,0.9653,0.960815,0.912865,0.388266,0.196852,0.662603,0.392002,0.873304,0.682169,0.0914437,0.00971043,0.141716,0.360255,0.0461724,0.118532,0.290472,0.68859,0.950836,0.898518,0.613167,0.939665,0.448782,0.113837,0.764451,0.505012,0.526552,0.677666,0.0954385,0.0582915,0.80137,0.375507,0.855202,0.520914,0.693283,0.530712,0.674312,0.165181,0.32827,0.374711,0.367225,0.904574,0.695874,0.132015,0.751778,0.5038,0.123217,0.701831,0.0690526,0.293509,0.142531,0.57484,0.245154,0.500758,0.948059,0.574401,0.812871,0.352785,0.478385,0.305335,0.7764,0.439536,0.526637,0.698758,0.581381,0.762022,0.613741,0.140602,0.270466,0.744108,0.866594,0.278252,0.181838,0.419029,0.419097,0.0852877,0.563733,0.720805,0.146595,0.611747,0.982633,0.508978,0.187656,0.0406507,0.426055,0.0245205,0.656876,0.528339,0.605999,0.413733,0.0450373,0.180377,0.54594,0.0646785,0.205951,0.0856255,0.537042,0.187142,0.816256,0.812315,0.736748,0.896186,0.488488,0.283153,0.63983,0.653542,0.908717,0.00111663,0.160769,0.0826882,0.330183,0.932337,0.747871,0.926172,0.683946,0.331438,0.505795,0.227468,0.283426,0.175309,0.129843,0.753981,0.420412,0.544245,0.670317,0.840115,0.638878,0.545561,0.666726,0.384752,0.164433,0.0220912,0.85517,0.251409,0.956288,0.479168,0.0132638,0.354554,0.799202,0.848978,0.652234,0.0563659,0.82332,0.778804,0.572854,0.315387,0.049978,0.381754,0.155721,0.393462,0.836101,0.319354,0.573353,0.145468,0.971509,0.971037,0.649845,0.518197,0.356723,0.161351,0.213066,0.302063,0.562293,0.19746,0.894677,0.552806,0.0828758,0.612976,0.346824,0.331987,0.951797,0.351397,0.213531,0.873946,0.808328,0.588541,0.355332,0.463123,0.342247,0.448265,0.704466,0.398464,0.0738334,0.618286,0.920915,0.196772,0.120691,0.356666,0.552333,0.680852,0.047929,0.866077,0.651853,0.954305,0.190188,0.938795,0.500836,0.673147,0.813223,0.974235,0.43045,0.460718,0.470843,0.553533,0.539607,0.706498,0.513478,0.178553,0.422677,0.426425,0.0232613,0.635272,0.500979,0.718746,0.90985,0.890368,0.558621,0.727219,0.626498,0.421043,0.215326,0.661945,0.161471,0.615387,0.4924,0.0277033,0.818756,0.289747,0.447006,0.59083,0.0846936,0.660411,0.509121,0.800396,0.857172,0.758408,0.586048,0.382559,0.512877,0.254029,0.876446,0.149459,0.171784,0.350133,0.79051,0.672687,0.515732,0.217573,0.349426,0.456711,0.335408,0.421282,0.389164,0.801787,0.348936,0.163339,0.649924,0.20256,0.32456,0.456813,0.592107,0.132522,0.396147,0.100117,0.942017,0.960428,0.279918,0.855423,0.466837,0.0080294,0.833329,0.362647,0.798774,0.545587,0.859295,0.527963,0.652336,0.67399,0.932102,0.455346,0.00819188,0.588378,0.301245,0.9715,0.83377,0.975683,0.356898,0.564536,0.92981,0.873985,0.883518,0.870268,0.732802,0.70462,0.817222,0.688768,0.75754,0.557201,0.53488,0.0977601,0.556272,0.238172,0.30699,0.430993,0.0772195,0.163214,0.693504,0.87796,0.756859,0.918562,0.110254,0.17111,0.53467,0.263602,0.866307,0.926963,0.0919752,0.229744,0.531361,0.765462,0.360971,0.0801162,0.7582,0.493193,0.618005,0.000380814,0.0348226,0.273607,0.49242,0.639655,0.540644,0.959486,0.909147,0.233699,0.686237,0.493163,0.664982,0.184843,0.886372,0.986409,0.311529,0.513555,0.195057,0.45024,0.671297,0.190574,0.550447,0.894418,0.80232,0.265761,0.611545,0.375707,0.489845,0.930155,0.0361854,0.19218,0.100881,0.713436,0.864435,0.953973,0.106512,0.874506,0.656576,0.183233,0.98322,0.742457,0.424076,0.315786,0.788577,0.843547,0.561646,0.040408,|0.820824,0.903375,0.660614,0.401714,0.373464,0.193436,0.437116,0.245814,0.0259033,0.951038,0.626083,0.0348604,0.281092,0.689723,0.692739,0.0955408,0.0638826,0.530372,0.108673,0.917241,0.231268,0.0850938,0.103364,0.217055,0.83734,0.560474,0.981624,0.356873,0.836007,0.22636,0.129162,0.546209,0.952922,0.715477,0.108588,0.87147,0.829773,0.390571,0.43674,0.0624907,0.394832,0.508011,0.970585,0.936503,0.709658,0.816205,0.248594,0.220947,0.0300677,0.971967,0.616853,0.664473,0.609734,0.980097,0.746025,0.630842,0.502578,0.73153,0.747164,0.399681,0.786581,0.697599,0.119602,0.458084,0.542578,0.54077,0.975695,0.372158,0.561875,0.699965,0.824818,0.626505,0.28447,0.988119,0.14763,0.515126,0.603228,0.72256,0.587059,0.313967,0.29176,0.621943,0.484286,0.747596,0.0582859,0.77335,0.799643,0.115168,0.979338,0.996835,0.717356,0.00214189,0.7488,0.339808,0.335736,0.61009,0.221414,0.424878,0.0105283,0.919049,0.8355,0.169779,0.815931,0.327242,0.198636,0.654783,0.319989,0.316738,0.24261,0.602217,0.276867,0.541665,0.591549,0.36462,0.68582,0.953677,0.411247,0.264527,0.880184,0.487029,0.608741,0.775521,0.520482,0.959592,0.350124,0.713857,0.891923,0.776968,0.666049,0.815243,0.0382583,0.844219,0.740796,0.687357,0.379582,0.678491,0.295399,0.186134,0.0337605,0.105548,0.19883,0.852351,0.270619,0.13387,0.039957,0.597649,0.647123,0.302091,0.65347,0.405828,0.500588,0.856347,0.632894,0.255829,0.563132,0.881187,0.133517,0.978658,0.964091,0.56282,0.255928,0.00867039,0.939309,0.513915,0.245619,0.370819,0.949895,0.904136,0.233927,0.915922,0.715141,0.028484,0.385143,0.580327,0.848969,0.754445,0.723484,0.407478,0.222175,0.828763,0.631323,0.852862,0.505455,0.237371,0.153629,0.131223,0.919177,0.676735,0.828707,0.910179,0.114889,0.647182,0.205607,0.990256,0.462619,0.41899,0.198797,0.418926,0.353319,0.256757,0.991486,0.223706,0.0878363,0.347188,0.149517,0.929488,0.0971168,0.125115,0.0732794,0.475123,0.432534,0.286744,0.368856,0.952575,0.964748,0.838209,0.868302,0.63909,0.789499,0.343178,0.0742637,0.340435,0.661087,0.611777,0.304424,0.12084,0.197839,0.605337,0.139121,0.428171,0.622122,0.450425,0.197741,0.0398051,0.355434,0.31543,0.947178,0.1469,0.353434,0.744533,0.749724,0.14472,0.867654,0.645279,0.714693,0.145047,0.789201,0.0257704,0.7711,0.716373,0.604212,0.789307,0.455005,0.369545,0.385283,0.483883,0.794586,0.175889,0.0178828,0.163848,0.990162,0.874898,0.8617,0.219543,0.610674,0.501462,0.960422,0.0584733,0.195762,0.509146,0.864334,0.392619,0.141157,0.823559,0.445589,0.623654,0.903812,0.197922,0.692244,0.784687,0.330493,0.601952,0.913081,0.196652,0.124821,0.291223,0.484383,0.887827,0.968603,0.867658,0.24382,0.431654,0.652074,0.961073,0.862423,0.686927,0.163934,0.882099,0.327688,0.772021,0.0816835,0.0672175,0.081637,0.128223,0.782193,0.949643,0.655692,0.865144,0.414875,0.918791,0.306137,0.406,0.297091,0.551368,0.949252,0.564892,0.442735,0.815797,0.496398,0.451781,0.264205,0.395068,0.129622,0.647045,0.240253,0.127275,0.389618,0.0761164,0.948251,0.694931,0.424022,0.887453,0.170658,0.587424,0.784797,0.0770053,0.353114,0.362127,0.625562,0.546551,0.325453,0.458557,0.256486,0.85439,0.137712,0.11736,0.296342,0.818463,0.573896,0.446328,0.190237,0.491203,0.289453,0.60551,0.228836,0.961337,0.74017,0.325154,0.154956,0.0141374,0.764671,0.315965,0.245179,0.642736,0.249965,0.425294,0.00963467,0.427588,0.126351,0.550167,0.384033,0.266129,0.181454,0.0766001,0.807026,0.262176,0.849903,0.115714,0.852848,0.400823,0.498738,0.061913,0.203971,0.947874,0.370717,0.924341,0.226043,0.910472,0.132673,0.089962,0.317566,0.0984857,0.224199,0.523124,0.791185,0.979936,0.612521,0.370063,0.915208,0.418889,0.313463,0.093145,0.955571,0.28918,0.353929,0.195288,0.975282,0.487901,0.649719,0.708515,0.905785,0.0662976,0.0853943,0.632025,0.260812,0.0188109,0.637429,0.111835,0.757159,0.12126,0.795639,0.1075,0.847403,0.884505,0.407682,0.888812,0.967064,0.0725818,0.590358,0.336984,0.966711,0.530851,0.554891,0.361529,0.136212,0.939319,0.609454,0.271052,0.963825,0.910564,0.826687,0.809307,0.316512,0.695619,0.410542,0.902737,0.357788,0.582721,0.511194,0.80713,0.232603,0.38325,0.830082,0.205773,0.24906,0.135565,0.885957,0.426315,0.220034,0.667851,0.344961,0.355613,0.146781,0.61653,0.0512029,0.72187,0.476759,0.431503,0.151668,0.94039,0.137187,0.988139,0.303753,0.682291,0.0571907,0.417171,0.54194,0.322356,0.660349,0.528159,0.183681,0.265755,0.0801644,0.466022,0.947797,0.905988,0.023207,0.129622,0.201093,0.277746,0.380793,0.465408,0.251388,0.455628,0.544387,0.729175,0.0917454,0.338109,0.592617,0.0969408,0.300077,0.696051,0.759845,0.827368,0.192188,0.630594,0.269976,0.667965,0.551706,0.703133,0.227278,0.168742,0.489815,0.0513931,0.256357,0.695265,0.300352,0.859826,0.00581944,0.51344,0.340391,0.922287,0.00522178,0.344446,0.323802,0.965648,0.619398,0.104955,0.293876,0.204077,0.290972,0.70487,0.343789,0.824335,0.0741842,0.294125,0.0794654,0.136956,0.699597,0.74794,0.0613228,0.747205,0.304805,0.453006,0.277834,0.377316,0.588875,0.28353,0.967814,0.714707,0.825425,0.987543,0.937579,0.688393,0.611207,0.123197,0.601775,0.741391,0.632152,0.436455,0.971906,0.746648,0.354136,0.244906,0.614551,0.283127,0.416815,0.559626,0.853881,0.139905,0.873113,0.248001,0.955509,0.863212,0.0724663,0.540146,0.981831,0.844544,0.763303,0.992008,0.672194,0.693011,0.0858988,0.725548,0.125379,0.258074,0.194885,0.343277,0.362621,0.173661,0.965529,0.0127094,0.385552,0.0487979,0.7634,0.906187,0.733091,0.870639,0.833786,0.83176,0.899095,0.947443,0.889485,0.858143,0.897257,0.699964,0.68257,0.827598,0.89412,0.34258,0.490438,0.0841724,0.104397,0.410097,0.645619,0.423652,0.866876,0.3397,0.178515,0.609641,0.642312,0.860153,0.507247,0.30826,0.148769,0.250717,0.473784,0.0876443,0.204951,0.00710684,0.266297,0.665851,0.955451,0.681732,0.954668,0.291322,0.779586,0.208288,0.243297,0.814995,0.432482,0.338276,0.981297,0.196992,0.103467,0.12293,0.290765,0.13719,0.558877,0.031679,0.164851,0.788076,0.648656,0.209727,0.0611809,0.354571,0.0245322,0.496701,0.414683,0.936222,0.931523,0.167623,0.0734495,0.560871,0.916615,0.332719,0.915702,0.319889,0.216769,0.61541,0.0238729,0.939406,0.607388,0.991566,0.905972,0.873596,0.556138,0.849778,0.636198,0.20121,0.48073,0.732947,0.357097,0.234926,0.912942,0.16722,0.705737,0.595944,0.999089,0.877086,0.46454,0.669115,0.548186,0.255473,0.605299,0.242436,0.355665,0.4899,0.0534438,0.867207,0.79959,0.700774,0.916615,0.266728,0.258152,0.571837,0.708642,0.972019,0.360205,0.869877,0.591466,0.664849,0.387244,0.573807,0.618479,0.931099,0.609106,0.631828,0.471897,0.653612,0.431,0.377898,0.911373,0.350253,0.615178,0.532742,0.544858,0.986546,0.816373,0.581211,0.174223,0.865525,0.27242,0.483856,0.408504,0.973964,0.450134,0.313172,0.226078,0.966618,0.17011,0.0495146,0.135519,0.790586,0.291286,0.543259,0.990294,0.391493,0.405193,0.0370517,0.291116,0.580998,0.687541,0.355582,0.463765,0.334666,0.994193,0.850979,0.0452677,0.356059,0.417614,0.0206196,0.728575,0.224874,0.00997698,0.286409,0.533275,0.0054515,0.921034,0.981629,0.044893,0.584156,0.984613,0.952537,0.385747,0.792636,0.478651,0.0528683,0.871131,0.0390225,0.508186,0.648605,0.248825,0.724474,0.170587,0.871946,0.522439,0.417311,0.320302,0.852986,0.847425,0.399922,0.539015,0.627094,0.966778,0.183416,0.690745,0.678737,0.430895,0.836767,0.0124736,0.185728,0.522308,0.483748,0.25893,0.890101,0.886473,0.639122,0.476983,0.671851,0.516549,0.9721,0.867923,0.686263,0.210244,0.0142176,0.199389,0.770306,0.703399,0.328722,0.119799,0.147277,0.176266,0.909839,0.544993,0.413592,0.0749693,0.866953,0.668186,0.999894,0.344786,0.880702,0.621328,0.570436,0.620658,0.153523,0.472349,0.843488,0.684142,0.144928,0.884455,0.802027,0.296105,0.428479,0.29999,0.662136,0.0373751,0.977306,0.799157,0.578392,0.509361,0.299804,0.963152,0.238657,0.438898,0.619945,0.208007,0.0426337,0.0346145,0.659404,0.723145,0.608242,0.361612,0.238527,0.0911541,0.780409,0.323357,0.195837,0.434883,0.826602,0.900395,0.475853,0.320274,0.600044,0.167058,0.230795,0.849526,0.835718,0.42726,0.415991,0.531828,0.815221,0.1522,0.611687,0.257773,0.123303,0.184073,0.457899,0.964436,0.493621,0.159671,0.747803,0.905966,0.151914,0.431027,0.94582,0.304379,0.432931,0.213039,0.996321,0.833698,0.314415,0.414409,0.104875,0.0996047,0.259764,0.458345,0.355546,0.253729,0.835795,0.0560455,0.216371,0.322766,0.770673,0.43206,0.620901,0.708273,0.948304,0.343148,0.102332,0.900828,0.85568,0.636244,0.998948,0.0565705,0.55433,0.92463,0.818893,0.808087,0.318925,0.210515,0.828838,0.870529,0.0526392,0.555257,0.824807,0.340464,0.952614,0.161034,0.788226,0.0729061,0.105277,0.814594,0.362821,0.893863,0.0532672,0.639834,0.825548,0.705119,0.644289,0.286283,0.475254,0.847613,0.578467,0.789533,0.511747,0.434143,0.749832,0.687816,0.570957,0.523405,0.836334,0.700525,0.482282,0.274226,0.27724,0.0832008,0.567565,0.920423,0.652961,0.93069,0.624121,0.91271,0.42572,0.797881,0.235427,0.0418544,0.877531,0.624808,0.406328,0.875344,0.372402,0.611534,0.254948,0.481334,0.432976,0.227112,0.383732,0.764762,0.462297,0.666549,0.780333,0.334582,0.67875,0.355248,0.86115,0.769939,0.481645,0.911033,0.38734,|0.813541,0.852133,0.912774,0.503351,0.537116,0.236289,0.0683975,0.232934,0.480219,0.919323,0.665948,0.302549,0.537994,0.847014,0.161968,0.170651,0.63603,0.0854545,0.454776,0.267169,0.577287,0.175113,0.351483,0.98764,0.742392,0.405752,0.498385,0.990029,0.436672,0.568137,0.595835,0.815076,0.188376,0.590245,0.911305,0.119727,0.510891,0.491401,0.435708,0.642464,0.555058,0.383672,0.598704,0.969294,0.116563,0.524627,0.234309,0.727988,0.655696,0.496125,0.00785172,0.2643,0.271255,0.933744,0.551562,0.898152,0.614476,0.218626,0.38716,0.652297,0.790162,0.930975,0.422124,0.884401,0.179342,0.443783,0.338101,0.23052,0.813632,0.661777,0.168847,0.902015,0.838263,0.478638,0.895933,0.0813901,0.780849,0.206499,0.221402,0.615909,0.706107,0.342359,0.0818805,0.0373617,0.534784,0.884083,0.133345,0.0585471,0.871742,0.473566,0.91169,0.409738,0.482152,0.138345,0.307926,0.0170738,0.617658,0.513755,0.273973,0.876491,0.266598,0.880099,0.812716,0.076416,0.710372,0.509192,0.126232,0.449087,0.155035,0.494983,0.0390944,0.711443,0.924198,0.835227,0.447983,0.426243,0.473094,0.416483,0.0869241,0.682654,0.454704,0.682531,0.741525,0.624711,0.966347,0.973203,0.16155,0.374253,0.0649197,0.688551,0.69827,0.352889,0.903877,0.556461,0.0808053,0.861361,0.325562,0.238803,0.636757,0.00728714,0.320503,0.34108,0.591233,0.360429,0.349934,0.301492,0.0164636,0.119401,0.273926,0.585741,0.758053,0.613211,0.946073,0.558667,0.382667,0.561869,0.872245,0.69392,0.433433,0.55403,0.63891,0.309851,0.337913,0.854129,0.6712,0.0061658,0.630036,0.135375,0.00138485,0.149742,0.0741622,0.449567,0.532527,0.0462844,0.427458,0.0991516,0.222099,0.532536,0.0687692,0.89966,0.998414,0.788205,0.269469,0.430192,0.69081,0.149218,0.200585,0.314251,0.600745,0.910485,0.54788,0.35887,0.660932,0.729004,0.90612,0.981977,0.0218445,0.530521,0.15017,0.191098,0.275272,0.239646,0.656126,0.232168,0.835034,0.482274,0.922251,0.602226,0.436708,0.259059,0.421532,0.827783,0.930308,0.376989,0.384938,0.00330877,0.239269,0.9833,0.512498,0.379736,0.139354,0.288501,0.812013,0.844408,0.605793,0.689275,0.986747,0.101022,0.871299,0.259663,0.791771,0.850723,0.234721,0.832788,0.847538,0.565533,0.140787,0.800015,0.791251,0.956084,0.561222,0.42543,0.109548,0.0371101,0.221993,0.854969,0.665389,0.323014,0.504038,0.402281,0.0618088,0.543006,0.850942,0.0153478,0.637309,0.580103,0.841094,0.214843,0.633584,0.620749,0.407568,0.881896,0.199202,0.530514,0.583009,0.126624,0.00232834,0.515499,0.541212,0.836591,0.620307,0.0677851,0.104927,0.912663,0.905931,0.859512,0.932169,0.119192,0.120709,0.158175,0.0547137,0.282905,0.777673,0.401746,0.879925,0.133257,0.569919,0.398333,0.647694,0.404578,0.890217,0.835141,0.0460898,0.781039,0.804998,0.145302,0.889151,0.443585,0.334077,0.262518,0.993546,0.740434,0.900777,0.764025,0.0177969,0.322104,0.544746,0.476347,0.512716,0.628577,0.398335,0.465015,0.45478,0.260569,0.743349,0.0661728,0.473883,0.725736,0.394894,0.206878,0.604064,0.930355,0.0510492,0.698445,0.676611,0.769407,0.0902918,0.794802,0.633202,0.199555,0.0184683,0.619365,0.828169,0.414111,0.916738,0.566521,0.591658,0.0822318,0.139722,0.571945,0.210555,0.973439,0.641916,0.575315,0.115802,0.571237,0.804177,0.255613,0.111396,0.775179,0.831846,0.529618,0.692091,0.388826,0.0314056,0.96559,0.826301,0.979967,0.569578,0.986023,0.0485916,0.904706,0.622875,0.0315721,0.582139,0.90579,0.328711,0.267486,0.847203,0.196465,0.0706155,0.529567,0.891211,0.332543,0.504721,0.303858,0.489034,0.621085,0.1477,0.434519,0.344006,0.709831,0.0628106,0.788263,0.640024,0.554917,0.128711,0.659811,0.800289,0.506888,0.203775,0.997943,0.213769,0.533651,0.10395,0.00217849,0.0118419,0.507977,0.0670692,0.394451,0.209911,0.355302,0.656025,0.708282,0.0672256,0.234052,0.712486,0.867259,0.868875,0.320829,0.107593,0.687531,0.322163,0.921766,0.36123,0.232895,0.915495,0.142331,0.386707,0.735678,0.420577,0.699654,0.943623,0.510246,0.50033,0.799588,0.777157,0.747236,0.305051,0.762873,0.266538,0.380416,0.568652,0.215673,0.156354,0.751284,0.759358,0.880338,0.667074,0.596891,0.607001,0.157074,0.941549,0.251449,0.427852,0.961568,0.801051,0.971111,0.814187,0.498516,0.328914,0.560009,0.407937,0.285148,0.760983,0.132409,0.900234,0.170561,0.739494,0.688446,0.445516,0.00695109,0.58244,0.623106,0.986079,0.241849,0.275179,0.0201898,0.474304,0.768748,0.828012,0.438346,0.60669,0.859278,0.300659,0.898113,0.381611,0.187481,0.0778534,0.276092,0.949211,0.545146,0.806553,0.263031,0.505375,0.442557,0.418807,0.0325816,0.463207,0.415,0.631736,0.909969,0.341304,0.883904,0.392148,0.736996,0.603256,0.0257975,0.309592,0.347693,0.361344,0.386579,0.2534,0.681725,0.592583,0.227987,0.831405,0.39685,0.272369,0.798603,0.640555,0.142671,0.73432,0.755265,0.393053,0.0743251,0.353804,0.306411,0.0674881,0.0870519,0.594198,0.664329,0.487128,0.88034,0.360664,0.300372,0.817406,0.711966,0.712952,0.507866,0.607788,0.682762,0.014109,0.663023,0.372029,0.00213158,0.775326,0.7351,0.330077,0.406814,0.674854,0.70252,0.462323,0.263,0.85208,0.7756,0.320495,0.209546,0.0737114,0.546438,0.274299,0.728012,0.041474,0.189336,0.691169,0.852618,0.446071,0.106358,0.262221,0.163286,0.545462,0.851501,0.893164,0.267562,0.315771,0.648589,0.824713,0.566459,0.0899666,0.765424,0.73049,0.879958,0.414319,0.4887,0.0468068,0.854369,0.243754,0.278318,0.957604,0.543638,0.386608,0.257583,0.844643,0.74834,0.206166,0.959457,0.483477,0.601492,0.0791674,0.235076,0.436736,0.691918,0.300103,0.00383854,0.226338,0.42306,0.92046,0.247917,0.591593,0.843053,0.316671,0.177191,0.721535,0.222446,0.252219,0.921301,0.803054,0.919732,0.75155,0.642747,0.72883,0.751392,0.113071,0.504626,0.435655,0.123516,0.626308,0.291901,0.499294,0.612965,0.218023,0.491012,0.320557,0.769404,0.357814,0.0352094,0.558493,0.969473,0.194293,0.211799,0.0350705,0.302792,0.199105,0.419405,0.668843,0.441861,0.962746,0.990814,0.859957,0.137211,0.343774,0.0265044,0.401349,0.0445115,0.369383,0.764983,0.357552,0.0817974,0.657198,0.87506,0.597397,0.360691,0.000852585,0.961711,0.961474,0.616817,0.37878,0.0708641,0.97457,0.559891,0.653123,0.398184,0.671737,0.884427,0.000823557,0.121374,0.541989,0.42138,0.0838705,0.659178,0.308805,0.921366,0.442369,0.978483,0.308621,0.510226,0.542928,0.557515,0.904239,0.477285,0.610144,0.628779,0.826328,0.34379,0.952385,0.56103,0.266676,0.0515064,0.701164,0.00206518,0.555709,0.240598,0.580016,0.242249,0.94851,0.359473,0.583249,0.945836,0.636361,0.567982,0.953331,0.0918298,0.528453,0.84759,0.187813,0.0810476,0.032019,0.724574,0.633263,0.733343,0.153946,0.673899,0.321464,0.548782,0.931721,0.205195,0.420724,0.0579325,0.877435,0.871774,0.646921,0.325166,0.968928,0.159323,0.331699,0.0363373,0.370294,0.643819,0.401788,0.402242,0.123229,0.112288,0.0587983,0.0823287,0.732244,0.112291,0.0126206,0.831647,0.0890237,0.723226,0.504984,0.222338,0.598518,0.736075,0.122901,0.760714,0.655668,0.164765,0.234909,0.780664,0.662855,0.0719538,0.85531,0.293257,0.182816,0.468407,0.640836,0.224254,0.44176,0.415613,0.231843,0.336757,0.799747,0.619462,0.147406,0.842019,0.376924,0.995476,0.296921,0.656234,0.742809,0.660425,0.507179,0.930245,0.533011,0.0594145,0.455143,0.145843,0.526346,0.059256,0.733867,0.129739,0.565555,0.830849,0.654485,0.169641,0.190296,0.7084,0.319062,0.556986,0.320425,0.369678,0.235679,0.564569,0.566767,0.5042,0.88504,0.944642,0.616669,0.475623,0.0735781,0.615841,0.51066,0.716404,0.156638,0.979789,0.821781,0.256888,0.330895,0.460532,0.815208,0.587848,0.293409,0.823528,0.520247,0.312142,0.340334,0.0261657,0.204937,0.228782,0.596971,0.74844,0.246309,0.798937,0.8883,0.564644,0.180088,0.161135,0.978907,0.207598,0.747528,0.165292,0.381256,0.0908243,0.303323,0.378971,0.77645,0.640326,0.378857,0.403314,0.0606531,0.777565,0.662971,0.186811,0.313408,0.750828,0.789097,0.238422,0.0725861,0.0205063,0.41757,0.232177,0.323276,0.0614172,0.0436912,0.456947,0.921669,0.734368,0.217392,0.40174,0.631984,0.416385,0.30572,0.560812,0.83842,0.354522,0.876818,0.450187,0.996091,0.735219,0.828894,0.822833,0.0162471,0.559501,0.531489,0.149473,0.409372,0.491619,0.228685,0.0709636,0.0408024,0.743791,0.773495,0.146474,0.133493,0.605315,0.857378,0.545485,0.585942,0.235609,0.669172,0.358997,0.624854,0.386231,0.0270107,0.614549,0.479227,0.217998,0.558502,0.535681,0.0930499,0.594919,0.455772,0.79193,0.583293,0.877944,0.125457,0.701247,0.940444,0.245731,0.272006,0.557476,0.331373,0.0487971,0.39045,0.953058,0.422017,0.154306,0.459305,0.61039,0.799801,0.777881,0.940764,0.728627,0.299122,0.732784,0.902249,0.890568,0.883297,0.056757,0.580153,0.937052,0.225442,0.118149,0.657598,0.0402479,0.96974,0.665317,0.251649,0.222348,0.309598,0.878664,0.582284,0.74879,0.64622,0.279858,0.588145,0.330873,0.268664,0.55618,0.774067,0.59056,0.692434,0.879771,0.606786,0.421328,0.315877,0.936339,0.155072,0.435236,0.48908,0.314822,0.799033,0.263317,0.518704,0.558892,0.381815,0.720676,0.0721147,0.64177,0.653182,0.445759,0.00337994,0.867905,0.303004,0.992491,0.450861,0.11444,0.855194,0.849191,0.822459,0.566859,0.306368,0.43114,0.694216,0.417433,0.634232,0.0995731,0.910154,0.722408,0.175479,0.754443,0.552434,0.393889,0.375323,0.284715,0.865546,0.624223,0.275259,0.976683,|0.408746,0.00713903,0.0839524,0.432277,0.644306,0.641716,0.241456,0.919709,0.197295,0.24517,0.263332,0.0643331,0.605854,0.433242,0.628794,0.28705,0.482622,0.160651,0.875104,0.562842,0.302461,0.379707,0.847024,0.10741,0.798227,0.190049,0.136354,0.886907,0.207361,0.0450329,0.745088,0.243291,0.279323,0.254722,0.23053,0.17357,0.0639979,0.782439,0.202312,0.637495,0.466772,0.235378,0.739749,0.0242379,0.972042,0.740328,0.338486,0.747097,0.876207,0.286141,0.363143,0.2351,0.688328,0.409565,0.83231,0.57707,0.309124,0.106301,0.110132,0.718544,0.0701594,0.255017,0.50243,0.0472726,0.652111,0.925475,0.241546,0.938003,0.185807,0.643489,0.322517,0.890431,0.702375,0.551493,0.985265,0.937027,0.414738,0.347481,0.168835,0.76424,0.609602,0.313895,0.730119,0.990016,0.893829,0.978779,0.553191,0.10265,0.874294,0.0634397,0.111185,0.654932,0.735411,0.263696,0.645474,0.737986,0.943859,0.760085,0.869247,0.787957,0.649019,0.665191,0.873027,0.0826929,0.361668,0.696113,0.15892,0.634679,0.410907,0.228689,0.744893,0.943194,0.863197,0.346678,0.104431,0.759183,0.330281,0.783457,0.180383,0.774872,0.812616,0.130702,0.787013,0.743384,0.179001,0.0858936,0.911919,0.139007,0.0845599,0.415743,0.156714,0.476829,0.458257,0.398568,0.14462,0.076588,0.941944,0.0545447,0.138841,0.634371,0.732003,0.654383,0.942499,0.519654,0.64161,0.688969,0.174967,0.498919,0.147408,0.831112,0.260027,0.184241,0.518767,0.378332,0.863989,0.968453,0.525693,0.399705,0.0790703,0.796814,0.0735902,0.576266,0.552817,0.51668,0.220075,0.227315,0.644224,0.717447,0.127544,0.269162,0.698697,0.175125,0.610322,0.759163,0.740262,0.181078,0.500644,0.775001,0.764318,0.314092,0.0215223,0.882859,0.931446,0.321476,0.761635,0.979711,0.422077,0.436854,0.222842,0.990618,0.267624,0.128096,0.639597,0.0635328,0.271439,0.952335,0.895169,0.793138,0.220789,0.288815,0.163682,0.704482,0.137631,0.859105,0.134231,0.358377,0.227345,0.35656,0.248514,0.892977,0.124598,0.424336,0.385423,0.160798,0.877042,0.904048,0.16186,0.958879,0.169571,0.722502,0.535008,0.301876,0.788045,0.322357,0.683779,0.652671,0.188258,0.953268,0.799243,0.991953,0.810684,0.0327431,0.276527,0.326224,0.58577,0.550479,0.21624,0.302005,0.666016,0.485672,0.873294,0.831329,0.954328,0.749997,0.571375,0.830802,0.500947,0.233232,0.429561,0.697881,0.7658,0.714504,0.223697,0.570394,0.428385,0.117393,0.392201,0.638246,0.552113,0.676941,0.943825,0.0503113,0.0767328,0.188801,0.335334,0.0555803,0.938121,0.933866,0.146087,0.70254,0.180543,0.134292,0.568718,0.461502,0.243528,0.525935,0.455686,0.756378,0.650733,0.672975,0.989864,0.225027,0.332452,0.484868,0.795445,0.712146,0.357403,0.311089,0.0291959,0.326494,0.0345826,0.775942,0.737112,0.753352,0.72608,0.437718,0.220462,0.690824,0.227044,0.153303,0.557993,0.889039,0.795827,0.728026,0.994848,0.953698,0.920725,0.218304,0.284463,0.389671,0.0259262,0.33774,0.664411,0.949746,0.391426,0.921318,0.13131,0.198078,0.970229,0.937168,0.240409,0.701392,0.240611,0.776407,0.698293,0.886897,0.682226,0.848345,0.776569,0.494094,0.63645,0.624279,0.126195,0.548264,0.013572,0.352968,0.214379,0.574602,0.65553,0.123994,0.508675,0.225418,0.682986,0.0600992,0.0228549,0.960809,0.284724,0.827442,0.133045,0.90998,0.163536,0.673979,0.641051,0.943618,0.198829,0.0614254,0.532025,0.787603,0.863366,0.773483,0.255368,0.508621,0.28304,0.918489,0.842169,0.167681,0.674185,0.437867,0.714073,0.557332,0.380845,0.772836,0.830516,0.326143,0.60372,0.475485,0.909451,0.861122,0.776621,0.744459,0.643319,0.567138,0.778454,0.703717,0.63167,0.52962,0.341959,0.450486,0.586608,0.04477,0.893591,0.182503,0.625323,0.661189,0.301077,0.0938442,0.577616,0.963102,0.704813,0.525661,0.208199,0.704627,0.407432,0.851357,0.561038,0.958875,0.335288,0.195095,0.605911,0.0403472,0.951649,0.684024,0.0535501,0.770879,0.325045,0.153116,0.162572,0.240162,0.642699,0.852896,0.799401,0.302533,0.288195,0.880499,0.302692,0.759777,0.321286,0.572019,0.457315,0.542851,0.00979978,0.24287,0.473942,0.486561,0.114511,0.681528,0.20016,0.45253,0.917726,0.477721,0.117608,0.769997,0.311112,0.119362,0.189961,0.112201,0.997971,0.746019,0.49148,0.640313,0.878963,0.588609,0.143022,0.105852,0.501069,0.226807,0.372324,0.890174,0.739184,0.230961,0.93469,0.28597,0.161936,0.997021,0.35816,0.939799,0.453927,0.0405806,0.581098,0.906865,0.282403,0.12821,0.329676,0.037195,0.130283,0.210282,0.995671,0.721904,0.720374,0.489715,0.801981,0.143569,0.376504,0.813282,0.522832,0.34127,0.12377,0.216482,0.897026,0.606506,0.308642,0.596894,0.046733,0.423858,0.0178993,0.819648,0.197791,0.932758,0.449361,0.11058,0.428351,0.213406,0.770542,0.330243,0.200206,0.398657,0.472007,0.0741883,0.309775,0.671769,0.0766886,0.525875,0.538846,0.0918236,0.453655,0.387985,0.13038,0.0436433,0.443778,0.294096,0.333861,0.30685,0.587803,0.781796,0.445724,0.389471,0.65077,0.112667,0.0838016,0.893792,0.307875,0.760001,0.537091,0.710201,0.31719,0.65624,0.45104,0.806943,0.532218,0.456876,0.302225,0.390108,0.159583,0.944327,0.345082,0.344568,0.0898507,0.0632366,0.800471,0.248501,0.286632,0.549538,0.244575,0.753086,0.48518,0.892745,0.148233,0.163607,0.0135146,0.788054,0.432419,0.235419,0.663467,0.603871,0.851111,0.991621,0.13851,0.523392,0.158103,0.286199,0.505901,0.478207,0.900273,0.350091,0.777892,0.822051,0.573242,0.547973,0.317327,0.622374,0.0720057,0.746722,0.584256,0.401597,0.790904,0.874899,0.230094,0.973132,0.423846,0.367332,0.812116,0.490573,0.872306,0.299008,0.145744,0.942955,0.548348,0.296173,0.0627992,0.239209,0.276614,0.247995,0.820504,0.00895989,0.226446,0.108037,0.78688,0.722611,0.719988,0.0811592,0.635774,0.12614,0.661282,0.538922,0.502461,0.752358,0.537602,0.816817,0.355993,0.121457,0.943395,0.401844,0.366003,0.981677,0.28352,0.338001,0.538685,0.949938,0.57117,0.750499,0.256735,0.450848,0.918962,0.279428,0.981234,0.2647,0.75823,0.626903,0.615548,0.748493,0.601658,0.797632,0.548235,0.967968,0.947834,0.213472,0.350481,0.29583,0.778785,0.995926,0.561263,0.519416,0.197803,0.145241,0.851292,0.146887,0.881964,0.851665,0.0189006,0.299012,0.683011,0.323502,0.0135894,0.855423,0.653236,0.773237,0.337208,0.649435,0.0696527,0.207269,0.541183,0.699545,0.950267,0.127557,0.859374,0.989521,0.240658,0.897052,0.552197,0.76964,0.0269262,0.799725,0.497706,0.184764,0.215308,0.816009,0.633661,0.770332,0.772403,0.737848,0.830444,0.543951,0.954271,0.947326,0.696569,0.752683,0.328487,0.363534,0.265764,0.508824,0.437504,0.213946,0.10982,0.31509,0.376962,0.467123,0.628065,0.451831,0.110063,0.0137008,0.5908,0.0666916,0.215914,0.936377,0.943268,0.14099,0.186192,0.275157,0.383046,0.460835,0.56293,0.914571,0.309357,0.567046,0.869326,0.809559,0.0169618,0.254228,0.151315,0.7599,0.0508443,0.253195,0.101196,0.218896,0.992583,0.989237,0.958658,0.599618,0.355108,0.833211,0.140603,0.456185,0.214612,0.658899,0.158294,0.564375,0.0940949,0.37483,0.623118,0.0422913,0.502286,0.191812,0.195226,0.054902,0.0750305,0.966277,0.399571,0.05748,0.810791,0.417229,0.399034,0.231549,0.846162,0.616304,0.746565,0.139868,0.609963,0.68535,0.208915,0.868708,0.106557,0.0220223,0.700895,0.464406,0.262811,0.968155,0.385967,0.075471,0.117176,0.0919261,0.351897,0.124054,0.76536,0.0289102,0.354949,0.284302,0.26461,0.769587,0.10054,0.446777,0.369468,0.800254,0.325978,0.909736,0.219927,0.923398,0.769381,0.222489,0.0771891,0.41794,0.272536,0.680186,0.492791,0.786583,0.152152,0.178825,0.351397,0.701523,0.359587,0.813316,0.475559,0.815674,0.955507,0.729545,0.582434,0.185805,0.413679,0.0977634,0.218748,0.251826,0.996869,0.494588,0.172663,0.514652,0.652947,0.71431,0.477528,0.527372,0.283968,0.875703,0.367741,0.652214,0.296756,0.294817,0.200162,0.392488,0.819421,0.450454,0.603887,0.306002,0.78015,0.936084,0.122418,0.252614,0.134051,0.113913,0.407435,0.336244,0.99262,0.450968,0.00853127,0.728555,0.297414,0.113553,0.169492,0.668205,0.358745,0.963096,0.105329,0.725322,0.337423,0.718344,0.551063,0.27169,0.352304,0.332647,0.689678,0.538891,0.932788,0.107291,0.180735,0.96091,0.658909,0.694188,0.755225,0.820508,0.542053,0.0864905,0.557119,0.887705,0.757587,0.285565,0.72763,0.530137,0.166952,0.401057,0.500941,0.665659,0.997288,0.348211,0.16785,0.266004,0.802537,0.497222,0.757129,0.905398,0.376387,0.914675,0.0738012,0.768731,0.156371,0.0832886,0.0357268,0.400183,0.650954,0.178138,0.0624782,0.344896,0.187712,0.482548,0.448018,0.873589,0.407543,0.622904,0.552132,0.266163,0.983487,0.182631,0.460497,0.43358,0.828752,0.540643,0.278755,0.713638,0.313314,0.855104,0.295057,0.918136,0.839218,0.803005,0.175862,0.29107,0.425658,0.433974,0.149014,0.182934,0.259116,0.329447,0.34446,0.519914,0.684017,0.394486,0.27452,0.763941,0.921861,0.930906,0.640843,0.242302,0.370222,0.79982,0.360944,0.652315,0.432329,0.452064,0.0912936,0.447505,0.395106,0.677293,0.548646,0.27509,0.488706,0.522348,0.0339285,0.0597994,0.073979,0.491364,0.721535,0.292991,0.862935,0.0789285,0.599248,0.755875,0.645366,0.460683,0.921279,0.410798,0.86707,0.702169,0.633317,0.604098,0.669741,0.467443,0.791332,0.0802931,0.772166,0.713702,0.222661,0.772896,0.913685,0.0902197,0.712807,0.452679,0.180285,0.405998,0.608663,0.669228,0.549816,0.283393,0.253876,0.0969629,|0.956834,0.57236,0.689141,0.816601,0.373776,0.265014,0.152347,0.319299,0.0438517,0.0988511,0.391889,0.764073,0.720111,0.162632,0.131624,0.957697,0.337375,0.41627,0.931447,0.36416,0.425082,0.639468,0.908367,0.859679,0.653681,0.485041,0.285953,0.255534,0.418065,0.119344,0.81236,0.911204,0.92041,0.441832,0.950046,0.932309,0.983055,0.999847,0.013145,0.319046,0.210401,0.722816,0.283645,0.928155,0.27729,0.145838,0.921778,0.791196,0.68552,0.931748,0.795257,0.754618,0.600203,0.557252,0.352418,0.364757,0.938075,0.642472,0.105341,0.112118,0.178638,0.844343,0.493736,0.66677,0.452556,0.846498,0.0891258,0.972883,0.768778,0.0843238,0.336582,0.853252,0.64083,0.65763,0.554993,0.431615,0.21151,0.0318231,0.599356,0.792066,0.024566,0.8289,0.624331,0.408349,0.140535,0.267489,0.197876,0.10922,0.358079,0.719567,0.714432,0.0174797,0.587251,0.349445,0.83844,0.519278,0.24439,0.891563,0.207633,0.910653,0.979137,0.626304,0.619507,0.131516,0.0738773,0.990284,0.658853,0.561301,0.869256,0.308666,0.533443,0.849466,0.303484,0.748959,0.87698,0.506936,0.359419,0.408182,0.622659,0.890543,0.792381,0.990148,0.587768,0.389666,0.148091,0.258812,0.580727,0.334475,0.12389,0.113999,0.612592,0.609961,0.280818,0.917564,0.539537,0.935043,0.0672396,0.662677,0.71533,0.883921,0.0492799,0.095906,0.31344,0.43908,0.0758746,0.252659,0.0666586,0.525435,0.201275,0.819341,0.953065,0.596064,0.715073,0.77933,0.166695,0.524287,0.632435,0.333358,0.546231,0.642463,0.436466,0.204851,0.948902,0.713665,0.0775306,0.931107,0.831756,0.764659,0.98288,0.401806,0.428642,0.352742,0.226253,0.515804,0.764091,0.0278379,0.770456,0.347007,0.360122,0.725596,0.241075,0.0948497,0.82574,0.741246,0.509531,0.327484,0.970211,0.902212,0.785046,0.435162,0.219819,0.54411,0.167966,0.0760297,0.843834,0.0349697,0.100346,0.524911,0.491367,0.536284,0.686906,0.763059,0.60276,0.0648313,0.330505,0.479133,0.0944929,0.00627631,0.61561,0.128755,0.817765,0.594473,0.483867,0.226306,0.843036,0.443923,0.867097,0.650238,0.662746,0.155441,0.6697,0.3875,0.202126,0.820759,0.27704,0.133839,0.925307,0.303506,0.722282,0.562575,0.370194,0.671458,0.187012,0.999509,0.501679,0.238309,0.634811,0.467403,0.484357,0.652304,0.412217,0.0139951,0.976895,0.562129,0.190296,0.922595,0.810012,0.839942,0.153719,0.384251,0.110361,0.677539,0.49094,0.71343,0.309513,0.29876,0.481516,0.858224,0.741468,0.210116,0.157855,0.985664,0.838524,0.379666,0.780725,0.695776,0.325191,0.990605,0.973909,0.865158,0.835524,0.934603,0.355129,0.734357,0.354423,0.21873,0.203642,0.582171,0.452405,0.0668409,0.743882,0.503384,0.0447437,0.479548,0.606367,0.301855,0.189359,0.134232,0.718299,0.283018,0.85526,0.971624,0.200947,0.321618,0.149552,0.298962,0.887124,0.0575819,0.0561109,0.877998,0.0858276,0.944511,0.692929,0.156559,0.411359,0.0316563,0.0499276,0.789039,0.151463,0.969629,0.533124,0.25621,0.30734,0.994568,0.182549,0.972579,0.0706786,0.0440557,0.0219483,0.218543,0.221922,0.479318,0.910948,0.371966,0.442643,0.839989,0.163179,0.617725,0.362875,0.310992,0.123977,0.0486345,0.267453,0.861685,0.589005,0.50126,0.0373287,0.414106,0.744218,0.530812,0.71996,0.473685,0.273309,0.810489,0.779181,0.878167,0.230057,0.920394,0.63413,0.564167,0.0970144,0.864607,0.451468,0.322492,0.0344338,0.00444883,0.39315,0.274532,0.508961,0.647259,0.874412,0.107941,0.783688,0.726224,0.991962,0.0581585,0.394448,0.0519246,0.769644,0.005656,0.767807,0.757851,0.0668417,0.745785,0.667321,0.934268,0.900999,0.194626,0.706913,0.866958,0.102457,0.721968,0.235459,0.443437,0.118846,0.898408,0.00625521,0.049934,0.365048,0.243659,0.0430208,0.775797,0.625434,0.885868,0.862266,0.633966,0.374549,0.776254,0.387619,0.0862539,0.243296,0.63019,0.913506,0.0619391,0.164755,0.684163,0.513645,0.647654,0.306621,0.335864,0.120394,0.350976,0.223324,0.225518,0.0672134,0.391169,0.152348,0.422014,0.563352,0.366044,0.653084,0.0195982,0.854293,0.0282354,0.739102,0.598936,0.0334521,0.582148,0.0252633,0.670708,0.141492,0.670579,0.815507,0.655799,0.650607,0.469679,0.997909,0.726447,0.343641,0.709454,0.529462,0.953842,0.567458,0.803443,0.909192,0.0754792,0.686315,0.490294,0.952635,0.698158,0.472815,0.166408,0.504527,0.488981,0.466375,0.679698,0.290363,0.561653,0.870755,0.687068,0.461233,0.958228,0.863117,0.00607806,0.271426,0.922714,0.238629,0.871097,0.353039,0.681054,0.63736,0.480455,0.573757,0.960145,0.00437993,0.13764,0.362824,0.25203,0.268819,0.713896,0.636638,0.162372,0.104701,0.728891,0.000378609,0.650707,0.461117,0.0991192,0.433125,0.934696,0.346427,0.240628,0.733537,0.202098,0.708174,0.493216,0.7858,0.454205,0.351103,0.178965,0.615393,0.349566,0.869956,0.603996,0.365478,0.574822,0.785803,0.058135,0.882615,0.174272,0.20539,0.236841,0.74286,0.446451,0.598513,0.525602,0.546019,0.555615,0.401903,0.78902,0.489775,0.787526,0.248496,0.0548348,0.00658488,0.102248,0.795813,0.854976,0.478403,0.702402,0.47401,0.184687,0.306879,0.822642,0.775188,0.621841,0.164287,0.029842,0.341872,0.798171,0.517787,0.357846,0.310238,0.180368,0.9818,0.303008,0.701201,0.64872,0.218277,0.496282,0.766258,0.0178959,0.113163,0.932013,0.836865,0.5043,0.781926,0.151697,0.495905,0.131279,0.542331,0.164389,0.296857,0.622834,0.570376,0.248015,0.954936,0.932412,0.612784,0.0100183,0.47593,0.583135,0.262953,0.929426,0.89869,0.221292,0.639403,0.748895,0.370693,0.251506,0.391295,0.325974,0.98978,0.433872,0.516925,0.147253,0.871474,0.637599,0.708575,0.771634,0.632515,0.800522,0.0414333,0.724321,0.402613,0.074303,0.97511,0.905189,0.959042,0.249238,0.844132,0.168336,0.0636882,0.373769,0.375686,0.253521,0.344242,0.39149,0.910228,0.0945367,0.479223,0.101431,0.896849,0.836342,0.628323,0.059189,0.0556971,0.0445127,0.310548,0.61567,0.66266,0.831918,0.772136,0.565557,0.676661,0.619496,0.528097,0.183883,0.821594,0.504454,0.464482,0.14699,0.934335,0.269208,0.30628,0.31835,0.62701,0.45972,0.0902047,0.0385599,0.131903,0.910187,0.610223,0.926341,0.779596,0.330049,0.200242,0.226852,0.945048,0.911153,0.426533,0.639719,0.745698,0.0433019,0.162582,0.110776,0.447465,0.115252,0.344932,0.915516,0.407603,0.628422,0.724375,0.48897,0.0618157,0.63318,0.641635,0.24716,0.5649,0.0854142,0.860727,0.925826,0.833286,0.933653,0.822032,0.0709708,0.69109,0.48006,0.19738,0.0190095,0.505754,0.383668,0.549868,0.619218,0.148774,0.653689,0.532456,0.510133,0.9775,0.63807,0.833742,0.840841,0.336264,0.253961,0.680927,0.371015,0.406842,0.847357,0.315934,0.661848,0.562377,0.558777,0.429743,0.273583,0.765119,0.870941,0.567758,0.71257,0.0727161,0.456388,0.471331,0.677652,0.422437,0.674583,0.214434,0.385251,0.446951,0.388126,0.605385,0.130062,0.701588,0.621813,0.133664,0.878159,0.317683,0.960259,0.158693,0.274692,0.641561,0.938146,0.408581,0.312736,0.185627,0.661022,0.676793,0.598394,0.0524062,0.16291,0.578876,0.989468,0.224629,0.975905,0.655292,0.544499,0.729489,0.0290806,0.199608,0.321728,0.841616,0.107487,0.441631,0.70713,0.791104,0.97674,0.58749,0.28601,0.698981,0.195456,0.568626,0.358869,0.586276,0.303398,0.688695,0.484063,0.0473141,0.774206,0.106768,0.10008,0.936001,0.784376,0.646799,0.98108,0.490316,0.894709,0.872828,0.0718375,0.613476,0.261678,0.578572,0.691564,0.898859,0.0954612,0.833575,0.438982,0.611694,0.963057,0.0230162,0.0345145,0.510894,0.66941,0.666929,0.0870062,0.0471841,0.16035,0.838688,0.729156,0.00297558,0.924376,0.680764,0.455895,0.0979107,0.397633,0.0707524,0.858049,0.797524,0.804726,0.877002,0.186518,0.257827,0.00190085,0.813722,0.35535,0.472636,0.94695,0.637295,0.610394,0.926081,0.479876,0.468507,0.46469,0.272322,0.228092,0.970841,0.67969,0.662668,0.715866,0.0112891,0.317679,0.732267,0.360057,0.731583,0.290644,0.628993,0.344714,0.978534,0.617548,0.446611,0.537084,0.275972,0.520386,0.0923674,0.565444,0.832361,0.990982,0.958811,0.820947,0.883791,0.437373,0.907556,0.376607,0.397612,0.541897,0.712594,0.236095,0.243226,0.71478,0.786584,0.244426,0.865008,0.013687,0.691305,0.0197996,0.590862,0.23545,0.627362,0.0327198,0.720743,0.871751,0.215951,0.301119,0.257649,0.694322,0.678256,0.510627,0.587366,0.188995,0.0754521,0.99595,0.765937,0.181419,0.190618,0.6279,0.759558,0.684938,0.604655,0.476273,0.74248,0.742685,0.461006,0.691395,0.933962,0.346428,0.877323,0.488995,0.477023,0.154853,0.152762,0.750001,0.0693403,0.805798,0.952231,0.642165,0.819892,0.537079,0.829108,0.467017,0.721213,0.744355,0.166435,0.333527,0.268782,0.666235,0.498738,0.312114,0.0152204,0.592207,0.80301,0.903435,0.994346,0.069585,0.196173,0.879874,0.12286,0.439104,0.463206,0.74391,0.0694565,0.771834,0.181419,0.974964,0.304548,0.320943,0.0897425,0.858125,0.289247,0.13389,0.56369,0.274748,0.569502,0.317457,0.0171146,0.433028,0.758997,0.470308,0.898691,0.115722,0.548402,0.893639,0.950507,0.687524,0.248614,0.464073,0.999546,0.555093,0.781266,0.509798,0.966505,0.0394392,0.86425,0.248803,0.877745,0.771804,0.971812,0.111003,0.345048,0.675025,0.763532,0.754013,0.648796,0.945623,0.727437,0.821496,0.91752,0.819596,0.537633,0.596029,0.342253,0.761094,0.181417,0.377539,0.745005,0.0306501,0.547217,0.56901,0.95186,0.249121,0.662912,0.950265,0.534384,0.591403,0.357329,0.711493,0.31132,0.28961,0.91374,0.316887,0.67274,0.967868,0.863186,0.937908,|0.753011,0.398387,0.72897,0.470627,0.219346,0.386393,0.975425,0.372743,0.603755,0.6345,0.648704,0.559068,0.851125,0.212889,0.152111,0.208299,0.456501,0.748755,0.157885,0.911143,0.898177,0.985444,0.131539,0.0839362,0.44073,0.63402,0.499725,0.544149,0.620946,0.378602,0.0134082,0.833538,0.563298,0.837553,0.0699299,0.553338,0.0293797,0.733802,0.336777,0.25717,0.273223,0.895752,0.154194,0.861558,0.778993,0.160452,0.833403,0.719529,0.63026,0.214687,0.308671,0.559872,0.323444,0.0928408,0.0726721,0.629367,0.027267,0.800917,0.139208,0.724551,0.0247433,0.878908,0.154973,0.214127,0.365755,0.0900607,0.921357,0.833375,0.289934,0.469237,0.404544,0.399604,0.973523,0.856347,0.04808,0.0643696,0.415572,0.87388,0.670767,0.209332,0.293004,0.407546,0.722405,0.969579,0.594001,0.230941,0.127755,0.769747,0.273265,0.032824,0.310278,0.542581,0.0247399,0.580665,0.0785903,0.565791,0.469074,0.29632,0.379105,0.347353,0.155131,0.222827,0.74173,0.375621,0.771512,0.0637717,0.55864,0.333896,0.139559,0.709493,0.329184,0.248031,0.800671,0.0440934,0.0926046,0.630757,0.620748,0.636061,0.390934,0.44476,0.114371,0.896778,0.0656143,0.55556,0.364346,0.943969,0.279375,0.380789,0.249834,0.202589,0.665579,0.119284,0.646926,0.58474,0.418879,0.0535057,0.806057,0.652397,0.759207,0.439691,0.210147,0.287816,0.665422,0.561928,0.557096,0.693107,0.131459,0.76209,0.620122,0.922738,0.877629,0.902371,0.806003,0.25732,0.475332,0.242531,0.845216,0.0826135,0.399852,0.529766,0.192106,0.651101,0.804202,0.415012,0.678284,0.307529,0.403696,0.339064,0.306949,0.0595641,0.630294,0.303913,0.230042,0.361797,0.962057,0.0264133,0.111577,0.52106,0.280109,0.24152,0.136162,0.436582,0.030251,0.55474,0.637246,0.67369,0.773574,0.434124,0.319187,0.527586,0.754929,0.920876,0.328284,0.785874,0.618218,0.787592,0.521595,0.65526,0.232384,0.225551,0.33252,0.767974,0.542212,0.589727,0.256087,0.311683,0.80405,0.670732,0.71101,0.580367,0.179689,0.0464585,0.811581,0.456342,0.921584,0.613295,0.305998,0.120916,0.890346,0.503522,0.212292,0.774548,0.879514,0.263278,0.0903788,0.152921,0.462886,0.347864,0.157663,0.340579,0.513717,0.554916,0.753773,0.496039,0.642939,0.21854,0.224243,0.205336,0.478966,0.570842,0.704053,0.473131,0.287098,0.396159,0.639509,0.243193,0.305684,0.307419,0.342794,0.450268,0.339734,0.890849,0.984926,0.610574,0.00540453,0.299169,0.815888,0.799671,0.737285,0.295801,0.598039,0.155595,0.118749,0.243473,0.485576,0.836881,0.134769,0.852597,0.804642,0.677906,0.577165,0.251309,0.473818,0.81762,0.955547,0.567083,0.589039,0.800189,0.883782,0.348532,0.270252,0.714705,0.23609,0.98413,0.931304,0.73027,0.323369,0.28085,0.410589,0.205702,0.0621031,0.190271,0.283562,0.865546,0.798449,0.814712,0.305574,0.0138638,0.364868,0.177218,0.0759045,0.552175,0.703611,0.270083,0.815299,0.0267281,0.238394,0.701954,0.827713,0.476741,0.663913,0.285001,0.285448,0.498764,0.359987,0.641563,0.0492624,0.837489,0.363808,0.965267,0.42777,0.880321,0.857406,0.596348,0.0707689,0.443356,0.670838,0.764621,0.374974,0.26659,0.684825,0.73093,0.777151,0.906148,0.72546,0.544902,0.26603,0.727509,0.545197,0.987791,0.442849,0.769911,0.961422,0.11617,0.897159,0.8754,0.199078,0.915176,0.283426,0.654244,0.794356,0.503065,0.676205,0.907458,0.136899,0.082875,0.443947,0.53413,0.368537,0.361417,0.057797,0.954731,0.756809,0.791499,0.613422,0.191537,0.0451029,0.201064,0.0225054,0.837643,0.112342,0.690262,0.064074,0.964307,0.211169,0.631955,0.795611,0.280445,0.371262,0.339073,0.225453,0.742482,0.187693,0.23477,0.847753,0.751491,0.399729,0.625618,0.298439,0.924103,0.115869,0.188035,0.118796,0.259683,0.436084,0.855754,0.726679,0.387847,0.21404,0.500126,0.287027,0.659171,0.154077,0.0727746,0.811384,0.146781,0.324862,0.476335,0.939488,0.240344,0.642748,0.703784,0.118772,0.438849,0.814636,0.522979,0.177288,0.607575,0.268522,0.183278,0.579914,0.896838,0.615032,0.351454,0.142348,0.966715,0.843086,0.693914,0.152498,0.968192,0.96631,0.831703,0.801369,0.094262,0.721186,0.798302,0.444688,0.208518,0.269198,0.667971,0.47521,0.274989,0.569016,0.438905,0.071103,0.177922,0.411942,0.598467,0.4877,0.319509,0.319394,0.139248,0.528712,0.808954,0.997378,0.194012,0.524841,0.0225,0.275535,0.791769,0.604375,0.394425,0.849439,0.583522,0.953652,0.425544,0.199313,0.238971,0.781152,0.752127,0.324207,0.142009,0.907885,0.572959,0.835575,0.645865,0.85565,0.332791,0.351264,0.180916,0.954999,0.467602,0.190651,0.696198,0.627996,0.575668,0.797397,0.21215,0.201452,0.45977,0.141001,0.842637,0.760998,0.0406086,0.82568,0.162059,0.827879,0.887341,0.147107,0.313633,0.9406,0.278626,0.475286,0.297308,0.8273,0.855723,0.416012,0.863801,0.924482,0.119714,0.962546,0.477008,0.34868,0.98535,0.91891,0.319636,0.550198,0.472373,0.465088,0.946132,0.636369,0.741624,0.152899,0.311332,0.862599,0.598968,0.785306,0.534203,0.877443,0.196848,0.770981,0.509047,0.719572,0.130563,0.752029,0.520993,0.150217,0.111231,0.84838,0.797525,0.999025,0.485997,0.313748,0.111579,0.052488,0.946209,0.541992,0.337665,0.510506,0.574246,0.662967,0.574647,0.385425,0.768325,0.164509,0.844018,0.0716704,0.420091,0.266159,0.201204,0.207847,0.763174,0.800064,0.725011,0.734733,0.530217,0.887087,0.975425,0.760966,0.027467,0.383643,0.347992,0.221366,0.874212,0.0823873,0.0725412,0.66806,0.617972,0.188608,0.675014,0.784641,0.13278,0.0921713,0.843125,0.25019,0.130678,0.235834,0.486335,0.490977,0.854831,0.725056,0.591566,0.145589,0.0647592,0.126176,0.897696,0.612457,0.4484,0.964013,0.44995,0.100578,0.798028,0.016827,0.256846,0.463437,0.0251091,0.137287,0.775757,0.444842,0.482761,0.267531,0.882472,0.238548,0.629392,0.665348,0.595642,0.786884,0.554616,0.398378,0.421091,0.322975,0.857268,0.3822,0.953154,0.0960608,0.0429963,0.656608,0.818159,0.335344,0.303705,0.349615,0.813092,0.85821,0.65248,0.0787222,0.0604104,0.0183012,0.556578,0.278596,0.407137,0.897013,0.410831,0.629131,0.837054,0.74065,0.110916,0.995209,0.956867,0.783612,0.0414433,0.993546,0.207495,0.553597,0.515526,0.809383,0.650638,0.418795,0.784888,0.918833,0.0951396,0.804887,0.755024,0.402665,0.313565,0.115225,0.1449,0.684052,0.332229,0.0711873,0.766312,0.8332,0.966644,0.463533,0.074698,0.365719,0.356779,0.546583,0.705178,0.283431,0.748519,0.74638,0.538985,0.582754,0.860791,0.683078,0.848152,0.560276,0.102367,0.633692,0.551768,0.462663,0.418688,0.749054,0.0913673,0.362756,0.256534,0.558766,0.966361,0.96126,0.615186,0.38383,0.540439,0.962992,0.376905,0.836998,0.940272,0.534031,0.103743,0.301027,0.204504,0.571653,0.184921,0.305353,0.0158918,0.267444,0.080009,0.367455,0.4215,0.422096,0.319558,0.625559,0.606795,0.391947,0.532186,0.852568,0.963621,0.375929,0.266385,0.372796,0.587361,0.0974319,0.654912,0.540718,0.0694253,0.699279,0.853688,0.0195944,0.770767,0.787131,0.143512,0.603426,0.0485677,0.716767,0.370014,0.771583,0.923833,0.0109695,0.0409878,0.231152,0.682867,0.433817,0.0783568,0.891778,0.111844,0.929844,0.471353,0.0373867,0.0263888,0.417287,0.853705,0.193407,0.156738,0.872145,0.118876,0.984376,0.505072,0.308532,0.448684,0.361868,0.232645,0.204398,0.103294,0.0456619,0.892496,0.73991,0.399931,0.236747,0.284159,0.690455,0.144957,0.919566,0.655665,0.955892,0.0323309,0.481346,0.599721,0.602753,0.639845,0.0934137,0.730096,0.439312,0.653012,0.695841,0.44885,0.69203,0.878732,0.157524,0.679915,0.114886,0.270867,0.709211,0.165652,0.0268636,0.821631,0.823027,0.151186,0.765873,0.0840974,0.579237,0.488643,0.978595,0.894056,0.500415,0.0153044,0.620163,0.802188,0.675737,0.786001,0.728814,0.792882,0.58109,0.436854,0.879205,0.89751,0.310158,0.572522,0.218841,0.867308,0.990317,0.249505,0.778119,0.148119,0.412629,0.5487,0.0556809,0.428848,0.66217,0.811327,0.796813,0.967659,0.370051,0.760008,0.743067,0.056821,0.729861,0.130535,0.670842,0.738822,0.767761,0.828882,0.844791,0.890205,0.0767453,0.183535,0.392429,0.42998,0.245721,0.349438,0.668648,0.523596,0.365711,0.86144,0.0984602,0.114444,0.887852,0.671125,0.257685,0.0374109,0.2583,0.523,0.636151,0.450843,0.878248,0.998319,0.9182,0.822471,0.833854,0.0578306,0.201162,0.333928,0.85032,0.37505,0.375361,0.312604,0.973871,0.249821,0.911805,0.00479436,0.999314,0.160164,0.231864,0.0974293,0.633277,0.80732,0.614789,0.445794,0.578714,0.219711,0.498683,0.690123,0.933275,0.914927,0.588141,0.924829,0.114809,0.416722,0.558043,0.357319,0.275113,0.845862,0.206873,0.00705636,0.430548,0.199618,0.932256,0.76088,0.859316,0.713198,0.186691,0.654062,0.00612557,0.745187,0.73385,0.754897,0.890176,0.0419866,0.148994,0.826688,0.414036,0.0300607,0.33071,0.268887,0.645278,0.295078,0.609511,0.779561,0.699639,0.160346,0.00575036,0.703347,0.585506,0.913251,0.255213,0.409932,0.10527,0.443022,0.235731,0.647442,0.493691,0.979803,0.225196,0.482686,0.963954,0.556604,0.873812,0.658234,0.118414,0.448022,0.715562,0.585297,0.474777,0.862605,0.370537,0.118021,0.599982,0.52505,0.0185633,0.291031,0.23303,0.869553,0.423477,0.344081,0.123461,0.694718,0.705769,0.762203,0.741258,0.533441,0.961087,0.591602,0.82324,0.567178,0.354373,0.972889,0.682678,0.787441,0.460674,0.674062,0.496172,0.751916,0.867105,0.685918,0.37532,0.782398,0.897078,0.564658,0.635125,0.479742,0.323193,0.477649,|0.87997,0.638121,0.205741,0.518375,0.43274,0.670159,0.0345829,0.703863,0.566867,0.966841,0.728654,0.197437,0.768815,0.0092299,0.170849,0.990027,0.518783,0.88806,0.417034,0.235329,0.407874,0.8035,0.544759,0.848724,0.980093,0.100427,0.291437,0.214764,0.733425,0.543292,0.968899,0.955725,0.273263,0.455843,0.669362,0.103076,0.762352,0.433206,0.093077,0.695715,0.812559,0.755397,0.834939,0.901831,0.343102,0.715861,0.616381,0.216493,0.702197,0.092144,0.140883,0.147019,0.14445,0.770984,0.00994974,0.368385,0.543765,0.265908,0.22195,0.594922,0.221602,0.459561,0.196532,0.533638,0.501522,0.547199,0.275531,0.456919,0.959802,0.824473,0.189575,0.809605,0.332043,0.83926,0.854811,0.456931,0.00401014,0.703412,0.641773,0.112741,0.956569,0.283328,0.29794,0.344075,0.457584,0.773271,0.917039,0.195384,0.999968,0.139746,0.0113847,0.719126,0.552894,0.672435,0.284012,0.567812,0.341608,0.167715,0.26021,0.983289,0.357476,0.317383,0.116282,0.643742,0.68433,0.0434055,0.0381956,0.35054,0.647328,0.280846,0.854735,0.189978,0.891717,0.900634,0.137851,0.943465,0.57794,0.325422,0.259595,0.612426,0.32581,0.310851,0.226685,0.225288,0.76498,0.257403,0.229883,0.723962,0.0646086,0.878504,0.632678,0.875757,0.595474,0.139857,0.944229,0.214233,0.583486,0.862482,0.166162,0.634506,0.264908,0.538952,0.468328,0.271616,0.767245,0.963667,0.219984,0.0188894,0.00602418,0.437348,0.630073,0.600395,0.692828,0.187077,0.714601,0.291193,0.136114,0.0397381,0.0783969,0.0744702,0.695375,0.573801,0.691451,0.187439,0.574017,0.156482,0.194962,0.675931,0.91045,0.626228,0.744654,0.919325,0.697956,0.984944,0.166024,0.62748,0.183253,0.0757853,0.755851,0.885161,0.905321,0.356847,0.973923,0.740941,0.138377,0.266322,0.541565,0.307475,0.683355,0.0907813,0.90172,0.293989,0.230137,0.607174,0.587855,0.0381756,0.66612,0.689451,0.156741,0.0459678,0.0128875,0.0266389,0.131383,0.82376,0.860099,0.139558,0.80448,0.649974,0.485003,0.0761643,0.392361,0.747511,0.807412,0.51906,0.0632988,0.437484,0.5888,0.663185,0.434389,0.109562,0.168286,0.517841,0.283881,0.461787,0.397261,0.6951,0.592858,0.134092,0.565768,0.518682,0.361757,0.42909,0.488349,0.0689029,0.875225,0.403324,0.974974,0.318694,0.143295,0.141696,0.819028,0.951538,0.93918,0.610472,0.553726,0.334964,0.171448,0.400302,0.650128,0.506346,0.796488,0.679095,0.682412,0.30762,0.216007,0.983194,0.781751,0.32835,0.595087,0.272044,0.297435,0.296705,0.748432,0.564618,0.128906,0.655576,0.940554,0.513088,0.935312,0.525769,0.1077,0.255507,0.955801,0.937232,0.15466,0.929457,0.432947,0.95679,0.636566,0.177127,0.117683,0.154406,0.376344,0.392911,0.946037,0.979195,0.916796,0.72162,0.887445,0.185492,0.792217,0.601345,0.143855,0.317551,0.191071,0.818989,0.308427,0.369738,0.183071,0.913209,0.18238,0.742652,0.578911,0.247936,0.0869007,0.595959,0.391994,0.761608,0.107665,0.677232,0.198354,0.67982,0.517016,0.931941,0.536799,0.647345,0.825771,0.278778,0.0364928,0.0208228,0.946817,0.197836,0.132778,0.0721884,0.0880538,0.0215892,0.322474,0.616289,0.0229122,0.821518,0.893039,0.652175,0.876317,0.891502,0.326122,0.0162524,0.0137296,0.557004,0.909859,0.0439715,0.51276,0.491176,0.0021714,0.0205648,0.340891,0.645658,0.1916,0.640508,0.251737,0.0412623,0.0820633,0.354074,0.127455,0.98161,0.109776,0.788791,0.409173,0.86562,0.85897,0.580382,0.175274,0.45509,0.658201,0.494632,0.805769,0.184957,0.663795,0.0812279,0.597629,0.704681,0.182799,0.241374,0.453908,0.283079,0.888302,0.617209,0.0622404,0.942801,0.597059,0.920296,0.484638,0.850142,0.319719,0.140112,0.427189,0.724127,0.0987959,0.21194,0.148201,0.663513,0.435917,0.38104,0.80732,0.613654,0.624841,0.512976,0.935373,0.489087,0.89639,0.934377,0.987361,0.219953,0.131719,0.371024,0.276994,0.776535,0.566622,0.795885,0.897097,0.0100386,0.355234,0.242053,0.676737,0.991864,0.15107,0.805554,0.971581,0.636081,0.340907,0.686056,0.217481,0.55872,0.290012,0.149888,0.826639,0.853544,0.55601,0.178316,0.47155,0.0570396,0.822348,0.93189,0.554246,0.32918,0.68469,0.190696,0.904881,0.890248,0.629255,0.712017,0.971277,0.246129,0.945862,0.200455,0.0379257,0.732328,0.547102,0.834524,0.117699,0.530697,0.787617,0.192062,0.644179,0.118545,0.5005,0.923355,0.590853,0.752531,0.035258,0.588025,0.616477,0.231664,0.616213,0.899395,0.146334,0.306358,0.497664,0.398449,0.117726,0.870963,0.132041,0.615301,0.896887,0.479745,0.981768,0.245106,0.265538,0.52308,0.41611,0.722271,0.322668,0.325074,0.735457,0.286022,0.971231,0.805252,0.456805,0.151793,0.0725044,0.270024,0.318063,0.708203,0.0148669,0.0347954,0.681232,0.242288,0.973929,0.264808,0.367402,0.554004,0.964256,0.983366,0.160765,0.599783,0.669734,0.00710875,0.97738,0.621436,0.842414,0.212219,0.323993,0.044189,0.423634,0.559317,0.75083,0.153545,0.798524,0.982071,0.204859,0.544513,0.682251,0.406934,0.340678,0.514638,0.921584,0.693974,0.416246,0.535297,0.775008,0.685581,0.576502,0.0372226,0.957607,0.858484,0.750113,0.381358,0.0919928,0.680935,0.700984,0.0098021,0.652727,0.551676,0.0917323,0.277425,0.470157,0.13404,0.1238,0.479525,0.972864,0.872976,0.140635,0.234492,0.0333858,0.185126,0.0870826,0.481894,0.865862,0.923723,0.428404,0.169136,0.334782,0.191958,0.190155,0.770228,0.641737,0.490502,0.213256,0.683433,0.496547,0.440375,0.929722,0.853303,0.805103,0.165435,0.859215,0.380457,0.711963,0.890021,0.603573,0.0154981,0.939101,0.22962,0.323925,0.194403,0.335959,0.606056,0.345306,0.561064,0.930743,0.292069,0.965682,0.522259,0.744679,0.838841,0.904773,0.660226,0.453816,0.824393,0.518855,0.829172,0.772638,0.0270419,0.66797,0.316958,0.964948,0.197517,0.940978,0.545557,0.247483,0.736521,0.213838,0.149819,0.69154,0.932896,0.909143,0.850078,0.31641,0.0125997,0.677952,0.647551,0.945171,0.574982,0.9068,0.756792,0.237095,0.760735,0.891334,0.000986934,0.721605,0.49905,0.590301,0.0250509,0.429415,0.193517,0.355809,0.398909,0.138087,0.926428,0.813672,0.455095,0.267405,0.669863,0.506456,0.68455,0.0366852,0.482582,0.425581,0.771609,0.460948,0.93389,0.998775,0.292323,0.511505,0.875986,0.195195,0.428736,0.340818,0.776814,0.508392,0.713076,0.386193,0.926919,0.77916,0.513509,0.0134556,0.266871,0.905965,0.90743,0.575055,0.251002,0.0157731,0.135141,0.926417,0.80147,0.427431,0.277357,0.609873,0.612058,0.833967,0.829136,0.029026,0.774939,0.0837737,0.0644149,0.19179,0.536143,0.924893,0.429256,0.287159,0.756331,0.831791,0.125895,0.970155,0.503552,0.022312,0.840597,0.58363,0.836105,0.836877,0.630771,0.448495,0.0781695,0.40832,0.859797,0.0983775,0.846045,0.453385,0.263541,0.779788,0.835667,0.843191,0.0572969,0.894139,0.912012,0.00613374,0.343585,0.229185,0.863528,0.845235,0.614581,0.9807,0.536023,0.972876,0.365905,0.200151,0.541527,0.722004,0.675838,0.301357,0.794055,0.666901,0.552249,0.234349,0.56222,0.106947,0.889643,0.204005,0.244525,0.283565,0.951269,0.920914,0.605874,0.0385948,0.475025,0.252658,0.352717,0.588781,0.891196,0.680458,0.625367,0.290156,0.905698,0.148466,0.932142,0.529693,0.326951,0.363143,0.849047,0.291317,0.182737,0.629223,0.10804,0.0367416,0.326739,0.536889,0.81123,0.39746,0.151397,0.841987,0.291152,0.900151,0.870128,0.726783,0.375331,0.773527,0.937272,0.0371553,0.291007,0.615367,0.0404408,0.859793,0.919075,0.567173,0.662341,0.280253,0.414839,0.163151,0.106778,0.0373253,0.358659,0.894775,0.455598,0.0673174,0.587091,0.309555,0.9141,0.731902,0.530663,0.704628,0.760357,0.519754,0.46441,0.501473,0.596555,0.128939,0.199396,0.480632,0.472735,0.822908,0.72879,0.446483,0.417379,0.822933,0.410299,0.211877,0.948129,0.55987,0.420441,0.65046,0.806927,0.0412194,0.669829,0.846868,0.723504,0.685483,0.111075,0.451234,0.221809,0.281613,0.663847,0.566882,0.427034,0.786955,0.322597,0.897465,0.876749,0.211593,0.34221,0.957824,0.989023,0.591258,0.82875,0.593204,0.840698,0.0771277,0.200154,0.576493,0.654251,0.381822,0.756313,0.935144,0.95192,0.657511,0.453031,0.22442,0.0317207,0.410511,0.13796,0.89978,0.0970734,0.314923,0.366898,0.747029,0.199167,0.887232,0.197908,0.991652,0.813274,0.496023,0.35612,0.0508481,0.857049,0.317193,0.176711,0.266293,0.689291,0.679449,0.182598,0.182865,0.0804211,0.969683,0.0142695,0.178749,0.687307,0.861157,0.576681,0.684843,0.36118,0.212685,0.389355,0.0861571,0.82118,0.349051,0.109322,0.485005,0.390985,0.800962,0.471964,0.288811,0.896718,0.313634,0.504832,0.802939,0.122902,0.539468,0.270764,0.00072974,0.551404,0.219432,0.172419,0.816319,0.628067,0.154406,0.200549,0.552792,0.991275,0.0824306,0.885467,0.710198,0.384521,0.7019,0.553649,0.51534,0.726341,0.80712,0.3023,0.300041,0.274473,0.521726,0.917719,0.415138,0.618487,0.275266,0.502313,0.862989,0.481779,0.0611657,0.0389301,0.28791,0.0637926,0.384592,0.518956,0.31119,0.352337,0.811726,0.753531,0.6081,0.871493,0.201614,0.0752653,0.709528,0.885001,0.204504,0.659287,0.141189,0.511141,0.11126,0.895607,0.577609,0.414183,0.422502,0.405184,0.363745,0.207646,0.401227,0.728592,0.964741,0.907797,0.59619,0.378619,0.336974,0.683947,0.879578,0.867368,0.376667,0.994226,0.958877,0.567162,0.401098,0.924062,0.656138,0.850754,0.885317,0.163354,0.315913,0.650062,0.655028,0.741027,0.107053,0.8379,0.0923308,0.18669,0.291398,0.395923,0.791677,0.480421,0.294662,0.48402,0.708162,0.871377,|0.0842453,0.345053,0.46757,0.433359,0.317321,0.957773,0.886539,0.0927295,0.761098,0.755214,0.689279,0.778149,0.984267,0.132738,0.654168,0.188985,0.27345,0.379691,0.774724,0.672945,0.800155,0.605887,0.696655,0.739395,0.834588,0.99725,0.907205,0.494487,0.0493389,0.671986,0.833956,0.121051,0.563188,0.605253,0.514002,0.898674,0.112327,0.658751,0.908666,0.349071,0.844883,0.773522,0.980021,0.330497,0.234822,0.828671,0.663315,0.727027,0.394689,0.864551,0.539461,0.927798,0.539361,0.2446,0.391602,0.802375,0.345547,0.0929556,0.703555,0.284682,0.181467,0.535581,0.860792,0.0887555,0.205823,0.177941,0.724435,0.561483,0.822373,0.197538,0.122735,0.783939,0.403053,0.180835,0.499142,0.569477,0.0610142,0.421284,0.530586,0.898189,0.429035,0.923415,0.29608,0.526959,0.183468,0.0323632,0.117139,0.166321,0.635056,0.124002,0.147817,0.980779,0.44609,0.744481,0.930742,0.829083,0.990162,0.00292516,0.342322,0.582886,0.2701,0.388589,0.467226,0.516833,0.448361,0.734861,0.637829,0.41431,0.370223,0.498195,0.0601504,0.676866,0.21195,0.238865,0.157314,0.242096,0.544976,0.591433,0.795729,0.325086,0.368968,0.629669,0.473469,0.257177,0.997742,0.604378,0.633269,0.329369,0.893894,0.877809,0.28882,0.48024,0.994542,0.503362,0.720726,0.063369,0.362006,0.739717,0.383736,0.589105,0.248652,0.611392,0.744104,0.135831,0.0296184,0.388885,0.0856004,0.571894,0.00284517,0.468435,0.692376,0.400333,0.758161,0.732345,0.258404,0.141472,0.462857,0.169953,0.81633,0.0828157,0.919332,0.813029,0.821752,0.367283,0.220079,0.284583,0.644011,0.414332,0.870789,0.792331,0.912174,0.507402,0.899002,0.654862,0.588247,0.439548,0.579509,0.356352,0.20657,0.833709,0.210281,0.289746,0.303301,0.037475,0.973079,0.678566,0.433502,0.187312,0.607167,0.671708,0.274076,0.614299,0.851114,0.716993,0.0913368,0.0123838,0.477623,0.284936,0.968508,0.359196,0.130931,0.177356,0.614949,0.842728,0.258019,0.27756,0.167005,0.579774,0.0328429,0.104321,0.251003,0.818929,0.560339,0.240615,0.751962,0.520538,0.742682,0.747155,0.455791,0.744491,0.0734933,0.375489,0.963658,0.896689,0.0532708,0.99639,0.111345,0.890238,0.555123,0.00554025,0.416596,0.886042,0.121224,0.845946,0.625902,0.653068,0.710288,0.472493,0.805601,0.928587,0.106151,0.0420892,0.684914,0.546682,0.0507234,0.0346095,0.0277926,0.269696,0.727576,0.149426,0.759269,0.970202,0.734745,0.0846909,0.826954,0.764196,0.435286,0.0355302,0.783525,0.262403,0.364429,0.287156,0.48966,0.192491,0.481799,0.726543,0.11292,0.960881,0.160944,0.647347,0.847963,0.549541,0.412265,0.0111046,0.660195,0.658734,0.0226518,0.34472,0.524258,0.0517043,0.415454,0.891517,0.144543,0.48551,0.587502,0.58106,0.866993,0.321503,0.731813,0.291699,0.498731,0.117252,0.173016,0.0437318,0.247741,0.359571,0.125196,0.130043,0.257812,0.997403,0.150524,0.215839,0.190683,0.7191,0.219007,0.89245,0.509922,0.274036,0.243209,0.287659,0.642039,0.23575,0.49863,0.261151,0.15236,0.941234,0.234704,0.271861,0.0167493,0.577938,0.674186,0.112512,0.53889,0.467103,0.725851,0.717932,0.62866,0.946542,0.950644,0.226491,0.219025,0.628752,0.900804,0.344833,0.617201,0.57415,0.244824,0.736859,0.995038,0.910856,0.364328,0.538462,0.080743,0.535936,0.343539,0.795108,0.883852,0.103246,0.441524,0.674492,0.609551,0.0456427,0.283223,0.512545,0.100693,0.972311,0.639189,0.172402,0.108796,0.340028,0.461295,0.888795,0.434861,0.73834,0.622953,0.151925,0.101331,0.581942,0.394601,0.477448,0.630839,0.900833,0.392737,0.733117,0.353481,0.0341572,0.69103,0.474294,0.255327,0.206133,0.0220253,0.779799,0.424311,0.443075,0.427392,0.746615,0.523755,0.128168,0.746684,0.400303,0.311606,0.639834,0.214808,0.725463,0.927237,0.888761,0.445911,0.281262,0.431443,0.872038,0.644949,0.524169,0.0202089,0.48375,0.751366,0.83382,0.857424,0.253292,0.0390416,0.47551,0.0402315,0.843721,0.95281,0.418061,0.312039,0.307145,0.654389,0.814747,0.91425,0.398495,0.923124,0.369046,0.348155,0.0650951,0.0310547,0.761148,0.253805,0.227802,0.294214,0.345474,0.374467,0.795369,0.847394,0.793447,0.576318,0.953121,0.556673,0.269244,0.603528,0.0556937,0.328204,0.952975,0.687975,0.826877,0.911966,0.23095,0.727127,0.394621,0.219011,0.425774,0.509913,0.764027,0.845487,0.920518,0.803573,0.924925,0.945674,0.604576,0.778585,0.988561,0.877178,0.380781,0.945737,0.362441,0.0236644,0.581656,0.453579,0.111083,0.275791,0.94988,0.85247,0.149492,0.381687,0.619504,0.696362,0.225316,0.133265,0.017344,0.235449,0.645862,0.150391,0.405269,0.252421,0.756932,0.0641012,0.243039,0.985518,0.352719,0.503378,0.213134,0.837709,0.637784,0.832029,0.22372,0.701043,0.502212,0.548975,0.998774,0.285736,0.0620891,0.817747,0.651614,0.317111,0.403713,0.93143,0.662461,0.6449,0.750564,0.0279028,0.328015,0.308837,0.707431,0.467469,0.132375,0.821329,0.46705,0.27722,0.569986,0.0499279,0.525234,0.466378,0.637795,0.29753,0.67188,0.974794,0.683846,0.342232,0.620158,0.160563,0.81822,0.295204,0.0138425,0.327891,0.767141,0.941307,0.85367,0.102289,0.613203,0.319875,0.844106,0.263044,0.125581,0.683392,0.488138,0.871768,0.426527,0.672013,0.85693,0.0433056,0.0614083,0.34825,0.603039,0.277998,0.642916,0.501754,0.667472,0.642582,0.177805,0.260723,0.752268,0.265118,0.0974404,0.898022,0.566378,0.178898,0.0933079,0.889724,0.506504,0.798963,0.960465,0.625638,0.202747,0.8687,0.950856,0.665009,0.236908,0.385882,0.145739,0.488622,0.833478,0.0666164,0.181745,0.0964487,0.825371,0.993443,0.736964,0.88749,0.863131,0.566866,0.340221,0.942008,0.916845,0.216284,0.230701,0.190885,0.974194,0.146239,0.0425518,0.388095,0.723005,0.977571,0.663541,0.869425,0.0386222,0.638536,0.159606,0.571638,0.213261,0.50931,0.534969,0.143943,0.424096,0.582193,0.502495,0.71226,0.92159,0.322718,0.0923845,0.896114,0.779827,0.618127,0.215547,0.597076,0.816904,0.995284,0.689303,0.0341653,0.787848,0.395756,0.0904365,0.526681,0.495919,0.0563001,0.845976,0.175841,0.0669754,0.364264,0.273258,0.225103,0.0601098,0.933804,0.991655,0.786926,0.295612,0.0743777,0.742582,0.365882,0.0644185,0.045954,0.350685,0.364678,0.118804,0.483419,0.524641,0.453557,0.796493,0.888244,0.922022,0.215582,0.212536,0.496926,0.547422,0.611961,0.0188852,0.237889,0.338782,0.823693,0.0239403,0.757683,0.970779,0.406174,0.891291,0.688832,0.0276176,0.633318,0.327771,0.925852,0.651784,0.465146,0.883657,0.846759,0.348473,0.446948,0.666838,0.348963,0.85558,0.420387,0.124405,0.789923,0.62875,0.634628,0.938624,0.0669788,0.0439823,0.0248892,0.398348,0.531356,0.634233,0.402299,0.618509,0.939914,0.774625,0.874187,0.189493,0.366122,0.458165,0.808771,0.959901,0.00354576,0.505896,0.392144,0.1158,0.178815,0.387118,0.862666,0.547223,0.120107,0.676044,0.363558,0.794991,0.16461,0.446454,0.0398669,0.853911,0.977137,0.0725124,0.594041,0.799853,0.276065,0.310669,0.25119,0.0788835,0.99955,0.789585,0.111999,0.862552,0.616037,0.337536,0.551095,0.803832,0.414938,0.318276,0.579833,0.173785,0.456162,0.0185073,0.975679,0.0266672,0.534466,0.458421,0.481598,0.371419,0.6617,0.12943,0.556495,0.160226,0.079352,0.0582079,0.967533,0.624347,0.588111,0.482313,0.497563,0.97101,0.969509,0.356958,0.563156,0.660876,0.0536844,0.822817,0.777077,0.588807,0.813652,0.644705,0.210549,0.00674444,0.585178,0.541908,0.983363,0.994282,0.251222,0.364279,0.872675,0.997308,0.175485,0.948857,0.191707,0.0541233,0.514102,0.0334699,0.955196,0.22102,0.164076,0.936062,0.247981,0.429567,0.933187,0.131432,0.686628,0.863768,0.470802,0.101716,0.0899501,0.493045,0.971698,0.807153,0.726789,0.55281,0.69403,0.0645241,0.218016,0.444046,0.930875,0.508141,0.14651,0.72404,0.624512,0.566249,0.417316,0.0516642,0.300608,0.226304,0.377922,0.818881,0.682514,0.361938,0.311255,0.274981,0.241651,0.182925,0.68956,0.441561,0.384486,0.557778,0.556286,0.335025,0.641863,0.57916,0.816384,0.208153,0.872561,0.873042,0.382295,0.94107,0.264192,0.925426,0.219919,0.0748968,0.683101,0.230078,0.984759,0.673437,0.17221,0.117804,0.377593,0.00244498,0.0217889,0.534005,0.281252,0.965409,0.307188,0.0329955,0.875709,0.532879,0.90085,0.320238,0.732705,0.899987,0.456898,0.446251,0.722156,0.0528317,0.310214,0.981771,0.64823,0.191574,0.270009,0.665024,0.127054,0.855565,0.9008,0.958322,0.334581,0.819802,0.42373,0.977244,0.281693,0.520898,0.999636,0.504373,0.351533,0.438333,0.798612,0.800329,0.654472,0.744527,0.375715,0.470002,0.17667,0.92827,0.835626,0.787296,0.586828,0.184963,0.525296,0.55535,0.925711,0.424811,0.778939,0.977936,0.903106,0.75508,0.99126,0.651248,0.735444,0.870431,0.512184,0.879812,0.909199,0.575576,0.682888,0.132268,0.719657,0.683497,0.275254,0.664619,0.09051,0.375282,0.834939,0.590353,0.905241,0.66663,0.0203215,0.111977,0.138013,0.63032,0.904096,0.0489716,0.979624,0.85905,0.705574,0.899938,0.407138,0.714205,0.93999,0.00636458,0.41736,0.380095,0.8832,0.570813,0.763272,0.993883,0.392387,0.432514,0.247515,0.949356,0.28415,0.589503,0.0116726,0.205253,0.228116,0.388978,0.543906,0.433008,0.412319,0.661019,0.869195,0.792953,0.233065,0.83265,0.955838,0.427333,0.895861,0.782604,0.544196,0.737235,0.535803,0.366247,0.804291,0.081057,0.716189,0.771837,0.133808,0.415324,0.309347,0.266166,0.338288,0.797357,0.962375,0.0210744,0.0592195,0.91987,0.240692,0.816333,0.570348,0.722863,0.707062,0.976388,0.124682,0.327168,|0.160893,0.300261,0.0889865,0.354577,0.14073,0.388326,0.707803,0.282398,0.260011,0.408969,0.319246,0.339638,0.514563,0.600869,0.0362573,0.265586,0.904218,0.477325,0.223765,0.925616,0.567724,0.651177,0.660941,0.245393,0.82462,0.407835,0.112212,0.38349,0.00954652,0.0638934,0.732928,0.12778,0.912636,0.439422,0.744685,0.808721,0.00808197,0.747123,0.441063,0.644567,0.839812,0.852236,0.602252,0.404677,0.0784085,0.241239,0.64451,0.0667886,0.682169,0.914462,0.882132,0.759044,0.641906,0.533291,0.248285,0.0443972,0.8161,0.00922722,0.129307,0.395309,0.72585,0.421352,0.616779,0.392237,0.172095,0.0462686,0.0242529,0.639442,0.95164,0.319238,0.364355,0.492446,0.544824,0.111738,0.826818,0.444365,0.833293,0.158572,0.650485,0.218642,0.0551022,0.0616646,0.718571,0.849603,0.832168,0.992906,0.820566,0.810652,0.985666,0.87932,0.66927,0.601919,0.61252,0.676569,0.763615,0.731035,0.461956,0.823433,0.373363,0.771957,0.492856,0.837905,0.622506,0.188935,0.287597,0.958737,0.917824,0.233112,0.753048,0.0260019,0.644011,0.102153,0.374971,0.220413,0.45113,0.474412,0.425726,0.524273,0.0988662,0.76221,0.503233,0.897671,0.238128,0.549499,0.259002,0.291773,0.242881,0.696322,0.984817,0.0244959,0.228894,0.86574,0.602281,0.506193,0.618871,0.665028,0.40926,0.520136,0.549919,0.691321,0.444554,0.978669,0.11574,0.849154,0.395355,0.184782,0.639847,0.829579,0.726203,0.00412178,0.471797,0.474261,0.216631,0.778637,0.741608,0.0290874,0.167629,0.164141,0.699317,0.721629,0.157605,0.938517,0.323136,0.290463,0.529995,0.0646017,0.767345,0.787382,0.834433,0.95218,0.833968,0.353055,0.243572,0.612217,0.0351491,0.928878,0.832465,0.943973,0.742404,0.51369,0.356129,0.286948,0.395335,0.232478,0.359338,0.72755,0.230769,0.546981,0.861199,0.156807,0.0196044,0.514272,0.477756,0.713273,0.0468426,0.0649191,0.861051,0.478959,0.20524,0.518123,0.331867,0.791406,0.123747,0.638562,0.0994987,0.948556,0.439477,0.45699,0.840469,0.605944,0.981728,0.0597655,0.00499672,0.192985,0.594993,0.574159,0.447334,0.984637,0.924462,0.539155,0.0732593,0.0692696,0.719682,0.301714,0.609187,0.372993,0.722527,0.274973,0.329924,0.18128,0.973823,0.228063,0.188086,0.281394,0.885648,0.18607,0.20534,0.949744,0.85373,0.0154367,0.40111,0.481231,0.0509568,0.32747,0.752833,0.469349,0.48101,0.0503609,0.177936,0.877141,0.378619,0.172463,0.913046,0.753498,0.528931,0.665939,0.376089,0.0961604,0.999908,0.320669,0.426849,0.543301,0.367918,0.939417,0.436084,0.88062,0.619897,0.704812,0.296821,0.874928,0.346109,0.208808,0.00158,0.432884,0.232195,0.0640493,0.939545,0.948806,0.923732,0.0366081,0.87957,0.605852,0.200389,0.00762981,0.76144,0.751157,0.844895,0.992192,0.319829,0.593494,0.440473,0.968215,0.497638,0.822005,0.488555,0.621272,0.198928,0.28138,0.365224,0.257953,0.345808,0.792553,0.96893,0.199931,0.772776,0.515863,0.0856351,0.890357,0.370061,0.400186,0.523598,0.533656,0.568059,0.178628,0.258929,0.543832,0.0891366,0.793236,0.873809,0.697243,0.332326,0.540167,0.451311,0.237995,0.534732,0.979473,0.737023,0.211901,0.821269,0.438322,0.0212234,0.619741,0.282836,0.472966,0.296345,0.745374,0.600361,0.115814,0.851839,0.333645,0.647377,0.732052,0.985722,0.649558,0.0108564,0.226762,0.410498,0.293343,0.419812,0.0593812,0.519432,0.44419,0.722525,0.67353,0.973298,0.947674,0.504955,0.14969,0.947856,0.515758,0.988339,0.0482608,0.623392,0.899578,0.322113,0.815627,0.110587,0.463513,0.635851,0.55612,0.431153,0.233643,0.941966,0.110576,0.895695,0.62124,0.226786,0.3916,0.353346,0.88123,0.53217,0.457227,0.677459,0.823719,0.321918,0.853456,0.205604,0.266623,0.823843,0.751225,0.752283,0.125952,0.553241,0.162614,0.382403,0.808564,0.593994,0.919367,0.0498784,0.133285,0.26016,0.0480113,0.979869,0.615465,0.816446,0.400932,0.0836553,0.860023,0.570403,0.220942,0.0402534,0.1919,0.326621,0.72333,0.0124962,0.52043,0.438412,0.58212,0.898488,0.293712,0.570398,0.496886,0.748286,0.820906,0.734781,0.726969,0.150241,0.383348,0.14404,0.329825,0.832577,0.459761,0.881498,0.853525,0.647463,0.189052,0.171476,0.710407,0.155405,0.732806,0.727197,0.736484,0.577772,0.846735,0.736927,0.880853,0.82341,0.6267,0.711127,0.179359,0.912018,0.628079,0.923676,0.683083,0.424101,0.0408471,0.974968,0.0803602,0.154765,0.994588,0.625505,0.913125,0.786793,0.582936,0.264438,0.784921,0.505592,0.674384,0.194194,0.192372,0.518598,0.783295,0.598709,0.383093,0.960114,0.943912,0.0419461,0.893134,0.0485145,0.885661,0.293493,0.0307985,0.380502,0.118416,0.993038,0.797292,0.549107,0.392384,0.882671,0.471031,0.902887,0.213171,0.0476285,0.105331,0.806089,0.666106,0.045926,0.395687,0.786565,0.356446,0.258827,0.244491,0.82049,0.98289,0.0409948,0.138767,0.576203,0.443222,0.418036,0.390337,0.0860514,0.886677,0.0026862,0.952512,0.545108,0.234931,0.488855,0.992727,0.243236,0.501097,0.585636,0.998589,0.915446,0.0732585,0.505225,0.464828,0.161307,0.124966,0.774017,0.911341,0.88816,0.930569,0.995468,0.847152,0.22684,0.723256,0.861214,0.226569,0.131807,0.0719603,0.615554,0.157892,0.0951231,0.923599,0.34068,0.999438,0.233075,0.197063,0.773998,0.71901,0.552109,0.56564,0.899865,0.951205,0.937561,0.272869,0.121261,0.25345,0.849344,0.664317,0.42896,0.486342,0.195825,0.374472,0.943568,0.303149,0.0621661,0.791638,0.387634,0.992475,0.120182,0.431097,0.753997,0.233314,0.606759,0.711546,0.55801,0.0537107,0.902753,0.262715,0.894844,0.96306,0.822552,0.657913,0.0486002,0.717647,0.865904,0.165253,0.221872,0.951403,0.619101,0.0725241,0.184826,0.310403,0.217791,0.598242,0.290788,0.925052,0.481922,0.115334,0.799047,0.678993,0.708323,0.837186,0.875919,0.58951,0.976529,0.7673,0.112872,0.0665784,0.113887,0.949436,0.54819,0.942837,0.0476341,0.48498,0.413045,0.088599,0.587514,0.378007,0.657533,0.407617,0.0781853,0.7674,0.417651,0.654609,0.329482,0.0708057,0.743166,0.551412,0.290944,0.0627683,0.359065,0.546842,0.76569,0.979753,0.958591,0.522009,0.015698,0.809621,0.51585,0.55989,0.964588,0.00671053,0.546062,0.79869,0.0461903,0.612027,0.755677,0.137844,0.727071,0.324343,0.26772,0.272524,0.726939,0.315359,0.319274,0.235533,0.367345,0.596949,0.533768,0.426959,0.890363,0.591382,0.557993,0.0951515,0.0182906,0.85241,0.350074,0.211445,0.735337,0.938224,0.364889,0.122478,0.840784,0.00622708,0.207779,0.278495,0.282831,0.15292,0.863183,0.404126,0.811977,0.735364,0.378809,0.411021,0.843811,0.628309,0.993513,0.172162,0.834297,0.543819,0.867645,0.41742,0.317294,0.0593411,0.595832,0.296014,0.734168,0.631291,0.557738,0.438119,0.883777,0.792049,0.269244,0.031026,0.956945,0.7336,0.71347,0.975384,0.442914,0.828586,0.929258,0.296006,0.709645,0.34753,0.797558,0.480109,0.438717,0.305637,0.295493,0.681459,0.972596,0.41534,0.139605,0.180389,0.150874,0.73194,0.0625744,0.547433,0.222792,0.825602,0.363433,0.587877,0.378135,0.558821,0.0539169,0.907693,0.481566,0.661873,0.412536,0.975618,0.882814,0.171793,0.192652,0.692097,0.941843,0.878142,0.393769,0.0958346,0.338121,0.773002,0.579234,0.702181,0.320241,0.0566872,0.205235,0.24809,0.57342,0.743227,0.606248,0.90643,0.110545,0.353842,0.777533,0.253813,0.523535,0.246715,0.165135,0.17083,0.446014,0.19837,0.163588,0.0114676,0.77905,0.225352,0.295974,0.0968477,0.696563,0.350054,0.72079,0.228768,0.649743,0.583607,0.0799124,0.562981,0.417118,0.46719,0.00898862,0.620239,0.784196,0.416195,0.506015,0.981731,0.752215,0.958384,0.830029,0.572771,0.3904,0.548026,0.591119,0.896835,0.391901,0.528848,0.432668,0.737487,0.377786,0.701136,0.268927,0.446642,0.407623,0.676317,0.303743,0.282228,0.0201228,0.377158,0.435297,0.682241,0.745192,0.487293,0.556019,0.636055,0.469012,0.139014,0.172532,0.610158,0.559708,0.975351,0.912201,0.256407,0.422798,0.772933,0.582067,0.380143,0.569016,0.596961,0.978725,0.238338,0.705274,0.689135,0.55028,0.661302,0.498283,0.109142,0.578231,0.158342,0.487235,0.174857,0.868865,0.255226,0.97939,0.844049,0.449283,0.255224,0.35747,0.447606,0.208572,0.874656,0.302603,0.128562,0.57585,0.0771684,0.446013,0.932317,0.950025,0.318825,0.781304,0.42166,0.46987,0.857266,0.257755,0.903439,0.450791,0.0594357,0.0423841,0.519896,0.659338,0.769464,0.120357,0.776979,0.145445,0.172593,0.175804,0.950856,0.176989,0.264509,0.603642,0.983669,0.992768,0.340065,0.360025,0.669411,0.827523,0.812754,0.547905,0.911312,0.408444,0.537663,0.146368,0.0985188,0.762686,0.323104,0.0156809,0.540906,0.968153,0.810417,0.756622,0.651909,0.436789,0.279601,0.33876,0.725913,0.93417,0.937365,0.694316,0.0403722,0.00457388,0.395043,0.0660754,0.0817177,0.910864,0.302399,0.30613,0.0245893,0.921214,0.019475,0.257747,0.93251,0.704871,0.661279,0.639948,0.400319,0.927924,0.711271,0.867518,0.492103,0.809816,0.404642,0.0169242,0.18567,0.462151,0.0836901,0.928678,0.580725,0.247447,0.265577,0.238583,0.176384,0.269976,0.0811784,0.552776,0.239882,0.882135,0.350345,0.204496,0.874487,0.848473,0.284691,0.0122977,0.395656,0.118284,0.23431,0.870285,0.832621,0.852224,0.378722,0.0868257,0.104011,0.114246,0.915832,0.643165,0.502519,0.191489,0.199924,0.361277,0.314384,0.0469816,0.279745,0.35237,0.520192,0.971819,0.814659,0.726878,0.949979,0.370232,0.379213,0.815498,0.230359,0.666016,0.471572,0.899286,0.00626296,0.987817,0.586055,0.0211424,0.51982,0.340288,0.0757686,0.703376,0.556967,|0.573953,0.929546,0.131176,0.357731,0.86871,0.677403,0.858271,0.806977,0.98863,0.918702,0.198831,0.530379,0.0733704,0.965048,0.347001,0.146337,0.679249,0.147135,0.560644,0.695017,0.720286,0.068448,0.99463,0.751111,0.603355,0.030844,0.797375,0.872019,0.204171,0.287362,0.158806,0.769878,0.366533,0.609747,0.671624,0.842523,0.403639,0.0642383,0.597003,0.53132,0.445285,0.106371,0.0125911,0.846646,0.961556,0.23465,0.144344,0.512832,0.573941,0.282881,0.470311,0.391637,0.267577,0.0840033,0.626805,0.831007,0.0825625,0.16028,0.303783,0.391582,0.711934,0.787648,0.302299,0.238911,0.186601,0.0757489,0.318648,0.955202,0.228341,0.502004,0.782737,0.648849,0.0144973,0.467384,0.207829,0.551832,0.290881,0.12646,0.363666,0.13432,0.861579,0.964038,0.329586,0.207242,0.721902,0.718543,0.309077,0.831909,0.387461,0.680961,0.315448,0.440813,0.00951242,0.523082,0.528459,0.15973,0.442704,0.310434,0.946604,0.268358,0.67784,0.449341,0.160567,0.482342,0.168303,0.919618,0.234212,0.760249,0.119755,0.0691905,0.171029,0.648565,0.542014,0.766017,0.0537239,0.889516,0.291367,0.861277,0.0117239,0.683028,0.205936,0.546999,0.352182,0.339925,0.413507,0.561585,0.369881,0.0382718,0.834824,0.645019,0.191404,0.156507,0.355871,0.377788,0.205295,0.229405,0.255881,0.46278,0.0112748,0.502826,0.914054,0.937076,0.795186,0.131413,0.564178,0.683318,0.769155,0.578736,0.25976,0.878186,0.285366,0.419527,0.512862,0.629656,0.882261,0.797683,0.132763,0.477534,0.454672,0.0190356,0.89008,0.667394,0.187443,0.634116,0.554966,0.142568,0.182616,0.406103,0.0603399,0.267684,0.00909179,0.113151,0.844187,0.797637,0.720394,0.0554497,0.101501,0.0291325,0.154592,0.804833,0.636779,0.967768,0.510966,0.428061,0.843851,0.372017,0.705068,0.848939,0.841678,0.0620552,0.645016,0.603994,0.855971,0.980989,0.249221,0.203713,0.514321,0.955604,0.90966,0.931134,0.239624,0.493023,0.426685,0.485982,0.887726,0.367181,0.972311,0.737083,0.211721,0.537821,0.476897,0.620391,0.124062,0.653159,0.864928,0.833882,0.534162,0.575383,0.521302,0.356807,0.82072,0.950517,0.449297,0.623912,0.396845,0.524308,0.236242,0.774508,0.491049,0.279814,0.476053,0.596963,0.473513,0.178966,0.813572,0.120217,0.587328,0.196194,0.560214,0.408469,0.955931,0.721201,0.0978099,0.466388,0.647839,0.0734761,0.783676,0.851002,0.0168867,0.316066,0.200607,0.779758,0.300788,0.504282,0.90893,0.224028,0.96007,0.599845,0.397854,0.64452,0.0536805,0.507643,0.993953,0.16543,0.869204,0.441023,0.783061,0.644851,0.877653,0.57362,0.1812,0.0764126,0.375645,0.223942,0.698837,0.0472903,0.979643,0.324221,0.208081,0.838001,0.943531,0.212817,0.846613,0.00247329,0.429463,0.787166,0.420314,0.191066,0.0416915,0.399243,0.846653,0.766176,0.0355877,0.975298,0.370991,0.662545,0.101386,0.754087,0.842564,0.925572,0.211344,0.0339695,0.0211635,0.93975,0.381596,0.690983,0.337176,0.67528,0.333463,0.670147,0.144616,0.042809,0.608749,0.399585,0.575557,0.714312,0.343145,0.913238,0.467145,0.938235,0.0980521,0.816703,0.979309,0.491952,0.42583,0.714747,0.590448,0.893189,0.275827,0.658734,0.613615,0.726303,0.0483287,0.0261912,0.315073,0.354114,0.999875,0.813565,0.977191,0.445017,0.6452,0.971835,0.773125,0.864134,0.210907,0.797706,0.697452,0.511174,0.410674,0.491404,0.112828,0.838129,0.417375,0.714507,0.835537,0.620441,0.311558,0.0600565,0.536044,0.620439,0.865486,0.742937,0.347188,0.606256,0.690494,0.650699,0.908119,0.732488,0.414917,0.573083,0.371082,0.816687,0.220765,0.380512,0.960735,0.991244,0.43346,0.937773,0.677122,0.470873,0.847351,0.917568,0.296616,0.721238,0.831647,0.813369,0.397158,0.703231,0.366709,0.150554,0.224904,0.496134,0.926925,0.0967423,0.653107,0.399309,0.998212,0.845788,0.0119542,0.909374,0.204511,0.347321,0.974698,0.60334,0.406051,0.0168849,0.979924,0.726161,0.538308,0.766695,0.180383,0.88063,0.772368,0.00635678,0.572313,0.60505,0.80246,0.106637,0.640733,0.340187,0.911585,0.881474,0.50934,0.706839,0.443264,0.755848,0.663357,0.067603,0.497489,0.0431225,0.160644,0.891815,0.0691077,0.631814,0.559246,0.778722,0.446102,0.0765356,0.51626,0.538528,0.139682,0.400584,0.689997,0.45706,0.379085,0.810676,0.359873,0.122194,0.890337,0.908614,0.954514,0.0996988,0.362487,0.761797,0.344052,0.813771,0.0946115,0.312166,0.821856,0.676925,0.528537,0.0429672,0.799531,0.649574,0.532136,0.790842,0.496901,0.286074,0.511702,0.254058,0.884076,0.374504,0.187748,0.124988,0.800593,0.656122,0.975015,0.538993,0.419241,0.565945,0.28972,0.933525,0.42789,0.560133,0.87929,0.515495,0.670621,0.844742,0.292791,0.700376,0.639069,0.308312,0.222348,0.642524,0.730848,0.468872,0.101839,0.873837,0.106173,0.960941,0.992037,0.353585,0.685997,0.408313,0.21296,0.224636,0.349181,0.309639,0.886604,0.64425,0.653614,0.00255954,0.694055,0.665558,0.400946,0.989039,0.386226,0.825401,0.863549,0.118552,0.407276,0.421171,0.783056,0.470271,0.391909,0.85684,0.706163,0.151237,0.916054,0.79904,0.738366,0.601811,0.535384,0.30339,0.0223687,0.0515018,0.669175,0.818091,0.223143,0.137923,0.767249,0.436272,0.288701,0.937824,0.486518,0.764196,0.295518,0.946344,0.940489,0.840328,0.664657,0.476009,0.449436,0.367096,0.212067,0.0823221,0.711193,0.913737,0.972459,0.84636,0.79637,0.141668,0.573976,0.383201,0.887517,0.102559,0.659481,0.756796,0.627889,0.675638,0.696056,0.212561,0.465476,0.563643,0.246216,0.212355,0.821477,0.991234,0.932924,0.399949,0.82014,0.165025,0.353107,0.975453,0.164209,0.911529,0.504433,0.299496,0.637247,0.627753,0.461571,0.146124,0.553465,0.914703,0.163068,0.361148,0.329923,0.831497,0.573848,0.315495,0.145417,0.136969,0.847753,0.0185015,0.801437,0.880442,0.0401842,0.656685,0.125238,0.948419,0.746647,0.0300567,0.536508,0.716461,0.19682,0.197851,0.484974,0.80312,0.956045,0.856722,0.859463,0.357062,0.179668,0.783064,0.13862,0.753607,0.971825,0.131591,0.991526,0.394873,0.563937,0.745307,0.488455,0.433765,0.897237,0.793035,0.396672,0.173154,0.480009,0.77253,0.307217,0.277856,0.0953325,0.994228,0.709567,0.876358,0.956331,0.281314,0.495604,0.32282,0.381407,0.721003,0.98572,0.0298691,0.0716874,0.512516,0.140627,0.237741,0.724773,0.746599,0.970015,0.770743,0.841427,0.298863,0.29692,0.102647,0.0928029,0.442573,0.168739,0.130241,0.176053,0.913252,0.035431,0.361316,0.536811,0.480623,0.0222359,0.707033,0.102594,0.278844,0.549392,0.487052,0.812791,0.810033,0.44378,0.370448,0.363157,0.556483,0.512679,0.294656,0.902708,0.963082,0.651832,0.23922,0.340099,0.37037,0.445582,0.444708,0.246958,0.347496,0.425291,0.599834,0.542723,0.968905,0.659165,0.329099,0.247179,0.988688,0.119178,0.986255,0.615907,0.0122805,0.639072,0.525407,0.73494,0.453338,0.857051,0.774569,0.341227,0.875876,0.585918,0.254928,0.893296,0.0899419,0.382026,0.186588,0.0712123,0.497827,0.49922,0.846966,0.722397,0.939268,0.218099,0.256277,0.815646,0.0173581,0.598986,0.886338,0.0843918,0.294611,0.245472,0.379165,0.905981,0.0445432,0.32434,0.192937,0.794219,0.888362,0.139712,0.466763,0.999005,0.618656,0.293272,0.0318369,0.899904,0.144054,0.949266,0.794712,0.658592,0.194118,0.974873,0.49027,0.4728,0.0122777,0.158989,0.963191,0.935622,0.913287,0.505312,0.655893,0.34586,0.188096,0.870858,0.128902,0.514727,0.633419,0.973515,0.0340886,0.7859,0.101512,0.714204,0.880364,0.450552,0.511073,0.987448,0.346633,0.765824,0.801935,0.129032,0.71166,0.540836,0.894513,0.899376,0.710085,0.421362,0.346806,0.484478,0.26934,0.903306,0.257897,0.839248,0.105572,0.354959,0.598405,0.860283,0.845012,0.150287,0.932776,0.277305,0.706567,0.165724,0.575543,0.0596188,0.350487,0.913855,0.800714,0.80745,0.727746,0.630599,0.609129,0.931703,0.967456,0.208028,0.25105,0.342324,0.0615839,0.379431,0.38739,0.481339,0.541619,0.869959,0.535657,0.735677,0.959087,0.716223,0.486512,0.254122,0.206221,0.239425,0.590992,0.796999,0.633335,0.935889,0.926577,0.791016,0.800615,0.682013,0.528152,0.641299,0.97934,0.944757,0.91967,0.69507,0.927487,0.394513,0.667608,0.19755,0.0529405,0.133077,0.768032,0.655554,0.907733,0.793988,0.540589,0.0776363,0.805909,0.706215,0.533549,0.0821067,0.653756,0.283162,0.832747,0.470211,0.481489,0.455907,0.37094,0.661906,0.155458,0.732889,0.0688477,0.930119,0.374245,0.9019,0.206269,0.979617,0.212181,0.414603,0.63471,0.108567,0.376284,0.721462,0.0227123,0.114041,0.446261,0.207061,0.496056,0.244207,0.661535,0.691851,0.48908,0.426687,0.465387,0.986531,0.585899,0.0656905,0.822704,0.0485519,0.00829232,0.200202,0.633579,0.57736,0.667731,0.537155,0.721667,0.740867,0.139314,0.250442,0.739238,0.965342,0.349646,0.955304,0.341174,0.343205,0.510733,0.593515,0.215456,0.856536,0.593033,0.211081,0.298884,0.728928,0.880002,0.96056,0.847523,0.304567,0.962,0.421743,0.701743,0.00905156,0.359416,0.720613,0.695438,0.450737,0.553577,0.117219,0.864373,0.687532,0.861295,0.0232484,0.139533,0.907016,0.47566,0.768401,0.743715,0.577374,0.468441,0.982786,0.441782,0.207342,0.497076,0.558968,0.405768,0.285286,0.246071,0.953516,0.63802,0.137278,0.916841,0.467201,0.766376,0.807348,0.234641,0.577062,0.668398,0.236047,0.227128,0.682452,0.287838,0.369905,0.66664,0.546461,0.91587,0.266085,0.0127701,0.646631,0.323938,0.0975664,0.287262,0.622967,0.800631,0.647475,0.0553763,0.575244,0.433035,0.0548293,0.616538,0.422238,0.972127,0.376835,0.00792378,|0.161635,0.197489,0.762826,0.719384,0.998447,0.712107,0.529089,0.851961,0.00577974,0.0425826,0.613805,0.336516,0.944746,0.841276,0.218167,0.686641,0.695082,0.389725,0.326889,0.815266,0.246111,0.784696,0.909808,0.55052,0.743831,0.344822,0.738873,0.475926,0.899048,0.0512437,0.935799,0.508036,0.794294,0.628687,0.70793,0.299815,0.628329,0.178785,0.23833,0.520992,0.414275,0.0984416,0.57534,0.27879,0.790123,0.230154,0.340028,0.0143098,0.588558,0.261083,0.519931,0.689725,0.702348,0.262755,0.431158,0.821607,0.42434,0.423881,0.294673,0.467277,0.885466,0.968615,0.676043,0.637515,0.894274,0.285738,0.743242,0.887503,0.429104,0.383845,0.66989,0.979188,0.505362,0.279255,0.608552,0.302195,0.278076,0.941572,0.551261,0.114234,0.60804,0.177596,0.630627,0.112279,0.388065,0.874748,0.350083,0.675601,0.716092,0.307466,0.357425,0.820198,0.685251,0.793097,0.930655,0.334257,0.796216,0.585001,0.902579,0.381743,0.954477,0.261187,0.867386,0.0732877,0.921895,0.337984,0.375781,0.0531662,0.880464,0.493363,0.748357,0.56495,0.286606,0.970357,0.304594,0.351295,0.327026,0.478529,0.0576504,0.766337,0.499535,0.179753,0.0457544,0.997265,0.884965,0.194959,0.88121,0.34884,0.61149,0.310772,0.038146,0.898642,0.00148594,0.173549,0.542461,0.241868,0.369286,0.956426,0.351513,0.796851,0.943369,0.61672,0.927601,0.0453096,0.945021,0.935074,0.870075,0.675038,0.697529,0.842484,0.409907,0.409872,0.768804,0.779299,0.363304,0.550149,0.629794,0.179393,0.632089,0.162539,0.98565,0.144153,0.937655,0.652097,0.205056,0.688243,0.196147,0.421342,0.557383,0.547652,0.00476915,0.48669,0.326993,0.284463,0.411,0.111743,0.483175,0.84067,0.715149,0.625738,0.233717,0.172006,0.571764,0.749491,0.338745,0.532722,0.676685,0.257433,0.263696,0.544942,0.393886,0.620103,0.388783,0.580852,0.470891,0.068397,0.747767,0.357681,0.123489,0.399178,0.666995,0.186183,0.460802,0.232476,0.211199,0.608842,0.70008,0.939364,0.941172,0.999208,0.836344,0.811071,0.15283,0.921691,0.489989,0.335914,0.715482,0.0404654,0.0513985,0.889398,0.290896,0.0228081,0.945098,0.730383,0.490461,0.233098,0.257842,0.0897666,0.962077,0.751369,0.0645247,0.731333,0.992586,0.599229,0.559831,0.549225,0.670478,0.603473,0.0417606,0.3481,0.406651,0.666917,0.71106,0.52576,0.156542,0.687641,0.907127,0.701904,0.185325,0.122516,0.454664,0.755119,0.755077,0.920249,0.0766228,0.626574,0.234949,0.616205,0.279827,0.256883,0.214746,0.208182,0.172951,0.447601,0.239012,0.517953,0.865467,0.882678,0.601046,0.942374,0.572768,0.457756,0.776397,0.265087,0.0111369,0.999299,0.060501,0.50557,0.52315,0.110751,0.898866,0.40419,0.0173218,0.821812,0.82107,0.433516,0.823631,0.804218,0.795489,0.752446,0.103685,0.148254,0.709903,0.427829,0.765421,0.466383,0.389025,0.108111,0.326346,0.114444,0.303878,0.405514,0.64012,0.205599,0.718039,0.19929,0.559175,0.38794,0.990891,0.838143,0.732021,0.218911,0.74647,0.484552,0.945435,0.0128356,0.115774,0.799907,0.544414,0.82173,0.325459,0.29447,0.472741,0.343481,0.477147,0.756473,0.145006,0.296632,0.193693,0.890109,0.476181,0.936725,0.451241,0.741372,0.208358,0.852453,0.360605,0.484642,0.995174,0.231942,0.998779,0.803518,0.210057,0.803649,0.312996,0.64429,0.984195,0.635586,0.265785,0.682852,0.484707,0.843163,0.395633,0.837777,0.194875,0.83081,0.850328,0.932164,0.464778,0.16208,0.2383,0.220228,0.588468,0.43951,0.33815,0.679637,0.655086,0.0550087,0.173602,0.174785,0.183432,0.229771,0.754267,0.605402,0.13617,0.142684,0.946467,0.46496,0.506571,0.797989,0.516724,0.976459,0.216006,0.266842,0.638559,0.61739,0.489049,0.863312,0.353389,0.817993,0.402752,0.735247,0.7683,0.958339,0.732355,0.917637,0.636464,0.693522,0.463978,0.108748,0.997829,0.874171,0.519963,0.107345,0.349458,0.867443,0.334312,0.784157,0.858422,0.826036,0.995881,0.166485,0.161684,0.132999,0.973326,0.559367,0.443942,0.747861,0.918499,0.636564,0.922374,0.83953,0.601712,0.729243,0.31238,0.877458,0.655474,0.873603,0.948607,0.743885,0.485748,0.291848,0.139333,0.110704,0.348545,0.0423404,0.043589,0.857836,0.371302,0.0642592,0.903298,0.475642,0.500621,0.459263,0.246332,0.538513,0.582438,0.776564,0.25574,0.187209,0.3706,0.69028,0.262971,0.988464,0.913206,0.468999,0.0980856,0.705169,0.281434,0.797052,0.970417,0.299853,0.297657,0.751687,0.342425,0.946853,0.679974,0.902703,0.833278,0.717235,0.0114571,0.118278,0.155701,0.649528,0.504899,0.416071,0.643544,0.585994,0.306338,0.20495,0.733854,0.531343,0.726266,0.340545,0.666145,0.479768,0.317545,0.609073,0.0972082,0.541214,0.682886,0.043678,0.740877,0.0150347,0.649461,0.522438,0.442735,0.381335,0.790182,0.282138,0.0194104,0.456749,0.112252,0.259659,0.673066,0.722344,0.945154,0.139909,0.12324,0.235463,0.28435,0.376106,0.298018,0.24978,0.274867,0.414927,0.33072,0.770574,0.61928,0.0947145,0.0468823,0.994277,0.699809,0.956518,0.0267293,0.603424,0.742315,0.760491,0.0415249,0.649611,0.830471,0.0724415,0.889987,0.600897,0.652516,0.819989,0.707425,0.837024,0.888076,0.414021,0.152764,0.418088,0.522787,0.585428,0.0493899,0.472715,0.338008,0.0318479,0.911638,0.420607,0.0355306,0.816912,0.728642,0.273048,0.926825,0.420485,0.95977,0.457972,0.443891,0.281111,0.362652,0.28887,0.898465,0.64244,0.372042,0.337712,0.618023,0.917804,0.601569,0.0565438,0.851583,0.0601438,0.544357,0.607949,0.664081,0.0242316,0.0421666,0.196552,0.903203,0.724159,0.186675,0.437474,0.173912,0.347619,0.280662,0.738679,0.214921,0.364489,0.827303,0.764714,0.539752,0.506909,0.959685,0.138943,0.493817,0.638031,0.973491,0.444227,0.697289,0.987841,0.987975,0.657773,0.08689,0.000440955,0.189476,0.705924,0.811998,0.771651,0.274152,0.203278,0.759156,0.464382,0.0132218,0.47035,0.484911,0.582971,0.387973,0.706331,0.747133,0.948244,0.532885,0.829409,0.603914,0.69754,0.344704,0.859467,0.211027,0.53891,0.505614,0.129249,0.669088,0.817267,0.233917,0.703661,0.808142,0.362761,0.471174,0.394395,0.812001,0.409197,0.514931,0.228922,0.310603,0.473576,0.447534,0.516151,0.544949,0.974732,0.433629,0.0191144,0.69189,0.747269,0.558651,0.278106,0.245291,0.287374,0.944438,0.246799,0.0219418,0.170637,0.518581,0.243121,0.632526,0.169664,0.0301815,0.729319,0.817285,0.138843,0.0800097,0.631255,0.419943,0.515634,0.438578,0.708688,0.38752,0.525636,0.222717,0.875653,0.0788996,0.388004,0.218756,0.308522,0.239115,0.865333,0.00110912,0.0195828,0.676052,0.48958,0.80787,0.613357,0.178402,0.603189,0.194825,0.00817788,0.134463,0.439895,0.0470572,0.119922,0.783024,0.282676,0.0761237,0.392138,0.666029,0.921002,0.570916,0.0239661,0.282865,0.412892,0.176087,0.56753,0.563299,0.276614,0.872869,0.351959,0.336064,0.280333,0.845247,0.475342,0.351168,0.795547,0.374267,0.172532,0.195516,0.703974,0.979166,0.0916629,0.383216,0.973197,0.457427,0.891751,0.442638,0.586104,0.0651562,0.783727,0.851067,0.803993,0.300286,0.773239,0.136455,0.0721062,0.923604,0.893005,0.26787,0.930849,0.187598,0.979926,0.788461,0.201205,0.882518,0.795192,0.972495,0.0769343,0.884343,0.00569844,0.823841,0.426035,0.990522,0.0534142,0.65532,0.509306,0.722863,0.410135,0.952682,0.0348286,0.92468,0.671036,0.168173,0.838576,0.947419,0.792007,0.679309,0.578592,0.638964,0.324278,0.665372,0.772151,0.26159,0.815058,0.109417,0.670307,0.498829,0.72547,0.591061,0.843416,0.280774,0.57584,0.518172,0.58329,0.590949,0.832264,0.243988,0.0626082,0.859286,0.31794,0.853829,0.330722,0.0398504,0.032956,0.664018,0.0521559,0.93859,0.312847,0.127374,0.528591,0.906914,0.0146899,0.549121,0.647446,0.693401,0.855453,0.10871,0.38902,0.921679,0.887251,0.418057,0.785034,0.458978,0.964822,0.424223,0.801538,0.515972,0.918431,0.852898,0.91851,0.765935,0.93386,0.643373,0.80134,0.95461,0.0747934,0.277979,0.469818,0.104477,0.268023,0.320221,0.887678,0.493291,0.747334,0.458288,0.141722,0.157394,0.975916,0.180446,0.15626,0.355897,0.682193,0.519461,0.444169,0.0736614,0.446835,0.728338,0.166295,0.676098,0.201606,0.522716,0.949165,0.581862,0.665179,0.650987,0.123958,0.498874,0.720882,0.610731,0.575781,0.0802643,0.518731,0.0983353,0.432976,0.192942,0.921616,0.173184,0.692858,0.672832,0.069712,0.945129,0.928088,0.685487,0.314466,0.023354,0.132905,0.674534,0.244846,0.769451,0.312481,0.70603,0.907837,0.373773,0.784005,0.0809292,0.806093,0.646691,0.149634,0.259557,0.558955,0.179654,0.218621,0.480102,0.021859,0.158626,0.751336,0.825137,0.264955,0.278744,0.174824,0.589587,0.158382,0.967723,0.132808,0.377832,0.763057,0.33882,0.988996,0.154344,0.0759885,0.701654,0.552746,0.925173,0.302515,0.16828,0.926754,0.0859075,0.118619,0.324575,0.51607,0.134288,0.24794,0.529965,0.899913,0.790586,0.558577,0.164124,0.868285,0.105596,0.821485,0.186923,0.246779,0.433885,0.35911,0.39772,0.0555135,0.107876,0.696787,0.261044,0.104336,0.184956,0.0446475,0.21575,0.826599,0.393334,0.431187,0.999408,0.679079,0.0184515,0.704091,0.980143,0.66215,0.497324,0.955947,0.817636,0.908459,0.050068,0.56742,0.687834,0.462268,0.253579,0.402397,0.371303,0.797269,0.12968,0.194489,0.876143,0.983839,0.697531,0.200719,0.910754,0.143317,0.330318,0.615842,0.863756,0.620925,0.477168,0.40494,0.300937,0.257727,0.227462,0.414575,0.175843,0.976498,0.560235,0.916641,0.133925,0.369552,0.411302,0.810162,0.589534,0.138504,0.484604,0.736297,0.255185,0.0196952,|0.248629,0.105636,0.974081,0.338565,0.25014,0.845125,0.31514,0.430613,0.0294346,0.935364,0.337669,0.353504,0.940338,0.891517,0.694423,0.71011,0.192932,0.183855,0.0267345,0.803306,0.219595,0.109311,0.25381,0.526702,0.618277,0.81144,0.973616,0.291883,0.719922,0.899942,0.288463,0.314848,0.585711,0.184441,0.220267,0.068837,0.772001,0.550104,0.185765,0.858932,0.123768,0.257492,0.599721,0.131019,0.349463,0.511225,0.233354,0.425393,0.779701,0.281028,0.875488,0.658656,0.191119,0.714609,0.492262,0.278234,0.62724,0.183951,0.117912,0.0368311,0.359785,0.662946,0.524257,0.790207,0.0915839,0.131326,0.523101,0.893595,0.0701516,0.336623,0.392777,0.106525,0.246282,0.0200711,0.0920626,0.402036,0.727361,0.0291607,0.167848,0.724681,0.112827,0.509759,0.831531,0.282469,0.52972,0.246884,0.927735,0.438284,0.418534,0.0741217,0.701,0.541843,0.633533,0.603525,0.579448,0.876361,0.165637,0.209969,0.726652,0.572123,0.392193,0.809895,0.562833,0.68,0.826167,0.90567,0.106254,0.306501,0.355644,0.664881,0.361437,0.672776,0.888241,0.200918,0.950073,0.329904,0.190921,0.925268,0.142061,0.0564722,0.448509,0.451772,0.484911,0.685543,0.51576,0.0386406,0.160425,0.760675,0.356156,0.306954,0.818004,0.198396,0.509465,0.109964,0.0690574,0.172167,0.510385,0.815115,0.0919316,0.209671,0.546852,0.178458,0.445844,0.819841,0.769171,0.149365,0.725284,0.545731,0.0839457,0.322542,0.772063,0.982363,0.964515,0.226006,0.270041,0.0786089,0.755045,0.821465,0.894057,0.447624,0.671507,0.890341,0.686906,0.766254,0.299021,0.0206866,0.905873,0.0157099,0.495767,0.278023,0.894655,0.452029,0.878358,0.963258,0.954588,0.660979,0.178623,0.504125,0.0144536,0.513831,0.931297,0.0644956,0.886291,0.422434,0.816696,0.599639,0.308757,0.359801,0.887954,0.174649,0.452568,0.668622,0.712027,0.932229,0.14273,0.0118313,0.268349,0.701259,0.884362,0.617506,0.293777,0.625747,0.926175,0.0786153,0.884656,0.0848699,0.445655,0.553998,0.571162,0.540581,0.322624,0.623469,0.889607,0.464279,0.0710859,0.951506,0.0858411,0.763361,0.416754,0.926091,0.749467,0.397519,0.853765,0.365122,0.463898,0.21947,0.500639,0.161424,0.914356,0.691269,0.330495,0.776915,0.865999,0.361256,0.292176,0.677666,0.303048,0.898974,0.993394,0.966078,0.768521,0.943295,0.843873,0.663567,0.470157,0.54283,0.0487269,0.863714,0.0821102,0.659755,0.145201,0.84591,0.191587,0.436581,0.520444,0.797763,0.872568,0.392269,0.655387,0.744873,0.331637,0.300574,0.987028,0.631159,0.0753724,0.663985,0.621273,0.637683,0.27629,0.167418,0.905096,0.935643,0.112078,0.794632,0.289167,0.206979,0.117611,0.46154,0.295744,0.603982,0.346162,0.22489,0.551929,0.27372,0.407264,0.1352,0.45326,0.725412,0.0958534,0.159147,0.400534,0.980178,0.600193,0.378978,0.584247,0.587628,0.200591,0.709459,0.816377,0.79502,0.584394,0.159243,0.611081,0.295041,0.580372,0.472487,0.447248,0.583488,0.350064,0.0954371,0.64028,0.477003,0.213547,0.126886,0.621409,0.898649,0.409069,0.710387,0.0525136,0.352488,0.495318,0.425198,0.880157,0.610199,0.713528,0.937349,0.482864,0.314913,0.0959556,0.0855303,0.0229797,0.447421,0.0125149,0.358851,0.220128,0.82924,0.00631219,0.267215,0.193941,0.0376397,0.841793,0.0221614,0.199288,0.419212,0.28383,0.448017,0.141699,0.865386,0.155716,0.118821,0.921493,0.279016,0.52116,0.402982,0.842821,0.000540674,0.520985,0.633433,0.973754,0.402496,0.606436,0.758012,0.879552,0.781337,0.37456,0.387603,0.986752,0.942237,0.419154,0.994513,0.878118,0.251291,0.297716,0.690116,0.595527,0.0224671,0.183238,0.595972,0.598212,0.744246,0.763967,0.969504,0.0727838,0.806855,0.364467,0.871401,0.901802,0.754935,0.803843,0.796608,0.914573,0.29572,0.67219,0.0918482,0.649024,0.332685,0.915979,0.0302269,0.571917,0.33154,0.840664,0.58238,0.0814949,0.785831,0.38105,0.489969,0.282886,0.295689,0.425418,0.194186,0.660613,0.333478,0.839207,0.77833,0.049391,0.0753422,0.796862,0.874166,0.794453,0.314008,0.115799,0.0879613,0.317676,0.786112,0.446011,0.837473,0.560649,0.571737,0.224263,0.122072,0.799523,0.731717,0.572929,0.138718,0.499323,0.367704,0.876374,0.859545,0.330348,0.25996,0.57383,0.297129,0.452129,0.409938,0.490022,0.329748,0.406083,0.983,0.542665,0.591396,0.753472,0.210291,0.106231,0.854604,0.60628,0.216677,0.0421777,0.446909,0.765823,0.158648,0.888414,0.460876,0.224392,0.670004,0.145115,0.347339,0.224316,0.364134,0.791621,0.107042,0.481645,0.272137,0.164021,0.0664398,0.793703,0.141544,0.400074,0.375078,0.425286,0.12842,0.132858,0.683566,0.0231642,0.902813,0.00944173,0.180055,0.436841,0.740742,0.948663,0.380988,0.323097,0.0827167,0.876512,0.267027,0.725087,0.456797,0.184099,0.18272,0.548829,0.295832,0.650739,0.152305,0.159398,0.54142,0.173648,0.459648,0.31267,0.649602,0.959684,0.538768,0.247135,0.595567,0.410205,0.918447,0.19268,0.104211,0.708884,0.451592,0.358826,0.974804,0.525422,0.560933,0.565344,0.578702,0.0632976,0.815425,0.399906,0.185981,0.858044,0.061458,0.64584,0.377501,0.236002,0.128567,0.935665,0.179632,0.0701781,0.555463,0.37831,0.802156,0.953923,0.301538,0.584487,0.0348156,0.383707,0.463419,0.807798,0.337831,0.206966,0.18731,0.516829,0.209866,0.129207,0.884082,0.246745,0.580713,0.356619,0.674071,0.212225,0.0469863,0.473294,0.710428,0.835202,0.589255,0.0698467,0.0451069,0.97528,0.429355,0.866663,0.466162,0.443588,0.145281,0.126331,0.207154,0.742298,0.167729,0.0444148,0.451632,0.790037,0.593962,0.0888918,0.976711,0.676728,0.686143,0.779844,0.454692,0.540518,0.581254,0.498243,0.520404,0.0315229,0.625043,0.11601,0.828476,0.306477,0.828731,0.154476,0.876219,0.815236,0.583037,0.617095,0.840264,0.203331,0.267907,0.0231043,0.237297,0.447698,0.950976,0.231716,0.379785,0.208849,0.757572,0.292218,0.77271,0.478583,0.824273,0.60301,0.993937,0.0543478,0.355751,0.146063,0.425121,0.59572,0.111388,0.652841,0.142219,0.486277,0.761653,0.247465,0.526137,0.0219026,0.91099,0.600017,0.61308,0.0989984,0.0189658,0.136459,0.43699,0.473627,0.546852,0.645287,0.427463,0.604558,0.849262,0.664452,0.461489,0.963376,0.146357,0.551053,0.368904,0.499033,0.101154,0.35867,0.0780173,0.724543,0.649177,0.887259,0.698395,0.544322,0.201109,0.36857,0.911942,0.142632,0.512875,0.245067,0.0708425,0.467458,0.283307,0.762906,0.188854,0.893998,0.521062,0.486238,0.769434,0.50394,0.35194,0.0985476,0.364746,0.343148,0.275072,0.695127,0.0608612,0.351836,0.56221,0.709773,0.968996,0.0773907,0.357602,0.489025,0.520369,0.68481,0.43975,0.830716,0.294739,0.53303,0.218511,0.521028,0.387686,0.482295,0.0359002,0.415384,0.719973,0.781184,0.162938,0.129699,0.294707,0.604776,0.913774,0.469968,0.334782,0.298321,0.0866572,0.41998,0.550614,0.984249,0.0917498,0.97234,0.804074,0.77297,0.83614,0.521728,0.318799,0.700239,0.947677,0.735178,0.615824,0.773172,0.264215,0.0898449,0.377277,0.955487,0.66277,0.33041,0.535256,0.653542,0.211204,0.659438,0.749475,0.968494,0.421932,0.943169,0.451941,0.355031,0.367517,0.0806936,0.174082,0.286054,0.236751,0.129482,0.444704,0.521866,0.528956,0.129924,0.962807,0.284677,0.51309,0.198391,0.646307,0.916149,0.48186,0.36951,0.134304,0.192714,0.331133,0.995107,0.814838,0.690297,0.120242,0.726417,0.442685,0.948054,0.0101871,0.89441,0.940418,0.296169,0.664881,0.128359,0.953913,0.820915,0.355042,0.569025,0.756821,0.89002,0.342493,0.92416,0.0610911,0.954464,0.776559,0.425792,0.618745,0.201338,0.814629,0.326408,0.95123,0.476249,0.294833,0.201749,0.840407,0.642759,0.343232,0.744664,0.294258,0.655496,0.730407,0.908494,0.982768,0.114461,0.700378,0.11384,0.835014,0.362705,0.353966,0.583242,0.858959,0.896845,0.852087,0.0790289,0.356211,0.301209,0.830302,0.454022,0.296058,0.322802,0.60846,0.699905,0.62256,0.606659,0.238611,0.278686,0.281344,0.0126663,0.603585,0.611746,0.912247,0.725761,0.506724,0.565339,0.451338,0.293464,0.923461,0.603859,0.688783,0.0625167,0.493511,0.283397,0.17946,0.0840903,0.15873,0.659504,0.513193,0.704726,0.783083,0.574213,0.578101,0.26116,0.610767,0.700404,0.815877,0.752948,0.58342,0.573057,0.366578,0.171784,0.0282013,0.963108,0.697905,0.0248945,0.82619,0.558804,0.200985,0.307314,0.673766,0.700909,0.682989,0.421671,0.556069,0.338532,0.931399,0.606031,0.117048,0.0221508,0.447721,0.788128,0.593133,0.404432,0.16119,0.263497,0.791692,0.00789791,0.085505,0.154992,0.838147,0.800001,0.62606,0.73987,0.0277116,0.722057,0.256932,0.13709,0.694993,0.505023,0.0325352,0.276424,0.317099,0.97067,0.533025,0.59397,0.829627,0.322604,0.335777,0.82504,0.289132,0.7129,0.352265,0.719274,0.612005,0.150273,0.955087,0.0200006,0.743403,0.371832,0.0484993,0.0364751,0.101324,0.460119,0.128329,0.681044,0.129932,0.769187,0.382538,0.367093,0.379882,0.426936,0.801417,0.379321,0.630209,0.443687,0.508672,0.554335,0.262498,0.579115,0.267951,0.0634934,0.241213,0.130328,0.788109,0.87592,0.646087,0.0182075,0.648705,0.177363,0.135276,0.291267,0.659724,0.205632,0.180091,0.482008,0.537456,0.964887,0.898456,0.107904,0.242466,0.208019,0.397989,0.836333,0.837213,0.325973,0.17866,0.870388,0.280983,0.549732,0.310869,0.984311,0.654416,0.76258,0.268506,0.992343,0.11967,0.355702,0.324807,0.0770088,0.786563,0.753601,0.356002,0.355995,0.284579,0.997041,0.0309507,0.815677,0.288462,0.0721719,0.866646,0.396277,0.0651539,0.470203,0.637816,0.699449,0.0577172,0.0541592,0.00101745,|0.370942,0.554346,0.063337,0.0716715,0.536773,0.846923,0.821522,0.725027,0.233887,0.649811,0.679845,0.958098,0.33755,0.83191,0.526299,0.448589,0.191014,0.416493,0.548323,0.738151,0.55846,0.367546,0.493683,0.920694,0.601096,0.693725,0.401499,0.412138,0.984822,0.940586,0.188219,0.610699,0.866864,0.641546,0.373446,0.135149,0.672728,0.4074,0.329706,0.616797,0.0665854,0.363031,0.413073,0.426951,0.722791,0.769687,0.127321,0.483748,0.904242,0.102561,0.0023852,0.540783,0.321715,0.215701,0.0468755,0.589254,0.295838,0.297146,0.751039,0.131416,0.420959,0.847094,0.106679,0.0799917,0.47955,0.0715104,0.781474,0.380973,0.135826,0.135583,0.317463,0.259888,0.532608,0.711294,0.584605,0.476859,0.457227,0.0465412,0.398398,0.355528,0.204145,0.494907,0.193854,0.325369,0.685593,0.629235,0.865614,0.599715,0.597788,0.784512,0.850937,0.184371,0.0810995,0.26579,0.82467,0.739888,0.435246,0.167735,0.939916,0.448795,0.136503,0.981617,0.245796,0.000660121,0.76229,0.0670115,0.69344,0.942015,0.413303,0.945819,0.990349,0.0930623,0.0313287,0.83431,0.00746298,0.643863,0.26401,0.58216,0.90591,0.593928,0.799931,0.17479,0.0547613,0.43477,0.553101,0.798872,0.221597,0.892668,0.195996,0.271592,0.648638,0.973845,0.774961,0.942129,0.899762,0.911553,0.561028,0.704138,0.165196,0.677086,0.306416,0.0463981,0.63852,0.78391,0.374556,0.170601,0.064081,0.10842,0.455004,0.327342,0.0100445,0.990248,0.693298,0.363169,0.103475,0.720355,0.942253,0.931457,0.610114,0.140849,0.519097,0.265937,0.554235,0.884542,0.030865,0.522103,0.710492,0.586622,0.223597,0.17132,0.51875,0.139888,0.667229,0.320645,0.961047,0.665242,0.414207,0.973918,0.254472,0.181363,0.293317,0.333935,0.611544,0.0806835,0.915796,0.722831,0.634219,0.824149,0.0272367,0.345388,0.587986,0.710397,0.925774,0.305464,0.335826,0.788826,0.0980387,0.872234,0.400995,0.232738,0.788152,0.557831,0.594406,0.595325,0.813495,0.0675932,0.368266,0.479142,0.150931,0.404648,0.0449914,0.342981,0.879897,0.635638,0.741579,0.823334,0.401986,0.480716,0.690994,0.723475,0.0345881,0.212713,0.782224,0.787587,0.924686,0.265054,0.510976,0.950099,0.0765964,0.787723,0.487259,0.0365077,0.226578,0.293312,0.180846,0.461894,0.942107,0.420849,0.131607,0.286353,0.771756,0.413965,0.401193,0.915132,0.53104,0.740246,0.262436,0.598355,0.422124,0.865757,0.39992,0.608441,0.265931,0.500497,0.78809,0.967842,0.0488692,0.262811,0.758331,0.209784,0.327529,0.916105,0.374126,0.601034,0.95442,0.959038,0.655386,0.0359212,0.0958684,0.350334,0.99104,0.89282,0.158352,0.146165,0.237974,0.365593,0.775165,0.717994,0.200365,0.255682,0.720937,0.904995,0.64097,0.105631,0.696974,0.114089,0.745502,0.815537,0.03348,0.942057,0.815394,0.922178,0.208966,0.425932,0.441031,0.766212,0.870109,0.311911,0.613166,0.538869,0.869434,0.33315,0.176703,0.450407,0.642859,0.134803,0.277236,0.0310817,0.814883,0.280845,0.678486,0.941829,0.984928,0.0735433,0.934608,0.448872,0.301791,0.518693,0.958221,0.716755,0.452318,0.338238,0.522404,0.700541,0.164425,0.528386,0.0598231,0.606441,0.982078,0.0424578,0.808747,0.763232,0.129011,0.662429,0.194654,0.12214,0.384398,0.0645624,0.155218,0.17307,0.528866,0.734544,0.774836,0.635029,0.488895,0.656298,0.135897,0.230627,0.54558,0.452889,0.0814415,0.778148,0.00020653,0.545647,0.0896764,0.249001,0.767312,0.722929,0.479584,0.314321,0.326333,0.842174,0.871239,0.478185,0.435533,0.777478,0.464433,0.543149,0.115558,0.0942792,0.426317,0.286173,0.637944,0.843119,0.721064,0.750239,0.942271,0.211435,0.587367,0.647225,0.539384,0.817294,0.824619,0.719636,0.913352,0.783342,0.865363,0.577124,0.17283,0.134171,0.586139,0.353602,0.34284,0.996008,0.419832,0.741621,0.188771,0.921274,0.519298,0.0792869,0.71985,0.528453,0.460661,0.595936,0.480507,0.615764,0.425051,0.62688,0.992457,0.850652,0.682717,0.273137,0.659875,0.495974,0.128592,0.494006,0.562542,0.741253,0.11393,0.436527,0.924943,0.793815,0.724097,0.030816,0.53009,0.818809,0.071212,0.883901,0.752223,0.106191,0.269454,0.415307,0.357145,0.910271,0.233559,0.0755223,0.524614,0.363076,0.494079,0.299911,0.304301,0.864795,0.362446,0.629319,0.187099,0.29912,0.871582,0.331631,0.948944,0.845576,0.714705,0.0305674,0.0607519,0.296276,0.358811,0.899017,0.894215,0.0575969,0.580905,0.859883,0.390147,0.20773,0.5175,0.162166,0.721603,0.97281,0.309171,0.0129028,0.865894,0.111157,0.525772,0.267017,0.623134,0.0525507,0.0418462,0.797725,0.439756,0.448732,0.0707837,0.891324,0.119856,0.511849,0.176999,0.00591928,0.184801,0.833468,0.0173317,0.382668,0.260034,0.375503,0.455512,0.807888,0.299673,0.327234,0.858818,0.435667,0.16267,0.655593,0.391583,0.558127,0.97543,0.976211,0.227949,0.443698,0.0374068,0.990821,0.987113,0.16932,0.59375,0.564525,0.928592,0.0347373,0.427006,0.158852,0.172808,0.84325,0.420947,0.639603,0.594968,0.576687,0.139399,0.172299,0.199191,0.772403,0.983761,0.65532,0.586768,0.102181,0.982945,0.418895,0.728663,0.661173,0.281468,0.51003,0.643398,0.796556,0.98037,0.634692,0.172739,0.729338,0.770035,0.787433,0.792484,0.167476,0.360622,0.807051,0.655679,0.842592,0.612446,0.841252,0.994819,0.674014,0.677833,0.840869,0.411077,0.947341,0.702655,0.973021,0.49414,0.619752,0.0758521,0.37284,0.762237,0.64092,0.128813,0.133523,0.659831,0.347803,0.114085,0.233462,0.092173,0.611435,0.0909258,0.551363,0.109907,0.962867,0.0612978,0.307393,0.992741,0.580838,0.026316,0.00199664,0.476542,0.148777,0.0121401,0.569188,0.640963,0.79206,0.0514529,0.573008,0.348968,0.243533,0.958081,0.11743,0.849922,0.595869,0.348498,0.619392,0.249638,0.0113729,0.512854,0.0426418,0.866629,0.267692,0.6989,0.175844,0.0882557,0.971655,0.854115,0.45474,0.638789,0.42472,0.990458,0.156813,0.524648,0.914909,0.856541,0.201541,0.691041,0.634297,0.540382,0.864249,0.201094,0.0592186,0.673575,0.997018,0.573104,0.36304,0.837061,0.153771,0.362456,0.788216,0.0378419,0.240058,0.234934,0.292034,0.585735,0.06802,0.362602,0.866849,0.379413,0.633626,0.258611,0.189273,0.916189,0.0411619,0.834245,0.936819,0.822748,0.181226,0.441473,0.883243,0.426278,0.283,0.766623,0.622194,0.157972,0.734811,0.542463,0.13099,0.872751,0.594851,0.755363,0.000689268,0.387374,0.906225,0.177315,0.922543,0.430144,0.384888,0.847694,0.803663,0.153394,0.293826,0.462765,0.0231309,0.573141,0.776671,0.373416,0.728167,0.603164,0.949447,0.518446,0.838634,0.432254,0.0971118,0.213913,0.406397,0.050906,0.603431,0.578109,0.197768,0.371893,0.68119,0.824157,0.196791,0.792515,0.679542,0.61118,0.474776,0.862072,0.173309,0.537609,0.507165,0.793292,0.101002,0.358413,0.459259,0.412542,0.260859,0.939865,0.324606,0.523444,0.00868851,0.00915551,0.876812,0.33135,0.513296,0.549004,0.492697,0.134964,0.738378,0.648896,0.388284,0.818834,0.881608,0.52884,0.93699,0.647789,0.280191,0.184359,0.865978,0.885594,0.441284,0.983963,0.381182,0.0750263,0.246675,0.815595,0.205141,0.58533,0.461243,0.575299,0.135554,0.291612,0.671568,0.0737888,0.60596,0.912026,0.504247,0.761528,0.775468,0.705322,0.647646,0.996202,0.206646,0.500243,0.221681,0.539805,0.455702,0.322301,0.875211,0.623986,0.928176,0.944633,0.621634,0.591701,0.411965,0.235474,0.960942,0.175936,0.339399,0.0974226,0.825598,0.777705,0.309544,0.352439,0.158179,0.427553,0.57873,0.522521,0.58151,0.0442992,0.563358,0.975805,0.294577,0.0699095,0.924474,0.109447,0.905498,0.507308,0.529784,0.637771,0.525924,0.715195,0.82044,0.405881,0.238693,0.464659,0.373241,0.859219,0.992176,0.791137,0.300223,0.120721,0.701139,0.416329,0.704343,0.866258,0.00678563,0.494115,0.157183,0.624902,0.550402,0.879744,0.340129,0.843576,0.829715,0.718596,0.536001,0.591037,0.382007,0.4637,0.975546,0.799417,0.861046,0.263549,0.300169,0.663741,0.370063,0.437497,0.686867,0.736298,0.128471,0.316349,0.648267,0.023251,0.615741,0.713972,0.494344,0.189504,0.746947,0.63719,0.713742,0.355885,0.134755,0.757212,0.10854,0.428866,0.999587,0.369844,0.391341,0.616219,0.395084,0.870913,0.204877,0.304394,0.838187,0.834364,0.928966,0.638817,0.636543,0.859189,0.276228,0.415875,0.978074,0.34211,0.961264,0.577715,0.915205,0.790306,0.479839,0.149785,0.938505,0.877104,0.444187,0.210112,0.769372,0.111914,0.903949,0.164988,0.311063,0.378599,0.065765,0.223534,0.724986,0.537921,0.0784785,0.090373,0.641519,0.133364,0.59985,0.0459573,0.130543,0.190147,0.53201,0.599923,0.355528,0.35338,0.581988,0.930072,0.681249,0.0386285,0.192282,0.996704,0.788757,0.74755,0.712074,0.506237,0.145907,0.752525,0.839744,0.348042,0.870648,0.290785,0.180277,0.428051,0.401964,0.198294,0.602417,0.787277,0.213996,0.576741,0.929023,0.734358,0.809205,0.63788,0.556607,0.217864,0.597666,0.115636,0.612372,0.755213,0.26735,0.365194,0.290869,0.792606,0.900887,0.317123,0.917548,0.35369,0.589343,0.111259,0.0788712,0.566467,0.705367,0.180103,0.0774,0.582054,0.890803,0.832085,0.77117,0.909402,0.0387412,0.78023,0.110975,0.333046,0.0656531,0.618728,0.448134,0.379293,0.239799,0.971363,0.478606,0.999406,0.673569,0.22217,0.535226,0.16051,0.0196753,0.478305,0.969848,0.515156,0.92101,0.320111,0.785542,0.698706,0.0386965,0.668839,0.817589,0.711027,0.754936,0.486531,0.804711,0.20497,0.698012,0.242518,0.0191138,0.540781,0.312651,0.80893,0.752744,0.783123,0.222486,0.353334,0.168679,0.61195,0.971444,0.0531598,0.424256,|0.536382,0.0624399,0.147318,0.21328,0.568494,0.572855,0.571822,0.645242,0.555177,0.412365,0.653027,0.196942,0.370725,0.51746,0.870466,0.427116,0.953624,0.426487,0.104007,0.311142,0.876746,0.794433,0.0583512,0.652943,0.905648,0.733567,0.109624,0.437626,0.916819,0.416703,0.292043,0.37503,0.452616,0.129628,0.508779,0.446818,0.215236,0.243497,0.263106,0.151784,0.870532,0.128202,0.160288,0.189595,0.9056,0.461617,0.103231,0.0534689,0.348928,0.374834,0.823191,0.145731,0.403038,0.459723,0.425705,0.00489479,0.402686,0.816658,0.947784,0.621009,0.205949,0.381453,0.890171,0.946385,0.22057,0.382212,0.102449,0.901512,0.915761,0.362561,0.801847,0.78073,0.111254,0.464182,0.585791,0.840572,0.822751,0.592816,0.25104,0.386204,0.383097,0.655733,0.42312,0.593956,0.514378,0.854694,0.801937,0.92386,0.847576,0.250854,0.877419,0.987787,0.134378,0.40432,0.625056,0.292237,0.530297,0.969249,0.952074,0.0144156,0.0127448,0.7846,0.377718,0.34284,0.879198,0.193604,0.0281273,0.981156,0.264435,0.228795,0.485831,0.0963907,0.56474,0.17462,0.803648,0.652369,0.562783,0.783999,0.374148,0.149285,0.687239,0.719675,0.277402,0.0290298,0.215066,0.26235,0.459723,0.434741,0.353727,0.849299,0.0837957,0.740244,0.387843,0.0519225,0.131209,0.192382,0.221193,0.411863,0.887977,0.594885,0.517041,0.530599,0.0608014,0.538153,0.387572,0.391012,0.346,0.541334,0.723829,0.463499,0.372372,0.877085,0.0242509,0.238535,0.913731,0.20917,0.952243,0.842925,0.509204,0.785484,0.502797,0.998312,0.341322,0.628744,0.956736,0.738726,0.267331,0.595546,0.567238,0.781629,0.140597,0.895951,0.771047,0.157291,0.913492,0.078044,0.201561,0.5365,0.952974,0.880202,0.289669,0.519899,0.237442,0.0289003,0.650429,0.883387,0.491083,0.29209,0.778621,0.82631,0.558728,0.380557,0.138867,0.484215,0.850246,0.823384,0.830809,0.207758,0.85314,0.93989,0.0412438,0.23466,0.740791,0.375829,0.734103,0.476473,0.753757,0.209546,0.936687,0.336561,0.403748,0.965632,0.193556,0.847966,0.147001,0.440367,0.529562,0.609392,0.559188,0.0189023,0.395567,0.5391,0.785869,0.680101,0.171104,0.447738,0.764062,0.626708,0.680505,0.647164,0.0139361,0.0662386,0.678988,0.143903,0.348711,0.35006,0.902831,0.605114,0.463161,0.936984,0.541381,0.0966944,0.677231,0.747985,0.711516,0.675187,0.780998,0.00175065,0.297562,0.784021,0.301407,0.966442,0.949632,0.10946,0.839579,0.617978,0.836231,0.615828,0.87873,0.828766,0.845613,0.354963,0.980313,0.241882,0.670986,0.21503,0.287782,0.740628,0.250448,0.743417,0.142989,0.331844,0.307171,0.308134,0.973582,0.160873,0.650688,0.258273,0.334018,0.0286775,0.67128,0.924412,0.903273,0.944937,0.725925,0.927992,0.484686,0.21652,0.455662,0.351819,0.593753,0.258646,0.893681,0.72721,0.58773,0.0217214,0.640476,0.478993,0.412941,0.776529,0.0400153,0.798796,0.68387,0.234471,0.943108,0.349937,0.154827,0.224343,0.363982,0.205932,0.645213,0.974615,0.228731,0.832336,0.209965,0.309946,0.397479,0.0416087,0.512949,0.856496,0.245721,0.826809,0.439038,0.0237168,0.757816,0.636972,0.635827,0.248724,0.399548,0.199064,0.0229968,0.0872749,0.118494,0.539282,0.552209,0.647924,0.863084,0.691814,0.0319057,0.313366,0.87046,0.238762,0.218938,0.0334903,0.0102164,0.147005,0.538802,0.302163,0.177548,0.670599,0.112508,0.146114,0.564804,0.45675,0.641796,0.323756,0.0273243,0.262295,0.438988,0.305468,0.0831921,0.635725,0.0139977,0.248858,0.604409,0.667977,0.638182,0.116681,0.144887,0.0637404,0.0530505,0.0399203,0.0231874,0.22498,0.907078,0.204817,0.245112,0.481062,0.0965786,0.904905,0.29241,0.24413,0.860031,0.00767577,0.432758,0.380591,0.287912,0.997116,0.0182485,0.99867,0.804134,0.77871,0.987052,0.143418,0.488902,0.998564,0.654302,0.609799,0.248083,0.894481,0.717371,0.285926,0.467593,0.515149,0.558801,0.363822,0.841668,0.410394,0.827759,0.0660772,0.759663,0.28072,0.482662,0.562379,0.598471,0.275876,0.731317,0.225451,0.0762564,0.422339,0.894868,0.850286,0.49347,0.604702,0.4082,0.0464917,0.356712,0.99602,0.279008,0.662544,0.805507,0.621429,0.353738,0.949102,0.397739,0.0319695,0.183552,0.545608,0.97381,0.469113,0.188967,0.127797,0.218708,0.757965,0.435369,0.480194,0.259562,0.90905,0.211257,0.0615922,0.815213,0.784272,0.899306,0.095332,0.520308,0.560722,0.476978,0.939438,0.359827,0.356964,0.28991,0.877111,0.738892,0.746879,0.548757,0.12489,0.356118,0.6368,0.65608,0.0732815,0.256575,0.66498,0.0484525,0.46737,0.667584,0.289941,0.390065,0.600815,0.690059,0.422789,0.255681,0.0994323,0.294906,0.924386,0.636399,0.366423,0.839995,0.34357,0.233781,0.254015,0.3381,0.296529,0.851244,0.0108738,0.0239669,0.276831,0.446982,0.132538,0.204026,0.553765,0.434995,0.416104,0.903565,0.74249,0.317893,0.829712,0.84343,0.574448,0.769047,0.713908,0.960066,0.18694,0.622487,0.62998,0.477394,0.634618,0.675482,0.209173,0.120985,0.930533,0.247811,0.19267,0.34098,0.515432,0.118802,0.124276,0.857782,0.891517,0.339051,0.423944,0.714989,0.937196,0.498609,0.473156,0.763524,0.897105,0.952571,0.259528,0.449316,0.856914,0.87987,0.52487,0.347692,0.0599189,0.745578,0.948114,0.138661,0.640126,0.585076,0.572235,0.216492,0.767638,0.095919,0.814041,0.548195,0.618636,0.961399,0.293436,0.444404,0.797706,0.323935,0.251589,0.449642,0.79983,0.839517,0.0197298,0.890074,0.716938,0.63987,0.339123,0.44817,0.332481,0.503318,0.0644348,0.0710466,0.0150471,0.552524,0.44371,0.575526,0.0616871,0.889101,0.153323,0.593436,0.504905,0.707387,0.118311,0.514706,0.434201,0.707619,0.213987,0.611826,0.469624,0.850066,0.965123,0.15063,0.970542,0.238333,0.825579,0.861661,0.475797,0.476716,0.0346195,0.927461,0.574252,0.902345,0.826273,0.355867,0.785198,0.495714,0.931886,0.972688,0.386091,0.0691218,0.316277,0.419335,0.115605,0.114092,0.270592,0.967929,0.337293,0.318433,0.17372,0.845411,0.877408,0.367301,0.355843,0.204854,0.045923,0.871461,0.775031,0.812698,0.249717,0.133438,0.383182,0.632966,0.473471,0.869652,0.750942,0.789855,0.930257,0.520541,0.86855,0.613547,0.277798,0.608302,0.788529,0.33418,0.739214,0.0981009,0.228349,0.0501403,0.086618,0.775347,0.564605,0.328015,0.76405,0.61112,0.0955064,0.756455,0.278,0.936851,0.497104,0.43708,0.484993,0.27082,0.194796,0.344119,0.0158535,0.492291,0.223244,0.65636,0.693142,0.919924,0.650596,0.504355,0.975109,0.388265,0.747069,0.767641,0.282936,0.460457,0.633718,0.728768,0.101767,0.582331,0.568641,0.729829,0.614402,0.27844,0.174344,0.423852,0.241965,0.571021,0.720097,0.389189,0.506836,0.532023,0.966057,0.821235,0.925904,0.956318,0.141741,0.659421,0.179506,0.983493,0.831917,0.826405,0.594132,0.648276,0.0361716,0.434871,0.217439,0.684854,0.918411,0.700925,0.230003,0.995953,0.271888,0.873195,0.400744,0.917196,0.372154,0.495865,0.289286,0.426326,0.762787,0.61217,0.748656,0.984334,0.227115,0.459117,0.529413,0.595855,0.912009,0.572139,0.587616,0.316751,0.19693,0.0877601,0.453906,0.534394,0.698196,0.0870627,0.175622,0.0025664,0.488963,0.985684,0.328696,0.644245,0.743346,0.346244,0.0673447,0.600969,0.832993,0.350273,0.114709,0.391914,0.815393,0.382568,0.80195,0.25735,0.0798034,0.934452,0.176599,0.939263,0.645322,0.340126,0.723141,0.599547,0.398932,0.931927,0.259276,0.832992,0.744486,0.470449,0.287595,0.326806,0.417279,0.684447,0.340577,0.42006,0.943609,0.781407,0.473219,0.39393,0.796584,0.650735,0.466939,0.405893,0.90319,0.566123,0.180801,0.579945,0.117777,0.467751,0.649119,0.304683,0.955843,0.839891,0.764473,0.600226,0.590905,0.010875,0.416914,0.31978,0.566852,0.220199,0.97167,0.771021,0.297715,0.751342,0.059374,0.694917,0.148194,0.337075,0.966329,0.465055,0.520895,0.837064,0.85157,0.144717,0.113515,0.704135,0.0888181,0.325191,0.550949,0.464755,0.250069,0.0318851,0.108706,0.468894,0.778616,0.884779,0.819346,0.0615763,0.48067,0.363491,0.081609,0.566911,0.465498,0.969898,0.380014,0.540697,0.908604,0.0162798,0.34008,0.990784,0.376666,0.388757,0.881294,0.0496731,0.0753478,0.683815,0.452379,0.329252,0.890104,0.348704,0.449099,0.218301,0.404508,0.967498,0.0105591,0.758109,0.0847459,0.957837,0.996456,0.46034,0.972147,0.994754,0.731214,0.928362,0.73433,0.505238,0.662555,0.0786113,0.0367529,0.849483,0.638423,0.719165,0.0874677,0.595524,0.422951,0.45531,0.584151,0.341069,0.45141,0.796766,0.622787,0.202399,0.00737882,0.0842454,0.293125,0.30956,0.510576,0.303397,0.338781,0.224718,0.504036,0.535423,0.592302,0.945678,0.211251,0.644034,0.0523481,0.454143,0.780268,0.230721,0.837504,0.218275,0.45792,0.595934,0.86859,0.677142,0.22429,0.152273,0.813961,0.146702,0.165519,0.200583,0.73078,0.115681,0.813054,0.813816,0.997895,0.385627,0.103224,0.187586,0.154251,0.107314,0.350611,0.260645,0.434701,0.950913,0.773138,0.351888,0.0925144,0.36069,0.545109,0.918078,0.28399,0.803505,0.269947,0.878602,0.644295,0.0224058,0.069139,0.0656521,0.430544,0.956953,0.303354,0.540828,0.749728,0.315573,0.201585,0.150805,0.860339,0.165419,0.615365,0.817179,0.119056,0.10629,0.758615,0.883668,0.853534,0.471313,0.393493,0.935073,0.536173,0.491751,0.428317,0.333602,0.312795,0.446251,0.811516,0.395883,0.451756,0.314058,0.91309,0.269608,0.918518,0.073688,0.630975,0.486817,0.0268065,0.305957,0.940216,0.020839,0.181683,0.435333,0.717779,0.0488707,0.00833327,0.594548,0.556052,0.204595,0.250727,0.778052,0.518674,0.837583,0.167525,|0.755889,0.457571,0.229851,0.409802,0.693658,0.210058,0.151962,0.593183,0.103734,0.836292,0.980067,0.685312,0.45305,0.595643,0.738829,0.910352,0.610203,0.355852,0.413288,0.905812,0.812728,0.465578,0.417235,0.779746,0.176068,0.869409,0.571586,0.908359,0.645524,0.599787,0.135028,0.68845,0.808879,0.948379,0.766066,0.0615359,0.440924,0.174004,0.114545,0.211422,0.916479,0.725661,0.903233,0.49722,0.0880393,0.639934,0.230034,0.606683,0.617218,0.407038,0.193287,0.578303,0.670768,0.450557,0.93775,0.951808,0.520309,0.227859,0.947842,0.0731399,0.232816,0.277968,0.230588,0.972902,0.647239,0.967673,0.471052,0.333797,0.300252,0.0728867,0.32176,0.461472,0.366033,0.126188,0.327814,0.0803244,0.63769,0.761008,0.0277767,0.0107316,0.980058,0.0857884,0.281705,0.955439,0.218493,0.93207,0.928088,0.644913,0.770402,0.984566,0.756929,0.474297,0.687604,0.346371,0.0591424,0.181797,0.00862086,0.970638,0.895844,0.025326,0.615464,0.0152874,0.126503,0.250833,0.272471,0.615591,0.812965,0.399524,0.308471,0.624328,0.320998,0.775786,0.352178,0.317114,0.145507,0.305861,0.68446,0.243009,0.745903,0.574802,0.0334463,0.19229,0.377793,0.960825,0.350957,0.208659,0.185429,0.484994,0.389971,0.525914,0.994052,0.736589,0.254928,0.971775,0.818233,0.278226,0.540758,0.562221,0.418116,0.364128,0.300744,0.795502,0.989859,0.664964,0.288187,0.650236,0.992465,0.502853,0.209722,0.544569,0.964629,0.155009,0.434314,0.241495,0.707533,0.347044,0.039161,0.00969774,0.268307,0.408288,0.577821,0.895102,0.114118,0.848783,0.736406,0.478153,0.866169,0.517911,0.982053,0.112363,0.994251,0.250063,0.408559,0.929823,0.637398,0.38164,0.839756,0.401866,0.0956342,0.360406,0.799162,0.712538,0.0611321,0.71712,0.0541817,0.484855,0.450938,0.15385,0.083479,0.896942,0.711928,0.741067,0.804281,0.695988,0.802372,0.265874,0.653524,0.181636,0.763033,0.0346084,0.803297,0.926998,0.56587,0.652491,0.423413,0.912626,0.746131,0.572845,0.635675,0.509037,0.448508,0.522634,0.295499,0.800899,0.348594,0.849186,0.0375808,0.213044,0.54591,0.570497,0.773278,0.675773,0.907209,0.803829,0.129049,0.998309,0.7395,0.464943,0.106105,0.343809,0.417935,0.0727084,0.60003,0.618376,0.977674,0.380358,0.890385,0.686492,0.378425,0.585748,0.305066,0.826661,0.0120702,0.187272,0.687104,0.702527,0.678516,0.357552,0.290917,0.231777,0.0623062,0.8392,0.498761,0.705834,0.784412,0.939271,0.611161,0.519329,0.00358623,0.127455,0.579508,0.890943,0.591026,0.223265,0.571086,0.580274,0.00813496,0.00576115,0.796726,0.327176,0.937723,0.524018,0.269117,0.652211,0.545225,0.563719,0.230589,0.103111,0.26852,0.296495,0.159901,0.723168,0.588524,0.924133,0.0564704,0.765213,0.700339,0.12715,0.948385,0.578246,0.748637,0.475296,0.252125,0.666355,0.711201,0.68836,0.613809,0.733387,0.938001,0.356869,0.78216,0.347463,0.970609,0.357273,0.173496,0.254732,0.877007,0.146285,0.951566,0.372037,0.825357,0.843346,0.538784,0.832588,0.989064,0.243758,0.698456,0.26624,0.127167,0.112082,0.14303,0.837502,0.114376,0.995971,0.571215,0.544407,0.326342,0.714196,0.602559,0.469578,0.504788,0.692205,0.773152,0.153564,0.198544,0.40503,0.891991,0.346535,0.121967,0.273141,0.158108,0.509122,0.775747,0.700355,0.274271,0.173202,0.716338,0.691144,0.0445467,0.0424421,0.332909,0.542817,0.042627,0.357061,0.838862,0.0605028,0.0710981,0.635798,0.807956,0.125527,0.946469,0.462811,0.431949,0.150706,0.197077,0.597041,0.520998,0.933835,0.535301,0.482608,0.645868,0.187936,0.913745,0.576583,0.207436,0.792216,0.263275,0.361557,0.84073,0.464302,0.717279,0.04752,0.716573,0.395913,0.570169,0.254448,0.730149,0.782165,0.182918,0.316246,0.872425,0.362619,0.819435,0.00848722,0.808834,0.188911,0.982188,0.0412325,0.128346,0.623152,0.931312,0.651554,0.732402,0.13667,0.264006,0.105546,0.818718,0.372492,0.852791,0.638192,0.433549,0.839521,0.54191,0.189304,0.826237,0.0720371,0.52663,0.456907,0.177853,0.936873,0.315832,0.521546,0.0196005,0.522091,0.5417,0.961568,0.0952819,0.140719,0.687648,0.930349,0.021664,0.689057,0.844161,0.683307,0.753747,0.901699,0.672569,0.234356,0.0210155,0.954263,0.492123,0.190093,0.893524,0.501558,0.910653,0.450798,0.0607587,0.321664,0.807633,0.52294,0.00962818,0.661466,0.16555,0.951692,0.933974,0.42097,0.432342,0.0381272,0.997461,0.440896,0.670948,0.009224,0.687562,0.585928,0.147671,0.0388495,0.451888,0.468151,0.55587,0.504343,0.000453353,0.99128,0.655059,0.280801,0.171848,0.762491,0.0513498,0.0682119,0.152843,0.504883,0.0868658,0.388744,0.813835,0.869505,0.975265,0.932991,0.744328,0.314368,0.040795,0.579215,0.0766744,0.154391,0.120012,0.61464,0.105281,0.750764,0.550372,0.877616,0.597563,0.501229,0.252987,0.541973,0.669431,0.928446,0.276918,0.556276,0.281964,0.298682,0.194696,0.0890491,0.915202,0.0287008,0.373601,0.961129,0.498988,0.53794,0.501249,0.0180402,0.749844,0.635342,0.0589037,0.212834,0.189393,0.803023,0.61365,0.462623,0.093925,0.0471765,0.475075,0.716544,0.511884,0.967149,0.693659,0.244764,0.473503,0.748846,0.720306,0.649955,0.560825,0.233373,0.499813,0.33458,0.0653596,0.993918,0.0966443,0.802785,0.395962,0.493355,0.0894158,0.925235,0.196048,0.341495,0.235237,0.946238,0.255203,0.0387637,0.0604988,0.647564,0.438213,0.51366,0.19795,0.0866584,0.569073,0.0961529,0.964506,0.720166,0.121012,0.649415,0.555317,0.704054,0.533687,0.139717,0.156169,0.36446,0.573136,0.140145,0.109777,0.259856,0.753818,0.934966,0.195654,0.332964,0.0370342,0.212419,0.284437,0.654821,0.72308,0.350742,0.669879,0.0747645,0.353704,0.449918,0.494336,0.100463,0.00947887,0.55554,0.140597,0.240331,0.602373,0.18624,0.702894,0.0967979,0.703761,0.492464,0.90072,0.133521,0.60812,0.435863,0.632661,0.564414,0.642469,0.525203,0.931313,0.398792,0.568449,0.190717,0.106271,0.436635,0.696635,0.0266162,0.114335,0.710323,0.25693,0.642374,0.759878,0.886311,0.874717,0.741953,0.0648106,0.598614,0.958688,0.4114,0.288256,0.818381,0.418671,0.167934,0.978499,0.0477116,0.600743,0.534633,0.646329,0.0199941,0.303434,0.0676402,0.788485,0.949513,0.0937583,0.0598712,0.859227,0.698674,0.389428,0.899241,0.270976,0.732991,0.070628,0.0131362,0.709056,0.450053,0.990182,0.763928,0.639047,0.357126,0.851061,0.763874,0.283343,0.0478962,0.102815,0.64314,0.762842,0.898427,0.336382,0.220202,0.27316,0.584354,0.146245,0.191047,0.621854,0.607505,0.104738,0.775138,0.0663904,0.221586,0.963037,0.916789,0.7336,0.14705,0.222056,0.824169,0.117383,0.852842,0.278314,0.261228,0.427704,0.580953,0.602166,0.554607,0.440944,0.627432,0.518498,0.476055,0.400816,0.455771,0.0507543,0.857496,0.864167,0.881892,0.367119,0.413232,0.649326,0.502291,0.284733,0.497016,0.445353,0.309794,0.281711,0.0502681,0.705116,0.804041,0.146814,0.0369872,0.578057,0.929484,0.958067,0.150774,0.0948954,0.625161,0.95351,0.0948938,0.211047,0.602831,0.09878,0.0283187,0.683313,0.0662774,0.575217,0.332692,0.0138169,0.878158,0.825032,0.751373,0.594924,0.15329,0.449793,0.187494,0.168726,0.825057,0.254801,0.181708,0.415397,0.874311,0.867415,0.283303,0.231646,0.90472,0.238098,0.366711,0.816062,0.598695,0.147831,0.250009,0.575668,0.128504,0.233486,0.579221,0.881004,0.363535,0.505122,0.294423,0.409938,0.226578,0.476702,0.149325,0.705492,0.45495,0.743846,0.756451,0.163725,0.93827,0.334542,0.452971,0.0935139,0.0746171,0.792383,0.417862,0.612458,0.292829,0.231227,0.541442,0.556914,0.0347275,0.251254,0.52537,0.888387,0.657308,0.064264,0.159661,0.344766,0.373464,0.41602,0.286548,0.0330868,0.385468,0.289137,0.539688,0.269138,0.703656,0.0326607,0.234018,0.657954,0.578308,0.723834,0.249009,0.767744,0.0397591,0.702975,0.36466,0.706268,0.9803,0.848267,0.7632,0.531592,0.797233,0.525814,0.7394,0.763016,0.49921,0.435542,0.757043,0.96917,0.455147,0.153773,0.226966,0.686052,0.253477,0.876237,0.507201,0.674605,0.511083,0.803039,0.852968,0.206249,0.563884,0.898499,0.424985,0.558592,0.131006,0.302408,0.542185,0.323915,0.188539,0.834597,0.602957,0.294488,0.2346,0.449701,0.989764,0.969994,0.436595,0.0574197,0.725156,0.345077,0.933022,0.679391,0.859527,0.804842,0.886351,0.442026,0.976198,0.103049,0.762297,0.274156,0.265573,0.921332,0.651644,0.39718,0.392278,0.198102,0.329952,0.461286,0.563286,0.553355,0.635639,0.768774,0.609844,0.241099,0.735319,0.943666,0.246102,0.712369,0.457341,0.453971,0.00406039,0.0995834,0.47982,0.565957,0.219636,0.299019,0.782571,0.904997,0.746984,0.288712,0.257994,0.769814,0.123158,0.0861377,0.515175,0.742386,0.488735,0.787416,0.390925,0.434557,0.486849,0.0873855,0.0510321,0.661148,0.161534,0.0476902,0.0448797,0.80185,0.471242,0.179186,0.34638,0.632549,0.580718,0.486692,0.866329,0.589788,0.824758,0.539824,0.516696,0.167144,0.0436773,0.429844,0.398516,0.741527,0.685696,0.422324,0.483211,0.917112,0.10122,0.368389,0.754201,0.783885,0.891123,0.583699,0.0427044,0.277953,0.833598,0.0805487,0.204052,0.846132,0.966961,0.239005,0.0951903,0.361384,0.811689,0.367093,0.580677,0.434813,0.0973167,0.500091,0.502178,0.665065,0.569822,0.47783,0.316583,0.191075,0.278198,0.357282,0.370196,0.246605,0.354363,0.380065,0.0124449,0.00323105,0.562873,0.0670522,0.70381,0.804917,0.615191,0.230615,0.28604,0.407734,0.820484,0.686853,0.350223,0.445561,0.954241,0.947491,0.00875252,0.596668,0.183057,0.640536,0.0249185,0.73007,0.175844,0.618104,0.770303,0.123855,0.733522,|0.457175,0.363394,0.5122,0.0634723,0.425167,0.305166,0.0430433,0.397938,0.637109,0.65832,0.252794,0.796344,0.112375,0.491391,0.519645,0.659368,0.235273,0.80445,0.846081,0.190548,0.949367,0.461615,0.253177,0.398099,0.367401,0.97216,0.847743,0.185157,0.999874,0.683618,0.518481,0.612363,0.708551,0.857398,0.267752,0.963069,0.522037,0.129027,0.235486,0.136332,0.765017,0.614631,0.402226,0.417148,0.258773,0.525867,0.0118908,0.448788,0.226479,0.682703,0.433613,0.168677,0.710643,0.111407,0.00722814,0.531472,0.761616,0.243555,0.51025,0.00322586,0.568729,0.686814,0.328494,0.891416,0.981573,0.167474,0.687259,0.448453,0.82529,0.666886,0.742983,0.315164,0.346853,0.0394439,0.772094,0.844226,0.739776,0.29519,0.479135,0.807813,0.367761,0.199276,0.649058,0.5765,0.759326,0.738372,0.735149,0.587859,0.920058,0.275074,0.999224,0.696717,0.225389,0.866977,0.13384,0.132767,0.41277,0.407906,0.529226,0.572475,0.00178665,0.967423,0.146789,0.619883,0.54484,0.230469,0.466762,0.946308,0.532284,0.943999,0.392181,0.294884,0.287198,0.380681,0.371356,0.362808,0.171285,0.480149,0.549296,0.0635843,0.685451,0.990635,0.39977,0.472986,0.255791,0.388836,0.112243,0.955575,0.239395,0.880315,0.524665,0.150399,0.0032171,0.228035,0.454128,0.33249,0.327343,0.239837,0.564257,0.482306,0.21014,0.265551,0.125166,0.744518,0.812171,0.351839,0.951447,0.985703,0.513904,0.642918,0.0712911,0.635926,0.568626,0.208319,0.369762,0.467556,0.13124,0.443409,0.295462,0.962806,0.820193,0.447503,0.638469,0.427872,0.414894,0.532586,0.568965,0.47639,0.231997,0.0209839,0.119321,0.700287,0.425898,0.664986,0.183345,0.210381,0.359143,0.760013,0.736609,0.668634,0.144939,0.181311,0.0126243,0.204827,0.720929,0.306384,0.139751,0.114065,0.698535,0.846147,0.387109,0.934001,0.203752,0.322589,0.808881,0.737662,0.48382,0.257102,0.997295,0.0445832,0.758147,0.143896,0.846399,0.143917,0.5499,0.224303,0.548156,0.0147036,0.779542,0.687297,0.227055,0.532993,0.364447,0.470997,0.883029,0.114414,0.518134,0.0387686,0.831651,0.990704,0.506937,0.910691,0.0114819,0.938458,0.415371,0.150627,0.455015,0.702782,0.687575,0.429687,0.593074,0.480978,0.923038,0.906627,0.772184,0.591326,0.561897,0.0568625,0.317176,0.921991,0.47419,0.0867898,0.920867,0.66925,0.874974,0.624181,0.238918,0.652928,0.201437,0.808605,0.649969,0.736389,0.346471,0.922602,0.0457919,0.176087,0.945682,0.729521,0.925517,0.899297,0.828675,0.180098,0.0895913,0.748587,0.0914413,0.684431,0.000545561,0.113349,0.434729,0.525674,0.0336586,0.353793,0.290309,0.743213,0.140232,0.751629,0.245911,0.967968,0.00205177,0.828269,0.57216,0.99801,0.720138,0.320249,0.185637,0.0874292,0.722529,0.679384,0.577304,0.0467787,0.247374,0.0553599,0.0630739,0.143609,0.705651,0.313595,0.986091,0.536451,0.181496,0.494277,0.0864226,0.70251,0.0942308,0.390534,0.755529,0.267462,0.819664,0.130055,0.299714,0.785509,0.0480677,0.0539803,0.833426,0.423546,0.271398,0.723347,0.715513,0.548073,0.479326,0.66266,0.956641,0.341426,0.148492,0.673688,0.290917,0.689741,0.727395,0.40805,0.0836948,0.122188,0.738646,0.171907,0.300221,0.718102,0.44781,0.661182,0.279523,0.537008,0.435811,0.322559,0.583297,0.882972,0.000571847,0.27717,0.560978,0.253868,0.620087,0.118756,0.37316,0.198608,0.788802,0.463131,0.736777,0.431973,0.443733,0.884774,0.0851912,0.122293,0.781248,0.85301,0.0294492,0.784072,0.412301,0.228921,0.266125,0.0802917,0.0196293,0.534846,0.127668,0.140002,0.438038,0.150555,0.302918,0.289021,0.315101,0.405019,0.873427,0.528989,0.770438,0.481309,0.958832,0.938434,0.234092,0.994045,0.582192,0.603961,0.70281,0.25344,0.202831,0.668523,0.742762,0.451441,0.973224,0.206575,0.342599,0.767788,0.073442,0.604988,0.21238,0.764332,0.470469,0.552119,0.364718,0.224123,0.201121,0.372448,0.827995,0.607153,0.797917,0.0972169,0.350809,0.915848,0.823877,0.969668,0.0420337,0.488524,0.530861,0.226153,0.662207,0.381372,0.538596,0.230697,0.703983,0.87,0.0706848,0.332685,0.113994,0.631725,0.319594,0.976987,0.68116,0.764968,0.664685,0.182112,0.45737,0.949921,0.296123,0.259989,0.794141,0.644957,0.83373,0.0561116,0.691951,0.826042,0.200694,0.150184,0.951852,0.855507,0.0528158,0.870428,0.631344,0.80714,0.948271,0.160371,0.500095,0.694358,0.686973,0.657532,0.822882,0.0775458,0.788063,0.722234,0.349977,0.552471,0.558376,0.175927,0.0672492,0.594089,0.644524,0.108758,0.629089,0.591458,0.518618,0.279657,0.163044,0.521914,0.0165356,0.0866816,0.372457,0.437839,0.123496,0.435215,0.0359215,0.336447,0.632458,0.0463172,0.218584,0.920454,0.242417,0.488417,0.875952,0.535969,0.690415,0.633685,0.662476,0.327583,0.413213,0.963639,0.602638,0.139717,0.800374,0.410069,0.662648,0.759681,0.556796,0.506525,0.674469,0.703845,0.240215,0.0392006,0.0534542,0.918463,0.0894618,0.797452,0.00287396,0.716061,0.805924,0.618243,0.88096,0.194897,0.376887,0.368222,0.0268571,0.888599,0.60725,0.932497,0.675021,0.1373,0.967499,0.439559,0.955879,0.269536,0.76132,0.795476,0.796562,0.828513,0.331819,0.531882,0.340627,0.890026,0.880056,0.518159,0.762218,0.159324,0.776906,0.739591,0.702282,0.890152,0.40526,0.530325,0.232948,0.295442,0.72486,0.311577,0.112535,0.284604,0.373821,0.909407,0.0145958,0.270062,0.791122,0.49561,0.000570476,0.95539,0.79259,0.495391,0.649784,0.909064,0.0712613,0.83901,0.781246,0.259799,0.993815,0.495543,0.464059,0.0386901,0.488791,0.382401,0.550165,0.725741,0.852581,0.670685,0.0489211,0.915391,0.0341927,0.472459,0.969251,0.147852,0.869447,0.585614,0.705857,0.937917,0.451043,0.549938,0.725007,0.327704,0.396536,0.146218,0.550362,0.395055,0.571481,0.396839,0.613142,0.161751,0.0778386,0.53268,0.980259,0.707162,0.595749,0.763354,0.103994,0.657807,0.151281,0.257999,0.400857,0.43059,0.803055,0.502914,0.0682817,0.296225,0.517996,0.963269,0.47783,0.0573577,0.461038,0.808139,0.51422,0.722536,0.135322,0.353663,0.576156,0.787749,0.0342321,0.707024,0.653215,0.0554917,0.538536,0.702775,0.789154,0.245164,0.198592,0.442767,0.835853,0.166528,0.367134,0.248553,0.523242,0.388317,0.315115,0.745516,0.378747,0.94954,0.282584,0.196268,0.00956732,0.999196,0.584686,0.346013,0.0345506,0.432067,0.662131,0.937746,0.771903,0.27762,0.91663,0.950187,0.684055,0.106734,0.888069,0.0313925,0.803655,0.52146,0.219401,0.481882,0.389082,0.396883,0.193242,0.0675551,0.368562,0.363767,0.270468,0.698101,0.64776,0.42844,0.308855,0.677291,0.799915,0.161232,0.198429,0.0123466,0.750817,0.805893,0.0299481,0.712246,0.403998,0.818837,0.872634,0.200024,0.40938,0.295683,0.03856,0.0411902,0.0115896,0.413329,0.738489,0.348661,0.912152,0.156446,0.747713,0.0762884,0.206105,0.695932,0.269881,0.48639,0.257601,0.686285,0.85185,0.94011,0.762191,0.347373,0.402907,0.460783,0.798554,0.71637,0.0160928,0.377127,0.889457,0.915119,0.418532,0.00997263,0.665087,0.2413,0.991378,0.959561,0.508557,0.999296,0.822291,0.11119,0.822758,0.594356,0.742347,0.028271,0.208513,0.572549,0.385952,0.846703,0.588865,0.814105,0.413904,0.817972,0.05981,0.197127,0.255492,0.0289542,0.512216,0.910521,0.568739,0.814957,0.506263,0.950854,0.394115,0.561668,0.941742,0.617008,0.993626,0.821334,0.334662,0.722028,0.142057,0.140413,0.157935,0.633921,0.854943,0.275701,0.468903,0.896799,0.952885,0.915312,0.521027,0.419071,0.670049,0.361313,0.700488,0.338733,0.475115,0.840817,0.369459,0.968794,0.676851,0.0619103,0.251751,0.0249343,0.899938,0.887803,0.0830477,0.0227351,0.54282,0.641728,0.367829,0.498571,0.977308,0.459298,0.345408,0.989951,0.146569,0.153952,0.129899,0.371751,0.554993,0.78555,0.617712,0.70866,0.269947,0.388284,0.853586,0.138988,0.478292,0.510458,0.645846,0.593076,0.231356,0.178275,0.897967,0.908146,0.515532,0.397526,0.813159,0.269811,0.570953,0.947213,0.0683005,0.0181571,0.565103,0.600413,0.0141992,0.168507,0.38264,0.28958,0.0478564,0.995647,0.782342,0.101659,0.0406393,0.454868,0.743521,0.70606,0.825306,0.716663,0.748735,0.186223,0.144048,0.192804,0.905629,0.624696,0.624667,0.810163,0.0358942,0.800118,0.0454947,0.236165,0.339778,0.502531,0.0776804,0.389527,0.570754,0.528912,0.375831,0.799345,0.980121,0.305729,0.621394,0.891833,0.199361,0.153434,0.189919,0.937193,0.105953,0.157771,0.362322,0.42013,0.959698,0.248682,0.604578,0.286047,0.378071,0.365574,0.0404986,0.76324,0.934688,0.68633,0.792559,0.626864,0.0874955,0.157846,0.78349,0.599726,0.167898,0.0623305,0.0765916,0.362279,0.794638,0.629553,0.00467545,0.0228555,0.474705,0.844971,0.681977,0.624077,0.652003,0.431008,0.31413,0.130837,0.677406,0.874179,0.789871,0.416795,0.652768,0.992635,0.535114,0.260468,0.227065,0.0771294,0.273794,0.334218,0.603565,0.45917,0.406698,0.694068,0.0304746,0.38831,0.155317,0.79998,0.493269,0.837429,0.0274833,0.0264472,0.855003,0.797879,0.285249,0.813632,0.872076,0.908683,0.0515312,0.631566,0.309263,0.63753,0.0453312,0.195493,0.389873,0.392682,0.714843,0.909567,0.608407,0.286063,0.130352,0.238106,0.599041,0.161387,0.165515,0.913081,0.661263,0.627953,0.327281,0.750606,0.118929,0.341019,0.615974,0.928016,0.723093,0.221852,0.610295,0.0138059,0.590646,0.481433,0.588884,0.387684,0.799399,0.974495,0.905949,0.18982,0.741917,0.996097,0.928359,0.846401,0.817977,0.95891,0.413224,0.79784,0.895297,0.124505,0.0569494,0.995008,0.308884,0.186332,0.622039,0.290089,0.877939,0.839507,0.815784,0.0744085,|0.796796,0.546625,0.178005,0.24349,0.256671,0.891444,0.808467,0.250134,0.873507,0.191991,0.975588,0.514152,0.665693,0.471161,0.913031,0.653944,0.0724594,0.178726,0.498735,0.210837,0.576503,0.75108,0.358783,0.714941,0.916942,0.939652,0.741182,0.100859,0.00669044,0.0399739,0.881145,0.172991,0.92861,0.323383,0.621385,0.6337,0.177098,0.0379357,0.434334,0.869463,0.762237,0.699486,0.477422,0.41419,0.639359,0.822182,0.738045,0.329506,0.463173,0.0408118,0.351904,0.568277,0.943259,0.214442,0.935042,0.315059,0.248948,0.870834,0.798384,0.997117,0.163128,0.390102,0.371866,0.160465,0.964845,0.670721,0.316306,0.322694,0.826576,0.963645,0.420127,0.0307913,0.310823,0.604812,0.214147,0.228229,0.759444,0.880951,0.0145673,0.226149,0.763575,0.844024,0.0168999,0.841616,0.528354,0.462936,0.535647,0.781238,0.713724,0.26596,0.687237,0.21926,0.177691,0.378983,0.72533,0.241665,0.0393337,0.759606,0.889538,0.936286,0.258728,0.476944,0.910482,0.178631,0.529116,0.350652,0.512432,0.754194,0.534135,0.514044,0.730632,0.932358,0.916874,0.0929656,0.323504,0.625061,0.526777,0.256072,0.0889742,0.961034,0.180108,0.635842,0.0537784,0.689825,0.959427,0.778609,0.521249,0.898843,0.738345,0.974689,0.193445,0.220004,0.90252,0.374985,0.766082,0.41506,0.699171,0.874816,0.971163,0.12392,0.524521,0.687819,0.667064,0.533312,0.689033,0.923433,0.437802,0.537315,0.367673,0.956289,0.709756,0.993391,0.0235382,0.224321,0.382448,0.652716,0.931097,0.547747,0.506931,0.762529,0.52508,0.615523,0.548844,0.642223,0.278757,0.949219,0.670708,0.168419,0.329398,0.0826284,0.656018,0.299053,0.651661,0.133303,0.257936,0.0684396,0.952519,0.164378,0.427087,0.385561,0.000292182,0.29613,0.743823,0.501653,0.123069,0.254741,0.0543729,0.679473,0.611037,0.544266,0.910533,0.463532,0.0714666,0.510594,0.253246,0.747792,0.337716,0.610027,0.984049,0.681456,0.703787,0.555023,0.715218,0.0195324,0.426949,0.778714,0.62595,0.103183,0.223195,0.901578,0.214491,0.517402,0.313246,0.259193,0.148225,0.688282,0.639043,0.841918,0.20094,0.190965,0.21152,0.562804,0.95804,0.0867434,0.313653,0.425958,0.368014,0.161503,0.0182084,0.479741,0.150908,0.845162,0.470786,0.457734,0.596314,0.272114,0.424366,0.805127,0.227302,0.626141,0.518526,0.784891,0.025476,0.0246483,0.582864,0.261737,0.335487,0.0885987,0.949519,0.942699,0.816072,0.772679,0.852517,0.850118,0.992665,0.939814,0.149369,0.917898,0.578596,0.932354,0.320745,0.189043,0.459081,0.276439,0.823018,0.919057,0.92492,0.621845,0.817012,0.36193,0.146757,0.553301,0.126725,0.101508,0.966522,0.00962245,0.844284,0.301515,0.773854,0.247485,0.567608,0.608184,0.211279,0.277319,0.292603,0.692943,0.171165,0.881553,0.626222,0.762689,0.545023,0.149136,0.671277,0.987955,0.841704,0.271692,0.435071,0.52923,0.866048,0.814549,0.536274,0.436329,0.782659,0.106395,0.109442,0.354406,0.433572,0.256372,0.408206,0.119791,0.183394,0.932898,0.877534,0.674609,0.845554,0.322686,0.537636,0.534365,0.699725,0.120715,0.481973,0.184208,0.310566,0.438202,0.525063,0.572355,0.810657,0.701283,0.767372,0.357055,0.353412,0.354078,0.965281,0.757405,0.205592,0.216641,0.69205,0.259386,0.321541,0.563131,0.883309,0.37657,0.63311,0.513864,0.26111,0.0914445,0.985528,0.46751,0.164164,0.470616,0.95979,0.875502,0.216761,0.661746,0.682163,0.276504,0.661192,0.0846974,0.219648,0.347802,0.0270884,0.335691,0.976187,0.682908,0.420292,0.717162,0.166444,0.52602,0.713641,0.448744,0.883381,0.714544,0.679825,0.0755211,0.595169,0.749478,0.0313004,0.756392,0.0509781,0.564132,0.245247,0.483601,0.511371,0.99557,0.702822,0.596441,0.872212,0.130975,0.874513,0.777448,0.595343,0.541585,0.900909,0.17909,0.67065,0.231639,0.709834,0.916118,0.954248,0.663654,0.648809,0.607126,0.661097,0.701627,0.532452,0.699899,0.90397,0.732003,0.808817,0.697404,0.144066,0.485751,0.940528,0.993808,0.700615,0.215619,0.119423,0.256159,0.698127,0.0391052,0.294103,0.917146,0.62715,0.928946,0.755946,0.213797,0.823522,0.784709,0.368431,0.392882,0.600864,0.578545,0.444703,0.570799,0.28419,0.0468116,0.94818,0.418229,0.399556,0.334682,0.355329,0.0807741,0.904539,0.864777,0.837946,0.939085,0.887635,0.969145,0.0171162,0.388873,0.85312,0.14481,0.208084,0.327668,0.488063,0.859712,0.812269,0.689942,0.976595,0.548594,0.707539,0.72433,0.290327,0.372559,0.521276,0.0515431,0.649224,0.997409,0.252797,0.454207,0.192949,0.600061,0.594424,0.445861,0.632936,0.937168,0.099739,0.737701,0.750622,0.0950368,0.22941,0.859557,0.842852,0.263016,0.242082,0.14417,0.319578,0.554547,0.522375,0.971108,0.833547,0.391446,0.650275,0.192063,0.547993,0.26905,0.992296,0.0467703,0.289174,0.0826734,0.250886,0.0583774,0.857814,0.565488,0.954717,0.174495,0.246067,0.142528,0.510401,0.284077,0.647332,0.480625,0.356713,0.615514,0.48153,0.857224,0.776476,0.477834,0.510508,0.798444,0.299554,0.191487,0.495078,0.585313,0.26246,0.828072,0.0422633,0.800984,0.0742986,0.247818,0.819726,0.564145,0.134694,0.965247,0.206627,0.699061,0.70432,0.770589,0.630606,0.81297,0.606185,0.16011,0.62574,0.300094,0.921925,0.967315,0.201987,0.104104,0.175435,0.437134,0.0539387,0.268468,0.249975,0.481773,0.511596,0.0405926,0.438721,0.237326,0.904642,0.580975,0.53563,0.104377,0.247441,0.482854,0.554567,0.206597,0.680755,0.622031,0.732459,0.148632,0.272392,0.75413,0.729092,0.593565,0.639774,0.157042,0.112493,0.596025,0.146734,0.368081,0.329025,0.205634,0.120968,0.498211,0.528572,0.928974,0.188247,0.707165,0.333316,0.317694,0.433284,0.485857,0.407583,0.382939,0.901734,0.56208,0.093559,0.468664,0.823036,0.315408,0.925513,0.0403855,0.208227,0.0228492,0.282295,0.0112204,0.658356,8.37445e-05,0.196588,0.39396,0.542904,0.433686,0.879145,0.33298,0.499511,0.399132,0.00789529,0.49587,0.0703139,0.20663,0.117919,0.141579,0.046095,0.662726,0.668982,0.282915,0.326659,0.364765,0.254876,0.685837,0.902223,0.278208,0.824423,0.997012,0.654309,0.217815,0.592633,0.253908,0.0194998,0.255797,0.115345,0.81289,0.554675,0.66449,0.701882,0.136089,0.476945,0.593986,0.82848,0.335567,0.377748,0.691976,0.924248,0.395272,0.738707,0.0293089,0.533598,0.429435,0.624969,0.642824,0.138023,0.319494,0.351565,0.523401,0.803174,0.821804,0.0492069,0.459808,0.970486,0.296922,0.35917,0.570021,0.653587,0.59326,0.58116,0.779887,0.0337839,0.0599238,0.466054,0.414016,0.388355,0.650411,0.0409489,0.0690507,0.220822,0.785995,0.913681,0.141304,0.811726,0.843574,0.81954,0.505407,0.704131,0.0271956,0.351608,0.0365006,0.42651,0.0894743,0.738006,0.672008,0.259375,0.136447,0.939546,0.362653,0.103406,0.956437,0.246413,0.68082,0.473125,0.45673,0.58818,0.0197084,0.223026,0.144307,0.324726,0.0510257,0.664862,0.997328,0.124885,0.663465,0.0843312,0.541634,0.73518,0.052119,0.674643,0.649862,0.176365,0.348421,0.0724552,0.533645,0.958373,0.647877,0.345641,0.685062,0.351897,0.624255,0.221389,0.182697,0.695135,0.832839,0.64669,0.45358,0.62493,0.831991,0.949183,0.813113,0.813249,0.714074,0.99636,0.00120634,0.297127,0.773092,0.675385,0.684238,0.0216182,0.105731,0.53922,0.896868,0.217729,0.146897,0.921065,0.978749,0.317995,0.25202,0.108017,0.0196806,0.339428,0.661256,0.754459,0.123276,0.363378,0.869709,0.940935,0.478624,0.551717,0.364662,0.498872,0.72258,0.8379,0.665854,0.812777,0.357468,0.871573,0.174763,0.442447,0.656997,0.888933,0.580374,0.150433,0.761829,0.892028,0.951362,0.0643179,0.287694,0.698085,0.179177,0.175672,0.820096,0.174548,0.591649,0.136121,0.273103,0.773272,0.596637,0.616815,0.7256,0.607259,0.743825,0.326917,0.261017,0.27315,0.777487,0.899161,0.216552,0.0371956,0.382898,0.0585645,0.691856,0.327392,0.476552,0.643917,0.595962,0.550569,0.893832,0.512566,0.22933,0.135835,0.815002,0.00684017,0.00605297,0.897334,0.32838,0.488806,0.384813,0.799574,0.901949,0.017186,0.5268,0.490259,0.0405695,0.310899,0.996218,0.732654,0.0573909,0.186638,0.796129,0.987138,0.249453,0.270129,0.215268,0.213867,0.110093,0.948361,0.723276,0.713356,0.413373,0.10135,0.277494,0.546801,0.483476,0.312962,0.22872,0.633736,0.470313,0.418305,0.288608,0.00846672,0.682749,0.716041,0.0640414,0.0429913,0.328,0.106739,0.845929,0.176151,0.70917,0.194866,0.363978,0.535376,0.789908,0.775842,0.0227777,0.080264,0.579896,0.210118,0.854833,0.515418,0.4212,0.971128,0.811195,0.741206,0.45156,0.643961,0.0851235,0.680624,0.467225,0.0143528,0.00924695,0.891044,0.884347,0.984913,0.164687,0.833643,0.549189,0.331691,0.725437,0.281231,0.86606,0.391772,0.705441,0.794082,0.617889,0.587852,0.297834,0.243007,0.773889,0.795023,0.434295,0.0187798,0.807652,0.969546,0.408304,0.516815,0.938007,0.327366,0.750474,0.95136,0.43011,0.847507,0.492912,0.885813,0.802685,0.114804,0.00694847,0.903838,0.096392,0.775849,0.907087,0.0945849,0.524033,0.60525,0.677154,0.787963,0.495802,0.689456,0.694666,0.527294,0.0587916,0.742572,0.609053,0.382271,0.0721214,0.100825,0.180343,0.904705,0.806871,0.0990313,0.411083,0.657155,0.00454295,0.981068,0.816912,0.968871,0.170565,0.819109,0.736481,0.0712374,0.48129,0.365776,0.390128,0.0114925,0.336652,0.512439,0.486039,0.280773,0.0770261,0.74725,0.115955,0.867705,0.344583,0.26869,0.559779,0.265251,0.698921,0.779875,0.369632,0.136288,0.589204,0.190955,0.213552,0.0028128,0.190366,0.248848,0.431549,0.070693,0.0561689,0.852859,0.348905,0.688554,0.672717,|0.872905,0.631737,0.442129,0.225445,0.19402,0.0655524,0.155936,0.365518,0.131994,0.969404,0.119886,0.614742,0.496931,0.0070591,0.44751,0.416732,0.0613831,0.16185,0.546313,0.510166,0.556285,0.362031,0.416445,0.0871023,0.33013,0.413073,0.668148,0.832141,0.41925,0.288585,0.89672,0.110556,0.366868,0.795666,0.0873938,0.242342,0.386992,0.945099,0.942574,0.0469806,0.170645,0.372464,0.308228,0.211785,0.830828,0.081198,0.341015,0.790272,0.476107,0.770451,0.576822,0.498141,0.56789,0.849408,0.0383738,0.657549,0.285995,0.757949,0.727599,0.159929,0.154773,0.624185,0.165961,0.544311,0.839799,0.0163383,0.657533,0.445811,0.775469,0.0314789,0.802364,0.227217,0.182171,0.396477,0.9782,0.827249,0.559785,0.251197,0.399343,0.283747,0.299949,0.875185,0.431608,0.150718,0.504807,0.18347,0.370331,0.251438,0.589363,0.473443,0.259217,0.82938,0.98887,0.685186,0.016253,0.583391,0.960875,0.20307,0.44478,0.251891,0.891496,0.972679,0.541953,0.432917,0.137866,0.340591,0.0565944,0.204495,0.500105,0.0532469,0.942455,0.452907,0.994943,0.28888,0.418199,0.685937,0.481271,0.0764559,0.731316,0.440116,0.220458,0.991894,0.0212243,0.545081,0.994028,0.142583,0.71798,0.383958,0.0645667,0.625978,0.929299,0.649991,0.327218,0.771667,0.761832,0.888978,0.520459,0.669231,0.931311,0.711185,0.688816,0.79418,0.950469,0.744274,0.408719,0.955449,0.639475,0.969972,0.96626,0.0999109,0.571123,0.770111,0.291024,0.861556,0.608325,0.809914,0.609834,0.258909,0.365386,0.266462,0.458528,0.700694,0.682027,0.541079,0.342883,0.730687,0.598011,0.213264,0.325972,0.503418,0.505884,0.47553,0.284407,0.62905,0.717292,0.835062,0.58352,0.821893,0.643732,0.45821,0.44532,0.629407,0.185708,0.139139,0.245866,0.0983602,0.231745,0.329796,0.763734,0.532622,0.855943,0.0722048,0.312872,0.811852,0.249134,0.810146,0.729086,0.374875,0.902051,0.453579,0.109061,0.128758,0.537041,0.673592,0.344927,0.346601,0.351126,0.801954,0.0113238,0.887143,0.905999,0.51968,0.933409,0.629854,0.155503,0.118983,0.24139,0.737489,0.562961,0.816301,0.143551,0.708611,0.637886,0.412252,0.708029,0.85065,0.48311,0.982398,0.515578,0.132326,0.214045,0.593733,0.0380942,0.630583,0.818862,0.814457,0.956456,0.632263,0.987913,0.100042,0.0301321,0.343566,0.0911208,0.621358,0.479829,0.507716,0.132155,0.0202214,0.599153,0.922555,0.286239,0.00164664,0.887619,0.679839,0.583611,0.54495,0.848371,0.329183,0.240787,0.510774,0.440753,0.032846,0.220721,0.0640345,0.245897,0.760701,0.736289,0.542879,0.912015,0.510399,0.656428,0.856248,0.58914,0.720359,0.852027,0.520429,0.940567,0.250881,0.732206,0.300226,0.591373,0.822744,0.292774,0.48827,0.622166,0.826815,0.582105,0.28437,0.190568,0.764582,0.868519,0.099786,0.611614,0.660218,0.474693,0.446111,0.0564656,0.997578,0.495491,0.796068,0.557084,0.62957,0.405505,0.0920489,0.750051,0.43952,0.849164,0.698359,0.128811,0.986647,0.386434,0.794372,0.388214,0.0300361,0.647299,0.623602,0.863525,0.486792,0.0241658,0.82699,0.704476,0.287456,0.38703,0.088833,0.264164,0.315519,0.547262,0.655361,0.141094,0.249396,0.85839,0.989056,0.777524,0.0530056,0.987612,0.669027,0.400582,0.800716,0.87835,0.548759,0.137413,0.383142,0.184026,0.776169,0.451779,0.306564,0.804452,0.978962,0.35579,0.500144,0.110026,0.0248261,0.0671985,0.0698746,0.646147,0.483563,0.311558,0.153363,0.973209,0.302715,0.912677,0.0586346,0.294048,0.909478,0.455743,0.884824,0.0418561,0.491598,0.570117,0.197261,0.0795783,0.906021,0.9333,0.428181,0.182279,0.738298,0.325281,0.729339,0.915079,0.675927,0.737987,0.284002,0.859277,0.860363,0.535767,0.395089,0.258067,0.922763,0.488012,0.181318,0.980167,0.802816,0.210589,0.0519247,0.538532,0.740056,0.681796,0.507016,0.0965453,0.121169,0.0562098,0.0469955,0.565947,0.349899,0.925223,0.735504,0.449557,0.913491,0.550978,0.0459118,0.93548,0.444169,0.0997459,0.420119,0.523659,0.073149,0.129249,0.0420836,0.425322,0.612966,0.205754,0.0985264,0.654474,0.770448,0.844205,0.0152788,0.469842,0.258987,0.992635,0.651955,0.978647,0.0043503,0.870743,0.514693,0.0689806,0.679246,0.482235,0.779076,0.24071,0.664812,0.837369,0.807081,0.0136296,0.258729,0.305242,0.846363,0.407953,0.187212,0.0716986,0.518462,0.852662,0.769526,0.280399,0.536247,0.287356,0.309446,0.0512183,0.945681,0.741474,0.00307435,0.953236,0.00190604,0.0192189,0.337722,0.745852,0.80146,0.967202,0.197949,0.884404,0.855954,0.795398,0.780416,0.286268,0.226561,0.52158,0.639943,0.293015,0.417193,0.761893,0.557276,0.716435,0.102931,0.304702,0.68016,0.952912,0.036862,0.402095,0.218201,0.916738,0.703474,0.216329,0.815375,0.713255,0.758956,0.154525,0.413379,0.624646,0.313648,0.908752,0.664307,0.357759,0.0276816,0.0091989,0.487822,0.59548,0.640691,0.650233,0.858145,0.613094,0.863178,0.170809,0.47051,0.696981,0.113016,0.00493509,0.066577,0.833438,0.212884,0.821802,0.667311,0.726816,0.197154,0.659692,0.853855,0.255335,0.315537,0.406778,0.431363,0.72367,0.559354,0.69307,0.0330385,0.304858,0.614177,0.707458,0.709881,0.0325432,0.306386,0.776953,0.749052,0.342922,0.651503,0.805942,0.68744,0.838201,0.713346,0.826929,0.185645,0.757948,0.340867,0.170998,0.330712,0.412896,0.265361,0.192052,0.335624,0.70146,0.172979,0.280132,0.626364,0.454091,0.0873372,0.577061,0.00419223,0.867047,0.169109,0.169581,0.26555,0.865153,0.581014,0.785237,0.955334,0.825858,0.852036,0.457034,0.339883,0.471311,0.89345,0.0897775,0.209131,0.243467,0.076331,0.181035,0.705313,0.233545,0.170141,0.627143,0.242506,0.34049,0.715844,0.272714,0.693198,0.507913,0.0290233,0.530974,0.837721,0.9427,0.369256,0.552117,0.364952,0.347578,0.982465,0.173843,0.773272,0.823397,0.252154,0.0417722,0.415417,0.668178,0.538534,0.512477,0.683305,0.930272,0.481053,0.674951,0.744071,0.494919,0.970286,0.505871,0.82404,0.752383,0.944959,0.342696,0.483451,0.558415,0.274443,0.98134,0.338317,0.221031,0.63164,0.135823,0.967422,0.178848,0.397397,0.350508,0.841449,0.255226,0.262917,0.546649,0.25675,0.122791,0.895325,0.389728,0.4469,0.19344,0.186869,0.336366,0.219293,0.924083,0.560558,0.183553,0.361254,0.481906,0.776735,0.0194011,0.262565,0.545027,0.235367,0.549969,0.542318,0.982528,0.685444,0.582816,0.0170791,0.801109,0.491879,0.786241,0.918451,0.831139,0.284344,0.218603,0.354462,0.322543,0.802288,0.50145,0.131356,0.00895774,0.973168,0.263328,0.111961,0.583309,0.309608,0.929102,0.359577,0.0858521,0.79547,0.231093,0.994749,0.0423847,0.290726,0.664031,0.537193,0.89654,0.0341942,0.544358,0.267006,0.191136,0.507988,0.851381,0.0970255,0.293814,0.912004,0.780202,0.988363,0.630386,0.107795,0.596557,0.52156,0.117365,0.541939,0.601329,0.690133,0.421941,0.560873,0.945942,0.808082,0.7437,0.123432,0.831797,0.293811,0.584549,0.228449,0.720676,0.146707,0.768308,0.665984,0.0214635,0.441891,0.901994,0.0396242,0.84867,0.445863,0.466474,0.728581,0.0597249,0.209494,0.284889,0.202398,0.516479,0.0952834,0.634082,0.982132,0.316986,0.0267523,0.134462,0.543998,0.973335,0.540284,0.218094,0.281335,0.523934,0.605085,0.181487,0.707894,0.578534,0.950757,0.348268,0.324207,0.857197,0.817769,0.754894,0.125471,0.393337,0.378042,0.798751,0.228417,0.326878,0.228388,0.876367,0.381133,0.000248611,0.833717,0.683214,0.155528,0.235382,0.315687,0.215418,0.167209,0.947675,0.363751,0.702706,0.3769,0.910729,0.269719,0.222495,0.244701,0.886626,0.29484,0.788686,0.650589,0.250318,0.905218,0.25594,0.240061,0.594471,0.797243,0.674145,0.851603,0.635661,0.778328,0.265125,0.0845945,0.39074,0.28462,0.135349,0.223695,0.935394,0.680846,0.554381,0.962188,0.848169,0.936743,0.912158,0.350138,0.349967,0.437826,0.116525,0.794842,0.357947,0.605659,0.471818,0.388691,0.311113,0.947558,0.0753667,0.0278423,0.645121,0.701306,0.756226,0.0882683,0.78989,0.524803,0.836325,0.394723,0.356989,0.042074,0.191615,0.168582,0.763215,0.393402,0.794139,0.105577,0.762356,0.800965,0.00523746,0.961085,0.562584,0.128109,0.0966325,0.66497,0.0580341,0.693726,0.0797966,0.336454,0.109733,0.955099,0.180415,0.849665,0.17917,0.666127,0.580047,0.00803077,0.500857,0.745315,0.615761,0.512741,0.157514,0.885501,0.0811685,0.188577,0.0435912,0.039714,0.0348898,0.603465,0.430496,0.286853,0.404222,0.292945,0.392576,0.830236,0.703949,0.490742,0.587839,0.845185,0.164915,0.435263,0.536233,0.644494,0.268855,0.240914,0.815603,0.607333,0.97985,0.658956,0.346928,0.694192,0.158064,0.904641,0.0263213,0.390625,0.377083,0.877349,0.158204,0.951089,0.504835,0.392436,0.720247,0.24314,0.463758,0.841152,0.141419,0.665802,0.81282,0.398174,0.268516,0.695412,0.593857,0.968584,0.223671,0.979645,0.460076,0.405821,0.577242,0.61513,0.353828,0.19844,0.945881,0.520564,0.0301983,0.466936,0.55043,0.238349,0.0677034,0.262624,0.291575,0.356695,0.493897,0.541185,0.432455,0.326165,0.717454,0.9236,0.798244,0.934982,0.440882,0.0835359,0.285207,0.56116,0.926846,0.668664,0.291753,0.85834,0.416206,0.298511,0.55242,0.589567,0.424184,0.538887,0.871501,0.750649,0.894059,0.423465,0.173205,0.588541,0.302215,0.533101,0.0397679,0.629169,0.638655,0.553078,0.63295,0.878431,0.3759,0.542477,0.0254668,0.909881,0.0659099,0.438154,0.800565,0.704273,0.45629,0.00487095,0.18747,0.224547,0.647552,0.820472,0.323265,0.863116,0.362372,0.78255,0.244022,0.85561,0.0816787,0.567073,0.481301,0.235734,0.866426,0.485261,0.250636,0.562454,|0.394805,0.823455,0.0399446,0.666561,0.107934,0.960142,0.192709,0.5661,0.970599,0.710503,0.941211,0.0138983,0.480263,0.151549,0.916496,0.749372,0.150773,0.20551,0.61995,0.683668,0.625997,0.523522,0.390819,0.0895225,0.957855,0.957319,0.184101,0.644385,0.72719,0.939306,0.988219,0.656999,0.316575,0.844487,0.870369,0.219225,0.754072,0.0875714,0.993008,0.419453,0.524673,0.613118,0.435636,0.0605417,0.420969,0.279547,0.375537,0.250144,0.258318,0.774282,0.701126,0.602092,0.497168,0.760469,0.648197,0.607796,0.799083,0.0658754,0.154393,0.424053,0.853958,0.71976,0.245001,0.424845,0.789011,0.506807,0.355626,0.970014,0.46399,0.374813,0.471654,0.423032,0.2153,0.401955,0.885497,0.289245,0.451979,0.0210612,0.680014,0.654905,0.587443,0.977132,0.188673,0.301713,0.820265,0.178397,0.539345,0.787291,0.498105,0.344936,0.416899,0.630383,0.717278,0.0116589,0.4573,0.279165,0.0394206,0.706945,0.52386,0.100504,0.99436,0.107607,0.444125,0.479593,0.759819,0.805107,0.0973397,0.944878,0.322122,0.551221,0.939128,0.979852,0.954631,0.704289,0.300707,0.461845,0.904145,0.26849,0.182616,0.957644,0.300356,0.342857,0.80569,0.123492,0.314258,0.194993,0.1081,0.674595,0.11282,0.608994,0.00384021,0.556227,0.573111,0.413336,0.754542,0.337802,0.824301,0.167874,0.570584,0.176637,0.188254,0.117592,0.265277,0.671256,0.922387,0.112567,0.426314,0.743414,0.449597,0.338622,0.398829,0.660032,0.320976,0.56757,0.0904731,0.312347,0.42755,0.853297,0.53298,0.362061,0.272659,0.252744,0.573498,0.0204313,0.638246,0.471835,0.556613,0.0151798,0.10176,0.325366,0.811173,0.689361,0.567152,0.107903,0.646486,0.427008,0.303769,0.0372098,0.385078,0.227743,0.821031,0.955752,0.690361,0.279088,0.396902,0.907072,0.188356,0.921589,0.877429,0.408671,0.372422,0.204006,0.325375,0.0608247,0.45756,0.309509,0.200011,0.919065,0.439358,0.866357,0.715367,0.148906,0.449569,0.0639648,0.700893,0.558377,0.378179,0.611458,0.150563,0.18304,0.0791309,0.0928982,0.574483,0.0154471,0.920659,0.563567,0.267984,0.00304216,0.724583,0.511357,0.0910441,0.805198,0.433312,0.615574,0.811561,0.969118,0.786867,0.766762,0.263655,0.545481,0.9773,0.776101,0.868193,0.506719,0.124541,0.156058,0.684282,0.427996,0.473413,0.881259,0.949272,0.714608,0.591194,0.387772,0.340248,0.0121895,0.371901,0.838979,0.460563,0.976496,0.437293,0.0445289,0.338251,0.308151,0.0876147,0.053506,0.274931,0.025022,0.33867,0.250608,0.185858,0.781151,0.188263,0.0333125,0.404081,0.676794,0.133228,0.948563,0.568891,0.126597,0.340095,0.373823,0.112266,0.793168,0.225142,0.231597,0.829718,0.830961,0.95023,0.412436,0.114416,0.624226,0.0686418,0.176231,0.310758,0.587323,0.326431,0.523657,0.62863,0.597865,0.383927,0.682679,0.782312,0.0922666,0.930178,0.530166,0.807759,0.412507,0.770204,0.35869,0.0851888,0.904993,0.126181,0.193017,0.808897,0.510954,0.84465,0.644351,0.499391,0.350886,0.0112037,0.879752,0.416372,0.320068,0.468391,0.293334,0.727884,0.561367,0.498681,0.283656,0.961897,0.815959,0.738267,0.634172,0.426144,0.23157,0.482382,0.436004,0.542309,0.233709,0.123357,0.359503,0.0473701,0.930606,0.0495129,0.0522994,0.992298,0.835029,0.970801,0.911338,0.150045,0.632614,0.25329,0.622862,0.948651,0.646763,0.261752,0.862583,0.813827,0.641564,0.348827,0.349032,0.420088,0.950925,0.406523,0.49842,0.0132145,0.425268,0.487423,0.525819,0.0412237,0.53911,0.58282,0.458283,0.583576,0.51615,0.595398,0.0291396,0.665592,0.676601,0.0989096,0.280649,0.956359,0.171981,0.199941,0.350394,0.562604,0.486865,0.924521,0.910977,0.661293,0.678845,0.606098,0.368658,0.375258,0.636698,0.67725,0.0717164,0.662981,0.837487,0.0428489,0.214555,0.484887,0.500236,0.189705,0.954789,0.576587,0.403723,0.928165,0.762723,0.747793,0.0272266,0.556781,0.31883,0.975383,0.76443,0.38236,0.707017,0.651349,0.617495,0.6509,0.304289,0.995324,0.89746,0.619277,0.324295,0.112302,0.306597,0.371551,0.120775,0.359761,0.35186,0.461042,0.24233,0.511669,0.986471,0.988267,0.755018,0.776969,0.763716,0.0790741,0.835361,0.995473,0.356022,0.480434,0.864061,0.728925,0.687161,0.621825,0.396148,0.984671,0.801801,0.646366,0.367096,0.48392,0.714318,0.222503,0.62184,0.211853,0.718979,0.076297,0.601169,0.0732761,0.302104,0.935558,0.311383,0.931508,0.0536822,0.895114,0.251795,0.37242,0.8506,0.91415,0.97932,0.00873518,0.135242,0.78607,0.285646,0.880845,0.800722,0.282827,0.442645,0.7281,0.964406,0.278691,0.330338,0.930692,0.95219,0.918943,0.248258,0.988999,0.503666,0.639674,0.426038,0.913586,0.00520223,0.782099,0.232719,0.605054,0.283654,0.805165,0.915641,0.326852,0.882974,0.732352,0.652339,0.9539,0.197979,0.521124,0.119261,0.185958,0.657264,0.16731,0.768773,0.200674,0.657549,0.52119,0.66177,0.856104,0.590374,0.768171,0.319499,0.708755,0.942417,0.165513,0.966671,0.142393,0.767411,0.00687629,0.83498,0.989834,0.220407,0.222092,0.495276,0.488101,0.328869,0.383692,0.290319,0.911299,0.956567,0.639331,0.435872,0.772619,0.16382,0.88101,0.863437,0.976552,0.768875,0.670166,0.819839,0.595406,0.116277,0.0257685,0.720534,0.0948842,0.509172,0.384909,0.339892,0.494267,0.307531,0.943576,0.927959,0.807048,0.936569,0.525549,0.534466,0.109862,0.321738,0.381472,0.467165,0.610029,0.685582,0.481907,0.204358,0.0723631,0.0398491,0.380347,0.165049,0.00337648,0.523571,0.107124,0.459342,0.934893,0.546227,0.858754,0.0869215,0.962317,0.557402,0.448018,0.863061,0.100914,0.725457,0.490992,0.508704,0.568333,0.309752,0.802803,0.866446,0.981661,0.683317,0.134344,0.969857,0.29037,0.883814,0.751682,0.260818,0.543015,0.143214,0.675466,0.775773,0.325041,0.0620329,0.0259913,0.44709,0.772913,0.808239,0.34876,0.688155,0.205344,0.57082,0.512509,0.0295116,0.730127,0.162557,0.408077,0.918125,0.444728,0.587372,0.636759,0.0714771,0.413243,0.632015,0.0563364,0.890985,0.142162,0.0500481,0.265618,0.878514,0.392327,0.663787,0.702632,0.00956923,0.394361,0.385149,0.547919,0.516662,0.657505,0.685869,0.917272,0.520718,0.321539,0.656791,0.442804,0.316542,0.6929,0.213584,0.633389,0.801811,0.769765,0.244095,0.43988,0.459036,0.327111,0.427475,0.183909,0.644666,0.408857,0.916231,0.103512,0.0667461,0.764717,0.584872,0.984441,0.910784,0.600822,0.989736,0.807328,0.999973,0.0382768,0.442902,0.728875,0.803203,0.522828,0.912154,0.911061,0.110952,0.393346,0.369975,0.729774,0.817076,0.827045,0.771388,0.443972,0.877129,0.00860161,0.0541269,0.113766,0.265971,0.0312239,0.195442,0.046888,0.595831,0.376443,0.0514321,0.333232,0.584805,0.566047,0.256649,0.43815,0.816987,0.39281,0.284917,0.0600687,0.870552,0.856201,0.654754,0.532246,0.384982,0.629047,0.706959,0.507146,0.876874,0.474241,0.902907,0.0877646,0.938708,0.374426,0.358924,0.450233,0.986215,0.900361,0.00292909,0.0813297,0.516631,0.715365,0.320625,0.33744,0.687315,0.488093,0.448802,0.91383,0.463168,0.141978,0.38307,0.240562,0.651786,0.891521,0.208188,0.32107,0.75942,0.491133,0.362812,0.82645,0.462525,0.355538,0.218323,0.276181,0.717209,0.12508,0.152663,0.225763,0.553374,0.248315,0.31145,0.562883,0.4123,0.728329,0.242111,0.560679,0.653058,0.73376,0.616619,0.92356,0.607065,0.304168,0.218298,0.528464,0.0292683,0.929034,0.540359,0.845072,0.280719,0.925473,0.464578,0.895752,0.386294,0.47595,0.930769,0.030483,0.466801,0.913503,0.0537698,0.461318,0.560363,0.428785,0.880817,0.852139,0.475534,0.980467,0.949134,0.520889,0.726934,0.949692,0.43526,0.871532,0.358713,0.922882,0.99131,0.916192,0.645252,0.951678,0.0817662,0.712126,0.396103,0.199435,0.00317472,0.845812,0.696872,0.475375,0.154809,0.888853,0.693172,0.00809395,0.194798,0.910899,0.543138,0.0296391,0.99555,0.445245,0.506831,0.464369,0.313977,0.516857,0.395742,0.716689,0.66991,0.20849,0.0916008,0.417487,0.649717,0.99767,0.329111,0.385452,0.985362,0.844333,0.1806,0.841605,0.581059,0.364986,0.52411,0.346236,0.807892,0.0576116,0.892365,0.409551,0.446929,0.814936,0.564807,0.99832,0.464413,0.171729,0.933068,0.305258,0.989692,0.345879,0.741885,0.75008,0.548744,0.885523,0.0546307,0.589478,0.203918,0.166849,0.0643544,0.0679818,0.683842,0.593774,0.247131,0.072372,0.800436,0.507869,0.302342,0.931951,0.252446,0.280217,0.773187,0.25627,0.606427,0.569104,0.855756,0.702932,0.044894,0.307399,0.897361,0.47132,0.00985157,0.949437,0.445378,0.82928,0.184874,0.00122875,0.505147,0.230452,0.453927,0.0875537,0.369231,0.115859,0.993886,0.617824,0.108339,0.469498,0.119601,0.194831,0.363632,0.987406,0.782819,0.965735,0.0269821,0.384089,0.404567,0.901017,0.686001,0.903358,0.814161,0.452451,0.959156,0.855743,0.705474,0.0650481,0.640033,0.613998,0.782989,0.595147,0.849793,0.607342,0.382779,0.743611,0.226928,0.752568,0.983403,0.573723,0.764247,0.125169,0.294518,0.755041,0.750524,0.33805,0.719293,0.670575,0.665622,0.659839,0.807257,0.931817,0.202896,0.641142,0.406221,0.501171,0.573395,0.0049293,0.446074,0.569131,0.14837,0.545681,0.12217,0.232169,0.750103,0.458859,0.236423,0.509664,0.73086,0.093847,0.41772,0.533094,0.728612,0.467072,0.733341,0.794747,0.658488,0.281843,0.286958,0.883427,0.0945631,0.92006,0.853662,0.695642,0.711028,0.115727,0.651374,0.98147,0.146812,0.652541,0.0522265,0.629219,0.358727,0.0272451,0.711575,0.184639,0.923914,0.811992,0.407709,0.9771,0.630425,0.654469,0.537375,0.575035,0.582582,0.0546907,0.497433,0.817476,0.410814,|0.478703,0.630147,0.0615852,0.930825,0.741687,0.104123,0.329805,0.296691,0.839668,0.663156,0.552031,0.673652,0.473188,0.224477,0.821109,0.334571,0.185057,0.979009,0.581843,0.921226,0.971024,0.341302,0.388523,0.825398,0.984337,0.00634855,0.717723,0.48586,0.312602,0.977349,0.986807,0.434736,0.465756,0.767286,0.814219,0.770913,0.568588,0.0134315,0.171999,0.412287,0.709482,0.333342,0.404045,0.884968,0.970339,0.305403,0.0610254,0.414708,0.814569,0.620342,0.614989,0.529025,0.87646,0.747065,0.848633,0.963623,0.606956,0.61437,0.507684,0.813121,0.416819,0.839928,0.891038,0.827288,0.349136,0.647112,0.384104,0.828277,0.143261,0.86902,0.384394,0.618684,0.472806,0.0735453,0.294662,0.296146,0.680235,0.869663,0.073938,0.151115,0.0335797,0.297033,0.567386,0.727958,0.555333,0.300187,0.43369,0.838825,0.567433,0.506946,0.0968504,0.0631726,0.506169,0.26827,0.578046,0.927704,0.0564589,0.851602,0.415956,0.415381,0.576454,0.0289486,0.521084,0.0150428,0.770117,0.598302,0.94486,0.333976,0.380113,0.814818,0.529002,0.845319,0.161175,0.966936,0.135475,0.494616,0.926808,0.224669,0.548354,0.404458,0.0776379,0.39766,0.00405771,0.732398,0.0305632,0.297376,0.37223,0.63121,0.258116,0.173585,0.387466,0.903929,0.553571,0.895229,0.948772,0.687424,0.0484851,0.224611,0.852832,0.474785,0.95118,0.736802,0.27815,0.88564,0.226907,0.787838,0.658951,0.828607,0.568252,0.937908,0.0147313,0.763001,0.296085,0.407656,0.700159,0.934248,0.943897,0.367175,0.88825,0.617161,0.655883,0.0273163,0.502738,0.271388,0.90189,0.597243,0.575162,0.405769,0.879755,0.273974,0.862552,0.76365,0.19245,0.531197,0.0731422,0.735314,0.496113,0.986256,0.217359,0.642979,0.0662404,0.872637,0.193264,0.157752,0.470435,0.0342308,0.0302073,0.869969,0.456287,0.903167,0.890221,0.124115,0.0427731,0.946495,0.170137,0.324556,0.978253,0.89056,0.97131,0.604333,0.315177,0.258859,0.140269,0.756433,0.191904,0.15892,0.922166,0.354953,0.79116,0.799813,0.656081,0.447573,0.246641,0.753257,0.616242,0.152511,0.45723,0.913798,0.231588,0.97888,0.174261,0.468418,0.0272875,0.823147,0.243776,0.522288,0.634859,0.353607,0.635992,0.0969677,0.621432,0.435098,0.0979559,0.786751,0.87294,0.123495,0.117246,0.928301,0.578416,0.512744,0.479935,0.0837953,0.266508,0.00975007,0.583189,0.735978,0.943624,0.866961,0.678055,0.598105,0.232614,0.324255,0.317599,0.813206,0.66207,0.408277,0.581904,0.312918,0.628383,0.967949,0.311526,0.0872005,0.3265,0.613083,0.852057,0.606665,0.414664,0.216217,0.244,0.971966,0.715737,0.980697,0.543525,0.848225,0.369133,0.685972,0.757692,0.409052,0.5037,0.729726,0.572667,0.217968,0.189892,0.648053,0.0829501,0.162385,0.201872,0.887334,0.2269,0.389663,0.615293,0.260951,0.366573,0.50033,0.148989,0.958783,0.352872,0.666621,0.595094,0.04124,0.821572,0.470522,0.131426,0.408001,0.639088,0.999627,0.194296,0.992522,0.0465693,0.562127,0.10752,0.468987,0.195449,0.821003,0.881959,0.909975,0.816124,0.68706,0.510771,0.190638,0.958338,0.142231,0.392397,0.257158,0.306423,0.0518425,0.632882,0.0476937,0.190311,0.764892,0.769845,0.866338,0.167346,0.0567073,0.586297,0.833061,0.848539,0.894365,0.815811,0.636638,0.499574,0.289717,0.422087,0.769992,0.376934,0.0363607,0.0526568,0.751172,0.900309,0.0709438,0.794263,0.444267,0.385893,0.245658,0.935672,0.63569,0.34066,0.106966,0.0261275,0.946779,0.584036,0.719983,0.501243,0.28679,0.0939907,0.28918,0.777174,0.931296,0.16662,0.0812307,0.909587,0.84608,0.882229,0.000109255,0.813469,0.786344,0.39398,0.116685,0.486921,0.567229,0.615524,0.308792,0.904069,0.787403,0.671269,0.290688,0.0227103,0.703113,0.238977,0.675699,0.000192225,0.904094,0.430814,0.435644,0.247336,0.190588,0.137386,0.24156,0.235199,0.267117,0.339029,0.417399,0.532915,0.410254,0.636829,0.132268,0.299695,0.377093,0.237479,0.41742,0.742058,0.342889,0.123653,0.850236,0.469721,0.46378,0.989798,0.395026,0.859874,0.890177,0.0450273,0.173025,0.326642,0.830539,0.565747,0.293637,0.665309,0.0732411,0.492649,0.369792,0.257585,0.139925,0.858573,0.213672,0.350621,0.896719,0.741374,0.657887,0.684787,0.561464,0.224585,0.90852,0.636068,0.651755,0.749747,0.0490174,0.924635,0.543057,0.399564,0.930285,0.211771,0.222483,0.783413,0.977015,0.646625,0.513721,0.504541,0.721012,0.828167,0.180444,0.847411,0.731522,0.565084,0.254416,0.354873,0.272816,0.184502,0.518595,0.130742,0.766541,0.529059,0.541846,0.880559,0.497903,0.133431,0.98345,0.0586422,0.722188,0.177641,0.691426,0.149008,0.484008,0.284769,0.811035,0.0433795,0.68928,0.836784,0.387003,0.760685,0.69606,0.0570458,0.902965,0.496963,0.362444,0.329734,0.731411,0.430874,0.629654,0.0298786,0.0978613,0.515875,0.850201,0.831558,0.012226,0.0602632,0.910835,0.956381,0.988749,0.193269,0.567009,0.40704,0.453759,0.672886,0.793186,0.458298,0.703542,0.64911,0.254208,0.78795,0.382124,0.0798792,0.0588121,0.644679,0.32361,0.448026,0.583947,0.210966,0.683528,0.391814,0.448439,0.276659,0.335271,0.47332,0.3785,0.818575,0.468973,0.0880143,0.53927,0.599927,0.401384,0.771131,0.627886,0.365354,0.884594,0.727526,0.554974,0.665248,0.520521,0.326756,0.549451,0.560089,0.122764,0.683128,0.776321,0.108566,0.635935,0.945368,0.594804,0.156173,0.596081,0.152026,0.971088,0.210113,0.563229,0.899727,0.792251,0.455688,0.807261,0.89415,0.876207,0.43297,0.928661,0.461957,0.560292,0.306364,0.881706,0.182278,0.67418,0.679255,0.393475,0.004511,0.159508,0.599958,0.599485,0.888193,0.39077,0.277697,0.967146,0.273961,0.120309,0.687711,0.522287,0.135578,0.659096,0.117909,0.39736,0.016108,0.462504,0.512566,0.96431,0.599397,0.254431,0.698329,0.291668,0.676748,0.145867,0.035603,0.871864,0.557029,0.593716,0.551582,0.35696,0.129501,0.295223,0.0373714,0.471176,0.12159,0.720826,0.392175,0.261193,0.440116,0.0546865,0.690924,0.0380765,0.434452,0.43216,0.259223,0.513444,0.0315078,0.1332,0.625454,0.660538,0.913537,0.920908,0.877891,0.175492,0.462368,0.790294,0.480647,0.175992,0.970788,0.119352,0.108695,0.899821,0.904931,0.253661,0.791412,0.209935,0.409916,0.509106,0.134891,0.269506,0.695115,0.866669,0.102957,0.856263,0.90482,0.415156,0.944983,0.947388,0.271655,0.659474,0.982257,0.797633,0.116327,0.443118,0.125291,0.922433,0.391274,0.327408,0.0228816,0.088012,0.200754,0.911108,0.138009,0.790322,0.174933,0.600948,0.0383096,0.0145505,0.745936,0.158426,0.629742,0.57611,0.389419,0.706732,0.300994,0.603105,0.976733,0.50342,0.599579,0.830992,0.0877732,0.509405,0.375039,0.892345,0.709504,0.649738,0.442703,0.137944,0.576762,0.137293,0.23818,0.405158,0.256594,0.727249,0.748071,0.501612,0.642465,0.65229,0.145155,0.222146,0.800871,0.389177,0.923063,0.765566,0.663502,0.366074,0.771107,0.27827,0.731623,0.756965,0.147136,0.556584,0.871897,0.25247,0.665208,0.550556,0.128345,0.805471,0.266259,0.242402,0.848801,0.344331,0.932132,0.133938,0.248686,0.937594,0.0771883,0.908457,0.487036,0.851835,0.866434,0.462994,0.900057,0.604154,0.994472,0.779772,0.343485,0.618619,0.973209,0.539446,0.396326,0.825244,0.840275,0.351404,0.591611,0.0303127,0.227441,0.86447,0.322651,0.437208,0.125323,0.435181,0.503765,0.318052,0.473375,0.571164,0.194174,0.51494,0.627491,0.784445,0.62727,0.354141,0.392593,0.584584,0.832469,0.459327,0.724512,0.192338,0.393585,0.0354148,0.856421,0.861533,0.648698,0.343207,0.398372,0.7221,0.502679,0.245104,0.0985352,0.501264,0.670359,0.908959,0.494958,0.835927,0.0932521,0.703963,0.95284,0.334248,0.682997,0.610136,0.637896,0.832219,0.468525,0.253522,0.282664,0.248286,0.475335,0.954571,0.882655,0.148109,0.530625,0.429951,0.290656,0.0676296,0.246631,0.569846,0.630327,0.102614,0.761252,0.478249,0.856817,0.0615678,0.153618,0.0565538,0.572007,0.495644,0.349616,0.622486,0.665895,0.751589,0.761386,0.0942485,0.327721,0.186754,0.130165,0.961807,0.696588,0.874432,0.534017,0.268602,0.16891,0.271562,0.258518,0.301339,0.9861,0.357444,0.00523645,0.165717,0.359339,0.434838,0.718106,0.41977,0.73779,0.319511,0.677378,0.317105,0.810616,0.263805,0.934169,0.392252,0.909258,0.43122,0.617477,0.412963,0.286889,0.809734,0.0985973,0.858796,0.802118,0.0920659,0.467566,0.719915,0.00356352,0.708512,0.67172,0.193604,0.800968,0.741701,0.536404,0.608101,0.458383,0.336441,0.728406,0.425788,0.589489,0.973864,0.170237,0.632261,0.866171,0.0863862,0.881357,0.520676,0.53042,0.132447,0.0982692,0.444581,0.586573,0.230516,0.732152,0.491859,0.917853,0.942592,0.463525,0.254396,0.686816,0.203282,0.286439,0.00439197,0.522202,0.0145161,0.729711,0.753905,0.855857,0.480667,0.777389,0.129338,0.16771,0.0116262,0.148377,0.844719,0.98359,0.836535,0.223209,0.0215642,0.558693,0.0518315,0.711029,0.14921,0.209378,0.682042,0.353646,0.935998,0.513711,0.368712,0.173984,0.966854,0.373751,0.684851,0.301898,0.25714,0.472713,0.146192,0.725015,0.474746,0.00947505,0.115205,0.758179,0.988137,0.665847,0.938773,0.252086,0.0917304,0.893005,0.900017,0.652233,0.834341,0.0468408,0.215055,0.375971,0.717032,0.914569,0.109901,0.748815,0.206744,0.10476,0.186006,0.14768,0.531539,0.834812,0.766206,0.0659623,0.95471,0.315324,0.0621767,0.88059,0.634045,0.0724488,0.900577,0.511151,0.957811,0.674577,0.338233,0.328507,0.712161,0.26668,0.158407,0.522495,0.313223,0.880148,0.691538,0.958628,0.228509,0.73095,0.0362775,0.21516,0.394015,0.349465,0.518952,|0.857827,0.714543,0.721205,0.899343,0.838474,0.409691,0.552853,0.381024,0.172203,0.861272,0.431626,0.931489,0.3739,0.628507,0.38763,0.179712,0.824736,0.584538,0.458409,0.931591,0.173889,0.244923,0.662804,0.999522,0.658411,0.689287,0.162121,0.974257,0.984602,0.999167,0.480179,0.113458,0.122327,0.445227,0.819633,0.572568,0.19295,0.035405,0.615539,0.376645,0.121527,0.255612,0.569931,0.137638,0.99479,0.572973,0.82156,0.584363,0.136696,0.375305,0.78081,0.355383,0.0203046,0.658753,0.577305,0.867039,0.471648,0.111968,0.934351,0.755879,0.978071,0.153107,0.149434,0.151874,0.590954,0.898772,0.66897,0.799686,0.933886,0.88202,0.00371891,0.604799,0.678561,0.752009,0.532658,0.668292,0.2279,0.239462,0.175383,0.0218175,0.93629,0.803634,0.575092,0.659301,0.255528,0.911965,0.346353,0.637018,0.398378,0.587714,0.964714,0.038917,0.203454,0.308021,0.734988,0.788838,0.538663,0.557785,0.390733,0.954986,0.207588,0.234425,0.18272,0.0687469,0.372526,0.779226,0.794864,0.294988,0.000796854,0.690172,0.648251,0.469439,0.625877,0.404476,0.732069,0.612723,0.889331,0.537105,0.416754,0.854019,0.550511,0.212233,0.994975,0.229173,0.228353,0.449537,0.272667,0.454695,0.450139,0.271617,0.45514,0.800733,0.861088,0.957022,0.874606,0.320625,0.867042,0.367563,0.543464,0.849725,0.820948,0.130313,0.26444,0.941813,0.887804,0.95706,0.876839,0.499571,0.708663,0.670025,0.482681,0.72607,0.88015,0.934795,0.225703,0.452125,0.690859,0.87359,0.22779,0.467773,0.0703927,0.345433,0.42993,0.300361,0.54262,0.00318986,0.516902,0.11047,0.601388,0.660325,0.740317,0.193975,0.935084,0.907352,0.870831,0.99365,0.64537,0.391205,0.657322,0.617329,0.581697,0.495233,0.97366,0.602943,0.381219,0.740273,0.259147,0.355003,0.693441,0.540786,0.386581,0.363717,0.264123,0.138139,0.888325,0.232969,0.96886,0.242984,0.0801824,0.72803,0.374526,0.488898,0.174112,0.690099,0.963264,0.114335,0.800848,0.170759,0.375249,0.538885,0.0595281,0.823245,0.317513,0.177568,0.889994,0.434932,0.438139,0.267191,0.702877,0.567562,0.0733703,0.515768,0.992891,0.802035,0.1596,0.784669,0.918854,0.737195,0.227935,0.463197,0.253267,0.627381,0.885241,0.804677,0.985284,0.59134,0.353313,0.98744,0.924536,0.266197,0.570624,0.431003,0.826901,0.302244,0.600317,0.484329,0.44373,0.415178,0.514338,0.0745924,0.807638,0.521257,0.357836,0.282619,0.224679,0.0663522,0.268046,0.696791,0.857295,0.880022,0.537328,0.78206,0.830405,0.837526,0.787978,0.0479292,0.0118542,0.565747,0.874861,0.42207,0.206043,0.589412,0.759704,0.852753,0.846799,0.736707,0.988855,0.666351,0.129328,0.854825,0.135982,0.0522288,0.956126,0.735714,0.323097,0.659509,0.365329,0.40616,0.725505,0.842924,0.133418,0.311351,0.752735,0.876512,0.272351,0.286488,0.549702,0.234718,0.332981,0.0123945,0.645056,0.684712,0.722105,0.630448,0.972303,0.941838,0.24242,0.292073,0.67635,0.641418,0.0921095,0.55349,0.577474,0.499756,0.197951,0.280953,0.867595,0.888597,0.588454,0.374918,0.511786,0.58141,0.639874,0.717123,0.057636,0.122694,0.0178322,0.313598,0.0483412,0.138881,0.476095,0.770139,0.884923,0.978737,0.805747,0.498411,0.738301,0.403761,0.238113,0.237816,0.655282,0.939089,0.0678045,0.981825,0.66675,0.269306,0.864203,0.363327,0.410812,0.215436,0.455507,0.810768,0.0990684,0.835369,0.216735,0.137293,0.665101,0.351656,0.361623,0.730249,0.29246,0.309265,0.0500098,0.302755,0.568706,0.667748,0.216037,0.561274,0.806826,0.00983143,0.0998677,0.077387,0.319172,0.345211,0.250241,0.00297529,0.806683,0.512671,0.848703,0.229729,0.945923,0.0617773,0.276824,0.977352,0.495909,0.683082,0.491438,0.192135,0.469885,0.0649168,0.0315332,0.00758553,0.346756,0.805319,0.939339,0.617,0.682156,0.183756,0.507014,0.389881,0.207747,0.0263522,0.853883,0.217079,0.203039,0.95288,0.950982,0.472258,0.951115,0.00266379,0.125763,0.560478,0.222768,0.0500772,0.20611,0.635412,0.402901,0.1314,0.664449,0.73464,0.202014,0.516833,0.466967,0.549122,0.785226,0.671443,0.223581,0.0669108,0.745614,0.807514,0.896128,0.29845,0.401304,0.0735129,0.238152,0.346108,0.482331,0.719395,0.0637665,0.151362,0.230857,0.773795,0.577296,0.230273,0.0531312,0.60519,0.770025,0.0463541,0.566584,0.252675,0.593407,0.89364,0.773881,0.298692,0.414505,0.931757,0.994097,0.948227,0.839369,0.727706,0.925137,0.920846,0.748689,0.102676,0.0485679,0.714433,0.302137,0.57974,0.764972,0.353054,0.910661,0.461929,0.460649,0.0084123,0.637844,0.792199,0.32468,0.863534,0.239123,0.542177,0.193334,0.462563,0.00589228,0.386406,0.734669,0.469675,0.96079,0.545767,0.0757488,0.279996,0.72171,0.230015,0.897664,0.912736,0.813224,0.863319,0.394495,0.0127541,0.315781,0.690188,0.414347,0.931074,0.741509,0.947911,0.900278,0.460896,0.515119,0.481458,0.671633,0.853694,0.151127,0.516152,0.369997,0.573856,0.214797,0.253364,0.952926,0.272651,0.00557178,0.501399,0.890856,0.136988,0.733876,0.986192,0.684737,0.831265,0.914526,0.190407,0.414914,0.563878,0.304544,0.0926874,0.858582,0.196301,0.314126,0.701858,0.919513,0.0213665,0.744137,0.050401,0.823485,0.407971,0.351582,0.258055,0.704261,0.435233,0.804879,0.0553433,0.781886,0.372372,0.445955,0.455069,0.447426,0.996484,0.219853,0.295701,0.353313,0.412818,0.620123,0.30414,0.833601,0.473812,0.674431,0.301426,0.206277,0.306223,0.296433,0.149319,0.842198,0.549572,0.154163,0.904687,0.262419,0.786801,0.868462,0.0180521,0.32958,0.653661,0.403321,0.930328,0.687603,0.250105,0.920394,0.541252,0.0386038,0.752701,0.167315,0.963192,0.38297,0.281761,0.168221,0.721471,0.659016,0.296517,0.428344,0.998922,0.179259,0.38471,0.701127,0.0273226,0.377554,0.142547,0.589179,0.516164,0.917778,0.183894,0.728009,0.814068,0.591832,0.57726,0.215022,0.360879,0.687416,0.988345,0.315763,0.096735,0.741779,0.334947,0.778267,0.268522,0.17659,0.913325,0.0901647,0.551228,0.996513,0.0652162,0.0589315,0.773415,0.0135582,0.0975369,0.955033,0.430589,0.0532281,0.693837,0.942676,0.612755,0.593907,0.589736,0.908752,0.353251,0.302448,0.880696,0.772541,0.71312,0.45689,0.669631,0.967677,0.342243,0.942815,0.605572,0.00632477,0.960172,0.182626,0.0421922,0.40975,0.0386979,0.983051,0.877811,0.704903,0.486268,0.168676,0.171702,0.572763,0.734812,0.0917999,0.891426,0.14199,0.871131,0.130508,0.348086,0.340038,0.830086,0.226102,0.151237,0.413611,0.404914,0.277304,0.744914,0.118543,0.586,0.806049,0.919333,0.890988,0.866297,0.259014,0.339421,0.476175,0.706674,0.158464,0.487266,0.047474,0.344483,0.378314,0.243824,0.227889,0.447189,0.423377,0.248244,0.825431,0.409665,0.416366,0.827426,0.0765819,0.602537,0.609168,0.888716,0.354954,0.075608,0.416396,0.917782,0.896822,0.488247,0.0742655,0.0594585,0.115468,0.686827,0.214196,0.703411,0.940806,0.0815389,0.181628,0.924279,0.405061,0.663808,0.742033,0.417688,0.439478,0.956885,0.182656,0.544165,0.0938812,0.632329,0.817125,0.0131614,0.439367,0.0061723,0.28784,0.483981,0.324336,0.0867357,0.963279,0.482484,0.575657,0.428527,0.543246,0.492135,0.239715,0.963425,0.0936673,0.907233,0.670822,0.144686,0.291348,0.0308452,0.592119,0.782298,0.323942,0.153917,0.69892,0.126652,0.14099,0.0426676,0.208469,0.977534,0.316919,0.300161,0.689666,0.90321,0.911819,0.304846,0.559884,0.07002,0.425928,0.556844,0.568283,0.909951,0.732104,0.211614,0.241662,0.637192,0.944646,0.714219,0.258685,0.164873,0.656461,0.155036,0.286424,0.151466,0.239374,0.445749,0.574826,0.640569,0.565876,0.190189,0.0812508,0.161292,0.724252,0.012599,0.483518,0.667239,0.502441,0.217692,0.946275,0.426275,0.390736,0.13244,0.0587969,0.793292,0.645597,0.628755,0.581574,0.124849,0.152488,0.458621,0.477174,0.268903,0.252632,0.510154,0.828038,0.498749,0.749243,0.245808,0.441234,0.317154,0.648882,0.171429,0.48235,0.0972216,0.866192,0.18734,0.686026,0.527277,0.992964,0.277579,0.666266,0.0159447,0.848694,0.35316,0.22656,0.336075,0.391365,0.364612,0.576848,0.138914,0.627296,0.585571,0.347827,0.668222,0.776379,0.0753518,0.994087,0.345207,0.510247,0.499919,0.857043,0.823608,0.385909,0.51311,0.489662,0.84196,0.406018,0.400236,0.291464,0.655801,0.989429,0.328669,0.992057,0.549287,0.734732,0.299506,0.893458,0.739778,0.933896,0.118421,0.259636,0.8897,0.803727,0.839432,0.18255,0.0820082,0.391051,0.785969,0.137548,0.696507,0.164401,0.833919,0.418598,0.0811741,0.929123,0.626457,0.52596,0.817035,0.644908,0.211662,0.51937,0.708251,0.951957,0.78781,0.663965,0.712017,0.785075,0.865174,0.856902,0.506825,0.577057,0.154892,0.0382943,0.657945,0.636426,0.0743079,0.371462,0.774862,0.246121,0.943679,0.981193,0.916956,0.464053,0.444758,0.0599545,0.839015,0.233012,0.0925478,0.571218,0.940881,0.217875,0.0768601,0.292242,0.959016,0.345216,0.01243,0.458552,0.607342,0.722333,0.966743,0.838558,0.19496,0.999841,0.937088,0.703839,0.326619,0.000801384,0.138404,0.277737,0.086069,0.890418,0.470875,0.216298,0.997022,0.356213,0.931487,0.146116,0.672068,0.342638,0.126061,0.0134531,0.361979,0.134686,0.628185,0.115365,0.535462,0.130405,0.666152,0.722248,0.959254,0.1373,0.767824,0.434679,0.549498,0.780899,0.00592464,0.046885,0.277825,0.671761,0.882294,0.713751,0.934831,0.423422,0.443233,0.571589,0.124636,0.817907,0.0154789,0.406933,0.293788,0.663895,0.820557,0.378721,0.0413778,0.0788913,0.985083,0.32603,0.987007,0.279562,0.889635,0.19878,0.309354,0.279057,0.15282,0.439499,0.478225,|0.997826,0.485523,0.944637,0.367908,0.322326,0.172366,0.340889,0.119825,0.471135,0.381253,0.845023,0.692024,0.736767,0.651528,0.548515,0.923251,0.558,0.821311,0.951191,0.391069,0.885575,0.556534,0.0460919,0.495369,0.344973,0.688292,0.624575,0.489864,0.875216,0.0609657,0.734823,0.168282,0.0244563,0.792111,0.316866,0.9524,0.705326,0.351166,0.879288,0.289102,0.651814,0.427975,0.327505,0.955429,0.484424,0.633653,0.390727,0.53261,0.317715,0.0846035,0.311336,0.30179,0.611759,0.119772,0.89366,0.97631,0.685465,0.515274,0.712897,0.174798,0.632933,0.830265,0.231518,0.09957,0.182673,0.624406,0.205298,0.383117,0.604606,0.573065,0.370603,0.996001,0.328565,0.740107,0.463292,0.261667,0.606431,0.788186,0.375042,0.302903,0.428951,0.67719,0.0269784,0.698987,0.700787,0.024696,0.753169,0.323853,0.646021,0.606312,0.262004,0.182011,0.759718,0.322761,0.630277,0.859924,0.555606,0.630527,0.233334,0.416835,0.175016,0.259938,0.358341,0.833936,0.511147,0.614024,0.942475,0.194993,0.628984,0.353912,0.940267,0.208672,0.337925,0.404338,0.471454,0.825678,0.14664,0.902135,0.821008,0.678263,0.673924,0.853693,0.63407,0.958751,0.694814,0.679328,0.558454,0.259458,0.321176,0.615853,0.516641,0.0739844,0.637311,0.558587,0.600745,0.344146,0.978591,0.258269,0.70473,0.538677,0.65344,0.602951,0.154613,0.93853,0.374337,0.240669,0.297791,0.993113,0.0100082,0.42443,0.210151,0.375045,0.307211,0.286854,0.986654,0.0181807,0.436692,0.0870011,0.571604,0.373335,0.723598,0.561969,0.658321,0.0863311,0.88995,0.413021,0.917169,0.905682,0.751472,0.0653618,0.596936,0.466926,0.491957,0.843897,0.543049,0.555104,0.199149,0.671367,0.992185,0.152683,0.782064,0.109732,0.927039,0.683633,0.647409,0.560448,0.488038,0.00990963,0.128739,0.237306,0.34183,0.567822,0.215839,0.0249741,0.904855,0.411039,0.591498,0.463265,0.483193,0.343206,0.222551,0.158184,0.254531,0.51897,0.196478,0.10468,0.4672,0.965878,0.0988548,0.779629,0.858388,0.83138,0.794812,0.758397,0.0806268,0.481913,0.424499,0.907482,0.590981,0.582129,0.54097,0.318905,0.119908,0.708188,0.587784,0.038011,0.512573,0.911271,0.824317,0.735833,0.0372018,0.683926,0.169785,0.976186,0.609187,0.79407,0.487537,0.44996,0.512591,0.358221,0.109123,0.215338,0.0573455,0.557507,0.745093,0.502457,0.422845,0.959277,0.406855,0.197139,0.525263,0.242694,0.374618,0.865692,0.95722,0.924762,0.379622,0.414289,0.663251,0.909629,0.269281,0.41717,0.719865,0.313515,0.253811,0.00197458,0.505407,0.827467,0.546565,0.458548,0.704873,0.423189,0.874517,0.363144,0.849223,0.806227,0.0720783,0.385,0.264867,0.198165,0.00422525,0.593286,0.506922,0.882732,0.0589467,0.656673,0.0789415,0.595726,0.663462,0.4131,0.178191,0.0785529,0.381736,0.0421155,0.537278,0.0575768,0.871941,0.70648,0.15776,0.252282,0.594947,0.114769,0.147178,0.777053,0.799348,0.805426,0.242736,0.280272,0.208447,0.0814509,0.998455,0.114695,0.742642,0.888968,0.428032,0.0432242,0.208405,0.00137067,0.37941,0.996761,0.358334,0.776409,0.599863,0.568351,0.837658,0.438789,0.139618,0.502386,0.375719,0.488799,0.694756,0.810011,0.13062,0.664015,0.788255,0.570946,0.358527,0.850981,0.84237,0.842241,0.400513,0.332627,0.444676,0.518348,0.290076,0.0741377,0.980666,0.53284,0.348608,0.0353687,0.292139,0.18903,0.401883,0.979111,0.96555,0.826424,0.0419612,0.423828,0.262869,0.575992,0.744718,0.0411268,0.123845,0.56869,0.940152,0.921537,0.0307174,0.032377,0.074429,0.358276,0.471864,0.578254,0.04185,0.977409,0.43586,0.703924,0.196109,0.965129,0.718927,0.461895,0.987453,0.00552094,0.793872,0.939885,0.946478,0.744739,0.982612,0.844427,0.858378,0.45659,0.951322,0.421956,0.125998,0.840931,0.218515,0.140458,0.530072,0.570388,0.286925,0.650504,0.877092,0.484812,0.16972,0.414352,0.880109,0.251986,0.746022,0.546354,0.14891,0.60923,0.352349,0.353971,0.401485,0.634108,0.670147,0.541791,0.971194,0.557694,0.606732,0.622423,0.413762,0.729513,0.851814,0.768683,0.625855,0.430098,0.714259,0.0449996,0.812602,0.451089,0.0866466,0.771077,0.428017,0.761585,0.0927572,0.753758,0.183365,0.683865,0.529738,0.1203,0.275676,0.866462,0.918946,0.843844,0.579279,0.60413,0.248015,0.588538,0.149028,0.187713,0.141656,0.827092,0.976648,0.132962,0.362714,0.221041,0.00698763,0.919741,0.027379,0.535673,0.274737,0.197351,0.342836,0.56897,0.529054,0.0721084,0.573994,0.773608,0.451391,0.636467,0.502911,0.498681,0.867348,0.0593978,0.424531,0.126086,0.75966,0.213047,0.840304,0.460898,0.314515,0.275391,0.851116,0.39194,0.996111,0.220845,0.244304,0.488922,0.418462,0.401509,0.899865,0.857825,0.901564,0.0618752,0.237969,0.562396,0.020658,0.507326,0.104215,0.41007,0.867505,0.937563,0.208926,0.231045,0.22388,0.498743,0.61717,0.449267,0.667853,0.246816,0.0671728,0.0989771,0.221254,0.643337,0.693653,0.827246,0.254764,0.764854,0.482853,0.205282,0.530113,0.374586,0.664217,0.854757,0.539355,0.326431,0.560517,0.503855,0.149592,0.461457,0.603037,0.581019,0.914397,0.932916,0.259679,0.518377,0.68901,0.743122,0.856055,0.447005,0.409896,0.818651,0.988051,0.385286,0.850586,0.919294,0.622653,0.127819,0.721586,0.442109,0.109779,0.621197,0.187478,0.834338,0.709979,0.50139,0.57913,0.288685,0.421861,0.585928,0.689876,0.534827,0.102426,0.193984,0.401202,0.615661,0.77855,0.453618,0.950109,0.31208,0.736557,0.848593,0.675774,0.828114,0.714235,0.913565,0.876271,0.669347,0.804269,0.324671,0.728913,0.184574,0.344976,0.243947,0.376372,0.46801,0.72249,0.449366,0.889065,0.671033,0.129355,0.103465,0.792573,0.773955,0.347744,0.252576,0.57893,0.975437,0.0727665,0.388966,0.35177,0.379152,0.213297,0.543088,0.588118,0.508688,0.800501,0.143453,0.0975217,0.228127,0.774035,0.103846,0.221541,0.52641,0.078065,0.290686,0.245406,0.9805,0.808562,0.0128448,0.826927,0.16332,0.639081,0.160681,0.0557727,0.890291,0.661902,0.44662,0.762724,0.431997,0.406009,0.883244,0.542146,0.667296,0.798409,0.628417,0.635942,0.483657,0.622676,0.245957,0.485951,0.419454,0.894966,0.620231,0.289574,0.263091,0.784965,0.581199,0.360403,0.202831,0.333361,0.584674,0.919637,0.298402,0.812791,0.24981,0.404305,0.14341,0.146632,0.211952,0.398673,0.714067,0.394337,0.37668,0.11517,0.936799,0.103128,0.274155,0.41939,0.762863,0.499243,0.606754,0.205007,0.16059,0.608685,0.0502406,0.28894,0.706045,0.822535,0.207826,0.106915,0.538527,0.273159,0.849283,0.246007,0.507998,0.893675,0.902774,0.291235,0.665692,0.0121066,0.0343301,0.692662,0.532063,0.597792,0.571199,0.133359,0.0917389,0.238259,0.196542,0.344427,0.0400573,0.426427,0.770046,0.939413,0.76728,0.0784584,0.441956,0.415625,0.194006,0.854529,0.207243,0.26367,0.645983,0.0796626,0.791524,0.70301,0.637934,0.0389384,0.81352,0.492758,0.181679,0.121276,0.686713,0.188368,0.408483,0.640173,0.027256,0.687767,0.931706,0.582648,0.294576,0.207741,0.0446481,0.263028,0.249526,0.556249,0.760922,0.607611,0.0918934,0.926077,0.511144,0.588927,0.156908,0.173366,0.495467,0.364822,0.276116,0.345769,0.957769,0.15336,0.04917,0.633473,0.139789,0.0796633,0.866067,0.689252,0.241608,0.173509,0.37916,0.760631,0.786878,0.828999,0.704328,0.923862,0.759491,0.466179,0.276977,0.387741,0.193975,0.25093,0.633544,0.920687,0.68477,0.364836,0.408112,0.153056,0.132614,0.611991,0.225368,0.484577,0.399186,0.585518,0.506505,0.171965,0.337487,0.482207,0.25252,0.966317,0.487463,0.633321,0.814222,0.873713,0.0993306,0.12926,0.485339,0.350275,0.185858,0.501608,0.897733,0.56631,0.504912,0.672838,0.31869,0.14778,0.899186,0.960726,0.350123,0.947511,0.131712,0.840174,0.0690992,0.936872,0.361581,0.0951791,0.698149,0.905074,0.405372,0.263157,0.337846,0.83459,0.296377,0.707112,0.201335,0.602982,0.117826,0.881099,0.544847,0.722983,0.108025,0.750413,0.515668,0.419608,0.39507,0.855031,0.655378,0.739596,0.214455,0.768182,0.954999,0.702959,0.0708795,0.311226,0.872907,0.274844,0.827549,0.481988,0.201071,0.578978,0.266777,0.203477,0.857476,0.600849,0.112427,0.195335,0.628714,0.216402,0.0798019,0.988961,0.989417,0.953433,0.315331,0.538035,0.550461,0.222643,0.170751,0.299096,0.956367,0.0990182,0.00711602,0.346725,0.0423515,0.384834,0.893342,0.687458,0.905539,0.527407,0.675293,0.310971,0.360798,0.980142,0.130744,0.96997,0.858457,0.0357834,0.0366384,0.717692,0.329768,0.731736,0.848322,0.146539,0.552896,0.171259,0.175117,0.537744,0.67408,0.113762,0.213108,0.816331,0.142782,0.295002,0.725601,0.68849,0.107703,0.875781,0.415224,0.99619,0.275391,0.732636,0.728936,0.131415,0.988107,0.277859,0.953196,0.0900892,0.732621,0.807595,0.640824,0.972288,0.472282,0.150136,0.222469,0.669306,0.829461,0.597333,0.942766,0.0840859,0.385848,0.553899,0.556955,0.622673,0.0593931,0.625874,0.262006,0.295489,0.567626,0.624924,0.294543,0.833314,0.913676,0.760453,0.982018,0.395161,0.146004,0.606489,0.760774,0.420276,0.996154,0.633319,0.391295,0.181166,0.736228,0.966665,0.635467,0.583142,0.0406217,0.845236,0.618585,0.827918,0.940048,0.312978,0.623323,0.793322,0.515753,0.875816,0.258595,0.898733,0.0741242,0.605226,0.34156,0.929351,0.700072,0.973697,0.935814,0.958687,0.674431,0.71978,0.519644,0.986047,0.761594,0.0345762,0.849215,0.949053,0.858614,0.338046,0.185989,0.461124,0.991142,0.0645084,0.658226,0.876369,0.797476,0.288258,0.310302,0.472169,0.274095,0.23828,0.218428,0.561254,0.199647,|0.886201,0.501793,0.356592,0.29793,0.460162,0.0297694,0.545675,0.869698,0.211683,0.491392,0.496768,0.699399,0.149886,0.76996,0.943885,0.112453,0.0848835,0.32908,0.380333,0.451812,0.435621,0.472492,0.315818,0.987317,0.520308,0.0484654,0.340327,0.584019,0.16603,0.33048,0.614453,0.442802,0.06843,0.373339,0.90656,0.136712,0.47518,0.49124,0.48818,0.431258,0.197573,0.831653,0.387172,0.25224,0.0405815,0.229466,0.494463,0.371341,0.96352,0.403569,0.808205,0.0308913,0.301114,0.214852,0.214521,0.070414,0.175404,0.591933,0.607533,0.0961429,0.0988321,0.0931883,0.395219,0.387808,0.972339,0.210426,0.726422,0.665861,0.105627,0.934352,0.788131,0.676707,0.609027,0.011251,0.546023,0.515318,0.502511,0.380386,0.0618504,0.922929,0.564696,0.0310839,0.758599,0.178622,0.646388,0.25428,0.888673,0.269984,0.48354,0.0141622,0.076211,0.683473,0.347694,0.241371,0.21692,0.932257,0.831013,0.783852,0.484088,0.741475,0.58454,0.524228,0.0935954,0.543352,0.0719142,0.617335,0.563934,0.0577207,0.109417,0.101634,0.0222064,0.658611,0.0798562,0.987013,0.737359,0.675761,0.65633,0.169248,0.386231,0.142326,0.440004,0.597245,0.121914,0.504204,0.419156,0.807175,0.58857,0.192168,0.53232,0.38794,0.576951,0.501469,0.222831,0.25502,0.243279,0.0785578,0.341357,0.767921,0.412682,0.211346,0.757108,0.449362,0.772276,0.859779,0.927295,0.185595,0.659244,0.306332,0.0875769,0.516168,0.598923,0.953859,0.318994,0.265628,0.374463,0.649652,0.698252,0.191209,0.229281,0.336054,0.6414,0.672346,0.673275,0.153156,0.514497,0.186435,0.778446,0.401734,0.714384,0.613841,0.258312,0.217863,0.911681,0.958111,0.384262,0.486198,0.0469941,0.0490332,0.874278,0.574685,0.876819,0.935827,0.52825,0.848684,0.634947,0.775861,0.14684,0.937696,0.899765,0.568593,0.718552,0.889815,0.463743,0.0569877,0.120811,0.88714,0.864906,0.77,0.851913,0.592831,0.153657,0.388708,0.491762,0.368713,0.514949,0.997119,0.693515,0.38492,0.144271,0.32254,0.040223,0.138681,0.223598,0.265406,0.261201,0.0892363,0.0326989,0.61162,0.770589,0.327561,0.451142,0.556525,0.0686389,0.857905,0.0618496,0.621619,0.844647,0.128362,0.307844,0.0563223,0.386537,0.661999,0.188462,0.544606,0.362055,0.0736232,0.329048,0.375715,0.167271,0.556928,0.756079,0.395683,0.41811,0.227257,0.554637,0.852197,0.964887,0.501153,0.935756,0.858591,0.386312,0.681781,0.932786,0.159513,0.728674,0.0972369,0.156221,0.36201,0.325989,0.910515,0.223912,0.909087,0.827834,0.692685,0.860652,0.563714,0.0940589,0.0492037,0.0776748,0.441873,0.503771,0.478871,0.832074,0.930685,0.413728,0.518262,0.709601,0.489267,0.417585,0.421529,0.228725,0.596753,0.0442564,0.291076,0.320839,0.139338,0.413795,0.115363,0.866413,0.62283,0.288369,0.406381,0.134912,0.874753,0.662078,0.483947,0.395868,0.873206,0.164167,0.253638,0.456773,0.0172095,0.268546,0.72172,0.354582,0.053188,0.325575,0.92691,0.313501,0.213539,0.905086,0.566899,0.624943,0.705375,0.962863,0.988762,0.682042,0.201036,0.367955,0.462219,0.136006,0.77488,0.496146,0.810163,0.648756,0.927054,0.582574,0.0746462,0.209939,0.673482,0.435123,0.0857956,0.416229,0.981698,0.264563,0.549724,0.709337,0.685355,0.822677,0.766166,0.594311,0.42956,0.70022,0.771884,0.302272,0.428823,0.2298,0.18699,0.47213,0.53741,0.986515,0.000346243,0.972907,0.883044,0.894717,0.402121,0.725729,0.00331634,0.851529,0.976518,0.278816,0.526705,0.831777,0.48766,0.877182,0.0499776,0.379875,0.0470962,0.00834614,0.517391,0.7959,0.893908,0.0653101,0.340939,0.657904,0.538703,0.781551,0.373399,0.275766,0.788205,0.670277,0.835508,0.643075,0.512698,0.703303,0.641828,0.867293,0.312836,0.504588,0.22691,0.888524,0.402222,0.767562,0.332628,0.342311,0.646222,0.158994,0.194226,0.580092,0.552914,0.974954,0.654161,0.744561,0.0376662,0.363029,0.479864,0.280337,0.300035,0.40096,0.895551,0.398237,0.982963,0.0856451,0.534417,0.784338,0.792521,0.961272,0.0368037,0.297326,0.52193,0.963771,0.792263,0.683293,0.531212,0.57623,0.980328,0.973072,0.745666,0.117215,0.0585377,0.814851,0.299225,0.310563,0.719282,0.00193679,0.595505,0.547682,0.264156,0.137399,0.374642,0.963173,0.814762,0.843472,0.582681,0.961123,0.109848,0.937113,0.968968,0.722517,0.61854,0.143949,0.957891,0.489288,0.946929,0.406362,0.780337,0.865758,0.571238,0.289314,0.352334,0.846637,0.0340587,0.671244,0.37749,0.312834,0.0503266,0.0127082,0.766748,0.677225,0.080275,0.0932728,0.232745,0.227494,0.393396,0.637342,0.958519,0.475898,0.539616,0.274893,0.894827,0.247109,0.965757,0.054221,0.95074,0.315831,0.943117,0.578064,0.431879,0.318112,0.983193,0.458437,0.940077,0.629079,0.672195,0.486375,0.875612,0.944228,0.356892,0.382813,0.94471,0.0696099,0.656944,0.217793,0.0301167,0.918194,0.0952224,0.506365,0.374333,0.147338,0.658633,0.813619,0.278335,0.372968,0.293236,0.601393,0.220473,0.933755,0.739473,0.43509,0.620417,0.98318,0.859549,0.775704,0.00845766,0.98233,0.0649381,0.333225,0.230824,0.503557,0.00197875,0.966282,0.856694,0.0485987,0.794149,0.803147,0.425178,0.707487,0.949765,0.597071,0.351773,0.479647,0.150836,0.216026,0.868206,0.0389248,0.847333,0.529461,0.121675,0.41591,0.0915056,0.121978,0.661916,0.18254,0.495806,0.206458,0.613213,0.774523,0.797771,0.891318,0.848549,0.817497,0.536252,0.565316,0.203111,0.499787,0.908471,0.333046,0.80207,0.723565,0.983477,0.0625218,0.136535,0.133965,0.0590288,0.366572,0.219372,0.367684,0.0525756,0.748108,0.0846063,0.0532772,0.449875,0.678921,0.24813,0.535538,0.210428,0.857745,0.663089,0.819619,0.731203,0.848351,0.121198,0.552483,0.464819,0.305785,0.729277,0.933962,0.730377,0.383669,0.564736,0.0747052,0.16879,0.932011,0.53096,0.00346941,0.609705,0.676756,0.412821,0.389034,0.0418653,0.932578,0.945384,0.599855,0.771812,0.280104,0.841034,0.982526,0.562115,0.887752,0.887952,0.0450265,0.663402,0.366632,0.230165,0.71176,0.79683,0.451133,0.992439,0.15188,0.12139,0.336661,0.345309,0.292541,0.268982,0.470569,0.533876,0.899384,0.0295768,0.974216,0.986262,0.882917,0.0292027,0.61228,0.342063,0.724675,0.0273653,0.921867,0.881096,0.0609381,0.0555951,0.380941,0.916882,0.678246,0.235025,0.73898,0.122609,0.225977,0.301176,0.249119,0.510123,0.49146,0.888392,0.802238,0.437022,0.226526,0.59255,0.664652,0.341234,0.831237,0.0121474,0.549021,0.737283,0.302324,0.916413,0.177059,0.834524,0.351506,0.788239,0.174087,0.386005,0.281835,0.339185,0.534044,0.48837,0.623892,0.0652847,0.00230944,0.92812,0.317287,0.148614,0.59117,0.570186,0.0635935,0.323098,0.840615,0.654746,0.889484,0.215944,0.912628,0.0192167,0.331164,0.246283,0.568208,0.412518,0.702975,0.167967,0.0189629,0.970046,0.455788,0.245025,0.752323,0.435046,0.292018,0.982755,0.181435,0.827987,0.538165,0.694514,0.602454,0.211317,0.0277697,0.261647,0.21575,0.947286,0.108382,0.0525541,0.631818,0.00752908,0.257946,0.167548,0.625509,0.0321198,0.0345941,0.74295,0.971716,0.176712,0.38697,0.128071,0.971389,0.565865,0.987067,0.575656,0.52375,0.362926,0.357021,0.312183,0.987421,0.74044,0.61656,0.33209,0.442876,0.268103,0.0140049,0.218901,0.622821,0.874159,0.40353,0.203704,0.310769,0.169991,0.567922,0.704004,0.280701,0.94978,0.601292,0.587683,0.689027,0.663745,0.581418,0.955125,0.00867403,0.502553,0.814837,0.0695457,0.778441,0.269058,0.710284,0.847202,0.934819,0.944924,0.193408,0.545976,0.110451,0.208336,0.538785,0.404688,0.409095,0.0759147,0.635915,0.466139,0.365051,0.518127,0.443322,0.828083,0.77811,0.410157,0.648869,0.175931,0.419283,0.734864,0.644572,0.161663,0.117324,0.573223,0.143891,0.163432,0.371488,0.701769,0.388143,0.618699,0.103391,0.459793,0.306038,0.488891,0.90137,0.402304,0.631263,0.614834,0.844152,0.748804,0.534804,0.990922,0.736922,0.00641608,0.47406,0.0307814,0.371972,0.54373,0.37151,0.996235,0.0324699,0.447048,0.641771,0.908223,0.318701,0.694452,0.969815,0.506681,0.445966,0.596886,0.324347,0.625566,0.13444,0.447176,0.36699,0.992054,0.22952,0.741084,0.255698,0.785871,0.440517,0.77308,0.969802,0.823739,0.334094,0.532012,0.239313,0.800083,0.611136,0.957439,0.796023,0.0910008,0.41589,0.155721,0.0170841,0.385847,0.580817,0.679744,0.942144,0.965984,0.530787,0.52395,0.00579077,0.224764,0.515085,0.715256,0.207755,0.833094,0.535919,0.0278425,0.296494,0.139055,0.00250447,0.352161,0.281961,0.984241,0.374644,0.646669,0.357387,0.170026,0.838638,0.837623,0.0648194,0.700909,0.599562,0.0257695,0.153314,0.247663,0.398653,0.519759,0.0860654,0.255451,0.237062,0.94977,0.778638,0.551961,0.553383,0.27787,0.644465,0.510437,0.685224,0.899944,0.870649,0.199472,0.288614,0.877382,0.400816,0.647951,0.364787,0.0909021,0.402016,0.740652,0.1125,0.330391,0.376931,0.693723,0.276938,0.241135,0.827413,0.509978,0.557078,0.244691,0.869112,0.0460687,0.319346,0.209385,0.688672,0.70584,0.109848,0.168602,0.702822,0.333533,0.931475,0.0629287,0.241606,0.439783,0.99709,0.436081,0.22237,0.0510178,0.464414,0.359373,0.371504,0.894227,0.878767,0.478734,0.387989,0.629032,0.14943,0.532155,0.904446,0.387705,0.889362,0.519888,0.490161,0.566559,0.0167097,0.365166,0.873863,0.413148,0.54905,0.297474,0.91446,0.787648,0.944164,0.695595,0.339008,0.661697,0.681006,0.744163,0.779092,0.147441,0.807039,0.794525,0.187822,0.156273,0.311159,0.401266,0.195985,0.0648739,0.44371,0.491686,0.432976,0.354263,0.413932,0.942773,0.218093,0.485973,0.664178,0.592877,|0.282107,0.136937,0.803077,0.232791,0.513179,0.213966,0.312473,0.800358,0.136775,0.531444,0.506385,0.409184,0.982782,0.25229,0.189648,0.70536,0.0263083,0.144748,0.767193,0.734313,0.185998,0.428833,0.715227,0.203694,0.0533172,0.308377,0.0693231,0.59084,0.817587,0.358005,0.56233,0.100568,0.966804,0.99983,0.882267,0.232506,0.902176,0.39083,0.962214,0.451103,0.47767,0.590856,0.640755,0.0474211,0.610116,0.332482,0.687148,0.528847,0.220513,0.804166,0.530812,0.660757,0.168658,0.343155,0.139924,0.72139,0.121063,0.339745,0.918106,0.248543,0.984461,0.361192,0.830718,0.827357,0.399122,0.62174,0.00335491,0.997668,0.441776,0.715478,0.764006,0.301133,0.754979,0.632057,0.885264,0.972727,0.649304,0.593735,0.0676258,0.796992,0.408355,0.630117,0.510544,0.499108,0.833954,0.533965,0.832423,0.107364,0.931271,0.745801,0.962082,0.930962,0.688531,0.0742161,0.567,0.615779,0.761464,0.341978,0.197517,0.0869861,0.128359,0.535082,0.623523,0.520207,0.877197,0.288957,0.152768,0.679273,0.910424,0.282422,0.100032,0.710516,0.783561,0.0634657,0.639773,0.696315,0.114646,0.849056,0.75319,0.647859,0.678177,0.0511001,0.912434,0.92769,0.254652,0.539577,0.970315,0.695007,0.292033,0.816179,0.684393,0.0201184,0.394409,0.841021,0.184485,0.777423,0.990443,0.451129,0.604416,0.101494,0.196736,0.252997,0.721905,0.659813,0.906852,0.203779,0.344176,0.601117,0.200327,0.16816,0.486924,0.715055,0.336837,0.0411916,0.110664,0.743634,0.642278,0.273792,0.654988,0.868036,0.77665,0.905677,0.485146,0.310654,0.727148,0.773105,0.328269,0.157933,0.391279,0.413154,0.0811618,0.842928,0.720059,0.271358,0.316328,0.309628,0.673545,0.363631,0.267868,0.630413,0.965083,0.790174,0.780452,0.895197,0.208453,0.786684,0.759214,0.230536,0.929761,0.111652,0.757325,0.142954,0.453065,0.778241,0.580341,0.0960395,0.445109,0.309532,0.580048,0.918392,0.750439,0.0820229,0.272378,0.871179,0.660435,0.187642,0.29194,0.00613892,0.459171,0.426759,0.940956,0.641224,0.764708,0.96228,0.62257,0.845312,0.672918,0.974927,0.787555,0.950145,0.922565,0.537612,0.09332,0.582659,0.617639,0.543021,0.424211,0.738756,0.770259,0.35813,0.657223,0.901709,0.856088,0.802684,0.00788653,0.0726206,0.857162,0.851104,0.00546157,0.737463,0.867603,0.925726,0.60648,0.943636,0.337728,0.611539,0.7907,0.321539,0.674724,0.539138,0.585473,0.036595,0.285131,0.754506,0.508976,0.0162472,0.0529714,0.826207,0.545479,0.302059,0.848076,0.369553,0.229658,0.478697,0.627628,0.963086,0.264994,0.777516,0.914337,0.811834,0.764468,0.737075,0.993094,0.411042,0.801925,0.927279,0.685365,0.574839,0.469895,0.22995,0.786843,0.259048,0.704522,0.976524,0.203379,0.16781,0.558172,0.96228,0.886077,0.961204,0.841916,0.425938,0.413309,0.730058,0.259094,0.00565577,0.258699,0.642549,0.435063,0.087202,0.825141,0.562482,0.482614,0.970953,0.837874,0.100036,0.730983,0.7482,0.479866,0.836669,0.333949,0.983605,0.311343,0.532852,0.500909,0.406202,0.387338,0.672985,0.502075,0.895354,0.685141,0.0968308,0.236375,0.22136,0.977084,0.507406,0.935039,0.0612243,0.418894,0.543251,0.824549,0.943796,0.0399113,0.855415,0.768441,0.853453,0.540451,0.369441,0.655883,0.712065,0.703337,0.0967467,0.836862,0.214334,0.786909,0.989181,0.737898,0.220969,0.737781,0.941735,0.329871,0.0698573,0.810733,0.230001,0.415494,0.150565,0.792332,0.638355,0.14542,0.412491,0.807229,0.393031,0.986927,0.656848,0.63783,0.411789,0.174656,0.45787,0.399301,0.44928,0.895786,0.972361,0.952999,0.240091,0.11383,0.70841,0.340578,0.313323,0.801975,0.715811,0.577914,0.0476267,0.886763,0.669589,0.0910133,0.577085,0.987845,0.545654,0.122352,0.358928,0.449404,0.979021,0.276805,0.350403,0.10452,0.824454,0.602798,0.396638,0.457765,0.970688,0.0288178,0.8864,0.792153,0.789706,0.272572,0.365808,0.995196,0.930803,0.5339,0.248541,0.840463,0.378849,0.648867,0.69187,0.856032,0.609043,0.470276,0.99154,0.0111985,0.258056,0.713838,0.156278,0.39212,0.890501,0.839791,0.144761,0.166277,0.79739,0.854192,0.463567,0.376815,0.173535,0.78883,0.70791,0.776371,0.0529044,0.628196,0.234132,0.517764,0.0807478,0.896401,0.248081,0.292452,0.732796,0.353519,0.973341,0.731499,0.0744749,0.771479,0.916754,0.436952,0.240147,0.544557,0.817635,0.41632,0.376561,0.74157,0.402937,0.317944,0.805036,0.325611,0.986586,0.987631,0.082279,0.9308,0.549002,0.867703,0.175401,0.249809,0.0323813,0.997362,0.497307,0.311425,0.278994,0.623103,0.639478,0.176656,0.216811,0.485825,0.660999,0.124214,0.0681482,0.938423,0.697593,0.811845,0.139171,0.564053,0.859839,0.497305,0.0667238,0.306447,0.790644,0.745138,0.276938,0.311453,0.354144,0.594358,0.763994,0.740721,0.90958,0.435116,0.510197,0.806049,0.939789,0.213673,0.787604,0.863753,0.79554,0.936198,0.308065,0.150544,0.531492,0.378187,0.362484,0.226084,0.522999,0.159426,0.17564,0.251368,0.55557,0.239944,0.528634,0.366906,0.385911,0.810545,0.902544,0.942646,0.865674,0.0820941,0.0373778,0.136688,0.0459101,0.491481,0.276896,0.229043,0.584036,0.855305,0.100431,0.108961,0.255108,0.433644,0.376439,0.661012,0.485398,0.748667,0.698334,0.395537,0.12348,0.278335,0.414253,0.704342,0.780982,0.174277,0.613558,0.357799,0.379725,0.897456,0.938919,0.144713,0.295529,0.554828,0.0590653,0.82366,0.888133,0.801973,0.623924,0.243961,0.615259,0.287791,0.9083,0.981324,0.965431,0.77666,0.601381,0.305552,0.309773,0.313755,0.0565081,0.193466,0.440997,0.0569476,0.501932,0.836712,0.792383,0.943797,0.32144,0.568183,0.186175,0.709243,0.912589,0.0549359,0.138895,0.0737524,0.258796,0.637091,0.92754,0.827523,0.899172,0.806981,0.788755,0.201824,0.726643,0.655762,0.545416,0.950988,0.842632,0.849839,0.786399,0.0415264,0.716264,0.923238,0.366639,0.162112,0.959489,0.36241,0.287372,0.395223,0.0295462,0.490097,0.018181,0.336204,0.852523,0.573946,0.138926,0.742837,0.738815,0.929033,0.109671,0.958451,0.0712393,0.558802,0.656142,0.475107,0.684147,0.20398,0.851533,0.249728,0.024637,0.0244086,0.0228896,0.325152,0.225825,0.451634,0.476469,0.228723,0.00784582,0.844561,0.776622,0.396564,0.714604,0.130521,0.383709,0.524417,0.271926,0.0660335,0.143304,0.760223,0.166741,0.17268,0.801358,0.987183,0.684861,0.552695,0.00813586,0.104892,0.866988,0.176876,0.58048,0.286304,0.742323,0.315127,0.185456,0.979762,0.315269,0.582388,0.121266,0.404892,0.845302,0.582962,0.635199,0.360735,0.316033,0.419751,0.321298,0.674671,0.457472,0.9891,0.693258,0.838313,0.588356,0.24185,0.408867,0.897051,0.589643,0.149115,0.458864,0.284231,0.274307,0.364582,0.902993,0.846856,0.319452,0.412319,0.413753,0.111765,0.550908,0.132419,0.486096,0.159752,0.250828,0.0478415,0.40986,0.588885,0.837951,0.0706192,0.843655,0.977359,0.391206,0.355581,0.479027,0.739209,0.350071,0.39032,0.137417,0.161005,0.187655,0.48039,0.403097,0.542955,0.51279,0.779241,0.195194,0.566417,0.47136,0.715916,0.917755,0.590973,0.0673763,0.255363,0.350635,0.623751,0.945603,0.455778,0.919384,0.467346,0.0743802,0.00568813,0.708204,0.650985,0.753639,0.971761,0.74215,0.917164,0.851372,0.297688,0.99511,0.950795,0.475899,0.28231,0.739203,0.126297,0.557109,0.37781,0.148091,0.784492,0.0756119,0.145894,0.666726,0.751633,0.107664,0.280749,0.953521,0.281426,0.425794,0.567359,0.601331,0.619117,0.35167,0.950052,0.382705,0.999144,0.599392,0.910548,0.590877,0.608912,0.633963,0.709019,0.210117,0.332623,0.90103,0.878948,0.524351,0.577399,0.206749,0.94019,0.963158,0.218913,0.209682,0.110619,0.343703,0.547687,0.0642816,0.0809973,0.485348,0.15133,0.164604,0.386251,0.5607,0.462095,0.208766,0.778467,0.313139,0.0595731,0.890344,0.20242,0.306353,0.257361,0.628435,0.608383,0.422696,0.0312865,0.0934389,0.992757,0.308305,0.931664,0.62301,0.150085,0.5646,0.942508,0.793038,0.253988,0.265605,0.13177,0.204394,0.618103,0.380307,0.470439,0.605616,0.92077,0.0287707,0.180769,0.241613,0.613154,0.412284,0.234399,0.339735,0.985582,0.431517,0.0870551,0.724294,0.15638,0.372097,0.388273,0.8047,0.797314,0.747155,0.537568,0.441579,0.931146,0.692495,0.782438,0.360564,0.330941,0.77216,0.195929,0.291512,0.218158,0.489273,0.711233,0.363915,0.00727254,0.670481,0.552551,0.127264,0.160598,0.205424,0.0755996,0.331556,0.32867,0.486695,0.431396,0.661202,0.211878,0.0537705,0.0933688,0.104334,0.418622,0.318371,0.350061,0.209758,0.231452,0.917085,0.293158,0.955672,0.618241,0.854995,0.634361,0.532226,0.703435,0.121134,0.954295,0.939909,0.645181,0.75358,0.416306,0.383807,0.514848,0.2743,0.534122,0.691335,0.284003,0.176006,0.288626,0.52573,0.589143,0.0485803,0.0135928,0.129001,0.653769,0.856415,0.794733,0.121724,0.368538,0.165445,0.470674,0.163488,0.0817503,0.15949,0.554751,0.207739,0.76518,0.139207,0.943794,0.0184509,0.0314164,0.263711,0.855599,0.608863,0.634347,0.761708,0.644275,0.139821,0.998041,0.976963,0.238645,0.496709,0.566078,0.0636632,0.255901,0.85597,0.529361,0.513005,0.700072,0.0174717,0.224803,0.225688,0.830842,0.878686,0.766157,0.975289,0.321306,0.654758,0.62419,0.0597992,0.943711,0.363034,0.376076,0.590808,0.670242,0.43837,0.584491,0.155446,0.240019,0.301138,0.763828,0.756367,0.158449,0.363976,0.605655,0.583521,0.987324,0.74094,0.952744,0.0870027,0.0759986,0.91594,0.356778,0.820788,0.0540173,0.186454,0.835581,0.587287,0.33006,0.214507,0.590395,0.394092,0.297867,0.55301,0.778746,0.642049,|0.264593,0.399566,0.0036419,0.698913,0.865999,0.776097,0.378805,0.216246,0.500748,0.256989,0.621969,0.0290134,0.823736,0.523432,0.7307,0.632698,0.499479,0.105191,0.663922,0.218103,0.0239083,0.862276,0.17727,0.514312,0.991553,0.672417,0.426316,0.240102,0.109518,0.427819,0.454823,0.304989,0.352638,0.149768,0.763103,0.552247,0.468539,0.488469,0.578702,0.64163,0.688869,0.184792,0.949003,0.426692,0.61988,0.498791,0.780607,0.187844,0.592781,0.165086,0.863326,0.255205,0.431282,0.536424,0.497642,0.19204,0.292669,0.692518,0.110735,0.770225,0.156749,0.546981,0.975026,0.35479,0.205881,0.996198,0.756868,0.114254,0.437778,0.804126,0.0153826,0.242976,0.400851,0.782395,0.383146,0.199678,0.60429,0.449235,0.381226,0.412244,0.00394881,0.132569,0.953323,0.653648,0.935926,0.360068,0.555949,0.099106,0.300821,0.840138,0.774522,0.519475,0.973686,0.715816,0.13879,0.0817409,0.174384,0.0645051,0.0440511,0.771562,0.961143,0.341919,0.247108,0.53089,0.641944,0.549781,0.0274284,0.00401706,0.138728,0.118939,0.362607,0.509052,0.885137,0.639621,0.467824,0.569491,0.769303,0.111846,0.0313961,0.20885,0.156238,0.283572,0.466876,0.851816,0.17366,0.357395,0.923439,0.397552,0.394543,0.973697,0.141929,0.311971,0.497693,0.942767,0.858567,0.11908,0.833909,0.801161,0.869663,0.984007,0.268278,0.0699603,0.947415,0.537566,0.696961,0.546927,0.979594,0.949154,0.864724,0.873583,0.188918,0.247682,0.998771,0.21511,0.399228,0.782476,0.0114209,0.100712,0.132424,0.981956,0.755443,0.821346,0.637344,0.760593,0.664538,0.835456,0.496431,0.985624,0.443274,0.0979433,0.915602,0.357107,0.761324,0.941194,0.78949,0.573181,0.260368,0.123996,0.399983,0.781657,0.892924,0.43221,0.760203,0.171467,0.327645,0.553598,0.785075,0.913954,0.822715,0.264071,0.954464,0.374462,0.603284,0.478134,0.407899,0.76484,0.758471,0.70131,0.0167483,0.768976,0.813902,0.324309,0.4993,0.23143,0.692861,0.760518,0.467931,0.770639,0.0692586,0.108933,0.258879,0.608861,0.0840204,0.887223,0.538811,0.698488,0.150098,0.503515,0.0371823,0.784267,0.0140363,0.578709,0.564512,0.564193,0.368732,0.0987672,0.543769,0.366275,0.773511,0.469016,0.979077,0.0193592,0.933714,0.532073,0.187552,0.96706,0.18844,0.478612,0.0650228,0.900983,0.18767,0.449471,0.713571,0.437088,0.449569,0.326924,0.151975,0.957907,0.45884,0.0370942,0.538781,0.27821,0.839699,0.39434,0.873011,0.203253,0.892069,0.621842,0.760682,0.932122,0.0992229,0.309507,0.121794,0.927946,0.2373,0.127753,0.234084,0.0961997,0.00507802,0.687419,0.258062,0.447197,0.838266,0.988068,0.73088,0.964788,0.756731,0.755749,0.643915,0.0694363,0.547254,0.778094,0.557878,0.143721,0.689205,0.966011,0.449806,0.941251,0.264681,0.633712,0.824909,0.227921,0.87651,0.20863,0.497169,0.786774,0.072704,0.21905,0.187952,0.425424,0.560885,0.395416,0.864822,0.609336,0.681043,0.731723,0.730457,0.950272,0.929167,0.544527,0.202156,0.186315,0.512186,0.148357,1.13845e-05,0.312607,0.182249,0.554881,0.918221,0.0018509,0.736999,0.70773,0.451198,0.769936,0.244928,0.812866,0.860041,0.919191,0.898988,0.0821754,0.985518,0.214808,0.33235,0.586881,0.115735,0.667776,0.878615,0.742459,0.24654,0.79072,0.645742,0.301984,0.788627,0.425106,0.235703,0.697715,0.180007,0.709685,0.656103,0.805013,0.521343,0.437843,0.0170841,0.0764557,0.565066,0.108325,0.452212,0.394428,0.620273,0.0957467,0.231874,0.78763,0.855619,0.0356535,0.335582,0.772311,0.0207171,0.447273,0.940361,0.908639,0.945508,0.832501,0.591633,0.292592,0.471496,0.231395,0.742234,0.412903,0.540183,0.0737876,0.147286,0.783353,0.205964,0.111359,0.629495,0.00691748,0.309058,0.196212,0.672294,0.683402,0.0931166,0.464996,0.206456,0.707128,0.460443,0.365087,0.622973,0.979216,0.448779,0.790036,0.412151,0.640002,0.779678,0.20673,0.0489467,0.469938,0.412131,0.61371,0.529711,0.250333,0.7697,0.530503,0.00843191,0.310797,0.871021,0.404324,0.393517,0.897593,0.72945,0.474482,0.0551981,0.870446,0.240397,0.861305,0.703575,0.114507,0.936427,0.721659,0.835308,0.239848,0.583281,0.939572,0.00579298,0.731092,0.37096,0.450954,0.784897,0.0803407,0.881082,0.0974836,0.817869,0.522484,0.639029,0.295841,0.888428,0.426624,0.00890011,0.817611,0.189174,0.526647,0.884068,0.937933,0.135944,0.651594,0.282025,0.549203,0.967152,0.252777,0.897375,0.315787,0.658602,0.829759,0.799493,0.0868989,0.0911382,0.544923,0.913661,0.262224,0.140288,0.194562,0.231843,0.648021,0.35808,0.186593,0.809595,0.938334,0.928249,0.260718,0.159183,0.215616,0.455272,0.306504,0.275267,0.354356,0.573227,0.104966,0.809546,0.0984948,0.419797,0.0821963,0.97773,0.713452,0.182543,0.196395,0.425118,0.670855,0.522809,0.310767,0.593114,0.42316,0.0373381,0.509735,0.344627,0.19325,0.604079,0.504643,0.821564,0.0936564,0.115569,0.577725,0.6097,0.814582,0.119404,0.616297,0.180109,0.442832,0.657065,0.021078,0.890684,0.638254,0.887166,0.790527,0.306146,0.0139754,0.369337,0.281051,0.750887,0.600952,0.870258,0.922107,0.361016,0.519733,0.145465,6.1214e-05,0.747976,0.38336,0.93579,0.478637,0.653717,0.800477,0.496036,0.452679,0.453401,0.880528,0.954775,0.47395,0.412617,0.917835,0.14216,0.366305,0.6069,0.996542,0.969296,0.0568113,0.705057,0.449346,0.231566,0.0556638,0.254297,0.265707,0.126454,0.410648,0.611556,0.545308,0.595361,0.628516,0.900323,0.398674,0.139289,0.414127,0.86318,0.124523,0.453516,0.416266,0.128641,0.800516,0.2462,0.385117,0.863298,0.622924,0.356265,0.994802,0.44131,0.655068,0.76715,0.27523,0.472895,0.834654,0.27239,0.764181,0.0766237,0.349438,0.0721403,0.34236,0.305622,0.490986,0.0678724,0.177519,0.491213,0.916484,0.462208,0.0731725,0.243492,0.917339,0.879178,0.619067,0.18705,0.880837,0.210621,0.0733477,0.147302,0.249665,0.0200992,0.855432,0.34938,0.996017,0.874755,0.700783,0.362233,0.833751,0.280311,0.11492,0.122595,0.665327,0.512364,0.259504,0.319947,0.812378,0.940521,0.389425,0.901375,0.127827,0.925845,0.871369,0.975811,0.408665,0.402612,0.375878,0.920156,0.1494,0.867105,0.905686,0.691825,0.430493,0.890893,0.644832,0.834566,0.548914,0.903346,0.225314,0.925806,0.940629,0.709687,0.780628,0.525539,0.276333,0.357107,0.940045,0.519814,0.414139,0.67892,0.53975,0.205937,0.169414,0.105103,0.371698,0.349673,0.32067,0.403587,0.888411,0.305918,0.971478,0.530092,0.202323,0.94871,0.45667,0.239442,0.730532,0.28254,0.559213,0.770259,0.895545,0.286421,0.615772,0.0850809,0.892647,0.247504,0.846927,0.557391,0.916427,0.1564,0.346037,0.334767,0.27001,0.81306,0.182849,0.627508,0.567647,0.524228,0.140702,0.539061,0.837982,0.676046,0.439176,0.676798,0.248974,0.906848,0.674383,0.863975,0.461037,0.775282,0.177808,0.587299,0.937522,0.681865,0.131163,0.204091,0.579257,0.00887889,0.910074,0.201427,0.260045,0.55085,0.724138,0.831681,0.343664,0.913718,0.84119,0.659024,0.648123,0.622735,0.192646,0.581182,0.273511,0.919668,0.541488,0.225961,0.239359,0.194475,0.186815,0.287925,0.750591,0.545914,0.649771,0.349857,0.998267,0.421298,0.849223,0.465214,0.861313,0.453853,0.453997,0.743482,0.218696,0.522662,0.77312,0.996033,0.520055,0.172224,0.264218,0.678422,0.89744,0.684562,0.632471,0.99868,0.939539,0.717003,0.36293,0.88499,0.441121,0.532177,0.476869,0.625703,0.341251,0.233315,0.657231,0.846399,0.245972,0.198388,0.636306,0.969418,0.0584347,0.89383,0.495151,0.0312358,0.349384,0.398298,0.147953,0.674628,0.11399,0.26246,0.923764,0.420004,0.930969,0.328927,0.201845,0.051209,0.522252,0.488155,0.0616221,0.682925,0.730384,0.757941,0.872872,0.596997,0.146568,0.0500436,0.761628,0.952127,0.359156,0.266877,0.717256,0.584893,0.357486,0.78998,0.136526,0.0539384,0.555536,0.172953,0.730651,0.315104,0.644301,0.302252,0.970549,0.332508,0.210675,0.365524,0.107693,0.653346,0.342287,0.433936,0.904559,0.421212,0.50167,0.212345,0.52179,0.963351,0.221694,0.969885,0.226733,0.437558,0.719861,0.941718,0.225292,0.0500343,0.398409,0.44241,0.423359,0.52896,0.416269,0.303824,0.740054,0.988559,0.630086,0.626201,0.159582,0.457623,0.118252,0.524427,0.975632,0.352192,0.259118,0.195222,0.337452,0.593406,0.603977,0.528578,0.8747,0.887099,0.660342,0.790481,0.365365,0.183932,0.627608,0.116834,0.102253,0.991712,0.810216,0.259711,0.590419,0.0186924,0.986525,0.540597,0.829756,0.754032,0.0184703,0.846581,0.688368,0.265562,0.801541,0.549025,0.409036,0.282292,0.913254,0.509842,0.960812,0.560242,0.232956,0.380656,0.446294,0.341502,0.469552,0.908428,0.135382,0.0514529,0.973888,0.505611,0.812526,0.802521,0.497885,0.0284976,0.346436,0.666307,0.681285,0.699862,0.820485,0.819701,0.409689,0.196022,0.0797664,0.600733,0.487536,0.103992,0.498973,0.8094,0.348057,0.241146,0.119509,0.064165,0.417687,0.042816,0.00862616,0.792898,0.847906,0.138161,0.375916,0.716325,0.0200637,0.285656,0.343095,0.901598,0.295442,0.196383,0.924725,0.421708,0.718267,0.590335,0.234835,0.859428,0.9226,0.666397,0.788052,0.93235,0.431507,0.411706,0.964701,0.846056,0.590728,0.0215422,0.0923662,0.564685,0.253794,0.931804,0.525922,0.0399876,0.733602,0.144661,0.581352,0.227531,0.459268,0.212165,0.96284,0.123848,0.230746,0.511927,0.842772,0.705725,0.383613,0.30072,0.117284,0.314087,0.338122,0.325606,0.0795828,0.320574,0.00978017,0.558771,0.0591074,0.0491168,0.0964135,0.240328,0.683183,0.681272,0.225368,0.535146,0.656146,0.460733,0.893835,0.789569,0.401092,|0.586036,0.188183,0.243487,0.346289,0.695998,0.165609,0.621314,0.173128,0.627107,0.946357,0.879801,0.786198,0.686332,0.265276,0.646602,0.119087,0.803295,0.851172,0.42797,0.809395,0.115931,0.389736,0.0401928,0.463716,0.613939,0.134126,0.771488,0.552271,0.728286,0.227689,0.703091,0.684669,0.533498,0.871535,0.685761,0.131269,0.821062,0.555568,0.515187,0.319512,0.368349,0.848858,0.682983,0.636106,0.6507,0.733247,0.377124,0.830733,0.366536,0.364524,0.896851,0.650458,0.561211,0.440916,0.787394,0.86594,0.120602,0.686531,0.797571,0.629529,0.392963,0.364921,0.212844,0.705729,0.733336,0.652019,0.00563097,0.113175,0.375484,0.325341,0.2077,0.541104,0.475826,0.0919833,0.761182,0.089514,0.467615,0.473255,0.587498,0.340572,0.927582,0.383126,0.837778,0.317974,0.621746,0.918264,0.384801,0.921524,0.821125,0.503174,0.512318,0.204123,0.584114,0.583033,0.00857818,0.449262,0.999813,0.321435,0.0299149,0.99781,0.110492,0.052123,0.000125706,0.153642,0.615144,0.525969,0.425008,0.0397975,0.430805,0.925337,0.710082,0.599108,0.0208266,0.198909,0.948154,0.095077,0.817539,0.429499,0.50877,0.0758823,0.842934,0.595064,0.304123,0.85907,0.673724,0.0625759,0.267203,0.875627,0.763823,0.17169,0.0180035,0.717383,0.31464,0.967459,0.51046,0.180181,0.219046,0.249061,0.554709,0.461114,0.138763,0.040625,0.679908,0.596547,0.615576,0.350863,0.741219,0.520317,0.0758328,0.998194,0.622708,0.891359,0.210366,0.627783,0.654311,0.177659,0.226822,0.80535,0.308947,0.208116,0.966274,0.457329,0.3005,0.402952,0.505901,0.966031,0.939569,0.994933,0.801302,0.804768,0.326884,0.688209,0.61425,0.623028,0.8412,0.655756,0.427799,0.252486,0.7308,0.0139657,0.805302,0.0180879,0.614633,0.281833,0.75862,0.330788,0.519022,0.578932,0.303165,0.935527,0.219406,0.309799,0.433841,0.478025,0.72223,0.0597173,0.506445,0.427112,0.676822,0.689043,0.122926,0.245975,0.198521,0.352522,0.633635,0.128942,0.794199,0.134427,0.372054,0.625243,0.789142,0.599699,0.19079,0.810337,0.355573,0.236943,0.392861,0.469471,0.110128,0.854727,0.813461,0.245146,0.227757,0.761544,0.768917,0.99904,0.224383,0.404585,0.987028,0.827265,0.21735,0.910912,0.935394,0.277277,0.453478,0.0414374,0.234984,0.32102,0.141755,0.455691,0.188773,0.738471,0.667777,0.671764,0.762703,0.976753,0.568746,0.231262,0.505774,0.0323796,0.21377,0.151708,0.551905,0.769607,0.868459,0.351907,0.452761,0.601497,0.526201,0.23388,0.827704,0.159039,0.0263702,0.255338,0.58339,0.306652,0.591468,0.698959,0.460278,0.641946,0.296672,0.0785914,0.559385,0.343591,0.653216,0.0804477,0.765856,0.963579,0.202809,0.0236158,0.937986,0.17975,0.157962,0.37343,0.270537,0.694516,0.455475,0.883762,0.459708,0.779917,0.993425,0.736069,0.0367973,0.421135,0.06263,0.160603,0.616672,0.272012,0.112017,0.974003,0.248859,0.564864,0.415026,0.117362,0.687895,0.246841,0.805254,0.718843,0.194147,0.19899,0.0365422,0.947715,0.721652,0.808035,0.693157,0.860372,0.391643,0.335992,0.128095,0.234676,0.582408,0.313012,0.381568,0.665004,0.772262,0.437976,0.342105,0.257877,0.0489687,0.462056,0.028379,0.624197,0.794284,0.506281,0.795004,0.699095,0.108562,0.793472,0.576603,0.789477,0.861079,0.0214383,0.710531,0.76691,0.516048,0.0532671,0.0323302,0.841849,0.754678,0.859022,0.978161,0.408176,0.942941,0.206515,0.211719,0.114723,0.389195,0.1558,0.687799,0.176539,0.0846381,0.762385,0.266388,0.800387,0.299084,0.534485,0.474753,0.535391,0.396239,0.325758,0.64272,0.852561,0.653635,0.296045,0.716063,0.438755,0.739554,0.785491,0.0579874,0.365219,0.391807,0.212257,0.0355212,0.294267,0.202522,0.19613,0.439756,0.745752,0.282178,0.184846,0.0220355,0.248438,0.8541,0.434727,0.882957,0.122384,0.750798,0.155989,0.329431,0.434468,0.324718,0.447527,0.986392,0.925256,0.731055,0.431029,0.234356,0.954882,0.361849,0.610116,0.259138,0.294241,0.900716,0.934414,0.950648,0.220678,0.105353,0.413244,0.104196,0.0639928,0.488507,0.619912,0.338608,0.878583,0.767468,0.372843,0.835146,0.671743,0.90704,0.776121,0.176053,0.623622,0.790001,0.435655,0.0552396,0.00476211,0.146826,0.916008,0.97612,0.73295,0.175999,0.736138,0.0999532,0.82241,0.393305,0.565885,0.7762,0.619332,0.28298,0.792772,0.949706,0.294892,0.546474,0.843144,0.435148,0.181844,0.06411,0.507582,0.0365071,0.795712,0.209743,0.279531,0.990538,0.739925,0.593329,0.704874,0.623549,0.398091,0.730388,0.270732,0.946792,0.0629517,0.151218,0.100769,0.65359,0.466533,0.873786,0.993315,0.756476,0.275765,0.517961,0.453449,0.287432,0.695927,0.843227,0.797794,0.598979,0.719396,0.844031,0.201487,0.932256,0.67786,0.947042,0.983153,0.653745,0.0484146,0.55426,0.136666,0.49443,0.969745,0.651138,0.770052,0.0920735,0.901949,0.164767,0.642415,0.341041,0.0293213,0.231458,0.457869,0.154872,0.0251578,0.171727,0.787184,0.421788,0.317267,0.904712,0.890752,0.211949,0.0784038,0.979521,0.512361,0.9524,0.97208,0.822284,0.292718,0.498277,0.778119,0.886728,0.669507,0.311937,0.78295,0.499662,0.207077,0.435518,0.992857,0.640256,0.218717,0.644903,0.232372,0.125895,0.318666,0.197286,0.867586,0.857161,0.917616,0.85011,0.0382867,0.36941,0.263779,0.853255,0.951342,0.0247474,0.655551,0.633155,0.65115,0.639534,0.024455,0.0733243,0.66989,0.379804,0.0834563,0.188091,0.288933,0.978172,0.846991,0.801607,0.12037,0.236407,0.210371,0.196715,0.779793,0.66032,0.218055,0.631805,0.865849,0.0720495,0.12669,0.0686141,0.70164,0.946612,0.76482,0.926456,0.470924,0.250187,0.316897,0.831057,0.453836,0.00281346,0.216442,0.490426,0.127206,0.755804,0.750212,0.462387,0.32018,0.408276,0.574448,0.635913,0.707028,0.45921,0.231124,0.659651,0.0194286,0.0349039,0.532526,0.22963,0.609968,0.866891,0.274473,0.272265,0.326971,0.348152,0.990555,0.294212,0.284461,0.612214,0.344155,0.14255,0.587227,0.449343,0.104826,0.593244,0.908734,0.204256,0.158043,0.305485,0.260245,0.741107,0.277024,0.0019089,0.193652,0.0385768,0.142949,0.651594,0.38007,0.476318,0.395229,0.620193,0.861995,0.908796,0.150511,0.244545,0.185537,0.502693,0.782451,0.971553,0.0557349,0.0638652,0.870922,0.1003,0.0459094,0.547617,0.216791,0.180575,0.346841,0.567987,0.437459,0.0973073,0.558457,0.870666,0.778609,0.614251,0.764251,0.224824,0.670485,0.826391,0.715157,0.317179,0.690882,0.595132,0.0458547,0.953006,0.630433,0.492374,0.558433,0.421103,0.898103,0.344703,0.156029,0.200838,0.163896,0.929195,0.595249,0.55938,0.59792,0.543438,0.847918,0.0675269,0.320925,0.934752,0.581461,0.0491707,0.579324,0.719398,0.392314,0.142844,0.256638,0.109499,0.170301,0.243052,0.234904,0.400221,0.851878,0.254373,0.417449,0.70913,0.15487,0.488382,0.138704,0.795914,0.412644,0.667818,0.729574,0.70682,0.0649046,0.553978,0.844054,0.575664,0.299724,0.224371,0.954878,0.147901,0.651812,0.818783,0.657572,0.0249567,0.12556,0.574982,0.0967985,0.543938,0.563637,0.740129,0.146219,0.631609,0.422836,0.815788,0.0046466,0.93882,0.360093,0.972192,0.862184,0.519404,0.331211,0.242544,0.278725,0.798945,0.701626,0.188001,0.108964,0.377633,0.717033,0.94298,0.921556,0.060317,0.500714,0.675057,0.628358,0.0078038,0.830091,0.23721,0.266122,0.247626,0.654971,0.859507,0.242628,0.863547,0.56264,0.503433,0.059195,0.754418,0.354485,0.960175,0.0411184,0.326768,0.899318,0.619162,0.210472,0.967857,0.527946,0.536505,0.733442,0.246379,0.541042,0.65478,0.352405,0.442295,0.833143,0.85201,0.381355,0.67385,0.34016,0.824456,0.665743,0.985167,0.0316077,0.417692,0.947041,0.0343293,0.307158,0.93466,0.277775,0.75743,0.221281,0.404212,0.613635,0.197595,0.488362,0.172751,0.886015,0.972544,0.918252,0.481734,0.0722148,0.353117,0.764954,0.713217,0.752838,0.907469,0.963413,0.731287,0.284214,0.737572,0.107319,0.0976425,0.0464103,0.0955379,0.107241,0.385239,0.298192,0.743684,0.55244,0.53163,0.281599,0.0552534,0.990532,0.83188,0.395347,0.0136563,0.856016,0.759644,0.783776,0.823478,0.91347,0.907964,0.403699,0.584987,0.394371,0.717556,0.627908,0.899493,0.629201,0.0437407,0.962798,0.632798,0.229072,0.762767,0.403492,0.00144815,0.735366,0.426931,0.633015,0.0195749,0.179423,0.624602,0.89752,0.817917,0.991709,0.0442414,0.860627,0.381364,0.214199,0.806759,0.997506,0.835523,0.0865083,0.0309988,0.870326,0.555176,0.333168,0.617523,0.235274,0.499268,0.662008,0.622744,0.858175,0.813831,0.669442,0.462191,0.00727749,0.430765,0.891753,0.857955,0.161281,0.424947,0.184532,0.486993,0.0494598,0.00753087,0.775848,0.401429,0.807282,0.683363,0.458515,0.588404,0.728415,0.416598,0.646449,0.861434,0.21028,0.60093,0.342128,0.18599,0.309296,0.407688,0.709391,0.181866,0.115087,0.0495651,0.792238,0.0397353,0.418685,0.78466,0.115441,0.0751151,0.846413,0.257746,0.979524,0.0375385,0.608857,0.731503,0.0337984,0.864118,0.0838953,0.874135,0.927696,0.304791,0.211384,0.50374,0.476398,0.697187,0.00706035,0.121756,0.747287,0.710499,0.892603,0.0727417,0.210146,0.797649,0.587992,0.00245392,0.31714,0.856438,0.0884674,0.188475,0.268602,0.936176,0.164265,0.319631,0.335242,0.830312,0.71707,0.701122,0.540526,0.624793,0.890397,0.793398,0.300988,0.963253,0.0158687,0.251599,0.317984,0.00826174,0.514998,0.617173,0.720389,0.776777,0.532284,0.361127,0.441128,0.761981,0.897193,0.296729,0.314364,0.584193,0.426453,0.985315,0.255094,0.0494007,0.190549,0.602396,0.983745,0.448353,0.985909,0.541096,0.864002,0.156756,0.800291,0.510484,0.523336,|0.52745,0.000403881,0.555363,0.402128,0.385469,0.773575,0.830333,0.806149,0.253443,0.360712,0.807606,0.345253,0.371957,0.355326,0.20958,0.832549,0.263112,0.898726,0.624526,0.358778,0.788444,0.78887,0.609931,0.0991126,0.134096,0.896673,0.225343,0.12932,0.952307,0.536476,0.391684,0.520305,0.171426,0.0813313,0.666669,0.0361995,0.0142544,0.189109,0.452053,0.176733,0.876658,0.186906,0.684203,0.196857,0.0869532,0.870124,0.643183,0.682329,0.235231,0.826975,0.0465282,0.109552,0.112633,0.412686,0.795758,0.38135,0.265956,0.494366,0.190367,0.375461,0.839933,0.19079,0.533634,0.254647,0.954024,0.236199,0.991278,0.0566007,0.876179,0.280532,0.544837,0.478691,0.0855553,0.704038,0.927201,0.188918,0.387083,0.180032,0.175771,0.0746962,0.799467,0.0591012,0.185625,0.117356,0.137166,0.48627,0.745741,0.774503,0.37616,0.227066,0.492206,0.771748,0.134667,0.621693,0.747464,0.38455,0.800204,0.403395,0.166061,0.198042,0.962235,0.102305,0.753244,0.721767,0.448053,0.464042,0.355325,0.54261,0.0965441,0.178292,0.528496,0.751505,0.039735,0.454832,0.560669,0.376067,0.961146,0.0559077,0.396824,0.599511,0.407306,0.0986159,0.721074,0.250955,0.4704,0.314168,0.943575,0.869509,0.398177,0.605819,0.0187831,0.89342,0.377705,0.340271,0.908787,0.196063,0.716053,0.865247,0.141809,0.282055,0.41779,0.356635,0.529948,0.835437,0.370808,0.9629,0.394541,0.289901,0.111067,0.172932,0.0197362,0.821138,0.419922,0.933165,0.485896,0.198295,0.190889,0.788171,0.550619,0.753034,0.123184,0.435687,0.819984,0.315922,0.525811,0.602019,0.620882,0.761311,0.521858,0.460104,0.547556,0.379436,0.652721,0.774316,0.686342,0.357972,0.370728,0.00511956,0.0383254,0.885636,0.768329,0.338503,0.552231,0.839032,0.833132,0.0305565,0.416599,0.602033,0.369408,0.349787,0.85781,0.595556,0.587781,0.109181,0.78545,0.0407519,0.211468,0.0616661,0.206264,0.887388,0.921119,0.0572531,0.122009,0.488516,0.703519,0.518803,0.717326,0.0446603,0.439131,0.0278655,0.551628,0.343401,0.606632,0.0375268,0.172344,0.751482,0.490422,0.196847,0.75314,0.667756,0.476224,0.330297,0.155657,0.125019,0.36901,0.473793,0.486776,0.899599,0.615808,0.126024,0.569303,0.545766,0.706229,0.939864,0.174112,0.452521,0.82679,0.0725036,0.127108,0.422488,0.861328,0.808541,0.0656646,0.881388,0.874201,0.991999,0.91785,0.971312,0.516072,0.437754,0.967036,0.507305,0.756083,0.205918,0.998725,0.437962,0.422389,0.0772246,0.918705,0.0235943,0.722868,0.558912,0.675287,0.0780507,0.35246,0.878695,0.544738,0.170184,0.301898,0.154588,0.956866,0.908775,0.581433,0.135851,0.559848,0.882716,0.318657,0.12791,0.113989,0.802318,0.000778615,0.902536,0.527207,0.182161,0.66278,0.290583,0.135085,0.932464,0.802111,0.898605,0.695754,0.0828882,0.626571,0.337746,0.157583,0.563011,0.567482,0.475222,0.0727183,0.695434,0.7111,0.321983,0.280266,0.0963337,0.523161,0.795717,0.695818,0.78351,0.150359,0.0312473,0.943097,0.636599,0.126775,0.776619,0.784546,0.232911,0.0741051,0.284371,0.192071,0.362452,0.153178,0.467239,0.588456,0.62425,0.159842,0.490388,0.236154,0.564107,0.604229,0.324099,0.504861,0.663567,0.758334,0.408339,0.208191,0.47558,0.483749,0.539386,0.787914,0.406016,0.07487,0.749892,0.624657,0.0180018,0.691644,0.679822,0.861678,0.893745,0.709383,0.0422244,0.29613,0.286383,0.813566,0.00412989,0.161948,0.680352,0.150631,0.742617,0.30378,0.749896,0.240516,0.629898,0.454381,0.655995,0.459548,0.579724,0.737805,0.510653,0.757952,0.917272,0.371438,0.0388841,0.44066,0.969457,0.876582,0.479099,0.636556,0.929946,0.537781,0.371525,0.0681806,0.492971,0.515539,0.135725,0.0661957,0.614809,0.345226,0.699512,0.241964,0.259651,0.862245,0.266755,0.38967,0.0960899,0.971799,0.829495,0.560133,0.577171,0.452572,0.656201,0.483096,0.896625,0.547258,0.922951,0.948324,0.164068,0.526777,0.0575989,0.810527,0.442088,0.218881,0.00633007,0.796063,0.741545,0.631974,0.187608,0.129913,0.260436,0.147917,0.412139,0.767651,0.754637,0.213582,0.421087,0.507453,0.831418,0.167917,0.784048,0.594502,0.145683,0.976353,0.415178,0.05856,0.480835,0.343808,0.218967,0.462501,0.324356,0.19353,0.962103,0.0103574,0.377064,0.321259,0.547754,0.0353134,0.391732,0.99114,0.279675,0.0866066,0.511898,0.254674,0.471109,0.209345,0.467373,0.619353,0.952427,0.0579848,0.0730993,0.097591,0.126609,0.254997,0.200399,0.140751,0.00532532,0.919296,0.882303,0.680825,0.0710708,0.0924981,0.817634,0.826384,0.597083,0.613865,0.751562,0.160215,0.0754852,0.244378,0.940606,0.0534212,0.258826,0.247004,0.520484,0.751387,0.633352,0.687643,0.351611,0.555162,0.542351,0.374938,0.172059,0.947801,0.458065,0.617448,0.601955,0.460325,0.805588,0.440682,0.0525378,0.905701,0.567885,0.0928532,0.631013,0.830637,0.793091,0.503696,0.382962,0.908837,0.152983,0.530752,0.0608229,0.504641,0.39462,0.345043,0.889501,0.234844,0.401581,0.106461,0.870631,0.257926,0.00387597,0.773179,0.587711,0.739334,0.576289,0.211713,0.898196,0.0645244,0.5306,0.360939,0.168948,0.455323,0.267619,0.308155,0.585641,0.791363,0.697716,0.504317,0.592199,0.841531,0.140615,0.603403,0.62524,0.226921,0.827227,0.414313,0.87698,0.148518,0.816109,0.450166,0.66127,0.944125,0.280479,0.0161212,0.938581,0.929446,0.029725,0.828411,0.627742,0.761724,0.340356,0.0256936,0.906008,0.706257,0.755015,0.916767,0.680567,0.757815,0.388989,0.231591,0.204202,0.975991,0.523485,0.988301,0.885761,0.974723,0.0593517,0.220897,0.597226,0.417646,0.463557,0.046742,0.98194,0.7412,0.787126,0.546998,0.313291,0.142349,0.400564,0.310841,0.537317,0.5929,0.173774,0.0229782,0.280573,0.350194,0.857023,0.839741,0.214771,0.971771,0.235839,0.838499,0.33681,0.105675,0.986754,0.572617,0.484032,0.657203,0.555498,0.491101,0.795019,0.924667,0.289527,0.665628,0.427585,0.562351,0.134195,0.00972003,0.227456,0.60877,0.943667,0.0901465,0.0395843,0.31684,0.771235,0.206263,0.667627,0.243709,0.259756,0.981713,0.692455,0.579472,0.0861422,0.819328,0.488073,0.555631,0.440196,0.0699933,0.713469,0.282222,0.661998,0.599546,0.515543,0.269036,0.760314,0.0833069,0.608155,0.99129,0.462636,0.57035,0.0563762,0.340274,0.781443,0.978186,0.0559107,0.69164,0.059025,0.658072,0.444717,0.333033,0.425081,0.918912,0.713027,0.68667,0.291427,0.658501,0.277049,0.336893,0.852583,0.295539,0.440537,0.172056,0.193615,0.308586,0.328007,0.844206,0.0533192,0.577765,0.415446,0.344801,0.214574,0.489471,0.0150136,0.602988,0.657325,0.879358,0.745705,0.926316,0.0279134,0.203573,0.610601,0.929505,0.759785,0.816214,0.581192,0.494781,0.216686,0.380086,0.037252,0.029833,0.84971,0.151661,0.85295,0.306725,0.176374,0.723279,0.376237,0.482806,0.91073,0.233474,0.000406444,0.955751,0.360181,0.139354,0.856089,0.434249,0.982231,0.0072459,0.759202,0.474935,0.507179,0.0548913,0.283686,0.381414,0.722454,0.648424,0.799096,0.13305,0.439419,0.631838,0.733045,0.0197588,0.307141,0.463341,0.486412,0.226756,0.218178,0.573699,0.109446,0.538166,0.578496,0.538309,0.388168,0.830499,0.644777,0.708247,0.481991,0.417607,0.547634,0.151398,0.00394326,0.0461537,0.107509,0.0412451,0.770071,0.322172,0.473428,0.722122,0.616934,0.569848,0.758791,0.696791,0.823079,0.155651,0.668433,0.130495,0.909617,0.164769,0.198096,0.341772,0.885027,0.395865,0.436626,0.845572,0.74625,0.67899,0.727542,0.0838056,0.157407,0.0965511,0.274509,0.626128,0.0684648,0.040744,0.447371,0.0510235,0.168879,0.0346209,0.929858,0.382318,0.140296,0.272038,0.374453,0.994606,0.675568,0.932714,0.209779,0.761801,0.826204,0.20327,0.862871,0.742758,0.748587,0.628278,0.0977927,0.787866,0.733079,0.989896,0.26598,0.495116,0.503722,0.555081,0.362701,0.468284,0.715759,0.591885,0.465549,0.34472,0.765473,0.686726,0.997231,0.388437,0.888022,0.187246,0.280575,0.875517,0.52097,0.755659,0.610685,0.34122,0.215103,0.855722,0.987288,0.379178,0.444946,0.622692,0.380137,0.276758,0.996033,0.478407,0.36393,0.370379,0.447786,0.225267,0.783719,0.82788,0.778286,0.763478,0.433729,0.137287,0.0129725,0.570818,0.0481095,0.300385,0.47515,0.78351,0.566185,0.802793,0.531118,0.0575057,0.738116,0.11828,0.536963,0.633332,0.259534,0.777588,0.88599,0.887701,0.251621,0.974292,0.70217,0.683086,0.125938,0.718805,0.348325,0.228945,0.975562,0.85508,0.44588,0.759963,0.617932,0.819011,0.754792,0.742565,0.140354,0.977634,0.222691,0.826095,0.465744,0.521191,0.576109,0.609615,0.86997,0.793041,0.536281,0.582838,0.00315088,0.319626,0.816428,0.734676,0.267913,0.0594236,0.472533,0.52474,0.0793132,0.0691526,0.450653,0.205602,0.0517514,0.278183,0.116799,0.974398,0.473957,0.552695,0.612952,0.422526,0.241184,0.275508,0.435527,0.71827,0.866323,0.202588,0.883254,0.322996,0.573927,0.0586619,0.416208,0.802808,0.87882,0.487731,0.486402,0.34085,0.653721,0.234761,0.296032,0.0281361,0.705222,0.828592,0.017028,0.187345,0.391151,0.361027,0.162891,0.463936,0.504163,0.110988,0.470679,0.532445,0.541927,0.922189,0.0820852,0.447405,0.716837,0.955006,0.890499,0.946153,0.792506,0.544926,0.527659,0.686814,0.299517,0.328524,0.752391,0.610678,0.626267,0.587515,0.330708,0.795783,0.561475,0.794567,0.0759045,0.0663924,0.62723,0.0710977,0.897293,0.00225663,0.835158,0.866136,0.0911359,0.0388042,0.760979,0.177407,0.595142,0.274458,0.953258,0.200643,0.935327,0.186954,0.615717,0.186511,0.37401,0.492384,0.728614,0.292957,0.157452,0.316146,0.678312,0.474819,0.773,0.377802,0.182669,|0.922183,0.643001,0.635785,0.835417,0.761955,0.387363,0.536275,0.0134823,0.818858,0.850484,0.0439444,0.814642,0.0530803,0.516423,0.926252,0.805016,0.736933,0.0527248,0.137656,0.270184,0.649536,0.850553,0.587997,0.533511,0.48069,0.56476,0.526404,0.151828,0.505591,0.610362,0.997275,0.271862,0.687855,0.606554,0.652167,0.209234,0.481757,0.82408,0.658212,0.786235,0.721682,0.307384,0.0993593,0.216977,0.733675,0.274718,0.665146,0.959598,0.488937,0.647776,0.535786,0.879502,0.887517,0.158995,0.0260631,0.840267,0.148254,0.813665,0.211032,0.635362,0.662516,0.0940458,0.320989,0.914584,0.0777041,0.289941,0.491476,0.497883,0.84514,0.362748,0.477316,0.831021,0.779557,0.588575,0.82068,0.228466,0.632445,0.10175,0.322782,0.374939,0.816729,0.467434,0.405529,0.397544,0.675816,0.577445,0.266767,0.0992931,0.828501,0.929085,0.335136,0.329957,0.245779,0.372854,0.786235,0.881349,0.411167,0.432947,0.506474,0.135305,0.31723,0.455483,0.425456,0.395551,0.357597,0.503371,0.0168833,0.925418,0.403553,0.283296,0.472498,0.162597,0.781737,0.913184,0.230907,0.202806,0.419084,0.852123,0.368939,0.749807,0.10603,0.699882,0.714969,0.508252,0.957223,0.128084,0.03331,0.188304,0.196446,0.831798,0.776202,0.239614,0.313995,0.91197,0.676292,0.638931,0.102051,0.0690026,0.495777,0.208871,0.314364,0.681655,0.00619316,0.539885,0.873156,0.0898648,0.988466,0.0543852,0.552816,0.548183,0.772814,0.400208,0.305358,0.0918258,0.0175959,0.0172786,0.848413,0.474502,0.772736,0.789233,0.456252,0.808366,0.38458,0.0430821,0.646947,0.859885,0.583153,0.521153,0.674427,0.340522,0.834689,0.254941,0.500471,0.45977,0.464654,0.232238,0.233283,0.121053,0.335719,0.406079,0.92592,0.833929,0.43073,0.676445,0.394781,0.924045,0.581466,0.59482,0.13226,0.575967,0.169846,0.516197,0.275666,0.316288,0.720029,0.561387,0.648334,0.317417,0.511111,0.205218,0.641085,0.33314,0.808559,0.271676,0.136457,0.146602,0.10924,0.376943,0.636193,0.139416,0.437419,0.316799,0.964146,0.517742,0.639989,0.291467,0.761735,0.981666,0.552219,0.924838,0.53653,0.26803,0.652747,0.323359,0.063597,0.100002,0.109956,0.000950098,0.205575,0.853217,0.34957,0.0174577,0.619099,0.12852,0.194693,0.871258,0.291616,0.695109,0.36871,0.584306,0.762717,0.815335,0.127293,0.435365,0.400845,0.177975,0.324743,0.736403,0.830921,0.514018,0.449142,0.31456,0.557085,0.402117,0.19374,0.250503,0.175158,0.433354,0.57811,0.693983,0.276151,0.0743621,0.54511,0.726423,0.560769,0.199732,0.70375,0.313148,0.0219367,0.148113,0.536419,0.806091,0.808113,0.285928,0.515069,0.614344,0.187349,0.165417,0.339425,0.765843,0.868709,0.146018,0.335364,0.194683,0.406168,0.605583,0.171647,0.0980577,0.489226,0.105353,0.796622,0.000402153,0.816458,0.905183,0.144009,0.711321,0.0689843,0.895081,0.960714,0.719151,0.196939,0.962064,0.372493,0.960888,0.282186,0.0520396,0.985615,0.621596,0.42158,0.797488,0.778553,0.798837,0.176142,0.77326,0.502446,0.679709,0.449215,0.0387543,0.707243,0.3929,0.980306,0.902713,0.832398,0.413334,0.21738,0.0675326,0.385818,0.902579,0.539187,0.124695,0.902545,0.336924,0.817543,0.423439,0.44272,0.996548,0.25588,0.836626,0.970242,0.497668,0.695446,0.00109899,0.22606,0.327275,0.457073,0.10564,0.311576,0.142008,0.553346,0.119763,0.913895,0.159705,0.653216,0.521239,0.81993,0.576041,0.249351,0.233555,0.278401,0.601799,0.0244013,0.503586,0.657099,0.83022,0.0366989,0.710337,0.79539,0.596188,0.318453,0.0283033,0.182082,0.106353,0.404687,0.104878,0.194105,0.893887,0.613245,0.452365,0.753271,0.97768,0.476841,0.113396,0.699337,0.663623,0.528838,0.58204,0.324882,0.559516,0.700552,0.884906,0.626086,0.0669352,0.312658,0.158244,0.144719,0.613034,0.0492698,0.304482,0.570418,0.786801,0.811085,0.952911,0.107118,0.156606,0.042743,0.862517,0.507195,0.251035,0.245169,0.667978,0.0935433,0.581207,0.0945118,0.917162,0.183445,0.428853,0.449311,0.450084,0.440971,0.360955,0.236867,0.536133,0.828493,0.270205,0.756391,0.56087,0.0714182,0.970773,0.752644,0.0132913,0.656277,0.341707,0.0794499,0.61465,0.609296,0.325163,0.406711,0.884929,0.698491,0.403487,0.161371,0.434176,0.465047,0.161159,0.484073,0.932442,0.924289,0.766265,0.364055,0.653106,0.286522,0.375177,0.23856,0.685898,0.817209,0.673821,0.811479,0.311657,0.090256,0.244906,0.820741,0.195664,0.653116,0.57957,0.412653,0.360485,0.955508,0.514526,0.53406,0.507813,0.58122,0.716006,0.200593,0.976938,0.499083,0.367996,0.729527,0.630004,0.755864,0.521695,0.830949,0.125531,0.3201,0.960769,0.436555,0.147319,0.188515,0.00749856,0.389498,0.208065,0.807069,0.918708,0.647496,0.0281826,0.474148,0.538335,0.534893,0.976606,0.224072,0.844775,0.795627,0.570721,0.942264,0.220782,0.551303,0.717843,0.595139,0.542276,0.728863,0.684893,0.871823,0.132084,0.304806,0.735853,0.0458449,0.363499,0.81904,0.346693,0.108141,0.0790307,0.204102,0.789969,0.539046,0.0707592,0.350861,0.904972,0.456557,0.720983,0.666394,0.990016,0.845304,0.0558661,0.0177066,0.320938,0.303761,0.652928,0.875315,0.21242,0.0184887,0.303067,0.198821,0.490705,0.604654,0.348874,0.230925,0.981566,0.40508,0.634922,0.918549,0.658096,0.712095,0.91861,0.97319,0.85273,0.444093,0.759574,0.165018,0.628558,0.687441,0.986947,0.168651,0.35761,0.831834,0.931918,0.971844,0.681461,0.0804139,0.850416,0.326024,0.59855,0.273524,0.640961,0.871238,0.453885,0.549783,0.267222,0.450828,0.439458,0.816473,0.102478,0.332814,0.286388,0.142606,0.691825,0.454391,0.423391,0.728388,0.315223,0.869617,0.902249,0.667255,0.417302,0.471994,0.436612,0.29807,0.461199,0.743365,0.062431,0.80965,0.106359,0.241907,0.921976,0.897612,0.754375,0.779769,0.893847,0.293724,0.725499,0.0852722,0.888489,0.410691,0.289606,0.290805,0.466926,0.625648,0.898362,0.660636,0.938539,0.386875,0.501681,0.721724,0.970216,0.882505,0.723493,0.300723,0.00944692,0.259199,0.731363,0.861678,0.00239307,0.633908,0.842596,0.626946,0.695804,0.719731,0.4217,0.503646,0.849009,0.521803,0.0640349,0.714052,0.215784,0.892305,0.284141,0.668974,0.108275,0.4217,0.331587,0.270818,0.76402,0.182736,0.819794,0.943844,0.48236,0.115652,0.458491,0.383618,0.81448,0.625955,0.419171,0.795727,0.617833,0.642545,0.568425,0.569888,0.627528,0.806143,0.838515,0.234923,0.166521,0.467928,0.818156,0.244509,0.686384,0.433461,0.778411,0.091425,0.811817,0.406405,0.923143,0.996345,0.194016,0.327004,0.664616,0.864682,0.402309,0.509431,0.229935,0.0290994,0.0830385,0.635076,0.1752,0.423696,0.00166678,0.255421,0.830309,0.0746664,0.914101,0.27077,0.0618239,0.772009,0.191303,0.948013,0.93501,0.888315,0.792849,0.116467,0.913961,0.418005,0.809517,0.597107,0.252033,0.575369,0.830297,0.799628,0.116727,0.58401,0.71428,0.174828,0.573696,0.112078,0.0842382,0.497061,0.835393,0.660966,0.0383506,0.655484,0.891768,0.738883,0.342887,0.370073,0.974613,0.713724,0.854999,0.225242,0.550025,0.871309,0.384835,0.760647,0.141903,0.171024,0.160017,0.0835608,0.858424,0.562265,0.809276,0.570586,0.189,0.640322,0.507968,0.237585,0.984443,0.0158563,0.738568,0.610362,0.270639,0.967308,0.132461,0.198841,0.129323,0.531903,0.693901,0.777404,0.221382,0.992215,0.255952,0.280102,0.990586,0.119089,0.114278,0.933531,0.857828,0.929044,0.701388,0.456747,0.867106,0.97617,0.65248,0.147772,0.801788,0.78225,0.983104,0.701059,0.553703,0.50157,0.83458,0.786994,0.800836,0.434514,0.79159,0.452491,0.984295,0.590237,0.237966,0.911685,0.104893,0.963523,0.952128,0.633912,0.662538,0.843713,0.684362,0.316045,0.116866,0.812743,0.54042,0.926988,0.81272,0.119662,0.261221,0.281427,0.562316,0.0358592,0.633856,0.259675,0.465125,0.947092,0.795876,0.429561,0.172017,0.581272,0.0534688,0.686556,0.941882,0.929845,0.836229,0.523249,0.857529,0.444468,0.378256,0.0660807,0.663063,0.115035,0.736224,0.599055,0.629958,0.609463,0.900966,0.386464,0.0856444,0.906371,0.176521,0.471416,0.823349,0.169399,0.492966,0.732722,0.65798,0.400624,0.489338,0.888311,0.722803,0.204989,0.942412,0.549191,0.199608,0.204783,0.456893,0.496734,0.648941,0.253583,0.741825,0.847451,0.260893,0.431299,0.133135,0.466649,0.853173,0.0282868,0.147059,0.757833,0.411024,0.999278,0.867936,0.627609,0.687987,0.834754,0.277738,0.314392,0.707503,0.85527,0.716761,0.820711,0.993302,0.530055,0.914039,0.918997,0.257322,0.585121,0.859718,0.0345263,0.562884,0.2531,0.399245,0.240198,0.932698,0.249484,0.110747,0.374697,0.0449471,0.489627,0.856985,0.415958,0.31015,0.228291,0.916752,0.432035,0.654775,0.644264,0.43726,0.047363,0.316607,0.885587,0.529217,0.693873,0.243445,0.162671,0.279624,0.531296,0.627937,0.819616,0.439677,0.954073,0.0123587,0.70179,0.495412,0.346711,0.0585173,0.769525,0.661456,0.97284,0.987579,0.498013,0.78859,0.259247,0.400885,0.783253,0.999517,0.0872964,0.415188,0.795407,0.777784,0.598249,0.535954,0.658864,0.743552,0.817851,0.455604,0.283167,0.6697,0.770554,0.393748,0.698248,0.165943,0.763315,0.511045,0.542379,0.438809,0.851621,0.39268,0.620114,0.373411,0.853218,0.198726,0.353072,0.882513,0.512916,0.0921032,0.696109,0.364538,0.29609,0.491683,0.954174,0.132067,0.336808,0.913903,0.794848,0.696322,0.775437,0.764526,0.104491,0.597241,0.415402,0.598026,0.64005,0.157508,0.730345,0.725315,0.232306,0.673886,0.581164,0.8549,0.241328,0.70035,0.0245258,0.997645,0.356301,0.283704,0.869994,0.347432,|0.0214849,0.816221,0.312621,0.845884,0.834992,0.947696,0.658768,0.344563,0.878888,0.498936,0.957333,0.740662,0.273875,0.657,0.441066,0.987406,0.326145,0.173719,0.0213106,0.355634,0.436101,0.0425947,0.511623,0.0754831,0.920307,0.421408,0.574544,0.0863719,0.0841855,0.214133,0.741339,0.724147,0.487028,0.322457,0.942365,0.945582,0.885908,0.717211,0.297301,0.253391,0.689002,0.614248,0.18669,0.0939875,0.92906,0.0863382,0.759149,0.764559,0.353205,0.0141892,0.705118,0.797503,0.0707898,0.265912,0.0592943,0.261388,0.0222607,0.199452,0.408223,0.158942,0.0242795,0.531956,0.433048,0.848122,0.734876,0.0263084,0.183207,0.27494,0.991869,0.796286,0.844779,0.607918,0.404431,0.713839,0.536902,0.224911,0.506755,0.0234742,0.752255,0.449115,0.124292,0.113476,0.949025,0.390583,0.00441951,0.546995,0.770794,0.555507,0.344769,0.939695,0.558186,0.927603,0.480413,0.277841,0.500822,0.4373,0.516595,0.471728,0.870173,0.526412,0.503257,0.0301887,0.966464,0.449429,0.383964,0.965019,0.886998,0.41,0.246891,0.473792,0.712074,0.0324669,0.571962,0.502051,0.141022,0.410733,0.988217,0.0111376,0.159151,0.900678,0.506095,0.903051,0.312298,0.59841,0.722531,0.107242,0.116268,0.785675,0.843156,0.282341,0.773409,0.894432,0.661082,0.669971,0.86858,0.809033,0.281765,0.63249,0.317252,0.7168,0.902428,0.0284042,0.503581,0.732784,0.71408,0.737239,0.224348,0.764764,0.391819,0.929432,0.695677,0.60887,0.626031,0.533004,0.483066,0.96234,0.736885,0.753522,0.423809,0.303351,0.0502501,0.717357,0.0207233,0.0932117,0.0477132,0.154073,0.718468,0.328418,0.633464,0.218026,0.663308,0.320945,0.329425,0.543522,0.473211,0.703151,0.0418932,0.651324,0.68784,0.844326,0.134953,0.343979,0.753686,0.661474,0.363586,0.879847,0.15007,0.805815,0.184392,0.0802882,0.590984,0.405773,0.753111,0.93472,0.934499,0.733092,0.507212,0.80781,0.209556,0.0240085,0.834909,0.76639,0.670871,0.118907,0.42917,0.941718,0.933671,0.00909537,0.901062,0.835768,0.588844,0.0945607,0.428205,0.943337,0.618715,0.727045,0.00412196,0.0581138,0.990717,0.0561767,0.103491,0.00751287,0.933252,0.652712,0.155434,0.40987,0.523131,0.202918,0.845418,0.820242,0.74113,0.718402,0.257877,0.936573,0.642001,0.247056,0.481757,0.723912,0.129534,0.968766,0.107024,0.167499,0.674495,0.266753,0.280242,0.907166,0.0132347,0.895686,0.0807312,0.767523,0.270689,0.976562,0.86573,0.45193,0.342571,0.611708,0.53805,0.205555,0.135153,0.785524,0.208419,0.172618,0.468551,0.210906,0.244883,0.515989,0.130103,0.789115,0.560513,0.828844,0.851012,0.647111,0.434935,0.175196,0.199637,0.813277,0.611718,0.772058,0.320859,0.456236,0.914747,0.15584,0.21381,0.792741,0.410693,0.0132943,0.416051,0.308631,0.304248,0.718913,0.066014,0.193513,0.960935,0.289109,0.471489,0.23364,0.296655,0.149387,0.291675,0.260026,0.763053,0.916256,0.550049,0.885312,0.387987,0.480196,0.0503621,0.708923,0.102605,0.651002,0.505933,0.878201,0.162784,0.358495,0.790954,0.833255,0.259736,0.309716,0.262563,0.689304,0.107246,0.270592,0.742272,0.0527094,0.560641,0.572185,0.0471516,0.449858,0.103126,0.070488,0.455518,0.992547,0.929217,0.723406,0.367226,0.968197,0.0503225,0.990693,0.858998,0.458166,0.460183,0.441068,0.962526,0.645624,0.661894,0.74189,0.438636,0.15596,0.609044,0.156542,0.338108,0.211309,0.732107,0.652325,0.696731,0.457885,0.467252,0.114149,0.220036,0.56752,0.632407,0.161238,0.0786893,0.138506,0.46952,0.348845,0.0961419,0.823356,0.0608236,0.0231772,0.929077,0.518371,0.984458,0.72876,0.0693805,0.350581,0.613078,0.487131,0.0275719,0.757382,0.383681,0.278859,0.338065,0.176459,0.307594,0.142703,0.749964,0.969841,0.117702,0.802586,0.934662,0.557812,0.808148,0.772006,0.802128,0.31745,0.442478,0.00670713,0.341803,0.0231434,0.539602,0.952139,0.272325,0.730787,0.144923,0.308154,0.459238,0.236811,0.479641,0.985717,0.430419,0.833456,0.308826,0.609978,0.798399,0.406814,0.040511,0.889182,0.414683,0.205003,0.753053,0.470401,0.16917,0.0424471,0.00122029,0.33155,0.765262,0.298459,0.647013,0.331122,0.885869,0.0521063,0.189238,0.790301,0.231422,0.958824,0.271693,0.638041,0.186121,0.85736,0.867643,0.221391,0.405861,0.0235662,0.710268,0.874497,0.591672,0.354734,0.943159,0.83511,0.343778,0.434739,0.497359,0.429632,0.685696,0.883227,0.922974,0.953915,0.384847,0.466141,0.710012,0.209117,0.309762,0.876239,0.474579,0.464849,0.579294,0.0210625,0.321271,0.0570192,0.465195,0.974826,0.258792,0.843247,0.273606,0.13767,0.722159,0.677203,0.59499,0.504767,0.900119,0.0276771,0.416764,0.478101,0.84772,0.587335,0.623388,0.782767,0.0530128,0.320587,0.656238,0.796186,0.611166,0.234655,0.158498,0.131021,0.322831,0.455459,0.571179,0.46625,0.625693,0.0609143,0.49762,0.978716,0.272459,0.503131,0.523816,0.699211,0.787983,0.0379392,0.678957,0.685288,0.0169847,0.337164,0.631468,0.995126,0.229871,0.846144,0.540678,0.626652,0.872927,0.302393,0.833183,0.857619,0.401813,0.161171,0.688002,0.424533,0.153088,0.0542403,0.375871,0.00930142,0.517147,0.663373,0.376868,0.511614,0.881477,0.130681,0.786174,0.104323,0.514632,0.00677669,0.0702652,0.678223,0.837927,0.374669,0.560875,0.324898,0.750505,0.536945,0.385439,0.625288,0.762262,0.106096,0.883869,0.745219,0.106648,0.66147,0.990839,0.707771,0.835103,0.0298703,0.624601,0.522195,0.558961,0.679383,0.989367,0.976621,0.589224,0.660664,0.442094,0.849326,0.722301,0.893747,0.979254,0.482472,0.633531,0.88985,0.574903,0.475792,0.0479424,0.631527,0.760263,0.685458,0.628167,0.343789,0.402032,0.0957393,0.444952,0.493186,0.992854,0.0608355,0.26948,0.820186,0.183736,0.0187284,0.37367,0.547743,0.414433,0.660495,0.411188,0.702067,0.734478,0.240667,0.861985,0.736581,0.941266,0.61611,0.268708,0.518323,0.653003,0.752945,0.566528,0.222526,0.963335,0.425004,0.0520357,0.506801,0.31137,0.243624,0.229942,0.997716,0.830224,0.211698,0.74355,0.38559,0.240334,0.0406297,0.122771,0.635428,0.201061,0.437392,0.645453,0.0163162,0.860486,0.268121,0.223522,0.817444,0.944507,0.319701,0.884408,0.67531,0.575478,0.529817,0.967009,0.0675815,0.250375,0.793034,0.171036,0.237233,0.283282,0.52116,0.605147,0.950747,0.520236,0.781568,0.516194,0.32279,0.235472,0.930067,0.896336,0.168125,0.415902,0.45316,0.817139,0.167261,0.102959,0.747795,0.160221,0.537908,0.479653,0.612246,0.778193,0.995582,0.217466,0.428914,0.05317,0.159079,0.577102,0.67977,0.54252,0.88252,0.754243,0.718086,0.284941,0.531733,0.303425,0.0672774,0.379972,0.762166,0.177296,0.673671,0.22245,0.665534,0.120427,0.57479,0.696551,0.340533,0.591382,0.441534,0.75451,0.509171,0.677378,0.210016,0.106262,0.889033,0.59965,0.491701,0.705846,0.746531,0.88163,0.553177,0.0300202,0.255729,0.460399,0.663393,0.908952,0.0881748,0.509848,0.574727,0.0939077,0.770071,0.784417,0.289267,0.0225437,0.270373,0.902073,0.324877,0.366593,0.104951,0.392197,0.458797,0.0815371,0.109738,0.849753,0.341378,0.294396,0.222088,0.454411,0.0264946,0.557233,0.800865,0.248232,0.357244,0.344509,0.116528,0.111809,0.140808,0.942764,0.139383,0.401587,0.553734,0.580043,0.458309,0.616732,0.762481,0.961015,0.72079,0.0980017,0.16227,0.271951,0.0467595,0.225579,0.68878,0.277531,0.908828,0.450927,0.328947,0.55827,0.171766,0.457841,0.637134,0.506839,0.836493,0.285703,0.215258,0.658172,0.240418,0.537894,0.403918,0.892531,0.999199,0.849556,0.876352,0.121203,0.389597,0.443946,0.759457,0.948853,0.556971,0.427113,0.247856,0.87632,0.0604333,0.551641,0.823517,0.282808,0.786735,0.781856,0.412245,0.459124,0.743576,0.916122,0.370294,0.52037,0.316791,0.583644,0.014488,0.224217,0.464505,0.470625,0.862645,0.150664,0.0612407,0.637635,0.144875,0.379377,0.121658,0.948673,0.0603113,0.769994,0.111949,0.58461,0.283702,0.486094,0.652265,0.624733,0.832653,0.364068,0.582934,0.372399,0.544715,0.428079,0.65911,0.242387,0.367633,0.686714,0.0562677,0.573031,0.891933,0.0542143,0.825092,0.693064,0.192481,0.694198,0.703824,0.425743,0.351785,0.0261332,0.717153,0.411914,0.916263,0.789407,0.993664,0.952646,0.577434,0.123195,0.983678,0.755453,0.419381,0.829214,0.946278,0.52483,0.910418,0.235105,0.988129,0.701789,0.0354887,0.724491,0.732039,0.778134,0.0360816,0.0736671,0.370864,0.975835,0.531133,0.519941,0.597402,0.332853,0.449769,0.826928,0.793433,0.512677,0.667983,0.719682,0.263604,0.190858,0.520433,0.284687,0.128037,0.473374,0.0136032,0.582058,0.853106,0.820669,0.435091,0.0927566,0.521596,0.289646,0.904801,0.577589,0.289882,0.906818,0.642181,0.262403,0.305046,0.451659,0.805624,0.708481,0.819907,0.465304,0.694095,0.278785,0.768922,0.228208,0.331541,0.476905,0.170697,0.23056,0.0331174,0.720461,0.00587267,0.373783,0.481186,0.704896,0.873539,0.949658,0.408019,0.390026,0.778508,0.694232,0.18566,0.866087,0.175817,0.705289,0.499324,0.622758,0.0498991,0.631274,0.180147,0.152436,0.033126,0.432343,0.956189,0.405862,0.235001,0.788122,0.284388,0.882402,0.206961,0.398469,0.261043,0.311916,0.374768,0.497059,0.770897,0.806323,0.819828,0.00551689,0.573668,0.870444,0.940842,0.283959,0.419953,0.746813,0.901139,0.937086,0.591547,0.680683,0.373139,0.031822,0.0332879,0.359214,0.127489,0.250367,0.849368,0.658213,0.302356,0.352187,0.0308799,0.174252,0.696398,0.338435,0.47187,0.664882,0.0426564,0.524753,0.830906,0.932592,0.113331,0.365429,0.994759,0.501103,0.241939,0.903782,0.264897,0.60735,0.274062,0.979198,0.697877,|0.298764,0.888989,0.481758,0.820785,0.670475,0.804054,0.39895,0.268877,0.215121,0.209978,0.219214,0.597944,0.731201,0.995019,0.671502,0.391366,0.596588,0.415828,0.61542,0.499355,0.475736,0.688403,0.623635,0.3935,0.787561,0.659153,0.920576,0.733957,0.366535,0.0221975,0.459337,0.87673,0.544627,0.906404,0.0053736,0.203348,0.798222,0.450917,0.0818503,0.0191031,0.150615,0.122324,0.576773,0.73718,0.60518,0.747715,0.875125,0.59583,0.25678,0.318077,0.995539,0.353155,0.309022,0.56443,0.662228,0.501211,0.0826541,0.838907,0.528671,0.970009,0.182434,0.583023,0.962149,0.769452,0.539649,0.672615,0.209738,0.672911,0.504117,0.930758,0.850351,0.207989,0.275915,0.146722,0.720813,0.300254,0.431633,0.226271,0.0909134,0.835206,0.00655937,0.555899,0.173002,0.65464,0.542779,0.764546,0.917221,0.7042,0.474669,0.475255,0.911105,0.267532,0.312451,0.0269871,0.73599,0.857882,0.344927,0.0707526,0.0937679,0.659996,0.595187,0.616992,0.964531,0.945634,0.215461,0.9639,0.74364,0.555773,0.556767,0.338807,0.13563,0.472271,0.730719,0.837564,0.193425,0.665962,0.210713,0.653845,0.319606,0.869183,0.850097,0.987456,0.350025,0.928719,0.329356,0.25479,0.960451,0.808842,0.400186,0.450267,0.00603163,0.190495,0.973669,0.0076893,0.741994,0.0873492,0.151309,0.460516,0.942966,0.760696,0.713207,0.965566,0.733473,0.181654,0.914962,0.276638,0.764493,0.902937,0.0712434,0.940929,0.306036,0.834456,0.88168,0.800521,0.619039,0.13229,0.100786,0.596668,0.0957822,0.97561,0.0304136,0.0795082,0.851765,0.191024,0.654452,0.900073,0.240443,0.447302,0.333412,0.483016,0.666759,0.292295,0.548219,0.409228,0.603344,0.533295,0.0295092,0.206059,0.668356,0.486397,0.797346,0.544673,0.50543,0.257894,0.553863,0.531477,0.821195,0.892337,0.753913,0.329659,0.109451,0.527679,0.348302,0.585225,0.209632,0.568211,0.238782,0.225386,0.576937,0.397486,0.383514,0.365549,0.40596,0.932466,0.686539,0.654737,0.886523,0.280374,0.802874,0.781541,0.0809498,0.272344,0.888493,0.111668,0.458418,0.497018,0.555364,0.0422603,0.484702,0.0165656,0.386201,0.947361,0.958721,0.499684,0.990399,0.0316889,0.786094,0.373696,0.2878,0.262774,0.0910052,0.526996,0.84805,0.023868,0.0146814,0.716514,0.190112,0.434055,0.903627,0.219213,0.530862,0.0683391,0.114649,0.166629,0.081509,0.0407702,0.427303,0.743128,0.481365,0.958576,0.640825,0.1254,0.117903,0.327075,0.709909,0.667349,0.345325,0.276562,0.514415,0.168055,0.104891,0.443285,0.246761,0.600986,0.306778,0.966817,0.301794,0.643404,0.0975905,0.926213,0.0647449,0.665509,0.0893385,0.0668017,0.838358,0.456737,0.456028,0.225192,0.372252,0.377435,0.503407,0.126151,0.36297,0.156269,0.467833,0.904842,0.488668,0.956317,0.468269,0.203719,0.173995,0.798179,0.852101,0.795934,0.984887,0.134265,0.366886,0.743565,0.740857,0.899992,0.670187,0.606903,0.292714,0.650179,0.35783,0.711372,0.287419,0.620702,0.969103,0.376604,0.971262,0.241292,0.431286,0.981886,0.669304,0.360446,0.546447,0.828581,0.294356,0.377426,0.917171,0.780322,0.798871,0.25584,0.09539,0.264319,0.934403,0.226086,0.806932,0.725148,0.874684,0.796075,0.52764,0.403572,0.526595,0.0912975,0.665223,0.865451,0.620888,0.0393303,0.502307,0.43052,0.968135,0.228608,0.793656,0.889097,0.382567,0.999521,0.558652,0.417202,0.934211,0.496053,0.259506,0.935226,0.594872,0.816586,0.563176,0.340391,0.863263,0.0288163,0.434109,0.20629,0.0726761,0.657072,0.669253,0.775615,0.747851,0.161693,0.936639,0.334116,0.918936,0.603184,0.350519,0.996019,0.484365,0.0860729,0.203678,0.940087,0.206137,0.851766,0.302668,0.916578,0.314223,0.538931,0.668921,0.769024,0.133541,0.993162,0.26992,0.204979,0.378416,0.927226,0.168393,0.637888,0.143129,0.145193,0.113634,0.138746,0.634969,0.736149,0.754229,0.58513,0.532035,0.194679,0.546666,0.701452,0.540176,0.797883,0.465483,0.858928,0.802184,0.791122,0.879375,0.0572773,0.883893,0.0575757,0.83646,0.610865,0.992706,0.821367,0.263212,0.312913,0.738867,0.424046,0.0875748,0.368594,0.158312,0.220918,0.091508,0.342548,0.402988,0.739207,0.765751,0.442259,0.703857,0.458736,0.377161,0.946017,0.923154,0.0652055,0.563023,0.995615,0.614225,0.119021,0.409355,0.702714,0.512015,0.307453,0.371024,0.34385,0.673509,0.24033,0.89452,0.120109,0.522577,0.0964483,0.875575,0.609451,0.628553,0.678369,0.926326,0.481516,0.0524874,0.696648,0.236733,0.98489,0.00313115,0.847176,0.461598,0.397733,0.615102,0.318616,0.647029,0.592116,0.0238054,0.853438,0.716378,0.364817,0.820566,0.502222,0.0541676,0.946852,0.699691,0.577984,0.072891,0.464803,0.384814,0.280136,0.912881,0.665444,0.893524,0.799477,0.421423,0.0008412,0.922824,0.373405,0.796728,0.403099,0.053656,0.210932,0.656516,0.746205,0.513969,0.614198,0.232831,0.00958866,0.128378,0.0735004,0.74469,0.890314,0.671289,0.24729,0.7677,0.145349,0.821837,0.561637,0.235445,0.599738,0.356236,0.800373,0.792838,0.879313,0.203673,0.655251,0.705703,0.962941,0.638863,0.513016,0.791693,0.801371,0.325557,0.295703,0.208606,0.458331,0.2994,0.557768,0.800285,0.76955,0.649464,0.561819,0.505628,0.901703,0.242809,0.803524,0.854751,0.952755,0.718212,0.473487,0.359721,0.531745,0.418168,0.486059,0.712308,0.729896,0.464376,0.317438,0.737008,0.350927,6.56843e-05,0.212014,0.22413,0.0478255,0.575591,0.645644,0.0616405,0.142831,0.669157,0.690867,0.867671,0.226255,0.118704,0.731636,0.673356,0.186421,0.4582,0.580856,0.260411,0.731749,0.448271,0.377402,0.100543,0.271213,0.00848037,0.522434,0.352706,0.498903,0.0613995,0.145665,0.901837,0.619655,0.0109393,0.516388,0.238111,0.102075,0.959667,0.633346,0.785285,0.0781369,0.299276,0.650222,0.248412,0.0613695,0.792181,0.222531,0.318702,0.562355,0.851438,0.0548083,0.425174,0.123794,0.237738,0.0583275,0.00712025,0.12716,0.899852,0.0524413,0.849591,0.638529,0.649149,0.859105,0.138131,0.885964,0.438842,0.633496,0.262685,0.500408,0.974968,0.973045,0.724889,0.530464,0.345501,0.230535,0.837989,0.999562,0.291768,0.890214,0.0849881,0.325723,0.721185,0.787469,0.72092,0.35758,0.794588,0.728127,0.238425,0.807666,0.821252,0.0906253,0.150207,0.544785,0.0410686,0.299951,0.104475,0.72022,0.379796,0.135025,0.157162,0.811393,0.575367,0.769756,0.205671,0.947782,0.0718476,0.0399679,0.765485,0.852624,0.307043,0.394641,0.391679,0.870576,0.623866,0.549983,0.111211,0.390093,0.239886,0.635249,0.840997,0.641206,0.664858,0.334576,0.913842,0.175776,0.833468,0.381895,0.890212,0.403964,0.523917,0.659232,0.357592,0.472261,0.28654,0.334101,0.613752,0.677111,0.231998,0.629543,0.771682,0.00202292,0.433941,0.379556,0.235439,0.786635,0.536427,0.0444353,0.965422,0.380468,0.339614,0.732129,0.00142455,0.443693,0.391336,0.861316,0.98761,0.963767,0.636213,0.235716,0.206078,0.851253,0.0603617,0.728845,0.527328,0.901894,0.54305,0.354952,0.450306,0.195505,0.0905014,0.45015,0.308237,0.105502,0.0220846,0.736391,0.800524,0.608844,0.622251,0.391127,0.205189,0.697322,0.426513,0.878683,0.903684,0.667674,0.244081,0.839847,0.0532427,0.160798,0.371009,0.527407,0.700448,0.126997,0.165752,0.998575,0.466792,0.390689,0.752243,0.569505,0.457117,0.167466,0.00265563,0.378729,0.665882,0.275006,0.964103,0.793279,0.749551,0.0889215,0.234308,0.634436,0.0811079,0.771726,0.0334128,0.320146,0.573654,0.653864,0.480022,0.439146,0.04175,0.229332,0.718997,0.426809,0.123805,0.0999818,0.896811,0.19959,0.380321,0.68017,0.530967,0.417149,0.951189,0.173263,0.265951,0.753509,0.0909345,0.951792,0.996195,0.163233,0.545493,0.758766,0.357985,0.199678,0.815459,0.877121,0.228544,0.233288,0.322004,0.0454512,0.442154,0.674221,0.707763,0.0128775,0.220197,0.527499,0.707045,0.695594,0.113505,0.55418,0.427826,0.20964,0.136497,0.751421,0.029945,0.507508,0.984945,0.912265,0.873146,0.416004,0.140458,0.802881,0.764723,0.956543,0.382757,0.603993,0.0514419,0.423282,0.712645,0.339899,0.909615,0.22296,0.457686,0.946526,0.73201,0.404939,0.314327,0.458453,0.722497,0.65525,0.253254,0.887863,0.896319,0.425014,0.336823,0.558633,0.687159,0.532583,0.371878,0.0992796,0.632889,0.91401,0.220416,0.00870639,0.343618,0.68151,0.74033,0.880919,0.316001,0.688065,0.183153,0.190616,0.452931,0.261132,0.804767,0.365242,0.181247,0.33698,0.748743,0.867091,0.605581,0.198975,0.127303,0.415679,0.750618,0.0535818,0.259347,0.623247,0.0122763,0.743884,0.69771,0.102261,0.772672,0.925672,0.724222,0.0258204,0.931892,0.474677,0.164977,0.289022,0.54079,0.0481806,0.1837,0.960525,0.145468,0.451364,0.742472,0.447957,0.883838,0.12099,0.66741,0.0908977,0.742875,0.166462,0.432085,0.956515,0.567798,0.885171,0.949749,0.619857,0.596018,0.257993,0.432734,0.611023,0.200064,0.368409,0.86201,0.51379,0.544943,0.540644,0.83639,0.419883,0.394417,0.496176,0.850956,0.609485,0.740208,0.772295,0.508006,0.253978,0.482062,0.384944,0.378002,0.315443,0.393378,0.317551,0.464534,0.314417,0.641405,0.279492,0.279836,0.996163,0.253928,0.228701,0.488701,0.525711,0.862621,0.312119,0.918197,0.809703,0.427026,0.329577,0.792057,0.550121,0.676877,0.169278,0.960536,0.885224,0.374007,0.590333,0.612978,0.0692984,0.899128,0.8153,0.723445,0.823213,0.825133,0.0373253,0.0961505,0.600341,0.376426,0.756153,0.331139,0.500642,0.740064,0.584278,0.19401,0.767401,0.581134,0.0900252,0.228398,0.108694,0.405182,0.41344,0.854603,0.277589,0.642532,0.0479316,0.599003,0.0675644,0.700228,0.12688,0.39591,0.851299,|0.991212,0.466255,0.256291,0.204878,0.217401,0.256905,0.29606,0.616342,0.0373854,0.443627,0.510285,0.741053,0.379234,0.210921,0.682074,0.5059,0.427866,0.236928,0.896789,0.333837,0.139759,0.251042,0.875442,0.00883812,0.710941,0.173033,0.659762,0.0927137,0.345228,0.134676,0.336116,0.0893868,0.414731,0.320038,0.140449,0.678615,0.771113,0.289097,0.396159,0.0868713,0.278571,0.711911,0.717024,0.167468,0.763734,0.151737,0.250739,0.732239,0.834359,0.390324,0.16549,0.0977318,0.972359,0.346228,0.631798,0.447387,0.860057,0.337605,0.232545,0.151013,0.259049,0.872246,0.324601,0.622051,0.79859,0.0588782,0.0513817,0.0284914,0.225466,0.873906,0.406447,0.432176,0.298122,0.670929,0.723337,0.112631,0.158273,0.495078,0.789167,0.557673,0.304196,0.788406,0.266306,0.555248,0.625901,0.486132,0.155279,0.901328,0.364013,0.424402,0.278206,0.152303,0.78786,0.343597,0.82782,0.937477,0.562501,0.335178,0.277665,0.168728,0.263766,0.501903,0.89198,0.383506,0.836027,0.84498,0.496544,0.187395,0.561431,0.0277604,0.563077,0.325338,0.029805,0.884785,0.483068,0.294162,0.962456,0.966009,0.140811,0.659434,0.571958,0.175611,0.0552966,0.146005,0.33778,0.982086,0.362018,0.805745,0.624395,0.099791,0.947828,0.988923,0.265198,0.0180851,0.846811,0.805404,0.210088,0.428048,0.141924,0.161733,0.212528,0.776477,0.683947,0.526587,0.966086,0.57613,0.567768,0.375358,0.535963,0.952656,0.43475,0.599106,0.27515,0.396943,0.433693,0.711621,0.306928,0.880422,0.426661,0.583928,0.73904,0.475533,0.495378,0.681144,0.670218,0.729576,0.835068,0.987166,0.436158,0.920848,0.283387,0.221972,0.0707644,0.172367,0.516311,0.675425,0.972239,0.00464034,0.319055,0.718331,0.930362,0.00195026,0.382668,0.546094,0.113105,0.481221,0.336311,0.463831,0.657808,0.297605,0.216646,0.734075,0.116553,0.787442,0.681188,0.748219,0.271653,0.669857,0.256237,0.569017,0.320801,0.0219573,0.713129,0.508777,0.540823,0.360539,0.450818,0.544151,0.176143,0.952932,0.784767,0.319195,0.615449,0.199807,0.393613,0.658838,0.919194,0.347326,0.230157,0.228599,0.875582,0.868849,0.7154,0.166236,0.66289,0.804162,0.541964,0.944828,0.0377011,0.0167686,0.636293,0.737974,0.401628,0.727106,0.934464,0.397598,0.802882,0.220634,0.324077,0.0815046,0.640738,0.701808,0.0905079,0.786181,0.628487,0.850932,0.843673,0.858444,0.517493,0.80198,0.10162,0.953081,0.239382,0.442416,0.113452,0.255996,0.635534,0.200717,0.693262,0.898618,0.524121,0.857546,0.796378,0.398428,0.549285,0.296668,0.557559,0.245766,0.998031,0.448123,0.50492,0.187172,0.533147,0.523689,0.243362,0.67266,0.11881,0.765334,0.428297,0.238792,0.54095,0.194831,0.998892,0.264288,0.77304,0.532459,0.22702,0.720734,0.270097,0.321327,0.152491,0.10916,0.145819,0.524592,0.728233,0.701421,0.23816,0.426783,0.47201,0.435404,0.956951,0.282712,0.97875,0.620848,0.779817,0.581658,0.577166,0.72357,0.891645,0.663052,0.574002,0.345349,0.883802,0.283432,0.945178,0.87134,0.952256,0.482887,0.684314,0.401144,0.305602,0.569526,0.55042,0.522009,0.645579,0.0442331,0.789115,0.364825,0.047651,0.000762343,0.682405,0.625534,0.111606,0.319091,0.872033,0.0389439,0.0174765,0.736186,0.318027,0.786832,0.570834,0.600581,0.0537773,0.718859,0.701641,0.240998,0.043358,0.370963,0.574536,0.985792,0.705025,0.516814,0.746788,0.691936,0.471311,0.438443,0.816587,0.536409,0.693451,0.893129,0.813415,0.775487,0.268964,0.73365,0.944522,0.144077,0.707473,0.771235,0.656258,0.934677,0.725106,0.644554,0.831764,0.4584,0.758408,0.515399,0.0801286,0.766895,0.369384,0.858204,0.834242,0.61216,0.703536,0.260587,0.387305,0.255776,0.162975,0.567285,0.532916,0.636621,0.666119,0.613992,0.210056,0.238422,0.899022,0.289345,0.120012,0.954125,0.0316059,0.759242,0.762111,0.500093,0.793,0.393183,0.665846,0.290768,0.658091,0.226139,0.609236,0.807507,0.790217,0.673102,0.456111,0.310177,0.290842,0.290943,0.838105,0.753551,0.20042,0.238777,0.440371,0.10706,0.0982075,0.254763,0.971587,0.103183,0.621353,0.52482,0.0376041,0.179114,0.59787,0.835239,0.420787,0.136701,0.199957,0.978704,0.140973,0.272659,0.958259,0.16411,0.804842,0.906166,0.501666,0.023691,0.562569,0.900752,0.781672,0.0203795,0.195088,0.341189,0.611368,0.881003,0.716461,0.890055,0.102977,0.530266,0.899094,0.430051,0.728685,0.568028,0.912641,0.0454979,0.308608,0.909166,0.525552,0.140476,0.364432,0.172057,0.353334,0.942064,0.359584,0.927988,0.77705,0.50835,0.529489,0.81938,0.892972,0.0154985,0.334157,0.0316584,0.598388,0.318971,0.978611,0.204036,0.0311414,0.353969,0.619648,0.183376,0.0310919,0.398949,0.863529,0.994732,0.775615,0.784335,0.377806,0.261226,0.422047,0.310297,0.0529297,0.518575,0.390432,0.816054,0.537164,0.538137,0.129329,0.956158,0.480819,0.278435,0.249916,0.926121,0.529049,0.301995,0.523807,0.797369,0.436097,0.657659,0.503523,0.955891,0.0644077,0.932027,0.00917214,0.630113,0.334611,0.425855,0.117024,0.986048,0.987801,0.304184,0.377954,0.039936,0.483136,0.207857,0.592634,0.484322,0.376567,0.940696,0.134437,0.957466,0.0511252,0.970258,0.973159,0.298297,0.833299,0.577721,0.0696591,0.524669,0.0922559,0.159149,0.894858,0.203965,0.320802,0.181334,0.303678,0.225053,0.648571,0.514196,0.369212,0.5535,0.183511,0.374908,0.517849,0.772398,0.0229371,0.912388,0.399558,0.205677,0.556069,0.443295,0.356073,0.95471,0.104772,0.55608,0.585028,0.229778,0.391126,0.75157,0.750573,0.211444,0.075349,0.293891,0.610538,0.325897,0.585293,0.803408,0.795611,0.0657706,0.667787,0.303726,0.656724,0.684631,0.180878,0.916301,0.386038,0.905371,0.476476,0.470338,0.182483,0.880798,0.108263,0.99981,0.0914488,0.019111,0.0828365,0.9566,0.145609,0.157268,0.813204,0.462353,0.938504,0.539569,0.968264,0.00201792,0.595487,0.900506,0.0318794,0.306672,0.264257,0.475618,0.955393,0.0340137,0.801713,0.949483,0.982628,0.883657,0.407799,0.0274742,0.739535,0.37708,0.388175,0.903056,0.885989,0.0165082,0.942227,0.0523633,0.125111,0.47155,0.746746,0.892302,0.461629,0.442105,0.658111,0.359723,0.999433,0.491356,0.422967,0.389208,0.982781,0.810102,0.371201,0.377316,0.909032,0.515984,0.0307138,0.91809,0.635982,0.742177,0.134909,0.987062,0.64536,0.650602,0.966287,0.397319,0.554019,0.110258,0.914217,0.0516775,0.965626,0.16892,0.441877,0.460374,0.49872,0.776169,0.954967,0.978226,0.110159,0.332116,0.0618981,0.737039,0.791736,0.0376868,0.590115,0.428633,0.835891,0.0197948,0.337824,0.0109998,0.145729,0.943819,0.343178,0.166572,0.596296,0.280738,0.638129,0.0821392,0.259189,0.708654,0.424045,0.797382,0.269873,0.103535,0.0588869,0.126104,0.495213,0.867804,0.496222,0.147512,0.549101,0.354843,0.527963,0.320671,0.0629726,0.895006,0.179686,0.62651,0.0160836,0.135021,0.783281,0.882137,0.77927,0.863231,0.521789,0.505893,0.466043,0.405075,0.654118,0.37498,0.863975,0.328807,0.168674,0.13547,0.432735,0.214621,0.173792,0.278891,0.268011,0.201957,0.375328,0.790915,0.804986,0.919549,0.286457,0.864283,0.131729,0.812797,0.730418,0.233537,0.0390083,0.0274602,0.069414,0.849666,0.347073,0.440077,0.660431,0.0431752,0.525106,0.998379,0.49061,0.861216,0.638853,0.262545,0.30667,0.796104,0.651059,0.982924,0.970833,0.0515497,0.131584,0.276987,0.380796,0.233364,0.389921,0.735717,0.510154,0.27027,0.532837,0.558597,0.93829,0.759812,0.434173,0.0200199,0.409064,0.731339,0.139798,0.424756,0.83957,0.58579,0.0502815,0.132844,0.13201,0.647899,0.994485,0.501226,0.387141,0.350701,0.806379,0.712128,0.710176,0.0588306,0.176186,0.415157,0.295404,0.771224,0.920451,0.200614,0.16245,0.530624,0.607591,0.302827,0.488859,0.489239,0.767231,0.565405,0.179401,0.993342,0.259577,0.427385,0.898046,0.990985,0.284755,0.942215,0.501842,0.25579,0.594512,0.654127,0.766773,0.487867,0.802265,0.384379,0.065329,0.177016,0.568365,0.468007,0.0920305,0.215038,0.216981,0.906557,0.227827,0.363798,0.394913,0.937266,0.711903,0.436954,0.876025,0.0367888,0.124519,0.194406,0.560879,0.769458,0.335818,0.57737,0.399197,0.202417,0.42791,0.191982,0.835703,0.421128,0.229898,0.624951,0.85213,0.981873,0.212567,0.544911,0.99672,0.101123,0.636061,0.873051,0.180711,0.940743,0.0840964,0.980572,0.478956,0.749023,0.057464,0.241623,0.261031,0.133954,0.215084,0.656727,0.513655,0.237686,0.359233,0.609658,0.113818,0.134723,0.949714,0.251891,0.0760019,0.587717,0.323576,0.561451,0.743219,0.259757,0.458028,0.00353855,0.628879,0.533644,0.63175,0.513628,0.320086,0.0720578,0.817368,0.730593,0.242682,0.510601,0.310642,0.271487,0.368215,0.875274,0.944629,0.596087,0.147531,0.371648,0.104399,0.514131,0.0738958,0.184848,0.346169,0.0266489,0.713704,0.408916,0.420839,0.17899,0.689172,0.164472,0.818626,0.603186,0.650333,0.245729,0.799925,0.446431,0.168955,0.557664,0.44204,0.168373,0.0188915,0.248653,0.600973,0.849113,0.753777,0.0836273,0.579588,0.743471,0.69467,0.777865,0.200326,0.444856,0.0295698,0.404602,0.103223,0.819009,0.176191,0.0652348,0.721085,0.736839,0.0302541,0.364315,0.832125,0.117309,0.224027,0.899248,0.148035,0.886733,0.222937,0.340944,0.823223,0.917108,0.743343,0.205671,0.0362481,0.313489,0.490269,0.402898,0.455982,0.279989,0.991992,0.0664962,0.920384,0.658847,0.208034,0.0817517,0.295617,0.499926,0.757995,0.197488,0.908685,0.37426,0.551145,0.161213,0.0063861,0.956167,0.889633,0.31089,0.567491,0.35303,0.0191752,0.777821,0.781477,0.176279,0.467047,0.149848,|0.155892,0.317671,0.801403,0.944409,0.507813,0.0649784,0.353764,0.126629,0.658623,0.953351,0.871293,0.854225,0.295695,0.51487,0.75915,0.929913,0.651539,0.888346,0.986406,0.0521507,0.524943,0.0349436,0.501818,0.434832,0.902788,0.450697,0.679879,0.290825,0.916354,0.696005,0.635822,0.39685,0.660349,0.865118,0.0061484,0.65804,0.280479,0.129402,0.603376,0.288784,0.733116,0.20161,0.593023,0.207844,0.5665,0.410831,0.996933,0.0344526,0.0775545,0.891995,0.918533,0.907938,0.159132,0.0599978,0.831213,0.339527,0.771229,0.789843,0.156758,0.134551,0.412657,0.84313,0.409037,0.441861,0.443348,0.368124,0.830517,0.222046,0.126347,0.0139114,0.258448,0.13878,0.16136,0.0635427,0.993549,0.45485,0.454404,0.955923,0.912095,0.255345,0.580254,0.762693,0.314334,0.201238,0.293323,0.412097,0.758007,0.668891,0.277108,0.642191,0.873798,0.484841,0.159727,0.24538,0.649922,0.949435,0.0208387,0.128959,0.300445,0.0954512,0.114795,0.23374,0.502944,0.779487,0.425526,0.801227,0.873856,0.320704,0.712761,0.763449,0.69752,0.237521,0.301264,0.825541,0.456408,0.724786,0.816986,0.36133,0.362437,0.207024,0.754947,0.182854,0.953259,0.799444,0.485732,0.855407,0.560967,0.803563,0.356334,0.231466,0.972428,0.0421209,0.450651,0.086296,0.0182528,0.731883,0.087034,0.146924,0.393171,0.78712,0.447983,0.456489,0.989521,0.248239,0.798449,0.813902,0.153447,0.408514,0.0592844,0.477314,0.910146,0.620082,0.228502,0.845701,0.369239,0.951213,0.580483,0.435785,0.612343,0.573278,0.438963,0.105991,0.421035,0.164565,0.519871,0.428901,0.595393,0.371602,0.45092,0.414327,0.776803,0.135219,0.673843,0.237917,0.86371,0.913747,0.69225,0.630696,0.793104,0.333242,0.70716,0.445812,0.183307,0.759979,0.87317,0.526406,0.099955,0.789198,0.59137,0.906548,0.870523,0.327053,0.355631,0.118574,0.0407254,0.868422,0.115973,0.96854,0.351233,0.84247,0.618955,0.693587,0.927366,0.513569,0.816442,0.340962,0.0634355,0.610617,0.781539,0.921542,0.905616,0.712021,0.330095,0.106566,0.50309,0.281097,0.817824,0.361863,0.433253,0.148015,0.990411,0.874936,0.0844102,0.589446,0.706825,0.941108,0.539948,0.0819322,0.704869,0.816808,0.939698,0.974465,0.0244085,0.609875,0.134266,0.503811,0.0356246,0.100556,0.195685,0.0939031,0.775877,0.0189015,0.41507,0.534033,0.752705,0.719813,0.660014,0.293422,0.953325,0.477953,0.356164,0.0399266,0.875939,0.0922326,0.295065,0.427505,0.553022,0.519343,0.185972,0.128999,0.576885,0.615712,0.0167949,0.954114,0.442746,0.532493,0.0691964,0.598012,0.289393,0.872934,0.0987555,0.627474,0.523376,0.0649108,0.566037,0.655484,0.0427774,0.925744,0.373487,0.355435,0.999659,0.0491712,0.623768,0.982319,0.605466,0.6077,0.118675,0.831596,0.804999,0.956364,0.17422,0.875907,0.559745,0.674412,0.787787,0.798198,0.597506,0.529827,0.301149,0.984643,0.866173,0.900941,0.393639,0.391572,0.542506,0.720125,0.524716,0.201744,0.925079,0.331161,0.910917,0.886017,0.940055,0.290138,0.0750495,0.461843,0.865309,0.686727,0.541916,0.119097,0.0127636,0.723997,0.899691,0.0478545,0.263208,0.35176,0.565664,0.819264,0.668821,0.483981,0.692541,0.889911,0.530365,0.032222,0.646626,0.189205,0.193068,0.0781799,0.116238,0.653159,0.160479,0.268267,0.87277,0.283425,0.971277,0.91665,0.359046,0.0606815,0.954478,0.33238,0.821715,0.376033,0.363324,0.824774,0.847782,0.600361,0.932279,0.0918059,0.204844,0.412354,0.642353,0.623873,0.46719,0.0481966,0.442273,0.962694,0.0821834,0.0938987,0.0564936,0.987804,0.668525,0.0307822,0.755458,0.464289,0.12045,0.0719235,0.234536,0.085929,0.0990776,0.805504,0.400925,0.250671,0.751743,0.39114,0.214949,0.271487,0.204883,0.316846,0.985759,0.938331,0.788981,0.133619,0.0504969,0.34691,0.136213,0.425449,0.851326,0.258237,0.30138,0.987469,0.502021,0.266454,0.772119,0.136194,0.938055,0.272747,0.98525,0.596193,0.8967,0.478414,0.361865,0.476565,0.807667,0.74075,0.213146,0.537687,0.349435,0.14473,0.581771,0.230036,0.831066,0.513676,0.821274,0.178652,0.394989,0.27356,0.036588,0.778667,0.586256,0.322581,0.518193,0.754582,0.781372,0.759397,0.377027,0.692589,0.972628,0.277874,0.777041,0.885208,0.663051,0.205946,0.335521,0.271975,0.678998,0.0218915,0.325239,0.428923,0.942042,0.730149,0.904323,0.654134,0.792872,0.913612,0.139128,0.10905,0.654393,0.216747,0.519603,0.393546,0.983432,0.931328,0.421468,0.479096,0.811614,0.454659,0.58733,0.491945,0.50025,0.191005,0.0645965,0.57781,0.800491,0.00345922,0.968082,0.506549,0.194811,0.705534,0.673913,0.117977,0.00746483,0.160239,0.114453,0.482583,0.651149,0.647214,0.236179,0.718067,0.860193,0.142256,0.401634,0.166401,0.598856,0.218001,0.181684,0.425212,0.611396,0.707484,0.719579,0.706214,0.678713,0.182736,0.71287,0.759595,0.106281,0.331893,0.0462396,0.0775117,0.358558,0.0821876,0.225346,0.00693911,0.571611,0.0951353,0.868731,0.89577,0.560092,0.744957,0.239145,0.112149,0.529362,0.607429,0.41752,0.25758,0.79227,0.626508,0.368365,0.0609506,0.0676256,0.59337,0.962515,0.308715,0.787822,0.772182,0.912308,0.912931,0.251855,0.36141,0.460052,0.368724,0.583159,0.663227,0.940791,0.636357,0.978725,0.409547,0.918235,0.121406,0.94265,0.871395,0.222212,0.973104,0.615869,0.528907,0.979428,0.83792,0.991274,0.722456,0.752832,0.179032,0.904242,0.271836,0.28531,0.704069,0.270841,0.372703,0.0578843,0.513892,0.199281,0.52021,0.258337,0.580256,0.205965,0.611289,0.774472,0.0635737,0.168487,0.138767,0.766335,0.927014,0.39022,0.70314,0.123008,0.710635,0.581551,0.0101844,0.950083,0.174592,0.778975,0.791661,0.887834,0.182108,0.106592,0.587319,0.117707,0.497801,0.0917236,0.80148,0.363439,0.495866,0.000367284,0.00693673,0.2578,0.946142,0.496347,0.76309,0.874387,0.644965,0.962592,0.379216,0.0446537,0.133774,0.9053,0.932064,0.769801,0.581845,0.562672,0.147995,0.369196,0.253114,0.420772,0.79289,0.387666,0.0456316,0.363605,0.413305,0.0903801,0.741864,0.395906,0.279422,0.925057,0.730928,0.402493,0.454728,0.031151,0.573395,0.519659,0.34652,0.444266,0.343719,0.198901,0.826303,0.954254,0.670459,0.0160443,0.159231,0.87144,0.208223,0.519834,0.371995,0.371157,0.766563,0.181215,0.924687,0.602154,0.693382,0.0142913,0.170503,0.990383,0.567841,0.00821602,0.967806,0.951064,0.111719,0.494858,0.948131,0.129586,0.511992,0.119246,0.48528,0.195248,0.913277,0.765436,0.618904,0.492595,0.572129,0.807269,0.108378,0.299895,0.0505869,0.931928,0.572116,0.648242,0.888929,0.949332,0.996531,0.814367,0.462323,0.363126,0.679581,0.0409837,0.704142,0.017621,0.552373,0.634064,0.877978,0.30017,0.419514,0.510216,0.969137,0.929777,0.478041,0.429175,0.932101,0.811868,0.130199,0.0611823,0.621493,0.693336,0.666471,0.839958,0.522536,0.207197,0.513071,0.413554,0.992612,0.152932,0.0741382,0.513594,0.896484,0.831491,0.736031,0.381769,0.961449,0.960963,0.891122,0.411397,0.4062,0.170629,0.753511,0.199332,0.677482,0.845637,0.81301,0.160744,0.142796,0.268214,0.660047,0.885949,0.494945,0.339164,0.787073,0.464633,0.272802,0.585995,0.836643,0.132436,0.97779,0.0216594,0.237732,0.55507,0.554256,0.478596,0.410356,0.124265,0.959459,0.885366,0.0461545,0.420634,0.954471,0.636573,0.505645,0.119929,0.57627,0.376021,0.661423,0.967795,0.593349,0.883252,0.318407,0.710706,0.519313,0.385521,0.907967,0.183769,0.308512,0.235471,0.750401,0.702931,0.734288,0.389922,0.688853,0.419229,0.814354,0.834265,0.361318,0.513775,0.0194705,0.040054,0.407506,0.318265,0.316029,0.722236,0.666672,0.541219,0.219588,0.819829,0.865449,0.615464,0.776841,0.572571,0.410927,0.700686,0.0187713,0.366011,0.960652,0.37303,0.895871,0.411745,0.313502,0.259345,0.0407492,0.706663,0.564523,0.729849,0.398186,0.125568,0.229747,0.725538,0.479084,0.656744,0.741165,0.74175,0.330082,0.0860874,0.123421,0.428802,0.501569,0.570091,0.215931,0.128698,0.0310091,0.328974,0.0243652,0.897348,0.896631,0.483641,0.950119,0.741338,0.248744,0.355848,0.884541,0.809808,0.784736,0.641052,0.1474,0.612366,0.842545,0.247437,0.317373,0.0833681,0.932634,0.897453,0.0805112,0.665228,0.15381,0.575898,0.890386,0.0472089,0.788578,0.53815,0.700739,0.786632,0.603274,0.0781665,0.0947255,0.905437,0.214908,0.714168,0.191038,0.206543,0.472197,0.831118,0.999977,0.162279,0.247299,0.369138,0.272216,0.556869,0.116033,0.971435,0.757515,0.433929,0.0343876,0.952333,0.85858,0.0323614,0.452667,0.00449324,0.123503,0.974684,0.378931,0.194568,0.0305964,0.332781,0.513931,0.0462219,0.561546,0.418308,0.99761,0.308558,0.7387,0.114998,0.929704,0.507385,0.756996,0.00642574,0.279471,0.90369,0.129133,0.702341,0.787315,0.670127,0.828338,0.319765,0.460089,0.995744,0.417034,0.473241,0.240645,0.695671,0.807406,0.0156422,0.0833485,0.607759,0.675157,0.789419,0.36577,0.756145,0.828573,0.365727,0.31463,0.376357,0.420106,0.0182683,0.574038,0.457957,0.262127,0.606766,0.347838,0.850238,0.404459,0.828187,0.668241,0.111936,0.923075,0.624994,0.817908,0.0170422,0.690645,0.670682,0.934014,0.438511,0.875299,0.440806,0.0704257,0.612931,0.19053,0.41313,0.0417209,0.578703,0.157803,0.271708,0.840212,0.618909,0.180858,0.987936,0.408965,0.890677,0.505873,0.699772,0.698249,0.252108,0.355039,0.598879,0.0809054,0.595555,0.536658,0.644989,0.103489,0.90584,0.474234,0.941155,0.0926892,0.425762,0.803973,0.62079,0.0723106,0.10275,0.803537,0.271377,0.28031,0.0172188,0.869012,0.16649,0.346013,0.18362,0.631301,0.027996,0.83336,|0.377297,0.804686,0.406172,0.789842,0.873834,0.382363,0.476739,0.375267,0.897495,0.745577,0.963488,0.968271,0.373097,0.0224556,0.017257,0.732397,0.441528,0.159947,0.473255,0.029713,0.186805,0.507917,0.228558,0.444012,0.56656,0.646767,0.62491,0.311882,0.392791,0.397488,0.569438,0.396592,0.225989,0.446345,0.737881,0.994182,0.344636,0.159945,0.709274,0.673124,0.225127,0.310122,0.793556,0.917486,0.716128,0.886912,0.85662,0.347414,0.962477,0.0220254,0.00441092,0.477075,0.832732,0.399039,0.681676,0.336244,0.0206057,0.954506,0.272722,0.427995,0.864156,0.517745,0.973109,0.251555,0.478083,0.137659,0.740509,0.237052,0.177264,0.410059,0.292314,0.0221329,0.18114,0.766673,0.334108,0.831697,0.254258,0.526141,0.261688,0.956112,0.292539,0.0279608,0.992653,0.460032,0.727833,0.445532,0.577657,0.639519,0.529651,0.467672,0.642478,0.130398,0.768289,0.7102,0.0632239,0.543887,0.658313,0.749905,0.446878,0.809956,0.744716,0.7314,0.193422,0.879298,0.783101,0.0174692,0.652008,0.0143682,0.935816,0.456003,0.581072,0.57768,0.943081,0.339464,0.103787,0.0676091,0.934169,0.0262011,0.38661,0.753126,0.625254,0.874289,0.00138199,0.764332,0.201399,0.54388,0.188667,0.00639278,0.289751,0.655275,0.364935,0.899183,0.718769,0.35291,0.616052,0.621703,0.687519,0.358297,0.300725,0.846504,0.798033,0.73421,0.993737,0.561564,0.430052,0.0701542,0.0403962,0.218039,0.0643486,0.473295,0.570916,0.731543,0.293302,0.716065,0.245588,0.843644,0.712372,0.0163526,0.805694,0.630271,0.634542,0.0250537,0.799807,0.35269,0.166881,0.715527,0.272015,0.669898,0.961761,0.804708,0.847827,0.906835,0.16415,0.338601,0.221461,0.287237,0.731958,0.435406,0.501578,0.657579,0.662058,0.0359136,0.657875,0.900411,0.485016,0.347128,0.978803,0.652368,0.0779698,0.418378,0.583264,0.409172,0.780689,0.687535,0.894638,0.587964,0.936247,0.408335,0.791883,0.891599,0.888141,0.718021,0.507139,0.707289,0.0844325,0.654974,0.158044,0.766157,0.452831,0.160343,0.811996,0.691652,0.0194128,0.322711,0.680909,0.823798,0.509312,0.929814,0.158672,0.649945,0.539128,0.506829,0.201197,0.388364,0.0234659,0.0470378,0.507919,0.00349504,0.34161,0.654038,0.963432,0.490278,0.167371,0.895125,0.845036,0.390797,0.71483,0.200221,0.650453,0.170603,0.363486,0.227311,0.55707,0.273478,0.385629,0.404289,0.268833,0.951214,0.858144,0.570308,0.564625,0.129053,0.438132,0.978242,0.653949,0.497118,0.377462,0.0389788,0.186755,0.97727,0.352653,0.706268,0.140066,0.138835,0.903267,0.407671,0.175913,0.670015,0.777458,0.498829,0.536158,0.619065,0.0791675,0.0792443,0.0990531,0.109171,0.808763,0.734273,0.90355,0.712578,0.598565,0.231998,0.996239,0.795282,0.23378,0.235053,0.335907,0.141814,0.586404,0.939205,0.675592,0.992258,0.926861,0.441434,0.503445,0.793375,0.358549,0.932088,0.583113,0.396074,0.524849,0.22235,0.64497,0.626798,0.68598,0.738665,0.120107,0.0829509,0.692568,0.333936,0.453426,0.547199,0.755937,0.257577,0.0144619,0.751493,0.56626,0.975608,0.792239,0.970743,0.368176,0.19935,0.53199,0.252945,0.597509,0.750974,0.784782,0.387704,0.937013,0.17184,0.366441,0.604499,0.441697,0.582471,0.582216,0.909299,0.625566,0.328681,0.734325,0.35207,0.007572,0.726551,0.487961,0.58639,0.649931,0.409951,0.238063,0.976485,0.352797,0.300326,0.413914,0.0276925,0.252457,0.366638,0.78049,0.651583,0.26196,0.132798,0.798242,0.0808171,0.00833052,0.0945479,0.0132952,0.718802,0.853776,0.104456,0.39029,0.106736,0.812233,0.340565,0.65439,0.0434324,0.973719,0.557751,0.334019,0.939102,0.44411,0.472211,0.84047,0.165765,0.00735044,0.710146,0.993041,0.271923,0.998554,0.19472,0.130345,0.677893,0.508481,0.92824,0.607403,0.311709,0.0590951,0.932096,0.941567,0.840175,0.920419,0.485783,0.39246,0.309966,0.190788,0.316776,0.989962,0.315801,0.814133,0.789692,0.241604,0.693752,0.946464,0.172225,0.0102208,0.197543,0.176115,0.568734,0.968765,0.865827,0.201459,0.0577224,0.475208,0.389725,0.427008,0.290995,0.332655,0.866615,0.234592,0.0708788,0.522589,0.601393,0.844025,0.5204,0.0924043,0.78501,0.730314,0.611955,0.780692,0.402013,0.70087,0.92221,0.599308,0.87621,0.0142353,0.723448,0.519646,0.639873,0.7941,0.400445,0.287286,0.130217,0.664944,0.132468,0.667637,0.238558,0.549295,0.654257,0.0194901,0.663466,0.042154,0.295078,0.0565253,0.160986,0.0905043,0.879,0.408757,0.555203,0.0984561,0.303588,0.597569,0.768036,0.26374,0.978485,0.621792,0.515653,0.367867,0.898017,0.918662,0.331819,0.288327,0.307229,0.695128,0.496248,0.371,0.306405,0.0879368,0.979451,0.13432,0.362293,0.948275,0.664087,0.970853,0.868403,0.8235,0.175222,0.496711,0.590802,0.675083,0.838996,0.708116,0.676281,0.728806,0.279881,0.86886,0.933323,0.437273,0.612864,0.848493,0.24826,0.819152,0.446398,0.349551,0.00205278,0.227675,0.0441595,0.241241,0.86513,0.552985,0.487708,0.85983,0.693523,0.140862,0.135112,0.684791,0.0179855,0.102626,0.235523,0.314962,0.646157,0.0946755,0.398139,0.606679,0.565582,0.404952,0.681907,0.274918,0.944766,0.00389045,0.817747,0.730451,0.0868183,0.814107,0.774152,0.210554,0.0136411,0.775708,0.401574,0.720573,0.590559,0.751423,0.925736,0.298973,0.29872,0.216003,0.516564,0.147438,0.83913,0.959121,0.68485,0.383637,0.461258,0.676457,0.13055,0.628978,0.559903,0.752821,0.639146,0.761421,0.863333,0.110259,0.587894,0.0924755,0.587509,0.291428,0.937321,0.170756,0.133269,0.59488,0.978103,0.809835,0.462309,0.21533,0.117757,0.916627,0.260887,0.522907,0.872189,0.741214,0.595579,0.541551,0.41693,0.775005,0.82928,0.56397,0.0380741,0.43413,0.0372021,0.0801824,0.600942,0.377353,0.313557,0.092874,0.423524,0.603986,0.963791,0.583363,0.728839,0.671279,0.285485,0.101973,0.636593,0.380055,0.999694,0.143869,0.02866,0.334472,0.166763,0.126181,0.509156,0.350884,0.930329,0.728854,0.196423,0.614955,0.187328,0.652479,0.113903,0.168613,0.584049,0.727288,0.442105,0.313875,0.821029,0.676289,0.054229,0.246266,0.711343,0.0670595,0.00438696,0.612717,0.505121,0.597876,0.746621,0.538809,0.675293,0.261545,0.353173,0.791298,0.977312,0.624337,0.475507,0.729768,0.576926,0.244165,0.710443,0.0271966,0.0759924,0.131348,0.756812,0.177312,0.402801,0.418093,0.640331,0.299409,0.357517,0.711447,0.211496,0.429108,0.737881,0.196974,0.414453,0.816244,0.716316,0.994687,0.371375,0.321103,0.882525,0.912868,0.263357,0.43224,0.961323,0.462894,0.883615,0.767419,0.110273,0.12448,0.28772,0.482402,0.56849,0.223873,0.801813,0.577552,0.394702,0.12522,0.796227,0.881264,0.178494,0.389145,0.0562704,0.044946,0.719965,0.989141,0.364349,0.453896,0.539364,0.144468,0.669482,0.471574,0.751209,0.151423,0.00829333,0.455135,0.513046,0.520837,0.660731,0.152253,0.401203,0.710691,0.762249,0.0449054,0.773406,0.822981,0.534357,0.394875,0.107608,0.188406,0.770598,0.876789,0.947095,0.224098,0.63801,0.0952947,0.81851,0.51657,0.900379,0.882472,0.709197,0.309164,0.194133,0.697631,0.874408,0.161731,0.421669,0.526329,0.716495,0.717165,0.59626,0.14387,0.0175222,0.328818,0.118269,0.343877,0.521652,0.759967,0.256756,0.171626,0.656879,0.993344,0.845482,0.980202,0.339675,0.663584,0.049499,0.56027,0.384255,0.0519757,0.0285348,0.403034,0.686674,0.670005,0.932549,0.44573,0.0292169,0.00725144,0.663345,0.212437,0.434286,0.676766,0.61464,0.788229,0.733229,0.653248,0.318532,0.430663,0.917714,0.102222,0.799367,0.389263,0.318446,0.241136,0.906544,0.0736846,0.400181,0.857305,0.902116,0.66149,0.342092,0.621393,0.30755,0.769138,0.405342,0.83202,0.16926,0.710566,0.509316,0.0818164,0.0370628,0.71308,0.0737814,0.397402,0.524679,0.398731,0.324689,0.903473,0.928228,0.457776,0.850131,0.428327,0.837208,0.890527,0.650529,0.632127,0.873205,0.821902,0.677361,0.711846,0.23687,0.223476,0.252308,0.191533,0.324292,0.265702,0.55595,0.568313,0.68592,0.840937,0.355846,0.00911468,0.72854,0.623138,0.88178,0.67911,0.99088,0.315208,0.767877,0.508785,0.604821,0.273566,0.75713,0.489344,0.695858,0.929037,0.592523,0.271337,0.660459,0.928113,0.997922,0.232094,0.172278,0.738011,0.316919,0.116048,0.968665,0.567326,0.649036,0.212367,0.786682,0.241368,0.441157,0.225508,0.0213987,0.881289,0.770876,0.322877,0.775943,0.52599,0.950288,0.798507,0.302026,0.0180312,0.464433,0.657865,0.963404,0.419627,0.314327,0.943979,0.463672,0.868691,0.592191,0.592547,0.22137,0.0408841,0.762479,0.682026,0.832765,0.282849,0.300437,0.905715,0.407015,0.418282,0.0871247,0.42471,0.138274,0.161416,0.680542,0.0558883,0.183267,0.8365,0.683957,0.473819,0.162479,0.0248886,0.157248,0.46958,0.106346,0.0327287,0.16831,0.328291,0.873881,0.483738,0.568476,0.329024,0.575876,0.603071,0.918704,0.442041,0.173451,0.40822,0.915203,0.792262,0.605491,0.209168,0.952354,0.478943,0.440927,0.842286,0.320835,0.812693,0.084256,0.00665128,0.839678,0.149167,0.780471,0.139302,0.284951,0.0553324,0.286932,0.58191,0.22359,0.915228,0.829549,0.732823,0.717813,0.0794843,0.464634,0.825602,0.186712,0.371429,0.884001,0.79826,0.494445,0.529558,0.296235,0.632175,0.683152,0.716368,0.12474,0.271352,0.613956,0.679268,0.212434,0.185075,0.171001,0.810972,0.936117,0.229616,0.366291,0.245784,0.385269,0.237788,0.0247668,0.757524,0.918404,0.5199,0.193813,0.765118,0.371489,0.817231,0.268073,0.670179,0.0608709,0.973933,0.962774,0.690527,0.282512,0.650763,0.325318,0.578291,0.316844,0.782774,0.711955,0.528719,0.318565,|0.947627,0.883307,0.667548,0.322635,0.566745,0.406113,0.832439,0.341393,0.43671,0.75796,0.0356027,0.00848615,0.838406,0.122923,0.0379824,0.620959,0.736663,0.495015,0.727235,0.151231,0.385472,0.608193,0.143277,0.128984,0.846522,0.585586,0.413529,0.421184,0.0340136,0.497925,0.145118,0.0492777,0.367229,0.457498,0.601205,0.920477,0.626202,0.585147,0.34331,0.021173,0.0845,0.0519401,0.840232,0.630469,0.251183,0.668225,0.385097,0.255565,0.786116,0.785228,0.825103,0.308866,0.948778,0.703739,0.331318,0.692046,0.426328,0.656098,0.370066,0.655064,0.629099,0.377527,0.79629,0.763385,0.424036,0.698547,0.668559,0.0142467,0.238591,0.282451,0.184025,0.229938,0.160958,0.545266,0.8719,0.493051,0.637846,0.948275,0.302705,0.982383,0.32185,0.0655018,0.198225,0.429643,0.949473,0.395103,0.210949,0.344663,0.343874,0.577937,0.350285,0.768447,0.0107383,0.84547,0.439808,0.230597,0.0814346,0.892286,0.63436,0.51861,0.676473,0.0833212,0.108026,0.090324,0.396705,0.876985,0.412415,0.356194,0.345701,0.650825,0.579572,0.128312,0.255056,0.816107,0.273382,0.327038,0.831621,0.772688,0.381458,0.129254,0.606784,0.997,0.152059,0.380008,0.197057,0.65795,0.978261,0.984644,0.475559,0.728509,0.602618,0.267525,0.667296,0.372506,0.802944,0.768359,0.400595,0.147371,0.892624,0.886194,0.875795,0.22227,0.271402,0.570537,0.325004,0.0225393,0.717956,0.517468,0.357029,0.523927,0.826035,0.135153,0.527939,0.0907163,0.343588,0.0498945,0.515631,0.954957,0.907611,0.146258,0.427153,0.563858,0.757567,0.50923,0.89064,0.766473,0.0392094,0.974551,0.738539,0.150788,0.214184,0.745908,0.896373,0.512187,0.886997,0.367899,0.787105,0.720006,0.29927,0.021748,0.82825,0.0174325,0.720672,0.30312,0.847427,0.454971,0.753173,0.583212,0.503717,0.26729,0.00334734,0.514111,0.324046,0.279103,0.931878,0.102331,0.0945964,0.560662,0.278545,0.695676,0.284808,0.66519,0.388194,0.905998,0.724554,0.27457,0.327731,0.550665,0.0392627,0.723866,0.307324,0.328913,0.893573,0.239693,0.718177,0.505508,0.53387,0.521361,0.480508,0.0542567,0.373849,0.803727,0.41257,0.301831,0.63886,0.244887,0.00754833,0.462818,0.830609,0.543995,0.864369,0.496321,0.59128,0.102433,0.614222,0.786251,0.739578,0.548493,0.126321,0.964672,0.412422,0.111803,0.620716,0.19328,0.332743,0.0186471,0.201307,0.55007,0.416178,0.589408,0.189899,0.745395,0.0998136,0.647696,0.254279,0.961583,0.121627,0.960897,0.500713,0.903977,0.896139,0.778911,0.999035,0.404336,0.641476,0.881454,0.337674,0.248855,0.725218,0.400987,0.942173,0.386998,0.115995,0.435997,0.309699,0.0799689,0.529229,0.219123,0.669106,0.000346959,0.335614,0.134001,0.286243,0.82539,0.712708,0.878298,0.778514,0.758042,0.294095,0.430978,0.594478,0.564733,0.387093,0.32565,0.658322,0.94769,0.400718,0.391575,0.263009,0.427554,0.321727,0.668989,0.304876,0.409836,0.676817,0.52805,0.981926,0.740795,0.434623,0.704525,0.104393,0.129278,0.272517,0.104826,0.782671,0.975387,0.0296074,0.257046,0.470718,0.83284,0.154261,0.111309,0.58171,0.130311,0.520176,0.855956,0.270586,0.687588,0.478911,0.197537,0.515329,0.739574,0.404463,0.966959,0.234721,0.623407,0.849812,0.873036,0.344673,0.806456,0.821019,0.148218,0.190436,0.345407,0.637013,0.867562,0.397844,0.908187,0.958467,0.20205,0.390055,0.658788,0.353379,0.537139,0.238306,0.0985098,0.86184,0.724242,0.797531,0.213484,0.204833,0.70728,0.8995,0.84462,0.734019,0.772296,0.212274,0.14526,0.534728,0.314674,0.104946,0.630593,0.762106,0.815158,0.910101,0.475142,0.520115,0.846769,0.51656,0.291979,0.419607,0.59444,0.512871,0.228751,0.388221,0.965331,0.556054,0.625071,0.337826,0.335131,0.280047,0.427889,0.915895,0.887025,0.864742,0.188455,0.100501,0.896164,0.825628,0.00145429,0.797972,0.180591,0.533607,0.389389,0.199167,0.734687,0.658731,0.199768,0.417075,0.666091,0.988596,0.68781,0.936646,0.830582,0.0223774,0.120483,0.0904574,0.0589746,0.350639,0.324435,0.840839,0.42182,0.116127,0.122744,0.260744,0.252563,0.78353,0.0334778,0.445792,0.151267,0.902116,0.644276,0.572277,0.281052,0.149903,0.988937,0.680101,0.609642,0.583073,0.239842,0.193021,0.263293,0.185514,0.13359,0.625138,0.0118482,0.344546,0.907775,0.887012,0.527084,0.238748,0.137734,0.9808,0.985384,0.572412,0.229766,0.592879,0.574999,0.410639,0.638039,0.802425,0.310267,0.81703,0.445162,0.177751,0.487101,0.0408408,0.854816,0.552152,0.0568385,0.857336,0.0297787,0.62735,0.59736,0.984112,0.437043,0.600363,0.471546,0.783927,0.0324936,0.717894,0.0133884,0.0578452,0.867388,0.485076,0.727699,0.950445,0.897833,0.574872,0.81223,0.801491,0.567534,0.381279,0.512857,0.742842,0.440198,0.834721,0.611083,0.967708,0.563603,0.54714,0.0570523,0.964772,0.324809,0.552986,0.825663,0.62908,0.394593,0.504601,0.72613,0.626921,0.814411,0.0567819,0.491931,0.366311,0.291848,0.0989959,0.689233,0.670359,0.80153,0.717423,0.701134,0.18813,0.410832,0.640206,0.0261712,0.63895,0.974616,0.885511,0.121158,0.219128,0.518356,0.0899912,0.025693,0.164883,0.727982,0.192551,0.255664,0.0136819,0.0425916,0.659886,0.461454,0.770493,0.428563,0.563218,0.724343,0.156117,0.347882,0.333682,0.164015,0.810631,0.363932,0.156395,0.572496,0.681407,0.94142,0.212802,0.985885,0.703641,0.442845,0.583001,0.995837,0.526772,0.202817,0.110686,0.0671189,0.781278,0.455375,0.801399,0.482419,0.18746,0.803103,0.533753,0.330373,0.876795,0.681943,0.890202,0.313263,0.668798,0.563092,0.766801,0.156437,0.661403,0.545063,0.0600263,0.364014,0.0123711,0.939344,0.557238,0.47025,0.763242,0.125255,0.829421,0.0415346,0.145724,0.132538,0.667229,0.349319,0.535374,0.56067,0.23459,0.929455,0.153643,0.865516,0.152065,0.78399,0.0717586,0.631408,0.986126,0.174622,0.26221,0.286068,0.157188,0.501101,0.180004,0.176847,0.773164,0.727265,0.417489,0.664965,0.737958,0.604328,0.348177,0.100273,0.237771,0.518365,0.847559,0.138609,0.388247,0.194598,0.846358,0.227123,0.487261,0.0385754,0.688146,0.410799,0.358702,0.159026,0.388604,0.977817,0.428898,0.0375936,0.958138,0.71348,0.138761,0.836143,0.659447,0.00106025,0.717471,0.908675,0.427786,0.680261,0.766324,0.512701,0.0437641,0.903921,0.2066,0.43048,0.107106,0.709127,0.978571,0.799403,0.478614,0.968541,0.968528,0.757649,0.0941661,0.611586,0.250833,0.433648,0.552015,0.160179,0.320994,0.0549707,0.0501972,0.629987,0.348836,0.288682,0.148549,0.631739,0.0923504,0.159557,0.938107,0.46713,0.525886,0.243275,0.0307329,0.892154,0.556121,0.42116,0.523676,0.997116,0.904172,0.0758229,0.761154,0.10136,0.175667,0.29605,0.567051,0.305753,0.567741,0.843662,0.763315,0.977158,0.590162,0.243128,0.56696,0.529085,0.834842,0.158407,0.262492,0.994916,0.140793,0.226605,0.159964,0.715046,0.454475,0.0550025,0.747593,0.0035342,0.66595,0.0403574,0.343018,0.484343,0.69407,0.661327,0.64107,0.299757,0.736133,0.719839,0.528792,0.934641,0.646557,0.567778,0.863784,0.195745,0.188735,0.639593,0.0195309,0.448241,0.604349,0.495696,0.552814,0.174254,0.127634,0.0148593,0.792356,0.720266,0.518903,0.0545647,0.120627,0.806904,0.729619,0.684903,0.14509,0.553623,0.265895,0.779787,0.793796,0.790174,0.789534,0.415303,0.459991,0.200492,0.860398,0.0802659,0.418631,0.349127,0.622829,0.112857,0.786375,0.943852,0.2598,0.896301,0.379479,0.819332,0.197275,0.218908,0.0129293,0.61066,0.497906,0.572674,0.187825,0.102777,0.0888308,0.678439,0.196397,0.938525,0.053005,0.667817,0.319445,0.614843,0.394023,0.866671,0.326978,0.768277,0.38362,0.535241,0.786257,0.264156,0.557215,0.632355,0.575896,0.124461,0.663941,0.00605345,0.0342241,0.690743,0.388047,0.22005,0.796566,0.945414,0.4618,0.316449,0.320931,0.0710909,0.36545,0.421856,0.0322435,0.542113,0.373699,0.991041,0.425589,0.773327,0.0155571,0.454902,0.501531,0.557842,0.671025,0.721108,0.827868,0.323631,0.846014,0.951855,0.630989,0.554098,0.41388,0.659195,0.173568,0.283939,0.784121,0.0986283,0.651769,0.206487,0.869758,0.197302,0.656696,0.895506,0.929395,0.149365,0.523784,0.995252,0.457385,0.517281,0.864745,0.554248,0.222409,0.210345,0.805169,0.587522,0.895287,0.954149,0.281237,0.174949,0.599921,0.200093,0.167536,0.203852,0.78346,0.166411,0.522086,0.659824,0.484668,0.288517,0.0311376,0.0319703,0.0286906,0.852153,0.271343,0.286521,0.686824,0.164235,0.404434,0.940114,0.664603,0.375678,0.862342,0.544755,0.173808,0.850742,0.161292,0.313939,0.996838,0.368462,0.526935,0.78992,0.929017,0.638025,0.128785,0.492377,0.876901,0.846636,0.977548,0.403024,0.309539,0.386109,0.419278,0.23806,0.938253,0.97904,0.283282,0.686802,0.879229,0.178859,0.239297,0.416214,0.249015,0.766422,0.269508,0.875666,0.307412,0.891108,0.541408,0.568077,0.902588,0.0513268,0.536914,0.704371,0.187597,0.560427,0.106869,0.660235,0.717718,0.0144212,0.66503,0.33167,0.292498,0.105944,0.754068,0.258959,0.963975,0.468405,0.707723,0.36073,0.287696,0.645464,0.0604669,0.298373,0.819775,0.414886,0.945073,0.615342,0.64868,0.0214074,0.809231,0.151015,0.204106,0.419739,0.0593891,0.232823,0.158794,0.0470705,0.711928,0.309241,0.391653,0.410868,0.5628,0.652388,0.53394,0.506045,0.675745,0.663927,0.195648,0.0756068,0.333338,0.467311,0.957512,0.689368,0.67043,0.176155,0.23035,0.888762,0.923274,0.530806,0.397459,0.781199,0.0903181,0.28295,0.264974,0.324183,0.904588,0.216705,0.970063,0.254608,0.127376,0.0206978,0.709031,0.448138,0.999379,0.0931641,|0.794297,0.836113,0.487527,0.45497,0.881342,0.796503,0.630101,0.0418268,0.838177,0.178787,0.950078,0.905282,0.107863,0.931333,0.0935572,0.308413,0.997243,0.572373,0.268353,0.936271,0.174069,0.281474,0.841059,0.415698,0.387497,0.547183,0.208351,0.194186,0.881565,0.553505,0.151683,0.554441,0.340566,0.794862,0.592708,0.933115,0.733167,0.136458,0.469487,0.880972,0.79658,0.825701,0.0038479,0.0940278,0.994112,0.754854,0.522612,0.176034,0.203108,0.37647,0.834495,0.89879,0.746084,0.454568,0.0343005,0.637649,0.805832,0.0407158,0.851986,0.689799,0.966653,0.995356,0.370124,0.49979,0.517137,0.745334,0.0294712,0.559007,0.549007,0.683598,0.447872,0.622528,0.406587,0.230254,0.0288264,0.540558,0.879061,0.773538,0.959722,0.585128,0.844202,0.565477,0.878643,0.181638,0.185698,0.315431,0.995074,0.583293,0.651404,0.581461,0.374902,0.050944,0.233056,0.279123,0.938578,0.1023,0.900854,0.21883,0.963166,0.0721648,0.25538,0.89521,0.672282,0.14835,0.625325,0.366279,0.13211,0.264061,0.322312,0.0358937,0.864289,0.773409,0.570735,0.523941,0.766069,0.55573,0.9805,0.0653262,0.511848,0.29832,0.878857,0.333585,0.225091,0.688167,0.982779,0.702679,0.570909,0.745057,0.193649,0.810984,0.0484647,0.505017,0.343678,0.550599,0.790357,0.853443,0.276086,0.339704,0.453588,0.927099,0.735412,0.901295,0.50259,0.858644,0.549309,0.803011,0.868623,0.768205,0.764852,0.985687,0.19177,0.898479,0.239335,0.422965,0.74777,0.0876394,0.907531,0.5758,0.426217,0.891294,0.905925,0.126736,0.0977895,0.233714,0.816158,0.854565,0.101688,0.0405805,0.255239,0.142775,0.137145,0.0271228,0.716093,0.500114,0.273275,0.170172,0.786662,0.47082,0.665565,0.91353,0.480314,0.64188,0.444894,0.898422,0.718721,0.224153,0.0301563,0.934422,0.716415,0.316752,0.836002,0.403391,0.0424096,0.53959,0.658115,0.285822,0.661628,0.662052,0.526346,0.268646,0.275781,0.223573,0.429428,0.452706,0.652003,0.500511,0.444156,0.495923,0.833909,0.752853,0.720855,0.828014,0.172623,0.766775,0.090205,0.666225,0.000247896,0.842355,0.403763,0.75466,0.538847,0.694767,0.122245,0.642083,0.694233,0.882949,0.02879,0.103059,0.205661,0.145551,0.815115,0.0309611,0.666753,0.537051,0.176211,0.144777,0.789127,0.385637,0.368205,0.881189,0.615347,0.132243,0.416967,0.126647,0.441867,0.309648,0.965045,0.0146793,0.268577,0.62626,0.0707433,0.0592451,0.657349,0.202428,0.889407,0.518351,0.618781,0.124905,0.355769,0.668988,0.235651,0.657249,0.531073,0.297325,0.889991,0.410258,0.646264,0.582974,0.88573,0.191399,0.10384,0.0681241,0.0826246,0.166103,0.579998,0.607832,0.133167,0.165688,0.168445,0.307535,0.332279,0.88698,0.510707,0.00485909,0.725796,0.752957,0.232856,0.996644,0.921845,0.996958,0.8145,0.384245,0.792648,0.117975,0.701077,0.444142,0.303726,0.780994,0.5727,0.859177,0.373043,0.870312,0.089843,0.358632,0.742433,0.968605,0.516762,0.797101,0.102998,0.259854,0.138651,0.821563,0.117654,0.531539,0.140742,0.209114,0.578449,0.438788,0.817024,0.969718,0.0638644,0.448914,0.871122,0.453766,0.837384,0.364657,0.593668,0.91438,0.447843,0.28236,0.957035,0.0475532,0.352651,0.110915,0.604748,0.676101,0.0483434,0.159629,0.704615,0.406567,0.485541,0.24435,0.886612,0.87146,0.783034,0.124574,0.120272,0.0544901,0.203258,0.0398529,0.405164,0.0876307,0.881386,0.686415,0.2541,0.908758,0.361679,0.412798,0.751348,0.555122,0.851775,0.755587,0.203112,0.861306,0.633674,0.788838,0.443971,0.176684,0.893752,0.515806,0.790885,0.0330393,0.936334,0.930715,0.341835,0.96868,0.476456,0.0604284,0.428609,0.764404,0.112956,0.184757,0.208061,0.684283,0.231641,0.533318,0.563675,0.682886,0.148718,0.568477,0.0137341,0.132253,0.0450256,0.745866,0.363512,0.137711,0.820792,0.53552,0.330787,0.00279599,0.46154,0.582438,0.273931,0.337186,0.366377,0.506151,0.365236,0.0911745,0.249733,0.324131,0.471483,0.480675,0.948418,0.132605,0.178316,0.578396,0.85397,0.370883,0.449279,0.273466,0.789361,0.503632,0.41612,0.194931,0.460476,0.0458717,0.198276,0.996477,0.171983,0.21673,0.802117,0.0340073,0.309378,0.458103,0.477217,0.495299,0.60168,0.791699,0.863701,0.400359,0.148849,0.710372,0.778206,0.750262,0.6027,0.231753,0.97794,0.280493,0.831227,0.0302844,0.932144,0.2885,0.316848,0.777743,0.254556,0.556782,0.855446,0.514726,0.824136,0.427599,0.904846,0.640063,0.778579,0.522535,0.218495,0.783417,0.932393,0.64951,0.0949076,0.467864,0.313911,0.276263,0.307158,0.519499,0.951786,0.980322,0.763833,0.423132,0.0347926,0.173148,0.151894,0.691648,0.400388,0.0478153,0.107557,0.0662684,0.854398,0.638582,0.1211,0.333137,0.767976,0.319385,0.122934,0.794367,0.344777,0.667934,0.252138,0.664463,0.530004,0.765199,0.188853,0.258126,0.0806924,0.159595,0.396293,0.886866,0.639526,0.51428,0.803874,0.941503,0.535032,0.397193,0.346223,0.0603428,0.432128,0.895035,0.304925,0.285846,0.410178,0.88399,0.651179,0.418873,0.748587,0.791121,0.743734,0.417581,0.016948,0.373787,0.0085032,0.771479,0.609925,0.206036,0.0708414,0.731762,0.362192,0.272282,0.842059,0.37676,0.837583,0.981834,0.996546,0.586358,0.039085,0.487314,0.74049,0.201173,0.457535,0.0704406,0.244269,0.73767,0.506411,0.306438,0.24429,0.323599,0.83743,0.7302,0.383425,0.523663,0.0867299,0.611253,0.695101,0.938455,0.594042,0.302926,0.426611,0.202078,0.155954,0.678563,0.954854,0.0242872,0.130723,0.959394,0.560953,0.880806,0.862253,0.436846,0.628231,0.738758,0.23306,0.109125,0.42274,0.998224,0.26895,0.482435,0.764318,0.648694,0.488451,0.811255,0.220287,0.601874,0.97819,0.779607,0.0928915,0.00732082,0.968495,0.512724,0.247481,0.774227,0.999844,0.48743,0.391318,0.25858,0.760979,0.303933,0.924327,0.329554,0.831223,0.0706002,0.237947,0.893347,0.635274,0.385886,0.340998,0.255143,0.986314,0.55232,0.870646,0.78532,0.641569,0.656276,0.454824,0.821939,0.946558,0.284025,0.171975,0.284057,0.106073,0.687927,0.351573,0.523701,0.212162,0.425656,0.0399162,0.0419471,0.477113,0.666071,0.15047,0.0751777,0.557635,0.641419,0.979367,0.73306,0.850652,0.305509,0.850772,0.174246,0.483859,0.271148,0.782763,0.871914,0.539772,0.919448,0.901095,0.191787,0.19368,0.137104,0.661135,0.398496,0.419134,0.469246,0.826668,0.808038,0.169917,0.169059,0.596564,0.527927,0.190765,0.254996,0.681668,0.36559,0.859768,0.530473,0.140223,0.949979,0.315359,0.911907,0.356557,0.286959,0.247294,0.826689,0.321484,0.349056,0.668584,0.590336,0.926239,0.80195,0.308822,0.42735,0.639458,0.554402,0.596821,0.804364,0.861885,0.658392,0.376932,0.117137,0.179593,0.811748,0.990374,0.216587,0.539528,0.797414,0.738815,0.596047,0.969263,0.869459,0.0754672,0.896037,0.794985,0.417331,0.590688,0.614261,0.290694,0.278538,0.453081,0.0320739,0.579245,0.8332,0.384514,0.95474,0.205364,0.984464,0.955808,0.926517,0.426513,0.9091,0.491849,0.049176,0.717794,0.395981,0.161279,0.387322,0.747985,0.390826,0.372995,0.53485,0.568254,0.832178,0.913342,0.714759,0.334849,0.0578769,0.682741,0.859935,0.674387,0.904496,0.29657,0.640411,0.880381,0.642056,0.152744,0.751372,0.93188,0.380235,0.408404,0.313463,0.726714,0.388096,0.161746,0.153338,0.058292,0.940893,0.880386,0.772262,0.196355,0.0660992,0.399761,0.375356,0.693166,0.893795,0.35686,0.979701,0.84944,0.839505,0.103409,0.449257,0.937331,0.990047,0.185879,0.212015,0.989465,0.655982,0.706121,0.54149,0.251086,0.970669,0.470169,0.726478,0.740701,0.507168,0.700107,0.00134057,0.348774,0.642396,0.848694,0.094997,0.536104,0.415871,0.178786,0.810892,0.0861876,0.240166,0.600899,0.0289305,0.638651,0.755217,0.768384,0.18166,0.400155,0.84029,0.0207736,0.060523,0.337187,0.762235,0.69329,0.434401,0.517412,0.922498,0.153803,0.284331,0.954138,0.780173,0.29657,0.0981373,0.644735,0.699926,0.876319,0.578152,0.742932,0.530176,0.115225,0.218092,0.262913,0.22325,0.0595711,0.147872,0.508325,0.345104,0.170755,0.771784,0.586952,0.784887,0.553826,0.603968,0.217802,0.907101,0.55889,0.966423,0.571293,0.884722,0.535241,0.250481,0.766228,0.725872,0.666071,0.893432,0.598645,0.829568,0.660493,0.0951828,0.833605,0.486528,0.622487,0.618042,0.0922709,0.0190763,0.363768,0.943991,0.893124,0.102092,0.372981,0.868597,0.281,0.526384,0.790013,0.580955,0.811473,0.104294,0.63533,0.339995,0.301468,0.762381,0.0574489,0.866502,0.376104,0.277757,0.850801,0.106052,0.732921,0.978862,0.279666,0.809141,0.524509,0.51608,0.014236,0.403919,0.955105,0.347884,0.700465,0.0645856,0.181759,0.775284,0.459353,0.149549,0.179932,0.378366,0.183501,0.533078,0.459802,0.361133,0.0610337,0.985048,0.249726,0.602581,0.0879955,0.34919,0.53121,0.0544254,0.746748,0.873151,0.0557683,0.627304,0.682706,0.0302345,0.4447,0.85777,0.441865,0.487017,0.876079,0.843432,0.4907,0.47673,0.533219,0.273013,0.549384,0.507019,0.391708,0.468735,0.837547,0.672209,0.668531,0.97217,0.66833,0.82425,0.774845,0.294316,0.336373,0.550931,0.373579,0.239374,0.336017,0.788107,0.611478,0.660552,0.186347,0.221606,0.44011,0.268397,0.0255326,0.685406,0.367384,0.880938,0.88048,0.420048,0.528567,0.501207,0.455594,0.936682,0.894525,0.683183,0.315467,0.480723,0.119287,0.599341,0.516916,0.744429,0.697196,0.946028,0.103053,0.469938,0.403726,0.625888,0.296793,0.548792,0.647401,0.801105,0.752303,0.178977,0.240277,0.631052,0.686584,0.554104,0.838964,0.0366394,0.277668,0.379797,0.106518,0.528376,0.571313,0.236617,|0.30074,0.89172,0.212998,0.201445,0.634589,0.608801,0.353096,0.844009,0.34144,0.172616,0.401945,0.639705,0.526526,0.719484,0.361496,0.421502,0.845408,0.0499623,0.194926,0.848023,0.609605,0.193018,0.483741,0.835079,0.735384,0.700097,0.810064,0.711594,0.85278,0.381069,0.674465,0.171856,0.996684,0.054322,0.156947,0.898236,0.625441,0.504198,0.787832,0.988303,0.0267039,0.372812,0.988073,0.188667,0.826772,0.0296055,0.956137,0.778003,0.219344,0.588341,0.249647,0.665513,0.540529,0.811985,0.505318,0.295939,0.767835,0.312124,0.641271,0.145131,0.328579,0.0227184,0.291075,0.764713,0.684316,0.573057,0.327839,0.390181,0.298793,0.981486,0.364958,0.0714906,0.465362,0.605708,0.591223,0.607953,0.081497,0.119521,0.346392,0.0144307,0.923301,0.522472,0.606862,0.680347,0.956162,0.241433,0.448506,0.656497,0.964234,0.236499,0.189382,0.391555,0.538828,0.492533,0.117584,0.793208,0.9009,0.224657,0.680009,0.739918,0.204492,0.53113,0.784979,0.853514,0.555627,0.943452,0.830514,0.552695,0.699886,0.174968,0.543524,0.897688,0.35416,0.947251,0.172401,0.833324,0.180416,0.353342,0.861203,0.300954,0.323216,0.320799,0.741955,0.213397,0.982617,0.702696,0.305168,0.92361,0.436161,0.413323,0.785251,0.0871063,0.880673,0.180743,0.682178,0.565948,0.864712,0.474319,0.244511,0.766635,0.197997,0.897767,0.754205,0.124282,0.133882,0.497873,0.449687,0.781075,0.0110641,0.572769,0.797646,0.757839,0.422417,0.612895,0.000303149,0.403549,0.859157,0.734607,0.467274,0.455757,0.669555,0.57651,0.301697,0.969678,0.27679,0.767348,0.570603,0.476936,0.980708,0.736549,0.292015,0.434768,0.710261,0.360442,0.203893,0.695588,0.889263,0.31074,0.546334,0.831757,0.084523,0.879086,0.145715,0.535994,0.202967,0.307454,0.714224,0.878935,0.37216,0.56388,0.510527,0.184487,0.988848,0.747978,0.98648,0.88141,0.628485,0.385763,0.99853,0.236527,0.9919,0.790529,0.520417,0.0731688,0.731168,0.316612,0.78643,0.804842,0.941748,0.816418,0.160076,0.919987,0.389445,0.392002,0.292431,0.588972,0.173071,0.619734,0.998864,0.245537,0.0850589,0.0878868,0.159111,0.315122,0.00706452,0.70443,0.603728,0.442658,0.488088,0.62809,0.0114944,0.810647,0.686062,0.528212,0.771692,0.871585,0.616431,0.275958,0.0583515,0.333583,0.145102,0.305707,0.599652,0.953247,0.518837,0.383779,0.230737,0.595244,0.384953,0.756055,0.548716,0.192383,0.754892,0.419713,0.684271,0.757369,0.702667,0.468254,0.850063,0.237885,0.0387284,0.494305,0.69593,0.114532,0.474801,0.628154,0.0526697,0.725707,0.450265,0.361725,0.101684,0.421846,0.0621814,0.332832,0.792114,0.989435,0.248673,0.235966,0.617604,0.60123,0.660824,0.744916,0.156232,0.39027,0.720578,0.83311,0.983211,0.796359,0.75422,0.954209,0.187853,0.709061,0.274372,0.617242,0.2925,0.227251,0.59996,0.353302,0.125499,0.502663,0.673115,0.75188,0.212191,0.220018,0.338016,0.851704,0.912154,0.915355,0.768814,0.162436,0.75926,0.402417,0.750825,0.324292,0.849775,0.0872524,0.232232,0.654675,0.241481,0.708898,0.582491,0.484043,0.724361,0.885297,0.291123,0.335021,0.354008,0.00465137,0.318528,0.636454,0.970999,0.312235,0.122967,0.645736,0.918372,0.592544,0.412424,0.505554,0.839102,0.539908,0.946045,0.218302,0.765612,0.27435,0.564454,0.590181,0.564586,0.855833,0.45547,0.192937,0.983826,0.14852,0.940752,0.648541,0.770272,0.104422,0.208275,0.656949,0.59385,0.687204,0.239248,0.506014,0.798475,0.592575,0.129173,0.514799,0.959588,0.77018,0.215804,0.727884,0.753816,0.767961,0.993656,0.0500793,0.221577,0.781545,0.909783,0.0330926,0.27536,0.242259,0.0880674,0.321947,0.0523562,0.976439,0.0975158,0.621907,0.141922,0.868193,0.659259,0.637428,0.0655492,0.942169,0.723731,0.105526,0.190093,0.365373,0.371521,0.146779,0.751057,0.193509,0.681114,0.995371,0.962541,0.379123,0.356441,0.696631,0.0695033,0.330943,0.183114,0.671087,0.346424,0.00418538,0.692376,0.562832,0.696994,0.349911,0.391545,0.872312,0.319619,0.305677,0.663096,0.228394,0.880615,0.483652,0.450762,0.666425,0.796003,0.796817,0.0443817,0.914855,0.838573,0.128939,0.882849,0.966671,0.166301,0.199601,0.990088,0.053295,0.997121,0.462568,0.249489,0.128133,0.92422,0.0372353,0.965172,0.296364,0.876465,0.204592,0.453464,0.741068,0.298917,0.344249,0.985294,0.252206,0.545629,0.711523,0.946456,0.251587,0.808959,0.0185781,0.783993,0.311298,0.0772933,0.666247,0.463859,0.348868,0.366708,0.546442,0.914931,0.189448,0.378054,0.527665,0.89693,0.985572,0.242624,0.108197,0.729523,0.357866,0.377063,0.320505,0.809878,0.625704,0.9032,0.771826,0.357883,0.438748,0.534908,0.757873,0.898185,0.805258,0.795682,0.653963,0.127309,0.0981362,0.890944,0.546593,0.28911,0.0438111,0.238584,0.261456,0.393536,0.650956,0.0405336,0.879002,0.11545,0.222581,0.0984619,0.648079,0.49581,0.537572,0.0600283,0.580115,0.603352,0.510227,0.679912,0.570916,0.855932,0.84409,0.750306,0.797706,0.917808,0.70443,0.682881,0.653271,0.851436,0.59947,0.353278,0.392474,0.972799,0.409688,0.102916,0.839722,0.728754,0.276191,0.864709,0.61209,0.747253,0.113362,0.853458,0.00934553,0.138142,0.0436619,0.726365,0.374585,0.212259,0.731666,0.942834,0.581249,0.40198,0.702725,0.0501011,0.813463,0.196271,0.280593,0.882796,0.14519,0.08112,0.908465,0.0575452,0.239802,0.117937,0.534469,0.0931825,0.202438,0.510129,0.0384513,0.856241,0.437138,0.239671,0.139472,0.29322,0.442735,0.728263,0.647773,0.107826,0.0405076,0.293104,0.276656,0.434972,0.961854,0.0639156,0.637023,0.262107,0.0497816,0.670537,0.452225,0.940483,0.580584,0.546414,0.992773,0.23655,0.696021,0.333003,0.467056,0.931212,0.580407,0.165883,0.879788,0.903925,0.369409,0.334587,0.28338,0.62421,0.215221,0.922161,0.503966,0.528024,0.611649,0.00165051,0.995234,0.213021,0.0470681,0.995405,0.574485,0.979181,0.734732,0.212629,0.0946404,0.091719,0.35179,0.564669,0.110885,0.152259,0.350416,0.724303,0.363136,0.781227,0.278845,0.615971,0.551348,0.555441,0.631652,0.430034,0.0663205,0.27033,0.315483,0.531695,0.478021,0.520179,0.411281,0.168404,0.661679,0.126656,0.848987,0.161558,0.444594,0.42309,0.488362,0.685861,0.707928,0.882813,0.960943,0.347314,0.678468,0.27705,0.989857,0.716856,0.301193,0.485821,0.633297,0.192199,0.920812,0.0108397,0.259493,0.0869874,0.26034,0.177985,0.110592,0.788743,0.950716,0.289374,0.46918,0.261824,0.271716,0.0483968,0.275688,0.234354,0.122704,0.136226,0.182024,0.131396,0.938941,0.289528,0.418589,0.147014,0.644245,0.593396,0.227332,0.294072,0.351044,0.823509,0.185199,0.781175,0.59532,0.182735,0.00927907,0.917164,0.859688,0.59606,0.712371,0.0166046,0.103935,0.211558,0.0271658,0.0544168,0.879236,0.876125,0.913742,0.805844,0.33739,0.585081,0.912614,0.223247,0.200019,0.554738,0.32738,0.0147013,0.456947,0.616624,0.521083,0.739012,0.476527,0.194227,0.873476,0.895539,0.787033,0.261837,0.993494,0.477476,0.526247,0.968853,0.462282,0.720514,0.270858,0.653639,0.118526,0.27896,0.0189648,0.549127,0.504849,0.658074,0.310859,0.10737,0.905831,0.724858,0.126417,0.845347,0.0869859,0.0808139,0.958014,0.160881,0.580184,0.909416,0.389376,0.723117,0.976972,0.377854,0.658226,0.430024,0.842027,0.187878,0.171387,0.622191,0.861548,0.944772,0.455624,0.449532,0.277793,0.530108,0.867621,0.57884,0.101438,0.787846,0.456223,0.45407,0.00971013,0.682478,0.261247,0.711916,0.276215,0.422551,0.338489,0.351435,0.297342,0.0154791,0.383583,0.260742,0.598843,0.185641,0.260365,0.56986,0.132533,0.706268,0.360608,0.949542,0.567626,0.899592,0.448073,0.885087,0.00103623,0.270834,0.56849,0.372386,0.422532,0.973414,0.0659723,0.654855,0.966254,0.0643558,0.363483,0.142082,0.0255294,0.975107,0.365196,0.378147,0.751333,0.242167,0.896593,0.00262052,0.41575,0.0155592,0.461517,0.533475,0.469055,0.933555,0.899196,0.632327,0.0918126,0.141531,0.666945,0.122012,0.952521,0.62585,0.590042,0.975913,0.348897,0.822344,0.66621,0.300342,0.208598,0.969296,0.629836,0.00709665,0.406486,0.521913,0.450259,0.116441,0.69361,0.819623,0.643327,0.0892702,0.195365,0.500906,0.11017,0.976592,0.8822,0.0298933,0.380105,0.950022,0.403306,0.118556,0.947829,0.843624,0.442221,0.563635,0.834214,5.54323e-06,0.535259,0.335787,0.104214,0.380203,0.0423977,0.247552,0.461871,0.534893,0.546461,0.171681,0.949948,0.579258,0.962037,0.723667,0.7434,0.980958,0.502038,0.602234,0.979023,0.383697,0.415967,0.118514,0.915734,0.596314,0.589896,0.986128,0.293548,0.425957,0.916495,0.569792,0.294666,0.912226,0.213268,0.622643,0.836792,0.316263,0.734489,0.585088,0.737196,0.797002,0.422061,0.501991,0.19004,0.89511,0.257923,0.499049,0.52185,0.793917,0.0809737,0.323937,0.89843,0.633204,0.130654,0.27399,0.327524,0.591375,0.626233,0.0653715,0.169925,0.543542,0.974858,0.348878,0.718812,0.329475,0.380206,0.720992,0.781923,0.180456,0.848647,0.931492,0.618071,0.910099,0.703642,0.706329,0.407646,0.408511,0.181319,0.511308,0.468465,0.0624483,0.29134,0.895996,0.590506,0.244201,0.286888,0.584106,0.861829,0.404289,0.516911,0.632696,0.314877,0.707124,0.96252,0.408543,0.0787731,0.337873,0.385807,0.406639,0.804553,0.698836,0.6344,0.293743,0.866434,0.833299,0.0481188,0.770597,0.812617,0.371986,0.776856,0.24666,0.0296029,0.395655,0.445513,0.799456,0.105411,0.261098,0.852936,0.0112783,0.519321,0.196331,0.452662,0.351759,0.123932,0.939916,0.0308287,0.0306132,0.903075,0.502216,0.493031,0.968137,0.52661,0.242102,0.0941746,|0.134202,0.613568,0.896466,0.578421,0.201492,0.919545,0.382076,0.339747,0.447281,0.277541,0.550688,0.193377,0.666363,0.259954,0.575116,0.859508,0.916243,0.728853,0.912098,0.843277,0.886395,0.665882,0.507505,0.621987,0.399118,0.635078,0.816987,0.354912,0.367472,0.208445,0.724782,0.664441,0.92989,0.892407,0.376186,0.659124,0.542092,0.412842,0.118781,0.950028,0.204878,0.445617,0.516096,0.788664,0.360276,0.983138,0.754352,0.656672,0.737123,0.30578,0.7934,0.388021,0.257877,0.0170634,0.848509,0.454189,0.311522,0.397497,0.375899,0.498915,0.681751,0.325097,0.868513,0.643536,0.971006,0.759812,0.747713,0.9324,0.646041,0.412479,0.743472,0.547681,0.209581,0.0578979,0.47263,0.426428,0.825075,0.301597,0.586675,0.106248,0.372573,0.807404,0.67741,0.796126,0.961086,0.0292967,0.691181,0.969853,0.196118,0.0467874,0.322978,0.353045,0.447409,0.341546,0.529671,0.277599,0.4308,0.660155,0.919741,0.939605,0.210243,0.686539,0.899419,0.446212,0.423537,0.733253,0.619074,0.0782456,0.453917,0.192284,0.810687,0.538062,0.283756,0.577582,0.32293,0.185518,0.14438,0.700896,0.359633,0.275174,0.0567202,0.073245,0.404382,0.394091,0.0129271,0.576977,0.0560146,0.257373,0.538074,0.430401,0.0311394,0.198763,0.293418,0.344593,0.0546529,0.669583,0.508166,0.863849,0.552687,0.626616,0.631433,0.992762,0.897017,0.746417,0.743412,0.0121132,0.911023,0.273614,0.183149,0.255183,0.00438672,0.256524,0.844159,0.624176,0.478922,0.914879,0.383979,0.684115,0.628733,0.18315,0.178248,0.362924,0.93623,0.543139,0.535083,0.980762,0.807184,0.129228,0.0469004,0.285851,0.988155,0.43258,0.176652,0.801249,0.704454,0.507001,0.286878,0.123181,0.258195,0.82022,0.417778,0.339909,0.0947522,0.866741,0.707343,0.120623,0.934003,0.510325,0.0441055,0.547977,0.847045,0.375432,0.408405,0.278458,0.71387,0.497221,0.764987,0.579975,0.376663,0.15474,0.181683,0.601261,0.510224,0.220606,0.300451,0.734388,0.0808225,0.693907,0.900237,0.0601304,0.160952,0.597851,0.802315,0.970749,0.779859,0.0588906,0.342985,0.193987,0.733833,0.694432,0.305963,0.89132,0.919035,0.211637,0.392375,0.07465,0.0571906,0.224402,0.53542,0.188046,0.124228,0.948524,0.313293,0.403583,0.927055,0.949594,0.835771,0.167105,0.225648,0.937416,0.354167,0.29926,0.683557,0.775453,0.343248,0.336362,0.582646,0.87782,0.465266,0.89077,0.157199,0.186549,0.273802,0.148886,0.764393,0.468325,0.359355,0.283519,0.0172253,0.570477,0.201458,0.564567,0.49136,0.401877,0.535613,0.960463,0.908866,0.833097,0.718707,0.159124,0.648396,0.310125,0.821775,0.350919,0.347447,0.0649355,0.67013,0.452849,0.640746,0.241207,0.760861,0.452683,0.0985538,0.840439,0.01685,0.650889,0.368984,0.827357,0.276453,0.674793,0.661132,0.84405,0.792442,0.788201,0.846946,0.646191,0.0638611,0.925872,0.0162561,0.0846386,0.435131,0.119249,0.574503,0.576546,0.453232,0.838614,0.699789,0.813007,0.620217,0.847167,0.483555,0.595257,0.269136,0.808474,0.808354,0.734293,0.517784,0.105762,0.795474,0.791656,0.299627,0.966918,0.795741,0.0846833,0.0462054,0.855888,0.439979,0.551178,0.816063,0.0213099,0.802574,0.208807,0.716321,0.556867,0.601996,0.0626209,0.154859,0.511119,0.912338,0.00873232,0.334083,0.454367,0.748008,0.865462,0.900249,0.712225,0.182969,0.650207,0.558215,0.667689,0.141852,0.641881,0.630696,0.174944,0.779905,0.785122,0.412666,0.037519,0.762655,0.625451,0.839267,0.632647,0.86722,0.520997,0.374074,0.387297,0.603031,0.0239152,0.714006,0.331965,0.390553,0.120262,0.145826,0.777671,0.626629,0.64707,0.174231,0.777641,0.464646,0.870044,0.82147,0.352814,0.852308,0.983728,0.835124,0.569096,0.168535,0.205507,0.342188,0.98797,0.386522,0.137017,0.510621,0.233535,0.149856,0.64498,0.300799,0.47457,0.168944,0.530299,0.654244,0.0166749,0.135722,0.684346,0.911874,0.482011,0.0388731,0.305457,0.556077,0.533946,0.0962445,0.397841,0.660458,0.67055,0.296021,0.167505,0.667795,0.339851,0.80609,0.0672665,0.599522,0.26021,0.947072,0.916988,0.643565,0.764448,0.208847,0.869876,0.46638,0.81136,0.588864,0.718051,0.387095,0.00761461,0.297825,0.25443,0.0918543,0.546042,0.169717,0.942798,0.931091,0.531523,0.659815,0.232336,0.377323,0.17005,0.269647,0.0811501,0.410376,0.217855,0.0544033,0.853032,0.308376,0.133886,0.844406,0.351168,0.856124,0.537076,0.819857,0.863477,0.402196,0.580447,0.971972,0.219819,0.37424,0.195325,0.897772,0.108257,0.0926204,0.00995004,0.864353,0.055915,0.393412,0.695144,0.272089,0.889344,0.228127,0.715553,0.370975,0.938187,0.210985,0.536892,0.00342917,0.353686,0.0583779,0.145249,0.983241,0.265757,0.304045,0.1852,0.473385,0.709073,0.234884,0.611366,0.0267667,0.62139,0.896991,0.0599698,0.289249,0.0248982,0.54406,0.371498,0.595847,0.0818419,0.771716,0.622598,0.651007,0.735778,0.631626,0.200722,0.874416,0.476429,0.083703,0.72833,0.626201,0.279662,0.0537196,0.337259,0.886571,0.418482,0.509963,0.411272,0.0672829,0.886962,0.735091,0.432806,0.740781,0.226339,0.203068,0.139865,0.629636,0.919665,0.656579,0.553813,0.789092,0.116947,0.744466,0.492026,0.0473663,0.00209612,0.598898,0.235608,0.271953,0.521863,0.929082,0.377223,0.109127,0.938401,0.458945,0.306031,0.122588,0.651737,0.110493,0.749916,0.247286,0.882209,0.301115,0.130948,0.332412,0.159404,0.838526,0.0556977,0.0374507,0.819562,0.900003,0.114958,0.87585,0.23435,0.718412,0.994604,0.612079,0.478565,0.180768,0.580148,0.64795,0.796757,0.0653856,0.0738118,0.129096,0.364001,0.719826,0.0258466,0.292616,0.955017,0.833554,0.412602,0.167755,0.125171,0.648658,0.835967,0.394175,0.855197,0.406209,0.384579,0.242055,0.245845,0.788021,0.564506,0.636232,0.610462,0.209278,0.998296,0.138196,0.081388,0.899079,0.560342,0.747017,0.774824,0.149538,0.374767,0.889112,0.541426,0.0978978,0.140917,0.360065,0.767872,0.909181,0.385082,0.739206,0.986147,0.440559,0.709052,0.744497,0.854723,0.261679,0.436014,0.28579,0.880605,0.753747,0.967018,0.470808,0.364182,0.112795,0.147996,0.698692,0.576928,0.367324,0.703732,0.40455,0.353693,0.10946,0.870599,0.753927,0.208754,0.24292,0.613498,0.201101,0.830222,0.81648,0.200125,0.0819977,0.75555,0.0276324,0.0753426,0.0969216,0.00830942,0.607905,0.0514036,0.614955,0.0132347,0.667704,0.873393,0.948044,0.299672,0.414205,0.474937,0.580074,0.798125,0.576631,0.613879,0.6187,0.681555,0.79116,0.465311,0.603237,0.753091,0.573918,0.241831,0.53196,0.296201,0.107539,0.0528934,0.555285,0.679128,0.917791,0.951307,0.123477,0.671088,0.803399,0.406385,0.38383,0.930389,0.0297506,0.155119,0.170529,0.69971,0.0507488,0.182812,0.0234932,0.624465,0.835999,0.900988,0.887343,0.635909,0.86893,0.855193,0.76994,0.899853,0.0547834,0.833615,0.534568,0.184425,0.779418,0.175594,0.324656,0.808214,0.138309,0.246618,0.0892317,0.225124,0.0862061,0.759724,0.111038,0.313635,0.262501,0.763104,0.777873,0.612134,0.522994,0.16761,0.614307,0.255686,0.613069,0.393631,0.0977636,0.150111,0.0593511,0.518816,0.709373,0.574254,0.0567919,0.834489,0.434864,0.319254,0.947824,0.775524,0.492728,0.596618,0.256306,0.672062,0.472554,0.326083,0.944202,0.573675,0.0164129,0.23558,0.496864,0.35808,0.76429,0.106267,0.967439,0.763032,0.199299,0.225359,0.767608,0.856942,0.174549,0.488039,0.396795,0.443893,0.808437,0.546838,0.663084,0.105542,0.473937,0.471198,0.0725154,0.815105,0.700387,0.375069,0.522787,0.538369,0.870704,0.921391,0.85599,0.167455,0.603063,0.509884,0.220263,0.914398,0.244254,0.912399,0.547859,0.130687,0.458853,0.702193,0.973449,0.510046,0.484074,0.327911,0.255573,0.253681,0.0326331,0.0213113,0.73614,0.794448,0.149618,0.319462,0.106433,0.0179116,0.5671,0.83397,0.748047,0.0992758,0.976222,0.406243,0.394628,0.621136,0.945053,0.128037,0.387769,0.781641,0.395805,0.0861423,0.935494,0.913997,0.122107,0.348915,0.482051,0.807741,0.326947,0.200864,0.271572,0.755429,0.952501,0.797859,0.838821,0.423897,0.147103,0.555364,0.627673,0.114706,0.967108,0.184964,0.368325,0.597014,0.967264,0.691994,0.676543,0.919247,0.929889,0.985708,0.229868,0.139868,0.206865,0.7177,0.0161455,0.224864,0.852579,0.0952617,0.307329,0.904761,0.476404,0.499503,0.912994,0.523234,0.428406,0.2021,0.00140411,0.503612,0.338438,0.899861,0.262574,0.740188,0.224425,0.724114,0.832913,0.576154,0.687833,0.20182,0.513711,0.11528,0.205095,0.764795,0.916931,0.396352,0.432313,0.928157,0.965861,0.238488,0.754075,0.84624,0.411343,0.616174,0.520429,0.159821,0.379333,0.342227,0.391132,0.388552,0.568314,0.0993348,0.238817,0.348153,0.0200578,0.71202,0.262629,0.885641,0.2214,0.706486,0.408669,0.965702,0.779147,0.77712,0.838933,0.515531,0.27636,0.483783,0.775713,0.587378,0.419881,0.0654415,0.0768267,0.352427,0.0208251,0.509722,0.103689,0.967524,0.846264,0.0978959,0.871218,0.0659995,0.713707,0.31748,0.949513,0.966072,0.479542,0.586912,0.266748,0.225248,0.155254,0.856136,0.233727,0.56032,0.598826,0.597347,0.562947,0.547674,0.605512,0.624588,0.422979,0.755153,0.212515,0.658264,0.351831,0.234637,0.397509,0.696676,0.634578,0.0482014,0.9642,0.0412292,0.685289,0.348952,0.0432954,0.772274,0.651551,0.917656,0.157367,0.714662,0.604148,0.732737,0.366379,0.0845857,0.446817,0.432963,0.954778,0.379657,0.402187,0.358603,0.404649,0.779782,0.98673,0.0530629,0.610499,0.658853,0.929431,0.0721288,0.81329,0.272878,0.116362,0.00697213,0.60099,0.336483,0.0343726,0.389683,0.941129,0.366607,0.409944,0.702133,|0.434396,0.181087,0.425012,0.156956,0.72307,0.0164179,0.518386,0.178694,0.730842,0.748516,0.187541,0.175223,0.701639,0.390369,0.585971,0.32129,0.963038,0.981479,0.681266,0.693418,0.554991,0.816033,0.730089,0.489302,0.635085,0.495619,0.770987,0.94011,0.083569,0.307612,0.204082,0.49559,0.159585,0.947983,0.279561,0.0424073,0.845354,0.0829173,0.873175,0.340906,0.851115,0.891892,0.743447,0.749297,0.813799,0.896312,0.719287,0.784899,0.239076,0.393923,0.00421572,0.0276538,0.387775,0.43739,0.142837,0.804601,0.366756,0.904872,0.582876,0.0371414,0.887063,0.0966642,0.0623768,0.961024,0.916955,0.181031,0.746171,0.338898,0.103655,0.6734,0.000927687,0.017457,0.161157,0.688868,0.987011,0.19646,0.18635,0.762524,0.387863,0.851051,0.38759,0.849643,0.326849,0.868795,0.0684949,0.133329,0.0641983,0.894911,0.116662,0.718227,0.596779,0.00371403,0.302327,0.479077,0.483884,0.71902,0.228919,0.047981,0.0602748,0.173184,0.452436,0.440337,0.464259,0.457978,0.211229,0.533619,0.821198,0.0501438,0.211507,0.541759,0.041743,0.273048,0.914646,0.998054,0.269993,0.0683429,0.671825,0.327441,0.97533,0.808685,0.564244,0.350114,0.0264313,0.948721,0.502237,0.651196,0.155295,0.117473,0.00522065,0.929485,0.974346,0.760387,0.908902,0.293566,0.0847803,0.302018,0.890579,0.73182,0.381316,0.466653,0.643323,0.953936,0.592285,0.457106,0.39591,0.288888,0.842204,0.299426,0.780122,0.642813,0.639744,0.225173,0.770898,0.217851,0.0399122,0.752048,0.477865,0.855973,0.947857,0.269494,0.998927,0.986301,0.728942,0.709241,0.402552,0.00685036,0.87881,0.0934536,0.00144649,0.572344,0.096861,0.0752108,0.567239,0.585461,0.577803,0.572857,0.834002,0.200807,0.318187,0.67406,0.860452,0.248776,0.640521,0.616661,0.478984,0.767965,0.563026,0.328549,0.871477,0.858452,0.150561,0.12989,0.155013,0.272391,0.613047,0.446723,0.162469,0.304758,0.55966,0.307009,0.316706,0.610148,0.315892,0.544516,0.0911428,0.426872,0.523642,0.250003,0.595459,0.347777,0.686152,0.859191,0.284912,0.618122,0.681313,0.873833,0.670294,0.994319,0.1755,0.175179,0.542071,0.877747,0.920758,0.263758,0.964763,0.409487,0.887812,0.793568,0.908644,0.753254,0.699447,0.0938911,0.958575,0.155939,0.633394,0.270034,0.739566,0.092591,0.590522,0.146833,0.401097,0.529749,0.450795,0.935475,0.71048,0.132261,0.292705,0.244771,0.661169,0.967899,0.655987,0.729257,0.0937621,0.0711215,0.542628,0.466724,0.0532515,0.745867,0.794321,0.953209,0.170907,0.205201,0.856232,0.332813,0.913307,0.389814,0.161608,0.0113125,0.543109,0.126426,0.560916,0.252965,0.254836,0.412929,0.943605,0.586977,0.238444,0.571474,0.041901,0.0501173,0.52181,0.511592,0.248102,0.0690821,0.0381827,0.968814,0.29795,0.664845,0.422974,0.0869182,0.707233,0.848772,0.522483,0.376154,0.840089,0.730249,0.710447,0.526802,0.204614,0.58442,0.184478,0.144645,0.744217,0.361233,0.151982,0.301387,0.934249,0.860551,0.724066,0.964793,0.736949,0.0487586,0.594451,0.99456,0.567618,0.958481,0.521231,0.915897,0.0275978,0.379817,0.193424,0.349228,0.108744,0.440001,0.6412,0.893463,0.928239,0.410264,0.754786,0.456189,0.568326,0.443745,0.0700478,0.832929,0.101704,0.423733,0.141378,0.124053,0.986437,0.740736,0.776402,0.631861,0.449855,0.0114036,0.996571,0.191354,0.641441,0.856073,0.452298,0.616775,0.130378,0.0769409,0.52067,0.225605,0.238747,0.389808,0.363249,0.147576,0.84478,0.155738,0.772805,0.556113,0.387627,0.329516,0.954761,0.845158,0.579331,0.564235,0.832773,0.624216,0.808897,0.736867,0.611007,0.131809,0.676525,0.640642,0.957785,0.374383,0.510273,0.756894,0.802162,0.457818,0.377719,0.459008,0.44696,0.87199,0.796663,0.206073,0.804775,0.0431475,0.255058,0.426384,0.0298996,0.299977,0.310339,0.523701,0.0844701,0.32819,0.110641,0.16033,0.910845,0.577618,0.630551,0.052088,0.417147,0.752832,0.690808,0.797656,0.215717,0.217117,0.763541,0.50902,0.551571,0.84635,0.433824,0.534779,0.0235837,0.923706,0.256051,0.404722,0.850624,0.225068,0.158126,0.543983,0.0620093,0.101241,0.119378,0.940796,0.861198,0.959201,0.690168,0.782393,0.62021,0.374482,0.234693,0.874568,0.585823,0.432762,0.197178,0.962285,0.621766,0.312988,0.423396,0.951328,0.803051,0.0320554,0.681988,0.639262,0.319319,0.237291,0.810759,0.233549,0.686354,0.638399,0.0999122,0.450206,0.495231,0.754097,0.182976,0.752345,0.793469,0.982519,0.0173409,0.691733,0.537828,0.531547,0.0718326,0.608265,0.334351,0.893298,0.947834,0.0161023,0.822531,0.0574934,0.736523,0.850399,0.550897,0.148855,0.750088,0.61684,0.659915,0.0580046,0.441793,0.201385,0.156001,0.943124,0.419053,0.425606,0.244226,0.0956595,0.290731,0.014086,0.951659,0.927145,0.480932,0.819396,0.39636,0.247091,0.470906,0.555656,0.71817,0.578473,0.934752,0.188677,0.0741999,0.952074,0.55639,0.183317,0.499789,0.930251,0.544248,0.124893,0.300026,0.0325553,0.981452,0.511775,0.0728943,0.358631,0.714962,0.953097,0.438186,0.432969,0.776774,0.24034,0.858804,0.643367,0.21804,0.031121,0.692195,0.297375,0.0155861,0.0751917,0.134497,0.66329,0.974326,0.581692,0.320777,0.188704,0.809835,0.139338,0.793782,0.13394,0.254643,0.422653,0.656532,0.720625,0.674984,0.272288,0.137514,0.544794,0.335984,0.949884,0.31355,0.753255,0.155093,0.148553,0.646288,0.853442,0.735239,0.736486,0.281799,0.454049,0.385062,0.927759,0.463044,0.0338582,0.826254,0.398048,0.155781,0.266351,0.00877249,0.715981,0.4832,0.471317,0.332262,0.618128,0.682951,0.909371,0.619882,0.795348,0.0608248,0.74924,0.633867,0.563633,0.857314,0.0682848,0.909915,0.139588,0.174183,0.394097,0.330254,0.164033,0.273414,0.0648963,0.733407,0.126799,0.0274306,0.488916,0.186381,0.513481,0.352711,0.059397,0.73179,0.842351,0.294555,0.259424,0.0959243,0.319814,0.687223,0.311374,0.197216,0.977381,0.777708,0.954684,0.0519992,0.0853946,0.401753,0.0594472,0.446044,0.598998,0.917831,0.282872,0.68666,0.196422,0.831299,0.771755,0.214868,0.0286269,0.0879523,0.269653,0.486349,0.884801,0.308006,0.564485,0.89863,0.425191,0.0761783,0.212369,0.864514,0.358135,0.585298,0.115944,0.271942,0.21257,0.918392,0.411381,0.375345,0.833202,0.832449,0.701453,0.0977758,0.324542,0.66785,0.930129,0.672187,0.623835,0.428128,0.0563744,0.623803,0.922026,0.51339,0.712896,0.0555282,0.955167,0.287232,0.851187,0.189271,0.356548,0.293867,0.447179,0.110463,0.663466,0.146145,0.339816,0.057072,0.578698,0.933097,0.805722,0.665712,0.311136,0.746268,0.189584,0.937943,0.501337,0.620511,0.330392,0.880457,0.49148,0.495266,0.0189051,0.307986,0.666577,0.414729,0.982234,0.228227,0.144908,0.161733,0.246129,0.953267,0.67411,0.584671,0.984869,0.477354,0.0501456,0.675895,0.1569,0.550504,0.717319,0.455487,0.179229,0.559048,0.0511173,0.859324,0.209071,0.03166,0.470531,0.896798,0.573132,0.421834,0.475449,0.791696,0.379487,0.929407,0.245745,0.307161,0.467408,0.427121,0.949613,0.0427318,0.435678,0.222556,0.107035,0.605704,0.588559,0.0370054,0.946469,0.342364,0.659239,0.598717,0.643776,0.985933,0.341681,0.878313,0.268481,0.569579,0.153197,0.293121,0.736672,0.267073,0.228773,0.0662934,0.996393,0.0603985,0.643067,0.834221,0.0372416,0.444421,0.185903,0.221579,0.39821,0.24196,0.147724,0.946817,0.156616,0.635441,0.372573,0.697716,0.91344,0.469177,0.510341,0.891475,0.878468,0.802592,0.763591,0.99229,0.119886,0.148618,0.875153,0.973108,0.275865,0.06263,0.0404459,0.0426556,0.918414,0.242014,0.889323,0.64844,0.689111,0.14794,0.319015,0.0585968,0.604479,0.132947,0.278541,0.748164,0.424693,0.568077,0.411151,0.687958,0.568646,0.469458,0.450445,0.353422,0.901312,0.194019,0.732828,0.525274,0.310007,0.763551,0.864932,0.954983,0.375753,0.317075,0.135272,0.265003,0.472014,0.177499,0.966303,0.000612676,0.661064,0.784158,0.296283,0.82546,0.169364,0.761143,0.860458,0.106965,0.745867,0.292615,0.546343,0.89809,0.671088,0.983315,0.574934,0.571936,0.913139,0.856386,0.777901,0.826549,0.181066,0.198099,0.0835077,0.517758,0.489564,0.0293267,0.18015,0.0393003,0.177232,0.0897779,0.917705,0.416452,0.434019,0.346614,0.800794,0.442225,0.766783,0.15687,0.751782,0.558323,0.30926,0.833109,0.840304,0.547261,0.586474,0.552111,0.359133,0.523319,0.3505,0.234402,0.619961,0.927942,0.931879,0.90709,0.00157505,0.178324,0.25701,0.0804653,0.928585,0.645665,0.543075,0.679841,0.75689,0.811498,0.313569,0.0656176,0.495227,0.0743819,0.710279,0.411206,0.517929,0.898634,0.587493,0.962162,0.844335,0.546855,0.412433,0.0194612,0.0659292,0.0382795,0.106988,0.254445,0.544908,0.733479,0.208902,0.809117,0.144365,0.51379,0.577398,0.504684,0.423147,0.796867,0.867239,0.881066,0.0928348,0.894337,0.658501,0.796841,0.624279,0.914077,0.466749,0.474687,0.779652,0.977786,0.191452,0.12155,0.88011,0.678931,0.602056,0.0989506,0.213373,0.888768,0.130439,0.422535,0.569645,0.0570739,0.160784,0.764467,0.752996,0.980588,0.933044,0.49512,0.374043,0.968745,0.937028,0.752905,0.982235,0.455287,0.494204,0.424635,0.276557,0.213741,0.755693,0.928864,0.233911,0.175334,0.104351,0.938596,0.526995,0.258913,0.339374,0.939326,0.394717,0.176475,0.36534,0.925529,0.852148,0.570312,0.603761,0.23935,0.562572,0.191708,0.650975,0.710642,0.490417,0.122423,0.321561,0.712822,0.870636,0.235547,0.403673,0.830692,0.314974,0.585984,0.9648,0.185078,0.676033,0.299156,0.793473,0.837166,0.260891,0.968161,0.984226,0.783864,0.109038,0.655708,0.182361,0.513318,0.867557,0.185571,0.827843,|0.918771,0.722794,0.513139,0.302082,0.0390818,0.179237,0.340994,0.023511,0.407509,0.471992,0.403779,0.953977,0.614792,0.592039,0.967665,0.917641,0.220533,0.244824,0.921551,0.380947,0.270561,0.675385,0.659742,0.273249,0.884806,0.976273,0.122219,0.698751,0.427984,0.804134,0.631936,0.739397,0.664316,0.484613,0.145793,0.0164873,0.127684,0.187374,0.159984,0.30939,0.139614,0.311333,0.262177,0.202323,0.978898,0.322992,0.620267,0.882389,0.8103,0.355643,0.783387,0.718391,0.818179,0.315654,0.717275,0.325536,0.287533,0.831491,0.848568,0.941346,0.926428,0.716397,0.801087,0.733005,0.479216,0.780449,0.707474,0.217558,0.010651,0.562025,0.413377,0.731048,0.331869,0.430266,0.344039,0.770388,0.78642,0.463502,0.934839,0.0473483,0.302484,0.837551,0.105234,0.364134,0.764929,0.703627,0.0604188,0.355697,0.928377,0.952608,0.248344,0.214481,0.985364,0.509258,0.287187,0.189671,0.417746,0.627859,0.953105,0.260189,0.407147,0.680782,0.1805,0.857787,0.258406,0.000530422,0.223198,0.322214,0.98115,0.302358,0.594793,0.754959,0.728572,0.741942,0.46531,0.840354,0.626061,0.22419,0.471949,0.914324,0.467625,0.196163,0.471345,0.575555,0.770097,0.0149109,0.728154,0.516876,0.115523,0.575496,0.959451,0.71258,0.599349,0.581804,0.782893,0.778549,0.650899,0.490795,0.458571,0.628701,0.479996,0.116287,0.362475,0.244423,0.476722,0.296761,0.506394,0.939473,0.179425,0.717748,0.0152152,0.872984,0.415175,0.353668,0.105492,0.475196,0.997762,0.1298,0.0216475,0.164064,0.130969,0.0296178,0.19524,0.331984,0.251326,0.199539,0.94187,0.958087,0.160523,0.308263,0.522947,0.0279734,0.355199,0.667207,0.938118,0.764432,0.51686,0.209627,0.338477,0.298322,0.834634,0.240328,0.886525,0.282328,0.177957,0.110759,0.92427,0.13153,0.195745,0.994321,0.0647473,0.822569,0.150394,0.164406,0.130174,0.336237,0.113207,0.299375,0.880835,0.188141,0.81705,0.772363,0.169154,0.751117,0.519106,0.447861,0.397975,0.0010615,0.671487,0.553612,0.538899,0.0474935,0.239578,0.57454,0.401361,0.454044,0.302438,0.835131,0.0670103,0.0712028,0.496896,0.615537,0.577962,0.853656,0.220588,0.975668,0.434096,0.0879799,0.490146,0.673432,0.00498366,0.559266,0.0308605,0.283237,0.446404,0.91539,0.280471,0.0327067,0.941904,0.253516,0.705577,0.373244,0.986327,0.891927,0.758384,0.74555,0.536301,0.929812,0.176747,0.947249,0.149094,0.0596166,0.251739,0.318623,0.496951,0.70009,0.322081,0.168458,0.762035,0.16447,0.263935,0.499287,0.692178,0.176122,0.596515,0.858542,0.450699,0.784706,0.138638,0.656544,0.453628,0.517275,0.436525,0.680898,0.580873,0.874746,0.70065,0.272597,0.42877,0.891875,0.90413,0.919238,0.745235,0.0984389,0.284197,0.0603395,0.666716,0.686347,0.769116,0.685788,0.346314,0.641678,0.200538,0.660719,0.580298,0.776273,0.393159,0.235604,0.320208,0.104233,0.464064,0.13067,0.0480115,0.989841,0.354487,0.0758986,0.515448,0.801248,0.651778,0.943723,0.218704,0.784303,0.336183,0.366353,0.0893092,0.11006,0.754962,0.306204,0.393317,0.470923,0.865683,0.509165,0.855277,0.0644513,0.458008,0.647716,0.27954,0.482226,0.964029,0.69571,0.228586,0.613736,0.687045,0.119476,0.754867,0.795879,0.475349,0.0248896,0.63337,0.926245,0.914218,0.283171,0.0819485,0.640156,0.541799,0.606993,0.815295,0.558759,0.0403329,0.696698,0.646531,0.348749,0.0106821,0.444172,0.52876,0.764533,0.162664,0.502082,0.668129,0.434845,0.269008,0.944426,0.0208165,0.845894,0.897669,0.163713,0.493798,0.730031,0.538895,0.984326,0.345266,0.285372,0.336417,0.46065,0.532921,0.569362,0.176625,0.354928,0.505216,0.716559,0.442379,0.0909568,0.268482,0.343478,0.481801,0.281444,0.377903,0.0879739,0.825791,0.224071,0.594298,0.267113,0.736999,0.509761,0.864661,0.269497,0.317025,0.158082,0.89561,0.0890848,0.186301,0.448935,0.608857,0.810413,0.814487,0.331898,0.428272,0.287195,0.999551,0.246123,0.419146,0.139302,0.85719,0.620594,0.101712,0.815515,0.805187,0.350477,0.0402662,0.286164,0.780482,0.596911,0.318275,0.272649,0.871544,0.39698,0.974157,0.256623,0.52585,0.379401,0.68444,0.234642,0.694081,0.810094,0.120501,0.90927,0.691956,0.949611,0.0765585,0.727241,0.187851,0.376737,0.455727,0.674837,0.863447,0.716918,0.437354,0.498236,0.0176452,0.356381,0.28267,0.235839,0.754966,0.925655,0.63353,0.302163,0.787544,0.862502,0.228854,0.785676,0.654019,0.9013,0.483249,0.969234,0.581774,0.181258,0.289024,0.899461,0.664962,0.159138,0.653433,0.925014,0.271033,0.639219,0.688911,0.42348,0.966912,0.842621,0.937974,0.781169,0.0432082,0.0445424,0.119743,0.659076,0.619682,0.128622,0.0268981,0.32923,0.0244004,0.597616,0.674809,0.0350881,0.390734,0.404652,0.678817,0.999476,0.747095,0.915323,0.0947948,0.189456,0.97078,0.921389,0.583364,0.289119,0.927455,0.402201,0.23798,0.520136,0.909644,0.625277,0.774276,0.0520164,0.595993,0.712742,0.528087,0.903453,0.505266,0.314083,0.873056,0.81121,0.461648,0.444369,0.589189,0.229802,0.686765,0.155559,0.828849,0.4517,0.692661,0.206551,0.507516,0.936214,0.717101,0.418835,0.74079,0.869672,0.269801,0.680479,0.0378283,0.912457,0.859147,0.729783,0.372338,0.983437,0.983424,0.932394,0.0668519,0.86911,0.0816849,0.63635,0.729761,0.262239,0.913744,0.405576,0.197554,0.328016,0.0946991,0.539437,0.0664381,0.633182,0.202458,0.270758,0.00428146,0.0251673,0.464279,0.505815,0.782489,0.513657,0.893267,0.353702,0.342563,0.0295994,0.221937,0.320417,0.311272,0.533536,0.86589,0.00026089,0.503307,0.709468,0.704428,0.0338382,0.27982,0.682579,0.57556,0.752663,0.00595337,0.512721,0.455598,0.556309,0.71053,0.0817014,0.218559,0.707728,0.811057,0.287115,0.0111834,0.56358,0.0607892,0.634897,0.165299,0.119571,0.0296731,0.15145,0.944621,0.666373,0.566502,0.319783,0.293932,0.845247,0.896088,0.62166,0.426917,0.939513,0.149501,0.152388,0.769677,0.654282,0.130373,0.203051,0.0583412,0.668117,0.596893,0.261598,0.657514,0.65994,0.426804,0.494236,0.133011,0.42563,0.65861,0.142735,0.154715,0.425648,0.964912,0.462975,0.277785,0.275277,0.945983,0.498842,0.377909,0.894544,0.832962,0.599522,0.316118,0.54578,0.117322,0.793622,0.718041,0.247253,0.54974,0.163318,0.893155,0.69097,0.358447,0.942124,0.307202,0.045009,0.729223,0.232579,0.909461,0.811003,0.858095,0.980574,0.157477,0.752936,0.809425,0.334117,0.817048,0.312267,0.113404,0.175317,0.962359,0.259459,0.996479,0.835089,0.105644,0.92575,0.572575,0.0842453,0.290895,0.15167,0.953527,0.477079,0.544094,0.317468,0.276965,0.778839,0.464446,0.471866,0.661208,0.0951995,0.0804912,0.756495,0.0532655,0.109405,0.466036,0.502826,0.120235,0.0210143,0.396596,0.0793685,0.507998,0.793071,0.131222,0.285683,0.976347,0.229877,0.573414,0.37932,0.584177,0.271617,0.57482,0.290305,0.911523,0.577068,0.162923,0.275963,0.394223,0.245034,0.593298,0.67591,0.0804392,0.342229,0.48067,0.835487,0.64849,0.146291,0.725077,0.662034,0.147964,0.102933,0.70298,0.162454,0.85889,0.747365,0.977959,0.197768,0.834179,0.640887,0.691151,0.103989,0.587561,0.749328,0.345651,0.0809201,0.358621,0.0778378,0.149622,0.197473,0.797402,0.483457,0.954106,0.96396,0.413541,0.260577,0.854162,0.208535,0.331393,0.159981,0.0336097,0.15227,0.528395,0.539827,0.0929207,0.362042,0.204003,0.0211824,0.0392367,0.540673,0.899123,0.372921,0.0248805,0.698434,0.0871946,0.174273,0.118361,0.245052,0.713514,0.292543,0.0986383,0.348892,0.407008,0.00242198,0.565202,0.471405,0.153916,0.485648,0.82628,0.213188,0.471559,0.270926,0.766934,0.650964,0.316118,0.893249,0.345035,0.0176589,0.744178,0.220133,0.33089,0.0440443,0.399027,0.0854061,0.765592,0.68927,0.83349,0.573662,0.638023,0.506473,0.974469,0.857085,0.474895,0.6576,0.698292,0.326992,0.326413,0.551558,0.148285,0.893203,0.56649,0.437805,0.7086,0.240903,0.792547,0.559793,0.16,0.729674,0.76147,0.543232,0.694692,0.998797,0.888659,0.286132,0.200099,0.591978,0.300963,0.16785,0.954839,0.335607,0.0766041,0.528581,0.155692,0.0682068,0.437086,0.489155,0.635079,0.100287,0.332513,0.257542,0.304377,0.234278,0.555702,0.25321,0.684039,0.91176,0.1048,0.332868,0.907374,0.130563,0.184742,0.00865662,0.434878,0.662768,0.95052,0.379763,0.18246,0.149752,0.525468,0.600754,0.119956,0.696022,0.705338,0.264926,0.09319,0.612117,0.641798,0.143601,0.651633,0.470951,0.583973,0.0508478,0.170908,0.682596,0.338301,0.969226,0.98729,0.40756,0.85003,0.98081,0.610673,0.240351,0.424427,0.267804,0.129326,0.562993,0.782823,0.224471,0.0522996,0.0637778,0.647024,0.364698,0.970601,0.31706,0.537375,0.0882695,0.359878,0.0527608,0.38655,0.953617,0.836939,0.500688,0.226554,0.748482,0.715354,0.290606,0.297534,0.283738,0.61347,0.156684,0.493527,0.77887,0.333158,0.875524,0.0817146,0.0777614,0.621168,0.715655,0.706556,0.56838,0.568166,0.647099,0.213123,0.589063,0.637318,0.26272,0.315561,0.237897,0.144896,0.259749,0.752197,0.423021,0.681794,0.802329,0.628098,0.290722,0.63586,0.643466,0.512669,0.813481,0.859914,0.778537,0.786486,0.237321,0.265849,0.601751,0.481112,0.0843396,0.820228,0.805858,0.984261,0.96162,0.598365,0.83373,0.68088,0.971503,0.562959,0.752427,0.436861,0.0131055,0.591501,0.120646,0.17672,0.467551,0.709119,0.316122,0.813918,0.979554,0.882003,0.168614,0.768683,0.151606,0.0754759,0.512396,0.986874,0.109913,0.201147,0.084875,0.738557,0.331232,0.631911,0.278021,0.3378,0.073338,0.741997,0.0922881,0.900105,0.58282,0.671998,0.157998,|0.00743753,0.21716,0.176886,0.697163,0.993895,0.324982,0.648554,0.547001,0.363913,0.322277,0.853245,0.706812,0.230148,0.62576,0.747248,0.114462,0.167651,0.0401995,0.7616,0.968768,0.0965328,0.76141,0.715428,0.790245,0.306199,0.103294,0.932196,0.182827,0.82284,0.217693,0.576254,0.858338,0.0415969,0.158276,0.254386,0.0176538,0.909911,0.169802,0.567465,0.559908,0.750017,0.889819,0.551915,0.0509086,0.0440009,0.283421,0.644161,0.291454,0.796872,0.835015,0.683817,0.293602,0.814429,0.878865,0.0198075,0.435559,0.988564,0.286978,0.368434,0.0389458,0.892814,0.347713,0.820282,0.593114,0.230444,0.461285,0.548183,0.205021,0.340137,0.408883,0.496803,0.341561,0.661475,0.187278,0.666892,0.0282577,0.412859,0.471483,0.600927,0.0110387,0.158037,0.753993,0.33024,0.0586203,0.685404,0.136395,0.144603,0.716173,0.346864,0.424763,0.496351,0.973588,0.897708,0.21316,0.463255,0.478294,0.63517,0.970352,0.476578,0.851315,0.459074,0.702457,0.850052,0.791619,0.571531,0.788523,0.617275,0.495955,0.604022,0.307005,0.930049,0.0287848,0.0125899,0.687423,0.69985,0.0843151,0.844911,0.473553,0.0537784,0.675597,0.992074,0.387688,0.095168,0.193261,0.423434,0.0431452,0.41893,0.392428,0.237575,0.565206,0.817322,0.354787,0.294424,0.193132,0.187735,0.00196958,0.694623,0.04689,0.0772386,0.283905,0.555706,0.252177,0.0961226,0.844462,0.351961,0.63228,0.296732,0.54457,0.877207,0.328401,0.0711958,0.992215,0.0028674,0.135395,0.963987,0.322128,0.734406,0.914735,0.598604,0.416633,0.00707889,0.353732,0.906702,0.980123,0.432114,0.496142,0.202278,0.987063,0.468075,0.576822,0.332004,0.912264,0.773852,0.956696,0.582009,0.289335,0.26068,0.769236,0.239258,0.101296,0.350428,0.966269,0.378546,0.0221142,0.786844,0.653005,0.0183781,0.880417,0.129472,0.667953,0.601984,0.0998977,0.278294,0.129564,0.95342,0.345788,0.510931,0.716667,0.837098,0.431958,0.907829,0.0804661,0.742436,0.810874,0.670528,0.479107,0.641627,0.826534,0.0980372,0.0477247,0.995339,0.888613,0.4621,0.456798,0.912469,0.143656,0.410802,0.917986,0.460043,0.933634,0.949225,0.567958,0.264116,0.130397,0.927595,0.664181,0.613439,0.919081,0.905881,0.00257897,0.71398,0.453471,0.235949,0.0633471,0.453265,0.08295,0.929957,0.317142,0.349199,0.736789,0.442641,0.315606,0.893228,0.802695,0.827633,0.892212,0.914697,0.570209,0.61588,0.723871,0.575276,0.510624,0.0618303,0.473551,0.269714,0.250334,0.13867,0.543944,0.0524504,0.36833,0.723239,0.606972,0.548238,0.866818,0.780802,0.144981,0.599279,0.553283,0.836856,0.470871,0.555441,0.528339,0.663037,0.703287,0.631384,0.542825,0.284312,0.847424,0.625412,0.683522,0.674511,0.69798,0.186362,0.532499,0.120859,0.657392,0.483913,0.245261,0.448548,0.490515,0.767741,0.626724,0.880219,0.579182,0.19254,0.866161,0.444024,0.156721,0.816146,0.260732,0.420173,0.598409,0.998006,0.180244,0.36725,0.801332,0.0228449,0.417322,0.882477,0.43144,0.43719,0.695294,0.339682,0.605574,0.14966,0.260163,0.221118,0.944336,0.129899,0.0771918,0.350611,0.167748,0.946318,0.595658,0.377971,0.642308,0.751862,0.693123,0.479193,0.410688,0.61856,0.312077,0.721936,0.540888,0.73638,0.323456,0.854935,0.300083,0.00712103,0.845628,0.675331,0.625123,0.512789,0.432658,0.701531,0.858133,0.166811,0.217178,0.223925,0.356163,0.84299,0.675001,0.384345,0.820678,0.544066,0.375561,0.990435,0.413699,0.905486,0.190699,0.9187,0.00871885,0.170046,0.00704747,0.293624,0.313104,0.893479,0.160948,0.330595,0.483005,0.264089,0.080663,0.261096,0.242105,0.295148,0.785732,0.754606,0.346376,0.831714,0.147125,0.955396,0.281704,0.088192,0.0756957,0.565895,0.764457,0.432296,0.327549,0.707756,0.435361,0.502871,0.0401139,0.0947621,0.267013,0.814645,0.557488,0.288147,0.0503676,0.942165,0.253942,0.708008,0.753345,0.267182,0.616827,0.884168,0.120035,0.0679705,0.392866,0.810768,0.462378,0.0149447,0.994004,0.993121,0.936201,0.668698,0.674902,0.225668,0.203061,0.962169,0.140473,0.372218,0.0622295,0.956762,0.552001,0.479245,0.118914,0.946137,0.275099,0.447491,0.579081,0.769485,0.176426,0.0829046,0.484046,0.787887,0.0194109,0.527694,0.435387,0.576008,0.0406839,0.799902,0.636694,0.240889,0.245863,0.689915,0.271557,0.3713,0.742592,0.826532,0.461652,0.684643,0.592502,0.0775219,0.840127,0.537183,0.139107,0.976423,0.618182,0.752315,0.67873,0.338142,0.386284,0.358569,0.101218,0.00876004,0.157496,0.51371,0.726258,0.7371,0.463319,0.901861,0.254172,0.640929,0.787467,0.433606,0.294152,0.720312,0.382393,0.151035,0.233607,0.023551,0.223392,0.363653,0.551868,0.86756,0.153092,0.965621,0.798495,0.15273,0.406265,0.0436251,0.366865,0.807403,0.336613,0.590345,0.988056,0.893173,0.713073,0.296856,0.315617,0.23749,0.306586,0.363802,0.0506942,0.610415,0.982538,0.841923,0.456695,0.348291,0.0983518,0.0690708,0.51995,0.274998,0.0725688,0.231469,0.335297,0.544314,0.873975,0.55253,0.665915,0.310184,0.134085,0.431291,0.0848699,0.420599,0.554745,0.342009,0.764427,0.907965,0.0648907,0.263794,0.0530165,0.355359,0.656135,0.322275,0.0926612,0.980449,0.58054,0.797737,0.943442,0.415468,0.316115,0.134308,0.284906,0.420793,0.309484,0.909768,0.828732,0.803133,0.421863,0.298341,0.909496,0.00607967,0.0382072,0.809551,0.947419,0.191178,0.978571,0.193189,0.320374,0.470762,0.892165,0.154549,0.623775,0.783438,0.0499901,0.79272,0.490383,0.996899,0.932079,0.812344,0.223208,0.685005,0.955197,0.582678,0.0614666,0.0576785,0.302753,0.1713,0.201973,0.776996,0.31805,0.799587,0.768305,0.953469,0.683088,0.819478,0.875829,0.960892,0.932132,0.282705,0.290757,0.962303,0.533497,0.626591,0.092878,0.242557,0.40289,0.813912,0.0614707,0.369534,0.549646,0.0168921,0.919938,0.241309,0.78981,0.620586,0.013075,0.310497,0.4818,0.255226,0.72302,0.156841,0.386664,0.782478,0.732172,0.170367,0.600236,0.951702,0.988261,0.900524,0.265516,0.989907,0.538507,0.641706,0.744739,0.0802804,0.0778914,0.717277,0.640984,0.366543,0.141718,0.200891,0.651574,0.883704,0.0303042,0.841742,0.0341021,0.305579,0.551492,0.660448,0.772394,0.306196,0.30432,0.544445,0.00893927,0.0275046,0.147723,0.245595,0.196522,0.703182,0.789769,0.45622,0.304684,0.1377,0.453091,0.164692,0.0489174,0.444926,0.479073,0.812402,0.455887,0.537296,0.308999,0.876488,0.835037,0.54032,0.33591,0.292353,0.807978,0.989369,0.984817,0.517726,0.620944,0.575641,0.0709034,0.714496,0.748498,0.250266,0.115645,0.913885,0.81574,0.505763,0.315453,0.359189,0.323172,0.435325,0.269359,0.90393,0.898686,0.729197,0.172363,0.158543,0.783896,0.123775,0.056549,0.882676,0.734219,0.333742,0.558716,0.645616,0.941444,0.136097,0.0817845,0.093687,0.7182,0.668471,0.446027,0.343735,0.0559982,0.50148,0.38494,0.175969,0.847433,0.903515,0.33447,0.90802,0.909735,0.0357285,0.788003,0.59971,0.464594,0.829907,0.876951,0.933936,0.333312,0.130786,0.191084,0.168097,0.170137,0.040325,0.192561,0.404392,0.731487,0.95727,0.431018,0.494621,0.862628,0.88219,0.664766,0.766433,0.0434631,0.309815,0.106554,0.89304,0.872817,0.369927,0.259312,0.894365,0.933008,0.0550197,0.503271,0.248915,0.0527731,0.141047,0.30217,0.784489,0.0571722,0.145251,0.222603,0.517904,0.669218,0.492511,0.311522,0.00667214,0.565645,0.495481,0.46925,0.906666,0.417319,0.202065,0.349621,0.893778,0.67323,0.172739,0.701192,0.408717,0.886672,0.392206,0.100631,0.92727,0.338197,0.538871,0.997299,0.557579,0.375659,0.681938,0.0793085,0.828745,0.422912,0.754358,0.00311869,0.587242,0.00590032,0.748097,0.278332,0.10014,0.819366,0.906163,0.0808753,0.191444,0.536509,0.554785,0.55461,0.111144,0.145751,0.159088,0.0187299,0.514826,0.350212,0.126303,0.796908,0.947547,0.851593,0.843876,0.514144,0.74033,0.691022,0.0858846,0.0327313,0.476374,0.347572,0.658984,0.177144,0.790669,0.948248,0.621179,0.755932,0.718697,0.489601,0.523866,0.576293,0.990845,0.510221,0.436128,0.0950974,0.556912,0.429934,0.27308,0.466021,0.131642,0.366604,0.625271,0.195061,0.354153,0.498364,0.401752,0.846337,0.375893,0.631681,0.192798,0.314757,0.381869,0.635767,0.411388,0.983967,0.181668,0.965745,0.939452,0.333143,0.802028,0.697459,0.675887,0.736351,0.0905408,0.344848,0.965084,0.000602841,0.600535,0.728704,0.145313,0.504277,0.133737,0.461422,0.134051,0.490205,0.340852,0.340749,0.860903,0.582856,0.872927,0.395352,0.00784904,0.313042,0.166198,0.890895,0.615085,0.869135,0.794526,0.954412,0.407866,0.263883,0.199406,0.420126,0.305007,0.559705,0.724631,0.474482,0.790505,0.498125,0.413668,0.353708,0.574773,0.54988,0.680506,0.693398,0.891308,0.242296,0.996469,0.804814,0.104021,0.406719,0.42568,0.435876,0.607464,0.428277,0.210084,0.943446,0.828517,0.649441,0.327447,0.711146,0.235166,0.36742,0.916666,0.268724,0.197547,0.491677,0.657536,0.608268,0.822266,0.0426793,0.983832,0.896128,0.777485,0.781904,0.755959,0.27222,0.907145,0.174275,0.977902,0.596539,0.135019,0.0851141,0.0843714,0.110049,0.946672,0.567219,0.312895,0.849619,0.57366,0.291363,0.577143,0.529712,0.109512,0.262372,0.511745,0.879451,0.509124,0.991375,0.218414,0.356753,0.647427,0.899953,0.134249,0.283731,0.745474,0.500064,0.477408,0.49748,0.514132,0.182545,0.104192,0.369605,0.530305,0.773465,0.976184,0.918681,0.207511,0.877059,0.516969,0.11291,0.785845,0.209479,0.830892,0.0760985,0.731773,0.175328,0.115438,0.641932,0.76127,0.359459,0.491656,0.818721,0.128308,0.122876,0.0862016,0.0524195,0.575701,0.694511,|0.146438,0.676052,0.00785249,0.290761,0.0577133,0.834351,0.974165,0.225878,0.733875,0.687614,0.271961,0.071393,0.695315,0.142937,0.792273,0.669561,0.326106,0.734666,0.743182,0.659657,0.853489,0.868849,0.293375,0.496882,0.464306,0.574572,0.64906,0.302281,0.200047,0.294407,0.0910397,0.118284,0.876781,0.92153,0.608834,0.970818,0.404026,0.174946,0.204276,0.835977,0.713452,0.681181,0.827964,0.816915,0.581493,0.983501,0.248181,0.968933,0.376752,0.331185,0.576542,0.907485,0.386029,0.661609,0.997928,0.421054,0.465636,0.487525,0.0192268,0.756971,0.795671,0.0303482,0.792465,0.853832,0.182134,0.580069,0.215252,0.345759,0.598559,0.858856,0.0335845,0.847562,0.938331,0.00783163,0.709036,0.0902476,0.0063445,0.309995,0.090281,0.723974,0.313112,0.204709,0.803257,0.27709,0.688188,0.5031,0.848053,0.252632,0.0269583,0.076553,0.966162,0.691424,0.430029,0.519914,0.217701,0.475754,0.327337,0.739037,0.774059,0.462864,0.797478,0.424133,0.88618,0.508613,0.209729,0.696549,0.000730217,0.347448,0.98498,0.0812988,0.933421,0.88582,0.174795,0.87142,0.489825,0.345731,0.607388,0.23422,0.971006,0.649321,0.992893,0.816619,0.985464,0.108818,0.710438,0.349223,0.176108,0.806505,0.64857,0.293705,0.877472,0.0598,0.173615,0.0450963,0.371699,0.510888,0.272398,0.091974,0.285655,0.65168,0.395665,0.586111,0.327935,0.904367,0.969117,0.347595,0.923004,0.740169,0.943167,0.302231,0.226722,0.684111,0.368072,0.958378,0.714094,0.523671,0.129185,0.569158,0.645876,0.940263,0.849725,0.31614,0.0808453,0.901038,0.0682107,0.200529,0.309979,0.948117,0.265618,0.155478,0.468579,0.45371,0.06525,0.53318,0.690063,0.418727,0.588887,0.729902,0.742103,0.667615,0.554511,0.828154,0.283216,0.152264,0.369161,0.818421,0.245857,0.803571,0.271837,0.424286,0.193056,0.480028,0.72759,0.621967,0.240745,0.539259,0.801392,0.655775,0.00640625,0.913018,0.907997,0.431221,0.760383,0.126355,0.887327,0.584475,0.904278,0.614058,0.307994,0.034487,0.876486,0.7152,0.826072,0.995358,0.626998,0.096985,0.573476,0.988449,0.45985,0.953757,0.701224,0.16734,0.37287,0.489654,0.851867,0.213808,0.986873,0.273842,0.685648,0.18246,0.905231,0.517187,0.561847,0.481588,0.517012,0.466106,0.509095,0.641124,0.741741,0.156339,0.420057,0.609364,0.252465,0.583419,0.0995911,0.853161,0.0854814,0.759086,0.389944,0.380803,0.360167,0.935667,0.795403,0.232171,0.898561,0.57362,0.395912,0.612147,0.3379,0.171154,0.11274,0.0162189,0.482632,0.661194,0.499594,0.341985,0.127466,0.312279,0.98411,0.88617,0.371692,0.745045,0.910824,0.96614,0.196229,0.278918,0.900546,0.286517,0.53089,0.297311,0.590587,0.607092,0.120293,0.894817,0.242229,0.863595,0.686549,0.0999897,0.425674,0.600334,0.6213,0.808801,0.659292,0.619599,0.564086,0.109171,0.254306,0.671731,0.948075,0.96233,0.88652,0.139715,0.0795641,0.822829,0.499208,0.0835347,0.180714,0.253891,0.510294,0.731277,0.297808,0.91732,0.254862,0.299283,0.200014,0.788724,0.615978,0.187116,0.606154,0.158202,0.609302,0.425386,0.316407,0.960944,0.532395,0.515463,0.963375,0.441868,0.997515,0.685826,0.313566,0.0763645,0.432909,0.506641,0.930715,0.0567893,0.61734,0.7603,0.470006,0.948211,0.590243,0.234155,0.708512,0.977562,0.414314,0.019568,0.639522,0.611998,0.935597,0.731883,0.989009,0.96501,0.475068,0.748586,0.626375,0.573233,0.35459,0.586844,0.658621,0.0244533,0.168174,0.104122,0.492777,0.804041,0.894976,0.23832,0.11404,0.484052,0.263648,0.971824,0.505707,0.121264,0.310656,0.90686,0.906172,0.350037,0.0642098,0.306529,0.603476,0.128809,0.638236,0.749399,0.827295,0.58123,0.623782,0.437968,0.661194,0.820736,0.266993,0.56592,0.826839,0.602866,0.153966,0.0226335,0.753824,0.799113,0.70616,0.895918,0.643613,0.964518,0.186845,0.0268123,0.0514361,0.239377,0.504626,0.388501,0.503609,0.339946,0.97319,0.579629,0.199506,0.432223,0.294733,0.896113,0.369411,0.748215,0.986418,0.59732,0.390102,0.929163,0.00247282,0.219885,0.725061,0.65457,0.804544,0.390729,0.207215,0.654901,0.000518203,0.378174,0.32668,0.166651,0.580302,0.56377,0.301067,0.945571,0.461404,0.704647,0.786721,0.16118,0.839222,0.351037,0.0128936,0.612979,0.632638,0.203514,0.418687,0.474856,0.396478,0.311686,0.504699,0.328979,0.927444,0.96792,0.299499,0.758607,0.533173,0.402717,0.532597,0.0768269,0.112163,0.735143,0.993947,0.591267,0.311014,0.0568424,0.733322,0.568903,0.173164,0.28336,0.268028,0.657143,0.583484,0.0764521,0.453879,0.28116,0.807653,0.516662,0.628761,0.743233,0.749318,0.213536,0.368617,0.688586,0.649374,7.82013e-05,0.673804,0.611255,0.255321,0.907524,0.615947,0.0926333,0.310272,0.519725,0.303869,0.902889,0.561721,0.0751646,0.227602,0.774729,0.833738,0.578886,0.914178,0.682311,0.533711,0.876813,0.450848,0.74264,0.0921654,0.242223,0.131852,0.643622,0.976063,0.945771,0.886434,0.158119,0.366104,0.213854,0.665538,0.964734,0.965267,0.584103,0.48242,0.291722,0.0431539,0.872808,0.296325,0.242089,0.156824,0.92193,0.452696,0.188463,0.671247,0.788757,0.457903,0.82919,0.509926,0.831664,0.4131,0.684901,0.0283655,0.914033,0.677327,0.440767,0.901929,0.886847,0.203315,0.791072,0.746606,0.88147,0.687731,0.317955,0.423217,0.237389,0.96085,0.33606,0.873408,0.665167,0.342819,0.704201,0.49661,0.756118,0.822514,0.524479,0.859778,0.297713,0.553201,0.945216,0.464891,0.690106,0.948646,0.284408,0.0286668,0.751754,0.987999,0.656158,0.638711,0.711226,0.27301,0.820947,0.382687,0.198839,0.742961,0.283419,0.107824,0.709207,0.593873,0.900298,0.589558,0.791239,0.705482,0.290135,0.503275,0.167179,0.500659,0.62947,0.643138,0.857593,0.213982,0.0521136,0.863843,0.392954,0.150955,0.0938395,0.433489,0.556985,0.225852,0.575792,0.832792,0.394509,0.115178,0.89804,0.562717,0.333742,0.767231,0.0698025,0.917822,0.355145,0.550686,0.825837,0.356052,0.026166,0.219428,0.488271,0.00459689,0.809679,0.144422,0.47224,0.9899,0.660928,0.285709,0.0502757,0.583128,0.317264,0.538297,0.960513,0.420377,0.885359,0.326975,0.615362,0.128523,0.57162,0.564234,0.371314,0.990039,0.526393,0.331948,0.912017,0.0855278,0.435459,0.5596,0.360485,0.787065,0.708183,0.520077,0.374901,0.521263,0.214944,0.51652,0.603666,0.241504,0.168895,0.644191,0.532609,0.715803,0.572931,0.0450429,0.833753,0.510227,0.918337,0.904152,0.722753,0.233357,0.967491,0.604428,0.808722,0.833731,0.793477,0.763454,0.484265,0.385334,0.736972,0.467954,0.546253,0.510973,0.564385,0.0466602,0.112491,0.997239,0.337747,0.335413,0.801989,0.681188,0.191566,0.166547,0.780034,0.172756,0.618493,0.578757,0.761301,0.324681,0.74416,0.416651,0.986449,0.456152,0.665342,0.0540839,0.491895,0.195159,0.374561,0.395741,0.350922,0.790558,0.932174,0.941117,0.153951,0.983789,0.980298,0.779009,0.324664,0.465296,0.348963,0.32771,0.806903,0.33099,0.183076,0.79497,0.644134,0.93973,0.781865,0.74974,0.244919,0.230487,0.730963,0.9759,0.601182,0.0322362,0.791186,0.334287,0.653567,0.739575,0.880747,0.0506118,0.894275,0.334726,0.961013,0.747652,0.407182,0.156037,0.414218,0.944469,0.00695825,0.591841,0.937356,0.826387,0.921747,0.459624,0.595692,0.127439,0.196482,0.259892,0.0482962,0.544864,0.707347,0.0118288,0.521279,0.0169958,0.848952,0.870878,0.821046,0.409635,0.162111,0.70326,0.372656,0.998174,0.536534,0.958033,0.91217,0.162463,0.281787,0.715848,0.727761,0.324164,0.884248,0.166267,0.846794,0.836341,0.956982,0.363997,0.208814,0.811544,0.258863,0.44966,0.587189,0.337478,0.765407,0.571654,0.669349,0.559875,0.40724,0.316649,0.00699574,0.818072,0.443109,0.202034,0.356989,0.187081,0.509226,0.999202,0.903799,0.890139,0.629247,0.441087,0.939894,0.921776,0.908963,0.841444,0.0616216,0.361787,0.0285065,0.14179,0.539521,0.0110444,0.0961767,0.280462,0.615416,0.0864807,0.824911,0.361493,0.500174,0.524173,0.551981,0.404151,0.833724,0.788368,0.728824,0.268866,0.74735,0.653788,0.52158,0.862516,0.389881,0.18556,0.558726,0.0972942,0.0514442,0.467657,0.666155,0.555388,0.394747,0.959907,0.655754,0.986965,0.681647,0.485597,0.0617966,0.355974,0.056397,0.257051,0.981871,0.589557,0.204129,0.0261565,0.0159439,0.755244,0.194874,0.807388,0.794316,0.855382,0.338755,0.377691,0.286318,0.929097,0.506144,0.948903,0.440073,0.957707,0.292406,0.116605,0.162768,0.591677,0.406342,0.776671,0.444914,0.0520503,0.0848555,0.699832,0.849794,0.236349,0.440104,0.884871,0.064864,0.338069,0.289376,0.800725,0.0470566,0.865666,0.159658,0.40389,0.0303128,0.929196,0.767883,0.633558,0.527479,0.372433,0.924471,0.863295,0.764025,0.882345,0.918031,0.304292,0.476477,0.18595,0.493377,0.950537,0.596108,0.213894,0.437086,0.196279,0.0463421,0.211381,0.910863,0.172474,0.152039,0.94002,0.753353,0.621515,0.590876,0.797182,0.262257,0.837403,0.721992,0.518681,0.908636,0.159848,0.229265,0.769374,0.998074,0.409095,0.907822,0.320707,0.849231,0.884582,0.809762,0.939897,0.129863,0.438854,0.674042,0.305634,0.719233,0.996854,0.744019,0.0714416,0.0603806,0.0631801,0.486558,0.972368,0.0573901,0.125538,0.0742288,0.180321,0.864046,0.744694,0.311642,0.642113,0.127301,0.489895,0.471078,0.381481,0.755339,0.734158,0.822447,0.302994,0.692551,0.499992,0.862612,0.5583,0.296469,0.752294,0.775833,0.694451,0.845588,0.094268,0.400228,0.422912,0.139597,0.19093,0.0972689,0.0434922,0.557154,0.256388,0.622913,0.759931,0.816084,0.3589,0.617506,0.12059,0.77854,0.170534,0.698747,|0.313102,0.382922,0.555369,0.904094,0.368879,0.659243,0.167549,0.181654,0.845876,0.679538,0.0441371,0.501737,0.821897,0.706915,0.375296,0.760379,0.584513,0.366912,0.779329,0.850969,0.438232,0.69985,0.840768,0.182794,0.879013,0.465943,0.355585,0.482414,0.791592,0.199196,0.602773,0.724615,0.946732,0.0963796,0.389173,0.22269,0.891994,0.456711,0.948033,0.30559,0.778634,0.428782,0.70088,0.214291,0.206915,0.483014,0.422616,0.745013,0.451401,0.523811,0.357637,0.963704,0.130544,0.486352,0.554372,0.253778,0.63627,0.0752816,0.0673611,0.901294,0.816689,0.407411,0.654385,0.967899,0.00501937,0.869966,0.983562,0.314983,0.949224,0.769039,0.984526,0.85692,0.686481,0.0993482,0.151578,0.327561,0.787666,0.0193304,0.372708,0.811688,0.701599,0.332688,0.623853,0.169224,0.236387,0.749956,0.380095,0.859201,0.574711,0.711484,0.723318,0.711529,0.281525,0.526604,0.837513,0.50575,0.631825,0.207029,0.260088,0.309093,0.665213,0.722211,0.724319,0.7777,0.296746,0.141257,0.225314,0.824903,0.269303,0.875666,0.356158,0.903479,0.668432,0.998001,0.344609,0.508703,0.570425,0.311142,0.721821,0.661315,0.635789,0.465823,0.992047,0.545094,0.522169,0.764899,0.872067,0.74323,0.949258,0.569552,0.740795,0.14077,0.253291,0.256469,0.530513,0.776648,0.809109,0.91857,0.96474,0.189713,0.747112,0.568539,0.889403,0.0324973,0.612823,0.5873,0.268589,0.92816,0.157789,0.258645,0.449087,0.678311,0.163712,0.207385,0.180776,0.178453,0.422295,0.746298,0.682291,0.444674,0.353716,0.718868,0.277447,0.646698,0.762653,0.842115,0.663116,0.609558,0.236506,0.556451,0.237892,0.793224,0.807808,0.348597,0.717659,0.881473,0.21663,0.710687,0.742078,0.322634,0.451159,0.205708,0.0326353,0.241988,0.509403,0.0105864,0.165666,0.245806,0.104211,0.0452347,0.224593,0.529107,0.480369,0.465769,0.932369,0.802734,0.99383,0.86829,0.966791,0.800628,0.256176,0.644791,0.36919,0.524901,0.239637,0.884248,0.634163,0.855307,0.303575,0.473776,0.0130439,0.277045,0.952871,0.0474347,0.380542,0.0509906,0.0333713,0.343089,0.969655,0.772149,0.720026,0.847064,0.719119,0.558921,0.972391,0.892728,0.690137,0.34047,0.263031,0.626427,0.125109,0.424951,0.548224,0.633878,0.331123,0.468072,0.271688,0.861825,0.844681,0.324182,0.00725687,0.604288,0.339769,0.824235,0.178221,0.606914,0.62362,0.314279,0.629001,0.483486,0.522449,0.949295,0.95961,0.6836,0.651328,0.215142,0.964215,0.881649,0.0657648,0.724676,0.730464,0.811706,0.994253,0.319493,0.448925,0.940751,0.339547,0.0573731,0.503032,0.492859,0.571726,0.711803,0.262767,0.392145,0.601803,0.42649,0.381725,0.534062,0.598248,0.898062,0.467034,0.951327,0.913625,0.358734,0.585967,0.825115,0.699349,0.631605,0.774244,0.0863386,0.927806,0.481698,0.123742,0.506016,0.601313,0.750798,0.728111,0.327631,0.834352,0.12661,0.0257512,0.716185,0.754313,0.16076,0.0863571,0.545084,0.327126,0.548223,0.169837,0.729463,0.967457,0.362885,0.12243,0.932967,0.687506,0.139165,0.891271,0.769557,0.874412,0.912256,0.0847846,0.960922,0.0157763,0.675733,0.717126,0.796492,0.970375,0.144334,0.827989,0.333377,0.603432,0.107834,0.0555493,0.225614,0.920687,0.605071,0.757559,0.235207,0.71731,0.975661,0.481745,0.730017,0.224475,0.108823,0.932692,0.625944,0.773519,0.82241,0.955271,0.507291,0.649162,0.612446,0.15988,0.591356,0.178274,0.634048,0.368854,0.265295,0.381191,0.782152,0.952754,0.431326,0.148495,0.3898,0.00746393,0.793221,0.736369,0.863952,0.56247,0.277991,0.383461,0.619092,0.897552,0.0665332,0.935712,0.0892795,0.805434,0.72042,0.419425,0.552968,0.0852947,0.865969,0.9817,0.787065,0.0855184,0.667302,0.154654,0.811642,0.666777,0.860939,0.656385,0.550297,0.753338,0.666378,0.503149,0.354841,0.640748,0.155061,0.629408,0.970315,0.211478,0.618375,0.224401,0.446993,0.270788,0.920135,0.444128,0.533206,0.780055,0.936976,0.174657,0.603379,0.990558,0.476389,0.602066,0.208146,0.916275,0.419181,0.997481,0.428308,0.180433,0.897215,0.259974,0.166245,0.945376,0.0214185,0.646494,0.22393,0.193031,0.837328,0.225783,0.192973,0.786156,0.890858,0.03772,0.707864,0.970199,0.767442,0.0535293,0.0728235,0.396031,0.40824,0.632627,0.567268,0.0854058,0.0575576,0.497646,0.168829,0.55971,0.479133,0.0234224,0.339975,0.854631,0.928704,0.0363857,0.413632,0.0755482,0.265571,0.874105,0.830168,0.689592,0.0531101,0.969344,0.354058,0.769005,0.275882,0.983887,0.17762,0.545055,0.0976156,0.865518,0.110121,0.580528,0.199676,0.391067,0.174259,0.0134531,0.371716,0.242687,0.696005,0.824655,0.300659,0.51855,0.955894,0.845376,0.697569,0.95978,0.806814,0.598155,0.67593,0.690653,0.410504,0.474758,0.691721,0.393886,0.0449812,0.150681,0.993565,0.00805801,0.798959,0.510204,0.0489724,0.458735,0.273987,0.381111,0.922087,0.752873,0.90855,0.803635,0.419205,0.58745,0.179384,0.124327,0.949677,0.556915,0.908787,0.123057,0.903466,0.456556,0.354928,0.48044,0.381528,0.795424,0.416705,0.927437,0.506898,0.746224,0.708068,0.0288856,0.857413,0.684019,0.869874,0.630414,0.603679,0.123368,0.609921,0.744959,0.408839,0.904681,0.883047,0.250706,0.927433,0.430807,0.284596,0.345903,0.936259,0.319066,0.725788,0.559402,0.938676,0.676034,0.82506,0.432635,0.385926,0.0934381,0.258263,0.868646,0.799162,0.95519,0.630567,0.820239,0.868703,0.385162,0.56918,0.635207,0.166637,0.225137,0.653634,0.264098,0.771353,0.94223,0.919856,0.401463,0.225704,0.40585,0.722004,0.527207,0.920629,0.495579,0.78628,0.277716,0.291785,0.0180082,0.698887,0.785702,0.239199,0.268723,0.136353,0.894793,0.757869,0.479103,0.128846,0.39366,0.731138,0.0919276,0.940947,0.16269,0.575831,0.879207,0.256041,0.654331,0.802615,0.925779,0.198196,0.70536,0.3324,0.931879,0.651981,0.852976,0.370404,0.664816,0.236605,0.766642,0.966909,0.416726,0.683165,0.563133,0.227944,0.949082,0.916956,0.990766,0.310088,0.240572,0.0536354,0.802549,0.218517,0.539314,0.496993,0.0406976,0.394745,0.732784,0.811788,0.516703,0.329643,0.0804352,0.820778,0.758784,0.270565,0.656182,0.620145,0.172832,0.232885,0.384918,0.771394,0.490012,0.867994,0.59145,0.208797,0.722329,0.344612,0.231466,0.0963825,0.11405,0.288898,0.88699,0.050585,0.873068,0.673604,0.552106,0.359033,0.945961,0.0161303,0.873302,0.675924,0.270883,0.80332,0.938757,0.516153,0.940923,0.172929,0.0880837,0.848592,0.519024,0.700382,0.952905,0.315419,0.966119,0.285435,0.493958,0.510046,0.746177,0.587703,0.881416,0.216856,0.540898,0.446929,0.0807262,0.0605293,0.358288,0.906076,0.349114,0.457168,0.842979,0.285719,0.445289,0.967914,0.704706,0.949036,0.760282,0.280553,0.0489522,0.141179,0.629934,0.963977,0.879213,0.721009,0.408082,0.248966,0.808516,0.119865,0.536451,0.489287,0.826499,0.792548,0.0553746,0.875639,0.788792,0.410555,0.856352,0.456068,0.152988,0.502273,0.541547,0.433783,0.110846,0.525688,0.0188264,0.219328,0.534903,0.919525,0.149174,0.5769,0.172535,0.381633,0.190011,0.370388,0.134508,0.890838,0.170735,0.650102,0.865182,0.970749,0.0899851,0.283289,0.44948,0.831185,0.269489,0.841971,0.355892,0.049554,0.948225,0.951843,0.342339,0.369464,0.189389,0.695201,0.144664,0.634903,0.926127,0.867772,0.614084,0.38663,0.477517,0.517047,0.175937,0.791065,0.925476,0.0912699,0.704433,0.614175,0.64932,0.786854,0.71754,0.102939,0.452581,0.0847814,0.825624,0.993692,0.16273,0.116263,0.961524,0.750406,0.841933,0.667028,0.763514,0.920066,0.938682,0.0129282,0.887262,0.720177,0.567906,0.383474,0.894567,0.762813,0.350714,0.880368,0.715353,0.475547,0.213479,0.990706,0.0354902,0.927877,0.392755,0.366509,0.665123,0.53755,0.486434,0.896349,0.801456,0.994772,0.995772,0.893868,0.896329,0.354046,0.0745906,0.47562,0.670981,0.836644,0.709171,0.858272,0.105316,0.238411,0.292533,0.827431,0.257105,0.247819,0.66166,0.911136,0.853421,0.749262,0.358893,0.80888,0.788265,0.175074,0.515955,0.258911,0.445444,0.981786,0.199278,0.868411,0.548545,0.558624,0.277352,0.242199,0.540814,0.619152,0.637757,0.848866,0.387144,0.641685,0.35763,0.665673,0.789268,0.784703,0.900276,0.0626146,0.621876,0.60851,0.065051,0.718504,0.365732,0.837099,0.437712,0.0315506,0.615357,0.578516,0.0263221,0.263598,0.196373,0.744443,0.808119,0.675321,0.532929,0.99739,0.360765,0.412619,0.220334,0.220757,0.112134,0.256999,0.524414,0.000976741,0.822805,0.652474,0.120056,0.103706,0.645295,0.984851,0.266915,0.372914,0.93466,0.257596,0.645237,0.937604,0.936267,0.448783,0.605916,0.463223,0.737704,0.306336,0.0377771,0.509252,0.870988,0.142597,0.904803,0.836104,0.933472,0.866709,0.595342,0.968913,0.21936,0.0446102,0.44129,0.763613,0.572186,0.675132,0.3502,0.829555,0.856074,0.598984,0.365369,0.550879,0.862286,0.304043,0.128775,0.346723,0.425593,0.647047,0.604294,0.779025,0.212811,0.617275,0.267965,0.793629,0.88046,0.473005,0.430586,0.735542,0.0915787,0.992604,0.943362,0.584387,0.980947,0.889026,0.747819,0.298636,0.249428,0.411842,0.553007,0.965913,0.108395,0.843048,0.118226,0.610919,0.135194,0.332339,0.443994,0.404096,0.225428,0.399945,0.482334,0.174528,0.281202,0.491582,0.643265,0.0101412,0.662683,0.493553,0.589928,0.868678,0.351335,0.87331,0.390173,0.093098,0.773702,0.728146,0.120129,0.974261,0.457793,0.406453,0.182991,0.535821,0.612535,0.891279,0.71671,0.641656,0.36483,0.278404,0.865638,0.280073,0.50829,0.352863,0.0129841,0.775622,0.491688,0.312305,0.830306,0.985751,0.187,0.920707,|0.736575,0.351824,0.394197,0.80191,0.982748,0.0199881,0.204444,0.905642,0.462452,0.511925,0.127545,0.703824,0.0804174,0.196437,0.437786,0.637644,0.764797,0.454055,0.553372,0.658949,0.795826,0.902841,0.976198,0.872143,0.371276,0.161099,0.0120627,0.395109,0.013439,0.704996,0.266191,0.794443,0.309406,0.62796,0.881775,0.137265,0.416618,0.00244659,0.641854,0.0176072,0.0672256,0.612159,0.282251,0.524813,0.0813525,0.151179,0.272477,0.427666,0.166446,0.980807,0.0668857,0.848545,0.560535,0.0711774,0.194184,0.526154,0.540838,0.128774,0.83534,0.883218,0.312705,0.997208,0.329706,0.483735,0.740402,0.152339,0.113147,0.981686,0.450359,0.606057,0.652421,0.12203,0.653417,0.788594,0.486115,0.622585,0.325506,0.943668,0.165735,0.829955,0.226828,0.851595,0.621193,0.524172,0.23762,0.51101,0.485031,0.165835,0.800675,0.264125,0.514983,0.65461,0.230892,0.424296,0.927593,0.0589753,0.381301,0.542865,0.500574,0.2874,0.144263,0.923457,0.641781,0.0968315,0.774993,0.202283,0.857616,0.0854704,0.813561,0.443263,0.38055,0.748157,0.617443,0.60137,0.167801,0.148536,0.570717,0.600895,0.552322,0.975998,0.118567,0.815059,0.960532,0.314427,0.897347,0.252134,0.229029,0.650704,0.881019,0.746562,0.668974,0.0870904,0.267876,0.0682647,0.212879,0.703754,0.908337,0.4255,0.59928,0.332929,0.681261,0.933318,0.884714,0.84119,0.116999,0.982915,0.861026,0.610688,0.6148,0.498793,0.03321,0.239695,0.430755,0.424936,0.458942,0.794994,0.546085,0.243147,0.3937,0.135167,0.228701,0.815262,0.136774,0.633473,0.438405,0.72808,0.272954,0.00622988,0.812626,0.0147676,0.0949737,0.457482,0.495543,0.439059,0.361463,0.387132,0.240592,0.753094,0.480303,0.257406,0.602256,0.365765,0.0337,0.0423158,0.531847,0.559951,0.560394,0.00498199,0.668199,0.0986824,0.299077,0.438806,0.1271,0.0784044,0.118652,0.882085,0.0229083,0.671805,0.464484,0.553847,0.60606,0.952712,0.96526,0.43739,0.948553,0.222392,0.664245,0.230825,0.0970712,0.566908,0.572045,0.227931,0.315431,0.783986,0.36076,0.587487,0.349159,0.249017,0.43529,0.790629,0.242287,0.954783,0.339114,0.663947,0.63228,0.225106,0.514121,0.184344,0.617985,0.338715,0.01563,0.403816,0.116536,0.496067,0.201436,0.778258,0.0574219,0.653684,0.295189,0.66359,0.88344,0.753392,0.933922,0.983604,0.844184,0.390474,0.141593,0.0127658,0.091215,0.0414557,0.135699,0.915878,0.434101,0.107322,0.39471,0.336325,0.0547985,0.799651,0.279181,0.0211303,0.474239,0.934013,0.282687,0.0751933,0.543554,0.120874,0.0386004,0.510215,0.836596,0.363359,0.821969,0.557719,0.502851,0.810537,0.757872,0.353371,0.28619,0.893099,0.538536,0.497233,0.45959,0.513451,0.613825,0.155918,0.0811496,0.659912,0.0960152,0.990331,0.859908,0.665994,0.677157,0.941548,0.988582,0.125131,0.638929,0.491262,0.529795,0.489681,0.359,0.462598,0.873798,0.67658,0.539322,0.25178,0.214637,0.797092,0.279402,0.198701,0.114012,0.636345,0.432038,0.490461,0.935812,0.00860757,0.054513,0.249789,0.709356,0.0168487,0.504848,0.979307,0.562221,0.218951,0.499689,0.139342,0.947326,0.134922,0.238717,0.821612,0.584717,0.632598,0.771431,0.195629,0.893473,0.672403,0.422316,0.0610789,0.644861,0.617583,0.795165,0.806833,0.411507,0.1731,0.24833,0.0396158,0.228935,0.481042,0.942501,0.0455245,0.836374,0.516726,0.98637,0.143724,0.867428,0.209514,0.652782,0.676595,0.314695,0.116072,0.964484,0.557131,0.755214,0.468519,0.138782,0.95222,0.732824,0.399637,0.241043,0.0775455,0.936801,0.535732,0.24902,0.00810546,0.474503,0.056267,0.868377,0.929293,0.711566,0.460348,0.75912,0.774598,0.207765,0.969039,0.963058,0.198023,0.674953,0.307998,0.911707,0.256204,0.770924,0.081055,0.291477,0.639198,0.997739,0.593829,0.204546,0.498492,0.915605,0.0991011,0.537813,0.252763,0.929623,0.952903,0.491643,0.192026,0.877999,0.601246,0.908403,0.759823,0.456122,0.430381,0.561812,0.876621,0.567524,0.612405,0.432493,0.193925,0.173127,0.577856,0.66521,0.549115,0.199884,0.155569,0.0591064,0.245214,0.544025,0.0324146,0.798067,0.154083,0.327153,0.273187,0.131072,0.857622,0.745964,0.836445,0.112778,0.817657,0.740731,0.132555,0.7319,0.484906,0.35665,0.961619,0.275386,0.0827013,0.523895,0.636372,0.475082,0.503711,0.227287,0.129372,0.0463003,0.601756,0.746787,0.0624048,0.749269,0.145154,0.211476,0.0726928,0.253397,0.134476,0.928109,0.986709,0.226543,0.823328,0.483572,0.527202,0.896215,0.74734,0.640705,0.485437,0.0823582,0.144097,0.384697,0.908194,0.778889,0.949726,0.342823,0.212392,0.210021,0.602918,0.601858,0.277277,0.747104,0.905745,0.941392,0.352214,0.157811,0.00778598,0.407047,0.335999,0.574835,0.0394199,0.783348,0.39246,0.35569,0.828038,0.864302,0.4451,0.481048,0.142957,0.505022,0.40308,0.176162,0.174495,0.405775,0.49803,0.500388,0.114439,0.87086,0.79396,0.0748264,0.123502,0.509098,0.662326,0.0845333,0.693457,0.502757,0.207373,0.852849,0.758485,0.594813,0.636792,0.514465,0.461329,0.0682489,0.0998405,0.673841,0.720579,0.512791,0.26853,0.601073,0.514934,0.428512,0.128999,0.000789762,0.547597,0.510932,0.219205,0.809961,0.876392,0.397833,0.667797,0.0573911,0.443813,0.775187,0.854512,0.746582,0.184244,0.103287,0.181616,0.562499,0.319587,0.892523,0.775028,0.88992,0.990772,0.651626,0.797637,0.445795,0.190796,0.486151,0.676779,0.517281,0.710994,0.868023,0.394671,0.0678711,0.358685,0.521434,0.365669,0.261751,0.673943,0.143681,0.000142872,0.695614,0.775918,0.935896,0.0889494,0.508452,0.179267,0.452623,0.670116,0.00391853,0.529081,0.230998,0.772267,0.125095,0.98972,0.312613,0.193569,0.269732,0.603446,0.888564,0.6266,0.988368,0.720201,0.24784,0.673786,0.35488,0.42181,0.933227,0.805078,0.100903,0.838281,0.544397,0.230091,0.011116,0.576384,0.264134,0.384166,0.124827,0.415744,0.546999,0.505967,0.717639,0.954841,0.137463,0.0122138,0.326557,0.317744,0.740693,0.621939,0.479535,0.814441,0.713208,0.980285,0.502509,0.0988122,0.696239,0.811936,0.845924,0.600782,0.531687,0.294649,0.703989,0.631057,0.588185,0.861016,0.427558,0.642258,0.880674,0.58566,0.22609,0.000307798,0.410667,0.865517,0.940286,0.143163,0.667928,0.741359,0.0786948,0.915025,0.292924,0.867911,0.627442,0.0551513,0.613383,0.967171,0.422524,0.398523,0.0783967,0.137628,0.709377,0.00348043,0.239778,0.649582,0.0788074,0.741594,0.567861,0.522474,0.324309,0.344582,0.729508,0.108724,0.718541,0.385142,0.673767,0.137251,0.111718,0.560587,0.860096,0.295204,0.975992,0.736126,0.933891,0.724229,0.78675,0.731632,0.784741,0.500566,0.503895,0.806341,0.111404,0.165635,0.731185,0.608414,0.570082,0.377156,0.0146029,0.94842,0.508917,0.473568,0.319713,0.927379,0.0585824,0.0945181,0.493878,0.621287,0.00504214,0.283248,0.501891,0.425955,0.994882,0.413846,0.373874,0.0862802,0.621501,0.491618,0.27897,0.313365,0.721071,0.846819,0.746145,0.248287,0.519385,0.295497,0.600183,0.601918,0.811837,0.587677,0.513864,0.512317,0.696823,0.062205,0.790098,0.481703,0.444167,0.678959,0.282912,0.00623065,0.858251,0.0825179,0.590192,0.727006,0.0375651,0.0946575,0.23763,0.435313,0.804861,0.429418,0.394789,0.67685,0.729288,0.520002,0.338541,0.761325,0.164992,0.0288863,0.49757,0.720707,0.474317,0.389267,0.565362,0.305204,0.0166152,0.356045,0.91643,0.13214,0.819152,0.765276,0.161431,0.967536,0.0464475,0.371604,0.580849,0.74516,0.179403,0.102894,0.661305,0.118929,0.7672,0.987592,0.562516,0.620093,0.600727,0.456135,0.608665,0.590307,0.18555,0.606972,0.651466,0.149165,0.647934,0.269474,0.0200295,0.677188,0.939778,0.635123,0.897901,0.57851,0.197573,0.878188,0.0981722,0.929944,0.657737,0.344266,0.167945,0.57743,0.424294,0.0725589,0.199976,0.293631,0.760597,0.143309,0.590073,0.0796009,0.132786,0.762141,0.566089,0.179445,0.0506403,0.285386,0.0470472,0.36198,0.945815,0.984034,0.0426553,0.124203,0.925086,0.745902,0.0185319,0.272957,0.977347,0.365077,0.49138,0.535719,0.368655,0.888252,0.101656,0.957791,0.837648,0.136466,0.582437,0.284375,0.343763,0.382338,0.113673,0.727826,0.429427,0.265168,0.315539,0.387799,0.417882,0.455454,0.00634426,0.728811,0.739614,0.498525,0.39747,0.1275,0.050597,0.272111,0.821709,0.865111,0.649129,0.46581,0.384692,0.949969,0.19621,0.695705,0.881114,0.600265,0.716534,0.79086,0.0235859,0.609227,0.129637,0.755757,0.24152,0.5433,0.826201,0.7612,0.915364,0.43552,0.80521,0.0834971,0.526394,0.672372,0.495469,0.125676,0.0711695,0.316328,0.570466,0.791946,0.223786,0.100993,0.79819,0.711807,0.628639,0.556418,0.369183,0.578714,0.0844921,0.601574,0.671623,0.646188,0.150403,0.217897,0.925342,0.307296,0.446578,0.0735757,0.457507,0.426631,0.471003,0.879792,0.277009,0.577103,0.935133,0.829651,0.0963404,0.749831,0.47027,0.998029,0.694811,0.174498,0.804968,0.787671,0.744084,0.901949,0.0653652,0.857081,0.223932,0.452932,0.374115,0.507379,0.314004,0.191134,0.519031,0.974468,0.0622468,0.160639,0.709692,0.866018,0.0714085,0.620046,0.855939,0.340708,0.915122,0.692857,0.684854,0.518647,0.547747,0.652714,0.269959,0.777834,0.241551,0.379215,0.457956,0.299877,0.576196,0.76929,0.465323,0.113627,0.476526,0.113262,0.624931,0.965055,0.869218,0.539797,0.802555,0.78767,0.469977,0.406899,0.428129,0.140977,0.48684,0.819752,0.493171,0.200251,0.879895,0.437735,0.295744,0.848147,0.431145,0.259699,0.250473,0.481742,0.0845875,0.249684,0.735661,0.944284,0.175467,0.0749883,0.80725,0.792737,0.717452,0.737686,0.432272,0.6592,|0.370986,0.414863,0.961046,0.429055,0.344962,0.335107,0.677068,0.596458,0.107673,0.824301,0.559236,0.124528,0.952006,0.847512,0.0737978,0.476391,0.140478,0.345131,0.941194,0.716654,0.771458,0.316751,0.337909,0.908058,0.978696,0.72535,0.537229,0.834231,0.664337,0.775203,0.267139,0.418693,0.254233,0.834964,0.227216,0.452707,0.865352,0.839741,0.167941,0.148248,0.302418,0.808786,0.123544,0.404874,0.376305,0.758614,0.591161,0.986992,0.191369,0.605152,0.298888,0.390208,0.311513,0.771043,0.638186,0.712207,0.150185,0.776802,0.128592,0.155235,0.224303,0.392582,0.969195,0.798525,0.834468,0.382102,0.301811,0.153439,0.217163,0.84275,0.123062,0.520081,0.288389,0.952224,0.350439,0.924209,0.578795,0.701517,0.63559,0.95473,0.856534,0.502693,0.805489,0.683852,0.0984711,0.340579,0.897056,0.366225,0.886618,0.269151,0.791079,0.558402,0.466093,0.744817,0.56003,0.442695,0.537197,0.856728,0.911544,0.788794,0.143208,0.424414,0.735926,0.392586,0.357199,0.465768,0.332375,0.258302,0.941271,0.0976729,0.247293,0.309803,0.580207,0.268377,0.842765,0.309034,0.556168,0.955526,0.29059,0.942017,0.891671,0.440952,0.482076,0.305476,0.547639,0.966738,0.609911,0.472751,0.735943,0.26639,0.462703,0.39479,0.298464,0.00271124,0.59112,0.00424999,0.294172,0.940019,0.133471,0.12202,0.6385,0.0221058,0.912721,0.615283,0.938843,0.237214,0.158348,0.964326,0.526038,0.100966,0.943426,0.13164,0.953843,0.784725,0.69076,0.243578,0.910027,0.691746,0.511023,0.711812,0.426077,0.13817,0.847434,0.765894,0.508264,0.480678,0.129271,0.0346959,0.4851,0.0255125,0.486734,0.593086,0.170362,0.0953404,0.22601,0.279297,0.397781,0.00836653,0.207102,0.426612,0.765579,0.644234,0.647859,0.553774,0.843649,0.68952,0.357193,0.405234,0.750637,0.455446,0.4255,0.199432,0.00550574,0.253699,0.626638,0.868037,0.415126,0.988418,0.884422,0.00146985,0.561836,0.492698,0.210587,0.943374,0.171618,0.375405,0.0845929,0.257361,0.0186399,0.720917,0.507208,0.552098,0.797123,0.700449,0.674783,0.759626,0.0813762,0.235614,0.492637,0.410091,0.0804634,0.129303,0.727704,0.603766,0.879006,0.73777,0.791908,0.217024,0.0580732,0.538898,0.482927,0.111129,0.36538,0.948999,0.70082,0.848039,0.901184,0.996732,0.0563944,0.342472,0.645174,0.47358,0.972639,0.935225,0.56265,0.0999442,0.795657,0.711501,0.740853,0.935429,0.683333,0.74177,0.767487,0.973302,0.422745,0.645846,0.241874,0.303761,0.0554606,0.601704,0.61012,0.261588,0.189876,0.767504,0.477311,0.619573,0.43671,0.859239,0.226578,0.97739,0.121656,0.493903,0.316458,0.904257,0.785123,0.72706,0.848759,0.0476775,0.896392,0.701437,0.224437,0.172819,0.236848,0.445833,0.144894,0.531777,0.703738,0.484331,0.962269,0.238292,0.76899,0.0834502,0.713609,0.469439,0.156216,0.306809,0.615668,0.250017,0.0193027,0.325105,0.700217,0.672469,0.867606,0.632042,0.402019,0.714034,0.409821,0.538651,0.551295,0.660597,0.62401,0.586618,0.295408,0.254841,0.806611,0.0100057,0.347468,0.63028,0.660193,0.500717,0.538803,0.101246,0.521735,0.281604,0.0319233,0.213769,0.949524,0.351099,0.922965,0.431985,0.219076,0.442586,0.865935,0.882134,0.455748,0.378576,0.557276,0.35605,0.283379,0.476058,0.456668,0.215185,0.635864,0.509341,0.981145,0.943,0.244193,0.406467,0.546094,0.379014,0.297412,0.349093,0.444264,0.162665,0.563749,0.822774,0.19457,0.79205,0.877981,0.895921,0.0579634,0.810418,0.340418,0.365247,0.638599,0.20939,0.240882,0.798315,0.25364,0.714773,0.699683,0.948119,0.15926,0.110345,0.990977,0.995844,0.7896,0.844009,0.552317,0.821672,0.936236,0.650953,0.579576,0.029874,0.981881,0.323459,0.386817,0.0761781,0.191834,0.139507,0.871682,0.149628,0.852986,0.937753,0.266993,0.370601,0.482858,0.235073,0.545642,0.939233,0.8483,0.0675246,0.953725,0.09999,0.0703502,0.255988,0.609824,0.413873,0.0551912,0.529871,0.10157,0.514351,0.125067,0.2104,0.00378567,0.678166,0.663493,0.320112,0.648336,0.787197,0.0278696,0.79005,0.382692,0.225646,0.290635,0.86751,0.28288,0.760008,0.734444,0.26386,0.998117,0.0827171,0.381748,0.945378,0.416733,0.0862543,0.693105,0.862977,0.759452,0.152587,0.569382,0.396501,0.61801,0.147883,0.0645537,0.326401,0.59536,0.117312,0.988809,0.746924,0.600132,0.378288,0.131368,0.421571,0.937249,0.577631,0.377833,0.597861,0.315729,0.706374,0.809098,0.313728,0.544127,0.500596,0.135204,0.228291,0.783521,0.915102,0.413361,0.910519,0.551151,0.347052,0.57174,0.133514,0.7528,0.177213,0.139848,0.293404,0.545737,0.83759,0.909891,0.0589266,0.0724278,0.857746,0.127275,0.486423,0.873305,0.670412,0.179009,0.682829,0.526189,0.534582,0.805758,0.41992,0.975722,0.269898,0.734307,0.981895,0.0937994,0.614436,0.433924,0.0540894,0.116936,0.888179,0.3678,0.423306,0.297032,0.460433,0.0759943,0.379443,0.323165,0.488745,0.985236,0.623237,0.971658,0.796322,0.477709,0.0542718,0.140837,0.514195,0.0294339,0.965669,0.915898,0.587974,0.992638,0.30492,0.77106,0.979492,0.623152,0.773719,0.296918,0.811252,0.23641,0.403603,0.0312811,0.496329,0.985241,0.547455,0.13485,0.230271,0.315962,0.44655,0.560124,0.836297,0.509452,0.574752,0.977553,0.827522,0.66143,0.524904,0.701029,0.10151,0.98986,0.898486,0.926346,0.0921591,0.797615,0.202836,0.887191,0.0249589,0.357021,0.599482,0.718866,0.662931,0.0959206,0.281622,0.516955,0.271014,0.517793,0.27436,0.963878,0.383144,0.587678,0.815673,0.700573,0.187284,0.384212,0.996999,0.501628,0.774599,0.352685,0.452031,0.875068,0.512918,0.480178,0.830542,0.780037,0.391936,0.586556,0.943066,0.647923,0.0805464,0.0280048,0.335906,0.453741,0.486467,0.35615,0.226515,0.180732,0.499674,0.0497317,0.903492,0.209603,0.16121,0.685349,0.140182,0.196751,0.287992,0.810785,0.259908,0.695689,0.421081,0.172555,0.487399,0.984884,0.0995125,0.559297,0.832718,0.958071,0.0344121,0.843041,0.0142242,0.174101,0.971804,0.367798,0.355562,0.548827,0.223717,0.392912,0.905513,0.688416,0.965914,0.173136,0.374867,0.116377,0.817706,0.43014,0.153307,0.158587,0.77966,0.116555,0.470135,0.225501,0.297046,0.663533,0.115905,0.0512658,0.933032,0.525976,0.254419,0.280281,0.383274,0.329635,0.462572,0.330584,0.647737,0.552593,0.710674,0.943238,0.544352,0.378489,0.67624,0.43786,0.0531857,0.401005,0.790481,0.544188,0.69983,0.166214,0.00672352,0.0072906,0.228445,0.411072,0.176023,0.235422,0.73163,0.549826,0.942856,0.187033,0.0165824,0.331717,0.664222,0.153067,0.638074,0.285393,0.28976,0.397405,0.552778,0.00325096,0.806351,0.0977907,0.610466,0.314111,0.823321,0.623759,0.725786,0.0288324,0.974273,0.0165343,0.604461,0.141507,0.677011,0.246702,0.40139,0.0771529,0.910749,0.382323,0.631002,0.760022,0.580101,0.395867,0.968534,0.0110252,0.885854,0.127989,0.231808,0.553259,0.244653,0.850398,0.454011,0.615171,0.907214,0.129641,0.178151,0.200978,0.919063,0.367795,0.171066,0.408019,0.012963,0.187202,0.9472,0.22761,0.993317,0.0437447,0.711656,0.168837,0.651425,0.137571,0.87685,0.152008,0.966338,0.00570792,0.272566,0.0859506,0.602698,0.877511,0.26216,0.618673,0.392842,0.710094,0.763888,0.8023,0.0308871,0.381793,0.560226,0.293889,0.553411,0.795892,0.186184,0.583445,0.424825,0.308048,0.720401,0.974868,0.60528,0.276942,0.751744,0.0718746,0.406858,0.1976,0.711215,0.0507351,0.51169,0.867708,0.858926,0.321177,0.837801,0.337314,0.286153,0.754645,0.650468,0.21321,0.326042,0.567999,0.867393,0.0533687,0.421545,0.0561378,0.286548,0.0917678,0.777571,0.823901,0.877477,0.264066,0.9678,0.332084,0.181325,0.404505,0.301311,0.646199,0.50843,0.511745,0.446312,0.617121,0.253834,0.167687,0.653653,0.45249,0.0139388,0.468824,0.095122,0.0979666,0.878214,0.699859,0.0992911,0.841066,0.737249,0.996083,0.29289,0.642832,0.217016,0.230913,0.21675,0.0708418,0.867865,0.0768618,0.571051,0.0784807,0.777995,0.468443,0.513417,0.0221773,0.625915,0.604203,0.305082,0.968238,0.296678,0.242009,0.202674,0.866816,0.959121,0.744047,0.705177,0.767175,0.252059,0.285097,0.983756,0.980322,0.587866,0.595036,0.93322,0.0441856,0.669566,0.619349,0.238908,0.824449,0.994854,0.487957,0.504011,0.56049,0.659515,0.960496,0.665,0.0586011,0.171757,0.296648,0.311185,0.10716,0.674618,0.790121,0.0881395,0.484817,0.39395,0.0941644,0.57279,0.691142,0.960929,0.40196,0.984819,0.474299,0.903772,0.563365,0.216452,0.332604,0.355346,0.243442,0.985188,0.779121,0.560333,0.54928,0.410426,0.624089,0.743775,0.870028,0.023057,0.769617,0.513834,0.895235,0.815287,0.906749,0.145888,0.700752,0.607507,0.644941,0.492547,0.588934,0.723257,0.929834,0.247436,0.29723,0.939475,0.602144,0.924832,0.829448,0.0119064,0.582146,0.716217,0.514463,0.0714089,0.929354,0.7467,0.00534689,0.567901,0.550186,0.0754779,0.935096,0.999387,0.574539,0.198922,0.0141175,0.718292,0.0649342,0.497599,0.234174,0.187212,0.313338,0.158415,0.545591,0.565677,0.548053,0.448218,0.404133,0.3461,0.966561,0.483485,0.61839,0.301266,0.116482,0.287358,0.608555,0.14822,0.207993,0.592293,0.337548,0.649618,0.778781,0.581366,0.173697,0.433257,0.0839527,0.320089,0.625099,0.470564,0.765726,0.282774,0.650622,0.478521,0.946318,0.703679,0.212383,0.0476566,0.559803,0.277859,0.569171,0.621388,0.546334,0.81884,0.106427,0.586192,0.875208,0.91257,0.417597,0.74332,0.241598,0.466311,0.26467,0.907269,0.173006,0.645964,0.853292,0.105767,0.518604,0.273454,0.441615,0.867942,0.730481,0.391258,0.941632,0.931653,|0.881439,0.487053,0.784729,0.298079,0.785367,0.951918,0.58449,0.902851,0.61192,0.920665,0.605433,0.840731,0.693615,0.659923,0.42945,0.925312,0.943312,0.159327,0.850705,0.644996,0.312277,0.046004,0.646166,0.37302,0.929198,0.374673,0.964805,0.386311,0.68553,0.0989091,0.247106,0.153547,0.335738,0.855261,0.924706,0.494751,0.391959,0.0297883,0.2796,0.467233,0.792026,0.916702,0.211143,0.79528,0.759871,0.683949,0.35736,0.0427676,0.540032,0.00790578,0.468731,0.648313,0.288603,0.377245,0.0188737,0.538167,0.627552,0.0358243,0.154241,0.838264,0.475999,0.765496,0.925019,0.484091,0.155684,0.957987,0.539043,0.695675,0.350242,0.703642,0.498368,0.392033,0.230909,0.512012,0.202314,0.0168499,0.457529,0.422531,0.306159,0.57836,0.551731,0.76003,0.52139,0.466207,0.299844,0.131141,0.202385,0.312932,0.602793,0.877038,0.42872,0.93899,0.0378141,0.320423,0.366231,0.294486,0.0100697,0.304018,0.194111,0.0980287,0.803767,0.0716834,0.872451,0.775525,0.341867,0.532456,0.398298,0.421952,0.369545,0.695712,0.941634,0.118831,0.125539,0.992912,0.149468,0.705547,0.964183,0.195868,0.722127,0.846567,0.874134,0.486079,0.263749,0.655956,0.488528,0.195801,0.0557408,0.77739,0.425172,0.902069,0.0128242,0.13671,0.35902,0.708351,0.521406,0.429984,0.618875,0.619556,0.479217,0.346315,0.638351,0.919217,0.436668,0.824185,0.327172,0.586692,0.666416,0.239051,0.523412,0.168853,0.103621,0.952925,0.596647,0.508995,0.847691,0.808996,0.813954,0.76702,0.215412,0.548742,0.997357,0.605931,0.0250185,0.522706,0.789891,0.869259,0.655437,0.00339478,0.238908,0.897393,0.145866,0.348021,0.919632,0.554246,0.87063,0.474748,0.583684,0.974589,0.464524,0.339411,0.854984,0.971504,0.179007,0.873161,0.540575,0.957611,0.99086,0.304055,0.319344,0.74627,0.389572,0.398587,0.158646,0.599719,0.425407,0.285768,0.649576,0.568923,0.561546,0.377501,0.313837,0.183091,0.179391,0.36517,0.34395,0.571305,0.256183,0.90779,0.969245,0.243045,0.337354,0.936998,0.484752,0.6444,0.17402,0.591481,0.297683,0.340146,0.529625,0.901922,0.418854,0.60452,0.946478,0.0325038,0.996487,0.199424,0.643475,0.202922,0.0827674,0.345455,0.423801,0.157964,0.222871,0.337048,0.0854198,0.901069,0.132239,0.307279,0.236336,0.547702,0.158444,0.886776,0.894876,0.210908,0.71681,0.919701,0.978388,0.638548,0.138667,0.134934,0.262434,0.457357,0.620839,0.747073,0.673561,0.277148,0.26471,0.13626,0.47431,0.382279,0.624955,0.98058,0.143361,0.535794,0.124397,0.839661,0.633305,0.0743977,0.608268,0.210799,0.650522,0.797922,0.0182042,0.340877,0.480941,0.490683,0.732489,0.0821202,0.990122,0.080927,0.88156,0.472437,0.0679504,0.136194,0.579809,0.343116,0.948658,0.0310107,0.421895,0.269086,0.19278,0.556355,0.651299,0.375877,0.0791686,0.300274,0.727073,0.26196,0.214917,0.110778,0.268682,0.5312,0.0108458,0.803047,0.0675345,0.476083,0.79157,0.165364,0.49881,0.477937,0.860134,0.701154,0.539085,0.00729543,0.849795,0.231725,0.330809,0.107928,0.799705,0.473879,0.468843,0.874003,0.00104243,0.0756012,0.055626,0.280918,0.144655,0.567582,0.955017,0.62509,0.991411,0.198759,0.384046,0.0655243,0.900704,0.056154,0.608528,0.980121,0.66234,0.707155,0.780682,0.116756,0.682699,0.337322,0.0565975,0.211668,0.139433,0.0886258,0.455019,0.266742,0.0776592,0.548225,0.516026,0.194645,0.0359695,0.389392,0.993225,0.00670385,0.21943,0.688333,0.211322,0.51607,0.655413,0.712444,0.623235,0.292587,0.595688,0.730084,0.556506,0.57425,0.620839,0.832128,0.320731,0.367472,0.197684,0.247884,0.307805,0.465005,0.986452,0.20845,0.981011,0.500377,0.260063,0.20034,0.315408,0.723211,0.665136,0.92365,0.696634,0.893427,0.182353,0.404574,0.547188,0.443961,0.159186,0.889516,0.103769,0.520643,0.0510271,0.601928,0.516807,0.324458,0.841472,0.870932,0.604768,0.727778,0.765497,0.770407,0.470409,0.363609,0.530597,0.510952,0.631908,0.330414,0.395387,0.291901,0.798336,0.963183,0.317022,0.462642,0.655478,0.896087,0.819535,0.312792,0.757042,0.93921,0.061002,0.294317,0.280509,0.240867,0.961949,0.190089,0.074623,0.966682,0.476136,0.394761,0.723293,0.49436,0.736029,0.877737,0.732952,0.950865,0.795075,0.681269,0.851864,0.113596,0.111841,0.749053,0.199454,0.410268,0.445003,0.919858,0.708596,0.760092,0.425558,0.0261498,0.589346,0.0662887,0.394139,0.373728,0.504489,0.946477,0.280897,0.136154,0.57682,0.262042,0.54477,0.487746,0.366019,0.466196,0.212824,0.446315,0.725238,0.0491831,0.102688,0.705571,0.615131,0.0237262,0.36917,0.877793,0.668095,0.534536,0.213482,0.339954,0.79561,0.226608,0.841736,0.655852,0.893308,0.00714278,0.841543,0.760173,0.952015,0.391722,0.842124,0.904291,0.323403,0.662476,0.855333,0.238161,0.0750235,0.768269,0.145832,0.529241,0.271981,0.205909,0.219308,0.985485,0.660158,0.201368,0.324519,0.713482,0.330227,0.479162,0.464402,0.284939,0.241045,0.655866,0.867047,0.745609,0.238871,0.0686479,0.356384,0.938176,0.4376,0.699138,0.478335,0.535968,0.857417,0.780466,0.332695,0.966745,0.84986,0.763199,0.398476,0.308339,0.567637,0.659372,0.948821,0.555599,0.233567,0.321808,0.877437,0.0892431,0.0435423,0.119979,0.0546253,0.413431,0.289955,0.709531,0.748067,0.243988,0.925989,0.100106,0.765728,0.565079,0.659061,0.964232,0.107159,0.559967,0.10518,0.711681,0.913383,0.627946,0.832121,0.733424,0.546835,0.0796113,0.685598,0.232482,0.289831,0.649519,0.0843845,0.82158,0.866837,0.925344,0.089662,0.017671,0.570042,0.132895,0.644245,0.187837,0.0937146,0.176089,0.460437,0.896626,0.443334,0.339335,0.0521962,0.443072,0.524403,0.787166,0.0615477,0.0978172,0.198816,0.033498,0.892183,0.899405,0.815814,0.51584,0.895721,0.0286217,0.222626,0.769217,0.00667089,0.190513,0.0929907,0.717787,0.725877,0.874194,0.51338,0.172888,0.00517738,0.30471,0.668234,0.22739,0.461936,0.693132,0.352701,0.12134,0.0214136,0.832028,0.243542,0.914665,0.955028,0.0376071,0.253131,0.601374,0.356878,0.67344,0.487597,0.666786,0.600883,0.578472,0.714387,0.276872,0.0152443,0.603843,0.984803,0.0469236,0.0782229,0.463505,0.151874,0.657361,0.44394,0.277884,0.168122,0.556683,0.315678,0.152881,0.8044,0.517618,0.821841,0.132525,0.656578,0.779036,0.716397,0.715042,0.0274069,0.185801,0.990892,0.165219,0.890798,0.259063,0.403914,0.822324,0.742979,0.217577,0.0364347,0.62226,0.876085,0.0291383,0.77182,0.906892,0.308569,0.449475,0.602765,0.228726,0.305125,0.226156,0.919768,0.393805,0.524649,0.554545,0.0170816,0.494716,0.0988154,0.163369,0.691735,0.212788,0.0583754,0.0164167,0.622898,0.393005,0.686862,0.0080291,0.741501,0.431172,0.820886,0.142426,0.485588,0.872214,0.0664684,0.770714,0.53364,0.460967,0.574345,0.717341,0.185621,0.976702,0.544752,0.588412,0.300032,0.990598,0.568664,0.890449,0.975493,0.492022,0.250404,0.31121,0.730172,0.947745,0.634169,0.34319,0.845851,0.208191,0.932356,0.749463,0.10191,0.218186,0.771005,0.59378,0.0505489,0.271329,0.735119,0.160787,0.470946,0.929821,0.75266,0.842575,0.523366,0.0389072,0.507394,0.32602,0.0835063,0.249217,0.696726,0.969734,0.519981,0.250342,0.221261,0.29132,0.382574,0.902895,0.577956,0.00288683,0.246313,0.671139,0.141785,0.135556,0.308579,0.704844,0.863707,0.426014,0.672724,0.283548,0.158955,0.192114,0.0880029,0.490976,0.245388,0.278672,0.795143,0.549335,0.345095,0.475955,0.968582,0.634445,0.826038,0.913164,0.452507,0.845958,0.38776,0.278774,0.951174,0.945022,0.770664,0.226159,0.236447,0.324799,0.446551,0.630622,0.143474,0.784454,0.883937,0.774236,0.403821,0.30228,0.0710213,0.343251,0.312384,0.33141,0.568207,0.535109,0.571177,0.962148,0.637102,0.472232,0.304782,0.721183,0.932385,0.620708,0.387871,0.698444,0.431286,0.0408969,0.321293,0.0639957,0.170205,0.347944,0.527965,0.996791,0.809453,0.33167,0.939026,0.457238,0.0713651,0.171857,0.405453,0.122269,0.510075,0.70458,0.307667,0.725005,0.482892,0.594795,0.236282,0.632017,0.204677,0.585579,0.405795,0.510057,0.18394,0.536064,0.404069,0.979645,0.0994939,0.0273977,0.202928,0.388549,0.248499,0.682061,0.82368,0.358942,0.756173,0.151218,0.816,0.39883,0.0671008,0.054195,0.0365294,0.549892,0.0844471,0.378901,0.195077,0.380094,0.105222,0.948394,0.857607,0.491641,0.87698,0.883509,0.589056,0.408021,0.620569,0.948227,0.362411,0.315259,0.0451514,0.0519584,0.236817,0.579733,0.282104,0.0469581,0.540267,0.841263,0.178057,0.0203636,0.711916,0.132361,0.248349,0.0186355,0.62218,0.0023489,0.348348,0.883984,0.889158,0.431751,0.0115919,0.926198,0.836299,0.0372553,0.386679,0.793233,0.489122,0.928171,0.770433,0.80785,0.892652,0.00838965,0.396477,0.994318,0.986557,0.903554,0.88935,0.945617,0.553777,0.0958361,0.485542,0.513485,0.929664,0.0342051,0.684958,0.943606,0.351297,0.405536,0.624445,0.486125,0.564652,0.071391,0.0104323,0.942565,0.922258,0.907454,0.0637222,0.217672,0.553382,0.37739,0.559328,0.381207,0.798636,0.997618,0.734262,0.67127,0.34682,0.00285804,0.930801,0.810566,0.902217,0.282927,0.236844,0.0955982,0.98167,0.640952,0.737584,0.487119,0.424778,0.2063,0.335008,0.0201423,0.139254,0.530614,0.696778,0.758301,0.452363,0.484363,0.236596,0.956749,0.919886,0.623636,0.853827,0.50984,0.244408,0.715372,0.58472,0.111636,0.851365,0.0896617,0.418223,0.972853,0.13248,0.896725,0.909876,0.329991,0.217297,0.599638,0.688609,0.458394,0.772893,0.473281,0.995155,0.421874,0.903529,0.585347,0.90939,0.314166,0.337483,0.190661,0.209093,0.783158,|0.61767,0.424412,0.950943,0.338891,0.160015,0.300444,0.883574,0.159375,0.744717,0.987677,0.168019,0.895734,0.174853,0.269741,0.0194969,0.755673,0.349197,0.50428,0.433037,0.45339,0.790864,0.758085,0.552144,0.264195,0.533955,0.723425,0.525716,0.488172,0.0903154,0.192346,0.955547,0.305865,0.800228,0.65303,0.00340611,0.902114,0.909855,0.0211508,0.912838,0.187248,0.516313,0.420012,0.884988,0.859226,0.185519,0.738589,0.31354,0.944167,0.0910785,0.276884,0.531803,0.776665,0.775948,0.859569,0.67095,0.896018,0.452076,0.0547375,0.954994,0.327833,0.374441,0.808394,0.646936,0.968738,0.948773,0.295173,0.634696,0.163281,0.370871,0.139468,0.206438,0.0603,0.415841,0.268824,0.381396,0.631034,0.0112212,0.714518,0.00429016,0.695027,0.674654,0.861095,0.407601,0.0563754,0.995787,0.000413597,0.129565,0.0083549,0.862164,0.0608034,0.545021,0.643634,0.31883,0.255108,0.812227,0.176531,0.246377,0.957969,0.0190278,0.37637,0.997066,0.00765568,0.457175,0.51094,0.622248,0.913196,0.553897,0.223325,0.109808,0.150022,0.0063954,0.0993649,0.898085,0.776549,0.676477,0.114918,0.276284,0.784634,0.447542,0.706258,0.342259,0.644699,0.446246,0.590829,0.866587,0.68784,0.966953,0.689822,0.853849,0.582377,0.826431,0.0425279,0.0970156,0.132529,0.687562,0.732548,0.345395,0.230938,0.0900273,0.966045,0.262331,0.913896,0.935067,0.70714,0.822902,0.0762706,0.339747,0.885517,0.483749,0.665727,0.00125283,0.49305,0.868388,0.399116,0.37451,0.730389,0.314123,0.716647,0.363811,0.194859,0.877637,0.466011,0.318213,0.266299,0.513549,0.897922,0.281481,0.54569,0.1329,0.469904,0.466082,0.229756,0.116638,0.241426,0.054597,0.946673,0.0753858,0.705496,0.837456,0.224643,0.28299,0.186699,0.62828,0.479062,0.44622,0.19422,0.247457,0.249207,0.715504,0.940546,0.827764,0.388253,0.349786,0.838905,0.478405,0.0733285,0.717564,0.36647,0.758113,0.573319,0.737091,0.978817,0.144023,0.927339,0.706127,0.417722,0.574277,0.692039,0.0850697,0.836904,0.953341,0.283523,0.319298,0.778919,0.849928,0.600471,0.0436825,0.561112,0.992046,0.437279,0.48796,0.320283,0.810841,0.216502,0.449431,0.568364,0.114889,0.042424,0.991175,0.507261,0.5084,0.0265655,0.634576,0.243154,0.582716,0.641708,0.0810743,0.436333,0.507532,0.277618,0.546007,0.508056,0.0452284,0.397916,0.735167,0.917151,0.0437375,0.174802,0.153668,0.195055,0.934345,0.00470495,0.223959,0.53614,0.152978,0.639488,0.0746377,0.822602,0.166893,0.116171,0.207106,0.0988965,0.43563,0.586686,0.218898,0.342292,0.682812,0.63831,0.980609,0.673265,0.136592,0.196021,0.506076,0.774525,0.812297,0.311227,0.298118,0.914744,0.135092,0.711499,0.92015,0.882314,0.12709,0.0367216,0.179088,0.212164,0.129787,0.55393,0.311776,0.573245,0.957428,0.448563,0.48248,0.351929,0.417023,0.471666,0.430615,0.778332,0.597342,0.760004,0.189227,0.322699,0.611746,0.237325,0.334304,0.594243,0.49921,0.443961,0.833032,0.187924,0.96329,0.16899,0.756824,0.668906,0.615923,0.862638,0.665666,0.588866,0.804843,0.595113,0.494399,0.470285,0.527031,0.970937,0.671215,0.874722,0.560333,0.911069,0.592146,0.250973,0.303405,0.658576,0.911899,0.275289,0.632057,0.622576,0.283437,0.740366,0.0185788,0.0298845,0.260127,0.616489,0.385863,0.221405,0.115762,0.933017,0.610364,0.765883,0.970293,0.636029,0.689097,0.592065,0.683547,0.191713,0.582264,0.635795,0.045711,0.124237,0.538913,0.576862,0.665056,0.047217,0.585201,0.232672,0.852848,0.365589,0.539177,0.691209,0.72698,0.178688,0.993653,0.68497,0.969168,0.988648,0.844141,0.669364,0.654978,0.497425,0.964972,0.579926,0.513529,0.18173,0.505587,0.365389,0.797813,0.758439,0.163935,0.55245,0.3652,0.61753,0.180065,0.31499,0.524554,0.573018,0.615255,0.986719,0.969599,0.289523,0.52335,0.46818,0.881694,0.308384,0.876425,0.74804,0.553854,0.090214,0.936299,0.180299,0.611452,0.841925,0.783267,0.58512,0.579779,0.535056,0.596508,0.716749,0.017417,0.693524,0.929905,0.74117,0.94079,0.352362,0.585462,0.819951,0.373232,0.978574,0.703749,0.695455,0.707235,0.955298,0.726254,0.0705394,0.768352,0.497182,0.81311,0.127666,0.511361,0.414742,0.516701,0.327143,0.0329115,0.360333,0.880686,0.6573,0.610851,0.720445,0.521807,0.581222,0.198102,0.74638,0.318681,0.251922,0.322318,0.361437,0.456293,0.597503,0.584009,0.732579,0.510135,0.116685,0.579237,0.277141,0.817891,0.170758,0.480121,0.585794,0.73539,0.980232,0.0900593,0.156176,0.620307,0.885923,0.102109,0.183833,0.936533,0.851589,0.725799,0.876021,0.860373,0.198339,0.612331,0.0631894,0.951544,0.31048,0.80474,0.320598,0.880391,0.710139,0.526055,0.515535,0.601576,0.632908,0.902297,0.117405,0.977405,0.635124,0.473639,0.0860708,0.446954,0.165699,0.347313,0.268976,0.608318,0.115324,0.00650895,0.90643,0.347053,0.512677,0.444078,0.27643,0.572352,0.878045,0.121345,0.773282,0.199176,0.37709,0.557745,0.685136,0.357096,0.923943,0.38707,0.101621,0.0886358,0.720903,0.622596,0.409341,0.808608,0.6949,0.508785,0.307967,0.265755,0.507832,0.92145,0.347021,0.523987,0.274505,0.010669,0.956974,0.670321,0.827617,0.745113,0.722153,0.40484,0.523631,0.226879,0.550036,0.225365,0.845506,0.91168,0.679265,0.0245783,0.621294,0.434854,0.00902104,0.179586,0.494242,0.999354,0.143508,0.656792,0.804215,0.912845,0.0120262,0.70539,0.572792,0.0213817,0.30063,0.222875,0.460668,0.515545,0.921002,0.0519201,0.461108,0.953751,0.367006,0.512762,0.79622,0.96666,0.0719372,0.89989,0.625893,0.374571,0.00219238,0.897451,0.490111,0.284222,0.00152034,0.926373,0.406912,0.278639,0.889107,0.0157967,0.915964,0.589864,0.207671,0.881621,0.288769,0.912804,0.753639,0.560241,0.802022,0.972377,0.314622,0.784259,0.28459,0.732597,0.65805,0.165641,0.214017,0.0875767,0.668329,0.891071,0.245709,0.949212,0.779396,0.986261,0.582635,0.793124,0.813578,0.70476,0.396129,0.289694,0.494123,0.397962,0.815272,0.50261,0.566604,0.00224155,0.384197,0.386721,0.417628,0.626524,0.20923,0.203098,0.192065,0.290556,0.281347,0.65206,0.323546,0.572425,0.450783,0.640157,0.76173,0.446479,0.854872,0.220318,0.350978,0.0844864,0.600455,0.0746681,0.972412,0.79214,0.813989,0.0506274,0.987688,0.942646,0.69215,0.918948,0.0824583,0.612654,0.540612,0.134774,0.829899,0.510535,0.351474,0.672683,0.0162444,0.120376,0.806733,0.465404,0.162621,0.182682,0.664888,0.461628,0.30217,0.470747,0.726324,0.937551,0.845886,0.373591,0.203428,0.401105,0.11433,0.659747,0.0188253,0.0442081,0.910812,0.236715,0.296861,0.432799,0.500793,0.742671,0.260677,0.935347,0.682587,0.176121,0.577791,0.763744,0.984542,0.230245,0.844656,0.258497,0.876633,0.37127,0.401655,0.606918,0.576995,0.222413,0.700328,0.280392,0.316818,0.413078,0.126628,0.373618,0.0633513,0.602799,0.143662,0.20459,0.482175,0.0751691,0.669154,0.744122,0.548738,0.51284,0.562261,0.472154,0.408831,0.15993,0.976793,0.30717,0.0743977,0.691456,0.989491,0.688555,0.128486,0.641392,0.0871419,0.0709161,0.951024,0.0549806,0.299003,0.288515,0.35852,0.251324,0.910531,0.00608766,0.831897,0.271567,0.889519,0.337217,0.178961,0.0967138,0.479705,0.333771,0.101196,0.611757,0.364755,0.404075,0.97541,0.993827,0.809463,0.743711,0.825358,0.080341,0.84085,0.0718486,0.670817,0.522895,0.876977,0.749625,0.399233,0.553752,0.868299,0.192819,0.642594,0.32851,0.450477,0.574116,0.920902,0.63356,0.790904,0.575286,0.917736,0.917387,0.133397,0.460031,0.459978,0.571574,0.977325,0.333101,0.98668,0.53298,0.811998,0.457681,0.831567,0.298974,0.801617,0.807571,0.745443,0.463955,0.780614,0.87394,0.458553,0.681434,0.76758,0.128995,0.505089,0.418088,0.583152,0.41727,0.353762,0.874394,0.740008,0.730895,0.788727,0.741812,0.22754,0.607564,0.127559,0.382203,0.488288,0.266463,0.246615,0.269397,0.34768,0.862386,0.718859,0.934392,0.938807,0.731202,0.331584,0.268764,0.866518,0.252476,0.72268,0.323562,0.74582,0.901356,0.75277,0.396644,0.796194,0.612554,0.687764,0.174109,0.389906,0.0576106,0.447028,0.870039,0.926434,0.614377,0.634937,0.331266,0.840958,0.368898,0.957446,0.748762,0.330934,0.751774,0.87392,0.839135,0.762858,0.642682,0.923576,0.211107,0.78754,0.277918,0.282316,0.361966,0.838703,0.206302,0.000392556,0.344638,0.918977,0.0657581,0.137065,0.0740892,0.916965,0.469577,0.00851154,0.648097,0.408202,0.188668,0.225947,0.114949,0.985615,0.224764,0.586071,0.104773,0.871468,0.29837,0.501605,0.822388,0.0729031,0.654209,0.645727,0.0217924,0.121937,0.631822,0.241815,0.331108,0.15043,0.94415,0.546863,0.222061,0.0836967,0.451465,0.726004,0.656519,0.779948,0.927912,0.920492,0.623579,0.069319,0.948074,0.336626,0.957963,0.765275,0.91206,0.848642,0.651585,0.861942,0.970789,0.953855,0.803357,0.579756,0.414063,0.867091,0.772313,0.391175,0.305407,0.420485,0.923094,0.399889,0.534383,0.489173,0.226264,0.925335,0.4968,0.712384,0.828256,0.422916,0.14832,0.510661,0.973504,0.701202,0.880867,0.780074,0.514771,0.410588,0.354656,0.290514,0.694219,0.959764,0.518233,0.0100992,0.558972,0.339995,0.625118,0.522311,0.822342,0.168028,0.878472,0.13912,0.95368,0.587854,0.168614,0.504273,0.0519012,0.354391,0.538489,0.319572,0.0224249,0.751036,0.213877,0.447548,0.525537,0.380932,0.0738519,0.582324,0.0676492,0.948238,0.134508,0.213533,0.0657039,0.056859,0.600918,0.534127,0.0701564,0.804964,0.493415,0.892772,0.861311,0.263715,0.988708,0.157415,0.281448,0.0376728,0.355477,0.28788,0.342874,0.470651,|0.750401,0.65722,0.487103,0.100303,0.576591,0.0756272,0.266637,0.36509,0.867343,0.326441,0.179788,0.588471,0.169001,0.116647,0.765922,0.403922,0.089883,0.447021,0.74662,0.247766,0.336724,0.301855,0.814267,0.686077,0.940586,0.923665,0.510238,0.882711,0.352873,0.817162,0.449406,0.775161,0.0135741,0.877133,0.68716,0.612355,0.0177076,0.598789,0.343248,0.815252,0.594391,0.784138,0.803325,0.559928,0.856912,0.560758,0.456502,0.148165,0.364099,0.81375,0.960414,0.332011,0.444282,0.38867,0.720817,0.611417,0.854335,0.500451,0.750294,0.331392,0.435335,0.495139,0.346071,0.696149,0.336469,0.732234,0.0477711,0.671419,0.23767,0.426941,0.221321,0.0193115,0.69127,0.505812,0.875949,0.746805,0.0488613,0.119851,0.410514,0.738702,0.471382,0.736113,0.543363,0.0890468,0.936226,0.485484,0.941273,0.868614,0.913027,0.913441,0.248895,0.228317,0.463614,0.866727,0.831337,0.689255,0.438233,0.158747,0.836261,0.106393,0.664171,0.3381,0.174586,0.859289,0.87543,0.101559,0.249532,0.611324,0.331289,0.176391,0.302002,0.00863177,0.27012,0.878351,0.63033,0.59431,0.119505,0.586216,0.424701,0.194987,0.156878,0.858512,0.562984,0.563567,0.453165,0.873039,0.952086,0.257546,0.151939,0.432371,0.253295,0.112352,0.25679,0.162129,0.788972,0.892231,0.256746,0.457867,0.657479,0.780152,0.362199,0.519171,0.612778,0.96011,0.857303,0.774727,0.197777,0.21474,0.815956,0.236733,0.0866445,0.340221,0.116716,0.898251,0.522782,0.6037,0.829128,0.715886,0.545438,0.910571,0.790834,0.442946,0.451176,0.123051,0.153378,0.14599,0.977029,0.302447,0.718804,0.746403,0.192175,0.940265,0.180825,0.71898,0.123226,0.0927802,0.785495,0.222401,0.00319427,0.525689,0.31255,0.476503,0.872534,0.203971,0.978457,0.319556,0.494353,0.666133,0.43921,0.207836,0.657205,0.0279192,0.0817759,0.343262,0.74027,0.823907,0.418127,0.00470114,0.467962,0.655629,0.979267,0.538656,0.529218,0.681125,0.0984659,0.540743,0.38063,0.829087,0.982927,0.510184,0.469179,0.748335,0.202479,0.594622,0.0629839,0.059053,0.482503,0.422969,0.861251,0.982179,0.849818,0.354084,0.628007,0.80523,0.455077,0.656155,0.360271,0.126082,0.972732,0.937332,0.786922,0.873458,0.799028,0.438458,0.694289,0.643368,0.956981,0.231572,0.261877,0.432309,0.21377,0.779228,0.398903,0.373631,0.466641,0.866122,0.904467,0.890099,0.936908,0.397156,0.167357,0.815428,0.314001,0.509193,0.7733,0.0395148,0.475879,0.271917,0.1652,0.00487101,0.80665,0.417966,0.160711,0.208657,0.0262201,0.39908,0.943714,0.908686,0.121985,0.56282,0.011169,0.125186,0.595552,0.557644,0.35531,0.355385,0.946752,0.83395,0.499582,0.944521,0.804972,0.783781,0.486282,0.259666,0.172726,0.731562,0.549668,0.0212659,0.261103,0.887669,0.606994,0.267773,0.245432,0.367373,0.73468,0.185102,0.310956,0.805161,0.827213,0.389178,0.563841,0.381792,0.135629,0.317832,0.901814,0.900035,0.38688,0.830571,0.915311,0.971313,0.710284,0.276744,0.322301,0.485053,0.352735,0.875245,0.39919,0.656759,0.0612881,0.887441,0.879136,0.813438,0.143644,0.272149,0.310274,0.222419,0.612625,0.652555,0.340986,0.0588509,0.407882,0.13356,0.673863,0.945647,0.830251,0.651866,0.422213,0.693057,0.895263,0.568239,0.0917524,0.0126095,0.649388,0.406216,0.366295,0.358334,0.559957,0.332951,0.265832,0.218807,0.220586,0.540966,0.791122,0.737777,0.211091,0.848326,0.562787,0.218651,0.246351,0.553196,0.638989,0.050465,0.535334,0.134869,0.916804,0.0397425,0.945573,0.332615,0.201183,0.645239,0.23362,0.0460308,0.884558,0.321541,0.655329,0.777917,0.627423,0.443125,0.28674,0.567787,0.547323,0.96122,0.71028,0.446065,0.930684,0.364917,0.427337,0.692476,0.726867,0.2251,0.0112691,0.193012,0.18892,0.555047,0.645852,0.93156,0.622452,0.315324,0.885513,0.40117,0.581211,0.688212,0.403794,0.0951347,0.580595,0.375524,0.861886,0.627255,0.773504,0.117617,0.382085,0.12999,0.975304,0.967483,0.513326,0.211819,0.189445,0.515525,0.153277,0.413976,0.953495,0.926531,0.946417,0.973962,0.298862,0.498106,0.345336,0.715736,0.493149,0.581091,0.604703,0.596291,0.143518,0.0893109,0.917153,0.456492,0.525675,0.898543,0.811987,0.0656855,0.149801,0.853762,0.531439,0.779304,0.603463,0.916586,0.97902,0.384233,0.117527,0.204539,0.56031,0.105867,0.23837,0.505526,0.510847,0.319047,0.221803,0.646564,0.290181,0.527832,0.348492,0.295604,0.831646,0.571953,0.0645491,0.0199169,0.159711,0.68704,0.0328726,0.11735,0.0756593,0.874079,0.455194,0.443329,0.040554,0.0192605,0.456865,0.312514,0.614242,0.930714,0.764282,0.192851,0.604497,0.749941,0.27586,0.184028,0.53552,0.662228,0.54985,0.858584,0.534457,0.638739,0.385669,0.0368258,0.618512,0.443195,0.010417,0.246756,0.995563,0.216762,0.736322,0.126635,0.0348296,0.917956,0.806456,0.149373,0.250263,0.44732,0.748468,0.0170142,0.0803748,0.388795,0.876108,0.765807,0.118903,0.721683,0.998236,0.259719,0.404798,0.218414,0.400414,0.112595,0.175619,0.667752,0.676789,0.932566,0.814235,0.423995,0.402177,0.639287,0.302633,0.351312,0.382332,0.569922,0.365136,0.13077,0.150491,0.178152,0.000227809,0.457122,0.950469,0.52012,0.110392,0.703518,0.616016,0.436949,0.21001,0.32103,0.425061,0.188983,0.514422,0.869654,0.348633,0.00875312,0.690174,0.73747,0.526283,0.0148853,0.308394,0.855995,0.874728,0.109168,0.114432,0.136901,0.15603,0.626186,0.291031,0.742513,0.742708,0.470209,0.0458916,0.473543,0.358173,0.923212,0.0355366,0.0751584,0.134292,0.0763144,0.904346,0.741136,0.237164,0.614443,0.671352,0.984064,0.194607,0.436259,0.657693,0.581022,0.899187,0.85321,0.119206,0.944162,0.979436,0.243117,0.571163,0.861636,0.229204,0.543193,0.312645,0.700767,0.3856,0.343653,0.639883,0.540231,0.00555229,0.239953,0.44696,0.85797,0.0951313,0.695385,0.677649,0.197378,0.179586,0.118476,0.299154,0.685937,0.861362,0.942726,0.0609796,0.957643,0.480721,0.624287,0.0506669,0.812345,0.955992,0.634138,0.484825,0.394334,0.345358,0.247341,0.0254421,0.246442,0.743864,0.366333,0.82177,0.184714,0.0185252,0.855981,0.433343,0.101875,0.923474,0.424402,0.547535,0.878929,0.171756,0.952892,0.184237,0.787533,0.402701,0.419101,0.572571,0.333079,0.182325,0.169938,0.0864486,0.208518,0.0148225,0.87989,0.897093,0.869577,0.544603,0.582196,0.989051,0.522327,0.0369309,0.880891,0.10475,0.618014,0.0039472,0.810419,0.266498,0.546344,0.163411,0.0741812,0.00350642,0.308952,0.0321631,0.599675,0.338183,0.25482,0.216541,0.694684,0.606539,0.658033,0.0846196,0.166127,0.313046,0.080768,0.863306,0.482592,0.86182,0.50619,0.563036,0.573932,0.187296,0.773728,0.428148,0.969794,0.440708,0.397783,0.523942,0.199361,0.545312,0.829862,0.043593,0.800927,0.704248,0.874548,0.3492,0.128203,0.472238,0.0545716,0.607291,0.907472,0.170179,0.616685,0.510619,0.657471,0.517436,0.834966,0.899154,0.603149,0.946293,0.0766364,0.410961,0.822559,0.505344,0.96516,0.00318336,0.745012,0.275833,0.397864,0.399134,0.0127791,0.439097,0.885252,0.0652466,0.306452,0.364051,0.317815,0.0471307,0.7086,0.129294,0.577893,0.453236,0.479764,0.336329,0.41357,0.557807,0.328977,0.836091,0.34143,0.70562,0.874069,0.293856,0.280134,0.414528,0.300007,0.0783434,0.370266,0.608044,0.32052,0.0677026,0.648226,0.557894,0.187103,0.530527,0.407027,0.817156,0.105432,0.998356,0.879578,0.422763,0.66313,0.941033,0.175018,0.587305,0.259362,0.71994,0.192205,0.197695,0.339399,0.750802,0.635063,0.986369,0.40015,0.295752,0.390089,0.346267,0.550014,0.0874009,0.337518,0.687404,0.358139,0.422387,0.497157,0.562409,0.76777,0.383954,0.480767,0.843046,0.747288,0.707032,0.455447,0.519331,0.471057,0.324508,0.479443,0.696543,0.632356,0.255892,0.896997,0.331053,0.393783,0.410162,0.283779,0.288852,0.0594366,0.591779,0.650508,0.933044,0.0230296,0.765172,0.216827,0.208435,0.00259215,0.525239,0.394737,0.782647,0.249788,0.528688,0.179314,0.604199,0.80867,0.699578,0.285066,0.0931782,0.640922,0.426823,0.337001,0.679685,0.134985,0.449107,0.801533,0.669192,0.917765,0.870362,0.13412,0.851626,0.45453,0.839534,0.741002,0.65926,0.73547,0.927282,0.0889719,0.108701,0.540406,0.29749,0.343029,0.320823,0.0391299,0.735259,0.789611,0.546061,0.76541,0.22312,0.0984403,0.700666,0.170982,0.736246,0.984413,0.691218,0.179479,0.21299,0.80747,0.54024,0.826695,0.127361,0.852642,0.689621,0.162751,0.517082,0.805168,0.0654703,0.659249,0.252817,0.526089,0.673749,0.306001,0.499791,0.523136,0.800705,0.661005,0.931287,0.423298,0.520965,0.387266,0.427755,0.950053,0.0584661,0.132727,0.260859,0.13551,0.342445,0.435529,0.973715,0.720932,0.956836,0.9201,0.452618,0.11594,0.814339,0.0770534,0.506748,0.0667651,0.383281,0.353063,0.236146,0.497124,0.308472,0.694767,0.811043,0.15966,0.941861,0.43186,0.113557,0.206432,0.0509185,0.447429,0.714735,0.746074,0.757471,0.649547,0.0610277,0.898326,0.473277,0.66618,0.269455,0.238103,0.691773,0.896439,0.15305,0.723565,0.781737,0.407454,0.939124,0.478606,0.384624,0.855499,0.118736,0.97081,0.543238,0.160578,0.614558,0.623353,0.724832,0.575134,0.640864,0.192453,0.483294,0.440185,0.58594,0.330691,0.0788239,0.244342,0.704232,0.568447,0.965847,0.733546,0.625131,0.150579,0.0647865,0.0576363,0.913707,0.00834346,0.180591,0.312995,0.592026,0.759366,0.520781,0.395997,0.496246,0.791326,0.773401,0.894604,0.870466,0.905001,0.258812,0.910465,0.913005,0.218727,0.751621,0.297748,0.329367,0.610663,0.246301,0.305113,0.876171,0.321105,|0.698149,0.626337,0.850412,0.312811,0.332783,0.766669,0.826038,0.309207,0.869468,0.363757,0.668375,0.00402749,0.686445,0.259577,0.0112612,0.338208,0.0608815,0.878793,0.501219,0.487981,0.90172,0.832638,0.0868375,0.627604,0.162937,0.625081,0.537554,0.696276,0.579105,0.719353,0.929683,0.88714,0.537201,0.56399,0.843471,0.12058,0.366573,0.459295,0.0232038,0.789129,0.784724,0.536007,0.669077,0.579396,0.354436,0.972864,0.591712,0.586976,0.0185535,0.37924,0.51185,0.364673,0.538517,0.573429,0.564958,0.62064,0.00381833,0.598369,0.903259,0.419629,0.0451331,0.761164,0.00694776,0.233746,0.786396,0.57785,0.555344,0.355332,0.118659,0.46975,0.0686014,0.000461042,0.823863,0.730314,0.870187,0.891931,0.550162,0.139802,0.79928,0.559826,0.412162,0.589594,0.339566,0.714659,0.240758,0.44499,0.0425417,0.28534,0.842313,0.0537292,0.0332513,0.585206,0.95561,0.890232,0.903225,0.828661,0.978247,0.424548,0.0841038,0.0999869,0.666853,0.31374,0.852955,0.0661998,0.268958,0.128022,0.102895,0.941799,0.641696,0.633615,0.0584976,0.380205,0.445988,0.711522,0.201808,0.489537,0.374728,0.555886,0.667713,0.957669,0.326101,0.65775,0.40221,0.929157,0.467425,0.381336,0.311492,0.285519,0.0434196,0.481277,0.929579,0.252078,0.468488,0.72682,0.100792,0.617669,0.037796,0.146391,0.17723,0.850784,0.542526,0.0803983,0.20761,0.374907,0.145537,0.0308883,0.397036,0.106111,0.399977,0.558015,0.078536,0.268162,0.151877,0.999368,0.551688,0.2578,0.0519762,0.827712,0.66436,0.676231,0.82632,0.102892,0.117212,0.795595,0.635063,0.457798,0.203743,0.821984,0.0456979,0.449694,0.731903,0.389172,0.467758,0.243317,0.379073,0.773472,0.44055,0.468035,0.962841,0.979183,0.808382,0.593205,0.778116,0.193673,0.0182559,0.69174,0.911297,0.435722,0.62786,0.121985,0.507297,0.788819,0.788777,0.458331,0.295938,0.432682,0.463017,0.369101,0.32024,0.653899,0.0323386,0.0613598,0.499096,0.332637,0.360427,0.31296,0.468812,0.576199,0.521459,0.157195,0.810631,0.900355,0.531973,0.191798,0.378455,0.12184,0.361125,0.284757,0.491839,0.413868,0.150097,0.870189,0.280213,0.222156,0.981344,0.974453,0.549853,0.566353,0.126173,0.922423,0.274887,0.847345,0.474802,0.511309,0.388736,0.219421,0.989203,0.937527,0.731615,0.141792,0.623788,0.161131,0.982947,0.909522,0.434434,0.690204,0.532487,0.427781,0.429872,0.891876,0.622327,0.294504,0.207588,0.41534,0.118945,0.73728,0.931927,0.878677,0.313328,0.755171,0.042172,0.0109499,0.399653,0.753527,0.0722812,0.420307,0.884309,0.148498,0.950899,0.590696,0.143929,0.437685,0.189297,0.580885,0.220471,0.55564,0.20283,0.301862,0.708895,0.0091635,0.281604,0.0176345,0.984876,0.656376,0.697684,0.545983,0.945869,0.592768,0.378776,0.934863,0.563533,0.887566,0.710529,0.83846,0.0816527,0.217779,0.574239,0.249607,0.466175,0.898918,0.539581,0.989073,0.807705,0.00665569,0.448224,0.110919,0.659038,0.911084,0.420908,0.420592,0.809568,0.306817,0.122512,0.637616,0.0761327,0.00941736,0.170253,0.732787,0.456077,0.641343,0.544785,0.798406,0.964028,0.408187,0.509303,0.208343,0.803831,0.415309,0.0696731,0.171894,0.884026,0.666221,0.753496,0.779693,0.0433212,0.882649,0.621808,0.31762,0.317085,0.958304,0.337801,0.383055,0.164316,0.920883,0.538505,0.392078,0.0381898,0.236307,0.0239373,0.829227,0.435951,0.808588,0.812862,0.0554823,0.0212231,0.0292525,0.552504,0.225768,0.603817,0.793398,0.710256,0.157096,0.0849043,0.284509,0.630264,0.335047,0.509194,0.130567,0.1132,0.189608,0.369785,0.398715,0.19761,0.127475,0.752285,0.913249,0.856308,0.428319,0.0140464,0.051168,0.774817,0.63379,0.276976,0.196764,0.23741,0.874596,0.939111,0.597953,0.12798,0.269235,0.407426,0.240213,0.850469,0.54021,0.118797,0.10397,0.0413015,0.188987,0.308661,0.978295,0.319907,0.758611,0.307235,0.1003,0.669082,0.837097,0.826243,0.291511,0.380039,0.279773,0.579906,0.864728,0.867884,0.0745987,0.182644,0.392856,0.000585675,0.429662,0.312126,0.779308,0.716978,0.183105,0.473377,0.946879,0.802812,0.0642401,0.0383011,0.175852,0.276468,0.962525,0.48086,0.839701,0.140001,0.821691,0.0249918,0.916403,0.116767,0.673835,0.260742,0.792536,0.511253,0.452811,0.670586,0.349617,0.519306,0.355195,0.194279,0.99225,0.236117,0.95906,0.788879,0.800674,0.338508,0.036711,0.972983,0.461018,0.572441,0.1222,0.436913,0.0564582,0.314732,0.840945,0.479192,0.901131,0.411245,0.805737,0.539859,0.295822,0.292569,0.383055,0.501203,0.80766,0.462528,0.746557,0.135557,0.909246,0.493175,0.00596005,0.983164,0.920206,0.680685,0.727945,0.837987,0.407088,0.889287,0.914664,0.0328225,0.545625,0.0853588,0.0952404,0.257893,0.619338,0.781719,0.946952,0.11614,0.672672,0.0220199,0.771851,0.65193,0.582058,0.622237,0.867371,0.256123,0.538512,0.450455,0.536035,0.790354,0.606948,0.669251,0.858797,0.51129,0.857247,0.357762,0.233573,0.676408,0.974575,0.548753,0.256708,0.988589,0.99753,0.673975,0.818976,0.10494,0.374257,0.752781,0.393822,0.967027,0.626817,0.876469,0.442759,0.785744,0.65278,0.0107398,0.0203761,0.742528,0.968337,0.150425,0.578011,0.65292,0.19476,0.741873,0.126238,0.525624,0.910815,0.569363,0.838979,0.474575,0.414466,0.894822,0.493705,0.179344,0.387747,0.192162,0.243928,0.460493,0.947282,0.0599445,0.363968,0.796444,0.126865,0.64906,0.562004,0.599499,0.844237,0.655094,0.285179,0.632357,0.879605,0.490631,0.957013,0.178596,0.78505,0.117914,0.164308,0.270404,0.678095,0.936661,0.188109,0.472681,0.940209,0.67324,0.0149523,0.419484,0.878176,0.778705,0.858695,0.333404,0.90842,0.1288,0.115513,0.525766,0.944113,0.325741,0.266569,0.00778186,0.572083,0.551134,0.852064,0.924497,0.630368,0.717028,0.761278,0.290309,0.820477,0.627468,0.95474,0.611005,0.43268,0.761718,0.294405,0.604821,0.321286,0.0558295,0.863522,0.895707,0.922047,0.374309,0.366351,0.244825,0.842264,0.288654,0.970709,0.78034,0.00793117,0.166841,0.199476,0.854621,0.262583,0.864473,0.89989,0.659574,0.576139,0.476816,0.0856251,0.976731,0.462903,0.441077,0.354934,0.826341,0.770857,0.902808,0.551851,0.609141,0.155762,0.630196,0.642484,0.0545304,0.943703,0.750364,0.233292,0.778271,0.668843,0.0184547,0.606442,0.340179,0.491344,0.181292,0.841736,0.876421,0.824791,0.676899,0.394042,0.215104,0.128983,0.502966,0.164586,0.0225264,0.301285,0.969583,0.298072,0.730499,0.323409,0.968519,0.453914,0.15074,0.7192,0.938261,0.371194,0.27657,0.245091,0.800812,0.58021,0.387905,0.433202,0.56775,0.51306,0.554528,0.817814,0.00244004,0.628748,0.194308,0.215308,0.353735,0.10536,0.606314,0.63479,0.376446,0.172432,0.979204,0.621847,0.67495,0.0959822,0.35153,0.0686087,0.0389417,0.00484949,0.694544,0.661317,0.854238,0.216446,0.2676,0.767905,0.722558,0.369825,0.507945,0.549779,0.966253,0.358563,0.156185,0.627606,0.534631,0.0222566,0.61192,0.637358,0.0838255,0.557707,0.689174,0.533414,0.525439,0.42289,0.601272,0.198587,0.863939,0.10005,0.853555,0.784259,0.92099,0.414745,0.148001,0.983293,0.834718,0.640432,0.0136552,0.927929,0.965672,0.822715,0.0593689,0.634304,0.274153,0.85052,0.327995,0.0415385,0.279885,0.409338,0.96855,0.580995,0.599886,0.615643,0.80015,0.0297504,0.076365,0.542887,0.160986,0.924207,0.713837,0.0572388,0.648353,0.361185,0.971955,0.321466,0.137819,0.389259,0.823988,0.395302,0.365627,0.659658,0.590813,0.735629,0.901613,0.674599,0.619472,0.510902,0.186479,0.867978,0.576262,0.103634,0.791741,0.393263,0.890772,0.373855,0.615785,0.41944,0.250369,0.449591,0.0755259,0.512905,0.907735,0.486737,0.53206,0.22684,0.71522,0.0587531,0.351434,0.517217,0.311279,0.0122538,0.288488,0.547814,0.301533,0.639723,0.580542,0.704673,0.964201,0.600125,0.328861,0.311784,0.894217,0.782733,0.372368,0.549413,0.53049,0.474355,0.178395,0.293397,0.931502,0.244172,0.186002,0.973395,0.375453,0.919837,0.875291,0.25661,0.254892,0.644278,0.14931,0.308098,0.338358,0.427218,0.26132,0.446691,0.826582,0.345049,0.752656,0.977079,0.0235496,0.402789,0.0157154,0.683645,0.935023,0.134084,0.791735,0.522525,0.655994,0.115516,0.690702,0.125731,0.124898,0.358055,0.924927,0.403913,0.881708,0.925686,0.693667,0.583139,0.215781,0.445659,0.98412,0.541881,0.977669,0.475579,0.470622,0.0160015,0.44966,0.562577,0.625404,0.0174978,0.94673,0.735168,0.430483,0.957626,0.518075,0.620376,0.649497,0.850195,0.209515,0.763456,0.436356,0.900543,0.957569,0.189094,0.632343,0.383211,0.4484,0.353932,0.414404,0.7409,0.358706,0.44319,0.61968,0.387905,0.275209,0.405626,0.835487,0.706604,0.386661,0.748472,0.275207,0.53037,0.697486,0.803003,0.531446,0.953946,0.576969,0.460746,0.223108,0.318114,0.379314,0.623739,0.104259,0.136263,0.326998,0.139773,0.0394691,0.140701,0.569829,0.170654,0.198946,0.141188,0.121083,0.671105,0.980984,0.696009,0.05256,0.676427,0.72016,0.925309,0.891764,0.400052,0.477733,0.739925,0.339854,0.216944,0.147032,0.861675,0.491681,0.151901,0.347447,0.858669,0.865217,0.436396,0.746668,0.304799,0.245673,0.231987,0.483447,0.85181,0.36547,0.0389087,0.0654082,0.0607657,0.109929,0.888999,0.164019,0.563375,0.687388,0.856345,0.0722719,0.618012,0.584169,0.626736,0.685036,0.745117,0.411899,0.57992,0.785313,0.22608,0.469572,0.0477536,0.768677,0.830349,0.778033,0.652272,0.455375,0.455502,0.860318,0.472536,0.749308,0.180713,0.0298004,0.0623925,0.634943,0.664489,0.213349,0.430087,0.233663,0.187937,0.826076,0.358178,0.735329,0.73139,|0.523728,0.577151,0.160242,0.447755,0.84657,0.775553,0.880283,0.668001,0.458215,0.507501,0.80943,0.714204,0.968627,0.648857,0.534786,0.433126,0.227495,0.87881,0.416435,0.941851,0.0231452,0.529828,0.880187,0.0605153,0.502707,0.877678,0.00498539,0.0491583,0.963421,0.218491,0.78923,0.098479,0.333707,0.251871,0.824311,0.080888,0.238709,0.0762531,0.535333,0.150792,0.421996,0.166053,0.453432,0.555514,0.817353,0.567621,0.554462,0.20664,0.540328,0.651726,0.63655,0.489455,0.453678,0.262836,0.130478,0.514919,0.408367,0.338894,0.954262,0.613662,0.108896,0.0103444,0.0310345,0.566582,0.601361,0.844704,0.085157,0.964718,0.599476,0.713426,0.743289,0.652701,0.932552,0.424103,0.156057,0.0376489,0.023208,0.239408,0.594059,0.489116,0.0901552,0.595671,0.531692,0.250138,0.258474,0.754678,0.421007,0.553614,0.300111,0.657155,0.510123,0.623804,0.523663,0.520905,0.516675,0.50834,0.508865,0.141432,0.272611,0.331046,0.77785,0.654268,0.718265,0.430848,0.621198,0.900402,0.881843,0.133391,0.239572,0.308028,0.157817,0.284829,0.0305441,0.83469,0.426762,0.93859,0.827676,0.762024,0.357274,0.200001,0.0153782,0.231374,0.33995,0.470539,0.86564,0.762923,0.708713,0.953114,0.584751,0.29519,0.998574,0.254712,0.465191,0.947669,0.0354458,0.867005,0.290384,0.00297719,0.831095,0.62131,0.831447,0.537685,0.558906,0.608863,0.27031,0.0378472,0.253947,0.846933,0.637475,0.0919625,0.0255926,0.289513,0.176298,0.101986,0.298437,0.439238,0.657353,0.920842,0.445552,0.916277,0.106494,0.663027,0.32273,0.446849,0.480519,0.914483,0.679093,0.683195,0.373735,0.569858,0.422976,0.925989,0.422737,0.94356,0.817113,0.871679,0.992947,0.789436,0.447192,0.819344,0.302563,0.127268,0.939857,0.590048,0.905185,0.141152,0.168655,0.882612,0.855111,0.128593,0.246089,0.960295,0.835756,0.48062,0.956179,0.553992,0.390324,0.522483,0.436199,0.313683,0.816071,0.274949,0.327935,0.0288613,0.201199,0.229329,0.698971,0.284529,0.437229,0.376766,0.874045,0.47953,0.0764035,0.11403,0.340966,0.79674,0.915212,0.234325,0.0966213,0.582849,0.485158,0.688558,0.851773,0.150472,0.936802,0.97787,0.998352,0.182627,0.769406,0.210459,0.293911,0.366335,0.663674,0.274691,0.743636,0.768454,0.523265,0.705871,0.763424,0.564324,0.312571,0.792267,0.0124502,0.644863,0.617878,0.953621,0.408569,0.0794286,0.77908,0.717858,0.19766,0.480737,0.890651,0.554451,0.868602,0.815153,0.59576,0.539281,0.955619,0.930563,0.239144,0.67733,0.475036,0.27293,0.553511,0.58938,0.498137,0.0744733,0.790379,0.699421,0.0517923,0.558987,0.488462,0.596302,0.573628,0.967842,0.0636547,0.272118,0.593995,0.667603,0.220076,0.111936,0.663607,0.80227,0.70446,0.274963,0.36904,0.610194,0.706035,0.321672,0.366046,0.258876,0.633911,0.924108,0.574716,0.450726,0.790779,0.453907,0.619345,0.359324,0.801381,0.19139,0.12704,0.538328,0.525541,0.406637,0.357008,0.114177,0.669456,0.567313,0.0041253,0.937324,0.991009,0.125441,0.821812,0.501448,0.122532,0.088104,0.290088,0.461375,0.0432404,0.403567,0.905908,0.210548,0.330382,0.244888,0.476691,0.437408,0.916403,0.00881696,0.107238,0.399017,0.0126794,0.387119,0.740629,0.268486,0.791403,0.310069,0.347692,0.106045,0.395539,0.00498241,0.913258,0.86163,0.0727512,0.402294,0.887418,0.109138,0.693606,0.68679,0.861685,0.402603,0.595316,0.850085,0.390042,0.801879,0.91174,0.315423,0.200785,0.129435,0.650683,0.75902,0.183495,0.086403,0.337818,0.419033,0.0520911,0.495892,0.897625,0.893484,0.275339,0.832904,0.766237,0.535827,0.472376,0.359661,0.248953,0.766984,0.510679,0.417037,0.0111719,0.678691,0.26574,0.884793,0.135147,0.648949,0.186423,0.388779,0.666886,0.742361,0.262744,0.0383179,0.412111,0.0841057,0.189571,0.149776,0.669522,0.167823,0.346762,0.273538,0.309191,0.149438,0.258828,0.538291,0.586888,0.7404,0.889815,0.788955,0.511319,0.386503,0.647058,0.768112,0.402502,0.121642,0.509393,0.88558,0.295339,0.300992,0.460926,0.655227,0.145764,0.127118,0.63239,0.513216,0.0305999,0.84702,0.715927,0.330489,0.959968,0.122183,0.663221,0.806234,0.420027,0.287551,0.413717,0.0305369,0.63383,0.0824768,0.10789,0.960154,0.498807,0.74299,0.809253,0.117776,0.22521,0.42441,0.9893,0.272897,0.374816,0.857741,0.797323,0.909718,0.805048,0.782298,0.122354,0.287585,0.431843,0.94563,0.955451,0.342775,0.3578,0.51812,0.0666199,0.107679,0.100953,0.209859,0.261117,0.00387591,0.825145,0.390775,0.252622,0.640433,0.957411,0.387011,0.611802,0.477318,0.700883,0.918999,0.423428,0.709042,0.805613,0.15866,0.653932,0.890143,0.446726,0.272264,0.274933,0.958864,0.0526478,0.378638,0.729663,0.32995,0.589884,0.633221,0.796383,0.525553,0.878878,0.331447,0.807485,0.692312,0.900711,0.435171,0.475029,0.986607,0.163735,0.600014,0.816914,0.948854,0.93208,0.151025,0.570221,0.465527,0.582737,0.962065,0.620325,0.904121,0.773856,0.662352,0.551299,0.386019,0.815406,0.435365,0.373607,0.6893,0.673254,0.763592,0.480396,0.753573,0.642937,0.216478,0.699206,0.777396,0.913026,0.344436,0.0839049,0.842674,0.43264,0.753968,0.0581104,0.038694,0.558591,0.0617749,0.228827,0.0612432,0.456042,0.978838,0.93334,0.3103,0.599256,0.452871,0.681141,0.91307,0.862205,0.0203448,0.388342,0.937643,0.827501,0.7805,0.408382,0.414577,0.819626,0.286696,0.912833,0.908835,0.257777,0.279894,0.923039,0.552811,0.999304,0.31306,0.392907,0.0774915,0.77592,0.660055,0.434313,0.330737,0.831228,0.0684834,0.00201631,0.147885,0.0809671,0.210831,0.185744,0.0312722,0.792302,0.0857041,0.845903,0.322967,0.308473,0.354675,0.327136,0.469653,0.995443,0.195072,0.539464,0.511724,0.671596,0.381055,0.31664,0.471759,0.981314,0.150527,0.709613,0.752202,0.912435,0.236223,0.268912,0.941218,0.114295,0.791651,0.923097,0.054222,0.140216,0.0276231,0.119331,0.731137,0.656397,0.328293,0.183851,0.78495,0.355594,0.117958,0.815077,0.159629,0.919407,0.141746,0.671099,0.49707,0.176091,0.794953,0.2546,0.552875,0.898429,0.872155,0.299217,0.72825,0.364384,0.841631,0.274148,0.987363,0.13568,0.441289,0.66008,0.645453,0.442578,0.609722,0.325136,0.698417,0.0488669,0.0257072,0.373293,0.282414,0.748055,0.508391,0.947063,0.557333,0.742033,0.835028,0.44102,0.177074,0.277679,0.359719,0.788349,0.592738,0.657523,0.00122112,0.254385,0.159851,0.457568,0.344631,0.943803,0.695552,0.267646,0.337914,0.536174,0.124647,0.536864,0.728065,0.937542,0.319668,0.587888,0.832205,0.650013,0.561858,0.37383,0.855929,0.727858,0.902414,0.81794,0.299004,0.511382,0.0775276,0.167495,0.632644,0.299498,0.381505,0.136113,0.836673,0.571911,0.185514,0.0544552,0.00552982,0.733644,0.057817,0.450977,0.740464,0.483173,0.970421,0.0650076,0.708607,0.661166,0.266168,0.658609,0.0858968,0.174847,0.383828,0.774682,0.0231787,0.39731,0.786981,0.272366,0.662395,0.730342,0.757235,0.167309,0.907307,0.180763,0.784823,0.234388,0.380501,0.303345,0.848383,0.346356,0.588735,0.363418,0.881694,0.674074,0.902441,0.392419,0.14645,0.64306,0.668003,0.45422,0.529541,0.794142,0.706337,0.151638,0.985036,0.659776,0.796614,0.0601352,0.772088,0.157066,0.181857,0.221092,0.751243,0.341941,0.880605,0.780132,0.146955,0.685719,0.190048,0.866891,0.950917,0.349928,0.342808,0.891319,0.076961,0.455423,0.803753,0.745296,0.00245667,0.803075,0.720471,0.810202,0.344246,0.770145,0.500471,0.983638,0.547808,0.275526,0.904776,0.606567,0.931838,0.79367,0.011821,0.474972,0.728003,0.904525,0.575956,0.266055,0.526509,0.86293,0.23029,0.535435,0.66916,0.379335,0.0801635,0.993792,0.634433,0.814397,0.947491,0.493711,0.769464,0.380167,0.251127,0.87506,0.113253,0.185813,0.279701,0.573357,0.808218,0.835935,0.283916,0.622644,0.637562,0.124842,0.576486,0.515597,0.164059,0.585076,0.401751,0.802049,0.831947,0.275278,0.0564982,0.951554,0.526865,0.925798,0.413196,0.241845,0.0771524,0.34291,0.655177,0.653702,0.757648,0.85354,0.577442,0.42208,0.737873,0.628833,0.313349,0.196648,0.499766,0.21053,0.356808,0.750341,0.731422,0.123209,0.20844,0.888679,0.965484,0.394897,0.0550823,0.607954,0.215483,0.675855,0.970217,0.153058,0.413757,0.83992,0.00673592,0.887656,0.0246504,0.9966,0.298415,0.183431,0.0992382,0.288252,0.352468,0.20266,0.19329,0.663245,0.395372,0.993765,0.626132,0.0231954,0.638594,0.277279,0.0243396,0.938016,0.442261,0.794305,0.332265,0.843111,0.991416,0.85287,0.190045,0.512236,0.496227,0.923257,0.631676,0.398804,0.389202,0.916367,0.764682,0.11144,0.152065,0.0685869,0.844414,0.00556862,0.219817,0.156824,0.0743818,0.869474,0.66699,0.778147,0.104184,0.138775,0.828541,0.471391,0.110444,0.655212,0.523968,0.0650077,0.122632,0.240188,0.854689,0.642558,0.00703162,0.889736,0.329284,0.274627,0.576343,0.207443,0.197426,0.225952,0.295544,0.251534,0.544481,0.0011549,0.697204,0.830135,0.947516,0.119812,0.170539,0.36344,0.244849,0.185816,0.767095,0.884934,0.22342,0.0786169,0.288157,0.681892,0.959508,0.991756,0.162523,0.671176,0.539394,0.3313,0.334236,0.291362,0.493787,0.105072,0.562995,0.443298,0.345824,0.137817,0.237165,0.757861,0.295348,0.764881,0.815733,0.516046,0.772637,0.362806,0.92317,0.259718,0.3873,0.539964,0.909234,0.0952107,0.00749272,0.759154,0.853705,0.235289,0.781699,0.475634,0.230704,0.542608,0.467287,0.613198,0.958733,0.555183,0.562483,0.706712,0.896904,0.96096,0.429665,0.92732,0.687591,0.0800211,0.452433,0.853554,0.635414,0.879299,0.560612,0.280454,0.883288,|0.2348,0.0146407,0.0130344,0.604057,0.411811,0.142538,0.256892,0.854819,0.562737,0.65922,0.320241,0.746339,0.630434,0.712814,0.867291,0.769878,0.838227,0.949565,0.687265,0.837928,0.161158,0.302171,0.298182,0.444636,0.150981,0.726977,0.0063107,0.727912,0.373989,0.585968,0.144382,0.743201,0.821599,0.81559,0.192907,0.754249,0.244176,0.197495,0.444327,0.618659,0.891249,0.20875,0.607252,0.32332,0.764345,0.382892,0.465214,0.520429,0.984933,0.21808,0.755007,0.394581,0.0950813,0.576538,0.572554,0.892167,0.199607,0.0264279,0.802361,0.152975,0.078245,0.505905,0.812446,0.0416665,0.922575,0.882584,0.159418,0.695493,0.554259,0.716756,0.22379,0.598368,0.226578,0.202367,0.562286,0.248633,0.87236,0.0286897,0.327224,0.413554,0.93618,0.317304,0.911158,0.548413,0.382868,0.281895,0.0649792,0.00237405,0.778543,0.538902,0.0886338,0.324217,0.108913,0.684395,0.463596,0.281079,0.812621,0.846228,0.855598,0.442575,0.935355,0.264317,0.469107,0.571096,0.67259,0.525345,0.741036,0.396263,0.307489,0.140852,0.930401,0.109762,0.140351,0.579929,0.408764,0.235734,0.135338,0.193292,0.332184,0.428791,0.723278,0.563023,0.294903,0.989591,0.838175,0.869899,0.586449,0.373965,0.586479,0.128584,0.950543,0.624712,0.500384,0.0723698,0.0110437,0.00357735,0.736325,0.983473,0.595425,0.976263,0.173148,0.144616,0.644131,0.87152,0.0119643,0.540776,0.677389,0.69984,0.869344,0.509672,0.0939406,0.781172,0.439071,0.259462,0.807298,0.467366,0.056686,0.533962,0.383867,0.346223,0.752385,0.946478,0.787722,0.8863,0.379002,0.716817,0.409184,0.45782,0.861217,0.950506,0.150522,0.251596,0.750412,0.299026,0.880618,0.445082,0.968973,0.347946,0.692778,0.465592,0.293155,0.116351,0.542526,0.31578,0.220158,0.182176,0.868617,0.720295,0.472338,0.174096,0.21429,0.44584,0.27838,0.502563,0.901155,0.106913,0.56319,0.751722,0.384993,0.726058,0.315799,0.0270127,0.163525,0.119234,0.297205,0.816899,0.344669,0.298181,0.361138,0.714897,0.0722182,0.209376,0.911223,0.258048,0.423589,0.0284719,0.382745,0.805953,0.771174,0.929928,0.987291,0.653081,0.169792,0.859445,0.18019,0.319072,0.109979,0.46848,0.456625,0.488593,0.788129,0.317201,0.264768,0.95237,0.0916365,0.845627,0.140123,0.132695,0.801896,0.552988,0.556966,0.229172,0.207526,0.364503,0.0980764,0.0754219,0.22508,0.459592,0.53953,0.375013,0.324814,0.831084,0.322489,0.15591,0.106539,0.894595,0.0905356,0.467017,0.449628,0.26647,0.539907,0.745383,0.721886,0.638292,0.200736,0.0490271,0.231821,0.576513,0.643599,0.603131,0.863829,0.088167,0.847605,0.52013,0.218564,0.229596,0.375952,0.418763,0.520985,0.543855,0.805553,0.00669146,0.202725,0.0693039,0.672984,0.652494,0.970107,0.843109,0.92905,0.298396,0.773908,0.491264,0.295069,0.752539,0.861727,0.123046,0.989076,0.347709,0.535997,0.396257,0.428548,0.454625,0.556251,0.526147,0.812131,0.697871,0.649886,0.993937,0.485759,0.142047,0.552956,0.521174,0.411437,0.53695,0.446578,0.770581,0.188736,0.774568,0.448776,0.995947,0.100009,0.808965,0.278613,0.48289,0.00175828,0.227189,0.40766,0.508688,0.566426,0.934893,0.64817,0.395621,0.790117,0.246629,0.5518,0.123995,0.0697464,0.547263,0.200644,0.825069,0.287844,0.32743,0.3143,0.76364,0.801349,0.415784,0.685302,0.431111,0.990816,0.499527,0.438352,0.00634915,0.214672,0.268219,0.244289,0.209492,0.235992,0.0238237,0.421931,0.526623,0.191531,0.0153357,0.244133,0.798909,0.636443,0.66468,0.402783,0.343775,0.38848,0.491495,0.641548,0.496007,0.626669,0.570337,0.670538,0.485246,0.301607,0.57406,0.681731,0.57676,0.275399,0.0861625,0.795958,0.228195,0.0771302,0.946353,0.643115,0.262873,0.129005,0.55231,0.523859,0.333786,0.572954,0.797691,0.629794,0.728346,0.177503,0.59141,0.502831,0.759891,0.799084,0.0394289,0.0809789,0.565007,0.687647,0.10572,0.769439,0.488428,0.156996,0.950249,0.226066,0.312127,0.503965,0.35964,0.69272,0.844478,0.659936,0.0512118,0.944968,0.0924692,0.446952,0.583192,0.276599,0.0975666,0.915401,0.573234,0.00329638,0.698287,0.922066,0.0152507,0.411961,0.706163,0.304719,0.6799,0.42149,0.981997,0.455694,0.448616,0.506898,0.830986,0.391687,0.366488,0.805737,0.089873,0.89216,0.314425,0.777625,0.693286,0.794412,0.0495238,0.835946,0.610421,0.0461369,0.370842,0.847356,0.00522035,0.165489,0.915575,0.235481,0.994365,0.988437,0.410631,0.599442,0.061654,0.0885539,0.637924,0.820209,0.408499,0.91616,0.178819,0.772464,0.033246,0.580918,0.00928324,0.0545872,0.527482,0.959398,0.150034,0.562307,0.0349767,0.481364,0.365141,0.54894,0.414007,0.247449,0.79696,0.308968,0.285426,0.650735,0.585373,0.632977,0.34755,0.0347089,0.662918,0.555545,0.103491,0.975004,0.438965,0.760344,0.900513,0.200874,0.31562,0.316557,0.545504,0.368927,0.133765,0.703981,0.794317,0.159532,0.358262,0.837887,0.487021,0.723739,0.524474,0.341958,0.319937,0.960797,0.856774,0.38021,0.58259,0.94642,0.975452,0.751239,0.104228,0.670415,0.780137,0.182434,0.756063,0.783884,0.288974,0.937104,0.546832,0.332803,0.371735,0.240042,0.828998,0.0952415,0.619253,0.0184633,0.167059,0.470339,0.264987,0.555578,0.234167,0.243358,0.0869714,0.013445,0.864255,0.576015,0.878326,0.163043,0.542409,0.407053,0.429536,0.531954,0.0808059,0.748495,0.841017,0.0496242,0.545643,0.944909,0.490143,0.045018,0.590444,0.915411,0.776226,0.411971,0.168017,0.269154,0.188942,0.0785164,0.747137,0.6232,0.881098,0.612023,0.181961,0.307688,0.768726,0.332779,0.251255,0.0150354,0.994475,0.505684,0.294882,0.338156,0.723693,0.872641,0.544366,0.0312887,0.92183,0.439088,0.929212,0.911223,0.489507,0.556165,0.680544,0.40192,0.83595,0.611335,0.912428,0.81225,0.328336,0.115273,0.507231,0.267188,0.825172,0.610904,0.174167,0.25389,0.14318,0.461048,0.512683,0.126439,0.652171,0.74601,0.340377,0.0168024,0.0983554,0.193753,0.911424,0.38113,0.0711915,0.448846,0.501837,0.304533,0.645518,0.20935,0.168598,0.631356,0.44877,0.638769,0.616723,0.239821,0.494208,0.235999,0.134082,0.423025,0.74615,0.376942,0.361349,0.750543,0.0862552,0.18237,0.13235,0.622763,0.781614,0.00763285,0.0410762,0.147628,0.00694853,0.226514,0.358912,0.208119,0.0352669,0.745189,0.952844,0.24306,0.743487,0.255251,0.806948,0.546084,0.461901,0.783586,0.546223,0.78914,0.446534,0.931561,0.112236,0.0571508,0.88078,0.0463064,0.13339,0.431463,0.239138,0.402472,0.332025,0.402955,0.649086,0.0293437,0.81526,0.840736,0.697771,0.673345,0.863943,0.371403,0.292027,0.792384,0.0410848,0.371945,0.514014,0.67521,0.305952,0.598754,0.174925,0.333121,0.719479,0.896468,0.765698,0.229753,0.202622,0.543163,0.871825,0.176726,0.74235,0.0544748,0.716033,0.227393,0.352352,0.78356,0.0647898,0.594863,0.374234,0.135756,0.260341,0.0713497,0.0613762,0.434437,0.629375,0.760214,0.593615,0.823926,0.994866,0.75903,0.942793,0.847018,0.187829,0.194395,0.221248,0.999747,0.114625,0.456616,0.0580902,0.664178,0.312952,0.0870957,0.923179,0.287225,0.523338,0.567162,0.161368,0.102996,0.731773,0.0858734,0.676591,0.12713,0.0559453,0.395403,0.765373,0.0137643,0.435829,0.00809491,0.215339,0.939686,0.895793,0.487407,0.431674,0.577057,0.716968,0.88898,0.119731,0.889461,0.184039,0.0706463,0.389199,0.909077,0.379085,0.0400292,0.0406308,0.941865,0.794775,0.787566,0.469067,0.340437,0.147556,0.633253,0.384306,0.896612,0.33177,0.857084,0.581999,0.504418,0.40297,0.248427,0.538816,0.357177,0.71606,0.260269,0.765998,0.645962,0.645917,0.779313,0.603331,0.531858,0.42446,0.943662,0.574434,0.869666,0.471273,0.280876,0.963663,0.158572,0.275229,0.587803,0.726628,0.677304,0.237204,0.154601,0.308119,0.737422,0.736166,0.288089,0.493618,0.631417,0.932627,0.1643,0.208616,0.463086,0.344898,0.980183,0.700013,0.94432,0.764523,0.637458,0.980267,0.830915,0.10787,0.201222,0.445673,0.954543,0.182355,0.407963,0.15448,0.0107843,0.2112,0.897009,0.711526,0.262452,0.367707,0.262357,0.153489,0.453072,0.0973405,0.485697,0.0962008,0.570421,0.328883,0.827352,0.556148,0.655194,0.134367,0.941851,0.827662,0.216497,0.487926,0.402625,0.351254,0.534293,0.588458,0.0142842,0.284432,0.932947,0.27043,0.249819,0.254275,0.762733,0.746417,0.24209,0.374679,0.387374,0.598408,0.766161,0.994454,0.365325,0.888367,0.744079,0.242405,0.476971,0.71514,0.283291,0.712517,0.0578241,0.811074,0.912373,0.820166,0.712291,0.314377,0.561083,0.527688,0.764038,0.391305,0.151722,0.654498,0.293888,0.675019,0.551516,0.768827,0.471459,0.505617,0.228302,0.423365,0.347574,0.0908326,0.395217,0.403591,0.289781,0.289511,0.25573,0.261383,0.213577,0.714498,0.69396,0.406991,0.391068,0.443114,0.399404,0.610238,0.5343,0.482102,0.402736,0.183983,0.706013,0.385152,0.0918331,0.634564,0.734585,0.153299,0.577895,0.127499,0.707601,0.26777,0.562934,0.421938,0.863673,0.394327,0.829762,0.903976,0.0903823,0.966036,0.41452,0.493543,0.996399,0.231109,0.585888,0.23313,0.26299,0.733877,0.0497845,0.513738,0.128655,0.728343,0.415144,0.454515,0.611864,0.976417,0.220617,0.588277,0.703028,0.643857,0.694023,0.278474,0.674809,0.639425,0.485942,0.58993,0.473256,0.68189,0.956473,0.423698,0.808481,0.464275,0.0872337,0.858955,0.551509,0.68093,0.511653,0.997073,0.433383,0.653031,0.668649,0.041356,0.945849,0.452091,0.0579734,0.77877,0.405393,0.713561,0.879843,0.919249,0.400848,0.574489,0.797183,0.0461554,0.531933,0.332785,0.320124,0.897161,0.333527,0.170152,0.859494,0.887892,|0.95722,0.33741,0.685135,0.477337,0.654257,0.518033,0.187213,0.182672,0.902352,0.44341,0.963697,0.112023,0.890459,0.0564917,0.32282,0.165298,0.396145,0.236789,0.315942,0.664704,0.740577,0.574563,0.814095,0.669947,0.353873,0.114988,0.343465,0.99903,0.787682,0.0700266,0.68199,0.844586,0.000119865,0.985125,0.757601,0.404322,0.213998,0.386857,0.813737,0.598873,0.47264,0.0352443,0.995064,0.963407,0.763773,0.507902,0.12321,0.568492,0.537208,0.335661,0.232315,0.568262,0.0590855,0.595709,0.207217,0.0365677,0.652477,0.909691,0.315016,0.203364,0.413534,0.204234,0.235489,0.958657,0.782409,0.7081,0.745814,0.0100095,0.261274,0.49994,0.930405,0.185651,0.847507,0.240408,0.639774,0.241575,0.00908184,0.519952,0.452106,0.170958,0.104429,0.472859,0.0837488,0.903378,0.422792,0.262699,0.870147,0.412464,0.837154,0.693986,0.632511,0.245744,0.677956,0.801438,0.372153,0.773325,0.120486,0.222174,0.531369,0.201145,0.315643,0.391395,0.0188818,0.386763,0.140852,0.155802,0.814457,0.840114,0.115521,0.73125,0.0907583,0.780674,0.0365779,0.0148709,0.472387,0.19963,0.65393,0.160792,0.641478,0.403245,0.641162,0.266352,0.812046,0.289336,0.334554,0.993066,0.635717,0.463392,0.160202,0.241868,0.738009,0.923779,0.0188888,0.613844,0.388502,0.424539,0.65299,0.424402,0.598168,0.399319,0.271914,0.401752,0.98417,0.371942,0.618782,0.714036,0.715335,0.897401,0.289322,0.360021,0.922027,0.192496,0.796015,0.881591,0.0572677,0.271267,0.388024,0.105032,0.407733,0.260875,0.757691,0.432741,0.465882,0.0911067,0.992658,0.35003,0.0116649,0.257932,0.130129,0.0916824,0.216496,0.891695,0.672939,0.722098,0.24789,0.956949,0.0890145,0.820729,0.434504,0.308442,0.240451,0.366992,0.580866,0.690365,0.424547,0.760333,0.270675,0.8754,0.131941,0.132218,0.11515,0.40003,0.606263,0.0492659,0.925518,0.720921,0.810186,0.0120761,0.880759,0.0247347,0.0767687,0.574892,0.545299,0.245307,0.178637,0.0946653,0.95114,0.405775,0.307531,0.815723,0.685984,0.56395,0.490552,0.61771,0.441972,0.574171,0.523279,0.503536,0.365452,0.467944,0.15267,0.557611,0.504678,0.66647,0.463947,0.204028,0.753334,0.759798,0.852831,0.919724,0.782604,0.886642,0.918081,0.621474,0.657215,0.0916933,0.486286,0.436286,0.0849124,0.231583,0.887881,0.9433,0.792274,0.38166,0.774811,0.680549,0.774931,0.406459,0.650993,0.825093,0.0108717,0.0101097,0.169555,0.370864,0.852144,0.400052,0.668554,0.44035,0.488196,0.563968,0.964446,0.843526,0.930676,0.698348,0.567772,0.685528,0.692756,0.128147,0.237267,0.557827,0.454921,0.542609,0.715511,0.166604,0.154354,0.0755613,0.105966,0.334396,0.976454,0.450795,0.459844,0.532279,0.953171,0.823816,0.731604,0.527874,0.525072,0.824801,0.0147351,0.881474,0.491277,0.103446,0.235868,0.862165,0.781319,0.139092,0.429583,0.592335,0.715156,0.556508,0.802119,0.0442541,0.489747,0.0343895,0.442143,0.66096,0.566818,0.978417,0.893332,0.790142,0.0500136,0.974078,0.500641,0.474602,0.90793,0.738954,0.080902,0.935217,0.310454,0.156865,0.529612,0.519764,0.636567,0.822136,0.889998,0.590872,0.178745,0.279243,0.773906,0.560432,0.0562985,0.927296,0.401783,0.420025,0.943779,0.603688,0.18736,0.534909,0.850204,0.284542,0.273548,0.473714,0.265951,0.238265,0.496409,0.38568,0.459028,0.770088,0.190107,0.594219,0.75556,0.0585681,0.916656,0.57707,0.402957,0.214158,0.66012,0.768913,0.973513,0.783253,0.964007,0.0256524,0.78304,0.28087,0.0198942,0.686559,0.92423,0.825669,0.498505,0.151372,0.235789,0.195018,0.44883,0.443066,0.858627,0.934678,0.0989106,0.791505,0.36634,0.483334,0.545414,0.669856,0.277968,0.972638,0.14443,0.174541,0.501226,0.927506,0.6754,0.563254,0.249199,0.908718,0.559941,0.0639612,0.0854336,0.541496,0.0350882,0.0764554,0.906822,0.166455,0.120856,0.841293,0.580897,0.0251461,0.125419,0.30856,0.857913,0.613955,0.622143,0.31681,0.966333,0.0650978,0.978607,0.581937,0.58259,0.717308,0.813439,0.528207,0.400415,0.847732,0.342172,0.913548,0.556337,0.908819,0.888902,0.610374,0.31645,0.496281,0.773283,0.149193,0.0652749,0.230219,0.283912,0.74903,0.502608,0.676709,0.838205,0.720184,0.955383,0.806217,0.271514,0.035678,0.791262,0.895514,0.0207376,0.612435,0.125964,0.146235,0.466782,0.795649,0.425805,0.33439,0.994891,0.0928733,0.662483,0.863741,0.705545,0.997514,0.960628,0.337695,0.417867,0.185804,0.423481,0.843245,0.601912,0.244472,0.191377,0.42608,0.868004,0.86033,0.245273,0.386994,0.498072,0.344799,0.545488,0.431828,0.78463,0.0847543,0.516756,0.437352,0.619184,0.385819,0.443799,0.740607,0.311052,0.0723186,0.870345,0.23279,0.128812,0.653518,0.109969,0.582793,0.780752,0.955631,0.236256,0.29038,0.493878,0.612039,0.290979,0.661016,0.102824,0.0893431,0.314939,0.851609,0.449301,0.210315,0.669565,0.0398441,0.988576,0.262373,0.422388,0.828026,0.94324,0.310721,0.63383,0.648661,0.153771,0.645554,0.229793,0.644429,0.214946,0.60503,0.184292,0.416998,0.872533,0.769028,0.0360339,0.889612,0.834755,0.814378,0.386667,0.988315,0.427019,0.189039,0.428457,0.517168,0.696292,0.992172,0.914581,0.15187,0.0405697,0.572763,0.075103,0.166987,0.39971,0.822184,0.896563,0.362128,0.845114,0.518566,0.00707507,0.224328,0.852405,0.633154,0.236025,0.0169867,0.203089,0.828734,0.0986105,0.831756,0.203113,0.724503,0.900412,0.911153,0.277977,0.316549,0.314776,0.883855,0.274423,0.979273,0.522442,0.313228,0.51086,0.335649,0.902171,0.75947,0.957898,0.781449,0.523121,0.694595,0.488665,0.292419,0.767196,0.328002,0.413601,0.902634,0.557467,0.874658,0.663063,0.811943,0.842837,0.274409,0.126803,0.898994,0.129891,0.960216,0.297673,0.194105,0.360107,0.976187,0.201389,0.374341,0.674352,0.161356,0.898414,0.701123,0.75048,0.453396,0.830093,0.64454,0.65719,0.189586,0.734846,0.185158,0.549551,0.618605,0.0653856,0.909798,0.818178,0.877108,0.673234,0.712412,0.735915,0.596501,0.0104616,0.379838,0.524028,0.508972,0.272309,0.499055,0.724582,0.766179,0.784825,0.513852,0.636415,0.0886357,0.743089,0.352833,0.642306,0.270748,0.21713,0.461607,0.0236102,0.338254,0.876348,0.0451225,0.221808,0.0855409,0.651258,0.354596,0.693836,0.270047,0.400932,0.639756,0.499837,0.9339,0.427169,0.191607,0.815066,0.564796,0.673956,0.456765,0.143642,0.186915,0.993991,0.332601,0.852301,0.253348,0.449907,0.830078,0.229798,0.453565,0.160726,0.298521,0.393645,0.804839,0.758172,0.447096,0.913895,0.431833,0.883156,0.954483,0.627791,0.141328,0.973283,0.689252,0.960315,0.25897,0.741265,0.627063,0.396629,0.541154,0.766958,0.664555,0.622493,0.200439,0.218298,0.497875,0.646539,0.18159,0.971312,0.596858,0.926344,0.0394316,0.0867743,0.298863,0.522283,0.109945,0.876514,0.734032,0.942863,0.646197,0.0626374,0.640451,0.827763,0.0168239,0.135264,0.718139,0.247953,0.182829,0.774815,0.583932,0.0181829,0.879218,0.375096,0.992139,0.153779,0.202304,0.050055,0.0238425,0.955875,0.707622,0.532228,0.288758,0.851251,0.356013,0.951962,0.897101,0.76205,0.623448,0.879098,0.436023,0.438098,0.876533,0.427267,0.475321,0.452351,0.832837,0.926879,0.698753,0.269086,0.425776,0.822018,0.401772,0.142641,0.161617,0.436906,0.524262,0.616202,0.427172,0.378455,0.677143,0.533297,0.806667,0.964218,0.464712,0.603734,0.326982,0.508938,0.633256,0.377822,0.00616485,0.487483,0.532581,0.0327809,0.0810333,0.63225,0.263708,0.207683,0.296887,0.917586,0.0698463,0.807865,0.548902,0.95841,0.253536,0.0115601,0.841702,0.825881,0.0121992,0.373025,0.643417,0.715998,0.676876,0.601843,0.459676,0.135228,0.469997,0.0927398,0.822662,0.932859,0.379536,0.781748,0.507662,0.746297,0.0767633,0.0621433,0.95667,0.850426,0.677092,0.205765,0.668168,0.166564,0.125909,0.610354,0.581263,0.398366,0.458549,0.696019,0.14205,0.308757,0.456546,0.242597,0.144668,0.162955,0.826302,0.200126,0.765455,0.198275,0.658142,0.835118,0.838493,0.769287,0.0597506,0.928657,0.678699,0.0372839,0.830979,0.939416,0.145726,0.9009,0.822413,0.372393,0.765398,0.621724,0.949182,0.187829,0.210996,0.162037,0.551605,0.402035,0.591251,0.637034,0.825472,0.512008,0.937944,0.921153,0.613757,0.549242,0.942062,0.777934,0.891016,0.564129,0.532725,0.320537,0.873683,0.476936,0.383283,0.532081,0.246552,0.648972,0.854647,0.077475,0.580595,0.232136,0.790555,0.0793442,0.615823,0.083796,0.0769064,0.678599,0.86491,0.136902,0.479209,0.122381,0.892295,0.226867,0.914805,0.361084,0.854752,0.779668,0.151219,0.871784,0.0164776,0.365831,0.606371,0.0561982,0.35192,0.875835,0.206765,0.226251,0.758501,0.23991,0.639167,0.328125,0.229171,0.397663,0.315915,0.67142,0.667241,0.216814,0.626267,0.385284,0.0823848,0.0741223,0.942586,0.849221,0.143926,0.705277,0.642343,0.163154,0.809468,0.0772321,0.866351,0.827073,0.475397,0.770265,0.130598,0.516593,0.801615,0.225997,0.767149,0.497998,0.832938,0.775908,0.103786,0.0694251,0.479161,0.045698,0.299468,0.273228,0.606487,0.937504,0.62313,0.847136,0.430066,0.34678,0.720353,0.273646,0.313496,0.378057,0.514734,0.637098,0.596102,0.355755,0.204146,0.129335,0.668534,0.67646,0.495749,0.708001,0.272023,0.307715,0.983889,0.226899,0.602637,0.842916,0.240482,0.927877,0.282403,0.114515,0.553986,0.772176,0.280946,0.0746993,0.993521,0.962037,0.225166,0.379589,0.870922,0.829964,0.623452,0.933581,0.567366,0.318498,0.917093,0.476314,0.191885,0.679554,0.876349,0.575899,0.369963,0.50758,0.911262,0.00817788,0.178089,0.425593,0.62587,0.69838,0.244249,|0.954476,0.412221,0.190724,0.967262,0.918154,0.648098,0.201497,0.175587,0.104684,0.579182,0.0604928,0.763675,0.271815,0.316576,0.588302,0.856343,0.314256,0.515825,0.439445,0.48493,0.281935,0.136927,0.978216,0.823274,0.911165,0.402912,0.139212,0.251388,0.623389,0.983989,0.992988,0.194091,0.531229,0.229539,0.761268,0.334737,0.755969,0.182456,0.0184821,0.779819,0.811491,0.981681,0.953282,0.414182,0.385945,0.0411125,0.97922,0.527671,0.034833,0.398206,0.907149,0.145466,0.539402,0.248336,0.846084,0.0244344,0.242424,0.449239,0.313919,0.279023,0.656592,0.862538,0.368865,0.306797,0.32952,0.839698,0.671949,0.685079,0.372009,0.0472451,0.533011,0.553992,0.051911,0.505319,0.771284,0.664557,0.210267,0.713892,0.374334,0.961532,0.637021,0.756071,0.414216,0.142857,0.807135,0.219545,0.385149,0.744643,0.806691,0.345823,0.143565,0.059506,0.854381,0.651919,0.0518384,0.465641,0.822771,0.975952,0.479808,0.225378,0.493113,0.982748,0.731306,0.25185,0.0319123,0.139831,0.843924,0.99245,0.897276,0.539946,0.431986,0.265353,0.748788,0.207527,0.638234,0.223958,0.572776,0.561938,0.280922,0.0157792,0.222981,0.945021,0.282614,0.652385,0.299684,0.770742,0.407526,0.0536771,0.82332,0.0772895,0.289444,0.516477,0.0747586,0.534308,0.806668,0.0202233,0.439526,0.0355484,0.795638,0.113485,0.537311,0.385706,0.910608,0.328255,0.528385,0.584781,0.711683,0.862977,0.711604,0.947126,0.685598,0.276514,0.437873,0.280631,0.938879,0.0399966,0.734594,0.0824477,0.0182103,0.614913,0.517363,0.99999,0.631435,0.597021,0.132831,0.281851,0.683623,0.450025,0.708357,0.647686,0.785983,0.359347,0.736101,0.299351,0.827899,0.954842,0.00958824,0.983136,0.661841,0.801268,0.465073,0.543848,0.643535,0.741527,0.0827968,0.839306,0.366461,0.420084,0.386899,0.446018,0.447554,0.112557,0.918455,0.212634,0.336737,0.656183,0.753314,0.534425,0.213911,0.692832,0.351793,0.168707,0.693312,0.751888,0.474591,0.89229,0.898215,0.62227,0.686644,0.978529,0.856181,0.681838,0.376262,0.942789,0.317375,0.125243,0.827443,0.00757307,0.643851,0.0704468,0.355066,0.6222,0.917903,0.445443,0.335189,0.507573,0.848551,0.00157344,0.892851,0.736161,0.387821,0.408425,0.898799,0.750134,0.100005,0.157133,0.597738,0.733502,0.230787,0.0302569,0.796814,0.294216,0.161549,0.570719,0.351944,0.669237,0.905456,0.507994,0.715729,0.108314,0.581349,0.0606868,0.434423,0.511246,0.924877,0.899224,0.562812,0.266825,0.191326,0.314378,0.241123,0.731856,0.559913,0.247792,0.0990375,0.866874,0.96676,0.988629,0.380694,0.989136,0.171844,0.0938143,0.599749,0.88425,0.851363,0.835947,0.721963,0.0794724,0.144921,0.401781,0.229298,0.539372,0.78393,0.593426,0.678263,0.0384733,0.0953917,0.838736,0.691357,0.293361,0.245719,0.0679821,0.020719,0.550973,0.803285,0.0598484,0.599609,0.860661,0.566641,0.369474,0.0972634,0.596871,0.86925,0.506346,0.887539,0.742693,0.565625,0.416211,0.495438,0.270466,0.731748,0.946481,0.953603,0.564267,0.663797,0.774707,0.958615,0.551862,0.906638,0.08724,0.976212,0.490463,0.876549,0.820513,0.106908,0.665854,0.811891,0.0648047,0.284985,0.598715,0.800576,0.958388,0.780632,0.674072,0.652093,0.793941,0.0627989,0.478415,0.130431,0.640851,0.740303,0.726704,0.413801,0.330173,0.64016,0.425601,0.891388,0.975693,0.607223,0.66044,0.281701,0.387839,0.748799,0.404606,0.7862,0.339621,0.879783,0.544764,0.441274,0.764219,0.821868,0.901008,0.412365,0.88109,0.01218,0.527432,0.479353,0.87851,0.346892,0.319927,0.934936,0.0320248,0.932867,0.18402,0.908694,0.894742,0.276953,0.657352,0.248051,0.419658,0.338798,0.676634,0.738698,0.223821,0.902446,0.591438,0.765417,0.562989,0.597536,0.754205,0.313862,0.372063,0.41869,0.915152,0.377297,0.381055,0.254537,0.76724,0.319566,0.39343,0.17155,0.574769,0.204107,0.64571,0.521125,0.904368,0.282129,0.956115,0.735176,0.740443,0.368734,0.60729,0.326323,0.619457,0.110709,0.945328,0.307527,0.272632,0.760335,0.966798,0.801084,0.741535,0.0316133,0.367786,0.536229,0.821385,0.617819,0.189536,0.763454,0.627832,0.247454,0.835208,0.745205,0.317398,0.308185,0.0631571,0.423643,0.472484,0.674155,0.186429,0.955474,0.793253,0.321798,0.373899,0.450606,0.492012,0.162441,0.984043,0.565018,0.99673,0.837595,0.909246,0.273552,0.981568,0.917584,0.887352,0.851003,0.657425,0.258226,0.632965,0.201145,0.431878,0.87388,0.198804,0.0309256,0.929448,0.118762,0.624788,0.168003,0.196285,0.299155,0.00793588,0.5747,0.253021,0.487319,0.73683,0.970282,0.913383,0.828163,0.0640752,0.620485,0.45051,0.545677,0.384634,0.568482,0.097872,0.397303,0.912909,0.298948,0.609535,0.700188,0.982243,0.916264,0.309104,0.56643,0.480043,0.118398,0.425511,0.77029,0.436499,0.395645,0.734736,0.471862,0.293442,0.483553,0.421612,0.637469,0.350967,0.740049,0.448268,0.738159,0.378958,0.426132,0.55321,0.757696,0.199333,0.522102,0.706112,0.700938,0.815982,0.789576,0.0353788,0.883848,0.920156,0.950363,0.606508,0.999188,0.477127,0.958838,0.0496393,0.996095,0.146163,0.2626,0.112197,0.446173,0.975991,0.971237,0.769729,0.292725,0.542384,0.229286,0.84993,0.791418,0.71042,0.138512,0.0437407,0.0429966,0.0524368,0.33396,0.52046,0.486342,0.53001,0.392863,0.155865,0.893509,0.166475,0.591938,0.0598078,0.165867,0.725403,0.989219,0.0349401,0.96142,0.909298,0.41996,0.38211,0.587566,0.0730309,0.176468,0.295613,0.669031,0.835883,0.809847,0.996151,0.841951,0.515495,0.244833,0.641155,0.449627,0.634906,0.819628,0.0350934,0.760108,0.934892,0.131647,0.0850453,0.863173,0.656509,0.29274,0.715649,0.0895241,0.422912,0.478768,0.14411,0.59581,0.756133,0.00492132,0.809771,0.602317,0.126517,0.230522,0.851842,0.770601,0.554721,0.489272,0.872742,0.388159,0.465339,0.548459,0.0394647,0.686292,0.533136,0.452478,0.0813621,0.292547,0.620489,0.682332,0.526611,0.289184,0.353064,0.186071,0.642982,0.770937,0.977899,0.709064,0.109659,0.507994,0.774641,0.29701,0.715828,0.924615,0.145641,0.529637,0.154183,0.775557,0.697566,0.32508,0.242016,0.297584,0.487136,0.106534,0.420083,0.670094,0.507589,0.00306213,0.70503,0.739338,0.574309,0.985617,0.813987,0.936336,0.264379,0.744981,0.456516,0.647527,0.827672,0.260466,0.894445,0.555659,0.290878,0.622955,0.838834,0.883561,0.866865,0.919066,0.498265,0.613478,0.62141,0.303289,0.372523,0.499101,0.366615,0.421794,0.606723,0.663124,0.0778549,0.0209641,0.427932,0.345554,0.553912,0.150525,0.501602,0.159522,0.685105,0.959834,0.501529,0.583058,0.317977,0.573812,0.0778511,0.565775,0.641567,0.650329,0.687126,0.99664,0.823226,0.166096,0.746572,0.460041,0.738195,0.313546,0.330376,0.417708,0.297355,0.520893,0.41541,0.35088,0.252391,0.036806,0.0982881,0.914581,0.273663,0.41937,0.800774,0.981415,0.508462,0.60094,0.972925,0.661248,0.232431,0.471543,0.0850705,0.708411,0.520183,0.796603,0.0811541,0.856062,0.658565,0.43358,0.833423,0.121696,0.153349,0.0250489,0.428104,0.00779212,0.0445638,0.342179,0.652569,0.514718,0.823251,0.47307,0.254406,0.531593,0.725853,0.436039,0.696278,0.10845,0.762261,0.881862,0.86737,0.489347,0.501285,0.562073,0.479231,0.813228,0.453249,0.0594919,0.850605,0.0798984,0.895729,0.99412,0.743404,0.159561,0.241724,0.510601,0.898805,0.724477,0.441924,0.234503,0.421641,0.574169,0.932258,0.160921,0.243961,0.967,0.942466,0.470837,0.335075,0.1311,0.529611,0.644389,0.814799,0.320896,0.759882,0.474244,0.413651,0.205114,0.57589,0.891131,0.0176572,0.913894,0.890216,0.766878,0.578139,0.536857,0.665633,0.0126375,0.912198,0.00315487,0.312313,0.621863,0.0763865,0.219252,0.0633449,0.472801,0.299193,0.907595,0.748055,0.44399,0.320367,0.804224,0.824054,0.974049,0.970393,0.575146,0.984752,0.149732,0.538438,0.801062,0.344135,0.192507,0.951425,0.164156,0.931646,0.265678,0.0716602,0.512716,0.822924,0.3788,0.211764,0.951623,0.36292,0.721984,0.11492,0.53741,0.454606,0.342362,0.260949,0.902922,0.909974,0.76407,0.983701,0.64486,0.691006,0.395839,0.808022,0.0507636,0.648598,0.44778,0.185601,0.113435,0.871382,0.413294,0.0290321,0.912697,0.037596,0.264724,0.663224,0.108163,0.0908733,0.99261,0.249395,0.272736,0.858336,0.644453,0.430164,0.568989,0.544174,0.454886,0.0431699,0.189488,0.680197,0.849766,0.982185,0.043404,0.686893,0.142979,0.714558,0.210923,0.884735,0.515441,0.192529,0.302261,0.691972,0.195895,0.846533,0.312703,0.73338,0.161112,0.359369,0.261068,0.563998,0.63947,0.327055,0.635912,0.64352,0.68593,0.643907,0.409981,0.897304,0.393774,0.543914,0.0632241,0.333114,0.00508404,0.0958971,0.453135,0.453737,0.945556,0.523716,0.472199,0.356206,0.637209,0.339109,0.202605,0.334572,0.855896,0.00416684,0.0865709,0.051636,0.720746,0.962151,0.38692,0.50678,0.0986486,0.69659,0.907505,0.657451,0.840585,0.696641,0.86172,0.35619,0.300315,0.525283,0.818718,0.147085,0.416782,0.61226,0.614292,0.994207,0.912371,0.922739,0.608194,0.126084,0.617081,0.410413,0.838072,0.815939,0.0856947,0.68418,0.994508,0.0383648,0.468684,0.180628,0.940877,0.506625,0.61513,0.953188,0.0520304,0.00598735,0.668716,0.206289,0.888212,0.0524477,0.90999,0.303877,0.168288,0.860668,0.390473,0.639133,0.485177,0.236436,0.26568,0.797111,0.214571,0.643107,0.461992,0.931699,0.370339,0.573911,0.479497,0.590754,0.44683,0.684581,0.361658,0.238905,0.0949265,0.962218,0.993812,0.877395,0.636006,0.854269,0.950635,0.917556,0.46087,0.565807,0.401088,0.754569,0.244063,0.160053,|0.562703,0.327744,0.528388,0.672252,0.371276,0.937222,0.482521,0.721281,0.845421,0.512366,0.0439054,0.617708,0.994207,0.157371,0.396743,0.703262,0.992655,0.978685,0.510036,0.810964,0.973054,0.160878,0.898642,0.564762,0.993912,0.792528,0.828211,0.587913,0.333383,0.43507,0.916587,0.733053,0.758248,0.679751,0.982025,0.971275,0.866399,0.0651665,0.138598,0.781817,0.533146,0.654277,0.936472,0.653667,0.0301247,0.09739,0.278515,0.515384,0.311478,0.507434,0.511756,0.443874,0.526499,0.202122,0.886531,0.622756,0.285871,0.268359,0.260249,0.680814,0.245826,0.0611904,0.895901,0.976325,0.488529,0.36724,0.730581,0.192961,0.313244,0.627741,0.680098,0.787741,0.507792,0.394633,0.0112711,0.333275,0.84689,0.0015803,0.774243,0.290723,0.013827,0.821841,0.348123,0.537503,0.763256,0.902503,0.979628,0.54318,0.538358,0.500075,0.756675,0.846387,0.862062,0.948907,0.426596,0.637985,0.684325,0.0859745,0.00235015,0.761804,0.726428,0.683653,0.543757,0.352573,0.276143,0.0549817,0.392109,0.638472,0.560027,0.450518,0.880391,0.452436,0.129631,0.855729,0.676209,0.188194,0.52571,0.662042,0.550085,0.232139,0.904127,0.558543,0.643062,0.810991,0.66395,0.556365,0.873455,0.838763,0.591187,0.178154,0.220042,0.819957,0.0568128,0.382682,0.43591,0.0773945,0.014926,0.0124156,0.177152,0.758427,0.56396,0.0287652,0.844907,0.0878279,0.0705525,0.634666,0.88899,0.278027,0.30194,0.287344,0.013746,0.750872,0.639687,0.114556,0.900339,0.10095,0.738715,0.968661,0.118307,0.305979,0.781141,0.0587075,0.704921,0.159157,0.577261,0.0104798,0.155251,0.916033,0.00153899,0.857463,0.353871,0.221315,0.744835,0.204388,0.00742352,0.59657,0.807935,0.0457062,0.415334,0.887013,0.684136,0.867081,0.413164,0.74456,0.717007,0.0520254,0.757478,0.603529,0.792922,0.157517,0.0815231,0.838539,0.620274,0.276753,0.0113693,0.163941,0.20889,0.551878,0.265762,0.913643,0.240925,0.0900198,0.345991,0.499656,0.284383,0.635363,0.553102,0.553671,0.375549,0.300837,0.595846,0.126593,0.773616,0.39839,0.861789,0.838726,0.724454,0.78682,0.799907,0.883251,0.640118,0.425798,0.0247088,0.771071,0.324435,0.246271,0.435355,0.107644,0.461465,0.231761,0.347786,0.536558,0.303152,0.625786,0.107187,0.975222,0.293844,0.905807,0.69815,0.140613,0.294771,0.385759,0.435786,0.991355,0.270637,0.947881,0.192976,0.767348,0.14194,0.149349,0.473686,0.55224,0.974546,0.546234,0.0159056,0.167466,0.670839,0.675012,0.971993,0.659969,0.0184099,0.269052,0.917172,0.559582,0.510879,0.711497,0.575073,0.517187,0.53023,0.212466,0.511369,0.105349,0.359139,0.514205,0.476932,0.899207,0.819495,0.307388,0.845504,0.408553,0.919812,0.781715,0.442297,0.935645,0.169071,0.807021,0.564151,0.850898,0.662739,0.760279,0.439709,0.319207,0.236095,0.492892,0.437235,0.699651,0.733161,0.075999,0.355909,0.125421,0.895747,0.641638,0.385399,0.187452,0.257392,0.289093,0.8679,0.573067,0.934128,0.731025,0.380017,0.0302876,0.11433,0.521886,0.177777,0.45218,0.790898,0.78205,0.83073,0.803912,0.552861,0.989767,0.0163014,0.425406,0.897187,0.0594109,0.129632,0.213695,0.885033,0.89973,0.321272,0.605494,0.151322,0.0581375,0.0472183,0.855922,0.78359,0.462719,0.643281,0.740714,0.974727,0.39037,0.378062,0.129745,0.500306,0.0987075,0.453146,0.495672,0.604715,0.617468,0.173938,0.757258,0.9211,0.357861,0.450524,0.839668,0.482877,0.0998703,0.806549,0.314444,0.325167,0.383339,0.298282,0.116678,0.917905,0.664601,0.824502,0.962891,0.749828,0.505469,0.627245,0.117807,0.568743,0.201422,0.385013,0.858752,0.485877,0.69147,0.122098,0.657817,0.664992,0.0172713,0.0549424,0.442713,0.373053,0.63372,0.457936,0.328065,0.902276,0.888512,0.504723,0.157378,0.372394,0.178037,0.0600665,0.429072,0.903121,0.42988,0.00966638,0.649451,0.578992,0.789328,0.347866,0.223,0.878542,0.920015,0.0228792,0.992264,0.223106,0.0226536,0.65266,0.0613983,0.12909,0.6342,0.749168,0.097886,0.716353,0.488279,0.754957,0.299067,0.947603,0.30478,0.348069,0.611483,0.0892849,0.317017,0.059196,0.601877,0.0105901,0.168961,0.545979,0.338066,0.570098,0.483456,0.910883,0.750896,0.188733,0.0608782,0.397996,0.950959,0.834154,0.443676,0.911695,0.405392,0.4803,0.547443,0.241512,0.855415,0.31609,0.1309,0.113842,0.894852,0.794004,0.146726,0.328494,0.0360831,0.852852,0.02308,0.389324,0.867125,0.784825,0.926451,0.585729,0.651453,0.758234,0.478061,0.0448226,0.430068,0.304211,0.191522,0.369094,0.827626,0.883092,0.958318,0.561741,0.8768,0.975833,0.449872,0.246598,0.504427,0.271614,0.804622,0.644875,0.979783,0.627799,0.758594,0.0733267,0.064831,0.296321,0.48554,0.0945612,0.461773,0.536665,0.357867,0.297586,0.173443,0.950544,0.972013,0.415505,0.364332,0.184111,0.0033648,0.589096,0.506505,0.0573702,0.651969,0.503069,0.573721,0.551987,0.561228,0.971386,0.277138,0.936981,0.528672,0.996546,0.847462,0.0405672,0.260928,0.0565158,0.0240856,0.460802,0.842219,0.658278,0.11958,0.0422187,0.544674,0.293671,0.109799,0.199927,0.758474,0.0994034,0.06585,0.30593,0.706351,0.0224965,0.912218,0.850524,0.597695,0.0559831,0.846602,0.991558,0.333228,0.897294,0.984286,0.237099,0.499941,0.631534,0.273347,0.531359,0.967981,0.01502,0.188344,0.967683,0.214886,0.415731,0.0333082,0.401579,0.512061,0.600471,0.732753,0.319462,0.151429,0.375694,0.451324,0.882783,0.460601,0.800172,0.4067,0.791455,0.781231,0.595818,0.442015,0.55653,0.30512,0.959559,0.139443,0.145458,0.686304,0.820393,0.839763,0.860086,0.632513,0.274084,0.755497,0.65128,0.997086,0.226806,0.626369,0.226069,0.762557,0.445786,0.272532,0.208221,0.0225886,0.151044,0.986692,0.114017,0.199294,0.490481,0.710479,0.145581,0.625567,0.237796,0.498616,0.0501968,0.0794594,0.430471,0.962681,0.396844,0.239217,0.951383,0.666489,0.837244,0.147106,0.171255,0.426581,0.671464,0.939193,0.24728,0.450552,0.786595,0.285404,0.0757561,0.156817,0.755336,0.964374,0.237862,0.488613,0.216778,0.411023,0.532177,0.445236,0.658389,0.379254,0.723896,0.0678394,0.268082,0.368162,0.391691,0.380915,0.687514,0.180174,0.983967,0.79767,0.0712196,0.94751,0.761915,0.726309,0.672605,0.726962,0.0418563,0.806602,0.0803946,0.712112,0.489385,0.843272,0.859383,0.212484,0.168828,0.110532,0.920288,0.781049,0.112669,0.34268,0.731977,0.577162,0.548252,0.474401,0.763099,0.720739,0.454218,0.864653,0.363155,0.706472,0.339954,0.528754,0.50572,0.16017,0.679423,0.547144,0.809122,0.00372511,0.872919,0.398203,0.525197,0.46332,0.593298,0.594708,0.653662,0.623422,0.802141,0.0733037,0.675946,0.725997,0.526989,0.493777,0.519255,0.143973,0.637127,0.71238,0.56794,0.743533,0.78096,0.757478,0.754552,0.843662,0.805973,0.234402,0.775276,0.428189,0.426905,0.107217,0.887438,0.550008,0.856625,0.864125,0.973939,0.37377,0.343273,0.12101,0.00417489,0.489716,0.0613244,0.291555,0.919828,0.7715,0.681982,0.988231,0.416114,0.420585,0.102106,0.426828,0.945517,0.0972874,0.415059,0.591118,0.761074,0.18405,0.598384,0.568649,0.26558,0.191485,0.81472,0.87302,0.0747108,0.634384,0.309956,0.484904,0.622814,0.433769,0.364411,0.791096,0.402522,0.76243,0.537623,0.0736878,0.692253,0.311308,0.508796,0.664696,0.295091,0.422656,0.840946,0.329556,0.922035,0.255407,0.372767,0.42455,0.135884,0.02583,0.0472136,0.280233,0.133573,0.749473,0.188347,0.573919,0.849004,0.694274,0.0440891,0.793315,0.40072,0.231708,0.010254,0.322705,0.52809,0.40637,0.784775,0.293013,0.605256,0.620032,0.0629492,0.417297,0.39868,0.194138,0.0644662,0.677426,0.547579,0.14766,0.0188469,0.117914,0.959405,0.516083,0.15881,0.0353596,0.69377,0.720649,0.601001,0.785153,0.390186,0.432203,0.92309,0.152124,0.180189,0.621827,0.590167,0.378235,0.943363,0.854667,0.840279,0.231183,0.015173,0.691273,0.0910312,0.098834,0.395382,0.0933514,0.412985,0.434556,0.512054,0.0494814,0.899717,0.15583,0.224933,0.972268,0.804491,0.574604,0.347844,0.691626,0.643016,0.585983,0.271952,0.00389719,0.0983211,0.152226,0.294533,0.953323,0.964305,0.142584,0.499464,0.184584,0.121811,0.767876,0.809394,0.0965701,0.20229,0.946403,0.138252,0.13902,0.719323,0.643959,0.977683,0.0268589,0.238848,0.294329,0.972438,0.768692,0.857421,0.344985,0.594369,0.716976,0.826082,0.291019,0.308822,0.719777,0.445483,0.850809,0.886916,0.846878,0.436498,0.364699,0.862126,0.49358,0.637,0.560149,0.336838,0.528138,0.865999,0.727434,0.350062,0.799884,0.92848,0.705278,0.695343,0.949592,0.879886,0.152254,0.295827,0.771115,0.320062,0.20417,0.355841,0.135996,0.158685,0.123752,0.516822,0.471825,0.636734,0.525557,0.261894,0.71673,0.595011,0.162679,0.90018,0.0750263,0.121759,0.706518,0.0433565,0.617911,0.826339,0.787146,0.937506,0.0187017,0.152864,0.33073,0.91139,0.868137,0.726371,0.364341,0.394945,0.611277,0.460999,0.844011,0.343665,0.308204,0.307883,0.0744786,0.930766,0.0498711,0.978482,0.047493,0.181209,0.936744,0.846881,0.427693,0.47515,0.771316,0.646533,0.350093,0.328186,0.476282,0.137084,0.774969,0.520415,0.0569575,0.0250718,0.624492,0.364811,0.612897,0.41802,0.191427,0.0100712,0.772111,0.829392,0.353655,0.607577,0.547427,0.0311792,0.801807,0.140895,0.267166,0.205517,0.782949,0.960821,0.622796,0.567851,0.108602,0.510828,0.268241,0.3285,0.942295,0.979816,0.803593,0.841489,0.601794,0.980459,0.27202,0.192738,0.369607,0.718357,0.505774,0.697576,0.448382,0.165285,0.108241,0.699595,0.024304,0.731198,0.830913,0.2179,0.706444,|0.280553,0.135811,0.565947,0.0201429,0.512539,0.524475,0.0963538,0.594137,0.190099,0.700146,0.92361,0.395887,0.166883,0.764392,0.687323,0.313781,0.284342,0.768753,0.987814,0.0147576,0.0261415,0.575088,0.050486,0.991356,0.050577,0.48617,0.357576,0.811064,0.285562,0.0055995,0.743239,0.937628,0.974047,0.311579,0.585615,0.620668,0.437159,0.813709,0.199336,0.60943,0.44506,0.613179,0.70899,0.955085,0.409409,0.480866,0.99569,0.580244,0.610492,0.701976,0.751183,0.982437,0.952724,0.0936939,0.538542,0.372101,0.743465,0.560088,0.861219,0.699815,0.365939,0.969769,0.663899,0.0256404,0.476254,0.429188,0.551064,0.0390999,0.587055,0.53296,0.0359069,0.655633,0.897809,0.0134941,0.642527,0.947968,0.673454,0.625074,0.4998,0.919159,0.0183997,0.158022,0.788798,0.640024,0.70836,0.419894,0.94369,0.438167,0.286791,0.238544,0.712421,0.177497,0.528611,0.160635,0.9168,0.444578,0.616444,0.299542,0.0619695,0.173911,0.242188,0.791855,0.21675,0.720411,0.195598,0.68885,0.346403,0.611698,0.914323,0.93753,0.336213,0.717616,0.59168,0.144533,0.674235,0.188295,0.925818,0.0344077,0.939429,0.560652,0.820195,0.39985,0.0271246,0.6717,0.726704,0.822809,0.551093,0.143799,0.466406,0.923611,0.47909,0.711343,0.599534,0.440308,0.0924892,0.954146,0.354439,0.771287,0.909158,0.215017,0.602592,0.593725,0.550159,0.192859,0.0283119,0.420558,0.917686,0.874772,0.217706,0.396435,0.985032,0.29296,0.886383,0.0121914,0.536511,0.467379,0.0827036,0.608616,0.518361,0.147747,0.0131556,0.00985873,0.869677,0.666465,0.040952,0.320704,0.278902,0.303101,0.276054,0.668651,0.662578,0.843148,0.478751,0.624298,0.3201,0.488091,0.916386,0.161414,0.327911,0.118282,0.805877,0.318709,0.670259,0.252018,0.588496,0.215992,0.639617,0.403087,0.831754,0.775646,0.964301,0.433364,0.952553,0.343946,0.647987,0.0182537,0.359185,0.634215,0.684102,0.895355,0.889899,0.991466,0.154183,0.948362,0.187019,0.0182049,0.640881,0.710373,0.918156,0.615773,0.727582,0.607933,0.937498,0.255667,0.96104,0.262325,0.4038,0.604864,0.0912144,0.151132,0.966594,0.961672,0.242267,0.680675,0.108172,0.740627,0.154143,0.72826,0.796426,0.738146,0.077206,0.738398,0.807879,0.770949,0.811035,0.758908,0.666763,0.00276017,0.0932205,0.360134,0.967172,0.613335,0.0100644,0.738063,0.0701917,0.472679,0.26038,0.246841,0.509121,0.0973272,0.764407,0.177253,0.864036,0.339919,0.92281,0.855631,0.223084,0.770114,0.432224,0.624106,0.762339,0.2611,0.432353,0.940546,0.321527,0.397296,0.324074,0.807417,0.871537,0.590722,0.776376,0.622888,0.444596,0.80334,0.689871,0.909807,0.506765,0.427267,0.937257,0.0775437,0.202183,0.389751,0.444499,0.608433,0.728207,0.17315,0.616408,0.511028,0.0527819,0.164653,0.112167,0.0669702,0.694952,0.227138,0.0764277,0.897446,0.884432,0.759045,0.0433494,0.548548,0.90425,0.283031,0.741797,0.737918,0.577866,0.824695,0.537473,0.13213,0.868615,0.0373527,0.146013,0.0760044,0.614897,0.916839,0.63104,0.209135,0.00981534,0.460657,0.255995,0.417436,0.0340126,0.977122,0.984123,0.106736,0.766754,0.105202,0.786879,0.627461,0.833187,0.309931,0.916725,0.5158,0.0530927,0.532726,0.489141,0.0854735,0.960951,0.674883,0.171391,0.923096,0.165953,0.672009,0.472842,0.380482,0.591055,0.959837,0.662168,0.819488,0.73046,0.826745,0.46298,0.833904,0.794004,0.961443,0.689455,0.912328,0.758981,0.183371,0.823585,0.758,0.502763,0.256186,0.218572,0.972982,0.730846,0.0694525,0.513395,0.725449,0.828492,0.197951,0.769358,0.385553,0.874952,0.281402,0.489536,0.0846137,0.46614,0.791339,0.688167,0.131404,0.858505,0.879337,0.648386,0.467066,0.573074,0.00684226,0.00794822,0.904066,0.0575885,0.689116,0.439294,0.697388,0.449266,0.334977,0.960308,0.319258,0.484091,0.257825,0.535169,0.67114,0.730952,0.0447219,0.0846673,0.370515,0.587877,0.550913,0.942738,0.426054,0.39017,0.166424,0.631367,0.861317,0.415785,0.71128,0.291567,0.963434,0.48635,0.689612,0.419495,0.722019,0.408522,0.404411,0.74618,0.0782403,0.0799555,0.939998,0.945297,0.901427,0.763672,0.253829,0.209875,0.767098,0.97377,0.11306,0.778023,0.559732,0.921602,0.0570872,0.793552,0.831192,0.222973,0.846911,0.594978,0.950209,0.442566,0.379578,0.78119,0.989509,0.359208,0.546308,0.699198,0.482121,0.18185,0.240038,0.452305,0.776868,0.898133,0.588892,0.514695,0.942983,0.0333775,0.954997,0.150503,0.998417,0.85448,0.918326,0.110825,0.311726,0.185677,0.093209,0.475199,0.800324,0.367239,0.164532,0.0186228,0.726447,0.4043,0.256684,0.759596,0.0976757,0.365785,0.745448,0.286057,0.480624,0.802031,0.849178,0.819006,0.370168,0.309226,0.0942224,0.158575,0.557203,0.535372,0.81796,0.265195,0.259296,0.387833,0.352423,0.397099,0.768079,0.0294371,0.547858,0.26785,0.221246,0.668486,0.517806,0.86587,0.62783,0.234713,0.224687,0.38218,0.665905,0.977858,0.74308,0.702007,0.718661,0.0467662,0.122493,0.269521,0.731977,0.949011,0.0456834,0.648097,0.593432,0.66813,0.494929,0.779329,0.769285,0.530297,0.586784,0.696608,0.941439,0.319658,0.540854,0.581656,0.934053,0.941885,0.234175,0.354632,0.242734,0.84142,0.603757,0.106794,0.151122,0.491867,0.947074,0.990056,0.688881,0.737241,0.18292,0.798239,0.737255,0.776479,0.657996,0.703939,0.65066,0.0402339,0.293881,0.401313,0.0649195,0.863966,0.717725,0.32968,0.781166,0.180108,0.364371,0.145205,0.959052,0.570878,0.591163,0.254538,0.240877,0.0825167,0.677149,0.794392,0.978638,0.436468,0.194415,0.440779,0.736252,0.164237,0.579241,0.0890998,0.00449383,0.710021,0.410057,0.599904,0.181144,0.309518,0.810751,0.312011,0.188462,0.10106,0.44006,0.664539,0.740975,0.756196,0.899649,0.97484,0.286565,0.114747,0.628319,0.241995,0.999133,0.763571,0.00271535,0.378655,0.422414,0.815575,0.241523,0.976287,0.738652,0.335928,0.404965,0.271058,0.170426,0.864044,0.402527,0.406849,0.972571,0.0380825,0.785035,0.939676,0.0325096,0.606948,0.930199,0.204942,0.666509,0.538607,0.68818,0.115614,0.304151,0.575966,0.371254,0.537665,0.679993,0.527416,0.509452,0.573897,0.391051,0.90159,0.80956,0.763345,0.411525,0.358556,0.479503,0.512148,0.791896,0.666283,0.116818,0.304054,0.379678,0.791753,0.235472,0.296567,0.873682,0.580397,0.989456,0.392543,0.317589,0.702548,0.413484,0.689448,0.232347,0.976447,0.0380248,0.163939,0.43077,0.646143,0.862055,0.239644,0.274876,0.0436946,0.438939,0.487361,0.130294,0.812218,0.332165,0.325993,0.0670416,0.151489,0.240636,0.460501,0.552231,0.361175,0.594507,0.907829,0.538166,0.696435,0.843926,0.400957,0.61783,0.53914,0.627514,0.067897,0.210317,0.992528,0.238482,0.386274,0.358075,0.285162,0.457857,0.123108,0.828444,0.959549,0.00130409,0.324352,0.301396,0.0936045,0.830571,0.183892,0.245645,0.668018,0.579802,0.506297,0.693446,0.719613,0.792613,0.363689,0.533869,0.695357,0.799062,0.917856,0.0255902,0.936546,0.276765,0.918242,0.642734,0.349753,0.689699,0.474632,0.690153,0.459245,0.152112,0.33754,0.54877,0.733814,0.13054,0.420225,0.261471,0.764772,0.544755,0.414122,0.548687,0.951863,0.0309451,0.729738,0.560751,0.566139,0.769478,0.29646,0.496672,0.275984,0.404009,0.113267,0.695709,0.95529,0.539731,0.146001,0.537668,0.374915,0.902317,0.17244,0.933865,0.35542,0.0661173,0.433556,0.576309,0.881318,0.444143,0.225981,0.0730816,0.0683774,0.00654024,0.82391,0.40136,0.993144,0.396456,0.821214,0.398314,0.069673,0.269297,0.89111,0.659519,0.880071,0.733875,0.193023,0.83646,0.335162,0.606559,0.819953,0.350442,0.338309,0.820849,0.644158,0.566014,0.0931919,0.91916,0.281971,0.384612,0.058163,0.227651,0.61187,0.259484,0.855347,0.41731,0.126862,0.451635,0.831647,0.0445,0.316726,0.284381,0.98591,0.00340629,0.489031,0.504212,0.637518,0.98486,0.810428,0.129356,0.514837,0.744077,0.392977,0.201066,0.122293,0.544543,0.396637,0.64274,0.553049,0.959582,0.955989,0.432133,0.310239,0.223579,0.716082,0.780385,0.907151,0.644324,0.340011,0.168739,0.27274,0.29823,0.0203029,0.806338,0.59844,0.050217,0.674531,0.897575,0.519499,0.814815,0.764605,0.230121,0.772951,0.261788,0.746219,0.563582,0.425203,0.112936,0.313155,0.546993,0.54366,0.467369,0.410334,0.672368,0.576378,0.892272,0.085516,0.940175,0.614541,0.131232,0.427184,0.740743,0.454022,0.933945,0.218572,0.712536,0.743894,0.507252,0.575394,0.851207,0.0450158,0.857022,0.253657,0.32564,0.973944,0.594751,0.464368,0.462138,0.466624,0.215445,0.784308,0.0300136,0.128442,0.517243,0.594808,0.335957,0.68534,0.468405,0.43326,0.119372,0.838159,0.45761,0.515998,0.689842,0.948578,0.247201,0.24767,0.491447,0.00260878,0.7434,0.490843,0.00445169,0.000142038,0.66601,0.439333,0.399274,0.58991,0.298827,0.830376,0.110576,0.279915,0.735499,0.703183,0.73012,0.403669,0.118827,0.964607,0.0293453,0.0274159,0.401565,0.302174,0.957376,0.81038,0.430261,0.433785,0.510989,0.443675,0.00660038,0.509055,0.74013,0.559455,0.137499,0.696837,0.502884,0.65161,0.242865,0.202206,0.536044,0.0209463,0.960437,0.076627,0.0517957,0.950473,0.610473,0.136833,0.283623,0.110007,0.600618,0.0143833,0.149686,0.110361,0.537935,0.110582,0.821841,0.484384,0.0963025,0.881791,0.99669,0.140964,0.648225,0.721241,0.730108,0.572521,0.700555,0.603437,0.588014,0.433661,0.0155913,0.608137,0.719885,0.192471,0.567717,0.378451,0.742251,0.298836,0.192174,0.224502,0.0348496,0.0535258,0.588908,0.251487,0.342549,0.199336,0.915994,0.620401,0.98606,0.691137,0.993022,0.531923,0.999856,|0.374332,0.862904,0.434526,0.598144,0.00277817,0.71009,0.3839,0.217696,0.730405,0.379386,0.651958,0.515914,0.395571,0.421251,0.752693,0.611555,0.144856,0.492535,0.913088,0.146609,0.352276,0.422498,0.62462,0.806265,0.813431,0.397442,0.662679,0.617678,0.402405,0.371774,0.60444,0.124248,0.75434,0.199401,0.889766,0.179608,0.608024,0.545289,0.580444,0.96082,0.382878,0.134845,0.728901,0.869962,0.921548,0.202149,0.617884,0.335523,0.872374,0.201366,0.952266,0.797755,0.458988,0.186633,0.998479,0.711384,0.598533,0.507664,0.997441,0.779122,0.155333,0.80034,0.0197595,0.758119,0.196207,0.816844,0.467455,0.0452031,0.200739,0.0933267,0.81448,0.592073,0.182947,0.0812017,0.687915,0.958731,0.469491,0.600413,0.794835,0.973409,0.739673,0.0931643,0.337222,0.355978,0.0826175,0.116435,0.00375551,0.792048,0.0537303,0.584211,0.683279,0.650765,0.346876,0.184978,0.306265,0.139241,0.778357,0.450789,0.955427,0.559092,0.205338,0.504793,0.781952,0.152129,0.0639372,0.621409,0.666577,0.582898,0.568911,0.126884,0.152691,0.734528,0.29112,0.766075,0.881244,0.599041,0.573011,0.0810381,0.174023,0.458833,0.448479,0.942474,0.434664,0.878308,0.662794,0.258026,0.830999,0.19757,0.452495,0.920434,0.140529,0.388132,0.846549,0.0908448,0.643774,0.0439903,0.914693,0.1038,0.544633,0.934366,0.872513,0.278357,0.723392,0.560577,0.858339,0.261008,0.416769,0.633631,0.688131,0.691217,0.955395,0.1033,0.883618,0.976414,0.526186,0.757697,0.749906,0.51544,0.412487,0.342091,0.595364,0.863389,0.0722762,0.961758,0.104154,0.141752,0.39113,0.544323,0.372477,0.577581,0.932929,0.547207,0.837167,0.902804,0.191313,0.880238,0.433012,0.851025,0.0954615,0.509338,0.271788,0.306094,0.926931,0.311341,0.315322,0.86151,0.831784,0.151972,0.571941,0.458353,0.361863,0.538467,0.817054,0.910022,0.331787,0.128969,0.386307,0.506372,0.886681,0.361232,0.215042,0.55636,0.875826,0.901004,0.965933,0.133199,0.19049,0.88624,0.427773,0.265437,0.20849,0.82099,0.919413,0.871923,0.27326,0.386078,0.140276,0.997469,0.289816,0.871667,0.271128,0.24577,0.659731,0.226181,0.45328,0.890484,0.951596,0.885936,0.848325,0.801344,0.890385,0.959343,0.182179,0.497212,0.452465,0.471094,0.00544012,0.86845,0.974974,0.354127,0.582063,0.103047,0.0310702,0.360912,0.895014,0.998762,0.877665,0.292546,0.373216,0.499305,0.639828,0.566272,0.72205,0.962723,0.0935441,0.529613,0.587042,0.960318,0.0239624,0.126776,0.700072,0.0305094,0.654667,0.747111,0.359696,0.903185,0.70253,0.405666,0.01314,0.912362,0.470394,0.161693,0.986451,0.465771,0.810836,0.812845,0.477559,0.993062,0.737999,0.0180548,0.722464,0.386742,0.399732,0.126699,0.508498,0.884902,0.382827,0.944694,0.783878,0.450096,0.161157,0.747596,0.690707,0.947292,0.807664,0.40533,0.574357,0.289264,0.283193,0.717199,0.999656,0.343198,0.42374,0.152282,0.444589,0.82352,0.950556,0.585415,0.330872,0.848361,0.379436,0.293856,0.964536,0.53197,0.513366,0.602983,0.5446,0.516501,0.767377,0.102836,0.244735,0.239519,0.46363,0.0416701,0.995555,0.391035,0.432897,0.0951598,0.959337,0.194811,0.0963224,0.502612,0.736838,0.8539,0.297463,0.425596,0.300326,0.156478,0.24187,0.69334,0.841899,0.086432,0.069814,0.928732,0.52468,0.319199,0.586947,0.196087,0.617199,0.929972,0.362579,0.0687485,0.575022,0.308331,0.90444,0.0662303,0.982,0.476522,0.236816,0.843551,0.149337,0.919074,0.221134,0.417652,0.637973,0.323082,0.828276,0.687793,0.668417,0.762583,0.650194,0.208328,0.158214,0.258157,0.782233,0.0990226,0.928908,0.107647,0.392844,0.454577,0.459704,0.763807,0.188039,0.523826,0.860409,0.484846,0.0466103,0.951708,0.928087,0.273449,0.210578,0.0813023,0.0812374,0.302785,0.696396,0.494875,0.662479,0.323575,0.451024,0.279792,0.0210987,0.916278,0.285679,0.693126,0.882822,0.862801,0.5814,0.926537,0.0592777,0.74738,0.206991,0.686878,0.386308,0.0662492,0.0415416,0.357563,0.636042,0.564327,0.938011,0.849346,0.753022,0.867729,0.515314,0.94639,0.451967,0.546346,0.315085,0.829826,0.24535,0.594599,0.422267,0.480917,0.0854705,0.0256053,0.314344,0.823168,0.137646,0.999239,0.277271,0.640348,0.274336,0.617767,0.472779,0.156117,0.946387,0.62925,0.688031,0.0133424,0.102647,0.94045,0.797968,0.60214,0.678205,0.245305,0.0650452,0.527003,0.356045,0.787297,0.97017,0.212358,0.566575,0.165581,0.447592,0.363104,0.452027,0.64921,0.302888,0.168595,0.247238,0.40559,0.326647,0.128549,0.152615,0.641155,0.602051,0.0323568,0.957141,0.237938,0.136206,0.118398,0.785432,0.441307,0.415935,0.0431644,0.392234,0.907433,0.837012,0.853119,0.439946,0.548167,0.456427,0.695579,0.373371,0.861032,0.533085,0.903125,0.619672,0.773985,0.198767,0.184046,0.101442,0.194551,0.0196646,0.602756,0.504901,0.922188,0.845229,0.657412,0.0949888,0.794674,0.938071,0.863035,0.158221,0.0257065,0.0405522,0.278436,0.454911,0.878452,0.33937,0.259111,0.141951,0.53755,0.0936809,0.865312,0.361843,0.397584,0.490898,0.872435,0.302198,0.982453,0.302067,0.333707,0.462545,0.615306,0.894309,0.532121,0.390855,0.955082,0.0487783,0.183072,0.854072,0.459436,0.224545,0.648405,0.15814,0.629736,0.307291,0.891182,0.801377,0.267485,0.514461,0.503057,0.0747131,0.959813,0.694859,0.325716,0.174535,0.497546,0.000854254,0.214861,0.847491,0.00256741,0.824259,0.5068,0.202723,0.292826,0.100848,0.771333,0.511251,0.578086,0.197035,0.215909,0.509681,0.762711,0.537207,0.499522,0.22188,0.742348,0.225854,0.533692,0.73988,0.479694,0.0692968,0.134098,0.105582,0.243044,0.283142,0.165476,0.120135,0.810458,0.617452,0.59312,0.357628,0.743806,0.505798,0.658589,0.640384,0.86366,0.784303,0.502169,0.556039,0.195603,0.472776,0.558828,0.0760244,0.563489,0.585943,0.403329,0.845044,0.455318,0.483766,0.848593,0.561634,0.764297,0.404034,0.55467,0.351523,0.395397,0.43352,0.61111,0.421819,0.738271,0.372265,0.63719,0.891136,0.277049,0.720348,0.418066,0.255362,0.979874,0.079056,0.107037,0.915946,0.641563,0.226622,0.435275,0.0624384,0.388941,0.964095,0.810236,0.574502,0.874063,0.190603,0.541061,0.283076,0.742653,0.0267229,0.232142,0.400594,0.801255,0.793861,0.510668,0.14581,0.937542,0.510221,0.0638688,0.794301,0.171585,0.0227679,0.266917,0.130888,0.595972,0.952217,0.523703,0.739288,0.182817,0.740091,0.450116,0.0295737,0.648951,0.793734,0.699122,0.482582,0.492487,0.862204,0.476082,0.368379,0.39323,0.909833,0.972433,0.00489026,0.685651,0.036972,0.776876,0.524381,0.490638,0.479985,0.211253,0.955418,0.745226,0.290855,0.214761,0.248231,0.13588,0.0781761,0.541897,0.307908,0.36292,0.484095,0.299064,0.787374,0.210256,0.0424763,0.338615,0.34746,0.490058,0.440253,0.825852,0.275974,0.451695,0.946386,0.715617,0.891656,0.276933,0.388208,0.368014,0.0988204,0.820561,0.670461,0.94842,0.859414,0.65988,0.0630616,0.403377,0.135044,0.0692399,0.214559,0.115489,0.659369,0.188725,0.237598,0.382889,0.980689,0.730405,0.246787,0.807179,0.817193,0.574437,0.637257,0.796214,0.29347,0.466892,0.223667,0.852827,0.766912,0.612145,0.629912,0.896796,0.179601,0.914127,0.306004,0.388366,0.81324,0.172535,0.186907,0.0689282,0.46467,0.390098,0.851129,0.690523,0.241098,0.896711,0.646997,0.458307,0.591898,0.407075,0.0692756,0.697225,0.136816,0.317246,0.458323,0.957016,0.0631773,0.157774,0.715141,0.504365,0.852319,0.390754,0.216069,0.746098,0.397214,0.113652,0.0280709,0.251679,0.0630073,0.494012,0.363272,0.972941,0.230185,0.0420534,0.303452,0.289174,0.497588,0.907273,0.719163,0.292978,0.155839,0.319285,0.167338,0.634175,0.48928,0.711233,0.0757022,0.0748112,0.504359,0.675955,0.866584,0.054253,0.855861,0.44607,0.024767,0.158417,0.975054,0.169155,0.791695,0.443865,0.0774056,0.10106,0.0919796,0.32998,0.681266,0.653409,0.634531,0.713516,0.077865,0.725076,0.834421,0.627784,0.867505,0.810689,0.19403,0.0845162,0.645275,0.550467,0.478174,0.578529,0.212603,0.635018,0.913397,0.720364,0.870966,0.532579,0.186682,0.508274,0.874231,0.137771,0.395768,0.975145,0.621345,0.602212,0.356628,0.505939,0.292479,0.474306,0.267263,0.895619,0.38939,0.406553,0.990925,0.286138,0.902119,0.90039,0.354049,0.0203182,0.729055,0.749886,0.388485,0.161844,0.989417,0.32497,0.735027,0.00684905,0.0418953,0.731337,0.505019,0.811414,0.600104,0.344769,0.380145,0.513077,0.974857,0.347566,0.272199,0.267172,0.862636,0.55775,0.314002,0.719001,0.928496,0.324682,0.291096,0.478469,0.109025,0.384927,0.0914378,0.705356,0.0629579,0.96281,0.729421,0.18858,0.52058,0.387745,0.576622,0.536929,0.145842,0.749351,0.981731,0.30115,0.712439,0.348307,0.548463,0.559323,0.790167,0.958316,0.792338,0.396842,0.258117,0.684442,0.678685,0.725124,0.931346,0.120891,0.915182,0.70639,0.134801,0.693538,0.747784,0.330918,0.052237,0.591145,0.0511255,0.87043,0.686181,0.115557,0.547488,0.187061,0.00317645,0.0759878,0.795325,0.233303,0.311556,0.26618,0.181418,0.0788203,0.676848,0.648818,0.930612,0.350702,0.208679,0.895829,0.411549,0.0238662,0.582637,0.411457,0.831196,0.395443,0.031031,0.185641,0.120695,0.238764,0.0982321,0.439135,0.414155,0.573125,0.866448,0.00950336,0.684696,0.502596,0.531586,0.561837,0.204968,0.383918,0.025758,0.310006,0.20871,0.9258,0.0521088,0.832203,0.0422657,0.0374472,0.983951,0.327742,0.921706,0.114766,0.782166,0.381472,0.200226,0.588322,0.019641,0.703818,0.329209,0.470604,0.0427433,0.379731,0.218427,0.534588,0.161414,0.856066,0.165923,0.684357,|0.470066,0.117318,0.548652,0.0306773,0.145359,0.198245,0.984096,0.363085,0.318018,0.990717,0.589776,0.551039,0.853406,0.120749,0.707287,0.293383,0.186184,0.460946,0.139449,0.573788,0.448433,0.406264,0.205884,0.468936,0.151497,0.267452,0.728077,0.324603,0.733726,0.146159,0.0132627,0.191811,0.0312144,0.919019,0.0337643,0.13181,0.722228,0.290419,0.90828,0.877503,0.988953,0.849314,0.698145,0.610119,0.745769,0.791422,0.0498466,0.17871,0.557363,0.815044,0.0050208,0.623913,0.639675,0.31985,0.784589,0.611866,0.86763,0.932052,0.429906,0.898759,0.775582,0.961815,0.426829,0.548127,0.269841,0.924399,0.18385,0.0297655,0.778434,0.629962,0.135283,0.214153,0.747331,0.98433,0.396145,0.260262,0.886286,0.15092,0.934986,0.067205,0.537493,0.524956,0.399656,0.357525,0.607666,0.517043,0.400016,0.545319,0.679596,0.0287721,0.128015,0.106215,0.91629,0.583382,0.408434,0.149576,0.218426,0.304711,0.718039,0.897278,0.568674,0.260813,0.694316,0.407718,0.249572,0.198852,0.717794,0.606504,0.532636,0.341424,0.0166671,0.0410433,0.843993,0.609311,0.179062,0.937264,0.322204,0.0631005,0.479471,0.905775,0.405819,0.546688,0.30538,0.406393,0.365092,0.385944,0.87668,0.815257,0.876048,0.368551,0.611193,0.124236,0.0528783,0.934418,0.646885,0.712533,0.746553,0.70708,0.486967,0.900582,0.287379,0.226624,0.283599,0.708201,0.448417,0.850964,0.772195,0.704179,0.132836,0.138078,0.447083,0.29419,0.456452,0.325371,0.0994079,0.97855,0.488834,0.0394607,0.186554,0.669003,0.123778,0.774965,0.818887,0.876081,0.61347,0.827072,0.613728,0.267366,0.813781,0.710265,0.145423,0.0918998,0.841962,0.0314681,0.075685,0.786415,0.0773548,0.950461,0.254163,0.834424,0.857601,0.163025,0.762385,0.324331,0.807067,0.297486,0.412332,0.647548,0.954002,0.517922,0.862506,0.485674,0.965598,0.130388,0.760681,0.0794123,0.946283,0.551596,0.142712,0.274881,0.00250071,0.0296537,0.304101,0.657929,0.585613,0.572161,0.24247,0.291199,0.660171,0.346804,0.161361,0.539723,0.491501,0.986948,0.14743,0.856659,0.385925,0.0871687,0.00486457,0.96303,0.739369,0.728286,0.970034,0.787984,0.30516,0.372846,0.983232,0.882292,0.243171,0.928979,0.0789869,0.524076,0.220224,0.404993,0.377711,0.298489,0.422945,0.392669,0.729345,0.249178,0.94664,0.52617,0.0108793,0.0360386,0.944922,0.0593215,0.716798,0.0539537,0.383358,0.69964,0.570268,0.752069,0.778115,0.774316,0.101158,0.844603,0.831865,0.9174,0.305051,0.807665,0.567192,0.592578,0.956409,0.798211,0.541753,0.433325,0.356116,0.581814,0.244929,0.57429,0.336553,0.698843,0.0609267,0.898355,0.00586814,0.614119,0.619306,0.450071,0.290677,0.890241,0.5654,0.340928,0.59579,0.211228,0.0390643,0.463722,0.314177,0.118918,0.457986,0.0675803,0.223932,0.975557,0.841314,0.661006,0.62074,0.800951,0.46579,0.956619,0.444235,0.137774,0.0582163,0.205499,0.511373,0.969648,0.73945,0.15195,0.228478,0.187595,0.916232,0.457086,0.433596,0.738494,0.296224,0.249791,0.72969,0.909608,0.680796,0.335161,0.0258701,0.143767,0.527355,0.352476,0.518319,0.820032,0.735857,0.807147,0.0194992,0.338957,0.0693946,0.932735,0.704304,0.653708,0.249762,0.415314,0.0680394,0.752411,0.499612,0.140364,0.155096,0.175124,0.140037,0.247092,0.225279,0.20564,0.187853,0.0351928,0.407121,0.95237,0.98606,0.767743,0.473249,0.986981,0.467351,0.119538,0.796792,0.893478,0.419745,0.902912,0.405716,0.451566,0.96352,0.579511,0.0874028,0.160851,0.930674,0.641434,0.712944,0.812351,0.492433,0.557844,0.585066,0.0157049,0.7584,0.639288,0.906829,0.662842,0.494457,0.674968,0.938966,0.197046,0.469674,0.175022,0.825508,0.805506,0.102792,0.63783,0.246498,0.930785,0.345291,0.831803,0.0923035,0.471398,0.139733,0.796542,0.78252,0.815847,0.862048,0.00715673,0.00611234,0.751169,0.424555,0.0333128,0.0936422,0.194081,0.975829,0.238829,0.847086,0.149604,0.777192,0.115527,0.53209,0.0692216,0.91188,0.577226,0.509706,0.728869,0.0340828,0.929681,0.951143,0.0909542,0.374795,0.0712909,0.763465,0.782774,0.719559,0.690562,0.0110838,0.0157264,0.0931752,0.573915,0.287784,0.896989,0.94876,0.535027,0.255513,0.169187,0.290895,0.401326,0.482372,0.291698,0.361762,0.886036,0.500523,0.406413,0.35698,0.435585,0.5149,0.543456,0.765862,0.414156,0.90739,0.744539,0.816871,0.229064,0.337191,0.621599,0.823367,0.508584,0.328204,0.429691,0.853638,0.86205,0.0291934,0.0311233,0.182238,0.728124,0.830619,0.295006,0.607357,0.975844,0.839078,0.453288,0.962811,0.757653,0.328845,0.870883,0.0425034,0.478933,0.303575,0.176726,0.679531,0.733966,0.510295,0.417323,0.330177,0.133464,0.44115,0.461364,0.915318,0.0709119,0.880467,0.599635,0.902765,0.173629,0.316339,0.476212,0.131273,0.774739,0.464861,0.771996,0.427063,0.0596209,0.332089,0.041603,0.991531,0.0807391,0.70005,0.568408,0.640822,0.741931,0.885438,0.0414348,0.528953,0.916836,0.352864,0.205369,0.689704,0.602944,0.717973,0.680182,0.446765,0.878861,0.937674,0.535311,0.136511,0.705088,0.108011,0.267582,0.145915,0.651681,0.683036,0.905763,0.164679,0.626062,0.368174,0.31316,0.592113,0.0630287,0.472795,0.665783,0.37856,0.31822,0.0366086,0.640185,0.422045,0.647314,0.150252,0.889377,0.126419,0.986881,0.612937,0.401398,0.594501,0.333821,0.773493,0.779213,0.0727924,0.968203,0.292804,0.883331,0.468956,0.420758,0.509887,0.399652,0.31751,0.199965,0.700513,0.955882,0.12633,0.447185,0.735572,0.579979,0.403423,0.188103,0.722543,0.283743,0.128056,0.744672,0.103762,0.513887,0.0824583,0.386946,0.181828,0.636877,0.264433,0.89243,0.795132,0.589723,0.133705,0.0508984,0.296407,0.493697,0.750498,0.546412,0.777935,0.366088,0.132634,0.629196,0.0439985,0.473749,0.41781,0.137847,0.878654,0.7261,0.073538,0.81713,0.263333,0.051542,0.686669,0.835796,0.422301,0.959792,0.468105,0.916674,0.794163,0.467578,0.969541,0.949153,0.561629,0.174689,0.0822883,0.0252825,0.535309,0.606094,0.973563,0.675888,0.653917,0.250972,0.993292,0.340319,0.354989,0.775269,0.739072,0.321369,0.22681,0.605467,0.00291431,0.189454,0.412346,0.258472,0.259346,0.137755,0.886913,0.211925,0.122883,0.231201,0.904078,0.611888,0.415128,0.57495,0.353365,0.873207,0.575472,0.243605,0.168016,0.286888,0.0377691,0.111717,0.245626,0.255664,0.0157941,0.584508,0.503092,0.121554,0.806244,0.312706,0.135708,0.0873007,0.288008,0.256998,0.671705,0.202164,0.959892,0.650635,0.956464,0.379679,0.487397,0.294186,0.429029,0.126273,0.561222,0.0355262,0.176923,0.518884,0.764643,0.857389,0.980477,0.781776,0.783449,0.570736,0.473152,0.548011,0.849346,0.0908815,0.126918,0.162759,0.506993,0.666359,0.961919,0.810217,0.985621,0.647395,0.000977874,0.797723,0.950894,0.477475,0.885342,0.298046,0.613935,0.789334,0.3827,0.204911,0.425589,0.570281,0.885127,0.965089,0.275117,0.853282,0.342814,0.497441,0.771638,0.751828,0.0426325,0.452166,0.782443,0.112448,0.339064,0.649929,0.659161,0.637053,0.092001,0.814181,0.00442958,0.315111,0.16558,0.437842,0.869261,0.927649,0.806353,0.375423,0.254476,0.549395,0.904101,0.397466,0.749185,0.469698,0.605506,0.333924,0.870249,0.337641,0.86096,0.938253,0.480849,0.501816,0.988019,0.265335,0.635554,0.0928537,0.829631,0.0952605,0.656177,0.609517,0.362062,0.146939,0.0513582,0.0801646,0.0522568,0.429718,0.972162,0.450058,0.625714,0.0582685,0.535171,0.488706,0.388713,0.725791,0.790725,0.593349,0.664128,0.0328525,0.817494,0.559711,0.524317,0.322762,0.739306,0.444963,0.450232,0.52365,0.184977,0.529639,0.310463,0.752201,0.37498,0.260207,0.663603,0.832107,0.178937,0.353671,0.690306,0.558506,0.991803,0.577177,0.431362,0.562944,0.764251,0.866545,0.179657,0.712888,0.726377,0.895372,0.341096,0.521231,0.383601,0.734663,0.994682,0.372875,0.478016,0.646967,0.977257,0.337619,0.845584,0.806456,0.737879,0.153867,0.456535,0.519196,0.355976,0.641998,0.0374593,0.853274,0.782015,0.194779,0.497924,0.402353,0.477403,0.741394,0.983049,0.0141179,0.368103,0.640909,0.172585,0.220253,0.824331,0.383019,0.104817,0.288682,0.792211,0.920289,0.177402,0.63288,0.842587,0.53834,0.00308603,0.650324,0.198397,0.628974,0.323451,0.736449,0.501027,0.860886,0.896996,0.0931773,0.120139,0.212194,0.828535,0.0721181,0.862811,0.790839,0.226174,0.101689,0.560814,0.756206,0.446347,0.961295,0.171694,0.00784719,0.208485,0.702431,0.926487,0.620604,0.937334,0.443946,0.371677,0.257048,0.366252,0.262959,0.0238979,0.620349,0.275416,0.379609,0.84853,0.410378,0.377013,0.622882,0.191195,0.139613,0.8192,0.919857,0.620862,0.789067,0.934316,0.382156,0.110766,0.289672,0.945249,0.0178289,0.27902,0.266162,0.286523,0.300401,0.199089,0.929488,0.601945,0.367027,0.399647,0.556353,0.217824,0.32501,0.234809,0.575162,0.718496,0.951164,0.0909362,0.861827,0.288937,0.241561,0.925441,0.828679,0.11434,0.242044,0.0409964,0.880626,0.985668,0.12635,0.77914,0.490818,0.90653,0.340785,0.602236,0.487419,0.934902,0.0427393,0.454489,0.686262,0.0627452,0.831213,0.464908,0.972025,0.321606,0.341264,0.902178,0.963058,0.564346,0.94173,0.939615,0.677088,0.599594,0.0938188,0.545808,0.270822,0.826453,0.389055,0.662955,0.588109,0.754319,0.768489,0.00240815,0.148758,0.717747,0.446048,0.313292,0.927681,0.407521,0.0777371,0.709249,0.51486,0.653858,0.38824,0.590338,0.939206,0.448974,0.938444,0.762123,0.992075,0.568608,0.945217,0.437848,0.580562,0.057376,0.5366,0.574807,0.947606,0.485603,0.217716,0.224738,0.270914,0.0207502,0.0691626,0.865011,0.0241328,|0.174297,0.417619,0.368601,0.620456,0.867948,0.997032,0.121186,0.540265,0.128338,0.934224,0.227942,0.203103,0.49522,0.302303,0.624453,0.0593368,0.246519,0.585466,0.358853,0.710877,0.792004,0.231197,0.206552,0.948828,0.402708,0.0154441,0.355711,0.662078,0.663113,0.40945,0.132306,0.0726382,0.476943,0.902482,0.00101173,0.724783,0.81892,0.306191,0.647246,0.00112736,0.376057,0.0765492,0.938839,0.518603,0.777766,0.421819,0.619335,0.661205,0.351039,0.702851,0.218702,0.602238,0.0181873,0.00410563,0.163267,0.429718,0.542763,0.377015,0.964123,0.940742,0.0664041,0.650788,0.515964,0.883185,0.423722,0.390189,0.204886,0.864314,0.328839,0.212817,0.9586,0.274936,0.922083,0.158731,0.633987,0.641709,0.933438,0.40641,0.17642,0.957714,0.752535,0.469614,0.443228,0.460774,0.59003,0.448656,0.688,0.475669,0.251716,0.412958,0.30699,0.388632,0.0129606,0.341405,0.181198,0.944868,0.112017,0.648453,0.750535,0.292854,0.982678,0.39953,0.125396,0.317915,0.790735,0.359902,0.507752,0.162634,0.233012,0.869736,0.284484,0.12385,0.113151,0.0302043,0.960959,0.763706,0.513948,0.967243,0.136303,0.372226,0.0674977,0.50223,0.423977,0.704492,0.71499,0.103259,0.830648,0.190626,0.248694,0.162506,0.73841,0.588113,0.755061,0.382791,0.575132,0.0609617,0.516485,0.439923,0.0650738,0.268603,0.384586,0.516593,0.616089,0.0915953,0.569322,0.926795,0.733611,0.689707,0.768442,0.265454,0.289685,0.278553,0.665363,0.0454156,0.833104,0.0492699,0.0657834,0.851928,0.169509,0.603074,0.248753,0.595355,0.0796803,0.788402,0.749325,0.681346,0.104288,0.887313,0.601508,0.165495,0.843556,0.796497,0.533572,0.413937,0.782508,0.296777,0.0192472,0.23075,0.864035,0.544977,0.543915,0.117921,0.947452,0.786338,0.0555471,0.245883,0.87167,0.352124,0.524574,0.0334356,0.725887,0.104354,0.386002,0.451216,0.631338,0.35906,0.991566,0.177215,0.410165,0.209921,0.423073,0.403558,0.456023,0.0811299,0.134067,0.0827741,0.659889,0.725707,0.185874,0.201396,0.891821,0.866134,0.832718,0.697209,0.119274,0.86477,0.71442,0.330395,0.298229,0.614523,0.71606,0.26248,0.894466,0.650161,0.361464,0.99838,0.426621,0.452679,0.261342,0.486259,0.946091,0.157405,0.577254,0.750029,0.0480423,0.958682,0.114999,0.539249,0.239313,0.624799,0.128744,0.872646,0.446303,0.603753,0.217881,0.832691,0.0533755,0.44239,0.571767,0.191084,0.621985,0.798096,0.39887,0.269482,0.978882,0.0626093,0.717478,0.0942437,0.00647658,0.898346,0.403456,0.0575626,0.350829,0.184248,0.813352,0.675245,0.325033,0.19173,0.234503,0.0634708,0.718778,0.71048,0.423258,0.676373,0.969848,0.0132546,0.0986892,0.349186,0.872426,0.839104,0.802158,0.858439,0.225275,0.722767,0.405989,0.814922,0.939384,0.530895,0.850022,0.263049,0.250482,0.487118,0.837153,0.508433,0.128709,0.896933,0.454307,0.686062,0.746848,0.282317,0.0512658,0.351486,0.104008,0.37627,0.823217,0.518891,0.707646,0.417211,0.315316,0.663233,0.540327,0.215304,0.0228675,0.102719,0.633318,0.333257,0.241154,0.968868,0.411364,0.821552,0.153079,0.948028,0.0298878,0.612443,0.186739,0.871132,0.189762,0.00590223,0.519544,0.269404,0.319042,0.229266,0.921801,0.73907,0.998033,0.857234,0.13914,0.702042,0.295865,0.661758,0.365387,0.435946,0.654835,0.685129,0.535485,0.034035,0.681608,0.723697,0.808303,0.225898,0.991393,0.713403,0.936159,0.780988,0.97811,0.836125,0.117622,0.848252,0.51484,0.208894,0.521118,0.639797,0.641461,0.128037,0.174985,0.996464,0.444344,0.128631,0.798201,0.548021,0.210659,0.695823,0.0685791,0.224525,0.653208,0.300543,0.822528,0.997837,0.794958,0.814967,0.446287,0.892251,0.632736,0.813174,0.369373,0.382731,0.649982,0.842678,0.53569,0.421427,0.0442296,0.102832,0.0432616,0.765486,0.648712,0.485796,0.510054,0.357989,0.907762,0.987385,0.862703,0.142686,0.054453,0.597775,0.775048,0.321134,0.846016,0.824162,0.206049,0.140515,0.192337,0.496252,0.746101,0.434592,0.891588,0.0789862,0.277303,0.474044,0.356358,0.159832,0.541258,0.807684,0.76358,0.761245,0.545023,0.699068,0.440109,0.0488278,0.111892,0.813873,0.139099,0.7771,0.113313,0.732698,0.184719,0.199774,0.656355,0.807807,0.459212,0.707923,0.483954,0.918479,0.560373,0.73182,0.952393,0.667462,0.74209,0.75743,0.718195,0.654021,0.281406,0.990684,0.633331,0.0780097,0.0650086,0.0350501,0.150442,0.888416,0.385338,0.918651,0.412088,0.576215,0.376086,0.912824,0.618632,0.297123,0.299344,0.568031,0.796187,0.18522,0.403031,0.177046,0.438164,0.111291,0.371904,0.024835,0.293894,0.613699,0.915063,0.143314,0.691587,0.69147,0.88314,0.796322,0.976975,0.405355,0.347906,0.5663,0.0684388,0.709527,0.401045,0.284819,0.0680659,0.333729,0.467856,0.365823,0.217948,0.274862,0.961382,0.0335363,0.569291,0.443509,0.734798,0.285682,0.625652,0.881581,0.519783,0.564607,0.147902,0.558764,0.191594,0.604426,0.303347,0.114565,0.344371,0.399879,0.15313,0.563335,0.222972,0.44509,0.577052,0.266136,0.792478,0.0160705,0.70108,0.91642,0.0635663,0.539262,0.0760704,0.473944,0.245293,0.819334,0.283757,0.572483,0.877312,0.197692,0.815487,0.9911,0.61342,0.83972,0.274721,0.634935,0.62379,0.670595,0.539702,0.950108,0.86319,0.390187,0.56267,0.812542,0.0834613,0.731217,0.0493807,0.706565,0.58559,0.164376,0.655702,0.209184,0.193711,0.584252,0.279009,0.0644981,0.348272,0.475783,0.200532,0.543382,0.127036,0.890378,0.140795,0.483041,0.837004,0.435789,0.253585,0.8014,0.0158595,0.427384,0.499275,0.602955,0.78615,0.00585824,0.703596,0.657305,0.379365,0.949777,0.532643,0.52477,0.843995,0.0937393,0.623878,0.854667,0.943799,0.224852,0.284622,0.522886,0.631223,0.66835,0.797922,0.746766,0.850921,0.991088,0.744959,0.837074,0.899878,0.85858,0.502539,0.352898,0.466815,0.485276,0.84898,0.455885,0.995803,0.706407,0.696322,0.882306,0.446041,0.435284,0.786622,0.359174,0.420773,0.707626,0.601151,0.672344,0.0697516,0.862764,0.338204,0.286084,0.185896,0.118081,0.914991,0.360183,0.0780197,0.649827,0.0851182,0.485361,0.480559,0.621672,0.590898,0.435512,0.885873,0.951654,0.990036,0.388572,0.091936,0.773349,0.590664,0.0597967,0.557542,0.403117,0.38338,0.263627,0.457791,0.231928,0.822251,0.170876,0.390467,0.586207,0.972247,0.330889,0.126111,0.615863,0.808352,0.855624,0.352795,0.773078,0.384029,0.372719,0.280578,0.665964,0.146439,0.479916,0.904127,0.383298,0.707005,0.223204,0.621187,0.0554433,0.39552,0.0456337,0.757652,0.482044,0.188506,0.759004,0.448545,0.298214,0.855103,0.0254923,0.126374,0.723218,0.938617,0.812651,0.661411,0.0966469,0.721382,0.263475,0.950648,0.555853,0.98798,0.746356,0.654803,0.623415,0.607191,0.376904,0.358901,0.378723,0.904979,0.0733477,0.964165,0.868831,0.282683,0.938646,0.848052,0.384634,0.421909,0.216378,0.480066,0.436379,0.0571166,0.559566,0.693497,0.296225,0.846925,0.666696,0.221868,0.46338,0.0103119,0.777479,0.856757,0.714085,0.3441,0.79546,0.213126,0.85566,0.334128,0.201326,0.222108,0.481219,0.771162,0.863252,0.510956,0.0797353,0.989363,0.451258,0.220736,0.2323,0.351941,0.328927,0.139039,0.586528,0.988604,0.244865,0.89283,0.482078,0.325808,0.668447,0.170816,0.261984,0.788602,0.714963,0.811846,0.53711,0.124624,0.74976,0.597601,0.172176,0.928693,0.6839,0.625016,0.501538,0.762953,0.593265,0.214256,0.790992,0.967241,0.92001,0.356619,0.788191,0.389358,0.314231,0.00548118,0.578152,0.159983,0.854285,0.703817,0.213738,0.258502,0.559783,0.402099,0.968315,0.0768148,0.683111,0.752048,0.367251,0.0121858,0.0498912,0.757576,0.338044,0.226613,0.87278,0.419215,0.479749,0.217195,0.575014,0.841129,0.717792,0.492041,0.838336,0.641082,0.685876,0.411259,0.53931,0.0361688,0.458928,0.0660605,0.912194,0.125234,0.211473,0.376568,0.976004,0.289563,0.497911,0.448972,0.106961,0.798232,0.498232,0.660132,0.49083,0.0744755,0.406129,0.926027,0.674343,0.621101,0.265872,0.339296,0.31789,0.489799,0.339968,0.0911996,0.194225,0.938649,0.212033,0.788944,0.59465,0.832765,0.291414,0.171119,0.26734,0.0466495,0.865507,0.730393,0.327262,0.0478138,0.968913,0.121973,0.811374,0.906288,0.700129,0.844163,0.414285,0.563122,0.442807,0.827898,0.0414832,0.924774,0.43013,0.481224,0.348264,0.941857,0.0423812,0.633546,0.828211,0.655253,0.93308,0.0418899,0.848236,0.763593,0.231772,0.00495052,0.906399,0.846623,0.276685,0.502648,0.571401,0.148001,0.618295,0.508085,0.00118363,0.468323,0.261306,0.189901,0.335489,0.259408,0.781635,0.242812,0.059163,0.89576,0.474009,0.686924,0.618943,0.69644,0.343724,0.693334,0.138749,0.522798,0.642133,0.0284721,0.159454,0.953266,0.952679,0.405132,0.300535,0.446353,0.650718,0.738271,0.118291,0.224524,0.519432,0.993481,0.816633,0.330673,0.214792,0.495193,0.277451,0.82174,0.822655,0.112108,0.404111,0.595003,0.915572,0.43651,0.337693,0.703292,0.505397,0.166694,0.415772,0.271433,0.38176,0.0827299,0.813909,0.436415,0.481638,0.581716,0.101113,0.0695345,0.738723,0.095015,0.723275,0.793401,0.449741,0.163878,0.835473,0.119538,0.657144,0.408085,0.395577,0.450262,0.325002,0.353058,0.397168,0.543547,0.0902925,0.567713,0.790682,0.513562,0.239561,0.380185,0.952684,0.570761,0.815888,0.474671,0.676507,0.28354,0.388394,0.291463,0.914534,0.937696,0.131804,0.508773,0.178946,0.547944,0.997097,0.877308,0.545731,0.662809,0.805535,0.834759,0.925577,0.697854,0.280356,0.0180891,0.247303,0.172191,0.370234,0.239854,0.91553,0.250836,0.107683,0.370448,0.672213,0.923308,0.824417,|0.0672276,0.0138164,0.72024,0.0348272,0.00103998,0.0704264,0.556569,0.454852,0.585162,0.624203,0.794895,0.383974,0.963822,0.300061,0.676525,0.861244,0.897024,0.62307,0.135452,0.00622362,0.0612261,0.588832,0.384949,0.177846,0.367912,0.325864,0.833519,0.670304,0.992424,0.652999,0.435093,0.795941,0.0964856,0.894602,0.640889,0.190149,0.529175,0.434689,0.137009,0.649239,0.531656,0.447368,0.181329,0.635642,0.731583,0.549908,0.124944,0.474369,0.366963,0.952479,0.636377,0.379947,0.708136,0.839064,0.686342,0.0119516,0.346958,0.372264,0.69214,0.696982,0.618727,0.466254,0.324322,0.623768,0.416297,0.172382,0.580207,0.440141,0.602582,0.553657,0.246181,0.653852,0.275084,0.493392,0.530278,0.00273788,0.518737,0.393784,0.0928933,0.0267883,0.149626,0.0998264,0.00445175,0.474684,0.434009,0.0170566,0.567174,0.972208,0.620863,0.0358564,0.395753,0.644175,0.213776,0.109752,0.0948729,0.78971,0.317609,0.233588,0.85354,0.433063,0.0339384,0.718779,0.301912,0.833041,0.0573113,0.307007,0.0898076,0.500969,0.700987,0.98902,0.819402,0.0716574,0.397985,0.514102,0.493972,0.550587,0.981507,0.768753,0.685292,0.457925,0.361458,0.156857,0.908482,0.0450481,0.174661,0.442934,0.475048,0.162383,0.467753,0.423592,0.106858,0.632736,0.398379,0.697222,0.285895,0.929568,0.529177,0.261636,0.546111,0.844574,0.449115,0.43276,0.809973,0.950647,0.47326,0.0183491,0.557844,0.371508,0.944947,0.999334,0.838885,0.679616,0.215654,0.678048,0.874261,0.982919,0.124692,0.259915,0.867927,0.393391,0.51639,0.448333,0.221704,0.791269,0.832562,0.700797,0.517925,0.089192,0.523618,0.0637488,0.40588,0.574688,0.950781,0.397342,0.227583,0.63032,0.87378,0.0923275,0.567425,0.0734104,0.750646,0.163835,0.370938,0.338061,0.208497,0.33919,0.351965,0.00482821,0.075617,0.508647,0.668513,0.0162555,0.263004,0.562193,0.127023,0.950588,0.329105,0.592505,0.768285,0.146675,0.0379466,0.0627146,0.283698,0.369538,0.0901619,0.996959,0.294019,0.455375,0.663536,0.316309,0.156308,0.900867,0.0540155,0.310903,0.357519,0.142049,0.914453,0.53936,0.769997,0.231347,0.594868,0.34545,0.739758,0.79837,0.99353,0.669871,0.572469,0.790958,0.317204,0.756324,0.0919357,0.612348,0.0743806,0.763625,0.956111,0.983859,0.312151,0.247196,0.558888,0.899971,0.760635,0.456297,0.69422,0.790284,0.710672,0.672273,0.826207,0.547543,0.0313309,0.506991,0.0815716,0.290298,0.859988,0.860316,0.820598,0.995591,0.917126,0.0712916,0.0649309,0.184279,0.384402,0.0210875,0.448124,0.37437,0.222086,0.480063,0.587327,0.0999641,0.00263411,0.0884669,0.375724,0.0152955,0.932314,0.277849,0.92295,0.466092,0.0450905,0.44354,0.314059,0.944906,0.781772,0.528313,0.591357,0.0184889,0.0461666,0.393711,0.0253804,0.947878,0.180862,0.636517,0.389988,0.485855,0.974933,0.75728,0.408235,0.825826,0.527183,0.33931,0.950229,0.050154,0.176537,0.796511,0.341377,0.995899,0.760316,0.696901,0.36081,0.922291,0.213446,0.913711,0.219005,0.956373,0.894771,0.682526,0.254146,0.672621,0.217853,0.477125,0.781125,0.113449,0.176615,0.246204,0.0131172,0.288016,0.731151,0.435764,0.540245,0.459613,0.80233,0.0978555,0.0474809,0.842127,0.551004,0.465437,0.8217,0.88234,0.457478,0.630563,0.467667,0.0975694,0.244288,0.454318,0.648084,0.15084,0.394259,0.186333,0.162479,0.2039,0.546146,0.488848,0.929924,0.672966,0.26643,0.654277,0.933842,0.283192,0.660067,0.416732,0.243812,0.177599,0.141093,0.409419,0.577801,0.625975,0.429571,0.519514,0.318365,0.986395,0.185668,0.295437,0.995142,0.81041,0.0181318,0.0721053,0.364515,0.50497,0.847739,0.43962,0.765164,0.477611,0.0311586,0.063919,0.101253,0.812416,0.67494,0.781749,0.982279,0.809968,0.702831,0.645065,0.0847749,0.744173,0.153412,0.292799,0.0668967,0.277608,0.458916,0.185992,0.711679,0.772848,0.662792,0.239419,0.835947,0.220276,0.619051,0.24428,0.981334,0.619276,0.291876,0.555275,0.968226,0.884544,0.928654,0.367473,0.889752,0.786692,0.940533,0.842554,0.285597,0.227269,0.835576,0.771277,0.481572,0.248669,0.511412,0.367327,0.360433,0.300078,0.841122,0.768084,0.906331,0.411283,0.704702,0.0146722,0.653525,0.34288,0.738723,0.0489495,0.642571,0.426652,0.104247,0.102067,0.48488,0.156218,0.550673,0.857461,0.339615,0.50293,0.328319,0.337236,0.213755,0.874617,0.373098,0.759391,0.35905,0.0613076,0.81043,0.75033,0.239869,0.352634,0.243008,0.171658,0.335604,0.739804,0.00135219,0.924533,0.876828,0.0265549,0.516857,0.0286736,0.448641,0.864424,0.296902,0.252618,0.751112,0.0950371,0.485022,0.831161,0.283271,0.682009,0.221019,0.83613,0.236561,0.193948,0.889968,0.203331,0.705497,0.875082,0.209872,0.75528,0.55109,0.429913,0.711318,0.988679,0.798051,0.475754,0.20589,0.963111,0.743721,0.373477,0.493009,0.174525,0.614817,0.667913,0.835899,0.882295,0.791813,0.141039,0.821567,0.161542,0.382017,0.0653681,0.905902,0.764518,0.564036,0.268519,0.127809,0.480929,0.0167962,0.486798,0.951801,0.275259,0.594418,0.994985,0.0505468,0.814284,0.705245,0.880563,0.577849,0.0606943,0.0473453,0.274437,0.215014,0.400276,0.727328,0.904449,0.0739385,0.2806,0.510759,0.375964,0.666534,0.528079,0.153452,0.753116,0.642988,0.52584,0.602004,0.904549,0.714565,0.176844,0.728752,0.673726,0.919157,0.136783,0.63681,0.665278,0.136948,0.18362,0.110475,0.393496,0.832466,0.606194,0.110021,0.0412439,0.895997,0.740675,0.966355,0.45842,0.971168,0.338953,0.409389,0.584578,0.109984,0.275328,0.631,0.927131,0.830856,0.18137,0.264913,0.546519,0.578447,0.679592,0.669205,0.45623,0.949008,0.840842,0.281795,0.694129,0.698536,0.603499,0.512373,0.217088,0.0686232,0.0223888,0.741103,0.0835529,0.928307,0.0838698,0.87386,0.297125,0.00598705,0.189051,0.876044,0.984254,0.597812,0.367945,0.590252,0.42083,0.0915507,0.437268,0.356981,0.463321,0.781649,0.508383,0.0961261,0.0964735,0.2339,0.451499,0.74144,0.107332,0.167363,0.114762,0.661149,0.851544,0.00685531,0.721307,0.532588,0.574546,0.377927,0.87729,0.789334,0.121409,0.282544,0.854585,0.618604,0.751906,0.0149382,0.219473,0.925457,0.65327,0.136179,0.172188,0.390532,0.374838,0.124529,0.558257,0.363487,0.775249,0.79429,0.0690036,0.5187,0.155815,0.477049,0.0519494,0.891097,0.812088,0.419441,0.322773,0.697809,0.117657,0.82957,0.416859,0.178763,0.245178,0.342426,0.129203,0.961425,0.585221,0.924789,0.744535,0.581741,0.54696,0.0507586,0.715938,0.449635,0.323446,0.855531,0.970707,0.825215,0.935901,0.367744,0.527934,0.139149,0.219929,0.795686,0.676096,0.232699,0.594971,0.479171,0.422264,0.749059,0.680265,0.642528,0.16134,0.433872,0.877943,0.724139,0.646447,0.976529,0.568615,0.0683194,0.836755,0.48446,0.788135,0.667016,0.143817,0.964895,0.524561,0.767642,0.610359,0.295016,0.23104,0.666318,0.267225,0.473199,0.632419,0.695354,0.826091,0.245498,0.0578594,0.98776,0.767623,0.350839,0.101841,0.304187,0.678784,0.981798,0.374664,0.165157,0.768006,0.927588,0.972927,0.903738,0.37266,0.877262,0.459734,0.195942,0.461301,0.167684,0.0328797,0.939571,0.488875,0.284869,0.88464,0.215257,0.409922,0.0632809,0.136681,0.62351,0.87695,0.619508,0.176453,0.813656,0.900268,0.0509122,0.707545,0.414113,0.340937,0.10023,0.85012,0.296969,0.0370941,0.996587,0.343047,0.443078,0.0648503,0.941438,0.593378,0.783578,0.30613,0.742216,0.238442,0.393882,0.91482,0.565419,0.150039,0.0726777,0.0175366,0.113274,0.515625,0.343858,0.577449,0.72534,0.161051,0.283671,0.680921,0.418205,0.269441,0.678328,0.31342,0.237026,0.123254,0.380824,0.707378,0.571316,0.888071,0.291841,0.272498,0.92819,0.0859303,0.390902,0.451558,0.41812,0.775498,0.338926,0.13313,0.127927,0.797396,0.664799,0.893839,0.2631,0.604886,0.33308,0.807889,0.908873,0.92074,0.639334,0.629384,0.128525,0.0593773,0.57682,0.54174,0.729313,0.0526873,0.619564,0.425333,0.177641,0.347257,0.710668,0.66704,0.555247,0.0592697,0.53362,0.956228,0.650259,0.34186,0.703894,0.41046,0.0266045,0.946577,0.592295,0.444352,0.18493,0.81171,0.365741,0.856013,0.495443,0.480359,0.148066,0.967742,0.737016,0.404973,0.226362,0.0529903,0.579739,0.170385,0.620461,0.912027,0.482106,0.858847,0.614954,0.402825,0.959033,0.398125,0.637651,0.784302,0.447815,0.643722,0.862776,0.108879,0.584399,0.409186,0.706281,0.462147,0.322829,0.165704,0.379488,0.752297,0.321394,0.405293,0.479131,0.740221,0.106571,0.155319,0.985899,0.203067,0.674906,0.95224,0.411862,0.515854,0.669901,0.60522,0.494713,0.41873,0.609125,0.424085,0.608275,0.154483,0.833266,0.613148,0.434892,0.386821,0.309545,0.667323,0.682889,0.8072,0.615145,0.89007,0.396388,0.859579,0.273025,0.665002,0.345763,0.351041,0.829802,0.0214834,0.132529,0.794755,0.0327435,0.249838,0.827367,0.87083,0.426919,0.758394,0.11541,0.465587,0.4385,0.0228283,0.999042,0.236442,0.930947,0.460206,0.0840943,0.590698,0.831231,0.691276,0.0593984,0.794149,0.0783429,0.709011,0.840655,0.707165,0.554835,0.547725,0.0370201,0.813669,0.10073,0.472607,0.0358895,0.153191,0.0966908,0.00883842,0.626194,0.420755,0.425311,0.916121,0.0195351,0.647207,0.850543,0.299402,0.905486,0.581085,0.794852,0.169689,0.113895,0.705092,0.32719,0.581282,0.484255,0.0740812,0.727927,0.713862,0.160324,0.643638,0.932587,0.487055,0.540483,0.56409,0.783878,0.0995452,0.22959,0.628236,0.245868,0.767534,0.286765,0.877472,0.732791,0.294865,0.398446,0.581264,0.640219,0.701105,0.719532,0.153447,0.595297,0.47712,0.67242,0.0680469,0.831494,0.578158,|0.903799,0.986493,0.188123,0.719917,0.871083,0.799875,0.249247,0.989083,0.740141,0.00711715,0.999442,0.237919,0.939728,0.825269,0.481713,0.41764,0.667957,0.928664,0.352556,0.233291,0.876026,0.619975,0.425287,0.30903,0.0471541,0.71163,0.456051,0.925718,0.924927,0.39176,0.754095,0.936451,0.557744,0.817633,0.0297146,0.418987,0.190004,0.237154,0.882427,0.443973,0.461993,0.360751,0.085005,0.0800991,0.684119,0.436978,0.338625,0.988123,0.206762,0.0573235,0.161118,0.818606,0.734362,0.35497,0.934967,0.557691,0.0529009,0.132178,0.609846,0.673811,0.968656,0.898185,0.348568,0.17806,0.778808,0.240004,0.319253,0.460395,0.413874,0.774822,0.267596,0.962432,0.561105,0.559486,0.198568,0.850085,0.0353275,0.25967,0.235984,0.826245,0.168987,0.0716342,0.839019,0.926212,0.756143,0.20782,0.614368,0.0426064,0.17933,0.381803,0.773847,0.872469,0.218475,0.923787,0.294817,0.231809,0.344474,0.543381,0.978204,0.371066,0.397245,0.296242,0.453084,0.34944,0.285527,0.722914,0.297312,0.021943,0.188169,0.649635,0.444408,0.351066,0.0288535,0.586258,0.120845,0.995656,0.070235,0.0454424,0.217345,0.332103,0.666427,0.687265,0.326472,0.672157,0.337645,0.879446,0.228065,0.557441,0.531692,0.808378,0.931588,0.389436,0.0784662,0.126373,0.172731,0.120631,0.442895,0.263086,0.14263,0.0947579,0.295622,0.525926,0.272928,0.162825,0.273709,0.207644,0.745345,0.0337487,0.316037,0.3722,0.678545,0.522159,0.888063,0.459257,0.703275,0.878512,0.600879,0.241163,0.360364,0.4797,0.741819,0.504669,0.743326,0.241604,0.208384,0.20063,0.434149,0.232863,0.0710669,0.654812,0.46913,0.448346,0.912806,0.840319,0.886497,0.483751,0.357738,0.184424,0.924693,0.525226,0.506989,0.345617,0.844103,0.589441,0.591214,0.836026,0.658663,0.959036,0.06399,0.822023,0.594413,0.629067,0.859755,0.276076,0.3968,0.669621,0.333197,0.10404,0.382966,0.568112,0.523326,0.85785,0.369591,0.62489,0.789507,0.0493721,0.842157,0.643107,0.062339,0.8982,0.843308,0.0637946,0.258932,0.765669,0.762603,0.49647,0.308563,0.65564,0.527748,0.305867,0.50944,0.177899,0.620993,0.198438,0.112609,0.482482,0.925264,0.397771,0.204377,0.552162,0.280956,0.537435,0.0611346,0.334538,0.995305,0.742887,0.0838076,0.192323,0.116388,0.948191,0.300083,0.249823,0.595568,0.785556,0.276958,0.582783,0.952951,0.70489,0.427572,0.0746445,0.461025,0.627168,0.139958,0.373803,0.47872,0.11894,0.689341,0.465241,0.832889,0.798232,0.0355833,0.507626,0.852223,0.0179313,0.275357,0.968147,0.108448,0.5703,0.571402,0.916808,0.415221,0.604649,0.788078,0.528834,0.693042,0.54418,0.395278,0.508527,0.690334,0.0103044,0.679964,0.0369476,0.996167,0.754115,0.487995,0.502977,0.212112,0.992874,0.0984233,0.329197,0.29057,0.629848,0.934934,0.772111,0.55122,0.905192,0.192296,0.636173,0.0392652,0.61587,0.705602,0.530167,0.523598,0.89676,0.229692,0.25549,0.581725,0.985272,0.786331,0.161648,0.733574,0.89166,0.533035,0.970237,0.749707,0.827331,0.951093,0.377531,0.0943049,0.414268,0.241811,0.289751,0.320404,0.0583106,0.101379,0.471834,0.116126,0.17781,0.786283,0.869729,0.595297,0.678038,0.245629,0.233762,0.349337,0.596885,0.284623,0.826632,0.567344,0.757443,0.522393,0.440174,0.235817,0.118919,0.0179139,0.874444,0.783111,0.613278,0.412224,0.983195,0.902786,0.807173,0.726325,0.393093,0.363446,0.395846,0.0934766,0.136401,0.534086,0.51021,0.556912,0.38029,0.0220073,0.996314,0.565214,0.3289,0.0550682,0.191687,0.316714,0.876158,0.0283063,0.091998,0.000551283,0.732572,0.0925502,0.355628,0.710753,0.292758,0.577989,0.150696,0.993053,0.110125,0.529769,0.985669,0.217217,0.768021,0.647683,0.98673,0.728829,0.895222,0.366477,0.207097,0.910049,0.846055,0.654047,0.284654,0.554116,0.51066,0.797111,0.889969,0.16183,0.125775,0.527444,0.248399,0.376807,0.547182,0.998237,0.502154,0.333355,0.473221,0.314639,0.721101,0.864815,0.743623,0.945088,0.0451055,0.205396,0.999882,0.590158,0.0604519,0.686755,0.137668,0.376906,0.604187,0.118096,0.518951,0.375128,0.558734,0.278335,0.535896,0.548301,0.833712,0.402582,0.532267,0.518786,0.803522,0.447886,0.113791,0.690628,0.10485,0.0380134,0.112601,0.157782,0.0778584,0.773865,0.335682,0.549043,0.693574,0.671574,0.798412,0.528923,0.868794,0.378752,0.095852,0.0651716,0.257098,0.112346,0.757091,0.968356,0.911805,0.185649,0.450011,0.746993,0.894636,0.798071,0.958062,0.450105,0.65591,0.380067,0.621128,0.123,0.754385,0.784028,0.805755,0.291042,0.0943291,0.64199,0.975974,0.656753,0.0529299,0.872586,0.1182,0.509013,0.275362,0.148361,0.117258,0.457418,0.43908,0.39021,0.618172,0.818853,0.224708,0.910973,0.996312,0.0694943,0.900223,0.204824,0.576123,0.834577,0.124628,0.00260341,0.420454,0.259604,0.35589,0.326994,0.192613,0.795651,0.796173,0.839331,0.310834,0.652905,0.992532,0.191354,0.845031,0.253261,0.471807,0.684237,0.415841,0.409484,0.654452,0.316765,0.0646321,0.269945,0.535512,0.679005,0.918287,0.233751,0.545648,0.102805,0.719717,0.396241,0.36755,0.957613,0.676776,0.0972004,0.854772,0.364704,0.839576,0.769304,0.189753,0.544231,0.771862,0.958309,0.85454,0.0194489,0.566286,0.249073,0.903236,0.889103,0.48656,0.271344,0.950059,0.359656,0.652219,0.899019,0.655092,0.459764,0.921597,0.697508,0.846141,0.475017,0.353547,0.130942,0.167318,0.355476,0.230656,0.949648,0.706038,0.815707,0.396455,0.942863,0.824971,0.60752,0.827788,0.705187,0.45013,0.0988237,0.758294,0.661325,0.114772,0.242074,0.571164,0.239216,0.182742,0.190399,0.812868,0.409784,0.665306,0.896412,0.993439,0.641043,0.443905,0.707185,0.469482,0.602659,0.804036,0.733729,0.352733,0.608558,0.0924771,0.864678,0.670915,0.933491,0.781367,0.370335,0.676943,0.0114446,0.0522553,0.489667,0.356758,0.465659,0.950422,0.983027,0.12809,0.858844,0.966018,0.539867,0.973288,0.197987,0.935995,0.818171,0.325052,0.245084,0.0507526,0.273965,0.981938,0.137283,0.337274,0.375926,0.971196,0.261588,0.287587,0.0409061,0.982506,0.234894,0.276635,0.997296,0.455509,0.536367,0.892556,0.936773,0.625685,0.106803,0.353848,0.202803,0.976699,0.960917,0.635755,0.673878,0.0605977,0.0979139,0.966582,0.228788,0.501067,0.751091,0.866986,0.661919,0.131307,0.863501,0.0151541,0.448084,0.132327,0.450163,0.489775,0.569526,0.291291,0.714266,0.948319,0.916599,0.933813,0.0825194,0.996355,0.56669,0.0239839,0.547085,0.516887,0.137877,0.918126,0.0326439,0.0413037,0.998364,0.218374,0.169547,0.697859,0.796456,0.251064,0.735598,0.761563,0.707075,0.273246,0.899111,0.086801,0.157309,0.442073,0.192812,0.109823,0.678861,0.746217,0.729093,0.110452,0.672656,0.641083,0.14319,0.661784,0.377557,0.559067,0.68863,0.731197,0.806394,0.390417,0.894044,0.364623,0.911826,0.155138,0.470666,0.544553,0.113026,0.638983,0.245717,0.105568,0.871239,0.28305,0.184824,0.85643,0.451119,0.858847,0.805592,0.130527,0.799801,0.70525,0.402304,0.624818,0.00841898,0.288483,0.809074,0.874508,0.593684,0.837114,0.95955,0.401753,0.416698,0.564526,0.145704,0.666936,0.663187,0.988798,0.767975,0.654525,0.634302,0.512702,0.855858,0.551157,0.831402,0.109282,0.490303,0.196274,0.264495,0.696067,0.283845,0.15003,0.186177,0.817641,0.723583,0.935169,0.556297,0.125171,0.872773,0.587827,0.812759,0.370932,0.747717,0.814423,0.344771,0.0339506,0.373685,0.513868,0.541856,0.365487,0.982998,0.0439688,0.147614,0.320509,0.169751,0.208029,0.0941334,0.669656,0.300468,0.136541,0.79249,0.8153,0.329316,0.564332,0.865862,0.613053,0.33123,0.282906,0.113109,0.216789,0.443903,0.129342,0.201826,0.868235,0.798916,0.111291,0.783004,0.181235,0.0862473,0.133565,0.598811,0.31065,0.438208,0.318447,0.424142,0.921308,0.292236,0.687545,0.73221,0.697003,0.555494,0.152928,0.273658,0.870269,0.686801,0.585197,0.600289,0.0784712,0.269516,0.188604,0.975929,0.732486,0.182683,0.113319,0.644463,0.62227,0.862038,0.907699,0.849683,0.0754023,0.336524,0.989477,0.686673,0.912433,0.741408,0.558456,0.417956,0.646189,0.885757,0.274754,0.851497,0.449249,0.810794,0.993186,0.988385,0.277904,0.0702191,0.148293,0.194261,0.93113,0.839874,0.375944,0.147654,0.120368,0.591344,0.00255907,0.183982,0.506545,0.445306,0.153677,0.735067,0.810466,0.186356,0.648584,0.42798,0.891993,0.670337,0.205993,0.452366,0.967843,0.466308,0.951814,0.27691,0.349013,0.757101,0.31464,0.359748,0.691996,0.438232,0.776723,0.849558,0.968324,0.347001,0.465948,0.121963,0.956176,0.304723,0.219119,0.801721,0.190264,0.983016,0.713367,0.751834,0.13214,0.723883,0.214917,0.382623,0.551971,0.63614,0.598115,0.973971,0.706003,0.61123,0.449212,0.811052,0.0419728,0.00475073,0.814512,0.929572,0.589477,0.724244,0.817038,0.500748,0.0142969,0.467475,0.894859,0.942844,0.132807,0.279377,0.541807,0.385808,0.770044,0.388852,0.298814,0.988311,0.522617,0.460196,0.130226,0.967486,0.664957,0.602042,0.441303,0.545457,0.943273,0.186061,0.245747,0.442169,0.31155,0.0751204,0.941052,0.4499,0.625583,0.684289,0.882357,0.203923,0.452975,0.790526,0.0551538,0.0686683,0.342908,0.274405,0.303847,0.225373,0.726518,0.442602,0.856126,0.758817,0.817533,0.4935,0.847079,0.657458,0.298132,0.108022,0.220438,0.394536,0.632293,0.513962,0.89705,0.955527,0.76342,0.736373,0.660534,0.0453411,0.550594,0.873002,0.620179,0.951794,0.954415,0.831923,0.0768356,0.365425,0.444618,0.23477,0.902626,0.624559,0.534751,0.435646,0.0550202,0.522738,0.144961,0.521547,0.554208,|0.237826,0.780486,0.868615,0.916996,0.50942,0.579121,0.758417,0.00264466,0.657365,0.964927,0.310513,0.750707,0.657911,0.60975,0.0229711,0.675872,0.154436,0.130088,0.155683,0.795677,0.719882,0.445564,0.224737,0.230098,0.899678,0.0528778,0.0695224,0.827686,0.350249,0.611823,0.801146,0.766594,0.172248,0.0624797,0.794299,0.758608,0.313969,0.321535,0.194422,0.949946,0.813431,0.201558,0.540882,0.478938,0.670181,0.88063,0.77208,0.993437,0.672999,0.853465,0.80992,0.0112683,0.847846,0.798918,0.452901,0.181124,0.161096,0.824533,0.723324,0.287993,0.725176,0.391164,0.196843,0.650822,0.97708,0.114116,0.233818,0.837673,0.971532,0.99744,0.832583,0.1602,0.989256,0.572094,0.941682,0.329893,0.0628877,0.732734,0.778328,0.134624,0.306465,0.696554,0.699652,0.351612,0.118184,0.937241,0.926236,0.0216811,0.713518,0.621701,0.168542,0.806115,0.957653,0.262604,0.653464,0.697389,0.169995,0.359785,0.988234,0.219206,0.251853,0.0324532,0.485079,0.156834,0.793482,0.233217,0.101728,0.752956,0.552355,0.07683,0.323538,0.456115,0.0373265,0.985579,0.358615,0.897873,0.968342,0.836287,0.752323,0.522102,0.321846,0.203067,0.848947,0.388101,0.636237,0.00162554,0.0213001,0.913011,0.354633,0.552237,0.894297,0.646479,0.480684,0.936778,0.315994,0.195354,0.587142,0.465662,0.858144,0.619216,0.0499279,0.262389,0.827023,0.294534,0.543513,0.10305,0.579305,0.229596,0.523873,0.244595,0.413083,0.40634,0.676494,0.520346,0.0201109,0.777479,0.0511726,0.067881,0.832549,0.0604879,0.686294,0.360191,0.259298,0.32385,0.711748,0.894814,0.89885,0.392608,0.284171,0.161273,0.760539,0.580633,0.431093,0.487928,0.528811,0.761854,0.732147,0.455694,0.883126,0.69279,0.129767,0.365125,0.989878,0.45717,0.6212,0.604828,0.279732,0.855151,0.912715,0.746504,0.320748,0.362456,0.926361,0.798179,0.663952,0.586315,0.975795,0.650325,0.58339,0.265393,0.267322,0.877978,0.1495,0.541872,0.175749,0.452428,0.503289,0.684402,0.0346155,0.211781,0.66802,0.215084,0.395581,0.20158,0.890453,0.992975,0.0911475,0.649887,0.933075,0.768216,0.760697,0.174473,0.614981,0.580535,0.46579,0.855715,0.309302,0.033632,0.964726,0.940051,0.0755925,0.471847,0.933613,0.149471,0.0862546,0.369876,0.883191,0.724804,0.514345,0.219523,0.467805,0.223277,0.769194,0.198825,0.02282,0.444349,0.678039,0.355404,0.458026,0.698541,0.576112,0.292806,0.0329975,0.685464,0.267081,0.608784,0.00512749,0.448223,0.884764,0.0839556,0.516033,0.0614955,0.674536,0.975046,0.486512,0.719441,0.781232,0.676949,0.611612,0.0426348,0.748679,0.897627,0.738004,0.931756,0.722566,0.800368,0.74941,0.509009,0.412697,0.239927,0.688608,0.421506,0.717198,0.409491,0.396824,0.786926,0.793223,0.440239,0.106973,0.788579,0.105062,0.79515,0.294675,0.281837,0.172161,0.982911,0.812035,0.609087,0.798047,0.626168,0.0506386,0.283293,0.899624,0.142393,0.213374,0.0242032,0.317695,0.676854,0.15835,0.473598,0.101927,0.977537,0.78602,0.0230844,0.435293,0.823777,0.418178,0.945795,0.709107,0.00359869,0.438274,0.792759,0.278471,0.861839,0.213504,0.453553,0.547811,0.764552,0.572911,0.555897,0.910757,0.494472,0.0108885,0.775314,0.46941,0.798345,0.552969,0.968154,0.861972,0.313205,0.311659,0.913078,0.506822,0.811585,0.482087,0.395595,0.765919,0.224344,0.480615,0.357483,0.864816,0.532168,0.901369,0.641244,0.559159,0.619101,0.527516,0.966925,0.178224,0.741958,0.0323296,0.0455772,0.329477,0.581502,0.466495,0.731503,0.718625,0.833313,0.597543,0.0490808,0.535539,0.477186,0.863404,0.93952,0.0920247,0.368526,0.925856,0.0244401,0.0965325,0.659973,0.551726,0.131644,0.506209,0.605081,0.661925,0.537005,0.518033,0.132928,0.1739,0.282358,0.282379,0.0960878,0.130057,0.523341,0.550987,0.80096,0.818923,0.966085,0.326099,0.194038,0.721901,0.0547922,0.647832,0.085963,0.931578,0.904087,0.376645,0.170112,0.179838,0.920412,0.621379,0.227047,0.336411,0.752622,0.565069,0.982147,0.385662,0.640693,0.573966,0.314304,0.431096,0.520967,0.25321,0.059513,0.810232,0.134035,0.456051,0.832581,0.888757,0.219546,0.00127524,0.17276,0.944728,0.201738,0.562326,0.723329,0.621324,0.963561,0.403659,0.527373,0.370765,0.97741,0.0455273,0.590782,0.217606,0.907738,0.0224305,0.640824,0.346652,0.406508,0.192241,0.53162,0.28341,0.680376,0.547131,0.0306709,0.860403,0.828671,0.318694,0.750955,0.342624,0.394853,0.56379,0.173883,0.330021,0.437437,0.94458,0.519019,0.958074,0.607736,0.942151,0.596863,0.452453,0.726001,0.492499,0.233818,0.280079,0.442029,0.966431,0.683397,0.0573993,0.756621,0.764614,0.12393,0.138529,0.976242,0.681335,0.837889,0.327217,0.133279,0.678486,0.793287,0.855136,0.316509,0.479683,0.66231,0.221923,0.335247,0.992442,0.438673,0.781669,0.74714,0.96543,0.934399,0.512868,0.910617,0.355608,0.460846,0.126382,0.749767,0.486839,0.0091188,0.236132,0.181064,0.859678,0.868033,0.888668,0.717037,0.00400823,0.0716426,0.393145,0.301992,0.56778,0.129288,0.0642769,0.318555,0.38011,0.0751566,0.100735,0.434942,0.991109,0.693018,0.894473,0.248664,0.363092,0.327042,0.845094,0.624206,0.28453,0.228766,0.714231,0.799579,0.205535,0.0752794,0.156029,0.516746,0.765443,0.282958,0.842349,0.592698,0.984648,0.163207,0.679663,0.51827,0.556816,0.854417,0.335723,0.138225,0.253229,0.624665,0.49113,0.995703,0.755744,0.411083,0.417827,0.504301,0.0468462,0.226707,0.444891,0.0613115,0.676268,0.166277,0.077393,0.256439,0.589473,0.239081,0.141597,0.966082,0.0762427,0.982349,0.0741549,0.577069,0.287557,0.343085,0.369717,0.0130375,0.876244,0.465073,0.470919,0.687704,0.503075,0.708071,0.750121,0.169391,0.595559,0.569059,0.0836886,0.722957,0.9746,0.859369,0.483021,0.393014,0.841718,0.675911,0.0358883,0.803087,0.492411,0.333044,0.261816,0.483313,0.16006,0.100654,0.714181,0.720216,0.613286,0.0161145,0.585596,0.640912,0.79802,0.197409,0.415454,0.296294,0.192211,0.859151,0.666145,0.316091,0.949109,0.587982,0.90929,0.134016,0.807686,0.41481,0.2412,0.76565,0.365088,0.848758,0.636988,0.0200603,0.998893,0.0732678,0.44704,0.600819,0.558366,0.385623,0.0569496,0.0778161,0.877212,0.760439,0.545768,0.242774,0.0483966,0.0334442,0.809364,0.858744,0.502535,0.114155,0.121118,0.933776,0.243747,0.572308,0.647483,0.190839,0.82832,0.759596,0.76519,0.797008,0.98132,0.402213,0.800898,0.437156,0.324196,0.377156,0.0338798,0.504648,0.271748,0.0421982,0.149038,0.150986,0.600014,0.243483,0.323368,0.567363,0.376131,0.122557,0.19489,0.167613,0.120936,0.974954,0.913991,0.495666,0.469489,0.904106,0.951114,0.148112,0.745861,0.0456339,0.60838,0.0149705,0.379812,0.347566,0.531828,0.84224,0.767134,0.988689,0.16526,0.937783,0.464741,0.472825,0.42322,0.72158,0.812449,0.736583,0.991508,0.613025,0.818993,0.538326,0.860104,0.365002,0.738061,0.785899,0.703309,0.00656855,0.832486,0.20728,0.652995,0.712082,0.507847,0.470959,0.930576,0.213633,0.464669,0.333618,0.0287536,0.920059,0.579648,0.796642,0.660544,0.228366,0.56417,0.0198292,0.77886,0.0648293,0.982709,0.748997,0.520097,0.147411,0.963502,0.610055,0.147236,0.655826,0.761205,0.445357,0.439377,0.33917,0.504264,0.673034,0.413572,0.782296,0.931363,0.519848,0.18015,0.724787,0.372415,0.972619,0.019501,0.415426,0.306431,0.407175,0.224145,0.984,0.458814,0.900567,0.792216,0.633651,0.0727094,0.0809675,0.0361168,0.886755,0.695818,0.666503,0.370531,0.526694,0.599454,0.0746567,0.263703,0.126065,0.314285,0.326452,0.0178727,0.0796687,0.960246,0.394944,0.171571,0.0536638,0.0346594,0.512083,0.978834,0.577252,0.86274,0.546826,0.112815,0.0479754,0.354617,0.387326,0.761902,0.0111842,0.608634,0.264024,0.493254,0.987608,0.233173,0.367624,0.92586,0.844689,0.371014,0.71095,0.714581,0.0903721,0.214623,0.106488,0.816644,0.830102,0.748982,0.673967,0.619222,0.49715,0.835192,0.961941,0.380291,0.144961,0.315571,0.0135102,0.523801,0.28289,0.406186,0.751961,0.885855,0.143615,0.949302,0.575079,0.500737,0.700255,0.813452,0.892748,0.0914888,0.779136,0.540442,0.785149,0.417273,0.770438,0.929599,0.00418317,0.642257,0.944988,0.220037,0.504583,0.334112,0.333552,0.184498,0.516639,0.167398,0.981964,0.482154,0.0772911,0.234263,0.382536,0.621482,0.381005,0.389736,0.806663,0.965158,0.672677,0.794028,0.899692,0.419557,0.681737,0.753927,0.793558,0.713329,0.803147,0.288427,0.698844,0.947758,0.575392,0.609744,0.531941,0.210057,0.538088,0.593885,0.245261,0.17929,0.0601107,0.316839,0.764928,0.836806,0.511083,0.198637,0.550258,0.0158209,0.041067,0.87861,0.252085,0.800859,0.786467,0.0951065,0.645093,0.272027,0.747989,0.0128175,0.638759,0.415526,0.445521,0.662143,0.162155,0.505249,0.972257,0.366971,0.417686,0.114105,0.819609,0.311927,0.616063,0.681118,0.553917,0.112731,0.235961,0.243048,0.390082,0.479208,0.19167,0.999451,0.542933,0.842731,0.211343,0.35512,0.437914,0.922084,0.0478632,0.350125,0.820176,0.659878,0.857694,0.834459,0.518234,0.309128,0.616038,0.152419,0.876616,0.933253,0.973858,0.455605,0.240742,0.0612724,0.839786,0.0802784,0.0232901,0.687986,0.586132,0.675757,0.313694,0.217087,0.585542,0.660599,0.064698,0.0467559,0.155132,0.0502281,0.525939,0.0412775,0.0810612,0.795719,0.776449,0.177098,0.487779,0.281586,0.0815715,0.995585,0.694947,0.798332,0.575911,0.592355,0.7902,0.859653,0.884259,0.201042,0.0246084,0.785949,0.717687,0.820044,0.39963,0.194529,0.252467,0.674418,0.434727,0.564911,0.388342,0.786654,0.569818,0.612084,0.996269,|0.870505,0.820431,0.262982,0.96378,0.663432,0.474425,0.530688,0.513782,0.359724,0.710558,0.561588,0.820656,0.281816,0.208744,0.0401201,0.93397,0.99522,0.467602,0.101668,0.364376,0.1367,0.224883,0.543649,0.845897,0.684625,0.726625,0.998858,0.588987,0.420549,0.703844,0.229923,0.444509,0.898031,0.238981,0.95197,0.498177,0.265726,0.67648,0.548006,0.313194,0.507732,0.307916,0.615758,0.17359,0.205769,0.636111,0.482516,0.950864,0.242444,0.233316,0.784956,0.593923,0.689754,0.0243056,0.000584424,0.749079,0.750422,0.0546701,0.884712,0.351199,0.544441,0.542982,0.987652,0.119918,0.722951,0.18892,0.872926,0.620844,0.012825,0.186589,0.700271,0.748488,0.901867,0.867435,0.260817,0.941993,0.05949,0.601888,0.83861,0.068681,0.648184,0.186423,0.176512,0.978013,0.916918,0.226474,0.767807,0.544697,0.680351,0.87561,0.592776,0.964988,0.623363,0.834098,0.199444,0.868099,0.530032,0.726479,0.379553,0.598841,0.882508,0.862179,0.340971,0.260899,0.737883,0.447658,0.875857,0.954872,0.252392,0.938759,0.982362,0.876364,0.0867005,0.75117,0.876275,0.666263,0.632201,0.907259,0.295477,0.849818,0.77768,0.647553,0.479433,0.557224,0.35395,0.487612,0.704421,0.386647,0.921104,0.357036,0.0264778,0.0837417,0.0482107,0.328554,0.238784,0.247961,0.890201,0.962769,0.472655,0.0199361,0.02961,0.795514,0.438503,0.303427,0.936073,0.989073,0.312776,0.968103,0.876965,0.262009,0.988469,0.479645,0.874875,0.302822,0.968094,0.0513762,0.970755,0.739934,0.371817,0.396413,0.695752,0.231453,0.492347,0.617089,0.414233,0.526901,0.779178,0.281887,0.0496107,0.124206,0.453213,0.074443,0.44385,0.511999,0.0832136,0.097831,0.600664,0.757413,0.978375,0.945433,0.490775,0.00620419,0.712801,0.366754,0.268494,0.681787,0.167969,0.0778125,0.817662,0.902224,0.68696,0.000394583,0.952366,0.0687811,0.67164,0.24183,0.0416356,0.990927,0.229171,0.865117,0.583842,0.526509,0.0919799,0.397702,0.827091,0.945903,0.0897568,0.900287,0.830855,0.627723,0.440135,0.840072,0.517092,0.665234,0.7694,0.31409,0.0285747,0.112712,0.411387,0.887591,0.72995,0.156519,0.558758,0.429863,0.552803,0.654335,0.32838,0.225335,0.288534,0.30294,0.128454,0.997828,0.858634,0.694203,0.888519,0.530826,0.217918,0.852452,0.993521,0.37644,0.353691,0.984565,0.708554,0.0732601,0.71894,0.102385,0.00868464,0.38398,0.677028,0.460285,0.46984,0.27474,0.109332,0.0713807,0.145039,0.784081,0.692426,0.421907,0.275823,0.814994,0.161386,0.814633,0.723798,0.524015,0.653237,0.520792,0.960682,0.0890329,0.633975,0.862771,0.690722,0.0577171,0.0668158,0.292731,0.289107,0.429348,0.992149,0.0289968,0.1537,0.525111,0.22514,0.0203919,0.952507,0.951651,0.204561,0.824814,0.612726,0.45181,0.4559,0.335777,0.363433,0.266752,0.0935328,0.344171,0.832503,0.272916,0.341129,0.821367,0.106698,0.96795,0.145023,0.137399,0.624023,0.476322,0.647896,0.614821,0.575146,0.78285,0.0970581,0.197918,0.562372,0.678626,0.0553176,0.176445,0.588096,0.24694,0.860505,0.287295,0.0943791,0.191174,0.550716,0.524131,0.858363,0.643295,0.688422,0.962496,0.299586,0.506328,0.053385,0.176151,0.558691,0.424988,0.769691,0.174239,0.158268,0.192248,0.64486,0.246373,0.559845,0.957499,0.426413,0.276403,0.872825,0.891087,0.0308992,0.344531,0.0218278,0.820684,0.305416,0.952839,0.570571,0.0359178,0.457289,0.534383,0.696317,0.458185,0.335938,0.982634,0.397079,0.431074,0.000186682,0.84335,0.0371262,0.655627,0.979453,0.242215,0.659798,0.509056,0.0669027,0.476967,0.924829,0.552933,0.49133,0.588897,0.260588,0.944389,0.804264,0.481558,0.917088,0.388005,0.229635,0.0138174,0.642948,0.30408,0.153885,0.141099,0.986778,0.99689,0.511193,0.0251567,0.290286,0.24948,0.356668,0.388843,0.725212,0.903515,0.890505,0.470673,0.0631894,0.305851,0.743019,0.167333,0.262543,0.849741,0.318574,0.456031,0.971688,0.838472,0.788431,0.99261,0.485118,0.619136,0.833494,0.488249,0.830005,0.354634,0.394955,0.585461,0.892956,0.239716,0.0836236,0.00976914,0.343533,0.283254,0.860148,0.908844,0.101748,0.730574,0.913937,0.403913,0.467917,0.989281,0.384395,0.581965,0.80351,0.297118,0.798252,0.499795,0.503856,0.829944,0.0518571,0.121796,0.389001,0.12499,0.222394,0.642717,0.453027,0.623637,0.727106,0.12834,0.747125,0.934311,0.402675,0.203208,0.0626908,0.723686,0.75136,0.185244,0.498888,0.133076,0.309697,0.0783974,0.371633,0.298035,0.563839,0.374201,0.900838,0.778402,0.503604,0.24443,0.578216,0.232217,0.647152,0.996125,0.221614,0.869285,0.305523,0.909489,0.184878,0.520195,0.682684,0.915682,0.883963,0.0980602,0.183111,0.821395,0.908351,0.3328,0.621179,0.631364,0.721651,0.572901,0.466708,0.454786,0.500991,0.0611475,0.509646,0.594942,0.133801,0.354378,0.912207,0.626591,0.0449713,0.173092,0.704268,0.537084,0.667047,0.265374,0.897069,0.935815,0.662151,0.100697,0.311206,0.744048,0.232337,0.96717,0.70586,0.634601,0.326249,0.412531,0.83982,0.311551,0.564527,0.6434,0.445293,0.56356,0.864239,0.714758,0.174321,0.279979,0.23443,0.731512,0.904588,0.863405,0.491047,0.408945,0.616683,0.530334,0.616551,0.9551,0.74126,0.524782,0.783318,0.0944604,0.471621,0.800252,0.216144,0.863628,0.57852,0.308218,0.788303,0.484176,0.338701,0.62174,0.0865892,0.752228,0.393008,0.309971,0.634227,0.42925,0.726696,0.40836,0.344404,0.97606,0.258649,0.915763,0.80355,0.443755,0.748903,0.49096,0.95198,0.857746,0.337976,0.107496,0.146253,0.932799,0.924498,0.565138,0.0740368,0.0482464,0.626894,0.327858,0.0755789,0.772176,0.52836,0.0777712,0.261429,0.744214,0.991823,0.365945,0.914405,0.177886,0.18784,0.111859,0.885825,0.923091,0.869265,0.657634,0.507757,0.535873,0.718342,0.0212115,0.871898,0.374596,0.561236,0.381196,0.313769,0.721187,0.378178,0.126945,0.387513,0.704178,0.417658,0.236894,0.292911,0.906766,0.381575,0.0200936,0.967347,0.316802,0.386077,0.761752,0.136084,0.19293,0.704442,0.69146,0.368053,0.168693,0.842172,0.646274,0.45313,0.844301,0.00864422,0.0429641,0.993335,0.641064,0.101517,0.736735,0.708076,0.595223,0.718139,0.425444,0.627998,0.11094,0.211258,0.275378,0.928811,0.681597,0.516767,0.0381007,0.73056,0.828824,0.37759,0.587213,0.0369747,0.467284,0.314225,0.459033,0.824231,0.203888,0.233227,0.666855,0.910883,0.0443611,0.473872,0.0503525,0.718794,0.913172,0.559087,0.808321,0.507771,0.789805,0.453594,0.342069,0.0805022,0.503969,0.364892,0.0687057,0.597593,0.62147,0.198002,0.743872,0.192729,0.538275,0.23806,0.357323,0.493924,0.138107,0.211774,0.424754,0.0830285,0.102651,0.532646,0.783862,0.285365,0.809651,0.116071,0.469432,0.266418,0.75406,0.207118,0.224896,0.527327,0.116095,0.821534,0.193679,0.465737,0.407778,0.626467,0.508669,0.512763,0.856617,0.838178,0.482025,0.763717,0.718722,0.596154,0.902645,0.819981,0.184826,0.606472,0.293338,0.537679,0.627647,0.19053,0.297954,0.97114,0.653039,0.438193,0.247789,0.897953,0.556366,0.583297,0.320872,0.0441204,0.0258035,0.29698,0.327617,0.957656,0.392038,0.217373,0.438377,0.527711,0.36841,0.523474,0.362718,0.836138,0.00101936,0.96577,0.200444,0.789925,0.694291,0.962874,0.977798,0.279801,0.94177,0.39209,0.564377,0.952248,0.885511,0.688508,0.686583,0.441983,0.10771,0.157949,0.112926,0.219398,0.856264,0.362908,0.0488208,0.702375,0.76357,0.276221,0.177659,0.775215,0.106672,0.0198758,0.663439,0.0270292,0.870812,0.160014,0.723709,0.709463,0.734709,0.984099,0.786913,0.563416,0.560375,0.490883,0.0399324,0.193299,0.0952327,0.317406,0.916855,0.178061,0.606428,0.42868,0.606389,0.655743,0.556276,0.118762,0.503414,0.27956,0.194205,0.900724,0.768544,0.420966,0.240592,0.941507,0.828383,0.80536,0.795555,0.135482,0.152915,0.601078,0.130586,0.245052,0.821341,0.924979,0.21192,0.524886,0.177989,0.97318,0.0473936,0.327802,0.613404,0.161814,0.385403,0.37978,0.872679,0.701643,0.786116,0.0110084,0.771796,0.378954,0.537266,0.750207,0.70736,0.426581,0.38372,0.289416,0.799914,0.77341,0.866934,0.961915,0.736073,0.0746237,0.26332,0.0174726,0.304341,0.788911,0.25127,0.479216,0.128206,0.372995,0.59814,0.681291,0.349982,0.526336,0.680977,0.235669,0.543634,0.926351,0.605249,0.527967,0.760042,0.0543804,0.438738,0.643575,0.144756,0.617079,0.534949,0.835559,0.0316084,0.564473,0.446351,0.330196,0.906654,0.811372,0.969262,0.160317,0.294395,0.407249,0.661916,0.354409,0.381532,0.666873,0.996881,0.265957,0.499915,0.888553,0.988284,0.157222,0.620263,0.730443,0.897907,0.281726,0.553412,0.21367,0.106526,0.953912,0.202943,0.509991,0.571068,0.104523,0.37462,0.371097,0.686836,0.245127,0.981292,0.270898,0.548426,0.126089,0.744908,0.424226,0.495877,0.857775,0.34339,0.137606,0.576949,0.252149,0.738108,0.489845,0.182352,0.98711,0.830701,0.182692,0.0123872,0.526233,0.116884,0.102424,0.435358,0.0379329,0.348571,0.276785,0.882456,0.73467,0.195863,0.99737,0.063347,0.0758206,0.592827,0.66217,0.840327,0.698991,0.93488,0.429365,0.938268,0.156915,0.362013,0.503264,0.0934757,0.945525,0.598385,0.900446,0.580623,0.200755,0.218589,0.441089,0.817158,0.285049,0.28264,0.976689,0.397124,0.595525,0.345933,0.873755,0.338247,0.886598,0.260497,0.121293,0.44371,0.546954,0.614665,0.510021,0.324451,0.910328,0.507469,0.458014,0.937004,0.0733812,0.801629,0.345249,0.511197,0.170032,0.0248913,0.236378,0.147579,0.428333,0.255048,0.984446,0.599507,0.301998,0.439522,0.117482,0.498806,0.402033,0.650723,0.678421,0.941998,|0.470072,0.690996,0.0793316,0.53006,0.629408,0.977149,0.543157,0.714339,0.914065,0.19491,0.34331,0.683331,0.97139,0.500751,0.950063,0.0279338,0.683868,0.954989,0.490549,0.809244,0.747655,0.84597,0.0140272,0.433012,0.241935,0.197138,0.487951,0.234396,0.446914,0.364291,0.653201,0.418989,0.627704,0.703706,0.0843365,0.672244,0.436576,0.740123,0.91637,0.775234,0.858423,0.958657,0.42576,0.00995517,0.407867,0.417973,0.26586,0.371541,0.0713115,0.079958,0.582903,0.576425,0.557353,0.0298166,0.498476,0.558316,0.0811754,0.699004,0.621787,0.896536,0.090404,0.455026,0.411634,0.15811,0.11144,0.690737,0.209301,0.526082,0.670614,0.916821,0.405818,0.544518,0.828179,0.8973,0.67878,0.374817,0.0950289,0.645385,0.402597,0.696975,0.570295,0.483148,0.701902,0.129446,0.812717,0.477849,0.300355,0.836915,0.795213,0.388025,0.575698,0.753944,0.134404,0.357386,0.38817,0.173341,0.132086,0.798378,0.777877,0.393596,0.367676,0.285518,0.390401,0.00784832,0.408212,0.684783,0.954077,0.690228,0.572642,0.137955,0.493853,0.386308,0.0162126,0.442107,0.530642,0.501565,0.421713,0.0745242,0.613379,0.603547,0.551736,0.963821,0.609274,0.693945,0.982755,0.534032,0.860822,0.40932,0.897368,0.428195,0.205436,0.908569,0.932366,0.870105,0.714448,0.0266111,0.908573,0.892114,0.500591,0.684908,0.0448187,0.98468,0.448134,0.970029,0.587022,0.317091,0.487462,0.99944,0.159867,0.488505,0.395883,0.897927,0.339938,0.982878,0.389221,0.140341,0.4983,0.552471,0.642758,0.480489,0.579246,0.729299,0.127127,0.360789,0.134843,0.938379,0.080203,0.841897,0.650044,0.503811,0.606338,0.862767,0.632627,0.602115,0.370674,0.690747,0.283019,0.741525,0.741229,0.0688202,0.100352,0.876122,0.840544,0.991476,0.129952,0.29967,0.0300615,0.629458,0.901443,0.31829,0.659539,0.683209,0.188487,0.615768,0.396602,0.662258,0.745921,0.645498,0.468835,0.345521,0.4017,0.199154,0.972437,0.23966,0.646713,0.845384,0.136377,0.917898,0.191859,0.542664,0.617228,0.592854,0.762118,0.53313,0.765925,0.724016,0.413757,0.404096,0.314895,0.342507,0.541309,0.969246,0.030713,0.479544,0.582455,0.299708,0.517199,0.133226,0.545873,0.928954,0.048238,0.0531289,0.308786,0.144194,0.773106,0.478642,0.996287,0.325929,0.299656,0.975887,0.371009,0.876276,0.605682,0.0778697,0.688087,0.354117,0.560491,0.17298,0.714056,0.111433,0.0137154,0.729271,0.937471,0.48862,0.909024,0.183803,0.44949,0.53928,0.483151,0.204928,0.224186,0.873418,0.199291,0.198874,0.104065,0.502925,0.964975,0.527947,0.200683,0.368197,0.890665,0.62346,0.554373,0.0797202,0.370742,0.159177,0.059269,0.766507,3.58224e-05,0.919213,0.598518,0.13889,0.444635,0.092143,0.329701,0.273647,0.152819,0.14617,0.405713,0.368603,0.0976212,0.48758,0.307543,0.113626,0.36958,0.795594,0.211977,0.892677,0.0799884,0.734289,0.796399,0.226947,0.130601,0.817174,0.0120776,0.125842,0.998942,0.695434,0.866884,0.832167,0.0510635,0.0188366,0.334906,0.229228,0.622734,0.206955,0.885185,0.935875,0.149806,0.0690597,0.426544,0.192801,0.876476,0.174145,0.85043,0.849608,0.250641,0.428797,0.211985,0.844532,0.846011,0.292044,0.180863,0.228974,0.692172,0.648557,0.739948,0.338799,0.350526,0.397919,0.450602,0.925693,0.00657219,0.143058,0.830675,0.479559,0.346193,0.102141,0.43556,0.0574963,0.775393,0.177336,0.788878,0.839556,0.697036,0.270531,0.0165555,0.636827,0.995075,0.488813,0.581476,0.351629,0.789837,0.569198,0.378837,0.990409,0.343184,0.200282,0.740052,0.9243,0.896637,0.740721,0.344657,0.189617,0.107195,0.864126,0.76526,0.936906,0.154365,0.988582,0.666082,0.175888,0.527142,0.879358,0.554596,0.372932,0.284461,0.215416,0.646959,0.196929,0.510955,0.548129,0.967551,0.895716,0.229947,0.491005,0.303399,0.17108,0.691058,0.316747,0.830563,0.988376,0.499426,0.159894,0.135037,0.829391,0.286757,0.465268,0.754648,0.106916,0.813771,0.06232,0.163456,0.0607874,0.293987,0.16013,0.780299,0.949614,0.721219,0.687731,0.341121,0.978123,0.360884,0.17209,0.973934,0.294198,0.075496,0.254525,0.382367,0.387463,0.995079,0.0572687,0.58557,0.0454788,0.71453,0.0159057,0.859774,0.0580789,0.959291,0.208354,0.331375,0.945645,0.352133,0.0346808,0.948772,0.0836921,0.991037,0.149026,0.560122,0.499758,0.108058,0.819462,0.465636,0.940958,0.790161,0.432753,0.637517,0.283427,0.619329,0.140348,0.296131,0.997798,0.110577,0.541034,0.964572,0.67802,0.6245,0.855663,0.576518,0.740218,0.780827,0.258924,0.495705,0.842041,0.14902,0.237497,0.664696,0.787338,0.187644,0.571159,0.1666,0.993621,0.0600084,0.783853,0.264277,0.809355,0.31156,0.468297,0.852557,0.989911,0.329008,0.924142,0.716103,0.669682,0.151609,0.0306073,0.320739,0.759158,0.522243,0.796092,0.675918,0.128862,0.379699,0.514184,0.733386,0.368134,0.965734,0.482353,0.306543,0.723704,0.717639,0.354849,0.503537,0.597151,0.403112,0.672679,0.234076,0.604531,0.136438,0.87242,0.40583,0.466401,0.324776,0.28023,0.629375,0.75456,0.366443,0.763645,0.686322,0.588398,0.0394722,0.566151,0.288771,0.815503,0.954327,0.693781,0.212057,0.69096,0.820722,0.808844,0.164144,0.110034,0.496855,0.292701,0.834672,0.840242,0.032731,0.338086,0.316195,0.602755,0.386474,0.254169,0.689096,0.588766,0.947257,0.55066,0.490187,0.435962,0.454642,0.476861,0.978897,0.0905425,0.555467,0.993519,0.841032,0.196889,0.529967,0.00331974,0.346395,0.53853,0.965425,0.276448,0.269363,0.508785,0.653918,0.0920942,0.35018,0.377224,0.0796984,0.178262,0.621289,0.367567,0.280503,0.209607,0.668467,0.722777,0.358252,0.432067,0.496894,0.583274,0.304022,0.301311,0.748165,0.0199224,0.10044,0.612196,0.484293,0.185284,0.552115,0.0632501,0.230043,0.606915,0.211554,0.436428,0.696489,0.0937532,0.394332,0.715351,0.458131,0.363828,0.19024,0.00283647,0.687137,0.339426,0.92707,0.367129,0.978839,0.712132,0.735059,0.922294,0.605019,0.991994,0.826352,0.852883,0.71799,0.419701,0.39716,0.759207,0.191293,0.105926,0.139856,0.975285,0.745545,0.316462,0.252399,0.289797,0.203012,0.0102119,0.818851,0.978734,0.395478,0.573193,0.0295327,0.790626,0.796396,0.538226,0.598462,0.912195,0.889491,0.173029,0.378056,0.464037,0.473731,0.231538,0.215817,0.938018,0.546757,0.599564,0.283621,0.599101,0.336933,0.0917572,0.192157,0.459763,0.850592,0.433731,0.176375,0.309709,0.852806,0.855023,0.382521,0.34211,0.645627,0.868263,0.208374,0.000987113,0.805109,0.438214,0.49923,0.470298,0.611206,0.799098,0.625917,0.831457,0.103294,0.972689,0.894626,0.232417,0.696218,0.113722,0.914796,0.281409,0.518318,0.202553,0.332946,0.950697,0.00585938,0.444051,0.726318,0.886045,0.816068,0.451751,0.786508,0.309534,0.947574,0.994973,0.54816,0.912825,0.998493,0.670737,0.211698,0.799375,0.873256,0.0132454,0.446256,0.285471,0.119969,0.540336,0.669706,0.528904,0.602942,0.51132,0.764186,0.505939,0.935622,0.172346,0.389197,0.304964,0.878776,0.859276,0.609375,0.783975,0.205448,0.7128,0.876591,0.640384,0.777681,0.0391909,0.862191,0.671011,0.204733,0.627215,0.686424,0.543089,0.11511,0.0274354,0.55918,0.357211,0.858316,0.607179,0.237368,0.963504,0.303536,0.589525,0.797659,0.594555,0.862705,0.941527,0.0424824,0.575607,0.302693,0.330575,0.869574,0.527943,0.432376,0.639922,0.531716,0.55652,0.946272,0.0361896,0.244271,0.384141,0.547872,0.228011,0.236806,0.944669,0.557658,0.961646,0.143332,0.776689,0.435409,0.280995,0.162529,0.874593,0.956392,0.93387,0.88427,0.902708,0.621843,0.150502,0.243758,0.752583,0.465927,0.394267,0.966974,0.00999153,0.78381,0.342179,0.609021,0.752267,0.00794202,0.481683,0.335444,0.915142,0.983439,0.704364,0.588486,0.109546,0.973466,0.104602,0.440834,0.221137,0.389014,0.351923,0.575345,0.761087,0.230902,0.622637,0.552,0.807485,0.599481,0.877548,0.309325,0.991693,0.109315,0.218123,0.965206,0.19366,0.348736,0.459985,0.358449,0.294563,0.618773,0.865231,0.0636865,0.627567,0.888677,0.14005,0.513872,0.084393,0.254514,0.71367,0.0214337,0.0344487,0.783994,0.678408,0.944539,0.440419,0.593527,0.915782,0.789105,0.920616,0.193705,0.620662,0.426598,0.985149,0.0091334,0.862842,0.735009,0.34878,0.171229,0.568119,0.194961,0.441817,0.0633461,0.810845,0.828587,0.0158171,0.410424,0.198613,0.442236,0.170043,0.0386826,0.814513,0.349042,0.952789,0.893619,0.030879,0.173126,0.861233,0.736638,0.551795,0.188103,0.641846,0.633638,0.610517,0.487386,0.138629,0.557738,0.31949,0.18461,0.827268,0.0102322,0.0120547,0.565669,0.347737,0.251067,0.172849,0.691998,0.601721,0.788808,0.197196,0.54419,0.919756,0.942823,0.377845,0.0566292,0.211419,0.700764,0.370533,0.588091,0.857178,0.934015,0.580954,0.396788,0.123819,0.684613,0.114556,0.413675,0.0394124,0.494929,0.990886,0.695951,0.245577,0.556204,0.446694,0.967876,0.237102,0.667004,0.936148,0.424517,0.371236,0.808896,0.663923,0.590272,0.0378476,0.729669,0.279717,0.909893,0.354411,0.545903,0.786219,0.766008,0.351561,0.940536,0.564078,0.878671,0.932015,0.0901515,0.434712,0.567653,0.191646,0.911471,0.59787,0.0474827,0.636021,0.897354,0.157987,0.775458,0.0521641,0.814501,0.270118,0.539571,0.0364505,0.466107,0.740073,0.0497659,0.442704,0.998738,0.332777,0.864661,0.0148908,0.109463,0.804577,0.338675,0.402508,0.091224,0.782837,0.0806348,0.74965,0.596697,0.511003,0.654306,0.795794,0.499827,0.758483,0.931433,0.805327,0.67545,0.767094,0.960751,0.778183,0.658379,0.167443,0.986505,0.441195,0.810102,0.982732,0.360739,0.735068,|0.512693,0.215558,0.389277,0.667998,0.240413,0.402989,0.116042,0.756254,0.975269,0.901573,0.808713,0.994543,0.0726503,0.661787,0.417594,0.922346,0.496605,0.617002,0.366048,0.714168,0.942707,0.290418,0.634669,0.296032,0.776985,0.496528,0.00753373,0.916738,0.29127,0.584861,0.652218,0.821491,0.41926,0.661295,0.621807,0.390536,0.581944,0.978995,0.806076,0.657559,0.390918,0.932293,0.777744,0.0889466,0.312824,0.634986,0.426104,0.110149,0.95365,0.356846,0.188279,0.739896,0.792959,0.868137,0.125031,0.201339,0.717206,0.42183,0.0237653,0.0477107,0.587952,0.933745,0.397286,0.430509,0.923236,0.476027,0.859157,0.0266969,0.844655,0.519937,0.362751,0.116226,0.0252194,0.274221,0.0269213,0.237732,0.170954,0.0817062,0.00525731,0.466897,0.734239,0.375406,0.372946,0.190118,0.0623493,0.61424,0.713847,0.754148,0.442211,0.356316,0.456707,0.824106,0.941834,0.137018,0.604912,0.382028,0.725068,0.756204,0.896513,0.443742,0.0282577,0.523072,0.540293,0.0174133,0.26856,0.163516,0.962118,0.901719,0.746506,0.305391,0.845146,0.64254,0.942774,0.40604,0.779902,0.142115,0.832429,0.424444,0.470437,0.878029,0.122081,0.917239,0.00208461,0.226289,0.108864,0.595739,0.282991,0.90713,0.937529,0.085394,0.568158,0.923807,0.501073,0.20798,0.55522,0.378726,0.659881,0.486389,0.63871,0.240675,0.734978,0.39038,0.112427,0.929593,0.0155938,0.0931233,0.480737,0.669571,0.470537,0.0662052,0.650116,0.498441,0.893046,0.484724,0.396447,0.279008,0.706521,0.559469,0.950137,0.709673,0.871866,0.442912,0.961038,0.730686,0.122276,0.272755,0.123856,0.547894,0.690682,0.391126,0.585398,0.360797,0.356659,0.431289,0.555946,0.471848,0.404209,0.44252,0.13572,0.469716,0.107951,0.516235,0.705728,0.0590399,0.0531971,0.135127,0.0280995,0.905106,0.379305,0.933049,0.437743,0.335625,0.648727,0.407109,0.228001,0.0282893,0.446656,0.274258,0.650107,0.448728,0.0353889,0.22468,0.159144,0.741919,0.826438,0.894739,0.0664963,0.899733,0.0129968,0.738085,0.307769,0.296535,0.255372,0.553881,0.760464,0.511114,0.295988,0.0451784,0.738809,0.521648,0.395742,0.662085,0.638632,0.380295,0.00428039,0.744033,0.537843,0.724267,0.401352,0.151362,0.419884,0.395456,0.804782,0.141313,0.121602,0.443123,0.959003,0.321839,0.38127,0.558345,0.704559,0.939714,0.348371,0.967889,0.19427,0.714462,0.671248,0.957395,0.68242,0.446297,0.261569,0.641536,0.75727,0.725466,0.262777,0.274481,0.428618,0.0440686,0.314495,0.509664,0.820317,0.6552,0.685726,0.671881,0.402357,0.28329,0.705192,0.0186054,0.410544,0.901664,0.602406,0.51875,0.652467,0.206873,0.280707,0.312982,0.647768,0.343095,0.329757,0.727755,0.217203,0.184363,0.168151,0.472143,0.905201,0.89715,0.241303,0.385231,0.277796,0.326371,0.498698,0.255991,0.78349,0.821511,0.353639,0.635727,0.407396,0.7447,0.994274,0.164628,0.861263,0.859354,0.0189574,0.289291,0.783977,0.136849,0.740481,0.622259,0.86962,0.664653,0.311178,0.804497,0.194606,0.548264,0.516406,0.763903,0.498537,0.119493,0.1985,0.58873,0.812301,0.225598,0.767353,0.451076,0.911028,0.463206,0.775453,0.892613,0.0365786,0.86564,0.517904,0.962017,0.332541,0.553391,0.0962179,0.200023,0.0699776,0.225069,0.849665,0.34737,0.460229,0.0130822,0.191841,0.81237,0.246903,0.110135,0.948767,0.328961,0.99799,0.14384,0.216694,0.263702,0.847159,0.234182,0.827648,0.292942,0.354843,0.779658,0.0124369,0.407796,0.564745,0.0495815,0.0590199,0.949837,0.72896,0.495195,0.631402,0.314335,0.141655,0.197634,0.25208,0.877119,0.0923539,0.0390609,0.644087,0.303475,0.964969,0.441938,0.930673,0.57859,0.305665,0.692152,0.247503,0.517471,0.655041,0.652833,0.0888285,0.983395,0.523834,0.434938,0.721711,0.764827,0.119803,0.200255,0.674,0.204986,0.20568,0.480109,0.347125,0.61732,0.118703,0.81522,0.806616,0.500548,0.225142,0.290588,0.0415436,0.969211,0.133237,0.453544,0.708762,0.0980558,0.398369,0.799517,0.209188,0.960142,0.482578,0.463794,0.622717,0.928488,0.870726,0.245821,0.44395,0.331654,0.978783,0.768187,0.157382,0.0924357,0.00495493,0.532847,0.201218,0.333539,0.0153919,0.396197,0.942654,0.225739,0.541562,0.11111,0.756734,0.13963,0.425773,0.088385,0.985164,0.082502,0.616698,0.671534,0.882295,0.623957,0.038483,0.448693,0.356733,0.608334,0.364444,0.751339,0.736212,0.446535,0.376515,0.63602,0.848653,0.88173,0.734057,0.613634,0.69147,0.392081,0.754484,0.343106,0.528651,0.0593147,0.387335,0.380279,0.480375,0.436521,0.188558,0.456842,0.189969,0.852566,0.933355,0.0565717,0.145243,0.70638,0.622738,0.254335,0.24276,0.264574,0.491664,0.319341,0.101141,0.000763178,0.990907,0.358659,0.269295,0.461493,0.69633,0.467167,0.516816,0.408872,0.0659369,0.896893,0.182396,0.966212,0.393394,0.775156,0.970927,0.332568,0.658204,0.355642,0.356642,0.376607,0.366479,0.626494,0.224126,0.431738,0.33555,0.0530834,0.934514,0.481701,0.921542,0.756746,0.703181,0.913203,0.772341,0.302425,0.295727,0.126066,0.140004,0.742473,0.0800571,0.0812939,0.265574,0.830478,0.698546,0.58838,0.780503,0.53859,0.595228,0.0120772,0.146213,0.399019,0.768402,0.924632,0.174157,0.532866,0.760619,0.579212,0.862108,0.657147,0.0229349,0.40603,0.616971,0.685642,0.36918,0.512931,0.105004,0.550596,0.0836512,0.291397,0.299765,0.845068,0.0238724,0.728687,0.231506,0.767443,0.755631,0.192924,0.953144,0.288798,0.0081982,0.725317,0.522737,0.0727087,0.894258,0.0139761,0.110422,0.204983,0.0563461,0.454576,0.786331,0.377335,0.519992,0.615332,0.672781,0.135745,0.257693,0.234464,0.239369,0.67515,0.178694,0.0961972,0.225818,0.47648,0.144969,0.422007,0.779421,0.652667,0.296269,0.615824,0.668459,0.223363,0.662388,0.100763,0.402723,0.777154,0.402114,0.65559,0.96134,0.325238,0.290702,0.987866,0.490214,0.685963,0.902543,0.774049,0.0297715,0.6332,0.00825733,0.134185,0.722326,0.847739,0.0079326,0.523028,0.905637,0.255202,0.47805,0.257437,0.110575,0.143269,0.178949,0.763279,0.778581,0.462978,0.93151,0.219953,0.00837767,0.699881,0.872095,0.728176,0.274045,0.381682,0.961367,0.308781,0.627146,0.298188,0.582163,0.314605,0.0689895,0.100568,0.221323,0.186075,0.80191,0.307014,0.780182,0.82352,0.931047,0.517908,0.392485,0.273422,0.0387748,0.147417,0.784712,0.337058,0.434614,0.900426,0.935677,0.327537,0.143197,0.00132471,0.321435,0.407262,0.516336,0.637849,0.303297,0.960886,0.945464,0.744822,0.727914,0.978082,0.863105,0.819902,0.563518,0.3319,0.486429,0.217961,0.165939,0.402136,0.746499,0.790191,0.937643,0.553948,0.501084,0.0995452,0.979529,0.132232,0.371414,0.853239,0.263333,0.79277,0.886286,0.580749,0.940359,0.868433,0.263721,0.236755,0.126405,0.546689,0.769701,0.051628,0.170696,0.0968636,0.8117,0.956017,0.904705,0.122975,0.196395,0.0894959,0.0103453,0.263843,0.858136,0.475942,0.618291,0.102718,0.963907,0.440893,0.708049,0.0088011,0.946517,0.372468,0.176708,0.86029,0.611731,0.645399,0.192252,0.104714,0.905603,0.609077,0.196142,0.846013,0.168717,0.366467,0.767163,0.308455,0.769081,0.129628,0.318393,0.414378,0.0517023,0.804482,0.212906,0.0904103,0.32332,0.589547,0.28543,0.226209,0.431968,0.306768,0.759443,0.981531,0.352863,0.323973,0.231441,0.14723,0.0776582,0.243498,0.558631,0.0200619,0.498975,0.56776,0.483655,0.364532,0.371454,0.853312,0.09411,0.58738,0.361258,0.495908,0.463895,0.32212,0.934526,0.189911,0.480897,0.0119116,0.696597,0.525064,0.171201,0.747811,0.687356,0.619191,0.863202,0.209729,0.271984,0.577737,0.979191,0.878797,0.834131,0.26322,0.42736,0.99885,0.392157,0.281714,0.275985,0.744685,0.0576819,0.0293846,0.993494,0.879581,0.0346119,0.378017,0.0700314,0.0738542,0.29036,0.501869,0.394063,0.477237,0.544102,0.211305,0.882071,0.217898,0.515071,0.459537,0.914037,0.41858,0.115153,0.145306,0.0654374,0.147421,0.0790281,0.991854,0.41532,0.645668,0.0724916,0.455459,0.324298,0.531248,0.889964,0.915915,0.656793,0.875644,0.0320895,0.800334,0.137133,0.942098,0.808133,0.153566,0.446578,0.290889,0.900474,0.761605,0.698251,0.286401,0.229028,0.458235,0.677695,0.267898,0.188483,0.549133,0.00594705,0.341423,0.722779,0.842334,0.389624,0.371229,0.0729948,0.476104,0.3896,0.659627,0.750905,0.559783,0.749286,0.0750535,0.318885,0.927678,0.856046,0.279226,0.866358,0.637855,0.453124,0.127482,0.95868,0.227658,0.495717,0.644779,0.424272,0.323937,0.850624,0.592426,0.540012,0.713652,0.134247,0.504715,0.37658,0.263778,0.979639,0.609008,0.998124,0.352622,0.834072,0.39269,0.95256,0.193074,0.150454,0.456876,0.0645417,0.92218,0.921193,0.552443,0.856103,0.94464,0.314252,0.99688,0.480298,0.601665,0.278569,0.735296,0.65978,0.0751795,0.322894,0.208912,0.230477,0.179117,0.242858,0.280154,0.346557,0.500441,0.010366,0.68613,0.776798,0.667624,0.420802,0.397195,0.651391,0.621805,0.367568,0.755041,0.26119,0.490941,0.141361,0.514708,0.894055,0.85417,0.156817,0.40397,0.832925,0.7727,0.701728,0.509682,0.678253,0.235253,0.229716,0.832785,0.502398,0.874541,0.453968,0.282108,0.226922,0.321581,0.21143,0.400495,0.233406,0.526822,0.468421,0.02152,0.0377972,0.233157,0.213943,0.174137,0.289514,0.915652,0.961391,0.291798,0.616,0.358977,0.105095,0.285407,0.145795,0.77793,0.17153,0.868563,0.329802,0.0140269,0.218162,0.297841,0.317177,0.992036,0.201558,0.941704,0.825112,0.556003,0.583801,0.435262,0.889618,0.301405,0.631738,0.0661606,0.876966,0.0919488,0.636509,0.972555,0.33267,0.25873,0.549992,0.604008,|0.912632,0.347006,0.716922,0.415921,0.121697,0.366345,0.133385,0.461343,0.49016,0.772533,0.15274,0.629489,0.576211,0.312516,0.675203,0.845969,0.572066,0.0331795,0.143256,0.807495,0.413925,0.97508,0.20544,0.837222,0.640451,0.369428,0.697586,0.803054,0.466045,0.802045,0.210544,0.699796,0.797621,0.960714,0.00679672,0.183549,0.24881,0.123924,0.650893,0.430861,0.793758,0.467338,0.56987,0.848222,0.496228,0.0206562,0.851638,0.279888,0.784965,0.187813,0.2039,0.528816,0.781542,0.200143,0.338128,0.108666,0.0215256,0.866215,0.263455,0.836804,0.738792,0.0405284,0.341541,0.241854,0.799837,0.604802,0.666299,0.51366,0.580465,0.552152,0.746111,0.586726,0.0269333,0.550797,0.39939,0.082465,0.284697,0.711681,0.669243,0.013163,0.558413,0.227115,0.512442,0.325504,0.921872,0.683309,0.615837,0.740918,0.230357,0.253956,0.378125,0.438729,0.0908353,0.959198,0.0409296,0.739679,0.035601,0.361838,0.892537,0.261128,0.754094,0.218451,0.247841,0.113058,0.470696,0.796763,0.273912,0.25708,0.185033,0.956603,0.342088,0.402189,0.886677,0.411477,0.871342,0.206601,0.79276,0.75254,0.623992,0.667448,0.891917,0.742692,0.570064,0.327127,0.91242,0.231426,0.239897,0.914598,0.149579,0.951473,0.995749,0.179732,0.989554,0.372423,0.913433,0.285415,0.751429,0.879607,0.461907,0.86104,0.72919,0.556532,0.153788,0.0714524,0.341913,0.403218,0.149589,0.205585,0.550427,0.763549,0.214579,0.849452,0.282148,0.606987,0.503927,0.133816,0.14581,0.709239,0.919843,0.86337,0.832424,0.0349841,0.122937,0.887563,0.931701,0.781748,0.933364,0.31497,0.547359,0.406681,0.682289,0.575106,0.302846,0.199136,0.454488,0.610551,0.956642,0.558631,0.146348,0.848564,0.786871,0.56088,0.0521505,0.951893,0.146345,0.706009,0.436094,0.942905,0.342651,0.350659,0.851042,0.993366,0.587044,0.469317,0.400395,0.816099,0.793587,0.510234,0.126801,0.272512,0.884966,0.898952,0.634286,0.707006,0.762629,0.218045,0.889334,0.403768,0.798921,0.310611,0.995852,0.424062,0.275825,0.632044,0.584106,0.659393,0.601603,0.446341,0.559974,0.0464228,0.367453,0.940526,0.820336,0.875497,0.879932,0.0909314,0.806392,0.13081,0.930379,0.616637,0.554511,0.714085,0.95633,0.515374,0.00495297,0.0287021,0.850385,0.117751,0.266274,0.185658,0.183551,0.378397,0.13804,0.495364,0.44416,0.961872,0.932386,0.866434,0.322325,0.435176,0.28603,0.108208,0.528521,0.570879,0.071674,0.724453,0.650175,0.847211,0.109199,0.212301,0.933553,0.187789,0.38515,0.194651,0.496613,0.992878,0.0165319,0.0822755,0.279542,0.491177,0.169079,0.884843,0.465217,0.394283,0.0994555,0.211334,0.177097,0.735741,0.220676,0.276608,0.21825,0.0437968,0.836179,0.803969,0.841469,0.876282,0.416559,0.266891,0.466342,0.466014,0.660418,0.879995,0.979467,0.269319,0.368482,0.972266,0.757119,0.683556,0.788314,0.842066,0.652523,0.315175,0.933557,0.115773,0.101876,0.586014,0.201554,0.97106,0.164197,0.528295,0.263852,0.779423,0.77049,0.427692,0.310744,0.708871,0.186237,0.931453,0.760209,0.850547,0.29282,0.0360403,0.0713773,0.934076,0.180535,0.106034,0.706544,0.947312,0.555374,0.344781,0.206458,0.789196,0.611637,0.809064,0.0340808,0.518751,0.931995,0.29186,0.632165,0.298861,0.11496,0.457152,0.195663,0.976383,0.204531,0.0604373,0.256896,0.204105,0.0511444,0.55323,0.178908,0.664326,0.212172,0.879925,0.926271,0.418657,0.208403,0.60204,0.211861,0.792401,0.326828,0.19718,0.435737,0.852722,0.506992,0.125919,0.995557,0.988927,0.732638,0.566274,0.389505,0.930462,0.499014,0.0673705,0.553903,0.0861352,0.421413,0.0880624,0.0664091,0.00700206,0.208052,0.493111,0.52172,0.662494,0.834214,0.204812,0.395779,0.354636,0.465804,0.110577,0.64027,0.543637,0.206235,0.489529,0.957907,0.473169,0.92015,0.980346,0.243175,0.845067,0.442119,0.659674,0.316606,0.93048,0.116789,0.359337,0.832908,0.58465,0.706753,0.93834,0.322313,0.542826,0.0535843,0.968963,0.30574,0.812726,0.217406,0.632816,0.414981,0.834576,0.28164,0.681268,0.611231,0.39056,0.663208,0.0942996,0.141416,0.312291,0.850371,0.212097,0.555375,0.143169,0.887563,0.870537,0.912221,0.843425,0.585845,0.90373,0.939228,0.0843043,0.181379,0.855822,0.58267,0.11749,0.534167,0.9458,0.529705,0.273863,0.596403,0.664648,0.0280893,0.62462,0.968791,0.963637,0.472966,0.635238,0.843927,0.994317,0.512292,0.405023,0.763171,0.173435,0.323613,0.862863,0.462725,0.547827,0.893243,0.844869,0.749904,0.861649,0.836923,0.634103,0.616417,0.323489,0.86908,0.697339,0.0469738,0.0499871,0.440179,0.00623327,0.177596,0.505713,0.721287,0.0454272,0.366856,0.368967,0.631697,0.789313,0.679726,0.354931,0.392247,0.0681495,0.58442,0.342534,0.154653,0.551666,0.687628,0.613802,0.652874,0.295852,0.910312,0.221107,0.323461,0.237645,0.762674,0.0218284,0.135096,0.492983,0.202771,0.718479,0.190456,0.476784,0.689056,0.820935,0.0973431,0.223787,0.967489,0.589511,0.428256,0.293531,0.514766,0.476209,0.833613,0.256446,0.934282,0.538175,0.330247,0.495728,0.65632,0.0418021,0.668947,0.246792,0.176627,0.117043,0.578124,0.64371,0.257799,0.297798,0.023986,0.721298,0.311271,0.897043,0.270028,0.212413,0.302985,0.680302,0.643017,0.62753,0.731321,0.193364,0.300497,0.285922,0.767152,0.992281,0.917215,0.959152,0.122719,0.986906,0.490846,0.818346,0.557704,0.922086,0.189426,0.588412,0.674345,0.310061,0.468263,0.0970468,0.944612,0.181466,0.597057,0.637218,0.160073,0.371468,0.935317,0.550888,0.232842,0.340948,0.88266,0.459832,0.659429,0.358629,0.831049,0.886142,0.0389293,0.877219,0.0312571,0.652534,0.729424,0.450794,0.244192,0.672558,0.778489,0.442652,0.258681,0.0865943,0.134547,0.15434,0.246358,0.0730098,0.869731,0.623981,0.582695,0.943025,0.545083,0.208745,0.725013,0.599647,0.0871219,0.872896,0.237825,0.905247,0.323868,0.891272,0.961167,0.0269216,0.629996,0.89286,0.607162,0.450539,0.566048,0.634241,0.984629,0.154064,0.0178798,0.741092,0.975798,0.13607,0.130646,0.946619,0.927423,0.162339,0.204134,0.0420389,0.916235,0.702759,0.335273,0.582369,0.856061,0.219851,0.282821,0.16036,0.146157,0.357023,0.983956,0.615277,0.912753,0.226497,0.659907,0.850888,0.511376,0.298504,0.148885,0.461657,0.867347,0.552444,0.00599593,0.0415379,0.983756,0.307474,0.801357,0.719639,0.412226,0.240698,0.966551,0.952772,0.647605,0.0484781,0.0386024,0.839725,0.560483,0.0268956,0.0871264,0.930419,0.131416,0.901286,0.454488,0.422919,0.820882,0.499216,0.721134,0.235238,0.0750201,0.604905,0.776938,0.401744,0.906072,0.354204,0.253315,0.540783,0.448833,0.614538,0.307226,0.807702,0.0042659,0.487478,0.366713,0.185116,0.137581,0.138926,0.556321,0.228865,0.953172,0.14972,0.979306,0.718756,0.109185,0.863399,0.151235,0.598632,0.24736,0.493409,0.732809,0.871883,0.072326,0.603929,0.545374,0.0147095,0.513678,0.0160002,0.480802,0.0387052,0.00724429,0.693731,0.038783,0.225504,0.0106106,0.273405,0.0646858,0.784735,0.591171,0.200262,0.397058,0.601413,0.787555,0.765543,0.502445,0.481594,0.216214,0.443901,0.408986,0.230831,0.533485,0.801196,0.698231,0.980366,0.869957,0.916484,0.0261138,0.262629,0.429517,0.930032,0.866047,0.844064,0.96292,0.647411,0.0656747,0.248343,0.401848,0.118675,0.891906,0.263402,0.70341,0.357832,0.721174,0.333143,0.065429,0.525262,0.422865,0.278506,0.00118041,0.667198,0.685472,0.792306,0.489174,0.950514,0.81424,0.871084,0.444395,0.941225,0.605756,0.538847,0.458454,0.295355,0.2354,0.161872,0.257716,0.625856,0.54288,0.334298,0.584332,0.571538,0.300729,0.395052,0.428365,0.273212,0.831629,0.560947,0.170897,0.804704,0.943088,0.140817,0.998345,0.719857,0.549523,0.19012,0.691266,0.175973,0.680554,0.558125,0.633044,0.3103,0.127856,0.576445,0.961014,0.715325,0.211205,0.412511,0.221461,0.398449,0.123997,0.431284,0.634769,0.44898,0.841599,0.471029,0.259078,0.357395,0.92454,0.394561,0.407957,0.34978,0.087796,0.765638,0.885289,0.971545,0.870676,0.42077,0.117543,0.548785,0.426043,0.28136,0.446129,0.487482,0.719121,0.688356,0.628448,0.941155,0.916023,0.880433,0.25384,0.51826,0.452797,0.643814,0.516434,0.985967,0.325428,0.277667,0.766291,0.874519,0.467138,0.603541,0.494387,0.482424,0.214756,0.875495,0.368632,0.681205,0.727509,0.65452,0.550996,0.529499,0.0801811,0.107978,0.651393,0.398679,0.994759,0.318941,0.478683,0.737833,0.217171,0.218755,0.641742,0.212702,0.558077,0.0667708,0.979133,0.24065,0.376078,0.859104,0.126074,0.444206,0.859494,0.51251,0.218026,0.410558,0.982398,0.308273,0.0254864,0.0318416,0.088468,0.824632,0.151309,0.130358,0.28847,0.102957,0.63629,0.695888,0.615346,0.07506,0.5703,0.289574,0.565655,0.794148,0.755895,0.802272,0.419344,0.179873,0.22825,0.0917044,0.471141,0.612371,0.13491,0.774431,0.81961,0.954928,0.463893,0.398896,0.743577,0.53467,0.933988,0.444257,0.644526,0.212161,0.294905,0.872818,0.424579,0.133809,0.82344,0.749781,0.695135,0.897334,0.838426,0.769594,0.449294,0.764046,0.286884,0.467072,0.298296,0.170338,0.280494,0.502442,0.917178,0.45732,0.458474,0.665716,0.52121,0.817155,0.809832,0.613469,0.37136,0.392176,0.895504,0.39397,0.680715,0.968997,0.703497,0.958105,0.451084,0.027185,0.354371,0.638427,0.471707,0.316233,0.226697,0.595941,0.732643,0.644984,0.986253,0.563072,0.320854,0.691408,0.0272139,0.752156,0.339672,0.290062,0.447871,0.798263,0.0160581,0.91187,0.542125,0.657329,0.554274,0.142159,0.435859,0.285963,0.143975,0.707266,0.653481,0.15204,|0.546406,0.788806,0.0352632,0.812366,0.624931,0.571642,0.226543,0.857635,0.966977,0.642079,0.431021,0.563193,0.386215,0.102262,0.021306,0.570812,0.658193,0.797108,0.00816822,0.925517,0.245119,0.243643,0.781397,0.712224,0.0436149,0.895247,0.978597,0.941803,0.912784,0.842807,0.665963,0.32508,0.480935,0.656226,0.878649,0.612504,0.765646,0.0804371,0.807702,0.956146,0.592095,0.771557,0.48758,0.261262,0.080361,0.516676,0.870868,0.696304,0.271107,0.799515,0.596984,0.802511,0.228187,0.34597,0.568345,0.60786,0.548597,0.866673,0.225541,0.761587,0.797785,0.0598447,0.917825,0.436411,0.419526,0.682636,0.570289,0.353812,0.495451,0.474197,0.51489,0.0690483,0.926378,0.261327,0.535196,0.0423391,0.510219,0.356389,0.563859,0.438245,0.270339,0.964624,0.224008,0.407225,0.628249,0.832836,0.967193,0.520382,0.419218,0.296408,0.914625,0.453498,0.725735,0.0642984,0.474228,0.869429,0.726153,0.612865,0.84042,0.357641,0.440823,0.965265,0.695965,0.629237,0.256744,0.705989,0.290944,0.64843,0.095992,0.542538,0.720421,0.882788,0.911428,0.122423,0.0905144,0.317571,0.399407,0.378202,0.0735048,0.950231,0.1904,0.514165,0.453531,0.342334,0.367211,0.549377,0.0695847,0.790614,0.666242,0.0382255,0.799595,0.576068,0.802393,0.168325,0.879954,0.497716,0.223777,0.714168,0.0191119,0.328041,0.885459,0.403958,0.968778,0.996628,0.207443,0.469014,0.470088,0.594117,0.694215,0.530572,0.406037,0.330362,0.207178,0.0373476,0.876109,0.967082,0.872923,0.465695,0.244874,0.35102,0.566367,0.727132,0.627717,0.565885,0.0468315,0.356526,0.821656,0.515355,0.123699,0.0905775,0.643041,0.72791,0.421302,0.246434,0.316104,0.141735,0.930985,0.581653,0.0377936,0.915884,0.188951,0.178386,0.960103,0.480019,0.593508,0.396532,0.378787,0.254466,0.952781,0.656441,0.221128,0.267194,0.93526,0.424519,0.468316,0.989783,0.311948,0.328144,0.213834,0.0709565,0.0660715,0.30468,0.880254,0.846234,0.751598,0.894833,0.031494,0.522253,0.722222,0.542857,0.234543,0.898562,0.954586,0.945459,0.753011,0.534068,0.55202,0.0302997,0.703582,0.920782,0.712063,0.695034,0.112062,0.461048,0.438382,0.0778774,0.477546,0.837219,0.360536,0.400557,0.983684,0.568254,0.364834,0.996553,0.686888,0.134586,0.273541,0.336803,0.754986,0.852,0.20515,0.216734,0.847176,0.0658237,0.359266,0.446332,0.46914,0.342008,0.94345,0.223211,0.545592,0.756476,0.243937,0.316026,0.186807,0.946087,0.828162,0.363367,0.189327,0.204139,0.28206,0.592541,0.213725,0.950119,0.947769,0.134902,0.641523,0.10728,0.161165,0.911528,0.265137,0.112666,0.0733166,0.467051,0.0757172,0.501948,0.233471,0.608779,0.591938,0.0880772,0.452024,0.976275,0.976,0.276657,0.332705,0.0999223,0.471326,0.179816,0.962825,0.257634,0.229043,0.545102,0.485554,0.355814,0.135466,0.866029,0.973741,0.283483,0.827464,0.577486,0.228391,0.118027,0.222481,0.124575,0.525243,0.136169,0.679047,0.892235,0.439341,0.391294,0.029247,0.045903,0.0144221,0.723256,0.999937,0.0189472,0.421534,0.0854891,0.440815,0.459566,0.0624191,0.427839,0.579598,0.406264,0.935235,0.199905,0.330455,0.188145,0.983861,0.717641,0.582908,0.476654,0.482068,0.265144,0.393418,0.140328,0.97995,0.191835,0.434211,0.0653465,0.752049,0.568947,0.332302,0.0632725,0.43096,0.239825,0.0802258,0.0292358,0.5199,0.375445,0.0680983,0.976416,0.684107,0.654518,0.621171,0.778544,0.455578,0.582568,0.680653,0.591466,0.537238,0.813903,0.176814,0.0262794,0.597975,0.967492,0.627692,0.537494,0.977392,0.115107,0.43375,0.556415,0.220455,0.34411,0.641707,0.674486,0.878962,0.0482779,0.93806,0.210342,0.408134,0.0343941,0.700175,0.779347,0.954311,0.0564557,0.990149,0.271282,0.558157,0.308407,0.36863,0.416133,0.201235,0.778515,0.544405,0.824402,0.315443,0.271739,0.115262,0.784789,0.15543,0.289623,0.885953,0.786591,0.279117,0.788889,0.742529,0.0962092,0.70599,0.61501,0.65764,0.22232,0.467585,0.353599,0.756587,0.552863,0.984028,0.45186,0.543148,0.0316473,0.751001,0.341151,0.542255,0.899434,0.528001,0.881478,0.47927,0.735443,0.196324,0.125468,0.877928,0.647014,0.941241,0.870383,0.639806,0.148367,0.466392,0.846415,0.615994,0.243285,0.489304,0.857394,0.184324,0.276955,0.656317,0.350159,0.228063,0.154483,0.502266,0.327262,0.607013,0.638617,0.702057,0.539851,0.740254,0.807698,0.43801,0.574183,0.909507,0.536377,0.383536,0.492753,0.176867,0.102216,0.901285,0.980365,0.725489,0.258803,0.967916,0.118712,0.49423,0.238605,0.689472,0.743638,0.0650675,0.26462,0.90545,0.4372,0.10663,0.974491,0.0661034,0.538077,0.630168,0.13203,0.815837,0.993729,0.831089,0.135942,0.135759,0.938236,0.654168,0.443958,0.352884,0.994157,0.758771,0.0898603,0.852073,0.973295,0.0153157,0.366239,0.164792,0.399539,0.172758,0.807811,0.9532,0.934073,0.25779,0.244346,0.893904,0.501767,0.914498,0.315357,0.857419,0.273385,0.987755,0.420702,0.473043,0.917619,0.0368223,0.581,0.575312,0.645799,0.0112294,0.292507,0.827171,0.776245,0.848183,0.067437,0.830042,0.0821254,0.402655,0.025291,0.0953321,0.680643,0.151518,0.58115,0.901763,0.313419,0.731843,0.0581429,0.568213,0.152218,0.564237,0.142262,0.811267,0.161836,0.616665,0.0631165,0.302984,0.474083,0.244574,0.262656,0.162136,0.573848,0.442674,0.5893,0.702347,0.802287,0.267229,0.136389,0.734771,0.182606,0.703276,0.728434,0.631051,0.788292,0.0623158,0.248746,0.61966,0.185576,0.801754,0.315169,0.444713,0.263121,0.296896,0.387379,0.699639,0.968949,0.605566,0.967313,0.673504,0.906537,0.887819,0.148287,0.604449,0.914005,0.962542,0.764567,0.638513,0.483687,0.79107,0.651995,0.22223,0.518481,0.990012,0.131056,0.52632,0.469835,0.291558,0.404656,0.727786,0.415019,0.111951,0.597225,0.0844791,0.66871,0.536973,0.342553,0.00505632,0.62916,0.215259,0.428313,0.98629,0.761472,0.939163,0.39266,0.102509,0.377326,0.652685,0.340425,0.231915,0.222908,0.369297,0.331592,0.635827,0.738459,0.347079,0.85021,0.614518,0.603066,0.151278,0.14797,0.240891,0.638639,0.590077,0.262713,0.174397,0.98704,0.223305,0.393745,0.834935,0.491377,0.134864,0.304667,0.79599,0.42994,0.45205,0.875045,0.349943,0.711818,0.293078,0.563019,0.476966,0.911197,0.494298,0.721546,0.433551,0.532223,0.273457,0.970982,0.535553,0.644013,0.793297,0.177899,0.8334,0.246805,0.461587,0.735959,0.292819,0.871878,0.3515,0.281715,0.0470624,0.433576,0.56478,0.250212,0.974475,0.182171,0.381,0.411147,0.996824,0.972894,0.825469,0.597497,0.607625,0.250795,0.28771,0.433719,0.863777,0.665434,0.949782,0.240099,0.443171,0.706728,0.456217,0.264557,0.203257,0.250768,0.386822,0.38274,0.298755,0.653019,0.167013,0.728023,0.345083,0.748725,0.93195,0.339313,0.563844,0.0145649,0.929586,0.830022,0.907459,0.447237,0.372211,0.042102,0.227899,0.698925,0.295354,0.642031,0.4556,0.143911,0.816912,0.768698,0.683598,0.498843,0.563948,0.11134,0.635893,0.753033,0.907423,0.398561,0.00831902,0.97457,0.237854,0.74404,0.791079,0.632573,0.936353,0.899212,0.0930918,0.568198,0.353104,0.8913,0.36359,0.664453,0.585055,0.697839,0.181348,0.884983,0.40321,0.536341,0.712543,0.216798,0.675181,0.568811,0.874696,0.771069,0.0983813,0.378104,0.920821,0.737785,0.250572,0.350179,0.892259,0.6816,0.15561,0.651586,0.258982,0.431302,0.312011,0.274949,0.421623,0.871497,0.693468,0.385736,0.527801,0.393267,0.547683,0.0235316,0.860773,0.000176191,0.957333,0.477017,0.92916,0.948956,0.68868,0.108263,0.784812,0.596747,0.622386,0.998449,0.81795,0.975357,0.254885,0.240556,0.600173,0.948717,0.200471,0.265353,0.501173,0.910315,0.615247,0.406155,0.722376,0.0551606,0.462175,0.602361,0.322143,0.744823,0.223662,0.540586,0.350617,0.666889,0.676782,0.960193,0.627378,0.882187,0.795835,0.291406,0.235192,0.269845,0.675437,0.186077,0.726772,0.709666,0.960352,0.307426,0.235775,0.292679,0.202773,0.652644,0.832219,0.978597,0.780661,0.215009,0.2649,0.60156,0.761364,0.477461,0.135753,0.801602,0.185724,0.152198,0.204224,0.148671,0.684748,0.5439,0.888053,0.758238,0.322826,0.462193,0.123969,0.101286,0.326027,0.528922,0.313998,0.274399,0.325722,0.796925,0.902499,0.322682,0.661505,0.103149,0.114934,0.80813,0.343847,0.0965652,0.953881,0.968633,0.717948,0.990949,0.948034,0.719757,0.353867,0.745616,0.469771,0.240323,0.815186,0.133881,0.82115,0.181477,0.308896,0.545856,0.772951,0.939769,0.38994,0.00860447,0.944393,0.852019,0.333958,0.947193,0.675855,0.80017,0.79095,0.0143941,0.0223826,0.988261,0.916059,0.957893,0.544417,0.0390043,0.12697,0.806192,0.650825,0.85173,0.349139,0.0585264,0.836143,0.0421798,0.680561,0.963817,0.265657,0.750678,0.671671,0.32327,0.680322,0.609529,0.458442,0.437891,0.157236,0.459616,0.282071,0.637919,0.199726,0.944754,0.670027,0.899608,0.418373,0.359998,0.914336,0.675436,0.519276,0.774516,0.978507,0.596935,0.40697,0.565141,0.353283,0.744482,0.40585,0.279279,0.941509,0.680998,0.542745,0.151522,0.672551,0.854511,0.582693,0.709923,0.632151,0.391387,0.271632,0.664956,0.919254,0.0489596,0.8285,0.265547,0.7482,0.721341,0.140946,0.30705,0.287352,0.87068,0.844445,0.341932,0.868716,0.0586914,0.664078,0.653945,0.684109,0.180852,0.312702,0.514054,0.312326,0.311293,0.871968,0.00342882,0.13864,0.669671,0.669364,0.830088,0.506816,0.315748,0.517548,0.692708,0.797844,0.809191,0.732125,0.17745,0.343777,0.749898,0.144441,0.257282,0.151611,0.321552,0.597096,0.27752,0.0158026,0.343365,|0.163107,0.137623,0.0987647,0.409515,0.959068,0.726581,0.26388,0.167988,0.612461,0.00913197,0.0737892,0.137216,0.736217,0.827505,0.12832,0.508646,0.685388,0.526899,0.245884,0.783327,0.457656,0.0394922,0.277754,0.890968,0.760325,0.76771,0.14258,0.421674,0.488201,0.661627,0.321284,0.121079,0.278806,0.363179,0.503096,0.780402,0.985596,0.258615,0.516305,0.474057,0.708021,0.813836,0.640893,0.686284,0.830593,0.569404,0.985763,0.409337,0.839111,0.55802,0.401395,0.172994,0.37556,0.058251,0.580363,0.0625794,0.286397,0.851537,0.316662,0.595119,0.751764,0.83005,0.837334,0.0180002,0.028883,0.128386,0.757697,0.624295,0.639231,0.953222,0.570451,0.395018,0.897545,0.413482,0.934744,0.484045,0.328829,0.0353058,0.46558,0.413875,0.987761,0.444164,0.571462,0.66683,0.990224,0.605437,0.38877,0.562347,0.648404,0.128469,0.853215,0.308412,0.120631,0.956,0.143027,0.15863,0.669376,0.140901,0.601256,0.480731,0.676661,0.985308,0.528436,0.535664,0.713377,0.608004,0.507497,0.314475,0.330162,0.551604,0.894761,0.102796,0.792296,0.993638,0.686123,0.882358,0.120697,0.450231,0.0191758,0.183924,0.407977,0.831808,0.766236,0.104996,0.629496,0.649769,0.63752,0.90044,0.443716,0.891758,0.50416,0.92261,0.239749,0.79369,0.204593,0.53216,0.456827,0.320709,0.767335,0.136606,0.64665,0.00180066,0.107939,0.262057,0.211725,0.51426,0.99623,0.981985,0.934355,0.745783,0.468197,0.994019,0.996234,0.587454,0.215371,0.825745,0.0913342,0.195138,0.294486,0.448008,0.955822,0.512306,0.251581,0.589099,0.68413,0.822291,0.247376,0.630671,0.965063,0.512184,0.257354,0.819161,0.182041,0.241264,0.579867,0.739121,0.973154,0.526205,0.941544,0.160984,0.0405266,0.517595,0.608832,0.191754,0.79425,0.674065,0.338026,0.26762,0.24343,0.746611,0.240837,0.514769,0.124235,0.120983,0.864239,0.0449094,0.163596,0.205204,0.21872,0.472071,0.243921,0.616516,0.0426638,0.722263,0.0840484,0.179922,0.494697,0.0842758,0.280906,0.242781,0.48345,0.201697,0.0678303,0.945027,0.955628,0.882441,0.319447,0.248902,0.124507,0.125017,0.243888,0.21502,0.821985,0.462559,0.949342,0.47068,0.961855,0.0144531,0.521899,0.667766,0.448142,0.941042,0.690917,0.836689,0.71724,0.908391,0.975553,0.91746,0.233731,0.305223,0.761406,0.477665,0.881849,0.299763,0.40389,0.0648993,0.589904,0.482148,0.177999,0.433906,0.242974,0.506147,0.707126,0.48605,0.344363,0.488015,0.888195,0.711008,0.0428333,0.00621396,0.411617,0.490753,0.964572,0.772195,0.760451,0.185095,0.545521,0.870701,0.134856,0.652444,0.741609,0.210045,0.770138,0.9103,0.782765,0.326544,0.514216,0.766682,0.0632105,0.633309,0.071188,0.079522,0.283674,0.941045,0.190383,0.77185,0.584132,0.0132608,0.480461,0.749895,0.533893,0.698875,0.467761,0.474491,0.674118,0.544262,0.973048,0.703427,0.880219,0.43677,0.259176,0.279392,0.166975,0.654178,0.981036,0.620987,0.265755,0.662116,0.966981,0.504377,0.591655,0.430844,0.00343364,0.43067,0.258798,0.920078,0.884454,0.482273,0.451866,0.218562,0.469458,0.454107,0.781912,0.212879,0.665421,0.518035,0.994841,0.137948,0.913742,0.978453,0.0883631,0.580166,0.908564,0.571107,0.0174583,0.284182,0.257279,0.590617,0.806723,0.952278,0.0898927,0.537927,0.858675,0.223362,0.0377653,0.800556,0.0171348,0.254216,0.409991,0.636617,0.671886,0.766044,0.502784,0.494972,0.00816637,0.790964,0.255101,0.81887,0.101456,0.18729,0.144283,0.176416,0.235568,0.190902,0.420378,0.131992,0.846121,0.47745,0.955579,0.743283,0.65927,0.585155,0.945236,0.897672,0.361292,0.263193,0.117395,0.452158,0.745146,0.730705,0.0351718,0.791673,0.592559,0.137035,0.185798,0.101555,0.225629,0.110932,0.17092,0.112441,0.718994,0.777468,0.470165,0.77046,0.948073,0.290861,0.313351,0.176963,0.762621,0.783786,0.601235,0.342444,0.976756,0.0303432,0.812153,0.487266,0.147082,0.539784,0.69892,0.432081,0.301272,0.368754,0.971888,0.768879,0.456729,0.426427,0.710735,0.805119,0.946557,0.533923,0.714595,0.246629,0.0175279,0.53911,0.588076,0.886478,0.121619,0.157457,0.0817254,0.309326,0.380173,0.441533,0.231311,0.439403,0.764139,0.959246,0.227952,0.992859,0.542808,0.190415,0.742409,0.0607024,0.994719,0.457397,0.626206,0.651906,0.0395794,0.417767,0.395814,0.54695,0.312851,0.25432,0.195997,0.812959,0.645493,0.0970561,0.882078,0.233812,0.204358,0.905136,0.59327,0.103726,0.687938,0.799764,0.426824,0.948303,0.355737,0.827573,0.440615,0.869946,0.444544,0.978589,0.311024,0.800853,0.636534,0.728125,0.15072,0.971255,0.733116,0.928968,0.956205,0.788069,0.641301,0.572835,0.785284,0.401495,0.497656,0.967134,0.332126,0.873392,0.286803,0.260654,0.0644611,0.884137,0.237238,0.83397,0.552128,0.64449,0.331615,0.545297,0.338184,0.960415,0.950554,0.994324,0.176135,0.981423,0.241731,0.647143,0.695967,0.574129,0.73925,0.525917,0.814557,0.0880073,0.0816848,0.592428,0.983078,0.381918,0.732005,0.144458,0.0998655,0.352325,0.249383,0.625306,0.0840593,0.673006,0.854717,0.629673,0.325625,0.788119,0.395244,0.415771,0.326863,0.588768,0.489059,0.967854,0.344015,0.820953,0.721545,0.0640585,0.858818,0.381497,0.380637,0.325435,0.909097,0.524352,0.615943,0.704839,0.70177,0.326926,0.330901,0.0526993,0.95752,0.77486,0.493257,0.890422,0.509849,0.609659,0.161528,0.587302,0.140855,0.410693,0.647672,0.850042,0.672468,0.277049,0.186575,0.193706,0.685277,0.406042,0.223929,0.792288,0.933862,0.496586,0.335719,0.843952,0.265894,0.410543,0.216122,0.685386,0.395966,0.471938,0.00605714,0.7331,0.355233,0.990518,0.94041,0.483511,0.88564,0.286017,0.675555,0.774905,0.39329,0.661388,0.324943,0.201968,0.0421154,0.635052,0.644448,0.488885,0.790013,0.151042,0.583571,0.684191,0.74005,0.740827,0.642013,0.206098,0.237543,0.810537,0.915258,0.575406,0.403627,0.205306,0.719392,0.865456,0.122426,0.0350913,0.733216,0.190944,0.456936,0.133293,0.350909,0.553475,0.499483,0.228779,0.181147,0.809023,0.867368,0.453031,0.864644,0.549171,0.637435,0.428583,0.105651,0.322903,0.82337,0.5707,0.687944,0.468362,0.759315,0.967701,0.161805,0.887348,0.289361,0.468653,0.665806,0.938572,0.164652,0.160575,0.587217,0.3182,0.894956,0.256469,0.263422,0.790573,0.421639,0.981577,0.604701,0.0986474,0.673521,0.802916,0.411867,0.204507,0.140822,0.676628,0.0175155,0.624383,0.122399,0.50084,0.317676,0.33261,0.410656,0.59393,0.265553,0.275847,0.523946,0.911192,0.162413,0.844334,0.961422,0.502881,0.760412,0.437292,0.874965,0.8772,0.415416,0.0753037,0.461701,0.942512,0.298059,0.831377,0.909635,0.29247,0.957967,0.336879,0.740175,0.831166,0.377067,0.1145,0.0808656,0.510661,0.118005,0.779223,0.0537009,0.814426,0.298271,0.340507,0.664763,0.925639,0.293198,0.253642,0.28958,0.162986,0.643087,0.62806,0.452447,0.454722,0.709697,0.0425326,0.922695,0.434846,0.595634,0.572466,0.715975,0.367584,0.161037,0.223223,0.97783,0.514084,0.377656,0.645554,0.0290666,0.620719,0.423049,0.276367,0.823175,0.87284,0.021496,0.319697,0.62125,0.786352,0.34406,0.0377086,0.508615,0.557143,0.226641,0.347517,0.424172,0.256124,0.321355,0.546939,0.282272,0.752468,0.275695,0.483067,0.119152,0.903098,0.686273,0.415061,0.988318,0.167615,0.0166789,0.662813,0.867234,0.7822,0.0275008,0.137193,0.839493,0.504752,0.795386,0.665199,0.916569,0.780332,0.683069,0.654213,0.764671,0.50679,0.767506,0.418801,0.15131,0.422406,0.732308,0.491522,0.755447,0.419006,0.425602,0.226802,0.863092,0.13305,0.789716,0.48988,0.948427,0.466377,0.363777,0.0614734,0.367693,0.83887,0.404215,0.332694,0.0241352,0.785258,0.627368,0.66054,0.86963,0.71445,0.702563,0.237338,0.0939565,0.0358102,0.178845,0.338847,0.565776,0.63402,0.566541,0.836991,0.653899,0.503287,0.384864,0.0245006,0.0521014,0.209142,0.275669,0.559694,0.187348,0.995451,0.305887,0.887449,0.36569,0.3768,0.44948,0.621309,0.342243,0.354245,0.0206662,0.708451,0.792623,0.975569,0.497371,0.638558,0.302011,0.170616,0.0251642,0.0574194,0.364432,0.13097,0.212515,0.966435,0.734461,0.843852,0.562186,0.256721,0.208786,0.719243,0.100702,0.951526,0.118332,0.534115,0.284592,0.271358,0.450285,0.244496,0.50267,0.545846,0.892204,0.829826,0.477308,0.823948,0.180638,0.481386,0.565834,0.819894,0.911836,0.328541,0.512591,0.794208,0.724557,0.0559093,0.594698,0.532212,0.0748521,0.852617,0.259427,0.00270993,0.278143,0.582246,0.319437,0.062555,0.840731,0.485722,0.854192,0.15858,0.369671,0.611027,0.491979,0.626958,0.495774,0.117781,0.862562,0.796955,0.581121,0.693111,0.666767,0.815671,0.30572,0.787465,0.661503,0.4533,0.508386,0.90662,0.193587,0.356089,0.18996,0.253129,0.97849,0.917561,0.819441,0.0352566,0.240129,0.830891,0.110292,0.474921,0.662865,0.236986,0.807909,0.217503,0.407235,0.311328,0.875483,0.285525,0.296578,0.543902,0.184741,0.337234,0.0678567,0.67229,0.150063,0.22295,0.120794,0.684752,0.955412,0.221941,0.460735,0.381095,0.922221,0.628468,0.725523,0.211267,0.703479,0.177739,0.805213,0.794757,0.817375,0.814279,0.447288,0.280783,0.991332,0.232376,0.692821,0.690514,0.925614,0.0102019,0.00749499,0.49236,0.00305712,0.118747,0.861257,0.132887,0.624936,0.776301,0.934297,0.108993,0.457607,0.647854,0.701197,0.728429,0.230364,0.49647,0.919973,0.945578,0.103375,0.507371,0.914506,0.321314,0.29343,0.707159,0.506379,0.846046,0.774897,0.277207,0.860569,0.514326,0.422788,0.824754,0.200785,0.884569,0.256347,0.455196,0.300866,0.115267,|0.87144,0.860085,0.0563718,0.195499,0.116897,0.677535,0.225227,0.616668,0.202112,0.168464,0.465703,0.529308,0.281825,0.401325,0.714799,0.805947,0.0220497,0.420408,0.586944,0.323748,0.46399,0.219958,0.038303,0.407106,0.444472,0.464651,0.0960079,0.872562,0.185985,0.510148,0.354043,0.284867,0.635389,0.37168,0.59677,0.820251,0.214503,0.609526,0.435625,0.0233058,0.537425,0.524608,0.0797915,0.237317,0.246834,0.682032,0.236269,0.613275,0.00807041,0.516257,0.689827,0.631985,0.98471,0.390935,0.283739,0.498656,0.870495,0.322753,0.644205,0.266693,0.292554,0.212923,0.761112,0.790664,0.867451,0.0236484,0.633738,0.510557,0.325274,0.391807,0.310073,0.401693,0.866203,0.123946,0.0383269,0.719849,0.831867,0.239652,0.759966,0.874543,0.537264,0.0291342,0.424489,0.284087,0.185005,0.518834,0.115513,0.38859,0.699442,0.145425,0.799249,0.663562,0.742028,0.456841,0.416788,0.302865,0.841384,0.63809,0.600873,0.638509,0.732592,0.0263838,0.295546,0.980778,0.724505,0.249125,0.217662,0.178554,0.204695,0.128426,0.747782,0.237446,0.243001,0.0691156,0.95818,0.199795,0.129046,0.194816,0.884595,0.259318,0.26241,0.7231,0.706866,0.485449,0.643849,0.540719,0.298969,0.833891,0.0100498,0.290063,0.0845346,0.592492,0.375013,0.0605577,0.95266,0.532838,0.228448,0.283196,0.78411,0.909941,0.241415,0.0950782,0.913262,0.751437,0.0300813,0.175172,0.00947559,0.521118,0.957336,0.0321705,0.930728,0.689078,0.948291,0.283872,0.142175,0.0884251,0.902473,0.531168,0.636849,0.275987,0.815826,0.16453,0.99477,0.493259,0.763727,0.412091,0.27755,0.0490726,0.32418,0.983581,0.721231,0.189535,0.561434,0.245208,0.260067,0.846329,0.520156,0.692915,0.692839,0.0483637,0.494839,0.655535,0.624031,0.285583,0.473537,0.0210562,0.345966,0.547912,0.640804,0.157737,0.231219,0.908051,0.678429,0.613038,0.677322,0.459099,0.0967981,0.128789,0.273432,0.533942,0.927776,0.291607,0.257104,0.84057,0.459236,0.453975,0.379915,0.830312,0.380872,0.329498,0.234863,0.983952,0.0168829,0.682959,0.641271,0.243984,0.237077,0.396501,0.31328,0.869452,0.889995,0.793206,0.695004,0.796073,0.998146,0.209875,0.99435,0.10576,0.468388,0.314253,0.819913,0.341222,0.157836,0.407733,0.652592,0.647067,0.722071,0.458985,0.296705,0.0648464,0.195285,0.408563,0.209351,0.387236,0.952387,0.782129,0.588884,0.31586,0.174974,0.0719503,0.4943,0.623254,0.702682,0.36914,0.0550042,0.560731,0.861935,0.269818,0.731771,0.617768,0.536153,0.057786,0.618713,0.78804,0.00119555,0.175406,0.733218,0.972946,0.876929,0.388706,0.806451,0.0282254,0.445585,0.680698,0.5355,0.357109,0.619399,0.122419,0.806427,0.052781,0.337567,0.00676465,0.766047,0.982792,0.368779,0.248651,0.550841,0.250523,0.395373,0.318313,0.0352628,0.897428,0.0792051,0.897096,0.328445,0.11885,0.00119454,0.56156,0.0277765,0.538833,0.493897,0.772252,0.159906,0.116007,0.367306,0.0455751,0.285996,0.791365,0.241766,0.199867,0.471568,0.515113,0.905243,0.231812,0.51582,0.179392,0.0273619,0.640865,0.789071,0.0574204,0.723117,0.559782,0.261028,0.72439,0.348606,0.317071,0.628849,0.18844,0.71303,0.43429,0.753566,0.783148,0.947918,0.7211,0.531841,0.8113,0.683276,0.639429,0.912454,0.767411,0.440751,0.869231,0.458708,0.738377,0.840932,0.391393,0.970352,0.296782,0.777685,0.400539,0.113649,0.209952,0.313184,0.73811,0.359821,0.856886,0.505665,0.217036,0.312416,0.906631,0.666841,0.265877,0.659327,0.442954,0.834575,0.213446,0.822138,0.84341,0.499355,0.202288,0.203336,0.6516,0.829287,0.0655705,0.326246,0.861751,0.87927,0.515272,0.941172,0.819804,0.101469,0.291938,0.392398,0.205872,0.823672,0.671678,0.55882,0.445926,0.547626,0.384107,0.305776,0.499468,0.341506,0.706172,0.746784,0.799385,0.0182021,0.989782,0.0713774,0.851194,0.0109569,0.134396,0.0815033,0.951828,0.392177,0.169161,0.885827,0.335159,0.826133,0.703988,0.603038,0.192166,0.793559,0.962265,0.798881,0.647603,0.0985786,0.960952,0.761725,0.560895,0.76513,0.522759,0.685238,0.925774,0.583992,0.42871,0.839005,0.81338,0.406437,0.770818,0.480737,0.411545,0.549144,0.735925,0.11325,0.880884,0.906038,0.348375,0.186561,0.615912,0.206691,0.965072,0.84394,0.894783,0.476684,0.0680491,0.806548,0.694272,0.0576055,0.635597,0.152797,0.707443,0.268875,0.963527,0.0136752,0.380688,0.223053,0.679832,0.460375,0.34287,0.639629,0.471057,0.52642,0.667123,0.166886,0.406893,0.585778,0.984394,0.485411,0.59678,0.15323,0.389826,0.168563,0.912217,0.890624,0.00699818,0.719468,0.689326,0.5889,0.104915,0.345438,0.947182,0.0123525,0.0263762,0.484702,0.770474,0.975316,0.914722,0.0110231,0.326648,0.357639,0.963225,0.332488,0.239451,0.728931,0.391824,0.148393,0.303049,0.214477,0.472503,0.667947,0.402066,0.967442,0.427763,0.466633,0.924283,0.539101,0.530312,0.709216,0.591739,0.88494,0.219732,0.606328,0.0559619,0.388507,0.179394,0.155696,0.596998,0.295306,0.757698,0.711293,0.954935,0.475208,0.224459,0.737499,0.332703,0.710563,0.547428,0.23101,0.449145,0.594171,0.434389,0.783409,0.581397,0.740515,0.976375,0.890545,0.190538,0.0870035,0.185909,0.684566,0.525695,0.439545,0.344642,0.604096,0.166049,0.317351,0.283761,0.993869,0.410938,0.587721,0.527497,0.23124,0.393277,0.341385,0.70501,0.440297,0.858349,0.160978,0.876687,0.0729186,0.724052,0.276891,0.103675,0.315088,0.10199,0.825333,0.177819,0.6241,0.0666055,0.341159,0.954623,0.0758743,0.00450313,0.086071,0.50472,0.942098,0.497144,0.836037,0.0833254,0.231564,0.750603,0.633535,0.0633777,0.0792142,0.986351,0.983407,0.00331426,0.751494,0.991081,0.551514,0.776974,0.690637,0.968715,0.60439,0.673123,0.474724,0.386603,0.602131,0.509452,0.902647,0.973479,0.865485,0.0476111,0.682639,0.883595,0.36587,0.63125,0.485904,0.508299,0.440362,0.981057,0.716826,0.55537,0.769929,0.113218,0.232549,0.725085,0.0403256,0.694128,0.891116,0.413395,0.353613,0.308561,0.0670818,0.722415,0.459001,0.130545,0.17325,0.674943,0.816304,0.0315323,0.517816,0.597518,0.672088,0.356812,0.0115074,0.593989,0.635106,0.639834,0.785625,0.400273,0.193648,0.878336,0.498998,0.957551,0.185662,0.140008,0.800371,0.756171,0.811194,0.981597,0.683088,0.475143,0.0647123,0.617227,0.896803,0.823832,0.335785,0.347761,0.0579448,0.673698,0.963325,0.728019,0.0116041,0.326875,0.948372,0.532487,0.660055,0.232531,0.599122,0.531225,0.872819,0.860301,0.509298,0.729675,0.55945,0.844037,0.686682,0.677962,0.802857,0.20328,0.540644,0.997043,0.695867,0.953875,0.618357,0.39419,0.726506,0.0281414,0.743376,0.219359,0.0622334,0.117777,0.225649,0.0708545,0.0231467,0.012068,0.201056,0.530387,0.151546,0.170905,0.82592,0.0903817,0.966892,0.965539,0.540326,0.121224,0.482793,0.141948,0.609725,0.775007,0.776757,0.475305,0.671049,0.121054,0.959526,0.704657,0.642016,0.452135,0.751698,0.961376,0.142978,0.381119,0.899125,0.221603,0.226393,0.197413,0.545426,0.0602621,0.639398,0.0308594,0.38474,0.231307,0.594706,0.572637,0.492561,0.0229391,0.57483,0.633884,0.437401,0.977773,0.948626,0.577925,0.94158,0.327516,0.217065,0.972779,0.825409,0.670948,0.01135,0.55426,0.526377,0.366169,0.265101,0.535763,0.511622,0.487632,0.168224,0.188466,0.663048,0.802551,0.253427,0.863302,0.490936,0.540093,0.197681,0.698219,0.706824,0.196115,0.927114,0.336717,0.767957,0.76833,0.0846911,0.581949,0.594547,0.618853,0.195653,0.662872,0.71212,0.548586,0.940745,0.80214,0.0494661,0.836247,0.347976,0.132377,0.157895,0.988434,0.657539,0.214665,0.993616,0.735538,0.465613,0.880259,0.690511,0.213507,0.488353,0.267338,0.84521,0.0373788,0.314326,0.61717,0.38043,0.872567,0.529971,0.858943,0.903648,0.870128,0.218891,0.194877,0.544255,0.440007,0.337557,0.955362,0.961917,0.533278,0.188096,0.268836,0.41766,0.970466,0.523826,0.0184613,0.648661,0.0578655,0.229818,0.626826,0.632811,0.40552,0.29119,0.867811,0.676713,0.400285,0.0656784,0.97991,0.363283,0.461166,0.42386,0.924882,0.262237,0.213857,0.64867,0.208578,0.0184074,0.18741,0.638661,0.920072,0.405182,0.985014,0.1027,0.581924,0.883396,0.377459,0.465051,0.918916,0.522862,0.327506,0.387721,0.0681592,0.538769,0.517915,0.900784,0.134077,0.965949,0.235615,0.407825,0.180824,0.00792712,0.97375,0.629082,0.315232,0.460735,0.827905,0.772071,0.425786,0.038471,0.669239,0.277299,0.465346,0.00980848,0.636713,0.447857,0.606613,0.697072,0.913086,0.59146,0.436336,0.0289689,0.178046,0.134275,0.61019,0.206461,0.431139,0.166017,0.142299,0.592019,0.0053913,0.64482,0.869737,0.0298084,0.870634,0.270313,0.477534,0.136179,0.428177,0.0226484,0.65513,0.39048,0.46108,0.324649,0.655296,0.658462,0.419543,0.390941,0.757179,0.95298,0.467061,0.464813,0.104637,0.380735,0.531761,0.5772,0.821489,0.0772787,0.111138,0.973561,0.194959,0.906583,0.161624,0.782997,0.78246,0.889965,0.499156,0.698063,0.120262,0.168344,0.189961,0.537997,0.600641,0.662718,0.243093,0.764917,0.055039,0.464468,0.336965,0.36219,0.460206,0.838289,0.942588,0.459907,0.18651,0.0662701,0.584603,0.375601,0.756026,0.325694,0.749775,0.731571,0.346219,0.155002,0.504059,0.622173,0.357654,0.962958,0.0233612,0.570177,0.35996,0.711677,0.934433,0.754235,0.864532,0.334794,0.333005,0.95225,0.476614,0.400015,0.865728,0.27957,0.237756,0.284677,0.402562,0.675217,0.314882,0.885474,0.450493,0.64231,0.7574,0.481025,0.902656,0.135707,0.658562,0.13257,0.344727,0.18821,0.168106,0.468981,0.886638,0.989348,0.439191,|0.987268,0.284518,0.00864214,0.0740448,0.255244,0.952557,0.452312,0.0726322,0.67453,0.445944,0.493341,0.506883,0.981043,0.666744,0.554382,0.85361,0.157979,0.354509,0.92609,0.820537,0.223608,0.805034,0.497198,0.705366,0.401375,0.0126302,0.687072,0.220429,0.0200127,0.494375,0.106222,0.490699,0.667311,0.407556,0.114514,0.0371324,0.763694,0.301892,0.738038,0.356457,0.0971543,0.104011,0.158784,0.0595371,0.175447,0.787938,0.535896,0.495829,0.896928,0.746841,0.611661,0.435146,0.766771,0.9335,0.473967,0.935586,0.392184,0.692154,0.469092,0.994604,0.325744,0.552203,0.755082,0.842981,0.912997,0.711045,0.481173,0.737573,0.0780154,0.478231,0.453035,0.939111,0.523533,0.509351,0.108755,0.343103,0.749806,0.0871571,0.760673,0.119795,0.420989,0.739185,0.0771868,0.410768,0.220428,0.486243,0.829759,0.219227,0.213783,0.12561,0.129965,0.880856,0.388031,0.836518,0.140392,0.7453,0.965059,0.177846,0.233119,0.423001,0.445015,0.820031,0.96889,0.238357,0.0544872,0.688758,0.486012,0.409557,0.364313,0.366812,0.42796,0.107485,0.506135,0.419321,0.321608,0.418742,0.463116,0.168161,0.812827,0.957165,0.698251,0.300802,0.322311,0.483454,0.739421,0.792819,0.35924,0.646626,0.0899687,0.0789534,0.10571,0.352185,0.547607,0.514121,0.669975,0.33462,0.973405,0.477955,0.955102,0.496228,0.973525,0.289484,0.154281,0.230812,0.0785905,0.557268,0.0435846,0.985102,0.350695,0.115125,0.073944,0.260996,0.21815,0.17578,0.201004,0.0184836,0.389984,0.696075,0.09383,0.495962,0.832131,0.479375,0.944559,0.606906,0.0431577,0.989807,0.910584,0.387507,0.422467,0.606005,0.666415,0.0621855,0.893279,0.319901,0.226014,0.0295729,0.842339,0.479577,0.922802,0.301112,0.574865,0.10091,0.785742,0.798111,0.568912,0.840471,0.223411,0.498518,0.477711,0.0483166,0.267194,0.813858,0.967193,0.701241,0.300694,0.0768215,0.192842,0.601674,0.119625,0.343142,0.90772,0.885876,0.694826,0.53262,0.453119,0.828889,0.313266,0.325945,0.136461,0.892588,0.388939,0.222017,0.176635,0.917787,0.897271,0.254214,0.867444,0.90447,0.181028,0.755859,0.494445,0.352612,0.79392,0.544239,0.905808,0.0593413,0.783466,0.0163275,0.468478,0.121656,0.698734,0.472439,0.104024,0.231802,0.786764,0.998933,0.119106,0.96464,0.259061,0.716739,0.48875,0.347533,0.723565,0.883577,0.928729,0.0596318,0.697251,0.669711,0.822554,0.89587,0.710151,0.983275,0.357287,0.425189,0.0473284,0.914101,0.646301,0.219414,0.947318,0.45618,0.724674,0.513416,0.712311,0.789265,0.0363611,0.592899,0.974929,0.198103,0.596244,0.345282,0.683481,0.623255,0.744074,0.756435,0.0439933,0.317384,0.353969,0.346951,0.0340481,0.733656,0.473512,0.351915,0.628475,0.752074,0.309813,0.428289,0.00356817,0.726221,0.118544,0.631814,0.108988,0.74682,0.957179,0.53168,0.838047,0.256959,0.686959,0.895377,0.136499,0.642678,0.907196,0.866595,0.270616,0.313633,0.812274,0.403775,0.713247,0.936323,0.191833,0.538938,0.957282,0.195972,0.754158,0.0444852,0.848227,0.831993,0.923433,0.656895,0.00526112,0.493357,0.428831,0.0420061,0.200947,0.681353,0.186221,0.636446,0.988407,0.68539,0.614205,0.261841,0.296781,0.841843,0.73626,0.607291,0.504023,0.224633,0.987499,0.306448,0.961165,0.45361,0.469756,0.885866,0.502951,0.526586,0.88522,0.781804,0.781487,0.749515,0.603775,0.184707,0.694035,0.190541,0.246188,0.336443,0.257922,0.442737,0.601554,0.442445,0.787969,0.448449,0.790389,0.0996397,0.402378,0.0519506,0.267013,0.0630856,0.0992827,0.55686,0.995753,0.984944,0.11786,0.896408,0.46967,0.78411,0.0533108,0.553231,0.876533,0.483844,0.573052,0.563419,0.173146,0.463888,0.327741,0.765923,0.0574046,0.674638,0.820679,0.184496,0.0854151,0.109165,0.930175,0.781415,0.219431,0.884692,0.735932,0.424327,0.359796,0.68436,0.430791,0.178785,0.746265,0.418716,0.177197,0.661099,0.72115,0.490251,0.651594,0.470138,0.909652,0.921317,0.148814,0.738674,0.2264,0.258357,0.242962,0.847325,0.567396,0.217266,0.347032,0.0332546,0.167927,0.525691,0.258539,0.507528,0.623415,0.60879,0.27436,0.0564077,0.774144,0.906956,0.655111,0.986401,0.471329,0.291015,0.776139,0.341432,0.0829462,0.210972,0.552026,0.617685,0.849981,0.480473,0.353611,0.464464,0.697383,0.238759,0.959299,0.847973,0.44022,0.071663,0.487939,0.879127,0.214397,0.203453,0.978649,0.988772,0.586627,0.207302,0.576515,0.351528,0.383158,0.338468,0.219902,0.747127,0.033505,0.0884781,0.533866,0.328126,0.670158,0.447951,0.320975,0.465135,0.1061,0.768562,0.6099,0.657969,0.323946,0.160304,0.738278,0.416429,0.640087,0.912602,0.160905,0.28499,0.118398,0.0830921,0.078723,0.00189853,0.379066,0.00133216,0.896494,0.155909,0.63282,0.238846,0.172389,0.922794,0.797669,0.29979,0.87225,0.9977,0.190402,0.039793,0.73336,0.276093,0.723189,0.190489,0.621217,0.491576,0.264368,0.228872,0.888786,0.134458,0.134316,0.981365,0.924269,0.882241,0.454311,0.993718,0.349677,0.842461,0.696575,0.589652,0.886635,0.508763,0.732213,0.33067,0.455579,0.835812,0.518937,0.623487,0.815928,0.75192,0.374896,0.576422,0.648813,0.0452964,0.113854,0.331541,0.494326,0.33137,0.0625793,0.720235,0.251444,0.73912,0.666554,0.557162,0.337789,0.4488,0.182669,0.733567,0.81981,0.790819,0.678816,0.323467,0.836571,0.717537,0.998737,0.913755,0.807411,0.136658,0.621879,0.325642,0.100369,0.426047,0.646627,0.925365,0.806775,0.340065,0.395891,0.127288,0.953063,0.759452,0.00541496,0.520047,0.527277,0.602536,0.000801265,0.088796,0.545428,0.723893,0.677297,0.735701,0.380996,0.456818,0.429884,0.71215,0.486033,0.901353,0.787031,0.50783,0.295501,0.0520033,0.539935,0.677135,0.287441,0.703544,0.666543,0.195366,0.70045,0.5774,0.920953,0.781241,0.45262,0.223497,0.687054,0.475101,0.347733,0.468504,0.0822675,0.0622177,0.229369,0.353361,0.742299,0.637075,0.0448933,0.847088,0.945146,0.732482,0.71372,0.879979,0.288497,0.0235669,0.476923,0.178123,0.92385,0.0109355,0.640711,0.0973881,0.551674,0.485628,0.936657,0.242426,0.664555,0.366021,0.269406,0.0833043,0.109135,0.175395,0.184704,0.36832,0.0265727,0.496919,0.00338697,0.449361,0.865612,0.164772,0.0600516,0.714667,0.898852,0.759908,0.829027,0.0223861,0.595952,0.40223,0.430914,0.565351,0.604733,0.886368,0.644555,0.369302,0.638327,0.640014,0.231038,0.514082,0.519046,0.199954,0.239875,0.503286,0.0650353,0.413031,0.175568,0.241938,0.423576,0.701992,0.568817,0.468495,0.205518,0.992601,0.679631,0.977381,0.69677,0.996548,0.220796,0.363645,0.125105,0.455966,0.618819,0.351598,0.0220775,0.434007,0.600621,0.163794,0.136741,0.772817,0.348485,0.175799,0.824724,0.747202,0.103966,0.299846,0.646217,0.334437,0.246546,0.641788,0.224813,0.888749,0.178053,0.87782,0.758523,0.908409,0.533527,0.787344,0.965061,0.259988,0.956812,0.164038,0.978403,0.666063,0.93769,0.933622,0.873238,0.14918,0.402483,0.993475,0.771666,0.790359,0.101019,0.285876,0.445413,0.966956,0.200883,0.913665,0.713145,0.647511,0.7203,0.903027,0.857111,0.327812,0.145476,0.89988,0.697033,0.76233,0.957886,0.841939,0.8333,0.206398,0.946074,0.406726,0.969495,0.878646,0.517132,0.556985,0.615736,0.418885,0.893566,0.585227,0.164714,0.289355,0.490944,0.413818,0.87993,0.596817,0.345514,0.915211,0.40489,0.677856,0.740489,0.0766702,0.369948,0.825552,0.131944,0.256366,0.644855,0.324638,0.651474,0.488998,0.878112,0.10443,0.12769,0.502782,0.978255,0.893041,0.510657,0.435863,0.307802,0.47716,0.0710949,0.721218,0.0104784,0.356165,0.171431,0.781903,0.828264,0.650397,0.100917,0.699016,0.642911,0.656992,0.832334,0.137625,0.379598,0.569027,0.903984,0.3001,0.102249,0.265203,0.00682431,0.326798,0.978786,0.84242,0.621139,0.635193,0.512647,0.580156,0.0757024,0.111043,0.681031,0.328386,0.676463,0.920164,0.397545,0.488007,0.75694,0.613952,0.672378,0.0310491,0.565409,0.3801,0.522891,0.784655,0.130528,0.442275,0.619841,0.493629,0.33284,0.38671,0.669337,0.978051,0.571032,0.175733,0.0897338,0.740045,0.271144,0.696392,0.74859,0.832765,0.0449184,0.319453,0.218404,0.112133,0.160896,0.837888,0.290636,0.363747,0.322178,0.932439,0.133195,0.286479,0.467299,0.648786,0.0628571,0.209038,0.747674,0.625305,0.75869,0.684138,0.317903,0.844897,0.985787,0.870043,0.745719,0.439103,0.827225,0.580478,0.819304,0.242929,0.0856948,0.576786,0.650823,0.557313,0.181872,0.000175536,0.958361,0.175014,0.0866412,0.510215,0.151281,0.952966,0.953818,0.11238,0.0332711,0.767062,0.465291,0.788516,0.618095,0.0286576,0.204132,0.294058,0.159401,0.201031,0.515855,0.756703,0.622767,0.821561,0.51408,0.828827,0.262806,0.0868956,0.999359,0.962471,0.162094,0.233247,0.282198,0.0261301,0.774141,0.730628,0.231469,0.878839,0.324182,0.915707,0.375988,0.278376,0.61379,0.709485,0.147147,0.511222,0.995168,0.468426,0.916336,0.175339,0.894824,0.601708,0.471976,0.675089,0.129564,0.97872,0.176839,0.931376,0.0780292,0.969807,0.116123,0.526694,0.599754,0.118643,0.645779,0.175856,0.803025,0.131453,0.500757,0.339177,0.183988,0.691512,0.557189,0.813962,0.166447,0.0221595,0.0525728,0.177633,0.5106,0.615658,0.819323,0.0167595,0.659112,0.719223,0.842264,0.992103,0.81314,0.483394,0.479362,0.768143,0.21972,0.00333434,0.277637,0.37723,0.925938,0.27254,0.305104,0.186694,0.761665,0.391581,0.458496,0.424866,0.246024,0.0609801,0.888622,0.0547091,0.638595,0.60842,0.456635,0.915786,0.283794,0.173393,0.427672,0.69241,0.780937,0.879598,0.0818291,0.0973743,0.104939,0.384557,|0.17752,0.421873,0.10801,0.437403,0.56156,0.695083,0.286518,0.537168,0.908925,0.000980079,0.0423128,0.351494,0.297309,0.572181,0.951712,0.654916,0.741054,0.574,0.317,0.916271,0.365623,0.359031,0.667619,0.126876,0.416743,0.0563929,0.0274014,0.110503,0.978898,0.00596058,0.855856,0.978354,0.61477,0.371554,0.0358502,0.903538,0.539026,0.802458,0.427793,0.480072,0.135987,0.3246,0.874202,0.0204278,0.401067,0.569198,0.574153,0.145505,0.252668,0.995889,0.822419,0.816992,0.65321,0.00796962,0.265103,0.30069,0.657375,0.352857,0.867442,0.722569,0.0497897,0.987635,0.255788,0.419003,0.972913,0.291816,0.125493,0.974027,0.211384,0.725932,0.803133,0.490645,0.306184,0.682429,0.223083,0.95318,0.412844,0.0856015,0.14661,0.997752,0.453977,0.229001,0.590179,0.00813919,0.892212,0.693236,0.644362,0.308449,0.00510645,0.0946671,0.277453,0.0481884,0.536874,0.442581,0.170576,0.881296,0.556965,0.963438,0.482946,0.640521,0.75893,0.145553,0.665031,0.357604,0.3216,0.453574,0.0580013,0.31974,0.781412,0.206217,0.093191,0.392923,0.40909,0.391353,0.129409,0.944016,0.973122,0.552715,0.317853,0.714935,0.829631,0.324727,0.0381984,0.114974,0.657889,0.46596,0.758205,0.155678,0.721596,0.773805,0.797836,0.673583,0.179671,0.917809,0.0950302,0.715976,0.925219,0.0955111,0.0303064,0.923953,0.583392,0.320491,0.351121,0.48474,0.794326,0.244561,0.924919,0.986154,0.104122,0.812313,0.67314,0.75006,0.563717,0.525071,0.970951,0.528718,0.12314,0.0639809,0.923282,0.446865,0.0260766,0.414962,0.068336,0.618835,0.695247,0.0811207,0.473981,0.915961,0.0266768,0.337837,0.0456648,0.12133,0.659163,0.598431,0.551229,0.665115,0.416843,0.0181575,0.642571,0.223355,0.636039,0.104145,0.0704863,0.048027,0.445417,0.713822,0.506862,0.559739,0.26941,0.720905,0.198823,0.073111,0.80545,0.162209,0.132687,0.295865,0.396608,0.437921,0.138415,0.469013,0.0871036,0.87963,0.508546,0.453858,0.927127,0.644928,0.193165,0.833676,0.796257,0.389058,0.399,0.941047,0.238672,0.338222,0.0742305,0.783093,0.602886,0.164126,0.863088,0.433665,0.217913,0.224887,0.584142,0.814495,0.156609,0.509966,0.187441,0.551551,0.876868,0.695969,0.512468,0.0624923,0.95116,0.757428,0.251622,0.517442,0.619904,0.342012,0.726622,0.825237,0.14101,0.93162,0.975482,0.439236,0.0909176,0.0206583,0.504857,0.0458741,0.444792,0.670605,0.534157,0.607441,0.162346,0.548539,0.567339,0.730338,0.389313,0.306431,0.710783,0.367615,0.464183,0.951604,0.224695,0.119221,0.392353,0.788659,0.426411,0.657432,0.416619,0.710421,0.928141,0.281094,0.0535535,0.65037,0.671604,0.863104,0.182006,0.429365,0.231852,0.311423,0.466829,0.295534,0.24327,0.738561,0.047374,0.643747,0.552785,0.53616,0.579394,0.196889,0.0644491,0.0557454,0.287573,0.824076,0.247847,0.250797,0.640162,0.15867,0.221939,0.258123,0.891404,0.279055,0.879223,0.143349,0.306698,0.232904,0.98834,0.578654,0.343093,0.317639,0.506564,0.769225,0.946817,0.917281,0.0946501,0.0165589,0.757761,0.91467,0.850224,0.20608,0.276323,0.688316,0.928466,0.833537,0.892934,0.598692,0.621549,0.0625897,0.916659,0.768508,0.732492,0.550462,0.639698,0.160572,0.432831,0.020325,0.095235,0.971717,0.633634,0.81033,0.925673,0.936843,0.527034,0.610162,0.270425,0.751857,0.398011,0.142363,0.774061,0.955712,0.628545,0.0595057,0.434182,0.498911,0.916756,0.822901,0.224282,0.857149,0.757049,0.715065,0.39157,0.505964,0.731997,0.90223,0.648349,0.342293,0.17926,0.770029,0.833002,0.413347,0.699992,0.473737,0.82316,0.858662,0.871921,0.243832,0.632492,0.104141,0.527803,0.875441,0.533514,0.167883,0.46127,0.828814,0.526176,0.122169,0.427485,0.542757,0.900497,0.609697,0.691427,0.425757,0.558974,0.517677,0.163841,0.426202,0.955308,0.0275643,0.0225341,0.447229,0.600433,0.324318,0.167799,0.936057,0.56671,0.236403,0.1647,0.379709,0.0211138,0.559037,0.0546416,0.860023,0.904721,0.764236,0.426024,0.724746,0.78384,0.159685,0.0636905,0.626888,0.0120667,0.574057,0.0700111,0.879455,0.0656298,0.417784,0.178056,0.130913,0.0140554,0.834085,0.373393,0.733947,0.331602,0.489343,0.494343,0.053014,0.784199,0.350773,0.737256,0.73563,0.790749,0.0188673,0.421216,0.415976,0.931828,0.640833,0.492644,0.528489,0.824006,0.125998,0.879499,0.892094,0.651436,0.894983,0.864257,0.483534,0.935838,0.634378,0.286869,0.00943005,0.552638,0.462841,0.849284,0.431539,0.499066,0.89265,0.930979,0.364023,0.690267,0.507333,0.655879,0.323988,0.374864,0.0947215,0.338148,0.519578,0.0453339,0.74007,0.533214,0.973989,0.766627,0.281725,0.873697,0.441297,0.820298,0.957027,0.533823,0.185927,0.252005,0.29147,0.56872,0.879351,0.248014,0.487723,0.286921,0.674433,0.889889,0.860707,0.963358,0.653287,0.448695,0.752235,0.711926,0.11482,0.311812,0.84246,0.467894,0.0881134,0.0582761,0.979825,0.829506,0.929837,0.4965,0.934764,0.315203,0.361135,0.090452,0.344604,0.229171,0.00951475,0.308473,0.0247619,0.803709,0.717724,0.378929,0.300222,0.701126,0.0813738,0.0637301,0.918628,0.0271605,0.964895,0.881604,0.857865,0.511629,0.386878,0.132607,0.237381,0.958322,0.836195,0.026803,0.949163,0.922834,0.723614,0.953443,0.518039,0.420493,0.13324,0.88332,0.120069,0.0646598,0.855114,0.55686,0.317237,0.855274,0.593542,0.730563,0.659998,0.764677,0.927466,0.895292,0.101058,0.993033,0.258411,0.0574396,0.498055,0.519524,0.397228,0.378651,0.403271,0.491256,0.101782,0.322218,0.790979,0.641534,0.933092,0.704927,0.0575156,0.806871,0.67485,0.462295,0.418798,0.217685,0.543037,0.297113,0.547077,0.765268,0.455992,0.532399,0.180174,0.10087,0.501029,0.119913,0.584184,0.589211,0.788506,0.648902,0.909634,0.998715,0.674477,0.403038,0.351814,0.616902,0.871842,0.558429,0.192959,0.53577,0.45877,0.530566,0.827487,0.103386,0.795131,0.585105,0.683582,0.0930497,0.573653,0.408724,0.35564,0.433128,0.104316,0.62777,0.796905,0.86635,0.512612,0.437594,0.0262145,0.808448,0.639807,0.209802,0.461672,0.0572878,0.138731,0.997947,0.55653,0.522133,0.936604,0.344257,0.619535,0.697691,0.840298,0.260085,0.835198,0.309143,0.855383,0.787848,0.116401,0.782673,0.261952,0.830395,0.128099,0.170056,0.0354211,0.790787,0.694896,0.874661,0.529296,0.361961,0.866759,0.302046,0.314346,0.771393,0.287134,0.223228,0.0243026,0.478033,0.829439,0.39756,0.930438,0.468678,0.359826,0.0805775,0.100235,0.179206,0.811101,0.122692,0.344394,0.297614,0.80321,0.701182,0.167652,0.197858,0.246375,0.449879,0.370708,0.04844,0.544916,0.87439,0.918719,0.25759,0.587424,0.22488,0.432677,0.162977,0.57596,0.978261,0.594815,0.165927,0.25787,0.722587,0.460593,0.531088,0.348056,0.272678,0.736643,0.890308,0.101047,0.669124,0.0196947,0.203309,0.140679,0.695822,0.445466,0.299965,0.452518,0.60766,0.990585,0.770345,0.995754,0.165936,0.865087,0.637328,0.26359,0.0359833,0.347564,0.364389,0.637939,0.141095,0.577383,0.045046,0.466019,0.525468,0.989972,0.267475,0.921307,0.359074,0.0969462,0.515541,0.420598,0.867451,0.35745,0.173105,0.622934,0.250743,0.532759,0.763448,0.990052,0.342363,0.861975,0.998136,0.812372,0.227106,0.937361,0.53041,0.713973,0.707609,0.787194,0.595168,0.66633,0.0612299,0.578348,0.632347,0.0745655,0.12206,0.913449,0.405585,0.73816,0.599253,0.314952,0.358025,0.99641,0.120364,0.550053,0.00843173,0.757449,0.0927833,0.0501063,0.790708,0.300493,0.729496,0.585844,0.524376,0.961003,0.082873,0.274197,0.540294,0.066484,0.609916,0.506743,0.0700986,0.679544,0.15216,0.310221,0.872832,0.354491,0.0160757,0.172197,0.353431,0.482847,0.391425,0.364819,0.27268,0.811997,0.860649,0.47204,0.35048,0.574568,0.524902,0.227902,0.117148,0.037888,0.862554,0.90699,0.0211911,0.393069,0.41538,0.594395,0.724959,0.477214,0.639785,0.984402,0.40027,0.244298,0.790127,0.930728,0.735377,0.399895,0.81014,0.756896,0.923139,0.53095,0.349243,0.288308,0.703646,0.386127,0.694799,0.916075,0.785019,0.837789,0.555545,0.531704,0.0845019,0.572849,0.538353,0.416638,0.515174,0.677983,0.424433,0.541126,0.233313,0.261619,0.96553,0.436285,0.0918949,0.740332,0.111348,0.156077,0.726783,0.350648,0.0179922,0.0771381,0.176228,0.785923,0.032505,0.195636,0.939964,0.276901,0.340159,0.716709,0.242685,0.458801,0.246179,0.13098,0.406985,0.355774,0.38575,0.988058,0.570031,0.505487,0.997633,0.696483,0.647784,0.423819,0.531464,0.0931751,0.181247,0.210735,0.662887,0.435449,0.00879592,0.259243,0.99326,0.0633746,0.920339,0.948944,0.162052,0.100419,0.848114,0.14487,0.227482,0.211188,0.949793,0.936537,0.874356,0.574294,0.355534,0.299554,0.173765,0.365477,0.2849,0.817266,0.887762,0.0657415,0.507092,0.283157,0.901996,0.594208,0.257556,0.921976,0.985275,0.423019,0.853918,0.0956602,0.757796,0.431185,0.127661,0.349402,0.0606745,0.793692,0.474603,0.44004,0.201145,0.0551113,0.33037,0.47499,0.048362,0.261592,0.768415,0.46827,0.0902223,0.0412628,0.571874,0.801753,0.658161,0.634451,0.400673,0.306217,0.640559,0.908171,0.00627387,0.846592,0.143604,0.651634,0.486183,0.545835,0.398798,0.335974,0.0653431,0.0413872,0.347099,0.156688,0.105615,0.20275,0.0281593,0.870554,0.419371,0.505304,0.069128,0.617455,0.669056,0.410515,0.840614,0.809581,0.483157,0.68913,0.581452,0.756715,0.143231,0.260775,0.79762,0.849899,0.0581566,0.0335139,0.829726,0.687291,0.687832,0.931908,0.600444,0.748917,0.874002,0.333229,0.765529,0.671802,0.0277454,0.338461,0.824909,0.304594,0.594069,0.276975,0.389493,0.105822,|0.587099,0.418174,0.436166,0.752524,0.0485412,0.343863,0.0268185,0.243878,0.13556,0.308501,0.648935,0.0935073,0.171447,0.585036,0.16343,0.943235,0.266321,0.590099,0.892242,0.895304,0.709377,0.637758,0.924416,0.893219,0.701863,0.126055,0.66974,0.362011,0.723134,0.745293,0.491571,0.87817,0.964711,0.91091,0.343797,0.0137953,0.31062,0.952905,0.968557,0.481644,0.809076,0.170534,0.96893,0.776293,0.334503,0.617169,0.0612644,0.825539,0.427885,0.807241,0.944999,0.384358,0.547104,0.759708,0.164847,0.0400855,0.782538,0.955029,0.856743,0.938477,0.84614,0.253201,0.717431,0.351212,0.64571,0.389252,0.674785,0.750749,0.542682,0.0116729,0.948966,0.705658,0.000162244,0.62056,0.0492251,0.568724,0.466591,0.723131,0.863883,0.425432,0.93174,0.283981,0.336178,0.500308,0.159631,0.349946,0.647655,0.623674,0.161052,0.110695,0.135347,0.949799,0.757757,0.771578,0.0193488,0.408375,0.553071,0.218563,0.117322,0.856813,0.890226,0.69558,0.735437,0.192052,0.536225,0.278453,0.192384,0.0945318,0.416422,0.229773,0.822296,0.0784643,0.207992,0.615649,0.904669,0.107163,0.778278,0.693641,0.30473,0.813376,0.0613546,0.329218,0.855524,0.0852679,0.636336,0.54294,0.536113,0.428514,0.386623,0.659414,0.504163,0.156394,0.475411,0.937099,0.322463,0.0659301,0.928318,0.738091,0.974156,0.840785,0.0997432,0.457103,0.467609,0.853925,0.564567,0.214326,0.534587,0.303602,0.522613,0.166614,0.425401,0.365004,0.0607488,0.235152,0.0718002,0.564193,0.173873,0.350025,0.809897,0.130335,0.00948876,0.735922,0.861771,0.648221,0.493266,0.918716,0.367242,0.731664,0.58004,0.940008,0.110506,0.591283,0.645271,0.0458257,0.240062,0.0915851,0.497892,0.139068,0.453656,0.162794,0.200542,0.369615,0.5975,0.710512,0.142887,0.633296,0.322623,0.683953,0.749694,0.492235,0.153233,0.605603,0.334293,0.629062,0.279677,0.63149,0.71905,0.396026,0.641703,0.881226,0.363124,0.723798,0.218367,0.717197,0.710764,0.129084,0.223806,0.405337,0.613611,0.365031,0.864491,0.5335,0.47587,0.0301355,0.172345,0.700833,0.553171,0.774348,0.338202,0.760218,0.799528,0.968074,0.525136,0.467344,0.657762,0.80775,0.459575,0.246796,0.779589,0.360039,0.280944,0.227114,0.418929,0.841192,0.133979,0.470475,0.310571,0.758727,0.0524768,0.445314,0.33069,0.878958,0.774295,0.412772,0.612702,0.864228,0.74406,0.673054,0.846,0.189542,0.877208,0.59655,0.359555,0.0827198,0.775774,0.688574,0.00413144,0.741121,0.803936,0.921564,0.290775,0.0895396,0.662342,0.652059,0.530671,0.860438,0.135748,0.274645,0.524674,0.122778,0.348467,0.76494,0.63305,0.787625,0.0547596,0.654413,0.282652,0.0712062,0.29129,0.870544,0.151998,0.567115,0.252674,0.131763,0.695131,0.0560896,0.11091,0.618267,0.54432,0.30346,0.377651,0.401106,0.189126,0.205842,0.0731858,0.330249,0.182212,0.149025,0.300678,0.436647,0.372037,0.879971,0.913728,0.470059,0.075142,0.965168,0.32858,0.574327,0.355116,0.0945567,0.0345208,0.479383,0.623683,0.872468,0.949535,0.309784,0.730329,0.231529,0.748112,0.551569,0.549108,0.693422,0.000771523,0.782203,0.769701,0.33589,0.205528,0.327199,0.24775,0.108111,0.834712,0.790114,0.989685,0.659135,0.39284,0.375326,0.258407,0.877229,0.255332,0.323501,0.443286,0.702682,0.500163,0.434058,0.0513976,0.977689,0.272663,0.237392,0.991791,0.0871468,0.778445,0.540246,0.550593,0.662231,0.972234,0.595272,0.0456752,0.601749,0.650749,0.592337,0.545066,0.688588,0.186368,0.737601,0.386475,0.40196,0.725408,0.441645,0.161289,0.702027,0.639211,0.832986,0.176496,0.299101,0.527821,0.193735,0.576938,0.395772,0.0353182,0.730016,0.328521,0.937603,0.415343,0.715782,0.564584,0.663657,0.943762,0.498788,0.805958,0.0948672,0.157218,0.296559,0.619494,0.845027,0.280633,0.775389,0.71191,0.805643,0.443616,0.621577,0.392426,0.494131,0.251087,0.569228,0.332433,0.958731,0.560683,0.143486,0.699191,0.0253348,0.643525,0.626951,0.867103,0.646325,0.799828,0.885484,0.465243,0.0189153,0.72078,0.355885,0.133191,0.571061,0.62011,0.756042,0.902407,0.981152,0.912456,0.177841,0.217338,0.168398,0.989986,0.0511584,0.973988,0.917573,0.48701,0.581223,0.554765,0.29573,0.097869,0.414288,0.703378,0.970606,0.831217,0.880892,0.632992,0.254321,0.43056,0.275276,0.885139,0.147236,0.409805,0.0733091,0.230242,0.189792,0.589096,0.142895,0.958552,0.12341,0.360283,0.772629,0.650125,0.819296,0.39782,0.821077,0.896914,0.742603,0.227806,0.21317,0.7265,0.534922,0.979025,0.53016,0.275888,0.473745,0.386364,0.543407,0.00738043,0.987324,0.674465,0.0941818,0.491327,0.429019,0.87638,0.972019,0.128432,0.637396,0.240124,0.171634,0.0949101,0.771195,0.14803,0.0936453,0.523822,0.803399,0.602447,0.794731,0.988091,0.942344,0.84045,0.659444,0.299372,0.32257,0.150548,0.0678904,0.592026,0.0829682,0.946702,0.88764,0.97643,0.751489,0.687769,0.383508,0.114883,0.367813,0.273185,0.375192,0.474896,0.832455,0.730722,0.375066,0.693699,0.491637,0.557565,0.885466,0.827691,0.421399,0.372454,0.753394,0.943837,0.49292,0.38305,0.208126,0.788198,0.232901,0.384469,0.112952,0.278573,0.883671,0.179566,0.708582,0.260111,0.945786,0.0271825,0.885283,0.0900245,0.0506512,0.232613,0.27514,0.62222,0.102807,0.0347437,0.0722305,0.301719,0.224727,0.476759,0.945277,0.48691,0.964735,0.0538132,0.31079,0.65751,0.679932,0.38985,0.821323,0.44446,0.913013,0.0625579,0.584087,0.806043,0.266951,0.808685,0.361365,0.665241,0.0878508,0.672668,0.437071,0.841475,0.598268,0.473299,0.160818,0.851014,0.287708,0.601587,0.740103,0.281489,0.356034,0.660562,0.287693,0.435998,0.261452,0.600763,0.708851,0.0485685,0.752875,0.434881,0.287593,0.0355245,0.333428,0.29432,0.256984,0.466757,0.326215,0.96246,0.15272,0.420079,0.96975,0.127533,0.905691,0.81582,0.831266,0.0710728,0.863349,0.846437,0.178399,0.59985,0.491418,0.773445,0.785737,0.241217,0.968339,0.844904,0.127787,0.213976,0.365997,0.108986,0.713597,0.469645,0.611913,0.782962,0.299206,0.250084,0.07739,0.575527,0.0818908,0.598636,0.0731034,0.625459,0.761678,0.476553,0.306687,0.996765,0.588504,0.479555,0.698462,0.375414,0.199548,0.289053,0.2838,0.797212,0.1444,0.98596,0.295158,0.501506,0.901767,0.904439,0.457756,0.262846,0.624392,0.33608,0.53179,0.493864,0.0482608,0.456152,0.91957,0.777888,0.985902,0.225956,0.572427,0.743825,0.805961,0.0458967,0.931679,0.230601,0.974369,0.29486,0.15232,0.00943869,0.285686,0.430817,0.35798,0.14541,0.219531,0.458924,0.185577,0.222834,0.983907,0.342213,0.763148,0.0532661,0.914537,0.326955,0.818799,0.223651,0.390817,0.0831076,0.588605,0.361819,0.250026,0.202567,0.923119,0.573312,0.60087,0.323702,0.144659,0.441961,0.239843,0.379061,0.545493,0.481287,0.132515,0.738264,0.59004,0.428237,0.464245,0.876184,0.534336,0.346304,0.973835,0.215757,0.399837,0.00125396,0.397479,0.0100387,0.0201474,0.789913,0.279301,0.103218,0.626567,0.497147,0.306457,0.417308,0.0643817,0.343123,0.112293,0.496863,0.213153,0.770977,0.253427,0.4558,0.277566,0.717961,0.931647,0.56723,0.991505,0.642624,0.255971,0.548811,0.539781,0.230784,0.833144,0.527336,0.145392,0.17845,0.723609,0.487671,0.722985,0.688933,0.734786,0.745133,0.214584,0.126581,0.076703,0.723945,0.196549,0.957904,0.62283,0.94361,0.348272,0.697132,0.62803,0.422176,0.594519,0.855001,0.667365,0.78428,0.612934,0.146557,0.744614,0.132655,0.0689489,0.680204,0.321228,0.0587573,0.584577,0.142208,0.193478,0.963608,0.222457,0.240344,0.922354,0.356175,0.828324,0.879167,0.988941,0.435548,0.601364,0.0309924,0.103087,0.0961831,0.688467,0.552385,0.658203,0.044498,0.001508,0.692527,0.627251,0.181345,0.625366,0.459741,0.24059,0.349116,0.351261,0.40898,0.883785,0.577403,0.0194012,0.723811,0.154452,0.945131,0.216421,0.715638,0.403972,0.544964,0.452726,0.534533,0.409604,0.20948,0.620148,0.683174,0.10017,0.203772,0.925827,0.855981,0.00613976,0.823022,0.252569,0.318034,0.941712,0.455706,0.283437,0.326287,0.263529,0.948615,0.834155,0.719654,0.986135,0.345969,0.108733,0.911574,0.951282,0.23761,0.30479,0.739034,0.446356,0.327471,0.421463,0.476928,0.504326,0.158651,0.641995,0.552001,0.535215,0.181844,0.201856,0.392611,0.916514,0.306499,0.871079,0.775108,0.617275,0.421135,0.416582,0.864002,0.356888,0.173955,0.0304111,0.0619565,0.334244,0.828832,0.385234,0.867475,0.541432,0.577964,0.308638,0.10832,0.578103,0.97397,0.0982595,0.986474,0.739274,0.725337,0.238925,0.390774,0.508217,0.279324,0.36728,0.974399,0.857957,0.588866,0.94398,0.860016,0.454956,0.437613,0.53213,0.15554,0.2159,0.640839,0.99304,0.571449,0.641073,0.044741,0.462015,0.192687,0.807509,0.776654,0.127838,0.107149,0.445888,0.491301,0.746531,0.232354,0.345359,0.0964521,0.472873,0.849257,0.729752,0.699876,0.344761,0.258825,0.328057,0.919106,0.625703,0.754492,0.269598,0.246812,0.347575,0.369865,0.755934,0.181808,0.0125547,0.451636,0.805335,0.28964,0.662427,0.295798,0.35804,0.963771,0.565358,0.533233,0.176654,0.328005,0.346419,0.486492,0.0481055,0.678429,0.829585,0.893932,0.184658,0.589654,0.997154,0.0261527,0.469105,0.274508,0.180638,0.758454,0.957388,0.706321,0.305312,0.357751,0.195866,0.973708,0.755634,0.293391,0.676136,0.662872,0.625773,0.0901827,0.0805187,0.15708,0.512506,0.321011,0.513947,0.602878,0.826158,0.554933,0.865946,0.733691,0.104801,0.996357,0.582507,0.87626,0.0621553,0.838052,0.428566,0.518893,0.590475,0.698534,0.188748,0.134323,0.903306,|0.8436,0.559384,0.669844,0.854166,0.661855,0.943493,0.760138,0.77728,0.43146,0.616595,0.730284,0.928023,0.523964,0.753641,0.901878,0.280423,0.636109,0.163631,0.808137,0.513305,0.65953,0.176622,0.742196,0.980866,0.472978,0.758158,0.428501,0.325558,0.659884,0.286307,0.478286,0.860114,0.41679,0.12722,0.961407,0.899731,0.0349521,0.952381,0.801854,0.495027,0.748345,0.632655,0.602367,0.633005,0.17608,0.754885,0.584734,0.491185,0.239943,0.69317,0.787895,0.577794,0.385484,0.65534,0.534977,0.85423,0.578254,0.988503,0.837663,0.445862,0.664409,0.104061,0.726267,0.809005,0.932922,0.820656,0.954096,0.514756,0.689274,0.471171,0.744931,0.426439,0.955855,0.176185,0.239943,0.790821,0.0764576,0.0370923,0.935918,0.366815,0.243632,0.649014,0.305215,0.540514,0.104739,0.520608,0.649825,0.171497,0.20759,0.037227,0.85643,0.210204,0.289915,0.591395,0.860186,0.858051,0.990478,0.0356327,0.381506,0.0973725,0.41482,0.93407,0.0804066,0.278443,0.268315,0.900154,0.430552,0.923806,0.198686,0.399368,0.794174,0.487327,0.278669,0.275778,0.565261,0.167544,0.409048,0.0142131,0.627882,0.419152,0.266565,0.800073,0.0106423,0.110067,0.748497,0.734353,0.584853,0.632004,0.796553,0.780371,0.973654,0.573939,0.274373,0.548948,0.612772,0.172645,0.0302633,0.567418,0.336671,0.660962,0.837498,0.272826,0.218987,0.917746,0.405544,0.677663,0.131835,0.335602,0.121976,0.292563,0.741508,0.862329,0.0148122,0.0175684,0.675766,0.553145,0.141925,0.480164,0.0964389,0.453549,0.959473,0.146274,0.40397,0.288854,0.0637055,0.0533279,0.123728,0.440933,0.638844,0.613456,0.752098,0.800119,0.317748,0.0868375,0.957341,0.502537,0.66743,0.816711,0.170339,0.78741,0.763861,0.239454,0.321874,0.154867,0.590132,0.122737,0.231862,0.929,0.662204,0.179974,0.793948,0.00594062,0.576666,0.828839,0.158022,0.426959,0.0021928,0.289402,0.491003,0.18406,0.112774,0.753264,0.566918,0.0184835,0.568624,0.0540448,0.901059,0.113907,0.387839,0.0659137,0.161232,0.954751,0.841261,0.7658,0.77893,0.763494,0.382729,0.0373722,0.216197,0.161059,0.0865225,0.181565,0.18022,0.338346,0.687856,0.320263,0.604393,0.648693,0.354305,0.212555,0.331215,0.272153,0.469655,0.127366,0.804462,0.148556,0.589275,0.194163,0.907737,0.369887,0.97825,0.806469,0.444844,0.151183,0.380916,0.418566,0.498992,0.387215,0.875256,0.0885545,0.300353,0.384243,0.157033,0.605289,0.00844729,0.479879,0.467916,0.486421,0.190805,0.153509,0.0727634,0.521399,0.391495,0.20276,0.860788,0.180608,0.010053,0.578446,0.659967,0.606649,0.683124,0.507939,0.869089,0.0515911,0.67747,0.225072,0.698049,0.207326,0.543712,0.263874,0.0679689,0.376366,0.560893,0.123503,0.363919,0.669871,0.682475,0.622035,0.0355476,0.203153,0.827552,0.0342838,0.398983,0.0426619,0.523896,0.832568,0.4845,0.168105,0.435159,0.756314,0.0650799,0.137254,0.769639,0.154842,0.754817,0.188454,0.0914187,0.979123,0.580875,0.230852,0.318476,0.352293,0.778006,0.753101,0.490485,0.497657,0.0635883,0.173905,0.202017,0.321609,0.746695,0.492614,0.382214,0.411759,0.0644103,0.79707,0.143536,0.367515,0.581852,0.954279,0.673782,0.515854,0.351713,0.584586,0.0809259,0.23335,0.432276,0.274914,0.649153,0.364371,0.515258,0.584852,0.840489,0.882811,0.535951,0.985652,0.403052,0.139074,0.287533,0.526437,0.205109,0.768932,0.73835,0.770621,0.677706,0.412838,0.830481,0.630265,0.862062,0.115991,0.531971,0.326369,0.774133,0.876784,0.655369,0.501175,0.445916,0.627503,0.321119,0.0358593,0.861077,0.115541,0.148212,0.601219,0.574784,0.807549,0.791995,0.628187,0.403506,0.105813,0.522194,0.912804,0.356622,0.204964,0.546215,0.781804,0.589322,0.514608,0.489001,0.120721,0.643506,0.51643,0.525433,0.0883901,0.843488,0.577183,0.505384,0.0758598,0.629551,0.166961,0.135204,0.116503,0.127026,0.75995,0.845632,0.905652,0.667946,0.869287,0.224422,0.83331,0.899035,0.15644,0.0939445,0.691374,0.87846,0.673041,0.236341,0.778583,0.0620126,0.90255,0.228552,0.519577,0.545647,0.141068,0.0760621,0.104771,0.892199,0.339518,0.756084,0.745831,0.878732,0.928276,0.0927839,0.296036,0.589494,0.500429,0.165005,0.39622,0.26734,0.0267147,0.548067,0.335371,0.837028,0.818662,0.262462,0.25282,0.624506,0.346027,0.772419,0.508019,0.979152,0.118099,0.301096,0.427153,0.180154,0.29915,0.33922,0.316213,0.164424,0.405504,0.537453,0.808335,0.339983,0.314306,0.5667,0.852755,0.729566,0.648407,0.118936,0.909167,0.931354,0.521824,0.959903,0.666964,0.881336,0.55509,0.141623,0.817458,0.966268,0.170879,0.762472,0.480704,0.689038,0.234204,0.784633,0.326728,0.559464,0.572682,0.571305,0.193094,0.912827,0.589544,0.876568,0.411956,0.710786,0.496769,0.650857,0.972132,0.934108,0.902863,0.649089,0.664255,0.613384,0.0736949,0.896288,0.00077033,0.143438,0.573357,0.91002,0.854593,0.420295,0.30561,0.63029,0.484131,0.888425,0.881481,0.315207,0.0223698,0.0704394,0.753367,0.0421212,0.920554,0.639984,0.110476,0.502718,0.207221,0.633187,0.633895,0.0204154,0.45037,0.42654,0.112921,0.123094,0.648291,0.581278,0.382404,0.386883,0.116614,0.360076,0.73279,0.530977,0.162922,0.816297,0.334995,0.872759,0.989442,0.604163,0.731896,0.772245,0.854737,0.60921,0.467526,0.0843458,0.143501,0.798786,0.773779,0.691906,0.800408,0.0707306,0.246479,0.06995,0.971386,0.492809,0.220895,0.216924,0.80482,0.311143,0.65494,0.783573,0.910859,0.052622,0.0997573,0.497468,0.774757,0.0156907,0.114657,0.40146,0.551743,0.975014,0.408523,0.083649,0.107533,0.228842,0.893874,0.97018,0.664935,0.994,0.682218,0.390759,0.478412,0.14285,0.282749,0.633926,0.216021,0.245211,0.00271565,0.450868,0.678635,0.977578,0.733294,0.569676,0.838109,0.290802,0.0822743,0.376368,0.0819253,0.541616,0.176608,0.368121,0.2646,0.698429,0.725266,0.0534317,0.670283,0.29635,0.374386,0.956948,0.451128,0.0912445,0.272672,0.501095,0.743735,0.296232,0.343219,0.740698,0.0807207,0.237939,0.717135,0.523074,0.119514,0.190554,0.723945,0.761491,0.0204743,0.0265159,0.702705,0.212843,0.893307,0.608787,0.846967,0.460058,0.736312,0.537027,0.998177,0.948344,0.278114,0.23177,0.237273,0.607236,0.783722,0.329645,0.306802,0.347088,0.999112,0.00272447,0.0349321,0.239985,0.663459,0.917511,0.671459,0.145505,0.0475953,0.427212,0.571191,0.694134,0.816658,0.0647877,0.807706,0.837488,0.321139,0.609484,0.765606,0.822679,0.781824,0.25418,0.897389,0.409121,0.799623,0.438545,0.278492,0.968215,0.85649,0.173075,0.745791,0.46598,0.314643,0.96785,0.561672,0.630587,0.10632,0.728514,0.474517,0.980009,0.562628,0.48724,0.162533,0.999387,0.14932,0.0913014,0.170281,0.296433,0.0262281,0.61351,0.191444,0.436664,0.836581,0.186725,0.39995,0.893738,0.472366,0.660682,0.299649,0.913594,0.39386,0.974633,0.448377,0.147053,0.564196,0.469058,0.802269,0.778958,0.496736,0.276271,0.633221,0.778464,0.71733,0.378589,0.126764,0.694691,0.444693,0.143079,0.327442,0.450566,0.702981,0.0290827,0.0338449,0.0700091,0.015118,0.165918,0.739009,0.440412,0.290694,0.0300843,0.757037,0.547374,0.21301,0.472681,0.75145,0.012326,0.848809,0.342625,0.71255,0.410692,0.272641,0.638523,0.191559,0.322012,0.159109,0.174666,0.0543153,0.954534,0.093672,0.869318,0.0361352,0.712101,0.649135,0.0285504,0.23843,0.0635223,0.125469,0.343349,0.703698,0.639605,0.931166,0.367574,0.545068,0.37529,0.0974615,0.621613,0.255561,0.791944,0.795942,0.724366,0.879342,0.753034,0.534822,0.848014,0.264747,0.00728434,0.959549,0.902644,0.0821255,0.586196,0.205565,0.0608512,0.33647,0.103439,0.177096,0.37966,0.611043,0.90175,0.221738,0.380152,0.0203056,0.769244,0.732218,0.822664,0.738203,0.8566,0.76524,0.936943,0.97524,0.855493,0.180125,0.195705,0.0174025,0.0854251,0.437092,0.507085,0.89946,0.713741,0.488048,0.753665,0.754085,0.0866746,0.0681455,0.986196,0.630831,0.399925,0.789176,0.6424,0.500119,0.617493,0.865813,0.737719,0.568599,0.0456956,0.565149,0.922891,0.683846,0.391242,0.576471,0.868757,0.73686,0.384879,0.822999,0.173712,0.118082,0.048766,0.99123,0.028255,0.919849,0.159777,0.754944,0.0497169,0.0906417,0.422896,0.303009,0.342519,0.802623,0.236939,0.10372,0.632892,0.908567,0.977351,0.868194,0.171946,0.615777,0.698529,0.445078,0.70414,0.815741,0.341917,0.998843,0.510611,0.993987,0.661406,0.753524,0.251793,0.345738,0.889941,0.729036,0.285525,0.847926,0.299185,0.24754,0.198593,0.734144,0.200034,0.438401,0.166474,0.544636,0.561343,0.271156,0.581829,0.893286,0.666465,0.126619,0.158453,0.437834,0.749887,0.573278,0.775524,0.0907679,0.38148,0.916168,0.973088,0.918119,0.448831,0.641664,0.104376,0.369133,0.423867,0.464297,0.568338,0.822843,0.439233,0.12262,0.351983,0.122914,0.105909,0.426759,0.571222,0.434398,0.173411,0.877104,0.410946,0.308004,0.479128,0.446053,0.0827964,0.905871,0.943439,0.23875,0.776503,0.82631,0.708991,0.821288,0.567649,0.464166,0.748971,0.431012,0.530962,0.925654,0.989468,0.836429,0.38439,0.833779,0.162429,0.904341,0.187896,0.462672,0.441644,0.637175,0.560359,0.137107,0.248608,0.618215,0.594647,0.344547,0.904666,0.28991,0.483806,0.979052,0.391515,0.568841,0.347883,0.311657,0.41258,0.065414,0.355854,0.938173,0.898023,0.639363,0.204292,0.402318,0.37906,0.88537,0.737593,0.03637,0.885854,0.762985,0.0243474,0.843839,0.930743,0.915359,0.625576,0.729373,0.625495,0.15754,0.0935154,0.627068,0.586577,0.0433819,0.33311,0.92238,0.116558,0.348701,0.0982487,0.844752,|0.562094,0.44091,0.981888,0.523848,0.263915,0.211084,0.506467,0.279642,0.243997,0.422727,0.108127,0.649313,0.917022,0.8094,0.886613,0.00167823,0.653559,0.152148,0.74621,0.988352,0.513523,0.228547,0.665403,0.975624,0.0704802,0.0956278,0.270718,0.200516,0.973501,0.744567,0.659781,0.806652,0.141396,0.498178,0.374666,0.351099,0.733171,0.808913,0.423156,0.631466,0.532694,0.296475,0.122412,0.936943,0.887004,0.0367677,0.197823,0.324595,0.355652,0.195169,0.10674,0.654373,0.540664,0.537369,0.854646,0.293143,0.33052,0.125586,0.194838,0.604737,0.114827,0.617672,0.717514,0.834632,0.565657,0.591726,0.417424,0.564532,0.973195,0.578394,0.981962,0.238349,0.830707,0.841944,0.367569,0.927826,0.219086,0.75236,0.968879,0.536207,0.573176,0.215565,0.537623,0.538529,0.087459,0.65529,0.410931,0.73245,0.983557,0.181142,0.587399,0.956936,0.982787,0.373701,0.697855,0.737008,0.937973,0.0656158,0.788438,0.445526,0.66092,0.00462979,0.872908,0.173018,0.765523,0.0457206,0.267493,0.907205,0.504268,0.41057,0.619585,0.0868034,0.75721,0.229356,0.804431,0.65733,0.373108,0.154935,0.832181,0.143434,0.716781,0.963038,0.686456,0.845978,0.0414706,0.665012,0.222981,0.134133,0.490309,0.425663,0.240306,0.88075,0.7811,0.014258,0.614212,0.582439,0.467922,0.149951,0.778166,0.796466,0.22057,0.630591,0.663458,0.596052,0.981456,0.794546,0.796655,0.717626,0.0251251,0.641152,0.627225,0.866339,0.562408,0.653342,0.27828,0.0265171,0.127253,0.34642,0.133357,0.248541,0.531236,0.379246,0.539734,0.256311,0.287784,0.465083,0.558816,0.908072,0.606851,0.382228,0.533885,0.118728,0.748326,0.981291,0.362534,0.674183,0.808446,0.659868,0.692674,0.661066,0.469818,0.623192,0.210222,0.668924,0.173257,0.951351,0.666827,0.65661,0.729923,0.553897,0.660488,0.948623,0.571913,0.269188,0.923974,0.394992,0.723948,0.844412,0.371019,0.145795,0.991187,0.624805,0.788982,0.14061,0.730561,0.517448,0.116682,0.0345019,0.514072,0.581605,0.0366077,0.769983,0.452971,0.942152,0.653714,0.390693,0.733405,0.313561,0.618506,0.428473,0.553089,0.653347,0.293945,0.724042,0.321771,0.459445,0.219617,0.541036,0.456695,0.0378482,0.670064,0.288281,0.856659,0.94391,0.315652,0.633853,0.608907,0.807377,0.882018,0.829768,0.791831,0.140224,0.987749,0.914012,0.153532,0.558661,0.24524,0.398458,0.48926,0.74826,0.105641,0.539576,0.927712,0.678041,0.103724,0.120323,0.150718,0.401689,0.0963806,0.118099,0.742785,0.769356,0.216123,0.902572,0.723453,0.350042,0.410476,0.785934,0.539988,0.803023,0.849823,0.925267,0.75486,0.324616,0.674584,0.49935,0.383516,0.258415,0.0567454,0.860229,0.350447,0.361787,0.0573221,0.019796,0.0186619,0.26715,0.342171,0.843617,0.519221,0.0727407,0.566603,0.01921,0.567825,0.339334,0.119726,0.760515,0.271829,0.485298,0.605026,0.606122,0.264601,0.30973,0.203887,0.560975,0.537304,0.857457,0.777459,0.324139,0.0237848,0.0295532,0.546802,0.28545,0.158155,0.572977,0.231244,0.500894,0.0456324,0.77223,0.994289,0.864991,0.509533,0.21178,0.728189,0.680746,0.576768,0.570147,0.118662,0.71428,0.614433,0.719309,0.264451,0.405117,0.890833,0.922402,0.063579,0.253428,0.462132,0.198914,0.62417,0.121215,0.579647,0.536284,0.942346,0.772888,0.00455737,0.336825,0.0079276,0.0471734,0.917511,0.518951,0.710187,0.0404892,0.777382,0.571636,0.585769,0.514912,0.164351,0.678077,0.199098,0.927485,0.976941,0.344957,0.177013,0.51486,0.0313773,0.432142,0.88835,0.472491,0.588589,0.287666,0.595332,0.563921,0.952861,0.889545,0.308068,0.983455,0.531113,0.449385,0.641317,0.106068,0.90324,0.912524,0.589733,0.32241,0.294933,0.656823,0.722124,0.710305,0.888635,0.75145,0.532295,0.438993,0.718635,0.312687,0.111035,0.538413,0.0326663,0.0451897,0.514934,0.441422,0.430627,0.422921,0.884841,0.121643,0.832143,0.766532,0.857153,0.138665,0.117792,0.991115,0.316789,0.176227,0.844141,0.343944,0.00820208,0.70288,0.862176,0.755265,0.3944,0.207152,0.760586,0.608483,0.725922,0.858042,0.866526,0.739099,0.716873,0.322901,0.633747,0.689465,0.803785,0.725898,0.506057,0.669527,0.75084,0.42929,0.964352,0.0717235,0.356465,0.935804,0.0256386,0.14927,0.764469,0.0378528,0.436771,0.603638,0.987619,0.44399,0.361567,0.24252,0.338811,0.973039,0.521317,0.491431,0.947803,0.453249,0.0617113,0.033544,0.197434,0.937503,0.40794,0.73287,0.10337,0.0330361,0.273857,0.106294,0.508077,0.2996,0.512556,0.0971443,0.946165,0.508785,0.18803,0.916004,0.278136,0.386755,0.938096,0.557285,0.951195,0.0240346,0.486693,0.738861,0.749809,0.818832,0.430399,0.114442,0.712763,0.841752,0.403713,0.316576,0.377751,0.165422,0.654469,0.390621,0.238427,0.571179,0.754537,0.45656,0.682365,0.436871,0.915443,0.702772,0.463378,0.270893,0.480992,0.625438,0.554486,0.874908,0.400705,0.528074,0.481487,0.0568541,0.575356,0.0157038,0.253537,0.198023,0.128457,0.334245,0.275252,0.502355,0.768171,0.834613,0.311613,0.385879,0.935508,0.102945,0.328886,0.216758,0.0211304,0.946621,0.970712,0.906456,0.95303,0.636124,0.748708,0.407201,0.843018,0.644935,0.734081,0.684421,0.746646,0.553034,0.99723,0.657451,0.705598,0.840959,0.902823,0.513923,0.499351,0.433742,0.106141,0.903935,0.92609,0.157595,0.718846,0.469483,0.921528,0.236512,0.756831,0.213196,0.845026,0.912061,0.984322,0.406303,0.943511,0.976752,0.00846213,0.518493,0.637614,0.860987,0.660781,0.841891,0.00994617,0.831978,0.0870273,0.92714,0.573062,0.450159,0.105032,0.336961,0.85279,0.428929,0.280556,0.90112,0.0788595,0.647274,0.38019,0.637356,0.779091,0.150596,0.801199,0.382835,0.443124,0.312524,0.237611,0.947572,0.902741,0.167658,0.536379,0.330603,0.177104,0.183015,0.0326888,0.128147,0.653303,0.845388,0.477999,0.334404,0.377065,0.241013,0.249973,0.803601,0.800092,0.773439,0.529316,0.0830545,0.08505,0.758286,0.933087,0.426865,0.149161,0.0429776,0.669141,0.512303,0.570545,0.629976,0.252458,0.682443,0.548994,0.593218,0.781547,0.0186037,0.162647,0.192081,0.957449,0.676752,0.455606,0.764703,0.656962,0.850117,0.511171,0.45814,0.0571339,0.204817,0.0684799,0.716008,0.132685,0.39464,0.967876,0.401096,0.454669,0.563378,0.533396,0.737794,0.236534,0.443334,0.405945,0.179048,0.943997,0.359053,0.527782,0.298098,0.258978,0.0762251,0.301567,0.723068,0.744176,0.513795,0.395748,0.920978,0.674188,0.43541,0.701332,0.820968,0.657398,0.10457,0.251382,0.391566,0.35554,0.994221,0.849486,0.697641,0.222025,0.878728,0.420428,0.506802,0.189712,0.0250542,0.292259,0.610044,0.903075,0.0785453,0.495191,0.0711673,0.125104,0.117364,0.181773,0.521678,0.447899,0.547723,0.498675,0.986031,0.462842,0.159847,0.382456,0.040621,0.699978,0.618876,0.794141,0.114746,0.502122,0.821478,0.993512,0.0355538,0.214144,0.514952,0.208694,0.638716,0.249288,0.912226,0.813558,0.172108,0.903786,0.525497,0.621063,0.562152,0.150319,0.520547,0.124375,0.0693161,0.800831,0.117913,0.882832,0.604314,0.766117,0.121388,0.29174,0.592909,0.380662,0.140274,0.0169325,0.663184,0.484762,0.641646,0.805193,0.0385259,0.956336,0.308173,0.670774,0.678694,0.043737,0.0588941,0.271956,0.314436,0.888598,0.772989,0.00562543,0.242143,0.491167,0.851057,0.369635,0.188866,0.96174,0.377057,0.0535682,0.379925,0.602899,0.608659,0.409302,0.158156,0.635443,0.938975,0.836906,0.426947,0.0874441,0.731972,0.702184,0.533198,0.593508,0.245822,0.385739,0.405605,0.352007,0.0483691,0.754103,0.606611,0.625107,0.289011,0.46323,0.883917,0.0891008,0.775028,0.223195,0.359522,0.611503,0.709754,0.467148,0.706369,0.167713,0.197112,0.360326,0.66723,0.536893,0.854414,0.890253,0.515097,0.32425,0.683896,0.874213,0.779681,0.862742,0.311941,0.18741,0.59739,0.340238,0.973477,0.117706,0.819823,0.128024,0.520705,0.143946,0.386029,0.338468,0.908521,0.721484,0.788444,0.850045,0.455717,0.470534,0.278248,0.829515,0.328646,0.137883,0.0312249,0.725413,0.871151,0.149938,0.744824,0.294956,0.506809,0.0350814,0.949534,0.480357,0.746434,0.108123,0.235653,0.640221,0.909364,0.489123,0.284523,0.304977,0.0112481,0.0650138,0.929874,0.660901,0.00691605,0.958721,0.0418304,0.448955,0.199966,0.856897,0.200618,0.514934,0.0185396,0.586407,0.462639,0.00832701,0.384591,0.121672,0.671404,0.0916377,0.0477876,0.225241,0.929084,0.771671,0.327336,0.345114,0.517482,0.757661,0.983966,0.545774,0.199796,0.48165,0.0773627,0.183231,0.871848,0.458667,0.218088,0.746354,0.581822,0.798772,0.825511,0.817982,0.445469,0.779051,0.486496,0.39743,0.0932724,0.53728,0.307107,0.00213885,0.590904,0.332256,0.962122,0.879715,0.973031,0.655678,0.55741,0.0526611,0.992581,0.445156,0.589749,0.719333,0.416946,0.197245,0.682433,0.716952,0.0112225,0.611612,0.720085,0.97086,0.92654,0.297001,0.287357,0.465328,0.443131,0.564867,0.839269,0.0704179,0.490584,0.881022,0.300401,0.141158,0.446881,0.952365,0.439298,0.44107,0.512304,0.218371,0.510528,0.347088,0.716585,0.382839,0.534862,0.760176,0.251638,0.676701,0.290069,0.24225,0.275457,0.598776,0.965297,0.970944,0.788159,0.517961,0.584514,0.0868133,0.139298,0.171701,0.922358,0.655374,0.495419,0.77037,0.0859718,0.443269,0.671048,0.26248,0.395528,0.0904747,0.829887,0.859843,0.463297,0.800932,0.459741,0.630337,0.457468,0.54886,0.105903,0.62479,0.0128057,0.0617147,0.473833,0.320891,0.0990418,0.307925,0.690662,0.18691,0.448452,0.978723,0.0598144,0.67575,0.302728,0.739944,0.150399,0.732675,0.353816,0.80007,0.827416,0.50227,0.522501,|0.843107,0.659693,0.709413,0.635709,0.992297,0.289581,0.501304,0.225299,0.532212,0.192239,0.95773,0.338211,0.0899376,0.708141,0.307061,0.751058,0.888809,0.426012,0.535825,0.530427,0.480732,0.044693,0.830556,0.191262,0.916118,0.471434,0.449975,0.619628,0.472405,0.242759,0.841117,0.229803,0.741481,0.281095,0.637187,0.964849,0.12567,0.057802,0.813092,0.244541,0.887063,0.804197,0.378253,0.177475,0.337896,0.246385,0.0528085,0.572252,0.154302,0.68605,0.140872,0.384999,0.766325,0.115117,0.227841,0.0349453,0.467297,0.867269,0.226471,0.680854,0.13386,0.174769,0.686377,0.930026,0.304334,0.138799,0.0202786,0.876576,0.301654,0.49047,0.171897,0.488772,0.434317,0.0791149,0.967326,0.696598,0.333104,0.30631,0.179633,0.197309,0.0236,0.693238,0.494385,0.504513,0.992488,0.650216,0.0622844,0.823105,0.368708,0.0407817,0.995937,0.103535,0.852607,0.228335,0.590727,0.0417084,0.690135,0.566715,0.296921,0.308369,0.273554,0.755607,0.130118,0.810486,0.47294,0.849142,0.327232,0.36982,0.448893,0.635907,0.0696639,0.819257,0.134798,0.865886,0.911058,0.148454,0.784524,0.88013,0.631346,0.130683,0.956665,0.166535,0.156811,0.824286,0.0731733,0.27697,0.938376,0.528905,0.301999,0.212299,0.126531,0.470077,0.827201,0.82522,0.964341,0.0353769,0.441736,0.715791,0.00732309,0.400713,0.651043,0.207715,0.0635107,0.5468,0.793391,0.499291,0.97496,0.314411,0.426233,0.193202,0.931381,0.324038,0.0493617,0.632584,0.217325,0.897626,0.970501,0.87964,0.391646,0.783257,0.452014,0.83388,0.801294,0.835764,0.95339,0.571682,0.131284,0.426519,0.673069,0.639734,0.179102,0.99532,0.219689,0.00262636,0.629904,0.628747,0.936651,0.762908,0.442985,0.663743,0.373554,0.386379,0.219668,0.992604,0.899371,0.827475,0.521891,0.650801,0.282636,0.270147,0.37867,0.690301,0.228767,0.14649,0.574307,0.273932,0.57643,0.6693,0.362848,0.00549299,0.906222,0.619849,0.121194,0.745349,0.777645,0.984187,0.327343,0.937563,0.85134,0.479669,0.720227,0.315916,0.912719,0.0916291,0.0258808,0.0550777,0.00193942,0.0409892,0.312854,0.16855,0.745488,0.273921,0.708173,0.454137,0.596467,0.220053,0.696716,0.85191,0.854924,0.974958,0.234942,0.0760631,0.980087,0.965542,0.8487,0.0876601,0.277971,0.401764,0.749092,0.516866,0.262745,0.679878,0.763707,0.48921,0.497661,0.335266,0.19899,0.413396,0.27887,0.230029,0.437846,0.909195,0.650392,0.373102,0.0405584,0.0763257,0.171238,0.0567395,0.845439,0.281911,0.918156,0.0407273,0.134658,0.249104,0.809041,0.367556,0.0688044,0.268978,0.630714,0.960068,0.686624,0.219315,0.732124,0.723992,0.79183,0.177485,0.527256,0.843477,0.542957,0.303602,0.915043,0.330869,0.0606114,0.846259,0.597622,0.810029,0.0901574,0.0205851,0.860122,0.381031,0.625772,0.902811,0.206311,0.191119,0.267546,0.869492,0.800129,0.0267103,0.0181673,0.222444,0.336596,0.4144,0.309295,0.380139,0.34611,0.719895,0.896582,0.0545217,0.554215,0.751271,0.207383,0.508777,0.660379,0.580194,0.557453,0.863645,0.376279,0.0693408,0.64867,0.219682,0.0807921,0.555294,0.594611,0.975804,0.81279,0.0324762,0.210738,0.774629,0.116283,0.0715258,0.463046,0.322249,0.00565141,0.366966,0.535428,0.151298,0.648805,0.474035,0.965922,0.956312,0.404813,0.830794,0.414998,0.336896,0.319702,0.644118,0.284375,0.111686,0.356123,0.382912,0.196962,0.115345,0.572418,0.665179,0.421334,0.391475,0.633298,0.0311661,0.137309,0.077595,0.624295,0.51335,0.929155,0.000131607,0.508641,0.644961,0.200417,0.641594,0.638855,0.389094,0.784748,0.828962,0.993922,0.089008,0.93441,0.272093,0.241723,0.0787804,0.177793,0.0264378,0.319688,0.259784,0.737808,0.734855,0.536315,0.354564,0.799501,0.408432,0.730259,0.608254,0.394347,0.832358,0.627084,0.672725,0.353858,0.731011,0.924902,0.564397,0.730714,0.150811,0.998348,0.186198,0.30456,0.962546,0.763928,0.903083,0.954525,0.195915,0.259724,0.71106,0.157655,0.651367,0.378837,0.137216,0.887559,0.929289,0.0815757,0.330162,0.543146,0.459068,0.913374,0.45825,0.323846,0.215194,0.0710499,0.414456,0.357738,0.779834,0.196405,0.214963,0.36237,0.251647,0.64791,0.909753,0.170482,0.941779,0.748414,0.992944,0.621721,0.148379,0.587882,0.405289,0.737948,0.703756,0.0511907,0.566748,0.660839,0.514525,0.904006,0.829495,0.392442,0.283114,0.798536,0.432154,0.552712,0.586259,0.336346,0.0135488,0.246033,0.951964,0.946505,0.133416,0.824641,0.926172,0.408655,0.150832,0.040787,0.799875,0.60514,0.52204,0.411637,0.0756025,0.643114,0.950859,0.329901,0.406092,0.806346,0.644478,0.880031,0.261258,0.622766,0.870404,0.319402,0.177976,0.0192435,0.467249,0.660102,0.751086,0.888369,0.571875,0.102979,0.352347,0.897233,0.476417,0.697834,0.610506,0.712573,0.53556,0.255258,0.184374,0.793166,0.692172,0.586654,0.0640213,0.701442,0.910737,0.805043,0.463171,0.833976,0.283607,0.427195,0.796163,0.111615,0.200175,0.738266,0.437286,0.97608,0.493557,0.260284,0.575623,0.545235,0.582115,0.240533,0.782521,0.465757,0.128127,0.742698,0.0832519,0.876164,0.128564,0.914284,0.596836,0.849025,0.0616102,0.630194,0.427628,0.146484,0.331318,0.171841,0.233675,0.801041,0.115858,0.689211,0.953522,0.888684,0.0444757,0.555786,0.964501,0.721219,0.946973,0.748104,0.425102,0.706022,0.161228,0.160047,0.794079,0.757703,0.263233,0.798268,0.973776,0.893679,0.378016,0.462892,0.545368,0.415383,0.754881,0.985187,0.313515,0.104905,0.500252,0.961007,0.867243,0.0805049,0.798396,0.13201,0.157287,0.25274,0.333907,0.884367,0.969488,0.206515,0.175686,0.502674,0.0666419,0.730257,0.306355,0.314361,0.120002,0.924263,0.646506,0.896419,0.942575,0.129545,0.348699,0.474941,0.815823,0.576331,0.84161,0.842954,0.432777,0.616586,0.963029,0.108525,0.508753,0.513421,0.417434,0.496514,0.407663,0.285817,0.0421813,0.854535,0.187639,0.930589,0.705222,0.716018,0.317859,0.751646,0.181888,0.87972,0.323722,0.949471,0.443734,0.0477753,0.617323,0.620287,0.297829,0.935296,0.753759,0.20708,0.344438,0.327695,0.28056,0.698066,0.409914,0.282205,0.669137,0.528128,0.291279,0.630211,0.113605,0.42547,0.712752,0.133951,0.0360548,0.997086,0.739891,0.129574,0.459295,0.0281631,0.0175129,0.123092,0.640438,0.19655,0.835088,0.554374,0.780141,0.0289207,0.140034,0.825432,0.949932,0.769519,0.0122179,0.981517,0.613215,0.538279,0.372235,0.913402,0.723455,0.28155,0.17396,0.704028,0.575053,0.903332,0.785108,0.332404,0.375457,0.667754,0.404707,0.496914,0.470155,0.528612,0.340195,0.0495616,0.0621055,0.0889498,0.64303,0.847099,0.335177,0.222046,0.71962,0.27183,0.616326,0.659867,0.16327,0.361897,0.988805,0.0555777,0.835265,0.580907,0.844461,0.449712,0.555418,0.128666,0.066896,0.792131,0.94969,0.418594,0.985978,0.00563616,0.369107,0.259737,0.895918,0.955723,0.666063,0.574452,0.884962,0.606105,0.890698,0.0286735,0.0241026,0.619154,0.670086,0.0803816,0.422233,0.67403,0.61644,0.755458,0.978578,0.789311,0.604927,0.810558,0.275621,0.856609,0.836579,0.611671,0.91849,0.229222,0.639331,0.104465,0.818391,0.591458,0.71999,0.168124,0.994825,0.0397961,0.57434,0.349959,0.0826431,0.742068,0.733608,0.559128,0.438326,0.750874,0.5934,0.0832825,0.489872,0.75975,0.4214,0.399067,0.6221,0.353724,0.491328,0.781494,0.814155,0.924585,0.17243,0.938732,0.148675,0.438037,0.327116,0.536431,0.435444,0.564831,0.936944,0.2835,0.231979,0.926377,0.37732,0.597257,0.801367,0.704098,0.663495,0.0584759,0.278346,0.685741,0.355204,0.607492,0.104622,0.278614,0.212549,0.205625,0.885887,0.612292,0.911583,0.276486,0.319064,0.0439658,0.0880005,0.253805,0.633835,0.968534,0.294189,0.0838501,0.21297,0.0672767,0.936937,0.00163245,0.13825,0.685881,0.653678,0.766283,0.747514,0.705633,0.720472,0.776329,0.42007,0.81648,0.169743,0.674218,0.128516,0.808121,0.975248,0.415219,0.285673,0.0471515,0.782091,0.32638,0.494285,0.417956,0.630759,0.191355,0.764824,0.506031,0.0773211,0.486542,0.470218,0.745943,0.119283,0.0917025,0.317702,0.476675,0.739362,0.0403403,0.192915,0.6528,0.973794,0.433826,0.950169,0.265434,0.405381,0.577555,0.0256149,0.511791,0.466097,0.538408,0.0556945,0.229094,0.436419,0.062579,0.208729,0.624873,0.078697,0.101223,0.0038228,0.282685,0.0680147,0.936317,0.950693,0.424742,0.582942,0.59854,0.0720478,0.379345,0.457339,0.992431,0.274315,0.594504,0.471841,0.898999,0.387101,0.516093,0.584822,0.989513,0.995365,0.364741,0.857198,0.863535,0.289086,0.927768,0.864643,0.597611,0.324172,0.485128,0.122188,0.280055,0.805094,0.857445,0.116932,0.0666978,0.173466,0.39726,0.592351,0.925061,0.856683,0.377544,0.698531,0.310334,0.981659,0.573053,0.768138,0.723787,0.653987,0.563145,0.800285,0.652998,0.586899,0.414018,0.449901,0.542371,0.710619,0.777467,0.796166,0.806325,0.642194,0.63539,0.124597,0.78043,0.48422,0.428213,0.976557,0.0780601,0.777243,0.0856212,0.0892298,0.240773,0.469929,0.38198,0.917428,0.0108731,0.976675,0.0330927,0.318989,0.0909377,0.971316,0.875403,0.0802367,0.405553,0.72817,0.713329,0.880479,0.563781,0.263563,0.730396,0.84713,0.72977,0.617235,0.936905,0.547664,0.354018,0.493304,0.866888,0.517926,0.947416,0.866539,0.0328179,0.951393,0.53419,0.0969648,0.692373,0.337066,0.465376,0.970799,0.68538,0.224883,0.587132,0.400563,0.563068,0.509037,0.787039,0.650396,0.2924,0.361483,0.0865037,0.729428,0.803647,0.96075,0.057218,0.703589,0.605994,0.453671,0.407508,0.107114,0.0122173,0.883504,0.271449,0.788897,0.974626,0.322616,0.402523,0.663666,|0.473227,0.0144979,0.986139,0.6576,0.492543,0.325472,0.308984,0.410105,0.483765,0.854295,0.739597,0.620468,0.342303,0.985867,0.244578,0.654063,0.461477,0.715874,0.75445,0.948714,0.266516,0.0992199,0.53809,0.255573,0.514216,0.466444,0.544843,0.871533,0.152809,0.491264,0.606589,0.0134438,0.920919,0.566328,0.292364,0.705329,0.472099,0.327014,0.323317,0.774524,0.415995,0.874924,0.708366,0.124605,0.85794,0.928103,0.704237,0.735444,0.0633349,0.191603,0.171157,0.233898,0.821152,0.363836,0.101441,0.901448,0.0664535,0.621515,0.838766,0.249946,0.707589,0.0922108,0.850923,0.737648,0.133889,0.70021,0.583799,0.380229,0.708835,0.947917,0.660403,0.299117,0.548876,0.0405573,0.245217,0.384698,0.915127,0.574472,0.230848,0.406374,0.991474,0.0358856,0.384038,0.52697,0.788855,0.0982438,0.84716,0.947318,0.713427,0.413008,0.807391,0.880732,0.20761,0.0353159,0.881202,0.58475,0.610287,0.730759,0.81762,0.0876286,0.311376,0.254016,0.201483,0.696068,0.773521,0.116857,0.872344,0.170764,0.377825,0.276565,0.830628,0.579537,0.00761008,0.138497,0.453903,0.673638,0.238982,0.656844,0.582576,0.749134,0.195453,0.543929,0.657806,0.336778,0.172351,0.873932,0.109514,0.574935,0.0655335,0.771864,0.830779,0.0801139,0.325956,0.295611,0.177973,0.538851,0.698059,0.954342,0.528665,0.792453,0.565113,0.262199,0.138975,0.0322133,0.915377,0.527249,0.58948,0.978968,0.0232673,0.978212,0.397237,0.967959,0.96082,0.0905204,0.117864,0.375732,0.57995,0.677699,0.606107,0.072476,0.60649,0.424235,0.862254,0.479953,0.915209,0.595514,0.633279,0.715658,0.505245,0.103403,0.478341,0.465558,0.0380157,0.349433,0.804715,0.818502,0.900808,0.178135,0.195638,0.952243,0.171304,0.611396,0.218102,0.912659,0.856752,0.668114,0.547048,0.0651645,0.0356542,0.763263,0.0546796,0.468378,0.369259,0.32855,0.17109,0.879154,0.69136,0.572608,0.884257,0.0948712,0.870685,0.954055,0.320653,0.915883,0.101563,0.292268,0.825798,0.0247307,0.0858831,0.260114,0.162348,0.186128,0.538097,0.0622374,0.0577317,0.0649374,0.72299,0.752261,0.831696,0.349302,0.315021,0.987529,0.838912,0.0342942,0.483088,0.445052,0.394803,0.868427,0.76639,0.314464,0.817781,0.696448,0.515998,0.66848,0.319205,0.846887,0.468183,0.907151,0.471004,0.962019,0.806974,0.0998918,0.386068,0.114372,0.282692,0.0851744,0.355128,0.0341702,0.262968,0.985739,0.378294,0.396928,0.718922,0.724914,0.15601,0.624235,0.920744,0.85232,0.21739,0.705102,0.058748,0.802954,0.35135,0.240305,0.292169,0.131219,0.570327,0.794845,0.784595,0.446548,0.396141,0.98779,0.254807,0.0626536,0.0727994,0.53147,0.0274432,0.571503,0.189371,0.907217,0.448439,0.295669,0.947999,0.275355,0.29696,0.348899,0.562989,0.72582,0.311476,0.465683,0.202582,0.282124,0.0327686,0.739828,0.590076,0.396264,0.491279,0.932598,0.728551,0.829949,0.296414,0.692053,0.398265,0.793215,0.618011,0.26437,0.585123,0.41987,0.277379,0.0640227,0.585065,0.659848,0.344349,0.509498,0.0755924,0.977409,0.951139,0.821528,0.898184,0.783501,0.781021,0.314096,0.362557,0.411761,0.278218,0.38294,0.935923,0.861807,0.128572,0.214548,0.000701487,0.182318,0.241635,0.484639,0.829861,0.972074,0.623877,0.314113,0.981509,0.930648,0.518279,0.303827,0.212403,0.207841,0.540488,0.100567,0.475165,0.69074,0.36102,0.440317,0.842932,0.201996,0.415831,0.141777,0.626115,0.744157,0.0848951,0.0899475,0.39458,0.603496,0.908303,0.180379,0.47941,0.575048,0.219222,0.60557,0.482809,0.959345,0.563265,0.712998,0.521463,0.0885241,0.599586,0.940585,0.0397288,0.890083,0.851084,0.821079,0.899597,0.49727,0.872046,0.269665,0.73437,0.14309,0.947227,0.326101,0.400175,0.415228,0.149747,0.677815,0.329432,0.144608,0.169989,0.651375,0.977686,0.759088,0.853269,0.268085,0.00196105,0.784148,0.0290263,0.057691,0.036332,0.982072,0.808182,0.669953,0.357809,0.293428,0.513065,0.161098,0.854101,0.494378,0.822795,0.946297,0.370239,0.593256,0.000756562,0.453663,0.168296,0.608648,0.0185841,0.362271,0.385687,0.390573,0.707294,0.912618,0.717708,0.842782,0.295622,0.840039,0.489447,0.905011,0.399328,0.745532,0.176552,0.166781,0.0637392,0.921919,0.811907,0.33798,0.460834,0.609459,0.484574,0.185789,0.0288067,0.626622,0.290784,0.876864,0.290283,0.478159,0.0188581,0.759431,0.714597,0.577907,0.0327436,0.0822415,0.0526109,0.817717,0.15515,0.117276,0.285963,0.815353,0.880498,0.197555,0.641889,0.404312,0.634543,0.806444,0.632976,0.863149,0.956795,0.862285,0.0329165,0.445709,0.563947,0.951601,0.621638,0.403515,0.383425,0.128851,0.834295,0.375876,0.0693651,0.0707986,0.571968,0.509947,0.0724407,0.157622,0.151936,0.566918,0.333274,0.487353,0.622317,0.362881,0.268575,0.0283017,0.334632,0.791299,0.00254399,0.653792,0.872808,0.170002,0.185959,0.481383,0.110363,0.428972,0.522508,0.165346,0.448766,0.935015,0.598103,0.0993147,0.240069,0.638538,0.899393,0.225789,0.373547,0.468887,0.973595,0.256397,0.488799,0.0515888,0.654739,0.820185,0.292197,0.770209,0.00239557,0.829731,0.937707,0.174754,0.675635,0.221987,0.375593,0.24412,0.714342,0.828957,0.231012,0.65286,0.749308,0.243029,0.18501,0.42086,0.098114,0.102275,0.327769,0.0725866,0.765376,0.0353834,0.654465,0.230155,0.837362,0.589321,0.258072,0.884453,0.531667,0.994509,0.87838,0.514186,0.593908,0.980144,0.352171,0.711467,0.212832,0.746626,0.513801,0.0807219,0.586239,0.981606,0.0669177,0.751695,0.733977,0.886254,0.145612,0.934997,0.299594,0.862435,0.341405,0.142131,0.0575882,0.710871,0.662221,0.66021,0.482409,0.415346,0.847366,0.114441,0.561143,0.346102,0.645759,0.676455,0.833493,0.647663,0.894213,0.116421,0.627958,0.170989,0.133834,0.125251,0.481736,0.231262,0.238177,0.42091,0.8102,0.894395,0.803759,0.183837,0.0289559,0.216392,0.188541,0.0890221,0.12903,0.776321,0.165749,0.44939,0.986403,0.443887,0.106544,0.445605,0.0307558,0.857425,0.923978,0.0302172,0.138138,0.18653,0.272443,0.723819,0.712506,0.852055,0.945781,0.188941,0.493258,0.497359,0.217943,0.390614,0.202496,0.660919,0.972001,0.672241,0.226652,0.484275,0.292812,0.783752,0.0285013,0.274442,0.115917,0.859373,0.294073,0.0808291,0.448482,0.116332,0.522381,0.00255084,0.269574,0.485427,0.568878,0.777042,0.262028,0.871845,0.698472,0.133718,0.277048,0.851344,0.0379736,0.438926,0.121861,0.243882,0.279519,0.326001,0.926006,0.147255,0.282553,0.979921,0.509211,0.918904,0.608566,0.390173,0.724027,0.261388,0.765272,0.160773,0.826488,0.651811,0.666514,0.32078,0.879079,0.417101,0.0153698,0.143047,0.702594,0.869096,0.563575,0.0215544,0.473227,0.961133,0.300789,0.251086,0.461732,0.29441,0.840083,0.595741,0.670549,0.630584,0.418896,0.353008,0.893359,0.542159,0.0177487,0.843123,0.962395,0.68733,0.238516,0.672055,0.409932,0.378766,0.35723,0.737884,0.830251,0.574637,0.340377,0.300637,0.747196,0.35809,0.316144,0.240852,0.171769,0.503222,0.0315893,0.0519881,0.224719,0.251709,0.526675,0.900825,0.0994633,0.121989,0.47742,0.346569,0.714013,0.342169,0.802933,0.964317,0.548578,0.57924,0.587442,0.186566,0.434815,0.128529,0.662268,0.264039,0.543303,0.566146,0.400736,0.398163,0.614603,0.8724,0.327626,0.207402,0.322527,0.161334,0.754508,0.379617,0.0304379,0.0142373,0.917244,0.996457,0.447785,0.128262,0.966376,0.930953,0.0582467,0.577349,0.376235,0.629618,0.671034,0.982247,0.637494,0.211161,0.5265,0.56973,0.772364,0.438608,0.395096,0.51206,0.727681,0.244349,0.937646,0.783817,0.804001,0.122166,0.0666515,0.0786324,0.454745,0.737582,0.899971,0.932254,0.580357,0.353384,0.83955,0.225311,0.951801,0.27285,0.958465,0.381498,0.591635,0.393963,0.930746,0.0640058,0.922855,0.205795,0.0659069,0.970204,0.870596,0.826549,0.416014,0.866324,0.258776,0.151246,0.162073,0.444882,0.254949,0.375207,0.639351,0.602203,0.354122,0.43985,0.336026,0.567139,0.198386,0.132009,0.133932,0.834704,0.29792,0.768565,0.965151,0.636883,0.572641,0.0752262,0.568045,0.91955,0.63303,0.65471,0.897619,0.397279,0.286866,0.357106,0.733158,0.669923,0.371262,0.881642,0.713496,0.661919,0.456508,0.509697,0.951527,0.179315,0.0320636,0.40342,0.33208,0.284296,0.243756,0.951562,0.325776,0.239535,0.877187,0.623185,0.679974,0.652298,0.514171,0.0147764,0.325854,0.968529,0.372069,0.345947,0.265121,0.690966,0.497104,0.195072,0.172915,0.240672,0.219377,0.624104,0.722322,0.304078,0.62406,0.693451,0.72952,0.738586,0.921948,0.755968,0.981059,0.0106233,0.537399,0.0482181,0.337471,0.572255,0.426377,0.430804,0.219371,0.26143,0.282462,0.0245278,0.872264,0.813188,0.166469,0.89094,0.174328,0.319277,0.833256,0.879964,0.645222,0.942427,0.00920039,0.0548156,0.875831,0.72539,0.539841,0.240877,0.227887,0.816179,0.757711,0.226686,0.776411,0.0288662,0.46194,0.550217,0.486636,0.792587,0.82499,0.627709,0.965456,0.350137,0.889006,0.269632,0.534722,0.827221,0.64723,0.617971,0.687286,0.189683,0.455529,0.343699,0.0135486,0.844037,0.281696,0.540151,0.919803,0.945825,0.194436,0.367924,0.39474,0.66337,0.337708,0.408309,0.318117,0.942787,0.749301,0.532538,0.230483,0.36996,0.206569,0.403997,0.770557,0.0662352,0.963182,0.0994907,0.693201,0.659105,0.137262,0.800994,0.337548,0.268087,0.839825,0.130491,0.353537,0.0789952,0.443036,0.0911587,0.976496,0.921243,0.261382,0.450985,0.499219,0.457643,0.934357,0.88029,0.517916,0.777372,0.773886,0.954821,0.558565,0.413553,0.139571,0.0743304,0.489914,0.896658,0.762292,0.905984,0.368695,0.13921,0.702136,0.782248,|0.690772,0.113269,0.647159,0.2634,0.66822,0.495115,0.828457,0.649854,0.555315,0.256243,0.525605,0.972271,0.724086,0.142895,0.725379,0.243874,0.454762,0.658193,0.934672,0.888131,0.255598,0.0870201,0.384129,0.763766,0.551673,0.298728,0.9592,0.886828,0.23753,0.428122,0.769867,0.837618,0.874619,0.151073,0.952011,0.0874475,0.156977,0.353729,0.523209,0.403961,0.945479,0.159841,0.995201,0.101016,0.257225,0.30788,0.833071,0.292048,0.0940135,0.27915,0.583347,0.439789,0.224975,0.918592,0.452279,0.645742,0.335859,0.118914,0.00839663,0.855805,0.418285,0.596683,0.678475,0.731455,0.389025,0.0806472,0.923728,0.396257,0.572779,0.160914,0.477904,0.227731,0.109277,0.865565,0.0616176,0.235235,0.0387697,0.636762,0.935118,0.573413,0.00363368,0.276899,0.243333,0.802444,0.0564095,0.959992,0.251623,0.127897,0.400821,0.223276,0.394814,0.0321568,0.266261,0.0502392,0.128002,0.983287,0.875691,0.0793179,0.318609,0.211398,0.123477,0.438553,0.854089,0.00205684,0.846444,0.125951,0.251401,0.600332,0.458867,0.686175,0.523538,0.352602,0.363355,0.110205,0.0794458,0.989091,0.280113,0.649378,0.708401,0.266402,0.171111,0.0545915,0.564741,0.676696,0.325305,0.243211,0.132118,0.0510109,0.751853,0.668849,0.761141,0.325104,0.858973,0.344452,0.327163,0.861115,0.466002,0.225452,0.852439,0.749965,0.894257,0.499395,0.163176,0.802374,0.495865,0.246726,0.414618,0.810194,0.348017,0.96552,0.726068,0.560401,0.323435,0.57394,0.214603,0.937977,0.404214,0.330494,0.361931,0.770624,0.687888,0.966141,0.720721,0.755347,0.707501,0.326889,0.560946,0.0891047,0.28747,0.716679,0.663907,0.246173,0.184671,0.871712,0.37718,0.272953,0.898762,0.736011,0.444588,0.566297,0.594883,0.405702,0.180544,0.742423,0.596255,0.160806,0.519085,0.771093,0.8558,0.198574,0.831344,0.837319,0.41233,0.861417,0.486881,0.563205,0.599026,0.923195,0.628773,0.661489,0.290857,0.989559,0.857106,0.839254,0.732773,0.0979325,0.987405,0.0388894,0.774521,0.419499,0.933911,0.458911,0.369035,0.611598,0.294011,0.702891,0.677665,0.270907,0.631795,0.742406,0.409823,0.696641,0.87803,0.88123,0.316798,0.927694,0.514051,0.451485,0.471001,0.365286,0.878749,0.847682,0.214045,0.0898927,0.121899,0.373064,0.342133,0.0496746,0.720866,0.143565,0.267326,0.215103,0.379639,0.256501,0.991644,0.672827,0.903839,0.933043,0.773357,0.604011,0.279432,0.657711,0.63521,0.203812,0.148915,0.847133,0.0630437,0.834597,0.295297,0.88388,0.977077,0.711257,0.839402,0.694152,0.485664,0.988103,0.367977,0.18151,0.203499,0.506577,0.298726,0.0199605,0.88192,0.879279,0.111351,0.796944,0.547634,0.53401,0.705747,0.879148,0.910339,0.941053,0.403121,0.827974,0.857281,0.76643,0.135277,0.439552,0.414366,0.358613,0.126204,0.34145,0.83568,0.336006,0.112561,0.510051,0.164985,0.734356,0.323634,0.541902,0.205758,0.849225,0.851948,0.890658,0.903778,0.833621,0.339765,0.136189,0.891745,0.0294703,0.561234,0.833074,0.622621,0.399222,0.28337,0.31406,0.00644886,0.185205,0.302977,0.677388,0.515358,0.884792,0.758407,0.167983,0.77536,0.416763,0.651997,0.848046,0.01853,0.135642,0.327165,0.611374,0.613474,0.421018,0.854464,0.153704,0.757002,0.327574,0.838555,0.579447,0.167732,0.808664,0.187094,0.910865,0.752861,0.785141,0.0785616,0.915705,0.99383,0.680806,0.657041,0.425091,0.513663,0.149616,0.766375,0.780187,0.952114,0.708117,0.338567,0.191764,0.762784,0.896325,0.795935,0.260026,0.270725,0.191644,0.0629381,0.73376,0.566755,0.685722,0.395984,0.687298,0.859663,0.965325,0.139492,0.548006,0.451552,0.281492,0.947753,0.514988,0.823298,0.480004,0.543056,0.498324,0.591506,0.590799,0.541138,0.668726,0.652284,0.34938,0.563641,0.407657,0.96763,0.3231,0.452172,0.589352,0.805767,0.0755639,0.00693452,0.630343,0.94576,0.822971,0.493439,0.135303,0.366183,0.870927,0.720601,0.631492,0.822713,0.843736,0.468565,0.313557,0.235721,0.863281,0.216383,0.528335,0.577772,0.727747,0.818954,0.265761,0.0484212,0.642486,0.944061,0.327821,0.685067,0.520482,0.254705,0.0783592,0.517791,0.681861,0.933818,0.847403,0.592205,0.43385,0.420667,0.598346,0.692927,0.198173,0.668359,0.937692,0.15216,0.87824,0.612566,0.384168,0.912595,0.788042,0.249757,0.238014,0.728684,0.501451,0.89972,0.990816,0.75144,0.201282,0.358553,0.51671,0.938223,0.90074,0.944198,0.10481,0.917722,0.952068,0.819823,0.902619,0.070788,0.94556,0.519453,0.252051,0.973623,0.456157,0.556539,0.830473,0.478836,0.981532,0.522348,0.0578555,0.784185,0.298257,0.661474,0.694067,0.976811,0.77071,0.169546,0.00578004,0.862065,0.995182,0.610581,0.789271,0.266699,0.463573,0.264309,0.524649,0.87196,0.935962,0.877696,0.59824,0.593949,0.844419,0.536366,0.681094,0.451423,0.408238,0.027327,0.329794,0.223531,0.29634,0.0195493,0.780511,0.785907,0.216582,0.280009,0.216216,0.305376,0.41627,0.653748,0.881581,0.260429,0.595486,0.884601,0.212378,0.849939,0.663302,0.00637567,0.195678,0.168022,0.160649,0.625006,0.391439,0.893281,0.672974,0.39432,0.444594,0.216526,0.214269,0.577079,0.0162231,0.223445,0.120875,0.119178,0.0626483,0.549353,0.523117,0.394578,0.7118,0.350889,0.841586,0.514762,0.239232,0.259464,0.264145,0.787529,0.258782,0.969066,0.228968,0.391948,0.361958,0.433373,0.604885,0.910974,0.749329,0.580926,0.0444131,0.552164,0.650486,0.282981,0.0819236,0.612061,0.598972,0.410342,0.309844,0.363715,0.0147977,0.0429371,0.575591,0.948283,0.0122163,0.151822,0.572717,0.74534,0.365711,0.951758,0.107317,0.365564,0.2206,0.26023,0.000193715,0.466309,0.816682,0.413123,0.955937,0.500977,0.56726,0.565855,0.0500581,0.640629,0.988484,0.589688,0.264269,0.75177,0.934442,0.363383,0.999353,0.815711,0.656713,0.0618109,0.45776,0.790417,0.710513,0.76912,0.737545,0.981471,0.916253,0.870893,0.560452,0.788963,0.431622,0.272064,0.850203,0.23259,0.121393,0.910185,0.913956,0.787598,0.479836,0.684219,0.265637,0.125289,0.373178,0.494579,0.798863,0.299966,0.939799,0.886939,0.98183,0.835392,0.316796,0.0646834,0.572761,0.897109,0.744288,0.589556,0.72611,0.207897,0.550666,0.627698,0.396093,0.00807232,0.147677,0.527948,0.91359,0.201235,0.337877,0.197112,0.728447,0.583709,0.747599,0.747938,0.907803,0.973694,0.303598,0.00293356,0.308553,0.54746,0.833005,0.271194,0.0411619,0.711828,0.189249,0.234519,0.659892,0.964684,0.213832,0.108177,0.807634,0.769212,0.00904304,0.629234,0.794035,0.759671,0.0296826,0.631918,0.911711,0.954053,0.480423,0.289189,0.921787,0.719817,0.903788,0.597824,0.626986,0.474837,0.205444,0.536663,0.0630662,0.92352,0.919811,0.220047,0.4273,0.143556,0.106682,0.200493,0.593581,0.329007,0.165685,0.242809,0.392342,0.531461,0.923876,0.942343,0.886387,0.421175,0.883164,0.642465,0.777951,0.143861,0.916856,0.19972,0.293702,0.91231,0.116225,0.130658,0.155723,0.0551735,0.126772,0.399107,0.421213,0.681059,0.0356078,0.375509,0.38948,0.686994,0.364825,0.579058,0.812046,0.196263,0.643457,0.27759,0.216834,0.477762,0.907789,0.924516,0.826375,0.504609,0.982324,0.192248,0.392412,0.811767,0.102588,0.114775,0.682746,0.158394,0.840643,0.146013,0.274041,0.662572,0.332373,0.0767121,0.0380833,0.45384,0.365966,0.249146,0.834942,0.448851,0.707474,0.359991,0.114602,0.295388,0.399105,0.756304,0.610385,0.242589,0.258371,0.701483,0.791032,0.63861,0.0689182,0.539391,0.634439,0.621546,0.2341,0.962881,0.470458,0.158086,0.400081,0.702043,0.997545,0.356689,0.900226,0.398437,0.756376,0.294113,0.446708,0.508526,0.67671,0.851204,0.807396,0.506768,0.347617,0.791793,0.714199,0.357107,0.972487,0.287882,0.457265,0.525866,0.934192,0.73368,0.60464,0.352778,0.0433429,0.871453,0.85383,0.0067246,0.649342,0.979547,0.000189722,0.936139,0.802374,0.550153,0.870541,0.276927,0.969953,0.158199,0.531115,0.342047,0.123499,0.824737,0.786808,0.326876,0.95977,0.759812,0.685404,0.19543,0.449694,0.420114,0.366112,0.535157,0.84373,0.983783,0.377647,0.993341,0.161268,0.019177,0.159608,0.824162,0.970093,0.0608028,0.825384,0.755237,0.201252,0.48939,0.203747,0.0120162,0.90942,0.580331,0.317541,0.944213,0.976406,0.945867,0.283626,0.966486,0.845862,0.859041,0.324822,0.24251,0.426545,0.195403,0.88491,0.255109,0.100814,0.528551,0.186944,0.538638,0.623147,0.0201056,0.160542,0.151021,0.911657,0.340264,0.142833,0.702298,0.505297,0.557116,0.692534,0.128013,0.89213,0.302479,0.37068,0.492759,0.984201,0.0252093,0.623297,0.0116274,0.0660054,0.439987,0.391311,0.8942,0.397462,0.513873,0.367226,0.574466,0.172712,0.398194,0.47081,0.724135,0.233888,0.722955,0.249176,0.892223,0.667992,0.19098,0.398324,0.798535,0.38377,0.734504,0.586407,0.0312957,0.0114388,0.249851,0.458038,0.421509,0.1772,0.402592,0.141786,0.00410753,0.318031,0.00257367,0.2607,0.014815,0.00247097,0.179564,0.804515,0.429166,0.731978,0.606769,0.990644,0.086975,0.308772,0.858498,0.380354,0.503128,0.597169,0.26971,0.0297925,0.207055,0.0612332,0.41612,0.350582,0.93174,0.953683,0.651038,0.446487,0.293603,0.601925,0.245902,0.697154,0.360336,0.731555,0.723757,0.16841,0.104711,0.12172,0.13843,0.755077,0.786388,0.845929,0.044506,0.537546,0.991225,0.777576,0.749616,0.74025,0.305974,0.311129,0.524636,0.0105643,0.275282,0.428544,0.0650881,0.0563147,0.214346,0.281226,0.0827274,0.464383,0.631904,0.286213,0.10939,0.351988,0.436212,0.912653,0.163243,0.845062,0.704198,0.0690308,0.872031,0.719835,0.890104,0.713658,0.181072,0.741876,|0.584149,0.0482726,0.549353,0.80172,0.293322,0.574477,0.945284,0.358716,0.105791,0.814698,0.0254285,0.638937,0.333829,0.749209,0.613732,0.0823464,0.0570847,0.374523,0.119285,0.00415194,0.0554223,0.305777,0.772082,0.726816,0.84353,0.588871,0.935347,0.229033,0.0838178,0.0655621,0.891596,0.475262,0.566869,0.871379,0.579624,0.102004,0.647726,0.675976,0.714929,0.00855929,0.280942,0.606093,0.275947,0.898346,0.415909,0.516429,0.0257899,0.0547132,0.159892,0.466195,0.196484,0.882342,0.230511,0.187302,0.974998,0.148772,0.847628,0.395615,0.927217,0.787949,0.321783,0.992423,0.935375,0.740022,0.285083,0.455387,0.225781,0.106691,0.766846,0.87561,0.382233,0.596441,0.802859,0.6662,0.731959,0.098794,0.648501,0.0532589,0.112327,0.744781,0.118501,0.142561,0.237825,0.13486,0.661071,0.659872,0.868928,0.587852,0.712615,0.0451626,0.715383,0.506352,0.0722261,0.657048,0.691321,0.223987,0.600864,0.495055,0.0304512,0.474804,0.356334,0.430923,0.445386,0.732525,0.156519,0.129265,0.571409,0.964127,0.210503,0.511131,0.394882,0.819827,0.777454,0.177577,0.340464,0.317873,0.908501,0.250709,0.886916,0.547349,0.381607,0.20528,0.0588537,0.221673,0.744889,0.181982,0.584015,0.118876,0.750319,0.248436,0.00497818,0.225424,0.442751,0.425712,0.289092,0.79261,0.888208,0.856204,0.571974,0.589194,0.55242,0.308144,0.691945,0.104673,0.420572,0.608146,0.027247,0.928404,0.0710201,0.502301,0.986369,0.663634,0.628806,0.648069,0.514377,0.947758,0.550388,0.563263,0.0849615,0.189953,0.94997,0.814553,0.752492,0.775302,0.365978,0.974368,0.797304,0.0109947,0.00227755,0.0189966,0.571173,0.898725,0.949099,0.694761,0.529345,0.9732,0.949301,0.248864,0.343015,0.46555,0.476414,0.604829,0.0767704,0.578417,0.0165697,0.427083,0.482119,0.591788,0.166572,0.00838715,0.195682,0.534143,0.990902,0.996124,0.0741999,0.861893,0.605544,0.116933,0.731966,0.450443,0.445491,0.789181,0.257111,0.940984,0.764356,0.694979,0.540893,0.819297,0.0720078,0.35921,0.0352951,0.122093,0.226368,0.285479,0.657184,0.93832,0.865092,0.229831,0.331462,0.604163,0.965298,0.651961,0.789824,0.853141,0.304981,0.357584,0.906591,0.321813,0.662639,0.0501254,0.174381,0.571329,0.422198,0.268952,0.0857747,0.533389,0.151312,0.405822,0.777624,0.763037,0.14132,0.477943,0.3067,0.914745,0.887662,0.161648,0.569559,0.188915,0.204543,0.520716,0.423443,0.389422,0.631294,0.730151,0.226725,0.675087,0.882641,0.39143,0.313597,0.891602,0.538949,0.369279,0.727613,0.413722,0.0229125,0.93502,0.361074,0.937404,0.459504,0.957364,0.91526,0.538937,0.233831,0.737327,0.429836,0.85264,0.416747,0.305575,0.24406,0.467138,0.275036,0.0497603,0.795117,0.38146,0.231018,0.491957,0.425888,0.0171921,0.32659,0.0824463,0.885609,0.593796,0.430706,0.617408,0.0979707,0.796727,0.379022,0.670775,0.361323,0.206146,0.0179125,0.185361,0.605253,0.725631,0.0981053,0.835623,0.188912,0.127622,0.686395,0.439709,0.745569,0.521008,0.821852,0.254927,0.868007,0.701552,0.866058,0.870899,0.250851,0.205357,0.967955,0.565334,0.782012,0.259115,0.322551,0.796903,0.299685,0.940573,0.688986,0.357734,0.388526,0.898466,0.487897,0.951874,0.651772,0.411479,0.192403,0.521426,0.866366,0.149199,0.624776,0.619303,0.596149,0.389933,0.515428,0.0497473,0.687088,0.383948,0.620476,0.52062,0.271467,0.0494806,0.790639,0.0517535,0.864577,0.158288,0.091549,0.269936,0.626416,0.525455,0.884757,0.866735,0.481075,0.0684927,0.490422,0.859464,0.929051,0.577794,0.595844,0.177575,0.823845,0.283543,0.358811,0.0357169,0.408713,0.12246,0.461227,0.948749,0.789701,0.135043,0.473206,0.0605863,0.516021,0.911834,0.199046,0.758077,0.827284,0.0709105,0.44346,0.42713,0.266527,0.672809,0.833364,0.229549,0.606687,0.10353,0.783824,0.0131222,0.372689,0.397848,0.58764,0.0973851,0.658017,0.323459,0.379274,0.74044,0.569399,0.461461,0.373533,0.43978,0.27506,0.408995,0.0096224,0.936986,0.732971,0.299721,0.0262562,0.563845,0.526866,0.967197,0.792792,0.677796,0.0356628,0.444948,0.320731,0.190278,0.429813,0.025673,0.208205,0.944438,0.303277,0.220689,0.203163,0.979277,0.80883,0.457835,0.785348,0.668236,0.713766,0.0320603,0.96436,0.513938,0.390113,0.759696,0.329826,0.397451,0.988511,0.331285,0.643289,0.753988,0.149984,0.890015,0.79781,0.319699,0.300274,0.980387,0.483583,0.601344,0.334286,0.728653,0.561,0.553135,0.452104,0.59568,0.871999,0.757791,0.847767,0.0667625,0.412455,0.94088,0.761319,0.204126,0.330551,0.908269,0.173658,0.317212,0.960528,0.254522,0.671894,0.324282,0.020019,0.976723,0.532318,0.655235,0.258927,0.421755,0.865864,0.922865,0.297042,0.67861,0.663453,0.854393,0.0200285,0.230895,0.545347,0.361589,0.0637894,0.156423,0.724981,0.165853,0.382828,0.346036,0.252073,0.588836,0.133049,0.786373,0.698953,0.746311,0.880821,0.206185,0.895473,0.4482,0.143895,0.202458,0.962696,0.621116,0.871652,0.69425,0.572194,0.561936,0.151417,0.110577,0.789185,0.765856,0.444922,0.581221,0.261482,0.777232,0.995317,0.00325245,0.811939,0.558204,0.254214,0.98481,0.769724,0.980193,0.408435,0.523108,0.738732,0.941155,0.35054,0.677078,0.194107,0.317825,0.223368,0.417017,0.988283,0.628131,0.94844,0.761816,0.843832,0.332829,0.133374,0.747433,0.352209,0.307478,0.387059,0.498284,0.888835,0.875751,0.192101,0.584352,0.441205,0.472662,0.838577,0.209703,0.809772,0.91923,0.508881,0.538228,0.779213,0.980461,0.665463,0.57718,0.693355,0.396995,0.0860149,0.755757,0.492383,0.968088,0.399737,0.27304,0.695017,0.87308,0.538977,0.160534,0.916494,0.927674,0.520623,0.432626,0.0206943,0.211544,0.771444,0.18629,0.35768,0.316242,0.0349113,0.716613,0.84488,0.839525,0.794884,0.208896,0.883841,0.472413,0.54625,0.96701,0.250508,0.910197,0.169394,0.832624,0.645444,0.236395,0.503996,0.411767,0.693277,0.12967,0.107639,0.399957,0.556251,0.194158,0.894017,0.565894,0.526991,0.120571,0.0177731,0.734062,0.498548,0.923553,0.170308,0.768084,0.113117,0.00115371,0.44422,0.689102,0.218206,0.663869,0.668137,0.550895,0.336838,0.750152,0.383007,0.45341,0.314336,0.0920143,0.845732,0.797847,0.39637,0.470619,0.161364,0.471977,0.107838,0.274577,0.245102,0.177593,0.447186,0.309435,0.636087,0.56973,0.857947,0.999531,0.0305789,0.406916,0.110428,0.843251,0.467315,0.258853,0.725215,0.0295982,0.0640975,0.227559,0.11526,0.435849,0.575335,0.796776,0.695418,0.796161,0.40361,0.0847713,0.0852146,0.806413,0.732246,0.348012,0.300758,0.0279787,0.286777,0.42499,0.18998,0.195432,0.494565,0.170233,0.859039,0.949282,0.533648,0.562782,0.886456,0.625857,0.984082,0.171494,0.0771872,0.00657666,0.641948,0.278086,0.0356102,0.467535,0.798764,0.314603,0.647947,0.626922,0.175677,0.539452,0.493342,0.148854,0.618844,0.77721,0.909669,0.492925,0.0787287,0.281069,0.382482,0.243303,0.0481792,0.296999,0.956697,0.45611,0.236568,0.373894,0.637178,0.699248,0.206778,0.537959,0.00168395,0.648905,0.562952,0.666328,0.337322,0.956127,0.313602,0.550086,0.0751901,0.0804867,0.181259,0.935168,0.215929,0.249488,0.915004,0.543989,0.618091,0.56694,0.269314,0.172287,0.665216,0.829252,0.0199712,0.722555,0.124688,0.315297,0.895717,0.161079,0.893157,0.493968,0.0137485,0.874681,0.1719,0.489173,0.453469,0.949473,0.449019,0.0698882,0.709894,0.39849,0.837199,0.294329,0.42641,0.819296,0.995983,0.910979,0.191505,0.414517,0.586702,0.979784,0.533049,0.690141,0.169239,0.716841,0.493269,0.386325,0.740532,0.74481,0.699283,0.168696,0.335034,0.107217,0.487767,0.29664,0.156972,0.610895,0.345136,0.326005,0.693178,0.157245,0.183739,0.28195,0.558979,0.563194,0.734482,0.950907,0.712269,0.994792,0.486513,0.0304912,0.577816,0.896481,0.952785,0.931878,0.713265,0.412232,0.890444,0.911394,0.291353,0.460927,0.0938819,0.161503,0.535981,0.764673,0.612633,0.620602,0.447751,0.80054,0.950092,0.787045,0.947163,0.615486,0.717624,0.193983,0.676656,0.92272,0.750741,0.397113,0.805663,0.305046,0.0183912,0.347732,0.061868,0.739948,0.235003,0.504697,0.201021,0.248891,0.5615,0.070848,0.564759,0.511222,0.605211,0.977839,0.505534,0.710135,0.126081,0.241442,0.145271,0.886141,0.200144,0.303745,0.938607,0.0182807,0.517306,0.705981,0.979793,0.670998,0.792471,0.591076,0.22832,0.659004,0.142141,0.361285,0.210264,0.29207,0.275439,0.869233,0.097029,0.655455,0.439636,0.968225,0.0098716,0.714664,0.268091,0.553601,0.333148,0.173988,0.887792,0.355436,0.69857,0.832292,0.406668,0.904031,0.219155,0.268243,0.967979,0.967681,0.232055,0.970257,0.365302,0.812273,0.159783,0.334408,0.0252447,0.447958,0.418283,0.947464,0.164652,0.710443,0.139292,0.827936,0.80401,0.0212646,0.707538,0.0915191,0.201745,0.477859,0.374477,0.779613,0.177182,0.2614,0.326322,0.135388,0.680155,0.332289,0.342123,0.443591,0.141645,0.896383,0.97271,0.331611,0.833616,0.849865,0.03381,0.0393238,0.223814,0.565378,0.571894,0.65571,0.584167,0.781233,0.629159,0.575898,0.69203,0.435745,0.180645,0.62213,0.91028,0.536984,0.955683,0.893505,0.791684,0.30332,0.48792,0.467702,0.759194,0.0691664,0.945486,0.272262,0.808518,0.452241,0.495893,0.000759125,0.194308,0.132628,0.205845,0.681233,0.686829,0.523838,0.65716,0.733151,0.340549,0.574705,0.203487,0.799215,0.38864,0.143642,0.178498,0.879691,0.785758,0.571648,0.669931,0.0722917,0.0460691,0.901174,0.00658411,0.44403,0.131771,0.128095,0.468516,0.896905,0.988258,0.46621,0.448388,0.721316,0.52268,0.0175968,0.673245,0.684319,|0.648891,0.696662,0.325589,0.99211,0.58539,0.883196,0.232695,0.199543,0.353739,0.67261,0.0921506,0.466363,0.278854,0.392998,0.480239,0.953779,0.79552,0.232824,0.281289,0.22221,0.909519,0.314261,0.58147,0.11018,0.777931,0.60561,0.778284,0.191551,0.0497661,0.40247,0.516612,0.0484987,0.368311,0.395192,0.694857,0.686215,0.406531,0.739111,0.0687599,0.38162,0.360985,0.246672,0.38582,0.776734,0.335147,0.548399,0.0988116,0.196704,0.790057,0.079765,0.658394,0.635477,0.211875,0.444307,0.241064,0.386384,0.577576,0.0949037,0.167772,0.903709,0.834918,0.0512674,0.918554,0.936946,0.0145576,0.442117,0.954039,0.0739565,0.385071,0.589156,0.563741,0.237326,0.40044,0.970271,0.286833,0.232334,0.875661,0.857714,0.604387,0.595679,0.727518,0.569503,0.106339,0.986452,0.419322,0.548913,0.496891,0.221705,0.271083,0.524885,0.924664,0.864678,0.715685,0.695565,0.0424554,0.843388,0.822435,0.294634,0.395445,0.626821,0.912153,0.0304357,0.0329127,0.232876,0.0205684,0.459798,0.612716,0.266043,0.291409,0.767958,0.0120875,0.564224,0.148264,0.297653,0.214473,0.306746,0.0951881,0.761837,0.661022,0.0131968,0.500987,0.909291,0.339656,0.268546,0.802043,0.489781,0.340859,0.88462,0.366375,0.915268,0.252922,0.416035,0.215476,0.801769,0.478768,0.626268,0.628003,0.11231,0.685385,0.0626777,0.440372,0.411734,0.609381,0.717852,0.908615,0.77571,0.984546,0.437021,0.422023,0.820474,0.255052,0.70785,0.230423,0.801592,0.659295,0.582995,0.279792,0.0198728,0.0207561,0.939807,0.218939,0.985823,0.0696932,0.551696,0.946658,0.850915,0.917904,0.630965,0.989725,0.0864416,0.425578,0.319838,0.873717,0.614085,0.538619,0.529748,0.675132,0.39048,0.658623,0.470487,0.503164,0.533683,0.990106,0.765491,0.695407,0.25221,0.693305,0.860166,0.176132,0.347615,0.522354,0.407687,0.0307598,0.529306,0.400442,0.287799,0.544225,0.211394,0.221402,0.130596,0.817339,0.305146,0.701415,0.0885296,0.717274,0.564975,0.330278,0.94171,0.0484986,0.633791,0.54417,0.178289,0.0135257,0.51341,0.117882,0.611596,0.250126,0.0466861,0.279278,0.474873,0.523683,0.428366,0.975574,0.257694,0.800105,0.90056,0.648493,0.931686,0.705624,0.204373,0.867435,0.0894889,0.622603,0.476984,0.279041,0.498421,0.250006,0.466367,0.790033,0.835924,0.272105,0.0303012,0.39764,0.457476,0.943299,0.203724,0.105522,0.312637,0.311321,0.881208,0.603376,0.974215,0.728749,0.225548,0.602858,0.45684,0.877754,0.684039,0.595185,0.320989,0.73855,0.447186,0.898459,0.0225525,0.796876,0.274696,0.470738,0.384475,0.989383,0.484311,0.681331,0.446912,0.319866,0.132723,0.405338,0.389549,0.538745,0.974359,0.574995,0.479044,0.574978,0.756264,0.165334,0.80293,0.835057,0.101542,0.742189,0.403567,0.0241035,0.0443937,0.801491,0.522479,0.124391,0.920242,0.784629,0.875062,0.384508,0.579722,0.259885,0.729848,0.920105,0.923741,0.427774,0.0893629,0.517712,0.317775,0.337694,0.34573,0.774567,0.920661,0.823858,0.500893,0.223735,0.600314,0.637628,0.523992,0.429947,0.956266,0.209054,0.947754,0.0244692,0.487822,0.218445,0.593773,0.517991,0.430578,0.811394,0.350214,0.761543,0.0921642,0.720409,0.992282,0.233861,0.115192,0.629879,0.65722,0.0500882,0.338551,0.733923,0.113083,0.392888,0.704897,0.206256,0.721926,0.506486,0.712337,0.126386,0.833044,0.410436,0.156575,0.873834,0.744201,0.11139,0.881733,0.435059,0.521614,0.780244,0.261655,0.233093,0.904399,0.411313,0.942852,0.592943,0.60699,0.706614,0.736583,0.93854,0.169704,0.13986,0.0206594,0.742476,0.0904839,0.667872,0.844255,0.452679,0.0826017,0.582491,0.612772,0.748069,0.759236,0.220859,0.446109,0.771144,0.514698,0.350788,0.0206521,0.779748,0.722741,0.930435,0.883625,0.733357,0.199169,0.955227,0.202377,0.599096,0.225492,0.357172,0.514565,0.663339,0.239681,0.302147,0.895227,0.889311,0.810916,0.708164,0.96594,0.542827,0.313982,0.195427,0.11718,0.864113,0.406075,0.349478,0.0578235,0.955031,0.18857,0.939927,0.204747,0.0733641,0.160583,0.636071,0.511959,0.726432,0.288261,0.217595,0.0215394,0.00685751,0.925782,0.805778,0.333394,0.0278445,0.729471,0.0311629,0.358051,0.615066,0.896974,0.914492,0.919258,0.477951,0.531757,0.85855,0.133319,0.614776,0.368343,0.546576,0.903929,0.70098,0.499815,0.894933,0.191231,0.640632,0.285778,0.267331,0.928402,0.781992,0.439427,0.0652803,0.770951,0.550416,0.206801,0.771867,0.221492,0.872089,0.0670786,0.719993,0.299483,0.417636,0.523983,0.7787,0.163599,0.657766,0.355545,0.168259,0.72911,0.492187,0.744923,0.628756,0.538261,0.20437,0.170119,0.500384,0.0125932,0.716305,0.760146,0.233153,0.525007,0.531931,0.929848,0.748662,0.711221,0.0196168,0.892695,0.984921,0.682637,0.982034,0.955199,0.675134,0.959607,0.0580651,0.437645,0.336963,0.178805,0.710611,0.367919,0.658225,0.938832,0.709637,0.819825,0.427494,0.0832226,0.203104,0.484959,0.464901,0.814127,0.144847,0.44711,0.0674495,0.938388,0.278489,0.144735,0.451848,0.399098,0.719772,0.0805821,0.923542,0.0812299,0.746948,0.156259,0.700965,0.676907,0.25269,0.373315,0.587094,0.443006,0.502275,0.890002,0.195251,0.706499,0.68343,0.583526,0.0128741,0.0589753,0.0289699,0.987169,0.965007,0.505631,0.234532,0.387505,0.566409,0.0394594,0.400804,0.432733,0.0792839,0.923724,0.346991,0.638189,0.0859405,0.242196,0.393497,0.779341,0.563667,0.0115338,0.550079,0.464864,0.849106,0.20904,0.658067,0.834949,0.999187,0.549401,0.600903,0.712374,0.436719,0.049604,0.400347,0.294619,0.244045,0.925484,0.484817,0.243205,0.143165,0.993888,0.130309,0.714552,0.145016,0.954176,0.133801,0.126058,0.675385,0.19981,0.0624368,0.196766,0.620438,0.181306,0.282282,0.424429,0.429876,0.462171,0.26708,0.952027,0.618729,0.759117,0.475416,0.569422,0.601115,0.581693,0.365279,0.443389,0.0372019,0.797575,0.240427,0.300911,0.347784,0.362038,0.43799,0.219154,0.0675583,0.547898,0.276088,0.859789,0.738617,0.890851,0.858927,0.42084,0.331711,0.290322,0.87077,0.293467,0.170036,0.344555,0.344233,0.0215624,0.610667,0.922738,0.565586,0.350998,0.627153,0.473178,0.575785,0.784648,0.585237,0.920338,0.026105,0.690663,0.550918,0.646802,0.728227,0.596609,0.509648,0.530008,0.0774715,0.225795,0.866821,0.594184,0.305313,0.118876,0.979253,0.164384,0.759191,0.383827,0.956442,0.0202974,0.454714,0.0420658,0.843145,0.256954,0.789658,0.566352,0.116745,0.745945,0.165694,0.432655,0.333471,0.523109,0.385902,0.108239,0.435162,0.967707,0.77259,0.853118,0.430824,0.0963388,0.740564,0.572331,0.694905,0.396489,0.827595,0.98545,0.609198,0.0959301,0.357213,0.584233,0.671856,0.428147,0.623314,0.100256,0.512704,0.508649,0.594769,0.792828,0.0246361,0.127891,0.441184,0.0648122,0.0679541,0.254332,0.829465,0.621405,0.888921,0.364713,0.385187,0.264689,0.337446,0.132691,0.245711,0.496504,0.508241,0.969308,0.99195,0.213796,0.983638,0.576461,0.3472,0.413538,0.279477,0.353313,0.366772,0.0992265,0.300271,0.693612,0.210125,0.447131,0.15529,0.654225,0.0384939,0.154923,0.603856,0.479705,0.961767,0.714439,0.518852,0.544649,0.847116,0.842524,0.510808,0.222262,0.167553,0.0614415,0.0552992,0.535608,0.66715,0.564815,0.680298,0.461136,0.0253736,0.646267,0.12324,0.967204,0.010546,0.459813,0.831412,0.0525725,0.293368,0.876999,0.930245,0.913051,0.894597,0.293449,0.913602,0.745562,0.856931,0.452739,0.588384,0.994474,0.982818,0.186112,0.0736284,0.359066,0.0259709,0.386503,0.516766,0.715385,0.243718,0.317577,0.950492,0.710416,0.370254,0.878698,0.0548069,0.0182795,0.454078,0.774523,0.639008,0.848204,0.861342,0.347928,0.457847,0.879891,0.488989,0.289264,0.79071,0.02048,0.370015,0.730749,0.315217,0.285979,0.356846,0.339078,0.721426,0.85663,0.253872,0.308259,0.832728,0.12799,0.464222,0.446786,0.607103,0.413384,0.169272,0.148362,0.625264,0.809924,0.748797,0.495114,0.399465,0.548039,0.213242,0.768,0.334085,0.458147,0.0949336,0.723644,0.797533,0.0152103,0.932661,0.376352,0.215929,0.157885,0.925118,0.307468,0.653778,0.611773,0.0886974,0.52454,0.0546953,0.807621,0.166889,0.748219,0.859409,0.495571,0.117244,0.434421,0.579391,0.00995803,0.917627,0.556874,0.284885,0.947478,0.631645,0.432025,0.785959,0.780996,0.285727,0.920178,0.275101,0.861554,0.532245,0.0150653,0.473114,0.617289,0.455404,0.468638,0.408224,0.834504,0.901107,0.0210085,0.0619496,0.538782,0.394818,0.117406,0.239012,0.651792,0.964972,0.0635955,0.547407,0.831186,0.603188,0.24593,0.260794,0.517205,0.032445,0.245854,0.297508,0.272059,0.871129,0.70235,0.230696,0.425211,0.621054,0.36271,0.572892,0.59565,0.514106,0.573316,0.916098,0.495487,0.760807,0.0256054,0.711608,0.120792,0.835054,0.897441,0.818512,0.796427,0.967623,0.40242,0.103719,0.928126,0.233279,0.396679,0.801505,0.923247,0.856712,0.811592,0.278732,0.374614,0.506707,0.0170756,0.732496,0.453167,0.261144,0.667743,0.921587,0.245816,0.872214,0.289784,0.234695,0.862727,0.887151,0.49707,0.828733,0.576626,0.616126,0.854813,0.640429,0.726017,0.354021,0.951159,0.379672,0.321691,0.758364,0.563232,0.546291,0.840901,0.932638,0.438924,0.614165,0.250618,0.315816,0.882993,0.657996,0.135735,0.420011,0.381274,0.151248,0.556404,0.628006,0.860125,0.200065,0.491157,0.635067,0.419919,0.972291,0.558631,0.909209,0.155247,0.879825,0.778453,0.442568,0.977613,0.651008,0.0845327,0.7065,0.0490379,0.869399,0.540494,0.243859,0.626414,0.826882,0.714525,0.713505,0.548966,0.466979,0.701782,0.0533519,0.365906,0.460687,0.157017,0.710634,0.78271,|0.0601362,0.315302,0.67816,0.90075,0.984276,0.542704,0.271416,0.529105,0.183626,0.103029,0.746641,0.462255,0.572108,0.879332,0.612865,0.183607,0.420727,0.315361,0.338611,0.524296,0.376647,0.283974,0.222326,0.0247554,0.11138,0.692568,0.705775,0.575301,0.826286,0.843498,0.211176,0.0958154,0.907013,0.203962,0.697837,0.156687,0.376295,0.388352,0.46896,0.749478,0.64508,0.124322,0.901553,0.934375,0.901048,0.776996,0.78926,0.495669,0.120118,0.369661,0.949591,0.691345,0.152514,0.513388,0.487491,0.934166,0.897515,0.324615,0.92151,0.315307,0.878531,0.797272,0.868073,0.949787,0.838404,0.711759,0.598824,0.00812775,0.744087,0.36314,0.39525,0.181642,0.243991,0.23804,0.170728,0.778987,0.804625,0.527122,0.64201,0.455202,0.45729,0.599062,0.0690463,0.519004,0.362553,0.327152,0.822698,0.921042,0.72968,0.631862,0.829159,0.787237,0.0559499,0.411069,0.846457,0.534078,0.245282,0.357436,0.997203,0.703453,0.612707,0.566894,0.217877,0.987282,0.508569,0.204645,0.257778,0.49155,0.0871774,0.766969,0.870671,0.304598,0.161242,0.400987,0.854592,0.561552,0.378182,0.996207,0.0412412,0.201762,0.795901,0.73982,0.608615,0.0736033,0.878901,0.641413,0.0385626,0.972173,0.410349,0.0814635,0.585455,0.897555,0.0543755,0.538897,0.967577,0.503624,0.711843,0.331358,0.0788307,0.943873,0.62852,0.116718,0.852884,0.640342,0.694426,0.870617,0.263458,0.0801222,0.686191,0.711815,0.968389,0.442779,0.0878903,0.932271,0.340035,0.340271,0.656987,0.643811,0.501993,0.194017,0.132757,0.135723,0.750599,0.303516,0.666786,0.41551,0.158764,0.358175,0.169566,0.198954,0.199891,0.395621,0.149001,0.629937,0.686851,0.513104,0.725245,0.793034,0.500774,0.243962,0.139243,0.146073,0.972205,0.0789806,0.34393,0.338769,0.9147,0.437745,0.301318,0.827733,0.705738,0.510327,0.740995,0.627089,0.247049,0.0452246,0.686735,0.156048,0.793461,0.274955,0.931367,0.0649503,0.0189906,0.0885347,0.976453,0.695538,0.999684,0.389855,0.591349,0.993819,0.306423,0.06784,0.614736,0.863839,0.287559,0.296443,0.0426614,0.300147,0.649804,0.220326,0.253447,0.40498,0.72273,0.723554,0.83151,0.536695,0.701114,0.872543,0.10666,0.226731,0.67527,0.270985,0.784288,0.486537,0.220809,0.829515,0.683339,0.418073,0.904492,0.811778,0.201484,0.760358,0.345882,0.982342,0.979912,0.6414,0.816556,0.654972,0.442193,0.677648,0.535267,0.747334,0.0846636,0.963712,0.591814,0.865873,0.364727,0.88106,0.825901,0.184631,0.61037,0.079469,0.867191,0.951851,0.245572,0.229026,0.582034,0.143787,0.957745,0.676531,0.287831,0.839014,0.490897,0.227881,0.756994,0.976836,0.985936,0.466241,0.113155,0.584793,0.578841,0.456856,0.162454,0.15586,0.0281656,0.335965,0.303501,0.853911,0.690933,0.236415,0.0288968,0.540395,0.988344,0.864969,0.727853,0.998917,0.0129128,0.229898,0.210275,0.766424,0.910092,0.486876,0.645705,0.207033,0.485687,0.443161,0.542873,0.31978,0.849465,0.0565661,0.678061,0.246978,0.452792,0.946955,0.772276,0.299369,0.181042,0.427373,0.378116,0.872875,0.277839,0.301874,0.968835,0.458703,0.693693,0.615349,0.513336,0.464153,0.042932,0.605934,0.951957,0.893901,0.428357,0.769562,0.383668,0.615839,0.887848,0.399045,0.0216655,0.577182,0.99639,0.87995,0.794967,0.386319,0.427826,0.147739,0.747922,0.962815,0.167528,0.38416,0.800158,0.726542,0.0815525,0.355959,0.880428,0.190085,0.545433,0.323428,0.512935,0.0867823,0.0637603,0.560177,0.868026,0.829704,0.784706,0.90381,0.983829,0.435455,0.4081,0.898784,0.474491,0.990954,0.969833,0.916562,0.821326,0.259783,0.479249,0.31932,0.681276,0.213944,0.632231,0.819301,0.614463,0.701405,8.34465e-05,0.463987,0.37595,0.543955,0.418283,0.989731,0.621578,0.577888,0.235876,0.717812,0.690132,0.623234,0.736153,0.989367,0.618765,0.37601,0.177082,0.99701,0.0686031,0.148662,0.394094,0.993294,0.188688,0.0236295,0.789875,0.681402,0.143803,0.821625,0.993209,0.209854,0.654025,0.138892,0.753802,0.959286,0.82088,0.182351,0.233937,0.522581,0.444794,0.679101,0.627433,0.744194,0.674123,0.128401,0.698169,0.613064,0.674201,0.901694,0.278047,0.71131,0.345009,0.0986946,0.940504,0.921522,0.315281,0.18142,0.859704,0.325924,0.393207,0.0748896,0.739937,0.23458,0.0561471,0.130437,0.669036,0.971843,0.229471,0.803663,0.251012,0.752069,0.223803,0.929129,0.0275347,0.721211,0.746666,0.954547,0.280891,0.680134,0.554174,0.38928,0.621627,0.992574,0.740752,0.0867749,0.213773,0.207816,0.118369,0.0259765,0.403805,0.548895,0.246618,0.761323,0.842368,0.248013,0.389711,0.170509,0.302976,0.583203,0.84772,0.631323,0.486914,0.939154,0.626058,0.430175,0.913968,0.687107,0.81045,0.972524,0.84047,0.15801,0.768954,0.681221,0.63038,0.961316,0.876103,0.927752,0.306034,0.669163,0.622089,0.201684,0.0773985,0.32931,0.503845,0.945795,0.544544,0.115173,0.179048,0.330993,0.649252,0.513739,0.901991,0.225637,0.194099,0.613852,0.519236,0.89024,0.390565,0.113436,0.168809,0.470966,0.891689,0.552251,0.509383,0.0218094,0.455374,0.109599,0.825922,0.988634,0.299138,0.556855,0.484619,0.956504,0.368149,0.92836,0.88062,0.804741,0.983875,0.68855,0.973538,0.287381,0.0960822,0.32998,0.635006,0.270686,0.741629,0.845149,0.0531092,0.561654,0.932324,0.59302,0.0297549,0.813884,0.827039,0.0766187,0.404523,0.806473,0.819676,0.518207,0.658295,0.916048,0.263766,0.81856,0.685364,0.137325,0.443325,0.69645,0.960885,0.556119,0.103155,0.0575032,0.886949,0.257765,0.524921,0.671714,0.167932,0.755062,0.169713,0.563659,0.366574,0.963795,0.530111,0.25322,0.723789,0.970781,0.405661,0.391803,0.918034,0.442247,0.723967,0.992249,0.246644,0.631691,0.71938,0.379519,0.272843,0.815298,0.174237,0.124942,0.212342,0.278767,0.383504,0.785567,0.497218,0.446451,0.79585,0.43916,0.698545,0.876396,0.404495,0.585141,0.965877,0.893268,0.80792,0.728806,0.752019,0.949663,0.752469,0.528969,0.34725,0.268102,0.315087,0.638112,0.00629735,0.484452,0.262169,0.35929,0.820584,0.389143,0.331143,0.784358,0.885817,0.928878,0.974398,0.783583,0.826427,0.96624,0.657005,0.747282,0.869796,0.907367,0.956296,0.446838,0.419014,0.342829,0.434101,0.143367,0.763211,0.431057,0.723077,0.466281,0.671273,0.159584,0.971382,0.613934,0.768692,0.0947411,0.567726,0.759806,0.224884,0.470965,0.249994,0.40241,0.59425,0.174746,0.283967,0.0973966,0.581341,0.87709,0.498248,0.341476,0.555338,0.522132,0.382968,0.417296,0.115451,0.00124562,0.0779518,0.38468,0.844079,0.740521,0.57098,0.493295,0.365379,0.932164,0.560619,0.382885,0.363255,0.704708,0.257099,0.51363,0.947563,0.485965,0.189298,0.170967,0.00667572,0.220473,0.241169,0.977167,0.192306,0.0185373,0.408674,0.0449675,0.654825,0.440245,0.922097,0.591605,0.435236,0.00917715,0.0209941,0.869361,0.42394,0.694841,0.302913,0.829467,0.621611,0.146298,0.524122,0.818855,0.070222,0.397948,0.303682,0.538173,0.870977,0.823798,0.195584,0.339932,0.873533,0.376163,0.814438,0.698926,0.0800547,0.845175,0.578603,0.284421,0.267919,0.383268,0.0390509,0.801274,0.955841,0.545392,0.418078,0.668916,0.0490561,0.142699,0.568387,0.420615,0.413679,0.598141,0.404706,0.696874,0.490837,0.300275,0.818942,0.866951,0.00241339,0.425779,0.724692,0.325114,0.44769,0.402735,0.966532,0.652897,0.601853,0.171948,0.0126112,0.435807,0.819761,0.682175,0.496799,0.702259,0.0596172,0.257917,0.979108,0.638472,0.513652,0.774682,0.492584,0.456695,0.0100509,0.905176,0.896202,0.686184,0.419173,0.23108,0.172521,0.288451,0.15873,0.332904,0.392788,0.202779,0.875687,0.658018,0.75042,0.330435,0.804954,0.99518,0.453987,0.588395,0.570145,0.116576,0.887375,0.525814,0.837743,0.608317,0.0596215,0.534819,0.190183,0.495996,0.533109,0.520701,0.843117,0.674074,0.309583,0.837802,0.406053,0.31553,0.1141,0.311038,0.741241,0.445642,0.667487,0.695269,0.86153,0.737189,0.371312,0.818456,0.169397,0.718976,0.335171,0.950293,0.29205,0.978207,0.759764,0.961193,0.233454,0.301161,0.220252,0.902287,0.576005,0.87488,0.346717,0.711433,0.576332,0.219843,0.420841,0.361577,0.957996,0.0321562,0.628257,0.974553,0.548133,0.609064,0.890264,0.479775,0.331589,0.719846,0.0339186,0.333437,0.88939,0.970495,0.524767,7.33137e-06,0.360165,0.974657,0.399136,0.993408,0.952896,0.571923,0.2139,0.990634,0.356346,0.429519,0.218369,0.236569,0.631221,0.687748,0.21306,0.127394,0.382892,0.592696,0.182717,0.306179,0.535989,0.0620498,0.0749692,0.630082,0.260482,0.234176,0.681487,0.514591,0.340054,0.140118,0.638538,0.682672,0.822822,0.0583116,0.740118,0.690623,0.560009,0.512511,0.217316,0.935734,0.983226,0.509776,0.849426,0.122256,0.41691,0.530935,0.779434,0.861406,0.126107,0.703565,0.852552,0.703299,0.790435,0.207475,0.363505,0.542445,0.11695,0.998711,0.77421,0.586896,0.734648,0.760812,0.367267,0.0013113,0.145245,0.996417,0.129685,0.252633,0.00427657,0.799612,0.21895,0.0615796,0.254972,0.356119,0.223366,0.360185,0.279982,0.724384,0.243657,0.497284,0.989862,0.0504417,0.158136,0.802025,0.3976,0.0132541,0.822426,0.25303,0.974825,0.358064,0.641731,0.508471,0.323243,0.537321,0.320699,0.807417,0.969848,0.270606,0.375778,0.908232,0.736929,0.943166,0.135076,0.239243,0.0476058,0.249965,0.634322,0.81882,0.478789,0.0820565,0.0913491,0.350398,0.295998,0.49052,0.318817,0.684184,0.39069,0.617191,0.681262,0.555647,0.743236,0.210885,0.086498,0.579946,0.553432,0.907636,0.325786,0.606063,0.851078,0.428108,0.35621,0.162301,0.358405,0.724761,|0.332035,0.505818,0.769451,0.498312,0.134472,0.943155,0.61012,0.809481,0.843912,0.739463,0.272326,0.289851,0.593545,0.819484,0.251367,0.604778,0.737087,0.711539,0.263429,0.099678,0.268111,0.288422,0.000202119,0.0172541,0.773573,0.115749,0.978797,0.644803,0.811677,0.298739,0.0450364,0.717903,0.580767,0.448833,0.454673,0.576837,0.140649,0.93872,0.666419,0.0207291,0.296166,0.410065,0.868415,0.999903,0.735032,0.172694,0.720349,0.38828,0.754666,0.792864,0.938214,0.26682,0.420787,0.480286,0.245613,0.493649,0.243753,0.758393,0.239396,0.0948516,0.148789,0.228882,0.12929,0.0947878,0.0403029,0.421865,0.644334,0.951359,0.621479,0.241051,0.551249,0.067306,0.726509,0.459138,0.614804,0.505772,0.244092,0.417003,0.822699,0.343112,0.943358,0.913714,0.451055,0.91837,0.310316,0.892339,0.257537,0.85956,0.0661002,0.353977,0.966158,0.872849,0.0078283,0.422532,0.0162209,0.107329,0.871586,0.899633,0.471301,0.0746508,0.0215269,0.61827,0.129063,0.908497,0.853094,0.527288,0.00286746,0.016449,0.624941,0.830812,0.898448,0.231564,0.734287,0.302319,0.678068,0.562186,0.290822,0.686017,0.336563,0.47581,0.548089,0.824534,0.764632,0.491297,0.165145,0.740005,0.676566,0.59534,0.801258,0.0429657,0.12668,0.36165,0.413928,0.527972,0.519284,0.555555,0.746177,0.752988,0.0463622,0.779543,0.9345,0.258501,0.44474,0.470348,0.0526308,0.729491,0.801994,0.490205,0.109872,0.251454,0.868468,0.892702,0.0564283,0.41076,0.903069,0.690968,0.567107,0.0685161,0.819962,0.194462,0.444886,0.506211,0.795605,0.586238,0.624297,0.460416,0.573626,0.615894,0.0463384,0.257274,0.538981,0.151757,0.77127,0.556701,0.928553,0.644828,0.250754,0.118961,0.323947,0.368128,0.520943,0.709583,0.635378,0.18144,0.468188,0.342338,0.915861,0.538519,0.779337,0.768353,0.589174,0.128024,0.115699,0.708597,0.771449,0.911313,0.11652,0.82292,0.789687,0.95385,0.226969,0.638443,0.434854,0.133321,0.911199,0.893053,0.671029,0.891577,0.324113,0.0920638,0.532983,0.630642,0.98498,0.0316978,0.272926,0.555592,0.819889,0.251739,0.72367,0.349295,0.14131,0.497075,0.841256,0.249367,0.545011,0.405285,0.990618,0.339692,0.116692,0.548371,0.2675,0.24987,0.583324,0.810147,0.777319,0.994018,0.475226,0.0100847,0.0190524,0.706825,0.70289,0.118524,0.0532078,0.0437573,0.186368,0.641174,0.282096,0.758351,0.789329,0.708574,0.553156,0.238702,0.90775,0.65679,0.602999,0.838198,0.633473,0.628763,0.628223,0.714433,0.0215812,0.703532,0.897478,0.0852674,0.605209,0.137625,0.893609,0.622931,0.883837,0.815606,0.468318,0.250131,0.624242,0.266407,0.782644,0.139156,0.998537,0.378201,0.0787793,0.00902861,0.627777,0.00226319,0.141131,0.569247,0.427807,0.605491,0.481393,0.213527,0.521645,0.966482,0.293252,0.070995,0.144303,0.0356213,0.95784,0.776397,0.606872,0.972965,0.471078,0.507219,0.425487,0.487723,0.304452,0.297656,0.394473,0.655764,0.773771,0.928136,0.893455,0.477963,0.591513,0.169747,0.334976,0.529044,0.831454,0.354945,0.854098,0.792018,0.532521,0.945087,0.909199,0.808086,0.733251,0.266587,0.347841,0.31398,0.52525,0.97839,0.391743,0.538782,0.0526908,0.244819,0.37964,0.616898,0.878597,0.619583,0.152746,0.535118,0.314013,0.792652,0.591946,0.0293322,0.990402,0.96525,0.313841,0.974227,0.840509,0.264824,0.50866,0.82357,0.286686,0.0483466,0.199569,0.902816,0.107752,0.253472,0.38672,0.777173,0.86101,0.639763,0.962143,0.381666,0.341688,0.275119,0.360436,0.976091,0.741786,0.525545,0.982659,0.578821,0.583454,0.625105,0.558046,0.558405,0.0733353,0.883831,0.930817,0.550792,0.414457,0.867192,0.236499,0.0194532,0.275746,0.799393,0.80572,0.62422,0.496452,0.412534,0.701296,0.438434,0.188337,0.130446,0.208674,0.936833,0.962768,0.95858,0.834224,0.00591248,0.052623,0.540498,0.757455,0.159716,0.806384,0.665114,0.72082,0.00903434,0.110846,0.457241,0.960894,0.938928,0.931563,0.442727,0.753795,0.376845,0.0514085,0.187637,0.649731,0.162354,0.637756,0.78943,0.823833,0.452995,0.426161,0.447264,0.914323,0.0636538,0.675765,0.621249,0.894023,0.2427,0.0717173,0.85249,0.158818,0.105595,0.797971,0.325504,0.156003,0.407306,0.408061,0.894628,0.465293,0.437075,0.0699026,0.858223,0.911677,0.353202,0.0695553,0.720388,0.512053,0.393154,0.366996,0.380969,0.889554,0.721291,0.103381,0.0723772,0.16247,0.604379,0.697696,0.772154,0.336421,0.017464,0.957013,0.765812,0.781731,0.392739,0.354835,0.230503,0.410165,0.352997,0.0637401,0.380249,0.833875,0.898812,0.928413,0.0250555,0.16805,0.596761,0.319686,0.544959,0.602787,0.472227,0.089837,0.207395,0.911463,0.494864,0.772074,0.153043,0.364092,0.442077,0.388358,0.00524372,0.704426,0.166062,0.862137,0.138735,0.293341,0.547222,0.112506,0.606776,0.0565578,0.225528,0.581668,0.834167,0.470779,0.915615,0.056287,0.421286,0.968004,0.588672,0.104963,0.305742,0.804737,0.235668,0.469378,0.01724,0.604813,0.674297,0.90882,0.162621,0.389466,0.534249,0.537155,0.52555,0.795737,0.572415,0.192828,0.657686,0.72222,0.405504,0.306457,0.906869,0.0341886,0.318258,0.580116,0.369581,0.355354,0.932803,0.793306,0.448267,0.218238,0.532756,0.719306,0.255595,0.977333,0.584269,0.983816,0.328259,0.945315,0.0523664,0.805777,0.891018,0.366353,0.170624,0.00760919,0.468253,0.254121,0.252675,0.843946,0.62048,0.865574,0.118836,0.673994,0.819749,0.311901,0.412512,0.881203,0.133857,0.264685,0.939479,0.279716,0.874907,0.433873,0.236147,0.971294,0.187827,0.652547,0.313555,0.235642,0.865677,0.411383,0.0252398,0.568566,0.743244,0.00719416,0.593424,0.460949,0.523617,0.498193,0.625952,0.54503,0.807423,0.419891,0.804062,0.206588,0.106939,0.835298,0.465762,0.546748,0.699339,0.603138,0.669084,0.946328,0.0280776,0.669303,0.382072,0.747015,0.559148,0.116202,0.415094,0.808141,0.102381,0.570572,0.94798,0.5925,0.512494,0.358882,0.00183517,0.42602,0.872492,0.135785,0.51645,0.951846,0.595985,0.466483,0.293217,0.966266,0.0433115,0.160425,0.716006,0.280245,0.641926,0.352235,0.917447,0.419486,0.306122,0.521762,0.747605,0.523815,0.531867,0.95399,0.0689403,0.787859,0.423779,0.946717,0.114044,0.909795,0.541063,0.54936,0.293457,0.319315,0.414666,0.0782755,0.183239,0.986548,0.339632,0.975975,0.898098,0.0470183,0.920525,0.95313,0.0139576,0.0218765,0.386099,0.193255,0.550319,0.122132,0.879139,0.860648,0.589063,0.0661097,0.239199,0.482413,0.367121,0.811982,0.590881,0.848439,0.669407,0.128297,0.177682,0.354165,0.111036,0.155024,0.228713,0.294664,0.546875,0.966472,0.105654,0.539072,0.448333,0.879176,0.0293868,0.959,0.384853,0.227772,0.856549,0.538149,0.88414,0.294297,0.431351,0.931652,0.328313,0.356025,0.898525,0.964125,0.657681,0.503447,0.471401,0.130288,0.223926,0.931166,0.0602362,0.109821,0.589722,0.597904,0.00947464,0.971017,0.295809,0.138748,0.742481,0.241681,0.0928041,0.306564,0.104373,0.728054,0.142509,0.663776,0.164833,0.511536,0.527302,0.500084,0.964938,0.214359,0.995212,0.819959,0.63928,0.0639321,0.593368,0.917968,0.928441,0.405217,0.227798,0.169159,0.887515,0.816888,0.551091,0.961977,0.0545401,0.591635,0.141396,0.164371,0.534971,0.820861,0.994313,0.560168,0.000271618,0.884202,0.756355,0.469905,0.510978,0.0942372,0.920624,0.333504,0.216961,0.97867,0.0969759,0.737312,0.792839,0.681299,0.753342,0.961136,0.346865,0.85161,0.494151,0.0393366,0.980906,0.146372,0.901197,0.2492,0.0970823,0.66003,0.270423,0.15598,0.63997,0.860636,0.260417,0.458697,0.188867,0.138528,0.226414,0.339296,0.465848,0.0700845,0.470395,0.2176,0.468812,0.285063,0.80916,0.880138,0.594299,0.387679,0.881253,0.591157,0.507742,0.186111,0.917882,0.800721,0.679473,0.993939,0.760497,0.779462,0.553625,0.919011,0.465515,0.890521,0.516385,0.56851,0.9184,0.197127,0.58701,0.958548,0.34041,0.958705,0.905118,0.183525,0.759234,0.925541,0.641482,0.60139,0.0905803,0.547931,0.650686,0.69182,0.9567,0.691888,0.206106,0.264823,0.0953338,0.469747,0.735802,0.298891,0.0099349,0.0596099,0.0519742,0.609967,0.854568,0.416372,0.695515,0.606935,0.684878,0.582541,0.0622696,0.520922,0.919601,0.459628,0.644671,0.572339,0.574671,0.347559,0.437654,0.673728,0.132558,0.0439136,0.299536,0.189852,0.108741,0.443869,0.555641,0.451528,0.757939,0.778319,0.110775,0.919775,0.256082,0.469451,0.860699,0.0450985,0.219327,0.588888,0.483697,0.0687682,0.157317,0.424677,0.976979,0.199408,0.456191,0.305396,0.553467,0.623517,0.860428,0.976272,0.103627,0.533109,0.386169,0.694691,0.607645,0.832437,0.183309,0.986958,0.696976,0.158645,0.979032,0.107373,0.360296,0.385335,0.039659,0.234228,0.00958931,0.0531541,0.100606,0.0402082,0.242475,0.593933,0.861302,0.656709,0.987082,0.157179,0.912413,0.116937,0.105438,0.781811,0.103813,0.755352,0.352751,0.282264,0.116757,0.556776,0.0290047,0.604445,0.879933,0.975046,0.343491,0.538973,0.228592,0.945504,0.0100973,0.0588962,0.530001,0.586819,0.244925,0.14118,0.713791,0.121177,0.658663,0.336813,0.900733,0.0126406,0.708847,0.480803,0.562079,0.251374,0.176866,0.890846,0.183356,0.902186,0.150895,0.796957,0.945236,0.760094,0.255906,0.586415,0.480113,0.0135638,0.823145,0.0693215,0.508637,0.962833,0.136892,0.370838,0.202067,0.399859,0.383504,0.263137,0.878435,0.462658,0.37057,0.748586,0.0785334,0.944823,0.0745054,0.86491,0.735879,0.0105578,0.0628778,0.395822,0.175257,0.0261346,0.922541,0.974254,0.739764,0.912358,0.543905,0.169991,0.529804,0.401438,0.595766,0.268464,0.261396,0.413899,0.383198,|0.3003,0.415621,0.340537,0.816894,0.910527,0.0950171,0.568867,0.445896,0.324347,0.0951219,0.931807,0.669885,0.53834,0.295211,0.167982,0.187722,0.184575,0.63918,0.26771,0.85969,0.25668,0.368769,0.829139,0.969535,0.415714,0.113553,0.403977,0.440068,0.0878332,0.0740151,0.669526,0.147116,0.00163704,0.302181,0.839831,0.191117,0.230529,0.790349,0.808486,0.566474,0.0438589,0.320249,0.298121,0.578479,0.582869,0.455559,0.407951,0.119054,0.732772,0.0318641,0.842668,0.0573074,0.603393,0.758457,0.134882,0.161823,0.677738,0.434182,0.685679,0.365016,0.175331,0.611362,0.762782,0.572288,0.296548,0.93911,0.4644,0.602411,0.807402,0.796005,0.51558,0.88622,0.061915,0.648009,0.87652,0.592354,0.0506664,0.638633,0.128774,0.219199,0.674141,0.858621,0.349388,0.549684,0.501901,0.00863636,0.0332552,0.564597,0.649975,0.129317,0.328693,0.939456,0.34929,0.447092,0.526389,0.926473,0.699729,0.57982,0.558016,0.859305,0.363491,0.57706,0.179446,0.170711,0.260603,0.13564,0.391892,0.603948,0.805143,0.460532,0.416804,0.633149,0.548745,0.151789,0.561936,0.989608,0.57053,0.400938,0.0194153,0.378651,0.994826,0.633864,0.287412,0.751242,0.244197,0.587475,0.869621,0.145362,0.528452,0.839877,0.0775542,0.0505102,0.143317,0.214648,0.756837,0.493977,0.0897254,0.482097,0.332837,0.137267,0.945738,0.943401,0.326892,0.590881,0.0780382,0.539523,0.419969,0.415418,0.15239,0.384534,0.669161,0.547324,0.442204,0.709238,0.191666,0.312088,0.00172782,0.366004,0.836444,0.0842646,0.205367,0.977426,0.524299,0.132985,0.434329,0.526902,0.6561,0.709347,0.867212,0.753388,0.82755,0.788117,0.391619,0.583,0.21078,0.547311,0.774819,0.0991193,0.0624563,0.499884,0.094225,0.412008,0.000937402,0.515247,0.415644,0.106841,0.692235,0.453133,0.163615,0.0594306,0.389013,0.910254,0.0653778,0.31654,0.750821,0.125343,0.30649,0.48399,0.346283,0.668474,0.655198,0.774501,0.569438,0.0477319,0.512345,0.208142,0.606399,0.57002,0.332769,0.782793,0.0887301,0.997582,0.829095,0.56108,0.366118,0.936459,0.229768,0.775429,0.656598,0.321438,0.530564,0.918737,0.194667,0.52522,0.69052,0.514735,0.433087,0.275946,0.786741,0.839102,0.171431,0.0870125,0.737956,0.999663,0.842472,0.291867,0.623356,0.217772,0.415601,0.392618,0.903124,0.133836,0.524731,0.20069,0.694625,0.967924,0.15585,0.830202,0.668954,0.258593,0.743518,0.140188,0.141681,0.598571,0.147064,0.335051,0.47409,0.781022,0.756251,0.82338,0.379064,0.134938,0.693939,0.117421,0.611414,0.489668,0.298007,0.991336,0.43861,0.531735,0.995466,0.906573,0.144534,0.719843,0.834943,0.876596,0.855542,0.764251,0.365619,0.777488,0.852726,0.852584,0.0128154,0.79891,0.410076,0.380888,0.479716,0.216125,0.216921,0.306765,0.188498,0.503248,0.0514234,0.98175,0.483012,0.241144,0.0415825,0.550093,0.370847,0.798889,0.329808,0.356945,0.823615,0.869033,0.63872,0.0510657,0.660471,0.0748416,0.709814,0.229281,0.63886,0.41481,0.606947,0.599957,0.881073,0.209286,0.733567,0.517455,0.125577,0.180414,0.443784,0.919679,0.344592,0.198717,0.575815,0.682962,0.0802567,0.903582,0.238348,0.103602,0.711106,0.303613,0.264043,0.973494,0.180914,0.531761,0.411515,0.982037,0.998358,0.823243,0.140918,0.542974,0.860966,0.214927,0.291578,0.702835,0.729876,0.978786,0.610556,0.937893,0.246971,0.291356,0.2804,0.934535,0.4438,0.772171,0.827383,0.762239,0.752107,0.840172,0.798656,0.370075,0.783617,0.147449,0.0838669,0.176593,0.205468,0.983523,0.088334,0.450229,0.128691,0.100864,0.144285,0.120525,0.212693,0.421998,0.0421364,0.915118,0.292091,0.327722,0.467681,0.775253,0.143802,0.765732,0.810096,0.920096,0.248858,0.353389,0.361557,0.242336,0.897518,0.322314,0.497384,0.516064,0.615353,0.716832,0.71139,0.80779,0.866568,0.621762,0.60965,0.0881819,0.854506,0.0686265,0.956863,0.352966,0.856618,0.637976,0.835615,0.7827,0.128784,0.0718824,0.5216,0.614503,0.672415,0.784238,0.701382,0.946133,0.312814,0.162834,0.167176,0.696607,0.563026,0.448385,0.743623,0.801786,0.146225,0.217671,0.695194,0.402649,0.440078,0.172028,0.367439,0.957686,0.721493,0.242803,0.120385,0.633638,0.377457,0.200754,0.0243646,0.149604,0.2691,0.0344943,0.733714,0.0963317,0.116178,0.459411,0.913997,0.357074,0.874317,0.296567,0.891209,0.993856,0.0889122,0.466297,0.578219,0.71104,0.641523,0.786334,0.886821,0.0588862,0.830455,0.127918,0.81034,0.962531,0.605044,0.456858,0.536413,0.287459,0.732367,0.910335,0.18667,0.979038,0.484722,0.0198469,0.905293,0.0286788,0.65441,0.746983,0.417964,0.637505,0.983634,0.390006,0.56668,0.585715,0.833403,0.488447,0.529507,0.135759,0.955445,0.974679,0.354661,0.391014,0.0918735,0.00471103,0.532813,0.788476,0.259179,0.697431,0.450886,0.469531,0.260599,0.625121,0.491011,0.827842,0.759429,0.35526,0.408243,0.447652,0.640842,0.308559,0.0140843,0.264319,0.709441,0.57397,0.850351,0.720202,0.0563986,0.346122,0.338033,0.160642,0.990279,0.463573,0.0390335,0.383641,0.768149,0.560032,0.392263,0.876749,0.48853,0.062087,0.366609,0.872048,0.0680784,0.993672,0.063557,0.549721,0.0244989,0.0397391,0.548737,0.546364,0.00689203,0.895526,0.914686,0.117831,0.161765,0.0142342,0.403325,0.212992,0.923727,0.135444,0.565552,0.845144,0.567008,0.0859274,0.952818,0.637375,0.19201,0.0375264,0.737055,0.192544,0.942219,0.153997,0.105278,0.921038,0.871278,0.827483,0.0642575,0.9292,0.0692362,0.513977,0.189565,0.578367,0.764075,0.118982,0.4029,0.618263,0.776065,0.0612332,0.451024,0.644113,0.702886,0.640404,0.736803,0.446277,0.656931,0.815654,0.982265,0.155977,0.0366462,0.197751,0.747604,0.883978,0.435717,0.889187,0.770097,0.202112,0.259432,0.00869334,0.258898,0.427582,0.890422,0.678713,0.229498,0.0807959,0.523981,0.381916,0.795321,0.684974,0.839942,0.307898,0.244526,0.770007,0.453294,0.384011,0.282285,0.0446165,0.201789,0.711585,0.657488,0.116566,0.187624,0.962462,0.443969,0.805222,0.991901,0.721707,0.571517,0.396757,0.58923,0.252291,0.3138,0.0939583,0.192772,0.256805,0.32061,0.416191,0.610671,0.654406,0.904411,0.689749,0.207129,0.152446,0.493928,0.0599328,0.246248,0.402178,0.173998,0.0921149,0.71755,0.287709,0.443978,0.83313,0.799873,0.010065,0.622191,0.45476,0.946107,0.200875,0.978469,0.136125,0.655707,0.143797,0.120244,0.969301,0.278567,0.493311,0.802653,0.31912,0.753835,0.202782,0.323832,0.923346,0.273845,0.624573,0.891874,0.434077,0.4935,0.79617,0.366684,0.532657,0.242967,0.0721852,0.459533,0.803064,0.66143,0.984125,0.779567,0.65263,0.22435,0.113571,0.575808,0.520447,0.120374,0.843881,0.454579,0.581761,0.614798,0.546296,0.114887,0.48498,0.719119,0.538058,0.841351,0.399304,0.733631,0.224997,0.624708,0.518854,0.135827,0.540116,0.659947,0.179996,0.655358,0.480042,0.173775,0.480116,0.892487,0.804937,0.44605,0.863806,0.109034,0.0956123,0.679062,0.449818,0.689415,0.157334,0.0663942,0.3443,0.158476,0.796384,0.142148,0.198198,0.299294,0.654068,0.271475,0.985353,0.540944,0.741318,0.441925,0.898827,0.302796,0.004673,0.748848,0.854234,0.127409,0.752405,0.787146,0.870223,0.0794671,0.713701,0.22283,0.768598,0.997662,0.617916,0.0854263,0.14801,0.696113,0.226696,0.187979,0.753223,0.173714,0.771071,0.154298,0.369008,0.749991,0.859384,0.787248,0.385373,0.0783032,0.36158,0.890474,0.839535,0.326344,0.0112815,0.396874,0.109192,0.293971,0.398308,0.311297,0.739955,0.361061,0.284514,0.206323,0.376609,0.874965,0.889809,0.0111092,0.851927,0.665601,0.985602,0.550839,0.302564,0.590169,0.0913529,0.409531,0.634405,0.507,0.143413,0.648019,0.206204,0.929323,0.865942,0.827466,0.457756,0.537706,0.575137,0.974085,0.342806,0.457693,0.86461,0.105531,0.313736,0.0515356,0.355097,0.977239,0.121557,0.34667,0.416113,0.769141,0.958273,0.65199,0.867949,0.914506,0.972236,0.0191068,0.666847,0.417033,0.77468,0.714346,0.385396,0.187441,0.702553,0.505883,0.93258,0.301041,0.977142,0.761658,0.538306,0.0267954,0.402094,0.705617,0.499559,0.664166,0.0401582,0.171682,0.679727,0.928019,0.930195,0.692586,0.878544,0.382298,0.767899,0.551479,0.655205,0.465412,0.610092,0.30555,0.179526,0.662408,0.794161,0.866729,0.121332,0.623088,0.0635896,0.168029,0.529853,0.748084,0.264604,0.978387,0.201381,0.462199,0.980499,0.19928,0.0102736,0.753566,0.45958,0.84194,0.350034,0.244822,0.604637,0.549936,0.226878,0.428825,0.0916436,0.494744,0.829726,0.574987,0.955764,0.521929,0.651415,0.679315,0.141859,0.498199,0.433479,0.725988,0.4015,0.908923,0.321698,0.859688,0.879876,0.510316,0.946429,0.42158,0.680693,0.154853,0.236178,0.0977785,0.911657,0.571191,0.66939,0.0794069,0.683756,0.55089,0.25984,0.806308,0.753648,0.458766,0.731671,0.563873,0.322888,0.351013,0.163843,0.773279,0.992789,0.105738,0.13418,0.0358464,0.187685,0.533068,0.0701253,0.12151,0.72128,0.0589966,0.220549,0.830409,0.540459,0.0427557,0.0470647,0.949893,0.385797,0.736312,0.478848,0.629953,0.884957,0.803055,0.713076,0.907428,0.101665,0.688209,0.133746,0.608365,0.574568,0.79457,0.636158,0.720828,0.0601423,0.133179,0.694148,0.313615,0.401019,0.89413,0.373273,0.613086,0.0494755,0.955857,0.750567,0.639826,0.75913,0.499037,0.705299,0.261891,0.555949,0.00736547,0.541971,0.648554,0.486468,0.0917602,0.209491,0.605795,0.422396,0.314612,0.286217,0.705694,0.0725054,0.488996,0.947217,0.916989,0.173561,0.860276,0.812968,0.154561,0.0577108,0.0418893,0.646364,0.333371,0.751533,0.856991,0.923982,|0.0310981,0.918346,0.0995185,0.818775,0.240624,0.321792,0.597057,0.373346,0.850208,0.664635,0.150116,0.936936,0.969359,0.819888,0.21619,0.317165,0.991376,0.123316,0.201025,0.227674,0.579075,0.241953,0.395031,0.748882,0.347831,0.246832,0.125753,0.801868,0.352051,0.196522,0.125506,0.690615,0.874199,0.84791,0.285711,0.141922,0.808874,0.158762,0.872496,0.941156,0.917846,0.812873,0.511985,0.853081,0.155418,0.507139,0.157771,0.631427,0.986601,0.691338,0.780593,0.179731,0.517211,0.84379,0.885447,0.586227,0.970907,0.419522,0.212303,0.0145328,0.841096,0.214422,0.503144,0.270516,0.254709,0.427709,0.817555,0.806632,0.65183,0.158285,0.957586,0.242221,0.118621,0.83352,0.440488,0.236176,0.369867,0.217293,0.250941,0.650072,0.787239,0.268212,0.339857,0.364907,0.165952,0.488322,0.174618,0.7231,0.52326,0.113823,0.768788,0.720127,0.835184,0.609765,0.240519,0.0684187,0.182364,0.60507,0.470319,0.735441,0.226596,0.883096,0.833591,0.44064,0.257288,0.109975,0.854747,0.41178,0.587252,0.852766,0.752242,0.0454583,0.276987,0.373071,0.931906,0.139252,0.601236,0.0291719,0.523389,0.775456,0.849421,0.629578,0.0512514,0.0232908,0.884779,0.073855,0.694316,0.159493,0.471776,0.125974,0.646558,0.982382,0.593126,0.805994,0.511465,0.337138,0.0684907,0.280721,0.343538,0.651097,0.289126,0.313042,0.848362,0.176969,0.371883,0.76918,0.741478,0.989709,0.273983,0.0636903,0.494177,0.692532,0.527485,0.48329,0.938825,0.0708565,0.389327,0.585327,0.781523,0.113731,0.686656,0.684367,0.381067,0.931827,0.578647,0.852407,0.348807,0.280168,0.0847849,0.0994309,0.307773,0.851652,0.151791,0.447842,0.927813,0.994347,0.834086,0.406371,0.653925,0.377843,0.0757011,0.431615,0.0511011,0.720349,0.9863,0.332769,0.322505,0.793326,0.0563723,0.79683,0.792929,0.0260256,0.0583596,0.626246,0.00267285,0.955128,0.653075,0.39334,0.297683,0.928177,0.848904,0.40421,0.56407,0.711408,0.328867,0.442541,0.475502,0.4771,0.854546,0.101529,0.703018,0.679515,0.430127,0.553549,0.529075,0.352007,0.0452084,0.90598,0.487443,0.113,0.844245,0.942537,0.716577,0.939013,0.96398,0.17716,0.373032,0.168546,0.0920202,0.229636,0.31937,0.975108,0.593286,0.188981,0.369845,0.883393,0.556412,0.214285,0.700703,0.0568041,0.469417,0.355809,0.779527,0.754464,0.646164,0.872875,0.0959858,0.874985,0.758685,0.253352,0.273534,0.928507,0.522205,0.0642047,0.441051,0.615198,0.305166,0.978092,0.751033,0.333977,0.302421,0.124588,0.745328,0.0297573,0.448886,0.396541,0.938709,0.406712,0.0991255,0.0732706,0.735946,0.739766,0.469371,0.73361,0.0131206,0.912569,0.518617,0.526048,0.0727364,0.875757,0.433974,0.585545,0.599673,0.341776,0.545328,0.809394,0.56857,0.980953,0.581316,0.688119,0.297584,0.504178,0.177055,0.620429,0.473374,0.147891,0.738095,0.905943,0.633456,0.989239,0.426767,0.773582,0.975728,0.77252,0.558018,0.750287,0.847355,0.183801,0.363675,0.582336,0.0885487,0.739799,0.960246,0.690085,0.372451,0.275538,0.0304191,0.672511,0.687026,0.770376,0.739718,0.729183,0.401101,0.626763,0.932899,0.593449,0.521284,0.532347,0.581556,0.457338,0.71704,0.224164,0.8044,0.787017,0.516552,0.201492,0.583376,0.620492,0.821632,0.824817,0.402415,0.34968,0.745127,0.417454,0.0975301,0.266573,0.207811,0.797961,0.964815,0.0158318,0.856899,0.994799,0.240053,0.398132,0.76936,0.412633,0.823431,0.682185,0.675058,0.708757,0.0845073,0.403443,0.0955955,0.714275,0.949098,0.387183,0.881541,0.903713,0.627711,0.870738,0.143634,0.160827,0.534258,0.758201,0.164306,0.652891,0.407744,0.801884,0.72921,0.190376,0.666978,0.104513,0.534641,0.266136,0.843777,0.733822,0.366674,0.445982,0.486919,0.653862,0.575022,0.682466,0.13345,0.639233,0.0658335,0.0386521,0.500403,0.806177,0.00156629,0.362322,0.318088,0.429449,0.600194,0.521897,0.31149,0.454744,0.750194,0.446228,0.0329147,0.1389,0.343894,0.0573199,0.252675,0.92305,0.397589,0.192512,0.0520822,0.613923,0.216754,0.573586,0.865264,0.326463,0.228307,0.997248,0.161537,0.0735162,0.9523,0.98652,0.025899,0.0221835,0.857529,0.0846466,0.995675,0.691655,0.0711576,0.160073,0.797301,0.70753,0.329777,0.724878,0.502227,0.250625,0.0885551,0.155442,0.204482,0.499083,0.0348637,0.0681435,0.778234,0.919172,0.316385,0.506333,0.608441,0.087337,0.966521,0.0777918,0.273125,0.952639,0.5645,0.0911034,0.802334,0.622971,0.681821,0.720485,0.822246,0.907363,0.888832,0.300806,0.166103,0.13558,0.994588,0.269694,0.670074,0.951534,0.0809609,0.0953452,0.314988,0.943003,0.707786,0.746117,0.224907,0.943083,0.512655,0.750425,0.154954,0.0807009,0.423825,0.10043,0.960441,0.558965,0.0198229,0.401765,0.849542,0.580331,0.0105574,0.760774,0.268327,0.876122,0.0707276,0.722596,0.202875,0.275433,0.889714,0.996681,0.803141,0.120162,0.238989,0.0865086,0.74047,0.963293,0.509393,0.154402,0.905671,0.956981,0.32562,0.905876,0.00441754,0.87548,0.0437521,0.422911,0.299282,0.442508,0.611411,0.900856,0.079716,0.879936,0.308416,0.140342,0.755858,0.0853238,0.352484,0.863398,0.640181,0.424927,0.981143,0.143313,0.536001,0.942687,0.772985,0.0667763,0.735782,0.711875,0.654636,0.0102364,0.355188,0.713729,0.971906,0.0149527,0.738439,0.221443,0.981936,0.435048,0.330887,0.375292,0.47143,0.863903,0.203916,0.512363,0.550236,0.518632,0.155303,0.601961,0.25143,0.267422,0.293172,0.163085,0.634847,0.175692,0.251201,0.847094,0.604042,0.87604,0.956838,0.759618,0.1169,0.188101,0.608039,0.704092,0.559569,0.0810757,0.911142,0.526028,0.510272,0.954699,0.389332,0.545208,0.0490603,0.0222228,0.149286,0.452132,0.219452,0.537434,0.748619,0.532874,0.513208,0.821435,0.506524,0.596741,0.827523,0.138709,0.128237,0.052878,0.781132,0.668495,0.0175239,0.548317,0.904235,0.841813,0.676733,0.25672,0.443276,0.793677,0.338086,0.0460852,0.991479,0.0663213,0.314996,0.116828,0.720741,0.921127,0.245454,0.639456,0.371277,0.957797,0.0630338,0.0569344,0.602396,0.669175,0.623286,0.322156,0.789439,0.162324,0.0250019,0.398765,0.353913,0.67214,0.923367,0.0500997,0.36824,0.330706,0.395194,0.907763,0.932473,0.395181,0.731565,0.42659,0.990445,0.175919,0.82224,0.286912,0.750406,0.768302,0.792833,0.0933709,0.179045,0.160813,0.272811,0.718862,0.0228238,0.48079,0.30045,0.225905,0.306324,0.260497,0.349987,0.669608,0.513859,0.579475,0.185508,0.657035,0.640156,0.338393,0.819163,0.537314,0.683545,0.516314,0.353417,0.713948,0.312637,0.908135,0.320905,0.516028,0.293469,0.800129,0.911768,0.502084,0.640419,0.391378,0.405576,0.0764279,0.572325,0.723764,0.464565,0.227456,0.241415,0.623078,0.359904,0.399109,0.364614,0.172931,0.891733,0.935231,0.0884211,0.813357,0.399134,0.409556,0.717489,0.387173,0.766769,0.205073,0.512165,0.193625,0.186532,0.296076,0.282363,0.333019,0.188788,0.481173,0.738478,0.867653,0.773341,0.220914,0.445467,0.404884,0.494596,0.343658,0.740723,0.559923,0.437734,0.925748,0.0904564,0.676997,0.278064,0.969367,0.460878,0.991659,0.243794,0.676498,0.249863,0.310387,0.936161,0.641739,0.900892,0.242911,0.207601,0.270896,0.913923,0.0281312,0.309072,0.581636,0.763884,0.0298766,0.911386,0.883448,0.165738,0.0344147,0.27134,0.860185,0.59157,0.755997,0.277418,0.365268,0.862364,0.727692,0.816097,0.522807,0.335968,0.954802,0.52762,0.142859,0.454718,0.46195,0.580068,0.0463543,0.0768318,0.726668,0.585013,0.416511,0.898665,0.158665,0.586515,0.938811,0.530392,0.778558,0.60795,0.905275,0.047211,0.283544,0.445033,0.12516,0.325226,0.202721,0.500184,0.210178,0.652632,0.0261008,0.835065,0.150969,0.148598,0.922703,0.985851,0.286263,0.634827,0.884413,0.449744,0.467254,0.467452,0.420057,0.479126,0.820252,0.340706,0.559416,0.471012,0.838014,0.934823,0.0768518,0.168416,0.406615,0.590707,0.287331,0.96203,0.293032,0.948846,0.273529,0.115233,0.874751,0.490656,0.831219,0.470628,0.858514,0.192608,0.659339,0.239927,0.337403,0.277057,0.547445,0.73078,0.256396,0.601325,0.489086,0.410698,0.806455,0.519714,0.853999,0.39464,0.53304,0.529163,0.652515,0.407288,0.354396,0.14252,0.553736,0.29117,0.301834,0.814978,0.141976,0.701224,0.168802,0.802175,0.512555,0.781383,0.670846,0.283301,0.827298,0.871193,0.0311992,0.321981,0.982291,0.237096,0.633518,0.540385,0.717574,0.421685,0.344213,0.133018,0.97131,0.824642,0.613284,0.99001,0.608345,5.76973e-05,0.936257,0.74694,0.0248601,0.278822,0.759065,0.945309,0.0468287,0.234941,0.618132,0.782108,0.0444151,0.41889,0.380043,0.644432,0.807358,0.683177,0.954734,0.406825,0.0731543,0.729918,0.16475,0.986666,0.883095,0.144469,0.844134,0.780773,0.532388,0.158219,0.810488,0.870901,0.263975,0.228763,0.698372,0.984349,0.968939,0.266092,0.49219,0.234504,0.542234,0.955082,0.416411,0.534824,0.452348,0.099808,0.859562,0.104912,0.840881,0.797487,0.757656,0.738627,0.541861,0.58813,0.253701,0.126954,0.580792,0.806775,0.943128,0.528642,0.98637,0.743237,0.520119,0.805117,0.790328,0.4255,0.738176,0.0297127,0.189332,0.387236,0.163254,0.603515,0.163039,0.823787,0.95396,0.296641,0.693813,0.510731,0.18611,0.061168,0.3159,0.43189,0.947668,0.659559,0.334199,0.674104,0.144594,0.913486,0.195178,0.236544,0.221101,0.0395796,0.185093,0.841971,0.410231,0.0742366,0.213786,0.198174,0.0562929,0.946049,0.404827,0.160715,0.0904784,0.493955,0.958574,0.785716,0.162807,0.0221332,0.365074,0.48303,0.649363,0.439487,0.115319,0.537392,0.459264,0.554069,0.113895,0.0926139,0.868213,0.272843,0.222926,|0.370111,0.642235,0.644441,0.386721,0.253055,0.929922,0.24677,0.0496479,0.877614,0.701349,0.886952,0.133191,0.25446,0.933472,0.597812,0.877461,0.317493,0.181564,0.214186,0.25498,0.38294,0.146836,0.908464,0.436238,0.841766,0.19304,0.124473,0.751493,0.688349,0.409664,0.408173,0.885986,0.282916,0.454269,0.622012,0.529877,0.27706,0.698697,0.377678,0.230985,0.234206,0.764335,0.254761,0.971616,0.246123,0.0195712,0.67999,0.25476,0.0707251,0.455595,0.347041,0.124083,0.182608,0.990995,0.826968,0.836567,0.127284,0.65731,0.391712,0.599284,0.185269,0.528122,0.85566,0.260875,0.180461,0.255614,0.352977,0.508121,0.946399,0.523681,0.0274669,0.942526,0.897058,0.0116843,0.655937,0.281968,0.570562,0.317824,0.365871,0.684112,0.325792,0.819988,0.2188,0.252516,0.848176,0.848339,0.519567,0.366088,0.365955,0.280566,0.297532,0.550366,0.903059,0.420148,0.0664153,0.399766,0.714889,0.923298,0.685304,0.86686,0.193615,0.510656,0.283107,0.760559,0.668085,0.547758,0.905125,0.176408,0.987538,0.597015,0.624783,0.00878572,0.182272,0.285759,0.121267,0.861905,0.280769,0.685246,0.0544645,0.893148,0.600289,0.290105,0.20152,0.0707236,0.199252,0.481885,0.775847,0.630569,0.216684,0.185543,0.092329,0.990149,0.26323,0.471179,0.3188,0.295783,0.141334,0.506505,0.579982,0.4347,0.575501,0.513151,0.472557,0.189019,0.839132,0.226577,0.773021,0.661411,0.0751642,0.0663913,0.967969,0.729385,0.310031,0.657559,0.651893,0.363756,0.0626724,0.652621,0.844247,0.0266473,0.37395,0.384998,0.927459,0.777106,0.214676,0.765484,0.786671,0.316316,0.159411,0.0354059,0.0718488,0.702907,0.150867,0.509727,0.399529,0.687705,0.681722,0.32616,0.692395,0.676301,0.602579,0.478925,0.115944,0.0281249,0.803175,0.943312,0.734783,0.999087,0.115621,0.53379,0.41392,0.942995,0.813579,0.543565,0.466851,0.679658,0.338037,0.0381217,0.614925,0.755016,0.662284,0.658515,0.37907,0.826464,0.699185,0.495089,0.428402,0.408855,0.9839,0.206369,0.255987,0.99477,0.686515,0.393635,0.258509,0.735735,0.14703,0.990486,0.871874,0.0167454,0.79238,0.40238,0.965792,0.569736,0.933304,0.368451,0.821159,0.880339,0.481175,0.585545,0.626033,0.4561,0.257483,0.885704,0.410138,0.798013,0.881632,0.719634,0.0893409,0.671634,0.94436,0.131116,0.278279,0.10737,0.545198,0.525625,0.543695,0.738547,0.0760112,0.0445727,0.288665,0.487061,0.914117,0.66351,0.4937,0.13318,0.287499,0.654671,0.968216,0.799063,0.248738,0.455771,0.452275,0.983736,0.116406,0.628528,0.398907,0.827819,0.77384,0.590697,0.624805,0.853398,0.0283096,0.435976,0.916578,0.597377,0.685733,0.317941,0.786149,0.323682,0.0871772,0.640127,0.314937,0.264302,0.229567,0.53928,0.47005,0.510781,0.476682,0.283388,0.890318,0.542501,0.771462,0.317823,0.778267,0.798659,0.849923,0.479392,0.962744,0.221655,0.709131,0.0497346,0.795386,0.414297,0.587491,0.945736,0.846867,0.227381,0.169928,0.254196,0.00243694,0.367206,0.900873,0.566592,0.888368,0.00184077,0.093399,0.235637,0.529108,0.518921,0.691624,0.243777,0.51749,0.105514,0.530649,0.206167,0.930261,0.547008,0.0352069,0.418541,0.384047,0.50688,0.0338135,0.131513,0.84296,0.236081,0.627676,0.100823,0.228597,0.692555,0.397635,0.443486,0.112409,0.19122,0.694486,0.643294,0.668465,0.159763,0.915542,0.673973,0.933406,0.33017,0.518744,0.420689,0.315227,0.0794551,0.608785,0.050048,0.601833,0.896556,0.943616,0.21964,0.787167,0.232369,0.724584,0.77121,0.949701,0.302285,0.931916,0.271776,0.560521,0.116802,0.5456,0.533308,0.0766492,0.993794,0.817672,0.447554,0.561535,0.117553,0.0896285,0.828968,0.491288,0.592704,0.780271,0.990937,0.840036,0.748194,0.602485,0.857477,0.704256,0.689074,0.889223,0.603158,0.384096,0.938239,0.429686,0.289038,0.655503,0.00212651,0.983881,0.0632673,0.318204,0.665738,0.812983,0.292487,0.983505,0.608309,0.338914,0.875953,0.223432,0.154079,0.863113,0.303442,0.416932,0.578101,0.149047,0.929224,0.877041,0.898823,0.567535,0.646196,0.0980839,0.786433,0.679647,0.856164,0.175208,0.436261,0.75484,0.594157,0.184126,0.368077,0.865315,0.293227,0.649505,0.746657,0.151882,0.260155,0.35885,0.173419,0.484161,0.402125,0.891124,0.908617,0.420642,0.992397,0.651749,0.493668,0.238627,0.237642,0.786244,0.790819,0.991149,0.739576,0.143268,0.0062229,0.364338,0.376815,0.660401,0.598361,0.888054,0.733141,0.987898,0.264434,0.550688,0.43321,0.506392,0.870408,0.0990717,0.11641,0.0768971,0.781746,0.64272,0.271072,0.759524,0.639642,0.815071,0.724662,0.675001,0.963001,0.4293,0.313397,0.660015,0.685673,0.418951,0.854635,0.936334,0.381974,0.211073,0.125037,0.361742,0.910968,0.499138,0.537359,0.741133,0.257479,0.0518551,0.238275,0.66594,0.651977,0.721355,0.323123,0.374157,0.188155,0.390735,0.283454,0.152168,0.165822,0.546278,0.0377463,0.00127846,0.966883,0.728369,0.977613,0.354386,0.0465642,0.683823,0.408197,0.865224,0.15735,0.085145,0.740601,0.713306,0.681935,0.0378514,0.0959345,0.98461,0.796247,0.803351,0.0496184,0.686897,0.395572,0.223716,0.561769,0.847679,0.433417,0.125859,0.162377,0.7998,0.736143,0.686994,0.46391,0.991887,0.654284,0.170657,0.853448,0.785595,0.0928953,0.237084,0.179957,0.421441,0.475914,0.1352,0.0268863,0.227429,0.647414,0.82693,0.633216,0.508725,0.436719,0.193458,0.192287,0.85054,0.263528,0.737079,0.734473,0.604953,0.197771,0.509227,0.780878,0.179738,0.700281,0.792233,0.577832,0.332634,0.785694,0.133631,0.0540932,0.199138,0.592884,0.0957927,0.00460249,0.357072,0.317051,0.594373,0.881138,0.937522,0.599443,0.478524,0.399457,0.870438,0.805424,0.49362,0.220343,0.929324,0.951058,0.351628,0.637154,0.186984,0.673657,0.52004,0.63721,0.575345,0.182978,0.0559025,0.228236,0.503406,0.237747,0.613461,0.33503,0.999101,0.897062,0.396283,0.606895,0.611721,0.363421,0.696808,0.579425,0.315673,0.0959049,0.0839609,0.407163,0.0845894,0.993061,0.0460476,0.222519,0.549721,0.729419,0.0977424,0.00648916,0.332273,0.669646,0.30601,0.633623,0.638472,0.779322,0.672117,0.406343,0.146367,0.846532,0.451615,0.946419,0.304921,0.638728,0.550545,0.192014,0.93526,0.0247752,0.854211,0.601076,0.0951047,0.352716,0.537613,0.754043,0.617519,0.145039,0.0563834,0.65894,0.933182,0.305723,0.247273,0.0683913,0.743704,0.730183,0.702066,0.442656,0.22989,0.210783,0.17056,0.527762,0.0699921,0.645804,0.0920091,0.930014,0.292649,0.166878,0.973969,0.964545,0.354516,0.712672,0.0365012,0.296453,0.488589,0.0635365,0.761453,0.307128,0.178829,0.936573,0.744043,0.281049,0.0266444,0.631383,0.781121,0.545984,0.988706,0.519594,0.845725,0.590997,0.881151,0.222118,0.310009,0.723287,0.281834,0.328529,0.458113,0.849175,0.663451,0.772796,0.663275,0.538844,0.485009,0.806033,0.551517,0.373895,0.289718,0.239885,0.380114,0.0616051,0.21197,0.793483,0.654772,0.232656,0.462515,0.417587,0.483492,0.435642,0.11681,0.84749,0.215078,0.807953,0.103598,0.11213,0.481093,0.844953,0.702934,0.0189186,0.560736,0.0796514,0.603413,0.266849,0.83766,0.508932,0.756837,0.85771,0.23346,0.328169,0.00486279,0.163295,0.442552,0.589088,0.529862,0.777134,0.844757,0.117195,0.376056,0.229931,0.798334,0.592909,0.883993,0.754611,0.411823,0.375466,0.586537,0.715425,0.226993,0.578898,0.922598,0.372002,0.243005,0.722792,0.850228,0.0895266,0.619428,0.0232512,0.565079,0.876857,0.924679,0.323312,0.731139,0.0902629,0.27569,0.428547,0.824494,0.986945,0.0930105,0.461053,0.645614,0.162348,0.617675,0.428712,0.247006,0.837148,0.527092,0.670802,0.675302,0.319054,0.701122,0.640151,0.0528936,0.37356,0.461991,0.17251,0.300912,0.147398,0.92834,0.9179,0.553482,0.999617,0.0250639,0.585766,0.631848,0.818934,0.158075,0.471952,0.488417,0.299433,0.0404175,0.888725,0.899815,0.356837,0.926342,0.402936,0.86533,0.987733,0.441328,0.267604,0.331529,0.339697,0.483479,0.151518,0.817055,0.939134,0.160304,0.745409,0.250934,0.128973,0.304495,0.561695,0.202402,0.812783,0.484036,0.314054,0.277744,0.937444,0.220865,0.0484033,0.653468,0.977564,0.803957,0.614671,0.21597,0.150688,0.395308,0.65643,0.423171,0.0750736,0.620937,0.897417,0.672331,0.638679,0.984938,0.235245,0.351628,0.69703,0.411015,0.840027,0.31219,0.663148,0.331087,0.75532,0.600258,0.314664,0.442085,0.609133,0.56412,0.88719,0.755131,0.202718,0.835899,0.253977,0.487778,0.211885,0.462885,0.781826,0.23164,0.923585,0.0626902,0.441474,0.116628,0.425589,0.321033,0.983494,0.300249,0.974498,0.472521,0.725382,0.384506,0.153307,0.0708486,0.0279013,0.284357,0.610825,0.0302877,0.25653,0.253643,0.155491,0.651491,0.831945,0.564795,0.0456203,0.74634,0.537397,0.998664,0.197368,0.938449,0.353167,0.57222,0.545987,0.233318,0.571486,0.685249,0.29874,0.171965,0.091038,0.693795,0.0927815,0.947016,0.563458,0.568714,0.909048,0.544549,0.583622,0.880042,0.0248967,0.433306,0.770057,0.391518,0.766451,0.601807,0.701696,0.684161,0.170706,0.625987,0.802359,0.574577,0.243109,0.465997,0.33397,0.310998,0.236448,0.330857,0.28532,0.781515,0.994636,0.760816,0.212154,0.374866,0.976524,0.364278,0.888425,0.579695,0.983721,0.0890016,0.130017,0.0290166,0.191469,0.184758,0.383262,0.79932,0.538861,0.555203,0.358255,0.0231704,0.128003,0.648435,0.638531,0.75728,0.134573,0.224679,0.199317,0.900109,0.140702,0.0803835,0.737903,0.846787,0.721528,0.452632,0.492746,0.500315,0.45362,0.275094,0.532727,0.899023,0.315811,0.68659,0.939418,0.718762,0.454884,0.0813361,0.590281,|0.462811,0.347886,0.258428,0.542298,0.291827,0.298888,0.316407,0.8846,0.753613,0.668198,0.0132989,0.792011,0.520021,0.20764,0.803155,0.646039,0.654241,0.492856,0.290761,0.537185,0.66173,0.766607,0.441021,0.827756,0.721134,0.631167,0.0505512,0.0864691,0.266791,0.670748,0.568368,0.0835887,0.557085,0.0178249,0.746286,0.784066,0.356029,0.623699,0.483615,0.642024,0.701828,0.915895,0.344028,0.146501,0.850292,0.130973,0.0487749,0.142342,0.794285,0.888216,0.0473968,0.26076,0.175387,0.452353,0.932463,0.50959,0.834991,0.81252,0.544999,0.194153,0.871173,0.622886,0.705971,0.335148,0.648879,0.199812,0.558074,0.445297,0.928499,0.868788,0.441456,0.00989324,0.645673,0.240835,0.559705,0.311051,0.416888,0.549615,0.17723,0.466222,0.465066,0.28084,0.0486031,0.225397,0.890861,0.759426,0.107612,0.770301,0.771918,0.613356,0.872151,0.60391,0.454485,0.196466,0.141137,0.54579,0.315685,0.499202,0.628457,0.681932,0.432378,0.00719345,0.819811,0.787142,0.900108,0.623762,0.0152408,0.755459,0.11386,0.235733,0.0143483,0.968077,0.613707,0.328921,0.221307,0.483908,0.436917,0.0206023,0.502182,0.172901,0.519963,0.930293,0.947267,0.623714,0.987229,0.336228,0.778584,0.449013,0.177872,0.409989,0.788021,0.896002,0.709866,0.970837,0.462472,0.727091,0.193591,0.0184866,0.633761,0.226895,0.469782,0.758559,0.916662,0.803938,0.837483,0.305862,0.56858,0.17847,0.164649,0.0257955,0.0266518,0.530661,0.573966,0.754872,0.691503,0.272376,0.0495843,0.76746,0.417667,0.59406,0.974212,0.737485,0.180026,0.478163,0.147455,0.961004,0.23682,0.963829,0.699605,0.455093,0.950806,0.112488,0.204219,0.426653,0.789302,0.126946,0.270894,0.183,0.646476,0.534583,0.310548,0.165389,0.86833,0.359496,0.177061,0.382761,0.665387,0.303696,0.280212,0.914522,0.0744559,0.998958,0.409529,0.686758,0.0354574,0.384641,0.328394,0.498942,0.205175,0.183953,0.725467,0.597706,0.166422,0.575307,0.459536,0.180848,0.666684,0.659027,0.196605,0.68073,0.695138,0.2807,0.799616,0.303127,0.38604,0.263151,0.20862,0.547602,0.0295538,0.627627,0.102096,0.0265002,0.0113307,0.384036,0.236209,0.0905228,0.635385,0.96606,0.562895,0.454812,0.459756,0.920565,0.248809,0.635323,0.877464,0.303888,0.244305,0.0531985,0.823152,0.530888,0.273676,0.571,0.961199,0.374169,0.402882,0.684692,0.762793,0.299613,0.547893,0.856423,0.446806,0.740334,0.0781167,0.695306,0.920604,0.905546,0.814428,0.60141,0.589146,0.822348,0.734445,0.50622,0.86338,0.439493,0.42257,0.566255,0.346955,0.434971,0.228861,0.571685,0.734351,0.179393,0.987803,0.633331,0.373663,0.44267,0.424364,0.436616,0.597631,0.426819,0.0436063,0.915224,0.866067,0.91381,0.213739,0.917862,0.0728578,0.0983872,0.808009,0.681007,0.604934,0.478554,0.793774,0.967814,0.472991,0.0262055,0.883565,0.385023,0.423466,0.558484,0.746048,0.423367,0.963606,0.0621544,0.651664,0.988681,0.910637,0.789458,0.67981,0.325779,0.37022,0.660598,0.0868365,0.562497,0.999651,0.468125,0.344138,0.044374,0.20289,0.634604,0.400174,0.595083,0.30799,0.837464,0.725774,0.879674,0.922495,0.261402,0.0702008,0.555378,0.0138802,0.292878,0.0794691,0.932676,0.550417,0.660516,0.839687,0.999013,0.691099,0.897151,0.105123,0.706684,0.990884,0.520755,0.742212,0.0429835,0.870345,0.821326,0.0306562,0.569584,0.961813,0.999425,0.999971,0.843127,0.634664,0.378991,0.940887,0.83411,0.217824,0.235791,0.819885,0.991784,0.070991,0.154664,0.977848,0.38768,0.539422,0.807361,0.248911,0.182427,0.0846438,0.695778,0.503701,0.759568,0.614628,0.123799,0.251526,0.33039,0.595547,0.254347,0.376585,0.384538,0.907025,0.420669,0.252691,0.508682,0.0713988,0.067674,0.616852,0.367377,0.607912,0.684862,0.516818,0.169319,0.849894,0.089121,0.00425994,0.311693,0.688094,0.845849,0.21681,0.188947,0.445574,0.944502,0.177791,0.0107373,0.240289,0.179564,0.575465,0.634547,0.305565,0.419655,0.812963,0.378525,0.0107374,0.137291,0.0509955,0.720333,0.802104,0.0893263,0.247465,0.304038,0.708873,0.62224,0.771141,0.980661,0.736212,0.421321,0.925914,0.481291,0.449311,0.019591,0.832879,0.628465,0.813042,0.765637,0.960037,0.604093,0.878547,0.326083,0.858836,0.393867,0.97008,0.969435,0.362652,0.272261,0.203681,0.753831,0.523229,0.32817,0.160411,0.282661,0.503393,0.00382739,0.469251,0.0515573,0.342039,0.712399,0.67485,0.776917,0.997804,0.874862,0.885834,0.017858,0.910275,0.807176,0.807219,0.284523,0.345026,0.789423,0.249612,0.0799395,0.566299,0.871522,0.374786,0.289968,0.679045,0.176095,0.882187,0.520938,0.254919,0.541386,0.971171,0.204531,0.739578,0.973835,0.466538,0.012602,0.297185,0.819518,0.882665,0.607854,0.801936,0.990802,0.78685,0.625537,0.70625,0.374617,0.721427,0.700324,0.0278353,0.619378,0.514153,0.390255,0.343049,0.907286,0.227321,0.736409,0.941995,0.263506,0.352462,0.324701,0.427215,0.409906,0.585717,0.638958,0.330247,0.119246,0.104505,0.10948,0.686802,0.363577,0.100579,0.252304,0.522374,0.222488,0.173581,0.47899,0.350501,0.230753,0.518979,0.256089,0.296693,0.925999,0.599463,0.443783,0.413454,0.469966,0.520354,0.286696,0.401931,0.602948,0.272346,0.621919,0.455411,0.280232,0.33367,0.66793,0.500556,0.865613,0.990006,0.8358,0.392097,0.0484845,0.873136,0.621438,0.891895,0.341889,0.298816,0.26308,0.214109,0.306256,0.0912581,0.997694,0.868019,0.0215945,0.337425,0.538902,0.930439,0.640678,0.24679,0.711858,0.936379,0.30523,0.0175573,0.37281,0.73916,0.989337,0.300648,0.387743,0.7476,0.622733,0.836924,0.687926,0.377572,0.951314,0.283568,0.332755,0.529173,0.864774,0.510729,0.0785921,0.0331975,0.180441,0.930771,0.26602,0.74926,0.353683,0.167917,0.681728,0.678758,0.800585,0.682806,0.164529,0.367315,0.0994526,0.73652,0.318346,0.0721422,0.365153,0.706614,0.446526,0.909799,0.919397,0.347641,0.366094,0.629119,0.877984,0.86442,0.887819,0.885888,0.982367,0.408694,0.0891421,0.745148,0.731553,0.881602,0.374181,0.673724,0.116061,0.908107,0.105185,0.96737,0.89885,0.380344,0.846428,0.128809,0.276834,0.115735,0.475038,0.377203,0.47816,0.837459,0.691049,0.372952,0.806009,0.34623,0.928767,0.184616,0.247738,0.632892,0.317202,0.988421,0.966786,0.295892,0.948109,0.338853,0.64015,0.369545,0.631754,0.208097,0.422712,0.431221,0.997304,0.933749,0.514601,0.33155,0.0220624,0.431729,0.723836,0.219676,0.326474,0.612,0.350361,0.329204,0.476622,0.258121,0.942623,0.164062,0.328601,0.595963,0.335118,0.900269,0.0589837,0.201129,0.81942,0.358101,0.475271,0.296905,0.130955,0.0646093,0.0491661,0.534314,0.0916523,0.312874,0.507655,0.97911,0.799146,0.643923,0.377447,0.735592,0.233825,0.162088,0.0914965,0.742918,0.686558,0.496104,0.212576,0.379686,0.777204,0.818752,0.0516724,0.718272,0.592279,0.176816,0.786169,0.193382,0.362662,0.561137,0.251096,0.724897,0.237945,0.842393,0.781981,0.0958651,0.490864,0.175897,0.671287,0.0612197,0.797529,0.477106,0.943251,0.646168,0.785651,0.376783,0.82759,0.367431,0.189503,0.0924017,0.147765,0.965611,0.741085,0.547805,0.798747,0.906223,0.381639,0.407406,0.167354,0.0583646,0.784441,0.48478,0.0113043,0.400206,0.527371,0.0954795,0.725225,0.850759,0.0380611,0.382472,0.452906,0.676675,0.778761,0.475719,0.879268,0.376971,0.59253,0.0817891,0.922609,0.672605,0.604905,0.294516,0.898076,0.541558,0.715273,0.356896,0.371394,0.572182,0.159902,0.641593,0.605027,0.539302,0.0452306,0.957202,0.419503,0.654656,0.912588,0.00791615,0.465131,0.469356,0.782574,0.90708,0.17377,0.521851,0.512714,0.946911,0.99604,0.512984,0.163217,0.684121,0.726106,0.067003,0.81088,0.686323,0.706372,0.689804,0.646293,0.137057,0.817252,0.797412,0.531222,0.74685,0.719347,0.178803,0.96096,0.625227,0.658489,0.934516,0.760824,0.260847,0.817993,0.86003,0.491247,0.13644,0.0740755,0.897688,0.594258,0.598949,0.254625,0.693933,0.450883,0.761619,0.426287,0.351655,0.537031,0.628412,0.006293,0.131092,0.107273,0.749053,0.354331,0.241616,0.787727,0.0963992,0.952729,0.752624,0.316791,0.172988,0.299303,0.83167,0.375722,0.61492,0.324795,0.913575,0.255671,0.714558,0.0848482,0.566386,0.413805,0.0304587,0.0459569,0.276411,0.492655,0.203174,0.10677,0.186863,0.88127,0.152403,0.978619,0.53338,0.39341,0.700392,0.290289,0.729537,0.71997,0.694537,0.0111567,0.275894,0.0377609,0.220439,0.279529,0.540614,0.48429,0.215859,0.663386,0.518307,0.207997,0.266071,0.726642,0.0417951,0.402531,0.636254,0.0577661,0.641496,0.960562,0.478842,0.415829,0.971948,0.612979,0.488218,0.378388,0.583788,0.0568025,0.694101,0.798029,0.33881,0.0663757,0.679503,0.937499,0.384831,0.81515,0.713245,0.790033,0.0975506,0.501873,0.0643288,0.174076,0.244376,0.64563,0.742879,0.479277,0.369172,0.330453,0.974859,0.501696,0.17972,0.326637,0.150555,0.290748,0.204065,0.128697,0.372691,0.282724,0.024782,0.297702,0.0502095,0.44653,0.0697002,0.403274,0.224048,0.488311,0.138783,0.740207,0.902024,0.642535,0.313932,0.915913,0.993297,0.52813,0.22247,0.0939738,0.619233,0.717196,0.407954,0.748011,0.754432,0.390938,0.0127195,0.00496382,0.672266,0.861185,0.425767,8.2016e-05,0.890463,0.24546,0.876859,0.609456,0.496842,0.806541,0.887951,0.452263,0.0310258,0.334659,0.159226,0.876325,0.721735,0.957244,0.764287,0.821376,0.626394,0.492824,0.427154,0.831097,0.128518,0.495382,0.228498,0.53231,0.874895,0.421709,0.0334787,0.0542943,0.935801,0.298546,0.447296,0.53437,0.713733,0.226006,0.61661,0.413494,0.952784,0.676226,|0.520081,0.578411,0.12873,0.625732,0.248758,0.678507,0.359651,0.639384,0.697736,0.238838,0.503575,0.866991,0.48058,0.547046,0.403855,0.217607,0.886711,0.142533,0.853752,0.7119,0.608415,0.803883,0.93603,0.415379,0.548721,0.40982,0.0792962,0.591718,0.0309844,0.185704,0.936281,0.024958,0.0774776,0.481858,0.421948,0.81686,0.223478,0.967049,0.187273,0.537538,0.431364,0.854739,0.608209,0.946302,0.397628,0.465947,0.114157,0.57884,0.750996,0.192139,0.099595,0.00615656,0.182274,0.767882,0.774978,0.892787,0.712462,0.672319,0.346158,0.260643,0.283895,0.45224,0.462891,0.253382,0.268192,0.741381,0.599912,0.466585,0.528364,0.551552,0.931448,0.779824,0.475863,0.539051,0.21932,0.115072,0.673094,0.483055,0.215755,0.513722,0.358359,0.424233,0.175441,0.429894,0.665619,0.874037,0.961194,0.229429,0.630771,0.770781,0.203806,0.75823,0.769132,0.141939,0.938541,0.0446235,0.155625,0.707205,0.306468,0.192862,0.762507,0.797568,0.487226,0.572427,0.616015,0.572678,0.74283,0.246394,0.982556,0.823888,0.111643,0.298375,0.353064,0.861729,0.33466,0.0887159,0.234005,0.00613147,0.28102,0.751362,0.496197,0.288242,0.0996028,0.060746,0.182616,0.0589397,0.183549,0.978421,0.590797,0.0690074,0.608047,0.844709,0.186951,0.0383877,0.03481,0.67851,0.0161817,0.216512,0.235466,0.425361,0.3373,0.895357,0.501982,0.73662,0.73824,0.587167,0.544122,0.306852,0.963825,0.420837,0.13096,0.0413219,0.168758,0.584271,0.377184,0.69062,0.213889,0.776004,0.722996,0.767391,0.232569,0.946644,0.0351968,0.881161,0.805548,0.501197,0.150076,0.960752,0.886314,0.509395,0.914066,0.153849,0.426786,0.745424,0.519375,0.159742,0.531812,0.671438,0.833621,0.875454,0.783275,0.541003,0.885181,0.699991,0.430087,0.827259,0.0912148,0.86684,0.854468,0.252432,0.593226,0.756387,0.235599,0.984708,0.361925,0.520053,0.507527,0.114505,0.119787,0.73061,0.450198,0.634576,0.0892264,0.889954,0.317808,0.0225732,0.696094,0.636603,0.00553918,0.317829,0.475457,0.954713,0.0278319,0.535134,0.228018,0.370327,0.131077,0.325052,0.18492,0.259797,0.457499,0.649539,0.4839,0.144162,0.335203,0.384286,0.051824,0.416482,0.211618,0.17714,0.477281,0.596241,0.87033,0.335636,0.479828,0.398721,0.92004,0.312853,0.950137,0.533064,0.176165,0.636514,0.96553,0.234718,0.157053,0.631562,0.626988,0.176164,0.458185,0.5867,0.172629,0.256737,0.216172,0.807875,0.0800217,0.37695,0.165603,0.189744,0.847838,0.288781,0.33395,0.693821,0.0827845,0.64689,0.628022,0.269705,0.236435,0.583025,0.0220649,0.578253,0.68472,0.121479,0.312327,0.97031,0.800677,0.373628,0.359004,0.989473,0.360413,0.263289,0.779857,0.737544,0.559354,0.11065,0.0923082,0.297834,0.584842,0.854693,0.823206,0.250774,0.974722,0.782498,0.22071,0.934406,0.89166,0.750392,0.412235,0.2814,0.93189,0.540903,0.935453,0.121375,0.416358,0.891773,0.533163,0.746694,0.339099,0.549484,0.640751,0.470367,0.772106,0.175973,0.944048,0.547128,0.458589,0.152174,0.531994,0.853359,0.698478,0.0182827,0.891575,0.614235,0.95715,0.759006,0.324241,0.388391,0.944943,0.793204,0.223063,0.111801,0.0145974,0.78091,0.473939,0.644751,0.182001,0.703624,0.75979,0.593517,0.996684,0.695471,0.586713,0.239114,0.165791,0.536589,0.132567,0.710776,0.921083,0.910718,0.825034,0.341355,0.244685,0.197071,0.461354,0.113821,0.777103,0.591406,0.289092,0.615496,0.172063,0.884573,0.796583,0.391562,0.997329,0.883795,0.33194,0.738041,0.287754,0.440132,0.60567,0.148707,0.58367,0.890911,0.475068,0.949333,0.145251,0.287025,0.5815,0.621729,0.142419,0.0599369,0.705355,0.209844,0.201231,0.307339,0.242511,0.558157,0.515067,0.400719,0.456614,0.0973376,0.377153,0.523449,0.763541,0.450752,0.478881,0.853532,0.773184,0.453918,0.399413,0.070834,0.525645,0.387795,0.434042,0.198698,0.967126,0.597462,0.370575,0.565565,0.347453,0.369512,0.127799,0.175731,0.0579712,0.181604,0.626342,0.411316,0.184383,0.142326,0.260745,0.166004,0.638075,0.0700811,0.540782,0.757418,0.357135,0.444305,0.625831,0.361107,0.0140917,0.0129724,0.51307,0.396583,0.486292,0.768754,0.942196,0.334957,0.987181,0.379641,0.171401,0.0556335,0.324138,0.882108,0.67843,0.952885,0.425916,0.405875,0.165922,0.502052,0.752856,0.4463,0.257672,0.166725,0.332665,0.814423,0.203333,0.856827,0.566627,0.217614,0.319348,0.758971,0.0577061,0.157324,0.383805,0.119398,0.282233,0.951317,0.10245,0.995492,0.712975,0.472824,0.434379,0.475201,0.279451,0.356839,0.866751,0.270116,0.175813,0.48419,0.794621,0.455306,0.0947105,0.215958,0.950467,0.93172,0.233028,0.111976,0.844161,0.468932,0.43665,0.557994,0.208266,0.65034,0.852339,0.867292,0.68285,0.0394053,0.750706,0.0852863,0.603266,0.258094,0.487283,0.578282,0.489792,0.499695,0.934538,0.417266,0.140055,0.498349,0.4537,0.439189,0.419822,0.263621,0.856646,0.528585,0.489901,0.349098,0.249878,0.288308,0.805571,0.368779,0.618683,0.298217,0.675935,0.92191,0.430093,0.999255,0.216152,0.347223,0.00816196,0.256458,0.56559,0.836477,0.0824248,0.274619,0.774225,0.667615,0.522041,0.351332,0.474728,0.623831,0.0504014,0.526973,0.182317,0.262027,0.0476933,0.874174,0.4401,0.333684,0.8528,0.572878,0.190746,0.665533,0.432074,0.256953,0.923153,0.544904,0.66771,0.656901,0.362109,0.73869,0.867526,0.87464,0.854522,0.745577,0.719221,0.72651,0.49833,0.121726,0.297513,0.687874,0.341197,0.696307,0.90192,0.558348,0.863741,0.329529,0.687253,0.871563,0.0239363,0.889059,0.463446,0.878454,0.874777,0.234123,0.972851,0.0230761,0.245813,0.435529,0.184006,0.265848,0.673856,0.773986,0.0127068,0.165746,0.968195,0.626011,0.84075,0.90039,0.0798738,0.733311,0.332611,0.740851,0.541918,0.48777,0.737303,0.613641,0.346841,0.579203,0.0781812,0.789806,0.248235,0.0263959,0.755461,0.612187,0.86044,0.474114,0.958212,0.763711,0.668544,0.184676,0.123409,0.23927,0.0186647,0.45568,0.648935,0.630505,0.472709,0.393061,0.428468,0.612824,0.956392,0.0149767,0.559641,0.541132,0.805383,0.555315,0.311024,0.564835,0.499743,0.5394,0.182198,0.678287,0.752894,0.900287,0.372179,0.54767,0.0592946,0.320693,0.814401,0.0567461,0.666755,0.0978715,0.145186,0.631557,0.63863,0.493096,0.191374,0.181923,0.594849,0.117726,0.194776,0.387562,0.481532,0.976857,0.824724,0.0194597,0.592105,0.994298,0.121494,0.395223,0.565416,0.0472709,0.862911,0.737908,0.532316,0.302164,0.839361,0.289572,0.431369,0.233539,0.380876,0.848184,0.441682,0.823393,0.336718,0.0391872,0.0475282,0.432127,0.447036,0.943455,0.789957,0.429798,0.690947,0.648215,0.161412,0.396505,0.441128,0.195523,0.202884,0.394624,0.807395,0.535422,0.474823,0.801521,0.330743,0.20307,0.636827,0.165603,0.869998,0.515247,0.732991,0.104454,0.015224,0.694335,0.00859952,0.138181,0.080056,0.407374,0.49639,0.138118,0.369846,0.170388,0.266209,0.43732,0.928036,0.674602,0.62135,0.326088,0.242622,0.411217,0.503132,0.636025,0.482824,0.124017,0.87288,0.286647,0.0357082,0.746164,0.256559,0.283039,0.606431,0.00645131,0.68797,0.709403,0.0830209,0.371446,0.666583,0.515941,0.214761,0.162195,0.230306,0.375009,0.982813,0.39935,0.266836,0.492743,0.445379,0.444564,0.72418,0.170459,0.68923,0.301354,0.125693,0.490042,0.853038,0.481122,0.638453,0.915394,0.714337,0.79965,0.163749,0.834155,0.243735,0.69814,0.563508,0.403073,0.102305,0.414976,0.42585,0.689157,0.478401,0.00700951,0.523303,0.149987,0.60319,0.853728,0.115557,0.0468628,0.705902,0.427369,0.81632,0.0463516,0.426736,0.854776,0.432688,0.151919,0.768931,0.879718,0.294757,0.916861,0.890182,0.939991,0.653304,0.727041,0.587411,0.195559,0.901225,0.524696,0.537129,0.633685,0.819681,0.274802,0.312542,0.0157626,0.124235,0.137595,0.488075,0.695388,0.0968049,0.945574,0.857523,0.768508,0.965754,0.264599,0.0796299,0.273826,0.633709,0.693568,0.470197,0.601447,0.0843104,0.879346,0.920148,0.855565,0.376566,0.341204,0.789651,0.110115,0.956512,0.409013,0.355619,0.118679,0.632565,0.0211074,0.125414,0.314056,0.642249,0.463205,0.865567,0.367909,0.4907,0.709104,0.212405,0.0432597,0.235508,0.498653,0.206915,0.461942,0.690679,0.181975,0.469448,0.537562,0.0725333,0.658221,0.587623,0.889339,0.902368,0.242084,0.8558,0.396063,0.203088,0.958019,0.450259,0.0774179,0.13121,0.397841,0.131965,0.3598,0.292203,0.677858,0.375336,0.331543,0.377628,0.740603,0.600431,0.988566,0.505699,0.504836,0.782781,0.552145,0.938044,0.218657,0.974408,0.433484,0.0887375,0.958423,0.0506756,0.116324,0.316196,0.648064,0.612602,0.0294204,0.361773,0.330545,0.831946,0.392028,0.986001,0.124665,0.129464,0.104644,0.99879,0.316643,0.692996,0.444486,0.466356,0.474722,0.0261679,0.963347,0.959326,0.249522,0.518486,0.360036,0.909002,0.879079,0.717709,0.541363,0.69112,0.0859157,0.781074,0.998095,0.318328,0.455617,0.942993,0.0409876,0.35801,0.192861,0.834455,0.459388,0.554754,0.596911,0.602891,0.903887,0.592857,0.466482,0.595921,0.722913,0.88148,0.806978,0.47915,0.902656,0.25912,0.30922,0.759823,0.052611,0.15526,0.872839,0.400519,0.928555,0.406038,0.0135593,0.0417958,0.724641,0.0540525,0.493297,0.129279,0.29977,0.0718271,0.627079,0.767901,0.993661,0.590742,0.297046,0.690748,0.342597,0.19822,0.312829,0.804362,0.149345,0.894697,0.568434,0.694021,0.770926,0.688228,0.914753,0.14411,0.677386,0.863285,0.428413,0.68154,0.969468,0.623695,0.922836,0.544503,0.978949,0.652592,0.959625,0.866489,0.609804,0.258789,0.0959072,|0.0241257,0.946968,0.906946,0.255573,0.242988,0.720641,0.929973,0.819986,0.533607,0.778928,0.627431,0.815196,0.233873,0.151227,0.425302,0.74016,0.561185,0.291953,0.190446,0.880651,0.0806408,0.205643,0.901433,0.0925229,0.724491,0.259194,0.459598,0.885074,0.851533,0.527448,0.410637,0.417169,0.195414,0.652403,0.496272,0.606226,0.780033,0.707896,0.116941,0.487152,0.594811,0.467695,0.210382,0.572635,0.0894418,0.783479,0.752252,0.0892354,0.751274,0.677902,0.254988,0.697539,0.122104,0.778482,0.673434,0.200929,0.962174,0.802981,0.46199,0.819882,0.120896,0.148782,0.862177,0.833351,0.139985,0.971211,0.957296,0.29468,0.708767,0.491172,0.237073,0.717088,0.835585,0.535802,0.798992,0.458355,0.160371,0.928302,0.101746,0.308111,0.181444,0.497634,0.877823,0.61248,0.848491,0.687787,0.639007,0.853364,0.450896,0.805744,0.771715,0.403689,0.0955943,0.0699528,0.41203,0.124584,0.460863,0.643503,0.298734,0.190618,0.680371,0.10757,0.772183,0.986051,0.7965,0.782579,0.270015,0.754547,0.692563,0.0628317,0.604109,0.864291,0.704968,0.916574,0.902215,0.96774,0.676412,0.881615,0.535127,0.897391,0.577672,0.633929,0.745226,0.687338,0.161459,0.381472,0.89491,0.270872,0.739014,0.860772,0.817839,0.924607,0.294577,0.641762,0.701661,0.599485,0.831025,0.773405,0.3751,0.5371,0.0282235,0.432435,0.00845438,0.768562,0.814017,0.108337,0.182298,0.442077,0.656824,0.594568,0.907761,0.749706,0.913813,0.0777677,0.70235,0.737399,0.911818,0.754539,0.205029,0.736237,0.995666,0.117635,0.831905,0.327569,0.297855,0.262682,0.238781,0.223697,0.229892,0.361197,0.35595,0.628014,0.127034,0.196334,0.112313,0.130656,0.414402,0.514102,0.494538,0.599389,0.340289,0.0949642,0.532099,0.897927,0.102789,0.323449,0.958659,0.670239,0.32555,0.428534,0.868432,0.524714,0.845441,0.342238,0.188542,0.0642334,0.726185,0.120116,0.112538,0.624103,0.718627,0.176796,0.977419,0.369692,0.696543,0.036543,0.368785,0.059499,0.887783,0.212914,0.757928,0.492449,0.216378,0.881144,0.395535,0.967487,0.966293,0.478956,0.989425,0.254079,0.584398,0.903694,0.607015,0.0180883,0.0385742,0.926946,0.188455,0.623267,0.0149271,0.0353929,0.80523,0.806435,0.00621998,0.203482,0.0158846,0.918166,0.595174,0.656878,0.395417,0.960426,0.543189,0.603241,0.531556,0.711631,0.4404,0.899485,0.7977,0.344564,0.64291,0.264104,0.390331,0.790266,0.144893,0.0507091,0.473345,0.0321274,0.844869,0.742057,0.975422,0.622065,0.484142,0.439999,0.929549,0.624101,0.246611,0.271567,0.923806,0.32474,0.383345,0.534577,0.63782,0.659612,0.6223,0.750136,0.673157,0.21394,0.695355,0.874418,0.432061,0.694427,0.491933,0.136978,0.0952235,0.923327,0.925701,0.181959,0.935632,0.179376,0.984568,0.909839,0.900405,0.645608,0.834608,0.30114,0.759254,0.555429,0.70033,0.219466,0.757163,0.541504,0.839818,0.557985,0.94346,0.0202954,0.0410194,0.817051,0.136825,0.489499,0.691024,0.135878,0.808515,0.836639,0.909624,0.860356,0.436814,0.169125,0.220006,0.122541,0.325381,0.340164,0.712184,0.956787,0.707249,0.463933,0.928301,0.34335,0.0951672,0.492001,0.195933,0.46228,0.687328,0.223366,0.992027,0.524405,0.70188,0.46719,0.530856,0.293976,0.156653,0.14494,0.88059,0.616313,0.725447,0.703786,0.662192,0.181561,0.0921147,0.784849,0.282762,0.578861,0.742873,0.0523173,0.18127,0.714122,0.698577,0.972929,0.361349,0.470017,0.76639,0.466381,0.273382,0.756104,0.076543,0.366903,0.195984,0.491825,0.666883,0.25922,0.604292,0.976746,0.315449,0.206236,0.791766,0.126331,0.00241214,0.520203,0.620447,0.537473,0.0134665,0.417976,0.503089,0.7517,0.438137,0.538572,0.340762,0.600579,0.245461,0.454199,0.716183,0.809433,0.139654,0.693259,0.705417,0.420785,0.81326,0.67907,0.638588,0.364936,0.592269,0.383645,0.883973,0.352143,0.856007,0.290864,0.372738,0.518481,0.589834,0.878701,0.167628,0.20733,0.705718,0.749427,0.991996,0.749729,0.903282,0.267777,0.473124,0.498282,0.545538,0.995252,0.862388,0.601525,0.453169,0.684539,0.580724,0.295944,0.15643,0.440098,0.849839,0.788512,0.144558,0.185496,0.964404,0.364155,0.665765,0.230872,0.512996,0.559925,0.286527,0.186014,0.675367,0.846545,0.214158,0.92011,0.777881,0.158041,0.44816,0.67896,0.981559,0.666016,0.255499,0.693597,0.853897,0.759312,0.213974,0.221473,0.571406,0.740364,0.00455016,0.95135,0.784734,0.780762,0.975739,0.30759,0.29316,0.931076,0.458924,0.591338,0.793473,0.698985,0.629105,0.930001,0.713684,0.986219,0.87582,0.691002,0.520991,0.200253,0.572205,0.132304,0.226928,0.826222,0.629742,0.506683,0.931315,0.45943,0.54375,0.578189,0.720039,0.205811,0.602546,0.886028,0.938412,0.632072,0.910072,0.19829,0.927732,0.58885,0.859139,0.444193,0.777176,0.689058,0.354528,0.164682,0.930109,0.845547,0.966046,0.248888,0.648488,0.117252,0.30398,0.705201,0.207325,0.84402,0.126678,0.840964,0.80474,0.662826,0.814179,0.0406086,0.118319,0.354915,0.526278,0.722314,0.0463498,0.654848,0.767596,0.769284,0.551719,0.887625,0.123345,0.70935,0.426103,0.717078,0.427211,0.894013,0.486864,0.842469,0.96115,0.804166,0.242567,0.598678,0.776481,0.668461,0.536965,0.924784,0.690111,0.556577,0.663175,0.268226,0.710784,0.287618,0.418748,0.626188,0.296396,0.913886,0.651851,0.214469,0.548314,0.759985,0.325372,0.499297,0.0624834,0.0665702,0.946145,0.834596,0.22812,0.857114,0.156623,0.398365,0.670781,0.173491,0.0878656,0.14966,0.0917535,0.326983,0.939697,0.997772,0.0106221,0.435767,0.373633,0.73555,0.613928,0.848726,0.060116,0.0157374,0.629824,0.401637,0.899645,0.893696,0.462344,0.649696,0.948995,0.367734,0.086094,0.145353,0.430173,0.776906,0.994222,0.941634,0.389677,0.631869,0.735449,0.51103,0.0237902,0.889847,0.918064,0.418527,0.00371885,0.838382,0.585895,0.0353709,0.325458,0.639034,0.488635,0.149344,0.322243,0.716453,0.986335,0.961697,0.516706,0.874405,0.909705,0.255915,0.142028,0.921371,0.444549,0.515678,0.0784799,0.980671,0.792042,0.942608,0.0470848,0.873007,0.0764174,0.910023,0.780405,0.491576,0.220334,0.800936,0.443985,0.146884,0.383525,0.314109,0.216054,0.408145,0.391581,0.288518,0.145572,0.761482,0.217657,0.203378,0.172473,0.634841,0.286832,0.853415,0.145185,0.514826,0.392446,0.638058,0.117181,0.183855,0.959147,0.592181,0.0128572,0.0946214,0.0935788,0.99627,0.353433,0.444127,0.746301,0.261502,0.323493,0.566896,0.0630264,0.218058,0.806901,0.0857685,0.0097664,0.0188767,0.862733,0.102695,0.993697,0.93572,0.027459,0.744538,0.709751,0.302001,0.202016,0.375393,0.874833,0.10808,0.698953,0.816909,0.940005,0.113603,0.33375,0.50037,0.0860156,0.159379,0.523922,0.509086,0.27463,0.232451,0.65511,0.65438,0.38228,0.151698,0.121374,0.119602,0.770691,0.080166,0.715563,0.56603,0.621929,0.491351,0.467624,0.935011,0.52603,0.301835,0.756561,0.8382,0.355639,0.914028,0.376644,0.752237,0.359001,0.576643,0.505663,0.24342,0.170428,0.176011,0.236722,0.11105,0.102099,0.124814,0.312846,0.935244,0.855566,0.467017,0.9203,0.0443525,0.610956,0.618976,0.972166,0.236583,0.766525,0.132393,0.286754,0.841198,0.697971,0.621779,0.36906,0.271419,0.670509,0.380061,0.426235,0.933813,0.830962,0.906826,0.813511,0.923476,0.701726,0.801427,0.899009,0.558559,0.606934,0.809307,0.145136,0.41965,0.372304,0.250704,0.0428668,0.797372,0.625817,0.543337,0.367048,0.960109,0.754949,0.968608,0.534657,0.554204,0.234646,0.761525,0.351027,0.492087,0.173738,0.495601,0.986433,0.608718,0.634021,0.857946,0.124923,0.242507,0.488625,0.803562,0.322473,0.712162,0.413423,0.866332,0.0582354,0.440134,0.256361,0.653991,0.989801,0.95542,0.740914,0.0798559,0.74531,0.505558,0.602715,0.648445,0.0190123,0.526258,0.181889,0.100875,0.145793,0.371668,0.211984,0.170494,0.516241,0.982386,0.851584,0.173637,0.971401,0.544825,0.568533,0.208458,0.543142,0.38761,0.241381,0.846478,0.85274,0.687788,0.0558521,0.110922,0.376293,0.641152,0.0898693,0.282559,0.87424,0.544109,0.531126,0.440922,0.953161,0.820921,0.0595521,0.0515478,0.464889,0.808248,0.386338,0.818605,0.262441,0.150386,0.895307,0.892925,0.511175,0.824371,0.168599,0.451984,0.777101,0.815539,0.393256,0.999364,0.398055,0.011573,0.266583,0.711587,0.0668209,0.0407817,0.206204,0.858994,0.959986,0.555207,0.602299,0.886198,0.927834,0.782847,0.51839,0.124511,0.845467,0.460364,0.945061,0.0911506,0.303881,0.720267,0.240101,0.5676,0.995723,0.772003,0.768484,0.136667,0.135413,0.811186,0.805483,0.717586,0.709091,0.0581127,0.886735,0.271787,0.774196,0.7567,0.0618473,0.378145,0.506802,0.414085,0.882474,0.84834,0.0246098,0.793056,0.972789,0.330687,0.48179,0.2347,0.933088,0.078356,0.395646,0.319667,0.813244,0.682942,0.839354,0.745454,0.369409,0.0504643,0.60333,0.711026,0.822065,0.124602,0.267517,0.940148,0.446831,0.829929,0.945984,0.564527,0.948878,0.122823,0.79097,0.639599,0.546314,0.776432,0.379113,0.11292,0.921657,0.491088,0.267289,0.74364,0.209628,0.336172,0.356371,0.307252,0.941673,0.31124,0.52194,0.50097,0.970342,0.42557,0.107114,0.312667,0.711081,0.406791,0.954852,0.117747,0.0173519,0.950938,0.36715,0.213263,0.936476,0.320163,0.779874,0.999058,0.054682,0.57727,0.238911,0.873193,0.687905,0.747718,0.900191,0.439176,0.996935,0.577859,0.766387,0.275112,0.756279,0.954428,0.766294,0.257999,0.0959888,0.0856276,0.368656,0.473261,0.839143,0.324237,0.00778431,0.329147,0.244856,0.568432,0.921809,0.944045,0.678401,0.610382,|0.6045,0.823693,0.00112057,0.0985625,0.338192,0.142632,0.583876,0.352852,0.575823,0.692464,0.286788,0.700357,0.118143,0.952887,0.0901139,0.318897,0.480615,0.00204474,0.615511,0.783941,0.655803,0.533355,0.916282,0.163048,0.0368481,0.557494,0.367109,0.908379,0.260008,0.542303,0.048107,0.77652,0.478459,0.821721,0.732569,0.753938,0.277423,0.385165,0.355965,0.120767,0.124539,0.29955,0.301602,0.13111,0.0911785,0.603186,0.149541,0.987092,0.624307,0.954128,0.130701,0.198322,0.660736,0.510485,0.48956,0.224558,0.671856,0.14887,0.555256,0.0620154,0.0810142,0.815582,0.635009,0.649016,0.529732,0.0326124,0.856422,0.0636188,0.265695,0.175131,0.738157,0.545447,0.618965,0.964389,0.9245,0.289246,0.504817,0.0532697,0.283086,0.997999,0.317113,0.300614,0.516333,0.812462,0.160086,0.576829,0.699915,0.392849,0.147989,0.95182,0.892813,0.835989,0.482369,0.906335,0.261752,0.0460199,0.96126,0.0857314,0.847263,0.759094,0.425143,0.658897,0.596098,0.236052,0.850775,0.0792671,0.777917,0.326468,0.22057,0.0153521,0.974797,0.131814,0.962095,0.121827,0.570615,0.455544,0.871398,0.478808,0.716305,0.909188,0.991236,0.84388,0.931043,0.771671,0.66615,0.0010621,0.678302,0.929776,0.309965,0.565139,0.393556,0.0327648,0.0496067,0.874579,0.324813,0.883595,0.360042,0.173343,0.240266,0.961831,0.910217,0.0406079,0.672649,0.462694,0.488918,0.937905,0.181424,0.383331,0.940881,0.0548059,0.203871,0.442932,0.264951,0.8413,0.354496,0.0634605,0.830742,0.515798,0.117264,0.721871,0.0276017,0.909518,0.699542,0.563745,0.796899,0.18581,0.0119058,0.19412,0.413441,0.351301,0.946175,0.637053,0.36656,0.419735,0.644814,0.122799,0.510683,0.373346,0.653836,0.922099,0.388663,0.672374,0.902795,0.291777,0.202531,0.827572,0.109864,0.375914,0.262106,0.251143,0.914218,0.53207,0.748423,0.00433987,0.930383,0.384508,0.301802,0.902575,0.654953,0.644342,0.304379,0.65299,0.860924,0.86632,0.64051,0.465218,0.845716,0.546938,0.489812,0.246359,0.461924,0.591808,0.56936,0.483261,0.641222,0.463336,0.239771,0.16762,0.850592,0.931542,0.720045,0.177633,0.865344,0.648797,0.876979,0.849965,0.223373,0.911651,0.8212,0.765518,0.0749364,0.568217,0.582246,0.405384,0.512389,0.273563,0.729752,0.28955,0.0588805,0.732643,0.336021,0.306983,0.332587,0.118668,0.539369,0.337344,0.361492,0.186444,0.885379,0.400847,0.486708,0.221032,0.951701,0.536556,0.301458,0.938486,0.865616,0.673883,0.0870301,0.733487,0.0945293,0.483244,0.292275,0.708682,0.900612,0.436819,0.934356,0.990874,0.934195,0.603861,0.937245,0.561854,0.49522,0.438077,0.556151,0.143518,0.911356,0.0140921,0.217795,0.245608,0.07322,0.561607,0.35234,0.565912,0.735151,0.575986,0.670303,0.53219,0.585532,0.464659,0.769306,0.173372,0.0115608,0.620922,0.0617573,0.725204,0.241344,0.769719,0.276318,0.242513,0.0424915,0.734312,0.75033,0.149699,0.966581,0.519787,0.887751,0.703914,0.321938,0.217881,0.765854,0.381475,0.31334,0.265371,0.914292,0.821554,0.0457328,0.783669,0.865748,0.998783,0.740383,0.860634,0.428386,0.96383,0.332694,0.0554267,0.915516,0.464188,0.65433,0.807274,0.8038,0.72181,0.940509,0.734838,0.783821,0.712563,0.357119,0.236646,0.715959,0.328995,0.833305,0.204209,0.203453,0.373473,0.631028,0.653168,0.0169739,0.0682604,0.670658,0.782489,0.392087,0.899494,0.273945,0.866286,0.837248,0.969113,0.865196,0.275103,0.125284,0.255826,0.180902,0.437734,0.476968,0.158221,0.522897,0.776774,0.861643,0.644956,0.0238675,0.354179,0.328267,0.748473,0.341495,0.410743,0.447765,0.476363,0.516102,0.599681,0.402783,0.263788,0.713836,0.116522,0.911956,0.586714,0.884686,0.684398,0.256098,0.0158094,0.967454,0.0318397,0.788886,0.977533,0.742063,0.172203,0.364152,0.302829,0.98463,0.0558304,0.774945,0.898475,0.932194,0.748924,0.0352786,0.802909,0.330791,0.241871,0.681634,0.0882599,0.82456,0.81139,0.718521,0.537009,0.696827,0.602027,0.0989127,0.405299,0.0913505,0.116657,0.854074,0.939957,0.189042,0.454185,0.425765,0.422409,0.418102,0.228752,0.477867,0.407001,0.828932,0.85471,0.162306,0.169869,0.436822,0.170718,0.849879,0.837671,0.694934,0.101594,0.578929,0.200426,0.499674,0.23008,0.495516,0.481666,0.360338,0.465834,0.119304,0.120965,0.118561,0.567162,0.775442,0.803828,0.365085,0.121474,0.050859,0.454558,0.0388532,0.0945766,0.709271,0.0072456,0.5365,0.923867,0.215623,0.358434,0.74661,0.397295,0.476482,0.8798,0.663773,0.860565,0.381553,0.574515,0.0811149,0.919238,0.787314,0.804137,0.163831,0.927687,0.907251,0.134727,0.307425,0.721937,0.577984,0.0752607,0.270744,0.0305582,0.264541,0.347702,0.558276,0.843998,0.840487,0.984379,0.441419,0.0950601,0.126156,0.990388,0.950523,0.82461,0.714656,0.318032,0.396813,0.121542,0.325268,0.277454,0.884688,0.412542,0.879416,0.28765,0.782265,0.857286,0.288742,0.621507,0.584194,0.235816,0.633463,0.731301,0.129115,0.644713,0.592087,0.810537,0.969388,0.861033,0.299935,0.0477798,0.904302,0.0380927,0.998808,0.0698605,0.367294,0.452905,0.904486,0.461077,0.859548,0.666456,0.148317,0.277608,0.153466,0.331644,0.917113,0.74207,0.7391,0.632109,0.150001,0.543201,0.949089,0.21847,0.0362662,0.806857,0.374441,0.600091,0.30608,0.772207,0.237707,0.298496,0.439285,0.340433,0.0808009,0.359086,0.411212,0.199797,0.569605,0.477425,0.660835,0.827195,0.92873,0.355487,0.191891,0.393289,0.9561,0.355856,0.44842,0.0130385,0.0078094,0.443773,0.931114,0.841388,0.846732,0.780264,0.93563,0.826953,0.946149,0.87599,0.133046,0.837986,0.711555,0.930758,0.689403,0.863506,0.314768,0.291629,0.275269,0.591645,0.148505,0.427651,0.922502,0.993814,0.189257,0.993179,0.342346,0.914355,0.194997,0.43103,0.509948,0.389213,0.0243907,0.0262723,0.554329,0.30875,0.51805,0.909383,0.0472958,0.41738,0.795302,0.768951,0.986369,0.817555,0.744584,0.963948,0.882674,0.343057,0.376305,0.847443,0.00808239,0.0631903,0.47803,0.591044,0.795032,0.0780994,0.587482,0.108518,0.571839,0.97984,0.850533,0.0913629,0.780794,0.328558,0.215802,0.764854,0.178411,0.174218,0.206184,0.755596,0.510616,0.230446,0.538176,0.0961493,0.678289,0.214554,0.0138047,0.776456,0.316572,0.0127138,0.508633,0.616899,0.52652,0.900471,0.20314,0.572838,0.577618,0.461976,0.683423,0.443936,0.268489,0.661312,0.641802,0.343097,0.681679,0.262543,0.297004,0.456124,0.7681,0.033151,0.444681,0.0500837,0.220875,0.67943,0.590441,0.19389,0.982676,0.459652,0.689807,0.511569,0.192803,0.977901,0.190144,0.127806,0.333044,0.212308,0.885958,0.761337,0.458944,0.215768,0.367853,0.943664,0.0116172,0.666853,0.844187,0.828263,0.976874,0.272216,0.423854,0.97997,0.475049,0.972164,0.924965,0.479827,0.0811356,0.520886,0.987847,0.172762,0.884182,0.956184,0.889051,0.0359662,0.838644,0.579367,0.501253,0.686518,0.118842,0.563905,0.967295,0.567084,0.881748,0.768021,0.789507,0.760125,0.372844,0.64868,0.38064,0.561027,0.370189,0.160978,0.052147,0.927704,0.976315,0.838479,0.873847,0.615401,0.0389035,0.604827,0.500089,0.834697,0.126087,0.0022707,0.861207,0.432059,0.593418,0.704552,0.0481048,0.393917,0.261262,0.333823,0.593338,0.421384,0.815438,0.196296,0.957352,0.81628,0.344589,0.283054,0.919213,0.741047,0.436342,0.795069,0.360241,0.223898,0.843525,0.143014,0.486319,0.506051,0.0729393,0.264139,0.493263,0.825374,0.842988,0.792141,0.097942,0.471032,0.743066,0.731516,0.738453,0.3192,0.414946,0.223279,0.465955,0.365819,0.0235237,0.715027,0.760847,0.829647,0.912167,0.32784,0.136233,0.417691,0.80673,0.805985,0.803407,0.134996,0.472531,0.6011,0.532539,0.0742229,0.613113,0.203217,0.146728,0.416094,0.894982,0.294169,0.907522,0.97101,0.214149,0.438211,0.322242,0.523207,0.772229,0.30244,0.738358,0.0827416,0.410431,0.486789,0.116427,0.794359,0.700907,0.737022,0.693984,0.111026,0.764727,0.291388,0.556797,0.851934,0.945343,0.333371,0.670096,0.996062,0.598355,0.298682,0.311232,0.313539,0.527489,0.261133,0.734536,0.65779,0.0338887,0.0122463,0.322966,0.417373,0.70294,0.841467,0.99233,0.352228,0.434588,0.0313537,0.750974,0.294753,0.278762,0.977956,0.331181,0.522815,0.310938,0.0976234,0.131092,0.0317196,0.767358,0.421155,0.417257,0.0891702,0.376872,0.583669,0.529395,0.924404,0.455509,0.46991,0.67692,0.15547,0.8825,0.102046,0.295998,0.296453,0.947863,0.107381,0.187648,0.318619,0.526245,0.395542,0.589216,0.0058732,0.46703,0.18237,0.133325,0.477809,0.888717,0.9597,0.0341195,0.537998,0.578204,0.320733,0.497942,0.256313,0.254235,0.366397,0.25342,0.184665,0.85009,0.854541,0.338,0.908274,0.012233,0.773727,0.170735,0.821506,0.723431,0.296391,0.872502,0.840156,0.791682,0.713005,0.651629,0.0854405,0.887946,0.655613,0.555238,0.186907,0.600302,0.829474,0.42939,0.747104,0.481932,0.273411,0.603036,0.0554035,0.228596,0.406296,0.995117,0.404845,0.834886,0.804861,0.511202,0.379321,0.943543,0.590418,0.953346,0.314903,0.20118,0.555805,0.347947,0.629509,0.620522,0.101245,0.738462,0.831905,0.348201,0.584036,0.672833,0.480153,0.0353099,0.208277,0.247449,0.0128157,0.0956652,0.6508,0.597228,0.976193,0.331049,0.712095,0.648485,0.518037,0.247114,0.0552063,0.348715,0.0216459,0.489804,0.164869,0.73514,0.846513,0.1468,0.504299,0.197101,0.276154,0.194511,0.0874853,0.843894,0.658852,0.549015,0.960162,0.251454,0.832097,0.336889,0.726086,0.210756,0.150505,0.501707,0.0358376,0.653734,0.0375451,0.14009,0.50368,0.135371,0.0385243,0.113887,0.6272,|0.115338,0.1178,0.0691789,0.479809,0.236164,0.133833,0.823335,0.0640102,0.574661,0.478916,0.621417,0.333206,0.850658,0.476145,0.540969,0.954442,0.436918,0.750761,0.465595,0.866526,0.176497,0.117145,0.776555,0.745313,0.984927,0.715837,0.114058,0.788273,0.375255,0.472405,0.530291,0.417335,0.235615,0.877117,0.200672,0.110305,0.859812,0.320085,0.501843,0.198369,0.500409,0.667129,0.643653,0.520943,0.838047,0.685774,0.828007,0.452695,0.31093,0.770916,0.25698,0.192083,0.99958,0.191073,0.949203,0.305807,0.713583,0.129836,0.220427,0.330151,0.122069,0.813303,0.259659,0.55008,0.462106,0.128352,0.70309,0.14234,0.308494,0.507086,0.68786,0.716213,0.813468,0.00540435,0.527528,0.599287,0.329002,0.0214292,0.141099,0.0846197,0.769284,0.835821,0.0803001,0.538622,0.880259,0.226256,0.364637,0.595537,0.219507,0.873314,0.583229,0.78185,0.24473,0.233332,0.253022,0.264264,0.867687,0.404073,0.329662,0.0143528,0.0637054,0.599473,0.964002,0.465286,0.213208,0.354692,0.206334,0.641119,0.378217,0.90118,0.708295,0.757584,0.892142,0.117238,0.256502,0.941915,0.833561,0.371642,0.282899,0.31501,0.997538,0.776466,0.0741401,0.481458,0.307912,0.351785,0.662582,0.117224,0.423029,0.227618,0.624329,0.808025,0.863285,0.253587,0.126779,0.266133,0.789545,0.878779,0.086798,0.555513,0.164491,0.700949,0.899672,0.0087387,0.188697,0.151299,0.847858,0.333557,0.741578,0.660959,0.475639,0.39321,0.257218,0.647056,0.0858576,0.707953,0.0818199,0.168012,0.399311,0.179416,0.10645,0.9517,0.426239,0.213087,0.022692,0.641599,0.565125,0.253237,0.712037,0.0370584,0.526452,0.252173,0.457749,0.101867,0.5381,0.819938,0.186305,0.97869,0.959191,0.0381856,0.719187,0.41449,0.200038,0.856594,0.137578,0.324212,0.784329,0.0695279,0.630063,0.75752,0.334135,0.785632,0.501869,0.534603,0.74855,0.457862,0.698713,0.793199,0.828437,0.923149,0.56891,0.227108,0.284882,0.451253,0.844409,0.28834,0.63261,0.124436,0.511014,0.39491,0.251281,0.877163,0.0771319,0.475088,0.187364,0.875106,0.590333,0.481722,0.569975,0.76562,0.954906,0.376304,0.41491,0.564997,0.384963,0.253299,0.564841,0.522423,0.783986,0.882288,0.0341213,0.591469,0.0277465,0.0311816,0.901608,0.422931,0.205126,0.591779,0.981674,0.875248,0.873635,0.60411,0.807191,0.172696,0.623417,0.853591,0.439924,0.709311,0.831428,0.96113,0.120824,0.0596638,0.694196,0.607264,0.480584,0.932089,0.841181,0.717369,0.275326,0.720665,0.798824,0.389345,0.537431,0.431528,0.642182,0.150753,0.785238,0.809331,0.426953,0.688787,0.545078,0.194239,0.896959,0.523407,0.301657,0.545238,0.191657,0.129685,0.812175,0.0963411,0.21179,0.0337638,0.457686,0.127361,0.154085,0.10177,0.0195427,0.558459,0.712302,0.81973,0.628798,0.155969,0.378532,0.0547259,0.994767,0.111055,0.750784,0.892355,0.0960764,0.165657,0.586006,0.302271,0.431797,0.916825,0.307063,0.439483,0.272096,0.245412,0.190973,0.8477,0.682493,0.161717,0.201578,0.9133,0.0185665,0.602533,0.601438,0.617676,0.496871,0.235614,0.230836,0.767327,0.513018,0.21408,0.225954,0.295963,0.893109,0.424546,0.536882,0.803764,0.831678,0.74636,0.164574,0.850056,0.864937,0.54157,0.052689,0.341498,0.147396,0.860446,0.376005,0.620508,0.667194,0.0957291,0.44331,0.0440084,0.92879,0.353848,0.67529,0.491915,0.594853,0.105917,0.782578,0.290413,0.51745,0.31092,0.100412,0.589715,0.877209,0.699666,0.527971,0.418062,0.679412,0.156512,0.0698452,0.182128,0.4672,0.716976,0.145602,0.135786,0.998586,0.709798,0.81179,0.433828,0.28718,0.230905,0.353746,0.252485,0.623627,0.704735,0.0164363,0.464224,0.434095,0.695072,0.771002,0.778914,0.525499,0.026465,0.690221,0.0585028,0.0107138,0.00990754,0.254747,0.848877,0.682007,0.652311,0.755776,0.85327,0.356119,0.486235,0.24128,0.690386,0.645939,0.45871,0.69777,0.757462,0.464167,0.295017,0.864368,0.0177456,0.0874361,0.0979361,0.285718,0.469175,0.61594,0.989299,0.247034,0.864858,0.940629,0.134603,0.568213,0.259134,0.758451,0.237957,0.852323,0.744307,0.253487,0.279971,0.689169,0.480371,0.529247,0.462801,0.997303,0.88143,0.0864075,0.957709,0.725226,0.239927,0.856859,0.843998,0.778739,0.734717,0.055587,0.75567,0.523605,0.351533,0.0452884,0.293543,0.513283,0.294451,0.266294,0.423638,0.0737811,0.924555,0.533882,0.996472,0.904454,0.311733,0.0110932,0.668502,0.305539,0.267038,0.972257,0.780463,0.350409,0.280124,0.33094,0.53216,0.0310398,0.817904,0.660568,0.0742502,0.135011,0.58326,0.269064,0.635009,0.676513,0.0238547,0.33722,0.635823,0.198312,0.571973,0.0308055,0.766954,0.230363,0.968554,0.505179,0.174348,0.531041,0.738453,0.0126632,0.976938,0.545495,0.132225,0.511548,0.184934,0.2089,0.826598,0.269644,0.409564,0.258837,0.6741,0.0409602,0.357059,0.871881,0.279225,0.243296,0.910994,0.803615,0.0792786,0.950535,0.798609,0.976695,0.258643,0.547457,0.838725,0.396084,0.287768,0.655741,0.0534496,0.530283,0.846386,0.199333,0.636499,0.968979,0.615768,0.507599,0.546406,0.879345,0.386352,0.463804,0.106617,0.81412,0.315807,0.138577,0.946121,0.85761,0.647486,0.149544,0.11414,0.588369,0.179981,0.680535,0.534042,0.558987,0.954501,0.365327,0.573965,0.280586,0.749237,0.203122,0.402796,0.863114,0.218925,0.463698,0.275338,0.184322,0.767056,0.791309,0.180215,0.322686,0.596479,0.70295,0.405834,0.797177,0.459087,0.254844,0.372232,0.657367,0.931839,0.0281032,0.441567,0.148823,0.104637,0.949128,0.463045,0.78937,0.415378,0.140001,0.310414,0.957725,0.539691,0.383071,0.884207,0.496175,0.892328,0.247092,0.608283,0.416854,0.82411,0.952003,0.984498,0.726297,0.407237,0.204728,0.316917,0.335008,0.725608,0.0751966,0.298222,0.855967,0.235962,0.612857,0.806954,0.58427,0.0686784,0.646683,0.171314,0.206065,0.00479645,0.317721,0.80826,0.603787,0.790943,0.0672637,0.123289,0.898796,0.215056,0.171544,0.544101,0.102284,0.572157,0.621148,0.162005,0.00942218,0.882061,0.505437,0.516459,0.269516,0.915269,0.706833,0.845735,0.245974,0.554507,0.532884,0.752762,0.00771207,0.0391368,0.763546,0.457054,0.142843,0.636237,0.618766,0.761352,0.838216,0.0700663,0.631015,0.0563838,0.688241,0.935327,0.611697,0.77263,0.503764,0.464316,0.469535,0.763493,0.341899,0.186174,0.719408,0.0109134,0.720794,0.666089,0.0320726,0.0192003,0.351171,0.612513,0.705537,0.800128,0.306124,0.0332116,0.0904773,0.476359,0.834309,0.280064,0.279964,0.198654,0.911204,0.583371,0.84463,0.501451,0.424181,0.0658981,0.602201,0.711391,0.445099,0.474611,0.775623,0.481034,0.0761082,0.873443,0.563908,0.98206,0.449709,0.395315,0.624651,0.714692,0.0750911,0.98525,0.398179,0.0904615,0.912587,0.973756,0.562709,0.196963,0.718019,0.263224,0.902766,0.324244,0.321757,0.836681,0.530914,0.768691,0.502231,0.921355,0.542774,0.509532,0.678449,0.115002,0.320961,0.976989,0.938894,0.470141,0.712691,0.726489,0.509245,0.508392,0.480619,0.944275,0.822929,0.950359,0.785994,0.517857,0.646201,0.717976,0.701428,0.503337,0.0438099,0.0768491,0.103215,0.239788,0.735261,0.570132,0.471362,0.695937,0.0958495,0.590754,0.88612,0.767576,0.965182,0.710108,0.694929,0.985414,0.37426,0.615254,0.779719,0.41957,0.978027,0.0497423,0.0822868,0.119153,0.734307,0.0455476,0.751731,0.76112,0.81685,0.575708,0.783215,0.369621,0.263708,0.901377,0.7787,0.146922,0.52721,0.232434,0.778197,0.432855,0.757118,0.902692,0.741622,0.427001,0.0711898,0.308643,0.837154,0.599024,0.673815,0.900012,0.0691999,0.485694,0.955497,0.123801,0.51119,0.127797,0.224474,0.0687665,0.112172,0.926227,0.953722,0.664729,0.905195,0.149408,0.929275,0.527355,0.0284215,0.464478,0.573048,0.71732,0.948714,0.289174,0.485058,0.192804,0.39645,0.316511,0.253243,0.0380735,0.131741,0.495911,0.202834,0.714087,0.449281,0.545374,0.771747,0.4272,0.578467,0.699028,0.982244,0.518178,0.615583,0.321007,0.752902,0.380778,0.225982,0.434969,0.211144,0.317169,0.031554,0.132217,0.690286,0.36125,0.625609,0.928824,0.759877,0.579708,0.304322,0.698872,0.88172,0.371093,0.831221,0.311874,0.659121,0.247143,0.729865,0.266104,0.172893,0.684903,0.913531,0.100205,0.333317,0.0360528,0.247921,0.637355,0.183512,0.614171,0.618358,0.564054,0.652011,0.121299,0.455162,0.669585,0.287385,0.227093,0.74643,0.824718,0.472959,0.687417,0.666311,0.271077,0.906154,0.785574,0.632643,0.922579,0.974753,0.283583,0.473088,0.928988,0.887362,0.86888,0.773648,0.650182,0.404506,0.209128,0.9988,0.838453,0.298794,0.108377,0.175952,0.442642,0.037554,0.119926,0.623815,0.28152,0.552157,0.679161,0.494667,0.252391,0.270203,0.129943,0.0370581,0.874643,0.350834,0.290203,0.266537,0.480999,0.754773,0.867583,0.990956,0.585188,0.265988,0.392695,0.862004,0.874014,0.862285,0.310387,0.0565843,0.552412,0.484324,0.238111,0.728697,0.837468,0.251304,0.240959,0.707307,0.951673,0.738166,0.151744,0.811771,0.597401,0.397434,0.161706,0.119491,0.367451,0.876369,0.681829,0.16408,0.268016,0.853045,0.806528,0.695023,0.256492,0.446603,0.264759,0.73588,0.870362,0.00623941,0.338403,0.710959,0.299175,0.888297,0.652205,0.111547,0.734259,0.360717,0.291292,0.74874,0.852886,0.60085,0.317823,0.414086,0.988003,0.987029,0.55244,0.825822,0.692803,0.0349079,0.312743,0.994065,0.77906,0.00815302,0.136742,0.998202,0.831345,0.17491,0.283211,0.471642,0.878249,0.25357,0.32065,0.067474,0.740388,0.419563,0.948912,0.915839,0.618969,0.573611,0.420452,0.744826,0.93472,0.387277,0.474047,0.0885665,0.111465,|0.77351,0.427091,0.581193,0.568455,0.381465,0.539121,0.00177747,0.235277,0.314658,0.298858,0.24565,0.58672,0.449442,0.332479,0.561107,0.680125,0.240709,0.464274,0.921383,0.450195,0.0325107,0.403152,0.538841,0.770784,0.0635194,0.250323,0.59144,0.98788,0.153219,0.698961,0.468399,0.274513,0.0339109,0.0131868,0.0484965,0.37922,0.0727348,0.132129,0.529686,0.867968,0.741309,0.893161,0.530962,0.786788,0.378007,0.182438,0.507076,0.0898363,0.648596,0.132832,0.910252,0.330555,0.425729,0.119224,0.158017,0.650148,0.352053,0.381059,0.225389,0.186496,0.772553,0.472414,0.335788,0.468002,0.817546,0.467038,0.0144593,0.245147,0.614667,0.998415,0.548998,0.466116,0.851029,0.0163099,0.649117,0.352562,0.00195217,0.60978,0.29125,0.460387,0.172585,0.977169,0.528678,0.0596431,0.787061,0.431009,0.20738,0.670038,0.469589,0.500334,0.692495,0.254945,0.460052,0.551896,0.55836,0.638289,0.480592,0.0814995,0.792084,0.892991,0.396522,0.074107,0.882439,0.962851,0.672083,0.171856,0.117047,0.33238,0.0154938,0.281961,0.250157,0.594373,0.152862,0.448287,0.83473,0.355639,0.368527,0.182656,0.440116,0.169722,0.0131061,0.43736,0.572299,0.742727,0.668537,0.360567,0.881216,0.337929,0.243142,0.254812,0.0401918,0.774688,0.253916,0.580483,0.667171,0.894566,0.710942,0.523964,0.991007,0.372337,0.189015,0.161717,0.518281,0.461076,0.158698,0.865182,0.0735536,0.728971,0.302521,0.70242,0.800924,0.187776,0.168156,0.100094,0.0787441,0.109149,0.0289413,0.127013,0.507177,0.759585,0.939631,0.74283,0.15512,0.887138,0.321057,0.756357,0.568986,0.465944,0.422111,0.251271,0.00513268,0.752499,0.00625944,0.471283,0.800424,0.616987,0.4604,0.164289,0.381994,0.175036,0.579624,0.740705,0.704689,0.193736,0.551446,0.526133,0.841082,0.397179,0.465942,0.662353,0.690582,0.661183,0.695626,0.165135,0.996139,0.086992,0.190366,0.757069,0.759854,0.179497,0.355876,0.662699,0.899669,0.0796626,0.692299,0.9369,0.172572,0.36842,0.114588,0.0225987,0.183922,0.289923,0.534991,0.74929,0.224933,0.787831,0.861329,0.751828,0.445306,0.122931,0.245868,0.845867,0.289696,0.724204,0.944188,0.518456,0.020934,0.874502,0.268164,0.192654,0.869625,0.685842,0.956919,0.6212,0.0627141,0.721986,0.814381,0.740308,0.16351,0.894143,0.715046,0.16178,0.434319,0.192709,0.0479342,0.568307,0.219204,0.82056,0.274328,0.969764,0.244836,0.83508,0.209395,0.842178,0.535605,0.832445,0.214344,0.656329,0.39975,0.20527,0.325186,0.00554538,0.179905,0.532457,0.325312,0.770836,0.729965,0.57861,0.165794,0.49546,0.531092,0.236834,0.842933,0.838387,0.278975,0.248824,0.238647,0.27693,0.985479,0.508578,0.663172,0.0682579,0.886475,0.754767,0.0018875,0.64004,0.736648,0.993441,0.511088,0.0939994,0.704111,0.0744129,0.20461,0.645662,0.217239,0.301613,0.0685136,0.429842,0.273784,0.729555,0.406192,0.757143,0.78219,0.180025,0.0394262,0.0900034,0.16551,0.00889587,0.963486,0.683,0.460197,0.135636,0.752755,0.107657,0.586315,0.107732,0.252765,0.250663,0.260832,0.65317,0.828179,0.0989837,0.16136,0.550436,0.474299,0.916684,0.763702,0.726161,0.159447,0.538626,0.471562,0.303792,0.458909,0.89405,0.635245,0.0164914,0.528288,0.00683314,0.389773,0.528724,0.65739,0.567833,0.947399,0.202496,0.931428,0.58327,0.795653,0.202128,0.16464,0.712265,0.370124,0.34275,0.0624307,0.151704,0.89466,0.638722,0.478121,0.993719,0.504156,0.985183,0.2121,0.527061,0.552792,0.688324,0.1093,0.761935,0.402594,0.550134,0.670868,0.52484,0.0624876,0.826353,0.161999,0.389994,0.946302,0.0438898,0.115109,0.274004,0.229396,0.603602,0.601348,0.762175,0.249725,0.668816,0.836636,0.0258099,0.897395,0.508746,0.18237,0.777231,0.493831,0.946717,0.648816,0.812744,0.575002,0.0593532,0.186814,0.200822,0.326159,0.41884,0.644208,0.63695,0.887747,0.295606,0.578118,0.372224,0.562976,0.597694,0.331269,0.139429,0.277176,0.413678,0.245453,0.533571,0.738436,0.261313,0.152838,0.655564,0.295194,0.786546,0.947418,0.728083,0.0996063,0.271642,0.454844,0.346445,0.253918,0.157566,0.0134691,0.723446,0.64887,0.525495,0.212996,0.596733,0.563169,0.838021,0.77281,0.114891,0.221641,0.024237,0.539239,0.0370761,0.706681,0.631172,0.83455,0.9735,0.0472035,0.882576,0.417105,0.286824,0.368619,0.9898,0.799214,0.541652,0.760032,0.435287,0.670154,0.229295,0.25124,0.605763,0.854261,0.742808,0.308746,0.071858,0.39796,0.292167,0.964817,0.126948,0.0622484,0.484575,0.812196,0.733402,0.609558,0.111541,0.87052,0.680128,0.584715,0.419673,0.745958,0.661584,0.895105,0.662947,0.193728,0.116176,0.312003,0.440629,0.932835,0.663648,0.483881,0.822234,0.360892,0.107004,0.185183,0.591995,0.46287,0.79159,0.427347,0.535532,0.569853,0.941251,0.762622,0.747083,0.618823,0.206935,0.555543,0.792655,0.909729,0.253314,0.0528897,0.429965,0.208944,0.960203,0.0446194,0.644857,0.790285,0.688877,0.675834,0.376492,0.687099,0.837832,0.30686,0.999106,0.38736,0.758602,0.468451,0.711291,0.917537,0.774412,0.02244,0.559799,0.669567,0.941888,0.434538,0.176128,0.932764,0.701194,0.335823,0.403217,0.242053,0.853994,0.510334,0.0874661,0.0779128,0.120671,0.522258,0.627451,0.634881,0.668811,0.730102,0.203416,0.487609,0.725613,0.703103,0.946304,0.981789,0.453785,0.0193408,0.189743,0.172953,0.0506892,0.180594,0.0324656,0.210566,0.851699,0.572134,0.553057,0.0722783,0.470517,0.613637,0.115731,0.784077,0.98503,0.476501,0.433286,0.141995,0.226317,0.289491,0.323509,0.293709,0.206114,0.550779,0.618468,0.654441,0.504667,0.302383,0.0980139,0.564527,0.797736,0.861545,0.461098,0.241004,0.400744,0.189256,0.412828,0.433197,0.776786,0.322771,0.708252,0.911449,0.467502,0.776037,0.250541,0.44651,0.527543,0.572378,0.756722,0.950742,0.145376,0.51665,0.313987,0.766346,0.288172,0.727109,0.420918,0.79282,0.403449,0.0553524,0.504255,0.56634,0.578539,0.563153,0.48572,0.0506455,0.534252,0.885647,0.0302723,0.574464,0.319671,0.255354,0.202271,0.578321,0.718756,0.194753,0.936297,0.951809,0.427189,0.922875,0.431493,0.123213,0.934863,0.874772,0.133004,0.723531,0.0654629,0.806154,0.659557,0.315534,0.292342,0.708584,0.352997,0.183548,0.351336,0.933251,0.57562,0.277684,0.945352,0.0986384,0.0216306,0.286974,0.7262,0.62579,0.532922,0.0424627,0.20009,0.993214,0.751104,0.851235,0.204047,0.934373,0.742056,0.567674,0.739564,0.394794,0.851078,0.463212,0.527564,0.696102,0.00575018,0.247367,0.832946,0.465504,0.0710902,0.443985,0.00544995,0.826878,0.930238,0.0377231,0.25659,0.1484,0.0913273,0.758128,0.995259,0.888634,0.152709,0.228406,0.213341,0.543008,0.532792,0.754079,0.515905,0.758731,0.697332,0.843802,0.833423,0.197379,0.579434,0.791521,0.761453,0.578831,0.351904,0.109685,0.84257,0.540422,0.212195,0.990778,0.945883,0.0742206,0.28175,0.350067,0.488248,0.589676,0.632681,0.758394,0.685837,0.811706,0.731506,0.431304,0.0728834,0.813467,0.48804,0.0650094,0.203843,0.0740464,0.400768,0.320243,0.827046,0.384188,0.513384,0.282388,0.831614,0.0648737,0.476849,0.439913,0.175583,0.846838,0.439034,0.0741289,0.999467,0.51016,0.0232089,0.763681,0.162268,0.86921,0.133891,0.789176,0.349063,0.741961,0.373257,0.643865,0.769271,0.864941,0.763141,0.916284,0.358957,0.144893,0.660433,0.0303397,0.298035,0.581734,0.199523,0.77285,0.639122,0.0149416,0.841189,0.675259,0.432968,0.115847,0.512413,0.618773,0.873117,0.784925,0.0173593,0.90034,0.711809,0.919356,0.940046,0.933544,0.364949,0.605471,0.857554,0.095929,0.028534,0.740163,0.565487,0.817245,0.864812,0.259996,0.579968,0.47377,0.0126558,0.204143,0.249462,0.64517,0.191035,0.594378,0.699405,0.24272,0.982194,0.177649,0.0746962,0.320453,0.771124,0.914481,0.0167791,0.626555,0.446222,0.804034,0.0833629,0.921028,0.760122,0.663064,0.789317,0.66407,0.491782,0.76755,0.12075,0.515922,0.807859,0.552262,0.626948,0.715726,0.795812,0.930296,0.61725,0.979567,0.70787,0.62975,0.459987,0.163918,0.700392,0.510315,0.634613,0.523494,0.214131,0.177809,0.758451,0.400372,0.371878,0.68965,0.667665,0.509506,0.530072,0.658545,0.373303,0.0574852,0.733069,0.820886,0.0603234,0.695416,0.240442,0.0989562,0.439598,0.619742,0.127942,0.614103,0.106588,0.0497279,0.414474,0.337922,0.995399,0.710933,0.280382,0.786334,0.210238,0.36251,0.396833,0.4786,0.881691,0.0221894,0.275611,0.233183,0.64179,0.876682,0.730597,0.554399,0.528219,0.0855901,0.555832,0.387655,0.859195,0.473013,0.941587,0.857807,0.290253,0.466873,0.319032,0.680939,0.328402,0.546276,0.644094,0.60266,0.785869,0.491293,0.966535,0.69154,0.792313,0.532455,0.339025,0.163555,0.69859,0.834345,0.129164,0.459384,0.975169,0.031894,0.854201,0.183205,0.300957,0.369966,0.84738,0.64082,0.821854,0.570373,0.719064,0.345976,0.44693,0.081522,0.319832,0.602476,0.589046,0.246772,0.975706,0.631454,0.395375,0.478172,0.434215,0.657048,0.339966,0.0233457,0.247768,0.0771461,0.630185,0.918654,0.517101,0.554445,0.0687975,0.515634,0.976847,0.328774,0.978099,0.428013,0.280308,0.213867,0.682574,0.742128,0.768191,0.0918706,0.679442,0.197261,0.104185,0.922486,0.848574,0.551636,0.223252,0.793536,0.560591,0.412241,0.525217,0.432712,0.439391,0.0863995,0.592423,0.00697821,0.96477,0.097279,0.94611,0.989925,0.328213,0.93501,0.820967,0.733323,0.537913,0.274021,0.842424,0.279552,0.617764,0.113521,0.471687,0.283681,0.00207847,0.535853,0.204348,0.841636,0.508168,0.332049,0.0342463,0.34661,0.246966,0.00267518,0.850936,|0.30733,0.313508,0.371923,0.480833,0.369146,0.311465,0.740583,0.239079,0.00391507,0.29187,0.377678,0.940324,0.364141,0.308409,0.884824,0.62246,0.0493209,0.365561,0.120114,0.961453,0.936407,0.137677,0.96731,0.433243,0.500978,0.0452386,0.948142,0.140011,0.840887,0.097455,0.540596,0.428245,0.0993507,0.962816,0.933755,0.620026,0.290793,0.599832,0.973726,0.704124,0.746877,0.798162,0.651095,0.895785,0.970072,0.765731,0.668832,0.814592,0.942743,0.451123,0.395314,0.10463,0.62945,0.271156,0.948231,0.285756,0.958764,0.0142078,0.0604327,0.161058,0.653445,0.691819,0.414067,0.753945,0.87426,0.0333626,0.434512,0.643509,0.353086,0.389966,0.610511,0.470769,0.857954,0.649548,0.418958,0.632781,0.930869,0.871696,0.858854,0.0816768,0.835899,0.426054,0.141403,0.118001,0.33186,0.383193,0.0252839,0.304442,0.697885,0.994493,0.234314,0.495912,0.377222,0.633174,0.544353,0.624369,0.380211,0.959718,0.198162,0.783828,0.929885,0.948275,0.378622,0.312935,0.524351,0.64448,0.283989,0.979927,0.632579,0.0314492,0.817085,0.921631,0.952687,0.303853,0.127615,0.103284,0.88732,0.389047,0.233928,0.071813,0.915384,0.977244,0.36808,0.634403,0.291389,0.494633,0.207962,0.00536412,0.558127,0.565998,0.113349,0.433475,0.21785,0.945462,0.273762,0.723657,0.450158,0.0834646,0.422519,0.750592,0.203354,0.795474,0.935978,0.89875,0.449197,0.573675,0.285881,0.518481,0.374459,0.195613,0.291333,0.691546,0.0952175,0.958869,0.948018,0.0172899,0.826117,0.747643,0.0858066,0.723704,0.0030033,0.884078,0.809796,0.621138,0.284857,0.716895,0.158566,0.767744,0.339646,0.242875,0.564505,0.534738,0.639951,0.0584354,0.303868,0.72125,0.34614,0.0052352,0.711045,0.237905,0.425596,0.296665,0.56546,0.571816,0.572627,0.868214,0.153165,0.0276616,0.659948,0.499916,0.625514,0.479471,0.414732,0.282507,0.594537,0.997449,0.0325335,0.272816,0.0378451,0.994468,0.35013,0.455085,0.846152,0.0732061,0.240219,0.834196,0.861709,0.276719,0.137148,0.381315,0.404602,0.278971,0.534317,0.475025,0.854093,0.497112,0.808529,0.479332,0.286312,0.048721,0.556869,0.753415,0.116962,0.318941,0.614367,0.568556,0.211246,0.635582,0.424921,0.779854,0.200335,0.735474,0.985156,0.408494,0.0483456,0.545772,0.39131,0.143063,0.100189,0.78875,0.276305,0.645705,0.0521841,0.613471,0.640212,0.90668,0.05594,0.62117,0.320259,0.212356,0.701828,0.107983,0.319328,0.935354,0.654847,0.199987,0.445458,0.336498,0.324705,0.826791,0.328246,0.0936185,0.293405,0.599587,0.297864,0.231433,0.168863,0.16705,0.16094,0.103077,0.0431194,0.12663,0.0654031,0.351196,0.858641,0.224237,0.912098,0.321156,0.938956,0.148509,0.360793,0.154436,0.243566,0.448116,0.410319,0.246255,0.592741,0.752703,0.904142,0.407432,0.463453,0.582175,0.670717,0.421693,0.122255,0.0895812,0.91313,0.963379,0.0427791,0.64998,0.736058,0.0570937,0.135725,0.913534,0.540605,0.106757,0.702654,0.912834,0.105028,0.574335,0.70679,0.0145336,0.692708,0.951106,0.273081,0.574992,0.822856,0.314388,0.177177,0.138866,0.527598,0.313627,0.108438,0.251083,0.841127,0.928502,0.685499,0.378868,0.334559,0.3565,0.628872,0.795107,0.342133,0.409937,0.426414,0.817752,0.377318,0.423581,0.740151,0.818547,0.239274,0.756462,0.890785,0.156618,0.295099,0.743052,0.0809627,0.13648,0.393719,0.332464,0.577,0.594427,0.472399,0.998277,0.544624,0.399597,0.767469,0.380596,0.353774,0.940722,0.431205,0.286561,0.0430163,0.438464,0.725042,0.668051,0.15339,0.517822,0.529128,0.717047,0.26871,0.306867,0.542588,0.399052,0.272234,0.298885,0.910606,0.940232,0.00773174,0.293591,0.20186,0.959982,0.784345,0.689759,0.103966,0.888484,0.596049,0.362764,0.576313,0.0332024,0.554925,0.467711,0.0791577,0.17714,0.679249,0.585368,0.298414,0.660417,0.0340062,0.166263,0.121144,0.893431,0.581329,0.742663,0.970759,0.112892,0.907638,0.48698,0.333497,0.330179,0.157498,0.562384,0.658695,0.150585,0.616603,0.154727,0.0755857,0.212745,0.594687,0.496615,0.740629,0.109353,0.423611,0.354917,0.511853,0.42123,0.0797778,0.884777,0.652986,0.855083,0.953557,0.563318,0.50405,0.614055,0.373424,0.370778,0.235042,0.587168,0.259733,0.363655,0.475775,0.716015,0.472193,0.503119,0.010262,0.0197142,0.480238,0.767788,0.41406,0.900482,0.0804815,0.689981,0.779126,0.660379,0.100978,0.762218,0.190914,0.423978,0.827979,0.278826,0.135031,0.299623,0.0510052,0.141109,0.377472,0.463765,0.366743,0.596979,0.635693,0.655926,0.703516,0.652829,0.640693,0.587454,0.163578,0.732591,0.585019,0.729041,0.691721,0.510627,0.358995,0.512501,0.242303,0.718954,0.377984,0.111756,0.202941,0.731994,0.0258149,0.591007,0.936946,0.923366,0.525749,0.748119,0.875709,0.542707,0.486315,0.597523,0.907949,0.66168,0.467749,0.44292,0.978644,0.325872,0.0680774,0.0661772,0.0420783,0.921965,0.758239,0.904949,0.708756,0.314455,0.614418,0.230376,0.812708,0.552272,0.217213,0.78456,0.27462,0.659918,0.206055,0.840909,0.955121,0.784405,0.757988,0.787268,0.122699,0.498161,0.37147,0.100555,0.666069,0.308669,0.867882,0.170924,0.825759,0.666005,0.521613,0.781285,0.270059,0.649715,0.2754,0.902463,0.0237908,0.484179,0.336608,0.413952,0.778755,0.978745,0.000254333,0.830197,0.500851,0.886397,0.740535,0.700471,0.228926,0.457207,0.441104,0.450707,0.560956,0.360812,0.722089,0.904882,0.463207,0.125367,0.915669,0.723775,0.968565,0.2121,0.776595,0.218821,0.398001,0.667738,0.795974,0.106066,0.648782,0.774981,0.273462,0.843575,0.175508,0.791205,0.32401,0.578047,0.337533,0.489246,0.0596689,0.621899,0.930151,0.165578,0.389674,0.394927,0.657388,0.970963,0.980353,0.730108,0.457706,0.99964,0.431279,0.595119,0.718737,0.315997,0.140315,0.211565,0.82961,0.0276489,0.394497,0.280896,0.514178,0.30972,0.225189,0.822281,0.896201,0.918059,0.00628549,0.513474,0.481356,0.806948,0.335469,0.887449,0.589669,0.624503,0.499787,0.0829932,0.360817,0.611847,0.0490423,0.947934,0.884214,0.701715,0.685805,0.157125,0.239995,0.713457,0.902868,0.799784,0.676135,0.364064,0.899312,0.623468,0.664193,0.233514,0.825797,0.427438,0.266926,0.561679,0.428191,0.739053,0.0429948,0.216263,0.640859,0.290328,0.502293,0.0103005,0.408933,0.684172,0.838091,0.500344,0.723762,0.104032,0.0873992,0.779463,0.724023,0.00923771,0.405654,0.582005,0.682468,0.440485,0.692132,0.189927,0.670622,0.578254,0.971809,0.925142,0.927743,0.144992,0.512191,0.673334,0.267216,0.551504,0.357525,0.0761919,0.844219,0.140048,0.127385,0.743353,0.971804,0.717089,0.998097,0.803094,0.129969,0.632552,0.617978,0.737373,0.115345,0.735123,0.109928,0.0991802,0.0972141,0.978127,0.312895,0.164147,0.27721,0.0536833,0.506943,0.394651,0.682419,0.49611,0.390483,0.315621,0.482435,0.567039,0.643055,0.556038,0.401616,0.0606773,0.595737,0.685816,0.581271,0.253512,0.884016,0.390164,0.598706,0.0229974,0.341485,0.361122,0.155757,0.325948,0.548772,0.999934,0.465461,0.935124,0.967612,0.703623,0.479657,0.472786,0.156337,0.483503,0.982406,0.427666,0.70166,0.218605,0.830357,0.507957,0.0146616,0.957764,0.759616,0.580112,0.815325,0.810083,0.104439,0.0897666,0.41362,0.528837,0.0430422,0.579157,0.604251,0.878149,0.322345,0.403679,0.704908,0.483808,0.718584,0.0755512,0.0535207,0.723937,0.764753,0.167002,0.635731,0.0160626,0.358569,0.920707,0.723,0.159783,0.366743,0.702262,0.90984,0.195202,0.465181,0.684761,0.998672,0.958428,0.627082,0.971879,0.725208,0.641174,0.538893,0.765137,0.191917,0.967966,0.20825,0.198285,0.306293,0.0229917,0.508361,0.0449918,0.211585,0.628044,0.92219,0.618056,0.00183839,0.724504,0.9427,0.950676,0.627357,0.923259,0.635534,0.975818,0.660452,0.605827,0.791326,0.55305,0.248357,0.509125,0.799072,0.689663,0.5244,0.979077,0.656243,0.1236,0.868988,0.70898,0.910918,0.294657,0.32754,0.938566,0.236418,0.900772,0.178031,0.574476,0.765527,0.918949,0.167978,0.455658,0.337215,0.501923,0.555401,0.294972,0.495503,0.0621873,0.527283,0.415081,0.619113,0.02427,0.521305,0.0160174,0.284452,0.922629,0.501831,0.859098,0.81555,0.318192,0.491318,0.90262,0.42498,0.784044,0.985268,0.556832,0.994833,0.910993,0.635823,0.760614,0.136806,0.663631,0.196143,0.315877,0.336088,0.148343,0.74835,0.444594,0.414092,0.0800864,0.594816,0.133503,0.563975,0.537507,0.816233,0.582682,0.668313,0.846068,0.346307,0.802282,0.726983,0.416803,0.861809,0.552884,0.530342,0.693248,0.793808,0.342093,0.942743,0.713763,0.961905,0.253737,0.164141,0.526575,0.391322,0.593707,0.290792,0.824238,0.996436,0.32631,0.991649,0.0443086,0.379949,0.268547,0.882432,0.102,0.0238904,0.126335,0.124991,0.365852,0.982627,0.934193,0.260149,0.176559,0.105498,0.637517,0.120005,0.434176,0.216635,0.299263,0.657946,0.182587,0.611083,0.568733,0.753857,0.221632,0.966812,0.676807,0.551008,0.698625,0.63745,0.324238,0.00443929,0.146977,0.00441486,0.473304,0.865861,0.856996,0.427933,0.038267,0.129083,0.347043,0.953481,0.770782,0.807045,0.484217,0.770543,0.327,0.585379,0.67686,0.0212103,0.262033,0.510647,0.214795,0.216191,0.887705,0.213028,0.704866,0.824615,0.395381,0.470079,0.490764,0.379485,0.930949,0.781417,0.0822614,0.678359,0.0157427,0.338033,0.971538,0.966628,0.0607478,0.755907,0.65381,0.513179,0.53215,0.139253,0.619204,0.124886,0.803028,0.775788,0.963641,0.684196,0.376434,0.472244,0.219546,0.976297,0.582703,0.954882,0.851768,0.583831,0.730005,0.765729,0.806135,0.0580051,0.725131,0.412384,0.399187,0.554914,0.593436,|0.807228,0.504175,0.0241995,0.518629,0.697025,0.985522,0.517079,0.617841,0.629246,0.685041,0.533205,0.419456,0.651771,0.16297,0.212317,0.442463,0.841248,0.679346,0.765178,0.444917,0.160706,0.269156,0.812778,0.0841338,0.472984,0.335674,0.323215,0.775755,0.400425,0.497294,0.612284,0.229714,0.38945,0.210187,0.0391731,0.674961,0.108789,0.848847,0.754517,0.615519,0.480235,0.907916,0.13079,0.941976,0.405586,0.461018,0.722461,0.113874,0.36085,0.906346,0.450518,0.444709,0.259285,0.465641,0.0409713,0.361709,0.17697,0.444219,0.389594,0.369896,0.461222,0.472452,0.196079,0.500312,0.408964,0.882609,0.214685,0.74666,0.417782,0.853321,0.843394,0.916834,0.150424,0.0395261,0.497041,0.752573,0.586196,0.204081,0.470059,0.117835,0.950057,0.74222,0.65621,0.0728892,0.37484,0.881134,0.585514,0.923285,0.97803,0.373418,0.695884,0.102826,0.725848,0.624128,0.940554,0.148979,0.631845,0.109544,0.0684195,0.987891,0.0369828,0.285701,0.157161,0.492832,0.202964,0.97666,0.925777,0.132643,0.198904,0.89545,0.962068,0.683554,0.808483,0.817484,0.425982,0.356347,0.625898,0.935284,0.639178,0.319095,0.92129,0.886078,0.952956,0.278576,0.0353305,0.864428,0.208007,0.400578,0.140887,0.567956,0.0265555,0.774057,0.680331,0.433134,0.911898,0.640017,0.594188,0.737838,0.870271,0.405121,0.765485,0.729425,0.710285,0.863149,0.622406,0.826546,0.735741,0.0170093,0.206179,0.540544,0.742792,0.783961,0.37345,0.831229,0.183204,0.0733403,0.982316,0.159126,0.727508,0.425356,0.511357,0.636829,0.210094,0.374955,0.890266,0.560202,0.340824,0.90084,0.557173,0.871489,0.334487,0.500622,0.860333,0.0111075,0.599603,0.155847,0.930049,0.817226,0.936114,0.724396,0.530039,0.157496,0.338874,0.368733,0.120289,0.948343,0.0691665,0.225606,0.690884,0.554894,0.1293,0.716051,0.105197,0.0433977,0.444891,0.175533,0.352188,0.301731,0.212678,0.406787,0.108016,0.286489,0.125454,0.364943,0.103916,0.057467,0.770885,0.485302,0.425707,0.416631,0.577465,0.417401,0.775274,0.92495,0.229546,0.80715,0.253537,0.102182,0.830955,0.661795,0.0244259,0.396926,0.985721,0.304037,0.403714,0.53178,0.44541,0.646618,0.384217,0.126988,0.199332,0.831018,0.882992,0.504471,0.263377,0.399688,0.451456,0.943136,0.030894,0.196989,0.847722,0.565844,0.664165,0.00790673,0.791513,0.502201,0.699807,0.989788,0.355151,0.105481,0.356275,0.51466,0.238558,0.634325,0.684441,0.830765,0.911245,0.821958,0.886238,0.759343,0.948889,0.319181,0.0495023,0.13642,0.509098,0.403807,0.65245,0.149926,0.32323,0.257999,0.904896,0.343493,0.928769,0.835732,0.604918,0.988721,0.833294,0.574297,0.75451,0.896723,0.522786,0.566712,0.808946,0.745972,0.348214,0.857922,0.203885,0.517351,0.132071,0.93811,0.469474,0.97448,0.715986,0.122994,0.169801,0.0503713,0.508282,0.473561,0.0741705,0.0877216,0.191062,0.851194,0.068683,0.282657,0.176499,0.29698,0.531803,0.523734,0.660292,0.0976962,0.821046,0.639599,0.623762,0.322929,0.677744,0.0650597,0.342301,0.0791031,0.109412,0.102286,0.59834,0.393677,0.0577902,0.874158,0.0324595,0.235067,0.0137898,0.767549,0.97316,0.711377,0.121862,0.198,0.753116,0.533813,0.0183807,0.899919,0.538718,0.76212,0.63928,0.180793,0.888157,0.54938,0.488487,0.305867,0.0186043,0.0289652,0.351715,0.624382,0.00771928,0.933863,0.571499,0.249523,0.521777,0.522934,0.323805,0.901907,0.0105804,0.869526,0.987143,0.923434,0.174875,0.400347,0.884717,0.964474,0.841859,0.803359,0.216435,0.0310053,0.343916,0.976131,0.747088,0.624842,0.10691,0.152433,0.723734,0.42866,0.545548,0.314631,0.278728,0.245772,0.581902,0.335714,0.0173416,0.10135,0.314617,0.141457,0.0404053,0.948447,0.43834,0.946514,0.718371,0.528884,0.0967662,0.288972,0.176753,0.977835,0.494309,0.852089,0.988906,0.519261,0.559485,0.325763,0.143615,0.92743,0.934102,0.0720884,0.76914,0.563896,0.9625,0.852102,0.665227,0.00558835,0.326492,0.49985,0.113329,0.651178,0.335872,0.896181,0.540591,0.982502,0.60993,0.0925575,0.958962,0.44655,0.196177,0.672465,0.848973,0.716235,0.764135,0.0823098,0.537975,0.34779,0.725637,0.0827489,0.933962,0.00238234,0.142726,0.481067,0.00925833,0.338523,0.778681,0.854079,0.163075,0.681224,0.176743,0.244152,0.83621,0.225203,0.229764,0.677305,0.228382,0.322705,0.574558,0.203367,0.792613,0.845475,0.147169,0.787295,0.224561,0.353427,0.864618,0.677476,0.864956,0.981517,0.447724,0.469954,0.314812,0.210581,0.861803,0.766076,0.0575504,0.267553,0.839915,0.597249,0.630465,0.101548,0.0418142,0.931402,0.215984,0.315016,0.556581,0.93732,0.357716,0.0296254,0.0704241,0.702918,0.11641,0.165921,0.962092,0.0990952,0.488412,0.696103,0.306149,0.487105,0.854696,0.56087,0.318294,0.61807,0.257223,0.854181,0.528321,0.0220709,0.0786137,0.425078,0.264779,0.000502706,0.360329,0.769035,0.511588,0.268183,0.336746,0.117555,0.709428,0.411061,0.88011,0.838826,0.105047,0.013976,0.595779,0.369908,0.313641,0.785271,0.577339,0.0601995,0.010166,0.349856,0.0126225,0.267331,0.562369,0.892711,0.491707,0.620077,0.354259,0.271483,0.328642,0.161824,0.824326,0.83666,0.0824724,0.684247,0.944927,0.616076,0.766066,0.797245,0.60517,0.103228,0.597467,0.901721,0.475407,0.453354,0.188782,0.798995,0.0156977,0.117642,0.752872,0.261507,0.378893,0.404498,0.602466,0.302276,0.406571,0.396903,0.280802,0.492195,0.889725,0.196465,0.884747,0.47638,0.220059,0.723925,0.192792,0.120637,0.910533,0.328273,0.214521,0.743963,0.773054,0.421948,0.285603,0.984859,0.803499,0.389669,0.695585,0.0268017,0.960096,0.93386,0.312955,0.278601,0.755304,0.507316,0.303507,0.292665,0.164665,0.328907,0.15816,0.298112,0.900538,0.876918,0.379348,0.100422,0.493295,0.554792,0.391852,0.385519,0.112386,0.482073,0.88834,0.735522,0.467014,0.372053,0.651456,0.608355,0.199006,0.190686,0.213928,0.389497,0.513895,0.250623,0.929481,0.878069,0.0150468,0.331152,0.271034,0.886175,0.565392,0.28587,0.602082,0.849835,0.551238,0.943098,0.629306,0.814931,0.892874,0.812204,0.337548,0.479845,0.486848,0.459122,0.855012,0.242556,0.228997,0.752832,0.378321,0.602921,0.92231,0.643662,0.565341,0.40157,0.729708,0.561896,0.492226,0.689416,0.336089,0.605521,0.655833,0.692032,0.108447,0.0952968,0.141755,0.645423,0.330375,0.664204,0.753087,0.078364,0.244484,0.951452,0.129734,0.078109,0.590113,0.914668,0.751552,0.547284,0.427422,0.694917,0.699476,0.0992184,0.596906,0.819554,0.667005,0.956453,0.604333,0.614047,0.316273,0.304408,0.0082702,0.046049,0.492122,0.800235,0.173092,0.241943,0.408946,0.204445,0.976891,0.773891,0.152821,0.914561,0.665275,0.0824108,0.593139,0.838979,0.968964,0.401734,0.27261,0.370363,0.588851,0.145283,0.224404,0.774363,0.509593,0.666362,0.135998,0.158547,0.283493,0.195489,0.584905,0.652947,0.069995,0.349966,0.26425,0.594875,0.324173,0.565612,0.0461314,0.309816,0.493693,0.579682,0.386038,0.502471,0.268152,0.709889,0.84826,0.167626,0.899317,0.178381,0.557453,0.907905,0.635957,0.920663,0.867727,0.44916,0.388921,0.800039,0.175609,0.417533,0.119841,0.583155,0.056236,0.756202,0.864435,0.990882,0.268203,0.49692,0.118998,0.427725,0.613516,0.721034,0.687496,0.367788,0.754259,0.973672,0.676347,0.56982,0.115281,0.508343,0.078107,0.474425,0.0623931,0.509162,0.201959,0.393922,0.20381,0.304676,0.362264,0.649919,0.639973,0.975247,0.499283,0.170864,0.864207,0.433574,0.452819,0.292376,0.946934,0.9558,0.0617133,0.290783,0.135691,0.684212,0.438781,0.749965,0.128477,0.748618,0.268411,0.730428,0.248014,0.901449,0.743309,0.547629,0.598356,0.410971,0.362401,0.898225,0.928644,0.385723,0.560531,0.153759,0.342894,0.19707,0.406228,0.0254325,0.374768,0.530448,0.151797,0.592546,0.159552,0.00666147,0.0322599,0.39449,0.562155,0.838999,0.0741982,0.95258,0.129042,0.127596,0.394875,0.189444,0.917263,0.500677,0.438971,0.327174,0.900881,0.0161812,0.819812,0.488137,0.863192,0.766689,0.621149,0.843774,0.615052,0.048624,0.902998,0.923415,0.272469,0.951231,0.850227,0.70073,0.741058,0.652523,0.187967,0.0401132,0.52749,0.52146,0.361537,0.372678,0.360963,0.431699,0.113182,0.0210427,0.186384,0.0289251,0.343495,0.755165,0.0267441,0.835031,0.739463,0.614867,0.0772914,0.138366,0.442703,0.96773,0.596232,0.381184,0.0674966,0.714406,0.602526,0.185997,0.302249,0.946759,0.875654,0.847561,0.204167,0.973887,0.471645,0.418741,0.16938,0.784695,0.374139,0.930144,0.0017547,0.16595,0.301488,0.57615,0.353981,0.528807,0.263503,0.320916,0.157817,0.109031,0.422849,0.878208,0.170063,0.447076,0.00395209,0.0533384,0.585457,0.400077,0.212931,0.356381,0.732579,0.611321,0.835064,0.293372,0.604022,0.162216,0.197072,0.0542391,0.894497,0.542228,0.785234,0.0438317,0.465434,0.159865,0.887776,0.823156,0.917929,0.234406,0.0285652,0.272565,0.480696,0.597728,0.367707,0.339573,0.964788,0.263367,0.465029,0.44004,0.369252,0.770012,0.432046,0.761834,0.419814,0.0852872,0.0773917,0.102224,0.16991,0.941957,0.618476,0.950968,0.0718439,0.507491,0.888283,0.979231,0.423879,0.661204,0.929909,0.918897,0.236367,0.357261,0.140848,0.747995,0.285927,0.95589,0.448734,0.0952374,0.207435,0.37361,0.750314,0.162653,0.754065,0.382056,0.737567,0.613264,0.329791,0.0607525,0.286061,0.275807,0.659832,0.0681282,0.222571,0.514197,0.251048,0.097958,0.983379,0.315001,0.946629,0.183905,0.460848,0.117239,0.408916,0.422972,0.675975,0.495745,0.854778,0.589567,0.344616,0.00494784,0.187871,0.200135,0.362626,0.83839,|0.635401,0.222414,0.414618,0.744478,0.568504,0.88042,0.512096,0.885295,0.765723,0.124935,0.874863,0.875039,0.866382,0.438427,0.325948,0.137991,0.497829,0.893549,0.484799,0.746053,0.507946,0.97345,0.0558395,0.270977,0.474392,0.696649,0.140836,0.831597,0.923467,0.609169,0.219007,0.499645,0.336061,0.142887,0.190504,0.950695,0.606462,0.709629,0.147436,0.959647,0.842135,0.89061,0.601417,0.89062,0.704512,0.119833,0.237702,0.702087,0.4847,0.155641,0.140891,0.680723,0.569961,0.928672,0.675933,0.668187,0.297086,0.933716,0.546035,0.618362,0.512624,0.414453,0.757276,0.807509,0.173255,0.179213,0.490309,0.810596,0.724167,0.144354,0.703837,0.497894,0.759187,0.508322,0.370984,0.79712,0.540805,0.773172,0.101542,0.0651211,0.560951,0.471577,0.0470214,0.647366,0.877701,0.108285,0.999522,0.834486,0.197927,0.901606,0.484763,0.496351,0.701964,0.0084064,0.304293,0.405048,0.65533,0.21371,0.30145,0.78328,0.648029,0.402166,0.46942,0.408442,0.25171,0.43271,0.699994,0.465391,0.523102,0.512789,0.952145,0.687184,0.696029,0.938645,0.287751,0.529991,0.240322,0.601005,0.883463,0.977326,0.569464,0.560755,0.322031,0.507068,0.772275,0.896107,0.388142,0.759301,0.550807,0.0575783,0.655131,0.412301,0.116669,0.774971,0.619674,0.105096,0.712961,0.116241,0.862085,0.217018,0.549173,0.639322,0.874936,0.882408,0.242523,0.745497,0.530941,0.64369,0.322194,0.266633,0.860096,0.648586,0.760211,0.0257546,0.275649,0.987864,0.307728,0.872366,0.87895,0.42519,0.731626,0.261214,0.71226,0.134722,0.795277,0.226137,0.863711,0.379146,0.453878,0.488198,0.540371,0.266471,0.261648,0.679689,0.666587,0.537104,0.303575,0.965146,0.0626149,0.972268,0.685905,0.0419799,0.0897217,0.0775326,0.575876,0.499224,0.996581,0.66214,0.986501,0.644668,0.427707,0.0380195,0.736275,0.886832,0.760729,0.52023,0.302994,0.620822,0.759776,0.498316,0.270778,0.633279,0.752451,0.179319,0.303173,0.767715,0.939688,0.903173,0.671069,0.566466,0.573083,0.957081,0.545558,0.298506,0.247872,0.0669283,0.225906,0.226112,0.452285,0.032956,0.086607,0.924331,0.952375,0.918629,0.496631,0.367793,0.0888945,0.274104,0.0934743,0.437846,0.824917,0.949975,0.898715,0.0124123,0.935319,0.118915,0.956934,0.441795,0.325684,0.771406,0.133593,0.0955877,0.732406,0.89108,0.0797932,0.853644,0.906485,0.406916,0.473315,0.188514,0.650331,0.762224,0.578281,0.165056,0.285802,0.816736,0.255294,0.242792,0.320824,0.648521,0.0202776,0.812055,0.992568,0.486502,0.671242,0.662699,0.655282,0.914499,0.193508,0.648327,0.336488,0.757467,0.957772,0.0838562,0.362649,0.0293818,0.974275,0.485537,0.15639,0.23494,0.893047,0.764148,0.0913589,0.00896871,0.87771,0.531504,0.356489,0.964104,0.0118812,0.792525,0.546378,0.1124,0.00841284,0.886708,0.264363,0.789183,0.871739,0.256494,0.782593,0.806037,0.592595,0.277653,0.473452,0.90364,0.244487,0.839393,0.848878,0.532866,0.105558,0.842977,0.637357,0.557381,0.796969,0.755318,0.196727,0.31618,0.432606,0.790821,0.753189,0.000464261,0.324821,0.987724,0.929031,0.253538,0.00101858,0.0914983,0.520722,0.0251858,0.669215,0.435415,0.769377,0.429342,0.298581,0.183972,0.734727,0.715713,0.785052,0.874678,0.045247,0.995295,0.957096,0.167805,0.16957,0.645459,0.240364,0.892313,0.906362,0.894323,0.875019,0.754424,0.936431,0.165337,0.807306,0.51972,0.909921,0.568996,0.593234,0.926126,0.00382197,0.498227,0.613684,0.18906,0.488334,0.250515,0.470634,0.686305,0.988522,0.128986,0.67318,0.395556,0.0561196,0.777893,0.830767,0.170452,0.463134,0.569651,0.754897,0.212997,0.461325,0.82383,0.26397,0.915586,0.898243,0.201755,0.416949,0.461041,0.0647584,0.0469432,0.947285,0.819999,0.610086,0.525737,0.601204,0.662373,0.594697,0.448421,0.456881,0.642154,0.100022,0.404547,0.409509,0.988202,0.42588,0.842057,0.813802,0.764907,0.548343,0.719285,0.0146272,0.635578,0.548115,0.276705,0.11323,0.4874,0.392637,0.842533,0.0996103,0.655762,0.113974,0.270568,0.6258,0.812783,0.2146,0.790879,0.0729305,0.522357,0.248311,0.68756,0.475542,0.842157,0.548341,0.982237,0.494029,0.283072,0.862367,0.12925,0.250657,0.909797,0.921645,0.0720724,0.739505,0.144929,0.961228,0.280061,0.328371,0.928076,0.412495,0.592169,0.636203,0.550618,0.677673,0.802346,0.156207,0.382913,0.153428,0.239246,0.652457,0.334683,0.747599,0.213606,0.123909,0.101981,0.702282,0.630666,0.697377,0.703938,0.302616,0.490416,0.504074,0.882733,0.752838,0.0952955,0.688915,0.563958,0.363614,0.969466,0.810749,0.944028,0.736615,0.224132,0.656411,0.927676,0.139387,0.769311,0.0320977,0.238265,0.656744,0.640955,0.665535,0.0731348,0.077567,0.663115,0.546378,0.342851,0.587909,0.64193,0.189584,0.504354,0.955631,0.744088,0.767661,0.142738,0.519145,0.707976,0.400892,0.811116,0.347826,0.0471628,0.515926,0.350771,0.0809875,0.126123,0.411821,0.907928,0.515426,0.669651,0.131392,0.524517,0.0340289,0.324067,0.91496,0.00881755,0.0145921,0.928571,0.712796,0.103912,0.694471,0.153338,0.52382,0.783217,0.11156,0.531672,0.713655,0.614191,0.199935,0.665941,0.813998,0.187913,0.992203,0.0212017,0.184421,0.0356222,0.44024,0.95593,0.97133,0.0321292,0.230706,0.904495,0.856591,0.399609,0.0235286,0.992936,0.252633,0.24658,0.163908,0.339764,0.412587,0.664999,0.336798,0.255547,0.82648,0.00624722,0.652333,0.284472,0.459576,0.0654783,0.719806,0.479021,0.115424,0.65646,0.747709,0.89877,0.459333,0.581395,0.447658,0.482764,0.948047,0.0422968,0.484901,0.512796,0.955844,0.188263,0.458285,0.149074,0.176509,0.217091,0.575315,0.539431,0.0363844,0.859112,0.421125,0.413689,0.850163,0.81411,0.220158,0.107301,0.320501,0.381441,0.200612,0.727113,0.756026,0.244426,0.263237,0.287593,0.940807,0.199205,0.584467,0.446053,0.46454,0.73655,0.389954,0.329483,0.557058,0.525599,0.738182,0.772504,0.679451,0.342473,0.35552,0.443507,0.418511,0.947675,0.590836,0.651759,0.509753,0.492567,0.263296,0.340782,0.922206,0.336352,0.792678,0.73996,0.750314,0.823836,0.0827145,0.0784211,0.0659894,0.189228,0.680227,0.608757,0.306569,0.882291,0.960121,0.662881,0.23719,0.17877,0.262628,0.771097,0.745718,0.432334,0.779451,0.821085,0.208387,0.756908,0.752286,0.507001,0.873017,0.86722,0.731227,0.466231,0.418491,0.767009,0.906915,0.198992,0.725817,0.770015,0.856372,0.00311548,0.849358,0.721745,0.770675,0.400647,0.720036,0.242777,0.0244507,0.441225,0.602051,0.2167,0.351225,0.188286,0.524618,0.323962,0.0830495,0.636836,0.0183303,0.390922,0.998693,0.224332,0.867978,0.613373,0.248062,0.755659,0.11666,0.138903,0.847011,0.489,0.931442,0.245082,0.168176,0.177395,0.653858,0.183075,0.451176,0.123997,0.0357186,0.662452,0.544983,0.982998,0.677436,0.970921,0.327252,0.236678,0.456644,0.179885,0.596298,0.956943,0.919767,0.123835,0.489271,0.13218,0.459768,0.732865,0.974838,0.612537,0.908705,0.798831,0.796017,0.199876,0.819006,0.107712,0.552601,0.866652,0.921074,0.616137,0.452867,0.813361,0.632322,0.279418,0.915008,0.546902,0.91806,0.865074,0.392149,0.15953,0.674189,0.548493,0.709286,0.218591,0.362886,0.80458,0.318879,0.540767,0.307347,0.0642776,0.497019,0.367748,0.930436,0.30137,0.157497,0.581978,0.169406,0.71894,0.0274899,0.416458,0.902991,0.515501,0.0305149,0.366459,0.612304,0.655765,0.948006,0.449087,0.82182,0.270826,0.78124,0.567647,0.628765,0.846358,0.222361,0.74608,0.213024,0.190952,0.486068,0.812093,0.257967,0.728347,0.549482,0.793132,0.112779,0.14404,0.188834,0.0442688,0.90827,0.881614,0.864149,0.864715,0.625749,0.704109,0.948777,0.217093,0.372639,0.861389,0.348441,0.479028,0.187685,0.657005,0.279468,0.619538,0.898737,0.189419,0.531316,0.305983,0.776845,0.79912,0.792428,0.022091,0.53286,0.378935,0.925794,0.735825,0.379464,0.431204,0.00106108,0.452264,0.0225013,0.471575,0.617069,0.0363084,0.187347,0.127931,0.839116,0.209494,0.144393,0.748388,0.598858,0.122942,0.591663,0.265209,0.965594,0.401412,0.850162,0.259873,0.777625,0.595467,0.700151,0.804049,0.352893,0.854944,0.879864,0.0222981,0.513992,0.249245,0.292404,0.964247,0.135924,0.647993,0.196657,0.0460296,0.138957,0.913136,0.056417,0.613224,0.975617,0.819081,0.344401,0.275883,0.917277,0.166481,0.706577,0.428035,0.650102,0.172743,0.57865,0.0113144,0.372233,0.776216,0.510239,0.364245,0.914685,0.84766,0.322542,0.792353,0.225964,0.303196,0.346731,0.0827025,0.615197,0.558643,0.94322,0.908712,0.903725,0.393903,0.0805122,0.811006,0.386101,0.67805,0.945947,0.909555,0.170141,0.341071,0.284618,0.307678,0.00596291,0.00658309,0.227797,0.12958,0.777834,0.584135,0.939919,0.0793487,0.586215,0.349648,0.765745,0.852501,0.836528,0.00673729,0.920294,0.253301,0.960112,0.366212,0.617531,0.435956,0.738419,0.0487157,0.549433,0.330246,0.502022,0.924653,0.593479,0.180116,0.477835,0.251025,0.54518,0.341485,0.152657,0.82087,0.597523,0.545268,0.734663,0.326283,0.155281,0.70578,0.900058,0.261463,0.551007,0.324446,0.937719,0.0358121,0.879662,0.52801,0.0422222,0.970169,0.654118,0.340348,0.219749,0.55434,0.999875,0.480106,0.0657182,0.532731,0.295132,0.65569,0.105681,0.932401,0.209131,0.600814,0.948309,0.108545,0.254689,0.511841,0.627296,0.771984,0.26714,0.314582,0.276828,0.567868,0.45867,0.889319,0.688872,0.159156,0.444567,0.997317,0.672604,0.0221691,0.332741,0.503721,0.323156,0.871498,0.417426,0.649354,0.800913,0.878198,0.519631,0.666142,0.406192,0.602624,0.923817,0.58856,0.711741,0.0289733,|0.356584,0.249391,0.300953,0.512378,0.689729,0.725008,0.569664,0.843613,0.157272,0.387947,0.90299,0.569035,0.988842,0.303553,0.0154288,0.715255,0.71685,0.960814,0.3557,0.54564,0.547134,0.933167,0.707779,0.629926,0.990174,0.339273,0.334447,0.821077,0.961746,0.311221,0.924469,0.102719,0.610707,0.256838,0.226795,0.0991984,0.708488,0.392815,0.39289,0.14064,0.797127,0.598445,0.876464,0.0752123,0.900722,0.286429,0.554166,0.526746,0.537825,0.244538,0.972077,0.00253659,0.0176443,0.394967,0.748568,0.858858,0.570858,0.508,0.407307,0.603149,0.322231,0.70093,0.94544,0.839359,0.101095,0.088457,0.169941,0.123347,0.615441,0.102201,0.366737,0.0533636,0.49024,0.628736,0.510204,0.432175,0.83057,0.379216,0.810037,0.836332,0.398187,0.562155,0.148948,0.596185,0.0904025,0.879205,0.648824,0.565679,0.661613,0.0613974,0.418263,0.300698,0.481664,0.217688,0.296123,0.356176,0.0625252,0.970198,0.846611,0.873331,0.59656,0.384153,0.308488,0.774471,0.182076,0.930595,0.548841,0.765288,0.568215,0.957796,0.0522287,0.814029,0.269814,0.391415,0.0168013,0.320201,0.928848,0.397394,0.432591,0.286085,0.263467,0.394777,0.245153,0.0321233,0.588991,0.0828313,0.751559,0.503088,0.141531,0.522571,0.529117,0.0107647,0.598227,0.418367,0.266415,0.522136,0.370301,0.22229,0.399454,0.758127,0.520136,0.496833,0.806878,0.185573,0.123059,0.608051,0.169229,0.716394,0.696667,0.271463,0.742894,0.657062,0.702893,0.668999,0.955831,0.88237,0.504275,0.353625,0.979598,0.716833,0.154672,0.49211,0.669761,0.427112,0.681224,0.785212,0.108002,0.680292,0.520367,0.0673388,0.548733,0.284048,0.76479,0.332167,0.424622,0.251427,0.842194,0.789939,0.710703,0.314434,0.150759,0.873393,0.40027,0.516557,0.435594,0.926953,0.620292,0.271354,0.609491,0.540475,0.18774,0.437981,0.0574791,0.00553954,0.345662,0.731995,0.771172,0.070094,0.147301,0.631323,0.21544,0.786787,0.0195845,0.763614,0.464492,0.91832,0.225645,0.816843,0.48916,0.0321448,0.149083,0.0250863,0.693637,0.199875,0.909132,0.620104,0.637273,0.395639,0.309134,0.92932,0.011184,0.189189,0.977806,0.793596,0.247289,0.884442,0.098317,0.909617,0.578214,0.316293,0.324945,0.0745555,0.138491,0.287647,0.058415,0.312344,0.928745,0.407976,0.497466,0.774476,0.261524,0.194294,0.736933,0.89747,0.32901,0.133578,0.501857,0.267515,0.382774,0.908836,0.484052,0.701928,0.593486,0.843238,0.488367,0.275901,0.784649,0.396621,0.975072,0.502222,0.0454857,0.052167,0.387093,0.536509,0.117142,0.618012,0.298151,0.378337,0.548498,0.409982,0.362332,0.653908,0.278146,0.902818,0.556715,0.908936,0.502554,0.958461,0.392543,0.148003,0.786111,0.958835,0.487284,0.449773,0.435647,0.250978,0.248301,0.837493,0.707742,0.883256,0.45139,0.997124,0.49894,0.670864,0.584888,0.461026,0.105306,0.210824,0.0359109,0.127751,0.149665,0.224642,0.268655,0.827823,0.0957005,0.0603494,0.0107173,0.553554,0.107665,0.0582759,0.691244,0.270823,0.473755,0.498435,0.696949,0.789502,0.339151,0.774694,0.478719,0.377352,0.682155,0.584468,0.377759,0.945316,0.478221,0.947864,0.84633,0.656454,0.921375,0.177336,0.948305,0.432273,0.52058,0.734046,0.737682,0.148838,0.516454,0.32763,0.40131,0.479245,0.364756,0.496767,0.424946,0.527231,0.92979,0.982467,0.636171,0.412367,0.229243,0.697635,0.826778,0.820727,0.5771,0.110848,0.119168,0.315757,0.255656,0.520791,0.390372,0.841493,0.794368,0.749435,0.864659,0.460366,0.249759,0.310751,0.656572,0.0327222,0.0736153,0.979377,0.879012,0.372274,0.279316,0.546356,0.677244,0.02499,0.610399,0.620619,0.00844252,0.31307,0.315482,0.536455,0.580739,0.0746685,0.355619,0.454713,0.360448,0.704911,0.225282,0.249424,0.323447,0.780127,0.96296,0.010919,0.301353,0.313472,0.819856,0.142928,0.760534,0.310703,0.640927,0.0862857,0.838494,0.860562,0.846177,0.173356,0.499331,0.361022,0.986817,0.977196,0.520078,0.715069,0.619904,0.60429,0.377698,0.267848,0.146695,0.827064,0.423368,0.889755,0.261327,0.426294,0.126668,0.353397,0.772762,0.166471,0.678721,0.362048,0.0146364,0.852095,0.289332,0.90155,0.0406211,0.178373,0.874374,0.611294,0.959848,0.632481,0.736479,0.76467,0.295492,0.165684,0.48182,0.209008,0.720576,0.0243662,0.403117,0.797524,0.434238,0.0928349,0.45366,0.423675,0.291524,0.0282835,0.544965,0.640441,0.506998,0.367453,0.879915,0.127802,0.591708,0.814939,0.651989,0.461134,0.95463,0.714068,0.492224,0.0495977,0.944614,0.483627,0.586838,0.862682,0.838582,0.496159,0.243768,0.37318,0.108947,0.397639,0.668641,0.485278,0.19604,0.0405558,0.384968,0.915184,0.0392568,0.800946,0.957003,0.00418854,0.446932,0.939992,0.1804,0.782305,0.229673,0.255722,0.0361961,0.891938,0.764908,0.73566,0.156062,0.316123,0.105561,0.279087,0.0795026,0.36701,0.0425351,0.215629,0.55891,0.275738,0.578256,0.68058,0.0344362,0.413528,0.857781,0.699195,0.071323,0.513461,0.726549,0.542888,0.894377,0.542591,0.745625,0.406395,0.803072,0.78249,0.314942,0.585507,0.240976,0.0687817,0.335905,0.325764,0.871979,0.745124,0.252546,0.247029,0.355421,0.193134,0.410055,0.170636,0.216526,0.762417,0.613853,0.0359083,0.583902,0.859659,0.616105,0.93736,0.969721,0.892098,0.794529,0.745251,0.812275,0.324984,0.566532,0.766962,0.254271,0.572306,0.170224,0.175658,0.677334,0.970613,0.436775,0.873343,0.269587,0.242832,0.496868,0.978167,0.369554,0.588933,0.236958,0.397011,0.732513,0.475005,0.756591,0.578276,0.0239406,0.0248037,0.248121,0.971703,0.768317,0.111391,0.636391,0.634871,0.250042,0.411006,0.98379,0.139166,0.572294,0.918664,0.640009,0.600174,0.221404,0.115952,0.0213761,0.475089,0.260543,0.43285,0.19312,0.332893,0.174788,0.215831,0.560841,0.454449,0.151831,0.81813,0.856082,0.0526829,0.620705,0.606186,0.113434,0.28259,0.319579,0.239834,0.418123,0.135357,0.749483,0.970691,0.201518,0.223163,0.51769,0.578452,0.829195,0.579998,0.12697,0.29041,0.54025,0.789981,0.502185,0.888689,0.264715,0.161838,0.296664,0.791252,0.193156,0.185155,0.0798781,0.399731,0.530933,0.202417,0.115478,0.994105,0.460544,0.505837,0.241201,0.112014,0.929041,0.597216,0.203103,0.220893,0.238048,0.734619,0.735114,0.385555,0.514505,0.595207,0.295831,0.487681,0.00467372,0.585115,0.493577,0.671938,0.212271,0.905593,0.607218,0.0191148,0.457404,0.760559,0.730428,0.631116,0.521698,0.481978,0.956162,0.936328,0.952715,0.0611563,0.528146,0.357684,0.532813,0.649749,0.34503,0.843356,0.655396,0.0619492,0.282751,0.36687,0.42862,0.757728,0.913373,0.255254,0.194275,0.10561,0.421593,0.537396,0.249448,0.0945951,0.9503,0.882534,0.634677,0.00453013,0.17069,0.819184,0.503455,0.88868,0.771708,0.343936,0.553885,0.0115715,0.973933,0.80993,0.0762051,0.87946,0.360594,0.631385,0.297799,0.783379,0.696329,0.515048,0.553017,0.168669,0.76384,0.577462,0.357553,0.0404744,0.172281,0.401201,0.109417,0.289978,0.758391,0.443671,0.652296,0.867855,0.420029,0.388404,0.35649,0.481341,0.882629,0.0492953,0.974478,0.965682,0.647739,0.467778,0.474516,0.132741,0.278017,0.639171,0.617581,0.870704,0.0790082,0.657377,0.411474,0.527367,0.87482,0.376631,0.87546,0.198607,0.624462,0.65591,0.298491,0.830755,0.888222,0.197691,0.872248,0.776527,0.594161,0.551613,0.356004,0.117583,0.715225,0.128435,0.284919,0.486023,0.953412,0.135208,0.910875,0.626622,0.111648,0.228926,0.968851,0.93135,0.974334,0.38873,0.792015,0.441831,0.665693,0.931936,0.493022,0.755464,0.333805,0.914359,0.191238,0.29567,0.0467609,0.0615183,0.988272,0.930805,0.0254069,0.990264,0.556341,0.182828,0.694018,0.288213,0.669274,0.253923,0.304565,0.581542,0.995773,0.78236,0.649038,0.278178,0.335825,0.78975,0.40303,0.586677,0.974614,0.398779,0.499514,0.219168,0.575992,0.523292,0.720391,0.338981,0.33125,0.0158478,0.267269,0.0898809,0.281585,0.586153,0.0257072,0.225664,0.69192,0.0292712,0.234175,0.434418,0.129551,0.0954168,0.313836,0.954016,0.304253,0.945796,0.559018,0.327024,0.427414,0.453918,0.419792,0.415352,0.875839,0.727774,0.510255,0.763252,0.293041,0.509187,0.596871,0.398112,0.929142,0.810316,0.867902,0.324381,0.337966,0.453933,0.900617,0.0979069,0.503762,0.935217,0.555617,0.810489,0.76223,0.489374,0.448793,0.476074,0.994871,0.149791,0.584875,0.961355,0.610277,0.0128356,0.501819,0.865034,0.93553,0.355105,0.437908,0.69237,0.625646,0.20995,0.539425,0.0663669,0.821381,0.606589,0.0864938,0.359728,0.868485,0.798764,0.427881,0.305237,0.698697,0.725819,0.21582,0.912117,0.431333,0.454947,0.603075,0.884653,0.380867,0.949632,0.789847,0.781017,0.868025,0.64276,0.511696,0.562946,0.345546,0.570214,0.665021,0.58552,0.541059,0.584489,0.768078,0.157774,0.943721,0.317142,0.137589,0.363615,0.476575,0.802057,0.171533,0.279768,0.707269,0.398519,0.888987,0.743624,0.968507,0.972496,0.546467,0.530278,0.653446,0.351986,0.410523,0.0314758,0.947695,0.943815,0.996227,0.338052,0.640493,0.0214066,0.919237,0.197056,0.509342,0.73091,0.707544,0.782643,0.726676,0.062663,0.265258,0.377144,0.0315508,0.893499,0.758358,0.0601805,0.991366,0.912349,0.945719,0.414592,0.830506,0.0789391,0.288469,0.114954,0.345126,0.308565,0.301559,0.516971,0.595105,0.41429,0.602087,0.543763,0.262876,0.668175,0.0701465,0.576238,0.564223,0.59279,0.969763,0.417257,0.856739,0.834504,0.188211,0.572029,0.214277,0.0672201,0.518089,0.972676,0.157508,0.861285,0.0879359,0.452024,0.935866,0.923698,0.77569,0.730607,0.724283,0.741998,0.425162,0.979818,|0.0955071,0.857188,0.0355765,0.718077,0.236389,0.442474,0.54877,0.628124,0.107677,0.0269794,0.276128,0.452641,0.682054,0.37006,0.813435,0.0995919,0.963902,0.194105,0.867156,0.243043,0.873132,0.940419,0.558181,0.502054,0.519156,0.581849,0.955209,0.206978,0.995337,0.278107,0.00949788,0.306658,0.911084,0.0457791,0.469969,0.130883,0.594529,0.154777,0.0504675,0.180296,0.520443,0.264051,0.658606,0.224766,0.164048,0.431175,0.177612,0.932925,0.826918,0.465234,0.0272947,0.31725,0.130849,0.546632,0.807459,0.350894,0.279831,0.937294,0.0883449,0.285115,0.855025,0.00110424,0.746126,0.232356,0.9113,0.135039,0.876563,0.147575,0.847493,0.0749491,0.763127,0.195703,0.201395,0.742562,0.579248,0.323472,0.354473,0.96402,0.756491,0.5877,0.200025,0.518509,0.867828,0.250573,0.335988,0.134085,0.863849,0.233941,0.342176,0.480853,0.995278,0.300857,0.550442,0.0135797,0.163054,0.25238,0.333576,0.842931,0.373653,0.305436,0.679435,0.301889,0.537536,0.0990714,0.225363,0.706734,0.989018,0.27047,0.0829943,0.732545,0.0140995,0.446112,0.884278,0.15283,0.0426791,0.490564,0.254486,0.944381,0.705273,0.599587,0.166601,0.420968,0.398451,0.242443,0.12217,0.779224,0.624709,0.978907,0.767541,0.125103,0.833548,0.302198,0.273256,0.885328,0.863725,0.124679,0.842994,0.441863,0.33595,0.352146,0.937111,0.545728,0.364144,0.278513,0.957644,0.872918,0.237836,0.79729,0.0651079,0.545475,0.650681,0.110473,0.248231,0.865577,0.133859,0.17247,0.390416,0.357007,0.0400667,0.455122,0.38313,0.0712053,0.0693901,0.83255,0.394164,0.734821,0.556066,0.285873,0.101128,0.861564,0.390126,0.218869,0.476205,0.474511,0.881681,0.239523,0.248473,0.250423,0.851698,0.417033,0.00325966,0.951944,0.768603,0.798811,0.0349904,0.943196,0.141553,0.754341,0.248138,0.127084,0.596873,0.266326,0.315589,0.867585,0.249276,0.945989,0.615013,0.54227,0.856317,0.269968,0.246971,0.33009,0.758466,0.304868,0.603483,0.992893,0.380217,0.330254,0.745424,0.631853,0.194541,0.814648,0.542239,0.206065,0.550981,0.518335,0.81263,0.447012,0.170291,0.135928,0.502167,0.33294,0.938319,0.646485,0.673767,0.584875,0.332261,0.752588,0.690284,0.0899486,0.0468053,0.7714,0.209927,0.286054,0.55869,0.838202,0.130667,0.023647,0.130269,0.278998,0.327825,0.376338,0.729889,0.103162,0.077337,0.142307,0.637695,0.419649,0.112103,0.342455,0.531183,0.435113,0.431161,0.909868,0.617495,0.47368,0.97444,0.664725,0.282978,0.417086,0.548468,0.734472,0.800776,0.935199,0.33149,0.561703,0.380738,0.624105,0.894745,0.960698,0.65754,0.219053,0.373019,0.738078,0.00786048,0.991634,0.37887,0.259281,0.883054,0.353521,0.404999,0.0509627,0.0497097,0.261882,0.0724325,0.287875,0.0756171,0.297446,0.96658,0.392583,0.0881319,0.576484,0.254487,0.318807,0.788853,0.307899,0.540529,0.530649,0.276826,0.452271,0.432388,0.121348,0.659782,0.0847155,0.455785,0.545851,0.996457,0.75808,0.998176,0.865025,0.428835,0.645363,0.96452,0.20007,0.631306,0.321963,0.340043,0.285968,0.334251,0.936768,0.168336,0.523979,0.527066,0.683761,0.326713,0.262546,0.562039,0.254236,0.810419,0.0936123,0.123646,0.575506,0.991945,0.688962,0.0568707,0.767566,0.395673,0.0882431,0.495913,0.701004,0.283998,0.602699,0.028326,0.998036,0.420334,0.840629,0.981143,0.557025,0.50795,0.182899,0.0102788,0.454328,0.722043,0.523753,0.881427,0.966444,0.0584241,0.813003,0.444525,0.640208,0.627044,0.847003,0.00196475,0.445289,0.902511,0.206729,0.701632,0.739111,0.904837,0.210789,0.954302,0.628609,0.742507,0.304487,0.56621,0.649812,0.690587,0.290359,0.489135,0.568895,0.501067,0.163554,0.813976,0.833628,0.129738,0.102258,0.387837,0.898579,0.848755,0.976177,0.296205,0.356093,0.291888,0.646961,0.516858,0.560757,0.00702876,0.547586,0.900161,0.488159,0.406685,0.509877,0.410089,0.393421,0.717064,0.339628,0.80938,0.0565165,0.299349,0.860889,0.398689,0.371588,0.15291,0.0163429,0.519728,0.762198,0.289868,0.775854,0.533102,0.279814,0.195609,0.0196449,0.90724,0.916599,0.743795,0.818768,0.718444,0.520999,0.441057,0.853435,0.602077,0.264878,0.689921,0.525815,0.635382,0.480418,0.68328,0.15536,0.683826,0.171237,0.641445,0.575341,0.753042,0.171217,0.467426,0.943486,0.819245,0.827564,0.670781,0.472133,0.856011,0.679993,0.687949,0.571971,0.815729,0.0594262,0.298518,0.686257,0.187083,0.627125,0.218579,0.496388,0.710498,0.79114,0.488421,0.298305,0.470295,0.113617,0.800103,0.577283,0.892617,0.968668,0.878584,0.492136,0.439714,0.0248367,0.511029,0.249179,0.557296,0.46378,0.466053,0.370794,0.981087,0.141925,0.697211,0.0790893,0.851759,0.542499,0.605395,0.16935,0.126722,0.023218,0.490154,0.354978,0.530542,0.960405,0.43381,0.182243,0.417561,0.506739,0.250439,0.206369,0.189143,0.933705,0.093267,0.641009,0.952899,0.316228,0.411483,0.435394,0.884419,0.375824,0.455655,0.515691,0.717226,0.289705,0.741004,0.977857,0.107928,0.164719,0.0496484,0.483538,0.607008,0.104557,0.186171,0.686563,0.740442,0.0488964,0.819697,0.0331254,0.328587,0.500371,0.466811,0.0180886,0.763239,0.169315,0.0838003,0.36895,0.950265,0.0952028,0.542419,0.527495,0.828033,0.832008,0.163692,0.155751,0.839545,0.821086,0.915591,0.367831,0.242405,0.287178,0.972403,0.769003,0.368535,0.893164,0.232593,0.119423,0.55845,0.848775,0.773908,0.792543,0.101031,0.798433,0.344928,0.249535,0.495126,0.0551211,0.534873,0.101627,0.470791,0.397126,0.172917,0.316457,0.805323,0.656637,0.710797,0.556759,0.60425,0.543515,0.156873,0.287975,0.688113,0.357995,0.253961,0.527622,0.54712,0.867843,0.448683,0.165263,0.907938,0.384615,0.228397,0.320787,0.979016,0.934247,0.912216,0.60201,0.750883,0.191772,0.12992,0.91034,0.196099,0.751376,0.296293,0.900914,0.747607,0.531591,0.426641,0.59408,0.0912755,0.727982,0.623315,0.624768,0.845473,0.634805,0.8938,0.629219,0.828015,0.570259,0.643146,0.65551,0.317121,0.591127,0.724158,0.755596,0.086895,0.857705,0.43412,0.0913515,0.998062,0.0719295,0.895525,0.745376,0.347388,0.326502,0.0943732,0.749237,0.412353,0.908385,0.910666,0.860058,0.713946,0.660074,0.308499,0.138685,0.398629,0.499595,0.432595,0.977467,0.801509,0.657401,0.181699,0.358462,0.58154,0.630822,0.732262,0.211287,0.629735,0.0874177,0.455395,0.00512505,0.482508,0.659514,0.818944,0.358191,0.227393,0.7416,0.249104,0.67421,0.0396276,0.806713,0.731592,0.981126,0.0362588,0.740064,0.491017,0.84723,0.0964199,0.870583,0.561109,0.858571,0.496305,0.320027,0.933732,0.606798,0.419399,0.465095,0.629947,0.496766,0.0881569,0.493413,0.704661,0.387831,0.582297,0.57596,0.331333,0.207461,0.227853,0.802641,0.712255,0.308552,0.564587,0.252929,0.481714,0.654799,0.460975,0.819593,0.406734,0.235828,0.100483,0.758576,0.534891,0.431253,0.697228,0.44825,0.0732252,0.0520808,0.107918,0.331047,0.605718,0.997906,0.0721234,0.616583,0.889679,0.687729,0.286207,0.938514,0.593424,0.617425,0.0482659,0.192781,0.529591,0.136016,0.412088,0.104089,0.555184,0.536697,0.0621378,0.683029,0.475224,0.320589,0.220087,0.607553,0.71717,0.425902,0.0392654,0.432734,0.197318,0.29533,0.357287,0.945219,0.844924,0.105841,0.894109,0.227641,0.616971,0.102127,0.803118,0.0330865,0.18637,0.390777,0.83239,0.84765,0.551733,0.287017,0.528215,0.659919,0.456923,0.0291038,0.0830373,0.723367,0.468257,0.438361,0.297244,0.361591,0.318407,0.330048,0.920835,0.0340321,0.439366,0.642069,0.733344,0.317456,0.459183,0.0203868,0.455935,0.789179,0.804713,0.197111,0.724341,0.80126,0.216569,0.990375,0.592964,0.0607927,0.899364,0.792663,0.61011,0.0639892,0.881174,0.716909,0.112272,0.00500733,0.14859,0.843067,0.953351,0.788593,0.51113,0.737033,0.763265,0.223607,0.433962,0.131069,0.798909,0.156206,0.669607,0.120444,0.279551,0.10247,0.911303,0.83096,0.443213,0.888069,0.0415888,0.601191,0.0762162,0.0997981,0.356785,0.524283,0.248389,0.0866411,0.0490782,0.252542,0.444745,0.534915,0.738066,0.97347,0.780999,0.39174,0.14384,0.283993,0.134517,0.634901,0.484173,0.521323,0.0225325,0.771157,0.178476,0.401169,0.0269869,0.393171,0.837755,0.938141,0.645681,0.419798,0.733054,0.0117636,0.969084,0.10426,0.924238,0.203171,0.268551,0.649444,0.925525,0.872171,0.526638,0.93296,0.590939,0.203076,0.970787,0.991453,0.852349,0.443699,0.622212,0.1532,0.332253,0.552062,0.559649,0.0852572,0.380028,0.8132,0.689903,0.909202,0.00524467,0.489522,0.104788,0.803223,0.567409,0.694719,0.776022,0.580288,0.273413,0.315069,0.351964,0.0013051,0.868529,0.388111,0.223463,0.536807,0.388594,0.775964,0.920008,0.420134,0.860685,0.378683,0.73844,0.27122,0.824066,0.580433,0.183423,0.0645801,0.553545,0.17929,0.924607,0.405017,0.453167,0.82116,0.535426,0.528784,0.753191,0.231671,0.4728,0.879988,0.121884,0.873672,0.197297,0.637784,0.458413,0.0655407,0.391484,0.000945985,0.679998,0.919625,0.000998735,0.951352,0.568081,0.775751,0.549987,0.662921,0.717116,0.604806,0.626698,0.420574,0.786789,0.687011,0.0222018,0.300641,0.612461,0.992278,0.85298,0.837801,0.123147,0.326214,0.49736,0.217281,0.807653,0.785708,0.268738,0.627409,0.324731,0.763893,0.741176,0.135356,0.599561,0.960259,0.603084,0.342779,0.349554,0.66097,0.516765,0.73229,0.313566,0.156863,0.247569,0.68681,0.279193,0.441952,0.671732,0.315788,0.0193377,0.750689,0.759063,0.377831,0.579596,0.524612,0.462087,0.055415,0.443445,0.91278,0.233454,0.709409,0.54238,0.187566,0.147291,0.142292,0.42851,0.785625,0.816928,0.486629,|0.428012,0.374329,0.506371,0.991215,0.252321,0.377508,0.883399,0.367832,0.830698,0.319889,0.651019,0.892523,0.870924,0.682044,0.531893,0.0338322,0.590195,0.847016,0.825835,0.0553234,0.7511,0.0614344,0.972492,0.59189,0.0658088,0.367858,0.142966,0.534371,0.299166,0.079097,0.228931,0.702571,0.835,0.819175,0.513879,0.281549,0.608374,0.455268,0.559965,0.343453,0.409156,0.257874,0.0090239,0.933186,0.231589,0.791591,0.74714,0.29915,0.939107,0.664461,0.357985,0.7408,0.633015,0.145293,0.27661,0.557072,0.883564,0.916862,0.650933,0.495858,0.3505,0.939745,0.449557,0.554489,0.510567,0.605199,0.185546,0.252394,0.416307,0.0747492,0.601007,0.673583,0.934859,0.902746,0.372151,0.0571744,0.420532,0.438858,0.359492,0.0261757,0.0404372,0.834722,0.00189197,0.792233,0.874607,0.896386,0.241988,0.798292,0.101314,0.359843,0.907209,0.414472,0.604293,0.569366,0.025164,0.810119,0.173057,0.10939,0.61147,0.260257,0.108065,0.528726,0.607908,0.195526,0.601009,0.301312,0.0782489,0.789024,0.319726,0.222707,0.776626,0.207726,0.0392742,0.927252,0.014877,0.086219,0.730958,0.504126,0.069871,0.729103,0.298717,0.87313,0.452761,0.823399,0.260912,0.484158,0.096007,0.626354,0.652183,0.100236,0.438012,0.617469,0.35885,0.393643,0.169719,0.449215,0.0580264,0.0920842,0.792241,0.976243,0.16248,0.0792122,0.311418,0.192027,0.883932,0.614231,0.726705,0.922523,0.459556,0.422836,0.400733,0.668419,0.72028,0.919734,0.837178,0.241677,0.994654,0.182266,0.83536,0.859989,0.789319,0.318262,0.18703,0.839611,0.398001,0.51635,0.984086,0.733945,0.0949745,0.665391,0.505535,0.987089,0.481819,0.36606,0.64681,0.283806,0.381858,0.360757,0.191919,0.802806,0.628996,0.362529,0.116475,0.424568,0.517671,0.0366711,0.991036,0.796254,0.233293,0.606945,0.146753,0.809147,0.391526,0.76863,0.488367,0.697454,0.402298,0.9175,0.939559,0.563663,0.804098,0.205503,0.155756,0.680876,0.97823,0.910572,0.0163714,0.872155,0.841589,0.194052,0.0403945,0.93589,0.788445,0.252527,0.145108,0.0277276,0.591291,0.626216,0.0328064,0.310776,0.549878,0.362568,0.786412,0.496082,0.833665,0.0748186,0.827312,0.952546,0.0600981,0.755961,0.614208,0.460827,0.10039,0.163746,0.38941,0.950457,0.933087,0.713593,0.994267,0.142524,0.594668,0.235969,0.66374,0.234123,0.674484,0.783252,0.696437,0.438867,0.159675,0.601055,0.618011,0.85922,0.798827,0.454209,0.273255,0.740809,0.721541,0.176614,0.320196,0.24939,0.305497,0.0575224,0.922612,0.161727,0.942372,0.907176,0.573617,0.49793,0.0486795,0.211088,0.898548,0.168103,0.410429,0.467029,0.0432527,0.578409,0.386916,0.582699,0.933239,0.148102,0.126831,0.0209495,0.711003,0.310471,0.429612,0.427846,0.913474,0.700347,0.207661,0.106392,0.875669,0.665837,0.94603,0.702775,0.284953,0.125953,0.0165102,0.528781,0.942644,0.342859,0.207542,0.595931,0.388153,0.0412106,0.975575,0.0998319,0.984813,0.491603,0.244452,0.730405,0.817005,0.157394,0.848963,0.260757,0.714806,0.802476,0.142526,0.284778,0.0431022,0.943545,0.0135731,0.645869,0.751318,0.752712,0.249682,0.145511,0.49246,0.770669,0.418554,0.0575544,0.847065,0.160617,0.339524,0.923966,0.766017,0.416601,0.568716,0.59049,0.0855727,0.280116,0.451717,0.974474,0.529073,0.781209,0.250056,0.920975,0.571305,0.609221,0.0555838,0.645847,0.37342,0.698012,0.25518,0.622948,0.00813001,0.458515,0.151668,0.161713,0.851939,0.190038,0.179479,0.403293,0.0254512,0.633356,0.804493,0.692248,0.468573,0.557691,0.748322,0.774132,0.342414,0.117795,0.999534,0.229937,0.974731,0.559052,0.306824,0.49753,0.657791,0.737475,0.243029,0.120119,0.209659,0.850912,0.190009,0.569973,0.312322,0.668261,0.673778,0.139981,0.0393236,0.0794325,0.187211,0.906696,0.989787,0.0730605,0.687995,0.407054,0.510669,0.326706,0.939409,0.308602,0.94748,0.619388,0.081138,0.371954,0.24463,0.851689,0.133122,0.342065,0.871369,0.175927,0.510094,0.462733,0.660104,0.322445,0.200566,0.963307,0.541871,0.354562,0.134316,0.372203,0.626243,0.625545,0.984341,0.148455,0.582521,0.842512,0.548679,0.88109,0.822313,0.960529,0.0675553,0.760975,0.214628,0.612879,0.0221349,0.490526,0.86512,0.392892,0.0893425,0.636257,0.442248,0.585168,0.515882,0.862694,0.482909,0.379779,0.366989,0.0788219,0.332658,0.725697,0.659469,0.0139016,0.393387,0.812307,0.741248,0.454786,0.819064,0.141927,0.38982,0.688556,0.417734,0.544946,0.299533,0.72916,0.304938,0.648159,0.277769,0.995973,0.595165,0.828,0.166868,0.801395,0.494552,0.204637,0.0671173,0.466629,0.0621679,0.391731,0.78414,0.0568193,0.401699,0.960897,0.268861,0.556282,0.0263072,0.232416,0.061972,0.421139,0.139645,0.0794643,0.149485,0.9468,0.847971,0.995167,0.67956,0.729835,0.308668,0.00412768,0.253588,0.845957,0.463167,0.821624,0.330463,0.594276,0.164189,0.058459,0.905457,0.654251,0.415301,0.908319,0.666493,0.0260502,0.273678,0.383277,0.427734,0.856379,0.0803935,0.916927,0.312254,0.742146,0.439526,0.481522,0.371051,0.198993,0.771075,0.76466,0.474506,0.0353232,0.912107,0.293649,0.858325,0.628735,0.422877,0.826519,0.214779,0.116277,0.0743877,0.357622,0.669431,0.152269,0.589309,0.477741,0.834545,0.761395,0.759276,0.862218,0.833576,0.399559,0.250894,0.712143,0.0292472,0.262479,0.0774392,0.0149288,0.113514,0.565633,0.686524,0.665956,0.367052,0.361011,0.252406,0.422258,0.308548,0.154231,0.0590565,0.485991,0.27945,0.541273,0.188548,0.326918,0.369602,0.62569,0.219591,0.303479,0.188174,0.298428,0.0947362,0.389822,0.516349,0.244588,0.177531,0.765494,0.787251,0.545236,0.704534,0.125583,0.499148,0.114623,0.0605079,0.547036,0.58818,0.927069,0.377533,0.0617439,0.286197,0.66321,0.426748,0.642059,0.358865,0.567703,0.672011,0.608581,0.822171,0.637481,0.69709,0.767107,0.0169305,0.45525,0.268163,0.0791939,0.353715,0.705966,0.386887,0.786764,0.0355671,0.551885,0.730601,0.668227,0.297649,0.411428,0.705162,0.188847,0.382224,0.681046,0.38939,0.9246,0.0295784,0.175209,0.183078,0.866615,0.384873,0.750682,0.265616,0.751922,0.722993,0.47722,0.792184,0.132778,0.0946593,0.633647,0.0969024,0.808609,0.36772,0.888259,0.783881,0.851962,0.217948,0.199061,0.614131,0.827312,0.527688,0.631166,0.389003,0.9315,0.69905,0.447771,0.147851,0.593455,0.721612,0.500962,0.667272,0.529124,0.514768,0.526035,0.928434,0.69622,0.567467,0.117169,0.226653,0.812426,0.967901,0.017571,0.326962,0.396941,0.56827,0.166809,0.430078,0.691087,0.0398261,0.0744814,0.0552744,0.841584,0.00555658,0.361273,0.913778,0.809988,0.329655,0.812863,0.417674,0.470037,0.308153,0.855313,0.0231681,0.0860412,0.129241,0.876214,0.00554079,0.784147,0.836597,0.997096,0.582543,0.682388,0.62901,0.271479,0.0543892,0.836335,0.879654,0.0344206,0.463886,0.862468,0.340548,0.784152,0.882539,0.864579,0.534123,0.778273,0.908116,0.0570214,0.89732,0.787658,0.973479,0.692436,0.247095,0.261864,0.145497,0.24683,0.895252,0.470412,0.139712,0.952464,0.635252,0.169659,0.24549,0.82039,0.848095,0.379642,0.163194,0.746744,0.968558,0.514118,0.65175,0.277135,0.823678,0.245642,0.123268,0.628138,0.54043,0.921498,0.765252,0.614701,0.97475,0.614567,0.832293,0.353761,0.454046,0.398813,0.217308,0.643783,0.951395,0.337906,0.43211,0.175826,0.231189,0.775206,0.479222,0.152744,0.106069,0.780282,0.406504,0.909438,0.268383,0.073096,0.558419,0.121572,0.865967,0.331236,0.603942,0.850815,0.946045,0.479248,0.218835,0.920177,0.322686,0.2865,0.390906,0.958871,0.783243,0.839615,0.52902,0.620493,0.680528,0.224529,0.953668,0.583973,0.515715,0.170091,0.101432,0.576685,0.673709,0.623814,0.114236,0.682745,0.762452,0.576184,0.913866,0.362022,0.378721,0.28177,0.696448,0.577545,0.39037,0.335971,0.0102944,0.931816,0.150559,0.00617486,0.233746,0.358647,0.26292,0.179088,0.855704,0.525727,0.592377,0.642099,0.386047,0.420794,0.532011,0.821064,0.829667,0.743666,0.960058,0.0684993,0.347885,0.810703,0.741028,0.53828,0.879036,0.512174,0.802754,0.407665,0.27455,0.835214,0.762473,0.546602,0.510331,0.280664,0.235443,0.923961,0.782525,0.649847,0.508133,0.950732,0.684677,0.766309,0.436389,0.123413,0.0208228,0.000914454,0.826692,0.79392,0.0657864,0.772999,0.540811,0.814197,0.655522,0.165946,0.71495,0.422946,0.357034,0.88525,0.791725,0.283886,0.817375,0.381371,0.72318,0.68589,0.264938,0.713279,0.839773,0.761858,0.141418,0.426795,0.503743,0.96041,0.127139,0.957618,0.949968,0.951931,0.198994,0.365114,0.317165,0.103532,0.923146,0.967004,0.285123,0.910327,0.0481228,0.642199,0.719169,0.0400353,0.849561,0.194619,0.530428,0.333811,0.282517,0.494022,0.798193,0.280681,0.563805,0.02741,0.634398,0.549321,0.958154,0.198024,0.748962,0.662674,0.94758,0.93315,0.810335,0.214634,0.95911,0.445951,0.432266,0.745913,0.440886,0.677456,0.322768,0.899629,0.875019,0.964936,0.907292,0.46141,0.0728724,0.401192,0.294118,0.514127,0.4577,0.800307,0.42772,0.735717,0.293109,0.11867,0.00194669,0.629232,0.499317,0.996494,0.187431,0.592933,0.719358,0.335955,0.139218,0.157021,0.559645,0.53755,0.82497,0.459335,0.0543471,0.0755044,0.628979,0.285066,0.833758,0.212631,0.119967,0.397952,0.495957,0.952932,0.568625,0.133685,0.614246,0.440266,0.21509,0.855559,0.996138,0.323987,0.10398,0.15728,0.750157,0.707998,0.807326,0.258142,0.873108,0.606782,0.605726,0.768902,0.325897,0.688503,0.752665,0.0926932,0.240448,0.870003,0.555951,0.931898,0.690428,0.844963,0.303124,0.888193,0.836712,0.0407364,|0.271966,0.241518,0.397749,0.824317,0.351309,0.451576,0.109507,0.45651,0.713771,0.0185254,0.86293,0.420289,0.569001,0.471124,0.416363,0.0838992,0.378695,0.587405,0.563212,0.778069,0.610764,0.655106,0.149289,0.556944,0.704757,0.505622,0.102838,0.640699,0.501756,0.647717,0.966216,0.410496,0.797516,0.108137,0.125317,0.203925,0.592505,0.743816,0.764182,0.198403,0.374317,0.107038,0.245223,0.381036,0.247904,0.438731,0.728003,0.562666,0.993722,0.534986,0.638118,0.868971,0.201279,0.471621,0.156539,0.235676,0.44318,0.14168,0.978048,0.849554,0.453049,0.546776,0.0393701,0.463819,0.678572,0.857099,0.408525,0.381869,0.382859,0.614799,0.811644,0.16626,0.521866,0.17956,0.391478,0.459839,0.345991,0.945213,0.0539727,0.624518,0.928378,0.0934685,0.356535,0.734273,0.374207,0.808865,0.0938316,0.579088,0.829457,0.240247,0.57183,0.86952,0.989394,0.473406,0.830945,0.515052,0.213535,0.0186557,0.0381115,0.425902,0.784608,0.408737,0.995308,0.431543,0.242943,0.789972,0.964819,0.744141,0.461209,0.711483,0.971415,0.082925,0.515913,0.632774,0.170184,0.811016,0.763928,0.143706,0.579301,0.190566,0.678064,0.875811,0.297391,0.962946,0.750437,0.992261,0.754244,0.839597,0.46543,0.776956,0.453535,0.690056,0.0932491,0.810904,0.862989,0.531369,0.2316,0.66862,0.24049,0.43983,0.0269748,0.0795791,0.141626,0.951953,0.542076,0.617684,0.352359,0.133911,0.423426,0.607638,0.830503,0.155316,0.0254648,0.610857,0.428401,0.0760285,0.825455,0.450069,0.656514,0.758641,0.104416,0.584091,0.993218,0.813447,0.957599,0.671665,0.641371,0.527636,0.682183,0.071128,0.472077,0.371345,0.57016,0.127235,0.552852,0.890257,0.198078,0.584831,0.220351,0.600545,0.66632,0.391349,0.92657,0.77403,0.0894793,0.0640249,0.161238,0.590113,0.269239,0.272759,0.641036,0.0804744,0.7566,0.808643,0.897753,0.162763,0.718837,0.3583,0.87206,0.711272,0.38505,0.409558,0.142345,0.402209,0.650441,0.487559,0.815885,0.407894,0.528544,0.426016,0.449623,0.623411,0.619474,0.205704,0.721871,0.885576,0.991071,0.671613,0.947778,0.535998,0.490555,0.372608,0.260846,0.831718,0.622556,0.395286,0.937463,0.986682,0.795103,0.937795,0.798617,0.956437,0.748118,0.247637,0.156292,0.993543,0.348387,0.6629,0.898386,0.290514,0.982943,0.901114,0.675472,0.519338,0.205171,0.815697,0.309466,0.723611,0.539401,0.657526,0.0132071,0.963888,0.654671,0.549248,0.0192304,0.176817,0.456598,0.149332,0.377226,0.278445,0.529271,0.347974,0.961775,0.339102,0.974746,0.668635,0.123481,0.284938,0.296022,0.731015,0.200571,0.592719,0.689638,0.443614,0.98996,0.122371,0.868513,0.787556,0.118113,0.481391,0.903108,0.399753,0.151395,0.984091,0.201495,0.584938,0.924795,0.738334,0.022655,0.949373,0.928536,0.600165,0.158222,0.59553,0.449368,0.293882,0.0478091,0.568792,0.945716,0.68917,0.991225,0.347994,0.418868,0.130436,0.283758,0.676614,0.218841,0.0063684,0.552603,0.414881,0.0140257,0.382963,0.6924,0.758976,0.144688,0.394593,0.649212,0.775163,0.376476,0.370283,0.229627,0.0227336,0.268191,0.73049,0.55681,0.814564,0.669186,0.579767,0.654627,0.907361,0.653532,0.517209,0.987618,0.150189,0.29925,0.317415,0.793971,0.31593,0.381602,0.0862924,0.080501,0.562558,0.244647,0.548806,0.375031,0.22066,0.562312,0.261769,0.850162,0.796101,0.873104,0.52621,0.62831,0.714816,0.114367,0.149666,0.232116,0.0402722,0.288385,0.946033,0.493329,0.468573,0.251921,0.341374,0.0389464,0.4034,0.133355,0.00544035,0.236838,0.832181,0.943174,0.0833675,0.183809,0.566723,0.207342,0.3943,0.931767,0.217526,0.901428,0.487963,0.2105,0.631924,0.475143,0.0691235,0.646118,0.00353909,0.0414698,0.580561,0.108393,0.0605447,0.922572,0.982804,0.229622,0.772065,0.450846,0.0933875,0.397179,0.88181,0.0052765,0.270704,0.664773,0.299459,0.194254,0.311701,0.72111,0.61623,0.996826,0.59604,0.988307,0.810395,0.957983,0.70653,0.815478,0.68596,0.141862,0.127649,0.712505,0.936365,0.384405,0.348378,0.0563831,0.369508,0.774626,0.100863,0.668743,0.350189,0.545175,0.217413,0.850171,0.186,0.545293,0.686225,0.905223,0.668162,0.733982,0.587402,0.936872,0.895762,0.951523,0.99503,0.733557,0.89376,0.937954,0.0947389,0.545016,0.326979,0.340253,0.851757,0.690297,0.960279,0.925634,0.839172,0.502793,0.244341,0.637485,0.207089,0.768794,0.861139,0.899389,0.109289,0.443816,0.0536174,0.0217916,0.290731,0.0828326,0.81527,0.779054,0.753752,0.464842,0.554453,0.339081,0.693412,0.930233,0.873104,0.385531,0.414076,0.23213,0.564016,0.730205,0.0980865,0.949793,0.654256,0.956822,0.758576,0.730397,0.24366,0.478658,0.308703,0.713453,0.427978,0.110205,0.541761,0.521242,0.577569,0.80855,0.465901,0.0922075,0.387202,0.418,0.719642,0.236239,0.596233,0.939289,0.978535,0.0626799,0.737136,0.0647004,0.430425,0.159592,0.648014,0.119301,0.93604,0.0251793,0.5772,0.449861,0.136559,0.449251,0.839332,0.19936,0.914608,0.0191699,0.775849,0.538238,0.173873,0.929918,0.444714,0.853794,0.34191,0.993563,0.384961,0.28865,0.352359,0.581195,0.622495,0.0972731,0.752878,0.416172,0.522608,0.573033,0.232875,0.0519867,0.63027,0.220826,0.179839,0.876672,0.071214,0.291588,0.174819,0.751977,0.509256,0.239013,0.903985,0.90463,0.969826,0.942026,0.962559,0.787934,0.236601,0.586654,0.431705,0.154157,0.752553,0.987718,0.230539,0.300914,0.598174,0.0117954,0.0321609,0.314664,0.853917,0.36735,0.520462,0.0458547,0.724053,0.617248,0.0559224,0.869323,0.738338,0.379083,0.405297,0.651129,0.765272,0.781494,0.779629,0.337587,0.283392,0.130579,0.299135,0.843039,0.43867,0.132962,0.0107321,0.0684962,0.41844,0.555536,0.599054,0.608352,0.0906666,0.567007,0.463717,0.661922,0.267399,0.230724,0.150521,0.420384,0.549499,0.922151,0.584852,0.794897,0.615768,0.430333,0.573555,0.707143,0.354144,0.637899,0.500312,0.403688,0.518756,0.357413,0.637152,0.72602,0.221304,0.237125,0.45052,0.616281,0.917719,0.3021,0.964917,0.206947,0.980874,0.439402,0.899191,0.695822,0.335056,0.490636,0.852618,0.885139,0.111166,0.997188,0.361617,0.165563,0.631145,0.693996,0.596378,0.745483,0.856632,0.764342,0.4084,0.343301,0.193702,0.110656,0.425689,0.884167,0.709028,0.977592,0.8813,0.515797,0.952983,0.673384,0.274175,0.418932,0.515907,0.451177,0.0205122,0.282594,0.91157,0.859932,0.612098,0.427391,0.0388244,0.983833,0.304214,0.793575,0.557253,0.890095,0.526074,0.967771,0.577818,0.0134053,0.307525,0.790182,0.325894,0.34214,0.837875,0.659054,0.183183,0.302941,0.323135,0.061562,0.121152,0.607893,0.344067,0.20572,0.683417,0.787591,0.959596,0.271934,0.371781,0.340185,0.215114,0.0326324,0.835918,0.699881,0.25203,0.769493,0.106378,0.689162,0.243247,0.777054,0.0367562,0.874239,0.061184,0.445637,0.298152,0.94585,0.551379,0.464292,0.139506,0.417931,0.411151,0.410588,0.655618,0.20238,0.800988,0.325791,0.607074,0.514486,0.334509,0.862167,0.397766,0.84152,0.0438555,0.434967,0.999588,0.188609,0.344658,0.501161,0.694239,0.569633,0.702572,0.691944,0.282188,0.182656,0.906938,0.591548,0.819454,0.133919,0.410038,0.571087,0.220949,0.0916477,0.395262,0.110124,0.245829,0.911601,0.67357,0.221321,0.71816,0.41431,0.154875,0.468674,0.00934821,0.806146,0.273323,0.0560872,0.448438,0.661795,0.569085,0.43348,0.247345,0.610373,0.147381,0.989313,0.49299,0.139448,0.584011,0.460976,0.285488,0.333718,0.759648,0.283641,0.637524,0.316202,0.648808,0.804557,0.671201,0.548812,0.815769,0.600647,0.960058,0.847121,0.282428,0.132653,0.183548,0.143888,0.309495,0.248941,0.091653,0.928491,0.207714,0.258782,0.736583,0.8927,0.586266,0.335526,0.673182,0.834829,0.51526,0.0926424,0.471326,0.0775743,0.916471,0.542422,0.201097,0.0326393,0.629244,0.965045,0.370375,0.531448,0.053544,0.737587,0.877948,0.424679,0.490473,0.893226,0.990999,0.825363,0.930727,0.359608,0.440448,0.591507,0.886255,0.079805,0.622601,0.352922,0.487562,0.0326149,0.798737,0.225167,0.398214,0.989368,0.499538,0.0683181,0.787951,0.918531,0.415528,0.563569,0.953474,0.148569,0.219858,0.662198,0.346711,0.18878,0.150714,0.807872,0.839418,0.547971,0.981847,0.901186,0.723095,0.767918,0.81024,0.456853,0.01499,0.199003,0.552039,0.770722,0.452817,0.936379,0.35359,0.852496,0.476946,0.147692,0.342489,0.868689,0.138853,0.065559,0.942252,0.801826,0.815623,0.408108,0.363024,0.629715,0.485436,0.940504,0.101834,0.718962,0.821175,0.170519,0.184609,0.117415,0.40735,0.0235663,0.481578,0.343235,0.749862,0.924022,0.338033,0.751838,0.859835,0.811075,0.81717,0.84862,0.240407,0.617223,0.371356,0.473641,0.975883,0.335064,0.772535,0.32499,0.343298,0.153486,0.294905,0.24538,0.852294,0.455361,0.811557,0.117839,0.11064,0.802048,0.0255666,0.742815,0.598625,0.677025,0.248901,0.89898,0.434218,0.718255,0.373967,0.0408633,0.716452,0.429445,0.5416,0.200768,0.57554,0.476018,0.250634,0.229232,0.520721,0.847376,0.300215,0.327468,0.327404,0.563986,0.952784,0.420163,0.144049,0.839532,0.09342,0.505892,0.722227,0.239991,0.310471,0.390737,0.705221,0.0254025,0.450194,0.388912,0.323173,0.403742,0.804489,0.118451,0.353871,0.482861,0.574773,0.403131,0.120792,0.22795,0.664896,0.107646,0.257225,0.899668,0.711066,0.160524,0.294363,0.0456939,0.687845,0.817357,0.89444,0.761775,0.639997,0.138378,0.0601074,0.308961,0.746433,0.462472,0.117432,0.694629,0.19231,0.920147,0.491922,0.36905,0.281798,0.127242,0.0773492,0.0475669,0.534954,0.185624,0.647663,|0.722123,0.0514653,0.0420899,0.642161,0.418746,0.404808,0.354047,0.157935,0.957441,0.855387,0.579946,0.530782,0.367673,0.73508,0.900021,0.973952,0.130411,0.196054,0.553976,0.253696,0.0218062,0.506737,0.473425,0.349011,0.148964,0.320719,0.161044,0.84425,0.806308,0.526526,0.42277,0.954221,0.0587137,0.0994551,0.985507,0.423803,0.460276,0.0103357,0.654052,0.342374,0.664218,0.134757,0.986547,0.680255,0.0302325,0.538008,0.443114,0.451442,0.370955,0.435793,0.0233698,0.203644,0.684802,0.422232,0.437453,0.466694,0.237007,0.0986016,0.977286,0.274304,0.369554,0.589585,0.507742,0.763692,0.403352,0.0625917,0.803938,0.0684466,0.828321,0.669156,0.499497,0.499862,0.443212,0.223668,0.983324,0.630099,0.864477,0.69049,0.755754,0.607543,0.185789,0.667645,0.11866,0.191575,0.530747,0.540175,0.0222834,0.761597,0.0356164,0.150717,0.156792,0.819551,0.725987,0.761304,0.831485,0.109835,0.980876,0.236348,0.902663,0.829894,0.62999,0.0189577,0.117861,0.199249,0.968047,0.0575487,0.258296,0.416949,0.228011,0.911666,0.979449,0.866585,0.261266,0.237094,0.534852,0.68982,0.368263,0.884035,0.250278,0.0275937,0.682711,0.843974,0.204364,0.893219,0.511226,0.697813,0.780952,0.64093,0.811593,0.959093,0.43314,0.958734,0.377946,0.0446941,0.417918,0.55303,0.41199,0.55033,0.532797,0.250924,0.0985079,0.840283,0.293528,0.0797051,0.994444,0.434794,0.885314,0.755191,0.922622,0.47988,0.771948,0.395738,0.23631,0.31814,0.965253,0.580957,0.720795,0.586754,0.206227,0.554231,0.385236,0.876738,0.70245,0.468181,0.616458,0.0865088,0.125702,0.393841,0.943635,0.450346,0.317179,0.739955,0.544386,0.279534,0.120462,0.51531,0.691634,0.182294,0.210048,0.419766,0.372944,0.849285,0.979525,0.196442,0.946346,0.427453,0.783978,0.521164,0.130558,0.163164,0.272256,0.633966,0.749581,0.887283,0.517876,0.290041,0.135111,0.947738,0.0142505,0.319861,0.233493,0.245087,0.294993,0.538576,0.643762,0.784251,0.795264,0.788577,0.377064,0.0105034,0.260032,0.647048,0.365121,0.628818,0.214494,0.387708,0.155008,0.77383,0.682805,0.974128,0.289786,0.0746171,0.450766,0.926534,0.17178,0.667703,0.647384,0.366947,0.809934,0.631077,0.945726,0.612885,0.663473,0.639399,0.720179,0.573993,0.442231,0.730222,0.181428,0.514179,0.950279,0.751431,0.545733,0.574443,0.917982,0.329922,0.709852,0.534552,0.556263,0.0702246,0.132768,0.56622,0.505122,0.447718,0.482044,0.540295,0.662419,0.408524,0.763489,0.209615,0.72381,0.22114,0.0078271,0.0788601,0.258332,0.0984404,0.527049,0.657334,0.54351,0.820428,0.715178,0.316117,0.75165,0.968551,0.734056,0.461681,0.45797,0.983664,0.227219,0.656875,0.230814,0.765537,0.567255,0.265527,0.793498,0.576142,0.320446,0.52377,0.288887,0.174078,0.23355,0.0558388,0.867364,0.691028,0.721947,0.895281,0.815023,0.380892,0.0195389,0.764264,0.878686,0.0456961,0.35947,0.201996,0.39821,0.430407,0.406834,0.00997633,0.0742574,0.465901,0.796381,0.18656,0.872533,0.765917,0.865934,0.206204,0.678344,0.878115,0.275935,0.530407,0.82755,0.512077,0.690063,0.816449,0.619552,0.590221,0.501898,0.521862,0.0266567,0.235338,0.887153,0.813975,0.551597,0.914421,0.943152,0.741152,0.24946,0.0992656,0.663875,0.601371,0.372399,0.351937,0.845647,0.604955,0.742336,0.349349,0.833879,0.006787,0.0678496,0.776895,0.346609,0.159721,0.548215,0.303379,0.506461,0.208886,0.560838,0.0602407,0.464025,0.616224,0.0764459,0.317786,0.0571706,0.037896,0.193979,0.665473,0.650637,0.192707,0.373663,0.783191,0.545933,0.675606,0.543132,0.960526,0.826085,0.0755822,0.67434,0.775295,0.0947876,0.408863,0.967932,0.0922225,0.599127,0.523742,0.655776,0.926911,0.961908,0.442814,0.0401924,0.967259,0.0320418,0.045846,0.384283,0.844397,0.858366,0.414753,0.580394,0.0669463,0.305987,0.23459,0.262204,0.20197,0.629142,0.452954,0.548145,0.446916,0.743824,0.0977206,0.12686,0.041293,0.530731,0.286478,0.0754388,0.377865,0.463628,0.125984,0.0433228,0.135312,0.246726,0.900191,0.844576,0.942317,0.611075,0.613111,0.616358,0.249166,0.318186,0.900548,0.845239,0.0652447,0.806656,0.272202,0.417137,0.97383,0.741734,0.205949,0.685291,0.445269,0.347389,0.574999,0.384338,0.437834,0.287103,0.400014,0.128405,0.871601,0.593295,0.333158,0.668905,0.766005,0.6933,0.500833,0.996218,0.334825,0.456704,0.956105,0.109823,0.366761,0.249967,0.601651,0.242537,0.745492,0.545385,0.497011,0.206018,0.937372,0.619001,0.671081,0.707962,0.834736,0.153548,0.871618,0.479145,0.81936,0.916609,0.206741,0.838764,0.850765,0.553439,0.28922,0.683005,0.653371,0.0705171,0.641144,0.910465,0.122719,0.742214,0.153601,0.186835,0.903339,0.689138,0.0190055,0.976908,0.40971,0.974431,0.875469,0.982904,0.678104,0.746355,0.850937,0.866747,0.0842397,0.842344,0.973787,0.630397,0.578842,0.395031,0.446998,0.337837,0.29614,0.741107,0.758844,0.243086,0.361146,0.306968,0.447556,0.0346677,0.924789,0.391094,0.271645,0.370772,0.783777,0.650633,0.555917,0.934849,0.825662,0.523007,0.0249428,0.364002,0.568959,0.584186,0.706159,0.0689161,0.0941033,0.172978,0.848069,0.210986,0.42687,0.311742,0.262448,0.0123912,0.721016,0.550979,0.984935,0.840446,0.0689389,0.458906,0.743662,0.159965,0.0971462,0.333682,0.878431,0.607453,0.741441,0.793919,0.204442,0.460441,0.486857,0.387518,0.357056,0.790741,0.961026,0.712909,0.832558,0.307286,0.258375,0.185008,0.550114,0.661096,0.455121,0.499479,0.389491,0.373062,0.657336,0.21731,0.779173,0.886671,0.958261,0.909098,0.365865,0.601676,0.881573,0.130767,0.169817,0.528846,0.876563,0.108366,0.93286,0.879973,0.610534,0.744653,0.933857,0.752241,0.599389,0.0068776,0.665162,0.389471,0.383178,0.0907751,0.425588,0.0505199,0.644631,0.488948,0.577724,0.058787,0.350656,0.0579417,0.163539,0.415366,0.689354,0.456092,0.369063,0.328855,0.724929,0.301933,0.680045,0.955542,0.216258,0.152573,0.427861,0.94504,0.48417,0.222307,0.560043,0.978765,0.665691,0.431622,0.737225,0.945822,0.623029,0.46731,0.206341,0.317593,0.10323,0.175516,0.988284,0.362342,0.166151,0.270395,0.250448,0.197112,0.0907406,0.14251,0.319644,0.891483,0.369422,0.749319,0.129683,0.316149,0.464671,0.859033,0.483821,0.899797,0.362848,0.957763,0.945902,0.609614,0.0937827,0.738422,0.651825,0.898031,0.354684,0.838698,0.260826,0.905435,0.205254,0.0438233,0.13866,0.520412,0.991887,0.603327,0.110325,0.389265,0.35229,0.403227,0.331825,0.0926877,0.143655,0.505461,0.490093,0.0681685,0.871551,0.563918,0.795481,0.113074,0.886686,0.198743,0.855358,0.61505,0.287286,0.594472,0.277704,0.186911,0.290592,0.117107,0.404679,0.163958,0.951228,0.320373,0.836694,0.741691,0.804233,0.129223,0.00921404,0.592656,0.324685,0.880218,0.528372,0.497284,0.197437,0.882375,0.317742,0.202765,0.424724,0.569936,0.67515,0.961179,0.468848,0.527724,0.85664,0.0682935,0.997542,0.543002,0.770453,0.107687,0.69739,0.0102661,0.630094,0.685376,0.232212,0.607766,0.797616,0.837851,0.828107,0.156596,0.37379,0.279436,0.442281,0.831842,0.948381,0.296761,0.68243,0.203282,0.604938,0.46289,0.684894,0.878278,0.446048,0.966539,0.190134,0.41873,0.274311,0.70868,0.856758,0.371115,0.025332,0.522626,0.170314,0.00150967,0.770826,0.115498,0.734896,0.725827,0.0319397,0.500445,0.0442951,0.294331,0.151008,0.813114,0.0227684,0.725901,0.232075,0.758717,0.51199,0.43144,0.136785,0.791159,0.976905,0.378159,0.964045,0.875312,0.00241822,0.938834,0.619243,0.294401,0.943988,0.019821,0.832555,0.645339,0.219887,0.85948,0.614822,0.769303,0.67421,0.628367,0.148669,0.525171,0.480439,0.4717,0.22898,0.862317,0.851723,0.631451,0.862479,0.323673,0.776045,0.969071,0.347222,0.432835,0.125148,0.208202,0.188232,0.596864,0.491758,0.132864,0.909378,0.236758,0.925765,0.0144983,0.305351,0.340685,0.130456,0.795231,0.245247,0.834053,0.893517,0.82178,0.325658,0.963265,0.313013,0.775042,0.0983366,0.944273,0.552349,0.813541,0.286804,0.722666,0.88452,0.162918,0.515779,0.846992,0.867422,0.6614,0.231808,0.735626,0.672265,0.0269067,0.591921,0.516794,0.97509,0.336821,0.364461,0.403933,0.47007,0.347374,0.275297,0.114101,0.119095,0.0352491,0.998389,0.987015,0.514973,0.323282,0.550281,0.33962,0.930736,0.158927,0.340961,0.399469,0.94874,0.646503,0.827368,0.74945,0.353495,0.220029,0.717109,0.271145,0.908581,0.427124,0.454017,0.978905,0.510524,0.725882,0.774931,0.647079,0.768068,0.321607,0.464304,0.866554,0.257999,0.4934,0.868314,0.114051,0.270237,0.172095,0.819964,0.603863,0.53046,0.75192,0.545955,0.182369,0.713625,0.10685,0.0692018,0.477556,0.0337955,0.807388,0.263993,0.602761,0.883413,0.910449,0.253738,0.126641,0.156729,0.178623,0.728691,0.99479,0.968853,0.469392,0.346654,0.836056,0.478535,0.182151,0.44714,0.730944,0.0496411,0.179068,0.678177,0.437765,0.84028,0.294461,0.736584,0.170852,0.277626,0.219935,0.0504937,0.478184,0.642537,0.0287156,0.0779251,0.240477,0.654701,0.69287,0.238469,0.726971,0.208529,0.225336,0.737757,0.448193,0.555755,0.59485,0.52261,0.475156,0.502733,0.15242,0.101029,0.872387,0.882721,0.53642,0.542701,0.139777,0.812313,0.571128,0.971033,0.59478,0.151623,0.882075,0.906971,0.119404,0.314426,0.321756,0.191049,0.29704,0.712995,0.156533,0.224018,0.742017,0.968209,0.755398,0.528272,0.832536,0.520902,0.996242,0.574219,0.315246,0.439401,0.418292,0.824503,0.498886,0.799478,0.647285,0.0121888,0.778949,0.312097,0.755059,0.299271,0.365443,0.0621429,0.920916,0.680713,|0.181675,0.787962,0.363096,0.578044,0.879105,0.225348,0.649009,0.0719315,0.30298,0.760292,0.246297,0.989069,0.701946,0.0742974,0.508579,0.889758,0.632787,0.552882,0.164347,0.119335,0.188067,0.133579,0.65906,0.982572,0.818082,0.6838,0.495226,0.606988,0.528109,0.713982,0.621794,0.204533,0.138108,0.743435,0.255338,0.1772,0.722464,0.816291,0.104303,0.577948,0.576982,0.54223,0.651037,0.598274,0.527227,0.13869,0.0802674,0.948376,0.927519,0.50196,0.141592,0.96492,0.60654,0.482257,0.655606,0.0912079,0.874176,0.366042,0.537476,0.612686,0.917517,0.377197,0.00145018,0.296964,0.191247,0.710202,0.737488,0.546996,0.0451663,0.285785,0.846522,0.780708,0.474789,0.0550103,0.540227,0.541249,0.883038,0.742431,0.644966,0.8998,0.718656,0.179883,0.30795,0.644325,0.72095,0.568322,0.481665,0.375415,0.0257765,0.739233,0.805592,0.453195,0.169808,0.296069,0.817327,0.800697,0.587748,0.244007,0.779529,0.800763,0.111569,0.469628,0.0592436,0.439955,0.324516,0.855058,0.538805,0.0220079,0.753143,0.1532,0.0442468,0.735769,0.181152,0.876053,0.973666,0.776815,0.147442,0.0673367,0.700891,0.248192,0.860969,0.321506,0.0850077,0.636953,0.0337593,0.72111,0.545255,0.892982,0.0954142,0.521166,0.223651,0.119723,0.487396,0.0379419,0.0793538,0.0843484,0.156296,0.0490516,0.84972,0.597742,0.978753,0.183228,0.876336,0.539825,0.327694,0.0141459,0.710416,0.701691,0.30116,0.844376,0.477979,0.533574,0.312298,0.348392,0.449709,0.720259,0.690354,0.756506,0.516898,0.76956,0.422434,0.729854,0.0822235,0.375733,0.36886,0.313811,0.647983,0.223976,0.15821,0.914289,0.34631,0.677955,0.0952866,0.919264,0.575924,0.24263,0.932548,0.732069,0.480885,0.554126,0.620314,0.499966,0.424675,0.125345,0.82881,0.503243,0.96396,0.60219,0.342111,0.242209,0.150884,0.379011,0.314374,0.388494,0.240906,0.605629,0.231194,0.818883,0.267509,0.312969,0.145467,0.42009,0.402317,0.83735,0.579367,0.615005,0.965843,0.34217,0.503148,0.614695,0.423754,0.545677,0.0892595,0.73111,0.962406,0.90433,0.188299,0.863553,0.969503,0.559608,0.543853,0.0699816,0.627234,0.110685,0.925487,0.980348,0.674725,0.467903,0.348782,0.636682,0.344352,0.915575,0.157976,0.985558,0.712488,0.864154,0.927481,0.274864,0.0108402,0.294087,0.840231,0.60816,0.231254,0.718239,0.434297,0.623954,0.45866,0.132333,0.718599,0.0851979,0.252707,0.593768,0.14386,0.322789,0.292919,0.129399,0.805814,0.629806,0.467194,0.0217824,0.73309,0.685298,0.715769,0.786072,0.530375,0.769148,0.345553,0.157903,0.0693529,0.465351,0.554861,0.235489,0.824786,0.119424,0.11596,0.641144,0.960053,0.873892,0.206331,0.671858,0.797974,0.402997,0.240064,0.389365,0.894165,0.0611801,0.53323,0.357358,0.0307024,0.8249,0.492504,0.353007,0.13189,0.988637,0.00537461,0.81585,0.845061,0.371388,0.983624,0.591917,0.0403693,0.107739,0.655731,0.118024,0.348801,0.813144,0.875175,0.25132,0.090983,0.0732616,0.435368,0.582051,0.367349,0.107363,0.537953,0.286872,0.707734,0.147881,0.795089,0.465963,0.607315,0.827586,0.720135,0.477218,0.6791,0.435844,0.621227,0.931261,0.86891,0.614821,0.0267721,0.319583,0.6923,0.173229,0.352851,0.428163,0.0569407,0.939533,0.67167,0.672669,0.477913,0.711413,0.978853,0.238074,0.2034,0.716942,0.112779,0.862521,0.770912,0.753627,0.550611,0.833159,0.288796,0.588643,0.481707,0.788199,0.417488,0.399661,0.443628,0.49928,0.362544,0.278531,0.198366,0.436546,0.0609946,0.249168,0.61793,0.151726,0.468831,0.066025,0.992128,0.956937,0.329753,0.0793644,0.512982,0.48666,0.044753,0.0477769,0.117903,0.189514,0.55794,0.8573,0.0379087,0.112563,0.691864,0.619959,0.396975,0.0914625,0.98311,0.885269,0.825399,0.489454,0.302926,0.49486,0.908318,0.891444,0.903816,0.900798,0.897641,0.528836,0.0949696,0.397786,0.836738,0.124747,0.613041,0.49421,0.0306132,0.315551,0.0317396,0.81469,0.0899189,0.739618,0.422502,0.396713,0.782065,0.474395,0.0795252,0.713673,0.674697,0.734369,0.945176,0.824033,0.0598637,0.700088,0.934634,0.486217,0.239101,0.307604,0.366054,0.936989,0.0858359,0.645492,0.785347,0.92229,0.951837,0.168272,0.182438,0.757529,0.928335,0.0366148,0.632389,0.481908,0.474439,0.363201,0.669559,0.0935762,0.209378,0.56907,0.45809,0.826045,0.477255,0.971098,0.938641,0.393368,0.322948,0.841862,0.0500317,0.734275,0.911733,0.209139,0.269217,0.203109,0.47395,0.25606,0.252873,0.26873,0.668008,0.333102,0.0563895,0.67126,0.733116,0.143985,0.433374,0.58017,0.877466,0.433938,0.95039,0.0280911,0.77811,0.64479,0.904769,0.814447,0.574817,0.960839,0.418478,0.67958,0.636136,0.286724,0.91847,0.779106,0.0703928,0.410589,0.400639,0.784849,0.275138,0.399812,0.602713,0.45328,0.940234,0.0625313,0.708611,0.183226,0.925654,0.602744,0.454626,0.607453,0.423884,0.544658,0.423029,0.504782,0.0021767,0.155519,0.245102,0.446064,0.307287,0.0557194,0.538402,0.075952,0.321335,0.592622,0.931735,0.466366,0.869001,0.759264,0.513306,0.451534,0.390755,0.952185,0.262583,0.885492,0.506493,0.186319,0.919577,0.49202,0.417067,0.234682,0.752434,0.86267,0.214208,0.412265,0.281542,0.526052,0.916854,0.219878,0.930336,0.197831,0.869917,0.935547,0.106083,0.0400926,0.574266,0.428583,0.909178,0.135135,0.898552,0.805775,0.517533,0.778474,0.514822,0.0692598,0.660538,0.280323,0.843394,0.119928,0.368374,0.322968,0.0626473,0.633255,0.238615,0.422029,0.859132,0.619514,0.363378,0.348676,0.28009,0.495756,0.48625,0.0569665,0.367022,0.988927,0.74402,0.285115,0.424636,0.0657724,0.387324,0.563742,0.317698,0.347893,0.373771,0.666157,0.777586,0.45387,0.706917,0.672159,0.0514627,0.470552,0.959711,0.894914,0.81453,0.47576,0.751496,0.055389,0.280553,0.584304,0.176324,0.752205,0.754872,0.706758,0.224765,0.962478,0.125558,0.0414747,0.0865172,0.0259738,0.731131,0.510272,0.652,0.547051,0.376704,0.637293,0.346751,0.830882,0.869073,0.0904455,0.876673,0.9581,0.730691,0.615993,0.590185,0.223549,0.619237,0.0578874,0.964577,0.975013,0.234856,0.884273,0.956556,0.225511,0.409476,0.69103,0.670612,0.182699,0.128078,0.0542267,0.631776,0.486645,0.733437,0.666879,0.762257,0.947304,0.863128,0.460725,0.625184,0.791785,0.950121,0.06917,0.287433,0.603767,0.179362,0.588014,0.527631,0.26285,0.751336,0.193263,0.591658,0.0168729,0.063805,0.536644,0.226017,0.951252,0.880849,0.963387,0.07019,0.437511,0.772821,0.935732,0.657876,0.613212,0.121547,0.767706,0.3709,0.0997534,0.248924,0.480793,0.865978,0.653822,0.99922,0.444547,0.961064,0.459105,0.0271159,0.535893,0.231952,0.682076,0.719958,0.527556,0.860915,0.609694,0.397759,0.503073,0.966439,0.688776,0.350426,0.960918,0.09262,0.606715,0.694533,0.247457,0.116955,0.945448,0.120772,0.108726,0.0849695,0.523246,0.635846,0.468377,0.79165,0.147477,0.878152,0.650838,0.0293803,0.833789,0.108279,0.356544,0.495998,0.444617,0.716413,0.222623,0.545035,0.861423,0.735549,0.607337,0.236728,0.905682,0.0502002,0.525046,0.381854,0.221469,0.895771,0.0170853,0.587347,0.93645,0.325408,0.593331,0.612137,0.874574,0.342849,0.9114,0.708732,0.923964,0.584004,0.756223,0.582474,0.126835,0.199811,0.702345,0.528074,0.0303802,0.444714,0.925508,0.74008,0.710962,0.544608,0.0350969,0.412888,0.352718,0.921169,0.375436,0.781601,0.106391,0.442918,0.772021,0.336266,0.398719,0.811229,0.536059,0.101157,0.690507,0.989181,0.993256,0.0492174,0.265092,0.133372,0.517016,0.247315,0.912812,0.29895,0.163245,0.18825,0.337098,0.470285,0.975589,0.836401,0.886954,0.14968,0.713097,0.0538779,0.14519,0.420305,0.639557,0.649282,0.552805,0.442848,0.371833,0.128027,0.27892,0.311122,0.524589,0.578741,0.292174,0.85785,0.101925,0.531697,0.0893362,0.61246,0.291421,0.599227,0.69713,0.24215,0.948769,0.202615,0.637291,0.612688,0.119921,0.824378,0.622874,0.993757,0.599778,0.979104,0.698585,0.0680952,0.0957639,0.549448,0.626461,0.191832,0.0370789,0.17065,0.244114,0.27903,0.917098,0.605834,0.306481,0.182757,0.573788,0.817163,0.0167736,0.20587,0.601626,0.908291,0.125808,0.290168,0.743188,0.795248,0.479777,0.583656,0.48606,0.272827,0.486255,0.857194,0.684875,0.70955,0.283495,0.667441,0.608549,0.0895052,0.918473,0.791636,0.665064,0.340384,0.492267,0.673574,0.79893,0.483866,0.170793,0.774149,0.388157,0.0277604,0.0648433,0.623841,0.428312,0.603343,0.412679,0.911076,0.382152,0.737836,0.98594,0.45412,0.937944,0.230241,0.531026,0.839953,0.662212,0.835084,0.512037,0.810577,0.511835,0.623814,0.514751,0.0786161,0.894614,0.611108,0.378485,0.0522787,0.584624,0.368801,0.498572,0.324334,0.749232,0.564905,0.825973,0.0323292,0.168278,0.0271675,0.284757,0.357615,0.804991,0.846964,0.102036,0.759583,0.511638,0.266534,0.30197,0.366304,0.42753,0.492341,0.631164,0.603562,0.972675,0.728991,0.93273,0.139163,0.080856,0.812948,0.042254,0.200015,0.094959,0.927594,0.0662019,0.258137,0.428542,0.272797,0.238691,0.656445,0.157068,0.166697,0.479937,0.304007,0.97726,0.0254453,0.633048,0.913043,0.903758,0.85515,0.96898,0.661992,0.192648,0.449048,0.114891,0.609905,0.781704,0.136518,0.476148,0.324688,0.637114,0.910368,0.371573,0.915028,0.194473,0.309944,0.19787,0.738685,0.0284354,0.312693,0.594144,0.290504,0.555028,0.0810913,0.404613,0.0943912,0.818934,0.429589,0.501161,0.20376,0.129416,0.59261,0.426538,0.759317,0.346696,0.304572,0.259377,0.892412,0.435501,0.222647,0.227234,0.376163,0.504486,0.914286,0.300022,0.285707,0.563586,|0.372539,0.815454,0.474021,0.218939,0.626402,0.748768,0.425075,0.19398,0.0887317,0.470471,0.331767,0.636946,0.936256,0.571465,0.311635,0.189497,0.380659,0.964362,0.435321,0.888647,0.0279754,0.941289,0.810587,0.115183,0.337633,0.854304,0.704521,0.281831,0.250219,0.32961,0.711898,0.0200998,0.356443,0.81161,0.180117,0.191018,0.0251875,0.353528,0.763897,0.380936,0.280922,0.575089,0.866999,0.798362,0.55151,0.87609,0.63505,0.962987,0.726726,0.552684,0.561044,0.612982,0.977569,0.681868,0.255435,0.0775345,0.977872,0.729351,0.555246,0.374552,0.856858,0.98542,0.197533,0.173516,0.577887,0.266668,0.815344,0.852719,0.669475,0.988168,0.0134485,0.683029,0.139115,0.135421,0.909333,0.1271,0.748181,0.0170287,0.615605,0.980815,0.634711,0.194572,0.819883,0.456548,0.151812,0.449377,0.706221,0.981783,0.824382,0.678158,0.570678,0.831648,0.00557292,0.214057,0.0977898,0.447696,0.76848,0.613637,0.191619,0.836852,0.515653,0.182022,0.0197623,0.22328,0.264275,0.00618541,0.345445,0.548459,0.712166,0.803847,0.547769,0.335214,0.534542,0.495263,0.54215,0.63431,0.582031,0.579901,0.619191,0.302552,0.551211,0.915732,0.457226,0.453727,0.0712403,0.428592,0.0115142,0.662272,0.083899,0.30675,0.667419,0.689974,0.68795,0.556391,0.495609,0.489275,0.505013,0.613727,0.959642,0.32943,0.402647,0.345263,0.63264,0.209401,0.378046,0.107708,0.463702,0.161604,0.602499,0.0163013,0.684945,0.0482051,0.550486,0.809311,0.670063,0.854067,0.972081,0.790662,0.267968,0.611651,0.604143,0.879709,0.856532,0.262021,0.929542,0.0326492,0.753101,0.633158,0.445445,0.0939463,0.37424,0.71672,0.365978,0.377762,0.673644,0.191277,0.161496,0.270498,0.784029,0.694369,0.750191,0.770863,0.31083,0.965639,0.886007,0.944487,0.476895,0.555873,0.224054,0.0737817,0.219011,0.382145,0.127275,0.493259,0.692829,0.176846,0.801625,0.248105,0.741627,0.183874,0.23647,0.0404733,0.0114961,0.0465418,0.304127,0.298466,0.816695,0.676197,0.959618,0.744261,0.863023,0.667644,0.338584,0.625436,0.59696,0.846714,0.433367,0.506169,0.666819,0.217973,0.983314,0.57684,0.107415,0.205401,0.694423,0.321763,0.543309,0.393562,0.315425,0.231182,0.216706,0.0349428,0.503888,0.448615,0.149268,0.629061,0.241158,0.0756351,0.794039,0.729759,0.212396,0.644932,0.683124,0.689262,0.227534,0.762062,0.181688,0.0696457,0.107326,0.18709,0.630817,0.797827,0.498409,0.194511,0.738139,0.932241,0.804942,0.341164,0.805169,0.735585,0.095847,0.636188,0.486335,0.68855,0.106863,0.761477,0.654496,0.0433303,0.107087,0.0324996,0.117423,0.352826,0.276903,0.259394,0.915527,0.443816,0.677746,0.722756,0.118675,0.598148,0.923742,0.41934,0.217483,0.777178,0.332421,0.473582,0.980785,0.49125,0.23641,0.475385,0.780187,0.482297,0.492489,0.205946,0.835031,0.932857,0.0577789,0.977811,0.917058,0.525336,0.819913,0.631782,0.282989,0.945763,0.935215,0.674849,0.766265,0.310137,0.0475251,0.354135,0.387199,0.556753,0.155447,0.774605,0.524947,0.529055,0.336838,0.668841,0.78171,0.687078,0.712678,0.604981,0.685326,0.400751,0.0897986,0.981235,0.909458,0.335005,0.733536,0.89331,0.131625,0.730931,0.923436,0.561675,0.857416,0.528076,0.0177052,0.762936,0.611646,0.924113,0.215628,0.703626,0.799624,0.0869549,0.13737,0.212822,0.944432,0.593565,0.978754,0.0680751,0.283244,0.850651,0.404057,0.82516,0.44323,0.469231,0.685624,0.913452,0.0285459,0.502555,0.248778,0.656502,0.409001,0.490639,0.35509,0.816918,0.372599,0.830707,0.189535,0.00809103,0.574517,0.277626,0.434678,0.810813,0.939692,0.920078,0.357887,0.971154,0.0234193,0.318328,0.556972,0.489605,0.780115,0.837458,0.0764825,0.322598,0.563227,0.367486,0.265277,0.695969,0.0401546,0.724289,0.41854,0.488979,0.976627,0.103977,0.842306,0.490766,0.889592,0.828632,0.0355822,0.728579,0.0537238,0.944211,0.385608,0.891796,0.5357,0.980536,0.753731,0.0610675,0.992126,0.0209765,0.971711,0.790628,0.202458,0.941182,0.333928,0.836785,0.993995,0.592561,0.313109,0.131143,0.858492,0.0255533,0.645649,0.0660005,0.315642,0.33418,0.785036,0.154188,0.487403,0.714645,0.040226,0.576485,0.321506,0.659279,0.520344,0.626122,0.254094,0.0901912,0.590249,0.626165,0.574756,0.978697,0.458811,0.668043,0.428434,0.72906,0.989239,0.296537,0.842493,0.172357,0.532929,0.625078,0.410137,0.740355,0.606904,0.453919,0.592428,0.226839,0.303142,0.434909,0.89992,0.539906,0.951056,0.223806,0.347269,0.442932,0.0158929,0.317357,0.0381005,0.200719,0.0102514,0.602079,0.402838,0.86163,0.857613,0.487782,0.934634,0.559,0.959889,0.856347,0.221198,0.671466,0.922114,0.71851,0.409126,0.373033,0.607823,0.835206,0.836668,0.454802,0.163232,0.529015,0.34754,0.690875,0.770642,0.762944,0.815309,0.294858,0.149138,0.785027,0.406357,0.642503,0.227249,0.561325,0.66283,0.245724,0.00728601,0.339303,0.307944,0.0779222,0.176765,0.817963,0.859623,0.572158,0.733503,0.18494,0.432458,0.538752,0.753304,0.238977,0.524165,0.982101,0.933793,0.149887,0.733569,0.0465827,0.0569915,0.141238,0.127822,0.145424,0.667995,0.91701,0.350665,0.687715,0.976672,0.547957,0.187888,0.00674731,0.142367,0.809456,0.449963,0.590261,0.629731,0.74326,0.882258,0.417777,0.387918,0.953823,0.913225,0.179519,0.383707,0.161883,0.464824,0.767332,0.540449,0.977591,0.661702,0.394345,0.523195,0.797151,0.457748,0.253144,0.861165,0.802092,0.739595,0.758677,0.502178,0.06181,0.383545,0.818332,0.918223,0.160424,0.98216,0.183982,0.164215,0.608092,0.640225,0.281352,0.383314,0.713084,0.921143,0.474867,0.647569,0.570997,0.739016,0.195824,0.157365,0.312294,0.609004,0.744234,0.169355,0.881214,0.39125,0.0656356,0.589111,0.494372,0.167001,0.97504,0.536414,0.956922,0.815013,0.292061,0.289437,0.542151,0.427818,0.404938,0.81781,0.964497,0.934017,0.697102,0.126304,0.0532711,0.548973,0.727298,0.313594,0.126509,0.675771,0.0110056,0.613048,0.741105,0.855903,0.871629,0.119374,0.981356,0.735023,0.346108,0.61232,0.0270076,0.600223,0.995986,0.78757,0.624767,0.0615091,0.924361,0.321094,0.48381,0.849918,0.0502968,0.363985,0.223636,0.11414,0.545369,0.110045,0.342574,0.199383,0.220339,0.00694865,0.447942,0.46706,0.821119,0.0858808,0.136034,0.734742,0.910919,0.70182,0.675124,0.0272191,0.178943,0.625942,0.246364,0.844372,0.0362765,0.376396,0.0451921,0.690435,0.605572,0.381865,0.0679903,0.289913,0.83724,0.369846,0.696166,0.101465,0.189788,0.280513,0.801348,0.717526,0.283106,0.725212,0.452001,0.350827,0.568373,0.795873,0.714164,0.608069,0.596524,0.0640114,0.714253,0.83677,0.458673,0.581932,0.588838,0.300464,0.267967,0.796788,0.501435,0.142648,0.678595,0.749322,0.219886,0.922821,0.534314,0.637709,0.18273,0.256928,0.818413,0.218223,0.334954,0.620988,0.345952,0.986578,0.458727,0.515125,0.5891,0.702904,0.933099,0.906802,0.00250924,0.185908,0.00156301,0.444971,0.160375,0.567644,0.291857,0.672169,0.243825,0.469012,0.621049,0.0352576,0.451212,0.678959,0.596413,0.436633,0.0549505,0.06964,0.981573,0.62414,0.744705,0.79932,0.650127,0.848533,0.762779,0.149989,0.918715,0.382841,0.480292,0.950578,0.180579,0.08382,0.58509,0.992881,0.20847,0.45763,0.1133,0.498639,0.168644,0.926943,0.889547,0.377876,0.894872,0.255687,0.658803,0.813009,0.748914,0.711595,0.666374,0.986265,0.241222,0.84117,0.331447,0.326797,0.851977,0.342787,0.680994,0.139732,0.197663,0.707364,0.0058049,0.933501,0.866898,0.195885,0.98545,0.567319,0.782182,0.716134,0.327615,0.103447,0.376024,0.609211,0.138265,0.105222,0.00786507,0.912653,0.169288,0.562957,0.426682,0.534735,0.545183,0.738056,0.760024,0.457393,0.0182302,0.274429,0.269368,0.0432059,0.071174,0.596257,0.0473555,0.660319,0.710861,0.816283,0.459763,0.134222,0.824905,0.282048,0.684312,0.596714,0.563579,0.150544,0.788018,0.395807,0.943159,0.188394,0.236031,0.615975,0.683753,0.49572,0.0421343,0.678019,0.596547,0.922172,0.977372,0.216736,0.516273,0.573226,0.350318,0.855743,0.31575,0.223984,0.803642,0.61732,0.484828,0.543996,0.0919672,0.073004,0.848206,0.363244,0.549665,0.949713,0.659856,0.0497345,0.243727,0.613761,0.627497,0.0595043,0.475767,0.989678,0.25763,0.700918,0.187312,0.272398,0.23441,0.704825,0.130575,0.801225,0.642253,0.968211,0.254488,0.269754,0.686723,0.830012,0.595207,0.630957,0.439083,0.787095,0.152518,0.598533,0.205274,0.722534,0.788581,0.41691,0.847502,0.535065,0.314247,0.768486,0.501459,0.489705,0.811106,0.134691,0.0794697,0.283472,0.403274,0.66124,0.497338,0.319014,0.725488,0.0941129,0.941181,0.50315,0.157236,0.360974,0.605104,0.0522677,0.271511,0.899167,0.499987,0.54429,0.61435,0.539002,0.0964267,0.911795,0.705696,0.814116,0.891335,0.615781,0.783,0.882616,0.788505,0.00982332,0.657379,0.124408,0.226851,0.707251,0.574794,0.959904,0.897292,0.963395,0.992387,0.756256,0.748326,0.180033,0.275738,0.251212,0.420054,0.742873,0.829776,0.40827,0.552361,0.0710944,0.798962,0.197907,0.424965,0.736035,0.91324,0.147057,0.167011,0.872679,0.427679,0.173126,0.596836,0.75636,0.245732,0.478974,0.222023,0.544208,0.494586,0.226891,0.568168,0.393407,0.173243,0.0950563,0.0724834,0.383502,0.772012,0.387886,0.477525,0.606841,0.803118,0.527594,0.0494038,0.196239,0.336832,0.922588,0.899662,0.358534,0.143589,0.414894,0.886741,0.360409,0.851915,0.251641,0.611575,0.777033,0.147953,0.540187,0.262075,0.88481,0.918408,0.18835,0.385772,0.261207,0.0628752,0.639524,0.868268,0.968354,0.82281,0.12886,0.555622,|0.411137,0.619482,0.30588,0.334235,0.9248,0.957246,0.0306516,0.243804,0.262295,0.818421,0.127029,0.847751,0.0655369,0.475526,0.583903,0.598353,0.894362,0.952522,0.566404,0.88741,0.515723,0.705464,0.25464,0.445175,0.596505,0.501811,0.110436,0.245077,0.289265,0.0294347,0.685942,0.283727,0.71801,0.96106,0.169499,0.376765,0.134884,0.0855402,0.397609,0.755907,0.0169342,0.835214,0.998245,0.270731,0.174451,0.0526162,0.591807,0.899785,0.542571,0.428389,0.147294,0.0862316,0.374536,0.416001,0.597531,0.156925,0.366404,0.0684756,0.160002,0.269927,0.252405,0.618817,0.584354,0.947216,0.748009,0.604923,0.140299,0.912821,0.726556,0.633037,0.293826,0.741751,0.653315,0.85048,0.642452,0.119783,0.848872,0.968901,0.610604,0.42642,0.0251147,0.00372231,0.222287,0.553027,0.579105,0.987437,0.718702,0.482643,0.864856,0.580839,0.912167,0.0439383,0.910434,0.18457,0.216686,0.861376,0.00950271,0.558164,0.561955,0.3005,0.0737712,0.787626,0.557544,0.897229,0.448877,0.0774361,0.8524,0.281431,0.998595,0.955865,0.160785,0.181708,0.997827,0.520086,0.174933,0.257544,0.309034,0.662862,0.442093,0.643511,0.422567,0.926721,0.756604,0.236357,0.658843,0.824021,0.411159,0.155038,0.358323,0.512913,0.824855,0.289143,0.540325,0.810926,0.0622702,0.107059,0.383639,0.528204,0.800712,0.221907,0.54421,0.525531,0.00486952,0.0764058,0.397231,0.492257,0.874917,0.136373,0.435305,0.936467,0.311457,0.547691,0.962437,0.0410862,0.5914,0.75808,0.883831,0.261887,0.371702,0.0845774,0.244989,0.444434,0.922274,0.699433,0.311982,0.959911,0.43898,0.839131,0.643722,0.35468,0.747545,0.256916,0.894252,0.246649,0.516251,0.685362,0.967911,0.251015,0.0661445,0.408767,0.496844,0.245585,0.474153,0.371179,0.92461,0.791858,0.612324,0.445979,0.67561,0.260623,0.868293,0.943903,0.794765,0.0667748,0.0690216,0.132964,0.445333,0.733869,0.366715,0.363614,0.246858,0.885544,0.583448,0.34093,0.310574,0.0908985,0.0812928,0.69915,0.393781,0.121066,0.327956,0.165836,0.773755,0.403572,0.410192,0.301355,0.568121,0.672658,0.93716,0.321347,0.517434,0.500216,0.36971,0.12303,0.742568,0.124622,0.0760325,0.359963,0.243283,0.837636,0.967906,0.903326,0.158937,0.566509,0.551851,0.302148,0.647997,0.587601,0.0605826,0.787139,0.730429,0.507514,0.76551,0.963392,0.345324,0.902011,0.317492,0.283957,0.158314,0.40817,0.0413533,0.228144,0.0702768,0.489864,0.713453,0.0342071,0.34291,0.373533,0.265257,0.867008,0.526264,0.305592,0.222234,0.507513,0.606893,0.196035,0.683351,0.149015,0.140316,0.0337818,0.275572,0.994175,0.872625,0.843283,0.997463,0.327318,0.0487359,0.751155,0.432139,0.399229,0.74155,0.352336,0.906689,0.312728,0.219024,0.662946,0.642586,0.539487,0.0579106,0.387119,0.927759,0.608118,0.384253,0.718831,0.259167,0.161251,0.181927,0.24778,0.832555,0.931397,0.0473382,0.729446,0.12257,0.712054,0.743027,0.228222,0.970077,0.143489,0.130248,0.440466,0.537639,0.509782,0.778804,0.393948,0.331896,0.111309,0.107536,0.901416,0.133195,0.213824,0.980269,0.448417,0.235738,0.799951,0.782487,0.794964,0.745197,0.273998,0.809899,0.380186,0.915674,0.0935816,0.190754,0.519499,0.370805,0.629072,0.563582,0.195292,0.0734431,0.538861,0.819938,0.097334,0.0290546,0.255308,0.0649863,0.0407013,0.881666,0.481057,0.0122761,0.123753,0.55728,0.301316,0.0719081,0.210035,0.500183,0.641744,0.675138,0.366814,0.643999,0.0604002,0.0538557,0.81267,0.36342,0.385523,0.984538,0.708909,0.0269421,0.505983,0.168113,0.254604,0.213158,0.639511,0.756823,0.268068,0.121673,0.527602,0.211257,0.856543,0.563754,0.37033,0.497695,0.119983,0.467561,0.929582,0.207494,0.309807,0.917224,0.855763,0.532775,0.812002,0.307339,0.44377,0.492462,0.71922,0.487079,0.164346,0.675865,0.377728,0.374733,0.256077,0.237802,0.125316,0.0287574,0.0457522,0.871906,0.184179,0.476215,0.953909,0.361002,0.23995,0.163565,0.35552,0.921401,0.0128607,0.696071,0.0650377,0.776235,0.625746,0.6832,0.752269,0.039427,0.501723,0.0819163,0.264625,0.554189,0.18014,0.881539,0.527402,0.394227,0.812614,0.924361,0.986261,0.727692,0.721103,0.0629429,0.12296,0.122242,0.976505,0.170138,0.496346,0.0844545,0.701387,0.697167,0.424079,0.109496,0.578469,0.0683802,0.108719,0.83861,0.61271,0.65119,0.389949,0.183147,0.504283,0.659516,0.721012,0.0859719,0.124767,0.813473,0.649331,0.517821,0.0142555,0.156543,0.791008,0.437366,0.0746051,0.494509,0.8338,0.0738581,0.0574183,0.687191,0.373876,0.121455,0.426468,0.569818,0.67645,0.393924,0.037576,0.922082,0.972323,0.5191,0.32817,0.617234,0.90611,0.780901,0.954724,0.754663,0.801242,0.588099,0.583912,0.483492,0.762863,0.253229,0.145923,0.994746,0.54505,0.208781,0.521421,0.674435,0.334881,0.700742,0.822657,0.356576,0.111601,0.0284563,0.961987,0.373416,0.214757,0.710492,0.0118317,0.467826,0.910727,0.92855,0.264386,0.93385,0.100845,0.250695,0.468864,0.956466,0.72373,0.721407,0.279168,0.154304,0.332727,0.607549,0.499319,0.455384,0.522886,0.658212,0.40522,0.865701,0.814998,0.832596,0.395598,0.940047,0.725594,0.694348,0.753992,0.473372,0.770031,0.885561,0.518328,0.944373,0.283276,0.637919,0.184542,0.35822,0.125998,0.98184,0.796174,0.373002,0.585328,0.925295,0.470327,0.101853,0.518638,0.635984,0.235106,0.44255,0.0755127,0.442596,0.57348,0.192861,0.298216,0.546983,0.71431,0.00961667,0.141046,0.0396948,0.166954,0.520563,0.814812,0.0642713,0.61737,0.55271,0.612709,0.458681,0.975175,0.662915,0.485231,0.0760277,0.530555,0.596718,0.155384,0.129827,0.427039,0.329108,0.496491,0.677246,0.461409,0.109303,0.0651901,0.612662,0.812678,0.489587,0.363913,0.778754,0.0647264,0.754419,0.645999,0.547718,0.602772,0.968344,0.100251,0.448797,0.877824,0.45442,0.279453,0.359302,0.648408,0.544204,0.303496,0.156605,0.727369,0.687023,0.677641,0.893283,0.468644,0.954052,0.797716,0.0939656,0.922864,0.00877631,0.666783,0.918187,0.10187,0.298336,0.191591,0.0892862,0.695546,0.337701,0.643797,0.395812,0.990058,0.79091,0.434647,0.31643,0.982535,0.304088,0.0884519,0.803946,0.0451871,0.864389,0.887021,0.501899,0.0168177,0.980379,0.146617,0.637214,0.324653,0.38086,0.514071,0.834044,0.760872,0.499389,0.167817,0.899057,0.70287,0.696271,0.434744,0.00458539,0.0330927,0.40726,0.503951,0.924965,0.761989,0.314949,0.52431,0.748842,0.148581,0.636862,0.116457,0.358476,0.672387,0.384174,0.734788,0.241635,0.49443,0.874661,0.628764,0.787745,0.162436,0.237902,0.856086,0.277671,0.125105,0.44074,0.587063,0.650217,0.549419,0.776024,0.432666,0.0876057,0.825628,0.273125,0.696433,0.811741,0.846257,0.385232,0.974058,0.377103,0.658347,0.196879,0.808213,0.244,0.114442,0.776977,0.443335,0.955086,0.172933,0.0779357,0.876464,0.964718,0.835403,0.391143,0.602091,0.067883,0.74718,0.807357,0.841251,0.0476494,0.651542,0.737408,0.823392,0.409774,0.214601,0.930951,0.912371,0.601581,0.754573,0.00983167,0.957688,0.925418,0.904567,0.830075,0.872089,0.321495,0.601828,0.758764,0.933646,0.593696,0.446512,0.804646,0.315898,0.545412,0.893992,0.0565335,0.0226519,0.798057,0.708797,0.00268894,0.625351,0.109662,0.202373,0.970698,0.264831,0.293003,0.624487,0.727817,0.153187,0.129068,0.140743,0.344649,0.268051,0.0817182,0.571027,0.0124502,0.0704885,0.221317,0.268837,0.295111,0.13611,0.263574,0.265917,0.0149018,0.859071,0.374415,0.539,0.39679,0.108439,0.88824,0.964743,0.0325899,0.401661,0.419214,0.744894,0.12408,0.991908,0.751704,0.806932,0.112877,0.929927,0.913016,0.032714,0.594151,0.710682,0.398042,0.424205,0.415763,0.832621,0.208865,0.948774,0.370814,0.707891,0.921416,0.628828,0.0963632,0.483868,0.453169,0.0321533,0.541889,0.000601172,0.562526,0.0770362,0.180359,0.287322,0.990568,0.79473,0.260722,0.218701,0.84565,0.359658,0.326643,0.924746,0.936072,0.0860517,0.632575,0.387961,0.80734,0.315441,0.969721,0.68987,0.311622,0.265825,0.600217,0.822416,0.0081529,0.432317,0.141922,0.413206,0.679416,0.665002,0.542479,0.361719,0.811041,0.905402,0.771035,0.889711,0.83972,0.205519,0.62687,0.600592,0.490888,0.591749,0.182518,0.920014,0.866619,0.281175,0.152384,0.789735,0.859017,0.191602,0.129008,0.0823351,0.963647,0.14979,0.768335,0.190619,0.8245,0.00798231,0.671838,0.400736,0.469547,0.386367,0.164346,0.448858,0.380774,0.430979,0.142889,0.134198,0.0665017,0.171429,0.481983,0.132596,0.411214,0.306423,0.35253,0.544843,0.169966,0.0306373,0.553689,0.0615506,0.0412919,0.987962,0.813605,0.79492,0.839353,0.921324,0.877138,0.341735,0.266855,0.385401,0.228683,0.807481,0.726837,0.0337276,0.0884037,0.766527,0.158926,0.137898,0.375626,0.0273063,0.528159,0.737341,0.810528,0.19612,0.315957,0.890513,0.726522,0.891138,0.867079,0.23771,0.909492,0.468849,0.750508,0.573883,0.196821,0.674569,0.585626,0.45716,0.822854,0.204042,0.728538,0.464902,0.158684,0.296928,0.807821,0.414355,0.524004,0.413808,0.461637,0.050896,0.38341,0.361898,0.277357,0.577933,0.218161,0.557315,0.419108,0.981877,0.831331,0.252679,0.155371,0.592041,0.980011,0.408448,0.843982,0.27159,0.0315863,0.128822,0.251176,0.428944,0.626235,0.937206,0.467014,0.762407,0.185466,0.747854,0.570443,0.893819,0.183688,0.413569,0.142348,0.399209,0.5053,0.716671,0.607043,0.415051,0.495883,0.597392,0.699198,0.853072,0.706356,0.500989,0.644976,0.205516,0.0684258,0.956715,0.630922,0.146355,0.918318,0.981841,0.0237306,0.218249,0.976614,0.306233,0.176743,0.699331,0.0554022,0.295453,|0.281819,0.761908,0.676076,0.219312,0.304837,0.89917,0.91701,0.212028,0.080381,0.586278,0.845978,0.721078,0.482485,0.146905,0.240298,0.378259,0.625671,0.456009,0.118776,0.625737,0.476109,0.718083,0.219597,0.94518,0.185218,0.703288,0.905808,0.0142422,0.971691,0.0128289,0.346993,0.923519,0.364537,0.938575,0.0498395,0.568203,0.143699,0.848827,0.41542,0.559503,0.170629,0.744194,0.904602,0.142734,0.00313979,0.557639,0.964356,0.515992,0.66801,0.849851,0.590997,0.471619,0.0199002,0.500927,0.820868,0.333514,0.126422,0.426794,0.619684,0.88139,0.138427,0.229849,0.349773,0.567791,0.86267,0.965106,0.202042,0.973874,0.134495,0.657074,0.0624656,0.508989,0.667271,0.733252,0.347981,0.0648619,0.447757,0.471912,0.209203,0.921523,0.418555,0.80285,0.570782,0.107041,0.00869894,0.443994,0.806929,0.580555,0.141317,0.498706,0.840307,0.0362954,0.146858,0.598019,0.975934,0.0294536,0.2659,0.797986,0.671247,0.769811,0.608809,0.0995958,0.27837,0.650271,0.252528,0.325166,0.289431,0.199477,0.459188,0.889755,0.721079,0.70707,0.466889,0.984841,0.221575,0.641769,0.754337,0.357741,0.777686,0.278616,0.960034,0.341603,0.550516,0.660775,0.769003,0.189649,0.528936,0.108996,0.150344,0.683835,0.782976,0.0217101,0.74633,0.679925,0.563086,0.190934,0.307982,0.510297,0.237946,0.906031,0.66959,0.946102,0.647478,0.788965,0.518085,0.704276,0.595405,0.900303,0.965481,0.0443349,0.275466,0.8825,0.0157598,0.217389,0.393554,0.537165,0.417859,0.518577,0.0105165,0.205513,0.350036,0.0923668,0.192663,0.501279,0.0996513,0.807908,0.88875,0.365302,0.951297,0.592952,0.264678,0.865109,0.629435,0.382556,0.870997,0.246524,0.354423,0.637749,0.184765,0.12337,0.359819,0.000350237,0.653661,0.995423,0.182119,0.096885,0.945362,0.661438,0.943045,0.162488,0.565146,0.939367,0.254482,0.584254,0.0659066,0.297944,0.157992,0.16155,0.0236694,0.632595,0.277828,0.631928,0.93316,0.466443,0.655283,0.522705,0.629653,0.51191,0.0323961,0.358363,0.872511,0.39296,0.877775,0.178276,0.513272,0.309424,0.988341,0.755962,0.307189,0.191778,0.511615,0.32233,0.740816,0.674437,0.736631,0.713535,0.920158,0.848368,0.256455,0.913463,0.486082,0.551526,0.300557,0.0200776,0.72079,0.951099,0.464425,0.188722,0.869714,0.9249,0.111305,0.524021,0.0222815,0.48409,0.518099,0.0812154,0.218093,0.829409,0.614354,0.0279957,0.324911,0.93659,0.545991,0.0342425,0.0858552,0.0422331,0.398238,0.665339,0.860949,0.416713,0.21753,0.981831,0.695477,0.734998,0.395749,0.45738,0.596738,0.722965,0.18999,0.839909,0.472358,0.735545,0.309563,0.493645,0.845843,0.194847,0.285356,0.695569,0.348072,0.710735,0.632369,0.724714,0.0744085,0.772293,0.31681,0.540341,0.621721,0.657604,0.561298,0.481192,0.7209,0.890081,0.242957,0.136223,0.351301,0.841318,0.23277,0.150056,0.667763,0.280917,0.0459999,0.74605,0.348803,0.691472,0.542112,0.318396,0.473918,0.881547,0.550193,0.231022,0.836908,0.848807,0.335005,0.131424,0.172609,0.504071,0.0205384,0.0816309,0.131931,0.706833,0.602759,0.302982,0.126426,0.463329,0.27993,0.48137,0.373405,0.372145,0.502343,0.91738,0.197511,0.281244,0.529302,0.24901,0.585963,0.415058,0.295426,0.703725,0.970021,0.283811,0.0725458,0.866547,0.56511,0.375729,0.119401,0.509817,0.383015,0.117865,0.53444,0.240433,0.0496984,0.898195,0.858587,0.163703,0.994875,0.517097,0.213224,0.526875,0.195479,0.520856,0.907744,0.258661,0.997607,0.581355,0.985055,0.127159,0.803666,0.995928,0.960285,0.202369,0.505397,0.400336,0.0300645,0.0144146,0.521457,0.987027,0.749024,0.183665,0.31276,0.686499,0.393404,0.725388,0.9846,0.0363452,0.96408,0.581123,0.708343,0.998787,0.38234,0.421475,0.53825,0.440762,0.530747,0.104342,0.101085,0.290985,0.195019,0.212918,0.0794597,0.393086,0.488893,0.630271,0.784746,0.252821,0.234009,0.360523,0.449745,0.115131,0.298056,0.771317,0.197451,0.213179,0.326998,0.158419,0.529734,0.740756,0.929697,0.224889,0.0318702,0.153992,0.705955,0.241007,0.324115,0.422536,0.340192,0.456113,0.821031,0.825455,0.917291,0.110852,0.643871,0.936824,0.805286,0.746424,0.223903,0.00903177,0.169025,0.0222158,0.647351,0.0446312,0.562309,0.431806,0.583316,0.787085,0.874734,0.185497,0.853368,0.452931,0.631233,0.818004,0.531471,0.407335,0.430022,0.470699,0.628241,0.484785,0.984631,0.817057,0.0795426,0.725619,0.53272,0.0839295,0.281496,0.662898,0.369071,0.0914308,0.610336,0.267278,0.90408,0.434228,0.898417,0.773614,0.83016,0.693877,0.101348,0.657204,0.707851,0.109657,0.755644,0.355047,0.473308,0.175767,0.448593,0.127668,0.929622,0.980587,0.998985,0.9207,0.486959,0.169026,0.410119,0.68404,0.305955,0.0554452,0.816293,0.833408,0.283427,0.307745,0.0669193,0.221191,0.617219,0.861107,0.909454,0.284809,0.311969,0.474077,0.647156,0.208099,0.265897,0.248384,0.77902,0.898112,0.466335,0.951921,0.143637,0.449888,0.754032,0.475511,0.00318754,0.626325,0.177384,0.6555,0.195316,0.732377,0.214799,0.881753,0.426197,0.939627,0.638814,0.860677,0.063913,0.0438043,0.336724,0.0676183,0.299864,0.349562,0.612163,0.464439,0.813089,0.816215,0.132973,0.897998,0.432136,0.840843,0.322671,0.249248,0.723723,0.591558,0.675436,0.201559,0.867585,0.661895,0.302681,0.999824,0.388774,0.914159,0.50262,0.91352,0.288851,0.082046,0.176315,0.956035,0.3234,0.12567,0.100959,0.685516,0.532018,0.58845,0.535323,0.0605821,0.756248,0.773971,0.808111,0.21438,0.748918,0.37188,0.119338,0.320727,0.478247,0.657556,0.855153,0.275612,0.97738,0.307442,0.982647,0.302134,0.332967,0.376793,0.387434,0.356832,0.659088,0.211115,0.74632,0.679558,0.511657,0.457061,0.191657,0.70541,0.748018,0.617623,0.203691,0.107843,0.239259,0.295796,0.643097,0.833706,0.65799,0.486629,0.670742,0.690098,0.0874187,0.975318,0.433877,0.193467,0.339756,0.285797,0.495306,0.882326,0.294519,0.945143,0.248318,0.328477,0.119715,0.325499,0.616789,0.338359,0.194668,0.2049,0.3779,0.854731,0.559742,0.259197,0.442563,0.453619,0.580044,0.736301,0.049304,0.494326,0.28642,0.118187,0.642181,0.704485,0.755715,0.835979,0.182462,0.0519946,0.369364,0.605073,0.888096,0.887131,0.846044,0.89439,0.242256,0.487447,0.534511,0.865378,0.17689,0.741686,0.530328,0.672508,0.0586072,0.23445,0.809011,0.0598311,0.46124,0.724269,0.406001,0.0102343,0.581436,0.58711,0.298435,0.525804,0.890843,0.988313,0.997067,0.209058,0.934428,0.193711,0.538791,0.617585,0.807458,0.879654,0.850691,0.557612,0.976428,0.318511,0.719536,0.43481,0.752058,0.884543,0.617339,0.0343243,0.37728,0.45863,0.517477,0.87053,0.253514,0.512658,0.233847,0.622317,0.13309,0.703165,0.169242,0.491578,0.32325,0.716736,0.126379,0.224037,0.662148,0.311234,0.167218,0.335137,0.526914,0.45464,0.126052,0.798203,0.220468,0.611747,0.0150884,0.301605,0.712214,0.734875,0.844184,0.6092,0.681893,0.512899,0.667466,0.204714,0.0210389,0.92971,0.823577,0.264705,0.115988,0.435885,0.629056,0.60044,0.608472,0.363159,0.922395,0.685022,0.922577,0.178417,0.492687,0.567223,0.898569,0.909871,0.175875,0.932241,0.875142,0.464616,0.61081,0.539691,0.469487,0.112421,0.919172,0.714455,0.717589,0.781061,0.300827,0.0558265,0.450301,0.476993,0.891023,0.51045,0.645982,0.0778599,0.0761422,0.517515,0.856085,0.379548,0.904991,0.887451,0.834877,0.907136,0.276427,0.299099,0.819806,0.171289,0.544881,0.994057,0.972618,0.771376,0.603382,0.370592,0.0140702,0.318168,0.225351,0.375053,0.841617,0.512967,0.483108,0.0986067,0.865051,0.933971,0.80568,0.748151,0.0338733,0.309094,0.641253,0.700525,0.0596381,0.523111,0.356754,0.756478,0.538942,0.631232,0.941637,0.170475,0.255295,0.774488,0.936549,0.25374,0.588408,0.347625,0.191509,0.478746,0.0648786,0.497137,0.0442299,0.787036,0.375246,0.762586,0.255834,0.408107,0.645277,0.640182,0.00530022,0.449666,0.495986,0.50812,0.0156077,0.851169,0.211785,0.0892019,0.233362,0.103445,0.367349,0.1748,0.433524,0.0142961,0.829183,0.968321,0.592314,0.347848,0.18534,0.401821,0.502348,0.568386,0.962958,0.830265,0.0404216,0.29847,0.742439,0.847049,0.336964,0.990945,0.0716053,0.217199,0.849697,0.152721,0.634823,0.598732,0.561537,0.381082,0.264153,0.753317,0.880549,0.664323,0.724314,0.536002,0.746464,0.743278,0.0518689,0.204186,0.319755,0.23867,0.90481,0.932712,0.601975,0.980397,0.908526,0.384661,0.795993,0.00289154,0.0869235,0.914546,0.593132,0.553355,0.326199,0.00985187,0.598395,0.563289,0.035023,0.351711,0.214145,0.917684,0.822955,0.0702378,0.742633,0.504049,0.656991,0.0346169,0.862513,0.23938,0.997795,0.112209,0.531851,0.502041,0.52613,0.210031,0.623002,0.279785,0.903346,0.690775,0.672525,0.664133,0.55178,0.272031,0.130552,0.0417145,0.535856,0.139262,0.922806,0.885469,0.768475,0.474195,0.34552,0.350371,0.988467,0.18008,0.249378,0.316787,0.582669,0.719957,0.75446,0.107008,0.0148335,0.491413,0.210377,0.00232244,0.74614,0.447937,0.336287,0.122348,0.867628,0.417867,0.508796,0.961422,0.939879,0.510856,0.319675,0.80315,0.868803,0.596976,0.503982,0.242609,0.346756,0.268101,0.592236,0.832092,0.275294,0.941056,0.305302,0.710581,0.621494,0.297047,0.590434,0.294025,0.264427,0.0457037,0.097386,0.15506,0.740563,0.877534,0.224317,0.318762,0.225193,0.159025,0.484629,0.204545,0.0868041,0.688277,0.739282,0.762376,0.64973,0.755161,0.608673,0.837184,0.334369,0.841231,0.0345472,0.81365,0.321058,0.654822,0.89669,0.848179,0.538011,0.842304,0.807635,0.244112,|0.737368,0.199225,0.0135471,0.960411,0.570325,0.296475,0.260276,0.416513,0.946917,0.144194,0.325013,0.459687,0.623422,0.105439,0.45362,0.558453,0.814445,0.0772557,0.99805,0.30097,0.97408,0.759403,0.615009,0.95812,0.56526,0.30008,0.315387,0.76183,0.365596,0.906157,0.0746502,0.737694,0.270238,0.0997513,0.896185,0.696081,0.995561,0.781164,0.0069803,0.365648,0.932663,0.412003,0.907314,0.0734894,0.300133,0.120573,0.60664,0.991859,0.74969,0.0425583,0.54827,0.683299,0.717155,0.0636193,0.434951,0.983368,0.85241,0.587777,0.177634,0.42681,0.0970694,0.140609,0.339029,0.361583,0.47452,0.77333,0.985051,0.952799,0.467191,0.411556,0.817579,0.684044,0.424122,0.817823,0.418472,0.751135,0.690271,0.0207128,0.216782,0.00845063,0.571444,0.130723,0.0420535,0.0980943,0.262309,0.531517,0.42759,0.974516,0.315171,0.980502,0.0699623,0.550619,0.191355,0.188093,0.893498,0.776484,0.920428,0.782592,0.705371,0.775003,0.234003,0.867143,0.133244,0.36597,0.997073,0.376622,0.247078,0.298762,0.65072,0.939048,0.202918,0.576158,0.191334,0.0186309,0.312493,0.263529,0.0584185,0.156003,0.642328,0.581462,0.604265,0.821327,0.0897741,0.396633,0.941433,0.417545,0.814936,0.182779,0.301293,0.776542,0.427907,0.647472,0.281732,0.91792,0.159039,0.212026,0.884799,0.36062,0.0389332,0.192761,0.725352,0.317253,0.864913,0.251151,0.210715,0.935141,0.885125,0.17107,0.752543,0.0133811,0.406582,0.0790714,0.229772,0.267096,0.28028,0.598064,0.0542994,0.531131,0.14209,0.148299,0.441097,0.613062,0.677252,0.233241,0.254404,0.676394,0.0479824,0.534393,0.204032,0.212463,0.401711,0.838039,0.00459462,0.633246,0.942575,0.915377,0.718791,0.583033,0.0579301,0.728094,0.158735,0.652097,0.455872,0.759656,0.923537,0.275276,0.630331,0.977623,0.964243,0.56928,0.400942,0.0310137,0.270733,0.787718,0.133552,0.756812,0.348784,0.561412,0.967058,0.919897,0.890304,0.884164,0.513989,0.769379,0.581916,0.793465,0.461326,0.160328,0.571429,0.465584,0.855854,0.0163109,0.379535,0.930223,0.945465,0.265963,0.175128,0.261543,0.31104,0.609342,0.789904,0.218839,0.784389,0.0220955,0.091221,0.606081,0.133253,0.996874,0.599228,0.492006,0.87983,0.550115,0.691295,0.107826,0.0172234,0.546796,0.974833,0.297153,0.395504,0.141761,0.416843,0.85673,0.517461,0.879781,0.505841,0.353644,0.936836,0.554494,0.298905,0.951224,0.86361,0.301125,0.796039,0.432008,0.573291,0.226563,0.928752,0.0872937,0.770977,0.655333,0.152237,0.443871,0.5799,0.949924,0.566518,0.993188,0.980133,0.76286,0.00686449,0.547537,0.141685,0.181261,0.409085,0.486875,0.803283,0.0880064,0.526447,0.515916,0.439093,0.842163,0.335654,0.139771,0.928795,0.216541,0.52401,0.116345,0.620458,0.923162,0.871941,0.0237999,0.347739,0.348475,0.191388,0.672439,0.573673,0.505467,0.699186,0.446229,0.689691,0.830302,0.346333,0.921811,0.453458,0.485499,0.134564,0.316355,0.501683,0.841809,0.14081,0.53962,0.81598,0.103695,0.857453,0.961406,0.497042,0.478513,0.262255,0.540816,0.421609,0.914032,0.860772,0.984835,0.0544127,0.00756001,0.548073,0.656023,0.760368,0.0850364,0.633236,0.486722,0.194039,0.948576,0.0551356,0.493419,0.057759,0.316133,0.113508,0.862144,0.583895,0.628124,0.801596,0.381589,0.491422,0.799165,0.551467,0.491785,0.218003,0.239376,0.819906,0.884585,0.825588,0.773381,0.12512,0.424608,0.728875,0.859653,0.502839,0.744125,0.692691,0.825007,0.908174,0.95238,0.890564,0.0589939,0.0458545,0.462044,0.693658,0.314167,0.624518,0.696015,0.25356,0.0889896,0.874215,0.218164,0.550427,0.731489,0.888119,0.508026,0.866272,0.313697,0.447283,0.928154,0.567995,0.972257,0.596071,0.873906,0.946039,0.214894,0.868283,0.80494,0.17284,0.489331,0.230956,0.38736,0.570294,0.651781,0.00750166,0.0277128,0.441643,0.446742,0.803899,0.71197,0.606021,0.780709,0.759357,0.0991423,0.382424,0.113782,0.465472,0.392446,0.35827,0.69218,0.155832,0.350993,0.737759,0.140837,0.442484,0.551813,0.370887,0.726225,0.900351,0.0686288,0.628304,0.166387,0.22689,0.500779,0.975351,0.446035,0.263717,0.325156,0.712237,0.176009,0.903596,0.419032,0.989792,0.262188,0.879776,0.538829,0.91621,0.746684,0.00288755,0.486764,0.774174,0.555819,0.359775,0.685392,0.984019,0.913964,0.500979,0.784415,0.766363,0.491599,0.0246334,0.538733,0.0481694,0.41896,0.210674,0.543455,0.0537085,0.189165,0.541838,0.182692,0.717035,0.379566,0.107908,0.646314,0.838259,0.692573,0.942067,0.974226,0.502687,0.622011,0.84687,0.381226,0.593269,0.95335,0.245527,0.634733,0.160863,0.808002,0.562766,0.460179,0.260799,0.113203,0.20061,0.896063,0.793818,0.378537,0.645355,0.492228,0.115773,0.326179,0.756002,0.515248,0.567325,0.740971,0.583947,0.366209,0.450414,0.414797,0.149846,0.892016,0.156971,0.112064,0.3575,0.213517,0.854471,0.995728,0.208611,0.517826,0.782182,0.590279,0.594995,0.496521,0.0168333,0.181783,0.690798,0.36571,0.0571232,0.828074,0.163613,0.000619113,0.563648,0.714511,0.0598606,0.649604,0.981051,0.0789206,0.614478,0.33702,0.713831,0.974759,0.0352074,0.211049,0.251611,0.94123,0.920323,0.564825,0.983663,0.542832,0.624044,0.100116,0.277665,0.33452,0.086399,0.749305,0.347668,0.62008,0.697943,0.704086,0.55644,0.244832,0.771849,0.0274556,0.828203,0.646907,0.525512,0.283906,0.84026,0.565859,0.94925,0.339842,0.306104,0.573489,0.992298,0.579179,0.393549,0.849269,0.705938,0.117414,0.036244,0.802326,0.868619,0.686916,0.311979,0.453411,0.121711,0.573417,0.0640435,0.618459,0.0290831,0.390549,0.347412,0.590034,0.0578591,0.601862,0.588209,0.0205687,0.513336,0.882365,0.850748,0.674165,0.0486447,0.659892,0.411024,0.0559376,0.827615,0.579822,0.0979788,0.836596,0.227746,0.205808,0.74699,0.0899901,0.298895,0.767951,0.306333,0.110153,0.629661,0.433145,0.784587,0.42743,0.0392163,0.709953,0.779229,0.288254,0.198844,0.853947,0.531703,0.288944,0.463529,0.00248241,0.410084,0.728094,0.805786,0.676816,0.376996,0.919317,0.847385,0.860108,0.139044,0.702381,0.226015,0.902272,0.430843,0.241634,0.856846,0.609543,0.951399,0.583407,0.990635,0.196307,0.514875,0.0637568,0.661086,0.143372,0.861791,0.642782,0.0305225,0.273519,0.245866,0.41187,0.818992,0.972046,0.0480249,0.542886,0.727397,0.205791,0.727001,0.0863285,0.578246,0.474057,0.13853,0.0270182,0.342143,0.0859964,0.464986,0.867445,0.109606,0.109696,0.885806,0.353843,0.796866,0.490744,0.143377,0.0917127,0.637029,0.315066,0.341764,0.843008,0.982648,0.148554,0.0271233,0.994265,0.928602,0.779622,0.165102,0.0627751,0.586055,0.477143,0.474485,0.61129,0.764673,0.0551004,0.963552,0.42366,0.0583243,0.875139,0.635214,0.268699,0.0686738,0.543906,0.440569,0.559478,0.188846,0.172997,0.595981,0.238344,0.310576,0.780487,0.375414,0.0945413,0.86539,0.517884,0.115308,0.0523519,0.971635,0.396903,0.203086,0.568924,0.146784,0.770033,0.0996953,0.511057,0.877586,0.115983,0.772762,0.0703563,0.792236,0.148365,0.460337,0.383649,0.860142,0.416306,0.970083,0.00854462,0.909554,0.475395,0.694583,0.416629,0.397791,0.969811,0.975707,0.265128,0.912277,0.639414,0.331065,0.805188,0.0965133,0.0596611,0.0680215,0.618085,0.384595,0.659307,0.469625,0.199725,0.99359,0.504062,0.340947,0.30846,0.949519,0.341657,0.645791,0.473426,0.276348,0.748446,0.381069,0.0736769,0.759109,0.0537023,0.612777,0.70478,0.804404,0.453948,0.121858,0.475509,0.213145,0.842565,0.610938,0.794501,0.744436,0.134044,0.690685,0.62864,0.0278572,0.788368,0.466162,0.909987,0.124636,0.47113,0.52181,0.87889,0.117539,0.269866,0.622051,0.234879,0.44396,0.664939,0.166625,0.277312,0.800368,0.209288,0.827139,0.0568798,0.682711,0.886341,0.139486,0.644918,0.365178,0.332562,0.0507231,0.711112,0.802412,0.0738119,0.651525,0.488983,0.227099,0.749406,0.333701,0.766517,0.114699,0.401495,0.382657,0.574327,0.316446,0.795191,0.67963,0.354146,0.440669,0.352283,0.208252,0.956379,0.253922,0.176332,0.145975,0.39108,0.641131,0.0199109,0.183264,0.933611,0.49879,0.582658,0.672445,0.869175,0.0692039,0.115697,0.0838068,0.131372,0.267026,0.939376,0.175314,0.732013,0.196977,0.7346,0.244325,0.906028,0.13853,0.342345,0.555625,0.730698,0.25492,0.326414,0.271489,0.831495,0.819773,0.942664,0.690178,0.00623912,0.781098,0.417081,0.656308,0.919806,0.910846,0.197449,0.497859,0.46868,0.526996,0.0260352,0.867325,0.0017674,0.979009,0.157103,0.0682049,0.629841,0.936107,0.00468343,0.979279,0.998053,0.74352,0.897355,0.534099,0.0926253,0.011826,0.71281,0.975742,0.86479,0.255297,0.890991,0.241118,0.816408,0.145204,0.27105,0.947053,0.824571,0.320342,0.761772,0.167404,0.951923,0.96342,0.596789,0.783636,0.573964,0.837874,0.547646,0.178033,0.0787507,0.187535,0.598301,0.390073,0.540091,0.864913,0.231102,0.570394,0.873329,0.59644,0.221815,0.685744,0.307438,0.316379,0.740848,0.435508,0.0772489,0.535699,0.882751,0.57043,0.0312531,0.281131,0.609145,0.662645,0.701866,0.168964,0.629366,0.0534537,0.419506,0.855143,0.604635,0.16487,0.184206,0.648363,0.145232,0.941714,0.507702,0.791137,0.85475,0.128149,0.174408,0.747928,0.311938,0.91972,0.716819,0.3721,0.985583,0.907641,0.197392,0.97313,0.862066,0.761629,0.64542,0.91242,0.192031,0.00476223,0.639578,0.518288,0.657209,0.567543,0.139969,0.0625366,0.635714,0.199227,0.43952,0.884413,0.966583,0.868276,0.540646,0.752951,0.450974,0.671506,0.186444,0.560204,0.1081,0.114956,0.763914,0.367338,0.25197,0.497031,0.0265331,0.348796,0.325278,0.149646,0.0870678,|0.998233,0.449017,0.980568,0.273146,0.288527,0.110803,0.3785,0.593658,0.152423,0.803591,0.879159,0.111518,0.470679,0.00823557,0.966716,0.86529,0.566455,0.158936,0.197067,0.308873,0.656995,0.818658,0.583969,0.27496,0.8175,0.0488973,0.110508,0.429861,0.375882,0.521828,0.358865,0.841295,0.402505,0.0512299,0.942515,0.176085,0.668829,0.434834,0.334845,0.851231,0.115404,0.483403,0.12096,0.882919,0.57128,0.189014,0.856144,0.25941,0.0373068,0.32822,0.955836,0.316251,0.796693,0.0292106,0.252962,0.342168,0.0856771,0.510053,0.692349,0.308498,0.402883,0.323229,0.0751923,0.116182,0.445481,0.151717,0.970203,0.58259,0.914853,0.358496,0.917793,0.309824,0.574751,0.0483872,0.729169,0.675309,0.849523,0.15577,0.932488,0.0450988,0.875183,0.596021,0.951867,0.498538,0.728806,0.332969,0.625473,0.253941,0.282508,0.393591,0.891809,0.886311,0.764926,0.272651,0.970908,0.704416,0.354528,0.821647,0.293727,0.165003,0.159771,0.232703,0.111164,0.102705,0.439731,0.304084,0.179342,0.137315,0.267423,0.529497,0.184865,0.203301,0.973664,0.00130719,0.250785,0.360305,0.858774,0.504561,0.772205,0.00167704,0.939564,0.0529066,0.991243,0.872199,0.224006,0.215034,0.180613,0.69765,0.234631,0.892813,0.825864,0.919915,0.901302,0.496759,0.52777,0.324073,0.561189,0.540031,0.368791,0.974975,0.823778,0.227661,0.10504,0.446598,0.924271,0.837041,0.0972164,0.781837,0.855892,0.283289,0.202939,0.449341,0.767816,0.882361,0.865896,0.04834,0.0602405,0.409578,0.901084,0.182771,0.392339,0.677701,0.159567,0.325483,0.626668,0.284747,0.498208,0.131308,0.445797,0.878794,0.784493,0.849205,0.942034,0.0413809,0.29263,0.842942,0.791218,0.605475,0.686058,0.19346,0.872571,0.26526,0.174131,0.164307,0.374773,0.0710128,0.58512,0.983589,0.703721,0.300447,0.639326,0.332194,0.226916,0.148794,0.976912,0.471474,0.314697,0.542055,0.833934,0.483745,0.174007,0.703865,0.560209,0.30466,0.167458,0.834065,0.57609,0.10882,0.929864,0.19734,0.124521,0.254559,0.281546,0.0470525,0.204745,0.958867,0.516093,0.109549,0.89962,0.818357,0.427284,0.948042,0.566648,0.355179,0.450699,0.0782317,0.191191,0.221459,0.493197,0.264375,0.962708,0.545289,0.974615,0.235141,0.0436306,0.204286,0.415707,0.71244,0.0628256,0.763715,0.971922,0.801383,0.319077,0.90587,0.612687,0.939783,0.244375,0.380672,0.470399,0.936198,0.913092,0.257366,0.0951213,0.81118,0.561038,0.648432,0.318223,0.883584,0.719927,0.795423,0.531642,0.344876,0.716766,0.674354,0.745356,0.24591,0.676408,0.420797,0.0848511,0.638253,0.258624,0.517492,0.715288,0.426091,0.380168,0.0625746,0.331189,0.985564,0.110496,0.445461,0.670986,0.175796,0.943292,0.0489953,0.672231,0.740374,0.58229,0.18751,0.593956,0.611139,0.785715,0.766961,0.125179,0.412112,0.460661,0.135015,0.394329,0.702884,0.466787,0.979868,0.564628,0.74926,0.457347,0.346686,0.712663,0.420817,0.877226,0.981564,0.592064,0.332174,0.317187,0.835248,0.761182,0.195407,0.166999,0.148927,0.473782,0.542956,0.686993,0.795038,0.512118,0.8561,0.223195,0.239926,0.150812,0.13083,0.822218,0.932167,0.644035,0.520216,0.278102,0.16648,0.915986,0.921262,0.844358,0.887262,0.151741,0.138668,0.416166,0.606102,0.592068,0.532197,0.572484,0.360852,0.3793,0.286473,0.934107,0.823974,0.0551585,0.710499,0.553527,0.291559,0.0180758,0.139398,0.975427,0.809773,0.907106,0.183156,0.800997,0.620337,0.538375,0.365687,0.875281,0.563737,0.433029,0.171206,0.86974,0.114167,0.814126,0.80674,0.429084,0.398351,0.613247,0.909344,0.704209,0.281705,0.509059,0.617562,0.897456,0.145052,0.504364,0.534332,0.725154,0.183522,0.561774,0.258475,0.0890393,0.102555,0.50055,0.487134,0.994631,0.38043,0.85004,0.413137,0.882679,0.516482,0.200286,0.463384,0.769978,0.857112,0.781827,0.178614,0.665242,0.753868,0.535232,0.985537,0.956,0.809038,0.748815,0.645144,0.895443,0.41248,0.921816,0.481529,0.17705,0.0576625,0.800143,0.034945,0.75319,0.262518,0.907849,0.914376,0.106596,0.558165,0.154717,0.697319,0.415415,0.302473,0.797694,0.697838,0.592351,0.383253,0.725735,0.599781,0.407399,0.505862,0.621098,0.0210728,0.565484,0.246251,0.0936536,0.793252,0.0225806,0.106708,0.396815,0.208277,0.22521,0.0903111,0.617542,0.114795,0.0890445,0.976166,0.943032,0.861215,0.339603,0.41711,0.429692,0.912034,0.013465,0.483585,0.982246,0.0367168,0.0477446,0.623444,0.504717,0.706414,0.901196,0.686136,0.548039,0.780385,0.498491,0.756819,0.0169871,0.0676268,0.927993,0.784885,0.651472,0.717831,0.636126,0.58091,0.941149,0.883271,0.667967,0.0855609,0.607408,0.758303,0.268234,0.790852,0.247966,0.728788,0.632997,0.847243,0.214203,0.843885,0.0604903,0.22581,0.937884,0.399253,0.75203,0.807251,0.0380159,0.726578,0.510077,0.639336,0.507228,0.298156,0.182439,0.626504,0.503295,0.019477,0.782179,0.821118,0.105123,0.0617803,0.905293,0.0283214,0.590195,0.724808,0.746441,0.518474,0.563911,0.65791,0.898645,0.0430887,0.399391,0.808225,0.841231,0.669124,0.650155,0.90452,0.209381,0.35566,0.690936,0.747371,0.275469,0.910165,0.68524,0.223993,0.49761,0.45853,0.788417,0.725707,0.688631,0.583933,0.685383,0.676051,0.769531,0.794893,0.910162,0.0965689,0.268905,0.675678,0.39772,0.659564,0.895592,0.320097,0.225443,0.256932,0.620113,0.779509,0.48973,0.265958,0.0127438,0.519407,0.86808,0.339537,0.524133,0.353348,0.410964,0.813581,0.402831,0.747433,0.607486,0.815975,0.368598,0.908975,0.387905,0.923865,0.412809,0.592384,0.877315,0.779167,0.00304127,0.256748,0.383404,0.293707,0.73904,0.185152,0.822456,0.27427,0.237945,0.311053,0.776529,0.456348,0.0274311,0.318291,0.259889,0.125194,0.858653,0.675455,0.0853796,0.626121,0.299927,0.0026508,0.69383,0.253289,0.865125,0.762034,0.580476,0.837233,0.88364,0.24398,0.105006,0.673546,0.594507,0.836129,0.528318,0.843034,0.090835,0.01114,0.909108,0.136918,0.858376,0.680808,0.427548,0.0310346,0.43381,0.138763,0.994491,0.996405,0.765953,0.556755,0.88533,0.432045,0.596242,0.177423,0.318064,0.815022,0.818361,0.552293,0.951768,0.862747,0.16982,0.278114,0.860827,0.315281,0.646443,0.267925,0.691024,0.490865,0.0304544,0.219226,0.494842,0.653997,0.592657,0.900165,0.95321,0.482792,0.420956,0.878627,0.511633,0.495644,0.508997,0.0588146,0.871109,0.250743,0.112283,0.101092,0.955131,0.918643,0.852045,0.255177,0.393177,0.377147,0.608568,0.497937,0.832035,0.125766,0.3408,0.242405,0.481375,0.475523,0.316195,0.240577,0.36672,0.827799,0.561446,0.483073,0.00180364,0.497637,0.762922,0.807605,0.632709,0.0415704,0.872855,0.140978,0.413306,0.275785,0.424094,0.201352,0.868754,0.303571,0.40261,0.953577,0.753793,0.0866109,0.139171,0.71075,0.00544441,0.577718,0.691868,0.507894,0.68714,0.319202,0.703474,0.118046,0.469232,0.0839656,0.435585,0.177246,0.879896,0.887594,0.254821,0.890997,0.0130397,0.912062,0.855031,0.876526,0.309548,0.727745,0.018277,0.225584,0.813818,0.00324416,0.836293,0.169054,0.0882654,0.28732,0.136477,0.415597,0.857183,0.335025,0.627028,0.585151,0.00742406,0.358295,0.540823,0.174383,0.0195895,0.374063,0.524901,0.0950712,0.863879,0.456921,0.812005,0.905324,0.82587,0.807459,0.639161,0.0465829,0.829241,0.211343,0.356043,0.916418,0.153515,0.992428,0.119341,0.91641,0.920952,0.0627243,0.904805,0.445566,0.172996,0.109221,0.492538,0.899981,0.829991,0.950458,0.728956,0.544212,0.0464733,0.764036,0.484449,0.272901,0.378738,0.800546,0.828825,0.674446,0.829548,0.821935,0.423522,0.477881,0.567451,0.76069,0.519374,0.182768,0.202429,0.45399,0.831719,0.923623,0.890796,0.431272,0.843226,0.112432,0.0650749,0.161667,0.718151,0.841635,0.203995,0.220576,0.354326,0.100257,0.350534,0.591755,0.666595,0.838989,0.370402,0.911123,0.64602,0.5353,0.202848,0.713124,0.719619,0.99932,0.751498,0.647098,0.634401,0.515159,0.435858,0.335479,0.0558717,0.482551,0.221466,0.692453,0.369403,0.551654,0.229359,0.626223,0.746011,0.137999,0.85844,0.179838,0.505125,0.593477,0.271561,0.325343,0.898632,0.306435,0.998173,0.209156,0.979996,0.502537,0.637328,0.842693,0.733693,0.983705,0.116533,0.139291,0.570404,0.0910352,0.327723,0.82557,0.105851,0.43105,0.631154,0.96443,0.159845,0.795526,0.0844743,0.155484,0.359217,0.338381,0.741413,0.059577,0.675144,0.0198415,0.891681,0.471495,0.870282,0.412594,0.970122,0.615758,0.920564,0.599529,0.58165,0.601082,0.763336,0.965627,0.325595,0.901478,0.483597,0.641659,0.495363,0.794992,0.390876,0.352803,0.0771579,0.461106,0.500936,0.72364,0.451325,0.333424,0.570493,0.629239,0.0288499,0.103067,0.0415052,0.880614,0.635825,0.170061,0.0356429,0.606933,0.182695,0.0698038,0.375536,0.314088,0.821594,0.0549618,0.883644,0.966811,0.381915,0.990031,0.0486993,0.362704,0.492921,0.0656646,0.756038,0.260825,0.794663,0.464926,0.708046,0.116408,0.304929,0.394734,0.557666,0.824777,0.686334,0.670467,0.643245,0.984951,0.820588,0.0189037,0.385419,0.738367,0.369456,0.158302,0.783606,0.928374,0.871508,0.257946,0.289348,0.81441,0.245046,0.379624,0.889099,0.0409491,0.967563,0.530355,0.793116,0.13836,0.89351,0.00139433,0.629122,0.401857,0.482011,0.584076,0.892038,0.941235,0.524329,0.155055,0.304662,0.384088,0.683018,0.110129,0.128149,0.00991994,0.0171608,0.330503,0.589645,0.718908,0.315072,0.977174,0.732801,0.225117,0.0311606,0.532027,0.0110201,0.840568,0.524862,0.739388,0.736689,0.0156825,0.765882,0.437602,0.905297,0.244315,0.466321,0.380077,0.835169,0.544045,|0.692197,0.462157,0.00789315,0.259635,0.471671,0.0832898,0.62644,0.921897,0.471602,0.163644,0.482015,0.787066,0.115226,0.0910117,0.75241,0.579437,0.599683,0.410556,0.399696,0.143893,0.0471265,0.790128,0.307677,0.812907,0.575448,0.474531,0.0438269,0.986443,0.990921,0.915264,0.898296,0.158101,0.523388,0.631475,0.672804,0.0576839,0.10232,0.0624779,0.907175,0.748932,0.161776,0.304777,0.872966,0.725375,0.368395,0.15002,0.467931,0.367277,0.317731,0.797408,0.0231982,0.115801,0.761214,0.284848,0.0385541,0.133424,0.00115913,0.331613,0.134512,0.698771,0.0857692,0.139881,0.805624,0.861809,0.427654,0.943895,0.191757,0.925866,0.0739653,0.11778,0.106112,0.901493,0.393551,0.0635216,0.232134,0.606888,0.169902,0.431595,0.856254,0.423427,0.0779019,0.50681,0.874765,0.911694,0.716312,0.783941,0.423094,0.0918898,0.860921,0.947027,0.950839,0.187919,0.712203,0.518489,0.0364991,0.24777,0.729938,0.081722,0.584016,0.500677,0.417162,0.357056,0.539602,0.476024,0.287965,0.77115,0.59931,0.634383,0.702204,0.620876,0.976251,0.281567,0.155915,0.248321,0.175388,0.870223,0.0522642,0.222955,0.863612,0.827864,0.526464,0.899821,0.344726,0.886253,0.20143,0.978754,0.0187883,0.828095,0.212586,0.337057,0.69778,0.320098,0.73997,0.459473,0.836903,0.556462,0.206012,0.238818,0.957768,0.819076,0.781553,0.997403,0.467331,0.0404899,0.221354,0.286135,0.974088,0.634168,0.291615,0.408662,0.211,0.539047,0.0615351,0.767787,0.902392,0.774515,0.588217,0.367505,0.97059,0.269944,0.563988,0.491841,0.777609,0.334336,0.270331,0.510769,0.403637,0.618656,0.897272,0.459212,0.973611,0.0991507,0.310567,0.584987,0.833845,0.357831,0.64921,0.0296631,0.422947,0.629776,0.983972,0.523154,0.66299,0.954823,0.0684639,0.49712,0.688845,0.252094,0.805404,0.804477,0.468859,0.329937,0.0642018,0.138313,0.386313,0.970241,0.351066,0.182027,0.203996,0.054193,0.201058,0.00934649,0.160884,0.0230145,0.519515,0.198623,0.60332,0.672902,0.227271,0.474941,0.839429,0.537299,0.366776,0.193338,0.509311,0.73028,0.337487,0.606714,0.134712,0.229192,0.209292,0.951873,0.334758,0.428962,0.311583,0.711186,0.986171,0.160793,0.587873,0.467324,0.799873,0.637299,0.319332,0.654467,0.237582,0.889792,0.737343,0.522277,0.713181,0.95819,0.591047,0.726414,0.573493,0.400788,0.11099,0.0882739,0.900588,0.805902,0.441492,0.83431,0.986907,0.443732,0.819966,0.486949,0.428642,0.469585,0.706687,0.00621712,0.745864,0.249834,0.877381,0.304674,0.86688,0.139024,0.488168,0.724132,0.496906,0.230131,0.554259,0.546239,0.584092,0.590591,0.213753,0.428096,0.0953448,0.570532,0.454218,0.275293,0.0620578,0.550161,0.854143,0.67015,0.940011,0.812667,0.206961,0.842423,0.463232,0.840722,0.0779809,0.259417,0.291509,0.025521,0.411655,0.133934,0.944657,0.466511,0.479248,0.971609,0.802786,0.669864,0.358665,0.760749,0.597945,0.726502,0.841554,0.324395,0.558404,0.433809,0.175306,0.600676,0.300786,0.707858,0.767532,0.717166,0.148788,0.262887,0.946163,0.540825,0.450458,0.47247,0.00555569,0.618616,0.384383,0.639288,0.756717,0.585417,0.407871,0.980311,0.353292,0.417682,0.439502,0.992169,0.121535,0.510703,0.690594,0.558985,0.789271,0.527335,0.475203,0.107479,0.621309,0.763982,0.31826,0.360186,0.550409,0.650237,0.995542,0.222034,0.366852,0.693952,0.464089,0.501728,0.0750265,0.446469,0.0512989,0.284902,0.09534,0.930274,0.455501,0.609982,0.986423,0.0837771,0.0271416,0.352144,0.0329309,0.87689,0.68853,0.368618,0.905433,0.786042,0.240215,0.566376,0.495371,0.460041,0.679351,0.750514,0.971705,0.358969,0.294183,0.466953,0.878357,0.837341,0.827348,0.830859,0.0901076,0.739589,0.466058,0.700859,0.294316,0.0646347,0.061183,0.408994,0.529264,0.634289,0.775459,0.0153476,0.838513,0.735613,0.18902,0.476604,0.885039,0.0769207,0.593009,0.600026,0.462354,0.630083,0.32822,0.695024,0.293997,0.583605,0.156081,0.675086,0.0246295,0.498301,0.376749,0.992293,0.627849,0.493644,0.0108058,0.58478,0.562303,0.72583,0.103744,0.117144,0.973389,0.263403,0.312752,0.379714,0.237617,0.810475,0.534214,0.17432,0.0260631,0.301768,0.719368,0.436258,0.526364,0.325404,0.340275,0.729836,0.910615,0.908239,0.863128,0.194902,0.0282721,0.716951,0.555906,0.83289,0.857637,0.170905,0.622206,0.576167,0.912933,0.0783441,0.916592,0.794108,0.0713468,0.203025,0.968934,0.724892,0.989779,0.952584,0.276677,0.267474,0.449456,0.669099,0.208096,0.124096,0.0342971,0.825534,0.0952858,0.728674,0.95102,0.626294,0.387804,0.293127,0.652489,0.528575,0.702505,0.448719,0.630688,0.883624,0.639491,0.457221,0.654754,0.31419,0.842681,0.0882852,0.693491,0.121996,0.893544,0.306213,0.845307,0.508989,0.940891,0.548617,0.667619,0.302407,0.777003,0.0903496,0.510262,0.0817258,0.277228,0.0907544,0.712117,0.349212,0.393608,0.858088,0.963526,0.163537,0.6524,0.515679,0.842803,0.483499,0.58878,0.961875,0.524644,0.848492,0.853468,0.762324,0.582575,0.838835,0.370007,0.52278,0.65255,0.192215,0.921132,0.651271,0.551961,0.83944,0.702766,0.541349,0.0920293,0.480048,0.252909,0.111216,0.658994,0.195036,0.160726,0.861885,0.87291,0.757792,0.332495,0.471231,0.402041,0.194901,0.395382,0.2347,0.30658,0.144798,0.476809,0.662194,0.397777,0.324621,0.0223377,0.895221,0.606502,0.119699,0.711688,0.508468,0.256076,0.170004,0.509148,0.635842,0.408576,0.318214,0.0997652,0.062456,0.876603,0.720074,0.314033,0.428951,0.528636,0.325642,0.265439,0.121958,0.274082,0.945543,0.637695,0.750624,0.553072,0.352131,0.759204,0.365277,0.139015,0.957133,0.32054,0.859167,0.611598,0.026727,0.577092,0.565125,0.957092,0.198663,0.0612621,0.527498,0.375419,0.432006,0.728809,0.27238,0.219812,0.437312,0.554617,0.349428,0.989284,0.386068,0.519995,0.190292,0.589291,0.658353,0.718101,0.63196,0.880916,0.936816,0.967031,0.797855,0.789415,0.483558,0.833149,0.983864,0.939295,0.724785,0.42789,0.820626,0.48664,0.202943,0.42252,0.307446,0.973157,0.425668,0.549794,0.840016,0.0265557,0.736438,0.154102,0.654949,0.154976,0.199869,0.549358,0.8699,0.325518,0.651036,0.149767,0.996623,0.592135,0.00648463,0.921082,0.215727,0.969408,0.0296788,0.352488,0.635866,0.0882812,0.300551,0.0200679,0.278824,0.524892,0.00133187,0.859297,0.404437,0.323624,0.852929,0.956464,0.332578,0.736528,0.0307581,0.218408,0.307135,0.536414,0.770328,0.248193,0.755312,0.629109,0.7981,0.950607,0.487303,0.890032,0.475903,0.74619,0.386501,0.66934,0.344545,0.0557719,0.0933837,0.435874,0.855246,0.653607,0.0984328,0.0652214,0.152126,0.633608,0.547215,0.809795,0.886694,0.697271,0.905657,0.600243,0.358203,0.920779,0.190405,0.680008,0.617818,0.577923,0.36629,0.629886,0.523351,0.420687,0.980081,0.7058,0.276268,0.0223101,0.421599,0.792178,0.947601,0.197318,0.693097,0.331227,0.395773,0.345458,0.947806,0.438769,0.213303,0.612444,0.405258,0.331778,0.502289,0.311786,0.55149,0.0632504,0.147924,0.250973,0.308716,0.011288,0.550166,0.675771,0.321161,0.743347,0.65051,0.468216,0.0792023,0.265549,0.924936,0.252292,0.653137,0.73049,0.971201,0.130046,0.77974,0.275244,0.114965,0.449897,0.414289,0.174128,0.216047,0.0569322,0.18835,0.630079,0.0796444,0.867003,0.205407,0.926974,0.0968285,0.686694,0.893986,0.905089,0.554081,0.352252,0.226984,0.60937,0.426021,0.722206,0.336567,0.765138,0.738687,0.0805864,0.179821,0.0410969,0.699585,0.207299,0.648041,0.122712,0.0282443,0.844671,0.674604,0.450509,0.0128418,0.704843,0.562476,0.458937,0.981302,0.379843,0.430281,0.112281,0.0100199,0.639107,0.489362,0.931884,0.40793,0.278283,0.871222,0.498235,0.8078,0.907169,0.131766,0.505906,0.870918,0.572637,0.556055,0.25427,0.180243,0.0216148,0.795767,0.445677,0.792652,0.855913,0.70762,0.746212,0.870672,0.760453,0.580177,0.291607,0.352677,0.61727,0.378517,0.176389,0.419341,0.863845,0.220956,0.637901,0.0945424,0.122392,0.468139,0.454461,0.0633774,0.302269,0.0766755,0.681511,0.0441001,0.0525719,0.456618,0.852018,0.806208,0.908688,0.366419,0.599583,0.62846,0.821148,0.874354,0.475616,0.290111,0.953755,0.339112,0.848966,0.639883,0.892894,0.340945,0.41556,0.924215,0.953341,0.571126,0.815384,0.537387,0.115454,0.576479,0.766466,0.146241,0.916376,0.30198,0.308669,0.353248,0.857898,0.641199,0.289604,0.0492705,0.387434,0.483777,0.256086,0.800345,0.920342,0.786272,0.498102,0.720368,0.739297,0.376146,0.538303,0.857607,0.469771,0.62445,0.466984,0.832178,0.979329,0.549996,0.521722,0.703995,0.20901,0.0608175,0.650519,0.504918,0.480142,0.81703,0.455691,0.244416,0.995915,0.800185,0.749539,0.103195,0.443465,0.140831,0.433992,0.713751,0.423337,0.0592944,0.815946,0.420153,0.491089,0.507133,0.599571,0.618018,0.241887,0.814349,0.329013,0.267155,0.688818,0.418789,0.547386,0.220484,0.28251,0.531927,0.405061,0.49648,0.0590055,0.0428119,0.794553,0.950183,0.0685545,0.923201,0.059525,0.0922712,0.414095,0.888851,0.523421,0.308984,0.640241,0.625212,0.986555,0.757758,0.237399,0.271834,0.190609,0.913072,0.602742,0.130654,0.525553,0.815841,0.752132,0.00531483,0.856402,0.0427572,0.176448,0.93669,0.998326,0.119463,0.37593,0.187834,0.693324,0.885574,0.594131,0.208698,0.210388,0.214726,0.10496,0.834921,0.693369,0.784996,0.778973,0.0533355,0.155467,0.901891,0.966008,0.984666,0.301358,0.490284,0.606348,0.337656,0.674346,0.184085,0.180273,0.741459,0.741048,0.937643,0.690646,0.107412,0.471782,0.874672,0.794474,0.707586,0.556678,0.127496,0.396755,0.711697,|0.719075,0.459807,0.286148,0.861834,0.252513,0.68943,0.498167,0.546353,0.0940657,0.169517,0.364206,0.155549,0.704944,0.632137,0.642743,0.990722,0.208584,0.645841,0.864709,0.676094,0.108087,0.600655,0.47602,0.984321,0.707129,0.468144,0.180761,0.376865,0.309352,0.256169,0.240211,0.518713,0.368782,0.213767,0.330555,0.39427,0.746989,0.316461,0.331324,0.230299,0.665338,0.892235,0.771345,0.462961,0.248896,0.777043,0.997438,0.449385,0.926095,0.084913,0.916414,0.925222,0.0445161,0.320291,0.940885,0.699643,0.926116,0.187196,0.905835,0.0439191,0.882001,0.539626,0.504463,0.261949,0.061986,0.719281,0.300904,0.74542,0.501497,0.986715,0.515498,0.209665,0.952569,0.396744,0.318683,0.99332,0.334806,0.424376,0.995658,0.486125,0.217417,0.356111,0.805574,0.903371,0.864567,0.402239,0.198951,0.870986,0.037937,0.0663159,0.0170526,0.767675,0.725602,0.678997,0.608167,0.1869,0.651119,0.145568,0.598839,0.0443885,0.452232,0.891155,0.0683352,0.338768,0.852445,0.0775385,0.704174,0.0722362,0.446011,0.580386,0.75893,0.0721344,0.616769,0.218447,0.909933,0.387172,0.531581,0.573343,0.7001,0.344691,0.263959,0.846948,0.170025,0.221688,0.722442,0.412754,0.892966,0.2009,0.291682,0.8255,0.232911,0.374816,0.478188,0.611326,0.749593,0.90913,0.856861,0.563343,0.646575,0.801596,0.812479,0.217994,0.272911,0.0922994,0.782426,0.531792,0.614424,0.762283,0.890632,0.228262,0.303913,0.151268,0.601376,0.232675,0.0577344,0.726197,0.596273,0.592548,0.491161,0.944743,0.264514,0.0919831,0.821923,0.816577,0.814828,0.45907,0.214371,0.791262,0.318674,0.34311,0.634999,0.488478,0.74601,0.263474,0.719348,0.24314,0.8432,0.0841039,0.35256,0.0498381,0.15933,0.508766,0.690702,0.783292,0.755611,0.365517,0.166666,0.00152642,0.219285,0.972986,0.777801,0.97395,0.121901,0.717622,0.478956,0.621782,0.252182,0.240694,0.815463,0.59202,0.659443,0.0275948,0.680832,0.397984,0.983881,0.613298,0.361132,0.972374,0.245216,0.193694,0.304033,0.11751,0.0694541,0.952466,0.827766,0.0561938,0.144437,0.547156,0.575982,0.206792,0.883467,0.540681,0.516307,0.784626,0.939105,0.11091,0.419864,0.708155,0.394674,0.775991,0.907719,0.401805,0.133857,0.388819,0.47458,0.867425,0.669029,0.293676,0.891015,0.666717,0.704836,0.904699,0.95589,0.821224,0.63102,0.692595,0.793876,0.0707955,0.114377,0.166181,0.389133,0.370135,0.189004,0.698695,0.351875,0.782229,0.540545,0.139352,0.24203,0.645533,0.246425,0.968017,0.750744,0.668602,0.672143,0.474419,0.618439,0.24551,0.200791,0.464293,0.307804,0.890496,0.867682,0.0600039,0.692197,0.662796,0.0821414,0.428985,0.328171,0.217936,0.655678,0.94169,0.602652,0.812694,0.639128,0.341954,0.555154,0.761115,0.756273,0.650398,0.678774,0.00241035,0.948182,0.820433,0.25569,0.770888,0.810268,0.722174,0.303793,0.584832,0.402838,0.953313,0.783851,0.97542,0.00994545,0.967503,0.027869,0.52807,0.94294,0.469827,0.0753071,0.0694792,0.55586,0.782877,0.399675,0.172516,0.924595,0.756788,0.535224,0.130773,0.765655,0.865555,0.859886,0.478858,0.158963,0.218732,0.492577,0.186194,0.943958,0.306147,0.857004,0.696547,0.745955,0.562665,0.895319,0.328336,0.743592,0.487365,0.775231,0.109176,0.178315,0.665522,0.10348,0.812524,0.777061,0.579475,0.884869,0.898786,0.513843,0.427325,0.456862,0.478713,0.949638,0.478085,0.252852,0.986894,0.803396,0.725857,0.94657,0.401252,0.416152,0.256342,0.740383,0.774633,0.976061,0.276058,0.161613,0.347095,0.575558,0.941883,0.466169,0.420564,0.800632,0.459618,0.755721,0.390535,0.663442,0.881933,0.598832,0.215763,0.485551,0.396295,0.576267,0.471053,0.412993,0.0474475,0.508858,0.464878,0.969155,0.992478,0.0930035,0.961665,0.975555,0.466014,0.406128,0.898946,0.459177,0.869396,0.249796,0.60214,0.389964,0.536591,0.960753,0.245596,0.715494,0.503743,0.692277,0.375318,0.713655,0.260933,0.885699,0.180586,0.548016,0.0931336,0.787921,0.917813,0.0371583,0.670387,0.579886,0.375922,0.302752,0.635355,0.0546072,0.139783,0.975215,0.495854,0.272634,0.682813,0.895611,0.695755,0.31682,0.821148,0.748241,0.460207,0.0704432,0.668498,0.281214,0.196851,0.295954,0.178259,0.700586,0.284575,0.709112,0.138035,0.878849,0.126242,0.585809,0.209573,0.285685,0.0131637,0.911019,0.270429,0.952706,0.702975,0.504621,0.676588,0.0145644,0.539073,0.543797,0.751975,0.270285,0.660979,0.0488502,0.368166,0.0723471,0.244072,0.0772604,0.879496,0.27941,0.820774,0.0529486,0.525545,0.248635,0.0603605,0.122002,0.21464,0.0413092,0.921101,0.999868,0.413201,0.417679,0.772241,0.371669,0.71493,0.042466,0.0698639,0.146626,0.446534,0.612949,0.492399,0.767937,0.159787,0.388929,0.0881572,0.956088,0.992579,0.139284,0.932105,0.179272,0.469241,0.995208,0.494843,0.288465,0.484896,0.554484,0.93332,0.810259,0.715411,0.424225,0.921376,0.326503,0.642578,0.49313,0.138181,0.219772,0.62779,0.396992,0.8718,0.494568,0.718927,0.820877,0.34435,0.531258,0.955339,0.479055,0.965171,0.779756,0.0397731,0.832753,0.909519,0.397812,0.626812,0.867072,0.418401,0.185227,0.309934,0.964735,0.382913,0.496612,0.746622,0.344959,0.924777,0.93984,0.880169,0.478553,0.965766,0.671221,0.0875011,0.989673,0.245181,0.528469,0.373864,0.915859,0.947306,0.147232,0.0415393,0.212953,0.308845,0.624893,0.112269,0.746337,0.00694174,0.106219,0.637806,0.351949,0.384472,0.925693,0.744693,0.772504,0.375135,0.65067,0.326242,0.419984,0.770571,0.368671,0.567168,0.762134,0.451356,0.836467,0.151226,0.871222,0.157019,0.452726,0.940423,0.6576,0.174258,0.506946,0.126714,0.271391,0.0303332,0.250532,0.593491,0.381154,0.0503966,0.506731,0.901695,0.650251,0.507072,0.496264,0.382374,0.4175,0.139615,0.112102,0.00866354,0.590331,0.625551,0.0070672,0.902904,0.607202,0.785328,0.359173,0.200531,0.556491,0.220756,0.46049,0.545287,0.382374,0.117774,0.538506,0.808596,0.136749,0.991566,0.211218,0.0105726,0.649801,0.609845,0.320969,0.0122127,0.985378,0.318079,0.064362,0.68449,0.0994084,0.545771,0.721513,0.882661,0.363331,0.372468,0.220446,0.442566,0.754781,0.935309,0.0155904,0.13048,0.447889,0.785496,0.728726,0.669345,0.221084,0.761294,0.410373,0.492753,0.669432,0.544968,0.500897,0.415041,0.518734,0.224919,0.167973,0.799009,0.88233,0.587672,0.0334641,0.0808664,0.144133,0.0170782,0.523597,0.678926,0.563069,0.0509989,0.537134,0.346875,0.589569,0.110737,0.975746,0.985839,0.108804,0.794295,0.923452,0.420798,0.73132,0.425495,0.0202396,0.182893,0.224471,0.799573,0.77839,0.794402,0.394632,0.729002,0.287335,0.549772,0.303376,0.0623991,0.197478,0.204516,0.641514,0.0811263,0.383446,0.514381,0.898656,0.545802,0.867776,0.22195,0.230944,0.73188,0.301857,0.0102835,0.803231,0.470753,0.916957,0.713609,0.849087,0.252691,0.903058,0.742362,0.271979,0.027509,0.243737,0.12987,0.43473,0.765743,0.868156,0.573655,0.963301,0.845074,0.434496,0.00763905,0.754039,0.551692,0.911041,0.397058,0.624185,0.633005,0.293899,0.363399,0.543526,0.274758,0.450035,0.0245014,0.728766,0.0390303,0.759422,0.283327,0.609474,0.844138,0.485778,0.929429,0.131719,0.655855,0.258465,0.0784132,0.145254,0.953388,0.208568,0.691521,0.973485,0.695817,0.858691,0.0182733,0.973317,0.662698,0.429824,0.0520576,0.939456,0.0812779,0.135031,0.585481,0.694376,0.953813,0.437774,0.773561,0.292278,0.56154,0.319419,0.287692,0.16697,0.54565,0.712031,0.767727,0.416125,0.717491,0.265387,0.794474,0.170824,0.337011,0.430243,0.488997,0.454664,0.317489,0.855342,0.199861,0.872293,0.792372,0.273189,0.180446,0.180627,0.937106,0.280604,0.341702,0.0252358,0.25885,0.867666,0.420582,0.278402,0.336021,0.317511,0.679878,0.875208,0.73771,0.99299,0.600011,0.478223,0.589583,0.726698,0.385547,0.0502616,0.883365,0.289448,0.279025,0.629167,0.530953,0.339497,0.0232624,0.987537,0.397999,0.510725,0.859764,0.66892,0.317031,0.907079,0.31012,0.223733,0.462054,0.561083,0.863722,0.375129,0.980557,0.355827,0.827487,0.411916,0.110105,0.891176,0.0828964,0.663981,0.823626,0.180958,0.811238,0.666817,0.774236,0.418574,0.758478,0.515278,0.218303,0.147543,0.368742,0.100499,0.0833457,0.477033,0.546086,0.906251,0.110754,0.477754,0.498216,0.610208,0.272249,0.589396,0.741796,0.706933,0.653825,0.0743806,0.390226,0.274024,0.979662,0.567545,0.525896,0.853185,0.725815,0.678472,0.873673,0.676159,0.20657,0.772734,0.20257,0.255927,0.328007,0.933365,0.476567,0.834482,0.624144,0.483163,0.764513,0.273116,0.963025,0.418411,0.0251025,0.230686,0.947761,0.681564,0.756806,0.3236,0.19501,0.137779,0.0129337,0.199916,0.317411,0.811948,0.637948,0.849663,0.112231,0.680081,0.492332,0.468828,0.975915,0.208167,0.479819,0.587096,0.524362,0.0728645,0.362725,0.229383,0.96841,0.451772,0.772147,0.990267,0.796027,0.569944,0.997134,0.144218,0.25798,0.632196,0.890482,0.872055,0.0194505,0.865029,0.401802,0.810785,0.0475103,0.757594,0.660172,0.495947,0.685047,0.294936,0.647692,0.728278,0.534407,0.468831,0.699802,0.595397,0.842545,0.382836,0.760332,0.00969523,0.42763,0.273313,0.877618,0.314169,0.937493,0.005844,0.903223,0.217226,0.64378,0.747754,0.929085,0.585736,0.907776,0.60536,0.846441,0.0103882,0.643945,0.132644,0.528142,0.594827,0.549885,0.844995,0.811472,0.381048,0.832506,0.876824,0.816817,0.24535,0.668083,0.992835,0.415938,0.526986,0.362775,0.464008,0.561286,0.502257,0.555833,0.268494,0.067319,0.324818,0.355655,0.832275,0.313893,0.475772,0.919231,0.46355,0.59742,|0.271937,0.802435,0.135834,0.31549,0.6347,0.648249,0.6687,0.310286,0.234474,0.0345998,0.779304,0.738979,0.104457,0.0756814,0.39066,0.990444,0.0714821,0.104382,0.854513,0.0508229,0.472386,0.796244,0.777174,0.0824094,0.153867,0.288734,0.567265,0.970181,0.940597,0.121148,0.792016,0.602597,0.291901,0.351937,0.453614,0.0979846,0.129675,0.459074,0.615693,0.290617,0.390362,0.0533209,0.324625,0.722261,0.173256,0.786726,0.362799,0.594462,0.685209,0.85284,0.605447,0.420146,0.949622,0.627972,0.479332,0.192071,0.290014,0.131277,0.171387,0.357542,0.00900334,0.951476,0.332119,0.461193,0.411979,0.373029,0.820241,0.613486,0.943866,0.0293158,0.450443,0.264538,0.0755111,0.344177,0.748733,0.322085,0.483746,0.690845,0.701269,0.0417458,0.902211,0.534977,0.388654,0.152403,0.344529,0.918894,0.964702,0.534683,0.757088,0.113212,0.312628,0.086327,0.289181,0.318451,0.840558,0.325927,0.713077,0.498252,0.317646,0.835173,0.261619,0.293183,0.847105,0.250127,0.529102,0.486206,0.2885,0.275305,0.499275,0.921896,0.319958,0.196772,0.649256,0.312319,0.407699,0.801849,0.347051,0.777527,0.125057,0.68584,0.926743,0.157034,0.360166,0.629395,0.814101,0.854517,0.683417,0.772668,0.245733,0.129294,0.549301,0.814819,0.919791,0.931383,0.132456,0.713602,0.23289,0.516313,0.920841,0.104116,0.218547,0.737693,0.203024,0.974149,0.396512,0.444263,0.518604,0.713089,0.0621112,0.433044,0.800201,0.0121883,0.354144,0.806186,0.659849,0.775113,0.296401,0.887553,0.926174,0.184629,0.0444379,0.210808,0.0545046,0.921096,0.186546,0.667551,0.0988382,0.640314,0.901938,0.81913,0.830162,0.211921,0.10904,0.263763,0.570379,0.026935,0.915947,0.274357,0.689111,0.341832,0.813542,0.604503,0.709559,0.673527,0.356556,0.690501,0.4127,0.853881,0.317897,0.135197,0.763941,0.271521,0.377063,0.760876,0.754421,0.0705402,0.596986,0.565243,0.303073,0.275081,0.0848293,0.403546,0.0903626,0.343925,0.407754,0.703203,0.0756519,0.784189,0.987752,0.527183,0.0518383,0.556548,0.327268,0.176931,0.394873,0.53442,0.43454,0.741549,0.934457,0.86979,0.860445,0.577444,0.478806,0.904265,0.949861,0.902863,0.375325,0.20976,0.955373,0.324674,0.0829952,0.806371,0.723243,0.875566,0.670862,0.725798,0.626435,0.648859,0.770463,0.535826,0.795865,0.331655,0.726225,0.918058,0.0983147,0.91748,0.875923,0.27454,0.974113,0.353393,0.116514,0.735263,0.341356,0.117727,0.813605,0.0592076,0.661285,0.576077,0.51037,0.390624,0.0637797,0.827769,0.912687,0.19354,0.117858,0.328816,0.544632,0.636054,0.915219,0.743797,0.371615,0.553625,0.362499,0.00814527,0.0394844,0.45635,0.499691,0.29126,0.435716,0.00362444,0.0347718,0.871204,0.292372,0.154177,0.777951,0.611077,0.917438,0.206263,0.587091,0.878844,0.0483385,0.661923,0.826286,0.101213,0.181398,0.510268,0.417587,0.877532,0.796128,0.580258,0.0284417,0.399781,0.396572,0.192556,0.592933,0.995017,0.0422965,0.501568,0.342827,0.933688,0.508296,0.635327,0.747404,0.689834,0.737106,0.598127,0.817256,0.524096,0.631358,0.617717,0.328267,0.244072,0.950994,0.499688,0.753979,0.203286,0.292581,0.130387,0.890068,0.876588,0.219175,0.682808,0.0867795,0.177815,0.992566,0.455629,0.584776,0.193735,0.32929,0.207267,0.562095,0.101127,0.972304,0.172016,0.291237,0.982592,0.450115,0.21085,0.0365959,0.536441,0.308862,0.080049,0.771855,0.983998,0.359774,0.97446,0.418401,0.665527,0.474102,0.824502,0.381352,0.838781,0.000708282,0.12969,0.606806,0.15352,0.601799,0.122025,0.371403,0.131273,0.526233,0.0726361,0.346258,0.0315038,0.583296,0.919075,0.428858,0.23902,0.130178,0.165832,0.523205,0.82386,0.662419,0.777486,0.365378,0.270563,0.140415,0.136293,0.0812285,0.717105,0.741726,0.777912,0.688171,0.383647,0.970695,0.897287,0.477497,0.87615,0.404445,0.298919,0.0900641,0.0292373,0.45945,0.657003,0.98796,0.506073,0.725932,0.0228415,0.743399,0.0343578,0.493021,0.625912,0.484264,0.761285,0.468249,0.333614,0.380674,0.954627,0.0574558,0.557872,0.236665,0.437017,0.378058,0.3275,0.19317,0.00511038,0.141269,0.854578,0.434479,0.895937,0.427123,0.394144,0.136918,0.572677,0.539,0.536365,0.212612,0.893684,0.348117,0.385444,0.586989,0.115304,0.149783,0.31696,0.190721,0.736841,0.600142,0.0741245,0.641257,0.100748,0.536014,0.601914,0.14479,0.647999,0.902816,0.0638393,0.182578,0.687074,0.638205,0.731464,0.815506,0.98508,0.271942,0.183182,0.728572,0.750032,0.443444,0.722368,0.346729,0.762899,0.200052,0.680922,0.894715,0.653956,0.663891,0.437191,0.440178,0.184129,0.56219,0.241886,0.352099,0.513829,0.338687,0.635246,0.533835,0.188961,0.815734,0.747867,0.52062,0.769192,0.748835,0.0500789,0.138535,0.666982,0.535082,0.851456,0.544035,0.937477,0.386377,0.839484,0.130279,0.572315,0.893444,0.136349,0.527207,0.113668,0.0126865,0.136204,0.148691,0.28821,0.842693,0.208999,0.234385,0.741878,0.597943,0.787706,0.623378,0.463953,0.920269,0.10707,0.55872,0.76765,0.651037,0.132041,0.127984,0.00867498,0.907628,0.679935,0.223859,0.409526,0.356577,0.626662,0.716698,0.0761231,0.258251,0.362272,0.485631,0.15943,0.921139,0.169537,0.901656,0.61982,0.496461,0.484657,0.205683,0.934202,0.570197,0.62698,0.826458,0.642956,0.488836,0.033547,0.497418,0.431509,0.0759037,0.170047,0.777761,0.789404,0.197938,0.800075,0.455061,0.989164,0.288645,0.458339,0.377114,0.484617,0.258246,0.607865,0.810039,0.171118,0.769426,0.0860959,0.224405,0.314383,0.201822,0.0537279,0.13028,0.368904,0.270079,0.237954,0.143412,0.378628,0.833435,0.628886,0.354278,0.110988,0.574984,0.373022,0.344622,0.72386,0.429876,0.213951,0.227686,0.976407,0.283285,0.841881,0.355627,0.322685,0.034967,0.467068,0.0908509,0.356929,0.368181,0.534635,0.627522,0.955744,0.32475,0.378772,0.0707141,0.787939,0.0453302,0.433349,0.642871,0.639199,0.0646356,0.199297,0.935409,0.0124465,0.922104,0.333838,0.883323,0.976082,0.236851,0.613171,0.9978,0.625509,0.824259,0.254117,0.656863,0.125921,0.916804,0.0878057,0.746885,0.0778922,0.580432,0.912766,0.821986,0.442039,0.642644,0.149866,0.457704,0.178912,0.0475084,0.749794,0.133203,0.758393,0.954159,0.369524,0.0962041,0.227231,0.225609,0.368307,0.654522,0.633686,0.0937437,0.780685,0.116239,0.663954,0.434883,0.0214461,0.291169,0.918212,0.52618,0.925167,0.213935,0.0790974,0.184008,0.503547,0.43805,0.92462,0.502563,0.113284,0.533304,0.830923,0.138679,0.692711,0.702175,0.614623,0.868745,0.556875,0.991331,0.667541,0.954251,0.43867,0.173698,0.892522,0.0750401,0.843713,0.0179523,0.0144681,0.923373,0.991984,0.582102,0.171664,0.538383,0.335711,0.177065,0.398337,0.533559,0.203,0.872278,0.401847,0.927397,0.407897,0.341063,0.931564,0.579674,0.619419,0.760445,0.605344,0.511198,0.949204,0.0737225,0.547429,0.802275,0.919568,0.119603,0.292259,0.963363,0.670799,0.232875,0.982685,0.909746,0.752187,0.150665,0.122283,0.920509,0.593041,0.938109,0.770833,0.488923,0.156521,0.476541,0.204712,0.279198,0.899817,0.70695,0.111539,0.493526,0.473854,0.765287,0.192538,0.587733,0.531281,0.885961,0.125913,0.88342,0.579849,0.0450227,0.579897,0.916401,0.635789,0.266589,0.63779,0.273322,0.224969,0.662057,0.244892,0.695507,0.38269,0.797767,0.00919056,0.980889,0.600322,0.265213,0.598917,0.469931,0.520466,0.662553,0.613029,0.0160623,0.459625,0.933737,0.521192,0.290655,0.20601,0.892132,0.499036,0.892569,0.556072,0.993171,0.110638,0.745297,0.564521,0.656569,0.479557,0.475213,0.763529,0.574553,0.291081,0.714223,0.744298,0.836061,0.30351,0.240384,0.954494,0.929707,0.515463,0.335945,0.355072,0.569341,0.191298,0.123443,0.944421,0.974757,0.567918,0.123924,0.848092,0.233689,0.0133653,0.0129444,0.740867,0.770701,0.548383,0.30227,0.897661,0.300683,0.393814,0.538528,0.934408,0.757187,0.544289,0.451343,0.950925,0.355203,0.397448,0.948779,0.693114,0.708115,0.0547121,0.0940698,0.822111,0.388605,0.674982,0.962168,0.120236,0.690418,0.982707,0.448459,0.697196,0.365767,0.28925,0.19592,0.819445,0.510861,0.488641,0.649121,0.588087,0.461508,0.467633,0.877487,0.528245,0.503389,0.0657153,0.596449,0.788076,0.214449,0.634623,0.805942,0.0435197,0.825871,0.980594,0.468172,0.830865,0.902108,0.702855,0.496873,0.206708,0.812117,0.142258,0.394782,0.889252,0.928331,0.519001,0.312526,0.451527,0.377776,0.599734,0.789246,0.757284,0.477233,0.859758,0.416756,0.926316,0.177808,0.865547,0.643409,0.344647,0.417987,0.148697,0.427754,0.184166,0.92649,0.714827,0.444452,0.607982,0.107852,0.696998,0.873506,0.11168,0.360395,0.0369062,0.325931,0.906824,0.983256,0.717411,0.333322,0.69106,0.198582,0.813002,0.431261,0.866282,0.0517924,0.328213,0.812648,0.274835,0.414988,0.37368,0.435327,0.349841,0.159252,0.445041,0.136906,0.849331,0.776684,0.594153,0.857846,0.62056,0.207926,0.233891,0.90472,0.146084,0.931485,0.303902,0.645038,0.954167,0.530181,0.734865,0.511175,0.692238,0.763718,0.956132,0.906088,0.492504,0.425941,0.323201,0.297998,0.62114,0.634646,0.733093,0.672791,0.066013,0.449633,0.0694039,0.586708,0.532821,0.528267,0.868712,0.399135,0.242759,0.0308035,0.0529749,0.0744824,0.305202,0.215651,0.935085,0.291103,0.683688,0.786585,0.522396,0.945346,0.0706325,0.692179,0.0753105,0.840751,0.343736,0.236253,0.790746,0.95639,0.537012,0.344922,0.507329,0.2168,0.148548,0.608596,0.210024,0.382565,0.827328,0.799082,0.144523,0.233328,0.28161,0.874315,0.94461,0.637157,0.435381,0.955117,0.817228,0.00749654,0.786726,|0.152065,0.575901,0.0160443,0.412549,0.39956,0.592301,0.79558,0.151558,0.932912,0.690986,0.478263,0.100307,0.0682697,0.488495,0.8223,0.592014,0.898649,0.419368,0.490239,0.0915533,0.127896,0.618831,0.449229,0.0949506,0.00408524,0.992875,0.629863,0.28415,0.279434,0.611316,0.127842,0.975639,0.972883,0.143452,0.55621,0.317191,0.695382,0.222725,0.395021,0.234479,0.740009,0.0185157,0.63329,0.842449,0.676741,0.616969,0.735525,0.319834,0.261162,0.39481,0.507661,0.994309,0.842351,0.921165,0.563065,0.551043,0.268263,0.853194,0.276557,0.726607,0.665079,0.558672,0.802246,0.935453,0.272844,0.0728628,0.636856,0.980468,0.954489,0.516409,0.351433,0.149702,0.741618,0.109412,0.770803,0.892195,0.133249,0.763064,0.436292,0.719354,0.310345,0.665966,0.203724,0.0189131,0.625177,0.567033,0.251086,0.872173,0.762444,0.0540971,0.692055,0.402362,0.867706,0.846746,0.110357,0.111222,0.208951,0.747993,0.0477431,0.491064,0.596275,0.374377,0.223104,0.500919,0.409782,0.0772462,0.0604988,0.840896,0.446565,0.970981,0.299844,0.191473,0.301083,0.39744,0.663387,0.936743,0.912796,0.902221,0.0777792,0.622674,0.137221,0.676933,0.674164,0.135328,0.8413,0.406773,0.553512,0.677745,0.903731,0.672758,0.558627,0.608838,0.486379,0.564936,0.942411,0.557712,0.61949,0.176434,0.74112,0.467198,0.857661,0.289919,0.695142,0.112516,0.316061,0.291761,0.0526851,0.184477,0.156059,0.127436,0.692435,0.801107,0.430733,0.882729,0.54453,0.338504,0.989701,0.518165,0.35358,0.884607,0.751776,0.322372,0.391086,0.0604042,0.481354,0.436084,0.852473,0.323435,0.155139,0.699834,0.0108256,0.448457,0.0895488,0.411528,0.699654,0.39865,0.963537,0.51289,0.752816,0.319764,0.132552,0.602061,0.694976,0.197776,0.704433,0.751105,0.787845,0.282486,0.00404018,0.00594562,0.969192,0.0207987,0.212994,0.733517,0.654432,0.475777,0.50011,0.281893,0.0376154,0.301701,0.995296,0.428239,0.226669,0.473216,0.068314,0.47272,0.148143,0.107801,0.226129,0.592999,0.496335,0.567098,0.503657,0.371386,0.495067,0.962559,0.535094,0.188994,0.344097,0.967595,0.931189,0.44373,0.0969688,0.962293,0.997541,0.822482,0.143436,0.671958,0.483334,0.0342135,0.246687,0.110419,0.404271,0.286003,0.912271,0.324923,0.464335,0.757767,0.229731,0.271288,0.312784,0.944284,0.318232,0.0735149,0.495502,0.0661025,0.282174,0.763821,0.286015,0.98232,0.144906,0.397244,0.158034,0.149827,0.741239,0.339472,0.357096,0.429956,0.510341,0.598711,0.861618,0.21168,0.919033,0.0534549,0.465174,0.848082,0.944963,0.504914,0.417242,0.499496,0.267262,0.70637,0.86836,0.191255,0.218371,0.38536,0.396867,0.539469,0.569479,0.366925,0.551092,0.137548,0.0296862,0.409856,0.906785,0.712649,0.320473,0.34645,0.305811,0.368384,0.715411,0.489973,0.409821,0.150525,0.932087,0.745993,0.168969,0.146464,0.789539,0.488177,0.1007,0.570671,0.191584,0.374738,0.443981,0.0645676,0.726583,0.188947,0.730099,0.964448,0.180124,0.0669764,0.138972,0.942699,0.280022,0.141134,0.222853,0.772566,0.207814,0.803414,0.3116,0.527501,0.0575736,0.805419,0.346446,0.400825,0.539382,0.936066,0.131076,0.93232,0.122803,0.696455,0.810301,0.362615,0.053676,0.856482,0.559753,0.589663,0.616873,0.088552,0.257942,0.174764,0.464077,0.330125,0.469611,0.264414,0.924765,0.964713,0.558817,0.415227,0.11372,0.49198,0.914897,0.208975,0.753597,0.203305,0.148564,0.472754,0.286004,0.532178,0.418815,0.79112,0.142356,0.690693,0.34375,0.118143,0.901458,0.648154,0.0359019,0.532223,0.0622597,0.818344,0.302222,0.279116,0.634523,0.156761,0.850955,0.492456,0.952224,0.521217,0.00393087,0.966663,0.118723,0.838206,0.581052,0.321226,0.324139,0.460673,0.821297,0.851702,0.485071,0.776403,0.14753,0.000957668,0.331442,0.440532,0.896165,0.901474,0.415637,0.401111,0.705948,0.647332,0.952161,0.942719,0.548392,0.199467,0.672452,0.135367,0.36053,0.617221,0.867019,0.267416,0.447214,0.000939429,0.927934,0.703919,0.75234,0.298109,0.0132819,0.403552,0.489838,0.883097,0.853592,0.525734,0.74281,0.976013,0.992912,0.460065,0.165226,0.362258,0.415699,0.00753826,0.833712,0.401315,0.308511,0.440808,0.746832,0.821866,0.841829,0.317932,0.463914,0.15374,0.964772,0.610076,0.679787,0.634395,0.923591,0.40118,0.946431,0.479192,0.433876,0.250925,0.744023,0.945853,0.908349,0.624338,0.844424,0.579735,0.371058,0.00452846,0.641259,0.169881,0.338707,0.45515,0.103125,0.750579,0.899538,0.965153,0.890514,0.452724,0.551246,0.220505,0.435612,0.253097,0.285686,0.618354,0.680123,0.371017,0.69861,0.815293,0.229302,0.446024,0.584447,0.196201,0.352758,0.0249277,0.836305,0.476447,0.942046,0.788252,0.203086,0.0708936,0.91056,0.790131,0.49199,0.180673,0.851701,0.928184,0.528935,0.733164,0.342069,0.961357,0.639236,0.878253,0.242484,0.375787,0.102834,0.0121412,0.721027,0.0057801,0.444471,0.775263,0.502924,0.34059,0.104076,0.477598,0.449784,0.0622031,0.463076,0.847746,0.469627,0.65927,0.772103,0.216322,0.556992,0.717354,0.0635787,0.243889,0.498025,0.280693,0.322746,0.963676,0.819454,0.0173101,0.310453,0.640451,0.0907141,0.609953,0.543327,0.392734,0.62852,0.434202,0.827546,0.550159,0.0342549,0.594687,0.909967,0.970505,0.984553,0.361559,0.463285,0.341916,0.744535,0.443405,0.46982,0.771913,0.00911528,0.499215,0.264986,0.694181,0.947431,0.281924,0.681348,0.130862,0.553712,0.465018,0.252807,0.38046,0.759703,0.0659849,0.438048,0.708581,0.0854841,0.766553,0.664786,0.725053,0.987979,0.893093,0.828593,0.622891,0.337741,0.903948,0.487607,0.895018,0.884253,0.378291,0.127219,0.00792301,0.192235,0.147265,0.497212,0.507759,0.793791,0.00918752,0.112934,0.624365,0.775354,0.668757,0.632145,0.955487,0.601275,0.26199,0.999609,0.157534,0.698242,0.130754,0.353516,0.378282,0.303883,0.242691,0.587159,0.763364,0.103638,0.547628,0.0272951,0.168367,0.367876,0.620482,0.77507,0.182337,0.0103068,0.212827,0.308719,0.838344,0.466432,0.0712698,0.887708,0.175417,0.729425,0.913666,0.665759,0.54822,0.823619,0.331791,0.456644,0.920334,0.76569,0.530367,0.633564,0.359867,0.311588,0.0996485,0.477253,0.912718,0.971472,0.455879,0.0484611,0.853844,0.118176,0.898943,0.975786,0.38727,0.633914,0.500784,0.861708,0.920445,0.185856,0.936204,0.348749,0.599983,0.0149839,0.215279,0.988667,0.623167,0.0707266,0.733535,0.6444,0.783519,0.325429,0.353861,0.504107,0.0553688,0.611184,0.578245,0.926968,0.380508,0.447637,0.476237,0.369334,0.346673,0.893537,0.0353802,0.201905,0.0851654,0.606514,0.955519,0.259582,0.77673,0.0318975,0.55149,0.312952,0.552929,0.0635594,0.432894,0.26614,0.991572,0.0945224,0.956565,0.93441,0.934301,0.402978,0.959015,0.857359,0.420295,0.808893,0.634792,0.651303,0.165884,0.257728,0.672509,0.81261,0.704962,0.848672,0.126498,0.939802,0.952772,0.140291,0.908753,0.726112,0.512086,0.23284,0.693456,0.728652,0.719101,0.465696,0.339098,0.642732,0.420613,0.0929741,0.331443,0.370913,0.312647,0.648458,0.590657,0.205968,0.0727355,0.616474,0.281518,0.936258,0.954091,0.169525,0.0935346,0.303443,0.110249,0.807689,0.228813,0.307164,0.374851,0.910325,0.107273,0.411276,0.451733,0.810611,0.791448,0.61143,0.0501815,0.918418,0.539013,0.374296,0.526263,0.0479611,0.375569,0.798494,6.31809e-06,0.371682,0.0138542,0.749517,0.813512,0.0473204,0.26471,0.376827,0.841636,0.847392,0.473712,0.99328,0.525547,0.32062,0.655915,0.521379,0.982115,0.602373,0.489334,0.789987,0.101329,0.527792,0.564013,0.429874,0.239047,0.216913,0.173743,0.965663,0.680857,0.719644,0.353092,0.0121373,0.628369,0.17678,0.958378,0.24415,0.252109,0.459121,0.627367,0.142465,0.102918,0.861419,0.573504,0.438312,0.248881,0.41439,0.637751,0.429789,0.0456904,0.834413,0.297921,0.611149,0.512496,0.549716,0.0737869,0.657144,0.877544,0.740794,0.947635,0.245836,0.989125,0.0453331,0.355373,0.741006,0.468982,0.735258,0.50963,0.180688,0.540171,0.764839,0.56254,0.815946,0.971151,0.333619,0.606286,0.0413618,0.0257421,0.496464,0.429163,0.62227,0.838257,0.801792,0.526846,0.0318289,0.809947,0.0952402,0.379345,0.955781,0.496066,0.255268,0.222242,0.662977,0.850505,0.554775,0.0783932,0.457462,0.653603,0.487121,0.370544,0.82986,0.73179,0.00214124,0.397701,0.245981,0.34744,0.60303,0.369243,0.233992,0.669207,0.502029,0.110306,0.968702,0.360099,0.311175,0.110722,0.841833,0.313102,0.406449,0.583089,0.250003,0.437571,0.29838,0.533601,0.450532,0.116353,0.151923,0.887839,0.0820863,0.765488,0.258105,0.303585,0.87143,0.817018,0.96987,0.361683,0.606019,0.0146994,0.69014,0.00899208,0.913832,0.495389,0.166941,0.283005,0.548631,0.471342,0.224916,0.163665,0.474812,0.135931,0.0548731,0.646594,0.112397,0.0178251,0.310879,0.463985,0.405785,0.14828,0.470484,0.129984,0.0855283,0.586,0.485559,0.575164,0.365774,0.525384,0.390179,0.191847,0.864305,0.102866,0.979013,0.675833,0.42454,0.384896,0.277132,0.0766874,0.799059,0.653001,0.997069,0.548206,0.218162,0.725409,0.932038,0.700289,0.318992,0.859072,0.578606,0.550447,0.288624,0.107528,0.903993,0.485497,0.729774,0.901204,0.489415,0.455493,0.711754,0.32551,0.303833,0.5026,0.96705,0.972219,0.335053,0.601942,0.718912,0.338,0.68282,0.137782,0.599478,0.0963326,0.471812,0.331189,0.932786,0.745603,0.0482626,0.184661,0.200059,0.239948,0.634982,0.632352,0.123822,0.500421,0.915768,0.189796,0.487832,0.086489,0.109764,0.0744154,0.796472,0.563459,0.142753,0.28288,0.21081,0.870284,0.802842,0.588081,0.121377,0.881531,|0.447757,0.447047,0.560739,0.471124,0.374305,0.482219,0.38035,0.727369,0.845965,0.113678,0.0143556,0.567774,0.901657,0.502409,0.276951,0.399907,0.87169,0.526763,0.882193,0.948601,0.740653,0.141336,0.657141,0.770431,0.911794,0.894375,0.621264,0.38803,0.317863,0.623388,0.34727,0.430041,0.447238,0.636595,0.871985,0.41464,0.601174,0.138861,0.251623,0.3229,0.876113,0.975806,0.308792,0.321702,0.348476,0.437796,0.824213,0.743403,0.797662,0.999097,0.555899,0.319113,0.420404,0.605136,0.407257,0.739481,0.943906,0.0418506,0.672334,0.497911,0.406757,0.783334,0.532583,0.542367,0.237028,0.665783,0.211269,0.703271,0.127482,0.309574,0.166894,0.666781,0.563625,0.400837,0.532252,0.124507,0.541709,0.98617,0.304132,0.917089,0.897278,0.456939,0.546698,0.873396,0.949443,0.053523,0.209625,0.615235,0.797308,0.822918,0.539104,0.901421,0.806033,0.661589,0.80871,0.488323,0.91421,0.281013,0.55024,0.201893,0.915637,0.0750112,0.874547,0.890314,0.781594,0.500361,0.64439,0.321895,0.885363,0.994981,0.231143,0.649707,0.202104,0.511615,0.561682,0.213115,0.626471,0.561107,0.633375,0.821847,0.33735,0.401969,0.843037,0.387739,0.790749,0.0395213,0.258946,0.466503,0.369086,0.158921,0.0338696,0.691364,0.424834,0.330115,0.341744,0.450178,0.785072,0.329799,0.30865,0.708644,0.973837,0.633719,0.819164,0.449682,0.504059,0.0083791,0.0405664,0.64264,0.521027,0.671032,0.109354,0.264426,0.837456,0.896027,0.0450343,0.176215,0.542622,0.765115,0.894787,0.608662,0.186107,0.360666,0.63935,0.737584,0.511729,0.173353,0.695255,0.479542,0.805203,0.271404,0.307086,0.186094,0.716847,0.610941,0.713538,0.687664,0.0898187,0.908086,0.577182,0.209063,0.737499,0.543067,0.0730892,0.930271,0.780372,0.718532,0.77843,0.46962,0.65738,0.459186,0.441257,0.45994,0.322769,0.739251,0.630497,0.728525,0.236572,0.130161,0.0374855,0.854809,0.910727,0.219161,0.191237,0.86687,0.259744,0.055612,0.77633,0.588245,0.469458,0.764602,0.12394,0.668191,0.267197,0.264683,0.599216,0.666828,0.303825,0.563623,0.204195,0.685222,0.780408,0.538948,0.685452,0.822368,0.318913,0.141322,0.0260105,0.52126,0.0281234,0.956027,0.00604719,0.812066,0.831662,0.526941,0.566375,0.00251991,0.847531,0.0377803,0.435104,0.678966,0.17507,0.739372,0.316676,0.495552,0.958512,0.507919,0.366493,0.826573,0.449989,0.341404,0.032541,0.987274,0.0617884,0.183752,0.248129,0.893306,0.766365,0.66287,0.827225,0.154652,0.602612,0.202458,0.165186,0.0722791,0.483911,0.887843,0.0596069,0.811988,0.532814,0.594559,0.980637,0.102313,0.0277357,0.459528,0.761687,0.213692,0.639886,0.218978,0.0343675,0.461179,0.516197,0.0771483,0.0872141,0.532308,0.570726,0.088333,0.108412,0.617121,0.934436,0.639547,0.204017,0.346408,0.568193,0.457914,0.468524,0.293585,0.595413,0.343754,0.704884,0.526245,0.167594,0.411463,0.535103,0.462614,0.00952959,0.6656,0.964011,0.124719,0.37406,0.221307,0.0870645,0.733025,0.997808,0.635578,0.916141,0.348518,0.323527,0.97738,0.606002,0.520382,0.0578197,0.178394,0.0586011,0.644303,0.147175,0.702363,0.440995,0.0806061,0.232528,0.869281,0.809114,0.950912,0.985445,0.17356,0.85383,0.976553,0.496683,0.412493,0.37502,0.797804,0.866213,0.119187,0.959307,0.640194,0.61093,0.342219,0.402377,0.826317,0.218781,0.424177,0.917341,0.57208,0.871072,0.996695,0.243098,0.775106,0.888199,0.0786944,0.811493,0.829313,0.447767,0.294841,0.949739,0.906502,0.818263,0.583054,0.0564484,0.947246,0.596811,0.389406,0.293095,0.779789,0.673206,0.242059,0.0257211,0.907575,0.494864,0.94413,0.625095,0.169651,0.767871,0.888451,0.870639,0.402367,0.359956,0.669326,0.940214,0.471732,0.584093,0.799354,0.477352,0.783007,0.483772,0.969441,0.295275,0.774724,0.586293,0.415329,0.0917886,0.701736,0.16088,0.854811,0.462084,0.678511,0.571718,0.442911,0.592387,0.661374,0.332155,0.879581,0.810567,0.424583,0.107213,0.525196,0.585245,0.152741,0.363604,0.657675,0.42258,0.26025,0.167442,0.4224,0.142362,0.870998,0.0827068,0.213812,0.283706,0.032132,0.309144,0.168297,0.134674,0.453848,0.464609,0.654769,0.25982,0.222645,0.0119747,0.915223,0.27822,0.406247,0.353293,0.831661,0.970759,0.189444,0.892215,0.860187,0.0939075,0.896877,0.673617,0.0854193,0.551479,0.928067,0.27989,0.50688,0.452781,0.937173,0.675272,0.115787,0.805552,0.248281,0.512942,0.062893,0.432087,0.141483,0.923771,0.870775,0.972486,0.303672,0.284569,0.356001,0.678859,0.485671,0.653152,0.306583,0.825227,0.506728,0.0554549,0.269708,0.720857,0.195213,0.723115,0.204327,0.150473,0.755362,0.491557,0.0792073,0.222595,0.735459,0.940131,0.581734,0.854901,0.982867,0.70306,0.691892,0.0355153,0.380767,0.0995966,0.26476,0.295573,0.93039,0.191558,0.164411,0.249295,0.267449,0.523219,0.273728,0.994684,0.576598,0.495103,0.403849,0.119799,0.646128,0.590648,0.187706,0.0191306,0.211464,0.809606,0.645838,0.270648,0.475479,0.332544,0.649407,0.299624,0.122965,0.991919,0.769898,0.353868,0.760617,0.16258,0.720429,0.692118,0.583902,0.378882,0.0831469,0.904718,0.271146,0.272192,0.681809,0.446247,0.561803,0.876609,0.842185,0.9876,0.223808,0.588605,0.420039,0.891477,0.150584,0.376189,0.337872,0.0858395,0.77436,0.17777,0.278735,0.5587,0.83757,0.829754,0.0544012,0.54267,0.721903,0.369676,0.564612,0.657607,0.00937223,0.251387,0.604108,0.842645,0.360112,0.403782,0.587348,0.0315173,0.819015,0.0165733,0.799451,0.802635,0.96477,0.660458,0.763365,0.667105,0.110016,0.341333,0.269779,0.505776,0.499015,0.75067,0.763709,0.54738,0.317199,0.420366,0.721306,0.741722,0.596139,0.233397,0.454211,0.303707,0.371096,0.470156,0.122092,0.144907,0.572215,0.935026,0.413546,0.244062,0.24343,0.402162,0.742862,0.666593,0.599395,0.609977,0.953686,0.634627,0.500034,0.138561,0.382893,0.615956,0.590542,0.50163,0.293774,0.651201,0.226155,0.538038,0.399638,0.906269,0.451722,0.306267,0.277007,0.825913,0.325221,0.703487,0.078567,0.456236,0.842662,0.944563,0.691963,0.894287,0.178606,0.768023,0.015292,0.739294,0.813884,0.850367,0.250934,0.343369,0.773637,0.80823,0.187131,0.743979,0.554462,0.176207,0.194868,0.611917,0.622314,0.00487608,0.956498,0.208521,0.235521,0.764801,0.82218,0.503577,0.395614,0.849244,0.0800182,0.286291,0.7224,0.265974,0.985733,0.153104,0.503802,0.667005,0.61407,0.877637,0.416225,0.258347,0.884399,0.498526,0.644083,0.0391787,0.418308,0.283112,0.497869,0.891308,0.239331,0.0370371,0.464238,0.914562,0.758385,0.582419,0.228292,0.670063,0.601999,0.898536,0.304855,0.832943,0.726887,0.939904,0.431459,0.918497,0.49934,0.835777,0.571396,0.873455,0.759403,0.400288,0.986028,0.239823,0.465438,0.461441,0.215878,0.698475,0.405489,0.807219,0.8119,0.927036,0.639811,0.0768093,0.332101,0.380093,0.324492,0.931438,0.187731,0.0941511,0.142245,0.0673078,0.0120688,0.309554,0.796725,0.212217,0.333841,0.695026,0.82954,0.384506,0.461857,0.867779,0.195271,0.770322,0.61966,0.932442,0.889332,0.737238,0.368073,0.548372,0.413907,0.00415188,0.905028,0.214885,0.863343,0.377719,0.574575,0.904491,0.00527871,0.386322,0.759785,0.129701,0.421707,0.46647,0.176724,0.384189,0.294939,0.892162,0.938288,0.173726,0.621694,0.77029,0.357472,0.371738,0.436351,0.409607,0.00978017,0.951698,0.918126,0.263046,0.0777564,0.672165,0.00322539,0.0665392,0.717076,0.0511892,0.853571,0.360603,0.777007,0.847638,0.00109935,0.0107925,0.472251,0.585701,0.966284,0.802599,0.583395,0.413024,0.00796497,0.281282,0.645499,0.632934,0.297836,0.0567001,0.780918,0.625131,0.746737,0.25405,0.910613,0.182632,0.362791,0.689972,0.756476,0.503354,0.657813,0.855973,0.0867917,0.778696,0.770469,0.129248,0.524379,0.308085,0.0606217,0.450161,0.754942,0.653264,0.998796,0.292674,0.759368,0.262273,0.393384,0.00141352,0.307854,0.715207,0.545537,0.10347,0.688166,0.358086,0.408204,0.030812,0.654324,0.711763,0.800616,0.818954,0.48486,0.0902475,0.976581,0.0869015,0.41655,0.562991,0.087382,0.934048,0.162958,0.934313,0.802889,0.35526,0.69907,0.683028,0.882268,0.61195,0.584335,0.486155,0.078277,0.626883,0.193833,0.14083,0.634886,0.996669,0.800593,0.0440219,0.662314,0.138611,0.061505,0.760001,0.901557,0.426739,0.181921,0.862644,0.622701,0.562339,0.913066,0.925156,0.692413,0.477045,0.359459,0.596227,0.752478,0.78542,0.00747764,0.311943,0.457774,0.666465,0.344764,0.816298,0.110807,0.976398,0.154244,0.221582,0.0263835,0.735731,0.602189,0.986913,0.3711,0.980581,0.0240807,0.0877435,0.922315,0.609833,0.433373,0.898954,0.084639,0.243999,0.036212,0.0733373,0.532438,0.0372831,0.795002,0.0116578,0.219728,0.248277,0.415882,0.138384,0.982041,0.887148,0.995877,0.0541043,0.501332,0.0845676,0.59651,0.914752,0.824052,0.87411,0.388488,0.984531,0.927936,0.229087,0.748864,0.459689,0.337284,0.165493,0.808565,0.797712,0.429974,0.924371,0.549546,0.316472,0.145703,0.0348535,0.306595,0.407097,0.791042,0.788057,0.854116,0.628923,0.0420066,0.929467,0.17989,0.301057,0.0632642,0.90965,0.13144,0.926225,0.322597,0.267978,0.100647,0.197867,0.466956,0.735519,0.385108,0.471601,0.287549,0.465447,0.33954,0.966815,0.668029,0.0666184,0.375832,0.789047,0.00607836,0.466284,0.00494379,0.148173,0.882724,0.306898,0.0101098,0.83651,0.167249,0.240795,0.485332,0.374107,0.188321,0.745133,0.713588,0.147901,0.425776,0.0255143,0.478875,0.542351,0.0236513,0.00984365,0.552816,0.0821955,0.619936,0.313099,0.927059,0.722365,0.623653,0.0831152,0.0822366,|0.155809,0.0898461,0.733665,0.416628,0.402416,0.659555,0.361228,0.941526,0.397688,0.643048,0.0705743,0.0738825,0.877226,0.604233,0.760352,0.41912,0.538381,0.770734,0.338565,0.59755,0.0192768,0.627728,0.90135,0.616744,0.0910814,0.651064,0.386997,0.933538,0.246151,0.407723,0.363045,0.983044,0.996399,0.239847,0.358965,0.149852,0.50875,0.0957525,0.823707,0.513869,0.576551,0.750279,0.351983,0.845354,0.847248,0.00260317,0.593563,0.0601732,0.819471,0.0892038,0.0360162,0.070239,0.823209,0.0356537,0.801955,0.00567085,0.931937,0.560464,0.716479,0.182397,0.10912,0.937474,0.774877,0.384266,0.139832,0.367948,0.691815,0.29438,0.175562,0.460547,0.418436,0.563889,0.669202,0.579324,0.831086,0.585165,0.196223,0.199723,0.556111,0.474122,0.269744,0.325483,0.337173,0.312663,0.570959,0.925385,0.424893,0.985549,0.908272,0.388975,0.258586,0.953049,0.427256,0.906731,0.0498881,0.383216,0.698091,0.0725632,0.796135,0.72481,0.922011,0.327422,0.670088,0.340785,0.498447,0.0440235,0.584789,0.661118,0.443777,0.545026,0.91433,0.035352,0.724211,0.575718,0.400891,0.67118,0.986523,0.739487,0.610359,0.623697,0.604244,0.238897,0.89941,0.101122,0.980515,0.753859,0.475429,0.071031,0.411498,0.66029,0.0130326,0.401959,0.826972,0.272596,0.0800256,0.956558,0.844189,0.72635,0.128887,0.83939,0.295799,0.609101,0.479112,0.37309,0.600194,0.95604,0.249192,0.857306,0.193803,0.974518,0.372009,0.881117,0.764578,0.202231,0.654133,0.325361,0.320561,0.752,0.737616,0.849871,0.515833,0.846896,0.367286,0.239354,0.855268,0.210958,0.818251,0.283646,0.485553,0.778148,0.214247,0.135836,0.683892,0.030696,0.466681,0.88949,0.99616,0.873214,0.385888,0.235547,0.564689,0.080878,0.593035,0.240945,0.333195,0.599456,0.756818,0.648761,0.903461,0.264134,0.816739,0.837068,0.421429,0.695133,0.530253,0.0513463,0.452239,0.732342,0.690124,0.842166,0.966099,0.400197,0.14132,0.921598,0.916615,0.533483,0.39333,0.608705,0.939237,0.272842,0.341295,0.852113,0.025668,0.666643,0.100786,0.387731,0.00737119,0.407592,0.723589,0.501406,0.175895,0.203758,0.884163,0.0731881,0.900151,0.535115,0.240481,0.0987707,0.097113,0.0520561,0.953422,0.946905,0.329076,0.818962,0.597671,0.206288,0.714662,0.550189,0.975778,0.316945,0.777202,0.75512,0.388925,0.114906,0.985829,0.0408996,0.98952,0.78581,0.293438,0.107557,0.482888,0.748962,0.178168,0.860146,0.774682,0.437096,0.474035,0.879478,0.667589,0.959636,0.879905,0.0776243,0.294665,0.447877,0.865644,0.801973,0.267335,0.775984,0.815224,0.598829,0.184192,0.356323,0.58321,0.751157,0.525204,0.683742,0.719299,0.477846,0.691622,0.150089,0.982732,0.0145263,0.406552,0.823936,0.00542492,0.538011,0.670137,0.788152,0.703544,0.759297,0.891325,0.145869,0.824331,0.125937,0.710412,0.419851,0.320083,0.586631,0.663482,0.425887,0.202721,0.932854,0.238462,0.364027,0.329351,0.522021,0.0762038,0.469114,0.767839,0.365186,0.136209,0.625186,0.869417,0.03341,0.718788,0.482263,0.185006,0.40554,0.906412,0.566689,0.00946772,0.334584,0.00192803,0.286895,0.921206,0.551847,0.303106,0.821911,0.0388767,0.0359339,0.138667,0.82503,0.759228,0.304577,0.314216,0.569087,0.890381,0.00194359,0.229337,0.254569,0.678683,0.444134,0.398049,0.853172,0.906258,0.180837,0.645486,0.111078,0.405953,0.713612,0.217263,0.106446,0.831245,0.936809,0.982903,0.159709,0.409766,0.227099,0.0393206,0.863187,0.586452,0.580246,0.789734,0.523277,0.156426,0.235043,0.969876,0.151567,0.681778,0.301489,0.611562,0.929071,0.214037,0.725885,0.539402,0.73879,0.511798,0.332604,0.177191,0.368006,0.525076,0.220967,0.00400972,0.563982,0.796116,0.920166,0.827676,0.842733,0.863163,0.131603,0.267846,0.794633,0.732749,0.928159,0.0738533,0.676372,0.0179526,0.575551,0.4911,0.0195344,0.285024,0.196282,0.151339,0.257108,0.563338,0.671556,0.322715,0.526771,0.58805,0.275513,0.402676,0.0746598,0.13039,0.818784,0.74235,0.170019,0.839291,0.588538,0.178859,0.646598,0.31871,0.341614,0.885791,0.794986,0.229043,0.16883,0.340341,0.709622,0.493954,0.570103,0.691361,0.0248533,0.212573,0.633506,0.541284,0.809155,0.182319,0.801477,0.204056,0.298855,0.33293,0.860226,0.414672,0.689961,0.27502,0.534824,0.355919,0.597232,0.735578,0.995314,0.771325,0.0801844,0.881094,0.264026,0.601746,0.847517,0.787265,0.0101014,0.293014,0.485514,0.971893,0.684303,0.907264,0.903326,0.786567,0.8876,0.682125,0.762138,0.820037,0.710281,0.226706,0.120057,0.859751,0.314987,0.386701,0.132921,0.0825857,0.636562,0.624147,0.693695,0.5454,0.46498,0.778698,0.701805,0.350014,0.935304,0.387035,0.583307,0.709988,0.69047,0.961979,0.944489,0.137742,0.147429,0.924597,0.523364,0.0686249,0.227624,0.18432,0.540162,0.0345584,0.84926,0.8611,0.723177,0.97371,0.0949617,0.867931,0.395889,0.302308,0.999883,0.241548,0.82982,0.179299,0.818381,0.425803,0.80366,0.458782,0.97182,0.0715401,0.725209,0.825283,0.575457,0.640571,0.603535,0.723656,0.356776,0.216941,0.907619,0.474797,0.237225,0.263408,0.0041489,0.873418,0.843008,0.13025,0.595095,0.954046,0.57319,0.810401,0.981705,0.402505,0.0386347,0.14167,0.93264,0.429683,0.108016,0.573593,0.268898,0.981228,0.787133,0.891891,0.660059,0.611808,0.389027,0.282012,0.487517,0.0387371,0.865079,0.543501,0.848238,0.0609136,0.863308,0.428003,0.13692,0.270499,0.308868,0.0401976,0.20993,0.0641953,0.339874,0.169295,0.42978,0.717102,0.942807,0.797259,0.0995478,0.895871,0.297345,0.30515,0.572546,0.186391,0.851157,0.419548,0.290335,0.847376,0.46527,0.692133,0.591065,0.960954,0.190742,0.0618873,0.883586,0.800607,0.0195643,0.258671,0.947658,0.405453,0.0946315,0.719191,0.413211,0.292509,0.695114,0.508497,0.327185,0.236436,0.248353,0.551556,0.654943,0.0395768,0.90153,0.389162,0.437501,0.514693,0.415162,0.688394,0.664077,0.62602,0.489817,0.25096,0.789093,0.455129,0.169095,0.294572,0.8896,0.95103,0.722489,0.83333,0.106892,0.202847,0.47588,0.359344,0.376279,0.933781,0.655164,0.94909,0.116279,0.867206,0.862448,0.291788,0.493395,0.168818,0.231703,0.00445861,0.69335,0.154495,0.0537121,0.912822,0.317321,0.0580044,0.408111,0.478206,0.438495,0.0536126,0.0173981,0.0239377,0.176865,0.192617,0.519526,0.664514,0.805291,0.435095,0.690972,0.0161037,0.428229,0.0132154,0.868205,0.779855,0.116168,0.840735,0.53332,0.688625,0.317475,0.547549,0.469459,0.529957,0.119282,0.180647,0.879401,0.438307,0.835182,0.597987,0.957696,0.0118724,0.977638,0.375314,0.32212,0.661451,0.553663,0.529135,0.426721,0.483639,0.354747,0.0568779,0.96052,0.292423,0.34652,0.87672,0.787574,0.298224,0.507591,0.552225,0.76928,0.886354,0.229235,0.0192789,0.187624,0.815528,0.374433,0.353967,0.995113,0.627415,0.850936,0.347394,0.190493,0.641284,0.163862,0.696337,0.571888,0.00115061,0.186384,0.992069,0.995001,0.922264,0.841204,0.993272,0.900224,0.0902439,0.331257,0.920976,0.700043,0.287985,0.0897079,0.586241,0.452304,0.972749,0.171905,0.064953,0.462515,0.671846,0.524814,0.0559189,0.475838,0.323574,0.867307,0.526126,0.790789,0.106057,0.800654,0.112052,0.199014,0.581416,0.646025,0.597193,0.573903,0.577065,0.225453,0.778347,0.213981,0.456423,0.883051,0.436983,0.265665,0.414317,0.697889,0.879723,0.939815,0.803889,0.702249,0.212305,0.843358,0.668124,0.193292,0.690988,0.958513,0.456365,0.768774,0.241834,0.525632,0.264427,0.859105,0.578697,0.669205,0.115773,0.544265,0.0920848,0.0437111,0.596767,0.261986,0.645423,0.607089,0.0127664,0.916526,0.876682,0.905415,0.657166,0.80397,0.649447,0.652394,0.918321,0.882393,0.677732,0.504786,0.730625,0.932512,0.665493,0.228895,0.691578,0.357138,0.820837,0.100807,0.48878,0.0905741,0.550504,0.283045,0.590387,0.930956,0.707564,0.559639,0.998807,0.653151,0.779321,0.180716,0.409783,0.595604,0.640396,0.981174,0.386739,0.269256,0.45903,0.339738,0.155852,0.593396,0.186116,0.243966,0.780496,0.563246,0.953585,0.342008,0.531771,0.0464897,0.061147,0.635654,0.195561,0.127848,0.43198,0.166207,0.941604,0.346514,0.553226,0.044682,0.816799,0.931058,0.0902172,0.575207,0.938433,0.166942,0.682387,0.821172,0.101117,0.872938,0.947921,0.206102,0.800017,0.369331,0.473573,0.344282,0.755832,0.626574,0.10901,0.104077,0.670632,0.894284,0.565208,0.796473,0.952344,0.351435,0.0645636,0.128042,0.751026,0.776783,0.251889,0.818511,0.602184,0.242556,0.383297,0.255895,0.132427,0.505025,0.279287,0.642553,0.166645,0.738566,0.147894,0.92263,0.745537,0.812528,0.0878198,0.210309,0.44709,0.133366,0.287541,0.190643,0.361563,0.944763,0.191161,0.876086,0.0700184,0.443195,0.580377,0.241626,0.882338,0.391641,0.090492,0.667521,0.568614,0.383413,0.723563,0.370692,0.214474,0.500509,0.170366,0.392648,0.307272,0.94608,0.375439,0.954439,0.111572,0.174975,0.747454,0.100364,0.299623,0.785149,0.858927,0.307084,0.603294,0.846879,0.351555,0.127541,0.961591,0.108116,0.293894,0.516427,0.116332,0.470041,0.796905,0.0608878,0.443827,0.914889,0.51405,0.724287,0.499833,0.821834,0.732036,0.788903,0.0324489,0.077674,0.942025,0.734321,0.948262,0.41667,0.206265,0.348187,0.949975,0.00824642,0.380761,0.98562,0.636574,0.113448,0.185683,0.220146,0.659512,0.300461,0.856689,0.879294,0.161462,0.400657,0.723272,0.13092,0.800582,0.691908,0.790184,0.057978,0.0844315,0.832593,0.711846,0.440625,0.0365027,0.307781,0.609419,0.602236,0.548583,0.639534,0.812155,0.880699,0.626413,0.259354,0.035535,0.927704,0.610378,0.810803,|0.891412,0.969673,0.732641,0.755862,0.784515,0.379002,0.617715,0.0359398,0.766399,0.939636,0.828789,0.311416,0.375992,0.10214,0.571489,0.147341,0.391659,0.18022,0.0573212,0.468118,0.219453,0.309104,0.736616,0.140296,0.565438,0.455682,0.891365,0.287508,0.510772,0.17721,0.6253,0.631856,0.923186,0.165947,0.791649,0.637669,0.915373,0.906472,0.307037,0.167683,0.301328,0.937969,0.00760788,0.0952125,0.157933,0.564996,0.578996,0.597225,0.265016,0.300828,0.942982,0.183694,0.889468,0.910701,0.214857,0.978755,0.529229,0.314237,0.866683,0.908044,0.422345,0.32909,0.0316305,0.0421578,0.453337,0.344593,0.0585722,0.875491,0.56086,0.523836,0.830903,0.774956,0.165157,0.0710766,0.721654,0.323685,0.487912,0.437886,0.567927,0.312036,0.152978,0.222104,0.297344,0.493342,0.0528659,0.123828,0.103044,0.843207,0.37653,0.358751,0.0126517,0.318159,0.154877,0.28685,0.989662,0.760177,0.554309,0.529229,0.568491,0.653874,0.947125,0.513829,0.214944,0.202438,0.480851,0.48244,0.365388,0.197827,0.097835,0.546556,0.737853,0.757905,0.260401,0.377977,0.271388,0.896957,0.251244,0.0322717,0.22879,0.891984,0.74895,0.481091,0.527723,0.776681,0.668089,0.994528,0.500182,0.413805,0.628377,0.345666,0.638342,0.413345,0.889826,0.25565,0.523575,0.455559,0.769204,0.258412,0.125345,0.0117142,0.332298,0.376598,0.631231,0.26082,0.304093,0.760254,0.28994,0.347627,0.982805,0.910135,0.527503,0.883251,0.913033,0.783061,0.878367,0.315004,0.959007,0.164336,0.287505,0.681722,0.37166,0.65387,0.682165,0.578633,0.317609,0.570693,0.905456,0.0487586,0.49403,0.208128,0.955343,0.820248,0.681328,0.282895,0.119932,0.29246,0.816776,0.122593,0.273016,0.292683,0.972124,0.551126,0.111707,0.728189,0.413647,0.938581,0.568308,0.473616,0.173743,0.839027,0.573245,0.953204,0.395517,0.828625,0.306654,0.828591,0.264367,0.451068,0.229924,0.146518,0.321865,0.643424,0.147837,0.781294,0.159571,0.373267,0.634005,0.552296,0.769049,0.966337,0.287779,0.797616,0.0668795,0.528943,0.615678,0.747409,0.324595,0.166175,0.253799,0.766861,0.316972,0.23756,0.977018,0.784728,0.776815,0.554261,0.971079,0.991417,0.229469,0.683201,0.840332,0.253469,0.440072,0.866235,0.302231,0.36575,0.820848,0.0128867,0.916226,0.627138,0.668161,0.0727783,0.511946,0.922079,0.386684,0.677438,0.840198,0.852007,0.984053,0.740365,0.649516,0.829291,0.462549,0.306187,0.693662,0.386502,0.122688,0.58374,0.856309,0.815256,0.745927,0.351115,0.300217,0.473988,0.898835,0.211908,0.79362,0.658636,0.404853,0.67834,0.85242,0.38708,0.0797008,0.611531,0.626481,0.0744846,0.751203,0.914461,0.238826,0.0905876,0.525475,0.00677544,0.650368,0.802656,0.820384,0.683104,0.540049,0.904137,0.65549,0.764546,0.808951,0.910815,0.0313126,0.329658,0.557437,0.305882,0.494444,0.389675,0.409316,0.097443,0.917979,0.333992,0.383102,0.488282,0.235789,0.512266,0.266223,0.246198,0.251715,0.81518,0.807168,0.410036,0.375788,0.583278,0.836055,0.247351,0.0373356,0.67885,0.412699,0.503874,0.914328,0.450725,0.820926,0.304771,0.453529,0.681995,0.70346,0.342691,0.887009,0.188261,0.99157,0.738418,0.569012,0.305109,0.687752,0.0236257,0.796642,0.759101,0.58161,0.384669,0.861881,0.953832,0.463749,0.905994,0.721744,0.396573,0.0379676,0.73721,0.739344,0.434913,0.527786,0.718997,0.310921,0.703971,0.256154,0.337959,0.35106,0.15009,0.5137,0.748161,0.35121,0.375885,0.541672,0.800569,0.477616,0.714147,0.455429,0.507667,0.599291,0.975876,0.928255,0.643666,0.296048,0.436925,0.318761,0.160259,0.523232,0.0931037,0.308955,0.666182,0.919238,0.699456,0.329837,0.218542,0.824636,0.0586885,0.15617,0.533157,0.266415,0.337174,0.0572344,0.175185,0.121177,0.211,0.307826,0.783359,0.0873016,0.284512,0.56142,0.0861587,0.560128,0.0498771,0.962626,0.0284438,0.0890503,0.319847,0.641028,0.732544,0.159959,0.858609,0.713919,0.260766,0.123362,0.526421,0.211662,0.106848,0.891096,0.913033,0.0547962,0.938664,0.696253,0.534002,0.209427,0.387197,0.274076,0.0383497,0.0805594,0.629731,0.430358,0.419413,0.772127,0.0177646,0.237165,0.32493,0.97385,0.461022,0.979348,0.505931,0.98436,0.903404,0.62369,0.369346,0.609965,0.650251,0.206573,0.778898,0.145362,0.640912,0.458468,0.0425884,0.578737,0.583095,0.644618,0.794215,0.671924,0.711619,0.613612,0.937879,0.834982,0.332241,0.573029,0.593946,0.918646,0.973831,0.488414,0.627284,0.750073,0.934982,0.207079,0.0186042,0.720305,0.0409989,0.955817,0.130859,0.679044,0.677936,0.858619,0.337282,0.858423,0.168667,0.532803,0.664852,0.203427,0.492518,0.639876,0.637688,0.600897,0.317125,0.909095,0.105629,0.469282,0.140928,0.160805,0.755761,0.51849,0.108087,0.393833,0.823146,0.38773,0.773092,0.424072,0.639553,0.554278,0.189759,0.318391,0.736536,0.629391,0.503618,0.814179,0.933416,0.737319,0.288822,0.0913066,0.238529,0.323004,0.885536,0.311378,0.152516,0.0207232,0.682963,0.909205,0.660325,0.320304,0.154304,0.349574,0.027214,0.237199,0.879171,0.697017,0.600746,0.34325,0.572392,0.583967,0.670314,0.70786,0.993966,0.199068,0.271113,0.12977,7.89762e-05,0.855515,0.722596,0.335596,0.56932,0.411913,0.396017,0.0753286,0.583843,0.122336,0.935314,0.905927,0.441817,0.301573,0.785623,0.706765,0.704756,0.395821,0.229699,0.0694453,0.194112,0.425056,0.527712,0.956247,0.591807,0.316702,0.664728,0.726099,0.835992,0.607081,0.478833,0.939246,0.293461,0.165598,0.45234,0.390403,0.0601496,0.755448,0.754689,0.719561,0.0508901,0.350515,0.690311,0.548882,0.491746,0.762455,0.131995,0.407959,0.763741,0.556823,0.915794,0.766297,0.1045,0.00222772,0.0852145,0.968599,0.7274,0.0227413,0.733786,0.194757,0.504892,0.0531513,0.524639,0.722116,0.657431,0.486711,0.770317,0.802447,0.663533,0.366198,0.45845,0.359622,0.0931981,0.583026,0.130599,0.249654,0.696647,0.143998,0.496376,0.11316,0.677557,0.490184,0.158058,0.368018,0.860962,0.488666,0.492866,0.712582,0.0875617,0.1223,0.479753,0.212434,0.0144781,0.961734,0.632687,0.753182,0.909167,0.465962,0.07782,0.260932,0.452735,0.0871281,0.0464756,0.0660453,0.403606,0.0098663,0.00188231,0.625961,0.17395,0.571731,0.526793,0.510869,0.672581,0.305182,0.234228,0.134682,0.352439,0.763879,0.517765,0.479658,0.54862,0.106539,0.400935,0.563428,0.581641,0.838536,0.318122,0.322067,0.73257,0.649509,0.0629382,0.332487,0.229088,0.543089,0.525953,0.650959,0.641771,0.267398,0.0750408,0.948404,0.85526,0.0760347,0.251274,0.415477,0.742311,0.602537,0.717749,0.0870823,0.868887,0.456371,0.607784,0.899996,0.260763,0.823985,0.321102,0.159095,0.617519,0.0163447,0.899958,0.266477,0.41823,0.258842,0.342974,0.938115,0.0226778,0.536489,0.258851,0.23801,0.0108632,0.16772,0.440404,0.125884,0.414346,0.332924,0.77682,0.60923,0.417627,0.815087,0.424404,0.254208,0.0672592,0.91811,0.34982,0.252678,0.687841,0.264858,0.985959,0.438212,0.13934,0.129059,0.428181,0.208328,0.229903,0.638179,0.243285,0.52433,0.925745,0.194076,0.0819728,0.0575013,0.285746,0.972143,0.933097,0.155142,0.498971,0.751923,0.621892,0.337243,0.859689,0.544725,0.435012,0.303587,0.630955,0.746217,0.565071,0.81467,0.869932,0.694684,0.488557,0.353846,0.177224,0.384293,0.996631,0.0953972,0.392217,0.810391,0.560704,0.83492,0.747542,0.0117377,0.0305858,0.091564,0.616921,0.802911,0.360592,0.637552,0.862945,0.290708,0.925045,0.528509,0.774749,0.532846,0.750099,0.96856,0.0451065,0.690055,0.698856,0.916161,0.764486,0.629297,0.428689,0.518716,0.0773024,0.0253735,0.160242,0.655545,0.736525,0.559064,0.100644,0.52689,0.783597,0.743496,0.291835,0.665988,0.572709,0.00433552,0.0344915,0.864251,0.392099,0.420392,0.611386,0.889633,0.550852,0.815691,0.909427,0.990354,0.399217,0.582268,0.648726,0.734735,0.949983,0.311006,0.174493,0.721638,0.129103,0.64053,0.428707,0.0663825,0.0703398,0.856411,0.142917,0.138882,0.380948,0.671934,0.857518,0.672512,0.0143458,0.398609,0.0280167,0.349754,0.488381,0.362916,0.543799,0.00381953,0.943564,0.810198,0.702154,0.301678,0.851614,0.782657,0.374979,0.952517,0.088697,0.357734,0.671203,0.657823,0.0821574,0.0164872,0.0589573,0.0437058,0.319771,0.190937,0.0662227,0.401147,0.934418,0.477167,0.345943,0.563689,0.972872,0.556249,0.798158,0.812572,0.951124,0.51393,0.72718,0.486418,0.633357,0.11288,0.28478,0.692645,0.769047,0.827586,0.749654,0.267211,0.501248,0.159514,0.296874,0.0351823,0.169421,0.665508,0.331014,0.848053,0.597813,0.340914,0.0168688,0.374892,0.455635,0.648942,0.726758,0.938587,0.161428,0.14011,0.883368,0.309648,0.441189,0.298267,0.177948,0.286249,0.510478,0.565509,0.558033,0.78523,0.930264,0.292093,0.509715,0.014264,0.211302,0.689817,0.613898,0.213129,0.29506,0.197119,0.728942,0.916612,0.577828,0.940161,0.950245,0.191037,0.7757,0.320063,0.91434,0.100822,0.0818858,0.00590158,0.445287,0.122369,0.657778,0.0291951,0.82751,0.76052,0.229432,0.995773,0.551718,0.360493,0.750133,0.0789079,0.882512,0.847017,0.731109,0.321552,0.360793,0.964118,0.902581,0.0632333,0.20015,0.0480723,0.243847,0.517403,0.830994,0.567293,0.43341,0.795811,0.362733,0.311134,0.771488,0.249825,0.555361,0.267328,0.607709,0.473776,0.678952,0.773707,0.561424,0.908698,0.230036,0.741087,0.624642,0.324507,0.463631,0.80279,0.935498,0.0905958,0.0778555,0.601915,0.603904,0.645018,0.203397,0.889236,0.901767,0.87445,0.947662,0.238235,0.12378,0.0787497,0.949234,0.41287,0.516418,0.317295,0.38302,0.0224866,0.166948,|0.736699,0.542532,0.508284,0.963036,0.19036,0.873055,0.58937,0.101758,0.679738,0.265658,0.904419,0.11964,0.162124,0.531545,0.980734,0.224018,0.00783741,0.163733,0.854486,0.404678,0.771091,0.17273,0.0958462,0.454742,0.43099,0.011014,0.235249,0.998208,0.660631,0.419809,0.591644,0.160755,0.532824,0.279073,0.574425,0.19614,0.759186,0.0310768,0.687431,0.317651,0.686572,0.930094,0.517474,0.78916,0.72813,0.67414,0.34887,0.0622631,0.637943,0.907131,0.362722,0.653293,0.321302,0.470861,0.151834,0.806052,0.165459,0.779268,0.540154,0.76635,0.558222,0.851001,0.247004,0.0605977,0.869454,0.644554,0.470242,0.122047,0.455108,0.0377486,0.938173,0.678,0.566945,0.180884,0.50604,0.772874,0.729373,0.968148,0.661369,0.466816,0.959232,0.786894,0.758723,0.22673,0.475588,0.525626,0.194636,0.243189,0.314554,0.784707,0.272886,0.466463,0.745449,0.12457,0.504892,0.832376,0.37298,0.44227,0.307437,0.219743,0.0327329,0.388803,0.845373,0.0898884,0.557903,0.626975,0.956316,0.1392,0.790676,0.687468,0.362046,0.118665,0.541907,0.03774,0.754318,0.0827018,0.604157,0.291267,0.620805,0.786536,0.423788,0.570688,0.629865,0.0100587,0.163902,0.181533,0.897965,0.526124,0.793571,0.418793,0.690145,0.252004,0.712231,0.156774,0.432083,0.254162,0.0197969,0.219821,0.726373,0.988453,0.758151,0.559533,0.314211,0.36736,0.772394,0.740074,0.859507,0.996562,0.579618,0.464169,0.251758,0.822905,0.278408,0.203944,0.443466,0.188113,0.204377,0.111385,0.0143769,0.300906,0.338681,0.251597,0.225343,0.16922,0.686668,0.570762,0.0547972,0.163472,0.893107,0.851734,0.488967,0.888228,0.488535,0.906775,0.934457,0.10302,0.8093,0.0469074,0.86314,0.175916,0.785863,0.780107,0.360993,0.34216,0.891341,0.800178,0.566209,0.4064,0.444519,0.752396,0.930626,0.814227,0.397598,0.413301,0.838487,0.65606,0.652716,0.413594,0.472452,0.443038,0.611751,0.0122992,0.57101,0.0284846,0.24347,0.23903,0.48448,0.812779,0.0626065,0.844624,0.796278,0.523212,0.675809,0.121714,0.418589,0.989083,0.0522711,0.0528098,0.290128,0.399962,0.79363,0.748977,0.313664,0.286125,0.913298,0.369527,0.542796,0.73235,0.964988,0.661868,0.309063,0.289707,0.878625,0.0813484,0.168356,0.952782,0.590647,0.353706,0.95076,0.471154,0.105304,0.73289,0.776165,0.279587,0.988113,0.464091,0.796152,0.445525,0.701366,0.154083,0.439645,0.0183023,0.315711,0.290928,0.447209,0.25669,0.853893,0.627355,0.690254,0.000169873,0.55072,0.0693017,0.704374,0.294723,0.991721,0.710422,0.964852,0.930949,0.988989,0.229753,0.70973,0.281595,0.736954,0.97299,0.436401,0.818683,0.456178,0.562025,0.709611,0.0949304,0.81496,0.545717,0.0320722,0.465766,0.185513,0.158093,0.168049,0.484129,0.945749,0.75346,0.218756,0.332589,0.380232,0.0269628,0.634092,0.699266,0.836258,0.476194,0.966279,0.752623,0.966484,0.269769,0.623267,0.639889,0.331255,0.336805,0.55392,0.591083,0.42148,0.731592,0.367568,0.955967,0.910566,0.909635,0.601847,0.204748,0.678033,0.211489,0.345786,0.487119,0.497423,0.00226021,0.322894,0.725862,0.0568309,0.53012,0.993853,0.575361,0.188149,0.71196,0.329662,0.917063,0.133873,0.0986053,0.81971,0.52251,0.336434,0.374316,0.685593,0.862709,0.492113,0.0569492,0.694114,0.559941,0.521634,0.494616,0.0773501,0.198547,0.587238,0.246067,0.331,0.353434,0.653102,0.612789,0.314916,0.0434906,0.30975,0.897987,0.405679,0.214314,0.94135,0.300605,0.832677,0.902253,0.338036,0.913973,0.246853,0.410707,0.591502,0.90407,0.785242,0.752041,0.176734,0.0713704,0.071021,0.604044,0.281828,0.747993,0.822827,0.738541,0.636525,0.784629,0.485188,0.285247,0.749387,0.657676,0.999868,0.0410901,0.434612,0.424328,0.913854,0.150085,0.140884,0.298818,0.368604,0.072356,0.119798,0.412884,0.831353,0.463764,0.490584,0.796725,0.931477,0.368274,0.909503,0.829983,0.727425,0.46699,0.566417,0.610827,0.457178,0.443282,0.774589,0.980057,0.965384,0.678505,0.669182,0.564648,0.826994,0.0947216,0.935004,0.0127869,0.595935,0.00606298,0.402776,0.180287,0.617514,0.758843,0.0774464,0.527261,0.255828,0.0699298,0.795997,0.0386527,0.322149,0.157023,0.231515,0.163601,0.690669,0.182166,0.922795,0.499689,0.242444,0.317188,0.419573,0.291376,0.18756,0.587887,0.771435,0.376232,0.479578,0.620276,0.963527,0.463501,0.464826,0.525814,0.355686,0.91842,0.0185833,0.386617,0.206789,0.0997559,0.472307,0.714779,0.155317,0.991192,0.628656,0.0456317,0.0412182,0.602123,0.184502,0.262874,0.745416,0.259173,0.991045,0.0237894,0.0129283,0.480432,0.745926,0.936814,0.978017,0.533305,0.259209,0.475062,0.74711,0.0852926,0.159053,0.710975,0.374277,0.596121,0.257419,0.751685,0.99859,0.205325,0.125716,0.484192,0.825264,0.304919,0.321948,0.964975,0.44769,0.288682,0.719816,0.88381,0.178776,0.407096,0.934939,0.747593,0.327511,0.636134,0.764444,0.25326,0.237787,0.953013,0.603685,0.414477,0.988964,0.816857,0.190345,0.298298,0.46542,0.533895,0.130335,0.513197,0.402393,0.194148,0.121766,0.919981,0.411518,0.291655,0.0839319,0.833962,0.767759,0.164002,0.486457,0.562694,0.910111,0.803228,0.295832,0.340694,0.970501,0.385555,0.786978,0.642426,0.777385,0.135203,0.38712,0.443107,0.567977,0.552619,0.944296,0.908506,0.473326,0.745529,0.801496,0.493539,0.626837,0.243177,0.175221,0.78041,0.472254,0.765756,0.366127,0.601889,0.221492,0.645189,0.834752,0.109777,0.636271,0.254646,0.318124,0.440277,0.184752,0.715904,0.50409,0.511269,0.391084,0.214097,0.295518,0.696297,0.694941,0.871756,0.707048,0.396584,0.28044,0.612425,0.379596,0.918585,0.803727,0.586058,0.0291861,0.313353,0.765253,0.710385,0.569845,0.542634,0.687873,0.843192,0.841986,0.554455,0.86876,0.53721,0.197372,0.267803,0.324848,0.398896,0.462243,0.201159,0.499742,0.326663,0.485064,0.855945,0.103135,0.632182,0.0177577,0.553682,0.415512,0.886598,0.620999,0.403794,0.189496,0.983363,0.789385,0.0614761,0.946258,0.00262928,0.879852,0.367944,0.827013,0.592936,0.711466,0.118932,0.254587,0.431897,0.224346,0.974039,0.443286,0.960294,0.86846,0.900177,0.606312,0.621826,0.0217075,0.127259,0.901036,0.659213,0.28528,0.916236,0.2886,0.969237,0.982943,0.577963,0.684712,0.563749,0.541265,0.171042,0.330418,0.643009,0.617761,0.100734,0.288789,0.466365,0.233059,0.435021,0.679955,0.593187,0.993913,0.721335,0.696752,0.148736,0.584219,0.87929,0.169812,0.0505278,0.0047735,0.197323,0.297835,0.427042,0.159276,0.295091,0.940551,0.487272,0.567878,0.00935751,0.530267,0.862599,0.102797,0.752315,0.858529,0.604256,0.792876,0.868145,0.0923694,0.088038,0.462952,0.849358,0.892596,0.513519,0.547021,0.837616,0.256415,0.128008,0.425171,0.488231,0.290514,0.21544,0.0950491,0.348842,0.242349,0.248618,0.412683,0.655374,0.173416,0.629478,0.45526,0.589812,0.739143,0.322804,0.888912,0.0215034,0.621199,0.280378,0.198751,0.1482,0.820819,0.337524,0.87455,0.453908,0.0229319,0.461791,0.640384,0.37241,0.0703701,0.0795713,0.950886,0.315547,0.286218,0.533414,0.970056,0.542777,0.779826,0.879839,0.452005,0.703637,0.220752,0.703038,0.150346,0.529189,0.0198525,0.478851,0.361166,0.204323,0.184519,0.598993,0.276191,0.803402,0.969629,0.19192,0.199776,0.0384331,0.619967,0.355436,0.394578,0.808248,0.99401,0.381486,0.572447,0.169816,0.172177,0.700513,0.159332,0.549571,0.629058,0.792943,0.471723,0.885188,0.106097,0.858596,0.416934,0.381449,0.047502,0.680802,0.452631,0.709648,0.0464704,0.315398,0.451534,0.0391062,0.214776,0.884486,0.488021,0.968894,0.441103,0.127259,0.410617,0.0281903,0.154521,0.0837169,0.00167042,0.0996148,0.479567,0.337542,0.957595,0.0683062,0.182151,0.542328,0.0576865,0.667988,0.897437,0.690518,0.915652,0.749964,0.637172,0.548822,0.390593,0.253186,0.868935,0.969037,0.385341,0.108981,0.63133,0.505312,0.178029,0.361629,0.426637,0.633206,0.656772,0.0307944,0.446853,0.649163,0.462585,0.752395,0.292714,0.504913,0.352158,0.799436,0.66327,0.730104,0.777185,0.634531,0.275362,0.141987,0.375072,0.607587,0.80489,0.363938,0.464467,0.528744,0.893363,0.750327,0.53467,0.933214,0.524136,0.971791,0.954829,0.987961,0.855986,0.603408,0.0350307,0.899019,0.585477,0.618483,0.672292,0.130831,0.170451,0.361509,0.191277,0.440577,0.64424,0.498001,0.800834,0.0721473,0.902711,0.211682,0.139586,0.681684,0.733586,0.69976,0.0833409,0.408269,0.530289,0.800226,0.190181,0.0732606,0.774788,0.664484,0.91576,0.822686,0.0638616,0.214658,0.790198,0.56328,0.746966,0.294529,0.415143,0.633802,0.642654,0.615737,0.988855,0.601549,0.918044,0.908132,0.398812,0.677965,0.707912,0.651301,0.450385,0.82713,0.194316,0.0246662,0.750304,0.0439072,0.115791,0.302432,0.315647,0.383205,0.691182,0.998839,0.333952,0.108822,0.268238,0.390396,0.287889,0.0665058,0.213789,0.931927,0.926223,0.435487,0.525936,0.553449,0.67497,0.81255,0.852362,0.118075,0.437617,0.816225,0.96608,0.588242,0.396422,0.970696,0.435601,0.260566,0.904625,0.731173,0.550326,0.426319,0.326945,0.407797,0.0189561,0.312073,0.235141,0.270193,0.597665,0.756745,0.228097,0.763976,0.956796,0.742672,0.842717,0.867293,0.727344,0.821327,0.502643,0.255842,0.246451,0.757478,0.816492,0.333356,0.832126,0.921269,0.251796,0.962817,0.536179,0.281086,0.485745,0.747573,0.369049,0.269979,0.0768383,0.75314,0.28022,0.512827,0.650965,0.652933,0.286609,0.737069,0.631803,0.222508,0.453974,0.176366,0.518098,0.0925263,0.420384,0.0799721,0.680393,0.58321,0.774305,0.0142432,0.581472,0.903013,|0.565783,0.333834,0.581968,0.865029,0.638477,0.432609,0.974225,0.469743,0.834863,0.648663,0.513223,0.130329,0.0943298,0.0508261,0.750194,0.293963,0.38019,0.483993,0.268524,0.955038,0.797577,0.000766993,0.381615,0.506484,0.0629269,0.888234,0.180758,0.0671153,0.80089,0.334595,0.117462,0.6817,0.675497,0.616515,0.884421,0.556268,0.175472,0.920128,0.0361379,0.132839,0.938604,0.610708,0.940344,0.328802,0.323777,0.911158,0.402622,0.198637,0.0701436,0.735214,0.869885,0.707552,0.184539,0.886471,0.960826,0.0891473,0.48657,0.198971,0.753673,0.617495,0.433446,0.275856,0.900639,0.90725,0.463853,0.541808,0.0563757,0.319228,0.238481,0.973186,0.423696,0.976381,0.793364,0.923936,0.000958622,0.465772,0.0923759,0.641679,0.987968,0.65027,0.999359,0.46169,0.550903,0.425847,0.898053,0.473713,0.617283,0.668901,0.0173153,0.805636,0.59884,0.381995,0.457502,0.0651553,0.00174421,0.773616,0.334458,0.96681,0.32902,0.686556,0.173747,0.0491321,0.0730462,0.809027,0.736381,0.64658,0.862042,0.0499943,0.33612,0.773274,0.205324,0.700653,0.146443,0.72961,0.47291,0.885193,0.34104,0.376864,0.309013,0.888987,0.407708,0.0388549,0.454069,0.368242,0.351239,0.774872,0.45252,0.985443,0.273434,0.0602976,0.0609373,0.877307,0.313462,0.719267,0.126834,0.616585,0.646379,0.948596,0.845783,0.814475,0.710719,0.473483,0.566327,0.453327,0.878841,0.674079,0.190347,0.96101,0.225693,0.920985,0.983885,0.411134,0.760014,0.291101,0.977756,0.748497,0.646839,0.235577,0.881625,0.837717,0.433363,0.263284,0.392226,0.458532,0.209818,0.856198,0.259309,0.117229,0.828602,0.479419,0.856179,0.626673,0.349591,0.842702,0.735985,0.779763,0.359509,0.120101,0.936571,0.637819,0.999806,0.356024,0.861737,0.34915,0.904719,0.0657675,0.795082,0.195586,0.416604,0.512059,0.0260093,0.894981,0.846409,0.467136,0.533239,0.784897,0.156608,0.624074,0.193786,0.0431936,0.829816,0.917393,0.0210499,0.392441,0.0664575,0.58456,0.778787,0.842237,0.620821,0.970729,0.452379,0.232938,0.940565,0.738086,0.802357,0.940531,0.573572,0.283472,0.0126286,0.669226,0.282977,0.228513,0.797844,0.68697,0.425671,0.253944,0.839754,0.607423,0.567337,0.730968,0.924028,0.178835,0.175477,0.105682,0.12965,0.633494,0.560337,0.252614,0.77598,0.136377,0.305352,0.231885,0.610086,0.92848,0.0506091,0.225598,0.54366,0.0598313,0.0500804,0.311327,0.853267,0.0403008,0.709667,0.196929,0.732516,0.217105,0.348522,0.393422,0.424846,0.148554,0.25663,0.567697,0.432646,0.449332,0.635022,0.218977,0.965291,0.440608,0.519813,0.456995,0.455296,0.814126,0.477973,0.314579,0.347181,0.00538719,0.649303,0.0599086,0.741677,0.468276,0.949712,0.276873,0.543983,0.997793,0.876217,0.47447,0.142353,0.720639,0.775993,0.738229,0.0512364,0.529101,0.275197,0.457218,0.744439,0.679454,0.197797,0.173215,0.970646,0.722742,0.0872614,0.986936,0.67663,0.140556,0.785851,0.11233,0.376548,0.414377,0.00157368,0.231127,0.0181933,0.0582304,0.99248,0.895991,0.622087,0.775241,0.121151,0.602351,0.61764,0.590051,0.360144,0.324818,0.210573,0.213316,0.977934,0.452091,0.0955175,0.933717,0.57469,0.284478,0.233737,0.311261,0.788489,0.188965,0.606854,0.484017,0.774878,0.56732,0.429786,0.930165,0.655395,0.31978,0.206342,0.584337,0.409388,0.835778,0.947048,0.0168759,0.372872,0.282815,0.162218,0.1183,0.284897,0.0816907,0.261703,0.216179,0.912403,0.0607104,0.894388,0.503534,0.967852,0.708231,0.977232,0.466012,0.342477,0.780265,0.0726261,0.209501,0.998934,0.989362,0.164376,0.875438,0.0631008,0.427921,0.983567,0.0844378,0.0604073,0.22649,0.315455,0.672732,0.329759,0.30682,0.302137,0.805188,0.412561,0.519876,0.309347,0.602133,0.859354,0.579494,0.644252,0.148081,0.311923,0.595249,0.0654352,0.993715,0.189421,0.220632,0.851776,0.804752,0.382194,0.95776,0.84362,0.170781,0.373026,0.357115,0.763929,0.512222,0.63557,0.299362,0.121441,0.098749,0.332667,0.496737,0.452609,0.84635,0.249472,0.402243,0.103253,0.472883,0.505034,0.951542,0.772878,0.136439,0.881675,0.074919,0.320818,0.719757,0.785798,0.676404,0.00345945,0.694626,0.571815,0.0991783,0.409717,0.669563,0.839699,0.921711,0.346554,0.900423,0.508931,0.479484,0.139045,0.376641,0.801774,0.91958,0.933655,0.420445,0.89392,0.650677,0.540692,0.531271,0.210506,0.400832,0.39092,0.141787,0.234716,0.0284898,0.887709,0.670645,0.333793,0.565684,0.533056,0.171007,0.816967,0.484692,0.76466,0.480073,0.967119,0.505661,0.344731,0.115036,0.293071,0.169996,0.113716,0.971732,0.571626,0.551147,0.325979,0.0235442,0.820261,0.295638,0.93939,0.799839,0.866383,0.370016,0.713999,0.613038,0.977969,0.559988,0.224714,0.774393,0.436491,0.675984,0.668358,0.211036,0.629775,0.431794,0.437681,0.78149,0.549583,0.269526,0.476395,0.522601,0.302702,0.364871,0.115149,0.806089,0.832708,0.780522,0.914665,0.166658,0.796542,0.686981,0.828934,0.44845,0.767273,0.247586,0.88676,0.408362,0.341541,0.154069,0.709225,0.962209,0.347888,0.346649,0.965095,0.77951,0.502485,0.0250032,0.651402,0.173338,0.346482,0.0667457,0.88428,0.711196,0.610624,0.738692,0.936379,0.298159,0.722852,0.573358,0.417627,0.0760469,0.704138,0.0954639,0.542972,0.224743,0.925555,0.175301,0.35344,0.915755,0.210989,0.589557,0.688552,0.0808529,0.346468,0.596708,0.158812,0.45726,0.446523,0.0215982,0.847377,0.346631,0.50841,0.220109,0.460537,0.701403,0.913916,0.829143,0.916064,0.620694,0.310315,0.73188,0.165506,0.352474,0.805282,0.699845,0.957803,0.490824,0.962144,0.969117,0.720933,0.762253,0.128121,0.92502,0.84465,0.0129876,0.0813505,0.548116,0.130207,0.50014,0.431203,0.0901554,0.104337,0.363061,0.214306,0.542545,0.243858,0.0234859,0.615526,0.0871141,0.909847,0.853222,0.782202,0.789205,0.426602,0.0314829,0.629924,0.324518,0.722799,0.422975,0.178254,0.149642,0.188765,0.249383,0.106055,0.202462,0.997991,0.51307,0.616716,0.396835,0.133608,0.488787,0.034274,0.275231,0.244345,0.315765,0.416768,0.941626,0.483455,0.141445,0.912929,0.929032,0.350166,0.270531,0.777405,0.894806,0.611929,0.0311454,0.514656,0.28116,0.20736,0.385127,0.639931,0.944676,0.554921,0.836263,0.942777,0.398303,0.439384,0.970468,0.58201,0.410887,0.734062,0.478806,0.865971,0.57639,0.0558723,0.705249,0.655442,0.314934,0.145046,0.0814801,0.292157,0.960708,0.154392,0.724702,0.936647,0.157973,0.313011,0.489849,0.147528,0.676669,0.0532709,0.306166,0.0705725,0.195508,0.464111,0.520035,0.340307,0.95946,0.537567,0.0864961,0.74593,0.448566,0.29079,0.269953,0.679349,0.56382,0.167266,0.865656,0.817402,0.744994,0.781989,0.237577,0.562767,0.945807,0.0987108,0.142511,0.871836,0.276068,0.770129,0.400567,0.129601,0.838598,0.662124,0.544005,0.470323,0.143416,0.346346,0.702636,0.366192,0.175482,0.17137,0.970025,0.579867,0.679782,0.518582,0.991482,0.988754,0.664702,0.239938,0.0151543,0.0425305,0.791101,0.695702,0.113349,0.364621,0.77732,0.655351,0.270605,0.362521,0.958132,0.822521,0.887103,0.609543,0.607667,0.712309,0.796769,0.203539,0.0059166,0.291115,0.538634,0.00341171,0.506005,0.810515,0.474652,0.586812,0.666308,0.41481,0.973437,0.415269,0.723543,0.364144,0.614532,0.8046,0.874431,0.591192,0.129786,0.966262,0.575172,0.811696,0.0888043,0.846965,0.30106,0.144605,0.483178,0.651705,0.012391,0.498677,0.716531,0.967468,0.599575,0.403966,0.286753,0.517945,0.14915,0.184619,0.715419,0.208263,0.123589,0.554477,0.339715,0.975218,0.281156,0.0653276,0.0857788,0.57562,0.0557908,0.647259,0.645467,0.241682,0.236528,0.968746,0.25127,0.176752,0.580993,0.960527,0.155639,0.336618,0.984471,0.894837,0.151376,0.997403,0.206997,0.948164,0.0908821,0.137839,0.150963,0.131919,0.424205,0.31087,0.0770605,0.751647,0.808924,0.074605,0.700152,0.04232,0.964069,0.715793,0.564517,0.499175,0.331614,0.970108,0.607327,0.0740806,0.664581,0.632254,0.150324,0.380832,0.27244,0.29926,0.585095,0.91777,0.22023,0.150272,0.723026,0.217333,0.861509,0.140108,0.442125,0.568987,0.879849,0.986287,0.695912,0.053133,0.153647,0.558406,0.384114,0.135572,0.15516,0.738117,0.882184,0.023429,0.438967,0.15966,0.639746,0.897703,0.940548,0.874523,0.808305,0.52222,0.575799,0.328133,0.648211,0.772907,0.441834,0.10438,0.126467,0.141235,0.122851,0.876271,0.234352,0.104908,0.0474269,0.762003,0.47604,0.271776,0.78407,0.0376093,0.950215,0.15783,0.320318,0.544709,0.538719,0.129478,0.907633,0.0349605,0.811473,0.483742,0.727292,0.302962,0.505855,0.646313,0.538571,0.936077,0.787704,0.962062,0.450475,0.00206125,0.936373,0.714415,0.601084,0.16531,0.356592,0.375971,0.267976,0.329331,0.0632619,0.443963,0.899994,0.925224,0.243671,0.65979,0.884819,0.491786,0.669252,0.0529463,0.889955,0.409366,0.782978,0.945843,0.0718495,0.219506,0.529324,0.958708,0.468772,0.890999,0.7512,0.318481,0.294276,0.0152476,0.535048,0.946379,0.070043,0.870122,0.617408,0.342775,0.382529,0.695526,0.0630276,0.248297,0.22187,0.451054,0.78221,0.325184,0.415141,0.380334,0.23772,0.0990427,0.1718,0.125062,0.372431,0.687,0.293934,0.625846,0.458488,0.0479666,0.88326,0.520536,0.0229095,0.515664,0.958295,0.839046,0.706562,0.290741,0.345586,0.246404,0.869922,0.394859,0.247805,0.477922,0.0737452,0.579445,0.927481,0.491637,0.903666,0.958237,0.659886,0.560817,0.167666,0.645419,0.116618,0.310125,0.377923,0.0171034,0.982645,0.864619,0.749773,0.290759,0.185723,0.598769,0.23842,0.753678,0.210212,0.255056,0.662872,0.648936,0.453106,|0.872864,0.952899,0.219609,0.590347,0.570511,0.788853,0.454241,0.975407,0.883115,0.860211,0.54225,0.302548,0.32425,0.161733,0.334309,0.0317627,0.786467,0.998955,0.753472,0.29299,0.473674,0.480278,0.0496138,0.401508,0.749809,0.129494,0.552422,0.321182,0.265096,0.907815,0.275182,0.672129,0.564967,0.490666,0.797244,0.386178,0.561798,0.972242,0.731483,0.0629657,0.235103,0.239186,0.47634,0.791204,0.792044,0.247322,0.600403,0.794611,0.074609,0.612673,0.0486596,0.456437,0.115331,0.380682,0.414252,0.344851,0.936196,0.544703,0.507908,0.181259,0.979781,0.67579,0.608431,0.672364,0.78405,0.50652,0.160556,0.154022,0.283267,0.346026,0.925761,0.748146,0.773595,0.489889,0.456274,0.650691,0.910566,0.658732,0.154834,0.381543,0.71744,0.145545,0.113665,0.359245,0.440262,0.596567,0.390839,0.984468,0.38042,0.620541,0.392093,0.760699,0.468849,0.80492,0.174936,0.966246,0.284907,0.0135491,0.636941,0.273792,0.921309,0.454309,0.2826,0.931228,0.293751,0.90163,0.749212,0.301155,0.315493,0.700432,0.480275,0.953576,0.43125,0.067009,0.869094,0.321963,0.61394,0.852399,0.607429,0.569635,0.556471,0.962283,0.471114,0.198493,0.839589,0.505608,0.250676,0.295392,0.0939751,0.903685,0.0580948,0.551794,0.360623,0.0102089,0.698997,0.856525,0.567323,0.808262,0.6463,0.904588,0.52031,0.431954,0.378143,0.537179,0.0171933,0.536333,0.816004,0.406169,0.0305153,0.952856,0.995965,0.726278,0.437971,0.301213,0.275792,0.830058,0.198656,0.0298803,0.7495,0.260669,0.93094,0.746039,0.262395,0.244063,0.0216008,0.655465,0.185693,0.268466,0.203915,0.0208222,0.624347,0.276032,0.0739698,0.971942,0.496798,0.322597,0.457995,0.2984,0.563235,0.232716,0.101957,0.338344,0.679918,0.0737084,0.171557,0.3931,0.0266639,0.977499,0.821676,0.869612,0.610873,0.355177,0.144536,0.214247,0.2648,0.673784,0.769886,0.391578,0.897973,0.606635,0.626419,0.654499,0.955371,0.14659,0.466088,0.427698,0.25459,0.500081,0.255619,0.305951,0.820144,0.53377,0.679883,0.2225,0.154303,0.817804,0.29236,0.908553,0.916257,0.897874,0.792073,0.32321,0.689773,0.72885,0.761309,0.0363124,0.316641,0.13693,0.585526,0.511905,0.804115,0.626901,0.8549,0.38234,0.0829936,0.195169,0.676429,0.765787,0.0844856,0.221522,0.709485,0.204876,0.365532,0.877403,0.387536,0.969285,0.571351,0.662971,0.735018,0.0738279,0.511162,0.26992,0.256788,0.341445,0.803263,0.562486,0.540526,0.991478,0.911064,0.453832,0.370505,0.262838,0.636014,0.743976,0.473532,0.250447,0.269553,0.200154,0.416196,0.791973,0.995721,0.60819,0.435766,0.806205,0.319804,0.195855,0.103155,0.447697,0.072203,0.215016,0.0562555,0.663911,0.347771,0.98201,0.213414,0.987612,0.671531,0.0925636,0.46278,0.379814,0.463391,0.398253,0.985972,0.0359968,0.596557,0.244791,0.630485,0.332545,0.349539,0.475227,0.201179,0.0840173,0.0744102,0.87285,0.610744,0.472376,0.750197,0.220555,0.799573,0.617507,0.137091,0.715647,0.315077,0.975849,0.0610101,0.440737,0.162733,0.275562,0.525941,0.771528,0.365562,0.754237,0.340747,0.960546,0.760246,0.52326,0.379251,0.014375,0.91368,0.229428,0.30915,0.597264,0.149913,0.264806,0.0850608,0.650188,0.929893,0.842168,0.709268,0.976785,0.583957,0.433587,0.280044,0.0770218,0.437481,0.81076,0.00903296,0.402118,0.124288,0.189108,0.190796,0.331385,0.437986,0.524987,0.108029,0.289051,0.464624,0.113263,0.654865,0.308306,0.617944,0.333905,0.0976731,0.110435,0.398337,0.218345,0.55318,0.54739,0.253585,0.216792,0.757499,0.426921,0.923108,0.756318,0.581239,0.700906,0.838068,0.975205,0.726006,0.398828,0.614368,0.372999,0.232037,0.910123,0.101919,0.87745,0.902881,0.478901,0.444008,0.0947955,0.862599,0.32839,0.586083,0.94309,0.288553,0.658235,0.890753,0.100645,0.237378,0.546725,0.00678384,0.68869,0.653407,0.676088,0.819798,0.565916,0.40387,0.748174,0.420723,0.107024,0.554629,0.46856,0.661987,0.442418,0.566622,0.34781,0.231118,0.649796,0.00383931,0.943188,0.310075,0.30001,0.544163,0.762013,0.890412,0.623898,0.682761,0.297124,0.110182,0.294612,0.407138,0.030387,0.0712181,0.0125347,0.503124,0.420244,0.698075,0.552292,0.825276,0.583098,0.862801,0.575725,0.662625,0.130325,0.204722,0.375216,0.387745,0.116106,0.990989,0.431046,0.654209,0.746557,0.460575,0.510922,0.231362,0.234107,0.0390644,0.232415,0.766469,0.5888,0.376708,0.846739,0.667278,0.913445,0.476329,0.902086,0.985381,0.122308,0.481825,0.23278,0.343001,0.728078,0.616667,0.214194,0.983052,0.115789,0.526535,0.465345,0.433568,0.353992,0.636049,0.98481,0.15995,0.0553467,0.754535,0.41677,0.982387,0.725752,0.0106291,0.425115,0.329921,0.478468,0.501347,0.645151,0.336057,0.109388,0.607999,0.374474,0.891503,0.0900164,0.792973,0.183188,0.139801,0.663341,0.0855808,0.713689,0.202851,0.581132,0.238983,0.0746643,0.087597,0.010999,0.454983,0.604767,0.901055,0.325221,0.406004,0.226014,0.63001,0.613205,0.0427091,0.364196,0.739294,0.701597,0.922722,0.0222899,0.547385,0.930235,0.758556,0.12123,0.490365,0.222519,0.396833,0.667413,0.993419,0.765726,0.140629,0.68513,0.945129,0.199346,0.448294,0.403852,0.995338,0.112674,0.295378,0.950875,0.490918,0.566367,0.888479,0.609215,0.201872,0.204898,0.994805,0.750899,0.94889,0.945093,0.00570673,0.21089,0.990313,0.778728,0.206698,0.164393,0.512325,0.708199,0.36944,0.351675,0.849517,0.179731,0.670228,0.150956,0.842902,0.422706,0.913064,0.0645272,0.694111,0.554632,0.434772,0.169407,0.528318,0.415978,0.390023,0.363242,0.277281,0.597145,0.288777,0.368871,0.637369,0.440013,0.860119,0.529441,0.763869,0.398974,0.749473,0.41739,0.204273,0.00198287,0.539494,0.963115,0.806311,0.386818,0.953337,0.908125,0.63067,0.887341,0.835793,0.970357,0.643557,0.185423,0.467814,0.014424,0.845441,0.165646,0.38804,0.997924,0.981322,0.885104,0.00731295,0.886351,0.502009,0.311685,0.992034,0.165213,0.963815,0.457145,0.257058,0.0332891,0.947202,0.461828,0.513226,0.549816,0.840357,0.90583,0.969856,0.0192029,0.69397,0.294778,0.474867,0.937126,0.429571,0.383765,0.942612,0.769505,0.5431,0.598214,0.0472698,0.297826,0.375802,0.210911,0.0532395,0.187324,0.41922,0.301054,0.727805,0.602713,0.32728,0.565783,0.822901,0.694965,0.696416,0.402117,0.605263,0.750281,0.366619,0.210762,0.825904,0.806921,0.653023,0.407431,0.600736,0.128186,0.568654,0.798545,0.574756,0.0167696,0.296986,0.100195,0.431127,0.311051,0.492572,0.414649,0.121965,0.764076,0.247853,0.910473,0.0675806,0.5858,0.992496,0.157736,0.459134,0.577997,0.693601,0.787429,0.976161,0.638629,0.0584767,0.309251,0.354029,0.0597028,0.669928,0.214313,0.904513,0.570741,0.188554,0.170078,0.357808,0.249732,0.217807,0.97094,0.314949,0.713576,0.945211,0.0189375,0.754873,0.494821,0.972217,0.274959,0.409906,0.3232,0.77153,0.356072,0.600683,0.575403,0.555624,0.206796,0.887548,0.603201,0.730785,0.993116,0.72377,0.750355,0.680952,0.702484,0.985101,0.9344,0.0802023,0.0786228,0.0465764,0.211171,0.802436,0.510597,0.962784,0.735562,0.779211,0.713321,0.683921,0.915643,0.879962,0.961249,0.7137,0.00562781,0.22358,0.691239,0.895794,0.0151103,0.831362,0.987082,0.363642,0.880113,0.690278,0.731352,0.238576,0.676423,0.526599,0.325846,0.578575,0.490582,0.69154,0.960244,0.848531,0.882699,0.800306,0.775231,0.303441,0.61942,0.0983933,0.474324,0.449072,0.888386,0.393211,0.19179,0.599935,0.550118,0.842277,0.303668,0.178256,0.0440344,0.984496,0.775718,0.119499,0.123981,0.258266,0.343921,0.990469,0.541485,0.202522,0.974757,0.0808782,0.693156,0.415006,0.486113,0.133005,0.719915,0.126522,0.645829,0.510514,0.127087,0.455072,0.995301,0.723099,0.0228647,0.870107,0.936461,0.236327,0.400306,0.00522608,0.514181,0.0161766,0.677684,0.297414,0.361669,0.483762,0.111923,0.337157,0.762361,0.375426,0.325043,0.367823,0.553921,0.634091,0.10398,0.828803,0.683883,0.0872551,0.14365,0.557657,0.162309,0.415318,0.770846,0.091748,0.740765,0.3336,0.314294,0.444587,0.946032,0.858999,0.0666935,0.364536,0.423156,0.0609832,0.0439554,0.392272,0.991221,0.717939,0.124698,0.622927,0.212527,0.37443,0.168727,0.941483,0.0714602,0.851935,0.774305,0.843846,0.583465,0.970123,0.657295,0.24085,0.877748,0.2721,0.87046,0.206456,0.961195,0.268045,0.145645,0.744039,0.756268,0.058715,0.958052,0.821964,0.0383813,0.517939,0.194316,0.732724,0.19543,0.0759069,0.288739,0.756488,0.502193,0.310771,0.706893,0.710208,0.110017,0.859679,0.541452,0.619969,0.318453,0.186689,0.594486,0.873545,0.0274522,0.0646731,0.891728,0.442028,0.212132,0.537744,0.0528584,0.494536,0.582176,0.105228,0.742974,0.74636,0.155475,0.865968,0.313127,0.777908,0.276241,0.964499,0.1091,0.490536,0.401981,0.552788,0.103245,0.376014,0.626898,0.800114,0.382705,0.690277,0.0637583,0.382473,0.0690585,0.397744,0.384757,0.822467,0.203116,0.188518,0.0674445,0.731104,0.544674,0.538848,0.658808,0.165913,0.447005,0.147946,0.86368,0.715258,0.289923,0.802912,0.623764,0.560755,0.184549,0.407135,0.747385,0.446027,0.66205,0.0440701,0.759347,0.0377067,0.697153,0.966496,0.0600157,0.73224,0.702298,0.345431,0.00869977,0.341827,0.877919,0.227297,0.671736,0.371954,0.81062,0.916428,0.988321,0.296671,0.661798,0.840801,0.899561,0.213809,0.627573,0.123117,0.673126,0.760008,0.506794,0.831775,0.292546,0.892178,0.298439,0.308199,0.219993,0.679758,0.136914,0.576666,0.276318,0.615887,0.343038,0.559212,0.770216,0.188352,0.732265,0.202133,0.708488,|0.4481,0.546345,0.201613,0.751149,0.608752,0.370777,0.145325,0.263211,0.869209,0.704851,0.5782,0.462563,0.429914,0.822064,0.82105,0.584505,0.828583,0.932573,0.467546,0.974988,0.392803,0.61944,0.935629,0.81263,0.472752,0.733271,0.697889,0.390319,0.953798,0.133478,0.0610439,0.179084,0.400213,0.257545,0.862555,0.232111,0.187704,0.554367,0.700253,0.380846,0.489534,0.787099,0.551068,0.653739,0.108092,0.476643,0.805442,0.684345,0.31028,0.359835,0.284393,0.620889,0.320991,0.565254,0.603529,0.989536,0.988216,0.415703,0.624047,0.468352,0.244765,0.545914,0.646111,0.359118,0.37583,0.866643,0.266921,0.260969,0.994182,0.94638,0.410816,0.187629,0.336097,0.368631,0.0934003,0.438832,0.298662,0.539369,0.479498,0.764486,0.638813,0.470519,0.354943,0.445886,0.530634,0.58716,0.233202,0.323574,0.132705,0.178846,0.851388,0.228043,0.0285389,0.575146,0.346619,0.714534,0.603779,0.993128,0.0735723,0.46343,0.0368518,0.644083,0.852551,0.949288,0.0943058,0.871169,0.570537,0.704293,0.676636,0.548705,0.0947059,0.357084,0.919299,0.849146,0.664148,0.00108588,0.268393,0.815447,0.414318,0.290028,0.56313,0.167943,0.101616,0.34198,0.724293,0.679954,0.931124,0.352897,0.736401,0.790482,0.0709805,0.842278,0.0688951,0.00919592,0.470462,0.657305,0.0862479,0.771331,0.924556,0.789028,0.58981,0.457428,0.924775,0.052317,0.146086,0.360032,0.0925426,0.457456,0.850672,0.219973,0.887803,0.576694,0.280807,0.473785,0.665313,0.418727,0.678502,0.145748,0.440268,0.595037,0.74007,0.36447,0.638091,0.948772,0.572647,0.652775,0.395203,0.344346,0.283535,0.176511,0.750841,0.748288,0.581975,0.545072,0.984489,0.775313,0.878559,0.485361,0.783268,0.981662,0.948122,0.128945,0.171202,0.216457,0.154162,0.677149,0.525956,0.950431,0.00106329,0.869215,0.247332,0.814762,0.196714,0.257708,0.071346,0.957634,0.453026,0.514092,0.0069018,0.179829,0.370333,0.574732,0.978349,0.0246987,0.536878,0.637617,0.150254,0.491208,0.18847,0.656883,0.731875,0.161404,0.821061,0.342746,0.252195,0.550542,0.440646,0.81143,0.655888,0.979267,0.076656,0.916898,0.960966,0.706187,0.398908,0.80046,0.487196,0.79476,0.682632,0.241169,0.620185,0.455641,0.292828,0.649251,0.102143,0.139317,0.993468,0.880848,0.742299,0.306106,0.522951,0.255704,0.075503,0.779889,0.802478,0.399914,0.383571,0.337287,0.575414,0.193263,0.813857,0.0197299,0.96385,0.861529,0.899189,0.241068,0.692876,0.0342171,0.427864,0.913273,0.78211,0.508531,0.414536,0.0421687,0.97441,0.942398,0.419031,0.929089,0.164242,0.683139,0.670104,0.937666,0.300721,0.779968,0.487325,0.465739,0.604802,0.116205,0.799145,0.496461,0.455311,0.624817,0.803441,0.871673,0.278404,0.334303,0.146013,0.912226,0.604061,0.393705,0.360492,0.663976,0.739636,0.315785,0.558073,0.147836,0.904414,0.404952,0.463981,0.64906,0.723767,0.122977,0.728408,0.488025,0.204485,0.250191,0.0397487,0.351207,0.36554,0.588267,0.613386,0.411254,0.539747,0.967338,0.0945525,0.556388,0.213375,0.101615,0.777249,0.0290656,0.0809876,0.116549,0.107342,0.213085,0.466519,0.527353,0.615451,0.0680142,0.217441,0.530944,0.711881,0.304407,0.990168,0.61389,0.319693,0.507082,0.0467765,0.388507,0.686844,0.240449,0.230346,0.563919,0.728664,0.486674,0.240203,0.077408,0.00479245,0.889935,0.888286,0.922649,0.218455,0.0264457,0.951512,0.971158,0.494373,0.654151,0.51491,0.504359,0.87261,0.965951,0.18263,0.419744,0.10723,0.576248,0.366244,0.755708,0.727956,0.2967,0.965174,0.344372,0.258299,0.0230532,0.417373,0.599489,0.156062,0.409967,0.805941,0.599327,0.602234,0.800026,0.825939,0.795161,0.0786038,0.188317,0.0350951,0.654533,0.631809,0.698296,0.372788,0.198066,0.00696766,0.833667,0.200271,0.302118,0.969962,0.253705,0.301041,0.209384,0.774575,0.886529,0.0047437,0.240217,0.584402,0.848868,0.0798223,0.164881,0.981056,0.327358,0.717344,0.915505,0.560665,0.787899,0.215654,0.826939,0.853529,0.485036,0.691372,0.223602,0.984572,0.980669,0.813937,0.825479,0.0872676,0.00802952,0.45184,0.381407,0.61304,0.598004,0.147446,0.233096,0.771469,0.183918,0.0276728,0.91179,0.0977526,0.109017,0.273554,0.0969979,0.731472,0.105074,0.0892614,0.467295,0.330737,0.0407687,0.246493,0.46288,0.301985,0.643751,0.614546,0.497994,0.551416,0.101756,0.755959,0.768529,0.13374,0.443984,0.19965,0.706277,0.0688191,0.830306,0.0279752,0.874671,0.830126,0.992309,0.87018,0.789667,0.819991,0.515078,0.0161242,0.051827,0.490933,0.176818,0.629339,0.248326,0.501247,0.37633,0.509416,0.0824427,0.0895674,0.952814,0.0831817,0.193014,0.721496,0.855154,0.737185,0.767352,0.422287,0.644021,0.204119,0.141808,0.800809,0.602331,0.148163,0.24925,0.380234,0.594653,0.60043,0.928177,0.257653,0.758692,0.929698,0.235039,0.272077,0.679493,0.616999,0.562426,0.419349,0.816907,0.227112,0.307281,0.0108789,0.182602,0.934155,0.901153,0.87961,0.0943796,0.258822,0.869705,0.950125,0.191138,0.592679,0.703935,0.280144,0.801298,0.0013535,0.472954,0.271082,0.705838,0.817246,0.756614,0.477521,0.0124203,0.61482,0.982309,0.893455,0.622697,0.172405,0.644985,0.514351,0.826256,0.906518,0.39747,0.326899,0.561993,0.953919,0.90986,0.854824,0.94423,0.205559,0.0762342,0.145807,0.302354,0.450786,0.869757,0.763033,0.539713,0.629476,0.925265,0.0596506,0.774906,0.908587,0.823635,0.483551,0.885469,0.580037,0.0851004,0.765722,0.529138,0.444921,0.085226,0.104277,0.128908,0.460853,0.630051,0.438089,0.359026,0.591953,0.640116,0.634948,0.201721,0.652603,0.188779,0.194526,0.678039,0.388998,0.253167,0.851323,0.551317,0.505381,0.350569,0.915381,0.788782,0.356099,0.31738,0.0433667,0.622622,0.450483,0.0423636,0.577118,0.62836,0.124776,0.632498,0.686229,0.883021,0.709053,0.100578,0.324378,0.0405731,0.410664,0.692402,0.619526,0.690163,0.689458,0.801702,0.422054,0.919382,0.310462,0.454352,0.787466,0.592966,0.986194,0.166269,0.226989,0.806552,0.584214,0.54725,0.695064,0.167664,0.252532,0.368461,0.376139,0.975489,0.572846,0.347492,0.903234,0.124845,0.152146,0.685264,0.741089,0.67981,0.190159,0.869835,0.0912343,0.116166,0.790869,0.491642,0.631343,0.562531,0.904497,0.593202,0.645795,0.733476,0.13868,0.871268,0.00312895,0.707363,0.524625,0.80509,0.47534,0.787937,0.0155455,0.680843,0.720603,0.292051,0.868846,0.979196,0.699533,0.878595,0.726602,0.252712,0.490443,0.722175,0.104076,0.316601,0.806277,0.185322,0.299003,0.234811,0.708396,0.133382,0.511799,0.787759,0.774087,0.227154,0.625224,0.545615,0.975158,0.47982,0.590863,0.70694,0.858135,0.0467018,0.774712,0.645618,0.723136,0.371482,0.42351,0.119675,0.311931,0.216358,0.628355,0.498159,0.456195,0.0905191,0.845123,0.779398,0.0158269,0.944845,0.228873,0.899792,0.154703,0.701279,0.537026,0.30789,0.533533,0.998357,0.327748,0.915895,0.493039,0.752604,0.0305593,0.756792,0.901752,0.811126,0.809831,0.520764,0.0650515,0.374292,0.86102,0.848129,0.544577,0.616465,0.0612438,0.379624,0.128476,0.103468,0.73057,0.825562,0.604919,0.676838,0.261205,0.280472,0.751878,0.386152,0.0349348,0.932187,0.69071,0.127167,0.52396,0.00846922,0.392791,0.342291,0.392597,0.0106926,0.248097,0.0876545,0.884446,0.0771996,0.909365,0.146707,0.46874,0.288779,0.108941,0.508089,0.868712,0.965642,0.42007,0.341014,0.214133,0.681084,0.7197,0.733072,0.683212,0.1497,0.104063,0.610404,0.590652,0.761016,0.753044,0.794813,0.480761,0.56632,0.612063,0.409779,0.137947,0.944401,0.855945,0.793677,0.356987,0.213326,0.186256,0.369908,0.0262382,0.719216,0.965711,0.126637,0.966685,0.873776,0.259986,0.549891,0.347649,0.558363,0.656609,0.655693,0.788328,0.424137,0.753646,0.880686,0.51391,0.053595,0.081172,0.0538772,0.0334514,0.591944,0.54284,0.510494,0.857746,0.574037,0.308557,0.0288956,0.973258,0.354375,0.598332,0.535212,0.548436,0.201335,0.345852,0.761712,0.626583,0.0176519,0.942384,0.353755,0.559007,0.825231,0.89105,0.455508,0.997628,0.898346,0.803222,0.61442,0.668116,0.209525,0.604344,0.0281197,0.0237147,0.860047,0.676666,0.153673,0.444451,0.577837,0.7241,0.918187,0.88664,0.306939,0.210399,0.70668,0.947829,0.719006,0.316841,0.652423,0.570004,0.567374,0.981234,0.400844,0.431489,0.0598206,0.317548,0.830367,0.196027,0.37083,0.272443,0.854246,0.31975,0.212368,0.142828,0.441534,0.721998,0.650623,0.683124,0.460069,0.899011,0.299405,0.654386,0.81287,0.452724,0.242632,0.268546,0.784153,0.840845,0.69709,0.879089,0.295318,0.104749,0.217768,0.1978,0.271017,0.396698,0.932101,0.370403,0.724856,0.868976,0.501188,0.27406,0.0666282,0.0453354,0.136923,0.0882132,0.795478,0.824755,0.0190665,0.877392,0.584068,0.0557731,0.0953388,0.943686,0.449777,0.142527,0.744522,0.799376,0.136356,0.377535,0.523716,0.376751,0.151505,0.00812,0.522753,0.750848,0.938131,0.219913,0.693788,0.417115,0.393441,0.150182,0.031964,0.189142,0.535782,0.713056,0.819592,0.695209,0.557369,0.0676963,0.0924121,0.715825,0.267589,0.234723,0.0672683,0.507968,0.609887,0.400406,0.634594,0.00437373,0.679333,0.14031,0.86898,0.684994,0.358163,0.697472,0.182671,0.596053,0.0865436,0.287197,0.589616,0.889236,0.302733,0.453183,0.629459,0.96039,0.153508,0.896412,0.564153,0.559529,0.711397,0.664909,0.833997,0.714389,0.111305,0.862131,0.477304,0.673193,0.103157,0.210294,0.771725,0.34198,0.383398,0.777376,0.632006,0.257435,0.257095,0.690735,0.644855,0.568827,0.164082,0.880707,0.900973,0.554242,0.479814,0.306113,0.79236,0.90997,0.119468,|0.125905,0.797647,0.699802,0.29015,0.624552,0.762523,0.953086,0.646208,0.756056,0.813001,0.561769,0.197847,0.629821,0.117333,0.992985,0.567839,0.313267,0.604613,0.674827,0.204342,0.784734,0.920857,0.595393,0.411077,0.33968,0.820454,0.142559,0.664267,0.73121,0.474107,0.237532,0.24461,0.120129,0.478593,0.738089,0.0810581,0.629875,0.298524,0.604316,0.57761,0.241762,0.588718,0.871084,0.941514,0.31372,0.389993,0.180622,0.565458,0.0783029,0.889751,0.990696,0.927525,0.558916,0.186076,0.283809,0.21595,0.011685,0.693371,0.328494,0.545114,0.687952,0.804961,0.653724,0.74348,0.379886,0.323917,0.224719,0.922603,0.151788,0.83831,0.117806,0.454613,0.42924,0.761762,0.329495,0.155091,0.456239,0.219071,0.389496,0.325543,0.316452,0.573119,0.363341,0.336732,0.901192,0.196243,0.272535,0.0507259,0.803356,0.516266,0.737208,0.786605,0.997699,0.847963,0.39544,0.76737,0.0921707,0.426097,0.137227,0.373144,0.92703,0.684238,0.851911,0.367259,0.0544378,0.159901,0.566771,0.079165,0.43544,0.600039,0.634977,0.283,0.717105,0.293161,0.194737,0.167185,0.564921,0.302928,0.749728,0.61649,0.356199,0.380101,0.0324548,0.246468,0.432068,0.823563,0.873359,0.20741,0.0145974,0.263638,0.971693,0.760447,0.00178754,0.422872,0.320413,0.620723,0.362646,0.445014,0.610308,0.426226,0.0760747,0.0565155,0.615184,0.914553,0.699207,0.668284,0.495497,0.190343,0.0615474,0.0749057,0.949127,0.781887,0.903178,0.450587,0.879647,0.937512,0.967156,0.836325,0.349159,0.669161,0.921859,0.496557,0.17005,0.663239,0.957248,0.371434,0.0339244,0.290984,0.146072,0.478795,0.230204,0.166515,0.443326,0.709888,0.985923,0.77444,0.394988,0.989985,0.520754,0.680398,0.508046,0.0380521,0.99138,0.27606,0.913286,0.627806,0.61206,0.52796,0.360954,0.760341,0.774028,0.713601,0.188057,0.528866,0.139834,0.368886,0.837636,0.75166,0.441038,0.178758,0.207551,0.779401,0.580406,0.663826,0.437822,0.626246,0.286728,0.303415,0.83978,0.404446,0.416826,0.961963,0.797848,0.154135,0.413457,0.12982,0.211123,0.642623,0.149288,0.569935,0.165828,0.190328,0.472046,0.307395,0.32837,0.367056,0.348604,0.144196,0.86586,0.710212,0.249025,0.203312,0.261997,0.760653,0.592127,0.822729,0.934859,0.713278,0.448142,0.438388,0.370565,0.279202,0.817708,0.434824,0.322464,0.535372,0.64077,0.673607,0.659561,0.355942,0.0616927,0.689971,0.300379,0.728199,0.856641,0.0911515,0.859833,0.954078,0.0692879,0.229061,0.676602,0.0845708,0.689075,0.65375,0.763006,0.40077,0.451472,0.972784,0.473752,0.141752,0.077927,0.224493,0.542155,0.901876,0.48401,0.44891,0.953127,0.214391,0.254833,0.712404,0.921341,0.193511,0.244864,0.0118625,0.599763,0.530156,0.0501241,0.283104,0.355155,0.657899,0.491217,0.84369,0.872714,0.0495982,0.229271,0.513068,0.371338,0.384365,0.103357,0.949312,0.128584,0.0990121,0.545973,0.953695,0.152093,0.579659,0.0080592,0.836118,0.189488,0.0331281,0.294113,0.00825799,0.34458,0.10576,0.779212,0.780384,0.764775,0.634926,0.222991,0.373459,0.968322,0.379783,0.349295,0.0668606,0.48524,0.6285,0.804782,0.571384,0.936639,0.979381,0.532228,0.126086,0.182264,0.840545,0.345881,0.283821,0.128823,0.666718,0.52819,0.0340587,0.799796,0.0452886,0.759392,0.533937,0.532877,0.093245,0.574253,0.130912,0.576084,0.898251,0.787137,0.733844,0.761066,0.599443,0.0539127,0.490268,0.954771,0.411264,0.29603,0.0893086,0.111373,0.357656,0.0711496,0.829744,0.820294,0.848899,0.635631,0.581942,0.378494,0.517059,0.692033,0.781618,0.790548,0.774434,0.184583,0.710326,0.962775,0.522637,0.228297,0.304028,0.755428,0.74675,0.217328,0.928729,0.618339,0.0483986,0.471578,0.18968,0.910828,0.716368,0.601142,0.869828,0.657711,0.413194,0.683844,0.0407084,0.581381,0.438481,0.677769,0.737652,0.0815037,0.362445,0.755795,0.755722,0.662558,0.594327,0.80527,0.205094,0.246113,0.0345823,0.467267,0.36058,0.852467,0.0204316,0.113256,0.189304,0.88831,0.873119,0.252206,0.10777,0.0349775,0.231753,0.419791,0.238511,0.0283418,0.370824,0.87696,0.80033,0.32961,0.456129,0.616721,0.537702,0.894574,0.963363,0.000133336,0.472804,0.757419,0.77461,0.0833528,0.615326,0.263893,0.344011,0.745727,0.970505,0.55912,0.599501,0.270918,0.299189,0.997966,0.758655,0.0761425,0.781915,0.0625939,0.341877,0.898989,0.591678,0.211741,0.304123,0.489116,0.814968,0.997445,0.807164,0.630745,0.707691,0.316411,0.974503,0.480577,0.334554,0.89847,0.534852,0.992412,0.174941,0.883359,0.112675,0.550701,0.568416,0.150289,0.129175,0.0880468,0.286618,0.35273,0.437656,0.693052,0.0161714,0.364631,0.183782,0.238529,0.735456,0.651891,0.187846,0.329464,0.347596,0.781697,0.282752,0.366171,0.687855,0.459969,0.810449,0.936495,0.446212,0.836078,0.153271,0.835492,0.602175,0.18276,0.663222,0.262709,0.954168,0.47236,0.187609,0.552262,0.214088,0.548267,0.117097,0.602975,0.519729,0.616967,0.234183,0.823627,0.392363,0.215762,0.164805,0.164327,0.86061,0.937854,0.220823,0.989628,0.803581,0.820801,0.570422,0.443187,0.795794,0.217513,0.0931928,0.452872,0.552438,0.319144,0.562637,0.939938,0.290925,0.907116,0.351717,0.944376,0.859845,0.493062,0.0478016,0.487495,0.868835,0.149777,0.455724,0.591575,0.0604861,0.500041,0.510758,0.753519,0.459343,0.216341,0.972422,0.944289,0.384043,0.0214893,0.96204,0.0603735,0.580206,0.628061,0.619715,0.587096,0.282967,0.0430224,0.467565,0.398379,0.775815,0.0376014,0.663068,0.392136,0.142625,0.251226,0.156107,0.835938,0.907106,0.628141,0.188191,0.486698,0.654719,0.0592808,0.761147,0.971921,0.240453,0.158768,0.249274,0.188497,0.331445,0.681137,0.143386,0.0952777,0.13206,0.871404,0.253786,0.62958,0.333989,0.392218,0.799885,0.699758,0.503103,0.732924,0.159319,0.380191,0.247972,0.878265,0.450627,0.493583,0.420313,0.84593,0.467533,0.783584,0.98469,0.0494533,0.201622,0.52405,0.512448,0.438628,0.473428,0.424769,0.591948,0.330269,0.791181,0.144059,0.529582,0.480756,0.255149,0.928583,0.677315,0.60086,0.806966,0.288328,0.742175,0.514495,0.768365,0.908417,0.487564,0.867465,0.874458,0.490811,0.25977,0.0626884,0.377542,0.00637603,0.330144,0.259812,0.885214,0.809058,0.525958,0.781248,0.065348,0.289467,0.751725,0.393479,0.730176,0.00354713,0.25221,0.631009,0.501881,0.277664,0.359287,0.00848466,0.451493,0.26436,0.460696,0.481575,0.721634,0.0208639,0.18999,0.351192,0.856962,0.366905,0.572353,0.278671,0.790902,0.170231,0.282149,0.478846,0.011975,0.302087,0.551299,0.263658,0.726712,0.230115,0.626045,0.309451,0.0396289,0.669039,0.111485,0.550199,0.704429,0.397209,0.472119,0.428245,0.484906,0.364171,0.504526,0.413284,0.722826,0.156494,0.188652,0.174189,0.730419,0.643379,0.4535,0.949847,0.248342,0.465981,0.77464,0.52944,0.123098,0.0726861,0.486786,0.333259,0.260336,0.519412,0.933597,0.763494,0.842447,0.769487,0.0118337,0.810911,0.579957,0.202784,0.582537,0.3809,0.117867,0.472703,0.401927,0.554392,0.114174,0.0764691,0.322772,0.537756,0.60854,0.749733,0.867347,0.855208,0.51617,0.406927,0.954053,0.142253,0.484275,0.00361276,0.770613,0.370947,0.751603,0.360151,0.832463,0.161232,0.477676,0.833018,0.830197,0.813582,0.284043,0.405521,0.250324,0.120793,0.103374,0.741371,0.359767,0.917623,0.554737,0.537966,0.819967,0.102867,0.243294,0.235609,0.751506,0.882049,0.495864,0.554122,0.218755,0.804296,0.133903,0.951028,0.805232,0.363054,0.331454,0.197378,0.634792,0.767094,0.750703,0.39296,0.720746,0.309635,0.957166,0.90511,0.642144,0.553176,0.655089,0.58358,0.860332,0.36302,0.00278902,0.725445,0.726341,0.489996,0.245804,0.806644,0.0631511,0.443832,0.0283675,0.11464,0.725155,0.032845,0.469166,0.340254,0.721806,0.700248,0.492719,0.861441,0.955826,0.087341,0.84409,0.733035,0.609013,0.0363544,0.150353,0.0721453,0.0252396,0.10755,0.396717,0.331286,0.471692,0.0873604,0.423593,0.172742,0.373154,0.126064,0.623587,0.480482,0.486084,0.455496,0.724268,0.984279,0.464109,0.26389,0.685706,0.439473,0.71582,0.647629,0.665613,0.268191,0.0158526,0.0435798,0.487065,0.412097,0.249049,0.632737,0.695288,0.535068,0.283971,0.414982,0.904709,0.0289867,0.489282,0.0100952,0.852822,0.142262,0.713265,0.549447,0.14431,0.630366,0.397006,0.638619,0.264503,0.585449,0.0816111,0.742725,0.626528,0.844955,0.654046,0.955056,0.95461,0.378702,0.533987,0.7362,0.58931,0.967821,0.4414,0.168687,0.146413,0.392046,0.853862,0.621129,0.353717,0.782543,0.681262,0.87957,0.828181,0.365931,0.0537657,0.954145,0.026861,0.188209,0.211224,0.0347009,0.488033,0.171849,0.270394,0.206378,0.230423,0.860048,0.184759,0.739331,0.102967,0.476826,0.0675985,0.534076,0.382021,0.895462,0.215683,0.901394,0.657444,0.639527,0.632047,0.146056,0.775034,0.218973,0.299321,0.312441,0.702824,0.871261,0.107742,0.00063926,0.976501,0.560372,0.0855148,0.660932,0.39069,0.868572,0.917053,0.040644,0.420994,0.465115,0.31971,0.757948,0.287129,0.871892,0.538083,0.136836,0.0196116,0.379793,0.734727,0.0145528,0.919974,0.365567,0.589182,0.848637,0.952293,0.0601069,0.355687,0.876862,0.153852,0.0445535,0.624381,0.862264,0.19098,0.509961,0.927864,0.201496,0.23817,0.0638845,0.0533732,0.947399,0.0944867,0.797595,0.609036,0.397258,0.179934,0.787851,0.79302,0.446878,0.59462,0.925417,0.583856,0.779584,0.238727,0.957329,0.236447,0.119308,0.012857,0.396267,0.0869938,0.0421813,0.733473,0.612172,0.265032,0.219396,0.0643301,0.651222,0.491978,0.932432,0.467043,0.553316,0.708561,|0.826712,0.878257,0.715485,0.787663,0.859196,0.0610616,0.324374,0.16592,0.556221,0.456682,0.449899,0.0655284,0.756184,0.442275,0.383853,0.00558561,0.230518,0.309644,0.921441,0.42199,0.87764,0.703068,0.930472,0.980516,0.464372,0.950399,0.570031,0.345215,0.872314,0.749431,0.676358,0.264834,0.54,0.59313,0.352933,0.163042,0.762044,0.537784,0.343197,0.849046,0.285351,0.796749,0.723252,0.500409,0.0728789,0.935795,0.478864,0.840603,0.0884743,0.457292,0.0468976,0.971056,0.308901,0.055652,0.227368,0.983723,0.406829,0.97341,0.910706,0.853697,0.797201,0.823897,0.851885,0.625608,0.0385845,0.164014,0.13993,0.580917,0.201323,0.489057,0.33862,0.482523,0.611204,0.814696,0.218881,0.311343,0.496084,0.408942,0.259133,0.14948,0.279396,0.27474,0.541806,0.620402,0.318462,0.649808,0.639543,0.0206164,0.586993,0.994062,0.206266,0.0550432,0.321054,0.192166,0.0702962,0.990673,0.760661,0.228403,0.604327,0.656774,0.921073,0.371932,0.0498245,0.075399,0.948217,0.498181,0.540995,0.523293,0.614127,0.893889,0.108063,0.0742052,0.515973,0.107031,0.284046,0.932497,0.161297,0.310733,0.318242,0.695861,0.777058,0.323658,0.899459,0.667401,0.825816,0.609082,0.191788,0.87059,0.293703,0.200283,0.145234,0.775272,0.681001,0.255123,0.759141,0.902198,0.899222,0.969211,0.691987,0.18525,0.355034,0.482614,0.980762,0.444581,0.420781,0.225015,0.783955,0.107507,0.738067,0.52772,0.235154,0.740961,0.694043,0.57058,0.69342,0.876474,0.468223,0.363406,0.096912,0.640084,0.728056,0.475532,0.648545,0.139986,0.42622,0.606789,0.440235,0.0909091,0.896406,0.90238,0.09939,0.154494,0.357767,0.256804,0.875192,0.781318,0.611906,0.608895,0.270137,0.597104,0.210651,0.250265,0.429031,0.714046,0.0678785,0.533826,0.266147,0.738448,0.45951,0.865356,0.315161,0.317505,0.648907,0.0588269,0.147662,0.293408,0.947005,0.660011,0.516917,0.733017,0.381816,0.244021,0.897092,0.684272,0.210017,0.166567,0.570041,0.720612,0.0685265,0.571276,0.955578,0.68415,0.673999,0.645525,0.108554,0.908196,0.716225,0.264012,0.384091,0.733067,0.281133,0.712501,0.650642,0.725923,0.171463,0.114495,0.78249,0.270264,0.304913,0.994871,0.793412,0.776258,0.302304,0.719186,0.528915,0.177372,0.222524,0.880337,0.847916,0.0388801,0.493537,0.561652,0.569267,0.984632,0.762713,0.34411,0.564605,0.510886,0.353813,0.648758,0.0563999,0.446631,0.117759,0.680509,0.583762,0.829051,0.407594,0.63484,0.616419,0.559764,0.507578,0.441283,0.0260266,0.977273,0.874728,0.490452,0.48098,0.408458,0.541456,0.718073,0.978237,0.965852,0.608686,0.824122,0.793805,0.188159,0.319644,0.0634869,0.472756,0.166336,0.778992,0.174177,0.579286,0.570734,0.107096,0.479068,0.787031,0.210808,0.491057,0.968722,0.598032,0.45616,0.783744,0.123833,0.486983,0.610192,0.790063,0.175926,0.572968,0.381545,0.960943,0.355304,0.905721,0.716748,0.0664972,0.279365,0.383891,0.452298,0.414937,0.29075,0.0752883,0.129999,0.196987,0.922009,0.890766,0.51402,0.45235,0.922067,0.440489,0.65191,0.229341,0.859779,0.431137,0.751885,0.272115,0.167411,0.071853,0.608205,0.323852,0.952305,0.935838,0.494493,0.276708,0.988381,0.211354,0.769644,0.275884,0.220156,0.458007,0.64572,0.874725,0.83986,0.0830044,0.853035,0.626862,0.361414,0.216656,0.348298,0.228117,0.678371,0.571234,0.932879,0.0170397,0.585617,0.692587,0.604306,0.0178065,0.310823,0.816938,0.571321,0.739431,0.19979,0.90824,0.772585,0.034331,0.0229674,0.0534433,0.876159,0.814917,0.463982,0.987078,0.526562,0.0151863,0.0429397,0.251939,0.809676,0.747337,0.284459,0.784706,0.38933,0.920518,0.352503,0.166993,0.912643,0.389437,0.801366,0.138878,0.573968,0.371084,0.412797,0.76003,0.106377,0.775831,0.539919,0.775334,0.38602,0.623991,0.240624,0.0365406,0.938595,0.589708,0.781385,0.529801,0.350223,0.0700445,0.977774,0.139546,0.530559,0.270776,0.61711,0.672262,0.68931,0.960043,0.559743,0.222224,0.490234,0.87417,0.653916,0.324893,0.43245,0.650078,0.643631,0.198143,0.956387,0.159459,0.949715,0.979374,0.707253,0.285584,0.290984,0.0858129,0.467464,0.319918,0.23222,0.356369,0.469222,0.415116,0.297056,0.306405,0.0833329,0.623596,0.871841,0.282149,0.816545,0.511547,0.216371,0.857931,0.772064,0.955999,0.818383,0.853544,0.70672,0.209684,0.609795,0.416106,0.542101,0.449781,0.297761,0.21082,0.675276,0.858284,0.0252295,0.80856,0.965971,0.956606,0.0966914,0.47962,0.88573,0.326126,0.37242,0.0616036,0.25167,0.143773,0.457752,0.233045,0.133944,0.0644965,0.595483,0.703907,0.280283,0.352413,0.798351,0.00890964,0.0833473,0.0292677,0.19465,0.994509,0.324218,0.87887,0.68096,0.536084,0.181271,0.969221,0.818757,0.569906,0.63167,0.342896,0.435722,0.270778,0.349413,0.603301,0.241763,0.476533,0.696311,0.582421,0.422073,0.546555,0.366633,0.855242,0.24679,0.329105,0.328239,0.893382,0.751695,0.959927,0.00112867,0.739805,0.428959,0.632322,0.260853,0.00529265,0.328431,0.815518,0.151215,0.300263,0.91973,0.598614,0.831212,0.374078,0.917303,0.411614,0.931362,0.264073,0.961012,0.2052,0.420908,0.911269,0.905546,0.168244,0.371342,0.000500321,0.431057,0.541968,0.450511,0.0163298,0.635938,0.873929,0.159829,0.590669,0.205785,0.704836,0.929061,0.357955,0.834022,0.931303,0.806414,0.361473,0.308235,0.559276,0.919134,0.548321,0.691898,0.682258,0.952295,0.588186,0.719674,0.70061,0.0979142,0.701433,0.477202,0.0656868,0.695546,0.440328,0.907261,0.248466,0.784793,0.890921,0.831587,0.169568,0.80154,0.235626,0.836183,0.657259,0.205671,0.195232,0.93741,0.663797,0.504561,0.990841,0.647853,0.834316,0.625377,0.134245,0.552683,0.180072,0.395249,0.00120783,0.467782,0.20642,0.0273041,0.263702,0.993712,0.00172156,0.546094,0.810073,0.12271,0.376934,0.528852,0.710848,0.639549,0.44665,0.350572,0.123194,0.790406,0.295176,0.602449,0.561047,0.726399,0.954478,0.744592,0.368687,0.932938,0.209661,0.660549,0.17262,0.56242,0.571792,0.184394,0.159957,0.836574,0.0074836,0.841982,0.617352,0.420067,0.0613758,0.541541,0.282601,0.716752,0.0805371,0.882143,0.144342,0.144924,0.349135,0.106725,0.814608,0.512455,0.722603,0.233548,0.561971,0.545759,0.336502,0.135328,0.475999,0.07629,0.242905,0.0494579,0.234413,0.307493,0.709019,0.266918,0.623469,0.299853,0.190043,0.581124,0.478069,0.701363,0.939875,0.0330629,0.296047,0.523606,0.554804,0.570175,0.483076,0.484385,0.116869,0.45468,0.58594,0.319303,0.341981,0.279701,0.576514,0.83848,0.195938,0.367835,0.20271,0.483181,0.270009,0.528869,0.730208,0.193278,0.903667,0.971086,0.119938,0.512377,0.395734,0.429019,0.196791,0.559344,0.461359,0.293846,0.72124,0.809931,0.248883,0.926282,0.456556,0.368527,0.398939,0.408958,0.583947,0.30378,0.988872,0.127471,0.567077,0.465478,0.894879,0.317336,0.300369,0.942969,0.286259,0.448304,0.74461,0.757979,0.579721,0.619087,0.572858,0.526251,0.208234,0.25805,0.836385,0.974121,0.950555,0.148032,0.854454,0.503894,0.739527,0.161045,0.00499356,0.858038,0.150671,0.814268,0.530926,0.476795,0.757879,0.131517,0.00971508,0.918155,0.955777,0.355972,0.519149,0.694675,0.25573,0.265246,0.276932,0.926417,0.869744,0.579776,0.889088,0.0580034,0.508229,0.611098,0.728927,0.963874,0.935419,0.941577,0.749253,0.993113,0.586209,0.428799,0.730651,0.209315,0.344264,0.422517,0.133823,0.128757,0.688569,0.68293,0.968995,0.729371,0.21907,0.280609,0.342256,0.25757,0.714555,0.84575,0.932783,0.501828,0.377786,0.30085,0.036447,0.173702,0.6594,0.64499,0.39256,0.0667121,0.521206,0.364631,0.827299,0.556991,0.841019,0.361112,0.813375,0.710586,0.49175,0.926504,0.0850498,0.656964,0.91631,0.386607,0.678248,0.44553,0.315026,0.735013,0.762982,0.021472,0.0155617,0.0755762,0.506494,0.215755,0.257602,0.286181,0.99694,0.932046,0.270713,0.215427,0.526639,0.245079,0.55896,0.20748,0.482241,0.947376,0.275699,0.311815,0.0756826,0.164222,0.393569,0.210473,0.355531,0.466295,0.0640192,0.934659,0.951516,0.995302,0.312468,0.929382,0.521065,0.0294576,5.76377e-05,0.464698,0.0305108,0.754178,0.931665,0.142211,0.356701,0.316353,0.930519,0.14507,0.924181,0.626895,0.670761,0.95647,0.540036,0.602235,0.925469,0.415818,0.0763235,0.276998,0.939918,0.93673,0.0811237,0.6103,0.563288,0.874901,0.107319,0.699596,0.373757,0.16588,0.0973302,0.863083,0.920803,0.216424,0.992951,0.784108,0.0997643,0.268599,0.945473,0.373605,0.767382,0.936042,0.985612,0.0158468,0.218528,0.929957,0.886145,0.947938,0.636286,0.673484,0.559949,0.141675,0.792596,0.443979,0.669719,0.961374,0.293483,0.679032,0.825721,0.248822,0.959857,0.110931,0.432153,0.868574,0.280244,0.558765,0.441957,0.0940367,0.561544,0.375611,0.19467,0.218935,0.595985,0.98776,0.662378,0.00825554,0.631191,0.186335,0.9078,0.811009,0.187765,0.701667,0.540906,0.407208,0.949289,0.914145,0.577739,0.108079,0.368291,0.443449,0.484906,0.641175,0.650511,0.626633,0.191677,0.971521,0.717268,0.398677,0.794278,0.174148,0.909216,0.0808969,0.919989,0.597825,0.36272,0.596084,0.954997,0.746482,0.616518,0.822475,0.626029,0.791955,0.0773456,0.851297,0.243928,0.0530863,0.815931,0.711177,0.39644,0.270906,0.11835,0.208314,0.50731,0.934139,0.430015,0.959378,0.623769,0.818198,0.952496,0.27502,0.25787,0.0121501,0.26253,0.787695,0.984197,0.699307,0.00167048,0.879317,0.493797,0.882452,0.107488,0.00630063,0.97859,0.0112134,0.14075,0.21451,0.157613,0.404992,0.160486,0.28556,0.846738,0.886956,0.25904,0.839898,|0.597478,0.79279,0.705627,0.822884,0.853518,0.156144,0.841634,0.632274,0.242116,0.171243,0.974896,0.376661,0.94521,0.341631,0.92066,0.120501,0.0426352,0.743971,0.143611,0.226451,0.075766,0.358452,0.352141,0.955995,0.971725,0.561291,0.292592,0.170308,0.664995,0.178801,0.56758,0.929863,0.99495,0.876728,0.146389,0.590831,0.200493,0.709451,0.257741,0.139149,0.925588,0.112404,0.89975,0.0539759,0.564766,0.101481,0.711868,0.543257,0.835695,0.0566123,0.95613,0.44763,0.763871,0.805369,0.983984,0.626551,0.451395,0.710484,0.00980723,0.487869,0.387424,0.627084,0.693887,0.377457,0.750797,0.0898694,0.812215,0.63779,0.511438,0.617164,0.914782,0.744418,0.602053,0.856273,0.223912,0.701188,0.285108,0.118436,0.173427,0.248225,0.366175,0.102441,0.903181,0.60901,0.873687,0.872669,0.129912,0.119378,0.455286,0.331816,0.11947,0.711806,0.774222,0.937318,0.632051,0.0642862,0.0461911,0.446939,0.136215,0.961442,0.487594,0.301423,0.524732,0.50544,0.00906718,0.811294,0.215749,0.270964,0.509549,0.942424,0.116259,0.746673,0.216708,0.15921,0.830177,0.272447,0.0303177,0.791282,0.633429,0.816421,0.482699,0.199986,0.0217713,0.501345,0.154922,0.597053,0.964441,0.688876,0.526996,0.813668,0.868466,0.392124,0.478059,0.751213,0.4062,0.67396,0.684556,0.246834,0.452138,0.653267,0.94048,0.803796,0.637034,0.229309,0.275431,0.157248,0.0697965,0.782461,0.693297,0.325235,0.908332,0.810428,0.474849,0.627289,0.673993,0.550466,0.301026,0.94416,0.628153,0.260867,0.71259,0.0956622,0.936304,0.965084,0.226111,0.255508,0.546384,0.686149,0.992634,0.678275,0.963753,0.345392,0.119349,0.345028,0.242593,0.473656,0.175161,0.172528,0.617241,0.128127,0.928922,0.00433677,0.459511,0.0180718,0.681657,0.237002,0.571235,0.477951,0.235535,0.0611993,0.663028,0.337462,0.637151,0.200916,0.319359,0.0873279,0.492333,0.659657,0.357146,0.534245,0.734373,0.594318,0.76912,0.770695,0.67165,0.722046,0.84461,0.51159,0.800767,0.648823,0.447163,0.815526,0.860524,0.923305,0.521698,0.422451,0.726692,0.29024,0.710108,0.659083,0.0025984,0.879538,0.463409,0.49188,0.186889,0.531611,0.920219,0.929714,0.733869,0.102747,0.452382,0.95586,0.211458,0.879803,0.419659,0.406999,0.109943,0.957845,0.322822,0.0456039,0.108473,0.77609,0.655835,0.682661,0.522822,0.672823,0.325336,0.798355,0.925978,0.522906,0.601442,0.266175,0.651446,0.0289524,0.667069,0.363066,0.819659,0.267228,0.375261,0.892511,0.159754,0.239539,0.353923,0.867277,0.230735,0.967762,0.996294,0.756173,0.0451028,0.864217,0.274631,0.169502,0.783501,0.297779,0.807453,0.907005,0.893995,0.476064,0.363946,0.809505,0.461986,0.634148,0.808257,0.629204,0.883124,0.809577,0.848522,0.493225,0.498013,0.848952,0.135165,0.178388,0.525371,0.161267,0.738364,0.909482,0.252962,0.08284,0.163473,0.524008,0.580867,0.00128418,0.846609,0.37018,0.906914,0.89363,0.30245,0.306301,0.668427,0.282539,0.565257,0.882431,0.52503,0.99836,0.440479,0.912834,0.316779,0.145097,0.0207544,0.257613,0.542354,0.151895,0.846471,0.482759,0.600653,0.399191,0.28928,0.580539,0.091114,0.295713,0.891502,0.111815,0.945135,0.713732,0.801231,0.377266,0.330639,0.389902,0.511542,0.515858,0.424673,0.606308,0.13353,0.957999,0.736479,0.799391,0.619837,0.90755,0.659278,0.688808,0.444227,0.388472,0.387807,0.152752,0.0117046,0.876318,0.953421,0.124848,0.735448,0.75178,0.29423,0.273545,0.0469403,0.453534,0.235397,0.158307,0.416674,0.500756,0.157463,0.478781,0.264691,0.0277144,0.751844,0.837964,0.264182,0.50246,0.373636,0.78577,0.352817,0.129447,0.342411,0.512192,0.110831,0.41554,0.407657,0.798964,0.0960569,0.0975801,0.832255,0.733387,0.322735,0.0306875,0.925361,0.261696,0.720073,0.878078,0.672908,0.371662,0.188014,0.670502,0.175395,0.743019,0.610093,0.889329,0.888629,0.172199,0.947937,0.144075,0.327361,0.94326,0.670992,0.0146958,0.902737,0.561227,0.400392,0.459331,0.657814,0.501069,0.512891,0.993383,0.441191,0.655152,0.626417,0.18932,0.776028,0.661592,0.427992,0.993815,0.999184,0.210535,0.837872,0.803239,0.120865,0.329632,0.11702,0.270347,0.86537,0.0640325,0.0544037,0.933092,0.648866,0.42288,0.40738,0.541043,0.722989,0.723287,0.652715,0.121536,0.284648,0.256243,0.303806,0.896352,0.636426,0.303526,0.803534,0.0753446,0.760563,0.898211,0.149678,0.212841,0.388143,0.660413,0.200632,0.967587,0.0439565,0.122889,0.270334,0.567863,0.32999,0.773705,0.391024,0.880691,0.08936,0.332165,0.840966,0.404132,0.200068,0.746749,0.789104,0.615775,0.525636,0.754439,0.127203,0.102065,0.192309,0.0168317,0.409084,0.566989,0.443126,0.445415,0.774601,0.000921309,0.747531,0.383146,0.0271813,0.40095,0.814138,0.948648,0.469419,0.689386,0.951284,0.627128,0.0137124,0.807932,0.427637,0.683686,0.16151,0.000177443,0.673096,0.646202,0.125332,0.863298,0.246915,0.869793,0.690082,0.979089,0.332499,0.439659,0.136106,0.905433,0.52582,0.311239,0.303228,0.316965,0.258761,0.0539929,0.162344,0.0743957,0.754211,0.597304,0.0249852,0.248756,0.751656,0.896583,0.491251,0.676256,0.201647,0.372381,0.258484,0.81015,0.451035,0.31841,0.0367181,0.54084,0.959851,0.727372,0.529902,0.566848,0.751462,0.0508304,0.682778,0.433109,0.235329,0.802512,0.563234,0.115722,0.734394,0.831587,0.3596,0.441168,0.0956986,0.613364,0.633104,0.835847,0.236163,0.293611,0.181287,0.183693,0.753249,0.558984,0.456176,0.886754,0.819583,0.471034,0.223347,0.0609012,0.812069,0.400296,0.344011,0.356031,0.791578,0.943747,0.602659,0.780159,0.23454,0.687499,0.792965,0.2903,0.692678,0.87544,0.498281,0.976953,0.615324,0.225011,0.532051,0.361745,0.839356,0.232551,0.629439,0.433273,0.605088,0.575786,0.827042,0.976634,0.202287,0.116813,0.0490212,0.722651,0.972516,0.386703,0.596081,0.737475,0.138505,0.761633,0.805936,0.0850959,0.389159,0.14378,0.216765,0.441333,0.0640368,0.447821,0.241329,0.0059492,0.0997773,0.370297,0.214009,0.407636,0.131974,0.726509,0.376373,0.447914,0.841583,0.614304,0.579592,0.915985,0.656998,0.923887,0.080501,0.737584,0.911796,0.010242,0.962567,0.21134,0.166338,0.916344,0.938281,0.938501,0.32305,0.00939918,0.340897,0.0508311,0.386664,0.277317,0.714577,0.644136,0.224679,0.328397,0.890851,0.0782123,0.987476,0.590811,0.952221,0.334822,0.413458,0.122561,0.825178,0.163658,0.167364,0.638648,0.781888,0.225376,0.87472,0.472159,0.0245208,0.683152,0.366164,0.452105,0.357096,0.528282,0.575542,0.660257,0.177079,0.79558,0.0213161,0.894188,0.0957059,0.256508,0.0759223,0.363042,0.456899,0.543257,0.158637,0.82593,0.372833,0.411982,0.758382,0.091483,0.43334,0.572433,0.612972,0.496714,0.658642,0.880841,0.354402,0.500691,0.357524,0.201008,0.41538,0.982887,0.0999625,0.745857,0.73944,0.179377,0.100884,0.221021,0.76387,0.420422,0.206554,0.612876,0.545328,0.858213,0.229605,0.737748,0.557687,0.30619,0.837766,0.945646,0.12844,0.0702248,0.0435013,0.730948,0.815739,0.22152,0.501093,0.458113,0.332932,0.917906,0.811969,0.250637,0.3977,0.671,0.801984,0.673744,0.190258,0.768559,0.50769,0.0760161,0.264736,0.267457,0.673333,0.282611,0.288453,0.912645,0.0185065,0.2312,0.79713,0.496257,0.458384,0.182741,0.318478,0.59533,0.161616,0.0706101,0.78174,0.840935,0.81906,0.715802,0.913108,0.94588,0.203063,0.146287,0.123813,0.84833,0.455557,0.72145,0.230365,0.788873,0.733042,0.810183,0.0740795,0.284563,0.458435,0.538192,0.885888,0.399737,0.946971,0.912112,0.626449,0.938123,0.260453,0.934169,0.594875,0.283661,0.7548,0.748388,0.00267363,0.7487,0.939802,0.483947,0.914617,0.599683,0.628393,0.501335,0.650459,0.656761,0.57672,0.434133,0.325775,0.245128,0.214265,0.906597,0.902812,0.264908,0.875348,0.927644,0.197597,0.959057,0.627505,0.685398,0.94473,0.868589,0.146251,0.90465,0.922285,0.156614,0.871675,0.941192,0.523114,0.468391,0.244916,0.589647,0.770014,0.774804,0.626074,0.00787389,0.563244,0.815412,0.966797,0.702876,0.946064,0.351767,0.204979,0.774636,0.797642,0.253864,0.503925,0.0721846,0.582655,0.567531,0.0104418,0.441515,0.344512,0.875474,0.646109,0.410793,0.117205,0.845085,0.195103,0.721858,0.443604,0.928701,0.77406,0.0527182,0.502063,0.929835,0.7391,0.800996,0.934179,0.449335,0.423206,0.691014,0.0725315,0.5867,0.48958,0.420102,0.85367,0.0768697,0.430927,0.130281,0.365209,0.504966,0.566043,0.871548,0.812527,0.42192,0.0387467,0.18833,0.813181,0.401969,0.889272,0.986419,0.6525,0.464335,0.546824,0.941082,0.893896,0.137852,0.779552,0.354043,0.698778,0.0448648,0.578574,0.224392,0.0780457,0.704674,0.250352,0.482961,0.221111,0.934873,0.111858,0.136481,0.692834,0.715063,0.983811,0.443315,0.183644,0.883223,0.412168,0.934075,0.4,0.111053,0.589509,0.661216,0.987206,0.513639,0.89876,0.49368,0.449161,0.78393,0.651145,0.0541935,0.213342,0.438763,0.993523,0.782719,0.904312,0.313988,0.166418,0.650197,0.702031,0.156395,0.539859,0.133931,0.139227,0.471697,0.706903,0.00630558,0.452088,0.0828685,0.40863,0.978867,0.57255,0.916216,0.987062,0.438676,0.869998,0.103405,0.230938,0.846408,0.850713,0.989668,0.711519,0.457457,0.547941,0.53303,0.826173,0.280746,0.51587,0.92454,0.851534,0.492879,0.416232,0.00658619,0.172088,0.691812,0.141893,0.23663,0.0636308,0.641607,0.883406,0.328275,0.360018,0.306431,0.619618,0.348546,0.688687,0.721558,0.693739,0.665558,0.652922,0.324493,0.1416,0.785115,0.730145,0.815435,0.647981,0.395529,0.525542,0.113943,|0.615059,0.0895841,0.592089,0.446604,0.21717,0.911028,0.490389,0.485566,0.727214,0.402022,0.0670833,0.351474,0.852569,0.622532,0.0611247,0.715212,0.918039,0.881126,0.925321,0.305246,0.45451,0.540266,0.476548,0.955408,0.216981,0.438468,0.630069,0.820851,0.412428,0.0142186,0.38723,0.295286,0.229721,0.423242,0.567615,0.82786,0.397463,0.645878,0.286916,0.567411,0.0578973,0.757517,0.742689,0.0728819,0.889937,0.723889,0.559453,0.318323,0.0388879,0.88672,0.579828,0.967393,0.0677537,0.0777925,0.0379632,0.0469866,0.522927,0.701749,0.492245,0.55956,0.142499,0.927048,0.916283,0.872095,0.485952,0.284618,0.369204,0.62441,0.52627,0.749068,0.969078,0.713038,0.259122,0.715638,0.74053,0.580677,0.684537,0.589956,0.536028,0.917301,0.863086,0.801005,0.765877,0.273647,0.802197,0.011496,0.984165,0.219593,0.824845,0.53295,0.569027,0.0399113,0.0477841,0.967519,0.141051,0.925195,0.583465,0.80987,0.406505,0.42306,0.695258,0.994362,0.954804,0.158151,0.106418,0.193885,0.905711,0.684394,0.0837187,0.671959,0.918782,0.806114,0.238606,0.613797,0.396873,0.881618,0.882181,0.535685,0.788835,0.622917,0.409445,0.707853,0.00737983,0.45081,0.608974,0.725204,0.124863,0.198819,0.521977,0.326265,0.68935,0.376229,0.30638,0.599708,0.710718,0.128431,0.325081,0.930685,0.167365,0.901733,0.828063,0.387708,0.0202929,0.555613,0.849965,0.338526,0.468757,0.464648,0.193967,0.908963,0.63323,0.303138,0.576844,0.623491,0.204862,0.724625,0.813638,0.615676,0.385127,0.24019,0.839724,0.0914159,0.490099,0.105036,0.546943,0.342772,0.871788,0.474446,0.177461,0.983906,0.885843,0.611014,0.628202,0.743422,0.563835,0.224561,0.546513,0.83178,0.521514,0.651945,0.144973,0.654972,0.0511611,0.310316,0.382752,0.165573,0.180005,0.267441,0.968042,0.385315,0.719867,0.602983,0.806236,0.526224,0.972345,0.368549,0.608823,0.814222,0.662426,0.0659124,0.0846247,0.0179722,0.533802,0.363599,0.110238,0.376067,0.982405,0.747781,0.831358,0.245063,0.552114,0.995804,0.687439,0.950685,0.97908,0.653568,0.532378,0.659367,0.0817782,0.461283,0.290391,0.0343138,0.567653,0.774459,0.289685,0.804455,0.248605,0.621412,0.565338,0.830587,0.192373,0.878711,0.117485,0.154528,0.134956,0.308448,0.53148,0.0669995,0.28441,0.97053,0.548719,0.279403,0.122117,0.471353,0.0280837,0.610736,0.516915,0.711636,0.0167297,0.782249,0.231021,0.885478,0.122233,0.175397,0.0662191,0.853032,0.213257,0.943922,0.599929,0.234771,0.448257,0.253937,0.475578,0.48934,0.0743423,0.897644,0.750054,0.938194,0.726387,0.743813,0.809924,0.281391,0.537198,0.865069,0.877683,0.28494,0.506631,0.813288,0.970552,0.324396,0.349462,0.867964,0.298737,0.937985,0.333476,0.0319992,0.404508,0.238795,0.413379,0.422609,0.663562,0.267027,0.602117,0.74957,0.0171512,0.61406,0.451201,0.258396,0.0635048,0.461216,0.792785,0.476429,0.924447,0.220149,0.492747,0.307578,0.406035,0.938777,0.907151,0.963274,0.728207,0.976807,0.360736,0.83467,0.743305,0.258161,0.848756,0.406405,0.0757412,0.261738,0.868026,0.0497708,0.663723,0.231812,0.61316,0.240167,0.992462,0.98023,0.733899,0.832128,0.826732,0.102041,0.621603,0.872863,0.114013,0.61744,0.741616,0.472246,0.981216,0.0145873,0.0835093,0.766806,0.182284,0.950435,0.833306,0.798054,0.27187,0.143294,0.740059,0.84233,0.737185,0.890495,0.938182,0.176406,0.264392,0.35954,0.252428,0.631174,0.890391,0.406354,0.470471,0.285671,0.274841,0.227465,0.0752153,0.905029,0.551656,0.54638,0.485885,0.7313,0.512034,0.17541,0.973619,0.376209,0.776,0.23347,0.70769,0.243153,0.393119,0.440837,0.397924,0.650763,0.480686,0.990471,0.304856,0.597254,0.418207,0.194416,0.751593,0.760963,0.717084,0.987053,0.107871,0.447483,0.114229,0.412457,0.515511,0.55267,0.25403,0.821836,0.798037,0.206908,0.478186,0.0317789,0.111867,0.735706,0.829525,0.856531,0.327893,0.19487,0.321759,0.704967,0.529707,0.126396,0.579757,0.224066,0.4807,0.212094,0.244511,0.828852,0.768645,0.264588,0.994621,0.650658,0.400099,0.375442,0.1823,0.324358,0.916918,0.0464056,0.634939,0.721407,0.583983,0.434901,0.202649,0.786616,0.839636,0.491009,0.0268989,0.040783,0.171141,0.583527,0.0199983,0.0607035,0.8483,0.470897,0.758091,0.677598,0.174483,0.0747374,0.713208,0.285889,0.577164,0.709034,0.540824,0.230192,0.933161,0.311119,0.414827,0.259607,0.200976,0.709112,0.129535,0.879907,0.0308028,0.402625,0.329206,0.462301,0.738046,0.246787,0.513596,0.816593,0.519974,0.537038,0.0641882,0.0690182,0.728806,0.413905,0.816235,0.796024,0.629153,0.530534,0.819936,0.261933,0.439164,0.838153,0.206913,0.375316,0.388042,0.0792287,0.713986,0.384256,0.0173681,0.385637,0.574493,0.533817,0.973953,0.265011,0.76713,0.240266,0.156681,0.72967,0.198586,0.148254,0.0537738,0.657232,0.590234,0.683047,0.340321,0.0696854,0.308145,0.112497,0.0758004,0.87628,0.201678,0.0135093,0.123053,0.671323,0.645481,0.204815,0.923295,0.575432,0.759327,0.340898,0.158688,0.336347,0.611735,0.846519,0.31337,0.279621,0.416719,0.19756,0.264693,0.378415,0.194234,0.22264,0.144274,0.766575,0.155586,0.470116,0.480585,0.182318,0.586329,0.811826,0.847551,0.115774,0.136618,0.459671,0.656234,0.632315,0.625531,0.824907,0.764521,0.0454217,0.106986,0.159171,0.557706,0.615764,0.321232,0.861378,0.307038,0.626098,0.467801,0.758047,0.300145,0.8681,0.165283,0.297224,0.860661,0.719089,0.44556,0.277051,0.982671,0.417416,0.643592,0.421093,0.423933,0.333979,0.975335,0.376193,0.60567,0.604128,0.675208,0.816591,0.20428,0.509918,0.634279,0.664946,0.782208,0.605223,0.963695,0.290683,0.369333,0.374545,0.44466,0.526788,0.200028,0.25679,0.15645,0.56562,0.046959,0.884723,0.551966,0.974959,0.479709,0.518227,0.964277,0.27536,0.583765,0.327036,0.109724,0.16601,0.134982,0.994383,0.140384,0.541873,0.446354,0.441384,0.896191,0.941236,0.30597,0.965778,0.356845,0.621502,0.732015,0.358768,0.189873,0.431489,0.370183,0.0171483,0.916079,0.633507,0.240112,0.759111,0.188344,0.16854,0.343326,0.836533,0.708885,0.250609,0.87337,0.271069,0.537759,0.0657946,0.489627,0.812246,0.772582,0.582033,0.411198,0.493457,0.147358,0.64944,0.00632751,0.119535,0.977789,0.799133,0.705601,0.540603,0.236398,0.669914,0.963286,0.105428,0.72901,0.5481,0.826234,0.866641,0.0195807,0.761748,0.0659932,0.279745,0.165719,0.213567,0.920497,0.0980297,0.0357241,0.264233,0.378789,0.938151,0.651272,0.830754,0.663648,0.10168,0.569832,0.544966,0.539271,0.905858,0.998807,0.443238,0.219419,0.694967,0.88399,0.698077,0.290405,0.593267,0.970149,0.691321,0.302583,0.457934,0.923148,0.359946,0.845414,0.659692,0.696399,0.386243,0.792883,0.491508,0.396624,0.45807,0.0571374,0.502382,0.702489,0.632554,0.0516119,0.495372,0.97261,0.0855013,0.786356,0.835026,0.28561,0.318153,0.0258648,0.869535,0.357892,0.76844,0.136859,0.99929,0.203677,0.61033,0.0544734,0.59271,0.55066,0.345993,0.606419,0.609537,0.536103,0.743424,0.440319,0.121712,0.564419,0.0293614,0.43865,0.356331,0.534302,0.670048,0.929675,0.682768,0.165595,0.454534,0.0298582,0.721459,0.68066,0.323156,0.541432,0.779791,0.075134,0.958986,0.0767332,0.679791,0.810083,0.699127,0.136857,0.287063,0.372322,0.525678,0.076765,0.133728,0.143779,0.364685,0.415972,0.24087,0.891534,0.659226,0.971091,0.482301,0.883636,0.332434,0.29301,0.221167,0.902892,0.129074,0.126732,0.611819,0.439246,0.771743,0.869926,0.569315,0.934467,0.1226,0.783506,0.808927,0.902785,0.519027,0.761568,0.429423,0.601553,0.400431,0.849265,0.479454,0.0171309,0.978613,0.677251,0.879198,0.525367,0.48929,0.106822,0.282857,0.451304,0.535586,0.0831246,0.357042,0.407208,0.516601,0.711716,0.345073,0.39556,0.787789,0.501928,0.290725,0.733387,0.441123,0.154018,0.902505,0.110084,0.852553,0.0195078,0.343356,0.52023,0.158933,0.16426,0.0629405,0.235085,0.569343,0.221062,0.364654,0.834972,0.697331,0.930877,0.534744,0.805202,0.947269,0.19359,0.359877,0.300818,0.534286,0.000877798,0.221187,0.644153,0.416185,0.896624,0.86545,0.249907,0.382236,0.927925,0.63366,0.147977,0.461905,0.149997,0.611623,0.514539,0.437984,0.340028,0.680117,0.198346,0.197474,0.20792,0.746546,0.061233,0.0322205,0.462905,0.0970598,0.463385,0.171461,0.0532982,0.501422,0.430188,0.342521,0.715239,0.970921,0.901682,0.707487,0.641971,0.596612,0.650181,0.601286,0.102614,0.030726,0.240927,0.900651,0.644064,0.236523,0.941481,0.884899,0.577784,0.355923,0.32792,0.26768,0.164329,0.294862,0.0476812,0.73765,0.823759,0.0540196,0.225411,0.593893,0.321475,0.0279952,0.558377,0.0182906,0.281867,0.400881,0.0817918,0.592575,0.503404,0.395036,0.17143,0.954788,0.0826184,0.548515,0.152817,0.660824,0.943524,0.179135,0.296315,0.211507,0.352107,0.939464,0.231625,0.489737,0.525539,0.272629,0.99392,0.832855,0.316728,0.885893,0.720152,0.276599,0.347584,0.602986,0.744631,0.855332,0.451937,0.60788,0.63038,0.961367,0.658852,0.877825,0.64382,0.552139,0.767695,0.543031,0.338508,0.626543,0.963461,0.00374085,0.972457,0.624199,0.0869169,0.286596,0.466619,0.619899,0.830784,0.406711,0.143943,0.0453348,0.790214,0.0314443,0.47998,0.229408,0.656409,0.629115,0.812485,0.0305694,0.050599,0.671448,0.339437,0.0125144,0.884338,0.0956025,0.465666,0.554151,0.994267,0.497143,0.984464,0.1616,0.742017,0.622296,0.475377,0.545978,0.813016,0.522143,0.69266,0.591118,0.278987,0.957262,0.870501,0.105822,0.4169,0.724682,0.917056,0.159069,|0.728688,0.957658,0.927036,0.0405435,0.0769576,0.351216,0.968105,0.143576,0.169732,0.612624,0.69714,0.86707,0.237979,0.0416378,0.467559,0.0136106,0.605656,0.861414,0.442119,0.488908,0.519291,0.695881,0.5752,0.851623,0.959463,0.44928,0.483613,0.190479,0.766856,0.309657,0.995814,0.465925,0.940388,0.804001,0.3986,0.159468,0.462565,0.831267,0.713426,0.568045,0.442158,0.0639439,0.0814688,0.600666,0.797317,0.0997911,0.513077,0.710326,0.92624,0.883973,0.197814,0.44933,0.833882,0.958659,0.648059,0.0267959,0.621446,0.16296,0.875566,0.146222,0.909576,0.570211,0.0327405,0.29053,0.467301,0.651183,0.720185,0.790432,0.222874,0.202004,0.196713,0.273072,0.931711,0.119542,0.284712,0.438143,0.870509,0.964757,0.479443,0.180781,0.709402,0.898181,0.826435,0.443158,0.093819,0.858493,0.572701,0.505079,0.703538,0.141328,0.537483,0.820987,0.0135341,0.359545,0.0410318,0.53085,0.313668,0.631235,0.912767,0.946775,0.924564,0.939397,0.793552,0.859244,0.540366,0.512192,0.97145,0.326398,0.452426,0.0173008,0.710877,0.352595,0.347606,0.999716,0.733551,0.867902,0.271045,0.411005,0.765174,0.388491,0.617484,0.595381,0.287501,0.29414,0.592112,0.995868,0.690842,0.449812,0.493589,0.0437346,0.256017,0.0910737,0.0821601,0.935202,0.948434,0.12961,0.861535,0.809896,0.919174,0.98366,0.554912,0.798296,0.906594,0.950082,0.966281,0.293394,0.243235,0.233039,0.921999,0.0387076,0.709318,0.596594,0.482287,0.741603,0.459769,0.348868,0.544393,0.412976,0.848384,0.930654,0.0125272,0.87967,0.886074,0.619556,0.437569,0.71366,0.335012,0.116506,0.0576985,0.409384,0.405463,0.371784,0.630151,0.571145,0.32058,0.418943,0.923254,0.235333,0.563715,0.566052,0.554639,0.669694,0.148029,0.510895,0.583749,0.137445,0.234803,0.552252,0.847101,0.210799,0.357618,0.456184,0.351601,0.883881,0.770734,0.224893,0.773976,0.851059,0.542304,0.293688,0.539812,0.222106,0.910997,0.705773,0.424261,0.606563,0.727,0.905014,0.794768,0.59154,0.0827286,0.522436,0.50983,0.696371,0.399292,0.482299,0.365599,0.0170147,0.209877,0.148439,0.162186,0.621344,0.396861,0.011105,0.0634809,0.404078,0.432917,0.442841,0.832886,0.216888,0.951789,0.3406,0.159029,0.53021,0.242073,0.801407,0.467283,0.74725,0.956391,0.408262,0.901092,0.333993,0.893222,0.643286,0.702579,0.164177,0.530988,0.397716,0.961063,0.463412,0.559902,0.176267,0.0282287,0.96768,0.181315,0.559536,0.474306,0.851583,0.439389,0.539356,0.419118,0.72145,0.504049,0.209224,0.233363,0.158798,0.713971,0.888329,0.677236,0.926496,0.905699,0.17553,0.57369,0.753747,0.0875188,0.0138443,0.97503,0.597612,0.308115,0.458159,0.171243,0.2863,0.531581,0.957376,0.151609,0.0327271,0.085144,0.0852041,0.958232,0.0202177,0.419016,0.298755,0.753241,0.884669,0.0881182,0.965851,0.981375,0.318818,0.178,0.047077,0.305705,0.486904,0.166122,0.256093,0.869236,0.938692,0.774391,0.469561,0.719861,0.520716,0.500262,0.821655,0.720687,0.809042,0.382271,0.107542,0.652369,0.654878,0.977959,0.701028,0.866333,0.182552,0.709935,0.190433,0.497953,0.913839,0.161142,0.770849,0.225655,0.84849,0.266227,0.646253,0.764117,0.614837,0.925135,0.0689899,0.150036,0.710331,0.758487,0.494199,0.217056,0.578797,0.582948,0.557616,0.787,0.170362,0.0412965,0.226691,0.676524,0.53798,0.154686,0.446056,0.975677,0.149171,0.730816,0.112471,0.910132,0.0255396,0.372394,0.0980588,0.812115,0.352004,0.427428,0.454704,0.461735,0.272062,0.686183,0.356331,0.880534,0.414238,0.148919,0.186632,0.853458,0.41661,0.537922,0.854158,0.302497,0.312366,0.460849,0.994853,0.309676,0.169291,0.565386,0.760192,0.910647,0.156051,0.161716,0.0151268,0.651326,0.23871,0.647972,0.517382,0.0201468,0.587648,0.293685,0.692984,0.0162379,0.486427,0.460917,0.659365,0.885481,0.929532,0.866339,0.571515,0.789716,0.738648,0.705304,0.282098,0.847896,0.495219,0.918198,0.993333,0.567304,0.337564,0.559021,0.887993,0.653411,0.547888,0.649732,0.865472,0.0584713,0.378865,0.548728,0.783254,0.839657,0.218767,0.607575,0.587752,0.713001,0.706317,0.5414,0.442363,0.465906,0.0862378,0.979189,0.917478,0.976354,0.14971,0.0589138,0.629788,0.400725,0.690646,0.890925,0.792565,0.251377,0.94267,0.759958,0.712518,0.704589,0.0982009,0.558455,0.70924,0.499397,0.127108,0.608475,0.248852,0.172968,0.22693,0.762852,0.647845,0.754135,0.482078,0.797797,0.652086,0.569521,0.725819,0.0041815,0.23064,0.0873819,0.511818,0.740437,0.0186816,0.260993,0.836509,0.366855,0.0885518,0.183859,0.908476,0.26681,0.703099,0.549912,0.583121,0.421672,0.749511,0.83528,0.429075,0.180329,0.146341,0.966391,0.881837,0.190983,0.888257,0.622922,0.0452778,0.115761,0.84749,0.777466,0.277022,0.644213,0.0629551,0.759639,0.716073,0.442009,0.315893,0.873038,0.777359,0.859908,0.578281,0.631762,0.856128,0.990604,0.226998,0.202464,0.390255,0.589084,0.810156,0.0407628,0.500483,0.712084,0.0645753,0.0774579,0.696811,0.175299,0.471638,0.198799,0.658974,0.127069,0.294387,0.368752,0.265455,0.763121,0.150401,0.880374,0.365151,0.658556,0.530907,0.560139,0.00419569,0.410862,0.293962,0.882515,0.168972,0.278481,0.873414,0.730506,0.0110328,0.495618,0.414148,0.164131,0.351941,0.412486,0.236926,0.544307,0.403835,0.474961,0.434156,0.732572,0.523725,0.14118,0.0192414,0.3294,0.475012,0.723421,0.407073,0.917098,0.890306,0.288936,0.392325,0.145627,0.884797,0.408438,0.177155,0.674607,0.257238,0.56808,0.401728,0.165496,0.246155,0.354906,0.551267,0.990112,0.227727,0.640608,0.652902,0.376235,0.44644,0.376307,0.248184,0.879217,0.577488,0.72917,0.673474,0.69549,0.400621,0.398483,0.346537,0.763337,0.135839,0.496548,0.466359,0.955889,0.745239,0.823582,0.00826305,0.984331,0.319429,0.470936,0.413279,0.943941,0.0528998,0.633047,0.701206,0.927704,0.00640637,0.214181,0.681106,0.166807,0.53573,0.466199,0.11032,0.165395,0.532314,0.812832,0.394935,0.208043,0.205919,0.0101019,0.130174,0.812309,0.42838,0.351837,0.890161,0.279173,0.373037,0.851389,0.949124,0.579985,0.333482,0.839966,0.260424,0.164425,0.169662,0.825889,0.923982,0.561031,0.0723578,0.638635,0.258658,0.388465,0.639327,0.818367,0.362689,0.745146,0.745141,0.475355,0.635834,0.0525129,0.678037,0.223178,0.299602,0.475699,0.328358,0.394307,0.127196,0.23699,0.835234,0.925392,0.537826,0.532783,0.208189,0.914688,0.77726,0.0202467,0.939656,0.45533,0.167067,0.911263,0.895639,0.475911,0.843302,0.05305,0.116596,0.409508,0.277175,0.0764647,0.279132,0.383582,0.364808,0.0868555,0.143449,0.574882,0.402925,0.495258,0.664212,0.728985,0.334817,0.441212,0.765767,0.253209,0.967583,0.204358,0.638696,0.530372,0.716818,0.92412,0.905593,0.374644,0.821946,0.360379,0.407995,0.858351,0.548616,0.115651,0.280704,0.686684,0.853157,0.778456,0.321523,0.31871,0.739244,0.183256,0.33695,0.845303,0.790999,0.996405,0.198651,0.305211,0.907156,0.0819304,0.529171,0.416285,0.620877,0.181715,0.932273,0.227289,0.0420517,0.230585,0.805094,0.760952,0.630874,0.474996,0.515822,0.221527,0.286965,0.897265,0.111591,0.20447,0.354367,0.16409,0.295079,0.5516,0.0555673,0.225144,0.395874,0.0500953,0.323151,0.934664,0.819755,0.576275,0.149339,0.607857,0.655798,0.537823,0.109989,0.708983,0.304273,0.51359,0.791571,0.512376,0.061021,0.363965,0.345148,0.31865,0.462209,0.964545,0.712926,0.592649,0.337205,0.967129,0.970084,0.356055,0.609846,0.440728,0.699502,0.453937,0.56615,0.775462,0.626703,0.349006,0.466508,0.597827,0.285928,0.02787,0.749941,0.107835,0.182151,0.450042,0.529868,0.412428,0.482436,0.63699,0.950779,0.421492,0.461881,0.513913,0.693597,0.123185,0.457734,0.572572,0.0234119,0.139387,0.0611001,0.761209,0.126958,0.744771,0.536196,0.582816,0.304629,0.962844,0.214189,0.686319,0.669212,0.67377,0.478645,0.334712,0.796698,0.26864,0.986028,0.990224,0.768408,0.91294,0.864136,0.246023,0.950104,0.216569,0.702345,0.633456,0.547105,0.239832,0.861711,0.492099,0.3157,0.0249832,0.014859,0.286618,0.982684,0.314234,0.476082,0.509035,0.76643,0.964481,0.667517,0.0502317,0.254285,0.833685,0.286886,0.423286,0.626104,0.511407,0.776333,0.200445,0.138435,0.290869,0.785455,0.0417002,0.110552,0.409337,0.132341,0.545964,0.158436,0.863978,0.544055,0.0957003,0.431352,0.754584,0.596019,0.0761065,0.412152,0.280464,0.0643088,0.143953,0.592852,0.698755,0.681328,0.437893,0.28928,0.266234,0.21988,0.678979,0.083923,0.762141,0.33305,0.525729,0.955824,0.0187117,0.251075,0.750952,0.558152,0.100528,0.0168489,0.00195533,0.380019,0.267744,0.109408,0.882724,0.194118,0.366048,0.30241,0.0679489,0.634889,0.598955,0.443038,0.945218,0.865543,0.809642,0.312328,0.452365,0.994796,0.224941,0.613931,0.219412,0.821655,0.853602,0.378829,0.222597,0.72982,0.879858,0.893607,0.0201932,0.674218,0.881096,0.10655,0.791347,0.0281907,0.759529,0.629434,0.195306,0.367608,0.642906,0.870971,0.592233,0.58249,0.0586727,0.667087,0.196098,0.646726,0.0431775,0.869822,0.283417,0.848429,0.917564,0.99057,0.222114,0.598334,0.2244,0.866897,0.997023,0.145031,0.342241,0.767004,0.515474,0.646774,0.331208,0.167734,0.0902327,0.819071,0.42874,0.730544,0.939194,0.078796,0.83148,0.147418,0.202319,0.241313,0.951866,0.652538,0.269902,0.123372,0.131207,0.249718,0.408018,0.765651,0.734278,0.643124,0.518325,0.928829,0.659198,0.0197197,0.555075,0.516956,0.758063,0.099244,0.00814193,0.0170609,0.649978,0.849973,0.789072,0.58227,0.0855217,0.905455,|0.00369519,0.7514,0.779167,0.305207,0.142264,0.107445,0.636084,0.250904,0.901366,0.02428,0.168399,0.927803,0.446622,0.282731,0.0220353,0.303804,0.123315,0.698129,0.451105,0.89436,0.543236,0.378292,0.600764,0.224147,0.0788912,0.26934,0.344217,0.242469,0.260543,0.429147,0.996865,0.086257,0.92398,0.839087,0.797985,0.749245,0.512842,0.65557,0.914639,0.972032,0.455114,0.77609,0.503093,0.0721031,0.784869,0.459187,0.207513,0.139108,0.59868,0.033306,0.37377,0.359255,0.138531,0.947032,0.652138,0.363852,0.00914681,0.427426,0.836216,0.0503327,0.0186055,0.0921891,0.241698,0.608946,0.231051,0.197827,0.439277,0.692625,0.758307,0.126696,0.369944,0.000902414,0.778241,0.528213,0.384746,0.421246,0.175887,0.537084,0.628327,0.831227,0.545687,0.608381,0.0507467,0.0926014,0.0618511,0.102701,0.324314,0.323542,0.99717,0.768813,0.0641174,0.0846997,0.632256,0.293379,0.977114,0.559131,0.59773,0.587459,0.276322,0.764937,0.7654,0.502142,0.0577202,0.827314,0.48475,0.337701,0.44583,0.707027,0.487923,0.451071,0.813763,0.0183219,0.707861,0.104273,0.94289,0.494026,0.417623,0.160118,0.0153393,0.840295,0.49138,0.524259,0.68818,0.503756,0.0953959,0.0699688,0.500429,0.358156,0.325524,0.0149355,0.123355,0.508695,0.711912,0.587768,0.264063,0.751777,0.0547149,0.201309,0.324011,0.396532,0.165748,0.751496,0.62545,0.242965,0.0296703,0.465925,0.573537,0.630814,0.247269,0.923374,0.0940281,0.54499,0.874018,0.343046,0.905732,0.63594,0.936459,0.914609,0.0496861,0.0937745,0.227477,0.354154,0.499627,0.630619,0.42251,0.768767,0.501275,0.438542,0.522883,0.367288,0.772553,0.153279,0.392513,0.745828,0.75847,0.931343,0.0185498,0.954589,0.772758,0.762314,0.942404,0.727971,0.556309,0.135011,0.56827,0.390097,0.451175,0.0074262,0.546661,0.792841,0.834308,0.978388,0.540779,0.000176311,0.449644,0.171154,0.266675,0.082481,0.74748,0.421449,0.420097,0.684754,0.137301,0.828667,0.202894,0.521886,0.130594,0.584831,0.608753,0.300682,0.344391,0.659712,0.202681,0.0847389,0.250229,0.359682,0.637067,0.526438,0.626509,0.632722,0.303507,0.962525,0.208731,0.329281,0.162453,0.973782,0.587435,0.601304,0.574142,0.584983,0.772694,0.137081,0.854041,0.2401,0.615109,0.868527,0.664595,0.907049,0.133428,0.832158,0.234342,0.913064,0.0414059,0.303629,0.782175,0.414506,0.613872,0.374389,0.776602,0.98483,0.00934619,0.128883,0.94278,0.352059,0.968521,0.702633,0.876256,0.187631,0.758905,0.394167,0.146661,0.827223,0.384118,0.923156,0.447833,0.184984,0.170633,0.900908,0.0910981,0.974695,0.12542,0.591749,0.858129,0.788493,0.432617,0.714521,0.973831,0.999864,0.154515,0.415599,0.79485,0.947597,0.936606,0.621084,0.871341,0.712168,0.4933,0.489072,0.105759,0.774139,0.15633,0.158569,0.780496,0.198442,0.4613,0.485304,0.636589,0.75008,0.853261,0.667775,0.997628,0.307941,0.562334,0.72068,0.857141,0.42038,0.498465,0.82109,0.664084,0.686019,0.14285,0.0897776,0.623795,0.327666,0.856661,0.378326,0.390239,0.00631505,0.303313,0.526076,0.169981,0.56095,0.34517,0.396017,0.331235,0.247562,0.36396,0.960335,0.885667,0.98768,0.975352,0.0275682,0.909518,0.0231628,0.664384,0.701007,0.730282,0.540045,0.437051,0.822616,0.648307,0.794306,0.822367,0.539135,0.691556,0.0637304,0.798602,0.321085,0.198747,0.684534,0.834823,0.205173,0.269638,0.854788,0.269754,0.04456,0.463249,0.504196,0.692803,0.164304,0.0347589,0.528338,0.85598,0.351115,0.211197,0.595859,0.669839,0.96334,0.482695,0.589795,0.148377,0.650165,0.616086,0.0273097,0.0372564,0.233532,0.197962,0.7288,0.580696,0.130994,0.981872,0.726344,0.825049,0.28536,0.0196091,0.87691,0.135747,0.67346,0.657835,0.795308,0.691508,0.9274,0.67566,0.600893,0.989917,0.0715168,0.752928,0.283852,0.727979,0.524231,0.147542,0.248573,0.945489,0.532156,0.860852,0.344528,0.896164,0.37206,0.361914,0.603426,0.235058,0.310259,0.0657257,0.232909,0.464843,0.973469,0.795844,0.998496,0.802463,0.809213,0.158053,0.560294,0.175025,0.817673,0.28917,0.583868,0.880268,0.910062,0.806442,0.220855,0.617238,0.460002,0.159082,0.414502,0.629712,0.760312,0.863186,0.155136,0.584197,0.54981,0.452306,0.324431,0.0720578,0.836777,0.402389,0.431049,0.41033,0.182451,0.78504,0.588401,0.0565234,0.474409,0.203119,0.149938,0.378666,0.271632,0.734276,0.702947,0.477661,0.959498,0.688996,0.905284,0.904017,0.0683581,0.124759,0.796873,0.946597,0.514207,0.0208212,0.22445,0.0327976,0.239126,0.113657,0.710023,0.493478,0.172121,0.752784,0.432119,0.869046,0.917528,0.0761833,0.312804,0.749451,0.451671,0.206253,0.488373,0.73497,0.755289,0.751533,0.764274,0.232295,0.139746,0.616995,0.235302,0.893936,0.52074,0.633385,0.416581,0.971072,0.51682,0.875594,0.469196,0.493747,0.480446,0.145106,0.54028,0.716497,0.747262,0.716115,0.0690851,0.228612,0.472004,0.265027,0.172099,0.41717,0.264027,0.195428,0.799207,0.7435,0.996616,0.871337,0.973042,0.790698,0.223275,0.731102,0.955555,0.416762,0.657852,0.610639,0.79901,0.534371,0.93863,0.60063,0.469499,0.389955,0.943214,0.640441,0.238328,0.702782,0.893654,0.371531,0.443303,0.981096,0.759392,0.724247,0.157964,0.395705,0.232475,0.785905,0.134596,0.75477,0.814508,0.815712,0.614527,0.817463,0.369199,0.779277,0.123071,0.0280561,0.168929,0.336546,0.205137,0.648356,0.908052,0.58705,0.58833,0.0508577,0.584537,0.589554,0.617939,0.241608,0.590682,0.357382,0.206835,0.177987,0.060174,0.320176,0.145544,0.228976,0.27357,0.939837,0.909039,0.266079,0.901999,0.106353,0.824822,0.13227,0.125492,0.568051,0.690556,0.714687,0.509332,0.16545,0.690341,0.125249,0.951677,0.874605,0.391098,0.496439,0.89228,0.151338,0.386385,0.915021,0.442296,0.716247,0.575524,0.972164,0.201948,0.911016,0.131183,0.411009,0.485401,0.826423,0.689044,0.735794,0.650104,0.0151026,0.626191,0.295318,0.195118,0.618189,0.830745,0.828142,0.895209,0.783644,0.911063,0.0632392,0.993532,0.600176,0.0765963,0.721274,0.696242,0.480452,0.778611,0.279643,0.398637,0.722901,0.971826,0.0504522,0.951952,0.388111,0.658066,0.420415,0.0753313,0.863424,0.817123,0.890376,0.817435,0.939241,0.240832,0.489027,0.307682,0.609261,0.580366,0.658714,0.377481,0.0292714,0.43932,0.764543,0.506833,0.880453,0.516401,0.79579,0.984345,0.026934,0.843021,0.0357407,0.198067,0.578537,0.0100997,0.322409,0.730079,0.368115,0.691338,0.169446,0.376677,0.707241,0.362883,0.20064,0.421677,0.153796,0.423862,0.685955,0.337581,0.985033,0.444396,0.730729,0.161112,0.216928,0.30838,0.176405,0.794737,0.580796,0.590705,0.607159,0.505783,0.42449,0.768334,0.905122,0.116612,0.136559,0.132381,0.829523,0.161343,0.302258,0.275528,0.198243,0.145606,0.861008,0.146193,0.212394,0.503981,0.719319,0.684469,0.907043,0.90734,0.64202,0.00339097,0.129147,0.886962,0.659995,0.624752,0.676236,0.468413,0.657745,0.285883,0.615801,0.442214,0.0565702,0.345129,0.808877,0.926643,0.161748,0.0123121,0.190135,0.121854,0.255843,0.826274,0.60032,0.592425,0.811082,0.437063,0.0187842,0.21544,0.174131,0.419631,0.263205,0.846171,0.63349,0.83965,0.748974,0.675892,0.50728,0.530111,0.732472,0.0144479,0.127208,0.303926,0.811585,0.516592,0.854611,0.390018,0.435648,0.684277,0.332175,0.585469,0.530768,0.41799,0.530134,0.765156,0.280789,0.419408,0.346114,0.0958492,0.402678,0.819361,0.132834,0.413561,0.117112,0.533378,0.794616,0.443932,0.785478,0.212669,0.484288,0.376299,0.0350536,0.570242,0.0111641,0.182603,0.112671,0.123182,0.319848,0.416517,0.301275,0.818217,0.253243,0.0626894,0.577428,0.312609,0.557323,0.0301486,0.141673,0.637792,0.648619,0.56587,0.227255,0.101587,0.641337,0.620964,0.891945,0.782273,0.164444,0.478823,0.892861,0.288198,0.192575,0.325506,0.812327,0.0227891,0.0374118,0.00169933,0.364174,0.446926,0.778075,0.000634491,0.0098443,0.286993,0.736504,0.250807,0.911012,0.552067,0.0605578,0.456902,0.535592,0.298829,0.0734317,0.468361,0.495858,0.661757,0.310725,0.77728,0.0673581,0.689141,0.429579,0.415318,0.163023,0.190304,0.426058,0.656571,0.811725,0.942281,0.138587,0.816543,0.509832,0.199455,0.459432,0.603632,0.605796,0.610158,0.0037623,0.301419,0.777822,0.0518516,0.597472,0.112896,0.173956,0.25765,0.58675,0.664823,0.460702,0.70025,0.397077,0.872634,0.922721,0.143219,0.766742,0.253796,0.647798,0.717206,0.214797,0.112901,0.776154,0.529906,0.835617,0.216987,0.345917,0.861597,0.951504,0.400493,0.785421,0.614076,0.0104016,0.117276,0.171212,0.116337,0.191734,0.547224,0.370351,0.669414,0.208068,0.826689,0.564603,0.584002,0.668643,0.643343,0.457391,0.992884,0.4996,0.100212,0.0940837,0.0556071,0.0546073,0.217541,0.0456115,0.0858539,0.874867,0.178173,0.639054,0.521101,0.494842,0.607985,0.0376924,0.873604,0.279804,0.633523,0.885864,0.211875,0.515153,0.871288,0.894531,0.0166053,0.715075,0.428106,0.728339,0.862295,0.220211,0.463635,0.763005,0.0427789,0.0869973,0.713656,0.972744,0.91012,0.773116,0.56005,0.818511,0.105887,0.402152,0.0411314,0.867251,0.704822,0.0209228,0.83854,0.531107,0.568334,0.452884,0.659353,0.618509,0.254245,0.696692,0.287543,0.744315,0.516831,0.519073,0.0674006,0.663207,0.0730439,0.930909,0.218088,0.73912,0.936925,0.653609,0.205003,0.283631,0.343047,0.516499,0.836069,0.533501,0.642417,0.402041,0.549227,0.729927,0.752589,0.106888,0.53625,0.117502,0.628733,0.961392,0.646714,0.166896,0.969016,0.590369,0.309728,0.453762,0.965889,0.466902,0.00511736,0.0563676,0.382398,|0.6009,0.168662,0.988775,0.0600501,0.712857,0.587658,0.549553,0.0430056,0.16594,0.0647128,0.801201,0.883906,0.465867,0.68447,0.225638,0.9258,0.297769,0.945026,0.858586,0.158504,0.421352,0.516474,0.719333,0.444349,0.792616,0.572188,0.543721,0.611845,0.718049,0.685032,0.336895,0.256142,0.507055,0.394292,0.0604343,0.855392,0.210823,0.0629246,0.625855,0.485709,0.0954386,0.172051,0.933895,0.772456,0.425824,0.53125,0.670758,0.715537,0.85941,0.905699,0.777379,0.191895,0.16798,0.143271,0.255998,0.769773,0.5423,0.42469,0.101508,0.647127,0.766557,0.810503,0.946709,0.664693,0.542916,0.499696,0.954999,0.47563,0.41846,0.219762,0.901437,0.118145,0.684359,0.116164,0.00579005,0.0411766,0.57532,0.907568,0.386413,0.253833,0.138789,0.438995,0.351298,0.868392,0.544473,0.109012,0.735797,0.412129,0.889956,0.657916,0.394568,0.413635,0.682742,0.146597,0.906175,0.889228,0.875981,0.872062,0.221354,0.616806,0.154008,0.699769,0.0477382,0.139358,0.41109,0.505831,0.299527,0.917289,0.933477,0.940566,0.641007,0.0371963,0.162471,0.397367,0.618207,0.734811,0.0809976,0.0376809,0.530223,0.356545,0.399466,0.438601,0.767936,0.0524545,0.940434,0.901414,0.49311,0.385762,0.902271,0.67042,0.83984,0.170673,0.240842,0.286862,0.380961,0.511137,0.84084,0.724105,0.436359,0.883975,0.670521,0.159838,0.320789,0.975632,0.758785,0.333278,0.112893,0.911631,0.467849,0.898221,0.0269557,0.59238,0.607399,0.87423,0.355833,0.0144421,0.043736,0.933707,0.0408694,0.769203,0.51282,0.603758,0.213103,0.888653,0.0793687,0.238869,0.466841,0.82018,0.818441,0.567407,0.201284,0.859451,0.493525,0.175969,0.86156,0.66959,0.846357,0.367442,0.605654,0.0437154,0.698793,0.670257,0.115491,0.969465,0.432372,0.0949539,0.761154,0.914562,0.902916,0.287941,0.61469,0.512386,0.0310805,0.118858,0.406009,0.475049,0.33229,0.776392,0.882237,0.250989,0.48063,0.680963,0.022997,0.783222,0.664102,0.228406,0.428667,0.200661,0.923062,0.181998,0.522735,0.415096,0.923778,0.570176,0.24311,0.938685,0.680329,0.22764,0.0842794,0.777632,0.913305,0.920716,0.0760936,0.22658,0.968836,0.483349,0.00218475,0.949093,0.85846,0.62376,0.192256,0.376095,0.302967,0.563439,0.415222,0.697767,0.874156,0.646225,0.683771,0.0425273,0.424607,0.319261,0.146002,0.39427,0.0161435,0.69079,0.0281225,0.846026,0.774393,0.82295,0.545393,0.0406836,0.530577,0.955802,0.696262,0.350264,0.993447,0.778717,0.479918,0.898406,0.620016,0.77066,0.58098,0.278541,0.682904,0.939061,0.114252,0.570408,0.486315,0.15692,0.803974,0.080504,0.253102,0.560365,0.425566,0.612862,0.535016,0.554619,0.492462,0.129498,0.961338,0.0670698,0.55393,0.342386,0.276156,0.475707,0.377232,0.962313,0.299263,0.0621968,0.149738,0.958266,0.640335,0.365881,0.708997,0.764407,0.508649,0.639669,0.724369,0.5218,0.0592473,0.809918,0.0654968,0.0575542,0.210407,0.220828,0.203316,0.392721,0.181425,0.634849,0.615444,0.197959,0.3788,0.0327454,0.495648,0.0714659,0.0785573,0.44136,0.960646,0.203995,0.431234,0.402295,0.700235,0.608019,0.0672092,0.802404,0.353098,0.813819,0.836012,0.361156,0.586044,0.0627494,0.755176,0.0217511,0.675538,0.64774,0.977448,0.0570799,0.637295,0.967026,0.0486919,0.869614,0.381327,0.790427,0.280288,0.323641,0.297491,0.0586045,0.263034,0.204159,0.376809,0.553304,0.768767,0.776876,0.381687,0.865589,0.149078,0.346267,0.543568,0.670006,0.441417,0.715843,0.775604,0.0165698,0.996553,0.821403,0.687407,0.00768518,0.775137,0.441313,0.747653,0.628487,0.719287,0.0514739,0.307932,0.110766,0.650533,0.0987868,0.0364017,0.905418,0.0883005,0.617633,0.374396,0.296355,0.596405,0.921681,0.144951,0.651568,0.00906211,0.548719,0.901604,0.469807,0.838049,0.584625,0.13784,0.616509,0.688665,0.714578,0.680414,0.0550261,0.325843,0.539626,0.872988,0.634996,0.0929461,0.818489,0.0346379,0.610674,0.574232,0.143789,0.199124,0.98592,0.141371,0.225739,0.243961,0.58069,0.902,0.649331,0.996691,0.472183,0.609851,0.761818,0.540934,0.662289,0.354195,0.461079,0.0854565,0.0240179,0.810519,0.496536,0.0848608,0.635564,0.923877,0.542206,0.218625,0.792486,0.63195,0.780883,0.859161,0.813832,0.865966,0.0456963,0.183041,0.877748,0.682648,0.780669,0.266674,0.387374,0.361761,0.993293,0.460842,0.969969,0.923822,0.729998,0.733116,0.0831844,0.0693178,0.521092,0.918932,0.612067,0.184244,0.168431,0.269291,0.167641,0.555183,0.572678,0.405024,0.438142,0.454611,0.724295,0.342037,0.201755,0.319193,0.652212,0.733005,0.071583,0.177589,0.40111,0.875821,0.151834,0.5541,0.690124,0.759411,0.807519,0.909952,0.393079,0.458152,0.0168511,0.352471,0.43225,0.365476,0.708965,0.428124,0.840133,0.415351,0.30818,0.622893,0.865353,0.660468,0.911967,0.331182,0.348264,0.581564,0.416593,0.112382,0.189919,0.760401,0.602941,0.910894,0.0140616,0.241672,0.578607,0.718404,0.261821,0.975517,0.363903,0.221072,0.216782,0.331665,0.933752,0.659972,0.231298,0.551121,0.69912,0.164848,0.155637,0.91279,0.316577,0.334083,0.162899,0.0614986,0.999639,0.384653,0.800555,0.00102884,0.386859,0.287083,0.252227,0.507638,0.635835,0.178142,0.94175,0.919863,0.483551,0.88091,0.525659,0.0206903,0.273509,0.980998,0.601427,0.519744,0.0740068,0.836312,0.691968,0.0524599,0.459708,0.267412,0.296275,0.317992,0.240494,0.910685,0.659156,0.278841,0.697879,0.256158,0.639747,0.759215,0.599465,0.01548,0.901805,0.046058,0.72518,0.993818,0.328778,0.727236,0.914539,0.615521,0.592513,0.505386,0.515465,0.557808,0.892827,0.0397897,0.202292,0.757827,0.292918,0.921022,0.276398,0.348439,0.602305,0.310756,0.216343,0.926953,0.791151,0.857248,0.308549,0.354817,0.675088,0.28505,0.650682,0.689256,0.859017,0.772468,0.210097,0.846769,0.632933,0.00334603,0.326817,0.821631,0.96227,0.146331,0.891709,0.656527,0.735998,0.390146,0.72444,0.880022,0.313834,0.43573,0.754388,0.419133,0.963901,0.59627,0.345894,0.927271,0.623888,0.982027,0.952317,0.704139,0.919331,0.343904,0.444809,0.0684073,0.873646,0.247879,0.535535,0.931912,0.0887823,0.100046,0.969254,0.513395,0.140832,0.240344,0.151075,0.00783932,0.472219,0.757378,0.652063,0.806351,0.42728,0.0360569,0.0499606,0.141862,0.612199,0.107953,0.391017,0.379626,0.449861,0.299189,0.881787,0.0459869,0.158662,0.776227,0.306853,0.856911,0.0941704,0.198938,0.866921,0.457196,0.14697,0.613201,0.563646,0.784549,0.0295933,0.473636,0.781758,0.244009,0.116306,0.537506,0.948378,0.092361,0.85765,0.355367,0.566668,0.211072,0.546232,0.2769,0.0351584,0.198601,0.27125,0.343083,0.710433,0.621529,0.962211,0.0205844,0.313758,0.999212,0.766301,0.256829,0.485348,0.667018,0.239881,0.299893,0.482018,0.415556,0.407437,0.887263,0.173785,0.00199372,0.874841,0.555381,0.0118242,0.388062,0.167697,0.216284,0.910331,0.917668,0.832399,0.967261,0.975589,0.32717,0.422898,0.12111,0.57803,0.622038,0.50854,0.720509,0.266674,0.0510499,0.0134689,0.828468,0.268891,0.117794,0.596624,0.560176,0.00872785,0.535639,0.902789,0.158937,0.732449,0.776363,0.678836,0.740782,0.196449,0.460429,0.422902,0.29797,0.510244,0.795812,0.890534,0.324213,0.233048,0.133428,0.855762,0.654881,0.200234,0.060976,0.500488,0.507908,0.15521,0.489766,0.282129,0.581428,0.944919,0.368441,0.270205,0.294147,0.52285,0.238029,0.808118,0.126805,0.502354,0.357212,0.261224,0.329179,0.330625,0.0371894,0.66349,0.17822,0.97796,0.266887,0.412338,0.812489,0.0323891,0.494383,0.97927,0.47666,0.471532,0.0682569,0.394863,0.931182,0.0482988,0.924636,0.435197,0.31323,0.797382,0.148818,0.519649,0.740837,0.487079,0.941495,0.360975,0.914626,0.468448,0.219105,0.72427,0.702727,0.73717,0.915621,0.202154,0.808252,0.114668,0.989758,0.294215,0.0306404,0.128256,0.336891,0.54247,0.214214,0.737251,0.24619,0.919675,0.310357,0.31241,0.972075,0.579595,0.26295,0.549395,0.62696,0.00352317,0.0739212,0.716179,0.1683,0.676727,0.248261,0.940166,0.123775,0.564507,0.129198,0.94332,0.516259,0.566994,0.864716,0.489563,0.890398,0.735895,0.623822,0.296118,0.164708,0.0729658,0.641081,0.535662,0.844927,0.305079,0.993545,0.739349,0.780947,0.28827,0.461171,0.211741,0.394554,0.105579,0.903026,0.418338,0.745668,0.150243,0.767641,0.951886,0.714632,0.411699,0.808372,0.676559,0.80827,0.46574,0.677502,0.462421,0.74523,0.191294,0.453549,0.601558,0.843247,0.656789,0.539995,0.424487,0.525834,0.74559,0.71042,0.675571,0.82802,0.143887,0.848712,0.30908,0.744621,0.464836,0.253061,0.964304,0.460068,0.546824,0.421695,0.7691,0.168769,0.296105,0.614205,0.427137,0.600138,0.458591,0.0641411,0.507619,0.0471101,0.604429,0.659673,0.560083,0.423033,0.120811,0.497095,0.705256,0.702623,0.921208,0.099628,0.0127633,0.383292,0.347117,0.892831,0.511467,0.724452,0.0036844,0.471612,0.620927,0.240561,0.605245,0.385039,0.893737,0.246496,0.153371,0.94975,0.329537,0.397505,0.475802,0.444477,0.829445,0.48509,0.985217,0.92774,0.472926,0.874296,0.49089,0.604366,0.118616,0.899606,0.78181,0.704621,0.550689,0.402211,0.141958,0.690511,0.0399937,0.800934,0.0132064,0.581835,0.745517,0.3536,0.422436,0.189059,0.46827,0.786751,0.0739134,0.450076,0.892752,0.445772,0.563621,0.87986,0.64982,0.504831,0.0542698,0.499137,0.746028,0.634802,0.978305,0.295645,0.557655,0.0923738,0.46107,0.691156,0.850991,0.288191,0.00283247,0.253717,0.752283,0.0406629,0.978769,0.494659,0.49618,0.70191,0.0303732,0.455498,0.0871284,0.98827,0.0956693,0.722239,0.740542,|0.785559,0.448239,0.115451,0.711127,0.358998,0.548706,0.474765,0.181381,0.427538,0.347708,0.244747,0.639884,0.604403,0.959899,0.135816,0.847523,0.0319273,0.890323,0.440291,0.415088,0.268828,0.16714,0.171292,0.355467,0.398528,0.334187,0.0324041,0.725199,0.0195709,0.446025,0.277524,0.525156,0.0382824,0.233698,0.767495,0.220823,0.346109,0.695529,0.472516,0.633379,0.608998,0.407019,0.788465,0.129561,0.589668,0.474065,0.0531706,0.200859,0.138252,0.992205,0.146847,0.326178,0.0738534,0.182291,0.314454,0.091006,0.879398,0.261717,0.874286,0.262702,0.61538,0.60038,0.821701,0.597731,0.388365,0.119916,0.715949,0.964993,0.435802,0.441621,0.473416,0.929739,0.926848,0.749475,0.161301,0.275451,0.879786,0.603731,0.705699,0.818835,0.259557,0.485896,0.899962,0.13846,0.636969,0.671327,0.90746,0.0211757,0.441917,0.722963,0.317962,0.489247,0.51079,0.101822,0.517248,0.382155,0.874435,0.852453,0.0211108,0.297271,0.987846,0.849628,0.692425,0.85051,0.754632,0.654112,0.907926,0.223783,0.562471,0.84421,0.698706,0.796572,0.85815,0.624678,0.0196789,0.896292,0.0323236,0.466686,0.446855,0.965525,0.457388,0.952936,0.16587,0.15557,0.290949,0.585583,0.425455,0.260819,0.503517,0.926512,0.220733,0.522423,0.442782,0.546732,0.389546,0.936842,0.479999,0.697055,0.965487,0.192585,0.375343,0.289039,0.0898777,0.224916,0.910178,0.0528601,0.224281,0.411262,0.950006,0.804154,0.652457,0.527184,0.567554,0.0353684,0.889789,0.774199,0.685753,0.335139,0.0159064,0.992756,0.812487,0.62096,0.695387,0.549981,0.383416,0.965387,0.488251,0.951299,0.362097,0.139138,0.903207,0.193958,0.458988,0.642103,0.108663,0.257064,0.661184,0.190303,0.671474,0.334221,0.546361,0.088106,0.459059,0.374352,0.612807,0.315309,0.597563,0.905545,0.0288708,0.662566,0.629244,0.605829,0.0830779,0.564265,0.648669,0.257624,0.0802482,0.0122442,0.402739,0.131585,0.616899,0.927209,0.0508469,0.485335,0.401908,0.62077,0.0609769,0.658049,0.515528,0.723877,0.45162,0.303341,0.976784,0.581725,0.886237,0.484963,0.771451,0.681458,0.211145,0.5809,0.290642,0.259638,0.614625,0.0434244,0.677215,0.392262,0.763504,0.812298,0.0434165,0.501483,0.632597,0.418733,0.531407,0.703161,0.176156,0.463123,0.785411,0.561812,0.168126,0.482659,0.497079,0.0745365,0.548837,0.625292,0.794693,0.0656289,0.240393,0.6026,0.200734,0.757986,0.0357032,0.380022,0.7289,0.438661,0.575799,0.387807,0.161189,0.842469,0.218654,0.813242,0.74991,0.156803,0.735508,0.0614746,0.99864,0.374881,0.723784,0.821395,0.139805,0.262023,0.66768,0.267217,0.785138,0.230923,0.244465,0.812559,0.835151,0.981194,0.65279,0.890403,0.684283,0.320165,0.577391,0.44257,0.00882018,0.647558,0.0762388,0.184208,0.311932,0.848555,0.549848,0.63048,0.0339683,0.491472,0.317712,0.601149,0.796946,0.356127,0.61913,0.67349,0.495524,0.4834,0.65751,0.281228,0.253793,0.354291,0.0225183,0.711403,0.384796,0.285378,0.575378,0.888475,0.941718,0.424605,0.695678,0.573978,0.182364,0.425628,0.622015,0.966689,0.0259935,0.195653,0.0882583,0.852436,0.656241,0.406996,0.403451,0.199011,0.19657,0.549171,0.711004,0.268217,0.179548,0.466,0.602678,0.808335,0.212526,0.339784,0.148721,0.265334,0.720339,0.285713,0.363557,0.101497,0.609629,0.66957,0.986626,0.226545,0.949252,0.132926,0.0710688,0.786504,0.728163,0.97048,0.871102,0.524614,0.208821,0.678699,0.24992,0.267268,0.979346,0.664694,0.663386,0.495746,0.771571,0.0108364,0.371359,0.529128,0.609994,0.054015,0.896751,0.100876,0.0729862,0.861712,0.855765,0.146841,0.242514,0.262364,0.668285,0.0171835,0.980769,0.477564,0.544361,0.628962,0.214407,0.541988,0.944349,0.974873,0.45515,0.40292,0.393451,0.82788,0.0854677,0.432148,0.514122,0.00852668,0.683654,0.560799,0.108303,0.929004,0.327533,0.876884,0.444376,0.680542,0.179505,0.127725,0.844658,0.0483401,0.416382,0.599662,0.947363,0.762517,0.0685596,0.00392467,0.888056,0.307651,0.878544,0.629462,0.520737,0.0936615,0.829649,0.750552,0.171358,0.051092,0.389882,0.941461,0.280881,0.911209,0.906655,0.988191,0.459912,0.868622,0.0548418,0.564847,0.915029,0.0408159,0.971281,0.701849,0.145406,0.754815,0.944278,0.26141,0.00213337,0.385408,0.291199,0.191247,0.303067,0.00465816,0.604902,0.936899,0.375488,0.805524,0.299548,0.483526,0.234041,0.747341,0.349893,0.794878,0.46961,0.43988,0.1799,0.00738603,0.313468,0.249766,0.36288,0.28856,0.323719,0.894795,0.895027,0.273053,0.399882,0.780874,0.440113,0.26756,0.0377068,0.874856,0.816857,0.437901,0.282393,0.137314,0.0498285,0.971327,0.188034,0.847263,0.418659,0.115309,0.992319,0.235108,0.10432,0.806377,0.342325,0.656255,0.699157,0.982245,0.925469,0.832085,0.0967333,0.21286,0.805587,0.437149,0.436598,0.620661,0.515367,0.982651,0.362069,0.0953955,0.392788,0.856082,0.309412,0.884066,0.954681,0.0756218,0.335103,0.6716,0.6304,0.919764,0.474694,0.57004,0.763826,0.342229,0.594127,0.613728,0.536822,0.103607,0.433679,0.124245,0.734428,0.500101,0.642634,0.0796829,0.199841,0.195453,0.635277,0.502622,0.650341,0.701731,0.975181,0.0695296,0.0253454,0.390097,0.913394,0.372246,0.833578,0.82549,0.353926,0.849989,0.301801,0.10821,0.936095,0.681304,0.952271,0.382151,0.394609,0.553982,0.864644,0.768757,0.703861,0.793254,0.178344,0.820831,0.855895,0.118995,0.947407,0.0924407,0.00408691,0.570467,0.957349,0.0876477,0.674385,0.551703,0.419804,0.472144,0.607236,0.2991,0.0639671,0.425561,0.166575,0.0778918,0.403095,0.226832,0.76273,0.746457,0.516015,0.252461,0.583854,0.737306,0.388984,0.350191,0.572324,0.0661278,0.703343,0.454764,0.817605,0.563057,0.0928522,0.686541,0.702436,0.711603,0.161343,0.330111,0.557345,0.723064,0.865646,0.750584,0.819182,0.270744,0.0404192,0.254708,0.920024,0.464277,0.980914,0.479797,0.278428,0.059549,0.277245,0.532641,0.544635,0.0643645,0.265985,0.483734,0.0756928,0.183847,0.164727,0.711584,0.123255,0.970695,0.44114,0.913034,0.725732,0.773688,0.908733,0.737995,0.994411,0.441161,0.00672436,0.588555,0.0472062,0.381236,0.231307,0.0539049,0.916221,0.582836,0.968312,0.630144,0.78351,0.399254,0.702008,0.814273,0.612161,0.785466,0.258784,0.47049,0.404282,0.777462,0.0609677,0.397259,0.975027,0.792079,0.609289,0.565668,0.0490917,0.599264,0.49486,0.065064,0.0328943,0.294267,0.75804,0.320632,0.649977,0.724778,0.801489,0.586708,0.958594,0.493384,0.625324,0.147788,0.864302,0.613538,0.221184,0.722691,0.391695,0.813511,0.828247,0.236381,0.0105494,0.319687,0.341342,0.44569,0.977136,0.0592124,0.724353,0.816808,0.195919,0.202782,0.606269,0.812846,0.660883,0.0857268,0.352507,0.234859,0.346736,0.00880188,0.346885,0.856262,0.643894,0.977714,0.15925,0.193274,0.456962,0.250236,0.504528,0.42138,0.741369,0.513524,0.258282,0.657267,0.086636,0.201782,0.296275,0.682083,0.913122,0.532456,0.524935,0.243644,0.962631,0.00181133,0.152642,0.134095,0.333833,0.610013,0.128514,0.31619,0.637094,0.64025,0.453468,0.521652,0.692377,0.355604,0.792411,0.448655,0.265147,0.721341,0.143063,0.608715,0.767599,0.379135,0.431409,0.611255,0.275405,0.48129,0.970121,0.916281,0.544679,0.910284,0.656516,0.837893,0.639129,0.884985,0.859492,0.128679,0.348429,0.760701,0.668754,0.480945,0.271506,0.576769,0.93832,0.307417,0.655736,0.560014,0.195141,0.0611176,0.253508,0.130839,0.951643,0.968228,0.645081,0.728536,0.11874,0.704518,0.777504,0.789269,0.247823,0.702287,0.97656,0.529562,0.979607,0.783301,0.0620329,0.579349,0.874335,0.761636,0.372709,0.427371,0.810292,0.911571,0.940354,0.5661,0.0967466,0.879613,0.904531,0.744972,0.132239,0.147862,0.159109,0.149271,0.529563,0.851699,0.657579,0.256068,0.88097,0.288729,0.267207,0.389044,0.456036,0.533365,0.499438,0.319797,0.555702,0.781712,0.872505,0.1075,0.453396,0.69969,0.342974,0.335339,0.665992,0.639015,0.509887,0.931031,0.74471,0.0735343,0.54329,0.197718,0.24192,0.154527,0.788912,0.317671,0.965865,0.698171,0.189643,0.122074,0.249633,0.341357,0.51218,0.17606,0.0917497,0.286918,0.554374,0.922786,0.190038,0.0574666,0.553914,0.63563,0.179523,0.727662,0.703514,0.15997,0.098865,0.674364,0.172578,0.983683,0.0160789,0.847635,0.944578,0.887053,0.167426,0.0642502,0.785664,0.417446,0.450404,0.16876,0.264381,0.370451,0.305926,0.889121,0.147348,0.381496,0.296295,0.692291,0.87238,0.652102,0.310842,0.168542,0.831747,0.0251464,0.96083,0.64711,0.0056932,0.899781,0.79488,0.421037,0.151106,0.260553,0.952391,0.207629,0.466926,0.186418,0.74733,0.717036,0.836643,0.519432,0.0458536,0.544342,0.992558,0.0563229,0.0502618,0.896557,0.463438,0.665361,0.629764,0.0577561,0.532156,0.323398,0.84878,0.979818,0.38893,0.340449,0.501503,0.225159,0.530483,0.179238,0.0998976,0.998961,0.322743,0.0488737,0.366687,0.101903,0.572109,0.404112,0.466329,0.332443,0.276334,0.0702376,0.765648,0.338325,0.959916,0.774075,0.901462,0.559905,0.322915,0.791025,0.023438,0.77438,0.816018,0.437164,0.560267,0.793527,0.0105392,0.696325,0.645219,0.342263,0.174533,0.933494,0.571127,0.214334,0.915964,0.471409,0.0209576,0.529864,0.556764,0.905627,0.396354,0.266384,0.843297,0.663998,0.311244,0.787145,0.381561,0.31197,0.47165,0.103801,0.989718,0.436311,0.475384,0.791106,0.0382457,0.976711,0.233518,0.296423,0.279618,0.357768,0.561513,0.771132,0.414913,0.778866,0.503343,0.610259,0.521206,0.838916,0.000388563,0.153236,0.67069,0.00301069,0.380153,0.75274,0.705086,0.678904,0.357812,0.801055,|0.73725,0.953827,0.986428,0.879814,0.754348,0.675244,0.203872,0.304385,0.489811,0.571137,0.555606,0.417105,0.869766,0.826164,0.782682,0.775384,0.929372,0.691061,0.852692,0.243528,0.315913,0.632049,0.19288,0.760766,0.42721,0.0462246,0.827983,0.133169,0.702976,0.0410602,0.860851,0.567204,0.68273,0.601895,0.810905,0.699218,0.549531,0.560014,0.536646,0.746194,0.0937439,0.892303,0.848063,0.367527,0.0634719,0.572885,0.27645,0.763934,0.935597,0.437313,0.571118,0.0401812,0.502124,0.454377,0.346538,0.187241,0.690972,0.294069,0.796103,0.0629642,0.183339,0.547656,0.106943,0.339487,0.568562,0.418044,0.210092,0.225467,0.0923077,0.604029,0.5719,0.960431,0.0577673,0.126719,0.968355,0.555313,0.855139,0.434719,0.938508,0.234086,0.0194836,0.226774,0.0610149,0.73687,0.256328,0.883126,0.320137,0.0599933,0.906973,0.744493,0.608154,0.176879,0.601132,0.253551,0.411885,0.91263,0.459106,0.03202,0.601029,0.153321,0.0404911,0.445535,0.188696,0.91401,0.336966,0.0609936,0.565162,0.0410131,0.688845,0.219393,0.162647,0.355721,0.858832,0.122595,0.915414,0.440167,0.429847,0.980682,0.34252,0.0328709,0.922787,0.089685,0.540317,0.610509,0.690572,0.763732,0.824652,0.311878,0.869765,0.631928,0.792713,0.932885,0.379009,0.161364,0.961888,0.965024,0.881829,0.920405,0.605416,0.636618,0.827836,0.145828,0.746425,0.462012,0.932377,0.863725,0.395822,0.592951,0.0806094,0.227388,0.733248,0.542814,0.315044,0.308775,0.933578,0.156037,0.24499,0.059137,0.0517595,0.945751,0.833252,0.24271,0.441734,0.835242,0.940113,0.482216,0.282454,0.558833,0.193753,0.380992,0.556255,0.575438,0.438678,0.348865,0.395316,0.380676,0.162743,0.0190939,0.398368,0.602453,0.856905,0.470869,0.653238,0.15911,0.87345,0.216194,0.818671,0.223958,0.976577,0.765201,0.0409639,0.995911,0.806914,0.121368,0.0217057,0.385591,0.0408405,0.698508,0.146123,0.518155,0.978662,0.0195017,0.581444,0.877563,0.329062,0.497561,0.270248,0.779109,0.447769,0.962204,0.505929,0.166905,0.767873,0.315661,0.935458,0.379805,0.349877,0.940519,0.547828,0.814045,0.382204,0.00861633,0.271645,0.194088,0.727399,0.645717,0.598376,0.215439,0.937687,0.51235,0.718372,0.37109,0.706879,0.878593,0.994121,0.92809,0.533394,0.45164,0.346004,0.536961,0.690227,0.925732,0.929769,0.999225,0.614752,0.639959,0.588293,0.727806,0.900027,0.981334,0.850124,0.326798,0.74515,0.797313,0.362717,0.255257,0.0647718,0.711399,0.892399,0.115272,0.82809,0.844668,0.0472612,0.883794,0.484468,0.440345,0.820528,0.235478,0.312967,0.277213,0.710939,0.927141,0.580729,0.245975,0.340644,0.656369,0.00472385,0.171958,0.382344,0.613524,0.637859,0.900511,0.686966,0.904561,0.431497,0.125941,0.806741,0.384023,0.884014,0.155545,0.071766,0.740198,0.724086,0.148501,0.900049,0.267721,0.0440251,0.780946,0.220483,0.241493,0.901057,0.746141,0.989429,0.236697,0.875158,0.186363,0.162437,0.543522,0.290889,0.617307,0.61561,0.915991,0.379382,0.22563,0.373125,0.174479,0.0809969,0.682377,0.637946,0.526513,0.811773,0.206361,0.239775,0.40682,0.26069,0.165754,0.399641,0.411652,0.802031,0.725034,0.601957,0.308034,0.684009,0.829427,0.542171,0.0184578,0.342488,0.807003,0.972292,0.888899,0.364791,0.227745,0.993695,0.665762,0.618318,0.678701,0.610273,0.792919,0.709619,0.870476,0.946499,0.318111,0.786641,0.806286,0.687014,0.854637,0.966995,0.0279742,0.723953,0.428128,0.988485,0.640136,0.559865,0.176225,0.644145,0.0735495,0.561586,0.320394,0.416753,0.760306,0.378682,0.00652415,0.0561728,0.211715,0.44541,0.522426,0.344945,0.442087,0.0427779,0.801763,0.728038,0.386758,0.752668,0.209709,0.364799,0.870693,0.513929,0.250771,0.508615,0.529621,0.473851,0.625475,0.163446,0.0662552,0.915969,0.984736,0.943248,0.72675,0.882689,0.60926,0.997862,0.862276,0.559298,0.472908,0.042173,0.563677,0.468035,0.503115,0.280961,0.768478,0.871239,0.601359,0.0381785,0.217248,0.253265,0.629302,0.728706,0.642745,0.686336,0.872021,0.0751717,0.277271,0.571568,0.897077,0.732552,0.481549,0.384016,0.54687,0.703884,0.813149,0.540652,0.850798,0.700625,0.621005,0.302091,0.547894,0.801481,0.12934,0.706497,0.653362,0.11377,0.52472,0.787369,0.650753,0.709053,0.0178319,0.896697,0.331587,0.519298,0.398336,0.677129,0.772412,0.520639,0.645025,0.527303,0.826653,0.630303,0.998112,0.0229995,0.551191,0.644939,0.0564566,0.39285,0.311962,0.51134,0.603971,0.888915,0.0533955,0.277772,0.452982,0.640498,0.976027,0.819371,0.894022,0.789301,0.812573,0.689618,0.565727,0.280978,0.547035,0.256712,0.420876,0.863185,0.92299,0.291465,0.902147,0.926798,0.157445,0.80049,0.961795,0.158471,0.67296,0.646596,0.237706,0.900514,0.957119,0.70365,0.353352,0.137893,0.931655,0.547066,0.161231,0.944016,0.292684,0.316063,0.323207,0.07122,0.446278,0.0721134,0.0844257,0.259993,0.950363,0.664297,0.336743,0.832584,0.634869,0.455525,0.660532,0.366951,0.0150052,0.796176,0.150544,0.211379,0.71553,0.0846439,0.0562877,0.148848,0.557371,0.542463,0.448093,0.63866,0.505819,0.54149,0.582149,0.128061,0.127374,0.803834,0.929662,0.923534,0.897058,0.754937,0.499646,0.602068,0.472019,0.971517,0.0838569,0.544197,0.671785,0.159847,0.315126,0.202994,0.785056,0.27111,0.762308,0.771923,0.529512,0.0214882,0.921242,0.478532,0.845059,0.45487,0.472415,0.598424,0.604383,0.53393,0.539494,0.536913,0.909834,0.40947,0.191312,0.765496,0.574779,0.793677,0.182527,0.441137,0.907662,0.638205,0.623598,0.194377,0.519244,0.110987,0.0472077,0.478938,0.339278,0.313837,0.388886,0.260479,0.034182,0.135338,0.946171,0.783779,0.421062,0.602518,0.559881,0.152845,0.22865,0.23861,0.953438,0.31536,0.373004,0.94187,0.641296,0.689847,0.364676,0.996681,0.0981149,0.194715,0.251235,0.0959725,0.271583,0.0114652,0.033762,0.0387318,0.331232,0.0241937,0.952724,0.344086,0.565503,0.656039,0.770436,0.861465,0.88962,0.537075,0.161835,0.9803,0.119167,0.976843,0.0665538,0.372379,0.974606,0.498837,0.469739,0.794013,0.489915,0.86183,0.92442,0.317886,0.250114,0.439623,0.360761,0.275908,0.643705,0.0980192,0.838446,0.786983,0.498674,0.697055,0.561772,0.691696,0.671401,0.0526304,0.791956,0.520458,0.851968,0.987149,0.303844,0.72895,0.673296,0.0354168,0.665727,0.190969,0.172301,0.905283,0.194574,0.468374,0.0884643,0.509406,0.977844,0.543952,0.172605,0.946198,0.83947,0.320835,0.206855,0.503472,0.68765,0.626478,0.850594,0.425037,0.0925093,0.925495,0.00128919,0.982588,0.206802,0.825894,0.733443,0.0863524,0.807812,0.866571,0.737665,0.680884,0.0352899,0.109545,0.156953,0.282759,0.402491,0.812241,0.927911,0.568085,0.646406,0.496417,0.461063,0.886243,0.241214,0.509938,0.712347,0.340504,0.816095,0.558899,0.175244,0.567375,0.0120026,0.93994,0.229656,0.408836,0.293741,0.682191,0.163878,0.418908,0.241573,0.720042,0.604896,0.251356,0.390531,0.560939,0.435305,0.66792,0.493542,0.352962,0.849087,0.829053,0.99649,0.458557,0.862839,0.724578,0.98101,0.557546,0.759373,0.889369,0.0908478,0.671544,0.419008,0.222044,0.119858,0.484942,0.446792,0.938953,0.93973,0.333972,0.884964,0.00910193,0.810393,0.615359,0.626748,0.0799564,0.94779,0.599611,0.127078,0.814065,0.760844,0.176615,0.633115,0.0998279,0.411073,0.511324,0.800795,0.179385,0.0738567,0.597094,0.138366,0.518385,0.836146,0.873711,0.0182691,0.547846,0.605059,0.335093,0.677807,0.0309043,0.0162703,0.601832,0.11674,0.153351,0.479311,0.190295,0.27275,0.769309,0.76112,0.894545,0.352451,0.735575,0.509983,0.198937,0.875434,0.869779,0.66927,0.775734,0.231445,0.267218,0.823864,0.533362,0.130393,0.317589,0.00110012,0.0256205,0.809834,0.650346,0.323386,0.926345,0.477526,0.265508,0.774778,0.539414,0.827075,0.410255,0.661974,0.939676,0.044435,0.600209,0.362772,0.860458,0.095741,0.758937,0.164593,0.135541,0.964713,0.159492,0.0414946,0.548128,0.102746,0.0509152,0.837698,0.252421,0.789802,0.591932,0.629569,0.816603,0.120065,0.0156444,0.500358,0.362886,0.181883,0.252074,0.741698,0.563203,0.5728,0.458863,0.148151,0.331091,0.110194,0.337619,0.617159,0.499733,0.446508,0.579605,0.380337,0.233284,0.676332,0.66213,0.19075,0.304976,0.457737,0.830715,0.839866,0.943966,0.704163,0.805129,0.615646,0.319871,0.0160179,0.308925,0.0818354,0.282279,0.242916,0.851315,0.596348,0.49291,0.564285,0.0388595,0.400472,0.480261,0.283755,0.802909,0.381417,0.960296,0.142943,0.127979,0.309144,0.532449,0.64758,0.597418,0.664477,0.758562,0.643462,0.269929,0.433282,0.482472,0.17784,0.637689,0.663289,0.660069,0.853224,0.425149,0.690418,0.484996,0.769664,0.695691,0.84549,0.189233,0.440517,0.694163,0.789414,0.0203195,0.119096,0.802602,0.566873,0.655653,0.11276,0.222524,0.213032,0.971734,0.498482,0.586394,0.229227,0.852432,0.3358,0.633919,0.956988,0.631028,0.786724,0.681848,0.36591,0.353433,0.0827245,0.168188,0.526854,0.462108,0.898977,0.245932,0.914798,0.847544,0.384088,0.769943,0.698344,0.0867166,0.385356,0.611636,0.344761,0.0808425,0.764801,0.45223,0.569181,0.445828,0.141403,0.636467,0.584877,0.677703,0.774495,0.840195,0.511632,0.776158,0.20529,0.290198,0.856743,0.297766,0.0401006,0.802985,0.654871,0.424211,0.343325,0.00388283,0.730369,0.477348,0.135134,0.363935,0.576932,0.908215,0.995754,0.583013,0.0909675,0.353329,0.288653,0.275863,0.969261,0.0190088,0.0936058,0.16413,0.78785,0.167605,0.107054,0.910517,0.7343,0.385411,0.967165,0.997774,0.416159,0.30231,0.697872,0.388037,0.505748,|0.508514,0.714667,0.88392,0.883498,0.952542,0.606106,0.626161,0.800473,0.292251,0.373027,0.807975,0.641331,0.984312,0.980388,0.646301,0.895121,0.679524,0.736253,0.522503,0.663149,0.345916,0.212331,0.588322,0.776932,0.346175,0.165445,0.868329,0.508307,0.251258,0.791405,0.58705,0.132437,0.730154,0.0320508,0.0767085,0.541458,0.823206,0.524308,0.680545,0.584662,0.202176,0.924015,0.766087,0.358047,0.625686,0.143401,0.462349,0.302406,0.847996,0.531708,0.656232,0.382067,0.158798,0.731232,0.368865,0.98208,0.239586,0.424666,0.604826,0.556915,0.492749,0.91144,0.468281,0.740282,0.413375,0.495168,0.361046,0.362585,0.776531,0.215335,0.900497,0.910046,0.6569,0.254311,0.0236609,0.717302,0.806683,0.480898,0.0525448,0.956865,0.0247874,0.532825,0.210229,0.865731,0.497225,0.895499,0.235553,0.793898,0.0659342,0.636714,0.257285,0.136604,0.136653,0.391772,0.851862,0.42447,0.834499,0.0626763,0.178958,0.0551329,0.0867267,0.90788,0.26428,0.268048,0.505496,0.830204,0.370604,0.382067,0.232831,0.683744,0.748792,0.939934,0.497864,0.418559,0.765532,0.423702,0.12738,0.469063,0.645529,0.103123,0.793591,0.875066,0.453965,0.269948,0.270392,0.218314,0.409645,0.419543,0.967103,0.0107675,0.794321,0.574091,0.826745,0.750415,0.0253318,0.936701,0.078648,0.224597,0.166903,0.513293,0.453555,0.00994354,0.0967346,0.270672,0.96929,0.561872,0.744552,0.289172,0.711034,0.810599,0.443915,0.420671,0.0419141,0.797828,0.90446,0.866097,0.0866988,0.0692861,0.648873,0.516684,0.865469,0.790322,0.51007,0.291598,0.563043,0.978313,0.392634,0.574913,0.314824,0.614139,0.134116,0.873785,0.640772,0.603187,0.677793,0.754368,0.574419,0.101095,0.23863,0.465995,0.216309,0.467344,0.877898,0.365075,0.415071,0.898629,0.837403,0.131583,0.168028,0.376642,0.0872897,0.743644,0.384603,0.852344,0.21998,0.158723,0.109829,0.950625,0.596747,0.203539,0.374617,0.36562,0.911423,0.940106,0.565003,0.378116,0.250277,0.0520992,0.256699,0.863804,0.426984,0.273891,0.0153873,0.733392,0.287584,0.073056,0.235352,0.774772,0.434557,0.606217,0.964564,0.875483,0.991975,0.179534,0.80292,0.335411,0.0349563,0.206472,0.100581,0.524768,0.982319,0.104753,0.390825,0.177503,0.434882,0.785643,0.30081,0.0836866,0.0208939,0.352139,0.155445,0.631941,0.316416,0.899936,0.58553,0.204099,0.586913,0.680104,0.254258,0.346691,0.978494,0.226663,0.531954,0.508146,0.849387,0.131275,0.851697,0.531711,0.161474,0.443622,0.569128,0.108808,0.884502,0.7909,0.351339,0.43483,0.0692276,0.120732,0.253907,0.817948,0.803575,0.341834,0.174435,0.995593,0.0189736,0.206524,0.419168,0.336316,0.98291,0.891711,0.0428842,0.974519,0.155642,0.0602115,0.410341,0.470548,0.716152,0.574948,0.148317,0.30702,0.731427,0.419109,0.402781,0.202211,0.990121,0.376642,0.969807,0.0549142,0.061859,0.151717,0.616776,0.0267965,0.372197,0.421019,0.690242,0.0709774,0.609361,0.846957,0.0265735,0.0876792,0.391497,0.162908,0.00115919,0.361455,0.549651,0.195756,0.320781,0.225042,0.48039,0.371142,0.933461,0.0359101,0.439399,0.871742,0.491066,0.336923,0.0200589,0.11318,0.33635,0.282907,0.657188,0.340699,0.861137,0.175437,0.984165,0.726044,0.0176072,0.880954,0.504523,0.946428,0.0127606,0.875958,0.201384,0.717541,0.910718,0.693448,0.525468,0.149892,0.930045,0.0156137,0.346267,0.0496535,0.650543,0.690907,0.617572,0.91239,0.775855,0.946844,0.515489,0.194004,0.695136,0.539848,0.474556,0.480895,0.0326542,0.327827,0.030752,0.825481,0.539792,0.0304143,0.339953,0.647236,0.471545,0.181866,0.786102,0.130362,0.210254,0.561597,0.495828,0.28586,0.616448,0.0846632,0.0159112,0.918741,0.612152,0.539964,0.0690755,0.259757,0.34028,0.0265649,0.899808,0.217518,0.197997,0.599998,0.728201,0.334773,0.0987551,0.914186,0.463766,0.812994,0.903133,0.748617,0.530426,0.0904225,0.0431857,0.47161,0.515624,0.165117,0.168116,0.386872,0.166067,0.963668,0.45763,0.846262,0.644992,0.545132,0.776496,0.455601,0.413175,0.346342,0.471203,0.0419424,0.427791,0.302975,0.0977589,0.720056,0.673929,0.133567,0.275852,0.564852,0.110157,0.0525795,0.107638,0.0881634,0.646653,0.999285,0.781504,0.714874,0.962017,0.917499,0.0165893,0.702267,0.209361,0.21757,0.205087,0.557389,0.693262,0.934844,0.121647,0.231744,0.440733,0.855899,0.294009,0.200267,0.476386,0.984368,0.33852,0.196801,0.188923,0.375226,0.352801,0.0169543,0.509333,0.617919,0.882151,0.581795,0.837834,0.88634,0.252005,0.359278,0.932753,0.608863,0.772148,0.749653,0.529666,0.490149,0.326683,0.697142,0.936059,0.349415,0.430294,0.0274178,0.873742,0.0522573,0.146993,0.255411,0.519589,0.775446,0.591549,0.179501,0.0853767,0.781739,0.444982,0.746066,0.468025,0.759982,0.683095,0.239555,0.928412,0.496777,0.0453722,0.156828,0.290407,0.792506,0.090128,0.171384,0.506596,0.974785,0.847718,0.0576504,0.870044,0.379576,0.333058,0.680296,0.0793263,0.196696,0.386976,0.41018,0.89125,0.349784,0.0733691,0.0618708,0.189956,0.000829577,0.248567,0.538757,0.219726,0.527011,0.193191,0.429703,0.794502,0.514107,0.675162,0.829469,0.361705,0.408573,0.613613,0.125391,0.589875,0.0962608,0.30298,0.572496,0.485975,0.0582865,0.628944,0.867841,0.293009,0.388714,0.9984,0.198662,0.102887,0.821378,0.692623,0.631133,0.783526,0.278395,0.798817,0.457483,0.773172,0.337449,0.497443,0.265918,0.853555,0.19773,0.830064,0.737012,0.122043,0.0596485,0.572401,0.0471979,0.0324401,0.409336,0.62527,0.706071,0.0444054,0.607846,0.219589,0.339179,0.108071,0.64165,0.48593,0.947238,0.143227,0.638722,0.709784,0.705732,0.77806,0.255725,0.0264372,0.337332,0.929583,0.947733,0.212509,0.88331,0.719446,0.183946,0.51348,0.229621,0.956951,0.275539,0.726808,0.768811,0.255914,0.0991924,0.891551,0.508691,0.213601,0.683645,0.131048,0.49257,0.689537,0.377392,0.786106,0.666094,0.861102,0.601891,0.757288,0.381061,0.796167,0.828863,0.75499,0.857683,0.200179,0.642134,0.493591,0.0336871,0.934673,0.060329,0.225225,0.146813,0.255661,0.579295,0.0936079,0.150871,0.622982,0.133214,0.224786,0.486345,0.129565,0.0778787,0.604555,0.41599,0.359997,0.196576,0.71118,0.384562,0.281645,0.390546,0.815973,0.928135,0.298992,0.955803,0.232565,0.275823,0.367074,0.345372,0.727394,0.328149,0.0115747,0.995813,0.806961,0.376061,0.0672927,0.815591,0.124183,0.121706,0.0039469,0.196115,0.327729,0.906702,0.928395,0.105155,0.570105,0.246204,0.00960737,0.0248923,0.740828,0.185254,0.979393,0.578872,0.172668,0.515576,0.352928,0.448948,0.741817,0.557135,0.690146,0.501498,0.709864,0.202591,0.121961,0.116417,0.328344,0.526978,0.575025,0.521957,0.307907,0.609735,0.266385,0.47181,0.0869155,0.0770791,0.186362,0.511577,0.940662,0.80484,0.736879,0.715707,0.139568,0.610819,0.202307,0.190724,0.638848,0.79345,0.634912,0.169111,0.676289,0.988871,0.75897,0.367546,0.886971,0.391522,0.710351,0.448386,0.440575,0.262292,0.463166,0.569695,0.154494,0.545352,0.248576,0.954281,0.422606,0.37454,0.719591,0.894065,0.268973,0.0490324,0.296684,0.120533,0.0718016,0.0429389,0.152653,0.519712,0.235026,0.773375,0.230561,0.65532,0.783967,0.590582,0.601861,0.00659865,0.697987,0.680281,0.616392,0.867809,0.487481,0.53796,0.702238,0.59577,0.646125,0.619072,0.000131309,0.0642968,0.973127,0.959103,0.425263,0.624174,0.889737,0.844194,0.687371,0.971956,0.436639,0.11859,0.921918,0.774142,0.25023,0.139828,0.895026,0.0688126,0.621746,0.193579,0.870555,0.225835,0.153723,0.416219,0.232612,0.96967,0.922948,0.0805572,0.570293,0.892558,0.568476,0.592436,0.452481,0.14114,0.306574,0.94236,0.892403,0.226958,0.543383,0.750645,0.916316,0.00675929,0.14474,0.414511,0.0716429,0.873597,0.76591,0.0262424,0.135527,0.277304,0.560156,0.643749,0.0305434,0.249087,0.717201,0.128521,0.861351,0.353689,0.456503,0.134647,0.0288237,0.564931,0.886735,0.917067,0.513947,0.612007,0.805014,0.46641,0.627805,0.509503,0.551924,0.98038,0.403371,0.987433,0.689569,0.973756,0.073015,0.510174,0.0470417,0.779456,0.531643,0.493969,0.305966,0.321751,0.0120403,0.771433,0.565984,0.989032,0.674891,0.156925,0.563821,0.592158,0.476223,0.0461363,0.176129,0.0183084,0.646392,0.0704597,0.0403466,0.495477,0.40284,0.691685,0.292108,0.757808,0.547054,0.89741,0.470059,0.511332,0.33624,0.735423,0.72237,0.649536,0.936885,0.992112,0.30475,0.425572,0.0347547,0.434648,0.119914,0.0084458,0.426218,0.167526,0.318488,0.229243,0.932701,0.513992,0.571081,0.605058,0.898298,0.613224,0.830701,0.780936,0.512091,0.347024,0.758693,0.900984,0.632198,0.828579,0.674997,0.583633,0.259262,0.772707,0.696943,0.789148,0.522385,0.180259,0.0325746,0.471255,0.425039,0.54797,0.681833,0.820942,0.504393,0.840175,0.110919,0.00355649,0.00105023,0.182585,0.732809,0.649799,0.616674,0.189603,0.476448,0.530227,0.728632,0.116076,0.656165,0.811768,0.0870361,0.57915,0.757713,0.610614,0.642881,0.892542,0.551227,0.0361801,0.998309,0.88187,0.473298,0.595259,0.981043,0.480473,0.692439,0.375764,0.00683439,0.789325,0.377479,0.158554,0.998904,0.982293,0.630143,0.38503,0.592232,0.984765,0.609934,0.820485,0.952118,0.166599,0.977363,0.723025,0.0184117,0.98136,0.197625,0.633408,0.00781143,0.356126,0.524009,0.420036,0.833283,0.217262,0.0387357,0.830661,0.124832,0.00574172,0.542212,0.358831,0.936804,0.132013,0.0945641,0.0543572,0.136366,0.332704,0.853155,0.256555,0.19306,0.522297,0.1134,0.36721,0.764502,0.0334794,0.69325,0.315713,0.841417,0.391146,0.847989,0.226822,0.0951455,0.879521,|0.150071,0.0228893,0.606699,0.314983,0.0292182,0.286682,0.101716,0.0916502,0.292128,0.0425553,0.534965,0.967699,0.474382,0.0467355,0.330348,0.123371,0.0129179,0.327534,0.446132,0.369796,0.268902,0.428365,0.313581,0.294904,0.848895,0.380646,0.198794,0.384377,0.771443,0.850017,0.339446,0.619545,0.820701,0.499675,0.73643,0.545439,0.350276,0.089641,0.0369514,0.231635,0.273345,0.336264,0.133439,0.931404,0.0873834,0.48637,0.637657,0.578204,0.704964,0.977776,0.944828,0.41744,0.296642,0.0252704,0.297829,0.261503,0.913867,0.623626,0.762471,0.388279,0.37991,0.787433,0.627248,0.83614,0.827083,0.715537,0.576605,0.709835,0.723695,0.0357068,0.291158,0.202928,0.509247,0.543579,0.32241,0.697287,0.854308,0.121183,0.982009,0.523635,0.0598052,0.0511943,0.29587,0.126206,0.231187,0.157178,0.740998,0.740622,0.122761,0.0738857,0.985116,0.303226,0.461867,0.38753,0.220155,0.0469215,0.0720031,0.911845,0.360827,0.337603,0.128351,0.267027,0.370551,0.950828,0.248247,0.951087,0.0723835,0.714717,0.554821,0.606752,0.995838,0.348813,0.916381,0.200483,0.646584,0.337442,0.0489818,0.373999,0.560405,0.159232,0.634296,0.540364,0.176585,0.86286,0.143531,0.666485,0.476008,0.162578,0.0254702,0.801314,0.196351,0.119461,0.412814,0.269987,0.666341,0.898138,0.741932,0.971165,0.246734,0.169718,0.974947,0.0872535,0.371629,0.49003,0.48291,0.421661,0.863686,0.0348315,0.968862,0.141608,0.418876,0.131774,0.0276356,0.493241,0.909853,0.266145,0.308675,0.117267,0.753164,0.118013,0.834004,0.09952,0.400807,0.134612,0.685172,0.242674,0.238069,0.0764053,0.807536,0.918106,0.369904,0.140823,0.728008,0.6822,0.729514,0.0937904,0.121054,0.20696,0.743797,0.811626,0.892231,0.584041,0.66671,0.891177,0.40234,0.0653549,0.529274,0.496812,0.365903,0.678899,0.586498,0.4067,0.248917,0.985054,0.198194,0.321522,0.134216,0.424584,0.576913,0.565981,0.131261,0.724762,0.873989,0.291972,0.368962,0.00135154,0.624963,0.954736,0.0728804,0.746703,0.48293,0.755457,0.572822,0.965717,0.092416,0.21878,0.855723,0.249348,0.453321,0.800645,0.755238,0.862783,0.58767,0.860073,0.753057,0.0322405,0.955049,0.0188847,0.637296,0.853446,0.0214884,0.164666,0.484972,0.594649,0.775494,0.040729,0.92075,0.712549,0.708385,0.634295,0.262989,0.683352,0.757709,0.817059,0.504132,0.848714,0.918312,0.676724,0.0554357,0.259722,0.398205,0.95626,0.313044,0.56383,0.737554,0.592608,0.599682,0.374289,0.544998,0.519376,0.352322,0.865744,0.670916,0.780725,0.88616,0.263366,0.755245,0.577542,0.444019,0.529601,0.72067,0.223458,0.826874,0.508325,0.866553,0.360913,0.126574,0.902084,0.288923,0.700136,0.10309,0.526312,0.413548,0.826535,0.252666,0.223171,0.614698,0.995833,0.206496,0.265939,0.756116,0.335266,0.849868,0.617282,0.975034,0.298167,0.47624,0.104945,0.281869,0.258915,0.743151,0.520772,0.382137,0.34856,0.252123,0.431276,0.416085,0.422948,0.311893,0.966632,0.748766,0.574747,0.855102,0.321168,0.903166,0.984276,0.161479,0.902677,0.415573,0.149973,0.336562,0.18063,0.268089,0.240485,0.814458,0.153426,0.306826,0.761643,0.523991,0.674941,0.431033,0.741553,0.828826,0.65815,0.754946,0.517267,0.798181,0.952764,0.0601355,0.769412,0.343923,0.391303,0.687734,0.303578,0.288371,0.196632,0.235305,0.151815,0.116957,0.37603,0.360583,0.447412,0.718098,0.136266,0.860751,0.286573,0.984495,0.847805,0.651046,0.115616,0.17183,0.491441,0.287486,0.757461,0.88865,0.227279,0.627003,0.867715,0.448156,0.393495,0.185835,0.532237,0.138809,0.653778,0.51859,0.544931,0.858597,0.500696,0.622139,0.763691,0.865484,0.488007,0.834236,0.908827,0.228942,0.599986,0.755674,0.725439,0.601901,0.78347,0.0714678,0.888249,0.791241,0.574042,0.612859,0.302717,0.426037,0.576539,0.612435,0.40666,0.225695,0.299537,0.630063,0.381774,0.508508,0.751303,0.716487,0.967412,0.460373,0.753982,0.70878,0.906047,0.403029,0.593697,0.679515,0.466502,0.269691,0.411603,0.00286496,0.707905,0.522385,0.923622,0.858725,0.385771,0.781438,0.856034,0.315318,0.664418,0.939083,0.270001,0.194721,0.0463508,0.0541347,0.122094,0.764667,0.730749,0.258829,0.138602,0.86443,0.812343,0.722534,0.277101,0.838924,0.140428,0.41226,0.75051,0.901865,0.708084,0.690579,0.807112,0.727415,0.789914,0.302372,0.110393,0.294782,0.0734977,0.580359,0.109929,0.180828,0.197966,0.053756,0.650887,0.969648,0.315996,0.471819,0.468413,0.603438,0.899267,0.517887,0.432446,0.596346,0.518102,0.961852,0.0231376,0.929486,0.317085,0.60569,0.931586,0.484368,0.598236,0.979261,0.584518,0.247739,0.283837,0.915826,0.861423,0.160303,0.0369802,0.324662,0.414922,0.0496681,0.740402,0.38711,0.280412,0.0606791,0.97812,0.755153,0.404492,0.604825,0.384352,0.593424,0.898512,0.616217,0.661038,0.494467,0.96989,0.609128,0.333504,0.942187,0.658345,0.772875,0.988169,0.130262,0.179751,0.857039,0.863907,0.898602,0.148561,0.728354,0.877055,0.0820747,0.769022,0.208687,0.218715,0.972793,0.260593,0.475976,0.533843,0.0645386,0.688528,0.447527,0.0761294,0.678218,0.763159,0.809054,0.163072,0.464776,0.779198,0.573151,0.837956,0.0538099,0.767285,0.325779,0.588328,0.121948,0.790851,0.612915,0.633633,0.236676,0.432768,0.27002,0.858658,0.333363,0.587327,0.859261,0.58176,0.27795,0.490903,0.291847,0.132914,0.835691,0.618854,0.00515151,0.444017,0.591926,0.329083,0.326591,0.104226,0.0675007,0.356515,0.708472,0.913821,0.0773076,0.684517,0.739084,0.9569,0.466924,0.918044,0.252243,0.923567,0.865987,0.160375,0.269418,0.71718,0.572253,0.733684,0.706878,0.804429,0.842521,0.20409,0.349058,0.630839,0.803376,0.759741,0.755093,0.823336,0.0618567,0.89574,0.13343,0.850321,0.210889,0.352778,0.575091,0.981913,0.569674,0.0324894,0.966497,0.951557,0.841489,0.462275,0.575348,0.491812,0.678995,0.236595,0.384044,0.885303,0.976564,0.618987,0.4974,0.829318,0.102661,0.873658,0.407093,0.745796,0.419913,0.429894,0.476402,0.22052,0.134041,0.294717,0.391672,0.845143,0.21848,0.570071,0.403914,0.00595224,0.772949,0.0342144,0.796745,0.804944,0.954295,0.0481945,0.874754,0.0258929,0.180972,0.168719,0.4419,0.101999,0.740153,0.0713032,0.396889,0.960217,0.635342,0.9933,0.700229,0.611245,0.49549,0.16468,0.362995,0.890921,0.0759831,0.182093,0.0546918,0.0345146,0.602752,0.389142,0.288989,0.279374,0.904253,0.267527,0.316075,0.246072,0.141028,0.83204,0.402066,0.0280237,0.668046,0.917218,0.189013,0.202338,0.790708,0.633326,0.727454,0.532149,0.249643,0.578017,0.0289486,0.587775,0.427984,0.513828,0.0649741,0.407243,0.346489,0.90301,0.370257,0.438833,0.777968,0.62187,0.452391,0.59303,0.00438422,0.755346,0.429282,0.625483,0.694076,0.424995,0.924024,0.718438,0.631565,0.970316,0.483829,0.293627,0.375831,0.391822,0.166736,0.125631,0.111275,0.879057,0.788278,0.682942,0.470884,0.152309,0.929067,0.520161,0.850947,0.772584,0.055217,0.524705,0.23653,0.347051,0.371478,0.389355,0.122684,0.348601,0.954984,0.515935,0.327839,0.598432,0.584418,0.464643,0.229931,0.890357,0.898116,0.630647,0.879065,0.676441,0.481256,0.084277,0.36145,0.755019,0.661944,0.634139,0.691728,0.269215,0.153023,0.459972,0.133495,0.759539,0.431369,0.783955,0.270533,0.310632,0.813445,0.119952,0.283638,0.599969,0.299918,0.3574,0.0201135,0.075725,0.609723,0.400663,0.635601,0.544323,0.07266,0.158906,0.571222,0.591833,0.370791,0.233126,0.848736,0.196903,0.150484,0.774929,0.246707,0.836377,0.912235,0.897348,0.301304,0.201038,0.523641,0.991166,0.778387,0.718169,0.454135,0.0506335,0.00747222,0.110353,0.274164,0.75343,0.360708,0.122317,0.987808,0.17539,0.222456,0.69912,0.159766,0.541425,0.743054,0.112827,0.626227,0.949011,0.801073,0.282568,0.606181,0.194508,0.92531,0.509052,0.561872,0.536331,0.476062,0.136856,0.719876,0.83284,0.672261,0.910432,0.552331,0.641778,0.0253124,0.876103,0.573343,0.365092,0.229658,0.181733,0.107625,0.917973,0.866447,0.587546,0.669921,0.05261,0.70453,0.729007,0.917655,0.0519341,0.410782,0.497208,0.0136709,0.66157,0.126734,0.640424,0.733756,0.642519,0.273048,0.422067,0.764522,0.793121,0.723475,0.572561,0.916287,0.989952,0.203415,0.044286,0.908652,0.100959,0.58411,0.391172,0.0438157,0.51084,0.759315,0.146122,0.540074,0.623624,0.611103,0.945817,0.372019,0.0422661,0.702097,0.731313,0.972366,0.07374,0.011251,0.0256699,0.339305,0.339709,0.72301,0.760942,0.281327,0.0663744,0.74492,0.16099,0.707003,0.71286,0.306801,0.244856,0.819158,0.504523,0.202764,0.509061,0.198706,0.325879,0.858558,0.0809327,0.62412,0.19788,0.951968,0.717921,0.367315,0.462282,0.127381,0.196141,0.945164,0.678955,0.77635,0.962115,0.614113,0.945569,0.649998,0.245917,0.713748,0.84222,0.319049,0.507464,0.623853,0.59493,0.968471,0.859604,0.926072,0.409749,0.330306,0.840309,0.0470119,0.016528,0.027806,0.321854,0.513521,0.401208,0.434838,0.657051,0.301264,0.861228,0.805967,0.322374,0.327974,0.805151,0.565295,0.225618,0.906591,0.670272,0.317279,0.71972,0.0226787,0.617109,0.181274,0.51257,0.562643,0.939021,0.0428683,0.180871,0.025808,0.571883,0.272694,0.680609,0.617639,0.265573,0.18667,0.0863014,0.133595,0.590236,0.63374,0.117276,0.946825,0.219763,0.165703,0.623164,0.228046,0.415977,0.261101,0.227959,0.0893798,0.0294665,0.495074,0.0820383,0.145981,0.261925,0.872112,0.454032,0.709304,0.0366442,0.76435,0.917332,0.112485,0.225413,0.962406,0.975492,0.297309,0.31331,0.556747,0.948766,0.115371,0.435188,|0.718318,0.932393,0.168007,0.33436,0.760738,0.740217,0.00434393,0.173697,0.0953243,0.931539,0.583749,0.373549,0.218856,0.833171,0.496067,0.722355,0.120406,0.0182136,0.026926,0.790474,0.854742,0.951434,0.160929,0.20249,0.023506,0.741555,0.774468,0.464584,0.591557,0.417852,0.232687,0.296721,0.384134,0.927316,0.626134,0.307364,0.648786,0.0854703,0.0293261,0.412733,0.397935,0.134392,0.677126,0.919119,0.652105,0.640357,0.581181,0.811413,0.0490409,0.458669,0.210173,0.655344,0.896562,0.7988,0.915396,0.82839,0.752429,0.157655,0.232405,0.145041,0.134383,0.120204,0.0191224,0.115861,0.730491,0.839583,0.10161,0.902037,0.961245,0.620063,0.823184,0.352385,0.334676,0.346862,0.878952,0.0723162,0.221265,0.879435,0.693378,0.882171,0.112658,0.477021,0.77061,0.94928,0.157168,0.649396,0.521192,0.949289,0.403732,0.59318,0.817655,0.153827,0.644469,0.273662,0.556873,0.449744,0.574574,0.0101067,0.913634,0.830517,0.450076,0.687838,0.320945,0.571144,0.782369,0.577719,0.971104,0.415873,0.309054,0.978486,0.87465,0.872195,0.0991154,0.847771,0.459458,0.25601,0.757834,0.949585,0.412564,0.133822,0.00249749,0.31607,0.732528,0.314564,0.457582,0.341676,0.874813,0.921246,0.772742,0.421268,0.00306314,0.451076,0.314286,0.596224,0.0436689,0.238493,0.926215,0.640337,0.944572,0.538065,0.280124,0.813935,0.0547,0.50336,0.14047,0.32428,0.208964,0.374705,0.125118,0.612115,0.899596,0.502212,0.547914,0.399599,0.406846,0.700396,0.853257,0.846246,0.176657,0.762008,0.817226,0.125849,0.161883,0.0614079,0.463921,0.333214,0.650467,0.521815,0.131349,0.330995,0.73262,0.29731,0.856451,0.233025,0.102141,0.578521,0.997277,0.643128,0.377783,0.139207,0.298579,0.97524,0.342911,0.582388,0.0502846,0.179292,0.141485,0.959467,0.635378,0.572548,0.350379,0.614185,0.740623,0.960105,0.0121311,0.816743,0.0598304,0.944496,0.940322,0.440426,0.320707,0.850866,0.993536,0.490168,0.946828,0.0353152,0.290056,0.389525,0.329197,0.995863,0.448204,0.142144,0.354373,0.000591993,0.0313083,0.0636369,0.287499,0.397282,0.373917,0.914284,0.884039,0.00920814,0.685971,0.345792,0.413429,0.674559,0.0169508,0.0600998,0.591042,0.676586,0.426495,0.502069,0.304656,0.363899,0.559725,0.312916,0.0840338,0.936802,0.777234,0.26847,0.154786,0.348399,0.0518923,0.832767,0.432988,0.914839,0.783106,0.223594,0.970371,0.0856581,0.425544,0.18241,0.0783272,0.70439,0.129156,0.162661,0.865874,0.520019,0.690553,0.639587,0.927608,0.908367,0.148114,0.608627,0.245283,0.775867,0.387614,0.268992,0.765665,0.417471,0.847701,0.264039,0.672914,0.758186,0.443196,0.186996,0.162535,0.916907,0.0497426,0.1628,0.199932,0.841836,0.616065,0.66327,0.170592,0.804627,0.441604,0.36436,0.0458246,0.549335,0.449576,0.0747954,0.748533,0.551949,0.482578,0.518025,0.117913,0.490804,0.12433,0.974478,0.440787,0.852164,0.933895,0.774548,0.953873,0.565102,0.855333,0.547057,0.153445,0.938694,0.709664,0.155956,0.574283,0.893406,0.499983,0.481578,0.846292,0.521591,0.399134,0.800918,0.728929,0.809916,0.397652,0.852356,0.371453,0.546978,0.386442,0.585122,0.369707,0.914919,0.131681,0.822259,0.759537,0.166971,0.496205,0.223027,0.85441,0.834831,0.476874,0.399723,0.628773,0.0668335,0.100709,0.927362,0.676135,0.402396,0.860908,0.433214,0.905063,0.984154,0.199987,0.640589,0.507182,0.723737,0.349903,0.549089,0.407466,0.608194,0.355119,0.268696,0.634747,0.384755,0.461574,0.960841,0.959339,0.874885,0.657869,0.969964,0.976707,0.239113,0.425477,0.164324,0.13177,0.806242,0.457833,0.288703,0.279216,0.0194492,0.500384,0.85303,0.763638,0.0703513,0.0787068,0.593184,0.124333,0.532484,0.665683,0.152774,0.209391,0.579793,0.333941,0.296775,0.0955232,0.395327,0.896559,0.812859,0.174068,0.0899956,0.760276,0.38456,0.120405,0.909706,0.620927,0.641339,0.252129,0.256493,0.252632,0.595404,0.329499,0.924371,0.950832,0.921142,0.515091,0.625252,0.209058,0.730152,0.945559,0.65779,0.201498,0.663974,0.565987,0.916764,0.460278,0.874778,0.164371,0.937603,0.273215,0.380942,0.164009,0.757542,0.680338,0.980399,0.472074,0.913017,0.0456539,0.515337,0.396092,0.671051,0.977781,0.958394,0.14157,0.543895,0.335834,0.0820911,0.547173,0.611432,0.655265,0.569303,0.772371,0.595329,0.140359,0.326091,0.624118,0.319978,0.346153,0.213961,0.910229,0.357402,0.88543,0.390665,0.532173,0.173915,0.724867,0.665374,0.879061,0.19302,0.672942,0.00146657,0.75309,0.406347,0.514501,0.368517,0.607285,0.200916,0.0253539,0.163879,0.74187,0.823555,0.035602,0.466226,0.792118,0.987254,0.940363,0.388227,0.995978,0.133587,0.0582798,0.0679122,0.552824,0.902131,0.31468,0.607283,0.0836591,0.501566,0.633598,0.753176,0.950561,0.43734,0.578591,0.174991,0.139541,0.486533,0.619533,0.632559,0.180541,0.548584,0.251805,0.426632,0.50637,0.247204,0.568949,0.543232,0.446896,0.262791,0.120841,0.429364,0.613009,0.610279,0.792943,0.592114,0.504563,0.728162,0.164861,0.441866,0.642351,0.26181,0.199114,0.236472,0.837535,0.87233,0.892554,0.546628,0.233532,0.767322,0.314764,0.0894437,0.371298,0.80298,0.426412,0.859713,0.712454,0.833194,0.752877,0.0406405,0.483155,0.171375,0.721418,0.430714,0.608685,0.27142,0.136703,0.242603,0.677969,0.655801,0.882704,0.504831,0.479874,0.219157,0.339133,0.250298,0.681017,0.828364,0.527557,0.218232,0.0596794,0.382703,0.650951,0.700259,0.668705,0.252647,0.655866,0.590306,0.858643,0.286568,0.56123,0.674676,0.28297,0.475156,0.149852,0.667884,0.849683,0.377163,0.219319,0.683482,0.157391,0.880722,0.46026,0.524594,0.565812,0.520086,0.851574,0.561235,0.65038,0.606049,0.465541,0.472918,0.0812812,0.12105,0.0672123,0.661862,0.521042,0.255542,0.0342255,0.816722,0.201524,0.600348,0.259116,0.0145783,0.53393,0.174454,0.0394282,0.573755,0.569462,0.424547,0.357714,0.890658,0.0923958,0.774704,0.279888,0.117822,0.97193,0.165067,0.744413,0.529424,0.690632,0.361737,0.604727,0.152122,0.60705,0.590243,0.388668,0.740708,0.409677,0.924736,0.79392,0.872243,0.246361,0.956797,0.490357,0.20717,0.0543074,0.643351,0.223863,0.12939,0.0686432,0.334735,0.514673,0.657265,0.365514,0.342932,0.0067417,0.0719775,0.891932,0.370505,0.463076,0.963763,0.581271,0.13945,0.0759896,0.0842335,0.746318,0.906995,0.31007,0.0894849,0.844636,0.468564,0.595258,0.970687,0.411937,0.268524,0.134955,0.868967,0.333982,0.628148,0.308657,0.887603,0.318322,0.363271,0.535601,0.722188,0.431014,0.640145,0.589738,0.291599,0.812283,0.0233775,0.665827,0.352191,0.842091,0.152308,0.0266981,0.677906,0.645178,0.168448,0.217752,0.17888,0.602985,0.885223,0.438119,0.313335,0.654155,0.449513,0.903226,0.327,0.0291233,0.278777,0.378115,0.267929,0.0721209,0.979084,0.922533,0.444748,0.309345,0.0624535,0.452058,0.0719211,0.914276,0.871923,0.849266,0.632177,0.622984,0.886569,0.705635,0.543696,0.188309,0.776363,0.719594,0.737379,0.647551,0.932296,0.73362,0.395973,0.596142,0.869293,0.151775,0.844789,0.329794,0.610468,0.0960786,0.203748,0.322506,0.781972,0.473463,0.33744,0.292766,0.137613,0.654548,0.734715,0.514129,0.548567,0.705293,0.889374,0.568204,0.662835,0.932378,0.492199,0.421898,0.724402,0.247987,0.0840659,0.605221,0.131935,0.822271,0.225914,0.411696,0.297465,0.678049,0.696404,0.16952,0.473701,0.564616,0.059193,0.385914,0.175281,0.100536,0.0387822,0.0858261,0.435916,0.725564,0.963255,0.885073,0.533234,0.16465,0.612717,0.00461614,0.584853,0.0429227,0.314159,0.694801,0.811269,0.869924,0.370995,0.100461,0.525552,0.607102,0.211309,0.780342,0.678573,0.925613,0.441823,0.0128096,0.307426,0.912479,0.307547,0.663427,0.388486,0.0596448,0.70932,0.0634792,0.750521,0.102436,0.05246,0.043099,0.465555,0.930502,0.685567,0.666847,0.846487,0.763712,0.641089,0.871759,0.444335,0.459541,0.714022,0.428304,0.190578,0.535697,0.278946,0.734563,0.764402,0.843822,0.875625,0.949804,0.210672,0.00668007,0.644646,0.556481,0.421133,0.579167,0.789297,0.0649128,0.550925,0.772296,0.516052,0.41931,0.719244,0.540708,0.534778,0.320028,0.783701,0.940305,0.292278,0.206071,0.709038,0.483456,0.0158575,0.44992,0.677451,0.804561,0.793198,0.366955,0.0219847,0.139028,0.682166,0.775375,0.296265,0.922928,0.414126,0.766986,0.82936,0.00469643,0.0353609,0.135469,0.436903,0.672641,0.163021,0.284337,0.403127,0.273046,0.387595,0.831892,0.953187,0.145174,0.821594,0.900837,0.650257,0.0701474,0.338967,0.0697232,0.0543091,0.743243,0.0760345,0.0660667,0.132907,0.549594,0.616884,0.671602,0.903497,0.00204641,0.575302,0.612031,0.659145,0.0646343,0.462087,0.904526,0.594451,0.360326,0.817422,0.135796,0.75224,0.39639,0.424165,0.627823,0.64896,0.344796,0.745433,0.331343,0.884823,0.26052,0.503162,0.553962,0.580881,0.177834,0.512851,0.140231,0.390548,0.556406,0.460329,0.942696,0.0141183,0.750168,0.802279,0.0118166,0.0749335,0.769574,0.401606,0.0487438,0.616919,0.432238,0.0357167,0.486804,0.185207,0.754446,0.0954161,0.153403,0.144651,0.751522,0.311435,0.968895,0.586388,0.954448,0.247566,0.279257,0.348749,0.11745,0.341695,0.895015,0.00678009,0.125506,0.368851,0.240856,0.683572,0.98045,0.0262692,0.0879211,0.497557,0.631849,0.807901,0.667715,0.203305,0.431765,0.218058,0.951178,0.590238,0.772571,0.337624,0.0275832,0.923107,0.642,0.404162,0.54327,0.0482086,0.355108,0.00793451,0.383021,0.379924,0.271338,0.746666,0.585453,0.343889,0.0655615,0.236479,0.164542,0.650886,0.449473,0.600456,0.822285,0.545859,0.931125,0.507563,|0.0604858,0.304504,0.699993,0.967299,0.448429,0.0199414,0.127477,0.51706,0.643399,0.585548,0.753458,0.506334,0.351443,0.024317,0.808472,0.0385621,0.797792,0.228747,0.447131,0.277203,0.603868,0.518016,0.704729,0.923315,0.431228,0.486586,0.176322,0.745456,0.99235,0.0303753,0.12215,0.356806,0.47129,0.825497,0.474737,0.838356,0.757757,0.849102,0.538261,0.501729,0.478202,0.606106,0.223423,0.681991,0.640777,0.880305,0.268485,0.478645,0.975387,0.732025,0.226632,0.509117,0.353164,0.909243,0.531961,0.526611,0.104831,0.03161,0.0407049,0.268729,0.379107,0.553092,0.537552,0.0945649,0.895542,0.750457,0.560312,0.240361,0.102271,0.996284,0.589779,0.502503,0.716376,0.666293,0.627858,0.714999,0.365158,0.194356,0.55366,0.711952,0.71233,0.191086,0.162205,0.256868,0.494455,0.872942,0.311163,0.258068,0.762991,0.719506,0.179043,0.71687,0.457368,0.850584,0.170272,0.209197,0.181893,0.806063,0.296401,0.488222,0.466521,0.970203,0.584162,0.664075,0.180479,0.590767,0.616177,0.159107,0.266214,0.50145,0.398684,0.27867,0.878888,0.5811,0.834637,0.680753,0.31368,0.607766,0.612917,0.68711,0.402203,0.74411,0.431524,0.788173,0.233213,0.630713,0.0246814,0.805924,0.217206,0.6995,0.152339,0.575584,0.0781426,0.368041,0.756968,0.802488,0.774879,0.272572,0.572886,0.322794,0.504639,0.746793,0.587826,0.749987,0.664779,0.860501,0.53059,0.294063,0.336147,0.289068,0.0287232,0.421786,0.0935132,0.813595,0.48885,0.787697,0.437484,0.598255,0.574416,0.156825,0.695724,0.215021,0.483663,0.110196,0.433009,0.621513,0.527589,0.271722,0.559047,0.468293,0.341973,0.510632,0.358014,0.54491,0.245189,0.516154,0.740157,0.459222,0.706138,0.863446,0.980153,0.342063,0.680618,0.718522,0.240177,0.744607,0.57414,0.736755,0.456723,0.481482,0.710759,0.309183,0.746945,0.989359,0.316333,0.0513087,0.714746,0.120037,0.131905,0.932428,0.247265,0.588829,0.416835,0.982457,0.192815,0.26768,0.597438,0.739936,0.640756,0.999267,0.412298,0.629146,0.118613,0.415325,0.230045,0.634749,0.522558,0.124132,0.16148,0.107373,0.808615,0.75998,0.124008,0.591195,0.102779,0.0527149,0.959723,0.769886,0.938319,0.875076,0.951433,0.14396,0.873833,0.403769,0.596275,0.812398,0.387452,0.659342,0.229175,0.677429,0.120606,0.691442,0.709357,0.768857,0.612584,0.177489,0.436741,0.685944,0.781272,0.264736,0.861345,0.677148,0.866048,0.372883,0.199527,0.41831,0.377901,0.627849,0.341756,0.361221,0.319977,0.769884,0.684217,0.372513,0.513019,0.664059,0.445531,0.486981,0.440633,0.27516,0.630856,0.453468,0.602654,0.261527,0.684316,0.792082,0.537845,0.38624,0.92434,0.492636,0.975702,0.74238,0.395736,0.521812,0.596659,0.117423,0.849019,0.977532,0.310075,0.0219076,0.512563,0.902513,0.00688905,0.573049,0.909939,0.625129,0.936589,0.48391,0.416742,0.902661,0.613434,0.0605013,0.921003,0.41433,0.748702,0.0107278,0.540125,0.486624,0.312688,0.0197126,0.324431,0.121218,0.694897,0.0993934,0.102749,0.00802249,0.237179,0.0417213,0.658482,0.413512,0.716009,0.427823,0.702196,0.786651,0.381848,0.304209,0.0189469,0.30835,0.757598,0.777873,0.899296,0.781782,0.211689,0.402526,0.167637,0.434319,0.155386,0.25512,0.339439,0.985132,0.831977,0.417766,0.169246,0.38672,0.992903,0.772198,0.17259,0.762445,0.921144,0.581911,0.92622,0.534808,0.740493,0.80506,0.217029,0.157657,0.310714,0.833801,0.164039,0.83249,0.806113,0.435892,0.722327,0.684328,0.0583919,0.27164,0.692358,0.649176,0.486759,0.59071,0.00294173,0.244468,0.215997,0.738608,0.242128,0.043444,0.354113,0.933068,0.87007,0.437981,0.632206,0.583864,0.535445,0.0284309,0.835192,0.599092,0.578123,0.201323,0.629714,0.797198,0.0445849,0.599509,0.931739,0.396774,0.469898,0.769473,0.318267,0.537807,0.430366,0.474487,0.625552,0.715565,0.106472,0.934745,0.786571,0.118672,0.964258,0.261159,0.428513,0.507817,0.509221,0.561927,0.93677,0.432128,0.548915,0.564642,0.702713,0.227783,0.312655,0.274204,0.972742,0.925731,0.204047,0.766321,0.584902,0.672621,0.278182,0.0557646,0.547033,0.784189,0.758013,0.0579427,0.14718,0.384438,0.809161,0.445794,0.494057,0.427445,0.484116,0.324007,0.629589,0.234491,0.701484,0.316559,0.485164,0.449433,0.0831309,0.903842,0.478058,0.832321,0.286842,0.260168,0.439773,0.319316,0.0669059,0.131961,0.427941,0.757579,0.0321155,0.283283,0.645759,0.166616,0.451207,0.858923,0.336595,0.960951,0.176229,0.374022,0.340933,0.755272,0.780506,0.859674,0.707196,0.129638,0.281722,0.352057,0.411956,0.855375,0.472688,0.815427,0.712963,0.133921,0.971769,0.2782,0.365872,0.453567,0.910053,0.532973,0.422394,0.751753,0.238955,0.81718,0.127111,0.535018,0.185293,0.545761,0.132842,0.262605,0.958342,0.20044,0.689984,0.00428057,0.226744,0.534544,0.932935,0.208805,0.942124,0.806609,0.155391,0.718526,0.0296715,0.511661,0.785602,0.577287,0.0805307,0.576795,0.90254,0.681493,0.354779,0.834412,0.607246,0.173072,0.302762,0.0339655,0.695581,0.551283,0.351968,0.186058,0.34183,0.924015,0.109825,0.825539,0.601254,0.852918,0.283599,0.736783,0.626408,0.919455,0.93954,0.604314,0.839873,0.955672,0.798456,0.58169,0.999707,0.372725,0.687395,0.083415,0.109395,0.0733031,0.623156,0.144243,0.338909,0.791774,0.63658,0.459987,0.726658,0.382463,0.908146,0.929723,0.606906,0.913127,0.453669,0.804346,0.0322249,0.100325,0.843234,0.349284,0.548261,0.154382,0.760311,0.250089,0.00235796,0.293906,0.585657,0.67117,0.136443,0.452409,0.383161,0.820547,0.729757,0.571288,0.135003,0.0820434,0.723446,0.369812,0.247417,0.669266,0.0312687,0.339975,0.196038,0.0723287,0.279176,0.899399,0.648763,0.813908,0.697917,0.0951628,0.423035,0.669551,0.194255,0.857714,0.68462,0.708002,0.929108,0.47281,0.510516,0.914411,0.151324,0.983599,0.863696,0.225088,0.89491,0.0938571,0.249219,0.444951,0.946709,0.436176,0.577776,0.222224,0.567193,0.151095,0.291404,0.967073,0.820688,0.567198,0.792517,0.333798,0.0093872,0.11555,0.230503,0.569085,0.0909134,0.507503,0.259215,0.18772,0.931804,0.750134,0.745878,0.156438,0.501906,0.278034,0.602146,0.651814,0.551358,0.515769,0.921174,0.300545,0.943981,0.61765,0.833238,0.398329,0.536876,0.589139,0.22029,0.211459,0.0190272,0.417512,0.420964,0.117482,0.52683,0.553892,0.845307,0.953607,0.841138,0.441002,0.302006,0.812918,0.821385,0.475182,0.158879,0.818037,0.101531,0.496859,0.383993,0.487766,0.13176,0.616816,0.750413,0.823296,0.398873,0.0753502,0.84689,0.441794,0.377957,0.177851,0.879194,0.00453478,0.140749,0.967677,0.745062,0.622761,0.781975,0.351636,0.387326,0.301374,0.558672,0.963639,0.114383,0.98887,0.283775,0.201134,0.0457663,0.307985,0.539551,0.338973,0.64512,0.0789689,0.464544,0.273769,0.419861,0.597362,0.582705,0.262116,0.458063,0.996236,0.264943,0.418941,0.861476,0.698379,0.571117,0.638396,0.299258,0.65684,0.0303883,0.519191,0.994218,0.272817,0.862655,0.74319,0.966361,0.215151,0.99998,0.352543,0.236733,0.989492,0.168081,0.907602,0.856843,0.787289,0.888617,0.800296,0.434502,0.321145,0.628334,0.70436,0.3421,0.814923,0.345266,0.240394,0.83997,0.316862,0.0875371,0.370991,0.0341869,0.0510544,0.236495,0.162069,0.61165,0.402828,0.267752,0.878828,0.660223,0.680899,0.834745,0.801158,0.305388,0.905722,0.451765,0.801254,0.288725,0.346544,0.636061,0.352037,0.173644,0.603797,0.17161,0.464867,0.186124,0.466017,0.406406,0.444371,0.695487,0.797425,0.806932,0.859307,0.97299,0.191249,0.74398,0.566551,0.97279,0.763686,0.523021,0.0783955,0.861792,0.127334,0.895139,0.926511,0.338669,0.0710024,0.465312,0.205433,0.292998,0.662082,0.554182,0.437252,0.520645,0.552507,0.198725,0.0284087,0.453825,0.246404,0.622159,0.944266,0.79285,0.922651,0.687784,0.674909,0.977302,0.741892,0.805598,0.135762,0.965553,0.965387,0.760654,0.965019,0.507807,0.92426,0.0968177,0.943158,0.539228,0.234844,0.39348,0.794678,0.359933,0.175762,0.614523,0.0246432,0.800293,0.30653,0.743078,0.97795,0.972255,0.648843,0.136942,0.69821,0.210887,0.874223,0.675796,0.898207,0.478952,0.843035,0.738555,0.356382,0.199166,0.961512,0.638887,0.46539,0.0966133,0.468803,0.101657,0.249836,0.77286,0.0879021,0.878044,0.272202,0.195063,0.967617,0.645803,0.649009,0.539485,0.662725,0.929866,0.810033,0.460934,0.412561,0.845579,0.455761,0.0773154,0.449048,0.600632,0.175142,0.0269439,0.612472,0.307401,0.318859,0.14219,0.018025,0.210824,0.709732,0.43964,0.275825,0.856784,0.7019,0.819286,0.559763,0.279081,0.762301,0.367449,0.645764,0.0466966,0.192163,0.0383113,0.96853,0.460472,0.135916,0.557728,0.99221,0.780614,0.8702,0.332773,0.901333,0.8714,0.0758768,0.509905,0.715193,0.0173802,0.759295,0.5813,0.310315,0.0397974,0.0659789,0.899797,0.407641,0.988364,0.777194,0.407165,0.385725,0.39964,0.280945,0.889345,0.0276148,0.875831,0.832892,0.156057,0.398062,0.994434,0.330572,0.732507,0.773763,0.304107,0.483363,0.547857,0.160023,0.908735,0.217506,0.586748,0.67527,0.760625,0.569923,0.158283,0.870918,0.0960199,0.194028,0.829257,0.665553,0.362825,0.562841,0.632825,0.732951,0.055433,0.853083,0.894571,0.118716,0.400046,0.404755,0.160789,0.284783,0.730056,0.39635,0.645162,0.444982,0.842643,0.359044,0.377568,0.929456,0.43792,0.68449,0.294181,0.514984,0.883994,0.202393,0.534706,0.251483,0.79655,0.664294,0.720237,0.713235,0.906685,0.766109,0.504433,0.255367,0.525225,0.798086,0.748168,0.747138,0.807938,0.969115,0.877675,0.508337,|0.653367,0.184354,0.0503851,0.489052,0.535748,0.682578,0.928037,0.755225,0.185284,0.350106,0.0467978,0.138109,0.527962,0.883433,0.604674,0.679108,0.401457,0.34569,0.949187,0.454527,0.788926,0.339349,0.551261,0.0305422,0.373017,0.26336,0.414331,0.946212,0.847385,0.794717,0.0329987,0.0285462,0.0623921,0.518692,0.488857,0.252936,0.909419,0.940282,0.472412,0.298869,0.760327,0.241031,0.507134,0.951925,0.49531,0.325444,0.215573,0.986821,0.322691,0.985987,0.921927,0.629102,0.227825,0.365773,0.963734,0.300095,0.00953525,0.0907208,0.557099,0.565851,0.562595,0.625734,0.0214899,0.0817909,0.816628,0.664603,0.256152,0.491515,0.972888,0.705734,0.0358182,0.0665653,0.0795585,0.193299,0.424131,0.110819,0.704401,0.172114,0.769178,0.0135089,0.214344,0.825411,0.97185,0.423113,0.958768,0.816452,0.622552,0.751564,0.817571,0.615685,0.635531,0.287359,0.330332,0.5183,0.100809,0.234991,0.806486,0.338031,0.169173,0.150909,0.491742,0.164936,0.936533,0.864561,0.818752,0.484055,0.900369,0.821518,0.102391,0.811501,0.656846,0.785852,0.503352,0.322637,0.732615,0.711994,0.478238,0.0358154,0.479186,0.843285,0.140427,0.678839,0.524939,0.37403,0.729961,0.16363,0.151629,0.84649,0.818598,0.114586,0.176247,0.526651,0.835311,0.332321,0.632131,0.235507,0.257895,0.923323,0.477134,0.0521515,0.240075,0.723539,0.875493,0.0278537,0.257245,0.952627,0.981484,0.55997,0.0984674,0.511196,0.158527,0.2585,0.396308,0.0251185,0.722167,0.26572,0.658029,0.717131,0.557395,0.280491,0.55977,0.617007,0.292714,0.0134914,0.172032,0.0881631,0.74934,0.934825,0.390334,0.0750899,0.744157,0.288227,0.559029,0.486649,0.115809,0.571164,0.330231,0.570134,0.879241,0.945718,0.932831,0.198124,0.345105,0.955587,0.0186157,0.948894,0.233632,0.619584,0.699599,0.619281,0.789415,0.0679314,0.92491,0.20662,0.495452,0.76761,0.978702,0.287775,0.540543,0.166628,0.574295,0.260387,0.142908,0.210327,0.462987,0.956709,0.0592093,0.155066,0.501441,0.495235,0.465189,0.0558261,0.871627,0.618783,0.505083,0.00220001,0.529849,0.387387,0.60033,0.945581,0.769568,0.78251,0.815766,0.477617,0.467704,0.189864,0.837027,0.928357,0.734563,0.397032,0.859362,0.679599,0.272646,0.577277,0.725772,0.124922,0.41054,0.622352,0.821638,0.343928,0.767949,0.0764778,0.131808,0.623703,0.188132,0.110282,0.601994,0.373672,0.726216,0.306209,0.00747377,0.183036,0.28297,0.651576,0.193491,0.343664,0.880628,0.986856,0.383759,0.88426,0.987086,0.167152,0.00118369,0.565493,0.442684,0.578593,0.040263,0.320308,0.217424,0.316674,0.289094,0.748148,0.671277,0.81944,0.286378,0.322422,0.795831,0.438985,0.588007,0.269801,0.358022,0.25199,0.995393,0.7675,0.478786,0.90685,0.789731,0.489468,0.250292,0.702388,0.919111,0.00560385,0.701441,0.561796,0.662731,0.312455,0.230402,0.537715,0.144658,0.222619,0.889102,0.0216396,0.5501,0.52994,0.98262,0.0592489,0.86761,0.0741268,0.158175,0.824417,0.130265,0.0444192,0.948831,0.0945675,0.0461984,0.980394,0.732577,0.502704,0.830427,0.401814,0.80988,0.514993,0.190375,0.906768,0.631849,0.706196,0.0289267,0.668298,0.498421,0.321214,0.466123,0.819845,0.658026,0.721955,0.883432,0.325328,0.187244,0.582064,0.04158,0.125842,0.857491,0.494293,0.865408,0.443293,0.57612,0.542331,0.508328,0.110369,0.211531,0.539135,0.402997,0.0798382,0.0173649,0.947802,0.197221,0.0896675,0.605571,0.539286,0.509176,0.327473,0.833541,0.129089,0.0213454,0.060914,0.982622,0.36061,0.455442,0.360446,0.417168,0.215295,0.146118,0.741197,0.870277,0.013831,0.665529,0.148755,0.255401,0.526518,0.0837643,0.751581,0.0508187,0.400084,0.402268,0.82357,0.238013,0.717169,0.497357,0.463404,0.841154,0.687464,0.253282,0.76982,0.0399119,0.449154,0.795628,0.00326717,0.685114,0.429346,0.133262,0.416309,0.777787,0.488145,0.609258,0.597239,0.515934,0.384241,0.40455,0.942191,0.448249,0.64217,0.316444,0.879863,0.354945,0.554542,0.542759,0.15937,0.501725,0.219874,0.0581661,0.495246,0.861277,0.164879,0.0892382,0.00452614,0.156547,0.691674,0.9466,0.638781,0.399627,0.240681,0.598253,0.882957,0.229303,0.629218,0.630829,0.904087,0.797961,0.613347,0.511494,0.19529,0.804061,0.823004,0.714334,0.314412,0.518765,0.280749,0.869491,0.316964,0.180713,0.5622,0.764299,0.817518,0.865535,0.611496,0.586658,0.533469,0.736772,0.476998,0.427716,0.765797,0.764154,0.97845,0.261334,0.889584,0.948075,0.20908,0.871678,0.275028,0.234222,0.439209,0.504102,0.171862,0.278339,0.43745,0.75376,0.898427,0.247076,0.245323,0.0698182,0.82151,0.535021,0.875924,0.183224,0.301622,0.755467,0.417125,0.153864,0.0602098,0.500199,0.103798,0.139032,0.539379,0.584728,0.805343,0.915217,0.208221,0.967701,0.0980846,0.674584,0.265297,0.644121,0.392834,0.237017,0.172846,0.818269,0.0610788,0.894014,0.795431,0.716345,0.690683,0.137801,0.537126,0.9638,0.14606,0.187061,0.773355,0.0073483,0.567996,0.694506,0.243534,0.574699,0.700605,0.204738,0.636595,0.7942,0.703692,0.910841,0.772985,0.109254,0.275424,0.289702,0.669983,0.0436205,0.541653,0.734365,0.745081,0.371929,0.111392,0.646453,0.26585,0.305803,0.201387,0.144359,0.0458705,0.489051,0.553422,0.746725,0.249589,0.275683,0.237495,0.220639,0.937993,0.921756,0.219886,0.378556,0.0351742,0.897012,0.480115,0.0765265,0.282558,0.331162,0.884594,0.973551,0.83506,0.744658,0.443798,0.913795,0.603558,0.331987,0.305694,0.710149,0.844108,0.265263,0.879133,0.0759842,0.332569,0.848203,0.988749,0.823851,0.654806,0.852123,0.67936,0.824273,0.159414,0.155943,0.092084,0.703835,0.418103,0.893133,0.35468,0.59191,0.551721,0.366719,0.633059,0.758701,0.732264,0.522694,0.170241,0.372372,0.334361,0.693552,0.548722,0.967686,0.140717,0.118004,0.225905,0.560487,0.166954,0.995059,0.0813136,0.461679,0.663396,0.569796,0.849811,0.472911,0.877379,0.703048,0.853015,0.905532,0.726111,0.248557,0.786533,0.899461,0.969245,0.116824,0.793689,0.91894,0.558455,0.162591,0.773724,0.0603303,0.0985596,0.427801,0.618763,0.5332,0.658519,0.870955,0.127258,0.679105,0.305938,0.504921,0.468475,0.0828748,0.708931,0.179606,0.226917,0.953484,0.159795,0.241749,0.158492,0.585939,0.978031,0.225528,0.462781,0.503471,0.139844,0.181417,0.764141,0.974916,0.51218,0.956491,0.6137,0.426555,0.452912,0.335698,0.311912,0.667632,0.699967,0.537448,0.566087,0.643705,0.420627,0.224939,0.240796,0.277475,0.567928,0.665527,0.154817,0.195479,0.20765,0.393903,0.15868,0.870252,0.539457,0.533717,0.414187,0.79239,0.0204528,0.166035,0.943589,0.254968,0.720782,0.897911,0.583263,0.902622,0.94146,0.992486,0.890904,0.931817,0.366388,0.909403,0.533187,0.574641,0.544065,0.739769,0.264553,0.0679407,0.687613,0.0862776,0.716487,0.158408,0.958092,0.512205,0.837399,0.7972,0.656024,0.921489,0.765975,0.588455,0.868633,0.323668,0.920825,0.488062,0.368983,0.614681,0.497121,0.428512,0.154809,0.860795,0.6488,0.0867597,0.456403,0.448849,0.793305,0.367001,0.151936,0.636887,0.617392,0.215984,0.104554,0.0798852,0.0681592,0.24179,0.303728,0.00231999,0.140579,0.5402,0.958281,0.622947,0.0327146,0.92912,0.0375245,0.829354,0.344135,0.138771,0.458726,0.336625,0.0589778,0.780959,0.550699,0.64986,0.559588,0.334384,0.883502,0.472686,0.670643,0.668238,0.196795,0.390654,0.334099,0.476102,0.215772,0.681182,0.936742,0.805735,0.494522,0.413395,0.225989,0.902224,0.987608,0.593306,0.545127,0.958577,0.203032,0.751899,0.454584,0.0706778,0.90789,0.156829,0.258671,0.64148,0.347269,0.240723,0.110078,0.00505161,0.463436,0.197505,0.511243,0.199267,0.346894,0.548765,0.916144,0.111499,0.475175,0.859989,0.44778,0.0179667,0.725057,0.565849,0.810766,0.462138,0.127068,0.386197,0.572371,0.0978988,0.302634,0.159173,0.872906,0.0723727,0.786095,0.547291,0.207462,0.328964,0.575965,0.623116,0.162012,0.617784,0.771105,0.766467,0.340264,0.133175,0.218463,0.245171,0.781504,0.865198,0.600763,0.0508281,0.488689,0.162988,0.192777,0.187445,0.346145,0.664003,0.147034,0.569368,0.699681,0.629936,0.504671,0.653253,0.220787,0.862585,0.337743,0.909982,0.80549,0.750461,0.889458,0.77096,0.829529,0.207495,0.973715,0.289414,0.018919,0.849171,0.371156,0.281618,0.599569,0.230556,0.764236,0.937759,0.456424,0.35778,0.90337,0.275577,0.852912,0.145828,0.878146,0.551398,0.238542,0.382981,0.354903,0.602241,0.869227,0.876363,0.320498,0.00458258,0.256389,0.452431,0.546293,0.983562,0.099337,0.0688265,0.0503414,0.299255,0.923272,0.718751,0.541565,0.717137,0.430896,0.369322,0.231299,0.280607,0.933338,0.757838,0.0957966,0.321199,0.853082,0.00813323,0.518912,0.169726,0.171285,0.797732,0.667009,0.84095,0.432465,0.657755,0.911061,0.122986,0.736144,0.287999,0.252078,0.693022,0.405957,0.790833,0.552272,0.446036,0.310044,0.822391,0.411071,0.0623863,0.137613,0.0605107,0.991904,0.873134,0.128227,0.0178608,0.145301,0.757615,0.0716864,0.110237,0.654915,0.410434,0.265754,0.797288,0.379769,0.694989,0.464943,0.775854,0.170103,0.309299,0.986024,0.349581,0.0500315,0.0471072,0.841384,0.573594,0.403143,0.74417,0.0686284,0.57981,0.125635,0.541707,0.120182,0.889147,0.600333,0.823748,0.0522277,0.775451,0.532612,0.227158,0.707007,0.167475,0.503052,0.583094,0.535659,0.722486,0.259427,0.319646,0.472794,0.41166,0.00854325,0.327235,0.455527,0.636696,0.239346,0.545583,0.132721,0.987378,0.376368,0.651894,0.0195309,0.735192,0.282614,0.721299,0.311436,0.358581,0.435807,0.234114,0.219593,0.0598656,0.860719,|0.744938,0.642941,0.0674769,0.746832,0.58206,0.249011,0.644738,0.677376,0.156761,0.884169,0.913189,0.915946,0.276841,0.761391,0.996174,0.320061,0.965712,0.251249,0.655744,0.866135,0.765609,0.705511,0.722977,0.0612721,0.510425,0.961248,0.711513,0.934582,0.764743,0.525774,0.473567,0.928398,0.106523,0.337813,0.580881,0.0376161,0.698575,0.273457,0.690988,0.00750834,0.767171,0.00477409,0.767487,0.23716,0.0783997,0.137076,0.729013,0.110538,0.892944,0.992867,0.753184,0.094254,0.439095,0.590014,0.504434,0.512226,0.568578,0.993763,0.286356,0.430415,0.420423,0.766449,0.714295,0.291571,0.238302,0.240359,0.143091,0.215504,0.881045,0.994798,0.509377,0.74351,0.270515,0.735842,0.174305,0.25368,0.489905,0.437719,0.154544,0.0493449,0.456019,0.788945,0.353147,0.998626,0.427673,0.09311,0.987051,0.507058,0.609818,0.612629,0.322048,0.155958,0.153425,0.157292,0.585242,0.858514,0.649133,0.64598,0.185444,0.226393,0.500108,0.198866,0.293828,0.503042,0.93747,0.182338,0.41326,0.2906,0.579255,0.17667,0.652933,0.916953,0.35822,0.903208,0.291289,0.391324,0.947513,0.76285,0.797507,0.380697,0.598624,0.812369,0.402606,0.878973,0.0729329,0.886383,0.646581,0.108082,0.0341144,0.832955,0.594597,0.404212,0.565532,0.204328,0.247686,0.281375,0.971171,0.229933,0.719528,0.450495,0.242476,0.93598,0.658094,0.610416,0.98166,0.156569,0.936905,0.192731,0.785041,0.785125,0.294431,0.942848,0.778411,0.15134,0.248548,0.568869,0.754761,0.618856,0.164224,0.0210407,0.152819,0.986389,0.321597,0.114348,0.736996,0.210676,0.00462848,0.093741,0.318315,0.695331,0.195336,0.439367,0.100012,0.708589,0.686469,0.281129,0.590409,0.352799,0.882373,0.625906,0.510138,0.805882,0.752566,0.191571,0.415102,0.843609,0.466268,0.287608,0.444464,0.321026,0.793969,0.806568,0.416846,0.680262,0.593615,0.568869,0.591434,0.988613,0.867929,0.541537,0.792302,0.386136,0.930706,0.890092,0.764239,0.175562,0.853734,0.675284,0.581881,0.91264,0.0631955,0.624793,0.312289,0.0166748,0.100904,0.693286,0.332071,0.556167,0.261049,0.137695,0.437852,0.487099,0.702634,0.963131,0.515065,0.923696,0.470708,0.474743,0.602824,0.0630274,0.689135,0.526693,0.965955,0.312029,0.921568,0.71969,0.90859,0.697154,0.451906,0.710118,0.635968,0.681226,0.538952,0.645461,0.0831712,0.303394,0.990387,0.374029,0.0138725,0.0847046,0.0637616,0.924177,0.959863,0.0910197,0.597756,0.66375,0.699512,0.0972193,0.305608,0.781082,0.912717,0.270893,0.323559,0.586388,0.302534,0.55002,0.502508,0.558617,0.337249,0.136889,0.878378,0.559347,0.831066,0.685037,0.819481,0.205405,0.404364,0.264941,0.849743,0.760403,0.598436,0.489883,0.469305,0.554291,0.51855,0.809527,0.791501,0.178701,0.947593,0.851944,0.580017,0.131101,0.301515,0.494128,0.958154,0.0144385,0.742995,0.765154,0.131875,0.442643,0.307107,0.916321,0.453526,0.763156,0.233489,0.431847,0.450248,0.958596,0.0933605,0.16762,0.111478,0.613609,0.875348,0.646153,0.370939,0.228762,0.126794,0.230177,0.215074,0.434779,0.434653,0.571323,0.391492,0.0518725,0.198501,0.960674,0.0206163,0.771846,0.512015,0.345423,0.818997,0.387139,0.0353842,0.348093,0.556532,0.849477,0.131296,0.0140921,0.430866,0.578763,0.17641,0.10979,0.829332,0.348608,0.461971,0.353859,0.943679,0.703708,0.667679,0.209316,0.857882,0.656469,0.785315,0.685505,0.846702,0.663493,0.88356,0.921292,0.916217,0.359179,0.45282,0.203044,0.9315,0.419191,0.39207,0.637431,0.546199,0.0635085,0.324139,0.708562,0.71056,0.151133,0.540433,0.474325,0.572241,0.401608,0.540075,0.472329,0.145531,0.987731,0.837443,0.0164332,0.269639,0.633151,0.493792,0.735187,0.0453011,0.057399,0.0943636,0.4148,0.956839,0.308163,0.0621071,0.0840261,0.114392,0.887722,0.949184,0.535695,0.384991,0.582859,0.527965,0.124276,0.946773,0.0178016,0.091562,0.694986,0.948171,0.729817,0.771954,0.89432,0.61132,0.391876,0.375273,0.858521,0.465901,0.824752,0.823062,0.297574,0.45804,0.383661,0.454148,0.347704,0.272012,0.291641,0.41122,0.634846,0.380609,0.734677,0.694078,0.978791,0.960173,0.563631,0.730266,0.211321,0.506706,0.7815,0.676013,0.0669748,0.354674,0.710335,0.433387,0.600956,0.244293,0.19291,0.437718,0.132891,0.839191,0.576438,0.277418,0.00412393,0.176219,0.148251,0.815658,0.0984292,0.967112,0.117496,0.653082,0.602645,0.929599,0.723211,0.374131,0.875981,0.760752,0.00276864,0.425656,0.741852,0.46423,0.675099,0.626758,0.649443,0.450407,0.0599741,0.610238,0.0204254,0.293678,0.566916,0.39758,0.15632,0.553983,0.54068,0.815124,0.843033,0.237513,0.112155,0.258574,0.51981,0.117509,0.559943,0.97146,0.84853,0.121868,0.084462,0.572043,0.287083,0.944485,0.13628,0.513539,0.100097,0.35024,0.804126,0.838796,0.0694953,0.639868,0.739756,0.746284,0.250894,0.44921,0.634708,0.25541,0.652294,0.16485,0.555711,0.749598,0.721093,0.603578,0.977359,0.35602,0.315061,0.208476,0.066467,0.0260218,0.714511,0.345186,0.644253,0.662426,0.46646,0.703158,0.0362561,0.0903847,0.190126,0.358041,0.468637,0.695951,0.645584,0.495846,0.856858,0.404494,0.941744,0.11811,0.0526763,0.24488,0.518835,0.215294,0.598801,0.338615,0.147383,0.441115,0.37102,0.98948,0.922177,0.0367749,0.724359,0.708191,0.106863,0.938546,0.689005,0.0286741,0.787559,0.343554,0.617077,0.305187,0.954676,0.858178,0.533312,0.81776,0.832594,0.889631,0.808595,0.342268,0.0082826,0.498842,0.0071975,0.622579,0.976667,0.214166,0.234811,0.1919,0.190476,0.156562,0.434413,0.324927,0.527702,0.888359,0.941931,0.225769,0.731881,0.157441,0.188486,0.722831,0.446467,0.536628,0.475016,0.205832,0.314253,0.847969,0.0519392,0.0111151,0.318485,0.771893,0.611897,0.616204,0.762996,0.903408,0.247225,0.879299,0.990231,0.669582,0.689238,0.830326,0.880194,0.100815,0.583643,0.757228,0.953557,0.337691,0.731132,0.206086,0.513991,0.240254,0.600457,0.186902,0.368099,0.231699,0.124367,0.171865,0.33736,0.77478,0.53658,0.169584,0.256706,0.511388,0.395888,0.920747,0.53118,0.180659,0.874826,0.229831,0.385863,0.536475,0.0947545,0.930474,0.730016,0.146456,0.442837,0.418161,0.291066,0.133903,0.994239,0.075625,0.567631,0.326915,0.934484,0.38125,0.422231,0.518501,0.801743,0.206029,0.37139,0.287857,0.943004,0.836103,0.217662,0.848705,0.332938,0.363175,0.601136,0.690443,0.506062,0.31253,0.123408,0.0623732,0.706099,0.683593,0.55373,0.501643,0.63615,0.720059,0.856907,0.00339454,0.485874,0.886692,0.799351,0.99563,0.955651,0.591549,0.29285,0.454232,0.0300586,0.0167612,0.899242,0.165716,0.890083,0.927034,0.251175,0.77536,0.737445,0.892259,0.24067,0.873408,0.494731,0.08726,0.311353,0.247276,0.0826551,0.503295,0.440978,0.771359,0.117195,0.953972,0.391003,0.436195,0.173564,0.884061,0.682769,0.835334,0.621323,0.108549,0.823802,0.0749364,0.198246,0.747854,0.0161754,0.270687,0.404774,0.340635,0.804339,0.627572,0.0821485,0.327784,0.385888,0.683176,0.979835,0.665462,0.636592,0.14844,0.803563,0.0713638,0.476103,0.956023,0.00190639,0.607508,0.397961,0.667154,0.246876,0.0196304,0.735901,0.139685,0.598824,0.0596368,0.438478,0.313806,0.409108,0.820542,0.0547744,0.926569,0.290307,0.767648,0.641043,0.345812,0.451424,0.915931,0.642392,0.250733,0.91186,0.320489,0.448089,0.342965,0.843156,0.317159,0.0964928,0.275249,0.748815,0.753801,0.806259,0.672069,0.600385,0.540953,0.857583,0.0245536,0.0518488,0.849908,0.694308,0.546867,0.287505,0.349566,0.773482,0.131765,0.399084,0.381249,0.730255,0.0547777,0.172791,0.9208,0.361974,0.945859,0.799701,0.410544,0.55378,0.720331,0.0813869,0.748749,0.425823,0.18834,0.00043416,0.301604,0.93885,0.556402,0.523111,0.274427,0.994372,0.13569,0.690808,0.54965,0.604603,0.364318,0.897255,0.407036,0.914818,0.520422,0.404327,0.937304,0.126751,0.72288,0.115296,0.36117,0.717671,0.172513,0.610687,0.960276,0.157413,0.801651,0.29606,0.977678,0.119181,0.063894,0.171711,0.846547,0.760862,0.199192,0.292212,0.0147449,0.00523019,0.504047,0.720198,0.917381,0.0890657,0.365977,0.729938,0.518904,0.435828,0.761239,0.663211,0.383657,0.343691,0.442683,0.944554,0.138168,0.680239,0.320605,0.226325,0.227715,0.400929,0.815484,0.323059,0.0619296,0.81803,0.269031,0.555264,0.95968,0.219852,0.89741,0.717673,0.211638,0.859627,0.995985,0.674681,0.831794,0.00775105,0.982551,0.30586,0.431486,0.725924,0.210191,0.73143,0.628411,0.266995,0.571454,0.282246,0.190702,0.996789,0.337717,0.748187,0.0226167,0.399131,0.780038,0.113074,0.453796,0.507793,0.484144,0.621629,0.421,0.59576,0.499942,0.514028,0.160241,0.59623,0.209981,0.85455,0.933546,0.546202,0.743514,0.671446,0.72767,0.444752,0.427823,0.684033,0.549219,0.371488,0.58856,0.57281,0.937283,0.911611,0.268275,0.752733,0.843021,0.433157,0.36644,0.377618,0.281767,0.372211,0.644134,0.138322,0.959649,0.0313236,0.583065,0.334244,0.282595,0.793304,0.838271,0.543858,0.411517,0.21079,0.949539,0.304935,0.488096,0.8635,0.80132,0.847817,0.237434,0.160365,0.0768265,0.819947,0.195659,0.853651,0.224267,0.673375,0.557923,0.351018,0.18173,0.307297,0.0944318,0.988347,0.334491,0.310942,0.237937,0.775849,0.669738,0.908014,0.873555,0.696,0.412795,0.961077,0.529501,0.94462,0.120022,0.562243,0.684819,0.396657,0.356956,0.167749,0.91093,0.979291,0.498748,0.264755,0.46782,0.0558742,0.493164,0.196366,0.171988,0.566698,0.128284,0.163052,0.627045,0.188946,0.0198581,0.75353,0.49796,0.591951,0.929703,0.201632,|0.760079,0.731655,0.416034,0.0456749,0.242502,0.362668,0.261485,0.657886,0.25161,0.0393343,0.657714,0.539306,0.234443,0.426909,0.686374,0.81633,0.87883,0.762286,0.486838,0.138983,0.0288451,0.328794,0.658587,0.0272922,0.755417,0.613097,0.0172002,0.0610546,0.169072,0.613404,0.84478,0.0218617,0.103588,0.494124,0.593346,0.429461,0.354861,0.0448654,0.230919,0.85441,0.732104,0.691264,0.718835,0.518383,0.933166,0.961035,0.624839,0.0530647,0.49936,0.849705,0.213491,0.160772,0.607671,0.411261,0.11758,0.781149,0.0195291,0.355147,0.0257211,0.860084,0.474477,0.289728,0.961742,0.805393,0.902644,0.593157,0.170482,0.687821,0.954765,0.079034,0.991519,0.733045,0.259993,0.01464,0.0424522,0.86972,0.162151,0.129607,0.068588,0.00885165,0.132662,0.532754,0.749404,0.0126497,0.319549,0.257469,0.791502,0.221806,0.0667597,0.662876,0.793364,0.681312,0.36023,0.712294,0.834966,0.263954,0.00912857,0.569799,0.67637,0.69103,0.368833,0.22401,0.283119,0.837969,0.617674,0.0807046,0.327247,0.268016,0.747766,0.68181,0.276281,0.0928392,0.566806,0.528141,0.659014,0.586292,0.336007,0.535605,0.759348,0.77817,0.502456,0.0599756,0.910222,0.991497,0.446569,0.391481,0.864255,0.424107,0.620984,0.117788,0.67332,0.865055,0.293271,0.953286,0.775185,0.433045,0.657731,0.935472,0.250228,0.592029,0.306514,0.223616,0.935505,0.679751,0.480388,0.680329,0.675035,0.510117,0.47958,0.211151,0.831923,0.00270689,0.340246,0.0185918,0.52469,0.150264,0.560753,0.403679,0.802649,0.86854,0.273088,0.744832,0.735606,0.455854,0.298833,0.879075,0.0374271,0.994002,0.180693,0.999561,0.0845775,0.336466,0.707011,0.737454,0.474143,0.39207,0.457328,0.944421,0.743927,0.930337,0.345663,0.331103,0.141145,0.7169,0.407984,0.0343624,0.276008,0.94457,0.735218,0.621364,0.192454,0.176576,0.781689,0.480685,0.432287,0.565746,0.919434,0.721134,0.995373,0.419216,0.130494,0.437027,0.0183798,0.598372,0.683323,0.120032,0.17817,0.386735,0.518424,0.60374,0.576993,0.535608,0.946675,0.797957,0.793525,0.0381438,0.805782,0.198188,0.273603,0.889609,0.665676,0.402581,0.433501,0.4222,0.547992,0.0726892,0.790933,0.830375,0.327116,0.971302,0.573454,0.859799,0.361021,0.54746,0.463748,0.583571,0.876945,0.110036,0.998917,0.341402,0.989809,0.411383,0.707759,0.74372,0.0978287,0.109189,0.376511,0.161456,0.12908,0.26255,0.0639293,0.479255,0.822615,0.122681,0.208025,0.70448,0.267888,0.145881,0.517531,0.761,0.141943,0.30628,0.151531,0.375207,0.0979875,0.700402,0.173663,0.212567,0.785629,0.810853,0.871574,0.871981,0.400312,0.493059,0.48965,0.860572,0.372549,0.421394,0.167342,0.318442,0.0291528,0.0381689,0.576814,0.377747,0.537744,0.867536,0.361791,0.618699,0.757344,0.392159,0.31909,0.200021,0.816066,0.673268,0.365957,0.444865,0.572206,0.335654,0.569132,0.174921,0.46479,0.537976,0.914897,0.308904,0.386679,0.63118,0.444575,0.0401068,0.639032,0.407328,0.461079,0.591019,0.289176,0.0117722,0.394976,0.053824,0.522707,0.793235,0.332753,0.944253,0.062067,0.976553,0.687047,0.553978,0.108662,0.00898916,0.00264567,0.339544,0.592155,0.0615395,0.990995,0.396087,0.0135869,0.857079,0.382466,0.088209,0.26091,0.277502,0.0685547,0.0164242,0.762774,0.34454,0.212918,0.575682,0.000417292,0.99195,0.474435,0.522167,0.201959,0.785982,0.583255,0.555334,0.286558,0.652151,0.527624,0.0493243,0.177643,0.440699,0.880918,0.751841,0.807386,0.867683,0.676145,0.211292,0.722782,0.879375,0.227428,0.779027,0.675568,0.365951,0.666708,0.651517,0.932433,0.98622,0.401088,0.50262,0.197383,0.189617,0.295916,0.364735,0.175341,0.21544,0.278414,0.620413,0.829707,0.607077,0.175221,0.874541,0.642174,0.175565,0.515372,0.365672,0.697729,0.212875,0.719833,0.861413,0.402517,0.104017,0.802103,0.833569,0.849386,0.969143,0.956251,0.137268,0.872073,0.337259,0.819757,0.38899,0.89603,0.410005,0.871673,0.165913,0.486449,0.249799,0.367526,0.318114,0.35277,0.0748823,0.645499,0.718778,0.710574,0.683567,0.54182,0.0385891,0.522335,0.676129,0.320422,0.99504,0.0918263,0.756263,0.34568,0.0797065,0.815958,0.0497303,0.332057,0.478869,0.650134,0.380725,0.625442,0.90404,0.62528,0.0507007,0.0664512,0.669358,0.250949,0.974683,0.74113,0.450487,0.835227,0.840655,0.926241,0.110833,0.35093,0.21758,0.103803,0.671743,0.433506,0.942907,0.221949,0.545729,0.168689,0.287418,0.135349,0.73194,0.278607,0.258287,0.849448,0.770521,0.79278,0.248093,0.366625,0.88545,0.697942,0.0807682,0.449995,0.750671,0.691723,0.287544,0.67864,0.614911,0.946031,0.0441703,0.650175,0.801984,0.135079,0.66449,0.455047,0.792757,0.450797,0.499198,0.968212,0.948824,0.916653,0.366242,0.356046,0.749988,0.131558,0.0730284,0.55635,0.802064,0.624379,0.519335,0.951218,0.445541,0.241541,0.730125,0.146116,0.56809,0.0639645,0.487162,0.708767,0.986499,0.127775,0.598382,0.783956,0.612146,0.433083,0.304423,0.479705,0.751037,0.851094,0.966205,0.799008,0.523109,0.93456,0.306458,0.212067,0.0972556,0.710817,0.660402,0.460363,0.257503,0.692158,0.380673,0.161553,0.0428492,0.448389,0.709501,0.986077,0.315007,0.793518,0.387345,0.00118595,0.978901,0.88368,0.116373,0.0793046,0.379185,0.798139,0.198923,0.37134,0.942211,0.244937,0.752345,0.139162,0.500565,0.816723,0.984342,0.132752,0.507727,0.776043,0.172773,0.189146,0.920401,0.00349313,0.500211,0.183854,0.727156,0.281053,0.831778,0.98144,0.0301008,0.758288,0.325126,0.638028,0.652938,0.331895,0.811283,0.465991,0.144311,0.782544,0.427444,0.139238,0.761398,0.410966,0.472972,0.632828,0.257514,0.00414956,0.758756,0.076363,0.999257,0.0722671,0.647882,0.321046,0.402754,0.48391,0.784948,0.85514,0.752964,0.328145,0.148561,0.95114,0.375237,0.0209702,0.897433,0.419551,0.505888,0.908033,0.142299,0.106384,0.842222,0.516999,0.79118,0.181475,0.621139,0.419598,0.514788,0.0309331,0.570461,0.968486,0.0864719,0.556204,0.865889,0.251054,0.355618,0.185289,0.836855,0.349305,0.66375,0.287451,0.934236,0.537934,0.358012,0.863018,0.746954,0.519943,0.314684,0.074907,0.112319,0.0840598,0.969444,0.717742,0.842555,0.479133,0.203733,0.694132,0.927571,0.668879,0.195931,0.132581,0.990226,0.167765,0.253343,0.665335,0.45943,0.0890504,0.0746779,0.39394,0.116339,0.534545,0.0289801,0.0830119,0.490959,0.795006,0.680346,0.968495,0.591614,0.678334,0.217905,0.211566,0.312656,0.53298,0.494654,0.515363,0.615335,0.83134,0.637826,0.126885,0.755117,0.117085,0.0168384,0.274231,0.161076,0.54905,0.179151,0.0651287,0.399165,0.0131309,0.637662,0.0548437,0.236467,0.131003,0.713251,0.704413,0.0573618,0.785983,0.103955,0.410376,0.422924,0.866668,0.616693,0.0628291,0.735358,0.287424,0.84465,0.216748,0.012637,0.694196,0.583984,0.0806476,0.121105,0.594046,0.320282,0.924108,0.812044,0.528502,0.0113454,0.453876,0.318773,0.774389,0.726803,0.637936,0.0340078,0.321359,0.545851,0.73143,0.746605,0.283492,0.0412344,0.47936,0.232502,0.162265,0.573025,0.123603,0.310335,0.142955,0.871607,0.0846617,0.223671,0.419143,0.30516,0.796255,0.141224,0.80919,0.971751,0.480709,0.121012,0.00140893,0.214691,0.206933,0.313775,0.179533,0.405,0.205685,0.0696196,0.318839,0.732749,0.0250582,0.112984,0.2312,0.532253,0.362581,0.648561,0.110646,0.779913,0.377076,0.838333,0.917425,0.24077,0.0466284,0.713184,0.147152,0.543533,0.339857,0.969502,0.32797,0.705306,0.0849715,0.00481272,0.289729,0.54489,0.94734,0.715072,0.871031,0.992273,0.233793,0.307774,0.553483,0.2905,0.0604571,0.785578,0.93765,0.683433,0.587354,0.569565,0.948634,0.837678,0.229523,0.407131,0.439714,0.966487,0.548553,0.0382169,0.67652,0.609745,0.97147,0.497115,0.338845,0.518338,0.840224,0.124832,0.420768,0.458641,0.617888,0.644439,0.750295,0.507291,0.103919,0.879149,0.673549,0.86609,0.568232,0.186272,0.492372,0.589366,0.0748756,0.789763,0.946873,0.791896,0.460478,0.307944,0.476065,0.579242,0.571508,0.0136931,0.162097,0.52465,0.24078,0.741017,0.992534,0.965831,0.728651,0.231017,0.827242,0.876041,0.363097,0.25054,0.283536,0.73466,0.114602,0.449703,0.0612786,0.337302,0.49959,0.185717,0.583611,0.70312,0.109883,0.282317,0.290448,0.224011,0.385302,0.92095,0.00542849,0.31542,0.0555887,0.0688574,0.113758,0.450714,0.616727,0.624733,0.162929,0.00293052,0.548666,0.0881411,0.938312,0.707856,0.139978,0.422597,0.192027,0.916233,0.741184,0.981878,0.409269,0.754336,0.316744,0.473514,0.0388219,0.515248,0.438931,0.054839,0.949964,0.35509,0.457904,0.934884,0.549316,0.841788,0.515898,0.467031,0.565048,0.743657,0.424739,0.47776,0.162187,0.383949,0.633822,0.669025,0.0332818,0.688306,0.630872,0.257312,0.648155,0.063592,0.703035,0.828132,0.284165,0.315776,0.264737,0.103202,0.0872046,0.90783,0.342236,0.883246,0.931064,0.57419,0.987429,0.973761,0.523853,0.675591,0.411821,0.503768,0.585031,0.823875,0.581245,0.488388,0.175864,0.869253,0.232876,0.663697,0.461087,0.453826,0.640728,0.4573,0.926307,0.548651,0.849015,0.507898,0.739177,0.915128,0.521627,0.508709,0.538754,0.773043,0.77918,0.466374,0.285391,0.0852226,0.294434,0.343571,0.923937,0.132887,0.314816,0.125665,0.259319,0.521617,0.356679,0.58097,0.236556,0.842941,0.0725246,0.8838,0.963191,0.299073,0.0429072,0.0767202,0.904252,0.515924,0.973995,0.833839,0.904897,0.541617,0.342977,0.647004,0.262458,0.65677,0.183633,0.497899,0.884827,0.633154,0.0430242,0.837974,0.281112,0.512758,0.273693,0.86054,0.960397,0.103889,0.408811,0.983451,|0.194145,0.903482,0.802059,0.664591,0.834932,0.0478759,0.498689,0.396024,0.0862074,0.108041,0.266366,0.0506408,0.713975,0.232408,0.00862575,0.196232,0.551525,0.657386,0.221086,0.552774,0.454962,0.0751522,0.632363,0.215845,0.70753,0.854462,0.168896,0.813905,0.425918,0.869855,0.0717491,0.426584,0.292952,0.85801,0.216653,0.970792,0.535468,0.813812,0.67121,0.929156,0.135085,0.701702,0.387572,0.365885,0.397725,0.0721239,0.384577,0.696108,0.530877,0.0207243,0.735633,0.743361,0.745105,0.039601,0.382489,0.995098,0.906175,0.640021,0.506672,0.465261,0.531467,0.741846,0.498796,0.248198,0.475543,0.26504,0.723271,0.145008,0.0123129,0.720181,0.892345,0.773906,0.705243,0.390048,0.792172,0.994748,0.107023,0.320523,0.582635,0.465896,0.671581,0.573588,0.487606,0.367595,0.607868,0.263453,0.665935,0.906132,0.764286,0.633716,0.778444,0.124797,0.636899,0.334989,0.85281,0.683163,0.756084,0.0336658,0.228981,0.656292,0.993473,0.0562198,0.0984676,0.155836,0.408423,0.835396,0.00667512,0.559937,0.535136,0.494386,0.934851,0.388194,0.850702,0.476221,0.451022,0.195599,0.257042,0.143901,0.0449605,0.284501,0.628671,0.501313,0.297969,0.905545,0.0389788,0.38682,0.641556,0.859837,0.0471681,0.35357,0.744704,0.0421358,0.0894861,0.511621,0.370471,0.736185,0.790098,0.814317,0.567266,0.769031,0.810704,0.807641,0.768467,0.266962,0.380529,0.573635,0.0607633,0.779877,0.904559,0.24205,0.637504,0.26258,0.150287,0.405809,0.92377,0.960587,0.0975123,0.996465,0.0555523,0.423015,0.252997,0.791227,0.0831987,0.909541,0.443735,0.929857,0.584675,0.225924,0.341373,0.951242,0.463897,0.120096,0.0915832,0.974106,0.87728,0.665415,0.708007,0.00809669,0.929923,0.137611,0.962763,0.745181,0.723654,0.823004,0.0400754,0.0281255,0.508423,0.967893,0.184414,0.779059,0.872353,0.0984877,0.150843,0.296063,0.550437,0.40056,0.397016,0.861826,0.261767,0.722362,0.244592,0.353002,0.665644,0.956812,0.366135,0.99663,0.61557,0.618963,0.210818,0.549334,0.0982043,0.98425,0.927432,0.264892,0.0747352,0.406091,0.826991,0.758135,0.443365,0.158089,0.72688,0.346842,0.933864,0.892765,0.14644,0.590113,0.00755757,0.684417,0.740284,0.651487,0.237709,0.145921,0.33702,0.371527,0.679923,0.454658,0.227206,0.987523,0.0564965,0.13834,0.973119,0.836391,0.601266,0.492411,0.308968,0.699299,0.0996879,0.517043,0.671271,0.922342,0.261422,0.401415,0.847267,0.47401,0.100557,0.107025,0.651073,0.196776,0.163436,0.980168,0.152072,0.298616,0.0124564,0.781191,0.402236,0.292618,0.33169,0.599044,0.871081,0.372851,0.888577,0.985677,0.889653,0.761194,0.744071,0.593077,0.781824,0.382226,0.694521,0.138455,0.755764,0.382687,0.0604678,0.95739,0.160932,0.472936,0.0663019,0.376244,0.153646,0.0477015,0.0468228,0.017871,0.468404,0.508544,0.532644,0.612532,0.478915,0.624713,0.856278,0.0920708,0.400761,0.516268,0.729199,0.473233,0.636575,0.181545,0.966798,0.302335,0.652977,0.977759,0.830382,0.0145412,0.411977,0.969605,0.8589,0.0629244,0.253469,0.910668,0.237758,0.0378815,0.499392,0.988368,0.851573,0.72502,0.0319991,0.819689,0.355772,0.779895,0.477576,0.924285,0.0870548,0.539911,0.10965,0.54398,0.544641,0.575416,0.123819,0.698777,0.360404,0.641577,0.732731,0.411037,0.831706,0.482551,0.744928,0.288583,0.0181187,0.166657,0.862562,0.881878,0.947877,0.756934,0.549958,0.459713,0.357147,0.370394,0.253662,0.768112,0.353642,0.604003,0.498582,0.542579,0.151402,0.567311,0.211553,0.250453,0.634197,0.119162,0.605069,0.0993888,0.493791,0.548083,0.228087,0.307588,0.794047,0.424406,0.21442,0.0737015,0.591757,0.312753,0.35334,0.15239,0.810878,0.999387,0.00451118,0.673669,0.359604,0.156418,0.623208,0.96851,0.256792,0.971717,0.108686,0.635933,0.933565,0.891007,0.566289,0.14104,0.896237,0.0993997,0.144149,0.242323,0.0161323,0.575582,0.69993,0.823551,0.382443,0.159191,0.130742,0.345191,0.596693,0.536404,0.562711,0.658974,0.710724,0.710975,0.473913,0.577125,0.340365,0.838052,0.251072,0.53613,0.614445,0.347191,0.00480556,0.553066,0.861005,0.0314198,0.281293,0.0669814,0.72257,0.400365,0.45818,0.323921,0.715699,0.200508,0.626181,0.498607,0.359749,0.391676,0.488895,0.210834,0.970496,0.594282,0.119246,0.826173,0.191172,0.885047,0.835032,0.978399,0.431561,0.494386,0.995158,0.114921,0.783682,0.223348,0.0821291,0.405832,0.366393,0.609708,0.694232,0.502375,0.465102,0.894203,0.584788,0.956669,0.343087,0.607059,0.0265895,0.51122,0.791255,0.88905,0.177101,0.634318,0.587829,0.253178,0.952747,0.137846,0.343525,0.466013,0.871834,0.904079,0.0548672,0.178236,0.147021,0.588143,0.439606,0.309199,0.719903,0.28424,0.942876,0.394562,0.445013,0.857131,0.0559052,0.165603,0.342694,0.432321,0.536643,0.949772,0.2798,0.886006,0.162797,0.541436,0.701362,0.505927,0.344625,0.711399,0.415703,0.821734,0.152012,0.994999,0.221136,0.972483,0.143746,0.379653,0.888644,0.0371731,0.775711,0.654184,0.705944,0.722361,0.888199,0.247906,0.164068,0.731165,0.816145,0.800087,0.0434391,0.294778,0.314932,0.566759,0.677442,0.721374,0.0300969,0.39142,0.401095,0.151814,0.0726492,0.889028,0.194747,0.268148,0.159473,0.291694,0.176094,0.0151896,0.109764,0.415775,0.919213,0.931364,0.809031,0.0542697,0.201816,0.0117836,0.381492,0.0522175,0.628091,0.848845,0.185357,0.342198,0.732464,0.692769,0.356878,0.859999,0.204406,0.825858,0.97358,0.687226,0.879175,0.952036,0.938515,0.533977,0.742311,0.408587,0.835294,0.565675,0.208052,0.190787,0.953288,0.777599,0.100513,0.519211,0.410405,0.0752687,0.0126072,0.471549,0.283825,0.254872,0.581376,0.393846,0.811567,0.150738,0.13456,0.561296,0.791803,0.234372,0.701354,0.355331,0.531726,0.663559,0.0321155,0.989333,0.207242,0.507105,0.450999,0.749763,0.468907,0.975402,0.236439,0.840128,0.456833,0.961173,0.817811,0.13234,0.406293,0.872797,0.840416,0.899151,0.290955,0.904923,0.555323,0.533939,0.671336,0.00775844,0.855252,0.73533,0.124562,0.509716,0.20726,0.941026,0.262733,0.484559,0.859793,0.591546,0.595834,0.883699,0.796392,0.0515504,0.949193,0.0234234,0.816412,0.979852,0.808422,0.098926,0.128303,0.417425,0.242251,0.262722,0.221064,0.809605,0.478325,0.19381,0.597401,0.19545,0.850159,0.988064,0.962899,0.994466,0.130089,0.399047,0.936571,0.699199,0.714913,0.57633,0.319609,0.996035,0.178133,0.753836,0.340691,0.479554,0.256121,0.505318,0.825487,0.562414,0.26925,0.739911,0.421255,0.194434,0.848374,0.202022,0.895192,0.542207,0.468366,0.182614,0.00210512,0.764078,0.183689,0.474944,0.637715,0.664458,0.452986,0.0900238,0.956431,0.805194,0.652207,0.440577,0.0841746,0.373666,0.924177,0.40754,0.376238,0.906224,0.836799,0.382234,0.51844,0.844131,0.286759,0.399445,0.740601,0.618732,0.153843,0.728259,0.996454,0.772187,0.849127,0.617295,0.0337767,0.924656,0.26702,0.876437,0.425449,0.944533,0.565353,0.736666,0.82027,0.539985,0.434338,0.954268,0.539143,0.504321,0.990697,0.382224,0.90309,0.47486,0.651803,0.540004,0.189943,0.787265,0.553234,0.0701559,0.652232,0.93901,0.0164109,0.0324179,0.274899,0.121573,0.649566,0.544138,0.194774,0.460922,0.638745,0.00481308,0.968748,0.302662,0.335458,0.830512,0.783656,0.850038,0.0583347,0.110256,0.999808,0.00946432,0.428263,0.690997,0.137669,0.968513,0.384291,0.0366895,0.646398,0.501187,0.62129,0.820078,0.700364,0.317768,0.0457511,0.458792,0.570939,0.0362781,0.233917,0.752276,0.631654,0.888363,0.412492,0.384381,0.187398,0.62338,0.663683,0.037532,0.154677,0.246631,0.401592,0.990091,0.859256,0.892046,0.00108451,0.406782,0.653435,0.696172,0.855685,0.996766,0.650153,0.104437,0.408467,0.469362,0.499777,0.108143,0.551409,0.786705,0.608736,0.837318,0.690436,0.839032,0.992614,0.888662,0.162019,0.163868,0.79991,0.281973,0.0316127,0.0352775,0.998974,0.731635,0.796174,0.13894,0.566481,0.568263,0.223201,0.0182366,0.626084,0.418566,0.0107405,0.353238,0.578038,0.887004,0.162975,0.914247,0.924983,0.694889,0.205361,0.745251,0.887613,0.0866641,0.994632,0.928989,0.180635,0.576276,0.575089,0.704688,0.237675,0.823555,0.471796,0.773396,0.818922,0.13039,0.996982,0.220013,0.867297,0.494443,0.702507,0.631347,0.304423,0.672102,0.0510398,0.783115,0.17386,0.558161,0.0284135,0.566807,0.347514,0.939888,0.263383,0.303983,0.101132,0.833718,0.0370656,0.918385,0.859172,0.588731,0.0680137,0.571478,0.629437,0.175883,0.758083,0.916007,0.819081,0.313669,0.076676,0.866228,0.49644,0.497562,0.419696,0.317876,0.802748,0.267316,0.925374,0.00946766,0.526146,0.763005,0.248204,0.860564,0.432742,0.285721,0.133959,0.859761,0.862331,0.900892,0.0652061,0.92648,0.232618,0.504313,0.403026,0.0195897,0.485125,0.227034,0.338103,0.0269474,0.983329,0.083443,0.0724533,0.0513383,0.153973,0.0657657,0.231423,0.688306,0.208419,0.731405,0.08474,0.589611,0.879398,0.961301,0.73618,0.681716,0.925489,0.551949,0.243798,0.878648,0.521823,0.401235,0.418468,0.230415,0.510204,0.578536,0.778308,0.0751733,0.529336,0.553636,0.818537,0.000730693,0.958049,0.801117,0.949429,0.121053,0.648687,0.0156761,0.596493,0.466665,0.974335,0.266052,0.871313,0.677247,0.242682,0.25181,0.273443,0.71643,0.5856,0.139834,0.284528,0.192012,0.502034,0.214443,0.693743,0.0193415,0.290158,0.551638,0.683144,0.769174,0.138531,0.454652,0.742364,0.31559,0.280043,0.767592,0.228628,0.224619,0.903796,0.293588,0.0934557,0.412578,0.18669,0.453077,0.579388,0.161992,0.379392,0.431074,0.340339,0.382772,0.925023,0.650204,0.364931,0.694489,|0.0632708,0.408752,0.210098,0.24834,0.647267,0.75054,0.871158,0.94049,0.912885,0.658442,0.734274,0.399279,0.943589,0.911325,0.382973,0.0790352,0.904021,0.955635,0.864341,0.788148,0.771793,0.0192816,0.692258,0.664118,0.694607,0.319915,0.114206,0.842334,0.995321,0.764655,0.499864,0.785524,0.476112,0.718709,0.909319,0.547798,0.484171,0.32637,0.555081,0.830404,0.371151,0.224436,0.616246,0.171297,0.239644,0.121013,0.809202,0.535546,0.221893,0.225502,0.110496,0.209463,0.120627,0.371609,0.198868,0.910791,0.377491,0.457926,0.57442,0.44475,0.545936,0.0388473,0.208842,0.624389,0.094943,0.688537,0.136217,0.254244,0.476925,0.191668,0.803558,0.53713,0.438683,0.878122,0.892433,0.889314,0.490911,0.18619,0.538532,0.00218725,0.370552,0.0467338,0.966433,0.470388,0.730927,0.207808,0.143965,0.0421493,0.285417,0.353707,0.888205,0.168719,0.709451,0.627106,0.835674,0.747285,0.848631,0.459251,0.167063,0.358527,0.68425,0.340408,0.26044,0.696573,0.217314,0.566414,0.985465,0.854813,0.310651,0.107037,0.630482,0.242649,0.592638,0.187122,0.117063,0.904957,0.1475,0.760364,0.331406,0.982996,0.569417,0.779999,0.717741,0.200541,0.670868,0.190279,0.575253,0.802324,0.873541,0.991585,0.270076,0.337164,0.747043,0.426561,0.911299,0.293764,0.414787,0.172571,0.634977,0.424726,0.756596,0.347461,0.387033,0.498418,0.935182,0.884569,0.883148,0.534909,0.679099,0.74154,0.45236,0.883995,0.959738,0.480616,0.134725,0.859189,0.631072,0.423022,0.6173,0.229381,0.0541443,0.697443,0.197708,0.318195,0.31427,0.575644,0.615691,0.0337683,0.079037,0.489012,0.659108,0.154914,0.0768247,0.304729,0.0204159,0.65236,0.0821754,0.266575,0.827943,0.0556319,0.407477,0.0126674,0.551345,0.279028,0.563528,0.0343368,0.626501,0.261058,0.542025,0.0458105,0.862401,0.499995,0.0779507,0.202784,0.304447,0.104707,0.599489,0.0896445,0.908529,0.984846,0.786206,0.151588,0.0479779,0.448815,0.880107,0.590373,0.474567,0.015652,0.0523878,0.517029,0.974989,0.42118,0.524721,0.86766,0.978018,0.766233,0.198041,0.493707,0.387588,0.650353,0.465923,0.971713,0.679337,0.898483,0.822772,0.860569,0.300021,0.645785,0.263346,0.0646937,0.320802,0.972829,0.70305,0.621765,0.933363,0.724874,0.937075,0.00366127,0.549072,0.589965,0.407746,0.887245,0.166952,0.58497,0.546481,0.379121,0.719158,0.920281,0.254666,0.166088,0.538305,0.402986,0.141603,0.969241,0.739092,0.0611376,0.27183,0.31585,0.841856,0.273456,0.431338,0.975596,0.887341,0.623084,0.0804106,0.900502,0.0326199,0.309803,0.298575,0.528783,0.358702,0.972114,0.715985,0.7904,0.676839,0.412022,0.928259,0.388909,0.922614,0.387622,0.0712346,0.353193,0.782601,0.311535,0.271795,0.681105,0.0713624,0.821982,0.76478,0.31501,0.0866846,0.912532,0.0450783,0.00146013,0.359586,0.441866,0.0666837,0.294467,0.562716,0.65756,0.149389,0.52532,0.917993,0.436862,0.598489,0.525972,0.31054,0.284913,0.658556,0.291795,0.6401,0.272109,0.301184,0.402199,0.40617,0.26883,0.327981,0.172331,0.653065,0.936601,0.201705,0.277986,0.336869,0.534406,0.150283,0.129796,0.383332,0.492741,0.677505,0.403621,0.45692,0.620785,0.799966,0.887279,0.821856,0.674885,0.849259,0.744708,0.319752,0.323664,0.260707,0.443783,0.292433,0.304651,0.60257,0.0790887,0.752396,0.646635,0.88324,0.235031,0.252453,0.474497,0.891357,0.390934,0.62657,0.0944702,0.280589,0.860429,0.78756,0.760812,0.409661,0.87348,0.392627,0.242824,0.67619,0.812404,0.494817,0.243967,0.764443,0.67072,0.182952,0.474224,0.95242,0.062591,0.349339,0.887383,0.475693,0.511709,0.785141,0.259486,0.32174,0.499021,0.734559,0.599569,0.987047,0.879674,0.234413,0.443314,0.771329,0.261328,0.908903,0.800865,0.710496,0.694948,0.725955,0.355189,0.22722,0.487772,0.743679,0.350993,0.0803459,0.578939,0.749612,0.875404,0.91777,0.812174,0.840289,0.965855,0.178202,0.248454,0.494954,0.879827,0.739642,0.678228,0.0664521,0.866762,0.866935,0.628737,0.084186,0.472006,0.833167,0.691567,0.0881005,0.600094,0.989477,0.900704,0.683433,0.0227194,0.692406,0.666217,0.0388065,0.484369,0.268359,0.585878,0.290859,0.489339,0.226007,0.0535843,0.972347,0.890016,0.94248,0.705848,0.926134,0.842318,0.700802,0.16474,0.864446,0.145341,0.430391,0.154103,0.98204,0.390417,0.993191,0.714038,0.65908,0.209782,0.127086,0.611967,0.887855,0.443957,0.0708396,0.389069,0.214734,0.896696,0.920615,0.462473,0.0350749,0.141595,0.245175,0.360562,0.706891,0.464215,0.597507,0.147651,0.0687789,0.5321,0.0579439,0.268157,0.768234,0.54731,0.674378,0.40027,0.2072,0.412147,0.816561,0.468861,0.415726,0.0571234,0.0933585,0.371177,0.521058,0.249308,0.215022,0.332981,0.0162344,0.872613,0.0757772,0.681412,0.773,0.65875,0.509446,0.113049,0.162037,0.225865,0.287888,0.149346,0.175145,0.647901,0.125354,0.373808,0.994134,0.349406,0.57171,0.10463,0.813397,0.328642,0.0764852,0.079544,0.771212,0.316847,0.256454,0.822541,0.622732,0.587964,0.729661,0.885435,0.540528,0.425099,0.134723,0.129827,0.995243,0.396422,0.555023,0.814938,0.153122,0.359383,0.549052,0.397834,0.0485839,0.611417,0.810511,0.0497166,0.0103187,0.578605,0.360756,0.491338,0.380942,0.225198,0.424625,0.650101,0.358301,0.298262,0.456644,0.416958,0.270865,0.348344,0.0944462,0.253991,0.43646,0.0666887,0.132873,0.784652,0.979809,0.00466955,0.747318,0.330298,0.30585,0.912379,0.625619,0.462862,0.515061,0.264376,0.39281,0.785646,0.31783,0.196132,0.841839,0.221401,0.572383,0.923241,0.239428,0.39173,0.865642,0.401568,0.810667,0.229218,0.435523,0.809722,0.956314,0.548199,0.755568,0.00159258,0.976369,0.765496,0.268189,0.858424,0.77494,0.434815,0.931152,0.915991,0.702761,0.562201,0.753791,0.493327,0.168269,0.780037,0.523491,0.703134,0.886489,0.689252,0.630297,0.662261,0.833098,0.238841,0.182298,0.743993,0.512935,0.803266,0.73514,0.253022,0.31146,0.20975,0.771073,0.429414,0.899959,0.106463,0.816004,0.53366,0.158082,0.789804,0.324337,0.157942,0.455009,0.697669,0.621865,0.0637772,0.0353589,0.0646107,0.451985,0.0603786,0.439395,0.12682,0.207591,0.957898,0.104208,0.13351,0.626469,0.303515,0.292246,0.15895,0.601762,0.021486,0.242018,0.00336659,0.704967,0.00853997,0.339663,0.464984,0.094075,0.756131,0.348248,0.307656,0.108806,0.577539,0.554861,0.240728,0.240573,0.605305,0.278082,0.514019,0.389497,0.456464,0.713946,0.860598,0.920947,0.94477,0.56587,0.803275,0.891525,0.714532,0.378731,0.107941,0.448024,0.011834,0.149129,0.898491,0.793197,0.276246,0.336866,0.049978,0.99621,0.902941,0.427305,0.768643,0.488857,0.039439,0.346965,0.882448,0.113069,0.530774,0.251187,0.516568,0.396058,0.977327,0.389122,0.330909,0.838089,0.693073,0.468164,0.437081,0.362964,0.879338,0.288123,0.486812,0.187586,0.361123,0.259126,0.743928,0.920465,0.774596,0.933064,0.568977,0.0227155,0.187213,0.00506037,0.983608,0.361691,0.503214,0.135552,0.0502818,0.748276,0.696436,0.732198,0.388681,0.446776,0.211861,0.766654,0.809728,0.418038,0.241805,0.0989897,0.263944,0.494871,0.386087,0.929008,0.256518,0.620362,0.77389,0.396533,0.275309,0.412754,0.877869,0.928062,0.191413,0.211607,0.266095,0.00284636,0.108055,0.0743195,0.114567,0.339894,0.860118,0.0289778,0.651767,0.521301,0.806467,0.402867,0.545502,0.309152,0.992507,0.419217,0.944716,0.250293,0.284123,0.180626,0.262586,0.127872,0.667092,0.360425,0.688795,0.508289,0.187636,0.374671,0.888661,0.876996,0.707318,0.759665,0.267617,0.311657,0.0854545,0.558002,0.461816,0.723577,0.353954,0.996461,0.844206,0.936988,0.290318,0.464246,0.211693,0.788176,0.794197,0.732009,0.200164,0.287075,0.0268,0.983822,0.365035,0.0805541,0.293874,0.703919,0.214242,0.935782,0.101476,0.306709,0.773802,0.0440418,0.858092,0.359594,0.441491,0.773637,0.468426,0.306894,0.494682,0.279742,0.025601,0.456343,0.319348,0.117683,0.287231,0.00330198,0.769603,0.907206,0.817109,0.718688,0.991719,0.715697,0.109014,0.984784,0.990722,0.79127,0.666963,0.917451,0.913455,0.309989,0.84487,0.502473,0.960509,0.63991,0.156673,0.843579,0.949272,0.503429,0.822862,0.819493,0.169132,0.540709,0.331887,0.838307,0.0147101,0.765866,0.300092,0.242075,0.416482,0.420199,0.835194,0.296099,0.424323,0.98179,0.916867,0.951656,0.800511,0.309463,0.847943,0.187167,0.607966,0.099605,0.76869,0.307774,0.18542,0.652887,0.932555,0.703026,0.984089,0.524353,0.588421,0.393409,0.772392,0.427334,0.67238,0.325256,0.625199,0.345745,0.844366,0.37125,0.920015,0.316404,0.0266861,0.657066,0.0179739,0.310062,0.337099,0.602359,0.873017,0.836407,0.36237,0.0324985,0.685258,0.979413,0.288322,0.0988026,0.396047,0.58329,0.940274,0.883226,0.75,0.426797,0.916902,0.560097,0.560738,0.652557,0.123229,0.488403,0.831064,0.153184,0.736938,0.346549,0.979778,0.285247,0.778023,0.399899,0.0241051,0.122124,0.91348,0.687232,0.0600022,0.657032,0.659804,0.956459,0.882802,0.11956,0.897744,0.21645,0.808525,0.604037,0.954307,0.593783,0.724543,0.0335816,0.662046,0.0867095,0.0412884,0.688699,0.196994,0.731816,0.822486,0.118612,0.287603,0.77697,0.897429,0.201434,0.271492,0.781682,0.736732,0.489567,0.47666,0.753214,0.185697,0.441565,0.0284179,0.138162,0.238026,0.526243,0.480616,0.636974,0.356707,0.712776,0.825049,0.138788,0.58831,0.162634,0.899107,0.850962,0.752771,0.127853,0.635233,0.748045,0.486797,0.538713,0.410766,0.838408,0.171039,0.388957,0.648238,0.934173,0.575492,0.766117,0.274178,0.736458,0.365037,|0.229035,0.200504,0.621044,0.569824,0.782383,0.776694,0.409062,0.554553,0.644579,0.799406,0.919138,0.570471,0.0705338,0.965429,0.0722544,0.24241,0.193531,0.231087,0.444892,0.324018,0.996495,0.754861,0.266102,0.906677,0.907606,0.336511,0.313338,0.484592,0.60834,0.99013,0.108473,0.277804,0.0591593,0.405157,0.488334,0.378721,0.350507,0.266282,0.511583,0.573491,0.119986,0.625423,0.591631,0.744419,0.390944,0.847217,0.162257,0.311106,0.813515,0.50308,0.325507,0.338529,0.65106,0.457093,0.388289,0.956327,0.880056,0.164012,0.0979648,0.176581,0.847981,0.746617,0.485717,0.204946,0.314064,0.570891,0.160462,0.198512,0.887828,0.456992,0.253355,0.697897,0.995215,0.654045,0.897958,0.680915,0.0193463,0.16981,0.744786,0.371907,0.532953,0.00370538,0.9064,0.634735,0.832155,0.17435,0.542371,0.587478,0.0279183,0.640032,0.984374,0.425809,0.115279,0.994719,0.115305,0.63811,0.375711,0.149557,0.960017,0.336303,0.639003,0.69388,0.118769,0.579037,0.912838,0.392309,0.0498378,0.253896,0.0481219,0.477573,0.28581,0.420461,0.700909,0.691704,0.821822,0.29238,0.0698403,0.706132,0.0296991,0.959192,0.484895,0.249869,0.932048,0.0839326,0.898435,0.238234,0.662808,0.442032,0.984172,0.825213,0.321659,0.30143,0.151496,0.155773,0.465679,0.333941,0.756278,0.568456,0.781589,0.865158,0.445132,0.249061,0.370537,0.760121,0.893446,0.129374,0.198886,0.607161,0.172612,0.503966,0.18855,0.602115,0.984666,0.316209,0.586557,0.30963,0.38137,0.356034,0.766083,0.981316,0.179935,0.277898,0.943248,0.47951,0.721233,0.121506,0.00949299,0.0717004,0.999535,0.29989,0.267835,0.0364511,0.123452,0.318213,0.93294,0.524779,0.873842,0.851312,0.713313,0.932156,0.947081,0.0903226,0.858285,0.934211,0.0727657,0.517376,0.309553,0.588414,0.0888391,0.977256,0.835656,0.065353,0.117291,0.232873,0.303743,0.584736,0.422817,0.847419,0.509313,0.88114,0.27881,0.326526,0.767451,0.055036,0.479221,0.713665,0.728176,0.113752,0.973805,0.282665,0.703588,0.232251,0.670962,0.281023,0.136453,0.760355,0.440222,0.35383,0.884882,0.971403,0.870889,0.138482,0.689843,0.760223,0.926676,0.696833,0.819861,0.318785,0.53129,0.0685309,0.963508,0.578327,0.793635,0.744709,0.929367,0.90742,0.273491,0.625333,0.928015,0.272246,0.928535,0.169864,0.619513,0.274059,0.475612,0.17919,0.658686,0.56036,0.893843,0.806793,0.510357,0.524756,0.276608,0.0294539,0.689606,0.945248,0.502676,0.013527,0.167803,0.606243,0.0255455,0.698102,0.685245,0.697918,0.0378125,0.40634,0.979746,0.508533,0.649925,0.633477,0.75819,0.555029,0.556062,0.79863,0.636026,0.112329,0.449959,0.529884,0.64192,0.47664,0.805178,0.956046,0.211163,0.321588,0.251749,0.855914,0.496522,0.713246,0.0780928,0.249061,0.597092,0.97196,0.417913,0.247739,0.0502733,0.561634,0.505066,0.460062,0.794641,0.24761,0.546379,0.50209,0.8416,0.578778,0.717941,0.83834,0.168838,0.335159,0.433136,0.603936,0.240241,0.915582,0.906461,0.0580177,0.834636,0.188413,0.337302,0.0460162,0.30872,0.333214,0.0395467,0.681107,0.769305,0.469934,0.634639,0.681851,0.566569,0.275648,0.992592,0.188839,0.716051,0.45073,0.248793,0.738921,0.971326,0.438466,0.902369,0.832709,0.802325,0.411293,0.0833635,0.999778,0.81331,0.513644,0.651473,0.790319,0.570336,0.927616,0.0722236,0.353773,0.0741157,0.654671,0.324383,0.511893,0.830356,0.724189,0.0126756,0.265135,0.661464,0.401442,0.738593,0.296404,0.67073,0.7594,0.903884,0.51448,0.645433,0.862338,0.174051,0.366866,0.326114,0.339794,0.578566,0.300116,0.26487,0.987522,0.240995,0.155347,0.513702,0.676429,0.370239,0.235465,0.112646,0.362291,0.127349,0.781361,0.877245,0.821086,0.11101,0.383178,0.847,0.671937,0.995596,0.768604,0.953365,0.47331,0.530208,0.261869,0.488326,0.0627587,0.172919,0.765783,0.282156,0.00311148,0.0875077,0.453011,0.592582,0.894981,0.595663,0.244407,0.382799,0.782928,0.393179,0.214273,0.718731,0.403648,0.691358,0.750971,0.109279,0.908882,0.486531,0.925048,0.163299,0.595563,0.818335,0.0978178,0.817203,0.648518,0.318995,0.76798,0.987569,0.00349867,0.159582,0.261757,0.178624,0.902469,0.359336,0.629981,0.252743,0.846008,0.268276,0.991988,0.951448,0.243104,0.921741,0.327028,0.162856,0.903259,0.850274,0.659704,0.185483,0.761807,0.115891,0.105898,0.780097,0.30354,0.334207,0.722362,0.47218,0.926782,0.607562,0.816348,0.494954,0.378783,0.316824,0.400238,0.139916,0.207624,0.149245,0.217217,0.820034,0.702691,0.529123,0.256281,0.525083,0.475475,0.879344,0.600793,0.599714,0.198172,0.943376,0.157214,0.552046,0.39583,0.647445,0.513562,0.0404975,0.093657,0.464232,0.192571,0.869921,0.944523,0.105812,0.660435,0.033758,0.293201,0.249678,0.347461,0.747009,0.676568,0.0534371,0.164529,0.345997,0.128551,0.234479,0.901407,0.216721,0.93447,0.412875,0.76104,0.0203323,0.672293,0.141241,0.505554,0.810678,0.295405,0.190479,0.715195,0.133815,0.0789533,0.330187,0.0177994,0.0935797,0.31368,0.956596,0.471065,0.623991,0.540993,0.765398,0.693412,0.102874,0.273195,0.294852,0.786171,0.89026,0.983808,0.804032,0.848072,0.211458,0.978491,0.250988,0.99628,0.157053,0.381246,0.280093,0.390269,0.789533,0.485633,0.00390351,0.085109,0.895371,0.106015,0.0476684,0.299635,0.439728,0.440953,0.00514162,0.50668,0.50794,0.647789,0.56166,0.0810221,0.185101,0.756472,0.452173,0.629264,0.351035,0.790743,0.93968,0.0882041,0.147794,0.298443,0.140552,0.232879,0.725931,0.609234,0.241863,0.00618136,0.287717,0.561614,0.444188,0.939332,0.588117,0.965328,0.000890613,0.296979,0.722301,0.74716,0.0469597,0.847908,0.927797,0.354911,0.832639,0.154423,0.917489,0.856955,0.694579,0.173571,0.103582,0.29541,0.705877,0.738543,0.382827,0.983666,0.435679,0.312217,0.37784,0.964973,0.720467,0.201774,0.150758,0.758049,0.0215586,0.336714,0.211878,0.84059,0.855736,0.283596,0.1637,0.451677,0.407131,0.931402,0.348491,0.291934,0.839331,0.86826,0.986509,0.00301814,0.094693,0.549384,0.443492,0.937735,0.456635,0.39539,0.367961,0.520079,0.468399,0.617518,0.200239,0.468126,0.609617,0.278945,0.761537,0.642278,0.0562255,0.691337,0.851789,0.688063,0.784,0.9825,0.814535,0.185603,0.818658,0.355774,0.0304994,0.462026,0.739149,0.282675,0.576218,0.109788,0.46539,0.915583,0.956691,0.601594,0.1691,0.772111,0.147338,0.329252,0.589619,0.45136,0.964729,0.234159,0.767242,0.256933,0.815104,0.0449989,0.546809,0.939196,0.0276679,0.0528247,0.21009,0.863675,0.726566,0.0199122,0.128249,0.344287,0.448031,0.890946,0.765784,0.273746,0.503554,0.736985,0.0286958,0.0148127,0.552149,0.571513,0.562683,0.769196,0.81584,0.167775,0.694158,0.0375156,0.863662,0.957889,0.0706193,0.765367,0.615038,0.96979,0.0712204,0.363075,0.758186,0.725993,0.250698,0.921741,0.717595,0.545876,0.349281,0.499587,0.72576,0.38091,0.911301,0.0447468,0.371264,0.98329,0.591509,0.794787,0.644921,0.65314,0.201499,0.546028,0.468609,0.0995091,0.40503,0.139904,0.706386,0.910296,0.558894,0.802689,0.89674,0.931861,0.116601,0.708978,0.983356,0.775896,0.475467,0.410793,0.903082,0.0981759,0.569068,0.896501,0.420452,0.248045,0.903825,0.31896,0.16802,0.844882,0.0198945,0.0167056,0.633162,0.717876,0.825112,0.843976,0.996137,0.577238,0.923743,0.736143,0.982823,0.380693,0.731484,0.876838,0.578993,0.802151,0.451655,0.154855,0.812914,0.0469827,0.676405,0.54539,0.579673,0.852605,0.271105,0.55978,0.271772,0.142169,0.846448,0.268437,0.519925,0.126877,0.218173,0.809561,0.799328,0.535048,0.127575,0.721931,0.688195,0.858083,0.655178,0.953457,0.272027,0.450527,0.637371,0.0737225,0.371601,0.0780202,0.161916,0.681296,0.445236,0.356361,0.55961,0.817209,0.00569761,0.0850589,0.955344,0.0215781,0.61613,0.0651422,0.9257,0.931781,0.412157,0.00572258,0.0882123,0.759403,0.420803,0.674051,0.102883,0.260202,0.61879,0.68091,0.226831,0.416616,0.514034,0.51402,0.326893,0.023432,0.823274,0.563729,0.417425,0.157827,0.941379,0.938401,0.219706,0.417964,0.777285,0.371937,0.775997,0.990493,0.841745,0.0204314,0.214546,0.318871,0.718896,0.255111,0.821409,0.991863,0.104918,0.0110741,0.389848,0.396475,0.758285,0.47679,0.00782669,0.587985,0.263238,0.0375515,0.0653575,0.292092,0.172175,0.842356,0.702095,0.579997,0.942714,0.80566,0.80043,0.0899359,0.393155,0.982895,0.999009,0.075504,0.0441747,0.592992,0.119137,0.10782,0.115129,0.445512,0.595628,0.801779,0.541033,0.781889,0.556559,0.442062,0.624524,0.131455,0.117679,0.182009,0.236502,0.829385,0.389347,0.213332,0.140672,0.581323,0.60582,0.500644,0.920226,0.900282,0.271601,0.0151835,0.133215,0.648995,0.623065,0.507948,0.161424,0.904883,0.564464,0.860623,0.260263,0.749513,0.143769,0.266424,0.0134771,0.334405,0.812329,0.713409,0.230628,0.394528,0.47736,0.243228,0.192696,0.469107,0.571824,0.973224,0.937171,0.440654,0.846812,0.625407,0.129392,0.359138,0.654849,0.660443,0.229808,0.946049,0.207289,0.53363,0.0989695,0.219396,0.273677,0.265286,0.202444,0.558378,0.989955,0.714713,0.525715,0.813122,0.676303,0.234428,0.351351,0.797638,0.955213,0.228361,0.895843,0.596243,0.614778,0.782465,0.839749,0.813471,0.160085,0.160881,0.747181,0.0397618,0.675952,0.827146,0.501633,0.800116,0.22814,0.32094,0.377908,0.566027,0.539137,0.150392,0.698378,0.340062,0.236682,0.937601,0.897224,0.345378,0.571138,0.975211,0.981736,0.829561,0.0555118,0.368219,0.938474,0.864845,0.704001,0.0433014,0.504552,0.746408,0.765721,0.993085,0.825724,0.185004,|0.241181,0.540771,0.809996,0.87504,0.493049,0.719809,0.596919,0.501217,0.323564,0.747791,0.385759,0.667913,0.249147,0.985053,0.694087,0.886214,0.866961,0.296468,0.613794,0.0114307,0.16541,0.966889,0.9521,0.31295,0.0867109,0.676566,0.056669,0.287797,0.932706,0.780298,0.727031,0.188106,0.753958,0.426087,0.110074,0.465014,0.226526,0.965015,0.343939,0.645263,0.264714,0.800744,0.684342,0.115272,0.473415,0.0582626,0.909995,0.802763,0.287689,0.205176,0.236115,0.262793,0.197387,0.279088,0.958397,0.0510784,0.976468,0.120178,0.277931,0.768065,0.714742,0.456307,0.139248,0.7378,0.962781,0.776955,0.383868,0.674432,0.023497,0.995274,0.450068,0.983744,0.874283,0.503885,0.940591,0.081706,0.766092,0.233165,0.270963,0.703183,0.445928,0.398134,0.302108,0.325793,0.420802,0.875995,0.382723,0.263525,0.376563,0.450303,0.960876,0.952304,0.888585,0.671909,0.40411,0.917441,0.665067,0.998192,0.533446,0.702759,0.84721,0.315279,0.229579,0.475599,0.598814,0.607941,0.319678,0.748716,0.844098,0.476727,0.824733,0.0684816,0.950947,0.391485,0.424284,0.850798,0.939705,0.823841,0.694752,0.801467,0.275891,0.967414,0.810607,0.798707,0.405046,0.263293,0.442483,0.964991,0.0857747,0.467457,0.851606,0.663113,0.991101,0.870976,0.29077,0.334643,0.184832,0.0431793,0.963697,0.0352743,0.00550228,0.250812,0.174101,0.778509,0.428156,0.253894,0.815943,0.0456398,0.177875,0.27639,0.696998,0.475388,0.891221,0.845661,0.391076,0.178318,0.388469,0.969546,0.0026359,0.594071,0.495074,0.648625,0.407396,0.392211,0.277934,0.459623,0.218139,0.802099,0.377842,0.402003,0.690695,0.598105,0.915649,0.667179,0.978033,0.367923,0.9265,0.507221,0.678863,0.136508,0.512176,0.230244,0.880698,0.274291,0.157216,0.429199,0.235653,0.871312,0.356853,0.890817,0.938112,0.824273,0.719215,0.810661,0.79456,0.249935,0.821056,0.805321,0.706353,0.988296,0.637955,0.758839,0.398518,0.748268,0.980803,0.0524481,0.577221,0.0484357,0.296603,0.211048,0.509479,0.939564,0.471943,0.398344,0.37828,0.102936,0.93499,0.236644,0.149146,0.000754654,0.151927,0.132113,0.297783,0.755848,0.380944,0.639025,0.786733,0.792679,0.104708,0.379366,0.112302,0.525758,0.970641,0.307605,0.363427,0.0708495,0.324722,0.379269,0.730138,0.637664,0.544146,0.541567,0.427363,0.264984,0.805196,0.296815,0.17238,0.673008,0.346934,0.0700542,0.324392,0.0696488,0.819978,0.908703,0.764139,0.166503,0.5224,0.366496,0.331702,0.290682,0.898929,0.926518,0.577549,0.4042,0.0225059,0.951846,0.225676,0.235665,0.390625,0.243107,0.736683,0.626918,0.0882983,0.924405,0.571742,0.870778,0.504061,0.314779,0.939978,0.017514,0.807549,0.286193,0.723733,0.0912953,0.446724,0.396104,0.324052,0.416709,0.132746,0.801774,0.305673,0.815153,0.304632,0.863669,0.792462,0.0957883,0.904098,0.668469,0.461311,0.818313,0.39233,0.944568,0.4262,0.629661,0.676671,0.354768,0.170666,0.945397,0.957718,0.0858312,0.327254,0.623474,0.220998,0.370899,0.554342,0.568202,0.862445,0.758707,0.79405,0.955268,0.78556,0.1552,0.80267,0.481668,0.395334,0.575516,0.859003,0.622159,0.155171,0.798864,0.685206,0.6974,0.707718,0.326984,0.16216,0.708595,0.669552,0.401758,0.668013,0.717902,0.743542,0.275732,0.85802,0.845944,0.55113,0.793873,0.128784,0.702988,0.0772365,0.189085,0.949682,0.0397999,0.234563,0.859174,0.941352,0.12829,0.404216,0.869693,0.512955,0.720827,0.287786,0.173798,0.918914,0.76214,0.784766,0.619869,0.278982,0.822306,0.0491916,0.840034,0.49472,0.517471,0.753599,0.372222,0.421875,0.618378,0.718986,0.110159,0.848505,0.614591,0.128213,0.219035,0.933911,0.976754,0.665911,0.00420505,0.0700399,0.710808,0.154053,0.60396,0.792624,0.920461,0.548801,0.011872,0.86688,0.438578,0.780437,0.60277,0.222497,0.687234,0.0574868,0.493735,0.354218,0.104646,0.553868,0.793628,0.563094,0.893467,0.741529,0.320234,0.045881,0.572505,0.369034,0.143798,0.615381,0.872951,0.461256,0.574842,0.0683767,0.513488,0.991891,0.149092,0.458338,0.8164,0.442024,0.749511,0.354993,0.0728754,0.988158,0.272272,0.930563,0.983833,0.0891424,0.368813,0.540058,0.171507,0.168476,0.0696968,0.718962,0.278926,0.0184075,0.0705216,0.12598,0.63879,0.716335,0.608493,0.0491669,0.47725,0.98433,0.576503,0.225562,0.717969,0.859072,0.45155,0.318042,0.986122,0.840466,0.162737,0.0638572,0.743317,0.22522,0.959041,0.21298,0.398292,0.771301,0.106682,0.553591,0.737659,0.89224,0.78682,0.815607,0.294914,0.957562,0.0589876,0.518182,0.747115,0.990941,0.389253,0.105577,0.888444,0.897139,0.515281,0.936695,0.728093,0.576503,0.0813469,0.902566,0.867586,0.137583,0.97386,0.620579,0.131215,0.771581,0.0931619,0.573259,0.508604,0.779932,0.252387,0.436728,0.387726,0.256007,0.501133,0.672185,0.906132,0.0697106,0.184669,0.161563,0.931783,0.71696,0.800508,0.0764611,0.587145,0.452931,0.155661,0.487213,0.465638,0.332267,0.842053,0.191963,0.525421,0.145023,0.162675,0.466119,0.291055,0.209317,0.921565,0.448744,0.0857533,0.062544,0.335842,0.268564,0.113192,0.236509,0.578517,0.710564,0.192372,0.914391,0.718785,0.877149,0.289281,0.19053,0.352811,0.294733,0.199311,0.433134,0.906483,0.171279,0.488093,0.0812107,0.0505553,0.157223,0.908554,0.367586,0.092267,0.568007,0.771748,0.288776,0.956661,0.12037,0.0654736,0.731691,0.876571,0.234955,0.16732,0.0877023,0.718125,0.020022,0.189697,0.397339,0.834657,0.108981,0.215345,0.304624,0.0166786,0.502555,0.899472,0.189182,0.172741,0.983368,0.343306,0.65866,0.309149,0.185817,0.594844,0.363996,0.416798,0.243538,0.616712,0.634519,0.792234,0.659607,0.00302064,0.266518,0.55069,0.608211,0.535851,0.536556,0.322308,0.821324,0.411621,0.0443475,0.245823,0.347843,0.521918,0.626472,0.791636,0.729719,0.319794,0.835144,0.0507368,0.999983,0.490615,0.473453,0.796571,0.404816,0.396955,0.715747,0.862583,0.833634,0.969354,0.620336,0.695025,0.411868,0.662458,0.0900654,0.679978,0.241077,0.660288,0.548824,0.402042,0.371306,0.670815,0.95449,0.0514734,0.395971,0.193122,0.200283,0.979698,0.319009,0.522814,0.389081,0.92692,0.49757,0.424485,0.257379,0.977652,0.959762,0.363503,0.348824,0.986987,0.964187,0.941892,0.384614,0.491475,0.952919,0.449166,0.552892,0.68872,0.0325575,0.716341,0.80218,0.37936,0.838596,0.076054,0.950035,0.748223,0.228485,0.00757742,0.877785,0.765758,0.238185,0.694934,0.573386,0.293029,0.151929,0.998156,0.407578,0.614374,0.070313,0.510503,0.348033,0.642086,0.545991,0.93407,0.640368,0.619666,0.306248,0.419152,0.202059,0.0894538,0.834726,0.0979895,0.0950572,0.337949,0.770561,0.919257,0.0411884,0.925619,0.621439,0.685114,0.45339,0.144076,0.474913,0.470373,0.138957,0.101754,0.428077,0.333413,0.518954,0.37074,0.493866,0.588304,0.115409,0.212283,0.10937,0.661577,0.0737312,0.682652,0.71521,0.33561,0.924048,0.148473,0.839002,0.738258,0.428304,0.320912,0.101862,0.116471,0.0177419,0.997282,0.0130134,0.845068,0.448938,0.296103,0.315458,0.140305,0.784614,0.672694,0.0707952,0.689142,0.748614,0.362482,0.292933,0.952323,0.374976,0.379132,0.728987,0.565693,0.923544,0.401795,0.560439,0.975159,0.545243,0.0775166,0.297719,0.52153,0.466319,0.0896491,0.556346,0.395955,0.371374,0.503026,0.615865,0.286602,0.129814,0.187977,0.95789,0.349906,0.0596122,0.857408,0.979131,0.347493,0.605908,0.772158,0.467861,0.133022,0.349546,0.214738,0.522342,0.0543275,0.890341,0.791592,0.181348,0.779963,0.585433,0.525969,0.211791,0.233979,0.475965,0.347342,0.484606,0.543176,0.0874594,0.424167,0.916158,0.392404,0.305232,0.778469,0.254364,0.819938,0.864285,0.570753,0.529819,0.110714,0.883672,0.969664,0.31255,0.470952,0.168147,0.331636,0.182951,0.862866,0.976387,0.0681846,0.97539,0.386661,0.763679,0.368862,0.249384,0.247771,0.965558,0.644745,0.839073,0.948133,0.0683561,0.00675309,0.40667,0.881258,0.404225,0.265632,0.619574,0.887611,0.163132,0.524696,0.228095,0.313567,0.33182,0.363321,0.287039,0.356869,0.99989,0.347632,0.322996,0.770347,0.0466664,0.269354,0.588546,0.355111,0.825911,0.736192,0.460056,0.717314,0.739527,0.0427994,0.288917,0.503823,0.98223,0.065998,0.113878,0.627822,0.228689,0.415929,0.0136704,0.633581,0.103893,0.0947002,0.0577277,0.320218,0.119468,0.471045,0.00222075,0.625233,0.393703,0.791448,0.644162,0.582378,0.118467,0.365735,0.417183,0.908274,0.411669,0.692906,0.508958,0.931485,0.108105,0.0355947,0.324391,0.221904,0.00478655,0.464111,0.34018,0.306534,0.598385,0.382314,0.349219,0.326251,0.562023,0.328687,0.412231,0.372566,0.170109,0.681527,0.25704,0.200098,0.640328,0.156616,0.0716918,0.308263,0.55418,0.204794,0.600635,0.396372,0.506338,0.00913352,0.905659,0.822938,0.149482,0.481916,0.173399,0.168861,0.297457,0.082036,0.297177,0.591657,0.810155,0.495575,0.576254,0.036445,0.240198,0.24267,0.189463,0.686921,0.918159,0.406938,0.0631858,0.703378,0.956636,0.383603,0.339478,0.510706,0.166155,0.596313,0.117206,0.640833,0.326707,0.521761,0.124748,0.635859,0.691817,0.259463,0.748845,0.0063684,0.443964,0.113392,0.517836,0.730417,0.795201,0.447397,0.547756,0.870706,0.139308,0.134299,0.877543,0.00717586,0.580698,0.987886,0.134102,0.307648,0.90043,0.365322,0.821156,0.866432,0.806263,0.886852,0.233212,0.592009,0.0180119,0.780255,0.932819,0.830842,0.826859,0.642826,0.694861,0.508035,0.804071,0.913649,0.683154,0.401074,0.0158216,0.534556,0.142408,0.015199,0.420028,0.0485917,0.615782,0.875918,0.0740175,0.134758,0.204781,0.200602,|0.958379,0.986717,0.442229,0.0968108,0.051082,0.46796,0.875144,0.968586,0.334525,0.779456,0.633741,0.299727,0.159276,0.501573,0.281687,0.669068,0.263446,0.0767401,0.351941,0.662826,0.119949,0.478933,0.699553,0.0740359,0.0593692,0.435168,0.0159448,0.509748,0.630436,0.967332,0.432294,0.372562,0.827987,0.433533,0.928319,0.338316,0.882624,0.392493,0.0451385,0.881767,0.154143,0.0575113,0.234635,0.291239,0.0618405,0.572487,0.299516,0.0512785,0.951772,0.394422,0.40886,0.998906,0.632182,0.395909,0.0116051,0.802878,0.786644,0.704632,0.474161,0.39898,0.819435,0.549727,0.436159,0.75213,0.186765,0.952897,0.423041,0.719058,0.602368,0.644053,0.443369,0.138704,0.337561,0.671216,0.714678,0.230936,0.383595,0.368011,0.265923,0.344242,0.157556,0.490895,0.350046,0.856777,0.417886,0.396296,0.888676,0.687495,0.663264,0.404914,0.113258,0.513015,0.961599,0.86843,0.226737,0.591071,0.640379,0.112991,0.215581,0.188193,0.550379,0.418628,0.299131,0.611569,0.275094,0.228175,0.489642,0.727609,0.527758,0.86211,0.506035,0.452106,0.0862497,0.878447,0.446806,0.937933,0.54482,0.209283,0.0988356,0.633938,0.51878,0.802638,0.450106,0.600813,0.223424,0.813126,0.815002,0.596364,0.504198,0.263767,0.781686,0.667962,0.0698659,0.830303,0.421922,0.983355,0.786561,0.56229,0.567388,0.2167,0.476029,0.502019,0.473886,0.84216,0.00702119,0.535452,0.1388,0.553405,0.281604,0.323212,0.145938,0.489273,0.696612,0.872865,0.892523,0.900995,0.226585,0.674215,0.910713,0.664788,0.875526,0.22847,0.98613,0.991805,0.935537,0.616821,0.486523,0.594417,0.669933,0.357656,0.222662,0.953051,0.440049,0.261492,0.315247,0.439989,0.316831,0.5572,0.538344,0.197812,0.704718,0.203874,0.570948,0.565181,0.0807069,0.676627,0.111399,0.178775,0.690547,0.780695,0.965694,0.215623,0.462172,0.71886,0.490007,0.548019,0.107837,0.732026,0.419347,0.533808,0.65602,0.181989,0.728251,0.413871,0.968939,0.882441,0.275677,0.783495,0.227245,0.450027,0.82281,0.708733,0.282712,0.26456,0.273457,0.155091,0.640719,0.214554,0.795541,0.50579,0.582547,0.585714,0.242642,0.651033,0.684379,0.397684,0.623857,0.589571,0.95354,0.00305694,0.218125,0.587808,0.442104,0.209583,0.723751,0.583859,0.319195,0.864996,0.192864,0.218656,0.0802161,0.109623,0.439985,0.809375,0.143238,0.200584,0.581606,0.688351,0.382769,0.0225525,0.72542,0.100407,0.313593,0.843068,0.670882,0.742399,0.156518,0.738186,0.493834,0.138981,0.15348,0.0829767,0.460318,0.0450507,0.138249,0.7216,0.762117,0.988081,0.521436,0.117443,0.555361,0.463025,0.401566,0.144585,0.437626,0.0339971,0.237624,0.548205,0.111795,0.586972,0.141233,0.376009,0.468756,0.7458,0.198966,0.808122,0.469916,0.0468788,0.0616601,0.0664435,0.810218,0.859994,0.345999,0.717469,0.560641,0.15758,0.393765,0.144393,0.696472,0.870271,0.955811,0.876838,0.267068,0.438981,0.412396,0.228889,0.403626,0.52608,0.395638,0.579216,0.697345,0.132844,0.826882,0.0158095,0.262504,0.58325,0.676727,0.284928,0.0308446,0.978704,0.296817,0.0128362,0.935922,0.160479,0.122319,0.906933,0.979978,0.35352,0.322613,0.443138,0.840181,0.0720793,0.801256,0.850091,0.163371,0.433573,0.463123,0.996161,0.479144,0.446301,0.362532,0.213165,0.194955,0.823244,0.936368,0.51677,0.323017,0.524284,0.272698,0.920624,0.0810974,0.606955,0.0291216,0.706825,0.365138,0.0899286,0.544487,0.559001,0.262609,0.662102,0.177226,0.736582,0.969346,0.400643,0.84446,0.172293,0.917935,0.953281,0.248708,0.85438,0.16265,0.978181,0.732006,0.895659,0.394705,0.204387,0.0193831,0.714567,0.887523,0.855503,0.709143,0.940468,0.129037,0.982255,0.0581266,0.9591,0.838882,0.545924,0.36701,0.421615,0.368732,0.0963159,0.0306287,0.951537,0.982649,0.977137,0.241747,0.263441,0.769852,0.777,0.228115,0.0823417,0.680225,0.568172,0.370441,0.0879295,0.896526,0.166835,0.433297,0.893411,0.356451,0.334832,0.619152,0.793701,0.726457,0.815078,0.977649,0.937236,0.977798,0.138686,0.64209,0.292583,0.0729686,0.119183,0.677426,0.434754,0.304879,0.328861,0.846714,0.437487,0.094683,0.673819,0.473278,0.619911,0.0396698,0.025224,0.822124,0.557897,0.934015,0.948579,0.0412319,0.703337,0.377449,0.917059,0.0353223,0.372643,0.673641,0.318571,0.474809,0.594637,0.543475,0.0342208,0.716854,0.412037,0.302024,0.397961,0.460514,0.366681,0.0302801,0.715668,0.637545,0.211807,0.186623,0.115818,0.56153,0.490242,0.413727,0.943194,0.935247,0.435577,0.217494,0.490351,0.237429,0.156481,0.874155,0.533674,0.329546,0.864163,0.427583,0.11495,0.866981,0.878943,0.930904,0.317515,0.525932,0.569897,0.901724,0.640047,0.777349,0.0225407,0.988323,0.421619,0.601965,0.638886,0.734775,0.727727,0.0517065,0.397756,0.427882,0.230609,0.116985,0.0236494,0.904253,0.279839,0.298544,0.867593,0.705683,0.138684,0.409478,0.69025,0.505857,0.0333612,0.531236,0.89971,0.98714,0.0109491,0.458051,0.0290223,0.458928,0.882465,0.667958,0.714639,0.277712,0.0359886,0.862049,0.366818,0.117927,0.722898,0.636075,0.702014,0.917329,0.321872,0.291519,0.800451,0.89375,0.780905,0.988681,0.72136,0.517212,0.500027,0.938988,0.514659,0.543458,0.231198,0.225427,0.62781,0.307373,0.691195,0.0339162,0.736792,0.412996,0.688485,0.130715,0.17174,0.31227,0.259797,0.127694,0.892226,0.195362,0.550554,0.663815,0.16085,0.989558,0.942735,0.872036,0.444706,0.421584,0.698955,0.509387,0.263912,0.336326,0.469754,0.370685,0.203326,0.753765,0.550242,0.524283,0.700496,0.0562969,0.920603,0.00961554,0.273975,0.24856,0.278652,0.516405,0.267041,0.0349556,0.453981,0.315916,0.649161,0.653634,0.644183,0.913852,0.627728,0.627894,0.303677,0.29206,0.69471,0.0804195,0.392741,0.711539,0.839938,0.478797,0.791246,0.197385,0.552292,0.263362,0.934751,0.301277,0.93982,0.704506,0.444138,0.866008,0.398974,0.714051,0.734413,0.261789,0.0687685,0.925901,0.283156,0.221317,0.657405,0.940173,0.635364,0.930529,0.433118,0.794065,0.398556,0.208526,0.0145344,0.803738,0.495911,0.760804,0.839338,0.610369,0.927933,0.610706,0.491195,0.206813,0.243167,0.534464,0.206821,0.520946,0.147825,0.0854792,0.462091,0.883682,0.661091,0.61354,0.620529,0.838315,0.0378213,0.475117,0.733989,0.929896,0.251838,0.716445,0.596099,0.926796,0.759173,0.641572,0.4193,0.237462,0.576507,0.099668,0.076806,0.207702,0.516642,0.206061,0.0307326,0.576559,0.801242,0.723496,0.992523,0.431937,0.490047,0.881761,0.85852,0.663305,0.408525,0.806012,0.282719,0.80529,0.248146,0.403154,0.0273088,0.13192,0.539251,0.384169,0.734823,0.757763,0.771427,0.199368,0.997364,0.213832,0.215911,0.80616,0.754096,0.683329,0.619987,0.885763,0.111646,0.181843,0.944921,0.863489,0.0436999,0.921193,0.14855,0.72761,0.262718,0.00641954,0.194588,0.834645,0.461373,0.846003,0.161292,0.809438,0.69242,0.938425,0.979532,0.888324,0.908967,0.0195006,0.802342,0.721611,0.678581,0.238472,0.456209,0.648038,0.928182,0.223183,0.306829,0.516747,0.375775,0.857525,0.151862,0.663093,0.420994,0.353031,0.0407166,0.371823,0.0848549,0.622107,0.780123,0.0873923,0.436289,0.799282,0.0696121,0.132847,0.415779,0.974785,0.223252,0.654107,0.842254,0.399571,0.678631,0.257112,0.626734,0.91518,0.83998,0.427926,0.183307,0.0170396,0.232335,0.968442,0.618422,0.749218,0.302548,0.859818,0.450674,0.0266329,0.735451,0.077651,0.111838,0.420784,0.325818,0.895992,0.984131,0.180584,0.0381547,0.359878,0.109472,0.282614,0.544496,0.179088,0.524818,0.431056,0.549985,0.0863682,0.5908,0.569524,0.779556,0.791005,0.335259,0.927242,0.022014,0.0337844,0.793551,0.311464,0.509614,0.866367,0.388155,0.173832,0.260587,0.804486,0.582941,0.661575,0.837905,0.972336,0.849854,0.6002,0.554868,0.21388,0.29223,0.51452,0.264704,0.319689,0.679513,0.0452219,0.967408,0.807408,0.907725,0.380573,0.352889,0.629164,0.669872,0.716582,0.177393,0.238836,0.478732,0.501927,0.285775,0.642624,0.523542,0.740617,0.541306,0.612117,0.311776,0.855034,0.387804,0.0412557,0.900569,0.425555,0.958833,0.580327,0.41456,0.953393,0.577153,0.42014,0.630251,0.874106,0.0990548,0.469335,0.125613,0.415226,0.772774,0.450238,0.911518,0.329148,0.568293,0.176749,0.130441,0.34458,0.597029,0.384557,0.996052,0.434988,0.810497,0.214557,0.95856,0.349032,0.346334,0.464583,0.952729,0.914056,0.397834,0.248624,0.244031,0.0207051,0.650635,0.237663,0.334009,0.416237,0.233958,0.1846,0.461946,0.546098,0.446913,0.531734,0.882884,0.396568,0.556101,0.15163,0.735115,0.450485,0.415997,0.33293,0.386716,0.133257,0.024733,0.511126,0.17284,0.993104,0.440323,0.900652,0.440232,0.943926,0.983276,0.823398,0.0852351,0.433007,0.302403,0.681327,0.700492,0.309673,0.167928,0.918047,0.687223,0.98927,0.942865,0.268257,0.768847,0.412886,0.142194,0.462395,0.901444,0.304585,0.473606,0.261425,0.251604,0.0521822,0.147861,0.970775,0.749033,0.625845,0.467681,0.982934,0.30655,0.730081,0.774763,0.0078907,0.538553,0.143994,0.645995,0.990096,0.419277,0.583879,0.391321,0.868137,0.943391,0.926058,0.601428,0.847301,0.428586,0.745417,0.971226,0.279173,0.187838,0.126197,0.59139,0.838845,0.808445,0.933586,0.911332,0.0674765,0.524073,0.714238,0.721636,0.671298,0.252923,0.778216,0.974535,0.468534,0.2311,0.767976,0.309672,0.565768,0.0839477,0.718928,0.252529,0.287653,0.880883,0.800631,0.436485,0.444547,0.766005,0.892054,0.742278,0.959538,0.217606,0.228466,0.625078,0.087377,0.960837,0.157841,0.249259,0.242582,0.0712996,0.740006,0.680901,|0.602758,0.525864,0.799252,0.294155,0.394935,0.608777,0.298423,0.316573,0.0509021,0.751466,0.493275,0.731805,0.523019,0.220631,0.179183,0.175728,0.489333,0.0787396,0.628207,0.144641,0.224686,0.207066,0.774767,0.863483,0.514039,0.171693,0.866838,0.396969,0.551842,0.972556,0.907923,0.102612,0.13727,0.443275,0.431885,0.215421,0.34157,0.983138,0.155499,0.548596,0.897942,0.649415,0.445096,0.579518,0.487635,0.354208,0.892523,0.170547,0.281068,0.388294,0.39492,0.334898,0.22015,0.40189,0.348451,0.783758,0.805009,0.269531,0.0364693,0.0767167,0.921858,0.116728,0.788231,0.619463,0.399826,0.00856346,0.102514,0.543771,0.250594,0.585703,0.569971,0.803321,0.0978369,0.384964,0.874569,0.676717,0.0783447,0.918305,0.305829,0.53974,0.785381,0.111214,0.34086,0.670085,0.72161,0.945768,0.7351,0.428957,0.657254,0.931367,0.327367,0.803398,0.200724,0.47734,0.345298,0.624338,0.665337,0.141452,0.580608,0.269835,0.259416,0.177062,0.82004,0.175896,0.243294,0.778893,0.890702,0.0638685,0.320361,0.307995,0.935391,0.827731,0.370384,0.334506,0.4612,0.0304688,0.640256,0.816537,0.120725,0.649583,0.695775,0.850834,0.578417,0.802136,0.628849,0.252992,0.54337,0.0460152,0.0122679,0.0537926,0.906145,0.774991,0.677418,0.965011,0.662659,0.232708,0.363654,0.415929,0.631091,0.0662189,0.44052,0.225324,0.613585,0.200251,0.29747,0.92498,0.585272,0.464916,0.156659,0.252658,0.0112932,0.294673,0.0844128,0.0305728,0.784877,0.215712,0.989412,0.839742,0.840492,0.704856,0.623046,0.38317,0.118951,0.791713,0.443943,0.934358,0.18794,0.362238,0.939443,0.492508,0.406018,0.161861,0.743189,0.391256,0.908435,0.854179,0.862875,0.830789,0.356575,0.423576,0.205263,0.00787538,0.862399,0.153817,0.928891,0.299982,0.0811941,0.87317,0.129231,0.483239,0.0439435,0.592322,0.459592,0.687585,0.258286,0.261614,0.298052,0.00869709,0.4111,0.347894,0.843967,0.559887,0.835518,0.11235,0.856958,0.927923,0.411063,0.0543435,0.242742,0.726231,0.20579,0.389789,0.38115,0.954943,0.812844,0.820968,0.165778,0.329249,0.996729,0.287085,0.654266,0.281194,0.772983,0.594294,0.562395,0.139172,0.375055,0.193883,0.268505,0.706376,0.865458,0.955989,0.850843,0.180314,0.0905576,0.686814,0.362218,0.321755,0.348024,0.840517,0.386898,0.893162,0.838016,0.633845,0.511685,0.0886999,0.676485,0.443652,0.579106,0.402233,0.348361,0.766715,0.408924,0.485254,0.317052,0.629388,0.320427,0.513415,0.803275,0.191938,0.321328,0.888036,0.485238,0.0374452,0.638759,0.677058,0.309654,0.61578,0.995872,0.0818368,0.568151,0.175821,0.660986,0.97885,0.169973,0.437113,0.94829,0.464686,0.365532,0.401849,0.137559,0.487136,0.552085,0.946135,0.335852,0.646457,0.518586,0.189492,0.137518,0.455693,0.401152,0.461427,0.117798,0.154394,0.871595,0.476555,0.390635,0.961378,0.001939,0.257215,0.716721,0.48109,0.0674996,0.0974327,0.973323,0.414941,0.340644,0.324537,0.618594,0.202632,0.502965,0.925859,0.803158,0.143096,0.258833,0.801869,0.165644,0.525515,0.593651,0.1985,0.6897,0.299686,0.650482,0.315692,0.708013,0.93845,0.301239,0.471674,0.57049,0.528892,0.158378,0.994183,0.941445,0.11249,0.0176561,0.54681,0.489585,0.0484321,0.486094,0.957861,0.569039,0.781976,0.970536,0.382564,0.544536,0.789455,0.570863,0.134438,0.800545,0.131789,0.911384,0.858704,0.177257,0.210318,0.863166,0.270102,0.733714,0.651894,0.0596189,0.584811,0.426392,0.946548,0.403183,0.116418,0.755326,0.959497,0.0477704,0.68441,0.966809,0.448547,0.0500651,0.00903469,0.598436,0.360044,0.631115,0.797684,0.820439,0.869812,0.863197,0.955943,0.4384,0.344571,0.524615,0.607447,0.306462,0.953945,0.379464,0.339945,0.350155,0.217567,0.0838661,0.716026,0.513668,0.219647,0.957455,0.974299,0.591223,0.0176632,0.109216,0.147938,0.773104,0.443915,0.369946,0.562742,0.717311,0.981751,0.973883,0.106883,0.121225,0.214703,0.140971,0.520803,0.0600985,0.16576,0.241242,0.00334114,0.619323,0.912526,0.185941,0.0966315,0.784902,0.446006,0.161841,0.2426,0.751248,0.501907,0.185341,0.676444,0.956937,0.426446,0.114743,0.617014,0.434469,0.326477,0.705606,0.990133,0.701059,0.939598,0.853464,0.388361,0.396587,0.124752,0.00060451,0.76992,0.836463,0.642643,0.129059,0.325175,0.909805,0.606877,0.516212,0.980422,0.208922,0.314098,0.690528,0.44271,0.326259,0.141284,0.616347,0.684123,0.779827,0.274931,0.864649,0.500805,0.541308,0.0532548,0.620909,0.2002,0.567069,0.655487,0.0666342,0.720577,0.559014,0.256929,0.13693,0.868021,0.717785,0.424473,0.235039,0.745803,0.276426,0.833097,0.669393,0.176088,0.0856349,0.238763,0.863982,0.445497,0.479242,0.376853,0.3943,0.255718,0.201936,0.058025,0.352633,0.419961,0.177295,0.880591,0.572495,0.41105,0.556977,0.300212,0.329608,0.884099,0.523904,0.424867,0.844631,0.000954092,0.479269,0.521894,0.582289,0.77745,0.369354,0.0674689,0.567693,0.325657,0.303587,0.8314,0.195368,0.956312,0.399737,0.203083,0.972341,0.508071,0.548076,0.494384,0.289761,0.584305,0.102587,0.327275,0.164708,0.554424,0.120306,0.75439,0.983632,0.0382228,0.924952,0.234003,0.346383,0.399148,0.889322,0.525578,0.32914,0.0279934,0.161458,0.43771,0.627776,0.855665,0.87693,0.761147,0.989876,0.66379,0.626916,0.367105,0.542239,0.67296,0.0874889,0.269457,0.188721,0.0449166,0.0156083,0.0829955,0.84102,0.165252,0.114552,0.878992,0.211281,0.591298,0.841191,0.143787,0.59087,0.407801,0.241677,0.0232512,0.456982,0.733686,0.365462,0.217045,0.86365,0.737161,0.762232,0.220807,0.779796,0.71475,0.661411,0.0640348,0.867016,0.83083,0.205143,0.989656,0.782055,0.418478,0.821486,0.1181,0.682897,0.991683,0.172637,0.214252,0.214118,0.798335,0.642267,0.337353,0.0567588,0.736326,0.213198,0.724939,0.141867,0.418309,0.744453,0.526539,0.432017,0.458197,0.342937,0.0332974,0.484788,0.825086,0.633512,0.489926,0.518925,0.99304,0.0110688,0.139188,0.319861,0.565428,0.573526,0.755452,0.76032,0.58743,0.750713,0.779213,0.937873,0.681121,0.48817,0.587025,0.861083,0.294606,0.621422,0.358528,0.0968135,0.00634718,0.805142,0.0864277,0.90275,0.558784,0.971668,0.429016,0.75186,0.619622,0.508143,0.780825,0.996483,0.705274,0.0324213,0.697828,0.682063,0.536868,0.87936,0.913363,0.0734571,0.764755,0.25309,0.692448,0.0325053,0.506506,0.406362,0.170401,0.719409,0.298168,0.289002,0.246888,0.847773,0.516953,0.293136,0.97561,0.949029,0.0691195,0.427027,0.916914,0.164264,0.298661,0.948404,0.508002,0.656728,0.774834,0.0403338,0.45216,0.539808,0.840484,0.0490586,0.73923,0.149641,0.932738,0.10082,0.620385,0.633887,0.419434,0.915239,0.396616,0.288004,0.39426,0.774963,0.454684,0.331505,0.46672,0.0640913,0.842048,0.760452,0.428404,0.92789,0.25662,0.209377,0.859819,0.383121,0.911142,0.18574,0.498519,0.569096,0.191585,0.537968,0.350903,0.447895,0.931284,0.403669,0.403501,0.893451,0.535376,0.586564,0.465494,0.517486,0.413902,0.114839,0.847395,0.154724,0.234984,0.894199,0.845672,0.421043,0.850672,0.792155,0.958243,0.962958,0.206975,0.849452,0.989892,0.404353,0.235558,0.904631,0.256469,0.678363,0.351839,0.342625,0.223877,0.649249,0.63198,0.407924,0.0486292,0.782326,0.868952,0.714472,0.394924,0.0570745,0.496125,0.594043,0.396233,0.912273,0.0793161,0.678916,0.949794,0.491201,0.246054,0.259555,0.347994,0.477903,0.672736,0.519002,0.284356,0.56014,0.326766,0.131875,0.205244,0.810362,0.778349,0.769042,0.638055,0.219732,0.854885,0.885644,0.0507154,0.124227,0.903991,0.0814239,0.269249,0.94549,0.164022,0.357467,0.242012,0.582112,0.287612,0.163395,0.504906,0.265381,0.205657,0.730138,0.639729,0.125908,0.860068,0.38743,0.61713,0.917273,0.844557,0.497202,0.0769038,0.190956,0.34575,0.203793,0.765586,0.454332,0.0200982,0.864782,0.960829,0.810084,0.760044,0.946542,0.204151,0.736438,0.229029,0.363248,0.213756,0.546148,0.895589,0.444099,0.211741,0.0897235,0.935151,0.598429,0.176638,0.202813,0.0174655,0.277922,0.46217,0.936092,0.170637,0.422875,0.539227,0.622763,0.478814,0.300923,0.598117,0.372452,0.557922,0.165629,0.824615,0.740981,0.349833,0.209089,0.676344,0.994269,0.391251,0.411853,0.288481,0.750877,0.1008,0.4708,0.115205,0.624294,0.459208,0.810446,0.675079,0.732609,0.396515,0.835424,0.975532,0.544375,0.927787,0.73792,0.470572,0.439908,0.371226,0.813799,0.27468,0.210134,0.351428,0.819997,0.521618,0.0543547,0.745516,0.834901,0.296741,0.265593,0.907129,0.980921,0.194021,0.604726,0.825728,0.812823,0.978182,0.227963,0.678523,0.321852,0.719088,0.861591,0.198511,0.00322634,0.666799,0.590076,0.848158,0.82893,0.754504,0.802825,0.141131,0.481291,0.0985056,0.671035,0.197116,0.12005,0.325791,0.525191,0.485131,0.076095,0.909271,0.765411,0.685306,0.961612,0.438253,0.0766214,0.0637805,0.448679,0.358704,0.590059,0.306324,0.733634,0.703572,0.424927,0.841486,0.545985,0.648697,0.84992,0.787536,0.551737,0.235952,0.290536,0.759325,0.947505,0.698692,0.245994,0.25925,0.965834,0.866043,0.456502,0.246093,0.751504,0.286752,0.986014,0.586428,0.413658,0.0426173,0.161586,0.849842,0.632242,0.922491,0.90246,0.315052,0.0780816,0.0798451,0.979535,0.0186221,0.873704,0.722064,0.154047,0.216293,0.862144,0.653907,0.810158,0.819041,0.0896221,0.979307,0.698275,0.754284,0.845687,0.449653,0.750626,0.0155239,0.493477,0.403629,0.759176,0.279502,0.653321,0.658,0.481092,0.142421,0.492094,0.560528,0.510809,0.831941,0.692214,0.0791383,0.587351,0.830071,0.392394,0.930305,|0.719366,0.504283,0.681222,0.729275,0.172487,0.506879,0.456972,0.443577,0.771418,0.470748,0.898762,0.146702,0.148856,0.675428,0.575915,0.589693,0.752482,0.338025,0.533829,0.789048,0.216675,0.60801,0.751232,0.68269,0.0897694,0.403641,0.107859,0.0792475,0.782466,0.16232,0.894133,0.656315,0.230312,0.275053,0.0277013,0.692825,0.211868,0.561648,0.98641,0.402859,0.353415,0.458563,0.100196,0.973832,0.811683,0.552917,0.807397,0.970212,0.808758,0.0067907,0.0531133,0.540253,0.131234,0.215751,0.0255812,0.362201,0.30512,0.998286,0.088294,0.828254,0.365686,0.11903,0.985794,0.169138,0.288624,0.364305,0.918143,0.873063,0.0432331,0.380173,0.75144,0.965573,0.362902,0.696321,0.0582539,0.0442609,0.396421,0.957254,0.0607436,0.486387,0.793556,0.764778,0.133166,0.561181,0.719018,0.18505,0.110959,0.758598,0.578639,0.487129,0.253441,0.638331,0.795514,0.608885,0.356165,0.45633,0.338506,0.770224,0.625124,0.921998,0.126632,0.55811,0.651798,0.492102,0.424347,0.656436,0.270407,0.745371,0.662011,0.726795,0.599574,0.280242,0.530954,0.945633,0.617836,0.792465,0.537314,0.0838092,0.698699,0.280736,0.064683,0.447477,0.4291,0.161113,0.213832,0.849638,0.269563,0.375237,0.770118,0.969556,0.820292,0.119084,0.611354,0.0461962,0.7785,0.162305,0.374882,0.774087,0.485877,0.216133,0.926074,0.0867491,0.717829,0.862232,0.732906,0.826276,0.709956,0.453672,0.177736,0.252319,0.477265,0.388606,0.58123,0.836814,0.250858,0.112706,0.58962,0.569715,0.447479,0.15381,0.961761,0.573973,0.885689,0.554469,0.0774371,0.387969,0.807058,0.723128,0.073195,0.595917,0.92802,0.771033,0.528655,0.30145,0.156522,0.278119,0.537635,0.0964358,0.664828,0.858088,0.790677,0.603402,0.435924,0.157857,0.370318,0.456062,0.020245,0.460113,0.909563,0.412705,0.701829,0.429581,0.837395,0.704509,0.499724,0.0377206,0.719144,0.0232157,0.13617,0.200746,0.575466,0.958477,0.97567,0.690287,0.228383,0.988367,0.471301,0.496955,0.095226,0.273728,0.29231,0.602562,0.997038,0.818453,0.955875,0.668004,0.124984,0.481621,0.0820686,0.468675,0.0972623,0.899441,0.0676026,0.360017,0.186384,0.81543,0.305808,0.971129,0.0876532,0.0171564,0.886405,0.0400808,0.240652,0.756867,0.651881,0.683082,0.487951,0.621764,0.70925,0.0710928,0.845472,0.51331,0.259861,0.568697,0.757625,0.461184,0.612567,0.761283,0.0507542,0.405209,0.517818,0.17505,0.963521,0.062272,0.178381,0.400422,0.168849,0.713212,0.243637,0.818127,0.764997,0.463669,0.122546,0.954378,0.721851,0.664672,0.212291,0.369911,0.0960472,0.340611,0.079946,0.680504,0.0796303,0.508096,0.365824,0.489543,0.592299,0.665348,0.523783,0.502446,0.184797,0.225116,0.909638,0.296042,0.544421,0.00728565,0.780827,0.995332,0.290424,0.457272,0.571783,0.296071,0.692097,0.549494,0.216731,0.0118194,0.226255,0.579241,0.0374471,0.908249,0.0217295,0.759615,0.228236,0.0159015,0.0824032,0.704501,0.780361,0.129578,0.430577,0.324927,0.867712,0.82169,0.257676,0.712078,0.881092,0.267752,0.930006,0.551125,0.650747,0.255428,0.503004,0.00696266,0.475352,0.300592,0.289874,0.176468,0.291203,0.313001,0.403801,0.637323,0.448042,0.52113,0.0674468,0.262245,0.634578,0.256591,0.314215,0.706413,0.0783513,0.420196,0.908119,0.297021,0.885291,0.107843,0.354714,0.0530345,0.431555,0.859316,0.566746,0.0389696,0.421106,0.443425,0.0802767,0.750166,0.329277,0.355469,0.239713,0.263368,0.0409635,0.208753,0.497595,0.595295,0.384091,0.698921,0.672186,0.190273,0.140957,0.293468,0.984057,0.183466,0.209343,0.543239,0.287067,0.396204,0.584161,0.21352,0.673561,0.476063,0.380764,0.116955,0.81552,0.434725,0.376843,0.429625,0.571817,0.628153,0.70135,0.997491,0.201531,0.837778,0.440039,0.404628,0.372468,0.101243,0.742786,0.595384,0.572366,0.282574,0.158376,0.104836,0.023765,0.429354,0.0472271,0.230633,0.481487,0.974446,0.375335,0.859172,0.262954,0.0681254,0.0837376,0.214714,0.328105,0.659606,0.529656,0.364647,0.029383,0.535316,0.246387,0.480126,0.637431,0.701385,0.125093,0.277465,0.940849,0.363943,0.314381,0.46121,0.458306,0.542473,0.244051,0.364109,0.962912,0.337919,0.268149,0.262652,0.532931,0.0684702,0.446055,0.576064,0.748082,0.130343,0.608858,0.261225,0.162558,0.315232,0.911514,0.55827,0.356654,0.631036,0.410854,0.179105,0.000166237,0.964485,0.0520946,0.710705,0.743854,0.191312,0.777494,0.651661,0.579598,0.979048,0.198442,0.871244,0.358847,0.459615,0.345385,0.892463,0.780252,0.372554,0.963071,0.0688859,0.889358,0.412987,0.639051,0.963644,0.389092,0.0951276,0.301648,0.0225751,0.000261128,0.0532527,0.154996,0.455928,0.714875,0.30249,0.657591,0.308906,0.135762,0.447037,0.392797,0.939896,0.907119,0.976574,0.841007,0.835603,0.161258,0.891129,0.714382,0.818841,0.461635,0.0467947,0.916287,0.665027,0.844511,0.0302043,0.0851874,0.258474,0.758097,0.057028,0.228673,0.619749,0.346159,0.11158,0.890617,0.135555,0.712999,0.069291,0.908139,0.147984,0.286639,0.661445,0.247834,0.0711172,0.370374,0.685092,0.847914,0.266506,0.617176,0.668566,0.210204,0.187329,0.535735,0.520945,0.328899,0.989759,0.423714,0.392942,0.969762,0.0118256,0.137874,0.329622,0.0463779,0.308275,0.249219,0.0973362,0.62004,0.244534,0.69155,0.373126,0.889527,0.397038,0.252555,0.735436,0.92803,0.987625,0.992401,0.704102,0.671801,0.518487,0.514213,0.0115621,0.827827,0.885185,0.502395,0.990408,0.42961,0.653176,0.706413,0.58801,0.686613,0.951026,0.537841,0.508976,0.047262,0.867152,0.706843,0.0283015,0.171265,0.947202,0.642964,0.741292,0.998088,0.270172,0.218161,0.042224,0.490499,0.799113,0.76867,0.348257,0.343891,0.272927,0.936147,0.207912,0.226596,0.921079,0.783509,0.573841,0.67888,0.673274,0.502137,0.251735,0.865515,0.603638,0.884564,0.244235,0.0935915,0.944502,0.586745,0.934417,0.61689,0.869742,0.426401,0.922085,0.15017,0.1001,0.295224,0.256336,0.157484,0.20697,0.830045,0.333932,0.948734,0.076721,0.816996,0.592232,0.987532,0.0978742,0.597552,0.613193,0.138361,0.690054,0.482958,0.442858,0.396723,0.315368,0.126688,0.861462,0.641749,0.114736,0.378045,0.1787,0.0483733,0.202034,0.439708,0.148562,0.279795,0.416557,0.156068,0.317741,0.0396479,0.751839,0.66766,0.895016,0.276167,0.939093,0.766306,0.672299,0.951125,0.188022,0.550034,0.892768,0.537509,0.798408,0.543537,0.440345,0.703777,0.437787,0.609186,0.415863,0.515389,0.236196,0.821881,0.571423,0.276478,0.20963,0.362004,0.417192,0.405057,0.768893,0.338429,0.366914,0.508272,0.269177,0.775783,0.717523,0.117736,0.0879804,0.843262,0.229572,0.971535,0.395574,0.225068,0.849013,0.680037,0.0192451,0.360946,0.749199,0.341144,0.0416851,0.597839,0.937215,0.994318,0.667518,0.392542,0.0616599,0.621181,0.865294,0.826909,0.136742,0.487875,0.405536,0.737955,0.795874,0.639414,0.0987003,0.407406,0.92071,0.158139,0.0435636,0.323067,0.979427,0.0341202,0.786698,0.0614603,0.123029,0.43692,0.873771,0.0963514,0.295546,0.045917,0.247737,0.688307,0.389702,0.979858,0.757079,0.91407,0.127477,0.848521,0.228462,0.432302,0.854176,0.0485815,0.592767,0.479508,0.793308,0.226217,0.433523,0.902105,0.490901,0.313407,0.903364,0.526566,0.34736,0.801604,0.6387,0.167847,0.242809,0.277775,0.631583,0.259477,0.598237,0.207384,0.38232,0.378022,0.973955,0.112501,0.112396,0.895454,0.396538,0.29745,0.767866,0.788916,0.634212,0.0795307,0.80597,0.873184,0.829839,0.612283,0.169312,0.588395,0.245094,0.70679,0.876905,0.563667,0.651193,0.0269592,0.353107,0.670891,0.787608,0.0792054,0.225432,0.0604495,0.356491,0.219178,0.454328,0.186893,0.0972645,0.310727,0.330353,0.321413,0.178689,0.292106,0.299386,0.679678,0.326191,0.00305873,0.505663,0.931932,0.895784,0.215382,0.55019,0.181303,0.685266,0.597274,0.544564,0.635977,0.658078,0.721266,0.626901,0.332171,0.151376,0.874047,0.132659,0.705491,0.344168,0.370564,0.491322,0.927209,0.0574176,0.0468978,0.611561,0.235851,0.599229,0.287238,0.225994,0.0102309,0.132715,0.658636,0.563623,0.5376,0.792641,0.458047,0.682001,0.541999,0.190578,0.391035,0.00525528,0.637895,0.202623,0.787469,0.792455,0.682288,0.993153,0.378,0.0118852,0.63596,0.760471,0.518452,0.313241,0.124885,0.361894,0.609788,0.351708,0.953409,0.116262,0.60422,0.582755,0.621405,0.518375,0.214457,0.275695,0.588784,0.181713,0.414212,0.0580093,0.970794,0.723306,0.104057,0.876863,0.557137,0.523479,0.0998675,0.652462,0.783541,0.133894,0.621451,0.412284,0.475605,0.31054,0.798244,0.143797,0.82804,0.867376,0.373994,0.578556,0.855723,0.0692816,0.72567,0.132941,0.310103,0.586507,0.870252,0.321308,0.342627,0.191555,0.0303735,0.381636,0.428658,0.0913504,0.549787,0.490657,0.548528,0.0503502,0.25398,0.0437767,0.104276,0.125355,0.996691,0.496443,0.257304,0.839785,0.291132,0.962248,0.0350247,0.256541,0.532992,0.295738,0.251444,0.206252,0.631611,0.897697,0.144459,0.48666,0.127568,0.824796,0.491593,0.282849,0.521348,0.0924456,0.182373,0.0109938,0.5558,0.756848,0.79508,0.576793,0.38126,0.689122,0.0101991,0.601417,0.938946,0.990957,0.063112,0.506907,0.00320268,0.156254,0.646287,0.00042057,0.694678,0.034433,0.727698,0.0542241,0.829684,0.525893,0.00760937,0.958133,0.643837,0.333601,0.477826,0.89198,0.921145,0.803157,0.229657,0.60339,0.963884,0.813858,0.510211,0.163825,0.916979,0.948258,0.305773,0.366215,0.903591,0.479402,0.688022,0.0087713,0.524969,0.44777,0.74601,0.642789,0.327479,0.464346,0.254066,0.601541,0.881973,0.707263,0.519191,0.932575,0.0600604,0.185135,|0.35675,0.582428,0.0408681,0.250638,0.801729,0.465753,0.83883,0.320291,0.5269,0.103156,0.703206,0.377152,0.727472,0.383288,0.836798,0.895684,0.660429,0.596321,0.391456,0.0686721,0.499893,0.0444705,0.932744,0.514714,0.255747,0.306397,0.730536,0.0942894,0.207766,0.370394,0.0572522,0.0600249,0.424446,0.781479,0.750648,0.275818,0.717361,0.39058,0.410261,0.861033,0.296138,0.249944,0.349275,0.380088,0.757343,0.393405,0.622101,0.653514,0.148454,0.988816,0.623537,0.356454,0.918398,0.198535,0.197403,0.41622,0.0395096,0.4823,0.244573,0.203415,0.227267,0.0119423,0.219526,0.780431,0.908874,0.876377,0.969646,0.478038,0.410622,0.323343,0.449591,0.739998,0.785577,0.30012,0.366472,0.30406,0.862645,0.97814,0.439946,0.486184,0.157543,0.825853,0.0232874,0.699613,0.164307,0.852413,0.342739,0.154692,0.577007,0.960869,0.410857,0.403249,0.965615,0.770943,0.546896,0.787611,0.726719,0.501972,0.567924,0.177354,0.490475,0.0143562,0.0797594,0.221323,0.81681,0.232604,0.598285,0.146774,0.175935,0.290538,0.342477,0.794589,0.0711933,0.261875,0.814995,0.334725,0.860799,0.41661,0.0514187,0.0285116,0.160306,0.690306,0.754854,0.0442489,0.637252,0.0825395,0.617727,0.828514,0.416416,0.0763994,0.928584,0.124709,0.652183,0.782188,0.0432827,0.589481,0.670557,0.52003,0.610442,0.293461,0.74878,0.821652,0.35788,0.721332,0.890001,0.545431,0.474659,0.830466,0.181237,0.829819,0.660895,0.0414268,0.259126,0.152678,0.732418,0.135625,0.983488,0.0259943,0.346562,0.794312,0.836902,0.608381,0.250901,0.0315278,0.869689,0.190061,0.117574,0.963035,0.756026,0.775719,0.652934,0.449954,0.208587,0.816765,0.117432,0.477533,0.971819,0.565471,0.281161,0.376182,0.622478,0.895573,0.503979,0.163462,0.57896,0.0695006,0.898254,0.82335,0.565212,0.615235,0.702675,0.750017,0.625909,0.638887,0.813598,0.823357,0.974137,0.86604,0.00837934,0.171179,0.740708,0.152385,0.550413,0.812855,0.702151,0.938821,0.674589,0.248012,0.328999,0.545486,0.828649,0.119938,0.552262,0.398262,0.918128,0.248522,0.288858,0.560005,0.490037,0.15018,0.251236,0.768427,0.997059,0.859549,0.783841,0.191475,0.848384,0.216346,0.485216,0.386696,0.375668,0.838173,0.604103,0.626945,0.101083,0.682629,0.580888,0.0740117,0.62893,0.425685,0.712823,0.475778,0.152221,0.291013,0.80109,0.789382,0.669738,0.92769,0.419306,0.55789,0.517204,0.276623,0.536569,0.322701,0.285997,0.90187,0.466728,0.134274,0.0606127,0.0534618,0.795393,0.814417,0.957298,0.360554,0.231663,0.941321,0.28209,0.408868,0.216761,0.502492,0.36042,0.175119,0.39935,0.831163,0.360025,0.734972,0.00597763,0.642981,0.748909,0.130814,0.821173,0.581036,0.241025,0.586397,0.0368512,0.442741,0.665282,0.172969,0.604725,0.706672,0.59219,0.0633122,0.948199,0.339228,0.466748,0.163664,0.511324,0.952452,0.228198,0.217578,0.542012,0.584935,0.143517,0.167193,0.702982,0.490089,0.488391,0.46966,0.104212,0.209785,0.748067,0.655367,0.641856,0.358044,0.793283,0.11201,0.803883,0.0789552,0.320939,0.604844,0.583261,0.213307,0.354272,0.910669,0.013553,0.680157,0.675359,0.573729,0.965058,0.446192,0.370612,0.576658,0.510688,0.930954,0.894312,0.658949,0.201104,0.973821,0.614954,0.748155,0.102823,0.427339,0.357492,0.338937,0.258864,0.000535131,0.918351,0.69821,0.0293452,0.630693,0.413016,0.314982,0.351257,0.417758,0.324945,0.302813,0.87026,0.270546,0.662365,0.0528041,0.760089,0.803293,0.415372,0.76474,0.781646,0.472925,0.444045,0.556768,0.902255,0.301747,0.869064,0.228929,0.866333,0.843254,0.0142189,0.514207,0.838995,0.860277,0.570624,0.524545,0.451759,0.654466,0.0814909,0.434486,0.657537,0.0465004,0.0268278,0.119458,0.363341,0.0525227,0.442245,0.295813,0.311847,0.216068,0.136292,0.0487567,0.697634,0.688741,0.619717,0.351868,0.975978,0.126312,0.216742,0.946394,0.605656,0.409534,0.120076,0.28985,0.097061,0.334213,0.786831,0.807589,0.935629,0.188306,0.183912,0.67354,0.352913,0.369101,0.327818,0.771094,0.51372,0.775528,0.113225,0.868709,0.0633796,0.940718,0.715774,0.661141,0.174813,0.158419,0.770522,0.956311,0.0908933,0.609392,0.277489,0.660258,0.0780908,0.933794,0.372911,0.0467312,0.561014,0.590907,0.580898,0.895519,0.551829,0.409185,0.636644,0.0617081,0.121871,0.446286,0.0728579,0.48546,0.732782,0.907524,0.975687,0.826621,0.444161,0.21521,0.982897,0.289118,0.152345,0.621099,0.804717,0.974399,0.747897,0.755352,0.408763,0.0622694,0.208353,0.516659,0.466233,0.527392,0.953517,0.292927,0.794615,0.358921,0.692294,0.220084,0.399923,0.878689,0.640915,0.263106,0.419591,0.0434202,0.860445,0.18436,0.528677,0.77741,0.933718,0.534211,0.442609,0.270743,0.990233,0.959582,0.209305,0.186424,0.924784,0.277593,0.724587,0.13574,0.816306,0.491713,0.728309,0.427357,0.795004,0.145258,0.499491,0.645336,0.323187,0.163576,0.777716,0.0119849,0.114712,0.527032,0.271499,0.795295,0.170387,0.245971,0.666547,0.967161,0.204572,0.194053,0.00163722,0.648471,0.116518,0.688015,0.259306,0.0128672,0.514559,0.678158,0.622667,0.155445,0.725817,0.64804,0.936453,0.856243,0.314927,0.186781,0.727505,0.910664,0.443136,0.402558,0.952627,0.318669,0.289479,0.744992,0.449581,0.264487,0.20335,0.594553,0.125899,0.333157,0.809439,0.389416,0.506022,0.227933,0.14785,0.466814,0.202686,0.57384,0.739864,0.482372,0.420384,0.377511,0.678999,0.96688,0.802227,0.717364,0.044994,0.539597,0.625445,0.491226,0.79731,0.896474,0.138783,0.0135184,0.505128,0.418107,0.604025,0.647745,0.11584,0.00211048,0.589549,0.161222,0.588121,0.719769,0.487627,0.177628,0.71322,0.927844,0.496312,0.0867015,0.515379,0.633013,0.0166515,0.783468,0.833388,0.635386,0.0383798,0.651507,0.143268,0.120906,0.177729,0.157904,0.0564072,0.336394,0.274765,0.850361,0.717262,0.401377,0.683018,0.317561,0.862762,0.840015,0.87034,0.32937,0.38771,0.24534,0.889226,0.058911,0.423235,0.875542,0.194795,0.287429,0.815998,0.885781,0.293932,0.880925,0.294336,0.158222,0.934268,0.616305,0.367126,0.792045,0.464331,0.447923,0.330273,0.707286,0.0370929,0.216053,0.674058,0.593548,0.604606,0.178383,0.649449,0.699643,0.331702,0.00782603,0.555448,0.964006,0.127674,0.0287663,0.233278,0.876903,0.248923,0.657029,0.354715,0.0390332,0.438655,0.0401751,0.649252,0.116629,0.372869,0.165045,0.261587,0.501762,0.938235,0.194757,0.119115,0.622506,0.386797,0.599516,0.0881151,0.313692,0.462022,0.575085,0.966433,0.481052,0.107033,0.238107,0.0420288,0.0268123,0.932649,0.337097,0.846291,0.250576,0.432799,0.528985,0.500686,0.610888,0.977335,0.0394167,0.643336,0.347829,0.069976,0.542874,0.28691,0.524275,0.779242,0.138277,0.236555,0.270417,0.4162,0.962573,0.945633,0.629432,0.591,0.766587,0.404662,0.586195,0.942588,0.358146,0.256578,0.299708,0.476808,0.175931,0.875358,0.248992,0.987378,0.662804,0.486382,0.124916,0.904797,0.829908,0.872851,0.0205508,0.747763,0.478369,0.115933,0.205645,0.162008,0.0581117,0.350884,0.229617,0.710485,0.618872,0.51197,0.355075,0.945254,0.823082,0.0443513,0.558034,0.622182,0.493728,0.969172,0.532556,0.459494,0.165087,0.289418,0.88409,0.636875,0.129718,0.0725802,0.827159,0.716419,0.969858,0.594978,0.876036,0.272463,0.309504,0.959231,0.974362,0.652281,0.632443,0.84908,0.487805,0.681563,0.890651,0.744454,0.429688,0.364132,0.895604,0.949969,0.985211,0.892273,0.241162,0.15378,0.882463,0.251686,0.702449,0.80386,0.773721,0.739693,0.403373,0.330031,0.0673784,0.78144,0.0185966,0.901108,0.752178,0.013862,0.654436,0.0139005,0.345624,0.845978,0.968374,0.713641,0.552823,0.813177,0.177298,0.0730528,0.280835,0.972332,0.603606,0.334327,0.331062,0.0785755,0.474509,0.666133,0.397445,0.108783,0.765511,0.794223,0.297186,0.645835,0.350237,0.73601,0.740605,0.341253,0.767967,0.671808,0.351513,0.749704,0.627583,0.578682,0.124662,0.203272,0.77622,0.169625,0.249361,0.0645229,0.231103,0.466617,0.959158,0.812533,0.988825,0.221668,0.0952811,0.500457,0.159368,0.348272,0.648278,0.729608,0.79661,0.297903,0.298721,0.586357,0.909493,0.495535,0.0579253,0.836316,0.679982,0.351279,0.0383266,0.736077,0.689827,0.218397,0.96226,0.481469,0.753173,0.376449,0.00355673,0.276204,0.42208,0.959542,0.51491,0.83988,0.36701,0.992785,0.670782,0.466701,0.210846,0.451594,0.1816,0.775574,0.14235,0.563355,0.740015,0.808417,0.349772,0.328388,0.218348,0.74955,0.436793,0.891116,0.173751,0.0497393,0.0253851,0.93856,0.0281424,0.563177,0.994466,0.167272,0.93393,0.0461106,0.549488,0.13521,0.631212,0.743924,0.379531,0.471994,0.455894,0.930538,0.188422,0.375594,0.631891,0.954433,0.642897,0.925462,0.109829,0.570934,0.43425,0.654269,0.381262,0.00463498,0.0751253,0.0444666,0.0340406,0.0960524,0.940971,0.302359,0.877612,0.668545,0.398102,0.865405,0.719053,0.384209,0.319356,0.396771,0.0547712,0.280725,0.63347,0.104551,0.492737,0.789179,0.186831,0.374532,0.13055,0.70756,0.931202,0.112657,0.587135,0.412005,0.355195,0.956106,0.654686,0.20983,0.820383,0.820214,0.381941,0.311446,0.550654,0.848149,0.535231,0.207214,0.640469,0.753683,0.681165,0.435408,0.352095,0.766056,0.43539,0.19815,0.218087,0.5146,0.982787,0.639922,0.750842,0.270467,0.300549,0.684521,0.410649,0.0149302,0.21311,0.0352237,0.27266,0.261779,0.278313,0.0525971,0.981935,0.233249,0.357609,0.486522,0.599938,0.77412,0.509491,0.524205,0.350185,0.110092,0.682352,0.690705,0.373073,0.8426,0.239807,0.591828,0.663661,0.829792,0.0240659,0.322982,0.69133,|0.00342429,0.376363,0.593047,0.428656,0.445588,0.438277,0.114745,0.987993,0.159948,0.72195,0.0218686,0.923346,0.40001,0.885116,0.445801,0.563904,0.20515,0.749929,0.427123,0.291281,0.815397,0.798974,0.774807,0.533158,0.459399,0.856629,0.800219,0.796988,0.181831,0.885294,0.802568,0.15003,0.893802,0.56506,0.674154,0.419118,0.0619789,0.424239,0.39642,0.173082,0.36457,0.991305,0.0301806,0.142771,0.592876,0.181658,0.522581,0.800117,0.829842,0.174031,0.180695,0.699355,0.574672,0.0940645,0.338909,0.723123,0.0565457,0.113481,0.511201,0.834303,0.758144,0.908974,0.327879,0.164522,0.711937,0.26276,0.596179,0.224189,0.50209,0.671002,0.123957,0.7384,0.254116,0.585123,0.597472,0.114713,0.693398,0.840061,0.617339,0.921404,0.26354,0.495888,0.0142002,0.405464,0.329011,0.577144,0.112656,0.240417,0.703321,0.179893,0.263169,0.504868,0.937847,0.433982,0.692247,0.826804,0.597871,0.643762,0.0320451,0.946969,0.55541,0.0464487,0.583638,0.0282718,0.460634,0.071466,0.120126,0.782776,0.995453,0.108078,0.224456,0.0310814,0.114865,0.66193,0.0105321,0.956579,0.744761,0.404251,0.124937,0.261668,0.959487,0.125492,0.555577,0.0586599,0.485102,0.896545,0.565355,0.582793,0.365414,0.9497,0.247951,0.137897,0.109289,0.824069,0.977362,0.0502504,0.828597,0.353205,0.00351429,0.595404,0.702739,0.837122,0.434549,0.551526,0.856435,0.0102493,0.314877,0.868064,0.0676016,0.469047,0.877323,0.693705,0.544251,0.708658,0.156944,0.887532,0.671089,0.446677,0.155895,0.126609,0.58867,0.710923,0.328297,0.73617,0.0858139,0.211556,0.839044,0.110903,0.155079,0.334082,0.609945,0.93381,0.645985,0.0397657,0.87576,0.991312,0.533984,0.00681967,0.802663,0.587172,0.966391,0.492595,0.712571,0.284795,0.19029,0.305633,0.115886,0.993538,0.465216,0.769143,0.832678,0.967465,0.70464,0.00594115,0.602092,0.62715,0.314456,0.444005,0.700834,0.53471,0.532346,0.62949,0.918494,0.0329204,0.167853,0.850587,0.578574,0.42729,0.102514,0.499992,0.779373,0.543759,0.308061,0.839833,0.434056,0.734376,0.161322,0.45942,0.035868,0.83948,0.355844,0.848146,0.624053,0.833991,0.591802,0.522178,0.134704,0.920126,0.60791,0.672452,0.326962,0.779441,0.710105,0.879684,0.152006,0.364248,0.476284,0.674537,0.816953,0.981246,0.0342569,0.836403,0.414519,0.695079,0.433544,0.749454,0.232268,0.638132,0.352883,0.49665,0.052123,0.405657,0.933457,0.105267,0.554813,0.00573879,0.256123,0.0295943,0.966596,0.756447,0.264403,0.168156,0.135188,0.0999449,0.99328,0.227716,0.931449,0.739928,0.123257,0.193337,0.0127967,0.219141,0.735051,0.243739,0.627968,0.598007,0.20607,0.734562,0.766545,0.490994,0.254464,0.904152,0.288505,0.39374,0.62092,0.295135,0.853327,0.0322152,0.410029,0.85677,0.597983,0.293676,0.928352,0.896066,0.875764,0.0391877,0.448347,0.25353,0.317587,0.838841,0.158191,0.993741,0.788521,0.122226,0.46097,0.319102,0.892545,0.0493368,0.368125,0.660021,0.588657,0.169887,0.19282,0.0129336,0.971541,0.0364497,0.43641,0.519738,0.721329,0.597886,0.166432,0.254549,0.542212,0.228389,0.129989,0.0264571,0.62209,0.705536,0.77942,0.974209,0.874377,0.0197592,0.265214,0.535255,0.854741,0.368845,0.273804,0.367923,0.12622,0.664174,0.327608,0.145424,0.00638831,0.893542,0.28246,0.729472,0.540131,0.0852264,0.383675,0.532224,0.0614178,0.526686,0.278496,0.429496,0.695094,0.878921,0.731938,0.140115,0.773764,0.313113,0.562233,0.3305,0.981868,0.91104,0.131385,0.279038,0.465614,0.227922,0.508353,0.974189,0.00287491,0.775319,0.953931,0.727799,0.283359,0.647094,0.858088,0.845199,0.597513,0.310187,0.552748,0.811036,0.643356,0.281909,0.549978,0.0136368,0.173612,0.293955,0.757833,0.353387,0.523169,0.830108,0.229495,0.505533,0.120274,0.906972,0.161534,0.45342,0.425246,0.762101,0.229195,0.122359,0.0716961,0.249698,0.422092,0.961446,0.0406011,0.217312,0.423064,0.560043,0.486671,0.704031,0.347421,0.094968,0.587601,0.304839,0.0761508,0.35745,0.504522,0.252776,0.405319,0.84431,0.587045,0.423859,0.165843,0.279783,0.763874,0.573,0.377768,0.188963,0.184223,0.0335196,0.580339,0.387348,0.497076,0.0195265,0.299224,0.623741,0.164412,0.28751,0.620103,0.0861946,0.907151,0.0352443,0.341924,0.304839,0.372654,0.66409,0.270781,0.338712,0.672706,0.754554,0.757011,0.433787,0.3859,0.847343,0.589819,0.0171008,0.280602,0.675964,0.0489827,0.772588,0.610457,0.0982224,0.247025,0.092335,0.238521,0.59902,0.721641,0.699247,0.0467381,0.323478,0.892908,0.407778,0.643816,0.839742,0.611599,0.22085,0.511099,0.637398,0.0368055,0.274682,0.429248,0.567587,0.831921,0.952674,0.406721,0.696588,0.872545,0.415151,0.539008,0.521894,0.237337,0.687323,0.223085,0.644054,0.859521,0.0138487,0.943934,0.895146,0.0536557,0.627853,0.838796,0.514418,0.716645,0.956495,0.0341026,0.46502,0.238401,0.203854,0.284729,0.15253,0.870555,0.010181,0.923327,0.754976,0.457869,0.0728052,0.2629,0.617013,0.843522,0.376126,0.319204,0.0908517,0.688259,0.486984,0.550154,0.493244,0.156911,0.630228,0.260971,0.873481,0.0505337,0.888859,0.185199,0.520127,0.347121,0.200011,0.405279,0.734098,0.0733947,0.226065,0.676538,0.0826433,0.344258,0.636037,0.752761,0.701814,0.347036,0.629941,0.239289,0.413808,0.98036,0.911679,0.233319,0.0840723,0.226613,0.348797,0.857037,0.215733,0.540036,0.588516,0.996274,0.655381,0.111939,0.878584,0.326201,0.967566,0.0114214,0.351405,0.377336,0.370354,0.542386,0.559928,0.872597,0.835187,0.992072,0.580971,0.957424,0.529365,0.0239408,0.795463,0.178775,0.748358,0.059795,0.670825,0.650009,0.98755,0.386713,0.700944,0.66964,0.126444,0.0801429,0.169929,0.517486,0.495911,0.369836,0.964051,0.109304,0.308646,0.439489,0.0389423,0.939322,0.500082,0.130502,0.676602,0.530955,0.152424,0.109958,0.686941,0.843252,0.554763,0.0983807,0.564565,0.193258,0.455663,0.21044,0.718315,0.273832,0.0336258,0.209342,0.615598,0.529596,0.862751,0.500797,0.274579,0.192621,0.118436,0.477272,0.574148,0.266473,0.279785,0.287456,0.386951,0.0686291,0.53446,0.44177,0.718354,0.62185,0.622608,0.972508,0.30446,0.343647,0.0285659,0.461349,0.491512,0.306877,0.497361,0.00678372,0.351453,0.480686,0.734172,0.527205,0.257075,0.779305,0.887903,0.871889,0.204353,0.00909728,0.520497,0.519437,0.999368,0.535219,0.0051012,0.413552,0.624721,0.759082,0.556423,0.216835,0.426972,0.814192,0.171922,0.318676,0.580141,0.162844,0.798944,0.215915,0.156052,0.22356,0.248029,0.977629,0.942922,0.937258,0.296045,0.923874,0.020768,0.743997,0.824456,0.853531,0.861785,0.826301,0.272492,0.0599564,0.123769,0.385715,0.462392,0.158242,0.141342,0.749422,0.343924,0.0734251,0.176843,0.987662,0.442729,0.0861245,0.8078,0.828418,0.669315,0.744589,0.54865,0.521512,0.663133,0.656014,0.549784,0.218562,0.0712715,0.368304,0.998026,0.350733,0.622171,0.176534,0.939509,0.901785,0.892068,0.62355,0.511224,0.427562,0.663096,0.0170739,0.682345,0.722359,0.80291,0.157582,0.461842,0.951483,0.604748,0.852693,0.788079,0.646294,0.0253717,0.310434,0.0731272,0.806221,0.33782,0.959983,0.55178,0.405429,0.896516,0.261297,0.166593,0.642931,0.186029,0.721668,0.168411,0.163241,0.409212,0.955178,0.268101,0.56172,0.709714,0.230586,0.966608,0.233967,0.416602,0.959952,0.310134,0.262657,0.412995,0.120025,0.30109,0.985552,0.355986,0.451065,0.826036,0.110377,0.362253,0.274831,0.160668,0.24412,0.0501683,0.359858,0.772101,0.398814,0.092031,0.207238,0.62276,0.216341,0.918538,0.28254,0.563648,0.63157,0.414969,0.391075,0.0767633,0.535065,0.958335,0.713827,0.0642922,0.857623,0.649211,0.725375,0.642476,0.100895,0.404365,0.547503,0.542019,0.912178,0.511792,0.945088,0.14477,0.550026,0.759345,0.613976,0.628288,0.379224,0.424637,0.255003,0.693267,0.160128,0.836754,0.256112,0.391971,0.182872,0.426058,0.700024,0.697274,0.259814,0.422168,0.527086,0.0856357,0.0626641,0.0773209,0.138355,0.0350837,0.682478,0.197072,0.390493,0.906789,0.399373,0.89792,0.0571844,0.676612,0.137037,0.152583,0.74166,0.492034,0.959846,0.0244523,0.924861,0.14592,0.629647,0.282592,0.794645,0.938648,0.435497,0.386919,0.111027,0.0956168,0.0259101,0.559409,0.606144,0.492123,0.945104,0.35351,0.378318,0.641677,0.375481,0.303324,0.648284,0.549869,0.242268,0.114938,0.101096,0.673243,0.820917,0.0799121,0.595199,0.927859,0.625802,0.80699,0.138261,0.223732,0.685237,0.825257,0.293973,0.24833,0.477968,0.0783385,0.610264,0.326327,0.729149,0.628993,0.839039,0.306315,0.931766,0.0187954,0.516848,0.713458,0.88408,0.259078,0.0844883,0.98235,0.502624,0.435188,0.889631,0.734163,0.234646,0.549356,0.701483,0.415189,0.428839,0.752274,0.143032,0.0705449,0.682795,0.702712,0.547423,0.127167,0.180791,0.146916,0.417398,0.90973,0.503713,0.32531,0.844887,0.597694,0.51277,0.37235,0.0123364,0.834463,0.881082,0.217128,0.454345,0.908473,0.338005,0.485309,0.859633,0.952917,0.530517,0.836558,0.226811,0.734746,0.631177,0.887832,0.769072,0.307052,0.522923,0.0269113,0.36455,0.50871,0.585522,0.384543,0.688644,0.582739,0.172582,0.418307,0.1498,0.691705,0.469841,0.645121,0.342174,0.825641,0.86636,0.11865,0.37947,0.133543,0.989223,0.671758,0.00152367,0.00197703,0.29571,0.0625499,0.412213,0.847967,0.815173,0.871454,0.169181,0.868696,0.493458,0.205301,0.218706,0.293056,0.859835,0.272023,0.610181,0.845341,0.297328,0.559153,0.446359,0.892323,0.183769,0.212779,0.858588,0.617551,0.193243,0.26628,0.281862,0.647758,0.914953,0.458083,|0.986062,0.0303543,0.0031302,0.934219,0.815259,0.639247,0.700125,0.101369,0.793458,0.971373,0.141136,0.121578,0.346374,0.471486,0.523413,0.440155,0.739928,0.823113,0.656373,0.612808,0.786397,0.289741,0.115576,0.857665,0.731134,0.265379,0.644384,0.0315399,0.580409,0.952445,0.980681,0.442349,0.00393814,0.639775,0.071831,0.888788,0.750599,0.992103,0.197146,0.10903,0.0753152,0.476682,0.939877,0.15116,0.159297,0.619199,0.662011,0.676337,0.766689,0.920028,0.523272,0.207597,0.695334,0.415346,0.385438,0.50179,0.58967,0.213894,0.978605,0.510128,0.302419,0.735969,0.146872,0.855941,0.843998,0.0786239,0.451961,0.81847,0.862089,0.804096,0.955477,0.0302135,0.104971,0.0335796,0.384639,0.832388,0.729187,0.659109,0.136862,0.027428,0.36541,0.698792,0.998371,0.60152,0.0159612,0.107416,0.101535,0.20934,0.915556,0.359419,0.549259,0.313375,0.646895,0.29054,0.619462,0.631298,0.231216,0.465864,0.418752,0.378943,0.692393,0.543628,0.880061,0.00829339,0.443006,0.808404,0.280808,0.0666478,0.362968,0.0481739,0.322109,0.871617,0.569943,0.172864,0.0572251,0.0789124,0.285321,0.498191,0.699978,0.27502,0.432104,0.198514,0.0647299,0.502423,0.82989,0.84921,0.679826,0.354978,0.539928,0.439807,0.498934,0.816192,0.952059,0.729892,0.458243,0.230065,0.660965,0.0199313,0.1005,0.0352342,0.214454,0.796067,0.0625889,0.815561,0.458514,0.898775,0.997652,0.488549,0.206541,0.611419,0.963482,0.561801,0.0110995,0.761668,0.630897,0.439991,0.596739,0.150907,0.867999,0.165347,0.865722,0.966693,0.0702811,0.093882,0.558612,0.177923,0.66478,0.542588,0.1733,0.197278,0.485477,0.342279,0.252233,0.687387,0.59636,0.822616,0.651385,0.155571,0.29432,0.855043,0.595837,0.837716,0.588685,0.418703,0.815891,0.506792,0.439346,0.979452,0.681931,0.0963188,0.0410094,0.620665,0.0135262,0.187052,0.833933,0.803426,0.226891,0.82485,0.968968,0.436671,0.8579,0.537298,0.550754,0.353586,0.352727,0.189259,0.284198,0.520259,0.104928,0.833562,0.830095,0.459536,0.602085,0.946291,0.281801,0.364983,0.0574993,0.413411,0.321023,0.173719,0.910948,0.0945962,0.549578,0.59729,0.0625117,0.361144,0.225983,0.851434,0.811867,0.980987,0.352108,0.298238,0.587101,0.979855,0.73247,0.852392,0.92611,0.324505,0.538609,0.835405,0.480443,0.428593,0.981655,0.643421,0.944397,0.567284,0.104379,0.667199,0.418031,0.373845,0.904193,0.0501777,0.645159,0.519982,0.704309,0.666068,0.259128,0.161512,0.548471,0.486596,0.257386,0.837116,0.20921,0.871805,0.419919,0.209776,0.298555,0.511493,0.438452,0.0322028,0.102207,0.598407,0.0807227,0.812762,0.430134,0.873194,0.891945,0.680325,0.848399,0.962497,0.0367594,0.828643,0.0704361,0.307747,0.192176,0.0201432,0.678487,0.90211,0.678048,0.105243,0.255579,0.616928,0.419176,0.407952,0.836858,0.129262,0.0891728,0.404604,0.605683,0.13468,0.524287,0.224696,0.166016,0.316235,0.863813,0.811353,0.819725,0.544393,0.230828,0.872833,0.234339,0.0399145,0.244502,0.791989,0.257201,0.00663412,0.331132,0.813506,0.0872307,0.966448,0.818957,0.206858,0.271094,0.167165,0.630628,0.110539,0.498552,0.0411127,0.791364,0.857273,0.0252771,0.917272,0.164984,0.314798,0.904681,0.931901,0.290043,0.138223,0.126061,0.700809,0.668682,0.32815,0.635452,0.86499,0.336509,0.115504,0.497639,0.271903,0.316594,0.598522,0.140726,0.809331,0.270425,0.425521,0.953991,0.162098,0.830384,0.419547,0.561286,0.464408,0.677372,0.112129,0.912829,0.884461,0.491892,0.836878,0.543433,0.712212,0.0175337,0.843732,0.605186,0.267444,0.0908931,0.419977,0.68958,0.989655,0.602385,0.00649142,0.435503,0.0407934,0.143791,0.5089,0.837334,0.0170082,0.316258,0.75853,0.619782,0.698416,0.493446,0.869953,0.607344,0.669388,0.966874,0.942511,0.0734845,0.370845,0.625229,0.353178,0.242027,0.771856,0.877878,0.69337,0.683511,0.62441,0.947699,0.557251,0.807719,0.725431,0.272924,0.393062,0.260755,0.341394,0.549495,0.300894,0.723056,0.131072,0.695655,0.8674,0.0721942,0.590879,0.834792,0.929196,0.702639,0.733684,0.52177,0.517223,0.444875,0.485357,0.634286,0.618781,0.0705523,0.897286,0.574003,0.00151336,0.268216,0.0756262,0.225632,0.000368237,0.401965,0.227671,0.277218,0.813555,0.543532,0.343526,0.453773,0.502804,0.261549,0.849792,0.8323,0.987807,0.513065,0.308317,0.199373,0.49223,0.120952,0.927059,0.381947,0.638203,0.181158,0.830128,0.719808,0.372893,0.351384,0.379145,0.506108,0.163523,0.0738694,0.00012517,0.499306,0.984208,0.504913,0.738539,0.702892,0.642637,0.590354,0.848381,0.901349,0.606892,0.849127,0.186751,0.821579,0.0206649,0.482003,0.382077,0.157697,0.119075,0.0286393,0.233411,0.107283,0.0186808,0.227354,0.473249,0.284778,0.339298,0.391426,0.886761,0.43449,0.298442,0.384487,0.774965,0.0780588,0.659598,0.65578,0.518996,0.29045,0.417315,0.285166,0.0322293,0.832386,0.263703,0.297631,0.294014,0.943096,0.835719,0.356409,0.0113857,0.0652018,0.865958,0.906346,0.185399,0.370534,0.658227,0.648983,0.329678,0.301502,0.462511,0.958848,0.24526,0.208536,0.433299,0.576121,0.483361,0.382841,0.329619,0.302362,0.456781,0.717133,0.90142,0.586139,0.0891279,0.31815,0.226467,0.583651,0.970131,0.120382,0.728293,0.45876,0.895716,0.192101,0.177288,0.658754,0.179851,0.110587,0.280841,0.0416254,0.602267,0.896737,0.56057,0.76815,0.74528,0.129172,0.357016,0.164665,0.383542,0.888584,0.632604,0.79914,0.751775,0.38666,0.273698,0.866234,0.656132,0.132809,0.762774,0.277598,0.828636,0.965537,0.481844,0.030949,0.343095,0.374558,0.961743,0.626223,0.0349372,0.882014,0.217128,0.159511,0.64571,0.090816,0.270207,0.0466555,0.750575,0.0116054,0.139728,0.863407,0.00539863,0.908774,0.266295,0.907422,0.321516,0.94395,0.439208,0.671664,0.36149,0.220179,0.299003,0.497727,0.647798,0.107043,0.639547,0.53491,0.84531,0.130068,0.878477,0.0317346,0.392915,0.810018,0.444071,0.84326,0.30961,0.365415,0.128803,0.561016,0.244529,0.175387,0.123008,0.921153,0.0525476,0.409633,0.102275,0.0511966,0.250728,0.181418,0.240499,0.166009,0.561791,0.275803,0.236485,0.631656,0.786413,0.0149519,0.32462,0.647565,0.91885,0.545552,0.630762,0.615586,0.264349,0.904543,0.761856,0.572136,0.282489,0.692028,0.474969,0.090736,0.790999,0.968038,0.764518,0.411811,0.0186758,0.931745,0.233445,0.914515,0.686597,0.620244,0.755742,0.39807,0.708681,0.785327,0.396758,0.154809,0.528522,0.933221,0.605278,0.571365,0.860494,0.796541,0.782287,0.378341,0.666046,0.694294,0.738053,0.936565,0.787504,0.752896,0.863535,0.527682,0.870064,0.952732,0.0705938,0.66769,0.626582,0.93675,0.480311,0.4845,0.445052,0.309548,0.919404,0.243114,0.994987,0.243375,0.463497,0.168701,0.632953,0.80042,0.615655,0.184211,0.595951,0.806375,0.881508,0.501781,0.991053,0.389378,0.0129748,0.912472,0.598872,0.106779,0.171231,0.284192,0.444343,0.745709,0.579574,0.505893,0.154465,0.544303,0.565831,0.76812,0.87676,0.70473,0.135085,0.98813,0.699296,0.104931,0.747359,0.702527,0.0260211,0.00659966,0.717068,0.0377873,0.374161,0.183234,0.129276,0.0553575,0.518467,0.656691,0.757027,0.695764,0.778318,0.4319,0.834166,0.12738,0.340197,0.0388111,0.925795,0.586844,0.828536,0.814042,0.420336,0.893812,0.536999,0.394087,0.655809,0.0999172,0.236323,0.17929,0.241342,0.153422,0.613175,0.387762,0.431894,0.490225,0.752843,0.73769,0.0331889,0.231962,0.854233,0.751521,0.555942,0.25089,0.181809,0.755151,0.892947,0.257209,0.365789,0.541233,0.581365,0.83902,0.249339,0.165305,0.976725,0.120576,0.107625,0.941327,0.579663,0.284339,0.394196,0.242068,0.73433,0.794459,0.856658,0.629599,0.19221,0.852556,0.242127,0.954469,0.350824,0.489137,0.11866,0.530663,0.617221,0.836377,0.963946,0.254668,0.515101,0.0513737,0.35739,0.91586,0.499021,0.148657,0.0799087,0.90412,0.190922,0.27876,0.676306,0.886737,0.771398,0.724038,0.614891,0.791877,0.323504,0.177562,0.991113,0.69291,0.192667,0.499685,0.0229872,0.88299,0.501434,0.66839,0.207581,0.118222,0.96456,0.573637,0.851873,0.0234435,0.85946,0.969046,0.482639,0.550815,0.552337,0.456778,0.637677,0.573451,0.338518,0.220946,0.524098,0.760649,0.0839744,0.478482,0.53195,0.10905,0.596856,0.611786,0.215659,0.608118,0.680961,0.945121,0.256292,0.22675,0.667147,0.805855,0.760354,0.0321539,0.288259,0.448691,0.392231,0.223294,0.367211,0.625233,0.143559,0.329651,0.609879,0.321696,0.694004,0.838944,0.987324,0.0047546,0.947746,0.174289,0.635775,0.271591,0.0209743,0.458054,0.468771,0.862462,0.379621,0.423787,0.599521,0.0227139,0.6252,0.0938682,0.0209402,0.730126,0.911393,0.86882,0.0292506,0.44003,0.588377,0.647954,0.12408,0.787279,0.981831,0.192923,0.395473,0.0104514,0.07251,0.245712,0.483237,0.0460219,0.491298,0.189285,0.275576,0.395466,0.151296,0.45403,0.223987,0.811588,0.0197973,0.948055,0.55005,0.925363,0.537331,0.249857,0.850154,0.101583,0.192638,0.550418,0.512528,0.897193,0.726637,0.97386,0.979833,0.829102,0.628546,0.698887,0.682997,0.482622,0.867195,0.101765,0.838492,0.498352,0.681562,0.165864,0.674456,0.443612,0.301735,0.344834,0.884634,0.348069,0.84379,0.569807,0.29182,0.463482,0.413414,0.0106764,0.235445,0.913045,0.644227,0.951661,0.637157,0.935661,0.429044,0.948487,0.0242524,0.162102,0.808709,0.402406,0.882401,0.285961,0.172879,0.00282449,0.269136,0.010321,0.946201,0.784279,0.332297,0.629163,0.879454,0.82456,0.482813,0.0356618,0.408807,0.570528,0.395378,0.816836,0.782561,0.646134,0.624336,0.746975,0.983382,|0.891095,0.226815,0.0353669,0.0218924,0.153943,0.411136,0.969896,0.712386,0.211126,0.868988,0.690894,0.227398,0.468275,0.16662,0.173551,0.835775,0.479919,0.499769,0.70259,0.340212,0.395228,0.852884,0.526933,0.975097,0.598225,0.0112052,0.0708733,0.778095,0.96015,0.00477886,0.286904,0.731905,0.634133,0.0754418,0.719266,0.567342,0.478239,0.969498,0.908928,0.652951,0.619726,0.63084,0.270375,0.526297,0.829749,0.183396,0.455541,0.569848,0.481661,0.884567,0.151959,0.723134,0.951915,0.470597,0.655707,0.455273,0.387724,0.683116,0.149269,0.27601,0.478233,0.25171,0.248743,0.648375,0.422101,0.713852,0.518225,0.930618,0.926386,0.646537,0.504149,0.997411,0.163224,0.348447,0.0278163,0.926148,0.576664,0.874122,0.973069,0.206761,0.520333,0.23115,0.530267,0.403239,0.343123,0.328867,0.704701,0.847917,0.00681835,0.931506,0.0376683,0.615114,0.128184,0.642383,0.500454,0.470963,0.479504,0.116572,0.0533289,0.676101,0.253348,0.277351,0.670941,0.212554,0.527235,0.12814,0.245243,0.929807,0.236825,0.103594,0.121434,0.0605012,0.0788668,0.570843,0.383628,0.389036,0.0995919,0.194534,0.114203,0.00173575,0.996269,0.323075,0.596197,0.640724,0.488872,0.89675,0.572612,0.485077,0.114587,0.993917,0.150563,0.365026,0.478645,0.750812,0.301191,0.129359,0.937355,0.786047,0.894933,0.817629,0.544206,0.663689,0.247704,0.160849,0.963303,0.373778,0.0947642,0.0947635,0.674864,0.816559,0.025044,0.539289,0.230671,0.353735,0.778017,0.50733,0.591467,0.652033,0.817093,0.525963,0.0900584,0.319971,0.488344,0.505533,0.550476,0.763877,0.977254,0.894062,0.931813,0.0614486,0.984111,0.268336,0.485869,0.850829,0.460461,0.0807615,0.0209156,0.910392,0.308599,0.0658168,0.714594,0.561987,0.437045,0.561184,0.815047,0.571598,0.0149179,0.514204,0.260196,0.864992,0.0854824,0.940228,0.55054,0.70758,0.640035,0.0316469,0.696947,0.707821,0.593091,0.734138,0.713746,0.622262,0.587922,0.368393,0.320437,0.411009,0.740284,0.4227,0.67026,0.225134,0.729305,0.733644,0.142772,0.350516,0.950963,0.373483,0.0618409,0.828109,0.575686,0.54233,0.245339,0.131922,0.804695,0.218648,0.482326,0.122799,0.814381,0.0789134,0.336614,0.734304,0.869375,0.538993,0.190998,0.781905,0.730376,0.409051,0.340095,0.161535,0.975537,0.977299,0.601266,0.939956,0.771822,0.971168,0.320366,0.980965,0.42737,0.252764,0.0145692,0.689665,0.243273,0.611822,0.713312,0.341806,0.810045,0.317187,0.453706,0.139191,0.831461,0.710841,0.877728,0.111295,0.863821,0.362595,0.674979,0.689455,0.15671,0.344423,0.60879,0.110208,0.396244,0.377856,0.590586,0.725369,0.555155,0.427306,0.149588,0.748812,0.0152624,0.903189,0.171491,0.259776,0.432355,0.24562,0.867584,0.579262,0.731152,0.00291228,0.203336,0.799585,0.436756,0.84767,0.503837,0.110404,0.576851,0.0617319,0.592222,0.323034,0.136119,0.772184,0.166989,0.076795,0.131458,0.41904,0.150247,0.787362,0.935213,0.0102236,0.302297,0.86963,0.818868,0.894438,0.0765082,0.334948,0.968225,0.0683544,0.0405152,0.676649,0.658748,0.251573,0.520948,0.709209,0.659445,0.283375,0.650888,0.488964,0.698677,0.116426,0.204986,0.00299299,0.351667,0.941491,0.865055,0.689874,0.653193,0.333438,0.103305,0.525398,0.968716,0.130792,0.936545,0.467555,0.660617,0.310979,0.267473,0.963256,0.853128,0.958399,0.0720906,0.49949,0.279516,0.523755,0.918259,0.280126,0.776815,0.857577,0.985635,0.507216,0.80571,0.938678,0.575206,0.48439,0.704056,0.98125,0.990195,0.436907,0.145347,0.314338,0.603106,0.370514,0.553066,0.351551,0.231901,0.52749,0.742458,0.0639369,0.483411,0.328815,0.300076,0.376585,0.779038,0.188254,0.0685193,0.87013,0.777913,0.977468,0.663989,0.858379,0.951172,0.269657,0.960243,0.0861047,0.113714,0.184733,0.38926,0.180216,0.38667,0.351313,0.152818,0.720558,0.880578,0.461857,0.563172,0.72239,0.245807,0.788265,0.881391,0.518406,0.124547,0.756749,0.155486,0.941509,0.671419,0.743144,0.190746,0.557615,0.683245,0.706226,0.51065,0.482243,0.81414,0.414226,0.288238,0.338487,0.932704,0.505183,0.383352,0.584443,0.881636,0.885457,0.823159,0.490651,0.376542,0.763479,0.331825,0.68567,0.469156,0.602657,0.417473,0.506763,0.188957,0.389464,0.638926,0.355527,0.575772,0.677491,0.242452,0.061936,0.796884,0.277138,0.128317,0.414884,0.480063,0.540103,0.154473,0.75569,0.258383,0.183821,0.0271857,0.348971,0.593546,0.183589,0.0185949,0.670177,0.0774075,0.877221,0.871665,0.726703,0.110506,0.30609,0.333406,0.836803,0.832456,0.304572,0.230295,0.861094,0.356138,0.617131,0.335194,0.165402,0.15506,0.835171,0.0717146,0.181337,0.663925,0.0791281,0.867613,0.213264,0.51636,0.198739,0.675109,0.142466,0.138718,0.0956424,0.568074,0.550015,0.0790625,0.532983,0.841654,0.635309,0.357579,0.440176,0.210184,0.633475,0.703984,0.539878,0.919594,0.614995,0.705199,0.582868,0.812652,0.631026,0.527768,0.404015,0.416487,0.523848,0.372029,0.873339,0.142698,0.63421,0.89521,0.158973,0.834668,0.99927,0.734239,0.929284,0.503181,0.139422,0.505266,0.191842,0.335831,0.224022,0.11853,0.443939,0.381075,0.83963,0.295587,0.246522,0.145479,0.00629425,0.242559,0.500596,0.437853,0.513414,0.0991758,0.437783,0.230263,0.551998,0.402229,0.079025,0.706223,0.845366,0.884239,0.892417,0.799024,0.314964,0.639215,0.0544047,0.664497,0.682779,0.384389,0.0760684,0.900807,0.0481121,0.874119,0.656,0.173506,0.571028,0.132673,0.436103,0.574546,0.610795,0.648283,0.878021,0.254726,0.167299,0.538399,0.856821,0.732105,0.737952,0.496299,0.972375,0.560311,0.386991,0.812815,0.983451,0.0578743,0.367913,0.866645,0.159979,0.761667,0.407064,0.501099,0.502318,0.700329,0.20625,0.617968,0.60211,0.965697,0.276394,0.685844,0.903512,0.929406,0.464513,0.350181,0.527538,0.539842,0.0179167,0.798562,0.195898,0.443528,0.455221,0.486326,0.719465,0.381509,0.173483,0.192661,0.017082,0.889839,0.455841,0.352747,0.393632,0.892884,0.462307,0.907139,0.130259,0.783156,0.297755,0.271911,0.426834,0.0123596,0.152807,0.525065,0.162453,0.524948,0.696332,0.808927,0.604545,0.688492,0.164327,0.666521,0.230791,0.824461,0.0606736,0.708111,0.931175,0.459438,0.915385,0.499246,0.209381,0.571279,0.278039,0.0141909,0.126698,0.746046,0.281023,0.65898,0.443316,0.191691,0.68527,0.32121,0.628726,0.936489,0.0925603,0.145864,0.921475,0.746958,0.790633,0.338909,0.182659,0.619575,0.762814,0.853524,0.0269964,0.645741,0.725796,0.85141,0.887514,0.525931,0.525441,0.302619,0.847885,0.511285,0.476193,0.299596,0.692176,0.688167,0.454238,0.758831,0.590605,0.710989,0.937951,0.403461,0.953547,0.466427,0.741804,0.902678,0.282549,0.493318,0.0173364,0.607781,0.0914656,0.904903,0.133552,0.464077,0.153284,0.0134864,0.587342,0.487415,0.800474,0.453729,0.201609,0.13798,0.7514,0.390342,0.0930509,0.311725,0.261666,0.576128,0.00931674,0.989663,0.914659,0.796539,0.115262,0.92788,0.217215,0.63156,0.37488,0.0254763,0.229677,0.555193,0.0549962,0.13891,0.953265,0.119242,0.705055,0.622861,0.73477,0.744602,0.814335,0.164615,0.38537,0.563937,0.784874,0.362264,0.908492,0.223052,0.516254,0.526104,0.135611,0.296501,0.582309,0.87342,0.463078,0.718403,0.865645,0.652816,0.189755,0.214086,0.261545,0.762478,0.569225,0.0093084,0.23238,0.549593,0.762229,0.177577,0.737248,0.75787,0.866799,0.949154,0.973781,0.734295,0.63764,0.200259,0.763847,0.680229,0.9497,0.387047,0.0780725,0.223192,0.0373277,0.593176,0.314187,0.586784,0.121675,0.964615,0.392818,0.287273,0.695092,0.300045,0.815379,0.0894287,0.196494,0.364081,0.371837,0.251083,0.189742,0.123954,0.872707,0.433015,0.542577,0.0997373,0.737243,0.500146,0.382635,0.377434,0.0237507,0.915438,0.509532,0.0281131,0.31644,0.611744,0.720773,0.864537,0.646114,0.84428,0.86183,0.11037,0.0273669,0.208527,0.225585,0.854562,0.371035,0.250064,0.643435,0.199645,0.89138,0.902537,0.640578,0.374566,0.479677,0.486354,0.172159,0.818087,0.0209291,0.595505,0.637495,0.301451,0.627274,0.769462,0.448234,0.91031,0.295851,0.197343,0.363025,0.405576,0.611516,0.279074,0.342789,0.775324,0.661229,0.391089,0.110513,0.900567,0.0564561,0.00738418,0.451034,0.909539,0.0429989,0.323233,0.128246,0.793405,0.687198,0.432819,0.25566,0.948779,0.305489,0.261899,0.854877,0.583488,0.103286,0.982643,0.169395,0.422084,0.723939,0.0502058,0.901596,0.0526544,0.353416,0.89434,0.727072,0.557883,0.701016,0.0976317,0.297232,0.993344,0.0521351,0.45572,0.190784,0.618614,0.946295,0.458639,0.284543,0.434429,0.242344,0.805786,0.99421,0.0984817,0.423222,0.83949,0.275784,0.302576,0.133823,0.749846,0.305421,0.379651,0.986207,0.0790026,0.336484,0.00868171,0.114908,0.463595,0.633478,0.658237,0.50028,0.870081,0.6376,0.85275,0.525663,0.315489,0.0536526,0.419044,0.110545,0.964564,0.9771,0.788924,0.82431,0.587321,0.707734,0.384159,0.145536,0.891538,0.371927,0.858621,0.688795,0.622432,0.88902,0.548022,0.719042,0.0858527,0.133788,0.458416,0.572318,0.242837,0.69041,0.414627,0.341327,0.865651,0.454294,0.721906,0.400423,0.60676,0.457848,0.058665,0.282601,0.944591,0.320521,0.642592,0.898502,0.8031,0.0324812,0.0116563,0.69218,0.244985,0.990402,0.661822,0.937794,0.419412,0.00708598,0.262349,0.520023,0.00566,0.69394,0.917729,0.639661,0.66677,0.356736,0.161128,0.274231,0.904049,0.541198,0.571724,0.381474,0.37873,0.417056,0.576501,0.584018,0.0459059,0.629284,0.768748,0.49409,0.518595,0.975945,0.0927623,0.467016,0.880378,0.139376,0.40568,0.0354754,|0.917527,0.532181,0.14103,0.92415,0.184512,0.139334,0.645713,0.907666,0.349292,0.221543,0.441321,0.395311,0.342964,0.106644,0.639101,0.0182672,0.60122,0.411586,0.0438591,0.00943524,0.641448,0.465928,0.96868,0.679356,0.640334,0.141697,0.649886,0.934381,0.338314,0.889899,0.674085,0.603803,0.599147,0.685409,0.96854,0.413081,0.131991,0.198119,0.693647,0.916683,0.421563,0.157409,0.651552,0.0868292,0.174716,0.900772,0.591049,0.605554,0.163652,0.646448,0.632809,0.387833,0.288546,0.0257475,0.276603,0.399423,0.955583,0.237076,0.1753,0.0270073,0.32777,0.889928,0.129184,0.305153,0.514882,0.591341,0.71351,0.0393114,0.0460736,0.472218,0.937126,0.164604,0.178569,0.549833,0.382685,0.956427,0.650885,0.120215,0.285013,0.236282,0.545101,0.0984772,0.425413,0.48278,0.470562,0.18465,0.301196,0.239312,0.608838,0.81359,0.665952,0.269319,0.215909,0.0328298,0.886166,0.745453,0.0501726,0.260118,0.83469,0.87453,0.408147,0.075431,0.0816386,0.507085,0.658498,0.425487,0.80422,0.536146,0.666973,0.528625,0.550682,0.918943,0.58925,0.831019,0.644524,0.300973,0.801862,0.447344,0.263187,0.806767,0.423243,0.613747,0.201552,0.256811,0.954894,0.742032,0.21365,0.806408,0.58812,0.575182,0.551629,0.852342,0.281833,0.0767036,0.203521,0.43167,0.30571,0.861734,0.535609,0.618089,0.907544,0.889574,0.759081,0.253718,0.0474516,0.798494,0.129383,0.865252,0.880679,0.209747,0.6147,0.665405,0.277616,0.409168,0.754894,0.584612,0.976551,0.0983094,0.035815,0.577354,0.898767,0.0408744,0.149584,0.415112,0.445293,0.581399,0.116653,0.973521,0.838455,0.00867516,0.967341,0.270419,0.841375,0.180136,0.736805,0.120627,0.38695,0.472822,0.626163,0.997953,0.615903,0.475109,0.211824,0.704453,0.649118,0.0382845,0.473273,0.597274,0.520496,0.0892931,0.17782,0.095292,0.246419,0.245328,0.295397,0.0568692,0.788635,0.523106,0.0183718,0.837867,0.0414903,0.726406,0.481931,0.490831,0.745929,0.011094,0.0941265,0.00464016,0.205851,0.876039,0.713018,0.697647,0.808504,0.0111449,0.510009,0.50638,0.839268,0.511392,0.881063,0.217061,0.97113,0.149128,0.0413403,0.661007,0.243601,0.414998,0.141947,0.0139199,0.552362,0.0997186,0.794994,0.581146,0.667764,0.764376,0.404322,0.656002,0.891495,0.948373,0.493147,0.890495,0.20683,0.0331693,0.362723,0.444543,0.175083,0.171255,0.839409,0.649768,0.753204,0.668984,0.039467,0.947697,0.211202,0.288094,0.135802,0.752181,0.447047,0.984497,0.74046,0.569488,0.750182,0.958415,0.480754,0.287929,0.318082,0.52785,0.742024,0.329305,0.281527,0.741942,0.844881,0.0969173,0.390888,0.862825,0.795358,0.217454,0.925104,0.202408,0.869148,0.830517,0.220582,0.532335,0.641322,0.798348,0.1196,0.714527,0.252857,0.417319,0.688584,0.0139263,0.107871,0.186735,0.168938,0.324925,0.358956,0.247518,0.220389,0.756752,0.280254,0.0509661,0.472597,0.626063,0.409612,0.144596,0.730458,0.0920169,0.31881,0.261465,0.295191,0.0399156,0.145385,0.946626,0.0891461,0.485024,0.972875,0.599565,0.325591,0.4504,0.0712539,0.124288,0.970308,0.00226945,0.556158,0.722131,0.48121,0.443562,0.934036,0.12249,0.916216,0.284173,0.488844,0.859254,0.791391,0.0470833,0.345953,0.0122069,0.203231,0.999709,0.392227,0.921749,0.441172,0.427961,0.309153,0.959697,0.759498,0.852102,0.0241389,0.86992,0.154288,0.395089,0.285167,0.592405,0.460867,0.0463927,0.879955,0.80589,0.975392,0.3891,0.165237,0.0614808,0.333049,0.332181,0.141686,0.743523,0.894489,0.381536,0.0257597,0.503151,0.766532,0.87645,0.709903,0.207838,0.625128,0.854313,0.120342,0.637227,0.442638,0.645908,0.32558,0.0540845,0.483122,0.133594,0.357075,0.148468,0.84239,0.149206,0.857484,0.568977,0.222743,0.746386,0.762512,0.484695,0.570479,0.153863,0.195334,0.0358449,0.149113,0.414509,0.799192,0.916729,0.939221,0.606366,0.607681,0.349867,0.836698,0.871194,0.794911,0.557011,0.984806,0.426223,0.436307,0.956591,0.753753,0.775114,0.385973,0.832444,0.779703,0.290238,0.515279,0.972877,0.879937,0.927726,0.706679,0.337634,0.442565,0.615551,0.840131,0.366045,0.483992,0.346778,0.0416033,0.972683,0.760774,0.351816,0.159117,0.619553,0.828607,0.582007,0.902332,0.258943,0.883346,0.0911325,0.283195,0.0528094,0.826649,0.672585,0.692971,0.484547,0.0961066,0.24782,0.563989,0.730164,0.149329,0.176923,0.0374761,0.867668,0.18062,0.877553,0.972731,0.540516,0.903839,0.875107,0.425916,0.259877,0.0326899,0.866037,0.0140871,0.125405,0.0254197,0.937472,0.25523,0.73193,0.0047965,0.0495793,0.277256,0.202547,0.324372,0.856512,0.793234,0.180355,0.495265,0.226442,0.652085,0.384162,0.745648,0.772728,0.83206,0.756783,0.98332,0.944984,0.568237,0.270838,0.204205,0.706578,0.0631768,0.397554,0.479173,0.672987,0.290803,0.184751,0.624831,0.123262,0.894675,0.109195,0.140902,0.198865,0.879811,0.0323148,0.179616,0.344181,0.813519,0.466251,0.167555,0.673783,0.00986779,0.0180648,0.499908,0.766481,0.7115,0.755593,0.572107,0.742723,0.604822,0.722522,0.620203,0.948161,0.577527,0.773302,0.589648,0.91479,0.0929368,0.774357,0.109757,0.887252,0.520953,0.109765,0.627812,0.764784,0.558182,0.0923783,0.285785,0.965371,0.775031,0.872784,0.834524,0.0680285,0.192968,0.637427,0.751137,0.951425,0.0744652,0.426543,0.0415868,0.531327,0.768271,0.373752,0.406579,0.753776,0.694006,0.300804,0.0873774,0.6595,0.995285,0.746781,0.133922,0.7552,0.821315,0.666598,0.0677288,0.390979,0.298002,0.956489,0.602871,0.64167,0.0774081,0.532512,0.569566,0.0382654,0.427461,0.410258,0.450112,0.483221,0.878751,0.487678,0.52045,0.99772,0.328812,0.566871,0.404068,0.131919,0.0462322,0.709759,0.421024,0.139348,0.279078,0.245316,0.60581,0.484163,0.0109891,0.915477,0.0559445,0.0198588,0.29569,0.536472,0.374268,0.374935,0.226239,0.629084,0.142368,0.721229,0.957151,0.798522,0.802297,0.903408,0.703182,0.27153,0.701591,0.978169,0.377227,0.283448,0.157318,0.588313,0.0320182,0.428178,0.935275,0.94056,0.156909,0.672987,0.667144,0.0610279,0.15941,0.694378,0.262771,0.70633,0.501784,0.160256,0.511099,0.165283,0.224564,0.949646,0.600357,0.275773,0.53773,0.439043,0.64703,0.712428,0.598093,0.527909,0.432548,0.710468,0.206816,0.500529,0.133975,0.487095,0.654944,0.0207265,0.520274,0.62298,0.774583,0.0613855,0.636995,0.187884,0.251764,0.632818,0.36635,0.960621,0.158295,0.406299,0.347954,0.877278,0.777459,0.456491,0.618708,0.72911,0.761617,0.913597,0.462718,0.126496,0.110436,0.858764,0.219928,0.672063,0.904153,0.378881,0.711863,0.0395066,0.523274,0.2135,0.541667,0.333446,0.89922,0.432532,0.796521,0.101818,0.158269,0.948194,0.204509,0.952967,0.241305,0.426633,0.312044,0.74085,0.357012,0.869032,0.710751,0.308163,0.366641,0.439615,0.921283,0.880983,0.347356,0.737739,0.022967,0.362239,0.91659,0.53698,0.571597,0.926496,0.81823,0.770153,0.640055,0.620014,0.153985,0.0363525,0.223804,0.567423,0.257377,0.0989017,0.99467,0.315825,0.782624,0.314834,0.023323,0.66068,0.0629041,0.56592,0.269243,0.249188,0.0265561,0.0624919,0.750432,0.641071,0.0993205,0.591247,0.616433,0.0917007,0.397629,0.816513,0.19717,0.341134,0.716153,0.265572,0.680363,0.437794,0.0884135,0.654017,0.905716,0.28203,0.973938,0.605478,0.745584,0.569727,0.347164,0.36608,0.500337,0.387622,0.169653,0.524883,0.833851,0.242668,0.46252,0.0401093,0.207065,0.455241,0.687406,0.678032,0.781625,0.191155,0.967331,0.108881,0.325051,0.180995,0.91378,0.947689,0.0650047,0.107009,0.0240021,0.781373,0.667654,0.551987,0.473439,0.911688,0.131682,0.705988,0.121113,0.56248,0.974894,0.316303,0.515577,0.0831208,0.801508,0.495846,0.495144,0.728422,0.283134,0.120867,0.311326,0.463857,0.906275,0.422536,0.668678,0.333328,0.466271,0.866136,0.253349,0.484149,0.136412,0.109402,0.844883,0.947902,0.945923,0.0157432,0.675714,0.426118,0.140144,0.0839144,0.0476882,0.531239,0.477214,0.168596,0.563043,0.294595,0.905254,0.726908,0.328378,0.823132,0.129169,0.319235,0.785428,0.962878,0.252096,0.0753044,0.25764,0.952915,0.0189093,0.936199,0.304173,0.939852,0.821927,0.108488,0.594301,0.243793,0.813563,0.285093,0.64097,0.0250731,0.316843,0.541324,0.653844,0.579978,0.569842,0.734422,0.539626,0.145822,0.508948,0.682492,0.0513213,0.569528,0.389324,0.614866,0.8055,0.132472,0.844354,0.0706125,0.625495,0.237932,0.487842,0.734278,0.944636,0.761949,0.403684,0.537057,0.506335,0.0648628,0.892502,0.17344,0.0581161,0.753902,0.848988,0.146557,0.746708,0.927758,0.555651,0.183916,0.87239,0.11511,0.803069,0.744568,0.90629,0.832488,0.00662363,0.496655,0.977126,0.621033,0.565593,0.125338,0.182942,0.0315189,0.274421,0.512995,0.851145,0.578636,0.562523,0.863923,0.890459,0.422178,0.0244641,0.83386,0.669331,0.867957,0.14278,0.818858,0.753285,0.266517,0.103355,0.709597,0.434092,0.507415,0.229592,0.966226,0.665149,0.479723,0.331774,0.358666,0.867826,0.714579,0.17122,0.860627,0.339839,0.210837,0.951373,0.432406,0.0886408,0.642931,0.449785,0.532629,0.506672,0.717478,0.316915,0.31504,0.96904,0.100643,0.441716,0.854093,0.192838,0.285717,0.212023,0.320608,0.19407,0.387306,0.695948,0.470345,0.0185683,0.0150073,0.0277486,0.119473,0.775231,0.210486,0.422802,0.642117,0.858328,0.52503,0.219334,0.454578,0.723055,0.401916,0.182324,0.162363,0.987813,0.654104,0.686722,0.358241,0.54219,0.947909,0.40809,0.558609,0.0995504,0.725345,0.111868,0.684084,0.784566,0.819792,0.159255,0.282329,0.117405,0.572016,0.789913,0.433676,0.307797,0.580786,|0.749527,0.814712,0.0418872,0.952504,0.654982,0.22009,0.16215,0.978984,0.399598,0.802578,0.73241,0.104673,0.78026,0.263069,0.462961,0.631513,0.910585,0.546656,0.194554,0.765867,0.706917,0.222465,0.771833,0.682797,0.71076,0.566805,0.52313,0.98613,0.250484,0.414479,0.0164533,0.943511,0.389785,0.0967155,0.22962,0.324791,0.748551,0.714685,0.366948,0.536719,0.0440974,0.378156,0.472354,0.559435,0.588907,0.925147,0.320161,0.415098,0.559866,0.501358,0.109728,0.913406,0.231418,0.826412,0.564707,0.824599,0.0527664,0.180762,0.891092,0.398579,0.672214,0.52012,0.159625,0.73849,0.624247,0.828589,0.463001,0.785198,0.91278,0.407837,0.329541,0.434522,0.289557,0.238095,0.122782,0.223163,0.560095,0.515611,0.106895,0.608529,0.655695,0.0152382,0.886772,0.200549,0.644322,0.234661,0.953117,0.224203,0.266589,0.00801837,0.894766,0.769777,0.155406,0.993209,0.789904,0.490022,0.642667,0.586051,0.296357,0.377019,0.677732,0.320242,0.869972,0.141346,0.134608,0.0643251,0.779149,0.11721,0.201524,0.644857,0.124786,0.899027,0.459587,0.752162,0.289692,0.900698,0.611709,0.439886,0.644737,0.515393,0.0801374,0.543678,0.499988,0.0241824,0.224329,0.540728,0.627194,0.501145,0.811022,0.795931,0.0527822,0.413314,0.939717,0.987109,0.56826,0.446769,0.518606,0.92274,0.947062,0.0896443,0.475309,0.419713,0.0605398,0.886288,0.139527,0.175322,0.448786,0.14437,0.099893,0.216926,0.137871,0.839516,0.515048,0.646221,0.789592,0.685722,0.986802,0.926625,0.817466,0.815914,0.652278,0.952087,0.363754,0.76377,0.982759,0.523193,0.912182,0.118167,0.535664,0.420404,0.266032,0.368467,0.893912,0.285104,0.898746,0.045301,0.897758,0.93977,0.910742,0.25134,0.0238288,0.389373,0.85675,0.505348,0.251107,0.461036,0.365739,0.630695,0.0412598,0.052075,0.436999,0.405037,0.189947,0.200772,0.872866,0.9242,0.523692,0.402905,0.733987,0.191823,0.326672,0.229879,0.601382,0.663645,0.374532,0.0817745,0.543942,0.79623,0.143129,0.614469,0.154453,0.262428,0.300494,0.426963,0.887097,0.330471,0.900894,0.167326,0.917786,0.801486,0.356295,0.0954155,0.966387,0.226245,0.178977,0.217271,0.99275,0.297351,0.133421,0.10674,0.802312,0.0315678,0.598924,0.224189,0.968763,0.0837977,0.28251,0.558881,0.493791,0.402285,0.12063,0.480156,0.71216,0.49016,0.543214,0.404801,0.407435,0.341212,0.35428,0.736011,0.639083,0.105412,0.669236,0.428042,0.38309,0.411323,0.533906,0.943972,0.400221,0.385039,0.599952,0.378195,0.271738,0.583635,0.471359,0.359325,0.618211,0.727925,0.45814,0.694919,0.926543,0.0212219,0.626585,0.130447,0.564248,0.115058,0.923642,0.181195,0.797413,0.739016,0.850553,0.198687,0.48788,0.253289,0.175255,0.50581,0.100792,0.394338,0.786295,0.122525,0.923548,0.36937,0.874469,0.744025,0.968171,0.124883,0.798639,0.502109,0.932778,0.520726,0.405847,0.307639,0.254575,0.0899775,0.672188,0.386313,0.0536683,0.850753,0.743178,0.969311,0.545406,0.403621,0.226133,0.895419,0.326435,0.93553,0.0961773,0.611283,0.677435,0.0737697,0.323484,0.869769,0.921944,0.840545,0.161471,0.971106,0.572939,0.518744,0.0844919,0.284961,0.479267,0.487869,0.314364,0.451404,0.937861,0.328549,0.107372,0.279403,0.49558,0.526367,0.998289,0.437504,0.523624,0.211803,0.36277,0.697538,0.585792,0.684796,0.291259,0.72106,0.548352,0.5264,0.0344737,0.799009,0.372251,0.819947,0.94773,0.558871,0.0969239,0.79054,0.753351,0.737037,0.0421811,0.89467,0.927575,0.893184,0.130091,0.702802,0.404835,0.836499,0.185445,0.182362,0.402338,0.553616,0.686835,0.201924,0.445582,0.55065,0.569986,0.848763,0.765673,0.355539,0.594593,0.172337,0.591059,0.614076,0.595247,0.528013,0.363107,0.00892878,0.788757,0.061125,0.0310885,0.576896,0.534628,0.191969,0.259025,0.869766,0.394418,0.915535,0.400671,0.864218,0.703415,0.381327,0.707587,0.213138,0.286601,0.69216,0.63031,0.136023,0.473418,0.955811,0.538512,0.897143,0.978395,0.332258,0.477859,0.255094,0.306196,0.612559,0.0145577,0.553875,0.542716,0.820685,0.0637472,0.128161,0.948922,0.851424,0.198214,0.270847,0.151307,0.220227,0.809966,0.664111,0.513313,0.0736974,0.526667,0.445228,0.937602,0.242006,0.51505,0.0354579,0.197987,0.135538,0.89524,0.217972,0.799102,0.865237,0.679067,0.980502,0.338949,0.335816,0.921843,0.370998,0.950286,0.324797,0.0994059,0.354409,0.68995,0.283993,0.955358,0.324104,0.363509,0.913895,0.831422,0.571719,0.93443,0.95724,0.104538,0.0381081,0.459183,0.477775,0.773204,0.258807,0.108618,0.607187,0.839132,0.888101,0.066759,0.361974,0.172893,0.95568,0.4431,0.887146,0.734706,0.113042,0.950911,0.861322,0.647322,0.84761,0.448632,0.262814,0.739374,0.902471,0.693248,0.0961622,0.229883,0.406364,0.801252,0.30494,0.604101,0.355741,0.5938,0.281586,0.823327,0.981354,0.579562,0.456195,0.710877,0.403702,0.925194,0.154171,0.141901,0.192473,0.448279,0.904602,0.922977,0.683207,0.663901,0.560036,0.757544,0.214463,0.68201,0.691352,0.156053,0.180573,0.862826,0.560358,0.335384,0.692944,0.060013,0.86442,0.805676,0.972815,0.39497,0.0301941,0.803772,0.313459,0.751727,0.894758,0.286808,0.0596222,0.317461,0.937852,0.443384,0.374044,0.0723129,0.887444,0.471885,0.424118,0.394507,0.972286,0.599235,0.465111,0.717552,0.589489,0.0414499,0.661234,0.93951,0.512787,0.514527,0.805447,0.429701,0.240659,0.515311,0.267335,0.101745,0.929349,0.524678,0.48614,0.223709,0.935007,0.507305,0.335868,0.899162,0.999764,0.770178,0.774447,0.843882,0.757355,0.985177,0.619992,0.229187,0.297027,0.297166,0.815346,0.70773,0.872733,0.625563,0.429535,0.342022,0.896045,0.433711,0.245819,0.444087,0.170245,0.86414,0.664666,0.653565,0.744185,0.62127,0.297465,0.556994,0.924424,0.209676,0.912411,0.79274,0.866209,0.628131,0.0221683,0.519243,0.964565,0.502089,0.336737,0.520712,0.696251,0.458119,0.498217,0.873409,0.785999,0.0991767,0.255725,0.274555,0.764648,0.868739,0.928396,0.635222,0.12003,0.550865,0.0626062,0.385373,0.918642,0.144158,0.404287,0.769066,0.856945,0.960523,0.273883,0.230796,0.660232,0.102573,0.367123,0.944027,0.803871,0.758651,0.387777,0.301584,0.623802,0.958074,0.479148,0.173758,0.282623,0.480476,0.575313,0.374922,0.0298045,0.584269,0.316586,0.662961,0.653482,0.822191,0.09708,0.100275,0.0190436,0.335016,0.0794123,0.415909,0.623784,0.486209,0.109168,0.100056,0.804023,0.13171,0.687099,0.386967,0.802064,0.738731,0.349216,0.13286,0.811444,0.0669988,0.442177,0.878729,0.617907,0.286189,0.00419337,0.428212,0.779938,0.915011,0.603063,0.758077,0.381925,0.428956,0.408744,0.441037,0.0791624,0.236532,0.757331,0.31877,0.182043,0.0779939,0.100683,0.590703,0.830467,0.715207,0.879551,0.429314,0.671659,0.109428,0.74194,0.0947155,0.554968,0.772476,0.663139,0.699102,0.144661,0.12928,0.336205,0.813839,0.0196277,0.0182485,0.271368,0.237714,0.277898,0.561536,0.894954,0.67275,0.469463,0.0332755,0.260248,0.875511,0.238341,0.0424064,0.385434,0.544393,0.611637,0.221509,0.649139,0.889437,0.240564,0.523667,0.0608737,0.442543,0.967392,0.0981529,0.264485,0.130461,0.828508,0.782534,0.532275,0.742522,0.457468,0.514477,0.48579,0.789815,0.297696,0.981087,0.0441312,0.52764,0.649122,0.441897,0.836343,0.509278,0.843881,0.480663,0.0723972,0.625019,0.833362,0.28859,0.308383,0.985952,0.150758,0.643909,0.745569,0.867813,0.347817,0.598508,0.702801,0.0711555,0.754986,0.775187,0.783591,0.455186,0.443248,0.397069,0.874803,0.178308,0.30236,0.909109,0.507836,0.467844,0.973832,0.523256,0.593674,0.855469,0.956012,0.781042,0.61875,0.116643,0.175858,0.514164,0.0936285,0.780242,0.856107,0.137123,0.7962,0.0883219,0.44456,0.63941,0.401433,0.5978,0.791837,0.991716,0.192955,0.493791,0.99693,0.373484,0.133966,0.743635,0.258145,0.732891,0.0484653,0.565298,0.417032,0.157643,0.508594,0.896081,0.820084,0.185543,0.779624,0.0416213,0.700489,0.948289,0.0205886,0.194811,0.222797,0.874394,0.0858484,0.86212,0.204153,0.34265,0.742851,0.737806,0.353628,0.937049,0.124913,0.431803,0.282742,0.815906,0.695699,0.813707,0.710668,0.133492,0.493031,0.443607,0.094888,0.329045,0.944729,0.970047,0.486089,0.751432,0.533096,0.470488,0.282951,0.65691,0.711928,0.874297,0.117683,0.862576,0.0530304,0.512807,0.0852498,0.389879,0.74596,0.633995,0.255023,0.574436,0.637063,0.373276,0.962275,0.499218,0.0091207,0.150877,0.0231391,0.293918,0.593772,0.0158551,0.224826,0.141596,0.516751,0.3638,0.455358,0.740866,0.778867,0.821942,0.621343,0.0894797,0.199067,0.0262826,0.757562,0.915028,0.649325,0.332191,0.434519,0.886027,0.178796,0.546263,0.0504073,0.542613,0.636476,0.165957,0.92366,0.0124726,0.174659,0.648826,0.743797,0.336519,0.0802945,0.334651,0.403718,0.225572,0.300495,0.519973,0.434092,0.774471,0.922908,0.78569,0.438395,0.886338,0.896462,0.21596,0.225673,0.364399,0.248437,0.352268,0.769294,0.704062,0.511918,0.919093,0.967924,0.857933,0.838982,0.927385,0.668939,0.835632,0.623871,0.763971,0.521837,0.988944,0.689391,0.0359448,0.142922,0.625191,0.879373,0.857868,0.0067327,0.366871,0.174768,0.132746,0.27013,0.116473,0.0367886,0.224835,0.168923,0.453282,0.107953,0.491959,0.657519,0.0567002,0.763445,0.25786,0.132025,0.152258,0.643145,0.931122,0.875579,0.133678,0.18782,0.172008,0.292942,0.55886,0.300925,0.410643,0.791798,0.190816,0.0119015,0.48842,0.511705,0.824804,0.89766,0.140317,0.231249,0.615058,0.0803812,0.0483935,0.415628,0.111908,0.000515103,0.555772,0.606151,|0.76773,0.62484,0.498083,0.977554,0.657953,0.178643,0.402121,0.154602,0.276429,0.334159,0.454118,0.00919938,0.656082,0.775917,0.688189,0.257675,0.117249,0.978969,0.810457,0.589646,0.937214,0.435856,0.253311,0.528662,0.450907,0.414643,0.174968,0.675281,0.802145,0.646283,0.563759,0.320435,0.330174,0.206811,0.898021,0.399768,0.962015,0.508177,0.356057,0.894185,0.637493,0.0503055,0.383018,0.0541446,0.839216,0.960723,0.0082469,0.930088,0.721322,0.941037,0.681248,0.645711,0.0599814,0.881085,0.312316,0.248361,0.643721,0.576893,0.621455,0.211542,0.907791,0.858814,0.981512,0.72379,0.346306,0.712093,0.608582,0.745442,0.174,0.646627,0.391695,0.854693,0.346449,0.183937,0.526019,0.997953,0.558455,0.980312,0.330874,0.163352,0.580254,0.192292,0.716609,0.582836,0.620446,0.0467245,0.358761,0.0240408,0.694835,0.39377,0.374105,0.519212,0.183387,0.41432,0.02428,0.00485456,0.127403,0.966942,0.755651,0.806043,0.838166,0.677511,0.66496,0.202143,0.0553609,0.981209,0.877832,0.54687,0.133092,0.172134,0.414619,0.474681,0.92623,0.945227,0.416203,0.7696,0.346599,0.531004,0.76516,0.354212,0.149641,0.703758,0.401706,0.646483,0.604005,0.170862,0.829689,0.33168,0.349334,0.49975,0.481081,0.697523,0.738957,0.808808,0.40719,0.358972,0.888793,0.6724,0.796796,0.926051,0.847496,0.870781,0.127147,0.659953,0.280271,0.0916874,0.586491,0.154735,0.474634,0.535718,0.488583,0.838878,0.116265,0.475716,0.655355,0.496141,0.525733,0.57273,0.709634,0.469748,0.536252,0.974265,0.99992,0.465244,0.920984,0.506776,0.649087,0.177417,0.516267,0.688869,0.57386,0.540291,0.50256,0.689379,0.176595,0.388748,0.981526,0.134171,0.415587,0.45881,0.198039,0.850173,0.52153,0.814004,0.951581,0.453632,0.619967,0.445893,0.699054,0.323058,0.895182,0.0844696,0.853653,0.331974,0.137621,0.179978,0.0853043,0.881619,0.70389,0.230811,0.262629,0.349444,0.595938,0.101744,0.24812,0.282195,0.20626,0.591311,0.809588,0.771652,0.168679,0.834941,0.463564,0.0327297,0.644262,0.70209,0.565662,0.549722,0.834675,0.271713,0.431205,0.18728,0.37178,0.463963,0.0373811,0.397661,0.256862,0.4732,0.999163,0.898367,0.362886,0.269383,0.543709,0.394924,0.0702122,0.16156,0.36252,0.845443,0.586894,0.686387,0.363127,0.307519,0.525821,0.609754,0.946591,0.641339,0.209434,0.824716,0.0118423,0.720117,0.0787128,0.723005,0.534145,0.249696,0.721723,0.506153,0.615546,0.663993,0.565417,0.649861,0.528488,0.534301,0.424939,0.972877,0.130147,0.425535,0.51849,0.166073,0.828426,0.578279,0.022343,0.250259,0.0863544,0.45273,0.208512,0.0219067,0.0510949,0.0431615,0.106959,0.38346,0.257598,0.455116,0.55702,0.882491,0.466353,0.406379,0.426759,0.321493,0.0353768,0.672703,0.0886373,0.866213,0.0359948,0.8919,0.107467,0.697157,0.0728742,0.101539,0.0245903,0.0240593,0.859489,0.537947,0.443985,0.805083,0.051167,0.597668,0.0366036,0.578523,0.186247,0.741499,0.238401,0.455703,0.868637,0.468842,0.894058,0.649794,0.794736,0.383713,0.982182,0.28421,0.971757,0.692698,0.48955,0.0729009,0.406395,0.83484,0.71433,0.588226,0.144904,0.409568,0.718225,0.186782,0.921251,0.192197,0.538859,0.28229,0.881195,0.69071,0.752897,0.759112,0.656149,0.402005,0.275251,0.249522,0.473481,0.290585,0.465922,0.824931,0.979408,0.0106225,0.473001,0.900031,0.437813,0.687741,0.636193,0.572828,0.374834,0.344859,0.330271,0.302057,0.568089,0.756256,0.539981,0.569638,0.265885,0.26249,0.276486,0.238144,0.407731,0.274929,0.934035,0.246395,0.675857,0.0371794,0.00553191,0.781654,0.00937647,0.482983,0.966052,0.15663,0.539827,0.137782,0.423872,0.900706,0.984484,0.897252,0.0708303,0.685922,0.582917,0.203688,0.511191,0.681058,0.749577,0.0660736,0.140381,0.938302,0.882767,0.882215,0.885232,0.151767,0.226949,0.00313413,0.17116,0.0536125,0.45371,0.555564,0.574044,0.997887,0.544225,0.706067,0.95517,0.380211,0.186758,0.652332,0.26602,0.959552,0.602087,0.10042,0.785498,0.545891,0.143285,0.692574,0.186821,0.324987,0.476271,0.992006,0.321727,0.194048,0.406653,0.635114,0.778915,0.805693,0.779062,0.741815,0.00993031,0.622922,0.337281,0.843536,0.444214,0.625022,0.413814,0.857795,0.552874,0.559037,0.708292,0.0228839,0.155704,0.355623,0.414687,0.990118,0.0255753,0.477955,0.95455,0.492232,0.741688,0.188173,0.546555,0.268324,0.984607,0.923619,0.149846,0.203245,0.71728,0.95563,0.182692,0.879393,0.243812,0.648299,0.348989,0.960768,0.439078,0.0353346,0.992247,0.76375,0.746032,0.438829,0.235314,0.265575,0.445674,0.562244,0.11461,0.353062,0.940498,0.807377,0.930145,0.341464,0.784736,0.829185,0.466972,0.195245,0.0103407,0.931254,0.47884,0.78497,0.743085,0.863296,0.0536265,0.156036,0.681152,0.564061,0.206791,0.18514,0.299047,0.861058,0.624366,0.0179542,0.948865,0.992254,0.680238,0.149341,0.429621,0.953331,0.829541,0.0143462,0.48945,0.322988,0.896764,0.82384,0.361732,0.204629,0.689661,0.953854,0.506039,0.0390672,0.244103,0.856086,0.676225,0.857896,0.647857,0.702411,0.592819,0.451097,0.249416,0.0823218,0.87556,0.5632,0.787285,0.0916036,0.385457,0.801186,0.00308508,0.863122,0.15662,0.708521,0.934491,0.251014,0.38891,0.0809579,0.28034,0.221928,0.573985,0.265994,0.0748087,0.378884,0.680955,0.944509,0.576834,0.484053,0.982653,0.6032,0.920752,0.843263,0.917084,0.900499,0.698535,0.401562,0.92564,0.952711,0.744305,0.843995,0.776386,0.844716,0.67725,0.0482615,0.0991345,0.165252,0.226369,0.386399,0.411011,0.895117,0.513127,0.537948,0.961728,0.407075,0.466649,0.760352,0.720941,0.462212,0.229916,0.600952,0.10252,0.537464,0.66521,0.540606,0.114986,0.651134,0.630647,0.227988,0.842811,0.841033,0.315464,0.82751,0.958024,0.814823,0.0990128,0.991524,0.165639,0.764472,0.521653,0.396052,0.230205,0.269539,0.820115,0.918277,0.385865,0.220061,0.347365,0.973842,0.578114,0.139869,0.631491,0.513646,0.822908,0.351794,0.408657,0.23461,0.537579,0.401841,0.906046,0.849219,0.848749,0.96189,0.67706,0.653791,0.522336,0.81803,0.643377,0.0764083,0.766058,0.343807,0.608585,0.745142,0.114392,0.526781,0.353409,0.60217,0.0903983,0.174179,0.0436948,0.941563,0.742059,0.592099,0.81297,0.795984,0.719241,0.319037,0.269604,0.909742,0.730581,0.793447,0.64944,0.421073,0.965282,0.802221,0.676604,0.824101,0.137179,0.224116,0.510514,0.268672,0.834526,0.830382,0.607223,0.210304,0.0324544,0.896072,0.109484,0.832871,0.157734,0.0554746,0.617708,0.499471,0.950277,0.335841,0.390352,0.0572217,0.593517,0.924846,0.143852,0.197197,0.543098,0.733194,0.759893,0.497269,0.137104,0.628793,0.495721,0.0575441,0.504016,0.892549,0.351475,0.478036,0.0280674,0.848294,0.393207,0.200892,0.0843538,0.606156,0.171001,0.191792,0.231718,0.808312,0.235045,0.384453,0.308174,0.361869,0.612958,0.548129,0.991009,0.446597,0.989163,0.494597,0.606498,0.990756,0.409423,0.915153,0.0957,0.589864,0.00819284,0.211036,0.923149,0.664434,0.179424,0.47,0.649478,0.0502962,0.430033,0.897961,0.0364084,0.785849,0.326598,0.840783,0.976458,0.349081,0.82965,0.463584,0.323788,0.90346,0.709427,0.208081,0.597548,0.117521,0.705577,0.622658,0.523462,0.86601,0.510183,0.0195168,0.584526,0.637663,0.804471,0.613322,0.229351,0.0288951,0.158767,0.622309,0.253583,0.0485569,0.58919,0.401645,0.790464,0.771185,0.151623,0.230082,0.575191,0.949455,0.310002,0.0204842,0.485778,0.107357,0.740617,0.963927,0.670537,0.813331,0.510882,0.426466,0.251157,0.920603,0.573759,0.619469,0.31265,0.0895075,0.481384,0.746779,0.969743,0.788461,0.459784,0.211841,0.241052,0.832523,0.857247,0.372685,0.964438,0.621626,0.63361,0.958849,0.209736,0.641976,0.374218,0.210632,0.02368,0.779672,0.29283,0.288534,0.605582,0.430323,0.785811,0.855625,0.709695,0.906577,0.331508,0.78644,0.790216,0.600983,0.655888,0.665151,0.665307,0.123332,0.462831,0.650128,0.865169,0.97331,0.784691,0.438514,0.536991,0.994793,0.818986,0.49212,0.0327518,0.0417693,0.441015,0.335233,0.32944,0.0188687,0.175248,0.65972,0.741189,0.91105,0.106872,0.0388946,0.462456,0.0236698,0.579872,0.493021,0.79212,0.662338,0.864296,0.267569,0.325621,0.482459,0.996717,0.901012,0.170445,0.445374,0.857241,0.0532134,0.237663,0.285113,0.798838,0.492772,0.470568,0.606413,0.0292543,0.826285,0.223462,0.953179,0.0196243,0.936495,0.785386,0.585639,0.706435,0.937599,0.113597,0.850185,0.982711,0.19625,0.55306,0.619715,0.160867,0.87183,0.885129,0.797365,0.753473,0.358091,0.798139,0.00377905,0.134109,0.465865,0.339079,0.411753,0.601811,0.909837,0.710747,0.199104,0.275499,0.745518,0.524089,0.473691,0.571146,0.548942,0.876099,0.0100728,0.958556,0.995585,0.522096,0.285392,0.720207,0.861134,0.0434049,0.0911104,0.191605,0.334225,0.327045,0.944732,0.957126,0.246412,0.846714,0.417142,0.995053,0.957976,0.808038,0.872275,0.445039,0.787081,0.401589,0.865729,0.857794,0.692849,0.728105,0.153435,0.68423,0.821083,0.137782,0.909118,0.973536,0.121231,0.0402612,0.866645,0.264048,0.0157164,0.857942,0.366622,0.927596,0.550688,0.880979,0.608395,0.728438,0.0503036,0.28309,0.174553,0.362992,0.480999,0.336521,0.680661,0.468217,0.881851,0.703365,0.0816244,0.505212,0.27945,0.744271,0.796766,0.219921,0.0277198,0.336459,0.910082,0.326593,0.860628,0.633092,0.594958,0.0883963,0.613753,0.26978,0.523044,0.0730249,0.662607,0.0407448,0.143933,0.344227,0.87793,0.422248,0.900064,0.101658,0.0856999,0.100623,0.794708,0.172858,0.71483,0.560248,0.678475,|0.480791,0.205127,0.535278,0.804739,0.205503,0.231281,0.726912,0.397676,0.116277,0.147111,0.445231,0.178699,0.269731,0.112838,0.439843,0.976968,0.534877,0.607541,0.0658281,0.474154,0.950664,0.625056,0.841811,0.30935,0.97253,0.0966225,0.537872,0.889771,0.264135,0.280479,0.00819099,0.321229,0.0950898,0.306336,0.289295,0.195108,0.111909,0.084852,0.93647,0.173082,0.64076,0.740226,0.570017,0.197919,0.792736,0.0485288,0.581992,0.365454,0.617294,0.875978,0.517384,0.418682,0.0985225,0.176359,0.759682,0.233234,0.959841,0.0826914,0.844484,0.831452,0.396551,0.337416,0.142872,0.342529,0.447822,0.770675,0.0726328,0.530725,0.667941,0.182062,0.152178,0.72523,0.355956,0.528374,0.251024,0.5629,0.107638,0.739804,0.799059,0.705691,0.556764,0.368542,0.946545,0.527419,0.479851,0.013535,0.517885,0.281721,0.982841,0.0195166,0.267671,0.899222,0.690713,0.291157,0.397817,0.674819,0.850656,0.93209,0.783963,0.414923,0.342595,0.303159,0.874943,0.0140721,0.681659,0.574619,0.657659,0.330564,0.41738,0.508562,0.160229,0.605891,0.0226851,0.541056,0.306525,0.347435,0.624413,0.621551,0.221988,0.529162,0.0591258,0.969613,0.816913,0.398207,0.361103,0.960137,0.245895,0.00826806,0.0113972,0.492795,0.389295,0.230345,0.173917,0.477227,0.353036,0.570006,0.143038,0.0390137,0.729151,0.0617306,0.982965,0.342692,0.876277,0.824611,0.479436,0.336354,0.93696,0.771134,0.381335,0.843415,0.0484792,0.252292,0.828698,0.516624,0.795805,0.470155,0.481091,0.817384,0.557195,0.233422,0.806365,0.0624884,0.493125,0.0751849,0.0250526,0.432987,0.940213,0.805325,0.766722,0.554765,0.599603,0.305597,0.884628,0.595697,0.880212,0.617013,0.458185,0.65884,0.166189,0.486023,0.94656,0.728579,0.896607,0.569592,0.383308,0.165803,0.499422,0.877666,0.427175,0.602992,0.347004,0.116159,0.0883064,0.267812,0.669243,0.1689,0.934033,0.840393,0.799496,0.0777735,0.508031,0.254294,0.821032,0.753577,0.77112,0.742093,0.537991,0.433058,0.223361,0.818272,0.314141,0.112279,0.0123918,0.175124,0.355738,0.52303,0.226566,0.255498,0.708523,0.417736,0.708466,0.00304514,0.317835,0.146709,0.288372,0.86409,0.742418,0.668932,0.517098,0.803996,0.248583,0.897868,0.00428671,0.749677,0.989416,0.677825,0.766496,0.184826,0.154984,0.568019,0.580413,0.0869945,0.388784,0.904292,0.339187,0.64029,0.405826,0.138327,0.840007,0.631546,0.219829,0.180553,0.379771,0.461426,0.894819,0.35019,0.753052,0.00297225,0.341847,0.0553972,0.209721,0.147041,0.0617585,0.0629554,0.836156,0.512565,0.198394,0.821389,0.33526,0.887289,0.832611,0.0773754,0.0567695,0.132999,0.131386,0.568269,0.558448,0.588993,0.863025,0.693121,0.335913,0.711374,0.828442,0.130904,0.702451,0.346584,0.752528,0.532729,0.847492,0.40481,0.13754,0.843454,0.204576,0.613547,0.128102,0.526077,0.7995,0.0357867,0.68331,0.282063,0.504478,0.425173,0.18406,0.319216,0.0418917,0.533208,0.762518,0.637388,0.440681,0.36523,0.560832,0.959162,0.542179,0.10786,0.148126,0.621533,0.211807,0.696466,0.944592,0.181695,0.168465,0.829021,0.161511,0.0456124,0.48252,0.291148,0.0814694,0.47063,0.555992,0.381816,0.451527,0.464672,0.00280017,0.997733,0.713813,0.370802,0.759795,0.801234,0.715935,0.841807,0.616581,0.513067,0.358304,0.635762,0.432481,0.961239,0.758172,0.605881,0.444913,0.390263,0.743167,0.806191,0.444655,0.897451,0.0154726,0.827039,0.707599,0.505755,0.638937,0.20741,0.829866,0.855272,0.0601496,0.60349,0.950961,0.975831,0.798808,0.316368,0.846513,0.407426,0.381323,0.444134,0.407616,0.570166,0.381503,0.636707,0.236522,0.990002,0.500663,0.714296,0.500107,0.811616,0.300487,0.53376,0.836595,0.298427,0.680783,0.976858,0.779591,0.693543,0.697888,0.871149,0.553551,0.0496277,0.663811,0.771224,0.791031,0.249289,0.0292758,0.213918,0.210034,0.233703,0.100975,0.308796,0.610494,0.054309,0.471509,0.825213,0.692569,0.931919,0.712275,0.0252134,0.934308,0.749184,0.467126,0.817053,0.853757,0.569037,0.971542,0.827634,0.804356,0.108521,0.982299,0.165148,0.52662,0.209084,0.504392,0.4078,0.806017,0.938745,0.35124,0.421001,0.711515,0.843136,0.543499,0.923565,0.72243,0.539786,0.566429,0.822878,0.862203,0.456773,0.424904,0.67421,0.96527,0.415013,0.146065,0.137952,0.779916,0.00388503,0.0962153,0.23112,0.0338964,0.087349,0.690752,0.131219,0.0581655,0.451468,0.828643,0.409539,0.918839,0.978019,0.0909125,0.966443,0.785971,0.282664,0.901887,0.0298051,0.426068,0.671385,0.711357,0.143319,0.946928,0.102509,0.291824,0.291495,0.457694,0.639342,0.28645,0.19904,0.107074,0.0706022,0.509727,0.519254,0.993651,0.173694,0.701208,0.589919,0.936506,0.218553,0.150256,0.301922,0.214894,0.397641,0.516872,0.182318,0.781147,0.926086,0.698104,0.255901,0.737445,0.330097,0.688207,0.17211,0.396712,0.338875,0.183977,0.25559,0.749206,0.0113519,0.579527,0.453283,0.22796,0.946586,0.86211,0.259948,0.745542,0.621394,0.74551,0.52933,0.70732,0.509431,0.814695,0.733811,0.593418,0.639929,0.303526,0.728295,0.32138,0.866258,0.516266,0.14789,0.058706,0.221534,0.0612453,0.589048,0.715114,0.852459,0.845956,0.792232,0.353952,0.115824,0.692485,0.376134,0.0667694,0.322233,0.0386447,0.0835821,0.733277,0.203102,0.210449,0.199981,0.692828,0.803794,0.123093,0.0677345,0.630033,0.108122,0.630871,0.993334,0.865841,0.879154,0.24403,0.454481,0.620003,0.767872,0.557556,0.650171,0.41969,0.298754,0.856955,0.189049,0.765301,0.987038,0.811077,0.597272,0.405977,0.771641,0.381546,0.804082,0.0782769,0.466889,0.623334,0.932842,0.540743,0.253054,0.945878,0.276554,0.347463,0.155172,0.986316,0.211531,0.108077,0.284817,0.30312,0.0218624,0.315934,0.307163,0.857282,0.657979,0.423791,0.895955,0.0112511,0.507467,0.34022,0.124473,0.8044,0.900335,0.510943,0.398533,0.875798,0.755183,0.234989,0.338036,0.594766,0.356736,0.775158,0.309201,0.282883,0.905695,0.654459,0.462107,0.522847,0.638299,0.741128,0.511374,0.827118,0.438904,0.582637,0.808009,0.122709,0.132261,0.0603213,0.713216,0.321414,0.695494,0.422331,0.624185,0.95742,0.912057,0.787263,0.0910258,0.30754,0.487004,0.919885,0.369551,0.659891,0.392733,0.97609,0.0593517,0.544233,0.230464,0.664847,0.36649,0.218368,0.907155,0.459885,0.73641,0.177442,0.230365,0.0572915,0.493967,0.458797,0.0927553,0.747672,0.220141,0.441168,0.261866,0.362868,0.728818,0.450134,0.128806,0.853209,0.796243,0.992259,0.73249,0.333742,0.323621,0.0981531,0.593909,0.610006,0.075316,0.602498,0.868242,0.136175,0.767178,0.489752,0.253899,0.76986,0.792865,0.873084,0.582026,0.362266,0.208366,0.261641,0.612037,0.711551,0.806172,0.17049,0.011029,0.0956454,0.374367,0.805529,0.496034,0.539352,0.246144,0.623035,0.747138,0.530424,0.164203,0.0389197,0.390827,0.681461,0.775546,0.188731,0.637428,0.0159719,0.848994,0.265901,0.440734,0.0327227,0.83641,0.0746759,0.591378,0.844728,0.872502,0.115247,0.753931,0.353689,0.920949,0.629512,0.485716,0.932176,0.246443,0.59214,0.826783,0.769724,0.735109,0.963475,0.117439,0.975525,0.0456107,0.681272,0.317535,0.602864,0.209187,0.47554,0.115072,0.609222,0.999693,0.155211,0.196318,0.411923,0.332623,0.154513,0.805223,0.934174,0.87848,0.383948,0.809769,0.471786,0.420533,0.0416255,0.497707,0.295961,0.995726,0.456558,0.808769,0.122159,0.377932,0.407935,0.394761,0.702118,0.845795,0.460296,0.523402,0.0591763,0.0696691,0.191816,0.600367,0.471473,0.361275,0.101718,0.0606768,0.68905,0.425636,0.532968,0.816502,0.915201,0.266536,0.651524,0.405629,0.117098,0.807827,0.48688,0.606517,0.890381,0.39888,0.0601703,0.373374,0.423086,0.464105,0.375227,0.355171,0.690811,0.404439,0.671076,0.944626,0.691879,0.623296,0.156014,0.462026,0.0083819,0.709973,0.146541,0.0724783,0.441648,0.92149,0.274692,0.0905421,0.426317,0.545829,0.112925,0.656113,0.481066,0.66341,0.325335,0.754476,0.911553,0.408801,0.617107,0.538333,0.634621,0.705056,0.851249,0.797316,0.622417,0.342675,0.145772,0.260796,0.921528,0.659865,0.0328279,0.135153,0.903237,0.93464,0.933993,0.535785,0.495669,0.97323,0.399407,0.587685,0.868734,0.897875,0.849599,0.819932,0.0730888,0.733165,0.396417,0.678353,0.791873,0.0885177,0.390236,0.130177,0.700121,0.694626,0.37278,0.952521,0.562883,0.932815,0.789038,0.867241,0.308629,0.743998,0.0827904,0.771671,0.878469,0.516952,0.397537,0.333712,0.222508,0.38558,0.957929,0.839902,0.861474,0.369369,0.239344,0.565998,0.12252,0.268388,0.447226,0.483088,0.723707,0.0301622,0.714038,0.40948,0.302607,0.869616,0.650187,0.0226836,0.321903,0.258476,0.980382,0.206042,0.264145,0.197439,0.734552,0.533604,0.883371,0.331344,0.861606,0.575494,0.595124,0.912755,0.515865,0.364042,0.706405,0.43585,0.812051,0.0439864,0.763024,0.42301,0.74507,0.232793,0.519696,0.367935,0.590112,0.691749,0.842442,0.198384,0.820517,0.942251,0.933199,0.609591,0.163858,0.182672,0.522685,0.962076,0.500531,0.952017,0.412727,0.262487,0.623992,0.705673,0.465464,0.744642,0.186446,0.782513,0.524295,0.897984,0.0843043,0.581494,0.0782188,0.19291,0.0168712,0.151401,0.933428,0.557831,0.508102,0.084078,0.869966,0.809189,0.837462,0.891151,0.682205,0.758435,0.797044,0.397342,0.818027,0.344565,0.078611,0.90466,0.654581,0.520511,0.361523,0.980433,0.394442,0.672525,0.355798,0.77217,0.773167,0.38635,0.31833,0.470971,0.118845,0.0729699,0.393221,0.453608,0.112523,0.826598,0.695975,0.927105,0.844267,0.510773,0.724033,0.772779,0.631957,0.528957,0.873396,0.978657,|0.765017,0.840093,0.874914,0.823759,0.354424,0.393743,0.581503,0.140932,0.949804,0.330445,0.650011,0.378588,0.362434,0.24309,0.999335,0.716488,0.311655,0.975412,0.00497609,0.757508,0.983174,0.525854,0.743152,0.469682,0.953218,0.409145,0.403654,0.609421,0.57623,0.254439,0.876796,0.561527,0.44005,0.244977,0.424008,0.0108999,0.931614,0.279627,0.0908955,0.0994459,0.212116,0.221717,0.608614,0.805729,0.950639,0.347958,0.182025,0.267187,0.59605,0.156428,0.0862807,0.551319,0.537754,0.595832,0.668038,0.519119,0.17536,0.0246339,0.347699,0.152826,0.844624,0.884754,0.587252,0.939629,0.333794,0.0162739,0.827761,0.993394,0.152757,0.804804,0.928812,0.577414,0.800943,0.398421,0.462103,0.637514,0.358136,0.485117,0.253702,0.0451549,0.0251531,0.558573,0.0494747,0.216885,0.585406,0.635282,0.000440538,0.064022,0.222511,0.884901,0.0350151,0.494797,0.590162,0.593535,0.635231,0.455546,0.563222,0.886456,0.322794,0.997821,0.162843,0.782392,0.895243,0.548722,0.224263,0.467581,0.540547,0.568665,0.803553,0.537412,0.307042,0.0953507,0.443819,0.226396,0.780213,0.387173,0.497307,0.973129,0.789578,0.0429356,0.312754,0.182368,0.554636,0.065367,0.0514712,0.408607,0.80953,0.673534,0.139558,0.0646161,0.77214,0.962308,0.611499,0.951566,0.397098,0.638613,0.00441295,0.206911,0.321551,0.284218,0.360625,0.367139,0.99901,0.448885,0.960977,0.243423,0.397024,0.217332,0.297033,0.734305,0.957424,0.423647,0.364182,0.487028,0.224304,0.245685,0.00785685,0.108156,0.102108,0.670516,0.221323,0.39225,0.711606,0.800456,0.658952,0.11393,0.376469,0.48399,0.78538,0.101976,0.560474,0.803083,0.164258,0.743223,0.253739,0.285598,0.561873,0.0134538,0.109422,0.124171,0.10695,0.828932,0.911237,0.291687,0.132002,0.892668,0.632026,0.889187,0.577808,0.907261,0.0456089,0.40609,0.68148,0.86346,0.346994,0.82178,0.618147,0.132804,0.933972,0.782723,0.81885,0.749945,0.746157,0.739064,0.907658,0.731865,0.0139527,0.241048,0.772391,0.402667,0.429953,0.326043,0.675952,0.556617,0.394711,0.617114,0.875399,0.882006,0.428895,0.135717,0.372551,0.581702,0.910835,0.56367,0.784348,0.952883,0.42367,0.885244,0.956975,0.471074,0.507659,0.884688,0.728973,0.855451,0.183137,0.710741,0.315841,0.405851,0.130863,0.318153,0.674488,0.800071,0.608877,0.332176,0.68189,0.745065,0.265861,0.914419,0.353781,0.229249,0.773612,0.919871,0.990889,0.926732,0.33537,0.528505,0.348702,0.284609,0.299988,0.256982,0.62357,0.843767,0.918261,0.0226852,0.65952,0.252395,0.907973,0.185831,0.542874,0.827539,0.296923,0.976167,0.258191,0.167604,0.0923842,0.932073,0.40283,0.611161,0.415116,0.44545,0.928418,0.619492,0.979748,0.786917,0.899565,0.209483,0.902002,0.3876,0.310838,0.672327,0.0222747,0.0892045,0.000741601,0.385171,0.804738,0.273609,0.148591,0.613703,0.026435,0.222827,0.504467,0.524391,0.197818,0.935705,0.516567,0.660527,0.66264,0.469536,0.561729,0.472948,0.93125,0.927932,0.481252,0.445149,0.533792,0.744092,0.780592,0.107267,0.191686,0.0867788,0.279085,0.388282,0.706861,0.837137,0.633977,0.19368,0.63198,0.100609,0.30473,0.0870067,0.735008,0.250711,0.220807,0.664163,0.583119,0.12889,0.396814,0.00238812,0.00279135,0.706257,0.222449,0.859729,0.0414375,0.669812,0.205607,0.518827,0.855758,0.562525,0.161765,0.183835,0.540168,0.33482,0.755054,0.213359,0.911828,0.152874,0.87191,0.396562,0.293713,0.876326,0.87668,0.739242,0.0954506,0.549873,0.964808,0.68487,0.88193,0.0352715,0.463539,0.895393,0.481189,0.942719,0.459493,0.194599,0.0509431,0.418114,0.245436,0.538952,0.741674,0.0676806,0.380068,0.851189,0.370325,0.718884,0.254402,0.479589,0.797415,0.716158,0.691116,0.28677,0.699514,0.763234,0.413593,0.626966,0.385822,0.603993,0.0683414,0.94512,0.897364,0.192153,0.814144,0.129372,0.455929,0.573648,0.89117,0.335173,0.636418,0.392656,0.301164,0.9754,0.826937,0.916171,0.443208,0.334791,0.611544,0.394759,0.122733,0.223118,0.611697,0.035887,0.540468,0.160641,0.245666,0.779173,0.726011,0.562216,0.816292,0.0252377,0.852124,0.977846,0.0466855,0.646133,0.826833,0.341484,0.455283,0.838055,0.5388,0.766697,0.92951,0.241006,0.619851,0.860809,0.570343,0.171303,0.425585,0.964916,0.771084,0.492533,0.105513,0.687271,0.974797,0.52735,0.974214,0.910061,0.881453,0.375901,0.66037,0.0510453,0.98644,0.823456,0.300093,0.377995,0.711633,0.852917,0.949208,0.137817,0.516451,0.718786,0.16906,0.587671,0.278613,0.992065,0.294124,0.640755,0.257411,0.0755814,0.942081,0.226183,0.954092,0.472256,0.254953,0.207781,0.828952,0.842427,0.50582,0.520037,0.843003,0.912106,0.0543591,0.540564,0.0976786,0.468081,0.967348,0.879992,0.953121,0.328319,0.206082,0.744633,0.637204,0.152322,0.528147,0.905637,0.708456,0.614988,0.812193,0.388326,0.925194,0.724936,0.106447,0.390699,0.145628,0.247899,0.399703,0.949018,0.902033,0.573148,0.921462,0.248135,0.489575,0.145276,0.439399,0.288569,0.209113,0.388675,0.734153,0.977501,0.116624,0.970804,0.290087,0.706377,0.384483,0.848971,0.855554,0.854822,0.233494,0.17624,0.766729,0.758676,0.747853,0.665682,0.185389,0.123064,0.836483,0.454318,0.821363,0.652108,0.203852,0.25439,0.831113,0.416768,0.0328977,0.505494,0.132819,0.887354,0.512504,0.0701816,0.322729,0.177208,0.32979,0.269467,0.825451,0.575828,0.675016,0.395186,0.518278,0.129575,0.361588,0.846974,0.599439,0.500326,0.166828,0.355242,0.671371,0.575842,0.309978,0.18931,0.193199,0.955299,0.491008,0.718405,0.615254,0.934301,0.10082,0.532857,0.835591,0.624093,0.826638,0.756254,0.353593,0.909959,0.751871,0.0301569,0.980407,0.450801,0.737275,0.378455,0.0118703,0.0367227,0.65717,0.719842,0.535621,0.528153,0.246595,0.612147,0.476744,0.151577,0.525806,0.976584,0.0484897,0.52601,0.539503,0.755783,0.672813,0.0263066,0.45914,0.034724,0.205553,0.210922,0.343774,0.0193092,0.139505,0.893622,0.690941,0.2815,0.928964,0.550362,0.061402,0.145553,0.753211,0.31129,0.210231,0.446598,0.409551,0.0943406,0.766563,0.19079,0.696116,0.334351,0.469127,0.431055,0.00999296,0.45143,0.223251,0.808414,0.655316,0.836293,0.456616,0.757499,0.305978,0.28283,0.176489,0.175083,0.971463,0.66055,0.743953,0.467407,0.16929,0.181008,0.0969919,0.482287,0.883044,0.0152937,0.714847,0.60312,0.272236,0.0869021,0.927424,0.512387,0.126837,0.741195,0.93271,0.213696,0.500873,0.640699,0.66081,0.407706,0.535792,0.293253,0.236938,0.0952777,0.049826,0.812193,0.617173,0.124211,0.375274,0.393876,0.619248,0.576407,0.775807,0.663816,0.323997,0.683979,0.80037,0.970632,0.0213993,0.204406,0.0380443,0.47689,0.904995,0.764603,0.148878,0.485762,0.407868,0.202232,0.165448,0.485821,0.624994,0.826733,0.0840886,0.397106,0.614107,0.27626,0.961327,0.42445,0.721476,0.496341,0.52314,0.477531,0.366414,0.48621,0.652959,0.165621,0.394263,0.580247,0.173561,0.202712,0.545277,0.934857,0.0450355,0.244145,0.289047,0.586337,0.262285,0.624164,0.668025,0.925648,0.43878,0.0699151,0.414621,0.780907,0.726486,0.570077,0.455472,0.648265,0.319097,0.0717728,0.663851,0.661483,0.970011,0.00601763,0.181196,0.910582,0.679686,0.682468,0.860721,0.710491,0.863436,0.181195,0.629362,0.780765,0.788492,0.226538,0.131767,0.795709,0.905799,0.389177,0.961763,0.704465,0.711081,0.0261852,0.511101,0.818475,0.489584,0.687801,0.302906,0.0978531,0.321726,0.132805,0.953813,0.243635,0.399624,0.220237,0.382418,0.941507,0.625986,0.328282,0.643709,0.910941,0.197434,0.0902843,0.0517412,0.0388598,0.290784,0.90939,0.668084,0.0397905,0.764488,0.0640699,0.83681,0.868634,0.10103,0.753539,0.213128,0.592716,0.945002,0.42359,0.897638,0.193955,0.389919,0.36269,0.953758,0.90554,0.0506948,0.110053,0.0953627,0.984322,0.540552,0.972085,0.357087,0.863809,0.0310224,0.774321,0.424213,0.1024,0.019962,0.953109,0.0771658,0.717675,0.944412,0.439222,0.966053,0.233728,0.215639,0.477201,0.652376,0.99335,0.0221681,0.0493821,0.379411,0.401256,0.3237,0.971077,0.116287,0.477113,0.295755,0.294173,0.636578,0.20777,0.0899656,0.546389,0.15124,0.281218,0.960864,0.768513,0.00427139,0.276052,0.00239211,0.440004,0.981789,0.780587,0.582323,0.112622,0.627707,0.889155,0.4139,0.00117034,0.393535,0.849901,0.605285,0.378113,0.382894,0.244042,0.857681,0.495135,0.125175,0.97229,0.932938,0.272637,0.418285,0.99286,0.30043,0.326625,0.126345,0.639487,0.759218,0.608648,0.0428913,0.696508,0.0431502,0.565037,0.870654,0.274227,0.0322292,0.678441,0.103899,0.0159523,0.088571,0.951884,0.815298,0.773303,0.0881616,0.0479402,0.103292,0.741204,0.591421,0.30999,0.303101,0.909597,0.133634,0.265932,0.12309,0.353402,0.478965,0.213453,0.346477,0.150476,0.536282,0.282031,0.85169,0.693464,0.905556,0.843707,0.592609,0.808751,0.996843,0.416018,0.541005,0.791389,0.247048,0.0217514,0.487208,0.66078,0.427145,0.295745,0.156723,0.577318,0.367467,0.864012,0.325391,0.842706,0.948764,0.436228,0.660659,0.653685,0.148884,0.680766,0.354267,0.0913537,0.16544,0.465973,0.141907,0.671872,0.287704,0.0834165,0.386348,0.770636,0.799218,0.040525,0.176657,0.660355,0.705048,0.176132,0.855981,0.636848,0.551027,0.859094,0.616111,0.224753,0.632983,0.495191,0.823801,0.867079,0.683147,0.160953,0.923485,0.885029,0.218683,0.493262,0.172127,0.955155,0.78052,0.93357,0.132021,0.730477,0.131948,0.766315,0.564771,0.473442,0.398456,0.631573,0.688553,0.921305,0.446628,0.953753,0.779522,0.620276,0.741832,0.4505,0.0837625,0.612689,|0.90789,0.389742,0.585209,0.15559,0.37008,0.869142,0.195904,0.82281,0.811167,0.901666,0.288817,0.310842,0.533538,0.0144566,0.54608,0.785592,0.425937,0.98189,0.773341,0.15282,0.0922924,0.979262,0.516347,0.223522,0.817007,0.244465,0.167992,0.749004,0.0780172,0.406988,0.828513,0.972548,0.686247,0.0826519,0.842627,0.0694252,0.0241485,0.0473374,0.471076,0.0316561,0.176429,0.88313,0.229841,0.0623477,0.747848,0.807772,0.657704,0.682448,0.643484,0.0602109,0.531352,0.030336,0.819872,0.800215,0.056357,0.571206,0.661851,0.0171279,0.465908,0.65285,0.257306,0.926772,0.612206,0.552993,0.512546,0.437145,0.410166,0.549082,0.69175,0.815064,0.812948,0.497808,0.0274482,0.1835,0.350509,0.62978,0.966944,0.641096,0.0877581,0.818266,0.059787,0.146108,0.431414,0.496547,0.0793963,0.0399364,0.198647,0.384672,0.368696,0.576254,0.724535,0.275398,0.225933,0.774706,0.680237,0.963252,0.872703,0.121493,0.0513364,0.413817,0.527435,0.907076,0.935257,0.0575777,0.128399,0.424432,0.40225,0.863261,0.806032,0.313683,0.82893,0.954913,0.0118817,0.637774,0.638152,0.043008,0.182011,0.950527,0.473333,0.969977,0.0475038,0.835166,0.114311,0.592754,0.624538,0.841394,0.853115,0.65795,0.78786,0.0491356,0.353083,0.933193,0.248895,0.471564,0.284372,0.107603,0.20677,0.0226571,0.267521,0.268542,0.0601212,0.709045,0.201601,0.369442,0.541582,0.787809,0.299138,0.088378,0.169044,0.804247,0.612014,0.957024,0.624623,0.306646,0.501468,0.71402,0.447412,0.806594,0.298211,0.545001,0.846625,0.951661,0.277356,0.932002,0.685173,0.362075,0.697301,0.503346,0.161065,0.195112,0.249644,0.294926,0.167542,0.641313,0.805602,0.0118932,0.839567,0.203026,0.123051,0.80002,0.915085,0.988188,0.656377,0.71708,0.150686,0.828473,0.64999,0.499816,0.861572,0.393427,0.28439,0.0568883,0.585023,0.275602,0.0788422,0.861383,0.219863,0.211809,0.0194757,0.621824,0.712555,0.258751,0.753321,0.987466,0.495344,0.333135,0.422195,0.729972,0.543171,0.966728,0.252347,0.0204125,0.204836,0.0433471,0.922533,0.0722036,0.65137,0.0794321,0.774398,0.372894,0.99872,0.13934,0.705774,0.0525107,0.564003,0.516461,0.732769,0.289863,0.64529,0.424607,0.93022,0.66802,0.546861,0.278543,0.71941,0.199474,0.266042,0.118559,0.992957,0.42204,0.0245732,0.455958,0.934063,0.477573,0.0838283,0.129462,0.818794,0.885476,0.659008,0.421898,0.520285,0.980497,0.760546,0.531761,0.509197,0.771177,0.741969,0.450577,0.751579,0.11937,0.955599,0.25557,0.727274,0.687656,0.903448,0.825195,0.288204,0.550803,0.191361,0.797922,0.503111,0.421962,0.158558,0.380423,0.226098,0.99864,0.464487,0.878187,0.998253,0.564021,0.63766,0.852319,0.964942,0.506872,0.48225,0.416687,0.26642,0.643621,0.0169089,0.883862,0.323099,0.718238,0.837977,0.994538,0.878488,0.383234,0.076181,0.393626,0.0318559,0.46023,0.553748,0.220091,0.754685,0.668211,0.0324221,0.448004,0.578274,0.713131,0.0131583,0.378043,0.265464,0.388738,0.34975,0.916832,0.258408,0.777229,0.600539,0.229059,0.725057,0.808265,0.858739,0.472549,0.509634,0.425281,0.0726405,0.0325744,0.0919,0.200445,0.517592,0.940164,0.618489,0.506586,0.589634,0.521843,0.00156873,0.882706,0.132747,0.956071,0.148775,0.185414,0.247399,0.316328,0.528161,0.928148,0.209767,0.882139,0.443015,0.0555224,0.379897,0.339495,0.543971,0.238693,0.198364,0.958335,0.333637,0.443561,0.577548,0.703202,0.492069,0.761233,0.636036,0.301518,0.308254,0.419721,0.233875,0.426555,0.75775,0.525609,0.212431,0.82042,0.133479,0.983882,0.825808,0.160527,0.448357,0.0906528,0.901527,0.929703,0.278153,0.0756064,0.888731,0.981903,0.140457,0.226511,0.51259,0.0606873,0.539248,0.643133,0.241141,0.887307,0.463947,0.838133,0.081965,0.574977,0.503418,0.196366,0.251447,0.838705,0.100978,0.749537,0.909949,0.75813,0.0632656,0.254862,0.0990412,0.0243417,0.659821,0.380139,0.2251,0.879585,0.690174,0.905017,0.363496,0.698457,0.866242,0.0519826,0.753751,0.294749,0.261939,0.354658,0.0393114,0.141488,0.253714,0.382875,0.963045,0.900489,0.0660027,0.836845,0.226567,0.699228,0.467648,0.892103,0.150951,0.499896,0.599115,0.802813,0.905581,0.68612,0.959131,0.857324,0.23314,0.10292,0.985365,0.0774738,0.568407,0.624134,0.116209,0.267009,0.115298,0.148009,0.343524,0.543451,0.415725,0.196218,0.426574,0.258002,0.270265,0.379024,0.142548,0.160031,0.313271,0.832604,0.396831,0.576421,0.28689,0.652225,0.995996,0.373659,0.252033,0.257125,0.858398,0.872905,0.864306,0.829536,0.508356,0.295851,0.513181,0.175827,0.879698,0.889105,0.336747,0.695834,0.00408387,0.551755,0.613639,0.222361,0.733342,0.219237,0.615363,0.687777,0.280252,0.615166,0.451971,0.559444,0.565111,0.0668097,0.590753,0.447905,0.292216,0.555803,0.638994,0.959877,0.850132,0.0814856,0.0341652,0.521698,0.99903,0.653742,0.733312,0.172935,0.253391,0.190175,0.477553,0.415058,0.815197,0.596951,0.984264,0.0255878,0.171506,0.0590655,0.767004,0.376208,0.340692,0.904748,0.383678,0.89111,0.0625809,0.680439,0.604738,0.0309355,0.215927,0.975874,0.290566,0.821897,0.468597,0.853858,0.393409,0.0147337,0.710097,0.0346997,0.740268,0.611483,0.344744,0.751765,0.108574,0.439242,0.66864,0.813722,0.42864,0.10014,0.0337188,0.0169469,0.165667,0.0810863,0.391804,0.805909,0.0144889,0.847477,0.0346711,0.442633,0.011417,0.598177,0.397619,0.28863,0.970533,0.528574,0.164554,0.718054,0.171421,0.82908,0.275096,0.0184477,0.601121,0.0698716,0.347277,0.558509,0.666021,0.80088,0.155885,0.325834,0.459554,0.630029,0.158352,0.92829,0.764649,0.460039,0.30162,0.226035,0.445364,0.138613,0.0541951,0.274981,0.851168,0.889126,0.134596,0.382219,0.184458,0.288625,0.753159,0.0954549,0.970887,0.801204,0.108172,0.00134957,0.122051,0.162826,0.524536,0.12649,0.0196036,0.110596,0.665041,0.922075,0.633115,0.135423,0.541254,0.823637,0.734005,0.418994,0.511177,0.907509,0.45148,0.683806,0.934088,0.737723,0.366361,0.813109,0.254465,0.310813,0.725843,0.764784,0.576293,0.295131,0.214983,0.993023,0.47405,0.576,0.0527735,0.0594886,0.717606,0.470935,0.60607,0.477372,0.761051,0.202748,0.963771,0.643747,0.0346811,0.328831,0.628444,0.812212,0.371582,0.603058,0.706414,0.695022,0.748272,0.21167,0.325114,0.201898,0.36013,0.521634,0.585503,0.294849,0.390644,0.205171,0.334614,0.693589,0.815238,0.788943,0.538891,0.951003,0.285153,0.021849,0.0746669,0.938664,0.0853856,0.341637,0.150519,0.0589555,0.466653,0.74957,0.998924,0.906178,0.68152,0.748322,0.729113,0.338955,0.390002,0.696706,0.592175,0.615901,0.325593,0.950579,0.91291,0.698476,0.757223,0.196835,0.468378,0.405287,0.714946,0.0945846,0.582865,0.360535,0.172614,0.397361,0.650397,0.271707,0.621901,0.507238,0.0249977,0.272292,0.111054,0.960045,0.128712,0.925461,0.0630202,0.0863426,0.316234,0.981286,0.396462,0.332405,0.262662,0.0912098,0.666647,0.931153,0.823791,0.876155,0.873394,0.161481,0.371885,0.303941,0.946543,0.99103,0.825731,0.921366,0.721689,0.0560551,0.975407,0.0413497,0.252319,0.515314,0.433996,0.107821,0.515762,0.283303,0.908228,0.562724,0.885794,0.907704,0.62452,0.688713,0.948583,0.263912,0.0176741,0.40628,0.303318,0.283179,0.605821,0.581375,0.922561,0.68525,0.682824,0.354001,0.75701,0.179012,0.802234,0.895862,0.681965,0.314696,0.786071,0.26866,0.785679,0.0722999,0.218095,0.373095,0.0954575,0.231103,0.151895,0.580188,0.228478,0.691102,0.661417,0.899453,0.48557,0.593139,0.835982,0.0179328,0.970886,0.213318,0.941626,0.51266,0.756693,0.76368,0.108389,0.415096,0.836547,0.82248,0.20098,0.29345,0.145823,0.116532,0.616975,0.623918,0.540098,0.417136,0.840456,0.472089,0.706784,0.565798,0.628649,0.863098,0.413807,0.0653547,0.784953,0.491976,0.29887,0.447151,0.0441123,0.508798,0.700455,0.755449,0.813955,0.993288,0.0348924,0.634675,0.576463,0.97833,0.416207,0.957834,0.879719,0.950464,0.114578,0.25575,0.326881,0.589409,0.0767936,0.683386,0.846653,0.032195,0.187908,0.67971,0.0899513,0.422201,0.626361,0.10847,0.973582,0.335059,0.546052,0.808342,0.961672,0.41352,0.825054,0.248742,0.811593,0.348833,0.404429,0.673467,0.89855,0.895391,0.993331,0.655871,0.0442501,0.23371,0.552427,0.891318,0.9292,0.594121,0.524675,0.912608,0.846921,0.898218,0.365498,0.223879,0.599047,0.17557,0.0358429,0.00336081,0.545615,0.172283,0.533609,0.0728169,0.884403,0.905149,0.771213,0.513265,0.559996,0.840088,0.760458,0.907824,0.222669,0.727432,0.981877,0.00275147,0.580748,0.878231,0.644854,0.704518,0.191595,0.821884,0.970855,0.677627,0.598915,0.187675,0.469028,0.728901,0.374026,0.30182,0.476868,0.194796,0.208686,0.445454,0.693264,0.423733,0.0627894,0.0804791,0.861518,0.101261,0.365569,0.636571,0.669813,0.533344,0.931419,0.846183,0.0781374,0.481016,0.41712,0.176514,0.663334,0.24292,0.886962,0.260501,0.527206,0.0466995,0.0935434,0.687003,0.866993,0.276101,0.307532,0.169249,0.339947,0.512083,0.596977,0.0742641,0.901602,0.987231,0.13201,0.914155,0.900716,0.258686,0.0900846,0.15802,0.558995,0.180083,0.63203,0.760668,0.790079,0.885831,0.13595,0.419721,0.522487,0.454562,0.312918,0.928741,0.963991,0.824094,0.533086,0.476654,0.462317,0.48661,0.399343,0.242188,0.723647,0.285117,0.0750563,0.944172,0.84188,0.493205,0.566904,0.540466,0.394069,0.227806,0.744173,0.207365,0.377241,0.275169,0.288451,0.413365,0.352443,0.841043,0.390712,0.143687,0.982612,0.698083,0.0654407,0.236313,0.74715,0.44654,0.776565,0.489946,0.119212,0.481686,|0.371752,0.655115,0.150759,0.555875,0.798173,0.436146,0.335708,0.687962,0.145839,0.617888,0.384455,0.699552,0.337298,0.515238,0.442793,0.540416,0.834468,0.271896,0.978992,0.122879,0.157094,0.565619,0.746152,0.518193,0.944518,0.260124,0.83797,0.56968,0.214974,0.429323,0.645082,0.395585,0.05351,0.789619,0.0105015,0.0944944,0.8821,0.58427,0.293555,0.302527,0.603788,0.429319,0.741081,0.287219,0.770975,0.186013,0.165124,0.178801,0.312063,0.340432,0.513172,0.820489,0.480361,0.708973,0.478224,0.288175,0.486863,0.536019,0.122975,0.952948,0.869201,0.509442,0.898333,0.39793,0.404046,0.553398,0.110107,0.292069,0.517904,0.904341,0.161119,0.911709,0.42239,0.649479,0.0549844,0.298139,0.251842,0.262904,0.736659,0.589519,0.344754,0.161466,0.335104,0.571116,0.283561,0.710581,0.465126,0.818885,0.406233,0.0405384,0.744445,0.0615436,0.00115401,0.201379,0.792139,0.60967,0.598484,0.19734,0.271274,0.0416219,0.739177,0.312078,0.466319,0.842247,0.0323848,0.150278,0.500178,0.547022,0.941408,0.0991271,0.269395,0.288414,0.153043,0.307732,0.84948,0.262651,0.310892,0.366818,0.703404,0.945504,0.934399,0.542624,0.164464,0.749143,0.8066,0.454674,0.0221791,0.453511,0.628375,0.568174,0.563588,0.00744247,0.786667,0.671517,0.491556,0.689395,0.393163,0.198291,0.732794,0.204374,0.478826,0.694735,0.678674,0.463575,0.148963,0.0479366,0.737783,0.398014,0.75304,0.0344394,0.927007,0.377109,0.22167,0.818123,0.456286,0.0284605,0.211347,0.520021,0.540519,0.431429,0.998849,0.331267,0.412435,0.858006,0.473203,0.878064,0.647248,0.792802,0.303963,0.271582,0.106167,0.632262,0.696181,0.369076,0.00881231,0.460217,0.690784,0.215693,0.439786,0.325896,0.242861,0.327509,0.26841,0.0732238,0.983951,0.341443,0.956316,0.510067,0.941455,0.526046,0.769764,0.510757,0.649049,0.654678,0.747309,0.319208,0.488898,0.210331,0.94602,0.597125,0.308295,0.950985,0.562719,0.75787,0.673598,0.285114,0.470276,0.238469,0.291016,0.15195,0.47795,0.197858,0.893242,0.191825,0.00645185,0.162906,0.155208,0.081063,0.111251,0.99083,0.338784,0.577918,0.305014,0.486626,0.339785,0.880245,0.823497,0.383639,0.358895,0.206113,0.904194,0.824382,0.324354,0.707637,0.5608,0.298461,0.997084,0.152252,0.728999,0.567143,0.00789332,0.453459,0.437659,0.725292,0.255094,0.963963,0.552158,0.84201,0.975664,0.622644,0.344651,0.502322,0.857005,0.0737534,0.630524,0.655224,0.900099,0.0434172,0.0449949,0.835978,0.755412,0.924251,0.331946,0.745682,0.404076,0.657247,0.20548,0.260929,0.582307,0.371306,0.967619,0.147528,0.113421,0.133387,0.876131,0.224109,0.488375,0.312808,0.0595606,0.787839,0.037484,0.737299,0.62394,0.159247,0.00235891,0.149514,0.0399066,0.94799,0.403459,0.668184,0.397387,0.601962,0.839912,0.108804,0.407377,0.887309,0.0357593,0.216272,0.626907,0.612759,0.449014,0.347295,0.659277,0.995401,0.36057,0.381044,0.684608,0.486252,0.979909,0.16118,0.621367,0.873128,0.296906,0.155797,0.205844,0.39988,0.655701,0.0152821,0.634364,0.432886,0.858212,0.248024,0.721527,0.157382,0.810435,0.729882,0.962219,0.703315,0.524622,0.516773,0.304523,0.320961,0.767961,0.595253,0.596898,0.440217,0.685975,0.909477,0.330495,0.181623,0.30475,0.0975132,0.628758,0.142033,0.122347,0.0681418,0.113249,0.560271,0.865239,0.295292,0.573247,0.817768,0.771783,0.581957,0.822845,0.146278,0.497954,0.0657609,0.0296944,0.314695,0.737456,0.320911,0.301983,0.701707,0.599291,0.973963,0.506219,0.819881,0.73179,0.693664,0.924253,0.452646,0.067443,0.148114,0.239148,0.357881,0.241271,0.499151,0.744383,0.348758,0.727032,0.410844,0.350508,0.0421502,0.95209,0.758474,0.503088,0.856917,0.51126,0.472351,0.368975,0.0116237,0.0975535,0.342941,0.557157,0.369736,0.120275,0.632852,0.485117,0.439986,0.0750076,0.857546,0.560332,0.184752,0.252344,0.936402,0.888601,0.487537,0.233266,0.277811,0.565513,0.943777,0.135247,0.861044,0.30899,0.28765,0.66575,0.917885,0.674821,0.570379,0.476526,0.603633,0.646848,0.242065,0.103292,0.515072,0.389033,0.389539,0.323701,0.174459,0.939963,0.127549,0.643199,0.868133,0.269426,0.675047,0.289164,0.245992,0.973895,0.163044,0.677499,0.53418,0.337239,0.380566,0.684611,0.247814,0.773484,0.0665967,0.123226,0.94852,0.0196786,0.846872,0.909569,0.862771,0.279125,0.845563,0.963068,0.912393,0.188909,0.318874,0.363409,0.000926137,0.178079,0.132999,0.837158,0.439748,0.278896,0.0636843,0.850682,0.595568,0.597599,0.703397,0.377593,0.335295,0.376637,0.359721,0.240691,0.477462,0.925446,0.717071,0.601197,0.850204,0.594138,0.389744,0.582123,0.853103,0.233443,0.408715,0.233836,0.967285,0.755461,0.408738,0.182517,0.675136,0.87916,0.868128,0.608906,0.763448,0.155212,0.764064,0.504419,0.356441,0.318144,0.563941,0.540129,0.679022,0.924675,0.722457,0.212893,0.945451,0.956569,0.704062,0.0566146,0.563715,0.889203,0.383243,0.712646,0.912069,0.40936,0.240396,0.0615954,0.087674,0.265121,0.160439,0.241218,0.373194,0.273381,0.328144,0.772769,0.200443,0.160238,0.818716,0.33337,0.760274,0.85534,0.000529647,0.507109,0.724532,0.940595,0.298737,0.353771,0.596457,0.383438,0.810549,0.73061,0.762794,0.561202,0.974638,0.361851,0.345282,0.661443,0.317696,0.845393,0.417329,0.837834,0.077292,0.44047,0.637744,0.918349,0.846879,0.396601,0.664188,0.0188346,0.542407,0.291341,0.773101,0.937635,0.691841,0.873556,0.0473654,0.922736,0.759905,0.16422,0.853026,0.719025,0.865691,0.0632357,0.708899,0.218784,0.352959,0.1641,0.777916,0.838494,0.139152,0.842823,0.693933,0.165915,0.82745,0.0927486,0.604783,0.442619,0.975105,0.221404,0.17357,0.383849,0.642783,0.97005,0.821064,0.01789,0.971344,0.539546,0.546886,0.0973353,0.639002,0.663203,0.701573,0.173557,0.586516,0.815586,0.33968,0.975877,0.787828,0.46839,0.659446,0.143496,0.479766,0.626707,0.738689,0.415819,0.770764,0.16534,0.831377,0.888239,0.748315,0.133339,0.166028,0.690512,0.209311,0.581348,0.838536,0.985832,0.637285,0.346875,0.435756,0.793976,0.669231,0.483577,0.0258695,0.663393,0.840869,0.548204,0.347629,0.252367,0.695032,0.115141,0.157164,0.0677025,0.109686,0.148222,0.272254,0.188594,0.206673,0.633116,0.766968,0.0545896,0.954827,0.46037,0.788848,0.628154,0.13513,0.106936,0.588894,0.183604,0.876682,0.572923,0.130902,0.348124,0.419235,0.559401,0.733252,0.810886,0.289636,0.345225,0.101602,0.265591,0.277334,0.448842,0.434447,0.570239,0.200443,0.643077,0.869923,0.184805,0.949354,0.933282,0.65548,0.164801,0.231143,0.0457502,0.689658,0.716988,0.839219,0.392232,0.966905,0.0505402,0.0387074,0.954881,0.682269,0.384121,0.448508,0.278091,0.905978,0.309594,0.971177,0.543968,0.03972,0.185254,0.296181,0.437457,0.157153,0.870944,0.454233,0.588884,0.712674,0.724758,0.638391,0.77005,0.280256,0.339939,0.585993,0.119197,0.302171,0.149205,0.271709,0.553027,0.572206,0.952373,0.248913,0.288803,0.295342,0.746692,0.584334,0.694837,0.387306,0.0604717,0.599749,0.092489,0.0311366,0.79681,0.780195,0.160832,0.575014,0.739559,0.387328,0.542714,0.596215,0.781321,0.000479937,0.863345,0.415927,0.566631,0.144332,0.135838,0.578011,0.719018,0.884747,0.990335,0.512469,0.689023,0.803472,0.773494,0.526262,0.114154,0.137491,0.670107,0.0520064,0.40802,0.760425,0.737032,0.17231,0.81594,0.440941,0.135939,0.168932,0.264161,0.844257,0.0201106,0.806949,0.314274,0.876792,0.880612,0.0771149,0.203779,0.0896435,0.840246,0.0845472,0.654031,0.701817,0.15878,0.015653,0.286099,0.573567,0.835846,0.493126,0.0344285,0.490184,0.0645865,0.5479,0.577922,0.248483,0.549772,0.00272149,0.52076,0.715315,0.254851,0.742534,0.886936,0.546486,0.142399,0.607412,0.971123,0.744744,0.29198,0.36705,0.741559,0.873092,0.941926,0.00209427,0.2353,0.191359,0.162244,0.40448,0.329928,0.134868,0.110506,0.937482,0.949164,0.445843,0.546653,0.938232,0.594365,0.658648,0.520643,0.551966,0.742708,0.616433,0.888613,0.766933,0.199316,0.0335782,0.405054,0.0797565,0.00619644,0.367614,0.493193,0.611021,0.590253,0.95896,0.524025,0.887679,0.216709,0.712226,0.0804099,0.587774,0.739558,0.363699,0.458196,0.208391,0.647519,0.735756,0.520304,0.786971,0.229577,0.580074,0.124582,0.264409,0.876052,0.21636,0.174612,0.704682,0.236172,0.355379,0.363431,0.910605,0.8537,0.779519,0.356311,0.72754,0.824749,0.231955,0.395772,0.84242,0.992234,0.402194,0.50159,0.0323619,0.605442,0.542553,0.555716,0.839285,0.864043,0.546895,0.042319,0.964737,0.406815,0.0483052,0.881956,0.44564,0.863325,0.882594,0.406878,0.461017,0.566538,0.883087,0.656494,0.733266,0.392579,0.752678,0.776794,0.412434,0.681293,0.775753,0.896849,0.341708,0.344422,0.510758,0.4575,0.27871,0.799103,0.923094,0.610706,0.361639,0.97625,0.184502,0.424631,0.926098,0.244713,0.682726,0.95663,0.254175,0.637417,0.182448,0.157614,0.87721,0.0369152,0.586359,0.550757,0.428299,0.397446,0.297723,0.818596,0.138406,0.83538,0.84199,0.291481,0.0981938,0.802521,0.512033,0.713151,0.248388,0.112095,0.079251,0.472272,0.045367,0.960542,0.0570644,0.252387,0.842156,0.462507,0.229599,0.0163305,0.884946,0.804953,0.503842,0.0496837,0.685859,0.978479,0.237259,0.839405,0.118193,0.131464,0.354024,0.304274,0.910369,0.888836,0.600278,0.270158,0.741317,0.914614,0.709225,0.484932,0.362269,0.218734,0.0411248,0.465748,0.572246,0.659974,0.211651,0.803409,0.771749,0.986378,0.280373,0.719588,0.0487575,0.723242,0.317514,0.682384,0.938289,0.114421,0.853919,|0.830498,0.199675,0.727389,0.792406,0.813283,0.791263,0.346894,0.221015,0.991203,0.541405,0.336486,0.486138,0.810096,0.433715,0.803873,0.279103,0.547754,0.963134,0.39336,0.29298,0.182974,0.690168,0.0673124,0.185404,0.518997,0.130646,0.306875,0.677587,0.691957,0.172284,0.665134,0.416861,0.483454,0.324074,0.420824,0.575234,0.180452,0.940628,0.861362,0.585929,0.241645,0.114131,0.113046,0.882644,0.834184,0.656783,0.470926,0.148952,0.514565,0.245964,0.88025,0.97366,0.281539,0.721542,0.878863,0.88848,0.214054,0.958727,0.199194,0.701991,0.0259989,0.258023,0.9849,0.633074,0.525547,0.256755,0.833706,0.882059,0.379828,0.944892,0.653057,0.933431,0.512391,0.866338,0.56039,0.448759,0.965794,0.357127,0.930402,0.249928,0.0267693,0.150157,0.836136,0.503965,0.877962,0.0296658,0.485319,0.997391,0.364776,0.211263,0.959742,0.335674,0.0936169,0.540699,0.741953,0.209506,0.211487,0.491041,0.75287,0.96546,0.436257,0.401326,0.688774,0.0579153,0.195296,0.223388,0.450494,0.605215,0.392589,0.502429,0.0247137,0.193615,0.835568,0.233992,0.0857948,0.539499,0.83116,0.689558,0.0730456,0.957537,0.847658,0.721534,0.716922,0.971592,0.795224,0.627791,0.584165,0.971372,0.231478,0.616419,0.524267,0.241757,0.738571,0.258815,0.772241,0.913893,0.488678,0.328165,0.882104,0.649629,0.627671,0.722554,0.0845867,0.0546584,0.282978,0.133793,0.401478,0.642658,0.558911,0.0568124,0.275455,0.892721,0.92126,0.0357972,0.483623,0.76665,0.375622,0.541962,0.115204,0.162401,0.225596,0.794374,0.0211973,0.492089,0.507663,0.0136878,0.518667,0.271746,0.857131,0.791846,0.0931266,0.0817444,0.272215,0.527507,0.196286,0.193905,0.541941,0.738442,0.31778,0.124922,0.539225,0.777694,0.358809,0.987209,0.922076,0.623702,0.840449,0.545793,0.431577,0.396603,0.227561,0.800852,0.0551016,0.16129,0.849342,0.996217,0.385244,0.0958697,0.685172,0.616508,0.00414526,0.485339,0.972211,0.491211,0.825858,0.23386,0.991046,0.146487,0.10333,0.149175,0.76232,0.268243,0.816016,0.0968192,0.874322,0.737159,0.537166,0.889275,0.436813,0.930004,0.401294,0.986581,0.176653,0.267999,0.690455,0.624033,0.846447,0.811016,0.0797416,0.158581,0.299639,0.738976,0.959458,0.0674847,0.491607,0.661649,0.198483,0.437717,0.334535,0.795834,0.823067,0.207521,0.293151,0.647203,0.714562,0.675547,0.543165,0.044705,0.163312,0.218425,0.692906,0.707487,0.462402,0.459951,0.361924,0.903747,0.562132,0.961905,0.062597,0.755757,0.871281,0.0805095,0.261468,0.115113,0.999368,0.662097,0.506396,0.00671637,0.292604,0.695662,0.307346,0.319691,0.352363,0.39645,0.108804,0.452246,0.564447,0.684132,0.958992,0.23629,0.333047,0.218978,0.0168938,0.246896,0.600489,0.368074,0.171002,0.840521,0.977327,0.149408,0.832436,0.238083,0.0406659,0.152325,0.0460516,0.828149,0.19153,0.243774,0.990062,0.53272,0.229234,0.0121097,0.603581,0.194874,0.23946,0.188666,0.995245,0.446937,0.771243,0.989767,0.460147,0.752401,0.611585,0.458022,0.510474,0.935416,0.500083,0.394893,0.24787,0.764557,0.482315,0.169045,0.720036,0.639981,0.600336,0.0713484,0.290334,0.488677,0.345238,0.685083,0.0140432,0.917952,0.781255,0.342262,0.334963,0.188752,0.682248,0.42839,0.96776,0.190126,0.941486,0.204826,0.265371,0.27545,0.412795,0.457937,0.328784,0.0771672,0.876023,0.740439,0.130563,0.148655,0.974565,0.395813,0.103985,0.125598,0.508663,0.819561,0.0983562,0.879339,0.7119,0.0356876,0.26279,0.104847,0.835899,0.424345,0.88285,0.67467,0.766405,0.546458,0.0705769,0.437747,0.698564,0.595119,0.0759386,0.310902,0.276884,0.431901,0.526682,0.659417,0.341136,0.676267,0.949508,0.758786,0.602198,0.793392,0.180369,0.188549,0.0174361,0.515559,0.530598,0.351796,0.513619,0.351935,0.147109,0.0249321,0.901781,0.708911,0.959176,0.521874,0.957533,0.304826,0.399821,0.71648,0.656376,0.335842,0.73196,0.936184,0.516175,0.169939,0.189277,0.305226,0.0205563,0.291996,0.182614,0.0150921,0.0952951,0.398096,0.434124,0.20771,0.229629,0.904114,0.0796319,0.213502,0.385131,0.841668,0.88475,0.0132778,0.902752,0.67312,0.0723898,0.143823,0.789589,0.421352,0.947286,0.757895,0.961861,0.56219,0.984912,0.565309,0.991921,0.814608,0.760896,0.34598,0.268751,0.122943,0.810708,0.566556,0.535012,0.435728,0.685843,0.00688243,0.500479,0.58197,0.656315,0.304491,0.157274,0.873901,0.574799,0.77684,0.984497,0.109456,0.234474,0.797,0.813915,0.162582,0.718489,0.318459,0.100017,0.34809,0.266874,0.083495,0.879924,0.696912,0.977131,0.804232,0.286911,0.975336,0.797949,0.204759,0.186347,0.419871,0.467365,0.42296,0.138712,0.993259,0.904243,0.167212,0.409383,0.784706,0.90853,0.883187,0.71384,0.210447,0.988097,0.588632,0.278287,0.323422,0.543609,0.485653,0.452757,0.904764,0.641986,0.627213,0.0651252,0.827476,0.451113,0.270499,0.305934,0.14114,0.45223,0.781785,0.0709855,0.78051,0.0836879,0.228422,0.537768,0.858898,0.507848,0.970375,0.347759,0.223969,0.059952,0.915402,0.603254,0.401145,0.519151,0.385865,0.66936,0.520532,0.764766,0.969744,0.760774,0.0822671,0.234457,0.122336,0.85537,0.578365,0.0435942,0.104334,0.139474,0.528724,0.814821,0.211717,0.125625,0.201087,0.826676,0.320023,0.236785,0.011079,0.344651,0.791465,0.231979,0.74211,0.0917127,0.673042,0.779544,0.943184,0.860261,0.504809,0.0452347,0.222424,0.00309402,0.734744,0.732319,0.369281,0.0810632,0.0829693,0.711852,0.575186,0.690581,0.653324,0.053745,0.838395,0.533552,0.938663,0.0890466,0.529548,0.00820392,0.29344,0.0481854,0.365618,0.0870236,0.801841,0.436778,0.95157,0.638841,0.53042,0.776677,0.548723,0.840107,0.588852,0.462244,0.479198,0.631736,0.920059,0.00940698,0.906761,0.328,0.811251,0.152663,0.587278,0.595771,0.541086,0.621331,0.14076,0.279699,0.847727,0.0402709,0.890032,0.684609,0.941064,0.421596,0.757382,0.397538,0.30958,0.219765,0.898678,0.705853,0.177699,0.857134,0.161323,0.826586,0.653874,0.989289,0.570813,0.817055,0.832869,0.239458,0.459434,0.433641,0.899919,0.5957,0.283377,0.74287,0.980555,0.285306,0.995936,0.191521,0.328325,0.952972,0.604758,0.650212,0.857523,0.620412,0.879074,0.325469,0.851336,0.180493,0.2965,0.771985,0.898108,0.775726,0.974606,0.505793,0.561004,0.23145,0.746961,0.830352,0.0898582,0.819384,0.390227,0.0740105,0.632288,0.657915,0.934892,0.865284,0.997229,0.613346,0.31909,0.0726612,0.644971,0.272447,0.180201,0.674228,0.760577,0.602742,0.458576,0.399496,0.441889,0.752087,0.499076,0.129061,0.0653504,0.953521,0.561861,0.556935,0.156968,0.825486,0.33372,0.242696,0.772435,0.862103,0.728065,0.745892,0.858844,0.752995,0.258618,0.920611,0.488517,0.851254,0.759013,0.787824,0.940577,0.190106,0.847347,0.336362,0.844882,0.605842,0.296503,0.448497,0.337777,0.497748,0.41131,0.94244,0.332253,0.443199,0.67723,0.439292,0.571707,0.93427,0.257641,0.581385,0.545177,0.530193,0.842192,0.106693,0.0248188,0.598018,0.568167,0.275706,0.476951,0.622854,0.375133,0.558781,0.306206,0.0997754,0.896421,0.259033,0.039042,0.221068,0.937358,0.770461,0.122475,0.999653,0.874982,0.23491,0.402207,0.367879,0.0411087,0.220825,0.867038,0.270901,0.284473,0.558488,0.177819,0.45837,0.408463,0.059374,0.857814,0.0208447,0.770592,0.126774,0.554339,0.672535,0.0241644,0.820476,0.117826,0.775618,0.793275,0.879394,0.241094,0.73483,0.62535,0.896829,0.168144,0.726493,0.938723,0.941356,0.525269,0.546753,0.631092,0.880014,0.0422299,0.927356,0.0951295,0.620682,0.13722,0.844158,0.251389,0.500415,0.848766,0.160266,0.565531,0.758111,0.409092,0.698472,0.996728,0.42186,0.144553,0.532554,0.563177,0.775018,0.243079,0.652315,0.219004,0.302098,0.720445,0.701035,0.000780165,0.108597,0.694528,0.675861,0.0142094,0.466691,0.140296,0.66227,0.25862,0.413,0.436693,0.687674,0.53486,0.636359,0.194236,0.489616,0.867142,0.587304,0.407682,0.375732,0.0628639,0.0794583,0.718583,0.333652,0.539143,0.435923,0.906516,0.198085,0.672546,0.11894,0.917958,0.845266,0.568421,0.284723,0.243571,0.764012,0.215941,0.906762,0.665152,0.816106,0.0467824,0.92182,0.304676,0.815651,0.239595,0.100911,0.824922,0.564106,0.49014,0.134429,0.948467,0.623254,0.74117,0.599886,0.866441,0.842387,0.154332,0.700315,0.35779,0.786906,0.805004,0.110141,0.0367216,0.699643,0.887024,0.0127516,0.849489,0.262286,0.249342,0.781555,0.465142,0.291599,0.559111,0.772161,0.418232,0.122363,0.297433,0.441963,0.433431,0.197089,0.547629,0.278235,0.102694,0.571419,0.189264,0.137821,0.477922,0.83124,0.596905,0.803821,0.384988,0.579887,0.186343,0.655322,0.878997,0.718208,0.924681,0.0815875,0.933179,0.307724,0.823335,0.439658,0.7597,0.383824,0.902603,0.466615,0.788981,0.426501,0.0849016,0.0495706,0.10654,0.863743,0.11786,0.602833,0.566806,0.27961,0.181209,0.5854,0.818587,0.283156,0.376801,0.105149,0.713262,0.179565,0.746013,0.298049,0.636018,0.574313,0.395004,0.307541,0.0213345,0.0293512,0.811892,0.282215,0.607163,0.303802,0.00391841,0.218157,0.911038,0.0796878,0.905731,0.0506685,0.90538,0.306718,0.485393,0.325495,0.610941,0.66829,0.940574,0.698991,0.808183,0.307409,0.671442,0.514933,0.194866,0.0523409,0.226574,0.406915,0.774683,0.0274214,0.381902,0.705459,0.909909,0.360314,0.387304,0.850472,0.816026,0.578831,0.686102,0.399385,0.377396,0.097886,0.595154,0.455455,0.820625,0.730581,0.49053,0.252587,0.339253,0.253775,0.66919,0.625007,0.237641,0.597067,0.204384,0.237114,0.857248,0.231083,0.151366,0.707484,0.467512,|0.119175,0.735497,0.916567,0.0549462,0.741001,0.652333,0.218143,0.152389,0.956376,0.786994,0.0562541,0.805312,0.171812,0.198816,0.558493,0.1547,0.240464,0.729668,0.278369,0.757248,0.611072,0.15724,0.137309,0.261577,0.890209,0.314176,0.142497,0.239679,0.989571,0.675287,0.714807,0.592098,0.956221,0.607774,0.494164,0.110766,0.0544976,0.746741,0.731981,0.624487,0.468316,0.248051,0.496989,0.0389797,0.775835,0.0745575,0.653117,0.359834,0.136984,0.30025,0.572061,0.976161,0.512448,0.214848,0.60268,0.393906,0.394026,0.131255,0.290113,0.257262,0.456528,0.833873,0.888338,0.0876401,0.680939,0.371663,0.994215,0.1801,0.962708,0.51509,0.266479,0.585843,0.618841,0.792258,0.762201,0.19489,0.123416,0.320854,0.287224,0.898326,0.937922,0.582645,0.269946,0.757233,0.194594,0.77136,0.945057,0.34407,0.818808,0.522379,0.107988,0.237252,0.159402,0.00393343,0.679792,0.38217,0.567409,0.523708,0.665075,0.767585,0.501806,0.569601,0.818313,0.0828498,0.61551,0.0915251,0.330689,0.0771657,0.269105,0.741367,0.665546,0.129894,0.477326,0.947349,0.797935,0.0104594,0.484149,0.947257,0.53277,0.265581,0.124278,0.860416,0.249514,0.0610172,0.0458965,0.678437,0.883364,0.815202,0.500136,0.8362,0.398021,0.60122,0.231457,0.938887,0.147981,0.441788,0.197202,0.633068,0.643245,0.426202,0.9572,0.378593,0.878051,0.59397,0.302429,0.722194,0.301601,0.217649,0.653458,0.837156,0.835038,0.852167,0.771275,0.0494005,0.525875,0.20183,0.668626,0.737269,0.408374,0.971098,0.514547,0.798159,0.866292,0.511654,0.117062,0.743923,0.863906,0.594716,0.395109,0.0545948,0.832283,0.159288,0.248023,0.423623,0.329876,0.635029,0.345206,0.960459,0.0576414,0.372002,0.285746,0.594615,0.470699,0.0535269,0.56389,0.288799,0.105603,0.60271,0.866285,0.227628,0.387242,0.593616,0.483954,0.418731,0.688595,0.154836,0.571002,0.703617,0.583608,0.592158,0.813418,0.722428,0.539313,0.72592,0.805895,0.381032,0.122759,0.768938,0.391926,0.176337,0.379681,0.310459,0.378883,0.393559,0.558911,0.507344,0.0530884,0.606574,0.430297,0.788822,0.808586,0.819633,0.398933,0.648816,0.327458,0.492572,0.092164,0.89655,0.752674,0.192678,0.393459,0.803852,0.587464,0.342851,0.557599,0.588873,0.106311,0.723892,0.179151,0.0804441,0.345903,0.614064,0.935154,0.716137,0.0348179,0.53632,0.507033,0.313643,0.820076,0.279492,0.338615,0.76767,0.128257,0.643916,0.206996,0.981769,0.974979,0.1849,0.658805,0.280193,0.351281,0.65898,0.0483731,0.0961086,0.446133,0.498223,0.922901,0.342399,0.96905,0.1301,0.224805,0.250776,0.649409,0.818349,0.253952,0.687388,0.602221,0.395792,0.574509,0.930121,0.20578,0.206083,0.02237,0.63306,0.405594,0.908527,0.38573,0.790687,0.00421268,0.722495,0.843807,0.256358,0.667995,0.130528,0.903081,0.973539,0.33436,0.159022,0.882578,0.91073,0.153404,0.517651,0.636211,0.8441,0.0478713,0.932474,0.407237,0.00103068,0.359839,0.0826938,0.788284,0.463939,0.0517449,0.646235,0.680302,0.285265,0.963992,0.552644,0.453901,0.851925,0.218041,0.613746,0.0270587,0.247048,0.969225,0.385647,0.187286,0.703909,0.762041,0.626773,0.766828,0.612437,0.223886,0.429565,0.246428,0.407076,0.512333,0.0429618,0.524814,0.722057,0.491683,0.00354379,0.585413,0.719346,0.526666,0.581314,0.538483,0.267761,0.985531,0.904248,0.313302,0.36709,0.700235,0.413824,0.95417,0.274648,0.837422,0.972559,0.519753,0.860844,0.722443,0.990638,0.822174,0.0903171,0.768499,0.039957,0.742613,0.0674144,0.163571,0.730067,0.861857,0.101611,0.520859,0.161043,0.815249,0.849725,0.962107,0.603438,0.852337,0.571868,0.653733,0.132109,0.339663,0.634241,0.0299916,0.513455,0.916081,0.254299,0.730067,0.147202,0.241989,0.593463,0.729766,0.747487,0.0681397,0.388532,0.4334,0.175,0.299047,0.203901,0.444713,0.645528,0.720147,0.390664,0.866968,0.494757,0.585524,0.87089,0.757349,0.962125,0.171037,0.492593,0.936495,0.224984,0.666134,0.610669,0.0869841,0.216023,0.611716,0.10261,0.344253,0.94142,0.776736,0.911337,0.552596,0.276978,0.432929,0.860564,0.782975,0.0952528,0.968054,0.607224,0.805863,0.487969,0.0889231,0.0304934,0.391541,0.625677,0.0443025,0.179037,0.979906,0.333976,0.127696,0.595351,0.272705,0.192245,0.269339,0.981868,0.15073,0.235077,0.810474,0.105834,0.024454,0.676637,0.747685,0.257719,0.62338,0.995149,0.911722,0.499817,0.67144,0.903532,0.36886,0.161345,0.00833708,0.41246,0.975276,0.917034,0.842082,0.017601,0.203187,0.0313955,0.604028,0.102378,0.62133,0.214819,0.319272,0.772271,0.141051,0.517404,0.941648,0.327161,0.469353,0.824001,0.185472,0.418161,0.744732,0.98631,0.363617,0.285693,0.494779,0.967582,0.0179651,0.342487,0.0369607,0.451923,0.914587,0.371605,0.339818,0.915876,0.991454,0.252609,0.909835,0.512283,0.817303,0.78453,0.684176,0.0590745,0.490837,0.91203,0.742308,0.550231,0.189397,0.702575,0.737371,0.47764,0.550391,0.172647,0.962647,0.18718,0.159502,0.0127338,0.0901903,0.605646,0.203361,0.60615,0.908515,0.374004,0.805727,0.180776,0.621944,0.420805,0.0355837,0.496092,0.968428,0.0449845,0.358908,0.669414,0.777788,0.000470161,0.369786,0.367854,0.77666,0.026804,0.0901229,0.637833,0.281144,0.372437,0.177333,0.133302,0.597011,0.3543,0.634421,0.291919,0.437981,0.0672143,0.367149,0.155257,0.274709,0.219201,0.0187631,0.611274,0.350745,0.255684,0.363791,0.855425,0.396606,0.0961739,0.794988,0.961037,0.838064,0.047858,0.0124575,0.558514,0.39058,0.76081,0.105747,0.451244,0.501987,0.946006,0.429182,0.138674,0.756486,0.710321,0.582283,0.516184,0.762473,0.984948,0.664146,0.0670636,0.817059,0.139405,0.117727,0.581647,0.350613,0.249844,0.0454333,0.56325,0.919837,0.569185,0.470815,0.45703,0.628057,0.363622,0.426808,0.0511017,0.257847,0.457342,0.579917,0.535999,0.797222,0.281986,0.433549,0.93771,0.214623,0.813174,0.324399,0.241779,0.169333,0.87479,0.695883,0.432443,0.713173,0.659492,0.935035,0.0403793,0.749039,0.391726,0.0830498,0.0710453,0.139806,0.514974,0.370385,0.0650948,0.863023,0.638477,0.510305,0.703718,0.64064,0.722013,0.646427,0.322264,0.816933,0.199437,0.868293,0.798233,0.641931,0.470378,0.386461,0.060173,0.97371,0.991339,0.503522,0.939708,0.837346,0.499679,0.287975,0.171542,0.855895,0.898263,0.0912452,0.568009,0.841309,0.548385,0.36287,0.129374,0.749439,0.182758,0.281241,0.567052,0.306175,0.436926,0.808268,0.0811737,0.171465,0.602393,0.424879,0.649924,0.895128,0.897102,0.729567,0.594059,0.252607,0.328163,0.14265,0.17744,0.129926,0.0537536,0.911929,0.718926,0.412987,0.984945,0.241384,0.894275,0.0139596,0.533296,0.871262,0.232766,0.573651,0.994262,0.335617,0.552845,0.0257145,0.990198,0.642324,0.640014,0.0569695,0.204234,0.746809,0.442945,0.560512,0.664999,0.616261,0.0883505,0.217654,0.803161,0.630579,0.568829,0.903465,0.781903,0.0545708,0.569238,0.0910483,0.527968,0.799063,0.431823,0.245095,0.970168,0.703213,0.302327,0.908425,0.668614,0.847675,0.212509,0.282606,0.973946,0.316881,0.486258,0.450129,0.778047,0.0678977,0.61167,0.412559,0.0336941,0.972514,0.404593,0.935432,0.839782,0.628104,0.13674,0.757327,0.173365,0.300413,0.745298,0.204489,0.544389,0.0223756,0.0536236,0.924574,0.20527,0.752687,0.667786,0.431785,0.432101,0.627721,0.84338,0.824412,0.585934,0.807854,0.931719,0.459137,0.372486,0.685102,0.189273,0.99655,0.750244,0.428255,0.132637,0.238424,0.93817,0.712593,0.270564,0.40764,0.75462,0.322069,0.377033,0.260778,0.427696,0.33803,0.677692,0.258194,0.113984,0.00492066,0.838758,0.156557,0.0610638,0.609919,0.187857,0.078819,0.879601,0.199703,0.959708,0.432323,0.925902,0.378782,0.369351,0.627755,0.125236,0.387492,0.254332,0.964677,0.190268,0.533588,0.44332,0.822514,0.910498,0.364789,0.170198,0.0840338,0.631031,0.34533,0.0351955,0.673792,0.20069,0.0453466,0.136053,0.305555,0.214513,0.657408,0.830026,0.103195,0.335635,0.580544,0.679201,0.037511,0.22144,0.793305,0.946766,0.774104,0.923491,0.00249106,0.0638466,0.735214,0.483439,0.998787,0.000201344,0.866828,0.675398,0.917219,0.277551,0.831619,0.918139,0.788465,0.876655,0.278676,0.379581,0.644204,0.718519,0.818296,0.198237,0.609069,0.0369477,0.294556,0.778367,0.880896,0.299478,0.378747,0.963238,0.633495,0.00866884,0.273466,0.910024,0.514739,0.116305,0.277662,0.257922,0.775797,0.503236,0.957935,0.58477,0.569295,0.895554,0.375297,0.468795,0.769808,0.523171,0.18793,0.508226,0.129691,0.348665,0.293096,0.538927,0.6769,0.0933231,0.281929,0.776993,0.882842,0.927132,0.368345,0.404806,0.972701,0.872486,0.739573,0.904563,0.903607,0.995874,0.936436,0.320693,0.498561,0.793321,0.336346,0.106896,0.713421,0.507477,0.949351,0.0515605,0.771057,0.289696,0.333577,0.627791,0.358924,0.663652,0.884787,0.276314,0.152538,0.281224,0.967898,0.135139,0.662556,0.313168,0.705938,0.604844,0.321857,0.0717227,0.573413,0.178335,0.518461,0.816701,0.802322,0.726437,0.396299,0.133024,0.0760399,0.28814,0.1397,0.853905,0.725281,0.989763,0.122526,0.346978,0.571644,0.289308,0.974689,0.222222,0.573253,0.523853,0.714293,0.026909,0.371917,0.283344,0.0576735,0.556911,0.208404,0.879257,0.130099,0.680512,0.468184,0.145328,0.453462,0.0702985,0.278481,0.220431,0.222237,0.550517,0.58612,0.385788,0.156058,0.0109462,0.888775,0.073158,0.596589,0.274369,0.94351,0.568787,0.633785,0.108409,0.48453,0.830625,0.169371,0.701416,0.442247,0.0495186,0.0773613,0.622603,0.000216961,0.846598,0.103398,0.966225,0.427728,0.799089,|0.717259,0.74708,0.334763,0.877965,0.42437,0.60862,0.506279,0.818328,0.895219,0.90614,0.620223,0.642221,0.837328,0.132565,0.0676687,0.696606,0.0505683,0.265424,0.956307,0.641701,0.494792,0.109331,0.884013,0.387495,0.631075,0.121095,0.570771,0.483308,0.79712,0.274144,0.377145,0.916286,0.0959345,0.775744,0.0837532,0.242733,0.669892,0.506039,0.122095,0.135136,0.423805,0.916625,0.97621,0.23706,0.439887,0.70453,0.168093,0.434872,0.786507,0.14203,0.122769,0.846305,0.118237,0.808274,0.381918,0.719662,0.946187,0.187577,0.955848,0.00727451,0.572751,0.35233,0.673799,0.328489,0.849955,0.144209,0.0184987,0.367198,0.0851182,0.365675,0.30286,0.803186,0.987607,0.0866048,0.895198,0.226197,0.949841,0.0836537,0.295301,0.275559,0.568615,0.0668032,0.609525,0.124562,0.924149,0.573543,0.0706517,0.294286,0.609035,0.0929262,0.673289,0.39006,0.528872,0.236006,0.0912249,0.344081,0.892956,0.680471,0.470583,0.319413,0.403529,0.646092,0.93606,0.150073,0.942442,0.254164,0.2635,0.594184,0.682326,0.225142,0.345634,0.563869,0.960242,0.646503,0.481093,0.841803,0.361108,0.351422,0.437403,0.337165,0.280674,0.726879,0.74501,0.815733,0.511141,0.39823,0.931376,0.965948,0.974869,0.102909,0.0591738,0.209241,0.488852,0.586418,0.503645,0.654603,0.870611,0.113599,0.881662,0.941069,0.649304,0.559554,0.704446,0.430718,0.788242,0.626382,0.957705,0.335971,0.623203,0.0232993,0.0642028,0.104816,0.675578,0.580227,0.926252,0.659634,0.949747,0.186643,0.145957,0.138423,0.851286,0.490066,0.468432,0.756604,0.632392,0.0024839,0.761425,0.0434077,0.845764,0.0953735,0.867748,0.570363,0.790827,0.202606,0.795229,0.924357,0.169731,0.283601,0.287146,0.261429,0.743326,0.856977,0.573189,0.979291,0.149933,0.971115,0.106174,0.682292,0.340636,0.221818,0.237933,0.98586,0.221855,0.0069567,0.342226,0.262936,0.142303,0.853235,0.123587,0.0568823,0.136321,0.722246,0.263396,0.81854,0.609104,0.442938,0.616667,0.0935955,0.570828,0.189448,0.309887,0.368771,0.538786,0.177518,0.617098,0.044996,0.767437,0.0410764,0.420388,0.819488,0.562295,0.0554442,0.669427,0.373279,0.725905,0.633893,0.76313,0.323387,0.268763,0.0465816,0.0667036,0.771654,0.0835425,0.679925,0.56075,0.0449511,0.350391,0.735788,0.250057,0.681454,0.602996,0.41434,0.625357,0.173851,0.206311,0.867331,0.00395215,0.73405,0.345821,0.0882491,0.870093,0.351353,0.044538,0.287955,0.322735,0.230186,0.301179,0.367725,0.932783,0.93355,0.420936,0.102609,0.187381,0.486313,0.470682,0.676365,0.439396,0.402715,0.555511,0.281578,0.506969,0.599607,0.707563,0.878097,0.357196,0.785882,0.349881,0.140622,0.87832,0.196718,0.141785,0.0688495,0.674445,0.412701,0.351702,0.22158,0.0629265,0.346691,0.889118,0.648794,0.292359,0.271501,0.127854,0.316678,0.698849,0.689161,0.590067,0.583511,0.81424,0.566546,0.32258,0.102542,0.114235,0.518115,0.356031,0.0403538,0.752749,0.00987798,0.379365,0.77352,0.500127,0.220349,0.0153442,0.283903,0.336962,0.449293,0.734808,0.668406,0.856299,0.964728,0.882487,0.911745,0.0415477,0.524843,0.277582,0.10977,0.315901,0.515473,0.79269,0.693019,0.666537,0.539676,0.9802,0.00117308,0.537242,0.744315,0.215962,0.879994,0.917655,0.327538,0.651169,0.129749,0.526961,0.655609,0.468506,0.593805,0.448691,0.614559,0.958398,0.974119,0.785251,0.876693,0.352097,0.509256,0.113646,0.265744,0.609387,0.777772,0.0477537,0.280092,0.90963,0.694949,0.770613,0.557329,0.620881,0.165459,0.615306,0.493697,0.549665,0.638557,0.411862,0.792936,0.225218,0.596948,0.888213,0.634266,0.574314,0.119956,0.970137,0.582816,0.517222,0.882673,0.275911,0.118091,0.582941,0.491584,0.285512,0.413715,0.289012,0.160597,0.89174,0.491748,0.883004,0.486678,0.379589,0.960979,0.14373,0.711743,0.444122,0.100457,0.020386,0.012822,0.794012,0.46773,0.182191,0.619209,0.728018,0.11128,0.855788,0.930481,0.214859,0.43434,0.313057,0.190272,0.485756,0.358048,0.815125,0.560478,0.0602911,0.798838,0.542957,0.880517,0.443944,0.44383,0.181415,0.933548,0.703803,0.909422,0.260842,0.591332,0.901563,0.500296,0.469531,0.461049,0.909314,0.055059,0.602214,0.971403,0.212746,0.0399814,0.809166,0.532203,0.124501,0.183623,0.392448,0.799609,0.200213,0.383168,0.735348,0.859407,0.604741,0.640629,0.482985,0.137234,0.103303,0.453443,0.413815,0.440019,0.980405,0.751744,0.925758,0.876873,0.799783,0.462989,0.239844,0.283928,0.3765,0.728068,0.0340043,0.466421,0.77707,0.143638,0.382584,0.226338,0.888595,0.329165,0.629307,0.372877,0.358079,0.447081,0.293848,0.268872,0.00483054,0.629442,0.33167,0.335023,0.398209,0.977994,0.140509,0.685856,0.9438,0.658128,0.545728,0.16207,0.341884,0.801004,0.328524,0.919489,0.3623,0.891878,0.583908,0.0145679,0.167956,0.0749056,0.647818,0.565412,0.765834,0.526376,0.357258,0.903044,0.572406,0.0385573,0.448435,0.241682,0.536236,0.239473,0.250032,0.0312195,0.602282,0.30432,0.34627,0.767423,0.673715,0.194938,0.602376,0.462311,0.783765,0.83583,0.107436,0.277517,0.224706,0.0807711,0.84205,0.0355363,0.846956,0.387999,0.0519491,0.969749,0.188365,0.684436,0.382174,0.574238,0.261228,0.550619,0.0186872,0.5671,0.900581,0.0177465,0.921712,0.16219,0.366781,0.584536,0.0903544,0.812312,0.668506,0.706698,0.754311,0.760534,0.508792,0.94612,0.0392342,0.52738,0.117232,0.589567,0.927817,0.948057,0.341842,0.310624,0.542334,0.320219,0.335408,0.660025,0.0956615,0.437252,0.364051,0.966399,0.240856,0.577724,0.305067,0.0275703,0.642313,0.653035,0.350675,0.976916,0.496575,0.791598,0.277867,0.897737,0.00772297,0.285177,0.732031,0.741242,0.7469,0.382296,0.857573,0.683879,0.52283,0.602216,0.239064,0.0821738,0.73495,0.794589,0.486397,0.343558,0.982406,0.639037,0.678955,0.20527,0.532087,0.0838076,0.0542033,0.414322,0.418916,0.517639,0.974304,0.48727,0.825527,0.461913,0.259841,0.0961179,0.25698,0.795389,0.0173324,0.136793,0.147401,0.738298,0.335333,0.452885,0.874293,0.996671,0.687324,0.927643,0.317913,0.498501,0.769208,0.966941,0.417467,0.567645,0.959356,0.915846,0.179117,0.903636,0.885505,0.602201,0.0158518,0.536069,0.94621,0.964628,0.383158,0.203976,0.805414,0.235598,0.0531502,0.153912,0.457656,0.464198,0.339915,0.776376,0.271665,0.302721,0.97792,0.267911,0.439373,0.411963,0.338992,0.76807,0.124319,0.0605444,0.831707,0.866712,0.760604,0.813708,0.326826,0.0297218,0.703093,0.930296,0.153248,0.193716,0.612074,0.104502,0.936794,0.291947,0.859627,0.00293308,0.757064,0.303668,0.0759395,0.625359,0.250529,0.261155,0.374786,0.120897,0.311371,0.346945,0.471046,0.23279,0.00123286,0.136134,0.477823,0.321572,0.736963,0.420665,0.508464,0.586227,0.0914023,0.748856,0.860067,0.240898,0.131115,0.950999,0.137037,0.240797,0.896385,0.102563,0.933671,0.0606484,0.599006,0.793156,0.704363,0.265659,0.614178,0.710244,0.433556,0.51788,0.718149,0.400384,0.948321,0.182773,0.753243,0.999064,0.372172,0.769954,0.695174,0.789131,0.0121495,0.439972,0.0543519,0.370037,0.626524,0.764162,0.265194,0.859735,0.257589,0.846962,0.839357,0.857021,0.652779,0.858626,0.989469,0.497697,0.572361,0.126087,0.857166,0.302761,0.78561,0.609779,0.773464,0.00696492,0.483272,0.446347,0.647822,0.0411804,0.65013,0.750527,0.561116,0.426925,0.00950968,0.246755,0.296058,0.327722,0.825752,0.875075,0.781392,0.886549,0.501671,0.973531,0.0981981,0.418615,0.417511,0.197518,0.705105,0.188331,0.218319,0.371271,0.395925,0.458546,0.840072,0.372279,0.610145,0.714973,0.986681,0.57274,0.783984,0.884844,0.390729,0.0191277,0.0111631,0.5571,0.0172048,0.0670441,0.122727,0.379155,0.611638,0.907617,0.941889,0.327671,0.80768,0.114677,0.956502,0.382318,0.333158,0.700173,0.539631,0.826552,0.737986,0.518652,0.593532,0.965425,0.442892,0.330932,0.114854,0.219852,0.510743,0.445832,0.948346,0.575139,0.874534,0.238369,0.259656,0.748677,0.954618,0.986548,0.0256857,0.21696,0.772467,0.765763,0.847831,0.904938,0.273818,0.871768,0.621904,0.994668,0.531272,0.915665,0.396383,0.862709,0.883402,0.0876432,0.104531,0.414869,0.42967,0.845678,0.246405,0.183062,0.359783,0.963428,0.972831,0.724301,0.135035,0.593123,0.492525,0.946594,0.534491,0.548039,0.978553,0.714473,0.725343,0.399223,0.80605,0.398007,0.00485665,0.658433,0.48746,0.255113,0.264633,0.207994,0.458275,0.929317,0.988575,0.163533,0.761143,0.615053,0.465685,0.495063,0.0360437,0.260607,0.664252,0.543765,0.215126,0.170304,0.0268463,0.079897,0.00383806,0.194222,0.0206437,0.532405,0.0559356,0.494646,0.75555,0.637228,0.223877,0.562543,0.260069,0.3053,0.684628,0.573068,0.5234,0.0381551,0.896824,0.967178,0.651904,0.939507,0.883189,0.714254,0.942662,0.429776,0.682771,0.827122,0.381542,0.594799,0.380957,0.879847,0.345755,0.630409,0.347727,0.565224,0.745654,0.837348,0.27915,0.387546,0.406985,0.781886,0.740219,0.862085,0.963566,0.628283,0.636295,0.0543739,0.869526,0.104162,0.47264,0.140413,0.719198,0.164466,0.682446,0.36769,0.94541,0.63705,0.0135152,0.969739,0.505477,0.510001,0.781092,0.179699,0.109197,0.433539,0.586084,0.212654,0.832004,0.616287,0.587262,0.0343859,0.435543,0.738181,0.271845,0.862718,0.151135,0.931727,0.331854,0.458986,0.893245,0.574835,0.910629,0.213947,0.176222,0.0150782,0.217536,0.718316,0.763023,0.851506,0.0207052,0.886469,0.508213,0.162393,0.297934,0.387853,0.26027,0.990478,0.471318,0.814435,0.83315,0.889611,0.158001,0.51738,0.817665,0.133856,0.051458,0.900707,0.709269,0.567388,|0.995688,0.825587,0.319641,0.0928509,0.363209,0.910092,0.280117,0.834806,0.345724,0.709809,0.531255,0.0449526,0.96778,0.247283,0.248033,0.731781,0.15326,0.102544,0.074051,0.128319,0.0893742,0.882055,0.0866342,0.752957,0.562216,0.447489,0.805652,0.208688,0.610519,0.797431,0.856225,0.625422,0.0935195,0.181148,0.651202,0.151452,0.274354,0.653863,0.0872682,0.546819,0.912585,0.0602877,0.0974765,0.812687,0.603415,0.199375,0.319784,0.512114,0.564475,0.706299,0.618011,0.296759,0.875606,0.989037,0.400226,0.256079,0.145219,0.995252,0.593233,0.87665,0.586533,0.936983,0.383285,0.907174,0.387425,0.500852,0.508037,0.828649,0.47954,0.630989,0.369593,0.778241,0.355186,0.51313,0.217898,0.586441,0.812147,0.782693,0.0398215,0.116358,0.671266,0.242435,0.23154,0.383802,0.6715,0.708704,0.612686,0.00912654,0.353229,0.609356,0.868896,0.861543,0.536077,0.503775,0.438669,0.520887,0.129582,0.603051,0.833969,0.331682,0.0692871,0.0254297,0.603475,0.974431,0.405626,0.420165,0.0356122,0.222577,0.600059,0.0738955,0.113066,0.374088,0.79659,0.233938,0.615336,0.112099,0.614133,0.964194,0.987117,0.517882,0.556868,0.469433,0.108894,0.642208,0.915882,0.00278151,0.262237,0.266931,0.59578,0.830675,0.352886,0.81978,0.86995,0.213415,0.960765,0.176389,0.0286283,0.022864,0.733656,0.953562,0.724819,0.627486,0.271479,0.2133,0.0990683,0.155152,0.245671,0.924631,0.376771,0.416815,0.455938,0.732099,0.0808672,0.486968,0.567452,0.0863051,0.0462455,0.149012,0.776193,0.996137,0.112115,0.0984587,0.643472,0.996819,0.666086,0.367628,0.00578886,0.371475,0.305474,0.0477515,0.619648,0.538036,0.338587,0.264542,0.601246,0.052058,0.0451968,0.771176,0.88013,0.901134,0.456515,0.166507,0.0355918,0.173944,0.77995,0.849883,0.196471,0.933619,0.97502,0.0119759,0.775509,0.335108,0.662403,0.484214,0.179882,0.327747,0.955459,0.861339,0.0856655,0.58168,0.101127,0.638053,0.178397,0.943966,0.956681,0.0455453,0.505182,0.796568,0.26025,0.414106,0.442598,0.719629,0.0438902,0.946828,0.20463,0.302007,0.602007,0.251855,0.89936,0.0284069,0.128407,0.875691,0.801886,0.20582,0.803155,0.58359,0.615816,0.971344,0.120716,0.213655,0.215846,0.165942,0.00267595,0.738169,0.111045,0.952889,0.510335,0.925664,0.585738,0.0926631,0.614756,0.969728,0.13674,0.710373,0.336469,0.619972,0.0918044,0.863133,0.86591,0.0470929,0.548161,0.73738,0.0627381,0.588541,0.766429,0.271475,0.493012,0.244379,0.0563194,0.956053,0.563813,0.496045,0.474327,0.963846,0.15387,0.152501,0.765683,0.890409,0.351044,0.361983,0.835146,0.363935,0.580477,0.107386,0.82995,0.636293,0.910057,0.797564,0.175644,0.0202435,0.445487,0.535784,0.496461,0.308133,0.926412,0.840513,0.099142,0.246624,0.550063,0.894665,0.935396,0.301001,0.106892,0.432736,0.115486,0.204431,0.572267,0.203706,0.189981,0.645178,0.360041,0.689686,0.372569,0.602454,0.614426,0.453658,0.484108,0.888508,0.570278,0.077431,0.516993,0.712092,0.357347,0.299676,0.212294,0.931941,0.743013,0.126046,0.481136,0.887028,0.257178,0.0507929,0.0729366,0.398739,0.860075,0.374184,0.418114,0.302335,0.310985,0.630377,0.794908,0.926861,0.792581,0.890894,0.721638,0.154347,0.283301,0.0577374,0.190233,0.376439,0.182129,0.599817,0.880647,0.182144,0.601255,0.628358,0.109728,0.740668,0.321338,0.439333,0.0209442,0.184592,0.720462,0.0535851,0.918565,0.649993,0.0896943,0.116094,0.458908,0.0609162,0.336406,0.66667,0.738551,0.84537,0.153193,0.796117,0.466889,0.206441,0.88616,0.38242,0.274484,0.888006,0.452707,0.0701799,0.0544811,0.859548,0.750973,0.697404,0.0654452,0.44709,0.667399,0.788453,0.93409,0.13302,0.94337,0.739057,0.181916,0.919887,0.607753,0.642491,0.105667,0.0514929,0.211517,0.196619,0.890883,0.479783,0.237994,0.049394,0.225154,0.70544,0.458561,0.0100608,0.939696,0.136914,0.223688,0.0628988,0.0986584,0.107199,0.523108,0.111567,0.736025,0.351478,0.0342622,0.282592,0.708963,0.289751,0.421854,0.376497,0.022205,0.211671,0.0120428,0.474489,0.0161052,0.736596,0.955729,0.876721,0.304516,0.0315174,0.726485,0.888687,0.920199,0.619139,0.878445,0.375319,0.557682,0.284419,0.790932,0.307935,0.841767,0.627708,0.574066,0.446173,0.81496,0.229024,0.531257,0.378389,0.0314983,0.600742,0.484974,0.748494,0.737516,0.183271,0.168763,0.793218,0.757982,0.174173,0.753607,0.757421,0.410024,0.660875,0.753323,0.676375,0.66395,0.148216,0.478179,0.848089,0.209874,0.459536,0.268028,0.948938,0.73887,0.172341,0.731174,0.831251,0.156734,0.806491,0.226168,0.205643,0.329758,0.325275,0.48519,0.366936,0.350414,0.155254,0.298649,0.111771,0.0516024,0.939397,0.234356,0.868831,0.441513,0.358977,0.730451,0.538345,0.887978,0.679862,0.139575,0.0902619,0.147185,0.636563,0.757167,0.47303,0.939738,0.921614,0.369148,0.00711638,0.076595,0.935242,0.179312,0.91408,0.0836041,0.926238,0.49564,0.789964,0.293862,0.200047,0.327126,0.437735,0.335263,0.371327,0.863048,0.250653,0.560119,0.583844,0.649847,0.426526,0.336294,0.822339,0.495317,0.442206,0.679354,0.442811,0.413237,0.681509,0.0476751,0.693639,0.906507,0.559516,0.833691,0.428152,0.989368,0.276864,0.499574,0.215218,0.480111,0.00862449,0.287502,0.0505764,0.454609,0.865648,0.656074,0.271716,0.472637,0.34332,0.699038,0.700447,0.220065,0.497017,0.191088,0.195085,0.502062,0.307665,0.750978,0.23601,0.512798,0.270201,0.774255,0.702413,0.707812,0.672011,0.690624,0.0125405,0.382309,0.867633,0.0327951,0.762815,0.617874,0.66565,0.0213537,0.449378,0.204357,0.0828177,0.777261,0.610357,0.663931,0.0250869,0.0106114,0.123348,0.705917,0.0223301,0.729562,0.831293,0.717346,0.828608,0.841227,0.919157,0.636198,0.679178,0.00490379,0.223313,0.978996,0.906739,0.344981,0.874362,0.833734,0.551707,0.771157,0.701221,0.632755,0.952281,0.300255,0.627128,0.0671822,0.152535,0.144577,0.668573,0.52185,0.430543,0.904786,0.0873706,0.311571,0.351066,0.778457,0.807747,0.296252,0.990101,0.214024,0.373769,0.891239,0.182453,0.873871,0.103972,0.550045,0.682041,0.675647,0.478953,0.229647,0.531234,0.0401432,0.785416,0.149622,0.224917,0.97929,0.965602,0.358088,0.90196,0.380623,0.0517068,0.986047,0.651314,0.520379,0.977999,0.73136,0.525023,0.915688,0.983268,0.552219,0.0929881,0.743389,0.215859,0.489815,0.788257,0.727708,0.666426,0.302035,0.212569,0.379536,0.745765,0.552511,0.213825,0.593542,0.106418,0.35187,0.640122,0.968262,0.93021,0.530124,0.151345,0.664737,0.183769,0.302522,0.733902,0.728587,0.00159973,0.684994,0.0231188,0.700579,0.775434,0.543346,0.857496,0.572316,0.459008,0.214032,0.217403,0.3072,0.16396,0.381935,0.698869,0.161694,0.912807,0.144362,0.544016,0.187771,0.561516,0.514255,0.576456,0.9983,0.0255864,0.620057,0.59754,0.00678504,0.499785,0.258653,0.336556,0.304191,0.461045,0.544061,0.136615,0.423864,0.0291868,0.826426,0.666085,0.569259,0.295398,0.213562,0.16457,0.480325,0.575403,0.649355,0.678151,0.189749,0.666314,0.900979,0.553948,0.39547,0.880275,0.880501,0.233281,0.497083,0.202424,0.399352,0.857866,0.721499,0.454646,0.143693,0.896024,0.586286,0.97973,0.668009,0.962553,0.673414,0.721861,0.952967,0.209254,0.936746,0.0142736,0.60528,0.31173,0.484327,0.138667,0.73419,0.888404,0.607024,0.564097,0.737474,0.855827,0.845292,0.382898,0.154621,0.828031,0.591101,0.442402,0.27287,0.227047,0.518445,0.38567,0.792203,0.35644,0.0815478,0.950052,0.547078,0.236446,0.436206,0.759766,0.651872,0.429309,0.472735,0.824111,0.650104,0.0666148,0.542758,0.675847,0.735692,0.0931376,0.989918,0.329087,0.077863,0.848776,0.591458,0.382629,0.494394,0.605462,0.411178,0.0811293,0.28808,0.450826,0.544274,0.179475,0.185941,0.678663,0.0649868,0.134238,0.890173,0.51621,0.346282,0.740192,0.424737,0.00823504,0.436423,0.231041,0.834031,0.716613,0.968373,0.520053,0.576011,0.478826,0.467233,0.523943,0.0714323,0.261828,0.860254,0.0652001,0.597917,0.880174,0.0543947,0.451538,0.0672956,0.911878,0.263195,0.864476,0.0308012,0.401926,0.346863,0.588254,0.773306,0.879598,0.0950305,0.487052,0.0549452,0.00224477,0.483149,0.707169,0.334357,0.29492,0.947758,0.389865,0.465489,0.514364,0.454805,0.716713,0.799759,0.0894577,0.459795,0.579643,0.817506,0.939603,0.77749,0.172903,0.0554242,0.97332,0.312525,0.012908,0.896244,0.596019,0.667986,0.488125,0.423599,0.702775,0.0240963,0.049498,0.61709,0.783253,0.434168,0.233941,0.622296,0.633347,0.318327,0.00220215,0.292172,0.693046,0.456444,0.249008,0.349393,0.627416,0.0789435,0.407009,0.322472,0.287903,0.234161,0.345552,0.198698,0.774981,0.252578,0.826073,0.131075,0.987471,0.0887315,0.98502,0.953948,0.181527,0.846406,0.237143,0.611998,0.788257,0.25868,0.296517,0.896531,0.622674,0.162511,0.473451,0.0135846,0.970889,0.271448,0.238239,0.399022,0.929931,0.957766,0.740889,0.2116,0.56349,0.480238,0.843971,0.972348,0.00586897,0.600337,0.122773,0.899462,0.639782,0.74434,0.135876,0.856045,0.773119,0.674295,0.434994,0.963695,0.484907,0.868141,0.498207,0.0753343,0.357606,0.669327,0.712632,0.386572,0.464607,0.790812,0.888355,0.946539,0.439098,0.399348,0.799266,0.586453,0.839128,0.815273,0.273777,0.698937,0.804979,0.896286,0.691784,0.0929666,0.5854,0.766715,0.233686,0.0220346,0.525896,0.223959,0.728902,0.379631,0.0394228,0.0813846,0.328837,0.804352,0.640988,0.48898,0.294464,0.104342,0.313957,0.952781,0.376886,0.932133,0.21094,0.755271,0.69729,0.942623,0.553194,0.187199,0.724366,0.949778,0.629331,0.768069,0.951389,|0.310822,0.212064,0.762759,0.965672,0.866383,0.238496,0.593378,0.57997,0.286866,0.147718,0.705821,0.38616,0.749339,0.690899,0.16111,0.940538,0.329547,0.419279,0.284055,0.836066,0.730321,0.794755,0.305721,0.543253,0.614954,0.324496,0.0390776,0.0595263,0.800148,0.772553,0.246377,0.314317,0.0217274,0.088974,0.995876,0.186924,0.0686579,0.766131,0.776131,0.593688,0.0240312,0.457125,0.797894,0.751714,0.135941,0.11282,0.173083,0.485707,0.449317,0.610064,0.703068,0.960706,0.342951,0.221865,0.718887,0.739628,0.819206,0.778711,0.0149244,0.72856,0.850708,0.80344,0.0738374,0.972921,0.0469118,0.219104,0.76433,0.00410175,0.644506,0.827933,0.312221,0.261307,0.329045,0.897195,0.22915,0.785083,0.95307,0.991113,0.308256,0.274491,0.856171,0.634534,0.994939,0.926209,0.938438,0.619806,0.251483,0.896504,0.926621,0.528135,0.708766,0.528818,0.152929,0.563661,0.894188,0.813432,0.581157,0.528156,0.404139,0.520425,0.644562,0.509421,0.0547853,0.693475,0.557391,0.683706,0.992225,0.826091,0.519589,0.238161,0.74877,0.369573,0.486251,0.232124,0.193018,0.0120938,0.0848579,0.132486,0.506585,0.814063,0.803525,0.201317,0.653033,0.110374,0.345358,0.479739,0.534376,0.990104,0.580347,0.541414,0.29064,0.419281,0.407184,0.0296344,0.55612,0.937213,0.603298,0.953454,0.170891,0.212007,0.678471,0.0190263,0.687798,0.999406,0.0708248,0.924568,0.139253,0.72037,0.450009,0.675942,0.89291,0.872234,0.126902,0.448557,0.35643,0.98175,0.197841,0.20078,0.595779,0.276426,0.181641,0.330225,0.780647,0.709402,0.189605,0.993989,0.346271,0.604975,0.979907,0.183801,0.460282,0.264644,0.335054,0.945437,0.776807,0.0882803,0.1604,0.171871,0.0822594,0.536362,0.0301201,0.53723,0.431717,0.536357,0.693392,0.265427,0.335462,0.345444,0.143314,0.899699,0.821843,0.525136,0.986969,0.461,0.920523,0.046322,0.633434,0.195227,0.598153,0.323299,0.231281,0.136824,0.0791408,0.0511817,0.266477,0.873854,0.0762168,0.049723,0.77877,0.950196,0.595404,0.243655,0.539796,0.883,0.49413,0.217467,0.579488,0.22016,0.0509596,0.250933,0.567099,0.113119,0.900834,0.465751,0.061649,0.370516,0.40275,0.638877,0.126108,0.545999,0.532423,0.620463,0.56856,0.351469,0.9518,0.171611,0.9184,0.923819,0.334413,0.986816,0.819754,0.197437,0.391137,0.969001,0.446624,0.206798,0.988927,0.0404701,0.867645,0.620295,0.940144,0.33978,0.486736,0.813502,0.590164,0.10146,0.0842183,0.601831,0.180009,0.243822,0.67943,0.711244,0.169678,0.19249,0.351838,0.579949,0.391515,0.361016,0.134814,0.05062,0.616709,0.827666,0.755843,0.417489,0.716993,0.134908,0.114441,0.506809,0.682051,0.748719,0.904589,0.375646,0.836708,0.600826,0.388485,0.828701,0.425496,0.274888,0.826896,0.906599,0.445403,0.111306,0.739911,0.0346367,0.8893,0.811527,0.440749,0.638461,0.211568,0.153644,0.80985,0.537391,0.779584,0.242877,0.744218,0.535146,0.287871,0.740003,0.697345,0.176756,0.993326,0.95462,0.975667,0.624343,0.405735,0.103312,0.200828,0.839355,0.870738,0.413668,0.26826,0.895713,0.856429,0.623164,0.961116,0.0111008,0.928595,0.332285,0.872351,0.233101,0.471001,0.0233596,0.191311,0.284274,0.870439,0.325426,0.116626,0.405513,0.737999,0.162512,0.1177,0.640141,0.28256,0.81917,0.352948,0.289086,0.807863,0.685891,0.975754,0.425233,0.864262,0.358588,0.358932,0.740106,0.373926,0.447308,0.760221,0.448585,0.842614,0.537082,0.839771,0.301387,0.786081,0.261617,0.413374,0.617718,0.33501,0.920458,0.754922,0.851262,0.161881,0.726245,0.414577,0.114435,0.112581,0.238136,0.343775,0.767782,0.67616,0.795685,0.504417,0.412579,0.37341,0.425661,0.0775425,0.0905879,0.370991,0.336508,0.364689,0.471543,0.640657,0.799168,0.0725034,0.327345,0.675879,0.306009,0.646014,0.703546,0.0905427,0.915214,0.621858,0.739829,0.30221,0.67249,0.628677,0.669151,0.377474,0.549471,0.791755,0.161542,0.438973,0.42345,0.341967,0.375392,0.448666,0.681699,0.983331,0.970578,0.953855,0.868958,0.674334,0.172744,0.344732,0.007577,0.449452,0.120518,0.50767,0.256002,0.86826,0.0764688,0.506794,0.538549,0.214636,0.830721,0.871061,0.45573,0.977107,0.297406,0.365708,0.221141,0.0624092,0.645367,0.202408,0.054549,0.196044,0.363285,0.219575,0.477438,0.0573998,0.537111,0.471973,0.856822,0.270162,0.346259,0.94164,0.405821,0.369882,0.89287,0.421483,0.598895,0.382238,0.015432,0.869881,0.766182,0.928828,0.230647,0.0778376,0.9921,0.722718,0.875481,0.427301,0.551269,0.656409,0.321176,0.864808,0.917328,0.162879,0.687228,0.0663198,0.728803,0.311663,0.288396,0.507255,0.273119,0.0607532,0.931066,0.97819,0.722133,0.260646,0.874826,0.598217,0.59015,0.0274319,0.322387,0.596691,0.700703,0.55482,0.687327,0.221174,0.0211172,0.325484,0.685799,0.797148,0.145024,0.414825,0.405629,0.532067,0.106957,0.156891,0.77885,0.324033,0.415458,0.730237,0.887007,0.863877,0.879157,0.808653,0.871353,0.841206,0.268967,0.0632227,0.369163,0.695939,0.518593,0.865948,0.436381,0.614919,0.30543,0.912129,0.885016,0.745034,0.77797,0.347077,0.534815,0.336844,0.439489,0.404221,0.293286,0.623966,0.659872,0.0868937,0.199879,0.230423,0.6322,0.322323,0.925668,0.251219,0.424501,0.643906,0.0405098,0.662611,0.424895,0.967191,0.976531,0.427713,0.761414,0.247405,0.582579,0.641807,0.169239,0.919095,0.32661,0.460165,0.278086,0.340085,0.212871,0.312839,0.456934,0.869986,0.896725,0.806449,0.97548,0.277539,0.720382,0.426842,0.475032,0.387736,0.611323,0.0747328,0.0469828,0.578665,0.857323,0.301763,0.0203338,0.168583,0.519233,0.682656,0.100791,0.283847,0.537053,0.191511,0.511557,0.148318,0.35192,0.37801,0.257481,0.675908,0.143275,0.773851,0.973547,0.48106,0.725933,0.949742,0.245106,0.529495,0.0399759,0.911021,0.634072,0.539959,0.810401,0.187665,0.210785,0.682641,0.418442,0.408345,0.606623,0.134833,0.601376,0.0224996,0.308108,0.724154,0.969664,0.0486317,0.547542,0.434444,0.20779,0.305378,0.825087,0.254086,0.736503,0.513779,0.192144,0.268159,0.1443,0.325809,0.812827,0.72804,0.847865,0.345695,0.936764,0.562165,0.719365,0.541247,0.309443,0.689896,0.916718,0.272939,0.000101388,0.212706,0.12125,0.0683622,0.908498,0.605703,0.460553,0.558627,0.200057,0.969902,0.555875,0.319047,0.392762,0.725389,0.703401,0.243313,0.521743,0.482676,0.716722,0.7111,0.561222,0.0267783,0.97862,0.456345,0.0410016,0.51978,0.536828,0.528012,0.379555,0.0572866,0.969997,0.338651,0.61062,0.109969,0.740228,0.584951,0.42694,0.926656,0.907674,0.759989,0.555812,0.999844,0.29301,0.808684,0.93661,0.31504,0.594871,0.202421,0.726829,0.62955,0.434251,0.602161,0.572043,0.69167,0.73805,0.711016,0.97243,0.858081,0.396726,0.785405,0.00744772,0.495504,0.310966,0.696991,0.893647,0.112087,0.785432,0.281383,0.962111,0.642337,0.513617,0.383695,0.0927733,0.768883,0.834132,0.0382746,0.558905,0.0151191,0.0872293,0.86996,0.591914,0.909781,0.871729,0.832928,0.735327,0.790581,0.250239,0.460591,0.92182,0.472271,0.755661,0.034148,0.861069,0.569278,0.801207,0.781388,0.910197,0.974157,0.0163878,0.440633,0.243546,0.810111,0.645048,0.0110456,0.316203,0.702941,0.612146,0.521843,0.936471,0.595943,0.399606,0.0942612,0.698599,0.544,0.583348,0.544164,0.142445,0.537556,0.659244,0.957451,0.642923,0.0796723,0.537034,0.728342,0.241034,0.381872,0.668092,0.996466,0.909097,0.144708,0.43256,0.581324,0.383065,0.82083,0.611358,0.768926,0.617872,0.833179,0.555847,0.564838,0.576992,0.0522884,0.0299836,0.652914,0.79754,0.782099,0.262244,0.239475,0.0556971,0.24256,0.70717,0.397322,0.445832,0.808343,0.02144,0.40188,0.565599,0.603591,0.337354,0.972416,0.430556,0.800277,0.0671642,0.796519,0.584549,0.903276,0.699644,0.632011,0.30278,0.655267,0.271396,0.800346,0.407198,0.547734,0.811409,0.206996,0.86749,0.78991,0.474296,0.459529,0.105571,0.280285,0.93391,0.620177,0.387951,0.455782,0.766985,0.522817,0.351574,0.816704,0.553277,0.985268,0.91404,0.846296,0.0491084,0.268064,0.711922,0.334122,0.250371,0.962767,0.442367,0.226863,0.348698,0.275818,0.10631,0.764383,0.655393,0.392415,0.110482,0.447329,0.223356,0.123049,0.313463,0.474839,0.744596,0.671876,0.0727777,0.132146,0.796094,0.526404,0.684123,0.680946,0.475736,0.648954,0.24144,0.68004,0.181034,0.6747,0.610014,0.692501,0.987028,0.138641,0.858153,0.0363245,0.181854,0.187492,0.649094,0.831756,0.242165,0.469317,0.734864,0.664137,0.864852,0.147581,0.401484,0.671005,0.368434,0.384794,0.0731245,0.241449,0.0372747,0.0807893,0.389438,0.48234,0.175221,0.438705,0.890595,0.640533,0.150091,0.133813,0.353078,0.868408,0.999405,0.569745,0.141415,0.473786,0.402925,0.37214,0.424608,0.495714,0.740076,0.119733,0.412847,0.107488,0.177775,0.980132,0.605008,0.184055,0.0461724,0.56845,0.451809,0.550288,0.624287,0.520706,0.283617,0.629354,0.541379,0.817333,0.0831518,0.0907322,0.621201,0.968673,0.626675,0.934197,0.497766,0.560955,0.521229,0.0308059,0.934691,0.486507,0.037221,0.441844,0.651712,0.745458,0.490598,0.211798,0.933237,0.464616,0.117803,0.103592,0.422256,0.487893,0.310654,0.0506568,0.459666,0.80986,0.669647,0.396827,0.372942,0.908724,0.259847,0.938578,0.814532,0.0396506,0.424915,0.718218,0.48261,0.803625,0.579377,0.834885,0.0873623,0.350216,0.963986,0.377858,0.0342669,0.764621,0.286258,0.346644,0.967699,0.644368,0.128795,0.770366,0.980345,0.14964,0.504624,0.0249835,0.406849,0.148368,0.383093,0.602457,0.657099,0.678334,0.54776,|0.739603,0.750811,0.15841,0.672575,0.557371,0.847152,0.630734,0.131521,0.190263,0.360583,0.240002,0.287237,0.650527,0.18273,0.337545,0.888874,0.973989,0.0988063,0.789538,0.685801,0.906563,0.199258,0.166146,0.0867752,0.416642,0.748693,0.520031,0.429685,0.314088,0.168804,0.168265,0.93666,0.418678,0.475901,0.1925,0.185444,0.390698,0.782523,0.943169,0.908162,0.471606,0.562184,0.297535,0.510587,0.242848,0.345816,0.925411,0.149578,0.783787,0.690164,0.903457,0.560693,0.851179,0.380741,0.725233,0.257427,0.643536,0.132764,0.706685,0.997264,0.517528,0.804702,0.101819,0.0269818,0.894054,0.273989,0.557912,0.961036,0.257385,0.65571,0.834829,0.695791,0.193454,0.0430167,0.523483,0.338349,0.0548105,0.460916,0.246859,0.11561,0.776893,0.163043,0.536609,0.241427,0.872488,0.45858,0.604967,0.492173,0.186259,0.0593181,0.894952,0.923778,0.680511,0.140272,0.438689,0.493456,0.955047,0.996259,0.404965,0.865393,0.351626,0.989542,0.872276,0.0616678,0.225648,0.058305,0.329305,0.396366,0.625194,0.704371,0.0764056,0.409521,0.622474,0.540443,0.716882,0.0481164,0.917682,0.183772,0.0431995,0.821333,0.901399,0.758613,0.131197,0.25527,0.814161,0.136947,0.950212,0.396878,0.217698,0.402753,0.608395,0.812912,0.895277,0.677283,0.397605,0.890132,0.959307,0.902524,0.886088,0.00514758,0.60171,0.30812,0.758672,0.546638,0.497805,0.401812,0.53376,0.782366,0.415226,0.234195,0.800681,0.711638,0.368261,0.826226,0.0671619,0.524267,0.776243,0.226622,0.629753,0.693385,0.525081,0.263621,0.0592551,0.786856,0.0871791,0.996849,0.0266249,0.511139,0.962339,0.579634,0.0309887,0.636311,0.261879,0.808001,0.424191,0.502372,0.449608,0.0664276,0.175671,0.113715,0.481806,0.0555409,0.103312,0.315591,0.572514,0.976808,0.294681,0.0411078,0.136046,0.278723,0.145292,0.217665,0.663837,0.828048,0.933719,0.235128,0.100373,0.407194,0.698272,0.670751,0.902363,0.882174,0.165672,0.00418073,0.0581892,0.406843,0.088517,0.121969,0.253857,0.373669,0.509518,0.657997,0.646281,0.437133,0.762192,0.737122,0.253064,0.0928584,0.331739,0.272815,0.0848117,0.292124,0.266548,0.065941,0.636926,0.59357,0.506046,0.194217,0.91846,0.837675,0.168026,0.143553,0.0249546,0.800642,0.788117,0.248021,0.947368,0.859557,0.587851,0.176294,0.738742,0.575922,0.28558,0.683062,0.611382,0.825646,0.628462,0.209652,0.69816,0.680573,0.41815,0.981925,0.901724,0.76845,0.862876,0.854304,0.314902,0.70873,0.0467995,0.0793088,0.100708,0.620971,0.269268,0.166563,0.349567,0.212974,0.803665,0.411783,0.968198,0.127969,0.144492,0.456047,0.836989,0.93481,0.854309,0.578209,0.964395,0.16844,0.736037,0.397801,0.441044,0.195513,0.0612651,0.693341,0.121359,0.715334,0.804164,0.44124,0.454372,0.972876,0.661753,0.852438,0.411261,0.690974,0.708519,0.207169,0.38762,0.437473,0.338295,0.332293,0.0400413,0.0176064,0.563306,0.289345,0.0740263,0.885903,0.842994,0.500268,0.0135049,0.0889174,0.786277,0.625663,0.80518,0.342948,0.263866,0.899129,0.0621551,0.0906286,0.0260305,0.120107,0.624697,0.781173,0.935281,0.20965,0.63302,0.27661,0.337954,0.410486,0.259159,0.793984,0.381698,0.551097,0.441172,0.253386,0.380132,0.628817,0.0935258,0.942492,0.695319,0.545916,0.559442,0.649901,0.333156,0.370326,0.259917,0.997458,0.8848,0.0781937,0.340747,0.899803,0.80051,0.657958,0.0908453,0.114317,0.115044,0.995984,0.823989,0.0230877,0.361468,0.369711,0.577208,0.34894,0.949214,0.673984,0.074384,0.1987,0.834897,0.0639662,0.454411,0.198318,0.229892,0.486563,0.513901,0.325317,0.231962,0.374259,0.191689,0.477604,0.0202399,0.162052,0.878001,0.83534,0.685547,0.776836,0.523599,0.657819,0.224466,0.236367,0.258859,0.640443,0.997922,0.0529866,0.76178,0.256583,0.750932,0.705635,0.567734,0.597344,0.461817,0.217355,0.185829,0.162271,0.314916,0.895637,0.0829986,0.809214,0.642919,0.539111,0.779531,0.733932,0.869615,0.279428,0.975941,0.682208,0.395311,0.493815,0.188955,0.521329,0.0431023,0.714602,0.568721,0.53841,0.130377,0.44525,0.222435,0.823391,0.0512183,0.479237,0.903968,0.146699,0.0843851,0.737305,0.30799,0.301732,0.453419,0.832328,0.879935,0.990592,0.695491,0.0892313,0.504482,0.257078,0.701585,0.641803,0.273643,0.370245,0.562131,0.159423,0.306098,0.223086,0.677342,0.62795,0.619931,0.695445,0.830641,0.088534,0.523115,0.404001,0.241595,0.13665,0.520432,0.925691,0.108606,0.63911,0.184107,0.199154,0.453006,0.055702,0.242013,0.253964,0.305949,0.195626,0.940534,0.489973,0.195921,0.45907,0.691001,0.32571,0.490148,0.0089556,0.137953,0.335477,0.520504,0.484539,0.569543,0.719844,0.969624,0.0867626,0.58716,0.894531,0.442668,0.978692,0.361971,0.234683,0.303871,0.789814,0.227077,0.300473,0.607219,0.485236,0.114703,0.448066,0.642311,0.296346,0.716714,0.4821,0.732491,0.884907,0.197302,0.71002,0.520533,0.90798,0.622401,0.301039,0.144374,0.148622,0.232843,0.136557,0.170831,0.0553285,0.188579,0.174538,0.537558,0.735481,0.0765751,0.650658,0.428888,0.757953,0.658088,0.175709,0.402699,0.887826,0.720004,0.416384,0.903958,0.902019,0.902444,0.840196,0.522602,0.0832,0.104758,0.209923,0.383453,0.102315,0.541568,0.657621,0.873361,0.237658,0.855814,0.950046,0.628224,0.912766,0.0122016,0.601398,0.686689,0.190007,0.579256,0.559421,0.171803,0.62063,0.422443,0.447989,0.075289,0.603663,0.372139,0.208154,0.257915,0.0353363,0.57151,0.261075,0.123292,0.452948,0.352311,0.262372,0.0899949,0.743202,0.119022,0.485036,0.657173,0.803809,0.400381,0.8086,0.501211,0.78835,0.133089,0.889867,0.834523,0.891073,0.594555,0.147959,0.933513,0.925398,0.257657,0.388076,0.621144,0.496831,0.526855,0.384312,0.456132,0.60482,0.0532384,0.266502,0.305346,0.363378,0.260307,0.333706,0.485531,0.511728,0.00779301,0.619341,0.411972,0.751996,0.598599,0.788016,0.738253,0.269883,0.355116,0.0578249,0.569627,0.614553,0.353599,0.299963,0.136496,0.40987,0.956716,0.0954428,0.88991,0.478246,0.431235,0.628,0.835261,0.336017,0.00329173,0.841088,0.993741,0.40309,0.637529,0.8266,0.0146392,0.305955,0.723502,0.00920534,0.13823,0.202171,0.940188,0.182793,0.23131,0.63946,0.0246108,0.412186,0.678282,0.358797,0.0530813,0.168609,0.380382,0.109439,0.866316,0.147684,0.676497,0.794113,0.187846,0.740077,0.187287,0.283858,0.802656,0.0379174,0.515894,0.642476,0.389363,0.184238,0.0216973,0.89277,0.0773293,0.970887,0.354969,0.775329,0.641842,0.914568,0.33493,0.19771,0.356851,0.325522,0.629109,0.646061,0.731201,0.455559,0.622501,0.545903,0.878554,0.455122,0.135172,0.950887,0.514815,0.441558,0.0617921,0.693664,0.404594,0.0232897,0.358956,0.769624,0.145149,0.142587,0.794342,0.705947,0.223774,0.0033406,0.830012,0.72959,0.191306,0.0484865,0.106372,0.519228,0.776522,0.861099,0.641742,0.785076,0.0786772,0.44493,0.725389,0.27613,0.309939,0.220461,0.845472,0.450566,0.284631,0.8091,0.0834439,0.443538,0.886076,0.333033,0.289247,0.310827,0.746102,0.698003,0.610619,0.839326,0.973448,0.55485,0.845248,0.983524,0.466012,0.962634,0.952521,0.217698,0.781462,0.513817,0.920919,0.470974,0.728465,0.537723,0.852184,0.78255,0.170041,0.943465,0.29331,0.209262,0.732967,0.837041,0.342344,0.0896664,0.987932,0.816704,0.464086,0.58508,0.605849,0.0295811,0.496434,0.920109,0.32063,0.517004,0.697833,0.181131,0.292593,0.323177,0.417026,0.408449,0.24525,0.242074,0.500028,0.565002,0.69122,0.788185,0.624343,0.669407,0.537366,0.181145,0.080887,0.43311,0.957387,0.572659,0.170259,0.0779217,0.952999,0.817453,0.462061,0.142422,0.0690124,0.373808,0.403676,0.356101,0.669132,0.700582,0.282935,0.31188,0.474468,0.538368,0.389,0.967562,0.647274,0.134911,0.934141,0.445784,0.991793,0.571069,0.279709,0.331498,0.919317,0.365424,0.159309,0.776035,0.431672,0.0289608,0.0558451,0.656761,0.800848,0.626333,0.345517,0.452169,0.806349,0.0423285,0.0178724,0.49163,0.0431132,0.658476,0.644924,0.706701,0.814619,0.915253,0.68114,0.0587047,0.401819,0.68611,0.845049,0.0525466,0.78668,0.304649,0.0914499,0.534942,0.377508,0.335929,0.0459632,0.334416,0.704954,0.72686,0.36943,0.0097031,0.0482665,0.808439,0.209127,0.505037,0.710033,0.689949,0.229875,0.560902,0.277837,0.990213,0.92147,0.212088,0.256089,0.197748,0.58783,0.828471,0.565517,0.487722,0.729168,0.691207,0.831923,0.403207,0.314849,0.213338,0.0317857,0.267288,0.185745,0.379484,0.725266,0.18947,0.739096,0.95642,0.443638,0.215422,0.137686,0.102443,0.913618,0.645693,0.814532,0.177956,0.854776,0.555793,0.0479749,0.459414,0.738123,0.159078,0.978276,0.64942,0.130332,0.234951,0.964978,0.0416012,0.913786,0.658126,0.744859,0.30059,0.0687811,0.0711396,0.563141,0.510527,0.215989,0.48873,0.458739,0.547494,0.12254,0.432513,0.716258,0.496387,0.234239,0.860408,0.33584,0.0801987,0.838891,0.0503651,0.796906,0.71193,0.491989,0.552492,0.308522,0.538025,0.556815,0.711908,0.647749,0.368246,0.840881,0.708907,0.860258,0.961289,0.24159,0.696976,0.0495768,0.546814,0.486647,0.298391,0.771808,0.768238,0.777648,0.995758,0.0829771,0.54544,0.896616,0.309634,0.0828595,0.484403,0.211303,0.830279,0.951822,0.781446,0.922965,0.827483,0.71739,0.465476,0.611575,0.163696,0.176522,0.071133,0.728067,0.599152,0.435715,0.315144,0.023415,0.316519,0.965184,0.687214,0.811233,0.0427985,0.228878,0.544202,0.505442,0.604065,0.511096,0.764857,0.84427,0.986259,0.0785261,0.994718,0.823579,0.965934,0.49961,0.325528,0.483899,0.27334,0.970868,0.410556,|0.953978,0.919297,0.00236768,0.373186,0.50369,0.691132,0.358266,0.685101,0.43971,0.886333,0.83691,0.649471,0.566367,0.973172,0.509966,0.776003,0.767458,0.0133106,0.690245,0.598629,0.406655,0.362904,0.670302,0.0958326,0.883104,0.686204,0.794011,0.131199,0.256078,0.846832,0.201883,0.532728,0.572796,0.365563,0.773952,0.747847,0.614274,0.890414,0.458656,0.774015,0.354129,0.360762,0.873778,0.822164,0.392444,0.720484,0.664316,0.0615667,0.905663,0.485607,0.167152,0.994402,0.549256,0.332097,0.871439,0.602727,0.862198,0.86311,0.493031,0.704426,0.77264,0.0836304,0.0432965,0.194213,0.657355,0.922359,0.632985,0.625969,0.268421,0.987373,0.410309,0.0955034,0.245903,0.907233,0.225813,0.94992,0.96546,0.168906,0.228709,0.918926,0.42508,0.597441,0.859574,0.228104,0.620641,0.0225717,0.76489,0.588714,0.507334,0.599357,0.295384,0.659012,0.489156,0.120322,0.823717,0.330403,0.242905,0.0126359,0.755088,0.787073,0.10708,0.762741,0.461297,0.938869,0.159758,0.828148,0.796223,0.473947,0.336596,0.0839851,0.311245,0.526597,0.771008,0.251043,0.478572,0.0338999,0.255857,0.0572267,0.521221,0.269435,0.205727,0.918114,0.337933,0.126365,0.99467,0.352968,0.58123,0.165174,0.138274,0.372315,0.989914,0.115135,0.216024,0.278424,0.871209,0.247292,0.457626,0.282169,0.342086,0.228875,0.00454432,0.416113,0.561345,0.199529,0.595527,0.780214,0.688305,0.257925,0.00399119,0.457465,0.286051,0.838062,0.721491,0.954798,0.0239161,0.818808,0.839984,0.0531443,0.434952,0.111662,0.66125,0.159676,0.988954,0.608445,0.443006,0.196489,0.835437,0.512404,0.0814124,0.0781343,0.00168127,0.0981098,0.4906,0.00657171,0.270955,0.348825,0.433769,0.307929,0.502495,0.206717,0.65606,0.493853,0.114317,0.652979,0.17815,0.771682,0.958998,0.33939,0.550223,0.687451,0.320793,0.381527,0.436459,0.909545,0.205122,0.217769,0.348377,0.997558,0.920454,0.869284,0.235775,0.0161356,0.189761,0.637966,0.772396,0.397121,0.749528,0.805218,0.565007,0.873905,0.812848,0.209268,0.218456,0.931132,0.857619,0.338373,0.282173,0.529529,0.0143083,0.597508,0.478619,0.429674,0.731332,0.14396,0.12326,0.14803,0.143674,0.627101,0.391334,0.403218,0.0346032,0.388037,0.118675,0.00550777,0.818967,0.803089,0.580139,0.141358,0.920353,0.0300252,0.816564,0.772627,0.257737,0.655847,0.817455,0.890057,0.260687,0.449276,0.8646,0.692123,0.415866,0.373519,0.187808,0.0180983,0.488185,0.771175,0.698119,0.519984,0.878947,0.665959,0.0405524,0.605264,0.519386,0.756023,0.633809,0.499444,0.42444,0.353638,0.188842,0.730969,0.196377,0.931035,0.609235,0.353867,0.538245,0.566712,0.0764672,0.106443,0.717949,0.342006,0.780411,0.490625,0.69807,0.0650597,0.980816,0.525097,0.430573,0.300429,0.13941,0.0389602,0.102149,0.00901997,0.139157,0.0874017,0.0330078,0.193158,0.705994,0.0422609,0.21969,0.162885,0.733682,0.805368,0.991401,0.569089,0.856436,0.598541,0.747854,0.618322,0.613569,0.880637,0.720453,0.265099,0.395343,0.612188,0.326722,0.783995,0.937165,0.149713,0.186323,0.219306,0.66107,0.462378,0.0675391,0.0468004,0.720325,0.0857947,0.486512,0.15604,0.352343,0.902588,0.391194,0.400716,0.495944,0.14233,0.561275,0.282726,0.442472,0.0901251,0.924643,0.506885,0.574281,0.414642,0.0410537,0.499606,0.29388,0.155928,0.808958,0.532752,0.0513073,0.675699,0.196474,0.938055,0.440717,0.309983,0.803579,0.427713,0.0156372,0.720542,0.0577295,0.810931,0.762322,0.24896,0.415794,0.257931,0.707236,0.799562,0.527296,0.0281209,0.105093,0.20073,0.325743,0.326959,0.571138,0.327907,0.751836,0.679675,0.929117,0.142346,0.0277942,0.938808,0.740358,0.565474,0.262874,0.641019,0.494581,0.993641,0.37803,0.903171,0.642066,0.165838,0.931232,0.366399,0.335722,0.300094,0.887107,0.953607,0.901107,0.373073,0.364599,0.115762,0.700372,0.132662,0.717088,0.587305,0.648957,0.238079,0.943212,0.311,0.889193,0.175454,0.269157,0.828861,0.367403,0.934965,0.557859,0.263229,0.62235,0.617159,0.435157,0.820713,0.875384,0.201767,0.629358,0.89501,0.383887,0.406174,0.918817,0.257158,0.36827,0.379544,0.29596,0.521939,0.837825,0.528383,0.834793,0.198373,0.605564,0.409528,0.149318,0.29881,0.370208,0.497986,0.861539,0.518899,0.780789,0.147723,0.951968,0.886908,0.969359,0.519454,0.636674,0.617577,0.0312068,0.207136,0.422022,0.650479,0.982089,0.257829,0.0913683,0.217647,0.216785,0.729524,0.204526,0.355652,0.616331,0.581634,0.545804,0.027194,0.930398,0.467382,0.101105,0.511682,0.373003,0.786322,0.33609,0.11131,0.723386,0.110855,0.608118,0.387436,0.223615,0.556438,0.983152,0.173829,0.0214583,0.141072,0.793232,0.315974,0.880747,0.243098,0.719153,0.865778,0.414171,0.668961,0.977046,0.0159639,0.690152,0.548223,0.693463,0.417167,0.469825,0.859442,0.758081,0.920982,0.423177,0.472052,0.773795,0.344975,0.901088,0.432771,0.439592,0.255905,0.981564,0.818523,0.515303,0.890471,0.977117,0.395715,0.528635,0.606126,0.733107,0.92566,0.159073,0.225641,0.81045,0.330822,0.302155,0.0907721,0.747125,0.158835,0.284746,0.649845,0.670822,0.236967,0.518246,0.798346,0.744886,0.160378,0.623675,0.922473,0.969642,0.130373,0.0145942,0.929011,0.714739,0.112198,0.357453,0.794659,0.679614,0.569013,0.852216,0.763311,0.00703132,0.85112,0.553533,0.656268,0.873863,0.830914,0.384545,0.0987425,0.577114,0.322686,0.943901,0.433254,0.231824,0.315385,0.313766,0.237071,0.615049,0.713334,0.82863,0.524613,0.187429,0.735285,0.958759,0.634083,0.0683819,0.334599,0.785937,0.611561,0.979485,0.124648,0.747815,0.494879,0.444547,0.0381683,0.432512,0.154579,0.362969,0.265165,0.767402,0.751433,0.295749,0.0925613,0.937975,0.415504,0.438306,0.217395,0.421279,0.137776,0.989346,0.416018,0.69963,0.22,0.529905,0.988787,0.566808,0.545895,0.712788,0.135683,0.479417,0.457877,0.0840837,0.32594,0.540919,0.488902,0.772581,0.313719,0.123379,0.188447,0.425679,0.219601,0.966426,0.258594,0.432085,0.0163809,0.660206,0.83937,0.468511,0.268435,0.355542,0.676178,0.359888,0.580883,0.755569,0.313586,0.603096,0.919496,0.862201,0.76026,0.441639,0.791024,0.619184,0.618524,0.281979,0.201437,0.579937,0.810416,0.793293,0.994297,0.399612,0.642395,0.991541,0.631214,0.648996,0.120612,0.191985,0.593502,0.913895,0.783331,0.271752,0.0691106,0.864829,0.86318,0.80288,0.78421,0.832381,0.993039,0.122999,0.280555,0.738288,0.972538,0.191135,0.200102,0.172183,0.514454,0.842113,0.0721785,0.909228,0.359285,0.924408,0.875799,0.999762,0.288471,0.781902,0.281327,0.308376,0.10014,0.106794,0.295166,0.264382,0.478046,0.359677,0.737488,0.244886,0.284716,0.102596,0.499125,0.729523,0.930966,0.766559,0.428776,0.393009,0.552844,0.103432,0.337437,0.543112,0.468707,0.219301,0.597574,0.157507,0.326784,0.94978,0.335277,0.0102294,0.714239,0.946789,0.875643,0.829396,0.172054,0.597216,0.215218,0.179345,0.375259,0.543897,0.0163021,0.190811,0.698554,0.413682,0.931477,0.384774,0.309061,0.592111,0.418183,0.0562807,0.0147159,0.388046,0.124293,0.706406,0.161912,0.176253,0.187977,0.527644,0.384374,0.130825,0.537651,0.0429258,0.0996658,0.573165,0.995162,0.037407,0.746441,0.657203,0.32097,0.572862,0.801171,0.413049,0.0182211,0.499863,0.407665,0.326913,0.214823,0.298825,0.87959,0.703451,0.550332,0.678164,0.162866,0.29104,0.794779,0.600761,0.779186,0.981413,0.496396,0.996415,0.18616,0.547114,0.39507,0.301098,0.589867,0.39803,0.741749,0.705942,0.864262,0.650484,0.15428,0.325131,0.721583,0.41819,0.896784,0.699332,0.285492,0.666151,0.269958,0.87628,0.928642,0.673606,0.206929,0.852061,0.743097,0.238194,0.184791,0.990369,0.0730416,0.695314,0.87908,0.452357,0.785016,0.660613,0.00607729,0.564336,0.321465,0.00110036,0.717257,0.477665,0.463923,0.734884,0.386668,0.744794,0.847783,0.891133,0.890472,0.0626161,0.251271,0.779734,0.25186,0.596655,0.112053,0.231822,0.85077,0.811761,0.8909,0.985537,0.876893,0.941088,0.487999,0.909864,0.0696446,0.868846,0.234118,0.760225,0.20661,0.445296,0.47693,0.595288,0.737632,0.247562,0.288253,0.775663,0.748467,0.0384181,0.168806,0.264893,0.611317,0.229342,0.0841922,0.817676,0.277767,0.46504,0.403826,0.767298,0.855336,0.884513,0.199187,0.91242,0.0909948,0.301821,0.0839632,0.304732,0.1433,0.127916,0.593889,0.951378,0.992376,0.203592,0.893156,0.585442,0.389959,0.971565,0.281752,0.0135966,0.355679,0.0768602,0.828945,0.775099,0.76105,0.946192,0.00641304,0.496995,0.243234,0.0305147,0.418732,0.0493345,0.725228,0.942098,0.650955,0.456535,0.850784,0.268888,0.305243,0.460902,0.433453,0.773465,0.976168,0.868709,0.0316326,0.82478,0.882728,0.262298,0.614325,0.755179,0.0676688,0.960365,0.276087,0.208937,0.717284,0.366108,0.426411,0.316704,0.113059,0.680004,0.27189,0.34653,0.130705,0.448677,0.96136,0.0686033,0.484828,0.31371,0.639882,0.579322,0.482562,0.55799,0.250388,0.826227,0.490115,0.924547,0.620911,0.585243,0.399598,0.704562,0.100037,0.80608,0.519985,0.0777055,0.622168,0.0613887,0.337024,0.843662,0.844912,0.840399,0.353922,0.716554,0.61203,0.491297,0.961379,0.945546,0.279597,0.356014,0.479684,0.417898,0.391393,0.0357683,0.985988,0.541604,0.565077,0.463933,0.632284,0.432778,0.472907,0.105706,0.0271038,0.715212,0.52576,0.680526,0.918288,0.196201,0.160565,0.849325,0.808783,0.781616,0.392536,0.669352,0.518575,0.280322,0.182462,0.385059,0.0628391,0.211949,0.69015,0.372751,0.141078,0.998275,0.761167,0.84719,0.263373,0.0541239,0.95661,0.783663,0.847354,|0.574595,0.538548,0.0259179,0.738831,0.105916,0.566582,0.983035,0.686039,0.393747,0.335956,0.471516,0.910235,0.710787,0.928402,0.641927,0.949394,0.396948,0.424137,0.928894,0.00273067,0.911199,0.666825,0.407233,0.56215,0.338968,0.00734687,0.265955,0.87023,0.160171,0.0674443,0.315387,0.971043,0.313198,0.605303,0.91014,0.172899,0.46095,0.107107,0.163259,0.496565,0.483336,0.558937,0.553623,0.45946,0.153972,0.1968,0.723231,0.57963,0.62779,0.0706325,0.428893,0.00765586,0.828816,0.783167,0.568347,0.887594,0.746132,0.363899,0.721078,0.530875,0.684479,0.731481,0.890866,0.298408,0.718266,0.138533,0.875556,0.233162,0.980053,0.143077,0.453136,0.370106,0.325936,0.870038,0.161551,0.635003,0.518739,0.983434,0.896701,0.0267567,0.990417,0.310078,0.205109,0.708096,0.723309,0.589601,0.243655,0.472799,0.795859,0.90902,0.313905,0.45,0.734607,0.672965,0.545519,0.903483,0.937061,0.80021,0.95086,0.00181925,0.334901,0.150355,0.686521,0.248728,0.924369,0.376378,0.698704,0.068777,0.640015,0.382445,0.780994,0.732033,0.635952,0.743025,0.215998,0.398819,0.513105,0.999653,0.673664,0.800822,0.253523,0.874302,0.883161,0.686845,0.646108,0.383943,0.0607077,0.605659,0.656746,0.246305,0.86365,0.980322,0.729058,0.129675,0.240925,0.669279,0.455472,0.887782,0.395147,0.930376,0.604596,0.919236,0.656055,0.170783,0.6296,0.719378,0.953269,0.657093,0.407934,0.219859,0.849722,0.248465,0.481643,0.835143,0.94686,0.560455,0.498697,0.16914,0.148392,0.625198,0.493295,0.85173,0.194008,0.132868,0.922094,0.69276,0.226976,0.764281,0.691056,0.21034,0.49861,0.490173,0.575816,0.866307,0.464791,0.236861,0.479449,0.247602,0.714322,0.554542,0.964877,0.326229,0.533906,0.0189002,0.345114,0.939139,0.706378,0.765249,0.656755,0.615837,0.123623,0.993078,0.387236,0.81343,0.423563,0.0266626,0.880727,0.455596,0.0997649,0.575742,0.00765103,0.163298,0.202016,0.75253,0.410309,0.110383,0.343728,0.456237,0.878223,0.607267,0.105559,0.71226,0.357201,0.964017,0.760643,0.433145,0.463262,0.18552,0.379714,0.249084,0.23259,0.268676,0.10555,0.414455,0.0784004,0.03732,0.545975,0.940847,0.573632,0.970685,0.197521,0.603535,0.694586,0.413251,0.570474,0.547309,0.499173,0.760901,0.489803,0.648107,0.99279,0.942568,0.885931,0.718845,0.512463,0.401791,0.618146,0.23874,0.544822,0.593318,0.605969,0.429217,0.651675,0.463022,0.801225,0.829534,0.0340715,0.634766,0.467663,0.236528,0.603041,0.377414,0.554549,0.956972,0.0547498,0.0401121,0.819537,0.358495,0.285532,0.624019,0.757105,0.639675,0.0512488,0.437366,0.443664,0.167015,0.955838,0.17539,0.0872521,0.192623,0.184058,0.0259103,0.438643,0.79782,0.93109,0.0621072,0.736537,0.128046,0.646237,0.995598,0.84589,0.8894,0.0374956,0.311964,0.207336,0.0963876,0.693703,0.486051,0.7989,0.111825,0.455578,0.212722,0.820512,0.861889,0.352714,0.368254,0.370445,0.986717,0.772706,0.0248957,0.215171,0.303212,0.00268841,0.419963,0.777545,0.902989,0.934444,0.905441,0.238404,0.421234,0.0427014,0.406925,0.796146,0.0939656,0.354294,0.530536,0.428553,0.17945,0.451226,0.961613,0.953966,0.65399,0.709707,0.764249,0.805089,0.28321,0.985585,0.849698,0.951794,0.349824,0.136067,0.563398,0.115742,0.861285,0.44768,0.879579,0.490033,0.539257,0.34785,0.0242675,0.221958,0.890708,0.316474,0.702388,0.885565,0.304435,0.890193,0.765757,0.508555,0.026936,0.919656,0.884479,0.230322,0.188469,0.511743,0.896148,0.273066,0.109566,0.451533,0.646731,0.292456,0.675979,0.563421,0.937084,0.351146,0.616491,0.0902637,0.393428,0.0589988,0.284921,0.835152,0.198803,0.83386,0.468928,0.256037,0.315485,0.175667,0.570082,0.637065,0.88199,0.43993,0.295099,0.532679,0.172392,0.3993,0.678458,0.36834,0.676073,0.629734,0.635206,0.656318,0.477701,0.2558,0.570178,0.187123,0.0245773,0.0294168,0.743148,0.227057,0.730481,0.109193,0.66327,0.809907,0.468353,0.513538,0.00603878,0.736061,0.604849,0.542976,0.253742,0.923285,0.37651,0.392266,0.42797,0.580268,0.848762,0.934971,0.461172,0.737437,0.0889012,0.899978,0.389214,0.947207,0.57082,0.317381,0.966683,0.181425,0.496456,0.300534,0.0591435,0.978245,0.955643,0.147497,0.457909,0.00943065,0.328404,0.763911,0.453477,0.480085,0.526495,0.116087,0.242672,0.890237,0.540987,0.683412,0.879065,0.853166,0.207436,0.586121,0.174822,0.766508,0.326551,0.530791,0.152747,0.690223,0.0119408,0.51774,0.0755991,0.604667,0.4908,0.799721,0.973681,0.696193,0.245137,0.328113,0.422076,0.0484415,0.20987,0.425683,0.154204,0.633421,0.499305,0.0318214,0.368797,0.192979,0.95118,0.3868,0.00857168,0.357007,0.267043,0.832851,0.288781,0.732189,0.409559,0.661032,0.754953,0.442612,0.235805,0.0670689,0.308418,0.0341558,0.790396,0.602459,0.256471,0.891631,0.20923,0.173212,0.617717,0.133124,0.425857,0.520693,0.109704,0.395644,0.0559846,0.471739,0.139668,0.924243,0.878287,0.992372,0.275475,0.580718,0.0482157,0.984959,0.256878,0.0930607,0.407618,0.912106,0.936093,0.890694,0.891372,0.762401,0.736318,0.0706639,0.879498,0.657364,0.768463,0.423422,0.0468702,0.571438,0.059786,0.870533,0.100766,0.807637,0.948159,0.172769,0.575837,0.550147,0.811326,0.393359,0.461969,0.104483,0.893648,0.596685,0.0300017,0.0737762,0.237392,0.961222,0.0388413,0.365612,0.844934,0.466017,0.184296,0.303282,0.387684,0.749839,0.316453,0.487496,0.253647,0.681415,0.550334,0.48602,0.0734326,0.669144,0.467917,0.227067,0.617311,0.314682,0.643832,0.770867,0.367306,0.546832,0.315381,0.756694,0.45421,0.175518,0.837794,0.493584,0.90169,0.348046,0.550759,0.362634,0.856281,0.853356,0.259695,0.561607,0.0489023,0.081938,0.60304,0.0847027,0.903573,0.954096,0.627401,0.899354,0.835639,0.592285,0.228982,0.951632,0.466292,0.683428,0.83115,0.980916,0.964252,0.458375,0.0429565,0.766603,0.0539257,0.873544,0.945665,0.777195,0.843512,0.865593,0.186518,0.358292,0.382398,0.860956,0.198355,0.393051,0.866241,0.946823,0.0676369,0.6609,0.729705,0.0073024,0.736477,0.245424,0.722022,0.0870311,0.0290056,0.396012,0.530862,0.926765,0.432996,0.778026,0.903268,0.219734,0.489533,0.829735,0.581189,0.917117,0.577048,0.112446,0.757744,0.270778,0.178162,0.305196,0.279998,0.0915254,0.482729,0.454189,0.12184,0.0681776,0.976955,0.926743,0.17395,0.0184458,0.570753,0.976235,0.197045,0.623783,0.453607,0.309592,0.572744,0.239741,0.495855,0.197024,0.979345,0.921982,0.71375,0.277799,0.754412,0.976793,0.180739,0.983301,0.11123,0.945645,0.0969599,0.907645,0.518745,0.809103,0.992176,0.479302,0.440323,0.456674,0.304706,0.744182,0.390732,0.148631,0.991736,0.844501,0.161506,0.10141,0.385485,0.715885,0.317459,0.883085,0.825604,0.100112,0.930236,0.739677,0.0809003,0.503095,0.206371,0.299681,0.248463,0.79257,0.506084,0.103083,0.355909,0.65109,0.32808,0.285511,0.0862009,0.101472,0.377677,0.9769,0.12116,0.933453,0.545008,0.551341,0.396287,0.42517,0.141036,0.371494,0.577837,0.463337,0.23146,0.211334,0.259133,0.548489,0.641392,0.546857,0.524522,0.399471,0.677916,0.35417,0.465072,0.584317,0.145919,0.119788,0.48438,0.386014,0.166345,0.299928,0.193107,0.875807,0.682764,0.530035,0.489173,0.0722796,0.0140833,0.370745,0.908009,0.700995,0.488379,0.00103575,0.274875,0.557973,0.46101,0.594107,0.703001,0.277288,0.404898,0.974168,0.10723,0.15634,0.608286,0.693362,0.358908,0.784584,0.449272,0.0799173,0.217571,0.779372,0.492095,0.713262,0.73505,0.731083,0.113166,0.99097,0.292255,0.0316256,0.611671,0.999063,0.821176,0.955816,0.531111,0.756044,0.769315,0.877043,0.109024,0.34382,0.398162,0.176143,0.0534616,0.431973,0.432421,0.917709,0.914339,0.661622,0.786835,0.361491,0.950475,0.269877,0.163638,0.504824,0.0066399,0.550178,0.250303,0.900418,0.199847,0.00578594,0.70475,0.335337,0.729664,0.996372,0.690152,0.861281,0.839403,0.214763,0.4872,0.944672,0.943522,0.0311075,0.507413,0.692839,0.0203441,0.107535,0.9702,0.952913,0.561401,0.611087,0.113413,0.315434,0.151106,0.0587959,0.370758,0.900902,0.378409,0.0697674,0.166688,0.271151,0.802289,0.0749215,0.485756,0.474394,0.0247077,0.79166,0.064063,0.364541,0.892576,0.865597,0.867665,0.719319,0.00843054,0.209225,0.729452,0.722147,0.552278,0.422719,0.906993,0.870341,0.364609,0.285806,0.595661,0.909114,0.23625,0.538763,0.167481,0.376599,0.564431,0.614293,0.275954,0.700875,0.20448,0.661909,0.0732191,0.157994,0.757486,0.0964625,0.491105,0.506618,0.601083,0.595724,0.315,0.117579,0.254735,0.946044,0.00219929,0.298354,0.527935,0.879642,0.00699759,0.85923,0.712005,0.616651,0.716755,0.0285013,0.320356,0.463552,0.613926,0.71096,0.192821,0.806127,0.756838,0.488216,0.311038,0.213818,0.342835,0.746763,0.780332,0.30784,0.571965,0.615038,0.6205,0.441297,0.447384,0.0414324,0.345276,0.643463,0.356739,0.459306,0.599411,0.993905,0.767217,0.105287,0.737194,0.251437,0.278416,0.283026,0.517042,0.805991,0.99701,0.940635,0.795641,0.722737,0.966905,0.221751,0.963959,0.89019,0.548817,0.524743,0.31703,0.25112,0.301436,0.318271,0.786719,0.134667,0.478446,0.392069,0.431605,0.862158,0.578795,0.164782,0.147913,0.934386,0.246367,0.252624,0.61745,0.507896,0.27755,0.691558,0.882685,0.521959,0.786553,0.409268,0.746035,0.249214,0.752115,0.815154,0.0939959,0.10164,0.3342,0.508053,0.682532,0.342144,0.927146,0.811348,0.85782,0.85983,0.00277299,0.727878,0.146969,0.0257817,0.223629,0.777232,0.58129,0.721645,0.935714,0.502496,0.59464,|0.786925,0.442311,0.181322,0.46991,0.35133,0.184407,0.114613,0.557064,0.924159,0.561746,0.0404595,0.59476,0.639343,0.0321159,0.567648,0.113904,0.71285,0.920069,0.188533,0.659634,0.177119,0.650657,0.61735,0.620987,0.0929253,0.787149,0.628626,0.603559,0.702692,0.571388,0.729765,0.920079,0.174967,0.00197506,0.277933,0.0183296,0.590611,0.939075,0.112722,0.59676,0.767465,0.0123538,0.742966,0.811714,0.123112,0.661679,0.0504541,0.21578,0.310564,0.0500979,0.90946,0.768976,0.256864,0.300449,0.511039,0.662865,0.233144,0.494255,0.34534,0.343185,0.432593,0.5542,0.275661,0.966058,0.801873,0.915038,0.139993,0.809985,0.906624,0.224995,0.145198,0.290444,0.670549,0.706509,0.0387422,0.80461,0.806736,0.255822,0.00843638,0.328485,0.115987,0.818268,0.24037,0.437594,0.523907,0.562784,0.463035,0.921035,0.893696,0.403937,0.509532,0.649224,0.697693,0.993366,0.666745,0.184495,0.19507,0.906256,0.785325,0.745829,0.319431,0.384668,0.852727,0.751652,0.439871,0.794595,0.737421,0.796006,0.508864,0.090754,0.0691684,0.332817,0.852409,0.201165,0.788684,0.892576,0.962952,0.3783,0.860651,0.132909,0.380423,0.165548,0.175812,0.274496,0.702651,0.168537,0.0323511,0.421939,0.500798,0.320644,0.896941,0.0450355,0.453334,0.133987,0.938856,0.378817,0.400206,0.0701444,0.698485,0.462107,0.730765,0.767004,0.902369,0.018728,0.159435,0.120973,0.889838,0.20353,0.610401,0.0275749,0.379457,0.136316,0.710829,0.0444955,0.880991,0.291665,0.119458,0.92693,0.415892,0.758703,0.203254,0.818468,0.826136,0.467099,0.790148,0.115012,0.723276,0.458878,0.784156,0.703836,0.55631,0.641156,0.996761,0.162483,0.639446,0.791483,0.124735,0.149076,0.0103462,0.0559472,0.935398,0.576328,0.113983,0.973679,0.494074,0.639604,0.134639,0.392019,0.546406,0.864444,0.606408,0.504952,0.297561,0.926997,0.10761,0.182089,0.0801787,0.420545,0.21988,0.980619,0.213266,0.277458,0.536754,0.868126,0.385365,0.889174,0.411858,0.623977,0.816302,0.196722,0.0278103,0.677898,0.516389,0.856561,0.00721228,0.466335,0.0399185,0.572309,0.295643,0.37605,0.0945964,0.0932577,0.768347,0.337997,0.470455,0.238848,0.0997245,0.192304,0.372033,0.694578,0.478346,0.112159,0.440218,0.29517,0.959897,0.135605,0.809891,0.978537,0.0768545,0.7816,0.67595,0.736213,0.587935,0.31853,0.888505,0.0319103,0.94117,0.288151,0.206208,0.0956961,0.721,0.246555,0.954634,0.0854279,0.247536,0.117678,0.206861,0.160167,0.866246,0.905008,0.342862,0.571037,0.311114,0.548543,0.353377,0.234623,0.118239,0.269613,0.388969,0.478703,0.599467,0.415016,0.0482503,0.258024,0.0630636,0.808421,0.574637,0.826236,0.969049,0.229067,0.347942,0.304607,0.489643,0.856039,0.159326,0.191544,0.0201997,0.0594327,0.179351,0.861564,0.334576,0.952364,0.274872,0.774555,0.275237,0.0349247,0.22983,0.0799056,0.825988,0.782209,0.365047,0.0665375,0.557973,0.748739,0.564131,0.151898,0.880364,0.123378,0.472217,0.211272,0.890101,0.539293,0.46892,0.675878,0.75222,0.356296,0.478881,0.316895,0.372511,0.716587,0.381284,0.253095,0.599225,0.487327,0.969634,0.680636,0.780872,0.501361,0.916154,0.183748,0.0455676,0.239461,0.582906,0.551007,0.888875,0.973913,0.814983,0.0161926,0.274731,0.120255,0.0416177,0.668911,0.592584,0.721363,0.857896,0.234666,0.674845,0.147268,0.0394147,0.369816,0.589215,0.932878,0.641787,0.808692,0.284128,0.507525,0.960042,0.311871,0.0164613,0.735699,0.873331,0.377495,0.930572,0.00649095,0.743432,0.248953,0.0226382,0.0662473,0.414771,0.216333,0.706821,0.926962,0.776856,0.669716,0.347825,0.13234,0.645939,0.462852,0.0241649,0.0764933,0.365518,0.0982167,0.9596,0.76434,0.464743,0.434421,0.665256,0.229155,0.574089,0.280394,0.590241,0.0709448,0.297759,0.934309,0.367018,0.390515,0.234755,0.210975,0.00198531,0.18226,0.945655,0.888165,0.250245,0.355109,0.174186,0.91906,0.167718,0.0156274,0.276751,0.452474,0.6042,0.870064,0.622908,0.871337,0.410211,0.269244,0.109603,0.191736,0.0601125,0.412507,0.437276,0.731197,0.260017,0.96151,0.306905,0.968709,0.667723,0.962116,0.800641,0.0675179,0.735732,0.6896,0.120173,0.176605,0.395771,0.293633,0.284357,0.399805,0.323936,0.912192,0.345182,0.773518,0.726852,0.927715,0.56785,0.665869,0.595466,0.368625,0.952861,0.0768542,0.818798,0.612922,0.487794,0.166006,0.231689,0.081329,0.723914,0.544909,0.248519,0.882298,0.445835,0.279073,0.661435,0.790695,0.884789,0.705076,0.247777,0.6043,0.124535,0.740757,0.0299384,0.034603,0.242741,0.598187,0.574646,0.804029,0.896336,0.712743,0.893996,0.0575255,0.733093,0.727684,0.279665,0.780496,0.0138854,0.690657,0.967363,0.742538,0.788055,0.787916,0.735331,0.410677,0.131481,0.0863342,0.234264,0.47304,0.775831,0.334556,0.871177,0.8804,0.708473,0.417163,0.381013,0.910211,0.886023,0.0640457,0.496344,0.0804687,0.413416,0.366111,0.37211,0.212663,0.388008,0.439902,0.43736,0.0321156,0.530592,0.0160856,0.7251,0.0838757,0.0112316,0.392126,0.0615098,0.0282534,0.722307,0.841763,0.675035,0.903596,0.370026,0.789725,0.607853,0.630966,0.287643,0.131705,0.629277,0.327782,0.573364,0.995189,0.575493,0.0928317,0.455005,0.517062,0.920103,0.306007,0.296483,0.0198768,0.22084,0.758295,0.897343,0.0907825,0.06564,0.731944,0.245777,0.984486,0.890803,0.576885,0.915519,0.835349,0.769916,0.0676609,0.808383,0.398061,0.850067,0.398175,0.729731,0.55927,0.425237,0.969217,0.161253,0.898937,0.493568,0.850165,0.251838,0.0670297,0.918202,0.906717,0.858234,0.477048,0.546797,0.0985641,0.617116,0.803444,0.821327,0.709819,0.335031,0.130554,0.598269,0.991632,0.771097,0.403769,0.024975,0.992777,0.809248,0.734756,0.167325,0.668104,0.357826,0.0150282,0.270704,0.844687,0.076834,0.477815,0.113947,0.209051,0.637019,0.314291,0.65867,0.662231,0.27599,0.320979,0.138524,0.420604,0.500516,0.183356,0.810322,0.584976,0.520584,0.0456116,0.68207,0.524991,0.46689,0.4707,0.377914,0.355529,0.182712,0.848753,0.275114,0.292054,0.487329,0.665149,0.738755,0.0461609,0.72819,0.893856,0.0387366,0.847352,0.066735,0.872099,0.625448,0.355691,0.327873,0.18998,0.0755213,0.613878,0.358755,0.16828,0.40274,0.951553,0.030768,0.586467,0.0841062,0.113332,0.434672,0.674532,0.992172,0.69847,0.652335,0.220493,0.320837,0.764493,0.893766,0.811745,0.365682,0.0498475,0.430903,0.57411,0.851411,0.263396,0.742921,0.552057,0.865224,0.650101,0.139769,0.401966,0.162304,0.8376,0.855647,0.261901,0.114776,0.752948,0.246043,0.481621,0.751402,0.333775,0.768879,0.578133,0.79511,0.121714,0.667083,0.490539,0.626975,0.573678,0.414751,0.920741,0.158779,0.759058,0.873715,0.402999,0.227923,0.0365075,0.527799,0.921364,0.989523,0.866817,0.0972458,0.732364,0.667484,0.427834,0.732885,0.907156,0.341395,0.792685,0.219703,0.517467,0.927866,0.333437,0.0103095,0.286791,0.0616217,0.496716,0.755772,0.304941,0.130405,0.0592886,0.691665,0.638663,0.444828,0.653539,0.142203,0.731663,0.212488,0.732424,0.202171,0.456875,0.0668323,0.668206,0.693668,0.408177,0.127324,0.261498,0.133353,0.905807,0.860727,0.222187,0.372648,0.313082,0.664349,0.222654,0.539005,0.580049,0.776154,0.00516754,0.818147,0.100716,0.940351,0.319375,0.514822,0.350904,0.0301023,0.821355,0.966622,0.884883,0.0822448,0.494291,0.756452,0.756526,0.48326,0.859852,0.485436,0.00232977,0.312258,0.84009,0.229768,0.263827,0.454574,0.258844,0.598142,0.330391,0.229413,0.895061,0.910053,0.97319,0.0184981,0.223992,0.623647,0.678557,0.951661,0.0253692,0.210308,0.156221,0.0367984,0.671038,0.875778,0.274253,0.470719,0.499633,0.41274,0.32893,0.83136,0.146864,0.804591,0.754659,0.0699662,0.118643,0.698648,0.0480457,0.595533,0.932568,0.103572,0.583857,0.340133,0.64576,0.179903,0.0401759,0.308127,0.997718,0.0582951,0.876472,0.0662625,0.736595,0.551013,0.0978819,0.696822,0.285584,0.441175,0.347848,0.0647804,0.720616,0.0335245,0.136305,0.275247,0.00550073,0.972747,0.174792,0.344178,0.731899,0.691761,0.833855,0.484588,0.0273905,0.519384,0.104355,0.94197,0.100249,0.750004,0.743716,0.76733,0.70588,0.58781,0.96284,0.854822,0.934168,0.0459159,0.715785,0.996034,0.164406,0.346769,0.439584,0.425025,0.0580001,0.363257,0.256787,0.34985,0.807424,0.246116,0.621973,0.248303,0.401068,0.284703,0.423238,0.410812,0.942919,0.675166,0.897388,0.595172,0.520493,0.277473,0.326396,0.612445,0.171822,0.36861,0.795363,0.435689,0.264278,0.253467,0.0644609,0.715287,0.85189,0.237005,0.596762,0.915323,0.868807,0.721222,0.480199,0.851662,0.840035,0.58029,0.232418,0.843288,0.284244,0.967948,0.523603,0.458381,0.616172,0.860778,0.182637,0.0539931,0.42548,0.0269825,0.681258,0.740955,0.569897,0.239437,0.0928261,0.162307,0.411646,0.376309,0.112649,0.355585,0.0154675,0.808031,0.879262,0.523147,0.879794,0.794724,0.638643,0.161157,0.604118,0.462385,0.596439,0.170417,0.927363,0.166294,0.505964,0.34648,0.890543,0.478259,0.24941,0.830528,0.532654,0.384018,0.0611554,0.576585,0.390295,0.245266,0.956962,0.352893,0.195336,0.516848,0.514285,0.880835,0.63667,0.274432,0.166776,0.324606,0.725813,0.591564,0.938812,0.333596,0.0525357,0.777546,0.9934,0.863892,0.671609,0.281492,0.73664,0.728617,0.161453,0.991165,0.799796,0.298857,0.672376,0.770761,0.33528,0.245104,0.167928,0.713136,0.16153,0.14651,0.333396,0.181265,0.844748,0.255114,0.0974034,0.725843,0.744932,0.752267,0.0809507,0.532721,0.21282,0.958974,0.127113,0.026111,0.332227,0.526244,0.866625,0.385225,0.548013,0.621043,0.816605,|0.804665,0.119423,0.0127778,0.64403,0.172506,0.456136,0.167021,0.776227,0.725865,0.303672,0.692876,0.288513,0.512056,0.512832,0.27432,0.113848,0.750043,0.729443,0.748838,0.745264,0.42151,0.210536,0.233811,0.705056,0.387937,0.912371,0.0807629,0.347175,0.231813,0.14041,0.138145,0.437385,0.777326,0.916331,0.561367,0.653604,0.0476112,0.0176476,0.879265,0.376153,0.583798,0.920723,0.611855,0.106517,0.192666,0.734102,0.46977,0.781549,0.392958,0.336561,0.660411,0.104997,0.224925,0.843649,0.565535,0.84768,0.0517832,0.54847,0.713202,0.954296,0.826099,0.5537,0.194457,0.12923,0.988638,0.725532,0.286369,0.344265,0.332941,0.449014,0.820784,0.690235,0.697409,0.274728,0.790958,0.182111,0.928214,0.61479,0.861155,0.5965,0.109346,0.362087,0.0737116,0.940482,0.152517,0.210825,0.954614,0.317989,0.902904,0.139055,0.655937,0.384958,0.216906,0.525218,0.217177,0.00662273,0.365322,0.491497,0.348977,0.512785,0.832386,0.549161,0.134563,0.216757,0.564968,0.00690854,0.614995,0.296145,0.667,0.0221589,0.744342,0.163083,0.223251,0.172839,0.128354,0.32998,0.990823,0.857031,0.820342,0.838003,0.113883,0.372532,0.293356,0.360286,0.0995843,0.105976,0.796496,0.190319,0.504316,0.865444,0.315118,0.0273246,0.0104669,0.188653,0.274142,0.522402,0.249406,0.796087,0.0242648,0.940142,0.613151,0.477223,0.778016,0.42494,0.252728,0.417993,0.657516,0.289226,0.411239,0.697678,0.302292,0.395895,0.448902,0.154785,0.50432,0.760348,0.124076,0.642789,0.985718,0.00472242,0.52936,0.456501,0.28003,0.876361,0.116076,0.841306,0.540792,0.476526,0.851873,0.968431,0.410697,0.880213,0.807867,0.391661,0.955318,0.642076,0.68401,0.754993,0.23815,0.26328,0.0520716,0.981595,0.252601,0.262891,0.168923,0.72692,0.907477,0.600187,0.784043,0.169863,0.160653,0.77565,0.23852,0.900399,0.682666,0.05721,0.662114,0.28954,0.902403,0.883767,0.944667,0.510731,0.722193,0.324743,0.494294,0.931052,0.216361,0.525046,0.647383,0.788684,0.453565,0.38293,0.348004,0.745651,0.923353,0.253267,0.854129,0.116525,0.971486,0.520086,0.740145,0.503254,0.628461,0.0865915,0.0636763,0.435657,0.815553,0.765265,0.958886,0.89347,0.401844,0.00701982,0.594603,0.608208,0.967023,0.0847006,0.0601943,0.762551,0.351153,0.578145,0.771873,0.0205862,0.436343,0.105195,0.180039,0.869012,0.652162,0.515215,0.533181,0.812977,0.148296,0.732699,0.183828,0.0878541,0.424463,0.972754,0.639749,0.16605,0.158632,0.564894,0.632173,0.824549,0.0774204,0.391481,0.906776,0.362669,0.540288,0.774373,0.814748,0.16505,0.677814,0.430426,0.212175,0.91337,0.904446,0.311876,0.870573,0.640991,0.794633,0.855859,0.83067,0.9284,0.11427,0.0358859,0.738619,0.136229,0.430998,0.324522,0.962538,0.153762,0.937226,0.761026,0.581368,0.441586,0.0932321,0.624248,0.64494,0.839479,0.670846,0.75823,0.938111,0.666053,0.0140421,0.496624,0.00784326,0.713741,0.483789,0.89287,0.0596479,0.302146,0.79992,0.0715864,0.41374,0.259976,0.731249,0.666517,0.941275,0.331096,0.425826,0.532718,0.698248,0.494516,0.407047,0.905263,0.455088,0.199635,0.768096,0.774538,0.58236,0.732378,0.130939,0.566966,0.140102,0.208911,0.78144,0.741164,0.831405,0.41821,0.215374,0.429465,0.557714,0.977103,0.421688,0.215437,0.455331,0.860177,0.153269,0.250936,0.765189,0.883148,0.298286,0.998947,0.348815,0.302417,0.370135,0.661523,0.390761,0.745317,0.894592,0.730601,0.808348,0.789358,0.212351,0.178369,0.722212,0.324862,0.89099,0.257611,0.772415,0.735468,0.318751,0.481793,0.614796,0.354459,0.242019,0.921582,0.688967,0.849757,0.160061,0.413266,0.726763,0.938042,0.535739,0.994851,0.877664,0.507966,0.408174,0.201605,0.883002,0.696892,0.779622,0.76923,0.853095,0.504297,0.515969,0.764532,0.463021,0.655102,0.147504,0.728517,0.0522111,0.152447,0.0531899,0.285673,0.597711,0.838647,0.233482,0.316187,0.190736,0.685917,0.142855,0.0571812,0.453394,0.893813,0.721347,0.695253,0.916351,0.364256,0.585521,0.217386,0.788965,0.642993,0.707276,0.250539,0.170783,0.922098,0.446969,0.492918,0.702753,0.630579,0.860429,0.383519,0.549385,0.0459251,0.42809,0.690449,0.917062,0.524257,0.2414,0.633229,0.868144,0.00637203,0.348052,0.168778,0.556862,0.279823,0.3409,0.290018,0.401751,0.449842,0.230606,0.394968,0.42706,0.974516,0.639474,0.269444,0.521863,0.952676,0.693708,0.568991,0.888546,0.270934,0.981211,0.313648,0.246587,0.386682,0.0724223,0.504357,0.105281,0.327974,0.336295,0.545093,0.869856,0.443167,0.725538,0.494893,0.579371,0.432577,0.492701,0.348034,0.11191,0.286267,0.506267,0.693125,0.781587,0.295394,0.585216,0.791107,0.942092,0.743492,0.941538,0.669276,0.624531,0.767196,0.0281622,0.114775,0.720653,0.92576,0.188703,0.712858,0.405227,0.508419,0.898672,0.446275,0.809983,0.517543,0.80871,0.671854,0.20886,0.692501,0.295415,0.40296,0.44832,0.4427,0.676509,0.891492,0.723157,0.717279,0.751112,0.845587,0.708616,0.45157,0.52939,0.112803,0.0370103,0.0676321,0.237258,0.0587542,0.0670546,0.534422,0.655683,0.450123,0.681325,0.183977,0.582518,0.726296,0.677262,0.628947,0.0777359,0.950909,0.830849,0.665428,0.821776,0.450805,0.182159,0.127893,0.126691,0.584673,0.391614,0.112386,0.264514,0.30931,0.0819579,0.863981,0.793689,0.181162,0.698717,0.246755,0.00972492,0.570006,0.777391,0.834561,0.605119,0.724056,0.0652187,0.0777709,0.551961,0.574526,0.512636,0.616559,0.925119,0.353047,0.733023,0.166808,0.725905,0.39287,0.638081,0.154804,0.324326,0.941195,0.527103,0.200539,0.982134,0.209975,0.162606,0.199943,0.12061,0.268903,0.586897,0.903768,0.575988,0.208392,0.596247,0.243281,0.99139,0.133613,0.88563,0.618669,0.144956,0.736131,0.022131,0.746496,0.793517,0.761149,0.706677,0.995663,0.513762,0.946471,0.0892941,0.00183696,0.021933,0.349724,0.381718,0.422439,0.169657,0.932706,0.25535,0.466716,0.0473822,0.940551,0.712382,0.320329,0.578722,0.024932,0.605231,0.718013,0.735558,0.675706,0.894819,0.0837362,0.142473,0.56568,0.109598,0.576723,0.239091,0.591164,0.233951,0.85554,0.611965,0.61488,0.0789534,0.497642,0.934825,0.769472,0.691779,0.0861821,0.724547,0.616413,0.64632,0.478747,0.931779,0.928086,0.838247,0.686234,0.00355637,0.82151,0.763838,0.336462,0.00326079,0.913695,0.480948,0.580341,0.191891,0.6808,0.327556,0.670076,0.829695,0.303051,0.243571,0.516999,0.815008,0.67775,0.252433,0.266612,0.213166,0.717723,0.1084,0.37264,0.143269,0.248428,0.828633,0.870823,0.629836,0.806182,0.7563,0.810146,0.254972,0.634606,0.0430022,0.819989,0.375983,0.753504,0.726035,0.988398,0.893533,0.283739,0.934688,0.829335,0.989611,0.602622,0.915196,0.590317,0.0106139,0.939074,0.24259,0.296195,0.419377,0.246866,0.35652,0.00255471,0.60342,0.892855,0.509003,0.233754,0.556722,0.328093,0.566067,0.0393824,0.649395,0.588434,0.310861,0.757562,0.906628,0.574034,0.00538206,0.647747,0.446276,0.442841,0.862767,0.133849,0.899106,0.396864,0.0507368,0.984481,0.89614,0.255754,0.963104,0.809107,0.725356,0.961881,0.902464,0.181216,0.637875,0.486479,0.792348,0.921391,0.528221,0.506124,0.127741,0.56831,0.568765,0.0844861,0.172221,0.345217,0.890308,0.755855,0.158041,0.646584,0.659065,0.941814,0.620817,0.369589,0.688015,0.0275471,0.284885,0.455342,0.656018,0.093601,0.887659,0.162219,0.123764,0.0349424,0.738104,0.526102,0.783781,0.242937,0.892038,0.0822344,0.839319,0.0393227,0.306476,0.205574,0.563312,0.18959,0.273413,0.3806,0.365305,0.0636761,0.703125,0.118676,0.197394,0.21715,0.10647,0.295789,0.910705,0.0309361,0.516267,0.226111,0.555321,0.9962,0.364195,0.726534,0.247518,0.109197,0.556235,0.290718,0.827091,0.983892,0.197666,0.445462,0.482497,0.78741,0.378565,0.524854,0.435158,0.42803,0.779997,0.689434,0.754183,0.524681,0.60555,0.233963,0.0118799,0.609925,0.673438,0.844054,0.78686,0.712103,0.487905,0.696934,0.955782,0.959821,0.832719,0.553957,0.159647,0.312787,0.452824,0.893823,0.696238,0.386025,0.941316,0.790464,0.9414,0.614617,0.217235,0.101785,0.142873,0.660955,0.0731825,0.751931,0.890584,0.0530608,0.0621583,0.0837537,0.979321,0.409241,0.604672,0.14347,0.577244,0.317386,0.282666,0.925945,0.403441,0.455984,0.940796,0.272964,0.810883,0.0841043,0.87494,0.0762203,0.074895,0.856109,0.661417,0.0884203,0.959812,0.855243,0.879668,0.836072,0.269298,0.00518191,0.461922,0.0858018,0.877843,0.639021,0.373407,0.946196,0.658761,0.34579,0.181144,0.104759,0.897442,0.201617,0.0648643,0.385884,0.367815,0.688451,0.445026,0.00934744,0.309574,0.290337,0.273525,0.0758496,0.857338,0.982598,0.297909,0.0593719,0.739657,0.57816,0.197064,0.372298,0.860236,0.0297517,0.972617,0.337227,0.557607,0.572402,0.333204,0.116961,0.218598,0.735195,0.741308,0.53944,0.291031,0.433018,0.419953,0.371688,0.959788,0.445656,0.226569,0.992838,0.0920697,0.144396,0.893542,0.417787,0.990336,0.543053,0.853045,0.0444139,0.444006,0.922485,0.866694,0.556183,0.403237,0.773516,0.0288267,0.701899,0.746639,0.533476,0.110002,0.633813,0.558667,0.279989,0.421241,0.947491,0.804957,0.523963,0.0819777,0.320879,0.60884,0.683845,0.761766,0.598363,0.636045,0.509753,0.816066,0.20558,0.429894,0.555696,0.540812,0.192248,0.916097,0.565015,0.332948,0.233155,0.920613,0.178243,0.591685,0.24482,0.523133,0.504302,0.675019,0.868487,0.473998,0.903695,0.921241,0.016374,0.901135,0.0290688,0.832127,0.786187,0.580688,0.676384,0.509983,0.0324618,0.439724,0.275471,0.00818759,0.866413,0.854736,0.577446,|0.404022,0.107719,0.543958,0.749247,0.830736,0.43296,0.996518,0.85459,0.93138,0.397083,0.0600372,0.662679,0.786022,0.0350273,0.209783,0.642564,0.866794,0.9715,0.392094,0.10633,0.172307,0.113027,0.159785,0.826291,0.608156,0.714896,0.227057,0.291661,0.264041,0.975977,0.292157,0.296942,0.463944,0.195673,0.468161,0.555724,0.0470973,0.821135,0.368159,0.605288,0.295738,0.517532,0.0896107,0.939334,0.33756,0.264913,0.78705,0.794404,0.0688876,0.698655,0.304318,0.117143,0.496951,0.437056,0.448238,0.836084,0.0652428,0.414786,0.0612782,0.673693,0.602426,0.677064,0.968691,0.832175,0.13168,0.259589,0.630298,0.877206,0.569402,0.822356,0.723829,0.495664,0.714172,0.704467,0.536307,0.153075,0.413623,0.163046,0.146411,0.867416,0.133856,0.387412,0.0357728,0.370246,0.956921,0.373403,0.207906,0.540453,0.119673,0.334012,0.92644,0.734289,0.549767,0.26159,0.253724,0.724832,0.2626,0.378585,0.854632,0.0311649,0.488453,0.945573,0.145324,0.260423,0.675358,0.858928,0.217476,0.803376,0.568973,0.672892,0.693135,0.59681,0.791478,0.292225,0.745475,0.158438,0.384424,0.573439,0.35719,0.617779,0.0388993,0.511416,0.756858,0.0973414,0.535598,0.669666,0.0475114,0.753337,0.0224298,0.0681515,0.059171,0.0958939,0.197638,0.55069,0.253034,0.806642,0.173043,0.731074,0.74011,0.596173,0.95672,0.93539,0.748307,0.620641,0.4156,0.241035,0.370044,0.435275,0.318931,0.0915214,0.298848,0.0579874,0.164213,0.283811,0.902103,0.252255,0.887405,0.81614,0.964124,0.790839,0.297219,0.691097,0.36664,0.975307,0.943842,0.77836,0.212593,0.15836,0.278711,0.497115,0.0783854,0.927877,0.0297922,0.0134545,0.51498,0.0500551,0.0794572,0.253971,0.437367,0.819941,0.83603,0.212788,0.0361094,0.371909,0.931378,0.75446,0.0412111,0.697968,0.0999143,0.338122,0.662103,0.53626,0.766447,0.367938,0.227314,0.825078,0.271881,0.876725,0.247994,0.23091,0.0889817,0.713058,0.532306,0.60643,0.144717,0.950999,0.197475,0.666398,0.357906,0.54594,0.113499,0.885567,0.0018605,0.724752,0.442392,0.706212,0.374654,0.610129,0.0146679,0.0479726,0.876433,0.522288,0.492423,0.926315,0.187114,0.955126,0.526944,0.138049,0.799907,0.622121,0.492507,0.484297,0.870249,0.747559,0.542645,0.621296,0.879058,0.569471,0.662522,0.661443,0.014945,0.456715,0.0652589,0.665319,0.0984281,0.252917,0.0664756,0.581221,0.705763,0.92064,0.448344,0.110139,0.326231,0.412325,0.287996,0.567981,0.251031,0.79788,0.537252,0.13079,0.360261,0.143716,0.0290301,0.472402,0.341522,0.10705,0.346862,0.157714,0.23826,0.259678,0.573108,0.109673,0.733214,0.0570113,0.177557,0.408349,0.604959,0.0770141,0.825777,0.0640609,0.931375,0.0550355,0.802663,0.787711,0.587592,0.530515,0.304855,0.643125,0.193707,0.76639,0.243151,0.231332,0.834196,0.420106,0.819377,0.7703,0.968322,0.240378,0.281716,0.0547711,0.417295,0.199425,0.754896,0.0128576,0.684529,0.160629,0.47748,0.512251,0.375949,0.249818,0.518558,0.868744,0.0226689,0.758105,0.594428,0.433357,0.90701,0.600058,0.681281,0.716451,0.850755,0.552211,0.0074451,0.757071,0.858033,0.65137,0.701192,0.791744,0.35351,0.110429,0.983756,0.264762,0.0226932,0.322041,0.882995,0.469421,0.913806,0.412686,0.803713,0.562678,0.243831,0.907923,0.890239,0.631331,0.00657618,0.774477,0.376934,0.252827,0.823047,0.0946473,0.120155,0.898622,0.688146,0.202968,0.677846,0.221292,0.476556,0.769727,0.716512,0.153139,0.0649239,0.990932,0.185418,0.351309,0.926418,0.108013,0.258517,0.262623,0.217352,0.0462805,0.532462,0.629866,0.387706,0.0715553,0.0176744,0.39494,0.163722,0.077976,0.466592,0.0133714,0.10732,0.253426,0.655964,0.701183,0.574094,0.608074,0.311321,0.383651,0.54472,0.977303,0.330397,0.193511,0.068386,0.559822,0.395705,0.869332,0.931704,0.271996,0.907934,0.293271,0.422881,0.361869,0.596331,0.0746601,0.57537,0.327407,0.976756,0.563342,0.927339,0.463112,0.316198,0.888971,0.952007,0.132538,0.611606,0.129013,0.106377,0.384019,0.2695,0.382545,0.59324,0.349113,0.4972,0.404728,0.101045,0.611734,0.652411,0.724278,0.187726,0.286824,0.640945,0.235281,0.428648,0.693408,0.73473,0.769829,0.446491,0.241729,0.741078,0.196216,0.79711,0.886377,0.100446,0.61157,0.726327,0.504018,0.374942,0.84486,0.0391085,0.839889,0.569568,0.0116277,0.362131,0.151007,0.566724,0.112068,0.66979,0.290096,0.497258,0.752913,0.076367,0.973339,0.444016,0.125279,0.16699,0.64744,0.168084,0.0885041,0.0958914,0.0126075,0.0831073,0.962425,0.192594,0.140485,0.143274,0.0709125,0.661427,0.967998,0.00959802,0.898592,0.673728,0.0419396,0.650086,0.60771,0.421451,0.272267,0.297035,0.506789,0.37175,0.726742,0.296759,0.843062,0.240514,0.683012,0.200197,0.369565,0.979206,0.296957,0.254099,0.517087,0.77498,0.812836,0.694772,0.77901,0.728119,0.769267,0.302541,0.0969684,0.594333,0.828341,0.711828,0.477432,0.102951,0.927362,0.334433,0.800825,0.944387,0.69887,0.938485,0.882868,0.0609848,0.436554,0.772951,0.845597,0.00328505,0.595637,0.0102153,0.110669,0.349371,0.789348,0.156208,0.0209146,0.373597,0.0853156,0.43593,0.748198,0.855305,0.416966,0.985704,0.255825,0.720059,0.837601,0.468715,0.874726,0.488673,0.218356,0.0630704,0.711802,0.20989,0.860372,0.00172573,0.809859,0.584672,0.533397,0.860105,0.703761,0.967403,0.189677,0.558751,0.211513,0.219851,0.543127,0.698724,0.121401,0.0736409,0.875942,0.543637,0.478473,0.387246,0.96422,0.506194,0.265421,0.766107,0.127928,0.814183,0.578622,0.587719,0.437547,0.0917809,0.803655,0.329669,0.210914,0.449972,0.0964108,0.44369,0.62822,0.349453,0.926856,0.598693,0.784732,0.692074,0.942978,0.269165,0.139639,0.11469,0.24876,0.262797,0.52651,0.442262,0.395452,0.417992,0.595259,0.358001,0.881887,0.954577,0.552486,0.684965,0.341249,0.00861299,0.617135,0.607906,0.607565,0.367933,0.00890362,0.698008,0.796838,0.588449,0.559221,0.894812,0.116385,0.087364,0.609511,0.466699,0.00688612,0.830787,0.66661,0.760935,0.90549,0.476806,0.674318,0.504027,0.294993,0.188928,0.380015,0.906681,0.0137901,0.298621,0.431794,0.00470066,0.315388,0.0653014,0.901835,3.86238e-05,0.973296,0.333592,0.67594,0.907292,0.563058,0.138894,0.920243,0.302178,0.628793,0.780041,0.219355,0.159971,0.922041,0.44698,0.288549,0.930162,0.0700099,0.748966,0.323227,0.941509,0.948796,0.113165,0.333466,0.937572,0.22728,0.426617,0.109365,0.360608,0.458899,0.783931,0.0371918,0.36204,0.514402,0.628953,0.35296,0.55456,0.119759,0.314594,0.871492,0.504029,0.00436717,0.538847,0.588108,0.547846,0.0302355,0.73723,0.257452,0.53507,0.0946618,0.834605,0.651096,0.952756,0.296551,0.630587,0.350662,0.888336,0.311496,0.669457,0.497838,0.801404,0.196475,0.269354,0.445744,0.214635,0.730321,0.962058,0.886395,0.372338,0.808536,0.0341477,0.213487,0.164461,0.357067,0.165552,0.166413,0.67513,0.625819,0.117897,0.108016,0.562525,0.019156,0.969334,0.924934,0.166929,0.310781,0.605474,0.49247,0.86246,0.0367864,0.495796,0.896367,0.560471,0.254495,0.512538,0.882173,0.447776,0.674545,0.124465,0.705846,0.971013,0.435935,0.611807,0.753536,0.342367,0.384749,0.286048,0.366924,0.535304,0.617173,0.19589,0.979949,0.321471,0.583378,0.675881,0.911869,0.203317,0.097411,0.769396,0.139741,0.114055,0.661579,0.210186,0.350309,0.867203,0.721989,0.286903,0.587193,0.34856,0.525012,0.88999,0.0236952,0.201215,0.674113,0.129166,0.41633,0.417023,0.755983,0.126307,0.221429,0.148977,0.730826,0.436491,0.0764886,0.375782,0.299894,0.286262,0.00784743,0.521984,0.590237,0.871763,0.127926,0.854478,0.392611,0.909356,0.771875,0.964474,0.0120403,0.312422,0.595443,0.110205,0.831214,0.102087,0.165223,0.286257,0.817077,0.939313,0.639433,0.127555,0.331958,0.436464,0.247569,0.486196,0.937559,0.875224,0.278487,0.140452,0.782655,0.775435,0.846871,0.561506,0.309039,0.566427,0.190758,0.994428,0.381872,0.732451,0.981755,0.307008,0.531963,0.444437,0.689766,0.191842,0.0306397,0.972509,0.402136,0.991301,0.889078,0.458203,0.00250101,0.870187,0.163321,0.633868,0.270093,0.403964,0.674783,0.904371,0.480528,0.283576,0.945173,0.452039,0.644911,0.834662,0.990521,0.588152,0.488338,0.665714,0.209443,0.605326,0.833568,0.748002,0.624672,0.973816,0.989801,0.552205,0.420848,0.737753,0.442238,0.640718,0.248642,0.098278,0.644746,0.507082,0.809517,0.389825,0.933871,0.644909,0.718857,0.799291,0.638661,0.286596,0.305175,0.346685,0.0339248,0.82525,0.612606,0.894202,0.794297,0.586923,0.0297287,0.831812,0.273793,0.574309,0.457093,0.269156,0.340149,0.0566364,0.344726,0.567166,0.604759,0.236953,0.248498,0.32061,0.347178,0.67328,0.953945,0.975441,0.816564,0.0707361,0.492949,0.949566,0.445262,0.825264,0.66433,0.49245,0.0049569,0.948771,0.0253046,0.0492468,0.650301,0.635431,0.404853,0.226434,0.354893,0.0527582,0.205638,0.601692,0.240707,0.156128,0.399271,0.0810826,0.700019,0.827296,0.360859,0.591379,0.128523,0.0165081,0.564884,0.725089,0.812244,0.616334,0.672679,0.332007,0.33247,0.562098,0.258266,0.710872,0.523197,0.716017,0.218583,0.304485,0.717453,0.168523,0.613738,0.478766,0.698364,0.449037,0.592933,0.746424,0.388378,0.447906,0.790422,0.478127,0.955136,0.0973173,0.669509,0.828484,0.675346,0.533016,0.857916,0.333992,0.794599,0.722854,0.954483,0.0500252,0.291691,0.743968,0.812235,0.450809,0.47027,0.734798,0.782939,0.880722,0.873026,0.508954,0.851031,0.429244,0.202261,0.311214,0.279456,0.901234,0.80842,0.731043,0.88871,0.397024,0.176476,0.368124,0.353811,|0.00223982,0.620824,0.28308,0.495596,0.543914,0.0677461,0.0302851,0.907907,0.397389,0.450455,0.76738,0.795981,0.620108,0.849545,0.347308,0.777422,0.926914,0.267513,0.18331,0.867875,0.953049,0.584255,0.339635,0.286863,0.962544,0.296676,0.857912,0.615053,0.933006,0.675267,0.458461,0.60864,0.938282,0.555733,0.069743,0.580527,0.920377,0.975608,0.932076,0.399739,0.501248,0.309699,0.850369,0.0801383,0.105061,0.20233,0.194474,0.622625,0.540405,0.567971,0.235599,0.7608,0.389259,0.545709,0.354606,0.909896,0.202537,0.0751889,0.0239459,0.137315,0.967922,0.252966,0.283187,0.435202,0.162416,0.721432,0.108976,0.0530848,0.823465,0.669498,0.173239,0.596007,0.831845,0.845373,0.761086,0.0783954,0.858232,0.446738,0.789608,0.0774378,0.93514,0.560209,0.71644,0.0311689,0.258452,0.994026,0.770134,0.028071,0.546933,0.302104,0.769301,0.19484,0.67341,0.405003,0.835639,0.0909809,0.70678,0.919783,0.525556,0.681141,0.0509627,0.157251,0.339449,0.0628375,0.930131,0.743034,0.962259,0.231999,0.351025,0.246198,0.770363,0.590566,0.380227,0.0412014,0.91099,0.303308,0.515526,0.543373,0.427883,0.0701824,0.186965,0.626548,0.00876331,0.51136,0.619322,0.513114,0.956573,0.519516,0.576324,0.104041,0.0833949,0.780569,0.178606,0.416884,0.499254,0.103929,0.173087,0.670088,0.7507,0.26748,0.772844,0.956143,0.618546,0.923698,0.930987,0.215072,0.0851472,0.254719,0.968825,0.232429,0.481597,0.0851231,0.641174,0.255268,0.573721,0.695552,0.570716,0.639539,0.994936,0.116041,0.670563,0.239804,0.102927,0.853892,0.0809097,0.283031,0.175083,0.421014,0.945332,0.558148,0.816993,0.634467,0.760636,0.626956,0.648543,0.315177,0.0191169,0.102196,0.374076,0.660721,0.907348,0.475122,0.930735,0.331779,0.200321,0.409495,0.89549,0.836983,0.0436652,0.335953,0.344761,0.37869,0.282897,0.85184,0.1473,0.0188189,0.663619,0.926429,0.567628,0.138045,0.624849,0.607127,0.0609899,0.194348,0.716609,0.0961045,0.626,0.293415,0.825894,0.326834,0.34872,0.336739,0.221962,0.932604,0.927972,0.833839,0.148535,0.367667,0.0350287,0.596388,0.466257,0.384007,0.468722,0.951092,0.417493,0.733002,0.349958,0.0198012,0.279239,0.532582,0.953989,0.0831006,0.0824097,0.82849,0.698557,0.0467942,0.0998697,0.700533,0.66399,0.254885,0.143527,0.846026,0.0753328,0.280117,0.992315,0.736137,0.200308,0.449724,0.350664,0.679331,0.587423,0.569012,0.80276,0.523145,0.398541,0.523573,0.606091,0.293344,0.592897,0.443938,0.822784,0.264296,0.328534,0.516325,0.871252,0.0671334,0.552622,0.038696,0.656688,0.795481,0.351497,0.256695,0.997503,0.984061,0.773946,0.502114,0.619594,0.473918,0.97008,0.931628,0.31954,0.971577,0.483573,0.647185,0.889024,0.310247,0.961067,0.00616378,0.973306,0.543652,0.226378,0.534451,0.724191,0.975663,0.0610443,0.894329,0.227441,0.513655,0.22674,0.718112,0.789809,0.234133,0.944011,0.16461,0.25622,0.780453,0.00504309,0.0227528,0.126846,0.309763,0.444545,0.353901,0.72599,0.684284,0.635313,0.627265,0.306457,0.276676,0.837043,0.921669,0.0633842,0.503148,0.792225,0.546731,0.864934,0.199556,0.668781,0.713993,0.231575,0.434661,0.0594268,0.297507,0.870996,0.0737692,0.683274,0.0317202,0.629265,0.803485,0.85221,0.207699,0.286584,0.317981,0.440215,0.82096,0.257175,0.987778,0.613722,0.32949,0.392524,0.488097,0.469366,0.0900614,0.0164679,0.434322,0.968545,0.908064,0.757894,0.926392,0.302297,0.262567,0.192017,0.583308,0.539958,0.781829,0.436197,0.638902,0.313745,0.756636,0.397878,0.564877,0.769417,0.0443793,0.530208,0.471415,0.155242,0.248551,0.170433,0.0763028,0.0868943,0.323358,0.422083,0.380972,0.726891,0.254781,0.52576,0.324717,0.654313,0.966141,0.816649,0.155272,0.704223,0.979056,0.995401,0.367615,0.775298,0.717055,0.760617,0.542904,0.82597,0.589121,0.587645,0.211384,0.818456,0.064682,0.392742,0.896983,0.415822,0.587868,0.00614685,0.452406,0.685811,0.415722,0.543825,0.537805,0.977073,0.0230907,0.626683,0.57688,0.290095,0.57495,0.785316,0.505565,0.786283,0.114557,0.0335796,0.372556,0.303186,0.805832,0.994469,0.619313,0.819106,0.935863,0.794723,0.669495,0.0999939,0.69909,0.813826,0.937841,0.0538188,0.0905426,0.308454,0.683125,0.347184,0.852237,0.836086,0.991737,0.930451,0.989328,0.353957,0.0342106,0.939543,0.216781,0.338457,0.116699,0.100544,0.273031,0.892108,0.317182,0.44467,0.367506,0.47394,0.806528,0.36871,0.624723,0.710191,0.031397,0.664486,0.176613,0.92427,0.930127,0.875343,0.843808,0.826901,0.114305,0.994568,0.529477,0.374982,0.0484403,0.242938,0.256277,0.56814,0.919089,0.0443304,0.0356727,0.737002,0.872142,0.500266,0.711402,0.902505,0.688015,0.736088,0.986065,0.00652081,0.107726,0.478404,0.571244,0.62462,0.0861667,0.0851683,0.587513,0.933095,0.667768,0.876047,0.839848,0.375545,0.595944,0.794208,0.845792,0.0657215,0.609811,0.701181,0.0803821,0.584042,0.879424,0.769595,0.574779,0.920432,0.23235,0.35952,0.986186,0.00083667,0.402227,0.279457,0.544341,0.127254,0.251483,0.60324,0.235031,0.662139,0.306717,0.167883,0.0660232,0.0258803,0.522595,0.258633,0.713515,0.505371,0.393783,0.64582,0.108067,0.780799,0.594509,0.314502,0.842163,0.933194,0.985074,0.474134,0.0141225,0.958699,0.355529,0.0183104,0.462227,0.577506,0.33316,0.489677,0.907116,0.16765,0.598888,0.0955372,0.184106,0.235401,0.252242,0.0353931,0.740299,0.851958,0.733204,0.920554,0.57309,0.593692,0.231024,0.359565,0.741873,0.432856,0.132331,0.275605,0.692434,0.576321,0.561742,0.623984,0.922487,0.623352,0.742932,0.210816,0.176293,0.751724,0.670174,0.717679,0.807105,0.287666,0.376447,0.997692,0.829901,0.458279,0.78681,0.204953,0.880612,0.980418,0.761611,0.335278,0.859697,0.677844,0.504328,0.289967,0.223257,0.353241,0.403167,0.905636,0.167955,0.579008,0.889298,0.55437,0.920715,0.950366,0.225766,0.536399,0.129641,0.48264,0.139753,0.223606,0.0102895,0.746842,0.437309,0.673343,0.0114412,0.515815,0.087517,0.360692,0.415559,0.161138,0.529459,0.813331,0.611768,0.397579,0.630629,0.955453,0.0314351,0.650942,0.748422,0.783512,0.518596,0.182014,0.36086,0.19611,0.022994,0.875556,0.330209,0.0207748,0.406507,0.840748,0.627371,0.605937,0.709413,0.305881,0.212869,0.802443,0.0741224,0.715761,0.142342,0.403824,0.0512487,0.328665,0.398471,0.892366,0.244846,0.379651,0.182895,0.247496,0.0757251,0.581552,0.606525,0.285756,0.539848,0.693174,0.423788,0.590261,0.363149,0.650338,0.509225,0.132153,0.088006,0.196948,0.715457,0.592091,0.792318,0.474007,0.559553,0.885747,0.871611,0.502561,0.363496,0.172263,0.259982,0.411495,0.722669,0.26519,0.7268,0.543414,0.178163,0.48067,0.861462,0.831948,0.0682892,0.900975,0.493405,0.231852,0.897351,0.823558,0.877923,0.51928,0.377892,0.811173,0.496605,0.385542,0.233002,0.347343,0.882877,0.188137,0.984558,0.103925,0.00236034,0.545154,0.340854,0.123172,0.513879,0.670679,0.91413,0.863144,0.0540929,0.803271,0.794501,0.17839,0.9342,0.451667,0.975633,0.485982,0.143049,0.747833,0.733387,0.115852,0.163284,0.0201213,0.815617,0.942644,0.410438,0.428494,0.57102,0.463811,0.663017,0.510415,0.123603,0.642368,0.464766,0.256717,0.166503,0.951543,0.578678,0.124181,0.756555,0.66656,0.974508,0.517727,0.0796893,0.441914,0.680867,0.836992,0.193352,0.544058,0.538251,0.464382,0.2964,0.629432,0.585704,0.11674,0.210506,0.0202752,0.507692,0.73611,0.721937,0.484346,0.765054,0.11138,0.0526669,0.0911922,0.0711698,0.577441,0.591603,0.786488,0.556286,0.997934,0.554628,0.0746641,0.552411,0.349548,0.618984,0.384395,0.330633,0.654321,0.453496,0.758718,0.366927,0.768096,0.542839,0.826319,0.932303,0.392622,0.913351,0.179922,0.747083,0.57035,0.72002,0.760998,0.751834,0.395489,0.808557,0.209548,0.0830827,0.485016,0.116518,0.0482216,0.129635,0.561791,0.113906,0.0754736,0.670679,0.795813,0.795405,0.177577,0.104771,0.0411961,0.884409,0.0123212,0.528041,0.126026,0.765276,0.919351,0.554646,0.458532,0.512187,0.669518,0.134523,0.76643,0.953657,0.977036,0.772388,0.796277,0.355078,0.328085,0.810885,0.627982,0.740159,0.173159,0.432825,0.69713,0.26882,0.4306,0.364975,0.889263,0.910536,0.19384,0.692674,0.762267,0.14553,0.310097,0.87725,0.987496,0.0876321,0.614349,0.995342,0.791244,0.263633,0.603248,0.713432,0.781424,0.0113019,0.0746052,0.0382211,0.9033,0.860943,0.0306745,0.5238,0.217353,0.00391018,0.633767,0.661436,0.311723,0.51655,0.988518,0.576477,0.911587,0.495727,0.804232,0.818542,0.918152,0.00556839,0.0581041,0.41201,0.125403,0.386038,0.489498,0.906343,0.774584,0.9615,0.687033,0.243921,0.708368,0.555616,0.707277,0.775232,0.353626,0.386435,0.842341,0.893682,0.864629,0.333092,0.78696,0.879798,0.564569,0.98689,0.670975,0.906246,0.576538,0.0560697,0.645397,0.0518061,0.555981,0.0349044,0.0370078,0.875515,0.0818002,0.206815,0.301751,0.597568,0.204736,0.0845272,0.556244,0.465332,0.505785,0.316597,0.819618,0.525563,0.397729,0.770325,0.194558,0.656162,0.692494,0.779024,0.488309,0.44532,0.933613,0.992927,0.507887,0.55796,0.0232247,0.957224,0.658376,0.588757,0.00935102,0.836492,0.446021,0.567281,0.794888,0.895186,0.264043,0.509289,0.966191,0.261119,0.790556,0.666741,0.391439,0.748382,0.451224,0.679815,0.0999998,0.251628,0.00420457,0.273301,0.351648,0.941667,0.0971147,0.742877,0.938957,0.63458,0.170049,0.169978,0.776822,0.115169,0.763273,0.685087,0.473195,0.260781,0.585745,0.561584,0.29206,0.276395,0.478527,0.668715,0.674986,0.248761,0.916569,0.942798,|0.824117,0.801876,0.515608,0.112319,0.855641,0.141939,0.435096,0.876074,0.722797,0.0169222,0.808563,0.384305,0.760068,0.0292395,0.0477291,0.69132,0.269766,0.132781,0.888208,0.747604,0.729104,0.378438,0.46757,0.614347,0.850607,0.87658,0.856308,0.698635,0.576047,0.514775,0.261666,0.566181,0.177685,0.207033,0.355652,0.831543,0.865786,0.191007,0.991576,0.666665,0.283998,0.394891,0.321211,0.321074,0.133978,0.193241,0.271533,0.297957,0.213985,0.591518,0.981806,0.869118,0.755777,0.243155,0.0892926,0.00680602,0.926743,0.0238503,0.908094,0.85058,0.213655,0.529581,0.194883,0.794394,0.394328,0.291284,0.854636,0.248227,0.409367,0.45571,0.905165,0.0941169,0.322422,0.818177,0.590317,0.484876,0.0526665,0.549645,0.0832226,0.738309,0.604956,0.852248,0.639012,0.579585,0.60578,0.214905,0.28194,0.496234,0.915258,0.59078,0.591314,0.744915,0.0310857,0.0711743,0.628043,0.649553,0.0738397,0.816731,0.662421,0.834735,0.489632,0.133512,0.250049,0.833817,0.397261,0.430767,0.878287,0.691398,0.338861,0.476155,0.555135,0.141184,0.154786,0.130685,0.65048,0.16611,0.229075,0.556891,0.777029,0.972655,0.0408881,0.990425,0.637774,0.975658,0.265033,0.0496331,0.374537,0.598503,0.525414,0.642974,0.856067,0.654875,0.586222,0.94645,0.351722,0.73398,0.979204,0.278752,0.404792,0.950275,0.564905,0.716226,0.047244,0.0745943,0.328426,0.485228,0.0354041,0.707009,0.372463,0.784257,0.959324,0.159854,0.0633265,0.467169,0.43094,0.00966716,0.49886,0.777893,0.214025,0.197455,0.466297,0.952554,0.258816,0.0229135,0.645713,0.435208,0.635876,0.920741,0.869131,0.185297,0.761532,0.278719,0.0223887,0.00521058,0.316527,0.957291,0.964781,0.438734,0.231791,0.726916,0.0847891,0.176832,0.233044,0.0264494,0.437513,0.833176,0.650609,0.6055,0.213613,0.537363,0.156449,0.349568,0.237499,0.583073,0.871478,0.0414338,0.563084,0.161062,0.962363,0.871076,0.123098,0.683209,0.978031,0.630297,0.919162,0.715212,0.105228,0.567092,0.022581,0.499113,0.203442,0.713677,0.781946,0.625374,0.0247505,0.332473,0.324798,0.452757,0.826382,0.756256,0.494602,0.387946,0.570572,0.813955,0.241202,0.0931501,0.644392,0.779987,0.846409,0.369983,0.156159,0.252313,0.790348,0.884969,0.960022,0.22033,0.417506,0.128503,0.732254,0.338919,0.0535954,0.41542,0.264996,0.410606,0.577738,0.450527,0.422784,0.604925,0.690675,0.26457,0.928956,0.476048,0.448861,0.721489,0.0519026,0.939625,0.322837,0.456671,0.729815,0.936273,0.170382,0.382411,0.372725,0.025176,0.34266,0.406705,0.051623,0.701737,0.841632,0.940573,0.905727,0.114577,0.0371539,0.0318352,0.629799,0.630208,0.0147148,0.228932,0.771758,0.851237,0.012997,0.932585,0.791477,0.983311,0.249059,0.040962,0.381335,0.60913,0.397339,0.789446,0.11359,0.353196,0.882155,0.157419,0.373631,0.759395,0.917607,0.819204,0.475569,0.401314,0.224862,0.413035,0.00943476,0.691639,0.306565,0.0435486,0.568066,0.0653343,0.0420987,0.619601,0.0454009,0.777504,0.713979,0.840692,0.599044,0.668789,0.162556,0.994679,0.959558,0.273432,0.315395,0.536321,0.799723,0.0591157,0.418374,0.0561967,0.327287,0.0599282,0.62146,0.543698,0.476415,0.851542,0.00222826,0.452678,0.384354,0.925595,0.567901,0.810006,0.23818,0.73868,0.17225,0.645916,0.672311,0.301953,0.280021,0.139404,0.999714,0.155888,0.914167,0.796344,0.113015,0.339488,0.233313,0.258458,0.31919,0.0798375,0.802259,0.678366,0.19375,0.499179,0.641507,0.885727,0.0472948,0.522307,0.777614,0.0184256,0.502314,0.409956,0.111004,0.876422,0.170428,0.398179,0.0976325,0.535772,0.398719,0.103821,0.204457,0.773699,0.958703,0.703688,0.617271,0.622745,0.179772,0.141281,0.416683,0.229117,0.361248,0.909041,0.28783,0.79466,0.869476,0.595706,0.828422,0.520679,0.169069,0.620234,0.684755,0.431865,0.785473,0.410419,0.127794,0.0975736,0.267339,0.10676,0.243934,0.0087347,0.771712,0.194791,0.752758,0.0811154,0.81526,0.240413,0.946519,0.0430519,0.943893,0.0172415,0.0763344,0.122695,0.745553,0.547857,0.436746,0.653956,0.921367,0.734192,0.833809,0.306013,0.0426984,0.379945,0.435413,0.0184456,0.0183482,0.935602,0.739203,0.444606,0.219943,0.920031,0.801718,0.703281,0.367808,0.566936,0.0793372,0.797227,0.995631,0.447085,0.0682808,0.559635,0.419662,0.0834643,0.0306566,0.963314,0.768089,0.351784,0.402697,0.379158,0.390377,0.200773,0.542298,0.736634,0.513419,0.139297,0.0949906,0.160858,0.304336,0.551918,0.642796,0.108602,0.34775,0.0284116,0.41863,0.957162,0.254247,0.183483,0.0941279,0.202613,0.888637,0.67893,0.565071,0.743352,0.125542,0.0684106,0.529653,0.394704,0.195763,0.912636,0.821144,0.41948,0.611509,0.340892,0.247603,0.726073,0.43099,0.669667,0.639462,0.33182,0.969365,0.0375026,0.61402,0.388084,0.294425,0.401981,0.695181,0.17863,0.71274,0.584937,0.280354,0.497045,0.21628,0.6421,0.58397,0.597391,0.54331,0.119977,0.138948,0.931625,0.514909,0.326997,0.622832,0.266476,0.367941,0.668541,0.122854,0.134036,0.695513,0.450945,0.337503,0.296954,0.122526,0.776467,0.836544,0.481784,0.571105,0.423834,0.640848,0.437042,0.680982,0.655445,0.585854,0.134047,0.37485,0.802247,0.237765,0.636186,0.970378,0.626987,0.984673,0.295699,0.0616755,0.889882,0.390403,0.172158,0.0917038,0.841747,0.355827,0.118575,0.820597,0.357444,0.830477,0.49285,0.805329,0.877281,0.249684,0.868814,0.823936,0.668584,0.97248,0.65705,0.419413,0.411666,0.663412,0.759303,0.976601,0.138752,0.892004,0.214967,0.811259,0.631216,0.880841,0.679709,0.553546,0.496701,0.286016,0.312327,0.300354,0.532686,0.106864,0.207413,0.957142,0.552289,0.75503,0.41444,0.0282703,0.778394,0.327307,0.296059,0.436182,0.603402,0.858871,0.772426,0.293228,0.914756,0.162278,0.737939,0.680249,0.122015,0.703879,0.86511,0.211544,0.600523,0.349723,0.339857,0.642468,0.351976,0.669527,0.901516,0.591691,0.945739,0.344398,0.934434,0.866209,0.452907,0.396094,0.449504,0.569744,0.739077,0.767106,0.627782,0.0626657,0.619925,0.366097,0.807556,0.66026,0.387861,0.772401,0.186335,0.922468,0.533369,0.424608,0.50317,0.775798,0.54455,0.643538,0.544844,0.484506,0.298251,0.730549,0.2156,0.459663,0.926916,0.0454552,0.21156,0.970103,0.162238,0.175215,0.405836,0.929521,0.795913,0.00291443,0.0322685,0.924052,0.244882,0.275444,0.40512,0.27148,0.376858,0.538511,0.110566,0.83477,0.745129,0.566958,0.984853,0.893445,0.2614,0.905527,0.776455,0.126087,0.80328,0.0114565,0.525354,0.810408,0.529922,0.63635,0.487711,0.123658,0.989192,0.701176,0.6466,0.444165,0.899282,0.594104,0.634864,0.0950169,0.621175,0.191217,0.776886,0.0542983,0.396671,0.417383,0.903446,0.424917,0.742616,0.333192,0.0762216,0.212865,0.961832,0.218111,0.965779,0.583266,0.188809,0.179654,0.106971,0.50121,0.841626,0.866096,0.0574123,0.626216,0.430637,0.970328,0.11899,0.585477,0.401434,0.542298,0.56587,0.87983,0.788411,0.0262707,0.190086,0.267082,0.751664,0.427609,0.932849,0.816486,0.462256,0.315307,0.538697,0.928741,0.28234,0.489248,0.330784,0.591539,0.250727,0.912123,0.458696,0.570131,0.438945,0.153448,0.785588,0.0950362,0.762688,0.522013,0.00552046,0.417429,0.827844,0.503918,0.318536,0.70563,0.437612,0.332886,0.843259,0.214494,0.779735,0.360698,0.951107,0.491387,0.186635,0.101701,0.909689,0.593291,0.917861,0.175645,0.814858,0.477798,0.741889,0.710637,0.612238,0.714784,0.93828,0.47995,0.644798,0.139977,0.938632,0.237344,0.793004,0.630985,0.679864,0.0637745,0.177294,0.616461,0.981662,0.601972,0.186157,0.915093,0.871358,0.390421,0.469536,0.223721,0.536257,0.91686,0.688421,0.815079,0.756477,0.550569,0.312387,0.0349533,0.3619,0.284467,0.0713363,0.876019,0.94332,0.982799,0.767204,0.647891,0.959733,0.726334,0.434597,0.274097,0.774899,0.581032,0.422788,0.387754,0.684413,0.804658,0.394583,0.686466,0.332689,0.655693,0.883519,0.18007,0.656013,0.602259,0.996285,0.629668,0.574819,0.0668138,0.503654,0.688114,0.39024,0.814342,0.483273,0.624603,0.550007,0.977078,0.766176,0.645101,0.868135,0.0587242,0.71835,0.799196,0.328831,0.941023,0.116487,0.822218,0.661172,0.783478,0.256186,0.845156,0.88149,0.0538086,0.998938,0.811576,0.856556,0.919618,0.201871,0.561583,0.610475,0.579453,0.489514,0.708627,0.0751137,0.961498,0.522104,0.162262,0.908663,0.680136,0.684052,0.0840698,0.423924,0.966211,0.92866,0.390958,0.405728,0.71969,0.164279,0.596654,0.789987,0.214275,0.153203,0.953765,0.216389,0.810194,0.694011,0.709953,0.509118,0.587149,0.155299,0.29154,0.514676,0.679175,0.770149,0.932052,0.117294,0.0161132,0.806853,0.20211,0.618107,0.111455,0.041499,0.536715,0.379986,0.658696,0.715383,0.622396,0.976779,0.842069,0.975106,0.735471,0.996224,0.82289,0.444163,0.18941,0.534314,0.739746,0.861621,0.0806427,0.540808,0.833888,0.326196,0.0189537,0.921977,0.273012,0.577437,0.315569,0.014186,0.94048,0.652637,0.918824,0.694541,0.62593,0.112135,0.493783,0.779102,0.433844,0.195556,0.733454,0.213209,0.625412,0.0706331,0.740782,0.147169,0.380674,0.916056,0.514193,0.822875,0.798166,0.39108,0.113474,0.156483,0.541942,0.394692,0.883568,0.0889652,0.957499,0.793286,0.112158,0.672522,0.997777,0.913645,0.5535,0.121799,0.765333,0.141983,0.923112,0.583044,0.354974,0.0198722,0.466802,0.159817,0.432201,0.679128,0.224638,0.784642,0.281072,0.029229,0.805939,0.0687265,0.85576,0.292513,0.028618,0.532112,0.977625,0.519855,0.41647,0.881447,0.488027,0.983642,0.669583,0.991935,0.509003,0.777169,0.149646,0.960806,|0.948166,0.267832,0.585202,0.734796,0.961218,0.536819,0.908015,0.925694,0.397708,0.661261,0.905553,0.727737,0.753603,0.332911,0.877512,0.690444,0.168437,0.361671,0.740911,0.838131,0.383868,0.802098,0.285542,0.45251,0.433542,0.229057,0.608431,0.317773,0.661712,0.665784,0.423996,0.164658,0.300099,0.887966,0.551622,0.728689,0.177073,0.683797,0.258625,0.913936,0.147497,0.865349,0.284758,0.296105,0.13951,0.231855,0.285411,0.518191,0.137827,0.591038,0.0868769,0.963918,0.263602,0.87849,0.456294,0.964715,0.0208599,0.611459,0.194328,0.153613,0.698565,0.415887,0.846258,0.0406468,0.595427,0.998062,0.595757,0.382449,0.42379,0.462025,0.806213,0.0603571,0.893912,0.12922,0.763057,0.032903,0.380087,0.126531,0.42886,0.579637,0.760204,0.00688505,0.949634,0.403544,0.0548336,0.598556,0.360469,0.617976,0.907605,0.760329,0.622022,0.799023,0.350077,0.0449545,0.172452,0.151495,0.603367,0.31019,0.260393,0.369897,0.663726,0.922646,0.842273,0.18407,0.46029,0.807881,0.749878,0.417275,0.184862,0.210702,0.244835,0.440044,0.964759,0.591586,0.575639,0.9064,0.737617,0.761324,0.301676,0.603312,0.704043,0.315524,0.241513,0.867021,0.330326,0.324368,0.084847,0.247637,0.861194,0.998251,0.472487,0.329407,0.374011,0.644945,0.303951,0.391273,0.0725921,0.152164,0.907253,0.513258,0.426703,0.22953,0.131792,0.4668,0.609074,0.385278,0.461044,0.0742126,0.598946,0.047658,0.386885,0.969279,0.0503898,0.348556,0.758909,0.957562,0.485975,0.613664,0.534407,0.791416,0.735267,0.314051,0.905825,0.70115,0.313463,0.262719,0.84134,0.868288,0.736826,0.307721,0.44367,0.392682,0.535311,0.679542,0.453083,0.685558,0.788975,0.125731,0.373219,0.813428,0.774808,0.31065,0.559329,0.202857,0.846325,0.444125,0.335068,0.320444,0.864241,0.743477,0.843216,0.183216,0.904077,0.538808,0.23133,0.472454,0.845297,0.727421,0.910504,0.222037,0.236847,0.159597,0.153385,0.0540714,0.544431,0.514651,0.538971,0.151413,0.00891739,0.0296746,0.959719,0.0345284,0.42347,0.466226,0.679699,0.983235,0.971023,0.103566,0.539704,0.0106809,0.802736,0.803986,0.496306,0.535212,0.320011,0.0221838,0.455035,0.255422,0.674805,0.112539,0.459377,0.177067,0.588972,0.581718,0.615317,0.144319,0.416553,0.627924,0.922343,0.627242,0.648288,0.304321,0.800963,0.050783,0.991927,0.161782,0.488995,0.143414,0.234482,0.476616,0.441139,0.64966,0.50217,0.802857,0.716484,0.0727257,0.525235,0.785882,0.787023,0.655385,0.582361,0.447285,0.227021,0.966803,0.708745,0.473708,0.983,0.0130744,0.864869,0.657336,0.434599,0.116778,0.272874,0.72385,0.895981,0.328032,0.479914,0.132615,0.459524,0.509801,0.626883,0.0916744,0.0201609,0.336197,0.00560743,0.095865,0.682936,0.773199,0.71624,0.739428,0.572505,0.646212,0.123242,0.579074,0.0977464,0.179168,0.599743,0.434843,0.617773,0.271547,0.470888,0.578482,0.23237,0.483665,0.722391,0.305114,0.773213,0.84972,0.115924,0.0514498,0.625792,0.338371,0.585947,0.220928,0.701556,0.268498,0.54078,0.423415,0.800668,0.19545,0.448998,0.38882,0.241916,0.749603,0.102456,0.972957,0.124809,0.50992,0.131215,0.937518,0.0876194,0.764247,0.189374,0.166641,0.797726,0.588724,0.691611,0.29766,0.0644688,0.881873,0.870162,0.30393,0.872682,0.576887,0.926463,0.297468,0.952573,0.843775,0.742409,0.128771,0.994193,0.357003,0.170533,0.421898,0.977869,0.118198,0.685696,0.465082,0.840287,0.783109,0.519726,0.631759,0.0771383,0.918014,0.0190484,0.853861,0.524078,0.620594,0.935259,0.320683,0.268115,0.662605,0.209432,0.437784,0.712603,0.771996,0.865039,0.804786,0.900152,0.336152,0.847982,0.809488,0.577146,0.779119,0.10782,0.779546,0.947675,0.612844,0.188758,0.0845305,0.942335,0.874292,0.922649,0.233942,0.0567814,0.460578,0.581506,0.0761817,0.506155,0.318729,0.921641,0.498439,0.142594,0.284713,0.219796,0.466499,0.898179,0.113731,0.850826,0.308218,0.921463,0.176871,0.431606,0.0683197,0.588438,0.505562,0.479554,0.95314,0.77168,0.585542,0.965022,0.141024,0.815987,0.775584,0.833421,0.763942,0.239532,0.824601,0.148458,0.776504,0.882689,0.462599,0.711631,0.66708,0.842712,0.936958,0.782864,0.29158,0.0447185,0.817228,0.900539,0.342199,0.0247431,0.141147,0.206101,0.0771987,0.671092,0.233232,0.0196472,0.513345,0.989554,0.955114,0.0124534,0.194513,0.691241,0.552753,0.292776,0.402843,0.36504,0.140029,0.703059,0.741664,0.869648,0.999688,0.158514,0.996784,0.79016,0.108823,0.15884,0.177567,0.715358,0.889951,0.91294,0.0189978,0.623862,0.75439,0.0916451,0.790239,0.516147,0.360991,0.044354,0.881859,0.258783,0.395484,0.762852,0.76706,0.484162,0.335293,0.470272,0.265203,0.0655955,0.801305,0.0273005,0.355284,0.04583,0.432768,0.391797,0.928978,0.222054,0.666684,0.905197,0.221857,0.564777,0.116397,0.945837,0.24421,0.0513424,0.696512,0.115692,0.312559,0.233706,0.323235,0.336163,0.115792,0.371703,0.814797,0.344128,0.72872,0.979221,0.578616,0.472032,0.645593,0.514129,0.672613,0.234965,0.267835,0.121078,0.787888,0.619684,0.245895,0.824929,0.576286,0.933823,0.812163,0.248132,0.498212,0.848772,0.840517,0.396563,0.125357,0.662404,0.621391,0.199707,0.616795,0.839904,0.765748,0.633544,0.189943,0.666223,0.959177,0.881657,0.0173844,0.0906857,0.445665,0.287001,0.713604,0.102401,0.752557,0.423419,0.225169,0.787865,0.344209,0.787913,0.820204,0.582073,0.315682,0.972767,0.929518,0.260547,0.921215,0.434948,0.602559,0.728542,0.238433,0.81782,0.183553,0.89191,0.898537,0.969802,0.87115,0.675522,0.97731,0.065208,0.92661,0.206591,0.474938,0.856442,0.0456415,0.343142,0.627256,0.898641,0.806143,0.49087,0.355147,0.798513,0.997843,0.765888,0.928594,0.535127,0.0163397,0.242524,0.808988,0.649863,0.217067,0.356039,0.777511,0.29787,0.26099,0.872955,0.127486,0.10751,0.635561,0.787808,0.301834,0.690101,0.357931,0.6351,0.839341,0.205296,0.984743,0.162948,0.255278,0.794071,0.862731,0.895146,0.818375,0.415587,0.644808,0.700029,0.147508,0.300102,0.752062,0.199366,0.680995,0.587559,0.857403,0.889406,0.546653,0.216776,0.580467,0.109386,0.802693,0.950283,0.509782,0.446478,0.924025,0.535607,0.342693,0.405346,0.743551,0.276558,0.786866,0.0809053,0.980979,0.422644,0.710794,0.511405,0.957338,0.583642,0.68115,0.137691,0.589272,0.496228,0.877736,0.976682,0.859401,0.327682,0.793232,0.0860621,0.592754,0.769383,0.843668,0.410744,0.563318,0.306533,0.0815784,0.0766453,0.118079,0.121604,0.365572,0.523105,0.589919,0.792255,0.712868,0.307574,0.51998,0.346838,0.868549,0.850326,0.878495,0.32722,0.447839,0.555721,0.86617,0.19338,0.402062,0.477547,0.77287,0.308871,0.401002,0.535422,0.107937,0.971973,0.443289,0.00755954,0.646429,0.596389,0.572391,0.253016,0.335455,0.219318,0.0170229,0.506873,0.898441,0.726837,0.190467,0.608701,0.888755,0.995417,0.596994,0.627894,0.646456,0.0227272,0.56697,0.764294,0.387989,0.204277,0.382067,0.339921,0.73152,0.382685,0.457914,0.628667,0.389508,0.588344,0.805855,0.515192,0.340766,0.0031023,0.487866,0.13817,0.64769,0.307586,0.584622,0.154101,0.9404,0.394786,0.426953,0.789461,0.0837563,0.688928,0.623316,0.858371,0.0838718,0.584678,0.543605,0.961848,0.483657,0.0969858,0.902955,0.311707,0.215233,0.464905,0.72079,0.58858,0.601084,0.646824,0.744037,0.945793,0.146822,0.527448,0.737718,0.344018,0.0609173,0.555244,0.292207,0.492749,0.515197,0.807691,0.801207,0.605229,0.343933,0.226779,0.420147,0.958883,0.157882,0.282025,0.126988,0.788506,0.0538967,0.520766,0.237259,0.77661,0.954625,0.677987,0.229735,0.239756,0.0121506,0.245579,0.149691,0.37669,0.146676,0.657022,0.380211,0.149687,0.69909,0.832278,0.0923523,0.536392,0.849323,0.459248,0.859455,0.827455,0.684336,0.158785,0.426069,0.835469,0.769691,0.0376425,0.943005,0.707458,0.635389,0.638476,0.116843,0.411361,0.444034,0.738307,0.391055,0.122968,0.890135,0.166836,0.975481,0.0614461,0.984325,0.00229031,0.0929881,0.421409,0.250607,0.633849,0.310426,0.478963,0.861357,0.631647,0.43561,0.9399,0.0377782,0.216854,0.478128,0.907927,0.125345,0.559338,0.458668,0.241031,0.0437123,0.496864,0.74207,0.194724,0.742291,0.156071,0.0420273,0.0277199,0.3921,0.19667,0.487658,0.546215,0.845383,0.727233,0.985723,0.0733404,0.271192,0.997039,0.806934,0.673394,0.73988,0.70215,0.793905,0.805494,0.110316,0.573223,0.909518,0.945561,0.431106,0.763888,0.698499,0.80012,0.0985448,0.516891,0.30111,0.850464,0.512922,0.244935,0.328339,0.506077,0.351787,0.38304,0.186562,0.894452,0.44908,0.866983,0.87214,0.729532,0.148538,0.402054,0.0914065,0.173884,0.675703,0.163325,0.811868,0.227567,0.74887,0.0466298,0.644993,0.404921,0.383579,0.14856,0.395301,0.544358,0.178501,0.799817,0.358787,0.86949,0.675578,0.336738,0.695676,0.809042,0.538484,0.0233274,0.136388,0.518995,0.795221,0.0671635,0.507672,0.948427,0.554343,0.46174,0.0455694,0.241552,0.997174,0.60415,0.0229102,0.0811433,0.946581,0.958881,0.369413,0.71582,0.277994,0.247091,0.81688,0.0849225,0.957381,0.63906,0.653441,0.441497,0.186754,0.731503,0.215181,0.737764,0.597988,0.0240178,0.0898665,0.288192,0.557685,0.598985,0.435451,0.451295,0.905163,0.155067,0.705155,0.751385,0.3239,0.843019,0.425331,0.698755,0.771157,0.881282,0.839606,0.0471259,0.924414,0.456255,0.425624,0.340384,0.501806,0.523665,0.168258,0.307335,0.109467,0.459443,0.585942,0.15867,0.745885,0.365528,0.158736,0.318386,0.234272,0.722383,0.961967,0.0352973,0.600478,0.393545,0.554593,|0.308558,0.863651,0.13115,0.729126,0.808334,0.0535118,0.0223132,0.66303,0.0976253,0.461442,0.415728,0.829993,0.750407,0.319264,0.382553,0.756993,0.551167,0.283304,0.525879,0.971085,0.726549,0.188473,0.295834,0.018469,0.539113,0.888235,0.852451,0.166033,0.370013,0.53524,0.226636,0.306137,0.802933,0.93309,0.26127,0.215238,0.308989,0.231586,0.5943,0.665224,0.33185,0.361114,0.355311,0.41073,0.507806,0.633748,0.116533,0.564831,0.45544,0.899663,0.856155,0.581254,0.398182,0.744389,0.914883,0.218604,0.308426,0.428206,0.899576,0.80378,0.166735,0.97095,0.759287,0.686848,0.587934,0.490738,0.477375,0.207763,0.862182,0.120107,0.0375977,0.356919,0.632475,0.236845,0.458568,0.00367904,0.423296,0.00953966,0.598646,0.0309459,0.13806,0.421664,0.623937,0.201825,0.67114,0.90976,0.990993,0.330594,0.990044,0.130766,0.556021,0.69081,0.741577,0.172512,0.570948,0.144537,0.499837,0.777032,0.50735,0.0164711,0.608488,0.86457,0.77873,0.402824,0.122957,0.617098,0.480632,0.261168,0.259321,0.981621,0.781481,0.24466,0.329952,0.759924,0.870116,0.0374663,0.332604,0.624831,0.213154,0.516778,0.811618,0.648835,0.052007,0.443413,0.424511,0.415081,0.044787,0.755762,0.862574,0.94694,0.616298,0.777869,0.764673,0.700087,0.118245,0.991843,0.598776,0.958811,0.274941,0.723682,0.690772,0.248531,0.970562,0.945717,0.158475,0.370886,0.476898,0.502503,0.703449,0.157946,0.698269,0.661189,0.776076,0.74121,0.39083,0.868695,0.0598952,0.542733,0.85977,0.191757,0.0754225,0.314935,0.918031,0.225754,0.569558,0.875008,0.0159307,0.823892,0.397067,0.800265,0.445712,0.442483,0.127129,0.720414,0.251411,0.179822,0.302254,0.880292,0.277499,0.733366,0.0604553,0.24377,0.908719,0.626876,0.685191,0.530454,0.846605,0.0907924,0.572244,0.948675,0.96278,0.176719,0.493192,0.535649,0.250339,0.0848058,0.0240052,0.329314,0.900573,0.283166,0.371025,0.985711,0.419842,0.782576,0.573196,0.701129,0.796017,0.44432,0.18131,0.488842,0.95074,0.269363,0.548472,0.279731,0.252578,0.0893774,0.574274,0.646156,0.00559342,0.206168,0.243595,0.599301,0.99867,0.136789,0.653839,0.533518,0.197035,0.214124,0.878284,0.831285,0.33911,0.221077,0.166137,0.603375,0.926876,0.929577,0.911038,0.0441262,0.311549,0.936999,0.108631,0.444388,0.934225,0.87413,0.176934,0.656727,0.802625,0.169524,0.164551,0.612954,0.333516,0.284737,0.760083,0.714143,0.931811,0.77649,0.442629,0.0346569,0.480027,0.921887,0.506632,0.216437,0.142372,0.611313,0.867159,0.86906,0.802916,0.583119,0.103973,0.418509,0.446929,0.720166,0.854779,0.837371,0.189613,0.900766,0.445074,0.527092,0.668841,0.44538,0.722568,0.833047,0.172852,0.903087,0.042811,0.844651,0.683855,0.119963,0.795575,0.879284,0.376869,0.196546,0.265053,0.618858,0.568708,0.499665,0.223551,0.651331,0.346433,0.381544,0.500264,0.339101,0.197277,0.0230561,0.288223,0.903558,0.134774,0.970726,0.924156,0.188629,0.240566,0.222557,0.946455,0.613758,0.0712352,0.163784,0.163998,0.619385,0.652588,0.659318,0.788341,0.451924,0.324796,0.194681,0.0110536,0.865526,0.731394,0.929113,0.834221,0.0512988,0.243596,0.0414834,0.456591,0.827748,0.888942,0.689422,0.425303,0.430928,0.684744,0.647304,0.725151,0.0303257,0.302807,0.484694,0.377377,0.97296,0.0500868,0.742171,0.611552,0.990293,0.451249,0.0258616,0.49177,0.676673,0.0924265,0.704953,0.270034,0.346829,0.0662817,0.116957,0.27511,0.746338,0.754446,0.198292,0.637721,0.281315,0.706303,0.296842,0.750323,0.728528,0.809389,0.701187,0.0058223,0.957874,0.595943,0.397944,0.140665,0.20691,0.209525,0.177051,0.506133,0.601728,0.736017,0.704787,0.706315,0.383855,0.899224,0.419063,0.439353,0.0108289,0.903166,0.0666232,0.983973,0.707793,0.041656,0.795802,0.918585,0.436311,0.83406,0.925435,0.0138752,0.12383,0.317712,0.139138,0.962326,0.0810679,0.0614832,0.705056,0.531159,0.46522,0.348226,0.461284,0.144707,0.951883,0.885046,0.558657,0.940513,0.0698877,0.35528,0.668282,0.803837,0.31636,0.912609,0.551846,0.327811,0.895349,0.120102,0.297047,0.710913,0.810309,0.183531,0.398819,0.265476,0.80362,0.982261,0.0197452,0.384008,0.0351296,0.516425,0.276698,0.857441,0.187031,0.297924,0.357714,0.233889,0.999414,0.492274,0.593208,0.298793,0.9879,0.181347,0.674184,0.479612,0.379675,0.641869,0.915928,0.400516,0.381644,0.142417,0.399473,0.886134,0.881243,0.538375,0.0546593,0.301371,0.663659,0.367249,0.42479,0.0179641,0.813481,0.0706154,0.0674814,0.529428,0.0221545,0.908051,0.243029,0.222034,0.79076,0.931598,0.654653,0.074145,0.738075,0.261387,0.644919,0.0810012,0.896902,0.271504,0.303204,0.582254,0.665309,0.560815,0.349468,0.760702,0.456785,0.530083,0.407446,0.0970761,0.0113314,0.988305,0.686407,0.0491415,0.998412,0.802289,0.039978,0.363964,0.898314,0.508752,0.377094,0.796961,0.447603,0.831288,0.402113,0.430665,0.842557,0.928829,0.18347,0.884962,0.83057,0.93143,0.729426,0.165442,0.3192,0.842165,0.821764,0.804622,0.328386,0.979526,0.554391,0.562068,0.190671,0.446353,0.493915,0.405006,0.57637,0.813595,0.580944,0.0754431,0.88471,0.335228,0.799368,0.534858,0.658101,0.0508961,0.665126,0.854638,0.230926,0.213335,0.861399,0.18942,0.0602778,0.426612,0.754441,0.734986,0.152214,0.838316,0.77453,0.688877,0.385994,0.049002,0.0979384,0.742953,0.0171494,0.263016,0.834917,0.265986,0.6979,0.368556,0.604618,0.315095,0.763502,0.497069,0.366519,0.118218,0.897202,0.476238,0.0127882,0.537157,0.0177526,0.71404,0.172819,0.500504,0.780117,0.213399,0.644861,0.00204009,0.487381,0.00931972,0.774206,0.482957,0.696291,0.278255,0.532759,0.938852,0.252725,0.317806,0.100673,0.18747,0.263462,0.166539,0.774303,0.119628,0.48847,0.256288,0.363045,0.143646,0.789185,0.495931,0.0373759,0.967773,0.653269,0.616882,0.808638,0.415833,0.268061,0.558906,0.147289,0.0410671,0.159637,0.715551,0.166188,0.299236,0.657885,0.695837,0.9045,0.0884739,0.800782,0.978583,0.94858,0.421277,0.891046,0.863539,0.216706,0.0517917,0.486473,0.766623,0.15314,0.700146,0.415232,0.479254,0.863147,0.838423,0.145663,0.500498,0.785589,0.400491,0.620216,0.000416279,0.640745,0.352567,0.604326,0.123403,0.66722,0.85828,0.549507,0.031529,0.297415,0.64914,0.017462,0.40653,0.235419,0.294623,0.218603,0.159258,0.265847,0.0279244,0.693409,0.0712261,0.21747,0.593099,0.721378,0.383627,0.567836,0.161501,0.310471,0.451787,0.425641,0.891656,0.507889,0.264751,0.443109,0.852243,0.0109833,0.541072,0.537813,0.0623194,0.837875,0.556976,0.629458,0.189576,0.870283,0.187091,0.965446,0.358534,0.824348,0.0270156,0.326229,0.245082,0.882521,0.760027,0.908868,0.220618,0.73099,0.951697,0.824584,0.234118,0.577345,0.0547435,0.841384,0.825422,0.499114,0.325656,0.942984,0.482749,0.891938,0.316507,0.398152,0.533086,0.852047,0.726873,0.169945,0.0315453,0.64446,0.0757071,0.200083,0.103597,0.270372,0.0646625,0.96792,0.169984,0.587097,0.219378,0.377935,0.338443,0.174931,0.26823,0.260883,0.242324,0.0505615,0.881285,0.764748,0.915052,0.358728,0.519958,0.592224,0.0377944,0.712513,0.304522,0.397086,0.689234,0.563731,0.488144,0.700066,0.928783,0.337236,0.427975,0.819843,0.916645,0.458693,0.437102,0.864922,0.395566,0.368418,0.753634,0.584763,0.223316,0.707391,0.100002,0.69351,0.919468,0.894417,0.166263,0.0284481,0.176612,0.468051,0.515945,0.41102,0.415072,0.0685021,0.251554,0.43647,0.429177,0.300354,0.333835,0.728411,0.266613,0.335616,0.586926,0.392984,0.418426,0.0343835,0.83202,0.515858,0.435991,0.0163643,0.227174,0.923061,0.967111,0.603459,0.827254,0.134529,0.946543,0.201766,0.3111,0.83423,0.125166,0.218079,0.0608533,0.321836,0.0118409,0.212838,0.740604,0.364215,0.566988,0.984551,0.481459,0.142662,0.380298,0.714568,0.545057,0.416424,0.436506,0.495917,0.940556,0.829124,0.509901,0.0511516,0.918991,0.809802,0.827629,0.518385,0.77573,0.302573,0.447489,0.93715,0.0299944,0.062736,0.950996,0.0958583,0.480033,0.352462,0.842601,0.16667,0.334114,0.565749,0.811294,0.178219,0.109787,0.261095,0.160984,0.714298,0.807804,0.257275,0.00589538,0.258758,0.12628,0.0135447,0.616732,0.0444464,0.177435,0.509639,0.245062,0.652396,0.869902,0.765304,0.042806,0.348829,0.481442,0.0412777,0.0253793,0.613099,0.759287,0.144018,0.445188,0.963663,0.114286,0.00697917,0.244495,0.334619,0.875194,0.321246,0.246628,0.357736,0.29333,0.684181,0.696457,0.577399,0.219868,0.233075,0.576071,0.112757,0.0768384,0.719426,0.00527954,0.794884,0.844952,0.744308,0.265445,0.701852,0.135711,0.277551,0.372366,0.555879,0.686061,0.631644,0.14658,0.984554,0.0322949,0.191549,0.582941,0.878177,0.0640056,0.0724185,0.254368,0.847662,0.279796,0.652435,0.348318,0.0877539,0.425495,0.300855,0.580303,0.575276,0.272967,0.146743,0.880612,0.446923,0.13282,0.481244,0.236807,0.269066,0.633849,0.648848,0.398684,0.693715,0.341621,0.136613,0.185217,0.900131,0.0669171,0.0351388,0.125732,0.597828,0.306678,0.913933,0.70032,0.91292,0.00219607,0.6692,0.287934,0.910355,0.830165,0.0875984,0.0721079,0.461067,0.355264,0.223489,0.463473,0.502167,0.340616,0.152219,0.977757,0.63059,0.0508993,0.594665,0.295001,0.322024,0.195961,0.792349,0.15621,0.641959,0.532687,0.423211,0.789143,0.757994,0.603931,0.264857,0.34148,0.422496,0.541294,0.933985,0.217243,0.502205,0.342628,0.700264,0.929115,0.83472,0.370139,0.61802,0.987252,0.803154,0.874544,0.84083,0.0617318,0.50446,0.124733,0.852841,0.0745578,0.0293893,0.161776,0.432803,|0.192541,0.0638928,0.779375,0.658215,0.905287,0.4669,0.45833,0.204542,0.697929,0.783269,0.523669,0.283744,0.754862,0.336035,0.702905,0.750117,0.550613,0.0936683,0.247173,0.0720962,0.441359,0.654438,0.0629032,0.12618,0.212517,0.389104,0.198011,0.841446,0.352359,0.816517,0.979331,0.986511,0.971549,0.477904,0.152552,0.0368239,0.284653,0.257017,0.480465,0.377494,0.514952,0.941455,0.507052,0.895479,0.865807,0.683221,0.737384,0.0615779,0.173826,0.122906,0.375294,0.421614,0.606099,0.629367,0.705775,0.77011,0.293637,0.29603,0.485589,0.100552,0.426573,0.147412,0.0661367,0.820153,0.520775,0.228827,0.726924,0.302384,0.0867056,0.171005,0.823903,0.521949,0.502243,0.809456,0.728007,0.57726,0.349417,0.273605,0.840247,0.194353,0.130271,0.824638,0.13089,0.959323,0.690754,0.119376,0.840417,0.363497,0.705049,0.519835,0.668827,0.432509,0.526098,0.0278162,0.657714,0.5034,0.521916,0.886038,0.261701,0.753038,0.302046,0.811932,0.233604,0.503427,0.720964,0.911054,0.0507228,0.425112,0.219642,0.578911,0.53152,0.104596,0.754533,0.283235,0.965921,0.969774,0.664173,0.0556804,0.56245,0.834895,0.477189,0.494446,0.545035,0.94659,0.922986,0.59617,0.221636,0.420012,0.884524,0.0436207,0.710231,0.406081,0.630485,0.817788,0.52254,0.624009,0.437408,0.134202,0.443466,0.0839251,0.963032,0.699667,0.218149,0.533238,0.0303535,0.859279,0.0118667,0.693663,0.207173,0.0971484,0.807663,0.998702,0.556936,0.0188584,0.982767,0.352392,0.218975,0.151285,0.0229537,0.547215,0.945865,0.132335,0.905589,0.269012,0.343338,0.670411,0.875854,0.688827,0.243738,0.221611,0.535688,0.0171806,0.477212,0.879014,0.884575,0.752167,0.153145,0.42733,0.0180487,0.544293,0.60511,0.639638,0.160207,0.000940561,0.159333,0.416446,0.535514,0.17576,0.454269,0.056567,0.733162,0.50824,0.930445,0.190318,0.550958,0.794049,0.334368,0.131108,0.707725,0.263046,0.606439,0.901166,0.708427,0.266768,0.135002,0.71721,0.990122,0.714298,0.699187,0.0347784,0.38664,0.843085,0.238425,0.550582,0.832626,0.699493,0.903387,0.741109,0.00837874,0.591022,0.231275,0.225709,0.486463,0.234456,0.756746,0.827577,0.40835,0.032174,0.681199,0.19688,0.767357,0.105163,0.750594,0.963307,0.995436,0.744969,0.497924,0.946497,0.369716,0.207311,0.612732,0.141907,0.04589,0.376239,0.71775,0.256227,0.859976,0.362319,0.0685608,0.696659,0.364906,0.463334,0.284035,0.55591,0.550956,0.0178506,0.260249,0.0052731,0.217576,0.902948,0.638542,0.57964,0.0840423,0.380094,0.974081,0.11901,0.328476,0.375578,0.283146,0.785601,0.286861,0.276812,0.0836384,0.231085,0.714968,0.102249,0.314815,0.214062,0.273739,0.431383,0.783508,0.273186,0.819749,0.388421,0.503439,0.984975,0.263907,0.66999,0.150799,0.66231,0.188605,0.902181,0.987604,0.879709,0.773316,0.729179,0.645644,0.388631,0.661677,0.742866,0.693761,0.184317,0.696789,0.81939,0.120293,0.4905,0.980551,0.973838,0.606516,0.242237,0.631534,0.635937,0.889927,0.80338,0.108576,0.920397,0.736816,0.39695,0.454654,0.621739,0.560642,0.515122,0.130747,0.252249,0.168496,0.561784,0.148744,0.821453,0.174354,0.968864,0.863811,0.524187,0.0778906,0.529033,0.883518,0.628471,0.058907,0.468358,0.701154,0.221196,0.151013,0.561087,0.531948,0.549327,0.598709,0.17805,0.406935,0.335522,0.689207,0.37937,0.454791,0.229381,0.0120105,0.146263,0.630841,0.0856466,0.475763,0.289388,0.527134,0.654837,0.995332,0.849183,0.574485,0.583573,0.758256,0.854797,0.978777,0.260846,0.140726,0.0524872,0.0687532,0.782069,0.980772,0.848013,0.902803,0.802195,0.127062,0.376765,0.0154538,0.550881,0.272658,0.857522,0.41437,0.178964,0.24311,0.0500989,0.466558,0.771553,0.222587,0.797825,0.529454,0.829082,0.205859,0.388654,0.530696,0.415451,0.894328,0.11328,0.0513365,0.203745,0.87218,0.89584,0.851036,0.930013,0.764701,0.97753,0.215691,0.46517,0.734043,0.323336,0.839131,0.0404707,0.948251,0.683028,0.657374,0.441525,0.289267,0.646965,0.11456,0.331026,0.633665,0.513494,0.383082,0.984822,0.350479,0.627225,0.508542,0.34437,0.985054,0.883878,0.891138,0.65176,0.384927,0.433893,0.411045,0.678461,0.0457249,0.372689,0.415148,0.34133,0.419491,0.971845,0.602249,0.816695,0.745752,0.52974,0.281697,0.732388,0.770496,0.666395,0.503548,0.479941,0.584879,0.198725,0.113658,0.70724,0.882364,0.960928,0.460738,0.576127,0.363967,0.756341,0.69899,0.936161,0.693268,0.30924,0.591054,0.361467,0.561999,0.757163,0.427847,0.172495,0.00754124,0.348619,0.972518,0.0564864,0.422888,0.305644,0.553833,0.0375149,0.642713,0.578718,0.0272095,0.265721,0.0808906,0.953482,0.882741,0.819264,0.0323809,0.673119,0.768819,0.337743,0.0062741,0.845496,0.619501,0.565347,0.421497,0.279902,0.343334,0.158056,0.868993,0.194263,0.0528873,0.806577,0.461357,0.432737,0.0212708,0.12119,0.0345276,0.0345218,0.620216,0.266007,0.0478253,0.797914,0.22606,0.387804,0.63777,0.434736,0.301508,0.0331733,0.66023,0.676839,0.414845,0.593045,0.770894,0.677101,0.297099,0.000280678,0.42418,0.476087,0.612294,0.679383,0.0912511,0.567752,0.443812,0.544705,0.353143,0.174553,0.112952,0.665263,0.0829356,0.454454,0.0758072,0.0491652,0.277827,0.0692264,0.6696,0.875077,0.410866,0.699881,0.573052,0.04481,0.812507,0.795656,0.443948,0.801493,0.933317,0.700092,0.0239665,0.0294018,0.567452,0.294281,0.527626,0.530312,0.268776,0.358757,0.959479,0.447514,0.417655,0.67392,0.817195,0.0882615,0.404608,0.043142,0.0209853,0.246504,0.532153,0.381676,0.725503,0.56516,0.44346,0.549376,0.00893438,0.127571,0.184856,0.939189,0.326411,0.116544,0.943612,0.433063,0.357381,0.246147,0.701197,0.480974,0.274361,0.932676,0.0988342,0.958303,0.719054,0.805376,0.779005,0.129152,0.300706,0.937726,0.0820678,0.0180212,0.930156,0.71769,0.190078,0.51948,0.458376,0.896537,0.662095,0.663604,0.20553,0.336276,0.66499,0.385358,0.401071,0.262138,0.60203,0.746033,0.0461684,0.319142,0.252516,0.106108,0.251134,0.528043,0.178046,0.992704,0.951557,0.845989,0.956002,0.998,0.0375515,0.803342,0.283364,0.160828,0.694216,0.827762,0.0434579,0.0703257,0.25921,0.536258,0.602075,0.0755691,0.193668,0.219201,0.980282,0.514476,0.635047,0.992142,0.744741,0.615758,0.746757,0.54103,0.629541,0.813238,0.348344,0.937398,0.835196,0.797514,0.581616,0.493249,0.900706,0.65232,0.69504,0.251397,0.996966,0.0237126,0.175646,0.438287,0.904554,0.117191,0.791822,0.236138,0.804949,0.361582,0.766029,0.974028,0.117866,0.241464,0.835677,0.403054,0.0638596,0.909023,0.629036,0.576881,0.121158,0.602539,0.62604,0.710188,0.494247,0.973222,0.970735,0.362021,0.244444,0.923007,0.0976776,0.524592,0.862711,0.0149167,0.725798,0.471456,0.78618,0.851719,0.672567,0.210466,0.678123,0.147911,0.687785,0.687388,0.428251,0.958134,0.166811,0.889273,0.806438,0.237758,0.27367,0.0940597,0.0376426,0.694529,0.714677,0.905928,0.948729,0.539548,0.212296,0.981535,0.607868,0.922612,0.218006,0.52103,0.4461,0.252597,0.536181,0.704609,0.902962,0.473949,0.928279,0.886272,0.246042,0.738343,0.0781438,0.961101,0.675812,0.468109,0.330166,0.971152,0.055362,0.00814432,0.314732,0.0828947,0.633802,0.406206,0.195786,0.475095,0.688437,0.374144,0.896102,0.130471,0.0954506,0.584991,0.454327,0.217378,0.270464,0.73289,0.0283363,0.442695,0.109506,0.967244,0.570068,0.0555104,0.0337818,0.590764,0.939678,0.28144,0.0262418,0.702505,0.395171,0.922704,0.17858,0.652445,0.763311,0.974351,0.132292,0.694983,0.673985,0.893715,0.120751,0.263622,0.729431,0.950339,0.275527,0.287429,0.05425,0.76352,0.299381,0.881683,0.371909,0.625885,0.457624,0.410054,0.531445,0.695495,0.819852,0.879903,0.698493,0.483778,0.163303,0.650784,0.577808,0.285507,0.458949,0.821699,0.357602,0.655541,0.938606,0.761808,0.943493,0.964942,0.248692,0.441543,0.118863,0.441305,0.381487,0.342128,0.88467,0.0776515,0.32803,0.704115,0.339747,0.00143081,0.949597,0.342766,0.480289,0.740678,0.524815,0.101607,0.169108,0.977775,0.324931,0.180106,0.610522,0.413158,0.791596,0.0332319,0.0133646,0.802111,0.773425,0.296945,0.829446,0.779753,0.80895,0.225947,0.649034,0.313259,0.665254,0.655948,0.976966,0.566168,0.891576,0.615255,0.785489,0.0813234,0.498609,0.153137,0.082841,0.238217,0.884297,0.22769,0.220978,0.795861,0.830623,0.267846,0.658322,0.638173,0.819557,0.308008,0.927224,0.712773,0.810665,0.136602,0.245857,0.894839,0.12439,0.973862,0.557878,0.309926,0.060538,0.603292,0.540437,0.942832,0.590908,0.803567,0.141895,0.696244,0.625336,0.0883394,0.862175,0.517436,0.665915,0.808089,0.9026,0.0881696,0.886246,0.919856,0.620584,0.093236,0.213075,0.388013,0.484831,0.904579,0.680727,0.325352,0.995256,0.620727,0.724864,0.821901,0.905853,0.307596,0.123924,0.963301,0.276662,0.165758,0.156922,0.260304,0.482309,0.587612,0.232564,0.474438,0.224978,0.662311,0.0698049,0.329639,0.152746,0.116876,0.185701,0.110745,0.853391,0.654186,0.140723,0.235175,0.446584,0.417663,0.180741,0.773131,0.258689,0.308385,0.910149,0.349629,0.850251,0.386918,0.343965,0.923873,0.732805,0.291106,0.828962,0.749415,0.526875,0.20832,0.33319,0.304742,0.919303,0.336544,0.334531,0.509981,0.790028,0.32589,0.921306,0.671871,0.628289,0.785861,0.535678,0.00211072,0.0918474,0.535995,0.0240771,0.915118,0.157123,0.461006,0.0617502,0.364091,0.973405,0.713604,0.135427,0.655436,0.804397,0.547375,0.644296,0.4094,0.919936,0.0450726,0.819736,0.520386,0.615134,0.761202,0.664084,0.219965,0.907464,0.151665,|0.346556,0.367505,0.849293,0.301143,0.967517,0.217623,0.250104,0.447054,0.242908,0.717274,0.652119,0.847081,0.681066,0.833883,0.817315,0.803973,0.159963,0.65595,0.308851,0.658274,0.447717,0.471717,0.300796,0.00583923,0.718072,0.412631,0.985554,0.0388329,0.21776,0.052606,0.918397,0.777527,0.531816,0.0847631,0.281873,0.746687,0.0706761,0.200357,0.571228,0.0216834,0.452375,0.091282,0.805767,0.680044,0.231131,0.788499,0.217171,0.884304,0.499436,0.459679,0.281495,0.682374,0.865064,0.705928,0.867848,0.914997,0.949689,0.370007,0.893662,0.626263,0.040882,0.484275,0.939365,0.825972,0.606367,0.106966,0.14696,0.775185,0.458775,0.897676,0.40362,0.211656,0.75059,0.356842,0.781547,0.376747,0.921649,0.146053,0.899511,0.898477,0.475639,0.388779,0.40973,0.789149,0.816222,0.237767,0.184244,0.356939,0.764431,0.633731,0.822707,0.92917,0.0902853,0.450453,0.409877,0.398591,0.0136403,0.313106,0.181271,0.763092,0.23394,0.49438,0.244535,0.759522,0.579206,0.624632,0.967742,0.796259,0.793106,0.0550169,0.809593,0.891752,0.892705,0.603731,0.957791,0.929091,0.969252,0.83965,0.491753,0.0934319,0.0664017,0.0242279,0.197061,0.763418,0.672142,0.273192,0.689977,0.0146051,0.819139,0.748187,0.256391,0.714358,0.585838,0.0279446,0.687639,0.799862,0.0984821,0.255592,0.734165,0.0471596,0.0571033,0.323262,0.159522,0.781674,0.609107,0.826199,0.22833,0.87135,0.238522,0.148175,0.432501,0.590502,0.09531,0.425414,0.418693,0.690768,0.256217,0.169824,0.855189,0.0866979,0.138795,0.138465,0.184157,0.0916327,0.507289,0.463996,0.791404,0.917333,0.882847,0.968332,0.727766,0.509564,0.243663,0.188091,0.208666,0.65507,0.564351,0.938594,0.842284,0.503672,0.115291,0.298746,0.764898,0.0169329,0.811516,0.803094,0.995327,0.841992,0.585397,0.877309,0.275701,0.896069,0.979058,0.257096,0.027192,0.102936,0.496918,0.23231,0.928437,0.378859,0.753057,0.963817,0.933031,0.813967,0.211728,0.179603,0.52364,0.342639,0.721818,0.36893,0.228734,0.78965,0.387891,0.343443,0.512797,0.674084,0.706491,0.469218,0.578201,0.512123,0.14645,0.977883,0.995552,0.949191,0.867718,0.0608819,0.00266945,0.64868,0.487066,0.52874,0.734868,0.549638,0.612893,0.110375,0.864084,0.453021,0.983331,0.237641,0.264357,0.922363,0.0732518,0.691405,0.155319,0.320544,0.589467,0.374517,0.277049,0.353277,0.134208,0.332962,0.45427,0.411789,0.842361,0.329276,0.338387,0.502444,0.349282,0.713026,0.626909,0.56633,0.925819,0.396934,0.589941,0.478806,0.518337,0.676513,0.15332,0.186543,0.940082,0.4273,0.521579,0.143087,0.100703,0.0447558,0.975239,0.194503,0.170058,0.240619,0.523424,0.805959,0.98548,0.270043,0.88904,0.0206805,0.663121,0.861728,0.663448,0.235755,0.884147,0.433505,0.507806,0.838825,0.858816,0.283201,0.620669,0.818689,0.580385,0.938835,0.143727,0.703858,0.867623,0.109601,0.389323,0.100185,0.634558,0.387733,0.658674,0.89563,0.243579,0.478928,0.363419,0.958318,0.935368,0.625475,0.548818,0.71395,0.183616,0.0150094,0.858442,0.618662,0.999138,0.143822,0.3579,0.154319,0.3216,0.992961,0.36748,0.104204,0.62736,0.415719,0.494613,0.214617,0.0149429,0.165466,0.999593,0.774813,0.233295,0.240264,0.527381,0.138572,0.525242,0.99623,0.182314,0.343515,0.0407161,0.666991,0.392972,0.506215,0.271048,0.648103,0.194086,0.86628,0.83913,0.818167,0.827332,0.187242,0.28059,0.68209,0.152697,0.0914181,0.469725,0.221416,0.377958,0.80141,0.528668,0.343207,0.721107,0.458145,0.657336,0.496159,0.989194,0.663233,0.883579,0.859086,0.0983289,0.47181,0.043271,0.706048,0.047679,0.880899,0.414289,0.608151,0.317687,0.629032,0.193288,0.465368,0.963601,0.232062,0.781758,0.999588,0.135412,0.914339,0.852577,0.478787,0.172962,0.274617,0.978804,0.515371,0.910624,0.821585,0.857471,0.587396,0.976833,0.304017,0.284437,0.47931,0.493512,0.361745,0.752667,0.466755,0.543903,0.0147691,0.656718,0.067897,0.812599,0.355837,0.880416,0.98452,0.791724,0.115408,0.981363,0.0921339,0.14712,0.658865,0.596151,0.810436,0.207482,0.0172237,0.651656,0.920485,0.566399,0.129131,0.787306,0.200972,0.952941,0.702491,0.494871,0.436298,0.760568,0.0911987,0.56106,0.140046,0.76027,0.814392,0.408632,0.601949,0.539647,0.276099,0.75704,0.126562,0.169192,0.710965,0.590636,0.24341,0.0196571,0.779002,0.699222,0.581188,0.626781,0.529115,0.257751,0.119715,0.36437,0.560835,0.244502,0.529523,0.277145,0.275958,0.675468,0.737955,0.93352,0.565759,0.94557,0.81205,0.752318,0.915365,0.592968,0.398314,0.572888,0.25684,0.938543,0.287075,0.648618,0.627874,0.328751,0.243415,0.568487,0.422998,0.86256,0.435301,0.489321,0.627129,0.12007,0.30243,0.964198,0.840864,0.620456,0.685063,0.524524,0.230327,0.14596,0.890129,0.594454,0.206728,0.80918,0.0775886,0.463616,0.328111,0.929046,0.0106804,0.176859,0.981308,0.442742,0.29979,0.270395,0.194169,0.718019,0.803333,0.127754,0.126886,0.362003,0.027397,0.0509293,0.891941,0.934752,0.976278,0.289568,0.813106,0.507638,0.811554,0.568841,0.477161,0.691019,0.151092,0.829703,0.983152,0.336212,0.803381,0.438201,0.565629,0.611169,0.262941,0.492945,0.610656,0.25058,0.885264,0.981252,0.219645,0.121116,0.848042,0.120468,0.967143,0.936554,0.770877,0.0809689,0.870056,0.450003,0.729163,0.00306648,0.235939,0.121123,0.398249,0.142734,0.421317,0.986666,0.711142,0.929116,0.247743,0.428302,0.680813,0.236922,0.298259,0.72998,0.718645,0.259455,0.220059,0.457252,0.893497,0.496388,0.571443,0.759819,0.873322,0.664725,0.378859,0.449139,0.350022,0.0877392,0.322264,0.417455,0.0421338,0.792672,0.830914,0.551692,0.60688,0.461861,0.581844,0.391387,0.802658,0.801057,0.621908,0.732356,0.27283,0.442833,0.866112,0.238025,0.0819389,0.318281,0.0725646,0.127493,0.377337,0.867243,0.393477,0.346111,0.0624335,0.968366,0.0294158,0.398546,0.7285,0.563277,0.318732,0.530989,0.97768,0.261395,0.283512,0.705889,0.02248,0.190769,0.444546,0.260716,0.916038,0.105449,0.747875,0.955445,0.971242,0.696747,0.721276,0.864302,0.351475,0.0037964,0.727359,0.899194,0.315632,0.402419,0.518529,0.168024,0.217978,0.441665,0.841327,0.0158094,0.967604,0.610903,0.214339,0.233133,0.682294,0.675623,0.737202,0.357488,0.998276,0.608402,0.282524,0.345438,0.760474,0.362381,0.114748,0.593204,0.83628,0.730551,0.386059,0.962049,0.265357,0.923785,0.0490897,0.935919,0.607993,0.129648,0.428246,0.98828,0.268586,0.953399,0.103676,0.550059,0.956793,0.241188,0.3913,0.320394,0.0804648,0.533204,0.451503,0.508105,0.170245,0.763,0.634167,0.14936,0.931341,0.35046,0.236446,0.332806,0.334873,0.851678,0.681173,0.140834,0.950338,0.676352,0.920205,0.977724,0.867772,0.0860782,0.74022,0.596099,0.251876,0.794096,0.226651,0.329901,0.150825,0.0285946,0.598716,0.629412,0.290011,0.445421,0.90096,0.791562,0.455987,0.36973,0.573605,0.833145,0.374029,0.656863,0.481311,0.536983,0.41521,0.906508,0.931526,0.16693,0.0868526,0.943764,0.510715,0.117185,0.472059,0.958179,0.0143033,0.517492,0.686651,0.178809,0.0387499,0.233626,0.682799,0.706455,0.772918,0.312322,0.597345,0.377167,0.94452,0.963008,0.0127824,0.491089,0.326362,0.351323,0.455653,0.239591,0.653308,0.573634,0.734971,0.450622,0.614597,0.33806,0.421924,0.288897,0.239574,0.79914,0.270602,0.610425,0.883761,0.581668,0.611353,0.835452,0.680099,0.657354,0.891649,0.746307,0.519454,0.946827,0.625584,0.506911,0.158389,0.756807,0.376459,0.707622,0.34188,0.572791,0.470603,0.097276,0.605604,0.670505,0.98031,0.416909,0.795939,0.679109,0.500184,0.38223,0.73828,0.265247,0.543814,0.900367,0.526217,0.970505,0.910405,0.992233,0.0885916,0.548711,0.786533,0.498794,0.139689,0.246608,0.00182688,0.992096,0.288421,0.347105,0.295662,0.876873,0.921833,0.97474,0.452386,0.560127,0.566397,0.187034,0.0189055,0.681335,0.132582,0.964241,0.714919,0.214806,0.885837,0.318233,0.547794,0.999977,0.971345,0.600928,0.991138,0.888893,0.248917,0.879615,0.500866,0.625978,0.666659,0.123637,0.945778,0.230464,0.1023,0.738148,0.29366,0.532729,0.147671,0.248799,0.249782,0.281909,0.0837467,0.716259,0.226284,0.434015,0.24413,0.316852,0.168034,0.562452,0.269987,0.605165,0.234044,0.502294,0.878376,0.683674,0.734539,0.046159,0.839575,0.347607,0.507724,0.560278,0.30407,0.540968,0.961201,0.263935,0.369155,0.459,0.888377,0.30562,0.027954,0.444211,0.0213692,0.351437,0.434696,0.949637,0.36485,0.880074,0.638278,0.99496,0.477065,0.189946,0.0534369,0.799154,0.147123,0.700008,0.964828,0.59519,0.600088,0.617627,0.432324,0.041986,0.821743,0.0451834,0.427705,0.162317,0.494157,0.770842,0.185994,0.386026,0.320678,0.386085,0.981336,0.240247,0.217131,0.201251,0.867058,0.346846,0.334106,0.445671,0.651662,0.993886,0.284022,0.708664,0.360143,0.618368,0.786809,0.312628,0.465236,0.750349,0.945267,0.317684,0.106952,0.952937,0.897918,0.157898,0.942212,0.871344,0.185195,0.0794584,0.595676,0.602974,0.482448,0.160099,0.69142,0.0359972,0.0318477,0.589975,0.232584,0.774333,0.961151,0.474019,0.0373397,0.0810328,0.327355,0.809451,0.590941,0.612564,0.0402527,0.582995,0.183748,0.287947,0.380295,0.758531,0.597836,0.674923,0.0626425,0.882288,0.0574166,0.834797,0.190915,0.158197,0.514817,0.359618,0.65438,0.948369,0.806472,0.921991,0.926143,0.742169,0.27551,0.535369,0.782175,0.400865,0.849794,0.574975,0.811105,0.575812,0.625586,0.627556,0.362885,0.341697,0.956366,0.414035,0.0335491,0.232508,0.99705,|0.998521,0.751281,0.853339,0.0138106,0.171498,0.182011,0.122612,0.944758,0.360231,0.849283,0.201475,0.879939,0.645309,0.232935,0.66368,0.565254,0.339454,0.603998,0.376917,0.732445,0.702826,0.259041,0.0692606,0.478767,0.914926,0.666045,0.2094,0.542633,0.633357,0.441459,0.979923,0.530819,0.363062,0.229383,0.16382,0.00632954,0.688055,0.0164705,0.569681,0.572196,0.82014,0.113725,0.376626,0.357752,0.645871,0.609809,0.466293,0.0674941,0.7667,0.905085,0.534367,0.223835,0.672813,0.865015,0.45731,0.921822,0.618231,0.858625,0.560223,0.922115,0.301386,0.658292,0.570957,0.722211,0.162287,0.79328,0.518277,0.854061,0.232761,0.700527,0.161739,0.694158,0.672017,0.619479,0.0717015,0.469561,0.151412,0.392022,0.00804055,0.707296,0.795016,0.321234,0.946747,0.839988,0.764476,0.294768,0.295659,0.343735,0.705071,0.668567,0.440547,0.263979,0.900332,0.421141,0.371299,0.119623,0.0927449,0.865242,0.15961,0.588288,0.48502,0.115285,0.924326,0.621901,0.971129,0.561262,0.701449,0.406397,0.587286,0.470548,0.64146,0.493136,0.0995261,0.756233,0.439142,0.880633,0.960305,0.592676,0.107399,0.622395,0.338145,0.19777,0.992193,0.231344,0.693036,0.218576,0.838134,0.863853,0.632197,0.241703,0.441597,0.377914,0.157517,0.422029,0.546298,0.24591,0.723236,0.884684,0.21517,0.0725628,0.937861,0.843864,0.438717,0.492763,0.89178,0.492464,0.409942,0.250947,0.837759,0.952002,0.008439,0.84822,0.727474,0.262794,0.285873,0.724239,0.936671,0.657526,0.397651,0.533327,0.848851,0.667632,0.734616,0.573813,0.654342,0.59466,0.138003,0.561589,0.957468,0.210965,0.591697,0.464297,0.0368254,0.795074,0.436305,0.15551,0.537065,0.568758,0.516742,0.0128099,0.186692,0.667599,0.976387,0.848912,0.366492,0.130916,0.985016,0.722669,0.000596702,0.896768,0.00402492,0.612593,0.72834,0.175385,0.11777,0.10319,0.706452,0.764183,0.345247,0.40872,0.896995,0.307025,0.644045,0.0720357,0.686913,0.0426329,0.0552331,0.0330948,0.404991,0.406113,0.0339646,0.618392,0.24189,0.169982,0.274915,0.930424,0.858388,0.913448,0.628928,0.264818,0.0714111,0.0854358,0.711866,0.258501,0.521405,0.744275,0.0721629,0.288604,0.906416,0.641313,0.405848,0.139133,0.481936,0.264903,0.644596,0.710105,0.0993088,0.289425,0.542073,0.241042,0.94856,0.322507,0.214095,0.419754,0.602599,0.431732,0.681952,0.582343,0.477871,0.996035,0.438424,0.336278,0.17874,0.222036,0.928017,0.630192,0.365032,0.389623,0.560503,0.767657,0.342087,0.134494,0.936937,0.806512,0.657933,0.156851,0.828468,0.115595,0.0640465,0.734498,0.182004,0.332652,0.869984,0.604034,0.675334,0.621586,0.139473,0.146073,0.697206,0.56915,0.463736,0.867,0.0772535,0.990334,0.762492,0.79215,0.460353,0.938418,0.25376,0.748727,0.606745,0.71868,0.85629,0.466628,0.407171,0.84148,0.421812,0.807822,0.260669,0.554009,0.338228,0.440858,0.211157,0.510974,0.216072,0.055223,0.0200062,0.346431,0.0822201,0.621406,0.2246,0.380791,0.516951,0.191972,0.589271,0.749482,0.249682,0.019478,0.966469,0.923913,0.930748,0.140702,0.427514,0.794003,0.281295,0.646738,0.0269844,0.575032,0.563797,0.286545,0.443216,0.593359,0.655428,0.369787,0.11854,0.842475,0.13969,0.335508,0.763033,0.818302,0.0433228,0.907486,0.904644,0.21459,0.323183,0.986544,0.120448,0.260667,0.707194,0.935394,0.149556,0.531302,0.768474,0.0368024,0.862003,0.825134,0.281792,0.964016,0.0791755,0.133944,0.335624,0.234902,0.203762,0.322857,0.467525,0.755861,0.23229,0.984278,0.557968,0.0297337,0.938843,0.976768,0.00691378,0.439239,0.16008,0.674878,0.557742,0.174153,0.528384,0.946314,0.312849,0.419734,0.52453,0.77145,0.685799,0.950418,0.152042,0.158349,0.171051,0.480134,0.98994,0.914358,0.224994,0.679697,0.757632,0.287553,0.550987,0.711899,0.875561,0.167834,0.613365,0.147258,0.5337,0.925765,0.700186,0.302802,0.885743,0.886081,0.354912,0.0284342,0.486306,0.813903,0.546736,0.946831,0.275595,0.521832,0.829923,0.598871,0.681957,0.196202,0.04827,0.30116,0.913032,0.785918,0.0259576,0.186007,0.000690818,0.927317,0.193853,0.365707,0.488328,0.482238,0.892169,0.501278,0.570222,0.72546,0.663256,0.614076,0.083832,0.0105122,0.460234,0.0720253,0.119722,0.772728,0.368958,0.80865,0.452211,0.139447,0.417673,0.474548,0.122957,0.957475,0.940927,0.318731,0.262028,0.463192,0.382425,0.359111,0.761407,0.138252,0.986932,0.679274,0.569622,0.27416,0.236814,0.952961,0.776482,0.856256,0.470744,0.331664,0.43102,0.0211669,0.970463,0.879753,0.143958,0.154739,0.899704,0.76631,0.0575547,0.985027,0.300546,0.983122,0.967034,0.77503,0.0039432,0.436039,0.812737,0.96739,0.767575,0.20545,0.799458,0.0862754,0.842958,0.883662,0.62091,0.373852,0.502196,0.830696,0.642084,0.776077,0.0309066,0.0132205,0.62018,0.724415,0.43863,0.225525,0.137867,0.854729,0.912836,0.600528,0.371193,0.195473,0.463389,0.903527,0.905976,0.773943,0.00435418,0.879595,0.11738,0.0446247,0.0497402,0.207485,0.298066,0.517223,0.779153,0.910099,0.935616,0.752655,0.347391,0.484823,0.51736,0.598736,0.415062,0.222564,0.571738,0.407956,0.715225,0.719946,0.936941,0.414992,0.591634,0.915747,0.912936,0.22569,0.419472,0.33114,0.496796,0.957294,0.148467,0.602498,0.298546,0.0557194,0.383768,0.811049,0.0814269,0.710661,0.631253,0.112215,0.451321,0.894711,0.718662,0.955019,0.788639,0.555593,0.962771,0.246644,0.280795,0.464596,0.105275,0.726137,0.727254,0.567428,0.625889,0.178241,0.0505866,0.0693141,0.122386,0.73478,0.130641,0.226381,0.38066,0.522808,0.118664,0.61064,0.187529,0.100152,0.563811,0.775968,0.371457,0.284093,0.241242,0.890844,0.772949,0.639449,0.642216,0.385054,0.884009,0.955944,0.315491,0.143728,0.535083,0.828359,0.292891,0.0525209,0.389834,0.90377,0.583373,0.13779,0.323447,0.730215,0.447024,0.281457,0.996414,0.6868,0.238718,0.0912736,0.0908733,0.879852,0.405795,0.488269,0.244012,0.332119,0.712422,0.51366,0.591716,0.969225,0.701601,0.623572,0.237094,0.31348,0.236581,0.558042,0.828516,0.140531,0.10319,0.32765,0.524315,0.439237,0.150871,0.756113,0.428075,0.197035,0.465969,0.350727,0.410233,0.289078,0.0241902,0.997918,0.219138,0.108934,0.334781,0.830716,0.487745,0.290387,0.744289,0.890486,0.243285,0.434403,0.107611,0.661743,0.300187,0.123243,0.501013,0.824454,0.508998,0.657125,0.690258,0.867562,0.748468,0.544958,0.367037,0.367674,0.940842,0.563112,0.888029,0.707016,0.458711,0.833534,0.7262,0.113375,0.984564,0.948761,0.103236,0.33055,0.852318,0.752521,0.953002,0.388877,0.0322603,0.498463,0.425682,0.715774,0.191769,0.35658,0.190134,0.20099,0.289768,0.941093,0.478159,0.822831,0.605397,0.623327,0.579714,0.529406,0.00085777,0.0963584,0.402386,0.0146589,0.696839,0.264635,0.908345,0.236496,0.373271,0.083632,0.888556,0.0989744,0.253417,0.00825661,0.151936,0.401048,0.45501,0.161647,0.942406,0.24702,0.333628,0.26011,0.376088,0.876346,0.442679,0.711673,0.547208,0.447347,0.498467,0.0987475,0.0981801,0.426742,0.556614,0.545607,0.491958,0.507269,0.807091,0.0727493,0.892398,0.640434,0.984347,0.247788,0.620458,0.570576,0.941463,0.898668,0.100676,0.77951,0.245041,0.847412,0.274408,0.883829,0.0150598,0.92114,0.232322,0.921922,0.864368,0.61279,0.84786,0.185131,0.113347,0.998356,0.0587238,0.771775,0.153148,0.66635,0.77684,0.435659,0.800406,0.178731,0.416831,0.745988,0.14589,0.551618,0.808913,0.707171,0.222529,0.854962,0.0908881,0.513207,0.966213,0.280987,0.470226,0.606047,0.494089,0.0275693,0.941213,0.537329,0.0529569,0.395507,0.473947,0.858305,0.237516,0.988476,0.135408,0.535094,0.227526,0.141542,0.430613,0.859025,0.275247,0.295453,0.146794,0.50999,0.548982,0.102603,0.115282,0.627266,0.837271,0.93782,0.919793,0.286295,0.111691,0.589077,0.0927909,0.712378,0.243297,0.290392,0.787072,0.398874,0.374993,0.404368,0.467195,0.0224493,0.96795,0.0744277,0.115797,0.136049,0.653208,0.760158,0.77349,0.759127,0.883765,0.488664,0.157357,0.74623,0.398548,0.65032,0.241113,0.829937,0.949398,0.279561,0.473183,0.903992,0.183853,0.753212,0.824368,0.874646,0.0169242,0.0749514,0.220596,0.739761,0.460684,0.242716,0.255835,0.69287,0.233331,0.355791,0.261923,0.584713,0.902749,0.484422,0.646978,0.898755,0.891692,0.948389,0.478221,0.281796,0.0812017,0.916031,0.630082,0.752626,0.674185,0.922746,0.846759,0.900107,0.795829,0.810919,0.0274956,0.262139,0.486632,0.843302,0.292521,0.352575,0.913843,0.165214,0.188375,0.897879,0.00185484,0.673022,0.185956,0.793578,0.246033,0.380821,0.689128,0.885026,0.655017,0.422388,0.715195,0.559583,0.212572,0.833462,0.0313326,0.687717,0.185518,0.775607,0.980556,0.532342,0.423325,0.327443,0.989986,0.271064,0.683805,0.739176,0.64002,0.594501,0.134579,0.718686,0.302422,0.198472,0.909239,0.179268,0.658053,0.56573,0.746117,0.946645,0.371531,0.684559,0.320082,0.816806,0.212927,0.333085,0.495461,0.792201,0.565836,0.708342,0.421813,0.492606,0.0878267,0.288958,0.598991,0.340267,0.747758,0.518513,0.822385,0.739027,0.66577,0.354051,0.645302,0.865357,0.643879,0.453857,0.775943,0.0789893,0.711213,0.747235,0.524399,0.382305,0.315282,0.755564,0.316021,0.982084,0.278059,0.20519,0.405256,0.543703,0.697749,0.808512,0.8909,0.582254,0.93495,0.421757,0.651797,0.11622,0.391276,0.0559732,0.752755,0.349311,0.301391,0.823754,0.132211,0.559582,0.495218,0.449472,0.03309,0.0438516,0.98699,0.964551,0.1429,0.831847,0.962555,0.859202,0.0877495,0.992309,0.667179,0.130632,|0.0940337,0.507364,0.17511,0.270254,0.667367,0.669917,0.905579,0.165546,0.976789,0.369783,0.480963,0.23022,0.175818,0.950561,0.00891256,0.942786,0.640733,0.0961151,0.302107,0.489719,0.142258,0.621346,0.187964,0.377688,0.299122,0.724256,0.174696,0.720033,0.57272,0.120219,0.681407,0.97927,0.996015,0.513755,0.397211,0.0156059,0.948276,0.345348,0.298203,0.47844,0.442846,0.330421,0.630909,0.664112,0.0203424,0.98257,0.733346,0.870704,0.120184,0.638627,0.172878,0.891794,0.864148,0.179887,0.344971,0.541709,0.552919,0.360421,0.572774,0.959289,0.823046,0.991936,0.064751,0.444689,0.100243,0.630765,0.625625,0.0530828,0.457404,0.138745,0.633813,0.482408,0.884403,0.692895,0.269582,0.722393,0.793025,0.2144,0.557199,0.438693,0.882338,0.640461,0.120678,0.508491,0.0759478,0.77692,0.0332823,0.198858,0.835314,0.380561,0.924835,0.647269,0.242582,0.767811,0.477991,0.29692,0.797796,0.91237,0.121238,0.145482,0.278688,0.289752,0.768471,0.136685,0.387625,0.0911756,0.901726,0.0149679,0.5332,0.0910191,0.422189,0.535766,0.319901,0.201867,0.232489,0.118322,0.389305,0.61696,0.533746,0.328013,0.247786,0.337843,0.0977125,0.644818,0.0978372,0.0834929,0.474453,0.848719,0.280439,0.732524,0.00577509,0.948895,0.571373,0.156965,0.0854391,0.409886,0.885589,0.655761,0.67252,0.574296,0.717123,0.674753,0.752537,0.402425,0.839707,0.170586,0.403642,0.882963,0.554007,0.207364,0.632785,0.248391,0.989023,0.775041,0.115056,0.205865,0.682782,0.151344,0.746678,0.426328,0.75813,0.537613,0.99163,0.714245,0.144626,0.823002,0.450745,0.593089,0.812688,0.183926,0.2892,0.0313528,0.167124,0.76574,0.0380604,0.617707,0.648537,0.325874,0.853501,0.37772,0.540259,0.264615,0.707522,0.691459,0.814024,0.534705,0.527892,0.473484,0.194443,0.129347,0.889575,0.780555,0.828738,0.26364,0.26169,0.262225,0.0491682,0.495753,0.589743,0.620999,0.785724,0.142531,0.360669,0.610812,0.760496,0.87362,0.266077,0.0454968,0.850617,0.400347,0.00716519,0.640934,0.359394,0.468959,0.965989,0.429233,0.0081684,0.555123,0.998804,0.568135,0.742399,0.99689,0.653939,0.460023,0.535923,0.030298,0.71678,0.0928939,0.897349,0.143473,0.344346,0.467998,0.778352,0.804907,0.367022,0.55547,0.900746,0.113269,0.167888,0.614108,0.956045,0.322728,0.810838,0.0962614,0.340609,0.684498,0.667919,0.486469,0.969315,0.980005,0.192649,0.363488,0.92009,0.759512,0.919946,0.0853083,0.497889,0.995443,0.375539,0.0134808,0.774864,0.511343,0.683788,0.969901,0.865777,0.708549,0.758165,0.457245,0.856237,0.445021,0.26129,0.0338204,0.569813,0.779204,0.756284,0.407786,0.191629,0.78334,0.403345,0.544208,0.545842,0.816667,0.850167,0.199841,0.0900491,0.339577,0.903305,0.986549,0.167241,0.00505042,0.581322,0.271236,0.168083,0.812383,0.32134,0.762971,0.168722,0.698137,0.810673,0.166393,0.260204,0.479967,0.531545,0.817005,0.740504,0.0646069,0.271885,0.622726,0.514506,0.318373,0.777269,0.154424,0.719682,0.833491,0.878781,0.871253,0.954534,0.926457,0.636313,0.312998,0.865882,0.70912,0.139064,0.374948,0.71946,0.274096,0.69785,0.512529,0.799489,0.325831,0.127538,0.025824,0.952661,0.0301577,0.979264,0.463677,0.060089,0.756313,0.819904,0.982846,0.527164,0.965688,0.485399,0.666291,0.852174,0.732356,0.281404,0.00507128,0.379463,0.572914,0.96113,0.537152,0.679896,0.537785,0.348476,0.528997,0.431697,0.6384,0.156558,0.963497,0.716389,0.699186,0.308304,0.243553,0.565599,0.261618,0.033116,0.125818,0.0153825,0.45817,0.502629,0.765366,0.775884,0.896024,0.465583,0.604896,0.572586,0.509047,0.0581867,0.457088,0.632133,0.395075,0.969288,0.363053,0.369803,0.789233,0.171861,0.217748,0.705686,0.148525,0.651685,0.414481,0.330093,0.178392,0.400576,0.851316,0.904097,0.412754,0.0175337,0.680457,0.25958,0.924903,0.377011,0.30849,0.355343,0.54182,0.210114,0.093251,0.631372,0.472287,0.79841,0.00527185,0.519093,0.94936,0.819429,0.0980272,0.570514,0.463245,0.132502,0.613969,0.901052,0.99384,0.140266,0.688599,0.606518,0.511068,0.411647,0.883145,0.132775,0.65218,0.107118,0.142708,0.281091,0.434608,0.563765,0.795766,0.303163,0.494932,0.392942,0.427587,0.437417,0.379461,0.351085,0.205469,0.264465,0.370073,0.228431,0.839501,0.784983,0.0749628,0.352501,0.255004,0.65883,0.961158,0.506581,0.96809,0.634997,0.587149,0.318762,0.184929,0.183596,0.315692,0.01847,0.0262179,0.955168,0.891733,0.509439,0.973957,0.779148,0.655001,0.489069,0.125018,0.115888,0.774674,0.831249,0.085923,0.30867,0.5987,0.990807,0.563996,0.652166,0.75648,0.204624,0.543557,0.0209154,0.173431,0.629209,0.375188,0.51474,0.407419,0.565592,0.472984,0.87345,0.859963,0.900249,0.159067,0.829945,0.841673,0.000321746,0.785434,0.0753088,0.576305,0.455597,0.926618,0.00785768,0.666444,0.996486,0.0866699,0.412656,0.00955689,0.48699,0.682029,0.0690562,0.90269,0.503431,0.125144,0.306847,0.449092,0.305337,0.830244,0.175988,0.253381,0.012359,0.125015,0.872166,0.417956,0.311066,0.809446,0.450183,0.74479,0.689793,0.944338,0.957095,0.658934,0.596259,0.401033,0.534651,0.555793,0.200125,0.222094,0.194796,0.271231,0.118926,0.837171,0.16805,0.520496,0.806859,0.12567,0.353497,0.924356,0.605435,0.63868,0.899302,0.397238,0.875037,0.271741,0.716558,0.20072,0.468251,0.548651,0.203935,0.57895,0.618045,0.55448,0.99267,0.420529,0.534065,0.1971,0.662749,0.649477,0.431101,0.569383,0.000219882,0.31352,0.141947,0.902737,0.378009,0.959695,0.373274,0.188857,0.985252,0.256062,0.264691,0.297772,0.670234,0.10037,0.351184,0.19328,0.417505,0.29346,0.913927,0.335343,0.124742,0.13143,0.205104,0.898472,0.914437,0.99215,0.0265313,0.960967,0.49345,0.468604,0.656271,0.693915,0.910539,0.633724,0.494114,0.467167,0.373449,0.490366,0.37649,0.297073,0.535937,0.0424645,0.0608723,0.872741,0.698839,0.941908,0.997566,0.496876,0.349827,0.802142,0.785891,0.689952,0.317942,0.828114,0.854657,0.718519,0.781856,0.185905,0.468235,0.0457468,0.884978,0.0642424,0.413961,0.423766,0.77432,0.446907,0.350156,0.000492394,0.43404,0.941938,0.992642,0.439361,0.483844,0.399419,0.955764,0.471089,0.75229,0.716131,0.417144,0.672773,0.405095,0.327331,0.333517,0.166826,0.227893,0.984552,0.723558,0.582488,0.225818,0.280241,0.537674,0.856531,0.492008,0.699495,0.760159,0.00969112,0.449024,0.224314,0.0309376,0.502986,0.497317,0.43248,0.169174,0.806117,0.712349,0.83235,0.0436188,0.0779704,0.886656,0.316745,0.585196,0.423268,0.897719,0.786538,0.123202,0.628366,0.834924,0.816894,0.297832,0.984457,0.544526,0.445453,0.883826,0.717381,0.357421,0.29889,0.452182,0.681345,0.861497,0.574792,0.155644,0.240971,0.0273702,0.30636,0.0122405,0.172228,0.689333,0.648909,0.902743,0.465247,0.53016,0.844749,0.278646,0.514007,0.151309,0.0627413,0.355338,0.795759,0.823584,0.560968,0.339371,0.797572,0.625348,0.0964363,0.191939,0.125061,0.527535,0.863414,0.569574,0.198161,0.176143,0.862003,0.589509,0.533017,0.837956,0.732161,0.827193,0.312121,0.0257468,0.040265,0.963788,0.657881,0.712139,0.658243,0.743436,0.534144,0.817047,0.856943,0.809283,0.00904995,0.462614,0.583637,0.123827,0.198464,0.816214,0.557615,0.315162,0.15013,0.845022,0.306457,0.824521,0.350614,0.436886,0.250278,0.911732,0.729086,0.247818,0.349333,0.751957,0.824701,0.693267,0.45525,0.190138,0.514717,0.515162,0.438296,0.702483,0.836473,0.239008,0.0527753,0.613296,0.425564,0.476941,0.371207,0.0862609,0.456043,0.842364,0.0788838,0.816503,0.834746,0.0575529,0.414587,0.475915,0.964619,0.869021,0.690207,0.74065,0.697544,0.806456,0.649883,0.166948,0.840094,0.114976,0.21494,0.654968,0.518201,0.933991,0.259239,0.623629,0.355263,0.112981,0.449126,0.508683,0.414883,0.159312,0.666932,0.549428,0.369336,0.583167,0.377797,0.34182,0.431842,0.424197,0.469109,0.377945,0.0915086,0.713394,0.509737,0.753431,0.620889,0.10144,0.278444,0.529235,0.218964,0.665194,0.108971,0.394469,0.914563,0.535793,0.982299,0.144324,0.796065,0.627702,0.83408,0.371495,0.734003,0.429776,0.053297,0.765421,0.812426,0.792226,0.929495,0.413194,0.177033,0.816274,0.344156,0.999269,0.755701,0.360524,0.36945,0.541716,0.707689,0.315554,0.31462,0.149921,0.690156,0.422254,0.372501,0.325428,0.226256,0.515867,0.615206,0.203796,0.709765,0.976289,0.285224,0.959832,0.971391,0.450963,0.237325,0.374855,0.390064,0.228998,0.143639,0.268572,0.769963,0.992627,0.462529,0.827266,0.450478,0.142447,0.1809,0.939891,0.701087,0.239794,0.714934,0.0925739,0.0762894,0.263149,0.716528,0.357165,0.150783,0.429546,0.636896,0.203858,0.880636,0.689266,0.561613,0.0979426,0.012518,0.776211,0.670971,0.610587,0.823844,0.130263,0.0591832,0.511715,0.514369,0.582462,0.850941,0.219996,0.591509,0.638555,0.9285,0.846747,0.862605,0.49453,0.732554,0.930257,0.966473,0.0219857,0.740576,0.626696,0.328013,0.0903217,0.308023,0.780647,0.452067,0.538413,0.595995,0.9197,0.831545,0.168861,0.299165,0.313335,0.746149,0.850694,0.304725,0.0142419,0.82826,0.580282,0.597788,0.718076,0.342947,0.615726,0.36567,0.841517,0.607924,0.916229,0.0384199,0.765437,0.956082,0.372454,0.781871,0.539627,0.497771,0.936321,0.603886,0.349584,0.792437,0.741865,0.315072,0.0294645,0.869676,0.592611,0.62938,0.521127,0.975391,0.563302,0.911999,0.899728,0.21978,0.144055,0.568685,0.662027,0.997176,0.00686574,0.651481,0.764126,0.429004,0.192493,0.465912,0.64366,0.714606,0.752713,0.780765,0.887649,0.641562,|0.177647,0.922174,0.835442,0.883127,0.487435,0.21717,0.167216,0.364973,0.641285,0.653054,0.380056,0.619357,0.783303,0.31399,0.250088,0.0770453,0.0173658,0.197083,0.610254,0.961544,0.765334,0.314842,0.0584939,0.966781,0.980861,0.717764,0.60377,0.886092,0.354463,0.327192,0.695847,0.588885,0.35193,0.172981,0.92719,0.0805653,0.359996,0.366424,0.680566,0.643105,0.54198,0.354467,0.757127,0.842567,0.209635,0.444641,0.0564241,0.368662,0.607975,0.68415,0.428667,0.391227,0.56682,0.127146,0.692723,0.60714,0.129143,0.287638,0.780855,0.918448,0.559176,0.376357,0.0168563,0.543106,0.83752,0.000608802,0.204587,0.353664,0.253893,0.0427358,0.576542,0.36996,0.720154,0.603298,0.762821,0.512497,0.139006,0.478287,0.454619,0.0783902,0.91932,0.428536,0.166007,0.56174,0.977349,0.903754,0.224783,0.0510553,0.24801,0.384692,0.052865,0.733754,0.319714,0.134278,0.837537,0.9691,0.924738,0.973957,0.664947,0.777585,0.52084,0.000292301,0.756019,0.412012,0.712027,0.294083,0.234329,0.373849,0.773358,0.720826,0.791338,0.335808,0.907748,0.826258,0.658639,0.738952,0.155662,0.756338,0.0949072,0.359193,0.402448,0.446944,0.725433,0.0875329,0.0345212,0.418529,0.521093,0.267924,0.196752,0.728597,0.689335,0.867469,0.789637,0.121063,0.497124,0.869741,0.100311,0.178094,0.72937,0.682751,0.270397,0.795221,0.167472,0.212919,0.483869,0.0268505,0.611483,0.819173,0.513056,0.38839,0.142709,0.284065,0.510965,0.292924,0.576224,0.566071,0.375524,0.0829414,0.11602,0.825052,0.712177,0.641921,0.718677,0.310624,0.624998,0.554781,0.0728784,0.16075,0.877013,0.715532,0.729246,0.332834,0.376644,0.826341,0.401072,0.238056,0.661272,0.285483,0.177232,0.553523,0.702911,0.135879,0.869001,0.528011,0.130246,0.349305,0.975996,0.107178,0.675213,0.827057,0.554431,0.0620451,0.948456,0.746727,0.664669,0.0695227,0.655329,0.24051,0.852604,0.832908,0.223925,0.321146,0.0798396,0.245796,0.548196,0.555417,0.520459,0.539222,0.995561,0.120121,0.480872,0.143617,0.625612,0.0193543,0.455824,0.0766135,0.854978,0.533343,0.107605,0.916741,0.0964483,0.80507,0.53996,0.794717,0.903143,0.989931,0.0415331,0.946751,0.81545,0.370493,0.0649133,0.733289,0.0134624,0.69128,0.703816,0.899781,0.530124,0.0818959,0.371756,0.0137653,0.556501,0.855805,0.647331,0.519252,0.284068,0.891017,0.839603,0.743942,0.755651,0.938448,0.115306,0.33532,0.586317,0.660623,0.133193,0.810641,0.757817,0.189081,0.976464,0.907997,0.312165,0.279562,0.708349,0.992143,0.203914,0.961881,0.186716,0.768141,0.111075,0.765435,0.0104915,0.882383,0.711687,0.327116,0.0221817,0.695903,0.918472,0.698026,0.916385,0.218769,0.260821,0.070235,0.704368,0.654924,0.0803002,0.305731,0.258389,0.615304,0.935629,0.746068,0.257224,0.96905,0.739736,0.643762,0.446246,0.3719,0.997382,0.190507,0.0324693,0.095365,0.804211,0.021633,0.782709,0.0170284,0.939272,0.497809,0.3739,0.220979,0.699475,0.528415,0.243979,0.500528,0.531855,0.623446,0.872653,0.346467,0.195977,0.700896,0.666691,0.70646,0.205073,0.958367,0.0531927,0.442349,0.485919,0.716645,0.750015,0.0761502,0.720568,0.790592,0.28071,0.220995,0.648229,0.573709,0.460506,0.170762,0.983193,0.346317,0.87896,0.770822,0.523594,0.459982,0.892811,0.101584,0.0767904,0.856779,0.688167,0.38446,0.338925,0.589873,0.513984,0.445324,0.468714,0.570232,0.0557914,0.421152,0.520743,0.783222,0.933621,0.907612,0.425933,0.447448,0.946667,0.152901,0.838458,0.355464,0.656993,0.00197321,0.296352,0.630288,0.944389,0.0953198,0.840927,0.864497,0.118177,0.704473,0.331629,0.551305,0.648111,0.91604,0.281744,0.701278,0.486847,0.540726,0.860458,0.723168,0.239634,0.0247698,0.132778,0.164396,0.249106,0.48213,0.998782,0.481668,0.756622,0.574191,0.295142,0.671455,0.0278921,0.47663,0.0395904,0.541908,0.132698,0.917003,0.772434,0.367896,0.0540984,0.799159,0.7249,0.429896,0.600198,0.949379,0.36615,0.864715,0.473387,0.562563,0.534433,0.633529,0.787788,0.625628,0.988317,0.093217,0.350114,0.446267,0.815535,0.842024,0.553827,0.785704,0.299748,0.41886,0.42535,0.422208,0.893521,0.847583,0.173427,0.106454,0.0321658,0.968609,0.442357,0.625314,0.0523621,0.672311,0.932776,0.261491,0.909603,0.0612278,0.182055,0.517212,0.522593,0.178886,0.236522,0.410893,0.631894,0.758816,0.46231,0.568919,0.26075,0.782468,0.745427,0.0287385,0.273595,0.23382,0.508496,0.275857,0.10511,0.510132,0.924684,0.0984929,0.524909,0.0756482,0.721994,0.715589,0.683164,0.984423,0.72822,0.240627,0.520279,0.698048,0.925386,0.842399,0.306689,0.429619,0.0666752,0.899956,0.0101396,0.916875,0.427282,0.205265,0.150911,0.0471151,0.370306,0.628455,0.91136,0.669905,0.74179,0.749272,0.733872,0.116958,0.279331,0.457994,0.888954,0.451643,0.896177,0.799626,0.72201,0.645723,0.859843,0.629387,0.838636,0.00229818,0.692551,0.780323,0.369559,0.68614,0.295508,0.371712,0.744568,0.961839,0.846377,0.910357,0.634843,0.165499,0.111915,0.937444,0.456712,0.527078,0.573651,0.117748,0.402942,0.105391,0.294651,0.667435,0.392807,0.7464,0.379829,0.688926,0.117205,0.674541,0.941224,0.420839,0.418007,0.833758,0.406217,0.199076,0.583145,0.724821,0.876017,0.485693,0.310017,0.764489,0.655597,0.837606,0.120499,0.933398,0.902384,0.140563,0.438591,0.409341,0.293535,0.212124,0.0240875,0.0089398,0.780936,0.0440169,0.211389,0.317501,0.387507,0.815591,0.170369,0.297148,0.466664,0.916788,0.959588,0.516029,0.0592234,0.838627,0.607329,0.404468,0.011674,0.655323,0.412766,0.827395,0.017918,0.275081,0.0694169,0.40019,0.663646,0.144726,0.0016858,0.115475,0.98038,0.805649,0.96224,0.89565,0.166946,0.686125,0.957373,0.0801975,0.435606,0.14656,0.13374,0.869221,0.761736,0.796409,0.878333,0.519456,0.374672,0.648741,0.262669,0.977289,0.904752,0.578116,0.275137,0.494128,0.975277,0.852179,0.944992,0.634771,0.595922,0.604174,0.225674,0.171842,0.746308,0.62085,0.862539,0.907954,0.588466,0.112631,0.152228,0.223312,0.486908,0.638694,0.152122,0.57266,0.927061,0.519011,0.443267,0.702985,0.734406,0.0642581,0.561652,0.342963,0.132258,0.106562,0.433921,0.873627,0.600661,0.430219,0.700627,0.409805,0.166466,0.852698,0.84644,0.741265,0.833643,0.640252,0.332102,0.00574458,0.630383,0.245236,0.925924,0.44238,0.429897,0.649323,0.495768,0.316289,0.0782204,0.741012,0.638704,0.523578,0.15893,0.43293,0.109094,0.739002,0.34032,0.579138,0.74356,0.587432,0.0935554,0.12347,0.215649,0.766646,0.576833,0.301069,0.0208155,0.0255585,0.163706,0.50484,0.192878,0.979981,0.233939,0.450385,0.561757,0.0417905,0.195926,0.981249,0.35411,0.553262,0.477592,0.122692,0.0837686,0.539595,0.0462383,0.679173,0.353864,0.296452,0.00208122,0.271407,0.146303,0.270193,0.410887,0.808742,0.48892,0.0162516,0.256819,0.0368974,0.822344,0.755374,0.686852,0.923993,0.915412,0.562245,0.721373,0.246916,0.0145766,0.914418,0.442975,0.0410114,0.836014,0.00887895,0.0116612,0.692982,0.56356,0.759656,0.181004,0.845422,0.463815,0.518583,0.908906,0.381006,0.764818,0.461975,0.087241,0.218757,0.852398,0.220374,0.5054,0.0812567,0.303093,0.129072,0.306018,0.570862,0.750108,0.377819,0.872805,0.918568,0.670971,0.579294,0.839415,0.213662,0.657005,0.0507057,0.960984,0.665721,0.422554,0.810393,0.724196,0.848551,0.246449,0.938686,0.410924,0.178669,0.492371,0.843229,0.9249,0.494834,0.149766,0.591063,0.27466,0.0900986,0.527594,0.123741,0.910461,0.308048,0.103258,0.362214,0.17856,0.634439,0.501293,0.12902,0.958977,0.0607991,0.16797,0.904828,0.117695,0.0887511,0.981514,0.737479,0.0452978,0.00428462,0.27896,0.927427,0.698193,0.193372,0.15382,0.528914,0.706038,0.952288,0.164729,0.258494,0.318264,0.384143,0.597665,0.679562,0.49998,0.15138,0.643141,0.68192,0.613899,0.683538,0.404749,0.959813,0.815683,0.401869,0.897511,0.156829,0.656661,0.850307,0.488584,0.715376,0.916994,0.123653,0.00795829,0.945314,0.766149,0.537636,0.308485,0.738156,0.222136,0.952365,0.829872,0.579082,0.290656,0.0888135,0.31546,0.641029,0.956268,0.924555,0.783588,0.145552,0.460242,0.901393,0.434964,0.693244,0.213611,0.363973,0.937207,0.991815,0.551298,0.74473,0.774619,0.210067,0.607298,0.915704,0.637636,0.123123,0.403757,0.466382,0.885666,0.546533,0.759731,0.592186,0.92164,0.16897,0.649735,0.897497,0.707871,0.679837,0.228429,0.840976,0.587895,0.560431,0.364048,0.0731009,0.110418,0.18851,0.521217,0.0279538,0.0285752,0.0457984,0.768186,0.433419,0.599692,0.228176,0.689764,0.636175,0.602756,0.163746,0.418087,0.382147,0.800218,0.0130109,0.237667,0.399114,0.977676,0.388535,0.151609,0.0568449,0.779563,0.735335,0.135257,0.169553,0.137478,0.295798,0.950696,0.0638346,0.0295725,0.510954,0.525102,0.804124,0.510063,0.59529,0.477843,0.365836,0.412758,0.906786,0.555141,0.578174,0.219674,0.232322,0.946325,0.739386,0.0746881,0.0817471,0.597902,0.811278,0.0987571,0.295947,0.0569453,0.142774,0.859533,0.87991,0.197388,0.711013,0.428121,0.243149,0.231707,0.568247,0.822583,0.838112,0.307048,0.65165,0.817711,0.98573,0.0655346,0.915133,0.266744,0.986057,0.193395,0.0986148,0.918651,0.433235,0.715414,0.00071764,0.398935,0.293828,0.146638,0.908303,0.666643,0.502503,0.497063,0.882683,0.79452,0.897093,0.919955,0.0422528,0.814531,0.934051,0.363887,0.486675,0.349696,0.209371,0.77322,0.0125077,0.0416015,0.506924,0.223319,0.326643,0.0506164,0.940121,0.834091,0.0237169,0.0449374,0.333507,0.850668,0.785889,0.849786,0.699574,0.127728,0.896068,|0.855329,0.467006,0.0708783,0.661222,0.850752,0.623931,0.688055,0.398626,0.195752,0.259274,0.908938,0.74534,0.486021,0.555483,0.0159574,0.895601,0.668866,0.422466,0.48241,0.0969833,0.0711061,0.892971,0.12914,0.12318,0.0927022,0.852975,0.33361,0.757497,0.0729015,0.936109,0.415187,0.336622,0.154567,0.900253,0.326111,0.0709346,0.298581,0.351641,0.158349,0.70833,0.366578,0.021146,0.7515,0.0465087,0.441814,0.535821,0.874691,0.291464,0.862518,0.74768,0.605682,0.483907,0.929302,0.44998,0.141808,0.819375,0.0672725,0.872581,0.189356,0.789882,0.017577,0.184336,0.50046,0.0526515,0.794832,0.166827,0.369793,0.454079,0.143623,0.788299,0.611381,0.990315,0.988803,0.790214,0.0386623,0.395541,0.442057,0.298505,0.0669578,0.779034,0.19575,0.546965,0.56171,0.571753,0.16432,0.984493,0.667133,0.294322,0.575396,0.537358,0.55608,0.190616,0.508835,0.880018,0.671528,0.873042,0.141429,0.0750768,0.736845,0.647711,0.00831336,0.239089,0.523381,0.668151,0.365801,0.697072,0.648881,0.472667,0.324989,0.472933,0.0434567,0.872581,0.956486,0.635577,0.777961,0.393828,0.994085,0.390919,0.515755,0.62437,0.505098,0.0535535,0.323704,0.910459,0.35479,0.793242,0.126282,0.991741,0.422516,0.679024,0.449467,0.779183,0.960109,0.863322,0.400926,0.803483,0.320695,0.70608,0.141059,0.774342,0.340794,0.2136,0.929222,0.572973,0.856159,0.322603,0.650337,0.703233,0.575393,0.0344626,0.629935,0.00860459,0.88379,0.681693,0.472718,0.695319,0.707343,0.539949,0.378719,0.914965,0.0562586,0.150251,0.859789,0.179445,0.322757,0.525144,0.0927746,0.614166,0.344822,0.517179,0.413148,0.457555,0.859532,0.498511,0.858015,0.694244,0.611784,0.0454297,0.397549,0.375748,0.972908,0.576146,0.840611,0.13323,0.344972,0.923212,0.923896,0.868671,0.914813,0.367907,0.891564,0.0834404,0.035113,0.4407,0.607786,0.402103,0.70908,0.230069,0.831046,0.693102,0.868476,0.784269,0.285279,0.524721,0.0547345,0.614628,0.8964,0.068921,0.974146,0.996936,0.234407,0.0966047,0.786315,0.358056,0.994954,0.0287595,0.341602,0.962604,0.375232,0.456796,0.49982,0.457804,0.469577,0.0673904,0.947242,0.745796,0.214531,0.0680831,0.0613187,0.672997,0.904102,0.632251,0.753549,0.994447,0.312342,0.499097,0.222344,0.768556,0.147782,0.108149,0.640671,0.599559,0.850223,0.591486,0.451798,0.768875,0.88791,0.606482,0.576128,0.468165,0.940658,0.530956,0.133492,0.575751,0.968467,0.613528,0.82544,0.601044,0.51547,0.550783,0.111667,0.0923482,0.398653,0.657014,0.959906,0.349228,0.321624,0.845402,0.916995,0.357068,0.55578,0.315324,0.851992,0.520073,0.186461,0.448389,0.595765,0.790561,0.123959,0.471747,0.523855,0.797362,0.300149,0.617747,0.844534,0.300925,0.0314632,0.177181,0.0567107,0.109273,0.813107,0.93114,0.699835,0.960043,0.526256,0.374968,0.355041,0.589077,0.66498,0.227689,0.564767,0.872015,0.768017,0.873273,0.849653,0.949285,0.435845,0.430418,0.628277,0.401954,0.939773,0.39213,0.746965,0.530787,0.651174,0.965117,0.505307,0.780437,0.74507,0.794707,0.83099,0.633174,0.555658,0.280089,0.833592,0.249146,0.341708,0.628062,0.861534,0.775351,0.0658494,0.749452,0.987109,0.444341,0.507067,0.937339,0.443176,0.436576,0.125552,0.604173,0.730935,0.666185,0.912086,0.427088,0.688819,0.269209,0.159995,0.445708,0.872722,0.993663,0.179583,0.738965,0.772714,0.833918,0.293811,0.287897,0.846908,0.81707,0.287832,0.651263,0.500656,0.186173,0.0630867,0.450869,0.13662,0.211445,0.598829,0.491585,0.70143,0.784439,0.0911414,0.484266,0.87565,0.495461,0.0270898,0.138425,0.681079,0.988845,0.698911,0.26935,0.143252,0.788612,0.301797,0.2384,0.583146,0.416224,0.135431,0.0150056,0.765244,0.601511,0.329505,0.85234,0.513724,0.0179958,0.487832,0.664393,0.137289,0.996378,0.289167,0.519702,0.72477,0.729772,0.772932,0.412931,0.21287,0.900847,0.685168,0.280153,0.688553,0.395371,0.714574,0.856497,0.74188,0.106834,0.287498,0.33746,0.202311,0.792214,0.162813,0.0191565,0.437206,0.199577,0.215546,0.534346,0.988173,0.602373,0.0227194,0.203818,0.142746,0.260116,0.800088,0.666179,0.0426024,0.263467,0.752789,0.947976,0.505253,0.250428,0.864569,0.560626,0.32651,0.733427,0.0744454,0.675337,0.993349,0.0596596,0.73195,0.841151,0.121547,0.0299903,0.391924,0.499236,0.299528,0.551995,0.0425882,0.554854,0.256,0.0334833,0.224566,0.44365,0.379168,0.12537,0.0969331,0.495227,0.28615,0.22658,0.58594,0.030977,0.0305258,0.42326,0.512602,0.00109679,0.325172,0.896915,0.917739,0.0274092,0.703596,0.634362,0.955432,0.974475,0.871705,0.560237,0.0303711,0.989478,0.458705,0.304881,0.286044,0.18695,0.550387,0.642632,0.00761312,0.535,0.0553678,0.385609,0.9973,0.730601,0.28844,0.833051,0.387856,0.963654,0.790897,0.4395,0.582371,0.366337,0.749786,0.796235,0.556721,0.651868,0.291239,0.894315,0.699088,0.784484,0.826379,0.477099,0.124253,0.0597512,0.825396,0.0165593,0.0443015,0.984734,0.449925,0.991368,0.199455,0.795809,0.398392,0.396106,0.716705,0.62711,0.118966,0.468779,0.365606,0.418176,0.208028,0.319583,0.309128,0.662731,0.926393,0.724667,0.748422,0.238145,0.858338,0.22774,0.52505,0.548838,0.343747,0.807324,0.527673,0.02507,0.689911,0.688801,0.471457,0.349934,0.701881,0.266476,0.552619,0.0477735,0.110968,0.820758,0.769644,0.891691,0.849512,0.709582,0.682516,0.734378,0.574369,0.711336,0.60748,0.0178326,0.311711,0.103135,0.213953,0.52346,0.243975,0.825028,0.781152,0.421831,0.965122,0.623624,0.42459,0.0976968,0.929555,0.881633,0.586802,0.129297,0.739065,0.905426,0.364176,0.423617,0.424818,0.851781,0.300485,0.487064,0.543481,0.777721,0.708818,0.259462,0.7771,0.347144,0.0363672,0.915129,0.593638,0.755853,0.453413,0.132555,0.83173,0.60943,0.225395,0.283714,0.884621,0.392259,0.332366,0.747586,0.427086,0.00806874,0.180576,0.0223904,0.590083,0.800663,0.473463,0.14093,0.665353,0.738467,0.401083,0.96478,0.372087,0.962276,0.474104,0.183164,0.950063,0.408227,0.986034,0.260859,0.625019,0.510733,0.569855,0.868725,0.13754,0.522498,0.0456076,0.700063,0.858337,0.490303,0.541448,0.638011,0.860861,0.741786,0.599099,0.0781526,0.269305,0.954219,0.231544,0.625333,0.512679,0.198425,0.653874,0.0383172,0.431643,0.807589,0.279054,0.305463,0.18374,0.372924,0.902039,0.0293629,0.23498,0.80814,0.263272,0.333343,0.43002,0.436168,0.821964,0.19258,0.634007,0.847783,0.0135493,0.709179,0.520531,0.255326,0.23829,0.643714,0.604213,0.58849,0.800449,0.378479,0.152192,0.890793,0.375356,0.49511,0.420919,0.369845,0.722461,0.809676,0.534475,0.0383927,0.0343149,0.609103,0.0534055,0.325087,0.255358,0.550177,0.837336,0.425264,0.483414,0.00176209,0.877556,0.10674,0.451618,0.683802,0.919381,0.986008,0.876218,0.135854,0.200487,0.587173,0.765426,0.307852,0.618382,0.216902,0.187555,0.131065,0.362464,0.523052,0.239759,0.881769,0.185635,0.710842,0.43384,0.71288,0.274312,0.73379,0.839731,0.88079,0.367247,0.72463,0.708434,0.103767,0.715223,0.400278,0.430364,0.0798315,0.510997,0.48706,0.987591,0.490796,0.527223,0.0549584,0.446235,0.626912,0.276177,0.125516,0.680244,0.513782,0.702417,0.404108,0.928676,0.345735,0.331086,0.912592,0.916572,0.644423,0.133287,0.379609,0.178396,0.730143,0.740125,0.583029,0.182892,0.201051,0.321578,0.459718,0.711656,0.681256,0.510265,0.813748,0.301103,0.972862,0.639671,0.458452,0.713877,0.941047,0.702201,0.772966,0.443295,0.779891,0.297599,0.872461,0.041208,0.95696,0.932861,0.93768,0.619468,0.832,0.793771,0.468326,0.856471,0.522115,0.466043,0.621675,0.724182,0.316376,0.969794,0.867613,0.190827,0.785668,0.277467,0.127243,0.83083,0.514686,0.876824,0.0761694,0.00606352,0.336634,0.995389,0.0446448,0.493832,0.54464,0.143036,0.624989,0.807074,0.183641,0.496434,0.230096,0.271926,0.502228,0.733111,0.102428,0.174939,0.150304,0.804503,0.390593,0.132307,0.500678,0.642453,0.650528,0.186612,0.836877,0.915134,0.985607,0.102134,0.938679,0.779575,0.556207,0.720619,0.583993,0.338365,0.952491,0.536441,0.446547,0.0135475,0.47754,0.144192,0.0962523,0.363881,0.112398,0.429792,0.15056,0.687281,0.940087,0.55839,0.667407,0.685746,0.195546,0.961138,0.296234,0.123984,0.189783,0.99483,0.43565,0.198841,0.872908,0.842218,0.991646,0.534558,0.0345904,0.960257,0.464838,0.742569,0.0483987,0.647156,0.869333,0.502923,0.919765,0.213957,0.81014,0.793673,0.538101,0.562143,0.0929943,0.944217,0.133791,0.401081,0.809048,0.11904,0.863419,0.249539,0.467145,0.682176,0.146018,0.820359,0.260274,0.667121,0.148208,0.132541,0.797291,0.349344,0.682842,0.0600842,0.603703,0.47129,0.308639,0.848376,0.593236,0.66998,0.418989,0.919213,0.0582253,0.329664,0.00943232,0.66967,0.92898,0.351811,0.526483,0.193778,0.77336,0.652111,0.913205,0.406129,0.0691963,0.909108,0.246998,0.431723,0.609754,0.819065,0.83901,0.875483,0.827076,0.833016,0.905484,0.0241636,0.193796,0.0412593,0.300325,0.136166,0.234504,0.597893,0.973642,0.060098,0.343233,0.673846,0.205816,0.388653,0.0599691,0.282409,0.573152,0.570271,0.591134,0.293327,0.93826,0.977764,0.777133,0.0238134,0.195922,0.0501851,0.819921,0.322318,0.614954,0.331446,0.899737,0.947471,0.0567648,0.298986,0.593202,0.00976396,0.146362,0.792208,0.916055,0.400396,0.285537,0.608,0.523841,0.307361,0.457191,0.944587,0.964548,0.71072,0.606664,0.589981,0.302782,0.218358,0.647324,0.79771,0.76512,0.978604,0.403494,0.149681,0.961586,0.0590222,0.887025,0.809166,0.647058,|0.531812,0.844041,0.393163,0.741704,0.688257,0.254402,0.729337,0.28682,0.649693,0.862142,0.94422,0.816392,0.437439,0.767308,0.644066,0.152572,0.150785,0.912337,0.120074,0.0649059,0.895342,0.698427,0.816845,0.880997,0.532883,0.96443,0.0698223,0.694192,0.336134,0.24094,0.261601,0.758975,0.773564,0.416467,0.697175,0.898119,0.0201284,0.110443,0.978283,0.788275,0.0709584,0.896009,0.0399328,0.833291,0.772137,0.834405,0.623699,0.531047,0.945627,0.485478,0.00734466,0.957375,0.505226,0.83968,0.25437,0.29967,0.24624,0.330053,0.877672,0.581593,0.750424,0.0865901,0.476703,0.668341,0.947899,0.303215,0.986428,0.134492,0.0528603,0.569834,0.235749,0.541675,0.231114,0.0448963,0.470973,0.651331,0.802875,0.574321,0.976581,0.637705,0.802577,0.527389,0.657689,0.735211,0.749656,0.937567,0.711245,0.510213,0.287248,0.960475,0.842577,0.157683,0.651012,0.363676,0.897259,0.360352,0.823906,0.526618,0.635999,0.508901,0.866295,0.217176,0.05856,0.157786,0.0553384,0.780625,0.677432,0.358931,0.595907,0.523152,0.473624,0.115591,0.929211,0.339604,0.389962,0.504824,0.183957,0.482902,0.811214,0.401592,0.180722,0.933112,0.711809,0.64594,0.557158,0.213646,0.218713,0.207066,0.766579,0.223842,0.138047,0.267248,0.0701723,0.0995579,0.611663,0.151715,0.648198,0.0287016,0.350477,0.844256,0.436134,0.56933,0.173162,0.325479,0.633218,0.443242,0.82622,0.151989,0.203935,0.415865,0.0438792,0.993256,0.920286,0.712975,0.111284,0.955149,0.247761,0.64017,0.531294,0.642928,0.954354,0.375154,0.0947125,0.17426,0.455406,0.514915,0.752436,0.996754,0.654,0.788969,0.808732,0.384976,0.781184,0.633213,0.197989,0.0551187,0.398742,0.721336,0.784681,0.518719,0.0583602,0.949557,0.949113,0.118116,0.494204,0.906737,0.832334,0.741244,0.666092,0.148421,0.434487,0.555517,0.920659,0.246512,0.0480672,0.941536,0.457905,0.739179,0.371234,0.363941,0.688298,0.388145,0.78308,0.846307,0.828588,0.462947,0.0567115,0.910818,0.257433,0.726665,0.233152,0.657604,0.823128,0.854219,0.107489,0.54232,0.572267,0.122536,0.042576,0.509325,0.0182212,0.409885,0.873317,0.17369,0.366354,0.400888,0.876731,0.433591,0.820618,0.950612,0.801459,0.699715,0.265402,0.445412,0.57849,0.626445,0.0153481,0.753857,0.831463,0.545772,0.715146,0.35483,0.826414,0.0041948,0.626464,0.897227,0.0923018,0.255766,0.101676,0.740891,0.128562,0.243517,0.722214,0.26591,0.801602,0.593349,0.740163,0.0850029,0.931872,0.480106,0.32378,0.555891,0.213919,0.203314,0.508709,0.862641,0.705852,0.1173,0.644163,0.724883,0.708081,0.245957,0.618955,0.800355,0.67266,0.485924,0.639417,0.600374,0.220818,0.864423,0.737568,0.00471371,0.711686,0.0853587,0.748956,0.00245696,0.268307,0.187314,0.00279462,0.319661,0.496822,0.914638,0.34359,0.504681,0.0483016,0.563883,0.726308,0.65312,0.594921,0.422236,0.256506,0.573828,0.65831,0.0970576,0.935025,0.940885,0.710446,0.961565,0.613314,0.171163,0.173432,0.705358,0.140367,0.801926,0.657272,0.755521,0.108778,0.106762,0.0163429,0.325039,0.902043,0.335768,0.536935,0.103554,0.201259,0.903426,0.0681772,0.125165,0.576507,0.028761,0.736604,0.896672,0.592511,0.704446,0.382019,0.79451,0.513565,0.308678,0.429598,0.228974,0.16875,0.28085,0.667144,0.371465,0.191034,0.233777,0.481853,0.252785,0.5989,0.296991,0.366775,0.00973678,0.579325,0.66022,0.530002,0.756136,0.350027,0.791671,0.186563,0.256766,0.425347,0.0465392,0.87018,0.685195,0.980311,0.18199,0.668204,0.964331,0.146653,0.92143,0.898187,0.0211096,0.342488,0.172631,0.349239,0.922346,0.837684,0.0740498,0.288869,0.27031,0.551522,0.420214,0.17249,0.89807,0.616702,0.913169,0.40024,0.0583978,0.888308,0.346336,0.534525,0.033644,0.278934,0.650211,0.471043,0.835087,0.599119,0.0518087,0.660562,0.115926,0.303026,0.680237,0.28308,0.958992,0.198277,0.562659,0.113561,0.0494174,0.75588,0.0309462,0.955234,0.909617,0.9446,0.771155,0.69926,0.954982,0.689028,0.436513,0.0848513,0.944976,0.626947,0.0155428,0.992731,0.0015651,0.318905,0.694704,0.474342,0.735017,0.137123,0.508595,0.578273,0.150359,0.370112,0.916814,0.975086,0.373961,0.976782,0.578784,0.593531,0.333459,0.385151,0.758581,0.674921,0.164617,0.224034,0.822037,0.451085,0.386688,0.0291955,0.0107258,0.796199,0.201896,0.34672,0.409152,0.469001,0.844776,0.772922,0.543582,0.622561,0.911399,0.99532,0.0806968,0.460455,0.506556,0.188079,0.320531,0.849846,0.901885,0.489159,0.0526506,0.998043,0.692182,0.400353,0.434449,0.954444,0.898918,0.158624,0.92697,0.728146,0.745019,0.600705,0.99805,0.423701,0.712052,0.949533,0.642781,0.426768,0.61025,0.120256,0.202283,0.27086,0.458195,0.0918148,0.396926,0.669588,0.961237,0.214135,0.407414,0.655787,0.0163869,0.330284,0.161951,0.633394,0.529887,0.761049,0.634442,0.699844,0.413853,0.74874,0.615038,0.599231,0.408033,0.737689,0.8465,0.265361,0.373591,0.112235,0.888175,0.161339,0.964682,0.591638,0.0890272,0.159176,0.141157,0.479171,0.504691,0.516995,0.835219,0.800094,0.730143,0.256893,0.491585,0.546661,0.623107,0.13803,0.086974,0.49356,0.517678,0.176317,0.655477,0.394843,0.94855,0.401143,0.379853,0.569472,0.547746,0.174899,0.644492,0.955159,0.808876,0.457528,0.427585,0.148739,0.19722,0.281088,0.0844666,0.465745,0.121068,0.177192,0.511369,0.531734,0.422311,0.933503,0.166499,0.832128,0.50955,0.390899,0.384776,0.682932,0.304388,0.0953963,0.494885,0.369255,0.324408,0.768086,0.510771,0.0839476,0.174001,0.914469,0.446673,0.189969,0.113886,0.109703,0.73338,0.351915,0.27759,0.650278,0.590595,0.596196,0.549306,0.893995,0.814455,0.928594,0.767404,0.711043,0.365916,0.854799,0.258028,0.925115,0.886187,0.606191,0.297727,0.99389,0.340502,0.860742,0.967557,0.886969,0.1926,0.188292,0.0404987,0.736714,0.364656,0.445734,0.229956,0.0636939,0.678357,0.361542,0.11885,0.336089,0.038977,0.807603,0.387433,0.502971,0.814498,0.12174,0.477522,0.598205,0.142637,0.882,0.691865,0.155622,0.59756,0.337192,0.441747,0.519445,0.942612,0.339462,0.451434,0.569431,0.882444,0.128155,0.807298,0.642773,0.359424,0.610796,0.0870768,0.340462,0.843116,0.348613,0.160705,0.570719,0.996047,0.772732,0.683836,0.85561,0.346104,0.803804,0.798354,0.525356,0.943988,0.218245,0.274548,0.783411,0.97298,0.584573,0.423464,0.308667,0.716205,0.597979,0.646964,0.688617,0.461482,0.33642,0.269394,0.467241,0.772563,0.793663,0.623574,0.0277137,0.616533,0.206132,0.661939,0.918874,0.75492,0.7826,0.293201,0.427601,0.926241,0.92687,0.366211,0.525967,0.797161,0.469164,0.638085,0.825669,0.857732,0.299313,0.0936456,0.146495,0.287201,0.366895,0.701153,0.997271,0.688669,0.351602,0.560302,0.052946,0.654669,0.508055,0.750756,0.778394,0.372971,0.375714,0.0359328,0.583422,0.124248,0.0994742,0.621057,0.331818,0.709192,0.304056,0.301307,0.875921,0.731077,0.750259,0.670538,0.903524,0.347481,0.471795,0.837453,0.90292,0.749038,0.888404,0.26983,0.779808,0.474414,0.321551,0.936472,0.831861,0.139273,0.666066,0.332653,0.929613,0.969821,0.408355,0.498632,0.526726,0.128091,0.0179099,0.305587,0.176047,0.726846,0.209994,0.404435,0.186096,0.939885,0.775884,0.613315,0.589367,0.778392,0.50588,0.609383,0.679417,0.553771,0.813449,0.0727707,0.0607824,0.169295,0.408076,0.146377,0.0246686,0.877052,0.890999,0.660697,0.267924,0.0878148,0.588178,0.69414,0.276932,0.866482,0.473,0.0297737,0.64282,0.446916,0.449421,0.642069,0.930534,0.81653,0.344404,0.946961,0.636159,0.461887,0.297365,0.794974,0.494652,0.708285,0.302095,0.154042,0.586925,0.312314,0.446788,0.29736,0.345274,0.657875,0.361222,0.989645,0.475694,0.978058,0.796903,0.469236,0.46278,0.240795,0.256051,0.211203,0.955415,0.134642,0.342055,0.890505,0.455548,0.0619597,0.855962,0.274755,0.962975,0.847841,0.131641,0.484406,0.110876,0.91329,0.227455,0.256741,0.295771,0.936501,0.264422,0.00708795,0.784617,0.930247,0.149228,0.750064,0.371945,0.923326,0.745515,0.439785,0.30987,0.281901,0.787057,0.447444,0.5699,0.597677,0.830954,0.300823,0.969986,0.290649,0.530994,0.185613,0.718144,0.194559,0.16375,0.726606,0.447909,0.796836,0.118712,0.526278,0.836051,0.284322,0.224182,0.394448,0.656234,0.867183,0.723667,0.294031,0.76567,0.0190477,0.61514,0.20229,0.450781,0.154539,0.194224,0.160537,0.366733,0.549728,0.701731,0.160599,0.232051,0.960832,0.96625,0.253201,0.747403,0.186169,0.894846,0.324742,0.405344,0.35159,0.665386,0.535259,0.21295,0.305023,0.631833,0.548575,0.495015,0.4008,0.725297,0.367571,0.484303,0.961572,0.113389,0.313417,0.842304,0.144785,0.0982206,0.112176,0.990243,0.770147,0.874025,0.746822,0.0134222,0.830509,0.58595,0.353671,0.262426,0.0103146,0.226431,0.095548,0.246423,0.755995,0.839302,0.570625,0.561693,0.980294,0.661004,0.554924,0.296585,0.413033,0.472191,0.521803,0.86288,0.765363,0.64671,0.40736,0.345877,0.653947,0.674895,0.517732,0.640083,0.584625,0.314864,0.630538,0.961365,0.282284,0.714807,0.626983,0.29312,0.0856957,0.708499,0.430119,0.172763,0.273863,0.801434,0.268636,0.231042,0.960275,0.0361426,0.0903788,0.898324,0.786445,0.960431,0.714306,0.494888,0.477298,0.686918,0.642349,0.992483,0.267813,0.895918,0.897268,0.386779,0.745665,0.434876,0.238561,0.439649,0.188234,0.495852,0.0852882,0.61106,0.200968,0.766492,0.320509,0.549493,0.04439,0.664137,0.554666,0.327968,0.560335,0.87448,0.812475,0.808477,0.649997,0.673756,0.963008,0.589539,0.232362,|0.629259,0.865567,0.362801,0.229838,0.461921,0.631477,0.841441,0.132841,0.668262,0.629438,0.28017,0.740379,0.874357,0.855139,0.80338,0.905594,0.00967926,0.33658,0.273775,0.59681,0.388529,0.655786,0.169033,0.732912,0.451671,0.748653,0.81055,0.171457,0.315954,0.307088,0.629691,0.263137,0.229213,0.781063,0.621763,0.669786,0.580706,0.451063,0.55346,0.745899,0.79175,0.439511,0.527655,0.216311,0.711948,0.647282,0.807165,0.995698,0.939328,0.334592,0.812165,0.404692,0.408292,0.905059,0.28769,0.763124,0.193746,0.00356483,0.17619,0.522818,0.910626,0.0245564,0.154991,0.493579,0.454455,0.081733,0.0726106,0.168334,0.0502762,0.606028,0.240851,0.90174,0.476691,0.765071,0.699208,0.232545,0.611158,0.311494,0.253426,0.015889,0.926685,0.080754,0.230012,0.159338,0.564288,0.712524,0.157139,0.549192,0.187526,0.239623,0.100741,0.304787,0.152425,0.0670553,0.743486,0.981048,0.538254,0.791306,0.867765,0.505352,0.707598,0.773808,0.888355,0.766096,0.968491,0.183605,0.537103,0.187704,0.161845,0.0439903,0.845861,0.860624,0.545456,0.594817,0.580321,0.708774,0.119185,0.738828,0.554142,0.294089,0.736805,0.15133,0.716537,0.2733,0.745391,0.622889,0.512907,0.425799,0.643218,0.043619,0.909364,0.303048,0.139324,0.463773,0.965216,0.0170145,0.749675,0.16678,0.450964,0.112773,0.539324,0.824305,0.87207,0.747751,0.345698,0.999313,0.126121,0.21534,0.6611,0.895007,0.0764544,0.89345,0.88425,0.773431,0.98029,0.825669,0.24332,0.713608,0.295056,0.857212,0.688386,0.617979,0.4273,0.912751,0.836307,0.0247484,0.320531,0.119433,0.405133,0.178587,0.587175,0.151585,0.529294,0.501006,0.251681,0.990957,0.183214,0.467442,0.15459,0.79703,0.446347,0.380029,0.625265,0.426505,0.49949,0.899432,0.848521,0.787302,0.643047,0.0557143,0.266208,0.95475,0.108848,0.75724,0.941073,0.843529,0.603823,0.965193,0.503001,0.241117,0.150938,0.24515,0.261058,0.843095,0.53171,0.77495,0.367514,0.760396,0.176037,0.167874,0.700743,0.91013,0.486165,0.461296,0.115858,0.824441,0.078024,0.374749,0.0263355,0.295572,0.913866,0.254832,0.845159,0.056792,0.132053,0.821151,0.690038,0.82925,0.460879,0.405379,0.854052,0.0324686,0.936122,0.0268231,0.477737,0.367565,0.884354,0.433692,0.832405,0.805593,0.684075,0.00536782,0.702108,0.278435,0.267105,0.516472,0.0996615,0.612924,0.789376,0.406861,0.0464819,0.00326377,0.285245,0.427243,0.665808,0.992818,0.255935,0.657515,0.995804,0.0264455,0.76751,0.205308,0.529071,0.618099,0.152986,0.0615959,0.845415,0.772901,0.0499967,0.648897,0.242169,0.843203,0.00443822,0.159024,0.876342,0.841239,0.617717,0.692852,0.0777028,0.360931,0.0607954,0.770355,0.716074,0.23427,0.198409,0.195743,0.0737278,0.765122,0.192426,0.761005,0.698514,0.0615852,0.371784,0.728503,0.765078,0.288708,0.913052,0.765942,0.186282,0.505336,0.394314,0.257687,0.316935,0.216348,0.365273,0.314393,0.171052,0.0637836,0.225514,0.248843,0.830391,0.839281,0.971836,0.771085,0.910671,0.48275,0.237444,0.534297,0.370487,0.679486,0.376744,0.925957,0.362479,0.389561,0.879349,0.699083,0.787656,0.379667,0.955383,0.582274,0.153281,0.730893,0.473192,0.308951,0.909028,0.338828,0.572495,0.794947,0.757827,0.481282,0.150238,0.261451,0.215352,0.382882,0.639912,0.274865,0.383922,0.291005,0.0689189,0.251752,0.934586,0.0801705,0.989359,0.239219,0.595084,0.410866,0.748226,0.257347,0.233334,0.463538,0.435394,0.118633,0.0270676,0.055684,0.393278,0.444194,0.854732,0.235832,0.00632882,0.62303,0.53913,0.324114,0.567755,0.695233,0.0667399,0.727264,0.908512,0.876456,0.245168,0.743074,0.845268,0.435015,0.172312,0.64085,0.291986,0.0586163,0.565872,0.373186,0.571797,0.466281,0.829703,0.800192,0.204279,0.901128,0.510539,0.309339,0.301614,0.0585259,0.824774,0.957848,0.636774,0.30931,0.0557804,0.199902,0.0283286,0.764961,0.0329185,0.470169,0.880365,0.593336,0.123038,0.845849,0.621019,0.559734,0.166385,0.214507,0.754375,0.659421,0.836447,0.995478,0.83657,0.0891374,0.300625,0.385006,0.789885,0.347384,0.458922,0.122786,0.535234,0.988017,0.222966,0.00281328,0.441651,0.242711,0.00983328,0.372499,0.494935,0.763826,0.326164,0.663585,0.444082,0.00413013,0.239007,0.525529,0.35655,0.442913,0.758347,0.432031,0.928835,0.272974,0.0838776,0.866054,0.910258,0.399743,0.189085,0.0537613,0.778637,0.514498,0.398005,0.208687,0.256265,0.196212,0.0859364,0.521038,0.532189,0.477241,0.245181,0.181135,0.728935,0.84864,0.300397,0.368554,0.599879,0.85068,0.677845,0.105186,0.551244,0.024393,0.306153,0.396935,0.0143078,0.575131,0.904105,0.441142,0.674754,0.389692,0.783338,0.397512,0.519963,0.375731,0.336271,0.427176,0.406381,0.23626,0.584931,0.568918,0.430287,0.502102,0.138478,0.894011,0.706962,0.5065,0.0454488,0.71063,0.186487,0.232516,0.676924,0.970974,0.778157,0.834812,0.340375,0.468861,0.962173,0.196567,0.365719,0.384816,0.9184,0.765269,0.101196,0.687783,0.554049,0.71619,0.767011,0.0191213,0.694225,0.181693,0.495788,0.465275,0.491882,0.515997,0.308724,0.107295,0.41612,0.360742,0.876289,0.688887,0.0154007,0.648466,0.613396,0.00796849,0.707194,0.926715,0.340542,0.290695,0.0647731,0.879558,0.0999208,0.84479,0.98832,0.83784,0.006706,0.686762,0.683989,0.448721,0.881328,0.364267,0.668784,0.622104,0.532303,0.804162,0.796867,0.654132,0.972753,0.327881,0.355938,0.213318,0.0152956,0.307981,0.290636,0.334053,0.953682,0.942302,0.149072,0.016571,0.816205,0.52529,0.49265,0.3879,0.688682,0.636057,0.975117,0.778207,0.421593,0.799802,0.747084,0.589245,0.692598,0.521591,0.48229,0.628916,0.872543,0.933238,0.686631,0.878388,0.264173,0.513401,0.0113899,0.716127,0.256392,0.798885,0.111936,0.478773,0.810416,0.840104,0.066303,0.262502,0.161284,0.822498,0.709032,0.701215,0.0953062,0.67964,0.810963,0.819482,0.541856,0.977047,0.894824,0.775533,0.966275,0.515434,0.0987729,0.839702,0.69448,0.876256,0.0876971,0.42144,0.159163,0.0227829,0.565305,0.892445,0.515819,0.125941,0.544615,0.0810777,0.943555,0.35404,0.374907,0.598176,0.983713,0.120723,0.619341,0.604535,0.555369,0.38512,0.642495,0.917461,0.00152683,0.188431,0.639396,0.760698,0.909712,0.772936,0.79342,0.328376,0.177587,0.350812,0.360099,0.445634,0.529898,0.527264,0.408807,0.125579,0.126223,0.599084,0.929794,0.811876,0.701407,0.0228044,0.952258,0.641904,0.0235098,0.749139,0.677399,0.660146,0.639232,0.911843,0.676385,0.357099,0.887555,0.33439,0.217633,0.326713,0.883108,0.905808,0.476286,0.159178,0.537029,0.836402,0.939675,0.914311,0.244816,0.627627,0.379996,0.053279,0.505882,0.205733,0.197287,0.790706,0.284128,0.629849,0.877951,0.859448,0.621998,0.419879,0.167981,0.118336,0.707165,0.877349,0.879682,0.477427,0.971281,0.123697,0.750392,0.151381,0.910874,0.940974,0.346576,0.59533,0.0827503,0.593112,0.0557722,0.904215,0.868222,0.785616,0.181163,0.335114,0.143962,0.744322,0.650161,0.19071,0.270683,0.504015,0.601694,0.798807,0.0807977,0.229383,0.990894,0.923182,0.737979,0.210259,0.465523,0.868618,0.624023,0.277014,0.26748,0.850075,0.520206,0.253486,0.032508,0.279223,0.409859,0.567819,0.67658,0.325727,0.446156,0.939852,0.187092,0.147512,0.622466,0.624208,0.597273,0.84367,0.33349,0.6499,0.0322271,0.798693,0.710387,0.909144,0.593761,0.00834751,0.944,0.324958,0.410335,0.225409,0.634783,0.744345,0.595577,0.993082,0.0537668,0.138314,0.178083,0.770554,0.380527,0.0596195,0.867024,0.408185,0.40374,0.400868,0.56722,0.421527,0.0138594,0.380263,0.897851,0.00184208,0.00273603,0.713468,0.583881,0.000269949,0.449273,0.14388,0.0635592,0.624049,0.50606,0.933125,0.148888,0.436517,0.960433,0.354093,0.629624,0.630253,0.392506,0.178978,0.679196,0.0522745,0.492186,0.248115,0.863758,0.609377,0.780639,0.687291,0.508413,0.267053,0.49556,0.126994,0.497653,0.118219,0.370148,0.699405,0.661713,0.501004,0.818482,0.50206,0.367639,0.850023,0.770885,0.35743,0.338252,0.464103,0.592922,0.688293,0.371312,0.870673,0.550419,0.669675,0.945779,0.605658,0.996011,0.460847,0.459707,0.526854,0.820765,0.368867,0.586535,0.818382,0.2878,0.748032,0.511657,0.603,0.379209,0.683165,0.240956,0.410089,0.587609,0.912864,0.413478,0.990053,0.84039,0.409238,0.381387,0.0705457,0.101436,0.0018121,0.0847128,0.844856,0.35152,0.520788,0.777873,0.123796,0.121441,0.480554,0.59008,0.292207,0.272665,0.637568,0.216396,0.482638,0.902427,0.246442,0.480043,0.155232,0.901858,0.799831,0.517983,0.0776249,0.906945,0.779032,0.104178,0.851817,0.253991,0.652007,0.737734,0.423785,0.214706,0.514707,0.916488,0.0384122,0.800849,0.026027,0.937172,0.570619,0.0783607,0.309625,0.268677,0.348436,0.79154,0.251604,0.496276,0.74921,0.192693,0.502031,0.347946,0.472658,0.731474,0.993453,0.240135,0.859641,0.348119,0.114217,0.357653,0.272685,0.0568066,0.214463,0.0338537,0.210917,0.951623,0.866533,0.68238,0.54007,0.643006,0.302313,0.420067,0.945636,0.258809,0.805755,0.402872,0.20019,0.748357,0.205655,0.588001,0.836936,0.69461,0.405163,0.413366,0.863739,0.768566,0.640152,0.818125,0.968791,0.262451,0.292378,0.14722,0.512597,0.0985617,0.0962964,0.421282,0.597403,0.0194858,0.857781,0.258888,0.072202,0.231902,0.0615643,0.991125,0.294642,0.940864,0.388263,0.801512,0.474225,0.66165,0.978651,0.448922,0.169599,0.168909,0.537758,0.792125,0.578822,0.863889,0.732577,0.93268,0.0197365,0.37209,0.20636,0.873109,0.894736,0.11335,0.283816,0.900885,0.748036,0.889859,0.124056,|0.800499,0.474638,0.856722,0.341462,0.346953,0.301582,0.104403,0.114091,0.34264,0.0449271,0.370433,0.623992,0.094085,0.746814,0.547097,0.911644,0.392618,0.904183,0.702844,0.398992,0.0921975,0.805439,0.21032,0.0610469,0.318646,0.56245,0.710427,0.828093,0.34411,0.140893,0.426447,0.787597,0.659116,0.367531,0.716777,0.476042,0.392498,0.573358,0.621869,0.279001,0.324391,0.310043,0.00922406,0.181318,0.600881,0.922967,0.443091,0.588159,0.311002,0.828542,0.27059,0.928334,0.839375,0.227426,0.662964,0.237669,0.58187,0.53907,0.106176,0.177606,0.269058,0.63891,0.898213,0.690433,0.324582,0.364053,0.0426424,0.154357,0.62381,0.615585,0.515296,0.983851,0.0357547,0.255454,0.316883,0.713422,0.418122,0.63199,0.797686,0.235386,0.694988,0.374965,0.784378,0.136256,0.851951,0.725209,0.690629,0.772984,0.619474,0.717708,0.587127,0.990753,0.044615,0.810808,0.948427,0.935781,0.410284,0.884944,0.62088,0.0452272,0.910512,0.967819,0.515472,0.39442,0.773299,0.505491,0.083134,0.825076,0.486826,0.577961,0.340619,0.672657,0.398797,0.353242,0.580721,0.629959,0.978636,0.592816,0.212452,0.330692,0.577706,0.203827,0.651285,0.286197,0.392587,0.95134,0.27202,0.186136,0.752716,0.311816,0.864356,0.537329,0.513939,0.940729,0.594039,0.886249,0.168033,0.177531,0.576753,0.197672,0.526357,0.770252,0.577111,0.120645,0.556773,0.134796,0.907401,0.265486,0.532379,0.13324,0.610766,0.851775,0.217997,0.847517,0.670752,0.971227,0.499413,0.864732,0.290694,0.919855,0.737049,0.230904,0.469142,0.978981,0.0395174,0.807732,0.891034,0.0713111,0.917844,0.961189,0.709229,0.852421,0.346428,0.356119,0.698949,0.0661122,0.951735,0.134055,0.423935,0.775852,0.177349,0.369268,0.905571,0.128712,0.818431,0.166356,0.050316,0.248515,0.938832,0.527338,0.670724,0.0521312,0.928823,0.194868,0.688496,0.345355,0.0426351,0.230239,0.269792,0.957628,0.0885352,0.278643,0.721708,0.722366,0.364283,0.137136,0.855339,0.439424,0.272372,0.430953,0.321585,0.514459,0.565407,0.821537,0.735931,0.128348,0.49943,0.546181,0.237993,0.818023,0.810706,0.0338037,0.146877,0.145612,0.614903,0.924077,0.791374,0.212096,0.815929,0.683488,0.557474,0.204327,0.852587,0.293144,0.5795,0.604555,0.262623,0.242244,0.368176,0.627747,0.581199,0.185054,0.978568,0.967619,0.462544,0.129941,0.645453,0.466243,0.525996,0.698415,0.141954,0.794269,0.813286,0.269816,0.319419,0.895431,0.576563,0.550664,0.261065,0.627999,0.819108,0.695185,0.419621,0.542241,0.0241494,0.65197,0.811382,0.542854,0.87136,0.805076,0.386443,0.496521,0.48934,0.645253,0.899554,0.0949703,0.667965,0.0627698,0.796609,0.413202,0.669477,0.400195,0.533593,0.730545,0.802701,0.531547,0.133377,0.141243,0.64229,0.615111,0.901885,0.890935,0.964488,0.728978,0.969641,0.358417,0.372056,0.143142,0.890554,0.314424,0.930239,0.705408,0.736983,0.575705,0.60074,0.143755,0.643833,0.945843,0.3793,0.985034,0.598657,0.72492,0.835997,0.955221,0.409939,0.846821,0.733692,0.446287,0.807391,0.933385,0.639699,0.628232,0.833016,0.332008,0.00763679,0.0638532,0.556393,0.58411,0.903449,0.335181,0.75289,0.187211,0.829166,0.704104,0.606694,0.133762,0.255984,0.842871,0.345305,0.0667408,0.839991,0.269146,0.144027,0.502068,0.574292,0.330049,0.890688,0.897266,0.505767,0.521775,0.293885,0.438927,0.442682,0.649551,0.495395,0.813381,0.125784,0.374421,0.839787,0.428446,0.310969,0.609336,0.228193,0.725185,0.859485,0.859004,0.567987,0.395036,0.174303,0.605719,0.35727,0.578799,0.539385,0.530731,0.654107,0.173643,0.377892,0.577358,0.861746,0.549791,0.362694,0.070689,0.588525,0.352338,0.455895,0.321766,0.892061,0.497454,0.500773,0.989906,0.0721842,0.483726,0.981767,0.515024,0.120658,0.223984,0.535862,0.281256,0.0723876,0.395543,0.806582,0.416883,0.822723,0.606659,0.130528,0.936279,0.163277,0.0812364,0.329497,0.956619,0.236623,0.65218,0.5959,0.381914,0.405864,0.151845,0.740106,0.560594,0.44511,0.511001,0.775075,0.457292,0.854699,0.6534,0.822365,0.310072,0.0516891,0.615549,0.711707,0.825723,0.150386,0.855712,0.0327013,0.0434006,0.264613,0.295606,0.938478,0.155988,0.51484,0.319577,0.544571,0.916165,0.512333,0.260682,0.87558,0.232748,0.19592,0.327622,0.400869,0.66169,0.64382,0.407641,0.359657,0.157054,0.0437021,0.548108,0.541612,0.289758,0.0289451,0.222474,0.905639,0.121562,0.229769,0.387833,0.0246585,0.170374,0.45847,0.758224,0.704894,0.960821,0.594026,0.787894,0.150542,0.853078,0.873914,0.0132027,0.691761,0.569287,0.612976,0.167585,0.732677,0.438684,0.147053,0.340602,0.474999,0.923571,0.512749,0.669159,0.419382,0.258092,0.337153,0.441985,0.420286,0.00234503,0.748156,0.488442,0.579369,0.135281,0.206077,0.680717,0.343919,0.599124,0.840394,0.556389,0.954015,0.32574,0.187551,0.562132,0.443077,0.522639,0.366838,0.767133,0.441121,0.481545,0.218681,0.306318,0.614158,0.293522,0.310649,0.383795,0.998198,0.750135,0.598409,0.279279,0.43106,0.862028,0.70662,0.73167,0.996377,0.679981,0.501794,0.423955,0.164757,0.585203,0.085631,0.0197141,0.478149,0.676863,0.00164801,0.0799679,0.941128,0.00680429,0.420434,0.00484103,0.454992,0.141271,0.862456,0.654515,0.877079,0.880753,0.286252,0.0291926,0.344704,0.122961,0.198812,0.146859,0.506256,0.098469,0.579698,0.610482,0.730656,0.0932271,0.0699144,0.0977169,0.148652,0.420513,0.887725,0.508188,0.633893,0.932939,0.178178,0.134867,0.207735,0.791826,0.0613782,0.48677,0.479007,0.610361,0.0998276,0.984726,0.193504,0.721734,0.504226,0.886961,0.989935,0.486037,0.503222,0.632579,0.658913,0.734112,0.462594,0.595691,0.937586,0.54965,0.104442,0.584798,0.246185,0.676214,0.441168,0.134992,0.0722924,0.839577,0.862943,0.507487,0.00362879,0.894455,0.544265,0.18792,0.298564,0.512138,0.66225,0.699007,0.227717,0.746298,0.905215,0.38703,0.0686501,0.811156,0.613614,0.296286,0.610704,0.338946,0.288033,0.646142,0.22563,0.611499,0.0914937,0.46568,0.989218,0.696445,0.210758,0.330586,0.271428,0.993927,0.0481376,0.589244,0.20559,0.123697,0.941016,0.404156,0.00968152,0.132916,0.182336,0.628783,0.501988,0.50638,0.482848,0.193715,0.744598,0.789673,0.414357,0.0841119,0.881805,0.593238,0.0683509,0.880283,0.499453,0.903034,0.0911555,0.750711,0.513844,0.0760491,0.501255,0.944441,0.712413,0.803996,0.518498,0.777205,0.533137,0.545046,0.190821,0.274554,0.092764,0.712941,0.31192,0.295156,0.805744,0.47303,0.769033,0.544507,0.747327,0.0483629,0.905052,0.990133,0.234365,0.705932,0.951505,0.607579,0.0593432,0.596848,0.932249,0.755789,0.203196,0.966613,0.0679381,0.632114,0.0944511,0.398567,0.499172,0.281195,0.816015,0.344021,0.265626,0.311053,0.810561,0.77511,0.797288,0.615925,0.900766,0.608372,0.738041,0.811061,0.308762,0.989873,0.198694,0.293069,0.700458,0.43913,0.752087,0.42054,0.0146427,0.0179157,0.276632,0.728112,0.661665,0.695146,0.544903,0.229008,0.817441,0.218381,0.0866109,0.490676,0.152577,0.406695,0.208517,0.773985,0.95332,0.577964,0.261178,0.60732,0.339716,0.781816,0.865895,0.135556,0.48732,0.395727,0.045386,0.697848,0.833776,0.635218,0.493578,0.033859,0.236532,0.114228,0.635028,0.0242869,0.729108,0.68115,0.234569,0.107243,0.326001,0.601199,0.522899,0.248883,0.532468,0.46355,0.735713,0.0425187,0.954413,0.992971,0.954367,0.595041,0.168491,0.572166,0.572071,0.265168,0.932059,0.490958,0.251774,0.715727,0.499936,0.14812,0.703747,0.89799,0.493068,0.899112,0.784373,0.472943,0.068027,0.489737,0.75082,0.578138,0.834101,0.687659,0.748662,0.191106,0.822887,0.899884,0.389088,0.755766,0.733106,0.35096,0.344372,0.849311,0.907183,0.850127,0.0235271,0.887407,0.242656,0.443362,0.0329841,0.235763,0.429522,0.0192917,0.183459,0.924563,0.204139,0.0336754,0.123781,0.119645,0.257839,0.531624,0.853478,0.117708,0.97702,0.0244199,0.394675,0.796485,0.296457,0.875655,0.827597,0.17124,0.951546,0.782229,0.899753,0.614873,0.306316,0.499552,0.149542,0.668613,0.711032,0.537475,0.924239,0.25761,0.34362,0.845684,0.379952,0.654286,0.825739,0.303818,0.248854,0.619276,0.425571,0.581177,0.367258,0.936494,0.641521,0.645548,0.275305,0.805779,0.194305,0.169921,0.696626,0.808509,0.966295,0.429599,0.528349,0.156848,0.817427,0.962045,0.314805,0.943267,0.604959,0.307942,0.7191,0.706401,0.277935,0.875404,0.681186,0.599028,0.222401,0.403744,0.169117,0.481957,0.751875,0.379916,0.938059,0.403954,0.853299,0.899262,0.918581,0.990797,0.911215,0.0861438,0.500379,0.105902,0.396262,0.256804,0.845347,0.06354,0.0393685,0.166813,0.488513,0.271683,0.15864,0.744363,0.147231,0.11937,0.897418,0.344315,0.00617844,0.660124,0.555027,0.428404,0.634023,0.281685,0.829868,0.133706,0.599974,0.935982,0.736524,0.432381,0.671573,0.849576,0.272856,0.986891,0.837373,0.406907,0.199843,0.916996,0.917444,0.94221,0.64001,0.947426,0.308135,0.966866,0.51282,0.324907,0.314091,0.458132,0.219691,0.917985,0.840726,0.897718,0.355863,0.513856,0.677144,0.298074,0.609796,0.303817,0.00508225,0.062199,0.364227,0.455056,0.596768,0.961299,0.465108,0.369966,0.894386,0.504884,0.951524,0.583148,0.952881,0.241723,0.720783,0.329262,0.391342,0.0371642,0.306109,0.315089,0.636495,0.364786,0.938606,0.743626,0.33987,0.650285,0.742132,0.0411254,0.289039,0.717121,0.170815,0.743432,0.376764,0.54955,0.901305,0.0193732,0.972468,0.615927,0.413515,0.100564,0.00381309,0.428325,0.269794,0.679876,0.098174,0.162108,0.859285,0.245331,0.513072,0.125849,|0.500519,0.380294,0.22838,0.798531,0.933455,0.276739,0.396844,0.0786453,0.657093,0.644189,0.89695,0.505978,0.51666,0.385786,0.716967,0.0288777,0.184891,0.162933,0.595498,0.370576,0.683353,0.125152,0.357149,0.839274,0.634729,0.686772,0.776902,0.217578,0.205183,0.122178,0.437161,0.221649,0.310524,0.607315,0.487648,0.783438,0.0468985,0.695363,0.919156,0.442696,0.638307,0.67419,0.701593,0.753675,0.814662,0.168247,0.325145,0.479654,0.950756,0.110118,0.598299,0.749416,0.685123,0.860911,0.82005,0.00955003,0.234375,0.0605659,0.297209,0.217968,0.449867,0.645263,0.674563,0.652418,0.00832969,0.801999,0.893168,0.466308,0.857604,0.67973,0.456318,0.939665,0.190801,0.62259,0.501909,0.671224,0.211615,0.0842589,0.866567,0.0542474,0.121774,0.180982,0.478174,0.589778,0.955815,0.946238,0.182607,0.153108,0.696334,0.537628,0.388014,0.841693,0.139294,0.454174,0.997301,0.29903,0.774697,0.294714,0.548506,0.755688,0.364172,0.920108,0.356134,0.241794,0.509891,0.150217,0.218741,0.937455,0.452441,0.739248,0.352919,0.178076,0.748215,0.253808,0.239736,0.765644,0.42452,0.456602,0.970038,0.698936,0.331115,0.428447,0.819228,0.702563,0.366499,0.528223,0.242923,0.471232,0.322094,0.497348,0.969637,0.279356,0.871227,0.625892,0.967046,0.158529,0.276846,0.630552,0.909023,0.6499,0.0482724,0.247172,0.53412,0.526362,0.784014,0.904043,0.566669,0.668943,0.00830173,0.0132561,0.523088,0.860237,0.112597,0.163495,0.195938,0.145425,0.507948,0.129123,0.858887,0.971641,0.58547,0.558111,0.593779,0.800797,0.769965,0.275157,0.490628,0.623183,0.754896,0.96895,0.231887,0.0474872,0.940709,0.15727,0.098953,0.457017,0.600998,0.870583,0.175138,0.472149,0.331617,0.836804,0.740651,0.176747,0.381543,0.388332,0.587769,0.965333,0.584851,0.930828,0.672982,0.147317,0.266921,0.853884,0.183349,0.348612,0.676472,0.625772,0.940872,0.95443,0.973797,0.15978,0.830966,0.399976,0.311225,0.885706,0.164721,0.489547,0.659369,0.544448,0.33887,0.548053,0.790443,0.931743,0.725109,0.68134,0.205338,0.737566,0.957118,0.542138,0.711174,0.671632,0.0599486,0.330829,0.241086,0.0406105,0.0253191,0.66732,0.813734,0.838582,0.341298,0.996249,0.667936,0.311516,0.768869,0.492225,0.541217,0.351521,0.999702,0.031654,0.207733,0.968057,0.412238,0.984501,0.0723819,0.465784,0.75855,0.339553,0.505108,0.455312,0.191615,0.585975,0.587383,0.611324,0.128946,0.488445,0.647556,0.014344,0.0646104,0.881381,0.323162,0.0784338,0.108542,0.252902,0.297463,0.0753272,0.739195,0.725705,0.100961,0.215409,0.65403,0.863406,0.803941,0.905687,0.839912,0.808429,0.21441,0.999611,0.67108,0.799952,0.709436,0.909211,0.675664,0.646526,0.728819,0.513257,0.0837062,0.657691,0.516078,0.214575,0.695152,0.458709,0.669386,0.221886,0.600626,0.568455,0.18516,0.509275,0.182048,0.419148,0.877355,0.538924,0.45101,0.323002,0.671029,0.759373,0.986658,0.701842,0.933778,0.4869,0.421741,0.623148,0.849311,0.269027,0.364739,0.286648,0.991789,0.067183,0.445123,0.898682,0.195407,0.724376,0.431678,0.728068,0.510894,0.166015,0.631487,0.308323,0.0412468,0.617214,0.272723,0.861288,0.843978,0.0124903,0.846579,0.775295,0.955755,0.706586,0.915415,0.0743418,0.19931,0.0657024,0.403296,0.230959,0.823914,0.891778,0.226313,0.785948,0.780277,0.18107,0.515019,0.790067,0.0929141,0.0901907,0.579275,0.650595,0.536996,0.177434,0.183169,0.0507308,0.33971,0.743511,0.124633,0.0130724,0.777389,0.404459,0.218786,0.0808122,0.212387,0.594569,0.89571,0.928753,0.0471488,0.643239,0.434399,0.979053,0.177316,0.881045,0.5639,0.47413,0.78849,0.905065,0.896408,0.129181,0.483783,0.807865,0.303842,0.162469,0.312365,0.114012,0.585272,0.626676,0.848395,0.671502,0.720961,0.57104,0.403881,0.92328,0.378201,0.0991896,0.695133,0.563007,0.777885,0.621373,0.801384,0.972866,0.0581295,0.0936457,0.119666,0.795478,0.0499057,0.245376,0.210852,0.936542,0.946104,0.533848,0.00830424,0.856221,0.625618,0.650884,0.981278,0.935656,0.520983,0.280138,0.877252,0.120873,0.823787,0.599104,0.170173,0.94327,0.614341,0.264646,0.337302,0.966996,0.585184,0.468282,0.0501772,0.923359,0.921096,0.757859,0.635524,0.901982,0.0374722,0.299767,0.762537,0.841249,0.428704,0.519793,0.711339,0.662817,0.276724,0.355891,0.357135,0.90525,0.913971,0.114475,0.648035,0.359516,0.129818,0.235487,0.685212,0.734677,0.49812,0.90831,0.87284,0.168593,0.179863,0.801232,0.81187,0.291646,0.68314,0.593069,0.946199,0.593934,0.118143,0.643965,0.71317,0.256568,0.300667,0.158139,0.924579,0.303734,0.162144,0.774961,0.37322,0.263815,0.879027,0.426085,0.501065,0.236017,0.9705,0.925332,0.401216,0.366223,0.67175,0.12855,0.451984,0.0766893,0.666583,0.642424,0.649427,0.960477,0.680337,0.199811,0.389494,0.0485895,0.555645,0.329384,0.832775,0.932083,0.875624,0.0575099,0.544685,0.276758,0.145493,0.958307,0.328955,0.59732,0.426847,0.864605,0.336292,0.603699,0.0961444,0.718014,0.0182086,0.638792,0.134731,0.139366,0.831714,0.582761,0.828123,0.190672,0.936738,0.227014,0.214938,0.018159,0.42468,0.889171,0.366025,0.424505,0.632359,0.118014,0.35077,0.352432,0.942609,0.791565,0.820353,0.0722042,0.265826,0.710852,0.931872,0.606309,0.137703,0.327884,0.0969846,0.905045,0.19292,0.378426,0.983869,0.692641,0.762403,0.25482,0.741274,0.318758,0.848799,0.915131,0.92766,0.249912,0.273917,0.180244,0.620624,0.642096,0.377977,0.483201,0.231169,0.708017,0.182611,0.971995,0.0471709,0.81134,0.409784,0.529833,0.17486,0.241459,0.337016,0.819228,0.87582,0.179566,0.378032,0.425741,0.750771,0.623327,0.0160945,0.62275,0.309985,0.994394,0.704775,0.73615,0.37277,0.991088,0.683873,0.560743,0.726036,0.985316,0.0877907,0.377585,0.983359,0.263415,0.38308,0.869069,0.393811,0.85967,0.1887,0.488227,0.592326,0.68156,0.750923,0.868478,0.640454,0.730919,0.0152385,0.451511,0.962807,0.465808,0.638583,0.0662893,0.958647,0.0912067,0.165038,0.593965,0.615828,0.709867,0.88961,0.313732,0.953912,0.323953,0.928024,0.517903,0.0739007,0.784482,0.944314,0.951486,0.295165,0.400101,0.0303589,0.11549,0.648907,0.346148,0.768135,0.0233947,0.125681,0.703063,0.169001,0.255009,0.228904,0.900587,0.795787,0.886757,0.0185024,0.122133,0.277748,0.810387,0.401213,0.577581,0.828876,0.792987,0.723251,0.0412025,0.352218,0.194235,0.741809,0.0976124,0.751291,0.829956,0.376807,0.149207,0.834252,0.0226527,0.770253,0.116751,0.387958,0.348342,0.640676,0.610086,0.251094,0.640433,0.330408,0.7423,0.0183877,0.552811,0.0506029,0.832224,0.496826,0.341302,0.635727,0.801791,0.489182,0.0537408,0.195256,0.811151,0.677923,0.0988069,0.772288,0.994661,0.435148,0.273332,0.259019,0.46237,0.733215,0.976935,0.890684,0.141266,0.612977,0.646981,0.243302,0.922294,0.123668,0.126898,0.333959,0.955602,0.334693,0.747722,0.894669,0.544377,0.751663,0.343314,0.365249,0.855082,0.714249,0.293977,0.741532,0.400901,0.882666,0.675848,0.735397,0.878135,0.357186,0.161863,0.241827,0.319533,0.367295,0.742169,0.511681,0.0109833,0.282229,0.162077,0.462247,0.951558,0.59047,0.883657,0.975338,0.601487,0.873054,0.595155,0.184249,0.261619,0.972122,0.971636,0.0461888,0.287671,0.922065,0.226236,0.619204,0.00223607,0.56145,0.171631,0.167372,0.903398,0.599646,0.0137787,0.949528,0.727356,0.546986,0.959978,0.99076,0.196118,0.00197119,0.867568,0.366531,0.833635,0.596188,0.939205,0.215827,0.196329,0.103111,0.6601,0.00118792,0.11638,0.0730224,0.272386,0.256614,0.0715185,0.0958531,0.452464,0.133408,0.333031,0.603557,0.0111541,0.198342,0.145446,0.0890573,0.719147,0.987444,0.23004,0.942982,0.767636,0.582675,0.0631758,0.114203,0.200017,0.444593,0.970429,0.438993,0.157173,0.32817,0.953447,0.0120444,0.497086,0.899183,0.687923,0.514626,0.446415,0.39294,0.146788,0.745678,0.00596726,0.590269,0.223265,0.370246,0.125156,0.041012,0.933336,0.955287,0.657119,0.22474,0.734422,0.782275,0.214941,0.222543,0.943096,0.315138,0.924709,0.511171,0.94793,0.585586,0.159552,0.0232683,0.242379,0.435972,0.846648,0.462042,0.720222,0.849834,0.675456,0.13417,0.539739,0.130931,0.94234,0.676145,0.298692,0.452397,0.876391,0.26864,0.912509,0.671216,0.742782,0.56377,0.022191,0.223197,0.929082,0.0356817,0.217493,0.266609,0.710356,0.462468,0.892033,0.383879,0.538325,0.612665,0.42595,0.950093,0.36942,0.232262,0.346881,0.52274,0.747871,0.736608,0.648923,0.613362,0.934854,0.692452,0.186079,0.642923,0.154283,0.712539,0.912155,0.109122,0.530204,0.509407,0.666477,0.0898608,0.822344,0.566616,0.57071,0.260504,0.638039,0.0988234,0.1831,0.386751,0.265242,0.551371,0.367634,0.43972,0.901257,0.595496,0.416082,0.0710602,0.609423,0.74711,0.31077,0.801781,0.450851,0.62803,0.00338858,0.228971,0.916297,0.170409,0.0379095,0.139904,0.749306,0.68474,0.623318,0.249928,0.954627,0.096878,0.797697,0.643481,0.999007,0.509018,0.698398,0.100263,0.869793,0.28638,0.664722,0.531547,0.245426,0.0176525,0.547573,0.344858,0.559227,0.0104329,0.509054,0.988993,0.263089,0.0552572,0.1877,0.53073,0.665449,0.304213,0.0372474,0.0599215,0.0524462,0.436856,0.988944,0.379768,0.226014,0.463183,0.447716,0.843723,0.921934,0.584097,0.153692,0.0234988,0.4603,0.521196,0.204774,0.648836,0.924783,0.828892,0.601731,0.135047,0.643565,0.155685,0.422059,0.662405,0.36374,0.7478,0.978633,0.554855,0.751838,0.190545,0.960531,0.279749,0.273998,0.379863,0.085905,0.796616,0.897587,0.347179,0.427742,|0.810325,0.937248,0.99477,0.471328,0.0725057,0.00292093,0.267591,0.621189,0.492749,0.315332,0.633156,0.000929534,0.155346,0.866056,0.882915,0.146208,0.20549,0.524267,0.679903,0.379551,0.458967,0.683855,0.443551,0.040977,0.313481,0.138674,0.469333,0.649967,0.0274218,0.831199,0.140702,0.630926,0.245749,0.910256,0.847718,0.612276,0.460053,0.341189,0.528213,0.179644,0.659686,0.453036,0.694921,0.100438,0.526377,0.574127,0.149878,0.577313,0.279338,0.449881,0.869104,0.651675,0.425761,0.499835,0.791698,0.729208,0.89491,0.807128,0.174137,0.285525,0.677755,0.536798,0.674948,0.0206288,0.477771,0.321875,0.433478,0.163595,0.947152,0.937359,0.535508,0.125095,0.429605,0.584766,0.924647,0.232189,0.926162,0.686717,0.839621,0.298004,0.983766,0.444586,0.502369,0.336078,0.123181,0.758199,0.0475614,0.902833,0.802841,0.039919,0.0620964,0.174375,0.0387225,0.910253,0.0331484,0.951997,0.8132,0.290518,0.589473,0.978661,0.639903,0.430837,0.555858,0.51817,0.566986,0.129291,0.181935,0.0731167,0.142196,0.982689,0.179411,0.478494,0.689884,0.837844,0.263133,0.928554,0.394459,0.855626,0.500635,0.590274,0.68817,0.472839,0.632303,0.289101,0.673226,0.726726,0.149815,0.509234,0.428517,0.986546,0.846134,0.571938,0.386209,0.697191,0.646623,0.492139,0.431108,0.691474,0.441536,0.762083,0.557493,0.764411,0.596042,0.29395,0.585596,0.396243,0.0460829,0.787956,0.342831,0.509341,0.394099,0.954701,0.0434734,0.163235,0.420741,0.050724,0.224065,0.384907,0.474636,0.596032,0.624298,0.925115,0.95029,0.0656751,0.813945,0.0964975,0.331763,0.99167,0.351673,0.905128,0.579463,0.499224,0.811763,0.907685,0.501438,0.88887,0.536391,0.808701,0.0500606,0.603167,0.933649,0.809682,0.605739,0.674775,0.0451502,0.96639,0.237076,0.220642,0.669641,0.57752,0.236051,0.828248,0.908951,0.665765,0.0856225,0.16591,0.141142,0.867955,0.966607,0.90612,0.418321,0.0955868,0.828342,0.394553,0.274065,0.00981182,0.00418973,0.873857,0.448917,0.188581,0.895988,0.550407,0.76895,0.29016,0.570431,0.438647,0.772693,0.459371,0.427699,0.100005,0.878116,0.805029,0.92918,0.651894,0.970021,0.664707,0.469607,0.40426,0.413292,0.639216,0.375516,0.799912,0.964172,0.0216608,0.094067,0.286116,0.382997,0.75787,0.110522,0.179426,0.834959,0.53838,0.360693,0.433524,0.802229,0.0340747,0.149022,0.122857,0.701223,0.401327,0.14531,0.0384485,0.696039,0.272991,0.648009,0.585093,0.11909,0.878076,0.0488572,0.227632,0.424712,0.0101612,0.541472,0.223476,0.805547,0.44678,0.683383,0.34488,0.747922,0.548726,0.141029,0.907362,0.160074,0.668981,0.30041,0.153883,0.999822,0.0116136,0.211481,0.779764,0.335903,0.247593,0.318282,0.55934,0.185508,0.575725,0.657088,0.344289,0.440664,0.82756,0.474557,0.501304,0.304972,0.577461,0.82286,0.631397,0.637669,0.977019,0.934511,0.140431,0.015729,0.702072,0.152847,0.0507587,0.333538,0.196633,0.325911,0.266144,0.959741,0.372785,0.0695537,0.281788,0.38813,0.798132,0.0175117,0.805282,0.966264,0.100331,0.0867452,0.246184,0.20651,0.187056,0.056555,0.641011,0.708694,0.682964,0.441313,0.802742,0.505449,0.531348,0.954493,0.480947,0.128415,0.0932208,0.561921,0.0439216,0.183277,0.0823634,0.789649,0.978808,0.399048,0.510831,0.594697,0.955682,0.761245,0.929926,0.475003,0.720639,0.193608,0.658686,0.210691,0.189365,0.151347,0.445234,0.976032,0.617192,0.689727,0.685651,0.0748163,0.427993,0.766395,0.10835,0.171467,0.673822,0.803156,0.640392,0.668665,0.190499,0.268924,0.684405,0.869965,0.315588,0.751198,0.586871,0.590955,0.842239,0.0176046,0.31627,0.446411,0.594781,0.104654,0.423121,0.540381,0.774967,0.678852,0.396628,0.117539,0.909384,0.82462,0.895316,0.523663,0.0936345,0.119356,0.591455,0.649879,0.557949,0.574373,0.333796,0.629729,0.827796,0.0225087,0.948908,0.870277,0.509202,0.894432,0.637728,0.352679,0.458113,0.80749,0.996856,0.0149356,0.0909489,0.0865837,0.417851,0.814198,0.941095,0.211849,0.769599,0.545712,0.618029,0.691229,0.701261,0.199908,0.138906,0.214779,0.41727,0.484806,0.240416,0.0986097,0.184239,0.22972,0.0610439,0.440125,0.272838,0.975797,0.510916,0.196821,0.956664,0.93826,0.926304,0.639247,0.804161,0.842341,0.673912,0.196048,0.471705,0.568199,0.356088,0.0345487,0.551831,0.530592,0.342651,0.742595,0.0840473,0.545368,0.0775601,0.342979,0.551086,0.247611,0.623765,0.0496663,0.0263345,0.628925,0.452707,0.0857181,0.190864,0.302476,0.592572,0.270548,0.504981,0.611947,0.441101,0.0491124,0.879843,0.447582,0.420389,0.89788,0.823489,0.157552,0.408099,0.624838,0.544957,0.552083,0.332083,0.54887,0.292725,0.725359,0.262943,0.504478,0.901222,0.646412,0.466874,0.367994,0.95744,0.852681,0.453003,0.052249,0.862723,0.00927299,0.836509,0.656899,0.55097,0.11756,0.520972,0.304175,0.315842,0.906917,0.149307,0.0500209,0.862925,0.513804,0.711375,0.847774,0.692148,0.583152,0.843572,0.412352,0.829668,0.205133,0.309783,0.34196,0.928226,0.679675,0.291126,0.489482,0.395749,0.554148,0.167539,0.923065,0.828227,0.577969,0.432946,0.117642,0.544779,0.185584,0.337595,0.450164,0.826782,0.45658,0.00129944,0.825383,0.824427,0.189217,0.272052,0.412102,0.221332,0.227,0.0928854,0.254866,0.496215,0.141839,0.310882,0.0710391,0.222577,0.0114254,0.489046,0.94423,0.141432,0.655904,0.524056,0.215037,0.408911,0.124746,0.619518,0.756029,0.743596,0.466978,0.196647,0.238815,0.881511,0.309187,0.558052,0.168672,0.325725,0.755205,0.63026,0.0265292,0.12541,0.823128,0.806912,0.729344,0.327699,0.533003,0.214783,0.516802,0.00720572,0.792657,0.888081,0.671709,0.812515,0.825765,0.755454,0.522465,0.933783,0.549338,0.16296,0.554967,0.714985,0.130988,0.324276,0.636293,0.179737,0.499838,0.678481,0.308348,0.114342,0.960713,0.690723,0.748399,0.506793,0.852987,0.639755,0.673328,0.424577,0.730443,0.00558388,0.247531,0.335397,0.374383,0.456715,0.119893,0.573738,0.422054,0.192296,0.42,0.0916749,0.742824,0.795841,0.846364,0.0309188,0.436732,0.315483,0.0202405,0.57559,0.342999,0.0540352,0.805848,0.0258357,0.772511,0.082499,0.302317,0.218724,0.785631,0.713424,0.236235,0.556632,0.00377828,0.284277,0.563675,0.743073,0.311512,0.777337,0.794524,0.906125,0.218474,0.0841535,0.830312,0.415234,0.00103575,0.39376,0.607407,0.566206,0.373466,0.256193,0.652096,0.739081,0.251555,0.0527544,0.494017,0.354023,0.0641496,0.660669,0.895159,0.589594,0.20734,0.150729,0.241618,0.944391,0.333128,0.671774,0.0364656,0.968932,0.751697,0.963269,0.762886,0.990161,0.753301,0.751884,0.604522,0.474947,0.745206,0.993854,0.572109,0.404277,0.893816,0.855866,0.418836,0.392847,0.523974,0.305952,0.68573,0.903576,0.07235,0.318185,0.206636,0.684296,0.437658,0.149227,0.654711,0.336197,0.996,0.270678,0.861326,0.792049,0.454962,0.907124,0.893889,0.69448,0.803354,0.748736,0.159275,0.834376,0.803165,0.517049,0.326946,0.130963,0.640621,0.569265,0.723335,0.791727,0.242561,0.946876,0.315339,0.0443289,0.34061,0.467607,0.695345,0.179341,0.204241,0.87042,0.847853,0.625334,0.435455,0.434475,0.61929,0.141705,0.839621,0.304868,0.592986,0.0152659,0.44575,0.990377,0.739089,0.792103,0.341774,0.489869,0.0189563,0.368351,0.952854,0.851011,0.510024,0.951001,0.298649,0.46398,0.936313,0.0343459,0.34953,0.805466,0.0911032,0.370064,0.571526,0.534436,0.115041,0.284226,0.169431,0.01142,0.236437,0.605154,0.268295,0.654165,0.528124,0.982038,0.838655,0.856851,0.84085,0.0446926,0.228972,0.895642,0.0439157,0.435359,0.704616,0.772792,0.664632,0.628784,0.473214,0.728457,0.643202,0.299271,0.0158184,0.465343,0.965737,0.0222375,0.0872624,0.370498,0.503498,0.463773,0.0394409,0.254476,0.496372,0.501748,0.45225,0.492002,0.853215,0.248875,0.697185,0.520719,0.81619,0.336146,0.856988,0.241133,0.401858,0.222455,0.835628,0.763142,0.619336,0.331165,0.600831,0.304057,0.586564,0.318778,0.932177,0.149324,0.864067,0.71166,0.517943,0.113058,0.948623,0.721459,0.443946,0.231799,0.558315,0.13862,0.121581,0.936552,0.204534,0.0624812,0.64801,0.74558,0.0469877,0.49527,0.777902,0.607188,0.632566,0.885127,0.116713,0.381516,0.285121,0.99543,0.0262213,0.993567,0.236781,0.0203906,0.0929278,0.0377679,0.646985,0.362013,0.243529,0.457884,0.614945,0.898867,0.343042,0.0276871,0.458032,0.248193,0.726952,0.211629,0.508334,0.251247,0.177252,0.519461,0.167061,0.778739,0.502511,0.032997,0.883767,0.412382,0.472479,0.85315,0.208689,0.992398,0.180492,0.319658,0.203858,0.454935,0.575156,0.273977,0.247426,0.797465,0.228814,0.533729,0.909168,0.626717,0.375884,0.0685298,0.779648,0.142887,0.104055,0.717512,0.910719,0.470574,0.592511,0.924445,0.200556,0.400107,0.840703,0.467781,0.492197,0.14877,0.946898,0.110106,0.386746,0.720591,0.710113,0.200336,0.31812,0.405191,0.200524,0.344245,0.564159,0.147485,0.863467,0.246077,0.460158,0.50919,0.727879,0.994848,0.0513786,0.472731,0.567745,0.906808,0.225037,0.731271,0.613524,0.0491592,0.847581,0.620594,0.323699,0.0293152,0.895637,0.9299,0.903769,0.721275,0.596008,0.51056,0.697518,0.017809,0.914281,0.248905,0.833069,0.940135,0.0543138,0.880055,0.918754,0.147632,0.372943,0.202542,0.077602,0.969777,0.499107,0.702733,0.406455,0.353637,0.590797,0.339648,0.976804,0.820141,0.295977,0.734509,0.120625,0.472491,0.362016,0.717336,0.40951,0.629315,0.891133,0.863645,0.496878,0.839688,0.854595,0.768864,0.776404,0.523569,0.38453,0.91757,0.449067,0.626019,0.32798,0.866761,0.806581,0.92855,|0.0685585,0.718986,0.657393,0.0375665,0.721993,0.59457,0.283992,0.89761,0.30792,0.67047,0.511627,0.241407,0.902046,0.756569,0.0533121,0.16745,0.0915072,0.880626,0.0521656,0.995354,0.211284,0.128024,0.234898,0.685016,0.561978,0.430753,0.863441,0.122645,0.212814,0.309876,0.636898,0.687528,0.00776386,0.676598,0.324908,0.338293,0.913998,0.77753,0.868986,0.619096,0.99291,0.286422,0.420308,0.0485249,0.0663818,0.534025,0.131368,0.0839664,0.802488,0.845493,0.739396,0.880636,0.320046,0.893654,0.268532,0.1008,0.231684,0.162921,0.362273,0.502434,0.782366,0.831476,0.11369,0.645146,0.0105805,0.72972,0.83465,0.0239837,0.761875,0.545137,0.0518084,0.176413,0.518712,0.222323,0.616154,0.507879,0.101568,0.977794,0.223971,0.123196,0.995348,0.68116,0.672768,0.121411,0.905187,0.435156,0.879564,0.238011,0.531838,0.626899,0.731831,0.59744,0.907978,0.365516,0.498038,0.7586,0.763019,0.0346332,0.479117,0.489721,0.927676,0.336001,0.0184977,0.973925,0.926268,0.137608,0.612149,0.799071,0.417956,0.289606,0.0729445,0.0233441,0.0636247,0.833715,0.359062,0.582237,0.873296,0.821552,0.983826,0.731042,0.272496,0.818067,0.935179,0.180599,0.163082,0.104642,0.690074,0.091774,0.795815,0.204229,0.266372,0.261429,0.114732,0.0995226,0.729198,0.887471,0.448209,0.638303,0.992026,0.959491,0.855954,0.370838,0.394983,0.325812,0.264791,0.813409,0.298271,0.148839,0.974485,0.247671,0.651907,0.519887,0.226474,0.721653,0.631717,0.538728,0.180766,0.270857,0.186061,0.910226,0.406174,0.847392,0.248206,0.851543,0.336997,0.694498,0.705629,0.651272,0.565271,0.488642,0.904535,0.023074,0.162888,0.11117,0.193971,0.637182,0.510398,0.396732,0.318962,0.303624,0.856785,0.53786,0.268614,0.232836,0.988575,0.0576658,0.580189,0.955764,0.686384,0.437428,0.0907105,0.658942,0.0435441,0.553949,0.524789,0.241161,0.714995,0.307,0.155347,0.033951,0.0744227,0.807796,0.844309,0.787171,0.261246,0.753206,0.976987,0.965899,0.0116547,0.0668458,0.315349,0.904646,0.483116,0.117067,0.33356,0.117972,0.0032177,0.134492,0.503028,0.799381,0.271976,0.0690829,0.316728,0.39847,0.545244,0.84278,0.565377,0.37067,0.847449,0.259829,0.642004,0.92755,0.844165,0.58013,0.0519628,0.903907,0.299234,0.710082,0.270419,0.462431,0.248567,0.610932,0.419343,0.3701,0.900846,0.0457108,0.550395,0.159594,0.0521297,0.195437,0.851444,0.703098,0.751639,0.964256,0.106033,0.93109,0.146239,0.109362,0.92546,0.215907,0.193229,0.269804,0.753719,0.948934,0.687966,0.457492,0.170418,0.389479,0.233768,0.911671,0.47872,0.0306535,0.254102,0.930715,0.887918,0.759616,0.0531785,0.642977,0.155781,0.107277,0.276128,0.876493,0.388724,0.274498,0.65339,0.793529,0.414154,0.512216,0.213192,0.224532,0.201471,0.196867,0.55322,0.945539,0.514837,0.113474,0.197213,0.663964,0.493016,0.784946,0.832096,0.845527,0.137559,0.349554,0.469175,0.815148,0.112806,0.0159183,0.295439,0.0954396,0.715974,0.787886,0.94906,0.1273,0.0207235,0.961231,0.467017,0.259854,0.773572,0.84525,0.220413,0.308446,0.120837,0.100133,0.426677,0.92394,0.0831769,0.864018,0.661743,0.357036,0.604713,0.66038,0.0618786,0.110336,0.151165,0.78326,0.830262,0.841032,0.196436,0.611665,0.784113,0.936769,0.239782,0.0174429,0.200342,0.335997,0.969775,0.329842,0.984747,0.852555,0.507773,0.950112,0.79325,0.425792,0.845905,0.145062,0.83962,0.958178,0.811989,0.897536,0.601425,0.441943,0.11122,0.122486,0.728757,0.129723,0.352796,0.529874,0.725313,0.342573,0.760044,0.62555,0.976857,0.89232,0.656408,0.6934,0.627222,0.829483,0.25788,0.900494,0.764903,0.711018,0.598235,0.0851635,0.376292,0.977736,0.910263,0.349961,0.474238,0.20012,0.155064,0.929075,0.34495,0.836173,0.295028,0.971993,0.659001,0.276935,0.740045,0.355839,0.662339,0.881862,0.778631,0.00504184,0.459809,0.579194,0.393711,0.809063,0.782186,0.585597,0.973805,0.540109,0.800542,0.287035,0.644682,0.822901,0.838752,0.250283,0.722854,0.802083,0.289956,0.132867,0.0325888,0.785529,0.24411,0.232159,0.571328,0.0501001,0.571268,0.539355,0.0914149,0.998139,0.950046,0.980279,0.186866,0.405504,0.562193,0.149108,0.983615,0.278626,0.220952,0.93943,0.438603,0.487427,0.988052,0.888941,0.00998831,0.598542,0.897668,0.393489,0.0286589,0.640474,0.793153,0.0663567,0.846196,0.909673,0.255241,0.703684,0.793072,0.174335,0.453472,0.681489,0.803772,0.19503,0.272548,0.175169,0.809106,0.720026,0.922105,0.525991,0.918027,0.788315,0.769501,0.700891,0.714619,0.0376227,0.62177,0.491721,0.973811,0.0285946,0.0331233,0.70365,0.0714715,0.8001,0.895242,0.764534,0.729311,0.828138,0.371179,0.066385,0.789949,0.281076,0.145669,0.791893,0.90009,0.663793,0.720217,0.425301,0.417077,0.576391,0.607421,0.487508,0.83201,0.798125,0.715102,0.705119,0.067342,0.079253,0.462467,0.101315,0.24345,0.533771,0.698253,0.461489,0.869155,0.649577,0.955305,0.659499,0.735603,0.143073,0.431868,0.402794,0.231963,0.0398782,0.0735766,0.78673,0.398862,0.940728,0.519499,0.306033,0.5128,0.823781,0.834668,0.64666,0.289181,0.677223,0.00521171,0.452366,0.689932,0.9309,0.747757,0.920901,0.339346,0.411089,0.783582,0.675186,0.532573,0.828028,0.875433,0.67257,0.925662,0.161828,0.679151,0.946192,0.17039,0.586041,0.240894,0.11483,0.582259,0.857363,0.0289636,0.442634,0.820807,0.281837,0.471098,0.940322,0.822695,0.049226,0.177951,0.897491,0.455303,0.974132,0.265653,0.454469,0.986433,0.989366,0.643948,0.591557,0.246426,0.383165,0.136468,0.664178,0.49374,0.635415,0.235936,0.259672,0.71947,0.14661,0.134852,0.0266939,0.286769,0.326519,0.734905,0.820488,0.71417,0.556427,0.359918,0.559086,0.842871,0.0305271,0.872297,0.512205,0.838818,0.474567,0.756936,0.0840514,0.525672,0.699364,0.302088,0.433808,0.782414,0.535628,0.521084,0.119423,0.462585,0.950993,0.917054,0.694135,0.616109,0.572827,0.583579,0.323109,0.997126,0.562887,0.861065,0.82866,0.0919676,0.656989,0.0278323,0.245987,0.033489,0.631704,0.218275,0.383486,0.705167,0.887775,0.474011,0.480128,0.0351118,0.735681,0.865326,0.726824,0.513731,0.598058,0.0494683,0.56414,0.744886,0.0307364,0.0479638,0.706991,0.0841767,0.675838,0.321056,0.803848,0.362517,0.457683,0.377792,0.823507,0.465939,0.305246,0.560983,0.653933,0.278465,0.317885,0.331502,0.610989,0.34042,0.678788,0.263362,0.926228,0.696388,0.658664,0.0514275,0.643537,0.645398,0.944569,0.786615,0.429128,0.327456,0.0497353,0.360698,0.111976,0.592238,0.931786,0.0375178,0.926717,0.89458,0.980311,0.895984,0.527101,0.196791,0.377725,0.557565,0.333092,0.512205,0.130214,0.193975,0.670241,0.325051,0.959628,0.584247,0.751158,0.817348,0.638503,0.0384642,0.463723,0.0626154,0.51436,0.276304,0.289908,0.527102,0.918309,0.39601,0.457534,0.400849,0.017759,0.548986,0.397158,0.883312,0.215526,0.144632,0.217096,0.183875,0.195404,0.408965,0.293179,0.147938,0.534296,0.0616981,0.34231,0.163689,0.640975,0.549688,0.613794,0.335832,0.352474,0.995275,0.713493,0.768516,0.765519,0.965444,0.630672,0.667339,0.978235,0.48506,0.852813,0.00971472,0.586405,0.873049,0.0681624,0.0700287,0.527595,0.275393,0.384077,0.102627,0.296135,0.750634,0.130734,0.548619,0.449447,0.754691,0.294212,0.75567,0.0782883,0.274774,0.628998,0.965271,0.691335,0.974655,0.333762,0.219124,0.989868,0.465614,0.502876,0.187984,0.977238,0.0986542,0.796129,0.820912,0.911434,0.42717,0.236575,0.55752,0.223993,0.517169,0.697733,0.222885,0.692225,0.483374,0.799403,0.23088,0.214459,0.435066,0.712258,0.563314,0.0400086,0.957004,0.00904751,0.659023,0.131935,0.836457,0.840254,0.748285,0.165264,0.082987,0.329913,0.861745,0.475037,0.760843,0.0816789,0.994781,0.681018,0.266348,0.562485,0.421242,0.0504534,0.6221,0.992977,0.879865,0.840748,0.330396,0.762016,0.20062,0.716919,0.242676,0.598864,0.167968,0.835236,0.636228,0.0292444,0.137679,0.660446,0.111253,0.811553,0.417474,0.730509,0.240379,0.115419,0.684412,0.780434,0.0626966,0.545303,0.326932,0.412843,0.625427,0.506046,0.0416994,0.478922,0.275778,0.775524,0.675892,0.362929,0.0308482,0.182138,0.193559,0.0246665,0.132659,0.712649,0.77565,0.128415,0.415327,0.829747,0.858831,0.621666,0.854728,0.380794,0.577876,0.30703,0.823607,0.488223,0.460328,0.798511,0.474751,0.776431,0.936395,0.363541,0.382925,0.313241,0.556031,0.805377,0.297767,0.984534,0.247857,0.491199,0.461161,0.197267,0.608691,0.263032,0.529533,0.730519,0.832141,0.341101,0.480686,0.364946,0.0502446,0.160662,0.807328,0.593206,0.973724,0.495484,0.39507,0.748701,0.837364,0.931369,0.295379,0.330808,0.990107,0.302549,0.981091,0.110753,0.491327,0.548877,0.0382903,0.699131,0.918338,0.374344,0.412684,0.658766,0.0466419,0.172926,0.0136365,0.692623,0.272221,0.15875,0.554882,0.593911,0.237008,0.623547,0.907957,0.344451,0.671727,0.67929,0.425312,0.528659,0.539641,0.123756,0.166415,0.0381446,0.746838,0.226914,0.153991,0.783245,0.597826,0.951826,0.716528,0.663473,0.667571,0.409419,0.16051,0.875582,0.534212,0.346186,0.4024,0.395456,0.948683,0.526528,0.520737,0.00397515,0.342288,0.245331,0.0790288,0.381819,0.854034,0.0112395,0.103925,0.025092,0.370872,0.912767,0.763781,0.719475,0.572176,0.490842,0.165954,0.344303,0.705168,0.372953,0.380089,0.533903,0.721435,0.322627,0.00687444,0.66427,0.861309,0.849286,0.603381,0.475644,0.475636,0.671709,0.665797,0.129623,0.768323,0.638832,0.106345,0.958428,0.391779,0.912914,0.199107,0.862705,0.0972083,0.0229861,|0.88351,0.911438,0.448242,0.455144,0.27735,0.768445,0.71476,0.542471,0.591049,0.899131,0.0258901,0.589706,0.197775,0.0648143,0.692962,0.500095,0.821096,0.548388,0.695726,0.476267,0.821594,0.835384,0.553787,0.529689,0.154484,0.370081,0.678574,0.862242,0.69699,0.723995,0.756254,0.0639879,0.995777,0.887344,0.819307,0.754443,0.854059,0.313194,0.0214434,0.192013,0.63793,0.496014,0.455852,0.598015,0.791362,0.918149,0.935234,0.877153,0.681014,0.57487,0.441324,0.416845,0.932129,0.462289,0.400385,0.846212,0.523467,0.261784,0.354962,0.452545,0.319457,0.0945567,0.181877,0.645413,0.0167148,0.483081,0.277687,0.593801,0.202545,0.266578,0.629635,0.594032,0.503749,0.793705,0.789629,0.382029,0.989258,0.78004,0.710186,0.192239,0.889881,0.00237322,0.792395,0.786857,0.366138,0.0599785,0.267632,0.783363,0.909809,0.0111354,0.400626,0.00809693,0.57689,0.472763,0.0378594,0.058329,0.61532,0.0347394,0.311807,0.326998,0.324802,0.418649,0.861827,0.450073,0.675254,0.411764,0.22384,0.99781,0.380269,0.876506,0.665543,0.242952,0.580859,0.980389,0.110556,0.30499,0.966334,0.297777,0.811407,0.940148,0.79602,0.438736,0.437022,0.33922,0.281641,0.81975,0.582301,0.380502,0.2121,0.298696,0.259386,0.472345,0.300995,0.280887,0.427448,0.453331,0.938285,0.298648,0.422233,0.701505,0.638722,0.16283,0.317724,0.0471912,0.0506638,0.0252209,0.539619,0.361011,0.40711,0.559281,0.402848,0.306823,0.00162035,0.143477,0.816667,0.425019,0.507575,0.197972,0.517504,0.433174,0.616435,0.797499,0.420506,0.0737839,0.0498688,0.267606,0.0112571,0.181385,0.654285,0.148951,0.558873,0.804408,0.229556,0.655636,0.411724,0.663441,0.0801712,0.786206,0.951481,0.171258,0.822142,0.418611,0.896071,0.512229,0.575528,0.17203,0.0234658,0.275335,0.261517,0.0447544,0.877859,0.459524,0.568713,0.547388,0.437381,0.259576,0.466021,0.247136,0.219822,0.0359573,0.712629,0.292772,0.012834,0.257426,0.447425,0.533839,0.707728,0.321565,0.200198,0.433477,0.628508,0.148094,0.972965,0.0542926,0.669227,0.594535,0.986354,0.701706,0.915941,0.0817187,0.391317,0.829006,0.468145,0.688134,0.0331945,0.723835,0.509412,0.00466335,0.254704,0.364451,0.245785,0.217131,0.169456,0.893152,0.486562,0.0673016,0.39556,0.276299,0.85369,0.811433,0.972687,0.792105,0.500197,0.695097,0.553101,0.917215,0.214038,0.674975,0.174299,0.999899,0.0619012,0.427379,0.140196,0.0531141,0.369703,0.110236,0.695065,0.129315,0.216283,0.101061,0.379552,0.938968,0.589248,0.380803,0.436863,0.718585,0.467596,0.36892,0.122256,0.519151,0.696563,0.783793,0.52822,0.618202,0.842554,0.269153,0.918037,0.850222,0.612523,0.214673,0.146279,0.610897,0.204984,0.852422,0.863933,0.390021,0.466231,0.441258,0.963713,0.289437,0.253295,0.75458,0.645273,0.605353,0.498513,0.140191,0.32667,0.0558515,0.729341,0.977007,0.582285,0.763439,0.67519,0.666134,0.117387,0.31339,0.0482227,0.847051,0.151832,0.330575,0.0948296,0.511108,0.231912,0.562647,0.646514,0.125963,0.484535,0.0379804,0.682612,0.36049,0.355095,0.0701484,0.445936,0.0206581,0.153861,0.621048,0.759386,0.911977,0.817739,0.773521,0.460874,0.337326,0.780152,0.712899,0.76999,0.726621,0.641241,0.637302,0.612481,0.0274837,0.482797,0.411994,0.481568,0.367736,0.75693,0.415508,0.42962,0.301482,0.259616,0.502674,0.613668,0.807128,0.0489247,0.0541733,0.115493,0.726748,0.135062,0.412042,0.470182,0.507086,0.18963,0.680365,0.585103,0.709462,0.853422,0.597049,0.992853,0.170129,0.831237,0.621083,0.0547829,0.186991,0.926934,0.872296,0.00453013,0.611717,0.458851,0.146285,0.708458,0.593362,0.031877,0.0156333,0.420216,0.0568456,0.751662,0.0306157,0.297043,0.761753,0.941561,0.23175,0.716826,0.863932,0.280015,0.741173,0.397071,0.544087,0.606021,0.365743,0.540955,0.210076,0.816167,0.862164,0.267271,0.779935,0.0118187,0.229696,0.208976,0.864689,0.966175,0.34776,0.980821,0.173926,0.964413,0.313033,0.353446,0.425026,0.310885,0.936271,0.15959,0.996184,0.348172,0.392983,0.232506,0.459536,0.786615,0.380389,0.525061,0.92667,0.448377,0.0879593,0.841517,0.186547,0.650477,0.690397,0.506767,0.132997,0.953348,0.435289,0.967668,0.567198,0.270288,0.330723,0.170548,0.832724,0.647329,0.124744,0.432997,0.0179222,0.286835,0.549232,0.557002,0.363055,0.0358991,0.510335,0.325579,0.788256,0.578867,0.122388,0.61626,0.882207,0.253196,0.084578,0.17753,0.396207,0.687474,0.510611,0.43459,0.219888,0.067898,0.499924,0.457074,0.285917,0.977099,0.746861,0.167111,0.944891,0.756047,0.764335,0.473027,0.108431,0.527115,0.222279,0.012553,0.585079,0.101174,0.240542,0.685664,0.844869,0.656617,0.0839144,0.947134,0.380217,0.587333,0.647696,0.506252,0.996466,0.175666,0.574378,0.816276,0.180475,0.795394,0.209557,0.538382,0.287697,0.561901,0.151747,0.0374895,0.75256,0.678557,0.778477,0.714584,0.0241236,0.486786,0.863637,0.223083,0.0756866,0.970349,0.802995,0.119544,0.101118,0.551292,0.798457,0.835573,0.681105,0.360372,0.27851,0.240243,0.20884,0.940491,0.515305,0.60884,0.486505,0.807462,0.274062,0.979442,0.449064,0.494797,0.87281,0.694846,0.569515,0.794917,0.883147,0.791823,0.903479,0.398216,0.115448,0.959135,0.844742,0.379669,0.735619,0.923187,0.36045,0.351774,0.139353,0.589267,0.0157173,0.925628,0.653876,0.914325,0.872248,0.596293,0.779253,0.923765,0.0559391,0.0939301,0.958598,0.680945,0.736537,0.0873836,0.183543,0.362595,0.992951,0.696954,0.622465,0.541499,0.262522,0.465027,0.936815,0.0105152,0.842477,0.119857,0.552201,0.0519403,0.350306,0.794985,0.947949,0.412929,0.69435,0.672328,0.243459,0.23314,0.710332,0.441476,0.254664,0.0285495,0.881661,0.100174,0.12454,0.563521,0.379449,0.454781,0.428688,0.798949,0.050393,0.939557,0.441666,0.0362545,0.20601,0.176725,0.517196,0.346726,0.236512,0.786331,0.139218,0.474406,0.788399,0.226781,0.750211,0.0252442,0.814006,0.85013,0.394769,0.960655,0.46522,0.0370877,0.703546,0.422364,0.760936,0.586343,0.783049,0.16075,0.684025,0.687796,0.0224245,0.936224,0.483815,0.375854,0.113939,0.700559,0.637504,0.757956,0.595283,0.54269,0.810531,0.876916,0.121049,0.601721,0.55805,0.915397,0.630499,0.319914,0.649484,0.550591,0.503251,0.311817,0.401452,0.752476,0.753635,0.780968,0.887353,0.316304,0.639841,0.163341,0.205491,0.190345,0.477375,0.62518,0.751595,0.0702467,0.0279824,0.899488,0.576482,0.744971,0.00283307,0.681522,0.0539692,0.573831,0.717808,0.322102,0.099038,0.283853,0.775288,0.395376,0.76532,0.574296,0.181515,0.102994,0.0253772,0.90747,0.738467,0.366583,0.049442,0.928448,0.881817,0.457384,0.372126,0.840127,0.247674,0.216579,0.609503,0.938594,0.298854,0.131275,0.757538,0.76755,0.407113,0.616547,0.260633,0.567057,0.5766,0.527763,0.759514,0.707054,0.409823,0.767584,0.139584,0.750283,0.31376,0.926027,0.141931,0.616246,0.483248,0.374875,0.394502,0.710457,0.0999684,0.0452065,0.100053,0.593508,0.289865,0.999454,0.811632,0.309601,0.187314,0.25912,0.975677,0.803787,0.228102,0.731683,0.732333,0.451177,0.575754,0.0807197,0.00663596,0.44441,0.673196,0.62492,0.0414394,0.631819,0.684,0.325314,0.419361,0.317914,0.987794,0.789874,0.822609,0.591076,0.920594,0.272074,0.705172,0.869942,0.29384,0.715794,0.127163,0.625517,0.504295,0.103616,0.473667,0.684975,0.791126,0.503438,0.920845,0.629739,0.268927,0.0118452,0.301368,0.744309,0.370115,0.176198,0.320356,0.52532,0.658462,0.714566,0.544741,0.624752,0.560423,0.576684,0.330807,0.400508,0.442756,0.362915,0.983709,0.116568,0.324605,0.617964,0.00177181,0.07077,0.224533,0.780167,0.84898,0.165412,0.657719,0.167748,0.371723,0.288761,0.330528,0.0789163,0.521028,0.818149,0.431691,0.609006,0.968158,0.0494816,0.36574,0.853895,0.541779,0.481161,0.85514,0.748167,0.518174,0.969725,0.79675,0.599598,0.000689924,0.829137,0.160578,0.44422,0.820241,0.116954,0.447573,0.10585,0.451011,0.843393,0.925711,0.805742,0.364723,0.398869,0.818083,0.0675869,0.792048,0.102553,0.940877,0.810726,0.897235,0.815482,0.00431609,0.489613,0.551405,0.959744,0.379555,0.595914,0.180543,0.335393,0.610629,0.653582,0.431852,0.319991,0.66906,0.990694,0.349855,0.860074,0.573009,0.65435,0.210281,0.883273,0.242369,0.487662,0.0793266,0.664461,0.339081,0.889481,0.444798,0.329011,0.191889,0.322229,0.508917,0.207681,0.169044,0.27117,0.225788,0.277399,0.439141,0.830135,0.865455,0.52806,0.324247,0.40171,0.778878,0.9949,0.25939,0.279683,0.993867,0.835931,0.754895,0.00570375,0.120711,0.0604793,0.270283,0.207795,0.53332,0.427755,0.960711,0.293338,0.936647,0.390727,0.470736,0.881805,0.379033,0.141057,0.0665464,0.619671,0.716394,0.635946,0.553008,0.372952,0.801711,0.907802,0.159685,0.746958,0.65692,0.52249,0.909155,0.644669,0.856913,0.981567,0.575917,0.618235,0.513052,0.518123,0.0695069,0.926962,0.729331,0.822406,0.0465789,0.98414,0.764149,0.116126,0.827602,0.279927,0.708277,0.355023,0.254845,0.499335,0.225241,0.423005,0.262245,0.564806,0.361979,0.481956,0.693963,0.953942,0.883072,0.102351,0.678042,0.612755,0.980526,0.956872,0.348164,0.355797,0.701072,0.555315,0.713189,0.00520313,0.325882,0.85743,0.854294,0.483102,0.43176,0.879316,0.512936,0.394542,0.0459728,0.131291,0.225659,0.836175,0.53977,0.675533,0.729271,0.0199958,0.501747,0.134812,0.408054,0.28157,0.0370944,0.575886,0.0791253,0.388665,0.482738,0.842263,0.962127,0.164574,0.564599,0.581525,0.702575,0.317081,0.0515992,0.972428,0.483188,0.605761,0.0344332,|0.956572,0.73151,0.382539,0.362925,0.303566,0.836276,0.855417,0.319124,0.375264,0.533147,0.466508,0.462915,0.809989,0.747661,0.453576,0.604791,0.0946118,0.165645,0.817145,0.584996,0.750257,0.153237,0.905903,0.686505,0.726209,0.476265,0.400418,0.922333,0.601218,0.878358,0.385961,0.67006,0.679584,0.79654,0.188075,0.033619,0.65029,0.614417,0.168908,0.833028,0.873837,0.0527757,0.653348,0.23231,0.24415,0.982359,0.512911,0.318417,0.834585,0.385188,0.627284,0.872198,0.757753,0.805044,0.422094,0.417854,0.585892,0.242032,0.147139,0.486714,0.378659,0.124381,0.470168,0.815728,0.359827,0.935768,0.795692,0.572004,0.511028,0.173816,0.900504,0.485639,0.824769,0.550636,0.177452,0.0524731,0.0387436,0.233087,0.81833,0.779446,0.0379818,0.833447,0.451108,0.765346,0.464013,0.293524,0.989231,0.535309,0.842327,0.569115,0.356213,0.105016,0.202267,0.402714,0.198454,0.298002,0.920642,0.34452,0.468915,0.92059,0.0425091,0.675865,0.0115758,0.166247,0.349614,0.383397,0.490401,0.332718,0.0900645,0.0818137,0.356792,0.0466767,0.196287,0.388853,0.490253,0.118427,0.34454,0.705719,0.537353,0.165511,0.481843,0.323199,0.43541,0.657083,0.312884,0.118384,0.681573,0.488105,0.812313,0.948547,0.36794,0.953359,0.392119,0.818195,0.921245,0.935126,0.679926,0.745366,0.418232,0.170067,0.594815,0.35842,0.854122,0.590478,0.699956,0.248327,0.733687,0.789765,0.228914,0.23181,0.694934,0.257571,0.438884,0.450226,0.015796,0.944975,0.719764,0.605863,0.248888,0.821504,0.476121,0.117269,0.931836,0.585431,0.105265,0.643386,0.442326,0.94999,0.745705,0.255861,0.245698,0.304404,0.072095,0.274863,0.421697,0.910344,0.22952,0.0333169,0.051995,0.101708,0.22166,0.724379,0.176851,0.424516,0.790156,0.594333,0.566628,0.627462,0.996999,0.575058,0.271883,0.530468,0.754413,0.416696,0.00398558,0.0386914,0.748255,0.299889,0.641624,0.0214479,0.0129075,0.577561,0.540824,0.732569,0.239686,0.647445,0.145588,0.784613,0.363451,0.399449,0.646854,0.618413,0.82809,0.873281,0.851012,0.744814,0.771376,0.805174,0.450089,0.733207,0.631375,0.975321,0.0688426,0.301816,0.214258,0.805039,0.419462,0.851877,0.302313,0.606234,0.00535566,0.315476,0.630969,0.896696,0.879915,0.355264,0.401074,0.63626,0.116533,0.145154,0.945125,0.372013,0.638573,0.00352561,0.112183,0.21825,0.0343074,0.7151,0.881797,0.359877,0.0698205,0.448546,0.0932835,0.0144497,0.229778,0.456423,0.491349,0.116988,0.0751513,0.902053,0.457586,0.568897,0.712988,0.872778,0.00744879,0.751697,0.194608,0.994092,0.255641,0.00441796,0.890854,0.535547,0.826444,0.206281,0.826951,0.918241,0.416789,0.915656,0.335916,0.952739,0.974333,0.0770066,0.0780632,0.444888,0.91629,0.271596,0.816776,0.793288,0.232345,0.0221633,0.699276,0.0550308,0.618436,0.133503,0.166839,0.472561,0.699545,0.331113,0.253077,0.0412019,0.79626,0.860807,0.574889,0.286881,0.706405,0.874085,0.127021,0.467263,0.204275,0.787722,0.390206,0.737573,0.739603,0.269991,0.46307,0.501709,0.508177,0.221475,0.512963,0.381018,0.460109,0.788941,0.431596,0.0687268,0.835152,0.545951,0.162039,0.481907,0.123487,0.26828,0.91829,0.798817,0.556842,0.739388,0.743038,0.419224,0.0404926,0.427676,0.228895,0.70476,0.0277289,0.533214,0.807753,0.07688,0.204235,0.598693,0.109848,0.132075,0.303104,0.581461,0.596618,0.60195,0.404639,0.0539689,0.706419,0.248499,0.10505,0.488627,0.0401448,0.981943,0.226778,0.450643,0.293349,0.990335,0.854748,0.680774,0.812977,0.0864028,0.473644,0.0393072,0.932952,0.467063,0.0443984,0.670781,0.774623,0.498131,0.15401,0.472327,0.131848,0.290793,0.980152,0.443773,0.461961,0.0231311,0.264906,0.416089,0.776122,0.531848,0.350866,0.315517,0.23524,0.979135,0.704914,0.261343,0.7986,0.542148,0.821621,0.202127,0.0975811,0.246221,0.319491,0.872538,0.42467,0.0971459,0.987647,0.538549,0.143186,0.073167,0.89237,0.857156,0.502773,0.985853,0.311876,0.72766,0.755618,0.964433,0.414474,0.467896,0.682225,0.566821,0.788536,0.291253,0.6386,0.0745509,0.73416,0.968662,0.487436,0.402242,0.538701,0.244728,0.306387,0.6646,0.461205,0.214847,0.800438,0.596482,0.460118,0.595211,0.0625221,0.957552,0.0524577,0.345117,0.966127,0.450373,0.13032,0.808029,0.362029,0.576682,0.850767,0.102003,0.611752,0.591757,0.125387,0.597284,0.125236,0.22357,0.0391229,0.994668,0.510719,0.993934,0.422301,0.157936,0.097447,0.295105,0.991712,0.915597,0.742388,0.269589,0.0178255,0.586486,0.187258,0.850915,0.719617,0.897938,0.621718,0.108704,0.304126,0.311534,0.386913,0.80917,0.604711,0.779574,0.558879,0.136827,0.818492,0.0908038,0.850083,0.0028584,0.841054,0.913295,0.098977,0.804424,0.393306,0.600557,0.956999,0.640704,0.248888,0.624468,0.0705093,0.215397,0.157293,0.150942,0.582114,0.862034,0.594864,0.0874135,0.25308,0.284323,0.272513,0.0181752,0.490303,0.477631,0.230117,0.168124,0.499272,0.694638,0.767979,0.544579,0.651673,0.506822,0.989303,0.111739,0.504249,0.434416,0.230528,0.983644,0.935272,0.705731,0.916168,0.873903,0.955081,0.679481,0.828396,0.459171,0.461348,0.115766,0.995385,0.262616,0.649923,0.987031,0.192298,0.116874,0.808352,0.604702,0.0413678,0.371146,0.545645,0.29544,0.923852,0.644328,0.847428,0.635706,0.19171,0.800945,0.20628,0.00909102,0.651958,0.0794488,0.823684,0.301439,0.030232,0.939104,0.739055,0.81509,0.533297,0.442254,0.851024,0.712613,0.049549,0.594306,0.861424,0.0474156,0.728801,0.274064,0.108423,0.551184,0.700873,0.144962,0.681792,0.643155,0.802424,0.515674,0.603646,0.116388,0.0420051,0.731494,0.289747,0.146668,0.821122,0.58471,0.435599,0.609937,0.925064,0.53729,0.481579,0.646549,0.24401,0.0397057,0.893392,0.502071,0.664653,0.61806,0.499301,0.0459282,0.675052,0.47418,0.253953,0.408346,0.861485,0.781146,0.633793,0.668471,0.729681,0.722043,0.658501,0.149046,0.416616,0.850256,0.226513,0.0443458,0.568967,0.0292318,0.889875,0.575259,0.0582448,0.276243,0.618859,0.195563,0.249574,0.250869,0.694423,0.80658,0.571031,0.114366,0.358333,0.507093,0.89357,0.0592346,0.240332,0.7073,0.668521,0.651361,0.0925574,0.558815,0.456558,0.927997,0.550544,0.97601,0.1443,0.0752736,0.444121,0.629901,0.186602,0.42381,0.853537,0.509132,0.948226,0.279097,0.536456,0.068825,0.194172,0.46048,0.870878,0.495176,0.545576,0.0559223,0.996861,0.673186,0.623164,0.503783,0.417156,0.692824,0.508648,0.954598,0.458966,0.625294,0.43441,0.222676,0.490161,0.378455,0.771759,0.697487,0.438286,0.323218,0.612236,0.283886,0.958954,0.0102956,0.827124,0.497217,0.269128,0.0866591,0.53832,0.914077,0.13467,0.521417,0.662237,0.21092,0.427615,0.75872,0.923018,0.0345532,0.958085,0.84802,0.908383,0.922862,0.717877,0.894763,0.720255,0.136824,0.74562,0.291068,0.928978,0.232189,0.81213,0.989801,0.549658,0.919285,0.871519,0.163843,0.545543,0.287567,0.247861,0.751659,0.373383,0.714534,0.381653,0.627976,0.875626,0.953038,0.786756,0.449078,0.0589659,0.359806,0.818276,0.197462,0.889861,0.0969493,0.151702,0.371455,0.602954,0.497092,0.751394,0.669722,0.936584,0.149653,0.556536,0.152794,0.838671,0.366286,0.345186,0.708192,0.116049,0.237593,0.443138,0.976095,0.378093,0.558182,0.509932,0.23657,0.980884,0.963688,0.758805,0.576285,0.0621833,0.39791,0.614646,0.740438,0.975952,0.0159668,0.180938,0.545993,0.957234,0.224777,0.839632,0.810105,0.0526704,0.669819,0.407241,0.808206,0.781713,0.71851,0.292463,0.792101,0.254391,0.929996,0.138816,0.244503,0.479554,0.292963,0.79041,0.722805,0.890302,0.63883,0.945121,0.343577,0.717942,0.485834,0.636765,0.495732,0.695931,0.658931,0.093928,0.04823,0.291562,0.649778,0.346198,0.935615,0.825536,0.312618,0.822235,0.000204802,0.558103,0.168795,0.164693,0.456436,0.394141,0.412622,0.263219,0.579622,0.583768,0.850405,0.82688,0.561464,0.465287,0.555382,0.791175,0.645431,0.439144,0.473525,0.668891,0.516312,0.786088,0.468455,0.385534,0.211404,0.53974,0.00696826,0.613098,0.205139,0.219786,0.470367,0.117969,0.081479,0.904354,0.152787,0.127372,0.496019,0.816584,0.74477,0.642157,0.0539429,0.0352607,0.521845,0.643483,0.712357,0.777086,0.489319,0.596957,0.786576,0.187847,0.754624,0.630298,0.364483,0.165837,0.901813,0.892382,0.276297,0.598387,0.677751,0.808497,0.576475,0.126321,0.642886,0.958849,0.296813,0.0559586,0.381204,0.325361,0.670014,0.860436,0.991841,0.728723,0.319617,0.285116,0.22483,0.25698,0.900317,0.00575989,0.456436,0.728501,0.128495,0.680654,0.736827,0.173908,0.559916,0.0448488,0.113127,0.669206,0.193628,0.604982,0.523821,0.730692,0.730492,0.242761,0.369704,0.617622,0.832932,0.920834,0.737979,0.263778,0.489508,0.224354,0.760669,0.382455,0.511344,0.200599,0.210133,0.896385,0.147122,0.849091,0.022925,0.123607,0.846508,0.224492,0.47676,0.135293,0.926557,0.646624,0.558295,0.388891,0.187625,0.472013,0.538536,0.747955,0.584846,0.436899,0.651324,0.784188,0.656775,0.370126,0.270664,0.570898,0.64833,0.214665,0.14738,0.457653,0.346487,0.408607,0.0959958,0.87724,0.509599,0.0188503,0.965668,0.623176,0.0276886,0.641394,0.192859,0.9106,0.833142,0.651463,0.146249,0.143069,0.0636221,0.931179,0.411147,0.247806,0.7601,0.207712,0.711891,0.425333,0.0961689,0.266012,0.272747,0.681648,0.507697,0.033493,0.643839,0.577337,0.470688,0.276605,0.761497,0.574518,0.767854,0.790431,0.0391709,0.67936,0.829042,0.686843,0.723775,0.940305,0.149996,0.509228,0.30544,0.522708,0.685325,0.400729,0.0897819,0.115471,0.521097,|0.105694,0.940505,0.326479,0.921762,0.452882,0.418016,0.229957,0.556794,0.884377,0.457957,0.739157,0.05592,0.872088,0.705866,0.322702,0.907707,0.51051,0.916869,0.626082,0.762592,0.588982,0.999155,0.744785,0.671119,0.182813,0.45142,0.188609,0.807824,0.836571,0.952399,0.443099,0.51151,0.889502,0.17109,0.252693,0.120192,0.417887,0.770821,0.17478,0.373377,0.896987,0.698122,0.599114,0.689665,0.0102518,0.42305,0.117953,0.261036,0.469452,0.135,0.448497,0.469568,0.0195533,0.88309,0.357828,0.972678,0.173833,0.815299,0.800046,0.546154,0.351162,0.749857,0.418828,0.0298445,0.151837,0.484103,0.99714,0.268392,0.581396,0.562927,0.117293,0.075896,0.892916,0.538004,0.27064,0.914593,0.223423,0.0679907,0.839523,0.602145,0.964576,0.833179,0.135667,0.0719725,0.342756,0.46028,0.498246,0.419191,0.925111,0.683504,0.398452,0.613686,0.114037,0.740349,0.439493,0.926461,0.842286,0.519826,0.238815,0.83154,0.185921,0.0493994,0.560501,0.215652,0.864901,0.485455,0.976802,0.509364,0.961772,0.187722,0.62269,0.536825,0.573495,0.114626,0.860402,0.550292,0.500205,0.909725,0.308953,0.241185,0.876022,0.637157,0.117718,0.179935,0.516659,0.36802,0.614542,0.582286,0.0604076,0.857538,0.430257,0.402225,0.313513,0.512813,0.34284,0.126101,0.255597,0.731863,0.125358,0.474801,0.160228,0.92211,0.20401,0.374223,0.648351,0.797781,0.713285,0.942777,0.23077,0.0443825,0.821341,0.863313,0.154386,0.486999,0.994367,0.464592,0.405102,0.697654,0.491974,0.620292,0.283064,0.428964,0.980713,0.904799,0.105477,0.736977,0.84023,0.0123904,0.374646,0.108903,0.716313,0.954128,0.923501,0.34959,0.615516,0.685531,0.287434,0.0841155,0.946617,0.0522958,0.737959,0.221264,0.680622,0.149869,0.884446,0.870666,0.0810989,0.0847247,0.387745,0.254016,0.442375,0.17573,0.232943,0.908083,0.784875,0.48139,0.67969,0.722068,0.823731,0.81591,0.60784,0.539238,0.415697,0.602515,0.996654,0.704132,0.0283253,0.852856,0.268543,0.229129,0.992599,0.507855,0.380012,0.307955,0.0813455,0.137278,0.573392,0.546522,0.690548,0.666465,0.688454,0.973041,0.275554,0.679145,0.809349,0.613939,0.122987,0.0157682,0.337117,0.700777,0.505519,0.68806,0.124986,0.240162,0.606576,0.749183,0.338246,0.906549,0.514527,0.872423,0.872589,0.489972,0.129973,0.24703,0.270433,0.152617,0.740712,0.37094,0.777476,0.109055,0.697437,0.204534,0.248883,0.654172,0.451388,0.94525,0.0120376,0.995932,0.74249,0.691397,0.6,0.936656,0.652619,0.885215,0.622524,0.983535,0.607824,0.294916,0.243118,0.307161,0.315623,0.134972,0.63359,0.0359268,0.434537,0.48465,0.779609,0.0946237,0.757219,0.826065,0.348155,0.51952,0.133253,0.551426,0.161006,0.430097,0.88917,0.702029,0.198644,0.171019,0.373054,0.0554724,0.832574,0.0609531,0.435381,0.115467,0.135525,0.836143,0.464397,0.656975,0.989981,0.452746,0.197708,0.945372,0.912568,0.267174,0.822511,0.236067,0.193042,0.452545,0.0130564,0.631987,0.925699,0.554388,0.117151,0.85224,0.983945,0.234936,0.489894,0.234016,0.082221,0.116481,0.0399071,0.409622,0.755035,0.325795,0.77663,0.347586,0.915229,0.77834,0.928864,0.41647,0.0799148,0.769875,0.195161,0.623824,0.788792,0.309556,0.954232,0.932427,0.436159,0.45763,0.565062,0.0780952,0.37455,0.0416788,0.0891535,0.821543,0.659706,0.800734,0.661267,0.197692,0.88557,0.979333,0.998478,0.872532,0.14623,0.0779846,0.491894,0.603716,0.497996,0.675003,0.0865583,0.13261,0.599832,0.187133,0.67184,0.273918,0.913919,0.982936,0.409451,0.0025872,0.255662,0.220454,0.310408,0.489161,0.480059,0.0617808,0.650408,0.788285,0.645426,0.562437,0.467098,0.0188264,0.33903,0.0429879,0.0643663,0.72524,0.624545,0.837009,0.56295,0.895198,0.78336,0.000317454,0.825945,0.0601609,0.908142,0.506745,0.822952,0.909579,0.444488,0.62297,0.0882683,0.979053,0.0337952,0.425659,0.0623782,0.379186,0.701755,0.240541,0.951031,0.0264076,0.222483,0.783966,0.325998,0.591015,0.888822,0.483687,0.0541422,0.720078,0.269705,0.673266,0.211825,0.477045,0.117364,0.416192,0.614018,0.931303,0.759934,0.877567,0.375015,0.713438,0.978454,0.827343,0.275356,0.931404,0.563777,0.0597682,0.0634549,0.0737183,0.434729,0.952573,0.00355685,0.294559,0.380297,0.146888,0.206985,0.17469,0.934132,0.955862,0.934299,0.546365,0.0848089,0.14005,0.494148,0.105482,0.559051,0.222263,0.358318,0.0442364,0.779194,0.147363,0.741225,0.0277191,0.450773,0.398002,0.319112,0.920744,0.763487,0.916126,0.195971,0.420322,0.258727,0.595454,0.347292,0.0462847,0.249166,0.718261,0.131725,0.626028,0.759752,0.748747,0.275436,0.316475,0.689848,0.0570514,0.755983,0.199336,0.736234,0.131955,0.855247,0.56724,0.397789,0.861922,0.0145013,0.649598,0.712367,0.440284,0.943097,0.587603,0.616326,0.612501,0.297117,0.0778018,0.245281,0.27152,0.911651,0.622191,0.441898,0.313257,0.685556,0.248254,0.500828,0.948658,0.849107,0.721574,0.194571,0.410988,0.730341,0.448389,0.653506,0.36101,0.605777,0.25753,0.976739,0.0781637,0.0717413,0.379934,0.657734,0.0641807,0.882311,0.321858,0.876233,0.446505,0.657085,0.420739,0.98498,0.695998,0.919372,0.531174,0.246347,0.531902,0.00203675,0.248334,0.933399,0.223244,0.251567,0.581731,0.363871,0.0109313,0.366653,0.735644,0.356048,0.536101,0.768313,0.447945,0.740625,0.0930844,0.578663,0.473858,0.861491,0.581792,0.530244,0.0647983,0.583888,0.0117915,0.34868,0.27718,0.797703,0.298051,0.185215,0.0111979,0.992597,0.352127,0.681141,0.683455,0.830984,0.42148,0.547874,0.0714764,0.856631,0.11793,0.053786,0.79454,0.616235,0.642394,0.25643,0.531058,0.928883,0.598107,0.760392,0.92446,0.972454,0.0551944,0.0706567,0.609246,0.506669,0.220803,0.0878224,0.856127,0.347885,0.00891054,0.0152791,0.0495613,0.0880294,0.287357,0.384021,0.706643,0.64918,0.148459,0.149821,0.613783,0.596855,0.132972,0.228025,0.925766,0.488686,0.773139,0.422463,0.980804,0.265431,0.767998,0.878917,0.942578,0.236835,0.462129,0.289028,0.070328,0.896697,0.356631,0.327471,0.224122,0.982525,0.544374,0.26094,0.767964,0.315864,0.0106392,0.748313,0.0174154,0.620279,0.0744733,0.79329,0.861359,0.00236493,0.353931,0.249549,0.139953,0.788927,0.170336,0.284997,0.156641,0.776999,0.1993,0.072083,0.596661,0.223496,0.563925,0.488176,0.545154,0.248589,0.293626,0.682178,0.76001,0.591731,0.127053,0.386555,0.835639,0.868119,0.408673,0.0659882,0.133253,0.109616,0.0205529,0.652573,0.409692,0.43207,0.306465,0.546292,0.0617765,0.992342,0.156033,0.114788,0.100461,0.0352458,0.032402,0.758291,0.462692,0.0657408,0.0425496,0.660707,0.173408,0.941359,0.589549,0.550604,0.453165,0.423455,0.777876,0.107554,0.324673,0.61528,0.305997,0.295885,0.377544,0.0226698,0.963082,0.899736,0.306615,0.928667,0.12226,0.638377,0.998202,0.507077,0.500798,0.294031,0.754668,0.230035,0.586708,0.010126,0.618277,0.0415077,0.594459,0.282637,0.140268,0.897139,0.808421,0.981142,0.73801,0.630561,0.184673,0.309879,0.910107,0.802804,0.812966,0.251082,0.978062,0.211651,0.741794,0.911243,0.882124,0.0884327,0.617982,0.37343,0.777489,0.755978,0.668035,0.313455,0.424351,0.601922,0.698774,0.928358,0.52885,0.766758,0.642939,0.748878,0.510777,0.305031,0.121953,0.0532942,0.261508,0.802317,0.828168,0.87133,0.857596,0.0175647,0.796253,0.534152,0.501957,0.371624,0.253893,0.255253,0.63188,0.284833,0.461984,0.75111,0.42116,0.740645,0.385216,0.694734,0.241073,0.44222,0.247192,0.281037,0.399179,0.252691,0.846754,0.833619,0.80616,0.314225,0.734294,0.313445,0.763694,0.174512,0.0311246,0.978207,0.275501,0.0720435,0.569098,0.296589,0.651199,0.00468206,0.708198,0.682472,0.951416,0.54219,0.309065,0.959968,0.97296,0.358987,0.351208,0.61439,0.891277,0.775528,0.747325,0.548161,0.943328,0.87947,0.499873,0.920032,0.916576,0.0795954,0.822582,0.120228,0.882098,0.527326,0.110796,0.813231,0.205335,0.17537,0.53045,0.63545,0.914474,0.621417,0.440832,0.93107,0.737181,0.864826,0.048646,0.950143,0.19919,0.993468,0.599499,0.724557,0.105117,0.102484,0.480387,0.305401,0.569294,0.807902,0.630034,0.22482,0.291503,0.727348,0.174243,0.679207,0.111417,0.172555,0.236822,0.83175,0.972207,0.123433,0.416725,0.867523,0.0291638,0.241773,0.0829447,0.279408,0.0315911,0.690586,0.887341,0.278376,0.00543404,0.983745,0.0979348,0.728809,0.0894921,0.257266,0.152075,0.119975,0.108208,0.506096,0.0114154,0.0844216,0.412325,0.909764,0.312206,0.628358,0.76287,0.452359,0.931785,0.91051,0.665477,0.509888,0.40674,0.0961861,0.530704,0.946863,0.607239,0.68815,0.601149,0.271917,0.738024,0.339059,0.326171,0.25045,0.359457,0.659629,0.768765,0.102718,0.500532,0.905426,0.366921,0.906231,0.249191,0.493373,0.0654078,0.403331,0.501271,0.488864,0.772643,0.940073,0.576778,0.63912,0.928167,0.312828,0.42468,0.659369,0.173204,0.336532,0.546187,0.757681,0.81787,0.352047,0.30562,0.549357,0.327764,0.896808,0.00857699,0.096202,0.807799,0.0308818,0.593781,0.215761,0.430258,0.141364,0.728345,0.151701,0.53357,0.934639,0.718697,0.424927,0.314683,0.261301,0.495524,0.126993,0.0264572,0.111785,0.215414,0.365241,0.298469,0.372512,0.31265,0.429901,0.500408,0.889664,0.474012,0.0311486,0.622973,0.482314,0.417569,0.0843344,0.109173,0.316978,0.0248241,0.978988,0.159522,0.158587,0.533675,0.257718,0.121991,0.670527,0.685279,0.709976,0.142226,0.965004,0.856082,0.199248,0.0180962,0.0449957,0.9107,0.954863,0.958604,0.522146,0.783883,0.414264,0.347444,0.454371,0.444223,0.589788,0.835738,|0.872493,0.328486,0.238666,0.776101,0.21033,0.537021,0.514292,0.931629,0.761888,0.452678,0.037536,0.17593,0.510005,0.0526462,0.157917,0.826438,0.461113,0.870097,0.0384592,0.63614,0.111111,0.119211,0.141647,0.925932,0.486312,0.557188,0.00960577,0.315252,0.863989,0.872554,0.200786,0.188843,0.792353,0.140637,0.612601,0.4957,0.280175,0.392233,0.646857,0.557729,0.154247,0.915642,0.972598,0.882438,0.297048,0.413949,0.382801,0.37316,0.225614,0.697986,0.865315,0.976673,0.732024,0.340006,0.430419,0.342448,0.580065,0.421472,0.589452,0.249839,0.986282,0.0136615,0.425758,0.459847,0.57947,0.662804,0.490385,0.515368,0.489968,0.48434,0.0767735,0.652067,0.38387,0.551269,0.943332,0.383364,0.439334,0.109392,0.353137,0.0136319,0.470516,0.397312,0.233694,0.745535,0.902546,0.773616,0.0171141,0.395927,0.753313,0.405808,0.99467,0.0397497,0.190474,0.535729,0.178667,0.437147,0.544646,0.90021,0.721651,0.769624,0.132916,0.23887,0.948994,0.53837,0.724086,0.928344,0.0649067,0.382564,0.993397,0.966951,0.0637705,0.467588,0.953915,0.829651,0.0491176,0.49777,0.181847,0.258909,0.204065,0.964902,0.920605,0.0964193,0.556684,0.490595,0.875094,0.555323,0.413827,0.653073,0.457229,0.715442,0.579311,0.0113779,0.889749,0.912516,0.59566,0.120126,0.277263,0.927109,0.354188,0.31763,0.596256,0.971639,0.702248,0.763147,0.690997,0.934608,0.39983,0.559926,0.010258,0.173048,0.638764,0.889882,0.290371,0.389958,0.827945,0.946613,0.351294,0.204207,0.351527,0.994799,0.317713,0.529821,0.349464,0.918202,0.700106,0.838315,0.444555,0.652024,0.916973,0.0744553,0.301331,0.397691,0.489709,0.289974,0.772881,0.258095,0.492158,0.418293,0.774783,0.869362,0.583484,0.603692,0.265032,0.962321,0.0342213,0.742223,0.947128,0.770107,0.558622,0.296457,0.0435379,0.431823,0.575676,0.570988,0.630583,0.357972,0.353417,0.462959,0.428237,0.654263,0.499192,0.585212,0.776304,0.417587,0.834074,0.817227,0.186678,0.320823,0.624515,0.53696,0.21729,0.049804,0.2552,0.492555,0.909926,0.331392,0.233159,0.890097,0.154176,0.291446,0.605385,0.0687743,0.0763573,0.749111,0.248563,0.470738,0.719071,0.424696,0.74292,0.769928,0.652106,0.294374,0.149235,0.0323057,0.700862,0.476981,0.263496,0.329942,0.88216,0.0890353,0.79411,0.856727,0.103314,0.810064,0.901171,0.170108,0.096846,0.296963,0.426995,0.578907,0.0260267,0.743669,0.941453,0.355619,0.471976,0.181643,0.516917,0.119264,0.846009,0.567223,0.74033,0.238737,0.499451,0.238633,0.983989,0.803889,0.966651,0.0972707,0.653546,0.0362569,0.297495,0.923406,0.522922,0.632859,0.491799,0.161696,0.108408,0.0893366,0.964377,0.365216,0.819034,0.75412,0.813151,0.965809,0.80023,0.452746,0.430236,0.176811,0.714784,0.0343689,0.447703,0.459419,0.493361,0.469026,0.828486,0.0543069,0.251196,0.993492,0.97122,0.482915,0.0270194,0.600137,0.261386,0.189227,0.722272,0.0095551,0.185019,0.862592,0.290101,0.874345,0.946439,0.344435,0.146628,0.524877,0.00533551,0.897505,0.686607,0.340488,0.467708,0.689576,0.155423,0.756244,0.449497,0.696259,0.323942,0.482469,0.57307,0.0126892,0.20469,0.00134945,0.963487,0.456838,0.694303,0.870527,0.602331,0.627553,0.733345,0.426098,0.882044,0.582322,0.24599,0.264286,0.276041,0.378574,0.245963,0.58328,0.714377,0.711486,0.573563,0.36104,0.272293,0.0872127,0.123515,0.518439,0.254436,0.194744,0.17185,0.315469,0.674527,0.477228,0.775083,0.348323,0.570282,0.793004,0.680163,0.283928,0.526704,0.399162,0.272645,0.320773,0.221147,0.909397,0.264395,0.526384,0.112353,0.935592,0.0380793,0.25958,0.202269,0.767153,0.554755,0.990019,0.229315,0.796999,0.0133966,0.518227,0.112791,0.344723,0.69702,0.35515,0.948536,0.0162289,0.0356677,0.646933,0.43924,0.83616,0.976047,0.641365,0.599645,0.232652,0.79941,0.981541,0.351014,0.340824,0.295386,0.539364,0.343,0.266073,0.373007,0.246098,0.448811,0.767446,0.635759,0.436009,0.201271,0.725227,0.459048,0.243543,0.368419,0.950165,0.194361,0.519461,0.396139,0.230068,0.169773,0.0496637,0.152785,0.424451,0.304707,0.498712,0.54683,0.599106,0.315833,0.517088,0.932975,0.443397,0.851354,0.0197706,0.977789,0.344682,0.977985,0.645473,0.462716,0.536187,0.896405,0.409821,0.367063,0.733825,0.123139,0.422623,0.273996,0.718759,0.709179,0.0980485,0.403519,0.832269,0.17125,0.547392,0.949944,0.575935,0.613883,0.614973,0.038499,0.0987147,0.71586,0.88328,0.758616,0.898102,0.775912,0.311181,0.149395,0.0638179,0.116227,0.006859,0.537467,0.728702,0.180095,0.828834,0.90433,0.232887,0.609747,0.839065,0.729697,0.0480706,0.155118,0.447886,0.326398,0.212896,0.824406,0.299905,0.905331,0.228784,0.711003,0.177218,0.460941,0.261551,0.399862,0.7995,0.206699,0.432954,0.303154,0.265144,0.466001,0.638126,0.0441034,0.912449,0.0562768,0.775874,0.0181116,0.194136,0.77182,0.393817,0.170522,0.140023,0.318451,0.660497,0.205499,0.234826,0.738671,0.757705,0.434218,0.544653,0.65923,0.531273,0.555409,0.691636,0.617856,0.83407,0.596955,0.781536,0.768814,0.191749,0.34906,0.757952,0.0267933,0.716101,0.0233665,0.0383483,0.514068,0.0732975,0.520107,0.766349,0.5322,0.528563,0.197671,0.179581,0.0597425,0.277175,0.223584,0.942144,0.817383,0.816459,0.56187,0.136683,0.108609,0.17043,0.554445,0.5708,0.809337,0.0192789,0.138406,0.617171,0.0941623,0.340641,0.335388,0.728787,0.311317,0.199682,0.666077,0.173467,0.296553,0.957087,0.476466,0.0514902,0.484967,0.0691745,0.249705,0.160182,0.957086,0.112198,0.622476,0.502066,0.856324,0.073381,0.713481,0.754939,0.148601,0.244768,0.432257,0.00233209,0.88046,0.309094,0.3567,0.261299,0.997802,0.280764,0.427087,0.31169,0.874229,0.928558,0.270979,0.89167,0.797627,0.151278,0.219106,0.595923,0.231275,0.985396,0.155606,0.0592333,0.892033,0.0757734,0.0257858,0.91023,0.762878,0.728227,0.294467,0.285326,0.0301248,0.613794,0.317963,0.297619,0.298231,0.484716,0.586886,0.0876149,0.254902,0.110964,0.0844514,0.251852,0.47777,0.746801,0.286143,0.624669,0.209448,0.0406994,0.29941,0.695755,0.362897,0.00286639,0.0384663,0.18534,0.0894075,0.194814,0.57104,0.866484,0.0960894,0.266038,0.961069,0.330089,0.859652,0.258052,0.0167817,0.535515,0.326129,0.684419,0.334128,0.517263,0.723442,0.400608,0.798174,0.751373,0.475352,0.966163,0.905467,0.213254,0.838836,0.562864,0.236265,0.740499,0.12643,0.121692,0.361049,0.667096,0.330742,0.151139,0.341258,0.402806,0.345661,0.465957,0.600541,0.327043,0.242417,0.743483,0.525906,0.800834,0.6025,0.863873,0.486257,0.581175,0.137613,0.79783,0.528011,0.264665,0.0128217,0.0570381,0.388113,0.804878,0.917992,0.86391,0.298547,0.883657,0.14713,0.552033,0.678932,0.0160472,0.27991,0.453227,0.0700402,0.873501,0.711297,0.543342,0.656956,0.195718,0.433502,0.60745,0.908257,0.878415,0.652644,0.468479,0.783489,0.155218,0.585872,0.996786,0.695906,0.494709,0.0249504,0.632244,0.307134,0.955942,0.774638,0.0478471,0.328233,0.161814,0.972012,0.391038,0.829206,0.15421,0.0864067,0.796177,0.57811,0.530118,0.76711,0.0216485,0.173408,0.799489,0.996743,0.552606,0.304206,0.153665,0.14567,0.235934,0.949873,0.130987,0.0208969,0.588715,0.760283,0.997959,0.576781,0.249837,0.800362,0.748286,0.911131,0.0647804,0.206271,0.513792,0.9481,0.586164,0.580624,0.164676,0.0290112,0.0434517,0.658315,0.144513,0.120294,0.690602,0.0575249,0.991574,0.820261,0.707912,0.694472,0.479756,0.0397276,0.131084,0.971008,0.694741,0.565258,0.304898,0.736548,0.0163274,0.697846,0.82602,0.55034,0.124824,0.118954,0.503688,0.883884,0.817547,0.473462,0.288217,0.310328,0.437495,0.800823,0.0760199,0.249916,0.72949,0.118887,0.543135,0.743092,0.10485,0.0550814,0.190966,0.395317,0.862556,0.358679,0.207367,0.630629,0.408713,0.34406,0.187414,0.83442,0.746733,0.649694,0.190988,0.383899,0.238141,0.47352,0.401552,0.970411,0.399172,0.725594,0.0070008,0.562855,0.283609,0.0768024,0.264051,0.203217,0.944858,0.501972,0.885434,0.668034,0.152107,0.597639,0.356514,0.839599,0.93181,0.227802,0.255717,0.716499,0.29972,0.0620468,0.109014,0.99897,0.817459,0.411397,0.448713,0.174537,0.318496,0.340091,0.952132,0.0196906,0.456525,0.152733,0.435389,0.462078,0.300388,0.331966,0.571347,0.730003,0.165213,0.0337866,0.928148,0.548177,0.464151,0.689633,0.366802,0.208096,0.309293,0.869725,0.291396,0.185104,0.315865,0.606995,0.266313,0.110019,0.0126897,0.205517,0.717636,0.917653,0.831914,0.528175,0.132447,0.513956,0.870441,0.431339,0.409444,0.0559269,0.941257,0.959533,0.732745,0.546037,0.550572,0.883051,0.416936,0.97165,0.94214,0.0268092,0.309987,0.663701,0.673899,0.926094,0.683112,0.0825477,0.322171,0.792014,0.218978,0.976416,0.00180155,0.986641,0.0941408,0.381084,0.743044,0.872757,0.405818,0.542784,0.240304,0.452951,0.155876,0.320614,0.141995,0.274502,0.489437,0.11385,0.537216,0.0585108,0.244075,0.166397,0.905122,0.0341942,0.82839,0.345288,0.432219,0.977547,0.291375,0.353367,0.677636,0.495958,0.309333,0.171756,0.383406,0.356589,0.770114,0.277088,0.251397,0.074846,0.585424,0.0974182,0.0426528,0.276866,0.797603,0.312157,0.513379,0.767757,0.511507,0.171553,0.571255,0.441491,0.72026,0.936186,0.381278,0.0360897,0.770336,0.378792,0.753678,0.0432442,0.212619,0.418045,0.582133,0.656309,0.828499,0.356923,0.968476,0.752471,0.593418,0.289214,0.0384535,0.682431,0.725283,0.609971,0.515884,0.365673,0.973842,0.65841,0.490555,0.317088,0.397256,0.895583,0.417123,0.0872288,0.58564,|0.115899,0.638903,0.390374,0.910157,0.261924,0.322328,0.608523,0.454221,0.847151,0.879068,0.817632,0.483755,0.693203,0.197397,0.229958,0.325079,0.460909,0.684037,0.413651,0.830386,0.137202,0.395689,0.46135,0.660619,0.898825,0.926001,0.510154,0.147133,0.436572,0.491082,0.193588,0.940739,0.657288,0.489357,0.628552,0.285057,0.399044,0.115942,0.969477,0.924938,0.16469,0.389567,0.75903,0.387705,0.709328,0.695482,0.239644,0.758149,0.791198,0.823153,0.538489,0.835732,0.633704,0.636379,0.533307,0.642333,0.0485516,0.356331,0.0747888,0.996884,0.300027,0.413871,0.686172,0.467012,0.988631,0.826062,0.542911,0.337376,0.636104,0.299715,0.577834,0.756003,0.544662,0.970303,0.0604597,0.894971,0.6771,0.81504,0.119442,0.364325,0.415535,0.733677,0.111603,0.761619,0.605873,0.576743,0.206659,0.440265,0.22732,0.418467,0.508683,0.261353,0.0857441,0.337467,0.19155,0.872625,0.0298644,0.31309,0.821722,0.959425,0.480247,0.109226,0.670579,0.348149,0.00718564,0.138678,0.533775,0.502516,0.750893,0.0436625,0.670404,0.601909,0.845792,0.191731,0.0361235,0.567765,0.0136521,0.417793,0.532123,0.939611,0.873678,0.930282,0.927412,0.390387,0.0437092,0.71296,0.129164,0.162666,0.105921,0.802607,0.858953,0.560006,0.722475,0.169731,0.926379,0.222439,0.27386,0.68331,0.69476,0.0180188,0.262406,0.653409,0.534698,0.166857,0.722748,0.0340514,0.793537,0.89463,0.254083,0.544292,0.185417,0.359774,0.524481,0.991124,0.113648,0.342874,0.554944,0.0766082,0.735632,0.659742,0.390812,0.429538,0.0487294,0.248681,0.720326,0.351426,0.549097,0.0787033,0.299314,0.446858,0.153674,0.744714,0.571484,0.310504,0.511112,0.712148,0.28912,0.880988,0.98229,0.907259,0.267989,0.78004,0.908522,0.296602,0.615247,0.975212,0.35509,0.629216,0.122558,0.0645722,0.361431,0.364513,0.618529,0.456751,0.285858,0.824692,0.093006,0.987449,0.194263,0.591768,0.247634,0.50444,0.303255,0.505507,0.988996,0.791942,0.75818,0.322007,0.124518,0.0713089,0.634819,0.189099,0.437988,0.369202,0.333888,0.760032,0.657887,0.473914,0.659304,0.307567,0.899117,0.86977,0.66827,0.776188,0.285254,0.802747,0.987203,0.248523,0.771038,0.385706,0.388905,0.514821,0.299906,0.855899,0.820657,0.294113,0.254479,0.385922,0.528602,0.498035,0.713743,0.914739,0.756096,0.587512,0.578887,0.390908,0.787166,0.988669,0.286812,0.76371,0.0974397,0.499245,0.148433,0.373384,0.979733,0.573212,0.368201,0.557886,0.11457,0.654709,0.909509,0.141321,0.801744,0.344234,0.889501,0.817828,0.965274,0.0560151,0.830956,0.412423,0.703457,0.743792,0.494131,0.64952,0.965902,0.330662,0.0492893,0.0653874,0.740708,0.710501,0.183437,0.869936,0.152812,0.649541,0.321919,0.706248,0.504256,0.750258,0.928479,0.155968,0.756351,0.768802,0.0962384,0.688002,0.343894,0.278613,0.601287,0.198484,0.60256,0.844829,0.475829,0.235279,0.477045,0.0693061,0.902528,0.238599,0.00353307,0.359988,0.273334,0.754187,0.843202,0.923524,0.98006,0.359516,0.131493,0.690396,0.357339,0.237468,0.0574892,0.52857,0.4353,0.9472,0.734613,0.693834,0.11534,0.713775,0.272657,0.926634,0.0396804,0.444169,0.540305,0.291262,0.968007,0.165737,0.233335,0.06343,0.619837,0.928777,0.820748,0.485055,0.293711,0.70253,0.115626,0.091258,0.0990263,0.0365592,0.230805,0.0108652,0.0401608,0.646696,0.6099,0.0978189,0.586591,0.529421,0.15075,0.330941,0.716905,0.297381,0.344027,0.706946,0.838895,0.146491,0.467829,0.192033,0.718972,0.366312,0.223656,0.329123,0.834425,0.494411,0.86082,0.923853,0.985064,0.873918,0.472481,0.0277449,0.0842044,0.0124485,0.393459,0.452958,0.332981,0.884642,0.827124,0.366305,0.452283,0.436664,0.827126,0.825347,0.867984,0.398093,0.565101,0.486746,0.58203,0.476312,0.00750786,0.907471,0.471178,0.721925,0.199715,0.653048,0.268036,0.582179,0.748884,0.638554,0.196441,0.583615,0.198045,0.381313,0.720079,0.878567,0.823088,0.825331,0.989387,0.569548,0.720049,0.690783,0.318853,0.903045,0.702842,0.67365,0.0247404,0.346766,0.595796,0.0192933,0.13552,0.456241,0.62614,0.0240741,0.935486,0.667994,0.0377271,0.191655,0.877848,0.63888,0.830636,0.190455,0.938263,0.593912,0.611971,0.554269,0.0694461,0.149325,0.903186,0.460632,0.203406,0.28403,0.142995,0.0485444,0.167352,0.124531,0.0246838,0.579323,0.873895,0.717976,0.293819,0.0149751,0.739333,0.886552,0.329001,0.448806,0.661169,0.63205,0.710895,0.499422,0.983597,0.656321,0.369142,0.681482,0.649834,0.993907,0.0897188,0.107806,0.637605,0.878654,0.1606,0.0363513,0.0331818,0.284668,0.462408,0.779185,0.57474,0.903984,0.223582,0.0727346,0.356063,0.438256,0.389845,0.547422,0.626288,0.815474,0.0161049,0.305087,0.762216,0.119606,0.165049,0.398068,0.492338,0.950868,0.138161,0.407984,0.386742,0.915724,0.024152,0.0612546,0.624267,0.0722172,0.364477,0.163155,0.837529,0.503473,0.832931,0.828059,0.178843,0.7499,0.599839,0.206961,0.0799527,0.685771,0.261586,0.796058,0.729676,0.639126,0.364923,0.100454,0.346937,0.933692,0.96184,0.334139,0.525911,0.0236881,0.220282,0.568879,0.778684,0.870506,0.461833,0.686984,0.68184,0.232247,0.533469,0.58133,0.636447,0.518767,0.991883,0.0621949,0.784085,0.202982,0.891677,0.824389,0.234918,0.967908,0.598632,0.178972,0.0225875,0.462131,0.623302,0.713067,0.758239,0.424223,0.0792171,0.244216,0.405357,0.177453,0.869834,0.00267994,0.831242,0.399303,0.725686,0.906952,0.742829,0.79215,0.400075,0.071689,0.92775,0.532297,0.987716,0.697238,0.450547,0.143405,0.605004,0.846212,0.553424,0.144498,0.5589,0.646145,0.48582,0.815158,0.433554,0.604006,0.930749,0.412879,0.737408,0.924478,0.778957,0.505629,0.92684,0.616932,0.577945,0.5863,0.372572,0.76113,0.304854,0.711557,0.543219,0.188343,0.681931,0.172395,0.208961,0.376097,0.632281,0.612396,0.180539,0.393959,0.399687,0.795197,0.114647,0.317393,0.635174,0.858284,0.839991,0.667325,0.556312,0.940819,0.200702,0.0418797,0.408126,0.756758,0.425431,0.0420761,0.526689,0.314658,0.453382,0.0190274,0.488343,0.805593,0.315065,0.492114,0.525849,0.647982,0.286996,0.397354,0.295358,0.740967,0.432576,0.152449,0.0942397,0.306113,0.0360947,0.230628,0.63695,0.928892,0.328675,0.647075,0.511418,0.213646,0.377908,0.936501,0.191715,0.251735,0.192664,0.0218491,0.231874,0.654938,0.00895804,0.478168,0.719093,0.23898,0.127292,0.788494,0.336547,0.140892,0.230046,0.99936,0.960519,0.751749,0.241682,0.673126,0.853114,0.827678,0.72426,0.0835473,0.916001,0.251198,0.902787,0.780513,0.355947,0.998253,0.494894,0.476847,0.555335,0.789684,0.519156,0.940261,0.920222,0.763132,0.894722,0.481023,0.859656,0.699976,0.510464,0.092281,0.594306,0.603868,0.00758165,0.692589,0.509047,0.0597603,0.503149,0.295106,0.312619,0.975783,0.41093,0.613643,0.958247,0.117724,0.844156,0.854402,0.10428,0.734561,0.488195,0.897026,0.472058,0.685403,0.851513,0.333047,0.0195516,0.494191,0.135035,0.899386,0.142676,0.738257,0.727149,0.911878,0.990119,0.792831,0.330591,0.122802,0.876273,0.980692,0.569035,0.00307554,0.604014,0.990905,0.132078,0.526306,0.219835,0.745772,0.336341,0.0947244,0.816889,0.717659,0.660521,0.429424,0.974182,0.491237,0.630062,0.849564,0.506777,0.997134,0.829994,0.673423,0.0869202,0.878471,0.0815148,0.292058,0.107363,0.983831,0.925901,0.676428,0.546075,0.806753,0.367249,0.112153,0.0722611,0.424088,0.0902147,0.164038,0.839193,0.0581034,0.885323,0.763229,0.110569,0.934627,0.801579,0.973337,0.4693,0.585437,0.192489,0.304293,0.356191,0.768792,0.0804228,0.34036,0.511471,0.610232,0.430155,0.384807,0.791928,0.232673,0.38076,0.321319,0.555844,0.339192,0.713283,0.84288,0.688542,0.86969,0.364703,0.0392727,0.100768,0.165009,0.000986636,0.980155,0.115267,0.463864,0.0110162,0.242992,0.563301,0.49861,0.119202,0.827537,0.0751242,0.314457,0.441264,0.433062,0.274557,0.076506,0.187141,0.328137,0.839187,0.177207,0.858456,0.642198,0.125601,0.749332,0.775709,0.116899,0.993023,0.278684,0.757661,0.345582,0.0924713,0.752922,0.0096159,0.438501,0.265381,0.939135,0.255118,0.869531,0.288227,0.827467,0.901191,0.0902992,0.797313,0.279014,0.223513,0.12696,0.775239,0.847091,0.223478,0.113666,0.780393,0.86257,0.547167,0.278348,0.871486,0.568175,0.188547,0.748006,0.828578,0.509385,0.658926,0.501725,0.867979,0.117907,0.463205,0.279798,0.712326,0.054122,0.365079,0.280512,0.424336,0.104801,0.0226076,0.871162,0.784669,0.7994,0.568111,0.329454,0.0522177,0.207085,0.00668508,0.548502,0.953515,0.0351149,0.237714,0.411134,0.258426,0.959948,0.307177,0.566221,0.699894,0.453615,0.305591,0.862312,0.276225,0.743041,0.398786,0.256838,0.157774,0.106679,0.16143,0.300874,0.721543,0.73676,0.874379,0.886541,0.962117,0.165457,0.314699,0.449791,0.842439,0.203529,0.72345,0.000426471,0.173781,0.0817225,0.275929,1.07884e-05,0.251485,0.0710939,0.826142,0.801697,0.845565,0.194608,0.506604,0.15142,0.684079,0.0682157,0.680675,0.933143,0.872394,0.746065,0.974004,0.56257,0.206888,0.876821,0.218289,0.0624,0.349782,0.983779,0.152907,0.247813,0.459745,0.103274,0.318292,0.66678,0.24712,0.461738,0.757659,0.663674,0.00670975,0.886111,0.733569,0.778553,0.0741846,0.0118234,0.167833,0.670544,0.949298,0.123234,0.83354,0.483512,0.263851,0.146358,0.713996,0.307849,0.0429721,0.106633,0.160198,0.936114,0.599342,0.752884,0.456173,0.539923,0.660136,0.932508,0.94687,0.918237,0.694577,0.890888,0.826593,0.453835,0.744408,0.664771,0.322234,0.689389,0.415348,0.0998558,0.696591,0.609907,|0.715284,0.164628,0.851277,0.948079,0.0749195,0.208018,0.749852,0.44289,0.172597,0.753557,0.413765,0.506838,0.12698,0.88453,0.213769,0.709787,0.999615,0.269084,0.112112,0.26208,0.90998,0.807518,0.411561,0.397396,0.530222,0.591835,0.0753356,0.683529,0.576278,0.942023,0.890212,0.894071,0.296254,0.19171,0.211102,0.299627,0.0582286,0.0998374,0.668402,0.715667,0.141092,0.147204,0.0937774,0.842633,0.463494,0.393503,0.462355,0.430148,0.342628,0.675917,0.849498,0.38617,0.91926,0.959331,0.980273,0.729561,0.311442,0.637107,0.611414,0.266744,0.716284,0.275738,0.298692,0.318382,0.292819,0.333408,0.548912,0.539253,0.597277,0.517412,0.452887,0.653471,0.768663,0.900573,0.749159,0.559348,0.282295,0.419595,0.662967,0.368654,0.455325,0.942997,0.916984,0.996265,0.470199,0.399912,0.980356,0.351263,0.683192,0.00488889,0.531859,0.3773,0.194993,0.190732,0.229419,0.978891,0.219529,0.197887,0.269726,0.93691,0.0146342,0.41283,0.380121,0.37017,0.898224,0.11232,0.225657,0.200112,0.988878,0.680958,0.531931,0.39867,0.438065,0.323214,0.732778,0.195122,0.34133,0.358803,0.192852,0.633208,0.622667,0.730136,0.302005,0.386937,0.511681,0.705992,0.826941,0.300822,0.576399,0.874062,0.689337,0.0229902,0.509423,0.798278,0.294582,0.490184,0.982838,0.309769,0.515538,0.186149,0.877662,0.212584,0.0215127,0.290684,0.807824,0.845335,0.0997722,0.398826,0.479181,0.590369,0.909549,0.757932,0.399456,0.325992,0.158102,0.34222,0.358791,0.572034,0.102575,0.165458,0.336895,0.429751,0.192253,0.681437,0.840441,0.250448,0.606162,0.792318,0.858845,0.734073,0.5228,0.200473,0.976671,0.41974,0.541279,0.935856,0.899547,0.565064,0.0909534,0.760845,0.600103,0.782788,0.740236,0.553826,0.187183,0.82656,0.958315,0.784508,0.417008,0.925373,0.577314,0.354911,0.308006,0.896168,0.881475,0.799403,0.941768,0.438462,0.695532,0.170567,0.0451902,0.755954,0.813291,0.276427,0.738907,0.451629,0.970501,0.543886,0.340276,0.525793,0.930163,0.243108,0.243443,0.428871,0.513785,0.601901,0.394875,0.815145,0.874008,0.665994,0.789643,0.665169,0.682624,0.408412,0.515283,0.0295222,0.513755,0.980819,0.627608,0.361039,0.273561,0.196904,0.821818,0.517931,0.569541,0.443518,0.139126,0.390382,0.543745,0.318255,0.149209,0.972519,0.931104,0.216372,0.0512727,0.894246,0.808639,0.917931,0.255325,0.229292,0.477003,0.0667762,0.776195,0.972299,0.75747,0.215207,0.757558,0.322916,0.279098,0.914486,0.470861,0.962193,0.351376,0.409069,0.0933115,0.909269,0.788156,0.617921,0.799494,0.290087,0.270903,0.965502,0.679357,0.865578,0.285807,0.258267,0.079639,0.894928,0.563898,0.945975,0.58317,0.0683523,0.992974,0.723942,0.138279,0.298762,0.182439,0.154487,0.786272,0.0516803,0.897702,0.675401,0.722382,0.422245,0.500096,0.457416,0.715583,0.0535591,0.375812,0.763367,0.0736418,0.991911,0.142065,0.183931,0.418222,0.0185466,0.320678,0.24423,0.265265,0.623685,0.128038,0.345823,0.731645,0.0728756,0.122981,0.938606,0.970484,0.253797,0.770916,0.0821546,0.959273,0.394902,0.777043,0.200387,0.893182,0.587269,0.0997414,0.168441,0.744062,0.871842,0.43611,0.748047,0.593275,0.739509,0.923799,0.267127,0.303616,0.376842,0.635876,0.684395,0.299058,0.403246,0.564951,0.495723,0.772513,0.488748,0.68707,0.41741,0.575121,0.423284,0.194865,0.639896,0.00705087,0.699457,0.664022,0.796563,0.0736196,0.686997,0.85471,0.629964,0.836253,0.0802807,0.270032,0.52408,0.608225,0.702306,0.468742,0.606385,0.499553,0.824077,0.550449,0.460614,0.175578,0.699578,0.0479558,0.670787,0.715705,0.684681,0.288774,0.679272,0.478063,0.525903,0.479471,0.0540516,0.368054,0.179817,0.431742,0.43082,0.27888,0.145525,0.176579,0.17378,0.285774,0.467673,0.883352,0.988729,0.664111,0.675678,0.223942,0.312923,0.839101,0.915361,0.792318,0.581672,0.528333,0.989289,0.203796,0.261578,0.872991,0.853027,0.306928,0.799847,0.607344,0.203833,0.848262,0.557868,0.655123,0.704304,0.269296,0.991477,0.949667,0.494499,0.479011,0.452949,0.373241,0.74881,0.945477,0.592176,0.784122,0.5673,0.667233,0.379213,0.139872,0.394939,0.374256,0.418907,0.825486,0.653042,0.608992,0.527774,0.886696,0.518279,0.51534,0.983743,0.424361,0.106967,0.862446,0.260107,0.288719,0.383152,0.509609,0.894062,0.206917,0.538414,0.169829,0.800687,0.578896,0.51977,0.258392,0.318568,0.822217,0.788623,0.378476,0.802216,0.757133,0.633877,0.211169,0.297821,0.367935,0.61608,0.608266,0.941409,0.846923,0.97454,0.769607,0.679487,0.224025,0.254343,0.620658,0.998459,0.569923,0.358327,0.334417,0.16988,0.713088,0.651431,0.317983,0.532258,0.102147,0.674736,0.10294,0.512428,0.961308,0.377979,0.698015,0.780949,0.681298,0.459587,0.692604,0.534493,0.486375,0.414801,0.989372,0.561866,0.425202,0.79651,0.963418,0.117832,0.772357,0.277155,0.216947,0.925223,0.252512,0.319035,0.154109,0.883669,0.174486,0.829828,0.192678,0.430069,0.724194,0.516578,0.285942,0.457384,0.341736,0.0235155,0.196501,0.677358,0.378895,0.81352,0.169488,0.122029,0.920511,0.674298,0.941303,0.0789341,0.454602,0.960542,0.153129,0.937129,0.92088,0.725466,0.758056,0.396531,0.297656,0.684922,0.519562,0.407876,0.643684,0.780855,0.373664,0.126076,0.624348,0.181899,0.325875,0.661703,0.595788,0.130433,0.722134,0.441688,0.2975,0.755777,0.937639,0.472755,0.445039,0.0369938,0.0740134,0.922301,0.838162,0.957449,0.863675,0.0412934,0.864287,0.597936,0.690568,0.878759,0.732056,0.814547,0.0215058,0.698335,0.218465,0.546793,0.755265,0.614542,0.735672,0.672048,0.651937,0.5502,0.937566,0.114416,0.409522,0.190568,0.690517,0.309001,0.137341,0.501105,0.901376,0.0219628,0.366502,0.0443911,0.497881,0.402454,0.481147,0.240958,0.881777,0.21545,0.0515668,0.423907,0.832356,0.500203,0.375596,0.958478,0.9479,0.00791103,0.789662,0.631655,0.0184354,0.235048,0.828345,0.947436,0.757676,0.137278,0.935717,0.284867,0.606666,0.644053,0.999211,0.39864,0.162082,0.890877,0.304327,0.113997,0.160139,0.767682,0.107622,0.0544136,0.291715,0.542223,0.562911,0.293901,0.0640863,0.60331,0.979395,0.563122,0.605218,0.84292,0.365832,0.551586,0.64301,0.246494,0.997331,0.307889,0.46475,0.72342,0.181986,0.0352723,0.611623,0.468973,0.482673,0.88139,0.38405,0.899199,0.969634,0.0256495,0.187678,0.20568,0.493113,0.0082708,0.597655,0.384116,0.327972,0.610297,0.39618,0.0598204,0.985796,0.386654,0.748994,0.333005,0.24448,0.953361,0.458926,0.448821,0.98236,0.685152,0.0703984,0.36638,0.409158,0.141654,0.82722,0.665953,0.893682,0.642334,0.951951,0.881146,0.805774,0.88569,0.0959336,0.270482,0.915119,0.286217,0.586798,0.973952,0.376819,0.83731,0.42828,0.928386,0.488351,0.840448,0.807149,0.541302,0.38425,0.0409834,0.341247,0.313583,0.467253,0.0505885,0.889512,0.426466,0.784462,0.932965,0.510182,0.355347,0.229058,0.9338,0.164002,0.982869,0.848325,0.562918,0.821408,0.84766,0.466435,0.180933,0.421173,0.380884,0.716898,0.905318,0.383848,0.580259,0.852315,0.13409,0.0626258,0.160184,0.337564,0.368629,0.805466,0.07399,0.706979,0.592361,0.45563,0.855036,0.0223737,0.731195,0.565582,0.472792,0.141606,0.661642,0.607196,0.356018,0.177173,0.250323,0.371842,0.41715,0.0852137,0.85868,0.0540572,0.393314,0.0838104,0.330178,0.425803,0.153823,0.294577,0.0778781,0.0565216,0.0041548,0.121531,0.0685316,0.117448,0.931444,0.925827,0.817097,0.188753,0.044888,0.634302,0.564035,0.922027,0.475213,0.77937,0.871801,0.887472,0.822265,0.704728,0.454343,0.380069,0.497795,0.482008,0.222958,0.124321,0.348466,0.112239,0.243418,0.899201,0.793562,0.922436,0.76899,0.303102,0.963162,0.949038,0.52359,0.0397562,0.514421,0.848682,0.792832,0.285533,0.27303,0.439976,0.56842,0.915233,0.747597,0.993699,0.281018,0.626807,0.610302,0.565462,0.209089,0.561712,0.7042,0.851666,0.0322182,0.711648,0.869341,0.681407,0.0828753,0.063267,0.00770664,0.878644,0.716899,0.316411,0.969431,0.669612,0.55329,0.395295,0.851241,0.715193,0.328509,0.10494,0.528817,0.707603,0.694642,0.543978,0.192382,0.0788013,0.80467,0.267604,0.86483,0.442331,0.353654,0.350894,0.593579,0.178652,0.0121959,0.365976,0.198845,0.171583,0.0542161,0.430949,0.750175,0.400356,0.969302,0.235384,0.506531,0.379005,0.667581,0.549199,0.237141,0.913182,0.940212,0.408122,0.549605,0.718116,0.687312,0.559104,0.383343,0.286703,0.103456,0.392909,0.13109,0.123109,0.952374,0.691244,0.36515,0.513375,0.0964563,0.948358,0.352494,0.383868,0.240805,0.613338,0.895365,0.139693,0.619628,0.148607,0.381198,0.0627614,0.645492,0.710051,0.670219,0.988454,0.463261,0.181834,0.497307,0.465411,0.946471,0.356127,0.972325,0.669997,0.778072,0.369675,0.404845,0.810388,0.229386,0.638753,0.250991,0.321532,0.666081,0.654495,0.424206,0.811562,0.758773,0.986054,0.424145,0.988924,0.731037,0.13046,0.754124,0.941815,0.84806,0.0422499,0.45716,0.759918,0.942864,0.260101,0.415078,0.692735,0.51918,0.86946,0.237666,0.202896,0.401183,0.852219,0.244466,0.171911,0.118386,0.497568,0.427541,0.544197,0.268471,0.067443,0.469315,0.383264,0.813756,0.144742,0.0352755,0.165969,0.929236,0.195378,0.949134,0.69462,0.122034,0.946369,0.515057,0.752192,0.715913,0.43504,0.827927,0.729523,0.428495,0.623624,0.892746,0.0763384,0.00297672,0.516096,0.588955,0.434284,0.763185,0.70164,0.745938,0.240181,0.16761,0.65834,0.160963,0.344728,0.133358,0.191279,0.800816,0.475504,0.891629,0.0178846,0.339379,0.756471,0.928687,|0.371437,0.018144,0.95453,0.89367,0.729943,0.218591,0.703325,0.165428,0.778832,0.822605,0.312285,0.544843,0.610263,0.208597,0.87656,0.359115,0.0449314,0.850919,0.609312,0.558605,0.260233,0.479039,0.839626,0.106833,0.756403,0.287605,0.260818,0.683402,0.231289,0.916106,0.598615,0.970654,0.553299,0.17375,0.180439,0.790749,0.19565,0.284691,0.120383,0.432455,0.492949,0.220059,0.168236,0.0587333,0.234459,0.299392,0.781157,0.686452,0.274275,0.462846,0.572731,0.536611,0.127346,0.586837,0.800036,0.873827,0.251434,0.297275,0.099834,0.730645,0.0773318,0.00153965,0.829658,0.36578,0.32917,0.633554,0.990113,0.412207,0.401889,0.49432,0.0252489,0.808678,0.594546,0.57978,0.338413,0.667887,0.321344,0.656169,0.336663,0.406686,0.69125,0.863767,0.753195,0.758885,0.875133,0.358094,0.963636,0.444203,0.341392,0.331205,0.738099,0.377409,0.503275,0.743545,0.0548159,0.614574,0.240859,0.978341,0.812181,0.533636,0.352906,0.311876,0.671435,0.157916,0.585016,0.469302,0.200498,0.220522,0.0301412,0.882592,0.0794043,0.586207,0.525124,0.650069,0.658787,0.387572,0.0858265,0.92895,0.0478476,0.826524,0.810127,0.646656,0.047501,0.836638,0.505891,0.585699,0.162984,0.145551,0.478755,0.965434,0.325569,0.730988,0.912089,0.770119,0.48724,0.344773,0.0652082,0.808572,0.192336,0.74316,0.651336,0.566456,0.870112,0.295755,0.550045,0.219828,0.625053,0.242596,0.519789,0.648476,0.806189,0.639707,0.449332,0.419005,0.818791,0.67896,0.179727,0.619336,0.58194,0.784192,0.309719,0.378439,0.560123,0.636107,0.330364,0.0776939,0.304124,0.71012,0.0910141,0.754486,0.175649,0.407976,0.901091,0.120087,0.0512782,0.93058,0.330101,0.820563,0.268761,0.0181217,0.529014,0.654158,0.409553,0.354032,0.805851,0.854984,0.414838,0.784862,0.574524,0.779058,0.386033,0.0985274,0.242531,0.885847,0.583405,0.60402,0.134778,0.561193,0.762899,0.284005,0.194374,0.0954517,0.667028,0.990672,0.034647,0.293091,0.893761,0.41076,0.903445,0.624326,0.486345,0.214372,0.37503,0.504854,0.512372,0.986458,0.783339,0.368716,0.803753,0.100875,0.49237,0.455497,0.432609,0.182541,0.840978,0.579098,0.661821,0.327707,0.386496,0.478825,0.457843,0.892297,0.0131176,0.718982,0.258425,0.488975,0.990645,0.419392,0.960725,0.894977,0.540449,0.128225,0.995979,0.501125,0.00332618,0.867943,0.393336,0.659746,0.411106,0.54638,0.175153,0.529473,0.698201,0.76033,0.506761,0.49686,0.795464,0.870554,0.0335918,0.8456,0.0835886,0.30617,0.25271,0.43689,0.828674,0.0858076,0.0764968,0.646738,0.247239,0.642382,0.600615,0.596262,0.662388,0.866579,0.30357,0.942927,0.00974739,0.136636,0.109745,0.833794,0.318077,0.802945,0.305505,0.0688882,0.985928,0.494607,0.298979,0.881635,0.68644,0.744129,0.118625,0.188866,0.575075,0.814604,0.893968,0.100234,0.312765,0.098098,0.363939,0.195859,0.626485,0.863322,0.802388,0.512475,0.133262,0.293796,0.34799,0.659784,0.731241,0.353225,0.701086,0.247905,0.564888,0.863003,0.554516,0.658444,0.752208,0.0759426,0.0669923,0.0422905,0.642112,0.927098,0.387605,0.244236,0.685625,0.100662,0.42965,0.395899,0.375807,0.693327,0.627435,0.334955,0.307723,0.54762,0.846317,0.209935,0.856676,0.670883,0.349673,0.372463,0.450812,0.217276,0.0432972,0.424419,0.622684,0.206784,0.852665,0.843037,0.328093,0.588152,0.555722,0.873947,0.530159,0.867339,0.49811,0.610675,0.569623,0.513078,0.00704849,0.815855,0.446316,0.00785464,0.658068,0.166565,0.289642,0.647781,0.572747,0.335262,0.649742,0.184131,0.596745,0.370814,0.851213,0.866777,0.516226,0.617643,0.31866,0.914462,0.351205,0.596597,0.0400881,0.874814,0.0206934,0.0958585,0.638857,0.583083,0.475588,0.302637,0.497332,0.809348,0.700323,0.218953,0.505513,0.0681345,0.737267,0.0687144,0.625435,0.553175,0.70124,0.559811,0.895522,0.74816,0.862113,0.698084,0.0735154,0.621729,0.828097,0.0407631,0.574561,0.366245,0.990419,0.878793,0.578163,0.366741,0.00458837,0.578481,0.560659,0.864792,0.465396,0.990423,0.496694,0.331436,0.319457,0.119115,0.0588665,0.007182,0.619852,0.0503843,0.781822,0.0489619,0.885835,0.740809,0.405435,0.28848,0.9475,0.254335,0.737025,0.35132,0.902267,0.101925,0.300786,0.128525,0.907831,0.564778,0.23033,0.83951,0.433117,0.930697,0.0204983,0.759796,0.658839,0.345226,0.947925,0.954857,0.670601,0.232554,0.828762,0.790874,0.628557,0.598373,0.535054,0.413426,0.792699,0.987183,0.214909,0.784168,0.989969,0.08001,0.868219,0.468766,0.386031,0.67456,0.435556,0.197762,0.819619,0.3252,0.593778,0.379847,0.268322,0.605791,0.737749,0.600222,0.475994,0.386624,0.0565916,0.340475,0.103907,0.521588,0.867221,0.589245,0.697906,0.933725,0.176568,0.425403,0.828894,0.269927,0.246583,0.19762,0.173472,0.877208,0.829258,0.887245,0.400762,0.551203,0.733207,0.693137,0.0906165,0.853138,0.0679548,0.811874,0.0721948,0.878318,0.874538,0.279689,0.809459,0.542512,0.66448,0.800444,0.758073,0.488651,0.816905,0.0266931,0.742853,0.818478,0.466301,0.707249,0.452753,0.985715,0.195542,0.806767,0.5409,0.517061,0.470916,0.802551,0.171887,0.645428,0.916836,0.315366,0.688301,0.0417528,0.0829332,0.476713,0.605968,0.687563,0.0732877,0.415943,0.961847,0.078334,0.0373138,0.716182,0.421764,0.227477,0.499729,0.0219627,0.0506895,0.162915,0.390373,0.0601443,0.505268,0.216468,0.526598,0.44355,0.928501,0.375522,0.638986,0.513518,0.855002,0.738842,0.438815,0.251224,0.753454,0.427325,0.0724711,0.956404,0.478323,0.997443,0.224151,0.731283,0.701522,0.904402,0.0854484,0.777726,0.664913,0.0561971,0.956295,0.549801,0.64127,0.927516,0.666661,0.343476,0.748072,0.972571,0.315624,0.316308,0.366708,0.962763,0.00994515,0.288214,0.26932,0.884121,0.6285,0.0663958,0.9869,0.919222,0.863076,0.276156,0.161612,0.937617,0.57675,0.0635656,0.18486,0.721363,0.193795,0.834615,0.159505,0.607326,0.923536,0.0031963,0.681774,0.602195,0.227471,0.875795,0.578036,0.291424,0.35206,0.526672,0.91005,0.164552,0.459648,0.862558,0.950412,0.136989,0.163227,0.370503,0.524886,0.864467,0.840562,0.92251,0.666037,0.484839,0.484901,0.997309,0.295597,0.122209,0.536606,0.197539,0.752385,0.285029,0.944855,0.951084,0.538249,0.466124,0.313361,0.973258,0.43144,0.825147,0.183794,0.509528,0.228631,0.107334,0.76015,0.0369654,0.396895,0.874589,0.161739,0.163459,0.851431,0.539848,0.367555,0.164511,0.675372,0.433416,0.710233,0.675197,0.248964,0.140081,0.506319,0.513097,0.396768,0.562518,0.657623,0.525306,0.219108,0.158892,0.663505,0.294997,0.271657,0.841475,0.0686863,0.23985,0.544909,0.0254917,0.377962,0.986919,0.0961613,0.0459904,0.682151,0.837348,0.350203,0.548248,0.906976,0.238609,0.534832,0.00435305,0.715547,0.7018,0.824858,0.978074,0.560068,0.825545,0.863158,0.424604,0.527535,0.532517,0.918785,0.769679,0.987829,0.614918,0.748113,0.0800859,0.218599,0.897692,0.679734,0.0915564,0.231842,0.393194,0.722951,0.508632,0.371324,0.776654,0.392659,0.27582,0.944867,0.930396,0.865973,0.416666,0.915604,0.502979,0.162713,0.852758,0.386838,0.0366239,0.359067,0.756961,0.131527,0.24308,0.00329685,0.718481,0.120421,0.568044,0.175421,0.962191,0.561155,0.0773516,0.613702,0.704842,0.879922,0.963926,0.329838,0.0238537,0.835147,0.676343,0.480378,0.86732,0.38452,0.344685,0.00565475,0.442456,0.0831912,0.558362,0.173331,0.623291,0.137703,0.461771,0.0608778,0.0387588,0.839931,0.231664,0.442393,0.630891,0.627299,0.241104,0.699921,0.398964,0.0837651,0.0916202,0.0533437,0.714497,0.281502,0.170319,0.0189561,0.991185,0.343243,0.0352553,0.610525,0.298556,0.0616251,0.164438,0.561211,0.16736,0.913922,0.951043,0.81364,0.145289,0.938866,0.522732,0.115418,0.223992,0.0166765,0.873821,0.00824851,0.0506439,0.422111,0.0712457,0.392107,0.451229,0.423233,0.810729,0.469407,0.694703,0.848373,0.344219,0.597656,0.0647818,0.664985,0.38354,0.372463,0.538655,0.28466,0.496008,0.297943,0.475895,0.578932,0.653462,0.78124,0.459013,0.252943,0.657105,0.335104,0.575914,0.550995,0.208772,0.337288,0.199687,0.186224,0.652182,0.761763,0.0945297,0.950792,0.855506,0.29109,0.384415,0.925219,0.226875,0.223442,0.319201,0.784351,0.725709,0.661323,0.398591,0.648929,0.911488,0.196864,0.152249,0.479224,0.905146,0.428842,0.679476,0.225756,0.588053,0.426936,0.523862,0.382765,0.209166,0.332962,0.542981,0.659255,0.922435,0.747871,0.698683,0.820928,0.896016,0.831266,0.771703,0.601898,0.784927,0.255173,0.909853,0.33972,0.28188,0.110946,0.185559,0.434459,0.965092,0.10055,0.547426,0.000834346,0.699827,0.878902,0.957371,0.497601,0.164365,0.833392,0.820305,0.275298,0.785263,0.192444,0.679948,0.513638,0.497761,0.549349,0.812995,0.588454,0.072888,0.0649693,0.422089,0.436552,0.657673,0.264897,0.998445,0.0442843,0.235213,0.0392705,0.0861668,0.751073,0.754953,0.729449,0.278176,0.328044,0.310072,0.671116,0.542369,0.730565,0.991812,0.466879,0.147839,0.85081,0.711714,0.899021,0.571108,0.479006,0.598931,0.26151,0.045318,0.156919,0.440848,0.911364,0.506525,0.193702,0.559013,0.541933,0.26991,0.220617,0.699749,0.986539,0.152833,0.144026,0.879384,0.795349,0.892363,0.916874,0.605354,0.850926,0.26958,0.344559,0.76058,0.387717,0.574096,0.638621,0.943968,0.903308,0.0672998,0.988109,0.643994,0.149377,0.143134,0.08478,0.938484,0.581726,0.078742,0.647401,0.128112,0.264443,0.748527,0.822802,0.31869,0.383154,0.325886,0.806369,0.30336,0.574278,0.671314,0.393729,0.274979,0.174261,0.764143,0.412496,0.291558,0.28507,0.427802,|0.597758,0.800374,0.245518,0.140793,0.903717,0.0752117,0.46042,0.189628,0.312659,0.244171,0.305262,0.00397986,0.412721,0.958914,0.998071,0.0577518,0.94488,0.109813,0.742371,0.599741,0.121337,0.461498,0.146927,0.68334,0.0848168,0.757386,0.091558,0.924301,0.47246,0.486453,0.523032,0.384189,0.704964,0.77202,0.81538,0.21002,0.451808,0.0830613,0.388394,0.870727,0.473659,0.462481,0.0431862,0.182359,0.332435,0.306294,0.0197392,0.578095,0.51845,0.770908,0.122728,0.618978,0.567194,0.2214,0.874053,0.862068,0.118103,0.0239055,0.117134,0.0947075,0.864348,0.316074,0.596865,0.67022,0.892393,0.935041,0.58637,0.189159,0.0388545,0.647053,0.533633,0.164285,0.991733,0.0474196,0.973754,0.0615544,0.841246,0.2999,0.351755,0.518379,0.139296,0.827962,0.379193,0.447226,0.162791,0.927379,0.959355,0.346961,0.831981,0.505915,0.972308,0.544372,0.509591,0.349427,0.635346,0.410537,0.49191,0.721957,0.398536,0.152225,0.487044,0.963419,0.155845,0.454955,0.695377,0.324411,0.0591471,0.432176,0.543891,0.492653,0.179569,0.447188,0.451278,0.959029,0.0459211,0.663331,0.245393,0.49146,0.71979,0.569892,0.886085,0.834611,0.580481,0.653016,0.913493,0.594862,0.0169611,0.677386,0.422783,0.613762,0.498222,0.588654,0.991699,0.630957,0.255806,0.372597,0.963921,0.564771,0.836318,0.250874,0.267503,0.683891,0.269158,0.503776,0.0680564,0.0306414,0.707029,0.0331123,0.254559,0.869282,0.428659,0.094611,0.508014,0.816654,0.723228,0.361592,0.977088,0.462768,0.486812,0.145984,0.876714,0.635194,0.183424,0.966694,0.309076,0.374785,0.0363411,0.575042,0.0394997,0.0490803,0.636715,0.257546,0.538612,0.156771,0.625717,0.515447,0.920513,0.642157,0.789071,0.696664,0.0498704,0.870719,0.411967,0.801816,0.593351,0.470041,0.0794914,0.65841,0.105733,0.103405,0.657888,0.673918,0.117697,0.569246,0.393369,0.638754,0.939655,0.419674,0.623121,0.763476,0.86893,0.740564,0.673599,0.204155,0.733747,0.535591,0.90773,0.284302,0.513029,0.322633,0.471659,0.345208,0.338381,0.309568,0.207767,0.656709,0.750217,0.220079,0.0289558,0.129592,0.656979,0.71239,0.60445,0.948642,0.604404,0.625077,0.757813,0.739908,0.833413,0.287035,0.0658332,0.24905,0.723104,0.774413,0.399918,0.304897,0.902345,0.0415676,0.23529,0.200122,0.565815,0.533419,0.935846,0.341341,0.818823,0.616135,0.713644,0.312734,0.62173,0.36623,0.588624,0.984545,0.8717,0.280606,0.188054,0.173872,0.06582,0.430072,0.252202,0.178812,0.661242,0.26203,0.00347877,0.494047,0.612987,0.308094,0.241754,0.795558,0.690333,0.140421,0.553217,0.0888996,0.90067,0.665261,0.602979,0.749316,0.674679,0.219391,0.446856,0.90068,0.825764,0.911045,0.0356414,0.976046,0.474665,0.260591,0.964629,0.407747,0.725076,0.0387064,0.468687,0.237906,0.185855,0.0933369,0.0497203,0.898588,0.0945119,0.829697,0.718537,0.655241,0.536747,0.331268,0.622444,0.888461,0.795448,0.597422,0.133494,0.241898,0.0112275,0.74099,0.234862,0.942024,0.585545,0.545259,0.0545499,0.263969,0.256343,0.148882,0.469012,0.443158,0.520568,0.492049,0.481838,0.759999,0.605772,0.651322,0.828159,0.703014,0.431159,0.700886,0.406432,0.967012,0.0881129,0.138856,0.00442302,0.483443,0.723081,0.345582,0.858626,0.263487,0.721536,0.786822,0.351525,0.0674781,0.999109,0.438289,0.4994,0.813358,0.876792,0.0122049,0.972933,0.0980573,0.656333,0.981032,0.754088,0.32685,0.498452,0.33736,0.863527,0.536832,0.573696,0.0616741,0.877691,0.056386,0.77424,0.332717,0.147166,0.22534,0.0920966,0.515988,0.549764,0.125684,0.762758,0.807987,0.583908,0.958388,0.632893,0.915597,0.0960334,0.416741,0.280927,0.36428,0.732024,0.0492832,0.00703961,0.583299,0.314583,0.0712269,0.91855,0.737172,0.0554647,0.516862,0.440959,0.486733,0.756422,0.129885,0.799666,0.938137,0.0948812,0.897542,0.348194,0.698321,0.0506014,0.413089,0.0391946,0.669299,0.601578,0.363218,0.0415524,0.593235,0.411299,0.0739691,0.354087,0.685715,0.893705,0.348738,0.719697,0.821372,0.68848,0.134228,0.0447134,0.352703,0.416928,0.668525,0.741579,0.898276,0.714953,0.621832,0.243251,0.834286,0.756458,0.826333,0.842183,0.315164,0.0228238,0.909092,0.639358,0.68114,0.997275,0.931521,0.833551,0.138106,0.425838,0.335945,0.409521,0.120176,0.106441,0.698138,0.162956,0.6539,0.143992,0.247299,0.440102,0.440252,0.32713,0.557461,0.941368,0.145429,0.0529569,0.997635,0.941851,0.228999,0.499307,0.268454,0.112551,0.095966,0.14866,0.934538,0.551023,0.427067,0.367171,0.00636548,0.123717,0.899657,0.679469,0.142199,0.579106,0.928178,0.97216,0.745168,0.075978,0.63943,0.531457,0.406386,0.0597958,0.309003,0.853968,0.667266,0.674956,0.653623,0.292829,0.687784,0.219259,0.646747,0.422579,0.871116,0.341379,0.525456,0.43692,0.454262,0.790766,0.0896955,0.896838,0.281928,0.68585,0.105813,0.306397,0.729952,0.56939,0.872134,0.170638,0.391013,0.97409,0.831422,0.14191,0.141424,0.22805,0.511388,0.670311,0.545048,0.365137,0.847141,0.517492,0.663566,0.0981218,0.851214,0.57018,0.987834,0.088677,0.739683,0.784567,0.651345,0.228019,0.0898592,0.941075,0.391963,0.683412,0.639661,0.581569,0.0296052,0.408563,0.932101,0.217029,0.761484,0.308564,0.684221,0.204834,0.645209,0.282682,0.691162,0.0444598,0.778533,0.0370876,0.900155,0.284615,0.349789,0.0106801,0.366055,0.162781,0.375021,0.460772,0.312796,0.3742,0.735795,0.817081,0.330523,0.122024,0.314792,0.126536,0.397892,0.0726227,0.363239,0.228428,0.398931,0.476506,0.823708,0.802396,0.0891021,0.948959,0.148859,0.84477,0.500885,0.9145,0.948486,0.603013,0.989766,0.896989,0.48311,0.254877,0.887385,0.61353,0.730317,0.638156,0.824619,0.482275,0.42367,0.0882846,0.881886,0.286789,0.418304,0.33123,0.550743,0.102479,0.916938,0.910103,0.342023,0.901262,0.115431,0.164616,0.768738,0.817012,0.45958,0.242854,0.196293,0.0315229,0.869232,0.595025,0.810744,0.358129,0.620608,0.148917,0.277442,0.509664,0.236462,0.297909,0.358031,0.659425,0.675835,0.675532,0.974945,0.258296,0.0192715,0.0875827,0.456582,0.623081,0.429898,0.198501,0.379695,0.0945595,0.688985,0.529407,0.443179,0.148352,0.15846,0.827236,0.144104,0.11234,0.993201,0.578941,0.45445,0.227953,0.757559,0.776233,0.58995,0.342236,0.480256,0.679478,0.433628,0.929649,0.794113,0.0370269,0.973012,0.563053,0.927687,0.852886,0.0677733,0.0933508,0.159584,0.581705,0.614113,0.831688,0.120473,0.958325,0.126699,0.572697,0.337977,0.107867,0.965662,0.660605,0.455773,0.101504,0.858385,0.0906888,0.977967,0.294732,0.3202,0.756776,0.456552,0.855834,0.58565,0.503951,0.793787,0.933653,0.700453,0.777222,0.281858,0.919169,0.768096,0.184171,0.836172,0.677168,0.599716,0.710645,0.441658,0.484753,0.965824,0.810218,0.573117,0.805594,0.349135,0.805542,0.708133,0.673888,0.640541,0.683501,0.2359,0.0968643,0.734319,0.0617961,0.650495,0.656811,0.850584,0.987587,0.0385826,0.432863,0.310324,0.805863,0.674769,0.643035,0.378988,0.378382,0.234168,0.68924,0.0428578,0.551517,0.666064,0.681495,0.684913,0.780325,0.692214,0.16152,0.589059,0.654315,0.121074,0.594492,0.378882,0.46096,0.281294,0.0967637,0.91134,0.901865,0.319938,0.533991,0.774659,0.170022,0.896346,0.807178,0.423593,0.329835,0.811373,0.960178,0.643475,0.368026,0.626617,0.826424,0.221514,0.979247,0.031299,0.488865,0.0020591,0.577807,0.290621,0.525274,0.242135,0.805257,0.0636005,0.566234,0.639463,0.0319664,0.159212,0.439753,0.588347,0.0404372,0.233725,0.00553292,0.770095,0.318774,0.79881,0.359275,0.312013,0.534591,0.936605,0.39907,0.6996,0.585048,0.883395,0.213533,0.573994,0.631576,0.816149,0.158404,0.751471,0.509664,0.715692,0.232192,0.868203,0.973407,0.920959,0.26322,0.384835,0.516617,0.166845,0.121233,0.74839,0.890557,0.742076,0.369035,0.692656,0.873208,0.392604,0.478835,0.817111,0.226153,0.782137,0.872699,0.00925547,0.764254,0.0236007,0.281821,0.192895,0.547222,0.00673616,0.933807,0.674912,0.430134,0.564696,0.401615,0.409729,0.747556,0.200919,0.0770206,0.646006,0.339752,0.623201,0.416284,0.0931285,0.503803,0.657133,0.877262,0.54392,0.624988,0.0154397,0.520241,0.122795,0.900874,0.378906,0.831245,0.901854,0.309772,0.530807,0.278405,0.51516,0.20656,0.232335,0.322837,0.424939,0.578763,0.736846,0.75792,0.632412,0.255334,0.00265586,0.491135,0.635769,0.677446,0.417861,0.541998,0.948756,0.0284182,0.674558,0.245066,0.817527,0.921225,0.366033,0.283161,0.16579,0.160643,0.194784,0.896437,0.127217,0.28966,0.867777,0.660307,0.746256,0.277769,0.866733,0.508898,0.86932,0.919431,0.821485,0.935654,0.454379,0.900099,0.64666,0.129596,0.73024,0.582364,0.542986,0.478468,0.679091,0.179789,0.174539,0.863389,0.0725979,0.729887,0.850763,0.822221,0.882654,0.0406862,0.122186,0.974711,0.495303,0.102695,0.401379,0.285447,0.87683,0.0609524,0.643595,0.428656,0.527517,0.709584,0.211583,0.763305,0.382066,0.491973,0.635278,0.172033,0.956695,0.476413,0.565751,0.839466,0.356421,0.150015,0.595248,0.40903,0.256112,0.325749,0.339891,0.852655,0.247985,0.963646,0.0188934,0.964132,0.186938,0.886677,0.823253,0.89633,0.868636,0.828173,0.452899,0.675677,0.217981,0.436536,0.256525,0.107938,0.181263,0.923155,0.887538,0.745716,0.470235,0.875045,0.672017,0.527003,0.0352793,0.721894,0.110925,0.398452,0.269536,0.964054,0.647171,0.757328,0.945645,0.114762,0.318693,0.811915,0.365289,0.734398,0.605999,0.947901,0.0171244,0.486841,0.425873,0.549299,0.026984,0.0435454,0.572936,0.350089,0.144658,0.222655,0.658658,|0.8364,0.791398,0.814813,0.616409,0.890526,0.975988,0.153059,0.373816,0.564161,0.184138,0.552897,0.0100641,0.665365,0.729429,0.41476,0.814897,0.435139,0.207075,0.234286,0.641976,0.280192,0.214861,0.918933,0.938159,0.593611,0.617215,0.0563241,0.105179,0.722091,0.811485,0.49143,0.198992,0.676463,0.0452165,0.434695,0.852996,0.207665,0.82123,0.848324,0.0257745,0.856798,0.349549,0.384438,0.437995,0.260817,0.02588,0.728765,0.22325,0.387516,0.149114,0.0530895,0.572033,0.584265,0.42121,0.0120657,0.10092,0.630965,0.134836,0.00442958,0.426693,0.909469,0.344057,0.940589,0.666894,0.723502,0.0247113,0.281977,0.505851,0.701237,0.764295,0.539761,0.376657,0.686353,0.275277,0.881685,0.170043,0.271285,0.0259421,0.0892282,0.798325,0.921006,0.768274,0.990762,0.0115363,0.224644,0.545451,0.960612,0.14964,0.43069,0.629124,0.231222,0.0928197,0.531562,0.510052,0.466979,0.406217,0.595338,0.971924,0.867513,0.913265,0.943102,0.138466,0.84941,0.0158386,0.662365,0.224413,0.954347,0.254893,0.470243,0.490086,0.862205,0.583945,0.502944,0.029097,0.995546,0.0571151,0.00659347,0.112988,0.980767,0.699912,0.268542,0.718362,0.795967,0.160974,0.0465162,0.739901,0.711556,0.300667,0.568209,0.830561,0.708293,0.63836,0.0980822,0.810304,0.836584,0.705929,0.126299,0.903045,0.936387,0.742059,0.614996,0.370865,0.768862,0.518692,0.182137,0.38129,0.100479,0.0945306,0.0538133,0.975208,0.229655,0.120774,0.367158,0.17868,0.96605,0.0592472,0.405746,0.684511,0.464556,0.478191,0.161001,0.347107,0.130676,0.674634,0.37044,0.229523,0.446735,0.19038,0.760674,0.567427,0.641511,0.305717,0.67921,0.491189,0.763786,0.53984,0.817117,0.0643743,0.136702,0.654731,0.615318,0.816133,0.633918,0.487533,0.937547,0.793026,0.309106,0.590644,0.671127,0.348651,0.816539,0.936471,0.0311058,0.442201,0.727412,0.716898,0.101631,0.562679,0.567224,0.572223,0.802544,0.931736,0.737668,0.949933,0.633344,0.42211,0.193129,0.116552,0.0357192,0.876684,0.656064,0.782611,0.476111,0.0216628,0.552412,0.919983,0.539764,0.241545,0.979169,0.796779,0.791575,0.673498,0.177838,0.605799,0.907783,0.804051,0.218538,0.635108,0.329872,0.8394,0.976905,0.102928,0.0188479,0.12145,0.973808,0.85179,0.141281,0.839096,0.221034,0.524803,0.920128,0.388682,0.0884441,0.109362,0.588849,0.96914,0.785091,0.113563,0.746408,0.311167,0.198759,0.0150205,0.901061,0.381909,0.791376,0.310568,0.593787,0.411355,0.525472,0.562902,0.0538548,0.88704,0.794548,0.175613,0.52325,0.962208,0.210426,0.529034,0.916033,0.79152,0.715725,0.678161,0.418695,0.879265,0.853341,0.945635,0.151123,0.819199,0.77889,0.334417,0.375296,0.412632,0.665583,0.174654,0.956653,0.626343,0.965269,0.920513,0.410512,0.32938,0.250142,0.488541,0.942495,0.357476,0.264046,0.806444,0.867937,0.956913,0.0508555,0.0623657,0.0237162,0.566045,0.707781,0.438842,0.657347,0.115557,0.401692,0.148755,0.875305,0.902131,0.089219,0.802867,0.902434,0.684284,0.113106,0.480247,0.313919,0.747684,0.309153,0.361033,0.618725,0.0490769,0.809923,0.524228,0.678211,0.537834,0.0485123,0.711321,0.292124,0.0273783,0.10221,0.509718,0.665672,0.227735,0.376441,0.867597,0.683785,0.705619,0.0807539,0.966261,0.306039,0.808398,0.998827,0.18152,0.164803,0.955894,0.932054,0.369239,0.404116,0.756337,0.962223,0.193222,0.366071,0.035378,0.392895,0.000984907,0.924415,0.803746,0.831255,0.623404,0.427225,0.502428,0.453111,0.585926,0.475672,0.376491,0.288844,0.850388,0.482743,0.527913,0.976301,0.859024,0.898559,0.959106,0.701818,0.646674,0.137045,0.733615,0.692938,0.0271652,0.433183,0.929238,0.844009,0.311391,0.0238715,0.300184,0.225444,0.45034,0.0147117,0.858079,0.765212,0.393977,0.850499,0.804484,0.0560937,0.681145,0.773556,0.932024,0.953446,0.499352,0.619261,0.819176,0.705493,0.826713,0.017658,0.119194,0.816916,0.620192,0.604451,0.949805,0.600874,0.820275,0.955659,0.577259,0.998252,0.779291,0.411062,0.605791,0.510438,0.806022,0.978725,0.0476279,0.959133,0.760414,0.936726,0.318552,0.467071,0.439798,0.395582,0.857846,0.275828,0.162149,0.436832,0.660048,0.402243,0.871877,0.609862,0.0600597,0.334367,0.533447,0.728017,0.745319,0.400842,0.370466,0.207202,0.895493,0.807718,0.521016,0.941145,0.846183,0.803164,0.8584,0.422177,0.759715,0.417629,0.621332,0.315793,0.33521,0.745179,0.92583,0.2352,0.795345,0.486561,0.730201,0.547676,0.426482,0.0308622,0.0230728,0.438628,0.6258,0.646003,0.303604,0.669565,0.216367,0.505213,0.423681,0.613881,0.169313,0.840541,0.528504,0.0628233,0.63483,0.746208,0.763247,0.990925,0.494735,0.634965,0.259449,0.168902,0.221819,0.736176,0.828244,0.0214942,0.153772,0.765265,0.806983,0.989519,0.473143,0.0618114,0.914968,0.801755,0.598631,0.557123,0.973192,0.323879,0.566448,0.612723,0.192077,0.0161521,0.0485502,0.373413,0.0616206,0.262031,0.97778,0.0461285,0.507188,0.7144,0.724546,0.3061,0.971374,0.682358,0.570338,0.661584,0.647764,0.304661,0.202224,0.234345,0.274502,0.287267,0.770321,0.992436,0.87869,0.344715,0.369787,0.39896,0.672413,0.684168,0.4275,0.96483,0.163333,0.321963,0.938842,0.490426,0.392823,0.531215,0.342507,0.695038,0.243926,0.216256,0.440281,0.704316,0.527507,0.513239,0.495667,0.17301,0.464683,0.492019,0.96722,0.619281,0.980746,0.793526,0.0508242,0.64935,0.500705,0.485173,0.499429,0.440525,0.808797,0.705542,0.0159209,0.260127,0.988228,0.0357206,0.757833,0.310488,0.250572,0.0605943,0.901356,0.305333,0.0109231,0.230793,0.796652,0.817674,0.0297672,0.572955,0.379913,0.0692779,0.230348,0.582203,0.703084,0.100593,0.24773,0.0995362,0.299648,0.415948,0.509482,0.610279,0.362093,0.240059,0.103066,0.0176901,0.94257,0.0137972,0.952995,0.58551,0.789401,0.493826,0.526802,0.883222,0.588063,0.0394704,0.763722,0.197128,0.622121,0.794434,0.753641,0.285291,0.90864,0.886578,0.522575,0.456677,0.648918,0.511074,0.719356,0.336228,0.15666,0.557179,0.382161,0.876357,0.87424,0.431214,0.252732,0.149646,0.166144,0.843475,0.995,0.677033,0.271334,0.121614,0.980665,0.436278,0.122482,0.510237,0.835419,0.593219,0.433684,0.367772,0.716843,0.104786,0.686124,0.529155,0.114514,0.607289,0.36293,0.415696,0.952399,0.542785,0.530981,0.0121746,0.983085,0.377058,0.338279,0.187398,0.951364,0.877564,0.434741,0.796186,0.729032,0.694864,0.823653,0.4096,0.96589,0.270594,0.0362015,0.32493,0.803232,0.0885359,0.875059,0.268332,0.110032,0.462712,0.232581,0.464436,0.050482,0.408555,0.206061,0.40084,0.416355,0.886615,0.156865,0.580801,0.886257,0.918733,0.404156,0.124418,0.185992,0.733504,0.189236,0.254771,0.73035,0.418934,0.199169,0.135942,0.992112,0.525148,0.139092,0.306395,0.0922343,0.468796,0.888428,0.759215,0.333356,0.512865,0.174569,0.693516,0.179845,0.345345,0.306787,0.842166,0.196952,0.330932,0.703496,0.898244,0.549684,0.567965,0.6847,0.802807,0.997483,0.150146,0.668198,0.812262,0.814357,0.219906,0.277739,0.637207,0.168576,0.843354,0.163679,0.547925,0.818758,0.456151,0.557429,0.693233,0.292205,0.925087,0.22689,0.740673,0.43057,0.0787539,0.887646,0.0360036,0.737822,0.782245,0.427023,0.798597,0.55695,0.558647,0.317595,0.357874,0.999334,0.361555,0.806826,0.222511,0.51163,0.78889,0.14332,0.700802,0.855477,0.945979,0.913143,0.527732,0.663318,0.622009,0.403904,0.103268,0.390335,0.926795,0.418921,0.746766,0.2141,0.308366,0.618199,0.424067,0.278998,0.465307,0.082581,0.218849,0.0633487,0.901875,0.0363054,0.830467,0.141564,0.382379,0.358218,0.952879,0.420932,0.673288,0.654732,0.235448,0.340491,0.808015,0.338542,0.416937,0.685828,0.486983,0.779074,0.274499,0.555821,0.291134,0.891004,0.651504,0.554421,0.833914,0.814018,0.496438,0.494689,0.0186541,0.260481,0.549834,0.432914,0.139494,0.0818709,0.446208,0.516042,0.986774,0.899721,0.792885,0.957148,0.27223,0.480888,0.871513,0.247503,0.198123,0.0412465,0.107806,0.614409,0.414269,0.0587576,0.365128,0.670563,0.01779,0.810085,0.290817,0.491145,0.698369,0.354496,0.981756,0.371842,0.94807,0.626762,0.668473,0.0482892,0.635154,0.533654,0.899467,0.359166,0.784275,0.73273,0.501116,0.437056,0.645786,0.81449,0.325689,0.518016,0.384661,0.799057,0.753976,0.832292,0.46827,0.821534,0.799868,0.824801,0.80242,0.0324005,0.292284,0.716297,0.833823,0.156599,0.677516,0.380792,0.302755,0.942279,0.417272,0.374453,0.324181,0.0666543,0.542125,0.130273,0.994632,0.474119,0.220186,0.8186,0.439055,0.489665,0.488941,0.547159,0.57659,0.212963,0.668049,0.0296175,0.704873,0.79602,0.325793,0.526934,0.994975,0.604927,0.405038,0.868342,0.158017,0.478973,0.112188,0.236331,0.255649,0.955398,0.881242,0.334115,0.779974,0.873219,0.466522,0.342894,0.790607,0.266387,0.285518,0.716245,0.00772375,0.17278,0.322061,0.0931316,0.367109,0.847661,0.283592,0.446665,0.36083,0.227084,0.634425,0.567636,0.139797,0.161426,0.16216,0.620445,0.689824,0.0990893,0.194241,0.620227,0.405354,0.62412,0.799754,0.132123,0.0730549,0.691865,0.760806,0.426899,0.347348,0.968752,0.0142826,0.764888,0.750136,0.108075,0.35136,0.293217,0.946953,0.263802,0.662217,0.598757,0.650769,0.271255,0.592252,0.0734425,0.787569,0.589586,0.566733,0.76274,0.985093,0.820696,0.72097,0.409059,0.416153,0.503247,0.114232,0.102776,0.80425,0.501202,0.601078,0.729729,0.562673,0.441663,0.991727,0.699153,0.84726,0.783006,0.620752,0.773498,0.366151,0.0660923,0.713519,0.739453,0.894333,0.978997,0.685034,0.722826,|0.343085,0.899909,0.756553,0.993859,0.831799,0.442316,0.582749,0.46705,0.54829,0.264121,0.61373,0.208173,0.0536352,0.323361,0.279573,0.772056,0.346016,0.455347,0.842143,0.574876,0.0271063,0.832132,0.856528,0.936155,0.480352,0.361177,0.589995,0.405529,0.736078,0.250145,0.696485,0.374992,0.0506355,0.998535,0.613722,0.447951,0.830931,0.960674,0.560673,0.569096,0.465362,0.0955673,0.305415,0.978498,0.495313,0.454948,0.271831,0.888708,0.38352,0.754604,0.471698,0.119319,0.299504,0.487727,0.629894,0.215425,0.643929,0.929164,0.797118,0.435322,0.0615701,0.332287,0.329174,0.100904,0.913012,0.580441,0.566326,0.679838,0.899576,0.874898,0.0819381,0.877268,0.0163023,0.671976,0.39777,0.552289,0.571093,0.831844,0.555577,0.29113,0.550282,0.823306,0.729296,0.653469,0.0822177,0.88661,0.0167154,0.52728,0.800738,0.303671,0.901947,0.904251,0.6046,0.99412,0.199385,0.193748,0.982678,0.831449,0.580015,0.259065,0.761633,0.10185,0.682918,0.680147,0.638803,0.717662,0.415022,0.142839,0.661381,0.744381,0.0761145,0.733021,0.953784,0.485311,0.377608,0.773513,0.1901,0.926688,0.46039,0.621476,0.654765,0.492533,0.412876,0.794421,0.0553957,0.789772,0.873967,0.87003,0.409302,0.943045,0.259854,0.86247,0.235593,0.272556,0.24138,0.497914,0.0361398,0.00252843,0.655856,0.992727,0.25991,0.642966,0.412053,0.748802,0.7677,0.423801,0.261185,0.935674,0.184896,0.770038,0.635844,0.10469,0.07372,0.618048,0.719087,0.188398,0.249012,0.831849,0.0285282,0.105507,0.0234021,0.246735,0.425516,0.625995,0.786481,0.121848,0.82546,0.426138,0.982478,0.847352,0.351384,0.359324,0.746342,0.431619,0.854728,0.795331,0.596283,0.000748456,0.889443,0.312423,0.00703883,0.0483235,0.424284,0.608286,0.5643,0.60744,0.932566,0.871816,0.516431,0.816639,0.897102,0.379169,0.650685,0.127888,0.944328,0.146076,0.769125,0.935829,0.342687,0.0758138,0.480841,0.976315,0.661437,0.61938,0.806053,0.369454,0.798174,0.513556,0.115516,0.460216,0.723326,0.403277,0.295931,0.508533,0.183563,0.810537,0.956696,0.398945,0.87878,0.652848,0.365488,0.123299,0.54764,0.717764,0.354554,0.934511,0.502069,0.874574,0.0785763,0.872493,0.101139,0.28066,0.487344,0.78535,0.916589,0.774346,0.276517,0.778306,0.452666,0.121692,0.343599,0.865478,0.520025,0.430773,0.526421,0.15742,0.233368,0.857526,0.515663,0.899345,0.52863,0.586044,0.567607,0.00639194,0.52416,0.903598,0.21928,0.505923,0.609572,0.615386,0.167291,0.788291,0.803786,0.0330076,0.287661,0.372872,0.245789,0.775063,0.28713,0.369117,0.833568,0.72044,0.493743,0.330338,0.789213,0.286343,0.785478,0.967875,0.17526,0.167208,0.91585,0.0876705,0.076168,0.968753,0.322355,0.955141,0.608814,0.974499,0.305192,0.961186,0.603005,0.732006,0.426306,0.0343117,0.362453,0.0488388,0.918792,0.866753,0.694148,0.146606,0.614401,0.270926,0.733989,0.87097,0.201009,0.441198,0.365029,0.586191,0.24188,0.908423,0.988488,0.258158,0.384003,0.316539,0.940902,0.592889,0.634,0.262674,0.404159,0.565596,0.169758,0.969495,0.580365,0.257994,0.102135,0.655232,0.211911,0.282617,0.271532,0.298127,0.592673,0.549472,0.66847,0.911219,0.614942,0.0529237,0.987063,0.640636,0.653734,0.7031,0.667705,0.722378,0.82501,0.851972,0.476212,0.984462,0.205668,0.795905,0.430049,0.999766,0.209081,0.146063,0.377134,0.334804,0.180798,0.326347,0.740982,0.305141,0.321587,0.873359,0.279573,0.731714,0.991336,0.137396,0.433249,0.822755,0.803177,0.648215,0.702955,0.310756,0.717375,0.0108627,0.928203,0.780045,0.134221,0.360838,0.202833,0.253184,0.0152205,0.687177,0.170457,0.265765,0.936874,0.64743,0.39624,0.71989,0.830818,0.802731,0.216221,0.0980307,0.699121,0.0606753,0.311157,0.491155,0.56038,0.922503,0.547319,0.766459,0.359321,0.626217,0.704288,0.551844,0.122378,0.740563,0.229367,0.592554,0.540025,0.252193,0.00493252,0.810333,0.206654,0.2477,0.063869,0.0111588,0.787864,0.882288,0.300268,0.257048,0.280855,0.0672457,0.644535,0.212424,0.650776,0.787687,0.416344,0.904031,0.961788,0.922435,0.260314,0.287307,0.29695,0.342479,0.0399296,0.414123,0.885084,0.775603,0.695358,0.858544,0.931363,0.610499,0.533348,0.36849,0.406731,0.831751,0.270278,0.434534,0.207205,0.601796,0.40567,0.786153,0.252461,0.971495,0.261412,0.491153,0.503137,0.304933,0.613669,0.537986,0.203694,0.539194,0.571926,0.691973,0.979652,0.347422,0.96442,0.220172,0.234322,0.368053,0.646844,0.192203,0.289618,0.108506,0.870116,0.0323022,0.133805,0.754833,0.819687,0.821479,0.436195,0.399821,0.640075,0.0656517,0.858146,0.224041,0.270212,0.739913,0.86135,0.161067,0.394572,0.547548,0.918552,0.819741,0.262263,0.192449,0.780059,0.883588,0.599222,0.196509,0.324005,0.216194,0.311336,0.724271,0.914984,0.266635,0.430888,0.291091,0.90929,0.777934,0.666635,0.582496,0.428782,0.308534,0.164982,0.886528,0.245214,0.824576,0.207936,0.678026,0.14151,0.163412,0.23958,0.855463,0.737552,0.563474,0.583654,0.152648,0.925773,0.391477,0.653795,0.81684,0.808861,0.453166,0.345946,0.194924,0.0835626,0.904271,0.405758,0.352144,0.343536,0.837702,0.746485,0.140839,0.201147,0.637508,0.321662,0.277016,0.541106,0.91307,0.638305,0.637366,0.395896,0.20585,0.899777,0.838724,0.333524,0.648587,0.71276,0.192434,0.140911,0.135749,0.00122893,0.341216,0.568603,0.836569,0.592417,0.452579,0.948127,0.279919,0.854391,0.842909,0.800585,0.667967,0.781174,0.436838,0.465473,0.240217,0.725983,0.744637,0.78776,0.954536,0.330651,0.302628,0.480632,0.46852,0.177256,0.0813738,0.757152,0.821764,0.419392,0.972352,0.869227,0.450469,0.0139524,0.286151,0.75713,0.422318,0.785699,0.0582691,0.788562,0.968305,0.344272,0.862712,0.317527,0.0791761,0.7491,0.35976,0.542107,0.298457,0.521562,0.705936,0.574851,0.48758,0.939197,0.0933297,0.279517,0.195505,0.785492,0.0635876,0.904862,0.256431,0.105212,0.365992,0.982529,0.961306,0.928505,0.110564,0.0966489,0.41585,0.116083,0.713781,0.483975,0.342962,0.249109,0.340279,0.85811,0.189816,0.331448,0.704685,0.378529,0.51625,0.806587,0.555346,0.0709258,0.0826863,0.0188772,0.512488,0.656109,0.613028,0.80905,0.786961,0.512434,0.171513,0.627774,0.957346,0.544539,0.630559,0.258486,0.485881,0.896727,0.554383,0.00278825,0.81446,0.411295,0.661536,0.278244,0.482074,0.906698,0.0174953,0.075941,0.6263,0.107959,0.0573665,0.622954,0.0102655,0.933881,0.11584,0.118492,0.178383,0.418286,0.531774,0.0380968,0.272575,0.811664,0.652963,0.10837,0.0207497,0.0861924,0.692213,0.722681,0.693916,0.161947,0.83399,0.855738,0.577905,0.422396,0.562382,0.807933,0.938915,0.505829,0.614176,0.297103,0.356516,0.280197,0.630493,0.692367,0.214994,0.30071,0.0973513,0.261742,0.481515,0.0124688,0.245393,0.563259,0.587655,0.978299,0.450184,0.527202,0.188862,0.143029,0.909949,0.668334,0.806306,0.0802532,0.0212936,0.599828,0.0402873,0.563751,0.05645,0.727699,0.729552,0.552529,0.106998,0.8627,0.488718,0.564211,0.973466,0.925901,0.438861,0.907502,0.107851,0.403815,0.313882,0.665253,0.456113,0.00714117,0.890658,0.680382,0.273672,0.633146,0.74362,0.605335,0.512475,0.409009,0.309809,0.298667,0.162788,0.178521,0.476869,0.198374,0.7005,0.172472,0.913406,0.185528,0.191289,0.376311,0.342651,0.274693,0.732709,0.523289,0.639751,0.813014,0.0577202,0.489442,0.389887,0.180127,0.303989,0.218647,0.613291,0.798298,0.2893,0.144347,0.80579,0.901632,0.478944,0.955375,0.834011,0.224454,0.119421,0.791629,0.118151,0.339801,0.475609,0.539743,0.495702,0.731466,0.774942,0.104707,0.595581,0.968131,0.176436,0.882571,0.746007,0.935901,0.227589,0.458061,0.0589893,0.737932,0.831087,0.073456,0.2528,0.765179,0.330664,0.435777,0.291885,0.822058,0.943103,0.475781,0.877405,0.301835,0.00603926,0.277515,0.831654,0.646163,0.772281,0.289464,0.641581,0.315439,0.583504,0.728766,0.877374,0.234233,0.691445,0.326096,0.00405306,0.28001,0.481386,0.290265,0.245356,0.414839,0.386377,0.869254,0.130668,0.985447,0.933275,0.60227,0.815725,0.610045,0.630292,0.324688,0.214271,0.152604,0.29095,0.0884486,0.0700008,0.191478,0.827892,0.273355,0.94179,0.212409,0.611572,0.319765,0.695469,0.0359788,0.862719,0.674978,0.555211,0.536134,0.00449914,0.0441236,0.515176,0.420868,0.955477,0.778254,0.966913,0.5067,0.449553,0.530644,0.778299,0.55755,0.591784,0.834493,0.94311,0.309334,0.370152,0.669424,0.538619,0.169556,0.335102,0.755375,0.191044,0.182576,0.963163,0.104947,0.643528,0.15417,0.575466,0.136572,0.122757,0.557156,0.372553,0.833991,0.517468,0.0228661,0.0819802,0.423598,0.628598,0.375581,0.0411874,0.856359,0.321121,0.0819864,0.837168,0.646036,0.773302,0.826641,0.101453,0.280152,0.769155,0.310849,0.469141,0.389485,0.559602,0.181204,0.911539,0.688468,0.313473,0.564229,0.817891,0.676714,0.353948,0.745224,0.786671,0.769681,0.445949,0.0500534,0.728478,0.455495,0.184328,0.841075,0.470695,0.304136,0.305223,0.439375,0.181933,0.0681168,0.878842,0.727176,0.959623,0.769271,0.486121,0.0124896,0.90929,0.248901,0.0298563,0.655004,0.979562,0.683629,0.878933,0.0889443,0.463056,0.192075,0.0668194,0.752831,0.0864042,0.913847,0.593873,0.713002,0.892989,0.483499,0.574019,0.358449,0.064881,0.115081,0.449716,0.3534,0.590096,0.880904,0.453742,0.466413,0.735511,0.122311,0.197838,0.317187,0.784237,0.695979,0.336267,0.944145,0.54082,0.816136,0.91752,0.124027,0.225036,0.18864,0.265155,0.833597,0.980828,0.111714,0.442218,0.894833,0.388346,|0.00867355,0.349693,0.879937,0.16786,0.102521,0.825816,0.973568,0.561583,0.948733,0.936549,0.12337,0.66225,0.0728144,0.366597,0.0936601,0.490033,0.398188,0.0616975,0.978053,0.993279,0.0123354,0.743443,0.593361,0.399116,0.85374,0.993998,0.773206,0.513087,0.0799269,0.777174,0.64898,0.509995,0.385458,0.856556,0.109636,0.0965406,0.374155,0.0883718,0.400283,0.829585,0.0449974,0.333316,0.904588,0.713153,0.409949,0.284569,0.804325,0.173793,0.779303,0.968663,0.856631,0.803597,0.395282,0.401239,0.0707532,0.573572,0.820827,0.566054,0.494618,0.0225115,0.641902,0.643599,0.428307,0.984144,0.9727,0.810228,0.577961,0.0726311,0.391819,0.775081,0.27269,0.95134,0.61254,0.470361,0.705943,0.135355,0.0132373,0.772928,0.199779,0.729766,0.728895,0.391698,0.681532,0.987359,0.542259,0.705856,0.259354,0.408289,0.534864,0.398924,0.536042,0.513282,0.591147,0.874612,0.222802,0.0378861,0.38905,0.214104,0.211647,0.39921,0.43957,0.565913,0.249672,0.0105564,0.274794,0.760607,0.168064,0.939693,0.492992,0.708577,0.49219,0.783875,0.052167,0.400694,0.917485,0.185649,0.186731,0.715423,0.744053,0.608246,0.251086,0.139781,0.720241,0.434118,0.632793,0.218885,0.596649,0.00776947,0.637626,0.454148,0.958686,0.840023,0.147861,0.724059,0.775538,0.135163,0.816004,0.674363,0.938168,0.886786,0.967717,0.513241,0.847696,0.160362,0.601473,0.302406,0.287212,0.236854,0.607057,0.782462,0.00643963,0.946822,0.483537,0.667882,0.202823,0.777795,0.286202,0.83642,0.13741,0.775036,0.0539758,0.422087,0.370779,0.147184,0.571303,0.850015,0.911084,0.955029,0.813643,0.155078,0.506471,0.786592,0.429306,0.850824,0.184849,0.489455,0.423711,0.420911,0.952256,0.255573,0.976621,0.498724,0.346388,0.308578,0.3066,0.920103,0.169929,0.307044,0.740761,0.0635508,0.981442,0.657979,0.551934,0.201295,0.631692,0.450517,0.484999,0.743556,0.753884,0.304018,0.0182306,0.179617,0.912126,0.987118,0.172119,0.460919,0.346975,0.239341,0.783208,0.202358,0.227768,0.810475,0.308537,0.817322,0.572922,0.43284,0.383359,0.707901,0.247241,0.0871442,0.62495,0.821037,0.651551,0.641466,0.527706,0.773831,0.243699,0.916197,0.452318,0.745623,0.128298,0.0925545,0.0794062,0.168582,0.313228,0.966248,0.441671,0.55284,0.971896,0.836781,0.219876,0.433436,0.358776,0.10058,0.638065,0.207124,0.804147,0.966026,0.298375,0.83157,0.480879,0.0279837,0.636232,0.591683,0.00414008,0.552515,0.755349,0.148504,0.739982,0.293336,0.333867,0.902917,0.380148,0.476061,0.78742,0.128383,0.189066,0.916601,0.485734,0.568701,0.70037,0.755197,0.426105,0.260606,0.0691473,0.825578,0.627517,0.100775,0.958662,0.495492,0.728427,0.0941778,0.191016,0.10097,0.135184,0.0479859,0.659102,0.927653,0.312834,0.793127,0.556132,0.229045,0.248897,0.144609,0.0154119,0.903912,0.495679,0.455027,0.870896,0.990806,0.939537,0.348951,0.870835,0.286682,0.895922,0.223219,0.207686,0.373004,0.886991,0.846682,0.665256,0.159754,0.999004,0.207398,0.808758,0.668855,0.26112,0.219546,0.373373,0.92545,0.405637,0.207279,0.927458,0.311663,0.0839635,0.24106,0.447855,0.0296752,0.557904,0.22448,0.361628,0.426045,0.709149,0.0792876,0.496886,0.631223,0.314885,0.588494,0.989047,0.663868,0.238658,0.676359,0.339332,0.140772,0.984294,0.0764948,0.128747,0.826382,0.304396,0.951619,0.527248,0.519166,0.599619,0.52593,0.856299,0.781501,0.441933,0.923275,0.622435,0.399008,0.66626,0.473724,0.256057,0.899379,0.0836318,0.647901,0.896033,0.784126,0.915553,0.242307,0.791671,0.0690592,0.421958,0.25269,0.775696,0.497055,0.693269,0.914981,0.692172,0.787564,0.279093,0.602721,0.0562662,0.237987,0.476186,0.644217,0.42659,0.351568,0.19674,0.507635,0.512731,0.472593,0.039045,0.683928,0.803639,0.202529,0.813516,0.290763,0.186961,0.265126,0.602605,0.209687,0.779584,0.782881,0.653832,0.253349,0.383304,0.517732,0.638862,0.166653,0.92027,0.0860218,0.776564,0.178701,0.928122,0.307435,0.114508,0.40353,0.319591,0.0554851,0.0162114,0.0170304,0.00436544,0.31138,0.983397,0.131018,0.903097,0.327418,0.725963,0.517417,0.551021,0.456117,0.680842,0.0656861,0.468089,0.427261,0.733272,0.58324,0.330161,0.850617,0.838325,0.068786,0.900134,0.624926,0.196881,0.482647,0.513591,0.0133179,0.351425,0.449225,0.167604,0.00456959,0.164088,0.0968176,0.995587,0.418303,0.60058,0.911965,0.261748,0.513928,0.487672,0.331001,0.414171,0.715857,0.727827,0.69621,0.925272,0.598288,0.56745,0.351282,0.543404,0.48128,0.707406,0.259367,0.933271,0.573171,0.0778788,0.757547,0.617489,0.948252,0.605037,0.356044,0.952802,0.147109,0.208855,0.729358,0.865487,0.954639,0.131176,0.724595,0.929312,0.516742,0.151293,0.0348513,0.227149,0.111152,0.530685,0.396847,0.758615,0.570664,0.260754,0.286938,0.0926864,0.580626,0.32708,0.314182,0.927282,0.978057,0.70793,0.343894,0.647046,0.613881,0.544381,0.585054,0.0920965,0.0394576,0.910243,0.642282,0.794178,0.548279,0.437992,0.631438,0.460939,0.792343,0.269336,0.328942,0.176171,0.281699,0.261891,0.412543,0.0708761,0.585555,0.359648,0.943817,0.35352,0.12211,0.74432,0.590862,0.0678621,0.258933,0.678559,0.398461,0.581623,0.105336,0.362727,0.349421,0.880565,0.230637,0.284966,0.87744,0.709699,0.395923,0.834085,0.211713,0.772122,0.309434,0.38741,0.211329,0.294271,0.939237,0.939573,0.759049,0.925491,0.651553,0.995472,0.484926,0.612914,0.571266,0.997737,0.6384,0.0914936,0.2834,0.94274,0.622829,0.0695511,0.164133,0.452174,0.789868,0.87596,0.753053,0.345185,0.312765,0.553841,0.533898,0.743639,0.237671,0.11973,0.464416,0.0714962,0.376746,0.0768772,0.370964,0.361409,0.198541,0.856505,0.27083,0.941345,0.98168,0.544196,0.640832,0.53553,0.293316,0.87116,0.672132,0.581968,0.821773,0.681043,0.90872,0.85368,0.868981,0.881179,0.56756,0.231166,0.530893,0.719171,0.30295,0.0483294,0.257627,0.349215,0.181762,0.0759121,0.749327,0.874738,0.596506,0.663792,0.222932,0.301605,0.480695,0.802038,0.89617,0.479228,0.462233,0.912151,0.70326,0.752139,0.392732,0.0791129,0.954996,0.824531,0.81573,0.0749694,0.441594,0.467279,0.779322,0.993532,0.771388,0.846785,0.539659,0.914215,0.870313,0.126374,0.291147,0.438723,0.544195,0.645373,0.435504,0.381888,0.0761215,0.49892,0.376367,0.0548137,0.447733,0.793506,0.506679,0.534492,0.882454,0.728706,0.397399,0.788969,0.565444,0.213208,0.313514,0.500831,0.476227,0.126933,0.170514,0.914357,0.979411,0.746339,0.255126,0.248385,0.452254,0.106483,0.891397,0.588984,0.0127975,0.557684,0.957559,0.576354,0.964591,0.0322242,0.708876,0.809306,0.764086,0.694664,0.920676,0.827657,0.895413,0.696292,0.872799,0.616943,0.490825,0.367981,0.86448,0.76074,0.757626,0.249145,0.608839,0.313652,0.529981,0.387681,0.218196,0.60666,0.859056,0.761267,0.0860798,0.774516,0.883845,0.57603,0.502329,0.43238,0.985892,0.686064,0.572501,0.665639,0.753493,0.373708,0.780959,0.845133,0.728224,0.692683,0.342956,0.946156,0.181831,0.49781,0.441985,0.705589,0.839121,0.557122,0.0291293,0.0302348,0.333788,0.631291,0.840735,0.97585,0.0670696,0.354877,0.318059,0.891727,0.672945,0.983727,0.27162,0.529433,0.021019,0.528879,0.929873,0.565871,0.742103,0.503286,0.400381,0.751393,0.707579,0.74264,0.765857,0.772226,0.0682914,0.332761,0.442016,0.230403,0.840773,0.241189,0.752678,0.16268,0.425378,0.781857,0.0786268,0.719109,0.216032,0.361405,0.822839,0.534948,0.855985,0.843218,0.326546,0.637254,0.573001,0.847329,0.73813,0.957021,0.870113,0.330672,0.950983,0.508012,0.922172,0.27765,0.612427,0.308728,0.966151,0.629551,0.620198,0.465594,0.964945,0.216154,0.708419,0.820798,0.198213,0.337629,0.629717,0.297735,0.374796,0.557222,0.25732,0.889789,0.935995,0.700729,0.912137,0.336991,0.52275,0.153431,0.74629,0.0326088,0.498503,0.0365868,0.301366,0.65019,0.772601,0.672182,0.297189,0.567632,0.77332,0.190166,0.638473,0.573351,0.720957,0.662812,0.498421,0.0200394,0.176308,0.870997,0.657414,0.905796,0.0273392,0.815439,0.876419,0.71615,0.355131,0.93608,0.274718,0.104523,0.695565,0.510101,0.602269,0.199225,0.348486,0.134624,0.645735,0.146511,0.871976,0.144247,0.22083,0.883048,0.499322,0.283261,0.341682,0.851576,0.174262,0.894997,0.272762,0.0365553,0.400829,0.289952,0.185787,0.580726,0.153201,0.843011,0.511775,0.884671,0.387833,0.923128,0.662296,0.105533,0.488468,0.352693,0.285848,0.320444,0.295476,0.87813,0.642392,0.318664,0.719919,0.90357,0.131205,0.192209,0.604612,0.956545,0.378063,0.956969,0.428984,0.577228,0.878229,0.594136,0.776793,0.965879,0.322516,0.568869,0.816164,0.757032,0.442421,0.454357,0.464752,0.237794,0.0323855,0.162031,0.49436,0.970475,0.994646,0.9248,0.947499,0.0917701,0.592791,0.798536,0.232969,0.50443,0.97664,0.953445,0.4899,0.753003,0.565707,0.685678,0.717806,0.0794519,0.992578,0.855002,0.661512,0.484601,0.650456,0.39983,0.115043,0.283017,0.524625,0.410334,0.0425972,0.309126,0.894987,0.447702,0.545778,0.397357,0.948648,0.270709,0.786437,0.150085,0.389372,0.824197,0.784093,0.883937,0.525725,0.584771,0.340512,0.418974,0.0618827,0.313445,0.565282,0.717783,0.00462943,0.490619,0.956346,0.762144,0.364422,0.750257,0.169072,0.627495,0.159772,0.693415,0.0988967,0.461084,0.999523,0.83118,0.441647,0.817505,0.0298177,0.997537,0.234703,0.813035,0.323854,0.513892,0.249299,0.966654,0.733567,0.451287,0.954605,0.362396,0.258031,0.895315,0.218119,0.611631,0.906749,0.325872,0.422181,0.429821,0.945789,|0.724901,0.531912,0.311449,0.973624,0.434637,0.651606,0.0248329,0.870705,0.763561,0.678627,0.423827,0.706923,0.286022,0.363046,0.727396,0.266043,0.23647,0.578393,0.66906,0.59983,0.57237,0.403029,0.733363,0.21331,0.18516,0.500238,0.694051,0.941053,0.000589371,0.937546,0.755179,0.599822,0.365578,0.587412,0.562375,0.145,0.295072,0.274553,0.744345,0.784705,0.82465,0.681741,0.380007,0.754794,0.658516,0.982923,0.709884,0.685361,0.773657,0.881199,0.27461,0.240226,0.449334,0.557652,0.412627,0.235174,0.552733,0.40863,0.489906,0.125188,0.525165,0.60936,0.647918,0.322876,0.721435,0.5816,0.0992601,0.978451,0.625906,0.368213,0.892524,0.172253,0.920014,0.183369,0.48482,0.719472,0.293611,0.377131,0.725478,0.706737,0.837592,0.269598,0.0175422,0.884935,0.711499,0.846944,0.824615,0.406987,0.843466,0.383385,0.527274,0.717934,0.366302,0.687323,0.317143,0.812281,0.263159,0.194354,0.526371,0.514183,0.933088,0.201614,0.601358,0.135216,0.989315,0.150302,0.437114,0.0292289,0.566098,0.875825,0.208656,0.200974,0.7708,0.160376,0.00538623,0.105737,0.818375,0.232735,0.860055,0.336782,0.236832,0.846066,0.737173,0.285872,0.785647,0.468054,0.115623,0.854252,0.539192,0.0546739,0.487905,0.526499,0.793787,0.748359,0.330063,0.674723,0.173582,0.883806,0.441798,0.933759,0.0249213,0.634999,0.52687,0.783391,0.220707,0.124532,0.522106,0.393785,0.985073,0.485214,0.429541,0.782702,0.74353,0.681669,0.32261,0.355637,0.804847,0.638935,0.837377,0.715729,0.770513,0.00693887,0.987607,0.409502,0.587783,0.972804,0.452218,0.749776,0.685674,0.0740013,0.621011,0.28413,0.00772971,0.477231,0.584045,0.290161,0.234206,0.399233,0.542572,0.410574,0.210266,0.191597,0.122439,0.605566,0.258177,0.48707,0.609046,0.456051,0.652297,0.578186,0.908228,0.433134,0.36356,0.703232,0.44478,0.29697,0.671928,0.944382,0.956214,0.509032,0.270277,0.498756,0.98334,0.48402,0.478763,0.961203,0.821048,0.435088,0.163126,0.895218,0.401331,0.737508,0.214069,0.413351,0.678121,0.273464,0.725337,0.959133,0.632363,0.954387,0.0594714,0.234701,0.0267953,0.708839,0.0455245,0.691913,0.705266,0.0587121,0.896632,0.0659428,0.695194,0.306104,0.411036,0.41687,0.220461,0.51822,0.575971,0.773893,0.924998,0.72301,0.846649,0.681642,0.690476,0.445428,0.562893,0.502169,0.318264,0.270875,0.231858,0.00201422,0.896433,0.989506,0.324113,0.20352,0.313288,0.312648,0.862154,0.410514,0.582597,0.825079,0.303098,0.0516545,0.88698,0.426985,0.371828,0.550076,0.896012,0.790834,0.893705,0.659412,0.850333,0.619531,0.903368,0.671874,0.902659,0.937198,0.614903,0.979638,0.604181,0.201729,0.474227,0.584823,0.00923097,0.307848,0.156733,0.11868,0.710644,0.462888,0.283319,0.706297,0.0437362,0.824711,0.104698,0.432826,0.664192,0.791888,0.682557,0.00850058,0.324169,0.316037,0.20241,0.616049,0.742624,0.450644,0.111956,0.668737,0.617399,0.917861,0.607114,0.569793,0.573263,0.497023,0.548593,0.0538124,0.928423,0.38461,0.243591,0.573886,0.416148,0.642491,0.505465,0.214825,0.903905,0.489089,0.0518116,0.928771,0.156911,0.198749,0.808565,0.733677,0.186131,0.639972,0.550351,0.156242,0.725922,0.177651,0.108677,0.389557,0.730554,0.446717,0.146557,0.848719,0.404214,0.171291,0.600835,0.323686,0.906307,0.508169,0.00325483,0.385084,0.834258,0.40717,0.914081,0.530121,0.424214,0.645761,0.384336,0.987716,0.434117,0.715869,0.786512,0.286422,0.200898,0.572204,0.391248,0.969792,0.247405,0.856572,0.577018,0.74274,0.937922,0.993332,0.690644,0.560241,0.951472,0.889394,0.929033,0.254103,0.356213,0.793723,0.658437,0.0598031,0.0345882,0.801897,0.654643,0.93034,0.690407,0.0211329,0.450791,0.946423,0.0449533,0.398936,0.669926,0.760567,0.0416895,0.947081,0.106332,0.286498,0.231581,0.735736,0.367952,0.23606,0.224401,0.790462,0.299363,0.326663,0.256038,0.363629,0.467096,0.166969,0.682148,0.631891,0.950439,0.76133,0.38919,0.945328,0.930358,0.112692,0.151376,0.776272,0.23154,0.510911,0.943866,0.868191,0.153096,0.794086,0.299675,0.0799888,0.0532265,0.0611593,0.211653,0.871103,0.179388,0.980447,0.822659,0.209679,0.671908,0.207719,0.348428,0.481139,0.315457,0.636838,0.604491,0.136242,0.784872,0.00170881,0.0359831,0.422141,0.879255,0.939693,0.974443,0.571578,0.686328,0.0222427,0.597196,0.304621,0.759404,0.674374,0.126016,0.561762,0.780117,0.187281,0.273651,0.960133,0.0156347,0.35148,0.731886,0.219246,0.108609,0.49662,0.438913,0.920956,0.862086,0.97183,0.766144,0.115267,0.135801,0.859962,0.293399,0.509036,0.344175,0.218192,0.433037,0.33894,0.751279,0.846002,0.701785,0.257049,0.738222,0.952909,0.256587,0.285745,0.158387,0.36394,0.605009,0.210738,0.504863,0.354636,0.335338,0.472041,0.975398,0.0248308,0.245085,0.592689,0.470299,0.980881,0.0466701,0.287279,0.985129,0.618567,0.263716,0.637009,0.676728,0.00236958,0.524477,0.530359,0.599961,0.301589,0.928072,0.267866,0.524721,0.706336,0.360551,0.46367,0.439991,0.287145,0.242384,0.267624,0.841624,0.446273,0.987126,0.568085,0.556737,0.547031,0.802958,0.0509522,0.941138,0.169544,0.874594,0.920225,0.421599,0.380252,0.636157,0.544038,0.693725,0.431958,0.471814,0.725666,0.736148,0.531284,0.590945,0.789721,0.416805,0.0908777,0.779079,0.187134,0.144167,0.470472,0.352246,0.326205,0.717908,0.0410559,0.423762,0.927515,0.278897,0.475691,0.55914,0.701525,0.618373,0.96231,0.947487,0.637422,0.525447,0.736656,0.578188,0.877572,0.123726,0.270383,0.495146,0.237508,0.489172,0.157263,0.477443,0.563158,0.93931,0.683032,0.711547,0.308635,0.148504,0.836837,0.22188,0.60448,0.00732809,0.545055,0.566307,0.522532,0.860663,0.158582,0.408696,0.497594,0.171127,0.627493,0.218007,0.128981,0.534967,0.461255,0.875657,0.608962,0.326939,0.289368,0.620662,0.215938,0.53919,0.922393,0.982248,0.914992,0.71332,0.495643,0.577136,0.673649,0.980873,0.21233,0.0352377,0.366754,0.0108334,0.38769,0.371401,0.445283,0.193192,0.856092,0.592791,0.503815,0.763663,0.760018,0.116527,0.377637,0.0872676,0.0855893,0.717219,0.779417,0.0542735,0.82387,0.994132,0.456639,0.264163,0.344655,0.0482803,0.343462,0.253124,0.656856,0.439767,0.747967,0.854011,0.782986,0.0737437,0.777373,0.0367373,0.908145,0.157711,0.657202,0.477108,0.149612,0.144961,0.224182,0.0884733,0.193514,0.131268,0.728889,0.749529,0.380842,0.865657,0.278736,0.860624,0.63016,0.58474,0.879449,0.830284,0.439433,0.835098,0.105591,0.917552,0.274047,0.606008,0.259943,0.0579903,0.878112,0.15762,0.540487,0.80602,0.326754,0.130202,0.889982,0.220969,0.523178,0.718156,0.240654,0.32945,0.618917,0.826004,0.355047,0.59951,0.528482,0.785758,0.832413,0.359037,0.0930799,0.209036,0.0690139,0.570666,0.383914,0.827319,0.0565791,0.773981,0.379524,0.667515,0.987123,0.557727,0.243434,0.742011,0.985642,0.528487,0.601522,0.25046,0.748876,0.663229,0.848934,0.696454,0.297167,0.627159,0.811086,0.884906,0.966299,0.939169,0.0775424,0.56918,0.547197,0.66208,0.665048,0.629092,0.173396,0.0872739,0.190198,0.283266,0.433446,0.353958,0.193635,0.582647,0.598103,0.876296,0.0344904,0.536266,0.63127,0.262658,0.16743,0.0781,0.158093,0.830098,0.103777,0.187919,0.0952226,0.147998,0.188133,0.130835,0.648003,0.681988,0.448015,0.0687984,0.606867,0.620611,0.108359,0.828993,0.325942,0.508042,0.863426,0.814325,0.804341,0.449862,0.444176,0.118661,0.561656,0.0420598,0.000397801,0.450545,0.96273,0.221116,0.275694,0.995427,0.907115,0.763549,0.748232,0.700551,0.333205,0.954286,0.379156,0.159349,0.351555,0.321432,0.999295,0.103281,0.840992,0.449997,0.167637,0.436685,0.881833,0.0106215,0.0591863,0.270578,0.639705,0.144272,0.0999156,0.440576,0.0020889,0.869774,0.12175,0.379617,0.385665,0.34525,0.0962536,0.414199,0.0563846,0.667535,0.358105,0.951065,0.315309,0.857933,0.166058,0.250653,0.557548,0.956403,0.589384,0.387311,0.745229,0.191811,0.368816,0.647854,0.00454825,0.662939,0.9547,0.474002,0.697399,0.233729,0.21825,0.225493,0.810106,0.27583,0.759749,0.775377,0.532636,0.472043,0.0724832,0.990328,0.461935,0.878956,0.535145,0.0143363,0.0531896,0.853933,0.318791,0.736979,0.869374,0.679766,0.287197,0.671529,0.539454,0.258372,0.064744,0.361338,0.815995,0.252411,0.97873,0.908846,0.835407,0.0734101,0.910702,0.551017,0.253969,0.620848,0.122236,0.370004,0.892777,0.218949,0.887088,0.986629,0.435548,0.616508,0.0241374,0.149195,0.87193,0.873139,0.709484,0.873862,0.909656,0.689935,0.87242,0.731085,0.299017,0.968589,0.121838,0.29545,0.751259,0.299726,0.916296,0.433598,0.563527,0.628678,0.0402027,0.311153,0.177079,0.337961,0.0337644,0.320192,0.233974,0.0175815,0.619112,0.635627,0.770197,0.298801,0.28936,0.700103,0.559037,0.932068,0.0712497,0.393382,0.72925,0.659196,0.440306,0.987151,0.189421,0.786387,0.448645,0.732898,0.888721,0.550899,0.0275405,0.642567,0.0522771,0.232055,0.875213,0.706599,0.495131,0.0585571,0.854552,0.382657,0.999196,0.280135,0.982232,0.726167,0.90837,0.327639,0.595843,0.465486,0.215269,0.247862,0.787508,0.198657,0.270262,0.526782,0.575297,0.780548,0.755445,0.22325,0.931129,0.945755,0.873858,0.623099,0.211475,0.188646,0.762273,0.481889,0.180178,0.0136865,0.617634,0.30455,0.419695,0.981877,0.389723,0.521798,0.310783,0.265612,0.0949001,0.484233,0.0907258,0.505578,0.358998,0.72374,0.804747,0.299398,0.709254,0.24655,0.554875,0.79366,0.763665,0.181415,0.080682,0.210798,0.551446,0.202797,0.30369,0.599997,0.91601,|0.417245,0.639564,0.941752,0.0930169,0.373869,0.12285,0.500413,0.782677,0.0424464,0.385371,0.829303,0.560569,0.170929,0.836586,0.628225,0.904637,0.738847,0.690068,0.633214,0.150607,0.00766778,0.0935538,0.800147,0.112747,0.693258,0.330519,0.640372,0.963632,0.778456,0.878626,0.511223,0.513112,0.695213,0.131587,0.136871,0.805118,0.404043,0.271925,0.0954616,0.594635,0.136586,0.99707,0.121115,0.457109,0.680607,0.932841,0.947044,0.89262,0.184222,0.338718,0.37901,0.466811,0.915502,0.0655622,0.25461,0.417443,0.451623,0.532712,0.173925,0.24372,0.286881,0.358795,0.447379,0.564074,0.350766,0.839732,0.544695,0.448218,0.715586,0.953053,0.681458,0.712288,0.45824,0.639192,0.943108,0.81726,0.200066,0.697535,0.457494,0.997057,0.028586,0.270502,0.225029,0.23499,0.964501,0.378329,0.526326,0.243512,0.688391,0.643586,0.332347,0.0443232,0.235368,0.960815,0.912035,0.235662,0.0608623,0.448336,0.228871,0.809174,0.648806,0.958233,0.0700982,0.591641,0.549845,0.248225,0.0860648,0.263142,0.409298,0.136608,0.0303215,0.397905,0.794151,0.724654,0.828492,0.345518,0.780838,0.205774,0.961893,0.334023,0.836714,0.380634,0.591726,0.0203663,0.486796,0.00483811,0.240467,0.122608,0.553841,0.78372,0.0193366,0.157656,0.923481,0.540333,0.821205,0.725907,0.557741,0.863792,0.469476,0.211675,0.691286,0.146195,0.145537,0.670475,0.892065,0.979997,0.0571333,6.77705e-05,0.801757,0.666284,0.364322,0.428516,0.150142,0.769314,0.50498,0.0683239,0.704305,0.0205797,0.165196,0.19288,0.135956,0.0451404,0.956177,0.33833,0.914313,0.680446,0.663512,0.843867,0.817346,0.154427,0.899761,0.721538,0.763032,0.340994,0.644768,0.638657,0.643874,0.695402,0.661256,0.166943,0.464384,0.936147,0.621927,0.34142,0.365456,0.24378,0.679088,0.546757,0.507385,0.906625,0.270425,0.29465,0.110538,0.334827,0.98336,0.397289,0.100523,0.84712,0.453897,0.483017,0.161578,0.886923,0.780868,0.833784,0.651833,0.0341703,0.316163,0.686753,0.70702,0.561729,0.925257,0.271343,0.72334,0.000752032,0.826975,0.854791,0.512284,0.18374,0.865,0.0953365,0.567222,0.398381,0.0524199,0.387632,0.566093,0.573533,0.895989,0.244076,0.184842,0.542596,0.689352,0.735036,0.961485,0.168295,0.147393,0.118784,0.522201,0.159871,0.636061,0.936962,0.979306,0.832302,0.653147,0.315531,0.268895,0.432703,0.315607,0.900772,0.216224,0.402519,0.797848,0.642254,0.326377,0.783789,0.460677,0.0157161,0.745539,0.166903,0.787137,0.276376,0.664168,0.722086,0.992566,0.853913,0.340551,0.981075,0.981934,0.84658,0.443041,0.479043,0.55943,0.437943,0.474121,0.210355,0.733952,0.616542,0.20592,0.0352157,0.916801,0.0717092,0.782361,0.0535111,0.832948,0.342436,0.881759,0.485606,0.42431,0.827526,0.15952,0.300103,0.758353,0.732583,0.995681,0.434073,0.669229,0.429732,0.0527067,0.621347,0.565411,0.70103,0.206967,0.575109,0.264385,0.804469,0.891342,0.786384,0.861439,0.590386,0.123332,0.568655,0.21209,0.651721,0.265628,0.0870821,0.130144,0.603948,0.754776,0.125787,0.259381,0.175818,0.592664,0.891855,0.811339,0.495694,0.281066,0.276358,0.276045,0.589503,0.818483,0.964688,0.514056,0.718996,0.157925,0.158275,0.512888,0.177305,0.9398,0.459342,0.732581,0.734141,0.589941,0.964022,0.779263,0.305698,0.939829,0.658809,0.933751,0.0654465,0.207318,0.502567,0.851988,0.967549,0.218275,0.553662,0.747131,0.363314,0.0777777,0.88411,0.520498,0.611323,0.195657,0.893289,0.39582,0.397378,0.558106,0.645063,0.38777,0.906848,0.550376,0.276722,0.0213898,0.386425,0.519378,0.847903,0.373204,0.842623,0.603599,0.845623,0.107132,0.443395,0.968745,0.71023,0.931163,0.199078,0.887126,0.548704,0.431252,0.814894,0.960169,0.503899,0.986235,0.685192,0.202547,0.03528,0.489462,0.383455,0.272822,0.0412121,0.892039,0.300914,0.162293,0.560275,0.617084,0.876979,0.589467,0.883857,0.661203,0.412996,0.925194,0.38387,0.707348,0.525112,0.711865,0.979227,0.506791,0.275325,0.468829,0.977168,0.155221,0.950287,0.561025,0.231183,0.774331,0.682061,0.535646,0.434622,0.503907,0.360128,0.371709,0.80168,0.865389,0.021722,0.137112,0.979238,0.919878,0.996369,0.554074,0.699714,0.501614,0.17644,0.87744,0.623547,0.498915,0.206386,0.40713,0.428999,0.914737,0.764906,0.616896,0.798208,0.288009,0.578404,0.261652,0.551381,0.788486,0.607405,0.278713,0.860034,0.446657,0.0996854,0.662866,0.936416,0.636649,0.657929,0.305904,0.872016,0.324633,0.406692,0.416761,0.11257,0.747261,0.0925026,0.248087,0.225708,0.935444,0.953743,0.209885,0.332442,0.866341,0.787807,0.523021,0.586755,0.784783,0.676014,0.166909,0.868446,0.968008,0.283968,0.673505,0.942452,0.00510436,0.696354,0.217914,0.421348,0.860645,0.642647,0.69239,0.104738,0.82308,0.71704,0.102121,0.257055,0.36906,0.228052,0.106834,0.571267,0.391018,0.962288,0.120535,0.859495,0.985282,0.314725,0.985578,0.98876,0.347538,0.705321,0.632809,0.987727,0.0896303,0.772209,0.401682,0.562442,0.889122,0.346781,0.238744,0.759798,0.0932691,0.343005,0.388744,0.684037,0.948391,0.978528,0.0468492,0.745668,0.155323,0.709393,0.887313,0.180984,0.423626,0.678353,0.59521,0.191105,0.933933,0.163509,0.698382,0.532697,0.791896,0.78022,0.53041,0.296185,0.543498,0.601393,0.643047,0.163998,0.13571,0.354922,0.657511,0.249064,0.881022,0.0704364,0.486478,0.85324,0.575209,0.778762,0.136599,0.487299,0.526018,0.460786,0.251345,0.325057,0.0892336,0.85133,0.702097,0.905303,0.15108,0.987557,0.423531,0.38319,0.800372,0.801702,0.181705,0.00589067,0.699799,0.861226,0.62798,0.891618,0.247123,0.74177,0.643802,0.508749,0.0258069,0.820702,0.764621,0.731223,0.810752,0.762799,0.131239,0.37942,0.490055,0.186009,0.0358968,0.487756,0.239186,0.14701,0.788804,0.40148,0.442639,0.0798573,0.391969,0.393482,0.0176222,0.169183,0.900557,0.367586,0.773752,0.428201,0.511348,0.238686,0.914691,0.558137,0.615543,0.713633,0.0830981,0.205362,0.634109,0.151794,0.671871,0.672754,0.241871,0.218483,0.781556,0.527523,0.849968,0.804402,0.539266,0.40762,0.913441,0.792578,0.912103,0.136111,0.594036,0.680487,0.444133,0.566575,0.179033,0.888157,0.828706,0.446608,0.833765,0.65267,0.949667,0.305876,0.204156,0.221242,0.916814,0.246808,0.181586,0.127206,0.682736,0.980706,0.15396,0.435943,0.189617,0.0104725,0.909654,0.465625,0.917626,0.550047,0.197978,0.234754,0.686812,0.669507,0.517874,0.613031,0.576822,0.0326055,0.0223386,0.589548,0.769439,0.600328,0.180089,0.238088,0.445419,0.550642,0.418456,0.405582,0.545998,0.24691,0.196394,0.779392,0.728465,0.686834,0.0613971,0.537098,0.482708,0.187946,0.582012,0.288504,0.0987536,0.618718,0.125214,0.639335,0.668478,0.149723,0.987731,0.568579,0.828034,0.548743,0.794002,0.13442,0.112138,0.526756,0.635042,0.777463,0.320415,0.243629,0.412145,0.865326,0.823586,0.249707,0.0637909,0.0350828,0.36675,0.199118,0.335451,0.115229,0.215528,0.331488,0.0156959,0.481029,0.782326,0.933478,0.607598,0.403844,0.19281,0.537553,0.30589,0.708769,0.287585,0.128255,0.272011,0.113096,0.585018,0.0954905,0.400697,0.511168,0.764734,0.199319,0.187743,0.534609,0.0364255,0.19341,0.458437,0.412404,0.665954,0.484817,0.749751,0.556122,0.906676,0.846957,0.792896,0.836236,0.136997,0.946648,0.922812,0.116919,0.985232,0.699361,0.0365884,0.803049,0.820971,0.149203,0.921396,0.665702,0.509045,0.949867,0.729813,0.439502,0.340587,0.600851,0.89197,0.95017,0.509145,0.452581,0.52647,0.375461,0.451926,0.115718,0.452036,0.985474,0.0308628,0.915267,0.129173,0.426299,0.158521,0.926436,0.396545,0.840983,0.677328,0.961709,0.669412,0.516599,0.912677,0.00765836,0.350598,0.322689,0.826605,0.328338,0.522676,0.490419,0.108817,0.0203984,0.912008,0.335473,0.190507,0.618654,0.0393561,0.0667312,0.517018,0.213797,0.0176966,0.59511,0.545323,0.117472,0.383759,0.216357,0.0523113,0.808637,0.673522,0.211904,0.516496,0.959001,0.781905,0.594183,0.346524,0.631303,0.591476,0.225796,0.675831,0.677737,0.35049,0.709814,0.968829,0.593153,0.0133743,0.734463,0.532166,0.0484983,0.412201,0.345089,0.099792,0.495564,0.00455743,0.439936,0.918532,0.400553,0.966712,0.732081,0.604935,0.37125,0.862421,0.506056,0.356385,0.974455,0.271518,0.264533,0.71374,0.324783,0.545699,0.887412,0.459358,0.847371,0.389852,0.457092,0.981342,0.967009,0.0765086,0.823145,0.793117,0.698058,0.287169,0.480903,0.793117,0.0720648,0.747058,0.644077,0.611956,0.854887,0.0793132,0.666745,0.632383,0.963603,0.0315044,0.271505,0.665185,0.397013,0.842763,0.0160731,0.712642,0.262077,0.777147,0.431594,0.91329,0.342199,0.0772517,0.0128757,0.651345,0.613942,0.759511,0.892599,0.576679,0.169594,0.751527,0.601512,0.0815753,0.980321,0.909878,0.133564,0.864515,0.107696,0.479849,0.237854,0.0998663,0.623802,0.446921,0.440002,0.156621,0.818585,0.985082,0.807287,0.943567,0.888636,0.932147,0.568358,0.0907784,0.875711,0.377562,0.806304,0.0452532,0.780515,0.637678,0.515876,0.255819,0.600445,0.227655,0.261814,0.33224,0.358752,0.737358,0.137537,0.149047,0.62305,0.61614,0.74574,0.768357,0.480867,0.504268,0.804916,0.910082,0.286563,0.686572,0.152194,0.940086,0.0295251,0.567762,0.61976,0.522258,0.451553,0.272397,0.581526,0.762514,0.980276,0.479588,0.176887,0.378472,0.926137,0.752966,0.0583717,0.136972,0.42029,0.15801,0.781422,0.361776,0.782947,0.761147,0.933045,0.991875,0.531693,0.0666798,0.288324,0.555516,0.782222,0.382148,0.608115,0.405772,0.585387,0.779073,0.652302,0.110033,0.905509,|0.799628,0.259609,0.803082,0.339177,0.798752,0.696833,0.237024,0.66734,0.107139,0.980516,0.205287,0.100614,0.975667,0.591815,0.139307,0.813098,0.300026,0.00311232,0.362687,0.299634,0.892484,0.726917,0.0788975,0.32015,0.713348,0.259834,0.492571,0.985241,0.437786,0.737336,0.554207,0.39731,0.274437,0.398976,0.810194,0.631408,0.615387,0.1644,0.183285,0.461268,0.465725,0.0959636,0.987755,0.269222,0.38266,0.524568,0.313648,0.307159,0.868612,0.520518,0.262786,0.464407,0.479309,0.903243,0.418413,0.0235559,0.000410199,0.769132,0.0349232,0.812626,0.235494,0.396072,0.355123,0.476543,0.251255,0.25831,0.937239,0.0598446,0.0504033,0.917648,0.068826,0.780168,0.0923866,0.360745,0.354021,0.74492,0.923027,0.280903,0.573715,0.182445,0.594459,0.767697,0.911115,0.83104,0.124362,0.218977,0.546484,0.425436,0.0640237,0.453208,0.0771537,0.932198,0.83587,0.699791,0.163716,0.742081,0.428503,0.929789,0.656095,0.0174981,0.635946,0.730737,0.731434,0.888976,0.304153,0.333212,0.532908,0.0646065,0.361335,0.594663,0.558553,0.302743,0.400693,0.97062,0.885286,0.138657,0.365429,0.312381,0.128763,0.972692,0.89667,0.838384,0.44868,0.342425,0.231235,0.551031,0.231347,0.844971,0.462824,0.579347,0.825349,0.71141,0.406005,0.270884,0.978064,0.989555,0.0748618,0.313797,0.932152,0.558768,0.735872,0.838645,0.776472,0.142434,0.859817,0.899635,0.997518,0.0870537,0.101089,0.609702,0.219331,0.294763,0.511565,0.999694,0.756387,0.233291,0.457628,0.0428137,0.318748,0.12137,0.236309,0.762741,0.0866492,0.485419,0.242409,0.735932,0.542738,0.885386,0.243176,0.464163,0.750593,0.830539,0.0442715,0.479285,0.891793,0.262536,0.43236,0.47709,0.00153905,0.0121146,0.297871,0.423001,0.076297,0.126397,0.28235,0.825003,0.523771,0.699704,0.709819,0.869289,0.338339,0.462833,0.386099,0.319216,0.887538,0.783366,0.986583,0.968002,0.0636461,0.970184,0.397504,0.742298,0.986558,0.503594,0.12368,0.413549,0.868471,0.064811,0.0969617,0.620491,0.78854,0.133456,0.761,0.602852,0.0705861,0.571181,0.679557,0.0790772,0.357608,0.649858,0.836363,0.973779,0.34397,0.199978,0.650755,0.00349557,0.120115,0.456208,0.10354,0.242964,0.286806,0.332915,0.473734,0.999564,0.445166,0.739256,0.215219,0.882616,0.341451,0.0487303,0.965531,0.803098,0.360387,0.0237702,0.747224,0.856578,0.782739,0.232025,0.836688,0.271738,0.645225,0.52155,0.921808,0.353633,0.601683,0.790662,0.482533,0.488652,0.0576932,0.192659,0.0694369,0.804129,0.743568,0.113501,0.234018,0.104248,0.0934082,0.188632,0.106786,0.177129,0.943938,0.849278,0.0953828,0.25723,0.722598,0.488177,0.630872,0.00995481,0.245137,0.464314,0.326276,0.509752,0.961829,0.717383,0.0474893,0.215223,0.235506,0.523874,0.186789,0.526537,0.18958,0.422341,0.960802,0.439112,0.49479,0.720779,0.603551,0.401325,0.669056,0.857834,0.374853,0.639128,0.776303,0.771556,0.985015,0.482086,0.831338,0.473365,0.366498,0.261618,0.0349804,0.199859,0.77871,0.822666,0.164234,0.550563,0.0684158,0.180436,0.565653,0.495917,0.345018,0.427093,0.23655,0.732888,0.569513,0.249234,0.60896,0.220503,0.340349,0.258365,0.291433,0.732619,0.973405,0.18523,0.276518,0.290281,0.0512581,0.360666,0.455277,0.554944,0.530765,0.857398,0.987815,0.352494,0.931475,0.0540774,0.234246,0.549451,0.117547,0.436759,0.0225667,0.281665,0.43608,0.010132,0.235253,0.602017,0.450429,0.410853,0.14969,0.785074,0.640671,0.365178,0.927471,0.976676,0.976562,0.802267,0.281389,0.0589579,0.989204,0.0864416,0.183812,0.838979,0.935544,0.623555,0.051333,0.0534202,0.0834827,0.888834,0.195374,0.0863413,0.284741,0.232972,0.690348,0.269573,0.271425,0.958983,0.100705,0.846939,0.646598,0.880955,0.165913,0.188864,0.834138,0.216718,0.468164,0.717633,0.0468189,0.744971,0.665888,0.568609,0.426404,0.326196,0.927237,0.0531666,0.616073,0.601254,0.507445,0.0447612,0.760368,0.116928,0.889189,0.0405033,0.421166,0.281108,0.398774,0.475662,0.598657,0.807015,0.451495,0.0576212,0.491072,0.470694,0.853483,0.363164,0.0367964,0.629451,0.408282,0.222296,0.757001,0.822699,0.812405,0.469076,0.474984,0.577993,0.227403,0.152345,0.327036,0.960119,0.992843,0.889399,0.0856617,0.690513,0.17721,0.707138,0.108918,0.108367,0.929543,0.445701,0.339942,0.924948,0.493809,0.675276,0.339505,0.0622423,0.0810244,0.838717,0.534694,0.267742,0.936871,0.861539,0.0253977,0.565375,0.545814,0.628251,0.31459,0.644094,0.965287,0.426643,0.821424,0.232887,0.24722,0.898755,0.577758,0.249609,0.832939,0.293967,0.818181,0.168333,0.814595,0.347517,0.832887,0.732379,0.702629,0.996786,0.531474,0.677061,0.745651,0.522927,0.365201,0.000551105,0.455153,0.00133187,0.222722,0.751554,0.680787,0.568537,0.204107,0.735439,0.422687,0.885845,0.35128,0.725155,0.517383,0.0657734,0.0140287,0.0266262,0.26377,0.898383,0.354563,0.0287268,0.00549406,0.247562,0.802193,0.0417899,0.390208,0.191012,0.769648,0.789654,0.188891,0.276806,0.747891,0.0892024,0.712989,0.175009,0.161866,0.701275,0.816987,0.46166,0.643886,0.492464,0.710152,0.386982,0.0151805,0.849457,0.820465,0.792858,0.0215037,0.552249,0.587186,0.187242,0.768962,0.224087,0.94563,0.739626,0.74913,0.298695,0.739789,0.286022,0.244883,0.443876,0.760214,0.159002,0.627355,0.897838,0.949388,0.536602,0.142007,0.0796343,0.829233,0.102421,0.753049,0.506153,0.296405,0.671726,0.866465,0.37364,0.438426,0.0457737,0.423224,0.168179,0.684741,0.632217,0.1739,0.633477,0.927475,0.0355445,0.136272,0.581841,0.0775428,0.432562,0.233182,0.22878,0.254616,0.136968,0.639621,0.228365,0.356847,0.320403,0.252148,0.148217,0.192972,0.0607961,0.600548,0.789232,0.10706,0.109715,0.0258515,0.51454,0.442498,0.123484,0.194198,0.785578,0.423906,0.229816,0.709599,0.222716,0.0943876,0.222228,0.685959,0.778018,0.216538,0.919815,0.0207418,0.845975,0.529272,0.969057,0.449501,0.572651,0.447392,0.59075,0.81659,0.359081,0.802786,0.717005,0.382896,0.532834,0.185463,0.544051,0.626339,0.762819,0.578582,0.953139,0.026328,0.990713,0.370138,0.778596,0.735282,0.283374,0.821892,0.0295909,0.285334,0.430377,0.205974,0.685641,0.239391,0.715972,0.226883,0.00928867,0.116904,0.292127,0.510951,0.50723,0.831906,0.960551,0.47728,0.729657,0.189051,0.925557,0.563417,0.278536,0.944936,0.327467,0.586073,0.391124,0.9874,0.146539,0.226377,0.148586,0.194644,0.680989,0.946514,0.961594,0.762151,0.510045,0.720474,0.203459,0.686787,0.342571,0.818431,0.102428,0.978071,0.20973,0.923839,0.481572,0.774981,0.56181,0.604025,0.57419,0.820189,0.751839,0.119614,0.55079,0.794407,0.869924,0.0675889,0.160249,0.179645,0.579409,0.294858,0.645063,0.626216,0.785859,0.117829,0.943922,0.255117,0.371757,0.890425,0.288104,0.805402,0.118684,0.108406,0.338716,0.102749,0.0192042,0.89079,0.524155,0.160256,0.52979,0.837606,0.134118,0.595143,0.708549,0.201275,0.37439,0.274531,0.297837,0.671195,0.332509,0.00409967,0.591145,0.897324,0.523078,0.823524,0.0198149,0.596435,0.416848,0.139562,0.886832,0.137389,0.726801,0.751306,0.0442247,0.167738,0.430039,0.752094,0.308134,0.136348,0.305602,0.637156,0.0342234,0.400409,0.0403232,0.298135,0.179842,0.00302899,0.669143,0.0747092,0.383115,0.882642,0.929263,0.443297,0.768328,0.549452,0.767731,0.399115,0.740879,0.830326,0.489105,0.801172,0.31618,0.59084,0.487205,0.938548,0.922373,0.881388,0.821682,0.51358,0.0060941,0.588105,0.995628,0.57416,0.410783,0.210491,0.0196766,0.347793,0.361624,0.76851,0.174377,0.249586,0.170547,0.863894,0.601275,0.136194,0.419306,0.710809,0.0812975,0.199696,0.270334,0.415536,0.0866551,0.80729,0.0832108,0.879311,0.0652103,0.990884,0.115143,0.436358,0.261422,0.433835,0.455386,0.937291,0.0824363,0.259982,0.749695,0.435278,0.104655,0.69133,0.641455,0.84622,0.353793,0.272151,0.984808,0.786823,0.831066,0.749875,0.733248,0.0446851,0.708804,0.428347,0.595592,0.189688,0.892252,0.764559,0.576402,0.45944,0.492359,0.518342,0.871998,0.138716,0.592245,0.10832,0.915192,0.972765,0.722262,0.0551826,0.836785,0.36207,0.622374,0.380629,0.0789912,0.213911,0.311399,0.069743,0.491284,0.495501,0.783985,0.298333,0.877448,0.275779,0.808065,0.647876,0.571439,0.697785,0.414211,0.63079,0.508438,0.509385,0.288068,0.0674495,0.034669,0.0988066,0.408402,0.0884279,0.696655,0.481163,0.955125,0.268112,0.359794,0.867226,0.182091,0.0787589,0.523308,0.95923,0.791996,0.931998,0.799985,0.319232,0.415959,0.11519,0.842613,0.0454802,0.2455,0.303083,0.433925,0.970427,0.790923,0.456957,0.406985,0.679976,0.394187,0.321006,0.425762,0.255617,0.346065,0.265756,0.775176,0.563135,0.641361,0.226877,0.670591,0.427173,0.848018,0.392755,0.0194013,0.535158,0.544073,0.811272,0.824095,0.970796,0.080809,0.659186,0.621596,0.793686,0.162309,0.361979,0.554586,0.912693,0.817179,0.621233,0.320993,0.522387,0.152125,0.133543,0.96006,0.280109,0.256132,0.383092,0.94938,0.272882,0.861068,0.0117256,0.501412,0.271928,0.0719869,0.636545,0.743253,0.133072,0.362394,0.689976,0.385095,0.615658,0.0368826,0.779045,0.147738,0.63872,0.881118,0.4328,0.803999,0.0147824,0.00216508,0.316675,0.999277,0.17699,0.260201,0.223421,0.356461,0.943455,0.895543,0.267743,0.897693,0.199133,0.156985,0.828171,0.978641,0.893721,0.354139,0.621257,0.194996,0.239384,0.254725,0.222558,0.736372,0.112823,0.528962,0.280607,0.327997,0.688205,0.917874,0.874294,0.99578,0.418499,0.928241,0.665055,0.659971,0.351284,0.497941,0.57331,0.239547,0.479562,0.931127,|0.43511,0.900739,0.46673,0.527943,0.0796666,0.7972,0.0148521,0.0257998,0.90677,0.114233,0.377042,0.437048,0.619175,0.125379,0.259314,0.142379,0.91161,0.141283,0.236322,0.0329471,0.0195133,0.90376,0.454112,0.716777,0.933298,0.775872,0.02494,0.838207,0.321155,0.780145,0.211066,0.834517,0.440177,0.63259,0.487951,0.376368,0.769977,0.234346,0.367045,0.825727,0.17356,0.202889,0.132207,0.113883,0.578187,0.78873,0.103859,0.504506,0.83069,0.88638,0.0468797,0.351652,0.906314,0.820298,0.551862,0.825113,0.338197,0.147127,0.567358,0.609939,0.982568,0.594153,0.69789,0.265164,0.855021,0.528567,0.0971445,0.463033,0.993854,0.185425,0.754006,0.963535,0.708721,0.884036,0.0654581,0.260046,0.669617,0.823139,0.742909,0.363408,0.900595,0.294143,0.196937,0.337642,0.774953,0.41605,0.174091,0.515768,0.277483,0.785967,0.904533,0.268652,0.0250961,0.902266,0.263609,0.797956,0.46363,0.0497828,0.691328,0.113847,0.898683,0.411352,0.111391,0.84458,0.411578,0.762643,0.806869,0.0337815,0.27521,0.491488,0.811763,0.590892,0.362315,0.859988,0.956236,0.724234,0.387445,0.522888,0.128632,0.87746,0.382412,0.308427,0.645532,0.732127,0.629712,0.30663,0.43911,0.327883,0.180922,0.0594408,0.546178,0.941177,0.317051,0.480642,0.333527,0.017712,0.775303,0.165094,0.782127,0.75011,0.130763,0.128633,0.391709,0.0371016,0.0942363,0.38546,0.170169,0.59341,0.846913,0.195583,0.739769,0.883736,0.204593,0.903109,0.339471,0.764996,0.671443,0.262678,0.692744,0.691793,0.896998,0.554075,0.799819,0.291881,0.621536,0.791901,0.234507,0.984178,0.778685,0.302268,0.883708,0.948943,0.724933,0.0302075,0.33329,0.974081,0.532524,0.0688028,0.928448,0.230585,0.673922,0.585014,0.200952,0.217465,0.629412,0.262203,0.829877,0.429672,0.0558301,0.164976,0.0730671,0.399955,0.264961,0.451795,0.85365,0.448554,0.486614,0.671988,0.106624,0.115158,0.942152,0.555651,0.66926,0.467045,0.582118,0.921715,0.610269,0.0985862,0.658699,0.872218,0.741623,0.0190147,0.750343,0.163026,0.278782,0.467275,0.0310119,0.945251,0.0584069,0.327091,0.29926,0.406931,0.00472432,0.87411,0.543159,0.100145,0.668527,0.105147,0.534282,0.770383,0.233197,0.709502,0.165887,0.836196,0.372294,0.636837,0.653144,0.108147,0.925833,0.112984,0.194985,0.43028,0.574997,0.251277,0.851543,0.755127,0.190515,0.335504,0.809568,0.472658,0.258499,0.283772,0.613521,0.693304,0.569989,0.530636,0.854191,0.929276,0.0358339,0.533749,0.450682,0.433908,0.965945,0.1267,0.361199,0.0412267,0.904239,0.326709,0.775361,0.460652,0.653302,0.810877,0.485862,0.771087,0.464855,0.48272,0.0809394,0.861962,0.422756,0.81373,0.0498567,0.0699266,0.676677,0.170711,0.0887883,0.678289,0.851763,0.924744,0.985384,0.699038,0.916258,0.751356,0.42635,0.380668,0.961254,0.751002,0.370294,0.341352,0.947558,0.00925356,0.220902,0.627262,0.267176,0.914033,0.239909,0.393752,0.567583,0.0886455,0.951691,0.602184,0.265676,0.320967,0.2626,0.771453,0.528072,0.343728,0.0811219,0.30242,0.537327,0.744537,0.446309,0.940656,0.699784,0.556453,0.319941,0.775537,0.288104,0.332809,0.221459,0.0982977,0.758045,0.373961,0.53219,0.363946,0.993703,0.714246,0.699546,0.146761,0.154796,0.510065,0.716224,0.471154,0.342497,0.706269,0.0737084,0.816689,0.905991,0.489024,0.733923,0.39697,0.327357,0.688787,0.287958,0.182729,0.813527,0.205808,0.717867,0.986023,0.106787,0.680856,0.359393,0.515939,0.514134,0.711237,0.0780086,0.391763,0.174539,0.785968,0.858559,0.285255,0.424685,0.359749,0.334204,0.303958,0.192464,0.16326,0.712272,0.339956,0.835326,0.943971,0.984629,0.652398,0.775078,0.16187,0.241786,0.171385,0.215311,0.280441,0.0707915,0.770792,0.489521,0.569225,0.568454,0.570173,0.906823,0.449979,0.00905222,0.577371,0.926973,0.860227,0.260266,0.638511,0.743361,0.750815,0.658754,0.500763,0.774022,0.989967,0.0661438,0.814705,0.0663725,0.296515,0.0830365,0.685142,0.752838,0.143336,0.184579,0.91654,0.40154,0.227166,0.297221,0.352846,0.0575634,0.968509,0.6059,0.0549414,0.960469,0.246472,0.708052,0.079897,0.51328,0.625751,0.400704,0.553867,0.472084,0.294287,0.0438401,0.392105,0.373279,0.690748,0.0254875,0.276623,0.133847,0.720324,0.484821,0.343914,0.183092,0.803054,0.970414,0.922036,0.577844,0.694086,0.569627,0.617283,0.484473,0.0140932,0.803149,0.342462,0.194481,0.0992222,0.305544,0.965057,0.83839,0.257902,0.907466,0.0970706,0.376706,0.0228774,0.417766,0.818741,0.603882,0.292542,0.750174,0.54269,0.959862,0.288576,0.353833,0.568261,0.948559,0.520458,0.459631,0.301011,0.587287,0.656437,0.623454,0.0109887,0.620741,0.706329,0.317102,0.135681,0.612364,0.215223,0.700249,0.959958,0.422425,0.888841,0.369119,0.824871,0.81018,0.746262,0.286898,0.222197,0.820112,0.698431,0.996944,0.377603,0.805836,0.916961,0.775322,0.00276244,0.859524,0.182086,0.00920159,0.968143,0.461307,0.75643,0.40849,0.75192,0.615003,0.893351,0.887027,0.0607412,0.246711,0.252306,0.929514,0.84945,0.00175178,0.0434155,0.229239,0.221898,0.193854,0.88589,0.997273,0.414097,0.776783,0.991124,0.680099,0.143071,0.363539,0.972878,0.41843,0.0700614,0.391623,0.177266,0.37845,0.706593,0.379525,0.018802,0.445506,0.790806,0.210741,0.455901,0.282342,0.473979,0.194988,0.631008,0.0312833,0.294364,0.696585,0.355047,0.730984,0.563854,0.135463,0.486938,0.589568,0.893441,0.612421,0.259536,0.572559,0.991886,0.13318,0.316554,0.141838,0.245129,0.863549,0.429631,0.165428,0.748038,0.378501,0.640736,0.461882,0.56801,0.48267,0.496355,0.428992,0.194155,0.289294,0.803872,0.836828,0.325839,0.789352,0.0688516,0.650362,0.571472,0.122884,0.597376,0.410876,0.119066,0.885375,0.875438,0.760202,0.187366,0.152069,0.430088,0.363752,0.865181,0.860763,0.583521,0.982626,0.566,0.516648,0.938302,0.220527,0.849893,0.967211,0.0445013,0.276804,0.015722,0.807459,0.522576,0.675048,0.736212,0.109111,0.968528,0.679836,0.703083,0.952996,0.946871,0.869559,0.38621,0.959244,0.592302,0.587973,0.172551,0.764715,0.133079,0.942185,0.0312548,0.97491,0.664788,0.58141,0.465885,0.607502,0.356008,0.368764,0.442061,0.0283884,0.143477,0.707106,0.710446,0.881369,0.103005,0.620663,0.0168481,0.765966,0.841358,0.202781,0.7467,0.944937,0.910056,0.175613,0.00169194,0.229402,0.491213,0.893018,0.851863,0.16491,0.718751,0.898445,0.386356,0.16364,0.927223,0.976836,0.903367,0.394317,0.865681,0.455895,0.632157,0.493193,0.561362,0.953236,0.20892,0.204148,0.0354444,0.422304,0.202144,0.547432,0.89911,0.418539,0.853704,0.268636,0.204857,0.828235,0.925786,0.0246872,0.738637,0.49676,0.485341,0.774545,0.427535,0.946957,0.783516,0.336346,0.524597,0.555024,0.503554,0.160765,0.624147,0.537826,0.852802,0.469063,0.714866,0.627316,0.539687,0.608659,0.123621,0.484926,0.61233,0.18291,0.504374,0.0790642,0.614093,0.825326,0.809787,0.829138,0.958229,0.783551,0.786611,0.00952786,0.462649,0.11252,0.509427,0.605905,0.88843,0.145098,0.393833,0.0214793,0.321451,0.41779,0.921886,0.731773,0.358252,0.794271,0.734112,0.273874,0.581469,0.863942,0.381109,0.168785,0.0568148,0.954532,0.94678,0.0753772,0.441645,0.266721,0.987475,0.827218,0.0689009,0.899294,0.905972,0.618903,0.975178,0.330914,0.323366,0.639369,0.357958,0.0347312,0.388086,0.176723,0.579986,0.143132,0.0414499,0.963191,0.0885242,0.642525,0.229105,0.553763,0.831379,0.309966,0.984991,0.824584,0.720955,0.258435,0.86453,0.933381,0.464697,0.728784,0.562774,0.514283,0.244083,0.150586,0.296611,0.0184382,0.273375,0.405309,0.928814,0.184253,0.750032,0.00121236,0.889901,0.265115,0.81575,0.968585,0.938242,0.394879,0.532228,0.798024,0.406012,0.0868923,0.661186,0.685561,0.830356,0.225093,0.689065,0.837874,0.142745,0.0368396,0.476366,0.486421,0.381639,0.499919,0.850807,0.991759,0.323499,0.78359,0.993335,0.859387,0.858132,0.810359,0.958121,0.10041,0.113801,0.800463,0.817427,0.421418,0.0614412,0.576508,0.779587,0.524941,0.913685,0.372205,0.0721278,0.0453274,0.589866,0.705036,0.694133,0.132771,0.183034,0.572603,0.288298,0.321907,0.514832,0.780918,0.344164,0.113571,0.111479,0.785849,0.827653,0.621077,0.162891,0.96961,0.0116913,0.826814,0.352913,0.638278,0.305079,0.485293,0.86963,0.947578,0.747504,0.998704,0.109302,0.298424,0.519702,0.34104,0.000123322,0.216517,0.770895,0.323622,0.569327,0.511279,0.893608,0.273423,0.94253,0.461968,0.579084,0.278931,0.929531,0.728955,0.360921,0.436561,0.00166637,0.568461,0.348677,0.981337,0.1681,0.586212,0.91434,0.450684,0.993367,0.430123,0.709388,0.00638413,0.720659,0.41251,0.927552,0.0866016,0.100494,0.267647,0.805066,0.0411009,0.394228,0.979624,0.183582,0.863456,0.251076,0.800907,0.467748,0.160289,0.115571,0.218989,0.673276,0.363861,0.0116259,0.198665,0.613285,0.521446,0.776333,0.400515,0.289324,0.547288,0.309981,0.993172,0.096362,0.201977,0.368748,0.339938,0.103089,0.274774,0.322771,0.227268,0.375853,0.927137,0.240494,0.204793,0.940694,0.0263205,0.498611,0.579831,0.380303,0.399754,0.744796,0.955724,0.896329,0.298954,0.809446,0.627094,0.774206,0.700638,0.404213,0.961814,0.912647,0.530457,0.899279,0.204286,0.453219,0.471689,0.450099,0.0489359,0.726175,0.517564,0.390109,0.0354233,0.489981,0.153046,0.410548,0.592132,0.981347,0.612691,0.409519,0.0926149,0.68203,0.571702,0.159006,0.816046,0.476875,0.791896,0.430635,0.528016,0.279937,0.0494072,0.932024,0.826233,0.669573,0.286617,0.910269,0.466897,0.567326,0.323458,0.0277676,|0.515262,0.814968,0.276929,0.0694219,0.827149,0.322264,0.792961,0.348696,0.149726,0.309159,0.0401973,0.0352705,0.288917,0.862755,0.87883,0.345473,0.846979,0.34972,0.95779,0.294881,0.396469,0.972485,0.70667,0.297129,0.979053,0.710924,0.322636,0.845854,0.688076,0.0268973,0.938599,0.298401,0.955716,0.158296,0.860318,0.812355,0.364884,0.427404,0.0335079,0.817435,0.837656,0.697413,0.353702,0.37907,0.0831861,0.416539,0.189347,0.686031,0.822756,0.56964,0.47055,0.88088,0.112859,0.115199,0.41302,0.25432,0.2096,0.317695,0.519611,0.491168,0.168358,0.80991,0.313368,0.294735,0.332005,0.0393732,0.921498,0.00175387,0.619295,0.591486,0.771518,0.89235,0.117772,0.867161,0.151649,0.203566,0.342669,0.603642,0.0133491,0.29183,0.739023,0.334677,0.301602,0.187974,0.710579,0.716701,0.942927,0.637973,0.370818,0.00172317,0.955512,0.93672,0.450088,0.378272,0.0881231,0.660614,0.59903,0.817591,0.761803,0.214506,0.320559,0.739925,0.500847,0.0708685,0.978705,0.584308,0.243871,0.17481,0.766879,0.102958,0.386923,0.261279,0.4375,0.63315,0.909951,0.44179,0.609377,0.897957,0.0569083,0.403802,0.191713,0.659186,0.858763,0.864658,0.535462,0.203777,0.555297,0.452496,0.896726,0.972973,0.70925,0.997503,0.931801,0.0555229,0.655752,0.170534,0.106116,0.566595,0.545313,0.578657,0.745982,0.529834,0.927189,0.219677,0.152438,0.562066,0.592929,0.30355,0.0386106,0.809484,0.302773,0.779396,0.480869,0.944672,0.0717698,0.978861,0.801135,0.861908,0.477209,0.608495,0.695715,0.753477,0.706994,0.415661,0.247253,0.424349,0.286057,0.28304,0.523197,0.462153,0.283663,0.423863,0.894677,0.160071,0.483958,0.353811,0.146196,0.426156,0.865581,0.806033,0.291838,0.336652,0.90506,0.609146,0.161813,0.877196,0.684123,0.523863,0.449457,0.829451,0.344797,0.795699,0.93681,0.854204,0.47999,0.630041,0.576344,0.0541448,0.685839,0.645097,0.621169,0.60193,0.187354,0.167855,0.421466,0.626695,0.470142,0.550682,0.791523,0.600736,0.23447,0.66048,0.58587,0.307965,0.699877,0.220754,0.543039,0.918444,0.437812,0.623092,0.0604385,0.542125,0.640439,0.913705,0.165594,0.55991,0.0693653,0.488261,0.877162,0.152804,0.0155101,0.339726,0.301142,0.68078,0.40386,0.676079,0.441991,0.963042,0.344498,0.950528,0.955086,0.0362698,0.21516,0.910169,0.300769,0.726481,0.451933,0.953135,0.13801,0.303971,0.313653,0.274078,0.382518,0.109637,0.671497,0.418586,0.585927,0.229743,0.727496,0.0765803,0.765333,0.481021,0.414883,0.0112453,0.386953,0.332114,0.0807108,0.98257,0.570646,0.71504,0.911813,0.781854,0.270535,0.260866,0.219184,0.730668,0.84618,0.148912,0.774001,0.992346,0.763432,0.509866,0.770866,0.323865,0.512258,0.35026,0.590813,0.973208,0.0206918,0.0853812,0.919849,0.686576,0.423482,0.239375,0.950546,0.624677,0.817003,0.907138,0.0103849,0.731031,0.299398,0.197932,0.280896,0.209436,0.725749,0.934149,0.943639,0.550536,0.0858833,0.562897,0.601061,0.206594,0.0840495,0.414438,0.391225,0.616122,0.569884,0.434119,0.563338,0.422122,0.0481041,0.157457,0.187356,0.977813,0.851395,0.0672339,0.433328,0.777556,0.0836063,0.334402,0.0220819,0.0614646,0.790265,0.199722,0.206317,0.815453,0.275675,0.673989,0.960012,0.701905,0.15779,0.919198,0.485793,0.258724,0.354976,0.757089,0.660941,0.615718,0.885737,0.322706,0.084154,0.943086,0.765324,0.143408,0.141735,0.590979,0.0271872,0.0596616,0.631127,0.238968,0.493555,0.260689,0.253108,0.70125,0.314159,0.528392,0.0966149,0.0133377,0.713972,0.95513,0.457619,0.671224,0.273548,0.0447943,0.634596,0.463467,0.8448,0.410965,0.499308,0.390078,0.11287,0.971613,0.310086,0.514388,0.89214,0.96066,0.0561305,0.658075,0.725943,0.522884,0.431707,0.701079,0.863152,0.365906,0.689563,0.14039,0.0909971,0.522588,0.428827,0.333485,0.591343,0.324864,0.69945,0.961433,0.165176,0.957522,0.161284,0.753682,0.383608,0.992055,0.703557,0.756784,0.465884,0.340808,0.44953,0.318968,0.252466,0.392455,0.0136586,0.010857,0.155219,0.356625,0.237784,0.609269,0.544068,0.923902,0.272685,0.49051,0.920029,0.785479,0.20093,0.239054,0.604999,0.0976837,0.21527,0.970666,0.432866,0.541002,0.489353,0.632585,0.0121524,0.779254,0.262857,0.20559,0.773725,0.0929314,0.2164,0.765411,0.386941,0.956367,0.330347,0.430375,0.457797,0.0599565,0.731226,0.136809,0.00222301,0.154655,0.0276825,0.982793,0.0488799,0.790525,0.0971249,0.621762,0.32857,0.500343,0.487516,0.0571303,0.903162,0.144271,0.494137,0.469372,0.84291,0.346518,0.91646,0.873896,0.713577,0.667193,0.963382,0.63323,0.327076,0.565489,0.815266,0.58975,0.0227348,0.100296,0.86221,0.222169,0.613116,0.37852,0.138183,0.728512,0.776564,0.561794,0.493064,0.253464,0.315236,0.829913,0.00720984,0.0673586,0.0827612,0.957848,0.689097,0.552496,0.367347,0.651631,0.247194,0.541351,0.512109,0.303361,0.0284675,0.796594,0.981288,0.0757833,0.684301,0.193513,0.723363,0.594009,0.50429,0.444276,0.246369,0.258163,0.796286,0.923927,0.00303805,0.059291,0.486437,0.254208,0.956916,0.635985,0.697824,0.27434,0.191306,0.821229,0.568763,0.221021,0.30534,0.303804,0.688909,0.421593,0.945773,0.122296,0.746256,0.326695,0.322703,0.790804,0.0150592,0.937603,0.965512,0.860603,0.841023,0.511641,0.0588189,0.898476,0.946161,0.912321,0.0686036,0.112858,0.0345322,0.993192,0.509773,0.141549,0.0576749,0.354822,0.998224,0.228661,0.628903,0.775653,0.171583,0.940028,0.680235,0.181525,0.759799,0.110352,0.53048,0.799936,0.463075,0.723448,0.649172,0.274962,0.38053,0.0419804,0.19984,0.870012,0.57002,0.821543,0.00852019,0.954312,0.383864,0.769283,0.375777,0.47134,0.0318766,0.713342,0.628102,0.0934428,0.865493,0.935309,0.752105,0.721337,0.133606,0.178592,0.385628,0.609576,0.128205,0.592373,0.697371,0.269526,0.60025,0.918576,0.216206,0.565017,0.231213,0.584374,0.994126,0.798901,0.323431,0.289536,0.162267,0.716922,0.122843,0.281619,0.455998,0.676006,0.693469,0.755686,0.0128254,0.216683,0.837628,0.897008,0.479735,0.242644,0.783004,0.514914,0.810261,0.724301,0.68504,0.480401,0.222865,0.40712,0.719834,0.0330186,0.900445,0.473506,0.799152,0.404786,0.998485,0.732047,0.962217,0.578971,0.168339,0.207614,0.43055,0.19216,0.875223,0.578232,0.484618,0.389257,0.831827,0.092857,0.743904,0.0580879,0.304312,0.709076,0.957078,0.829957,0.35366,0.374196,0.64074,0.819249,0.871772,0.352655,0.449192,0.790238,0.17457,0.844905,0.0544779,0.306862,0.595147,0.337094,0.0668098,0.881084,0.865865,0.162709,0.793014,0.687613,0.63895,0.207864,0.443099,0.914276,0.170866,0.0317974,0.727322,0.625433,0.222551,0.390399,0.268586,0.00966513,0.367317,0.223391,0.965209,0.178334,0.52169,0.057479,0.46169,0.205612,0.0751508,0.400693,0.150098,0.167541,0.672754,0.869862,0.958401,0.952676,0.505049,0.628988,0.46624,0.257126,0.383197,0.0166004,0.510085,0.951821,0.992505,0.857166,0.479949,0.22146,0.508068,0.566174,0.0863143,0.827123,0.180202,0.519497,0.15463,0.456929,0.619374,0.122026,0.720071,0.736234,0.292204,0.984342,0.0808987,0.578997,0.457311,0.380764,0.367461,0.622119,0.921014,0.243505,0.157487,0.390589,0.505923,0.859594,0.737511,0.283965,0.263846,0.563931,0.292421,0.296573,0.410577,0.624213,0.692655,0.340021,0.37981,0.283353,0.315747,0.870251,0.307624,0.81596,0.0864346,0.852449,0.241866,0.52154,0.462927,0.207851,0.242384,0.611171,0.503512,0.847593,0.355029,0.0285965,0.147668,0.408408,0.850588,0.790269,0.35393,0.115459,0.636191,0.348609,0.269706,0.101059,0.0932733,0.229317,0.00131166,0.781297,0.484845,0.594012,0.274261,0.548304,0.0334007,0.616481,0.379938,0.787908,0.633917,0.505713,0.398184,0.189219,0.326426,0.317971,0.149731,0.307632,0.539003,0.346852,0.780542,0.756479,0.471409,0.63105,0.482716,0.294945,0.398408,0.0027768,0.680258,0.149546,0.597427,0.370589,0.648725,0.0963855,0.216645,0.323596,0.56961,0.766081,0.0493279,0.482341,0.488289,0.155188,0.116038,0.086941,0.479936,0.728474,0.388982,0.114413,0.031273,0.713127,0.767253,0.925482,0.446256,0.546363,0.271191,0.125542,0.0326157,0.594517,0.244238,0.914774,0.724208,0.125852,0.390135,0.439682,0.545695,0.628591,0.971359,0.589789,0.185212,0.664535,0.656036,0.763568,0.143354,0.978059,0.840923,0.795988,0.398533,0.452455,0.599906,0.477204,0.723714,0.74896,0.646165,0.248046,0.228533,0.337716,0.760965,0.98921,0.418908,0.91042,0.658471,0.74558,0.684119,0.675675,0.140379,0.871571,0.303748,0.393318,0.00546175,0.141309,0.52745,0.536293,0.26663,0.324668,0.236339,0.900706,0.909702,0.556844,0.15685,0.938864,0.344184,0.345449,0.281448,0.915322,0.419966,0.152867,0.34847,0.893395,0.314779,0.103072,0.0376949,0.444211,0.114826,0.559301,0.479515,0.639238,0.812306,0.659767,0.86214,0.81612,0.887197,0.620396,0.650284,0.962312,0.117176,0.824362,0.83837,0.377674,0.957378,0.301789,0.72991,0.368388,0.394002,0.98499,0.664906,0.444598,0.341278,0.360451,0.918341,0.211638,0.802164,0.171338,0.360611,0.174508,0.788596,0.580177,0.0953028,0.997055,0.511797,0.978034,0.692171,0.761675,0.548912,0.507952,0.52795,0.296621,0.889885,0.828486,0.148405,0.40691,0.878468,0.364645,0.3641,0.77953,0.0164446,0.828202,0.342694,0.803348,0.0677312,0.466387,0.929433,0.12045,0.740679,0.58553,0.792852,0.449305,0.799821,0.992086,0.797087,0.752219,0.149746,0.161743,0.3972,0.426953,0.652472,0.573967,0.786297,0.376702,0.124529,0.450538,0.508823,0.904042,0.171816,0.0518796,0.16276,0.648037,0.319626,0.586351,|0.764153,0.448098,0.331013,0.479881,0.0983204,0.330929,0.687601,0.616022,0.4229,0.113802,0.141949,0.144144,0.610614,0.696326,0.919176,0.842689,0.661664,0.514133,0.717712,0.782089,0.144245,0.125368,0.53761,0.253058,0.87737,0.36332,0.300139,0.176228,0.893569,0.341039,0.384219,0.987485,0.664601,0.309211,0.198064,0.331799,0.00182402,0.356847,0.931024,0.667472,0.449102,0.63803,0.15114,0.00739044,0.114755,0.77295,0.710823,0.267627,0.888268,0.337673,0.505518,0.919869,0.856257,0.580782,0.433598,0.900562,0.367108,0.310767,0.642189,0.0634156,0.645995,0.377998,0.90423,0.950311,0.935797,0.713521,0.22036,0.989172,0.163494,0.597027,0.418185,0.158406,0.296243,0.986866,0.559766,0.729904,0.435577,0.60586,0.387733,0.495894,0.624803,0.972262,0.760674,0.81258,0.649785,0.157524,0.0627803,0.849282,0.353642,0.150192,0.382413,0.468412,0.426827,0.895753,0.35065,0.0943976,0.304606,0.547523,0.0145056,0.827865,0.205184,0.0836792,0.66469,0.672576,0.0333461,0.259812,0.681954,0.423124,0.5398,0.302629,0.684361,0.635417,0.826295,0.85207,0.380813,0.353601,0.321098,0.106563,0.751091,0.431535,0.730373,0.724933,0.934279,0.913644,0.0449774,0.641693,0.700266,0.00718147,0.599066,0.678922,0.336716,0.725685,0.406715,0.732994,0.631146,0.703004,0.170488,0.980643,0.774098,0.517058,0.447591,0.0907046,0.971522,0.707402,0.377356,0.873061,0.574285,0.761547,0.16735,0.511816,0.274927,0.802542,0.0936191,0.424456,0.115871,0.845877,0.369277,0.742691,0.0452865,0.780035,0.563479,0.875427,0.180452,0.624116,0.904112,0.377456,0.280983,0.859117,0.0848964,0.708113,0.465109,0.800428,0.595074,0.00923032,0.190599,0.355742,0.988269,0.432734,0.348906,0.0191553,0.135377,0.858862,0.985698,0.584975,0.849015,0.512447,0.256426,0.232898,0.0445348,0.885639,0.175066,0.31351,0.513784,0.281512,0.129056,0.628542,0.896588,0.589875,0.188688,0.312341,0.108871,0.932642,0.504688,0.168256,0.177043,0.296078,0.329893,0.0419185,0.320239,0.28755,0.687675,0.938665,0.773703,0.251965,0.794976,0.793237,0.117855,0.262443,0.961529,0.673522,0.246514,0.449067,0.715956,0.249992,0.805545,0.205503,0.794152,0.94635,0.69267,0.848129,0.778309,0.256473,0.790442,0.949183,0.533313,0.795453,0.511924,0.462904,0.393533,0.884948,0.205385,0.370407,0.257266,0.543221,0.0089404,0.894713,0.345108,0.503984,0.617881,0.375437,0.171973,0.0118568,0.687796,0.105689,0.0198463,0.554422,0.472403,0.0389627,0.456254,0.696218,0.924566,0.00170678,0.871971,0.319702,0.828942,0.373817,0.0934561,0.138442,0.592156,0.909907,0.453045,0.209013,0.182344,0.150748,0.574877,0.507906,0.000716984,0.467041,0.70393,0.0471972,0.676353,0.665154,0.237508,0.579042,0.605811,0.0228077,0.802497,0.879224,0.261886,0.175051,0.748539,0.408239,0.528967,0.491795,0.137202,0.514068,0.5475,0.285779,0.258702,0.542887,0.396643,0.293181,0.990009,0.735678,0.579378,0.0824848,0.397713,0.755369,0.580037,0.458834,0.514043,0.178831,0.0765726,0.494801,0.969907,0.298784,0.0813698,0.565036,0.379797,0.820249,0.21853,0.622355,0.225377,0.326141,0.930118,0.611515,0.775035,0.576689,0.0778351,0.617608,0.361657,0.20433,0.723597,0.658108,0.663915,0.971374,0.47695,0.465891,0.91766,0.888377,0.040266,0.0343122,0.43581,0.574954,0.0730554,0.708891,0.674294,0.440818,0.562735,0.863907,0.421584,0.503926,0.265518,0.340396,0.304774,0.152014,0.186908,0.635705,0.205414,0.332087,0.139425,0.887991,0.0302863,0.616999,0.306944,0.947361,0.68008,0.214217,0.632492,0.644327,0.105819,0.23321,0.302387,0.675247,0.767686,0.107486,0.213475,0.433554,0.550624,0.556494,0.383184,0.211645,0.416905,0.615505,0.654608,0.467279,0.303873,0.634342,0.344341,0.670036,0.357632,0.161427,0.545273,0.825321,0.347251,0.0280611,0.869862,0.343381,0.574948,0.488241,0.714673,0.5642,0.780225,0.507001,0.258348,0.355535,0.515742,0.61852,0.549912,0.968261,0.796063,0.722893,0.548473,0.60859,0.147412,0.108512,0.713312,0.465365,0.977966,0.37957,0.585971,0.639216,0.0825225,0.189051,0.648945,0.09396,0.0139931,0.0249957,0.774825,0.139415,0.0363106,0.775669,0.612131,0.978059,0.0591955,0.434134,0.587063,0.562919,0.513166,0.170856,0.67796,0.692217,0.260088,0.741573,0.963752,0.0969578,0.25258,0.869847,0.404468,0.109414,0.805202,0.873003,0.57428,0.635746,0.114791,0.818552,0.955391,0.823003,0.0787901,0.707531,0.583552,0.296531,0.628905,0.47612,0.101387,0.620976,0.626887,0.214257,0.636399,0.331643,0.0235754,0.751222,0.602128,0.698655,0.892375,0.734807,0.313862,0.0814821,0.167517,0.404687,0.65285,0.0657427,0.30298,0.0880858,0.709593,0.895757,0.108366,0.0743482,0.445536,0.992134,0.883664,0.57467,0.679974,0.895424,0.277399,0.0573402,0.137459,0.365054,0.845634,0.210045,0.417297,0.68152,0.271298,0.698045,0.601157,0.188853,0.814672,0.595038,0.0914201,0.960508,0.500406,0.942842,0.868978,0.44412,0.558545,0.359505,0.548511,0.0339107,0.661496,0.891116,0.99776,0.00401169,0.907518,0.429731,0.586305,0.0504196,0.173436,0.576754,0.94878,0.155513,0.428826,0.269939,0.384334,0.978898,0.359181,0.675257,0.324123,0.939757,0.994412,0.814152,0.114176,0.400636,0.536931,0.266659,0.156556,0.756945,0.0922624,0.435291,0.520343,0.957723,0.280571,0.322799,0.0896257,0.871008,0.199697,0.870995,0.663642,0.398557,0.500889,0.691509,0.815664,0.388026,0.887171,0.367598,0.216136,0.506863,0.658537,0.0873094,0.978712,0.222098,0.248487,0.614267,0.345701,0.290135,0.352726,0.270598,0.595594,0.420269,0.409022,0.703255,0.236606,0.719586,0.0650371,0.177708,0.964669,0.196902,0.0811312,0.368679,0.69761,0.180151,0.574733,0.254409,0.83739,0.873003,0.767429,0.188303,0.0655627,0.267143,0.519672,0.951214,0.369047,0.924633,0.274468,0.880506,0.722416,0.0401797,0.108586,0.808468,0.380203,0.0182903,0.599647,0.751291,0.615434,0.919635,0.764488,0.00659889,0.756257,0.135534,0.694615,0.747401,0.94618,0.537689,0.668678,0.815979,0.955959,0.601244,0.91622,0.457557,0.5792,0.265387,0.21113,0.75655,0.321481,0.577718,0.440302,0.23239,0.585375,0.723938,0.623774,0.861965,0.724445,0.104198,0.147006,0.708649,0.340869,0.728157,0.877889,0.632512,0.800781,0.755601,0.811219,0.0164818,0.807108,0.0605553,0.976598,0.375857,0.5594,0.156279,0.619811,0.0632652,0.569946,0.272942,0.787093,0.0173712,0.0325819,0.750812,0.849385,0.751408,0.21392,0.263829,0.992781,0.401162,0.310071,0.603266,0.678788,0.739897,0.104683,0.914454,0.734315,0.93369,0.973919,0.743333,0.719279,0.215248,0.0319552,0.28657,0.627135,0.0978473,0.0683982,0.464447,0.262836,0.607899,0.79705,0.942745,0.0824499,0.611931,0.846551,0.988539,0.935851,0.450931,0.17192,0.792195,0.849372,0.759326,0.302791,0.681621,0.986197,0.80847,0.679639,0.219532,0.644234,0.465023,0.457918,0.349275,0.144985,0.657033,0.352058,0.6045,0.219051,0.537207,0.852116,0.632658,0.61388,0.233085,0.152842,0.342653,0.120724,0.534436,0.361078,0.771695,0.223589,0.609486,0.469494,0.5207,0.477382,0.880548,0.694801,0.151196,0.714589,0.889287,0.845849,0.116004,0.218788,0.637984,0.284528,0.536528,0.193719,0.162359,0.0370564,0.315733,0.845939,0.869818,0.11774,0.382881,0.76926,0.140544,0.240103,0.533978,0.417861,0.688641,0.27639,0.997264,0.367759,0.538832,0.261829,0.89592,0.823473,0.687811,0.433988,0.379149,0.713979,0.340006,0.960456,0.0916014,0.41033,0.55518,0.217652,0.256862,0.521898,0.786245,0.156468,0.50124,0.550102,0.690575,0.029951,0.792285,0.0572698,0.520596,0.945802,0.521299,0.232326,0.870236,0.94487,0.528377,0.518042,0.302179,0.622621,0.205847,0.561241,0.353526,0.715491,0.524808,0.352412,0.928659,0.392984,0.517025,0.72731,0.224064,0.91427,0.845237,0.844376,0.0525432,0.086158,0.418057,0.542282,0.333219,0.248965,0.14838,0.622036,0.886685,0.707353,0.862227,0.495444,0.446043,0.213123,0.686814,0.9439,0.421237,0.177368,0.237486,0.932303,0.167131,0.357319,0.0621558,0.21603,0.444088,0.988963,0.0834347,0.618954,0.309953,0.955697,0.886806,0.890341,0.398432,0.649604,0.876655,0.0748818,0.0605285,0.829499,0.271146,0.778019,0.225562,0.232448,0.0875746,0.925877,0.263179,0.736448,0.921337,0.160693,0.73474,0.904662,0.87119,0.11402,0.495555,0.360223,0.481302,0.19265,0.816849,0.607204,0.891584,0.761349,0.939688,0.666535,0.928383,0.371391,0.6092,0.948632,0.901438,0.306869,0.469859,0.130561,0.286705,0.554919,0.779076,0.544041,0.531106,0.833553,0.532682,0.371798,0.00623202,0.799115,0.676961,0.151059,0.0865177,0.286669,0.24966,0.0503545,0.516381,0.114465,0.13603,0.897913,0.00474787,0.551318,0.273218,0.743927,0.747099,0.809436,0.151366,0.610687,0.263697,0.0702922,0.0410835,0.649993,0.817009,0.679532,0.13661,0.839947,0.408801,0.123365,0.113615,0.464537,0.548308,0.655576,0.812272,0.806901,0.55728,0.483937,0.669477,0.741396,0.413518,0.66666,0.36807,0.381442,0.208883,0.866813,0.605719,0.289041,0.867352,0.919944,0.120651,0.375093,0.843444,0.756772,0.35134,0.293675,0.930922,0.970917,0.619077,0.733608,0.976655,0.507084,0.692437,0.795063,0.0592223,0.513163,0.00430137,0.458449,0.789754,0.026026,0.48023,0.0608845,0.287799,0.112032,0.201544,0.526939,0.0594213,0.845007,0.926201,0.492391,0.393666,0.620636,0.470752,0.243432,0.472779,0.728125,0.162265,0.348545,0.267383,0.996464,0.870888,0.72724,0.845982,0.640508,0.76322,0.421036,0.0558715,0.672975,0.630333,0.440346,0.592743,0.120764,0.613141,0.340599,0.472516,0.407365,0.101129,0.805331,0.430165,0.115077,0.118484,|0.679681,0.785731,0.986795,0.0171746,0.666015,0.821066,0.617207,0.430703,0.467319,0.558695,0.41026,0.544551,0.306986,0.104519,0.772537,0.796893,0.297987,0.34073,0.807233,0.163516,0.342096,0.529258,0.879101,0.0407948,0.178601,0.150049,0.442245,0.857147,0.117392,0.971541,0.978815,0.349858,0.962497,0.820036,0.921021,0.910287,0.696815,0.991342,0.652322,0.864004,0.39143,0.943701,0.807172,0.299735,0.70351,0.68644,0.0065183,0.31269,0.877751,0.0365185,0.252608,0.482153,0.84365,0.791497,0.501903,0.00201124,0.723607,0.642226,0.00359499,0.840472,0.172622,0.0319963,0.453325,0.376008,0.483229,0.294931,0.209364,0.627258,0.892975,0.578638,0.97414,0.701797,0.130222,0.923527,0.954818,0.177647,0.118928,0.664257,0.407061,0.982738,0.424347,0.0701974,0.555813,0.86411,0.618673,0.0708111,0.203762,0.0780029,0.501868,0.760396,0.970594,0.559972,0.994311,0.939585,0.956513,0.622351,0.815802,0.399006,0.407284,0.797797,0.623823,0.408277,0.887431,0.450677,0.4896,0.795705,0.203976,0.645443,0.678217,0.154415,0.0585977,0.633159,0.501209,0.036062,0.70478,0.724005,0.253296,0.987327,0.66004,0.236204,0.623708,0.302132,0.307425,0.389153,0.480618,0.304741,0.537945,0.276882,0.46889,0.141845,0.198622,0.534791,0.717359,0.621931,0.13169,0.279047,0.730157,0.410845,0.49804,0.81451,0.187976,0.468649,0.367186,0.317346,0.512519,0.317505,0.525644,0.569234,0.897542,0.0540756,0.534147,0.976065,0.23282,0.225002,0.966965,0.704541,0.385859,0.443607,0.456114,0.600191,0.157514,0.224765,0.870229,0.578346,0.233094,0.140103,0.933059,0.740995,0.231943,0.642166,0.780369,0.528285,0.749468,0.212194,0.235448,0.470061,0.481861,0.922774,0.258015,0.387807,0.7193,0.786134,0.00956935,0.178334,0.0914323,0.0852272,0.936762,0.5629,0.119551,0.873912,0.911838,0.148878,0.634261,0.475215,0.765694,0.178712,0.957218,0.125711,0.455068,0.959539,0.378575,0.32307,0.452229,0.290303,0.409733,0.376332,0.00861049,0.39579,0.748801,0.198162,0.505711,0.826291,0.21563,0.346325,0.109996,0.216576,0.359099,0.00492102,0.407542,0.214117,0.591658,0.521227,0.218285,0.809961,0.0231227,0.732696,0.43715,0.628835,0.735165,0.34705,0.323241,0.885565,0.441214,0.0822656,0.840219,0.195681,0.744743,0.864358,0.658144,0.30455,0.178764,0.458971,0.2548,0.792235,0.927384,0.590757,0.892541,0.391982,0.367036,0.0774045,0.0210281,0.653179,0.947834,0.569334,0.0352842,0.635257,0.582258,0.777538,0.907117,0.980576,0.430838,0.109449,0.427192,0.374495,0.311475,0.227765,0.942529,0.380374,0.691755,0.718074,0.0215201,0.545584,0.0504075,0.878296,0.820826,0.647212,0.313519,0.703139,0.312729,0.653436,0.900942,0.392534,0.198182,0.561475,0.364683,0.369083,0.392681,0.566108,0.434853,0.0428083,0.980861,0.765779,0.8048,0.491366,0.34796,0.242047,0.578539,0.142255,0.737301,0.0945693,0.489159,0.394428,0.156492,0.630431,0.309231,0.299832,0.865739,0.588783,0.340448,0.511939,0.64568,0.428008,0.92205,0.772949,0.628666,0.533395,0.848862,0.969502,0.580864,0.88089,0.61591,0.126855,0.905461,0.592681,0.0376335,0.492191,0.040558,0.529639,0.419349,0.655932,0.930074,0.710596,0.537677,0.282616,0.181515,0.55807,0.989316,0.0423024,0.0559617,0.730326,0.957147,0.161946,0.796708,0.0223066,0.825079,0.383468,0.0381153,0.824596,0.794688,0.718774,0.566095,0.311593,0.906252,0.934808,0.364166,0.0164111,0.162998,0.133895,0.458798,0.0419358,0.0695223,0.166365,0.400154,0.722056,0.162311,0.998116,0.232281,0.38242,0.479794,0.659685,0.922816,0.73391,0.655919,0.961963,0.881091,0.434191,0.799087,0.376747,0.052994,0.293712,0.6031,0.6936,0.84079,0.872398,0.183933,0.497214,0.886014,0.776721,0.611699,0.930227,0.561819,0.0994804,0.937869,0.839846,0.539023,0.326753,0.503712,0.700294,0.379723,0.943812,0.473259,0.778571,0.883913,0.629033,0.403404,0.790155,0.804206,0.0219547,0.18082,0.0673155,0.0248299,0.820648,0.477777,0.236058,0.486727,0.238121,0.755396,0.724095,0.791868,0.844286,0.625565,0.314171,0.331924,0.0373608,0.851431,0.992468,0.471219,0.11167,0.212964,0.345266,0.128255,0.770528,0.568674,0.816129,0.512826,0.514922,0.822578,0.90498,0.772802,0.610552,0.460037,0.68897,0.576507,0.491649,0.97259,0.442347,0.237144,0.29516,0.201522,0.674812,0.693131,0.950177,0.41722,0.231472,0.746839,0.173369,0.814136,0.224278,0.605467,0.0821123,0.00800341,0.426877,0.798998,0.672325,0.947815,0.714103,0.95108,0.144539,0.644325,0.995235,0.45548,0.597559,0.320487,0.869629,0.735446,0.907562,0.37573,0.958971,0.921206,0.204219,0.524968,0.786001,0.9592,0.495292,0.765329,0.0708786,0.946515,0.558665,0.26043,0.234831,0.206774,0.351941,0.523577,0.00730258,0.0229714,0.710377,0.560213,0.257556,0.860871,0.771282,0.424329,0.222908,0.00493592,0.744576,0.94164,0.673406,0.218491,0.0879629,0.379743,0.902205,0.818868,0.956746,0.961948,0.904765,0.0918193,0.989736,0.379392,0.859105,0.254413,0.81487,0.0538291,0.00651872,0.898407,0.388253,0.120511,0.233607,0.243196,0.70499,0.421234,0.698326,0.0538904,0.0412853,0.747287,0.141559,0.319022,0.834937,0.292955,0.726599,0.586906,0.242441,0.266217,0.146995,0.629144,0.560514,0.489047,0.377632,0.180768,0.799313,0.852697,0.586476,0.327421,0.379353,0.598232,0.60828,0.31843,0.9715,0.209516,0.251864,0.925928,0.663198,0.354283,0.0126734,0.0840053,0.0572053,0.618906,0.957395,0.995498,0.462002,0.559115,0.390798,0.274218,0.46944,0.747063,0.702965,0.565828,0.923943,0.278591,0.078355,0.88439,0.0478839,0.99135,0.622347,0.690806,0.672535,0.691789,0.552417,0.769864,0.651789,0.0342266,0.63456,0.912473,0.414353,0.996199,0.55036,0.735976,0.909191,0.904319,0.33035,0.931806,0.638674,0.439422,0.55682,0.230165,0.167367,0.0543354,0.209327,0.388106,0.437028,0.374584,0.371123,0.794635,0.0699865,0.803917,0.598565,0.182086,0.400252,0.87666,0.0028125,0.242419,0.462522,0.80002,0.917239,0.350553,0.596132,0.984998,0.944688,0.474445,0.637922,0.590964,0.954534,0.543069,0.242554,0.580883,0.0278878,0.682902,0.106288,0.569854,0.912555,0.767487,0.707974,0.542575,0.322435,0.562447,0.803502,0.0450574,0.292568,0.200761,0.401561,0.600253,0.0438492,0.720751,0.481744,0.423084,0.813857,0.221212,0.342708,0.396319,0.627674,0.774028,0.787611,0.0892743,0.160544,0.256001,0.0748849,0.989416,0.716706,0.162607,0.916101,0.971245,0.286562,0.00962186,0.894406,0.0108544,0.177963,0.517665,0.66232,0.242908,0.565815,0.810197,0.461237,0.546171,0.885519,0.401449,0.640269,0.962348,0.762456,0.0182086,0.432592,0.0986942,0.931432,0.814238,0.846002,0.45452,0.312282,0.504888,0.357422,0.131425,0.555448,0.765787,0.266177,0.0669737,0.0433434,0.321085,0.758561,0.626469,0.0870121,0.227379,0.250121,0.0491009,0.999809,0.735714,0.384546,0.208999,0.891808,0.824977,0.0930247,0.148903,0.837917,0.110136,0.542448,0.780331,0.972356,0.452585,0.712462,0.924154,0.589734,0.651859,0.716569,0.548121,0.691016,0.698473,0.494782,0.249697,0.237056,0.597564,0.587989,0.464803,0.48732,0.110855,0.715821,0.351132,0.439173,0.912723,0.880807,0.706705,0.854153,0.199091,0.905088,0.129072,0.185067,0.686874,0.623163,0.00814277,0.695769,0.305121,0.707804,0.544681,0.456486,0.190988,0.615894,0.763259,0.593478,0.781422,0.897089,0.551059,0.624328,0.283664,0.0707506,0.118962,0.735611,0.125542,0.974054,0.0969969,0.641324,0.604647,0.465986,0.520664,0.471168,0.151201,0.526603,0.927823,0.147289,0.568255,0.563269,0.408011,0.131249,0.889627,0.98857,0.879257,0.361598,0.240615,0.0297479,0.835333,0.177028,0.688466,0.461527,0.105331,0.199689,0.533172,0.801435,0.198306,0.335651,0.755865,0.832655,0.646495,0.201499,0.365905,0.612712,0.183388,0.456544,0.435375,0.835664,0.226221,0.130073,0.637592,0.774758,0.169363,0.81906,0.532715,0.1826,0.000839651,0.735591,0.987327,0.134532,0.65048,0.808159,0.818496,0.875249,0.186812,0.210942,0.793202,0.652283,0.334293,0.349928,0.0647305,0.784614,0.883134,0.375743,0.836036,0.525551,0.312564,0.581971,0.571175,0.25634,0.243364,0.706954,0.89638,0.489162,0.553305,0.547527,0.22189,0.652997,0.127961,0.586952,0.464639,0.505114,0.966405,0.505182,0.959608,0.200392,0.705884,0.555918,0.149794,0.609655,0.525829,0.71415,0.768156,0.119236,0.331955,0.424946,0.170568,0.813682,0.924251,0.00391698,0.698936,0.798951,0.620919,0.604567,0.963235,0.482859,0.803492,0.627865,0.741204,0.846008,0.753826,0.524372,0.0702428,0.465999,0.0161476,0.319321,0.340074,0.95478,0.781751,0.126345,0.827027,0.566136,0.768853,0.24524,0.0822949,0.242173,0.0238947,0.0610307,0.960284,0.092224,0.657502,0.549865,0.948499,0.361026,0.642972,0.356413,0.536543,0.986478,0.950115,0.150577,0.196257,0.00923961,0.59612,0.955499,0.313068,0.169911,0.991385,0.669946,0.375515,0.402312,0.223744,0.089035,0.550503,0.914379,0.409106,0.413052,0.764389,0.777683,0.560465,0.555051,0.518764,0.967543,0.449882,0.151186,0.289475,0.483171,0.0223464,0.59023,0.855484,0.116362,0.490535,0.355446,0.464993,0.736272,0.514491,0.759047,0.546704,0.403307,0.911164,0.634041,0.499507,0.141712,0.71529,0.158141,0.205013,0.0696134,0.379199,0.598956,0.739244,0.966208,0.230328,0.920088,0.395503,0.602833,0.0845435,0.547524,0.911018,0.836751,0.953048,0.900721,0.167413,0.884999,0.157159,0.0770373,0.344563,0.411188,0.889967,0.00415367,0.103083,0.137209,0.24358,0.0918756,0.799684,0.969967,0.144233,0.804884,0.110508,0.574813,0.77422,0.178278,0.0150813,0.761399,0.481982,0.284997,0.370034,0.365322,|0.59967,0.910922,0.20184,0.682176,0.831075,0.905626,0.3277,0.059027,0.325121,0.48922,0.430644,0.458902,0.484836,0.766012,0.798566,0.634776,0.459206,0.398383,0.819355,0.890466,0.969385,0.958542,0.720886,0.288545,0.31996,0.217631,0.320085,0.651049,0.232224,0.632257,0.209655,0.113793,0.950646,0.549652,0.856293,0.805688,0.270564,0.284737,0.0866466,0.124515,0.239331,0.53424,0.0402895,0.33332,0.0192359,0.448556,0.941043,0.108819,0.398405,0.979748,0.849101,0.662625,0.651035,0.75867,0.541048,0.131159,0.146833,0.246805,0.417848,0.643968,0.805508,0.40711,0.4316,0.529878,0.779449,0.520256,0.506344,0.537295,0.159515,0.582004,0.754827,0.0384642,0.878725,0.714795,0.403423,0.0798239,0.740736,0.0329864,0.274416,0.188054,0.412298,0.953118,0.695538,0.277313,0.23588,0.549716,0.226023,0.149256,0.332025,0.793526,0.0921731,0.564511,0.48289,0.0362198,0.0245306,0.359409,0.921034,0.30346,0.449385,0.97705,0.744601,0.839233,0.666165,0.784789,0.58214,0.974147,0.931478,0.026823,0.80947,0.0853538,0.037048,0.267386,0.953835,0.915298,0.441906,0.314867,0.904351,0.519727,0.914781,0.870369,0.223908,0.758867,0.291075,0.161928,0.258215,0.402989,0.381712,0.840657,0.560028,0.764163,0.145536,0.0219939,0.114482,0.0880319,0.737494,0.489749,0.3948,0.478307,0.6882,0.911355,0.386491,0.397594,0.357644,0.819105,0.5428,0.27233,0.457402,0.371219,0.256849,0.300121,0.0704731,0.931189,0.0928564,0.155601,0.643034,0.235282,0.477824,0.0302304,0.557492,0.951817,0.858271,0.196018,0.820527,0.775438,0.0248311,0.593544,0.657114,0.705801,0.255353,0.401333,0.843604,0.305416,0.922224,0.103428,0.330481,0.15188,0.720111,0.330965,0.00826406,0.998783,0.608735,0.129956,0.537916,0.276145,0.770743,0.463135,0.709522,0.190621,0.450445,0.302587,0.0838227,0.272132,0.220884,0.0412617,0.322076,0.944626,0.426252,0.516635,0.231891,0.049238,0.354215,0.278356,0.172479,0.43052,0.172386,0.638318,0.323869,0.327523,0.444297,0.527888,0.348071,0.526565,0.370476,0.649164,0.940653,0.239955,0.0676613,0.49607,0.155289,0.59456,0.735615,0.826157,0.092829,0.512915,0.158989,0.785642,0.398189,0.182559,0.81417,0.483231,0.25717,0.664106,0.729097,0.720195,0.931598,0.815341,0.138332,0.2056,0.576937,0.131004,0.486641,0.564046,0.443143,0.551697,0.665623,0.643235,0.989738,0.393788,0.860392,0.624211,0.354956,0.902965,0.479411,0.74191,0.559449,0.684459,0.598136,0.0266399,0.211677,0.348137,0.29404,0.722944,0.260132,0.65512,0.170952,0.325469,0.27254,0.83059,0.181433,0.327855,0.552435,0.50927,0.862653,0.711547,0.909333,0.0318154,0.123241,0.437061,0.866377,0.0656163,0.653132,0.551873,0.586024,0.756954,0.882069,0.0741801,0.858973,0.730562,0.875407,0.550336,0.617259,0.668577,0.214827,0.239484,0.0691935,0.538305,0.572778,0.130133,0.410495,0.580814,0.822706,0.646239,0.565603,0.333009,0.290804,0.403049,0.744595,0.162351,0.811368,0.388762,0.454572,0.396787,0.45914,0.682758,0.164417,0.170805,0.53621,0.572208,0.709823,0.195051,0.916823,0.173216,0.413599,0.0870335,0.13648,0.159539,0.313143,0.445238,0.932718,0.855372,0.621596,0.552767,0.206552,0.289405,0.380777,0.647716,0.096166,0.884401,0.479887,0.421877,0.0184637,0.735971,0.373154,0.710417,0.937226,0.735569,0.196134,0.709553,0.444235,0.434203,0.928708,0.895383,0.751152,0.602768,0.592036,0.35938,0.701459,0.306315,0.476297,0.540959,0.321191,0.37896,0.0608378,0.181946,0.711359,0.234579,0.0540342,0.502267,0.379235,0.488429,0.563938,0.523386,0.885646,0.605334,0.533703,0.624648,0.274528,0.11894,0.482352,0.774918,0.0579044,0.792242,0.620415,0.393975,0.312232,0.951842,0.901994,0.929879,0.446746,0.664889,0.483502,0.327662,0.373549,0.0361509,0.168842,0.612736,0.972561,0.685905,0.677531,0.0959074,0.186802,0.250794,0.23837,0.646726,0.670405,0.967395,0.61228,0.462869,0.032675,0.713957,0.531994,0.982557,0.758201,0.710522,0.379457,0.441283,0.124785,0.018102,0.199979,0.568276,0.901864,0.313734,0.726953,0.334462,0.806101,0.643799,0.979783,0.52268,0.470316,0.605261,0.46046,0.956235,0.663052,0.956022,0.720678,0.21124,0.768442,0.892777,0.866387,0.140558,0.567893,0.274688,0.590441,0.624367,0.826473,0.991553,0.601121,0.1295,0.680566,0.762086,0.796986,0.740493,0.248927,0.583493,0.796222,0.354617,0.571515,0.286533,0.812355,0.771374,0.814575,0.39308,0.06567,0.0241404,0.495848,0.463456,0.0393936,0.908035,0.189885,0.743996,0.616434,0.023158,0.36044,0.776479,0.0643665,0.976774,0.919884,0.426138,0.293628,0.276697,0.867508,0.483289,0.357632,0.331047,0.60738,0.721476,0.800743,0.385739,0.836845,0.357856,0.00630724,0.745143,0.945632,0.863598,0.309247,0.660919,0.309001,0.709604,0.303394,0.234703,0.158479,0.696559,0.325254,0.491962,0.872081,0.852102,0.152075,0.635389,0.491223,0.880775,0.198095,0.582577,0.923915,0.656439,0.221951,0.884713,0.154966,0.0414051,0.108469,0.178769,0.000412345,0.645186,0.400867,0.494228,0.397756,0.757771,0.87981,0.382242,0.111595,0.40214,0.0215522,0.557074,0.437332,0.867048,0.881415,0.149452,0.84359,0.0869917,0.723182,0.84658,0.93034,0.950627,0.522944,0.111685,0.152029,0.0685219,0.0873923,0.0956429,0.269844,0.451362,0.0864797,0.679218,0.977186,0.373421,0.167551,0.941178,0.924256,0.598646,0.681897,0.532545,0.51518,0.408514,0.972699,0.124408,0.858183,0.0816424,0.150843,0.69814,0.841118,0.94422,0.15851,0.943437,0.546752,0.50831,0.610225,0.0100779,0.0766046,0.612318,0.347645,0.149996,0.517934,0.343925,0.900303,0.462307,0.234368,0.897231,0.385252,0.964746,0.0963556,0.0417928,0.549227,0.0451672,0.581313,0.0466267,0.336277,0.685888,0.696964,0.226834,0.0125481,0.247426,0.885322,0.0286946,0.966225,0.0285501,0.0283896,0.46603,0.462226,0.310174,0.493178,0.833116,0.923996,0.285853,0.170388,0.564666,0.837524,0.163522,0.721365,0.980498,0.963447,0.282123,0.944065,0.329704,0.49431,0.423648,0.606347,0.386158,0.375653,0.275513,0.11026,0.992143,0.061453,0.897024,0.575439,0.277248,0.872624,0.751538,0.907877,0.504543,0.33815,0.0172671,0.0151117,0.796193,0.426943,0.675454,0.676096,0.604573,0.385048,0.504364,0.29177,0.00281119,0.861938,0.752883,0.419743,0.563444,0.0472814,0.0448754,0.491776,0.584546,0.998144,0.257839,0.684592,0.204561,0.0953327,0.31152,0.874126,0.526937,0.384006,0.0892268,0.574972,0.957033,0.54466,0.570917,0.891519,0.485644,0.698157,0.0163918,0.709652,0.979681,0.864082,0.325468,0.577022,0.556358,0.717473,0.238932,0.935907,0.355722,0.255194,0.150742,0.680727,0.687581,0.477341,0.645238,0.968816,0.613589,0.980234,0.88985,0.699727,0.1623,0.23478,0.311148,0.770728,0.0265484,0.495928,0.84615,0.293961,0.104331,0.974337,0.0961487,0.311855,0.121204,0.450726,0.63649,0.165376,0.742495,0.421813,0.0998386,0.310908,0.0783319,0.516413,0.0949904,0.644818,0.897066,0.765916,0.412199,0.116605,0.719882,0.70684,0.205185,0.896151,0.0966814,0.175754,0.677415,0.134239,0.00184453,0.581912,0.762891,0.16614,0.0196487,0.377267,0.538003,0.707481,0.0475451,0.430579,0.448989,0.398564,0.995121,0.591619,0.123702,0.0149795,0.632063,0.900472,0.439754,0.952666,0.48284,0.764114,0.87728,0.594865,0.0414256,0.415488,0.0642245,0.52954,0.518993,0.496806,0.677452,0.862758,0.31925,0.421415,0.178868,0.0462679,0.290134,0.104422,0.705934,0.161608,0.615593,0.397033,0.0694965,0.138472,0.162819,0.927094,0.167232,0.185753,0.635403,0.442371,0.843863,0.705428,0.338253,0.121934,0.300038,0.210189,0.465868,0.364864,0.776608,0.257023,0.810314,0.0776839,0.607881,0.192177,0.919657,0.114283,0.618137,0.830518,0.442115,0.990872,0.66714,0.292178,0.757021,0.543866,0.371669,0.0113204,0.395805,0.0699719,0.394233,0.362887,0.561891,0.763958,0.720446,0.471403,0.203506,0.874581,0.0897295,0.213654,0.905893,0.399128,0.245856,0.679936,0.220857,0.400459,0.333054,0.527821,0.289503,0.50052,0.601957,0.687079,0.245233,0.266816,0.549996,0.63547,0.148856,0.482106,0.306631,0.453865,0.0236446,0.713124,0.0566109,0.886276,0.311834,0.564108,0.282641,0.599804,0.768704,0.202756,0.281317,0.575594,0.390437,0.581729,0.187817,0.929429,0.809585,0.703525,0.96594,0.141576,0.983095,0.409786,0.395731,0.875144,0.13347,0.9923,0.301353,0.494382,0.850276,0.171536,0.114681,0.916627,0.437843,0.835528,0.602026,0.355364,0.23903,0.903655,0.257744,0.112914,0.0270058,0.285574,0.207048,0.459687,0.832723,0.00655633,0.507855,0.377024,0.48687,0.626908,0.361227,0.371166,0.43667,0.19094,0.984041,0.338187,0.0866456,0.959681,0.635077,0.618407,0.685994,0.147209,0.997228,0.101649,0.715406,0.991947,0.154719,0.726196,0.21663,0.083068,0.593184,0.915163,0.172623,0.684441,0.87819,0.860781,0.84678,0.159999,0.662857,0.321988,0.832846,0.821289,0.204273,0.701213,0.611276,0.242089,0.044826,0.411308,0.681543,0.523157,0.347512,0.661139,0.847638,0.272998,0.622628,0.156425,0.765901,0.122524,0.372645,0.324236,0.54695,0.661163,0.604519,0.968475,0.667598,0.671624,0.190378,0.887219,0.849077,0.536324,0.0473872,0.565264,0.81592,0.611538,0.167795,0.0478305,0.25246,0.624882,0.448892,0.507095,0.658121,0.612819,0.166325,0.674569,0.0365698,0.0890738,0.685644,0.0754834,0.340294,0.681606,0.0934018,0.62867,0.648654,0.318651,0.970454,0.66822,0.99138,0.401606,0.32305,0.311857,0.085741,0.936984,0.622535,0.156249,0.150198,0.899385,0.222247,0.963482,0.706899,0.158509,0.563258,0.966622,0.788752,0.0314968,0.635251,0.399232,0.716122,0.625507,0.377493,|0.244548,0.549485,0.790019,0.595127,0.607194,0.27971,0.56897,0.726333,0.00803351,0.74233,0.936332,0.720263,0.0586435,0.321721,0.346069,0.551011,0.307667,0.486198,0.257954,0.066134,0.808487,0.916622,0.776137,0.411708,0.352147,0.677524,0.75866,0.836348,0.0540116,0.696122,0.995131,0.548538,0.487868,0.308352,0.035773,0.289865,0.0377504,0.788097,0.187282,0.129257,0.218247,0.217984,0.778009,0.555238,0.420774,0.497543,0.579624,0.946805,0.306809,0.995956,0.696195,0.842797,0.771744,0.353491,0.792388,0.535397,0.148068,0.995595,0.726629,0.0828703,0.293874,0.596904,0.0916104,0.980672,0.234222,0.366948,0.955492,0.131037,0.698379,0.554529,0.326511,0.565518,0.773616,0.662535,0.690193,0.833821,0.828824,0.68917,0.503603,0.138828,0.989689,0.0716999,0.266898,0.469866,0.711845,0.747227,0.0338023,0.876865,0.661886,0.164874,0.837245,0.221842,0.927574,0.47235,0.841099,0.96343,0.271824,0.665745,0.342867,0.722054,0.285517,0.652297,0.359822,0.569842,0.246699,0.904481,0.464802,0.276172,0.0842113,0.0308943,0.0139613,0.433978,0.667378,0.86195,0.732894,0.0127219,0.578602,0.200233,0.631044,0.338214,0.864502,0.0715315,0.303349,0.452941,0.906337,0.98099,0.227686,0.0121332,0.796764,0.515711,0.509565,0.686375,0.95724,0.736636,0.242244,0.00946391,0.700303,0.969062,0.790169,0.97029,0.284813,0.989123,0.805503,0.475632,0.233007,0.347983,0.655694,0.118289,0.451778,0.1401,0.755522,0.939141,0.651735,0.639419,0.865486,0.663609,0.782065,0.347537,0.5849,0.781068,0.194321,0.318872,0.961683,0.555142,0.898219,0.117307,0.364315,0.112861,0.652178,0.343501,0.0872406,0.922285,0.655743,0.743301,0.744899,0.776415,0.873154,0.388704,0.302264,0.440953,0.274102,0.586232,0.819269,0.322237,0.34327,0.237066,0.282187,0.142105,0.73911,0.568284,0.646282,0.625825,0.508686,0.753064,0.657271,0.162837,0.850598,0.169762,0.738572,0.827845,0.0703756,0.0228662,0.0336163,0.771752,0.0880399,0.84292,0.384725,0.756702,0.986679,0.153125,0.434622,0.864691,0.531318,0.108892,0.045745,0.110762,0.16935,0.420409,0.479955,0.411095,0.365574,0.0433573,0.331941,0.570568,0.342879,0.213066,0.0825559,0.583829,0.0654454,0.908673,0.491073,0.544748,0.664511,0.918845,0.187417,0.113166,0.000485718,0.322387,0.847654,0.249427,0.959446,0.390074,0.464377,0.54445,0.918426,0.953978,0.203595,0.519127,0.737333,0.229951,0.335329,0.646243,0.234203,0.994433,0.66036,0.9548,0.601956,0.783918,0.39801,0.702891,0.608101,0.432566,0.560036,0.984721,0.622895,0.877751,0.799525,0.920996,0.187777,0.66607,0.722229,0.504172,0.290379,0.348621,0.455584,0.492899,0.58433,0.914074,0.331397,0.264602,0.631723,0.354104,0.856179,0.468739,0.86585,0.399961,0.122506,0.774358,0.923934,0.262703,0.931703,0.817698,0.917383,0.940063,0.00833905,0.313001,0.393927,0.637468,0.302026,0.654794,0.134454,0.29107,0.130931,0.414956,0.755041,0.0876398,0.474887,0.716691,0.822355,0.277325,0.059837,0.989944,0.246086,0.114693,0.439702,0.174475,0.108954,0.883927,0.140163,0.884518,0.701775,0.918999,0.523305,0.731608,0.397762,0.142509,0.196784,0.539995,0.967565,0.293525,0.315973,0.338732,0.00838703,0.944448,0.423843,0.794714,0.558839,0.904253,0.618778,0.949911,0.460142,0.524554,0.0714012,0.709087,0.322439,0.976058,0.719516,0.957238,0.348556,0.208443,0.612108,0.543258,0.900178,0.200504,0.437954,0.901691,0.842674,0.832792,0.662503,0.404303,0.483112,0.99612,0.779828,0.267573,0.584473,0.68125,0.667642,0.941959,0.328788,0.531808,0.181099,0.293211,0.0295416,0.809904,0.11341,0.136603,0.488048,0.769285,0.573826,0.654113,0.423396,0.862997,0.229846,0.249792,0.967573,0.575279,0.284788,0.912043,0.0632883,0.224999,0.202503,0.702468,0.449142,0.990883,0.967575,0.586829,0.0833185,0.858209,0.305514,0.220215,0.50421,0.903059,0.564067,0.61392,0.964882,0.344283,0.375336,0.27848,0.538947,0.109619,0.81773,0.686825,0.511331,0.909165,0.219508,0.660352,0.0254495,0.229724,0.172772,0.719022,0.327835,0.500579,0.0257756,0.59146,0.816968,0.513337,0.375328,0.396747,0.755439,0.475557,0.0336055,0.0599807,0.147281,0.743675,0.416209,0.659361,0.459718,0.474864,0.165491,0.838276,0.440633,0.416828,0.422724,0.558164,0.542011,0.212398,0.475938,0.84586,0.734804,0.984223,0.316807,0.744858,0.504574,0.202289,0.127611,0.451547,0.696197,0.350259,0.313563,0.428389,0.907814,0.0469032,0.151042,0.885782,0.429927,0.239451,0.655459,0.666074,0.128176,0.486649,0.0723574,0.290449,0.18084,0.907274,0.0599499,0.855318,0.383147,0.569438,0.508058,0.857337,0.783998,0.131327,0.708765,0.278035,0.889752,0.969185,0.634776,0.842998,0.541638,0.406552,0.0459323,0.0765827,0.764566,0.884212,0.800853,0.769551,0.122692,0.428469,0.747885,0.26309,0.291287,0.27275,0.283257,0.668451,0.57967,0.123421,0.0203426,0.991507,0.62059,0.114047,0.807658,0.641353,0.720732,0.421645,0.924283,0.958621,0.707897,0.247346,0.528779,0.780687,0.250947,0.432208,0.36954,0.416625,0.343855,0.376564,0.00485867,0.134835,0.941501,0.409082,0.424935,0.598124,0.0624769,0.885263,0.382024,0.146836,0.410887,0.516868,0.523457,0.254674,0.670992,0.867127,0.0764958,0.726574,0.569625,0.930416,0.944373,0.705848,0.31587,0.593347,0.874838,0.879715,0.366817,0.246694,0.933112,0.439192,0.254034,0.521865,0.283916,0.556475,0.756038,0.39485,0.305056,0.0451795,0.240127,0.53022,0.10308,0.0395355,0.141343,0.279358,0.627291,0.342208,0.121873,0.427454,0.00592148,0.502142,0.222945,0.881465,0.765587,0.903278,0.826986,0.652191,0.503232,0.799705,0.320185,0.298455,0.737118,0.138255,0.468056,0.139979,0.688629,0.347341,0.789998,0.251926,0.57461,0.0650578,0.332002,0.226226,0.305705,0.227472,0.00384849,0.077101,0.284078,0.793516,0.175224,0.686356,0.526921,0.244403,0.623582,0.449528,0.312346,0.493789,0.858299,0.24848,0.112321,0.170105,0.207698,0.202625,0.369391,0.191326,0.240505,0.882415,0.597044,0.61685,0.528302,0.995703,0.5046,0.266223,0.0859555,0.479504,0.273577,0.0853925,0.716564,0.187116,0.884513,0.0932811,0.308753,0.946453,0.448371,0.289445,0.0181187,0.23144,0.652362,0.49437,0.768579,0.977311,0.357169,0.113243,0.806637,0.74498,0.738762,0.342936,0.0593278,0.453049,0.808781,0.941921,0.688915,0.375531,0.612875,0.510894,0.488209,0.44206,0.698886,0.76879,0.424782,0.540827,0.820257,0.36051,0.208971,0.917017,0.716178,0.760226,0.213295,0.0828707,0.920495,0.275767,0.442182,0.203218,0.453416,0.521585,0.348678,0.806542,0.837254,0.269295,0.598198,0.613658,0.0975816,0.471383,0.615475,0.994994,0.500568,0.776535,0.489077,0.348324,0.813396,0.775466,0.301766,0.442473,0.307779,0.635854,0.0254947,0.116437,0.516889,0.344175,0.99718,0.171857,0.882698,0.315251,0.204627,0.672927,0.735651,0.529526,0.238277,0.183004,0.914027,0.945719,0.871224,0.0117137,0.882625,0.402984,0.354452,0.0530441,0.457318,0.770397,0.0416882,0.633799,0.358196,0.24301,0.496696,0.124276,0.126518,0.56021,0.197638,0.0508868,0.761008,0.308361,0.999827,0.0736497,0.164882,0.0342324,0.906049,0.331929,0.830217,0.385594,0.450058,0.439474,0.00746483,0.311148,0.0183856,0.933253,0.249605,0.271691,0.791817,0.260823,0.165797,0.431829,0.352459,0.980857,0.119433,0.257297,0.880034,0.248714,0.468175,0.70238,0.62042,0.898756,0.118319,0.177996,0.0504844,0.175327,0.668778,0.945093,0.0507492,0.419332,0.0607719,0.455973,0.243038,0.977138,0.346582,0.142543,0.417609,0.971605,0.693785,0.88769,0.874178,0.423625,0.625514,0.708158,0.0300179,0.17037,0.580382,0.921493,0.949684,0.926318,0.490582,0.507838,0.536325,0.631951,0.595128,0.0671532,0.85218,0.599279,0.546519,0.650836,0.769556,0.989839,0.954977,0.964377,0.941881,0.641018,0.450624,0.960952,0.960236,0.71662,0.514848,0.182618,0.763124,0.0010882,0.486907,0.848063,0.0636238,0.834098,0.26522,0.0434803,0.65084,0.50404,0.106532,0.219047,0.280609,0.096546,0.735638,0.981443,0.455048,0.912598,0.0147269,0.102625,0.13414,0.274784,0.172546,0.118906,0.798011,0.840877,0.880547,0.690868,0.944857,0.817157,0.677515,0.959849,0.832619,0.842437,0.54975,0.477513,0.409332,0.00449646,0.348456,0.291389,0.291088,0.29861,0.215152,0.765681,0.585674,0.378008,0.835818,0.902728,0.577408,0.0533016,0.0665091,0.0473028,0.482705,0.306294,0.785906,0.328258,0.410044,0.43561,0.115994,0.491568,0.56273,0.739511,0.0697734,0.913305,0.44901,0.279914,0.654945,0.203851,0.552082,0.413,0.58692,0.511148,0.389329,0.83686,0.427179,0.506146,0.574974,0.895488,0.53775,0.477952,0.452093,0.494742,0.861043,0.66631,0.545959,0.841746,0.133017,0.677939,0.544236,0.478521,0.853934,0.35043,0.609466,0.669119,0.902893,0.904237,0.153184,0.164184,0.764888,0.417195,0.774132,0.494384,0.880703,0.148635,0.128459,0.512149,0.610148,0.453673,0.341777,0.207656,0.398435,0.561234,0.14324,0.473012,0.607429,0.271958,0.399078,0.438096,0.937984,0.996696,0.940809,0.514846,0.794266,0.306208,0.0962264,0.214276,0.292719,0.424873,0.696412,0.699227,0.948615,0.019195,0.44972,0.597509,0.654934,0.609194,0.445518,0.21331,0.320796,0.928183,0.70147,0.998023,0.634852,0.560798,0.878023,0.100737,0.866913,0.107218,0.234297,0.833161,0.307368,0.148979,0.429765,0.720014,0.0502075,0.392058,0.63774,0.226847,0.45486,0.0269945,0.386143,0.424313,0.420838,0.634946,0.404813,0.629525,0.296978,0.451604,0.0617297,0.623041,0.318821,0.325936,0.0667511,0.856185,0.961844,0.986039,0.787752,0.848449,0.218627,0.417594,0.861876,0.17435,0.427306,0.98422,|0.0242234,0.247257,0.087151,0.0817915,0.0891548,0.494644,0.460473,0.41003,0.696564,0.82447,0.719152,0.344495,0.452334,0.705614,0.659384,0.394505,0.77035,0.96595,0.662642,0.212797,0.787528,0.610751,0.240529,0.610174,0.376623,0.136853,0.437598,0.535286,0.0579066,0.170782,0.026843,0.94552,0.063144,0.292737,0.96691,0.934858,0.816816,0.0488247,0.39324,0.0475848,0.791539,0.484632,0.0937811,0.830953,0.869325,0.760231,0.195446,0.930711,0.487177,0.279438,0.420617,0.83322,0.453381,0.413753,0.500572,0.506151,0.61754,0.193867,0.205961,0.876678,0.0470382,0.0763236,0.760918,0.444798,0.623562,0.307461,0.172697,0.901547,0.082846,0.599719,0.139339,0.894657,0.805479,0.937138,0.446698,0.251624,0.33248,0.762176,0.570493,0.673851,0.168243,0.0491875,0.368565,0.728897,0.58383,0.718529,0.704505,0.0858306,0.745526,0.497318,0.395649,0.259118,0.416592,0.197993,0.10664,0.59604,0.45236,0.768654,0.803998,0.452941,0.884306,0.874894,0.527248,0.950521,0.380119,0.54739,0.0838758,0.360143,0.459631,0.762322,0.424261,0.278507,0.648843,0.993019,0.320978,0.132662,0.753639,0.153451,0.135354,0.658655,0.888397,0.141391,0.366687,0.538302,0.402079,0.348802,0.0394702,0.910973,0.0710803,0.264965,0.559806,0.314908,0.29543,0.925536,0.879084,0.258042,0.24625,0.627665,0.962587,0.00303024,0.598285,0.60234,0.528653,0.490128,0.616316,0.349739,0.381265,0.151894,0.52629,0.695821,0.855431,0.906214,0.724233,0.12422,0.0797346,0.758911,0.798524,0.725034,0.758534,0.0973499,0.694263,0.27106,0.413324,0.779694,0.216985,0.328736,0.316535,0.104261,0.181277,0.46298,0.186736,0.969068,0.855645,0.0162898,0.559786,0.538258,0.137191,0.603477,0.327341,0.442124,0.236232,0.958086,0.638,0.913815,0.443917,0.985555,0.70605,0.541821,0.806172,0.404325,0.931741,0.24005,0.0985255,0.750071,0.43038,0.929363,0.63211,0.57007,0.748037,0.249916,0.375261,0.495868,0.634391,0.741281,0.0846193,0.812299,0.10319,0.8468,0.315175,0.749468,0.957874,0.464487,0.485755,0.217607,0.247337,0.483058,0.967692,0.258151,0.220151,0.0550023,0.943953,0.858649,0.461772,0.0733542,0.667744,0.561109,0.177061,0.470147,0.90694,0.188559,0.305281,0.945331,0.585318,0.393045,0.860463,0.898517,0.85011,0.182768,0.304304,0.0126669,0.160145,0.497018,0.971736,0.506296,0.407173,0.221185,0.502305,0.567919,0.0959723,0.743495,0.394948,0.242092,0.0289728,0.973681,0.0212393,0.541255,0.866069,0.0617692,0.269782,0.434249,0.784119,0.327472,0.648336,0.917119,0.472259,0.790704,0.380826,0.219703,0.515974,0.172908,0.845455,0.27753,0.0727775,0.54635,0.472146,0.447062,0.224402,0.608858,0.570969,0.328255,0.763269,0.0452723,0.529725,0.987024,0.180918,0.129139,0.0960941,0.0135113,0.892188,0.2281,0.182398,0.111199,0.131511,0.632863,0.0616602,0.0745474,0.901399,0.784521,0.038435,0.797911,0.279348,0.817684,0.605698,0.46276,0.115063,0.360924,0.0506703,0.812733,0.371534,0.579449,0.257394,0.0808604,0.518848,0.951915,0.183647,0.481544,0.00612277,0.511752,0.717234,0.873687,0.0755097,0.0910995,0.0880212,0.656977,0.257185,0.700577,0.856333,0.610382,0.286163,0.133527,0.00499398,0.231732,0.99654,0.680096,0.575866,0.808353,0.184597,0.534429,0.802966,0.355191,0.0997424,0.70934,0.473981,0.0767201,0.888864,0.101367,0.0652905,0.934567,0.499132,0.243826,0.481022,0.778217,0.537307,0.548402,0.503217,0.41047,0.187063,0.970985,0.235055,0.732225,0.92812,0.307341,0.826443,0.623342,0.93222,0.24996,0.810058,0.453754,0.366925,0.401421,0.805271,0.126531,0.324895,0.851862,0.756741,0.288493,0.0535124,0.850256,0.589152,0.773013,0.626499,0.0666774,0.0707068,0.886176,0.149655,0.840078,0.564097,0.023018,0.614386,0.254532,0.226584,0.638525,0.83886,0.180859,0.449952,0.757634,0.908984,0.758443,0.91813,0.154367,0.0586023,0.342102,0.636625,0.140603,0.988204,0.490089,0.135172,0.381133,0.26602,0.380277,0.892605,0.440386,0.145569,0.647242,0.658113,0.619087,0.821987,0.891342,0.341585,0.787886,0.14188,0.0769894,0.772043,0.662729,0.988342,0.07393,0.894651,0.094061,0.458035,0.427136,0.692465,0.395344,0.387796,0.945096,0.152876,0.51792,0.242728,0.496372,0.0188454,0.574312,0.287134,0.0409237,0.258003,0.841834,0.269388,0.155978,0.378356,0.138052,0.695749,0.117621,0.386549,0.198947,0.138569,0.36549,0.732499,0.760294,0.143715,0.13072,0.613589,0.662083,0.113377,0.422291,0.499097,0.783819,0.570121,0.73344,0.234949,0.272159,0.735508,0.477519,0.88647,0.20926,0.116943,0.384036,0.679033,0.777731,0.311585,0.388309,0.405225,0.979319,0.151322,0.485411,0.670592,0.187749,0.132012,0.669185,0.395737,0.375085,0.970591,0.488804,0.289799,0.379165,0.955658,0.724685,0.00035882,0.119551,0.775473,0.799984,0.127279,0.347606,0.0419457,0.838386,0.709415,0.218074,0.469077,0.549494,0.590879,0.778753,0.852419,0.856243,0.498467,0.119152,0.221554,0.676055,0.997478,0.0804074,0.612397,0.591415,0.799041,0.337188,0.529906,0.187863,0.0383213,0.570198,0.537905,0.945726,0.0496362,0.302411,0.573795,0.536381,0.359525,0.598047,0.828523,0.669537,0.566741,0.972428,0.411515,0.249026,0.452111,0.624845,0.976098,0.541518,0.361349,0.382043,0.733032,0.345442,0.646504,0.302296,0.0270978,0.0850721,0.59476,0.400462,0.58595,0.791902,0.214817,0.881096,0.985569,0.559008,0.690051,0.921087,0.590442,0.727166,0.729949,0.02597,0.824092,0.691576,0.454393,0.547517,0.172644,0.420746,0.766733,0.35856,0.398042,0.297095,0.765648,0.262967,0.20754,0.999755,0.982027,0.577404,0.712239,0.754103,0.426156,0.827635,0.91618,0.767514,0.863038,0.365819,0.316515,0.908638,0.0345974,0.950009,0.305696,0.295433,0.377451,0.98332,0.908074,0.834231,0.163971,0.929237,0.140444,0.74161,0.188937,0.0130344,0.385233,0.174016,0.414332,0.311221,0.810461,0.000627995,0.930528,0.376725,0.444293,0.784842,0.832744,0.475768,0.265922,0.884721,0.550547,0.232878,0.406795,0.262923,0.83385,0.943868,0.965451,0.87041,0.0097934,0.546175,0.366367,0.978261,0.572507,0.890183,0.752563,0.091212,0.117476,0.47966,0.13103,0.528162,0.576811,0.94928,0.0368582,0.63191,0.592093,0.514421,0.300098,0.633788,0.284384,0.909834,0.256249,0.548673,0.303945,0.117849,0.230014,0.250624,0.0888649,0.648165,0.766363,0.121608,0.802478,0.58156,0.077051,0.405703,0.459477,0.526099,0.700361,0.0512289,0.811891,0.9692,0.389961,0.192718,0.297007,0.84427,0.366711,0.632284,0.0527367,0.925749,0.848698,0.861581,0.358951,0.568245,0.166144,0.0787123,0.801581,0.274202,0.0797819,0.693896,0.593483,0.316335,0.426241,0.257015,0.915242,0.109352,0.562748,0.595695,0.0821442,0.571462,0.853915,0.333317,0.620575,0.330629,0.931566,0.35761,0.229084,0.248903,0.128383,0.240522,0.495418,0.815984,0.541304,0.985638,0.266065,0.393634,0.490036,0.881617,0.168585,0.87021,0.483174,0.191649,0.78843,0.785997,0.502549,0.609563,0.546655,0.0497472,0.177914,0.314009,0.570863,0.54122,0.0596225,0.589608,0.369434,0.631855,0.191851,0.299232,0.57449,0.73001,0.257371,0.665896,0.668458,0.995938,0.981387,0.848974,0.825913,0.708502,0.95551,0.429331,0.644514,0.208311,0.871824,0.209048,0.878299,0.385027,0.850209,0.866949,0.625266,0.865404,0.565813,0.230331,0.349339,0.858161,0.3808,0.918003,0.627566,0.917183,0.808366,0.214442,0.0956235,0.537192,0.253202,0.984792,0.63716,0.0537789,0.231467,0.346431,0.553398,0.245587,0.595631,0.90725,0.0822117,0.870188,0.291997,0.325727,0.579903,0.867315,0.754944,0.606803,0.314735,0.781485,0.347396,0.848228,0.313131,0.535503,0.791062,0.39953,0.179245,0.85412,0.867278,0.140726,0.69274,0.156536,0.333804,0.341016,0.838311,0.771631,0.247938,0.108123,0.239813,0.817904,0.787496,0.131618,0.444406,0.964815,0.509902,0.382422,0.0725573,0.873722,0.103658,0.129486,0.664733,0.58285,0.962319,0.829548,0.889083,0.294766,0.956852,0.413231,0.163779,0.0329525,0.504365,0.535564,0.0559536,0.20227,0.726871,0.254211,0.78738,0.418215,0.638225,0.642775,0.203248,0.410766,0.26747,0.378608,0.643538,0.737887,0.761322,0.65126,0.497221,0.368132,0.918551,0.895157,0.900544,0.934153,0.478075,0.212407,0.314796,0.982713,0.448288,0.988994,0.903765,0.548353,0.0382951,0.352293,0.376787,0.0818099,0.21975,0.69087,0.664269,0.810801,0.825822,0.981836,0.095399,0.141806,0.680888,0.847167,0.178227,0.311268,0.0541365,0.780953,0.787954,0.433361,0.555953,0.45443,0.559861,0.904541,0.769779,0.45479,0.693226,0.431322,0.0389661,0.445725,0.97398,0.8787,0.717581,0.0314257,0.879398,0.0859764,0.113898,0.47296,0.117054,0.434909,0.987584,0.253852,0.347105,0.877344,0.892846,0.446879,0.364268,0.239168,0.221251,0.00684935,0.612019,0.716137,0.0786985,0.795451,0.946643,0.816067,0.649213,0.582369,0.443629,0.19002,0.829138,0.742666,0.78221,0.955462,0.244482,0.767857,0.136662,0.625708,0.760804,0.721144,0.871863,0.802298,0.566886,0.859682,0.0950719,0.662397,0.294854,0.419082,0.583471,0.942839,0.404016,0.0304956,0.401691,0.0376847,0.768907,0.00832033,0.0711508,0.386261,0.38234,0.966118,0.0907408,0.531497,0.988381,0.544627,0.891511,0.192406,0.912458,0.998954,0.149348,0.249201,0.827312,0.986258,0.891236,0.240217,0.775095,0.335406,0.592568,0.840239,0.958042,0.999009,0.114805,0.196235,0.322721,0.38015,0.0410535,0.132847,0.328458,0.554051,0.525495,0.755351,0.798019,0.26003,0.548141,0.723069,0.24532,0.989842,0.862136,0.0553942,0.697792,0.546239,0.540545,0.674497,0.28086,0.601407,0.70684,0.643415,0.793256,0.591403,0.394662,0.211785,|0.339132,0.997139,0.0527932,0.379068,0.344017,0.969653,0.354493,0.783535,0.165348,0.132789,0.79712,0.934904,0.253433,0.384543,0.523395,0.837738,0.36294,0.343438,0.00312376,0.494429,0.860852,0.345638,0.628967,0.461533,0.504527,0.00309289,0.956693,0.891933,0.375025,0.139907,0.86355,0.547277,0.407274,0.403948,0.92,0.884709,0.163617,0.161888,0.884625,0.857411,0.389151,0.73173,0.292751,0.940584,0.609079,0.383054,0.526184,0.746512,0.125017,0.055297,0.445358,0.0180211,0.316665,0.19312,0.844527,0.00405777,0.450132,0.0649996,0.50434,0.593848,0.25399,0.633946,0.654513,0.231656,0.897594,0.480988,0.264412,0.611588,0.0447519,0.736986,0.957858,0.467551,0.736291,0.943298,0.4677,0.170815,0.155946,0.82064,0.85612,0.851964,0.267596,0.417586,0.906885,0.0131952,0.0805568,0.219382,0.63754,0.912427,0.537288,0.149685,0.608234,0.111098,0.680501,0.364416,0.184154,0.320595,0.380277,0.965732,0.368758,0.435299,0.736798,0.674846,0.431189,0.175427,0.524575,0.253325,0.334295,0.902831,0.00957966,0.0165485,0.313703,0.962843,0.547531,0.640345,0.382074,0.877359,0.539878,0.106007,0.128405,0.730199,0.191404,0.0152625,0.936028,0.034263,0.975838,0.495837,0.610862,0.608418,0.015123,0.927402,0.738931,0.45747,0.708642,0.547242,0.166992,0.120044,0.265981,0.570954,0.437447,0.919458,0.589299,0.765647,0.215322,0.0180846,0.653841,0.461509,0.436192,0.33244,0.449617,0.059489,0.170125,0.380869,0.0488915,0.54781,0.845133,0.668247,0.124551,0.827517,0.479932,0.627128,0.999115,0.0709066,0.871379,0.621653,0.92562,0.390716,0.887756,0.282883,0.00392812,0.192683,0.262041,0.83415,0.982623,0.361859,0.239367,0.59258,0.108195,0.514725,0.992311,0.508414,0.00231785,0.669452,0.807566,0.830422,0.626862,0.26957,0.276085,0.670824,0.704071,0.520293,0.920872,0.811857,0.152343,0.591521,0.160972,0.285775,0.349394,0.578723,0.332898,0.713689,0.0717849,0.770258,0.553414,0.437065,0.427506,0.713598,0.259468,0.216765,0.110323,0.406056,0.48012,0.901685,0.793904,0.794848,0.717116,0.716855,0.395817,0.683534,0.252508,0.788711,0.885055,0.822746,0.279778,0.962723,0.652945,0.0808501,0.750464,0.330001,0.957472,0.659069,0.0499386,0.608057,0.688626,0.487442,0.943921,0.646911,0.352769,0.896592,0.141634,0.035704,0.80407,0.420603,0.603243,0.59406,0.274575,0.781266,0.182579,0.00189239,0.142505,0.686887,0.667423,0.679482,0.684536,0.29743,0.989372,0.63313,0.511368,0.239843,0.34033,0.229179,0.615871,0.613423,0.62089,0.589073,0.973961,0.39887,0.134998,0.979816,0.978,0.206335,0.678459,0.686735,0.664014,0.0725386,0.203403,0.712722,0.235905,0.5045,0.636393,0.552506,0.220182,0.921895,0.846339,0.190101,0.111859,0.259967,0.650304,0.199805,0.177245,0.784517,0.795836,0.577725,0.947252,0.17893,0.754557,0.118169,0.483588,0.199066,0.335182,0.328939,0.0806948,0.235282,0.150867,0.751629,0.567861,0.171376,0.0684027,0.944199,0.2209,0.566781,0.205186,0.854943,0.747073,0.234588,0.315645,0.0724813,0.923429,0.788097,0.677182,0.0820116,0.181641,0.685245,0.367266,0.840245,0.395108,0.32853,0.726386,0.596328,0.831442,0.238545,0.237409,0.732693,0.109538,0.792379,0.63366,0.213878,0.342386,0.752659,0.919747,0.939119,0.0108212,0.992154,0.335714,0.614135,0.423287,0.571844,0.451186,0.00228119,0.937852,0.496765,0.204097,0.983324,0.467577,0.0702309,0.162404,0.692613,0.560403,0.396417,0.777228,0.973369,0.512161,0.0851481,0.164138,0.188356,0.883686,0.40857,0.920834,0.840775,0.982571,0.405042,0.11671,0.413707,0.523396,0.885098,0.0432183,0.496137,0.0591759,0.974994,0.330304,0.0100629,0.140909,0.128419,0.686593,0.0910961,0.580833,0.698348,0.656227,0.931615,0.261088,0.573429,0.782594,0.424744,0.479427,0.453525,0.0504487,0.900633,0.739101,0.980045,0.945813,0.847174,0.80646,0.415617,0.543806,0.990712,0.648344,0.815793,0.20406,0.335918,0.905868,0.23517,0.218223,0.383512,0.857718,0.696352,0.991744,0.894463,0.351704,0.332108,0.831073,0.162283,0.653066,0.287771,0.425995,0.101237,0.647321,0.175157,0.531918,0.985344,0.460076,0.968987,0.228371,0.755813,0.0681984,0.626854,0.971486,0.959934,0.91014,0.936702,0.00358236,0.222381,0.0431367,0.232684,0.443347,0.608702,0.991212,0.843165,0.0478851,0.389393,0.0961602,0.954045,0.764712,0.896264,0.207963,0.99862,0.174813,0.110859,0.747893,0.541439,0.979178,0.977855,0.794755,0.0421693,0.770546,0.851313,0.782308,0.0538406,0.484908,0.537384,0.133318,0.142652,0.224219,0.891531,0.870107,0.49085,0.119514,0.911494,0.819097,0.48907,0.958453,0.227946,0.226538,0.211689,0.847802,0.766447,0.931784,0.258918,0.476979,0.172166,0.288919,0.230278,0.0498792,0.979743,0.886151,0.777217,0.754986,0.541442,0.0575716,0.94202,0.238631,0.669107,0.962365,0.110996,0.856764,0.245885,0.637224,0.837852,0.368659,0.430312,0.0985606,0.706944,0.320824,0.322791,0.362631,0.12256,0.528834,0.15186,0.741746,0.43108,0.0836052,0.40253,0.555656,0.0258088,0.871938,0.250879,0.23431,0.739806,0.525758,0.931693,0.690076,0.39722,0.319045,0.730094,0.767962,0.822919,0.893786,0.99684,0.375018,0.331718,0.386642,0.490854,0.0487292,0.410713,0.932722,0.340952,0.186373,0.347619,0.812519,0.520413,0.984723,0.381175,0.938438,0.00608295,0.295457,0.213894,0.83133,0.298527,0.0737463,0.50352,0.488219,0.666279,0.29787,0.841946,0.786376,0.278272,0.889278,0.377446,0.967127,0.177402,0.265056,0.941711,0.994595,0.811825,0.906451,0.235587,0.610991,0.0590555,0.494116,0.595098,0.713012,0.0916217,0.715292,0.000832021,0.137445,0.324596,0.727433,0.389335,0.570879,0.0763183,0.441776,0.57771,0.151474,0.815113,0.615275,0.431227,0.537832,0.394115,0.465358,0.204119,0.0943819,0.80408,0.745286,0.9155,0.4052,0.432035,0.888517,0.529483,0.849291,0.871524,0.355384,0.639751,0.599418,0.948327,0.475974,0.836443,0.078741,0.51658,0.699374,0.850773,0.824786,0.734414,0.20342,0.640717,0.954457,0.563736,0.588989,0.0213174,0.603862,0.16765,0.767475,0.440093,0.823463,0.556075,0.244371,0.777882,0.0769095,0.605508,0.804531,0.678507,0.344444,0.214491,0.787376,0.951921,0.919835,0.839287,0.640425,0.213572,0.547973,0.800811,0.58213,0.758546,0.00446153,0.762766,0.33056,0.405423,0.658562,0.429265,0.881856,0.156722,0.970161,0.10704,0.471162,0.0462289,0.781548,0.542171,0.546299,0.449737,0.293934,0.802436,0.202391,0.348613,0.834342,0.837404,0.158212,0.444706,0.467801,0.520991,0.466463,0.114262,0.44252,0.0298864,0.2411,0.040637,0.112418,0.759873,0.368557,0.630514,0.801973,0.576799,0.679248,0.240698,0.217788,0.759465,0.646958,0.90229,0.119139,0.625039,0.147478,0.350766,0.091757,0.551053,0.0146772,0.720338,0.193071,0.198342,0.729617,0.809618,0.820625,0.959597,0.0556459,0.209244,0.578735,0.813413,0.415668,0.710441,0.236555,0.935321,0.827435,0.480566,0.441156,0.0355155,0.532661,0.712803,0.101786,0.535036,0.840915,0.770502,0.454602,0.344022,0.738772,0.289244,0.077473,0.132981,0.481864,0.0564916,0.713647,0.662109,0.0290613,0.830449,0.277978,0.896668,0.729125,0.388498,0.00911397,0.0132197,0.140995,0.289643,0.272737,0.259873,0.582587,0.592793,0.645301,0.702512,0.183907,0.863329,0.342375,0.10661,0.355579,0.0235208,0.457443,0.322395,0.145535,0.925147,0.300567,0.960608,0.869423,0.736382,0.446163,0.69685,0.0566037,0.64188,0.235992,0.85297,0.863126,0.617138,0.412226,0.209709,0.395771,0.627507,0.78097,0.713197,0.848893,0.888672,0.430544,0.853022,0.730188,0.220152,0.921859,0.466524,0.615868,0.684616,0.69681,0.891681,0.170884,0.18855,0.369326,0.139039,0.757299,0.490585,0.951209,0.519218,0.458795,0.984212,0.825354,0.681988,0.999211,0.824873,0.900488,0.892502,0.448133,0.867748,0.377813,0.833977,0.177176,0.67756,0.835807,0.245748,0.681716,0.623653,0.710748,0.213427,0.798851,0.448743,0.476446,0.510864,0.0363504,0.887039,0.53946,0.0516873,0.895311,0.502632,0.760523,0.670951,0.17732,0.404268,0.765628,0.308846,0.772226,0.880038,0.746125,0.35312,0.948689,0.00631917,0.0114407,0.4728,0.466431,0.773474,0.789898,0.577649,0.820099,0.667353,0.135602,0.245516,0.0767646,0.948917,0.355237,0.11746,0.991446,0.185454,0.726111,0.357091,0.405341,0.998435,0.730186,0.716766,0.43729,0.869489,0.668201,0.422671,0.559857,0.114073,0.853165,0.242235,0.71739,0.706439,0.493581,0.311314,0.703919,0.825489,0.673436,0.29648,0.295306,0.980681,0.484818,0.490663,0.993348,0.100176,0.52437,0.596343,0.783889,0.194967,0.00938076,0.549603,0.0408171,0.911101,0.690294,0.678873,0.425895,0.915146,0.357795,0.337173,0.815752,0.701162,0.0878801,0.599417,0.263453,0.495856,0.957915,0.384921,0.113919,0.6003,0.398741,0.262145,0.385509,0.32374,0.190079,0.620446,0.213822,0.865485,0.73946,0.721342,0.876637,0.845458,0.963088,0.968324,0.804837,0.039475,0.50529,0.111251,0.540324,0.405084,0.0467067,0.35327,0.860169,0.917131,0.482251,0.0178743,0.604878,0.448688,0.652737,0.645308,0.665099,0.516205,0.155216,0.648862,0.443999,0.627606,0.0309287,0.232727,0.921863,0.0484651,0.438797,0.85888,0.976867,0.448961,0.494065,0.829441,0.771274,0.514489,0.357972,0.0917138,0.472794,0.965446,0.834009,0.79996,0.377796,0.615508,0.0950116,0.901609,0.00735348,0.921306,0.687615,0.571768,0.546174,0.78734,0.815626,0.417602,0.435623,0.139019,0.455533,0.356318,0.344759,0.109064,0.7127,0.276846,0.0501961,0.619242,0.534308,0.159194,0.234851,0.872074,0.046045,0.854523,0.556002,0.939094,0.0079723,0.717394,0.92868,0.773581,0.337286,0.833748,|0.814871,0.926056,0.836051,0.00352836,0.791224,0.415188,0.747231,0.264309,0.817322,0.0439256,0.358989,0.838927,0.578877,0.186289,0.419926,0.911532,0.532108,0.193649,0.0427494,0.865588,0.0161922,0.630991,0.69304,0.0752149,0.44855,0.965539,0.837214,0.658715,0.712442,0.421752,0.594719,0.0845886,0.820085,0.878585,0.260915,0.102515,0.208414,0.818961,0.944753,0.836351,0.945874,0.517966,0.639034,0.779773,0.405327,0.042986,0.563229,0.635014,0.927143,0.532674,0.872437,0.672678,0.988163,0.277851,0.568839,0.169831,0.548206,0.148512,0.483968,0.936128,0.235403,0.17531,0.481988,0.32568,0.522871,0.692254,0.376632,0.362785,0.190668,0.250399,0.831487,0.624069,0.927043,0.0590361,0.13923,0.2942,0.95799,0.954399,0.382286,0.84806,0.557549,0.695984,0.174473,0.628254,0.399395,0.661841,0.221804,0.109057,0.94726,0.524562,0.917775,0.165626,0.833397,0.0925511,0.101089,0.142086,0.168391,0.0707301,0.432339,0.497689,0.22525,0.542302,0.0777193,0.086308,0.350347,0.153298,0.47284,0.471088,0.471376,0.843342,0.113275,0.671367,0.0897216,0.13041,0.655996,0.664837,0.979871,0.751271,0.657802,0.97541,0.812837,0.254311,0.19021,0.271218,0.360412,0.624884,0.418192,0.793057,0.583302,0.291655,0.0641904,0.934387,0.617958,0.158993,0.730444,0.488654,0.748233,0.126902,0.544351,0.438247,0.0675809,0.20826,0.523904,0.101578,0.600384,0.970272,0.583929,0.168877,0.736935,0.365578,0.137911,0.563928,0.195069,0.189002,0.853353,0.0113586,0.64737,0.403862,0.167772,0.118272,0.905489,0.4379,0.335252,0.836117,0.435962,0.69464,0.686206,0.766397,0.71321,0.0811906,0.757414,0.968399,0.26227,0.99124,0.710143,0.0166327,0.721255,0.846878,0.450997,0.594383,0.765826,0.166651,0.582493,0.519883,0.988983,0.813106,0.000695288,0.259128,0.145497,0.990161,0.952868,0.717418,0.464949,0.450183,0.867774,0.0215216,0.994167,0.937408,0.0958602,0.826581,0.663085,0.0763164,0.317914,0.525878,0.597078,0.122528,0.36047,0.370792,0.073055,0.234087,0.459878,0.604958,0.652952,0.241818,0.895582,0.679601,0.215898,0.143284,0.875885,0.687943,0.990778,0.629249,0.793172,0.0463406,0.356794,0.62796,0.546655,0.584806,0.313057,0.485741,0.818234,0.526216,0.786656,0.770195,0.400731,0.144255,0.282952,0.243829,0.0694053,0.60199,0.591295,0.140302,0.0810538,0.339554,0.733081,0.924582,0.00974947,0.345135,0.608556,0.97409,0.600937,0.305856,0.0350645,0.44464,0.663978,0.150399,0.426776,0.920504,0.355969,0.623653,0.344424,0.269857,0.372647,0.290227,0.143615,0.379863,0.869053,0.388152,0.311621,0.558649,0.764552,0.430764,0.840257,0.763562,0.00570631,0.765266,0.887696,0.398613,0.898798,0.28616,0.596824,0.207064,0.181634,0.014269,0.0919679,0.961367,0.651476,0.451698,0.313225,0.208155,0.113722,0.42783,0.828424,0.474688,0.538829,0.496204,0.405224,0.973017,0.0952939,0.443277,0.720852,0.0228013,0.260872,0.305349,0.0890873,0.615634,0.103062,0.171874,0.859936,0.547029,0.705736,0.114787,0.671039,0.78699,0.0774293,0.91844,0.854585,0.976585,0.271494,0.111246,0.0190861,0.958943,0.698637,0.653677,0.193609,0.728438,0.102623,0.946254,0.615912,0.454701,0.854087,0.913391,0.204693,0.377779,0.755584,0.716109,0.132571,0.825186,0.0869521,0.435076,0.533737,0.281908,0.516275,0.786505,0.367787,0.853816,0.131868,0.775741,0.381636,0.552313,0.383534,0.527506,0.845904,0.508628,0.785521,0.594246,0.843058,0.72645,0.708562,0.376893,0.698888,0.431083,0.938635,0.171615,0.0890557,0.453887,0.934664,0.625254,0.649611,0.6346,0.892476,0.0583748,0.799513,0.984959,0.693818,0.340181,0.54945,0.667596,0.437555,0.184164,0.8046,0.134446,0.550347,0.104086,0.0353595,0.61136,0.764135,0.912975,0.285494,0.597587,0.421346,0.0375648,0.332076,0.0686051,0.541709,0.945677,0.37107,0.69959,0.529432,0.937355,0.0521194,0.564348,0.455041,0.402932,0.606692,0.670918,0.386278,0.728202,0.880535,0.316073,0.789611,0.213602,0.346662,0.209474,0.671954,0.135531,0.216496,0.725653,0.716137,0.842459,0.545518,0.534519,0.511853,0.427577,0.0777985,0.017961,0.454321,0.430602,0.955212,0.778853,0.910781,0.264756,0.035902,0.994617,0.372471,0.996042,0.0382658,0.601376,0.18148,0.840493,0.8446,0.219961,0.858322,0.630322,0.819054,0.0719544,0.50564,0.626115,0.611761,0.738681,0.100538,0.112807,0.0588406,0.315249,0.52804,0.658238,0.572743,0.109738,0.438596,0.189154,0.124242,0.0376749,0.975103,0.00788975,0.176831,0.719468,0.484161,0.0777245,0.145803,0.888033,0.280719,0.132035,0.0658192,0.372274,0.357219,0.881996,0.700924,0.359473,0.742787,0.0609773,0.524648,0.0929308,0.564061,0.502377,0.228466,0.407689,0.535728,0.270334,0.285433,0.725224,0.0779844,0.774832,0.207634,0.0934232,0.490936,0.401516,0.23883,0.258853,0.843913,0.115976,0.774939,0.644411,0.716386,0.891341,0.100276,0.0627427,0.65433,0.593869,0.767071,0.755084,0.906455,0.0356277,0.929112,0.283214,0.16553,0.359233,0.192027,0.92346,0.361413,0.306953,0.814093,0.699895,0.788919,0.0689281,0.945982,0.697156,0.319295,0.67492,0.186205,0.35195,0.369916,0.860392,0.456897,0.680157,0.651046,0.301463,0.98863,0.134558,0.223989,0.922868,0.774101,0.879194,0.0695364,0.333542,0.878823,0.147614,0.918506,0.000278771,0.569593,0.210114,0.603636,0.294123,0.313066,0.204321,0.919844,0.450908,0.310834,0.539653,0.0344247,0.698748,0.766641,0.166949,0.670033,0.962913,0.852843,0.735344,0.431077,0.102305,0.94338,0.439115,0.846395,0.719198,0.541273,0.190881,0.379668,0.840912,0.111433,0.625405,0.634455,0.847068,0.00386345,0.800546,0.884869,0.578457,0.489258,0.764567,0.866624,0.70405,0.405221,0.695545,0.986513,0.089959,0.643366,0.102331,0.660626,0.959476,0.988314,0.725391,0.821281,0.391691,0.176802,0.34215,0.800473,0.206511,0.87506,0.246914,0.678779,0.61969,0.860644,0.43296,0.36144,0.49958,0.150165,0.326452,0.354555,0.213737,0.01903,0.28856,0.0272338,0.956714,0.155433,0.856125,0.835952,0.846924,0.895516,0.243609,0.0729063,0.283967,0.930132,0.762908,0.190053,0.622568,0.0621303,0.571888,0.386034,0.741099,0.454083,0.183137,0.334285,0.124437,0.844963,0.041024,0.110432,0.880944,0.41307,0.994001,0.673128,0.484303,0.32708,0.299316,0.528326,0.391523,0.807889,0.0847483,0.96542,0.566001,0.792291,0.218252,0.141265,0.787788,0.625008,0.345713,0.216179,0.559761,0.39039,0.140956,0.981387,0.947205,0.974769,0.135245,0.803937,0.248868,0.0116187,0.473781,0.457154,0.321889,0.208967,0.263448,0.440697,0.872563,0.721586,0.919161,0.393546,0.937678,0.991077,0.262564,0.74743,0.290667,0.301039,0.923471,0.278904,0.779053,0.826086,0.950789,0.991183,0.301244,0.651968,0.656372,0.326144,0.52207,0.122954,0.971073,0.00691819,0.0549278,0.780489,0.559106,0.410118,0.469769,0.219872,0.576275,0.772878,0.847066,0.0963415,0.895087,0.15966,0.407108,0.179364,0.599565,0.866461,0.094615,0.658745,0.316477,0.890339,0.87597,0.310971,0.634959,0.671838,0.672298,0.150123,0.927043,0.483785,0.197469,0.268427,0.0043748,0.902453,0.947585,0.946962,0.463699,0.439265,0.294176,0.180599,0.0911804,0.239261,0.168832,0.121543,0.566876,0.850346,0.870034,0.890103,0.34212,0.148439,0.187068,0.754285,0.341974,0.842963,0.202595,0.131661,0.0348436,0.632919,0.678072,0.191542,0.803184,0.972411,0.120682,0.11519,0.116079,0.359242,0.160845,0.71841,0.407029,0.489328,0.399132,0.36663,0.770691,0.647399,0.323876,0.302387,0.0255392,0.0874423,0.962323,0.598692,0.467928,0.815643,0.853648,0.930649,0.0676216,0.417409,0.364061,0.554846,0.401195,0.494106,0.985563,0.9051,0.712241,0.148624,0.225835,0.00479686,0.122953,0.627733,0.0404806,0.573451,0.780705,0.633048,0.304188,0.854884,0.220941,0.292431,0.429906,0.672741,0.722359,0.357923,0.463581,0.82529,0.301838,0.301438,0.988578,0.342797,0.451209,0.760918,0.269109,0.429673,0.584123,0.815513,0.264643,0.663058,0.527404,0.51013,0.507862,0.162018,0.378741,0.147703,0.45111,0.317583,0.0166976,0.507362,0.979551,0.387754,0.662052,0.821344,0.706034,0.22852,0.144867,0.479009,0.84531,0.821642,0.742016,0.225088,0.539228,0.548669,0.269793,0.376732,0.883143,0.0978459,0.434404,0.206212,0.566991,0.73415,0.761135,0.992506,0.267515,0.150776,0.987111,0.838804,0.598261,0.823542,0.65677,0.0529775,0.770864,0.26608,0.588408,0.429349,0.252205,0.72775,0.456388,0.122724,0.984366,0.598245,0.994233,0.356889,0.329778,0.0956011,0.81296,0.817898,0.138928,0.519269,0.741951,0.433751,0.870245,0.0407099,0.00604188,0.335933,0.317951,0.520957,0.646442,0.0790634,0.34222,0.190316,0.813928,0.477983,0.631544,0.0890769,0.19482,0.701932,0.505413,0.682526,0.548753,0.925963,0.112136,0.455395,0.0544615,0.657375,0.0843351,0.619259,0.510369,0.899311,0.699727,0.721515,0.152805,0.442867,0.644487,0.927811,0.0841246,0.242849,0.31539,0.282858,0.311128,0.425062,0.323814,0.10652,0.839616,0.506175,0.142123,0.350927,0.483175,0.803834,0.663727,0.536163,0.397866,0.294454,0.597357,0.37074,0.812688,0.848125,0.692286,0.490338,0.129757,0.600811,0.245018,0.977806,0.572171,0.512409,0.321176,0.377391,0.0882971,0.356523,0.778183,0.908408,0.647086,0.976268,0.398691,0.569392,0.626793,0.445229,0.094058,0.481043,0.468755,0.838726,0.936509,0.231466,0.305218,0.654018,0.390125,0.107356,0.429651,0.318284,0.855574,0.25446,0.662388,0.915974,0.187873,0.033741,0.225185,0.053362,0.696614,0.770221,0.451731,0.103247,0.0549496,0.24522,0.880155,0.429104,0.78197,0.966463,0.016022,0.369935,0.291336,0.0491167,0.734363,0.700098,0.185914,|0.077957,0.532286,0.554841,0.876675,0.299638,0.933547,0.148894,0.604505,0.902746,0.665167,0.880329,0.638447,0.69124,0.815007,0.836024,0.239129,0.99013,0.562425,0.969736,0.0284396,0.345354,0.519233,0.653157,0.289446,0.284061,0.541296,0.864384,0.471517,0.785618,0.331628,0.999184,0.777093,0.0525663,0.512977,0.796059,0.376049,0.755692,0.491248,0.386472,0.246515,0.510924,0.683931,0.316741,0.0682611,0.00614619,0.107226,0.68879,0.519497,0.742995,0.696321,0.522201,0.269913,0.111519,0.189154,0.522423,0.847692,0.76122,0.398257,0.194651,0.681459,0.66592,0.658942,0.604687,0.360783,0.278905,0.275694,0.476647,0.346083,0.966893,0.876318,0.110563,0.240968,0.46028,0.0460954,0.336421,0.250579,0.775387,0.103563,0.0422553,0.330911,0.619664,0.998549,0.923491,0.120502,0.611715,0.978771,0.0804719,0.0326536,0.22724,0.0972283,0.610611,0.320657,0.910301,0.313771,0.0701734,0.771375,0.835376,0.419017,0.590697,0.635839,0.575448,0.460792,0.181352,0.673851,0.421264,0.0141321,0.831121,0.779832,0.583034,0.287098,0.101683,0.511988,0.534222,0.443783,0.0329111,0.593783,0.951125,0.0533397,0.269673,0.759539,0.835181,0.457604,0.441063,0.98834,0.160763,0.507681,0.292825,0.00323421,0.915867,0.746414,0.0483503,0.392929,0.829142,0.756188,0.967312,0.673915,0.76851,0.339149,0.63684,0.860133,0.861468,0.96209,0.91166,0.511054,0.486802,0.371386,0.713999,0.756826,0.909471,0.788663,0.10968,0.130506,0.459707,0.421489,0.352886,0.372948,0.973054,0.0698666,0.28116,0.619714,0.385147,0.270529,0.596685,0.634755,0.469355,0.373022,0.496882,0.0476898,0.980706,0.00375819,0.503335,0.0208261,0.742396,0.620639,0.126074,0.576082,0.796049,0.0782018,0.781348,0.214591,0.443725,0.132583,0.170891,0.74615,0.221911,0.0637311,0.906978,0.798841,0.0806296,0.774284,0.847455,0.417081,0.0376989,0.146194,0.707168,0.15125,0.185712,0.0279198,0.957651,0.27967,0.729717,0.874767,0.51813,0.712429,0.590464,0.397852,0.390195,0.670715,0.0531462,0.485072,0.580379,0.261161,0.149357,0.078257,0.0373723,0.265259,0.243745,0.82707,0.838993,0.562124,0.172963,0.785231,0.575419,0.240264,0.938309,0.970427,0.90281,0.285464,0.736213,0.27898,0.166521,0.666604,0.743891,0.34748,0.0528713,0.490407,0.38631,0.0896325,0.801079,0.383168,0.31077,0.113449,0.379378,0.688892,0.805103,0.231016,0.861072,0.779755,0.188895,0.893351,0.202308,0.852778,0.266958,0.393486,0.273421,0.0592554,0.132309,0.332751,0.145453,0.0163336,0.650387,0.274056,0.0115827,0.847678,0.428134,0.992108,0.678556,0.400283,0.871727,0.293624,0.364085,0.734432,0.953608,0.962155,0.389008,0.663836,0.977455,0.209487,0.05453,0.369485,0.864074,0.0602849,0.0456045,0.113244,0.659323,0.132892,0.342428,0.433293,0.406985,0.604018,0.0704038,0.666987,0.0686318,0.883725,0.52539,0.549406,0.218568,0.933693,0.401301,0.273609,0.730463,0.293035,0.69909,0.615997,0.111952,0.0449685,0.696654,0.183878,0.198652,0.397958,0.532825,0.969012,0.404101,0.622976,0.371588,0.366084,0.18587,0.764992,0.577865,0.26535,0.84231,0.00688285,0.563796,0.390326,0.890551,0.191445,0.361837,0.520374,0.754707,0.436608,0.388955,0.77712,0.37878,0.0977368,0.249595,0.942447,0.0234957,0.591573,0.667083,0.818672,0.382581,0.577322,0.329427,0.858407,0.0795873,0.904291,0.505058,0.280565,0.791767,0.964676,0.986304,0.738141,0.853074,0.999111,0.194052,0.00178862,0.258167,0.791361,0.021346,0.0918661,0.0437923,0.624223,0.672594,0.875861,0.512923,0.688975,0.554214,0.89838,0.359061,0.9909,0.491138,0.216214,0.831514,0.222226,0.104061,0.263412,0.509345,0.47732,0.291762,0.373311,0.638384,0.236697,0.16175,0.455946,0.778381,0.4654,0.26758,0.539753,0.0852368,0.960685,0.194233,0.225253,0.589498,0.266394,0.443231,0.123015,0.816121,0.73848,0.179882,0.584686,0.631427,0.820761,0.0794803,0.620575,0.386591,0.444708,0.39338,0.0200904,0.94308,0.0531727,0.610426,0.88151,0.363847,0.0267146,0.609944,0.501152,0.334218,0.808657,0.332868,0.104954,0.890744,0.8672,0.912527,0.0863424,0.422168,0.657114,0.750853,0.109976,0.951368,0.971538,0.945163,0.0793139,0.119281,0.0884352,0.237259,0.343458,0.310924,0.876345,0.894856,0.807282,0.855058,0.375184,0.1462,0.581677,0.903874,0.325912,0.631781,0.551146,0.0399687,0.800633,0.156628,0.283516,0.18958,0.759883,0.997909,0.837438,0.0960773,0.666875,0.942958,0.556372,0.679696,0.595611,0.232781,0.210403,0.824989,0.995636,0.791447,0.317685,0.52504,0.989542,0.466883,0.86708,0.13871,0.0332981,0.0583835,0.2577,0.163254,0.00386328,0.962265,0.198022,0.781898,0.284538,0.98236,0.430646,0.324229,0.719707,0.213119,0.0118018,0.808676,0.201013,0.128697,0.337676,0.154251,0.902597,0.783737,0.526218,0.702715,0.804483,0.251215,0.654458,0.845861,0.0267469,0.039736,0.372387,0.105875,0.902969,0.641038,0.0600626,0.499476,0.463262,0.084244,0.0677435,0.0562999,0.726784,0.00589865,0.628636,0.485363,0.700117,0.028044,0.173135,0.643664,0.183682,0.199382,0.174918,0.811535,0.941567,0.0487323,0.99454,0.219277,0.235153,0.551408,0.686161,0.39276,0.589185,0.0574228,0.240515,0.284765,0.952549,0.484873,0.183338,0.161588,0.905467,0.441748,0.543657,0.599516,0.234349,0.149331,0.987212,0.0188032,0.101978,0.107644,0.0220418,0.726921,0.183289,0.397992,0.986447,0.518065,0.842401,0.535891,0.810621,0.705605,0.695401,0.0130059,0.85195,0.72034,0.672151,0.976796,0.714805,0.87269,0.746007,0.901367,0.361306,0.226757,0.268423,0.548933,0.6442,0.600363,0.0785051,0.948206,0.809846,0.858508,0.00267845,0.81039,0.548021,0.397722,0.793649,0.0329595,0.0123561,0.819953,0.0482923,0.180679,0.844434,0.972749,0.147042,0.17384,0.773394,0.424354,0.640162,0.259371,0.281014,0.540233,0.770971,0.979566,0.789726,0.156489,0.0934211,0.0577921,0.683184,0.765766,0.506644,0.989235,0.77353,0.504987,0.0467776,0.473402,0.191828,0.889867,0.0839819,0.903885,0.784019,0.0127404,0.72957,0.697193,0.161641,0.751939,0.592155,0.542833,0.646872,0.278101,0.170085,0.51953,0.343196,0.515141,0.841888,0.461533,0.843953,0.816324,0.171744,0.632875,0.432583,0.0376702,0.0514752,0.235063,0.882707,0.152184,0.410591,0.107228,0.59987,0.445316,0.0747405,0.582892,0.505534,0.719144,0.0449185,0.0173705,0.614385,0.407832,0.387342,0.398082,0.277336,0.810422,0.416272,0.384804,0.270828,0.947573,0.0101417,0.930709,0.594254,0.673646,0.0192783,0.353817,0.211962,0.89197,0.448369,0.365216,0.615494,0.557476,0.994676,0.410385,0.499902,0.286439,0.144564,0.527498,0.221682,0.991189,0.765723,0.667849,0.544225,0.271281,0.535309,0.728487,0.436984,0.448833,0.0714459,0.936203,0.874233,0.360099,0.978206,0.196723,0.767625,0.925061,0.609184,0.949673,0.511516,0.48281,0.968365,0.308916,0.136192,0.776469,0.650516,0.694443,0.942602,0.920258,0.886482,0.51845,0.0834572,0.632313,0.0720267,0.80611,0.873913,0.978434,0.831772,0.291687,0.633403,0.550597,0.838265,0.229823,0.796989,0.787198,0.381839,0.110174,0.147061,0.91928,0.713872,0.79485,0.563587,0.335383,0.0644761,0.754659,0.612351,0.322304,0.195238,0.212902,0.275787,0.428891,0.0664507,0.527297,0.248326,0.591139,0.955929,0.918102,0.919833,0.485655,0.681403,0.901282,0.660923,0.341528,0.301175,0.768714,0.0313212,0.202955,0.911141,0.131598,0.00882274,0.159879,0.953379,0.824264,0.152419,0.862561,0.094813,0.0498787,0.978483,0.286022,0.468361,0.245015,0.0734389,0.523271,0.928886,0.922925,0.565191,0.597504,0.22179,0.855587,0.733473,0.679227,0.192098,0.559462,0.89035,0.743565,0.841349,0.465686,0.810209,0.33155,0.204669,0.625906,0.458568,0.431433,0.823406,0.241458,0.580032,0.199579,0.0950391,0.526567,0.6827,0.473772,0.832839,0.341698,0.194863,0.394911,0.572691,0.681038,0.638002,0.750587,0.671758,0.767909,0.988626,0.156844,0.894811,0.233089,0.509839,0.499275,0.864182,0.975883,0.141718,0.156922,0.322103,0.767571,0.803007,0.678975,0.971267,0.611512,0.685963,0.982359,0.249295,0.0222267,0.123024,0.341305,0.0621,0.937656,0.0913031,0.376708,0.918944,0.765463,0.193035,0.707371,0.00011456,0.560147,0.61855,0.0669168,0.723466,0.631258,0.0222345,0.57691,0.651706,0.637411,0.662896,0.832893,0.503959,0.527164,0.276003,0.906412,0.476232,0.620821,0.597191,0.971876,0.553749,0.517676,0.767104,0.902539,0.264667,0.860656,0.620905,0.510951,0.46039,0.199362,0.0926988,0.750139,0.975453,0.255135,0.857798,0.328231,0.798483,0.541863,0.397395,0.442516,0.89903,0.77763,0.359477,0.0903055,0.44967,0.00997734,0.92521,0.144715,0.1431,0.0952517,0.44023,0.301633,0.378706,0.481951,0.668143,0.179289,0.347417,0.795567,0.396762,0.75761,0.449678,0.851611,0.371268,0.373733,0.11677,0.968353,0.755605,0.83148,0.859422,0.531977,0.778376,0.467885,0.867872,0.773049,0.814007,0.240126,0.442234,0.463711,0.590384,0.583577,0.869437,0.342997,0.178149,0.838794,0.260254,0.649381,0.812205,0.995885,0.438553,0.92941,0.340877,0.662669,0.597915,0.0341015,0.2444,0.881154,0.86732,0.0108965,0.284806,0.473959,0.430849,0.25177,0.536058,0.955182,0.13953,0.359253,0.642391,0.260737,0.807082,0.815813,0.0944996,0.914866,0.754773,0.78032,0.352728,0.376816,0.605161,0.809329,0.291499,0.826619,0.0497388,0.876375,0.545352,0.159845,0.945995,0.122294,0.413898,0.855046,0.191127,0.830417,0.232072,0.576664,0.0565199,0.970286,0.113671,0.885983,0.556042,0.388422,0.841017,0.520105,0.980738,0.306413,0.167122,0.116276,0.438714,0.239005,0.976932,0.584093,0.836712,0.430444,0.434993,0.149396,0.646851,0.482117,0.0418151,|0.38523,0.418489,0.295707,0.771449,0.376827,0.44839,0.796609,0.633692,0.546354,0.000490963,0.621498,0.229322,0.0857717,0.759335,0.862522,0.597069,0.0104308,0.854456,0.439534,0.428466,0.0485148,0.0902088,0.070945,0.813469,0.122102,0.832,0.608987,0.604126,0.831319,0.588554,0.10605,0.913301,0.275112,0.533754,0.777011,0.050448,0.966046,0.216216,0.0556011,0.666187,0.345861,0.964794,0.738562,0.667638,0.464361,0.00995767,0.159012,0.292297,0.419875,0.325822,0.151144,0.600823,0.259782,0.430372,0.670319,0.433749,0.733787,0.997133,0.954669,0.284991,0.451959,0.366308,0.201044,0.979372,0.202813,0.706792,0.198096,0.780144,0.179227,0.919418,0.896798,0.711378,0.276271,0.680471,0.520922,0.860905,0.0453749,0.168812,0.623917,0.0948997,0.495642,0.70675,0.441445,0.637194,0.441934,0.531459,0.743506,0.137522,0.684199,0.61538,0.047245,0.333534,0.921775,0.586387,0.687424,0.829409,0.315848,0.250825,0.0179722,0.961855,0.83577,0.928009,0.978366,0.958151,0.570726,0.917701,0.80548,0.591967,0.493734,0.933158,0.689063,0.0110433,0.643271,0.276665,0.197825,0.758063,0.732167,0.904764,0.407272,0.427739,0.634592,0.0237942,0.402412,0.869475,0.68775,0.800108,0.429482,0.0098055,0.891617,0.203556,0.152718,0.547711,0.163868,0.138874,0.582625,0.326513,0.224761,0.47106,0.114907,0.52084,0.627351,0.77276,0.658448,0.736603,0.247087,0.319695,0.105868,0.983906,0.339079,0.58807,0.988639,0.974543,0.937125,0.0573125,0.658205,0.578165,0.756887,0.572678,0.995202,0.0264904,0.176106,0.582138,0.181936,0.899165,0.0906145,0.374189,0.818112,0.597777,0.870206,0.674479,0.423259,0.340955,0.886093,0.684416,0.391332,0.314586,0.303163,0.971554,0.937838,0.462482,0.91925,0.13789,0.483134,0.51931,0.810624,0.37443,0.627071,0.557971,0.221388,0.0737816,0.482543,0.759785,0.592432,0.796785,0.263819,0.237266,0.665414,0.811868,0.895426,0.603164,0.59024,0.311649,0.709683,0.619523,0.516824,0.127716,0.102535,0.470607,0.916201,0.630531,0.339375,0.884472,0.203495,0.328389,0.0275742,0.903069,0.335643,0.527117,0.366442,0.967136,0.0518408,0.166108,0.708523,0.385342,0.753679,0.845273,0.382732,0.385198,0.650856,0.281408,0.741288,0.705788,0.362049,0.417991,0.453473,0.726461,0.453882,0.886854,0.817774,0.137498,0.530506,0.517071,0.554569,0.910022,0.690618,0.77767,0.976395,0.463077,0.864309,0.379264,0.42711,0.65756,0.275436,0.149092,0.887069,0.629636,0.566616,0.327599,0.793036,0.509893,0.946165,0.438746,0.998162,0.388676,0.454397,0.982942,0.590812,0.805677,0.0856292,0.546852,0.719913,0.0455874,0.0513474,0.613976,0.00861114,0.921044,0.499867,0.841324,0.917611,0.785805,0.460154,0.258777,0.368546,0.890232,0.646393,0.656926,0.448228,0.647287,0.261241,0.773796,0.405969,0.135291,0.811263,0.185171,0.78932,0.290605,0.802286,0.2489,0.51493,0.00579488,0.0714881,0.366333,0.798281,0.193397,0.938432,0.518815,0.909297,0.73771,0.1926,0.00199986,0.349111,0.665989,0.763936,0.128424,0.984877,0.96286,0.906843,0.0980968,0.155736,0.369151,0.155726,0.309778,0.526118,0.871638,0.0187355,0.324345,0.358029,0.436078,0.387128,0.380085,0.846776,0.934359,0.535203,0.784696,0.306595,0.850833,0.734435,0.317555,0.835099,0.772181,0.51718,0.558551,0.603165,0.316992,0.382526,0.0156746,0.700002,0.361231,0.347336,0.423024,0.849028,0.40267,0.198667,0.551748,0.835155,0.393403,0.910448,0.519502,0.101582,0.200799,0.521682,0.684359,0.128093,0.128272,0.0417861,0.601141,0.23681,0.463478,0.806268,0.0791607,0.596499,0.762105,0.417506,0.0402841,0.498485,0.656967,0.690027,0.213149,0.502843,0.971096,0.351187,0.356304,0.844528,0.568829,0.706756,0.968391,0.86706,0.00232381,0.402122,0.4497,0.537262,0.660116,0.693279,0.764713,0.235564,0.389943,0.631158,0.826424,0.99473,0.762243,0.106316,0.788249,0.0239254,0.36806,0.334478,0.714492,0.383567,0.519703,0.868257,0.880204,0.653515,0.991287,0.847423,0.525046,0.693544,0.304539,0.6272,0.576717,0.441956,0.660916,0.435711,0.0587249,0.743559,0.0543178,0.208676,0.720839,0.513026,0.729945,0.55577,0.919415,0.0200738,0.455884,0.46266,0.365351,0.850148,0.125573,0.302006,0.770121,0.759762,0.99878,0.54187,0.0569065,0.697714,0.506877,0.691419,0.124059,0.825056,0.228457,0.0137581,0.743234,0.271341,0.101348,0.314032,0.526106,0.19182,0.552785,0.441437,0.743228,0.724359,0.831159,0.932391,0.829412,0.714779,0.116342,0.510879,0.608676,0.198641,0.725632,0.292068,0.913053,0.599533,0.533226,0.0475672,0.531564,0.0455369,0.78453,0.667993,0.538222,0.853066,0.344065,0.232923,0.903147,0.356479,0.0923844,0.336969,0.538204,0.516836,0.887944,0.0941866,0.208314,0.707623,0.713846,0.663704,0.200013,0.373361,0.0463399,0.486645,0.58528,0.393998,0.28926,0.56252,0.918266,0.891889,0.184938,0.0572613,0.242401,0.689819,0.745305,0.886184,0.917325,0.321388,0.474134,0.485964,0.351725,0.474629,0.638279,0.0752853,0.429938,0.758838,0.513007,0.202541,0.134191,0.621734,0.69324,0.365749,0.198767,0.551894,0.259124,0.195351,0.47307,0.720125,0.238898,0.40096,0.116098,0.347304,0.12271,0.0598187,0.580947,0.289278,0.60655,0.975777,0.286258,0.595196,0.260886,0.923931,0.608067,0.50108,0.795378,0.652208,0.48561,0.823701,0.765165,0.831176,0.875762,0.709827,0.767763,0.412529,0.160333,0.062642,0.146075,0.807927,0.771914,0.225248,0.945353,0.408968,0.715927,0.777707,0.793125,0.986104,0.26867,0.610015,0.50988,0.744745,0.464874,0.55383,0.739927,0.438427,0.860367,0.908913,0.925575,0.199063,0.854559,0.422663,0.329995,0.19376,0.479926,0.135702,0.958706,0.48956,0.0136575,0.101172,0.247605,0.193088,0.691903,0.913401,0.0332506,0.347522,0.816208,0.638465,0.281804,0.0283282,0.501869,0.225251,0.403392,0.664601,0.433778,0.0327826,0.823845,0.162221,0.353267,0.646454,0.110627,0.595449,0.548726,0.586468,0.660961,0.0126792,0.576238,0.9642,0.608556,0.894202,0.983415,0.877917,0.761926,0.681202,0.200638,0.949973,0.0913466,0.417712,0.366649,0.584163,0.024609,0.733775,0.207923,0.701417,0.909202,0.233828,0.540144,0.701505,0.0657623,0.249557,0.106264,0.136907,0.214045,0.838787,0.0518384,0.0136976,0.0649399,0.179556,0.572817,0.430156,0.300615,0.63332,0.192416,0.665079,0.997122,0.933934,0.0945561,0.41607,0.829341,0.784392,0.835941,0.702034,0.302868,0.186292,0.808281,0.678559,0.963732,0.552113,0.0797291,0.0138105,0.482909,0.676218,0.495484,0.885245,0.272992,0.664316,0.538029,0.677514,0.39835,0.207197,0.904085,0.952006,0.814289,0.835096,0.332818,0.310442,0.0700939,0.0903943,0.690444,0.866221,0.88332,0.562808,0.240102,0.988433,0.247907,0.805151,0.0326689,0.166683,0.434661,0.962874,0.309223,0.366648,0.528588,0.944525,0.590115,0.284382,0.505227,0.817757,0.222486,0.374046,0.364361,0.224891,0.434872,0.388409,0.863573,0.850691,0.986364,0.444988,0.0933978,0.48417,0.687949,0.509116,0.0149646,0.824342,0.325849,0.365578,0.269539,0.465684,0.602426,0.853321,0.879589,0.947753,0.979156,0.363423,0.459222,0.802159,0.872769,0.776155,0.120272,0.204127,0.0558076,0.006392,0.559195,0.945642,0.998552,0.445516,0.41486,0.27027,0.773551,0.420882,0.499995,0.877522,0.613078,0.7729,0.442345,0.314941,0.406717,0.64231,0.577363,0.894153,0.193694,0.865168,0.375416,0.456061,0.302858,0.681868,0.810201,0.506878,0.456606,0.0896373,0.295283,0.758345,0.375498,0.731608,0.815758,0.971644,0.746055,0.629475,0.79283,0.346525,0.705208,0.833699,0.0757499,0.0287958,0.481193,0.702323,0.713717,0.359116,0.0882163,0.304672,0.830986,0.032899,0.489449,0.472453,0.105425,0.492951,0.863391,0.428323,0.992425,0.686586,0.721726,0.884955,0.703553,0.959221,0.37011,0.306706,0.731066,0.255556,0.832556,0.523229,0.411211,0.203119,0.582866,0.575562,0.686733,0.678568,0.220628,0.591778,0.157078,0.164031,0.348484,0.385731,0.56378,0.516006,0.634602,0.457355,0.535082,0.73805,0.623384,0.284439,0.96345,0.528814,0.4677,0.241593,0.864191,0.197669,0.419077,0.0896505,0.631182,0.587314,0.166679,0.571636,0.0246867,0.654926,0.916674,0.17899,0.660545,0.0446679,0.867757,0.54305,0.000142574,0.31493,0.423527,0.73656,0.965266,0.767543,0.807813,0.83758,0.105043,0.616688,0.961819,0.215277,0.411908,0.714195,0.310664,0.767615,0.214426,0.669482,0.104736,0.874174,0.0960405,0.340117,0.286287,0.223572,0.404295,0.486855,0.0195217,0.7284,0.306741,0.124066,0.02007,0.10528,0.822677,0.362389,0.577691,0.240382,0.218375,0.815417,0.58431,0.340601,0.999631,0.493417,0.232115,0.079796,0.977428,0.3869,0.732071,0.0674369,0.873535,0.650139,0.844244,0.927137,0.872,0.412228,0.878395,0.554634,0.646161,0.06595,0.844195,0.808098,0.449328,0.0697998,0.774981,0.384134,0.00906807,0.846984,0.856884,0.397577,0.894612,0.870092,0.145883,0.268268,0.00849468,0.174971,0.52185,0.489806,0.341269,0.447662,0.485987,0.497299,0.193219,0.647876,0.595077,0.134104,0.174412,0.823303,0.941374,0.607391,0.137305,0.307994,0.223833,0.438045,0.459593,0.626056,0.598909,0.561958,0.140741,0.11428,0.988673,0.0403478,0.658397,0.940218,0.796688,0.885813,0.10602,0.585852,0.280331,0.666037,0.878988,0.553294,0.510574,0.76831,0.387101,0.550024,0.022339,0.738844,0.0347422,0.348428,0.805537,0.760759,0.221421,0.670721,0.188861,0.11466,0.349238,0.871536,0.930717,0.965877,0.320088,0.454606,0.907229,0.424559,0.269989,0.476447,0.989946,0.808254,0.733503,0.994347,0.267782,0.302909,0.542485,0.661544,0.837959,0.105162,0.0555826,0.413765,0.32835,0.238202,0.382123,|0.155357,0.302914,0.0672891,0.69937,0.731102,0.0696616,0.665042,0.765722,0.995156,0.585262,0.0073601,0.5081,0.760803,0.748888,0.811521,0.988389,0.434379,0.965931,0.52938,0.373554,0.024571,0.246979,0.13101,0.847977,0.38671,0.758125,0.569765,0.614206,0.508854,0.183759,0.269052,0.394776,0.499331,0.16138,0.329201,0.240005,0.755564,0.441518,0.555288,0.606327,0.144807,0.859563,0.745865,0.722889,0.625148,0.400356,0.0623142,0.019756,0.261667,0.594988,0.849497,0.586525,0.791831,0.784403,0.226886,0.409321,0.884703,0.18861,0.632603,0.800723,0.283774,0.595103,0.874797,0.990121,0.0806262,0.61864,0.0747787,0.801628,0.457882,0.39784,0.828107,0.478551,0.280148,0.482481,0.371362,0.261383,0.761904,0.298049,0.386877,0.453536,0.786566,0.780175,0.121504,0.19502,0.296144,0.350469,0.360364,0.429131,0.262969,0.354473,0.146728,0.876573,0.542383,0.547894,0.975236,0.658883,0.221646,0.679668,0.826808,0.642826,0.925298,0.560325,0.794385,0.916078,0.777826,0.795004,0.153896,0.0230321,0.736708,0.256225,0.667277,0.745693,0.974733,0.40439,0.197398,0.384967,0.490196,0.375746,0.168109,0.288449,0.422538,0.268202,0.707433,0.848813,0.870489,0.684751,0.921521,0.613711,0.680793,0.703133,0.774155,0.740216,0.666322,0.811709,0.680949,0.303501,0.447411,0.44147,0.660795,0.539164,0.148441,0.102024,0.0790365,0.349027,0.885323,0.463901,0.555847,0.609501,0.809422,0.186759,0.804394,0.452291,0.966723,0.2241,0.763786,0.33763,0.61286,0.761656,0.10145,0.558872,0.057394,0.684432,0.542912,0.0981953,0.202622,0.723595,0.435835,0.405129,0.566781,0.202287,0.346041,0.244779,0.832695,0.32887,0.444496,0.815949,0.347405,0.51566,0.0735613,0.591088,0.167015,0.693393,0.313461,0.698871,0.614637,0.252595,0.0483342,0.216737,0.96992,0.779327,0.625015,0.0579095,0.188076,0.802204,0.0519991,0.798449,0.968543,0.308973,0.547423,0.656304,0.559754,0.0690826,0.812924,0.659072,0.421551,0.594276,0.197108,0.384522,0.576483,0.48281,0.0311974,0.65418,0.848049,0.883646,0.30438,0.917584,0.825968,0.844219,0.580394,0.218692,0.260367,0.228323,0.708925,0.350932,0.0244887,0.402432,0.216287,0.403658,0.992998,0.790084,0.772648,0.245043,0.89305,0.622123,0.651274,0.113886,0.179059,0.705911,0.990844,0.232016,0.142834,0.562526,0.0691282,0.856293,0.547516,0.170926,0.311198,0.922734,0.776921,0.818402,0.215078,0.674589,0.830975,0.607795,0.297855,0.13261,0.131355,0.870978,0.0633552,0.928363,0.471965,0.611203,0.701491,0.627645,0.872951,0.450917,0.859622,0.306033,0.144851,0.737543,0.992795,0.785578,0.570713,0.502926,0.0244577,0.0546725,0.992123,0.694229,0.400646,0.682441,0.612145,0.841879,0.666509,0.931908,0.513115,0.933533,0.750745,0.711829,0.250527,0.310358,0.77966,0.511631,0.688295,0.916377,0.491953,0.217983,0.0720761,0.963625,0.689816,0.668194,0.909598,0.205219,0.583595,0.57847,0.637248,0.455664,0.289952,0.365414,0.0760355,0.819787,0.789914,0.131776,0.501303,0.640651,0.0696641,0.541348,0.433255,0.508117,0.142836,0.165344,0.995365,0.0255042,0.693649,0.877776,0.535028,0.301582,0.525414,0.744043,0.638573,0.93942,0.560107,0.360506,0.758792,0.469787,0.336294,0.345222,0.454813,0.880425,0.241373,0.893732,0.846125,0.0734899,0.586042,0.66542,0.86783,0.375316,0.115192,0.585223,0.372788,0.193023,0.181122,0.772569,0.467742,0.983084,0.725142,0.454908,0.609075,0.152822,0.837965,0.861263,0.0768138,0.611889,0.3133,0.13575,0.311543,0.289208,0.0702336,0.32034,0.935525,0.623108,0.778224,0.527102,0.79814,0.284093,0.475662,0.454622,0.809216,0.696261,0.411576,0.140589,0.824748,0.68825,0.977621,0.878744,0.678658,0.505949,0.79215,0.683521,0.79201,0.0456169,0.00592083,0.378036,0.940968,0.379691,0.804012,0.975274,0.259061,0.536426,0.99707,0.177579,0.933305,0.122491,0.58904,0.33717,0.750574,0.937826,0.163596,0.692001,0.409796,0.10185,0.11349,0.80705,0.0564453,0.627568,0.595378,0.0018549,0.389723,0.0190536,0.28755,0.911737,0.956479,0.879342,0.372939,0.0840735,0.931908,0.8053,0.458182,0.26313,0.895941,0.155814,0.149069,0.494458,0.101787,0.857641,0.956398,0.388985,0.487985,0.174737,0.285183,0.12248,0.710795,0.928058,0.653145,0.655631,0.0900289,0.346384,0.0302072,0.99411,0.557487,0.212569,0.47353,0.396912,0.950786,0.0820879,0.913301,0.19567,0.950151,0.668703,0.756842,0.42638,0.493704,0.836139,0.970057,0.86248,0.26818,0.684463,0.824876,0.907532,0.404884,0.322543,0.679596,0.560113,0.142457,0.0452568,0.785551,0.224582,0.218267,0.200913,0.478017,0.803564,0.664398,0.513172,0.168778,0.687344,0.886141,0.898867,0.0552819,0.705899,0.40811,0.77282,0.404723,0.901151,0.59294,0.792752,0.965304,0.826187,0.937921,0.647828,0.21474,0.033216,0.0287732,0.199487,0.13344,0.335057,0.23902,0.878093,0.25252,0.411099,0.462041,0.190738,0.224998,0.915725,0.760155,0.100536,0.229428,0.772604,0.290767,0.582374,0.0542322,0.153527,0.249822,0.98369,0.0545193,0.530783,0.586508,0.327789,0.921312,0.968148,0.0739714,0.888908,0.231268,0.438279,0.174666,0.409889,0.557747,0.00257915,0.311826,0.587436,0.0840469,0.00416362,0.363451,0.4117,0.892308,0.451613,0.655214,0.158041,0.25187,0.789114,0.0902579,0.0819274,0.305366,0.605946,0.60778,0.936217,0.206406,0.00130051,0.986091,0.019607,0.136581,0.99793,0.167861,0.195315,0.0970033,0.113637,0.330214,0.823806,0.0759758,0.221028,0.597554,0.908934,0.536579,0.989194,0.46199,0.956779,0.619604,0.684923,0.809905,0.518338,0.445513,0.532189,0.892819,0.884988,0.0861828,0.438556,0.678095,0.0697846,0.0209857,0.887742,0.508347,0.188768,0.500645,0.0356724,0.391572,0.264589,0.934885,0.520414,0.00694036,0.153025,0.398259,0.60219,0.466986,0.640671,0.438904,0.414346,0.50124,0.53982,0.814116,0.0190651,0.953713,0.458292,0.600628,0.48406,0.876588,0.960641,0.175011,0.715365,0.239276,0.648492,0.380574,0.0156554,0.00222421,0.523492,0.582726,0.410182,0.0690414,0.402803,0.381724,0.695625,0.865839,0.211945,0.490183,0.252097,0.467328,0.499072,0.180371,0.0221332,0.178129,0.199729,0.881913,0.79318,0.263048,0.44212,0.583336,0.485466,0.897071,0.947878,0.643217,0.393286,0.822982,0.730852,0.535029,0.323847,0.0553403,0.074631,0.283063,0.202288,0.810959,0.27631,0.489267,0.70791,0.534279,0.139312,0.769262,0.0713108,0.93211,0.363241,0.834695,0.919684,0.131317,0.777325,0.837287,0.0461628,0.977758,0.0172887,0.984138,0.410789,0.552891,0.111895,0.365587,0.861583,0.666873,0.139823,0.24373,0.442519,0.990771,0.898491,0.691319,0.300764,0.177118,0.0281922,0.444803,0.756673,0.0474507,0.103618,0.118961,0.88743,0.515045,0.904154,0.309575,0.283241,0.850255,0.7824,0.324693,0.0757858,0.690125,0.191806,0.781886,0.511974,0.475005,0.448502,0.915943,0.594439,0.458222,0.826831,0.142923,0.351084,0.991618,0.0814186,0.042141,0.414302,0.0118522,0.633573,0.81879,0.210811,0.792061,0.444446,0.206269,0.664579,0.253027,0.484514,0.256188,0.901665,0.956429,0.457463,0.873897,0.623068,0.499693,0.136958,0.6017,0.498478,0.0984372,0.763299,0.92105,0.711232,0.118013,0.553589,0.309768,0.840441,0.975861,0.495751,0.281089,0.351177,0.939241,0.932966,0.984744,0.52408,0.649496,0.172146,0.780915,0.222492,0.859126,0.832882,0.0691526,0.656949,0.451969,0.489568,0.0054388,0.420357,0.972078,0.363215,0.884127,0.275452,0.0896705,0.942723,0.438845,0.622948,0.804386,0.467588,0.80809,0.581056,0.749518,0.61272,0.821369,0.286579,0.478515,0.079636,0.150278,0.193968,0.82736,0.353609,0.972926,0.882495,0.951534,0.420112,0.703029,0.913985,0.343821,0.761267,0.768594,0.843907,0.116821,0.79482,0.474864,0.856416,0.205906,0.0149948,0.306587,0.289851,0.177622,0.333078,0.265945,0.203768,0.0957966,0.43161,0.305519,0.190371,0.921055,0.776785,0.347757,0.0351369,0.560427,0.827195,0.926955,0.624376,0.900983,0.168897,0.916974,0.941548,0.765817,0.518748,0.563892,0.557873,0.358298,0.420135,0.98872,0.12368,0.445391,0.366466,0.207067,0.388062,0.796562,0.26471,0.126725,0.887288,0.507738,0.00211668,0.550601,0.45945,0.0647732,0.917516,0.213919,0.902311,0.00670975,0.618217,0.609136,0.538094,0.458718,0.694761,0.680696,0.79774,0.349513,0.982632,0.315764,0.657132,0.889157,0.961494,0.324845,0.489551,0.0501926,0.911789,0.0394191,0.262571,0.126831,0.661512,0.657486,0.22601,0.973714,0.280156,0.258546,0.967609,0.631084,0.629786,0.881041,0.625186,0.588842,0.6635,0.534558,0.0873458,0.238262,0.00372612,0.0448488,0.856926,0.010722,0.745571,0.175207,0.587433,0.436703,0.974964,0.919928,0.718166,0.642407,0.617647,0.465585,0.735934,0.279772,0.157867,0.519459,0.734563,0.657672,0.0265479,0.525903,0.113578,0.46077,0.402296,0.361519,0.893124,0.631787,0.642983,0.661073,0.732974,0.0311368,0.625849,0.704631,0.361769,0.480213,0.821225,0.0483934,0.693599,0.813496,0.91162,0.22738,0.50923,0.290439,0.817701,0.90324,0.757979,0.698575,0.686005,0.624248,0.53436,0.632847,0.52345,0.575854,0.0741343,0.668816,0.27959,0.813406,0.577514,0.0431107,0.412403,0.488752,0.159138,0.542101,0.851905,0.146007,0.288658,0.913367,0.90182,0.545671,0.260822,0.413897,0.170876,0.132445,0.21623,0.729249,0.207453,0.382397,0.726518,0.146514,0.49877,0.94669,0.887544,0.337265,0.849492,0.829545,0.385972,0.101359,0.117983,0.201722,0.881099,0.331078,0.283913,0.965942,0.676465,0.683259,0.611841,0.761641,0.922877,0.152676,0.0161633,0.801774,0.364905,0.743498,0.658523,0.129704,0.354294,0.48797,0.839538,0.685926,0.762489,|0.727506,0.244197,0.013512,0.311429,0.90717,0.300726,0.151421,0.978689,0.584598,0.157354,0.112939,0.606472,0.172756,0.332485,0.289034,0.16238,0.49887,0.580385,0.736504,0.534703,0.11655,0.672208,0.743583,0.309234,0.253346,0.0304098,0.876615,0.397081,0.981544,0.195164,0.168807,0.906337,0.305997,0.567415,0.183157,0.431304,0.0243832,0.851097,0.433021,0.742895,0.360777,0.00405914,0.586326,0.743576,0.528422,0.336496,0.313823,0.414614,0.128006,0.534588,0.785107,0.263373,0.0923052,0.0112957,0.69182,0.241373,0.505976,0.638099,0.390879,0.530516,0.714203,0.510851,0.847616,0.499944,0.172269,0.462834,0.618441,0.623465,0.0629874,0.290555,0.40801,0.0298774,0.463425,0.311028,0.0124164,0.717072,0.0266302,0.647086,0.998646,0.645689,0.142073,0.569734,0.684363,0.0928478,0.55639,0.16017,0.50774,0.265724,0.138136,0.76802,0.951647,0.263363,0.0344521,0.253492,0.0377331,0.929956,0.196648,0.88399,0.687848,0.143652,0.871625,0.774304,0.128172,0.825294,0.595512,0.188853,0.351743,0.676125,0.881621,0.535261,0.929649,0.335514,0.392962,0.873416,0.332399,0.978072,0.960874,0.858562,0.376778,0.567439,0.615064,0.605962,0.604742,0.575575,0.810002,0.334167,0.936066,0.351795,0.0812417,0.865787,0.330936,0.143374,0.731539,0.143832,0.811702,0.633095,0.19024,0.346998,0.173475,0.00655824,0.765843,0.417201,0.41042,0.0679271,0.315484,0.663548,0.143408,0.704244,0.0446177,0.25629,0.320795,0.59142,0.158945,0.32946,0.557244,0.699514,0.777442,0.0741119,0.918441,0.0521717,0.688123,0.381443,0.282698,0.0722884,0.966636,0.903096,0.176443,0.871603,0.777752,0.582512,0.198114,0.776728,0.285686,0.629058,0.495467,0.611781,0.329105,0.865156,0.391109,0.525368,0.0662137,0.295611,0.0826478,0.934419,0.770598,0.147563,0.583274,0.901417,0.853894,0.450327,0.84424,0.81803,0.484243,0.987218,0.365309,0.417761,0.926605,0.59065,0.243946,0.791779,0.543082,0.255119,0.405748,0.371728,0.559627,0.45808,0.585429,0.3992,0.636764,0.263846,0.732102,0.621104,0.060925,0.74709,0.549897,0.490626,0.770628,0.44561,0.864038,0.133298,0.145601,0.450451,0.0301236,0.138889,0.138513,0.585048,0.280923,0.576613,0.215764,0.28064,0.0627595,0.974173,0.620727,0.545924,0.536078,0.816505,0.851802,0.771439,0.812746,0.534971,0.0258491,0.742726,0.032311,0.96493,0.421396,0.845395,0.0652995,0.853833,0.488393,0.381259,0.353153,0.223703,0.669651,0.0689731,0.65243,0.391742,0.722347,0.955621,0.817227,0.189869,0.608142,0.827237,0.639577,0.147323,0.925831,0.408417,0.266427,0.950085,0.47178,0.90004,0.168942,0.226203,0.506039,0.391019,0.516931,0.876185,0.629336,0.0203455,0.486178,0.395751,0.805124,0.361048,0.573567,0.731645,0.35764,0.631326,0.865852,0.573778,0.310905,0.954158,0.637467,0.500803,0.922294,0.665233,0.307594,0.898222,0.751125,0.155001,0.847359,0.304847,0.439081,0.938777,0.372939,0.413254,0.838865,0.88143,0.268477,0.782346,0.904153,0.975935,0.590511,0.248243,0.864492,0.152943,0.519215,0.034368,0.537344,0.259834,0.0130481,0.126721,0.379966,0.0389305,0.17703,0.194932,0.38784,0.0570917,0.119337,0.0189699,0.409328,0.357663,0.427963,0.917229,0.292908,0.53049,0.500374,0.334126,0.942517,0.366084,0.977683,0.221795,0.547698,0.506325,0.973307,0.714762,0.900801,0.828514,0.268491,0.688328,0.0441811,0.296888,0.00908631,0.970479,0.14528,0.0266825,0.500102,0.52464,0.160037,0.218942,0.154436,0.0945864,0.847375,0.487831,0.728244,0.919923,0.802921,0.364005,0.240782,0.127056,0.00210261,0.97078,0.545071,0.78205,0.0263653,0.706797,0.0927423,0.123122,0.945329,0.51182,0.339839,0.694026,0.262725,0.344697,0.256024,0.106458,0.470124,0.0683497,0.43596,0.962341,0.314789,0.570377,0.981121,0.814864,0.695824,0.514043,0.173845,0.0701113,0.0617099,0.541263,0.743452,0.527535,0.439808,0.542701,0.420358,0.633993,0.684064,0.238544,0.850056,0.0564126,0.010975,0.60159,0.834392,0.907537,0.0750483,0.311765,0.824735,0.158133,0.948393,0.204053,0.183145,0.501884,0.497915,0.720834,0.745273,0.173596,0.399997,0.199724,0.797224,0.644396,0.829101,0.753162,0.186898,0.132282,0.369552,0.437216,0.195858,0.809214,0.680527,0.688424,0.294429,0.547544,0.426825,0.209934,0.279987,0.0501105,0.506906,0.357088,0.645889,0.55775,0.489546,0.335976,0.133518,0.797508,0.478723,0.929528,0.64729,0.367131,0.181318,0.632271,0.801692,0.734728,0.225556,0.918018,0.878933,0.195318,0.274507,0.588915,0.57131,0.0342163,0.521457,0.0277802,0.697236,0.150621,0.281098,0.418073,0.862682,0.329761,0.410621,0.166768,0.517516,0.243017,0.368719,0.956354,0.0157772,0.656862,0.612637,0.0304681,0.637075,0.441836,0.985042,0.00683761,0.644883,0.875169,0.227063,0.907835,0.875524,0.878883,0.760823,0.555399,0.223249,0.439845,0.568826,0.136924,0.175016,0.859402,0.604484,0.497343,0.206855,0.672077,0.991096,0.396147,0.0765564,0.389177,0.486951,0.590918,0.286256,0.378193,0.698325,0.0397928,0.530163,0.925049,0.041425,0.016961,0.818307,0.830852,0.984275,0.18653,0.818532,0.532811,0.591196,0.763467,0.729891,0.375794,0.751177,0.884294,0.994715,0.293285,0.964288,0.825565,0.478784,0.497365,0.0671652,0.812765,0.90614,0.390571,0.000369966,0.19154,0.77758,0.447197,0.130598,0.974358,0.1873,0.970347,0.980725,0.244789,0.0178232,0.527248,0.0458168,0.945605,0.712952,0.217269,0.249585,0.120294,0.701807,0.0628597,0.982147,0.914948,0.0388917,0.878953,0.0632609,0.698768,0.546071,0.5795,0.697687,0.0857821,0.721011,0.514261,0.806063,0.595609,0.657548,0.962244,0.771759,0.987892,0.397692,0.0497355,0.898666,0.398906,0.282774,0.889777,0.602116,0.406835,0.115863,0.67928,0.423415,0.834171,0.61134,0.121581,0.269641,0.18293,0.260656,0.502203,0.597084,0.679036,0.692711,0.301309,0.771998,0.660728,0.918542,0.314633,0.831637,0.809869,0.44951,0.899815,0.0469666,0.401937,0.643434,0.180823,0.450352,0.00935727,0.177436,0.161379,0.735386,0.187406,0.872079,0.773463,0.838442,0.933774,0.0956632,0.459112,0.346275,0.384956,0.0110471,0.845082,0.269539,0.623055,0.373385,0.920583,0.881764,0.587563,0.701574,0.57,0.65177,0.216797,0.599283,0.161249,0.67416,0.748598,0.677945,0.489086,0.137477,0.60161,0.657205,0.314386,0.522746,0.919905,0.902208,0.86739,0.855918,0.298618,0.281759,0.744104,0.913676,0.856335,0.711173,0.183349,0.395423,0.937022,0.265377,0.0218391,0.464756,0.976655,0.111134,0.326687,0.447271,0.338334,0.676556,0.590385,0.443746,0.319024,0.436316,0.665768,0.0326965,0.908446,0.288862,0.715063,0.1074,0.96854,0.329524,0.598386,0.247111,0.736149,0.638739,0.14237,0.56182,0.740485,0.00992793,0.0301984,0.0658883,0.338806,0.939628,0.774638,0.44076,0.69645,0.470556,0.167289,0.630825,0.967147,0.526116,0.711788,0.782132,0.143994,0.00637972,0.948008,0.523564,0.0203966,0.506016,0.0508146,0.648637,0.379703,0.447935,0.900049,0.301264,0.370802,0.760681,0.338592,0.136953,0.405883,0.44733,0.00392509,0.68585,0.174552,0.20544,0.937964,0.600185,0.592654,0.293114,0.577477,0.179262,0.893159,0.123509,0.0511699,0.879202,0.579237,0.257409,0.299051,0.908721,0.422145,0.0254713,0.283735,0.691972,0.672489,0.463885,0.523949,0.157737,0.511823,0.475434,0.516608,0.296397,0.0246691,0.826785,0.304308,0.254969,0.388339,0.559347,0.637962,0.559841,0.52375,0.0418096,0.947625,0.858178,0.759427,0.837229,0.0257686,0.103412,0.455893,0.313258,0.577403,0.624152,0.346492,0.896922,0.815113,0.968251,0.750702,0.445652,0.783869,0.0725104,0.426648,0.573644,0.242371,0.958889,0.398653,0.304035,0.382114,0.447481,0.910512,0.348747,0.236414,0.20526,0.0327809,0.16646,0.409747,0.232796,0.0120513,0.0350692,0.16892,0.133489,0.772653,0.705166,0.67066,0.983284,0.24998,0.307576,0.83005,0.131491,0.539597,0.0618044,0.271174,0.750914,0.0244818,0.471991,0.445578,0.139223,0.117691,0.595499,0.619214,0.827107,0.82967,0.796412,0.0712681,0.788927,0.293307,0.27714,0.503266,0.232189,0.159033,0.0141463,0.548208,0.989121,0.00516146,0.403704,0.00908113,0.771814,0.0776615,0.852516,0.22292,0.866662,0.297288,0.143773,0.461366,0.396815,0.10368,0.780396,0.0705307,0.973568,0.078778,0.816503,0.670982,0.70494,0.993546,0.117711,0.87319,0.975714,0.588946,0.0828595,0.395608,0.871247,0.507734,0.548747,0.0703784,0.222631,0.0474493,0.874073,0.237024,0.606947,0.377868,0.838432,0.776288,0.668611,0.808691,0.17388,0.205605,0.0573329,0.472504,0.560152,0.760605,0.487473,0.997012,0.417375,0.915646,0.177345,0.884125,0.94326,0.214786,0.0799025,0.892554,0.039776,0.20403,0.0847496,0.559858,0.937171,0.151631,0.205789,0.794177,0.393435,0.278552,0.248095,0.999317,0.987025,0.574008,0.0303322,0.10791,0.127896,0.228156,0.130919,0.0726689,0.942774,0.184654,0.0161591,0.10177,0.955485,0.844797,0.671559,0.0512365,0.242408,0.0436969,0.821459,0.0658026,0.340556,0.559567,0.58574,0.518813,0.187291,0.40517,0.126209,0.487335,0.57078,0.614487,0.0614547,0.976916,0.1015,0.707072,0.34117,0.219087,0.0745599,0.0554518,0.646036,0.64822,0.888177,0.436112,0.414483,0.0628894,0.960746,0.87381,0.724939,0.18076,0.92414,0.761413,0.639242,0.26389,0.771079,0.113891,0.812195,0.838257,0.922792,0.665534,0.230922,0.890454,0.734499,0.160232,0.461323,0.555508,0.231602,0.474257,0.64703,0.561899,0.78292,0.818519,0.624967,0.28961,0.317352,0.326043,0.746878,0.710782,0.29462,0.83081,0.0159171,0.998335,0.575136,0.341215,0.831505,0.27291,0.684986,0.152193,0.851282,0.436696,0.519062,0.097306,0.292365,0.885214,0.536256,0.851463,|0.691061,0.0217563,0.273946,0.697899,0.537265,0.923089,0.94237,0.96897,0.352758,0.0281609,0.0128003,0.804357,0.38483,0.889495,0.846876,0.505244,0.477562,0.174644,0.192851,0.0984229,0.925012,0.488386,0.0976351,0.478322,0.62497,0.288403,0.286622,0.916806,0.4878,0.451254,0.770781,0.181767,0.379653,0.164192,0.0212145,0.402608,0.29476,0.0292544,0.514084,0.153665,0.218812,0.283299,0.65642,0.119943,0.97976,0.994349,0.320268,0.335617,0.30033,0.867125,0.696452,0.661703,0.90471,0.489055,0.322707,0.796305,0.548758,0.650817,0.173477,0.765753,0.0173746,0.225313,0.555601,0.127095,0.176209,0.957809,0.192333,0.110955,0.555466,0.695146,0.258101,0.509018,0.526667,0.00850385,0.680952,0.108392,0.616731,0.539328,0.632461,0.0882007,0.0222702,0.738547,0.447591,0.78433,0.435106,0.922279,0.735222,0.731431,0.726968,0.337562,0.412969,0.533768,0.65841,0.161348,0.751086,0.0066967,0.63776,0.971852,0.665678,0.250926,0.0649443,0.448326,0.495323,0.700346,0.23673,0.569196,0.380399,0.0832525,0.596961,0.0431504,0.701837,0.0827292,0.899646,0.948745,0.29583,0.945856,0.0553054,0.555356,0.100383,0.974915,0.48293,0.68067,0.869681,0.243188,0.63476,0.760181,0.860941,0.54007,0.0469578,0.311328,0.50231,0.681908,0.197278,0.251359,0.527756,0.277748,0.041029,0.505705,0.0783384,0.717492,0.249856,0.5734,0.323897,0.834419,0.973554,0.428763,0.622999,0.652227,0.601351,0.137195,0.885168,0.271287,0.918039,0.0473521,0.536089,0.698483,0.144207,0.513663,0.482183,0.402448,0.515227,0.240573,0.459118,0.693783,0.0975533,0.189767,0.703187,0.336726,0.469828,0.709413,0.544209,0.176635,0.0379185,0.303513,0.867456,0.297344,0.417613,0.417477,0.145622,0.0567693,0.180535,0.0921574,0.996084,0.180725,0.587833,0.338714,0.474454,0.0200373,0.745908,0.856375,0.165552,0.421959,0.770903,0.00657225,0.701138,0.112115,0.076309,0.38142,0.361883,0.977196,0.529029,0.857005,0.650588,0.750008,0.42571,0.26212,0.600637,0.135661,0.29655,0.879268,0.589359,0.193951,0.330684,0.716769,0.0551622,0.17226,0.338097,0.595953,0.228876,0.0239496,0.448895,0.665771,0.554763,0.15601,0.457963,0.533201,0.770964,0.0287784,0.522701,0.228249,0.387391,0.121932,0.918282,0.555424,0.377205,0.920786,0.33934,0.0456983,0.633387,0.447772,0.338741,0.403363,0.994345,0.170275,0.349083,0.264127,0.65546,0.703418,0.162342,0.126,0.219228,0.899267,0.108249,0.0238471,0.444951,0.460728,0.926131,0.518302,0.0346435,0.888998,0.0401204,0.687462,0.879564,0.429006,0.464369,0.619019,0.558901,0.522378,0.0213688,0.284286,0.875151,0.613717,0.964454,0.743507,0.865617,0.186291,0.749975,0.570593,0.62347,0.36791,0.202474,0.56954,0.0405018,0.77657,0.615178,0.330561,0.71069,0.270259,0.81118,0.62495,0.109346,0.450812,0.304569,0.254392,0.491032,0.599159,0.586601,0.829146,0.116053,0.891723,0.888796,0.850586,0.395613,0.746997,0.613854,0.862477,0.608825,0.0955345,0.285491,0.82351,0.215432,0.00895596,0.983611,0.828407,0.722778,0.85454,0.763011,0.813835,0.2169,0.293333,0.618841,0.745874,0.273783,0.508388,0.415444,0.39266,0.291806,0.163673,0.995402,0.904355,0.46139,0.318991,0.898158,0.200024,0.743933,0.760321,0.437796,0.143454,0.193798,0.102921,0.161067,0.198752,0.639437,0.726093,0.771389,0.45291,0.958249,0.461733,0.39041,0.990338,0.711069,0.783505,0.493529,0.080066,0.377038,0.322136,0.652706,0.0509757,0.58213,0.942497,0.766727,0.152628,0.0619663,0.650627,0.911889,0.135652,0.323776,0.627372,0.81787,0.033284,0.103858,0.554336,0.771853,0.708721,0.921659,0.678648,0.570957,0.336593,0.795022,0.686921,0.931226,0.472201,0.337393,0.312686,0.235529,0.524414,0.329665,0.126386,0.194496,0.303771,0.255704,0.632848,0.146517,0.216943,0.98565,0.192392,0.919233,0.124939,0.822714,0.157731,0.794274,0.793785,0.370121,0.123551,0.018326,0.752727,0.141617,0.705065,0.302351,0.340698,0.608594,0.396751,0.148353,0.97749,0.168038,0.80959,0.990972,0.528894,0.739089,0.244783,0.638888,0.296486,0.543222,0.361404,0.823016,0.0845214,0.630974,0.846135,0.707601,0.593826,0.735527,0.837335,0.23795,0.157624,0.36621,0.81687,0.160623,0.216609,0.664744,0.567251,0.229918,0.987212,0.284264,0.644813,0.385149,0.993835,0.7263,0.606165,0.814561,0.18282,0.622004,0.896282,0.937737,0.976124,0.898761,0.391646,0.754594,0.343678,0.8987,0.765178,0.732685,0.596659,0.585048,0.786372,0.715927,0.12214,0.351195,0.168404,0.91331,0.82771,0.236291,0.801481,0.137426,0.704591,0.278974,0.582723,0.669722,0.769627,0.59804,0.609357,0.850183,0.604749,0.391597,0.289606,0.658822,0.99705,0.242326,0.661798,0.271789,0.0810245,0.505404,0.441519,0.0384697,0.696561,0.0991281,0.745327,0.0628908,0.0277105,0.990089,0.370388,0.149211,0.901836,0.800069,0.641574,0.796524,0.278603,0.211275,0.715702,0.675314,0.0489354,0.138655,0.0385216,0.781684,0.55688,0.0826297,0.371044,0.328172,0.606467,0.836312,0.452124,0.120995,0.410157,0.752573,0.475733,0.554387,0.407264,0.185771,0.127014,0.576446,0.960061,0.624322,0.749468,0.419979,0.7282,0.912441,0.881883,0.00749099,0.294241,0.86262,0.500117,0.295085,0.253873,0.171882,0.189248,0.0297531,0.639433,0.133758,0.898116,0.553416,0.277799,0.873316,0.326629,0.314089,0.801992,0.574767,0.0684372,0.739846,0.370308,0.0910897,0.890952,0.775327,0.932626,0.892912,0.502511,0.143682,0.842497,0.307821,0.0686336,0.13756,0.977029,0.734071,0.378758,0.360603,0.550142,0.2782,0.218798,0.588153,0.442816,0.494535,0.221201,0.608665,0.751365,0.973737,0.812555,0.798007,0.904033,0.482433,0.530052,0.563926,0.402213,0.927555,0.293547,0.0729537,0.367943,0.916349,0.98732,0.837609,0.79223,0.0684923,0.332362,0.721473,0.206667,0.868751,0.0890281,0.611594,0.627483,0.359598,0.289043,0.266115,0.182571,0.592166,0.556623,0.0416608,0.108755,0.708222,0.676951,0.17161,0.602569,0.590016,0.782304,0.204393,0.954898,0.619974,0.209367,0.068707,0.53822,0.332275,0.152309,0.37301,0.450318,0.000252187,0.284625,0.360838,0.259255,0.388008,0.492328,0.567141,0.139394,0.714984,0.505597,0.451225,0.565946,0.545336,0.854001,0.308806,0.238641,0.455521,0.59559,0.0185266,0.315835,0.0270751,0.144913,0.0820582,0.519184,0.231763,0.213402,0.158381,0.649826,0.874272,0.275434,0.281616,0.315145,0.356661,0.381253,0.892158,0.706338,0.260427,0.0203478,0.536534,0.955618,0.198102,0.00208187,0.330785,0.327098,0.443775,0.0374548,0.381548,0.987443,0.16261,0.729385,0.782679,0.972122,0.569922,0.718675,0.893833,0.421147,0.595073,0.591759,0.667346,0.640883,0.299302,0.383157,0.377304,0.977519,0.341609,0.915541,0.113896,0.671245,0.533026,0.403866,0.556913,0.451737,0.597148,0.183794,0.838293,0.296087,0.301875,0.62351,0.227914,0.156499,0.0290436,0.253735,0.248033,0.904913,0.638619,0.754358,0.225257,0.937271,0.0438237,0.350535,0.514456,0.921306,0.420174,0.142767,0.319176,0.837439,0.871753,0.596627,0.654098,0.729287,0.923184,0.00950295,0.539547,0.335784,0.000459373,0.613878,0.648214,0.913305,0.737244,0.107534,0.216458,0.086603,0.88092,0.496645,0.946886,0.333116,0.918673,0.542909,0.337568,0.682408,0.758593,0.939865,0.560686,0.545652,0.944006,0.91437,0.667745,0.699434,0.42139,0.396947,0.287941,0.213135,0.957958,0.281189,0.852014,0.483222,0.405937,0.726181,0.314994,0.945292,0.596208,0.45143,0.615982,0.881261,0.937549,0.566948,0.189157,0.159793,0.571619,0.725193,0.173412,0.39525,0.0231252,0.563749,0.644435,0.249714,0.522652,0.727054,0.424568,0.954125,0.341657,0.521115,0.0707348,0.400677,0.53207,0.706408,0.526551,0.745,0.954655,0.709493,0.74136,0.980697,0.731965,0.355869,0.174988,0.288799,0.476861,0.944565,0.616849,0.669916,0.691088,0.28115,0.785849,0.95095,0.14459,0.256328,0.0998778,0.839547,0.91082,0.541442,0.523952,0.199069,0.978917,0.602081,0.91342,0.957772,0.881948,0.865837,0.121835,0.266203,0.487877,0.466402,0.182697,0.413995,0.237733,0.714846,0.785788,0.0907547,0.331059,0.754908,0.427385,0.288525,0.424782,0.630956,0.214291,0.0288323,0.0972103,0.698754,0.153386,0.567334,0.95158,0.102021,0.542231,0.132293,0.899006,0.52574,0.406685,0.412404,0.302257,0.905531,0.918172,0.0652099,0.667596,0.127389,0.888794,0.304374,0.349602,0.956369,0.392424,0.813002,0.337538,0.713294,0.699796,0.793485,0.891301,0.159403,0.0607926,0.0215158,0.233015,0.440412,0.661562,0.916702,0.241514,0.991011,0.743347,0.384668,0.217131,0.471667,0.56886,0.16616,0.22681,0.550514,0.404804,0.190594,0.721249,0.378869,0.455416,0.101434,0.469341,0.581328,0.985857,0.623079,0.701286,0.928262,0.994773,0.203941,0.291554,0.520215,0.542455,0.980958,0.882192,0.91558,0.555833,0.825314,0.769371,0.0547033,0.675583,0.962171,0.538468,0.00784838,0.509935,0.0692554,0.495802,0.668104,0.119867,0.817371,0.331317,0.956452,0.0460406,0.920571,0.506334,0.0818582,0.636908,0.586664,0.677728,0.636546,0.878424,0.350399,0.892704,0.664239,0.0166531,0.00832862,0.477502,0.346075,0.381731,0.228645,0.640117,0.80322,0.834387,0.0112649,0.516488,0.333814,0.793322,0.898022,0.020651,0.262867,0.0187968,0.84487,0.833809,0.0519088,0.423282,0.393334,0.152334,0.92621,0.0592837,0.949489,0.948677,0.810651,0.91467,0.68114,0.644937,0.384917,0.869646,0.806253,0.880184,0.59888,0.838858,0.790568,0.907301,0.00712168,0.894963,0.530546,0.566476,0.603966,0.710605,0.296119,0.926967,0.961693,0.819166,0.00320911,0.258694,0.533066,0.416295,0.776052,0.568317,0.0230086,0.201823,0.492689,0.075578,0.821643,|0.676778,0.469818,0.430544,0.36082,0.716949,0.0720449,0.659771,0.920828,0.553482,0.0315893,0.661623,0.701039,0.523865,0.0803308,0.485301,0.564615,0.509175,0.484213,0.812419,0.93941,0.526771,0.516575,0.812515,0.199534,0.645056,0.9298,0.654548,0.0860056,0.0307517,0.384092,0.272694,0.769459,0.125505,0.66544,0.222766,0.749939,0.71106,0.480256,0.475619,0.0657951,0.28168,0.562819,0.465627,0.959442,0.0707527,0.715133,0.851016,0.170473,0.866572,0.139711,0.949125,0.662829,0.249148,0.810261,0.504937,0.167355,0.0112585,0.470928,0.139021,0.514939,0.670055,0.909061,0.07728,0.839653,0.352974,0.895196,0.44299,0.088837,0.112322,0.848274,0.21843,0.586431,0.841344,0.992967,0.184146,0.784945,0.750383,0.991924,0.00256884,0.296752,0.995027,0.191499,0.373583,0.947453,0.698977,0.102909,0.0262123,0.27512,0.626499,0.696591,0.645762,0.981616,0.217645,0.319965,0.120046,0.751003,0.203082,0.957455,0.717332,0.423513,0.159575,0.455041,0.554954,0.396091,0.806822,0.541578,0.221513,0.190516,0.746284,0.650585,0.445063,0.898137,0.337143,0.858858,0.383541,0.353498,0.656797,0.546469,0.657679,0.718131,0.735013,0.464857,0.833486,0.999509,0.0692098,0.53741,0.899171,0.569284,0.864075,0.109719,0.760267,0.147603,0.369777,0.829438,0.779809,0.126164,0.934722,0.39497,0.00962019,0.448654,0.639994,0.545582,0.170586,0.656417,0.545919,0.0219583,0.152709,0.907497,0.590655,0.878568,0.717111,0.0879987,0.501528,0.837154,0.0428758,0.706183,0.623691,0.869027,0.018632,0.74491,0.0964962,0.757163,0.794233,0.374099,0.593158,0.152218,0.101328,0.51139,0.453863,0.157851,0.732352,0.437145,0.163228,0.953211,0.642125,0.551989,0.391871,0.311449,0.512885,0.0961295,0.711512,0.0280692,0.864512,0.155302,0.370029,0.749223,0.759416,0.48875,0.431979,0.0431002,0.73946,0.171522,0.882912,0.349763,0.988864,0.867313,0.174334,0.511936,0.336897,0.913045,0.59013,0.983737,0.61932,0.0358,0.0442337,0.666313,0.541012,0.872657,0.974966,0.362512,0.0751006,0.000825524,0.204301,0.0956445,0.955905,0.92912,0.991443,0.757356,0.601926,0.953497,0.998627,0.256256,0.495683,0.588597,0.118924,0.913849,0.355552,0.537953,0.682647,0.474532,0.59645,0.78623,0.110632,0.536381,0.481581,0.409941,0.332345,0.429084,0.0943407,0.659769,0.171702,0.490031,0.140779,0.379547,0.785685,0.384383,0.437482,0.0934091,0.00588208,0.843128,0.990165,0.624039,0.00627458,0.769062,0.610423,0.592897,0.0596855,0.101744,0.028281,0.285069,0.674085,0.251739,0.766544,0.233681,0.27604,0.0403312,0.0336896,0.894234,0.507621,0.286547,0.978952,0.0358426,0.988247,0.144903,0.210067,0.633075,0.686726,0.883745,0.796622,0.623556,0.41824,0.184318,0.213155,0.0657762,0.965941,0.129183,0.294793,0.761812,0.927444,0.235905,0.940005,0.189734,0.00235373,0.0331597,0.315574,0.423475,0.00335407,0.077334,0.910091,0.833,0.862968,0.908475,0.972293,0.720005,0.959434,0.0255111,0.00639945,0.160628,0.303941,0.892563,0.448954,0.400535,0.400448,0.151927,0.538372,0.480891,0.506828,0.915534,0.671382,0.260743,0.680696,0.533272,0.38634,0.495412,0.54882,0.311398,0.494188,0.161193,0.569953,0.711174,0.31634,0.946751,0.00121903,0.454207,0.6693,0.858532,0.216678,0.356486,0.323203,0.178589,0.784588,0.670569,0.585015,0.692071,0.497905,0.871462,0.346118,0.249426,0.047307,0.149883,0.503838,0.919658,0.0551174,0.40633,0.560846,0.247424,0.39638,0.469019,0.920771,0.419489,0.0551403,0.218555,0.416878,0.790227,0.66779,0.656498,0.5838,0.663864,0.293827,0.549127,0.184418,0.256202,0.679173,0.3795,0.347031,0.703494,0.825202,0.795001,0.405356,0.99519,0.408984,0.173701,0.90132,0.416575,0.348617,0.156111,0.610501,0.258239,0.882854,0.491407,0.877103,0.354154,0.139369,0.974225,0.907144,0.757506,0.34732,0.343362,0.429332,0.687215,0.757589,0.257628,0.364885,0.104527,0.520851,0.302626,0.122169,0.941278,0.909575,0.322559,0.0163073,0.844113,0.445004,0.861141,0.73182,0.807182,0.586086,0.294525,0.891106,0.401962,0.302908,0.745913,0.939524,0.399215,0.382928,0.688236,0.0273218,0.969363,0.942787,0.850096,0.75585,0.258654,0.0822752,0.317732,0.184415,0.653798,0.930602,0.559898,0.0664942,0.052035,0.0469331,0.690287,0.817241,0.917865,0.0565025,0.429148,0.905425,0.841083,0.7733,0.477351,0.148071,0.442125,0.825657,0.704611,0.228238,0.879454,0.843308,0.0532691,0.834013,0.73586,0.990071,0.292025,0.223422,0.408916,0.293892,0.764689,0.529191,0.269658,0.33599,0.377586,0.128587,0.965684,0.115922,0.536902,0.513774,0.512014,0.0553084,0.251587,0.849366,0.587338,0.788431,0.659391,0.877745,0.277453,0.542014,0.909827,0.817313,0.93912,0.742283,0.175166,0.168413,0.692504,0.00277257,0.21107,0.324401,0.399918,0.528218,0.533137,0.140736,0.91652,0.623008,0.766789,0.632352,0.592669,0.138847,0.828066,0.775304,0.119183,0.0700421,0.0129942,0.996471,0.131093,0.00861096,0.626029,0.936851,0.15427,0.851063,0.48831,0.961287,0.0495077,0.609335,0.224544,0.986787,0.960436,0.0124105,0.220345,0.422595,0.874947,0.600616,0.775949,0.460573,0.612931,0.430239,0.280399,0.0516207,0.694795,0.610185,0.288701,0.863607,0.565107,0.912442,0.134483,0.475052,0.791944,0.0139746,0.819756,0.339903,0.396285,0.499591,0.25587,0.723592,0.147239,0.231484,0.35664,0.0765164,0.658614,0.62759,0.0708096,0.406088,0.0964069,0.184874,0.768416,0.465083,0.161008,0.896805,0.487924,0.753866,0.393897,0.887349,0.48442,0.554169,0.0967517,0.551368,0.827986,0.407835,0.0895678,0.324036,0.527193,0.300776,0.129041,0.484495,0.695397,0.311569,0.724194,0.40241,0.888279,0.287592,0.311836,0.846965,0.918442,0.137441,0.765821,0.996641,0.14602,0.171569,0.644566,0.597848,0.793254,0.646251,0.0336581,0.515946,0.0882704,0.13928,0.360684,0.764486,0.0552002,0.229481,0.00787288,0.874443,0.328663,0.533795,0.297862,0.282034,0.329132,0.0109573,0.212851,0.918848,0.887212,0.520581,0.760577,0.965191,0.601559,0.744198,0.210166,0.973467,0.390438,0.311323,0.306392,0.833021,0.906859,0.877553,0.465496,0.0318406,0.29286,0.333322,0.436748,0.410287,0.628677,0.290219,0.629391,0.948682,0.222572,0.149066,0.854251,0.98938,0.586944,0.674611,0.0970985,0.47373,0.941701,0.146797,0.685358,0.281939,0.521199,0.526883,0.105259,0.834017,0.703579,0.856056,0.165274,0.599246,0.397588,0.643763,0.805588,0.220881,0.00834614,0.698134,0.482584,0.375843,0.770442,0.304281,0.938685,0.820587,0.339263,0.979109,0.229834,0.5547,0.410608,0.929052,0.942026,0.482642,0.0210806,0.144788,0.361043,0.786419,0.179681,0.838534,0.434254,0.182455,0.52934,0.786916,0.734754,0.479843,0.669984,0.590444,0.778885,0.413088,0.374219,0.0124701,0.313727,0.0565006,0.845452,0.964803,0.254594,0.494741,0.0331038,0.182241,0.200279,0.151743,0.359355,0.251901,0.0284383,0.693138,0.907506,0.557482,0.394104,0.250131,0.502127,0.569853,0.903707,0.780403,0.20411,0.0202846,0.241911,0.266085,0.702315,0.310682,0.258218,0.945824,0.542981,0.745185,0.177881,0.70261,0.346728,0.196253,0.260175,0.577689,0.74282,0.979704,0.933971,0.821982,0.812356,0.5661,0.513888,0.806912,0.787781,0.485003,0.659713,0.588555,0.98497,0.527839,0.906512,0.784971,0.853555,0.934997,0.887398,0.874736,0.783192,0.668388,0.70828,0.909125,0.940009,0.970114,0.364383,0.84007,0.71058,0.807541,0.280775,0.668987,0.751072,0.380714,0.435606,0.668802,0.40691,0.598072,0.0425661,0.0634509,0.235566,0.269741,0.159253,0.461352,0.517944,0.988348,0.256148,0.74539,0.384264,0.787035,0.330979,0.743744,0.349609,0.557993,0.456731,0.558337,0.102699,0.108473,0.943831,0.610534,0.128171,0.55023,0.0294823,0.108959,0.186829,0.832717,0.87271,0.595486,0.586194,0.506853,0.589533,0.313829,0.629627,0.196783,0.685001,0.0242748,0.940084,0.349895,0.256147,0.162109,0.0221332,0.477035,0.246122,0.386558,0.824377,0.713613,0.526387,0.0839128,0.845406,0.798991,0.950266,0.964603,0.180679,0.647453,0.136668,0.912772,0.161911,0.390281,0.665492,0.735132,0.385671,0.977078,0.320667,0.722613,0.682609,0.218038,0.735747,0.0800877,0.0387993,0.326963,0.226212,0.454611,0.760512,0.425779,0.97289,0.449157,0.221214,0.568563,0.948812,0.489636,0.333932,0.31335,0.387652,0.45257,0.593628,0.590887,0.738876,0.814612,0.909021,0.681658,0.640811,0.676421,0.794876,0.353705,0.998981,0.522903,0.945887,0.372182,0.71541,0.950227,0.131909,0.763967,0.44712,0.899265,0.887547,0.371604,0.485313,0.674254,0.064424,0.37702,0.182486,0.662592,0.670366,0.838613,0.496486,0.049307,0.675356,0.815768,0.30562,0.491301,0.234369,0.97021,0.551577,0.453541,0.878262,0.273678,0.853791,0.0557264,0.644101,0.666929,0.0989659,0.869525,0.194021,0.693906,0.772878,0.81623,0.382244,0.649692,0.24041,0.725935,0.591639,0.213389,0.336939,0.73591,0.5351,0.957823,0.920869,0.155174,0.317071,0.818387,0.756955,0.547882,0.877913,0.939844,0.846007,0.250914,0.953145,0.7585,0.164904,0.604076,0.107174,0.390169,0.795022,0.259327,0.0513765,0.522378,0.163676,0.336153,0.776243,0.857722,0.82373,0.880734,0.542316,0.93262,0.794948,0.783648,0.192923,0.230355,0.184867,0.235743,0.381763,0.597494,0.899757,0.0985242,0.92209,0.899121,0.830337,0.484449,0.0100345,0.232148,0.581778,0.661576,0.705606,0.112216,0.469513,0.579444,0.911108,0.471385,0.332622,0.0926512,0.500156,0.904944,0.261013,0.368173,0.520036,0.877857,0.876178,0.403994,0.0348982,0.507889,0.520694,0.35619,0.821584,0.675708,0.965064,0.318249,0.259103,0.248992,0.198723,0.0175,0.164068,0.945646,0.809917,|0.264078,0.154058,0.631979,0.979822,0.108039,0.975821,0.212032,0.578942,0.699007,0.671669,0.4616,0.926773,0.81788,0.0730994,0.699836,0.17374,0.695732,0.256599,0.299439,0.240551,0.814274,0.129234,0.62503,0.878908,0.40387,0.3293,0.0796847,0.748572,0.766995,0.418026,0.437614,0.14764,0.487569,0.394219,0.556639,0.24823,0.162482,0.619331,0.158336,0.905146,0.354442,0.400864,0.73132,0.717989,0.341445,0.599223,0.0949851,0.00845379,0.494008,0.679829,0.459234,0.651383,0.00325239,0.0337815,0.0999448,0.874935,0.642352,0.436375,0.00182259,0.881204,0.696702,0.225732,0.638683,0.608348,0.771497,0.0136445,0.598886,0.272043,0.69476,0.598679,0.242619,0.972461,0.154645,0.858008,0.00132543,0.365082,0.215042,0.652109,0.912981,0.218314,0.829438,0.885063,0.0823042,0.443465,0.881521,0.57726,0.480202,0.460281,0.833414,0.668662,0.710752,0.110148,0.610622,0.166416,0.282744,0.728278,0.26494,0.174628,0.544829,0.0771233,0.465374,0.687711,0.628924,0.428688,0.820691,0.980394,0.648878,0.352958,0.812469,0.142439,0.724746,0.862081,0.321939,0.850335,0.697937,0.583636,0.12445,0.221662,0.664608,0.922421,0.198832,0.970578,0.467537,0.785456,0.839895,0.379805,0.310835,0.755091,0.595784,0.991364,0.235556,0.27558,0.531316,0.495621,0.0202032,0.385628,0.0245235,0.647805,0.161356,0.804587,0.999137,0.438857,0.806796,0.851207,0.235742,0.478521,0.497641,0.672219,0.0574355,0.872528,0.736705,0.645604,0.456471,0.199949,0.644177,0.585605,0.175223,0.497829,0.606792,0.479776,0.932592,0.349107,0.629061,0.789244,0.678608,0.0467372,0.713584,0.199637,0.956886,0.428068,0.58711,0.738527,0.700334,0.833426,0.937224,0.796342,0.346362,0.256546,0.861954,0.281544,0.827629,0.798956,0.714507,0.578509,0.815932,0.582987,0.282748,0.332923,0.513223,0.366673,0.115878,0.0310087,0.871838,0.110725,0.875651,0.819681,0.204296,0.796543,0.483634,0.668628,0.59316,0.880181,0.339139,0.199266,0.65929,0.988088,0.55405,0.8372,0.493097,0.999547,0.00255811,0.0496921,0.94751,0.580039,0.907337,0.394303,0.369898,0.40276,0.588089,0.941791,0.567,0.548804,0.468318,0.0199782,0.148359,0.166359,0.299991,0.612189,0.636541,0.186292,0.327507,0.468056,0.329189,0.291818,0.383336,0.39934,0.048534,0.350892,0.0193253,0.205814,0.60797,0.73385,0.0147649,0.59267,0.844899,0.755642,0.159636,0.569528,0.445379,0.570004,0.978125,0.638924,0.713293,0.645897,0.0439739,0.182291,0.962469,0.676168,0.539484,0.47211,0.8789,0.468466,0.565644,0.139918,0.312777,0.816193,0.0232551,0.959343,0.419308,0.25557,0.991262,0.512311,0.579385,0.308292,0.22688,0.963136,0.0494682,0.121241,0.674948,0.631613,0.872778,0.659373,0.614684,0.456279,0.91203,0.211468,0.840208,0.370411,0.0641008,0.531864,0.685057,0.911757,0.285074,0.538642,0.971679,0.458102,0.432912,0.414488,0.302134,0.199373,0.845222,0.623456,0.161509,0.303354,0.0854364,0.915744,0.808151,0.00288844,0.800823,0.816182,0.00618583,0.212344,0.558988,0.0137642,0.38213,0.387218,0.421502,0.915574,0.870071,0.361223,0.73739,0.808536,0.565119,0.465586,0.554224,0.261646,0.396925,0.815626,0.0687666,0.690969,0.314496,0.896904,0.676157,0.523502,0.00644624,0.682283,0.0665058,0.238512,0.606201,0.475969,0.306479,0.76715,0.496936,0.487901,0.367047,0.706627,0.915497,0.96635,0.628842,0.0270539,0.0142868,0.815625,0.657926,0.762343,0.736354,0.954551,0.368668,0.844057,0.540388,0.895691,0.150404,0.014038,0.215107,0.53694,0.0581378,0.683825,0.921817,0.128503,0.956286,0.250495,0.985498,0.406331,0.235158,0.411872,0.041737,0.655153,0.0650873,0.404255,0.854273,0.341504,0.33386,0.186316,0.175536,0.613709,0.30614,0.193011,0.556813,0.700038,0.273496,0.592511,0.609201,0.260793,0.207193,0.515758,0.678522,0.597536,0.476824,0.0559821,0.0974695,0.98366,0.112524,0.848899,0.833047,0.20807,0.36996,0.380526,0.386767,0.652499,0.984922,0.104412,0.969905,0.145571,0.178279,0.404096,0.488967,0.806554,0.372572,0.122664,0.948804,0.61541,0.49646,0.545431,0.732977,0.457974,0.863828,0.446451,0.473654,0.148985,0.439694,0.934931,0.330744,0.511196,0.364063,0.415906,0.250158,0.670856,0.338838,0.64254,0.0228466,0.800214,0.236863,0.441902,0.777209,0.940799,0.2022,0.131341,0.0285566,0.588942,0.761982,0.606228,0.941922,0.704355,0.681537,0.083848,0.885413,0.132992,0.238106,0.840884,0.402962,0.020169,0.451673,0.782173,0.0964809,0.0204602,0.931308,0.624273,0.756751,0.850589,0.755257,0.300788,0.42336,0.645921,0.632091,0.659361,0.64812,0.323941,0.994369,0.023365,0.703893,0.922307,0.587969,0.681557,0.0582392,0.46852,0.857949,0.450471,0.205204,0.79927,0.079306,0.695922,0.284265,0.569612,0.0128142,0.30422,0.690018,0.240903,0.683847,0.482611,0.189166,0.650652,0.784602,0.231271,0.507612,0.536615,0.0315814,0.915709,0.808355,0.558755,0.318512,0.0386431,0.922282,0.84163,0.332628,0.643574,0.352157,0.158469,0.717812,0.602009,0.253494,0.37896,0.214626,0.226448,0.220937,0.285263,0.636298,0.724037,0.30073,0.834968,0.644375,0.275079,0.778312,0.37479,0.574733,0.734121,0.93841,0.820424,0.946927,0.944037,0.176773,0.018952,0.416184,0.851774,0.9056,0.442108,0.392041,0.800018,0.221438,0.630542,0.658783,0.895561,0.22638,0.0321253,0.998415,0.301925,0.373886,0.507681,0.216394,0.615898,0.749308,0.595539,0.0616992,0.42126,0.591206,0.784223,0.291269,0.897362,0.636098,0.636158,0.00519371,0.728785,0.695238,0.806036,0.303071,0.858678,0.732173,0.794998,0.548842,0.482146,0.967667,0.75853,0.906006,0.236241,0.257713,0.869825,0.955021,0.518464,0.651396,0.0795109,0.176742,0.799094,0.269366,0.419182,0.768143,0.557647,0.272672,0.357745,0.00236297,0.461927,0.260222,0.728522,0.463055,0.536653,0.0680692,0.855531,0.406054,0.377263,0.426884,0.153232,0.254159,0.654907,0.105936,0.333949,0.0269372,0.856173,0.659481,0.62694,0.70418,0.690176,0.589788,0.267858,0.574499,0.173435,0.460646,0.286767,0.365084,0.31536,0.309643,0.611756,0.606025,0.37739,0.937724,0.628221,0.248217,0.108272,0.716331,0.851825,0.689854,0.347194,0.798676,0.258586,0.165342,0.410841,0.461201,0.791642,0.59861,0.924307,0.664911,0.97456,0.878566,0.446031,0.606415,0.452755,0.339285,0.770866,0.409381,0.9797,0.63383,0.244527,0.167997,0.911651,0.0439448,0.6067,0.280168,0.6442,0.680131,0.711091,0.134644,0.346402,0.0556664,0.436564,0.0789294,0.375216,0.0946054,0.716547,0.208194,0.161305,0.986379,0.306294,0.985605,0.895422,0.0198259,0.292593,0.964822,0.290314,0.0758321,0.868877,0.0928017,0.4649,0.254263,0.218462,0.303688,0.765403,0.444988,0.729838,0.221804,0.0492191,0.5346,0.189864,0.218545,0.900136,0.688159,0.651154,0.484253,0.643594,0.875166,0.999588,0.0393836,0.230038,0.251612,0.637568,0.617501,0.38238,0.696933,0.0073818,0.619603,0.683975,0.811495,0.947014,0.516561,0.973776,0.739396,0.593257,0.594438,0.329195,0.958771,0.858344,0.18781,0.784151,0.205723,0.93264,0.467647,0.294499,0.0697877,0.375613,0.432469,0.59982,0.589463,0.874331,0.514015,0.167789,0.822387,0.667214,0.739893,0.586544,0.15821,0.105049,0.648139,0.236208,0.996284,0.775799,0.468894,0.88804,0.117433,0.828457,0.157516,0.597781,0.579778,0.691062,0.814664,0.208,0.307325,0.242512,0.175763,0.609798,0.739599,0.694688,0.338665,0.729703,0.285963,0.567341,0.559126,0.971647,0.00682843,0.886972,0.667447,0.621631,0.169343,0.426496,0.143156,0.715157,0.166416,0.562322,0.10387,0.053548,0.225676,0.989797,0.403161,0.266137,0.880244,0.379035,0.948514,0.608293,0.588267,0.173565,0.14864,0.477165,0.156614,0.104129,0.251915,0.396423,0.960717,0.50458,0.784775,0.116925,0.894263,0.795302,0.262234,0.638417,0.681726,0.930028,0.190669,0.830909,0.670356,0.579184,0.639616,0.0783709,0.343277,0.612837,0.307481,0.356627,0.484099,0.877319,0.864157,0.283492,0.651462,0.0138438,0.796449,0.0996892,0.194081,0.315843,0.856017,0.783895,0.993044,0.254211,0.35926,0.133413,0.163945,0.0811533,0.133925,0.0642416,0.210871,0.221907,0.0508378,0.399308,0.673058,0.524678,0.213246,0.159442,0.693492,0.949044,0.0218818,0.0908056,0.813992,0.634009,0.245276,0.162669,0.232569,0.978324,0.455318,0.0751399,0.589219,0.180983,0.507577,0.559931,0.791534,0.151781,0.873202,0.107294,0.910121,0.387787,0.47918,0.953073,0.451743,0.964067,0.853118,0.5261,0.486251,0.811433,0.287817,0.894201,0.930724,0.934974,0.621238,0.533334,0.849308,0.159571,0.551779,0.240877,0.790291,0.195632,0.53855,0.509818,0.172873,0.73035,0.0273915,0.966005,0.588415,0.184645,0.344311,0.718702,0.707093,0.0483903,0.0443813,0.237161,0.743288,0.0352198,0.969072,0.508861,0.510918,0.308608,0.670578,0.60695,0.724658,0.588616,0.410684,0.630698,0.248093,0.2459,0.47867,0.456971,0.194515,0.919318,0.757095,0.0512835,0.473624,0.962642,0.439874,0.76925,0.503832,0.863497,0.490643,0.984552,0.625555,0.889028,0.38965,0.486649,0.0458653,0.420135,0.744679,0.876329,0.660308,0.873904,0.331802,0.559676,0.794014,0.564173,0.189436,0.893447,0.625881,0.721262,0.334623,0.0961047,0.227999,0.0247706,0.998789,0.342807,0.138284,0.938748,0.782312,0.000887752,0.679389,0.25881,0.873598,0.0253903,0.733401,0.928649,0.75931,0.426838,0.201729,0.358087,0.717585,0.145944,0.935965,0.291247,0.990263,0.122826,0.459999,0.767016,0.310319,0.21018,0.0904601,0.407096,0.100159,0.472997,0.210516,0.588632,0.510828,0.169314,0.816109,0.955997,0.138894,0.206394,0.844949,0.379568,0.962499,0.119461,0.536581,0.544367,0.814806,0.932555,|0.531364,0.682728,0.443761,0.0293545,0.266139,0.456013,0.374308,0.501601,0.0195311,0.29588,0.354626,0.609544,0.973465,0.0482517,0.328628,0.063144,0.691869,0.874712,0.237927,0.0436985,0.839265,0.634723,0.886042,0.305295,0.496499,0.95259,0.706269,0.971989,0.573062,0.598132,0.354602,0.794914,0.0821248,0.243306,0.676126,0.155778,0.413078,0.314617,0.00191087,0.667262,0.715774,0.9252,0.0337268,0.604169,0.571085,0.185355,0.0981932,0.923132,0.700364,0.22758,0.0139206,0.306002,0.0901949,6.68764e-05,0.892366,0.876937,0.7531,0.557484,0.854641,0.406669,0.0398821,0.981052,0.27573,0.267666,0.450057,0.858845,0.721852,0.273233,0.348361,0.986477,0.874352,0.12573,0.265104,0.666829,0.479084,0.603498,0.465608,0.114737,0.669837,0.650269,0.705355,0.783604,0.555158,0.656942,0.479432,0.59035,0.10959,0.212594,0.298927,0.707165,0.0204527,0.560762,0.403453,0.00992656,0.996449,0.939719,0.753813,0.853245,0.262831,0.32833,0.046321,0.927814,0.136947,0.432648,0.339656,0.275264,0.491779,0.72349,0.979302,0.280364,0.701876,0.674778,0.598856,0.827022,0.867129,0.954036,0.30666,0.187465,0.133373,0.567924,0.00126326,0.825733,0.296815,0.608272,0.414249,0.251881,0.464254,0.696456,0.713139,0.135707,0.463195,0.758338,0.938248,0.76405,0.930063,0.756478,0.470103,0.754093,0.568274,0.682896,0.235649,0.387835,0.70107,0.201862,0.804651,0.434102,0.0936464,0.70309,0.514957,0.227482,0.42208,0.297977,0.16708,0.0220501,0.715915,0.927115,0.521717,0.695923,0.374864,0.102587,0.274516,0.336613,0.00498199,0.555071,0.189463,0.224585,0.646543,0.842826,0.499555,0.712126,0.947438,0.00656915,0.761598,0.930696,0.325672,0.0852795,0.503878,0.58734,0.621265,0.427245,0.241471,0.715131,0.316422,0.549735,0.616999,0.152655,0.213382,0.0618946,0.798535,0.179948,0.0448886,0.39941,0.950763,0.847202,0.471794,0.679047,0.598301,0.653377,0.723891,0.53643,0.925521,0.274904,0.032965,0.91603,0.776946,0.0888119,0.854866,0.483443,0.635579,0.811036,0.0155342,0.441656,0.753817,0.509344,0.685146,0.375335,0.151335,0.809184,0.257086,0.253867,0.824182,0.327242,0.264089,0.166969,0.273829,0.312579,0.175393,0.0271945,0.644768,0.247097,0.118021,0.589333,0.236089,0.192023,0.758987,0.626868,0.488383,0.792289,0.240132,0.0503979,0.480298,0.254627,0.139666,0.35175,0.17854,0.302194,0.690912,0.936243,0.240196,0.786917,0.539977,0.125713,0.0217566,0.861238,0.476175,0.373553,0.654004,0.430576,0.0909001,0.975479,0.264035,0.76573,0.873299,0.829073,0.0414535,0.474356,0.992912,0.37623,0.805396,0.371214,0.48878,0.197259,0.588757,0.540811,0.787143,0.789817,0.826689,0.357555,0.728957,0.0522443,0.289978,0.928673,0.703696,0.427004,0.323194,0.243946,0.501145,0.726218,0.781309,0.450606,0.1838,0.961518,0.708096,0.405229,0.601964,0.802426,0.380802,0.966813,0.640692,0.774061,0.112375,0.949512,0.763673,0.766184,0.317379,0.882864,0.989349,0.907683,0.335663,0.230063,0.623236,0.968653,0.598357,0.908183,0.201453,0.717097,0.948238,0.946211,0.112483,0.393554,0.496593,0.290745,0.117936,0.721445,0.743776,0.592256,0.0082556,0.704585,0.0056355,0.0891156,0.0914397,0.289298,0.19859,0.925308,0.0374489,0.0509744,0.114207,0.397783,0.427074,0.519206,0.0496833,0.584031,0.0863792,0.648423,0.115209,0.2317,0.641563,0.641083,0.792787,0.159158,0.315384,0.469709,0.969212,0.103812,0.838295,0.52913,0.250386,0.578702,0.880711,0.766589,0.515578,0.42672,0.130324,0.283162,0.529828,0.0613784,0.368812,0.114398,0.145567,0.606776,0.0396826,0.572258,0.883294,0.681467,0.80001,0.22165,0.0322703,0.712027,0.720536,0.813715,0.670442,0.721523,0.530135,0.292132,0.792707,0.428535,0.604139,0.57135,0.929207,0.880849,0.763978,0.331068,0.115927,0.0926464,0.757278,0.325403,0.911223,0.676545,0.0905015,0.674082,0.301698,0.381696,0.0043022,0.106367,0.801238,0.967587,0.434262,0.26092,0.728007,0.0960704,0.752908,0.718676,0.843824,0.0349368,0.552663,0.554073,0.726734,0.538015,0.45064,0.983153,0.689397,0.103892,0.136845,0.15466,0.325463,0.433873,0.615953,0.901159,0.614859,0.156396,0.652628,0.507838,0.357393,0.857073,0.508733,0.210429,0.347795,0.577205,0.9037,0.017432,0.761974,0.509473,0.880933,0.556296,0.672892,0.319295,0.807895,0.703097,0.302745,0.912025,0.941576,0.989246,0.707142,0.701352,0.526118,0.906288,0.0649178,0.118967,0.0972554,0.248958,0.33942,0.822506,0.232934,0.0676025,0.993574,0.362568,0.318489,0.0759413,0.116524,0.555766,0.468929,0.842741,0.910397,0.96947,0.326282,0.00038296,0.422377,0.875697,0.877607,0.144132,0.0352468,0.333291,0.890821,0.882726,0.222633,0.205514,0.428898,0.285883,0.199082,0.73673,0.309839,0.974142,0.46186,0.1639,0.940384,0.419132,0.326077,0.218248,0.4117,0.542799,0.536367,0.516081,0.919042,0.517201,0.878898,0.315662,0.121423,0.678208,0.142567,0.489347,0.811252,0.890464,0.25757,0.438407,0.487053,0.471191,0.793894,0.598144,0.636645,0.318213,0.19957,0.210267,0.744265,0.758707,0.891101,0.638645,0.425628,0.317956,0.945994,0.273815,0.472806,0.602678,0.392554,0.358922,0.414295,0.747667,0.868988,0.905584,0.51109,0.978477,0.116274,0.877142,0.250517,0.874078,0.463221,0.759702,0.341275,0.884817,0.14038,0.0456532,0.10709,0.115595,0.115076,0.589109,0.665142,0.255552,0.141756,0.818749,0.121859,0.939713,0.389144,0.51024,0.437913,0.693053,0.835293,0.193994,0.929069,0.305611,0.273517,0.986095,0.445343,0.617656,0.554911,0.27389,0.67959,0.468357,0.958837,0.664991,0.295108,0.00904799,0.868929,0.383002,0.786256,0.940663,0.134631,0.319528,0.237025,0.017621,0.00958806,0.777687,0.233075,0.986308,0.945198,0.636225,0.473624,0.76289,0.411081,0.297096,0.896275,0.816987,0.982911,0.571681,0.256147,0.861131,0.927493,0.74742,0.432516,0.421065,0.779077,0.802549,0.0901896,0.64031,0.613216,0.731513,0.99713,0.750681,0.45724,0.331862,0.70784,0.701314,0.863617,0.578287,0.199025,0.271143,0.474981,0.370355,0.1824,0.648284,0.955605,0.595011,0.0662066,0.874564,0.420797,0.153906,0.105646,0.635188,0.957894,0.952101,0.432779,0.312052,0.825041,0.796914,0.290093,0.417155,0.681512,0.622064,0.543641,0.912264,0.739833,0.0697248,0.510278,0.280792,0.764107,0.431541,0.381632,0.896211,0.958827,0.283314,0.618615,0.918545,0.507476,0.0550835,0.781398,0.651733,0.016576,0.476504,0.912772,0.38899,0.309257,0.728661,0.829801,0.201177,0.0101609,0.489895,0.0151592,0.165921,0.504449,0.824059,0.28992,0.860813,0.532866,0.892473,0.523622,0.751998,0.522716,0.129394,0.423903,0.274605,0.48308,0.816588,0.58733,0.902371,0.694556,0.974618,0.126669,0.302561,0.739565,0.211627,0.0107453,0.341465,0.53101,0.553289,0.802817,0.488788,0.174135,0.106412,0.0121071,0.829795,0.593141,0.366207,0.818704,0.487633,0.483204,0.465093,0.0845544,0.421662,0.0427359,0.566144,0.411393,0.727584,0.129414,0.863136,0.878817,0.645785,0.236672,0.108158,0.734836,0.0829186,0.1101,0.564016,0.960206,0.523742,0.916053,0.962692,0.0814679,0.00168461,0.629639,0.761671,0.936339,0.528907,0.689467,0.101548,0.515905,0.207148,0.0499613,0.903005,0.279955,0.922214,0.645052,0.596967,0.307488,0.656113,0.184965,0.876496,0.77183,0.738568,0.605779,0.431374,0.834857,0.237738,0.7783,0.813916,0.647401,0.151661,0.903033,0.114077,0.266055,0.141697,0.651833,0.734251,0.836384,0.191963,0.997959,0.285269,0.763408,0.481735,0.337864,0.943998,0.206727,0.696858,0.789965,0.0348142,0.068721,0.240759,0.18423,0.765654,0.409199,0.514235,0.676509,0.111276,0.756153,0.310386,0.94347,0.274761,0.919631,0.433202,0.877274,0.98505,0.318805,0.907529,0.40923,0.399856,0.234718,0.954841,0.941844,0.523719,0.0340305,0.763105,0.387051,0.250982,0.639288,0.505497,0.873887,0.972419,0.373148,0.611453,0.636293,0.922735,0.527693,0.750073,0.771288,0.855223,0.317078,0.404349,0.385301,0.983945,0.594202,0.611805,0.483705,0.0653229,0.747851,0.750714,0.201264,0.732851,0.23538,0.542081,0.676479,0.335194,0.361736,0.900883,0.516522,0.403447,0.708981,0.0254111,0.633339,0.454864,0.0170409,0.748493,0.880651,0.356933,0.987162,0.363865,0.233696,0.929425,0.503036,0.46162,0.0813927,0.937593,0.286441,0.983227,0.576745,0.110392,0.798236,0.684779,0.242693,0.554872,0.436242,0.782155,0.473286,0.899076,0.875054,0.27512,0.745413,0.100462,0.48517,0.977158,0.180858,0.0994296,0.930294,0.167188,0.780356,0.828223,0.0636962,0.763892,0.685974,0.0105945,0.091494,0.539549,0.453144,0.399924,0.351828,0.415933,0.990696,0.663756,0.767958,0.638036,0.193954,0.640075,0.925388,0.208144,0.0652366,0.212533,0.016548,0.548326,0.257536,0.383292,0.47429,0.250578,0.181286,0.836565,0.260263,0.227768,0.600092,0.699248,0.265258,0.908803,0.0164137,0.594702,0.182626,0.260583,0.437326,0.967893,0.096916,0.528739,0.443606,0.37063,0.451932,0.253909,0.924844,0.294598,0.62631,0.239823,0.348668,0.00346386,0.708564,0.865937,0.512066,0.662299,0.337342,0.987579,0.0824429,0.871507,0.597531,0.286608,0.60973,0.433212,0.176734,0.793147,0.292344,0.55743,0.758521,0.121948,0.49116,0.0756625,0.199256,0.932263,0.766493,0.230959,0.277525,0.989252,0.789518,0.658337,0.705413,0.76623,0.34318,0.710959,0.195837,0.356772,0.312482,0.518343,0.993788,0.868836,0.529434,0.515585,0.468266,0.739367,0.267251,0.346314,0.58937,0.793474,0.469454,0.658604,0.380367,0.616716,0.582049,0.685834,0.277803,0.851653,0.134915,0.211799,0.28255,0.0323032,0.0379807,0.885438,0.734546,0.0743247,0.128597,0.848243,0.784986,0.750819,|0.497237,0.798088,0.720663,0.0160604,0.181841,0.50874,0.405218,0.0590482,0.805998,0.0877276,0.630517,0.922981,0.796892,0.851738,0.350873,0.839737,0.188553,0.126709,0.629345,0.667688,0.19282,0.441869,0.881116,0.0557434,0.912817,0.750088,0.885429,0.409631,0.319651,0.161765,0.844415,0.672993,0.782232,0.85794,0.279025,0.320491,0.723598,0.847206,0.439558,0.497258,0.305212,0.577599,0.165686,0.576122,0.199407,0.292125,0.902526,0.546108,0.158272,0.0512193,0.410072,0.11601,0.299761,0.827648,0.978783,0.176536,0.913018,0.977627,0.111805,0.146897,0.546471,0.624863,0.962249,0.329725,0.524532,0.00161344,0.541146,0.272818,0.768667,0.242976,0.840943,0.214809,0.507594,0.594964,0.480281,0.839542,0.117515,0.541385,0.745652,0.84031,0.958018,0.0421206,0.175873,0.551449,0.0318958,0.565976,0.904307,0.216435,0.215946,0.988135,0.716539,0.730283,0.430016,0.631594,0.816413,0.849061,0.50274,0.242048,0.948372,0.495729,0.772261,0.954063,0.965415,0.204653,0.00366551,0.178837,0.165556,0.538744,0.918834,0.218551,0.949554,0.146451,0.207975,0.0438237,0.983687,0.14713,0.570684,0.217275,0.195097,0.0833701,0.443503,0.0428877,0.487867,0.190027,0.337921,0.876693,0.526914,0.467692,0.479442,0.306916,0.167477,0.0785299,0.994021,0.405885,0.069315,0.887142,0.10038,0.594183,0.247303,0.78593,0.733476,0.462359,0.903118,0.652585,0.0790091,0.609444,0.315045,0.582338,0.631928,0.703539,0.834799,0.722429,0.117016,0.306987,0.137528,0.841566,0.716073,0.736318,0.569651,0.87232,0.661385,0.732716,0.654048,0.319258,0.504667,0.372895,0.88087,0.876903,0.462992,0.501768,0.820076,0.456187,0.65711,0.573341,0.502932,0.429556,0.654077,0.834617,0.886428,0.576405,0.921658,0.144534,0.114121,0.569608,0.640436,0.32793,0.77479,0.779086,0.0560644,0.567898,0.312583,0.13179,0.543315,0.233123,0.918879,0.221677,0.991274,0.482497,0.275585,0.531005,0.753649,0.448096,0.923864,0.470611,0.245934,0.417789,0.955785,0.219893,0.0768496,0.824499,0.43449,0.64808,0.504055,0.733927,0.931019,0.0809865,0.452173,0.750074,0.561183,0.859834,0.366599,0.883602,0.537268,0.582496,0.26727,0.100232,0.369155,0.116022,0.784277,0.47722,0.577767,0.615414,0.550278,0.460235,0.731223,0.834765,0.90997,0.786548,0.42862,0.68469,0.182145,0.632118,0.462332,0.291673,0.828036,0.740885,0.42911,0.0725775,0.175404,0.0907024,0.447984,0.900274,0.221717,0.390148,0.308864,0.256421,0.918325,0.0138462,0.449686,0.973177,0.724282,0.853894,0.732171,0.847085,0.279103,0.855486,0.806771,0.850573,0.698372,0.96503,0.394059,0.146192,0.512444,0.268743,0.808581,0.860805,0.124451,0.177285,0.880312,0.450857,0.0365488,0.0281395,0.881482,0.455081,0.883874,0.0541523,0.411801,0.00840664,0.00550604,0.0767025,0.791606,0.757649,0.442685,0.130647,0.585237,0.610664,0.737525,0.996453,0.736401,0.99218,0.0291273,0.28238,0.127341,0.541113,0.665042,0.837696,0.763881,0.890162,0.607061,0.587275,0.491086,0.0464743,0.531635,0.569899,0.464172,0.757756,0.354314,0.602593,0.832972,0.14013,0.464313,0.886742,0.0834913,0.568557,0.690105,0.824463,0.0545214,0.966072,0.742372,0.789972,0.814601,0.0502204,0.555896,0.864828,0.797262,0.290263,0.491469,0.086592,0.608148,0.445725,0.516339,0.73897,0.910142,0.549678,0.77834,0.343991,0.690751,0.655905,0.484594,0.495384,0.103494,0.522429,0.329255,0.989061,0.792465,0.65171,0.137153,0.577803,0.109557,0.856502,0.319055,0.333744,0.583282,0.708061,0.970917,0.753976,0.889432,0.258518,0.762006,0.959528,0.831267,0.721804,0.624406,0.71499,0.710375,0.803095,0.500848,0.90186,0.182461,0.578287,0.719946,0.160792,0.0217336,0.621975,0.094354,0.517561,0.588898,0.414616,0.377066,0.730964,0.483018,0.940174,0.379002,0.381364,0.853942,0.802503,0.340477,0.33513,0.456669,0.205438,0.192288,0.0544132,0.124115,0.3394,0.728018,0.37272,0.68137,0.595712,0.456756,0.341487,0.406815,0.975247,0.535791,0.821779,0.206417,0.0223852,0.335842,0.642818,0.118163,0.462492,0.434456,0.808458,0.919527,0.740926,0.240779,0.287634,0.560205,0.011739,0.352138,0.090117,0.167256,0.273297,0.662007,0.736883,0.711361,0.651637,0.521679,0.155676,0.761892,0.920735,0.479743,0.665946,0.0978234,0.940116,0.956904,0.0921206,0.724557,0.550816,0.555209,0.448865,0.48304,0.411595,0.401163,0.684432,0.250082,0.560711,0.822438,0.174121,0.293903,0.13485,0.065163,0.67906,0.984807,0.790611,0.168165,0.368346,0.597997,0.67798,0.496876,0.431593,0.550679,0.832896,0.983884,0.560781,0.893004,0.147075,0.172615,0.428957,0.215758,0.377666,0.653915,0.499275,0.202198,0.176258,0.201963,0.737099,0.989508,0.934723,0.646261,0.184369,0.595358,0.514239,0.668107,0.745802,0.915626,0.205064,0.948803,0.178955,0.929218,0.684995,0.656594,0.560125,0.195152,0.919152,0.403487,0.548029,0.0102461,0.457187,0.330666,0.222281,0.107295,0.176244,0.159659,0.590161,0.270236,0.04826,0.0783385,0.709339,0.0519772,0.487601,0.53087,0.419947,0.29881,0.609108,0.763594,0.377861,0.628896,0.111207,0.22339,0.344618,0.929852,0.406018,0.892457,0.0556831,0.376692,0.128581,0.595194,0.398793,0.234869,0.556751,0.283097,0.204131,0.306257,0.3122,0.753199,0.827749,0.128823,0.660096,0.53764,0.796736,0.301417,0.311077,0.2342,0.0938061,0.386511,0.434471,0.968272,0.731726,0.137715,0.693426,0.305791,0.754907,0.803423,0.253561,0.714332,0.320339,0.895777,0.030409,0.80898,0.476675,0.537235,0.809517,0.0712824,0.0861203,0.744863,0.634883,0.724987,0.424414,0.214556,0.918035,0.0290813,0.930652,0.240654,0.782374,0.848568,0.0643539,0.0332236,0.722613,0.510199,0.146062,0.0430869,0.468442,0.0752756,0.343641,0.713578,0.628339,0.778514,0.301376,0.432228,0.0547095,0.162332,0.745021,0.062153,0.886286,0.485025,0.315827,0.338714,0.194152,0.852651,0.029255,0.958084,0.47983,0.0996527,0.0596165,0.0747876,0.588132,0.878793,0.712029,0.592051,0.51389,0.884844,0.277155,0.39774,0.973597,0.886423,0.0418671,0.209763,0.896298,0.9034,0.373141,0.408498,0.706908,0.894597,0.9753,0.574977,0.934805,0.979362,0.87282,0.327318,0.38776,0.310933,0.984317,0.114729,0.984995,0.329703,0.433353,0.816942,0.389406,0.958755,0.631512,0.931904,0.552063,0.45824,0.456664,0.0029313,0.10229,0.596261,0.945328,0.432497,0.909166,0.69655,0.479651,0.511301,0.588429,0.0297604,0.513313,0.337692,0.120664,0.824027,0.239032,0.254995,0.370412,0.92861,0.555272,0.78244,0.0078451,0.969103,0.571575,0.762673,0.402633,0.288006,0.728844,0.503192,0.669596,0.778755,0.485242,0.0142032,0.475272,0.521006,0.344959,0.546901,0.367714,0.932868,0.452975,0.853384,0.145033,0.451135,0.0124177,0.661059,0.384151,0.889565,0.932686,0.720135,0.748214,0.645777,0.281347,0.318885,0.602189,0.143046,0.79868,0.922336,0.14767,0.797213,0.686642,0.908102,0.384206,0.789981,0.235726,0.499895,0.840895,0.130469,0.740124,0.869353,0.598032,0.694986,0.374373,0.992373,0.488161,0.58598,0.810432,0.379028,0.468529,0.336036,0.28034,0.648277,0.288272,0.546431,0.770113,0.069356,0.73044,0.229339,0.55,0.0441718,0.177615,0.342766,0.894757,0.805195,0.642289,0.860501,0.941361,0.726675,0.64911,0.642067,0.840177,0.793944,0.719427,0.359586,0.488191,0.788336,0.998898,0.882581,0.00966734,0.200562,0.924075,0.862227,0.674003,0.355977,0.139477,0.219143,0.698922,0.461061,0.147622,0.116669,0.508459,0.742425,0.564421,0.931901,0.295034,0.249321,0.692961,0.395698,0.229865,0.0716287,0.961257,0.421587,0.920539,0.262614,0.743626,0.805417,0.142423,0.752497,0.361401,0.758507,0.875408,0.153574,0.267746,0.337873,0.663079,0.0703206,0.131979,0.0733398,0.626643,0.381875,0.698952,0.314109,0.0919685,0.269382,0.839832,0.474718,0.688353,0.459078,0.724561,0.183323,0.63803,0.340126,0.186023,0.359316,0.978462,0.991758,0.146078,0.224527,0.612297,0.683296,0.00973064,0.467691,0.651781,0.308466,0.707465,0.0697332,0.811343,0.167272,0.954512,0.450816,0.831303,0.0813768,0.880555,0.806972,0.465302,0.00314873,0.607323,0.777206,0.251979,0.871603,0.72744,0.28035,0.985127,0.324274,0.0600545,0.420269,0.825075,0.775099,0.0847701,0.220957,0.566924,0.556658,0.138357,0.854212,0.00489634,0.235575,0.716369,0.304173,0.914651,0.116776,0.888013,0.995192,0.59765,0.674686,0.876662,0.536201,0.873603,0.266101,0.14154,0.351678,0.417806,0.0956411,0.921915,0.0242145,0.393499,0.704316,0.530145,0.962303,0.61437,0.604432,0.467474,0.724187,0.849905,0.533297,0.467662,0.0317309,0.826406,0.132668,0.194955,0.507902,0.717218,0.785607,0.560184,0.419863,0.343472,0.250068,0.842979,0.296984,0.216826,0.182093,0.683897,0.0392473,0.6811,0.896703,0.397615,0.832992,0.347851,0.528185,0.847514,0.316914,0.426588,0.0728096,0.423367,0.379371,0.445241,0.406313,0.279186,0.314521,0.0785275,0.247558,0.751177,0.0111253,0.685271,0.913588,0.680436,0.718662,0.982329,0.0481937,0.0462449,0.114663,0.110558,0.77658,0.851849,0.894984,0.239213,0.822132,0.0370467,0.576887,0.0393366,0.0971323,0.0475445,0.730405,0.741013,0.170028,0.566879,0.20949,0.0431842,0.607601,0.644948,0.072174,0.56904,0.68719,0.434089,0.211951,0.632582,0.598881,0.399446,0.230046,0.612837,0.952798,0.967482,0.783717,0.612589,0.862948,0.475654,0.0482349,0.309958,0.978727,0.308979,0.343436,0.584706,0.0603071,0.196816,0.308439,0.313221,0.32182,0.126278,0.346323,0.204277,0.366539,0.229609,0.444675,0.394066,0.806166,0.769416,0.231329,0.773168,0.453153,0.818724,0.0212218,0.873317,0.724327,0.973324,0.810482,0.38829,0.154447,0.977242,|0.805331,0.68264,0.930136,0.125843,0.450732,0.240606,0.252019,0.597564,0.858128,0.015807,0.92053,0.585928,0.659447,0.632204,0.381763,0.929718,0.579963,0.994288,0.44087,0.772019,0.533981,0.959725,0.285625,0.815116,0.518153,0.416369,0.81398,0.800563,9.04799e-05,0.419131,0.0496574,0.599601,0.0714142,0.523494,0.834853,0.367763,0.950676,0.549716,0.799313,0.730313,0.217126,0.157734,0.716169,0.174813,0.613822,0.430864,0.241671,0.148367,0.716999,0.605319,0.82987,0.415303,0.684267,0.333488,0.993583,0.657403,0.444217,0.56602,0.125035,0.193232,0.387414,0.0533396,0.499346,0.520935,0.841304,0.0649093,0.21824,0.300481,0.105205,0.0630333,0.370656,0.452778,0.557812,0.560061,0.281119,0.429648,0.228897,0.982028,0.29307,0.661939,0.646297,0.802017,0.775763,0.0756206,0.472178,0.0584145,0.990417,0.628454,0.363764,0.684225,0.793999,0.963852,0.84992,0.87143,0.297184,0.137751,0.495809,0.0998783,0.0626415,0.477118,0.816138,0.0950564,0.239744,0.0985895,0.0305321,0.543426,0.613097,0.756609,0.348073,0.73299,0.0194144,0.500659,0.616846,0.208431,0.459734,0.490584,0.90691,0.333783,0.835905,0.527544,0.68712,0.74081,0.783728,0.989387,0.868875,0.326278,0.0580221,0.312993,0.224246,0.377995,0.243058,0.578056,0.485749,0.124395,0.404645,0.960342,0.174969,0.362413,0.495554,0.912023,0.332519,0.242289,0.420393,0.581657,0.246755,0.61828,0.204368,0.117693,0.461467,0.580197,0.467333,0.609044,0.64548,0.102593,0.389948,0.522363,0.993717,0.514759,0.433886,0.639931,0.97756,0.0815018,0.622437,0.404478,0.992073,0.643536,0.544712,0.614772,0.681764,0.292785,0.172983,0.918753,0.960792,0.550114,0.499877,0.739113,0.639798,0.0907239,0.901875,0.550001,0.29613,0.580922,0.508356,0.935996,0.413803,0.578236,0.211933,0.645672,0.244407,0.588337,0.453446,0.429374,0.997055,0.705687,0.226355,0.129306,0.419099,0.428671,0.155678,0.327818,0.321723,0.885414,0.724122,0.564276,0.0892957,0.258581,0.00720733,0.310309,0.19661,0.635896,0.212004,0.0751086,0.122085,0.558634,0.0969718,0.688509,0.079509,0.999654,0.826309,0.155784,0.367224,0.718084,0.294149,0.634313,0.210413,0.0548817,0.646099,0.0305851,0.460096,0.633493,0.938273,0.132813,0.293632,0.177694,0.309592,0.284049,0.662345,0.189677,0.416141,0.962154,0.153474,0.526721,0.81409,0.121018,0.869484,0.884654,0.300381,0.275064,0.655788,0.0792873,0.298961,0.250615,0.642771,0.908667,0.187944,0.0104783,0.68401,0.674797,0.0587519,0.35009,0.159289,0.405748,0.141976,0.924213,0.165855,0.516405,0.175288,0.484512,0.920153,0.411451,0.220274,0.604895,0.237623,0.0356017,0.147503,0.770933,0.162204,0.821164,0.686333,0.940014,0.258854,0.704545,0.0144556,0.341396,0.81986,0.76395,0.875668,0.000116885,0.744822,0.444021,0.920075,0.88023,0.911642,0.904467,0.952857,0.500329,0.830053,0.284966,0.710992,0.528442,0.181325,0.941828,0.266967,0.791585,0.377784,0.567444,0.438471,0.080814,0.016008,0.457659,0.125891,0.746631,0.678997,0.295631,0.701254,0.68829,0.408986,0.210179,0.171994,0.77749,0.91535,0.171286,0.287139,0.636691,0.0279631,0.802957,0.61644,0.154653,0.148919,0.0833603,0.549908,0.360457,0.515407,0.819553,0.683854,0.537762,0.896435,0.346351,0.731167,0.307063,0.714281,0.205925,0.479502,0.346938,0.628998,0.59596,0.734291,0.943044,0.203877,0.919971,0.666045,0.444028,0.441967,0.489886,0.958391,0.778803,0.0270168,0.115657,0.433782,0.686728,0.448581,0.219799,0.539584,0.122895,0.661247,0.876743,0.328264,0.739584,0.877988,0.654075,0.55422,0.747746,0.319474,0.564863,0.838872,0.14798,0.233582,0.687854,0.673472,0.709155,0.413858,0.602048,0.953504,0.230764,0.63258,0.842441,0.981934,0.648597,0.157952,0.377894,0.935613,0.277513,0.490448,0.845676,0.915004,0.756694,0.549913,0.477169,0.00850457,0.0507163,0.645576,0.704471,0.833609,0.486672,0.67622,0.456326,0.363425,0.265806,0.274541,0.432541,0.643864,0.821397,0.792469,0.58886,0.570237,0.63567,0.0345926,0.451056,0.899526,0.657718,0.555763,0.488788,0.153516,0.0241974,0.882081,0.775162,0.351924,0.171019,0.69806,0.657603,0.436667,0.62851,0.188071,0.765867,0.669486,0.324569,0.535924,0.486578,0.796183,0.591652,0.354784,0.169125,0.142805,0.568134,0.133285,0.458069,0.014957,0.563843,0.860672,0.669044,0.904984,0.903444,0.29173,0.887295,0.806664,0.635694,0.282221,0.136417,0.154581,0.175713,0.36558,0.019181,0.550538,0.125,0.579845,0.822845,0.92181,0.0918349,0.474349,0.772178,0.790251,0.416762,0.208652,0.204417,0.796663,0.643956,0.838171,0.636655,0.626027,0.322841,0.951723,0.559149,0.95396,0.714135,0.887151,0.871919,0.94602,0.721611,0.847491,0.837147,0.216848,0.437651,0.666384,0.672172,0.877319,0.25951,0.927136,0.971988,0.646531,0.494875,0.890019,0.516377,0.170126,0.570262,0.957079,0.530016,0.850937,0.177384,0.34556,0.296572,0.63716,0.369381,0.505425,0.841631,0.239886,0.569221,0.951687,0.174685,0.719918,0.203085,0.647883,0.747644,0.380023,0.129905,0.0964233,0.803664,0.771241,0.308818,0.327381,0.975224,0.00483418,0.186337,0.579245,0.385717,0.805997,0.415835,0.543076,0.392456,0.283841,0.870972,0.405188,0.627855,0.151347,0.423383,0.465408,0.491655,0.428857,0.974852,0.843026,0.559982,0.426237,0.595602,0.20873,0.446329,0.341891,0.082256,0.337999,0.522227,0.288186,0.940788,0.632499,0.407066,0.997206,0.319193,0.894695,0.397407,0.0749266,0.559054,0.286792,0.899417,0.627347,0.552369,0.600339,0.417647,0.698087,0.299727,0.810575,0.0574669,0.965074,0.0952461,0.406058,0.962629,0.496551,0.880353,0.512342,0.531495,0.721465,0.113956,0.188183,0.219067,0.547344,0.217254,0.304222,0.914492,0.573911,0.631195,0.588907,0.998689,0.381967,0.462619,0.455644,0.704567,0.00138259,0.0403187,0.10849,0.337125,0.807245,0.846854,0.713247,0.325791,0.470739,0.820967,0.0430874,0.814331,0.578568,0.962559,0.617696,0.219568,0.134724,0.531033,0.171229,0.360449,0.560642,0.409689,0.68684,0.391101,0.0947908,0.0715283,0.572411,0.692074,0.140208,0.155198,0.676051,0.784731,0.738922,0.364762,0.935812,0.27306,0.642979,0.183575,0.128895,0.178419,0.14678,0.0619092,0.527036,0.533957,0.996911,0.0434168,0.608786,0.358224,0.656923,0.443053,0.813034,0.762158,0.44612,0.395297,0.247132,0.330938,0.126879,0.518359,0.257124,0.582023,0.545928,0.695889,0.064416,0.528788,0.962295,0.285836,0.563252,0.587589,0.738393,0.449179,0.691539,0.561365,0.184526,0.479093,0.594441,0.993011,0.663743,0.404955,0.456103,0.713555,0.831963,0.816589,0.0315429,0.902912,0.495398,0.932063,0.429923,0.136315,0.615328,0.204248,0.717357,0.496808,0.814865,0.624829,0.624115,0.548168,0.393432,0.625172,0.195277,0.242324,0.285083,0.869132,0.780663,0.319553,0.0790914,0.550652,0.706855,0.753349,0.848985,0.642897,0.304154,0.207568,0.970717,0.156588,0.357488,0.501932,0.199793,0.900174,0.683347,0.328071,0.541042,0.740977,0.797796,0.300822,0.685127,0.194125,0.530456,0.771943,0.751997,0.0546173,0.700472,0.134996,0.734759,0.728653,0.941367,0.805668,0.976895,0.125718,0.866423,0.697112,0.0577763,0.967235,0.467089,0.318447,0.0690239,0.370054,0.569212,0.670952,0.293532,0.0154285,0.309291,0.0347843,0.990858,0.581535,0.0902148,0.0792191,0.95551,0.918928,0.618175,0.553282,0.935516,0.752452,0.47095,0.924023,0.562626,0.0759568,0.836191,0.852669,0.145939,0.0423414,0.975824,0.569448,0.654667,0.0733051,0.920092,0.573475,0.396629,0.697986,0.572292,0.674481,0.164252,0.814384,0.405683,0.403014,0.925314,0.690298,0.845952,0.95365,0.754159,0.197886,0.980481,0.610969,0.521699,0.00905633,0.296267,0.17775,0.700761,0.42907,0.594882,0.0666988,0.689307,0.550249,0.830133,0.688389,0.106428,0.569245,0.807024,0.477368,0.603223,0.943118,0.424842,0.48139,0.589166,0.850842,0.792423,0.415334,0.66086,0.169234,0.168848,0.200637,0.992184,0.977112,0.0632958,0.138748,0.331243,0.373185,0.0354917,0.000270844,0.998739,0.276709,0.0553564,0.972325,0.164676,0.738872,0.745084,0.778602,0.578297,0.8413,0.786211,0.409311,0.53364,0.266392,0.0445425,0.158748,0.891156,0.357336,0.460318,0.734427,0.140294,0.931997,0.974394,0.918733,0.905811,0.7558,0.222553,0.840953,0.296261,0.78995,0.638544,0.65985,0.297013,0.794151,0.182287,0.0633212,0.679116,0.782159,0.718265,0.887171,0.571421,0.0976526,0.255937,0.832172,0.257703,0.845501,0.556843,0.0051223,0.483014,0.916332,0.223282,0.57154,0.518074,0.506836,0.406955,0.360976,0.761118,0.756283,0.85174,0.0661121,0.710143,0.863438,0.383814,0.0591962,0.937041,0.255072,0.69916,0.173199,0.181842,0.429004,0.116368,0.565405,0.753376,0.415106,0.210398,0.671947,0.642716,0.457845,0.739834,0.94426,0.149149,0.826635,0.969198,0.348721,0.712838,0.696353,0.318202,0.249462,0.840675,0.498344,0.935888,0.665774,0.470883,0.996877,0.194334,0.453126,0.385876,0.582153,0.927713,0.740891,0.798679,0.198574,0.234656,0.841278,0.725916,0.833815,0.851217,0.646641,0.0675255,0.503063,0.926319,0.235822,0.112349,0.275338,0.0198249,0.180391,0.281654,0.651218,0.78417,0.63588,0.691701,0.688072,0.611778,0.487104,0.522953,0.444797,0.622853,0.837241,0.231228,0.962724,0.556387,0.63971,0.539759,0.138554,0.291061,0.286282,0.519803,0.118844,0.172938,0.517907,0.713701,0.661754,0.856249,0.884229,0.888844,0.583733,0.560139,0.36208,0.762923,0.857361,0.477709,0.711589,0.544567,0.190922,0.671327,0.0876674,0.159536,0.7494,0.394083,0.873035,0.533592,0.479248,0.265683,0.759141,0.26616,0.888366,0.267095,0.2722,0.93789,0.317616,|0.125218,0.328528,0.984183,0.443258,0.33001,0.187518,0.881096,0.641301,0.520793,0.0568082,0.22439,0.92835,0.841206,0.995634,0.341674,0.0808629,0.517246,0.848281,0.420158,0.561179,0.755837,0.240392,0.632289,0.4228,0.614773,0.336093,0.841606,0.69117,0.316558,0.699104,0.124881,0.728163,0.486905,0.86049,0.462098,0.871089,0.199229,0.435336,0.00227505,0.330923,0.317087,0.543025,0.719,0.495363,0.957415,0.365477,0.748403,0.0674807,0.937733,0.191642,0.826725,0.674633,0.785982,0.975677,0.328069,0.464936,0.232324,0.111271,0.159575,0.403857,0.946809,0.313373,0.805898,0.212395,0.324209,0.659345,0.901638,0.9787,0.0642959,0.127999,0.276797,0.898334,0.491929,0.488853,0.731796,0.0746583,0.465018,0.151871,0.287832,0.722484,0.664217,0.822689,0.475505,0.425232,0.0965761,0.948201,0.263735,0.487109,0.115011,0.909214,0.411855,0.315776,0.226537,0.684383,0.810949,0.942052,0.575738,0.661524,0.322911,0.205397,0.515514,0.052103,0.940317,0.039802,0.185394,0.813482,0.0035758,0.351925,0.253476,0.623399,0.472634,0.25256,0.979243,0.839983,0.833346,0.353447,0.401216,0.314629,0.735303,0.89002,0.253994,0.678557,0.0118868,0.498676,0.0924615,0.402895,0.692065,0.113116,0.941673,0.870013,0.925418,0.651683,0.695929,0.21788,0.167386,0.220972,0.32764,0.771271,0.768329,0.630442,0.259846,0.387376,0.199893,0.85226,0.977848,0.533028,0.871728,0.900391,0.544016,0.675341,0.466813,0.925089,0.237692,0.334019,0.962886,0.0871242,0.136639,0.0440428,0.962428,0.653142,0.967107,0.0835794,0.769152,0.110939,0.791414,0.153514,0.830453,0.666318,0.594247,0.89921,0.750034,0.146278,0.0642482,0.0795382,0.52982,0.536835,0.103394,0.734345,0.30635,0.177227,0.953339,0.0824673,0.681318,0.781175,0.249461,0.417959,0.967748,0.444403,0.322599,0.0943245,0.443883,0.071533,0.0829317,0.981568,0.563367,0.426374,0.0299074,0.17279,0.158922,0.327425,0.474197,0.517711,0.291252,0.450302,0.45791,0.840893,0.237376,0.437261,0.452736,0.869629,0.628323,0.140665,0.408637,0.859791,0.823889,0.0466455,0.0314572,0.129325,0.168874,0.165857,0.96387,0.473665,0.9318,0.158232,0.360933,0.210585,0.147783,0.785575,0.228899,0.783664,0.872806,0.179086,0.880338,0.71054,0.513123,0.352444,0.917099,0.0217949,0.199788,0.843435,0.141645,0.322721,0.858261,0.856066,0.761473,0.194276,0.499426,0.213796,0.307975,0.328437,0.41443,0.65019,0.732735,0.638429,0.915366,0.462794,0.098294,0.237788,0.446177,0.772292,0.296671,0.567131,0.577232,0.676599,0.501697,0.757038,0.62293,0.360392,0.0706319,0.190581,0.696981,0.214169,0.182798,0.674418,0.749912,0.262999,0.712421,0.908301,0.0915341,0.0668526,0.923655,0.500414,0.589066,0.163757,0.364917,0.508504,0.87269,0.757335,0.676047,0.892401,0.520292,0.850503,0.584416,0.497389,0.604042,0.690422,0.571895,0.929383,0.362009,0.936948,0.622485,0.495339,0.802248,0.594727,0.256038,0.922998,0.739644,0.962793,0.884122,0.0445668,0.657772,0.58254,0.715397,0.872539,0.963289,0.3868,0.769207,0.801819,0.502635,0.324991,0.158227,0.467041,0.212315,0.387656,0.483981,0.23664,0.584684,0.662575,0.639002,0.699291,0.724316,0.583523,0.112192,0.979376,0.572751,0.71775,0.617044,0.739672,0.154602,0.564897,0.0697483,0.493428,0.221294,0.663307,0.663264,0.352214,0.962558,0.96636,0.149679,0.67433,0.643231,0.351467,0.970686,0.362729,0.902058,0.455593,0.574918,0.10831,0.92966,0.885162,0.260701,0.704186,0.131822,0.524886,0.755781,0.123557,0.294919,0.619902,0.527807,0.752371,0.798726,0.164835,0.00690019,0.245407,0.812057,0.294471,0.220505,0.841221,0.740168,0.266462,0.211059,0.313243,0.799899,0.920236,0.882678,0.346802,0.882796,0.422699,0.591701,0.755143,0.762172,0.410261,0.903511,0.676639,0.321435,0.983521,0.596737,0.536801,0.0183131,0.360261,0.329825,0.645477,0.0933417,0.779833,0.157089,0.475738,0.0262208,0.810212,0.355454,0.186539,0.771689,0.0222497,0.378697,0.71218,0.562917,0.172159,0.110764,0.320936,0.837581,0.649539,0.0212549,0.585691,0.616044,0.732253,0.883783,0.629455,0.251015,0.0384092,0.800247,0.690915,0.492403,0.269011,0.305637,0.81791,0.380371,0.0705761,0.305306,0.132731,0.307965,0.844261,0.481818,0.0149055,0.825957,0.535546,0.261612,0.909953,0.511784,0.867437,0.0157401,0.851858,0.856725,0.781783,0.157675,0.897248,0.417426,0.59376,0.967497,0.95122,0.687988,0.465607,0.773631,0.978201,0.989983,0.557441,0.614245,0.435337,0.304624,0.716396,0.982189,0.879669,0.954996,0.340137,0.157762,0.666579,0.738064,0.602628,0.518907,0.0264225,0.806742,0.00071919,0.388982,0.00329912,0.916256,0.393649,0.343418,0.707718,0.678211,0.498758,0.756301,0.313835,0.939627,0.074077,0.178607,0.390194,0.477647,0.924341,0.77138,0.551781,0.603883,0.101446,0.817969,0.592679,0.708075,0.915106,0.219485,0.825106,0.118889,0.943696,0.516241,0.196198,0.392653,0.89347,0.754393,0.281509,0.101894,0.9768,0.775174,0.330929,0.397602,0.762664,0.251022,0.763463,0.305343,0.397948,0.260958,0.281928,0.723373,0.190792,0.308862,0.242598,0.413497,0.22783,0.31852,0.936334,0.356372,0.220388,0.244507,0.576584,0.0401704,0.700847,0.000131726,0.266712,0.775132,0.992405,0.308482,0.999307,0.600418,0.613452,0.118363,0.179786,0.271561,0.36314,0.0899546,0.699876,0.841721,0.415868,0.838419,0.373641,0.436649,0.723338,0.758429,0.387846,0.313396,0.127069,0.51024,0.224595,0.816295,0.399231,0.203353,0.771112,0.484947,0.261812,0.391008,0.322288,0.978222,0.757391,0.843536,0.578512,0.701114,0.793696,0.209002,0.783469,0.657167,0.705435,0.615346,0.478377,0.673299,0.422035,0.533061,0.666632,0.824618,0.3933,0.616022,0.639151,0.644135,0.182454,0.621157,0.283639,0.602944,0.00413871,0.782687,0.670951,0.518389,0.289975,0.31851,0.433537,0.54087,0.311363,0.376922,0.157383,0.661789,0.480623,0.220643,0.950978,0.301653,0.0899968,0.248948,0.380294,0.502681,0.466225,0.68648,0.891671,0.756762,0.927768,0.92135,0.0579932,0.690169,0.741116,0.697798,0.687498,0.434375,0.147447,0.276301,0.270872,0.116422,0.357759,0.673318,0.309973,0.137259,0.717555,0.590209,0.455243,0.639374,0.676109,0.572544,0.245179,0.912241,0.433775,0.317992,0.956564,0.373961,0.977731,0.450409,0.437981,0.580258,0.26243,0.280677,0.680561,0.58083,0.442317,0.462251,0.0729945,0.793286,0.155463,0.556439,0.503026,0.571588,0.0927833,0.312982,0.236777,0.772498,0.683946,0.22446,0.157799,0.682937,0.939784,0.685069,0.706049,0.698553,0.510747,0.206817,0.596987,0.32772,0.89203,0.607897,0.045228,0.532807,0.742962,0.0423645,0.484585,0.136652,0.464798,0.070518,0.169988,0.495352,0.206458,0.950865,0.986973,0.389617,0.216311,0.898875,0.980051,0.747264,0.197016,0.785141,0.52499,0.247677,0.232002,0.92828,0.322331,0.12175,0.65611,0.158095,0.226108,0.757201,0.730482,0.0177901,0.722489,0.687864,0.253905,0.800373,0.557958,0.349847,0.750393,0.431897,0.747093,0.460097,0.582422,0.75519,0.208706,0.610069,0.3045,0.0258339,0.644864,0.651018,0.430965,0.679381,0.950888,0.503346,0.234892,0.245518,0.919992,0.545199,0.516121,0.270008,0.574211,0.461159,0.505828,0.440223,0.266234,0.804061,0.358256,0.594381,0.21471,0.609806,0.52979,0.375001,0.629842,0.307719,0.595233,0.224685,0.625115,0.900179,0.0227314,0.419389,0.0488249,0.216774,0.936652,0.402027,0.930542,0.508144,0.0881915,0.639136,0.225739,0.230355,0.118524,0.12533,0.42624,0.700442,0.324996,0.215019,0.165338,0.706483,0.0403682,0.202813,0.604419,0.476413,0.622247,0.380496,0.155524,0.778248,0.231379,0.945753,0.019044,0.914583,0.933647,0.282839,0.360243,0.424009,0.215824,0.0148054,0.249509,0.58534,0.205581,0.566929,0.857695,0.0741526,0.303703,0.962008,0.283583,0.1635,0.682287,0.64862,0.422059,0.549208,0.523408,0.861742,0.119905,0.925805,0.0818506,0.849599,0.157873,0.0760008,0.309135,0.929361,0.566988,0.917613,0.37679,0.647826,0.955199,0.941875,0.339455,0.796989,0.916972,0.607166,0.460289,0.541495,0.37259,0.533296,0.630666,0.282084,0.900635,0.315888,0.996888,0.788492,0.765304,0.250097,0.69856,0.226799,0.809096,0.428133,0.0236871,0.45298,0.322438,0.407701,0.506706,0.660078,0.589817,0.493412,0.95153,0.273536,0.399044,0.423164,0.601229,0.313949,0.510204,0.517419,0.593714,0.26685,0.845352,0.124528,0.864501,0.659406,0.478417,0.625174,0.813048,0.180938,0.37676,0.857401,0.239653,0.511542,0.286345,0.829046,0.64485,0.344917,0.319505,0.23524,0.353823,0.361305,0.276024,0.518883,0.184923,0.327993,0.657025,0.875938,0.995011,0.435711,0.839457,0.8714,0.871088,0.951595,0.331582,0.887351,0.340717,0.430488,0.339588,0.0858184,0.485315,0.759952,0.496742,0.392928,0.119444,0.298894,0.629814,0.0632772,0.889618,0.276664,0.0393262,0.00577289,0.653777,0.731643,0.347953,0.646814,0.717816,0.0719395,0.880158,0.609609,0.253488,0.868979,0.0189914,0.458722,0.101329,0.899567,0.0999019,0.331957,0.0136738,0.918511,0.782863,0.482694,0.619494,0.655738,0.863946,0.765746,0.418529,0.495194,0.103987,0.532433,0.778484,0.0809915,0.831952,0.0411525,0.48135,0.293151,0.615401,0.787751,0.783451,0.508305,0.419435,0.5176,0.160931,0.493378,0.897932,0.885593,0.729684,0.522109,0.807143,0.516925,0.714538,0.619008,0.880472,0.464388,0.849683,0.588464,0.695837,0.623869,0.116209,0.057024,0.416265,0.061428,0.759447,0.913062,0.547368,0.936634,0.129758,0.496932,0.473031,0.455182,0.635228,0.0541024,0.292253,0.80152,0.0238439,0.143977,0.936756,0.897406,0.133361,0.666855,0.219655,0.612329,0.542086,|0.483413,0.699662,0.922021,0.745648,0.857529,0.665886,0.816033,0.515039,0.629604,0.909268,0.149378,0.940271,0.671495,0.702595,0.466916,0.94157,0.136779,0.782456,0.262728,0.489717,0.423795,0.684869,0.0235303,0.0481138,0.259118,0.220215,0.166412,0.600334,0.81077,0.914759,0.584737,0.457841,0.748575,0.62791,0.850248,0.211186,0.827719,0.163274,0.210673,0.220658,0.819888,0.421262,0.609466,0.371328,0.112426,0.817185,0.712697,0.75958,0.765663,0.939601,0.787838,0.493868,0.638928,0.878439,0.939802,0.6501,0.678564,0.909028,0.842372,0.791698,0.409814,0.865321,0.575809,0.590466,0.310409,0.0564101,0.182912,0.156153,0.402872,0.456222,0.32825,0.298177,0.94977,0.0540661,0.850395,0.356911,0.457758,0.446115,0.1188,0.310074,0.848719,0.57054,0.78176,0.493602,0.239027,0.395508,0.998227,0.239992,0.0428056,0.441231,0.0148779,0.802234,0.548099,0.033514,0.329241,0.892794,0.933473,0.958434,0.358185,0.266749,0.863079,0.834106,0.257548,0.869581,0.620738,0.414217,0.0543925,0.849017,0.159014,0.749029,0.404063,0.0812554,0.728247,0.683268,0.00654012,0.267163,0.913661,0.985508,0.00055337,0.910789,0.144916,0.98223,0.764314,0.817232,0.148759,0.554326,0.388044,0.730995,0.159419,0.76958,0.36474,0.883093,0.121358,0.696647,0.157379,0.139923,0.269797,0.571366,0.949675,0.789469,0.188674,0.710059,0.402169,0.274222,0.219751,0.796016,0.444323,0.462296,0.821044,0.347298,0.817923,0.862353,0.999612,0.328159,0.437317,0.288619,0.352983,0.225918,0.0958624,0.326515,0.728003,0.453091,0.369617,0.917074,0.194707,0.41337,0.631999,0.891007,0.344835,0.446512,0.217742,0.937994,0.725487,0.58031,0.881805,0.93755,0.769654,0.517947,0.728938,0.559529,0.998907,0.258648,0.00833833,0.0900005,0.343071,0.860544,0.968364,0.811969,0.0216656,0.578501,0.0700321,0.469815,0.73914,0.936229,0.273082,0.304565,0.443385,0.630181,0.261539,0.672068,0.514378,0.248138,0.609235,0.682049,0.959729,0.851719,0.67287,0.218754,0.993882,0.885548,0.316195,0.264438,0.897914,0.864034,0.379169,0.0474727,0.209694,0.545001,0.27377,0.89178,0.0733163,0.0848843,0.224421,0.5862,0.867568,0.728166,0.411195,0.870827,0.217777,0.881123,0.628481,0.243026,0.425141,0.511647,0.983229,0.986453,0.938376,0.865006,0.237296,0.0239008,0.318491,0.717078,0.349274,0.758153,0.504901,0.933464,0.340718,0.240745,0.443765,0.630584,0.279326,0.962745,0.759434,0.706588,0.848804,0.464147,0.50792,0.971366,0.135489,0.0348986,0.9562,0.995292,0.0153859,0.12439,0.174853,0.243986,0.482603,0.744482,0.0601054,0.751868,0.156787,0.444671,0.247251,0.301764,0.547647,0.449644,0.197483,0.616517,0.409816,0.535042,0.263049,0.221348,0.406849,0.807642,0.940623,0.910175,0.342625,0.29769,0.186334,0.605761,0.787272,0.0402007,0.742967,0.549155,0.220727,0.725481,0.00421625,0.77559,0.0136931,0.886693,0.0307124,0.264998,0.557072,0.518256,0.0396411,0.255309,0.986465,0.291717,0.191388,0.654546,0.691558,0.84293,0.42944,0.762685,0.413023,0.131386,0.557552,0.736447,0.68506,0.560944,0.735051,0.934343,0.46867,0.476307,0.891141,0.165529,0.864777,0.783279,0.818833,0.117537,0.772429,0.690387,0.846849,0.893769,0.444153,0.447557,0.188214,0.0526914,0.963819,0.314186,0.70302,0.394003,0.958249,0.232973,0.493183,0.392352,0.0050317,0.91046,0.506873,0.164866,0.173154,0.993876,0.745193,0.136888,0.208276,0.118496,0.100397,0.913179,0.00998741,0.320855,0.613587,0.49549,0.319938,0.424467,0.287814,0.592319,0.91413,0.574186,0.862648,0.636194,0.198651,0.519495,0.77756,0.446993,0.526357,0.955986,0.667955,0.420037,0.84745,0.675051,0.768796,0.548548,0.622885,0.60048,0.832001,0.00304168,0.224546,0.746297,0.835443,0.143669,0.894537,0.895162,0.889519,0.396873,0.910395,0.998166,0.84956,0.912883,0.829235,0.333787,0.358369,0.136401,0.312497,0.820955,0.675965,0.324004,0.560888,0.975235,0.0652648,0.0510408,0.62684,0.0610263,0.31798,0.589793,0.321566,0.133426,0.566827,0.238088,0.668318,0.757594,0.0562502,0.221513,0.10487,0.663883,0.724192,0.7751,0.755838,0.469424,0.204253,0.937853,0.325304,0.981241,0.841293,0.326893,0.960796,0.22695,0.922605,0.755317,0.770386,0.145531,0.116792,0.562532,0.954147,0.424468,0.513198,0.89303,0.658712,0.848531,0.26621,0.26091,0.922764,0.696779,0.828417,0.985665,0.882852,0.41257,0.539362,0.0316688,0.952077,0.193769,0.597682,0.256489,0.32687,0.510559,0.843093,0.145322,0.489786,0.868637,0.47728,0.220279,0.776675,0.0542479,0.420498,0.947827,0.40987,0.669657,0.037781,0.0952232,0.723681,0.119855,0.0472249,0.178167,0.00628626,0.42337,0.778122,0.054992,0.897552,0.738909,0.482353,0.201156,0.664839,0.27675,0.886595,0.74285,0.814808,0.00877839,0.255953,0.816413,0.420813,0.903951,0.882072,0.568748,0.498273,0.747259,0.338523,0.822361,0.442177,0.730903,0.883396,0.115937,0.968502,0.823331,0.298712,0.164622,0.77162,0.0898891,0.465775,0.193793,0.533843,0.358278,0.936047,0.476617,0.541279,0.676089,0.592809,0.442597,0.406585,0.211255,0.143187,0.104587,0.295509,0.887875,0.998551,0.164417,0.140441,0.000407517,0.694832,0.354888,0.507192,0.930861,0.720835,0.678002,0.19696,0.996498,0.048078,0.516618,0.978953,0.706162,0.833946,0.719351,0.0247605,0.111183,0.369021,0.373363,0.990165,0.330829,0.343467,0.341923,0.561414,0.0116355,0.846486,0.802536,0.0865752,0.957674,0.485121,0.437905,0.14375,0.047211,0.110451,0.836021,0.56796,0.911759,0.297574,0.25085,0.719459,0.422676,0.377994,0.841554,0.00120038,0.880384,0.255343,0.0444549,0.926416,0.03608,0.00272226,0.974429,0.390969,0.343136,0.886539,0.283044,0.748161,0.218312,0.747059,0.939316,0.692629,0.509708,0.922315,0.162347,0.619867,0.750018,0.700495,0.489568,0.389148,0.629319,0.914703,0.428252,0.122627,0.495983,0.902484,0.338278,0.354078,0.619874,0.912979,0.233955,0.892471,0.157423,0.446138,0.521817,0.36627,0.308913,0.26907,0.816993,0.244051,0.307386,0.487701,0.296142,0.847325,0.116919,0.972426,0.379013,0.563221,0.259362,0.515026,0.257666,0.706487,0.375625,0.237425,0.919998,0.683436,0.444821,0.756969,0.95764,0.639514,0.604013,0.443264,0.882259,0.51716,0.754174,0.893965,0.837367,0.676079,0.695097,0.00582474,0.442384,0.232995,0.994789,0.538616,0.261714,0.137861,0.155113,0.953183,0.466853,0.840584,0.394619,0.00219208,0.857779,0.180795,0.488281,0.785284,0.601722,0.556266,0.539473,0.544906,0.451228,0.961382,0.144394,0.532855,0.442659,0.175636,0.917307,0.533865,0.590204,0.106389,0.0130274,0.31724,0.0055086,0.274366,0.298205,0.555764,0.494414,0.696649,0.425268,0.34454,0.849946,0.836661,0.635641,0.238001,0.811758,0.41668,0.215923,0.581481,0.396766,0.608012,0.7522,0.353794,0.92616,0.522843,0.699731,0.929396,0.11701,0.416798,0.761643,0.318496,0.464619,0.872104,0.0800736,0.823143,0.680573,0.288434,0.322975,0.319615,0.164165,0.621105,0.0826914,0.599212,0.298407,0.0249981,0.269725,0.776302,0.587984,0.853446,0.845918,0.120232,0.901859,0.121974,0.322722,0.145643,0.262222,0.109358,0.592692,0.843511,0.936331,0.582841,0.277293,0.112189,0.445166,0.340448,0.403704,0.680172,0.961839,0.149565,0.493615,0.90307,0.80749,0.331697,0.833953,0.728322,0.0558037,0.87126,0.975802,0.366291,0.841662,0.118375,0.028011,0.562992,0.22536,0.276183,0.129216,0.616333,0.205217,0.71067,0.338454,0.540655,0.726133,0.945274,0.609869,0.673218,0.889673,0.992742,0.0260351,0.0495905,0.113857,0.911059,0.975034,0.603943,0.281308,0.116712,0.773976,0.599314,0.516158,0.872627,0.240658,0.195531,0.556096,0.651067,0.984501,0.462514,0.154321,0.804509,0.870422,0.360435,0.59368,0.443945,0.687769,0.00122935,0.889454,0.242813,0.252809,0.544133,0.659605,0.729665,0.443712,0.667516,0.797321,0.931597,0.815499,0.393662,0.485835,0.633899,0.929761,0.830955,0.651589,0.0606029,0.684808,0.21091,0.351287,0.256657,0.709968,0.662365,0.48377,0.780159,0.863649,0.920496,0.377101,0.806627,0.305415,0.627636,0.565163,0.783783,0.490039,0.895746,0.350129,0.503626,0.24976,0.645906,0.292121,0.176367,0.794784,0.941975,0.225669,0.613259,0.208499,0.764757,0.818516,0.501686,0.200003,0.180646,0.77449,0.264517,0.846993,0.479545,0.760396,0.153024,0.269038,0.5184,0.655297,0.237557,0.391577,0.412045,0.65543,0.435471,0.92521,0.966661,0.767126,0.282846,0.0143178,0.504638,0.425626,0.502494,0.00819224,0.948725,0.803142,0.269725,0.341576,0.645323,0.139404,0.930059,0.804512,0.942822,0.114875,0.823174,0.340763,0.584615,0.313431,0.0711465,0.295476,0.123694,0.459649,0.248208,0.994529,0.778413,0.944697,0.759339,0.51273,0.440073,0.463592,0.145031,0.196808,0.663519,0.92612,0.0541116,0.763956,0.615039,0.595504,0.609513,0.659481,0.314272,0.701804,0.921202,0.116223,0.0246582,0.404142,0.829919,0.153438,0.45057,0.1378,0.763543,0.0313988,0.0877894,0.149119,0.782478,0.944081,0.688467,0.318278,0.383408,0.193961,0.941346,0.625969,0.413066,0.745021,0.580982,0.433357,0.145245,0.924218,0.933748,0.579545,0.639183,0.193959,0.151773,0.957208,0.650242,0.864659,0.294515,0.962228,0.315277,0.163349,0.951231,0.180118,0.829584,0.131074,0.888906,0.0702946,0.234346,0.501266,0.448688,0.593696,0.096656,0.952386,0.88854,0.680153,0.708361,0.970164,0.115319,0.985571,0.403884,0.235032,0.858058,0.96164,0.0269751,0.801597,0.680554,0.259944,0.602588,0.609284,0.416583,0.464915,0.00935686,0.739112,0.0651639,0.514068,0.0221797,0.797989,0.979966,0.0054462,0.930588,0.869806,0.65633,0.98808,0.248608,0.714543,|0.366803,0.255718,0.821223,0.135848,0.49305,0.0982963,0.258218,0.495496,0.501118,0.621268,0.464097,0.411854,0.597332,0.382233,0.715571,0.252133,0.244656,0.129963,0.656008,0.184167,0.157988,0.20176,0.303237,0.625002,0.118326,0.38203,0.217503,0.642749,0.833043,0.212082,0.238609,0.423598,0.617044,0.840369,0.666271,0.870494,0.557366,0.401825,0.936977,0.388659,0.565538,0.639934,0.605526,0.130084,0.895688,0.105837,0.0218789,0.957615,0.916977,0.14599,0.329478,0.0704456,0.891503,0.6591,0.871726,0.596193,0.281513,0.28681,0.773403,0.198456,0.338353,0.0128224,0.694855,0.638556,0.77085,0.774172,0.0536229,0.260686,0.887031,0.0218401,0.300304,0.659099,0.787218,0.748992,0.769005,0.988293,0.402606,0.129822,0.130656,0.52118,0.986487,0.567876,0.609152,0.126301,0.324536,0.995333,0.309613,0.341778,0.52257,0.853267,0.0108761,0.633597,0.0969447,0.013886,0.486577,0.580374,0.133435,0.467678,0.346027,0.479269,0.642208,0.741879,0.811274,0.0751471,0.462754,0.138457,0.271963,0.228134,0.705427,0.524975,0.0567564,0.455168,0.923432,0.202427,0.855054,0.0144683,0.237827,0.127533,0.794405,0.254793,0.823865,0.71358,0.0259253,0.181979,0.934689,0.301428,0.375295,0.494261,0.776285,0.409283,0.306439,0.0521334,0.254016,0.0913056,0.429043,0.477424,0.997538,0.213573,0.355061,0.952425,0.0367718,0.418986,0.783242,0.488875,0.0204237,0.794689,0.702537,0.533587,0.224107,0.906316,0.904317,0.887901,0.554999,0.0911718,0.278438,0.0951468,0.0246811,0.415737,0.285528,0.268769,0.274744,0.186602,0.648021,0.799443,0.389556,0.967826,0.530038,0.323581,0.273241,0.608444,0.877433,0.24826,0.605884,0.156551,0.159221,0.842702,0.502406,0.351522,0.180049,0.228578,0.67624,0.300914,0.00725091,0.400038,0.50785,0.966305,0.909135,0.181758,0.425059,0.893687,0.817385,0.33823,0.822874,0.32298,0.421864,0.977219,0.570311,0.764694,0.2413,0.521315,0.141862,0.196742,0.252903,0.610392,0.486596,0.939426,0.921669,0.466467,0.381536,0.920194,0.862204,0.203627,0.613041,0.613641,0.363667,0.0174909,0.49649,0.171214,0.742491,0.313353,0.0504773,0.633842,0.674199,0.211695,0.703552,0.458337,0.422405,0.994672,0.260893,0.603089,0.0966344,0.8852,0.694814,0.322832,0.547121,0.306917,0.612291,0.425683,0.343342,0.549191,0.459129,0.400956,0.979045,0.482719,0.102952,0.738465,0.735698,0.840921,0.355319,0.995046,0.859543,0.200072,0.467471,0.690866,0.832815,0.828363,0.848621,0.111071,0.842099,0.293181,0.996096,0.393501,0.262118,0.867976,0.531633,0.129536,0.328986,0.961027,0.53359,0.16679,0.392831,0.532645,0.954893,0.87672,0.807118,0.45522,0.117758,0.0484558,0.586679,0.868663,0.6167,0.540605,0.933336,0.939103,0.100921,0.161703,0.812974,0.870676,0.268686,0.319594,0.513344,0.147421,0.652026,0.29784,0.567566,0.338392,0.337403,0.521079,0.287089,0.301479,0.435876,0.401184,0.041958,0.60956,0.281798,0.905314,0.693605,0.569799,0.906704,0.47417,0.273883,0.0643283,0.827461,0.109859,0.581572,0.534667,0.128106,0.552769,0.361472,0.978781,0.100409,0.0820466,0.866509,0.658537,0.04859,0.273053,0.832752,0.962513,0.217711,0.0450428,0.829767,0.621242,0.229581,0.595306,0.0899262,0.389806,0.173048,0.455981,0.764111,0.847769,0.0986005,0.810977,0.087677,0.139116,0.758116,0.0515394,0.643121,0.107365,0.127086,0.430679,0.706507,0.502075,0.564416,0.874452,0.858162,0.351938,0.386284,0.0632626,0.050752,0.184418,0.139871,0.120231,0.744197,0.853783,0.335742,0.61676,0.69538,0.0961707,0.68027,0.0457786,0.860692,0.336773,0.258616,0.756601,0.405755,0.0281143,0.25519,0.369082,0.727847,0.844613,0.0522395,0.690746,0.214816,0.531551,0.409039,0.208779,0.122163,0.388796,0.161778,0.142626,0.142148,0.336491,0.973826,0.370896,0.562052,0.0345384,0.746852,0.737678,0.801005,0.641568,0.216073,0.706646,0.356095,0.793632,0.621434,0.927123,0.925604,0.866092,0.97788,0.418752,0.931204,0.898998,0.00041467,0.814862,0.967709,0.552051,0.649191,0.965348,0.81007,0.121279,0.479082,0.639245,0.246906,0.265127,0.959624,0.288159,0.310375,0.189324,0.771105,0.0446011,0.661595,0.703659,0.455937,0.727962,0.455826,0.244808,0.216004,0.02882,0.894255,0.592164,0.575791,0.705893,0.454558,0.67318,0.360925,0.589325,0.635009,0.462278,0.000231743,0.882036,0.539979,0.962806,0.803128,0.0069496,0.962382,0.0861146,0.130176,0.702951,0.794294,0.731848,0.722989,0.651806,0.857378,0.933801,0.729812,0.904348,0.854286,0.595832,0.994463,0.377783,0.744513,0.116355,0.600569,0.0176889,0.225112,0.161016,0.257072,0.959051,0.447485,0.912286,0.836683,0.421789,0.79089,0.466925,0.81663,0.285793,0.748464,0.0678756,0.344612,0.575626,0.765885,0.634858,0.698141,0.0406059,0.78983,0.121226,0.30385,0.515346,0.113774,0.856201,0.754473,0.768841,0.0276542,0.224301,0.190516,0.988125,0.0131237,0.756507,0.525791,0.251097,0.369106,0.0927736,0.936437,0.331726,0.684298,0.0747517,0.0529881,0.825945,0.323919,0.831274,0.286282,0.299983,0.0880769,0.00913668,0.732514,0.241958,0.609642,0.105355,0.00293869,0.529122,0.751617,0.942073,0.178111,0.573608,0.87489,0.736947,0.084832,0.730681,0.229829,0.851099,0.607324,0.877792,0.144308,0.798989,0.79302,0.77964,0.394831,0.442106,0.56757,0.453655,0.174132,0.218536,0.0641317,0.827761,0.653183,0.686484,0.383846,0.205196,0.000968635,0.278243,0.10184,0.777704,0.963065,0.655955,0.223912,0.232365,0.945348,0.627657,0.966628,0.778288,0.510738,0.313107,0.403666,0.703198,0.849422,0.982512,0.0905598,0.106898,0.990706,0.956254,0.309575,0.598601,0.659791,0.209846,0.447339,0.0751271,0.959103,0.325131,0.572475,0.320107,0.135283,0.602318,0.666481,0.370839,0.61497,0.983963,0.879847,0.736289,0.588483,0.0041697,0.141752,0.294123,0.345176,0.327474,0.879266,0.227879,0.743224,0.0580822,0.477014,0.322204,0.078563,0.136375,0.367185,0.353326,0.106634,0.585028,0.879663,0.549759,0.111344,0.424395,0.0379041,0.0875273,0.937797,0.0478421,0.222291,0.23053,0.0527384,0.400482,0.412711,0.83036,0.246366,0.341932,0.610747,0.123673,0.464813,0.803882,0.473223,0.366991,0.645013,0.756827,0.0349669,0.613998,0.820617,0.584252,0.701817,0.569396,0.307048,0.0388926,0.239413,0.866508,0.680438,0.866493,0.361334,0.467265,0.349254,0.368741,0.663483,0.964324,0.54206,0.739302,0.225644,0.783309,0.860543,0.515104,0.848759,0.349698,0.839529,0.504119,0.30367,0.909056,0.929729,0.912518,0.568972,0.916082,0.978513,0.504561,0.496035,0.0354353,0.701009,0.375416,0.304131,0.416286,0.163743,0.652799,0.870987,0.0483727,0.639854,0.867809,0.0765523,0.117242,0.576793,0.655231,0.863513,0.473342,0.851336,0.66036,0.0713468,0.206513,0.354345,0.225372,0.357567,0.524127,0.118473,0.877476,0.866179,0.823784,0.269501,0.246817,0.873447,0.25341,0.610702,0.783011,0.524214,0.455755,0.517652,0.771611,0.533058,0.173456,0.263688,0.725483,0.7641,0.439898,0.540079,0.241428,0.953891,0.821899,0.806679,0.768398,0.764951,0.261012,0.85292,0.00552261,0.826285,0.260246,0.0263466,0.703541,0.20385,0.5521,0.817376,0.871242,0.336441,0.181606,0.160081,0.0559151,0.345753,0.586012,0.532701,0.924779,0.596351,0.648242,0.624941,0.370522,0.635634,0.541809,0.878819,0.939311,0.00349784,0.242431,0.721932,0.913894,0.226628,0.541352,0.394073,0.859035,0.674382,0.321128,0.87703,0.480064,0.015067,0.843238,0.140709,0.336886,0.460898,0.913555,0.579721,0.943278,0.427422,0.884658,0.330298,0.143854,0.938824,0.267661,0.273234,0.181839,0.0931841,0.342826,0.276725,0.632545,0.458117,0.714199,0.610681,0.497367,0.934724,0.187919,0.197991,0.268228,0.0842549,0.329951,0.541222,0.46623,0.658096,0.452599,0.886157,0.375533,0.500231,0.516592,0.400022,0.113308,0.413213,0.953884,0.725429,0.608885,0.111453,0.889247,0.192657,0.41948,0.600024,0.372879,0.209109,0.859422,0.0399414,0.593804,0.613292,0.921193,0.48714,0.312866,0.0269706,0.1936,0.116882,0.646888,0.131395,0.469405,0.56664,0.256098,0.63711,0.0047254,0.391488,0.380398,0.77514,0.933796,0.183368,0.355723,0.00725085,0.919987,0.0200993,0.352253,0.204019,0.182432,0.261769,0.813319,0.023427,0.664808,0.334531,0.045252,0.69684,0.0101407,0.36593,0.426177,0.93374,0.678786,0.397752,0.362493,0.732043,0.605922,0.0347402,0.520816,0.986237,0.251708,0.845845,0.405993,0.271028,0.0203153,0.932535,0.402052,0.603847,0.754208,0.928138,0.959739,0.24179,0.169131,0.0574625,0.658556,0.0448467,0.587372,0.794018,0.5678,0.747157,0.76598,0.0980259,0.0987098,8.21352e-05,0.705596,0.811482,0.772013,0.158065,0.970899,0.292534,0.00737154,0.33622,0.102227,0.536474,0.897589,0.53003,0.52058,0.41385,0.374842,0.767802,0.348933,0.395306,0.63929,0.516209,0.705903,0.824726,0.443921,0.502277,0.629395,0.858447,0.249193,0.375555,0.934575,0.864412,0.496963,0.648379,0.74123,0.216321,0.41192,0.102462,0.966402,0.629542,0.633287,0.178798,0.649873,0.593979,0.757906,0.690452,0.887525,0.0449873,0.903043,0.627892,0.186714,0.0452931,0.650743,0.221621,0.981378,0.105892,0.385106,0.00944453,0.772331,0.399041,0.249139,0.352917,0.200077,0.770496,0.495773,0.274194,0.44048,0.836829,0.435688,0.302995,0.121023,0.966094,0.0350164,0.161546,0.531261,0.923575,0.288882,0.639092,0.0719729,0.462737,0.210293,0.494351,0.445979,0.99336,0.861304,0.205074,0.61108,0.99437,0.257963,0.378992,0.115011,0.141015,0.113897,0.283069,0.775803,0.941708,0.56244,0.895377,0.75319,0.149849,0.176738,0.105317,0.161685,0.026099,0.941207,0.620155,0.800791,0.840585,0.479493,0.994045,0.164024,|0.0913533,0.723173,0.064745,0.435502,0.16282,0.405522,0.998799,0.943811,0.764079,0.816348,0.527804,0.305935,0.640873,0.303283,0.108806,0.0511951,0.673634,0.950785,0.0491006,0.700358,0.517238,0.366644,0.946757,0.452507,0.207724,0.13203,0.397859,0.973544,0.614172,0.63044,0.674186,0.831247,0.308531,0.102348,0.661114,0.161205,0.162725,0.358963,0.279348,0.328734,0.138809,0.154854,0.524111,0.752748,0.480208,0.892304,0.884221,0.618154,0.588295,0.657974,0.117148,0.127471,0.979158,0.104914,0.331552,0.331745,0.160794,0.691468,0.342387,0.168053,0.345639,0.327413,0.309912,0.644564,0.839929,0.857729,0.733592,0.658416,0.148392,0.23358,0.931198,0.720754,0.79256,0.0659636,0.254603,0.286864,0.0467145,0.555913,0.606214,0.785619,0.433864,0.284737,0.144157,0.980006,0.877097,0.342129,0.558833,0.0501368,0.570244,0.259023,0.642419,0.252659,0.281588,0.455854,0.765948,0.106121,0.219938,0.21217,0.819462,0.260663,0.570081,0.724941,0.755431,0.133619,0.874881,0.206615,0.493351,0.924035,0.0121788,0.925469,0.848182,0.339506,0.701455,0.0984681,0.440863,0.413993,0.358855,0.836635,0.787358,0.220092,0.782231,0.621257,0.417906,0.77873,0.288322,0.458578,0.303389,0.752355,0.815726,0.262314,0.306832,0.289277,0.732027,0.872103,0.411145,0.0673963,0.830923,0.449444,0.65052,0.203551,0.0448701,0.698854,0.211039,0.539893,0.320784,0.438216,0.945444,0.495066,0.876667,0.659578,0.164713,0.227462,0.481159,0.243913,0.745216,0.258395,0.401365,0.0166849,0.924298,0.0680277,0.756725,0.177289,0.24375,0.84173,0.718417,0.77678,0.0667058,0.96166,0.794504,0.081062,0.250172,0.449169,0.942218,0.894737,0.609688,0.257814,0.951456,0.440619,0.0896342,0.818202,0.497238,0.311983,0.76005,0.867002,0.010399,0.836439,0.906578,0.221367,0.252832,0.206266,0.392096,0.746352,0.34934,0.667712,0.928089,0.696062,0.515039,0.506083,0.194397,0.595069,0.617648,0.240847,0.446144,0.67304,0.426829,0.85007,0.0332001,0.129593,0.84165,0.596363,0.513804,0.303893,0.881162,0.00265992,0.0439852,0.738018,0.886762,0.834749,0.625981,0.907462,0.480823,0.374021,0.389904,0.491288,0.0714101,0.120675,0.841569,0.0123084,0.343573,0.298711,0.461471,0.481615,0.798484,0.595291,0.229391,0.379827,0.349103,0.796346,0.427495,0.00134802,0.445091,0.244293,0.0580497,0.0215942,0.043123,0.180059,0.203914,0.819953,0.11714,0.856965,0.330762,0.703737,0.62627,0.62234,0.768391,0.987964,0.241037,0.074362,0.856217,0.482718,0.0162966,0.902569,0.844204,0.994764,0.519146,0.350099,0.126517,0.534732,0.337692,0.77451,0.967736,0.631458,0.99782,0.634005,0.849986,0.106906,0.382388,0.81813,0.324453,0.347188,0.500527,0.508187,0.23074,0.307266,0.814802,0.196302,0.452994,0.640824,0.609567,0.564668,0.819763,0.743071,0.173839,0.340898,0.54675,0.514993,0.104348,0.653393,0.0954565,0.968328,0.541952,0.519437,0.00297445,0.0173035,0.144914,0.186203,0.680655,0.817617,0.233689,0.639284,0.516575,0.250214,0.135947,0.923203,0.365999,0.118109,0.864378,0.798596,0.821873,0.689527,0.759551,0.257506,0.744164,0.211308,0.282125,0.586568,0.776268,0.0592547,0.955848,0.192571,0.284213,0.442287,0.901426,0.063799,0.234056,0.392653,0.760592,0.689289,0.0678812,0.480924,0.78875,0.578803,0.658379,0.117145,0.897511,0.16081,0.243482,0.23377,0.111581,0.878653,0.893901,0.623717,0.112648,0.27253,0.968337,0.577888,0.643013,0.482621,0.363239,0.796581,0.202121,0.411232,0.797066,0.17527,0.574062,0.163782,0.757726,0.349255,0.793832,0.487369,0.342561,0.896227,0.720668,0.243463,0.176235,0.683696,0.147396,0.732278,0.00121635,0.0121228,0.504914,0.109098,0.980278,0.124617,0.771589,0.206123,0.592692,0.739953,0.804898,0.654305,0.633229,0.52323,0.433563,0.786336,0.706797,0.343276,0.711197,0.190476,0.309868,0.85316,0.417926,0.0955873,0.379818,0.248262,0.224111,0.441072,0.949895,0.921274,0.0272432,0.606159,0.402316,0.220504,0.481602,0.888252,0.100684,0.987001,0.258624,0.903066,0.245857,0.426469,0.634708,0.719591,0.239966,0.00281084,0.723393,0.98695,0.920192,0.546498,0.209371,0.119132,0.342939,0.970298,0.995895,0.638495,0.457526,0.848482,0.134225,0.953039,0.871743,0.191239,0.42405,0.804121,0.46652,0.402986,0.528496,0.800464,0.29605,0.171927,0.812225,0.627354,0.779529,0.687517,0.177621,0.412237,0.700141,0.105589,0.241012,0.576412,0.181368,0.202413,0.93826,0.326359,0.396123,0.20142,0.554859,0.883607,0.999354,0.469,0.314767,0.778882,0.558253,0.659649,0.926844,0.398,0.424935,0.0509732,0.629253,0.649293,0.182245,0.762282,0.488481,0.833063,0.584405,0.24219,0.20252,0.855143,0.10732,0.791807,0.215971,0.315241,0.194515,0.40826,0.463085,0.530456,0.662863,0.707916,0.0302788,0.381472,0.92186,0.654463,0.022526,0.614542,0.81329,0.555218,0.678131,0.0732985,0.386981,0.97032,0.481694,0.997488,0.407099,0.182629,0.14445,0.820428,0.473584,0.970444,0.161698,0.279965,0.453051,0.62211,0.741111,0.484733,0.407861,0.286707,0.541714,0.677467,0.272844,0.750557,0.564407,0.0847402,0.372961,0.499064,0.243826,0.608899,0.162389,0.0875476,0.24827,0.529437,0.597046,0.596618,0.561458,0.732963,0.556663,0.805436,0.700949,0.3211,0.600854,0.19329,0.875138,0.0906357,0.783777,0.992164,0.237454,0.441297,0.0827991,0.490402,0.145492,0.962651,0.710813,0.443569,0.485574,0.765664,0.990423,0.545245,0.0611263,0.290863,0.184912,0.965265,0.844566,0.718892,0.551253,0.794031,0.586965,0.65593,0.442829,0.41325,0.00479001,0.657061,0.310534,0.6551,0.115274,0.358116,0.596158,0.557481,0.740707,0.737682,0.592609,0.491331,0.749623,0.46997,0.00586444,0.516775,0.233237,0.496915,0.456483,0.0229517,0.42138,0.292681,0.813586,0.603795,0.307612,0.319949,0.162484,0.317059,0.973596,0.227007,0.0372037,0.598409,0.460185,0.39016,0.911442,0.379966,0.205696,0.0479101,0.132242,0.206295,0.625509,0.826858,0.817155,0.816585,0.166607,0.083046,0.798388,0.226029,0.452417,0.0231787,0.839805,0.308745,0.86107,0.194232,0.537809,0.970191,0.985029,0.420692,0.506125,0.502799,0.634761,0.970843,0.660357,0.73197,0.929898,0.56851,0.808338,0.359948,0.8117,0.97057,0.639869,0.967806,0.883501,0.292883,0.180357,0.863726,0.0186237,0.470197,0.992747,0.140303,0.270422,0.451927,0.75726,0.242232,0.549066,0.541174,0.597662,0.296526,0.502837,0.363842,0.755309,0.100874,0.471842,0.60583,0.398194,0.401442,0.347358,0.406241,0.243414,0.667996,0.384985,0.752819,0.885452,0.982496,0.639293,0.701075,0.853379,0.111942,0.464063,0.77086,0.0882525,0.72237,0.77441,0.538765,0.261054,0.360834,0.842841,0.892097,0.0687451,0.918165,0.384314,0.172418,0.773695,0.989235,0.209979,0.198335,0.484863,0.649487,0.138519,0.563348,0.883306,0.391165,0.0398168,0.628031,0.372656,0.747613,0.780814,0.166748,0.322695,0.97275,0.811011,0.0381774,0.72985,0.220127,0.820441,0.319978,0.01687,0.652231,0.527063,0.59714,0.209339,0.387013,0.178937,0.434837,0.521711,0.79253,0.937421,0.169727,0.465904,0.432516,0.51243,0.349423,0.274481,0.671068,0.606722,0.358683,0.205673,0.22231,0.596967,0.629617,0.774827,0.621981,0.290279,0.728562,0.728068,0.674972,0.562215,0.0430251,0.451738,0.837834,0.174966,0.0235391,0.122129,0.684025,0.217281,0.569733,0.909567,0.0880837,0.820001,0.773469,0.415296,0.720338,0.34577,0.471894,0.70885,0.736995,0.0460543,0.742394,0.517296,0.93974,0.343654,0.864488,0.0164581,0.32648,0.818225,0.316895,0.702223,0.27771,0.800828,0.531518,0.798628,0.545625,0.39444,0.286646,0.864062,0.302335,0.194237,0.159652,0.419418,0.38457,0.552384,0.369666,0.335113,0.696236,0.451451,0.0446919,0.752351,0.257953,0.370657,0.0303902,0.675138,0.341784,0.843091,0.665849,0.909259,0.947911,0.74684,0.934085,0.276058,0.501558,0.0937929,0.577574,0.957817,0.154242,0.163347,0.62113,0.317728,0.963304,0.110956,0.879977,0.319504,0.0221878,0.947138,0.456194,0.324596,0.882948,0.120535,0.953129,0.834776,0.355183,0.942996,0.416602,0.235387,0.832696,0.249109,0.954046,0.711378,0.656129,0.763187,0.0871484,0.115134,0.7489,0.598393,0.955142,0.610637,0.842734,0.569859,0.334716,0.341127,0.0690839,0.664275,0.312182,0.180435,0.797289,0.0169644,0.864449,0.0632992,0.060209,0.41225,0.813219,0.25851,0.483101,0.141133,0.464106,0.62866,0.85226,0.93235,0.64497,0.668788,0.538102,0.970522,0.810434,0.389083,0.0455465,0.410259,0.844491,0.64577,0.141646,0.877574,0.578706,0.979134,0.827544,0.581798,0.817895,0.146917,0.271249,0.00158185,0.098191,0.0417328,0.890875,0.329647,0.708161,0.711278,0.762882,0.844219,0.240905,0.840073,0.227097,0.892567,0.274357,0.966706,0.63264,0.397374,0.297768,0.671153,0.762206,0.0587664,0.606188,0.764131,0.247756,0.0832824,0.684701,0.659677,0.0277435,0.897936,0.176736,0.817226,0.681526,0.105969,0.991041,0.450871,0.554225,0.290627,0.471621,0.138547,0.333144,0.688392,0.106067,0.745218,0.160478,0.636558,0.600717,0.608407,0.152151,0.00146371,0.959999,0.953394,0.726432,0.669788,0.102038,0.275605,0.353772,0.594759,0.239479,0.193506,0.0106304,0.0343326,0.526242,0.18732,0.992031,0.78512,0.739192,0.559318,0.960497,0.782778,0.0909827,0.765793,0.51945,0.549973,0.382944,0.657977,0.683157,0.470375,0.00749886,0.0812275,0.863148,0.121136,0.890836,0.561137,0.260988,0.851224,0.458949,0.846271,0.784532,0.855657,0.843787,0.120109,0.599853,0.893675,0.473758,0.763019,0.142936,0.753715,0.543871,0.523268,0.643976,0.123196,0.034105,0.266714,0.993869,0.0552279,0.111187,0.315085,0.411988,|0.534132,0.461518,0.40408,0.191878,0.672957,0.163728,0.193356,0.631812,0.267811,0.742845,0.521349,0.418199,0.25979,0.6918,0.024789,0.051439,0.00682014,0.578624,0.601643,0.564119,0.00711173,0.838642,0.655466,0.244618,0.790446,0.524432,0.476052,0.256022,0.484272,0.721325,0.644127,0.636354,0.897116,0.250523,0.0380743,0.457355,0.978776,0.543347,0.294715,0.613525,0.0157986,0.634101,0.441989,0.97811,0.271235,0.557103,0.431735,0.534411,0.450769,0.520991,0.793812,0.814447,0.121392,0.440846,0.477054,0.355261,0.103055,0.999338,0.0573409,0.338457,0.912378,0.714925,0.288123,0.796092,0.357519,0.980461,0.180865,0.183179,0.842142,0.10071,0.369759,0.211681,0.821242,0.547626,0.453038,0.655024,0.435669,0.933329,0.126712,0.808784,0.951563,0.842769,0.515932,0.23739,0.240556,0.391608,0.712423,0.983356,0.179692,0.278718,0.580793,0.555283,0.853255,0.270296,0.338818,0.722211,0.641905,0.609847,0.252201,0.4494,0.727798,0.445818,0.501577,0.957224,0.0264446,0.811045,0.843837,0.860301,0.564057,0.942475,0.231149,0.488817,0.468505,0.147043,0.0553146,0.169024,0.333979,0.9146,0.94401,0.855351,0.759669,0.165873,0.76854,0.277983,0.0422496,0.573347,0.0903147,0.472071,0.312926,0.609185,0.669172,0.381718,0.807701,0.988284,0.825162,0.551716,0.825162,0.13584,0.832501,0.0457174,0.211804,0.122225,0.717043,0.771892,0.715874,0.450713,0.8508,0.842953,0.516813,0.86793,0.388078,0.847872,0.897135,0.139121,0.750857,0.0329058,0.369806,0.313777,0.656546,0.545235,0.362898,0.672582,0.802275,0.818802,0.0098443,0.457327,0.526087,0.25787,0.59472,0.252759,0.970437,0.752957,0.887198,0.73995,0.372944,0.0824562,0.695067,0.0850169,0.11528,0.574201,0.0574596,0.490645,0.701536,0.925494,0.905542,0.659616,0.618706,0.247427,0.765702,0.0515998,0.347498,0.0303494,0.413018,0.877503,0.39486,0.237887,0.87717,0.332197,0.592147,0.644365,0.141766,0.244846,0.887004,0.992251,0.617331,0.262119,0.368276,0.575344,0.806854,0.714913,0.0257666,0.762486,0.315612,0.037782,0.739647,0.485412,0.50366,0.366181,0.508297,0.769705,0.359825,0.605605,0.88802,0.835416,0.0741664,0.781187,0.01269,0.841951,0.703278,0.717399,0.175207,0.118674,0.199619,0.716597,0.395398,0.0614837,0.100169,0.229663,0.0170572,0.683636,0.977421,0.0847495,0.962869,0.109004,0.921961,0.292724,0.838124,0.763952,0.669291,0.573379,0.210976,0.89036,0.510432,0.243488,0.441759,0.0832402,0.129458,0.708495,0.766072,0.0935303,0.765715,0.665017,0.0500355,0.948014,0.244506,0.0371249,0.0970954,0.393557,0.375379,0.837723,0.129363,0.20727,0.546224,0.0406789,0.208237,0.0445682,0.527282,0.190509,0.543548,0.0853083,0.438517,0.952068,0.665951,0.517117,0.534002,0.735771,0.863165,0.750201,0.00533229,0.401571,0.676625,0.0900179,0.729783,0.834526,0.0603486,0.188267,0.0334098,0.946378,0.277748,0.472891,0.166476,0.0820544,0.962594,0.805774,0.785609,0.656754,0.139087,0.798967,0.14074,0.76259,0.589378,0.785698,0.743458,0.164552,0.878302,0.578011,0.491271,0.748833,0.60351,0.923001,0.458931,0.377316,0.411085,0.962957,0.770806,0.57842,0.332193,0.102186,0.690966,0.0389906,0.253447,0.706258,0.230161,0.299835,0.279742,0.77656,0.344239,0.763016,0.257378,0.500583,0.476825,0.401323,0.731741,0.77238,0.179943,0.856955,0.622948,0.606163,0.430061,0.407332,0.0345224,0.718107,0.365962,0.28062,0.0186969,0.590544,0.519312,0.299889,0.55382,0.556918,0.0642481,0.319457,0.87877,0.566536,0.732005,0.302397,0.575005,0.816287,0.23236,0.0327181,0.300278,0.565774,0.706016,0.878411,0.13997,0.196981,0.672716,0.16995,0.466398,0.645248,0.809847,0.838009,0.891561,0.552115,0.562814,0.962761,0.124884,0.923755,0.185075,0.1178,0.46822,0.312513,0.323402,0.945884,0.693406,0.686508,0.286567,0.906601,0.422508,0.173544,0.340066,0.871976,0.144833,0.404861,0.249965,0.703706,0.774993,0.696315,0.124234,0.78937,0.0914975,0.831926,0.875248,0.973763,0.0488518,0.0367076,0.803759,0.0533586,0.865109,0.731484,0.600332,0.773584,0.875074,0.422126,0.632556,0.448178,0.453527,0.102964,0.708219,0.828507,0.788666,0.812359,0.821796,0.993937,0.29392,0.173632,0.872458,0.394071,0.705429,0.97733,0.101084,0.698214,0.391253,0.212554,0.688356,0.693627,0.204907,0.255739,0.730557,0.0854285,0.531919,0.782341,0.385001,0.515322,0.29035,0.132651,0.0324715,0.537693,0.718812,0.688219,0.313612,0.21767,0.183774,0.449576,0.106416,0.736885,0.708649,0.149765,0.750295,0.795928,0.582554,0.573564,0.771512,0.582779,0.0595134,0.40651,0.345068,0.230384,0.716756,0.899182,0.0306282,0.559787,0.957024,0.282929,0.603886,0.552589,0.0708116,0.858046,0.441319,0.26441,0.371218,0.0592763,0.259378,0.231704,0.510778,0.533646,0.442416,0.815073,0.489634,0.407721,0.662305,0.45361,0.167664,0.260987,0.0760449,0.348046,0.588032,0.967145,0.838755,0.530992,0.796343,0.134904,0.474035,0.297756,0.618304,0.877958,0.569938,0.787245,0.611029,0.483202,0.891494,0.516291,0.987683,0.542831,0.0996953,0.623474,0.605557,0.144243,0.898916,0.812668,0.0945573,0.920167,0.100508,0.809528,0.887823,0.385941,0.651087,0.699374,0.521887,0.719746,0.484894,0.399912,0.700594,0.417835,0.807229,0.771322,0.622749,0.0974442,0.721241,0.644607,0.818321,0.132266,0.0877602,0.609155,0.0146045,0.806561,0.841041,0.182394,0.00937933,0.485207,0.608533,0.159041,0.103529,0.716732,0.705053,0.572719,0.908466,0.162455,0.238677,0.320464,0.0444933,0.405074,0.710768,0.489328,0.22968,0.039896,0.68248,0.470624,0.664903,0.150806,0.00346208,0.518356,0.0808892,0.680865,0.268151,0.650666,0.86156,0.182091,0.144597,0.624032,0.643176,0.992035,0.834083,0.335011,0.528578,0.0819895,0.14713,0.384634,0.453662,0.556733,0.200109,0.379937,0.691361,0.377236,0.663962,0.0375476,0.449501,0.181564,0.259198,0.0966109,0.948922,0.034924,0.104043,0.393832,0.471337,0.528271,0.728271,0.535566,0.191557,0.459547,0.619,0.965072,0.660276,0.0696878,0.20267,0.898554,0.452745,0.588605,0.342958,0.936494,0.346183,0.990344,0.374823,0.93802,0.0110156,0.660451,0.210474,0.787189,0.678363,0.193891,0.925726,0.681385,0.511065,0.755292,0.160788,0.0610961,0.380531,0.555857,0.511769,0.254301,0.977894,0.195095,0.105957,0.470657,0.0960957,0.322966,0.869155,0.739527,0.270151,0.133989,0.333301,0.450617,0.295206,0.404385,0.72292,0.0144942,0.943594,0.812575,0.890817,0.873777,0.641237,0.125597,0.236415,0.930697,0.251693,0.351628,0.876143,0.985677,0.355506,0.707501,0.522844,0.287614,0.14429,0.831055,0.743373,0.218018,0.913925,0.0578123,0.762685,0.433052,0.378587,0.752845,0.261724,0.705544,0.615548,0.0586711,0.621381,0.134633,0.643932,0.579547,0.443002,0.317047,0.43023,0.263959,0.661082,0.0916584,0.974598,0.882864,0.692008,0.970706,0.378201,0.964192,0.24209,0.0802867,0.820553,0.0539988,0.390981,0.515201,0.553818,0.717926,0.135053,0.725875,0.875613,0.39464,0.990571,0.885558,0.98024,0.504722,0.307202,0.852065,0.329897,0.148731,0.281257,0.757124,0.399475,0.711766,0.712632,0.667129,0.806203,0.800074,0.045693,0.257491,0.95412,0.421084,0.84063,0.00947332,0.806569,0.741826,0.438303,0.952617,0.713638,0.926863,0.0362155,0.758012,0.482787,0.706085,0.131278,0.123387,0.25187,0.667691,0.587324,0.154232,0.181208,0.900494,0.909253,0.31938,0.0891874,0.107371,0.928069,0.680667,0.856117,0.0309547,0.495506,0.299812,0.638041,0.430822,0.341084,0.882897,0.210612,0.538842,0.201344,0.745004,0.0827104,0.185073,0.283949,0.601346,0.361815,0.382571,0.329047,0.127195,0.857217,0.0673079,0.368303,0.726944,0.694014,0.676089,0.996058,0.410441,0.357101,0.987347,0.0343749,0.264222,0.287826,0.823353,0.447093,0.936073,0.881844,0.463155,0.035718,0.729564,0.639976,0.181029,0.74516,0.986938,0.558099,0.106227,0.663031,0.203568,0.841062,0.165635,0.962254,0.663887,0.101246,0.631144,0.0877667,0.481244,0.372213,0.478068,0.770079,0.739281,0.288016,0.111808,0.703994,0.324893,0.39779,0.550762,0.0285298,0.49982,0.94201,0.923788,0.3772,0.0166678,0.861816,0.205635,0.442455,0.93273,0.656209,0.289577,0.00256366,0.169942,0.840244,0.345921,0.0367832,0.125419,0.75738,0.854132,0.406179,0.121975,0.0943447,0.783013,0.457646,0.152648,0.831719,0.693526,0.737512,0.593879,0.646599,0.0881842,0.982703,0.0144966,0.0863065,0.945,0.522296,0.447513,0.380865,0.503513,0.403945,0.898486,0.706166,0.646597,0.609174,0.359434,0.965261,0.219214,0.361134,0.590097,0.779054,0.307774,0.838892,0.785105,0.847638,0.458579,0.714212,0.231168,0.907422,0.891625,0.131285,0.865733,0.18541,0.768083,0.897633,0.688584,0.838884,0.0629804,0.890842,0.448492,0.957833,0.810119,0.930026,0.72748,0.732137,0.876358,0.365875,0.322016,0.437635,0.521839,0.287771,0.753992,0.425522,0.391144,0.476116,0.114762,0.559201,0.0835837,0.323864,0.398256,0.078661,0.361657,0.651182,0.0250448,0.407581,0.750044,0.56946,0.781238,0.458389,0.571702,0.102577,0.328978,0.462839,0.308409,0.720286,0.717706,0.926047,0.839238,0.0395417,0.899549,0.370908,0.837584,0.908208,0.132161,0.609374,0.900742,0.559656,0.828055,0.800375,0.810112,0.310637,0.0941542,0.618044,0.660568,0.478078,0.10698,0.905973,0.786186,0.570719,0.815083,0.973599,0.787382,0.722568,0.944572,0.121089,0.617547,0.102467,0.7922,0.241494,0.454392,0.774546,0.0440651,0.288138,0.0019291,0.126773,0.837491,0.441541,0.274506,0.305188,0.413007,0.984854,0.584863,0.614372,0.379747,0.160796,0.593093,0.237376,0.41465,0.603677,0.838406,0.210845,0.716527,0.815864,0.918111,|0.221192,0.534727,0.355117,0.143376,0.841982,0.210732,0.577903,0.869212,0.212075,0.329369,0.289198,0.772264,0.317471,0.0216548,0.687337,0.766162,0.900022,0.00976557,0.906235,0.262291,0.598418,0.400978,0.765547,0.88153,0.851307,0.205996,0.268065,0.831547,0.648194,0.474323,0.844926,0.174325,0.604708,0.776353,0.712665,0.282701,0.496202,0.267766,0.354332,0.484745,0.170366,0.373412,0.678162,0.936558,0.713604,0.971071,0.730285,0.836075,0.243157,0.209163,0.104168,0.971611,0.39948,0.0134296,0.852535,0.922351,0.673422,0.233987,0.855251,0.60991,0.537151,0.712657,0.361005,0.309641,0.0968533,0.231299,0.599487,0.0699213,0.887239,0.493474,0.406663,0.0422875,0.0349812,0.32866,0.994317,0.339323,0.842682,0.530251,0.682326,0.00644362,0.192543,0.574512,0.580654,0.52717,0.555674,0.764815,0.920922,0.904041,0.562124,0.683008,0.266107,0.317049,0.0218637,0.466236,0.335924,0.0534904,0.613706,0.742282,0.0113714,0.991912,0.178579,0.493924,0.486738,0.0927013,0.799658,0.857372,0.731904,0.263101,0.498923,0.48897,0.575706,0.862922,0.27043,0.993501,0.616347,0.920147,0.808841,0.165429,0.788148,0.423458,0.197538,0.414398,0.965149,0.884092,0.306929,0.11263,0.528535,0.0667029,0.0646425,0.556746,0.716122,0.46992,0.828015,0.252657,0.930437,0.366648,0.622791,0.131458,0.30272,0.876105,0.333526,0.882968,0.348094,0.305688,0.733814,0.679118,0.773706,0.671894,0.0588666,0.265971,0.754419,0.562681,0.310782,0.0795324,0.476967,0.172455,0.333638,0.799778,0.411701,0.13038,0.300514,0.761935,0.00465697,0.265926,0.457386,0.0714717,0.841168,0.624908,0.684841,0.220117,0.578004,0.0874078,0.314167,0.971482,0.966629,0.225242,0.602529,0.848658,0.0902,0.538612,0.832565,0.788427,0.22508,0.298497,0.450401,0.0349694,0.999818,0.257275,0.486475,0.222175,0.355744,0.202897,0.379407,0.735095,0.809248,0.735976,0.165664,0.651643,0.150728,0.999574,0.260721,0.0331935,0.252464,0.550349,0.76698,0.656267,0.337729,0.328517,0.0588314,0.0727881,0.0423429,0.417335,0.099236,0.854235,0.0483438,0.549447,0.769865,0.182949,0.451383,0.370998,0.688845,0.254391,0.0790064,0.265688,0.82604,0.321036,0.0136225,0.685721,0.0880023,0.237752,0.597519,0.0100881,0.839804,0.0406375,0.269146,0.801604,0.460926,0.786479,0.0896788,0.330503,0.218467,0.377784,0.574529,0.48719,0.639485,0.206048,0.576176,0.368493,0.764718,0.396105,0.560822,0.249238,0.593886,0.599021,0.121149,0.714391,0.981755,0.490698,0.000760198,0.147106,0.828579,0.0215831,0.969907,0.544836,0.146786,0.735186,0.700417,0.704013,0.258225,0.968568,0.806636,0.87706,0.299883,0.360169,0.70163,0.33968,0.324789,0.418467,0.257852,0.420647,0.858837,0.336489,0.362161,0.499102,0.675168,0.0806506,0.93882,0.854643,0.542372,0.148477,0.794851,0.0537187,0.658417,0.101102,0.0999303,0.0273248,0.0141983,0.887022,0.497967,0.324197,0.544196,0.710833,0.698342,0.193006,0.630275,0.90596,0.312945,0.651951,0.758952,0.787139,0.667078,0.319378,0.959591,0.944832,0.597483,0.629977,0.0907278,0.174146,0.360814,0.925869,0.560354,0.538991,0.620353,0.0455466,0.808999,0.190295,0.515044,0.570896,0.752917,0.119145,0.420357,0.386841,0.86368,0.543036,0.212603,0.572119,0.475468,0.287001,0.984436,0.16593,0.53994,0.606661,0.922434,0.384287,0.376495,0.832883,0.499737,0.939442,0.244441,0.252321,0.571125,0.142931,0.957391,0.0624114,0.574981,0.837836,0.805656,0.750415,0.988838,0.82113,0.588819,0.930092,0.920494,0.028721,0.854732,0.402791,0.261059,0.539616,0.278196,0.187104,0.178623,0.310673,0.259509,0.205135,0.372843,0.893967,0.587977,0.446643,0.227883,0.70185,0.510823,0.0191009,0.95121,0.887602,0.342587,0.200868,0.855152,0.54882,0.900723,0.950223,0.935128,0.448528,0.712688,0.376055,0.902624,0.157195,0.674506,0.0610357,0.546381,0.890488,0.902938,0.24793,0.234399,0.293456,0.984434,0.288101,0.994798,0.685725,0.249896,0.271305,0.0220892,0.73328,0.788202,0.127206,0.523493,0.255522,0.116799,0.968902,0.959283,0.554509,0.597948,0.776315,0.770476,0.277945,0.314764,0.684828,0.684353,0.622531,0.740003,0.586951,0.153503,0.986452,0.0331758,0.501574,0.892525,0.649042,0.154849,0.196071,0.645744,0.563282,0.108404,0.196384,0.829083,0.737619,0.981668,0.227481,0.590236,0.71098,0.550272,0.388669,0.325619,0.750091,0.633497,0.0240342,0.310495,0.243749,0.834805,0.230344,0.268995,0.270668,0.926732,0.8752,0.259985,0.680647,0.775514,0.938766,0.655825,0.730935,0.0776423,0.526194,0.762129,0.0043838,0.744351,0.223329,0.0187021,0.140809,0.573726,0.886491,0.90269,0.14489,0.471773,0.896194,0.781573,0.958317,0.231545,0.690955,0.84542,0.348166,0.428121,0.111356,0.742023,0.399884,0.576066,0.952549,0.0879729,0.253547,0.887896,0.68754,0.61724,0.65228,0.619309,0.00359005,0.85719,0.0466036,0.854957,0.445908,0.682837,0.98075,0.609327,0.0946696,0.496205,0.808796,0.908341,0.298507,0.9635,0.744888,0.545116,0.651724,0.0559587,0.289729,0.800729,0.723174,0.546537,0.0700874,0.584772,0.246235,0.281333,0.897455,0.42761,0.7743,0.30733,0.767368,0.280141,0.0369875,0.0254038,0.0674454,0.130683,0.195007,0.508089,0.0439374,0.475912,0.323257,0.890069,0.189215,0.857503,0.771542,0.671027,0.626593,0.575337,0.739721,0.421902,0.913493,0.780694,0.894324,0.437423,0.461807,0.457057,0.991542,0.947643,0.932296,0.203057,0.121455,0.150679,0.516603,0.261054,0.189024,0.507293,0.107171,0.730249,0.559273,0.23748,0.827634,0.230428,0.907549,0.19924,0.337234,0.0716525,0.137234,0.413285,0.291911,0.409269,0.675921,0.218479,0.681599,0.104567,0.386088,0.362321,0.992482,0.236722,0.00716555,0.90106,0.802471,0.906628,0.910468,0.492733,0.367474,0.37075,0.933415,0.867685,0.0897399,0.80758,0.474704,0.241887,0.896476,0.672051,0.688196,0.785211,0.291073,0.609204,0.0904332,0.231176,0.139251,0.471043,0.936281,0.00243318,0.883274,0.682145,0.989325,0.723971,0.991432,0.320876,0.138586,0.893688,0.0386447,0.313375,0.190776,0.0283853,0.719674,0.539757,0.412522,0.959358,0.173662,0.749353,0.43471,0.737923,0.653217,0.0871615,0.609106,0.280875,0.105326,0.823571,0.937224,0.683744,0.878025,0.119414,0.394685,0.859044,0.20153,0.544043,0.535491,0.21363,0.753298,0.564979,0.215494,0.361519,0.739842,0.935849,0.515236,0.667457,0.877608,0.161994,0.0172868,0.525137,0.778804,0.46105,0.616226,0.567679,0.942122,0.902213,0.17778,0.764432,0.0372703,0.807206,0.162007,0.424291,0.830953,0.148991,0.412261,0.504133,0.00180888,0.527104,0.47759,0.840535,0.549013,0.647102,0.134119,0.640556,0.900191,0.356801,0.590611,0.800637,0.608816,0.842846,0.835141,0.777342,0.0796136,0.880942,0.210474,0.293945,0.446191,0.995871,0.708801,0.625035,0.0545847,0.609637,0.737038,0.175549,0.0541283,0.589514,0.497738,0.517628,0.00890589,0.935928,0.910076,0.811738,0.717918,0.100548,0.171288,0.150498,0.341278,0.338934,0.590118,0.327843,0.246999,0.508413,0.485353,0.276209,0.391726,0.0215312,0.650208,0.688877,0.251857,0.852898,0.509272,0.175541,0.660316,0.983084,0.989255,0.0315138,0.871225,0.606852,0.916253,0.127794,0.217114,0.811759,0.663419,0.026256,0.495348,0.816656,0.35623,0.423826,0.64921,0.385756,0.25031,0.879381,0.497383,0.175908,0.30519,0.590318,0.804444,0.415282,0.911892,0.42182,0.759649,0.346351,0.763683,0.996606,0.112521,0.529181,0.230206,0.514955,0.980843,0.467237,0.426714,0.542929,0.822039,0.558127,0.203368,0.12006,0.127013,0.862108,0.873938,0.505146,0.658664,0.742226,0.561012,0.770429,0.08447,0.443418,0.388569,0.654947,0.711714,0.082018,0.830121,0.177896,0.372606,0.898463,0.584935,0.0177268,0.412911,0.723575,0.575191,0.378297,0.726794,0.381828,0.359091,0.376791,0.629239,0.85653,0.609194,0.14677,0.287164,0.651047,0.302185,0.00632113,0.0411728,0.466668,0.375719,0.462742,0.271691,0.602083,0.441833,0.867748,0.647955,0.766047,0.104506,0.25309,0.773089,0.814141,0.171182,0.241255,0.971593,0.111136,0.108182,0.963863,0.0666944,0.762588,0.548785,0.753769,0.614991,0.185457,0.790461,0.963525,0.725009,0.950031,0.820199,0.0304998,0.791324,0.184444,0.940066,0.0711358,0.874948,0.906627,0.803132,0.477808,0.328199,0.652052,0.824907,0.846039,0.65653,0.408506,0.201786,0.86894,0.929075,0.838276,0.235803,0.528221,0.327274,0.973506,0.125003,0.880865,0.796976,0.00411701,0.598318,0.932766,0.503034,0.496923,0.576194,0.169203,0.245182,0.263515,0.93879,0.749204,0.746416,0.928353,0.823353,0.446379,0.920293,0.942859,0.883545,0.986283,0.824491,0.758092,0.354399,0.80882,0.806124,0.552927,0.486785,0.2902,0.9201,0.929291,0.0401542,0.534267,0.104978,0.629912,0.872903,0.287174,0.927281,0.119435,0.467548,0.229733,0.264035,0.184338,0.0445937,0.0800523,0.0900264,0.553612,0.0351968,0.859957,0.891108,0.22457,0.798058,0.70522,0.142022,0.0781842,0.178085,0.0344024,0.983599,0.613874,0.352085,0.334952,0.00630385,0.685666,0.528457,0.704461,0.169919,0.103449,0.61813,0.969595,0.310658,0.125852,0.279403,0.110432,0.69794,0.126757,0.55086,0.554144,0.097163,0.057777,0.896843,0.491761,0.518537,0.467281,0.908602,0.807694,0.764339,0.928833,0.87603,0.42489,0.652268,0.885815,0.769441,0.832755,0.349767,0.950789,0.0328156,0.276517,0.714592,0.893701,0.319616,0.675459,0.0613072,0.322819,0.779815,0.779182,0.98596,0.604808,0.273605,0.812086,0.399632,0.478449,0.571774,0.354924,0.869872,0.293698,0.901167,0.906752,0.954714,0.943772,0.744972,0.34016,0.720883,0.327021,0.709052,0.633596,0.766479,0.75706,0.109593,0.369919,0.65755,|0.882787,0.0792872,0.0946059,0.528345,0.685593,0.174206,0.961254,0.310225,0.223897,0.48272,0.824044,0.617819,0.578439,0.290978,0.0246884,0.408547,0.596162,0.586151,0.435603,0.683817,0.195423,0.369195,0.757544,0.25253,0.912055,0.260395,0.724742,0.418272,0.152697,0.308822,0.347589,0.145665,0.13722,0.00549734,0.178148,0.600765,0.588221,0.205886,0.557968,0.849935,0.112303,0.195301,0.0169083,0.648648,0.307945,0.484132,0.450781,0.200273,0.654812,0.549742,0.928949,0.00900507,0.365926,0.0463887,0.549198,0.785187,0.875195,0.341473,0.661278,0.672825,0.586256,0.39818,0.356071,0.560056,0.313086,0.887788,0.631831,0.123677,0.191085,0.378768,0.285456,0.694887,0.176838,0.342503,0.10368,0.819538,0.334479,0.311543,0.252003,0.342162,0.640734,0.204527,0.882131,0.0905771,0.0906636,0.873399,0.705719,0.410081,0.0174795,0.46551,0.34183,0.171692,0.570968,0.148324,0.146015,0.739048,0.230065,0.835406,0.350674,0.0351582,0.167776,0.00393438,0.131606,0.574219,0.715828,0.855471,0.176263,0.825959,0.574095,0.268197,0.453103,0.862451,0.00905949,0.51619,0.6322,0.944704,0.201819,0.830966,0.938161,0.0652387,0.381443,0.219583,0.634474,0.0946001,0.632727,0.774068,0.636835,0.764547,0.50965,0.152624,0.570354,0.136908,0.36434,0.288638,0.109842,0.820475,0.447274,0.9113,0.268462,0.239612,0.715798,0.424917,0.542328,0.814918,0.244186,0.810125,0.823303,0.971789,0.957582,0.724717,0.389196,0.394189,0.135655,0.62639,0.967959,0.901145,0.591002,0.564472,0.303119,0.792952,0.609624,0.696664,0.531165,0.869802,0.34638,0.0491696,0.227873,0.238311,0.376094,0.858692,0.582942,0.691747,0.680451,0.419137,0.581054,0.586693,0.426135,0.70971,0.309998,0.299407,0.403253,0.227898,0.581355,0.83031,0.303837,0.212433,0.55835,0.102844,0.0507869,0.927156,0.270809,0.672811,0.319036,0.126877,0.985342,0.194508,0.349362,0.342351,0.348371,0.00871372,0.117229,0.608601,0.666614,0.125799,0.784666,0.914703,0.825942,0.24522,0.598351,0.976455,0.997393,0.874255,0.606983,0.412866,0.55912,0.795684,0.920726,0.796529,0.918188,0.191601,0.710872,0.753593,0.567844,0.432145,0.308442,0.474657,0.360422,0.892327,0.0453439,0.236201,0.21073,0.784698,0.500564,0.944585,0.965367,0.21526,0.30049,0.430178,0.457741,0.344485,0.0624766,0.311147,0.40374,0.318463,0.514998,0.0297242,0.165051,0.95051,0.448521,0.892972,0.159368,0.781933,0.191858,0.430388,0.71308,0.674143,0.0628744,0.0960338,0.810509,0.267842,0.912246,0.211585,0.940295,0.530836,0.300018,0.617392,0.252348,0.686248,0.645404,0.108289,0.118534,0.263796,0.844762,0.859781,0.823363,0.291201,0.308394,0.146623,0.753013,0.189977,0.123057,0.762668,0.459166,0.816359,0.757253,0.875362,0.254718,0.282158,0.21685,0.866885,0.870095,0.0399324,0.520335,0.0574287,0.918761,0.783667,0.625643,0.558073,0.754328,0.195003,0.516083,0.168055,0.306444,0.996606,0.879041,0.649041,0.0364692,0.922206,0.912723,0.683733,0.552308,0.730206,0.283906,0.00409663,0.935303,0.509225,0.830979,0.769358,0.317864,0.108755,0.333276,0.526476,0.484904,0.0671318,0.67259,0.141399,0.503367,0.487998,0.0145299,0.728433,0.972102,0.753276,0.810879,0.426353,0.611024,0.8852,0.626872,0.743251,0.45234,0.378689,0.688862,0.964156,0.847111,0.353087,0.452153,0.487156,0.404265,0.0376155,0.953619,0.509421,0.578077,0.465158,0.69498,0.290895,0.330912,0.921704,0.716309,0.0681783,0.0744109,0.854537,0.980263,0.834011,0.169373,0.946287,0.136466,0.332837,0.445384,0.22496,0.165717,0.793626,0.666894,0.405008,0.329798,0.675263,0.795644,0.663611,0.31938,0.455528,0.243716,0.898061,0.354942,0.249851,0.897187,0.416478,0.26773,0.993693,0.206834,0.568717,0.22744,0.777084,0.364516,0.292211,0.616697,0.372005,0.447892,0.476256,0.787537,0.49946,0.678937,0.689025,0.951689,0.654896,0.401704,0.414637,0.296558,0.406116,0.29424,0.653279,0.201027,0.681068,0.0097385,0.544599,0.900508,0.681553,0.412449,0.140205,0.132596,0.499152,0.787403,0.181074,0.377072,0.534616,0.158212,0.706533,0.792329,0.617349,0.600028,0.722527,0.503837,0.357333,0.469514,0.550738,0.990951,0.17266,0.864859,0.0798866,0.460457,0.675262,0.28907,0.268353,0.0315539,0.45251,0.445348,0.435558,0.212423,0.100066,0.704051,0.508292,0.658011,0.723059,0.119712,0.69489,0.603396,0.525109,0.174655,0.423451,0.728094,0.62868,0.264042,0.0831498,0.38804,0.170518,0.123145,0.207067,0.483698,0.246095,0.235967,0.510224,0.191797,0.16587,0.624011,0.0292693,0.738082,0.69675,0.0351022,0.745723,0.243476,0.495377,0.613473,0.281197,0.706868,0.980062,0.26684,0.339821,0.749503,0.51235,0.376095,0.449785,0.509234,0.530512,0.121696,0.808917,0.273695,0.381533,0.962268,0.421069,0.76938,0.0326564,0.786076,0.0490357,0.387908,0.891066,0.726173,0.893011,0.568891,0.84885,0.721995,0.645542,0.433164,0.34241,0.554177,0.0682833,0.888714,0.996987,0.630233,0.80285,0.724804,0.719361,0.141556,0.76635,0.26352,0.38811,0.697011,0.213877,0.712512,0.83017,0.758683,0.319576,0.298293,0.386507,0.792418,0.202215,0.269839,0.257064,0.330156,0.794316,0.863528,0.200009,0.163749,0.435591,0.324125,0.314171,0.474669,0.688887,0.207843,0.644695,0.744136,0.157259,0.811671,0.089367,0.74833,0.73306,0.913538,0.834041,0.413079,0.407444,0.0918179,0.442325,0.0787972,0.633076,0.0851145,0.646831,0.988656,0.351785,0.331398,0.809146,0.622928,0.195171,0.828168,0.0888516,0.632818,0.557821,0.407715,0.404421,0.679477,0.791492,0.0550188,0.117437,0.70968,0.267421,0.499549,0.977559,0.963479,0.526439,0.619592,0.716258,0.927167,0.832935,0.766532,0.521388,0.961728,0.175536,0.774025,0.140865,0.149841,0.0941983,0.349305,0.532916,0.179456,0.0617719,0.965809,0.24685,0.894706,0.192686,0.658251,0.0384986,0.0670478,0.972135,0.172673,0.505067,0.329892,0.991039,0.909658,0.0825235,0.158285,0.764809,0.534901,0.680385,0.100055,0.707996,0.676912,0.238614,0.23218,0.420348,0.360217,0.648088,0.693428,0.13565,0.676391,0.473312,0.865547,0.688211,0.346826,0.343921,0.753161,0.578872,0.756468,0.282756,0.0238142,0.452556,0.678092,0.258839,0.934119,0.735134,0.209847,0.821126,0.924337,0.771096,0.0408233,0.245234,0.193555,0.267592,0.214453,0.904773,0.445052,0.221179,0.456053,0.847957,0.854283,0.870316,0.11422,0.199053,0.040642,0.227415,0.710742,0.970035,0.676949,0.561172,0.00568587,0.405142,0.821222,0.495914,0.0151386,0.422263,0.629111,0.241053,0.928706,0.873172,0.00102341,0.194376,0.326147,0.0604705,0.488467,0.494932,0.507827,0.824311,0.135502,0.79238,0.570613,0.322477,0.893718,0.424115,0.48275,0.317018,0.0131032,0.630028,0.762851,0.973992,0.768296,0.931158,0.822764,0.723991,0.547985,0.232921,0.651302,0.0421694,0.548478,0.834347,0.846826,0.918876,0.839619,0.523124,0.500439,0.471878,0.547064,0.120396,0.311428,0.966073,0.693863,0.3476,0.575645,0.619189,0.709145,0.683553,0.676661,0.772995,0.974297,0.104972,0.813032,0.0449216,0.00274295,0.530638,0.16624,0.508632,0.0880115,0.618346,0.602681,0.0720996,0.4099,0.0748863,0.0770108,0.772528,0.00790989,0.814256,0.293183,0.816119,0.164545,0.244099,0.740309,0.749762,0.664606,0.026246,0.510878,0.116529,0.845955,0.924599,0.409078,0.0430158,0.385488,0.0403678,0.526833,0.775763,0.686665,0.307841,0.966684,0.892242,0.67784,0.64527,0.418492,0.450599,0.642329,0.394479,0.376611,0.187811,0.641453,0.219199,0.885314,0.542659,0.763138,0.352728,0.746839,0.622887,0.751783,0.329098,0.237135,0.854076,0.536773,0.617907,0.332616,0.647117,0.360665,0.403957,0.894685,0.489321,0.685243,0.317457,0.227344,0.0286354,0.352305,0.105775,0.310191,0.126225,0.0509154,0.00640357,0.21464,0.0206316,0.432205,0.67757,0.62352,0.343554,0.0643771,0.59278,0.137337,0.313332,0.0612535,0.799913,0.251927,0.10678,0.372773,0.508637,0.263948,0.702292,0.0494016,0.924762,0.517399,0.915224,0.717452,0.416499,0.665925,0.188626,0.639407,0.766785,0.87858,0.717288,0.637105,0.854256,0.1761,0.697206,0.478945,0.565568,0.751903,0.507167,0.131869,0.67503,0.318676,0.122728,0.578028,0.232268,0.695871,0.0706052,0.333569,0.532767,0.0873522,0.439019,0.615231,0.505182,0.223379,0.844157,0.910626,0.44758,0.0711443,0.536749,0.0984509,0.0655435,0.492039,0.547985,0.00445986,0.251748,0.929855,0.225466,0.468869,0.600819,0.458098,0.316214,0.767883,0.720356,0.339293,0.0740135,0.171932,0.312595,0.448532,0.873706,0.975493,0.0899596,0.496661,0.0662083,0.874364,0.795907,0.384143,0.46596,0.371244,0.216929,0.511599,0.0502885,0.979412,0.298445,0.662235,0.608812,0.73325,0.536604,0.898349,0.900112,0.868656,0.61273,0.538073,0.0510365,0.50666,0.659809,0.115203,0.0474131,0.736661,0.199952,0.199707,0.79675,0.816904,0.681781,0.58024,0.374639,0.836195,0.158403,0.599911,0.375327,0.0620416,0.960818,0.309891,0.551947,0.859424,0.748582,0.0676211,0.273336,0.100053,0.166967,0.0143975,0.706181,0.624557,0.319337,0.270433,0.898242,0.128588,0.973523,0.87527,0.97187,0.515375,0.923119,0.591027,0.221159,0.234519,0.31659,0.913736,0.933602,0.759199,0.164508,0.516004,0.218046,0.606058,0.170889,0.168136,0.15943,0.400264,0.356054,0.690317,0.0973553,0.372102,0.137194,0.325839,0.807545,0.269366,0.592303,0.198771,0.378032,0.821042,0.177632,0.252208,0.485838,0.943908,0.286856,0.00759268,0.200855,0.396127,0.51202,0.595251,0.115982,0.85515,0.477321,0.711152,0.403911,0.778321,0.515181,0.721777,0.106659,0.549353,0.212477,0.182427,0.949387,0.122259,0.0371272,0.544235,0.805176,0.198611,0.531198,|0.630389,0.134304,0.225427,0.900813,0.282415,0.563374,0.440166,0.308904,0.603512,0.474836,0.090247,0.731721,0.887161,0.472588,0.147342,0.715705,0.207794,0.790815,0.96203,0.427826,0.954958,0.275314,0.515516,0.350846,0.374273,0.883494,0.975178,0.639584,0.538804,0.681439,0.878214,0.817121,0.0956193,0.599141,0.0758855,0.201848,0.775737,0.59942,0.99541,0.224921,0.283724,0.597376,0.465334,0.0539483,0.501883,0.289355,0.0227501,0.752312,0.465345,0.703322,0.283327,0.466962,0.935938,0.278495,0.257503,0.781385,0.271439,0.525365,0.40714,0.0386608,0.840294,0.600223,0.713287,0.806933,0.774477,0.986253,0.398806,0.0408331,0.565638,0.988165,0.64611,0.763009,0.226645,0.51168,0.804114,0.911024,0.982953,0.710472,0.23374,0.684175,0.65942,0.186949,0.867515,0.538198,0.927915,0.290241,0.720407,0.710092,0.0867451,0.569965,0.952672,0.629081,0.855916,0.837183,0.235208,0.245411,0.791613,0.482334,0.894426,0.415051,0.323135,0.578113,0.132504,0.0481408,0.0551091,0.364244,0.323891,0.37972,0.412467,0.421822,0.93458,0.197178,0.856224,0.140594,0.750045,0.334765,0.690037,0.857208,0.269671,0.702349,0.959208,0.859244,0.157699,0.949646,0.415489,0.558661,0.592262,0.901709,0.122194,0.567127,0.210117,0.0162176,0.655809,0.166029,0.898138,0.252073,0.412178,0.923257,0.0481194,0.314378,0.68967,0.65334,0.993992,0.693137,0.719715,0.339335,0.622137,0.467057,0.510503,0.1442,0.5019,0.704319,0.88365,0.0458856,0.0808281,0.98095,0.999041,0.840727,0.451432,0.572066,0.581255,0.904261,0.640898,0.976089,0.883165,0.65084,0.859816,0.547217,0.936451,0.947045,0.189838,0.36013,0.717706,0.513742,0.482254,0.88747,0.984573,0.101004,0.660679,0.176848,0.43993,0.970507,0.0915915,0.609953,0.978193,0.725869,0.211373,0.726525,0.102561,0.546286,0.975495,0.658597,0.593561,0.207677,0.7988,0.909727,0.973784,0.960945,0.377581,0.0982072,0.0788031,0.129533,0.211818,0.18004,0.807056,0.81056,0.990513,0.15104,0.67452,0.461944,0.00510633,0.705485,0.632071,0.430303,0.424334,0.539284,0.518178,0.392147,0.108308,0.715846,0.71235,0.707973,0.150327,0.636737,0.390161,0.0790167,0.179136,0.158872,0.887943,0.868085,0.0852727,0.52191,0.253271,0.395525,0.92037,0.0941969,0.0712163,0.135286,0.356772,0.616299,0.53772,0.553023,0.0122504,0.235147,0.47769,0.707826,0.266355,0.51735,0.35093,0.581597,0.0871192,0.219446,0.808503,0.828497,0.249659,0.276187,0.825018,0.338876,0.698568,0.258975,0.557363,0.919028,0.957791,0.257203,0.769105,0.578502,0.300799,0.599775,0.101273,0.850412,0.961066,0.217777,0.957516,0.932447,0.874665,0.534537,0.0694417,0.665045,0.784092,0.847972,0.569391,0.0402973,0.467382,0.71818,0.0318498,0.109956,0.880288,0.993075,0.997547,0.881149,0.120268,0.171264,0.962025,0.311952,0.738324,0.908,0.136147,0.936793,0.0352767,0.519535,0.655718,0.601807,0.925292,0.740538,0.94776,0.788069,0.524596,0.401599,0.865432,0.344891,0.577403,0.772972,0.758817,0.933652,0.938114,0.106814,0.613874,0.141697,0.545202,0.487716,0.310358,0.650112,0.790257,0.435858,0.375666,0.190756,0.511234,0.769321,0.888309,0.324452,0.281942,0.303039,0.0908433,0.137466,0.499509,0.970502,0.437187,0.602292,0.134732,0.0260572,0.807393,0.989339,0.12979,0.435076,0.675368,0.0113322,0.996875,0.493213,0.460541,0.252371,0.614592,0.314026,0.6141,0.354289,0.419433,0.456293,0.726254,0.627939,0.333883,0.196738,0.721445,0.850229,0.973884,0.527392,0.56731,0.459897,0.266871,0.581928,0.472751,0.723498,0.873537,0.668951,0.523864,0.925278,0.601166,0.386507,0.650811,0.124085,0.831084,0.145098,0.311584,0.122506,0.189116,0.471977,0.959567,0.995765,0.113245,0.406318,0.817048,0.541435,0.306449,0.432006,0.133412,0.0546243,0.669995,0.898694,0.656735,0.314401,0.728158,0.184232,0.460999,0.71886,0.175163,0.0071736,0.378148,0.0315043,0.0416198,0.134027,0.392916,0.861207,0.395854,0.554154,0.149271,0.797575,0.762024,0.915824,0.919962,0.916249,0.882422,0.531928,0.236142,0.348489,0.325116,0.0764629,0.812888,0.0547454,0.947317,0.143949,0.517832,0.518182,0.447529,0.574269,0.562317,0.886369,0.510286,0.943024,0.186392,0.313075,0.381843,0.584454,0.446678,0.557035,0.744768,0.00276053,0.971793,0.926728,0.259249,0.698904,0.39713,0.444372,0.925187,0.377526,0.559177,0.311663,0.853465,0.205393,0.925674,0.789701,0.088841,0.136549,0.455528,0.612862,0.724473,0.162948,0.813564,0.527777,0.763777,0.953774,0.0556768,0.617184,0.81385,0.968102,0.780269,0.96959,0.0784028,0.075494,0.603183,0.511488,0.898605,0.547953,0.891618,0.385047,0.600532,0.877954,0.31772,0.397717,0.0495024,0.376414,0.0451181,0.401802,0.463529,0.795336,0.00887734,0.606091,0.66604,0.94713,0.988507,0.184814,0.906026,0.99144,0.0302336,0.0359561,0.293083,0.797069,0.338368,0.321839,0.519203,0.368558,0.045464,0.384767,0.646662,0.637424,0.149291,0.928132,0.436003,0.375266,0.495234,0.474389,0.980762,0.408321,0.506165,0.360195,0.0137724,0.231895,0.18266,0.803071,0.823605,0.71144,0.857872,0.328438,0.429109,0.979264,0.699249,0.0613269,0.7267,0.411746,0.679476,0.173666,0.272646,0.664233,0.891456,0.483068,0.611651,0.921822,0.972982,0.00705171,0.847699,0.746946,0.939664,0.413838,0.69322,0.574701,0.167617,0.434878,0.204636,0.435767,0.162523,0.397367,0.602091,0.947228,0.72634,0.745465,0.829737,0.335709,0.493482,0.6124,0.0530136,0.317771,0.299018,0.652121,0.0185826,0.663474,0.259141,0.375193,0.733516,0.34225,0.649469,0.481419,0.0118543,0.662173,0.594834,0.107325,0.0184658,0.409124,0.322518,0.509619,0.21418,0.352369,0.878278,0.798032,0.116284,0.462725,0.496811,0.751207,0.686345,0.906234,0.866022,0.372073,0.497455,0.647251,0.0991534,0.606338,0.296259,0.42444,0.876359,0.787183,0.0462639,0.754527,0.0181139,0.0109245,0.843135,0.69423,0.613431,0.860486,0.914271,0.372231,0.366296,0.329373,0.033757,0.453547,0.0370359,0.463517,0.374617,0.577399,0.0531846,0.654029,0.0129945,0.33543,0.664489,0.533217,0.894833,0.138518,0.42462,0.45827,0.124708,0.504198,0.118567,0.221111,0.822782,0.1638,0.442687,0.965686,0.701225,0.840502,0.993351,0.182159,0.326126,0.928856,0.927724,0.899882,0.787064,0.772967,0.481905,0.080045,0.968279,0.68497,0.657252,0.117009,0.629027,0.234668,0.0371056,0.523821,0.696651,0.0487227,0.8204,0.98765,0.458887,0.800597,0.132705,0.939649,0.835974,0.00714618,0.295861,0.0276983,0.789289,0.462381,0.943006,0.949037,0.84907,0.71054,0.633025,0.639494,0.0112336,0.489076,0.877754,0.310306,0.533316,0.428962,0.396925,0.986337,0.348262,0.579941,0.60073,0.466404,0.191755,0.318638,0.82675,0.603079,0.430586,0.342161,0.406056,0.30074,0.155429,0.549715,0.381654,0.682264,0.847352,0.828182,0.112496,0.267864,0.547397,0.507033,0.752358,0.223195,0.476014,0.73128,0.205321,0.235747,0.0211129,0.376127,0.269523,0.871615,0.527831,0.181088,0.778631,0.183517,0.379456,0.675194,0.722528,0.532335,0.161915,0.49672,0.811832,0.191429,0.124368,0.285998,0.281288,0.976339,0.849062,0.493484,0.489792,0.98611,0.960425,0.278592,0.820833,0.561244,0.176497,0.0486463,0.903425,0.730833,0.91714,0.28681,0.244874,0.632522,0.492526,0.509606,0.0779893,0.430012,0.128866,0.163495,0.21225,0.213172,0.639121,0.286313,0.970557,0.271897,0.929151,0.0549387,0.111155,0.93942,0.764164,0.212999,0.667786,0.385931,0.528762,0.663692,0.403444,0.0612981,0.0968277,0.0152518,0.408228,0.640273,0.765697,0.0410695,0.359684,0.81249,0.909511,0.500664,0.394168,0.477008,0.694242,0.857694,0.998878,0.166736,0.495797,0.997016,0.430409,0.874712,0.227369,0.0267586,0.713942,0.120491,0.142232,0.715994,0.974619,0.925101,0.123241,0.861298,0.547594,0.635626,0.754429,0.604439,0.269494,0.882764,0.776811,0.157155,0.548782,0.859439,0.740893,0.0739647,0.571694,0.933679,0.297434,0.7915,0.899913,0.661659,0.203062,0.417491,0.889309,0.0804424,0.379792,0.0718733,0.688305,0.99515,0.834052,0.559037,0.970377,0.866941,0.574324,0.887903,0.91693,0.0449808,0.799224,0.669956,0.386243,0.244932,0.446278,0.0356181,0.220734,0.720289,0.831941,0.980175,0.397595,0.723884,0.0213931,0.125518,0.968153,0.945697,0.239894,0.225179,0.0249417,0.406091,0.275414,0.818191,0.239514,0.21362,0.298898,0.811742,0.162807,0.23356,0.213959,0.846652,0.849195,0.18457,0.594602,0.452938,0.730849,0.254329,0.394919,0.199633,0.288806,0.268339,0.157848,0.340959,0.0274758,0.739625,0.0111764,0.676702,0.345366,0.305538,0.523724,0.617095,0.148587,0.48907,0.632711,0.519004,0.379935,0.32535,0.391352,0.603803,0.870618,0.46642,0.212949,0.360626,0.254411,0.186358,0.675635,0.384529,0.764816,0.208999,0.0140898,0.874033,0.562662,0.780202,0.211784,0.532361,0.879801,0.385934,0.186662,0.121824,0.328455,0.48808,0.570758,0.484264,0.527043,0.0740081,0.486279,0.276375,0.866835,0.279541,0.161989,0.542724,0.388193,0.427829,0.834844,0.616239,0.0891163,0.205337,0.909845,0.86192,0.781834,0.425179,0.261256,0.073281,0.433588,0.957724,0.843832,0.986193,0.253646,0.863312,0.0857982,0.495681,0.13991,0.198086,0.240831,0.914422,0.0933917,0.548448,0.162683,0.0550125,0.886747,0.410297,0.362719,0.422621,0.521142,0.69253,0.0136397,0.344492,0.157333,0.203704,0.287539,0.978984,0.0566515,0.483089,0.392016,0.732072,0.338424,0.57001,0.251261,0.622105,0.792706,0.200937,0.400458,0.36448,0.695491,0.0629001,0.702402,0.876477,0.101279,0.0185385,0.805349,0.289704,0.161032,0.860812,0.911088,0.949881,0.700913,0.826097,0.941556,0.912845,|0.836053,0.360869,0.562985,0.269992,0.628722,0.766357,0.370214,0.1418,0.970945,0.746805,0.828559,0.249335,0.690163,0.179479,0.154262,0.304064,0.695291,0.428578,0.99458,0.206714,0.615841,0.18953,0.505819,0.321316,0.245032,0.371264,0.707994,0.789156,0.479697,0.295402,0.376493,0.474199,0.92169,0.61789,0.803907,0.664734,0.882164,0.809417,0.38432,0.650488,0.411149,0.753733,0.42814,0.400147,0.117188,0.690871,0.704635,0.227834,0.787117,0.0912004,0.34439,0.401223,0.249399,0.55812,0.688469,0.499597,0.235414,0.518726,0.62727,0.356932,0.886862,0.278227,0.193233,0.0316327,0.113074,0.339823,0.517286,0.405037,0.444338,0.0686364,0.784804,0.826555,0.850896,0.256573,0.397623,0.340112,0.298017,0.445503,0.0968133,0.51649,0.971865,0.316515,0.498416,0.663474,0.524518,0.643974,0.0702281,0.952961,0.682958,0.778068,0.417282,0.763076,0.828356,0.464332,0.506887,0.986515,0.373932,0.781888,0.0056783,0.588036,0.49891,0.417552,0.956447,0.996206,0.936242,0.366438,0.794667,0.545676,0.450205,0.446767,0.324661,0.298488,0.63771,0.426691,0.265608,0.717519,0.107447,0.623221,0.559685,0.525229,0.105807,0.940311,0.84861,0.672699,0.611677,0.826174,0.0358015,0.465474,0.00472075,0.440857,0.750223,0.964261,0.172702,0.0510694,0.562615,0.683484,0.311786,0.430643,0.582087,0.159919,0.943392,0.424547,0.695596,0.708672,0.0527478,0.151828,0.209918,0.629105,0.0142881,0.643074,0.372676,0.894958,0.319614,0.115471,0.616392,0.15919,0.229207,0.598074,0.311688,0.259064,0.0371137,0.514827,0.702842,0.861075,0.301049,0.364633,0.314799,0.492347,0.0838436,0.790639,0.859713,0.400037,0.869479,0.880092,0.704949,0.860825,0.981105,0.254297,0.0243568,0.697184,0.0868039,0.748366,0.174423,0.828952,0.896559,0.786391,0.748388,0.281135,0.35338,0.216617,0.362189,0.357972,0.794846,0.425781,0.870062,0.743799,0.857202,0.0692636,0.576796,0.217357,0.831082,0.622922,0.261003,0.243928,0.503286,0.139752,0.65537,0.634626,0.570218,0.900641,0.538677,0.911706,0.608462,0.910511,0.754428,0.731731,0.102351,0.2311,0.421143,0.0265143,0.06661,0.131031,0.0914153,0.939721,0.164708,0.741875,0.663106,0.596691,0.0333915,0.935239,0.621638,0.0992979,0.148671,0.249234,0.447875,0.984634,0.362151,0.826,0.283743,0.817922,0.0892931,0.959651,0.919935,0.727579,0.476522,0.638411,0.547912,0.10418,0.0885231,0.899879,0.460478,0.521827,0.627606,0.94653,0.516704,0.922061,0.381131,0.514717,0.902783,0.759416,0.304813,0.788708,0.558667,0.912935,0.581744,0.978988,0.306832,0.469695,0.841655,0.543596,0.800741,0.113393,0.980532,0.0464473,0.460533,0.336613,0.0445749,0.445472,0.361003,0.0622169,0.921905,0.386999,0.577185,0.23219,0.774019,0.555529,0.858966,0.96763,0.805924,0.961024,0.0119085,0.764982,0.474377,0.810302,0.673375,0.254155,0.592341,0.909587,0.872493,0.474425,0.0697712,0.257189,0.938994,0.610423,0.500256,0.749585,0.269515,0.264763,0.159479,0.203417,0.748479,0.333821,0.442878,0.0697876,0.13675,0.664067,0.998599,0.44123,0.286253,0.65279,0.395777,0.0463222,0.700157,0.692646,0.0082286,0.752395,0.773444,0.950658,0.56441,0.827509,0.724754,0.911481,0.544063,0.719991,0.528,0.450578,0.553587,0.0881522,0.0800903,0.158343,0.0853607,0.498061,0.810915,0.664965,0.919607,0.217658,0.889564,0.249373,0.150517,0.192592,0.747514,0.90143,0.570861,0.51358,0.00824815,0.534181,0.364842,0.899945,0.832615,0.0877439,0.834765,0.893631,0.707405,0.0655885,0.165198,0.853425,0.229431,0.961053,0.155916,0.11802,0.335273,0.827893,0.609005,0.963242,0.290007,0.177521,0.593604,0.171261,0.460138,0.0381612,0.868218,0.0306157,0.334103,0.132119,0.901581,0.519171,0.324261,0.275385,0.0382857,0.277105,0.99887,0.998822,0.645718,0.202873,0.0536278,0.893963,0.0213491,0.462396,0.338023,0.278195,0.234031,0.751333,0.213952,0.145328,0.872869,0.665637,0.581135,0.489769,0.651092,0.0965208,0.544937,0.990766,0.209698,0.855389,0.734769,0.45533,0.461231,0.759958,0.281176,0.8599,0.675899,0.291144,0.016573,0.250218,0.514996,0.931294,0.156421,0.601684,0.473858,0.606757,0.0922188,0.841099,0.568039,0.799632,0.66592,0.988009,0.755495,0.192184,0.790297,0.0225235,0.34097,0.950286,0.0214084,0.719612,0.20254,0.289185,0.959058,0.685301,0.687869,0.937366,0.145699,0.607773,0.161944,0.502181,0.485018,0.723732,0.868535,0.608763,0.27813,0.079903,0.533455,0.31746,0.405707,0.666082,0.579622,0.0437466,0.441679,0.252235,0.500065,0.512196,0.547353,0.544198,0.973001,0.92157,0.305664,0.64584,0.234152,0.131833,0.661957,0.508704,0.582319,0.334959,0.0235897,0.0274371,0.770177,0.660347,0.449609,0.763976,0.432593,0.215058,0.141277,0.0324613,0.687704,0.932561,0.0926124,0.703673,0.734671,0.874168,0.115614,0.466244,0.287702,0.378555,0.807567,0.54751,0.293471,0.267693,0.55617,0.921,0.728372,0.0483502,0.831879,0.0451561,0.954677,0.817821,0.44244,0.0727449,0.839079,0.721922,0.264812,0.122353,0.157872,0.319696,0.103178,0.100396,0.822477,0.095373,0.665891,0.31564,0.486696,0.827974,0.240679,0.521357,0.700052,0.723005,0.0476552,0.24129,0.981431,0.15315,0.30933,0.236213,0.667411,0.00992018,0.0420531,0.42937,0.215085,0.127367,0.535299,0.765416,0.818192,0.35395,0.0689521,0.137993,0.747861,0.18912,0.333282,0.130396,0.309278,0.173675,0.428848,0.737199,0.111391,0.0209594,0.714353,0.952714,0.0406049,0.47046,0.201357,0.549912,0.0945442,0.697944,0.440215,0.392898,0.0703555,0.41819,0.688759,0.143675,0.554008,0.855619,0.509768,0.64735,0.78298,0.599009,0.790643,0.823582,0.317889,0.614379,0.278871,0.866333,0.750551,0.28533,0.328255,0.320651,0.0153503,0.899134,0.542084,0.370435,0.652614,0.810842,0.50753,0.617391,0.780693,0.996411,0.913719,0.399856,0.549785,0.416093,0.398283,0.642086,0.205462,0.377989,0.89784,0.715702,0.161063,0.984099,0.974691,0.952215,0.598294,0.0509658,0.176306,0.941159,0.518117,0.385742,0.648939,0.488217,0.340851,0.701069,0.363157,0.965842,0.308765,0.609129,0.361006,0.273133,0.319581,0.937436,0.480739,0.596131,0.463618,0.193517,0.175681,0.134944,0.783398,0.160918,0.760272,0.32138,0.390266,0.814826,0.819784,0.0982936,0.00560194,0.46925,0.428478,0.72777,0.666155,0.401693,0.144056,0.736979,0.425426,0.161456,0.261296,0.359706,0.688587,0.82129,0.742614,0.844971,0.757169,0.735208,0.133432,0.210384,0.037056,0.96479,0.0546452,0.463213,0.80099,0.246241,0.591916,0.445512,0.341404,0.0338115,0.932499,0.819974,0.407779,0.264988,0.71835,0.0735937,0.118277,0.969968,0.65817,0.228574,0.818376,0.00355953,0.49436,0.639857,0.328143,0.600281,0.374459,0.971865,0.355483,0.186429,0.581527,0.829291,0.219573,0.601265,0.256087,0.378027,0.92938,0.863313,0.822282,0.338196,0.367136,0.0502822,0.719475,0.707032,0.979718,0.138378,0.190911,0.388934,0.852211,0.457625,0.398709,0.196971,0.294067,0.473021,0.5261,0.972994,0.756607,0.708649,0.79925,0.196632,0.612432,0.0662107,0.735117,0.630125,0.0255143,0.16441,0.404482,0.613477,0.888166,0.721441,0.612051,0.459946,0.173371,0.568853,0.741106,0.238163,0.646459,0.561924,0.458609,0.939431,0.433715,0.653262,0.72457,0.639774,0.404846,0.395065,0.150791,0.0444413,0.140648,0.911253,0.778913,0.611232,0.202259,0.159762,0.87647,0.211977,0.935933,0.345618,0.779669,0.491004,0.450766,0.956852,0.694126,0.295953,0.218842,0.707097,0.526758,0.38232,0.440314,0.421883,0.407849,0.623902,0.986145,0.152204,0.176712,0.266221,0.716058,0.465103,0.00534695,0.773836,0.052361,0.942651,0.788876,0.268165,0.752141,0.0322728,0.349365,0.0122752,0.394345,0.113695,0.939101,0.466624,0.0421833,0.887209,0.280696,0.0461234,0.855607,0.199315,0.228118,0.508657,0.820732,0.577948,0.348993,0.384477,0.0103912,0.41801,0.224761,0.142757,0.794803,0.370127,0.187028,0.352824,0.672435,0.687485,0.472971,0.676324,0.545341,0.913526,0.448954,0.486225,0.738644,0.0662769,0.376638,0.934372,0.717643,0.198877,0.134676,0.940086,0.467598,0.838549,0.115489,0.373362,0.334803,0.213653,0.280908,0.666543,0.0672238,0.954822,0.200959,0.582946,0.710129,0.933548,0.292194,0.428852,0.401499,0.404077,0.426737,0.435428,0.711881,0.7049,0.168716,0.29093,0.160106,0.202979,0.3278,0.646217,0.67851,0.490417,0.82417,0.812585,0.579554,0.978037,0.523759,0.902726,0.589333,0.784723,0.613733,0.209259,0.556141,0.0251673,0.778455,0.739945,0.227631,0.995843,0.742937,0.995772,0.779092,0.125544,0.872729,0.228415,0.632017,0.106431,0.537933,0.0463503,0.166522,0.210501,0.771573,0.84677,0.400194,0.39536,0.206489,0.526517,0.605888,0.837796,0.103048,0.830431,0.786556,0.865043,0.192713,0.91892,0.463343,0.788695,0.770872,0.981765,0.442125,0.863664,0.787282,0.962229,0.118802,0.123951,0.37719,0.387924,0.29195,0.991805,0.0597709,0.925138,0.933583,0.57046,0.501298,0.255776,0.868683,0.0527058,0.438663,0.437229,0.154545,0.652125,0.380571,0.936917,0.260331,0.0447016,0.50895,0.561307,0.599889,0.188486,0.192449,0.44437,0.879533,0.957081,0.53274,0.840505,0.469119,0.496214,0.0326756,0.7298,0.862185,0.508792,0.702363,0.069641,0.361043,0.714194,0.0113037,0.522792,0.960841,0.605682,0.319519,0.953044,0.69158,0.634966,0.047875,0.871553,0.419918,0.40357,0.769917,0.307723,0.835806,0.355219,0.490765,0.101235,0.852922,0.732276,0.670998,0.213844,0.251826,0.808794,0.0593832,0.1253,0.243281,0.357321,0.332799,0.985636,0.970257,0.854372,0.460533,0.84303,0.0699733,0.792481,0.532241,0.485104,0.581585,0.148901,0.168873,0.415667,|0.183571,0.478634,0.873686,0.475381,0.718816,0.590025,0.375434,0.823482,0.0710537,0.236486,0.353692,0.998402,0.633544,0.92375,0.0537894,0.374851,0.538742,0.385893,0.0558321,0.321063,0.751553,0.510789,0.195458,0.921949,0.882682,0.808479,0.591254,0.123712,0.441273,0.139549,0.736733,0.97369,0.37645,0.812698,0.0249578,0.975546,0.473622,0.590801,0.248453,0.583001,0.0764325,0.0781711,0.485682,0.78649,0.688397,0.000598907,0.761491,0.815377,0.61604,0.711041,0.874973,0.354435,0.138047,0.745852,0.839576,0.895505,0.542903,0.949323,0.895774,0.582166,0.763519,0.38533,0.80127,0.595142,0.244712,0.522433,0.328796,0.391787,0.724938,0.828031,0.653129,0.80796,0.369636,0.831974,0.276718,0.742055,0.236354,0.142984,0.414154,0.661689,0.226261,0.687938,0.324068,0.350645,0.435841,0.123601,0.0845191,0.556363,0.206916,0.593461,0.86728,0.921795,0.143121,0.369734,0.975725,0.487037,0.951182,0.392182,0.260614,0.460183,0.0897641,0.128352,0.771309,0.285697,0.762007,0.99395,0.0663396,0.476659,0.710743,0.581852,0.803374,0.587822,0.819534,0.496413,0.42422,0.677639,0.331648,0.929517,0.57112,0.174634,0.496767,0.017535,0.20429,0.459524,0.0595272,0.926171,0.75168,0.210555,0.21113,0.0576708,0.424857,0.203651,0.525524,0.374827,0.38457,0.881107,0.616693,0.935436,0.517153,0.493778,0.921409,0.24878,0.793116,0.53472,0.780212,0.971116,0.846552,0.408283,0.0369843,0.43109,0.988232,0.99284,0.228841,0.00211257,0.511604,0.997967,0.939985,0.778813,0.907515,0.416737,0.683232,0.540303,0.273372,0.114574,0.239271,0.364088,0.967363,0.426343,0.0574667,0.965067,0.00956643,0.470972,0.432706,0.482926,0.353928,0.643349,0.802262,0.791363,0.918655,0.975945,0.416761,0.844459,0.439825,0.295234,0.815687,0.765178,0.929168,0.183346,0.765879,0.58423,0.251149,0.511983,0.701577,0.728613,0.130266,0.985909,0.373927,0.28724,0.837588,0.447026,0.708159,0.360384,0.886861,0.624773,0.802868,0.118029,0.807871,0.208057,0.243864,0.297878,0.565627,0.83014,0.919073,0.654894,0.300417,0.80553,0.620876,0.430409,0.743144,0.568754,0.427639,0.808609,0.715827,0.629752,0.266283,0.883323,0.690803,0.887637,0.836359,0.0826212,0.623281,0.130725,0.31779,0.168222,0.307047,0.0165457,0.984389,0.496592,0.480935,0.489766,0.816213,0.757641,0.0995929,0.027347,0.545427,0.18411,0.0691397,0.133923,0.776346,0.0250341,0.0448703,0.981739,0.919003,0.730722,0.457203,0.583531,0.918635,0.912262,0.871797,0.391789,0.967541,0.571839,0.804335,0.334031,0.749795,0.332784,0.892236,0.0860559,0.399967,0.740772,0.708194,0.25597,0.802406,0.859894,0.214064,0.175037,0.187039,0.0848237,0.205667,0.814221,0.3939,0.268428,0.9119,0.391204,0.540801,0.22734,0.84425,0.392884,0.728955,0.217373,0.971731,0.445529,0.445801,0.923593,0.935759,0.131527,0.387576,0.0770849,0.224497,0.366324,0.978777,0.186961,0.416135,0.356346,0.323312,0.302462,0.7322,0.121884,0.417259,0.252348,0.329179,0.472231,0.38499,0.128721,0.329948,0.116974,0.31572,0.947583,0.452876,0.517686,0.721409,0.394243,0.134872,0.701856,0.033215,0.337758,0.690582,0.407701,0.47915,0.150511,0.569507,0.636597,0.469215,0.0480616,0.902141,0.885457,0.83804,0.771223,0.683491,0.399685,0.458403,0.821372,0.445982,0.468343,0.344256,0.185223,0.233035,0.614713,0.824378,0.767145,0.438181,0.328476,0.474009,0.33519,0.646432,0.311321,0.350383,0.148525,0.1748,0.788004,0.744573,0.94565,0.0441945,0.163204,0.815266,0.0283284,0.581596,0.783831,0.288108,0.252725,0.286721,0.892585,0.47804,0.671777,0.470536,0.0121493,0.41309,0.711793,0.00854552,0.885056,0.835626,0.876378,0.890306,0.0699409,0.996392,0.416303,0.616384,0.584868,0.0250055,0.60736,0.590734,0.718539,0.335765,0.709774,0.48378,0.284275,0.805193,0.39613,0.728584,0.632057,0.110066,0.0626077,0.380949,0.55719,0.734637,0.948522,0.341494,0.873924,0.483637,0.191496,0.304671,0.884658,0.0413218,0.100687,0.0685174,0.381623,0.71727,0.287454,0.3998,0.255774,0.432601,0.49145,0.706717,0.17885,0.200162,0.874661,0.173837,0.0462968,0.0621043,0.631884,0.428921,0.884445,0.411298,0.480271,0.348074,0.524008,0.678702,0.897134,0.836277,0.041326,0.215691,0.994714,0.368799,0.45062,0.385374,0.934539,0.858264,0.574669,0.846886,0.0623828,0.915538,0.00710231,0.653697,0.28594,0.66963,0.78114,0.696756,0.319586,0.0460255,0.058609,0.375845,0.856051,0.554401,0.660199,0.405059,0.839533,0.568729,0.949939,0.28055,0.660251,0.901815,0.13359,0.900445,0.441674,0.602905,0.672276,0.434325,0.803227,0.971009,0.934165,0.329207,0.295497,0.828164,0.849373,0.138896,0.282426,0.819933,0.668824,0.281722,0.108932,0.60291,0.770852,0.120517,0.576773,0.215732,0.457972,0.468812,0.539118,0.470023,0.906283,0.121692,0.601726,0.17892,0.758352,0.798924,0.138513,0.117742,0.634065,0.756359,0.795993,0.3358,0.514945,0.840268,0.585124,0.207113,0.199772,0.639778,0.103339,0.0848228,0.400825,0.513053,0.184721,0.536262,0.086543,0.385263,0.294711,0.0759768,0.360016,0.324361,0.399761,0.4123,0.0855491,0.0484927,0.413913,0.552331,0.454567,0.541025,0.767991,0.474815,0.329133,0.0723237,0.32038,0.904911,0.95508,0.717867,0.608434,0.815405,0.97858,0.602758,0.0811794,0.795209,0.521584,0.706891,0.501662,0.666661,0.779327,0.727997,0.483821,0.6598,0.556512,0.411186,0.730749,0.157937,0.216418,0.33578,0.984386,0.0185176,0.395626,0.864051,0.321418,0.650518,0.964022,0.837727,0.225661,0.0522525,0.20174,0.430012,0.433065,0.308509,0.196364,0.60179,0.627325,0.450805,0.850041,0.341457,0.142404,0.939873,0.354702,0.750085,0.736568,0.75433,0.525842,0.303297,0.55196,0.64882,0.414225,0.359228,0.336607,0.750886,0.410359,0.0115559,0.244097,0.782193,0.995669,0.154611,0.762188,0.369203,0.443895,0.705437,0.874373,0.531079,0.379253,0.444809,0.284183,0.285178,0.756555,0.234927,0.420464,0.270574,0.841583,0.550228,0.983449,0.413047,0.416428,0.323732,0.849322,0.399635,0.0979736,0.434786,0.988441,0.566382,0.815394,0.995833,0.288063,0.852075,0.468486,0.231184,0.300683,0.140819,0.758125,0.872174,0.513011,0.799527,0.449751,0.741574,0.067078,0.698321,0.147828,0.306545,0.979916,0.233407,0.382862,0.917711,0.250041,0.53316,0.184503,0.427105,0.549431,0.586864,0.291064,0.853282,0.768783,0.507075,0.843273,0.875327,0.0698514,0.74466,0.223042,0.876926,0.062924,0.226245,0.298356,0.641228,0.0254233,0.473375,0.426265,0.0812057,0.758884,0.0859548,0.0772318,0.287021,0.343889,0.399954,0.385689,0.71349,0.875498,0.448331,0.457068,0.0971357,0.0400723,0.369541,0.718749,0.158238,0.741922,0.0672966,0.986768,0.431507,0.320881,0.799323,0.874506,0.779638,0.726299,0.706645,0.0735487,0.0596648,0.430515,0.335246,0.392798,0.44089,0.256427,0.599105,0.926909,0.543805,0.0200815,0.897873,0.433783,0.885771,0.292849,0.799754,0.954294,0.689634,0.0381105,0.661776,0.18985,0.203556,0.27736,0.889536,0.801275,0.891149,0.806947,0.264087,0.124445,0.507799,0.854288,0.820149,0.422377,0.604307,0.654083,0.69463,0.918233,0.852932,0.463676,0.393674,0.13423,0.00819963,0.96792,0.517161,0.188599,0.394982,0.965169,0.54149,0.499412,0.238799,0.991089,0.186042,0.866828,0.895109,0.295991,0.92546,0.145816,0.138018,0.228377,0.535349,0.582877,0.953245,0.246423,0.53586,0.3916,0.540585,0.214867,0.213011,0.130513,0.7026,0.469384,0.211603,0.181158,0.6945,0.94929,0.585298,0.338633,0.6026,0.662558,0.45328,0.778201,0.300816,0.590861,0.617274,0.745327,0.418148,0.685024,0.89511,0.0109574,0.7391,0.656968,0.869579,0.309084,0.981814,0.326815,0.703759,0.942796,0.59897,0.938681,0.503477,0.562781,0.268968,0.492506,0.759706,0.765075,0.0449664,0.748608,0.703756,0.705225,0.497423,0.0115995,0.56118,0.116452,0.327491,0.788836,0.281019,0.335299,0.0268878,0.921218,0.215461,0.516312,0.714085,0.025587,0.95534,0.403748,0.590463,0.572845,0.621674,0.830429,0.330988,0.880207,0.685159,0.221074,0.918497,0.405085,0.254732,0.422581,0.0270772,0.632003,0.419791,0.54111,0.735922,0.256576,0.419587,0.717972,0.580529,0.919686,0.188042,0.0243778,0.772025,0.0966871,0.25708,0.538391,0.114998,0.900377,0.943404,0.973996,0.855779,0.893721,0.737188,0.306843,0.613744,0.810108,0.0891258,0.353712,0.544689,0.190757,0.985313,0.471076,0.226396,0.0465235,0.630515,0.326166,0.383909,0.487935,0.76576,0.303384,0.228005,0.129359,0.33456,0.389799,0.480197,0.657837,0.0786365,0.349474,0.6841,0.422583,0.246468,0.831668,0.960267,0.986092,0.388871,0.92838,0.530714,0.156103,0.519989,0.911177,0.888083,0.306947,0.773392,0.893065,0.0681275,0.394033,0.238209,0.482308,0.517971,0.965125,0.500535,0.891857,0.122965,0.799261,0.778036,0.240342,0.834551,0.513631,0.244081,0.00122136,0.311025,0.04383,0.498752,0.416065,0.61066,0.146896,0.137899,0.440624,0.350797,0.9369,0.270355,0.79611,0.303486,0.215258,0.30204,0.391377,0.68452,0.0180309,0.774994,0.936556,0.589006,0.87306,0.811216,0.320281,0.760429,0.791981,0.0402474,0.404298,0.709762,0.320157,0.737016,0.446387,0.319849,0.771241,0.437881,0.524435,0.726722,0.0965261,0.424949,0.822562,0.664312,0.989548,0.0444787,0.248099,0.760006,0.125186,0.522196,0.527827,0.940695,0.431482,0.786954,0.419336,0.360274,0.378736,0.949296,0.328336,0.886132,0.0802675,0.448512,0.00169474,0.559864,0.401143,0.401933,0.867863,0.00857705,0.352941,0.426136,0.666839,0.175446,0.620414,0.744987,0.451995,0.729679,0.972601,0.8969,0.494766,0.308434,0.576411,0.936681,0.622497,|0.972753,0.339757,0.31727,0.203848,0.633193,0.325494,0.0885057,0.455386,0.736464,0.662538,0.582268,0.854503,0.275273,0.566328,0.601456,0.668248,0.848531,0.225484,0.692526,0.0751297,0.953392,0.224962,0.130818,0.332794,0.763458,0.180419,0.963878,0.898135,0.732044,0.2228,0.71199,0.12124,0.258986,0.712891,0.067865,0.534935,0.104679,0.149671,0.175477,0.541497,0.585494,0.318517,0.996694,0.5962,0.48504,0.616545,0.693462,0.657903,0.131199,0.108178,0.570231,0.465146,0.888787,0.706393,0.530627,0.47723,0.854038,0.560608,0.999508,0.0559425,0.757474,0.879242,0.979925,0.294224,0.256267,0.223217,0.468197,0.903049,0.356912,0.212354,0.554089,0.837934,0.0700139,0.918519,0.150228,0.837967,0.256552,0.911891,0.618005,0.486069,0.755227,0.128426,0.208869,0.0021171,0.0205052,0.643012,0.416766,0.45379,0.997791,0.263465,0.738307,0.6888,0.872222,0.401363,0.0458459,0.272328,0.174328,0.86584,0.895268,0.283093,0.251238,0.0141942,0.544231,0.240158,0.876683,0.3572,0.701075,0.571679,0.148862,0.794822,0.999502,0.434814,0.378717,0.407979,0.220024,0.640219,0.516335,0.134024,0.531692,0.93151,0.738499,0.951716,0.302771,0.960646,0.79357,0.624647,0.0802631,0.111729,0.0270285,0.823502,0.0137773,0.869375,0.156601,0.444152,0.409229,0.892531,0.610495,0.603369,0.713137,0.216866,0.823402,0.102996,0.11027,0.403996,0.798965,0.690451,0.0244455,0.957026,0.675599,0.849257,0.122314,0.280669,0.24818,0.447487,0.278604,0.823516,0.175267,0.931316,0.367037,0.765591,0.295658,0.140255,0.834367,0.0400248,0.389229,0.633965,0.868869,0.655589,0.505529,0.975024,0.369229,0.326058,0.255596,0.916801,0.0889034,0.909057,0.0748676,0.56909,0.975975,0.501404,0.590804,0.224799,0.041686,0.807407,0.746212,0.339308,0.0696217,0.0752966,0.831636,0.640679,0.661812,0.836678,0.769816,0.0925587,0.80802,0.592837,0.516982,0.0662967,0.612457,0.238754,0.056134,0.578335,0.765752,0.0382254,0.544346,0.10912,0.488265,0.545427,0.927189,0.672552,0.382442,0.721904,0.0423828,0.394396,0.796359,0.173482,0.699524,0.963291,0.808583,0.879087,0.464281,0.677432,0.487281,0.110422,0.393179,0.0368241,0.988657,0.818047,0.44793,0.521414,0.652538,0.746822,0.59182,0.810205,0.79778,0.990162,0.142481,0.767036,0.648196,0.500324,0.0303607,0.203064,0.52389,0.442803,0.187159,0.306138,0.693719,0.666132,0.35388,0.683519,0.416612,0.713318,0.552811,0.530982,0.753672,0.687132,0.332645,0.189445,0.1174,0.372482,0.870127,0.563418,0.889262,0.60582,0.417038,0.586237,0.203166,0.957431,0.264905,0.156961,0.791967,0.348763,0.940279,0.285579,0.83484,0.570388,0.14798,0.799305,0.719092,0.897429,0.0981639,0.889744,0.696389,0.965279,0.633087,0.351442,0.906139,0.395958,0.0184767,0.883069,0.727874,0.153769,0.65551,0.659586,0.827137,0.35673,0.250507,0.209134,0.594899,0.348286,0.639899,0.174593,0.104849,0.00513667,0.39579,0.167502,0.663719,0.643631,0.282036,0.661407,0.632544,0.426489,0.879194,0.866868,0.143456,0.357618,0.631465,0.743557,0.89215,0.401157,0.763944,0.16736,0.144309,0.195397,0.000141263,0.806128,0.139145,0.0778445,0.547687,0.836066,0.676275,0.382208,0.637142,0.826329,0.887836,0.287125,0.408059,0.335515,0.822172,0.955368,0.149373,0.881315,0.241373,0.323154,0.122794,0.323803,0.75071,0.0208787,0.804733,0.812794,0.534635,0.836095,0.91341,0.267303,0.175281,0.212075,0.411005,0.873958,0.389695,0.00868821,0.560226,0.571194,0.0218272,0.185139,0.479312,0.429799,0.741638,0.989084,0.0312089,0.207405,0.71809,0.362413,0.688557,0.17208,0.682016,0.514153,0.0211566,0.830553,0.323806,0.0445559,0.357266,0.599204,0.0644456,0.0856592,0.219771,0.272859,0.960179,0.811668,0.942555,0.969092,0.190054,0.12917,0.103201,0.286337,0.443106,0.570156,0.519622,0.761799,0.014518,0.0348243,0.386037,0.303181,0.133392,0.553922,0.162786,0.112984,0.547665,0.0523024,0.29614,0.144049,0.755772,0.0311102,0.151579,0.422725,0.394921,0.278365,0.694849,0.476804,0.489144,0.164249,0.141363,0.755753,0.0379197,0.559174,0.895665,0.0540471,0.0729865,0.199531,0.137421,0.612286,0.211395,0.130975,0.175109,0.566428,0.672837,0.174477,0.287381,0.341566,0.589332,0.618093,0.762276,0.483932,0.283207,0.818414,0.556688,0.522156,0.611006,0.430134,0.971496,0.223683,0.942479,0.198103,0.435177,0.0936385,0.399825,0.103122,0.339109,0.974659,0.41498,0.244843,0.424455,0.250193,0.799708,0.543535,0.419735,0.774868,0.612389,0.0196304,0.458538,0.339304,0.650385,0.286127,0.0303769,0.679155,0.305706,0.271508,0.481774,0.865139,0.51894,0.896214,0.282651,0.612565,0.607085,0.23851,0.966038,0.885172,0.690032,0.197635,0.688942,0.0385898,0.935108,0.0183417,0.779775,0.599333,0.0395762,0.27525,0.866085,0.0288509,0.62515,0.519801,0.962701,0.23684,0.196606,0.399702,0.00733787,0.189367,0.572431,0.284025,0.121692,0.512533,0.344919,0.366804,0.0281454,0.196231,0.893145,0.167565,0.0931477,0.14815,0.626884,0.455023,0.332353,0.704129,0.685721,0.399951,0.522289,0.169579,0.0509266,0.442779,0.375867,0.659688,0.0695336,0.730681,0.467974,0.445704,0.0726926,0.778452,0.467761,0.321174,0.280567,0.307511,0.77363,0.8842,0.882297,0.307484,0.167537,0.83912,0.834372,0.138543,0.4443,0.908936,0.752609,0.52183,0.421239,0.551106,0.431138,0.482504,0.186919,0.854715,0.52295,0.441365,0.0273097,0.594138,0.262566,0.666778,0.288054,0.66544,0.610366,0.116361,0.471389,0.579378,0.75539,0.413464,0.0488335,0.757425,0.560923,0.954717,0.947863,0.186242,0.481989,0.383133,0.860479,0.995541,0.82914,0.786253,0.54504,0.185564,0.104764,0.0239658,0.299157,0.778991,0.883343,0.945465,0.260388,0.839528,0.853467,0.684555,0.132368,0.375136,0.756756,0.160872,0.849857,0.346837,0.858027,0.89795,0.27349,0.873638,0.833836,0.245791,0.486466,0.922272,0.214374,0.328815,0.974932,0.240068,0.0541237,0.722567,0.182349,0.635679,0.264347,0.828447,0.771418,0.705021,0.843101,0.594905,0.198007,0.94835,0.180881,0.256218,0.216177,0.193847,0.187784,0.780299,0.874435,0.945662,0.269879,0.590534,0.366523,0.77777,0.60046,0.37823,0.764095,0.753832,0.767202,0.522631,0.246654,0.36734,0.216182,0.0944271,0.910339,0.247864,0.231083,0.881357,0.16899,0.963926,0.578214,0.414913,0.605851,0.387338,0.574381,0.412219,0.528945,0.514096,0.885142,0.920832,0.0384184,0.20302,0.443977,0.522029,0.939246,0.0895773,0.315224,0.879058,0.607258,0.787966,0.96003,0.918229,0.776951,0.623971,0.67883,0.993705,0.312589,0.843436,0.0440003,0.258585,0.302356,0.445944,0.147541,0.238506,0.44232,0.994583,0.698292,0.334762,0.309029,0.434399,0.889227,0.0406455,0.546386,0.178541,0.137325,0.0298411,0.60611,0.756286,0.92815,0.714678,0.0933536,0.980657,0.422327,0.542071,0.621452,0.594211,0.0854119,0.342467,0.285244,0.567114,0.200929,0.23044,0.374452,0.708985,0.393172,0.938455,0.986094,0.515505,0.249334,0.0713706,0.0576867,0.805725,0.457708,0.299778,0.745629,0.600179,0.866642,0.0140829,0.735104,0.286135,0.475581,0.585912,0.177264,0.752529,0.86737,0.309002,0.215974,0.253122,0.107556,0.31489,0.332893,0.361482,0.0256727,0.128075,0.246512,0.23282,0.947413,0.003124,0.11818,0.422203,0.606085,0.555503,0.310052,0.14345,0.903124,0.766036,0.308893,0.868601,0.769743,0.381508,0.311933,0.469034,0.867618,0.919301,0.49399,0.335094,0.602598,0.776136,0.576958,0.208278,0.367324,0.0451244,0.106046,0.847432,0.201608,0.25426,0.0829018,0.795878,0.0213262,0.372555,0.933604,0.0896233,0.722229,0.575454,0.667345,0.331723,0.795887,0.257693,0.0772097,0.146539,0.770961,0.310457,0.870566,0.367053,0.581627,0.00889838,0.496284,0.723923,0.374563,0.220114,0.732966,0.444889,0.91336,0.204305,0.765636,0.216537,0.393218,0.39531,0.404265,0.338862,0.73993,0.306486,0.965904,0.588802,0.0535793,0.645321,0.734246,0.727657,0.976449,0.0711508,0.875687,0.856288,0.841871,0.31654,0.685371,0.250093,0.927393,0.316361,0.907796,0.446341,0.172297,0.670019,0.53341,0.0483284,0.163088,0.0676383,0.653094,0.799021,0.903534,0.56378,0.0895249,0.21782,0.922333,0.401639,0.40016,0.901128,0.640917,0.340633,0.37662,0.849239,0.388329,0.337275,0.403502,0.532901,0.154154,0.983805,0.313321,0.00532579,0.701742,0.653353,0.510817,0.506193,0.0644456,0.0633878,0.945317,0.639229,0.420269,0.180098,0.149244,0.897349,0.816071,0.824062,0.369965,0.59014,0.448139,0.960757,0.276778,0.31295,0.542857,0.471895,0.0659048,0.521985,0.0664897,0.407472,0.166636,0.75978,0.658083,0.31599,0.188385,0.503895,0.11083,0.114598,0.657253,0.963827,0.533768,0.75647,0.371028,0.210077,0.237627,0.213355,0.753075,0.468945,0.635477,0.617371,0.869622,0.729036,0.0295675,0.836688,0.220907,0.49557,0.739208,0.762358,0.829764,0.474168,0.858768,0.803661,0.136311,0.878012,0.238802,0.818597,0.267467,0.837428,0.118046,0.954399,0.779069,0.972372,0.518513,0.729514,0.856966,0.413599,0.80105,0.488481,0.923661,0.171825,0.264376,0.0799056,0.326339,0.0128875,0.549217,0.331791,0.178519,0.585264,0.753146,0.12914,0.336195,0.49368,0.462788,0.642389,0.800717,0.0374904,0.30188,0.694115,0.334252,0.750498,0.0561666,0.0448977,0.966259,0.718249,0.476228,0.370319,0.70221,0.0310906,0.270838,0.678451,0.978964,0.171006,0.0376102,0.329783,0.468856,0.79536,0.13078,0.242668,0.99454,0.494235,0.0358507,0.769466,0.175629,0.863098,0.54301,0.69044,0.610862,0.881529,0.290542,0.338534,0.0301389,0.721068,0.75881,0.893557,0.607455,0.94565,0.128614,0.226156,0.0692657,0.442587,0.614978,0.216096,|0.249695,0.0398487,0.0278938,0.431008,0.770977,0.378122,0.467385,0.905136,0.270242,0.734857,0.39467,0.0828831,0.940231,0.433356,0.0181991,0.759407,0.506731,0.534044,0.116374,0.639791,0.0824954,0.488352,0.482697,0.574455,0.933883,0.228647,0.212184,0.895796,0.289532,0.760372,0.00470829,0.075864,0.0799891,0.978916,0.671373,0.624181,0.815366,0.808387,0.842366,0.966195,0.00408804,0.10714,0.77253,0.139604,0.28621,0.256742,0.363757,0.679206,0.417653,0.706617,0.28736,0.754628,0.588103,0.223715,0.861898,0.255638,0.756842,0.433659,0.405909,0.475459,0.067301,0.569551,0.859892,0.528831,0.738679,0.955028,0.847414,0.0338448,0.176718,0.877341,0.781353,0.15915,0.62795,0.70159,0.946355,0.739244,0.405095,0.199458,0.712507,0.213989,0.316536,0.438924,0.00410092,0.545767,0.205451,0.225635,0.755262,0.26505,0.525331,0.0050354,0.764505,0.996638,0.465892,0.916358,0.633234,0.127916,0.378147,0.456181,0.45582,0.48735,0.0129795,0.766094,0.407046,0.174507,0.741237,0.343669,0.715146,0.652323,0.277244,0.292524,0.373587,0.345445,0.270957,0.955676,0.393404,0.591505,0.274356,0.887224,0.46282,0.940059,0.241845,0.710446,0.230129,0.546402,0.229554,0.486706,0.894799,0.59066,0.618725,0.254464,0.462085,0.0873755,0.941173,0.153008,0.948297,0.0778015,0.344938,0.965123,0.527472,0.937603,0.324591,0.232675,0.836299,0.686979,0.270348,0.492334,0.904191,0.625922,0.0890937,0.810832,0.369498,0.557929,0.558923,0.0274899,0.674235,0.395371,0.0138724,0.65819,0.0180536,0.328488,0.023441,0.0520662,0.162382,0.437644,0.256155,0.895228,0.468742,0.0539437,0.724221,0.942325,0.573734,0.84462,0.478697,0.372217,0.847179,0.609826,0.810799,0.789608,0.431975,0.602264,0.132238,0.612434,0.886165,0.0253888,0.806798,0.0513756,0.770055,0.538792,0.504966,0.988546,0.464456,0.214721,0.693075,0.79819,0.284605,0.194437,0.393647,0.640834,0.544466,0.593323,0.518756,0.824159,0.936067,0.881675,0.35241,0.665167,0.967038,0.859809,0.172822,0.0518414,0.436639,0.706293,0.233157,0.755999,0.633693,0.399887,0.297925,0.872236,0.648221,0.882012,0.156857,0.994595,0.672607,0.777038,0.167958,0.908121,0.574716,0.5698,0.352793,0.695113,0.29895,0.154487,0.94183,0.770677,0.0816622,0.219515,0.817359,0.93318,0.252096,0.914692,0.205776,0.346159,0.429551,0.464559,0.524613,0.127168,0.525348,0.856731,0.772262,0.640577,0.856984,0.119169,0.956985,0.647562,0.333105,0.249621,0.0036037,0.525495,0.633293,0.381673,0.483762,0.749717,0.744437,0.762333,0.20801,0.0197072,0.818061,0.573489,0.638847,0.0599277,0.0278315,0.273374,0.705289,0.378506,0.689732,0.886706,0.143682,0.54027,0.220541,0.768282,0.0403751,0.897958,0.289843,0.627896,0.908966,0.298163,0.505919,0.352437,0.835835,0.137592,0.326799,0.995113,0.633624,0.0781352,0.84183,0.658647,0.078734,0.530004,0.681414,0.443471,0.824681,0.851147,0.258333,0.282997,0.358985,0.251174,0.241288,0.0818681,0.603601,0.424313,0.531297,0.0182385,0.94351,0.596181,0.306075,0.06891,0.514706,0.173452,0.899614,0.740657,0.770213,0.414368,0.135334,0.810579,0.187691,0.946451,0.945407,0.252495,0.143536,0.53446,0.548828,0.000989974,0.474219,0.270093,0.741485,0.71385,0.38481,0.940699,0.451232,0.361098,0.674407,0.167461,0.948751,0.339428,0.0019837,0.880164,0.938422,0.978248,0.76999,0.11218,0.0745425,0.5549,0.458377,0.959497,0.256048,0.664935,0.759476,0.41036,0.175061,0.739065,0.818521,0.271313,0.905575,0.814038,0.18929,0.515066,0.119666,0.0632761,0.396114,0.45306,0.514676,0.74007,0.408536,0.553558,0.849955,0.762981,0.161159,0.908887,0.489454,0.84154,0.334584,0.864455,0.680881,0.724831,0.080135,0.599482,0.670577,0.720456,0.0315261,0.231827,0.227267,0.0894918,0.305087,0.331104,0.440047,0.655373,0.134907,0.363867,0.49795,0.252638,0.0113851,0.103385,0.325922,0.132028,0.359982,0.429166,0.0119177,0.384584,0.400143,0.516239,0.625543,0.36584,0.893501,0.00139052,0.0998551,0.56506,0.212688,0.0709479,0.778708,0.478932,0.378678,0.821856,0.184756,0.753039,0.997074,0.666684,0.886942,0.531005,0.948062,0.092306,0.0442067,0.916088,0.121683,0.954274,0.98397,0.735334,0.684339,0.809151,0.374993,0.440411,0.948471,0.633809,0.855019,0.186868,0.041831,0.617841,0.258266,0.43341,0.665502,0.392155,0.390441,0.790616,0.5842,0.127448,0.003905,0.301176,0.620511,0.765148,0.360629,0.46511,0.963575,0.549739,0.300842,0.589262,0.986638,0.766178,0.940546,0.968343,0.862393,0.71025,0.143544,0.0330327,0.66625,0.422334,0.918668,0.115464,0.95317,0.261502,0.329619,0.728556,0.15249,0.350895,0.154619,0.903637,0.849493,0.306812,0.464964,0.194426,0.641409,0.377323,0.901758,0.865949,0.201843,0.759535,0.816297,0.491335,0.278546,0.266987,0.76419,0.178552,0.304655,0.23573,0.327629,0.0838935,0.834671,0.612484,0.179927,0.0818338,0.901225,0.333258,0.777659,0.658831,0.812239,0.872075,0.627171,0.398247,0.547775,0.153882,0.363582,0.76176,0.47804,0.260685,0.961182,0.949944,0.602485,0.742418,0.0454322,0.661075,0.0958934,0.391618,0.811967,0.535193,0.925566,0.137585,0.779764,0.00879264,0.199812,0.244173,0.935056,0.256,0.620231,0.83186,0.437467,0.124086,0.903215,0.311124,0.727697,0.207312,0.776407,0.105496,0.256145,0.179634,0.446919,0.00870252,0.608126,0.224752,0.381783,0.267838,0.106011,0.701524,0.959256,0.518013,0.509826,0.543726,0.862192,0.684493,0.753755,0.0389143,0.817192,0.954693,0.696516,0.211363,0.594637,0.445084,0.244105,0.0248848,0.6729,0.951326,0.874142,0.259329,0.898308,0.793099,0.0612823,0.809424,0.51529,0.17261,0.752534,0.35833,0.243118,0.383821,0.0131117,0.300632,0.947829,0.132142,0.314456,0.435856,0.182551,0.35957,0.899797,0.0119303,0.700803,0.632413,0.411532,0.0508742,0.805647,0.515685,0.28524,0.013303,0.204069,0.807554,0.742882,0.79792,0.547844,0.806301,0.182716,0.693669,0.490706,0.843395,0.437906,0.729286,0.559274,0.965423,0.00359994,0.415828,0.76755,0.58179,0.428306,0.0913076,0.867827,0.480032,0.913105,0.417793,0.955127,0.58342,0.778564,0.103107,0.920434,0.727869,0.381717,0.905556,0.260672,0.335576,0.735989,0.908823,0.575877,0.583625,0.409202,0.269051,0.512335,0.620815,0.0946513,0.0710032,0.428087,0.17462,0.764872,0.595668,0.0640908,0.65885,0.721455,0.524202,0.522885,0.656324,0.125295,0.855039,0.446436,0.347466,0.800489,0.372841,0.204938,0.362482,0.0706965,0.787664,0.655949,0.0602679,0.0434318,0.590355,0.10604,0.977926,0.529734,0.185273,0.474489,0.746474,0.396914,0.529329,0.499487,0.526619,0.70153,0.554614,0.496773,0.910941,0.193747,0.139299,0.682765,0.59319,0.839162,0.957812,0.586387,0.828439,0.45793,0.0331783,0.643715,0.40105,0.623374,0.0928548,0.0353344,0.257949,0.256716,0.64261,0.9345,0.467157,0.145704,0.288582,0.212318,0.752188,0.0116467,0.998529,0.0774583,0.874703,0.2353,0.489721,0.715584,0.460996,0.194268,0.155957,0.19875,0.575109,0.159991,0.564818,0.167877,0.926595,0.687218,0.303783,0.656271,0.55647,0.394819,0.219886,0.754043,0.0617288,0.887625,0.337503,0.198399,0.923682,0.830311,0.20568,0.12915,0.236436,0.514428,0.0740108,0.942618,0.326003,0.515862,0.318175,0.665896,0.171442,0.911575,0.829146,0.247124,0.191577,0.299123,0.768607,0.376407,0.762217,0.991275,0.562806,0.350756,0.450581,0.658757,0.735069,0.898361,0.757751,0.78382,0.533186,0.613687,0.0340032,0.56586,0.679181,0.768222,0.978136,0.756302,0.244971,0.0434479,0.480685,0.251507,0.0494419,0.935631,0.15464,0.637822,0.0102003,0.56289,0.672156,0.433071,0.242114,0.927132,0.137575,0.280897,0.818584,0.687631,0.283123,0.306833,0.146066,0.0215916,0.37083,0.685348,0.560859,0.0305104,0.8634,0.438055,0.859402,0.62521,0.051931,0.972415,0.961192,0.993497,0.629833,0.332284,0.546944,0.946917,0.913054,0.563995,0.0652433,0.585559,0.293153,0.250197,0.421483,0.416241,0.398304,0.245534,0.208767,0.536645,0.724824,0.746755,0.0720239,0.359495,0.192319,0.509772,0.534513,0.991015,0.180545,0.686108,0.820824,0.136186,0.404048,0.616841,0.767018,0.904805,0.566485,0.00744653,0.663609,0.754171,0.87799,0.616894,0.712323,0.122806,0.201575,0.531602,0.804359,0.669943,0.624974,0.649378,0.293542,0.854064,0.160138,0.839898,0.517789,0.131296,0.567073,0.467284,0.758361,0.30753,0.660945,0.605923,0.22357,0.350576,0.858799,0.120471,0.789127,0.869596,0.935738,0.746288,0.272963,0.49606,0.130569,0.676432,0.418776,0.841279,0.707952,0.776259,0.261831,0.131875,0.836862,0.570567,0.175881,0.804886,0.179347,0.21555,0.333284,0.285206,0.498304,0.637,0.116006,0.513938,0.713132,0.554683,0.615635,0.369729,0.12883,0.453444,0.0541324,0.670278,0.0335237,0.778004,0.844426,0.777096,0.899774,0.526813,0.0930645,0.28544,0.38912,0.239318,0.819452,0.814578,0.882198,0.178384,0.34503,0.755748,0.48542,0.717951,0.600862,0.527164,0.437932,0.747237,0.105633,0.770375,0.0304138,0.403184,0.773574,0.729733,0.168836,0.72477,0.529558,0.379766,0.822905,0.921531,0.495808,0.911218,0.760223,0.0834434,0.615097,0.693569,0.89357,0.57987,0.233426,0.856983,0.752585,0.477448,0.991786,0.863809,0.110868,0.501539,0.958307,0.127916,0.838675,0.889609,0.807502,0.550125,0.195588,0.0203187,0.939718,0.668246,0.770146,0.980638,0.851772,0.197306,0.688244,0.0195217,0.0200307,0.641852,0.372969,0.308121,0.132014,0.69733,0.798588,0.811088,0.414729,0.57936,0.170496,0.61698,0.631837,0.287894,0.0332664,0.749601,0.765374,0.0843922,0.978286,0.711189,0.269782,0.886589,0.0487325,0.759539,0.451724,|0.18881,0.665847,0.172443,0.789342,0.531603,0.440554,0.0695997,0.222579,0.506092,0.259695,0.115606,0.58891,0.0389157,0.686653,0.0136973,0.46119,0.498934,0.669056,0.56823,0.291155,0.340611,0.3497,0.123839,0.626774,0.511324,0.296393,0.407279,0.458465,0.850838,0.785319,0.260378,0.0946527,0.615159,0.466044,0.186876,0.241199,0.289877,0.964709,0.778263,0.87109,0.242132,0.851257,0.248318,0.418628,0.696946,0.0204747,0.0294213,0.31279,0.120184,0.97472,0.237685,0.489413,0.941671,0.548566,0.480703,0.314297,0.193574,0.904823,0.184816,0.674632,0.618363,0.260596,0.361396,0.968267,0.47652,0.227814,0.707285,0.181432,0.278344,0.375493,0.797026,0.711868,0.0975566,0.0599216,0.736136,0.931785,0.123389,0.0400366,0.460171,0.929782,0.587562,0.929699,0.0642721,0.852839,0.574224,0.455809,0.968338,0.32387,0.930421,0.186504,0.755013,0.411697,0.756583,0.832127,0.0680513,0.678816,0.313836,0.639868,0.445771,0.785991,0.221435,0.699214,0.972329,0.585493,0.962347,0.646087,0.317871,0.525106,0.251853,0.740749,0.05006,0.0544522,0.0491832,0.76875,0.0192975,0.450154,0.410759,0.0987576,0.2734,0.650872,0.738743,0.196299,0.876772,0.0745206,0.566128,0.345068,0.59796,0.328742,0.255464,0.515754,0.399649,0.368434,0.592899,0.409521,0.0204852,0.164565,0.764506,0.124255,0.328616,0.387007,0.307105,0.140041,0.497294,0.713213,0.0275781,0.382231,0.11208,0.827438,0.53281,0.990435,0.392992,0.798908,0.805943,0.552321,0.530976,0.642935,0.240018,0.601194,0.746605,0.0970839,0.379265,0.855741,0.210777,0.0931623,0.3741,0.473665,0.344437,0.61162,0.553073,0.625029,0.927451,0.289914,0.18049,0.521851,0.596783,0.757744,0.699027,0.677021,0.688396,0.371491,0.630378,0.266271,0.837304,0.786178,0.369603,0.351651,0.0812021,0.523004,0.755157,0.871748,0.64693,0.102201,0.0327856,0.917499,0.973161,0.54862,0.32193,0.163535,0.44013,0.576564,0.541739,0.371027,0.575466,0.0667012,0.589683,0.109597,0.144485,0.580072,0.663638,0.520933,0.710122,0.326892,0.501906,0.119045,0.664462,0.0894105,0.987791,0.942252,0.879849,0.644818,0.193247,0.829027,0.804882,0.101727,0.536616,0.411107,0.0760069,0.916782,0.953255,0.510337,0.194542,0.803547,0.6731,0.0319735,0.303424,0.212056,0.609335,0.637966,0.24779,0.469592,0.90094,0.7425,0.686461,0.604826,0.549274,0.245548,0.956934,0.848841,0.433508,0.247186,0.463405,0.685155,0.436831,0.699429,0.050831,0.0947326,0.0646525,0.597145,0.0676566,0.950807,0.652814,0.0754746,0.819305,0.582481,0.588136,0.49639,0.342056,0.612613,0.280504,0.429121,0.612722,0.108162,0.597265,0.903542,0.744127,0.954704,0.69379,0.81317,0.421767,0.472555,0.305568,0.467818,0.726509,0.157151,0.454964,0.650026,0.52766,0.940809,0.650187,0.137469,0.329248,0.823702,0.919702,0.534424,0.631912,0.594745,0.0969043,0.454299,0.962502,0.54474,0.532395,0.62347,0.600532,0.91428,0.862192,0.3171,0.549552,0.95929,0.790839,0.13058,0.811263,0.916039,0.610975,0.208778,0.511705,0.596775,0.371544,0.203282,0.0181238,0.606232,0.393695,0.0983148,0.320377,0.241177,0.588453,0.00109708,0.92283,0.154045,0.908824,0.729145,0.552552,0.0780743,0.182401,0.710709,0.677594,0.49675,0.151341,0.844355,0.0537254,0.0835959,0.941917,0.37792,0.947389,0.214409,0.00699067,0.977474,0.393464,0.527565,0.688635,0.631868,0.453929,0.871416,0.0891055,0.944228,0.426887,0.779375,0.907784,0.77153,0.96711,0.176249,0.851431,0.290222,0.750055,0.846474,0.861507,0.878965,0.731897,0.161052,0.0760315,0.540941,0.218796,0.385148,0.187944,0.985326,0.335159,0.629177,0.538551,0.0176535,0.35363,0.297914,0.917123,0.487207,0.764623,0.609834,0.240598,0.125658,0.740124,0.933767,0.051002,0.444195,0.617086,0.23714,0.452083,0.781323,0.367457,0.49139,0.753413,0.0569486,0.312497,0.291191,0.308291,0.158937,0.000190258,0.750253,0.128022,0.822725,0.304274,0.441131,0.0372946,0.046948,0.820015,0.418909,0.409425,0.165968,0.620336,0.784335,0.586477,0.590804,0.0145527,0.281193,0.946765,0.930667,0.165273,0.0520514,0.97594,0.360745,0.622077,0.0913804,0.166609,0.979236,0.670674,0.73431,0.727068,0.526282,0.365201,0.744212,0.229367,0.126527,0.596905,0.269242,0.0213914,0.647062,0.813552,0.188625,0.780661,0.0639251,0.252981,0.964941,0.0828239,0.620817,0.913527,0.259442,0.915952,0.146224,0.830605,0.892017,0.488377,0.438537,0.0600411,0.115391,0.365844,0.358563,0.306997,0.318094,0.895064,0.169869,0.802943,0.316924,0.992531,0.117014,0.471029,0.279301,0.340213,0.0233963,0.657449,0.597898,0.793267,0.983956,0.916424,0.494514,0.450555,0.30862,0.863149,0.110619,0.310098,0.110304,0.498058,0.0378086,0.443108,0.435378,0.616961,0.590716,0.153554,0.194042,0.280525,0.422405,0.580726,0.39277,0.723437,0.743324,0.878338,0.750508,0.449539,0.353758,0.0985278,0.988734,0.106468,0.340198,0.624491,0.573841,0.928122,0.631428,0.11435,0.425153,0.442035,0.0397363,0.952198,0.159167,0.138504,0.136067,0.274167,0.58772,0.951493,0.389659,0.179411,0.411314,0.430014,0.332208,0.141676,0.127656,0.514175,0.467429,0.849486,0.970518,0.127339,0.440693,0.0100899,0.680948,0.0327466,0.912262,0.569784,0.0522091,0.352648,0.963755,0.0695806,0.628646,0.821646,0.73241,0.0551505,0.531535,0.0203009,0.35793,0.89587,0.124569,0.775932,0.548532,0.683057,0.380441,0.110442,0.541702,0.889109,0.128463,0.170861,0.00104237,0.450465,0.785193,0.337316,0.633496,0.263617,0.137366,0.473624,0.0567868,0.654612,0.19388,0.615026,0.690405,0.152428,0.0385759,0.557745,0.587302,0.964497,0.898282,0.480164,0.984387,0.734728,0.12388,0.304277,0.112246,0.726415,0.198686,0.377598,0.28187,0.292772,0.657667,0.603899,0.0429336,0.712588,0.89728,0.119804,0.181284,0.371607,0.0980899,0.286584,0.432252,0.368153,0.164739,0.182485,0.173068,0.398775,0.766458,0.828614,0.715129,0.423755,0.627392,0.170398,0.359121,0.42451,0.234663,0.247097,0.66633,0.585161,0.942246,0.584333,0.394411,0.64088,0.859712,0.101915,0.940404,0.464451,0.955681,0.589061,0.518025,0.458131,0.881566,0.632115,0.417137,0.353336,0.699556,0.934416,0.307546,0.160245,0.5684,0.590639,0.0336493,0.745407,0.511246,0.404569,0.980358,0.623714,0.95007,0.0264738,0.120152,0.473408,0.774823,0.976322,0.154776,0.14909,0.486764,0.797426,0.213031,0.885037,0.28842,0.615231,0.219726,0.440994,0.505998,0.549745,0.171844,0.779145,0.738934,0.0111305,0.667574,0.743789,0.424976,0.246209,0.517948,0.117268,0.992364,0.243256,0.301542,0.920775,0.760622,0.0530811,0.682273,0.641648,0.775302,0.609207,0.742677,0.814441,0.825284,0.843715,0.599269,0.45895,0.308639,0.829185,0.540599,0.722476,0.594505,0.579755,0.680745,0.359656,0.95811,0.0188839,0.644594,0.436929,0.151395,0.133263,0.313307,0.907195,0.601051,0.509631,0.161784,0.609125,0.434065,0.404142,0.617919,0.882418,0.215972,0.269795,0.00353473,0.155926,0.358223,0.898021,0.767209,0.658084,0.481245,0.069046,0.795796,0.60216,0.51589,0.178205,0.661726,0.688807,0.0393653,0.0701556,0.135508,0.917327,0.499928,0.55632,0.588109,0.296944,0.265729,0.184077,0.943806,0.508873,0.643455,0.925535,0.642477,0.279576,0.787416,0.00116807,0.611037,0.675955,0.599311,0.38524,0.253168,0.263851,0.822953,0.841192,0.424624,0.0492344,0.719081,0.76031,0.915919,0.773011,0.745037,0.112369,0.710692,0.97418,0.74087,0.354504,0.585299,0.532697,0.465119,0.137444,0.795641,0.646568,0.284082,0.732523,0.36608,0.62141,0.00174004,0.617518,0.241846,0.218046,0.438804,0.0350521,0.434102,0.294964,0.382608,0.924178,0.303727,0.413203,0.924485,0.323945,0.808883,0.136502,0.763315,0.982884,0.191488,0.21392,0.256646,0.891235,0.657036,0.0247845,0.749741,0.786497,0.651705,0.181317,0.022445,0.114246,0.123219,0.132409,0.393547,0.843353,0.116933,0.545836,0.441087,0.0755488,0.627091,0.253971,0.292586,0.705546,0.628105,0.932974,0.157816,0.669146,0.835123,0.73157,0.909743,0.671741,0.312327,0.0902329,0.935709,0.159627,0.14314,0.743169,0.0672649,0.155289,0.723951,0.622234,0.100528,0.43928,0.667283,0.136739,0.090744,0.585176,0.0115787,0.534101,0.764929,0.771193,0.00449973,0.275614,0.605187,0.682193,0.177165,0.954634,0.633905,0.852882,0.0655916,0.371863,0.855189,0.516705,0.33924,0.290726,0.393414,0.209963,0.439067,0.948398,0.031554,0.463723,0.836371,0.94106,0.631301,0.242871,0.37577,0.530337,0.318655,0.0338528,0.545548,0.352885,0.281106,0.753091,0.412645,0.110733,0.878905,0.475292,0.346716,0.785734,0.343874,0.165895,0.112921,0.777644,0.138373,0.815473,0.229783,0.269199,0.699071,0.404649,0.446654,0.164364,0.650928,0.200182,0.802673,0.257006,0.554582,0.136778,0.618508,0.535832,0.980985,0.493627,0.367693,0.795423,0.441791,0.726398,0.0139355,0.482719,0.804113,0.26277,0.305962,0.535628,0.863261,0.474903,0.678213,0.502273,0.682428,0.253425,0.00345486,0.144269,0.75968,0.0348333,0.974018,0.907199,0.870741,0.529109,0.112014,0.858266,0.0196299,0.512822,0.481573,0.408497,0.977996,0.567501,0.896534,0.96792,0.920827,0.0489243,0.423852,0.527039,0.00926483,0.319408,0.240743,0.193639,0.85143,0.69213,0.0316221,0.900764,0.327674,0.408172,0.187772,0.573451,0.610826,0.531684,0.835031,0.737263,0.330491,0.0189441,0.461485,0.397033,0.589351,0.470468,0.213451,0.795707,0.620721,0.144091,0.051291,0.585649,0.757253,0.731327,0.586657,0.760393,0.806145,0.727149,0.493661,0.895687,0.37349,0.75821,0.12811,0.250276,0.845839,0.607144,0.50222,0.968552,0.642143,0.414081,0.0175632,0.365712,0.577523,0.275351,0.651845,|0.126674,0.570781,0.577368,0.572154,0.854175,0.517414,0.356068,0.639572,0.363945,0.150726,0.18533,0.556232,0.459516,0.331647,0.494799,0.882896,0.16875,0.407173,0.732091,0.6436,0.433194,0.618867,0.783908,0.5546,0.250049,0.551217,0.058379,0.217908,0.155906,0.435257,0.373833,0.176037,0.431548,0.524576,0.801067,0.0959989,0.563521,0.324429,0.96952,0.973291,0.0908293,0.506125,0.180887,0.0407183,0.487706,0.410678,0.578444,0.555957,0.0673818,0.422463,0.399187,0.433077,0.799824,0.509284,0.690832,0.0341385,0.629056,0.126156,0.0619406,0.989681,0.0152147,0.625595,0.372059,0.97454,0.239984,0.835736,0.0753217,0.191268,0.589037,0.309939,0.296059,0.591364,0.548775,0.782522,0.10233,0.95325,0.342169,0.094238,0.572965,0.715126,0.929738,0.536052,0.413986,0.0323184,0.410395,0.00722826,0.687979,0.22615,0.595342,0.68984,0.767994,0.530826,0.564507,0.0513883,0.337755,0.698895,0.622587,0.840484,0.945992,0.962702,0.701473,0.737254,0.661179,0.0843992,0.897064,0.327655,0.182811,0.934173,0.893379,0.742596,0.655049,0.419356,0.600802,0.737298,0.333022,0.146075,0.512352,0.929615,0.46432,0.665822,0.747671,0.621426,0.252315,0.462901,0.189931,0.633431,0.860716,0.134796,0.0927414,0.54226,0.53995,0.231726,0.666701,0.834882,0.550563,0.422879,0.504219,0.0166139,0.652696,0.253911,0.307149,0.590913,0.142311,0.94089,0.619964,0.529247,0.354704,0.771839,0.531815,0.295297,0.355533,0.0308499,0.555575,0.576705,0.378239,0.206244,0.747867,0.537316,0.608202,0.04796,0.948959,0.782321,0.473151,0.26951,0.728188,0.183449,0.506156,0.234453,0.460492,0.52965,0.24708,0.276676,0.482534,0.907574,0.824664,0.957082,0.882635,0.154244,0.111167,0.736363,0.258714,0.377762,0.124342,0.568898,0.127699,0.342655,0.69998,0.0712661,0.628911,0.299467,0.533781,0.512779,0.320694,0.374906,0.900519,0.555633,0.934926,0.562275,0.409795,0.427639,0.893544,0.0513861,0.961467,0.565729,0.514168,0.518799,0.191275,0.263277,0.2151,0.671544,0.43205,0.778872,0.269457,0.757364,0.664769,0.475318,0.643791,0.843346,0.641482,0.0158913,0.0701132,0.0603673,0.530418,0.445607,0.0587883,0.717139,0.472098,0.0905146,0.26554,0.78404,0.835523,0.501115,0.951698,0.679467,0.220208,0.915014,0.105236,0.00238842,0.681806,0.775994,0.894978,0.0954785,0.40116,0.19007,0.266183,0.566372,0.420886,0.717168,0.0284693,0.789841,0.00729102,0.243245,0.115958,0.609614,0.806498,0.937977,0.691397,0.0169511,0.634146,0.852954,0.0150651,0.0713663,0.0212892,0.564549,0.634432,0.906379,0.324458,0.768881,0.762341,0.687147,0.176864,0.967246,0.701937,0.841152,0.265125,0.433947,0.838974,0.121225,0.337705,0.646883,0.401274,0.997088,0.608999,0.536327,0.689801,0.348992,0.769248,0.624785,0.318792,0.0597259,0.0297689,0.0799267,0.361499,0.990365,0.0169566,0.0632048,0.581969,0.112596,0.957062,0.855063,0.669369,0.38575,0.181726,0.456365,0.885208,0.914578,0.777745,0.959449,0.0193272,0.329754,0.725301,0.0679473,0.394269,0.297066,0.428088,0.253326,0.0133988,0.657376,0.117931,0.848558,0.273759,0.150774,0.770097,0.311044,0.282966,0.13211,0.416871,0.0613499,0.713103,0.586067,0.130414,0.266039,0.0139305,0.388875,0.823649,0.828796,0.134463,0.556745,0.961107,0.0442539,0.621323,0.816778,0.743329,0.024913,0.236052,0.0260607,0.635042,0.660254,0.572065,0.235211,0.494221,0.0995117,0.702299,0.0305462,0.0302325,0.92461,0.58004,0.995181,0.743498,0.0185165,0.24659,0.228244,0.708275,0.685228,0.154636,0.740036,0.422199,0.0370727,0.756079,0.469521,0.579247,0.561965,0.809425,0.0262746,0.913518,0.920718,0.103206,0.0800937,0.390819,0.630298,0.279132,0.556004,0.282913,0.558401,0.567814,0.493637,0.0290744,0.243611,0.424677,0.238028,0.275991,0.970045,0.577731,0.978421,0.889173,0.171521,0.950308,0.634576,0.821887,0.45479,0.010318,0.267016,0.0726947,0.189829,0.630421,0.0995297,0.0186394,0.501923,0.199832,0.822959,0.850487,0.739967,0.370248,0.227218,0.711193,0.0143578,0.441283,0.192761,0.448246,0.383886,0.683881,0.159173,0.67329,0.0794075,0.434886,0.755495,0.697768,0.891625,0.43119,0.480163,0.229012,0.269635,0.124126,0.238509,0.381801,0.715197,0.669665,0.771633,0.0134789,0.86737,0.820398,0.224847,0.305772,0.621314,0.0776265,0.0161309,0.316071,0.769044,0.271803,0.697275,0.0213308,0.456624,0.246649,0.523972,0.65559,0.950911,0.458514,0.52771,0.197317,0.72589,0.469324,0.0945573,0.572854,0.282163,0.432701,0.164232,0.159426,0.783447,0.153293,0.133143,0.156679,0.176566,0.241499,0.996295,0.834086,0.732095,0.684826,0.483427,0.970941,0.128876,0.680545,0.0469258,0.429141,0.211182,0.60597,0.366461,0.438983,0.22624,0.249025,0.815337,0.920037,0.48995,0.511039,0.768716,0.0360858,0.741628,0.501577,0.848026,0.0591416,0.000986636,0.333569,0.799962,0.984699,0.382841,0.304439,0.111351,0.226288,0.742796,0.812591,0.325567,0.638867,0.0539051,0.791178,0.724947,0.0522314,0.874607,0.362849,0.739817,0.675006,0.42613,0.293669,0.390188,0.837079,0.673497,0.145116,0.531705,0.796454,0.673843,0.395959,0.0670853,0.240167,0.418669,0.963366,0.695831,0.866583,0.507009,0.335997,0.845549,0.515182,0.265463,0.8337,0.337184,0.00992239,0.965348,0.0498818,0.591176,0.912801,0.791193,0.0826219,0.861514,0.035521,0.413731,0.87302,0.277665,0.795187,0.051204,0.494784,0.361783,0.977602,0.0271397,0.999656,0.368433,0.515687,0.602047,0.209404,0.106205,0.695633,0.00534058,0.0956111,0.799605,0.523498,0.815497,0.532091,0.671465,0.143867,0.0761408,0.894869,0.946263,0.434928,0.546229,0.84245,0.886265,0.0765987,0.764768,0.420202,0.450347,0.923615,0.514431,0.258478,0.953221,0.503571,0.0791234,0.855496,0.839869,0.884741,0.0701298,0.199478,0.631298,0.0328828,0.252339,0.590687,0.282275,0.720749,0.0932067,0.476358,0.167669,0.26161,0.421653,0.109497,0.7778,0.192227,0.0865748,0.269087,0.806327,0.114483,0.189738,0.610479,0.557201,0.0350003,0.53918,0.273056,0.98583,0.232306,0.283887,0.410723,0.750686,0.00934952,0.355528,0.508576,0.328522,0.0799342,0.0526708,0.15131,0.999321,0.304724,0.078588,0.671247,0.418839,0.210247,0.528119,0.887231,0.596219,0.978802,0.424261,0.0198917,0.436044,0.277441,0.855229,0.454412,0.289904,0.492549,0.774513,0.844585,0.362833,0.0516989,0.11296,0.538737,0.453327,0.444661,0.919768,0.638607,0.0973098,0.0108301,0.593891,0.433682,0.581933,0.369931,0.205028,0.372458,0.0665322,0.153621,0.881965,0.523546,0.796696,0.537712,0.127981,0.714201,0.955644,0.329662,0.270738,0.359448,0.545192,0.900272,0.248065,0.0858287,0.558053,0.26235,0.64576,0.250464,0.22316,0.0489952,0.851791,0.114206,0.690818,0.631234,0.869144,0.0874264,0.340648,0.0128068,0.11058,0.592037,0.791482,0.0566448,0.424301,0.436436,0.348222,0.230743,0.949047,0.953226,0.135706,0.360593,0.261693,0.868748,0.342238,0.528011,0.0990501,0.43157,0.95858,0.552783,0.707598,0.416576,0.461744,0.182049,0.427446,0.258925,0.90376,0.321544,0.522946,0.630965,0.667541,0.699896,0.0315976,0.772238,0.0274958,0.629359,0.660488,0.259278,0.282678,0.32481,0.0340403,0.467127,0.210158,0.25593,0.609341,0.425458,0.275732,0.0183643,0.835053,0.415904,0.163095,0.493274,0.548018,0.847874,0.815916,0.0266603,0.901105,0.992433,0.0228179,0.499194,0.462457,0.407469,0.596692,0.851958,0.446169,0.398214,0.540053,0.480853,0.20686,0.820646,0.70325,0.703781,0.257146,0.883896,0.32209,0.94846,0.408917,0.446692,0.997465,0.267202,0.737791,0.0803127,0.194072,0.231593,0.852317,0.373703,0.708745,0.492993,0.0942565,0.163265,0.712011,0.133474,0.539882,0.280393,0.0844125,0.449391,0.211813,0.795065,0.370693,0.380874,0.376554,0.979705,0.429957,0.0418264,0.854058,0.510447,0.681445,0.0738991,0.598038,0.792866,0.487281,0.201845,0.875139,0.573292,0.582098,0.806279,0.695369,0.104236,0.0992317,0.601707,0.23916,0.652856,0.16676,0.0195439,0.819919,0.175065,0.683575,0.242563,0.352245,0.867175,0.922331,0.779811,0.948072,0.824313,0.782203,0.861895,0.444595,0.655329,0.861847,0.0363481,0.830572,0.190087,0.109438,0.933689,0.580385,0.768244,0.50959,0.492832,0.392179,0.158883,0.36558,0.194561,0.600504,0.146929,0.0937428,0.527412,0.142745,0.183034,0.450975,0.052913,0.581912,0.240553,0.418118,0.478705,0.628911,0.681114,0.952178,0.142294,0.883764,0.921238,0.660451,0.958047,0.115687,0.597299,0.404613,0.228978,0.303607,0.246505,0.392438,0.544021,0.374825,0.406843,0.409395,0.106761,0.490462,0.977049,0.583265,0.28154,0.536801,0.518807,0.507175,0.344537,0.648305,0.648926,0.0729885,0.153312,0.288916,0.270423,0.983808,0.81968,0.613452,0.93343,0.544776,0.000443101,0.589902,0.729782,0.0758086,0.737649,0.705207,0.153546,0.0338695,0.108783,0.472924,0.0209676,0.543971,0.690524,0.658938,0.793691,0.831396,0.293322,0.529219,0.0984117,0.637579,0.765224,0.560687,0.00306243,0.278766,0.699717,0.595247,0.437034,0.0305577,0.413459,0.786361,0.136014,0.547607,0.737364,0.0175917,0.68102,0.146837,0.533883,0.739562,0.599791,0.4413,0.461882,0.188773,0.319686,0.37042,0.712678,0.829679,0.921062,0.0808907,0.148637,0.881595,0.777395,0.0553952,0.110602,0.42422,0.134957,0.0273439,0.935288,0.0752923,0.0663719,0.0481984,0.832602,0.00346237,0.560577,0.472915,0.0395362,0.0508686,0.913567,0.479334,0.490561,0.443269,0.10329,0.161682,0.0315325,0.703342,0.450459,0.0327933,0.625861,0.707564,0.675335,0.896122,0.968765,0.230209,0.759045,0.158844,0.201931,0.47891,0.775712,0.0499049,0.243172,0.10525,0.892828,0.134783,0.0332029,0.662023,0.0113382,0.170792,0.119753,0.50167,|0.0243222,0.125659,0.488159,0.18471,0.401158,0.164189,0.593873,0.67594,0.687093,0.736344,0.0733994,0.651591,0.530582,0.319209,0.802031,0.675297,0.449203,0.0355585,0.087728,0.597434,0.360321,0.333707,0.743376,0.373216,0.243917,0.374418,0.882713,0.800782,0.727606,0.451999,0.49873,0.363356,0.649747,0.00533038,0.969055,0.258667,0.13008,0.38807,0.395579,0.237166,0.451256,0.867043,0.66999,0.778476,0.982094,0.646492,0.0423421,0.718864,0.260251,0.849434,0.806848,0.381879,0.924344,0.756954,0.0497568,0.515718,0.434438,0.602712,0.0821189,0.653654,0.156612,0.812629,0.447169,0.92201,0.781216,0.83563,0.486293,0.417539,0.72411,0.923645,0.567309,0.65858,0.26947,0.740521,0.366323,0.133141,0.0900738,0.285313,0.919863,0.922516,0.778001,0.633611,0.419063,0.648181,0.275578,0.0688381,0.415657,0.907092,0.456047,0.814953,0.179073,0.095605,0.994211,0.592687,0.497898,0.555245,0.080435,0.530283,0.696662,0.700036,0.0907333,0.299136,0.0970352,0.312999,0.324475,0.240711,0.576468,0.189012,0.363961,0.441488,0.834608,0.126624,0.892716,0.125138,0.654899,0.66059,0.760884,0.433297,0.366429,0.195045,0.594825,0.926201,0.608051,0.482672,0.529498,0.688013,0.667696,0.32211,0.0487695,0.701193,0.0973114,0.910317,0.000356376,0.542198,0.366114,0.447393,0.826121,0.109388,0.475671,0.758092,0.645704,0.535481,0.874478,0.693262,0.245676,0.808832,0.60442,0.76697,0.394118,0.292306,0.269673,0.351178,0.124071,0.811518,0.704193,0.847532,0.993115,0.664158,0.384952,0.98731,0.159312,0.511823,0.186997,0.12975,0.595436,0.314671,0.658666,0.0489278,0.132383,0.275282,0.226426,0.81183,0.957775,0.843431,0.609086,0.747245,0.556541,0.679675,0.599628,0.761348,0.373292,0.805244,0.347626,0.717905,0.52991,0.752206,0.680353,0.424027,0.617352,0.989347,0.757354,0.565126,0.819775,0.323967,0.736175,0.915742,0.287673,0.857828,0.0734876,0.71871,0.215536,0.608689,0.84043,0.0568789,0.204929,0.305162,0.190757,0.948008,0.498751,0.209557,0.912785,0.0259799,0.783973,0.173673,0.454669,0.196338,0.960858,0.181555,0.269073,0.545898,0.110359,0.00768977,0.801321,0.913454,0.92687,0.290512,0.927109,0.138745,0.839377,0.765703,0.389526,0.626296,0.486138,0.96895,0.852206,0.939341,0.245439,0.655584,0.849689,0.105942,0.0663102,0.913289,0.97301,0.812482,0.522053,0.871899,0.538623,0.399721,0.967868,0.714527,0.230893,0.331843,0.14896,0.312996,0.957944,0.315509,0.0545896,0.635607,0.163771,0.021621,0.578611,0.415356,0.488697,0.356738,0.67943,0.47956,0.867477,0.680013,0.424331,0.259187,0.0286597,0.112313,0.844209,0.151948,0.337316,0.701711,0.878606,0.860506,0.607227,0.0511534,0.447731,0.0547065,0.214989,0.656357,0.292708,0.550256,0.902382,0.790385,0.00181174,0.480221,0.797756,0.0707446,0.327159,0.155887,0.374286,0.152971,0.784138,0.528051,0.823665,0.199884,0.132153,0.799253,0.701527,0.423912,0.722504,0.0955054,0.188946,0.128059,0.507572,0.395845,0.148784,0.91229,0.33846,0.778269,0.534989,0.0797755,0.867394,0.958564,0.0320604,0.390247,0.183331,0.0854347,0.947066,0.612536,0.372015,0.753599,0.723073,0.694776,0.694571,0.0481066,0.67127,0.237514,0.225581,0.134791,0.872808,0.194875,0.178544,0.66262,0.863271,0.703136,0.797037,0.811676,0.585557,0.643994,0.968777,0.136436,0.468693,0.172468,0.956132,0.768788,0.470212,0.320938,0.0176942,0.759505,0.820533,0.160372,0.363522,0.115277,0.78082,0.505696,0.42731,0.46572,0.0616838,0.453771,0.529275,0.489928,0.360497,0.410235,0.305975,0.538776,0.137778,0.213711,0.0326505,0.358,0.528999,0.410235,0.531522,0.0304168,0.316221,0.241414,0.891743,0.590137,0.344044,0.524217,0.651721,0.587826,0.582718,0.474268,0.646759,0.50986,0.688699,0.899515,0.924449,0.515372,0.346166,0.746625,0.415134,0.625888,0.0173168,0.669546,0.203589,0.0453894,0.561993,0.269561,0.79829,0.615357,0.831477,0.461641,0.812896,0.374831,0.0474073,0.0527686,0.788566,0.718467,0.935053,0.519417,0.262164,0.357571,0.216326,0.327862,0.81412,0.313646,0.133814,0.477523,0.741232,0.675663,0.0799929,0.384303,0.864791,0.876412,0.276652,0.142366,0.00263894,0.92919,0.778023,0.136878,0.729325,0.836557,0.562302,0.0413081,0.0835409,0.165771,0.516335,0.96205,0.748932,0.7569,0.367048,0.361159,0.248384,0.20467,0.453503,0.761515,0.997751,0.563543,0.544725,0.198563,0.190783,0.422207,0.320619,0.373099,0.761436,0.54502,0.0425252,0.891269,0.600504,0.570337,0.183328,0.413972,0.451749,0.476176,0.417094,0.818752,0.1008,0.657062,0.743167,0.607287,0.183452,0.214681,0.667958,0.744335,0.811804,0.798029,0.0831082,0.236431,0.651586,0.365301,0.576397,0.842783,0.194206,0.479903,0.426605,0.537836,0.0773185,0.489937,0.118736,0.645177,0.876306,0.146675,0.0370287,0.121742,0.829869,0.231173,0.366464,0.154415,0.298891,0.580913,0.676225,0.494941,0.840516,0.77813,0.350496,0.0263429,0.977949,0.434409,0.5284,0.476235,0.96991,0.272503,0.295169,0.659507,0.442841,0.118354,0.393386,0.703298,0.88247,0.719598,0.897854,0.560399,0.587938,0.245325,0.0825205,0.0686712,0.928166,0.607885,0.217401,0.717325,0.745777,0.372983,0.440094,0.57966,0.493223,0.914516,0.310853,0.692212,0.660438,0.457913,0.827329,0.895818,0.32405,0.661384,0.875631,0.447953,0.562478,0.780235,0.553361,0.265715,0.641276,0.646055,0.221333,0.344513,0.840145,0.987195,0.027675,0.763006,0.173859,0.0559657,0.835077,0.139822,0.408558,0.217455,0.204143,0.836262,0.89551,0.759626,0.616692,0.420281,0.356597,0.420244,0.402098,0.439538,0.564869,0.207588,0.76441,0.305537,0.483267,0.0312127,0.349311,0.551764,0.701216,0.00333893,0.890885,0.115987,0.887937,0.161504,0.79571,0.672479,0.357848,0.27442,0.0627195,0.532933,0.498561,0.331203,0.600489,0.91739,0.201797,0.101125,0.194644,0.916691,0.319591,0.235611,0.42877,0.280652,0.38673,0.59412,0.0339832,0.98055,0.538475,0.897311,0.58137,0.658283,0.402716,0.936628,0.636923,0.230098,0.455038,0.481152,0.529478,0.679769,0.279982,0.404591,0.387103,0.326629,0.856005,0.93978,0.65241,0.176933,0.112311,0.775922,0.304097,0.637598,0.65263,0.679815,0.632663,0.702344,0.0186104,0.893652,0.326326,0.927459,0.529633,0.81743,0.508783,0.572048,0.86128,0.290213,0.0703943,0.787178,0.655017,0.888465,0.226468,0.568489,0.483453,0.26802,0.437348,0.549731,0.917091,0.47349,0.329942,0.517612,0.171785,0.17692,0.23826,0.23924,0.126889,0.613566,0.805337,0.389512,0.237022,0.734832,0.322609,0.47043,0.916124,0.974928,0.278565,0.940785,0.833951,0.362655,0.602238,0.880708,0.505192,0.849369,0.088817,0.0397059,0.164409,0.902427,0.438659,0.974339,0.38429,0.0623966,0.738838,0.841488,0.86988,0.503869,0.506077,0.829693,0.227791,0.225984,0.226872,0.902226,0.396747,0.149209,0.774071,0.258705,0.974393,0.125104,0.307909,0.73191,0.128008,0.640906,0.752325,0.370525,0.368836,0.14937,0.8063,0.364707,0.715602,0.185496,0.682761,0.969882,0.656347,0.19844,0.367191,0.912767,0.344417,0.309885,0.494309,0.246089,0.503656,0.388052,0.908006,0.280586,0.128992,0.433676,0.962888,0.484564,0.860703,0.866575,0.52111,0.332587,0.865889,0.523927,0.885028,0.100797,0.672461,0.706739,0.313472,0.617564,0.501867,0.32127,0.903297,0.119431,0.693009,0.65007,0.883289,0.800634,0.188472,0.40027,0.601366,0.435409,0.641396,0.787036,0.495621,0.476283,0.625786,0.442212,0.152448,0.540341,0.386289,0.22446,0.640397,0.160508,0.464005,0.609213,0.299887,0.523824,0.737303,0.376564,0.863846,0.881237,0.527503,0.972876,0.902163,0.890384,0.774974,0.272647,0.203869,0.921948,0.177887,0.198629,0.524387,0.757335,0.849028,0.725474,0.819777,0.830012,0.980473,0.380787,0.457955,0.0457247,0.332575,0.056954,0.0919893,0.47143,0.368516,0.0866435,0.403044,0.435305,0.44199,0.74541,0.102386,0.776679,0.889999,0.795018,0.971293,0.233759,0.106893,0.917351,0.426539,0.966177,0.605459,0.0577062,0.357501,0.951079,0.469653,0.86506,0.78572,0.735598,0.289094,0.464353,0.83718,0.399924,0.27163,0.303914,0.530885,0.0438377,0.308062,0.550961,0.760011,0.519484,0.930637,0.260108,0.544985,0.878302,0.372575,0.602248,0.239168,0.0262516,0.885811,0.982991,0.658356,0.57025,0.948019,0.53656,0.147188,0.80115,0.552725,0.842039,0.852476,0.458485,0.550479,0.207834,0.164415,0.493102,0.713546,0.42223,0.155778,0.858799,0.480574,0.623761,0.86104,0.729666,0.195285,0.74829,0.434496,0.271521,0.966489,0.527447,0.545652,0.723632,0.777897,0.147748,0.584983,0.905654,0.0217974,0.618249,0.585288,0.728416,0.950617,0.853438,0.691867,0.510701,0.125467,0.516956,0.0566395,0.176631,0.544662,0.879765,0.291898,0.256981,0.953385,0.639069,0.991217,0.257479,0.575211,0.992335,0.62047,0.188991,0.574728,0.844615,0.230167,0.309189,0.178595,0.438255,0.123822,0.354462,0.468094,0.450953,0.5648,0.72328,0.69448,0.291643,0.780211,0.883457,0.713128,0.959715,0.731397,0.582305,0.0798078,0.558553,0.419017,0.548634,0.881359,0.546102,0.142375,0.358745,0.145002,0.227825,0.593712,0.722176,0.487215,0.0490609,0.682138,0.942867,0.365571,0.0250902,0.73053,0.94955,0.306591,0.405368,0.550923,0.229241,0.158945,0.240695,0.544053,0.488531,0.844014,0.504363,0.481006,0.109657,0.885376,0.101357,0.881528,0.524831,0.45442,0.132627,0.0868701,0.658566,0.771386,0.292072,0.697025,0.314319,0.831542,0.254541,0.334849,0.560972,0.0981258,0.429603,0.398997,0.0129442,0.795562,0.896006,0.80865,0.162625,0.994492,0.814775,0.407105,0.529369,0.825469,0.124292,0.649393,0.565142,|0.725945,0.94615,0.665454,0.592668,0.412256,0.543906,0.169119,0.888451,0.510563,0.196802,0.342641,0.0291488,0.870731,0.582686,0.0104781,0.791273,0.62774,0.942486,0.834229,0.366491,0.067239,0.172223,0.581393,0.814577,0.271852,0.802276,0.829336,0.293226,0.975564,0.300126,0.865556,0.225945,0.994928,0.0164821,0.874231,0.538411,0.239811,0.736598,0.157141,0.540488,0.534855,0.927879,0.971977,0.438125,0.590017,0.520574,0.83752,0.902739,0.0208893,0.513699,0.911986,0.0496666,0.856924,0.109224,0.223381,0.924567,0.117581,0.571878,0.410416,0.887626,0.942143,0.90862,0.0655816,0.301315,0.865029,0.20255,0.491049,0.604143,0.200188,0.157867,0.813319,0.0323038,0.324886,0.691972,0.0611254,0.270117,0.696823,0.834256,0.342062,0.418458,0.686555,0.0550359,0.294822,0.31583,0.0768101,0.210405,0.866768,0.207033,0.679071,0.190268,0.543747,0.230763,0.708628,0.812431,0.710316,0.247044,0.931684,0.968372,0.650176,0.822083,0.550711,0.502509,0.363787,0.651112,0.111688,0.870249,0.915646,0.986654,0.649145,0.0578768,0.947591,0.217956,0.258035,0.0166192,0.744856,0.601634,0.714056,0.4622,0.678992,0.054436,0.344774,0.200886,0.890581,0.957192,0.875728,0.472693,0.542295,0.551555,0.855688,0.994629,0.633575,0.991043,0.0948954,0.596352,0.237247,0.0482647,0.427388,0.0200729,0.57561,0.200136,0.429457,0.129687,0.108556,0.71958,0.825025,0.251665,0.198816,0.842762,0.959209,0.880325,0.161047,0.449188,0.494096,0.0417054,0.232954,0.9717,0.503794,0.921657,0.587896,0.430534,0.863802,0.591912,0.662444,0.189834,0.017766,0.418464,0.885027,0.666509,0.580238,0.112196,0.768797,0.935066,0.913833,0.933565,0.219744,0.128308,0.373312,0.975061,0.777648,0.869215,0.547072,0.69442,0.491843,0.0912644,0.0897149,0.455243,0.201371,0.988552,0.661719,0.00279129,0.399207,0.735459,0.428713,0.90882,0.558879,0.856484,0.202127,0.868589,0.0330889,0.271691,0.648945,0.679989,0.103576,0.16139,0.529979,0.320525,0.0615242,0.690666,0.566984,0.0987367,0.623045,0.778791,0.521783,0.493219,0.866197,0.556634,0.974506,0.294302,0.154991,0.367265,0.13808,0.290672,0.74873,0.779738,0.201701,0.462434,0.0173932,0.19486,0.0571538,0.201739,0.668482,0.17151,0.101845,0.512205,0.41179,0.475137,0.760623,0.823251,0.433771,0.231975,0.906235,0.2959,0.560521,0.135778,0.882793,0.324295,0.429613,0.59629,0.834169,0.950682,0.606761,0.472149,0.904053,0.719422,0.00470114,0.633499,0.455892,0.926688,0.929375,0.98537,0.209066,0.629431,0.522595,0.761925,0.816494,0.896604,0.676736,0.38278,0.743433,0.412748,0.961465,0.860137,0.246711,0.291077,0.487474,0.908259,0.534425,0.125606,0.368449,0.640118,0.497697,0.262695,0.248669,0.887749,0.246025,0.0869954,0.0273424,0.969853,0.689709,0.591531,0.207805,0.724911,0.430021,0.719458,0.000413716,0.809377,0.118537,0.598701,0.49192,0.740623,0.914097,0.769811,0.129586,0.041091,0.386875,0.92012,0.38605,0.537559,0.190815,0.955153,0.777911,0.417672,0.897611,0.224034,0.88196,0.960909,0.616851,0.228148,0.976359,0.729615,0.032533,0.91116,0.689811,0.675651,0.554499,0.978451,0.260282,0.0267953,0.363391,0.241345,0.986862,0.664457,0.280677,0.868446,0.457629,0.0437499,0.21175,0.934805,0.0828897,0.257435,0.183268,0.892264,0.0570348,0.249318,0.326399,0.645159,0.857517,0.363674,0.207297,0.0447153,0.129039,0.231737,0.528474,0.744581,0.392286,0.496843,0.813726,0.76061,0.643331,0.649243,0.816535,0.639614,0.875405,0.121734,0.28765,0.4109,0.907976,0.734423,0.15748,0.625898,0.3604,0.513224,0.574177,0.994198,0.851218,0.985293,0.650954,0.559097,0.943993,0.530549,0.733416,0.829205,0.831203,0.419833,0.732914,0.764757,0.592486,0.850105,0.840712,0.260426,0.570967,0.988142,0.148174,0.545451,0.837476,0.17701,0.316144,0.0549498,0.173383,0.804401,0.036499,0.902508,0.930004,0.895739,0.979713,0.676403,0.605882,0.194129,0.813406,0.400558,0.865179,0.474235,0.913109,0.829978,0.361754,0.764834,0.805649,0.433915,0.506794,0.709911,0.838384,0.14067,0.509452,0.453968,0.316411,0.652019,0.118467,0.0698782,0.0984316,0.6632,0.233732,0.677096,0.655405,0.9004,0.584648,0.471995,0.522569,0.199582,0.751626,0.237063,0.0144421,0.954064,0.0696728,0.433765,0.887791,0.720004,0.598506,0.884967,0.535302,0.616107,0.669985,0.777012,0.616065,0.00670576,0.712334,0.762204,0.199839,0.824025,0.314622,0.36098,0.728557,0.843526,0.890865,0.972999,0.861955,0.811332,0.0520906,0.773243,0.197843,0.599787,0.550726,0.215075,0.168579,0.164154,0.425519,0.667185,0.919452,0.484653,0.938274,0.792423,0.921124,0.91595,0.801718,0.950621,0.475356,0.331029,0.91178,0.466822,0.651848,0.434537,0.544063,0.650501,0.708358,0.449174,0.933428,0.448969,0.162141,0.464001,0.902999,0.57992,0.456192,0.0995849,0.616771,0.852853,0.251751,0.159196,0.948008,0.721834,0.916445,0.423042,0.0124442,0.164188,0.391224,0.740981,0.982881,0.507113,0.693526,0.0173817,0.920821,0.491796,0.652561,0.15503,0.0165904,0.900149,0.502023,0.393037,0.525118,0.706656,0.454848,0.546051,0.532767,0.874297,0.855888,0.454768,0.872669,0.509369,0.941217,0.361715,0.0591925,0.370722,0.613127,0.319164,0.301001,0.952446,0.50632,0.0592819,0.649703,0.978276,0.301603,0.128649,0.351357,0.708366,0.925345,0.992025,0.400969,0.225679,0.245571,0.327776,0.690135,0.592195,0.502319,0.260446,0.625041,0.64287,0.224926,0.982585,0.242696,0.891203,0.869097,0.315487,0.991164,0.985537,0.874409,0.312742,0.774082,0.398226,0.494747,0.24249,0.832252,0.817239,0.60673,0.10364,0.0891569,0.242805,0.290768,0.259728,0.321456,0.929464,0.0467045,0.108437,0.331477,0.733917,0.610466,0.966065,0.0206901,0.964766,0.553825,0.0721114,0.465609,0.111322,0.1973,0.479658,0.0987967,0.695315,0.812171,0.000463963,0.401761,0.877804,0.263606,0.307089,0.709243,0.198402,0.997739,0.555926,0.165226,0.455808,0.359125,0.711976,0.361436,0.464807,0.919684,0.713339,0.179661,0.599119,0.727763,0.176628,0.747466,0.789166,0.486237,0.432613,0.391663,0.632865,0.138146,0.141138,0.232526,0.546342,0.715525,0.466338,0.650412,0.800949,0.943197,0.03873,0.226877,0.86843,0.328897,0.386627,0.630417,0.279054,0.779933,0.745321,0.0644807,0.680427,0.894273,0.602058,0.168613,0.159511,0.0372653,0.366969,0.682687,0.522458,0.231479,0.358584,0.310944,0.192562,0.627969,0.0844515,0.01118,0.60731,0.0267754,0.391996,0.377927,0.479424,0.716031,0.120461,0.141208,0.168708,0.320896,0.562747,0.509734,0.291905,0.973226,0.503143,0.84445,0.997994,0.0316381,0.916815,0.453335,0.470198,0.0171521,0.604654,0.594983,0.979686,0.510997,0.0564871,0.570257,0.841072,0.259712,0.155391,0.525956,0.240954,0.110047,0.923874,0.850039,0.50656,0.313959,0.631127,0.788026,0.746049,0.770553,0.563473,0.591103,0.982605,0.363395,0.853026,0.700028,0.754513,0.545374,0.566465,0.877202,0.604322,0.971076,0.220603,0.527239,0.261471,0.394914,0.151277,0.703604,0.507299,0.94186,0.168535,0.835887,0.399989,0.0373813,0.634652,0.352997,0.600725,0.842005,0.79257,0.833955,0.881186,0.10158,0.768079,0.463623,0.735054,0.115863,0.291772,0.300003,0.825744,0.815087,0.929271,0.471602,0.23023,0.528918,0.617877,0.229814,0.322126,0.607767,0.186549,0.147023,0.973377,0.509939,0.113761,0.821587,0.567765,0.629482,0.844244,0.0900376,0.872146,0.366752,0.682031,0.350126,0.861029,0.431762,0.360406,0.370885,0.859186,0.570535,0.760068,0.673382,0.485881,0.355877,0.684373,0.0731091,0.488314,0.905961,0.0423818,0.0415887,0.243205,0.781847,0.77404,0.958361,0.647721,0.620792,0.335403,0.868445,0.382276,0.729391,0.0165851,0.178739,0.077074,0.517368,0.154933,0.885011,0.980745,0.824626,0.959746,0.202275,0.0558015,0.963912,0.359631,0.233214,0.244003,0.202591,0.576619,0.149233,0.625245,0.578364,0.691681,0.664254,0.170218,0.73339,0.0933107,0.346878,0.759607,0.453135,0.43524,0.820136,0.0617221,0.784932,0.10387,0.0633129,0.686734,0.326405,0.76975,0.465566,0.404184,0.518009,0.0997607,0.294314,0.783766,0.513904,0.926837,0.917883,0.322506,0.471812,0.754467,0.532016,0.212548,0.956515,0.910725,0.0222933,0.22499,0.948947,0.852535,0.140021,0.0140361,0.642535,0.684036,0.0564036,0.0445535,0.672871,0.0265436,0.606652,0.605749,0.034032,0.530142,0.700144,0.555929,0.812263,0.466667,0.66155,0.377042,0.0207334,0.972132,0.423592,0.283557,0.0848323,0.490249,0.749417,0.121207,0.386938,0.00303584,0.718557,0.44685,0.952448,0.261474,0.100584,0.481389,0.231246,0.483808,0.720827,0.00955874,0.843527,0.792289,0.0976502,0.142203,0.106511,0.496184,0.892548,0.993065,0.638482,0.484804,0.173005,0.693163,0.038674,0.863313,0.109307,0.109722,0.402282,0.860605,0.208264,0.572264,0.405795,0.102906,0.290228,0.036938,0.943127,0.820844,0.0942158,0.913969,0.539854,0.85234,0.11788,0.923428,0.043434,0.779016,0.0510564,0.576349,0.981434,0.192274,0.316515,0.287357,0.569907,0.692849,0.337653,0.086842,0.328095,0.594858,0.806106,0.905975,0.871462,0.579423,0.704072,0.187974,0.213517,0.874936,0.386507,0.671911,0.421949,0.606041,0.676711,0.611853,0.159887,0.0111587,0.714916,0.223965,0.5049,0.612314,0.970592,0.621225,0.63102,0.0933281,0.65598,0.950792,0.900847,0.61699,0.93764,0.950743,0.233479,0.793037,0.254841,0.962533,0.862415,0.232281,0.0549544,0.758979,0.471176,0.17168,0.258639,0.469119,0.178264,0.496437,0.140669,0.358623,0.923304,0.534968,0.425389,0.671249,0.0748466,0.424092,0.0460328,0.866308,0.980254,0.192448,0.601468,0.213757,0.285147,0.702144,0.657431,0.987519,|0.721743,0.277913,0.997361,0.0990217,0.603338,0.0441154,0.949048,0.429262,0.300696,0.957711,0.877462,0.109999,0.721374,0.0818807,0.977981,0.896482,0.289867,0.168828,0.156656,0.457003,0.202122,0.949701,0.27004,0.469104,0.219071,0.214856,0.0638207,0.636185,0.81173,0.502336,0.944721,0.0424589,0.0515933,0.986419,0.981613,0.474036,0.309253,0.359296,0.843641,0.00782299,0.919925,0.656769,0.565374,0.234801,0.0348908,0.457608,0.232756,0.0148273,0.982402,0.403461,0.0339987,0.0419517,0.609271,0.688299,0.115735,0.441781,0.480458,0.952467,0.927641,0.73278,0.795463,0.327321,0.952632,0.290052,0.977472,0.753198,0.90715,0.730106,0.335894,0.566714,0.468796,0.0661697,0.604472,0.145913,0.0502852,0.677638,0.394406,0.0685925,0.067991,0.304013,0.443705,0.415221,0.782894,0.793193,0.0354478,0.593086,0.587594,0.497538,0.935993,0.890064,0.660966,0.775429,0.354513,0.878949,0.455145,0.488387,0.308856,0.537658,0.910591,0.634717,0.048661,0.221725,0.648835,0.551017,0.213599,0.697949,0.0969527,0.376797,0.412104,0.051087,0.863519,0.288368,0.919159,0.043349,0.945095,0.0541849,0.85928,0.0649157,0.328284,0.0502909,0.929321,0.941076,0.974995,0.800879,0.182576,0.282826,0.848232,0.892311,0.780068,0.0556382,0.266442,0.858593,0.372854,0.447014,0.47968,0.99486,0.801857,0.401212,0.347057,0.912903,0.0835049,0.664883,0.323726,0.565923,0.704189,0.247055,0.819508,0.880874,0.419042,0.929677,0.274314,0.571108,0.787038,0.914559,0.00892323,0.0878331,0.330397,0.630054,0.952483,0.722352,0.62921,0.151262,0.50264,0.451057,0.859261,0.344867,0.962063,0.168285,0.321335,0.853991,0.856081,0.923872,0.437194,0.916475,0.330861,0.41538,0.9098,0.47128,0.425303,0.953064,0.279252,0.517138,0.487628,0.315053,0.930891,0.494559,0.665915,0.329715,0.0465719,0.0561126,0.448676,0.54474,0.163136,0.94801,0.779764,0.339246,0.853316,0.22546,0.00868082,0.610329,0.906314,0.444242,0.251875,0.655192,0.472907,0.745085,0.59417,0.138737,0.734675,0.0978665,0.980041,0.462417,0.835958,0.001764,0.264498,0.731302,0.912692,0.149742,0.619691,0.00193125,0.713131,0.728908,0.628775,0.0239096,0.167534,0.728545,0.288642,0.757905,0.658243,0.976353,0.0875202,0.728091,0.953689,0.921419,0.962615,0.856829,0.31556,0.00466186,0.477791,0.125619,0.299123,0.0705572,0.0558751,0.375884,0.335485,0.374144,0.415724,0.870722,0.132619,0.691034,0.18742,0.515871,0.496835,0.272445,0.781517,0.030165,0.999006,0.941676,0.997332,0.319072,0.779369,0.290697,0.195069,0.562859,0.731268,0.120237,0.599493,0.720456,0.239354,0.39451,0.0386695,0.457228,0.819944,0.288462,0.988477,0.908874,0.268418,0.672144,0.11489,0.888039,0.0426586,0.651299,0.289138,0.988296,0.677675,0.704239,0.820855,0.556613,0.745894,0.785378,0.657813,0.282102,0.462104,0.367514,0.193366,0.424435,0.455681,0.915614,0.824603,0.139844,0.975825,0.972925,0.486557,0.455381,0.642926,0.555175,0.237978,0.375154,0.038273,0.191634,0.338442,0.927258,0.968756,0.743923,0.471577,0.229869,0.588225,0.952232,0.992263,0.142173,0.256385,0.695815,0.816028,0.708043,0.105028,0.407202,0.784145,0.377796,0.0234401,0.647124,0.301872,0.819321,0.231304,0.293096,0.721223,0.176672,0.6138,0.662177,0.409168,0.517181,0.100213,0.0673672,0.434151,0.542471,0.624035,0.309415,0.173448,0.978986,0.163114,0.0170277,0.0414506,0.127715,0.989351,0.671417,0.793054,0.390451,0.607227,0.851556,0.321115,0.526438,0.645795,0.681948,0.77243,0.36047,0.196487,0.443062,0.0854775,0.773418,0.0583133,0.474182,0.383084,0.42303,0.175551,0.777848,0.378469,0.167153,0.988596,0.0101079,0.932911,0.138608,0.213526,0.566163,0.416905,0.210455,0.712091,0.469665,0.798184,0.744942,0.903955,0.70644,0.133192,0.230641,0.579576,0.359354,0.53513,0.701112,0.795959,0.902653,0.322246,0.307921,0.743681,0.125587,0.0770804,0.569775,0.885134,0.380353,0.829961,0.613294,0.914616,0.749288,0.639776,0.693995,0.723068,0.877579,0.328294,0.935013,0.667856,0.102381,0.307674,0.295646,0.139688,0.717522,0.264283,0.779649,0.135181,0.26969,0.867952,0.507188,0.305535,0.998323,0.589826,0.920477,0.773332,0.161881,0.247956,0.855033,0.406568,0.836024,0.238153,0.727441,0.900689,0.232623,0.372988,0.412792,0.184294,0.615614,0.997531,0.456022,0.8688,0.935478,0.864411,0.174025,0.621931,0.19062,0.4003,0.101569,0.504247,0.798194,0.553523,0.541982,0.752895,0.852954,0.999344,0.186474,0.0958312,0.406412,0.635085,0.79982,0.37225,0.242807,0.385632,0.551878,0.961821,0.555395,0.362607,0.621457,0.326495,0.953855,0.339793,0.0832534,0.743488,0.111225,0.365034,0.636656,0.121329,0.942415,0.227031,0.0609158,0.0221592,0.983364,0.0317635,0.404708,0.802675,0.140988,0.890696,0.462968,0.198993,0.553431,0.239103,0.740563,0.509559,0.786829,0.223531,0.536447,0.838446,0.671848,0.864293,0.757132,0.714097,0.704091,0.578038,0.733412,0.956322,0.518399,0.778387,0.296114,0.290531,0.944021,0.965033,0.929138,0.0140795,0.110798,0.0261511,0.790432,0.389218,0.54917,0.173659,0.466759,0.541428,0.680053,0.453672,0.628814,0.928983,0.885716,0.13921,0.221226,0.425933,0.107321,0.99694,0.471157,0.913672,0.224817,0.188014,0.594154,0.757466,0.887304,0.504738,0.276033,0.0560292,0.118951,0.690836,0.604936,0.381933,0.611834,0.196226,0.47234,0.523202,0.705909,0.638743,0.557986,0.723441,0.078786,0.598932,0.0555773,0.475613,0.950827,0.744004,0.900727,0.182406,0.572045,0.638917,0.877587,0.286615,0.420694,0.460823,0.429131,0.51803,0.393944,0.56761,0.849324,0.753543,0.623971,0.389349,0.696479,0.626011,0.85218,0.00965327,0.386764,0.338716,0.897539,0.315226,0.923827,0.959868,0.973537,0.624388,0.66029,0.111146,0.758127,0.596789,0.109315,0.889528,0.16425,0.192823,0.639267,0.762978,0.588492,0.147091,0.498626,0.527151,0.182962,0.924378,0.0295165,0.586727,0.175879,0.380246,0.628463,0.875862,0.876018,0.817114,0.813825,0.190578,0.942927,0.178144,0.0547076,0.627627,0.20127,0.81024,0.729307,0.378513,0.850231,0.383191,0.194847,0.483891,0.00737977,0.160934,0.765504,0.412262,0.568663,0.915016,0.701873,0.323821,0.230308,0.475666,0.663169,0.738835,0.793932,0.373526,0.228941,0.898438,0.00108296,0.905945,0.603013,0.0255197,0.825574,0.924739,0.0768178,0.218231,0.0335634,0.572471,0.71045,0.269867,0.597248,0.457461,0.113266,0.255685,0.70138,0.801849,0.59808,0.640811,0.89299,0.71334,0.874423,0.707671,0.515947,0.192917,0.976876,0.677128,0.477096,0.513548,0.970752,0.0236198,0.236443,0.127856,0.118561,0.214041,0.18339,0.928924,0.678061,0.566225,0.762035,0.615699,0.515168,0.770101,0.649786,0.696062,0.819669,0.820593,0.902049,0.97429,0.606684,0.75436,0.663154,0.842794,0.339709,0.365893,0.987903,0.326496,0.0478627,0.293225,0.52906,0.92249,0.589677,0.21356,0.288303,0.646047,0.00840592,0.484549,0.943902,0.0284934,0.274905,0.731933,0.321772,0.258094,0.847767,0.138583,0.499109,0.45061,0.713773,0.929465,0.356197,0.216261,0.808614,0.454678,0.930688,0.961209,0.542272,0.677639,0.173613,0.506429,0.979884,0.000479281,0.50321,0.411472,0.442069,0.488391,0.589978,0.228719,0.482912,0.371144,0.125091,0.091583,0.815939,0.161423,0.06331,0.13683,0.776794,0.840423,0.414371,0.993745,0.980677,0.501122,0.735168,0.484311,0.785134,0.181258,0.420274,0.93743,0.334309,0.677912,0.846945,0.968441,0.854343,0.786409,0.621044,0.926954,0.183507,0.654433,0.862057,0.488822,0.31593,0.282333,0.406339,0.276093,0.575239,0.391128,0.866641,0.103156,0.994017,0.471265,0.6723,0.693118,0.510036,0.7539,0.793737,0.589357,0.800815,0.451978,0.27548,0.907643,0.968394,0.475388,0.205816,0.820952,0.989541,0.245078,0.880731,0.849635,0.847538,0.869345,0.498573,0.887815,0.174229,0.150239,0.202981,0.0540191,0.897409,0.855663,0.280177,0.194265,0.711062,0.479993,0.77078,0.197475,0.872748,0.821298,0.498404,0.511008,0.798946,0.968674,0.215072,0.942791,0.743798,0.233225,0.81639,0.796719,0.568595,0.098845,0.512095,0.920621,0.953146,0.458182,0.725299,0.61365,0.151716,0.387305,0.825973,0.769136,0.722975,0.248619,0.101386,0.963162,0.0265011,0.866513,0.376861,0.706501,0.19888,0.239012,0.995481,0.723067,0.814032,0.138817,0.48862,0.978646,0.700102,0.22675,0.533396,0.876745,0.91784,0.700076,0.629743,0.165949,0.856352,0.588157,0.0920649,0.488552,0.712521,0.716626,0.580749,0.685666,0.904375,0.774631,0.143603,0.928134,0.542057,0.542542,0.589158,0.942282,0.255242,0.451794,0.311151,0.591449,0.685651,0.528079,0.971124,0.653561,0.285473,0.948223,0.594155,0.809354,0.0735358,0.702738,0.492335,0.0660217,0.817805,0.924048,0.203266,0.0163785,0.237215,0.520109,0.861226,0.0790699,0.62071,0.895913,0.713073,0.512871,0.167849,0.429902,0.522567,0.704459,0.922619,0.208262,0.537886,0.673593,0.342923,0.835333,0.960572,0.558151,0.292744,0.768812,0.282014,0.619801,0.132375,0.539958,0.284114,0.924383,0.734499,0.18481,0.704798,0.896588,0.408543,0.982263,0.557974,0.47104,0.483648,0.764487,0.775404,0.258537,0.495277,0.474704,0.311743,0.840889,0.0732523,0.951173,0.945903,0.619329,0.673225,0.276187,0.153248,0.860159,0.885412,0.226819,0.256764,0.153384,0.933532,0.231423,0.434136,0.893582,0.0994431,0.121233,0.776956,0.893921,0.796471,0.794956,0.883752,0.520685,0.641306,0.795623,0.666212,0.196452,0.666525,0.215463,0.947968,0.308847,0.970476,0.00367373,0.929816,0.746377,0.426621,0.787413,0.0877877,0.8472,0.458493,0.417381,0.274819,0.816298,0.981302,0.954769,0.874238,0.394047,0.302539,|0.653615,0.365797,0.955959,0.380525,0.048905,0.479989,0.912104,0.457854,0.900175,0.14223,0.285677,0.00938588,0.901566,0.0270615,0.110245,0.0506857,0.895046,0.706622,0.955487,0.123619,0.543986,0.623821,0.964203,0.976993,0.119779,0.962634,0.87881,0.556558,0.868971,0.063993,0.938898,0.397225,0.0440794,0.420322,0.714556,0.532458,0.93603,0.452643,0.84521,0.829266,0.403229,0.468743,0.359433,0.282152,0.377296,0.700395,0.486724,0.557661,0.882767,0.342087,0.706176,0.60215,0.491134,0.697685,0.0608508,0.533162,0.528693,0.190895,0.81802,0.0914999,0.983908,0.874083,0.166946,0.794846,0.0145761,0.752858,0.467013,0.15148,0.241098,0.643451,0.28449,0.323503,0.251642,0.556381,0.11104,0.682,0.647684,0.948528,0.0774555,0.271161,0.330183,0.288521,0.289291,0.249622,0.650589,0.699171,0.752073,0.90961,0.277474,0.286977,0.0642259,0.434523,0.19959,0.309882,0.537262,0.281773,0.293719,0.198594,0.759966,0.122652,0.0570815,0.0368078,0.160237,0.283014,0.908885,0.173565,0.319884,0.374833,0.747711,0.0557069,0.0169992,0.0432333,0.52932,0.784337,0.887684,0.443325,0.567189,0.345338,0.969498,0.201663,0.946671,0.33749,0.266292,0.771607,0.346924,0.821234,0.506619,0.705057,0.288081,0.0236102,0.183709,0.187954,0.660351,0.556236,0.671386,0.412263,0.253094,0.341171,0.367653,0.804169,0.35353,0.0620606,0.702897,0.701793,0.94183,0.386993,0.930604,0.323894,0.944725,0.0950528,0.408087,0.791044,0.307889,0.691622,0.212746,0.273733,0.202178,0.0984026,0.0431547,0.533897,0.343396,0.730667,0.891486,0.548711,0.13866,0.931643,0.474501,0.361737,0.424541,0.0210852,0.874948,0.676526,0.103622,0.768495,0.269125,0.603364,0.289142,0.589037,0.987261,0.252557,0.144981,0.178126,0.71345,0.861875,0.176367,0.286219,0.855657,0.690028,0.961871,0.0744612,0.493435,0.939331,0.122102,0.0649408,0.311186,0.747287,0.789177,0.365724,0.516061,0.273371,0.468649,0.169541,0.362433,0.793398,0.441077,0.756915,0.757708,0.214007,0.419015,0.442999,0.0993708,0.34344,0.216537,0.528154,0.81295,0.904523,0.227904,0.797327,0.563591,0.124003,0.174985,0.923829,0.794845,0.684696,0.334853,0.947032,0.146841,0.904009,0.515341,0.346665,0.140475,0.505249,0.361254,0.130506,0.950218,0.80881,0.724534,0.535236,0.614471,0.0486556,0.902838,0.760293,0.816462,0.219358,0.159969,0.00772971,0.281983,0.384005,0.360002,0.108137,0.474699,0.3623,0.0622677,0.726493,0.441407,0.208933,0.557222,0.284051,0.313527,0.81105,0.401257,0.726112,0.095146,0.118105,0.0791398,0.548255,0.866297,0.973785,0.0279273,0.0464165,0.826288,0.0863311,0.419834,0.616114,0.924162,0.18261,0.895777,0.916141,0.767905,0.330436,0.9166,0.268574,0.318028,0.768054,0.712594,0.1075,0.0544427,0.685739,0.60506,0.229304,0.019187,0.92312,0.440327,0.355055,0.802071,0.926293,0.482261,0.964739,0.330216,0.234664,0.31624,0.310858,0.520453,0.749034,0.374143,0.460292,0.427183,0.908207,0.502453,0.197421,0.864511,0.676563,0.574787,0.99094,0.46686,0.763301,0.518835,0.0241784,0.417053,0.563268,0.548316,0.928417,0.590361,0.180029,0.823799,0.545235,0.180198,0.62207,0.99432,0.584009,0.205824,0.287957,0.965212,0.184934,0.650583,0.364584,0.989317,0.492116,0.936111,0.318078,0.509049,0.909579,0.208495,0.902166,0.576345,0.357982,0.488608,0.0356495,0.929071,0.798819,0.990679,0.90716,0.705666,0.417047,0.0524756,0.595102,0.670816,0.75214,0.214649,0.863991,0.11275,0.31735,0.865636,0.593326,0.785187,0.390501,0.00941312,0.252775,0.117242,0.627542,0.330118,0.359378,0.744986,0.548089,0.517783,0.745373,0.38758,0.858831,0.806709,0.0615824,0.030304,0.497889,0.433147,0.254711,0.646408,0.817231,0.736094,0.989358,0.393652,0.0118529,0.70666,0.980793,0.567277,0.241915,0.715478,0.505486,0.392577,0.446891,0.464756,0.545701,0.208578,0.935011,0.8107,0.636263,0.774834,0.0959229,0.227062,0.830508,0.807947,0.48418,0.738606,0.629336,0.0666372,0.87634,0.826232,0.31495,0.161689,0.466216,0.477916,0.541447,0.490712,0.369063,0.124463,0.308567,0.859665,0.158258,0.0813396,0.491024,0.622132,0.365695,0.817968,0.746127,0.594711,0.166022,0.538147,0.415833,0.668243,0.25086,0.188085,0.31118,0.074941,0.738926,0.00201023,0.298961,0.520563,0.14557,0.813895,0.429713,0.831129,0.300435,0.0605298,0.94135,0.202372,0.021542,0.446594,0.972337,0.957555,0.612143,0.231427,0.616433,0.56485,0.756774,0.363055,0.899146,0.302799,0.0699624,0.189896,0.270181,0.189712,0.951591,0.974306,0.118401,0.0225726,0.116982,0.00143379,0.363773,0.80356,0.598682,0.837786,0.483797,0.115343,0.36976,0.608484,0.0255362,0.932518,0.299929,0.408273,0.923911,0.235292,0.30724,0.0781603,0.575744,0.1903,0.348569,0.868054,0.688378,0.926118,0.318578,0.886562,0.362869,0.817178,0.894453,0.436812,0.741895,0.636459,0.882384,0.151218,0.102959,0.703504,0.35156,0.225694,0.649757,0.440255,0.281538,0.592157,0.349304,0.668852,0.955337,0.093381,0.518051,0.588958,0.376364,0.693702,0.272567,0.0901723,0.712723,0.325219,0.944324,0.330269,0.503886,0.393972,0.286071,0.325033,0.340775,0.704544,0.159696,0.0429569,0.287267,0.836389,0.0827488,0.737065,0.0853317,0.597813,0.41928,0.669756,0.662159,0.939799,0.206777,0.643575,0.169773,0.860685,0.657874,0.00638944,0.631733,0.0404147,0.128388,0.256779,0.4404,0.696487,0.788981,0.834389,0.962762,0.67442,0.0487828,0.556421,0.562276,0.318403,0.22926,0.385795,0.904406,0.0951475,0.202424,0.374736,0.355844,0.676057,0.0920082,0.214069,0.215633,0.236721,0.241615,0.939315,0.657092,0.372687,0.577983,0.879643,0.260669,0.993012,0.743622,0.825255,0.0239005,0.510508,0.211503,0.420412,0.0662301,0.748534,0.450951,0.77897,0.183946,0.990353,0.364179,0.477509,0.238968,0.0853456,0.181301,0.407213,0.335975,0.239801,0.306466,0.975313,0.89034,0.586426,0.911641,0.954972,0.359906,0.315724,0.467461,0.89924,0.36915,0.130792,0.840826,0.0465623,0.818484,0.169983,0.872141,0.35802,0.142134,0.0417913,0.860587,0.55979,0.683219,0.0671257,0.0167769,0.217109,0.323932,0.50606,0.0273412,0.923967,0.534008,0.347817,0.661298,0.135288,0.216926,0.990292,0.548334,0.908428,0.631901,0.566802,0.715662,0.78037,0.508254,0.291085,0.373801,0.757542,0.12265,0.927707,0.679179,0.441526,0.565602,0.331671,0.598752,0.0763237,0.763203,0.138224,0.642484,0.664181,0.26633,0.528844,0.74198,0.985534,0.145507,0.00854605,0.814285,0.938729,0.257813,0.577509,0.470269,0.890448,0.258383,0.0477961,0.581323,0.991029,0.772474,0.154622,0.659637,0.928166,0.0261971,0.592652,0.632996,0.156944,0.415113,0.879615,0.439878,0.0721034,0.48077,0.897188,0.346782,0.425786,0.130414,0.157319,0.655146,0.370084,0.659765,0.575381,0.113225,0.604738,0.489683,0.868993,0.993009,0.806921,0.845485,0.270677,0.684473,0.297423,0.68484,0.779382,0.656904,0.670867,0.927194,0.910639,0.930653,0.581083,0.165717,0.152887,0.300053,0.0961603,0.460444,0.816892,0.610973,0.817438,0.778119,0.549448,0.408711,0.611223,0.277199,0.795471,0.571535,0.223453,0.464424,0.738843,0.751507,0.476655,0.746918,0.998388,0.0398624,0.548301,0.527839,0.560909,0.0879503,0.808842,0.800264,0.942082,0.839934,0.206945,0.305683,0.494134,0.333564,0.575701,0.202846,0.19218,0.633731,0.995919,0.576469,0.708118,0.654198,0.0315885,0.677664,0.599374,0.521183,0.72506,0.398501,0.637715,0.339093,0.357637,0.84572,0.510497,0.388031,0.644156,0.532783,0.712353,0.783987,0.248601,0.421168,0.401789,0.959197,0.754773,0.631587,0.449584,0.708193,0.134622,0.667394,0.574459,0.55655,0.238892,0.299118,0.716978,0.558494,0.263138,0.524035,0.276047,0.142821,0.983872,0.61938,0.750611,0.180132,0.947436,0.86044,0.352662,0.330628,0.839523,0.244743,0.646808,0.139791,0.438849,0.506661,0.0496748,0.29832,0.683013,0.66476,0.750884,0.613883,0.649771,0.761864,0.321788,0.252677,0.161537,0.345033,0.262608,0.707479,0.342982,0.328346,0.714128,0.806925,0.102749,0.243262,0.947893,0.601504,0.970447,0.202571,0.679913,0.757745,0.478688,0.465241,0.0541796,0.100071,0.873542,0.399157,0.303514,0.777988,0.87476,0.807948,0.950552,0.988216,0.958237,0.13136,0.324494,0.764024,0.323911,0.115697,0.814236,0.487753,0.371027,0.219592,0.648968,0.729996,0.0148674,0.881305,0.0604375,0.784675,0.542422,0.80604,0.904886,0.125355,0.135263,0.78926,0.876155,0.767971,0.45358,0.764246,0.633179,0.231031,0.455148,0.503322,0.207671,0.555736,0.561519,0.391528,0.23034,0.401482,0.773296,0.164756,0.761312,0.659205,0.910592,0.739171,0.218244,0.474036,0.715185,0.456812,0.799993,0.835452,0.516696,0.865174,0.883591,0.561366,0.962498,0.115151,0.596159,0.00548232,0.194518,0.156933,0.696579,0.879668,0.888659,0.270344,0.904736,0.7771,0.861573,0.99521,0.243349,0.852266,0.898288,0.0042941,0.960784,0.648982,0.757742,0.212676,0.629903,0.229043,0.61361,0.816779,0.54268,0.649225,0.54597,0.804724,0.0923917,0.258612,0.650708,0.440973,0.556778,0.476474,0.892176,0.601639,0.00439167,0.0145143,0.852623,0.335458,0.0742205,0.860137,0.411801,0.560225,0.0840541,0.207823,0.114503,0.884061,0.914804,0.274142,0.214988,0.761435,0.414981,0.229859,0.139925,0.379475,0.6252,0.831441,0.88379,0.945862,0.851425,0.403981,0.346131,0.0403115,0.264012,0.346157,0.228716,0.999852,0.602094,0.734594,0.791369,0.216051,0.468671,0.360839,0.653695,0.434078,0.135343,0.413109,0.158551,0.652005,0.0552278,0.888535,0.14968,0.015083,0.117385,0.60966,0.161786,0.0672672,0.730303,0.578923,0.136031,0.716428,0.894111,0.532309,|0.425988,0.554283,0.849478,0.187698,0.853673,0.628065,0.313485,0.90192,0.607147,0.972436,0.318578,0.438438,0.114498,0.548382,0.102378,0.138703,0.893091,0.762462,0.962307,0.579563,0.19238,0.651471,0.81948,0.614211,0.231288,0.0816772,0.324141,0.893942,0.652745,0.0101452,0.151405,0.75255,0.340588,0.385124,0.61778,0.053107,0.683419,0.024962,0.587125,0.365457,0.313899,0.571227,0.280666,0.755774,0.515463,0.710466,0.0836477,0.191263,0.0167239,0.190171,0.347994,0.152762,0.156462,0.0292773,0.842622,0.975704,0.764765,0.876421,0.53645,0.782875,0.127882,0.0509883,0.43309,0.913096,0.190251,0.149106,0.880902,0.512981,0.00915766,0.688767,0.473996,0.0934136,0.289727,0.152046,0.63638,0.0983507,0.987422,0.872661,0.214997,0.691534,0.197112,0.472984,0.663427,0.622833,0.781019,0.655683,0.751061,0.123102,0.927664,0.343128,0.825357,0.41921,0.768905,0.460325,0.438968,0.888781,0.293068,0.382562,0.704331,0.209961,0.11804,0.59111,0.330096,0.22994,0.652498,0.947542,0.268069,0.0892698,0.75426,0.721379,0.288583,0.38988,0.787067,0.777406,0.0932885,0.67242,0.43718,0.912758,0.564811,0.974964,0.841083,0.102476,0.0715137,0.370837,0.962775,0.735757,0.937816,0.145772,0.757757,0.124882,0.945134,0.998412,0.346519,0.324328,0.490167,0.637761,0.693512,0.731306,0.90474,0.696415,0.227901,0.231758,0.0563759,0.246348,0.82109,0.986654,0.382894,0.0813494,0.954101,0.862995,0.454722,0.46015,0.606923,0.144383,0.74961,0.0836948,0.088328,0.39104,0.351676,0.862082,0.616267,0.481382,0.719215,0.650133,0.902386,0.310784,0.714899,0.916474,0.0906684,0.412197,0.159442,0.0415177,0.583292,0.479695,0.0795631,0.0663093,0.364901,0.166286,0.921638,0.760593,0.16697,0.527791,0.828877,0.791087,0.254151,0.448028,0.0439897,0.0878936,0.924157,0.250851,0.914067,0.318604,0.0268018,0.260098,0.12655,0.511997,0.414486,0.841459,0.893479,0.0505792,0.342817,0.110284,0.556686,0.842967,0.474877,0.681654,0.925539,0.90522,0.298591,0.984845,0.14199,0.863853,0.0284291,0.927812,0.216745,0.704318,0.220698,0.299419,0.904108,0.251485,0.549849,0.46922,0.310716,0.156088,0.496607,0.209387,0.280548,0.159539,0.478061,0.432027,0.984557,0.780759,0.538076,0.697955,0.208826,0.149652,0.626977,0.121222,0.570351,0.157238,0.764514,0.631153,0.595377,0.64325,0.831167,0.0550622,0.90715,0.80999,0.743928,0.0409896,0.0349566,0.323695,0.934637,0.219841,0.40483,0.111306,0.0613796,0.164397,0.564223,0.604922,0.949409,0.841772,0.557313,0.898527,0.94065,0.516314,0.72106,0.0342265,0.184374,0.382809,0.131057,0.784947,0.00332427,0.0672299,0.225597,0.0964329,0.428769,0.750179,0.0569282,0.226826,0.662792,0.452177,0.570878,0.541251,0.0770718,0.041571,0.010561,0.108272,0.619902,0.369144,0.120817,0.308531,0.415907,0.162999,0.176582,0.523541,0.0376893,0.42539,0.639011,0.679343,0.534558,0.75244,0.706904,0.478735,0.0229783,0.862357,0.432205,0.218253,0.0602426,0.89588,0.330874,0.245248,0.651765,0.83689,0.108955,0.362168,0.322536,0.458606,0.485532,0.194644,0.666448,0.249652,0.875936,0.796788,0.669793,0.435823,0.112246,0.175871,0.342933,0.767857,0.721182,0.180254,0.0515353,0.994196,0.358848,0.681569,0.615613,0.16449,0.388493,0.825825,0.880825,0.00509268,0.699509,0.737549,0.98115,0.659354,0.974288,0.498736,0.955385,0.716813,0.0789431,0.276825,0.723613,0.997693,0.424042,0.659479,0.36246,0.769829,0.0708632,0.390447,0.934778,0.901595,0.564026,0.332918,0.965764,0.215676,0.132666,0.930456,0.605329,0.754794,0.554839,0.241422,0.843318,0.885128,0.246163,0.121038,0.224716,0.858014,0.414738,0.885497,0.605904,0.269741,0.124638,0.0943025,0.380226,0.433627,0.666832,0.452609,0.644862,0.376602,0.226229,0.101313,0.391876,0.991617,0.180896,0.287969,0.56949,0.861185,0.106863,0.925057,0.511882,0.327192,0.941804,0.370882,0.23627,0.128751,0.546317,0.0509609,0.653783,0.409514,0.868239,0.580198,0.30983,0.736849,0.891918,0.218177,0.375935,0.891789,0.799061,0.923432,0.732106,0.0027889,0.372225,0.0446301,0.439547,0.0899547,0.491424,0.648992,0.55417,0.598015,0.825474,0.32806,0.0519073,0.659116,0.276188,0.391849,0.439931,0.362478,0.476016,0.486165,0.955899,0.510191,0.144863,0.558387,0.0820757,0.185307,0.766028,0.7472,0.032881,0.571554,0.213206,0.143512,0.240476,0.875341,0.428734,0.664846,0.71015,0.202745,0.829657,0.215466,0.593434,0.760405,0.764035,0.388824,0.622348,0.296131,0.397321,0.933424,0.368611,0.753835,0.160104,0.00772119,0.133853,0.00717199,0.0278416,0.905343,0.883877,0.775053,0.264423,0.514072,0.9161,0.677682,0.334274,0.829849,0.359294,0.302662,0.0670982,0.167874,0.744904,0.546717,0.700272,0.308919,0.960314,0.76042,0.133318,0.158105,0.856488,0.739077,0.455057,0.221467,0.525851,0.793163,0.423284,0.577278,0.612066,0.119272,0.0511805,0.0978397,0.412233,0.206223,0.890401,0.201887,0.661516,0.600004,0.610071,0.800602,0.822708,0.677294,0.746868,0.376148,0.152205,0.815343,0.786185,0.934862,0.656856,0.449004,0.47598,0.963742,0.940133,0.446484,0.261278,0.277188,0.429869,0.405344,0.489017,0.289357,0.318938,0.887295,0.0250711,0.439206,0.525067,0.945056,0.302543,0.539263,0.571636,0.556504,0.288089,0.0518592,0.483482,0.225966,0.93112,0.615477,0.433641,0.498951,0.945921,0.367557,0.0756966,0.413217,0.79231,0.788025,0.918699,0.0741943,0.817901,0.326237,0.872775,0.0783655,0.667349,0.46326,0.198796,0.717669,0.183521,0.713478,0.942407,0.415839,0.332328,0.733967,0.575248,0.850821,0.556969,0.0973588,0.0151837,0.56283,0.731701,0.176481,0.439546,0.976998,0.146832,0.279335,0.420347,0.025633,0.0907225,0.840063,0.775521,0.948369,0.363729,0.397461,0.214982,0.0993918,0.899977,0.00408077,0.754091,0.921824,0.151684,0.943197,0.880687,0.342064,0.31837,0.700396,0.331742,0.138666,0.658461,0.24304,0.503162,0.690929,0.502586,0.669003,0.248761,0.0646259,0.604201,0.394421,0.395216,0.301527,0.486215,0.646254,0.879809,0.891712,0.0769749,0.765245,0.228808,0.303771,0.619764,0.935361,0.54265,0.227089,0.0954656,0.329189,0.0302076,0.122355,0.892003,0.420027,0.224856,0.0123892,0.457418,0.633931,0.955287,0.173627,0.246571,0.716378,0.215798,0.0517666,0.641071,0.251771,0.694508,0.756981,0.725504,0.19342,0.357842,0.807477,0.114956,0.980856,0.856714,0.277666,0.603184,0.167052,0.0876191,0.288746,0.610638,0.231898,0.455425,0.729975,0.654825,0.35795,0.438578,0.773477,0.442816,0.44565,0.363956,0.42586,0.158325,0.064491,0.737413,0.944542,0.506919,0.382892,0.405473,0.236513,0.723675,0.302323,0.312766,0.79279,0.178145,0.359084,0.106385,0.881803,0.829668,0.231793,0.727818,0.452979,0.101431,0.681468,0.444745,0.979787,0.56955,0.468682,0.320758,0.556636,0.532214,0.163162,0.79109,0.813451,0.223239,0.317271,0.553129,0.361917,0.691079,0.515797,0.915408,0.13283,0.936234,0.817599,0.00343281,0.105714,0.917994,0.658121,0.693115,0.0161011,0.894135,0.266803,0.221634,0.166548,0.261398,0.210392,0.159801,0.570349,0.344021,0.930556,0.327186,0.600746,0.458222,0.10318,0.104125,0.916283,0.220574,0.770101,0.322225,0.303696,0.198188,0.941649,0.678128,0.973604,0.0050503,0.518701,0.800928,0.0957113,0.732715,0.559773,0.188007,0.600479,0.150765,0.0661297,0.165752,0.484128,0.694452,0.0815768,0.411939,0.0547308,0.0938714,0.44956,0.340201,0.970343,0.73488,0.123433,0.3722,0.0564036,0.499697,0.669105,0.741911,0.619022,0.400363,0.135669,0.888735,0.94061,0.372775,0.931606,0.300386,0.380309,0.38187,0.902742,0.272802,0.915346,0.880536,0.632026,0.416582,0.782601,0.476704,0.849583,0.112794,0.653958,0.318439,0.0267171,0.176954,0.847166,0.916236,0.759508,0.776158,0.128822,0.946661,0.0134839,0.30021,0.494207,0.477572,0.854081,0.50606,0.971823,0.942998,0.793421,0.434035,0.930051,0.281197,0.367794,0.215764,0.713838,0.897999,0.943404,0.863613,0.354097,0.111202,0.255077,0.0728659,0.323501,0.15644,0.756979,0.127334,0.650937,0.764076,0.730599,0.647083,0.159558,0.189347,0.396428,0.932468,0.656197,0.796966,0.0159006,0.694692,0.320563,0.00116599,0.080494,0.863302,0.46419,0.243477,0.444359,0.0964535,0.32967,0.789663,0.11711,0.169755,0.85176,0.502681,0.0203316,0.960505,0.873793,0.109437,0.108103,0.517135,0.189235,0.488251,0.980337,0.670492,0.0120203,0.0162552,0.210441,0.123058,0.463793,0.655057,0.367096,0.318711,0.951149,0.370471,0.433749,0.463241,0.581205,0.74172,0.134596,0.638763,0.77215,0.475549,0.669901,0.515099,0.604439,0.245729,0.928801,0.0499383,0.776069,0.396483,0.157991,0.532207,0.180496,0.459868,0.816012,0.891488,0.507433,0.58978,0.340491,0.0255296,0.962312,0.132292,0.982228,0.0854118,0.0705905,0.0655618,0.998091,0.033978,0.495881,0.724217,0.946517,0.35641,0.861954,0.16782,0.696619,0.0623638,0.0837312,0.625729,0.990235,0.826996,0.573483,0.612479,0.39382,0.250658,0.961151,0.307759,0.355062,0.752146,0.118891,0.409732,0.0553624,0.348734,0.999366,0.227868,0.130982,0.918814,0.269932,0.825942,0.846373,0.14229,0.661005,0.68808,0.435012,0.365335,0.573878,0.197259,0.977464,0.625363,0.390836,0.826097,0.746724,0.312759,0.403702,0.181348,0.854631,0.694296,0.408389,0.630937,0.821289,0.503012,0.164226,0.63641,0.0887831,0.699326,0.545325,0.266365,0.761342,0.872744,0.809194,0.487459,0.187794,0.513396,0.844804,0.532725,0.750373,0.956842,0.623783,0.0357218,0.991527,0.934988,0.378551,0.923799,0.421528,0.795684,0.762341,0.999939,0.844341,0.984902,0.39267,0.666297,0.0272689,0.455493,0.950334,0.871476,0.62114,|0.776016,0.660537,0.280533,0.763449,0.409663,0.348364,0.0990027,0.75978,0.911545,0.955825,0.998488,0.879933,0.554212,0.233236,0.928407,0.537735,0.594572,0.183744,0.769634,0.585299,0.148662,0.0360225,0.897265,0.109543,0.985529,0.954169,0.858841,0.486038,0.808162,0.737982,0.864533,0.157705,0.385729,0.917186,0.270887,0.346047,0.0308976,0.388722,0.142842,0.475324,0.336193,0.118105,0.0970797,0.895725,0.528213,0.563123,0.20702,0.00974709,0.973307,0.194227,0.597431,0.999584,0.831078,0.117536,0.52991,0.928264,0.181284,0.025126,0.637765,0.170659,0.886669,0.277871,0.398701,0.235275,0.179689,0.824738,0.638495,0.810714,0.0397441,0.523259,0.942949,0.892467,0.357868,0.497136,0.967836,0.0535132,0.836416,0.722825,0.0146963,0.312472,0.879734,0.799265,0.66265,0.359454,0.298753,0.787815,0.629485,0.0569429,0.378961,0.902927,0.0419321,0.360611,0.880883,0.619165,0.464306,0.278951,0.438799,0.372384,0.753098,0.189821,0.176087,0.208054,0.962736,0.690982,0.697666,0.424001,0.849434,0.427369,0.883442,0.813054,0.99022,0.466591,0.745191,0.753291,0.103578,0.251103,0.467494,0.253065,0.832845,0.446403,0.589576,0.370509,0.653347,0.241918,0.974969,0.191469,0.0493011,0.672561,0.400373,0.469895,0.473255,0.326426,0.0401904,0.470723,0.772596,0.84544,0.884053,0.215078,0.551003,0.586773,0.574831,0.687794,0.561581,0.994331,0.110809,0.598387,0.793266,0.515076,0.104108,0.381846,0.124637,0.0750329,0.39154,0.103981,0.595417,0.957029,0.439666,0.882814,0.848403,0.382251,0.416246,0.0279471,0.778245,0.966711,0.651458,0.234541,0.143424,0.794301,0.721052,0.214612,0.246196,0.277674,0.746609,0.904718,0.371145,0.0110468,0.569084,0.732353,0.0665879,0.382503,0.543299,0.482784,0.710322,0.266148,0.503308,0.0952955,0.409093,0.565918,0.719637,0.342267,0.167765,0.0334237,0.335358,0.109949,0.576322,0.266338,0.47211,0.0130287,0.540784,0.366444,0.0170059,0.365941,0.795579,0.68347,0.639833,0.453315,0.405701,0.489145,0.440525,0.255051,0.989528,0.130775,0.126583,0.49385,0.0236642,0.303838,0.651562,0.921754,0.729653,0.489589,0.102201,0.95449,0.723018,0.854598,0.53309,0.70362,0.728355,0.587001,0.972399,0.952161,0.649655,0.793764,0.968477,0.994403,0.0837919,0.641077,0.903718,0.95562,0.407275,0.294724,0.544326,0.473389,0.931462,0.284012,0.601906,0.0813694,0.169013,0.85431,0.673424,0.969576,0.104778,0.995687,0.4615,0.726491,0.292672,0.785724,0.520916,0.75828,0.275004,0.406717,0.658358,0.412316,0.504326,0.900432,0.205284,0.151141,0.359074,0.462718,0.521338,0.0295961,0.644051,0.362719,0.116308,0.0726349,0.303255,0.858694,0.565697,0.561544,0.923278,0.338887,0.854627,0.796735,0.847575,0.0558006,0.264916,0.121404,0.983434,0.786688,0.976633,0.198512,0.0549509,0.555958,0.715019,0.286912,0.711716,0.317648,0.693662,0.927017,0.698877,0.66796,0.552193,0.445558,0.0597106,0.32967,0.941181,0.0347126,0.452809,0.153445,0.261758,0.991366,0.17265,0.105343,0.281372,0.0143756,0.415945,0.461804,0.80418,0.830375,0.367994,0.414985,0.630882,0.107685,0.300246,0.161586,0.286173,0.333385,0.145697,0.689605,0.6341,0.419542,0.878331,0.929781,0.465357,0.637025,0.445502,0.368841,0.320367,0.533308,0.385504,0.213351,0.27044,0.7145,0.725784,0.342417,0.53204,0.955532,0.715814,0.871503,0.726423,0.0707315,0.552475,0.376432,0.825558,0.471097,0.430038,0.691142,0.410789,0.892817,0.166388,0.147855,0.965703,0.798877,0.734397,0.421275,0.316078,0.319657,0.754231,0.726686,0.632665,0.0832825,0.171958,0.549537,0.534199,0.152184,0.959198,0.72244,0.907936,0.48228,0.481468,0.306169,0.908629,0.105417,0.954203,0.84874,0.228542,0.539216,0.310151,0.809869,0.117196,0.719621,0.583817,0.728312,0.184364,0.121807,0.299346,0.357732,0.0791674,0.423571,0.201092,0.402946,0.69847,0.393971,0.659375,0.454016,0.547688,0.70531,0.468276,0.540479,0.52463,0.507836,0.247628,0.752407,0.88572,0.77955,0.947992,0.353709,0.223642,0.174775,0.917837,0.62702,0.33738,0.280019,0.663458,0.945801,0.125857,0.853913,0.150836,0.764496,0.708434,0.806623,0.0972294,0.297546,0.381089,0.953724,0.566683,0.199698,0.314906,0.716492,0.626575,0.932708,0.654656,0.667126,0.698451,0.70511,0.0140407,0.400149,0.586811,0.0815682,0.341107,0.508928,0.291671,0.043882,0.259789,0.0243558,0.468617,0.529523,0.54555,0.955149,0.439958,0.87957,0.895981,0.488045,0.546055,0.285478,0.0859,0.785205,0.409083,0.970508,0.483926,0.86083,0.540296,0.124065,0.074069,0.183226,0.545763,0.380025,0.0244709,0.156996,0.563638,0.0886509,0.561466,0.503709,0.100871,0.0747252,0.731973,0.522755,0.910293,0.886617,0.0298628,0.899175,0.308238,0.144434,0.364942,0.376827,0.023367,0.260458,0.222811,0.255697,0.130472,0.275893,0.0456643,0.333224,0.653853,0.0520313,0.525677,0.937884,0.19453,0.934594,0.692056,0.24268,0.898529,0.512198,0.221958,0.619782,0.290575,0.556444,0.685715,0.389699,0.0388447,0.0072068,0.715106,0.723161,0.428724,0.410704,0.986162,0.504745,0.328747,0.597277,0.0806744,0.0583308,0.329706,0.691083,0.709729,0.895308,0.174774,0.591491,0.68657,0.159212,0.756653,0.812708,0.498075,0.468511,0.893259,0.657358,0.408597,0.616983,0.0530134,0.362764,0.790726,0.553355,0.526036,0.109712,0.525952,0.297122,0.0249175,0.657492,0.857302,0.482831,0.565534,0.608817,0.111079,0.76578,0.341175,0.824353,0.126016,0.291586,0.567375,0.30917,0.717967,0.561917,0.739077,0.976028,0.455498,0.947577,0.499719,0.191013,0.047621,0.116487,0.0244129,0.668568,0.357002,0.646553,0.181275,0.0343556,0.42312,0.552743,0.648105,0.105956,0.753397,0.69198,0.0526424,0.317924,0.474903,0.309911,0.518151,0.86677,0.200803,0.663402,0.0358115,0.87134,0.321642,0.847695,0.767807,0.342269,0.904842,0.737682,0.986465,0.439166,0.976901,0.897368,0.0480404,0.796167,0.433508,0.867417,0.068129,0.789832,0.768356,0.733897,0.212621,0.523818,0.885684,0.15975,0.40743,0.909144,0.415992,0.832484,0.639017,0.295,0.628722,0.815324,0.782303,0.724198,0.102524,0.992454,0.00124937,0.515473,0.545552,0.191865,0.345337,0.79414,0.48781,0.189777,0.229135,0.46108,0.469878,0.896864,0.347926,0.038632,0.510437,0.819481,0.652126,0.95861,0.413818,0.501636,0.785213,0.518413,0.754223,0.251895,0.921697,0.875056,0.358251,0.465138,0.441594,0.690445,0.565634,0.521486,0.390248,0.3282,0.727682,0.409906,0.365443,0.566867,0.507969,0.393825,0.579144,0.505183,0.224991,0.643298,0.633135,0.993925,0.729852,0.77013,0.122625,0.400993,0.658467,0.764327,0.273695,0.666265,0.0347339,0.780374,0.130463,0.363347,0.990235,0.154385,0.918505,0.879495,0.77592,0.227548,0.284382,0.13454,0.943219,0.314605,0.195665,0.88788,0.35429,0.603709,0.124945,0.903783,0.97651,0.878869,0.856482,0.954086,0.614547,0.333518,0.783566,0.260663,0.931745,0.169436,0.567105,0.423732,0.521858,0.550159,0.595082,0.26759,0.322277,0.704981,0.168464,0.423048,0.672423,0.121847,0.39715,0.231664,0.121175,0.347027,0.711214,0.732988,0.525052,0.211173,0.386562,0.0573783,0.545917,0.196484,0.691127,0.0333189,0.250224,0.932019,0.0786537,0.637635,0.550412,0.0657405,0.156035,0.813826,0.380576,0.573491,0.540232,0.368487,0.859767,0.522568,0.996596,0.503653,0.1151,0.882448,0.957124,0.0432103,0.607291,0.755118,0.998075,0.311592,0.258396,0.585704,0.660336,0.452751,0.467379,0.792187,0.182551,0.250757,0.745108,0.9992,0.117935,0.372544,0.0225507,0.486125,0.980168,0.915519,0.145624,0.999104,0.710274,0.672986,0.0708119,0.659787,0.729176,0.61443,0.13099,0.117384,0.436835,0.715893,0.322122,0.0102662,0.241738,0.487452,0.690981,0.291957,0.805539,0.800345,0.17226,0.415544,0.0242424,0.509619,0.827634,0.26246,0.98903,0.809431,0.843344,0.418883,0.965976,0.473268,0.296021,0.0718709,0.276988,0.0491968,0.39062,0.465272,0.61051,0.371031,0.375522,0.318419,0.496318,0.378875,0.886496,0.760691,0.0616403,0.293029,0.256234,0.937654,0.940846,0.732196,0.658506,0.633614,0.274892,0.92161,0.955625,0.377808,0.17493,0.82779,0.959204,0.625991,0.87515,0.169629,0.193186,0.504067,0.163553,0.577288,0.920754,0.98041,0.73486,0.64907,0.832729,0.84618,0.901836,0.379188,0.8106,0.107383,0.838873,0.505055,0.892119,0.826074,0.17498,0.00984991,0.0868658,0.280127,0.794928,0.586667,0.947012,0.927067,0.098778,0.594995,0.155107,0.487546,0.817297,0.499345,0.843448,0.613274,0.959489,0.329984,0.846966,0.273518,0.118988,0.843568,0.386467,0.0815437,0.74802,0.896259,0.224184,0.559998,0.326813,0.0378959,0.121553,0.847386,0.292524,0.140303,0.776461,0.53317,0.660821,0.978012,0.993926,0.201429,0.203771,0.480049,0.567588,0.409557,0.920601,0.553503,0.150081,0.975429,0.828936,0.316734,0.719248,0.367048,0.48485,0.514983,0.532208,0.121922,0.196463,0.759373,0.256964,0.667812,0.685534,0.765803,0.625566,0.92222,0.345091,0.843922,0.880636,0.324077,0.0741571,0.188604,0.392817,0.69831,0.205481,0.157551,0.177276,0.395029,0.911227,0.844725,0.268174,0.422488,0.346923,0.474911,0.733798,0.154692,0.541748,0.131846,0.34145,0.713578,0.314703,0.514364,0.993419,0.128079,0.679433,0.548562,0.333154,0.578234,0.580125,0.209724,0.7981,0.20374,0.674491,0.664202,0.963,0.632989,0.00917107,0.721948,0.420961,0.632798,0.804695,0.361877,0.0438055,0.226076,0.603763,0.860536,0.171345,0.661165,0.656749,0.528422,0.875641,0.984721,0.61885,0.516315,0.621,0.504785,0.231135,0.719833,0.981338,0.346714,0.0433226,0.473073,0.389209,0.589567,0.407661,0.62578,|0.773233,0.961061,0.102447,0.535387,0.256496,0.593108,0.036863,0.467071,0.474504,0.565047,0.475448,0.837977,0.881551,0.14884,0.742376,0.996237,0.9068,0.483139,0.448884,0.931326,0.748953,0.0148641,0.0897641,0.11322,0.70036,0.800397,0.00601906,0.76001,0.316333,0.587824,0.59663,0.278972,0.337403,0.8894,0.775303,0.911348,0.384147,0.453658,0.672786,0.946135,0.450279,0.0668167,0.911694,0.204278,0.961766,0.347744,0.464923,0.168056,0.817679,0.501814,0.970173,0.677556,0.467818,0.924804,0.289985,0.418918,0.982348,0.156751,0.434401,0.145167,0.263112,0.856589,0.427362,0.864739,0.94098,0.97079,0.979643,0.593223,0.138849,0.454783,0.948467,0.990745,0.679119,0.773213,0.659902,0.486332,0.156708,0.133169,0.646426,0.965715,0.709046,0.659157,0.550995,0.227839,0.21993,0.427262,0.509955,0.181034,0.166577,0.862191,0.946241,0.731888,0.898032,0.274588,0.278099,0.45298,0.619543,0.67327,0.575994,0.54699,0.560634,0.157386,0.734642,0.605666,0.240691,0.711952,0.303639,0.763716,0.604388,0.543662,0.571434,0.812108,0.425581,0.681114,0.135368,0.562729,0.971691,0.747624,0.304423,0.00345927,0.743037,0.174782,0.629329,0.821345,0.167654,0.110355,0.193926,0.215547,0.586762,0.177388,0.147733,0.28007,0.960209,0.14338,0.509838,0.125137,0.554374,0.138499,0.590384,0.866143,0.915642,0.131008,0.179291,0.885659,0.415029,0.753034,0.358708,0.626802,0.376748,0.715835,0.0135083,0.784999,0.364968,0.166514,0.441903,0.0808212,0.429864,0.123998,0.280384,0.907733,0.970266,0.303828,0.0351356,0.691087,0.0717924,0.152335,0.0171373,0.5617,0.192508,0.666212,0.32398,0.196358,0.225519,0.774587,0.422222,0.751872,0.532785,0.0477151,0.260256,0.138892,0.807312,0.914599,0.660184,0.587879,0.913937,0.95472,0.483219,0.26728,0.375288,0.783926,0.918316,0.964318,0.895253,0.799323,0.258443,0.754063,0.650742,0.072167,0.622539,0.123062,0.295739,0.463114,0.79078,0.62878,0.33513,0.108415,0.589462,0.835836,0.294204,0.953499,0.798788,0.0313875,0.195894,0.271271,0.246342,0.227287,0.217058,0.594204,0.57805,0.891572,0.56433,0.608002,0.436579,0.705768,0.32709,0.973292,0.681314,0.89143,0.392214,0.813802,0.714453,0.697718,0.334963,0.756153,0.176019,0.829203,0.0583392,0.0138537,0.448903,0.961912,0.42415,0.855,0.156326,0.0714432,0.541902,0.483878,0.462376,0.507454,0.99655,0.536483,0.967794,0.754826,0.0307807,0.569423,0.943634,0.866667,0.931797,0.224851,0.451819,0.410525,0.490466,0.615172,0.441141,0.670932,0.691954,0.490492,0.0690038,0.319791,0.23168,0.886276,0.747255,0.0237359,0.480902,0.92966,0.0822224,0.665627,0.450786,0.31715,0.5001,0.0125152,0.833275,0.421078,0.760018,0.944371,0.739656,0.0852089,0.486171,0.104392,0.453747,0.680008,0.938995,0.422373,0.00447327,0.870161,0.535007,0.517903,0.920811,0.110288,0.0755568,0.417779,0.503622,0.509822,0.532028,0.916234,0.928397,0.580284,0.217354,0.654396,0.143109,0.818059,0.187456,0.386371,0.17312,0.20529,0.521465,0.780249,0.367985,0.217722,0.568543,0.789056,0.152597,0.774046,0.910682,0.847814,0.915463,0.203561,0.700784,0.446378,0.881338,0.107601,0.483174,0.714854,0.878574,0.337494,0.76705,0.784759,0.738087,0.999911,0.122786,0.780721,0.858297,0.969369,0.247747,0.100271,0.73017,0.46821,0.375343,0.996929,0.800934,0.538717,0.524795,0.172328,0.316009,0.804777,0.950231,0.200443,0.744567,0.498214,0.621877,0.216011,0.938259,0.268132,0.0955768,0.79907,0.603764,0.36763,0.627584,0.94902,0.490498,0.236259,0.637235,0.914503,0.0907334,0.703219,0.501671,0.295124,0.523861,0.880513,0.267041,0.0677149,0.569767,0.219227,0.220801,0.301191,0.269943,0.973843,0.00156558,0.00724208,0.0969574,0.171887,0.465901,0.763343,0.673431,0.734202,0.950577,0.309224,0.683296,0.62785,0.328446,0.288827,0.824366,0.408611,0.397125,0.960119,0.964342,0.391297,0.876137,0.408876,0.835403,0.0500894,0.0120005,0.836514,0.432645,0.438357,0.946748,0.346061,0.855088,0.0375604,0.236188,0.0245421,0.215733,0.837571,0.724201,0.677261,0.004866,0.912922,0.00745517,0.712224,0.852497,0.154589,0.146602,0.900836,0.105545,0.39379,0.056155,0.854109,0.911923,0.468094,0.261625,0.60904,0.521775,0.501675,0.023359,0.116728,0.545978,0.731976,0.893367,0.583512,0.384895,0.165832,0.643709,0.207403,0.827993,0.887683,0.183327,0.859191,0.0473883,0.624385,0.702906,0.886327,0.926727,0.651497,0.57356,0.325594,0.396164,0.301443,0.383244,0.529221,0.665085,0.281179,0.44343,0.953361,0.537541,0.103521,0.838594,0.762055,0.508241,0.341254,0.677489,0.198165,0.662926,0.380521,0.0604799,0.625609,0.232549,0.246707,0.156107,0.724328,0.357437,0.860641,0.331883,0.570659,0.0536045,0.248668,0.735562,0.681417,0.0283971,0.77919,0.603409,0.407844,0.775254,0.933948,0.57561,0.988398,0.314369,0.596097,0.671046,0.81855,0.905329,0.988211,0.973807,0.248538,0.740426,0.717493,0.471624,0.0180745,0.934341,0.964143,0.32251,0.0603333,0.672991,0.139971,0.715387,0.156873,0.309547,0.94651,0.750618,0.961936,0.299092,0.248482,0.977984,0.046115,0.037502,0.898794,0.935092,0.701622,0.305659,0.453927,0.896078,0.179489,0.544433,0.958136,0.509031,0.940524,0.79968,0.796718,0.608407,0.183511,0.907524,0.344902,0.449298,0.426567,0.141278,0.86486,0.339909,0.35604,0.210364,0.616859,0.223625,0.699738,0.312982,0.0483037,0.0857458,0.264768,0.693442,0.323569,0.708573,0.332929,0.493993,0.8535,0.205529,0.804654,0.539342,0.625648,0.41369,0.875256,0.0526049,0.733508,0.961219,0.755304,0.674066,0.973498,0.32749,0.987648,0.353391,0.671827,0.169174,0.431943,0.598654,0.658475,0.255099,0.220434,0.721047,0.962448,0.813822,0.719929,0.149411,0.706118,0.858928,0.00155658,0.330021,0.366543,0.016822,0.279322,0.282129,0.0157816,0.87364,0.894869,0.724162,0.0448194,0.336875,0.379093,0.5674,0.114073,0.256062,0.499622,0.747057,0.190911,0.141925,0.881143,0.690439,0.433499,0.707001,0.507457,0.399063,0.659916,0.841965,0.31307,0.689431,0.474568,0.700039,0.257294,0.909923,0.573336,0.144609,0.599206,0.994274,0.0819041,0.638674,0.808183,0.252518,0.826865,0.782946,0.139307,0.606414,0.15762,0.381294,0.587561,0.606328,0.114371,0.500277,0.379234,0.893509,0.819628,0.0796802,0.870244,0.377111,0.805372,0.643189,0.282365,0.342225,0.292095,0.79629,0.411384,0.863628,0.14813,0.534974,0.241585,0.0684507,0.437363,0.254778,0.457064,0.00431991,0.683257,0.291692,0.0241085,0.53324,0.523742,0.227152,0.686877,0.0961925,0.862155,0.68218,0.843848,0.0724662,0.383906,0.244382,0.15541,0.188194,0.895261,0.272968,0.631136,0.0448368,0.407422,0.432393,0.474489,0.383042,0.903535,0.420407,0.272462,0.797541,0.046331,0.713721,0.134014,0.70073,0.442337,0.162962,0.686499,0.74159,0.209393,0.216611,0.756167,0.0225859,0.282412,0.990848,0.946466,0.765667,0.381948,0.337891,0.531407,0.888988,0.154296,0.0285719,0.935552,0.535611,0.378694,0.161655,0.236644,0.235605,0.300869,0.817667,0.609437,0.227796,0.312291,0.747666,0.865386,0.938302,0.21865,0.60695,0.908277,0.132645,0.365142,0.417769,0.40581,0.0656809,0.399151,0.380099,0.994726,0.915265,0.452249,0.357866,0.0202822,0.528046,0.526129,0.405079,0.0454566,0.901575,0.715862,0.85224,0.796678,0.391797,0.330616,0.906667,0.0183637,0.739341,0.154755,0.681742,0.504417,0.161911,0.248691,0.700928,0.17478,0.350894,0.0339317,0.156889,0.0230889,0.82977,0.683942,0.558135,0.0950915,0.382335,0.314688,0.714319,0.291649,0.248249,0.901798,0.0206095,0.525071,0.498002,0.852932,0.675265,0.751411,0.194966,0.291021,0.312474,0.109056,0.542243,0.485546,0.400967,0.282966,0.71975,0.489554,0.0169971,0.488951,0.522122,0.437836,0.100574,0.911324,0.840427,0.620601,0.188771,0.297416,0.908294,0.855311,0.298502,0.404353,0.343659,0.932134,0.942373,0.632311,0.787738,0.185984,0.986118,0.0582582,0.647829,0.539921,0.44983,0.254055,0.98165,0.0804986,0.944876,0.366282,0.733772,0.271751,0.813777,0.954616,0.906805,0.493373,0.715511,0.565618,0.792432,0.709151,0.920456,0.0881163,0.143403,0.0180255,0.468767,0.143554,0.0958047,0.755165,0.861694,0.462036,0.869319,0.671245,0.369843,0.536411,0.896834,0.657742,0.15315,0.482925,0.114613,0.8667,0.860832,0.254318,0.11122,0.914183,0.338694,0.396585,0.66635,0.893928,0.15123,0.187264,0.65608,0.0274994,0.876065,0.171571,0.614031,0.448698,0.406083,0.538703,0.0375288,0.979849,0.733476,0.283726,0.65729,0.677042,0.555388,0.858654,0.289698,0.0929202,0.130091,0.566743,0.245823,0.567797,0.766111,0.603503,0.892541,0.281513,0.749907,0.721932,0.470362,0.428748,0.107998,0.686595,0.103399,0.902024,0.340103,0.252255,0.453312,0.308233,0.526351,0.445404,0.0835178,0.190113,0.318563,0.258148,0.91058,0.948136,0.858367,0.219251,0.173482,0.170513,0.215466,0.772334,0.329732,0.534608,0.0376527,0.557872,0.751073,0.291659,0.727343,0.960236,0.0294172,0.79957,0.0693576,0.38815,0.410493,0.911754,0.242247,0.35795,0.546967,0.583892,0.679391,0.373984,0.162275,0.467169,0.240687,0.909788,0.914268,0.861079,0.611313,0.635526,0.175304,0.150131,0.56077,0.845075,0.467411,0.945042,0.207051,0.917557,0.821493,0.754659,0.648351,0.360895,0.834804,0.350407,0.0990539,0.577268,0.969186,0.415878,0.544512,0.928981,0.737685,0.724044,0.717961,0.241662,0.477301,0.539939,0.174763,0.906092,0.794788,0.670329,0.633044,0.556902,0.157484,0.554795,0.628444,0.252309,0.0997228,0.861369,0.45951,0.289503,0.613529,0.0713469,0.496358,0.919616,0.509235,0.0836606,0.167354,0.462807,|0.505127,0.967924,0.771402,0.534272,0.756962,0.160027,0.175467,0.92505,0.293303,0.114292,0.35636,0.985373,0.630313,0.84681,0.18493,0.768617,0.505645,0.0193603,0.876916,0.878246,0.444097,0.658184,0.937867,0.734506,0.947582,0.213163,0.284961,0.0351975,0.369914,0.304479,0.847311,0.590422,0.86788,0.870562,0.544078,0.0654705,0.786612,0.951048,0.33154,0.544343,0.944312,0.69773,0.132578,0.800465,0.4088,0.850679,0.59106,0.722286,0.88464,0.826605,0.907704,0.0364085,0.836414,0.0662428,0.866034,0.959004,0.548292,0.935116,0.68622,0.345273,0.511414,0.0573235,0.934282,0.360289,0.788436,0.964229,0.365583,0.199419,0.0737017,0.699345,0.920489,0.247079,0.221767,0.497575,0.582654,0.712786,0.0506112,0.571143,0.0975711,0.898832,0.320178,0.742461,0.434774,0.0248829,0.918684,0.473398,0.124536,0.44881,0.764663,0.638697,0.540049,0.270782,0.0975665,0.0974054,0.791641,0.571467,0.0745494,0.0300042,0.906447,0.158062,0.249412,0.565924,0.185128,0.144815,0.592141,0.0599878,0.0588816,0.125166,0.0771244,0.784583,0.637771,0.898849,0.772259,0.0149794,0.0764993,0.014412,0.166321,0.1709,0.999424,0.453356,0.129329,0.554973,0.80065,0.613997,0.570444,0.170311,0.819442,0.781104,0.148714,0.977805,0.706287,0.163686,0.706303,0.252335,0.373417,0.755392,0.431876,0.0172246,0.492659,0.370204,0.541378,0.274341,0.108674,0.297892,0.991847,0.523098,0.329304,0.341034,0.374368,0.927854,0.400106,0.440635,0.938271,0.10445,0.794028,0.207435,0.465003,0.105417,0.51991,0.349202,0.0417044,0.619681,0.346455,0.54627,0.170065,0.926476,0.795836,0.793699,0.573972,0.00995499,0.583664,0.150369,0.975599,0.678617,0.0516582,0.730937,0.536318,0.635354,0.292707,0.697286,0.606708,0.996275,0.904539,0.955756,0.95582,0.591152,0.981093,0.754563,0.799795,0.560161,0.739122,0.6647,0.544363,0.0445023,0.50701,0.653657,0.658698,0.324604,0.725409,0.304915,0.634086,0.783717,0.241241,0.54227,0.94788,0.167216,0.473395,0.094244,0.115982,0.458113,0.00557917,0.574797,0.360846,0.379781,0.218801,0.397503,0.640759,0.859779,0.38627,0.498591,0.5474,0.35757,0.222907,0.325413,0.301545,0.00898844,0.517665,0.925415,0.0342501,0.61154,0.310891,0.968328,0.688755,0.551373,0.520139,0.953735,0.026595,0.393938,0.428719,0.953237,0.439396,0.659172,0.371398,0.251253,0.554548,0.127036,0.453448,0.0856044,0.910604,0.865912,0.989992,0.573103,0.859406,0.875128,0.0802088,0.587027,0.360839,0.113168,0.745097,0.467071,0.0862572,0.886333,0.289585,0.777649,0.423769,0.71392,0.643162,0.708267,0.182606,0.0688584,0.322551,0.492195,0.714848,0.140194,0.809297,0.810632,0.92114,0.606365,0.173998,0.661492,0.520723,0.567431,0.0145667,0.861037,0.870469,0.812542,0.129214,0.143395,0.620139,0.940649,0.0770265,0.233547,0.933355,0.0490827,0.341819,0.502513,0.23244,0.773035,0.275905,0.561659,0.64188,0.234555,0.265534,0.967226,0.946304,0.884471,0.675105,0.626905,0.534718,0.167588,0.711353,0.830915,0.315444,0.248574,0.687898,0.437456,0.251436,0.360857,0.45445,0.635963,0.121532,0.609667,0.26702,0.590875,0.169209,0.101326,0.127665,0.358628,0.280636,0.76004,0.269356,0.0239713,0.807601,0.996639,0.90663,0.26636,0.76151,0.7875,0.148736,0.932651,0.351108,0.514404,0.928793,0.556331,0.777032,0.441169,0.368502,0.893279,0.589092,0.774194,0.196755,0.473066,0.846693,0.65273,0.659633,0.353329,0.800506,0.576055,0.718432,0.448804,0.260219,0.0739893,0.890147,0.750457,0.15315,0.18256,0.504877,0.254089,0.143637,0.0605941,0.93091,0.0645852,0.559253,0.770091,0.165635,0.683124,0.648427,0.800589,0.929026,0.472761,0.03144,0.774513,0.853981,0.583381,0.731278,0.491516,0.20072,0.692425,0.00248903,0.376957,0.0233085,0.744008,0.957318,0.465336,0.255226,0.33673,0.71921,0.50051,0.619592,0.798902,0.696294,0.106429,0.103611,0.851022,0.879488,0.52157,0.739297,0.64317,0.610749,0.620307,0.986691,0.930151,0.283214,0.391708,0.608209,0.777645,0.936947,0.938121,0.765432,0.16296,0.860425,0.575218,0.562938,0.121163,0.411906,0.221475,0.666312,0.132224,0.715887,0.151484,0.22962,0.185719,0.050801,0.285507,0.459939,0.483461,0.534386,0.285499,0.0849479,0.947962,0.84581,0.519715,0.199373,0.965441,0.924936,0.555535,0.141585,0.817133,0.9034,0.119546,0.347292,0.160837,0.366971,0.221874,0.210511,0.393761,0.344053,0.959784,0.935778,0.259977,0.523965,0.0159379,0.0400925,0.303915,0.768101,0.273575,0.606663,0.716514,0.225274,0.742864,0.250839,0.0902129,0.314013,0.74451,0.450727,0.182806,0.965135,0.952658,0.0881357,0.562751,0.0788856,0.642658,0.63357,0.808132,0.139836,0.722733,0.26441,0.0626302,0.518316,0.671641,0.820219,0.886836,0.268876,0.838031,0.260928,0.543767,0.497673,0.341854,0.00370145,0.704796,0.627276,0.398149,0.483131,0.540973,0.235429,0.172342,0.494265,0.03365,0.0993427,0.406711,0.398127,0.328809,0.963404,0.751257,0.849633,0.609619,0.549073,0.366701,0.716924,0.475264,0.25029,0.576222,0.938538,0.941624,0.277969,0.0820819,0.393443,0.662903,0.143908,0.656233,0.982977,0.710188,0.935074,0.773383,0.421216,0.946053,0.906191,0.0595464,0.652408,0.458147,0.602065,0.328863,0.66049,0.756598,0.783508,0.0419911,0.84853,0.0815206,0.671133,0.125951,0.976629,0.246226,0.236471,0.095605,0.992473,0.992172,0.559237,0.825691,0.88758,0.578122,0.465151,0.401627,0.532951,0.113472,0.212862,0.459622,0.697828,0.629126,0.00918311,0.295208,0.307679,0.752322,0.608161,0.463956,0.802551,0.934893,0.283949,0.641927,0.238032,0.459109,0.464376,0.255418,0.681099,0.882106,0.272136,0.760164,0.268263,0.0273079,0.109789,0.0912001,0.561299,0.242353,0.19255,0.938604,0.506726,0.393179,0.604282,0.361554,0.726494,0.774208,0.264606,0.977463,0.683989,0.80707,0.27408,0.378807,0.855974,0.42037,0.468888,0.31251,0.356122,0.919742,0.624927,0.667529,0.749802,0.770719,0.686567,0.775543,0.170407,0.266306,0.663297,0.783242,0.493482,0.833721,0.363663,0.396296,0.169047,0.687734,0.620162,0.761556,0.442983,0.898431,0.845898,0.548449,0.869923,0.857751,0.177546,0.361992,0.221322,0.33745,0.73653,0.0913869,0.915541,0.208908,0.369391,0.501884,0.515219,0.853605,0.0921939,0.993258,0.739242,0.35263,0.766649,0.829329,0.298303,0.320022,0.049231,0.924878,0.105404,0.918687,0.593845,0.260529,0.114234,0.970101,0.817014,0.607138,0.67865,0.344168,0.879478,0.441112,0.354383,0.0537295,0.692801,0.340339,0.0115334,0.231992,0.625623,0.978914,0.398398,0.354248,0.316454,0.631392,0.536468,0.204449,0.207871,0.955848,0.40362,0.795793,0.794912,0.541678,0.186999,0.895322,0.640837,0.820816,0.203265,0.656343,0.00335604,0.190437,0.780811,0.360721,0.228653,0.133222,0.763408,0.744851,0.660439,0.966207,0.167112,0.250928,0.750888,0.934034,0.437405,0.421199,0.623319,0.479064,0.602696,0.498449,0.0766479,0.572769,0.299032,0.381107,0.526553,0.0909986,0.784918,0.543518,0.592667,0.77039,0.790482,0.973897,0.952379,0.000838161,0.896954,0.542956,0.736075,0.81879,0.955943,0.0520759,0.0680982,0.381771,0.98184,0.232639,0.965866,0.664557,0.617801,0.702197,0.831739,0.57514,0.14321,0.403932,0.570346,0.432163,0.929,0.703394,0.159817,0.987226,0.482482,0.806798,0.742668,0.180566,0.178565,0.0597125,0.0373704,0.0549199,0.890981,0.127046,0.641658,0.79071,0.810847,0.70707,0.0217783,0.351121,0.782383,0.0804484,0.259375,0.21478,0.430721,0.433588,0.15097,0.464711,0.566836,0.63414,0.0680476,0.106613,0.843204,0.79006,0.0797677,0.0985728,0.58428,0.278282,0.293175,0.439675,0.0977571,0.351574,0.575523,0.638653,0.801812,0.33937,0.266429,0.224347,0.677163,0.518489,0.558133,0.716962,0.856715,0.332668,0.717158,0.760847,0.767388,0.14128,0.865916,0.0319251,0.911747,0.556679,0.293064,0.414641,0.160393,0.754999,0.209154,0.400283,0.64779,0.949019,0.514275,0.365452,0.53595,0.148721,0.23522,0.150455,0.105185,0.69255,0.457023,0.425119,0.736871,0.277605,0.673263,0.120193,0.131583,0.920112,0.942941,0.583199,0.365663,0.167386,0.0701648,0.799418,0.756627,0.137598,0.250884,0.804184,0.166903,0.319404,0.200748,0.72385,0.388915,0.512515,0.281885,0.801744,0.767211,0.865911,0.172778,0.683949,0.89713,0.998246,0.927087,0.283779,0.938746,0.853363,0.517212,0.197344,0.431203,0.981762,0.625523,0.702219,0.0394491,0.471874,0.606414,0.00882173,0.804131,0.466038,0.697803,0.25281,0.621458,0.875798,0.673958,0.881613,0.593524,0.443668,0.604821,0.782824,0.833245,0.460632,0.996165,0.651922,0.276485,0.317522,0.302407,0.0380505,0.585684,0.486149,0.891346,0.36601,0.0301058,0.618436,0.874675,0.758733,0.739053,0.683611,0.582712,0.555741,0.993535,0.343958,0.030279,0.109275,0.159441,0.560539,0.362792,0.517502,0.89729,0.978004,0.589911,0.900839,0.530317,0.770805,0.0958858,0.41866,0.162171,0.142045,0.726751,0.0816559,0.147074,0.390067,0.494387,0.0670853,0.842018,0.819378,0.467132,0.515946,0.709702,0.946964,0.117327,0.49664,0.698304,0.1864,0.355853,0.96669,0.0779574,0.428218,0.89791,0.520179,0.870253,0.0303514,0.406707,0.00871676,0.231249,0.429662,0.294133,0.0778935,0.781701,0.9018,0.917718,0.756041,0.0957793,0.634959,0.707231,0.228305,0.367737,0.933928,0.664641,0.717657,0.698164,0.390033,0.0175641,0.926298,0.77494,0.267415,0.889371,0.635423,0.75536,0.0526541,0.470425,0.272054,0.0826835,0.656828,0.134833,0.114193,0.368276,0.820812,0.415778,0.901353,0.636263,0.494177,0.80928,0.0259058,0.844478,0.545713,0.18589,0.952374,0.235267,0.0122989,0.793679,0.155847,0.205309,0.219895,|0.410254,0.732377,0.412388,0.218917,0.102186,0.157672,0.791758,0.871825,0.404562,0.911783,0.191235,0.698372,0.78454,0.845131,0.404292,0.818516,0.304776,0.800927,0.208195,0.834423,0.874152,0.359526,0.853429,0.0224432,0.874202,0.504688,0.0210624,0.80822,0.907378,0.305032,0.378385,0.938091,0.639286,0.739054,0.226685,0.290359,0.505706,0.698767,0.14635,0.333161,0.459239,0.657999,0.293223,0.783273,0.0601038,0.587437,0.136809,0.316812,0.977786,0.789602,0.410887,0.534832,0.956111,0.343094,0.75091,0.350858,0.876444,0.782705,0.220933,0.0820183,0.869802,0.375821,0.0308445,0.82536,0.273204,0.905057,0.993563,0.57664,0.385433,0.591439,0.617939,0.450923,0.959261,0.829736,0.334967,0.683129,0.297532,0.191423,0.641446,0.801382,0.205562,0.229369,0.453783,0.579324,0.898639,0.956054,0.70173,0.331145,0.221999,0.464991,0.262172,0.858082,0.0566108,0.644189,0.62674,0.417405,0.280859,0.272235,0.100321,0.600768,0.229276,0.887657,0.465574,0.137671,0.00518775,0.75782,0.855177,0.409288,0.586499,0.638751,0.157831,0.591484,0.347534,0.715989,0.580169,0.493854,0.0376995,0.0411642,0.469578,0.437532,0.243965,0.800951,0.287439,0.33465,0.994323,0.562622,0.595075,0.328505,0.04781,0.332629,0.425308,0.517707,0.739889,0.110149,0.46111,0.722137,0.744225,0.353198,0.253804,0.977583,0.0184281,0.846646,0.311144,0.0325614,0.960269,0.369531,0.0568729,0.180353,0.0964642,0.244459,0.686824,0.487193,0.97314,0.730592,0.741291,0.240572,0.560059,0.249347,0.252459,0.387981,0.952633,0.653489,0.922073,0.662394,0.0280933,0.87826,0.347008,0.338771,0.722684,0.957816,0.522036,0.158318,0.951857,0.933125,0.881874,0.210212,0.00155449,0.306379,0.749479,0.240867,0.325204,0.690288,0.889266,0.0840558,0.180393,0.113495,0.51697,0.562577,0.37899,0.046906,0.762312,0.636045,0.877426,0.0734528,0.590747,0.727106,0.0143057,0.310805,0.698593,0.791706,0.302733,0.297962,0.506675,0.258228,0.419869,0.407046,0.233854,0.0460796,0.148891,0.210768,0.635522,0.528176,0.911907,0.900953,0.805204,0.729809,0.636489,0.465603,0.108108,0.013829,0.956773,0.809645,0.749695,0.812504,0.234239,0.739752,0.936701,0.0526527,0.900051,0.475532,0.0432492,0.185689,0.682462,0.723521,0.368125,0.229825,0.932127,0.763311,0.45863,0.6637,0.0521213,0.918224,0.723569,0.716173,0.874402,0.553386,0.454265,0.0676072,0.880117,0.424055,0.0468492,0.879622,0.11021,0.511588,0.922025,0.538448,0.431242,0.730079,0.205425,0.53601,0.0767986,0.678661,0.176,0.206657,0.642653,0.199819,0.291524,0.463853,0.331211,0.815534,0.715698,0.53526,0.266615,0.277661,0.487524,0.905248,0.178319,0.993259,0.133198,0.614357,0.449689,0.197971,0.595524,0.597675,0.503739,0.896168,0.0152676,0.971751,0.977556,0.250536,0.252315,0.853898,0.859344,0.0193878,0.63123,0.267816,0.492986,0.917913,0.85838,0.576834,0.745354,0.319186,0.267892,0.0331919,0.153984,0.276093,0.0723372,0.659041,0.661956,0.19662,0.402051,0.200191,0.890219,0.342741,0.862484,0.929708,0.189311,0.287925,0.989765,0.145931,0.406071,0.640042,0.0594019,0.789799,0.662552,0.671739,0.0725591,0.229306,0.102206,0.335763,0.098177,0.996949,0.861697,0.438622,0.767857,0.735558,0.338503,0.163172,0.372836,0.809124,0.980225,0.765078,0.325081,0.940661,0.117881,0.781343,0.496509,0.852958,0.983812,0.819416,0.0961599,0.988745,0.807349,0.685779,0.0848034,0.809646,0.836503,0.397809,0.513718,0.0823279,0.627374,0.57452,0.0813491,0.0442333,0.75415,0.768688,0.742919,0.0322452,0.0225355,0.536353,0.701491,0.716631,0.77107,0.769513,0.741375,0.0143822,0.721869,0.53953,0.311377,0.930124,0.0546914,0.15859,0.239788,0.181683,0.619972,0.537995,0.501397,0.558668,0.188582,0.115382,0.0439081,0.0012688,0.0128307,0.7833,0.899754,0.937085,0.182116,0.858942,0.488358,0.152402,0.12453,0.6607,0.174414,0.286401,0.776934,0.0985261,0.369874,0.937465,0.801757,0.56597,0.88609,0.3474,0.539089,0.313787,0.307986,0.161522,0.21989,0.478576,0.893202,0.600429,0.639901,0.360013,0.0399812,0.0759949,0.60558,0.19604,0.390183,0.4431,0.809213,0.138261,0.639,0.598127,0.0966112,0.196471,0.780293,0.776864,0.248729,0.483523,0.169673,0.00850868,0.61441,0.832184,0.263549,0.708638,0.331219,0.253339,0.00605446,0.987465,0.772083,0.924873,0.645897,0.405085,0.241209,0.596154,0.759086,0.0461857,0.27822,0.504445,0.520865,0.861676,0.055132,0.689285,0.293487,0.0672781,0.13637,0.586359,0.651518,0.226576,0.157107,0.691488,0.124927,0.177609,0.488557,0.776536,0.747436,0.857745,0.635722,0.415127,0.0837704,0.328153,0.804597,0.17387,0.341262,0.573101,0.224521,0.561529,0.28167,0.228329,0.890847,0.763414,0.56245,0.944566,0.660365,0.0781389,0.312789,0.824863,0.786289,0.436224,0.5235,0.790407,0.877635,0.208121,0.534418,0.523305,0.267671,0.386721,0.449805,0.489439,0.261496,0.964585,0.474806,0.225713,0.252594,0.0994957,0.879455,0.0939147,0.360885,0.507073,0.590355,0.886152,0.909251,0.678061,0.935661,0.235311,0.443629,0.145993,0.401938,0.143638,0.872283,0.608665,0.470348,0.712771,0.411116,0.09038,0.0783488,0.715925,0.0593788,0.379402,0.50767,0.652955,0.27829,0.950783,0.835873,0.830435,0.688652,0.0837653,0.507212,0.961306,0.285247,0.598933,0.877811,0.775017,0.243919,0.00459838,0.961892,0.819185,0.555785,0.448564,0.140807,0.186192,0.627153,0.916479,0.635283,0.0446747,0.325314,0.174764,0.0425617,0.868069,0.530438,0.041548,0.133593,0.690539,0.26874,0.957181,0.174255,0.477274,0.107203,0.261237,0.407602,0.864164,0.745835,0.131894,0.812073,0.908237,0.54144,0.273717,0.961013,0.54263,0.0945052,0.892228,0.0331023,0.605301,0.798784,0.607021,0.986783,0.32776,0.543113,0.320329,0.420058,0.438465,0.755046,0.313181,0.476284,0.655336,0.212229,0.0653302,0.536956,0.664004,0.402485,0.379462,0.779544,0.382504,0.523767,0.292153,0.828148,0.211565,0.210071,0.809145,0.786067,0.261225,0.365585,0.164589,0.799331,0.0721846,0.155684,0.76201,0.0743113,0.9773,0.340304,0.613051,0.508917,0.385778,0.309673,0.0859094,0.912662,0.0678992,0.183186,0.420481,0.574006,0.908009,0.189596,0.459123,0.650858,0.224489,0.462679,0.198443,0.149109,0.448316,0.815822,0.300885,0.832406,0.952815,0.848914,0.413006,0.179778,0.0459752,0.614813,0.307303,0.322313,0.0415025,0.756506,0.749505,0.126967,0.91494,0.502047,0.296488,0.519034,0.304479,0.855715,0.502568,0.397329,0.79128,0.0907466,0.54422,0.19127,0.310208,0.0436456,0.43914,0.506733,0.782131,0.602042,0.429268,0.101872,0.0429121,0.802112,0.889471,0.427212,0.228632,0.0194184,0.548005,0.150545,0.631315,0.776376,0.0815606,0.654559,0.616146,0.755834,0.160833,0.168602,0.490567,0.171628,0.236421,0.524765,0.867485,0.933332,0.338399,0.527633,0.474541,0.37138,0.745184,0.361933,0.801512,0.636507,0.199629,0.180129,0.440093,0.908951,0.122275,0.608083,0.723457,0.366379,0.535383,0.599954,0.471437,0.864484,0.0447664,0.461899,0.62573,0.366495,0.472406,0.40796,0.303315,0.600724,0.745985,0.657798,0.536926,0.809464,0.957465,0.704072,0.986433,0.428016,0.206743,0.917525,0.954253,0.889124,0.647873,0.596728,0.810102,0.944385,0.336339,0.123269,0.608577,0.373444,0.10974,0.295957,0.664504,0.42559,0.0740653,0.71934,0.934565,0.608894,0.305539,0.488622,0.207239,0.547922,0.112492,0.655403,0.216257,0.518297,0.523501,0.524452,0.866562,0.696099,0.781285,0.375166,0.138485,0.0343529,0.123377,0.621811,0.269533,0.0278733,0.709193,0.286485,0.765473,0.860416,0.921926,0.874876,0.0194961,0.337745,0.583456,0.647936,0.194539,0.46137,0.540343,0.169016,0.477,0.995685,0.0409966,0.633856,0.239667,0.483836,0.22434,0.622189,0.759657,0.324245,0.392841,0.881763,0.726141,0.839521,0.97859,0.168068,0.767885,0.378176,0.664346,0.304738,0.238605,0.164041,0.0492811,0.989687,0.365669,0.25549,0.674985,0.759899,0.332421,0.658572,0.500171,0.34486,0.815214,0.068118,0.261055,0.202632,0.811824,0.951557,0.425603,0.727093,0.495272,0.996667,0.0606464,0.587923,0.17178,0.995212,0.342155,0.0653435,0.796609,0.861375,0.749775,0.166037,0.510628,0.881193,0.457794,0.184092,0.305219,0.569263,0.548457,0.525188,0.763427,0.234948,0.808137,0.657336,0.758324,0.124432,0.546203,0.0201102,0.397514,0.789846,0.15584,0.587717,0.442317,0.702373,0.422754,0.97893,0.571359,0.646837,0.460858,0.768646,0.745802,0.737011,0.306312,0.872656,0.940437,0.14012,0.74749,0.427212,0.30226,0.210138,0.263269,0.936252,0.242363,0.724945,0.662757,0.402962,0.257075,0.486091,0.984551,0.75772,0.684172,0.116272,0.802543,0.484517,0.958623,0.957333,0.200982,0.601952,0.0903638,0.577358,0.0772361,0.0599211,0.228702,0.401234,0.33214,0.992997,0.459664,0.689314,0.187926,0.764102,0.199515,0.55259,0.834386,0.761019,0.0837197,0.474213,0.127052,0.400155,0.0243836,0.898634,0.90234,0.0892823,0.0273296,0.830088,0.337076,0.272413,0.121002,0.990761,0.0227457,0.1849,0.810504,0.40444,0.634841,0.0282981,0.930661,0.501658,0.331321,0.112831,0.790634,0.997858,0.903181,0.920443,0.295959,0.410557,0.614502,0.551241,0.951569,0.582072,0.518523,0.712613,0.602101,0.512232,0.903556,0.846142,0.978328,0.884651,0.0677144,0.863457,0.174117,0.833154,0.464918,0.509928,0.103516,0.817348,0.577176,0.154398,0.240554,0.0935925,0.644337,0.353482,0.752611,0.201524,0.479529,0.401375,0.698017,0.638301,0.533165,0.447642,0.222854,0.0346457,0.258099,0.753419,0.76002,0.0797358,0.42315,0.385546,0.0973106,0.139315,0.340022,0.0534152,0.329437,0.790849,0.673106,0.498422,0.263633,|0.363529,0.68853,0.831723,0.681876,0.0837633,0.168984,0.345408,0.598742,0.961042,0.946916,0.866089,0.270885,0.35293,0.891703,0.966644,0.74508,0.318908,0.642113,0.991974,0.596489,0.953314,0.509599,0.878495,0.749112,0.45576,0.595426,0.126102,0.543237,0.96519,0.662646,0.342314,0.598493,0.805515,0.508391,0.506156,0.309258,0.214172,0.0429527,0.00899297,0.578723,0.727751,0.675731,0.895979,0.378986,0.664676,0.306671,0.968039,0.249439,0.914951,0.504655,0.848452,0.97568,0.15081,0.83923,0.149955,0.954904,0.203179,0.45958,0.0102156,0.598358,0.431698,0.98586,0.22909,0.0770515,0.589737,0.391578,0.00625521,0.361903,0.412526,0.168415,0.512426,0.493696,0.956257,0.101149,0.752155,0.0219954,0.19164,0.220786,0.691899,0.989014,0.276238,0.935586,0.199195,0.377467,0.127021,0.610446,0.856266,0.641321,0.362701,0.14134,0.151702,0.534854,0.322693,0.34531,0.832405,0.338395,0.687019,0.0795048,0.803389,0.235969,0.647875,0.65312,0.324315,0.685335,0.319672,0.317338,0.609681,0.803516,0.103008,0.691341,0.0714657,0.0549068,0.834543,0.272248,0.726458,0.821802,0.646697,0.515728,0.395955,0.781806,0.27828,0.601318,0.937073,0.232632,0.106432,0.0739902,0.655417,0.811354,0.744132,0.170004,0.45357,0.305483,0.0681307,0.795155,0.45149,0.603509,0.499399,0.93142,0.981538,0.138103,0.176278,0.721922,0.806418,0.180545,0.365095,0.120606,0.684034,0.420508,0.207095,0.0284176,0.078351,0.324852,0.659887,0.903737,0.587246,0.916319,0.336661,0.580757,0.812815,0.782267,0.202736,0.960271,0.575043,0.857595,0.339017,0.129575,0.590623,0.94796,0.870077,0.136531,0.352611,0.878983,0.557246,0.925387,0.425836,0.684337,0.622858,0.871376,0.537998,0.905298,0.000580728,0.692331,0.985044,0.659646,0.496076,0.285057,0.762942,0.731768,0.621595,0.781268,0.958163,0.428624,0.307743,0.29623,0.2493,0.987743,0.139364,0.906276,0.670453,0.583442,0.477462,0.652137,0.117356,0.412413,0.715721,0.470058,0.098183,0.19696,0.909002,0.53139,0.458552,0.0238423,0.279573,0.0354339,0.834385,0.884265,0.657479,0.0435264,0.0517621,0.933822,0.589023,0.0215788,0.80525,0.061317,0.24685,0.530658,0.308054,0.501566,0.0410526,0.659481,0.376074,0.309369,0.0981357,0.209148,0.242605,0.344583,0.859648,0.858963,0.81332,0.102702,0.138791,0.013886,0.215072,0.66833,0.752525,0.187382,0.421279,0.911722,0.837557,0.795497,0.566134,0.48593,0.37435,0.888237,0.28566,0.0163549,0.271565,0.960111,0.705491,0.231172,0.986683,0.280729,0.451138,0.518764,0.576878,0.142535,0.073248,0.140152,0.324904,0.837184,0.00346005,0.424975,0.641797,0.632493,0.460842,0.967003,0.430462,0.790931,0.537699,0.0609688,0.124731,0.134212,0.749163,0.297674,0.825397,0.752716,0.504562,0.257951,0.109273,0.630109,0.306442,0.151909,0.455141,0.522746,0.114594,0.411679,0.471499,0.217609,0.281023,0.129647,0.294967,0.861441,0.33517,0.491286,0.18017,0.917437,0.376063,0.624064,0.126797,0.278679,0.960093,0.287623,0.252648,0.726102,0.110312,0.671402,0.74086,0.758049,0.486802,0.976805,0.9247,0.955392,0.866691,0.0738461,0.113119,0.667008,0.973276,0.032957,0.999979,0.755646,0.226197,0.430777,0.942671,0.856027,0.421847,0.828714,0.730597,0.8711,0.0130513,0.281246,0.104168,0.620194,0.289896,0.507045,0.438889,0.473007,0.237369,0.270628,0.583861,0.423998,0.493483,0.238161,0.733609,0.108601,0.0909047,0.969364,0.419658,0.434682,0.757433,0.815083,0.980752,0.0300888,0.298421,0.718263,0.594246,0.254702,0.812861,0.483225,0.802329,0.530066,0.189993,0.206372,0.75074,0.0754506,0.212959,0.648374,0.0571276,0.245054,0.295254,0.131486,0.253363,0.952847,0.0182313,0.944818,0.539849,0.354822,0.250887,0.990803,0.549985,0.0247629,0.0629485,0.301193,0.723413,0.57383,0.102707,0.77876,0.203817,0.0708909,0.191385,0.00570416,0.779909,0.903832,0.810036,0.177066,0.65252,0.620299,0.745302,0.776236,0.239204,0.28451,0.49379,0.0743169,0.265174,0.807353,0.782318,0.0728111,0.326804,0.449133,0.492121,0.408077,0.514412,0.973022,0.118151,0.834125,0.25892,0.476311,0.254605,0.24312,0.880795,0.918752,0.0923492,0.109444,0.400199,0.0331358,0.799519,0.0223677,0.573243,0.992513,0.874278,0.631367,0.858662,0.0375405,0.357035,0.123994,0.259319,0.554143,0.995711,0.679677,0.838569,0.904726,0.945008,0.538566,0.221309,0.688941,0.973703,0.658575,0.565369,0.611066,0.0143504,0.104545,0.156051,0.325502,0.212215,0.287476,0.927609,0.676705,0.36403,0.669373,0.142968,0.33947,0.18835,0.975134,0.431907,0.830459,0.545983,0.0600058,0.257942,0.411428,0.251713,0.206734,0.877488,0.659796,0.209658,0.913932,0.360979,0.035463,0.324337,0.18471,0.620971,0.766129,0.986461,0.258131,0.929539,0.481958,0.692445,0.304313,0.167402,0.603153,0.307552,0.894021,0.800928,0.641276,0.0159582,0.694934,0.403803,0.467324,0.523252,0.667136,0.619561,0.022913,0.141591,0.814782,0.50492,0.457272,0.494667,0.257314,0.287228,0.026335,0.14414,0.0504717,0.0563729,0.655405,0.720843,0.999128,0.781602,0.10692,0.924127,0.705338,0.175676,0.112339,0.415647,0.954356,0.124085,0.90213,0.0145445,0.931374,0.571045,0.0358813,0.207405,0.799048,0.435163,0.533705,0.263432,0.628856,0.427075,0.694468,0.989225,0.725412,0.269016,0.888919,0.961019,0.956627,0.639014,0.700399,0.116009,0.737125,0.375673,0.319281,0.33377,0.420783,0.980227,0.979078,0.520359,0.698591,0.0362801,0.862481,0.152376,0.0693647,0.050537,0.942737,0.283475,0.248203,0.968237,0.51812,0.602046,0.175269,0.431252,0.428103,0.854698,0.384098,0.544001,0.0130579,0.677037,0.505928,0.945121,0.822272,0.84168,0.366507,0.0389694,0.867532,0.97665,0.836262,0.46682,0.256237,0.765965,0.537453,0.872875,0.611091,0.39647,0.542869,0.807368,0.376273,0.185327,0.961798,0.958947,0.961467,0.755997,0.0826924,0.674034,0.994567,0.93308,0.980449,0.164519,0.789721,0.300736,0.357826,0.326464,0.883822,0.922942,0.393858,0.59792,0.175994,0.910775,0.27155,0.802598,0.346059,0.0328934,0.495348,0.148857,0.375329,0.497951,0.416733,0.677254,0.399434,0.552135,0.326822,0.385595,0.780102,0.345986,0.514807,0.145712,0.603354,0.445636,0.2206,0.189448,0.279672,0.992542,0.531369,0.815044,0.855795,0.169248,0.107991,0.243207,0.117003,0.794571,0.893841,0.062498,0.253288,0.126924,0.803666,0.0802468,0.371642,0.556318,0.382573,0.815839,0.828269,0.885021,0.942269,0.829781,0.0984516,0.392375,0.479859,0.787043,0.0355182,0.701177,0.846106,0.298066,0.576345,0.445536,0.662681,0.557387,0.481488,0.559164,0.911647,0.120418,0.879343,0.449166,0.525243,0.574927,0.122947,0.086208,0.0010671,0.952277,0.113258,0.166611,0.951732,0.333126,0.955717,0.0227278,0.519091,0.416118,0.586853,0.39924,0.454616,0.0113525,0.613035,0.934322,0.133403,0.328936,0.613032,0.221864,0.706917,0.6382,0.824368,0.890717,0.854299,0.0593776,0.0373968,0.628274,0.856959,0.823474,0.0602589,0.283401,0.32422,0.421639,0.439032,0.290951,0.96665,0.202058,0.394637,0.716193,0.360394,0.188665,0.440157,0.458903,0.612228,0.253846,0.412707,0.348845,0.902782,0.420369,0.0346,0.448466,0.646074,0.35623,0.892727,0.162121,0.94317,0.705115,0.750607,0.324451,0.251947,0.397749,0.984107,0.656923,0.270204,0.242179,0.626955,0.473424,0.214477,0.637501,0.0793636,0.37737,0.784122,0.446064,0.305857,0.162377,0.577379,0.00912249,0.762467,0.310031,0.76258,0.418114,0.671201,0.508594,0.299846,0.426463,0.856081,0.263025,0.929463,0.0392736,0.715616,0.053973,0.218052,0.825657,0.911445,0.783592,0.543369,0.391555,0.215505,0.965938,0.588362,0.276287,0.937387,0.95207,0.994883,0.262335,0.761002,0.684394,0.586958,0.664084,0.230061,0.0113066,0.414867,0.490593,0.0257814,0.85878,0.635958,0.446331,0.412086,0.606077,0.311189,0.502396,0.592908,0.872134,0.140873,0.240764,0.507708,0.167789,0.458735,0.325457,0.800362,0.864327,0.855912,0.401587,0.743142,0.718143,0.466546,0.56499,0.618831,0.0580691,0.576865,0.647803,0.085741,0.9651,0.138167,0.849161,0.139957,0.266076,0.443216,0.314103,0.773572,0.447496,0.109888,0.545318,0.786976,0.923267,0.72615,0.018258,0.770458,0.959335,0.789038,0.201463,0.0495162,0.462254,0.603685,0.70326,0.413107,0.254187,0.77363,0.519685,0.125893,0.992836,0.892532,0.951791,0.347818,0.102618,0.504262,0.920337,0.129401,0.491799,0.133132,0.70082,0.287203,0.946506,0.071058,0.345129,0.0639886,0.185451,0.269647,0.245987,0.19073,0.739129,0.746304,0.560752,0.456549,0.442294,0.36741,0.894837,0.260499,0.222367,0.523253,0.0692233,0.764691,0.01502,0.0447932,0.0918192,0.744343,0.0189101,0.28518,0.0985479,0.0270172,0.687981,0.883857,0.35466,0.671954,0.997738,0.951002,0.689389,0.279709,0.672916,0.837563,0.0535635,0.696711,0.377283,0.446254,0.052855,0.0559486,0.643122,0.0249361,0.296709,0.000785112,0.39313,0.0285498,0.849058,0.164805,0.660645,0.659819,0.936015,0.734051,0.753066,0.0897577,0.28365,0.177282,0.245746,0.275411,0.811201,0.548939,0.442435,0.905914,0.871685,0.20834,0.878591,0.252991,0.934201,0.00894898,0.769911,0.817874,0.515437,0.176272,0.378552,0.85536,0.7871,0.389489,0.650683,0.86879,0.337708,0.185322,0.936835,0.670168,0.207076,0.0200905,0.330164,0.835894,0.254771,0.717646,0.570029,0.493909,0.620383,0.667266,0.0400217,0.83863,0.632396,0.0276588,0.46537,0.600967,0.350652,0.783024,0.196015,0.78196,0.919545,0.803211,0.563685,0.136692,0.827547,0.134903,0.497966,0.7388,0.92892,0.0624717,0.113271,0.545279,0.238606,0.418784,0.157504,0.291945,0.740589,0.39239,0.829707,0.124628,|0.522761,0.203397,0.437334,0.0577162,0.412844,0.0895494,0.285005,0.667292,0.102519,0.360111,0.469706,0.0756506,0.108468,0.655969,0.360894,0.386588,0.0128953,0.00864172,0.72881,0.666284,0.422911,0.609189,0.475536,0.0488496,0.210976,0.351623,0.845427,0.133969,0.918439,0.0453816,0.882311,0.578628,0.861067,0.00597447,0.227185,0.637009,0.807258,0.386153,0.797017,0.194132,0.96319,0.247142,0.487688,0.0475169,0.662424,0.157151,0.387327,0.926277,0.629212,0.047811,0.750181,0.570084,0.259524,0.150182,0.0509344,0.483626,0.837618,0.248725,0.599595,0.931875,0.778674,0.870376,0.400361,0.328707,0.672507,0.495895,0.433648,0.399338,0.144628,0.168325,0.330329,0.963025,0.882945,0.788129,0.909638,0.329861,0.00117421,0.0501944,0.863803,0.583458,0.238389,0.0947999,0.188015,0.224871,0.0408199,0.82102,0.111023,0.341987,0.995796,0.978528,0.800026,0.176189,0.271433,0.419732,0.0908815,0.919736,0.849727,0.634118,0.909802,0.731359,0.810309,0.674908,0.936498,0.858664,0.40299,0.224093,0.739384,0.852699,0.88093,0.394323,0.877958,0.226546,0.928193,0.108202,0.821912,0.895395,0.131203,0.631339,0.325992,0.358687,0.692592,0.940019,0.151195,0.0523798,0.31525,0.783677,0.467359,0.972881,0.239483,0.121565,0.32528,0.422847,0.897435,0.176002,0.393766,0.280483,0.299544,0.328354,0.478556,0.356184,0.719345,0.74646,0.672256,0.828556,0.294241,0.626762,0.988615,0.22664,0.468196,0.861151,0.428073,0.813944,0.0630112,0.813483,0.505969,0.553801,0.333072,0.787934,0.307047,0.602617,0.0515919,0.589343,0.912927,0.276524,0.906242,0.956045,0.654756,0.60097,0.964327,0.203393,0.503554,0.854767,0.146284,0.803849,0.991324,0.34866,0.944215,0.073351,0.422886,0.8745,0.22679,0.947427,0.622777,0.728136,0.429756,0.828863,0.0832565,0.769448,0.434201,0.650634,0.543269,0.589053,0.790385,0.489637,0.165796,0.206155,0.793203,0.59731,0.337848,0.399366,0.000580013,0.155541,0.222267,0.361864,0.743056,0.868137,0.697742,0.231095,0.380424,0.757889,0.225398,0.938462,0.841461,0.141148,0.203022,0.988332,0.346221,0.685235,0.686869,0.788339,0.384865,0.985548,0.503377,0.729593,0.343955,0.643658,0.917216,0.792443,0.155069,0.252357,0.0515399,0.100673,0.344414,0.412385,0.0944269,0.238014,0.90109,0.824142,0.860665,0.276868,0.0110909,0.518905,0.603526,0.650917,0.728279,0.914993,0.954411,0.689981,0.635228,0.680025,0.97286,0.0696199,0.0319418,0.561505,0.130432,0.941229,0.95518,0.580362,0.0536717,0.25561,0.196631,0.449118,0.420244,0.254845,0.843483,0.008286,0.480802,0.645087,0.836696,0.354961,0.883493,0.595875,0.788366,0.107028,0.420036,0.86081,0.713064,0.00421429,0.959676,0.148489,0.174707,0.0450428,0.282557,0.339033,0.472431,0.716525,0.226383,0.582038,0.490815,0.856139,0.637219,0.527854,0.651627,0.541047,0.54407,0.661248,0.0760159,0.116965,0.00527483,0.678973,0.315803,0.613238,0.662061,0.53868,0.785922,0.802706,0.569531,0.215284,0.560618,0.0809706,0.327161,0.504337,0.0181918,0.404797,0.0059036,0.903524,0.558072,0.0708161,0.599659,0.667681,0.86815,0.713458,0.187659,0.88152,0.668292,0.28827,0.819149,0.474571,0.646553,0.386285,0.0360402,0.906741,0.803471,0.63353,0.121768,0.616323,0.325953,0.983229,0.768399,0.166521,0.766033,0.886055,0.650774,0.596055,0.436593,0.973789,0.69301,0.890364,0.0377906,0.578905,0.785386,0.255223,0.857319,0.205319,0.992869,0.902318,0.970744,0.0242305,0.105914,0.371321,0.42512,0.808669,0.0745116,0.19301,0.272515,0.611097,0.0215951,0.375134,0.197034,0.180392,0.663388,0.394856,0.863585,0.213755,0.0213591,0.455402,0.241051,0.42405,0.200783,0.89026,0.48169,0.718543,0.379374,0.609953,0.0251867,0.000830352,0.567739,0.055918,0.0895292,0.627264,0.147433,0.528873,0.881319,0.306869,0.455359,0.917593,0.69797,0.34044,0.222134,0.0898423,0.128867,0.767206,0.0877183,0.071261,0.326295,0.240891,0.441983,0.455525,0.413542,0.720979,0.954989,0.99189,0.372387,0.490713,0.169181,0.711463,0.912211,0.926061,0.0355452,0.0893808,0.0430266,0.119688,0.891834,0.14664,0.338171,0.724104,0.550877,0.896507,0.925386,0.442235,0.471972,0.995213,0.341504,0.799204,0.928589,0.578402,0.565823,0.427418,0.367713,0.132462,0.385206,0.895058,0.507179,0.316056,0.953392,0.488,0.597203,0.147993,0.0832761,0.693715,0.426708,0.947342,0.230246,0.585341,0.238403,0.0275907,0.932072,0.691507,0.0693083,0.703378,0.0134824,0.145442,0.810969,0.286801,0.528391,0.487744,0.319579,0.778481,0.986681,0.170979,0.389429,0.394605,0.480128,0.474546,0.546381,0.620084,0.541064,0.234694,0.17381,0.692466,0.511871,0.542364,0.792081,0.391693,0.891272,0.68016,0.526999,0.163418,0.398266,0.377863,0.907881,0.926183,0.885164,0.486546,0.894363,0.209827,0.703303,0.988897,0.495848,0.422231,0.312506,0.541522,0.315798,0.0614511,0.064384,0.00440532,0.456631,0.46487,0.04706,0.524738,0.015367,0.697121,0.289739,0.703598,0.437725,0.930929,0.411751,0.824858,0.236755,0.0528744,0.596498,0.40987,0.336279,0.583006,0.557344,0.658972,0.604412,0.967927,0.391415,0.464455,0.904125,0.810462,0.91287,0.0130268,0.401,0.228306,0.737692,0.20047,0.37924,0.332896,0.234356,0.838041,0.648013,0.338904,0.491287,0.536251,0.350837,0.377884,0.411437,0.23702,0.79256,0.351398,0.494158,0.999493,0.440941,0.134639,0.263296,0.445348,0.447163,0.0290565,0.834767,0.566907,0.298733,0.956936,0.134997,0.141799,0.359477,0.594621,0.20342,0.563211,0.0722706,0.11291,0.664387,0.207959,0.746605,0.0409176,0.963303,0.791828,0.768081,0.710052,0.475562,0.447796,0.0560815,0.281209,0.07375,0.276577,0.127482,0.599472,0.475316,0.460905,0.51678,0.0116387,0.855464,0.229668,0.643005,0.978949,0.834666,0.919419,0.231177,0.518924,0.677516,0.411088,0.609559,0.522517,0.908548,0.215012,0.805144,0.542017,0.397485,0.0429342,0.659764,0.91925,0.993817,0.469586,0.365535,0.90247,0.0490862,0.0694786,0.398614,0.518343,0.108726,0.890505,0.611752,0.416217,0.402449,0.61872,0.525852,0.92317,0.815137,0.912916,0.476072,0.837638,0.830685,0.480059,0.871894,0.00624645,0.984661,0.292826,0.423949,0.346602,0.310461,0.384266,0.435448,0.945568,0.670207,0.257551,0.190229,0.182959,0.0544508,0.0379812,0.185364,0.179273,0.557035,0.67256,0.906744,0.869144,0.176081,0.788394,0.371725,0.819632,0.718216,0.881013,0.0720664,0.769225,0.0973203,0.956313,0.423594,0.959592,0.170393,0.109896,0.406664,0.890008,0.666949,0.886116,0.29655,0.229603,0.654883,0.737346,0.894022,0.0869401,0.169675,0.636958,0.877227,0.833934,0.163875,0.337825,0.01035,0.96497,0.899965,0.569787,0.151798,0.294875,0.959884,0.86009,0.811293,0.886207,0.378811,0.150258,0.325046,0.204142,0.177049,0.637595,0.53008,0.681537,0.901519,0.0445505,0.151238,0.768983,0.374435,0.730538,0.587393,0.37242,0.472379,0.0854885,0.0792201,0.782926,0.503557,0.616733,0.99728,0.882537,0.768808,0.801915,0.381465,0.259168,0.357368,0.770393,0.585236,0.223203,0.934326,0.684427,0.303317,0.612652,0.188118,0.509727,0.422065,0.839964,0.130676,0.572164,0.83222,0.275464,0.856758,0.412472,0.64216,0.965162,0.569533,0.660639,0.982139,0.320974,0.381241,0.0129084,0.72644,0.00491953,0.247962,0.195641,0.0732265,0.82079,0.650147,0.964732,0.0241036,0.454426,0.74753,0.493361,0.324592,0.868952,0.433804,0.208675,0.0357804,0.298783,0.158148,0.897595,0.758702,0.296916,0.777096,0.224833,0.708062,0.755929,0.0863744,0.539925,0.812863,0.880632,0.767002,0.500827,0.455304,0.0979363,0.0336585,0.991173,0.830548,0.548912,0.9175,0.33195,0.348555,0.212365,0.341919,0.259383,0.796993,0.0388283,0.642577,0.17123,0.613007,0.276311,0.224081,0.357668,0.372981,0.628113,0.858269,0.196357,0.0975393,0.842016,0.551751,0.0125847,0.348266,0.935037,0.818576,0.0577433,0.805486,0.154168,0.782618,0.431389,0.136106,0.296829,0.980419,0.299901,0.588068,0.867488,0.270221,0.0330586,0.682343,0.271539,0.259002,0.129244,0.78298,0.695368,0.119066,0.220548,0.0322004,0.738506,0.0897856,0.993599,0.223833,0.242485,0.261832,0.523444,0.867511,0.727143,0.0563235,0.00251997,0.871201,0.318152,0.416226,0.779622,0.92753,0.67992,0.773909,0.692788,0.425543,0.503158,0.557209,0.410466,0.93544,0.402525,0.122867,0.348961,0.602503,0.0596596,0.732811,0.839153,0.248157,0.428877,0.54658,0.443649,0.875871,0.979686,0.0991224,0.350785,0.562503,0.398885,0.359453,0.2805,0.868001,0.794722,0.970179,0.395846,0.363264,0.213849,0.719589,0.0796453,0.638885,0.502897,0.555193,0.713911,0.0288425,0.77699,0.232988,0.539245,0.425924,0.73365,0.796254,0.032092,0.299701,0.00413799,0.633218,0.503781,0.907036,0.349726,0.752064,0.15413,0.0922156,0.990003,0.00329286,0.739301,0.599348,0.482189,0.390661,0.107678,0.670145,0.470054,0.0253078,0.881201,0.847482,0.644466,0.87894,0.425985,0.875701,0.751454,0.0370548,0.505798,0.488013,0.324963,0.370385,0.492884,0.798602,0.964925,0.396882,0.85493,0.448617,0.492222,0.469232,0.612119,0.9777,0.933024,0.573367,0.203001,0.249303,0.326074,0.244571,0.151237,0.770178,0.414231,0.32925,0.379233,0.493521,0.399982,0.753807,0.190427,0.0979056,0.763631,0.157544,0.946824,0.716638,0.842991,0.74079,0.777095,0.478533,0.134965,0.2759,0.129306,0.599571,0.574122,0.508053,0.410505,0.097204,0.968103,0.311353,0.814308,0.211747,0.963266,0.6079,0.41155,0.613869,0.932522,0.530366,0.416653,0.535754,0.32845,0.135432,0.440078,0.206581,0.0789418,0.796138,0.0225941,0.421352,0.526771,0.944617,0.64567,0.781349,0.778303,0.20606,0.8347,0.327435,0.875171,|0.211374,0.563488,0.836359,0.749851,0.0177422,0.56929,0.453534,0.946673,0.259361,0.336024,0.323542,0.88374,0.43299,0.282604,0.964066,0.394429,0.822175,0.206474,0.00449485,0.411831,0.625427,0.0396443,0.151129,0.42014,0.995456,0.0692413,0.253226,0.822251,0.330042,0.903116,0.677635,0.157224,0.184384,0.75453,0.590784,0.475019,0.824244,0.547501,0.0299917,0.971874,0.981525,0.349571,0.80665,0.737058,0.726128,0.488001,0.956723,0.499729,0.447363,0.340426,0.211928,0.92469,0.384613,0.258481,0.0818771,0.928258,0.245564,0.423443,0.669814,0.123382,0.0668831,0.499761,0.745069,0.731739,0.879924,0.0533251,0.00902885,0.728905,0.841335,0.922837,0.689485,0.364,0.0604111,0.100335,0.927063,0.872461,0.635579,0.768532,0.277161,0.250042,0.715111,0.723891,0.133712,0.584794,0.159916,0.722363,0.499421,0.335246,0.784818,0.863227,0.282226,0.734535,0.789011,0.901815,0.715204,0.838415,0.83052,0.360695,0.352699,0.410763,0.819613,0.843118,0.661303,0.773807,0.759846,0.153979,0.829286,0.0144168,0.672817,0.818529,0.272802,0.339548,0.116557,0.875464,0.875317,0.104769,0.0921794,0.463756,0.509004,0.5856,0.00362533,0.606177,0.236842,0.912496,0.227448,0.60207,0.719158,0.453868,0.540042,0.663975,0.627917,0.495846,0.182422,0.669063,0.977196,0.802599,0.474262,0.463888,0.120022,0.70448,0.505471,0.0985821,0.0449046,0.492648,0.287904,0.0669966,0.358609,0.0765971,0.488607,0.781091,3.91006e-05,0.480078,0.0779273,0.280663,0.450884,0.864811,0.228564,0.704663,0.228579,0.604973,0.8506,0.772844,0.0191277,0.994551,0.560236,0.938719,0.946322,0.837635,0.935869,0.300107,0.344914,0.0402008,0.0195873,0.698664,0.188353,0.560693,0.232243,0.81765,0.295527,0.804645,0.801029,0.657355,0.667234,0.453742,0.300601,0.622855,0.275779,0.181446,0.489441,0.87009,0.896991,0.267822,0.438161,0.432841,0.254155,0.901897,0.274278,0.829611,0.620361,0.29175,0.0733284,0.857429,0.789493,0.991818,0.0416127,0.123556,0.0518475,0.184986,0.316466,0.242172,0.6819,0.329938,0.214374,0.717142,0.143604,0.421902,0.368918,0.943198,0.435632,0.129434,0.0593905,0.469836,0.362653,0.283105,0.185344,0.331485,0.547524,0.798283,0.956242,0.645725,0.99825,0.0035516,0.90707,0.754797,0.201593,0.278427,0.156476,0.376742,0.062165,0.965233,0.802274,0.931829,0.518061,0.971748,0.849473,0.307065,0.723734,0.726559,0.0448483,0.697715,0.918052,0.666043,0.513538,0.416589,0.524096,0.0405052,0.367472,0.808919,0.420948,0.877506,0.954786,0.357781,0.64112,0.299878,0.435846,0.719201,0.28266,0.916172,0.283271,0.00400084,0.424248,0.817978,0.578687,0.647773,0.192392,0.514692,0.669896,0.921783,0.0382197,0.883777,0.591976,0.202606,0.229327,0.996713,0.744881,0.309052,0.0599155,0.046108,0.942899,0.337036,0.989884,0.994073,0.0074138,0.638006,0.3061,0.0734363,0.146547,0.871952,0.894834,0.403507,0.284974,0.50388,0.447009,0.754755,0.319541,0.947841,0.835256,0.315345,0.231892,0.236264,0.523288,0.902158,0.880729,0.125582,0.26382,0.451259,0.587953,0.656103,0.515816,0.770526,0.831894,0.203844,0.145282,0.372386,0.30663,0.2019,0.939406,0.291735,0.189198,0.393265,0.62771,0.455953,0.365669,0.493003,0.895106,0.694196,0.0939145,0.214706,0.54494,0.6696,0.1041,0.733874,0.0941991,0.787167,0.565767,0.813233,0.580265,0.0907694,0.368314,0.496707,0.418238,0.608249,0.433948,0.432522,0.703253,0.593529,0.826119,0.229768,0.961746,0.093521,0.8748,0.357738,0.285701,0.216525,0.223478,0.7442,0.106036,0.127882,0.547934,0.922701,0.89704,0.402128,0.574818,0.507935,0.0171169,0.885307,0.167296,0.238462,0.0250443,0.520649,0.786912,0.817042,0.860453,0.0460825,0.658724,0.246409,0.345844,0.0095728,0.0235826,0.73105,0.446472,0.339377,0.368564,0.0532181,0.361507,0.258803,0.880406,0.607625,0.806854,0.938858,0.78827,0.252746,0.244828,0.9441,0.557442,0.239654,0.549071,0.792569,0.736265,0.24998,0.511398,0.478637,0.736609,0.227763,0.0561187,0.0481043,0.337048,0.734316,0.4679,0.221138,0.975705,0.443574,0.0734851,0.562498,0.691203,0.17572,0.562664,0.226782,0.667098,0.791591,0.141815,0.825838,0.686221,0.280627,0.0175719,0.85304,0.373921,0.786283,0.592735,0.78272,0.406503,0.621787,0.883339,0.648403,0.982122,0.47823,0.167154,0.783136,0.609763,0.313121,0.311656,0.0671698,0.994131,0.231001,0.16878,0.898046,0.668879,0.904448,0.513356,0.435619,0.521628,0.826964,0.112035,0.702426,0.539527,0.971302,0.685799,0.900286,0.235338,0.183246,0.970635,0.7275,0.322273,0.0242475,0.397718,0.537722,0.766759,0.189994,0.00487947,0.378395,0.25492,0.571717,0.192198,0.772107,0.862441,0.436046,0.777039,0.670835,0.607449,0.601245,0.0785698,0.202414,0.208506,0.334311,0.551243,0.0269563,0.986228,0.511746,0.580184,0.935794,0.341462,0.70072,0.627367,0.236753,0.563752,0.194571,0.855296,0.619919,0.102539,0.167006,0.953299,0.982936,0.0269762,0.0631103,0.849729,0.556702,0.52153,0.515617,0.430222,0.676737,0.421166,0.349033,0.438356,0.987635,0.317086,0.688774,0.735989,0.969635,0.0551277,0.220248,0.612725,0.747233,0.768479,0.77444,0.970424,0.888817,0.11659,0.399003,0.505658,0.602574,0.281783,0.131501,0.850842,0.20276,0.177237,0.231285,0.941136,0.753325,0.131407,0.403436,0.834298,0.0870343,0.308499,0.942656,0.769303,0.467449,0.452381,0.416464,0.674142,0.729303,0.201313,0.899191,0.628243,0.889011,0.39288,0.702979,0.559844,0.0920413,0.250426,0.839172,0.28148,0.630296,0.596114,0.857179,0.929906,0.237426,0.0529426,0.171587,0.848535,0.220579,0.74786,0.665873,0.819399,0.546121,0.891457,0.358934,0.729623,0.0320565,0.612554,0.27813,0.810617,0.586604,0.0794655,0.761842,0.818623,0.173429,0.827398,0.138667,0.900744,0.710703,0.874732,0.950444,0.294464,0.362654,0.827365,0.0125924,0.163678,0.192889,0.421144,0.457269,0.362321,0.775455,0.0820321,0.540061,0.259887,0.907748,0.80841,0.317078,0.936094,0.254695,0.809065,0.631467,0.749291,0.668621,0.936497,0.67216,0.587721,0.868838,0.664735,0.542587,0.466211,0.223127,0.976433,0.43314,0.920611,0.0307014,0.698211,0.365149,0.54776,0.0265716,0.327104,0.0755538,0.0893074,0.0854952,0.462852,0.686767,0.669158,0.538361,0.378122,0.767513,0.993911,0.949927,0.688923,0.351656,0.972669,0.467433,0.357358,0.310737,0.528626,0.158084,0.443492,0.211472,0.867356,0.740359,0.360939,0.834247,0.196519,0.021426,0.906878,0.773994,0.320599,0.236032,0.458228,0.59893,0.915361,0.291726,0.299946,0.0793976,0.813234,0.574847,0.405358,0.807622,0.624851,0.494072,0.038057,0.215177,0.973066,0.393139,0.0593033,0.803629,0.0551022,0.706991,0.984638,0.506299,0.911508,0.253627,0.530961,0.553671,0.0280752,0.172841,0.958151,0.423328,0.780465,0.577871,0.831783,0.956555,0.0198596,0.859247,0.656142,0.0335339,0.104379,0.203122,0.169817,0.740439,0.40867,0.0507128,0.656473,0.890065,0.531992,0.791923,0.32739,0.420884,0.109373,0.63585,0.920588,0.0330646,0.281775,0.978962,0.347603,0.333784,0.379625,0.902983,0.237168,0.211523,0.651709,0.704691,0.431418,0.5186,0.269161,0.431856,0.212621,0.274009,0.893741,0.952746,0.563551,0.133326,0.440175,0.777991,0.340494,0.135357,0.161499,0.543591,0.0131786,0.626799,0.717238,0.999055,0.284577,0.0594038,0.462919,0.27256,0.493002,0.222799,0.0896537,0.608549,0.437777,0.832205,0.540561,0.254593,0.202176,0.137403,0.209288,0.731673,0.394549,0.719164,0.891244,0.0551569,0.0355808,0.697529,0.629764,0.420368,0.0853915,0.867164,0.521564,0.0218989,0.190393,0.756606,0.497651,0.246795,0.289391,0.196275,0.494441,0.668794,0.937601,0.727247,0.577653,0.95435,0.693974,0.848074,0.207995,0.72347,0.596699,0.500835,0.673759,0.86618,0.397046,0.581868,0.657173,0.352195,0.0660582,0.829597,0.710363,0.457181,0.342311,0.46266,0.960609,0.334114,0.240172,0.173132,0.101203,0.684166,0.544826,0.0061748,0.0530049,0.667045,0.564565,0.695542,0.755857,0.905082,0.337556,0.989207,0.655233,0.0520545,0.25791,0.00742209,0.793875,0.752793,0.26158,0.0595985,0.304471,0.8428,0.27338,0.254108,0.591706,0.0467598,0.821779,0.849147,0.187506,0.931644,0.136243,0.0554237,0.706635,0.0847556,0.894332,0.113002,0.634648,0.344167,0.0583546,0.0672714,0.388907,0.89155,0.960615,0.672247,0.12061,0.754098,0.781889,0.309148,0.570878,0.486988,0.530109,0.363952,0.530857,0.471843,0.283723,0.0831265,0.533232,0.724055,0.909027,0.706042,0.86025,0.40696,0.633197,0.735419,0.767737,0.331385,0.214207,0.32194,0.124906,0.791937,0.193451,0.439219,0.133834,0.896038,0.765598,0.519502,0.562484,0.826836,0.794794,0.918532,0.24744,0.0534653,0.822956,0.794235,0.760492,0.517218,0.798153,0.706508,0.395589,0.163899,0.669315,0.767773,0.0343118,0.696177,0.930611,0.948599,0.607214,0.0820894,0.318242,0.285259,0.929776,0.197209,0.435366,0.970347,0.905436,0.373755,0.285097,0.615628,0.223296,0.721357,0.441413,0.121912,0.123102,0.871076,0.115718,0.829473,0.21233,0.234308,0.30979,0.777979,0.976104,0.297031,0.419784,0.811902,0.490838,0.907054,0.760936,0.229804,0.183734,0.291333,0.245287,0.745444,0.164735,0.999777,0.443684,0.216331,0.51965,0.547816,0.409421,0.779467,0.359449,0.700996,0.859724,0.276519,0.792441,0.255341,0.699597,0.609463,0.772008,0.767515,0.127614,0.43896,0.247373,0.565708,0.034702,0.637914,0.95216,0.297835,0.783145,0.757571,0.612163,0.498525,0.681396,0.535128,0.00208223,0.420402,0.146639,0.00927079,0.0195479,0.592068,0.0292118,0.462088,0.00449282,0.761235,0.193614,0.650691,0.722436,0.610059,0.439457,0.207997,0.315419,0.888909,|0.947604,0.32641,0.396762,0.00600672,0.502156,0.362461,0.408254,0.769356,0.024687,0.788821,0.162388,0.871695,0.617335,0.509758,0.592502,0.705873,0.26541,0.372915,0.512337,0.230537,0.164663,0.1689,0.879395,0.735174,0.545537,0.422357,0.041568,0.90487,0.321071,0.719124,0.775034,0.745912,0.576688,0.651781,0.685993,0.551863,0.259029,0.43954,0.371782,0.907015,0.33648,0.553381,0.381411,0.911592,0.830483,0.575081,0.583459,0.96402,0.747308,0.907159,0.20115,0.0886497,0.599864,0.486926,0.725739,0.156956,0.862403,0.565866,0.964571,0.170411,0.624209,0.573647,0.430209,0.927075,0.993726,0.51859,0.742048,0.130591,0.914468,0.738179,0.272653,0.018349,0.29103,0.613202,0.503853,0.783896,0.446885,0.574347,0.381394,0.191781,0.930865,0.954698,0.898108,0.590921,0.399604,0.956869,0.0754573,0.00429666,0.327085,0.313482,0.519274,0.744103,0.975222,0.218838,0.902986,0.888407,0.360203,0.499892,0.951991,0.972028,0.740051,0.0622647,0.942402,0.594509,0.849787,0.462658,0.639621,0.690614,0.67903,0.6514,0.703448,0.474879,0.745878,0.30094,0.693452,0.930578,0.61123,0.199485,0.867348,0.569078,0.643413,0.945962,0.389577,0.888372,0.175346,0.0141563,0.649131,0.317538,0.970313,0.426542,0.839444,0.127996,0.281181,0.955063,0.0466288,0.219026,0.439795,0.209639,0.276752,0.116577,0.296146,0.902324,0.351134,0.176042,0.219631,0.209488,0.930171,0.657021,0.497523,0.0687636,0.986304,0.427031,0.896335,0.562868,0.538624,0.554237,0.184125,0.208426,0.992061,0.606252,0.79786,0.577213,0.0859314,0.385402,0.727244,0.437234,0.435479,0.0416107,0.0535069,0.693986,0.111942,0.758841,0.406882,0.407352,0.734815,0.690895,0.367063,0.0653147,0.964432,0.554545,0.56606,0.163599,0.217256,0.538315,0.226234,0.427264,0.0406187,0.201956,0.277294,0.584081,0.651045,0.542629,0.774878,0.735456,0.136931,0.748966,0.95359,0.813364,0.104278,0.716052,0.540566,0.496086,0.391857,0.506188,0.14639,0.047246,0.720869,0.768404,0.487524,0.854335,0.441599,0.240759,0.110464,0.739719,0.242603,0.025842,0.694121,0.591475,0.491172,0.349251,0.928825,0.511122,0.669684,0.554549,0.960958,0.171226,0.433636,0.593852,0.771686,0.285592,0.615244,0.822682,0.808662,0.260353,0.373095,0.955482,0.58033,0.587711,0.804922,0.355226,0.193687,0.287357,0.765235,0.774673,0.879475,0.216695,0.642039,0.860661,0.467514,0.751255,0.107319,0.675256,0.557059,0.496594,0.177486,0.272297,0.369932,0.757132,0.720276,0.0848293,0.622945,0.0439879,0.96051,0.105128,0.638084,0.700371,0.234174,0.553593,0.367306,0.969431,0.975014,0.222116,0.681962,0.860309,0.461998,0.843509,0.371168,0.286927,0.549766,0.440143,0.63882,0.769969,0.355705,0.382892,0.637103,0.573451,0.0109481,0.594864,0.750913,0.236061,0.347044,0.873081,0.558276,0.876767,0.538211,0.00789976,0.423544,0.364018,0.845229,0.754892,0.0666697,0.0660513,0.825268,0.101978,0.5693,0.219438,0.0173811,0.399724,0.606988,0.753374,0.171617,0.20937,0.475712,0.451576,0.441209,0.726243,0.304585,0.819072,0.963652,0.60905,0.599649,0.82654,0.237951,0.304496,0.480725,0.779614,0.0786886,0.250646,0.907915,0.841743,0.8612,0.549171,0.661838,0.434452,0.283479,0.1884,0.858675,0.579895,0.00147706,0.628339,0.220829,0.507925,0.205143,0.501321,0.285801,0.416047,0.0959832,0.716103,0.987511,0.794766,0.025371,0.178598,0.256346,0.401883,0.761858,0.558663,0.925492,0.609488,0.701408,0.0499735,0.288418,0.281058,0.628848,0.195596,0.761459,0.816567,0.201204,0.00993943,0.953553,0.30643,0.57089,0.992927,0.880144,0.0264316,0.458807,0.90497,0.432303,0.614786,0.798608,0.679698,0.135344,0.776745,0.724165,0.366861,0.162451,0.379764,0.808977,0.969593,0.343479,0.723734,0.859291,0.335414,0.341975,0.245195,0.87007,0.719831,0.835961,0.0396845,0.813932,0.283717,0.339048,0.632975,0.943933,0.360053,0.709889,0.569833,0.196349,0.237725,0.754318,0.578389,0.829887,0.845897,0.294059,0.572731,0.850954,0.951397,0.829096,0.0386384,0.5642,0.410905,0.96278,0.0409099,0.561874,0.531398,0.759797,0.0612791,0.304084,0.848204,0.215968,0.803992,0.625411,0.0111111,0.507902,0.954617,0.17571,0.24327,0.0641075,0.519489,0.560501,0.332534,0.861104,0.899951,0.50542,0.850329,0.272716,0.0213316,0.790632,0.0183098,0.715766,0.083938,0.816611,0.96423,0.200761,0.73425,0.192323,0.383376,0.194953,0.416418,0.979246,0.588616,0.704169,0.488084,0.136351,0.79571,0.415546,0.0185476,0.940898,0.953673,0.324658,0.215617,0.784952,0.372241,0.215155,0.720788,0.214669,0.803781,0.70822,0.0341388,0.847155,0.244838,0.586325,0.625186,0.968855,0.438565,0.0616432,0.397864,0.156918,0.846866,0.919852,0.173949,0.293421,0.500718,0.822903,0.69226,0.900385,0.138113,0.502581,0.839075,0.687345,0.184099,0.73133,0.945398,0.125529,0.293709,0.963323,0.472473,0.0318629,0.195076,0.61556,0.442131,0.864336,0.626597,0.586373,0.0524396,0.66388,0.430108,0.0275278,0.96722,0.168388,0.769002,0.795273,0.0401825,0.667009,0.597245,0.846917,0.0884104,0.717371,0.364925,0.666152,0.44077,0.240289,0.0706987,0.42836,0.882226,0.756857,0.540703,0.498076,0.308112,0.38382,0.479134,0.205581,0.660937,0.245739,0.432062,0.699033,0.965925,0.834395,0.44574,0.287342,0.339576,0.80966,0.85234,0.334408,0.266263,0.961936,0.06831,0.422979,0.576533,0.088959,0.16883,0.278072,0.16889,0.411823,0.81233,0.103371,0.717432,0.134152,0.826865,0.531457,0.508735,0.61556,0.94534,0.598019,0.207098,0.638898,0.216577,0.852048,0.99727,0.927706,0.401941,0.960484,0.0611507,0.539759,0.0725873,0.350712,0.331999,0.942857,0.578941,0.738997,0.988996,0.171822,0.809225,0.540467,0.0740718,0.547869,0.765359,0.950316,0.426987,0.441994,0.0102847,0.872906,0.225282,0.084295,0.305365,0.409247,0.0392808,0.805376,0.964698,0.513919,0.595671,0.35078,0.571918,0.973328,0.893775,0.914342,0.297536,0.852144,0.552101,0.408841,0.635327,0.255029,0.177141,0.596789,0.83937,0.204995,0.69167,0.532167,0.430538,0.608368,0.648543,0.398016,0.287573,0.264174,0.625628,0.04331,0.945669,0.920928,0.978771,0.754501,0.750581,0.544845,0.946027,0.705075,0.046931,0.895178,0.601167,0.949562,0.636357,0.964658,0.00234336,0.337198,0.350327,0.289474,0.42794,0.290359,0.831941,0.101309,0.392116,0.751517,0.194456,0.286379,0.402541,0.440659,0.911851,0.377928,0.266378,0.874281,0.996719,0.373509,0.969901,0.102885,0.800685,0.31575,0.651266,0.172396,0.299264,0.949306,0.743508,0.595153,0.595054,0.28372,0.0438572,0.133951,0.0123547,0.460797,0.86251,0.163049,0.308902,0.519434,0.554795,0.0880108,0.697186,0.598025,0.743776,0.563158,0.301276,0.840762,0.150552,0.359376,0.718212,0.768018,0.185664,0.163306,0.932267,0.604216,0.226105,0.505001,0.765977,0.286869,0.518854,0.228999,0.18305,0.583582,0.940752,0.632472,0.18355,0.802892,0.359006,0.932025,0.958556,0.549424,0.805098,0.393414,0.484339,0.812516,0.399142,0.791169,0.412088,0.350097,0.738238,0.104217,0.489165,0.877077,0.808272,0.575851,0.975203,0.984632,0.201417,0.379834,0.942007,0.78962,0.6294,0.171818,0.8248,0.681881,0.225032,0.6564,0.158323,0.726651,0.502972,0.552239,0.83245,0.803708,0.0670199,0.959808,0.12805,0.892823,0.893172,0.344168,0.850943,0.0587968,0.0128549,0.425854,0.266825,0.671927,0.622843,0.445971,0.773601,0.964017,0.885944,0.594724,0.983978,0.0387734,0.27659,0.268843,0.0648335,0.396592,0.132912,0.898039,0.169972,0.215044,0.802833,0.927357,0.54797,0.126015,0.668223,0.806103,0.677163,0.713179,0.564666,0.576845,0.534141,0.524551,0.731854,0.613084,0.253941,0.738451,0.894872,0.167268,0.89239,0.571147,0.203741,0.587245,0.373721,0.939493,0.572806,0.483539,0.371726,0.245996,0.589542,0.0714675,0.423034,0.926102,0.735832,0.539856,0.816026,0.0967938,0.766143,0.501533,0.138483,0.812348,0.00556344,0.940134,0.592197,0.970064,0.394779,0.00941104,0.342436,0.806049,0.496336,0.672677,0.720717,0.276608,0.534378,0.0259742,0.310178,0.672649,0.333104,0.994902,0.673136,0.394239,0.212451,0.834636,0.298746,0.59088,0.241212,0.20777,0.907659,0.980363,0.780849,0.332215,0.744226,0.52198,0.839407,0.176545,0.404795,0.37658,0.976839,0.150151,0.430183,0.867396,0.267679,0.506941,0.584872,0.180931,0.178279,0.0164044,0.0519335,0.156777,0.0845199,0.856406,0.219391,0.877434,0.243564,0.543541,0.275333,0.442339,0.487001,0.908805,0.650382,0.152827,0.259239,0.635504,0.360507,0.452726,0.914062,0.200864,0.691614,0.193433,0.966867,0.307776,0.837948,0.270508,0.386504,0.209215,0.202466,0.206856,0.869058,0.851302,0.569395,0.125369,0.208846,0.143833,0.746057,0.402252,0.127242,0.0916387,0.960236,0.900991,0.0624961,0.66644,0.46141,0.966434,0.16271,0.548907,0.751165,0.464996,0.709511,0.333194,0.587104,0.479765,0.211771,0.942289,0.181612,0.466155,0.277746,0.565921,0.594388,0.191472,0.12931,0.620797,0.668747,0.462,0.26311,0.883685,0.727648,0.827087,0.330999,0.384407,0.628811,0.170248,0.239156,0.947672,0.783978,0.825163,0.71467,0.625439,0.299666,0.51572,0.834409,0.506857,0.936635,0.766057,0.60801,0.164352,0.457126,0.376522,0.924237,0.240295,0.979769,0.424618,0.0131751,0.285622,0.0356516,0.344103,0.343765,0.603744,0.785779,0.315402,0.0439379,0.216272,0.0302967,0.800957,0.726199,0.448864,0.801413,0.0648971,0.0222315,0.312768,0.951937,0.0812101,0.564749,0.997714,0.704121,0.253329,0.722827,0.346726,0.32793,0.878282,0.229305,0.0246766,0.685408,0.260847,0.845398,0.263777,0.786175,0.948987,0.359954,0.927043,0.434551,|0.111081,0.00827432,0.884626,0.859934,0.37498,0.773541,0.148133,0.703197,0.559637,0.591466,0.111456,0.7234,0.858331,0.373814,0.716683,0.672388,0.342334,0.12232,0.949778,0.871432,0.682674,0.797378,0.0511094,0.0337901,0.0770469,0.232414,0.303311,0.571449,0.72854,0.22393,0.608219,0.441763,0.182101,0.82327,0.956905,0.980749,0.398524,0.416992,0.375849,0.232805,0.905876,0.190894,0.46391,0.890962,0.991479,0.661519,0.041795,0.524103,0.703408,0.265522,0.414968,0.130417,0.537196,0.49004,0.239145,0.779396,0.232248,0.293353,0.284572,0.276455,0.215904,0.563575,0.325469,0.109593,0.550413,0.687274,0.528194,0.850067,0.865446,0.307785,0.249289,0.367118,0.0533488,0.980262,0.203713,0.569944,0.272992,0.213236,0.190941,0.693375,0.749715,0.808541,0.792402,0.787994,0.948084,0.885632,0.534201,0.581278,0.906846,0.870535,0.909931,0.615354,0.402359,0.918746,0.341855,0.636233,0.454805,0.610079,0.056016,0.718391,0.92283,0.183421,0.876159,0.284636,0.0143713,0.972853,0.517057,0.424093,0.231809,0.570963,0.380411,0.898802,0.784391,0.270977,0.768532,0.817242,0.489074,0.154197,0.467218,0.741781,0.162459,0.996312,0.962684,0.430725,0.605971,0.633689,0.892376,0.461192,0.528677,0.868852,0.0564491,0.120848,0.380737,0.865088,0.381668,0.38302,0.549173,0.220019,0.894405,0.465897,0.244393,0.0449331,0.32134,0.217238,0.0263296,0.681561,0.416597,0.460078,0.344601,0.921262,0.959465,0.456398,0.504904,0.367035,0.787764,0.61505,0.730416,0.712061,0.0564852,0.835057,0.354362,0.846374,0.798857,0.722245,0.858779,0.253308,0.304103,0.464338,0.931145,0.509137,0.387364,0.0681799,0.537291,0.866048,0.60105,0.557967,0.209103,0.268035,0.618963,0.946941,0.900341,0.981006,0.263964,0.477671,0.60025,0.908244,0.340086,0.864567,0.875968,0.425021,0.409148,0.0314315,0.667577,0.368084,0.724826,0.401091,0.921048,0.0958,0.906096,0.936507,0.492665,0.767761,0.750993,0.312932,0.329373,0.0613994,0.442741,0.468502,0.110268,0.741054,0.419735,0.986652,0.321628,0.555117,0.722582,0.292381,0.95158,0.974796,0.582493,0.611716,0.62689,0.177161,0.871952,0.6077,0.441508,0.140076,0.521087,0.884342,0.8649,0.851218,0.0939871,0.834489,0.990523,0.71672,0.0761826,0.318424,0.926811,0.789593,0.943853,0.155059,0.613155,0.205372,0.477039,0.0671376,0.510498,0.693383,0.216386,0.0294717,0.548915,0.980536,0.213986,0.196802,0.541545,0.962127,0.125717,0.878474,0.0601596,0.609284,0.550206,0.955402,0.875057,0.564666,0.782136,0.506037,0.102306,0.981721,0.215637,0.470745,0.622717,0.890572,0.555921,0.679209,0.462371,0.452989,0.500455,0.196329,0.706452,0.41422,0.694771,0.427515,0.865878,0.227867,0.649071,0.801593,0.447916,0.482619,0.217448,0.921858,0.138068,0.451615,0.869054,0.390894,0.447272,0.675081,0.990698,0.531208,0.373667,0.652125,0.266453,0.193269,0.44982,0.00668144,0.354072,0.302727,0.0618722,0.290254,0.0931658,0.251968,0.379399,0.38542,0.499086,0.678994,0.490283,0.672477,0.769074,0.931136,0.9212,0.810324,0.227461,0.804223,0.846835,0.360197,0.0886907,0.993938,0.198803,0.824885,0.157175,0.410943,0.256436,0.509941,0.409174,0.732618,0.638399,0.969036,0.461044,0.953985,0.502855,0.167468,0.131328,0.892346,0.934464,0.345766,0.00991917,0.738555,0.062497,0.567344,0.167478,0.93136,0.784651,0.565686,0.734087,0.681681,0.741855,0.969817,0.566112,0.241671,0.98315,0.228722,0.429237,0.880687,0.139614,0.32812,0.278896,0.895401,0.110169,0.859688,0.141743,0.43188,0.308563,0.0584137,0.576067,0.6151,0.856906,0.483994,0.0053193,0.504781,0.678431,0.190258,0.185903,0.556482,0.226687,0.700483,0.66947,0.981618,0.24375,0.56413,0.943127,0.651754,0.52364,0.601169,0.551885,0.462811,0.720586,0.100642,0.841599,0.956499,0.566503,0.228158,0.0906108,0.201411,0.0810301,0.0407492,0.352328,0.617798,0.0255883,0.311725,0.461257,0.559237,0.143318,0.382547,0.826303,0.748103,0.0531251,0.862965,0.884998,0.472151,0.488566,0.365464,0.700864,0.418886,0.941147,0.332102,0.837737,0.893708,0.530512,0.196277,0.7964,0.955273,0.15307,0.919211,0.742355,0.0279233,0.448435,0.478815,0.443566,0.736089,0.161514,0.474926,0.286268,0.922564,0.772617,0.272241,0.490424,0.39732,0.238255,0.406478,0.642115,0.462449,0.986919,0.243578,0.736507,0.364182,0.484113,0.404059,0.923708,0.757483,0.747776,0.559618,0.844235,0.503756,0.105044,0.202067,0.790735,0.528879,0.325129,0.863437,0.594556,0.675616,0.155073,0.420543,0.879557,0.688273,0.219254,0.510517,0.995843,0.0552257,0.575847,0.649056,0.0720609,0.575119,0.0332676,0.991445,0.302741,0.960497,0.397762,0.454229,0.0368702,0.257167,0.673732,0.37224,0.775749,0.114929,0.38064,0.294482,0.286682,0.246357,0.705218,0.27594,0.118216,0.0161499,0.714913,0.282626,0.807014,0.818971,0.734453,0.390433,0.853627,0.653516,0.306512,0.279317,0.196059,0.675618,0.479,0.126401,0.865064,0.152351,0.548294,0.575249,0.674974,0.162436,0.978561,0.585597,0.00987333,0.695325,0.814274,0.339538,0.0152138,0.819533,0.638174,0.565902,0.362686,0.441611,0.0300397,0.88586,0.785755,0.467539,0.860135,0.0394279,0.781046,0.042718,0.126414,0.419939,0.917673,0.679784,0.0919669,0.580023,0.29502,0.497073,0.148004,0.591052,0.684395,0.960379,0.322857,0.47224,0.697315,0.375415,0.306096,0.268299,0.473559,0.295637,0.616592,0.750792,0.985413,0.981163,0.830231,0.307804,0.869072,0.616191,0.264698,0.702868,0.2307,0.488547,0.777423,0.992893,0.118091,0.314022,0.933469,0.248655,0.707337,0.42325,0.18091,0.479475,0.753929,0.934654,0.257047,0.147347,0.049156,0.133904,0.248697,0.218857,0.187695,0.47876,0.0270722,0.669939,0.62955,0.0834795,0.393413,0.349998,0.124326,0.840697,0.753971,0.225208,0.945112,0.0277448,0.388489,0.573138,0.581408,0.536373,0.816313,0.521487,0.93899,0.879688,0.923612,0.45137,0.926866,0.155396,0.759895,0.0908029,0.411066,0.340672,0.497282,0.927394,0.672215,0.385348,0.208115,0.098096,0.345308,0.510433,0.345125,0.576769,0.283819,0.443399,0.214718,0.512803,0.810755,0.440508,0.537297,0.695317,0.411275,0.226339,0.585771,0.663016,0.785986,0.878358,0.805406,0.282633,0.856643,0.091848,0.856994,0.942038,0.568311,0.213677,0.595149,0.831022,0.281483,0.295612,0.421235,0.503879,0.625569,0.781925,0.779172,0.115719,0.550282,0.579076,0.657201,0.574769,0.833889,0.394915,0.964182,0.898688,0.779962,0.58755,0.0572511,0.417228,0.661672,0.0323563,0.618566,0.510386,0.914805,0.605707,0.36699,0.240689,0.00605547,0.646036,0.540028,0.66586,0.470996,0.169558,0.244636,0.85436,0.136247,0.231541,0.499058,0.104342,0.512112,0.059979,0.215504,0.134115,0.183193,0.929893,0.250932,0.495303,0.577408,0.85862,0.56378,0.68237,0.0335372,0.149236,0.416416,0.402434,0.554148,0.241359,0.873408,0.383381,0.328682,0.272897,0.850508,0.54051,0.577788,0.464245,0.227166,0.217837,0.836785,0.477603,0.999529,0.687485,0.542521,0.625218,0.898933,0.153803,0.774966,0.922861,0.742574,0.35358,0.488082,0.380139,0.245463,0.190376,0.376172,0.424356,0.623838,0.996521,0.298872,0.431459,0.0190559,0.404824,0.408988,0.774277,0.929277,0.745294,0.944727,0.800306,0.922919,0.478727,0.622405,0.17348,0.227789,0.697646,0.381152,0.831154,0.612247,0.524734,0.575721,0.212435,0.686164,0.54463,0.0273743,0.735351,0.0164832,0.525423,0.0734902,0.714611,0.566952,0.639065,0.150417,0.734982,0.786287,0.580104,0.867088,0.710845,0.62784,0.337633,0.47428,0.675062,0.925422,0.84768,0.14234,0.0964642,0.800959,0.610471,0.397244,0.103285,0.42742,0.0716255,0.826101,0.908388,0.831887,0.445115,0.752906,0.326364,0.1862,0.790189,0.277584,0.736794,0.814874,0.569867,0.256798,0.437876,0.933284,0.0350665,0.365959,0.901969,0.901938,0.67523,0.616932,0.733683,0.43214,0.974179,0.603285,0.0924875,0.0724401,0.297194,0.626113,0.456613,0.0868607,0.733431,0.883276,0.873763,0.710668,0.34111,0.726882,0.205638,0.607391,0.813111,0.488728,0.178032,0.642765,0.719684,0.155832,0.200368,0.788371,0.230616,0.554433,0.73094,0.0334832,0.402918,0.0670119,0.485987,0.0614526,0.392585,0.760746,0.897357,0.682144,0.199987,0.48259,0.719244,0.12345,0.0299419,0.0152883,0.906834,0.861023,0.345815,0.996354,0.61922,0.907448,0.898964,0.828167,0.352874,0.927724,0.90864,0.581499,0.358786,0.333698,0.188627,0.498104,0.458159,0.760021,0.379061,0.167492,0.432422,0.889909,0.556755,0.587198,0.130239,0.00659448,0.898435,0.91494,0.376763,0.132707,0.615241,0.464494,0.184117,0.991049,0.0562544,0.45386,0.649663,0.363789,0.561996,0.720489,0.722503,0.369293,0.269359,0.294573,0.828396,0.303366,0.335566,0.311577,0.131691,0.254235,0.411357,0.661404,0.194274,0.492593,0.926222,0.822502,0.910303,0.969949,0.355556,0.845744,0.989955,0.828084,0.788997,0.074065,0.602421,0.86963,0.0711828,0.0741736,0.964411,0.0332341,0.0965438,0.119672,0.597868,0.382557,0.238303,0.649418,0.615166,0.85302,0.0195145,0.0511844,0.189999,0.960801,0.562989,0.735904,0.731449,0.414131,0.526273,0.165109,0.656648,0.167422,0.490681,0.365203,0.575628,0.972377,0.931826,0.128572,0.199192,0.390846,0.0914718,0.719419,0.70805,0.403294,0.671138,0.774317,0.0552888,0.776411,0.152571,0.0201141,0.133642,0.456277,0.0365096,0.817931,0.779688,0.617442,0.0740904,0.907746,0.840003,0.894513,0.937051,0.436403,0.930665,0.997647,0.263134,0.14194,0.369281,0.278578,0.0156384,0.620653,0.316224,0.54569,0.371721,0.211991,0.51592,0.294524,0.486321,0.61508,0.96186,0.530901,0.315995,0.114547,0.594106,|0.101325,0.0597427,0.45433,0.636887,0.922002,0.0500079,0.698627,0.354711,0.922823,0.424517,0.188001,0.792167,0.12817,0.459817,0.0989227,0.497832,0.216124,0.538582,0.769773,0.103764,0.291317,0.948283,0.105404,0.197345,0.86959,0.967971,0.030943,0.376153,0.142941,0.51017,0.939261,0.484107,0.128406,0.399127,0.996637,0.9198,0.689889,0.279703,0.688829,0.479105,0.044528,0.358924,0.222402,0.655473,0.162886,0.992921,0.165873,0.679443,0.775832,0.696039,0.928652,0.0619383,0.515804,0.958542,0.612969,0.564777,0.502289,0.357907,0.550696,0.76823,0.310749,0.091131,0.659909,0.494717,0.762763,0.037472,0.0135425,0.5339,0.834785,0.392566,0.311072,0.247251,0.917357,0.518895,0.047877,0.604982,0.563326,0.746016,0.849115,0.189928,0.205649,0.974144,0.803398,0.61382,0.518457,0.453832,0.72159,0.459831,0.287285,0.533742,0.981692,0.87652,0.184125,0.510774,0.565586,0.44506,0.454744,0.676147,0.547148,0.487571,0.313661,0.0807569,0.29059,0.283443,0.350088,0.103999,0.507931,0.109249,0.269514,0.886347,0.520398,0.176807,0.818919,0.943522,0.323435,0.648733,0.353485,0.0640137,0.0277635,0.677015,0.508771,0.593562,0.367353,0.316436,0.173651,0.477937,0.599902,0.990413,0.253302,0.902365,0.0218884,0.479099,0.494512,0.702531,0.176118,0.742638,0.922282,0.770257,0.540487,0.95789,0.642491,0.198755,0.296531,0.103086,0.681863,0.139279,0.758379,0.693384,0.330629,0.142139,0.782775,0.788427,0.304708,0.0242472,0.193246,0.844949,0.200954,0.660463,0.450235,0.676339,0.169537,0.629298,0.754832,0.994861,0.437925,0.294653,0.961465,0.706401,0.456589,0.909137,0.240425,0.888753,0.128688,0.870943,0.337284,0.566937,0.741711,0.267242,0.329487,0.39813,0.577118,0.82773,0.638693,0.42339,0.885691,0.630426,0.966347,0.415372,0.851922,0.414706,0.164967,0.991787,0.595703,0.349516,0.593531,0.214833,0.609652,0.0122805,0.778014,0.0192364,0.149872,0.430705,0.711797,0.10415,0.776338,0.736087,0.0318203,0.714755,0.864199,0.589786,0.535701,0.848878,0.599114,0.838376,0.706714,0.194373,0.548495,0.0852806,0.218388,0.736143,0.312839,0.459832,0.148995,0.0567995,0.461987,0.236866,0.165309,0.256697,0.904346,0.501108,0.0477628,0.618672,0.0800825,0.809003,0.344174,0.933765,0.844976,0.257757,0.072766,0.685706,0.102523,0.222242,0.393723,0.787392,0.176525,0.13135,0.00165039,0.0963316,0.183177,0.465237,0.720311,0.847359,0.253032,0.337716,0.47436,0.67962,0.825328,0.588437,0.847235,0.0237045,0.305525,0.308674,0.743369,0.658801,0.797315,0.128391,0.293867,0.0738636,0.0527294,0.092634,0.274922,0.0480018,0.186142,0.306799,0.807498,0.797521,0.0748023,0.451318,0.213384,0.0181664,0.178321,0.416426,0.759051,0.257795,0.051479,0.925556,0.548942,0.855198,0.323916,0.364486,0.154276,0.874147,0.0712625,0.665482,0.768179,0.791139,0.611064,0.0822923,0.696902,0.835388,0.277261,0.179157,0.0344658,0.828416,0.289934,0.799733,0.519952,0.149154,0.104119,0.389144,0.666316,0.275797,0.320952,0.213884,0.0948384,0.973131,0.163319,0.243623,0.357928,0.302918,0.623349,0.0806406,0.648155,0.613829,0.109794,0.0864714,0.858503,0.165308,0.95012,0.734313,0.107195,0.463369,0.745534,0.339478,0.219007,0.0419962,0.327707,0.410505,0.613694,0.178618,0.101856,0.047112,0.532484,0.806211,0.780114,0.561661,0.301391,0.915633,0.539157,0.823967,0.232604,0.797815,0.0405841,0.99715,0.693755,0.74591,0.175071,0.857541,0.50198,0.241461,0.269585,0.0982639,0.468935,0.852812,0.564068,0.684275,0.233468,0.971486,0.20699,0.319447,0.989801,0.86257,0.419988,0.0923052,0.929899,0.860017,0.242572,0.738421,0.907165,0.087435,0.143081,0.514162,0.658468,0.796973,0.0977294,0.547482,0.691197,0.945672,0.728058,0.233611,0.341012,0.451498,0.625587,0.654959,0.704027,0.922993,0.044731,0.200054,0.0524198,0.130956,0.590332,0.431334,0.925718,0.0620871,0.924857,0.636482,0.117526,0.366753,0.865185,0.880252,0.0277726,0.0208546,0.982004,0.0203284,0.954138,0.170594,0.638039,0.881345,0.704366,0.610582,0.845566,0.979336,0.418894,0.763369,0.589225,0.227587,0.175166,0.862038,0.178842,0.834587,0.173079,0.478865,0.0577005,0.40773,0.31719,0.980576,0.333096,0.805535,0.809567,0.719112,0.480102,0.182553,0.327769,0.424275,0.511711,0.583031,0.395698,0.748522,0.580979,0.244253,0.818402,0.0159546,0.663824,0.329786,0.578805,0.246585,0.212072,0.328487,0.250629,0.691056,0.333315,0.608601,0.298068,0.00914955,0.767228,0.103365,0.0459636,0.0153391,0.254629,0.488606,0.600078,0.699145,0.75678,0.560091,0.662721,0.301184,0.664648,0.274846,0.213193,0.789392,0.0818673,0.255706,0.910304,0.454067,0.266334,0.208389,0.48184,0.287871,0.623454,0.637642,0.95735,0.15712,0.0877066,0.259398,0.046447,0.4584,0.247335,0.651228,0.824277,0.0502609,0.81574,0.733118,0.980644,0.930377,0.299594,0.64015,0.48403,0.177525,0.42959,0.771827,0.578821,0.242691,0.975348,0.139116,0.833484,0.0242183,0.0793967,0.881262,0.0988618,0.94963,0.273507,0.259531,0.00526166,0.531275,0.279624,0.0382037,0.280291,0.544648,0.34087,0.535201,0.105666,0.0645713,0.167475,0.227867,0.923393,0.632115,0.933222,0.774364,0.488843,0.599663,0.705226,0.835874,0.545594,0.331456,0.144618,0.814555,0.803975,0.108279,0.979319,0.721111,0.332766,0.909093,0.905533,0.857666,0.853659,0.27025,0.51898,0.0624419,0.854151,0.59153,0.785298,0.855483,0.424815,0.95853,0.664266,0.704579,0.364035,0.744532,0.120946,0.614967,0.439887,0.133805,0.321838,0.673895,0.673538,0.011044,0.117865,0.862406,0.609241,0.652483,0.376098,0.161885,0.532231,0.492891,0.203541,0.266538,0.805588,0.109609,0.236342,0.392577,0.703359,0.281963,0.526983,0.846737,0.655768,0.41336,0.784155,0.0569912,0.0654448,0.504728,0.882147,0.572254,0.329095,0.388209,0.836019,0.870457,0.603768,0.646188,0.456298,0.709208,0.598697,0.246454,0.0781854,0.569483,0.635931,0.106921,0.524922,0.621017,0.278898,0.298867,0.0995076,0.267107,0.336671,0.736237,0.287476,0.954328,0.952776,0.922037,0.801537,0.59947,0.36156,0.107673,0.8942,0.791482,0.792302,0.725972,0.859478,0.291835,0.980761,0.260903,0.41956,0.14344,0.902033,0.203533,0.83165,0.347049,0.873984,0.880366,0.469138,0.048273,0.221826,0.759742,0.894408,0.754464,0.426944,0.295986,0.40694,0.109104,0.290559,0.505074,0.283488,0.328205,0.466827,0.279809,0.770893,0.129516,0.172195,0.837043,0.631868,0.61379,0.976475,0.820882,0.723881,0.0130707,0.0201778,0.42741,0.781951,0.106216,0.645646,0.0281496,0.429172,0.844616,0.916498,0.969663,0.865494,0.805572,0.99146,0.733612,0.693258,0.621419,0.780682,0.0484242,0.75447,0.98537,0.629114,0.208333,0.412729,0.363253,0.0332522,0.829244,0.834664,0.508933,0.716836,0.297711,0.170549,0.551351,0.794734,0.413293,0.271622,0.3837,0.264381,0.148553,0.223259,0.989806,0.156872,0.119997,0.777449,0.617811,0.333444,0.899938,0.652278,0.845423,0.431452,0.201823,0.326926,0.989236,0.842594,0.392309,0.376493,0.541495,0.40474,0.947847,0.983377,0.818799,0.9182,0.478946,0.456255,0.648516,0.220859,0.151305,0.0522941,0.18434,0.597848,0.301316,0.866692,0.864232,0.670958,0.643861,0.805496,0.993521,0.890461,0.58713,0.97793,0.394283,0.983015,0.782479,0.432377,0.189489,0.515948,0.3746,0.529351,0.688535,0.76507,0.287936,0.539063,0.09446,0.392884,0.14078,0.946551,0.193106,0.90033,0.110813,0.853723,0.484889,0.528333,0.00587434,0.570572,0.610897,0.185769,0.382984,0.289862,0.360079,0.347437,0.57314,0.69228,0.125091,0.532384,0.734765,0.093025,0.745041,0.767007,0.360028,0.225139,0.627356,0.740408,0.676806,0.535316,0.676966,0.0135349,0.639234,0.783364,0.71665,0.0432929,0.727376,0.363876,0.529084,0.539369,0.704713,0.37087,0.862639,0.704273,0.838056,0.270143,0.183686,0.356497,0.947207,0.767943,0.400274,0.302087,0.503716,0.288997,0.266917,0.694206,0.638048,0.259654,0.426319,0.0442718,0.0459823,0.126492,0.39965,0.0872187,0.892688,0.300627,0.459588,0.734561,0.443052,0.485829,0.97101,0.469184,0.814518,0.648025,0.36394,0.495142,0.581814,0.908992,0.378469,0.125763,0.407143,0.167302,0.193196,0.333873,0.182303,0.713305,0.432301,0.00236678,0.925839,0.807963,0.729269,0.496261,0.0188936,0.711908,0.784042,0.547344,0.0643056,0.243059,0.761861,0.654361,0.81422,0.116575,0.257247,0.792815,0.903338,0.405019,0.287524,0.0654386,0.581327,0.76447,0.835471,0.675481,0.93566,0.673832,0.727984,0.057642,0.171935,0.9245,0.10651,0.964748,0.745048,0.189745,0.509084,0.813158,0.00687057,0.375615,0.0987613,0.209199,0.455407,0.614448,0.917728,0.371331,0.572251,0.586504,0.686867,0.0936701,0.741312,0.324428,0.341611,0.407025,0.0135663,0.818037,0.164426,0.777804,0.0600441,0.372437,0.758453,0.455115,0.570843,0.809985,0.0264394,0.436855,0.0052138,0.913121,0.61463,0.613972,0.643823,0.360636,0.963656,0.269226,0.00992495,0.702035,0.216419,0.81378,0.690215,0.757844,0.690263,0.249167,0.0427722,0.252193,0.318076,0.757658,0.409156,0.403609,0.283165,0.440777,0.269008,0.360316,0.431393,0.994291,0.714935,0.062994,0.936819,0.437648,0.635207,0.464647,0.50481,0.796606,0.644284,0.421572,0.177675,0.32531,0.806166,0.574037,0.791762,0.178008,0.723291,0.611406,0.143306,0.133281,0.774279,0.3433,0.0230557,0.582633,0.38219,0.267389,0.473802,0.722136,0.711873,0.488949,0.0733771,0.186486,0.0971688,0.654723,0.294653,0.932938,0.9393,0.260987,0.140186,0.251021,0.269519,0.27493,0.0534757,0.701334,0.785676,0.703296,0.856471,0.976022,0.272365,0.605554,0.786229,0.135197,0.263619,|0.510883,0.696026,0.0663669,0.29394,0.266958,0.361918,0.0143901,0.286942,0.910339,0.848377,0.228622,0.881557,0.741347,0.160978,0.428417,0.365805,0.680458,0.329991,0.0201146,0.553266,0.649576,0.476202,0.230396,0.698137,0.691458,0.739797,0.488674,0.712984,0.973077,0.161721,0.843227,0.813726,0.706156,0.669274,0.139046,0.488816,0.439354,0.338927,0.394167,0.954034,0.602839,0.39855,0.877066,0.313384,0.511605,0.947761,0.30068,0.784737,0.956379,0.128336,0.120251,0.187062,0.173531,0.231115,0.000663519,0.585839,0.460627,0.629441,0.765939,0.254433,0.231007,0.602227,0.146545,0.63518,0.873765,0.238655,0.0421433,0.00144833,0.0260903,0.111035,0.998057,0.319044,0.374576,0.603423,0.95385,0.0341785,0.475864,0.216197,0.287201,0.633721,0.0537612,0.370942,0.322554,0.998715,0.204416,0.853898,0.405113,0.167558,0.335416,0.673338,0.276939,0.879897,0.539391,0.6714,0.66414,0.849679,0.4085,0.343296,0.16498,0.498384,0.0386364,0.971411,0.0135978,0.37518,0.849005,0.535872,0.813314,0.10449,0.0496163,0.773431,0.0672567,0.919172,0.0327845,0.864315,0.620262,0.0936375,0.712962,0.0372989,0.707949,0.424709,0.721622,0.422606,0.43782,0.272528,0.00193143,0.838754,0.0522095,0.981818,0.826707,0.875845,0.694758,0.446813,0.848671,0.320523,0.567267,0.503873,0.741001,0.06551,0.915103,0.972551,0.168265,0.980743,0.363021,0.128919,0.314501,0.637269,0.588392,0.838746,0.768766,0.182,0.575284,0.51355,0.129271,0.2502,0.807739,0.957881,0.179656,0.521726,0.0754359,0.765175,0.780449,0.104024,0.719909,0.746206,0.917157,0.600926,0.101331,0.105855,0.0220408,0.398202,0.248352,0.0192435,0.707883,0.591688,0.246962,0.667265,0.991077,0.498057,0.620322,0.648629,0.489686,0.477435,0.586716,0.980824,0.447641,0.630256,0.188957,0.850427,0.966193,0.699982,0.600667,0.37259,0.560086,0.930689,0.46014,0.769817,0.945249,0.0812194,0.657234,0.639604,0.843136,0.596545,0.834451,0.745045,0.449439,0.998729,0.918245,0.900906,0.980307,0.687211,0.692744,0.994314,0.134626,0.797784,0.721488,0.39782,0.618433,0.37069,0.559276,0.487208,0.470059,0.146486,0.514383,0.632807,0.933184,0.808521,0.225808,0.0974331,0.0232512,0.0564144,0.789142,0.625216,0.360659,0.349352,0.430653,0.716018,0.64226,0.805339,0.460616,0.394163,0.261075,0.19497,0.854971,0.88586,0.0209557,0.840935,0.573545,0.407457,0.307833,0.426256,0.193886,0.673845,0.118618,0.480718,0.0343913,0.411825,0.239095,0.694888,0.16973,0.143456,0.971994,0.435358,0.183556,0.333933,0.982485,0.609312,0.246454,0.537671,0.872115,0.172129,0.111334,0.753426,0.613892,0.0223636,0.569548,0.935589,0.555821,0.0481781,0.0392007,0.997817,0.106406,0.0032047,0.453589,0.227046,0.370729,0.433188,0.0528424,0.843783,0.746051,0.273982,0.0793241,0.44575,0.473753,0.882876,0.831365,0.353528,0.331403,0.329597,0.918298,0.060986,0.557652,0.219822,0.846956,0.279025,0.642934,0.33651,0.482383,0.633956,0.0598707,0.966897,0.511924,0.555925,0.051801,0.966181,0.251565,0.203726,0.0410766,0.478533,0.0835936,0.155937,0.25394,0.125491,0.856072,0.621551,0.689152,0.588115,0.369672,0.0808836,0.0181726,0.415827,0.395661,0.97425,0.998861,0.363585,0.919808,0.388303,0.309888,0.0381975,0.239021,0.354734,0.628221,0.580748,0.228271,0.119078,0.198587,0.58273,0.174038,0.745024,0.642131,0.0299599,0.075455,0.123981,0.523753,0.0925435,0.22906,0.59598,0.180537,0.765874,0.0403432,0.70991,0.540496,0.110971,0.372957,0.990801,0.774657,0.196324,0.531834,0.767246,0.632089,0.168763,0.399822,0.202117,0.0875921,0.992005,0.171219,0.851797,0.281884,0.512483,0.780243,0.744745,0.410323,0.671451,0.385888,0.883624,0.264089,0.270192,0.818134,0.201863,0.733921,0.226742,0.139864,0.957477,0.249292,0.142326,0.454073,0.5245,0.592226,0.799664,0.42122,0.670946,0.732712,0.259622,0.0741897,0.0589315,0.604543,0.987251,0.900022,0.282706,0.567973,0.85331,0.12561,0.366469,0.991333,0.909207,0.0834663,0.975075,0.094368,0.0748007,0.487917,0.0665385,0.62309,0.855506,0.105484,0.285344,0.324927,0.661867,0.30987,0.299819,0.671376,0.960958,0.155244,0.160036,0.930592,0.820576,0.885833,0.608795,0.0823501,0.48732,0.00653249,0.369858,0.286044,0.870128,0.344383,0.363798,0.136621,0.813297,0.711226,0.257947,0.0996458,0.998867,0.361543,0.549002,0.406682,0.817967,0.964851,0.809484,0.962505,0.114456,0.355915,0.276384,0.0228016,0.544474,0.867205,0.748045,0.923174,0.479158,0.134036,0.111582,0.865065,0.116938,0.998985,0.0582079,0.37233,0.0638274,0.569773,0.251948,0.824816,0.471154,0.196968,0.392973,0.87336,0.491523,0.402761,0.543015,0.348716,0.953154,0.247534,0.556311,0.64944,0.158993,0.9916,0.520505,0.0662159,0.441763,0.738816,0.255422,0.179107,0.00571674,0.557878,0.665009,0.559693,0.118439,0.195196,0.647264,0.530275,0.705914,0.998222,0.579498,0.964575,0.33397,0.281736,0.738716,0.375629,0.635288,0.204443,0.362847,0.42678,0.577673,0.715872,0.927828,0.416824,0.260496,0.819872,0.275875,0.582096,0.650061,0.777064,0.643523,0.180301,0.823398,0.453502,0.0115007,0.116531,0.681749,0.34407,0.0483642,0.208714,0.130821,0.909633,0.27298,0.356803,0.198438,0.77064,0.0687112,0.0768369,0.936187,0.185772,0.918414,0.454318,0.0769969,0.998815,0.414517,0.36155,0.255797,0.653718,0.453021,0.379364,0.671195,0.192533,0.0160474,0.553233,0.884199,0.380848,0.606447,0.263091,0.0787504,0.567132,0.681368,0.0439363,0.71965,0.379685,0.0677419,0.866964,0.0850727,0.567696,0.490116,0.791532,0.0727275,0.277785,0.472391,0.500562,0.104157,0.508606,0.811413,0.189048,0.575485,0.621759,0.588574,0.112705,0.239844,0.637136,0.87822,0.438936,0.106874,0.546506,0.726919,0.197804,0.0825185,0.543559,0.0863466,0.623714,0.22961,0.459127,0.479526,0.267896,0.964921,0.614823,0.835035,0.746529,0.83976,0.947081,0.460922,0.806487,0.584865,0.743961,0.0857192,0.233221,0.117296,0.630178,0.00228739,0.629724,0.337415,0.281164,0.340204,0.165045,0.796531,0.630874,0.29129,0.355175,0.974908,0.448948,0.231,0.529395,0.887341,0.987021,0.651067,0.934334,0.0973163,0.346157,0.136313,0.713311,0.675651,0.581839,0.434611,0.728894,0.393002,0.621685,0.324789,0.257001,0.12416,0.652922,0.158905,0.806165,0.246635,0.998834,0.0375919,0.261464,0.105729,0.191575,0.314078,0.450806,0.374402,0.0967395,0.26749,0.112406,0.768963,0.234335,0.344433,0.364213,0.973012,0.76884,0.866681,0.283953,0.266687,0.0174832,0.531978,0.656754,0.0859632,0.198576,0.50224,0.816776,0.760489,0.139383,0.654967,0.692508,0.770278,0.992812,0.914163,0.755949,0.0066458,0.630089,0.875657,0.422519,0.83924,0.959371,0.226547,0.788646,0.722815,0.72163,0.715463,0.541083,0.618367,0.668949,0.987723,0.999195,0.746813,0.411633,0.571524,0.0496727,0.635469,0.518267,0.160877,0.914956,0.172499,0.6217,0.308127,0.831422,0.363775,0.501261,0.234844,0.705567,0.738672,0.1169,0.336792,0.752149,0.219467,0.301017,0.104268,0.313241,0.62438,0.903428,0.178477,0.528855,0.631444,0.373078,0.143657,0.540569,0.269174,0.295053,0.410279,0.77424,0.373098,0.66907,0.958243,0.0494135,0.396619,0.705655,0.447627,0.694045,0.122548,0.110883,0.193788,0.736696,0.123446,0.508339,0.0024783,0.948659,0.381123,0.230696,0.135418,0.350725,0.0882892,0.379892,0.743782,0.918479,0.571357,0.741802,0.950201,0.674627,0.9894,0.329058,0.407454,0.0973125,0.212069,0.654959,0.460723,0.609929,0.698596,0.80707,0.555117,0.527149,0.859611,0.519319,0.55791,0.360239,0.578097,0.986699,0.459759,0.0683106,0.726841,0.508379,0.958425,0.682776,0.0977412,0.152615,0.985621,0.189428,0.471597,0.905744,0.0694242,0.847719,0.764523,0.219978,0.184806,0.691259,0.0927098,0.842373,0.277836,0.396912,0.479533,0.501,0.412953,0.905497,0.507398,0.319859,0.970543,0.0774539,0.139834,0.924964,0.281877,0.128853,0.877019,0.660904,0.642324,0.27717,0.437156,0.255516,0.0958952,0.792498,0.709569,0.249021,0.222899,0.398838,0.655308,0.311233,0.886744,0.52508,0.910678,0.833202,0.435503,0.116054,0.678722,0.269926,0.579739,0.488588,0.483989,0.406602,0.871612,0.377729,0.234837,0.926964,0.303372,0.550053,0.400999,0.643051,0.013442,0.231374,0.0327514,0.338775,0.191565,0.666478,0.713655,0.0137515,0.969945,0.844917,0.519632,0.210628,0.533625,0.218459,0.43455,0.215163,0.107599,0.858127,0.10149,0.464649,0.48645,0.211069,0.140986,0.63109,0.912538,0.86398,0.771335,0.203057,0.571573,0.799257,0.527573,0.99945,0.15211,0.329522,0.207098,0.273922,0.233494,0.454927,0.544693,0.102981,0.148981,0.257835,0.179038,0.989853,0.44494,0.367606,0.627349,0.980009,0.129564,0.0769081,0.184762,0.504629,0.271196,0.473653,0.814571,0.908654,0.456302,0.330813,0.266505,0.278226,0.634929,0.924508,0.522144,0.372346,0.174523,0.826863,0.325387,0.564619,0.82146,0.0387145,0.642196,0.850286,0.000604033,0.388369,0.527576,0.535657,0.412298,0.0474632,0.786567,0.127765,0.819188,0.502527,0.738229,0.0465997,0.273055,0.349397,0.526219,0.896325,0.967295,0.337088,0.173799,0.565326,0.35436,0.922211,0.834527,0.274152,0.839921,0.666865,0.140812,0.923891,0.262919,0.114576,0.323966,0.995629,0.0932284,0.353355,0.237607,0.119787,0.322143,0.213493,0.621891,0.155481,0.621808,0.540117,0.00724661,0.0181307,0.177778,0.620291,0.907765,0.68322,0.527981,0.586736,0.277878,0.540287,0.442633,0.785391,0.109699,0.626768,0.198139,0.0532106,0.555119,0.187687,0.518036,0.0988313,0.548909,0.187958,0.292949,0.262968,0.334252,0.243469,0.444409,0.342533,0.468875,0.0473824,0.450332,|0.0837138,0.2768,0.700865,0.681652,0.13772,0.832435,0.279356,0.611532,0.0895509,0.860181,0.699311,0.342656,0.380476,0.807214,0.126409,0.889241,0.330067,0.682615,0.794627,0.255642,0.830252,0.59406,0.0966874,0.0670153,0.400982,0.158745,0.240181,0.47478,0.78433,0.391539,0.543269,0.52146,0.516781,0.347159,0.427376,0.0366028,0.588507,0.0593114,0.320884,0.782356,0.249823,0.113043,0.912827,0.577624,0.877017,0.892822,0.473144,0.713248,0.474645,0.37237,0.673258,0.384606,0.172764,0.0313395,0.485638,0.446192,0.28772,0.0889304,0.547148,0.339616,0.785212,0.468413,0.982181,0.243267,0.654387,0.0484519,0.644662,0.480342,0.819819,0.396201,0.267012,0.112215,0.0803459,0.13381,0.661393,0.869954,0.495136,0.0827451,0.0328466,0.747436,0.721629,0.312414,0.882678,0.378502,0.141418,0.156919,0.60426,0.755776,0.536623,0.131325,0.797535,0.308935,0.145458,0.443705,0.340673,0.974476,0.829518,0.391534,0.100793,0.103038,0.230794,0.390673,0.411628,0.617272,0.0984374,0.185477,0.704251,0.837535,0.2018,0.360022,0.365815,0.463307,0.958323,0.75589,0.374864,0.079464,0.11724,0.0419117,0.520521,0.335811,0.00365287,0.258567,0.287296,0.378142,0.661796,0.202974,0.241366,0.235182,0.61128,0.22482,0.093894,0.0439017,0.687373,0.124056,0.512667,0.204949,0.251214,0.377453,0.243584,0.675241,0.0659662,0.992836,0.615843,0.619462,0.850715,0.901619,0.33147,0.597672,0.782013,0.221686,0.802384,0.373825,0.0951506,0.279702,0.555125,0.283318,0.581243,0.826677,0.4434,0.0319509,0.415246,0.238767,0.453363,0.774592,0.928065,0.773187,0.109486,0.524347,0.00613004,0.347587,0.415804,0.780419,0.980263,0.344316,0.994532,0.245287,0.70097,0.744109,0.941808,0.785325,0.625886,0.42912,0.978746,0.191082,0.123739,0.991318,0.695195,0.135222,0.345502,0.786846,0.926589,0.121153,0.570575,0.240447,0.176984,0.542203,0.939943,0.1701,0.0618185,0.711553,0.385132,0.868454,0.731023,0.292094,0.0606285,0.904026,0.684982,0.600581,0.699199,0.895993,0.38835,0.699229,0.877064,0.190216,0.894418,0.0966239,0.332651,0.570417,0.0829558,0.991669,0.347317,0.081188,0.571027,0.668804,0.242041,0.962671,0.435057,0.233419,0.429894,0.731579,0.504893,0.772068,0.0759076,0.751245,0.957173,0.263004,0.171996,0.267318,0.552845,0.311692,0.335791,0.245788,0.394308,0.576509,0.364851,0.951617,0.452198,0.412963,0.462518,0.653713,0.908846,0.365235,0.457445,0.50583,0.215486,0.130293,0.863129,0.924656,0.878977,0.774615,0.909144,0.465125,0.786202,0.677567,0.78723,0.78861,0.282046,0.901617,0.645096,0.0394897,0.305169,0.966618,0.59908,0.383822,0.102841,0.194989,0.700657,0.0585808,0.0595425,0.865697,0.861372,0.79569,0.931109,0.19896,0.528658,0.245998,0.146944,0.927554,0.617302,0.43698,0.610909,0.532168,0.996634,0.998979,0.382415,0.564249,0.109639,0.312626,0.658544,0.971479,0.176901,0.334684,0.444901,0.758865,0.074286,0.985973,0.64971,0.775688,0.987124,0.266165,0.122435,0.440507,0.21149,0.990474,0.842789,0.61807,0.543049,0.942189,0.316507,0.442061,0.384848,0.0503799,0.161447,0.728098,0.62955,0.729179,0.978938,0.278933,0.883657,0.372554,0.676134,0.0710583,0.606182,0.536849,0.716331,0.250022,0.106626,0.435355,0.0199789,0.789073,0.676552,0.891617,0.0267895,0.5712,0.715603,0.412333,0.0485817,0.319993,0.686957,0.494401,0.149167,0.75833,0.571343,0.559593,0.558517,0.867422,0.523002,0.443454,0.0625106,0.403947,0.392677,0.0119749,0.475425,0.716055,0.990245,0.426092,0.297228,0.964523,0.645439,0.570618,0.749408,0.762697,0.204121,0.35025,0.234654,0.18568,0.263803,0.308302,0.962839,0.322833,0.242137,0.852375,0.497122,0.00287497,0.51074,0.502027,0.448427,0.655847,0.558763,0.392036,0.771234,0.194166,0.922962,0.323785,0.228057,0.137219,0.71188,0.701582,0.979302,0.785969,0.417897,0.881935,0.00758165,0.122248,0.486358,0.857584,0.556389,0.00260371,0.86972,0.9604,0.0482526,0.496518,0.745719,0.984604,0.984019,0.820885,0.963157,0.331805,0.203153,0.139587,0.197972,0.724187,0.0776602,0.295257,0.795163,0.875537,0.261093,0.5658,0.153744,0.375876,0.674947,0.48698,0.792057,0.627723,0.846594,0.308198,0.458134,0.666621,0.607812,0.387192,0.980676,0.90997,0.39322,0.738413,0.00410271,0.7387,0.0200099,0.739803,0.539984,0.0438718,0.540209,0.148976,0.704999,0.0280275,0.462932,0.773969,0.793435,0.500406,0.219643,0.576393,0.325438,0.2171,0.842079,0.0647978,0.805977,0.705087,0.723769,0.660416,0.0840201,0.443657,0.904659,0.778103,0.34336,0.270307,0.91865,0.674113,0.800444,0.0382353,0.0889894,0.739622,0.998473,0.601476,0.575836,0.83254,0.712765,0.249296,0.0429837,0.941622,0.875329,0.120372,0.764237,0.818793,0.694274,0.493397,0.200148,0.568151,0.449049,0.927909,0.996022,0.0919044,0.637678,0.788567,0.838477,0.192036,0.452939,0.620894,0.961258,0.138687,0.122072,0.0403246,0.761566,0.985255,0.640897,0.588778,0.637949,0.370683,0.776231,0.926422,0.0645093,0.466824,0.128941,0.640861,0.81403,0.0953063,0.822342,0.688545,0.773021,0.593439,0.597,0.596362,0.662985,0.290117,0.947315,0.790375,0.154384,0.454191,0.217886,0.907935,0.0151259,0.327385,0.739765,0.191553,0.236714,0.819782,0.406268,0.702518,0.259156,0.314453,0.381793,0.0695781,0.962574,0.0738942,0.667421,0.257661,0.684013,0.203936,0.154841,0.881271,0.474208,0.00359911,0.807366,0.557824,0.930459,0.803505,0.176088,0.718304,0.308611,0.757545,0.191406,0.437872,0.578804,0.02715,0.393665,0.186247,0.71485,0.231183,0.681911,0.559425,0.918213,0.0757477,0.72143,0.945476,0.30188,0.20148,0.870348,0.067009,0.656653,0.416504,0.687741,0.304069,0.675739,0.793347,0.92819,0.0776727,0.526356,0.684676,0.761286,0.671259,0.86592,0.913534,0.74168,0.643099,0.656329,0.145702,0.265831,0.240138,0.424338,0.680914,0.13294,0.949856,0.639596,0.920812,0.656555,0.801412,0.811001,0.309653,0.529453,0.275675,0.636298,0.73222,0.625283,0.484789,0.33028,0.0534355,0.834395,0.428066,0.871371,0.370994,0.39349,0.259231,0.635517,0.983985,0.202886,0.632713,0.882209,0.233048,0.876671,0.909417,0.889195,0.575705,0.535735,0.394632,0.302184,0.583691,0.69037,0.146894,0.744719,0.200787,0.582053,0.571184,0.59827,0.368417,0.977005,0.0771663,0.131173,0.12701,0.241129,0.348125,0.649394,0.799176,0.519802,0.63513,0.305972,0.238155,0.712624,0.381153,0.79176,0.542971,0.0515902,0.924781,0.461347,0.601294,0.854058,0.0866356,0.277026,0.983946,0.632522,0.376492,0.0594691,0.432465,0.328024,0.241346,0.0961307,0.871844,0.352104,0.826702,0.381744,0.980883,0.291821,0.168919,0.399375,0.338111,0.038853,0.0236169,0.977755,0.0143728,0.0214056,0.388543,0.00894397,0.759973,0.693276,0.0160823,0.67873,0.543759,0.849768,0.375881,0.455119,0.762246,0.942464,0.974915,0.136696,0.330393,0.99403,0.212264,0.444757,0.283585,0.705004,0.803958,0.843573,0.435715,0.157126,0.0567772,0.757011,0.157127,0.555908,0.567896,0.371642,0.188063,0.499472,0.735635,0.991177,0.780389,0.775956,0.0421075,0.72923,0.328233,0.0165217,0.40002,0.692435,0.687659,0.947885,0.543088,0.194701,0.877763,0.139889,0.870929,0.741831,0.000971258,0.0231802,0.614936,0.879397,0.747757,0.250829,0.215592,0.743796,0.65315,0.994866,0.660618,0.164779,0.836199,0.388813,0.386303,0.711012,0.534039,0.603018,0.578618,0.838493,0.128187,0.372949,0.862899,0.115207,0.308755,0.168491,0.496072,0.231627,0.209824,0.563675,0.652026,0.609642,0.234415,0.277939,0.609761,0.219712,0.0710097,0.939884,0.94822,0.16364,0.777686,0.587535,0.845563,0.377106,0.999505,0.0374818,0.934666,0.545439,0.845555,0.916204,0.848516,0.406214,0.716916,0.533907,0.327903,0.548542,0.859115,0.0836856,0.116141,0.61615,0.630228,0.802656,0.445589,0.698898,0.224301,0.872595,0.206126,0.678417,0.439667,0.514979,0.7116,0.97782,0.497152,0.185714,0.0492393,0.00771689,0.288903,0.918671,0.844102,0.177908,0.173195,0.367752,0.699526,0.834004,0.562882,0.426217,0.567332,0.341719,0.975552,0.238914,0.24386,0.119275,0.528177,0.811369,0.632356,0.384687,0.240514,0.574599,0.72271,0.359844,0.249605,0.070365,0.854344,0.0366414,0.154135,0.999411,0.537619,0.775221,0.512896,0.612166,0.346248,0.542615,0.497554,0.467166,0.321356,0.862019,0.153536,0.350196,0.337336,0.0272618,0.0946711,0.0222615,0.464949,0.592926,0.507171,0.200581,0.102817,0.234095,0.45481,0.143494,0.451065,0.463,0.0537408,0.311546,0.397579,0.60842,0.0388218,0.845713,0.69678,0.727942,0.201893,0.238719,0.787381,0.372652,0.309431,0.0169377,0.020986,0.245274,0.475178,0.832219,0.267518,0.291535,0.780631,0.980962,0.612681,0.792984,0.975743,0.998814,0.91126,0.518769,0.963003,0.702767,0.552058,0.205752,0.660339,0.631444,0.357557,0.442463,0.145963,0.716659,0.625394,0.503427,0.0920189,0.552663,0.338066,0.119427,0.668287,0.1302,0.977877,0.08709,0.244478,0.54488,0.224297,0.322353,0.664493,0.650365,0.212703,0.869972,0.389205,0.776384,0.855541,0.976211,0.240146,0.211072,0.315006,0.180034,0.421405,0.0123241,0.556737,0.0365714,0.012054,0.592832,0.176649,0.838768,0.767344,0.809084,0.194903,0.922856,0.446724,0.858306,0.562332,0.60653,0.856721,0.361005,0.955944,0.924342,0.271188,0.000761032,0.415934,0.507211,0.290756,0.698575,0.214357,0.986757,0.131723,0.888889,0.287783,0.443037,0.28654,0.661393,0.422778,0.967838,0.00400871,0.0125895,0.397453,0.7949,0.548293,0.803978,0.0613988,0.447202,0.125369,0.79659,0.474422,0.104708,0.112122,0.203001,0.640424,0.386367,0.281701,0.750335,0.156341,0.477613,0.520197,|0.253142,0.4297,0.296718,0.965732,0.297568,0.10724,0.980928,0.761943,0.767923,0.348943,0.445033,0.472051,0.334522,0.80632,0.843251,0.901006,0.611958,0.18606,0.659663,0.867076,0.0284949,0.583444,0.919314,0.582809,0.779539,0.501094,0.230643,0.311102,0.873528,0.584902,0.282681,0.615789,0.931994,0.473936,0.205925,0.933126,0.545224,0.971158,0.854922,0.661787,0.176943,0.933735,0.19255,0.00194246,0.639258,0.296554,0.513994,0.182007,0.421501,0.24989,0.0477673,0.953525,0.650523,0.233775,0.392217,0.272275,0.438634,0.18068,0.918686,0.0612131,0.164117,0.61428,0.614314,0.337751,0.572696,0.0424571,0.439616,0.604943,0.987539,0.903887,0.8559,0.129736,0.348985,0.0310336,0.252609,0.316,0.810879,0.930182,0.230133,0.0540342,0.103569,0.687834,0.415298,0.165521,0.821032,0.63811,0.920926,0.857167,0.959755,0.844495,0.507466,0.651276,0.869712,0.477404,0.86316,0.391113,0.54178,0.998632,0.249555,0.902529,0.0967686,0.887515,0.172752,0.557577,0.444055,0.693437,0.593429,0.151285,0.303934,0.239253,0.763457,0.332479,0.59341,0.833061,0.128464,0.602816,0.925136,0.875971,0.0956247,0.436049,0.248529,0.43011,0.822151,0.951516,0.0412216,0.190684,0.996678,0.540708,0.510622,0.889622,0.576754,0.316821,0.529723,0.771351,0.103009,0.468922,0.286548,0.210274,0.886531,0.954083,0.00921732,0.644432,0.448429,0.499734,0.211095,0.345287,0.687639,0.0370831,0.74596,0.314823,0.968722,0.89787,0.896358,0.0764755,0.556476,0.621973,0.590687,0.204835,0.283163,0.82082,0.237301,0.606933,0.00514913,0.594984,0.885189,0.582465,0.769102,0.305973,0.190994,0.275986,0.382003,0.916569,0.705342,0.540421,0.106433,0.627734,0.191158,0.812176,0.876988,0.223847,0.165077,0.00580567,0.916466,0.714942,0.722669,0.270482,0.434142,0.47491,0.316756,0.788901,0.420679,0.114318,0.202873,0.908122,0.454225,0.889959,0.589476,0.773496,0.775054,0.440184,0.108363,0.373663,0.0674965,0.412303,0.886222,0.993582,0.528463,0.947708,0.754696,0.185782,0.508857,0.910301,0.882363,0.411846,0.971927,0.797023,0.109053,0.0860388,0.836355,0.896643,0.50813,0.457112,0.611588,0.663123,0.594851,0.149596,0.340169,0.729715,0.984463,0.243164,0.731105,0.436817,0.783388,0.948693,0.530867,0.306099,0.575252,0.979797,0.733054,0.724514,0.740735,0.378535,0.73341,0.0223725,0.859943,0.554948,0.499721,0.582991,0.833413,0.950724,0.95496,0.0939545,0.413297,0.541242,0.555843,0.0384441,0.634632,0.878158,0.474837,0.0204133,0.917141,0.147708,0.831004,0.702516,0.393096,0.995811,0.475088,0.74185,0.672894,0.395611,0.294942,0.0418419,0.966151,0.268185,0.481448,0.102965,0.80544,0.827988,0.848064,0.608761,0.338105,0.805412,0.888525,0.242136,0.50014,0.811013,0.601487,0.97802,0.687543,0.840414,0.243503,0.949155,0.788754,0.847917,0.7471,0.892081,0.938619,0.337755,0.765535,0.436473,0.779713,0.958172,0.523971,0.347465,0.370843,0.144427,0.4652,0.80802,0.653425,0.794529,0.795238,0.78521,0.0235633,0.126028,0.799356,0.807788,0.241734,0.309267,0.421757,0.817925,0.650939,0.175758,0.365796,0.00224656,0.785097,0.0254553,0.203391,0.369101,0.907724,0.0394216,0.341222,0.835208,0.351464,0.144992,0.145054,0.190189,0.854583,0.694112,0.282631,0.0797049,0.961489,0.511187,0.0688695,0.849708,0.846828,0.145634,0.861274,0.617073,0.787746,0.963726,0.172476,0.704928,0.718124,0.353168,0.218485,0.781888,0.665078,0.524472,0.698398,0.947006,0.4703,0.611476,0.920424,0.936447,0.47419,0.861044,0.712672,0.929326,0.751984,0.939711,0.0805967,0.476365,0.875311,0.708606,0.209862,0.203249,0.636787,0.482915,0.695196,0.605916,0.614011,0.279101,0.106466,0.509109,0.70303,0.913082,0.998927,0.932695,0.268967,0.565367,0.884706,0.3664,0.0913051,0.670422,0.043439,0.429585,0.570119,0.0745111,0.172151,0.679965,0.539918,0.968178,0.0785715,0.362529,0.0593554,0.171743,0.0256461,0.432212,0.667691,0.888889,0.587761,0.163383,0.590366,0.685534,0.0335906,0.17843,0.377129,0.513808,0.675731,0.954112,0.386955,0.24766,0.372411,0.341866,0.726715,0.0845932,0.127936,0.74731,0.616441,0.79866,0.551555,0.5135,0.933105,0.217463,0.951855,0.382467,0.0194974,0.0825959,0.634929,0.955324,0.84345,0.347003,0.0753982,0.609679,0.17019,0.765301,0.254211,0.159422,0.417284,0.794817,0.608031,0.65749,0.308058,0.717912,0.0898706,0.993744,0.914338,0.778084,0.304327,0.342396,0.234651,0.247336,0.554025,0.240468,0.0979423,0.930987,0.304566,0.783261,0.0940039,0.536663,0.117399,0.436403,0.874767,0.912895,0.272678,0.327638,0.534861,0.0513898,0.273274,0.603091,0.298283,0.147415,0.466677,0.598767,0.748255,0.985756,0.130102,0.478206,0.29082,0.504974,0.859289,0.807296,0.0702887,0.819304,0.504445,0.893494,0.827119,0.582943,0.313174,0.145093,0.990835,0.886741,0.482911,0.362594,0.130378,0.528288,0.588967,0.431133,0.956168,0.287956,0.244214,0.501673,0.727715,0.0738011,0.378168,0.301698,0.451229,0.217579,0.226794,0.229878,0.344845,0.400674,0.0974486,0.313504,0.701245,0.844132,0.213298,0.994232,0.242861,0.209804,0.914551,0.493323,0.50721,0.558663,0.176459,0.511396,0.946892,0.204833,0.685083,0.976,0.469494,0.887419,0.99212,0.434343,0.634077,0.968307,0.0651211,0.673058,0.230272,0.937585,0.415048,0.993799,0.22386,0.619337,0.815018,0.741207,0.579206,0.845496,0.437324,0.8086,0.11764,0.745935,0.232832,0.391218,0.433747,0.00168556,0.0601048,0.968843,0.597933,0.633077,0.920847,0.166546,0.322271,0.0323996,0.0106727,0.796231,0.114969,0.409591,0.414545,0.505441,0.255201,0.0593993,0.400217,0.382568,0.415851,0.733519,0.766809,0.200542,0.586237,0.208939,0.511299,0.0945526,0.0419102,0.908003,0.643122,0.904256,0.674693,0.21273,0.0481643,0.0656135,0.7952,0.916761,0.91936,0.96404,0.952293,0.931935,0.582028,0.732269,0.300092,0.82369,0.53265,0.0383411,0.384215,0.951531,0.363161,0.488143,0.924408,0.839153,0.325441,0.181758,0.862389,0.715953,0.890656,0.342853,0.442751,0.512079,0.0352048,0.366027,0.708986,0.834874,0.551847,0.439676,0.417944,0.174004,0.312857,0.552039,0.66438,0.833041,0.110126,0.563985,0.5658,0.264867,0.915396,0.367876,0.360539,0.371752,0.0132138,0.439908,0.524455,0.516052,0.826007,0.143803,0.735439,0.914112,0.726607,0.627929,0.484243,0.300185,0.347093,0.753113,0.185617,0.602504,0.640456,0.27047,0.980569,0.889165,0.0852814,0.229273,0.146184,0.653208,0.892444,0.106853,0.611887,0.47782,0.780413,0.530522,0.666809,0.269014,0.402375,0.444156,0.960544,0.965883,0.37919,0.812265,0.605003,0.0226269,0.356489,0.220305,0.388728,0.183751,0.80235,0.926069,0.92346,0.368341,0.71242,0.830826,0.373404,0.0748581,0.881323,0.261273,0.827546,0.176015,0.691677,0.225309,0.0303138,0.122389,0.350495,0.161206,0.698654,0.449263,0.163778,0.485763,0.119601,0.0203492,0.548925,0.254969,0.582653,0.191016,0.464188,0.778787,0.47185,0.126271,0.897893,0.309042,0.0417764,0.0385384,0.881459,0.105847,0.98527,0.0160807,0.391118,0.874515,0.843608,0.969531,0.211833,0.465853,0.751254,0.414586,0.0887746,0.781565,0.544429,0.392332,0.855266,0.56916,0.59454,0.921698,0.0442083,0.706427,0.728149,0.880677,0.384527,0.468772,0.601251,0.130197,0.293972,0.0335091,0.628867,0.0467283,0.782139,0.171991,0.902979,0.190261,0.186471,0.316813,0.92713,0.945615,0.152192,0.187034,0.379432,0.58581,0.520989,0.901171,0.548865,0.354083,0.085705,0.985848,0.541458,0.873094,0.12162,0.300487,0.582398,0.565825,0.909071,0.657278,0.909278,0.68802,0.160292,0.197384,0.0528129,0.326005,0.785582,0.604728,0.349967,0.880035,0.757311,0.685272,0.933286,0.292268,0.94155,0.883523,0.395869,0.751294,0.972498,0.903045,0.675526,0.844131,0.978593,0.470843,0.0844523,0.363607,0.584618,0.697563,0.0839365,0.867165,0.470914,0.720321,0.503147,0.11103,0.669474,0.313539,0.824652,0.994959,0.931668,0.263427,0.25785,0.451547,0.878872,0.976874,0.690181,0.350314,0.937034,0.12408,0.179435,0.643193,0.871809,0.895983,0.690395,0.193481,0.308511,0.913325,0.913227,0.38053,0.522617,0.063885,0.129809,0.0799034,0.391369,0.279968,0.355911,0.590816,0.97031,0.0154569,0.483669,0.231956,0.193062,0.921796,0.366971,0.886134,0.748006,0.372703,0.492532,0.842399,0.508963,0.951839,0.762594,0.857976,0.869842,0.651774,0.620968,0.209453,0.372452,0.563912,0.352926,0.210103,0.442184,0.103558,0.501926,0.640986,0.532783,0.504706,0.245735,0.705495,0.641386,0.668308,0.197676,0.917101,0.025571,0.638369,0.395368,0.777109,0.190437,0.459553,0.529491,0.886391,0.59324,0.472828,0.230813,0.198172,0.392198,0.984682,0.118926,0.510763,0.377449,0.221902,0.6125,0.136569,0.683192,0.826205,0.728861,0.979323,0.51027,0.397976,0.24567,0.448753,0.0701123,0.0121201,0.720666,0.791391,0.128087,0.454858,0.413107,0.527542,0.413051,0.86153,0.209533,0.965994,0.795831,0.965146,0.124067,0.910062,0.858856,0.101701,0.466075,0.258477,0.858499,0.0877595,0.500291,0.656577,0.882698,0.977149,0.837127,0.758621,0.764083,0.104758,0.716228,0.615794,0.979019,0.716637,0.150122,0.633974,0.565467,0.907827,0.489459,0.835564,0.566686,0.0532517,0.041779,0.139163,0.41931,0.026915,0.887045,0.213552,0.0983102,0.522228,0.281909,0.367377,0.234461,0.954318,0.713475,0.855205,0.317852,0.771997,0.960595,0.715157,0.423489,0.697246,0.940183,0.715699,0.582332,0.991955,0.317324,0.181721,0.0971117,0.09382,0.96633,0.671514,0.0504002,0.843147,0.316767,0.530059,0.354143,0.608583,0.00568581,0.329166,0.220571,0.718903,0.114213,0.827905,0.194836,0.778794,|0.58055,0.0896314,0.147161,0.673482,0.475099,0.631004,0.941039,0.00622785,0.490229,0.0531613,0.922091,0.54149,0.233795,0.75365,0.143777,0.280215,0.771875,0.370926,0.23135,0.231813,0.380576,0.515809,0.498074,0.336401,0.0320162,0.762851,0.775316,0.415828,0.509189,0.700364,0.374093,0.127076,0.46316,0.63512,0.504257,0.517223,0.581394,0.182969,0.59936,0.921529,0.460619,0.890383,0.11808,0.353108,0.465807,0.520713,0.743986,0.702008,0.103845,0.678069,0.547171,0.15416,0.767114,0.864348,0.283519,0.490142,0.998246,0.347629,0.936252,0.732656,0.246012,0.143245,0.600139,0.605001,0.9332,0.723185,0.352178,0.857852,0.671598,0.660934,0.548977,0.751753,0.103427,0.936451,0.299155,0.0276232,0.132031,0.0154198,0.412063,0.0653191,0.893286,0.6356,0.929213,0.211354,0.136074,0.540917,0.900206,0.633871,0.789274,0.510139,0.816499,0.184744,0.904873,0.460199,0.445382,0.825301,0.911259,0.868991,0.593913,0.384196,0.373013,0.100362,0.53667,0.110124,0.247608,0.473159,0.000485122,0.42785,0.310503,0.172793,0.420843,0.29218,0.935288,0.67577,0.0739626,0.406715,0.980391,0.656486,0.664771,0.135338,0.448908,0.690292,0.975529,0.176521,0.936491,0.939788,0.419418,0.351545,0.537034,0.413849,0.808885,0.535947,0.728735,0.988901,0.30193,0.166363,0.763201,0.664562,0.0471244,0.682575,0.771853,0.155762,0.94386,0.501749,0.372683,0.0353549,0.911622,0.336251,0.536889,0.236408,0.0324686,0.875147,0.338594,0.858195,0.230592,0.72546,0.480487,0.243298,0.678137,0.234127,0.943496,0.122912,0.0168125,0.452581,0.696777,0.350203,0.856226,0.572632,0.886878,0.906557,0.58098,0.708058,0.767708,0.373102,0.650068,0.0922846,0.874284,0.62375,0.961922,0.773287,0.0264399,0.412153,0.282229,0.882168,0.136163,0.842867,0.77197,0.736724,0.0670234,0.489249,0.825959,0.186405,0.97718,0.317466,0.674162,0.273636,0.603339,0.436197,0.0158347,0.796465,0.00103849,0.292338,0.245904,0.630532,0.110036,0.8867,0.717623,0.465874,0.743392,0.598213,0.149782,0.282902,0.260703,0.853929,0.204988,0.123543,0.674384,0.797978,0.690647,0.215394,0.030547,0.77621,0.11203,0.237885,0.737445,0.506177,0.57438,0.490368,0.387852,0.246188,0.198103,0.72715,0.293454,0.921373,0.144635,0.630779,0.399211,0.194639,0.032321,0.616102,0.635413,0.0479625,0.438631,0.503815,0.43847,0.844352,0.277623,0.899771,0.470629,0.729938,0.648418,0.125628,0.660168,0.901249,0.146467,0.59978,0.935491,0.941766,0.00718749,0.244936,0.911759,0.958317,0.866732,0.034935,0.500758,0.270823,0.0398006,0.30587,0.292424,0.221935,0.064546,0.946888,0.714471,0.912,0.999776,0.0229849,0.499889,0.684482,0.72738,0.094803,0.437363,0.220822,0.441471,0.110178,0.868878,0.952564,0.713044,0.64016,0.556704,0.535773,0.418186,0.681383,0.798493,0.196801,0.24949,0.847291,0.613936,0.714946,0.136037,0.309065,0.586977,0.873054,0.25439,0.0341994,0.619303,0.231909,0.090894,0.781308,0.566665,0.48456,0.524134,0.805931,0.449528,0.595001,0.973501,0.563503,0.988744,0.406696,0.783078,0.43715,0.552589,0.703429,0.526433,0.395565,0.764143,0.408078,0.257304,0.828723,0.214538,0.386872,0.380228,0.765516,0.281828,0.794506,0.994387,0.613579,0.830211,0.507873,0.353979,0.629415,0.0275317,0.215258,0.658448,0.312629,0.9533,0.953463,0.513695,0.131526,0.175584,0.556896,0.741084,0.513793,0.813571,0.427738,0.674877,0.349764,0.618295,0.529122,0.336208,0.0808501,0.39163,0.545319,0.661956,0.00769329,0.101301,0.102636,0.36064,0.924253,0.759999,0.450011,0.168586,0.633072,0.888446,0.480656,0.69138,0.477576,0.389205,0.400692,0.909528,0.954769,0.0981912,0.258362,0.684859,0.00468343,0.116917,0.363996,0.834317,0.100166,0.137597,0.138431,0.306396,0.686407,0.309577,0.166616,0.799203,0.212382,0.121712,0.174958,0.256396,0.140161,0.336394,0.78856,0.186891,0.305966,0.756584,0.422031,0.259057,0.501135,0.89214,0.804465,0.0376272,0.936094,0.393416,0.979395,0.190655,0.420909,0.742267,0.173855,0.409921,0.984423,0.925957,0.800445,0.270846,0.804597,0.142585,0.566658,0.16111,0.485681,0.964332,0.311898,0.562407,0.438465,0.478595,0.585888,0.340738,0.476244,0.947042,0.372423,0.0787878,0.326402,0.656502,0.131904,0.323955,0.273455,0.111241,0.52082,0.974964,0.270347,0.379807,0.389606,0.403948,0.0493053,0.845153,0.243573,0.526087,0.38659,0.684833,0.595283,0.00979972,0.904898,0.247781,0.433113,0.903344,0.738156,0.361456,0.31149,0.769215,0.461997,0.485654,0.0947366,0.517071,0.44876,0.65017,0.875211,0.149303,0.460867,0.0200813,0.742788,0.611045,0.653205,0.835093,0.219383,0.305452,0.155088,0.239565,0.491106,0.829694,0.615036,0.471885,0.273653,0.35018,0.764963,0.659903,0.3747,0.816085,0.0471252,0.983016,0.972618,0.789371,0.153323,0.212691,0.864742,0.489284,0.126987,0.282231,0.5861,0.462126,0.180954,0.85389,0.58809,0.600532,0.00657904,0.673389,0.674572,0.0153503,0.658201,0.543567,0.252239,0.430016,0.435897,0.616573,0.284753,0.368347,0.199439,0.382488,0.889221,0.624706,0.428377,0.311292,0.72317,0.850598,0.859601,0.744227,0.283948,0.107463,0.566081,0.779887,0.495668,0.252327,0.0450037,0.364459,0.490618,0.456448,0.565583,0.14842,0.891043,0.608516,0.198818,0.0885634,0.718832,0.767727,0.652536,0.987235,0.297737,0.902593,0.14886,0.356066,0.681353,0.269432,0.137255,0.802551,0.180192,0.897198,0.273501,0.850638,0.747809,0.271477,0.0622392,0.521717,0.180736,0.599829,0.562643,0.457346,0.478156,0.867037,0.108241,0.818222,0.165522,0.747725,0.435202,0.788974,0.242316,0.327603,0.686934,0.323287,0.454843,0.640621,0.891426,0.554768,0.658818,0.443335,0.476629,0.983417,0.302489,0.564671,0.290535,0.166375,0.591763,0.990905,0.21264,0.0586303,0.734767,0.0210772,0.942733,0.0962489,0.23209,0.691207,0.658579,0.867519,0.70881,0.479376,0.745308,0.228728,0.570293,0.0378714,0.242493,0.654131,0.0328038,0.36623,0.948588,0.52613,0.634317,0.422249,0.271468,0.563101,0.826874,0.407397,0.420356,0.194677,0.252729,0.390985,0.350615,0.414483,0.463964,0.624834,0.668379,0.659806,0.355879,0.199761,0.753606,0.972866,0.565551,0.667877,0.417317,0.125453,0.099884,0.895136,0.336874,0.863555,0.610895,0.794848,0.834159,0.968735,0.597142,0.608571,0.578529,0.0449,0.346431,0.413825,0.0418007,0.823489,0.728086,0.0336633,0.656957,0.294448,0.33802,0.344881,0.16786,0.521216,0.618851,0.595257,0.290035,0.754023,0.657968,0.15054,0.114243,0.0638039,0.856087,0.517601,0.489131,0.872169,0.465564,0.0552768,0.181599,0.973657,0.755814,0.0833372,0.6869,0.710767,0.671717,0.549635,0.889433,0.590278,0.293854,0.315176,0.694879,0.315316,0.478318,0.358976,0.392333,0.376525,0.948634,0.594555,0.635123,0.684673,0.390086,0.44931,0.0854639,0.137234,0.63282,0.863943,0.481622,0.948122,0.200062,0.791693,0.0835526,0.942733,0.75751,0.120446,0.761441,0.45497,0.134416,0.121322,0.435266,0.718201,0.167863,0.591234,0.979641,0.575547,0.366733,0.835437,0.438221,0.882289,0.718699,0.965942,0.448873,0.800685,0.890242,0.657088,0.997307,0.0741578,0.769129,0.574833,0.440339,0.769892,0.404031,0.270293,0.808996,0.540442,0.132682,0.261005,0.417346,0.24349,0.624575,0.0905334,0.455362,0.355713,0.327112,0.495802,0.428381,0.131517,0.0556254,0.937084,0.0878816,0.76655,0.627562,0.257803,0.397086,0.10964,0.763302,0.952807,0.889264,0.170489,0.10081,0.558386,0.41627,0.304689,0.269915,0.303312,0.160976,0.955184,0.608711,0.198454,0.480874,0.468592,0.507502,0.081664,0.145207,0.782015,0.465467,0.0190948,0.709642,0.823678,0.59151,0.854673,0.158369,0.0301958,0.215099,0.709873,0.800844,0.942119,0.884532,0.962915,0.852605,0.845025,0.288684,0.427541,0.986783,0.543251,0.0398549,0.742684,0.0511243,0.780198,0.903191,0.789147,0.446399,0.332388,0.666516,0.611082,0.425056,0.317775,0.888335,0.160104,0.181015,0.631048,0.264445,0.277578,0.873837,0.136026,0.3832,0.722539,0.109265,0.481751,0.0381467,0.720665,0.501733,0.487328,0.374933,0.268269,0.583175,0.849151,0.939392,0.973316,0.237213,0.591479,0.844359,0.3938,0.879363,0.190537,0.249904,0.789325,0.047039,0.420626,0.389552,0.935472,0.903435,0.22744,0.882328,0.835981,0.884284,0.790457,0.310747,0.245695,0.657915,0.546211,0.804867,0.773759,0.831262,0.487713,0.34443,0.339746,0.00983942,0.840235,0.757769,0.279378,0.0651312,0.817591,0.500075,0.990456,0.294443,0.767772,0.135707,0.680034,0.0598878,0.945866,0.504398,0.7673,0.179083,0.124398,0.345133,0.431738,0.143095,0.514893,0.795482,0.194951,0.125268,0.634902,0.534252,0.231293,0.140682,0.758083,0.697162,0.395397,0.957919,0.199278,0.432217,0.331613,0.252104,0.321308,0.135765,0.425432,0.0452778,0.511509,0.646096,0.632084,0.883269,0.947957,0.349377,0.805835,0.939414,0.789229,0.0960417,0.67298,0.28899,0.822739,0.723797,0.466951,0.476306,0.320304,0.98848,0.759975,0.250417,0.69418,0.1845,0.0422466,0.851517,0.214894,0.0642238,0.765425,0.298793,0.387636,0.546061,0.664308,0.888271,0.0662366,0.530064,0.320131,0.830251,0.674228,0.909207,0.482456,0.548913,0.480449,0.324148,0.249553,0.392499,0.380135,0.541163,0.735321,0.82762,0.444201,0.402391,0.0215908,0.0857614,0.507044,0.24308,0.0104972,0.72267,0.975725,0.777866,0.412909,0.0781671,0.686628,0.750746,0.668797,0.572664,0.709905,0.80514,0.982279,0.46834,0.434116,0.476249,0.279038,0.378884,0.353216,0.179394,0.822983,0.823796,0.879566,0.679403,0.761781,0.900984,0.780351,0.0160148,0.779218,0.248671,0.907863,0.633075,0.276688,0.811294,|0.242408,0.181048,0.826982,0.616299,0.749918,0.306961,0.08539,0.0586537,0.534843,0.393489,0.778305,0.395635,0.801753,0.585153,0.176951,0.660143,0.698282,0.565451,0.275326,0.161558,0.118889,0.126756,0.0764956,0.461907,0.312072,0.176986,0.249501,0.373537,0.214131,0.720597,0.621238,0.238371,0.432326,0.355867,0.317947,0.662621,0.417002,0.915865,0.658377,0.634044,0.209933,0.591292,0.893673,0.376831,0.389435,0.62123,0.114824,0.93677,0.634866,0.0833008,0.562366,0.912119,0.254654,0.157838,0.817607,0.364408,0.570442,0.137969,0.496232,0.0729946,0.48617,0.860746,0.33975,0.841439,0.00730443,0.808115,0.224289,0.465319,0.243486,0.321441,0.907429,0.689529,0.476849,0.990547,0.984021,0.473024,0.488545,0.999507,0.65355,0.725575,0.120981,0.877485,0.872027,0.227843,0.899047,0.755733,0.279044,0.977812,0.730617,0.850532,0.600169,0.961247,0.155329,0.321975,0.430315,0.22478,0.677033,0.94282,0.185976,0.991656,0.494036,0.808641,0.325504,0.307874,0.56516,0.338058,0.161922,0.0895125,0.534055,0.637808,0.669326,0.854594,0.0196669,0.522331,0.496412,0.892281,0.79036,0.290903,0.639359,0.998113,0.410065,0.492395,0.55334,0.533327,0.519553,0.389404,0.83553,0.599144,0.329506,0.324452,0.815515,0.221627,0.897948,0.474976,0.385998,0.930623,0.493177,0.431803,0.166587,0.317492,0.322055,0.980001,0.822539,0.454152,0.170975,0.878999,0.0354651,0.595357,0.0280409,0.179429,0.0151123,0.704265,0.43804,0.47294,0.0226918,0.936014,0.362507,0.889831,0.830036,0.186147,0.560623,0.918566,0.0332151,0.0966823,0.666481,0.51409,0.0748007,0.279842,0.81318,0.623061,0.826735,0.0570461,0.343241,0.792887,0.169258,0.286087,0.216172,0.875077,0.688358,0.257624,0.825664,0.205696,0.0997269,0.16839,0.0224936,0.387409,0.157672,0.650792,0.447756,0.479338,0.974147,0.0297444,0.720518,0.466316,0.844718,0.97343,0.937538,0.320024,0.95718,0.390842,0.596012,0.460375,0.966886,0.448888,0.713386,0.365347,0.990195,0.76462,0.0214382,0.842504,0.158313,0.456409,0.930398,0.452946,0.357113,0.607965,0.860478,0.804722,0.903808,0.761053,0.400689,0.686111,0.980089,0.875477,0.0911298,0.959365,0.051462,0.894082,0.197673,0.229653,0.57359,0.950154,0.038157,0.265561,0.749677,0.723863,0.0122889,0.944619,0.641263,0.0242463,0.789203,0.136563,0.141367,0.960506,0.69313,0.811801,0.777576,0.808774,0.627228,0.222545,0.470838,0.407573,0.072392,0.373487,0.635235,0.322579,0.190926,0.394182,0.573221,0.312753,0.932949,0.907559,0.171284,0.90001,0.10944,0.926128,0.359942,0.557255,0.766021,0.75841,0.51905,0.398336,0.0185745,0.454774,0.893965,0.572564,0.47539,0.799629,0.88278,0.583995,0.946838,0.192481,0.139891,0.266997,0.19123,0.0361756,0.366073,0.29685,0.105372,0.658017,0.714631,0.242935,0.508403,0.180671,0.285388,0.976415,0.0947724,0.78599,0.755021,0.620022,0.268663,0.86483,0.0208939,0.23099,0.303803,0.57717,0.608318,0.939811,0.351631,0.985083,0.782493,0.951341,0.108393,0.619224,0.382177,0.00670338,0.747381,0.486875,0.565383,0.591846,0.444911,0.400689,0.813543,0.940981,0.388737,0.0113176,0.495842,0.903325,0.814064,0.599079,0.306405,0.534012,0.221642,0.467696,0.341593,0.614073,0.986654,0.61737,0.493097,0.561565,0.0766028,0.353834,0.759934,0.971673,0.524373,0.2896,0.539246,0.957602,0.0148187,0.699157,0.59961,0.325329,0.636582,0.793417,0.942024,0.994014,0.680839,0.702122,0.299381,0.13433,0.674774,0.322347,0.699749,0.953322,0.344098,0.985271,0.982298,0.51953,0.484965,0.728336,0.296724,0.0236308,0.990244,0.159022,0.0188709,0.139451,0.28846,0.051662,0.123207,0.936947,0.42807,0.947794,0.782663,0.855897,0.0475391,0.619185,0.35632,0.421785,0.109507,0.499874,0.540668,0.015142,0.978281,0.263955,0.814845,0.0157196,0.426969,0.837696,0.513774,0.775148,0.12308,0.492343,0.803784,0.505548,0.767946,0.840016,0.0991867,0.820883,0.118975,0.449477,0.788198,0.0886706,0.688949,0.839004,0.691954,0.355592,0.176211,0.660837,0.724901,0.597968,0.603372,0.862894,0.779169,0.726085,0.674993,0.452673,0.0459856,0.044771,0.434215,0.504292,0.834671,0.658202,0.63757,0.281672,0.167966,0.591999,0.117227,0.635295,0.486973,0.567092,0.629964,0.340201,0.330524,0.293014,0.518285,0.433088,0.0735668,0.871981,0.562935,0.718774,0.876624,0.143793,0.487651,0.362332,0.626767,0.873657,0.0262467,0.0184875,0.444177,0.890874,0.758432,0.20624,0.166475,0.952054,0.803069,0.962656,0.615743,0.876601,0.28684,0.520582,0.844109,0.570081,0.822219,0.597688,0.951448,0.568891,0.18588,0.474436,0.0394044,0.141285,0.451421,0.840201,0.339597,0.000915945,0.160289,0.728512,0.978891,0.332209,0.491651,0.729391,0.634868,0.00327027,0.766463,0.735998,0.0244392,0.272822,0.632893,0.738658,0.109759,0.262023,0.306351,0.798337,0.742422,0.43994,0.952233,0.506367,0.88232,0.41364,0.443265,0.200594,0.272757,0.404259,0.867307,0.652031,0.133857,0.551407,0.654332,0.295521,0.711111,0.701854,0.268639,0.950847,0.208904,0.0702754,0.525874,0.695965,0.0133263,0.522745,0.640683,0.24209,0.188202,0.727206,0.0246115,0.67337,0.821153,0.347996,0.723959,0.393047,0.300526,0.165616,0.430114,0.415143,0.333996,0.565041,0.808332,0.459806,0.814672,0.0468543,0.292135,0.181417,0.651802,0.0378308,0.391715,0.0379354,0.205854,0.198018,0.332475,0.370647,0.692726,0.355717,0.900842,0.821385,0.551948,0.55817,0.684994,0.885307,0.52459,0.777546,0.981401,0.986654,0.248261,0.242888,0.5441,0.993451,0.762652,0.518067,0.824122,0.00302243,0.751347,0.188499,0.39773,0.721759,0.500187,0.666413,0.0408845,0.454681,0.0977963,0.312953,0.482028,0.521236,0.86403,0.559419,0.876185,0.451137,0.565077,0.93746,0.647336,0.160077,0.921216,0.813811,0.379758,0.650976,0.761489,0.650412,0.29022,0.201622,0.981701,0.410751,0.879847,0.161986,0.0978772,0.261286,0.597159,0.590898,0.134864,0.104308,0.450181,0.0719231,0.129381,0.445315,0.686756,0.345829,0.698827,0.441777,0.618764,0.984958,0.331151,0.241497,0.242542,0.673452,0.994621,0.422018,0.230943,0.119541,0.635309,0.286512,0.298189,0.00578398,0.159954,0.248218,0.767526,0.899072,0.777839,0.255419,0.497767,0.530691,0.125501,0.659708,0.803743,0.110423,0.781429,0.697847,0.379901,0.756394,0.26732,0.545346,0.802776,0.316719,0.455892,0.207126,0.704026,0.896271,0.0312948,0.583917,0.054151,0.868984,0.171031,0.881064,0.275509,0.377882,0.485459,0.908422,0.218036,0.211203,0.344886,0.401641,0.782952,0.911804,0.673715,0.231661,0.422058,0.312191,0.912291,0.756406,0.271968,0.44463,0.271752,0.121571,0.615407,0.987481,0.808862,0.189949,0.277356,0.242399,0.826013,0.361315,0.457878,0.557527,0.512373,0.142876,0.772865,0.256946,0.670774,0.467492,0.990781,0.634735,0.539052,0.00168318,0.961474,0.304887,0.930412,0.842348,0.712049,0.733085,0.0100577,0.301505,0.811719,0.968043,0.758987,0.170868,0.577835,0.878864,0.994412,0.182923,0.0633032,0.878769,0.651097,0.387818,0.23936,0.669385,0.853764,0.362634,0.340854,0.870017,0.0557575,0.0131475,0.68063,0.691174,0.978143,0.264324,0.828217,0.277431,0.405846,0.461784,0.794869,0.276258,0.677843,0.546217,0.0800931,0.162119,0.903147,0.568675,0.775175,0.230264,0.888316,0.0426235,0.915539,0.761696,0.645195,0.376104,0.780812,0.619446,0.348912,0.284599,0.378931,0.948076,0.862243,0.466078,0.932436,0.0265898,0.316096,0.325577,0.609199,0.354417,0.010285,0.536602,0.378819,0.858139,0.641716,0.16483,0.685924,0.235352,0.442635,0.972331,0.250214,0.144632,0.931628,0.654232,0.73489,0.653214,0.327615,0.192725,0.671621,0.813433,0.446402,0.0619217,0.636654,0.577017,0.989757,0.462894,0.181827,0.791656,0.782063,0.109116,0.572411,0.653629,0.98279,0.363386,0.331737,0.892252,0.716771,0.700232,0.172383,0.627039,0.133761,0.540461,0.872705,0.167064,0.36342,0.695378,0.73172,0.786562,0.245425,0.37702,0.749122,0.249467,0.442522,0.580193,0.506456,0.246874,0.122744,0.0331983,0.796524,0.862493,0.742346,0.976472,0.97543,0.993323,0.346954,0.356705,0.953046,0.447328,0.128935,0.204842,0.758402,0.680605,0.79358,0.440014,0.663544,0.224709,0.786913,0.367554,0.592215,0.480903,0.604856,0.427423,0.46817,0.303677,0.328343,0.571354,0.321254,0.51764,0.923168,0.35082,0.315714,0.285737,0.664898,0.163781,0.702651,0.824762,0.00498617,0.532747,0.512166,0.396942,0.109387,0.58422,0.609542,0.798312,0.41471,0.544475,0.889486,0.851047,0.945166,0.000837445,0.612414,0.860012,0.422875,0.0055902,0.0169326,0.430937,0.921681,0.733809,0.565329,0.745889,0.555276,0.2822,0.418967,0.624032,0.807732,0.234076,0.883232,0.634153,0.507913,0.75263,0.184628,0.971781,0.87255,0.67039,0.789091,0.87636,0.966694,0.875071,0.883199,0.722442,0.548455,0.349221,0.777523,0.74749,0.244661,0.47441,0.0551031,0.846438,0.926527,0.0503554,0.409591,0.450978,0.00831109,0.711734,0.460424,0.412176,0.00157022,0.693096,0.528673,0.600732,0.545452,0.781491,0.896887,0.65976,0.292473,0.752283,0.27339,0.0768312,0.798272,0.715869,0.239771,0.803425,0.315933,0.659744,0.120089,0.0725201,0.862031,0.0385407,0.407073,0.604928,0.748095,0.468573,0.402473,0.805927,0.63392,0.0609307,0.173566,0.872885,0.785405,0.0330738,0.306434,0.0879626,0.251506,0.623892,0.931123,0.0865396,0.435486,0.329526,0.636095,0.510167,0.967652,0.626852,0.0903816,0.193372,0.0911667,0.948045,0.0025394,0.906418,0.897066,0.944622,0.305326,0.315802,0.832749,0.287306,0.366008,0.758147,0.19784,0.170592,0.98117,0.899807,0.791839,0.5025,0.022674,0.170636,0.965432,0.0111443,|0.279448,0.374026,0.737921,0.120998,0.600726,0.905748,0.380823,0.0434206,0.373744,0.513785,0.86391,0.0158547,0.554982,0.119249,0.00409651,0.041414,0.25747,0.746051,0.3947,0.559198,0.564939,0.879263,0.455905,0.859551,0.960843,0.655128,0.147591,0.148951,0.616249,0.334621,0.549388,0.190953,0.239651,0.819145,0.275372,0.213458,0.566376,0.35054,0.855781,0.551337,0.259607,0.338476,0.333575,0.471584,0.387166,0.669325,0.801954,0.338564,0.682951,0.551664,0.748612,0.572857,0.285021,0.396592,0.912736,0.427017,0.885256,0.129774,0.874021,0.0533413,0.168286,0.0276688,0.998472,0.804391,0.683207,0.386233,0.172662,0.548445,0.341308,0.628735,0.886587,0.469571,0.347986,0.0780658,0.279662,0.89117,0.77861,0.654195,0.751554,0.861689,0.531492,0.180954,0.431268,0.671622,0.871605,0.327656,0.417172,0.7975,0.820379,0.435438,0.559275,0.664766,0.24932,0.681205,0.329788,0.868823,0.0474377,0.622409,0.73352,0.800365,0.730123,0.721954,0.836025,0.0561887,0.638837,0.893406,0.362778,0.891132,0.875895,0.975646,0.993418,0.384918,0.37447,0.491154,0.531252,0.878904,0.0812923,0.976549,0.770285,0.203241,0.431517,0.709318,0.500163,0.445814,0.968826,0.625703,0.312326,0.731171,0.494443,0.229602,0.415652,0.937156,0.101553,0.29821,0.182396,0.0694183,0.142097,0.189182,0.44356,0.162994,0.398284,0.800911,0.787756,0.738614,0.640777,0.710675,0.75746,0.163703,0.807036,0.574103,0.711833,0.171777,0.0155966,0.789264,0.190491,0.23985,0.964323,0.6539,0.446591,0.0981197,0.742495,0.251582,0.86799,0.509636,0.278824,0.105941,0.800983,0.0803576,0.00361902,0.143035,0.033235,0.27295,0.334332,0.401903,0.928808,0.15692,0.763342,0.357307,0.281878,0.0780861,0.60277,0.72868,0.443901,0.703127,0.568987,0.935981,0.910652,0.688388,0.0943915,0.358503,0.21647,0.171089,0.0628797,0.408462,0.436134,0.844224,0.280423,0.494171,0.604543,0.458353,0.306219,0.520124,0.462265,0.421489,0.0940454,0.609902,0.202928,0.796126,0.991967,0.170657,0.445397,0.243933,0.834448,0.793554,0.99163,0.381002,0.520754,0.831356,0.730202,0.589325,0.646512,0.667714,0.767975,0.669901,0.867009,0.0349019,0.656484,0.548012,0.353481,0.448611,0.766778,0.277251,0.90483,0.681539,0.310317,0.553176,0.156918,0.0743707,0.166711,0.870181,0.678981,0.104809,0.565579,0.522068,0.284602,0.481069,0.734439,0.476265,0.947785,0.278057,0.982709,0.731952,0.937015,0.615514,0.560286,0.22598,0.939518,0.179339,0.159996,0.840984,0.589235,0.0825321,0.988508,0.79064,0.0112541,0.530851,0.659441,0.898505,0.0772886,0.466677,0.354048,0.447369,0.99628,0.320782,0.080293,0.74708,0.301828,0.581493,0.547192,0.577486,0.701488,0.0871492,0.235846,0.870675,0.143978,0.802819,0.0196316,0.538619,0.94926,0.699653,0.918204,0.490716,0.24624,0.880925,0.671475,0.033444,0.819686,0.584401,0.143445,0.572682,0.48634,0.960388,0.143208,0.116003,0.162841,0.148581,0.973692,0.599212,0.546114,0.880859,0.378756,0.860921,0.0918972,0.559494,0.811231,0.376514,0.722187,0.42378,0.322449,0.0807604,0.0853679,0.527261,0.566822,0.569441,0.163108,0.840779,0.625846,0.362518,0.184881,0.304325,0.498248,0.721219,0.235979,0.457044,0.416939,0.245876,0.820967,0.19404,0.657611,0.205551,0.378506,0.477579,0.952513,0.595941,0.88307,0.337428,0.936053,0.572598,0.109205,0.685862,0.292707,0.301904,0.888768,0.512231,0.0275061,0.28975,0.164125,0.073354,0.805648,0.261957,0.520637,0.179103,0.770452,0.664037,0.289955,0.518688,0.578007,0.325978,0.0526175,0.429735,0.816812,0.606811,0.922962,0.230355,0.430232,0.604211,0.560863,0.512277,0.298067,0.842462,0.183264,0.77286,0.544391,0.352327,0.158606,0.0601428,0.197242,0.509807,0.372376,0.724259,0.257509,0.89289,0.471913,0.826311,0.887654,0.545537,0.229006,0.625238,0.85267,0.150021,0.0926889,0.0532779,0.0218332,0.0519072,0.727696,0.202479,0.549949,0.104227,0.928942,0.28289,0.165429,0.796939,0.609571,0.654761,0.641368,0.664745,0.48571,0.545781,0.193537,0.144596,0.745485,0.254864,0.00852603,0.27533,0.690598,0.57571,0.221613,0.147165,0.356381,0.598094,0.807198,0.00738466,0.923333,0.651136,0.850898,0.557464,0.427158,0.320387,0.589514,0.286463,0.309913,0.0926234,0.939875,0.949319,0.952273,0.341703,0.171562,0.794233,0.791332,0.667977,0.340987,0.370606,0.414686,0.569915,0.550457,0.554614,0.304931,0.894439,0.189804,0.3831,0.501833,0.339434,0.515685,0.427827,0.658165,0.443746,0.934666,0.380347,0.863098,0.828862,0.927544,0.62937,0.86051,0.0127919,0.352955,0.916039,0.366367,0.454731,0.70066,0.0205017,0.0730914,0.123527,0.493203,0.802486,0.737245,0.567387,0.682501,0.0404821,0.455923,0.918057,0.0290085,0.661757,0.670422,0.0797035,0.950197,0.749198,0.0146077,0.582908,0.203897,0.0769146,0.914613,0.391472,0.897767,0.913517,0.327777,0.600875,0.885036,0.569934,0.230969,0.0516204,0.452645,0.549946,0.442176,0.567539,0.0670232,0.230759,0.485383,0.861067,0.994301,0.0637439,0.239603,0.628846,0.563086,0.65934,0.92901,0.308616,0.0163258,0.0233581,0.868894,0.17991,0.245512,0.636897,0.60388,0.274806,0.886854,0.535141,0.0280688,0.806829,0.589908,0.0182858,0.0394472,0.948158,0.547189,0.57292,0.910066,0.773441,0.115011,0.827188,0.78804,0.839668,0.0424665,0.989205,0.800954,0.914177,0.317573,0.162816,0.834579,0.842434,0.40596,0.129212,0.379052,0.94378,0.923154,0.0597163,0.807107,0.49046,0.648894,0.845909,0.808628,0.226951,0.273296,0.666129,0.22872,0.459934,0.772662,0.20727,0.536311,0.349955,0.545062,0.274503,0.170774,0.69772,0.55332,0.732375,0.476238,0.577217,0.121521,0.117275,0.11969,0.375978,0.897949,0.250344,0.625348,0.30263,0.408745,0.253515,0.602133,0.0882285,0.726841,0.233523,0.688557,0.36328,0.305899,0.89625,0.7111,0.297077,0.0479538,0.902325,0.0157202,0.37886,0.436542,0.385005,0.582579,0.0717247,0.328096,0.212907,0.929666,0.593125,0.947622,0.346751,0.937255,0.010636,0.0446795,0.963796,0.00743204,0.73708,0.402265,0.689946,0.915455,0.867267,0.00237215,0.534741,0.356764,0.0225326,0.499812,0.603765,0.284546,0.320027,0.98499,0.676326,0.836586,0.980839,0.981516,0.418157,0.653365,0.189409,0.782526,0.146918,0.733993,0.838469,0.592656,0.812764,0.608862,0.173273,0.67242,0.427573,0.116718,0.630622,0.263425,0.0959534,0.645652,0.0308278,0.767584,0.0714601,0.449964,0.574993,0.864163,0.72218,0.481725,0.177701,0.579648,0.371758,0.407453,0.142544,0.00305587,0.73209,0.962509,0.505544,0.939354,0.565768,0.27239,0.456978,0.345271,0.891647,0.781354,0.117896,0.321153,0.911155,0.907856,0.116484,0.369077,0.685373,0.311535,0.210019,0.406182,0.691054,0.555605,0.130417,0.752384,0.727974,0.326433,0.23022,0.897326,0.950078,0.692345,0.559386,0.735138,0.550127,0.221616,0.290031,0.205185,0.540026,0.790901,0.117385,0.0861579,0.359208,0.799771,0.604957,0.334083,0.10031,0.504642,0.714136,0.954395,0.673017,0.409188,0.099716,0.337433,0.128225,0.00539356,0.706264,0.604619,0.194019,0.583543,0.974417,0.741225,0.187874,0.0728337,0.137662,0.669509,0.516115,0.524654,0.847738,0.522556,0.6116,0.603672,0.935457,0.910731,0.127187,0.620652,0.848264,0.606838,0.483898,0.807721,0.145257,0.152549,0.642845,0.76556,0.744023,0.452673,0.785077,0.459147,0.337119,0.206218,0.450277,0.181252,0.005885,0.0240551,0.94708,0.898226,0.481041,0.940405,0.401629,0.809909,0.333771,0.638794,0.660306,0.360916,0.496205,0.165716,0.058892,0.821075,0.36692,0.562948,0.824799,0.429518,0.736222,0.0156329,0.548395,0.809782,0.831019,0.597495,0.74751,0.085447,0.303363,0.78615,0.268336,0.161201,0.066404,0.0753604,0.721995,0.261274,0.355169,0.895887,0.289931,0.414463,0.45911,0.576176,0.0876429,0.609792,0.112118,0.387693,0.223975,0.692479,0.307144,0.327446,0.194275,0.722462,0.0121652,0.145039,0.191544,0.16477,0.592203,0.161219,0.405701,0.171709,0.345494,0.247105,0.841814,0.302242,0.566913,0.889264,0.924521,0.0935072,0.717099,0.0859411,0.521971,0.496716,0.438681,0.999225,0.425745,0.368244,0.550057,0.753092,0.0761188,0.864325,0.755235,0.752413,0.188705,0.357692,0.740546,0.607705,0.644054,0.902494,0.040171,0.896913,0.741876,0.840331,0.543742,0.862002,0.623092,0.885599,0.0432568,0.891579,0.765522,0.472331,0.785185,0.0435422,0.465005,0.0312253,0.570866,0.246036,0.584234,0.961375,0.693927,0.687278,0.257903,0.36786,0.937142,0.842047,0.890357,0.108365,0.369541,0.746827,0.569072,0.60394,0.668431,0.584644,0.256651,0.771735,0.436543,0.558946,0.862871,0.426512,0.314401,0.20868,0.92551,0.300654,0.991363,0.719293,0.533268,0.91908,0.279616,0.684141,0.398348,0.257612,0.8352,0.116722,0.0490344,0.126765,0.887791,0.93142,0.768315,0.730405,0.176426,0.487977,0.244516,0.0434321,0.324461,0.279657,0.202173,0.0807018,0.968555,0.0654569,0.919256,0.106334,0.1542,0.922688,0.910029,0.375658,0.11763,0.381036,0.939361,0.0378974,0.126126,0.196081,0.495778,0.958154,0.935787,0.870726,0.507899,0.959343,0.267363,0.135458,0.0932646,0.640115,0.976662,0.896104,0.843477,0.991751,0.194254,0.512996,0.42786,0.753628,0.943787,0.283475,0.653658,0.116034,0.337911,0.199391,0.857369,0.525499,0.681345,0.550282,0.184258,0.85613,0.816349,0.5404,0.338157,0.219839,0.109947,0.584659,0.340303,0.347194,0.416477,0.429184,0.0255288,0.475705,0.707011,0.54,0.043317,0.967727,0.607652,0.965059,0.1157,0.811569,0.227083,0.282472,0.00243366,0.82102,0.780398,0.101135,0.821184,0.622678,0.870393,0.00645882,0.0745202,0.641296,0.471182,0.98678,0.415768,|0.0589076,0.827835,0.0115658,0.899062,0.0619097,0.618659,0.953127,0.688492,0.0746087,0.882691,0.879843,0.783949,0.36802,0.963842,0.05841,0.944303,0.172211,0.0688321,0.0106218,0.0102185,0.0476404,0.704483,0.820402,0.0421668,0.487817,0.815834,0.295363,0.83202,0.131548,0.736989,0.624894,0.448843,0.225026,0.626494,0.81663,0.451311,0.920618,0.54284,0.661215,0.494128,0.624637,0.0442354,0.847654,0.108849,0.346823,0.129185,0.773206,0.44293,0.975745,0.143095,0.587466,0.502482,0.964243,0.319681,0.224833,0.6391,0.128901,0.604645,0.192802,0.393373,0.0371341,0.190337,0.898946,0.921483,0.353357,0.304135,0.990247,0.615787,0.679202,0.529743,0.0987152,0.165723,0.560833,0.216424,0.218901,0.351744,0.317076,0.66304,0.214192,0.80104,0.983833,0.660892,0.581177,0.310223,0.404853,0.0881464,0.898633,0.133243,0.143988,0.824648,0.87523,0.870118,0.388232,0.0877501,0.0452965,0.928127,0.236713,0.0811333,0.578825,0.976557,0.735229,0.206872,0.380322,0.107852,0.448321,0.757479,0.800199,0.214284,0.656644,0.235054,0.225498,0.46073,0.855233,0.733818,0.466089,0.985651,0.454289,0.573097,0.718442,0.951794,0.509391,0.488053,0.816915,0.750432,0.00599831,0.980201,0.596283,0.899916,0.655458,0.544514,0.329714,0.277247,0.616862,0.366602,0.950953,0.271406,0.444944,0.337732,0.818813,0.58779,0.608544,0.23351,0.395767,0.840729,0.456432,0.370849,0.183931,0.118145,0.00154424,0.850488,0.746186,0.673423,0.890181,0.108071,0.20849,0.227274,0.0108609,0.244136,0.584863,0.192118,0.234002,0.00248188,0.135793,0.078571,0.807015,0.2288,0.0946978,0.896514,0.216818,0.123307,0.760375,0.819516,0.981203,0.564731,0.813196,0.602579,0.480877,0.437082,0.690531,0.160521,0.507776,0.234123,0.13225,0.251252,0.165342,0.070061,0.060366,0.566113,0.959061,0.243411,0.0743632,0.0638285,0.0735465,0.962487,0.0308712,0.565418,0.112901,0.924722,0.792632,0.290857,0.228037,0.0613195,0.587254,0.0452399,0.0539746,0.291375,0.532446,0.255302,0.408789,0.681844,0.132792,0.127933,0.925559,0.0814888,0.747981,0.658561,0.00159246,0.826094,0.411929,0.062889,0.194977,0.0994674,0.264456,0.112383,0.675072,0.178882,0.0573803,0.133321,0.130322,0.604704,0.744792,0.197426,0.843985,0.99437,0.174124,0.0414906,0.10192,0.242293,0.303457,0.253099,0.64697,0.108235,0.182838,0.589405,0.350385,0.526994,0.987949,0.595296,0.540581,0.31033,0.608281,0.236075,0.543556,0.49093,0.844117,0.222081,0.690369,0.814105,0.258105,0.1197,0.791747,0.760892,0.242328,0.142228,0.992562,0.906255,0.387009,0.247155,0.4083,0.256431,0.585289,0.817981,0.322678,0.574508,0.207554,0.911561,0.144847,0.0383633,0.623069,0.760424,0.94903,0.37446,0.28736,0.269523,0.978117,0.547258,0.602973,0.778943,0.393754,0.493581,0.377894,0.0995608,0.25436,0.257086,0.955775,0.253694,0.450024,0.382622,0.150379,0.355795,0.249968,0.683873,0.685444,0.639071,0.991573,0.951304,0.201906,0.230961,0.230949,0.262397,0.399548,0.683608,0.232092,0.467387,0.064649,0.702965,0.461956,0.44602,0.496574,0.76627,0.0395089,0.838869,0.340132,0.105169,0.164875,0.342847,0.184514,0.126341,0.744134,0.431278,0.248452,0.683485,0.10358,0.918944,0.00165546,0.6044,0.454143,0.260295,0.979225,0.523617,0.740205,0.586399,0.170812,0.0373645,0.786844,0.408194,0.291562,0.899294,0.429831,0.861621,0.988347,0.385537,0.894833,0.936598,0.163373,0.948829,0.12183,0.497512,0.214305,0.15157,0.127632,0.351675,0.366717,0.0524293,0.9713,0.366804,0.848979,0.496649,0.119938,0.500027,0.935376,0.462093,0.183525,0.136377,0.735051,0.841283,0.353758,0.311819,0.163885,0.766909,0.818655,0.391175,0.58285,0.426471,0.747742,0.60713,0.302559,0.417985,0.936099,0.821328,0.0198197,0.350546,0.0905471,0.306596,0.764714,0.211155,0.778242,0.500422,0.369098,0.573452,0.806803,0.0312515,0.94403,0.224366,0.706484,0.397474,0.0721055,0.239919,0.581172,0.565631,0.936944,0.380805,0.189349,0.0506331,0.446424,0.748154,0.183802,0.754358,0.293632,0.202142,0.990439,0.665055,0.739787,0.920658,0.117761,0.303291,0.890821,0.335232,0.757285,0.216877,0.361334,0.372217,0.595707,0.305252,0.476792,0.226186,0.2369,0.0449005,0.183742,0.259487,0.350057,0.91835,0.753296,0.349281,0.433368,0.299716,0.459286,0.519505,0.458302,0.301748,4.78625e-05,0.0311807,0.726592,0.820009,0.399094,0.930917,0.290736,0.47791,0.813784,0.872378,0.908767,0.763997,0.54359,0.616073,0.317617,0.839072,0.187135,0.439884,0.0926734,0.241286,0.666897,0.903162,0.220538,0.387694,0.276268,0.453461,0.017951,0.587983,0.290715,0.594012,0.218511,0.452725,0.408635,0.0293273,0.868936,0.686887,0.283807,0.621064,0.325152,0.66808,0.706018,0.646555,0.0572608,0.274886,0.320998,0.835547,0.858909,0.400255,0.314689,0.481479,0.236239,0.399693,0.379504,0.116072,0.805494,0.773181,0.382555,0.0261184,0.323093,0.435404,0.537923,0.706583,0.222451,0.884176,0.919227,0.101438,0.616583,0.71396,0.0953922,0.828171,0.0491822,0.885051,0.153072,0.32487,0.40983,0.485649,0.576033,0.61542,0.776814,0.833382,0.375641,0.286974,0.481071,0.617296,0.83584,0.433299,0.281807,0.773622,0.646684,0.951482,0.220165,0.71429,0.410787,0.463557,0.817055,0.647924,0.256024,0.0925577,0.369646,0.0267343,0.207238,0.803337,0.176024,0.117079,0.994293,0.976463,0.200444,0.0936854,0.562469,0.0674859,0.204643,0.682185,0.175718,0.156012,0.252752,0.035916,0.121759,0.271581,0.0620722,0.940179,0.166263,0.169501,0.0548984,0.952876,0.912218,0.19591,0.849236,0.268594,0.898356,0.280426,0.47094,0.783519,0.0807298,0.627268,0.949833,0.231478,0.968844,0.325521,0.235982,0.625227,0.0607459,0.0405579,0.393121,0.804009,0.325138,0.567801,0.644991,0.312702,0.491071,0.809806,0.627117,0.666249,0.908085,0.259739,0.505971,0.244471,0.463553,0.675273,0.52419,0.876006,0.337785,0.432942,0.660093,0.200445,0.4893,0.786119,0.000356674,0.941622,0.302326,0.704541,0.262819,0.169035,0.0111732,0.668691,0.814828,0.0202246,0.0727873,0.250473,0.502603,0.0616713,0.951009,0.382188,0.484683,0.395549,0.590032,0.19825,0.970058,0.247963,0.886744,0.249933,0.5711,0.85784,0.331012,0.382946,0.285863,0.333499,0.358788,0.343123,0.781847,0.444864,0.423401,0.235535,0.194048,0.814087,0.847098,0.35018,0.876928,0.809489,0.525565,0.84759,0.0851064,0.440569,0.679735,0.981773,0.63481,0.310635,0.802295,0.065882,0.664271,0.237992,0.64531,0.622863,0.0976629,0.343416,0.332718,0.372068,0.321779,0.480993,0.0251309,0.260352,0.157892,0.046011,0.524844,0.158993,0.663119,0.532049,0.384795,0.534952,0.345631,0.636728,0.325843,0.131199,0.504532,0.931046,0.116938,0.844828,0.839835,0.974762,0.551009,0.408575,0.0318714,0.871269,0.238549,0.581607,0.0351582,0.0830055,0.942461,0.573815,0.767751,0.52899,0.467621,0.754286,0.962563,0.58705,0.162163,0.554209,0.0400534,0.910105,0.535826,0.222746,0.562766,0.877174,0.593867,0.926399,0.369961,0.133247,0.127953,0.382808,0.92461,0.0386246,0.303763,0.690039,0.841732,0.617826,0.448244,0.338669,0.0644643,0.305402,0.912496,0.775801,0.944492,0.302641,0.769122,0.274698,0.772182,0.583442,0.33655,0.957182,0.0349478,0.271838,0.0649073,0.522822,0.446704,0.898676,0.857331,0.270793,0.84443,0.0308945,0.137524,0.627131,0.401277,0.102393,0.751973,0.0732985,0.0469757,0.292385,0.921119,0.103799,0.960455,0.111297,0.804247,0.364887,0.480029,0.731159,0.474977,0.617498,0.567427,0.490451,0.208878,0.380373,0.408428,0.167687,0.40327,0.049972,0.162941,0.393299,0.437241,0.950773,0.524224,0.819672,0.273997,0.316744,0.195828,0.292449,0.879929,0.376989,0.235991,0.405394,0.254477,0.0139551,0.281865,0.35893,0.0847401,0.150613,0.129093,0.125622,0.709132,0.770122,0.981902,0.415745,0.564218,0.184133,0.479544,0.515636,0.741782,0.91288,0.914213,0.724656,0.369608,0.00407189,0.610997,0.208044,0.948235,0.918981,0.672231,0.0362951,0.492361,0.538033,0.514685,0.654624,0.475016,0.130516,0.0152645,0.358827,0.564158,0.780332,0.0875247,0.447727,0.799523,0.185395,0.361637,0.127189,0.883965,0.113323,0.166543,0.141092,0.932346,0.044125,0.517554,0.786585,0.0605122,0.119827,0.222152,0.373275,0.158432,0.622079,0.80119,0.369611,0.776382,0.838406,0.57053,0.398812,0.908052,0.901375,0.965739,0.586537,0.0337123,0.880956,0.787394,0.770021,0.621335,0.158629,0.58815,0.273177,0.470091,0.187476,0.218907,0.0736055,0.914908,0.836963,0.175318,0.0125076,0.886729,0.0190188,0.758908,0.170372,0.0345305,0.798403,0.679625,0.968201,0.150068,0.170558,0.942203,0.217444,0.459621,0.749688,0.807034,0.928263,0.932036,0.382794,0.533921,0.815742,0.312154,0.211961,0.273631,0.270073,0.71286,0.603716,0.647968,0.302775,0.919751,0.99673,0.966696,0.427729,0.754135,0.0402963,0.272745,0.538614,0.507256,0.719797,0.303874,0.918211,0.0531383,0.915548,0.835985,0.340988,0.952665,0.761931,0.521446,0.166932,0.0386695,0.18557,0.539524,0.0865783,0.238668,0.42862,0.962619,0.788358,0.406751,0.254502,0.0605078,0.894083,0.653835,0.244435,0.474037,0.207445,0.788341,0.847605,0.727906,0.785117,0.0616422,0.773274,0.0406142,0.122515,0.420801,0.413116,0.232216,0.0229469,0.826075,0.560824,0.0332144,0.282227,0.421168,0.916045,0.0675977,0.505765,0.535557,0.449682,0.122273,0.188147,0.00102085,0.61541,0.605968,0.921961,0.288774,0.638572,0.406431,0.734647,0.614188,0.449027,0.42784,0.654035,0.964739,0.107027,0.817228,0.230018,0.195927,0.507232,0.674843,0.293494,0.813485,0.0974016,0.228953,0.802237,0.274195,0.768647,0.197165,0.557084,0.489463,0.878515,|0.461646,0.165547,0.060378,0.427255,0.1855,0.21746,0.179719,0.445536,0.495735,0.917065,0.949187,0.514948,0.0569198,0.949666,0.606902,0.514015,0.355399,0.51112,0.649838,0.110554,0.582475,0.542371,0.211625,0.767311,0.231106,0.828973,0.685527,0.832022,0.740247,0.266545,0.417372,0.0534875,0.0425418,0.54798,0.977574,0.248126,0.97674,0.332528,0.787596,0.63671,0.214667,0.299263,0.605223,0.608374,0.445803,0.232448,0.977914,0.520774,0.954372,0.734691,0.229197,0.00263363,0.135598,0.542666,0.891034,0.335208,0.703333,0.120702,0.492871,0.370502,0.901111,0.246184,0.476079,0.704721,0.39473,0.908581,0.976721,0.797517,0.961077,0.733701,0.537049,0.611967,0.781112,0.179209,0.0182942,0.524423,0.751697,0.42449,0.6044,0.539591,0.874179,0.325395,0.097392,0.47857,0.96048,0.979201,0.698124,0.697769,0.917356,0.397075,0.737563,0.460923,0.922476,0.650227,0.328725,0.919819,0.770965,0.0729538,0.825056,0.34737,0.651546,0.57442,0.578416,0.635851,0.410895,0.964436,0.411048,0.173492,0.923651,0.94071,0.303417,0.236324,0.77262,0.532261,0.772473,0.309177,0.383867,0.158542,0.129001,0.154689,0.861407,0.47983,0.148658,0.979992,0.942729,0.210062,0.320088,0.486328,0.508349,0.378355,0.835812,0.605833,0.792007,0.805026,0.693859,0.998772,0.0523806,0.805551,0.731182,0.733419,0.905635,0.100202,0.0908509,0.983733,0.314352,0.351782,0.762798,0.234935,0.790767,0.301783,0.251081,0.233564,0.956549,0.620517,0.355946,0.361571,0.34827,0.0373492,0.163123,0.0442795,0.43972,0.773942,0.625529,0.930619,0.925219,0.838592,0.288063,0.47364,0.102836,0.975188,0.638965,0.554523,0.314684,0.687881,0.154189,0.245591,0.612673,0.41806,0.147845,0.724719,0.171475,0.811071,0.338678,0.848824,0.470002,0.0120395,0.965034,0.252254,0.330995,0.433405,0.712497,0.168584,0.706401,0.92826,0.20001,0.352777,0.768072,0.48364,0.271111,0.00552809,0.169327,0.901333,0.505939,0.732381,0.750504,0.876457,0.689217,0.209416,0.474964,0.84289,0.175173,0.978509,0.00809062,0.153831,0.763017,0.658837,0.653743,0.144603,0.276089,0.952285,0.59857,0.313249,0.126118,0.224095,0.776164,0.879972,0.672697,0.357219,0.083974,0.236124,0.00389475,0.753993,0.869729,0.638832,0.585182,0.400881,0.247788,0.405863,0.802047,0.284416,0.054795,0.0868877,0.243117,0.327832,0.764811,0.957194,0.773836,0.669604,0.126534,0.366159,0.948393,0.166363,0.346013,0.327473,0.571997,0.398702,0.0452821,0.916936,0.845399,0.334246,0.821722,0.0601903,0.548245,0.193797,0.563086,0.354674,0.27523,0.6318,0.478591,0.65379,0.336703,0.12953,0.850609,0.990977,0.218454,0.0105159,0.262573,0.415643,0.63517,0.113242,0.514872,0.399508,0.82444,0.730372,0.0972505,0.153062,0.508419,0.13384,0.411606,0.616337,0.515212,0.817138,0.728154,0.322463,0.520347,0.00293332,0.96378,0.389206,0.912024,0.125914,0.74661,0.116023,0.539574,0.315331,0.0744778,0.516964,0.308973,0.905719,0.165917,0.0344254,0.659788,0.000472248,0.467683,0.666067,0.914152,0.236736,0.787118,0.100705,0.866712,0.373859,0.668862,0.557853,0.635906,0.650628,0.994722,0.516256,0.248393,0.971228,0.771612,0.371756,0.385864,0.949764,0.253977,0.0899964,0.67149,0.92423,0.58494,0.14875,0.858902,0.489428,0.329783,0.366987,0.506592,0.259473,0.0157831,0.187126,0.349676,0.952822,0.495902,0.638275,0.561909,0.625927,0.196136,0.0820953,0.609296,0.783543,0.272033,0.59948,0.27151,0.896362,0.695061,0.260075,0.494603,0.993577,0.94538,0.242338,0.569628,0.365881,0.482837,0.595714,0.0425187,0.597308,0.372166,0.437203,0.791619,0.501566,0.064469,0.643678,0.939278,0.592722,0.599484,0.0018416,0.212379,0.761894,0.677083,0.761068,0.227247,0.131911,0.7132,0.556349,0.171785,0.598931,0.175404,0.0583382,0.451509,0.327833,0.10879,0.578147,0.897865,0.860179,0.840896,0.334039,0.36787,0.946286,0.162486,0.61753,0.32895,0.0714595,0.778401,0.343282,0.523376,0.510677,0.942728,0.431165,0.458427,0.42602,0.588144,0.151166,0.56991,0.825013,0.225493,0.570355,0.176397,0.222318,0.695606,0.77524,0.252682,0.984091,0.745447,0.373269,0.734228,0.397207,0.164205,0.882558,0.87645,0.641276,0.241414,0.918142,0.332194,0.141133,0.957592,0.4613,0.387641,0.00858796,0.851116,0.765241,0.292545,0.864479,0.139555,0.254143,0.914206,0.4807,0.777837,0.20937,0.155568,0.66581,0.38092,0.765306,0.697875,0.745451,0.985025,0.486974,0.331494,0.0331519,0.0794702,0.908859,0.234334,0.228642,0.795182,0.137931,0.65299,0.700637,0.255786,0.333297,0.587672,0.321276,0.798192,0.181283,0.193572,0.896164,0.595152,0.87421,0.349162,0.0226375,0.241965,0.31929,0.0632967,0.161125,0.179492,0.853212,0.201878,0.376797,0.0832933,0.597134,0.694027,0.010578,0.382333,0.220527,0.302149,0.133128,0.938712,0.425951,0.444247,0.426254,0.0944926,0.33113,0.496815,0.705396,0.447106,0.212675,0.984928,0.905339,0.174531,0.802783,0.373617,0.762498,0.686799,0.133152,0.692534,0.534756,0.294131,0.328048,0.881679,0.000199556,0.422747,0.449113,0.0467454,0.418302,0.800932,0.312007,0.328181,0.0692178,0.859561,0.519794,0.5614,0.76253,0.390312,0.92058,0.364028,0.0634758,0.181961,0.29059,0.38867,0.683511,0.612396,0.135452,0.686168,0.93474,0.00506151,0.391255,0.927828,0.150871,0.338235,0.686664,0.444814,0.559862,0.339757,0.104333,0.867959,0.217987,0.0483602,0.0727995,0.79038,0.0198327,0.811379,0.645461,0.749583,0.17922,0.751284,0.0978069,0.919249,0.117307,0.293197,0.232369,0.909928,0.429841,0.912644,0.543846,0.0519678,0.931964,0.99515,0.609238,0.66391,0.630572,0.982798,0.338329,0.652745,0.487051,0.556166,0.0800741,0.0493942,0.479355,0.0116366,0.804004,0.108999,0.256362,0.687618,0.64601,0.603768,0.442086,0.576349,0.579496,0.868364,0.674707,0.475563,0.345936,0.57298,0.29256,0.868475,0.545326,0.185998,0.822375,0.896377,0.256002,0.598414,0.0579423,0.147914,0.256203,0.506014,0.130756,0.224433,0.661339,0.555844,0.860289,0.243071,0.139422,0.0691921,0.734458,0.0513456,0.277374,0.619373,0.392169,0.667919,0.108408,0.5933,0.931611,0.0790721,0.403205,0.900377,0.476474,0.850592,0.899048,0.783603,0.376609,0.478732,0.212197,0.0718961,0.595131,0.17798,0.301403,0.010274,0.108021,0.249406,0.137748,0.745238,0.662748,0.23237,0.464324,0.444696,0.779739,0.034925,0.539628,0.855959,0.110547,0.19201,0.934888,0.0891613,0.121747,0.420654,0.752372,0.015814,0.120438,0.392159,0.459086,0.352162,0.591727,0.166148,0.826932,0.441764,0.430546,0.329791,0.692367,0.286455,0.579766,0.0257579,0.250479,0.739874,0.367352,0.971864,0.671107,0.923187,0.367902,0.857173,0.862472,0.383589,0.501915,0.767942,0.354374,0.522737,0.431,0.0694969,0.268706,0.151069,0.931382,0.786756,0.178526,0.516571,0.36832,0.925333,0.545896,0.370527,0.749159,0.0471069,0.381104,0.481855,0.883964,0.56088,0.147406,0.778084,0.688087,0.317204,0.437491,0.599495,0.480616,0.996333,0.000277996,0.131554,0.119877,0.272948,0.23638,0.407334,0.0696346,0.764884,0.187072,0.991263,0.873238,0.349696,0.498141,0.20977,0.906125,0.665769,0.100136,0.887406,0.549351,0.272096,0.782341,0.444291,0.858079,0.0505332,0.821574,0.504463,0.0249294,0.209582,0.697771,0.0829387,0.944215,0.536023,0.501981,0.29175,0.673325,0.344163,0.107097,0.0755631,0.0114163,0.180918,0.807848,0.0520315,0.654893,0.584257,0.588966,0.403475,0.190514,0.229203,0.769743,0.394617,0.809429,0.732313,0.497427,0.850436,0.962102,0.495502,0.987964,0.738178,0.856367,0.573358,0.189008,0.0879245,0.568577,0.317654,0.264861,0.837568,0.948149,0.804309,0.822318,0.103109,0.272645,0.313027,0.551516,0.647416,0.0517538,0.310299,0.896363,0.658566,0.330888,0.198468,0.186497,0.627855,0.540055,0.676912,0.561411,0.485661,0.612697,0.124332,0.653492,0.652954,0.425599,0.726764,0.155585,0.99978,0.482781,0.885055,0.22815,0.956901,0.251116,0.069926,0.578825,0.95536,0.322249,0.308063,0.133712,0.749239,0.62292,0.46372,0.476971,0.709794,0.240694,0.399001,0.567452,0.964977,0.436822,0.749836,0.970545,0.685451,0.839842,0.806601,0.335379,0.86753,0.702097,0.171513,0.70943,0.480887,0.58502,0.546807,0.651509,0.744197,0.719437,0.563247,0.275041,0.267176,0.856623,0.532669,0.0438965,0.187874,0.0766879,0.184523,0.422047,0.188853,0.592851,0.378027,0.664237,0.0772281,0.351323,0.261948,0.699109,0.781481,0.666211,0.689263,0.112115,0.430194,0.533668,0.36205,0.675036,0.0518306,0.191674,0.542936,0.905307,0.472867,0.468652,0.237613,0.673868,0.974773,0.655936,0.228906,0.205722,0.0608324,0.114283,0.109888,0.497986,0.264716,0.587067,0.89699,0.55281,0.931622,0.684241,0.759575,0.424431,0.456532,0.849222,0.960645,0.505992,0.993683,0.309973,0.16294,0.935439,0.933711,0.212889,0.278739,0.890395,0.589681,0.0283649,0.839685,0.642022,0.975255,0.161999,0.0514818,0.783907,0.303326,0.0292185,0.234585,0.720109,0.954814,0.555191,0.128554,0.128068,0.557256,0.32508,0.54649,0.0475667,0.0422712,0.139049,0.74605,0.748813,0.168466,0.60595,0.334055,0.431914,0.544483,0.471841,0.841005,0.838414,0.866982,0.383576,0.334948,0.895061,0.198008,0.188779,0.881531,0.747493,0.188697,0.114275,0.537038,0.497432,0.432815,0.302177,0.513735,0.102304,0.038447,0.725493,0.260104,0.836942,0.356606,0.809789,0.482594,0.0401375,0.610426,0.574898,0.836941,0.346937,0.547907,0.943778,0.416578,0.570855,0.270438,0.539869,0.27272,0.62743,0.661712,0.602044,0.162789,0.936752,0.892208,0.872236,0.0662856,0.834511,0.444966,0.510794,0.637369,0.809785,0.158122,0.137213,|0.492606,0.548465,0.0428299,0.363006,0.607943,0.865598,0.329045,0.262751,0.855447,0.558015,0.391011,0.765406,0.224884,0.182179,0.844093,0.562132,0.675321,0.236302,0.081399,0.594024,0.574181,0.75901,0.377506,0.40257,0.0717086,0.189384,0.931226,0.72014,0.566287,0.549379,0.360406,0.277206,0.435375,0.947157,0.449347,0.487994,0.959061,0.245356,0.214159,0.417541,0.762218,0.430745,0.0717042,0.379645,0.622931,0.113359,0.644,0.569873,0.982586,0.0756558,0.0717497,0.884693,0.0565577,0.419018,0.587131,0.890926,0.946802,0.558267,0.669014,0.0922613,0.775908,0.636302,0.00201243,0.0184726,0.590927,0.75923,0.421552,0.754943,0.963697,0.188258,0.396139,0.25225,0.277056,0.154372,0.753441,0.007644,0.905532,0.288677,0.733726,0.0306824,0.553423,0.576427,0.259959,0.958816,0.0370101,0.194675,0.636419,0.802368,0.964722,0.411424,0.2146,0.260528,0.0909368,0.507458,0.420803,0.889582,0.900101,0.823071,0.954766,0.526542,0.316992,0.0356397,0.116936,0.107713,0.988388,0.382091,0.695062,0.145855,0.763435,0.307366,0.0181953,0.673398,0.723739,0.496018,0.598355,0.171403,0.919189,0.413597,0.318998,0.946327,0.717091,0.954041,0.901268,0.322916,0.697262,0.814387,0.818972,0.672359,0.488977,0.246921,0.0607036,0.910856,0.641802,0.0484381,0.798357,0.108785,0.177692,0.130632,0.628254,0.204112,0.552054,0.871125,0.362185,0.515987,0.29966,0.286614,0.654257,0.779172,0.40417,0.0624375,0.414285,0.645781,0.226002,0.877917,0.390507,0.939079,0.488421,0.884277,0.95283,0.742377,0.438417,0.948391,0.593939,0.670101,0.459537,0.0700272,0.129352,0.229312,0.694449,0.303344,0.229423,0.0324796,0.401792,0.967037,0.452843,0.0968064,0.580984,0.184284,0.692287,0.94412,0.754626,0.878287,0.337196,0.247025,0.22303,0.0478375,0.620343,0.58687,0.754314,0.956443,0.416649,0.0857919,0.920364,0.439441,0.435773,0.192754,0.197231,0.551492,0.891629,0.33759,0.0652496,0.0306648,0.224973,0.987066,0.76153,0.681416,0.674704,0.733289,0.211779,0.582271,0.654868,0.169676,0.743394,0.788573,0.183609,0.359755,0.933707,0.374638,0.930935,0.282175,0.0199606,0.266785,0.296523,0.894017,0.324776,0.0923906,0.902723,0.254114,0.174223,0.164302,0.659757,0.799341,0.0414087,0.504146,0.581242,0.362716,0.975725,0.47842,0.042792,0.0895568,0.328043,0.765258,0.746402,0.846734,0.524528,0.861776,0.226649,0.188515,0.404262,0.302168,0.0483092,0.474751,0.452619,0.819171,0.0803422,0.581684,0.868857,0.526665,0.00565165,0.755843,0.185788,0.275985,0.462793,0.855722,0.185728,0.409658,0.296738,0.38703,0.443632,0.48472,0.382828,0.259396,0.20577,0.92709,0.0593633,0.580234,0.980259,0.625686,0.646513,0.836649,0.761423,0.439013,0.0378173,0.378316,0.939986,0.625901,0.683016,0.248045,0.336888,0.929151,0.123389,0.0535094,0.144149,0.452085,0.988989,0.682303,0.3951,0.686922,0.694389,0.506824,0.361743,0.0581182,0.271448,0.743064,0.496975,0.604036,0.350117,0.793989,0.00886387,0.483778,0.690777,0.727513,0.678327,0.516526,0.197361,0.494531,0.823673,0.547849,0.271652,0.617314,0.458521,0.729432,0.730827,0.298015,0.506935,0.325437,0.981526,0.715695,0.274568,0.939254,0.145581,0.488643,0.952074,0.173724,0.513239,0.058056,0.954266,0.783166,0.939481,0.031905,0.694272,0.793546,0.164277,0.14624,0.80342,0.675148,0.665831,0.682368,0.52305,0.922094,0.908289,0.713877,0.585533,0.52179,0.741958,0.744312,0.939955,0.192911,0.81388,0.0676234,0.13907,0.967697,0.0529308,0.400037,0.736345,0.523605,0.22603,0.201724,0.864026,0.235591,0.5745,0.426087,0.77283,0.107511,0.150115,0.0974476,0.515662,0.579434,0.838432,0.454182,0.111405,0.776363,0.408154,0.965384,0.493973,0.118783,0.243012,0.241914,0.439915,0.916176,0.464538,0.892489,0.0522364,0.41329,0.413676,0.2782,0.936529,0.549444,0.298313,0.257012,0.712977,0.563301,0.802191,0.70009,0.699878,0.50358,0.351487,0.0678208,0.141395,0.061873,0.717592,0.745176,0.732772,0.965629,0.0771999,0.242925,0.633247,0.232327,0.880917,0.267454,0.492081,0.277763,0.883359,0.741658,0.533583,0.147499,0.488922,0.299567,0.986994,0.0671065,0.940116,0.216154,0.425922,0.723858,0.954751,0.00517517,0.223394,0.83746,0.914541,0.484652,0.32771,0.397463,0.0956687,0.617037,0.575362,0.0683302,0.178727,0.811113,0.639473,0.737913,0.350175,0.773803,0.706726,0.213588,0.636334,0.835042,0.889426,0.924744,0.135361,0.450879,0.797292,0.862078,0.0873314,0.962667,0.973216,0.979182,0.343279,0.252234,0.973642,0.0970755,0.650675,0.20273,0.861111,0.711486,0.432515,0.569005,0.505395,0.211105,0.700478,0.876381,0.0567409,0.644155,0.378223,0.422487,0.983983,0.970168,0.284383,0.500302,0.537421,0.91947,0.995422,0.203559,0.144921,0.876538,0.391848,0.710629,0.382449,0.0833143,0.907588,0.864565,0.276086,0.436176,0.520402,0.133237,0.226421,0.255401,0.770947,0.539394,0.266813,0.130813,0.030897,0.328728,0.190576,0.165552,0.324819,0.675752,0.314327,0.585738,0.237507,0.894201,0.108914,0.683579,0.976091,0.0372666,0.182629,0.891011,0.970134,0.678993,0.388139,0.654985,0.205138,0.158527,0.544212,0.468741,0.340635,0.89344,0.857062,0.481298,0.836534,0.464725,0.207613,0.318538,0.843581,0.890164,0.635862,0.166317,0.83935,0.723148,0.615782,0.896689,0.869856,0.248676,0.0701895,0.76317,0.513821,0.199235,0.0111924,0.83717,0.904959,0.424492,0.191664,0.330166,0.0799869,0.916558,0.797565,0.211734,0.610418,0.300508,0.244971,0.945038,0.623307,0.69203,0.0330799,0.167828,0.980972,0.380754,0.77363,0.375485,0.0909142,0.705725,0.8864,0.204359,0.0159006,0.58501,0.224075,0.519864,0.869689,0.307096,0.020634,0.214373,0.492175,0.665672,0.795891,0.52062,0.597639,0.312047,0.173072,0.248451,0.473627,0.0801432,0.405453,0.399081,0.00969696,0.79689,0.787746,0.418473,0.864948,0.368412,0.336426,0.653849,0.304603,0.552656,0.697299,0.353939,0.607777,0.132315,0.519762,0.454017,0.286384,0.700586,0.426948,0.749631,0.933767,0.933582,0.837952,0.870404,0.609769,0.533162,0.128072,0.273277,0.0636062,0.676633,0.0411544,0.374429,0.578437,0.568824,0.855494,0.0700998,0.773415,0.387772,0.805296,0.746139,0.28592,0.125482,0.800802,0.18806,0.717434,0.0682055,0.962017,0.910368,0.279602,0.148934,0.938924,0.693035,0.211314,0.0537544,0.281232,0.663051,0.558942,0.416366,0.632697,0.541885,0.410339,0.332097,0.357586,0.106588,0.39942,0.202926,0.620846,0.802461,0.593459,0.171687,0.422655,0.113102,0.0340364,0.325728,0.142933,0.206459,0.824403,0.240659,0.139466,0.553949,0.623876,0.198597,0.618461,0.0797547,0.469229,0.6143,0.438702,0.606063,0.541161,0.579508,0.367551,0.6816,0.387738,0.928126,0.0659992,0.0963557,0.565357,0.59732,0.0494352,0.969937,0.741396,0.112316,0.026857,0.37792,0.134721,0.614534,0.9255,0.413497,0.529184,0.034517,0.428444,0.288445,0.27444,0.443042,0.12975,0.264926,0.703127,0.322835,0.51715,0.0751572,0.620535,0.256458,0.290551,0.681896,0.530888,0.941978,0.283874,0.0649592,0.98552,0.685174,0.323867,0.412242,0.720799,0.921401,0.75031,0.739748,0.735693,0.355393,0.236742,0.707846,0.681918,0.991633,0.998524,0.0696297,0.781603,0.664742,0.3859,0.272224,0.189632,0.698135,0.149532,0.138342,0.381152,0.48595,0.644495,0.644371,0.278879,0.169336,0.0645659,0.412627,0.35968,0.906325,0.0489788,0.172164,0.306319,0.922718,0.648319,0.276617,0.686523,0.44419,0.664237,0.994164,0.305704,0.877017,0.640317,0.914029,0.253279,0.111988,0.944749,0.172083,0.608221,0.42149,0.202346,0.615948,0.354821,0.11935,0.317076,0.755792,0.177492,0.148669,0.807307,0.812976,0.727822,0.0628884,0.807613,0.0664389,0.184944,0.0658743,0.79706,0.469575,0.853288,0.697999,0.762787,0.471004,0.153578,0.661825,0.639027,0.923242,0.146965,0.456661,0.193963,0.360634,0.849575,0.49504,0.560139,0.794421,0.437796,0.375143,0.859398,0.59806,0.740315,0.745133,0.172387,0.486414,0.919969,0.731668,0.160662,0.558079,0.792201,0.145727,0.16809,0.350749,0.558238,0.0697362,0.554611,0.937642,0.899244,0.395687,0.544532,0.418318,0.487631,0.279869,0.268274,0.128987,0.513447,0.811815,0.115121,0.520922,0.13565,0.100331,0.347701,0.767793,0.752863,0.069189,0.140695,0.63526,0.0924299,0.764322,0.992655,0.782647,0.479237,0.959088,0.167481,0.411193,0.991927,0.167881,0.610238,0.777452,0.423052,0.419331,0.677957,0.147762,0.375384,0.291989,0.364984,0.541818,0.852373,0.448801,0.0608048,0.392332,0.573193,0.238609,0.0222929,0.750556,0.183619,0.807763,0.293503,0.409826,0.751094,0.364298,0.850754,0.80639,0.941505,0.262745,0.999378,0.15999,0.11325,0.240614,0.97681,0.977561,0.356183,0.0520026,0.271851,0.226773,0.691605,0.617466,0.79904,0.969872,0.141751,0.724107,0.236224,0.391193,0.47538,0.501131,0.403621,0.391156,0.200856,0.0550498,0.598245,0.759333,0.193974,0.685279,0.760368,0.795677,0.00993276,0.963552,0.798176,0.22851,0.729414,0.27992,0.306887,0.0640965,0.127973,0.810469,0.80499,0.315317,0.924091,0.466336,0.62637,0.573859,0.590231,0.320019,0.195605,0.81775,0.369609,0.451749,0.441671,0.606467,0.276335,0.428154,0.083751,0.928056,0.349064,0.227085,0.578343,0.177422,0.91069,0.75602,0.441019,0.731439,0.0766147,0.185299,0.426169,0.931962,0.204872,0.380875,0.23251,0.97565,0.70229,0.81563,0.585432,0.016111,0.695203,0.678351,0.792323,0.494842,0.86715,0.139688,0.944166,0.913436,0.0520251,0.321334,0.813819,0.144657,0.874395,0.432446,0.800818,0.979039,0.717783,0.851418,0.573598,0.589006,0.686073,0.666415,0.53487,0.497301,0.151571,0.972063,|0.31996,0.499657,0.218773,0.654436,0.206546,0.818515,0.625683,0.901278,0.111882,0.418051,0.529741,0.825557,0.297581,0.957556,0.220376,0.600882,0.375614,0.455085,0.643571,0.183881,0.459229,0.837736,0.052095,0.522696,0.993667,0.619964,0.744076,0.0812577,0.138736,0.187387,0.117356,0.9499,0.460915,0.58121,0.891296,0.026,0.227043,0.704291,0.41227,0.95138,0.831494,0.209117,0.531417,0.491449,0.697578,0.331906,0.446615,0.965949,0.146023,0.879498,0.481954,0.684635,0.218183,0.386066,0.440264,0.589884,0.598257,0.105197,0.888099,0.178602,0.102922,0.736206,0.704447,0.939919,0.441872,0.652515,0.197307,0.315132,0.252974,0.232959,0.478674,0.798568,0.992269,0.435199,0.268131,0.674899,0.557137,0.894365,0.287636,0.128426,0.0791192,0.522339,0.145751,0.713506,0.492894,0.0244902,0.0565944,0.914676,0.660577,0.333679,0.337113,0.131404,0.390635,0.8525,0.403768,0.604239,0.0642294,0.561845,0.25527,0.975205,0.72485,0.77136,0.493274,0.964123,0.325557,0.220062,0.265314,0.852578,0.481803,0.491506,0.174432,0.142592,0.460367,0.397157,0.445365,0.681441,0.371354,0.680593,0.0125892,0.564831,0.241091,0.428876,0.47903,0.83924,0.986903,0.986424,0.901774,0.193381,0.294177,0.763746,0.594984,0.231519,0.141227,0.709789,0.252276,0.716251,0.672066,0.36245,0.516906,0.81725,0.656004,0.119602,0.450012,0.675178,0.034545,0.098538,0.105816,0.577781,0.105291,0.472936,0.395795,0.401195,0.653969,0.30785,0.147007,0.31304,0.533833,0.335202,0.31732,0.0204011,0.917978,0.743023,0.740931,0.237748,0.00699705,0.874569,0.686219,0.997645,0.790558,0.399524,0.667984,0.114123,0.357084,0.432893,0.60084,0.474028,0.507567,0.445256,0.985194,0.0877748,0.285609,0.322501,0.558725,0.161143,0.698732,0.0625187,0.31469,0.679511,0.4693,0.123435,0.831431,0.236472,0.0833932,0.266604,0.308889,0.977552,0.212434,0.959165,0.900705,0.803088,0.707465,0.86055,0.0384696,0.298834,0.904774,0.297243,0.876821,0.371964,0.501764,0.659684,0.0538741,0.879702,0.987262,0.779929,0.792578,0.543636,0.98675,0.0698782,0.864474,0.633485,0.742461,0.835702,0.0493877,0.137546,0.228322,0.864125,0.275232,0.718308,0.801595,0.844561,0.846946,0.681809,0.360078,0.575637,0.855307,0.525467,0.997252,0.0258835,0.207229,0.0800657,0.723701,0.537936,0.546034,0.595596,0.439831,0.483993,0.460928,0.327635,0.8916,0.577928,0.2511,0.121144,0.884038,0.304211,0.0220141,0.77786,0.583323,0.293628,0.0315361,0.736696,0.13868,0.610852,0.243167,0.28169,0.305521,0.383448,0.500667,0.0934783,0.831713,0.854342,0.0287241,0.000317216,0.843359,0.4713,0.111489,0.609065,0.201474,0.738333,0.329953,0.492365,0.231129,0.681446,0.776696,0.349648,0.320048,0.734613,0.812004,0.512004,0.516576,0.266747,0.700904,0.815509,0.291489,0.535054,0.596738,0.239337,0.837172,0.60213,0.51863,0.979465,0.0862605,0.729685,0.0848495,0.471715,0.661514,0.540128,0.0586277,0.0557629,0.737236,0.253192,0.53803,0.72173,0.423105,0.0282047,0.855566,0.420589,0.157961,0.159928,6.00815e-05,0.84533,0.769357,0.431008,0.68423,0.989435,0.452543,0.832212,0.388206,0.9798,0.0912807,0.398808,0.855136,0.110452,0.747557,0.840406,0.245139,0.0397604,0.691794,0.44909,0.433333,0.171712,0.177737,0.81497,0.146469,0.932671,0.708613,0.189489,0.802015,0.768459,0.18389,0.148571,0.198211,0.177775,0.701126,0.713654,0.202043,0.384451,0.86883,0.962085,0.284921,0.104438,0.968279,0.505513,0.944594,0.349088,0.166988,0.742789,0.988887,0.950506,0.656588,0.365524,0.0151825,0.618203,0.801961,0.302559,0.427483,0.664348,0.671852,0.530373,0.507788,0.385141,0.86231,0.393687,0.471636,0.560373,0.436003,0.765404,0.133808,0.978607,0.771271,0.758098,0.276506,0.268825,0.713006,0.311549,0.506782,0.845695,0.14268,0.309531,0.200211,0.324068,0.685995,0.744293,0.426787,0.709252,0.819509,0.755621,0.994513,0.492373,0.154828,0.74377,0.444919,0.572258,0.408812,0.451164,0.760689,0.974967,0.555606,0.255891,0.681445,0.262586,0.658151,0.189136,0.579686,0.585247,0.936702,0.196353,0.390788,0.532253,0.597892,0.831429,0.123038,0.53066,0.164309,0.13099,0.481198,0.803578,0.835435,0.177494,0.656202,0.928093,0.244747,0.00998616,0.283675,0.171274,0.78772,0.904229,0.211688,0.870706,0.447553,0.83011,0.246252,0.786282,0.333554,0.772401,0.246321,0.556045,0.741703,0.923233,0.948786,0.368642,0.776866,0.76402,0.245695,0.298714,0.953866,0.746981,0.659902,0.822309,0.857091,0.245433,0.0161516,0.888924,0.632743,0.307785,0.547461,0.735015,0.0243399,0.966412,0.546564,0.518906,0.0594113,0.803569,0.926676,0.166048,0.984464,0.245087,0.44158,0.830255,0.389767,0.742338,0.743958,0.764162,0.350767,0.782994,0.865606,0.560271,0.484547,0.123058,0.061103,0.205453,0.825215,0.615427,0.856527,0.172041,0.992671,0.509468,0.530596,0.176348,0.109745,0.271705,0.936394,0.666101,0.309881,0.789108,0.0905063,0.962999,0.822292,0.920793,0.354249,0.168583,0.528563,0.124394,0.416186,0.962411,0.784129,0.287919,0.191402,0.687558,0.385373,0.920443,0.796213,0.243834,0.338525,0.612702,0.604514,0.395922,0.800109,0.350669,0.979265,0.322353,0.423263,0.484975,0.931063,0.230256,0.712247,0.0122069,0.719255,0.658632,0.685988,0.406506,0.460109,0.570679,0.705128,0.575156,0.828598,0.863833,0.9248,0.753831,0.806955,0.510332,0.0487162,0.445877,0.542034,0.0253979,0.182442,0.0644482,0.955177,0.572421,0.831897,0.197187,0.530893,0.56497,0.167194,0.0450383,0.145933,0.819395,0.895257,0.888297,0.0828348,0.776407,0.74675,0.548839,0.500129,0.44845,0.425662,0.756377,0.987066,0.95075,0.548252,0.947547,0.563238,0.685545,0.650913,0.0442,0.955906,0.49024,0.366358,0.680589,0.656398,0.0986142,0.0219983,0.041028,0.500045,0.964539,0.120961,0.301676,0.55744,0.129141,0.704249,0.950789,0.306614,0.474466,0.548037,0.897142,0.65491,0.193806,0.826922,0.0438895,0.365534,0.0125505,0.126436,0.614001,0.971906,0.365629,0.640911,0.899169,0.287687,0.756966,0.989523,0.721478,0.437756,0.259526,0.221556,0.388968,0.860848,0.815776,0.901631,0.106951,0.725327,0.111756,0.282829,0.942305,0.769233,0.8767,0.778706,0.312701,0.150539,0.404307,0.307137,0.666896,0.790032,0.930995,0.676416,0.0982552,0.591209,0.0366002,0.546675,0.670805,0.897214,0.386872,0.944536,0.70036,0.915828,0.771559,0.113273,0.830103,0.79517,0.6574,0.311351,0.525343,0.419831,0.151378,0.65476,0.4266,0.188333,0.578074,0.258644,0.0482029,0.444941,0.547656,0.14031,0.173913,0.42407,0.772553,0.054359,0.98855,0.733791,0.0347745,0.838213,0.291705,0.871281,0.32268,0.626068,0.608184,0.609705,0.726887,0.70491,0.696512,0.0341553,0.500163,0.644064,0.908167,0.56624,0.209712,0.340677,0.737262,0.661124,0.796716,0.755833,0.845494,0.35223,0.402574,0.099461,0.0950991,0.942102,0.409594,0.928812,0.804652,0.957261,0.542226,0.827539,0.185336,0.204815,0.320084,0.291253,0.534064,0.237947,0.434124,0.0193279,0.282415,0.17841,0.108119,0.442349,0.368891,0.0884154,0.304203,0.0761757,0.940496,0.801856,0.185637,0.104373,0.430207,0.389462,0.581525,0.180689,0.312211,0.684056,0.0977411,0.0308822,0.39556,0.245248,0.282111,0.729844,0.660998,0.39037,0.993231,0.575702,0.624581,0.499023,0.281875,0.713193,0.226439,0.914297,0.539103,0.733867,0.957216,0.771413,0.799319,0.898977,0.956955,0.23858,0.274517,0.745629,0.699316,0.184155,0.492601,0.877769,0.00521332,0.308475,0.14085,0.955908,0.304452,0.79572,0.282578,0.519225,0.893706,0.610887,0.380458,0.447928,0.949088,0.878761,0.838295,0.794447,0.792542,0.337979,0.789962,0.564648,0.473984,0.868912,0.985462,0.319901,0.159647,0.758669,0.759992,0.759292,0.811678,0.988328,0.111971,0.568521,0.625313,0.358305,0.123504,0.566269,0.125693,0.794843,0.272459,0.164405,0.811706,0.121536,0.586616,0.132118,0.774271,0.11868,0.986659,0.0223653,0.777276,0.350714,0.474624,0.777579,0.801341,0.12961,0.0741496,0.919406,0.997837,0.791764,0.372971,0.667032,0.543744,0.0789085,0.663518,0.141461,0.183467,0.464488,0.603091,0.645661,0.974444,0.839748,0.884314,0.0819101,0.440334,0.457576,0.28141,0.63665,0.907681,0.0777506,0.766052,0.291699,0.279981,0.0133215,0.327755,0.462177,0.41581,0.904716,0.109905,0.454396,0.563346,0.0466246,0.126544,0.431234,0.733992,0.130217,0.0250555,0.20224,0.792099,0.329634,0.954125,0.921793,0.519806,0.282739,0.428244,0.402213,0.80165,0.116426,0.253917,0.832655,0.31537,0.815418,0.430232,0.344207,0.705905,0.554676,0.155155,0.643625,0.300804,0.884618,0.105029,0.607936,0.273589,0.772304,0.903396,0.539647,0.748603,0.435289,0.545902,0.311549,0.753162,0.707659,0.302579,0.813607,0.255011,0.737507,0.12875,0.266668,0.549939,0.0197205,0.204767,0.38173,0.986581,0.964857,0.244358,0.357232,0.0513844,0.422315,0.91337,0.683879,0.322796,0.940475,0.313526,0.458439,0.128331,0.458683,0.557382,0.146128,0.146669,0.205299,0.226083,0.240143,0.628824,0.528337,0.507792,0.379782,0.334031,0.552915,0.824933,0.892192,0.0669959,0.0392573,0.203012,0.91935,0.507328,0.811555,0.822884,0.925103,0.0307927,0.331166,0.435586,0.435567,0.957485,0.204437,0.0238493,0.672102,0.0179474,0.695393,0.751983,0.258441,0.174953,0.167176,0.600909,0.240896,0.90366,0.82666,0.616167,0.659682,0.101247,0.0887896,0.0917714,0.855022,0.908054,0.633432,0.159362,0.941717,0.343548,0.457346,0.79074,0.82563,0.633516,0.980243,0.0845432,0.560121,0.699327,0.680713,0.906806,0.849729,0.247569,0.781363,0.582922,0.268051,0.126126,0.992906,0.322078,|0.689012,0.27134,0.30532,0.209451,0.287009,0.902516,0.782899,0.303918,0.567897,0.846781,0.797603,0.934516,0.325461,0.619769,0.245086,0.425836,0.176053,0.821726,0.631937,0.987686,0.175309,0.199683,0.00421333,0.857583,0.519259,0.0646847,0.154959,0.991867,0.881907,0.98976,0.480558,0.294195,0.370374,0.970706,0.226875,0.778436,0.537546,0.225546,0.600524,0.763883,0.259636,0.997209,0.927165,0.746986,0.397262,0.852576,0.31161,0.833322,0.467962,0.823317,0.569509,0.0918191,0.67957,0.223069,0.587191,0.665383,0.169652,0.30293,0.741445,0.00254852,0.833931,0.538336,0.472968,0.00576824,0.467404,0.588111,0.641022,0.841206,0.42321,0.349606,0.353728,0.780496,0.103093,0.637195,0.514209,0.882091,0.478001,0.329886,0.764686,0.750634,0.981012,0.679344,0.693639,0.299776,0.595598,0.451203,0.259843,0.531086,0.353736,0.956037,0.728745,0.965721,0.325474,0.411304,0.0213103,0.172358,0.721378,0.520841,0.552366,0.489942,0.481875,0.242967,0.812805,0.0256741,0.113547,0.76392,0.91837,0.207497,0.29297,0.294268,0.752788,0.928985,0.0841129,0.923671,0.992194,0.326959,0.335306,0.219908,0.720292,0.0441136,0.335015,0.358789,0.676811,0.547841,0.159158,0.65146,0.730421,0.728407,0.0757569,0.599888,0.811878,0.173186,0.729651,0.563539,0.503345,0.565175,0.146616,0.493484,0.0546371,0.676058,0.639502,0.617211,0.424888,0.899765,0.136413,0.298902,0.43009,0.486735,0.077343,0.791772,0.501684,0.0938053,0.657445,0.888712,0.998749,0.541738,0.249006,0.1402,0.604918,0.432849,0.892782,0.329593,0.432645,0.452616,0.762816,0.337234,0.847738,0.376052,0.538742,0.0458065,0.522878,0.917031,0.456179,0.911387,0.539796,0.938349,0.555333,0.321557,0.688775,0.959264,0.514927,0.923167,0.838982,0.881931,0.422629,0.555413,0.254229,0.1019,0.869516,0.576744,0.763517,0.400156,0.215665,0.444296,0.0412476,0.263389,0.283807,0.795449,0.124238,0.981197,0.123626,0.653683,0.0801135,0.591701,0.92635,0.618609,0.196028,0.957428,0.35658,0.727153,0.263361,0.288101,0.982421,0.256353,0.348706,0.0303855,0.914384,0.250047,0.476683,0.998663,0.442773,0.0485495,0.250616,0.0179471,0.205198,0.0119156,0.891581,0.182533,0.372987,0.938574,0.651776,0.822739,0.0410019,0.797967,0.972304,0.209764,0.90251,0.578535,0.654698,0.156913,0.970731,0.529849,0.584646,0.294095,0.365266,0.484509,0.927787,0.347845,0.399972,0.889697,0.69365,0.459813,0.833924,0.739392,0.176094,0.184511,0.00190258,0.497362,0.702534,0.262913,0.337383,0.87342,0.427975,0.255302,0.418544,0.985784,0.769551,0.261162,0.0278872,0.134321,0.103692,0.552527,0.183128,0.942851,0.0381062,0.974194,0.590357,0.511901,0.623944,0.478575,0.566509,0.351086,0.734544,0.587678,0.770849,0.0751327,0.317773,0.624478,0.38144,0.359754,0.132756,0.272279,0.689858,0.79663,0.494386,0.825935,0.115022,0.300693,0.109505,0.528999,0.38462,0.946762,0.641186,0.0112008,0.356768,0.235473,0.916499,0.416159,0.267685,0.644939,0.986134,0.770986,0.173892,0.704491,0.309885,0.042452,0.894579,0.00380915,0.0166861,0.744091,0.939486,0.827499,0.556739,0.286124,0.977247,0.406093,0.171135,0.57701,0.592036,0.553699,0.218613,0.740448,0.0239774,0.170421,0.0232301,0.988814,0.599144,0.560667,0.0682397,0.348733,0.399926,0.936187,0.53178,0.595818,0.659437,0.352794,0.329258,0.788016,0.580792,0.569539,0.27361,0.517904,0.842912,0.0861701,0.853924,0.417654,0.191316,0.556208,0.676057,0.374152,0.86903,0.101795,0.887734,0.586107,0.754761,0.860213,0.197709,0.142648,0.854362,0.245065,0.903347,0.91877,0.82838,0.609014,0.650737,0.505533,0.0723746,0.918609,0.728853,0.14253,0.429887,0.589509,0.484699,0.482424,0.308501,0.674455,0.551316,0.906058,0.521922,0.451255,0.742086,0.0938284,0.199132,0.0171207,0.163268,0.422823,0.827308,0.818399,0.645427,0.944014,0.44262,0.838776,0.513609,0.299154,0.525118,0.0673219,0.115664,0.560918,0.225743,0.441809,0.358561,0.317853,0.28521,0.852672,0.0537405,0.0333414,0.318011,0.549535,0.623207,0.418208,0.880419,0.905322,0.508364,0.850375,0.674628,0.309143,0.713876,0.446975,0.693403,0.733484,0.125835,0.378207,0.752234,0.725017,0.813874,0.377654,0.258741,0.430344,0.754213,0.252548,0.0165361,0.850591,0.601698,0.643474,0.473649,0.544959,0.928722,0.752165,0.0778626,0.403902,0.0612457,0.103031,0.322528,0.819569,0.455918,0.877783,0.79394,0.75645,0.601303,0.922339,0.440188,0.819514,0.237051,0.300529,0.183814,0.182258,0.549794,0.565605,0.158527,0.0839727,0.562726,0.639676,0.0317405,0.771018,0.104793,0.942334,0.487549,0.979125,0.830618,0.322492,0.407194,0.580681,0.830984,0.352591,0.665851,0.104539,0.896116,0.201399,0.322819,0.472723,0.644453,0.348076,0.970408,0.820378,0.588743,0.167899,0.715379,0.898754,0.466679,0.0573799,0.553152,0.541028,0.320659,0.96688,0.433245,0.39878,0.553499,0.382572,0.682279,0.0697309,0.421791,0.728937,0.222817,0.588919,0.904581,0.638619,0.714404,0.436645,0.910862,0.551846,0.939542,0.246608,0.58393,0.977594,0.511004,0.578927,0.195837,0.874264,0.582792,0.65509,0.766362,0.629017,0.949728,0.731774,0.125325,0.200132,0.387561,0.554675,0.962712,0.345097,0.470211,0.24854,0.744098,0.729813,0.110202,0.642641,0.48831,0.162994,0.588142,0.658199,0.110375,0.282344,0.692798,0.8289,0.958113,0.30415,0.761295,0.289097,0.598943,0.511879,0.953525,0.893836,0.074596,0.508692,0.979097,0.243638,0.46895,0.054023,0.00369227,0.358649,0.806637,0.319054,0.744406,0.869667,0.723347,0.869492,0.217855,0.116338,0.311604,0.294931,0.538178,0.24827,0.131789,0.0139656,0.893493,0.00523895,0.236881,0.633808,0.205469,0.842439,0.303948,0.45728,0.595825,0.732932,0.16162,0.0411672,0.102981,0.311135,0.818149,0.163643,0.584788,0.817151,0.196168,0.700382,0.822483,0.153163,0.700382,0.596774,0.153569,0.715477,0.0673353,0.26463,0.222995,0.305299,0.115201,0.207902,0.160728,0.999875,0.418583,0.0512174,0.264701,0.596883,0.973736,0.178812,0.454118,0.834225,0.836513,0.602726,0.751134,0.135801,0.839426,0.625364,0.0608006,0.295854,0.577083,0.855859,0.315363,0.204606,0.28707,0.418762,0.255504,0.934653,0.579765,0.3621,0.14747,0.705959,0.919504,0.0673122,0.731786,0.106907,0.828681,0.432725,0.912442,0.449216,0.871389,0.58069,0.922016,0.17303,0.586009,0.512431,0.552066,0.671476,0.123701,0.154965,0.604348,0.611959,0.671668,0.91814,0.218928,0.850326,0.034533,0.721179,0.411971,0.746955,0.83868,0.102789,0.94156,0.0746214,0.378891,0.150124,0.688106,0.565416,0.89474,0.544758,0.75203,0.138013,0.00662678,0.0514861,0.818493,0.623016,0.216553,0.743969,0.802414,0.638103,0.199733,0.779555,0.306039,0.560388,0.086531,0.280728,0.0768868,0.66415,0.714891,0.76999,0.989758,0.216799,0.418211,0.129214,0.220137,0.945302,0.170892,0.326968,0.814562,0.147495,0.813603,0.758718,0.339201,0.413884,0.673145,0.883717,0.616617,0.120846,0.934196,0.670047,0.604717,0.816165,0.743038,0.133294,0.228476,0.940586,0.0337177,0.335318,0.370278,0.393108,0.756055,0.885702,0.0122803,0.340464,0.697477,0.731068,0.892566,0.216434,0.153995,0.121784,0.454301,0.928518,0.0248345,0.0303788,0.173303,0.573124,0.734218,0.426303,0.946306,0.422331,0.665539,0.707877,0.624561,0.0293057,0.189273,0.614481,0.0408045,0.598045,0.964166,0.0201253,0.396893,0.48642,0.0778846,0.818546,0.526814,0.397586,0.081026,0.943497,0.375025,0.385681,0.386444,0.208337,0.67524,0.994262,0.879657,0.709135,0.607931,0.42652,0.469471,0.908493,0.113549,0.924201,0.368543,0.600263,0.549577,0.614267,0.459282,0.0360873,0.846371,0.0333207,0.322042,0.130704,0.996404,0.0355583,0.385122,0.337035,0.948334,0.346,0.206707,0.905829,0.175325,0.751424,0.416477,0.286817,0.815722,0.778059,0.331659,0.781886,0.923641,0.756015,0.529679,0.904947,0.782586,0.576546,0.783782,0.656457,0.242799,0.819524,0.0165666,0.422447,0.988467,0.490584,0.887807,0.573136,0.0598532,0.532574,0.00598705,0.171317,0.34244,0.17362,0.57154,0.165145,0.635458,0.245876,0.593814,0.913802,0.0140586,0.727682,0.505666,0.10459,0.35395,0.693553,0.125084,0.0943617,0.42609,0.405445,0.715936,0.71351,0.108136,0.994434,0.953437,0.620325,0.667504,0.454869,0.387134,0.317078,0.221058,0.284662,0.0945334,0.593917,0.81154,0.41261,0.205877,0.740038,0.213609,0.0973628,0.537772,0.589053,0.759694,0.898438,0.73876,0.763994,0.216317,0.474676,0.734918,0.272113,0.201459,0.17047,0.236855,0.222328,0.148495,0.863878,0.474501,0.261726,0.724607,0.634303,0.343398,0.920532,0.884702,0.755497,0.627515,0.980428,0.979329,0.724802,0.486528,0.305611,0.0348777,0.213906,0.0519499,0.876426,0.420569,0.735512,0.957439,0.0478507,0.265036,0.763005,0.683533,0.348516,0.365805,0.9409,0.271778,0.410624,0.24368,0.304141,0.0127776,0.73387,0.995066,0.342761,0.348001,0.944567,0.617575,0.0883945,0.446303,0.816253,0.491724,0.47052,0.124683,0.242374,0.985651,0.826837,0.147157,0.802058,0.337488,0.72782,0.502543,0.278026,0.398989,0.0762642,0.134741,0.377999,0.27431,0.949811,0.719711,0.616813,0.462384,0.330853,0.0600237,0.508874,0.302069,0.276427,0.65749,0.114277,0.556374,0.589433,0.89379,0.789438,0.834753,0.766828,0.491397,0.270892,0.240496,0.536155,0.95277,0.314739,0.792231,0.0527105,0.803953,0.355906,0.146193,0.503149,0.983113,0.555292,0.629802,0.454031,0.104357,0.545906,0.417704,0.789172,0.971081,0.76479,0.426289,0.253314,0.112702,0.0708666,0.223849,0.0541561,0.186751,0.701715,0.378662,0.987755,0.133785,0.25989,0.558463,0.721632,0.415567,0.407651,|0.588291,0.438866,0.942116,0.0920502,0.762895,0.644428,0.0519039,0.643102,0.148363,0.666365,0.868415,0.314574,0.204706,0.336874,0.236064,0.50125,0.452772,0.463638,0.969257,0.901965,0.816102,0.117782,0.867664,0.524983,0.547921,0.975191,0.870302,0.253826,0.0888221,0.164616,0.861753,0.791644,0.670633,0.933811,0.166313,0.0671562,0.214276,0.832398,0.764742,0.278252,0.186575,0.0192639,0.566839,0.867098,0.712375,0.28605,0.612514,0.968352,0.163042,0.141882,0.789686,0.655201,0.788629,0.466838,0.328203,0.183559,0.209084,0.905879,0.105354,0.642736,0.988281,0.301656,0.284984,0.131516,0.185582,0.0695651,0.917876,0.48951,0.346945,0.478471,0.00500923,0.00164115,0.931136,0.148859,0.00104153,0.258829,0.515917,0.396476,0.49793,0.509797,0.628879,0.57913,0.800027,0.168238,0.720742,0.598669,0.927919,0.950458,0.50641,0.5662,0.986574,0.174023,0.759655,0.00563431,0.614473,0.243952,0.185314,0.630024,0.95228,0.627595,0.279963,0.976818,0.695418,0.620173,0.572999,0.588896,0.410843,0.111381,0.987151,0.723611,0.279118,0.799936,0.230927,0.052559,0.851798,0.0151451,0.7519,0.432662,0.935543,0.877377,0.945989,0.176268,0.862173,0.816024,0.00412965,0.259359,0.521657,0.602348,0.47006,0.893459,0.969585,0.588526,0.739621,0.464802,0.0971439,0.0366657,0.407769,0.198882,0.932421,0.299117,0.253394,0.207727,0.799425,0.671807,0.449782,0.821281,0.317863,0.523397,0.308974,0.527183,0.502717,0.441288,0.228567,0.337834,0.751233,0.85587,0.435656,0.991548,0.619143,0.192386,0.850031,0.170725,0.604789,0.908525,0.00788033,0.581103,0.0907751,0.697441,0.622064,0.79085,0.162155,0.505677,0.815553,0.319829,0.481562,0.854889,0.819591,0.650906,0.896934,0.168972,0.51081,0.342797,0.769772,0.384343,0.618378,0.377819,0.0730531,0.69549,0.511656,0.318436,0.15579,0.871968,0.787152,0.0389413,0.821881,0.0858029,0.377681,0.243908,0.424697,0.7391,0.722203,0.290827,0.0592008,0.229957,0.184937,0.837386,0.661952,0.575801,0.208388,0.500064,0.640772,0.474474,0.836245,0.416282,0.205749,0.201394,0.310034,0.912582,0.381814,0.464519,0.944713,0.778848,0.151016,0.343761,0.0558677,0.335018,0.874849,0.726786,0.533232,0.599987,0.46944,0.601595,0.161873,0.770997,0.402461,0.99926,0.525768,0.754187,0.58347,0.884887,0.889986,0.195059,0.775487,0.154361,0.932329,0.0650028,0.0316991,0.292226,0.0241024,0.0703921,0.63682,0.830603,0.692438,0.625318,0.401313,0.0304047,0.992816,0.272492,0.831331,0.921743,0.583821,0.730088,0.950951,0.839013,0.500642,0.239341,0.721757,0.910502,0.625023,0.669629,0.833796,0.630348,0.470681,0.372425,0.998779,0.175261,0.182514,0.698504,0.930586,0.121677,0.169575,0.700559,0.44787,0.115032,0.642093,0.523071,0.169942,0.49499,0.644085,0.842055,0.71572,0.668831,0.0144604,0.74569,0.647721,0.832717,0.0903824,0.641546,0.721148,0.56498,0.331313,0.124299,0.595221,0.714457,0.359077,0.794177,0.827858,0.113516,0.971068,0.256178,0.803518,0.526586,0.0749546,0.415805,0.620629,0.303194,0.545716,0.142661,0.770591,0.696818,0.398375,0.238867,0.754488,0.185949,0.429489,0.846302,0.0212156,0.180072,0.788048,0.334575,0.739881,0.509475,0.918596,0.252826,0.724963,0.58376,0.32496,0.293956,0.0956045,0.856276,0.487071,0.800514,0.480801,0.662101,0.399828,0.81349,0.480714,0.80998,0.175007,0.495399,0.674034,0.32725,0.0681606,0.196966,0.741635,0.660187,0.949227,0.235,0.818249,0.0569831,0.534769,0.25106,0.231677,0.881969,0.755625,0.56749,0.181887,0.805081,0.51007,0.432294,0.581995,0.452156,0.780519,0.149155,0.792781,0.707909,0.396332,0.258359,0.569579,0.688983,0.301995,0.500737,0.178721,0.133218,0.785719,0.953793,0.178806,0.617072,0.402776,0.0538885,0.172648,0.979324,0.217064,0.154896,0.879526,0.710918,0.183963,0.538811,0.830528,0.507968,0.734166,0.607669,0.348201,0.788861,0.479347,0.444141,0.645303,0.657173,0.20267,0.502872,0.621461,0.552606,0.952702,0.137885,0.0152724,0.161591,0.502975,0.441746,0.37935,0.361664,0.539062,0.751317,0.0867945,0.467831,0.800336,0.684176,0.803629,0.779067,0.27097,0.521622,0.147638,0.649407,0.873687,0.240946,0.259407,0.0629069,0.986303,0.836737,0.0880456,0.733216,0.494106,0.405671,0.60131,0.306409,0.189529,0.531409,0.0791527,0.926949,0.735493,0.589136,0.634562,0.941285,0.251112,0.138553,0.919725,0.152301,0.0714713,0.0847821,0.435456,0.424591,0.61446,0.806432,0.175477,0.827725,0.693138,0.778151,0.0450188,0.240219,0.968814,0.476234,0.660988,0.10783,0.914763,0.465261,0.59183,0.100567,0.968024,0.416186,0.568718,0.847096,0.55891,0.950374,0.82216,0.0769448,0.128883,0.546135,0.863115,0.285555,0.375275,0.475831,0.634976,0.622595,0.202103,0.507906,0.314497,0.736111,0.794919,0.322782,0.20352,0.523896,0.135544,0.426345,0.745339,0.0910789,0.833973,0.307189,0.897664,0.858317,0.640784,0.887129,0.881884,0.535603,0.916982,0.741698,0.208477,0.995344,0.419654,0.867216,0.184321,0.441996,0.189374,0.0521194,0.0022741,0.649905,0.0739393,0.0510035,0.322838,0.614477,0.0522808,0.481137,0.659128,0.337346,0.36717,0.612729,0.20179,0.135526,0.383701,0.554615,0.480122,0.020003,0.772138,0.717372,0.221415,0.679905,0.51084,0.385665,0.560811,0.79737,0.102209,0.855844,0.124563,0.464854,0.923685,0.775017,0.158755,0.729001,0.600184,0.177238,0.814318,0.429239,0.643243,0.438749,0.135513,0.125345,0.33407,0.0642914,0.593758,0.639443,0.628461,0.300871,0.732703,0.324043,0.423238,0.702982,0.948825,0.99153,0.480574,0.885741,0.236713,0.898817,0.338535,0.649139,0.0386984,0.619271,0.824779,0.868857,0.896514,0.45154,0.813323,0.124317,0.105331,0.0961611,0.539144,0.155796,0.812538,0.183552,0.207068,0.567804,0.710124,0.332564,0.585274,0.907768,0.0839133,0.0103763,0.772121,0.240206,0.757687,0.205027,0.672656,0.94663,0.717471,0.335443,0.597087,0.725964,0.191163,0.074535,0.654309,0.0987036,0.162806,0.707587,0.663549,0.525782,0.406493,0.258672,0.385602,0.0418729,0.11069,0.186458,0.912291,0.1112,0.0072456,0.27606,0.296717,0.253869,0.778914,0.612725,0.367065,0.917486,0.561388,0.227211,0.307206,0.715912,0.947487,0.593538,0.978154,0.906594,0.117571,0.226758,0.767993,0.178081,0.579676,0.49087,0.175424,0.930141,0.991331,0.206385,0.757191,0.960495,0.694822,0.698126,0.0395511,0.721735,0.454013,0.138062,0.643392,0.498463,0.610089,0.808337,0.434463,0.633796,0.550298,0.370619,0.0179229,0.589522,0.488591,0.167321,0.650929,0.68722,0.520325,0.433196,0.558268,0.847512,0.171125,0.636835,0.339586,0.877519,0.327695,0.133157,0.993517,0.257882,0.388936,0.493071,0.0908986,0.109118,0.842243,0.478225,0.649841,0.0485197,0.897721,0.685206,0.485616,0.189393,0.540354,0.801115,0.0335891,0.0133432,0.923107,0.831172,0.954586,0.127282,0.48868,0.440861,0.301837,0.449463,0.345809,0.115139,0.330925,0.706786,0.690186,0.415295,0.517214,0.908228,0.809032,0.932202,0.707026,0.863508,0.122809,0.879288,0.637919,0.328447,0.18967,0.566988,0.963954,0.641668,0.73316,0.542504,0.362682,0.515508,0.683951,0.287184,0.982047,0.601568,0.672363,0.0937677,0.164002,0.961974,0.319578,0.208851,0.962977,0.380509,0.911071,0.632005,0.928843,0.0153615,0.247875,0.709998,0.0902781,0.346681,0.217803,0.0560584,0.509317,0.820491,0.591059,0.66336,0.59096,0.727866,0.399053,0.629669,0.598281,0.0773966,0.0504947,0.883471,0.888332,0.349976,0.877972,0.0503728,0.224282,0.0364231,0.437033,0.233287,0.0268057,0.373341,0.967511,0.97254,0.0180438,0.472556,0.0884405,0.534583,0.233666,0.401188,0.613329,0.796278,0.649742,0.971989,0.0527381,0.0655368,0.244803,0.093302,0.867383,0.328142,0.748447,0.424681,0.093074,0.913959,0.521114,0.254769,0.622913,0.880117,0.455323,0.598072,0.35776,0.484489,0.231907,0.358087,0.444752,0.405216,0.0945269,0.636846,0.0815582,0.126029,0.990128,0.579422,0.654079,0.172241,0.229049,0.847391,0.823119,0.0448036,0.75333,0.903323,0.615706,0.370674,0.363248,0.450046,0.411597,0.110158,0.761155,0.642501,0.0546899,0.752589,0.921495,0.669266,0.392082,0.276327,0.157281,0.718464,0.641188,0.436832,0.074277,0.96121,0.456326,0.0590783,0.593761,0.780553,0.648209,0.476004,0.774446,0.0027225,0.112079,0.520848,0.483945,0.0113388,0.99393,0.175675,0.913954,0.940387,0.66619,0.479923,0.222924,0.597168,0.699837,0.512815,0.644696,0.642907,0.672619,0.71735,0.709819,0.201479,0.495713,0.489517,0.162019,0.803505,0.701121,0.690306,0.607765,0.192195,0.372891,0.69029,0.271168,0.616505,0.556002,0.190354,0.918511,0.397469,0.222818,0.288137,0.815582,0.944524,0.291193,0.735993,0.859604,0.078428,0.937754,0.780351,0.698171,0.681832,0.304752,0.204303,0.767927,0.623146,0.756752,0.318356,0.767667,0.705559,0.143421,0.56522,0.780398,0.80777,0.634699,0.640724,0.606423,0.51857,0.0466703,0.484543,0.0696432,0.845949,0.159647,0.914611,0.792815,0.736554,0.223569,0.834017,0.579703,0.154608,0.909658,0.0823666,0.303161,0.329162,0.839884,0.130516,0.0782717,0.113197,0.461324,0.112842,0.146448,0.179435,0.181019,0.260476,0.47137,0.856501,0.660888,0.496611,0.373717,0.163368,0.330385,0.456136,0.678209,0.941179,0.835435,0.302688,0.70167,0.508066,0.118357,0.702823,0.281794,0.661516,0.132174,0.854937,0.974561,0.932242,0.469866,0.609403,0.936858,0.649205,0.178036,0.518364,0.808582,0.844192,0.219489,0.612928,0.874537,0.438178,0.863239,0.0110761,0.702766,0.0781223,0.0443965,0.724185,0.163911,0.00421768,0.0872141,0.88454,0.688061,0.536968,0.0847778,0.588412,0.204568,0.0502062,0.302762,0.846472,|0.54371,0.269843,0.498605,0.238184,0.693554,0.37946,0.99046,0.684301,0.0982447,0.197467,0.574719,0.30128,0.66356,0.400931,0.623189,0.700649,0.956576,0.914369,0.535207,0.162057,0.467635,0.441914,0.0069229,0.85872,0.477921,0.0626628,0.721123,0.741193,0.717034,0.256889,0.938539,0.637593,0.442002,0.699252,0.512334,0.198136,0.422376,0.17976,0.828361,0.102922,0.972628,0.0108086,0.485997,0.690408,0.457953,0.732127,0.970863,0.653386,0.355192,0.613021,0.0429323,0.378933,0.101093,0.430863,0.988565,0.455258,0.740239,0.633837,0.755928,0.0868074,0.271508,0.245109,0.14815,0.772995,0.96818,0.334999,0.478822,0.922785,0.756305,0.0693439,0.197968,0.997808,0.59274,0.814435,0.376738,0.907671,0.599982,0.00275266,0.164517,0.67854,0.243833,0.102204,0.0881081,0.120455,0.755422,0.933261,0.248348,0.322177,0.981522,0.0787616,0.0887534,0.900216,0.862329,0.994001,0.0649907,0.303601,0.672328,0.77213,0.468664,0.609117,0.913921,0.687419,0.694456,0.505498,0.135492,0.550154,0.914694,0.716803,0.850313,0.668127,0.561211,0.86965,0.917487,0.0823244,0.0950983,0.988813,0.654233,0.261385,0.642981,0.872819,0.351403,0.154357,0.270279,0.278481,0.910022,0.761029,0.78069,0.434604,0.623664,0.220322,0.481548,0.461371,0.505308,0.490693,0.268766,0.903609,0.0854888,0.356547,0.0675018,0.292108,0.376098,0.896178,0.816793,0.319761,0.305381,0.662465,0.28549,0.902895,0.309832,0.244858,0.256692,0.209566,0.842026,0.452132,0.160812,0.740521,0.6364,0.0128363,0.79749,0.211971,0.867738,0.549001,0.423267,0.399062,0.571315,0.653585,0.714932,0.346656,0.740588,0.998052,0.458915,0.0694558,0.552388,0.877206,0.442453,0.67173,0.668687,0.197036,0.292835,0.405617,0.917165,0.853116,0.930752,0.908451,0.477392,0.619312,0.0612465,0.0451919,0.236108,0.0403527,0.345373,0.508235,0.129252,0.366477,0.400911,0.340508,0.939093,0.43178,0.189102,0.625655,0.568218,0.739342,0.505773,0.0147508,0.115708,0.457572,0.675192,0.537946,0.558208,0.207463,0.11647,0.99136,0.567829,0.0633335,0.0332711,0.91367,0.538232,0.581591,0.805597,0.358626,0.838179,0.260788,0.0749221,0.886744,0.337315,0.102959,0.712725,0.567265,0.759151,0.705866,0.162207,0.617942,0.0563856,0.10768,0.280491,0.965825,0.618831,0.748581,0.810764,0.932215,0.735328,0.436639,0.16716,0.364917,0.766512,0.0711058,0.286019,0.306793,0.0543975,0.767847,0.122672,0.326479,0.00271267,0.258433,0.856501,0.887428,0.101359,0.775583,0.876158,0.143709,0.905724,0.226537,0.406526,0.790532,0.302901,0.274532,0.925363,0.854753,0.232761,0.955813,0.814309,0.376562,0.300294,0.897851,0.167714,0.374881,0.165443,0.00616366,0.527993,0.117776,0.917399,0.167583,0.321798,0.535702,0.897263,0.384995,0.623167,0.471756,0.458705,0.0439944,0.490467,0.503263,0.6078,0.816868,0.620607,0.602101,0.941674,0.0452304,0.406881,0.319222,0.73564,0.89516,0.952983,0.194876,0.666652,0.669561,0.298865,0.992822,0.446947,0.0540696,0.796661,0.995757,0.924023,0.816896,0.407027,0.847182,0.915559,0.0844983,0.73878,0.863853,0.210937,0.189427,0.879573,0.644308,0.719889,0.663264,0.894001,0.420919,0.0699086,0.765354,0.534138,0.179111,0.195839,0.451436,0.0194368,0.557131,0.0994977,0.207062,0.685093,0.05153,0.529893,0.984413,0.538231,0.794672,0.487928,0.212339,0.259198,0.588775,0.62265,0.771504,0.932412,0.546466,0.500852,0.188536,0.551945,0.783555,0.817574,0.278618,0.932341,0.996034,0.799684,0.267143,0.0687282,0.27884,0.574636,0.4315,0.648276,0.0690086,0.144085,0.464423,0.124404,0.635473,0.117462,0.669593,0.91707,0.342333,0.220357,0.26356,0.989105,0.372324,0.389444,0.592654,0.587836,0.832237,0.17574,0.385963,0.439944,0.845129,0.970409,0.692549,0.811253,0.64025,0.902003,0.914198,0.12322,0.912788,0.080205,0.312726,0.563006,0.864894,0.375684,0.12737,0.630265,0.680705,0.582494,0.970642,0.250017,0.203206,0.772139,0.481259,0.110204,0.0568393,0.595672,0.493773,0.889199,0.635157,0.0182205,0.886652,0.767833,0.0227956,0.412172,0.996685,0.812804,0.618545,0.22224,0.987476,0.785501,0.209549,0.205605,0.369355,0.852112,0.253953,0.354204,0.980025,0.473491,0.367778,0.261639,0.726461,0.22378,0.890559,0.653869,0.545258,0.623935,0.0353773,0.513974,0.11066,0.741031,0.758075,0.0707005,0.167775,0.144283,0.658208,0.900679,0.184513,0.237362,0.921171,0.171509,0.728784,0.00678891,0.590279,0.450811,0.473407,0.909549,0.214379,0.294493,0.3587,0.869949,0.247255,0.0460777,0.430801,0.23868,0.70392,0.528376,0.644036,0.455472,0.707333,0.815401,0.0615727,0.902674,0.851049,0.119442,0.344172,0.94576,0.433107,0.277151,0.201602,0.341489,0.50197,0.555424,0.0569779,0.586905,0.774918,0.683355,0.366719,0.593997,0.759895,0.422089,0.911462,0.391084,0.189779,0.923585,0.828907,0.342028,0.281701,0.572111,0.0106029,0.769596,0.0627246,0.713289,0.365777,0.949214,0.727944,0.371262,0.01783,0.668524,0.988845,0.621415,0.542204,0.79524,0.304977,0.423976,0.468977,0.38679,0.784373,0.597122,0.494869,0.31773,0.675596,0.927514,0.436041,0.384784,0.222461,0.0709384,0.0427745,0.781776,0.567469,0.0384465,0.460188,0.983644,0.759329,0.974879,0.527608,0.090108,0.259308,0.88078,0.915656,0.513962,0.622324,0.316547,0.737714,0.232249,0.115203,0.0558414,0.950096,0.0465259,0.618253,0.179111,0.366386,0.953602,0.30293,0.0244049,0.140167,0.195194,0.744579,0.0976821,0.763313,0.518673,0.00822121,0.856051,0.871272,0.241783,0.0257325,0.143613,0.0389153,0.495395,0.253538,0.486552,0.832136,0.503696,0.603925,0.453593,0.373126,0.747802,0.326983,0.815744,0.527645,0.433597,0.272814,0.403754,0.325334,0.479725,0.270679,0.439529,0.354212,0.689611,0.607655,0.683729,0.447422,0.344448,0.812496,0.0257925,0.20161,0.948403,0.0767987,0.80307,0.711413,0.488489,0.207042,0.326137,0.941382,0.620908,0.60437,0.157475,0.0711609,0.758649,0.783375,0.640301,0.354697,0.201967,0.486011,0.415367,0.493525,0.491113,0.846059,0.619978,0.710431,0.588175,0.626662,0.259534,0.309477,0.606058,0.29051,0.922815,0.153584,0.605169,0.873839,0.782629,0.708999,0.895718,0.25128,0.463404,0.720175,0.111307,0.602079,0.827816,0.370338,0.941307,0.778655,0.774099,0.631511,0.232333,0.938803,0.716095,0.0714041,0.224636,0.767728,0.960696,0.160474,0.475455,0.600817,0.70387,0.858034,0.433373,0.151103,0.463273,0.446319,0.113231,0.213557,0.530551,0.127618,0.192391,0.570998,0.832137,0.170855,0.791219,0.153544,0.198863,0.57451,0.320008,0.764592,0.14581,0.309041,0.875527,0.750905,0.189982,0.0914128,0.422579,0.0268734,0.521382,0.0491403,0.972984,0.520737,0.123834,0.927218,0.154269,0.16748,0.657671,0.137652,0.972122,0.0701265,0.903834,0.150069,0.511293,0.432079,0.113678,0.436476,0.150151,0.454597,0.464168,0.03408,0.307834,0.605843,0.231632,0.0459875,0.202918,0.959019,0.557047,0.34297,0.312203,0.726391,0.348304,0.223376,0.910003,0.751256,0.924639,0.772035,0.487679,0.749986,0.930317,0.0960174,0.438331,0.162159,0.301529,0.0110592,0.897696,0.417331,0.162971,0.116307,0.204836,0.359114,0.417129,0.0343921,0.422017,0.358319,0.896762,0.547984,0.985197,0.545105,0.42632,0.294913,0.266923,0.265475,0.143093,0.751764,0.532834,0.373214,0.571068,0.134028,0.819794,0.630779,0.903343,0.418984,0.197744,0.956919,0.105824,0.702771,0.979308,0.450477,0.899926,0.0465842,0.495682,0.201476,0.628587,0.722763,0.487916,0.495167,0.426428,0.600395,0.615233,0.526755,0.104135,0.606083,0.41218,0.0142952,0.514713,0.255108,0.246152,0.0924989,0.0406882,0.423251,0.922502,0.135515,0.490858,0.581681,0.102884,0.862069,0.0928641,0.28379,0.0941986,0.60521,0.508297,0.181149,0.202222,0.0118082,0.664235,0.931457,0.292918,0.223044,0.140141,0.959199,0.580196,0.591866,0.0650281,0.282662,0.278498,0.145295,0.161532,0.258451,0.526919,0.0972775,0.592686,0.928167,0.921195,0.139956,0.831327,0.312114,0.941656,0.982702,0.369113,0.885396,0.575853,0.644138,0.0536319,0.992562,0.8315,0.590369,0.583591,0.0140851,0.207153,0.500339,0.95666,0.114967,0.130766,0.353144,0.74363,0.896627,0.645124,0.914953,0.120492,0.023157,0.471582,0.592207,0.493549,0.600167,0.958179,0.593133,0.00238818,0.827351,0.152449,0.153139,0.487981,0.298619,0.266608,0.954998,0.134112,0.885485,0.491143,0.106744,0.632434,0.589597,0.923981,0.593475,0.00623918,0.174839,0.284909,0.997591,0.628275,0.500157,0.757077,0.166815,0.432948,0.422591,0.223367,0.44311,0.410163,0.630886,0.542856,0.439862,0.932158,0.496463,0.962307,0.345651,0.851866,0.541902,0.663661,0.705849,0.728899,0.616024,0.32318,0.0268477,0.0942367,0.816322,0.864375,0.0157123,0.0755389,0.64092,0.705381,0.415054,0.400237,0.513938,0.017204,0.539551,0.515311,0.182706,0.355168,0.835364,0.519143,0.632372,0.88103,0.494594,0.683721,0.488149,0.376206,0.872312,0.83857,4.45247e-05,0.63393,0.647459,0.663751,0.16081,0.412161,0.140853,0.733347,0.767209,0.628168,0.57414,0.782468,0.570164,0.40592,0.982768,0.793062,0.687657,0.646511,0.565839,0.502952,0.231278,0.90654,0.662499,0.631488,0.250618,0.705148,0.187699,0.983099,0.440775,0.630855,0.633604,0.127404,0.621807,0.292192,0.472046,0.962593,0.606514,0.844384,0.28864,0.750057,0.800038,0.520159,0.745679,0.351815,0.411652,0.366899,0.461448,0.946227,0.257322,0.189907,0.437473,0.5483,0.807021,0.871685,0.0927367,0.20062,0.115455,0.149108,0.897167,0.0198058,0.254632,0.595255,0.198806,0.977997,0.58233,0.387497,0.693891,0.565966,0.795231,0.869187,0.795273,0.310582,0.228234,0.745802,0.524612,|0.731993,0.622375,0.968435,0.468085,0.0572881,0.566277,0.296071,0.497903,0.99112,0.414446,0.51559,0.102039,0.744626,0.286435,0.328203,0.462953,0.453817,0.269803,0.339726,0.246566,0.332854,0.936431,0.566127,0.0020951,0.232036,0.365305,0.816358,0.0213159,0.349086,0.822634,0.707894,0.663998,0.579801,0.680858,0.861458,0.538321,0.120406,0.118074,0.822315,0.0743353,0.501501,0.689023,0.486432,0.808179,0.178152,0.512366,0.123777,0.553173,0.678214,0.151568,0.697395,0.396234,0.0937013,0.840841,0.351582,0.355373,0.871991,0.886657,0.0320432,0.603737,0.528396,0.306412,0.957305,0.169283,0.909893,0.703037,0.268897,0.0671088,0.730707,0.287067,0.78557,0.811583,0.484492,0.375497,0.849538,0.801432,0.647454,0.786515,0.872851,0.812929,0.763061,0.946848,0.963996,0.668884,0.825924,0.919024,0.926942,0.242158,0.35264,0.615759,0.775066,0.971706,0.77027,0.047525,0.972024,0.920618,0.0999327,0.616716,0.181908,0.312195,0.0150107,0.395176,0.278334,0.577774,0.396513,0.156248,0.631726,0.714881,0.458639,0.633735,0.693238,0.3275,0.947158,0.723849,0.820097,0.947283,0.438356,0.10912,0.162609,0.933881,0.509453,0.0638856,0.0147806,0.358583,0.380705,0.46916,0.0862794,0.730527,0.82533,0.0391798,0.121491,0.313196,0.117489,0.507136,0.528145,0.198085,0.798836,0.960163,0.0584061,0.749355,0.680199,0.964759,0.505528,0.708047,0.870308,0.508004,0.277938,0.527962,0.568213,0.156042,0.486463,0.69075,0.420883,0.201248,0.119428,0.589963,0.390078,0.262626,0.67623,0.788668,0.897976,0.0236355,0.212252,0.265653,0.207913,0.918367,0.220575,0.232968,0.954607,0.471496,0.570012,0.220396,0.614094,0.842705,0.505249,0.692307,0.357202,0.896878,0.573103,0.5896,0.553321,0.0276397,0.841056,0.967965,0.603004,0.926322,0.486824,0.678654,0.233672,0.846631,0.224745,0.28052,0.582727,0.133306,0.680434,0.379671,0.901994,0.497317,0.469715,0.48178,0.313615,0.148259,0.795255,0.80783,0.492074,0.690802,0.504962,0.875784,0.920261,0.220026,0.814982,0.891725,0.781891,0.511486,0.445917,0.923183,0.926038,0.353401,0.270885,0.266482,0.0581129,0.848559,0.659859,0.54323,0.887012,0.593487,0.292392,0.747771,0.293495,0.352031,0.385642,0.842079,0.312261,0.674813,0.490222,0.819558,0.50631,0.358173,0.2254,0.667487,0.642597,0.986994,0.200037,0.964067,0.350551,0.393006,0.815559,0.104017,0.966366,0.318268,0.52581,0.716939,0.382903,0.605348,0.896487,0.274005,0.498619,0.707034,0.319502,0.78378,0.143014,0.916174,0.463447,0.921918,0.0566896,0.414535,0.810208,0.978116,0.181627,0.113837,0.226012,0.711242,0.0200986,0.37913,0.0181413,0.322035,0.628522,0.254815,0.899164,0.584835,0.308763,0.1561,0.100194,0.665555,0.922431,0.304952,0.398963,0.251879,0.186406,0.224924,0.788834,0.253344,0.543252,0.523358,0.689212,0.598519,0.318385,0.808179,0.390497,0.0225555,0.543929,0.396379,0.632433,0.893728,0.315536,0.518669,0.383297,0.0395947,0.0299428,0.447276,0.965662,0.571978,0.86837,0.434627,0.426334,0.383125,0.888266,0.239355,0.503243,0.499925,0.300416,0.109851,0.728132,0.489775,0.0864307,0.715051,0.599152,0.0692743,0.170237,0.560558,0.603238,0.792424,0.67936,0.691229,0.275396,0.484145,0.320318,0.269451,0.16203,0.832894,0.992064,0.617483,0.741823,0.605544,0.921703,0.0591825,0.255969,0.800441,0.174384,0.712198,0.613579,0.302089,0.674399,0.923141,0.434401,0.390675,0.257822,0.828926,0.405835,0.784169,0.0500929,0.334551,0.853821,0.5073,0.378385,0.352457,0.858252,0.857167,0.165875,0.941631,0.541789,0.398445,0.367359,0.551903,0.0124313,0.107138,0.0183958,0.416375,0.790598,0.635667,0.773777,0.62721,0.343265,0.392748,0.770349,0.31527,0.770424,0.337668,0.139055,0.760774,0.106059,0.880436,0.340714,0.284793,0.528189,0.143795,0.3421,0.165058,0.627168,0.372553,0.00911689,0.261273,0.809743,0.0662846,0.639671,0.287671,0.767083,0.400147,0.576821,0.0511323,0.835857,0.48222,0.461784,0.293713,0.296683,0.392812,0.387458,0.880671,0.426426,0.173164,0.0349887,0.126975,0.932044,0.756871,0.877361,0.003133,0.457069,0.410664,0.607219,0.546773,0.223583,0.844661,0.559329,0.534562,0.941477,0.207261,0.395516,0.343386,0.428726,0.343247,0.482351,0.0618454,0.553948,0.523313,0.991263,0.409369,0.353822,0.469738,0.0101369,0.104623,0.12245,0.846081,0.260722,0.880206,0.717881,0.0208769,0.466887,0.57109,0.857705,0.749756,0.706886,0.75261,0.697018,0.111357,0.842016,0.61746,0.930203,0.102796,0.606959,0.790751,0.505603,0.514377,0.134823,0.144174,0.649204,0.193192,0.184695,0.450127,0.855839,0.393071,0.501553,0.975133,0.89715,0.0392768,0.719258,0.400536,0.612359,0.390364,0.506499,0.569367,0.350829,0.673996,0.149005,0.427898,0.771311,0.923774,0.842932,0.435848,0.783797,0.581454,0.929754,0.880649,0.555093,0.479258,0.160809,0.737761,0.313073,0.676623,0.404565,0.765059,0.266184,0.757237,0.628862,0.100067,0.498165,0.252182,0.699712,0.961142,0.316355,0.468072,0.0988142,0.409359,0.286518,0.17868,0.413077,0.790607,0.790887,0.401492,0.406036,0.438577,0.259103,0.163548,0.86598,0.184642,0.736841,0.0791692,0.306071,0.987191,0.976594,0.0568736,0.0751038,0.521153,0.357365,0.282142,0.511323,0.43833,0.223175,0.0524426,0.273687,0.928616,0.945347,0.761405,0.516854,0.912453,0.0616434,0.937268,0.660306,0.569934,0.540847,0.886265,0.219023,0.0627709,0.628902,0.772519,0.562214,0.669691,0.669353,0.461049,0.0310958,0.1868,0.922601,0.684813,0.880653,0.261458,0.452754,0.925871,0.271683,0.935462,0.244008,0.105593,0.33225,0.993316,0.441698,0.878574,0.870144,0.836379,0.376794,0.915752,0.19587,0.257074,0.225979,0.140946,0.706485,0.656946,0.224987,0.36249,0.905599,0.222354,0.773466,0.532302,0.237012,0.578278,0.187127,0.280358,0.283129,0.51532,0.643383,0.487914,0.599863,0.406647,0.990607,0.651194,0.318435,0.406991,0.67208,0.0177177,0.413784,0.338514,0.618779,0.485608,0.535655,0.672247,0.211334,0.00223231,0.6023,0.4022,0.767123,0.14721,0.167679,0.670143,0.480817,0.836083,0.414815,0.725793,0.818186,0.743443,0.906179,0.7271,0.68032,0.613299,0.132821,0.127053,0.381955,0.728055,0.971912,0.32537,0.173039,0.240427,0.573309,0.252098,0.601269,0.672347,0.551894,0.881689,0.916427,0.0217186,0.196963,0.120641,0.0652714,0.158595,0.191887,0.490514,0.692192,0.108485,0.487519,0.59222,0.784427,0.348946,0.41801,0.114052,0.108037,0.951528,0.625772,0.181665,0.259205,0.00221765,0.992149,0.574112,0.315938,0.488752,0.000752509,0.18829,0.976664,0.473912,0.256082,0.216381,0.717692,0.681504,0.344885,0.999539,0.326873,0.924304,0.927738,0.417631,0.824902,0.924271,0.105991,0.211796,0.919433,0.379495,0.449965,0.57657,0.183898,0.825798,0.416185,0.671186,0.539404,0.163984,0.50902,0.536292,0.0020203,0.1624,0.97743,0.352986,0.000530899,0.708645,0.0364979,0.614104,0.806496,0.177217,0.432177,0.874673,0.239908,0.865429,0.385507,0.986,0.386659,0.926154,0.19035,0.306686,0.55943,0.23813,0.382945,0.537659,0.415604,0.736155,0.796125,0.874935,0.785413,0.685517,0.3393,0.760395,0.77548,0.116246,0.478487,0.203047,0.214236,0.879903,0.350889,0.2098,0.56444,0.0236455,0.194791,0.643538,0.0248967,0.177357,0.589547,0.241599,0.856613,0.395893,0.654808,0.151735,0.305992,0.104917,0.449843,0.45518,0.1141,0.250057,0.133131,0.590944,0.86511,0.639117,0.37679,0.665217,0.87101,0.965219,0.011555,0.829149,0.871005,0.719022,0.38565,0.227447,0.0154406,0.91696,0.557318,0.860936,0.657735,0.585966,0.912152,0.317375,0.612172,0.350065,0.768207,0.409172,0.133485,0.218706,0.585326,0.619248,0.146871,0.130564,0.154179,0.377578,0.781624,0.405967,0.362441,0.413778,0.821035,0.665784,0.14876,0.664981,0.324158,0.747693,0.952529,0.7079,0.23001,0.346814,0.0627785,0.0453026,0.640294,0.523611,0.825979,0.130591,0.708441,0.688474,0.0295295,0.397953,0.46092,0.0245904,0.925254,0.986498,0.683193,0.921461,0.0709116,0.500475,0.698833,0.202351,0.0543839,0.924413,0.0497617,0.761003,0.115741,0.440247,0.274053,0.481659,0.212822,0.501355,0.650905,0.798895,0.16115,0.274014,0.87012,0.0538373,0.457668,0.843042,0.531307,0.114924,0.201138,0.153527,0.458574,0.419786,0.319409,0.291989,0.648457,0.287439,0.12489,0.811795,0.133818,0.649021,0.945324,0.719842,0.962729,0.714568,0.99601,0.163482,0.679435,0.0012821,0.0966558,0.642234,0.0290207,0.0808968,0.78866,0.0524334,0.63411,0.827721,0.794746,0.438889,0.917063,0.675444,0.10073,0.108502,0.530361,0.516611,0.751235,0.482737,0.0194438,0.0601998,0.96607,0.477648,0.468335,0.134318,0.947259,0.140471,0.94382,0.667486,0.638174,0.377787,0.733957,0.340448,0.199553,0.297713,0.780727,0.852846,0.649139,0.425464,0.821965,0.430118,0.302065,0.408225,0.681057,0.245465,0.12696,0.191769,0.881267,0.0305999,0.418276,0.931287,0.411899,0.512324,0.282537,0.467669,0.7072,0.500329,0.185138,0.729173,0.193142,0.495378,0.784313,0.962307,0.87782,0.175481,0.618789,0.274023,0.306619,0.163778,0.0961495,0.231915,0.537452,0.850634,0.468543,0.204037,0.317983,0.292214,0.663352,0.861242,0.839809,0.604243,0.819522,0.241509,0.0389575,0.955834,0.717116,0.846867,0.0596981,0.933785,0.620595,0.430218,0.483099,0.754428,0.220649,0.0308232,0.339996,0.527739,0.241138,0.218948,0.26565,0.881849,0.174277,0.72982,0.959965,0.831211,0.161515,0.305655,0.617923,0.569584,0.619675,0.754152,0.335089,0.704717,0.893407,0.629831,0.537454,0.0677938,0.0189284,0.56206,0.312541,0.028883,0.152522,0.918349,0.782473,0.0970227,|0.0831342,0.0795074,0.86831,0.123671,0.399053,0.716305,0.51073,0.804585,0.906918,0.0102893,0.146615,0.805886,0.465191,0.237023,0.507995,0.808091,0.682883,0.360249,0.211384,0.175344,0.928143,0.356226,0.401467,0.300793,0.0366157,0.835073,0.767632,0.405485,0.489843,0.194278,0.706393,0.260939,0.85611,0.50637,0.35219,0.535617,0.795352,0.347507,0.888513,0.0940198,0.325556,0.520724,0.687195,0.413636,0.838233,0.2952,0.403387,0.301307,0.268924,0.795265,0.227342,0.416868,0.855204,0.301369,0.737701,0.379242,0.3043,0.0718397,0.751322,0.879929,0.698894,0.0112613,0.982459,0.117018,0.63401,0.21326,0.866326,0.850414,0.743895,0.0961896,0.186607,0.416347,0.575874,0.740986,0.909508,0.899009,0.944019,0.553973,0.411578,0.954758,0.843303,0.245758,0.386777,0.728864,0.982625,0.64364,0.0925264,0.0780276,0.141391,0.309656,0.987041,0.5456,0.416625,0.182377,0.914308,0.210309,0.61166,0.0618833,0.921601,0.771577,0.6415,0.460403,0.564227,0.926489,0.626115,0.239319,0.697225,0.576921,0.765493,0.128345,0.849753,0.504861,0.238441,0.358971,0.966286,0.565036,0.609678,0.0829789,0.807414,0.091253,0.329357,0.144772,0.599463,0.844071,0.741898,0.826538,0.60482,0.103816,0.84754,0.253938,0.904259,0.89533,0.684474,0.42294,0.566037,0.0247688,0.531953,0.825014,0.602198,0.673685,0.892206,0.945658,0.741145,0.231367,0.802368,0.000861704,0.984546,0.97448,0.967607,0.412858,0.725594,0.187453,0.583225,0.252547,0.519253,0.0126334,0.851341,0.557733,0.663711,0.183376,0.549984,0.153666,0.870149,0.914213,0.930278,0.0564391,0.438051,0.216823,0.247431,0.550894,0.371831,0.20227,0.645674,0.253908,0.990067,0.291256,0.925084,0.464006,0.354721,0.588839,0.962909,0.466296,0.324784,0.544057,0.137847,0.0821141,0.249678,0.363186,0.433171,0.684148,0.250124,0.726979,0.144432,0.900865,0.684535,0.525118,0.430569,0.888211,0.830871,0.882156,0.62138,0.0486912,0.78176,0.806465,0.671176,0.438235,0.267252,0.619306,0.27346,0.74854,0.529058,0.562976,0.407039,0.167607,0.401031,0.841479,0.274586,0.529739,0.555192,0.332718,0.831749,0.755522,0.859759,0.672642,0.360509,0.586755,0.470001,0.612453,0.044271,0.707132,0.0657328,0.817767,0.593985,0.561295,0.829355,0.329282,0.954471,0.484167,0.435577,0.695679,0.343619,0.676002,0.993632,0.115828,0.137244,0.998584,0.0377091,0.587317,0.374637,0.18365,0.924314,0.934167,0.338772,0.142516,0.791212,0.088348,0.196297,0.479252,0.606311,0.854353,0.915549,0.691098,0.333048,0.672746,0.712282,0.0191206,0.46988,0.0536528,0.961239,0.424867,0.472843,0.0675237,0.219279,0.895623,0.334805,0.862776,0.829146,0.272195,0.735181,0.775621,0.282524,0.712038,0.00831622,0.616525,0.317086,0.328999,0.694021,0.645937,0.769623,0.204254,0.0870827,0.768029,0.86908,0.673396,0.386101,0.43173,0.042094,0.781717,0.62446,0.755075,0.295186,0.460426,0.890379,0.389475,0.755072,0.592471,0.841697,0.997026,0.939114,0.628625,0.444479,0.278828,0.441397,0.174097,0.632556,0.350975,0.541898,0.667154,0.26833,0.12408,0.153894,0.0430301,0.66061,0.966307,0.0743043,0.848689,0.467773,0.184648,0.473435,0.531258,0.369893,0.527416,0.481278,0.700052,0.338617,0.331502,0.486058,0.89571,0.339869,0.673415,0.957156,0.907164,0.0485386,0.251222,0.859211,0.0705291,0.692503,0.210545,0.972949,0.376857,0.104443,0.251988,0.29781,0.820262,0.979515,0.8306,0.193489,0.0442489,0.601155,0.893574,0.946555,0.420653,0.732207,0.530423,0.883733,0.936606,0.0781612,0.484581,0.926672,0.230098,0.837769,0.475598,0.295502,0.296688,0.691553,0.0321141,0.756335,0.837093,0.319762,0.678682,0.762723,0.593192,0.281371,0.756845,0.781301,0.702522,0.420208,0.0487545,0.598576,0.0140853,0.949051,0.29513,0.0150531,0.736969,0.819648,0.568429,0.763192,0.503607,0.0126206,0.272156,0.383871,0.343288,0.478492,0.520679,0.0379913,0.467356,0.180202,0.718671,0.472866,0.479548,0.837164,0.93278,0.352764,0.0767376,0.774575,0.74163,0.71417,0.113915,0.570325,0.320892,0.29431,0.0719225,0.643053,0.441792,0.419937,0.333068,0.228869,0.0545712,0.333866,0.890021,0.587391,0.329935,0.174788,0.755324,0.355398,0.93982,0.32386,0.684374,0.151834,0.175158,0.237638,0.87645,0.200393,0.255651,0.418884,0.00471777,0.241698,0.376158,0.771341,0.370158,0.431029,0.347349,0.83173,0.900671,0.0830051,0.669642,0.585122,0.424922,0.612443,0.0399634,0.00269043,0.133748,0.807491,0.761821,0.0159487,0.656453,0.522471,0.427345,0.359563,0.993035,0.140875,0.376177,0.397319,0.95569,0.993768,0.113597,0.380068,0.705794,0.773025,0.23588,0.429035,0.763353,0.338644,0.43698,0.433175,0.421718,0.0808588,0.0550587,0.0195458,0.948244,0.642831,0.108886,0.642524,0.232796,0.413098,0.705249,0.921435,0.756766,0.25231,0.360891,0.954241,0.362495,0.597004,0.828443,0.226475,0.550202,0.530335,0.627986,0.6279,0.16735,0.579477,0.654275,0.266344,0.452131,0.638711,0.615474,0.504482,0.512,0.86895,0.624117,0.157907,0.025551,0.541516,0.713699,0.203327,0.370011,0.292265,0.447866,0.83682,0.404155,0.231764,0.906651,0.0987716,0.824869,0.452274,0.0360202,0.17069,0.509615,0.581359,0.100156,0.391613,0.229976,0.778043,0.971092,0.399783,0.451016,0.0704685,0.56934,0.524097,0.988913,0.575018,0.513711,0.109953,0.695707,0.761545,0.168373,0.177939,0.158097,0.743509,0.434451,0.405682,0.697664,0.622224,0.53807,0.0645774,0.814686,0.886941,0.562552,0.518815,0.031009,0.862139,0.354152,0.529325,0.672145,0.985855,0.603195,0.549323,0.144991,0.537622,0.595377,0.469654,0.944192,0.674311,0.845922,0.733246,0.137389,0.858992,0.578745,0.0698046,0.776473,0.335843,0.0659255,0.599753,0.96088,0.106653,0.1006,0.89357,0.153578,0.385789,0.282317,0.8458,0.385347,0.822339,0.933043,0.611353,0.267038,0.528221,0.580948,0.11284,0.671783,0.966419,0.465714,0.926728,0.674552,0.398536,0.998993,0.525609,0.97496,0.913449,0.744578,0.143816,0.301915,0.559674,0.753531,0.88193,0.2608,0.0443825,0.827675,0.623779,0.57427,0.378382,0.532503,0.154759,0.0836897,0.876881,0.592051,0.682954,0.34447,0.219432,0.897364,0.747932,0.378326,0.547072,0.630664,0.395156,0.369347,0.293836,0.94554,0.952844,0.287248,0.548499,0.463287,0.513543,0.622946,0.114378,0.625944,0.952865,0.716167,0.14715,0.362432,0.234855,0.666766,0.188067,0.388096,0.718924,0.310397,0.690841,0.654196,0.180678,0.894691,0.800242,0.0567555,0.613829,0.568399,0.489998,0.711922,0.69216,0.120003,0.897689,0.493139,0.366988,0.625215,0.280813,0.291343,0.776855,0.482406,0.826911,0.434332,0.611752,0.513077,0.543543,0.204441,0.241673,0.859838,0.401437,0.460192,0.482448,0.0153515,0.0661324,0.349979,0.298442,0.897005,0.0326319,0.0304108,0.290087,0.670716,0.115309,0.372875,0.900478,0.872843,0.664581,0.659875,0.572631,0.69916,0.344685,0.075254,0.0594521,0.362797,0.572594,0.564994,0.538316,0.126549,0.209985,0.689813,0.926831,0.955777,0.813804,0.364662,0.228566,0.805494,0.0201141,0.897771,0.3901,0.87216,0.52924,0.371753,0.151919,0.261469,0.647918,0.476488,0.701424,0.658976,0.0349641,0.279971,0.733743,0.532285,0.801023,0.761933,0.233355,0.595297,0.905541,0.844988,0.888129,0.756796,0.580905,0.625379,0.456577,0.323893,0.88149,0.627591,0.00608456,0.940508,0.80564,0.962192,0.101396,0.630856,0.115524,0.328887,0.950049,0.0642589,0.1525,0.576082,0.106269,0.628022,0.419642,0.264112,0.835961,0.783355,0.518149,0.76962,0.841708,0.934754,0.844431,0.834354,0.759035,0.301633,0.792746,0.577717,0.268902,0.784194,0.514824,0.191544,0.00105631,0.776795,0.692405,0.875494,0.597744,0.0320222,0.447272,0.92196,0.323897,0.0195872,0.0762658,0.570965,0.208561,0.983387,0.589635,0.407094,0.538516,0.584597,0.494747,0.504452,0.618905,0.991453,0.19301,0.203101,0.0791861,0.257809,0.276561,0.458717,0.887793,0.863032,0.396386,0.717957,0.47736,0.399859,0.527775,0.625942,0.271644,0.290254,0.0405322,0.0335339,0.859942,0.956149,0.266948,0.500557,0.0186425,0.517932,0.686097,0.246737,0.294353,0.987771,0.480705,0.0926269,0.757887,0.855478,0.488632,0.301308,0.923007,0.236251,0.855256,0.681707,0.607399,0.376752,0.484104,0.700219,0.338315,0.0183798,0.471973,0.422897,0.820594,0.22687,0.309507,0.267103,0.630529,0.760585,0.996568,0.53519,0.325052,0.0396384,0.647048,0.525036,0.0149909,0.996197,0.272451,0.541266,0.426987,0.424304,0.895804,0.276051,0.373895,0.245287,0.924427,0.0863999,0.972998,0.919212,0.109043,0.213923,0.522875,0.902448,0.610685,0.94244,0.220988,0.995891,0.658227,0.337555,0.54837,0.439908,0.885175,0.687425,0.0651364,0.553705,0.397701,0.0947279,0.939012,0.627941,0.020047,0.356935,0.858094,0.841287,0.822223,0.986005,0.61067,0.34562,0.136965,0.690132,0.881952,0.916633,0.766462,0.997494,0.104539,0.389315,0.682499,0.561165,0.559888,0.304556,0.354818,0.266871,0.417959,0.660074,0.112879,0.209135,0.517152,0.115612,0.965729,0.927718,0.190194,0.697145,0.153059,0.96724,0.546245,0.186402,0.764026,0.121982,0.803539,0.28148,0.98854,0.627031,0.0866383,0.975705,0.849449,0.491772,0.806115,0.663129,0.175288,0.41604,0.662956,0.500544,0.613563,0.0325626,0.369361,0.613556,0.21585,0.979878,0.829597,0.623137,0.10789,0.744429,0.580411,0.428788,0.0523859,0.329295,0.333077,0.668933,0.982114,0.923013,0.447924,0.13607,0.176962,0.551446,0.666771,0.574789,0.671413,0.494192,0.296624,0.449132,0.334003,0.627661,0.883574,0.805205,0.959736,0.844105,0.545404,0.0223497,0.870937,0.5961,0.133137,0.798364,0.105936,0.00798756,|0.564756,0.441468,0.290055,0.245129,0.0115972,0.524596,0.435748,0.0396165,0.492175,0.018347,0.36479,0.0700635,0.693529,0.110265,0.552788,0.436758,0.072409,0.853969,0.543664,0.0280438,0.768453,0.257423,0.759485,0.513646,0.022549,0.330452,0.912266,0.102375,0.325401,0.84822,0.357717,0.845276,0.0651296,0.271928,0.659417,0.230904,0.138935,0.336266,0.783146,0.252392,0.531415,0.73565,0.678993,0.184137,0.299225,0.350778,0.12299,0.484813,0.895276,0.986074,0.695706,0.778175,0.236516,0.590085,0.0518189,0.807191,0.250607,0.318853,0.182446,0.397494,0.822015,0.359618,0.761617,0.123792,0.324942,0.989359,0.492359,0.296351,0.736709,0.84946,0.850309,0.241564,0.114683,0.0742943,0.786986,0.147876,0.869451,0.108728,0.819131,0.164844,0.27613,0.322643,0.939584,0.205777,0.659409,0.63509,0.647604,0.578493,0.557497,0.771384,0.920712,0.980321,0.860671,0.232917,0.702107,0.606416,0.80241,0.511534,0.704581,0.787745,0.939999,0.25191,0.416213,0.854241,0.151317,0.670362,0.539599,0.94289,0.871378,0.907323,0.301836,0.270182,0.305691,0.905751,0.965933,0.455054,0.313048,0.785853,0.455391,0.795804,0.990324,0.0526714,0.0582545,0.732034,0.469164,0.86153,0.428807,0.69583,0.321152,0.371439,0.28018,0.873264,0.786436,0.510073,0.565096,0.168492,0.548574,0.381614,0.532184,0.506734,0.782966,0.729462,0.631391,0.929629,0.05152,0.3435,0.325362,0.957147,0.984568,0.907818,0.0592301,0.220721,0.0750239,0.924512,0.488444,0.465123,0.820543,0.650652,0.0745625,0.790162,0.777538,0.139444,0.179026,0.583151,0.374333,0.272955,0.187055,0.133009,0.31377,0.276853,0.592112,0.193905,0.440663,0.638981,0.412489,0.593987,0.253058,0.834387,0.0304236,0.944737,0.536825,0.971307,0.181249,0.00292373,0.957341,0.92352,0.106631,0.665881,0.520956,0.842993,0.962046,0.0866339,0.900575,0.167433,0.740797,0.446276,0.616969,0.917225,0.825369,0.7376,0.292395,0.980795,0.0121911,0.551014,0.302222,0.828879,0.951863,0.659787,0.115399,0.947129,0.616862,0.471465,0.861306,0.496323,0.576707,0.426441,0.823007,0.261225,0.605573,0.657924,0.931893,0.160432,0.552913,0.174557,0.361536,0.822826,0.266765,0.611712,0.477972,0.746427,0.403023,0.97531,0.597389,0.607239,0.147795,0.364446,0.0475782,0.159187,0.411169,0.31341,0.377023,0.194085,0.167626,0.999411,0.603514,0.0470521,0.966648,0.374868,0.831587,0.451278,0.757261,0.275981,0.342894,0.48537,0.175094,0.207605,0.243098,0.706937,0.440021,0.482241,0.156271,0.509732,0.506006,0.460368,0.147196,0.870936,0.986418,0.478318,0.476754,0.844299,0.404356,0.528143,0.415915,0.399564,0.65935,0.505238,0.950692,0.0957649,0.28786,0.753743,0.227394,0.456905,0.898463,0.0815474,0.211474,0.0222788,0.74547,0.583759,0.723715,0.523679,0.610478,0.827415,0.363006,0.610802,0.819601,0.4215,0.950458,0.180528,0.559814,0.190131,0.455736,0.509159,0.483357,0.385183,0.368704,0.89939,0.156987,0.421686,0.0033986,0.161388,0.569528,0.514638,0.40678,0.0323149,0.686633,0.231619,0.63739,0.530747,0.370137,0.23068,0.81953,0.0404749,0.586322,0.138595,0.623071,0.826902,0.355525,0.84505,0.363124,0.952837,0.369971,0.814419,0.531226,0.156562,0.789611,0.301828,0.501385,0.842706,0.305931,0.600915,0.848172,0.570557,0.564548,0.557144,0.827793,0.347612,0.605938,0.161753,0.978742,0.96299,0.683355,0.0947722,0.463343,0.522929,0.0348058,0.186291,0.743344,0.993471,0.471784,0.0561979,0.206092,0.31545,0.583263,0.210567,0.974678,0.671373,0.687335,0.751455,0.671725,0.172055,0.0703797,0.126218,0.39518,0.0776249,0.196332,0.122379,0.580869,0.161978,0.834789,0.0171626,0.312575,0.814213,0.85796,0.280286,0.329768,0.870361,0.636315,0.550435,0.820378,0.608106,0.0494327,0.924805,0.923078,0.321348,0.301903,0.837825,0.363778,0.362206,0.831166,0.331183,0.955769,0.554907,0.70184,0.226778,0.282424,0.923369,0.841595,0.649033,0.869068,0.120046,0.610607,0.970408,0.936601,0.593056,0.686714,0.927192,0.988128,0.384527,0.896027,0.609435,0.804429,0.0348092,0.934059,0.473235,0.856181,0.853656,0.304561,0.533359,0.331944,0.437759,0.884655,0.403967,0.325081,0.653109,0.719823,0.289059,0.329802,0.181049,0.928158,0.243642,0.922305,0.374334,0.73296,0.458809,0.288119,0.204443,0.481361,0.251342,0.689302,0.338041,0.314163,0.211877,0.949176,0.778246,0.0401539,0.573703,0.619257,0.0100783,0.583252,0.432476,0.10165,0.553403,0.0421119,0.282146,0.578923,0.287012,0.098596,0.599856,0.567893,0.917874,0.18553,0.690506,0.902882,0.0602651,0.330409,0.765025,0.876124,0.68263,0.572221,0.42416,0.289679,0.0983449,0.643387,0.162295,0.388853,0.628804,0.967475,0.349279,0.416634,0.703931,0.0557483,0.73125,0.797522,0.257924,0.859916,0.400235,0.341363,0.684344,0.712326,0.591517,0.526625,0.276715,0.185964,0.029373,0.286209,0.284699,0.38986,0.423925,0.413348,0.0879848,0.62573,0.0999184,0.0473011,0.0364553,0.203854,0.81481,0.836373,0.554304,0.683581,0.478085,0.299352,0.703168,0.720958,0.607396,0.971585,0.862639,0.30373,0.622057,0.646491,0.788429,0.0480279,0.280142,0.785039,0.772531,0.986394,0.132957,0.912051,0.396891,0.101167,0.625274,0.771127,0.612744,0.792408,0.184381,0.552012,0.0916204,0.688353,0.274294,0.565459,0.819309,0.0498812,0.615081,0.542509,0.987185,0.582587,0.730473,0.558978,0.944734,0.862857,0.817157,0.645557,0.463274,0.614936,0.234324,0.908493,0.933104,0.231332,0.599677,0.176997,0.65782,0.00579733,0.998323,0.147014,0.617249,0.293994,0.567397,0.294343,0.665287,0.904245,0.998569,0.667106,0.399337,0.368108,0.858509,0.202156,0.519173,0.988555,0.61746,0.99218,0.87819,0.769728,0.602783,0.163417,0.229649,0.795217,0.340759,0.0483193,0.626395,0.426777,0.864502,0.440813,0.533598,0.519478,0.0398848,0.245276,0.0360172,0.749301,0.120166,0.794257,0.438727,0.985694,0.701181,0.236034,0.434099,0.933463,0.337745,0.477515,0.202407,0.147353,0.462271,0.754292,0.700756,0.986932,0.760402,0.250479,0.78965,0.443971,0.712796,0.419534,0.039826,0.838637,0.994787,0.0422614,0.719165,0.484899,0.218022,0.279592,0.993059,0.913045,0.881478,0.646127,0.136701,0.46033,0.842744,0.854807,0.0725613,0.142521,0.442459,0.0782795,0.27312,0.617733,0.903445,0.793204,0.614373,0.482814,0.401247,0.923602,0.98559,0.266284,0.656842,0.806569,0.565646,0.861875,0.565256,0.516195,0.70125,0.990046,0.673493,0.17759,0.569146,0.907569,0.314631,0.231821,0.0461047,0.289242,0.199838,0.96317,0.530842,0.375589,0.196365,0.440246,0.546341,0.266129,0.600189,0.468701,0.715346,0.183308,0.756632,0.727024,0.041749,0.0976101,0.854558,0.373616,0.951947,0.290586,0.891363,0.149669,0.186259,0.25508,0.498152,0.841316,0.314638,0.283113,0.0586954,0.72031,0.239973,0.425253,0.00692785,0.456151,0.491728,0.132476,0.234571,0.592778,0.599825,0.498203,0.663027,0.557589,0.41649,0.680747,0.096216,0.399965,0.00323856,0.980749,0.297979,0.0490169,0.193977,0.380336,0.441813,0.12842,0.454263,0.126237,0.652375,0.993115,0.895841,0.761863,0.830409,0.901437,0.315974,0.15977,0.241653,0.800435,0.366879,0.467273,0.58851,0.62601,0.657803,0.542517,0.872349,0.139207,0.841317,0.23167,0.882035,0.72965,0.452601,0.140953,0.246887,0.0670469,0.184403,0.53229,0.0204678,0.254571,0.731069,0.896257,0.230329,0.553207,0.74511,0.50999,0.408206,0.709977,0.59725,0.162307,0.667083,0.541474,0.714618,0.583824,0.1406,0.23866,0.345036,0.316863,0.830245,0.532047,0.971523,0.559278,0.0595521,0.6125,0.445092,0.507704,0.785908,0.928117,0.875114,0.482504,0.325276,0.0735228,0.497098,0.434427,0.891739,0.761482,0.763959,0.33738,0.827228,0.876312,0.980564,0.840905,0.308735,0.743496,0.917633,0.826081,0.589088,0.831626,0.522215,0.311752,0.472163,0.868775,0.829729,0.976229,0.530346,0.471787,0.798445,0.524545,0.0878485,0.402551,0.306757,0.150919,0.371068,0.346706,0.689999,0.246879,0.242199,0.855062,0.831777,0.0621033,0.622954,0.313973,0.222735,0.930824,0.793576,0.3265,0.940625,0.303467,0.906635,0.983159,0.337813,0.548381,0.0209107,0.184142,0.416915,0.332788,0.179895,0.0933766,0.397484,0.829015,0.0325623,0.570887,0.226818,0.981823,0.656703,0.366507,0.0149843,0.400644,0.913363,0.760355,0.855829,0.460327,0.237397,0.57202,0.571926,0.415814,0.196206,0.209448,0.331132,0.619202,0.893864,0.448003,0.345892,0.368793,0.248116,0.601991,0.505539,0.351538,0.662031,0.451463,0.0701714,0.255081,0.993616,0.552855,0.712138,0.569276,0.149681,0.628656,0.862476,0.51835,0.523182,0.765041,0.406917,0.78105,0.0415996,0.348485,0.722726,0.52253,0.21008,0.642382,0.167875,0.863499,0.660828,0.782515,0.220765,0.522574,0.0384629,0.0529319,0.146176,0.71137,0.605363,0.386692,0.231773,0.547465,0.0961722,0.450315,0.682432,0.065305,0.231214,0.886084,0.438812,0.104712,0.405453,0.396446,0.99976,0.551197,0.832781,0.332832,0.351816,0.327196,0.913122,0.225798,0.773884,0.0698046,0.734346,0.225586,0.394808,0.56609,0.326778,0.979788,0.0613906,0.0285214,0.902394,0.837235,0.98418,0.793917,0.364674,0.890675,0.0647041,0.587925,0.617855,0.226057,0.565803,0.774945,0.565145,0.474533,0.454454,0.4805,0.687056,0.0769094,0.823539,0.278802,0.854012,0.462509,0.0249278,0.652363,0.108152,0.429499,0.139003,0.860197,0.219152,0.891034,0.981519,0.281063,0.301945,0.353916,0.698869,0.278897,0.0194556,0.402782,0.318327,0.217026,0.818374,0.578879,0.690451,0.170904,0.842751,0.41678,0.389079,0.219753,0.156332,0.258356,0.738185,0.538583,0.962434,0.0443944,0.784832,0.11191,0.291193,|0.130606,0.181603,0.423419,0.593874,0.805803,0.686394,0.635833,0.112864,0.530886,0.504126,0.950859,0.667693,0.11353,0.968512,0.31928,0.863544,0.923413,0.0262902,0.437393,0.126038,0.769673,0.552615,0.670552,0.38765,0.794051,0.154601,0.934162,0.729362,0.573535,0.803337,0.379767,0.104292,0.269921,0.89243,0.067314,0.851048,0.903869,0.89414,0.58393,0.440417,0.212246,0.707034,0.853435,0.393572,0.847861,0.649752,0.165378,0.799,0.451706,0.125671,0.761703,0.277468,0.922285,0.237185,0.119963,0.770018,0.405372,0.860846,0.962013,0.0096308,0.314336,0.124271,0.891191,0.4657,0.640668,0.67571,0.970943,0.123343,0.32702,0.394728,0.803786,0.0438275,0.168632,0.630413,0.229558,0.489542,0.540805,0.308316,0.258595,0.560655,0.161027,0.175878,0.885628,0.500178,0.268687,0.0896354,0.113915,0.195655,0.62143,0.809217,0.260385,0.815248,0.6617,0.757378,0.217893,0.476815,0.834586,0.721835,0.930696,0.333507,0.425098,0.828949,0.729398,0.800424,0.348531,0.626816,0.917248,0.826056,0.507396,0.819927,0.97827,0.130253,0.422969,0.0687561,0.505917,0.575327,0.598635,0.97248,0.76086,0.236741,0.966368,0.807085,0.901846,0.42694,0.606588,0.00210208,0.504566,0.636038,0.469484,0.0487976,0.610044,0.738949,0.609605,0.103378,0.795828,0.85654,0.14347,0.83324,0.382379,0.584803,0.37038,0.10474,0.73412,0.314537,0.464059,0.560568,0.100126,0.139086,0.424337,0.773598,0.157849,0.891845,0.201241,0.886699,0.389582,0.498246,0.565492,0.6896,0.106908,0.753497,0.871295,0.0130212,0.562708,0.634954,0.771904,0.737579,0.0221777,0.455384,0.82716,0.429941,0.542401,0.306156,0.126704,0.0438518,0.490648,0.771606,0.199199,0.309235,0.419916,0.127058,0.53046,0.895879,0.0418542,0.894602,0.154678,0.263893,0.102167,0.421011,0.235729,0.026028,0.270691,0.975743,0.536274,0.0924754,0.0766276,0.958105,0.457303,0.10306,0.200351,0.530499,0.772663,0.924563,0.291087,0.996327,0.360312,0.108872,0.950609,0.368335,0.306359,0.174217,0.809263,0.825058,0.520159,0.215562,0.0118968,0.0708748,0.879458,0.759299,0.645292,0.857596,0.67848,0.836042,0.440809,0.197698,0.366454,0.325881,0.777646,0.643196,0.348769,0.0911457,0.379667,0.968493,0.468704,0.462687,0.931367,0.622352,0.0719247,0.775882,0.900988,0.152193,0.930496,0.0393921,0.12626,0.0441811,0.141604,0.076771,0.184718,0.375183,0.262136,0.270487,0.137548,0.152796,0.645232,0.398596,0.979286,0.41584,0.357031,0.0402357,0.492086,0.467514,0.94405,0.497339,0.197861,0.10203,0.980587,0.0549964,0.234357,0.566719,0.223126,0.551239,0.912797,0.919744,0.221289,0.145965,0.769637,0.789953,0.304739,0.860437,0.850635,0.147327,0.650844,0.617412,0.361719,0.488555,0.821728,0.0930122,0.556357,0.80505,0.614443,0.288243,0.83296,0.720749,0.381925,0.560154,0.311754,0.595335,0.163657,0.503616,0.409521,0.444536,0.132595,0.147531,0.281826,0.169591,0.0652137,0.758393,0.448668,0.137587,0.990865,0.799338,0.205263,0.715924,0.999887,0.643439,0.870816,0.598466,0.0429283,0.176758,0.90471,0.714636,0.108637,0.912769,0.833766,0.494974,0.361469,0.249776,0.984093,0.962875,0.555503,0.690222,0.500687,0.702985,0.659452,0.112476,0.849059,0.319171,0.495686,0.379255,0.287431,0.614599,0.61338,0.665318,0.99055,0.48637,0.999484,0.347015,0.704139,0.0327896,0.508336,0.55801,0.165997,0.281208,0.929569,0.196229,0.26372,0.640657,0.869313,0.60033,0.385299,0.1152,0.679482,0.233716,0.982211,0.241199,0.0956122,0.0901769,0.0924461,0.149288,0.109921,0.458754,0.357003,0.975426,0.379267,0.561829,0.777748,0.0105609,0.98468,0.996367,0.88191,0.775063,0.214828,0.103792,0.97633,0.862195,0.263193,0.057144,0.667742,0.272704,0.689893,0.858589,0.524937,0.637364,0.529724,0.730384,0.287801,0.383669,0.589291,0.205459,0.779138,0.658559,0.531495,0.609946,0.337933,0.623804,0.515577,0.387829,0.468686,0.0811818,0.183429,0.258961,0.616532,0.155707,0.65505,0.319865,0.659042,0.164895,0.526823,0.566746,0.768887,0.350287,0.842881,0.690594,0.785268,0.934001,0.803972,0.677035,0.590701,0.699295,0.0740584,0.228915,0.324325,0.503108,0.907585,0.269539,0.066968,0.863968,0.539474,0.291065,0.111269,0.388461,0.473102,0.193363,0.262715,0.983443,0.482383,0.109151,0.882194,0.838947,0.02327,0.532463,0.0925725,0.441138,0.194308,0.481068,0.632763,0.771751,0.164419,0.251944,0.242739,0.333057,0.68867,0.625333,0.622438,0.485223,0.891317,0.282683,0.0404967,0.131253,0.163897,0.974951,0.694737,0.0289119,0.126829,0.256863,0.638484,0.854199,0.0186771,0.526233,0.00855309,0.018406,0.64215,0.852238,0.498787,0.164259,0.184186,0.818358,0.279878,0.331886,0.417151,0.143189,0.47274,0.014167,0.312302,0.693837,0.547973,0.470832,0.903505,0.218446,0.029588,0.134084,0.605579,0.567664,0.913618,0.086695,0.19396,0.827485,0.10685,0.259079,0.227003,0.120695,0.762313,0.0637666,0.0841224,0.422051,0.947807,0.799506,0.480138,0.0354272,0.117517,0.618673,0.58057,0.991121,0.216883,0.250691,0.078589,0.349816,0.425093,0.714728,0.907466,0.345827,0.759307,0.320135,0.783762,0.432923,0.838806,0.351783,0.73617,0.963783,0.122039,0.255875,0.809428,0.873964,0.94436,0.851488,0.464309,0.947028,0.164945,0.321027,0.608216,0.753673,0.484122,0.788306,0.768435,0.988664,0.683738,0.625335,0.98879,0.110709,0.898359,0.263541,0.334554,0.392973,0.595832,0.460991,0.32871,0.154916,0.362615,0.315868,0.170036,0.0277725,0.0207516,0.813491,0.29747,0.908946,0.317296,0.0457935,0.392971,0.364635,0.579561,0.573644,0.568435,0.36046,0.683859,0.627251,0.650544,0.830582,0.231643,0.462616,0.898307,0.909222,0.00777334,0.2422,0.988452,0.433717,0.831826,0.793872,0.949879,0.90737,0.547019,0.700512,0.00417042,0.341481,0.636209,0.293588,0.265467,0.235466,0.773818,0.481012,0.505028,0.593196,0.921294,0.301009,0.326186,0.852213,0.100847,0.358771,0.658927,0.550705,0.244625,0.251063,0.0575239,0.185818,0.856639,0.0394285,0.075939,0.849358,0.850932,0.0147402,0.764524,0.298375,0.543804,0.672844,0.643041,0.989245,0.992969,0.168486,0.248056,0.862442,0.191896,0.61623,0.934874,0.318319,0.608239,0.826704,0.879688,0.449387,0.00448769,0.547933,0.263679,0.412697,0.992966,0.0241993,0.948988,0.276227,0.468923,0.0612987,0.214491,0.119102,0.605964,0.780841,0.97144,0.908561,0.386981,0.805869,0.142971,0.870304,0.697917,0.160042,0.552958,0.171652,0.532203,0.0578153,0.26008,0.283461,0.224946,0.564301,0.0501804,0.245264,0.735322,0.392463,0.674644,0.199903,0.551741,0.439929,0.778628,0.188233,0.0495437,0.357148,0.32762,0.0717603,0.904455,0.868529,0.161951,0.938795,0.316936,0.952841,0.688281,0.894421,0.217967,0.679646,0.0725023,0.326131,0.694875,0.30975,0.771882,0.0430989,0.599385,0.756813,0.914593,0.83369,0.40874,0.858903,0.117159,0.758923,0.686522,0.278849,0.323937,0.988143,0.227932,0.287968,0.164647,0.0667306,0.971222,0.782028,0.300717,0.805693,0.355386,0.27025,0.268138,0.911655,0.0262203,0.283102,0.231301,0.392729,0.930052,0.799143,0.585218,0.126936,0.584825,0.257239,0.776833,0.839287,0.872038,0.661993,0.371273,0.214161,0.472656,0.28152,0.354439,0.0603554,0.377585,0.237591,0.950245,0.760457,0.718008,0.786982,0.693742,0.512812,0.34712,0.397261,0.726644,0.748819,0.61223,0.97082,0.923808,0.527296,0.11309,0.88344,0.977815,0.735081,0.874929,0.785493,0.384935,0.946228,0.321835,0.0958361,0.614976,0.406855,0.47487,0.710588,0.919701,0.850727,0.738205,0.295104,0.0386437,0.139053,0.532208,0.0165803,0.20759,0.641031,0.150065,0.346309,0.820449,0.844248,0.764298,0.79046,0.918096,0.197613,0.664043,0.25904,0.758561,0.290668,0.52303,0.422284,0.887737,0.757531,0.410618,0.330352,0.0505418,0.179078,0.393299,0.90378,0.0928798,0.295156,0.0611104,0.241699,0.575773,0.288802,0.0361935,0.257277,0.584372,0.514975,0.846713,0.215214,0.231166,0.370059,0.220006,0.409324,0.227784,0.189475,0.464534,0.11246,0.756295,0.784176,0.927294,0.717325,0.686193,0.865148,0.738124,0.224408,0.751885,0.870727,0.595573,0.748269,0.325735,0.998122,0.705786,0.598529,0.220561,0.0258407,0.185819,0.295461,0.0604439,0.574668,0.752952,0.390198,0.0756984,0.314772,0.615255,0.58961,0.69725,0.717524,0.749061,0.664359,0.185185,0.793979,0.774164,0.425292,0.141152,0.00291121,0.847513,0.0957922,0.162463,0.401276,0.886388,0.895916,0.868394,0.25803,0.583673,0.552735,0.831282,0.226367,0.364215,0.991439,0.779405,0.840708,0.559823,0.365185,0.360596,0.142106,0.068336,0.392541,0.962099,0.660931,0.880098,0.499481,0.381265,0.87258,0.619044,0.32109,0.0487619,0.723864,0.768664,0.828004,0.924567,0.504211,0.252297,0.456827,0.165007,0.0137414,0.0840027,0.156885,0.444221,0.0903327,0.138373,0.859796,0.979677,0.554737,0.398815,0.920623,0.845397,0.770253,0.959582,0.232454,0.955947,0.884123,0.118447,0.0838092,0.494237,0.0294958,0.753732,0.954587,0.60793,0.519389,0.15146,0.39108,0.150376,0.500586,0.787496,0.421094,0.0258363,0.683443,0.106894,0.944978,0.186034,0.849309,0.130836,0.189751,0.515023,0.320145,0.1789,0.0613167,0.474485,0.625074,0.719213,0.299201,0.101002,0.604545,0.0787313,0.818501,0.266569,0.369545,0.677811,0.849611,0.0526253,0.250246,0.899144,0.572439,0.494241,0.71986,0.517971,0.0861508,0.00420886,0.389066,0.0509373,0.545042,0.0497705,0.65125,0.207171,0.59538,0.896123,0.580481,0.478553,0.31911,0.0588071,0.81889,0.881336,0.928972,0.807154,0.507278,0.521904,0.321888,0.579502,0.807161,0.772472,0.39005,0.351597,0.54224,0.673397,0.560606,|0.624836,0.181431,0.208839,0.508028,0.233906,0.0894041,0.323084,0.512596,0.624288,0.926253,0.935571,0.257394,0.844156,0.18072,0.571568,0.946171,0.196245,0.09514,0.424028,0.706779,0.643967,0.0348367,0.656256,0.559925,0.983947,0.572102,0.676976,0.62797,0.867359,0.670648,0.842795,0.409644,0.768368,0.104468,0.519582,0.813149,0.265015,0.54374,0.362785,0.377492,0.469094,0.398678,0.912839,0.0245253,0.629138,0.840106,0.34321,0.197946,0.424812,0.683392,0.167617,0.736303,0.69892,0.00971591,0.339475,0.872879,0.020598,0.33802,0.474427,0.983786,0.606022,0.462695,0.990782,0.053842,0.791354,0.0129701,0.973646,0.432782,0.174053,0.352256,0.162805,0.0102456,0.481093,0.53208,0.699693,0.575427,0.306267,0.31108,0.400134,0.688375,0.285527,0.707291,0.675262,0.42164,0.732324,0.889439,0.363673,0.465403,0.801065,0.254796,0.803866,0.315571,0.771356,0.0829335,0.791772,0.294069,0.705789,0.698317,0.456137,0.533236,0.274761,0.327827,0.690625,0.313728,0.900062,0.303365,0.293931,0.93145,0.798021,0.261176,0.35394,0.708393,0.332461,0.881119,0.334853,0.499959,0.318143,0.507913,0.824577,0.194716,0.129335,0.431678,0.411498,0.0581452,0.340723,0.292505,0.467322,0.441485,0.127933,0.510565,0.721635,0.212653,0.952669,0.540016,0.76589,0.696058,0.506714,0.563724,0.682088,0.0998586,0.90287,0.252636,0.906034,0.0134131,0.439337,0.399759,0.653447,0.0622865,0.23965,0.651197,0.678271,0.439271,0.133079,0.183272,0.533127,0.422665,0.962279,0.617956,0.419685,0.706847,0.8236,0.502751,0.647583,0.478083,0.954146,0.334365,0.647923,0.804844,0.711495,0.492414,0.495829,0.292016,0.0436599,0.990273,0.243818,0.956522,0.632876,0.741777,0.653833,0.938013,0.969219,0.0759418,0.71617,0.399458,0.488828,0.0978103,0.917704,0.284644,0.878505,0.941179,0.636665,0.305726,0.781142,0.161418,0.549977,0.319516,0.321203,0.598901,0.760995,0.21589,0.739263,0.24784,0.0580084,0.0844099,0.575325,0.478178,0.241719,0.494808,0.35705,0.820503,0.901212,0.617997,0.690204,0.854229,0.975529,0.342432,0.564478,0.832249,0.501761,0.470896,0.145265,0.656993,0.420711,0.431442,0.39045,0.424169,0.0672849,0.725091,0.0888203,0.68342,0.660149,0.672902,0.653341,0.547028,0.669278,0.946972,0.466713,0.116118,0.722415,0.345698,0.461505,0.250466,0.0145438,0.0294045,0.221377,0.474662,0.682668,0.460146,0.331028,0.427439,0.266535,0.185979,0.879797,0.406684,0.133683,0.970045,0.0952394,0.79106,0.125674,0.919226,0.114377,0.914308,0.43388,0.239779,0.770957,0.538685,0.933285,0.349242,0.352316,0.827344,0.636936,0.877374,0.236845,0.133562,0.448868,0.89947,0.678387,0.224615,0.774745,0.0430716,0.728614,0.656982,0.156964,0.4793,0.7223,0.0280501,0.771433,0.43663,0.989445,0.544199,0.475122,0.0161885,0.024814,0.620248,0.712304,0.937856,0.604447,0.273508,0.631945,0.17166,0.237524,0.756028,0.925781,0.794482,0.810437,0.66448,0.853312,0.0241358,0.727247,0.794128,0.600712,0.771867,0.493568,0.626923,0.33885,0.179039,0.575951,0.0820253,0.00525689,0.361709,0.108135,0.281529,0.862539,0.680512,0.12378,0.0693812,0.65563,0.310697,0.346882,0.22872,0.558454,0.910495,0.199869,0.897457,0.566203,0.196056,0.560069,0.744122,0.682647,0.364074,0.926616,0.0675302,0.0932738,0.435115,0.0697336,0.397591,0.81337,0.800081,0.0809516,0.206655,0.284946,0.920607,0.517257,0.955373,0.800782,0.615258,0.122469,0.112194,0.166791,0.725948,0.941369,0.449527,0.759948,0.737596,0.405332,0.690242,0.582369,0.603821,0.213165,0.313956,0.93477,0.112956,0.76741,0.372283,0.110923,0.169701,0.161402,0.746825,0.493319,0.915843,0.105962,0.902473,0.667029,0.796975,0.471144,0.428325,0.221346,0.858735,0.266541,0.125238,0.236611,0.878061,0.634915,0.914142,0.650706,0.922784,0.160728,0.945553,0.45,0.0956346,0.219992,0.455937,0.425197,0.0719965,0.287077,0.682059,0.565574,0.358773,0.967725,0.0257221,0.164402,0.290178,0.792903,0.917888,0.208194,0.271339,0.936212,0.817953,0.405222,0.15391,0.966088,0.00164306,0.669305,0.161188,0.851497,0.173237,0.284977,0.849476,0.18246,0.55048,0.606787,0.204617,0.356437,0.925993,0.060957,0.390052,0.924726,0.719595,0.599371,0.907162,0.574835,0.819384,0.702177,0.452572,0.533229,0.162833,0.0858532,0.196296,0.936625,0.930336,0.152527,0.804021,0.592637,0.845302,0.101858,0.184727,0.54857,0.195766,0.31245,0.0904089,0.928402,0.343918,0.269592,0.111102,0.500386,0.303738,0.435356,0.725932,0.070307,0.00391603,0.511098,0.374003,0.299322,0.157406,0.79205,0.124385,0.713625,0.445084,0.699221,0.396279,0.858585,0.922613,0.374242,0.925683,0.486044,0.248539,0.954425,0.546732,0.418175,0.960512,0.481943,0.850872,0.774729,0.182505,0.44031,0.233847,0.904037,0.315515,0.253034,0.949895,0.392689,0.112719,0.191635,0.62588,0.0372787,0.0738672,0.297808,0.0898336,0.0277155,0.318686,0.794805,0.279795,0.381053,0.105296,0.26078,0.779947,0.294749,0.586981,0.925343,0.738734,0.541215,0.893067,0.0706434,0.66753,0.652523,0.752496,0.543665,0.307252,0.999058,0.275419,0.346395,0.693158,0.693545,0.439696,0.626702,0.435785,0.689016,0.292686,0.913194,0.664349,0.203468,0.266241,0.44349,0.0877282,0.0624675,0.579869,0.942789,0.451357,0.696397,0.202191,0.0688347,0.800944,0.529457,0.714372,0.14102,0.195959,0.149363,0.149678,0.425157,0.138529,0.509748,0.756622,0.845637,0.643201,0.38821,0.74371,0.520047,0.122614,0.663824,0.83593,0.556171,0.484113,0.232112,0.495164,0.9292,0.394065,0.0662361,0.912384,0.150747,0.931454,0.161829,0.38445,0.719647,0.31868,0.690914,0.177491,0.984308,0.260032,0.886115,0.00444651,0.812041,0.316757,0.82291,0.520721,0.35152,0.0192561,0.370672,0.553955,0.918805,0.0815502,0.341653,0.680935,0.180025,0.497177,0.99618,0.240206,0.587894,0.669157,0.773839,0.963399,0.818302,0.744672,0.662064,0.559255,0.240017,0.587733,0.863531,0.568083,0.821706,0.266246,0.15408,0.955897,0.51553,0.0566254,0.638195,0.777928,0.365362,0.0950906,0.41259,0.469495,0.890143,0.311963,0.685704,0.452037,0.507328,0.443972,0.625715,6.62208e-05,0.961936,0.0196933,0.582589,0.496108,0.920182,0.767286,0.48079,0.889093,0.853848,0.71072,0.00238407,0.568272,0.451149,0.358808,0.773658,0.487921,0.466725,0.0470688,0.57092,0.153749,0.393113,0.180147,0.917888,0.857629,0.199225,0.378932,0.785726,0.776429,0.449206,0.0195462,0.311054,0.49939,0.0764386,0.293738,0.0165774,0.846812,0.721666,0.650313,0.0356476,0.137112,0.983566,0.550968,0.940392,0.175434,0.645643,0.802849,0.832001,0.950338,0.307012,0.794698,0.543312,0.938625,0.0527615,0.547658,0.329164,0.783081,0.63796,0.809503,0.78522,0.807641,0.291821,0.223143,0.382437,0.106442,0.426598,0.162191,0.663436,0.409513,0.212562,0.412259,0.837421,0.0183345,0.577681,0.570674,0.89319,0.736921,0.778617,0.417827,0.366446,0.0860814,0.616261,0.429973,0.782881,0.028594,0.942373,0.0136833,0.343436,0.892018,0.745641,0.459408,0.846411,0.131286,0.152401,0.0351149,0.886944,0.728852,0.891171,0.00459629,0.73389,0.7811,0.275498,0.371914,0.272445,0.50637,0.921424,0.796869,0.506502,0.938307,0.359739,0.95527,0.593161,0.72603,0.502518,0.768327,0.630723,0.347996,0.816511,0.721703,0.523776,0.733574,0.502897,0.12494,0.291006,0.873082,0.489807,0.455902,0.00546229,0.190722,0.382625,0.472985,0.0923401,0.060476,0.988175,0.180702,0.118317,0.848916,0.552226,0.344433,0.680422,0.0939535,0.157585,0.730257,0.998413,0.558069,0.35781,0.152481,0.339025,0.546016,0.187274,0.306162,0.924,0.18998,0.188298,0.386731,0.763258,0.956344,0.102404,0.101447,0.744729,0.11739,0.65363,0.853242,0.308569,0.578352,0.887573,0.929825,0.886187,0.106307,0.341263,0.689907,0.787212,0.00772083,0.725435,0.361046,0.123193,0.765702,0.700347,0.520627,0.52456,0.514091,0.226849,0.825164,0.354405,0.273193,0.83699,0.0391348,0.472888,0.533202,0.283958,0.926832,0.821073,0.384551,0.472597,0.80476,0.590359,0.404152,0.138489,0.20912,0.162901,0.775987,0.236373,0.616988,0.556612,0.438044,0.688926,0.788454,0.749655,0.121814,0.541874,0.806188,0.123445,0.694564,0.0162022,0.470763,0.193097,0.169444,0.19052,0.952293,0.64918,0.224752,0.575066,0.0536951,0.856275,0.3538,0.500257,0.719302,0.410162,0.346536,0.171814,0.499353,0.439241,0.385554,0.979336,0.442773,0.466333,0.473535,0.213573,0.547953,0.985319,0.465349,0.396404,0.466737,0.162282,0.426933,0.15056,0.326903,0.0364541,0.0184537,0.91794,0.722068,0.952247,0.364746,0.78956,0.92267,0.637885,0.147967,0.688573,0.666084,0.940375,0.101755,0.997599,0.562808,0.189814,0.530504,0.723153,0.43731,0.148097,0.718488,0.173188,0.890136,0.623471,0.463218,0.931625,0.0552536,0.0305277,0.527675,0.854979,0.551106,0.904539,0.0406415,0.361238,0.117876,0.030903,0.721991,0.785688,0.506954,0.365449,0.461939,0.226351,0.938535,0.0352817,0.389365,0.24236,0.916538,0.888419,0.869404,0.000139475,0.733482,0.691441,0.172634,0.474759,0.90975,0.246308,0.555225,0.681953,0.503064,0.46144,0.152644,0.355075,0.358806,0.0561401,0.442793,0.496674,0.873351,0.712805,0.556886,0.802061,0.70534,0.989439,0.331406,0.624271,0.419233,0.54893,0.891678,0.47563,0.318466,0.444725,0.124387,0.296349,0.98355,0.502423,0.501536,0.224458,0.687364,0.795123,0.163187,0.653953,0.832723,0.617332,0.462784,0.812224,0.178652,0.655543,0.460215,0.992909,0.517082,0.820485,0.985912,0.472055,0.726411,0.585857,0.121949,0.978468,0.379588,0.894195,0.689264,0.196653,0.150994,0.721843,0.725883,0.834666,0.431814,|0.767537,0.536492,0.294445,0.739623,0.794702,0.889902,0.909845,0.365841,0.0839314,0.740797,0.282724,0.397607,0.520453,0.271377,0.400703,0.13142,0.687135,0.498913,0.0519947,0.619525,0.207487,0.439047,0.0295436,0.521838,0.962679,0.437888,0.205455,0.590353,0.208358,0.94144,0.894023,0.696189,0.399768,0.142705,0.980855,0.0712843,0.47436,0.383951,0.214013,0.350112,0.440856,0.194876,0.938299,0.39764,0.858744,0.220599,0.785748,0.183222,0.752827,0.817307,0.0670018,0.223584,0.937405,0.805716,0.0607207,0.113589,0.560903,0.263471,0.808255,0.249326,0.534457,0.694032,0.929588,0.179045,0.660079,0.0787012,0.39393,0.0249457,0.203256,0.179965,0.528606,0.304496,0.420496,0.0319167,0.899222,0.344478,0.480555,0.514757,0.292937,0.494703,0.124111,0.465032,0.0388358,0.93043,0.730974,0.955647,0.745221,0.220918,0.470948,0.870759,0.356939,0.666145,0.887677,0.100162,0.701016,0.230566,0.969149,0.220893,0.928733,0.384024,0.288404,0.501494,0.384014,0.7243,0.0951967,0.160536,0.256761,0.418326,0.5646,0.68435,0.377934,0.444995,0.684383,0.0920792,0.674954,0.0112342,0.0743517,0.719342,0.408241,0.240197,0.123688,0.0157087,0.221118,0.828093,0.49556,0.100645,0.0348464,0.572203,0.661655,0.602771,0.953186,0.890487,0.608563,0.270158,0.361977,0.538591,0.522517,0.890307,0.815033,0.0375064,0.0636526,0.179185,0.879533,0.784335,0.371573,0.216171,0.372158,0.896648,0.415839,0.435931,0.493587,0.599205,0.784335,0.6825,0.741347,0.102652,0.271323,0.136679,0.724234,0.0642673,0.526581,0.57836,0.943811,0.294266,0.220004,0.456372,0.361778,0.0561385,0.840765,0.215755,0.0962867,0.0372192,0.74136,0.774581,0.842523,0.307243,0.822916,0.853446,0.654082,0.0636165,0.213627,0.233127,0.920643,0.257909,0.18669,0.892914,0.905232,0.740243,0.576792,0.630963,0.649762,0.0505344,0.117148,0.955133,0.413113,0.180347,0.735901,0.989639,0.0765694,0.915197,0.789954,0.467105,0.8148,0.660867,0.362876,0.174749,0.90614,0.508286,0.431466,0.0911369,0.764415,0.365737,0.540341,0.982591,0.299256,0.717306,0.466781,0.568197,0.225741,0.965022,0.659139,0.25629,0.0728921,0.141356,0.820463,0.609693,0.300241,0.118518,0.215803,0.39241,0.346534,0.843036,0.873968,0.121448,0.814519,0.822051,0.421695,0.0934545,0.0389053,0.842382,0.0802048,0.639618,0.285928,0.118599,0.135025,0.0114287,0.548346,0.676965,0.591182,0.773196,0.227102,0.995073,0.52206,0.691878,0.150783,0.88008,0.111354,0.547046,0.0111813,0.878878,0.914155,0.547912,0.450143,0.530878,0.404991,0.748324,0.347543,0.787769,0.117003,0.409932,0.582348,0.0805833,0.779641,0.745966,0.0165634,0.717998,0.628754,0.146106,0.485762,0.593119,0.140127,0.789786,0.429286,0.633435,0.564623,0.927411,0.186598,0.684495,0.84417,0.808955,0.544579,0.059227,0.113338,0.138643,0.0984783,0.278688,0.356179,0.656645,0.464772,0.181201,0.456953,0.800028,0.681653,0.711599,0.620981,0.926395,0.158868,0.0989276,0.458717,0.703649,0.690714,0.666597,0.319841,0.153777,0.134596,0.71052,0.344248,0.801865,0.898622,0.240863,0.391839,0.198842,0.0622228,0.945954,0.766569,0.963381,0.750434,0.0429552,0.0160452,0.58106,0.904484,0.529465,0.160406,0.171982,0.932672,0.405887,0.573932,0.211742,0.00167334,0.747368,0.332802,0.427283,0.661307,0.212307,0.813653,0.262029,0.117029,0.100738,0.962185,0.997041,0.509176,0.693586,0.393486,0.804302,0.236498,0.450512,0.0822049,0.996904,0.267628,0.444394,0.126219,0.87734,0.815429,0.908126,0.687754,0.345011,0.508732,0.496295,0.701666,0.671,0.885971,0.0504735,0.732309,0.00527251,0.0184798,0.585724,0.7553,0.527671,0.245996,0.616659,0.274423,0.737314,0.623105,0.50695,0.149786,0.642508,0.665816,0.943403,0.165707,0.824994,0.807574,0.0175404,0.564761,0.612518,0.353988,0.35833,0.0982971,0.836354,0.195069,0.933872,0.357436,0.34589,0.303208,0.0497927,0.653343,0.0704616,0.208585,0.869455,0.204862,0.769499,0.938304,0.364781,0.097463,0.956032,0.653959,0.651165,0.20203,0.58874,0.473697,0.667917,0.962588,0.612697,0.914803,0.680071,0.0135091,0.383895,0.0373341,0.419142,0.943437,0.912666,0.889146,0.210241,0.0268165,0.668949,0.0715045,0.264146,0.488674,0.633909,0.216258,0.735849,0.235501,0.972652,0.0650827,0.427603,0.0938131,0.929642,0.977083,0.393731,0.978526,0.498211,0.683546,0.413384,0.829883,0.96141,0.878634,0.256719,0.00229031,0.470986,0.964432,0.148882,0.0704838,0.324078,0.585208,0.576057,0.775556,0.413873,0.683457,0.69989,0.945137,0.853487,0.243386,0.00412548,0.909173,0.174651,0.856292,0.950345,0.789843,0.98848,0.746535,0.823712,0.170675,0.766948,0.269588,0.00208938,0.6984,0.499116,0.850414,0.324755,0.0774177,0.251334,0.340674,0.600315,0.375422,0.4662,0.514445,0.0451634,0.329569,0.967001,0.0650025,0.0855694,0.439093,0.813713,0.587893,0.132875,0.501933,0.609168,0.860527,0.0329906,0.987181,0.668001,0.856489,0.0313737,0.0141659,0.754556,0.118809,0.742456,0.38057,0.724753,0.136504,0.838945,0.884805,0.152465,0.0646713,0.221387,0.59197,0.250834,0.230145,0.912746,0.788146,0.979251,0.941012,0.113541,0.321498,0.209053,0.386835,0.930704,0.842179,0.206347,0.841462,0.606587,0.622263,0.751112,0.0719665,0.160151,0.0854169,0.344919,0.40187,0.554027,0.740074,0.709337,0.294194,0.605016,0.178483,0.716875,0.705725,0.791201,0.809383,0.0419725,0.71667,0.453353,0.868147,0.74166,0.482975,0.308387,0.0274752,0.508575,0.439176,0.524416,0.0627272,0.297162,0.162157,0.418271,0.069197,0.85571,0.803756,0.597728,0.630945,0.315898,0.0587035,0.315142,0.0462039,0.685561,0.904977,0.755488,0.592704,0.817102,0.112942,0.933022,0.390697,0.580524,0.454517,0.0506235,0.052981,0.577829,0.815615,0.869927,0.30656,0.146877,0.457552,0.617082,0.0351194,0.728362,0.206422,0.988837,0.99018,0.69968,0.142043,0.850808,0.678586,0.256441,0.578389,0.194243,0.273834,0.557986,0.258368,0.839552,0.0142419,0.76262,0.201605,0.129759,0.870846,0.20846,0.136416,0.823897,0.181782,0.789099,0.408553,0.353568,0.85495,0.0801846,0.0289074,0.934895,0.28552,0.489738,0.998758,0.202639,0.779685,0.623747,0.442989,0.233362,0.563391,0.847042,0.926985,0.270924,0.694741,0.0132698,0.030452,0.348937,0.540153,0.249777,0.0668017,0.956644,0.361154,0.972076,0.178259,0.782263,0.978333,0.917672,0.495829,0.621915,0.265822,0.66786,0.675792,0.218923,0.998097,0.895694,0.424972,0.676892,0.472923,0.269316,0.935222,0.474468,0.146073,0.677171,0.110598,0.249059,0.214227,0.281756,0.439412,0.692604,0.714813,0.916858,0.126183,0.567161,0.422312,0.260359,0.600371,0.769359,0.22689,0.790164,0.433372,0.689731,0.928291,0.26192,0.547716,0.356949,0.0765188,0.0666768,0.140428,0.413593,0.549847,0.538468,0.40203,0.489309,0.146184,0.50304,0.968832,0.476201,0.161209,0.636363,0.719082,0.564572,0.356488,0.134469,0.114163,0.932902,0.453692,0.962735,0.641158,0.0752824,0.997451,0.48587,0.116218,0.7519,0.624986,0.0362388,0.393131,0.261517,0.569821,0.311659,0.974953,0.250398,0.549217,0.990157,0.389753,0.0271199,0.276608,0.186934,0.365488,0.0815107,0.0115623,0.0772093,0.501957,0.0673239,0.147913,0.276183,0.539594,0.0227962,0.386668,0.229025,0.608997,0.428592,0.753933,0.681064,0.971514,0.377542,0.747107,0.978728,0.553653,0.0980136,0.661008,0.891934,0.980353,0.257738,0.313436,0.857921,0.226799,0.752408,0.628495,0.146552,0.872286,0.311728,0.972528,0.55408,0.298323,0.759336,0.583654,0.185765,0.537851,0.924111,0.216603,0.808476,0.424679,0.8015,0.500526,0.0848479,0.857645,0.898758,0.309629,0.347491,0.788859,0.900837,0.23494,0.109886,0.536776,0.611009,0.104041,0.993119,0.6973,0.565281,0.843363,0.626663,0.00241923,0.0349278,0.133143,0.713412,0.985742,0.83334,0.429057,0.479878,0.253907,0.00797099,0.936425,0.313545,0.991961,0.428214,0.708763,0.37857,0.685327,0.0914896,0.303836,0.509747,0.935811,0.335258,0.122839,0.671394,0.424992,0.0978671,0.393862,0.410446,0.635732,0.17265,0.528138,0.912647,0.643465,0.181815,0.471708,0.961626,0.764523,0.121882,0.230914,0.587183,0.139729,0.826257,0.984452,0.400203,0.115652,0.909453,0.464795,0.928618,0.861636,0.510193,0.887538,0.981781,0.959856,0.887179,0.22912,0.259189,0.861834,0.131651,0.72609,0.490073,0.73089,0.475724,0.214621,0.899316,0.485365,0.843531,0.0551718,0.256174,0.150812,0.565162,0.41633,0.452106,0.98452,0.972442,0.53696,0.36512,0.698419,0.363865,0.714204,0.662537,0.85367,0.741313,0.817223,0.62986,0.503719,0.383387,0.684947,0.461449,0.0245237,0.975361,0.714661,0.310026,0.428304,0.575341,0.175947,0.974209,0.834661,0.607855,0.408462,0.555484,0.872669,0.414851,0.0977426,0.429242,0.797715,0.0229267,0.185334,0.14478,0.581677,0.964597,0.786566,0.0494772,0.470773,0.54278,0.384245,0.895032,0.819781,0.78017,0.961992,0.0433024,0.468287,0.290528,0.257341,0.163372,0.47013,0.834679,0.717418,0.526397,0.371663,0.633969,0.447276,0.883046,0.223495,0.819881,0.248333,0.210808,0.205848,0.688049,0.358536,0.0876286,0.116046,0.586739,0.852767,0.98222,0.0384721,0.604812,0.394214,0.365066,0.706952,0.130474,0.734041,0.458114,0.663069,0.0331035,0.544302,0.392223,0.68953,0.499875,0.724521,0.431842,0.311342,0.111062,0.857569,0.7908,0.899078,0.623933,0.507985,0.475484,0.98915,0.518955,0.73328,0.820218,0.332202,0.836498,0.247818,0.272005,0.903562,0.282884,0.322672,0.0639446,0.56289,0.0987219,0.618613,0.0821874,0.285313,0.456136,0.276638,0.600925,0.0506736,0.273614,0.11904,0.00253916,0.573411,0.118729,0.902752,0.919385,0.16853,0.0510878,|0.318432,0.663917,0.434969,0.828271,0.799817,0.318606,0.290894,0.982759,0.623918,0.577402,0.617808,0.425806,0.117772,0.991141,0.856323,0.483172,0.31273,0.259461,0.198255,0.177517,0.528772,0.53779,0.83173,0.538244,0.435839,0.00149053,0.167211,0.138908,0.441708,0.543167,0.0843832,0.685821,0.15784,0.943262,0.228645,0.121499,0.358075,0.195629,0.475121,0.972751,0.669742,0.591355,0.179278,0.90771,0.904842,0.639656,0.591222,0.709569,0.265904,0.904622,0.651905,0.280074,0.54556,0.425994,0.832936,0.103387,0.786988,0.147651,0.378072,0.123291,0.959066,0.212015,0.230747,0.424668,0.37374,0.262549,0.739877,0.534683,0.592475,0.237784,0.484651,0.764668,0.887183,0.519044,0.680486,0.840888,0.983107,0.508761,0.954523,0.766986,0.910374,0.275554,0.196687,0.444481,0.689418,0.32969,0.245995,0.199847,0.630233,0.342634,0.947437,0.797127,0.788029,0.402326,0.591747,0.0413344,0.479158,0.299354,0.870895,0.997478,0.0294756,0.797463,0.8672,0.568338,0.370117,0.844059,0.457617,0.469248,0.00304943,0.56369,0.795317,0.865435,0.443469,0.517855,0.236047,0.418069,0.389441,0.917257,0.30389,0.616932,0.678983,0.671282,0.857715,0.457494,0.691566,0.442466,0.669282,0.562393,0.798371,0.178828,0.769156,0.611018,0.791169,0.122156,0.996126,0.528224,0.0654904,0.529448,0.726933,0.127344,0.198948,0.404483,0.30148,0.526142,0.751454,0.283613,0.648573,0.88268,0.237546,0.00220782,0.0166505,0.568677,0.787575,0.679211,0.584825,0.929084,0.976754,0.741677,0.368169,0.0674708,0.628861,0.41267,0.357628,0.115231,0.894733,0.0725442,0.860828,0.468475,0.63051,0.256049,0.144859,0.4669,0.546381,0.374605,0.331921,0.0480888,0.783101,0.986998,0.713206,0.857132,0.593096,0.400935,0.645855,0.863166,0.3202,0.131371,0.883818,0.88936,0.588186,0.797969,0.888767,0.612002,0.968119,0.739545,0.626259,0.136317,0.517619,0.634236,0.431658,0.625034,0.0729781,0.600879,0.441161,0.843973,0.198065,0.333959,0.129147,0.330156,0.903879,0.182276,0.682608,0.0333459,0.963126,0.836055,0.19742,0.15757,0.63253,0.0429575,0.155844,0.947479,0.92531,0.0461902,0.862733,0.43315,0.390382,0.801809,0.200123,0.92716,0.468875,0.0124023,0.342378,0.275004,0.328617,0.66223,0.0517049,0.781841,0.254986,0.67027,0.795981,0.27507,0.762729,0.541823,0.850509,0.410147,0.680219,0.0909014,0.803769,0.0517613,0.527496,0.705694,0.963881,0.723149,0.411837,0.724574,0.185127,0.428855,0.243201,0.616264,0.111625,0.526578,0.281019,0.31683,0.250839,0.463205,0.3403,0.478934,0.158215,0.109894,0.741773,0.125046,0.119692,0.208849,0.334603,0.396944,0.16484,0.569615,0.872447,0.202285,0.732783,0.152918,0.535256,0.304879,0.558487,0.917729,0.0174654,0.842057,0.0443881,0.0674702,0.739113,0.589167,0.00299853,0.513921,0.617847,0.72969,0.0378001,0.153699,0.726536,0.813655,0.37754,0.297414,0.995881,0.650584,0.324724,0.0868404,0.11904,0.22751,0.165375,0.286573,0.0894138,0.604348,0.434076,0.0597577,0.276234,0.146053,0.732629,0.684152,0.331705,0.137928,0.705418,0.063603,0.104411,0.591607,0.200252,0.91264,0.517371,0.476733,0.305299,0.142337,0.693594,0.505522,0.678096,0.402084,0.644406,0.363747,0.835782,0.0294253,0.702619,0.7086,0.0919732,0.419775,0.69886,0.951567,0.334534,0.81688,0.11507,0.140169,0.881809,0.913623,0.491971,0.48652,0.543635,0.440389,0.64987,0.540236,0.189403,0.333132,0.335814,0.910115,0.81444,0.418031,0.0663618,0.836013,0.0691999,0.0346221,0.438343,0.879478,0.0559371,0.0831145,0.820513,0.266748,0.858837,0.977878,0.817771,0.323271,0.0126785,0.0154791,0.995183,0.970935,0.970766,0.446047,0.985793,0.175654,0.746871,0.15516,0.828446,0.538502,0.0478876,0.385367,0.686242,0.0506967,0.296311,0.829667,0.425228,0.319508,0.4194,0.809949,0.585238,0.105163,0.856249,0.0912381,0.689918,0.323874,0.815647,0.0214457,0.792177,0.662267,0.906413,0.12402,0.340177,0.376178,0.821922,0.384945,0.750019,0.168335,0.940745,0.202426,0.0476102,0.245036,0.779192,0.355197,0.218383,0.67356,0.165852,0.194917,0.810161,0.166981,0.713826,0.544532,0.132103,0.88899,0.364747,0.646499,0.875044,0.130501,0.560757,0.60278,0.163867,0.476659,0.906303,0.896756,0.429727,0.162764,0.878439,0.807443,0.446935,0.806248,0.0378451,0.233986,0.00774974,0.70578,0.0900226,0.362301,0.733062,0.99835,0.947354,0.103694,0.417593,0.993924,0.147843,0.037472,0.182544,0.648597,0.0837263,0.375265,0.289654,0.682419,0.620165,0.307706,0.00150782,0.434111,0.759163,0.641496,0.349495,0.279201,0.989701,0.539583,0.0988157,0.471142,0.186594,0.975065,0.336705,0.115866,0.689819,0.051745,0.337522,0.687215,0.276667,0.258169,0.799977,0.0025962,0.959244,0.29696,0.129341,0.539937,0.640779,0.411524,0.0317754,0.33935,0.987703,0.868544,0.0711111,0.436613,0.973438,0.440733,0.382685,0.307503,0.624195,0.740846,0.949164,0.108674,0.744837,0.825899,0.780778,0.00170749,0.138748,0.582167,0.225801,0.0528207,0.5883,0.696726,0.822897,0.383738,0.925565,0.320955,0.923375,0.684278,0.477745,0.825184,0.36856,0.250848,0.559715,0.567591,0.377925,0.0579024,0.439542,0.881786,0.466407,0.298248,0.934422,0.672408,0.82032,0.245004,0.87752,0.611195,0.181783,0.743433,0.219663,0.560578,0.0527627,0.83942,0.733579,0.7011,0.597675,0.78151,0.267452,0.149108,0.0378115,0.606454,0.431238,0.180918,0.936428,0.0515897,0.625462,0.745989,0.154398,0.714866,0.192746,0.877095,0.611194,0.336207,0.115987,0.44855,0.187334,0.18764,0.306336,0.90121,0.531252,0.228742,0.245165,0.262611,0.995581,0.696227,0.689963,0.769525,0.907439,0.343545,0.509835,0.750671,0.28815,0.172237,0.339602,0.699351,0.439697,0.792251,0.643917,0.98962,0.83166,0.709882,0.187092,0.578544,0.630167,0.070734,0.410476,0.229658,0.971375,0.707425,0.141416,0.23016,0.826152,0.334692,0.309137,0.442913,0.404692,0.245121,0.977045,0.503395,0.629758,0.632389,0.121529,0.959602,0.502538,0.755466,0.858013,0.568987,0.377233,0.616745,0.49885,0.782734,0.949762,0.573972,0.610976,0.795624,0.94547,0.237761,0.0462478,0.00273693,0.31724,0.342562,0.450001,0.645042,0.306567,0.0947737,0.864746,0.464839,0.506451,0.183236,0.461164,0.707734,0.628692,0.291307,0.710754,0.563356,0.278563,0.881087,0.347224,0.0102935,0.751966,0.105027,0.410708,0.0327966,0.241911,0.0788221,0.0969071,0.600009,0.363167,0.939455,0.62578,0.54313,0.861821,0.338295,0.548426,0.0643585,0.484007,0.517574,0.78037,0.6698,0.274909,0.149858,0.522619,0.599719,0.896792,0.0349137,0.981731,0.426716,0.169338,0.113201,0.138985,0.101413,0.0829744,0.750235,0.582555,0.691422,0.528247,0.500735,0.893987,0.663769,0.11029,0.0249396,0.677917,0.173167,0.941377,0.429299,0.266572,0.624654,0.378888,0.716265,0.462125,0.386451,0.588471,0.564452,0.861445,0.933048,0.426531,0.151038,0.595722,0.244845,0.101969,0.758551,0.55405,0.100394,0.994533,0.64655,0.799411,0.0491084,0.892971,0.624107,0.405064,0.150665,0.583482,0.0571554,0.894729,0.0858383,0.566811,0.927527,0.0384902,0.934502,0.737134,0.839243,0.270699,0.464555,0.206295,0.392075,0.748998,0.846137,0.925697,0.555063,0.114695,0.0812745,0.237718,0.283382,0.0253163,0.14022,0.312055,0.86965,0.577004,0.207705,0.483234,0.306432,0.225192,0.503288,0.28662,0.365261,0.736468,0.0974867,0.277262,0.679551,0.75068,0.779681,0.249457,0.0653347,0.585491,0.965235,0.147771,0.530833,0.346588,0.33061,0.269853,0.0905022,0.408249,0.340436,0.706047,0.238265,0.672835,0.645473,0.817264,0.8435,0.964487,0.144175,0.573547,0.954228,0.118504,0.079772,0.850774,0.451671,0.428574,0.258736,0.644623,0.677467,0.238683,0.680882,0.71888,0.106917,0.832831,0.881075,0.248315,0.846984,0.248303,0.113322,0.147768,0.844985,0.692707,0.301368,0.417927,0.455028,0.765058,0.590104,0.21485,0.843531,0.345734,0.558413,0.210141,0.921293,0.343852,0.294521,0.325152,0.617518,0.897734,0.542141,0.153964,0.872758,0.888649,0.245396,0.309155,0.982778,0.0411024,0.82882,0.376673,0.56132,0.141284,0.303116,0.093913,0.451429,0.299483,0.135743,0.306727,0.728476,0.99591,0.832858,0.125206,0.771147,0.640561,0.402516,0.138227,0.267928,0.61902,0.615249,0.598913,0.461499,0.75129,0.0749596,0.131102,0.722432,0.598751,0.785337,0.459989,0.0828281,0.796753,0.0296337,0.316142,0.124979,0.213994,0.107106,0.522805,0.201422,0.311929,0.62832,0.193989,0.816169,0.834502,0.266333,0.860237,0.0929865,0.463634,0.102455,0.909189,0.198919,0.916766,0.471856,0.164386,0.974694,0.568128,0.313447,0.759321,0.7906,0.63538,0.000355244,0.993535,0.943464,0.349126,0.946293,0.789408,0.424436,0.73493,0.446373,0.304796,0.751998,0.166696,0.0239943,0.816667,0.407991,0.380006,0.670284,0.0237256,0.280381,0.0452872,0.71034,0.711687,0.0667868,0.76586,0.0298871,0.502072,0.110001,0.964888,0.415521,0.515436,0.915366,0.213869,0.76943,0.908212,0.744931,0.448035,0.20335,0.31135,0.170143,0.209522,0.389172,0.670867,0.85302,0.352337,0.485262,0.907139,0.957536,0.51799,0.184571,0.1521,0.301679,0.735177,0.72358,0.810619,0.501174,0.632724,0.6433,0.478902,0.0592264,0.551757,0.268838,0.931543,0.137831,0.476506,0.122031,0.139307,0.0955334,0.491218,0.16256,0.494458,0.339621,0.666991,0.787046,0.0817263,0.289028,0.448136,0.14433,0.86878,0.0916135,0.388461,0.879062,0.0981194,0.371563,0.795086,0.768937,0.220938,0.961634,0.573408,0.0938608,0.990742,0.00459296,0.576458,0.320707,0.389484,0.0362447,0.479637,0.11829,0.689581,0.879446,0.743597,0.717775,0.518999,0.206115,0.474172,0.289696,|0.689475,0.84852,0.910758,0.618762,0.174465,0.0886019,0.960387,0.38372,0.0887612,0.249325,0.34808,0.0232356,0.0151492,0.133136,0.552609,0.420337,0.0116432,0.824999,0.889764,0.0793881,0.290345,0.678664,0.794397,0.716042,0.264685,0.343917,0.132874,0.105217,0.922382,0.266496,0.668841,0.277893,0.691618,0.31366,0.128827,0.28143,0.351317,0.252462,0.626238,0.747918,0.123902,0.579947,0.412377,0.453626,0.76819,0.943231,0.741378,0.377889,0.385725,0.189702,0.893455,0.702842,0.217967,0.376708,0.720848,0.957452,0.394908,0.584822,0.187149,0.104722,0.0716861,0.1188,0.0810229,0.0749992,0.385385,0.329948,0.137911,0.812593,0.0962085,0.772129,0.681958,0.69694,0.607943,0.400481,0.577191,0.650556,0.153686,0.917487,0.636226,0.959252,0.660809,0.130685,0.289142,0.287718,0.131112,0.334061,0.98998,0.756226,0.0584564,0.596621,0.471958,0.76116,0.0175909,0.313979,0.990847,0.115182,0.830316,0.378517,0.312078,0.152435,0.0379421,0.587458,0.376138,0.553976,0.9752,0.209462,0.837762,0.565962,0.00677413,0.704623,0.929468,0.737179,0.922926,0.988366,0.0500466,0.0134007,0.395526,0.2982,0.54754,0.376646,0.941364,0.74839,0.108629,0.555294,0.456866,0.0411244,0.915896,0.252834,0.127483,0.136853,0.94174,0.773879,0.155345,0.92156,0.261064,0.712074,0.458548,0.234874,0.170252,0.567823,0.421994,0.613556,0.79478,0.755508,0.042803,0.287743,0.372748,0.138178,0.9712,0.715295,0.73096,0.312473,0.871429,0.00960243,0.830881,0.57265,0.879914,0.416902,0.679437,0.956491,0.120909,0.487707,0.800375,0.398514,0.39599,0.489232,0.137535,0.330947,0.00553918,0.452226,0.594328,0.617247,0.202293,0.342011,0.579108,0.844298,0.0877274,0.605498,0.861513,0.854222,0.189219,0.243828,0.769426,0.48601,0.679896,0.166205,0.592747,0.315192,0.755247,0.861192,0.211283,0.426306,0.0150081,0.832907,0.725719,0.61858,0.635481,0.583874,0.928656,0.46658,0.557896,0.304298,0.980579,0.92444,0.551871,0.982589,0.631449,0.413551,0.0639446,0.0897957,0.549804,0.560555,0.596182,0.0442557,0.227949,0.9525,0.546092,0.279363,0.888414,0.801465,0.928206,0.820819,0.181202,0.219381,0.137037,0.700085,0.503911,0.378566,0.436503,0.720929,0.67349,0.582188,0.503836,0.427697,0.849017,0.405688,0.269254,0.80283,0.958655,0.327442,0.9777,0.336452,0.828665,0.996826,0.244851,0.564344,0.378718,0.850638,0.14559,0.495807,0.357371,0.389415,0.9307,0.902411,0.746129,0.162711,0.939822,0.769322,0.473902,0.976813,0.632768,0.638212,0.0251431,0.521892,0.672543,0.134479,0.567324,0.481743,0.018261,0.87732,0.439282,0.421148,0.884759,0.796185,0.484911,0.276928,0.995095,0.226983,0.050962,0.24272,0.495763,0.428596,0.768671,0.165147,0.264755,0.333515,0.878684,0.133028,0.148469,0.968063,0.103833,0.802521,0.496069,0.420638,0.656977,0.764171,0.630859,0.260851,0.166538,0.444289,0.719204,0.148152,0.281415,0.69647,0.365107,0.339278,0.657712,0.141575,0.379757,0.826753,0.523613,0.0863063,0.0199253,0.693893,0.798807,0.33619,0.196005,0.160689,0.614843,0.266229,0.071521,0.941645,0.985904,0.10381,0.304873,0.147086,0.199684,0.580828,0.525452,0.0249184,0.853801,0.00927413,0.630199,0.748577,0.133966,0.752161,0.0449424,0.587771,0.35415,0.550508,0.761219,0.309295,0.450773,0.861842,0.643831,0.323719,0.664586,0.0265104,0.664254,0.658711,0.260748,0.286806,0.532393,0.305779,0.625964,0.169095,0.00375593,0.997403,0.29267,0.988798,0.0183232,0.0198108,0.46897,0.362929,0.887217,0.862679,0.887984,0.199829,0.907986,0.594028,0.422368,0.791777,0.822999,0.337686,0.668198,0.544913,0.808204,0.489028,0.946836,0.47567,0.23147,0.0521939,0.13912,0.470051,0.972644,0.178464,0.799296,0.587061,0.276918,0.537293,0.767264,0.44809,0.237733,0.667957,0.0469335,0.477793,0.604428,0.833149,0.448313,0.0712429,0.0828342,0.509351,0.775089,0.759342,0.17135,0.740894,0.842624,0.0775737,0.559898,0.48752,0.857264,0.271756,0.360293,0.0573778,0.792109,0.770823,0.210777,0.653638,0.815872,0.312002,0.702852,0.365342,0.610226,0.398961,0.877631,0.362383,0.759366,0.66404,0.457084,0.315224,0.569256,0.325799,0.599692,0.67053,0.774326,0.294675,0.597573,0.664902,0.26886,0.333478,0.189684,0.551034,0.273713,0.561501,0.548921,0.313221,0.357377,0.0706034,0.809198,0.185871,0.0974662,0.0658823,0.155015,0.681258,0.490806,0.669862,0.19977,0.322126,0.0823642,0.371651,0.521679,0.801677,0.829335,0.204178,0.270614,0.0630729,0.354776,0.796162,0.258816,0.0566334,0.716894,0.151123,0.255919,0.099556,0.0313557,0.699321,0.729066,0.108526,0.416505,0.28483,0.278941,0.851315,0.406363,0.894886,0.0877911,0.768846,0.239508,0.502709,0.8799,0.988081,0.339055,0.125024,0.536753,0.263958,0.289796,0.734971,0.128432,0.88223,0.66762,0.675094,0.638808,0.0211392,0.728681,0.140672,0.278279,0.595273,0.052735,0.46453,0.805338,0.566016,0.705033,0.171121,0.790146,0.6992,0.982248,0.144658,0.937854,0.717632,0.804803,0.567215,0.44744,0.425721,0.100193,0.794705,0.168824,0.295582,0.277237,0.828752,0.428467,0.298469,0.56109,0.607732,0.46795,0.513462,0.964642,0.152387,0.695946,0.342053,0.811098,0.497791,0.512959,0.868178,0.53246,0.356765,0.404472,0.499711,0.995083,0.772896,0.602119,0.103343,0.221296,0.999057,0.348127,0.701666,0.907386,0.0684179,0.987284,0.105636,0.271097,0.159982,0.535203,0.657461,0.573738,0.537988,0.106095,0.61682,0.578878,0.699,0.801861,0.593806,0.37837,0.628752,0.567341,0.367093,0.255772,0.390216,0.364051,0.752592,0.0420727,0.260765,0.950329,0.190851,0.599358,0.555294,0.959893,0.131809,0.734542,0.932007,0.478537,0.817128,0.00268096,0.477021,0.608755,0.482231,0.38505,0.175416,0.932603,0.826993,0.215076,0.820862,0.106428,0.903168,0.0869587,0.280548,0.216889,0.662543,0.730239,0.211229,0.755875,0.627321,0.791989,0.460664,0.514761,0.66915,0.949918,0.993172,0.70809,0.433283,0.879311,0.344904,0.284355,0.105347,0.00506794,0.839621,0.0577492,0.989525,0.324723,0.0557721,0.145205,0.594603,0.797992,0.520719,0.0927551,0.969242,0.0882471,0.672801,0.747356,0.916546,0.378729,0.645721,0.261994,0.892193,0.937613,0.891052,0.706582,0.592514,0.221418,0.51803,0.0914089,0.963344,0.336107,0.109411,0.169223,0.797289,0.909697,0.93478,0.750198,0.466117,0.836906,0.389766,0.959268,0.409624,0.358695,0.379512,0.866683,0.611488,0.129935,0.00665444,0.15947,0.968169,0.786998,0.808383,0.375533,0.796281,0.516175,0.490563,0.207918,0.788694,0.393542,0.0549252,0.690448,0.102432,0.172042,0.530602,0.0829673,0.562838,0.102098,0.983587,0.2738,0.774473,0.758056,0.262891,0.309522,0.818738,0.552085,0.671143,0.627504,0.461454,0.669159,0.80754,0.164041,0.472997,0.929443,0.0601562,0.49162,0.0182917,0.26526,0.696954,0.520555,0.700039,0.592509,0.877698,0.629565,0.666796,0.701246,0.52565,0.553625,0.323807,0.079462,0.928075,0.248556,0.643403,0.584639,0.0479366,0.503202,0.144716,0.957522,0.529794,0.36475,0.612367,0.766612,0.00152057,0.644009,0.289731,0.780973,0.78622,0.389559,0.831919,0.678323,0.46116,0.958159,0.750875,0.339077,0.0231776,0.737003,0.628412,0.25604,0.33968,0.473011,0.411476,0.720003,0.44528,0.0580515,0.37035,0.726119,0.808352,0.1686,0.348344,0.772534,0.426443,0.0245628,0.631191,0.919488,0.50768,0.892898,0.302564,0.141527,0.242644,0.0872236,0.55055,0.549591,0.451752,0.36246,0.243077,0.948336,0.923947,0.592998,0.827718,0.983509,0.445381,0.587079,0.907373,0.824457,0.617464,0.152217,0.508741,0.0473967,0.0822934,0.815101,0.975838,0.60339,0.687657,0.230679,0.872843,0.247583,0.529208,0.36293,0.38219,0.397624,0.370426,0.343062,0.474648,0.055797,0.0917217,0.169836,0.327303,0.634808,0.262397,0.32672,0.870706,0.390314,0.269981,0.746621,0.680475,0.945997,0.0468788,0.16175,0.711259,0.264515,0.700393,0.0605277,0.658301,0.854485,0.298214,0.175761,0.336437,0.646719,0.205407,0.646138,0.479011,0.774987,0.961168,0.625337,0.196123,0.779241,0.509878,0.990922,0.669267,0.976223,0.285975,0.397904,0.698908,0.64336,0.714042,0.98031,0.820993,0.0533264,0.751063,0.149792,0.0220198,0.16286,0.839724,0.763765,0.830774,0.330026,0.695058,0.10834,0.825929,0.886093,0.0761383,0.403271,0.291919,0.645436,0.432568,0.876821,0.738555,0.324391,0.190346,0.460959,0.568307,0.156414,0.802401,0.693171,0.323843,0.277898,0.252789,0.151858,0.625887,0.100206,0.84918,0.145939,0.578412,0.605943,0.860739,0.058921,0.450994,0.892742,0.899719,0.860922,0.372572,0.656979,0.114881,0.149525,0.0657527,0.527561,0.236492,0.177787,0.0258096,0.740699,0.330072,0.861342,0.268207,0.567522,0.57814,0.95949,0.0751873,0.870592,0.48547,0.903927,0.0286929,0.682103,0.553782,0.6134,0.145779,0.468822,0.706966,0.468,0.212384,0.705485,0.749614,0.305189,0.576901,0.643712,0.325611,0.570351,0.682362,0.105379,0.180927,0.132376,0.879737,0.496547,0.60877,0.0778977,0.50739,0.177083,0.58699,0.877822,0.450368,0.0429546,0.980109,0.713612,0.179013,0.406303,0.601238,0.173329,0.253381,0.720133,0.902111,0.815453,0.178051,0.125076,0.909558,0.801316,0.48341,0.454506,0.0529521,0.609587,0.147728,0.410056,0.139596,0.716266,0.306425,0.774039,0.904539,0.223074,0.442698,0.645679,0.319714,0.763757,0.293509,0.932753,0.065845,0.503647,0.573599,0.851189,0.0830312,0.60791,0.34051,0.235775,0.192707,0.704634,0.876382,0.277343,0.73059,0.258968,0.740721,0.46758,0.109485,0.655361,0.229872,0.0756242,0.620858,0.490344,0.119033,0.784055,0.530361,0.471668,0.934459,0.436047,0.0143719,|0.00445133,0.387824,0.217109,0.902751,0.62354,0.0893308,0.85894,0.871732,0.0241889,0.365973,0.807328,0.429713,0.577811,0.306664,0.845147,0.244052,0.413794,0.908923,0.0403545,0.899969,0.811217,0.594258,0.625459,0.413561,0.341052,0.387683,0.091565,0.321302,0.165159,0.345929,0.467602,0.873674,0.757907,0.608113,0.816331,0.526551,0.0185197,0.588511,0.153943,0.992439,0.344465,0.369605,0.0199046,0.519725,0.817397,0.920976,0.777455,0.00142097,0.909314,0.654592,0.321448,0.0659034,0.801782,0.751212,0.40332,0.194276,0.333477,0.00979233,0.613672,0.949471,0.269048,0.923429,0.738951,0.730478,0.919064,0.167964,0.448478,0.861478,0.810091,0.259102,0.11396,0.102638,0.80689,0.40836,0.277226,0.345877,0.490522,0.95024,0.698264,0.239746,0.127281,0.131978,0.733031,0.267174,0.259627,0.949985,0.299243,0.229535,0.297936,0.659759,0.25733,0.126619,0.414838,0.815358,0.539569,0.672037,0.0492945,0.657148,0.152479,0.863481,0.66402,0.199487,0.104216,0.948226,0.507433,0.958119,0.581455,0.0689058,0.967363,0.723544,0.666084,0.557211,0.0967419,0.43982,0.174506,0.320603,0.880707,0.106094,0.719415,0.61546,0.866114,0.200367,0.538388,0.935659,0.724073,0.55176,0.235365,0.690846,0.52934,0.50771,0.125239,0.528298,0.598894,0.908357,0.614344,0.685049,0.47433,0.824444,0.214703,0.470499,0.53578,0.41792,0.379407,0.160153,0.0161859,0.103556,0.237188,0.402315,0.318084,0.544911,0.220358,0.566183,0.447836,0.264285,0.591377,0.534109,0.717505,0.34229,0.995867,0.270222,0.554013,0.89965,0.602857,0.33067,0.413681,0.719648,0.401364,0.900157,0.221556,0.0163547,0.237312,0.282833,0.602624,0.624874,0.941356,0.212987,0.380908,0.015397,0.552962,0.648378,0.355784,0.453712,0.271044,0.133404,0.976687,0.429663,0.518849,0.576962,0.463328,0.959066,0.473984,0.733372,0.328023,0.976886,0.91339,0.537932,0.895378,0.482041,0.620783,0.665857,0.00850934,0.510661,0.829767,0.859478,0.51112,0.81246,0.190731,0.175547,0.776329,0.33395,0.376858,0.96085,0.135966,0.52929,0.1187,0.610024,0.62546,0.0925659,0.377358,0.969037,0.968809,0.559062,0.664444,0.655736,0.798407,0.216919,0.450317,0.57963,0.835206,0.629886,0.731678,0.691983,0.508393,0.307009,0.564032,0.574896,0.710199,0.0867236,0.936355,0.165462,0.00426966,0.721153,0.537778,0.171376,0.579151,0.0427088,0.105757,0.364225,0.527828,0.365264,0.477388,0.264225,0.337345,0.0552014,0.560956,0.964719,0.232051,0.442512,0.254386,0.817849,0.218243,0.216116,0.287018,0.264056,0.383735,0.026749,0.588338,0.456178,0.900936,0.5524,0.685028,0.395339,0.313233,0.814415,0.269215,0.181943,0.126152,0.858238,0.217222,0.427409,0.718769,0.846887,0.531202,0.281843,0.0474592,0.086161,0.469208,0.932274,0.412609,0.46465,0.137638,0.853859,0.75928,0.73363,0.189825,0.572629,0.906442,0.468161,0.993634,0.803782,0.325938,0.744507,0.940353,0.813755,0.759063,0.148526,0.76794,0.164881,0.0534149,0.488629,0.277208,0.763942,0.171317,0.598365,0.402354,0.770841,0.868529,0.0851777,0.357124,0.687868,0.0140014,0.284857,0.752466,0.536375,0.446162,0.590911,0.201978,0.938539,0.508947,0.239814,0.836168,0.38734,0.214408,0.815552,0.245681,0.686894,0.0990974,0.35497,0.854487,0.877986,0.722499,0.675449,0.400689,0.13679,0.766682,0.0646439,0.563803,0.999407,0.904449,0.381509,0.652732,0.337597,0.86393,0.355708,0.567992,0.120587,0.839374,0.393261,0.589389,0.300381,0.134294,0.28234,0.950189,0.112293,0.539365,0.961587,0.118753,0.929339,0.423424,0.339014,0.985042,0.316898,0.134613,0.278012,0.0866109,0.298511,0.0357911,0.323792,0.532665,0.613995,0.627443,0.486519,0.298319,0.705945,0.797829,0.525823,0.242547,0.68532,0.956771,0.323337,0.533852,0.682958,0.362242,0.671462,0.721971,0.582162,0.788589,0.415204,0.648923,0.336538,0.592861,0.298065,0.0436475,0.447578,0.375606,0.462793,0.374002,0.41309,0.257843,0.359614,0.191598,0.761251,0.896873,0.500297,0.399721,0.652481,0.208633,0.113396,0.49091,0.615008,0.0984252,0.0886765,0.834452,0.634847,0.40397,0.428049,0.746147,0.808499,0.816828,0.894995,0.21979,0.444474,0.952734,0.455929,0.342738,0.881285,0.0765329,0.946906,0.420158,0.546052,0.579125,0.965081,0.581623,0.920596,0.26124,0.414173,0.505487,0.935721,0.978655,0.22226,0.538537,0.78906,0.153869,0.0583599,0.290184,0.293676,0.546869,0.188646,0.276396,0.314219,0.860199,0.257945,0.494344,0.497651,0.248657,0.637922,0.0975275,0.808779,0.42803,0.821437,0.74698,0.273443,0.429985,0.383884,0.93059,0.192441,0.238904,0.563637,0.562357,0.408771,0.714814,0.313964,0.500068,0.0120569,0.0985021,0.354927,0.213405,0.69553,0.513419,0.074357,0.26535,0.0639046,0.52124,0.0544186,0.76319,0.547306,0.922964,0.298328,0.626247,0.174248,0.867068,0.813325,0.311928,0.139159,0.707106,0.240125,0.551749,0.637958,0.816747,0.586137,0.55381,0.364774,0.369479,0.341945,0.0216628,0.408533,0.915012,0.19935,0.173362,0.560559,0.257392,0.607988,0.382275,0.238364,0.0835766,0.928794,0.597767,0.968007,0.705873,0.676243,0.814328,0.960245,0.693942,0.217759,0.159767,0.603134,0.848899,0.919717,0.430727,0.435497,0.799633,0.917447,0.217854,0.536603,0.911103,0.621991,0.215437,0.202021,0.512448,0.604716,0.902572,0.785181,0.262113,0.401835,0.829546,0.734392,0.710577,0.0813088,0.0730593,0.471076,0.794869,0.545278,0.746398,0.936955,0.527078,0.507796,0.573223,0.268999,0.3728,0.331901,0.905975,0.695531,0.94247,0.432678,0.104678,0.112658,0.527015,0.099466,0.351987,0.0408454,0.49085,0.664497,0.334355,0.0677928,0.375491,0.0936156,0.768965,0.0711139,0.657575,0.491858,0.623985,0.755521,0.296102,0.263567,0.912065,0.868039,0.537363,0.372564,0.155843,0.622004,0.457998,0.393346,0.230536,0.624444,0.217621,0.570979,0.054602,0.344608,0.890875,0.392285,0.447736,0.99418,0.439,0.334704,0.267878,0.10879,0.339002,0.117174,0.661406,0.577066,0.0538856,0.0303717,0.42718,0.924984,0.570775,0.502307,0.515805,0.861066,0.460551,0.77074,0.709208,0.663441,0.064842,0.584436,0.128549,0.0847175,0.46966,0.955932,0.882543,0.951741,0.634188,0.190015,0.341531,0.0887606,0.0763943,0.796175,0.475955,0.949657,0.279339,0.936016,0.338576,0.377265,0.615669,0.0522493,0.824838,0.468232,0.334037,0.163464,0.487186,0.0681526,0.196753,0.0572171,0.943261,0.550991,0.917058,0.57278,0.61118,0.018603,0.411701,0.824095,0.0901548,0.577616,0.589267,0.845217,0.454699,0.96959,0.6722,0.871909,0.229044,0.597494,0.191404,0.288091,0.767397,0.741059,0.984767,0.606585,0.411073,0.775858,0.423206,0.435522,0.856148,0.642248,0.645362,0.691792,0.00901496,0.472119,0.425661,0.891389,0.448112,0.369461,0.354096,0.47075,0.507082,0.0660535,0.44097,0.951838,0.174184,0.544721,0.864179,0.725687,0.819825,0.702365,0.070426,0.121006,0.105221,0.727675,0.586578,0.829538,0.914376,0.545125,0.524426,0.212753,0.416294,0.209876,0.355376,0.282752,0.392124,0.181734,0.680407,0.453403,0.823648,0.20878,0.144,0.68069,0.884871,0.619902,0.454562,0.0939049,0.472119,0.404083,0.370582,0.623833,0.626224,0.643942,0.178136,0.544636,0.444118,0.473999,0.990032,0.64573,0.287539,0.499612,0.90594,0.837078,0.576835,0.188858,0.659338,0.168255,0.0419272,0.63005,0.228213,0.722364,0.20311,0.102493,0.27566,0.478444,0.267724,0.134234,0.236949,0.457627,0.702559,0.165873,0.51455,0.111887,0.951564,0.326433,0.82367,0.65941,0.569936,0.0965343,0.0975975,0.66422,0.764214,0.340426,0.711911,0.361222,0.993172,0.92637,0.883837,0.296688,0.562799,0.723478,0.760541,0.926457,0.464089,0.181887,0.908835,0.783753,0.106846,0.96397,0.201896,0.499651,0.983787,0.248801,0.722632,0.594155,0.921305,0.435823,0.298279,0.0150702,0.365536,0.440471,0.253346,0.325685,0.952487,0.0242269,0.691527,0.0110162,0.860263,0.259349,0.439904,0.469196,0.304582,0.390461,0.577719,0.273381,0.445876,0.00561917,0.191797,0.747237,0.750201,0.0701139,0.48015,0.911172,0.00308841,0.604413,0.84664,0.897907,0.714675,0.875793,0.213772,0.145664,0.477912,0.921614,0.296529,0.526323,0.760869,0.0137225,0.382902,0.0842785,0.661292,0.901353,0.612354,0.534836,0.925699,0.952561,0.598537,0.685799,0.0258812,0.64147,0.886265,0.661499,0.0465791,0.00688553,0.84411,0.632382,0.493845,0.900217,0.261768,0.434418,0.405169,0.65829,0.289082,0.791842,0.720196,0.767892,0.397054,0.770526,0.440784,0.0698225,0.318928,0.94756,0.537629,0.838347,0.376135,0.305225,0.695024,0.300796,0.336977,0.273166,0.213956,0.211316,0.83223,0.0203633,0.152074,0.507141,0.0202382,0.625028,0.114165,0.339258,0.818814,0.606779,0.30828,0.706833,0.504117,0.266239,0.837676,0.750185,0.294437,0.354731,0.10293,0.106013,0.496126,0.752081,0.115838,0.756561,0.459216,0.99375,0.817197,0.937345,0.237695,0.269127,0.511234,0.736902,0.102504,0.609336,0.705024,0.608917,0.339383,0.024807,0.408827,0.77278,0.107178,0.0973256,0.906084,0.487631,0.649529,0.500078,0.467145,0.165775,0.302209,0.754817,0.00298864,0.80683,0.145976,0.0597135,0.949249,0.547717,0.615223,0.26135,0.281975,0.769732,0.864233,0.0210184,0.092344,0.713223,0.691466,0.238908,0.494886,0.305838,0.143788,0.732381,0.745074,0.947042,0.744354,0.285493,0.060819,0.904699,0.692984,0.348324,0.51945,0.0640926,0.308987,0.788487,0.524466,0.342367,0.14113,0.38829,0.569495,0.0534467,0.272158,0.150358,0.698775,0.619539,0.451313,0.718564,0.360345,0.583094,0.54355,0.811167,0.462787,0.629738,0.741561,0.0890686,0.914543,0.126597,0.690976,0.777706,0.366296,0.33257,|0.889232,0.0545073,0.10169,0.416814,0.519872,0.854556,0.969151,0.96962,0.659869,0.932444,0.589722,0.711694,0.539719,0.269948,0.348788,0.111024,0.078658,0.347195,0.575806,0.534304,0.978662,0.254023,0.596969,0.520458,0.343271,0.0808873,0.416514,0.21737,0.502777,0.200742,0.459608,0.649911,0.568414,0.586158,0.957691,0.570018,0.479314,0.362422,0.179422,0.97172,0.741315,0.48538,0.362007,0.211341,0.805961,0.381186,0.017237,0.38434,0.42847,0.442399,0.0266848,0.353688,0.855768,0.105555,0.372153,0.136465,0.604201,0.0999115,0.973751,0.733742,0.112254,0.487459,0.880661,0.668941,0.00712591,0.221279,0.0174001,0.505401,0.484365,0.577398,0.0883473,0.0765716,0.0565062,0.864139,0.374796,0.904696,0.669177,0.339148,0.509948,0.807677,0.207804,0.890392,0.119289,0.464329,0.0263798,0.75529,0.300463,0.320578,0.456133,0.441737,0.347747,0.123192,0.973826,0.91292,0.26039,0.471965,0.965414,0.959613,0.73593,0.573497,0.396394,0.673783,0.0383763,0.766729,0.511018,0.447674,0.488833,0.157486,0.860918,0.428181,0.935098,0.365702,0.389171,0.24827,0.014494,0.227425,0.855539,0.193452,0.896135,0.347844,0.040528,0.104136,0.206132,0.201492,0.828446,0.981773,0.97285,0.0411438,0.631925,0.0281047,0.229985,0.740938,0.846486,0.51535,0.0193514,0.0915304,0.964444,0.146722,0.607842,0.181974,0.862803,0.49009,0.729446,0.827556,0.342343,0.388175,0.316771,0.0970424,0.812535,0.559829,0.708744,0.781835,0.83397,0.00360286,0.716338,0.138204,0.156169,0.441294,0.0328737,0.307978,0.30292,0.269685,0.382156,0.640003,0.433468,0.552372,0.358657,0.0301288,0.763775,0.689735,0.908661,0.906744,0.915519,0.51009,0.0405228,0.76089,0.866793,0.171075,0.361584,0.243676,0.194818,0.459639,0.718832,0.691754,0.206913,0.748199,0.652435,0.803366,0.393543,0.29984,0.567764,0.745109,0.289626,0.290544,0.826268,0.351159,0.473717,0.997929,0.477307,0.631182,0.318445,0.736833,0.651344,0.0725513,0.64273,0.78919,0.704503,0.743933,0.443258,0.68872,0.890915,0.471557,0.720575,0.941881,0.473603,0.729484,0.0817899,0.367475,0.457863,0.770354,0.768861,0.0882361,0.593518,0.057338,0.218087,0.237519,0.192498,0.300494,0.294065,0.945958,0.473535,0.710708,0.259688,0.40954,0.365358,0.335464,0.602983,0.543091,0.151504,0.324543,0.7705,0.620839,0.91173,0.252803,0.0534484,0.66658,0.454617,0.718909,0.76908,0.913466,0.507776,0.868762,0.443376,0.870524,0.0486791,0.850229,0.549802,0.41169,0.095959,0.727533,0.96853,0.988533,0.605715,0.727283,0.441285,0.450108,0.82218,0.786472,0.0279477,0.973875,0.268517,0.824434,0.998903,0.114674,0.83839,0.817168,0.643408,0.832423,0.397528,0.899305,0.416116,0.0564414,0.433427,0.600862,0.641244,0.0102342,0.999947,0.115778,0.149047,0.0104738,0.486289,0.643513,0.0292871,0.874693,0.77027,0.862381,0.214845,0.806938,0.350851,0.634102,0.0438885,0.703876,0.785614,0.431861,0.0106879,0.525294,0.516025,0.0170253,0.666314,0.926502,0.69213,0.754387,0.111263,0.868539,0.194823,0.485145,0.803174,0.533404,0.873401,0.294645,0.443517,0.151574,0.971115,0.0294674,0.559441,0.250502,0.62305,0.448367,0.0447927,0.270371,0.0657287,0.679964,0.680506,0.104833,0.188199,0.835344,0.163558,0.0477328,0.134881,0.250764,0.210281,0.974845,0.172827,0.604175,0.675574,0.485733,0.7611,0.90935,0.947585,0.155979,0.297485,0.124968,0.627844,0.764944,0.394423,0.621487,0.19329,0.92815,0.131779,0.552015,0.373855,0.958517,0.508557,0.699296,0.531445,0.253252,0.96192,0.341924,0.362957,0.683586,0.957704,0.746109,0.146372,0.784611,0.811872,0.5079,0.338764,0.543142,0.851338,0.225296,0.371666,0.776973,0.481075,0.0231943,0.179506,0.67275,0.407081,0.966571,0.581387,0.483344,0.557591,0.81867,0.362404,0.0111326,0.550502,0.0805879,0.975011,0.0268723,0.723117,0.888452,0.128823,0.21402,0.586341,0.149275,0.254465,0.235288,0.154376,0.150672,0.358371,0.456116,0.235769,0.430543,0.871604,0.572555,0.507159,0.925769,0.725975,0.305646,0.672907,0.988369,0.356893,0.35022,0.88729,0.989042,0.571211,0.0710763,0.141315,0.545473,0.575878,0.426185,0.807979,0.309734,0.920153,0.983858,0.75278,0.535642,0.63323,0.971105,0.806555,0.641999,0.735078,0.28985,0.400933,0.162349,0.661586,0.667463,0.0862061,0.0851905,0.352911,0.0442966,0.230831,0.959109,0.30436,0.56617,0.912241,0.329333,0.402626,0.280484,0.709314,0.738447,0.323205,0.319507,0.0464613,0.867305,0.837817,0.536205,0.332641,0.527451,0.187464,0.961349,0.0417806,0.51382,0.225328,0.0260892,0.535736,0.546851,0.864412,0.870273,0.759858,0.585502,0.937462,0.557506,0.394646,0.907597,0.293025,0.766255,0.909696,0.0776991,0.189996,0.933073,0.411302,0.442343,0.188943,0.799456,0.279558,0.723673,0.705063,0.238308,0.14002,0.5034,0.701142,0.811902,0.451382,0.99273,0.940419,0.826099,0.732249,0.548917,0.980828,0.598517,0.0887071,0.657913,0.327053,0.931248,0.185246,0.725039,0.840588,0.868941,0.335759,0.954595,0.79247,0.095035,0.6978,0.56533,0.819439,0.516542,0.130716,0.0769826,0.808695,0.480537,0.647231,0.203956,0.412485,0.312888,0.358491,0.187075,0.389643,0.514482,0.623004,0.597602,0.356017,0.390932,0.532887,0.753526,0.0434223,0.959848,0.756397,0.700807,0.253573,0.203334,0.499056,0.166385,0.239675,0.538036,0.519236,0.882692,0.490588,0.581949,0.860581,0.525513,0.515265,0.364596,0.221478,0.828408,0.716452,0.492029,0.404924,0.274293,0.524403,0.870015,0.820378,0.120652,0.640986,0.900535,0.668364,0.672676,0.5106,0.411327,0.9124,0.922039,0.954146,0.681575,0.325296,0.356461,0.846547,0.401775,0.401877,0.580598,0.452261,0.320976,0.242153,0.172117,0.0470109,0.0591341,0.580083,0.10269,0.944171,0.416748,0.503585,0.395396,0.924159,0.700792,0.0296704,0.781502,0.827501,0.852504,0.58682,0.260173,0.415841,0.79709,0.819757,0.522332,0.919767,0.706679,0.877188,0.683636,0.974567,0.445977,0.858561,0.657323,0.0529123,0.547943,0.833187,0.584134,0.50064,0.893121,0.107486,0.516763,0.181593,0.543108,0.436163,0.0580454,0.695643,0.625768,0.857026,0.602716,0.803732,0.0865349,0.690635,0.403179,0.916495,0.722739,0.278415,0.94509,0.652146,0.996125,0.0929727,0.25609,0.308628,0.859666,0.236274,0.664421,0.691088,0.33786,0.296683,0.145876,0.98865,0.541351,0.48491,0.254551,0.000779033,0.626728,0.163432,0.812271,0.349975,0.944413,0.0308912,0.786254,0.482954,0.57483,0.113604,0.93649,0.157165,0.72687,0.919791,0.569424,0.73042,0.22057,0.710473,0.721849,0.0409137,0.321238,0.396632,0.432309,0.0949351,0.27594,0.86344,0.179621,0.595082,0.212644,0.0661671,0.309817,0.706087,0.337699,0.351828,0.792596,0.630567,0.900436,0.518392,0.253987,0.101047,0.710908,0.242831,0.713431,0.782736,0.255337,0.68963,0.243111,0.778843,0.983689,0.421406,0.122172,0.785339,0.186637,0.71765,0.441587,0.774866,0.695295,0.0999709,0.574583,0.120148,0.707179,0.998234,0.43924,0.83311,0.464827,0.860805,0.160043,0.645383,0.939006,0.55406,0.809801,0.472722,0.307491,0.00851071,0.0325288,0.39504,0.514109,0.328821,0.0748506,0.697339,0.794339,0.369185,0.111892,0.0544683,0.606846,0.467866,0.361157,0.622222,0.200193,0.994443,0.488914,0.984241,0.79539,0.342744,0.821558,0.90064,0.276319,0.744191,0.928066,0.104523,0.659859,0.0650372,0.692558,0.0417495,0.23965,0.278334,0.170465,0.56939,0.543827,0.316992,0.641454,0.326779,0.15774,0.326846,0.814304,0.422174,0.92396,0.0250947,0.414051,0.574321,0.229383,0.0549047,0.0545149,0.403567,0.354789,0.0656689,0.72379,0.663051,0.0590638,0.563034,0.293671,0.890649,0.238797,0.952648,0.194001,0.209447,0.246698,0.528861,0.486382,0.102847,0.0259326,0.0526864,0.410801,0.510874,0.608718,0.501715,0.77334,0.000607133,0.255804,0.821241,0.0112752,0.0928043,0.214281,0.515709,0.660904,0.534212,0.729473,0.776516,0.959149,0.101115,0.393518,0.893754,0.411207,0.406578,0.384084,0.23262,0.972138,0.824388,0.341293,0.465142,0.680205,0.742202,0.309598,0.879317,0.99476,0.184469,0.127748,0.422297,0.240735,0.895143,0.0439213,0.755109,0.540431,0.308611,0.722188,0.200297,0.281236,0.109919,0.651412,0.734697,0.832896,0.439217,0.18671,0.315836,0.227698,0.19187,0.782864,0.0695856,0.0563822,0.561479,0.662493,0.592502,0.646382,0.918891,0.642482,0.861967,0.826376,0.833335,0.0824423,0.181714,0.574307,0.977613,0.395409,0.867098,0.888655,0.0921288,0.552702,0.451541,0.486796,0.748426,0.377651,0.993538,0.83617,0.0545691,0.066344,0.566947,0.0613575,0.224203,0.228256,0.0764292,0.0913467,0.139613,0.579913,0.229329,0.127961,0.143811,0.928429,0.426181,0.614919,0.113992,0.0192959,0.835355,0.0580697,0.0301321,0.544675,0.956044,0.0836489,0.231958,0.737981,0.303137,0.167218,0.537165,0.16818,0.197727,0.268657,0.867777,0.0913339,0.30925,0.58934,0.360842,0.336696,0.801675,0.924201,0.155348,0.734297,0.653148,0.94125,0.127086,0.149953,0.311287,0.699652,0.723302,0.305903,0.691525,0.242323,0.0965232,0.239392,0.301183,0.827914,0.477817,0.438148,0.0652992,0.286336,0.462471,0.804793,0.336292,0.663117,0.524512,0.498739,0.129293,0.698716,0.910467,0.800581,0.721663,0.898494,0.858221,0.162755,0.858892,0.527381,0.559057,0.31881,0.903481,0.313974,0.112336,0.205922,0.173491,0.744144,0.571529,0.0664444,0.979756,0.342517,0.260467,0.485866,0.0284774,0.75748,0.840593,0.49501,0.554655,0.14613,0.914081,0.309861,0.565884,0.51436,0.0958208,0.969686,0.694121,0.523488,0.862327,0.617965,0.584578,0.0217861,0.870868,0.35561,0.0180965,0.346798,0.558403,0.230643,0.233337,0.0385601,|0.536359,0.869589,0.982035,0.0301253,0.410324,0.0806847,0.0853586,0.258051,0.791385,0.680517,0.755586,0.111025,0.347416,0.506108,0.230623,0.890728,0.0272537,0.36404,0.494389,0.654768,0.976138,0.557929,0.157607,0.859359,0.691006,0.167007,0.551712,0.363237,0.505727,0.0986993,0.0939043,0.699132,0.498698,0.0289865,0.0998528,0.642751,0.118617,0.801598,0.76627,0.517756,0.537165,0.136384,0.653445,0.281294,0.761199,0.338946,0.329942,0.880673,0.0460519,0.487964,0.0858592,0.711224,0.602873,0.173255,0.449963,0.715193,0.620535,0.872132,0.194521,0.470643,0.277436,0.100783,0.975156,0.533871,0.894051,0.924507,0.608641,0.58086,0.82961,0.945324,0.854481,0.731684,0.184496,0.129603,0.649094,0.375839,0.649809,0.658131,0.284567,0.0219665,0.668966,0.292443,0.603231,0.928791,0.359484,0.484462,0.29899,0.98992,0.659835,0.466224,0.711863,0.187978,0.794956,0.493026,0.273814,0.198582,0.056059,0.115762,0.980609,0.376243,0.826425,0.986237,0.386119,0.373301,0.251281,0.332551,0.924083,0.224071,0.313914,0.302347,0.0248516,0.82066,0.900205,0.0646458,0.165443,0.326937,0.929802,0.0334257,0.809162,0.725305,0.452802,0.276479,0.741929,0.585793,0.19545,0.529368,0.644999,0.462202,0.977643,0.469993,0.421056,0.657519,0.821814,0.174932,0.490406,0.436101,0.578977,0.343367,0.550965,0.0761682,0.470363,0.0753331,0.443873,0.614524,0.876452,0.481375,0.20017,0.664742,0.893854,0.934277,0.805181,0.21707,0.102578,0.740522,0.140293,0.169877,0.609858,0.431413,0.41044,0.272487,0.462768,0.211641,0.744976,0.543619,0.973683,0.217067,0.567455,0.432523,0.164122,0.285011,0.228063,0.238444,0.283658,0.0476482,0.901488,0.826606,0.57928,0.118482,0.433168,0.508803,0.960136,0.0242931,0.420185,0.0522861,0.0700648,0.887227,0.33898,0.685404,0.722949,0.612357,0.237683,0.381306,0.918369,0.162597,0.103932,0.159279,0.128528,0.980383,0.101251,0.452546,0.569533,0.431528,0.113246,0.831038,0.210543,0.590957,0.595256,0.711002,0.172089,0.848201,0.357225,0.699533,0.611155,0.799604,0.611488,0.821549,0.965732,0.719857,0.757048,0.465138,0.380488,0.0484458,0.922094,0.554794,0.380129,0.700886,0.472893,0.672959,0.848681,0.843002,0.186156,0.0829058,0.611048,0.340754,0.874493,0.905106,0.0444173,0.0448544,0.086389,0.0874884,0.592301,0.996855,0.636866,0.637251,0.501492,0.0153345,0.895687,0.177559,0.944211,0.278041,0.205213,0.755907,0.377576,0.798844,0.181811,0.357634,0.122078,0.738176,0.768839,0.825285,0.951045,0.430322,0.904972,0.108593,0.903588,0.332504,0.237438,0.539656,0.0468526,0.302466,0.952935,0.616534,0.077108,0.475446,0.83382,0.99632,0.796265,0.412001,0.545148,0.954914,0.265252,0.118534,0.173316,0.591184,0.265831,0.464578,0.377905,0.391015,0.945382,0.176074,0.0463398,0.355157,0.735687,0.665775,0.273664,0.532712,0.300259,0.144309,0.607588,0.45217,0.609722,0.378787,0.380779,0.771123,0.920411,0.998116,0.371019,0.970914,0.633546,0.65122,0.844077,0.878873,0.628526,0.857337,0.107263,0.0493121,0.419611,0.104947,0.0347565,0.265477,0.971047,0.61223,0.0110515,0.226603,0.0155451,0.734519,0.864246,0.94612,0.277983,0.280756,0.330213,0.248129,0.478465,0.484577,0.657843,0.701601,0.604968,0.202025,0.965722,0.400664,0.991329,0.584154,0.988892,0.0218406,0.713045,0.898324,0.607626,0.59954,0.308085,0.800972,0.0602472,0.534638,0.955298,0.850059,0.120774,0.504092,0.252797,0.994513,0.202441,0.52343,0.088522,0.309075,0.00690305,0.23334,0.234186,0.138685,0.490487,0.804469,0.403234,0.839281,0.67243,0.811896,0.212258,0.128257,0.11301,0.831418,0.621893,0.915949,0.107118,0.123675,0.781373,0.907328,0.373284,0.0584533,0.647703,0.477285,0.965544,0.74404,0.636983,0.757193,0.153774,0.97364,0.560198,0.54997,0.207974,0.438662,0.553323,0.377777,0.41969,0.385068,0.879867,0.755236,0.589437,0.932387,0.309328,0.616103,0.0881585,0.912574,0.114432,0.856872,0.119905,0.561609,0.637026,0.863523,0.14947,0.955101,0.940071,0.691313,0.6923,0.652162,0.28857,0.3647,0.63338,0.374082,0.043842,0.770133,0.627206,0.0590704,0.096728,0.120372,0.376439,0.4619,0.944384,0.355235,0.448117,0.808993,0.443039,0.270987,0.380986,0.806765,0.193869,0.320209,0.844651,0.0088461,0.672693,0.172918,0.989732,0.495864,0.316085,0.265137,0.343992,0.500401,0.345715,0.410512,0.63667,0.540495,0.776706,0.131475,0.425488,0.518219,0.129791,0.267521,0.761761,0.296955,0.818011,0.274194,0.600926,0.983257,0.42156,0.638851,0.788552,0.0535771,0.113116,0.177622,0.425149,0.39708,0.597125,0.23787,0.252875,0.14307,0.028341,0.101528,0.221678,0.592761,0.884429,0.860318,0.526609,0.62306,0.824243,0.0807742,0.201514,0.0498481,0.162965,0.572193,0.553868,0.193231,0.891953,0.637166,0.776192,0.48061,0.285182,0.402127,0.212548,0.712407,0.438762,0.419133,0.735176,0.37912,0.217381,0.455287,0.990913,0.783227,0.178823,0.276763,0.826976,0.646001,0.472564,0.4523,0.0798444,0.685294,0.591556,0.635429,0.307824,0.566791,0.761947,0.11436,0.377454,0.370844,0.0931914,0.885514,0.377757,0.144502,0.741814,0.0855367,0.864754,0.125884,0.666619,0.951695,0.946257,0.622136,0.959601,0.876562,0.878564,0.932866,0.432072,0.605548,0.191296,0.818892,0.897188,0.62052,0.371655,0.3075,0.0279509,0.204215,0.887091,0.19325,0.139007,0.409101,0.978014,0.190028,0.229287,0.179402,0.124693,0.0874521,0.674208,0.733128,0.919461,0.171883,0.949442,0.654627,0.129568,0.0245571,0.436946,0.950791,0.312838,0.348482,0.815698,0.166967,0.0265142,0.407027,0.194921,0.067826,0.0181395,0.88585,0.44785,0.618244,0.692017,0.585355,0.673689,0.118987,0.0956995,0.723838,0.476152,0.696652,0.238141,0.0565907,0.68194,0.283961,0.85861,0.0941775,0.4596,0.971853,0.183781,0.229107,0.350774,0.776623,0.0133419,0.365648,0.149989,0.804229,0.399634,0.702669,0.506119,0.877091,0.508376,0.94204,0.484203,0.0121282,0.631718,0.719769,0.896789,0.986648,0.179731,0.832744,0.0176713,0.910413,0.183813,0.869674,0.0846271,0.512404,0.772846,0.283577,0.889515,0.496354,0.63408,0.726537,0.203958,0.899194,0.476115,0.991341,0.899995,0.502949,0.164294,0.219837,0.0362353,0.926791,0.00372821,0.108404,0.197501,0.241172,0.013688,0.757895,0.73306,0.0732866,0.862313,0.547648,0.484415,0.910913,0.135244,0.620309,0.923666,0.436359,0.126744,0.816327,0.437155,0.611647,0.943296,0.332902,0.490304,0.576925,0.390386,0.981666,0.737548,0.841326,0.601659,0.462675,0.425001,0.891794,0.444612,0.833106,0.960005,0.92111,0.417396,0.882174,0.412316,0.13075,0.540715,0.386968,0.712988,0.932161,0.299161,0.892231,0.722169,0.357975,0.579,0.710564,0.639176,0.0929936,0.570836,0.25748,0.423501,0.804402,0.334223,0.996523,0.599502,0.189235,0.31615,0.975977,0.344492,0.610461,0.601069,0.0737966,0.944169,0.953324,0.484176,0.991373,0.840729,0.692365,0.293568,0.719899,0.577579,0.459696,0.740683,0.732382,0.787443,0.469769,0.507783,0.122739,0.46269,0.536688,0.731152,0.045751,0.834547,0.68274,0.098235,0.353955,0.275708,0.55124,0.271961,0.0856898,0.0212958,0.0624706,0.302301,0.11611,0.682624,0.892383,0.557252,0.467696,0.302264,0.116485,0.630333,0.228092,0.682523,0.476993,0.912691,0.109343,0.54004,0.0718946,0.733021,0.482995,0.605274,0.12222,0.319591,0.926037,0.980109,0.930421,0.225554,0.554024,0.660073,0.471243,0.229245,0.310444,0.276749,0.326656,0.974512,0.062115,0.954342,0.353883,0.251396,0.117056,0.715155,0.343456,0.712809,0.285902,0.39293,0.887314,0.0652543,0.454328,0.582039,0.960225,0.607818,0.446894,0.409103,0.451644,0.936254,0.646753,0.720051,0.415257,0.605997,0.838237,0.490172,0.174608,0.901429,0.340356,0.425078,0.460446,0.798625,0.570168,0.378671,0.710978,0.207946,0.160051,0.755681,0.443593,0.641067,0.720611,0.0933074,0.816207,0.938897,0.587433,0.349167,0.350457,0.925157,0.836112,0.293101,0.7287,0.473741,0.413535,0.53646,0.735006,0.137315,0.027415,0.193567,0.0162641,0.888031,0.604834,0.654467,0.741644,0.234304,0.427934,0.848337,0.042338,0.733764,0.233719,0.856892,0.757187,0.615752,0.487755,0.716737,0.830103,0.966006,0.994655,0.303457,0.242507,0.0321876,0.502438,0.0393249,0.368198,0.580526,0.334801,0.610155,0.311599,0.226824,0.300796,0.519529,0.374107,0.943263,0.370679,0.137291,0.0983632,0.915984,0.0958685,0.0197812,0.883453,0.916212,0.977606,0.853862,0.296149,0.184321,0.842509,0.939762,0.659491,0.365844,0.319335,0.13319,0.979905,0.834579,0.939235,0.567075,0.115603,0.750026,0.423839,0.562364,0.662732,0.837541,0.0792605,0.752125,0.561414,0.676937,0.174641,0.092047,0.131642,0.202307,0.898491,0.623789,0.48122,0.668423,0.181664,0.820418,0.046266,0.731009,0.968535,0.107596,0.449476,0.23635,0.443168,0.697017,0.811526,0.812307,0.118614,0.49084,0.0774758,0.0384558,0.0181097,0.435532,0.511676,0.281036,0.208027,0.198575,0.0812783,0.927511,0.982841,0.744319,0.811823,0.437873,0.174818,0.140986,0.578341,0.573122,0.750882,0.892466,0.470639,0.425432,0.141575,0.0101982,0.938427,0.554389,0.801939,0.473907,0.504946,0.742546,0.392952,0.285297,0.889061,0.33769,0.800084,0.17305,0.373011,0.593536,0.865495,0.209697,0.0472198,0.439387,0.837128,0.968091,0.367035,0.621646,0.677363,0.415201,0.30535,0.615843,0.273596,0.484468,0.264228,0.0673976,0.665297,0.333461,0.261834,0.612766,0.150058,0.357325,0.0956016,0.553201,0.632655,0.846035,0.506802,0.880841,0.959851,0.102865,0.309013,0.534122,0.380805,0.308962,0.643854,0.110316,0.0861303,0.203114,0.50829,0.723791,0.136917,|0.0440335,0.264424,0.724011,0.755189,0.308415,0.0581124,0.131594,0.166096,0.0199437,0.514118,0.72097,0.550411,0.59524,0.444795,0.0615087,0.454468,0.00842166,0.0987716,0.131671,0.823094,0.511847,0.236729,0.161271,0.187555,0.575928,0.994352,0.359893,0.863821,0.197659,0.49692,0.725205,0.948161,0.500751,0.154003,0.863076,0.183047,0.0896265,0.392241,0.930782,0.558341,0.885617,0.839214,0.658441,0.1879,0.768909,0.291956,0.159613,0.693066,0.195286,0.773751,0.320862,0.965134,0.0199399,0.00424564,0.742049,0.162323,0.661238,0.543762,0.15739,0.129123,0.443032,0.582211,0.902578,0.592089,0.855728,0.96697,0.911262,0.804139,0.961325,0.38028,0.332209,0.0375754,0.000576794,0.945443,0.687868,0.295792,0.755305,0.541098,0.0732238,0.107602,0.118928,0.00677538,0.477298,0.099776,0.685753,0.606317,0.773391,0.437141,0.771021,0.566952,0.726421,0.349325,0.901936,0.896966,0.0746372,0.387965,0.411691,0.159114,0.369684,0.87447,0.223198,0.927132,0.787103,0.587456,0.842345,0.310804,0.0904131,0.712778,0.0802421,0.57786,0.80933,0.193205,0.910803,0.0858448,0.0425859,0.519108,0.988986,0.483061,0.233955,0.158686,0.241168,0.146,0.51109,0.925161,0.973901,0.694429,0.358039,0.611955,0.200345,0.309154,0.646847,0.0616338,0.652971,0.37951,0.968875,0.797071,0.619697,0.920023,0.428777,0.902532,0.0107599,0.477224,0.705883,0.500813,0.0531968,0.441932,0.992704,0.387757,0.525778,0.0533393,0.0511621,0.25952,0.0409203,0.787318,0.882385,0.888589,0.408316,0.882429,0.123228,0.171825,0.724667,0.747717,0.938537,0.93901,0.159955,0.963491,0.267764,0.364479,0.392677,0.105855,0.676973,0.625569,0.638008,0.533122,0.318226,0.821246,0.636597,0.00981063,0.347294,0.524388,0.943891,0.633926,0.115957,0.405039,0.409816,0.527752,0.325398,0.382109,0.346502,0.704519,0.697766,0.713021,0.161752,0.0873201,0.841516,0.900816,0.767649,0.686667,0.216884,0.142557,0.972526,0.959963,0.153668,0.88452,0.699115,0.39892,0.460441,0.717041,0.0223963,0.0511705,0.311201,0.832377,0.755388,0.579649,0.337817,0.884661,0.436616,0.451284,0.631801,0.847369,0.32753,0.96759,0.0289922,0.0803483,0.510972,0.69792,0.0258711,0.38788,0.516785,0.334486,0.0482599,0.218099,0.65439,0.792587,0.0368925,0.330597,0.37803,0.737605,0.0659038,0.457227,0.24957,0.890845,0.635257,0.478916,0.858551,0.706924,0.79532,0.906382,0.36024,0.551643,0.757488,0.701986,0.426035,0.967533,0.928777,0.388883,0.743197,0.382532,0.0799497,0.903521,0.196409,0.341253,0.814281,0.342548,0.61829,0.101509,0.670344,0.761658,0.529652,0.264435,0.636269,0.44433,0.861796,0.564355,0.571695,0.418356,0.854098,0.060743,0.850203,0.51085,0.849225,0.30472,0.252699,0.9103,0.263575,0.0472253,0.585225,0.0759839,0.378104,0.69153,0.185163,0.155874,0.643757,0.0554498,0.627889,0.153328,0.329845,0.701076,0.154665,0.914826,0.27545,0.762359,0.22576,0.547748,0.819983,0.773322,0.473045,0.89921,0.834359,0.849864,0.000965416,0.349022,0.431965,0.376013,0.539121,0.374305,0.907137,0.0140618,0.186,0.370595,0.5271,0.896659,0.619128,0.931183,0.0132157,0.970182,0.0512649,0.880504,0.418664,0.648763,0.79927,0.987835,0.217655,0.346274,0.199041,0.844137,0.799521,0.987239,0.596936,0.142964,0.470508,0.556264,0.223961,0.919823,0.956655,0.212962,0.420253,0.158123,0.165685,0.529248,0.44121,0.169458,0.113993,0.621788,0.640081,0.877401,0.416569,0.170454,0.290821,0.256431,0.581434,0.211652,0.305245,0.640736,0.459431,0.470755,0.688666,0.386499,0.801345,0.635431,0.156685,0.148169,0.873557,0.311881,0.897163,0.543149,0.870424,0.46184,0.307738,0.541637,0.0355389,0.130268,0.588956,0.215138,0.888603,0.19392,0.54634,0.811511,0.351192,0.929352,0.599165,0.462404,0.670379,0.766483,0.599135,0.488642,0.942645,0.729195,0.0365227,0.760865,0.836073,0.678439,0.236189,0.823516,0.556007,0.898941,0.983429,0.756177,0.817943,0.144987,0.770299,0.359633,0.711551,0.637427,0.955637,0.202569,0.210296,0.401739,0.616584,0.855401,0.179683,0.966284,0.415445,0.892876,0.939158,0.00342709,0.922312,0.0612242,0.112683,0.570796,0.270499,0.925631,0.305737,0.379376,0.178514,0.389598,0.840175,0.0601398,0.943551,0.58575,0.190531,0.318695,0.928174,0.653976,0.200508,0.127421,0.690989,0.774753,0.33117,0.217389,0.230775,0.266962,0.723785,0.57343,0.334592,0.420995,0.494914,0.415013,0.454939,0.200784,0.505723,0.0842722,0.509628,0.893498,0.272878,0.155847,0.634905,0.632513,0.401306,0.224146,0.987055,0.227507,0.322712,0.00230265,0.814066,0.804262,0.611921,0.810635,0.985454,0.0238824,0.543761,0.992257,0.974859,0.714761,0.252771,0.342625,0.238558,0.258015,0.909352,0.157721,0.445237,0.898334,0.0287138,0.42771,0.673233,0.939138,0.772841,0.28526,0.516715,0.121081,0.388288,0.784046,0.783618,0.57109,0.301564,0.566758,0.142548,0.357179,0.395646,0.240478,0.0670195,0.272645,0.50719,0.541454,0.230266,0.46729,0.0663924,0.325109,0.45411,0.594419,0.900144,0.152133,0.088168,0.658388,0.36035,0.406822,0.77837,0.889606,0.415923,0.349589,0.723143,0.368404,0.372488,0.676189,0.689849,0.684609,0.396431,0.379485,0.226354,0.0815802,0.145914,0.522728,0.20934,0.824574,0.562503,0.721619,0.167634,0.778428,0.71324,0.816947,0.984181,0.135887,0.356776,0.465521,0.722867,0.669064,0.573225,0.104477,0.110827,0.1766,0.32153,0.540725,0.606887,0.943935,0.899561,0.590525,0.438002,0.995223,0.0443327,0.824492,0.726096,0.226619,0.220858,0.122642,0.480105,0.166723,0.934241,0.407464,0.198003,0.229857,0.783864,0.916695,0.743834,0.538569,0.288025,0.870659,0.536567,0.436509,0.460147,0.532029,0.651214,0.0630755,0.632841,0.141279,0.0792081,0.294727,0.880226,0.38287,0.683655,0.924392,0.21892,0.0705904,0.980582,0.836336,0.229902,0.498309,0.0821123,0.0941712,0.909964,0.284315,0.553464,0.306818,0.541049,0.968459,0.365398,0.789187,0.848214,0.691475,0.185619,0.219618,0.450231,0.776098,0.896585,0.015964,0.533642,0.0276423,0.0404433,0.476164,0.508256,0.566106,0.828665,0.613013,0.0920191,0.275429,0.348783,0.617964,0.778009,0.210058,0.294374,0.935647,0.537506,0.711566,0.375926,0.24084,0.836101,0.480463,0.891777,0.372858,0.954795,0.494351,0.427269,0.204139,0.257767,0.525695,0.979256,0.954645,0.798675,0.0101519,0.787636,0.561585,0.647877,0.223028,0.101131,0.224712,0.530845,0.517772,0.997649,0.725986,0.480053,0.786429,0.132111,0.82658,0.345393,0.86133,0.652584,0.174262,0.877325,0.7552,0.996829,0.342279,0.391588,0.532878,0.0193809,0.471665,0.481482,0.933886,0.723019,0.868789,0.948733,0.447172,0.144626,0.836521,0.187907,0.198524,0.0308225,0.481644,0.722913,0.272625,0.464299,0.933742,0.529113,0.0998264,0.0804152,0.759236,0.240534,0.71778,0.207597,0.0475173,0.0849724,0.249512,0.300292,0.998222,0.888733,0.587191,0.70059,0.0703011,0.470203,0.765815,0.483378,0.177173,0.481404,0.277891,0.920614,0.426379,0.672437,0.14573,0.677459,0.68729,0.407622,0.356363,0.378777,0.806322,0.155468,0.269758,0.105804,0.0193962,0.441251,0.342355,0.832769,0.530093,0.997654,0.595224,0.109823,0.93049,0.419718,0.777105,0.987677,0.558715,0.873739,0.97262,0.424846,0.973905,0.616286,0.129979,0.180017,0.77821,0.115201,0.012857,0.729784,0.142551,0.0228285,0.269444,0.217438,0.686664,0.13161,0.745809,0.687476,0.761683,0.552284,0.883769,0.866358,0.449727,0.470333,0.139648,0.859773,0.687288,0.720085,0.0719252,0.232318,0.770291,0.788129,0.91683,0.140166,0.348554,0.0398201,0.743442,0.971567,0.0766993,0.085202,0.276357,0.393982,0.365591,0.233412,0.0489479,0.226263,0.292608,0.0669256,0.928035,0.908749,0.72885,0.760617,0.951936,0.185581,0.488695,0.742077,0.219774,0.898487,0.0332236,0.24439,0.793087,0.374412,0.749226,0.107902,0.762273,0.462745,0.47301,0.0226407,0.359947,0.812344,0.901105,0.785875,0.181051,0.0683646,0.167065,0.785802,0.240153,0.110862,0.248083,0.519028,0.142304,0.669272,0.055653,0.12506,0.194843,0.795437,0.857956,0.982694,0.414688,0.789794,0.115056,0.502701,0.565616,0.355341,0.826789,0.611269,0.437877,0.953244,0.983915,0.715134,0.445673,0.659995,0.156505,0.860928,0.469568,0.9659,0.917876,0.0456893,0.324051,0.392057,0.864508,0.443389,0.604891,0.859891,0.990946,0.856889,0.879367,0.625534,0.491831,0.714306,0.696473,0.331391,0.852859,0.652956,0.548724,0.505937,0.49785,0.346038,0.360726,0.180286,0.238665,0.262189,0.257637,0.98906,0.831601,0.788173,0.186144,0.0496019,0.495814,0.0813573,0.269938,0.372504,0.29447,0.622587,0.571664,0.00458914,0.385202,0.748548,0.591889,0.984993,0.751676,0.367983,0.0291489,0.835638,0.487542,0.281559,0.38262,0.702794,0.854965,0.136686,0.297162,0.724119,0.889957,0.402516,0.336064,0.527616,0.247761,0.928874,0.114327,0.600168,0.21754,0.131444,0.986983,0.0408052,0.554469,0.517463,0.294933,0.0833223,0.85427,0.778323,0.599049,0.631975,0.997466,0.571679,0.214696,0.33145,0.992888,0.598549,0.562091,0.585478,0.609497,0.465697,0.469711,0.026403,0.097244,0.586689,0.937032,0.0487277,0.709038,0.0168814,0.522494,0.345383,0.81547,0.59392,0.853962,0.761569,0.688513,0.941815,0.942081,0.634701,0.434201,0.826852,0.865142,0.856906,0.766057,0.486395,0.239977,0.78691,0.877559,0.296437,0.957538,0.182651,0.648358,0.0559244,0.610316,0.117507,0.634179,0.110335,0.0302416,0.330435,0.745065,0.262471,0.937307,0.713799,0.183349,0.27849,0.449834,0.0788298,0.765479,0.330952,0.489111,0.335451,0.428922,0.187455,0.299317,0.18734,0.947795,0.0957072,0.310843,0.888048,0.635791,|0.517405,0.961962,0.451993,0.999168,0.228231,0.887308,0.00913656,0.650654,0.108138,0.486022,0.498745,0.789579,0.470425,0.613355,0.179962,0.0894194,0.386461,0.169359,0.0304015,0.111697,0.607663,0.838693,0.71064,0.7264,0.838266,0.797805,0.30852,0.651475,0.53622,0.080374,0.957911,0.623521,0.501259,0.608397,0.379067,0.354889,0.225158,0.808424,0.87899,0.850122,0.0260989,0.346345,0.686553,0.308236,0.104144,0.392574,0.870664,0.384531,0.825969,0.0348864,0.931752,0.594572,0.502994,0.182731,0.215056,0.344074,0.358001,0.00458312,0.0242834,0.94573,0.871755,0.721922,0.191921,0.0414744,0.322112,0.316511,0.452607,0.83184,0.334893,0.487163,0.933248,0.144403,0.8454,0.514664,0.0824231,0.0987971,0.458399,0.223886,0.92842,0.925395,0.747528,0.322081,0.67818,0.620855,0.65715,0.387018,0.538384,0.860753,0.920867,0.223496,0.119366,0.717647,0.306877,0.392611,0.409774,0.270634,0.716255,0.53533,0.502009,0.402568,0.109645,0.818706,0.301359,0.850723,0.777751,0.334885,0.142641,0.604517,0.378422,0.474293,0.241929,0.326119,0.079817,0.637136,0.233807,0.0100525,0.668266,0.362429,0.996452,0.469183,0.528605,0.374244,0.428437,0.547749,0.819427,0.840198,0.922395,0.361911,0.726973,0.46901,0.88317,0.573484,0.827974,0.427461,0.21834,0.83649,0.735916,0.817538,0.510342,0.40746,0.0212809,0.302719,0.23702,0.252925,0.204571,0.551628,0.841984,0.844436,0.807045,0.367822,0.707813,0.515131,0.650517,0.23348,0.222547,0.250651,0.849977,0.564778,0.238199,0.893349,0.431406,0.965629,0.635725,0.814183,0.859646,0.988908,0.174352,0.99792,0.98605,0.487195,0.46772,0.202312,0.417407,0.142164,0.862184,0.578873,0.0376205,0.161546,0.797341,0.60104,0.502897,0.79923,0.317028,0.694753,0.668535,0.58211,0.125676,0.969873,0.102017,0.212618,0.300034,0.994091,0.610874,0.0271088,0.57768,0.466496,0.605947,0.776834,0.357109,0.89839,0.803073,0.468592,0.421121,0.715878,0.471117,0.168056,0.199075,0.353265,0.0208926,0.26707,0.886321,0.156678,0.366941,0.0346142,0.867641,0.955323,0.318262,0.223203,0.341725,0.0621448,0.513701,0.168842,0.373291,0.282299,0.160846,0.241128,0.669775,0.277671,0.487728,0.637101,0.118839,0.654369,0.127178,0.00219953,0.0750656,0.904546,0.430569,0.86712,0.513629,0.772668,0.386507,0.798004,0.105944,0.598652,0.167047,0.356897,0.82672,0.187311,0.481979,0.914883,0.58908,0.462977,0.752924,0.967935,0.905187,0.584173,0.690811,0.387762,0.335213,0.428002,0.655314,0.408392,0.140842,0.449993,0.970895,0.679369,0.577954,0.336066,0.10025,0.681062,0.819034,0.48946,0.36413,0.0230454,0.947869,0.243061,0.0862252,0.226988,0.0514163,0.403309,0.970497,0.374099,0.503629,0.155821,0.371493,0.0233895,0.0281649,0.167992,0.833357,0.326248,0.943411,0.902249,0.895169,0.897381,0.466223,0.317861,0.292953,0.162888,0.882562,0.00712281,0.364644,0.848483,0.581803,0.950906,0.248901,0.251128,0.871715,0.721298,0.0462778,0.610982,0.390992,0.109432,0.405878,0.378299,0.788849,0.791285,0.479368,0.798867,0.392037,0.221068,0.673907,0.282354,0.71322,0.240487,0.699325,0.592542,0.0637739,0.976922,0.354547,0.460327,0.631349,0.388022,0.868081,0.154797,0.827202,0.0616125,0.236124,0.801232,0.638449,0.562107,0.104327,0.818615,0.300174,0.530361,0.0563124,0.0117874,0.20897,0.663365,0.527643,0.0893296,0.493592,0.716355,0.143224,0.14432,0.0315019,0.779476,0.0580946,0.488387,0.432438,0.443169,0.712648,0.972977,0.837076,0.493317,0.587844,0.955457,0.83051,0.554474,0.429387,0.967517,0.72406,0.14957,0.988889,0.754019,0.768818,0.702829,0.830717,0.767613,0.742387,0.447316,0.140746,0.796724,0.135238,0.149275,0.342129,0.472721,0.575917,0.263082,0.745097,0.805732,0.439512,0.800998,0.137603,0.118244,0.433188,0.727146,0.328617,0.621382,0.13293,0.439362,0.17748,0.790027,0.413666,0.242541,0.178369,0.922381,0.45988,0.580792,0.155892,0.715423,0.191479,0.228071,0.80338,0.130667,0.890078,0.535856,0.264231,0.0414925,0.411062,0.362899,0.391254,0.880984,0.566991,0.884851,0.502777,0.979985,0.687912,0.888023,0.653593,0.810248,0.694906,0.709734,0.41173,0.502635,0.206019,0.84761,0.783091,0.156215,0.335126,0.372337,0.376388,0.269208,0.908455,0.834536,0.00491649,0.352588,0.532599,0.659939,0.80558,0.00642008,0.434787,0.284674,0.0318521,0.220194,0.958864,0.764531,0.637011,0.219553,0.616274,0.236241,0.63543,0.367277,0.894804,0.358026,0.566923,0.747319,0.466677,0.203029,0.111599,0.0951374,0.0370435,0.726924,0.425183,0.288011,0.997867,0.678964,0.438565,0.800683,0.819015,0.787384,0.748402,0.14934,0.596067,0.0701863,0.671272,0.417797,0.411278,0.182836,0.0104008,0.28101,0.509137,0.883931,0.145159,0.907012,0.542402,0.515312,0.157378,0.537031,0.854397,0.992212,0.10123,0.814299,0.1217,0.335224,0.776419,0.00237763,0.604855,0.667772,0.63346,0.545182,0.88645,0.581208,0.702784,0.0466794,0.260226,0.472289,0.542771,0.343518,0.219461,0.588745,0.137048,0.638093,0.711227,0.723934,0.179005,0.387778,0.924269,0.107218,0.720135,0.848836,0.464515,0.952301,0.990681,0.746139,0.165669,0.00507015,0.472664,0.824928,0.184003,0.0322267,0.494658,0.610141,0.918509,0.380132,0.109931,0.995283,0.47404,0.593354,0.413504,0.154235,0.293442,0.677005,0.677952,0.524979,0.619131,0.0546656,0.536583,0.680995,0.63965,0.507171,0.515245,0.131485,0.904936,0.547431,0.434705,0.167459,0.620152,0.426838,0.323632,0.758805,0.500565,0.714257,0.285631,0.857588,0.891095,0.734253,0.822516,0.773497,0.640104,0.537129,0.520511,0.500497,0.428644,0.262152,0.45458,0.619063,0.55614,0.125446,0.0606483,0.862319,0.504098,0.710486,0.186385,0.5445,0.953697,0.950122,0.992247,0.342142,0.501947,0.843188,0.194735,0.904848,0.998316,0.406996,0.956212,0.348829,0.890177,0.584027,0.346495,0.652189,0.953271,0.107234,0.968647,0.646374,0.466519,0.183107,0.882399,0.994148,0.710078,0.965115,0.729889,0.389929,0.0739866,0.518101,0.398328,0.96864,0.532296,0.29572,0.453975,0.767801,0.485622,0.0477735,0.290183,0.140135,0.114154,0.617877,0.227723,0.101658,0.742002,0.0859256,0.985431,0.775755,0.616768,0.754462,0.0453377,0.927419,0.0970725,0.645595,0.0842181,0.930997,0.459887,0.908801,0.942477,0.594729,0.398332,0.585241,0.536567,0.575677,0.651625,0.853699,0.784714,0.80194,0.89082,0.75243,0.436482,0.975611,0.792233,0.0115977,0.603021,0.963893,0.984766,0.0462871,0.904351,0.870329,0.0915762,0.904392,0.00727558,0.0694068,0.302483,0.804972,0.278925,0.869567,0.573298,0.212958,0.0887725,0.503733,0.595466,0.83226,0.0146657,0.401718,0.120056,0.228521,0.30658,0.110481,0.769881,0.0387858,0.348088,0.569536,0.900303,0.257946,0.544024,0.841446,0.0245869,0.708714,0.474938,0.261693,0.475304,0.394051,0.559453,0.484751,0.0651604,0.928705,0.600147,0.0320168,0.365427,0.136156,0.0756422,0.380247,0.028637,0.972465,0.506594,0.476526,0.483592,0.478444,0.640038,0.781574,0.343277,0.734049,0.213198,0.381655,0.509777,0.035167,0.226108,0.504404,0.737535,0.307672,0.831401,0.836879,0.805716,0.30603,0.551385,0.926852,0.0742492,0.324723,0.92582,0.0133813,0.0838501,0.385571,0.746259,0.923193,0.545721,0.19045,0.842456,0.384865,0.301573,0.983826,0.69754,0.345275,0.100554,0.180438,0.425348,0.176345,0.37063,0.420755,0.20306,0.371609,0.118544,0.0188753,0.302892,0.0449666,0.85774,0.304351,0.184544,0.979162,0.27002,0.615503,0.144751,0.338759,0.110707,0.330001,0.274634,0.185671,0.494342,0.157782,0.737706,0.951537,0.579387,0.31758,0.76949,0.479988,0.747183,0.317765,0.410876,0.229098,0.327187,0.794704,0.638212,0.844065,0.218313,0.850846,0.593715,0.36661,0.849441,0.869883,0.0419801,0.917401,0.957001,0.787217,0.0886831,0.888267,0.895938,0.688998,0.851957,0.776623,0.675849,0.331521,0.260133,0.93425,0.615891,0.218367,0.225087,0.755209,0.923072,0.854499,0.195792,0.163297,0.491845,0.379824,0.294056,0.779904,0.327194,0.307703,0.455018,0.663765,0.238649,0.108182,0.0315763,0.803352,0.437481,0.562433,0.347738,0.375369,0.226041,0.438368,0.465893,0.259127,0.769464,0.528489,0.678845,0.809636,0.142262,0.351953,0.0436912,0.986886,0.137896,0.55683,0.0148723,0.320487,0.804965,0.192597,0.914093,0.841557,0.221891,0.977542,0.0202721,0.312058,0.248248,0.280994,0.12381,0.46716,0.991369,0.846325,0.104513,0.350526,0.973782,0.490125,0.366869,0.133592,0.320298,0.756452,0.818884,0.0571264,0.321743,0.561361,0.825295,0.671226,0.3112,0.344825,0.753352,0.338908,0.388368,0.915584,0.273872,0.00417197,0.424604,0.900583,0.207588,0.754601,0.41657,0.268596,0.00923532,0.728266,0.910101,0.92878,0.245418,0.010588,0.611958,0.38168,0.78647,0.0828604,0.169974,0.159049,0.668431,0.494609,0.820968,0.585955,0.271975,0.169512,0.761931,0.679571,0.0327502,0.165121,0.993029,0.167256,0.761939,0.914845,0.535757,0.225511,0.655466,0.293207,0.724246,0.844198,0.716485,0.57853,0.0250438,0.248532,0.824918,0.0135323,0.738917,0.562626,0.989754,0.965128,0.690225,0.793539,0.0417633,0.836021,0.36475,0.743971,0.487998,0.658518,0.146167,0.0102944,0.173419,0.388344,0.579541,0.307628,0.559278,0.766412,0.173573,0.574842,0.107928,0.372119,0.165328,0.717889,0.387709,0.160154,0.971189,0.924085,0.800188,0.244344,0.723122,0.662868,0.764101,0.81904,0.561734,0.39657,0.0707252,0.265321,0.841781,0.753918,0.494835,0.313971,0.125502,0.496858,0.431366,0.585634,0.0879096,0.366237,0.637741,0.245342,0.247122,0.0951817,0.118205,0.677159,0.330328,0.150843,0.962216,0.147986,0.226855,0.410429,|0.362042,0.339897,0.203468,0.961785,0.135035,0.26065,0.944868,0.637175,0.269437,0.0593272,0.0828393,0.135213,0.160122,0.290311,0.207172,0.498906,0.674264,0.818749,0.55741,0.685584,0.963,0.295181,0.444912,0.949001,0.0480313,0.97181,0.830258,0.702775,0.705058,0.0280654,0.377696,0.321077,0.604015,0.156993,0.519318,0.120669,0.929356,0.695189,0.563392,0.372403,0.910218,0.776278,0.835954,0.764505,0.840621,0.681561,0.670123,0.751193,0.690448,0.538586,0.453418,0.441346,0.408318,0.85915,0.0085454,0.929602,0.577263,0.96147,0.143888,0.306652,0.229965,0.790169,0.992773,0.295154,0.794274,0.488726,0.932391,0.151585,0.173381,0.976712,0.0972012,0.517914,0.216948,0.836842,0.684451,0.897704,0.239631,0.585739,0.547676,0.206317,0.677935,0.396928,0.660811,0.787283,0.215397,0.0566769,0.783853,0.319598,0.430741,0.294978,0.942347,0.566277,0.402992,0.568849,0.643349,0.794881,0.934784,0.418551,0.631748,0.0939657,0.594955,0.502127,0.272702,0.646721,0.145562,0.280438,0.208157,0.127899,0.336005,0.619848,0.0972386,0.0903866,0.153554,0.343485,0.754102,0.326551,0.559118,0.081996,0.107232,0.763161,0.991258,0.26052,0.244187,0.443304,0.377541,0.438642,0.228114,0.995438,0.637338,0.155291,0.214475,0.370971,0.776677,0.915131,0.564122,0.582499,0.292477,0.0335624,0.340267,0.221698,0.894836,0.507557,0.369219,0.781462,0.0282366,0.34138,0.220606,0.239869,0.0996561,0.785105,0.228575,0.585615,0.183169,0.715537,0.98828,0.539029,0.105275,0.563496,0.977805,0.102256,0.404832,0.454202,0.949175,0.624853,0.308331,0.944382,0.755574,0.846135,0.383501,0.00559074,0.183769,0.706436,0.190636,0.612156,0.886661,0.295785,0.504565,0.306712,0.959961,0.644391,0.370883,0.522632,0.249825,0.466435,0.707721,0.821349,0.453924,0.535281,0.0969477,0.202526,0.369,0.501561,0.172001,0.698269,0.165536,0.898247,0.839378,0.00943238,0.131064,0.670539,0.804842,0.557235,0.439143,0.930397,0.00547534,0.613003,0.741853,0.916312,0.409689,0.132256,0.649145,0.0956448,0.623122,0.295414,0.544004,0.556941,0.10624,0.302987,0.0511935,0.932968,0.675819,0.69051,0.856013,0.493759,0.472305,0.390484,0.321369,0.56732,0.18109,0.901987,0.486368,0.135783,0.507951,0.57206,0.496914,0.118832,0.598779,0.775174,0.521303,0.96845,0.404508,0.635102,0.659376,0.757012,0.327477,0.0185425,0.759325,0.813665,0.271197,0.701956,0.232365,0.685299,0.671482,0.8078,0.889754,0.188497,0.233461,0.274469,0.149108,0.379635,0.430613,0.396082,0.375369,0.859498,0.702338,0.571243,0.447145,0.977752,0.553306,0.65272,0.51273,0.735873,0.297087,0.732531,0.845604,0.097599,0.201876,0.710073,0.0725282,0.647677,0.556099,0.80186,0.469962,0.211969,0.205225,0.164078,0.079167,0.654982,0.475606,0.0815631,0.0774958,0.26675,0.971283,0.152319,0.927332,0.404774,0.942347,0.306298,0.66188,0.938485,0.528033,0.880695,0.247981,0.824465,0.244394,0.303762,0.466884,0.575481,0.309945,0.279988,0.343376,0.501775,0.638718,0.153267,0.332563,0.372555,0.79156,0.618531,0.398002,0.72954,0.183484,0.768123,0.338175,0.511352,0.684528,0.922552,0.411317,0.636611,0.740484,0.474413,0.536211,0.130031,0.444476,0.0615205,0.989973,0.943398,0.269755,0.198627,0.886036,0.864492,0.568379,0.336823,0.327365,0.206351,0.336411,0.979154,0.352274,0.277053,0.505899,0.264494,0.879342,0.17643,0.616942,0.938211,0.237917,0.405952,0.155498,0.203091,0.656997,0.292325,0.330407,0.571681,0.261901,0.941108,0.997518,0.740873,0.295018,0.995623,0.722457,0.788456,0.850308,0.959882,0.646482,0.28765,0.542047,0.0122317,0.451353,0.753778,0.0723389,0.627565,0.195803,0.395612,0.255232,0.285772,0.532023,0.661889,0.385292,0.00910819,0.497577,0.187534,0.767676,0.274474,0.216088,0.180154,0.968017,0.948399,0.636559,0.308232,0.629348,0.712669,0.680266,0.58065,0.255604,0.019369,0.0829368,0.649277,0.838721,0.719552,0.556599,0.759015,0.497137,0.277792,0.549314,0.636687,0.135449,0.329539,0.98405,0.250556,0.250955,0.722849,0.788352,0.708689,0.667804,0.373452,0.229276,0.745183,0.376566,0.900919,0.201052,0.197484,0.509896,0.431388,0.189327,0.357656,0.988696,0.386837,0.174452,0.00110853,0.115642,0.531765,0.142202,0.637055,0.596982,0.895643,0.529666,0.94377,0.481421,0.247263,0.380191,0.133469,0.0998687,0.773044,0.669688,0.219744,0.425357,0.637701,0.190753,0.639128,0.820846,0.920674,0.384672,0.601544,0.6682,0.478173,0.622459,0.326658,0.672201,0.119813,0.390617,0.85898,0.941267,0.899889,0.577681,0.732706,0.0557886,0.774458,0.980533,0.323122,0.253911,0.662121,0.739785,0.667981,0.669481,0.315854,0.0904281,0.529075,0.797339,0.970629,0.138827,0.224623,0.802301,0.505924,0.111361,0.689572,0.863012,0.160373,0.798002,0.122483,0.548503,0.00375926,0.991199,0.397832,0.412248,0.0925491,0.527982,0.396683,0.689606,0.650056,0.655513,0.608511,0.453992,0.356239,0.487421,0.999312,0.404402,0.48062,0.619486,0.180901,0.166935,0.844237,0.475396,0.777356,0.0575051,0.0686236,0.286613,0.0640597,0.936706,0.687826,0.280426,0.63333,0.291956,0.870322,0.883974,0.998402,0.662463,0.0648835,0.388798,0.639178,0.190864,0.468499,0.401156,0.831274,0.808603,0.330645,0.902026,0.114184,0.909246,0.767999,0.596079,0.126937,0.990781,0.413031,0.570871,0.669453,0.304802,0.352381,0.785162,0.968747,0.587468,0.835908,0.90171,0.641622,0.326257,0.638845,0.747844,0.34653,0.838328,0.623147,0.00184268,0.866661,0.813473,0.550205,0.960621,0.716945,0.695027,0.43852,0.719724,0.283476,0.687348,0.877266,0.297763,0.361942,0.131557,0.463859,0.897297,0.190068,0.586647,0.855603,0.91087,0.724333,0.392136,0.834741,0.585857,0.814287,0.911362,0.543305,0.949484,0.090663,0.225142,0.844707,0.435548,0.764481,0.656231,0.626622,0.921173,0.77903,0.2146,0.990298,0.15883,0.854787,0.478092,0.915899,0.0177456,0.667215,0.0112102,0.172059,0.332626,0.0740423,0.243219,0.374723,0.701056,0.928222,0.779139,0.649363,0.411872,0.132442,0.4738,0.373891,0.0356601,0.695479,0.560816,0.907662,0.670714,0.815731,0.304815,0.891326,0.170162,0.380722,0.496864,0.970581,0.45858,0.608099,0.735305,0.617394,0.252937,0.255003,0.134675,0.0710307,0.668599,0.918363,0.794453,0.376203,0.908995,0.0392929,0.23706,0.195625,0.190374,0.370883,0.893507,0.86799,0.332746,0.672958,0.531862,0.21998,0.589786,0.574386,0.231541,0.825115,0.331427,0.665297,0.29926,0.716305,0.967276,0.63168,0.572201,0.765753,0.656887,0.163719,0.738643,0.859929,0.300002,0.0301278,0.708806,0.210475,0.379784,0.62001,0.321777,0.86531,0.0859128,0.226247,0.96187,0.155866,0.66132,0.0237186,0.579906,0.140147,0.0515983,0.040154,0.970161,0.690431,0.363682,0.165671,0.827287,0.714783,0.542939,0.300623,0.783568,0.327731,0.653298,0.149595,0.782179,0.634993,0.645167,0.550864,0.380842,0.514214,0.368688,0.496121,0.68884,0.917151,0.44367,0.62428,0.730151,0.210318,0.141611,0.632874,0.623117,0.704565,0.874525,0.0183047,0.969644,0.414101,0.525345,0.956269,0.244874,0.185546,0.83415,0.132814,0.786066,0.938508,0.121502,0.266419,0.615108,0.834176,0.551007,0.246038,0.394885,0.937974,0.972396,0.808062,0.305363,0.467995,0.863107,0.165724,0.252761,0.82701,0.0421811,0.482673,0.9738,0.976692,0.151843,0.592288,0.364976,0.0584923,0.268432,0.50953,0.0684481,0.746739,0.827172,0.323699,0.375321,0.80789,0.955042,0.366686,0.320752,0.051492,0.692577,0.425474,0.834188,0.322165,0.10856,0.0235263,0.4553,0.403978,0.459338,0.588891,0.495325,0.00299871,0.61513,0.10412,0.259737,0.0559134,0.27106,0.27735,0.468691,0.911566,0.255511,0.14087,0.762666,0.677284,0.23134,0.522986,0.449408,0.14883,0.0422125,0.459597,0.301664,0.961307,0.912484,0.958039,0.865928,0.456108,0.392475,0.031086,0.363713,0.159168,0.0969715,0.470257,0.0236218,0.771098,0.263295,0.69606,0.108002,0.607392,0.236409,0.522165,0.690626,0.494985,0.464344,0.424122,0.776272,0.991442,0.53275,0.963012,0.464578,0.433543,0.927255,0.410545,0.894752,0.243113,0.867073,0.590502,0.400163,0.43442,0.627201,0.0896377,0.468285,0.730824,0.109705,0.0509564,0.724049,0.951973,0.892057,0.802218,0.988795,0.841487,0.225567,0.987232,0.682205,0.288889,0.456469,0.880885,0.134345,0.180647,0.475567,0.424477,0.166355,0.588706,0.0926192,0.319314,0.637075,0.469766,0.767091,0.11287,0.186161,0.432269,0.876945,0.623621,0.56051,0.340544,0.416421,0.93917,0.106171,0.492497,0.580248,0.297031,0.981403,0.0728536,0.220913,0.842183,0.93462,0.124838,0.632013,0.521326,0.0366332,0.393434,0.198135,0.638133,0.903452,0.101313,0.763852,0.157077,0.945422,0.712974,0.85028,0.130602,0.666146,0.57938,0.364832,0.207246,0.585298,0.497289,0.514407,0.620356,0.222102,0.219258,0.620174,0.0319546,0.0629805,0.817075,0.242491,0.462168,0.349594,0.683192,0.308623,0.927254,0.965533,0.0134708,0.574244,0.077261,0.0529681,0.651151,0.548924,0.0539333,0.519488,0.732786,0.952834,0.999965,0.488872,0.874083,0.150003,0.552194,0.0357133,0.549384,0.37485,0.751533,0.401697,0.24742,0.844984,0.349852,0.169679,0.916131,0.789058,0.514121,0.110832,0.0399081,0.290524,0.213468,0.691017,0.117698,0.578369,0.859993,0.676702,0.793781,0.60248,0.889657,0.203964,0.375874,0.927441,0.0553557,0.714033,0.751787,0.837675,0.158558,0.921777,0.496193,0.824949,0.189978,0.456987,0.557743,0.0355159,0.363632,0.0427529,0.619549,0.216134,0.660849,0.117913,0.564708,0.392083,0.812141,0.19402,0.748164,0.390216,0.654845,0.106041,0.97621,0.303311,0.348222,0.723641,0.878465,|0.144364,0.727834,0.391375,0.340464,0.461609,0.632532,0.026782,0.310259,0.296369,0.664155,0.822663,0.849014,0.542806,0.195065,0.228823,0.362992,0.305291,0.187083,0.154649,0.324844,0.834472,0.826564,0.712058,0.215703,0.209029,0.916161,0.712091,0.891704,0.582972,0.0791525,0.200401,0.681318,0.40923,0.473375,0.423931,0.847986,0.779852,0.0737417,0.388957,0.330647,0.899569,0.750196,0.918219,0.73587,0.70791,0.943706,0.611099,0.595472,0.802111,0.0935545,0.751646,0.024212,0.135893,0.426027,0.48028,0.159459,0.977156,0.233311,0.245439,0.812803,0.556145,0.734075,0.831485,0.502926,0.327333,0.632311,0.501576,0.834265,0.499206,0.385911,0.538413,0.694615,0.413963,0.336452,0.914214,0.970868,0.88346,0.943301,0.532689,0.774688,0.894161,0.0952929,0.0400903,0.00430381,0.753336,0.413625,0.0181724,0.296778,0.316024,0.149579,0.788033,0.484458,0.121884,0.46557,0.692517,0.632849,0.590532,0.765843,0.266779,0.911764,0.559311,0.84446,0.878176,0.395482,0.0798911,0.921891,0.350929,0.436588,0.884498,0.0966491,0.748712,0.489892,0.213677,0.182987,0.659672,0.335046,0.896702,0.428641,0.690402,0.745932,0.453856,0.887373,0.159333,0.0809742,0.831483,0.131102,0.431658,0.869973,0.59638,0.538293,0.720427,0.148052,0.526432,0.907269,0.402099,0.131394,0.795502,0.34377,0.192082,0.936418,0.645068,0.940735,0.565553,0.399255,0.514549,0.524757,0.62494,0.526815,0.0219929,0.227163,0.240241,0.271776,0.421995,0.542884,0.258478,0.123973,0.77048,0.220354,0.0733619,0.712254,0.574087,0.204432,0.0829988,0.257058,0.71926,0.607529,0.360369,0.478064,0.851145,0.866523,0.477189,0.301577,0.615232,0.289808,0.403245,0.906724,0.220521,0.277714,0.973916,0.30376,0.218159,0.874962,0.576718,0.196143,0.783296,0.104426,0.746977,0.950425,0.722486,0.639778,0.414424,0.601273,0.962887,0.699558,0.0573905,0.42271,0.964989,0.716251,0.211369,0.0586157,0.786297,0.642507,0.248745,0.0701022,0.85285,0.934017,0.707166,0.786002,0.673339,0.842875,0.488279,0.224383,0.657927,0.947926,0.52002,0.0329382,0.145539,0.530332,0.582043,0.23466,0.657186,0.981762,0.131861,0.293423,0.125062,0.966751,0.549659,0.0508821,0.000483155,0.202589,0.790833,0.244189,0.619615,0.687894,0.585746,0.998214,0.757345,0.291229,0.119845,0.972623,0.811494,0.0588015,0.552967,0.251583,0.708737,0.262624,0.308586,0.0935746,0.731473,0.582259,0.778483,0.668028,0.229803,0.647736,0.762602,0.599471,0.203771,0.0697376,0.804439,0.795196,0.984253,0.450248,0.0110381,0.422406,0.198531,0.583426,0.0248095,0.926483,0.0374845,0.196856,0.383667,0.458127,0.0740284,0.732037,0.436911,0.624441,0.644421,0.167166,0.197955,0.34451,0.146813,0.697398,0.99048,0.57336,0.520145,0.912811,0.0193325,0.439832,0.62784,0.189918,0.142199,0.304979,0.521679,0.457397,0.00826347,0.58899,0.536233,0.546789,0.900447,0.579404,0.586333,0.525901,0.923883,0.253229,0.474137,0.729926,0.163727,0.245562,0.642266,0.311591,0.516048,0.605632,0.964837,0.516529,0.553353,0.568017,0.618835,0.477953,0.192893,0.10304,0.9539,0.822964,0.491365,0.465881,0.932676,0.145886,0.244504,0.700341,0.657021,0.489147,0.0523943,0.985243,0.473582,0.858102,0.588226,0.471485,0.10683,0.37792,0.697728,0.761642,0.593413,0.699666,0.167435,0.249329,0.319553,0.640803,0.0208423,0.429812,0.659386,0.00138891,0.870774,0.769506,0.00414753,0.92141,0.20367,0.323165,0.313184,0.985666,0.993079,0.380564,0.0375584,0.998756,0.759828,0.256429,0.0634723,0.0607141,0.191095,0.0844942,0.530006,0.39427,0.842123,0.0842378,0.160712,0.607051,0.331074,0.606049,0.791633,0.326918,0.776045,0.769833,0.376352,0.785754,0.562596,0.0560759,0.452457,0.579373,0.445677,0.121168,0.825366,0.527719,0.231753,0.629692,0.341057,0.329268,0.51483,0.685056,0.905306,0.0819193,0.683268,0.510049,0.486444,0.882272,0.920057,0.563257,0.975755,0.0601303,0.986364,0.262617,0.853209,0.864398,0.360755,0.401731,0.24739,0.1631,0.376939,0.168781,0.799801,0.295498,0.705011,0.699154,0.428467,0.313136,0.277839,0.324394,0.212155,0.26357,0.805449,0.770825,0.582446,0.538855,0.321723,0.454069,0.835243,0.824051,0.174805,0.705811,0.899676,0.614236,0.888135,0.408445,0.186877,0.476151,0.441824,0.186491,0.532139,0.486593,0.14335,0.397782,0.43658,0.257479,0.622638,0.130606,0.81193,0.608789,0.808027,0.278678,0.340168,0.804814,0.0804878,0.482883,0.345845,0.201412,0.424768,0.238213,0.75986,0.372228,0.853847,0.517355,0.174557,0.302871,0.101666,0.398184,0.645172,0.426557,0.443368,0.140143,0.25702,0.590213,0.705797,0.364192,0.765614,0.516603,0.0551216,0.102221,0.294573,0.278639,0.657433,0.182223,0.924462,0.783414,0.407692,0.647795,0.604178,0.759341,0.641455,0.412555,0.170324,0.20787,0.59167,0.0278906,0.260556,0.959581,0.643877,0.0967028,0.730979,0.354237,0.98387,0.656475,0.477094,0.478932,0.32045,0.846759,0.979262,0.46459,0.852076,0.290327,0.742521,0.800457,0.219131,0.644293,0.71473,0.0598559,0.753059,0.633701,0.65683,0.659346,0.92291,0.0545118,0.0725217,0.189379,0.126235,0.186013,0.09444,0.971748,0.743935,0.055245,0.134296,0.862433,0.938114,0.80483,0.212897,0.158577,0.0337317,0.174226,0.0642807,0.0355844,0.75787,0.188334,0.0784169,0.230065,0.72018,0.121738,0.149035,0.309965,0.682821,0.469489,0.269979,0.818643,0.508697,0.39762,0.96215,0.395582,0.851737,0.89014,0.808272,0.780312,0.357656,0.51452,0.084736,0.731269,0.694804,0.79472,0.894522,0.739344,0.126685,0.896697,0.502281,0.511127,0.223878,0.0575221,0.456629,0.0506198,0.682356,0.271703,0.806683,0.0780334,0.245033,0.261282,0.184322,0.27643,0.412972,0.0507527,0.216709,0.0245021,0.196003,0.862243,0.0780258,0.585626,0.667597,0.287924,0.170481,0.686115,0.160637,0.227301,0.560888,0.0607342,0.519841,0.146125,0.202118,0.443221,0.148363,0.236099,0.841353,0.776773,0.646439,0.15127,0.677654,0.0545838,0.311517,0.556941,0.805171,0.989764,0.919229,0.990932,0.704769,0.535387,0.571804,0.750616,0.479632,0.661572,0.0575066,0.109904,0.216416,0.441002,0.414802,0.0596103,0.394799,0.556164,0.535925,0.0131848,0.703833,0.0297304,0.158475,0.633633,0.20331,0.723563,0.471645,0.734718,0.544882,0.696445,0.199869,0.648944,0.861003,0.00596607,0.96073,0.514773,0.873939,0.236508,0.833796,0.0406886,0.0554082,0.370582,0.34376,0.842204,0.0201502,0.402166,0.409973,0.946644,0.35844,0.510819,0.05455,0.606003,0.394995,0.888681,0.812776,0.794816,0.0709424,0.204411,0.963072,0.288419,0.230494,0.680556,0.0698025,0.204621,0.832745,0.0490199,0.37099,0.181817,0.738691,0.0172709,0.257674,0.727897,0.231696,0.759089,0.323695,0.844245,0.638863,0.54965,0.79237,0.84414,0.163423,0.520027,0.331574,0.291461,0.672135,0.157001,0.550154,0.781172,0.326107,0.0245594,0.880149,0.991318,0.790285,0.493085,0.732141,0.90319,0.747501,0.854957,0.448478,0.473089,0.862053,0.247956,0.913196,0.424473,0.932778,0.438187,0.410877,0.0111309,0.94144,0.446762,0.0734211,0.0570371,0.121443,0.142826,0.155496,0.52348,0.0976173,0.9107,0.752365,0.0893914,0.143458,0.708372,0.425727,0.0256081,0.752997,0.517032,0.325778,0.0332831,0.43351,0.397374,0.220671,0.118336,0.201897,0.216157,0.433058,0.0646545,0.303246,0.612984,0.356769,0.662624,0.767319,0.863606,0.0402745,0.85142,0.629076,0.0436107,0.660582,0.132421,0.263755,0.560306,0.603317,0.890284,0.128756,0.976295,0.232392,0.0397559,0.382947,0.804439,0.625115,0.633942,0.577137,0.398232,0.737169,0.292326,0.797751,0.616908,0.179699,0.734305,0.848582,0.341302,0.709582,0.700953,0.337289,0.194071,0.676648,0.179157,0.157775,0.609717,0.916468,0.306043,0.221277,0.956086,0.509025,0.65663,0.747221,0.426369,0.921292,0.444463,0.834638,0.238234,0.821672,0.0395486,0.0143607,0.419897,0.813312,0.433907,0.0306548,0.576121,0.932818,0.670386,0.627687,0.14558,0.547409,0.701553,0.639099,0.966786,0.357881,0.316436,0.815392,0.342166,0.651247,0.312021,0.0168241,0.203181,0.672927,0.57283,0.919867,0.121143,0.512679,0.521509,0.102236,0.35539,0.688328,0.412926,0.490418,0.406561,0.359629,0.789031,0.208345,0.376129,0.793866,0.606218,0.663233,0.869143,0.865917,0.387976,0.428104,0.115388,0.137898,0.164755,0.447099,0.551184,0.944992,0.0194852,0.212713,0.967089,0.916472,0.00396556,0.809333,0.0629171,0.631145,0.0105657,0.310119,0.576981,0.16454,0.0965275,0.921483,0.265826,0.179531,0.531412,0.374475,0.156557,0.0967719,0.79885,0.68119,0.826533,0.21348,0.0507941,0.553308,0.467727,0.553967,0.0988328,0.633209,0.993958,0.438111,0.773402,0.0660655,0.132634,0.861746,0.603433,0.793343,0.00495416,0.661062,0.613126,0.785929,0.869902,0.584849,0.644416,0.215269,0.834562,0.719329,0.935901,0.860764,0.52046,0.151479,0.999865,0.443328,0.393376,0.961844,0.622179,0.709897,0.822191,0.68916,0.105387,0.209921,0.854698,0.670898,0.850666,0.800296,0.461695,0.803885,0.6535,0.714266,0.960742,0.409855,0.0413583,0.0466135,0.500399,0.00764817,0.0132659,0.494763,0.849673,0.783175,0.453284,0.0975381,0.414733,0.458785,0.579382,0.962771,0.207127,0.373159,0.833621,0.928801,0.315411,0.791939,0.637164,0.855313,0.262576,0.527056,0.685048,0.744417,0.278396,0.747359,0.201396,0.46114,0.126924,0.398363,0.182662,0.0968912,0.617644,0.803831,0.405208,0.699099,0.616343,0.681028,0.873147,0.0998483,0.372588,0.452501,0.136434,0.403531,0.166229,0.0371583,0.0332436,0.661951,0.5994,0.194227,0.793642,0.583297,0.971321,0.460748,0.760892,0.423301,0.463682,0.235243,0.888509,0.973107,0.511294,0.803916,0.168038,|0.294252,0.54091,0.989061,0.845376,0.950924,0.811284,0.553153,0.60045,0.0463734,0.51889,0.79183,0.850594,0.132006,0.458781,0.756412,0.809372,0.383525,0.497023,0.0219074,0.42237,0.272824,0.310385,0.00272661,0.418118,0.312221,0.142867,0.510315,0.416749,0.623877,0.164303,0.459947,0.646548,0.220098,0.103837,0.871935,0.777967,0.251574,0.765953,0.184419,0.14462,0.31242,0.201193,0.849741,0.8676,0.140057,0.940903,0.209724,0.750166,0.277199,0.824977,0.941848,0.91541,0.785354,0.401022,0.247514,0.467183,0.592804,0.594532,0.580683,0.597076,0.100289,0.864525,0.728984,0.469352,0.729888,0.374054,0.748965,0.270996,0.510699,0.168833,0.883174,0.848215,0.718612,0.496322,0.0369582,0.348449,0.837535,0.14766,0.115841,0.178281,0.434616,0.748437,0.996455,0.585972,0.595927,0.580181,0.376934,0.127365,0.438847,0.0220461,0.494835,0.588924,0.593178,0.702455,0.829256,0.191031,0.885699,0.86068,0.787206,0.0418546,0.861915,0.249558,0.494141,0.225822,0.885451,0.216293,0.660396,0.696597,0.691119,0.644038,0.780849,0.490876,0.666569,0.505904,0.420104,0.457198,0.376728,0.846725,0.897337,0.100547,0.0265898,0.292415,0.707465,0.672513,0.787573,0.712376,0.437485,0.719427,0.368119,0.39065,0.762099,0.678505,0.0952138,0.081325,0.357409,0.675108,0.414759,0.899663,0.575438,0.27529,0.520973,0.147269,0.369607,0.173448,0.791825,0.988782,0.694957,0.425406,0.936706,0.848052,0.931816,0.747208,0.10274,0.422998,0.807327,0.10116,0.443032,0.465226,0.0828367,0.125562,0.863693,0.00395155,0.221974,0.0236251,0.331814,0.726179,0.560442,0.905009,0.0677985,0.893241,0.601419,0.385734,0.920294,0.630732,0.162757,0.7335,0.922523,0.624914,0.496086,0.55849,0.740733,0.393688,0.16876,0.35862,0.00831318,0.00756824,0.0800577,0.408911,0.73172,0.781416,0.970204,0.998411,0.4782,0.164885,0.276721,0.862621,0.778336,0.440633,0.867211,0.694117,0.942245,0.301455,0.865372,0.3788,0.113836,0.168165,0.542478,0.997068,0.737206,0.574069,0.317823,0.368767,0.62324,0.556941,0.98134,0.568662,0.860484,0.983737,0.20569,0.0504328,0.448976,0.191778,0.643903,0.241794,0.640734,0.267988,0.736769,0.425851,0.153175,0.611801,0.863713,0.0431261,0.680213,0.851611,0.941996,0.237961,0.388425,0.453151,0.536779,0.398113,0.431536,0.321274,0.490836,0.0872719,0.0894818,0.243437,0.65987,0.300178,0.892086,0.240549,0.780699,0.536853,0.287175,0.404338,0.680529,0.0544792,0.115069,0.07905,0.522073,0.568231,0.592293,0.282869,0.251086,0.209376,0.215546,0.424288,0.33077,0.805664,0.169217,0.515865,0.636765,0.249966,0.355019,0.897652,0.477387,0.414988,0.289119,0.808814,0.97091,0.0462485,0.511483,0.857757,0.187202,0.586239,0.77972,0.405449,0.504115,0.27466,0.838013,0.35146,0.527511,0.903705,0.696958,0.873512,0.948984,0.0796553,0.753884,0.843148,0.387379,0.893126,0.278373,0.286324,0.821997,0.986757,0.286022,0.989496,0.860099,0.212954,0.526076,0.0481811,0.830836,0.929986,0.17752,0.568283,0.236093,0.762175,0.917432,0.303693,0.16499,0.393455,0.999236,0.246791,0.0199863,0.173252,0.228017,0.217619,0.660016,0.533943,0.431495,0.762764,0.278654,0.431419,0.143251,0.0264992,0.00845742,0.939573,0.204872,0.824427,0.525495,0.192497,0.683576,0.787445,0.414004,0.40049,0.508886,0.713932,0.394632,0.100532,0.546363,0.345461,0.306724,0.180506,0.254647,0.515772,0.0584946,0.687098,0.673388,0.937587,0.591723,0.401895,0.0159343,0.382972,0.856951,0.477596,0.0986608,0.52536,0.268069,0.570735,0.650571,0.651069,0.313122,0.434477,0.756002,0.649885,0.367565,0.407128,0.358859,0.865075,0.705201,0.973382,0.342207,0.117851,0.280154,0.662829,0.736246,0.975206,0.596512,0.74277,0.66373,0.525276,0.926121,0.973787,0.207524,0.779835,0.679324,0.255243,0.811746,0.433113,0.893209,0.282987,0.138995,0.389811,0.388717,0.716204,0.296779,0.282179,0.504093,0.179184,0.242682,0.0136822,0.720752,0.514039,0.584078,0.247246,0.658629,0.139139,0.212003,0.0930539,0.836393,0.331612,0.487918,0.816932,0.151756,0.462572,0.128208,0.727966,0.751013,0.934082,0.0208005,0.581295,0.214858,0.224276,0.850274,0.867938,0.752973,0.771613,0.957459,0.142772,0.88423,0.154146,0.704477,0.207101,0.0390103,0.501399,0.709967,0.447561,0.461799,0.206933,0.366898,0.568813,0.857775,0.582373,0.301595,0.276974,0.440851,0.85908,0.259501,0.0610516,0.215747,0.678267,0.071763,0.143637,0.435112,0.93983,0.0530796,0.652563,0.532028,0.646445,0.856446,0.837724,0.121297,0.357856,0.0659102,0.261057,0.421589,0.398403,0.912942,0.503541,0.833728,0.25218,0.769498,0.961972,0.263079,0.954028,0.435155,0.0210604,0.0687569,0.698706,0.470999,0.305414,0.302159,0.352055,0.654847,0.713537,0.302184,0.10118,0.814056,0.384508,0.087278,0.793309,0.395936,0.83053,0.906482,0.644023,0.259875,0.130189,0.357248,0.567807,0.0922307,0.106624,0.0279472,0.438375,0.780409,0.448338,0.133278,0.98055,0.0047105,0.408015,0.0272821,0.511716,0.49596,0.781181,0.298087,0.389092,0.759539,0.624499,0.295192,0.732341,0.480436,0.995518,0.600177,0.385243,0.359862,0.879593,0.0272505,0.80098,0.328887,0.493952,0.120597,0.925253,0.168959,0.907784,0.538541,0.387739,0.938052,0.785964,0.819158,0.653807,0.0207406,0.363868,0.180695,0.283894,0.209802,0.383957,0.142732,0.431128,0.719664,0.654249,0.0168949,0.290032,0.0589254,0.29114,0.50361,0.506278,0.197791,0.694841,0.00981194,0.875342,0.414989,0.0743197,0.0503539,0.263642,0.300275,0.0654774,0.82927,0.0149937,0.437261,0.0768388,0.781401,0.825435,0.154249,0.705641,0.605888,0.268559,0.175726,0.728683,0.495427,0.308444,0.48398,0.664747,0.0377926,0.107199,0.802667,0.682311,0.818461,0.55108,0.128466,0.265507,0.656439,0.0831994,0.719459,0.983428,0.718879,0.214188,0.857249,0.828618,0.286005,0.411573,0.65699,0.103414,0.386184,0.717213,0.906127,0.252497,0.172202,0.142002,0.384529,0.585907,0.859018,0.266642,0.318323,0.71834,0.681235,0.0570351,0.578084,0.410454,0.31172,0.446759,0.34491,0.81861,0.807576,0.127967,0.952026,0.754658,0.720158,0.100261,0.701006,0.737399,0.951745,0.407677,0.483366,0.601201,0.344456,0.838676,0.0289521,0.690137,0.265005,0.936433,0.489442,0.921394,0.877728,0.419599,0.762264,0.219589,0.944777,0.752946,0.251004,0.880451,0.0782645,0.169238,0.838257,0.568421,0.2175,0.0197629,0.213172,0.240176,0.945433,0.866807,0.948013,0.332276,0.341792,0.405146,0.538432,0.976729,0.451582,0.569315,0.331379,0.380507,0.516022,0.0833055,0.397155,0.572761,0.584731,0.100018,0.212871,0.493334,0.0749178,0.0776183,0.172554,0.872244,0.089181,0.0567543,0.604105,0.839456,0.394518,0.12936,0.569188,0.854103,0.887957,0.42652,0.578573,0.705425,0.454631,0.138888,0.426875,0.937049,0.241556,0.516618,0.436937,0.37676,0.731436,0.128123,0.982364,0.890473,0.210515,0.232684,0.907344,0.214508,0.892209,0.795281,0.902604,0.24823,0.513514,0.0513046,0.611607,0.768133,0.581693,0.455833,0.576525,0.908412,0.0374472,0.441532,0.270377,0.111494,0.270872,0.06372,0.129485,0.0601849,0.113454,0.893792,0.0751687,0.247388,0.28833,0.740396,0.121468,0.591583,0.927771,0.960322,0.57732,0.75154,0.408143,0.141041,0.424705,0.8474,0.79215,0.575757,0.43031,0.859449,0.646728,0.120104,0.98041,0.759697,0.379959,0.661162,0.163771,0.310629,0.895066,0.174712,0.0087415,0.564726,0.351328,0.483557,0.930394,0.0606272,0.981335,0.247499,0.163084,0.648422,0.886222,0.235983,0.625352,0.0163777,0.525527,0.314862,0.751919,0.426005,0.278202,0.132392,0.305133,0.962632,0.206383,0.964274,0.350804,0.532516,0.374986,0.251964,0.261936,0.917278,0.410344,0.85087,0.312902,0.279402,0.660855,0.718852,0.405088,0.0504193,0.0319218,0.677698,0.156166,0.921082,0.873901,0.834851,0.0214762,0.535581,0.105485,0.422535,0.176077,0.885142,0.827843,0.707529,0.833836,0.268735,0.486317,0.0557772,0.784994,0.911828,0.243179,0.914192,0.849336,0.162678,0.387908,0.947339,0.84058,0.815287,0.721938,0.155622,0.970015,0.861175,0.389922,0.3465,0.595683,0.864273,0.697049,0.629415,0.866554,0.770292,0.341636,0.979902,0.806856,0.904302,0.829024,0.0131994,0.873197,0.204523,0.0713698,0.636156,0.649996,0.0516488,0.247828,0.106493,0.424541,0.955394,0.0799888,0.686352,0.0135649,0.470042,0.905023,0.893593,0.64431,0.169097,0.299965,0.758741,0.315422,0.878077,0.787,0.116814,0.982493,0.264845,0.261272,0.523283,0.781105,0.871675,0.389793,0.231936,0.65457,0.418076,0.0014509,0.185876,0.804517,0.0823158,0.0569547,0.231371,0.816884,0.449561,0.615038,0.340751,0.232316,0.92547,0.505263,0.100994,0.495681,0.750119,0.128208,0.576523,0.0563726,0.221321,0.995297,0.044867,0.987429,0.237624,0.28352,0.233788,0.407049,0.326545,0.792234,0.590233,0.694992,0.620205,0.735703,0.534474,0.413197,0.228903,0.068667,0.397418,0.383871,0.484163,0.270902,0.755001,0.963324,0.0621712,0.754694,0.770395,0.998969,0.525207,0.14475,0.0844555,0.369434,0.418027,0.0489795,0.524487,0.687829,0.255488,0.7904,0.105925,0.0335919,0.614342,0.635917,0.934344,0.0336038,0.183574,0.441524,0.188698,0.84715,0.5217,0.992876,0.350445,0.146954,0.566233,0.811388,0.272225,0.639196,0.650718,0.104653,0.738182,0.701035,0.717816,0.417141,0.478036,0.928579,0.538914,0.651316,0.137232,0.217904,0.841129,0.644964,0.341143,0.0982013,0.887983,0.2612,0.0663129,0.523686,0.704357,0.532987,0.652478,0.721543,0.900074,0.879625,0.209068,0.00355852,0.340749,0.594953,0.40697,0.742435,0.850098,0.104504,0.327161,0.968809,0.985654,0.147386,0.240947,|0.968986,0.779115,0.113194,0.46794,0.869819,0.878694,0.892137,0.407509,0.25399,0.707565,0.426498,0.0927629,0.218085,0.523765,0.628567,0.346431,0.519263,0.503114,0.609979,0.289224,0.174654,0.944847,0.0155935,0.197959,0.907229,0.322011,0.406336,0.512022,0.264378,0.835904,0.956561,0.205351,0.879774,0.728708,0.532715,0.649767,0.902103,0.501507,0.432138,0.207738,0.836756,0.906108,0.85794,0.71934,0.992148,0.0570425,0.23475,0.0876591,0.132031,0.797036,0.201995,0.412794,0.155724,0.780829,0.270117,0.43014,0.46529,0.596315,0.510705,0.542419,0.158092,0.252668,0.319072,0.0501249,0.0210784,0.116387,0.888821,0.679726,0.618358,0.382553,0.159858,0.432747,0.342885,0.337158,0.378181,0.975944,0.321487,0.626884,0.185734,0.0121253,0.0622307,0.221604,0.115195,0.969204,0.458291,0.376711,0.738654,0.77278,0.725096,0.099758,0.808302,0.0399607,0.269699,0.0607149,0.661802,0.733147,0.856847,0.0801595,0.825767,0.499717,0.00379431,0.140607,0.403415,0.413421,0.322734,0.596999,0.4568,0.597806,0.919256,0.991895,0.695572,0.532714,0.857645,0.37216,0.920304,0.83203,0.833096,0.366981,0.501044,0.398872,0.230614,0.679011,0.753742,0.359188,0.277187,0.784578,0.192941,0.982118,0.454022,0.0393663,0.914137,0.387963,0.0333361,0.0495199,0.543296,0.0841247,0.209353,0.625511,0.467312,0.890068,0.852251,0.0146158,0.312491,0.215487,0.657767,0.754347,0.790545,0.72948,0.62774,0.743423,0.85227,0.305084,0.62647,0.30505,0.867337,0.711323,0.234837,0.872226,0.339566,0.390634,0.00954217,0.311879,0.0975208,0.87575,0.880824,0.921487,0.554502,0.524461,0.986145,0.327302,0.293527,0.940639,0.454339,0.78173,0.913476,0.970623,0.963983,0.348129,0.342479,0.43732,0.363891,0.213791,0.606881,0.364764,0.380533,0.380226,0.486509,0.70516,0.475181,0.453465,0.359418,0.705028,0.909513,0.471305,0.124371,0.709717,0.393191,0.695949,0.172643,0.918697,0.569654,0.599817,0.308325,0.0729307,0.73403,0.569621,0.729113,0.0845684,0.276693,0.675375,0.220418,0.059003,0.0689617,0.11639,0.248737,0.592706,0.273714,0.447762,0.50153,0.235627,0.945802,0.830264,0.783215,0.242568,0.0440174,0.0376934,0.145048,0.0055427,0.624549,0.264852,0.464595,0.143967,0.707047,0.239123,0.817116,0.995298,0.567776,0.809806,0.268383,0.854912,0.232593,0.662595,0.456556,0.195309,0.409422,0.721137,0.244981,0.914679,0.892425,0.580514,0.134951,0.69145,0.166305,0.547251,0.243585,0.458986,0.254149,0.344249,0.114806,0.985035,0.787771,0.898355,0.327553,0.0275893,0.711221,0.0311371,0.13921,0.968147,0.364598,0.175903,0.813785,0.221384,0.627129,0.322289,0.828729,0.270338,0.217617,0.394109,0.738033,0.381245,0.291253,0.642207,0.188442,0.948141,0.83688,0.579026,0.0635029,0.690157,0.394143,0.145569,0.12111,0.863717,0.561721,0.983219,0.9411,0.514134,0.725077,0.844323,0.365505,0.99422,0.637287,0.995672,0.519855,0.403482,0.318285,0.186292,0.569687,0.296376,0.336194,0.471019,0.0950875,0.71924,0.59355,0.484996,0.0470909,0.781308,0.183523,0.262786,0.452571,0.344175,0.281897,0.761731,0.739399,0.974151,0.451239,0.809772,0.503617,0.906413,0.768373,0.225742,0.584327,0.529201,0.240774,0.853569,0.368399,0.250833,0.524729,0.377625,0.544111,0.72402,0.491083,0.445364,0.0143982,0.505771,0.241683,0.727122,0.830759,0.0196001,0.542792,0.228237,0.093664,0.264298,0.134707,0.715714,0.482653,0.660539,0.309186,0.739538,0.709949,0.176146,0.342919,0.206273,0.488497,0.926932,0.345738,0.179613,0.0965884,0.912956,0.813667,0.621891,0.540538,0.120361,0.0333269,0.888279,0.880293,0.533556,0.616066,0.426932,0.286576,0.186792,0.985967,0.197553,0.219105,0.806408,0.524537,0.178188,0.213931,0.495048,0.740501,0.214126,0.109585,0.862012,0.246069,0.740997,0.071122,0.0623409,0.972305,0.425677,0.463625,0.0457378,0.052955,0.69137,0.00157303,0.156229,0.976312,0.422803,0.361009,0.619909,0.684092,0.918144,0.19624,0.226027,0.12226,0.755575,0.747088,0.307955,0.164156,0.407104,0.0665511,0.754388,0.298952,0.314478,0.100388,0.772725,0.446423,0.995065,0.380299,0.0181992,0.738918,0.814504,0.796863,0.337595,0.117934,0.389125,0.214188,0.927724,0.876904,0.913736,0.662909,0.370684,0.223623,0.47194,0.238903,0.200224,0.365674,0.957964,0.736905,0.874462,0.210085,0.248584,0.714689,0.119436,0.24189,0.994602,0.658198,0.0829998,0.203953,0.777763,0.819937,0.877597,0.7251,0.85629,0.277088,0.416118,0.559156,0.858985,0.0421295,0.744886,0.996559,0.637968,0.885116,0.305186,0.439519,0.604475,0.635917,0.731927,0.719686,0.764565,0.733642,0.158974,0.915075,0.0305178,0.779447,0.743886,0.308403,0.539822,0.290486,0.314449,0.660689,0.588964,0.659032,0.695978,0.618962,0.342501,0.587638,0.28397,0.813292,0.233524,0.659383,0.0122264,0.00063467,0.0293119,0.0613812,0.023521,0.416739,0.387655,0.350864,0.526193,0.581566,0.024892,0.865018,0.0174443,0.0237483,0.989274,0.308353,0.718827,0.876348,0.0568134,0.412882,0.0729577,0.607665,0.199155,0.0777152,0.00867939,0.626829,0.884185,0.430658,0.245598,0.106937,0.598601,0.861148,0.574322,0.305855,0.584921,0.662459,0.926718,0.193621,0.121776,0.0981843,0.715525,0.668055,0.446476,0.319682,0.271538,0.268224,0.330053,0.196703,0.988756,0.272548,0.553234,0.747179,0.376875,0.203805,0.72995,0.963562,0.109773,0.823449,0.703093,0.165837,0.215534,0.640928,0.505618,0.822701,0.867393,0.943065,0.330787,0.209629,0.221982,0.41959,0.258219,0.795265,0.197786,0.54382,0.0201299,0.552904,0.812333,0.806528,0.737274,0.152929,0.716857,0.366921,0.666359,0.78906,0.638529,0.425655,0.475951,0.463561,0.248472,0.982935,0.901703,0.779718,0.901428,0.864538,0.219185,0.252646,0.0590507,0.619911,0.943637,0.366796,0.53536,0.30712,0.126173,0.382313,0.144683,0.314587,0.938598,0.682533,0.555892,0.314386,0.0851628,0.813067,0.890969,0.893156,0.536546,0.101343,0.279211,0.355087,0.789807,0.383995,0.581491,0.0957481,0.147264,0.947348,0.0803871,0.311805,0.846374,0.211749,0.819963,0.355668,0.10345,0.476888,0.588044,0.30793,0.912697,0.752653,0.0905926,0.134878,0.868848,0.586444,0.875003,0.821991,0.530156,0.346394,0.499266,0.0255148,0.454828,0.329986,0.180805,0.102557,0.214522,0.636524,0.35359,0.565201,0.972394,0.660538,0.209339,0.674162,0.456331,0.496071,0.831857,0.894022,0.931065,0.134399,0.403151,0.186092,0.92024,0.150239,0.253055,0.659424,0.389477,0.923663,0.0152107,0.424563,0.567606,0.40382,0.663057,0.546684,0.174586,0.500341,0.310279,0.839519,0.252536,0.16474,0.0758918,0.469903,0.584424,0.00299132,0.648673,0.396277,0.542217,0.600579,0.519903,0.0634193,0.830263,0.392484,0.603437,0.509927,0.339017,0.240384,0.0331827,0.0214739,0.367413,0.535871,0.120986,0.61051,0.0878205,0.941081,0.487085,0.213575,0.742096,0.351467,0.505272,0.0227493,0.45859,0.102324,0.618457,0.0548556,0.856261,0.908083,0.432475,0.334849,0.976046,0.252983,0.845551,0.905173,0.0726008,0.0161232,0.415578,0.8005,0.13466,0.609301,0.144998,0.91159,0.852825,0.0995774,0.41586,0.0202649,0.61558,0.0620315,0.323508,0.41389,0.60294,0.458832,0.101264,0.769011,0.0115675,0.550364,0.148924,0.129921,0.933064,0.784977,0.422733,0.0813887,0.875477,0.0916862,0.366317,0.528172,0.353237,0.978817,0.0188922,0.76666,0.867557,0.283254,0.566971,0.0724694,0.48948,0.0432998,0.444378,0.78401,0.193107,0.656393,0.338293,0.520142,0.427099,0.0699803,0.914505,0.65493,0.492881,0.581065,0.669494,0.670044,0.193195,0.332477,0.373506,0.874787,0.690985,0.0178366,0.850671,0.283324,0.797115,0.887265,0.0626301,0.786838,0.935476,0.180899,0.13048,0.103252,0.358307,0.872752,0.0596296,0.640696,0.149991,0.99136,0.681739,0.192049,0.238343,0.228774,0.546057,0.508499,0.381942,0.683968,0.47752,0.509186,0.993278,0.11906,0.330597,0.212423,0.593636,0.827736,0.761564,0.89322,0.964557,0.120018,0.579529,0.063226,0.382146,0.288902,0.234928,0.922095,0.577489,0.73552,0.0249152,0.500254,0.67336,0.302403,0.989747,0.401162,0.58048,0.967756,0.592139,0.56185,0.508661,0.294824,0.739072,0.927326,0.243097,0.189311,0.523458,0.411873,0.645382,0.931631,0.687269,0.986775,0.661369,0.298811,0.891687,0.787918,0.479901,0.0902761,0.980224,0.155817,0.0331522,0.385352,0.101158,0.0521179,0.185493,0.898355,0.202406,0.0126863,0.455165,0.939592,0.518928,0.66061,0.131585,0.489576,0.52793,0.0608469,0.383679,0.117646,0.993438,0.514198,0.574,0.457188,0.564153,0.154917,0.0753899,0.726697,0.310548,0.711427,0.748602,0.651918,0.783454,0.439354,0.926712,0.3522,0.609562,0.78532,0.156049,0.236146,0.582021,0.15422,0.301419,0.806545,0.207887,0.265039,0.304601,0.272905,0.252716,0.49401,0.878328,0.201777,0.980018,0.474691,0.881846,0.238724,0.543085,0.926148,0.388033,0.458367,0.129866,0.452237,0.57789,0.0755672,0.123444,0.461646,0.845869,0.39535,0.0287409,0.592801,0.304239,0.883289,0.789976,0.61549,0.127555,0.544096,0.19856,0.528033,0.351523,0.14007,0.113492,0.472034,0.433486,0.259453,0.676588,0.895333,0.196,0.258271,0.900503,0.753496,0.475945,0.50861,0.574205,0.497962,0.975318,0.191457,0.978156,0.898013,0.342217,0.518115,0.871037,0.615621,0.0200593,0.985908,0.650183,0.783476,0.360089,0.920103,0.151148,0.849368,0.0617154,0.334274,0.994141,0.325839,0.191027,0.844664,0.14259,0.0886418,0.956429,0.630922,0.709054,0.600911,0.526052,0.0885726,0.272067,0.743102,0.509349,0.472119,0.269741,0.281073,0.059635,0.650581,0.0868747,0.766769,0.050414,0.498807,0.157708,0.701278,0.125118,0.685984,0.275381,|0.0822513,0.978557,0.459614,0.552881,0.564567,0.687137,0.241197,0.591375,0.720447,0.0174847,0.549672,0.868769,0.66913,0.606798,0.871604,0.092725,0.557147,0.236112,0.0851923,0.154821,0.537645,0.822544,0.206116,0.501372,0.32786,0.894478,0.319908,0.809816,0.135214,0.094717,0.773813,0.78294,0.157136,0.90292,0.797431,0.310637,0.870217,0.524671,0.221476,0.705206,0.546797,0.308939,0.467724,0.0614517,0.409237,0.857151,0.119098,0.606292,0.2468,0.94386,0.738606,0.259822,0.211298,0.396165,0.127443,0.30644,0.205125,0.518656,0.836965,0.40288,0.745541,0.00752783,0.528317,0.051034,0.484223,0.0451108,0.696983,0.524859,0.478561,0.660905,0.462941,0.608895,0.64122,0.879294,0.802072,0.367369,0.454808,0.132076,0.526901,0.685141,0.429552,0.755092,0.374584,0.157015,0.0170665,0.675155,0.0603181,0.338946,0.637883,0.549325,0.334678,0.157248,0.213201,0.749213,0.405701,0.89622,0.588591,0.0658582,0.802246,0.312091,0.330738,0.26225,0.995705,0.727613,0.761481,0.872316,0.459951,0.293133,0.84537,0.7146,0.645719,0.95004,0.696262,0.0701261,0.778264,0.388981,0.502175,0.0206686,0.131043,0.268105,0.528155,0.672729,0.327158,0.488899,0.886347,0.730548,0.284171,0.401256,0.28567,0.154622,0.553959,0.323717,0.0612206,0.409697,0.905956,0.252156,0.094743,0.615031,0.679881,0.63777,0.785198,0.698694,0.70529,0.286225,0.217034,0.95493,0.122163,0.980208,0.216751,0.921062,0.329733,0.202895,0.86646,0.00500906,0.337751,0.327183,0.627978,0.915223,0.629101,0.763933,0.106117,0.85147,0.495809,0.173119,0.295428,0.776495,0.000648439,0.729215,0.497282,0.843345,0.942966,0.235974,0.123956,0.577557,0.401603,0.524628,0.80708,0.0833194,0.59227,0.678995,0.879953,0.968914,0.699884,0.709442,0.582697,0.237097,0.459175,0.574544,0.253823,0.871408,0.574394,0.861483,0.319044,0.524752,0.312484,0.389527,0.939443,0.13894,0.449516,0.147276,0.305416,0.235024,0.444948,0.391571,0.597918,0.229702,0.389434,0.909057,0.986352,0.582968,0.992119,0.837993,0.498643,0.637984,0.0135452,0.842715,0.459041,0.800322,0.732728,0.349597,0.588359,0.653042,0.33166,0.00659841,0.634095,0.0614682,0.880116,0.0372065,0.85873,0.247679,0.561675,0.942511,0.0695442,0.429552,0.338889,0.429229,0.59791,0.695243,0.398245,0.0276164,0.0504069,0.965108,0.708772,0.772969,0.114916,0.569736,0.0836033,0.97516,0.396761,0.705014,0.69267,0.442789,0.934202,0.634935,0.377743,0.272306,0.91581,0.74509,0.221177,0.979788,0.10891,0.620238,0.000797033,0.852077,0.767052,0.175517,0.497252,0.00849199,0.425215,0.656601,0.843869,0.204568,0.833419,0.553585,0.425126,0.795705,0.625716,0.626534,0.803427,0.529061,0.549589,0.78316,0.442936,0.460119,0.206222,0.899082,0.54472,0.414644,0.310366,0.26453,0.830156,0.816359,0.187092,0.724601,0.464493,0.689608,0.403526,0.252049,0.763942,0.805504,0.777449,0.00432342,0.617166,0.809025,0.511159,0.530174,0.843058,0.619668,0.0978055,0.679689,0.527346,0.84937,0.894148,0.741343,0.351995,0.676214,0.279093,0.946754,0.70928,0.278807,0.908086,0.44246,0.612622,0.970747,0.459192,0.723145,0.81301,0.64832,0.27941,0.674579,0.144,0.362112,0.609093,0.325587,0.187137,0.584665,0.240753,0.996813,0.926216,0.305494,0.0391926,0.0956604,0.466799,0.155358,0.629807,0.202397,0.983025,0.352412,0.749979,0.874099,0.30564,0.685279,0.175549,0.647678,0.229057,0.195067,0.0624648,0.335574,0.586293,0.568794,0.221049,0.601346,0.677992,0.126448,0.81069,0.189729,0.031587,0.274262,0.433205,0.765122,0.122546,0.246455,0.696095,0.489259,0.448491,0.0309305,0.679267,0.337245,0.822779,0.351536,0.136646,0.796525,0.0536948,0.927378,0.935174,0.109215,0.459644,0.191791,0.0550155,0.136149,0.0954358,0.460184,0.30757,0.16329,0.332837,0.670111,0.866615,0.829187,0.241547,0.0748098,0.0316395,0.640274,0.443043,0.0578984,0.958456,0.432134,0.33764,0.772008,0.956623,0.928584,0.159734,0.334656,0.990257,0.51188,0.891626,0.96058,0.553745,0.387544,0.104857,0.831557,0.376321,0.560574,0.926636,0.435979,0.460156,0.730928,0.893533,0.775573,0.621486,0.0427441,0.19322,0.0698007,0.195441,0.745667,0.920175,0.517909,0.912546,0.301305,0.141405,0.56302,0.614601,0.36486,0.719176,0.354301,0.521708,0.324646,0.361812,0.800283,0.156911,0.478216,0.16073,0.38036,0.983739,0.353231,0.00681937,0.00762141,0.921017,0.452208,0.404619,0.748369,0.150417,0.0415716,0.844087,0.884675,0.345915,0.774429,0.778457,0.804249,0.242377,0.717194,0.962351,0.0433532,0.959693,0.651339,0.808775,0.912689,0.78345,0.326989,0.925656,0.999312,0.801528,0.685286,0.000470698,0.463282,0.0966876,0.046766,0.880997,0.54953,0.512311,0.00225013,0.116619,0.650374,0.663471,0.705814,0.227999,0.466198,0.5196,0.990319,0.0394476,0.482113,0.164484,0.508896,0.49481,0.225039,0.800465,0.00205976,0.54425,0.0715648,0.311449,0.970133,0.257522,0.548673,0.452311,0.364893,0.0163986,0.646485,0.94986,0.208644,0.395281,0.875249,0.108687,0.0911573,0.511415,0.798454,0.175694,0.853313,0.0183374,0.980024,0.309283,0.719543,0.516308,0.600727,0.877908,0.488638,0.099983,0.711792,0.895674,0.683651,0.620955,0.398723,0.422757,0.0170736,0.685094,0.648068,0.0394361,0.401203,0.0863532,0.430628,0.624329,0.818446,0.719034,0.759359,0.649789,0.15947,0.686597,0.699351,0.638022,0.323102,0.370545,0.193307,0.866609,0.63056,0.462625,0.634573,0.20243,0.137473,0.209832,0.0835955,0.387192,0.449033,0.909245,0.946462,0.365837,0.364657,0.143197,0.474913,0.0363935,0.816694,0.793472,0.59483,0.978258,0.0181582,0.241877,0.721898,0.643809,0.172937,0.646015,0.746149,0.610812,0.714251,0.046076,0.86821,0.0094974,0.813586,0.781733,0.717729,0.687884,0.54497,0.887246,0.904807,0.12432,0.0714982,0.839901,0.481085,0.841609,0.561582,0.789348,0.422418,0.13136,0.269565,0.675202,0.307294,0.378076,0.936686,0.340307,0.422653,0.621798,0.277864,0.528177,0.26154,0.880213,0.397158,0.223479,0.321928,0.331925,0.896271,0.0937416,0.0710019,0.400184,0.666335,0.23826,0.479425,0.650632,0.00576705,0.123128,0.868066,0.156239,0.551115,0.564313,0.700362,0.0187806,0.828403,0.550888,0.0344126,0.0806926,0.0106322,0.609665,0.288131,0.187054,0.356933,0.504285,0.731652,0.883572,0.604234,0.770418,0.83183,0.153589,0.484171,0.231793,0.272271,0.644842,0.143001,0.464256,0.351781,0.0573434,0.401936,0.585029,0.668908,0.628655,0.402751,0.209991,0.446715,0.580436,0.389336,0.409034,0.6196,0.263028,0.598834,0.532844,0.865177,0.104355,0.6368,0.113229,0.886524,0.539344,0.307737,0.628153,0.961623,0.0903952,0.881973,0.813692,0.824782,0.414524,0.126399,0.376296,0.569574,0.178187,0.830339,0.49778,0.744447,0.716344,0.79699,0.150215,0.643217,0.169532,0.51936,0.784908,0.115063,0.583358,0.0402175,0.0147452,0.118432,0.56173,0.061688,0.588219,0.750029,0.179948,0.433957,0.262006,0.483873,0.650139,0.398037,0.0426553,0.642415,0.0605173,0.379844,0.253629,0.0331957,0.689384,0.445906,0.573435,0.389955,0.626218,0.447165,0.146257,0.841288,0.180201,0.0491704,0.290468,0.854588,0.433066,0.847039,0.148274,0.754143,0.749667,0.381782,0.274722,0.903244,0.0821247,0.85426,0.954994,0.225138,0.382714,0.619398,0.0725459,0.0267444,0.958674,0.445439,0.746907,0.039923,0.568151,0.993915,0.769566,0.379186,0.712323,0.965864,0.82542,0.170253,0.685331,0.202505,0.192618,0.777918,0.570753,0.319976,0.0876492,0.902388,0.369432,0.100108,0.509066,0.250339,0.655895,0.382389,0.9146,0.050469,0.771363,0.560745,0.536256,0.380204,0.598055,0.375544,0.853605,0.592454,0.302929,0.641355,0.723859,0.726434,0.150289,0.594029,0.668559,0.386077,0.778168,0.094276,0.526314,0.467792,0.0773416,0.124998,0.612745,0.257277,0.661136,0.936303,0.159668,0.383366,0.72407,0.0932057,0.582822,0.260399,0.249085,0.00806487,0.858176,0.361324,0.943062,0.617983,0.444072,0.775515,0.0374171,0.0190902,0.212614,0.305453,0.941399,0.470073,0.273779,0.508417,0.997151,0.830112,0.503945,0.856352,0.621029,0.139025,0.922507,0.740359,0.319715,0.14641,0.718085,0.353952,0.54573,0.0878835,0.818649,0.990683,0.736771,0.935322,0.762084,0.198763,0.793801,0.263495,0.784561,0.125931,0.23991,0.172652,0.61977,0.558048,0.00270009,0.877682,0.124944,0.419628,0.489972,0.740575,0.445091,0.871953,0.673105,0.0729747,0.170413,0.427002,0.288665,0.597442,0.223522,0.0110524,0.797946,0.374874,0.339836,0.262306,0.398524,0.952411,0.386336,0.0821784,0.924319,0.306054,0.347451,0.219203,0.649387,0.630178,0.406609,0.431222,0.481084,0.534039,0.737441,0.0809226,0.0200781,0.771868,0.888167,0.154344,0.803363,0.319051,0.205487,0.239699,0.349382,0.124447,0.898554,0.0386575,0.314027,0.181962,0.50982,0.914262,0.175789,0.378044,0.11323,0.124389,0.119193,0.756821,0.00742942,0.120049,0.672911,0.0823068,0.500143,0.928761,0.0360197,0.125023,0.0386403,0.604503,0.388831,0.0592802,0.272334,0.714775,0.312447,0.996574,0.850261,0.373998,0.831952,0.355511,0.735903,0.589362,0.500855,0.654342,0.0964525,0.569158,0.244295,0.308335,0.574512,0.78134,0.241563,0.667867,0.342776,0.741224,0.296738,0.629883,0.699343,0.851043,0.53944,0.305954,0.877813,0.0743676,0.169737,0.330081,0.334547,0.972889,0.420233,0.583866,0.696601,0.791459,0.152697,0.984743,0.331724,0.715146,0.799708,0.794112,0.0263157,0.964156,0.751587,0.175632,0.594707,0.570274,0.714971,0.0327078,0.394153,0.400741,0.752891,0.649433,0.686683,0.675824,0.769661,0.167539,0.245285,0.462026,0.906242,0.316315,0.818246,0.155924,0.701396,0.883724,0.0225683,0.515514,|0.0702879,0.40053,0.979826,0.193108,0.0809159,0.075097,0.569839,0.500798,0.806749,0.618433,0.261919,0.77449,0.815664,0.413933,0.490298,0.6277,0.328747,0.771408,0.114602,0.780993,0.567224,0.0918596,0.41167,0.40981,0.0957692,0.112079,0.170384,0.203947,0.748328,0.908902,0.138428,0.467757,0.902568,0.637636,0.507088,0.435607,0.824362,0.32409,0.761204,0.759406,0.708931,0.244748,0.0796609,0.7514,0.257701,0.0316526,0.95911,0.728032,0.300251,0.35128,0.44898,0.221462,0.194444,0.704105,0.503801,0.0609624,0.806871,0.688755,0.270665,0.617509,0.113681,0.144927,0.458377,0.977933,0.90115,0.433915,0.244606,0.69073,0.605791,0.22019,0.360305,0.278537,0.628551,0.548903,0.690244,0.684959,0.334096,0.873717,0.444107,0.713368,0.526475,0.558437,0.638838,0.398917,0.0925506,0.169201,0.199607,0.931057,0.934724,0.448676,0.257049,0.804273,0.514306,0.229536,0.662175,0.0900394,0.96123,0.901357,0.0951066,0.599341,0.826634,0.644631,0.907247,0.124232,0.17062,0.600705,0.809379,0.964001,0.715587,0.463329,0.04272,0.957638,0.676343,0.514831,0.225852,0.0580572,0.106297,0.500105,0.0104732,0.621731,0.329174,0.841098,0.299094,0.327984,0.759434,0.222697,0.770467,0.229501,0.292182,0.587933,0.0331215,0.867232,0.35917,0.62117,0.836998,0.921158,0.820515,0.562793,0.0209335,0.974839,0.970693,0.680058,0.313103,0.0500918,0.784009,0.905637,0.988411,0.649029,0.161195,0.302215,0.700485,0.230987,0.560763,0.255568,0.96703,0.472128,0.0345466,0.188779,0.525503,0.726406,0.859796,0.627685,0.569137,0.698586,0.640304,0.406324,0.876867,0.989665,0.755873,0.439891,0.340801,0.336267,0.102896,0.613375,0.22495,0.467989,0.70577,0.895651,0.986736,0.131979,0.0861362,0.904176,0.342473,0.998635,0.563903,0.92547,0.925699,0.186108,0.0812654,0.849549,0.407012,0.765314,0.467592,0.0524461,0.864098,0.138505,0.860731,0.0364318,0.26679,0.281503,0.080188,0.558694,0.89472,0.719634,0.761211,0.288377,0.107976,0.632884,0.634344,0.479226,0.33166,0.853207,0.579981,0.251724,0.326028,0.48425,0.915637,0.485052,0.0228738,0.556276,0.897132,0.000651181,0.0945334,0.387889,0.203652,0.639233,0.708582,0.901219,0.957288,0.49873,0.254895,0.738282,0.306767,0.913641,0.642723,0.446492,0.519398,0.510344,0.935863,0.768829,0.257113,0.326136,0.161826,0.600321,0.488185,0.707697,0.175388,0.69925,0.981609,0.648972,0.982383,0.674069,0.097037,0.684309,0.452222,0.22259,0.830367,0.837205,0.941946,0.0913282,0.206775,0.764074,0.232997,0.215318,0.297429,0.546719,0.860533,0.511062,0.211744,0.0475997,0.968259,0.989893,0.672443,0.413838,0.516631,0.745929,0.196436,0.829062,0.17154,0.653659,0.443565,0.0227587,0.0440114,0.666868,0.681465,0.387022,0.123618,0.398687,0.721867,0.759427,0.605981,0.14731,0.323846,0.343432,0.0107557,0.637193,0.0894757,0.497246,0.996225,0.159477,0.882418,0.343377,0.398707,0.36521,0.489508,0.814881,0.970112,0.0297832,0.645654,0.788992,0.0437555,0.619182,0.707161,0.273757,0.750008,0.779807,0.428238,0.908369,0.239844,0.455097,0.410183,0.991179,0.813742,0.256011,0.9505,0.449824,0.743452,0.0230868,0.976954,0.882767,0.962981,0.36125,0.263448,0.538986,0.107278,0.305897,0.738048,0.994617,0.145116,0.14773,0.288965,0.8938,0.359344,0.642768,0.579334,0.34608,0.479793,0.847536,0.491556,0.923923,0.904405,0.72175,0.474545,0.430212,0.819473,0.678128,0.211821,0.648167,0.828049,0.669629,0.239063,0.881925,0.833982,0.0258804,0.239197,0.496188,0.19152,0.788945,0.508581,0.0418758,0.472134,0.001041,0.498576,0.211066,0.714533,0.543864,0.311454,0.993278,0.978443,0.542317,0.064756,0.848619,0.694693,0.427323,0.670906,0.813813,0.731988,0.821792,0.437998,0.454815,0.311535,0.950658,0.38857,0.756521,0.06759,0.278242,0.482855,0.195307,0.0805088,0.83541,0.560034,0.169938,0.959459,0.144573,0.00147635,0.0150515,0.914057,0.669781,0.844912,0.115637,0.772417,0.94897,0.190004,0.364766,0.639233,0.221555,0.529257,0.789288,0.0165064,0.160728,0.806524,0.0871154,0.690787,0.919121,0.695599,0.0979721,0.271298,0.670933,0.0294979,0.693427,0.164469,0.272891,0.178983,0.98514,0.973626,0.594585,0.827172,0.793809,0.804962,0.284397,0.23305,0.10273,0.435248,0.977739,0.496223,0.460955,0.262242,0.173346,0.787965,0.700539,0.266804,0.0977351,0.0547817,0.895727,0.714331,0.589679,0.262516,0.406887,0.629991,0.258897,0.0130986,0.933155,0.117933,0.0969185,0.792804,0.490864,0.404432,0.70065,0.294282,0.721302,0.490687,0.867191,0.39277,0.76044,0.966053,0.135759,0.647242,0.424994,0.311753,0.590554,0.577951,0.114863,0.826136,0.612573,0.365152,0.179433,0.576121,0.853175,0.228982,0.664908,0.386369,0.00650185,0.402605,0.279149,0.552422,0.719222,0.494129,0.161692,0.266421,0.514937,0.548464,0.872755,0.53078,0.242853,0.355173,0.821462,0.453445,0.615617,0.900844,0.505975,0.271642,0.146991,0.45231,0.212282,0.588291,0.812497,0.928442,0.994314,0.647639,0.864724,0.964816,0.88625,0.365176,0.496896,0.0955149,0.957492,0.542683,0.314034,0.888828,0.463674,0.598908,0.948898,0.168977,0.439506,0.684127,0.978835,0.462343,0.038112,0.890739,0.718862,0.624176,0.362968,0.727228,0.503087,0.749219,0.634863,0.0224424,0.0869628,0.470663,0.246126,0.895927,0.404502,0.832863,0.429979,0.792753,0.00174761,0.239561,0.579418,0.251142,0.720591,0.669453,0.204032,0.970807,0.0720217,0.808291,0.556167,0.422325,0.436324,0.373574,0.832134,0.692502,0.114967,0.485771,0.57608,0.385878,0.326361,0.0637448,0.251241,0.702769,0.39437,0.792688,0.694643,0.857854,0.385953,0.387353,0.106268,0.860781,0.68226,0.0450566,0.40353,0.337798,0.894919,0.878552,0.378914,0.652209,0.638447,0.871154,0.954417,0.133035,0.345826,0.433004,0.184723,0.415077,0.641411,0.771887,0.352247,0.817912,0.885159,0.966211,0.331856,0.310068,0.559613,0.346929,0.873645,0.0747722,0.460669,0.333717,0.525083,0.807428,0.0544775,0.933797,0.826225,0.0766822,0.26174,0.655667,0.681422,0.933948,0.411369,0.378352,0.575777,0.710754,0.0173417,0.237652,0.904421,0.877631,0.793059,0.0482463,0.696624,0.676644,0.522822,0.846064,0.609467,0.74863,0.90111,0.491222,0.429523,0.0505497,0.672997,0.855725,0.319665,0.66472,0.633471,0.857654,0.712771,0.830203,0.510098,0.053192,0.270373,0.0218655,0.706981,0.681446,0.396541,0.920028,0.0293598,0.492822,0.0791243,0.37012,0.803329,0.970408,0.828397,0.900099,0.858972,0.00379527,0.585341,0.453268,0.328349,0.683003,0.468945,0.842759,0.726,0.0782951,0.949507,0.236057,0.59536,0.13445,0.716398,0.935776,0.183122,0.715664,0.589324,0.589719,0.113107,0.557212,0.403351,0.499039,0.394755,0.59289,0.27127,0.924978,0.700213,0.561387,0.196403,0.796718,0.364254,0.914308,0.196585,0.347683,0.462196,0.97386,0.149302,0.618538,0.763143,0.737185,0.885065,0.102731,0.757063,0.726866,0.621578,0.423669,0.995595,0.724496,0.705959,0.799929,0.0188015,0.797735,0.114449,0.763783,0.0520266,0.524024,0.290703,0.438414,0.192579,0.120154,0.532191,0.309674,0.0318928,0.214699,0.99444,0.494096,0.136263,0.88655,0.00471932,0.11102,0.258641,0.210718,0.247625,0.953439,0.505257,0.872433,0.237739,0.889305,0.41478,0.544419,0.945338,0.196794,0.140467,0.183109,0.684312,0.556621,0.0450026,0.312581,0.175335,0.375989,0.803107,0.80668,0.327034,0.0662485,0.657243,0.887941,0.454122,0.0229251,0.0646818,0.50881,0.00910801,0.0942242,0.0018701,0.0422857,0.366415,0.940897,0.205913,0.258779,0.0950568,0.700894,0.441892,0.506438,0.557212,0.211258,0.795084,0.117727,0.518843,0.736533,0.0245107,0.052334,0.644624,0.00582385,0.230173,0.35778,0.981428,0.266807,0.74565,0.196553,0.0909137,0.483342,0.520999,0.636517,0.524458,0.475424,0.656882,0.589952,0.377402,0.322512,0.283285,0.692104,0.797283,0.727982,0.903068,0.591219,0.242572,0.990238,0.880669,0.0396145,0.447146,0.953535,0.289898,0.428682,0.927797,0.0805641,0.234476,0.947625,0.0767474,0.91883,0.0788645,0.638403,0.636199,0.432359,0.869024,0.54255,0.470028,0.890266,0.172702,0.487403,0.420265,0.449041,0.0236681,0.0198004,0.293373,0.535657,0.928937,0.70606,0.643815,0.995177,0.264964,0.351616,0.28004,0.0791469,0.167481,0.468287,0.134139,0.109573,0.210117,0.833138,0.454244,0.659533,0.883896,0.964511,0.342099,0.906379,0.981998,0.609136,0.822553,0.267635,0.0654821,0.537436,0.549818,0.484574,0.524585,0.98606,0.64938,0.742203,0.36886,0.480426,0.724807,0.137274,0.887783,0.968071,0.606718,0.21383,0.444894,0.466546,0.645407,0.348161,0.111054,0.397477,0.110197,0.118075,0.0403288,0.428318,0.357397,0.92352,0.105595,0.0159276,0.428688,0.986021,0.876487,0.565668,0.125575,0.658412,0.0983374,0.0606854,0.601329,0.553798,0.890469,0.668016,0.390751,0.197293,0.463482,0.823745,0.519428,0.160251,0.617066,0.929781,0.97468,0.810544,0.238738,0.217752,0.791173,0.691204,0.623744,0.00628281,0.938249,0.987555,0.917388,0.536352,0.771536,0.478997,0.933138,0.891718,0.878914,0.704986,0.28877,0.0172151,0.377624,0.110441,0.556566,0.285122,0.513036,0.8268,0.238675,0.144971,0.806302,0.863161,0.758789,0.436184,0.750202,0.675991,0.242879,0.908798,0.820988,0.108246,0.636476,0.990386,0.612314,0.652035,0.184445,0.028739,0.431089,0.850491,0.0735441,0.850193,0.293902,0.0269849,0.179937,0.6359,0.99546,0.704063,0.936337,0.556225,0.336325,0.149768,0.297154,0.952354,0.0398573,0.900853,0.481979,0.638367,0.733589,0.537927,0.53219,0.70229,0.177419,0.044358,0.598657,0.694773,0.229698,0.123934,0.724805,0.471718,0.652981,0.238833,0.442309,|0.856923,0.433096,0.618578,0.289972,0.350859,0.928566,0.223017,0.0569974,0.00434363,0.94016,0.143277,0.474853,0.532941,0.0580468,0.0906438,0.687184,0.108753,0.170211,0.271502,0.740417,0.912867,0.738524,0.175223,0.548792,0.641364,0.842013,0.31522,0.739336,0.64615,0.0227004,0.177817,0.136638,0.409468,0.386569,0.786383,0.816915,0.674471,0.0147852,0.807664,0.434781,0.0569828,0.0806251,0.526828,0.771146,0.778463,0.197118,0.56782,0.0929646,0.528905,0.618154,0.3739,0.831378,0.169289,0.72755,0.139125,0.969641,0.895491,0.952367,0.340394,0.240734,0.493656,0.547242,0.867306,0.318235,0.870265,0.815022,0.975352,0.917433,0.384399,0.98835,0.0637043,0.338699,0.302871,0.310739,0.693964,0.710245,0.187012,0.176658,0.0155135,0.81341,0.693775,0.633888,0.0344335,0.981026,0.653601,0.433811,0.578249,0.996285,0.880065,0.712406,0.887185,0.322845,0.793803,0.112328,0.68582,0.173046,0.639745,0.756638,0.316567,0.0927714,0.196007,0.661821,0.552474,0.762163,0.785173,0.149313,0.489199,0.577262,0.117938,0.202827,0.453407,0.382772,0.361928,0.797253,0.64272,0.10568,0.156773,0.428645,0.204513,0.448781,0.569302,0.0321525,0.906941,0.324118,0.197384,0.335388,0.665909,0.342387,0.58566,0.104852,0.705222,0.757153,0.00396287,0.586047,0.908091,0.171207,0.831021,0.804065,0.737858,0.841031,0.277489,0.552877,0.755968,0.342475,0.789347,0.90007,0.515334,0.91078,0.201123,0.768681,0.421725,0.134538,0.612904,0.773311,0.999115,0.450103,0.794909,0.739655,0.913041,0.241496,0.936849,0.838217,0.602159,0.0599577,0.719474,0.685163,0.729105,0.568646,0.854015,0.253385,0.355501,0.0663661,0.513456,0.213491,0.582047,0.631079,0.652218,0.820103,0.60017,0.756938,0.446911,0.110677,0.895348,0.81312,0.30972,0.221327,0.978639,0.400178,0.612755,0.182015,0.836219,0.792102,0.654004,0.891434,0.529572,0.661612,0.384942,0.686793,0.241863,0.746036,0.712109,0.649966,0.616723,0.076021,0.859317,0.52145,0.969529,0.208736,0.79958,0.785522,0.469012,0.494615,0.00566906,0.344926,0.195783,0.0910462,0.256243,0.277962,0.95025,0.176656,0.224306,0.696761,0.421962,0.8299,0.0304402,0.292318,0.716265,0.505866,0.110925,0.797753,0.80009,0.731274,0.696418,0.876868,0.593957,0.92132,0.547931,0.347723,0.351354,0.71676,0.209545,0.0898759,0.817779,0.795145,0.847697,0.617693,0.775336,0.0825933,0.145092,0.606993,0.0112507,0.063693,0.530685,0.741474,0.895009,0.767955,0.506415,0.233241,0.876064,0.104902,0.0274934,0.646765,0.741938,0.0150696,0.598983,0.989871,0.802002,0.534811,0.134256,0.391127,0.0269102,0.979796,0.604524,0.737132,0.576894,0.542216,0.414059,0.188378,0.321041,0.698329,0.0288551,0.180067,0.946782,0.627071,0.294553,0.713343,0.18846,0.696563,0.172395,0.0365623,0.218201,0.647349,0.16381,0.502366,0.768324,0.594413,0.307382,0.132059,0.90759,0.234129,0.60598,0.00275779,0.131704,0.644429,0.874038,0.815293,0.261824,0.277848,0.167104,0.348152,0.42657,0.153152,0.96963,0.361027,0.640855,0.562469,0.435789,0.349597,0.196782,0.646606,0.508038,0.66684,0.244409,0.266504,0.115431,0.393194,0.461472,0.830413,0.205044,0.548264,0.825496,0.110477,0.442439,0.761054,0.662129,0.626483,0.381524,0.801298,0.692302,0.0958156,0.211741,0.531416,0.676255,0.0162321,0.656389,0.38921,0.19031,0.504809,0.0644342,0.557088,0.140804,0.538375,0.356308,0.500861,0.285623,0.0404473,0.413506,0.964302,0.258763,0.447657,0.00863963,0.784281,0.0294856,0.330423,0.224822,0.938316,0.246529,0.231787,0.17696,0.161182,0.0564901,0.0406987,0.373043,0.788233,0.289763,0.788902,0.626613,0.320848,0.0581336,0.26956,0.393607,0.316329,0.798071,0.00215852,0.191242,0.163219,0.774494,0.516327,0.192542,0.378503,0.0971373,0.125129,0.557405,0.617808,0.934326,0.645191,0.233229,0.300118,0.588279,0.157421,0.919976,0.710835,0.346679,0.634591,0.684485,0.0948437,0.600495,0.438173,0.0520811,0.306566,0.884872,0.266048,0.85296,0.730358,0.748629,0.305334,0.493354,0.873207,0.679517,0.425364,0.82189,0.966779,0.0972486,0.733526,0.232351,0.884925,0.027892,0.807244,0.870334,0.201466,0.522031,0.6424,0.122832,0.0869931,0.571083,0.153465,0.474167,0.621827,0.519333,0.4936,0.551474,0.495366,0.538786,0.416427,0.76145,0.965325,0.691719,0.505299,0.629935,0.874805,0.0475779,0.16155,0.150976,0.498862,0.269927,0.993625,0.970839,0.45908,0.468654,0.374277,0.900523,0.976598,0.00625175,0.107892,0.866478,0.417843,0.350847,0.0825647,0.893824,0.489097,0.874473,0.084504,0.0301685,0.110649,0.869329,0.670594,0.319956,0.338719,0.091276,0.501365,0.799472,0.718852,0.58329,0.614576,0.348848,0.524595,0.748788,0.816888,0.475821,0.349131,0.888542,0.686293,0.104828,0.972115,0.396217,0.91001,0.448516,0.700878,0.52185,0.259082,0.70271,0.847311,0.579642,0.860222,0.123986,0.782933,0.000482917,0.467012,0.903803,0.555314,0.54833,0.55896,0.555595,0.404956,0.197307,0.461573,0.124034,0.560139,0.174963,0.864656,0.511971,0.119465,0.771639,0.0219013,0.227897,0.151545,0.16702,0.231065,0.0488461,0.656466,0.288309,0.964296,0.271352,0.134123,0.145035,0.300744,0.678498,0.799622,0.216154,0.676834,0.0704235,0.292711,0.392026,0.00583768,0.31401,0.0957697,0.789501,0.352835,0.596783,0.764091,0.575561,0.476529,0.619989,0.566611,0.609944,0.416135,0.263862,0.953749,0.51908,0.956274,0.711091,0.501297,0.496337,0.0617977,0.754724,0.624618,0.187716,0.615887,0.91327,0.440221,0.203427,0.662351,0.33255,0.405144,0.493082,0.839352,0.470514,0.0698174,0.0661331,0.653031,0.333842,0.898924,0.167547,0.987582,0.668557,0.841266,0.375101,0.544886,0.476096,0.74706,0.516051,0.197949,0.839126,0.649994,0.105102,0.917245,0.619992,0.867861,0.13071,0.0513811,0.743947,0.586058,0.354905,0.534239,0.64381,0.470822,0.453487,0.714328,0.522655,0.509163,0.585194,0.19134,0.734944,0.553998,0.781444,0.186829,0.343988,0.802451,0.62226,0.334955,0.25361,0.682285,0.241867,0.446142,0.283388,0.888095,0.13358,0.952841,0.462186,0.156965,0.522525,0.844874,0.565564,0.995646,0.413322,0.846786,0.162768,0.842133,0.010754,0.430574,0.951639,0.354443,0.216111,0.266239,0.64688,0.877105,0.949356,0.511024,0.191121,0.0104154,0.927453,0.962465,0.0156115,0.652227,0.88218,0.699177,0.341663,0.556747,0.594193,0.382219,0.299877,0.0203251,0.713332,0.0463609,0.992718,0.624186,0.688362,0.470404,0.854721,0.46584,0.730313,0.791261,0.981338,0.135562,0.100922,0.769288,0.960572,0.758057,0.536822,0.303146,0.310097,0.568481,0.269352,0.637333,0.50304,0.151974,0.643646,0.77105,0.999995,0.327607,0.432468,0.395403,0.128352,0.733855,0.697916,0.21946,0.0793777,0.911262,0.251416,0.741115,0.675406,0.130666,0.95254,0.534301,0.0192012,0.677849,0.287041,0.585944,0.84724,0.754094,0.560488,0.222308,0.00173658,0.268728,0.195911,0.931602,0.5385,0.999043,0.772797,0.904042,0.606554,0.609415,0.290753,0.654338,0.658901,0.864001,0.583169,0.0824038,0.0146679,0.215025,0.255383,0.513179,0.140766,0.783861,0.662669,0.103877,0.627566,0.130903,0.118826,0.430819,0.647414,0.865688,0.981108,0.1908,0.87799,0.764526,0.649962,0.298537,0.408418,0.348958,0.65486,0.196465,0.844607,0.0546886,0.109281,0.786855,0.965182,0.854231,0.769534,0.472218,0.797192,0.780871,0.0252389,0.233818,0.375098,0.391191,0.801988,0.194079,0.129779,0.910154,0.0840987,0.477132,0.395165,0.28925,0.397608,0.794693,0.68729,0.506395,0.423304,0.0916414,0.578507,0.390176,0.793289,0.492948,0.801027,0.357035,0.129349,0.0274502,0.984958,0.476971,0.444535,0.653136,0.165592,0.868915,0.174653,0.299611,0.71748,0.441821,0.903041,0.396948,0.783012,0.656303,0.379199,0.0782406,0.949245,0.884871,0.235377,0.130498,0.327877,0.790593,0.993321,0.807775,0.622697,0.629059,0.619818,0.886082,0.816561,0.647959,0.396366,0.375877,0.808194,0.0823339,0.500851,0.914317,0.535116,0.885918,0.796719,0.392545,0.391515,0.841433,0.636669,0.247534,0.0405114,0.490828,0.837633,0.815985,0.0637281,0.714721,0.923522,0.571533,0.421067,0.484893,0.947879,0.474363,0.848649,0.156589,0.202097,0.140815,0.872611,0.24085,0.917364,0.117704,0.218963,0.720348,0.538766,0.645083,0.902361,0.237041,0.0248886,0.843482,0.679064,0.417756,0.293772,0.962411,0.755149,0.789584,0.27153,0.488375,0.199069,0.229074,0.227021,0.304693,0.547931,0.045262,0.658929,0.91406,0.490429,0.328894,0.833337,0.608118,0.320159,0.246106,0.668603,0.408513,0.209124,0.804004,0.542574,0.119403,0.221771,0.0327771,0.351785,0.273,0.238972,0.14088,0.522243,0.947416,0.213998,0.220488,0.863339,0.337949,0.834514,0.12034,0.290663,0.809961,0.784649,0.328563,0.216776,0.00538146,0.178344,0.93015,0.110247,0.076978,0.204907,0.673331,0.65933,0.665399,0.237168,0.593283,0.585269,0.495965,0.807645,0.803761,0.385214,0.322124,0.0587423,0.464147,0.741766,0.226961,0.403339,0.737423,0.0218545,0.757817,0.299114,0.939587,0.459077,0.664696,0.98561,0.906061,0.12542,0.632925,0.60816,0.416182,0.200881,0.857982,0.545781,0.754031,0.869817,0.732456,0.0348507,0.670394,0.539756,0.884275,0.0873381,0.535568,0.0855043,0.783061,0.164147,0.331687,0.971467,0.944355,0.428021,0.840446,0.889755,0.0708814,0.508571,0.0890062,0.31188,0.147061,0.184813,0.35553,0.0719743,0.27834,0.53518,0.244718,0.903348,0.813925,0.291187,0.481156,0.846508,0.882609,0.637013,0.978729,0.0175632,0.260144,0.0367855,0.559685,0.367368,0.421892,0.185092,0.304113,0.513768,0.293034,0.0718513,0.0723001,0.426519,0.616825,0.846112,0.325892,0.199567,0.641555,|0.562469,0.526361,0.275416,0.7156,0.888594,0.0749683,0.800725,0.915462,0.135152,0.502057,0.579595,0.668639,0.735808,0.336695,0.937469,0.602695,0.632687,0.707523,0.511456,0.224459,0.17854,0.123575,0.687508,0.114287,0.275085,0.718311,0.616471,0.979534,0.679692,0.0521194,0.774251,0.677361,0.520201,0.172406,0.982718,0.447427,0.488999,0.634174,0.0229131,0.248737,0.967958,0.955484,0.385734,0.435271,0.699749,0.475625,0.671807,0.497423,0.968257,0.652739,0.430689,0.3097,0.982609,0.740662,0.825001,0.910224,0.590292,0.77569,0.457354,0.866187,0.207907,0.840518,0.723408,0.462732,0.890121,0.6694,0.2151,0.409066,0.774649,0.946221,0.36354,0.215333,0.977162,0.521055,0.546328,0.755516,0.709959,0.0987924,0.127131,0.0791808,0.665791,0.305583,0.975223,0.764623,0.651853,0.411934,0.475434,0.504936,0.832426,0.443283,0.316354,0.0189636,0.464642,0.788774,0.874303,0.910079,0.573332,0.284173,0.289629,0.797081,0.17943,0.337782,0.777321,0.854689,0.605766,0.00405735,0.0218036,0.207418,0.434052,0.230371,0.690382,0.706662,0.306955,0.47364,0.126049,0.993309,0.0195298,0.815342,0.364013,0.908047,0.517926,0.0821511,0.448017,0.802679,0.831656,0.180736,0.158657,0.529253,0.0356015,0.573451,0.825996,0.455664,0.041107,0.414705,0.502828,0.24742,0.0681185,0.636169,0.157681,0.090898,0.138713,0.43465,0.924934,0.989201,0.600601,0.468199,0.470008,0.286998,0.166573,0.0401751,0.888599,0.440723,0.172984,0.368216,0.421301,0.427565,0.0759727,0.0916762,0.631177,0.339088,0.127549,0.109652,0.337856,0.94312,0.834512,0.862525,0.473981,0.846861,0.585025,0.253135,0.825252,0.986095,0.445562,0.957372,0.432858,0.861552,0.0887969,0.266659,0.0875337,0.386263,0.69142,0.372651,0.828529,0.277828,0.287031,0.557011,0.807428,0.077982,0.550645,0.489161,0.122876,0.425597,0.794303,0.137542,0.85082,0.450555,0.272225,0.262984,0.131402,0.539901,0.532709,0.618579,0.0208002,0.134908,0.631859,0.275356,0.751235,0.158258,0.21359,0.319044,0.796431,0.443711,0.192022,0.198626,0.417923,0.951641,0.139181,0.868984,0.946826,0.337138,0.202746,0.881946,0.107202,0.163433,0.724571,0.263617,0.0246096,0.259345,0.69689,0.678644,0.911931,0.0165592,0.424134,0.283887,0.75657,0.761683,0.949045,0.695194,0.594577,0.0950876,0.328193,0.187862,0.0312724,0.00703883,0.0697712,0.437394,0.944631,0.199278,0.962568,0.104537,0.175121,0.144652,0.292774,0.344264,0.620347,0.709099,0.605976,0.453546,0.479998,0.0693282,0.449314,0.357176,0.000228822,0.628154,0.34234,0.466313,0.302593,0.66347,0.602648,0.190237,0.619967,0.20385,0.0281433,0.754936,0.488287,0.946883,0.793824,0.492815,0.0057559,0.870031,0.0979086,0.701897,0.848074,0.284016,0.323446,0.283908,0.613866,0.983707,0.947125,0.343333,0.0719424,0.922998,0.98565,0.619261,0.671958,0.305898,0.963911,0.118859,0.340017,0.116959,0.839588,0.588915,0.482703,0.144095,0.457241,0.410378,0.766075,0.872218,0.61965,0.852739,0.561446,0.540174,0.692866,0.548454,0.183074,0.185834,0.731123,0.612774,0.0604771,0.905035,0.0351707,0.329132,0.303257,0.974359,0.360819,0.44897,0.89279,0.258727,0.600367,0.200816,0.775174,0.499651,0.736408,0.897422,0.197516,0.638234,0.015532,0.0502972,0.224348,0.68014,0.808609,0.962689,0.55978,0.160865,0.457398,0.412465,0.745497,0.187632,0.392011,0.267027,0.539704,0.773843,0.172233,0.99698,0.740718,0.776249,0.698789,0.649703,0.927311,0.109248,0.19679,0.5892,0.984022,0.5269,0.260496,0.340331,0.97349,0.607631,0.565907,0.296418,0.186743,0.40277,0.683014,0.0882,0.553206,0.641127,0.412073,0.511241,0.781214,0.462445,0.910801,0.298104,0.387864,0.184635,0.00196946,0.171695,0.353186,0.266701,0.99432,0.293795,0.228384,0.622739,0.0349383,0.991346,0.103189,0.968877,0.556511,0.664465,0.506394,0.971211,0.0125175,0.196898,0.634855,0.210995,0.0571945,0.682892,0.00960708,0.66171,0.249518,0.212861,0.16193,0.493663,0.465723,0.839153,0.515934,0.945111,0.686323,0.0954434,0.51285,0.916962,0.792709,0.725899,0.895048,0.36767,0.581447,0.300656,0.14412,0.800573,0.344032,0.100491,0.284793,0.985681,0.309488,0.345794,0.560708,0.921412,0.47088,0.990875,0.521483,0.821116,0.71033,0.810656,0.10266,0.534897,0.757099,0.755025,0.912484,0.98866,0.621208,0.752275,0.5313,0.318057,0.522098,0.629212,0.990804,0.767398,0.0291687,0.0198988,0.634646,0.746816,0.837033,0.909049,0.142769,0.154934,0.220629,0.821319,0.663438,0.443295,0.791552,0.611342,0.970716,0.349238,0.515409,0.583272,0.75723,0.222191,0.998644,0.372912,0.689824,0.540855,0.808257,0.88574,0.529048,0.735294,0.799984,0.286665,0.60741,0.605966,0.41467,0.842317,0.107614,0.841406,0.0643739,0.728005,0.555315,0.017221,0.449668,0.289268,0.8535,0.988192,0.681928,0.087198,0.698633,0.430982,0.0558512,0.740422,0.352439,0.232298,0.827951,0.506386,0.080376,0.350752,0.209495,0.513615,0.826241,0.745222,0.125855,0.86518,0.938264,0.458681,0.900634,0.731149,0.903554,0.399362,0.582298,0.785549,0.406299,0.829488,0.498655,0.05533,0.480907,0.0826608,0.262195,0.554056,0.66423,0.00512195,0.726899,0.176562,0.238358,0.959271,0.364809,0.907533,0.454146,0.736756,0.0659048,0.52904,0.0948544,0.00112075,0.574566,0.97717,0.572072,0.772077,0.409759,0.713112,0.52407,0.815184,0.336947,0.44319,0.131779,0.548899,0.896671,0.842867,0.635947,0.119964,0.446891,0.259824,0.927829,0.698052,0.0989504,0.185497,0.0797306,0.905242,0.668161,0.78804,0.847046,0.157412,0.0596206,0.761467,0.271637,0.401112,0.444739,0.349603,0.818804,0.213632,0.194708,0.323204,0.568967,0.00776231,0.41894,0.483167,0.648455,0.626699,0.0112799,0.39168,0.0561445,0.207522,0.0587569,0.0859472,0.702792,0.386954,0.794427,0.282535,0.807185,0.505344,0.592899,0.830537,0.572994,0.716804,0.451075,0.409184,0.750346,0.205727,0.276303,0.264884,0.157553,0.259971,0.311006,0.689331,0.97312,0.870204,0.163001,0.328624,0.604004,0.186826,0.640375,0.549421,0.104849,0.431253,0.117957,0.6957,0.732959,0.06709,0.286073,0.21342,0.576617,0.760861,0.293136,0.173702,0.546639,0.994304,0.924019,0.510189,0.960043,0.921662,0.43193,0.748102,0.729925,0.106079,0.654618,0.350145,0.813933,0.408248,0.0243792,0.760427,0.0123705,0.961541,0.674682,0.00230777,0.155373,0.952943,0.904625,0.243157,0.795791,0.887399,0.586829,0.433446,0.429163,0.277578,0.108716,0.837812,0.874569,0.545603,0.60007,0.10851,0.300709,0.753447,0.795588,0.899148,0.703784,0.0105702,0.479283,0.707658,0.339453,0.578277,0.507894,0.970046,0.636709,0.182202,0.437672,0.135293,0.363054,0.172849,0.817291,0.293592,0.443055,0.981731,0.207384,0.240434,0.690561,0.892382,0.524047,0.283338,0.329134,0.253233,0.291787,0.218601,0.703132,0.590132,0.000973225,0.19979,0.8556,0.0708154,0.716408,0.520344,0.666207,0.705728,0.699318,0.969048,0.597231,0.588856,0.618182,0.581402,0.4283,0.107,0.815143,0.33341,0.281449,0.721535,0.415954,0.122058,0.570186,0.683341,0.510184,0.761608,0.555414,0.965072,0.449578,0.847272,0.728093,0.811021,0.242306,0.86463,0.331463,0.867542,0.727201,0.255524,0.96739,0.353149,0.909774,0.195391,0.25388,0.892591,0.560429,0.686805,0.576108,0.8748,0.198944,0.977347,0.697248,0.834859,0.612375,0.340458,0.431122,0.748153,0.201061,0.497262,0.095144,0.969886,0.0917534,0.683728,0.786764,0.414653,0.184749,0.974315,0.941229,0.602297,0.873308,0.29842,0.532786,0.548629,0.133813,0.24681,0.242139,0.483375,0.159187,0.704789,0.985668,0.574163,0.410264,0.26274,0.527123,0.799014,0.259758,0.0444577,0.860879,0.0263677,0.803124,0.477914,0.76393,0.873741,0.971808,0.111957,0.976573,0.114503,0.0790406,0.562468,0.493802,0.791306,0.223235,0.824674,0.707631,0.922068,0.749872,0.305605,0.052612,0.203408,0.126544,0.576563,0.153088,0.188148,0.895732,0.647305,0.959297,0.200509,0.441281,0.188782,0.26229,0.0327265,0.627943,0.031344,0.303989,0.636431,0.863388,0.0353196,0.629813,0.128295,0.388561,0.247826,0.311362,0.760918,0.132977,0.436146,0.670467,0.851299,0.802383,0.00873739,0.814265,0.0222068,0.987452,0.507302,0.688299,0.887992,0.17977,0.925968,0.752374,0.416702,0.38568,0.681729,0.335156,0.231638,0.454443,0.878776,0.668532,0.21884,0.13276,0.825405,0.27358,0.865347,0.383133,0.427868,0.148233,0.340308,0.722366,0.148111,0.357492,0.222572,0.512009,0.42329,0.433344,0.60777,0.101785,0.155197,0.364364,0.624603,0.649492,0.34608,0.7734,0.551702,0.32361,0.121552,0.669839,0.868772,0.638991,0.777568,0.5148,0.0249358,0.653175,0.496284,0.916466,0.903806,0.546151,0.827273,0.242751,0.169283,0.89087,0.93693,0.968402,0.0164089,0.17527,0.649614,0.612402,0.839181,0.0922108,0.243307,0.780071,0.124429,0.512667,0.714821,0.778321,0.0102989,0.793111,0.75846,0.383548,0.91925,0.25457,0.529162,0.819219,0.0303874,0.886699,0.286239,0.910508,0.866151,0.670151,0.301296,0.187221,0.276734,0.329091,0.803493,0.673747,0.21808,0.761444,0.816265,0.307851,0.985887,0.869276,0.563517,0.189739,0.205677,0.601119,0.576643,0.152985,0.156065,0.312884,0.666042,0.0139391,0.545252,0.656525,0.081663,0.330495,0.802498,0.32984,0.969061,0.445633,0.407493,0.0749589,0.507716,0.0397758,0.926351,0.697209,0.869596,0.827617,0.0471522,0.233244,0.998996,0.970601,0.961411,0.978866,0.848347,0.910118,0.620264,0.618569,0.235159,0.584001,0.130617,0.658694,0.93033,0.765343,0.152378,0.887464,0.961721,0.3089,0.487145,0.808204,0.826608,0.843526,0.744537,0.854998,0.810076,0.35589,0.834859,|0.396889,0.031388,0.571845,0.392082,0.819636,0.0374915,0.104732,0.83949,0.659273,0.89854,0.756525,0.048761,0.766792,0.764394,0.0759878,0.238155,0.480096,0.607407,0.591367,0.608104,0.220159,0.930994,0.071779,0.726688,0.380001,0.891068,0.627118,0.969683,0.929576,0.896751,0.303827,0.0247378,0.71517,0.583459,0.00343484,0.406008,0.0167419,0.327557,0.993129,0.05115,0.160008,0.490471,0.935559,0.227767,0.194498,0.15988,0.292161,0.59547,0.647416,0.922755,0.686379,0.641583,0.138938,0.93732,0.503015,0.291956,0.275345,0.159094,0.961468,0.563108,0.172855,0.996664,0.420077,0.803741,0.261434,0.720792,0.0744739,0.208534,0.951578,0.764737,0.00937968,0.184676,0.480001,0.292294,0.0645598,0.220739,0.768075,0.278696,0.581306,0.607719,0.350535,0.346514,0.546059,0.197947,0.737235,0.62362,0.323096,0.571654,0.0774144,0.622947,0.485632,0.54424,0.799282,0.462092,0.358451,0.474019,0.188191,0.658109,0.789987,0.541237,0.879995,0.668641,0.238095,0.886237,0.690969,0.364154,0.853478,0.558016,0.427599,0.816365,0.33003,0.431933,0.0332868,0.508536,0.398868,0.527081,0.290541,0.280004,0.233615,0.261103,0.134284,0.191032,0.586455,0.244697,0.624265,0.358082,0.626422,0.288406,0.702739,0.245384,0.677105,0.882422,0.57883,0.776533,0.864068,0.978071,0.823572,0.921136,0.508686,0.785455,0.803152,0.184421,0.33745,0.181715,0.637995,0.128837,0.073948,0.605729,0.572773,0.508136,0.673549,0.92439,0.174192,0.108187,0.62233,0.861509,0.517913,0.363269,0.483851,0.210595,0.808098,0.440132,0.97293,0.369084,0.194301,0.699053,0.0313435,0.862118,0.385116,0.950198,0.77173,0.630697,0.0923516,0.530565,0.241324,0.698157,0.509167,0.446839,0.755728,0.859566,0.134066,0.910873,0.0411027,0.598804,0.413684,0.0170298,0.0277861,0.507825,0.0878816,0.890876,0.187907,0.232179,0.310234,0.477425,0.982408,0.271921,0.877418,0.693187,0.999155,0.744125,0.287219,0.115297,0.828852,0.997506,0.0691443,0.0459871,0.312497,0.709918,0.523188,0.6145,0.14173,0.957466,0.55253,0.47028,0.361889,0.198087,0.904403,0.295817,0.493473,0.272389,0.876524,0.771616,0.569252,0.82113,0.776482,0.374649,0.431528,0.0364695,0.744246,0.331391,0.822012,0.801342,0.884582,0.875486,0.923304,0.95163,0.57659,0.747697,0.594076,0.838691,0.921382,0.742633,0.680255,0.363609,0.445665,0.685434,0.856231,0.126274,0.0794246,0.304233,0.698798,0.568572,0.025034,0.482746,0.33083,0.326574,0.63489,0.229467,0.261945,0.375992,0.160573,0.294989,0.288311,0.847929,0.386251,0.72263,0.667083,0.700856,0.844844,0.418696,0.49355,0.375353,0.885271,0.137905,0.270281,0.156839,0.859754,0.268979,0.403046,0.228129,0.257379,0.626274,0.606534,0.679842,0.274652,0.248174,0.159808,0.848885,0.455107,0.285547,0.999765,0.774146,0.117623,0.784208,0.0618765,0.778517,0.593664,0.27881,0.476876,0.56407,0.972966,0.740772,0.666035,0.166665,0.0128657,0.170499,0.706898,0.7682,0.817117,0.420684,0.964803,0.988333,0.743349,0.192708,0.571294,0.460424,0.936916,0.894858,0.923571,0.181264,0.629242,0.0250151,0.394898,0.874791,0.550791,0.828662,0.776761,0.305781,0.0051927,0.150525,0.793373,0.809144,0.755977,0.644265,0.696685,0.38466,0.317321,0.189527,0.458512,0.912238,0.319099,0.61635,0.575717,0.996303,0.233001,0.0501778,0.554358,0.166839,0.427551,0.816534,0.912194,0.024415,0.0651907,0.706245,0.717418,0.265352,0.374854,0.782856,0.282813,0.513402,0.190933,0.126445,0.944362,0.768973,0.754346,0.120212,0.471852,0.109328,0.0118443,0.76548,0.0716454,0.0446774,0.73973,0.714956,0.274806,0.551895,0.779139,0.623074,0.377262,0.126699,0.36675,0.0794016,0.0239205,0.53322,0.614803,0.447725,0.979642,0.0662014,0.190991,0.827647,0.533989,0.543456,0.0901996,0.453067,0.285961,0.974518,0.184378,0.99622,0.146452,0.919797,0.93934,0.919647,0.05998,0.764611,0.572588,0.188927,0.354587,0.313821,0.631622,0.908231,0.877445,0.586004,0.207615,0.741277,0.410303,0.329027,0.359238,0.375377,0.835117,0.644497,0.896181,0.400857,0.273313,0.286161,0.902341,0.583618,0.699153,0.859404,0.740129,0.207403,0.928392,0.575489,0.483491,0.431697,0.934744,0.34846,0.942801,0.158221,0.6911,0.784108,0.257771,0.101558,0.0189567,0.992806,0.862006,0.86893,0.527962,0.668904,0.375256,0.253132,0.844517,0.710451,0.484075,0.800949,0.383635,0.490324,0.378132,0.228136,0.432517,0.256271,0.0354041,0.898598,0.674033,0.643371,0.689889,0.381682,0.83284,0.729359,0.739447,0.920834,0.579917,0.121553,0.412124,0.846935,0.38878,0.703284,0.29492,0.400735,0.544785,0.831794,0.980299,0.547637,0.289549,0.986494,0.529378,0.97603,0.968901,0.444328,0.985003,0.110812,0.213573,0.412899,0.715376,0.804273,0.681068,0.90007,0.323462,0.837737,0.738429,0.643862,0.48501,0.676026,0.0121704,0.208436,0.0325297,0.613584,0.361688,0.784945,0.0964977,0.867993,0.748163,0.87747,0.683548,0.4088,0.0240303,0.00488883,0.173739,0.631412,0.129894,0.00920051,0.443701,0.160835,0.937954,0.354452,0.508587,0.66704,0.715185,0.550112,0.784931,0.328364,0.826545,0.593325,0.394141,0.315039,0.618281,0.842944,0.447168,0.0338039,0.569681,0.496927,0.556823,0.20386,0.679818,0.472836,0.340014,0.945627,0.490018,0.625828,0.30956,0.504156,0.244787,0.136248,0.537662,0.537355,0.505238,0.458319,0.63131,0.895136,0.607066,0.380283,0.32742,0.86691,0.454979,0.948251,0.765701,0.862645,0.497805,0.149591,0.124508,0.767228,0.0347362,0.131855,0.468215,0.0805882,0.536936,0.0293564,0.622174,0.68699,0.66824,0.625328,0.737234,0.3729,0.562952,0.814008,0.414082,0.992182,0.988216,0.0205548,0.650817,0.207487,0.227384,0.976113,0.674761,0.207373,0.579979,0.415801,0.505605,0.236678,0.862754,0.00403208,0.0147046,0.828815,0.258644,0.358132,0.48575,0.259203,0.238166,0.768566,0.653095,0.904457,0.894677,0.209432,0.469077,0.787625,0.749945,0.0705116,0.523394,0.205671,0.954488,0.935847,0.191381,0.770217,0.217147,0.898003,0.772646,0.593756,0.723362,0.368907,0.0506027,0.558467,0.601444,0.210036,0.0711604,0.153063,0.655935,0.0619016,0.486542,0.475251,0.837266,0.106844,0.00368446,0.938432,0.874874,0.0656177,0.707192,0.903746,0.280945,0.462175,0.151883,0.578917,0.375982,0.498464,0.258858,0.683856,0.371903,0.951277,0.475544,0.557325,0.493238,0.0453242,0.311534,0.0942707,0.930474,0.879149,0.36682,0.763817,0.991069,0.751465,0.0125998,0.358311,0.00680059,0.390079,0.996988,0.49765,0.511019,0.974723,0.07137,0.567437,0.288157,0.947261,0.466379,0.699939,0.437817,0.162705,0.56529,0.070399,0.897111,0.283601,0.196094,0.212343,0.872653,0.310274,0.709901,0.388776,0.502324,0.548165,0.790828,0.365987,0.905951,0.125336,0.035632,0.844338,0.401065,0.455445,0.351675,0.291692,0.469423,0.0362844,0.720597,0.534699,0.649649,0.56651,0.608585,0.805367,0.682427,0.729831,0.050671,0.420592,0.444367,0.940189,0.768608,0.418241,0.151251,0.473213,0.233412,0.64255,0.535356,0.599572,0.315593,0.828321,0.717874,0.815357,0.433469,0.50747,0.475933,0.618435,0.160711,0.0665318,0.534938,0.443873,0.347811,0.867961,0.744811,0.601219,0.742288,0.0836138,0.993215,0.0240929,0.446044,0.594905,0.467799,0.711376,0.362771,0.0431688,0.153104,0.802936,0.703409,0.0746258,0.943286,0.00244814,0.111688,0.120858,0.542622,0.975711,0.689997,0.460713,0.27336,0.726809,0.553635,0.472279,0.039916,0.217383,0.847393,0.176397,0.561568,0.422402,0.0107881,0.519746,0.817929,0.244935,0.0296121,0.894318,0.313203,0.728026,0.433437,0.80798,0.560148,0.699519,0.730459,0.469469,0.922259,0.782926,0.329467,0.480913,0.0402665,0.0513999,0.113028,0.539783,0.180901,0.652703,0.218856,0.320234,0.184985,0.622575,0.569206,0.979662,0.93497,0.581244,0.805937,0.671107,0.408414,0.13622,0.326506,0.768554,0.115942,0.983078,0.510847,0.840496,0.598844,0.61524,0.954485,0.260772,0.984718,0.698816,0.977907,0.105859,0.670768,0.868953,0.491416,0.78368,0.955966,0.376085,0.313663,0.677157,0.0747139,0.645455,0.487308,0.176071,0.113064,0.414268,0.430426,0.407291,0.0343145,0.466764,0.545771,0.807023,0.839505,0.779712,0.989911,0.0342649,0.342864,0.144023,0.11944,0.75798,0.549661,0.595208,0.895138,0.904288,0.173034,0.884208,0.325528,0.438964,0.12394,0.976983,0.80557,0.912728,0.141812,0.71865,0.328848,0.70407,0.769585,0.68312,0.35399,0.733769,0.971976,0.2903,0.155514,0.850457,0.90271,0.887258,0.958099,0.0301898,0.201818,0.444896,0.755441,0.0199866,0.831186,0.372101,0.727008,0.627138,0.369079,0.852452,0.87876,0.127892,0.0575578,0.125469,0.0220526,0.977028,0.764229,0.0702437,0.00851536,0.540153,0.41588,0.0508446,0.574489,0.647257,0.788441,0.331482,0.413446,0.319393,0.819831,0.0850379,0.268845,0.958797,0.831716,0.757616,0.565295,0.052448,0.891067,0.0134585,0.223522,0.296599,0.599037,0.688532,0.963454,0.391169,0.326583,0.635328,0.102392,0.577557,0.846406,0.625247,0.899919,0.541753,0.647802,0.800765,0.271326,0.376415,0.566514,0.453357,0.659358,0.0957763,0.440376,0.29108,0.578269,0.7005,0.00224394,0.481438,0.654649,0.284173,0.872127,0.666547,0.346071,0.0388125,0.974143,0.821463,0.611318,0.971154,0.142117,0.515662,0.564111,0.338756,0.019465,0.860252,0.145266,0.611454,0.0485552,0.613242,0.838278,0.684257,0.549307,0.0970761,0.596191,0.109907,0.765153,0.876921,0.764967,0.29673,0.21945,0.816662,0.159089,0.907975,0.557446,0.986157,0.35582,0.050193,0.301109,0.0798036,0.360964,0.839722,0.772048,0.867465,0.73252,0.417057,0.681685,0.843631,0.285304,0.194535,0.365641,0.216658,|0.770092,0.580769,0.0684801,0.463144,0.332799,0.656005,0.351918,0.555999,0.798636,0.456227,0.963964,0.557443,0.12812,0.507019,0.274777,0.113633,0.094536,0.0113727,0.999304,0.0928991,0.686255,0.758366,0.511405,0.765263,0.0619348,0.00414324,0.65919,0.417708,0.572396,0.632556,0.615764,0.733844,0.759164,0.271381,0.286945,0.536322,0.118065,0.846517,0.359608,0.0188299,0.749725,0.959341,0.522619,0.915363,0.0660244,0.404677,0.0193529,0.882004,0.398332,0.889958,0.508375,0.813665,0.672838,0.295785,0.13671,0.93555,0.910873,0.781551,0.847674,0.247108,0.658132,0.458951,0.419838,0.0270568,0.232531,0.434998,0.485478,0.99917,0.634871,0.0134547,0.953267,0.449036,0.102882,0.90256,0.0400974,0.69856,0.363594,0.934374,0.567043,0.34159,0.235175,0.141782,0.054336,0.914018,0.684475,0.160044,0.702582,0.188591,0.658946,0.088374,0.474415,0.518633,0.233519,0.671807,0.554325,0.842555,0.0812959,0.0830166,0.259952,0.985776,0.257912,0.739076,0.447735,0.463557,0.710441,0.287127,0.592288,0.307457,0.136784,0.972497,0.28058,0.881449,0.889215,0.34477,0.916114,0.239732,0.939568,0.067392,0.739225,0.917165,0.393753,0.360978,0.41255,0.958401,0.0493518,0.830968,0.0480459,0.0775782,0.0862336,0.82164,0.322397,0.652075,0.197855,0.163417,0.880493,0.975385,0.76836,0.979939,0.200111,0.342668,0.504349,0.911576,0.431239,0.547723,0.229207,0.843205,0.302878,0.442783,0.752409,0.405241,0.179589,0.674828,0.578166,0.854399,0.560765,0.700839,0.679124,0.674733,0.439462,0.75372,0.122218,0.0484855,0.0323474,0.415,0.863263,0.289642,0.0498584,0.670173,0.908494,0.425715,0.75092,0.616086,0.813007,0.485508,0.835734,0.448623,0.000482261,0.166211,0.644979,0.484868,0.777668,0.706136,0.860727,0.881186,0.378768,0.901339,0.961444,0.963133,0.601499,0.891157,0.7006,0.0962915,0.490508,0.989787,0.97037,0.460604,0.0813516,0.0982472,0.305239,0.743141,0.820069,0.547213,0.414705,0.261508,0.759033,0.980939,0.639444,0.925073,0.662894,0.0119417,0.112745,0.168449,0.381829,0.94702,0.255897,0.848724,0.808,0.656676,0.442045,0.450589,0.151607,0.176488,0.223347,0.570617,0.78804,0.428699,0.113432,0.192646,0.296003,0.0894891,0.939565,0.0142013,0.175914,0.989645,0.406106,0.777204,0.436188,0.842551,0.0522681,0.479448,0.302766,0.215866,0.0178168,0.0267876,0.749858,0.16567,0.49832,0.144298,0.292386,0.828746,0.246993,0.0323251,0.713821,0.505168,0.877895,0.212266,0.523169,0.178414,0.800084,0.0127767,0.653329,0.12532,0.124787,0.459773,0.0197796,0.570993,0.499126,0.516497,0.49499,0.400492,0.933839,0.77484,0.487233,0.827243,0.868071,0.276975,0.800651,0.0587165,0.634994,0.341105,0.229969,0.161584,0.0829241,0.431493,0.508834,0.344397,0.37148,0.286738,0.546461,0.348159,0.473053,0.295585,0.0946193,0.612663,0.825171,0.408221,0.257406,0.591601,0.719971,0.808741,0.712197,0.945557,0.480265,0.436149,0.02942,0.436287,0.401472,0.0977709,0.323039,0.652239,0.037039,0.440247,0.694667,0.237487,0.112199,0.579384,0.774419,0.00908893,0.812587,0.0499309,0.251413,0.863822,0.534014,0.185654,0.867573,0.518297,0.344171,0.0895476,0.716752,0.127582,0.575779,0.832092,0.0686343,0.452132,0.0400239,0.169141,0.774423,0.377076,0.919382,0.746318,0.525682,0.572237,0.0566177,0.214858,0.689998,0.466212,0.521141,0.31758,0.463085,0.23294,0.917196,0.169298,0.367727,0.926204,0.174879,0.908383,0.8566,0.238874,0.788406,0.431679,0.29257,0.90911,0.632004,0.718668,0.510951,0.543317,0.0278917,0.157562,0.70923,0.260695,0.966936,0.0405339,0.406362,0.291729,0.851013,0.325076,0.22521,0.900808,0.55977,0.93499,0.901184,0.88032,0.657899,0.264248,0.7131,0.648761,0.344054,0.567508,0.181635,0.236298,0.725828,0.771933,0.88246,0.0384236,0.827647,0.111803,0.539176,0.981881,0.0711776,0.594641,0.123405,0.34265,0.877015,0.229102,0.589747,0.385691,0.872247,0.879263,0.746499,0.563389,0.790964,0.281028,0.867388,0.497932,0.834195,0.991945,0.279224,0.195704,0.0966696,0.754752,0.400494,0.208421,0.661598,0.240371,0.517631,0.936415,0.816063,0.0926051,0.25095,0.505392,0.511964,0.409962,0.916805,0.758836,0.405622,0.690944,0.153567,0.909548,0.367444,0.44525,0.467263,0.260752,0.784944,0.93946,0.303263,0.640083,0.51231,0.478655,0.0777298,0.622762,0.876093,0.842666,0.726141,0.437458,0.346731,0.274148,0.426858,0.713069,0.0553886,0.439286,0.674879,0.781921,0.592117,0.838741,0.931424,0.786418,0.460169,0.0236833,0.711147,0.772966,0.267837,0.722755,0.106146,0.740962,0.419036,0.99388,0.339489,0.0838706,0.66713,0.437329,0.632017,0.10555,0.0204861,0.643636,0.249117,0.884394,0.906815,0.974884,0.593625,0.00576597,0.414032,0.967382,0.13456,0.370695,0.850566,0.511043,0.540762,0.172837,0.654702,0.51759,0.444816,0.884788,0.570464,0.774338,0.385487,0.687337,0.0780112,0.577163,0.459639,0.960844,0.749937,0.385278,0.439031,0.202024,0.742773,0.382218,0.105994,0.480006,0.466782,0.917444,0.202468,0.271232,0.377039,0.607662,0.635487,0.432179,0.138216,0.820472,0.0422802,0.105706,0.256166,0.995429,0.113914,0.618186,0.910906,0.520313,0.455197,0.868175,0.399064,0.824391,0.707245,0.844172,0.110173,0.466593,0.773274,0.960287,0.330848,0.171106,0.60811,0.813548,0.107002,0.60192,0.08258,0.874662,0.375011,0.864435,0.190431,0.811407,0.0540741,0.860471,0.514055,0.852778,0.186751,0.700062,0.529284,0.575779,0.417367,0.546002,0.320986,0.0703473,0.527763,0.202,0.186933,0.101246,0.99953,0.267378,0.844258,0.138888,0.455309,0.691511,0.193691,0.77697,0.376234,0.927027,0.888976,0.853104,0.200392,0.473589,0.483835,0.986321,0.5839,0.258129,0.839051,0.523786,0.0441158,0.0562727,0.761829,0.985804,0.498088,0.582302,0.0848185,0.501378,0.297992,0.715816,0.312181,0.511971,0.263048,0.945817,0.479746,0.0940933,0.615767,0.233501,0.0721468,0.385343,0.701602,0.388842,0.380343,0.205248,0.818976,0.93033,0.378827,0.0794482,0.140044,0.912097,0.715581,0.0955286,0.584619,0.359006,0.965236,0.87016,0.723732,0.960941,0.115638,0.227724,0.262874,0.27894,0.948012,0.782724,0.577506,0.532706,0.152562,0.186929,0.133645,0.967393,0.219146,0.831276,0.400946,0.257478,0.0428978,0.727267,0.904952,0.436586,0.220736,0.655229,0.882206,0.441932,0.356588,0.458554,0.791848,0.302764,0.393403,0.106075,0.214157,0.627023,0.0328329,0.180031,0.725583,0.0371665,0.937085,0.774566,0.00590402,0.506219,0.432497,0.95268,0.386534,0.431281,0.713147,0.662209,0.0355288,0.565356,0.370995,0.784216,0.00452679,0.585034,0.137786,0.341426,0.914219,0.710974,0.029395,0.746956,0.397301,0.708335,0.635243,0.1172,0.0731707,0.86166,0.950892,0.38958,0.459107,0.211768,0.524662,0.242182,0.968671,0.227433,0.403337,0.738964,0.437906,0.0526572,0.854218,0.100379,0.207635,0.392121,0.0243366,0.284367,0.371186,0.902753,0.608526,0.517571,0.468824,0.57893,0.960743,0.719537,0.783197,0.961972,0.514553,0.304999,0.0481136,0.887088,0.131772,0.595537,0.869176,0.423667,0.115879,0.86477,0.787783,0.165673,0.142729,0.225381,0.695685,0.266007,0.472553,0.404334,0.636837,0.967971,0.404122,0.0203002,0.793078,0.534438,0.430505,0.46902,0.541298,0.175907,0.530712,0.113518,0.174751,0.803766,0.142327,0.0515246,0.239749,0.0518219,0.614657,0.104529,0.180756,0.485175,0.374894,0.0583475,0.0494206,0.950101,0.456493,0.340196,0.629458,0.48492,0.508733,0.122728,0.821436,0.34236,0.401441,0.140432,0.804716,0.379057,0.810852,0.553549,0.427476,0.942723,0.857057,0.241399,0.448802,0.129826,0.0937327,0.747681,0.130115,0.816718,0.711992,0.867727,0.0243201,0.967117,0.9104,0.55431,0.953906,0.563553,0.496006,0.925125,0.548962,0.671988,0.973014,0.469471,0.282111,0.630009,0.0383071,0.76718,0.748472,0.0280979,0.884553,0.396784,0.273157,0.191157,0.0674824,0.669151,0.583528,0.198043,0.183246,0.274483,0.433657,0.791847,0.488912,0.900068,0.578607,0.14529,0.558557,0.0569904,0.208532,0.512562,0.0170748,0.647384,0.750723,0.735238,0.735258,0.698753,0.0683884,0.660703,0.265059,0.0322498,0.210164,0.817568,0.969721,0.592347,0.275799,0.821911,0.0583867,0.0256523,0.678918,0.127189,0.615568,0.632073,0.783568,0.417833,0.102067,0.596776,0.621906,0.669841,0.713355,0.448357,0.317566,0.678785,0.138713,0.655861,0.659352,0.247281,0.45226,0.897251,0.580203,0.285185,0.552073,0.100642,0.804085,0.214715,0.42272,0.187684,0.692718,0.734192,0.20656,0.078818,0.298138,0.382701,0.553255,0.43349,0.410684,0.881791,0.109845,0.860313,0.0571116,0.875904,0.857079,0.142287,0.511912,0.445877,0.561146,0.279413,0.715421,0.433715,0.426885,0.760256,0.413455,0.472545,0.25392,0.496816,0.332363,0.0447857,0.858649,0.403199,0.496751,0.479447,0.337444,0.128473,0.79188,0.649449,0.29902,0.62204,0.113852,0.355447,0.19226,0.290144,0.504172,0.655102,0.389873,0.275367,0.241358,0.583154,0.839355,0.902277,0.570473,0.770283,0.0089488,0.438174,0.876029,0.392304,0.178509,0.523028,0.532028,0.502352,0.101625,0.915009,0.734771,0.376178,0.240479,0.109767,0.261017,0.0427211,0.94196,0.221132,0.611363,0.711113,0.574497,0.601854,0.71052,0.258391,0.133551,0.997699,0.969487,0.194691,0.259283,0.650727,0.382193,0.163338,0.392597,0.919057,0.409763,0.454056,0.72909,0.713389,0.700017,0.928568,0.608793,0.0156345,0.818175,0.666934,0.552938,0.110531,0.694759,0.610801,0.569422,0.289629,0.721084,0.289287,0.657967,0.0210747,0.692979,0.853758,0.357579,0.0285687,0.0677443,0.908093,0.354856,0.151535,0.350699,0.578403,0.355851,0.797407,0.101521,0.854816,|0.828896,0.344117,0.48637,0.141397,0.574573,0.241322,0.103736,0.708149,0.210082,0.0047487,0.657967,0.753728,0.481963,0.907836,0.0908719,0.0380652,0.411819,0.65654,0.886491,0.184832,0.480017,0.667248,0.12133,0.69273,0.137172,0.998979,0.550628,0.0862415,0.104609,0.738193,0.618561,0.916779,0.869948,0.738983,0.0727562,0.296433,0.698735,0.239026,0.299842,0.853611,0.989181,0.677543,0.778132,0.379634,0.0227183,0.907251,0.881107,0.547698,0.321112,0.301241,0.261809,0.620354,0.470712,0.821329,0.544826,0.720026,0.458338,0.0918371,0.809383,0.558706,0.619058,0.697384,0.698888,0.326976,0.475342,0.588018,0.600889,0.810847,0.517498,0.669208,0.467497,0.42897,0.038789,0.312219,0.99371,0.871297,0.842097,0.283461,0.0444079,0.96505,0.4285,0.848911,0.131213,0.840046,0.462921,0.229985,0.0648713,0.227963,0.316244,0.20663,0.371208,0.112089,0.184846,0.840712,0.140737,0.811822,0.763469,9.39965e-05,0.725792,0.667388,0.030002,0.97338,0.273559,0.178142,0.562335,0.631361,0.0190131,0.915826,0.551593,0.347165,0.825833,0.248034,0.640128,0.13989,0.0649577,0.950822,0.328966,0.5633,0.747464,0.620867,0.608098,0.327278,0.203749,0.330248,0.219559,0.362031,0.612505,0.580015,0.0720326,0.795294,0.650814,0.353317,0.220518,0.752088,0.295527,0.55799,0.894894,0.0146693,0.0179891,0.393173,0.341078,0.512754,0.719885,0.878577,0.969484,0.996078,0.220616,0.818267,0.579938,0.479039,0.5254,0.251343,0.244186,0.562634,0.0971622,0.481254,0.252669,0.736429,0.458183,0.325813,0.190258,0.313459,0.33432,0.71457,0.0809132,0.289343,0.977669,0.154779,0.0599529,0.453543,0.170988,0.802017,0.221702,0.0536252,0.123414,0.884291,0.203969,0.970079,0.715632,0.722038,0.527257,0.371758,0.536206,0.944862,0.316505,0.386318,0.152674,0.233633,0.292035,0.401138,0.396243,0.453688,0.546252,0.761914,0.750958,0.0571584,0.971442,0.616621,0.738579,0.860961,0.939432,0.967881,0.36943,0.346461,0.399692,0.286285,0.0544616,0.455619,0.572255,0.755752,0.476335,0.476653,0.170939,0.327443,0.926453,0.359621,0.994244,0.00350571,0.235739,0.0714183,0.234543,0.220425,0.918798,0.378385,0.775386,0.114127,0.598503,0.650107,0.361596,0.0747725,0.199982,0.681987,0.474403,0.268409,0.991566,0.730494,0.427538,0.316754,0.381451,0.499948,0.944867,0.733657,0.31669,0.734211,0.862245,0.128506,0.605739,0.851316,0.0440202,0.827899,0.849682,0.169878,0.299737,0.316068,0.40512,0.0320435,0.115661,0.367716,0.141105,0.388817,0.302224,0.817243,0.961293,0.824471,0.0450865,0.0961583,0.592893,0.383049,0.00991303,0.531428,0.812666,0.714075,0.949485,0.673072,0.958492,0.0907247,0.326951,0.850361,0.777814,0.551173,0.469078,0.536825,0.52865,0.107807,0.575206,0.9531,0.726919,0.941447,0.332762,0.0301158,0.472681,0.957704,0.685748,0.196443,0.900254,0.300454,0.657477,0.191374,0.386891,0.726997,0.695399,0.399684,0.74776,0.201906,0.34527,0.506512,0.456967,0.906496,0.229112,0.44052,0.494197,0.991455,0.311837,0.0767171,0.649054,0.772545,0.180076,0.471528,0.305233,0.25241,0.719306,0.71562,0.634183,0.993132,0.514889,0.0419376,0.118554,0.250963,0.146927,0.701646,0.0151919,0.243781,0.756355,0.615519,0.674075,0.366576,0.835254,0.4506,0.780855,0.778461,0.452992,0.415412,0.498893,0.669876,0.163323,0.481159,0.275192,0.124638,0.40664,0.466733,0.549708,0.88935,0.19047,0.188588,0.66962,0.243657,0.329441,0.633508,0.613822,0.0466912,0.910489,0.431755,0.399317,0.171958,0.468203,0.651497,0.414633,0.305467,0.114354,0.796749,0.222232,0.429376,0.33625,0.093253,0.251751,0.438992,0.0170009,0.700992,0.146016,0.860129,0.509729,0.859362,0.425022,0.0162687,0.35121,0.912473,0.451398,0.40808,0.420582,0.198506,0.273332,0.218255,0.283258,0.0143622,0.992641,0.876028,0.0865318,0.551132,0.207418,0.941743,0.128039,0.137041,0.181388,0.331116,0.518467,0.42399,0.139151,0.179207,0.53586,0.76196,0.116377,0.778647,0.834093,0.59115,0.893378,0.755282,0.271166,0.0411544,0.915415,0.439167,0.52578,0.541972,0.641376,0.466089,0.327553,0.739108,0.855056,0.377757,0.662812,0.845839,0.67158,0.962449,0.524369,0.304318,0.653824,0.208048,0.361573,0.110389,0.00855297,0.362903,0.851833,0.433191,0.0561227,0.637694,0.696902,0.688068,0.672335,0.465145,0.23543,0.0163885,0.0104676,0.044113,0.658605,0.42092,0.132173,0.532704,0.219213,0.251013,0.388603,0.0587782,0.490158,0.0964947,0.954838,0.859741,0.0770444,0.850356,0.285459,0.187183,0.960529,0.421258,0.48496,0.206807,0.32502,0.987247,0.198105,0.441547,0.630193,0.852731,0.512168,0.561958,0.613992,0.211262,0.682435,0.919331,0.331241,0.157078,0.74065,0.0930265,0.126056,0.260144,0.0768564,0.897189,0.693402,0.93763,0.593329,0.0790498,0.114593,0.126932,0.478976,0.969451,0.884973,0.282476,0.505064,0.576122,0.452159,0.465505,0.336491,0.863685,0.934384,0.899322,0.204654,0.0814034,0.206755,0.608223,0.555338,0.210767,0.688338,0.767195,0.749791,0.346779,0.246044,0.197366,0.764501,0.308671,0.799945,0.0878594,0.160601,0.622744,0.403213,0.422052,0.327057,0.516225,0.0584831,0.560416,0.493575,0.407518,0.405199,0.460546,0.950974,0.88874,0.84571,0.565895,0.678357,0.565618,0.30296,0.919829,0.315699,0.411579,0.286005,0.952339,0.400238,0.496663,0.00332832,0.276137,0.334102,0.0680608,0.383776,0.408321,0.0838787,0.120435,0.196127,0.388926,0.217335,0.131158,0.581734,0.660619,0.36016,0.979717,0.210723,0.412684,0.791665,0.0815191,0.0616063,0.799731,0.453016,0.741316,0.556214,0.874245,0.422283,0.805201,0.479206,0.0294303,0.68055,0.154771,0.0402321,0.136594,0.891033,0.486341,0.248534,0.977329,0.738994,0.133661,0.903156,0.578867,0.226788,0.730376,0.979722,0.386952,0.638304,0.054171,0.026449,0.641169,0.997129,0.308323,0.58985,0.421422,0.123901,0.732292,0.332718,0.959274,0.893166,0.268259,0.868585,0.924506,0.576674,0.115072,0.636384,0.241509,0.345127,0.021742,0.359227,0.790644,0.528568,0.7937,0.67779,0.209041,0.871052,0.79974,0.111927,0.634238,0.108064,0.887264,0.306322,0.989146,0.43508,0.814479,0.36129,0.461944,0.400532,0.390752,0.268809,0.822179,0.275072,0.990335,0.356486,0.65615,0.494626,0.452732,0.25653,0.636044,0.413382,0.592536,0.540046,0.732401,0.538898,0.0538611,0.568271,0.0223697,0.747074,0.605416,0.430826,0.796903,0.911739,0.207455,0.0292842,0.300305,0.293317,0.3336,0.560536,0.0512818,0.604805,0.795793,0.429251,0.0223646,0.500776,0.8529,0.2819,0.0394155,0.122216,0.0590325,0.728795,0.487056,0.170966,0.463473,0.696039,0.355115,0.198096,0.445436,0.394545,0.802444,0.607993,0.255267,0.719516,0.397572,0.828297,0.576067,0.77048,0.539002,0.787823,0.12423,0.166136,0.660506,0.22308,0.440582,0.103707,0.44445,0.361102,0.986409,0.994701,0.0477872,0.828706,0.0839218,0.0289606,0.561635,0.780628,0.39447,0.653999,0.0770897,0.629781,0.989415,0.481323,0.237439,0.826746,0.599919,0.030583,0.87723,0.303558,0.670442,0.784943,0.0679743,0.095579,0.890012,0.321479,0.400011,0.716225,0.0481441,0.723183,0.766039,0.213511,0.266867,0.518833,0.105481,0.344931,0.753483,0.754903,0.410094,0.268865,0.916086,0.988064,0.135982,0.925745,0.906099,0.182215,0.298786,0.845084,0.743285,0.0496287,0.589292,0.00952613,0.778221,0.676107,0.504217,0.592272,0.658078,0.739361,0.754908,0.840422,0.265924,0.146261,0.63906,0.875155,0.558747,0.7292,0.600513,0.215888,0.686097,0.682143,0.733613,0.530525,0.142035,0.0153004,0.424007,0.196659,0.250473,0.754673,0.854597,0.37524,0.042495,0.0190353,0.339091,0.363244,0.300092,0.309939,0.38586,0.715587,0.603448,0.456446,0.44317,0.409283,0.181889,0.58754,0.449637,0.102956,0.528437,0.140911,0.869643,0.749495,0.273463,0.707099,0.0474336,0.0523503,0.00187379,0.421387,0.00246376,0.547682,0.563339,0.839696,0.965786,0.649919,0.120467,0.519713,0.74545,0.460703,0.324484,0.595862,0.663233,0.512246,0.110885,0.996305,0.306315,0.585026,0.641851,0.270545,0.344264,0.266292,0.431036,0.979419,0.614532,0.161879,0.280962,0.873293,0.964294,0.692696,0.22593,0.1344,0.254018,0.0432364,0.815444,0.897764,0.27352,0.00753272,0.749911,0.351763,0.471665,0.680022,0.23571,0.0578713,0.332551,0.510825,0.650494,0.721817,0.160645,0.64469,0.557791,0.129441,0.938136,0.528933,0.193116,0.727348,0.204455,0.0338658,0.495585,0.771012,0.259928,0.372045,0.634883,0.496138,0.575578,0.611061,0.200874,0.273753,0.736679,0.279445,0.040597,0.296626,0.252687,0.0359643,0.698726,0.687488,0.378333,0.597651,0.892551,0.845216,0.715515,0.142383,0.0126184,0.238781,0.422426,0.741289,0.0292884,0.199021,0.540212,0.538601,0.559253,0.297419,0.864417,0.305934,0.15844,0.0700036,0.868583,0.653772,0.236979,0.858676,0.11549,0.134098,0.471111,0.00937748,0.622701,0.636019,0.0728957,0.0965753,0.785547,0.989245,0.745189,0.385856,0.965822,0.452605,0.141757,0.217276,0.801444,0.867734,0.565374,0.294895,0.717984,0.661615,0.034201,0.401493,0.262372,0.244915,0.0598519,0.18583,0.0831476,0.85393,0.547499,0.266742,0.988123,0.679777,0.364144,0.981982,0.105029,0.249245,0.308197,0.685559,0.275358,0.879595,0.776823,0.879503,0.00203127,0.0558646,0.587523,0.747609,0.869488,0.12185,0.0914801,0.489312,0.50998,0.817532,0.136085,0.221368,0.585105,0.625717,0.575365,0.62869,0.41566,0.693643,0.142951,0.52204,0.435289,0.869845,0.351713,0.239977,0.963105,0.00840688,0.21298,0.0689516,0.290007,0.867546,0.0904707,0.0211978,0.172877,0.826415,0.159472,0.493318,0.230707,0.744166,0.0767525,0.557765,0.187124,0.88053,0.878672,|0.765205,0.962026,0.845883,0.171561,0.383237,0.020206,0.418369,0.249015,0.190023,0.770169,0.17017,0.0700174,0.529063,0.651277,0.159065,0.4152,0.521132,0.467212,0.0995752,0.280513,0.894385,0.780046,0.0689774,0.45259,0.598516,0.743573,0.75606,0.945085,0.596398,0.393252,0.157935,0.592213,0.720261,0.954057,0.222752,0.684778,0.809797,0.747633,0.056509,0.682085,0.83699,0.0208358,0.385543,0.828072,0.717351,0.651427,0.850788,0.375842,0.155039,0.65854,0.741064,0.852633,0.817946,0.338453,0.490303,0.760874,0.808719,0.777189,0.730034,0.95705,0.111679,0.674992,0.0908946,0.890982,0.904383,0.242234,0.497495,0.789521,0.573991,0.804019,0.931719,0.0999511,0.957547,0.858929,0.101005,0.176716,0.608344,0.349687,0.367272,0.0700291,0.272812,0.178719,0.699278,0.741264,0.656321,0.685568,0.231964,0.453739,0.302993,0.22276,0.748022,0.303682,0.285552,0.0255253,0.355772,0.547622,0.64352,0.25065,0.535418,0.654668,0.247665,0.805465,0.0504063,0.125352,0.812565,0.0550196,0.0764499,0.833969,0.951994,0.335335,0.50285,0.0456418,0.552911,0.504375,0.973058,0.314653,0.103668,0.619024,0.537511,0.381464,0.44708,0.717572,0.441906,0.722763,0.141509,0.832914,0.714123,0.678417,0.856522,0.227869,0.820365,0.217543,0.20664,0.555775,0.74288,0.840841,0.867094,0.0922697,0.546259,0.658314,0.400451,0.220575,0.695931,0.104349,0.559693,0.961003,0.632694,0.807037,0.435618,0.495866,0.305298,0.355107,0.131622,0.896263,0.622973,0.374851,0.44503,0.381912,0.951653,0.418796,0.384732,0.0490687,0.0225916,0.229041,0.369928,0.951019,0.309825,0.687504,0.172883,0.453541,0.205547,0.647959,0.453078,0.578371,0.485821,0.657129,0.806143,0.138367,0.535955,0.682266,0.3091,0.35582,0.809177,0.70374,0.908567,0.979163,0.839681,0.00783288,0.867048,0.229281,0.960219,0.269481,0.160334,0.702,0.881644,0.306335,0.782892,0.299684,0.390731,0.851419,0.311526,0.890646,0.98162,0.953574,0.77121,0.419843,0.538165,0.842259,0.671698,0.678304,0.184368,0.377947,0.379546,0.80088,0.459495,0.79161,0.205772,0.0889384,0.0619947,0.393484,0.431058,0.362095,0.481681,0.489113,0.14616,0.598071,0.25385,0.746821,0.559074,0.0939801,0.633022,0.828038,0.80539,0.243134,0.214342,0.749389,0.160761,0.472951,0.934883,0.289547,0.749079,0.820852,0.562753,0.43564,0.496578,0.975918,0.539545,0.242747,0.977626,0.968026,0.449522,0.721903,0.326644,0.093106,0.0464489,0.142641,0.840764,0.0469435,0.659432,0.193217,0.804709,0.585227,0.127011,0.838311,0.252196,0.579369,0.472207,0.979082,0.424528,0.268229,0.772129,0.0379156,0.0317543,0.82883,0.937948,0.0163769,0.546218,0.513084,0.674589,0.469774,0.402598,0.32493,0.837954,0.0814137,0.871365,0.982904,0.851426,0.238781,0.822234,0.55065,0.604628,0.103884,0.304261,0.0861723,0.418919,0.544634,0.613938,0.956644,0.164953,0.20024,0.828352,0.712026,0.898098,0.344559,0.682141,0.509139,0.671612,0.701883,0.585177,0.851373,0.0397146,0.869299,0.0414188,0.913131,0.752689,0.618989,0.375563,0.957498,0.316613,0.643497,0.145332,0.336367,0.859253,0.904317,0.336765,0.855424,0.699297,0.601195,0.946594,0.0681542,0.92695,0.775774,0.854653,0.690262,0.571677,0.795898,0.836528,0.685221,0.899463,0.504838,0.0158773,0.883173,0.511302,0.930153,0.30633,0.140847,0.049163,0.239926,0.45176,0.467641,0.202255,0.342735,0.587239,0.147625,0.257193,0.489405,0.287783,0.0342736,0.255752,0.650655,0.0932148,0.904206,0.0694126,0.00766313,0.491612,0.630761,0.163892,0.87422,0.157126,0.0589966,0.180206,0.845198,0.988653,0.11341,0.443915,0.0599869,0.101903,0.139022,0.918592,0.480609,0.749308,0.814577,0.2456,0.133126,0.421619,0.357386,0.424432,0.837794,0.734421,0.53641,0.255646,0.82506,0.201291,0.19642,0.472491,0.411539,0.733226,0.167503,0.860764,0.326485,0.732677,0.0740489,0.843985,0.707338,0.218193,0.016141,0.282132,0.994732,0.504952,0.260307,0.92518,0.409161,0.291345,0.225027,0.310315,0.460256,0.66244,0.71964,0.498184,0.898633,0.450336,0.188974,0.901189,0.55591,0.857598,0.970968,0.87283,0.128183,0.340361,0.413191,0.995911,0.331966,0.0349488,0.762657,0.373406,0.140798,0.0681267,0.0430675,0.170846,0.587964,0.182434,0.790639,0.798392,0.849727,0.20244,0.238862,0.671726,0.614972,0.830393,0.39015,0.498666,0.379081,0.29607,0.0499824,0.637859,0.60834,0.280451,0.265893,0.776481,0.00360894,0.397487,0.556658,0.942687,0.562236,0.560706,0.359559,0.935079,0.442297,0.306967,0.461997,0.0665378,0.24174,0.236709,0.20116,0.199353,0.935898,0.759074,0.40492,0.449522,0.553746,0.150382,0.59738,0.763757,0.864166,0.771968,0.63509,0.864729,0.2124,0.391428,0.314122,0.043249,0.739344,0.107465,0.288433,0.766008,0.941688,0.412706,0.715115,0.287338,0.782265,0.615458,0.791691,0.971987,0.462757,0.446837,0.589313,0.168157,0.253373,0.854098,0.536236,0.665449,0.263734,0.579315,0.363356,0.242396,0.867272,0.542506,0.0740702,0.404684,0.697936,0.0892656,0.410708,0.91378,0.0977603,0.909659,0.731323,0.630231,0.990079,0.529134,0.740092,0.450627,0.533026,0.60281,0.439142,0.990472,0.0730988,0.704495,0.18974,0.728169,0.973213,0.448247,0.35366,0.298933,0.878043,0.845274,0.338353,0.695275,0.222559,0.346285,0.349373,0.0177358,0.818906,0.663527,0.399598,0.20053,0.447025,0.559257,0.599048,0.446467,0.180747,0.476863,0.913237,0.88943,0.0099988,0.563032,0.984522,0.661683,0.806264,0.448202,0.918262,0.9921,0.880606,0.224472,0.988563,0.728751,0.94468,0.523833,0.242611,0.9454,0.863738,0.694796,0.479767,0.0116749,0.751511,0.107203,0.0370777,0.0535753,0.68251,0.892593,0.564257,0.970376,0.510185,0.798988,0.397086,0.816234,0.668846,0.979769,0.250365,0.496293,0.294316,0.964514,0.992876,0.981109,0.801319,0.688216,0.945324,0.466332,0.845748,0.336198,0.0724499,0.662079,0.237731,0.864648,0.876561,0.594014,0.245461,0.25556,0.947312,0.472859,0.959582,0.0910357,0.87856,0.132945,0.339369,0.951914,0.184721,0.943044,0.20782,0.985765,0.791839,0.108783,0.15931,0.244846,0.0243194,0.888849,0.165236,0.583305,0.0236714,0.232473,0.526115,0.230921,0.453263,0.720578,0.689779,0.943366,0.399124,0.868051,0.0798766,0.851442,0.40445,0.148031,0.743528,0.411337,0.458778,0.209838,0.742095,0.763917,0.184931,0.0861004,0.534019,0.702677,0.468628,0.138125,0.443227,0.593473,0.829856,0.499736,0.520975,0.922914,0.93378,0.532462,0.0631397,0.478273,0.865546,0.0831428,0.421136,0.278945,0.329904,0.370357,0.162469,0.693881,0.968473,0.673237,0.351261,0.488554,0.703393,0.877452,0.280657,0.619489,0.905424,0.737737,0.215296,0.300692,0.0821026,0.106619,0.424917,0.625165,0.942683,0.954994,0.196124,0.169843,0.902911,0.0247856,0.677592,0.193087,0.0662834,0.710425,0.222376,0.952515,0.645976,0.945438,0.625427,0.153621,0.0227347,0.579911,0.125925,0.0778402,0.87887,0.795228,0.172997,0.422262,0.0616655,0.65328,0.261987,0.225177,0.0380214,0.849837,0.884831,0.648543,0.35193,0.97472,0.53637,0.100269,0.89524,0.872608,0.248924,0.212808,0.244512,0.46541,0.111215,0.0118726,0.525193,0.510099,0.842535,0.909763,0.301047,0.761513,0.126117,0.106048,0.579825,0.901797,0.31677,0.672017,0.0125589,0.0809319,0.346702,0.210591,0.638278,0.817165,0.29067,0.215776,0.694048,0.729007,0.472434,0.11247,0.11384,0.714329,0.968186,0.579202,0.679626,0.097434,0.723967,0.0978451,0.0985085,0.0931556,0.906465,0.420095,0.240275,0.293425,0.479516,0.681172,0.0687591,0.408289,0.619687,0.358729,0.310006,0.0698211,0.75062,0.649573,0.0663717,0.423235,0.199272,0.96535,0.0687721,0.0729402,0.385983,0.349738,0.150921,0.264366,0.645131,0.861984,0.594287,0.0934091,0.167919,0.883274,0.137222,0.715891,0.797111,0.945522,0.371972,0.491009,0.932288,0.862929,0.00657684,0.940303,0.967933,0.0960948,0.866494,0.844205,0.482926,0.577401,0.970347,0.806774,0.243215,0.41797,0.264066,0.310936,0.82989,0.0186977,0.377589,0.457528,0.148252,0.704803,0.0503168,0.0962331,0.500618,0.545824,0.0321296,0.36919,0.524707,0.522076,0.449595,0.429935,0.26948,0.399698,0.849271,0.298952,0.253163,0.412281,0.399298,0.433585,0.344249,0.149899,0.438456,0.31003,0.66699,0.946006,0.493395,0.416716,0.322774,0.118501,0.429651,0.690155,0.100998,0.962975,0.211243,0.196473,0.124282,0.184383,0.248707,0.40583,0.419475,0.0108513,0.318343,0.381776,0.405286,0.535068,0.387674,0.945734,0.592457,0.0687335,0.961867,0.0474941,0.630862,0.57648,0.0617005,0.650275,0.633609,0.648683,0.105135,0.873268,0.0804986,0.779052,0.155848,0.757497,0.0520252,0.649844,0.804165,0.255464,0.958842,0.869459,0.0534113,0.0131052,0.276609,0.765061,0.655759,0.397788,0.620194,0.359818,0.027034,0.680222,0.648034,0.0344465,0.284106,0.746827,0.768419,0.811772,0.672281,0.617446,0.912174,0.342689,0.47004,0.2279,0.337889,0.672962,0.957675,0.747233,0.97809,0.940348,0.44338,0.18796,0.387631,0.629483,0.367006,0.339677,0.274355,0.460047,0.918448,0.400068,0.684664,0.638703,0.446137,0.284328,0.0611498,0.84073,0.1891,0.348496,0.372034,0.586654,0.0261972,0.50089,0.626335,0.683878,0.392164,0.741371,0.257077,0.161459,0.312374,0.0363801,0.0504533,0.186879,0.0512337,0.0938377,0.551704,0.390988,0.0827248,0.284125,0.12538,0.880004,0.795091,0.192159,0.723514,0.750989,0.583257,0.469293,0.979545,0.867023,0.283173,0.424012,0.559074,0.21232,0.438374,0.806451,0.689109,0.669706,0.138215,0.884726,0.0909472,0.136456,0.4523,0.807511,0.758913,0.596593,0.874963,0.685248,0.111369,0.970174,0.13084,0.967335,0.0364441,|0.170315,0.350542,0.902838,0.132993,0.58574,0.584761,0.0820847,0.145098,0.000979424,0.560841,0.587946,0.612216,0.165802,0.925723,0.772291,0.805111,0.306343,0.941769,0.571696,0.942277,0.63989,0.627527,0.4086,0.313836,0.632643,0.959806,0.666023,0.718512,0.382981,0.656339,0.162186,0.26691,0.238423,0.379138,0.55565,0.793295,0.698671,0.3126,0.841653,0.639922,0.91827,0.623733,0.273477,0.730553,0.907983,0.864,0.824132,0.453265,0.770827,0.662114,0.0295823,0.657335,0.181072,0.279794,0.0265221,0.225444,0.644922,0.833467,0.165115,0.850768,0.327162,0.437026,0.546402,0.0970924,0.273444,0.977556,0.826669,0.480839,0.340667,0.660284,0.448591,0.77438,0.118843,0.54392,0.076912,0.970109,0.131276,0.680998,0.848958,0.571793,0.41705,0.788896,0.481648,0.0152587,0.346626,0.0989713,0.129969,0.968633,0.271014,0.112736,0.00923127,0.970193,0.961047,0.847242,0.676297,0.279905,0.694177,0.494929,0.0399888,0.444743,0.699139,0.965726,0.527687,0.170549,0.00649112,0.112044,0.493325,0.363626,0.0749665,0.795062,0.347675,0.99338,0.275534,0.678456,0.959662,0.54006,0.851077,0.788473,0.0359606,0.906619,0.165913,0.845772,0.466048,0.59057,0.49095,0.331818,0.869778,0.530914,0.0645212,0.680969,0.962098,0.088369,0.597769,0.415545,0.253095,0.913981,0.695914,0.334542,0.878109,0.378946,0.954543,0.300921,0.526981,0.83885,0.565802,0.485131,0.832933,0.070882,0.250228,0.224354,0.694621,0.51828,9.20296e-05,0.786147,0.250549,0.252653,0.224301,0.719668,0.047906,0.697939,0.0687016,0.280976,0.169886,0.583019,0.398883,0.37067,0.489277,0.903498,0.25309,0.637808,0.868566,0.180702,0.245069,0.984458,0.0563453,0.359245,0.736434,0.557825,0.276144,0.560207,0.820652,0.412278,0.133044,0.551432,0.269953,0.227365,0.896237,0.838485,0.232228,0.836792,0.178156,0.783955,0.658301,0.745232,0.130738,0.0203214,0.896513,0.647594,0.898935,0.179241,0.613491,0.176287,0.233854,0.422314,0.85539,0.0471762,0.127823,0.614029,0.572517,0.341875,0.232295,0.229017,0.589289,0.300315,0.061133,0.652524,0.638246,0.405528,0.868686,0.943887,0.909161,0.251166,0.596611,0.3002,0.0953238,0.47745,0.549567,0.78136,0.666377,0.895603,0.440982,0.63856,0.128375,0.425256,0.955059,0.124385,0.976356,0.528982,0.479082,0.776521,0.852041,0.706193,0.723106,0.186333,0.136666,0.404766,0.436361,0.348343,0.593388,0.106738,0.296337,0.465123,0.611975,0.102893,0.00369298,0.302913,0.215419,0.607321,0.578891,0.925859,0.489264,0.997165,0.0774338,0.615876,0.70604,0.154875,0.727122,0.965408,0.192606,0.185768,0.110537,0.0335208,0.907628,0.740608,0.538408,0.368267,0.211721,0.249107,0.094929,0.0154043,0.00545114,0.199655,0.412915,0.291651,0.0482731,0.0329865,0.960648,0.0867911,0.642516,0.0662768,0.57019,0.191572,0.0750006,0.493204,0.476127,0.81765,0.854154,0.0803848,0.237275,0.837535,0.108877,0.280671,0.126326,0.829768,0.176479,0.44522,0.799402,0.197161,0.317202,0.115483,0.76981,0.198268,0.00949222,0.861719,0.824278,0.332465,0.959941,0.293083,0.133341,0.474627,0.525882,0.752729,0.523275,0.258215,0.463447,0.73552,0.421043,0.695126,0.887719,0.322462,0.693829,0.358989,0.0160452,0.767587,0.50305,0.00368249,0.45858,0.294605,0.489248,0.551417,0.130089,0.290434,0.765986,0.17493,0.460631,0.752324,0.871247,0.279648,0.354844,0.308821,0.228566,0.187412,0.365487,0.0782704,0.248886,0.415519,0.758446,0.176139,0.489339,0.221977,0.900534,0.755506,0.798534,0.25208,0.0897064,0.389472,0.618389,0.274434,0.218713,0.977592,0.949797,0.180547,0.79447,0.90266,0.877694,0.416225,0.29232,0.865953,0.946874,0.961629,0.969487,0.445396,0.284983,0.939323,0.703636,0.358482,0.0462583,0.0423684,0.109097,0.21114,0.151438,0.164163,0.958999,0.0499292,0.542046,0.295238,0.998515,0.166132,0.402996,0.62842,0.0729468,0.329282,0.714474,0.709318,0.417207,0.788068,0.111351,0.734557,0.919496,0.298299,0.92995,0.889476,0.925312,0.41498,0.95898,0.563183,0.145618,0.690475,0.990535,0.983428,0.111276,0.872133,0.0778839,0.238098,0.147292,0.898017,0.887076,0.523976,0.445495,0.169725,0.181125,0.764814,0.982765,0.65058,0.326636,0.4888,0.883737,0.767084,0.246365,0.332394,0.967434,0.0151396,0.0965694,0.330607,0.635708,0.432818,0.758197,0.584431,0.523383,0.563679,0.0435278,0.0875596,0.477861,0.818862,0.426246,0.600456,0.816606,0.053305,0.89004,0.727292,0.465195,0.665694,0.5866,0.968696,0.0965995,0.266917,0.888579,0.432301,0.811777,0.87176,0.705373,0.473522,0.000831008,0.315883,0.896385,0.978286,0.844037,0.508438,0.587107,0.824991,0.805969,0.996937,0.256882,0.895292,0.461615,0.952676,0.667664,0.985157,0.761208,0.687846,0.0561724,0.823716,0.586545,0.666603,0.960534,0.416024,0.689497,0.774901,0.234253,0.862351,0.748907,0.94952,0.572869,0.0101352,0.943117,0.854445,0.616128,0.542964,0.596155,0.73508,0.4775,0.878059,0.973577,0.736135,0.953916,0.41198,0.253843,0.978145,0.975707,0.81529,0.155019,0.181288,0.181404,0.357237,0.685723,0.145386,0.212745,0.267032,0.855715,0.304846,0.550859,0.975389,0.646871,0.713025,0.97006,0.283576,0.970596,0.695021,0.200617,0.133401,0.0188767,0.508676,0.309952,0.69436,0.0825094,0.643967,0.873191,0.155566,0.00411224,0.829302,0.889216,0.837141,0.865717,0.428363,0.165402,0.261759,0.110089,0.817907,0.309903,0.128388,0.749017,0.734782,0.504568,0.823173,0.94307,0.848437,0.695601,0.991032,0.575948,0.0478479,0.497084,0.258076,0.0980238,0.787328,0.256095,0.972585,0.257057,0.629294,0.530564,0.195606,0.493971,0.822398,0.995881,0.239535,0.332397,0.274604,0.097451,0.739647,0.125535,0.785636,0.11596,0.0889061,0.579032,0.896209,0.257758,0.058931,0.59614,0.805954,0.457426,0.471854,0.349291,0.229423,0.352761,0.663921,0.92679,0.647195,0.588183,0.513418,0.501905,0.931395,0.850936,0.303321,0.907963,0.644322,0.188095,0.12311,0.710886,0.367179,0.736526,0.803656,0.751919,0.598025,0.832798,0.684079,0.419016,0.742643,0.956493,0.928957,0.282806,0.0267944,0.513415,0.87569,0.992379,0.554831,0.897765,0.171773,0.724016,0.560344,0.470684,0.905088,0.0391201,0.881588,0.529737,0.345854,0.847522,0.161616,0.681147,0.313586,0.932075,0.535013,0.472796,0.0369298,0.185929,0.682485,0.577406,0.147619,0.760915,0.429014,0.735077,0.944338,0.134406,0.130293,0.715533,0.734495,0.44343,0.989856,0.935534,0.207582,0.0562329,0.782775,0.536116,0.314826,0.705061,0.749411,0.807812,0.327793,0.554725,0.988519,0.798341,0.765971,0.515823,0.861972,0.248068,0.206131,0.707729,0.380866,0.821666,0.619593,0.0419889,0.681787,0.565148,0.153494,0.247731,0.718071,0.109209,0.910286,0.427538,0.252339,0.283344,0.950171,0.913096,0.13712,0.82932,0.754142,0.796767,0.496981,0.736104,0.605624,0.589105,0.98689,0.347044,0.00537384,0.453444,0.162015,0.884556,0.448346,0.733914,0.672744,0.705573,0.870351,0.718672,0.261556,0.808094,0.871101,0.519945,0.480834,0.146047,0.98467,0.925327,0.958893,0.407577,0.123023,0.705178,0.444159,0.336488,0.792883,0.436343,0.99017,0.49478,0.76047,0.950369,0.384061,0.506951,0.540113,0.747304,0.530121,0.582111,0.442834,0.991239,0.733386,0.94544,0.821737,0.791564,0.966994,0.0180119,0.344679,0.950045,0.529815,0.490109,0.923253,0.803294,0.222828,0.609214,0.572418,0.656214,0.304223,0.228361,0.778409,0.00562805,0.412268,0.312478,0.811565,0.252272,0.373941,0.768833,0.211913,0.802101,0.84776,0.079276,0.0304059,0.663773,0.886411,0.684547,0.295918,0.190451,0.787232,0.321368,0.561772,0.366007,0.283676,0.569735,0.11241,0.212401,0.257792,0.946009,0.106423,0.408161,0.597295,0.745802,0.290966,0.88435,0.545572,0.207337,0.602976,0.282349,0.50473,0.679246,0.360382,0.590809,0.563745,0.920011,0.66689,0.680187,0.808014,0.917536,0.742233,0.247006,0.437092,0.0746346,0.546544,0.197891,0.953451,0.995014,0.380559,0.843598,0.93677,0.0685195,0.740236,0.00305277,0.334139,0.779838,0.610631,0.630054,0.847632,0.509018,0.374853,0.98982,0.846723,0.733618,0.83623,0.853432,0.381481,0.800811,0.618814,0.38973,0.113327,0.771975,0.432669,0.0303297,0.963596,0.657048,0.886759,0.722421,0.738594,0.50858,0.0281874,0.988559,0.0781783,0.414517,0.573798,0.755481,0.15507,0.171968,0.0276431,0.715956,0.981326,0.441653,0.0680044,0.904091,0.452212,0.797522,0.956764,0.897861,0.289824,0.405414,0.876243,0.29873,0.172779,0.522416,0.999562,0.381161,0.857944,0.837794,0.0766913,0.250587,0.3283,0.881784,0.479063,0.14424,0.833312,0.711828,0.704339,0.854116,0.677015,0.266386,0.245398,0.698253,0.336494,0.575348,0.289659,0.524414,0.149604,0.106778,0.625509,0.00522006,0.27053,0.979428,0.717881,0.807953,0.469789,0.650912,0.0213221,0.157394,0.83386,0.873816,0.456496,0.600171,0.308354,0.0446463,0.870229,0.49299,0.741217,0.315481,0.141073,0.0359071,0.323533,0.87024,0.0693947,0.854507,0.00363654,0.487627,0.182906,0.364142,0.528606,0.390044,0.363892,0.0380846,0.808819,0.651183,0.368584,0.936602,0.748318,0.162808,0.550276,0.48278,0.173544,0.728293,0.865077,0.975747,0.731391,0.799022,0.306199,0.282925,0.255546,0.901082,0.215297,0.727844,0.822906,0.871852,0.140178,0.536863,0.756411,0.00316155,0.398525,0.941881,0.893177,0.902593,0.533505,0.704743,0.182493,0.11414,0.498755,0.877607,0.0745564,0.244804,0.703753,0.443259,0.52878,0.501731,0.28161,0.0296742,0.827137,0.469336,0.75106,0.823764,0.777499,0.141729,0.694088,0.609761,0.335817,0.170527,0.116394,0.787877,0.176224,0.431522,0.538553,0.93319,0.291767,0.165786,0.565426,|0.148831,0.19452,0.133535,0.129083,0.43519,0.195302,0.681265,0.946556,0.368837,0.976978,0.139938,0.194417,0.0780756,0.310611,0.998728,0.621233,0.833994,0.125817,0.129368,0.984541,0.994142,0.406923,0.336437,0.156455,0.0974835,0.452956,0.0619318,0.11319,0.396804,0.686998,0.961346,0.31155,0.17609,0.950062,0.277404,0.224361,0.62297,0.364786,0.964267,0.818878,0.553216,0.0660182,0.633489,0.752931,0.691567,0.564232,0.693441,0.454398,0.676443,0.4127,0.553445,0.536035,0.0876986,0.98961,0.696851,0.849445,0.644967,0.231415,0.174892,0.0652184,0.716942,0.0604124,0.267946,0.613852,0.304123,0.0667291,0.972854,0.812965,0.840531,0.637211,0.744094,0.422683,0.676356,0.79135,0.732087,0.896455,0.331517,0.527235,0.404853,0.816422,0.210777,0.560177,0.157072,0.739522,0.484921,0.613535,0.533563,0.670868,0.121481,0.652576,0.0339826,0.935621,0.135473,0.54823,0.512089,0.0947357,0.721721,0.0869656,0.18755,0.597968,0.853543,0.125982,0.969506,0.864927,0.12628,0.842735,0.832775,0.971337,0.112485,0.29149,0.503236,0.84104,0.499858,0.705389,0.983059,0.785738,0.143753,0.51986,0.482277,0.666864,0.694917,0.619608,0.132383,0.864154,0.865089,0.302078,0.16831,0.334016,0.59317,0.835499,0.0739906,0.769336,0.937187,0.00182867,0.33873,0.578959,0.235469,0.30449,0.278157,0.492181,0.936539,0.14108,0.223918,0.734852,0.143194,0.421945,0.880264,0.09163,0.0914887,0.426246,0.452795,0.897335,0.186324,0.760158,0.290149,0.810555,0.426024,0.429777,0.570156,0.326972,0.236502,0.0974838,0.853244,0.261494,0.592613,0.972787,0.80925,0.411763,0.0771243,0.56004,0.85158,0.413308,0.162553,0.74847,0.704236,0.729294,0.300922,0.0934605,0.990134,0.0247109,0.631607,0.269052,0.588436,0.316153,0.36404,0.351618,0.517594,0.410677,0.935531,0.357402,0.132353,0.388972,0.589877,0.445862,0.40665,0.871091,0.465286,0.0838468,0.935751,0.313404,0.481955,0.168451,0.184511,0.257428,0.403565,0.106063,0.121973,0.303751,0.669878,0.0981718,0.869255,0.157295,0.856228,0.199801,0.611192,0.855687,0.726026,0.660316,0.355747,0.43804,0.146535,0.847334,0.188897,0.556803,0.241369,0.154013,0.1061,0.635188,0.511812,0.509086,0.837407,0.251681,0.319177,0.492782,0.163577,0.796819,0.707314,0.367584,0.321216,0.25203,0.605466,0.825989,0.812312,0.758759,0.763423,0.658018,0.0521297,0.583009,0.836801,0.360288,0.964883,0.179748,0.555863,0.661071,0.187394,0.520473,0.883432,0.523036,0.912512,0.717262,0.716803,0.32128,0.961962,0.573191,0.261433,0.150249,0.696261,0.779225,0.0708565,0.716685,0.00296915,0.808187,0.0165538,0.562292,0.426331,0.619517,0.823711,0.184667,0.311276,0.268081,0.140005,0.522956,0.68248,0.199112,0.607369,0.869255,0.21993,0.48511,0.225114,0.695839,0.199199,0.425599,0.542032,0.932991,0.571396,0.218712,0.650006,0.860427,0.0869269,0.29597,0.123554,0.239821,0.0737897,0.920273,0.26783,0.407404,0.0855755,0.35328,0.0145385,0.941841,0.645858,0.742912,0.590568,0.458203,0.160761,0.379527,0.512292,0.239372,0.863501,0.215897,0.954367,0.757465,0.522864,0.63323,0.603513,0.675757,0.366847,0.943503,0.31562,0.906625,0.784944,0.23485,0.643646,0.984328,0.29088,0.601913,0.979858,0.376017,0.862403,0.272494,0.00644892,0.956105,0.674442,0.434194,0.461304,0.602447,0.184388,0.251191,0.417117,0.0315852,0.978772,0.168332,0.228093,0.214109,0.280092,0.532867,0.461463,0.791543,0.804636,0.417017,0.622877,0.941899,0.969346,0.543114,0.439539,0.74547,0.571362,0.647323,0.0196107,0.322686,0.666209,0.692823,0.460847,0.454596,0.21083,0.715256,0.730658,0.787206,0.54415,0.0697549,0.646222,0.956451,0.300923,0.0720723,0.700795,0.844145,0.492877,0.0988696,0.119083,0.585007,0.756,0.683166,0.0308706,0.815697,0.165704,0.884845,0.206445,0.0114237,0.962737,0.834777,0.714546,0.670541,0.520593,0.306355,0.92527,0.262147,0.33467,0.376486,0.130073,0.316706,0.578906,0.207333,0.119177,0.787657,0.351581,0.587343,0.994927,0.965325,0.413831,0.491512,0.719325,0.31262,0.886928,0.963562,0.722658,0.0543989,0.082762,0.289291,0.529869,0.579577,0.881419,0.882383,0.550217,0.93253,0.908059,0.184075,0.123922,0.532464,0.550629,0.178313,0.163584,0.203016,0.00176501,0.655273,0.781561,0.314202,0.614809,0.723587,0.600635,0.738489,0.310988,0.500045,0.256941,0.336898,0.530132,0.36615,0.632708,0.130437,0.9197,0.914911,0.544282,0.362163,0.621987,0.972109,0.723448,0.00436884,0.60137,0.304547,0.619371,0.508771,0.611842,0.487457,0.167247,0.104689,0.880388,0.98036,0.694398,0.0878177,0.637589,0.0759323,0.133698,0.636903,0.486711,0.813921,0.684563,0.0777328,0.404407,0.245986,0.478567,0.134848,0.309771,0.984111,0.281488,0.272745,0.784697,0.0990065,0.926173,0.311772,0.00882852,0.906062,0.072235,0.831081,0.911438,0.241913,0.505739,0.0860066,0.451172,0.369811,0.694811,0.833706,0.569279,0.951874,0.630921,0.985127,0.335963,0.0155549,0.590538,0.54314,0.0245235,0.0946124,0.765251,0.31105,0.471596,0.541694,0.0214427,0.499399,0.325369,0.58861,0.949705,0.329934,0.28508,0.639103,0.276347,0.445335,0.279404,0.919458,0.921507,0.438392,0.305265,0.27702,0.727268,0.237507,0.0414197,0.61374,0.77772,0.697092,0.683964,0.713383,0.19025,0.576681,0.105351,0.344264,0.849593,0.430085,0.713109,0.98756,0.81481,0.44461,0.226026,0.182777,0.861849,0.973246,0.187623,0.792286,0.595662,0.390957,0.377671,0.629735,0.256147,0.312131,0.533618,0.0435335,0.565277,0.115957,0.197015,0.45437,0.211864,0.368983,0.0745706,0.38096,0.927015,0.335865,0.0565387,0.670278,0.0665667,0.170202,0.7243,0.031343,0.367485,0.595387,0.348105,0.830356,0.168027,0.0618624,0.484296,0.477333,0.486063,0.859923,0.252817,0.924782,0.49912,0.538991,0.473423,0.480682,0.843831,0.0338565,0.28618,0.581972,0.178897,0.258989,0.894436,0.529031,0.180617,0.238115,0.128089,0.0661317,0.306684,0.908717,0.144255,0.942908,0.411472,0.451438,0.67718,0.366189,0.256993,0.779993,0.146646,0.845693,0.536085,0.305172,0.0520579,0.859679,0.439904,0.051169,0.0694852,0.602933,0.643142,0.520256,0.300259,0.0602115,0.94893,0.93189,0.916298,0.986981,0.208019,0.476487,0.599574,0.250061,0.597201,0.520453,0.793047,0.507533,0.521213,0.315121,0.87729,0.769858,0.609343,0.0377617,0.572329,0.991589,0.945327,0.764513,0.8524,0.147749,0.176422,0.467379,0.597339,0.753573,0.831885,0.963205,0.411636,0.346011,0.377765,0.80967,0.661216,0.703498,0.731673,0.133089,0.230969,0.417472,0.959244,0.615613,0.112693,0.904663,0.753862,0.52346,0.950251,0.592922,0.779573,0.762048,0.849877,0.83334,0.0602589,0.286109,0.951297,0.0600856,0.159901,0.717386,0.322946,0.0347901,0.728773,0.18921,0.232074,0.779665,0.908875,0.80313,0.253936,0.0652962,0.00534838,0.147253,0.938171,0.225847,0.537886,0.0922357,0.386625,0.753316,0.375674,0.695738,0.188421,0.562451,0.900829,0.42012,0.713648,0.0697917,0.534343,0.260306,0.619634,0.29232,0.987412,0.933498,0.224361,0.726758,0.540835,0.206228,0.0867251,0.174769,0.114419,0.546689,0.806774,0.983549,0.843099,0.793549,0.995987,0.375927,0.813331,0.895474,0.448754,0.245615,0.87295,0.623807,0.0837914,0.765882,0.145647,0.93826,0.741927,0.161345,0.218218,0.248507,0.146203,0.664067,0.362675,0.107442,0.237079,0.927934,0.61339,0.265961,0.151019,0.632711,0.785809,0.944093,0.836155,0.810551,0.993531,0.705065,0.220926,0.753232,0.900365,0.584309,0.859822,0.778187,0.846161,0.766903,0.280299,0.688858,0.646229,0.688977,0.171595,0.178757,0.958837,0.500813,0.143896,0.392473,0.214851,0.055468,0.142274,0.360546,0.171556,0.00991851,0.206644,0.212732,0.144047,0.831698,0.84297,0.464118,0.936036,0.380397,0.0329248,0.933891,0.859975,0.293767,0.706264,0.923231,0.441168,0.438512,0.513492,0.131002,0.672856,0.390719,0.858245,0.113811,0.264822,0.962339,0.406057,0.589157,0.979734,0.341128,0.459988,0.0198045,0.658531,0.871302,0.603384,0.0771718,0.67041,0.00991231,0.777786,0.496116,0.881736,0.132723,0.162988,0.247878,0.76766,0.890926,0.923707,0.90306,0.764753,0.25919,0.499415,0.365264,0.543648,0.820789,0.699202,0.00971413,0.266852,0.393353,0.512943,0.0816859,0.809575,0.938022,0.192937,0.0432625,0.204981,0.0572687,0.0876307,0.00546342,0.50603,0.157907,0.190738,0.788196,0.496955,0.0835102,0.220246,0.359708,0.134793,0.702249,0.43682,0.552104,0.204942,0.322324,0.520282,0.690161,0.112932,0.194886,0.733849,0.505642,0.643723,0.909079,0.719374,0.39994,0.508567,0.895138,0.523452,0.548737,0.146486,0.939289,0.597945,0.667939,0.760249,0.0378146,0.754683,0.0634515,0.18524,0.440273,0.678266,0.29752,0.123729,0.190201,0.659279,0.698689,0.95025,0.806821,0.836536,0.446688,0.218889,0.795124,0.35354,0.273593,0.172927,0.142956,0.248959,0.377768,0.792885,0.807693,0.831295,0.827055,0.5462,0.751576,0.772858,0.529197,0.638195,0.840082,0.321502,0.929963,0.0464326,0.356336,0.591864,0.46608,0.345454,0.0889682,0.424448,0.394503,0.963164,0.237924,0.592499,0.927777,0.890774,0.24961,0.517798,0.643368,0.799257,0.497571,0.455593,0.275451,0.89517,0.205428,0.187952,0.859522,0.0344179,0.743467,0.0313894,0.0845286,0.482859,0.756793,0.0596344,0.674908,0.696026,0.122084,0.244675,0.139466,0.456401,0.293863,0.122451,0.957224,0.256603,0.166261,0.0389498,0.000533819,0.879194,0.301306,0.6345,0.0983632,0.32076,0.336953,0.272612,0.266436,0.195997,0.938969,0.943408,0.496749,0.130233,0.103746,0.281956,0.885117,0.585357,0.819912,0.242681,0.0993084,0.316761,0.241594,0.984792,0.651559,|0.312844,0.683501,0.695685,0.792142,0.848562,0.135077,0.502074,0.939723,0.243427,0.343732,0.603103,0.673141,0.122238,0.500767,0.624533,0.190666,0.072136,0.0380313,0.33357,0.103838,0.332717,0.99974,0.548366,0.269197,0.980568,0.419224,0.740769,0.858538,0.222291,0.836376,0.69222,0.102992,0.308752,0.117205,0.0367516,0.289417,0.535522,0.0301248,0.17198,0.800368,0.239623,0.582475,0.398233,0.853593,0.616105,0.363681,0.00855953,0.736273,0.401505,0.996646,0.806889,0.00905645,0.454641,0.341536,0.881976,0.812099,0.0531942,0.643428,0.827266,0.730916,0.944241,0.509309,0.818746,0.341877,0.15835,0.699591,0.143973,0.62129,0.771139,0.578143,0.171381,0.473486,0.132167,0.199734,0.706778,0.112662,0.469642,0.153847,0.901243,0.800632,0.700656,0.44199,0.285247,0.123947,0.639157,0.76998,0.159774,0.918561,0.986563,0.261085,0.62619,0.613159,0.50101,0.500948,0.862766,0.493234,0.800051,0.0846074,0.483002,0.456521,0.640954,0.587196,0.738394,0.481831,0.830361,0.195809,0.660854,0.31724,0.322666,0.660404,0.0176128,0.925659,0.429078,0.723514,0.921411,0.95592,0.99004,0.926373,0.827012,0.266199,0.273213,0.243048,0.663936,0.395947,0.321738,0.888414,0.0677006,0.115497,0.914991,0.682726,0.911154,0.47824,0.586469,0.519075,0.802174,0.773933,0.758007,0.272621,0.948923,0.267871,0.921362,0.655634,0.304283,0.885074,0.489704,0.812894,0.816997,0.525044,0.625847,0.670734,0.201728,0.84543,0.768547,0.627563,0.964436,0.0628245,0.308903,0.117067,0.499641,0.460942,0.108943,0.906037,0.433957,0.0951276,0.300561,0.79884,0.186181,0.018526,0.327277,0.249089,0.49321,0.871813,0.459946,0.61363,0.32018,0.700091,0.587003,0.0445213,0.361322,0.169608,0.371119,0.0911406,0.619429,0.408557,0.108278,0.614713,0.573854,0.35414,0.98735,0.72703,0.456857,0.656657,0.833764,0.233419,0.26266,0.628122,0.26433,0.857716,0.84815,0.996897,0.383466,0.293172,0.171076,0.39703,0.893922,0.86992,0.700035,0.853581,0.56877,0.181415,0.00864917,0.257902,0.673395,0.565641,0.85073,0.881606,0.62414,0.523343,0.734567,0.837824,0.810161,0.834884,0.498388,0.213846,0.492032,0.577417,0.0248141,0.804195,0.309737,0.92272,0.785149,0.902328,0.447758,0.445057,0.676362,0.385045,0.373743,0.274875,0.857286,0.942994,0.263514,0.748004,0.89069,0.107508,0.528095,0.0929405,0.113433,0.185298,0.797052,0.667479,0.718072,0.0679747,0.294661,0.281295,0.86061,0.13037,0.770188,0.725625,0.88445,0.274867,0.398608,0.162352,0.00724286,0.850384,0.302402,0.846102,0.746862,0.353454,0.380044,0.33632,0.602893,0.391063,0.636054,0.251553,0.302014,0.064795,0.349057,0.0652331,0.750228,0.416665,0.709825,0.203557,0.14048,0.633262,0.544764,0.967284,0.445698,0.0647582,0.999336,0.883521,0.619161,0.826417,0.758754,0.829531,0.376312,0.894352,0.777093,0.597632,0.91437,0.0924432,0.579433,0.874625,0.0495941,0.866421,0.723436,0.200474,0.237494,0.187073,0.662049,0.0828657,0.806225,0.763426,0.848598,0.0106934,0.202828,0.289168,0.929488,0.150265,0.422619,0.359246,0.543867,0.772271,0.985537,0.397855,0.249158,0.744063,0.0954339,0.797152,0.951419,0.622211,0.153228,0.452486,0.483413,0.19548,0.398805,0.976854,0.467079,0.274226,0.160111,0.781359,0.96961,0.658546,0.127953,0.49024,0.229004,0.929594,0.984891,0.348542,0.858825,0.791456,0.498149,0.568301,0.295041,0.970658,0.965006,0.771953,0.301409,0.581878,0.507374,0.249875,0.0972181,0.328821,0.622543,0.729515,0.0979936,0.866898,0.987877,0.0931664,0.760584,0.501715,0.317767,0.26124,0.792326,0.895893,0.922914,0.99237,0.614605,0.0610213,0.1789,0.812883,0.803277,0.627767,0.76944,0.310785,0.821337,0.0583438,0.405036,0.538465,0.876554,0.132016,0.498621,0.346761,0.645638,0.804081,0.996803,0.530093,0.741854,0.915036,0.413882,0.146403,0.897045,0.117776,0.343903,0.37801,0.241606,0.401924,0.58888,0.865417,0.0141678,0.694365,0.11802,0.259166,0.402647,0.960163,0.187474,0.0926918,0.610131,0.527114,0.692082,0.201694,0.303803,0.395968,0.186055,0.690411,0.913323,0.0452547,0.673508,0.476491,0.206996,0.546067,0.0642259,0.437519,0.381679,0.771797,0.16707,0.466497,0.741331,0.411648,0.523523,0.66216,0.875033,0.347055,0.487606,0.210585,0.99113,0.692871,0.957613,0.250662,0.485823,0.0357799,0.296773,0.658936,0.460262,0.5941,0.251283,0.793681,0.142565,0.489515,0.474566,0.0211844,0.0735968,0.251721,0.70505,0.976798,0.544345,0.573768,0.680605,0.900368,0.132166,0.370741,0.185728,0.499129,0.640817,0.833409,0.0486743,0.900625,0.722063,0.841463,0.269945,0.229903,0.472601,0.750297,0.0673812,0.855962,0.105973,0.520944,0.723416,0.726436,0.0703659,0.473422,0.46461,0.839049,0.0722203,0.804795,0.100913,0.236626,0.831489,0.201545,0.551441,0.178218,0.932186,0.484727,0.968305,0.139434,0.0834329,0.439501,0.72361,0.802932,0.349965,0.459895,0.220044,0.592935,0.0504146,0.791532,0.964143,0.523825,0.286099,0.812342,0.775756,0.42575,0.544535,0.849272,0.573879,0.264461,0.725769,0.281817,0.790797,0.858166,0.497754,0.345709,0.0447797,0.397676,0.29372,0.958719,0.488716,0.303044,0.179452,0.176696,0.741484,0.0333627,0.377128,0.11174,0.944675,0.565546,0.105457,0.593587,0.796962,0.911705,0.416817,0.37873,0.743732,0.516101,0.0609322,0.162211,0.0743257,0.382237,0.448837,0.153958,0.880183,0.0518081,0.372413,0.569538,0.378443,0.275761,0.851665,0.452978,0.788643,0.401995,0.351324,0.496692,0.247345,0.560314,0.42317,0.498964,0.327248,0.777653,0.0285699,0.0780599,0.299877,0.202192,0.174193,0.452713,0.994218,0.511801,0.969972,0.819192,0.770408,0.635178,0.118557,0.368922,0.171942,0.238371,0.421449,0.328485,0.154861,0.0140301,0.827007,0.63173,0.690082,0.0123975,0.560436,0.306784,0.85201,0.916045,0.717856,0.937505,0.922162,0.012026,0.70304,0.0793024,0.436219,0.135046,0.107638,0.355405,0.615175,0.871542,0.372436,0.546553,0.231674,0.413542,0.0281348,0.292995,0.198482,0.955441,0.597599,0.883272,0.457768,0.419462,0.256088,0.303851,0.679961,0.724637,0.250862,0.535418,0.64353,0.885711,0.0672326,0.0319362,0.247849,0.0222842,0.957604,0.422688,0.300165,0.736753,0.629226,0.0134258,0.356794,0.330273,0.373127,0.773266,0.437363,0.0950571,0.324087,0.17341,0.697464,0.294631,0.757115,0.578899,0.884096,0.512413,0.0294416,0.741831,0.826048,0.250094,0.742727,0.374378,0.23866,0.0259598,0.681294,0.308986,0.721667,0.930441,0.985193,0.221672,0.975406,0.198214,0.15577,0.461861,0.352593,0.255794,0.636789,0.699067,0.955116,0.167307,0.215311,0.457948,0.810277,0.188754,0.439037,0.281733,0.740662,0.622747,0.481887,0.114015,0.996751,0.506917,0.203807,0.683163,0.397964,0.27848,0.54218,0.800227,0.03929,0.989953,0.886411,0.254727,0.9412,0.136915,0.944338,0.772137,0.0539569,0.0949686,0.689819,0.697283,0.946204,0.477076,0.183328,0.0796139,0.567875,0.944233,0.0516684,0.188893,0.950023,0.146609,0.229392,0.70388,0.102766,0.41121,0.820594,0.970169,0.824313,0.269129,0.221638,0.349031,0.220389,0.166378,0.10814,0.324885,0.809905,0.369789,0.756074,0.944403,0.667708,0.694003,0.319763,0.906873,0.297116,0.523677,0.453911,0.281792,0.183302,0.130432,0.544817,0.345617,0.104034,0.325569,0.255271,0.390834,0.318266,0.0238656,0.477722,0.473469,0.986439,0.326583,0.0662125,0.655771,0.806884,0.916139,0.215389,0.670403,0.274071,0.625774,0.460885,0.419234,0.413736,0.258676,0.137894,0.876828,0.927512,0.374539,0.594331,0.82578,0.194546,0.272579,0.904261,0.494965,0.577438,0.863723,0.338429,0.0213996,0.695578,0.164342,0.121667,0.0358346,0.873731,0.788057,0.741767,0.765755,0.155061,0.127537,0.737595,0.590874,0.943587,0.466368,0.682604,0.515955,0.357116,0.0139539,0.136209,0.644927,0.405833,0.0602029,0.671595,0.654881,0.596688,0.238481,0.0693247,0.861555,0.759391,0.296456,0.987171,0.46752,0.943528,0.364702,0.220692,0.609317,0.250374,0.95076,0.457496,0.417707,0.288595,0.473603,0.608575,0.410607,0.830482,0.625106,0.782056,0.272945,0.373244,0.694953,0.611621,0.0528387,0.405085,0.240373,0.312251,0.664315,0.411672,0.22725,0.299315,0.815262,0.689649,0.237831,0.157672,0.487929,0.120531,0.277341,0.905991,0.0712501,0.0223517,0.0716363,0.31504,0.768601,0.595231,0.429985,0.215447,0.248616,0.795981,0.802418,0.953112,0.820921,0.720167,0.993004,0.101769,0.684729,0.975803,0.770971,0.749863,0.840796,0.637609,0.728323,0.702935,0.688744,0.478106,0.844673,0.404346,0.436358,0.887733,0.176981,0.42183,0.971956,0.704523,0.550083,0.197632,0.0373424,0.218183,0.479382,0.290076,0.396582,0.426039,0.272289,0.19041,0.449806,0.644971,0.962696,0.943313,0.468251,0.0757845,0.984295,0.225986,0.963859,0.848787,0.24888,0.0773671,0.227339,0.250696,0.194486,0.58702,0.81136,0.79792,0.191749,0.53033,0.902337,0.636809,0.157029,0.492396,0.623439,0.534315,0.92602,0.400065,0.760847,0.260028,0.141019,0.913435,0.253758,0.897443,0.529552,0.177223,0.171835,0.736313,0.815256,0.151151,0.546754,0.205923,0.135873,0.52851,0.0997801,0.72211,0.706234,0.134383,0.597126,0.983364,0.235379,0.486525,0.471486,0.384128,0.0869255,0.164892,0.503973,0.722377,0.427454,0.981925,0.921812,0.400925,0.737702,0.0843632,0.585232,0.358896,0.790958,0.666684,0.591962,0.315575,0.450663,0.817434,0.589897,0.46296,0.0438254,0.0523895,0.49778,0.397486,0.989406,0.719987,0.381872,0.803227,0.764973,0.532766,0.711379,0.305136,0.281453,0.624256,0.56632,0.261218,0.0680313,0.826166,0.797061,0.932154,0.520817,0.222614,0.0588635,0.661631,0.305935,|0.325427,0.321555,0.989263,0.241306,0.592527,0.923999,0.282132,0.270591,0.0221722,0.95869,0.783526,0.851527,0.186125,0.831895,0.131775,0.544192,0.465564,0.405122,0.0403402,0.329123,0.642062,0.919571,0.929177,0.0499921,0.932872,0.920057,0.799081,0.74735,0.287696,0.755871,0.130493,0.828423,0.795063,0.424482,0.998507,0.648876,0.468682,0.820542,0.389218,0.633321,0.644175,0.146284,0.716457,0.967964,0.335523,0.194656,0.0818538,0.121388,0.64163,0.812854,0.687598,0.138088,0.736387,0.0859349,0.880422,0.0248416,0.662484,0.0169863,0.951985,0.056776,0.804072,0.915136,0.0530387,0.0363877,0.325284,0.171655,0.26623,0.511561,0.685582,0.305664,0.665155,0.282271,0.591586,0.99178,0.433656,0.556704,0.302327,0.379853,0.429898,0.0527313,0.778314,0.538347,0.482829,0.708775,0.418494,0.593687,0.659568,0.715156,0.798239,0.986945,0.883972,0.676097,0.785625,0.125511,0.463396,0.749023,0.796671,0.0597451,0.348311,0.458445,0.609802,0.397476,0.611099,0.365666,0.0803868,0.484606,0.692413,0.45626,0.771704,0.229382,0.710427,0.74042,0.417559,0.612784,0.687318,0.462761,0.638258,0.315788,0.572169,0.578726,0.288094,0.104227,0.933237,0.0110141,0.361914,0.0196874,0.571858,0.330585,0.758494,0.75209,0.996933,0.777138,0.647695,0.806085,0.889975,0.145438,0.765698,0.51097,0.0215026,0.892514,0.91388,0.281343,0.863474,0.37634,0.554745,0.125721,0.716278,0.849179,0.542888,0.414099,0.0130316,0.010316,0.328312,0.995547,0.51534,0.149307,0.521146,0.28579,0.353906,0.284762,0.936038,0.371069,0.449955,0.664141,0.173428,0.798263,0.47261,0.130772,0.737812,0.727247,0.290558,0.264547,0.115547,0.15448,0.291766,0.923581,0.298806,0.56752,0.87037,0.473106,0.231597,0.479289,0.0586361,0.753303,0.470103,0.611703,0.765668,0.979856,0.625689,0.236197,0.0892498,0.0173838,0.521639,0.810572,0.875841,0.158691,0.62051,0.751813,0.185493,0.092949,0.533611,0.926428,0.801955,0.574849,0.122549,0.27143,0.744736,0.293266,0.397718,0.396961,0.56072,0.683579,0.248655,0.609818,0.417133,0.796578,0.515532,0.723119,0.477215,0.793625,0.143674,0.94303,0.770975,0.741697,0.483182,0.08933,0.470439,0.537758,0.821849,0.982533,0.099838,0.444547,0.433335,0.869978,0.0172992,0.297251,0.55259,0.474567,0.200754,0.965413,0.571806,0.764565,0.0561128,0.284932,0.0975093,0.566066,0.7194,0.510539,0.262616,0.683655,0.0587818,0.0843544,0.991178,0.859517,0.473149,0.174448,0.762959,0.627754,0.131341,0.199748,0.0237334,0.0402815,0.69568,0.807424,0.932683,0.392203,0.401275,0.49291,0.750064,0.639202,0.124142,0.1943,0.29761,0.207274,0.0776781,0.498692,0.0431612,0.0372033,0.678745,0.799619,0.637562,0.935374,0.508115,0.841639,0.516691,0.861065,0.258633,0.781293,0.138018,0.104273,0.981159,0.176929,0.546914,0.939663,0.635214,0.871335,0.0105022,0.0124611,0.655472,0.523921,0.961238,0.291824,0.479196,0.181166,0.352011,0.740224,0.399285,0.282062,0.319477,0.364502,0.913199,0.319813,0.10559,0.56787,0.36895,0.535235,0.490428,0.00279582,0.552741,0.678169,0.738838,0.473281,0.852476,0.567242,0.390941,0.293562,0.588943,0.337737,0.806269,0.193066,0.27267,0.0578948,0.326635,0.526735,0.849989,0.16035,0.441184,0.442404,0.661517,0.487827,0.894878,0.481699,0.104905,0.705068,0.140877,0.221728,0.721348,0.6268,0.288621,0.205752,0.725559,0.158472,0.538793,0.629242,0.698351,0.165449,0.37813,0.932877,0.0446197,0.80012,0.495841,0.688295,0.622887,0.765783,0.584211,0.119519,0.946236,0.620718,0.332244,0.516469,0.972581,0.645574,0.155285,0.0880963,0.408266,0.584738,0.818697,0.837375,0.858938,0.626183,0.348085,0.0205947,0.539319,0.993245,0.659922,0.0506118,0.480128,0.574467,0.567633,0.387384,0.377332,0.587897,0.0276736,0.261375,0.0774878,0.584144,0.0889521,0.847337,0.86577,0.76595,0.528286,0.405827,0.83004,0.0701382,0.0512983,0.684074,0.912695,0.568691,0.132658,0.0554194,0.363935,0.86609,0.909849,0.147787,0.21213,0.554897,0.375473,0.584317,0.404518,0.574867,0.0543429,0.499768,0.189585,0.189966,0.687255,0.727094,0.350976,0.889439,0.6575,0.918306,0.369913,0.0556676,0.387893,0.635345,0.551173,0.410601,0.114432,0.409738,0.790299,0.157013,0.317644,0.810787,0.0327268,0.509223,0.47762,0.353113,0.453324,0.921955,0.45714,0.428127,0.683384,0.693774,0.299808,0.231079,0.29765,0.367304,0.233339,0.522182,0.541754,0.692957,0.564158,0.342981,0.492779,0.582771,0.784826,0.448163,0.905169,0.815704,0.393723,0.638652,0.251628,0.174781,0.207928,0.697518,0.688223,0.348731,0.458056,0.316364,0.566423,0.610374,0.412589,0.937682,0.330709,0.409928,0.177538,0.016353,0.780817,0.00491142,0.72683,0.422265,0.986988,0.658482,0.499204,0.817566,0.430036,0.415415,0.67407,0.148833,0.0346286,0.742666,0.962354,0.421003,0.164865,0.13283,0.525808,0.126418,0.0385543,0.115788,0.831152,0.29055,0.31336,0.851458,0.585356,0.0960531,0.448696,0.607675,0.196285,0.0553761,0.757403,0.00750601,0.247872,0.373734,0.920495,0.442252,0.163402,0.0153129,0.190588,0.553473,0.726977,0.958161,0.548471,0.385193,0.979809,0.389356,0.258465,0.672933,0.0577699,0.834551,0.158576,0.00287926,0.269121,0.089498,0.168172,0.190833,0.35186,0.631906,0.341302,0.263041,0.851951,0.822152,0.921886,0.0552802,0.821018,0.00704014,0.822429,0.54588,0.4315,0.547473,0.585302,0.866172,0.864521,0.675188,0.355791,0.15715,0.947943,0.598466,0.592853,0.698885,0.311664,0.538488,0.56193,0.537344,0.298275,0.351443,0.346182,0.0206779,0.598329,0.790255,0.921277,0.00139666,0.264147,0.449696,0.803127,0.484321,0.70241,0.536822,0.98011,0.492619,0.1448,0.255114,0.0424719,0.482921,0.440149,0.821241,0.556819,0.774996,0.29732,0.0106589,0.200468,0.64981,0.27971,0.00916964,0.815199,0.906412,0.668989,0.626713,0.485859,0.914435,0.0339897,0.684575,0.0265386,0.118252,0.263583,0.152507,0.971044,0.194024,0.357678,0.229682,0.614192,0.339372,0.621239,0.782598,0.58492,0.0629709,0.529523,0.700641,0.770427,0.720118,0.66317,0.409441,0.838987,0.225693,0.80297,0.0847262,0.405242,0.958162,0.833562,0.880185,0.597154,0.489481,0.446603,0.902618,0.304577,0.942354,0.443296,0.173892,0.824181,0.06387,0.0852449,0.465437,0.378551,0.969747,0.493037,0.209882,0.402732,0.0971473,0.463003,0.721874,0.877472,0.574837,0.45244,0.729831,0.00122678,0.841838,0.150919,0.773061,0.503047,0.0374894,0.241997,0.75591,0.459491,0.915098,0.673342,0.25183,0.185816,0.747794,0.00673813,0.495372,0.453196,0.170667,0.524035,0.449211,0.00241488,0.505714,0.324214,0.997758,0.347595,0.410226,0.718301,0.927211,0.0699555,0.694624,0.822969,0.538373,0.704483,0.690129,0.531672,0.449234,0.286261,0.865767,0.397857,0.521713,0.87726,0.86083,0.0567918,0.668248,0.738314,0.469214,0.0736454,0.847255,0.73918,0.886086,0.824974,0.0641325,0.319604,0.505615,0.973065,0.743461,0.571698,0.798126,0.667143,0.872703,0.725588,0.9183,0.0909814,0.130964,0.722201,0.0113558,0.734037,0.345928,0.944455,0.129078,0.4285,0.367458,0.299626,0.489548,0.647729,0.580672,0.576525,0.209523,0.357526,0.118417,0.206791,0.140157,0.157537,0.193215,0.837725,0.927519,0.727827,0.162781,0.325807,0.980223,0.53471,0.417654,0.910878,0.662283,0.758141,0.0252259,0.077927,0.644811,0.619049,0.607679,0.843571,0.428281,0.312427,0.379254,0.010113,0.907283,0.176625,0.678893,0.983815,0.692195,0.695508,0.676535,0.318389,0.512465,0.0248975,0.466284,0.775661,0.466683,0.960358,0.344778,0.772768,0.142842,0.253212,0.0868108,0.288104,0.875217,0.995378,0.602801,0.298472,0.370523,0.395595,0.052716,0.498749,0.439011,0.294658,0.715766,0.98582,0.421045,0.644713,0.725494,0.96113,0.931175,0.110786,0.392759,0.834524,0.184472,0.110819,0.915683,0.365909,0.721864,0.205921,0.679996,0.745445,0.113139,0.869561,0.891072,0.80366,0.798927,0.27766,0.0264606,0.697478,0.475633,0.387604,0.546471,0.482937,0.804306,0.33543,0.723148,0.625881,0.53932,0.192688,0.746676,0.648244,0.970166,0.635247,0.437179,0.165088,0.611858,0.34807,0.604606,0.0906351,0.153343,0.630673,0.516503,0.191479,0.421783,0.47992,0.0639371,0.623869,0.491054,0.0289097,0.440166,0.0186593,0.370332,0.156243,0.677986,0.974951,0.597972,0.544856,0.990188,0.361885,0.53073,0.574153,0.935768,0.247866,0.273386,0.230286,0.359135,0.406086,0.355148,0.602658,0.0997165,0.629046,0.450395,0.273341,0.337784,0.0460061,0.148165,0.0825872,0.940048,0.451126,0.857,0.516212,0.260633,0.221019,0.221392,0.833706,0.0944059,0.638597,0.940976,0.791122,0.212675,0.372319,0.548147,0.239204,0.117008,0.507062,0.349931,0.110744,0.609277,0.890207,0.495178,0.858605,0.396385,0.795141,0.0655569,0.194893,0.134924,0.447285,0.310352,0.350046,0.0880879,0.317019,0.549888,0.681119,0.389502,0.539641,0.292485,0.733659,0.515318,0.811582,0.766301,0.383168,0.775749,0.709017,0.946489,0.1548,0.751083,0.996957,0.270445,0.892217,0.0585389,0.334633,0.036062,0.964447,0.912495,0.954835,0.711817,0.0922982,0.226839,0.705961,0.362494,0.293404,0.777432,0.749745,0.834117,0.650737,0.179558,0.308708,0.00200886,0.64195,0.166196,0.805849,0.241652,0.376991,0.028477,0.298635,0.650369,0.0628947,0.502652,0.788137,0.36113,0.225715,0.0440947,0.574635,0.106519,0.103656,0.288209,0.550879,0.411718,0.76357,0.36309,0.846657,0.940865,0.854398,0.819802,0.116763,0.941834,0.398092,0.962988,0.114198,0.912502,0.796163,0.653521,0.681001,0.835687,0.678479,0.745374,0.277372,0.413386,0.29384,0.936556,0.771029,0.832091,0.482217,0.544552,0.805007,0.655259,|0.867052,0.363877,0.682551,0.0312815,0.751457,0.130516,0.0278092,0.0534404,0.34703,0.0797479,0.832325,0.461247,0.284341,0.202109,0.191415,0.403238,0.990158,0.0855281,0.327193,0.319326,0.461124,0.624613,0.942495,0.439862,0.864595,0.434507,0.471804,0.817998,0.399464,0.501326,0.917051,0.942735,0.4987,0.605593,0.186904,0.212108,0.524159,0.111293,0.602083,0.280745,0.746829,0.381996,0.57928,0.1559,0.370425,0.56536,0.29265,0.913024,0.21166,0.360966,0.105998,0.868189,0.395297,0.673029,0.391994,0.192378,0.290895,0.438195,0.413087,0.83481,0.752619,0.122863,0.636073,0.316387,0.531134,0.934564,0.670985,0.718726,0.71146,0.9463,0.560913,0.936,0.976706,0.731331,0.707659,0.825431,0.821779,0.825548,0.373601,0.586251,0.309087,0.862467,0.93219,0.035819,0.623866,0.964055,0.962136,0.0151882,0.867897,0.577603,0.31203,0.871089,0.0996523,0.270181,0.361894,0.798565,0.837484,0.520982,0.971021,0.889452,0.226075,0.763453,0.831258,0.195437,0.52835,0.173406,0.914999,0.0801587,0.00543344,0.93107,0.0446782,0.417041,0.305035,0.480972,0.364744,0.879905,0.354564,0.274501,0.987893,0.36618,0.117032,0.98682,0.374772,0.645175,0.297947,0.429945,0.893674,0.0729984,0.383204,0.817147,0.232769,0.123312,0.816953,0.581281,0.623344,0.378231,0.510605,0.796797,0.454186,0.717617,0.58227,0.746179,0.895742,0.155257,0.651948,0.014939,0.786757,0.479017,0.995518,0.359556,0.693637,0.478642,0.70303,0.0743184,0.01042,0.243727,0.79301,0.189159,0.570237,0.289511,0.759163,0.95994,0.789483,0.705656,0.292972,0.414234,0.325122,0.937194,0.11294,0.207394,0.555029,0.684728,0.809239,0.81913,0.993005,0.369606,0.83471,0.385372,0.727325,0.0818583,0.45716,0.624528,0.289112,0.59676,0.0517011,0.821236,0.862881,0.801297,0.221433,0.261027,0.932573,0.213013,0.459552,0.639644,0.700963,0.680511,0.0235393,0.0945136,0.0786037,0.174048,0.236949,0.970199,0.809197,0.848219,0.678952,0.385631,0.699776,0.809847,0.0514835,0.515419,0.677348,0.166824,0.378064,0.0184782,0.953841,0.0320281,0.715778,0.638187,0.558248,0.699705,0.389651,0.945928,0.450377,0.211121,0.87422,0.129966,0.137505,0.664212,0.357128,0.693951,0.533513,0.816698,0.170446,0.476083,0.00813997,0.823139,0.725121,0.864166,0.529752,0.229109,0.0696462,0.776666,0.390311,0.316196,0.439821,0.057375,0.442795,0.162943,0.349103,0.0870653,0.313213,0.1983,0.298916,0.785337,0.86384,0.707217,0.133069,0.473204,0.0555149,0.198435,0.637794,0.924956,0.892608,0.231211,0.174957,0.910141,0.0099225,0.260166,0.0868856,0.495358,0.713373,0.859832,0.73273,0.808759,0.783331,0.223629,0.963246,0.866385,0.889064,0.571827,0.238572,0.147429,0.0262097,0.0332791,0.151668,0.767518,0.299493,0.231877,0.324329,0.907682,0.569754,0.499376,0.328218,0.963651,0.481818,0.744306,0.920901,0.537257,0.035611,0.778203,0.620378,0.994333,0.163383,0.900014,0.578888,0.679232,0.382596,0.775447,0.482135,0.569265,0.591642,0.406485,0.276839,0.479587,0.0799889,0.668481,0.945696,0.074535,0.96627,0.478095,0.655168,0.16872,0.334281,0.205142,0.321672,0.0632367,0.59427,0.0168701,0.877521,0.330254,0.194278,0.659915,0.896552,0.0764909,0.586541,0.699052,0.0538155,0.367798,0.867701,0.114913,0.431421,0.315602,0.509932,0.763006,0.492669,0.483342,0.10552,0.803213,0.957224,0.306989,0.0619001,0.969772,0.822984,0.369855,0.679557,0.00206262,0.596234,0.338623,0.0974309,0.668912,0.488803,0.209,0.794979,0.401119,0.600882,0.895569,0.337126,0.503313,0.894766,0.508656,0.109928,0.578883,0.912948,0.614681,0.978602,0.619495,0.776358,0.746855,0.722804,0.172694,0.317128,0.302238,0.823957,0.901237,0.800713,0.7694,0.217309,0.412817,0.27835,0.0840345,0.141421,0.686896,0.753879,0.0197935,0.0116574,0.268414,0.720533,0.0608172,0.791769,0.893148,0.588448,0.953714,0.168709,0.824807,0.127453,0.671524,0.409518,0.38128,0.708589,0.431256,0.751076,0.955659,0.0316834,0.771511,0.958796,0.482513,0.943256,0.704397,0.656518,0.855921,0.815901,0.339725,0.93399,0.996051,0.373708,0.123931,0.710953,0.263193,0.560336,0.610463,0.709296,0.501515,0.780666,0.583418,0.716178,0.301185,0.910758,0.35991,0.525909,0.190732,0.351793,0.0347436,0.39181,0.652117,0.695527,0.0200332,0.670762,0.486567,0.00929868,0.399146,0.86948,0.721928,0.955608,0.148203,0.727997,0.642572,0.360417,0.77855,0.348364,0.562628,0.700721,0.0377094,0.609035,0.285965,0.524825,0.103531,0.242416,0.727503,0.794239,0.452314,0.901216,0.0983291,0.0290526,0.8918,0.463185,0.176454,0.724822,0.175258,0.130944,0.0813349,0.511049,0.301609,0.696706,0.514906,0.0795084,0.204151,0.352802,0.372711,0.581423,0.8361,0.897703,0.458773,0.274508,0.0443987,0.828019,0.467575,0.287037,0.359482,0.630321,0.190084,0.181966,0.541312,0.975653,0.599416,0.524473,0.0880709,0.669405,0.0222457,0.728326,0.691925,0.303452,0.16144,0.476388,0.606596,0.559985,0.537482,0.301603,0.140037,0.205404,0.231481,0.440227,0.312298,0.591226,0.790316,0.647044,0.661765,0.694864,0.228983,0.248565,0.453048,0.328552,0.420957,0.911945,0.467778,0.545625,0.841514,0.0663143,0.964677,0.0994436,0.0275873,0.669679,0.865088,0.863696,0.782371,0.90911,0.2922,0.472362,0.490207,0.159183,0.0723071,0.463196,0.970062,0.818715,0.169034,0.524601,0.404102,0.471054,0.125561,0.83877,0.0230522,0.592161,0.98844,0.93732,0.629967,0.978912,0.789024,0.714427,0.0560937,0.204072,0.731115,0.354081,0.992627,0.747006,0.594805,0.761928,0.165174,0.890487,0.416749,0.134246,0.511974,0.232764,0.302614,0.988865,0.940827,0.108223,0.54973,0.970622,0.923793,0.876032,0.00972307,0.457779,0.118569,0.591738,0.373673,0.415605,0.0159891,0.133781,0.191161,0.700432,0.552897,0.579082,0.873331,0.831289,0.478514,0.402584,0.70148,0.315485,0.973608,0.572101,0.696958,0.592735,0.192768,0.0665768,0.539197,0.379595,0.773114,0.137438,0.661575,0.754434,0.291025,0.941554,0.361377,0.720174,0.693092,0.72419,0.186841,0.59028,0.605046,0.154049,0.216613,0.582965,0.884849,0.756892,0.220565,0.266997,0.677829,0.402169,0.529904,0.158933,0.00873649,0.305566,0.429552,0.408586,0.693749,0.317184,0.7198,0.0957379,0.351485,0.272943,0.801367,0.319637,0.187992,0.828273,0.896842,0.997482,0.328389,0.574929,0.477033,0.470542,0.665885,0.856105,0.64585,0.641631,0.462548,0.763885,0.288393,0.565331,0.175752,0.622869,0.684409,0.642565,0.824621,0.0925003,0.0626119,0.818539,0.48835,0.529223,0.0159817,0.748863,0.2682,0.0245445,0.0462515,0.507133,0.847743,0.13115,0.878873,0.565286,0.216887,0.206781,0.0337677,0.979338,0.837625,0.076911,0.441553,0.963719,0.695728,0.382862,0.742453,0.750562,0.12125,0.203162,0.408082,0.738661,0.139691,0.330897,0.123432,0.00269294,0.0863825,0.809913,0.994806,0.631668,0.0218886,0.148953,0.0506534,0.59323,0.266443,0.64187,0.988516,0.443123,0.973238,0.900762,0.686544,0.725091,0.51571,0.280675,0.221995,0.47184,0.214567,0.845546,0.647113,0.848742,0.916617,0.786642,0.633595,0.256954,0.37559,0.165994,0.51256,0.0229527,0.530142,0.953289,0.562853,0.500186,0.81861,0.221356,0.164423,0.00103706,0.308923,0.316874,0.0625057,0.428773,0.467536,0.627787,0.429701,0.776213,0.207642,0.392299,0.45242,0.0979227,0.735138,0.902492,0.0710834,0.817762,0.944232,0.711161,0.389514,0.386035,0.367325,0.0902446,0.194108,0.848301,0.36295,0.245198,0.134989,0.70576,0.30085,0.794632,0.0808284,0.41156,0.553655,0.358754,0.381248,0.785013,0.760416,0.408614,0.989607,0.448282,0.103922,0.497346,0.536808,0.891547,0.484609,0.40651,0.00647879,0.798753,0.131583,0.259336,0.541965,0.853995,0.394219,0.740617,0.657726,0.788946,0.825904,0.860186,0.644073,0.39396,0.0297809,0.603388,0.97875,0.335158,0.67,0.836582,0.159293,0.151941,0.00551766,0.318463,0.162633,0.77763,0.46332,0.627058,0.929713,0.0944072,0.425111,0.771039,0.717524,0.467667,0.561084,0.0406005,0.912828,0.0972757,0.775096,0.59054,0.45517,0.271089,0.256243,0.515346,0.241275,0.825468,0.616971,0.563586,0.466709,0.202531,0.317452,0.388586,0.688363,0.719537,0.159134,0.070474,0.901921,0.747753,0.173857,0.271114,0.847819,0.00941366,0.474535,0.110411,0.303394,0.0756642,0.666758,0.440317,0.179009,0.472079,0.510781,0.192164,0.559661,0.753735,0.389807,0.937911,0.256037,0.242777,0.455736,0.2109,0.97032,0.791907,0.685091,0.317336,0.000771999,0.192419,0.340409,0.631925,0.659081,0.0829671,0.947002,0.370351,0.883632,0.928304,0.944841,0.221245,0.333391,0.606786,0.466853,0.484576,0.741978,0.834506,0.519511,0.0106361,0.96818,0.28413,0.137857,0.886697,0.84692,0.0430695,0.0174854,0.0511308,0.576825,0.764753,0.920605,0.914892,0.940436,0.581044,0.537994,0.859029,0.981276,0.116934,0.750448,0.202663,0.00493562,0.42416,0.985305,0.855973,0.0111268,0.70228,0.698388,0.867485,0.368051,0.468131,0.630274,0.602286,0.192367,0.532486,0.166555,0.756323,0.969326,0.72304,0.488495,0.824013,0.822345,0.902102,0.521321,0.59834,0.769909,0.274008,0.279003,0.439442,0.0134673,0.153535,0.0794519,0.832974,0.315326,0.527637,0.925272,0.30183,0.446008,0.0912167,0.50468,0.592744,0.182741,0.366711,0.852003,0.946683,0.746678,0.761858,0.567917,0.406279,0.203299,0.700044,0.124961,0.723577,0.564213,0.539212,0.565033,0.811361,0.785967,0.330472,0.560389,0.000206113,0.969999,0.821038,0.503933,0.317869,0.983818,0.889963,0.912978,0.735246,0.317257,0.172963,0.0470314,0.0585887,0.966817,0.0455427,0.721128,0.501739,0.657468,0.629649,0.722958,0.488639,0.471676,0.615296,0.225777,|0.029102,0.957381,0.17279,0.244386,0.956981,0.994947,0.871819,0.897759,0.56353,0.801327,0.131537,0.604084,0.693438,0.563437,0.830394,0.667809,0.810548,0.436765,0.689463,0.492949,0.58328,0.995385,0.216778,0.662074,0.661169,0.707542,0.546077,0.661056,0.42361,0.747979,0.876356,0.189459,0.301416,0.880687,0.8974,0.181125,0.950989,0.921655,0.0358448,0.108235,0.1486,0.171941,0.32757,0.331611,0.96888,0.0142608,0.696931,0.880996,0.831353,0.12737,0.783134,0.358704,0.284178,0.689071,0.70719,0.906768,0.221563,0.0922415,0.687281,0.0946742,0.432085,0.140274,0.48126,0.531537,0.51496,0.202932,0.0308018,0.593272,0.183978,0.364222,0.933498,0.147703,0.870633,0.206877,0.449015,0.603801,0.0974541,0.925945,0.602525,0.335352,0.296644,0.567583,0.983257,0.712979,0.835525,0.586637,0.464016,0.971592,0.903984,0.918131,0.119096,0.468846,0.43143,0.277482,0.575295,0.748871,0.0165712,0.566701,0.766932,0.936603,0.68185,0.803021,0.989064,0.00396603,0.189682,0.456498,0.300338,0.217259,0.446366,0.860286,0.988578,0.863451,0.856644,0.923027,0.64973,0.117181,0.241984,0.677557,0.622533,0.904588,0.587863,0.851391,0.158992,0.0257671,0.151269,0.511076,0.715304,0.751217,0.291231,0.326607,0.915087,0.923771,0.185439,0.743649,0.0746509,0.000407398,0.668539,0.571952,0.194013,0.467128,0.588659,0.972962,0.978521,0.449908,0.865812,0.295264,0.205102,0.235476,0.139178,0.61894,0.181226,0.495347,0.974769,0.743612,0.559212,0.951437,0.625441,0.959998,0.169438,0.574674,0.230041,0.129672,0.149887,0.110746,0.863011,0.151814,0.762423,0.949372,0.837916,0.384621,0.650379,0.0808169,0.596887,0.495248,0.344982,0.802698,0.665002,0.0566451,0.318795,0.912136,0.88595,0.436763,0.307109,0.947306,0.462178,0.287291,0.972183,0.960021,0.70026,0.855127,0.623019,0.936482,0.257051,0.948845,0.587047,0.187997,0.647437,0.357286,0.743936,0.694186,0.830717,0.741404,0.304328,0.114558,0.232633,0.71472,0.229949,0.222476,0.784096,0.737133,0.633207,0.209945,0.559687,0.779514,0.527283,0.417021,0.943244,0.0558695,0.74606,0.338645,0.178167,0.833059,0.602292,0.845341,0.678807,0.879107,0.274721,0.858114,0.815874,0.476668,0.929398,0.00772494,0.077036,0.855371,0.865359,0.879158,0.819348,0.348616,0.080874,0.0290139,0.503215,0.503663,0.530557,0.474279,0.0402116,0.530973,0.463269,0.626066,0.90039,0.0938767,0.91757,0.496277,0.411723,0.575138,0.378191,0.154245,0.482438,0.329378,0.435975,0.19498,0.115716,0.396276,0.915485,0.528435,0.891626,0.158272,0.328454,0.183324,0.826966,0.833125,0.257836,0.444579,0.731225,0.672556,0.645333,0.635832,0.849249,0.0418379,0.963489,0.649334,0.0546719,0.0457984,0.640463,0.256985,0.239899,0.782332,0.469873,0.423411,0.179182,0.0445753,0.957202,0.959826,0.852946,0.44768,0.699984,0.838818,0.14561,0.736978,0.869101,0.605994,0.684655,0.219288,0.377186,0.600726,0.106692,0.645141,0.0846978,0.879796,0.351088,0.385365,0.833569,0.01639,0.365448,0.638899,0.103591,0.280243,0.212203,0.116879,0.339381,0.992193,0.0800436,0.593917,0.475917,0.210094,0.768905,0.965132,0.73399,0.918427,0.928839,0.424495,0.513323,0.619422,0.934371,0.575596,0.695825,0.0567908,0.903781,0.820716,0.817881,0.649058,0.860678,0.0610021,0.858321,0.00132167,0.209379,0.4596,0.37462,0.768649,0.0420992,0.266465,0.648098,0.267166,0.413285,0.191438,0.52587,0.463438,0.668597,0.10067,0.0545575,0.454828,0.592183,0.618176,0.114049,0.738174,0.566498,0.511615,0.533297,0.143174,0.59647,0.611855,0.946264,0.296549,0.788878,0.273635,0.277313,0.853023,0.583712,0.893857,0.359939,0.203421,0.419234,0.183367,0.533208,0.540698,0.734828,0.98721,0.744523,0.388077,0.0134071,0.80568,0.361334,0.378221,0.806806,0.562167,0.424411,0.71431,0.744204,0.195707,0.21519,0.995509,0.289178,0.989986,0.908024,0.163156,0.590937,0.16028,0.981805,0.368474,0.352998,0.678642,0.299781,0.639058,0.639813,0.666875,0.06266,0.930454,0.18626,0.636017,0.020367,0.33927,0.560344,0.898353,0.503119,0.884625,0.486463,0.892147,0.984297,0.814389,0.212639,0.479122,0.257045,0.144607,0.938786,0.31874,0.593797,0.539779,0.271657,0.432846,0.938535,0.747882,0.0500752,0.00513363,0.479681,0.880409,0.341866,0.642235,0.231146,0.646166,0.964742,0.767626,0.477772,0.831924,0.864299,0.559761,0.550699,0.747839,0.11006,0.955073,0.0499251,0.943197,0.904152,0.939565,0.255611,0.432222,0.978114,0.93008,0.964501,0.970925,0.0679008,0.838549,0.577136,0.456898,0.236289,0.0921121,0.0173185,0.545764,0.540493,0.495105,0.42433,0.229666,0.658781,0.425477,0.170653,0.12326,0.439263,0.700958,0.681447,0.344955,0.658504,0.0487416,0.549586,0.0621342,0.50006,0.0736768,0.648904,0.521618,0.732421,0.230975,0.547205,0.968801,0.869456,0.15023,0.328101,0.225518,0.372979,0.738028,0.729699,0.39198,0.652452,0.541961,0.279399,0.517067,0.241947,0.429394,0.961114,0.199954,0.884377,0.90455,0.386961,0.292278,0.0735652,0.692693,0.697308,0.18377,0.0363304,0.682682,0.688486,0.00391912,0.970909,0.585671,0.0298414,0.857845,0.536153,0.997953,0.206608,0.770299,0.142548,0.790394,0.955581,0.402623,0.823512,0.479931,0.319408,0.235142,0.265364,0.245196,0.509615,0.542643,0.801726,0.989233,0.318853,0.417764,0.259712,0.225207,0.266338,0.0858698,0.31769,0.942149,0.617609,0.0906702,0.518274,0.292821,0.123018,0.269626,0.591109,0.704304,0.0854207,0.458987,0.27391,0.00619477,0.033684,0.0316606,0.181311,0.69447,0.537276,0.423363,0.691507,0.354478,0.303484,0.582899,0.281477,0.394225,0.720477,0.897447,0.968839,0.718377,0.304025,0.738663,0.648731,0.594566,0.304942,0.439784,0.870572,0.585355,0.299979,0.846517,0.285845,0.0551904,0.960372,0.0909773,0.643026,0.601194,0.377989,0.833122,0.500612,0.157897,0.180891,0.491674,0.924751,0.174243,0.341072,0.323576,0.531302,0.0117065,0.316387,0.179897,0.649482,0.619112,0.932214,0.0970829,0.740741,0.930779,0.059001,0.41488,0.547558,0.460958,0.342704,0.238392,0.713835,0.212978,0.952434,0.71981,0.299493,0.549809,0.805543,0.176235,0.273255,0.821644,0.994414,0.618155,0.0341082,0.0766327,0.850477,0.440234,0.384388,0.207883,0.166787,0.790609,0.549922,0.399102,0.872983,0.332171,0.711515,0.965475,0.716738,0.952085,0.0244659,0.87395,0.644279,0.103283,0.933217,0.655365,0.657395,0.437964,0.347227,0.817653,0.499117,0.332679,0.542956,0.306446,0.979186,0.783441,0.566865,0.223209,0.904122,0.104105,0.680191,0.00804067,0.946013,0.504013,0.771666,0.967001,0.771646,0.433391,0.443893,0.226767,0.660257,0.464124,0.584463,0.759164,0.259863,0.449731,0.0949897,0.768664,0.320099,0.367231,0.111343,0.963396,0.134263,0.959088,0.641893,0.365835,0.497578,0.0935113,0.170395,0.701745,0.153423,0.904686,0.417109,0.314062,0.985412,0.971641,0.279258,0.803307,0.304504,0.56165,0.350435,0.196968,0.917718,0.809016,0.0995921,0.118241,0.62653,0.903332,0.87431,0.404522,0.90211,0.677384,0.0791438,0.518708,0.981934,0.226592,0.23751,0.946568,0.255276,0.431912,0.142853,0.21862,0.52774,0.928353,0.875381,0.115041,0.379194,0.687994,0.10298,0.761592,0.321192,0.493449,0.7025,0.483257,0.886356,0.682744,0.188227,0.21787,0.233692,0.546511,0.70291,0.308077,0.890376,0.965134,0.253134,0.519061,0.603827,0.116264,0.000114143,0.232376,0.912567,0.494317,0.280524,0.526156,0.895113,0.626387,0.623685,0.823546,0.185508,0.0621562,0.348784,0.605532,0.854493,0.6206,0.297977,0.478135,0.677238,0.910796,0.254171,0.387436,0.627146,0.38247,0.60951,0.39534,0.69148,0.350025,0.295053,0.386889,0.775866,0.211342,0.934527,0.0345745,0.05033,0.400585,0.806862,0.952801,0.389222,0.851677,0.630127,0.342004,0.593839,0.466426,0.888266,0.717516,0.769483,0.00515193,0.0975292,0.763317,0.104418,0.424634,0.660771,0.123553,0.446621,0.31628,0.142524,0.781614,0.0845097,0.48365,0.213067,0.413696,0.155209,0.87439,0.435154,0.548905,0.549621,0.749282,0.0578718,0.459399,0.663476,0.471343,0.466117,0.940707,0.178227,0.0315543,0.557608,0.640636,0.187478,0.140189,0.943856,0.379781,0.579545,0.0309519,0.634107,0.969427,0.511075,0.399559,0.445477,0.674298,0.195547,0.166435,0.763863,0.350062,0.274208,0.657411,0.153538,0.469273,0.0411406,0.425217,0.317383,0.151437,0.087986,0.458178,0.175695,0.73603,0.68397,0.966226,0.105306,0.745225,0.400727,0.116617,0.633268,0.478487,0.774522,0.54766,0.648925,0.52362,0.625134,0.128629,0.385066,0.0674566,0.25645,0.884571,0.473599,0.824487,0.885159,0.027869,0.0582361,0.696128,0.721788,0.907394,0.925299,0.187183,0.0798151,0.287371,0.364058,0.0598946,0.0414371,0.451797,0.223179,0.107812,0.0661393,0.675225,0.91533,0.681645,0.732302,0.712232,0.837566,0.938408,0.636429,0.423186,0.199185,0.406139,0.732462,0.303274,0.401031,0.677294,0.513856,0.0791783,0.130927,0.318772,0.884255,0.423104,0.653353,0.835909,0.536407,0.499074,0.54984,0.875976,0.445615,0.866661,0.439622,0.849672,0.521004,0.279628,0.367973,0.707794,0.354584,0.934118,0.571729,0.0336751,0.83967,0.619189,0.950815,0.681556,0.309236,0.525571,0.498289,0.185374,0.76503,0.50439,0.941457,0.159759,0.845323,0.185674,0.847139,0.472132,0.616529,0.403464,0.276991,0.806869,0.443237,0.416418,0.539843,0.872025,0.75665,0.450712,0.661141,0.488498,0.0393731,0.148463,0.054931,0.778375,0.0224873,0.356857,0.555113,0.661089,0.27299,0.850827,0.652352,0.961808,0.6276,0.781861,0.466976,0.427698,0.960537,0.994698,0.996057,0.363104,0.0979436,0.1478,0.551241,0.143397,0.733187,0.831249,|0.673135,0.515645,0.684572,0.532611,0.418643,0.0244787,0.808658,0.787165,0.783315,0.412642,0.54118,0.0927354,0.110564,0.526952,0.489781,0.275152,0.820095,0.915858,0.952599,0.326173,0.124416,0.419311,0.376294,0.839874,0.91367,0.493153,0.4949,0.241571,0.606016,0.419609,0.144673,0.226189,0.398646,0.386186,0.595691,0.400236,0.558831,0.0715043,0.999623,0.290136,0.505598,0.375048,0.143888,0.325724,0.289131,0.473895,0.544035,0.752286,0.345229,0.953412,0.343522,0.592269,0.133694,0.178727,0.475421,0.78134,0.411486,0.451055,0.396715,0.111967,0.221326,0.793326,0.827991,0.150504,0.924354,0.567163,0.382282,0.719994,0.1979,0.0352935,0.231835,0.923198,0.587859,0.201452,0.00657016,0.875407,0.65754,0.612197,0.543193,0.342371,0.576339,0.116854,0.408813,0.708969,0.132832,0.476628,0.334347,0.412727,0.742563,0.581329,0.166627,0.636679,0.654651,0.124533,0.681173,0.199586,0.517967,0.171382,0.523102,0.204067,0.54303,0.560341,0.876139,0.757072,0.725564,0.585274,0.672878,0.0862167,0.0238721,0.960737,0.234843,0.884149,0.00339472,0.346394,0.972468,0.343973,0.349114,0.0500515,0.999696,0.770292,0.0178553,0.00167525,0.807268,0.149918,0.869669,0.454042,0.867257,0.929199,0.0759093,0.710384,0.408026,0.92447,0.692705,0.472184,0.435216,0.175742,0.118511,0.791202,0.621502,0.257565,0.590027,0.0398757,0.704808,0.463323,0.0671167,0.36152,0.786519,0.671881,0.930012,0.746903,0.0626935,0.770568,0.770179,0.41547,0.31262,0.489907,0.477062,0.625556,0.765866,0.130398,0.208664,0.500275,0.392749,0.307985,0.0305904,0.215327,0.8977,0.395209,0.96578,0.0770899,0.390898,0.455862,0.110152,0.956187,0.0826255,0.545394,0.51029,0.422627,0.554284,0.769018,0.206758,0.329934,0.886341,0.274279,0.396921,0.296839,0.679559,0.736505,0.712638,0.794347,0.0877258,0.983454,0.122857,0.661162,0.528546,0.0118944,0.310998,0.530384,0.397649,0.39099,0.767968,0.59116,0.753919,0.763841,0.494135,0.542388,0.0746166,0.0493104,0.460012,0.155498,0.96532,0.812828,0.418682,0.0942117,0.766241,0.182048,0.907134,0.403265,0.722085,0.812495,0.468118,0.865713,0.886127,0.673586,0.156375,0.633315,0.765948,0.755066,0.394347,0.346767,0.995847,0.624292,0.228147,0.160631,0.905075,0.716047,0.489383,0.388377,0.774766,0.305943,0.0641877,0.793595,0.130179,0.0681624,0.362164,0.782313,0.618452,0.657643,0.760666,0.678359,0.718692,0.0564591,0.371744,0.408457,0.0998653,0.867076,0.224268,0.924461,0.645631,0.821866,0.856392,0.679457,0.0786251,0.0509648,0.247981,0.710028,0.604407,0.264523,0.157004,0.347644,0.437783,0.077161,0.664447,0.763361,0.812613,0.458054,0.590773,0.437405,0.678306,0.791158,0.371278,0.822486,0.837024,0.0727955,0.0332662,0.128599,0.371998,0.553815,0.445556,0.370602,0.74296,0.169769,0.627943,0.551264,0.928236,0.26949,0.104552,0.860473,0.00446296,0.771744,0.764931,0.453035,0.283478,0.604784,0.148133,0.936981,0.0929836,0.254824,0.652211,0.282222,0.704345,0.819017,0.928062,0.788327,0.697031,0.188413,0.196935,0.989202,0.211312,0.141995,0.614196,0.971455,0.830911,0.66883,0.140236,0.988174,0.644115,0.437361,0.0988863,0.385249,0.0583384,0.409869,0.614885,0.392925,0.765392,0.331518,0.0356629,0.861085,0.733766,0.681546,0.969318,0.982101,0.756214,0.678958,0.900317,0.225728,0.846005,0.82886,0.532336,0.975474,0.704474,0.315887,0.802968,0.946517,0.29947,0.989418,0.463715,0.16787,0.518642,0.0935825,0.433181,0.461908,0.0992636,0.271311,0.797538,0.285968,0.326834,0.53353,0.464732,0.794736,0.444638,0.772172,0.0254624,0.967206,0.674101,0.711272,0.860005,0.0297483,0.730412,0.291992,0.719005,0.77927,0.89365,0.4769,0.646484,0.792844,0.56313,0.4224,0.449086,0.241281,0.903224,0.583454,0.380941,0.176194,0.956577,0.912099,0.512412,0.766765,0.743959,0.349788,0.935353,0.338198,0.850475,0.986828,0.442029,0.167502,0.1057,0.36554,0.0661304,0.68611,0.641495,0.197635,0.652773,0.371577,0.574769,0.362737,0.864773,0.0102571,0.921258,0.372406,0.525713,0.469941,0.897288,0.268974,0.616854,0.274996,0.679091,0.639824,0.497774,0.511428,0.174594,0.395244,0.65407,0.230678,0.720463,0.0333005,0.953205,0.262061,0.489873,0.57822,0.582225,0.818195,0.567429,0.241935,0.0984604,0.305438,0.345814,0.953284,0.917147,0.557873,0.585612,0.60818,0.0113693,0.0525877,0.469552,0.0701221,0.978833,0.976441,0.202162,0.816506,0.132995,0.402845,0.332116,0.600327,0.469957,0.188407,0.80173,0.584427,0.101266,0.330156,0.330825,0.529691,0.37315,0.8179,0.919142,0.867066,0.480649,0.0418903,0.583626,0.643164,0.717488,0.699362,0.154146,0.829522,0.683679,0.723506,0.766288,0.485599,0.993774,0.78208,0.919572,0.515879,0.857783,0.580587,0.944346,0.0228905,0.373696,0.820056,0.36824,0.096507,0.877973,0.81719,0.242522,0.606984,0.616871,0.0868846,0.888961,0.281351,0.391807,0.804165,0.67753,0.305302,0.178575,0.22849,0.397836,0.933995,0.578412,0.583637,0.965261,0.693072,0.682712,0.371556,0.927273,0.602683,0.228266,0.797605,0.235558,0.882304,0.965464,0.819098,0.149712,0.154193,0.714714,0.246181,0.401543,0.442992,0.498275,0.197862,0.400095,0.310394,0.45938,0.655504,0.609172,0.916535,0.375301,0.30931,0.675956,0.487152,0.957513,0.0919651,0.202551,0.52352,0.18362,0.27252,0.511025,0.847465,0.64746,0.920727,0.234564,0.482873,0.729336,0.316321,0.117874,0.111816,0.63842,0.613083,0.782029,0.232408,0.776059,0.927682,0.960399,0.891315,0.12645,0.741506,0.746233,0.24396,0.0355023,0.358406,0.431379,0.869494,0.721832,0.503972,0.423718,0.153482,0.571945,0.969651,0.416401,0.18696,0.240759,0.371216,0.896155,0.255673,0.914324,0.502753,0.587182,0.374745,0.729825,0.755602,0.211093,0.0514431,0.260171,0.214033,0.726243,0.797032,0.57781,0.585272,0.972508,0.97884,0.702393,0.192741,0.646571,0.144159,0.24281,0.0605428,0.389357,0.156325,0.665993,0.186733,0.579164,0.861975,0.205811,0.0857886,0.194673,0.474697,0.413216,0.925439,0.274414,0.308958,0.0198242,0.78617,0.199179,0.36779,0.259741,0.364645,0.731694,0.110487,0.0775664,0.0487368,0.331615,0.0871519,0.148792,0.229675,0.598952,0.0426989,0.417355,0.638442,0.935756,0.215992,0.794288,0.912064,0.408889,0.592518,0.8495,0.297845,0.171197,0.629549,0.181045,0.278605,0.823542,0.785224,0.0198008,0.813403,0.892668,0.888745,0.648273,0.90498,0.534658,0.0888029,0.526859,0.596983,0.557957,0.383131,0.251344,0.203303,0.837529,0.379361,0.479562,0.0214926,0.49763,0.701226,0.551775,0.96845,0.839437,0.116933,0.158994,0.392333,0.251119,0.686274,0.593689,0.405362,0.495882,0.237327,0.668126,0.731417,0.0997142,0.130035,0.670156,0.274626,0.147668,0.668226,0.311605,0.274344,0.010293,0.93873,0.526953,0.710787,0.731271,0.807317,0.518937,0.631455,0.00195283,0.728493,0.373028,0.22141,0.652191,0.747456,0.666568,0.935223,0.362764,0.831864,0.200981,0.990128,0.182668,0.134971,0.927394,0.426681,0.192808,0.255619,0.362842,0.666735,0.0767365,0.0329469,0.836739,0.711532,0.1667,0.213429,0.0591168,0.231851,0.860353,0.922576,0.0365421,0.677603,0.795559,0.140243,0.216413,0.0614937,0.010282,0.513523,0.257959,0.929643,0.416663,0.224843,0.384046,0.774317,0.746383,0.790139,0.938097,0.3888,0.60255,0.703618,0.981039,0.37654,0.0595323,0.127617,0.426511,0.649806,0.389151,0.615381,0.116226,0.283323,0.596817,0.0140295,0.238508,0.266479,0.680977,0.150585,0.91444,0.770421,0.297091,0.610947,0.643495,0.165093,0.116561,0.42871,0.0044679,0.304564,0.791939,0.062894,0.187892,0.95748,0.0112863,0.0445073,0.918963,0.302757,0.949086,0.0428945,0.604435,0.788219,0.00791365,0.296439,0.946272,0.403925,0.0274075,0.272054,0.697537,0.139038,0.756663,0.624382,0.574285,0.604066,0.169972,0.0324486,0.545916,0.352206,0.0863486,0.163723,0.982855,0.18036,0.810973,0.819795,0.349781,0.274782,0.394178,0.0525893,0.741759,0.581687,0.829949,0.253656,0.388897,0.679545,0.348877,0.98313,0.739681,0.988645,0.467243,0.383608,0.814827,0.503409,0.0272683,0.524779,0.240066,0.853571,0.527158,0.314128,0.0222624,0.330414,0.890029,0.958904,0.368259,0.713504,0.0695539,0.968793,0.653015,0.161239,0.487353,0.0280635,0.862513,0.574822,0.669652,0.875919,0.53458,0.70072,0.428499,0.455836,0.380343,0.562346,0.133196,0.227021,0.421227,0.97019,0.183014,0.0510033,0.100158,0.891104,0.602374,0.158463,0.1584,0.1776,0.109057,0.225097,0.55003,0.914508,0.548547,0.312096,0.558247,0.665029,0.155191,0.494683,0.501394,0.706575,0.86264,0.608627,0.18775,0.913071,0.963558,0.223189,0.615885,0.0737979,0.63451,0.994439,0.164547,0.940081,0.430965,0.879332,0.058589,0.885522,0.07767,0.883799,0.0397006,0.97599,0.575797,0.737825,0.460329,0.561763,0.163659,0.671265,0.950907,0.798788,0.422594,0.776611,0.621877,0.524538,0.112275,0.703616,0.576116,0.396854,0.55409,0.915149,0.749059,0.201664,0.108987,0.354445,0.858581,0.542974,0.476627,0.523247,0.96409,0.317508,0.182807,0.288587,0.405637,0.70663,0.179755,0.315361,0.765525,0.152925,0.871692,0.000884473,0.867231,0.829438,0.754362,0.821474,0.696529,0.458979,0.312517,0.373416,0.242356,0.940586,0.513067,0.237536,0.297135,0.0350773,0.408766,0.541468,0.28856,0.71213,0.363385,0.702373,0.702466,0.321865,0.0516478,0.141713,0.361935,0.214927,0.635974,0.0804406,0.575554,0.797745,0.630865,0.833521,0.656075,0.498127,0.0474016,0.70294,0.0376659,0.848666,0.605848,0.297855,0.964796,0.498751,0.978304,0.413066,0.874104,0.479966,0.927895,0.974343,0.3449,0.837939,0.866191,0.700564,|0.0246897,0.757864,0.8526,0.97954,0.187095,0.705458,0.594807,0.999702,0.591759,0.331856,0.324295,0.649698,0.0941212,0.360046,0.103617,0.803265,0.380013,0.311117,0.951968,0.567535,0.800774,0.269024,0.709491,0.0252076,0.993345,0.0493296,0.562296,0.694414,0.203043,0.230428,0.350472,0.903607,0.453012,0.653498,0.652435,0.921522,0.822499,0.12217,0.0488836,0.605298,0.0879469,0.881111,0.517225,0.332021,0.953254,0.0591202,0.266336,0.0151752,0.0321874,0.324413,0.113671,0.138029,0.0446149,0.633355,0.159039,0.934999,0.760825,0.11277,0.85103,0.106034,0.911606,0.782059,0.0947594,0.881675,0.104365,0.204406,0.105415,0.451718,0.330652,0.252732,0.20811,0.713917,0.354321,0.76345,0.580437,0.196166,0.80247,0.461468,0.170488,0.452287,0.416349,0.365643,0.569527,0.722062,0.117344,0.917993,0.938672,0.697347,0.390256,0.213076,0.517768,0.883594,0.335965,0.630081,0.934781,0.124062,0.217652,0.647685,0.360936,0.367093,0.586448,0.305251,0.633535,0.788267,0.946959,0.172135,0.479755,0.945857,0.363592,0.124625,0.681475,0.27308,0.822461,0.677664,0.440958,0.713307,0.0728237,0.3381,0.0386059,0.141601,0.228967,0.244293,0.7563,0.32438,0.763979,0.505679,0.39198,0.757122,0.583137,0.330771,0.514518,0.592966,0.810542,0.622201,0.230805,0.712472,0.635033,0.7954,0.831454,0.152033,0.690586,0.332931,0.454007,0.665329,0.984269,0.870375,0.470348,0.692095,0.414381,0.251875,0.644555,0.00201529,0.357857,0.480559,0.282813,0.752962,0.402627,0.0332476,0.0742862,0.0621254,0.380435,0.940713,0.186483,0.353067,0.838929,0.403437,0.277264,0.35846,0.89803,0.127331,0.932989,0.790976,0.330425,0.440063,0.47698,0.919077,0.549824,0.0970626,0.653553,0.517095,0.802736,0.985851,0.147268,0.171652,0.659759,0.423278,0.258244,0.19189,0.924691,0.367461,0.476047,0.76662,0.191626,0.58355,0.579647,0.560231,0.899662,0.310085,0.0279912,0.33687,0.711682,0.130366,0.908978,0.782627,0.542237,0.957973,0.0817762,0.709017,0.618524,0.025079,0.154202,0.253142,0.932314,0.777315,0.526144,0.655677,0.832633,0.460241,0.671494,0.869328,0.656853,0.369446,0.281207,0.825388,0.940396,0.509792,0.212857,0.0286639,0.0630718,0.967683,0.761854,0.0123679,0.141363,0.420849,0.036317,0.566513,0.0347824,0.573982,0.342801,0.108446,0.711538,0.832008,0.215841,0.504461,0.988212,0.76968,0.0701152,0.276448,0.734844,0.726926,0.898008,0.670493,0.725667,0.808871,0.348809,0.0333374,0.652796,0.627385,0.722434,0.727555,0.599292,0.408801,0.12565,0.246,0.873491,0.272555,0.621692,0.550157,0.139772,0.872567,0.211264,0.54459,0.788843,0.813339,0.839511,0.925348,0.119742,0.981081,0.108485,0.0320335,0.541585,0.921074,0.0918816,0.241686,0.837577,0.976762,0.866974,0.680499,0.997928,0.69226,0.166141,0.169784,0.466413,0.958323,0.830961,0.0377002,0.00768429,0.267328,0.696616,0.110143,0.420932,0.404956,0.810748,0.190317,0.356734,0.392536,0.630273,0.65673,0.205879,0.190709,0.321084,0.618784,0.587657,0.131154,0.149104,0.312066,0.726713,0.895894,0.987929,0.333861,0.554008,0.704277,0.114566,0.0151945,0.934908,0.371236,0.16937,0.92673,0.652926,0.962534,0.552891,0.774712,0.735044,0.209136,0.642278,0.762458,0.70649,0.151379,0.519298,0.832314,0.960079,0.0689192,0.0461215,0.0956169,0.186617,0.430886,0.811807,0.666116,0.734953,0.350244,0.5014,0.293141,0.346487,0.978251,0.66808,0.019984,0.961114,0.060704,0.15263,0.606589,0.590455,0.0786686,0.652095,0.06629,0.335205,0.122791,0.571436,0.204336,0.175299,0.405003,0.679849,0.569841,0.783845,0.407053,0.519451,0.814225,0.56787,0.237626,0.682238,0.741515,0.518834,0.780977,0.833736,0.7131,0.411497,0.781267,0.315666,0.646952,0.131677,0.70868,0.0494491,0.305466,0.267906,0.315934,0.909343,0.286391,0.356121,0.225606,0.784726,0.213493,0.129598,0.958832,0.882773,0.366055,0.0171102,0.305058,0.298908,0.923684,0.235511,0.0258324,0.374436,0.599904,0.386597,0.918871,0.592489,0.629617,0.121604,0.987408,0.871468,0.527256,0.0425994,0.378301,0.86379,0.684138,0.971375,0.583187,0.281378,0.356387,0.361835,0.00896209,0.916233,0.554697,0.530612,0.366029,0.976283,0.371984,0.653642,0.257934,0.486308,0.724213,0.858478,0.592044,0.103127,0.943262,0.721048,0.15952,0.363633,0.839468,0.197221,0.699334,0.389841,0.0644591,0.423311,0.125085,0.656298,0.346082,0.37188,0.717142,0.842619,0.995547,0.948813,0.430015,0.704816,0.0118843,0.526888,0.45474,0.217998,0.130207,0.860135,0.0341702,0.524238,0.441342,0.43438,0.536434,0.584022,0.597665,0.979415,0.128997,0.233911,0.0381549,0.918719,0.760561,0.219212,0.725828,0.980805,0.988271,0.282712,0.276228,0.785266,0.663432,0.799661,0.228057,0.647056,0.353683,0.466218,0.340906,0.0931946,0.578961,0.654944,0.016211,0.693525,0.513165,0.112297,0.810691,0.427359,0.102598,0.568399,0.154335,0.585132,0.932338,0.345046,0.457979,0.397515,0.718465,0.0931913,0.675754,0.86862,0.513631,0.848312,0.957914,0.476685,0.337221,0.990617,0.118929,0.494534,0.412836,0.629948,0.705373,0.569945,0.9736,0.954399,0.0097636,0.944901,0.659867,0.662873,0.67453,0.966778,0.453202,0.591979,0.327714,0.460815,0.378638,0.3521,0.145187,0.871884,0.28912,0.252552,0.830328,0.856409,0.0825875,0.849523,0.593974,0.491081,0.84405,0.424812,0.593326,0.956863,0.27435,0.328243,0.859364,0.840336,0.34856,0.167703,0.00949585,0.78242,0.725061,0.282731,0.0859589,0.434933,0.230902,0.592353,0.50447,0.377837,0.108823,0.371778,0.279009,0.862177,0.614818,0.758685,0.495031,0.883312,0.932852,0.811365,0.499158,0.0847536,0.421085,0.615985,0.063896,0.570608,0.0972689,0.0222158,0.330746,0.754222,0.416141,0.957001,0.255745,0.40514,0.00636071,0.0882426,0.459466,0.578934,0.0211145,0.205888,0.810167,0.611155,0.0215636,0.141336,0.578517,0.767231,0.857021,0.960377,0.539531,0.625112,0.842942,0.417691,0.515864,0.609493,0.474164,0.321632,0.545943,0.939022,0.254137,0.185061,0.544969,0.794309,0.7971,0.734134,0.448874,0.972935,0.333266,0.287796,0.748913,0.10665,0.713107,0.447309,0.565965,0.375628,0.79017,0.0624162,0.6899,0.904474,0.523351,0.424126,0.749081,0.179236,0.112377,0.908966,0.181071,0.225257,0.134317,0.988374,0.990678,0.617531,0.945099,0.107033,0.569391,0.492997,0.0148636,0.287902,0.732143,0.737788,0.979608,0.846847,0.0601954,0.383663,0.20226,0.155731,0.52175,0.620316,0.457561,0.343261,0.773096,0.768516,0.81557,0.164564,0.227898,0.8138,0.393107,0.717424,0.123656,0.41859,0.749484,0.960423,0.627423,0.817943,0.00301415,0.769461,0.615266,0.86456,0.335103,0.702641,0.557413,0.654215,0.407958,0.657987,0.113991,0.0307897,0.891228,0.576684,0.95167,0.278517,0.510213,0.938783,0.178371,0.309025,0.833469,0.26138,0.0965231,0.698263,0.815198,0.624394,0.00118238,0.65953,0.262362,0.201994,0.391912,0.253647,0.247166,0.739954,0.784175,0.664659,0.736015,0.275073,0.730048,0.613679,0.0123581,0.586865,0.375384,0.0799128,0.820866,0.0995635,0.190052,0.636733,0.821875,0.113936,0.5669,0.822629,0.506518,0.465685,0.150731,0.641735,0.404235,0.667852,0.352393,0.328429,0.239093,0.0914997,0.0768051,0.694541,0.590349,0.530034,0.660998,0.422606,0.468329,0.609821,0.146577,0.0947794,0.49974,0.922877,0.594503,0.427618,0.109625,0.173982,0.659995,0.115269,0.147016,0.449649,0.139532,0.0546045,0.195357,0.983049,0.0242139,0.98303,0.832325,0.976002,0.874361,0.242309,0.962433,0.345086,0.592528,0.84558,0.366602,0.681251,0.842579,0.55369,0.947895,0.330845,0.00843453,0.471485,0.106714,0.67838,0.796948,0.443599,0.747867,0.7689,0.180537,0.380202,0.421825,0.967765,0.0459688,0.246003,0.545954,0.430552,0.578499,0.184091,0.451139,0.158053,0.583034,0.971816,0.762116,0.0695347,0.43752,0.0923287,0.0159376,0.628575,0.801907,0.143203,0.527518,0.732906,0.772162,0.729666,0.423037,0.0254622,0.687793,0.420504,0.404079,0.846372,0.800151,0.780147,0.869933,0.620673,0.174175,0.840635,0.950016,0.532799,0.682818,0.827121,0.111001,0.926252,0.0667377,0.547811,0.962384,0.0147483,0.51196,0.306182,0.66081,0.252544,0.598337,0.0730182,0.935262,0.89163,0.978373,0.0573201,0.900908,0.67163,0.592113,0.120814,0.290025,0.277525,0.652482,0.612239,0.425604,0.829044,0.450719,0.335801,0.103344,0.316979,0.698177,0.763431,0.0215164,0.128047,0.670535,0.315954,0.612734,0.909212,0.217381,0.919094,0.965913,0.503945,0.243624,0.536615,0.971194,0.478628,0.464391,0.875593,0.685187,0.238917,0.238064,0.214025,0.619822,0.764228,0.521222,0.500247,0.876405,0.136461,0.551042,0.142702,0.33489,0.196691,0.40279,0.0472373,0.327656,0.351531,0.00527298,0.683947,0.763183,0.538063,0.418418,0.338643,0.110937,0.680674,0.774491,0.731283,0.965961,0.103842,0.876036,0.749296,0.449398,0.0384092,0.633716,0.514683,0.547355,0.584248,0.443041,0.72964,0.860849,0.09539,0.644236,0.851702,0.890936,0.476307,0.725206,0.660951,0.486521,0.699487,0.854582,0.890823,0.664525,0.350052,0.947952,0.621835,0.0553863,0.399685,0.443273,0.270115,0.161581,0.343656,0.394415,0.397891,0.52506,0.232449,0.365456,0.748068,0.35741,0.319178,0.34753,0.212372,0.56823,0.0840046,0.496459,0.864479,0.823987,0.198469,0.0462943,0.413304,0.595858,0.662323,0.897105,0.492786,0.00685662,0.0706705,0.428147,0.450637,0.79855,0.353496,0.555,0.12699,0.326416,0.372079,0.432487,0.302431,0.740778,0.426789,0.340779,0.732072,0.167622,0.251147,0.759247,0.667424,0.875342,0.584188,0.461085,0.896968,0.887006,0.273521,0.278552,0.585685,0.0349536,0.236274,0.335601,|0.171551,0.844303,0.457219,0.634106,0.258923,0.712165,0.798099,0.266192,0.791547,0.990435,0.0132498,0.402698,0.438103,0.153439,0.670278,0.891147,0.164073,0.151765,0.158874,0.626783,0.699674,0.605818,0.237416,0.376665,0.590983,0.681341,0.848815,0.95938,0.629883,0.579244,0.859489,0.064655,0.854995,0.525723,0.380094,0.518776,0.360447,0.940619,0.56982,0.239738,0.674671,0.749689,0.848671,0.174505,0.389759,0.621941,0.728389,0.233077,0.541842,0.708732,0.920675,0.0246207,0.725182,0.797836,0.144799,0.551942,0.00538915,0.21883,0.27614,0.0216911,0.190728,0.00392765,0.529426,0.37163,0.835164,0.520279,0.555541,0.386745,0.119112,0.298493,0.573388,0.102893,0.322699,0.649484,0.87966,0.0963498,0.328682,0.376793,0.231482,0.131688,0.841011,0.237147,0.153634,0.329269,0.996919,0.17859,0.117637,0.733616,0.978696,0.4359,0.866275,0.421885,0.251257,0.768468,0.46915,0.361214,0.256177,0.448064,0.806021,0.808326,0.927143,0.452085,0.0207853,0.117305,0.510951,0.833318,0.814403,0.859186,0.823677,0.398131,0.693503,0.357019,0.301397,0.884586,0.142208,0.229833,0.368782,0.306867,0.4776,0.588238,0.255548,0.783677,0.154455,0.420954,0.0764066,0.515528,0.69481,0.0680408,0.522115,0.917615,0.174205,0.105342,0.115875,0.803463,0.139257,0.207204,0.635811,0.954657,0.700925,0.644462,0.0242788,0.38384,0.635527,0.908346,0.0523974,0.825101,0.870373,0.92626,0.285558,0.174494,0.929689,0.522886,0.761728,0.666837,0.397427,0.663279,0.539989,0.0739434,0.42922,0.698809,0.114152,0.421923,0.950102,0.259606,0.302505,0.36051,0.0374807,0.612334,0.54674,0.696809,0.786622,0.536321,0.998655,0.918423,0.871546,0.715153,0.510885,0.860057,0.492794,0.352283,0.0271671,0.194048,0.212268,0.25864,0.761791,0.0347706,0.266767,0.35525,0.829761,0.0290186,0.407782,0.0904743,0.496101,0.494954,0.21654,0.0288554,0.709138,0.539509,0.94309,0.653085,0.579667,0.00500757,0.439123,0.830229,0.886699,0.858456,0.0123571,0.828103,0.225334,0.854293,0.312387,0.776911,0.54976,0.966239,0.467879,0.298942,0.876103,0.960996,0.475335,0.292894,0.185758,0.172579,0.753938,0.619787,0.610414,0.993634,0.600682,0.155759,0.179964,0.50688,0.13145,0.354158,0.103575,0.810768,0.645415,0.0970981,0.814096,0.279371,0.732893,0.0802193,0.998895,0.0165593,0.0561065,0.501669,0.289611,0.962966,0.222376,0.412496,0.215436,0.887272,0.701377,0.770746,0.68319,0.233048,0.770293,0.403431,0.519346,0.762622,0.152247,0.171143,0.340711,0.0406412,0.779673,0.00548226,0.712851,0.887639,0.858934,0.649432,0.0615757,0.204359,0.388237,0.0436746,0.945664,0.375793,0.372507,0.387193,0.83112,0.92031,0.30123,0.0860133,0.849674,0.964824,0.690833,0.540602,0.68487,0.117228,0.365194,0.63615,0.323824,0.850005,0.709138,0.750778,0.43305,0.988209,0.679412,0.628176,0.849377,0.424235,0.466543,0.316693,0.102621,0.856953,0.832684,0.28208,0.693805,0.120965,0.503832,0.105631,0.138122,0.336761,0.773517,0.2022,0.548885,0.925693,0.254177,0.912444,0.570056,0.923017,0.58977,0.416765,0.737883,0.821396,0.179059,0.858725,0.130854,0.259927,0.197483,0.091119,0.564696,0.366925,0.0128044,0.954031,0.589381,0.531886,0.475058,0.224365,0.370392,0.588823,0.814419,0.383726,0.301829,0.651113,0.96328,0.949611,0.439207,0.941913,0.287913,0.244137,0.183129,0.893818,0.00996757,0.85114,0.482048,0.287994,0.118899,0.361522,0.721292,0.649497,0.112173,0.957057,0.51514,0.0419259,0.909897,0.85928,0.31439,0.957416,0.0493686,0.809556,0.286962,0.188845,0.561622,0.611356,0.817382,0.843046,0.62336,0.0824626,0.774632,0.734011,0.170914,0.20575,0.447148,0.381552,0.075328,0.664887,0.551045,0.924519,0.434069,0.528991,0.576451,0.861758,0.213729,0.66243,0.905473,0.796216,0.835779,0.223084,0.186386,0.792148,0.855434,0.557469,0.0281264,0.0697433,0.725969,0.255353,0.801557,0.039547,0.522048,0.578814,0.492156,0.95689,0.262138,0.413472,0.915359,0.828647,0.586859,0.0871123,0.125222,0.943641,0.571872,0.774576,0.942425,0.565142,0.744641,0.0750982,0.299517,0.676095,0.185004,0.808739,0.0545344,0.640026,0.959495,0.517055,0.410765,0.653621,0.74784,0.964606,0.961822,0.346975,0.962548,0.508492,0.469994,0.7949,0.426502,0.938116,0.736243,0.979804,0.874456,0.867194,0.455613,0.337747,0.852762,0.73649,0.260439,0.891279,0.928948,0.810366,0.585016,0.08069,0.545723,0.232871,0.176141,0.338704,0.082951,0.616736,0.641675,0.964597,0.384451,0.180507,0.255288,0.58333,0.418536,0.656722,0.849652,0.71181,0.0859858,0.858942,0.452579,0.411511,0.566747,0.468159,0.902556,0.99806,0.0918759,0.827712,0.243439,0.913578,0.586226,0.0311124,0.616547,0.688285,0.673475,0.948766,0.424981,0.76274,0.332536,0.989407,0.788884,0.734391,0.945728,0.543438,0.857853,0.589127,0.643988,0.703594,0.579673,0.15937,0.838888,0.585004,0.570582,0.362569,0.846259,0.304241,0.858649,0.382497,0.827452,0.328808,0.639473,0.123601,0.1068,0.0440226,0.674751,0.957531,0.226209,0.438982,0.285409,0.6329,0.808624,0.251514,0.782778,0.351951,0.61783,0.0908961,0.105758,0.753525,0.528528,0.00737286,0.155856,0.953939,0.236456,0.0133176,0.328334,0.92404,0.0937393,0.516414,0.019728,0.425995,0.087835,0.28499,0.900487,0.812611,0.32999,0.122169,0.290389,0.864256,0.970337,0.402275,0.87819,0.253805,0.43754,0.108833,0.668738,0.702647,0.765896,0.575373,0.340504,0.63609,0.799736,0.761493,0.0475517,0.108372,0.0663391,0.968056,0.920289,0.850786,0.631003,0.332205,0.755784,0.446583,0.129039,0.240836,0.858178,0.674065,0.856774,0.788851,0.211079,0.201045,0.619722,0.278968,0.572245,0.179778,0.449769,0.732039,0.257191,0.952586,0.239859,0.355782,0.090832,0.450284,0.301828,0.0092625,0.00669712,0.962484,0.645631,0.769605,0.176424,0.204452,0.560417,0.236483,0.0933643,0.55403,0.69874,0.690805,0.29156,0.2365,0.591325,0.323995,0.677619,0.281933,0.683301,0.728489,0.761954,0.538113,0.407414,0.924464,0.866112,0.188842,0.405851,0.229927,0.0270262,0.651546,0.167268,0.16973,0.699067,0.714781,0.649061,0.0469863,0.894903,0.978558,0.333052,0.256752,0.734266,0.42813,0.391898,0.0633371,0.17179,0.538537,0.369045,0.223982,0.350455,0.64926,0.965463,0.931907,0.730556,0.0870416,0.281446,0.944275,0.991036,0.613324,0.385983,0.0967556,0.850734,0.183203,0.259095,0.288392,0.39698,0.803043,0.1664,0.559857,0.892169,0.761115,0.946099,0.412928,0.461042,0.54957,0.0172588,0.926545,0.570464,0.436802,0.26347,0.615555,0.204822,0.541264,0.917582,0.589396,0.800776,0.343139,0.336754,0.20357,0.728401,0.500918,0.778758,0.0169995,0.982029,0.214693,0.680896,0.567981,0.168601,0.237856,0.159486,0.785415,0.562017,0.29907,0.652509,0.954043,0.231759,0.967469,0.111836,0.654571,0.02294,0.301653,0.154,0.783717,0.368739,0.254472,0.632164,0.517682,0.599229,0.487625,0.578606,0.473355,0.931485,0.660514,0.445208,0.241096,0.382464,0.697217,0.715948,0.81839,0.663577,0.829784,0.0186198,0.709398,0.236499,0.403446,0.978716,0.663836,0.869098,0.918588,0.897696,0.131692,0.602534,0.0108356,0.565653,0.973164,0.258422,0.87816,0.4169,0.919526,0.705905,0.480928,0.361934,0.388593,0.152745,0.813032,0.899291,0.0471039,0.578633,0.89306,0.761773,0.293218,0.763081,0.792474,0.0654417,0.692277,0.801612,0.261421,0.989348,0.754159,0.492125,0.603313,0.520309,0.872928,0.0493467,0.55276,0.950739,0.148289,0.970865,0.247039,0.152917,0.418358,0.88654,0.361736,0.701396,0.327723,0.163855,0.102518,0.848214,0.193962,0.0335032,0.773914,0.150088,0.908936,0.539971,0.915756,0.199752,0.29076,0.180705,0.43002,0.807314,0.682385,0.368125,0.41117,0.745322,0.544812,0.768824,0.78465,0.228786,0.601094,0.673662,0.427696,0.408377,0.571943,0.522689,0.985179,0.938605,0.203906,0.429476,0.647591,0.179582,0.943564,0.211136,0.577257,0.330031,0.599132,0.669507,0.154199,0.533652,0.597227,0.451544,0.15376,0.930046,0.359005,0.682192,0.55985,0.537967,0.742163,0.845647,0.0336211,0.0231336,0.8057,0.433307,0.871428,0.78118,0.494907,0.458349,0.991447,0.546342,0.078644,0.207734,0.589945,0.298172,0.516159,0.45218,0.523978,0.428822,0.870208,0.0582886,0.41915,0.869289,0.413372,0.639839,0.166542,0.188238,0.084381,0.0991407,0.108752,0.317167,0.234738,0.498911,0.394373,0.106845,0.573105,0.242498,0.215173,0.324589,0.895114,0.790321,0.253533,0.057197,0.929629,0.561586,0.297857,0.541057,0.802562,0.775789,0.188775,0.326368,0.353885,0.830525,0.159264,0.152163,0.828945,0.992423,0.924347,0.509,0.162563,0.776468,0.414417,0.628915,0.648405,0.459997,0.902677,0.672102,0.6256,0.568385,0.13552,0.473534,0.141872,0.966469,0.572753,0.679637,0.481015,0.422928,0.204656,0.0512406,0.389765,0.00562102,0.272276,0.793665,0.104873,0.539126,0.859416,0.447958,0.0238199,0.322142,0.608199,0.526558,0.713258,0.811025,0.892472,0.561366,0.895711,0.685658,0.55725,0.532725,0.568085,0.752608,0.35997,0.101804,0.448629,0.929249,0.502788,0.196847,0.164822,0.864236,0.259385,0.0221826,0.446606,0.997328,0.488448,0.525932,0.101512,0.00397801,0.677511,0.826396,0.0646697,0.0594587,0.951932,0.672148,0.814828,0.362494,0.213852,0.694573,0.270626,0.312918,0.996159,0.683838,0.347519,0.497663,0.586593,0.41311,0.696677,0.481191,0.47652,0.257194,0.78445,0.306192,0.216147,0.0523646,0.381236,0.570398,0.889958,0.0357857,0.19682,0.149244,0.0362324,0.250926,0.0754562,0.757016,0.0763547,0.873427,0.7142,0.564217,0.24886,0.948879,0.417489,0.866475,0.780433,0.301026,0.292166,|0.595754,0.384695,0.600921,0.569847,0.4233,0.721782,0.874541,0.62137,0.632215,0.349619,0.121341,0.702768,0.071655,0.586797,0.237604,0.0642871,0.811546,0.308393,0.155231,0.356005,0.315696,0.716203,0.449853,0.851458,0.231535,0.417997,0.816725,0.397776,0.32599,0.902418,0.123844,0.982009,0.519782,0.613987,0.517878,0.379779,0.278799,0.585336,0.376293,0.520724,0.622881,0.0617822,0.0542083,0.983789,0.498385,0.787367,0.418183,0.482362,0.246224,0.169273,0.386471,0.559455,0.344861,0.19848,0.854723,0.204673,0.659039,0.545822,0.136281,0.843494,0.90143,0.581661,0.0220101,0.101815,0.743374,0.82131,0.0045079,0.170602,0.00950491,0.609261,0.520449,0.780861,0.181536,0.321425,0.59097,0.940594,0.13479,0.640425,0.381492,0.464302,0.397122,0.489996,0.205163,0.0677542,0.871649,0.913731,0.787928,0.00753587,0.817988,0.395519,0.482964,0.937951,0.842182,0.448367,0.433235,0.720965,0.208821,0.206349,0.858087,0.652738,0.256339,0.282552,0.167351,0.918043,0.021138,0.821402,0.199178,0.482879,0.528554,0.3517,0.849481,0.655527,0.686185,0.639457,0.37705,0.113203,0.106446,0.176092,0.221386,0.996386,0.428577,0.345142,0.347762,0.532181,0.863677,0.0933473,0.201923,0.240942,0.516746,0.311055,0.991974,0.0848453,0.188039,0.537306,0.396327,0.0757232,0.405812,0.354546,0.494996,0.677319,0.944473,0.77228,0.410677,0.965318,0.248899,0.974028,0.0425923,0.128058,0.606904,0.0682731,0.141673,0.510858,0.813723,0.984121,0.362859,0.0913148,0.159383,0.153111,0.782227,0.173452,0.966549,0.87053,0.627674,0.413929,0.169127,0.247386,0.75355,0.690713,0.910858,0.113526,0.747869,0.876282,0.384717,0.0588913,0.113661,0.324825,0.823638,0.620662,0.513617,0.457341,0.063387,0.567222,0.764439,0.0730582,0.408049,0.528091,0.0959292,0.17571,0.248024,0.394885,0.042331,0.0612988,0.331076,0.217077,0.574204,0.184097,0.374818,0.793368,0.696702,0.32154,0.84802,0.830683,0.579829,0.971309,0.103889,0.124429,0.0654924,0.410728,0.983433,0.447712,0.131625,0.356442,0.352638,0.540971,0.259914,0.802895,0.2922,0.420849,0.977597,0.219354,0.369156,0.90575,0.126237,0.641681,0.417206,0.405486,0.274498,0.674646,0.892783,0.20866,0.737055,0.683894,0.079456,0.389622,0.612487,0.853823,0.147842,0.875445,0.866197,0.251945,0.0460227,0.627803,0.455082,0.912783,0.739355,0.41281,0.0445654,0.512138,0.115855,0.879384,0.478811,0.30299,0.622374,0.655374,0.319838,0.774503,0.411172,0.603664,0.149543,0.885662,0.241221,0.308405,0.805914,0.251006,0.442614,0.174054,0.876963,0.320186,0.209032,0.630873,0.292925,0.822304,0.733306,0.359031,0.448792,0.853862,0.765283,0.0788894,0.474418,0.377056,0.65802,0.253619,0.69445,0.571679,0.0959325,0.71658,0.448466,0.554926,0.85971,0.0771469,0.626166,0.471028,0.968181,0.0691121,0.304024,0.970877,0.937849,0.844314,0.425397,0.570503,0.308786,0.0325844,0.945106,0.517139,0.676841,0.99195,0.56027,0.0146388,0.397183,0.357999,0.46261,0.168862,0.13748,0.657001,0.733758,0.159825,0.0715784,0.0328333,0.605142,0.942088,0.36805,0.202743,0.572984,0.594588,0.10964,0.117864,0.766376,0.901342,0.337679,0.41762,0.558895,0.949205,0.142935,0.284199,0.683944,0.971404,0.847434,0.579501,0.469987,0.0385709,0.241041,0.773858,0.0382978,0.425005,0.610084,0.422606,0.308319,0.075709,0.813791,0.148478,0.197236,0.164344,0.331236,0.61919,0.468723,0.426275,0.280433,0.308734,0.949441,0.186825,0.443739,0.497651,0.308105,0.028441,0.251942,0.806027,0.15715,0.133201,0.854982,0.590486,0.457839,0.0701911,0.679989,0.351213,0.160447,0.165429,0.426931,0.326402,0.801197,0.943808,0.322762,0.561263,0.241865,0.41201,0.81401,0.749229,0.0989693,0.0986952,0.29805,0.3572,0.632207,0.254919,0.435222,0.417581,0.251626,0.757523,0.112507,0.496351,0.372573,0.973896,0.443487,0.205905,0.0180871,0.969804,0.323673,0.743355,0.298126,0.991203,0.212302,0.29928,0.205115,0.777461,0.734481,0.644819,0.0782509,0.89024,0.248314,0.875261,0.370713,0.277773,0.243191,0.358213,0.523807,0.779298,0.247952,0.137285,0.198122,0.0189581,0.87422,0.954406,0.142392,0.207178,0.880322,0.188086,0.246849,0.209344,0.727607,0.458316,0.529529,0.247627,0.769101,0.0376081,0.654506,0.58526,0.674144,0.261982,0.996388,0.599591,0.126887,0.944413,0.698914,0.0285033,0.893207,0.866778,0.520877,0.327274,0.418693,0.247692,0.570569,0.0190651,0.759761,0.423244,0.604576,0.635087,0.285898,0.884728,0.150656,0.4384,0.838352,0.045727,0.0584695,0.606773,0.909334,0.0497108,0.246645,0.574516,0.810566,0.692758,0.147832,0.225589,0.612263,0.0627705,0.738644,0.194224,0.224373,0.936531,0.0730817,0.385723,0.42739,0.555944,0.939768,0.826353,0.646077,0.64448,0.0630744,0.351023,0.918583,0.240635,0.820537,0.225535,0.447763,0.716873,0.674933,0.741248,0.808319,0.373319,0.378149,0.533144,0.13948,0.394692,0.498811,0.84678,0.198234,0.291651,0.964785,0.344162,0.0508879,0.642219,0.447067,0.630198,0.0711832,0.0200952,0.812634,0.37799,0.204664,0.0102231,0.165237,0.922446,0.0547581,0.416092,0.163002,0.841135,0.0715438,0.116822,0.148174,0.889989,0.734838,0.790278,0.197384,0.669455,0.511477,0.954814,0.407115,0.506323,0.681379,0.727584,0.203359,0.189048,0.262385,0.218945,0.78954,0.217443,0.94985,0.963929,0.424055,0.240286,0.0179144,0.314148,0.663291,0.342795,0.347311,0.504797,0.923955,0.757847,0.873151,0.818758,0.401241,0.578673,0.718519,0.18868,0.0180489,0.691019,0.527922,0.332678,0.420504,0.443767,0.19358,0.614866,0.0990988,0.781501,0.531532,0.556399,0.0591198,0.635387,0.121262,0.535404,0.50163,0.803442,0.0231305,0.655356,0.343592,0.873717,0.902521,0.129646,0.227037,0.882038,0.616404,0.832573,0.0369982,0.511677,0.0691125,0.931049,0.0111128,0.354077,0.682834,0.708634,0.797953,0.277579,0.431244,0.385991,0.910718,0.671031,0.765962,0.535574,0.908042,0.837584,0.338,0.00841439,0.179987,0.807773,0.692509,0.657746,0.206233,0.654517,0.26728,0.605451,0.500324,0.18934,0.231938,0.995366,0.874223,0.813503,0.530844,0.471203,0.297181,0.302918,0.312857,0.0327826,0.241533,0.0692667,0.209407,0.711722,0.281876,0.605083,0.304287,0.241002,0.0273921,0.39035,0.745458,0.131057,0.896859,0.384633,0.20637,0.314459,0.163769,0.0804155,0.913464,0.750946,0.793362,0.692292,0.356652,0.245617,0.948441,0.482277,0.120198,0.462902,0.545701,0.139532,0.168818,0.611496,0.645655,0.461129,0.270736,0.606898,0.103328,0.280314,0.111806,0.643788,0.825012,0.73453,0.593467,0.519958,0.310017,0.571193,0.0095104,0.975481,0.544582,0.547384,0.883881,0.423839,0.781521,0.850069,0.3032,0.505317,0.00986177,0.133777,0.945401,0.942969,0.901167,0.378145,0.833011,0.600758,0.508663,0.653476,0.463117,0.680836,0.619588,0.82154,0.109092,0.0950954,0.414426,0.528102,0.432288,0.487844,0.257424,0.103306,0.876399,0.967389,0.978879,0.790036,0.421181,0.980526,0.506558,0.0169645,0.66696,0.724344,0.54339,0.564427,0.378237,0.887841,0.708423,0.238066,0.121881,0.718862,0.263866,0.214078,0.181341,0.457371,0.193419,0.818323,0.148355,0.788764,0.0237859,0.0445724,0.770105,0.643216,0.967657,0.0850115,0.880049,0.52753,0.792471,0.552904,0.652211,0.259197,0.973438,0.227323,0.0818809,0.100563,0.167565,0.836767,0.556508,0.386242,0.368673,0.634162,0.415926,0.46968,0.752999,0.358729,0.739199,0.760701,0.322431,0.491129,0.1122,0.577946,0.975866,0.150868,0.945731,0.537443,0.118818,0.279277,0.619976,0.744601,0.20003,0.0593625,0.69014,0.936741,0.591121,0.0152803,0.0488917,0.877939,0.983968,0.557095,0.701888,0.446083,0.817977,0.817998,0.186903,0.0808166,0.850228,0.970432,0.727256,0.739895,0.811837,0.125834,0.21827,0.785305,0.0859042,0.450268,0.588106,0.408174,0.284404,0.227112,0.266329,0.768794,0.0625158,0.800943,0.613494,0.828697,0.533319,0.242768,0.842616,0.727983,0.363341,0.799529,0.307346,0.625765,0.0205753,0.489992,0.489633,0.207925,0.324391,0.262075,0.247943,0.993284,0.0804904,0.942731,0.684086,0.813625,0.800716,0.236587,0.0703357,0.387867,0.694558,0.588166,0.599969,0.894352,0.937727,0.560401,0.0704798,0.763724,0.259007,0.0202415,0.268392,0.51668,0.728658,0.0680984,0.522101,0.423164,0.27715,0.167117,0.599225,0.630262,0.516263,0.938198,0.747231,0.390436,0.883011,0.0960131,0.564087,0.0524598,0.237018,0.505205,0.662359,0.329803,0.326542,0.167679,0.532529,0.705802,0.680832,0.31172,0.624504,0.42424,0.248137,0.236312,0.387383,0.619227,0.682576,0.583286,0.146243,0.263257,0.579102,0.599058,0.806448,0.890437,0.490179,0.655342,0.543363,0.852961,0.516861,0.822081,0.200613,0.971323,0.889317,0.432657,0.315783,0.481283,0.515479,0.302209,0.840374,0.925625,0.184022,0.389485,0.0392369,0.790583,0.903644,0.835514,0.881844,0.912314,0.757824,0.812499,0.0432821,0.532684,0.792535,0.277708,0.453444,0.723107,0.661091,0.540862,0.362229,0.44316,0.76288,0.36807,0.253698,0.786878,0.88469,0.194524,0.238848,0.290872,0.475324,0.437586,0.763867,0.930292,0.753941,0.277104,0.535231,0.0188279,0.17855,0.0392948,0.706604,0.328444,0.455686,0.553703,0.576738,0.188872,0.901618,0.881923,0.0974327,0.139408,0.428931,0.961559,0.240963,0.325128,0.958316,0.560357,0.975552,0.657158,0.408798,0.659191,0.750421,0.854233,0.147098,0.253245,0.0204291,0.791334,0.394373,0.658141,0.846219,0.0674608,0.529001,0.824357,0.776257,0.899792,0.432819,0.707463,0.875634,0.313121,0.501238,0.125012,0.246296,0.440672,0.932603,0.429804,0.0571666,0.841044,0.37752,0.074617,0.877216,0.837252,0.168491,0.0601556,|0.362736,0.694895,0.268299,0.961773,0.8244,0.482543,0.137345,0.661222,0.912903,0.093768,0.351613,0.796625,0.492617,0.208636,0.261223,0.603851,0.728044,0.0242363,0.97704,0.444934,0.847272,0.0854583,0.959082,0.278316,0.00131392,0.187554,0.0721405,0.970145,0.733417,0.353013,0.503249,0.185486,0.544924,0.730806,0.527807,0.936612,0.665882,0.159153,0.908584,0.444791,0.311913,0.55511,0.54007,0.712442,0.963226,0.728443,0.610884,0.172072,0.360942,0.359109,0.753946,0.321738,0.815096,0.249775,0.511201,0.445877,0.344118,0.442078,0.881606,0.00200844,0.565373,0.399946,0.502038,0.632472,0.729307,0.634699,0.303328,0.0509474,0.385601,0.0900052,0.71698,0.472883,0.290302,0.731531,0.24829,0.122438,0.512926,0.252951,0.600409,0.644563,0.212758,0.227749,0.303242,0.620145,0.848203,0.842452,0.865428,0.689574,0.569666,0.208428,0.754618,0.274577,0.377374,0.21109,0.835715,0.197578,0.923478,0.192351,0.0214169,0.316738,0.942704,0.533462,0.384897,0.111874,0.219959,0.570996,0.668396,0.307982,0.223464,0.46178,0.558366,0.910266,0.0868095,0.332547,0.187001,0.674742,0.670075,0.13138,0.512805,0.731989,0.340949,0.637016,0.543032,0.00364989,0.304423,0.09045,0.435555,0.934595,0.9594,0.290386,0.304117,0.330722,0.00698578,0.768075,0.400942,0.043205,0.263949,0.985094,0.421325,0.647558,0.0425692,0.862521,0.00239837,0.940195,0.862236,0.406634,0.763219,0.189543,0.728604,0.558636,0.828965,0.569968,0.539572,0.0379294,0.358751,0.121874,0.690672,0.556474,0.926467,0.035206,0.882545,0.247,0.110885,0.0876342,0.0331464,0.292713,0.548109,0.619022,0.198022,0.611766,0.7719,0.213295,0.958322,0.83754,0.595168,0.584736,0.381238,0.0482094,0.942186,0.571718,0.887003,0.738791,0.270433,0.292511,0.720226,0.315628,0.549752,0.509781,0.718389,0.325419,0.909651,0.616793,0.867699,0.434342,0.404407,0.00289428,0.634105,0.848186,0.680257,0.102606,0.881358,0.636559,0.361273,0.696903,0.992682,0.969369,0.174857,0.821898,0.677919,0.509892,0.0073148,0.0908898,0.517481,0.418587,0.364007,0.592317,0.79024,0.827361,0.913778,0.824833,0.578032,0.236347,0.93341,0.985594,0.55765,0.274198,0.231727,0.817767,0.265062,0.891033,0.160807,0.79454,0.872837,0.764419,0.201323,0.833398,0.448182,0.119945,0.260295,0.717962,0.756303,0.607264,0.493358,0.185958,0.824449,0.983754,0.948949,0.278264,0.120682,0.892715,0.491203,0.473385,0.784385,0.993414,0.857851,0.744229,0.60016,0.437971,0.0623932,0.733262,0.862113,0.907888,0.767181,0.268972,0.528415,0.678519,0.553104,0.241347,0.0245942,0.317191,0.229891,0.11839,0.701948,0.346873,0.350185,0.34862,0.76688,0.255089,0.17132,0.780738,0.719172,0.0505571,0.705174,0.447161,0.309805,0.532103,0.88512,0.954673,0.944654,0.686779,0.501753,0.865566,0.663096,0.821243,0.269331,0.353823,0.969905,0.926532,0.877692,0.77956,0.650373,0.315119,0.401829,0.115054,0.958505,0.219702,0.566861,0.607399,0.546691,0.0923904,0.224687,0.986634,0.0227502,0.311255,0.635962,0.362459,0.012812,0.284657,0.0950577,0.175522,0.288846,0.403594,0.884515,0.0960144,0.871646,0.313231,0.862273,0.000529706,0.713589,0.79064,0.917618,0.35749,0.199336,0.821745,0.85387,0.120408,0.887899,0.370686,0.61282,0.0556322,0.561387,0.844145,0.32706,0.469016,0.748143,0.673587,0.837771,0.846015,0.0505682,0.499048,0.800354,0.354975,0.407538,0.321053,0.750549,0.710964,0.492638,0.95697,0.95158,0.119547,0.451129,0.83909,0.823959,0.81674,0.775034,0.416728,0.9614,0.836932,0.610712,0.926722,0.670219,0.653674,0.513584,0.122316,0.464468,0.720067,0.300205,0.521143,0.865809,0.790384,0.298777,0.246825,0.656848,0.822339,0.78441,0.835145,0.104326,0.477649,0.0519736,0.134188,0.892644,0.27004,0.654699,0.27898,0.586498,0.626565,0.808905,0.532609,0.0615365,0.899424,0.49658,0.282897,0.0137228,0.841678,0.422745,0.400734,0.615392,0.891359,0.501473,0.88997,0.612904,0.0410267,0.0727607,0.428263,0.988006,0.479245,0.421383,0.935777,0.150309,0.0481503,0.359481,0.715148,0.629265,0.97615,0.0858703,0.268,0.568734,0.959854,0.852898,0.333459,0.325357,0.0137852,0.532096,0.151601,0.0344795,0.37444,0.668114,0.824507,0.700358,0.427082,0.212908,0.878281,0.811423,0.434596,0.254487,0.844013,0.101232,0.712548,0.836383,0.590722,0.180665,0.619442,0.665138,0.598978,0.357017,0.607703,0.901843,0.776214,0.997473,0.915,0.432395,0.702449,0.733702,0.482094,0.64637,0.688178,0.269744,0.218252,0.126797,0.394285,0.43425,0.508154,0.814589,0.855812,0.762418,0.881735,0.233115,0.866367,0.090889,0.394916,0.670641,0.500523,0.0156262,0.207115,0.624745,0.822765,0.166331,0.475953,0.420848,0.676065,0.153229,0.190063,0.164453,0.857711,0.962724,0.254026,0.746487,0.1228,0.693452,0.843754,0.632721,0.898965,0.467551,0.891411,0.984211,0.355385,0.79318,0.17894,0.994411,0.728463,0.630953,0.0569203,0.619489,0.523003,0.860408,0.0845785,0.228769,0.752213,0.449712,0.836601,0.32168,0.891982,0.0781454,0.353425,0.135093,0.656059,0.0665525,0.271046,0.71497,0.65758,0.118728,0.444403,0.206403,0.805993,0.930226,0.415715,0.655559,0.182149,0.992004,0.4029,0.835967,0.710982,0.599087,0.168783,0.483539,0.697113,0.562563,0.246123,0.258236,0.2194,0.81727,0.88707,0.17279,0.546604,0.785838,0.775537,0.673077,0.523025,0.433903,0.88234,0.259313,0.903477,0.707858,0.0567035,0.580759,0.215742,0.868467,0.0705686,0.0568238,0.404752,0.869178,0.180852,0.885349,0.403132,0.162185,0.436185,0.983098,0.379627,0.762482,0.326469,0.538998,0.695713,0.675252,0.0275369,0.122376,0.706901,0.792193,0.753721,0.961982,0.594607,0.254759,0.124295,0.636229,0.771753,0.963763,0.951305,0.139375,0.766526,0.423922,0.692611,0.135438,0.871557,0.72675,0.598745,0.0953163,0.825648,0.0308316,0.775931,0.140044,0.00218874,0.744725,0.574826,0.805504,0.215831,0.692435,0.272735,0.222021,0.818321,0.827368,0.463344,0.459905,0.611093,0.115007,0.442094,0.861116,0.823638,0.931325,0.208338,0.323484,0.301351,0.828371,0.511193,0.715872,0.20113,0.708063,0.0332791,0.746183,0.104454,0.989648,0.0570518,0.183134,0.381285,0.988525,0.429318,0.695965,0.150605,0.0811012,0.961303,0.867252,0.679751,0.299758,0.276666,0.748283,0.973161,0.762004,0.621887,0.492584,0.816898,0.180084,0.241262,0.0679253,0.104295,0.992438,0.469934,0.915563,0.233178,0.905083,0.653328,0.11216,0.408526,0.0966783,0.532759,0.621503,0.355322,0.291936,0.810102,0.457859,0.426274,0.519792,0.238933,0.765149,0.883638,0.160178,0.122012,0.710018,0.500389,0.188752,0.910524,0.821411,0.405775,0.898361,0.614504,0.34648,0.0174441,0.627976,0.721531,0.0207105,0.336389,0.216173,0.882142,0.465365,0.824918,0.911635,0.0599391,0.557109,0.194956,0.909515,0.0721151,0.278887,0.568287,0.473387,0.0556358,0.614577,0.313254,0.272416,0.537625,0.404175,0.892582,0.311823,0.817624,0.25695,0.937026,0.282911,0.699594,0.705612,0.607944,0.93631,0.358212,0.616825,0.540635,0.958121,0.627021,0.728697,0.919251,0.155602,0.721594,0.0729349,0.155653,0.327179,0.75769,0.0119419,0.599097,0.422109,0.938447,0.217812,0.00506419,0.758644,0.877017,0.427189,0.0762991,0.625562,0.995929,0.108999,0.511572,0.499509,0.296105,0.850774,0.135696,0.688635,0.511936,0.888869,0.966844,0.416963,0.827656,0.519299,0.534661,0.425057,0.25482,0.579101,0.097133,0.939642,0.856715,0.734172,0.971153,0.03738,0.83454,0.871375,0.0501762,0.264608,0.33284,0.999165,0.63851,0.70937,0.846829,0.403491,0.917334,0.876334,0.423681,0.0594556,0.537411,0.258885,0.0173711,0.641071,0.512465,0.0812038,0.520041,0.712182,0.44221,0.90604,0.0546373,0.256276,0.150181,0.67122,0.511038,0.393513,0.867255,0.690681,0.23928,0.194672,0.939259,0.361781,0.918664,0.103522,0.509491,0.87988,0.0245661,0.744025,0.665602,0.32613,0.489359,0.435034,0.714992,0.212128,0.0268818,0.264093,0.0390514,0.102857,0.0509436,0.409898,0.0843631,0.530388,0.696026,0.993414,0.994724,0.598508,0.373115,0.718973,0.587584,0.815857,0.414084,0.431665,0.907473,0.720905,0.608801,0.185882,0.0947816,0.0674917,0.97431,0.040249,0.51106,0.734547,0.286967,0.538934,0.0975765,0.548189,0.117424,0.179929,0.00386304,0.0612088,0.156142,0.190932,0.489916,0.243008,0.364661,0.771484,0.0449716,0.653229,0.284297,0.588625,0.936259,0.592174,0.195161,0.743571,0.0889115,0.858449,0.903462,0.25949,0.296366,0.0546589,0.865381,0.757318,0.994472,0.108749,0.403877,0.531278,0.667764,0.403881,0.708136,0.0581041,0.760047,0.464797,0.506678,0.655472,0.295093,0.0383465,0.626265,0.0985911,0.625763,0.492503,0.619548,0.299437,0.680762,0.494954,0.489709,0.296945,0.700785,0.863821,0.163812,0.0231224,0.0913067,0.0186295,0.337826,0.673432,0.802816,0.403445,0.718909,0.333412,0.10866,0.515823,0.632808,0.75166,0.298028,0.901269,0.739073,0.800017,0.179472,0.502691,0.166458,0.104946,0.655517,0.915821,0.476432,0.452139,0.94123,0.54715,0.212467,0.183982,0.30615,0.448364,0.367765,0.552843,0.743535,0.486722,0.406541,0.72881,0.792733,0.315645,0.990287,0.239634,0.717599,0.361712,0.198602,0.552338,0.00929576,0.659479,0.212329,0.0820959,0.737785,0.392406,0.261972,0.504391,0.452118,0.749203,0.142597,0.000416934,0.0995818,0.725496,0.724975,0.664889,0.963091,0.509775,0.057483,0.34739,0.58518,0.181999,0.793463,0.393028,0.138151,0.258163,0.268798,0.624888,0.932305,0.910099,0.45946,0.594233,0.105489,0.953469,0.695038,0.939238,0.300939,0.0276746,0.677499,0.602259,0.5249,0.1862,0.0865387,0.966787,0.22726,0.617143,0.223123,|0.467573,0.680545,0.522927,0.368729,0.932845,0.288235,0.611481,0.421276,0.199462,0.297057,0.198749,0.0779665,0.175969,0.0887241,0.876935,0.440204,0.216027,0.121938,0.633149,0.679244,0.105952,0.97933,0.67724,0.42667,0.798854,0.910475,0.26335,0.429731,0.258406,0.585264,0.450817,0.881158,0.0571131,0.259767,0.90118,0.832552,0.216147,0.533733,0.647118,0.374084,0.713561,0.971038,0.381657,0.531019,0.297368,0.786707,0.627024,0.6892,0.619249,0.530992,0.922388,0.489818,0.510233,0.778203,0.741548,0.129333,0.420058,0.541995,0.430247,0.740597,0.238114,0.391402,0.160423,0.0166317,0.569023,0.716817,0.507452,0.530189,0.559933,0.561107,0.0881909,0.524423,0.247696,0.506653,0.934967,0.389562,0.358749,0.341014,0.250021,0.607178,0.749997,0.739364,0.165395,0.811758,0.692394,0.315708,0.36352,0.964274,0.695563,0.509111,0.191496,0.605953,0.634392,0.555354,0.994836,0.999869,0.2653,0.151754,0.578908,0.657843,0.147974,0.449451,0.150173,0.468526,0.839207,0.446015,0.847086,0.338582,0.205335,0.720864,0.792679,0.639264,0.267952,0.807081,0.034355,0.227797,0.511137,0.336695,0.118453,0.438164,0.481037,0.403227,0.495983,0.588235,0.52983,0.156963,0.382754,0.745567,0.457618,0.204889,0.811144,0.576939,0.565331,0.975317,0.499886,0.79689,0.417313,0.912937,0.530064,0.486819,0.567607,0.475908,0.673675,0.464567,0.317253,0.538126,0.0990911,0.467175,0.929204,0.239295,0.521823,0.231766,0.173294,0.905918,0.288088,0.0601115,0.622851,0.649626,0.0481869,0.515688,0.270884,0.452737,0.195392,0.301094,0.189222,0.877459,0.813425,0.175968,0.685188,0.602541,0.694958,0.323511,0.781987,0.218004,0.361822,0.496963,0.447708,0.988977,0.838853,0.132221,0.996766,0.570447,0.164231,0.676649,0.753162,0.0526079,0.359782,0.208776,0.982796,0.869991,0.406864,0.698334,0.138204,0.406106,0.770001,0.894529,0.255483,0.125021,0.783318,0.468697,0.844395,0.903691,0.770852,0.620894,0.121164,0.244412,0.0676629,0.676918,0.00911438,0.470595,0.300631,0.176458,0.245596,0.157838,0.4368,0.138741,0.554348,0.141307,0.533689,0.847868,0.286327,0.0870632,0.131325,0.571272,0.909374,0.435158,0.709774,0.798998,0.908356,0.0857173,0.224608,0.928564,0.59113,0.0455698,0.0322375,0.584264,0.569149,0.0292562,0.210345,0.106325,0.742303,0.702021,0.939951,0.743293,0.0742326,0.924761,0.180425,0.871447,0.507022,0.0518579,0.236346,0.199989,0.0874427,0.234213,0.364899,0.183973,0.518464,0.823923,0.251395,0.746427,0.0447574,0.547836,0.232263,0.860928,0.0197715,0.420941,0.934005,0.23987,0.934089,0.565017,0.80951,0.572924,0.206981,0.586748,0.476925,0.011119,0.383136,0.0498586,0.533263,0.272148,0.251302,0.594801,0.334382,0.677195,0.350403,0.811059,0.111066,0.599726,0.345777,0.343568,0.0167799,0.912307,0.485414,0.334993,0.266016,0.87369,0.392496,0.936875,0.223849,0.681215,0.803437,0.63704,0.345351,0.146368,0.615196,0.449303,0.578537,0.270199,0.859824,0.434219,0.416924,0.401901,0.321827,0.977989,0.657794,0.18046,0.819081,0.0178708,0.613428,0.909669,0.673209,0.392379,0.668741,0.940209,0.544696,0.895163,0.521593,0.284012,0.901375,0.400394,0.221563,0.443376,0.0924756,0.410841,0.718469,0.48485,0.0342016,0.695524,0.884506,0.216871,0.283199,0.133151,0.216221,0.828241,0.0670673,0.127539,0.024375,0.734987,0.490803,0.0267467,0.620408,0.601848,0.210506,0.0138605,0.770764,0.320512,0.171993,0.745091,0.362764,0.367975,0.635116,0.35497,0.0904441,0.758372,0.0869852,0.677014,0.192227,0.722812,0.63141,0.19543,0.199845,0.3234,0.64413,0.803037,0.0180296,0.795277,0.884431,0.732562,0.745938,0.637646,0.265283,0.788555,0.500857,0.076573,0.256105,0.619294,0.986708,0.116949,0.201273,0.701181,0.955038,0.784066,0.00145012,0.196515,0.23403,0.879213,0.65195,0.382974,0.00767058,0.334442,0.858048,0.497656,0.0347099,0.686681,0.658012,0.261589,0.797271,0.57053,0.770287,0.146209,0.531,0.508764,0.659724,0.483405,0.189557,0.191533,0.79372,0.461726,0.810755,0.253095,0.826932,0.505946,0.632567,0.133096,0.848765,0.4533,0.184761,0.970738,0.292888,0.446526,0.389188,0.205801,0.966993,0.91936,0.528494,0.104522,0.395125,0.68234,0.481576,0.985332,0.852088,0.232098,0.708516,0.696465,0.486844,0.735273,0.169302,0.772581,0.110793,0.687616,0.446874,0.64817,0.313938,0.057304,0.265136,0.0468754,0.150292,0.734167,0.661749,0.366383,0.328978,0.322234,0.159905,0.293711,0.0392307,0.704449,0.635213,0.53744,0.248858,0.68792,0.966908,0.180637,0.480345,0.989169,0.49791,0.38495,0.411686,0.967759,0.943408,0.678525,0.885636,0.93224,0.277365,0.950107,0.843782,0.296814,0.981338,0.5972,0.391102,0.151169,0.240705,0.764967,0.535054,0.062896,0.353715,0.287472,0.360626,0.950984,0.716131,0.921728,0.897572,0.127248,0.210199,0.355818,0.988532,0.948033,0.420573,0.600409,0.423794,0.144577,0.328905,0.894049,0.659866,0.384719,0.278493,0.667399,0.518113,0.658911,0.293289,0.360859,0.137931,0.340434,0.0872658,0.212708,0.77766,0.712422,0.508343,0.0991818,0.360081,0.764537,0.0552885,0.602452,0.310439,0.813352,0.0285135,0.0645177,0.307087,0.53537,0.158527,0.270558,0.505793,0.937752,0.890731,0.103976,0.667889,0.984978,0.0733247,0.608208,0.0223791,0.281611,0.0168619,0.814995,0.420534,0.0860291,0.464583,0.528561,0.268664,0.851315,0.59603,0.711154,0.24779,0.047183,0.908363,0.00924158,0.601189,0.871755,0.0558329,0.980683,0.494741,0.566826,0.982737,0.719993,0.503316,0.703703,0.197635,0.497481,0.250327,0.614954,0.617418,0.563064,0.42712,0.303086,0.443007,0.565491,0.45727,0.938514,0.301927,0.502641,0.7426,0.960462,0.246007,0.444221,0.392325,0.0745501,0.867507,0.180129,0.923476,0.977979,0.127326,0.743344,0.31635,0.023067,0.726454,0.380995,0.673042,0.51479,0.586891,0.615739,0.258041,0.732967,0.167185,0.091924,0.482261,0.848893,0.186265,0.34399,0.470459,0.186204,0.956899,0.315437,0.53179,0.69207,0.555425,0.0472565,0.972087,0.958241,0.373395,0.483173,0.823808,0.799058,0.0181324,0.166644,0.68854,0.916666,0.837512,0.0362484,0.859328,0.484961,0.369044,0.230624,0.489231,0.592534,0.515483,0.604973,0.390208,0.303672,0.46055,0.591878,0.412306,0.553228,0.130522,0.790432,0.599537,0.503206,0.569303,0.135969,0.778715,0.729045,0.737649,0.963158,0.837176,0.589539,0.809409,0.486224,0.38281,0.246777,0.603734,0.428504,0.429733,0.0282016,0.0352797,0.128427,0.800544,0.354906,0.232308,0.547533,0.103437,0.974648,0.527016,0.691016,0.693113,0.80864,0.234485,0.219874,0.576401,0.773175,0.845239,0.706971,0.141319,0.704746,0.826442,0.734922,0.790233,0.495375,0.238385,0.91951,0.504326,0.636922,0.350687,0.993946,0.963116,0.926113,0.861379,0.87721,0.960298,0.0356663,0.347872,0.216179,0.945708,0.697608,0.10086,0.598328,0.405366,0.637783,0.259582,0.380969,0.792594,0.283718,0.214036,0.857342,0.624389,0.583292,0.813977,0.875724,0.0137046,0.510107,0.153939,0.789584,0.720691,0.849307,0.511044,0.57503,0.3773,0.357501,0.0803283,0.234302,0.861519,0.526568,0.41412,0.0243568,0.44475,0.753649,0.731675,0.215828,0.0256835,0.700865,0.114009,0.44058,0.15929,0.490087,0.691161,0.83688,0.577162,0.270635,0.0494058,0.241843,0.52367,0.764603,0.26315,0.0598615,0.174995,0.0181283,0.0367488,0.322981,0.982456,0.119789,0.269552,0.552988,0.906831,0.518308,0.401167,0.540856,0.912914,0.541215,0.370668,0.955544,0.44127,0.521782,0.532656,0.7534,0.579635,0.535521,0.712406,0.136158,0.241797,0.255045,0.754579,0.960101,0.38722,0.981129,0.903768,0.120425,0.217137,0.441943,0.797548,0.443327,0.483453,0.83371,0.733206,0.610651,0.504841,0.528279,0.414393,0.251296,0.0969599,0.289068,0.465856,0.164185,0.636721,0.0280323,0.981326,0.96772,0.822032,0.12582,0.246704,0.373226,0.640473,0.667462,0.460398,0.77126,0.856503,0.698116,0.0873159,0.115679,0.60768,0.222439,0.935244,0.414902,0.861529,0.77868,0.513115,0.778607,0.629241,0.940351,0.561072,0.685689,0.925545,0.951444,0.884827,0.707754,0.492504,0.836425,0.0110288,0.19279,0.0392085,0.539396,0.908117,0.0662663,0.00802869,0.137038,0.0873052,0.131795,0.246968,0.716385,0.182573,0.3851,0.297706,0.760201,0.775669,0.994561,0.758982,0.935832,0.366349,0.684731,0.917867,0.505976,0.77219,0.27822,0.710793,0.0604082,0.30101,0.975596,0.117001,0.149996,0.52615,0.793548,0.49096,0.799717,0.276254,0.367211,0.331083,0.384126,0.226247,0.355515,0.262438,0.592119,0.415453,0.993303,0.000193954,0.0924935,0.536156,0.118271,0.0581291,0.83229,0.940179,0.8097,0.475355,0.934542,0.30699,0.590108,0.00368953,0.295921,0.140758,0.455288,0.41068,0.662699,0.817574,0.749488,0.137354,0.6533,0.833935,0.645221,0.0799096,0.452087,0.319128,0.0928096,0.686415,0.413854,0.595374,0.819627,0.8532,0.716897,0.623756,0.402723,0.204849,0.176748,0.871865,0.833504,0.277658,0.862677,0.119981,0.489317,0.626051,0.248544,0.849206,0.370137,0.638623,0.671226,0.892122,0.46639,0.850744,0.78659,0.618934,0.00270277,0.15076,0.0220261,0.792993,0.101172,0.818521,0.349983,0.722668,0.688809,0.205164,0.574372,0.994531,0.17546,0.785162,0.920262,0.683353,0.190091,0.911925,0.0736132,0.347791,0.0230529,0.87233,0.0189855,0.427557,0.235105,0.0552004,0.860436,0.0924254,0.945172,0.924253,0.711859,0.838262,0.807715,0.666285,0.723389,0.732755,0.231599,0.0660136,0.337133,0.232071,0.646647,0.0528569,0.849622,0.48318,0.36061,0.551497,0.648672,0.404904,0.519495,0.112712,0.28718,0.343821,0.412119,0.219684,0.949302,0.97088,0.851708,|0.137141,0.462389,0.734765,0.249932,0.790966,0.735829,0.965267,0.302319,0.771796,0.89211,0.0739462,0.122074,0.961751,0.108818,0.740514,0.572482,0.954244,0.689763,0.403839,0.692444,0.950636,0.87463,0.486339,0.904895,0.597217,0.67184,0.975355,0.140448,0.531279,0.106571,0.324797,0.634417,0.593372,0.869059,0.582964,0.838551,0.754868,0.895149,0.855097,0.666555,0.439274,0.750679,0.465461,0.265925,0.327181,0.144975,0.413104,0.958291,0.269478,0.691863,0.14189,0.522164,0.663432,0.903388,0.965141,0.678546,0.324412,0.605335,0.67867,0.0972766,0.219565,0.693397,0.713916,0.0983714,0.112083,0.152879,0.615327,0.286958,0.290769,0.794906,0.455636,0.860327,0.771022,0.722016,0.44806,0.0175085,0.265109,0.935672,0.430784,0.341681,0.987144,0.4996,0.841906,0.92527,0.37947,0.78502,0.413553,0.753695,0.106303,0.613219,0.585758,0.113109,0.777776,0.660054,0.110274,0.0212482,0.0766506,0.392953,0.904885,0.0254241,0.366808,0.474259,0.12288,0.873629,0.180846,0.267595,0.191985,0.158591,0.686724,0.2583,0.101237,0.619038,0.327366,0.814497,0.664151,0.0734027,0.15255,0.351574,0.720654,0.988094,0.0677816,0.871972,0.117782,0.566325,0.969066,0.679495,0.184988,0.578543,0.0309379,0.465084,0.638552,0.512376,0.161922,0.486554,0.376253,0.467785,0.845952,0.459629,0.982693,0.133801,0.168352,0.574105,0.729151,0.402487,0.0235205,0.940797,0.0154943,0.206208,0.226654,0.0461554,0.955063,0.163868,0.794777,0.140943,0.11662,0.378283,0.239572,0.560285,0.406521,0.910811,0.20635,0.572293,0.554217,0.53926,0.76465,0.0201191,0.561463,0.484534,0.621918,0.729265,0.838925,0.219602,0.133061,0.0826367,0.164523,0.364236,0.586186,0.163477,0.328802,0.884203,0.144398,0.939793,0.27168,0.0188577,0.991553,0.806003,0.632854,0.207721,0.889312,0.287533,0.748391,0.724192,0.807196,0.507261,0.0695541,0.187786,0.0946262,0.0509026,0.250971,0.497389,0.440324,0.875632,0.0247502,0.0827029,0.507975,0.163152,0.232308,0.905412,0.04448,0.968907,0.622035,0.800517,0.102968,0.0208215,0.516742,0.311167,0.582006,0.59785,0.543496,0.140555,0.738467,0.780834,0.217083,0.261677,0.397579,0.115835,0.110117,0.408758,0.0349203,0.679035,0.891871,0.503038,0.160277,0.164458,0.261913,0.587424,0.538166,0.375502,0.811463,0.862444,0.382926,0.643657,0.165024,0.934524,0.689679,0.284565,0.718869,0.0805573,0.249859,0.995829,0.0862358,0.220798,0.697327,0.182915,0.780874,0.658685,0.580781,0.239789,0.633107,0.963149,0.9429,0.100278,0.679291,0.13273,0.928057,0.0348956,0.880435,0.452211,0.554592,0.968567,0.114356,0.641011,0.703814,0.0026567,0.998727,0.780118,0.734249,0.38591,0.88073,0.0441123,0.499139,0.296268,0.77266,0.844927,0.840972,0.250753,0.261773,0.762829,0.634892,0.459111,0.465392,0.256249,0.103464,0.59532,0.739842,0.869594,0.477477,0.468273,0.406283,0.135598,0.249495,0.408541,0.337763,0.931218,0.368404,0.803104,0.823136,0.191319,0.324901,0.770119,0.67997,0.0697136,0.367406,0.301673,0.3541,0.680956,0.569212,0.786319,0.474255,0.165132,0.7067,0.162051,0.725733,0.288265,0.881833,0.154004,0.40618,0.845988,0.522269,0.0978212,0.578428,0.839967,0.418347,0.697732,0.0785928,0.0673349,0.547909,0.968804,0.985777,0.266438,0.952141,0.564239,0.177094,0.945375,0.699051,0.794053,0.764581,0.402311,0.467395,0.233589,0.605494,0.616383,0.370493,0.934679,0.470054,0.70045,0.753976,0.361936,0.711354,0.245499,0.886621,0.650173,0.980791,0.23869,0.37478,0.384026,0.305594,0.999427,0.922382,0.257813,0.814999,0.455463,0.293902,0.944602,0.841644,0.209855,0.788086,0.810678,0.799667,0.127578,0.723888,0.280656,0.375601,0.749669,0.743754,0.611,0.0150191,0.947354,0.0491288,0.760779,0.540544,0.14039,0.431652,0.523704,0.791839,0.555192,0.450169,0.139552,0.0346751,0.156128,0.599967,0.00157797,0.0854119,0.0699546,0.647717,0.65985,0.143414,0.970122,0.303921,0.263472,0.977339,0.269038,0.700927,0.345164,0.264203,0.623978,0.990379,0.140783,0.552658,0.835798,0.24226,0.609117,0.0957693,0.00589561,0.0760511,0.411049,0.567375,0.65365,0.199199,0.00777978,0.338661,0.745983,0.855241,0.015414,0.59624,0.704383,0.703505,0.739071,0.0378343,0.38902,0.44053,0.796341,0.509772,0.195685,0.992888,0.160643,0.493873,0.170751,0.620259,0.884148,0.35987,0.170553,0.0328597,0.994178,0.109383,0.73042,0.403486,0.766266,0.726986,0.0265617,0.079956,0.21596,0.273157,0.641768,0.564146,0.936689,0.588458,0.60594,0.00709265,0.424921,0.380681,0.81101,0.279723,0.928441,0.959829,0.127742,0.809245,0.101726,0.913993,0.972298,0.79823,0.586567,0.67891,0.158636,0.982109,0.0136008,0.143293,0.746819,0.575607,0.976415,0.325712,0.781991,0.229396,0.0708582,0.887306,0.916856,0.423143,0.396624,0.566816,0.605136,0.454812,0.73207,0.95521,0.0753174,0.784177,0.0483863,0.975818,0.799288,0.342141,0.720476,0.708618,0.456732,0.217822,0.683103,0.572235,0.327223,0.225837,0.246594,0.585298,0.240352,0.215459,0.699812,0.593879,0.701167,0.348716,0.207506,0.748823,0.518819,0.697393,0.505424,0.384309,0.31202,0.879387,0.614628,0.0532548,0.997064,0.666916,0.0134812,0.510951,0.608468,0.165742,0.327244,0.717951,0.578965,0.617874,0.774204,0.86451,0.967892,0.102965,0.721451,0.377675,0.0936716,0.841544,0.28409,0.514735,0.158182,0.751113,0.742944,0.920821,0.209912,0.432474,0.725955,0.318912,0.945446,0.362266,0.557098,0.316065,0.141817,0.633502,0.317972,0.744366,0.630827,0.0241876,0.211425,0.813154,0.555251,0.00446653,0.970612,0.907157,0.25853,0.959616,0.0852016,0.127915,0.175494,0.104063,0.345651,0.491883,0.753777,0.795738,0.311595,0.182998,0.610482,0.419837,0.341739,0.270069,0.532545,0.175839,0.519258,0.886833,0.997878,0.0775059,0.162741,0.511202,0.612581,0.441727,0.354235,0.386257,0.813776,0.579859,0.587063,0.938233,0.204937,0.286498,0.713287,0.199932,0.90717,0.978843,0.806856,0.191358,0.792064,0.235097,0.532275,0.815043,0.42556,0.330289,0.966406,0.787219,0.693507,0.801571,0.637137,0.709049,0.806984,0.819964,0.928547,0.356209,0.220536,0.248367,0.450962,0.639293,0.269202,0.376728,0.530605,0.572051,0.921524,0.631079,0.123106,0.680003,0.140562,0.0248135,0.704742,0.176048,0.210438,0.727197,0.524719,0.162656,0.528978,0.249626,0.774957,0.0248205,0.779325,0.798717,0.114626,0.770125,0.1689,0.975712,0.306696,0.192036,0.486075,0.690183,0.492499,0.282634,0.0393828,0.781225,0.582868,0.547445,0.902122,0.773574,0.0480973,0.0281539,0.535698,0.411702,0.327754,0.709054,0.319695,0.803227,0.722649,0.547757,0.102074,0.212402,0.343593,0.0660442,0.25091,0.316189,0.581592,0.171091,0.727021,0.885109,0.426163,0.753066,0.453842,0.111671,0.637563,0.379599,0.31016,0.872477,0.176522,0.336175,0.58076,0.170435,0.608732,0.815445,0.547365,0.0740047,0.439338,0.540558,0.308371,0.337452,0.767771,0.11937,0.840623,0.566742,0.901826,0.0276728,0.333982,0.753729,0.384535,0.461318,0.0752933,0.206529,0.235579,0.102253,0.599841,0.552672,0.4895,0.958161,0.835804,0.908862,0.0867733,0.52813,0.897808,0.615289,0.412374,0.850242,0.236641,0.177207,0.540338,0.999538,0.290219,0.779344,0.0530828,0.277269,0.238635,0.217172,0.893814,0.620674,0.916111,0.83686,0.957365,0.572131,0.0245551,0.998653,0.97129,0.899419,0.254507,0.826676,0.0884563,0.595207,0.803273,0.709913,0.0860109,0.335493,0.447783,0.943492,0.099048,0.298189,0.466696,0.448983,0.854583,0.786387,0.469329,0.49095,0.82662,0.246339,0.755848,0.0309149,0.693807,0.901105,0.966369,0.930689,0.57818,0.35614,0.940167,0.0742302,0.0655568,0.34591,0.0952656,0.321054,0.678289,0.59684,0.145103,0.33867,0.400358,0.314836,0.789142,0.268855,0.447794,0.264247,0.802307,0.368223,0.978674,0.295881,0.102683,0.980709,0.16965,0.325726,0.116754,0.0435615,0.678485,0.285615,0.359203,0.867575,0.582526,0.907265,0.0835209,0.382404,0.0101386,0.202337,0.75428,0.0352005,0.500109,0.736903,0.29889,0.504978,0.530714,0.572936,0.116143,0.751545,0.879107,0.0603557,0.26095,0.500363,0.200842,0.0795408,0.798934,0.391093,0.531803,0.903723,0.655783,0.953117,0.936076,0.780538,0.917226,0.457647,0.392121,0.552198,0.783495,0.841975,0.426532,0.737257,0.538565,0.600512,0.600624,0.0265402,0.6999,0.0952212,0.998841,0.255075,0.151779,0.430703,0.727818,0.503475,0.625933,0.115682,0.27088,0.588857,0.805484,0.283946,0.0821311,0.438868,0.306503,0.799947,0.487807,0.565635,0.178777,0.25541,0.121881,0.507124,0.578562,0.291477,0.831875,0.601114,0.192289,0.0797946,0.497106,0.784586,0.0758381,0.146424,0.427215,0.397006,0.48162,0.80124,0.435891,0.694094,0.728432,0.407803,0.782115,0.209637,0.69991,0.632283,0.207322,0.0721306,0.434024,0.374363,0.442401,0.661346,0.627486,0.628178,0.892622,0.37098,0.397803,0.0567784,0.8721,0.574386,0.727564,0.749887,0.123776,0.511657,0.316165,0.153412,0.351979,0.456761,0.908409,0.687822,0.39141,0.673245,0.737711,0.2664,0.19986,0.914211,0.960934,0.598057,0.616334,0.169539,0.976447,0.317543,0.328791,0.293996,0.528138,0.973644,0.162302,0.708639,0.966496,0.978404,0.0826795,0.975123,0.366219,0.350322,0.989886,0.244681,0.733083,0.389232,0.531571,0.242043,0.421183,0.913421,0.302627,0.362066,0.00264728,0.838798,0.995648,0.65895,0.911059,0.972537,0.9806,0.257527,0.552222,0.633267,0.155868,0.0312321,0.885958,0.647278,0.520346,0.540324,0.866421,0.621554,0.761397,0.252019,0.279073,0.892315,0.222728,0.802634,0.0178545,0.566082,0.96124,0.760397,0.775625,0.456925,0.994384,0.499265,0.197165,|0.798232,0.332622,0.649964,0.928485,0.931565,0.310788,0.439434,0.493077,0.364246,0.020525,0.432528,0.189255,0.537729,0.229185,0.643418,0.383165,0.0734487,0.144979,0.209358,0.956818,0.323056,0.383096,0.962949,0.977623,0.813622,0.442736,0.644609,0.857952,0.603917,0.978889,0.13415,0.858404,0.402596,0.895442,0.457457,0.315987,0.528281,0.000840425,0.823897,0.588607,0.770315,0.517281,0.410845,0.434822,0.629591,0.494691,0.634386,0.486584,0.118473,0.017715,0.222057,0.827987,0.546916,0.511322,0.567274,0.532179,0.699097,0.615845,0.415544,0.834853,0.947591,0.0716764,0.669432,0.662032,0.0459724,0.0865631,0.512615,0.350947,0.645967,0.0752058,0.266723,0.611659,0.179161,0.046241,0.484784,0.379454,0.546396,0.335024,0.962581,0.177102,0.112194,0.800231,0.381225,0.471844,0.193682,0.00211155,0.192715,0.855476,0.235115,0.634524,0.418414,0.207229,0.42301,0.00625509,0.611787,0.189658,0.510965,0.562542,0.726323,0.4231,0.795841,0.509627,0.101513,0.597309,0.648925,0.908516,0.343188,0.208865,0.156027,0.323379,0.601597,0.559821,0.750864,0.610602,0.0629239,0.587232,0.453022,0.987707,0.866374,0.223943,0.172462,0.801337,0.996473,0.203347,0.634034,0.72342,0.041442,0.884569,0.699345,0.0744919,0.993931,0.789183,0.177636,0.24878,0.235693,0.276288,0.482266,0.815073,0.85477,0.740167,0.467155,0.979524,0.912221,0.291947,0.832815,0.0905457,0.210322,0.214839,0.154868,0.721432,0.527459,0.255093,0.341935,0.627516,0.353639,0.303342,0.0990199,0.881397,0.167288,0.555612,0.0128117,0.416453,0.966483,0.171207,0.664311,0.134722,0.858927,0.839039,0.262669,0.45715,0.118323,0.466608,0.00770587,0.142019,0.579292,0.587294,0.839693,0.172728,0.999656,0.0987613,0.384133,0.293544,0.802426,0.0261241,0.662174,0.850974,0.887327,0.719862,0.303277,0.790372,0.238077,0.798701,0.931097,0.0944973,0.168075,0.0152001,0.194784,0.631783,0.374918,0.150662,0.00517309,0.441967,0.148011,0.546518,0.070621,0.275865,0.460626,0.759029,0.993615,0.420772,0.265118,0.704497,0.969666,0.357056,0.323885,0.387736,0.717031,0.985413,0.385336,0.324599,0.975968,0.983632,0.0937248,0.338302,0.0852724,0.972893,0.814729,0.124618,0.900264,0.460248,0.977648,0.243425,0.505421,0.142297,0.626062,0.696543,0.431282,0.418663,0.431474,0.427602,0.880443,0.568043,0.6767,0.0588282,0.632051,0.117817,0.752519,0.266787,0.716163,0.743591,0.44175,0.849057,0.57385,0.183147,0.899259,0.650441,0.737198,0.422058,0.0270355,0.0793125,0.00594074,0.653168,0.593024,0.426515,0.769396,0.902112,0.139156,0.137082,0.730655,0.441521,0.993575,0.946904,0.48105,0.470391,0.864528,0.683548,0.781322,0.748866,0.674516,0.468635,0.878061,0.907217,0.409794,0.467341,0.949835,0.262307,0.382399,0.782438,0.849915,0.0154929,0.0654176,0.102359,0.259411,0.763517,0.356848,0.366005,0.417309,0.256517,0.892021,0.0751469,0.401041,0.656594,0.923142,0.610597,0.477459,0.125665,0.209724,0.914047,0.00521988,0.236471,0.953655,0.180266,0.230422,0.48396,0.622798,0.775656,0.967027,0.486702,0.256071,0.380453,0.311684,0.140149,0.0132264,0.932351,0.00890589,0.578424,0.649364,0.0725495,0.498419,0.627464,0.453114,0.289738,0.244835,0.0575283,0.76243,0.988065,0.664785,0.600876,0.603321,0.406467,0.432028,0.21842,0.700109,0.191752,0.877182,0.614807,0.779982,0.403281,0.167601,0.471506,0.499271,0.141979,0.611361,0.631393,0.100642,0.727054,0.635158,0.390585,0.671868,0.748028,0.478331,0.448586,0.379585,0.145383,0.184402,0.327893,0.867914,0.167157,0.74911,0.359747,0.732418,0.571536,0.983766,0.17975,0.606477,0.370329,0.0586745,0.322681,0.598563,0.504371,0.615637,0.729569,0.914919,0.21181,0.0200337,0.547069,0.858516,0.898073,0.673144,0.598694,0.796676,0.796661,0.932871,0.261378,0.390243,0.634461,0.871318,0.591343,0.393198,0.0869795,0.671201,0.223856,0.47603,0.772333,0.100066,0.860851,0.532081,0.651601,0.0186022,0.939346,0.561125,0.567162,0.954293,0.820368,0.710667,0.965587,0.751914,0.989983,0.515085,0.759798,0.210434,0.308929,0.585012,0.383925,0.617859,0.61561,0.0570253,0.117831,0.467703,0.880863,0.719884,0.999658,0.724185,0.998439,0.537777,0.468542,0.295255,0.611741,0.432165,0.444957,0.955572,0.899906,0.385253,0.755995,0.283709,0.165196,0.218384,0.587208,0.428603,0.646587,0.465538,0.96294,0.149613,0.743521,0.29626,0.244471,0.928172,0.165031,0.407311,0.949736,0.687073,0.685287,0.198188,0.731381,0.390881,0.993678,0.46717,0.763471,0.764254,0.594746,0.0322425,0.727941,0.126822,0.604043,0.847488,0.0482352,0.58959,0.937145,0.768134,0.704782,0.796991,0.357547,0.65242,0.228348,0.187167,0.851826,0.688431,0.727115,0.622706,0.177848,0.40288,0.565423,0.43834,0.919553,0.484478,0.2715,0.0607811,0.304103,0.471142,0.293307,0.630769,0.20852,0.364795,0.0234305,0.432448,0.294144,0.18441,0.538424,0.264869,0.16569,0.795487,0.0150948,0.780406,0.804027,0.00166905,0.257076,0.953321,0.869706,0.39755,0.42438,0.92338,0.840191,0.278646,0.797954,0.639312,0.0378848,0.572597,0.858953,0.946659,0.982453,0.255574,0.348708,0.814632,0.0663794,0.297725,0.891607,0.595687,0.491342,0.401019,0.809531,0.492512,0.274751,0.727476,0.560655,0.154635,0.96136,0.201581,0.475609,0.227609,0.813245,0.0943125,0.731306,0.47599,0.126898,0.162618,0.879545,0.0595731,0.974166,0.832389,0.261836,0.628356,0.379523,0.663245,0.173739,0.55042,0.422424,0.814656,0.596058,0.580667,0.220345,0.492961,0.132431,0.0504659,0.897165,0.495867,0.856696,0.958423,0.104119,0.453698,0.0377962,0.958646,0.731645,0.0163428,0.615527,0.494581,0.998818,0.784912,0.87277,0.681651,0.0596125,0.584321,0.890564,0.217342,0.846881,0.564705,0.623508,0.262227,0.270208,0.880294,0.0198172,0.112488,0.595033,0.503158,0.889681,0.387539,0.735643,0.192199,0.124889,0.40404,0.130175,0.439915,0.0679137,0.468593,0.874896,0.843933,0.951789,0.456052,0.00743014,0.50354,0.934046,0.628253,0.039279,0.605716,0.161384,0.0175852,0.185941,0.167605,0.0293936,0.900303,0.557502,0.0743708,0.158536,0.669241,0.436864,0.621558,0.560687,0.883491,0.999674,0.659136,0.318683,0.757147,0.0239449,0.955374,0.0839032,0.442917,0.546822,0.950359,0.917646,0.875416,0.0252352,0.28318,0.710027,0.731961,0.995846,0.391858,0.498268,0.697798,0.199938,0.37743,0.169374,0.993557,0.539798,0.611392,0.354477,0.877923,0.720537,0.348192,0.0165198,0.769101,0.177862,0.441792,0.62314,0.288334,0.70037,0.111206,0.225788,0.782054,0.207459,0.0693054,0.777315,0.0820943,0.326958,0.856107,0.623008,0.318669,0.872505,0.368267,0.240556,0.106909,0.78385,0.118543,0.105311,0.934125,0.943029,0.176068,0.704455,0.508511,0.144596,0.530063,0.195029,0.339596,0.731545,0.957178,0.361986,5.60284e-05,0.868591,0.125734,0.404192,0.600807,0.346072,0.610967,0.452077,0.454423,0.736575,0.971351,0.776792,0.703626,0.910244,0.81713,0.0765191,0.294773,0.462706,0.00398391,0.261319,0.698463,0.118288,0.783881,0.692067,0.581408,0.139781,0.385879,0.899921,0.993421,0.537094,0.331584,0.447403,0.829004,0.623456,0.113194,0.820161,0.661643,0.426417,0.802111,0.880957,0.869656,0.673481,0.281657,0.608019,0.95904,0.616907,0.93149,0.498711,0.513277,0.256511,0.477942,0.763308,0.240271,0.0948259,0.480862,0.0468796,0.221474,0.3503,0.87767,0.936809,0.830151,0.863199,0.767509,0.526906,0.650918,0.875849,0.00447673,0.979842,0.375279,0.812161,0.454205,0.0186745,0.614355,0.704419,0.163704,0.517239,0.474409,0.252517,0.0823606,0.856718,0.219031,0.737743,0.52579,0.822428,0.568413,0.532291,0.185453,0.508252,0.535873,0.580468,0.209656,0.696765,0.211447,0.465498,0.444978,0.120167,0.614407,0.416419,0.913409,0.668896,0.0570247,0.168287,0.30435,0.0175123,0.755685,0.912994,0.361076,0.0212098,0.748423,0.932236,0.165422,0.988659,0.882792,0.162236,0.87323,0.957221,0.731751,0.395653,0.0419889,0.209463,0.118747,0.840218,0.132865,0.0544616,0.880684,0.525429,0.508025,0.212119,0.0639938,0.126305,0.711796,0.82717,0.470211,0.369588,0.789162,0.572843,0.904383,0.195802,0.178307,0.534681,0.7871,0.0489275,0.372484,0.168982,0.490666,0.535263,0.435478,0.535716,0.579945,0.127929,0.164232,0.174999,0.113877,0.618362,0.755848,0.831847,0.0145268,0.220258,0.916069,0.278491,0.00124532,0.58713,0.468426,0.218286,0.313955,0.520516,0.059933,0.545309,0.0675504,0.712876,0.28699,0.10882,0.829566,0.912122,0.623689,0.399242,0.77359,0.266758,0.554419,0.491042,0.637386,0.852358,0.747482,0.917904,0.588082,0.0540419,0.914869,0.90878,0.910328,0.589455,0.669925,0.522034,0.136951,0.128293,0.785939,0.567911,0.524549,0.550393,0.210922,0.68419,0.562733,0.115215,0.066607,0.835259,0.413517,0.0269807,0.649081,0.832041,0.64968,0.150326,0.178298,0.730344,0.804091,0.383801,0.869936,0.434481,0.203911,0.296871,0.521248,0.866087,0.821402,0.532986,0.791793,0.714738,0.398583,0.627887,0.17836,0.371434,0.53154,0.159075,0.742571,0.327219,0.766885,0.272974,0.548028,0.622208,0.894852,0.909911,0.807471,0.0783646,0.224135,0.354031,0.998637,0.675068,0.967251,0.134803,0.888742,0.370606,0.199561,0.591865,0.531862,0.0346383,0.0594653,0.16716,0.026746,0.402034,0.121686,0.0699873,0.86714,0.971503,0.994064,0.113488,0.234035,0.398196,0.353315,0.570018,0.479371,0.54855,0.999858,0.517436,0.255736,0.450045,0.635804,0.0111681,0.83104,0.561732,0.0419049,0.10346,0.789745,0.603546,0.149223,0.613444,0.850942,0.548637,0.0557505,0.363573,0.180197,0.55311,0.000711739,0.518042,0.072399,0.147687,0.572548,0.938485,0.697142,0.103023,|0.892692,0.956228,0.94536,0.764863,0.061475,0.554665,0.185768,0.802695,0.877145,0.83032,0.100776,0.0103458,0.168699,0.187322,0.286531,0.91144,0.591106,0.748876,0.558711,0.172411,0.354515,0.290701,0.851275,0.431046,0.829179,0.5822,0.545102,0.0468698,0.662715,0.113525,0.717746,0.790671,0.580078,0.511938,0.30762,0.472539,0.366359,0.448485,0.15916,0.48107,0.763637,0.592935,0.955104,0.16443,0.672275,0.167874,0.213412,0.912293,0.990764,0.296949,0.263228,0.248645,0.539352,0.329547,0.934766,0.995371,0.688893,0.263213,0.0028137,0.363024,0.732327,0.486827,0.233715,0.210172,0.403051,0.399807,0.40259,0.0144773,0.335485,0.425362,0.990206,0.805606,0.989595,0.88498,0.820063,0.359726,0.935169,0.850219,0.583038,0.0678653,0.976905,0.816278,0.0776665,0.0401059,0.749897,0.121284,0.133738,0.27724,0.863309,0.00444353,0.881544,0.988616,0.948246,0.764579,0.277529,0.562646,0.965904,0.816152,0.665668,0.0104538,0.426678,0.936996,0.157201,0.151168,0.288464,0.158326,0.755448,0.777401,0.85337,0.965346,0.889184,0.979578,0.494802,0.506165,0.52538,0.687645,0.246977,0.630495,0.221701,0.787652,0.492778,0.844211,0.442082,0.773171,0.149933,0.227294,0.349065,0.2469,0.405976,0.194929,0.906645,0.206605,0.108971,0.579309,0.878054,0.783572,0.20397,0.387705,0.171793,0.511481,0.513384,0.078983,0.725805,0.363514,0.703042,0.107148,0.0177686,0.354717,0.575509,0.862403,0.0493724,0.62764,0.926569,0.574745,0.124543,0.147688,0.770175,0.212592,0.120534,0.0594555,0.641531,0.592598,0.838599,0.106859,0.826592,0.395187,0.0347764,0.71092,0.0836395,0.0332528,0.21266,0.732085,0.541361,0.473449,0.141233,0.112249,0.344397,0.191614,0.0624088,0.406901,0.934186,0.0164408,0.986151,0.821862,0.352141,0.451536,0.874129,0.19065,0.197695,0.405828,0.0516166,0.691958,0.627243,0.0555815,0.24223,0.990218,0.308853,0.634679,0.0296735,0.586035,0.302224,0.318515,0.258962,0.998038,0.734515,0.347727,0.145016,0.10448,0.91608,0.814873,0.0995282,0.509326,0.559371,0.406747,0.601428,0.400676,0.23632,0.516721,0.940631,0.478943,0.00451553,0.776253,0.926564,0.0942045,0.151379,0.108945,0.501931,0.0372106,0.564387,0.628888,0.797649,0.359786,0.869152,0.609905,0.566936,0.335598,0.881208,0.112099,0.0868809,0.116979,0.361719,0.267604,0.248893,0.459367,0.636974,0.847234,0.547837,0.0611663,0.202853,0.772809,0.558613,0.269628,0.278317,0.465296,0.488679,0.424386,0.104903,0.110837,0.420337,0.475033,0.0220939,0.910488,0.83134,0.070043,0.246368,0.202981,0.184172,0.00219363,0.343283,0.454319,0.118815,0.871112,0.926174,0.0538675,0.555504,0.949781,0.00524271,0.924954,0.398966,0.580454,0.909377,0.678997,0.610607,0.360297,0.228557,0.900989,0.508458,0.664035,0.818765,0.981771,0.464871,0.662688,0.837861,0.621238,0.312279,0.0353025,0.089658,0.665346,0.569009,0.818965,0.0836098,0.209643,0.233517,0.73299,0.831653,0.872166,0.242095,0.239899,0.214869,0.246415,0.939573,0.707238,0.131625,0.190467,0.118259,0.771459,0.0134419,0.0154033,0.0540165,0.296497,0.831165,0.657909,0.19333,0.707438,0.798987,0.915287,0.122093,0.675851,0.452182,0.434783,0.967544,0.286279,0.614163,0.67589,0.979157,0.229425,0.869614,0.961524,0.860786,0.138694,0.18249,0.149457,0.268068,0.760435,0.621903,0.889562,0.771042,0.345122,0.998398,0.885081,0.937605,0.771638,0.0179039,0.440403,0.582235,0.814865,0.643291,0.365651,0.69959,0.0323577,0.351591,0.896103,0.113489,0.152617,0.728906,0.261549,0.393844,0.16623,0.294965,0.631049,0.277196,0.194945,0.465809,0.219119,0.404859,0.412163,0.867455,0.417729,0.0199822,0.17046,0.679866,0.475229,0.830116,0.182242,0.929573,0.768066,0.779597,0.000862718,0.988211,0.0832493,0.701853,0.161253,0.833251,0.305376,0.685237,0.189532,0.995642,0.288997,0.131053,0.824529,0.606564,0.965447,0.958032,0.833937,0.322174,0.602469,0.53592,0.617318,0.71157,0.160212,0.326754,0.0655674,0.0414088,0.595115,0.359482,0.201604,0.922051,0.336332,0.293635,0.90522,0.324297,0.620548,0.0616139,0.832772,0.792219,0.333495,0.44273,0.118746,0.711845,0.818616,0.596435,0.753622,0.735618,0.173245,0.113936,0.0504549,0.518274,0.216308,0.672409,0.778729,0.965995,0.70265,0.575395,0.279417,0.0225223,0.958652,0.662227,0.119239,0.822969,0.479437,0.238396,0.205372,0.829016,0.594198,0.153226,0.957858,0.642904,0.211951,0.286054,0.374473,0.380066,0.835825,0.966752,0.794212,0.384762,0.0699562,0.351218,0.585816,0.61028,0.675783,0.011395,0.861929,0.176443,0.546348,0.280988,0.16327,0.93904,0.64616,0.501404,0.0668358,0.410539,0.712294,0.826403,0.257549,0.000910461,0.598231,0.310751,0.669488,0.543073,0.198234,0.194336,0.751474,0.547,0.357644,0.566066,0.371416,0.933621,0.345797,0.279119,0.155,0.749154,0.502985,0.0795619,0.267597,0.684325,0.928218,0.828193,0.712636,0.40091,0.817235,0.462275,0.489738,0.94174,0.181327,0.424485,0.358463,0.34576,0.852723,0.529079,0.412602,0.728172,0.245645,0.206313,0.51565,0.0673205,0.0849562,0.286534,0.109205,0.00259531,0.124532,0.558133,0.968239,0.898917,0.30903,0.944806,0.500372,0.241098,0.445222,0.0402332,0.246012,0.166039,0.118582,0.419821,0.671966,0.898528,0.856057,0.492346,0.819169,0.0450687,0.693718,0.902553,0.937518,0.285653,0.919508,0.97548,0.979393,0.995483,0.412305,0.349621,0.921373,0.627451,0.191515,0.757104,0.962227,0.714061,0.625305,0.317514,0.981506,0.0185186,0.73522,0.040433,0.208819,0.0686787,0.867792,0.0970878,0.34084,0.388482,0.496287,0.737209,0.685111,0.899451,0.854259,0.988011,0.0486134,0.309079,0.893421,0.503063,0.680784,0.459587,0.712137,0.384218,0.45661,0.231812,0.93439,0.163769,0.47785,0.665123,0.376554,0.663726,0.827155,0.353041,0.301283,0.523615,0.225949,0.529495,0.521372,0.723919,0.973477,0.925557,0.74814,0.158588,0.704334,0.334339,0.123246,0.14475,0.915035,0.948244,0.650594,0.829503,0.626749,0.442046,0.161018,0.491794,0.71848,0.529169,0.0846638,0.573255,0.610262,0.897623,0.825734,0.669512,0.47622,0.92543,0.746813,0.667979,0.248528,0.603345,0.0472122,0.601649,0.289218,0.374123,0.425244,0.692552,0.263669,0.00672126,0.342968,0.406561,0.908316,0.0171763,0.847092,0.637976,0.995731,0.724113,0.734024,0.15827,0.637217,0.985086,0.848709,0.023569,0.736598,0.541545,0.896333,0.838782,0.689554,0.100528,0.506344,0.875182,0.884069,0.0929286,0.807927,0.262382,0.673276,0.906924,0.294901,0.576976,0.651981,0.864086,0.457244,0.727114,0.254374,0.373811,0.770158,0.360524,0.749039,0.372164,0.12503,0.121218,0.883301,0.957399,0.191438,0.13968,0.55594,0.966002,0.0546581,0.890936,0.671341,0.0218799,0.165027,0.86444,0.274256,0.313132,0.695521,0.594812,0.343457,0.12301,0.594375,0.128696,0.562892,0.338988,0.987948,0.0493501,0.382479,0.168249,0.81633,0.12264,0.267017,0.987873,0.421353,0.572156,0.702655,0.505058,0.676032,0.0261328,0.0969763,0.856366,0.732567,0.539317,0.067237,0.156824,0.0730855,0.0756735,0.983616,0.601149,0.630996,0.942648,0.200134,0.31917,0.16921,0.344668,0.590665,0.651731,0.862684,0.786991,0.710796,0.329985,0.458527,0.086532,0.391653,0.467128,0.826658,0.0359952,0.967085,0.959246,0.874716,0.435596,0.796068,0.121875,0.904359,0.41891,0.327842,0.832566,0.249297,0.18509,0.759412,0.247485,0.584648,0.723577,0.769982,0.530428,0.131073,0.802622,0.461237,0.922408,0.877205,0.3497,0.352397,0.612298,0.625595,0.189838,0.0765172,0.780321,0.541265,0.11079,0.0336868,0.707035,0.091472,0.714594,0.120307,0.839879,0.700175,0.112435,0.898617,0.995278,0.984011,0.761383,0.349581,0.45199,0.483516,0.658502,0.999542,0.189633,0.070397,0.993267,0.351145,0.441491,0.65764,0.618016,0.98535,0.119713,0.0216688,0.524486,0.689211,0.0888277,0.166518,0.669166,0.79111,0.524131,0.859945,0.989656,0.729457,0.601173,0.55197,0.060358,0.538298,0.814682,0.665886,0.727275,0.996067,0.825087,0.0454127,0.759076,0.820226,0.0981153,0.18988,0.855615,0.0488843,0.6043,0.0867081,0.133667,0.24701,0.131697,0.922736,0.342385,0.41502,0.889146,0.0671704,0.980523,0.67032,0.601029,0.976718,0.873061,0.519917,0.480619,0.317767,0.47567,0.197864,0.176559,0.609577,0.385988,0.159945,0.377475,0.848514,0.826105,0.508408,0.369487,0.192914,0.75721,0.260907,0.319821,0.352058,0.267701,0.0929968,0.155795,0.792031,0.0506629,0.856556,0.152196,0.505619,0.0974783,0.916943,0.52964,0.559045,0.69708,0.327728,0.599885,0.0114272,0.700639,0.110262,0.969475,0.571058,0.387957,0.629022,0.593665,0.889572,0.250879,0.392966,0.887797,0.990256,0.456702,0.339888,0.606051,0.684731,0.0288115,0.925017,0.802218,0.196341,0.0501603,0.812839,0.374366,0.895836,0.897903,0.817441,0.385201,0.608448,0.539899,0.678459,0.0943471,0.115496,0.0898513,0.608725,0.026321,0.958266,0.578865,0.28114,0.892047,0.312473,0.134719,0.300527,0.173331,0.306489,0.4128,0.775273,0.806343,0.989041,0.984816,0.0766697,0.580926,0.975684,0.821286,0.0977362,0.909175,0.0550577,0.643314,0.125351,0.134062,0.452835,0.795452,0.139709,0.37395,0.382683,0.485015,0.887224,0.847944,0.468723,0.368158,0.234064,0.27232,0.779825,0.341807,0.504686,0.28038,0.148762,0.100922,0.918638,0.711443,0.896839,0.341568,0.0244586,0.273766,0.580339,0.841562,0.365897,0.971945,0.485891,0.603127,0.013001,0.373347,0.196586,0.939966,0.908639,0.333109,0.0516917,0.894981,0.920437,0.58567,0.109022,0.965943,0.738255,0.718438,0.0259385,0.190407,0.187399,0.183125,0.747856,0.244009,0.334398,0.431702,0.640106,0.50729,0.0922226,|0.186223,0.676701,0.933802,0.0491166,0.603288,0.733407,0.0777656,0.0119146,0.706148,0.332099,0.396891,0.54719,0.145504,0.652919,0.0146443,0.14706,0.733371,0.494082,0.955674,0.210923,0.637918,0.5597,0.533589,0.511074,0.298983,0.644635,0.29048,0.616008,0.126067,0.195529,0.882333,0.835789,0.911158,0.524268,0.798504,0.322486,0.225335,0.182884,0.524063,0.615331,0.643211,0.295126,0.27971,0.769342,0.428955,0.29006,0.5487,0.61151,0.196986,0.712859,0.431021,0.386049,0.334353,0.927906,0.913912,0.240336,0.565691,0.620624,0.556845,0.394153,0.480791,0.300462,0.548614,0.788747,0.0112138,0.620282,0.574444,0.527526,0.307304,0.0435682,0.546263,0.21665,0.299667,0.188986,0.0839189,0.945918,0.726369,0.371897,0.924363,0.753397,0.807097,0.812401,0.766048,0.0225587,0.383939,0.688192,0.52821,0.310255,0.345546,0.322656,0.111793,0.0918231,0.473816,0.524302,0.626296,0.472836,0.357977,0.981228,0.231101,0.0716816,0.656789,0.727625,0.0732436,0.491415,0.103536,0.543235,0.563636,0.609362,0.877329,0.109749,0.162501,0.990549,0.695265,0.0160112,0.165822,0.660411,0.498731,0.742219,0.434401,0.712974,0.212183,0.843568,0.827859,0.0928977,0.788973,0.396728,0.618425,0.981537,0.531129,0.671591,0.289575,0.839426,0.0842457,0.814674,0.290411,0.849621,0.80383,0.699974,0.222949,0.806481,0.396142,0.621741,0.573469,0.116346,0.0568443,0.0832915,0.70539,0.342655,0.759132,0.660899,0.598736,0.174731,0.631045,0.00475013,0.929961,0.108879,0.642462,0.399574,0.941943,0.096956,0.142541,0.402459,0.135018,0.319943,0.269951,0.493774,0.675927,0.711138,0.517749,0.391976,0.711259,0.883592,0.143846,0.0279658,0.554616,0.0714096,0.0570601,0.372451,0.791723,0.97581,0.182762,0.442968,0.380211,0.155053,0.700407,0.016095,0.460423,0.9673,0.484906,0.176457,0.822443,0.485794,0.620294,0.259142,0.31575,0.0462884,0.126801,0.182299,0.802142,0.265721,0.993321,0.467401,0.976179,0.611988,0.243389,0.0966739,0.716557,0.900885,0.176745,0.985994,0.220515,0.699855,0.532109,0.429346,0.603909,0.567984,0.725262,0.298294,0.895457,0.938922,0.215373,0.431689,0.989067,0.239834,0.139728,0.284552,0.778798,0.622378,0.876377,0.702361,0.245017,0.663624,0.589098,0.801423,0.324139,0.0782664,0.721754,0.283579,0.152104,0.82016,0.595995,0.407905,0.413404,0.433176,0.231915,0.538581,0.592037,0.538573,0.692497,0.525728,0.142562,0.862486,0.503381,0.369606,0.54318,0.844821,0.730742,0.180256,0.420208,0.683559,0.760878,0.872943,0.190724,0.626046,0.536663,0.75561,0.329688,0.09363,0.334574,0.0838932,0.725345,0.0436193,0.0760595,0.970908,0.212493,0.855566,0.601518,0.63982,0.89554,0.941557,0.345091,0.117997,0.161614,0.0514352,0.747512,0.895748,0.331756,0.463071,0.424707,0.969869,0.102621,0.263723,0.21844,0.499945,0.857061,0.656303,0.61072,0.881664,0.507188,0.0745773,0.239708,0.533363,0.522725,0.996306,0.0194796,0.553477,0.562928,0.429526,0.625511,0.673184,0.338836,0.668415,0.838865,0.698374,0.312706,0.169087,0.518345,0.0652444,0.228213,0.17329,0.148978,0.207254,0.960306,0.0239161,0.46172,0.339012,0.593988,0.479711,0.124609,0.495429,0.993354,0.644992,0.916981,0.523331,0.302714,0.689168,0.683365,0.82524,0.330753,0.718977,0.081635,0.412869,0.308494,0.550125,0.964176,0.467829,0.195466,0.229033,0.0313065,0.603586,0.771944,0.0461015,0.629607,0.0738816,0.179606,0.481203,0.105793,0.517234,0.421402,0.603532,0.486225,0.59272,0.988895,0.1637,0.451065,0.916112,0.0208918,0.914827,0.0114588,0.0687926,0.0397916,0.854159,0.69116,0.768515,0.444878,0.328144,0.81222,0.765009,0.872691,0.700365,0.0432215,0.00728941,0.0521276,0.234113,0.348753,0.274523,0.706111,0.184243,0.975204,0.828139,0.668153,0.257929,0.00892782,0.488626,0.393861,0.80494,0.209666,0.441007,0.119092,0.831398,0.212392,0.261407,0.0210082,0.172883,0.583368,0.633741,0.287533,0.121369,0.0685827,0.83113,0.574821,0.177441,0.318284,0.940512,0.902762,0.701289,0.102369,0.591386,0.667715,0.500877,0.883048,0.108377,0.38978,0.914235,0.523998,0.791695,0.861432,0.430351,0.381872,0.933725,0.00469691,0.195042,0.216514,0.663429,0.290014,0.199511,0.856085,0.724341,0.120347,0.607312,0.0398402,0.0926215,0.188612,0.150976,0.139616,0.111857,0.861406,0.535786,0.848031,0.189804,0.72969,0.0906458,0.0335184,0.451849,0.419883,0.412968,0.57053,0.41075,0.212939,0.988408,0.490063,0.686414,0.563961,0.891683,0.856545,0.737923,0.618009,0.363995,0.163187,0.789194,0.178661,0.108488,0.625143,0.555235,0.740416,0.876836,0.301201,0.53332,0.348102,0.98789,0.135209,0.738997,0.17741,0.761002,0.154508,0.877631,0.489945,0.716626,0.521209,0.116916,0.546233,0.363869,0.545921,0.686062,0.344919,0.204,0.0168443,0.29038,0.846624,0.164566,0.666611,0.871713,0.0922734,0.841845,0.547285,0.169125,0.211161,0.485681,0.70353,0.522769,0.021817,0.0311194,0.0151725,0.606862,0.215955,0.744601,0.227201,0.745975,0.504847,0.588281,0.411719,0.129687,0.129632,0.203849,0.921296,0.0624612,0.463329,0.964442,0.38718,0.961621,0.607987,0.0995332,0.849426,0.367892,0.979098,0.817696,0.837482,0.777534,0.424247,0.217606,0.195539,0.283019,0.735042,0.408196,0.333385,0.750493,0.00141829,0.743627,0.0777736,0.439482,0.0763085,0.329188,0.667131,0.869971,0.27747,0.212783,0.555146,0.780558,0.177444,0.676911,0.896361,0.305182,0.812186,0.376676,0.644825,0.734963,0.834761,0.490202,0.676508,0.825668,0.714101,0.897735,0.65704,0.870653,0.630439,0.629072,0.0613938,0.462426,0.00464201,0.279841,0.319444,0.612931,0.563641,0.652159,0.322219,0.68402,0.0361907,0.554792,0.774344,0.222167,0.886036,0.622406,0.493093,0.058721,0.18634,0.652238,0.839615,0.703416,0.354909,0.334859,0.847161,0.643129,0.969319,0.984893,0.80582,0.891226,0.580518,0.533245,0.111338,0.217775,0.41979,0.625868,0.224674,0.956801,0.606197,0.5421,0.141682,0.152573,0.886556,0.528699,0.401214,0.222608,0.752121,0.72678,0.494518,0.756484,0.673452,0.339685,0.805671,0.360615,0.4827,0.180073,0.00245559,0.158828,0.426078,0.566582,0.838163,0.0964842,0.160883,0.471621,0.0514483,0.843156,0.0545206,0.818142,0.156727,0.430961,0.262874,0.465219,0.496393,0.839163,0.18758,0.746512,0.458172,0.680098,0.200614,0.167714,0.911382,0.214717,0.305234,0.208197,0.830813,0.323459,0.0606202,0.938037,0.180868,0.940553,0.454101,0.922017,0.725495,0.115582,0.558721,0.447508,0.167299,0.448414,0.0617909,0.261088,0.794228,0.955712,0.122249,0.654133,0.00882006,0.566045,0.0807639,0.806473,0.706788,0.205445,0.838058,0.529876,0.065809,0.152386,0.360334,0.437636,0.756526,0.517206,0.0260376,0.343802,0.447189,0.643416,0.973348,0.446049,0.139542,0.280658,0.270405,0.588094,0.598293,0.98465,0.495059,0.416362,0.105009,0.183683,0.985827,0.310894,0.982757,0.605198,0.546249,0.299626,0.915569,0.823836,0.129036,0.9936,0.11979,0.507616,0.494998,0.742881,0.924681,0.885122,0.99623,0.148715,0.0223222,0.274981,0.680514,0.215391,0.361919,0.610835,0.136595,0.172097,0.599329,0.49833,0.821112,0.835215,0.496093,0.067052,0.978448,0.989248,0.280085,0.587868,0.723374,0.425422,0.432551,0.555447,0.484445,0.346874,0.717717,0.560838,0.584634,0.867891,0.487314,0.683086,0.779702,0.417202,0.688027,0.0388977,0.667881,0.513082,0.387311,0.198397,0.356848,0.959819,0.83404,0.540672,0.955173,0.312518,0.832932,0.355905,0.69707,0.832177,0.859239,0.565634,0.1824,0.52182,0.754779,0.850723,0.261271,0.406331,0.462452,0.831577,0.904771,0.500652,0.86162,0.525554,0.321357,0.459107,0.0125568,0.292796,0.845854,0.0623378,0.925283,0.0812961,0.825137,0.0495861,0.901812,0.42352,0.290769,0.871355,0.262926,0.167543,0.427923,0.664844,0.0386646,0.115181,0.857035,0.586198,0.153895,0.753873,0.570377,0.566625,0.975738,0.536982,0.531804,0.556124,0.93167,0.152888,0.37956,0.400145,0.72139,0.46909,0.724642,0.240794,0.962316,0.897106,0.717066,0.0704602,0.242579,0.693312,0.0805818,0.321521,0.441421,0.539436,0.854526,0.602033,0.30823,0.92007,0.36027,0.117546,0.24702,0.464314,0.913737,0.342245,0.981592,0.281494,0.42821,0.0292488,0.581814,0.0311035,0.30494,0.656976,0.73582,0.98906,0.43553,0.917732,0.367923,0.875888,0.133563,0.261889,0.267258,0.784429,0.795118,0.363109,0.775311,0.0105838,0.61041,0.14132,0.214306,0.587911,0.0586592,0.00275755,0.095449,0.882268,0.532344,0.917278,0.794233,0.456275,0.22804,0.0124921,0.515376,0.708021,0.615226,0.515701,0.324255,0.177869,0.078182,0.919598,0.476824,0.122613,0.550834,0.572984,0.0228463,0.230261,0.836308,0.393574,0.283705,0.545324,0.642563,0.0641837,0.248232,0.433186,0.855001,0.72715,0.575973,0.208089,0.798457,0.185113,0.176962,0.508841,0.33853,0.370092,0.770769,0.820563,0.128254,0.573378,0.0595649,0.089669,0.975853,0.381115,0.37366,0.804023,0.922202,0.174226,0.9889,0.798104,0.090934,0.300059,0.77692,0.7998,0.752882,0.0801846,0.375291,0.271931,0.482561,0.940791,0.561126,0.388399,0.730696,0.955122,0.0387632,0.0566754,0.788803,0.522043,0.26979,0.664146,0.619484,0.33525,0.979245,0.863922,0.73389,0.879869,0.865075,0.601767,0.324005,0.991033,0.557425,0.324454,0.9383,0.923687,0.935079,0.957226,0.514236,0.823556,0.642468,0.579103,0.646298,0.211508,0.755076,0.393266,0.26743,0.53736,0.320255,0.894844,0.128926,0.503553,0.333031,0.43274,0.208208,0.831282,0.139204,0.639639,0.475573,0.652722,0.386258,0.17854,0.983044,0.082644,0.356777,0.305494,0.794856,0.480006,0.834458,0.241011,0.447664,0.421584,|0.983757,0.826528,0.623192,0.683144,0.98627,0.0042758,0.72576,0.535903,0.93073,0.625208,0.551233,0.985438,0.363142,0.522743,0.754686,0.981141,0.799957,0.459321,0.660994,0.684394,0.46159,0.4077,0.643554,0.889639,0.676604,0.615144,0.320338,0.456109,0.605032,0.995655,0.34793,0.986173,0.366899,0.206706,0.648168,0.842989,0.95951,0.245057,0.862278,0.00413311,0.00743538,0.79244,0.456752,0.468465,0.109653,0.113025,0.886474,0.512855,0.712359,0.0545123,0.0666632,0.667651,0.363234,0.41795,0.81658,0.225876,0.531303,0.974834,0.640064,0.189099,0.965669,0.215745,0.32042,0.939373,0.459208,0.6218,0.215095,0.22366,0.774841,0.630771,0.479822,0.0753501,0.708151,0.639518,0.281729,0.231335,0.514255,0.910886,0.669109,0.0506796,0.0131209,0.336141,0.713942,0.335797,0.591426,0.890123,0.0314527,0.852225,0.0920135,0.222882,0.649591,0.15243,0.673823,0.23534,0.592941,0.624146,0.212996,0.715372,0.21331,0.947358,0.497048,0.84011,0.135237,0.161202,0.462607,0.753863,0.705928,0.928131,0.874486,0.72862,0.625966,0.147693,0.642817,0.522842,0.286081,0.591586,0.447041,0.230746,0.602006,0.316407,0.589427,0.573676,0.0165563,0.83691,0.293786,0.480748,0.60578,0.603879,0.313493,0.843294,0.520763,0.544037,0.832726,0.88108,0.61713,0.408949,0.669751,0.285539,0.849568,0.0257322,0.838934,0.185994,0.239161,0.200257,0.725959,0.813525,0.652398,0.657296,0.537838,0.0924098,0.263734,0.05174,0.425981,0.553431,0.518864,0.206862,0.984748,0.958251,0.132089,0.604945,0.39013,0.972348,0.700266,0.816014,0.0190305,0.493006,0.0331138,0.136716,0.403308,0.20548,0.0416244,0.630474,0.415562,0.479127,0.477225,0.216186,0.489733,0.235442,0.665335,0.39068,0.402577,0.42599,0.492194,0.542955,0.912873,0.283262,0.484805,0.785088,0.213861,0.266999,0.606774,0.0803117,0.594431,0.781957,0.157038,0.692328,0.408312,0.232399,0.1195,0.947805,0.0222839,0.187134,0.901886,0.990817,0.201309,0.519042,0.383071,0.500173,0.375583,0.663035,0.836272,0.11349,0.323469,0.292681,0.956214,0.637486,0.570694,0.0619681,0.0774112,0.00936145,0.833961,0.88877,0.685178,0.5226,0.706969,0.659102,0.209843,0.765902,0.459135,0.212928,0.926008,0.65328,0.939132,0.125497,0.0258604,0.0575752,0.965341,0.929618,0.348963,0.190597,0.320058,0.333564,0.489525,0.00946754,0.179073,0.775379,0.391578,0.219665,0.554476,0.0567812,0.277144,0.316376,0.0152105,0.971629,0.668767,0.897596,0.606073,0.0925377,0.499262,0.778727,0.940893,0.79578,0.271324,0.39576,0.532398,0.0841233,0.987819,0.951081,0.430479,0.442242,0.526733,0.92094,0.859792,0.0424445,0.831328,0.816061,0.364715,0.429467,0.836949,0.586516,0.469765,0.788584,0.937609,0.669266,0.378044,0.38182,0.349889,0.250178,0.00722909,0.847234,0.217113,0.108995,0.270895,0.0804409,0.477759,0.52823,0.373157,0.0462387,0.484695,0.190013,0.469574,0.333004,0.106245,0.973398,0.926722,0.451236,0.265444,0.652005,0.877711,0.240223,0.557329,0.923351,0.0755109,0.333747,0.0996931,0.483067,0.0656441,0.597341,0.974487,0.440246,0.641767,0.0369763,0.132683,0.523606,0.782647,0.120479,0.419578,0.90615,0.125856,0.295092,0.937427,0.514286,0.249443,0.393063,0.61164,0.556365,0.8402,0.622544,0.875683,0.307666,0.611219,0.15591,0.848238,0.477212,0.880844,0.912814,0.814097,0.469658,0.352191,0.480882,0.640068,0.0813641,0.802573,0.768658,0.317756,0.522733,0.234473,0.711293,0.0882226,0.809036,0.558331,0.244092,0.161371,0.372674,0.203088,0.61315,0.785282,0.00200045,0.731274,0.52733,0.264225,0.108116,0.762675,0.0107879,0.811721,0.240517,0.894107,0.310104,0.254044,0.548099,0.390406,0.762047,0.433298,0.931721,0.666922,0.595467,0.843998,0.33613,0.0825649,0.177685,0.331871,0.91987,0.473575,0.0555948,0.208087,0.488138,0.385399,0.920537,0.185017,0.38332,0.618211,0.924605,0.136896,0.197061,0.334972,0.339118,0.593318,0.923958,0.707868,0.780485,0.244378,0.591527,0.662805,0.336134,0.446522,0.591149,0.150046,0.675191,0.105238,0.614244,0.0480717,0.49642,0.251477,0.33178,0.0551144,0.617482,0.139642,0.292786,0.116661,0.409906,0.470651,0.345952,0.160379,0.354093,0.104978,0.940182,0.475348,0.394234,0.452568,0.384492,0.693724,0.653715,0.291574,0.430844,0.0337021,0.558906,0.189914,0.437351,0.123133,0.250492,0.111268,0.60425,0.87116,0.991752,0.841736,0.100363,0.792648,0.135009,0.965209,0.420076,0.838695,0.536821,0.0203618,0.45014,0.586117,0.100443,0.856304,0.0388286,0.0898784,0.828412,0.0380098,0.946167,0.0129267,0.481111,0.334969,0.397099,0.70099,0.572377,0.39377,0.879628,0.359897,0.736172,0.173739,0.968795,0.0571079,0.708933,0.429312,0.639233,0.0513965,0.0411892,0.382875,0.443603,0.371694,0.483015,0.120749,0.057466,0.507972,0.132798,0.645885,0.274868,0.403058,0.513847,0.880444,0.239081,0.0939062,0.0954219,0.0684584,0.0643755,0.865381,0.462469,0.991812,0.478682,0.58734,0.152308,0.919811,0.30401,0.675994,0.240366,0.572274,0.753734,0.17217,0.831882,0.599467,0.0589408,0.405937,0.303132,0.555883,0.0775052,0.0908846,0.711185,0.743998,0.103955,0.361943,0.757732,0.257388,0.777327,0.993629,0.268809,0.0647264,0.965852,0.963381,0.155195,0.910385,0.634992,0.416409,0.917746,0.899134,0.0160537,0.0304514,0.241186,0.200729,0.657237,0.11161,0.351985,0.521985,0.863629,0.090718,0.133314,0.527232,0.828002,0.0913161,0.907328,0.667606,0.689072,0.931291,0.0516176,0.0385967,0.888297,0.973336,0.118498,0.30675,0.29045,0.357538,0.805532,0.494309,0.48401,0.918315,0.781665,0.717433,0.532859,0.656617,0.437467,0.884188,0.492237,0.0809063,0.284527,0.275271,0.362146,0.646331,0.253078,0.260696,0.23989,0.506809,0.897656,0.0203528,0.0823064,0.522718,0.76903,0.573632,0.641428,0.199567,0.799386,0.359604,0.0388821,0.154836,0.628469,0.513811,0.924244,0.357122,0.637802,0.0855009,0.587058,0.0255122,0.614359,0.497137,0.0886985,0.363703,0.899898,0.684654,0.0953284,0.502979,0.158773,0.637399,0.583779,0.637713,0.494781,0.299833,0.388844,0.259253,0.809262,0.191389,0.170553,0.662228,0.170495,0.756203,0.476714,0.00672299,0.0779752,0.469488,0.937665,0.286652,0.216354,0.0264496,0.978875,0.527228,0.916668,0.656878,0.134148,0.832057,0.28951,0.660936,0.760156,0.0295263,0.156196,0.732953,0.855042,0.526434,0.439907,0.601116,0.831524,0.877919,0.891589,0.439892,0.518684,0.480112,0.915595,0.594338,0.234808,0.5509,0.12639,0.845556,0.802335,0.670087,0.53702,0.261767,0.544829,0.554729,0.837353,0.475119,0.752713,0.115767,0.951057,0.833218,0.907808,0.153718,0.349987,0.815043,0.622465,0.0212596,0.567339,0.419965,0.203444,0.661622,0.275518,0.895269,0.593243,0.586576,0.406,0.302789,0.450683,0.800947,0.657731,0.416911,0.271796,0.180279,0.585896,0.819601,0.912665,0.835082,0.623462,0.0113007,0.477796,0.267426,0.475261,0.64803,0.148604,0.911985,0.642978,0.739685,0.807247,0.296762,0.263684,0.669397,0.664202,0.333492,0.198795,0.154159,0.196161,0.316927,0.337823,0.0719587,0.463239,0.904833,0.605497,0.0387866,0.302873,0.200041,0.902287,0.594864,0.758299,0.886355,0.179397,0.706493,0.174851,0.140391,0.894754,0.185145,0.676731,0.070197,0.187742,0.151432,0.477422,0.310197,0.842832,0.453745,0.487616,0.0656649,0.91294,0.856973,0.576736,0.21577,0.774752,0.0247233,0.580394,0.635037,0.595399,0.0278606,0.89367,0.920405,0.256034,0.667001,0.987695,0.543676,0.238464,0.77906,0.694497,0.681221,0.114078,0.366399,0.36409,0.374158,0.0124472,0.993329,0.478986,0.602014,0.44042,0.663359,0.625638,0.169546,0.172754,0.346146,0.384562,0.0366426,0.860517,0.308318,0.233145,0.952257,0.15842,0.990272,0.57857,0.14807,0.152417,0.0962221,0.63384,0.200558,0.203989,0.554711,0.320651,0.339602,0.0159868,0.157155,0.361587,0.77871,0.900433,0.682835,0.869503,0.816198,0.271054,0.943127,0.310396,0.602502,0.909997,0.263843,0.888463,0.537514,0.0188926,0.643303,0.617751,0.625521,0.421309,0.537524,0.956305,0.111064,0.507895,0.138995,0.603808,0.282583,0.965469,0.133359,0.687459,0.549047,0.339875,0.620949,0.151904,0.798519,0.835834,0.209877,0.737397,0.367496,0.250379,0.92655,0.746004,0.561928,0.756876,0.571631,0.87119,0.143915,0.145896,0.401918,0.997778,0.292391,0.603019,0.953304,0.477676,0.856267,0.208536,0.0835202,0.134811,0.590958,0.550184,0.821612,0.376535,0.810232,0.754521,0.985817,0.824191,0.609463,0.0237764,0.267024,0.776014,0.308019,0.168523,0.740798,0.148132,0.648909,0.580768,0.680047,0.999641,0.414575,0.0426875,0.593589,0.766091,0.831245,0.886474,0.387062,0.51187,0.599937,0.36043,0.173401,0.391302,0.425358,0.757005,0.562045,0.0721351,0.299116,0.92526,0.210988,0.717625,0.409466,0.352682,0.127574,0.651956,0.0907796,0.0240701,0.760277,0.947324,0.973174,0.400929,0.0597419,0.7171,0.208186,0.110373,0.591199,0.195825,0.831979,0.554412,0.368873,0.670463,0.641126,0.785882,0.508459,0.705048,0.134705,0.750338,0.399396,0.821987,0.995679,0.135776,0.2868,0.960235,0.0471927,0.448954,0.11363,0.680858,0.393391,0.41249,0.936655,0.805084,0.876461,0.393955,0.577751,0.178473,0.823385,0.782703,0.318618,0.655917,0.599997,0.902252,0.703312,0.0870025,0.0936568,0.151854,0.301487,0.0680181,0.00642818,0.54867,0.518862,0.0932916,0.207424,0.880924,0.430583,0.924758,0.81879,0.12692,0.0472906,0.701145,0.410217,0.708094,0.364188,0.763295,0.308911,0.386027,0.321203,0.203193,0.27042,0.73392,0.756787,0.914542,0.641478,0.186045,0.867949,0.306118,0.269884,0.273224,0.496922,0.663469,0.339952,0.832491,0.890382,0.459049,|0.686812,0.0326014,0.680606,0.199624,0.537945,0.647308,0.196948,0.720397,0.0295785,0.218425,0.34386,0.918459,0.415396,0.19828,0.339793,0.606464,0.151716,0.218313,0.0133454,0.916585,0.950307,0.239381,0.966011,0.742842,0.886259,0.488771,0.913266,0.318292,0.728761,0.292165,0.835863,0.211175,0.777353,0.352757,0.98001,0.693215,0.979245,0.341939,0.784887,0.3798,0.165916,0.318207,0.159599,0.973068,0.74136,0.869024,0.738634,0.536373,0.933006,0.381866,0.494089,0.120552,0.539522,0.622487,0.839157,0.021015,0.297179,0.410975,0.97622,0.954101,0.80278,0.767971,0.981843,0.0310023,0.368361,0.488557,0.837108,0.862734,0.660521,0.00483721,0.00914586,0.971564,0.137222,0.569162,0.625604,0.959391,0.335914,0.0860651,0.661129,0.049697,0.293582,0.0325286,0.868237,0.492279,0.365851,0.409758,0.127643,0.788327,0.610958,0.925001,0.550322,0.406276,0.32258,0.950723,0.0243697,0.193819,0.311802,0.63705,0.853437,0.0934392,0.403896,0.742392,0.276354,0.895456,0.361759,0.398064,0.451961,0.859393,0.438315,0.726601,0.334103,0.554523,0.73618,0.136583,0.242517,0.19054,0.321515,0.16946,0.242099,0.898695,0.327221,0.619869,0.691611,0.298065,0.443294,0.672803,0.523383,0.610511,0.145178,0.68079,0.368875,0.436592,0.512227,0.686477,0.744285,0.224574,0.426406,0.194971,0.0116722,0.46788,0.931314,0.799438,0.431786,0.800148,0.0482193,0.748579,0.792865,0.00594532,0.0538535,0.0649551,0.0147135,0.223837,0.555725,0.624387,0.697157,0.167721,0.993523,0.0737517,0.659484,0.142291,0.066614,0.395031,0.501971,0.304845,0.437898,0.292074,0.538198,0.51904,0.309808,0.137929,0.208188,0.83925,0.75063,0.0500696,0.559307,0.0760076,0.603035,0.726623,0.694529,0.995837,0.880951,0.795917,0.860377,0.843447,0.822399,0.0157486,0.487426,0.332653,0.670464,0.54754,0.728307,0.182633,0.668448,0.192829,0.719724,0.128201,0.993891,0.731803,0.535009,0.295239,0.519836,0.244997,0.784374,0.332055,0.636847,0.760656,0.757739,0.39267,0.496257,0.751196,0.70161,0.502057,0.893508,0.387248,0.849211,0.361538,0.306803,0.317576,0.78261,0.882629,0.0724154,0.91301,0.327143,0.750062,0.307076,0.604615,0.651902,0.594655,0.811658,0.743918,0.775592,0.533534,0.229412,0.208923,0.258332,0.612758,0.731219,0.562669,0.823715,0.681549,0.783083,0.455367,0.286916,0.382779,0.383866,0.0690681,0.475862,0.335797,0.209938,0.917773,0.265561,0.86343,0.669704,0.866526,0.554514,0.426557,0.123975,0.247831,0.305431,0.863894,0.875405,0.384327,0.498582,0.514141,0.524625,0.464014,0.605864,0.90516,0.148038,0.397959,0.32523,0.464486,0.217074,0.344105,0.616714,0.811794,0.713913,0.0114722,0.914364,0.638041,0.339309,0.105883,0.945414,0.660033,0.298451,0.219321,0.615592,0.268146,0.315633,0.610055,0.0503485,0.853745,0.42637,0.338673,0.781008,0.709682,0.133173,0.54527,0.991668,0.14751,0.190009,0.889839,0.547524,0.504791,0.0193624,0.774077,0.786046,0.641278,0.973628,0.33316,0.582614,0.791444,0.942981,0.731628,0.115266,0.784957,0.246328,0.707463,0.371749,0.414278,0.918787,0.696382,0.356109,0.729167,0.26559,0.473938,0.797299,0.336453,0.135663,0.802189,0.833036,0.752366,0.421139,0.650385,0.748608,0.490096,0.536548,0.0790718,0.67237,0.415695,0.715339,0.66958,0.853091,0.733445,0.868543,0.505419,0.253864,0.617649,0.419008,0.510417,0.522577,0.874313,0.420149,0.182956,0.655084,0.373902,0.649265,0.209484,0.0675922,0.565793,0.289216,0.637058,0.399581,0.646749,0.65696,0.0210624,0.948258,0.834552,0.112645,0.307067,0.840191,0.45792,0.163059,0.34933,0.501691,0.958414,0.754472,0.286296,0.898963,0.278948,0.154077,0.268792,0.646477,0.0284652,0.878852,0.489723,0.666704,0.916653,0.617293,0.81127,0.743936,0.568222,0.6284,0.997634,0.444228,0.848362,0.292336,0.0527659,0.883978,0.298014,0.417627,0.538669,0.709088,0.968435,0.399572,0.931848,0.246252,0.412784,0.325778,0.677314,0.000612438,0.624211,0.790027,0.116233,0.470445,0.70573,0.378149,0.16409,0.530287,0.0514596,0.884394,0.65588,0.987904,0.963503,0.878551,0.971359,0.749543,0.446318,0.616412,0.81058,0.0523043,0.803298,0.472332,0.877854,0.825258,0.978831,0.390487,0.37867,0.369874,0.649298,0.493478,0.800011,0.995834,0.371888,0.0693103,0.394482,0.512886,0.74143,0.507215,0.305706,0.543688,0.976487,0.431261,0.522606,0.214335,0.760977,0.467336,0.977117,0.720043,0.108755,0.0559298,0.0275558,0.892402,0.50103,0.0992006,0.199407,0.441488,0.743607,0.739031,0.422121,0.637143,0.254316,0.490152,0.327205,0.0741515,0.950079,0.260143,0.923036,0.209278,0.667024,0.149431,0.135597,0.00516355,0.551444,0.0706961,0.483573,0.349024,0.520519,0.300093,0.941677,0.517282,0.140705,0.143231,0.776087,0.841309,0.439083,0.0827067,0.741228,0.894248,0.264222,0.28326,0.356239,0.0917339,0.0411952,0.945364,0.625371,0.362735,0.191943,0.0617883,0.00405723,0.13018,0.908287,0.730153,0.419971,0.968248,0.638541,0.79296,0.788336,0.479175,0.31138,0.917865,0.0659129,0.102112,0.205611,0.854648,0.4067,0.447361,0.181583,0.232465,0.860847,0.780551,0.680111,0.280788,0.0116403,0.455671,0.922672,0.964884,0.718467,0.382113,0.916767,0.488327,0.167019,0.676452,0.00335729,0.611057,0.64583,0.294757,0.102289,0.84044,0.281317,0.337518,0.93825,0.486185,0.615759,0.0844228,0.394604,0.42428,0.164538,0.971962,0.805285,0.484008,0.176345,0.337061,0.63573,0.196168,0.656807,0.245151,0.266283,0.283412,0.218893,0.675202,0.505524,0.846016,0.844155,0.149573,0.476572,0.649131,0.935644,0.296204,0.243948,0.435125,0.232376,0.627615,0.752882,0.626322,0.811766,0.759921,0.693988,0.0570303,0.763605,0.337443,0.578736,0.906029,0.532722,0.476957,0.712732,0.228022,0.586582,0.656499,0.0450883,0.880524,0.16766,0.200674,0.0573447,0.659426,0.140165,0.873389,0.22192,0.396718,0.570587,0.166633,0.892457,0.786935,0.495961,0.264125,0.97507,0.60652,0.997657,0.610549,0.528804,0.153996,0.554441,0.0593953,0.000740588,0.804321,0.619627,0.910932,0.860435,0.131419,0.300007,0.885858,0.480208,0.943877,0.163387,0.539334,0.540244,0.945436,0.210919,0.617764,0.79735,0.59929,0.835869,0.537819,0.584438,0.434981,0.724809,0.655999,0.971006,0.6513,0.107053,0.882191,0.861749,0.550475,0.51381,0.793614,0.562641,0.51429,0.0296485,0.0715596,0.489404,0.359075,0.245433,0.993517,0.64937,0.0518507,0.128071,0.810467,0.81476,0.290278,0.369981,0.288153,0.223662,0.250517,0.123086,0.308847,0.945054,0.112916,0.110951,0.550655,0.806438,0.108576,0.86974,0.268946,0.956359,0.336873,0.82121,0.957422,0.340953,0.26668,0.926859,0.178634,0.887571,0.775234,0.988608,0.890768,0.606641,0.235714,0.388457,0.388605,0.598941,0.849858,0.672309,0.496006,0.500428,0.554812,0.528107,0.864819,0.692927,0.793624,0.937373,0.154483,0.246869,0.181939,0.981051,0.207258,0.327267,0.290282,0.891756,0.171235,0.308765,0.717573,0.478645,0.141865,0.600911,0.694848,0.195097,0.291905,0.904548,0.429336,0.119695,0.60716,0.350095,0.99704,0.628752,0.243135,0.786567,0.651553,0.772791,0.997291,0.920301,0.165855,0.996421,0.539097,0.0709553,0.189323,0.766484,0.0340506,0.724487,0.361178,0.935148,0.939685,0.871374,0.81488,0.31507,0.150356,0.0762911,0.00685418,0.340637,0.503233,0.569092,0.311182,0.284858,0.864985,0.931867,0.508287,0.00875181,0.0603421,0.237956,0.550221,0.780076,0.254272,0.67169,0.795846,0.121271,0.429617,0.872805,0.950411,0.0935826,0.225432,0.94512,0.613643,0.623078,0.748905,0.439901,0.406929,0.556284,0.055608,0.537238,0.123421,0.874814,0.510629,0.863409,0.807539,0.295438,0.726247,0.21553,0.802556,0.682916,0.832465,0.540987,0.000333846,0.589904,0.465422,0.359486,0.770191,0.811188,0.540953,0.331482,0.150971,0.0284959,0.144765,0.62177,0.272714,0.92322,0.231691,0.205799,0.569628,0.373526,0.520227,0.521511,0.765699,0.780284,0.133139,0.704167,0.363556,0.930354,0.0158842,0.643051,0.826853,0.992567,0.924929,0.411531,0.194426,0.516778,0.477138,0.946463,0.701389,0.571011,0.339675,0.86579,0.859074,0.092663,0.0774385,0.177077,0.237173,0.804606,0.748248,0.123381,0.765392,0.243065,0.592629,0.893261,0.746347,0.452432,0.59205,0.906811,0.519499,0.925494,0.804732,0.884976,0.851096,0.410689,0.772884,0.435759,0.806118,0.542696,0.0962535,0.877406,0.219021,0.057368,0.576045,0.715351,0.202784,0.635624,0.607391,0.710257,0.918138,0.245022,0.300312,0.391753,0.578485,0.309548,0.9077,0.547876,0.323884,0.469016,0.429282,0.13354,0.737199,0.319205,0.181864,0.73795,0.190467,0.699215,0.897936,0.997918,0.130919,0.150376,0.495996,0.179718,0.00919092,0.853982,0.320661,0.298238,0.700551,0.382867,0.392646,0.0748229,0.326371,0.985039,0.917,0.663951,0.855289,0.462073,0.618357,0.0746919,0.480657,0.423589,0.174492,0.106614,0.397477,0.502729,0.567616,0.801628,0.497191,0.852202,0.773132,0.976159,0.324947,0.000523865,0.606835,0.118292,0.587039,0.838789,0.860393,0.790128,0.676661,0.461201,0.905748,0.175444,0.605694,0.725293,0.168103,0.515778,0.530233,0.491348,0.60738,0.482514,0.598043,0.304431,0.277022,0.332877,0.50066,0.490449,0.939579,0.58454,0.546475,0.382395,0.83256,0.490358,0.732865,0.243054,0.084674,0.291609,0.627885,0.191113,0.976217,0.692007,0.158548,0.146945,0.666154,0.925601,0.149206,0.612619,0.178251,0.46437,0.131905,0.276819,0.180198,0.331999,0.218336,0.0286773,0.141566,0.239574,0.100978,0.39908,0.901761,0.708401,0.587553,0.402271,0.50521,0.420787,0.735008,0.645538,0.236514,0.927483,0.627757,0.471025,0.942802,0.747669,|0.775405,0.344513,0.780192,0.523566,0.911746,0.500606,0.178958,0.478958,0.727185,0.426403,0.211724,0.710258,0.146315,0.861856,0.809457,0.99924,0.519745,0.184286,0.488061,0.789626,0.512634,0.72556,0.0970763,0.971195,0.860023,0.747241,0.719189,0.207913,0.752998,0.789631,0.133493,0.229437,0.39299,0.4246,0.323585,0.330213,0.661692,0.389656,0.984619,0.0681708,0.0680869,0.929323,0.426876,0.586762,0.664803,0.765443,0.174975,0.0203725,0.0430676,0.508563,0.270357,0.387429,0.574012,0.378677,0.0202087,0.190473,0.664739,0.0992068,0.0416052,0.58204,0.874417,0.362176,0.93968,0.976949,0.650603,0.233602,0.352024,0.849559,0.451718,0.942594,0.170155,0.568307,0.712492,0.624699,0.917051,0.137055,0.0870863,0.978935,0.415269,0.0311003,0.833062,0.370599,0.240316,0.387841,0.945038,0.134433,0.131753,0.538092,0.621732,0.185061,0.814831,0.83192,0.458408,0.466141,0.600829,0.504755,0.878257,0.259077,0.218335,0.167047,0.0811459,0.632366,0.380852,0.678538,0.878649,0.0176121,0.931501,0.220519,0.230627,0.347452,0.485966,0.640936,0.981849,0.661541,0.572894,0.982315,0.856822,0.00722694,0.265363,0.205506,0.21996,0.846148,0.913638,0.268252,0.273083,0.187197,0.126872,0.267945,0.826017,0.722035,0.575813,0.78071,0.228,0.961537,0.371775,0.833194,0.157398,0.442145,0.892442,0.851696,0.189682,0.0409081,0.33427,0.378844,0.978736,0.62957,0.805227,0.673807,0.368909,0.559046,0.875028,0.338882,0.872633,0.849474,0.798799,0.866716,0.399775,0.00986612,0.151657,0.75324,0.519382,0.347563,0.444568,0.873376,0.0369079,0.90726,0.360547,0.0398202,0.614938,0.373623,0.545355,0.383997,0.254433,0.921619,0.90517,0.465106,0.420409,0.303889,0.36539,0.527056,0.798075,0.467174,0.100765,0.857251,0.817817,0.0231704,0.983634,0.914543,0.9046,0.864721,0.0225824,0.0820501,0.381533,0.230431,0.0134838,0.138575,0.292012,0.234912,0.965122,0.103847,0.217725,0.812857,0.538619,0.774044,0.563176,0.0459498,0.541129,0.881149,0.258915,0.717992,0.843143,0.363385,0.0852181,0.170006,0.729086,0.679849,0.384452,0.127646,0.363985,0.827673,0.461557,0.249544,0.25036,0.437158,0.450486,0.374206,0.0261278,0.134648,0.702539,0.943801,0.462206,0.753996,0.649456,0.394387,0.938833,0.283344,0.877911,0.597696,0.489738,0.254196,0.074535,0.515994,0.617357,0.366908,0.31763,0.559786,0.486128,0.297845,0.571669,0.253395,0.877474,0.36953,0.717926,0.629801,0.443541,0.425485,0.661589,0.662898,0.855735,0.389157,0.489981,0.807142,0.0524232,0.652491,0.725468,0.877523,0.182532,0.442761,0.966312,0.259309,0.853853,0.885382,0.779124,0.449886,0.289447,0.59154,0.0960412,0.296511,0.638547,0.717421,0.785452,0.123596,0.217953,0.634213,0.182817,0.226543,0.814243,0.822207,0.506577,0.611451,0.0339451,0.126543,0.919606,0.623318,0.683178,0.658825,0.258133,0.460259,0.484883,0.86841,0.948857,0.0391114,0.835441,0.534685,0.132833,0.0890499,0.667678,0.169911,0.379025,0.644939,0.427195,0.0350344,0.0462161,0.17723,0.345697,0.569743,0.359624,0.476644,0.637691,0.638824,0.488071,0.505958,0.59982,0.248269,0.042645,0.584215,0.564167,0.398365,0.820677,0.902667,0.566635,0.513479,0.856448,0.254891,0.629047,0.556341,0.676272,0.776435,0.832065,0.126059,0.71873,0.574555,0.532188,0.385651,0.218767,0.891226,0.291751,0.524419,0.791642,0.686942,0.230769,0.476587,0.567024,0.829197,0.389488,0.82366,0.870826,0.213862,0.101089,0.482946,0.52911,0.643382,0.461514,0.0869065,0.669262,0.792569,0.739879,0.136868,0.184904,0.933839,0.625675,0.380474,0.282334,0.906512,0.738596,0.163745,0.316467,0.0742155,0.90581,0.652914,0.202,0.82424,0.675355,0.382354,0.132538,0.0698003,0.960188,0.648156,0.986648,0.377594,0.866248,0.371003,0.806941,0.751593,0.902744,0.816473,0.226115,0.84455,0.755724,0.763225,0.599065,0.740431,0.678011,0.0284313,0.0892946,0.799966,0.779204,0.323372,0.732982,0.958153,0.214045,0.375023,0.460402,0.111957,0.353389,0.912978,0.886562,0.606059,0.518308,0.408007,0.337367,0.942069,0.404536,0.288722,0.724133,0.694897,0.961498,0.174266,0.81627,0.56486,0.0909004,0.667737,0.658781,0.00480491,0.0664381,0.256177,0.944946,0.396505,0.157336,0.277429,0.439008,0.901933,0.572596,0.578576,0.0747914,0.285071,0.726277,0.289284,0.225243,0.356906,0.179231,0.456028,0.189892,0.358708,0.0693692,0.374948,0.340949,0.44698,0.55522,0.244552,0.605435,0.233043,0.513776,0.0811801,0.490103,0.172153,0.574835,0.364362,0.754915,0.0172443,0.607962,0.366848,0.887279,0.256227,0.263574,0.389821,0.144726,0.987805,0.438909,0.620207,0.682195,0.238924,0.592281,0.0332878,0.865206,0.947804,0.718663,0.382734,0.981478,0.208068,0.262872,0.530345,0.537603,0.358762,0.962463,0.656375,0.147538,0.246451,0.0478098,0.767077,0.258512,0.429177,0.749499,0.555986,0.300327,0.718567,0.645808,0.712817,0.358204,0.172811,0.871264,0.238745,0.90656,0.791118,0.0479665,0.839682,0.171769,0.0708513,0.662642,0.175163,0.205231,0.467972,0.403702,0.931867,0.112966,0.608984,0.968877,0.277998,0.220639,0.0403387,0.908727,0.495163,0.458018,0.104033,0.187712,0.825794,0.569992,0.702759,0.642188,0.182443,0.931998,0.0867685,0.777614,0.0464035,0.196901,0.0240916,0.281308,0.290632,0.421277,0.674023,0.13759,0.438058,0.704042,0.564781,0.223951,0.0318828,0.388286,0.993351,0.299108,0.940432,0.648754,0.98587,0.211775,0.269501,0.832867,0.800036,0.991327,0.530276,0.69242,0.0632559,0.117813,0.538818,0.508509,0.289408,0.952296,0.25273,0.71063,0.206833,0.134864,0.31048,0.636498,0.812871,0.217102,0.406112,0.632464,0.768036,0.508637,0.00964767,0.218835,0.052123,0.111115,0.113539,0.775538,0.157627,0.928946,0.996821,0.573556,0.088532,0.398977,0.114031,0.0205713,0.54133,0.196613,0.65609,0.0294564,0.0322441,0.71869,0.482609,0.400774,0.474444,0.590489,0.126119,0.070945,0.503253,0.246327,0.325998,0.00111938,0.285619,0.0393609,0.40577,0.244465,0.624761,0.249257,0.95412,0.754107,0.692248,0.376451,0.422489,0.81885,0.672344,0.948824,0.542315,0.532803,0.108075,0.533555,0.299124,0.228003,0.168154,0.813884,0.917658,0.184195,0.908604,0.208799,0.880549,0.45253,0.234915,0.423095,0.101273,0.712749,0.765165,0.0680187,0.160018,0.964062,0.200853,0.1467,0.771841,0.747261,0.147208,0.689011,0.315677,0.616855,0.544108,0.550456,0.758833,0.231171,0.603922,0.252791,0.645901,0.632418,0.48337,0.401379,0.0843446,0.727427,0.571904,0.222822,0.847298,0.437371,0.0678622,0.235264,0.349406,0.883784,0.0369571,0.718976,0.0662679,0.0342064,0.781358,0.789761,0.621978,0.769645,0.237086,0.23897,0.46478,0.93555,0.843032,0.596975,0.0177041,0.909548,0.334412,0.378998,0.94679,0.249903,0.249847,0.506366,0.965243,0.561756,0.209118,0.644866,0.309727,0.450839,0.438087,0.833731,0.887997,0.375345,0.757883,0.974477,0.991191,0.997426,0.116885,0.349905,0.230555,0.501018,0.741314,0.31358,0.36751,0.100189,0.592493,0.305084,0.223604,0.736395,0.654006,0.523853,0.461167,0.159655,0.318811,0.147262,0.566325,0.51091,0.845389,0.509235,0.147248,0.341745,0.820374,0.112079,0.342117,0.564322,0.25497,0.876163,0.411295,0.241891,0.611185,0.87167,0.973217,0.900026,0.76633,0.0187787,0.877281,0.88602,0.793948,0.234272,0.963834,0.644933,0.708355,0.748943,0.751155,0.494395,0.206001,0.482857,0.115312,0.0144619,0.0844797,0.0300343,0.575226,0.43387,0.199708,0.48788,0.21272,0.0220995,0.71758,0.407329,0.619863,0.281324,0.826436,0.318084,0.573822,0.99411,0.108371,0.222316,0.739774,0.841912,0.192919,0.599039,0.727942,0.624182,0.844796,0.582249,0.0556458,0.212103,0.427483,0.900251,0.67336,0.505884,0.672682,0.792318,0.803725,0.68643,0.773861,0.333045,0.805924,0.191317,0.898618,0.0934696,0.875274,0.385614,0.219549,0.374223,0.298238,0.537126,0.245312,0.344418,0.766151,0.639972,0.672983,0.565874,0.821032,0.292848,0.0668439,0.170277,0.845076,0.737501,0.718813,0.821597,0.863394,0.758266,0.800654,0.828306,0.968565,0.21605,0.713512,0.110164,0.573071,0.988366,0.187845,0.0834494,0.948976,0.76642,0.437702,0.0701941,0.338297,0.052945,0.34803,0.0968021,0.497018,0.342611,0.635929,0.718974,0.717013,0.752999,0.676669,0.764853,0.633468,0.397304,0.637215,0.69242,0.131588,0.7568,0.529491,0.845029,0.750766,0.216583,0.909257,0.0588355,0.0209812,0.658854,0.0468916,0.569642,0.0751844,0.906454,0.774813,0.543209,0.276764,0.114887,0.314206,0.148731,0.392057,0.430549,0.064046,0.973394,0.584009,0.1862,0.511684,0.205941,0.239591,0.599706,0.238156,0.868506,0.127517,0.230807,0.818651,0.251453,0.0758613,0.954517,0.760596,0.249323,0.50067,0.808033,0.00358289,0.556551,0.12285,0.923359,0.793893,0.749589,0.528388,0.464234,0.0157061,0.0635844,0.87122,0.735791,0.156327,0.730067,0.768598,0.9968,0.32788,0.906454,0.668468,0.419575,0.530338,0.658761,0.918566,0.245615,0.801429,0.711511,0.110542,0.477085,0.705031,0.330257,0.0777847,0.0341368,0.465777,0.031141,0.591011,0.585562,0.742275,0.13645,0.106101,0.0983268,0.976672,0.0465533,0.556696,0.17829,0.0204755,0.203727,0.129959,0.782972,0.660058,0.670539,0.172585,0.791883,0.00392151,0.328054,0.900993,0.902031,0.171233,0.479998,0.871128,0.830052,0.733377,0.384902,0.977914,0.223227,0.126697,0.394989,0.788544,0.651964,0.756714,0.00259995,0.434817,0.182988,0.378971,0.439389,0.526997,0.079132,0.745984,0.656331,0.569416,0.726757,0.508354,0.488293,0.548655,0.218214,0.858747,0.534961,0.541328,0.230796,0.698832,0.719244,0.924737,0.538859,0.254822,0.0169557,0.849646,|0.720226,0.415209,0.920649,0.0435802,0.670432,0.891701,0.60707,0.224762,0.0764992,0.528473,0.672355,0.702558,0.93718,0.446399,0.217827,0.569467,0.871628,0.100264,0.3379,0.226221,0.805285,0.846255,0.447623,0.40067,0.335294,0.729994,0.734961,0.343663,0.261844,0.258975,0.791152,0.336259,0.33446,0.915919,0.247626,0.698442,0.98189,0.593632,0.709655,0.620781,0.0688831,0.439085,0.839074,0.468131,0.757188,0.219481,0.153011,0.375149,0.109768,0.686179,0.927307,0.264223,0.201227,0.412241,0.266023,0.7377,0.931034,0.849201,0.255481,0.031008,0.909442,0.949205,0.359001,0.313671,0.341134,0.894016,0.542202,0.690311,0.128646,0.221578,0.596097,0.768764,0.42645,0.19811,0.0275114,0.094187,0.00940669,0.379893,0.655534,0.428428,0.531458,0.569853,0.179477,0.460827,0.838609,0.299372,0.696645,0.85947,0.996332,0.755399,0.756005,0.195298,0.623386,0.829986,0.340598,0.796358,0.500024,0.562987,0.350434,0.188309,0.0300229,0.943418,0.875647,0.963124,0.631461,0.621387,0.0611595,0.8455,0.615291,0.926919,0.471098,0.524069,0.588553,0.269285,0.0497522,0.250418,0.840435,0.421205,0.481101,0.218389,0.0203356,0.216722,0.457171,0.802644,0.655092,0.875085,0.705889,0.393961,0.699753,0.622268,0.61011,0.236195,0.729194,0.491429,0.357753,0.485445,0.799987,0.00858665,0.889077,0.172523,0.675389,0.831781,0.512111,0.911925,0.531177,0.785813,0.302968,0.485883,0.379335,0.366581,0.190807,0.340434,0.0740237,0.593093,0.756729,0.783816,0.650617,0.233745,0.443099,0.526034,0.649825,0.543364,0.21091,0.5098,0.538838,0.819082,0.362354,0.260783,0.192351,0.628058,0.901055,0.164795,0.341178,0.986282,0.62212,0.823479,0.681499,0.178841,0.659119,0.975946,0.394636,0.698088,0.584786,0.388163,0.734633,0.515137,0.815785,0.869642,0.0411867,0.552426,0.378931,0.0218583,0.180164,0.841454,0.557511,0.731468,0.65498,0.402616,0.994514,0.251379,0.0572476,0.0221884,0.0653541,0.72613,0.0319256,0.0345079,0.255608,0.62873,0.75303,0.198654,0.377371,0.566322,0.737055,0.68267,0.0320897,0.861257,0.915495,0.50878,0.0678543,0.0428544,0.887958,0.717009,0.286581,0.610277,0.11249,0.389043,0.888743,0.981688,0.396342,0.0813115,0.100325,0.471077,0.444615,0.515532,0.955848,0.444322,0.306226,0.496554,0.964146,0.406463,0.361774,0.560475,0.237779,0.0159776,0.315171,0.327393,0.725409,0.170162,0.658941,0.668562,0.403339,0.100619,0.126937,0.0913802,0.380662,0.686272,0.461045,0.464149,0.492146,0.603375,0.623997,0.289488,0.64997,0.607302,0.526319,0.960507,0.530366,0.797538,0.12868,0.698589,0.191996,0.226615,0.363702,0.0649549,0.136453,0.421814,0.0147272,0.26603,0.0423582,0.0897533,0.017356,0.0821483,0.35455,0.303711,0.564253,0.888339,0.508524,0.232806,0.353957,0.590759,0.86178,0.235245,0.966577,0.495427,0.565087,0.28944,0.538983,0.979596,0.233244,0.587102,0.714357,0.595983,0.0811518,0.822731,0.687262,0.355787,0.402671,0.214016,0.262223,0.411271,0.173452,0.225492,0.120493,0.760582,0.223342,0.847969,0.251167,0.544723,0.593972,0.601156,0.197767,0.81657,0.439629,0.231158,0.348,0.226028,0.975662,0.794214,0.00891995,0.99881,0.301401,0.105907,0.384294,0.583193,0.224053,0.683421,0.322578,0.068423,0.22712,0.807255,0.704629,0.406553,0.980604,0.191608,0.38144,0.102394,0.251152,0.704946,0.24567,0.68534,0.968057,0.250478,0.0205793,0.815223,0.944785,0.550736,0.950611,0.604682,0.676339,0.394389,0.501601,0.880258,0.958485,0.84798,0.233475,0.00380349,0.95642,0.594151,0.589057,0.650499,0.558186,0.714343,0.338846,0.185807,0.485775,0.151386,0.882737,0.506283,0.108337,0.610883,0.456717,0.0762993,0.897676,0.205245,0.876288,0.260069,0.17456,0.769304,0.399997,0.239287,0.448395,0.66112,0.737342,0.671386,0.72664,0.126131,0.696804,0.0653224,0.256161,0.776467,0.067876,0.762028,0.110673,0.587169,0.826647,0.388494,0.273259,0.957347,0.97078,0.382574,0.491628,0.637197,0.548959,0.396742,0.939469,0.323838,0.516335,0.490721,0.38736,0.0364838,0.915032,0.271651,0.801331,0.673387,0.356721,0.953184,0.923021,0.920478,0.837034,0.942231,0.685259,0.0733522,0.082791,0.196875,0.256663,0.671986,0.265333,0.296818,0.943708,0.507373,0.526444,0.177974,0.405683,0.484184,0.71532,0.0386629,0.369489,0.896152,0.588794,0.504851,0.345801,0.273956,0.935784,0.656188,0.0339001,0.484048,0.0116082,0.928889,0.922452,0.715479,0.0457574,0.323638,0.820271,0.516104,0.143426,0.133854,0.661059,0.0067662,0.67842,0.912654,0.82778,0.77982,0.641522,0.16822,0.673959,0.835947,0.484289,0.864401,0.559569,0.928953,0.031185,0.565465,0.386043,0.832449,0.828292,0.585163,0.848341,0.669954,0.427548,0.927851,0.730761,0.00190425,0.286429,0.352911,0.358728,0.36257,0.989706,0.254857,0.117972,0.582034,0.599991,0.599073,0.0330025,0.146828,0.452162,0.964801,0.758458,0.872285,0.673684,0.315043,0.159034,0.272027,0.744522,0.991694,0.508153,0.136618,0.946257,0.82217,0.898066,0.34034,0.365402,0.112831,0.499645,0.341676,0.0655454,0.638443,0.583583,0.320912,0.0581589,0.160704,0.28207,0.211243,0.162,0.116328,0.450268,0.851118,0.506323,0.383351,0.160568,0.502118,0.0830014,0.617047,0.766219,0.00134194,0.775427,0.191948,0.811476,0.299924,0.701601,0.951122,0.235791,0.130875,0.835637,0.191883,0.888674,0.368779,0.407269,0.409102,0.11848,0.97852,0.418803,0.619044,0.5043,0.327163,0.553983,0.233418,0.358756,0.583337,0.432222,0.628917,0.595434,0.515153,0.916981,0.694913,0.452934,0.995817,0.346488,0.672597,0.7029,0.520154,0.521265,0.376596,0.0296224,0.376278,0.0326775,0.0736682,0.115918,0.756648,0.183086,0.605024,0.378099,0.346931,0.0272062,0.208247,0.227933,0.627849,0.373849,0.523013,0.617603,0.883978,0.708619,0.711468,0.531046,0.462492,0.908392,0.574172,0.39883,0.50071,0.271767,0.775542,0.438486,0.707881,0.334061,0.75905,0.907432,0.411587,0.604442,0.812858,0.270841,0.567299,0.427205,0.484834,0.232891,0.893081,0.550154,0.50327,0.539487,0.594546,0.793645,0.5522,0.224531,0.667358,0.462136,0.377284,0.835682,0.170641,0.36772,0.471816,0.0901334,0.853505,0.825497,0.465223,0.282903,0.726634,0.291739,0.167928,0.363173,0.187384,0.0297232,0.13671,0.31745,0.818495,0.232126,0.627809,0.37312,0.815361,0.739224,0.866416,0.227393,0.118199,0.958868,0.754601,0.932193,0.817048,0.905702,0.638488,0.0933607,0.273042,0.522243,0.530868,0.920888,0.102381,0.0994714,0.496662,0.420648,0.817177,0.76683,0.531911,0.226363,0.175493,0.0962841,0.468047,0.650827,0.0571361,0.351831,0.75023,0.316286,0.481265,0.898254,0.921259,0.98313,0.967111,0.500391,0.0144393,0.208473,0.83029,0.698328,0.341961,0.324345,0.275612,0.207535,0.856021,0.119525,0.370735,0.00851369,0.288471,0.305965,0.24993,0.852543,0.332883,0.679294,0.55544,0.349566,0.491463,0.957479,0.645868,0.553483,0.230911,0.485899,0.144163,0.441351,0.99262,0.276459,0.653296,0.136204,0.930246,0.467714,0.308773,0.352156,0.0582379,0.060822,0.33428,0.661141,0.0851018,0.333914,0.139198,0.770341,0.409688,0.482199,0.565764,0.960036,0.934424,0.608783,0.824936,0.76122,0.0830099,0.360475,0.477285,0.0445575,0.770553,0.315798,0.0322856,0.888042,0.102389,0.880458,0.00917715,0.654207,0.136729,0.847963,0.562083,0.803855,0.611265,0.0743436,0.33058,0.97021,0.772156,0.0391912,0.31134,0.440358,0.384344,0.153973,0.476036,0.629234,0.353044,0.631616,0.0198793,0.550103,0.478067,0.352279,0.616387,0.833342,0.695951,0.915286,0.934158,0.610769,0.600762,0.493235,0.835082,0.1887,0.419795,0.241272,0.59822,0.219087,0.583959,0.582526,0.418184,0.199389,0.242296,0.924712,0.405177,0.368039,0.939236,0.752748,0.906882,0.508795,0.350032,0.215487,0.527224,0.543664,0.193061,0.889142,0.960516,0.893247,0.304822,0.87136,0.221931,0.401143,0.604847,0.743153,0.23818,0.159431,0.92362,0.785984,0.963881,0.746821,0.292888,0.947513,0.674654,0.782734,0.986012,0.476395,0.902389,0.848321,0.29066,0.630907,0.163652,0.328851,0.635422,0.66491,0.0314443,0.69431,0.75243,0.991861,0.555678,0.509734,0.0403431,0.259253,0.698029,0.592317,0.628845,0.0162995,0.0798664,0.226867,0.204198,0.040868,0.633976,0.918703,0.570663,0.887925,0.878917,0.895881,0.0676929,0.406032,0.177561,0.801849,0.692847,0.0262314,0.871847,0.367346,0.627176,0.273988,0.447533,0.31274,0.424935,0.795733,0.875264,0.768104,0.00386965,0.576778,0.2368,0.829692,0.820744,0.192969,0.533741,0.161728,0.474336,0.981708,0.19967,0.014069,0.668658,0.296723,0.651094,0.692435,0.901665,0.201608,0.774127,0.795939,0.605232,0.248474,0.0280302,0.827214,0.521315,0.0748101,0.684961,0.755899,0.0459821,0.461815,0.130496,0.2785,0.340259,0.929485,0.711288,0.654061,0.599649,0.220275,0.698536,0.634829,0.34573,0.555029,0.443641,0.218842,0.560867,0.819673,0.97504,0.778039,0.00524837,0.406782,0.00964838,0.316963,0.36003,0.255042,0.0189674,0.348243,0.405252,0.861606,0.698438,0.499946,0.334463,0.00582862,0.442868,0.907249,0.209876,0.776334,0.499941,0.298602,0.0363433,0.0326146,0.949786,0.45496,0.377997,0.186103,0.515861,0.411371,0.575248,0.0401973,0.0600796,0.868898,0.081961,0.345862,0.112158,0.822115,0.646791,0.170915,0.736433,0.914274,0.869355,0.383543,0.251755,0.345315,0.399128,0.372804,0.220838,0.442461,0.573322,0.142994,0.723331,0.671406,0.897101,0.0648817,0.127407,0.21898,0.86021,0.29942,0.286815,0.92758,0.721452,0.562929,0.53781,0.735232,0.171592,0.927153,0.519294,0.819923,0.30534,0.0219337,0.506125,0.503869,0.67103,0.0812781,0.517041,|0.0654538,0.510045,0.629731,0.497359,0.579265,0.563335,0.721985,0.745257,0.0708761,0.0255806,0.992771,0.791976,0.1871,0.0459585,0.81971,0.222972,0.384712,0.580939,0.449485,0.117255,0.879148,0.25557,0.0424652,0.592373,0.578658,0.214527,0.143937,0.534221,0.456318,0.610946,0.773585,0.166464,0.480765,0.516068,0.642149,0.205441,0.926639,0.136542,0.127088,0.135312,0.443639,0.976843,0.316956,0.0643811,0.0611776,0.905534,0.978703,0.140323,0.847411,0.79359,0.278891,0.41199,0.614938,0.509329,0.914217,0.865397,0.709757,0.875301,0.714108,0.364966,0.507223,0.544895,0.0721689,0.291433,0.8535,0.812419,0.81927,0.957397,0.318769,0.0104322,0.630643,0.874717,0.977647,0.0277568,0.598693,0.435789,0.106775,0.0544077,0.222893,0.417263,0.862194,0.35192,0.939599,0.560414,0.385579,0.567907,0.829736,0.17461,0.438945,0.282583,0.280719,0.526087,0.811228,0.44193,0.816004,0.289838,0.961555,0.743134,0.962623,0.44607,0.879057,0.218265,0.717739,0.650415,0.510376,0.206626,0.901202,0.738079,0.542413,0.360873,0.865559,0.558011,0.107292,0.0915595,0.777873,0.775327,0.787841,0.689854,0.445986,0.159378,0.92949,0.397174,0.857903,0.77329,0.534665,0.372621,0.818247,0.583684,0.187758,0.573066,0.227511,0.127161,0.888144,0.323637,0.449163,0.476483,0.688644,0.0162385,0.640523,0.241034,0.270002,0.511727,0.122022,0.403077,0.140146,0.465562,0.451935,0.109902,0.76918,0.0551352,0.623546,0.0819957,0.481291,0.237595,0.553962,0.829833,0.16938,0.210982,0.168986,0.357718,0.469429,0.982798,0.113531,0.410722,0.316591,0.58077,0.734435,0.193505,0.120468,0.663254,0.140862,0.847002,0.162957,0.0066697,0.253077,0.492367,0.0453362,0.172651,0.733984,0.986323,0.637646,0.241645,0.33601,0.438003,0.648905,0.104604,0.166417,0.650012,0.502796,0.316974,0.0243794,0.542747,0.344487,0.104292,0.52832,0.254294,0.226888,0.701581,0.994152,0.164114,0.189668,0.0886999,0.983401,0.321565,0.931495,0.995094,0.273671,0.0749204,0.331219,0.388115,0.407521,0.651901,0.141276,0.669641,0.282747,0.768304,0.121513,0.396006,0.419826,0.262182,0.148699,0.764817,0.489863,0.310961,0.698631,0.537276,0.566345,0.0652937,0.181981,0.0429003,0.460042,0.695233,0.66298,0.0435659,0.766753,0.633537,0.658355,0.426814,0.0837576,0.493014,0.323419,0.0205918,0.994326,0.647203,0.00801826,0.155663,0.348509,0.805152,0.671654,0.209826,0.482854,0.751384,0.283205,0.840513,0.89126,0.400888,0.0471608,0.661914,0.896028,0.586975,0.724856,0.286802,0.275851,0.976346,0.350638,0.231584,0.773488,0.485284,0.355786,0.11269,0.772221,0.862795,0.305529,0.0599413,0.652158,0.0167668,0.626195,0.64138,0.553438,0.895187,0.316489,0.00776589,0.515505,0.716612,0.0665397,0.0846128,0.198752,0.689573,0.649441,0.0392707,0.992507,0.212473,0.472277,0.195442,0.468189,0.633837,0.465573,0.499428,0.628248,0.624334,0.627405,0.126753,0.43841,0.38131,0.748116,0.451532,0.293851,0.366845,0.00694364,0.512877,0.336891,0.493847,0.772268,0.521953,0.844887,0.701742,0.945844,0.267791,0.625936,0.121078,0.64666,0.100403,0.996429,0.0140791,0.559911,0.44918,0.598233,0.464257,0.111776,0.429886,0.838646,0.65066,0.121059,0.599385,0.35043,0.475773,0.157556,0.627592,0.301584,0.945656,0.0339562,0.0852537,0.333921,0.27903,0.430839,0.977372,0.379869,0.41745,0.447258,0.812328,0.571235,0.456886,0.0648876,0.6344,0.0259641,0.799651,0.441597,0.0832475,0.56,0.760119,0.323893,0.372544,0.5807,0.567731,0.931499,0.267153,0.0436009,0.904908,0.408913,0.598126,0.156107,0.644819,0.849576,0.634822,0.698289,0.560584,0.049031,0.937071,0.0124334,0.361441,0.533613,0.396712,0.0867139,0.689286,0.759943,0.235418,0.315214,0.754559,0.728684,0.907998,0.390766,0.322319,0.379481,0.281737,0.637093,0.0777314,0.417717,0.915817,0.385989,0.080419,0.651373,0.901166,0.340807,0.455782,0.800272,0.405795,0.557008,0.814092,0.905633,0.2675,0.914795,0.623107,0.361833,0.731691,0.445994,0.188918,0.0572889,0.231798,0.946498,0.734765,0.0116866,0.627901,0.794092,0.629679,0.0591682,0.00814337,0.121885,0.877924,0.738627,0.348871,0.465579,0.455821,0.624545,0.783645,0.992026,0.333651,0.118325,0.249177,0.540211,0.898617,0.293231,0.225957,0.630346,0.565408,0.35511,0.491733,0.763391,0.12938,0.714305,0.0634827,0.188553,0.504265,0.268668,0.150059,0.284861,0.228472,0.0153518,0.868004,0.355024,0.0821706,0.428629,0.278446,0.344635,0.0398721,0.242957,0.783709,0.165629,0.342735,0.346692,0.716467,0.781582,0.0592499,0.926932,0.544963,0.405944,0.829766,0.827788,0.483284,0.170147,0.642039,0.783046,0.322566,0.615388,0.977711,0.179024,0.810637,0.557129,0.941287,0.301235,0.793725,0.357882,0.966395,0.429493,0.816787,0.499705,0.233918,0.700573,0.0103234,0.498659,0.080924,0.967701,0.935605,0.174064,0.0733581,0.361694,0.230103,0.862747,0.121091,0.669121,0.264577,0.70489,0.658683,0.0544708,0.79342,0.470946,0.905122,0.808177,0.572379,0.225944,0.583855,0.468264,0.531907,0.261286,0.0565668,0.741681,0.636145,0.45111,0.282655,0.468414,0.316267,0.292035,0.760299,0.380569,0.949484,0.382354,0.503899,0.165511,0.598072,0.124839,0.783832,0.580196,0.197159,0.666138,0.733608,0.424007,0.291803,0.804099,0.0844107,0.0268303,0.646981,0.787852,0.83315,0.634937,0.784986,0.255802,0.749462,0.326645,0.837535,0.6496,0.134956,0.270972,0.24614,0.636169,0.105733,0.428766,0.777669,0.277123,0.967317,0.538935,0.173673,0.360962,0.53697,0.79037,0.464316,0.944402,0.682083,0.422429,0.556185,0.884833,0.597437,0.653911,0.0666943,0.305088,0.931648,0.645536,0.800299,0.353639,0.304302,0.342434,0.117197,0.548549,0.629079,0.613451,0.760527,0.76307,0.782519,0.857944,0.499723,0.198053,0.162313,0.968741,0.441102,0.405675,0.927952,0.671882,0.574271,0.176823,0.457138,0.216328,0.841783,0.122758,0.170711,0.528591,0.155778,0.176906,0.476225,0.290238,0.639571,0.471896,0.462127,0.483234,0.837931,0.358678,0.374113,0.469577,0.364975,0.587478,0.828247,0.526187,0.468483,0.635068,0.92091,0.101163,0.730979,0.741985,0.895427,0.70998,0.270289,0.350727,0.510154,0.247487,0.350828,0.161267,0.980818,0.136628,0.74185,0.965689,0.398255,0.888647,0.185227,0.0573534,0.995085,0.825063,0.902399,0.498936,0.634375,0.530998,0.372674,0.707613,0.229068,0.933469,0.651834,0.654724,0.705203,0.944634,0.0593242,0.761785,0.030416,0.0345293,0.81209,0.180446,0.636808,0.553796,0.149765,0.56611,0.727111,0.836479,0.380742,0.288412,0.0424072,0.67369,0.518637,0.680307,0.902705,0.375706,0.328326,0.77358,0.76838,0.526884,0.912675,0.117189,0.658671,0.487425,0.255221,0.300158,0.617123,0.645333,0.983657,0.726932,0.336843,0.521883,0.246385,0.861441,0.350977,0.0986083,0.44631,0.139097,0.664683,0.671554,0.215538,0.4644,0.0784626,0.484188,0.885785,0.0202946,0.409861,0.782995,0.582401,0.706359,0.383358,0.357821,0.9705,0.365326,0.442548,0.961862,0.709552,0.791843,0.946043,0.540632,0.0104544,0.194091,0.621161,0.355945,0.367282,0.524808,0.508723,0.667755,0.414951,0.890567,0.0395306,0.638924,0.503192,0.75841,0.995534,0.603963,0.0594813,0.721016,0.737289,0.71853,0.488717,0.479813,0.203718,0.43518,0.613512,0.987523,0.955898,0.0107254,0.87948,0.32025,0.277164,0.443352,0.100611,0.310842,0.142296,0.805273,0.862255,0.16918,0.793311,0.344457,0.790194,0.973523,0.953247,0.646856,0.940042,0.634976,0.119804,0.347545,0.0102227,0.538753,0.310868,0.986401,0.0444049,0.736685,0.678575,0.0064019,0.155111,0.07665,0.11117,0.236124,0.0321683,0.345914,0.403549,0.959272,0.400069,0.0157246,0.628441,0.247489,0.027833,0.810691,0.308491,0.91066,0.117946,0.535349,0.367892,0.281264,0.504622,0.310975,0.164236,0.298689,0.86949,0.713856,0.406169,0.883593,0.567248,0.311272,0.151324,0.7954,0.073024,0.168128,0.0394437,0.376513,0.465719,0.843797,0.469736,0.515685,0.875397,0.645968,0.491894,0.132972,0.997967,0.385424,0.778508,0.705433,0.608855,0.496514,0.921851,0.54126,0.268132,0.514475,0.803823,0.644948,0.246608,0.458434,0.467857,0.510891,0.924423,0.440644,0.0585086,0.606395,0.884212,0.624164,0.0909117,0.279035,0.534696,0.581398,0.452883,0.172721,0.0459176,0.235465,0.780209,0.569216,0.181136,0.181279,0.990662,0.490361,0.0218278,0.433132,0.85403,0.340216,0.108993,0.863375,0.380216,0.771395,0.124405,0.650294,0.854783,0.89678,0.025481,0.28073,0.642682,0.758749,0.569762,0.580889,0.615306,0.742763,0.16722,0.580402,0.808223,0.296175,0.49403,0.32448,0.914771,0.554807,0.729648,0.343354,0.225142,0.944528,0.337116,0.590264,0.913929,0.691029,0.436863,0.803885,0.962491,0.345467,0.794549,0.959337,0.066131,0.84506,0.514795,0.766344,0.102987,0.586415,0.635852,0.966328,0.247783,0.53741,0.680721,0.91229,0.608516,0.899203,0.146137,0.762057,0.483897,0.307524,0.0806208,0.966724,0.180137,0.309688,0.698378,0.270939,0.323525,0.819689,0.762296,0.379306,0.776927,0.630405,0.929084,0.865764,0.857541,0.133942,0.894383,0.229567,0.300838,0.916339,0.810489,0.86843,0.760913,0.297622,0.172294,0.937088,0.918647,0.701968,0.319018,0.994532,0.187811,0.323608,0.622084,0.129966,0.603477,0.894312,0.524484,0.199601,0.0813897,0.0420901,0.225592,0.860993,0.379849,0.400707,0.104807,0.495502,0.77177,0.246949,0.634101,0.494205,0.895198,0.36213,0.0521113,0.831562,0.169068,0.276969,0.915782,0.86532,0.798146,0.859161,0.107901,0.59912,0.316949,0.887465,0.532103,0.504802,0.707074,0.80319,0.564811,0.167418,0.664047,0.170807,0.38438,0.449442,0.40285,|0.133397,0.667499,0.00564003,0.994399,0.88557,0.712305,0.35183,0.804952,0.240461,0.512787,0.585899,0.629876,0.653617,0.676333,0.93924,0.265817,0.0105497,0.591477,0.0670176,0.00336337,0.108543,0.119852,0.679745,0.647619,0.843707,0.183618,0.575286,0.531762,0.351258,0.306225,0.0747126,0.083374,0.321502,0.401712,0.19816,0.0766767,0.72426,0.583268,0.344781,0.829131,0.816567,0.366612,0.448851,0.456355,0.611511,0.616472,0.984601,0.88025,0.0210401,0.503652,0.266383,0.718356,0.234108,0.414733,0.0849552,0.0213527,0.97782,0.765036,0.229192,0.37433,0.541155,0.989256,0.599115,0.357771,0.344743,0.607824,0.456599,0.0396369,0.175024,0.756003,0.0870839,0.12123,0.995286,0.889841,0.0356447,0.956885,0.570273,0.376173,0.620543,0.773321,0.374764,0.435127,0.350555,0.291735,0.852825,0.0140636,0.987205,0.101005,0.19794,0.341284,0.479409,0.135106,0.627931,0.491249,0.299743,0.0103056,0.0194311,0.862332,0.812773,0.494006,0.493228,0.889007,0.799704,0.295573,0.884653,0.874653,0.548252,0.294844,0.0923199,0.601471,0.111327,0.522754,0.373562,0.767321,0.989371,0.779346,0.0610278,0.525117,0.300829,0.725114,0.29584,0.163046,0.158566,0.0998783,0.398862,0.540025,0.0557947,0.0436696,0.432873,0.0965695,0.0928206,0.684983,0.1869,0.47134,0.697504,0.155633,0.792805,0.990435,0.246863,0.576372,0.781315,0.655419,0.118084,0.984324,0.124247,0.855241,0.372792,0.572926,0.0381231,0.992705,0.652021,0.952511,0.847555,0.0737879,0.838212,0.603325,0.0657108,0.521259,0.270485,0.699655,0.339306,0.301625,0.742186,0.241361,0.568731,0.175137,0.818751,0.897403,0.933141,0.978369,0.346721,0.0200244,0.798282,0.293852,0.1801,0.788033,0.189627,0.826811,0.706267,0.957307,0.670732,0.222676,0.819398,0.895171,0.948636,0.141084,0.256172,0.652158,0.4627,0.540604,0.738926,0.686624,0.105512,0.356016,0.736075,0.949181,0.97421,0.798222,0.769825,0.351483,0.254956,0.518876,0.779011,0.147203,0.286153,0.635073,0.920111,0.669355,0.650933,0.692016,0.960978,0.767617,0.922903,0.0410248,0.735865,0.785844,0.483298,0.269737,0.761395,0.181698,0.92041,0.0831478,0.370789,0.184928,0.537771,0.686308,0.828911,0.947755,0.277529,0.187504,0.972134,0.0170748,0.641761,0.303361,0.784034,0.702561,0.942134,0.950488,0.166278,0.872168,0.425814,0.313739,0.799833,0.368958,0.494755,0.517272,0.271419,0.355867,0.0966443,0.976077,0.265784,0.188683,0.166217,0.753718,0.765121,0.656856,0.635437,0.486104,0.0386528,0.177441,0.0770988,0.922355,0.497956,0.977128,0.174294,0.82106,0.657936,0.850118,0.190835,0.656768,0.195399,0.653248,0.853483,0.949483,0.186231,0.902964,0.856414,0.846419,0.202492,0.561202,0.754972,0.832643,0.0346724,0.39611,0.0584776,0.522035,0.561058,0.831205,0.592503,0.0871801,0.206343,0.829234,0.661367,0.564397,0.759287,0.932909,0.929292,0.123637,0.00205189,0.190976,0.586296,0.876634,0.583386,0.455581,0.177785,0.726666,0.212352,0.305076,0.997289,0.416458,0.835038,0.0161273,0.771021,0.521437,0.517063,0.415953,0.00366348,0.758751,0.947712,0.957057,0.688527,0.866094,0.744368,0.676005,0.356909,0.377149,0.321823,0.0304787,0.120792,0.596035,0.545484,0.83027,0.629793,0.733208,0.700103,0.38818,0.228674,0.801792,0.0291266,0.685141,0.543645,0.200957,0.611952,0.413413,0.175158,0.421506,0.584135,0.164288,0.801599,0.833696,0.283453,0.919426,0.535573,0.629933,0.205257,0.219307,0.787316,0.324496,0.891594,0.468229,0.624496,0.0861831,0.429206,0.569065,0.355734,0.133145,0.773548,0.576419,0.594044,0.575168,0.305911,0.506949,0.990526,0.0430363,0.843674,0.18454,0.214919,0.89395,0.464339,0.130307,0.805894,0.340154,0.898909,0.757713,0.0459604,0.963617,0.0403209,0.349111,0.846042,0.833871,0.540793,0.750226,0.522137,0.986574,0.130259,0.57119,0.743394,0.24196,0.546232,0.562618,0.505257,0.841293,0.492017,0.438069,0.825249,0.453414,0.781123,0.357868,0.166514,0.525632,0.151462,0.679753,0.775771,0.990219,0.970399,0.448817,0.850152,0.941544,0.143663,0.663434,0.0202015,0.896393,0.598452,0.126444,0.156089,0.874241,0.341559,0.96113,0.474138,0.675369,0.0188715,0.952848,0.647174,0.170325,0.975037,0.220753,0.380249,0.799479,0.700451,0.631517,0.494436,0.460695,0.630549,0.139347,0.769882,0.824507,0.340555,0.0859194,0.774298,0.000381351,0.449006,0.286213,0.563475,0.167188,0.601024,0.621675,0.0868672,0.757014,0.208459,0.344294,0.10873,0.271271,0.869514,0.14428,0.675502,0.759172,0.0429721,0.172741,0.679476,0.947254,0.808134,0.845118,0.372365,0.799915,0.311774,0.393047,0.0352566,0.223734,0.00933462,0.919644,0.332606,0.319922,0.766957,0.73295,0.847895,0.741513,0.813201,0.319862,0.16173,0.452038,0.175254,0.802343,0.433202,0.175861,0.529084,0.251051,0.04589,0.0498745,0.820782,0.980569,0.227719,0.685043,0.860595,0.447754,0.382576,0.587018,0.133734,0.242835,0.420032,0.856531,0.433467,0.637489,0.205328,0.809647,0.0517145,0.965547,0.517917,0.356699,0.79087,0.668833,0.113028,0.742146,0.938157,0.747736,0.315872,0.496956,0.455703,0.199165,0.243006,0.834651,0.13437,0.478354,0.604054,0.563618,0.929657,0.238964,0.0931801,0.448691,0.417555,0.454979,0.306628,0.12715,0.0790578,0.126117,0.859897,0.0379165,0.917569,0.337388,0.262346,0.0248243,0.15115,0.512247,0.871577,0.971622,0.143047,0.565544,0.698772,0.965307,0.78414,0.473442,0.430888,0.303447,0.510532,0.985347,0.978871,0.591609,0.49799,0.881501,0.481622,0.591062,0.408807,0.330151,0.496255,0.440848,0.461367,0.617504,0.812362,0.237617,0.785575,0.29329,0.477868,0.00560218,0.783046,0.832768,0.791048,0.883153,0.096029,0.030353,0.78195,0.454147,0.13326,0.385695,0.00482458,0.700691,0.494113,0.516248,0.224384,0.99101,0.538661,0.97516,0.733436,0.895863,0.36527,0.236167,0.31443,0.172195,0.868507,0.829695,0.870681,0.946481,0.330317,0.174031,0.444632,0.918142,0.66765,0.134125,0.165888,0.0215471,0.803446,0.811672,0.308405,0.377251,0.0880916,0.00981313,0.19492,0.067248,0.227815,0.607877,0.77662,0.673055,0.492981,0.172013,0.0305914,0.943203,0.119848,0.748082,0.484471,0.867437,0.227311,0.893614,0.870037,0.77495,0.622581,0.727987,0.225198,0.519362,0.793483,0.349818,0.66367,0.318439,0.167822,0.167295,0.608453,0.0733033,0.472794,0.85219,0.0543454,0.293587,0.0585484,0.384534,0.77492,0.667174,0.708949,0.77882,0.134875,0.402359,0.642572,0.950856,0.236006,0.217855,0.392342,0.848148,0.566273,0.839286,0.62974,0.268545,0.115353,0.298864,0.865167,0.657875,0.0755029,0.416517,0.520961,0.315628,0.78885,0.676228,0.181222,0.432717,0.985257,0.574123,0.462647,0.879176,0.888852,0.685936,0.493292,0.788629,0.900529,0.586586,0.485641,0.201372,0.74451,0.880263,0.251656,0.624908,0.606698,0.745167,0.618391,0.413694,0.118545,0.83603,0.5849,0.605293,0.47834,0.478813,0.861313,0.463519,0.637631,0.612277,0.584715,0.471885,0.264002,0.806598,0.0442184,0.407751,0.221077,0.123301,0.868897,0.682616,0.951985,0.0182472,0.360653,0.790871,0.535342,0.413827,0.123875,0.767691,0.864714,0.0866616,0.0882825,0.166926,0.654971,0.581325,0.0676328,0.811923,0.793267,0.0851818,0.628043,0.573354,0.00859302,0.950607,0.143031,0.0461053,0.431194,0.684903,0.899027,0.699799,0.106431,0.309536,0.897018,0.369792,0.232494,0.145069,0.344554,0.611131,0.785833,0.396685,0.253168,0.0289275,0.381399,0.275339,0.0659187,0.461423,0.550478,0.792274,0.216948,0.139454,0.243029,0.548357,0.166336,0.446713,0.719432,0.366589,0.313732,0.641537,0.51258,0.212047,0.853757,0.00993395,0.238252,0.638956,0.403999,0.0466673,0.476188,0.423213,0.453777,0.594819,0.749972,0.644078,0.753548,0.670056,0.650723,0.289451,0.143406,0.706112,0.618836,0.31547,0.820964,0.464216,0.0961141,0.209337,0.619499,0.408159,0.777327,0.874824,0.413618,0.146354,0.0772748,0.382865,0.814571,0.395761,0.649286,0.582573,0.434303,0.0558853,0.776635,0.780202,0.247214,0.57158,0.426333,0.353635,0.173142,0.638042,0.218443,0.0975535,0.883983,0.202047,0.369399,0.287305,0.208996,0.87281,0.467133,0.641932,0.853109,0.811917,0.483294,0.517427,0.995778,0.977437,0.21076,0.265169,0.289578,0.972198,0.850513,0.548164,0.783959,0.901526,0.871639,0.840128,0.542987,0.42857,0.220628,0.00294405,0.680953,0.177572,0.342027,0.038482,0.269385,0.0420644,0.338985,0.524671,0.309372,0.079703,0.402356,0.50048,0.191815,0.390249,0.519036,0.807261,0.0485762,0.975712,0.53313,0.425422,0.802302,0.0399694,0.849329,0.253009,0.66158,0.515811,0.613502,0.868454,0.204605,0.0925021,0.0271444,0.29433,0.81064,0.466622,0.872584,0.305414,0.837769,0.365393,0.772622,0.292428,0.0905688,0.126213,0.670627,0.182787,0.919857,0.329221,0.256038,0.783751,0.74397,0.572775,0.940165,0.919246,0.392316,0.929556,0.971642,0.647654,0.903386,0.648781,0.801181,0.691035,0.252509,0.238949,0.400851,0.997414,0.887345,0.383422,0.0568206,0.00329721,0.451798,0.290064,0.684463,0.367032,0.210721,0.619961,0.855742,0.556288,0.170759,0.68694,0.474375,0.720897,0.0279057,0.973315,0.7972,0.609981,0.505964,0.952223,0.264592,0.63547,0.183642,0.533316,0.795702,0.833998,0.312453,0.562547,0.297723,0.453631,0.0995452,0.199364,0.337892,0.741513,0.121888,0.928046,0.301441,0.83208,0.670542,0.664892,0.00179899,0.336348,0.947997,0.228136,0.652113,0.241291,0.415692,0.729268,0.0140746,0.898187,0.426826,0.680904,0.57991,0.580592,0.432346,0.205974,0.988215,0.997051,0.47956,0.636589,0.371743,0.0360588,0.295458,0.392714,0.991423,0.121226,0.900394,0.613924,0.0789518,0.744924,0.350061,0.668122,|0.622062,0.58377,0.910981,0.438148,0.977014,0.939974,0.0345163,0.284078,0.449524,0.841096,0.700184,0.103017,0.170405,0.664959,0.607223,0.570056,0.772551,0.694432,0.0526918,0.0742147,0.429213,0.748366,0.175701,0.0263728,0.435088,0.150127,0.842201,0.00882804,0.33448,0.413082,0.481191,0.914849,0.458726,0.394827,0.208573,0.260343,0.247024,0.325395,0.280109,0.690487,0.383299,0.0241949,0.426337,0.136594,0.42077,0.875285,0.829267,0.420425,0.419843,0.307666,0.60487,0.332993,0.541937,0.408578,0.58975,0.443464,0.820771,0.703657,0.589246,0.540121,0.987884,0.266725,0.089977,0.707047,0.495434,0.854541,0.778755,0.729107,0.311004,0.800528,0.452001,0.205978,0.434188,0.353275,0.135062,0.554068,0.510267,0.388535,0.811965,0.548342,0.290659,0.20975,0.817229,0.0506144,0.132048,0.879697,0.350388,0.894229,0.966103,0.544979,0.624388,0.657224,0.487062,0.736841,0.839159,0.917912,0.881049,0.86819,0.662002,0.284405,0.0294,0.796672,0.751326,0.00393254,0.913287,0.974514,0.470045,0.0707986,0.00659972,0.0655059,0.460805,0.825831,0.783331,0.862244,0.913129,0.102408,0.874405,0.394452,0.46514,0.973215,0.124164,0.667383,0.803054,0.365095,0.515197,0.202434,0.810183,0.92701,0.705203,0.185862,0.564945,0.60884,0.662092,0.24688,0.478492,0.680546,0.453796,0.262274,0.429555,0.14135,0.61675,0.372547,0.933866,0.190425,0.859688,0.126575,0.143077,0.18732,0.560209,0.572365,0.230653,0.170492,0.263597,0.415412,0.171155,0.114947,0.443592,0.550192,0.172511,0.409045,0.802022,0.577394,0.230973,0.636392,0.193074,0.68,0.0565715,0.182304,0.922701,0.501837,0.718403,0.239569,0.739086,0.00395751,0.283461,0.816044,0.471942,0.574469,0.498832,0.179262,0.649254,0.592865,0.139226,0.388749,0.0275347,0.717934,0.520591,0.252721,0.542741,0.368397,0.972977,0.00640833,0.409946,0.36429,0.957333,0.0940778,0.157617,0.871071,0.127111,0.0246266,0.765598,0.513187,0.582576,0.794785,0.0305475,0.187316,0.904923,0.735033,0.84509,0.498049,0.340616,0.591628,0.00241274,0.0672216,0.0477621,0.161858,0.76733,0.292338,0.156227,0.552016,0.188637,0.773631,0.953962,0.648567,0.541482,0.269466,0.179958,0.424134,0.368104,0.97243,0.016942,0.925205,0.0474578,0.877308,0.424375,0.971936,0.600241,0.324738,0.781313,0.848698,0.0671654,0.425688,0.837756,0.233271,0.467358,0.494246,0.673843,0.330518,0.389951,0.345098,0.226823,0.836883,0.767351,0.950209,0.748979,0.555841,0.723343,0.038851,0.951579,0.601008,0.450373,0.494824,0.674458,0.109615,0.600721,0.932997,0.121879,0.805661,0.0479138,0.755003,0.760446,0.228174,0.79842,0.0119098,0.840036,0.888063,0.243658,0.639345,0.416394,0.998091,0.53183,0.561663,0.951257,0.540967,0.69061,0.669434,0.554007,0.71619,0.593233,0.950293,0.440426,0.989526,0.750962,0.642669,0.65808,0.682498,0.127047,0.766446,0.97175,0.965963,0.44936,0.761112,0.362617,0.0584415,0.934609,0.920874,0.403864,0.94345,0.412965,0.84862,0.328534,0.213491,0.178732,0.974023,0.311941,0.852512,0.839066,0.826533,0.670212,0.698063,0.750378,0.304396,0.0305014,0.466874,0.276981,0.511062,0.235353,0.0135037,0.196577,0.775858,0.4071,0.826852,0.187588,0.199676,0.63889,0.156021,0.649118,0.12424,0.490408,0.97354,0.304735,0.660023,0.318334,0.859193,0.655983,0.969044,0.462994,0.993921,0.595685,0.160825,0.403799,0.201192,0.202919,0.767892,0.407806,0.448773,0.577647,0.180186,0.376795,0.846712,0.921496,0.899931,0.548476,0.111828,0.674757,0.314874,0.0718182,0.633049,0.60369,0.594703,0.968527,0.721736,0.789263,0.306031,0.981377,0.983873,0.913365,0.28157,0.622799,0.109883,0.480233,0.106629,0.461952,0.328457,0.739175,0.751407,0.988332,0.337687,0.284401,0.99264,0.698835,0.212255,0.0528539,0.914876,0.285363,0.886336,0.102333,0.47599,0.465117,0.991598,0.247887,0.543308,0.445707,0.912143,0.559846,0.842152,0.287169,0.788862,0.0978401,0.234446,0.23577,0.84094,0.868801,0.564104,0.78169,0.162488,0.303768,0.754245,0.931337,0.175611,0.164968,0.852455,0.0106714,0.488188,0.45049,0.796741,0.665612,0.406648,0.893774,0.12885,0.266656,0.21326,0.668023,0.400766,0.557229,0.709683,0.835667,0.296803,0.223849,0.871625,0.504778,0.659112,0.308762,0.348266,0.562726,0.0356534,0.767448,0.684595,0.022487,0.0865179,0.149198,0.409255,0.613098,0.617914,0.683675,0.0868984,0.715174,0.0813791,0.976367,0.34158,0.649013,0.222366,0.968563,0.418681,0.429788,0.331754,0.922197,0.803183,0.284409,0.467905,0.348373,0.575762,0.0361491,0.837632,0.0496383,0.171907,0.21472,0.307845,0.0218836,0.376033,0.450685,0.533986,0.702088,0.355258,0.458671,0.868155,0.578452,0.065522,0.148016,0.955831,0.324947,0.493019,0.763704,0.634674,0.465687,0.23724,0.366915,0.703335,0.209151,0.321078,0.530787,0.810572,0.233866,0.356484,0.230646,0.761843,0.983683,0.709097,0.609711,0.0248116,0.847835,0.599319,0.912723,0.712662,0.311242,0.940958,0.17891,0.950777,0.619847,0.310862,0.435241,0.311986,0.518777,0.23342,0.102814,0.589523,0.639759,0.0198838,0.471497,0.452385,0.918139,0.23015,0.925518,0.693518,0.487055,0.111157,0.334506,0.592267,0.774868,0.442746,0.776808,0.49795,0.506989,0.0450468,0.203533,0.730061,0.224269,0.301831,0.729328,0.905158,0.386614,0.580223,0.460846,0.209281,0.850534,0.282234,0.40394,0.517835,0.695992,0.895304,0.860228,0.253959,0.83393,0.482074,0.389667,0.450123,0.208469,0.802496,0.211454,0.782235,0.886724,0.0695145,0.345141,0.887601,0.123641,0.422907,0.660768,0.307796,0.948051,0.811431,0.696897,0.73882,0.228796,0.622744,0.249897,0.217793,0.64062,0.574184,0.157058,0.178951,0.128007,0.592417,0.517839,0.939114,0.026664,0.195337,0.929821,0.304926,0.582105,0.170352,0.589426,0.316401,0.702535,0.52838,0.368122,0.8649,0.837948,0.778099,0.409014,0.587911,0.202799,0.578837,0.209967,0.0991073,0.48579,0.609613,0.179042,0.385201,0.836919,0.134949,0.128985,0.0420291,0.402642,0.922598,0.143943,0.0471969,0.528278,0.781343,0.552365,0.886501,0.364135,0.280582,0.499332,0.252785,0.664983,0.123292,0.280004,0.084343,0.740423,0.946122,0.55857,0.5385,0.723062,0.928056,0.932623,0.0761125,0.562934,0.56812,0.649846,0.474477,0.44437,0.808139,0.636348,0.942126,0.808881,0.519595,0.845492,0.86595,0.666034,0.46016,0.799565,0.726071,0.0289491,0.957943,0.476853,0.99087,0.835496,0.869762,0.567399,0.664575,0.444256,0.17816,0.971108,0.186816,0.992237,0.415365,0.0397524,0.481961,0.573348,0.122287,0.345442,0.438917,0.0508469,0.683721,0.558365,0.415502,0.439457,0.680368,0.384164,0.618688,0.833617,0.7167,0.64134,0.560476,0.359423,0.961796,0.563835,0.408343,0.331353,0.163064,0.176628,0.184262,0.398304,0.980531,0.836537,0.870088,0.539818,0.612594,0.592169,0.574273,0.763009,0.791956,0.232595,0.900479,0.755503,0.517243,0.403933,0.0751284,0.619088,0.135632,0.330773,0.912602,0.851703,0.13107,0.049992,0.306963,0.659268,0.70368,0.649395,0.908849,0.9999,0.651536,0.814347,0.996489,0.425663,0.224074,0.000749707,0.935492,0.753654,0.433562,0.514481,0.327986,0.0203625,0.398911,0.476631,0.361926,0.668524,0.0591977,0.531444,0.630353,0.302809,0.312448,0.789699,0.245276,0.0915728,0.853858,0.0619528,0.875621,0.963161,0.825169,0.793911,0.281258,0.0156569,0.370602,0.0480542,0.434473,0.837906,0.955506,0.757381,0.925703,0.133841,0.400692,0.332945,0.932135,0.888226,0.985462,0.250476,0.823792,0.0638127,0.906007,0.119656,0.895739,0.514424,0.0761863,0.810371,0.762431,0.205293,0.831266,0.0659933,0.947075,0.560406,0.802861,0.810067,0.00285256,0.596155,0.797592,0.127915,0.00439566,0.966186,0.605688,0.119222,0.414439,0.27065,0.978048,0.118126,0.306307,0.11248,0.966355,0.30105,0.0261579,0.417473,0.638086,0.774141,0.385601,0.411099,0.99019,0.666962,0.303384,0.463346,0.855348,0.00355172,0.547315,0.756789,0.730191,0.0831226,0.689036,0.153845,0.659648,0.78404,0.205543,0.364663,0.790657,0.0241058,0.883878,0.213294,0.461222,0.788673,0.706465,0.501782,0.538917,0.960183,0.492458,0.115348,0.564415,0.406107,0.867999,0.955806,0.691403,0.559946,0.469256,0.0513123,0.175973,0.205787,0.384616,0.478448,0.171935,0.124479,0.576527,0.361395,0.827942,0.6969,0.577315,0.200736,0.330513,0.553949,0.579246,0.126565,0.827165,0.0573774,0.583391,0.0508471,0.743677,0.0409701,0.409477,0.599857,0.941446,0.329182,0.377014,0.24688,0.564988,0.198541,0.211619,0.735526,0.958915,0.0743492,0.654705,0.432267,0.222528,0.154583,0.886062,0.892255,0.29145,0.305477,0.691481,0.262002,0.761003,0.742116,0.824427,0.109242,0.676816,0.369269,0.245509,0.486046,0.297388,0.661772,0.00747651,0.582577,0.850609,0.398854,0.619429,0.430823,0.374776,0.136185,0.799785,0.490748,0.782715,0.715193,0.55265,0.202214,0.766933,0.748538,0.9205,0.232063,0.202297,0.375767,0.030573,0.963451,0.662656,0.542427,0.931009,0.0952219,0.0723901,0.653591,0.990382,0.968867,0.379436,0.773851,0.670656,0.13206,0.872569,0.510738,0.559753,0.3659,0.539072,0.754482,0.341561,0.0855367,0.568183,0.469177,0.601291,0.747516,0.105023,0.658469,0.216993,0.81128,0.772282,0.168073,0.270555,0.149269,0.508402,0.231419,0.347101,0.729796,0.00506568,0.314111,0.737601,0.0833902,0.572513,0.490281,0.96962,0.519377,0.22705,0.218556,0.014834,0.99955,0.053799,0.854526,0.475953,0.460214,0.816636,0.987031,0.782435,0.08683,0.628013,0.201227,0.938059,0.971185,0.0724714,0.201004,0.620635,0.615443,0.198642,0.722463,0.640121,0.215633,0.285301,0.864127,0.949257,0.973517,0.442118,|0.699262,0.803777,0.844287,0.690353,0.430593,0.490364,0.732134,0.354681,0.219437,0.608525,0.927431,0.171287,0.733471,0.324665,0.154693,0.222742,0.00449049,0.834283,0.979487,0.0100998,0.0388394,0.547667,0.428734,0.770886,0.829724,0.94742,0.273476,0.906353,0.702779,0.761456,0.540658,0.395259,0.822951,0.713482,0.727056,0.695048,0.242427,0.73722,0.919656,0.315148,0.62477,0.65388,0.660813,0.177402,0.997718,0.74571,0.47673,0.0769721,0.955847,0.631011,0.444776,0.673401,0.990831,0.312753,0.0426272,0.152916,0.47423,0.80704,0.804131,0.34851,0.534226,0.518174,0.497966,0.731933,0.731441,0.457835,0.834027,0.37822,0.390361,0.00219721,0.517317,0.895006,0.200743,0.0592809,0.0337055,0.195682,0.630684,0.813468,0.211205,0.153036,0.906641,0.878691,0.167462,0.570631,0.473821,0.933577,0.90712,0.847874,0.18181,0.0059008,0.36866,0.883543,0.245458,0.517643,0.830986,0.450299,0.256022,0.775649,0.943721,0.427316,0.678768,0.345828,0.380704,0.011991,0.673559,0.841886,0.695519,0.21599,0.65966,0.835929,0.205526,0.735383,0.714477,0.196014,0.770806,0.875518,0.714917,0.572491,0.477482,0.653205,0.690849,0.53351,0.700177,0.491651,0.520988,0.531523,0.105987,0.930086,0.308664,0.457143,0.0480187,0.793545,0.961742,0.255821,0.426313,0.97212,0.593977,0.152341,0.594868,0.905997,0.107581,0.82451,0.517265,0.20559,0.363018,0.536526,0.415655,0.246002,0.0586568,0.831345,0.513407,0.878708,0.075122,0.78297,0.405609,0.902359,0.954545,0.759196,0.195747,0.530677,0.686436,0.199535,0.872903,0.690516,0.506166,0.739946,0.127076,0.544712,0.969131,0.31559,0.162888,0.539091,0.635154,0.229084,0.876089,0.866527,0.91463,0.63483,0.491838,0.143287,0.440795,0.773478,0.266664,0.67322,0.496573,0.733547,0.729145,0.335495,0.522918,0.13909,0.454709,0.932303,0.511036,0.511929,0.344828,0.185416,0.889743,0.617167,0.690345,0.157963,0.9501,0.946555,0.48476,0.256226,0.523422,0.032181,0.0884207,0.971526,0.691693,0.258211,0.19158,0.534449,0.0442907,0.347955,0.118979,0.607006,0.399431,0.909674,0.927928,0.418964,0.290702,0.194972,0.24095,0.613411,0.835371,0.0649716,0.376857,0.931243,0.0192616,0.282709,0.458104,0.432492,0.651756,0.810578,0.896586,0.294343,0.632957,0.739709,0.422655,0.498391,0.719889,0.909507,0.701386,0.582819,0.706632,0.0672694,0.807703,0.170201,0.845837,0.11683,0.774718,0.174359,0.289527,0.0689287,0.808288,0.0379711,0.554131,0.352037,0.688193,0.48352,0.362414,0.157049,0.697688,0.446329,0.604683,0.139575,0.0300978,0.975418,0.112399,0.830286,0.0733707,0.758114,0.016056,0.0877442,0.645325,0.59987,0.971735,0.809571,0.519412,0.208353,0.212319,0.640592,0.981439,0.253755,0.973731,0.615526,0.550837,0.589587,0.310569,0.973406,0.210247,0.30766,0.521036,0.426286,0.0186952,0.353269,0.387645,0.320078,0.0577739,0.482506,0.450877,0.2606,0.66365,0.67023,0.893369,0.383621,0.724164,0.224967,0.550888,0.255279,0.54779,0.00305623,0.60326,0.607435,0.0718675,0.269453,0.425819,0.166977,0.843505,0.646897,0.527667,0.967867,0.0287278,0.819266,0.12076,0.0893963,0.230701,0.426646,0.89918,0.387546,0.172517,0.342866,0.408785,0.559461,0.787553,0.275894,0.610351,0.619315,0.928077,0.681547,0.329311,0.40878,0.376368,0.888242,0.656406,0.512299,0.950014,0.128676,0.325457,0.307545,0.727411,0.662112,0.89012,0.466902,0.854593,0.428667,0.207918,0.548173,0.170022,0.595554,0.755373,0.36784,0.844433,0.456235,0.172805,0.617852,0.103853,0.956285,0.255191,0.949047,0.5503,0.110188,0.7422,0.189358,0.774817,0.0366054,0.580872,0.16716,0.766752,0.157572,0.362246,0.110004,0.927105,0.133296,0.0433157,0.845963,0.643198,0.603501,0.989906,0.31046,0.0399725,0.214505,0.655359,0.790761,0.230293,0.18674,0.728718,0.233899,0.0191635,0.643941,0.974914,0.597374,0.815366,0.587706,0.189041,0.292327,0.571127,0.00177008,0.538244,0.780051,0.555893,0.669477,0.854621,0.741634,0.646006,0.381153,0.865919,0.577929,0.664512,0.846617,0.921777,0.193898,0.669842,0.409172,0.772633,0.597367,0.258816,0.878436,0.127086,0.781914,0.247799,0.836776,0.16919,0.720091,0.652576,0.712867,0.0280252,0.867402,0.283037,0.792249,0.722872,0.303412,0.68059,0.316315,0.771073,0.456658,0.236354,0.442404,0.524015,0.769819,0.976112,0.594943,0.450358,0.73533,0.742282,0.893191,0.466997,0.843462,0.609923,0.910854,0.30465,0.67254,0.943952,0.75638,0.611455,0.029483,0.790355,0.695004,0.391026,0.223316,0.826462,0.062179,0.390576,0.227271,0.131243,0.788836,0.0978613,0.433515,0.452856,0.22821,0.468953,0.0947174,0.229188,0.912169,0.0123215,0.370924,0.696867,0.0748436,0.0556351,0.905095,0.572831,0.198262,0.527546,0.508428,0.382115,0.491756,0.176992,0.21498,0.204773,0.860001,0.298981,0.999061,0.891402,0.952187,0.376599,0.85532,0.255301,0.586949,0.831992,0.333283,0.106361,0.386262,0.824962,0.960018,0.396178,0.736551,0.583174,0.69617,0.721991,0.734999,0.722779,0.473453,0.666803,0.437917,0.395951,0.787573,0.156582,0.619358,0.462234,0.0278684,0.140253,0.955508,0.562296,0.409732,0.337379,0.753739,0.758086,0.817068,0.257065,0.827215,0.706091,0.505555,0.5294,0.944885,0.0695969,0.721078,0.55442,0.951537,0.809943,0.756677,0.19828,0.423255,0.0582726,0.394154,0.448223,0.743448,0.179963,0.145836,0.253365,0.251579,0.633255,0.959212,0.830502,0.465104,0.345602,0.560719,0.393684,0.5727,0.109404,0.329578,0.385627,0.93482,0.849824,0.389564,0.0731857,0.796959,0.949028,0.26798,0.225128,0.424975,0.344522,0.980528,0.217261,0.92179,0.71147,0.513478,0.165045,0.112677,0.0784329,0.277381,0.24514,0.791107,0.0021621,0.611358,0.0520451,0.861477,0.656341,0.712986,0.335512,0.437032,0.376292,0.737034,0.0937499,0.122245,0.258138,0.345589,0.389349,0.594655,0.912457,0.463549,0.23298,0.991236,0.677063,0.0513305,0.381457,0.520438,0.191566,0.331203,0.424251,0.608469,0.926045,0.280342,0.725732,0.797689,0.74373,0.303948,0.824123,0.098555,0.664931,0.911409,0.866335,0.129732,0.854851,0.658636,0.0659296,0.126635,0.999934,0.0331064,0.188432,0.233355,0.978502,0.692944,0.346799,0.76813,0.596572,0.466862,0.91079,0.558824,0.332426,0.732662,0.642757,0.586417,0.807457,0.336989,0.202534,0.00934601,0.782872,0.231192,0.721711,0.997016,0.234268,0.659425,0.030568,0.454257,0.398546,0.584729,0.976399,0.233746,0.955089,0.380177,0.847928,0.281192,0.802663,0.20572,0.98129,0.612294,0.422344,0.0632998,0.663168,0.9023,0.489558,0.182825,0.878523,0.0721474,0.873226,0.210117,0.312054,0.872628,0.870561,0.382761,0.639358,0.579816,0.864415,0.481768,0.66707,0.00122011,0.406002,0.254675,0.252346,0.6892,0.0448629,0.0359235,0.079506,0.948668,0.87903,0.849096,0.346072,0.0410572,0.375704,0.355129,0.058816,0.0491365,0.348852,0.65158,0.355892,0.46233,0.524322,0.218191,0.0900072,0.230284,0.881984,0.168308,0.621291,0.883884,0.826535,0.510735,0.395268,0.356193,0.469391,0.225487,0.0865886,0.236533,0.193494,0.894054,0.405326,0.0510333,0.754397,0.952145,0.910097,0.806507,0.463242,0.926321,0.397202,0.569951,0.203448,0.870003,0.0728071,0.523427,0.735556,0.140815,0.504721,0.246379,0.320972,0.678255,0.454318,0.971929,0.229992,0.605993,0.59507,0.528275,0.856209,0.645406,0.789039,0.909754,0.766408,0.650478,0.263541,0.786655,0.647037,0.410487,0.569883,0.0849021,0.901613,0.620255,0.900579,0.0182952,0.85545,0.464719,0.658826,0.108445,0.0140789,0.780647,0.530042,0.631261,0.729433,0.861391,0.959804,0.471832,0.319181,0.624464,0.506817,0.663886,0.809722,0.195627,0.255549,0.586232,0.932745,0.199074,0.471145,0.0522724,0.284828,0.965361,0.748258,0.398899,0.675326,0.45739,0.327475,0.503039,0.894496,0.839479,0.630626,0.373958,0.930904,0.610646,0.310526,0.215765,0.953982,0.247723,0.651751,0.156733,0.231112,0.60413,0.481169,0.457981,0.727971,0.500524,0.251671,0.0817597,0.205206,0.00256222,0.679679,0.787859,0.378957,0.124561,0.422914,0.331627,0.486874,0.698904,0.0177089,0.802588,0.045952,0.491635,0.160986,0.507185,0.00444007,0.677596,0.137393,0.238628,0.0184695,0.366666,0.114935,0.0216457,0.0114962,0.0158719,0.232707,0.427074,0.0140865,0.745747,0.888216,0.0819394,0.221055,0.325666,0.310323,0.776977,0.365599,0.783282,0.0134057,0.936714,0.412063,0.0504444,0.361056,0.948571,0.62939,0.785297,0.49905,0.938857,0.604555,0.149349,0.327562,0.389844,0.587325,0.252021,0.122573,0.131791,0.327542,0.242205,0.798492,0.599061,0.926216,0.516042,0.41915,0.943507,0.50144,0.414592,0.475572,0.0367646,0.401126,0.216458,0.855929,0.0845724,0.97818,0.615759,0.738214,0.316895,0.921884,0.267146,0.919707,0.746436,0.658809,0.102697,0.521848,0.58961,0.701207,0.706997,0.137911,0.561609,0.918699,0.34837,0.267994,0.738248,0.985715,0.881882,0.373471,0.800377,0.618456,0.116081,0.892521,0.628036,0.410802,0.385672,0.715141,0.435542,0.848958,0.354711,0.650951,0.271158,0.339229,0.631674,0.827728,0.091269,0.0474283,0.55109,0.879985,0.261274,0.179793,0.57347,0.755813,0.0915014,0.834672,0.541081,0.752933,0.641104,0.489274,0.46897,0.625869,0.686557,0.497428,0.633159,0.982083,0.122241,0.737926,0.479631,0.833061,0.840518,0.675122,0.104744,0.111739,0.2885,0.833215,0.836041,0.626193,0.259798,0.729896,0.752417,0.342863,0.364632,0.39969,0.633168,0.814505,0.197372,0.565546,0.335713,0.158294,0.538026,0.755721,0.995723,0.652032,0.410938,0.938206,0.777639,0.654912,0.408292,0.505227,0.677341,0.395179,0.0824626,0.978627,0.193001,0.422726,0.270489,|0.644944,0.161465,0.87857,0.112391,0.429332,0.00486034,0.495513,0.240112,0.89819,0.560923,0.544338,0.504785,0.253553,0.645338,0.661272,0.0934632,0.547812,0.776005,0.96983,0.153717,0.181805,0.734179,0.7377,0.937798,0.282221,0.625733,0.847246,0.374508,0.319728,0.986566,0.851831,0.27214,0.544464,0.454816,0.358616,0.276834,0.765978,0.370715,0.425881,0.104758,0.813618,0.878887,0.657124,0.201757,0.170794,0.570119,0.22979,0.609228,0.620138,0.108582,0.300165,0.655047,0.135313,0.292692,0.632571,0.365141,0.861664,0.413327,0.804262,0.688699,0.420727,0.384507,0.690445,0.314106,0.323969,0.235746,0.20931,0.524442,0.715306,0.301419,0.407483,0.159915,0.44191,0.299933,0.128396,0.00751746,0.946654,0.784044,0.889578,0.0869175,0.559621,0.532735,0.545962,0.901417,0.904177,0.0825164,0.735767,0.0229374,0.876839,0.271257,0.564877,0.31229,0.000520229,0.106817,0.238732,0.604174,0.831355,0.686298,0.489478,0.323355,0.486441,0.79452,0.44107,0.274867,0.74411,0.306812,0.0119478,0.306118,0.751419,0.221916,0.391345,0.909397,0.274622,0.285612,0.0327246,0.789023,0.565873,0.0806424,0.945067,0.0775984,0.193799,0.934872,0.187359,0.982547,0.619084,0.468587,0.391617,0.509806,0.362081,0.966566,0.437373,0.385225,0.0911877,0.692161,0.384553,0.209812,0.5362,0.0524909,0.746804,0.346258,0.975932,0.988005,0.598987,0.048895,0.858607,0.23022,0.416754,0.517922,0.806976,0.753482,0.858007,0.891127,0.227948,0.414798,0.724861,0.0373333,0.520586,0.333307,0.898946,0.891764,0.611652,0.814597,0.888381,0.195438,0.625339,0.993373,0.762757,0.649713,0.733486,0.157529,0.644098,0.654407,0.27691,0.926506,0.59916,0.786821,0.0589023,0.494538,0.647696,0.595011,0.709077,0.698958,0.910066,0.112205,0.387269,0.923473,0.798148,0.864368,0.623923,0.420139,0.995575,0.768952,0.828875,0.230588,0.432498,0.5318,0.737701,0.965356,0.756555,0.733494,0.458958,0.67653,0.399803,0.54987,0.610757,0.0141609,0.176111,0.210856,0.481241,0.628983,0.840662,0.894106,0.249142,0.465637,0.0914395,0.290481,0.537767,0.780221,0.496413,0.834342,0.32418,0.389636,0.335026,0.438373,0.543068,0.909969,0.583999,0.830323,0.630206,0.647166,0.34336,0.248814,0.699142,0.0048697,0.210554,0.824977,0.481154,0.644273,0.634371,0.645354,0.384184,0.0691038,0.808473,0.215313,0.0950822,0.185637,0.202492,0.355253,0.199129,0.426889,0.534075,0.522835,0.0848743,0.300913,0.821214,0.157251,0.795332,0.291003,0.270119,0.263622,0.359099,0.605554,0.495425,0.22256,0.732463,0.837115,0.978421,0.342353,0.398846,0.182423,0.197137,0.268963,0.683093,0.397752,0.219692,0.599009,0.524107,0.499105,0.379001,0.619773,0.562237,0.915531,0.17933,0.544188,0.299849,0.078575,0.0221975,0.866578,0.119241,0.306122,0.0601095,0.0255527,0.899595,0.0670819,0.0518834,0.530386,0.100836,0.448007,0.418262,0.776735,0.0156724,0.312867,0.637997,0.891415,0.341285,0.859487,0.847371,0.916155,0.875976,0.723715,0.393278,0.934994,0.0473903,0.516834,0.924787,0.244831,0.992245,0.445556,0.895298,0.317371,0.693484,0.0474761,0.930922,0.73157,0.236316,0.964294,0.879968,0.531075,0.694696,0.906276,0.147153,0.304454,0.768451,0.587068,0.598764,0.954407,0.958962,0.827128,0.248817,0.506674,0.184086,0.689688,0.834643,0.94404,0.108063,0.388729,0.037542,0.751664,0.0785244,0.839593,0.351889,0.332735,0.676528,0.0849318,0.625257,0.425505,0.445653,0.436454,0.115232,0.829833,0.372719,0.580307,0.517471,0.272581,0.18372,0.164695,0.735908,0.946005,0.787832,0.750527,0.426658,0.867517,0.397396,0.198419,0.384144,0.0394205,0.372683,0.994474,0.0726714,0.983467,0.215482,0.568563,0.212188,0.110189,0.967686,0.316064,0.919578,0.615974,0.256088,0.145227,0.000569224,0.4452,0.789252,0.9381,0.730923,0.0633081,0.192114,0.134325,0.228239,0.232964,0.867303,0.0369478,0.548408,0.346075,0.230558,0.294593,0.501841,0.758997,0.360721,0.558742,0.800497,0.983369,0.699254,0.7508,0.402385,0.496459,0.358478,0.896782,0.878772,0.895503,0.825245,0.118176,0.557246,0.0401658,0.170139,0.637313,0.744004,0.718846,0.357452,0.42,0.328295,0.702655,0.84012,0.862435,0.505355,0.150666,0.858067,0.119806,0.236741,0.552072,0.887764,0.85453,0.80041,0.908835,0.921742,0.16911,0.79055,0.153118,0.459268,0.244577,0.274615,0.0410287,0.00904292,0.314725,0.61182,0.869698,0.962439,0.724863,0.190571,0.989004,0.646571,0.527562,0.391947,0.551167,0.212127,0.501462,0.644691,0.867566,0.533129,0.113895,0.61021,0.679951,0.116318,0.180282,0.634779,0.764035,0.752185,0.779973,0.995445,0.359096,0.0183572,0.699918,0.67193,0.223212,0.39391,0.0587191,0.988814,0.309377,0.0712332,0.451843,0.310637,0.206625,0.660056,0.485994,0.111297,0.561037,0.330818,0.805437,0.836757,0.178409,0.609575,0.797603,0.895454,0.136904,0.845331,0.847802,0.528978,0.749099,0.55147,0.226902,0.695355,0.415488,0.369446,0.0756228,0.589127,0.808013,0.42598,0.363656,0.774609,0.220668,0.971677,0.723283,0.635613,0.676746,0.144231,0.600515,0.400691,0.0902194,0.113968,0.418965,0.528765,0.969972,0.520629,0.255901,0.351674,0.567651,0.435737,0.941997,0.843586,0.13144,0.974495,0.286669,0.0137947,0.853543,0.288931,0.141778,0.667465,0.0577644,0.512877,0.746981,0.106063,0.777271,0.60626,0.0949004,0.967172,0.585687,0.660464,0.76768,0.120154,0.95798,0.1876,0.859755,0.294444,0.463688,0.978789,0.810193,0.463193,0.803115,0.215932,0.247568,0.263497,0.990934,0.985357,0.703959,0.527591,0.491983,0.365043,0.982016,0.418717,0.267796,0.216079,0.27115,0.153411,0.244505,0.814312,0.20825,0.960083,0.117958,0.905233,0.653934,0.503808,0.338686,0.6306,0.882878,0.15962,0.367421,0.00223398,0.585119,0.854516,0.29492,0.714449,0.26204,0.800339,0.56629,0.893171,0.527834,0.873097,0.0979238,0.393007,0.093285,0.207773,0.0830718,0.685315,0.531954,0.831821,0.161052,0.893914,0.444863,0.11194,0.682894,0.662039,0.470769,0.835719,0.267563,0.459621,0.518905,0.135549,0.481462,0.358801,0.753667,0.0762993,0.499323,0.489936,0.956628,0.524304,0.348764,0.054162,0.677735,0.158637,0.676284,0.706631,0.691118,0.014042,0.880413,0.818714,0.13233,0.446909,0.579243,0.388808,0.375684,0.604694,0.168056,0.480989,0.155034,0.675322,0.487519,0.785874,0.724811,0.384504,0.36357,0.0331542,0.761595,0.44536,0.497671,0.342793,0.885847,0.0262284,0.362662,0.672988,0.742465,0.768602,0.371668,0.635206,0.709484,0.954832,0.669341,0.280739,0.00779927,0.103107,0.956403,0.204045,0.674379,0.676453,0.0746479,0.805142,0.875689,0.916481,0.414624,0.548804,0.37438,0.0528044,0.996966,0.00289059,0.699341,0.734052,0.513757,0.673399,0.0243124,0.852508,0.768048,0.462211,0.890966,0.336056,0.234853,0.394661,0.0699257,0.591896,0.592748,0.13931,0.683192,0.426655,0.759443,0.246451,0.247054,0.245403,0.820358,0.641027,0.141471,0.105963,0.530131,0.919896,0.2043,0.630643,0.384625,0.997906,0.12758,0.928495,0.51912,0.417502,0.738928,0.410498,0.0414199,0.299173,0.124301,0.525023,0.0586123,0.889035,0.0361381,0.963967,0.130029,0.16813,0.570977,0.772391,0.531169,0.795422,0.662507,0.859696,0.824802,0.26726,0.330799,0.825808,0.706893,0.500359,0.21556,0.635964,0.616454,0.569627,0.372561,0.672032,0.820159,0.181951,0.289246,0.691173,0.658746,0.836431,0.407297,0.541338,0.512843,0.0567209,0.699707,0.617126,0.940346,0.57213,0.174341,0.664417,0.290192,0.210151,0.395246,0.0208027,0.442326,0.453532,0.997284,0.0886146,0.925685,0.67274,0.209458,0.86141,0.990891,0.327913,0.312688,0.844055,0.0711085,0.387291,0.895497,0.558571,0.88591,0.878021,0.617453,0.664796,0.495986,0.275387,0.0268785,0.159286,0.996955,0.136862,0.501187,0.885607,0.113421,0.431157,0.357349,0.399648,0.0777147,0.000522912,0.149415,0.449166,0.396331,0.674655,0.436025,0.882432,0.74187,0.167936,0.949884,0.461168,0.413097,0.337091,0.530686,0.0192827,0.257709,0.373228,0.158622,0.950128,0.24151,0.0953466,0.731792,0.15289,0.539891,0.12543,0.580883,0.252049,0.400921,0.588263,0.425098,0.1149,0.247797,0.417103,0.836076,0.551426,0.796732,0.52394,0.165504,0.103075,0.0909037,0.580213,0.649442,0.111853,0.334697,0.776547,0.934074,0.0477848,0.544597,0.135015,0.732738,0.474186,0.234711,0.573281,0.624512,0.740766,0.686678,0.588751,0.554276,0.171967,0.0706156,0.183015,0.212649,0.65929,0.909145,0.512622,0.56366,0.434819,0.87778,0.940565,0.226461,0.689328,0.500371,0.440734,0.914554,0.828427,0.664735,0.364496,0.343924,0.664392,0.0527724,0.922499,0.401149,0.574746,0.893435,0.163755,0.524326,0.222468,0.512497,0.570157,0.547266,0.824598,0.32952,0.398973,0.711629,0.26732,0.692699,0.113485,0.439704,0.446614,0.991667,0.0416996,0.0259549,0.910299,0.477631,0.893774,0.0327497,0.373308,0.0334847,0.636814,0.466901,0.844853,0.615123,0.719812,0.771005,0.131193,0.380196,0.433206,0.867282,0.793093,0.468163,0.181362,0.540469,0.834859,0.977745,0.733649,0.500018,0.427725,0.303514,0.790009,0.1423,0.289472,0.993496,0.623948,0.260157,0.107014,0.105657,0.717876,0.989955,0.928946,0.272288,0.189236,0.722234,0.202951,0.717994,0.347969,0.0194866,0.275205,0.390786,0.492176,0.143558,0.667755,0.536334,0.464839,0.791521,0.846944,0.100371,0.473968,0.0224153,0.174984,0.444018,0.451145,0.726553,0.829831,0.578283,0.0883173,0.349509,0.868793,0.269781,0.193453,0.00647575,0.418356,0.509451,0.164659,0.171038,0.969325,0.513991,0.387509,0.748392,0.69066,0.661277,0.289046,0.993592,0.307955,0.511533,0.724631,0.189216,0.898402,0.0838713,|0.0605535,0.327454,0.6707,0.494687,0.563253,0.141577,0.731695,0.436824,0.665362,0.679802,0.150409,0.886547,0.55297,0.999936,0.0669225,0.348351,0.912758,0.476338,0.962592,0.791429,0.176772,0.102228,0.0259716,0.454042,0.0117031,0.648952,0.405022,0.981768,0.146329,0.813955,0.607737,0.254601,0.198415,0.00861955,0.409088,0.602653,0.476192,0.756908,0.938417,0.557897,0.349287,0.33034,0.906208,0.858881,0.242549,0.388228,0.0742936,0.477222,0.417074,0.235133,0.345721,0.868952,0.612103,0.299962,0.678801,0.833002,0.592874,0.728159,0.706843,0.254443,0.847288,0.0711018,0.553932,0.914431,0.566888,0.954567,0.284369,0.633933,0.883241,0.0438282,0.85024,0.381623,0.44369,0.582077,0.777148,0.223992,0.192079,0.546371,0.302392,0.676412,0.20467,0.456921,0.263886,0.898326,0.67278,0.862312,0.217809,0.179869,0.96425,0.522602,0.830704,0.161102,0.827907,0.0782064,0.662789,0.221374,0.793829,0.100686,0.341888,0.0168349,0.847601,0.231781,0.109129,0.51467,0.774717,0.395378,0.38329,0.474609,0.943828,0.925892,0.327887,0.720592,0.933851,0.210625,0.00522834,0.388815,0.914796,0.652222,0.0572649,0.252923,0.177508,0.149757,0.489824,0.808045,0.48394,0.49461,0.154379,0.31578,0.426942,0.515451,0.378988,0.0793507,0.0962964,0.350825,0.602205,0.0908734,0.457379,0.484447,0.0647584,0.626929,0.811278,0.217879,0.279656,0.807424,0.587869,0.0806131,0.49667,0.889968,0.895894,0.440599,0.44534,0.0852023,0.256247,0.534559,0.609006,0.322269,0.09949,0.0177503,0.313854,0.128959,0.208188,0.650758,0.508369,0.561456,0.543121,0.413101,0.664182,0.219454,0.145334,0.950673,0.83704,0.863042,0.366748,0.150805,0.578859,0.562392,0.372624,0.14225,0.13842,0.875194,0.237851,0.0135012,0.191634,0.489257,0.949527,0.536456,0.988989,0.65851,0.916939,0.785283,0.765928,0.225717,0.106773,0.350416,0.706385,0.200055,0.896322,0.494557,0.292278,0.864885,0.719376,0.629855,0.555318,0.289449,0.372151,0.0009166,0.188557,0.503718,0.212287,0.913589,0.481733,0.320389,0.185112,0.155053,0.0974152,0.110656,0.391303,0.368411,0.748902,0.274075,0.489855,0.563025,0.337078,0.54532,0.188867,0.576762,0.648508,0.803437,0.0965133,0.217555,0.470678,0.553095,0.743977,0.0121411,0.0749473,0.284138,0.557002,0.402859,0.505226,0.385658,0.2745,0.52652,0.597601,0.903364,0.326004,0.0869082,0.00687957,0.327156,0.967075,0.913036,0.747154,0.969382,0.488018,0.870382,0.875596,0.283677,0.742029,0.566344,0.372868,0.0565117,0.252353,0.451955,0.950705,0.0440934,0.676997,0.432039,0.491129,0.218999,0.185599,0.414973,0.930299,0.052211,0.301307,0.441454,0.535785,0.459342,0.594675,0.311002,0.167767,0.158665,0.363493,0.24998,0.320121,0.873914,0.692271,0.503273,0.528339,0.110995,0.731354,0.515186,0.841692,0.687616,0.96447,0.734725,0.745545,0.972242,0.765893,0.49621,0.748108,0.922193,0.156332,0.14672,0.196721,0.0742662,0.847099,0.099879,0.355755,0.220206,0.937285,0.414706,0.51191,0.531646,0.726976,0.38561,0.795487,0.268101,0.670819,0.964457,0.178589,0.609684,0.199428,0.363563,0.155533,0.465445,0.0821187,0.738764,0.563696,0.345265,0.448194,0.827606,0.657435,0.387552,0.00954491,0.643964,0.646984,0.451127,0.727399,0.534303,0.885243,0.136744,0.911344,0.704077,0.446905,0.841005,0.771067,0.206215,0.251262,0.696474,0.99018,0.98303,0.2376,0.81595,0.339982,0.053651,0.123808,0.544851,0.268326,0.213258,0.797277,0.524179,0.154254,0.0677797,0.318006,0.748309,0.218143,0.262433,0.149358,0.0892615,0.591496,0.123202,0.910229,0.533064,0.540926,0.32431,0.895351,0.996832,0.980844,0.503064,0.061343,0.555024,0.319463,0.646414,0.607471,0.442834,0.236126,0.879592,0.883724,0.532353,0.200905,0.29652,0.778024,0.180832,0.173704,0.480295,0.757965,0.301235,0.00661045,0.365132,0.786691,0.121156,0.328475,0.752887,0.339547,0.147117,0.139872,0.28657,0.687331,0.863553,0.848144,0.882196,0.142431,0.733729,0.682108,0.115568,0.40484,0.120205,0.803538,0.357939,0.331742,0.945775,0.8768,0.969004,0.803631,0.430623,0.77346,0.970342,0.303989,0.0688553,0.797748,0.677669,0.512782,0.87559,0.916198,0.787905,0.404951,0.363283,0.174963,0.810126,0.174406,0.426906,0.0535812,0.513919,0.276282,0.694823,0.362974,0.596077,0.269563,0.363373,0.405604,0.334938,0.635359,0.661352,0.652762,0.700875,0.700417,0.754047,0.678689,0.672251,0.0715508,0.268981,0.575621,0.664798,0.804158,0.708144,0.364967,0.545437,0.0964103,0.884179,0.204752,0.740837,0.870827,0.337083,0.549038,0.819585,0.433444,0.877843,0.820399,0.0536734,0.914936,0.20017,0.0163862,0.241904,0.192984,0.7198,0.463469,0.948664,0.890698,0.848722,0.19243,0.00402212,0.368707,0.716752,0.40458,0.629288,0.118399,0.0116494,0.412747,0.342833,0.546777,0.0918817,0.540553,0.130769,0.401779,0.12804,0.0604708,0.674294,0.607164,0.599656,0.282223,0.734345,0.0368414,0.862795,0.744525,0.228968,0.323466,0.94051,0.0070371,0.210923,0.495946,0.131613,0.269165,0.731197,0.422343,0.142703,0.453005,0.893423,0.657028,0.538125,0.718581,0.357317,0.577477,0.992261,0.190028,0.760296,0.118507,0.326559,0.531072,0.390298,0.887315,0.702369,0.988796,0.21025,0.493539,0.0498585,0.373997,0.755274,0.710562,0.173197,0.359296,0.366134,0.421359,0.904217,0.214674,0.653303,0.954039,0.788954,0.190775,0.640243,0.608154,0.184289,0.792111,0.0609277,0.914102,0.756199,0.0112545,0.389044,0.435254,0.954628,0.409552,0.589836,0.877929,0.604611,0.28721,0.757476,0.354116,0.712538,0.504177,0.954016,0.491583,0.759673,0.891386,0.428673,0.0776643,0.937867,0.585768,0.862517,0.0885812,0.95445,0.475812,0.965912,0.096949,0.663217,0.49227,0.301165,0.931551,0.26151,0.143902,0.818517,0.415287,0.889592,0.175399,0.976891,0.719892,0.438824,0.180167,0.504025,0.637045,0.546452,0.403325,0.410757,0.396074,0.14227,0.722125,0.0397705,0.984201,0.524122,0.229752,0.598207,0.779852,0.030912,0.78823,0.130478,0.250929,0.97003,0.460167,0.11199,0.181636,0.731912,0.204716,0.521788,0.177227,0.16828,0.959794,0.46043,0.561305,0.642477,0.683991,0.734898,0.822856,0.704173,0.299929,0.33946,0.131522,0.982673,0.268975,0.881525,0.338944,0.181082,0.415444,0.195256,0.539813,0.870053,0.46719,0.881981,0.845979,0.452949,0.634306,0.318636,0.323792,0.139183,0.783511,0.216937,0.545046,0.536931,0.650436,0.318944,0.314892,0.849661,0.123923,0.543233,0.918659,0.703799,0.385298,0.55191,0.187968,0.352136,0.181649,0.0834275,0.854338,0.0842431,0.0854397,0.321281,0.229859,0.475945,0.189275,0.354487,0.0249529,0.565558,0.343728,0.828625,0.879853,0.570971,0.907332,0.766417,0.373642,0.866123,0.520285,0.315321,0.73914,0.908084,0.580682,0.50559,0.366567,0.813425,0.76767,0.822016,0.674203,0.37564,0.0392436,0.0261475,0.170057,0.977375,0.500034,0.920976,0.896375,0.53267,0.10172,0.108176,0.0827416,0.986909,0.824993,0.2162,0.314111,0.207292,0.604121,0.169208,0.62107,0.922819,0.261407,0.522716,0.135002,0.438712,0.855117,0.0688521,0.0137668,0.814526,0.523091,0.801643,0.204882,0.0376211,0.397027,0.61152,0.168439,0.256749,0.40051,0.337853,0.0247791,0.704974,0.347267,0.614603,0.723735,0.59252,0.896288,0.363097,0.0369317,0.914043,0.392485,0.319039,0.562275,0.99046,0.356909,0.21443,0.400433,0.618497,0.562075,0.581277,0.974492,0.283979,0.593748,0.832029,0.468958,0.440245,0.0788355,0.843391,0.440387,0.888614,0.71014,0.943152,0.840158,0.0542049,0.69142,0.825079,0.388028,0.00153291,0.853256,0.141067,0.496022,0.616979,0.140589,0.241418,0.544879,0.701676,0.817798,0.705287,0.179324,0.979301,0.0233187,0.85148,0.332837,0.972538,0.0355769,0.848163,0.508771,0.440441,0.0488124,0.945655,0.917018,0.685504,0.61554,0.378382,0.603337,0.505559,0.0419831,0.414278,0.794327,0.233776,0.0075199,0.76465,0.169758,0.707645,0.700379,0.177096,0.902862,0.99274,0.595516,0.0437291,0.847763,0.596628,0.870119,0.61772,0.268703,0.295533,0.75503,0.618749,0.516802,0.874572,0.910917,0.811848,0.29891,0.373248,0.718078,0.946886,0.383985,0.288772,0.487422,0.0967292,0.302723,0.20478,0.777586,0.499782,0.348681,0.481746,0.950945,0.886259,0.445824,0.560105,0.593681,0.859225,0.656666,0.578503,0.613423,0.399403,0.645232,0.267413,0.521403,0.308957,0.179635,0.642955,0.389237,0.633771,0.335833,0.425561,0.441517,0.916902,0.760548,0.432974,0.783511,0.720451,0.175008,0.309534,0.645956,0.706331,0.648129,0.28245,0.0155509,0.85151,0.275199,0.489522,0.859476,0.434206,0.538613,0.696776,0.285633,0.367626,0.540161,0.800769,0.580159,0.93975,0.746397,0.242686,0.932996,0.962506,0.484416,0.50251,0.62058,0.972338,0.647209,0.529529,0.254552,0.456161,0.678953,0.34464,0.420106,0.301819,0.885929,0.756056,0.562101,0.806731,0.582683,0.808844,0.528633,0.945049,0.522041,0.0653755,0.536615,0.895638,0.733972,0.881473,0.326075,0.0817199,0.00128162,0.249846,0.996223,0.252397,0.42034,0.874472,0.971331,0.0783941,0.492465,0.598795,0.821591,0.724733,0.896261,0.96329,0.883693,0.462866,0.614062,0.39569,0.791603,0.417731,0.637417,0.0589464,0.504178,0.59336,0.535495,0.852906,0.358005,0.927876,0.194708,0.352665,0.0931399,0.882156,0.66065,0.928344,0.601786,0.749076,0.836894,0.382932,0.730871,0.599977,0.851035,0.952665,0.0355206,0.182891,0.28807,0.202012,0.404017,0.388096,0.0236848,0.288371,0.456274,0.305357,0.123548,0.670605,0.951792,0.71252,0.208151,0.611409,0.796208,0.912018,0.360081,0.048313,0.896869,0.00584817,0.59106,0.931272,0.0332402,0.120028,0.0825717,0.419386,|0.0431395,0.955771,0.914299,0.34479,0.194798,0.449075,0.675815,0.818944,0.540714,0.0012176,0.97406,0.144619,0.191583,0.521069,0.0566778,0.773516,0.51493,0.718902,0.512943,0.650296,0.579334,0.802448,0.567263,0.167146,0.928327,0.534217,0.680959,0.814686,0.220884,0.263108,0.90946,0.556133,0.560935,0.978866,0.850248,0.24433,0.165823,0.982897,0.290377,0.708205,0.136191,0.763171,0.30725,0.689528,0.163754,0.968911,0.283167,0.381064,0.299508,0.716749,0.620698,0.419744,0.720673,0.649179,0.642607,0.445818,0.795057,0.281428,0.576693,0.255549,0.953941,0.979228,0.748377,0.337807,0.0262675,0.184841,0.503076,0.343212,0.390221,0.955289,0.649545,0.42061,0.150515,0.418019,0.126927,0.928681,0.0139787,0.393799,0.478678,0.315604,0.38871,0.936486,0.741219,0.725559,0.887301,0.761465,0.603792,0.351381,0.454386,0.120692,0.914454,0.780519,0.315294,0.719509,0.920614,0.675572,0.698755,0.307016,0.464296,0.422736,0.952687,0.10129,0.408001,0.34683,0.0890718,0.0666533,0.00201559,0.232739,0.949033,0.835689,0.536083,0.708928,0.20039,0.976786,0.103466,0.548755,0.439343,0.85333,0.7986,0.688895,0.0411938,0.805335,0.54442,0.805173,0.613092,0.921875,0.74567,0.311792,0.395826,0.754856,0.761132,0.716497,0.87228,0.483551,0.301013,0.372114,0.510644,0.091386,0.744155,0.823137,0.442189,0.444439,0.128636,0.97347,0.256024,0.88358,0.547697,0.983553,0.39725,0.388438,0.387043,0.681637,0.331308,0.737703,0.967503,0.275795,0.18081,0.753366,0.378988,0.646141,0.239142,0.794593,0.652995,0.649694,0.0239076,0.924258,0.54045,0.12485,0.834687,0.148992,0.888915,0.997832,0.946896,0.611898,0.327261,0.04031,0.448016,0.776534,0.882383,0.394007,0.121929,0.0107132,0.99356,0.179177,0.70449,0.23119,0.466088,0.680455,0.949631,0.369991,0.151719,0.837407,0.695356,0.832471,0.968903,0.0346885,0.590853,0.553422,0.895108,0.658389,0.378876,0.544452,0.231992,0.196584,0.652744,0.930165,0.0309428,0.0445096,0.227368,0.154312,0.660526,0.252341,0.557857,0.0372443,0.737483,0.382573,0.141706,0.340999,0.508978,0.492751,0.837155,0.174899,0.406879,0.830112,0.434745,0.562242,0.330811,0.519584,0.82656,0.402187,0.39832,0.214489,0.623073,0.810431,0.210001,0.551952,0.0468931,0.255608,0.879521,0.0946333,0.182195,0.370827,0.688187,0.987342,0.15177,0.685502,0.38315,0.0473177,0.150062,0.519346,0.751971,0.475512,0.169768,0.0347765,0.176732,0.494606,0.64798,0.911662,0.929221,0.811887,0.568467,0.550591,0.325076,0.254375,0.0566342,0.13708,0.782396,0.893037,0.887289,0.111401,0.570678,0.224666,0.779939,0.518592,0.886872,0.53425,0.837578,0.41979,0.82277,0.869773,0.690003,0.9243,0.719028,0.0584313,0.630321,0.937116,0.925541,0.826091,0.108517,0.0169791,0.211448,0.0349679,0.778771,0.724654,0.742006,0.516799,0.57161,0.155127,0.989092,0.250807,0.583037,0.184835,0.576403,0.868888,0.28475,0.973557,0.498591,0.482545,0.979079,0.662019,0.534871,0.841986,0.894034,0.856739,0.0524913,0.671612,0.782649,0.15754,0.396266,0.893881,0.99259,0.264784,0.553365,0.329826,0.552181,0.262375,0.310861,0.452021,0.98521,0.279128,0.381922,0.963386,0.399402,0.16399,0.96898,0.773812,0.938786,0.321314,0.703243,0.273606,0.963,0.61154,0.271465,0.88427,0.894682,0.577975,0.721715,0.608177,0.597602,0.772611,0.98145,0.614349,0.151216,0.0092482,0.920063,0.679511,0.564885,0.969496,0.334453,0.153372,0.0313268,0.266999,0.241146,0.743472,0.51541,0.815832,0.646462,0.545995,0.649854,0.58181,0.456928,0.706037,0.885693,0.967243,0.53415,0.448131,0.601199,0.898323,0.00137597,0.695219,0.758668,0.270304,0.771664,0.243964,0.371825,0.824147,0.316183,0.530567,0.137507,0.30552,0.029219,0.284052,0.562772,0.052995,0.945034,0.889445,0.283784,0.058198,0.708503,0.708916,0.85485,0.583219,0.737107,0.109366,0.233532,0.690838,0.353548,0.999014,0.607457,0.942716,0.280589,0.173022,0.898298,0.674753,0.806773,0.143294,0.319398,0.998621,0.736725,0.396875,0.187802,0.144369,0.0707217,0.493611,0.564892,0.769573,0.595233,0.242663,0.600648,0.577563,0.271015,0.39716,0.135316,0.499959,0.067221,0.50007,0.700536,0.803592,0.273988,0.640039,0.520388,0.536221,0.236596,0.850546,0.373286,0.966077,0.518272,0.840447,0.0657302,0.486406,0.0377321,0.191964,0.921711,0.544501,0.98156,0.537159,0.294898,0.281087,0.162328,0.488414,0.370486,0.630259,0.246449,0.568536,0.574582,0.796811,0.0925798,0.928071,0.384379,0.477003,0.693213,0.464774,0.388367,0.875651,0.758141,0.827091,0.290419,0.860185,0.442422,0.864498,0.317609,0.257755,0.546779,0.625577,0.775983,0.227392,0.36457,0.983083,0.834345,0.014922,0.546196,0.250546,0.714857,0.648115,0.296766,0.8874,0.296136,0.214735,0.887444,0.508474,0.679784,0.746285,0.0102586,0.587558,0.440878,0.908087,0.052452,0.758608,0.394084,0.0843493,0.775043,0.441159,0.100096,0.421199,0.246448,0.515851,0.52573,0.402828,0.319186,0.766155,0.969765,0.850947,0.797431,0.0709529,0.0662656,0.368572,0.136845,0.814958,0.513404,0.894295,0.569206,0.696679,0.978805,0.0496481,0.72396,0.344485,0.356615,0.572112,0.119981,0.232625,0.611025,0.0964673,0.61663,0.637526,0.274834,0.707944,0.313112,0.666506,0.515798,0.984602,0.971237,0.719615,0.0971597,0.898951,0.732409,0.463084,0.183145,0.363721,0.0906533,0.874992,0.87726,0.0129691,0.353853,0.596912,0.619329,0.989589,0.187894,0.853135,0.185622,0.539172,0.656182,0.470726,0.433002,0.707685,0.846185,0.60081,0.146237,0.798936,0.123808,0.213554,0.764513,0.124223,0.434737,0.104357,0.389316,0.535088,0.661542,0.275287,0.755012,0.72721,0.823647,0.038149,0.472553,0.278406,0.152268,0.789429,0.911936,0.696728,0.906119,0.555189,0.671426,0.807882,0.247686,0.933515,0.726088,0.771386,0.119102,0.00344759,0.0341747,0.0870945,0.719002,0.994577,0.408027,0.489035,0.557234,0.753564,0.0704939,0.713798,0.234337,0.14761,0.300981,0.16946,0.196584,0.632821,0.315844,0.103793,0.809326,0.180388,0.953594,0.198397,0.870216,0.526153,0.519794,0.553418,0.75629,0.759475,0.438339,0.477528,0.0924386,0.195376,0.310929,0.0176398,0.639943,0.0670685,0.41413,0.493367,0.941516,0.250997,0.490194,0.124034,0.636861,0.150082,0.986714,0.594755,0.769666,0.241819,0.405903,0.895221,0.924344,0.606871,0.484066,0.49697,0.426786,0.721613,0.502762,0.736205,0.31193,0.74783,0.430622,0.59965,0.259272,0.896851,0.63899,0.436958,0.633801,0.0189292,0.394526,0.321082,0.881375,0.00506938,0.00953215,0.849114,0.820352,0.0679235,0.163378,0.392603,0.927309,0.656527,0.186452,0.0603384,0.283527,0.677709,0.856072,0.819559,0.0436569,0.275732,0.331081,0.430373,0.2037,0.796563,0.365114,0.656703,0.0300941,0.566411,0.228661,0.392986,0.399418,0.438671,0.864717,0.247473,0.264319,0.984042,0.594381,0.021238,0.544114,0.587286,0.902307,0.292544,0.814815,0.825418,0.187389,0.925895,0.195321,0.779464,0.0443268,0.899737,0.627275,0.784464,0.606367,0.689312,0.976939,0.896528,0.0485657,0.00583744,0.759995,0.1688,0.488098,0.037513,0.152098,0.261779,0.398098,0.569061,0.350143,0.698714,0.861061,0.791812,0.719132,0.684771,0.412274,0.235467,0.300574,0.0508898,0.753793,0.0205088,0.521523,0.587845,0.998168,0.0976394,0.88292,0.249739,0.149894,0.293606,0.174163,0.0218942,0.350362,0.372254,0.689605,0.674357,0.224016,0.144207,0.905075,0.842371,0.950189,0.292866,0.957519,0.54915,0.584777,0.270418,0.642313,0.631325,0.372472,0.392472,0.973062,0.693616,0.902662,0.919576,0.758301,0.424527,0.157052,0.887712,0.258081,0.169489,0.167896,0.204517,0.0835331,0.883572,0.998944,0.803341,0.86441,0.867756,0.195052,0.94693,0.84659,0.107347,0.814976,0.315531,0.620515,0.919932,0.189901,0.442337,0.403211,0.842412,0.466511,0.654122,0.594773,0.152526,0.810662,0.471968,0.44874,0.627359,0.834199,0.283125,0.169097,0.205085,0.86648,0.83973,0.162452,0.344731,0.114934,0.482758,0.972045,0.00387144,0.218413,0.840782,0.438405,0.386029,0.959786,0.949187,0.0702072,0.230442,0.86972,0.402309,0.0065906,0.0118986,0.0817044,0.0784499,0.422316,0.0772084,0.665695,0.855976,0.330885,0.161147,0.272664,0.781042,0.909003,0.0278468,0.114207,0.0930354,0.412643,0.982507,0.447053,0.515898,0.342117,0.599193,0.145324,0.140405,0.616249,0.166977,0.204942,0.3193,0.88232,0.877187,0.553887,0.661736,0.303671,0.915109,0.839443,0.860193,0.48355,0.530591,0.087912,0.304228,0.64972,0.400842,0.36448,0.148979,0.31089,0.871692,0.74595,0.0814489,0.0701147,0.801839,0.597083,0.620302,0.621147,0.134478,0.123946,0.953958,0.316634,0.739772,0.251268,0.758889,0.938439,0.498906,0.757852,0.582054,0.437069,0.91227,0.600757,0.00468034,0.191977,0.447903,0.75682,0.718571,0.366048,0.657564,0.300603,0.304193,0.786262,0.112793,0.535838,0.440151,0.322891,0.68096,0.395252,0.0921037,0.274647,0.0759406,0.0340924,0.505168,0.508837,0.837865,0.895041,0.7774,0.512955,0.536307,0.0936671,0.639214,0.456215,0.631612,0.771124,0.334424,0.712917,0.199541,0.0432674,0.0369958,0.80515,0.0599126,0.938247,0.187843,0.419691,0.895878,0.43753,0.6425,0.25034,0.53629,0.824735,0.741989,0.703392,0.722577,0.864919,0.284778,0.891459,0.516144,0.769716,0.93291,0.274064,0.435781,0.170347,0.989454,0.738825,0.637816,0.0144056,0.221037,0.973816,0.16588,0.616551,0.402811,0.613753,0.139904,0.162294,0.340286,0.717688,0.088448,0.323868,0.551046,0.952814,0.125335,0.94889,0.136384,0.331053,0.764901,0.995301,0.965048,0.000217021,0.943388,0.402679,0.712537,0.693732,0.577069,|0.6069,0.499248,0.269183,0.751705,0.422464,0.169959,0.183434,0.238415,0.972567,0.981923,0.514975,0.216346,0.0173721,0.127616,0.0150407,0.921869,0.457441,0.143535,0.181283,0.208926,0.581684,0.0272818,0.0119859,0.172636,0.610942,0.883961,0.670524,0.0877783,0.229564,0.945849,0.0372321,0.369342,0.564284,0.655386,0.381511,0.677415,0.0180507,0.344555,0.74062,0.270671,0.465863,0.165562,0.533856,0.11151,0.834791,0.387216,0.970489,0.416342,0.8537,0.735747,0.936959,0.563764,0.309493,0.779799,0.780008,0.613099,0.198935,0.718027,0.167987,0.0393419,0.785266,0.970029,0.31909,0.439439,0.944592,0.120804,0.311406,0.190153,0.0284089,0.664948,0.853171,0.241022,0.204587,0.524282,0.907538,0.696779,0.959219,0.369673,0.290338,0.784429,0.950139,0.603099,0.711644,0.354776,0.757284,0.280321,0.245033,0.522815,0.289911,0.908257,0.855861,0.317743,0.0760885,0.80684,0.212314,0.608586,0.359403,0.0628977,0.0839093,0.606671,0.88243,0.880609,0.701832,0.53609,0.186064,0.794458,0.678273,0.612139,0.244653,0.244305,0.185803,0.720197,0.661778,0.794096,0.479405,0.326453,0.724815,0.0335637,0.000206709,0.54613,0.0435336,0.0530198,0.160539,0.62863,0.998817,0.884985,0.540104,0.456699,0.598375,0.00202101,0.148685,0.581454,0.415705,0.823117,0.0508135,0.195706,0.0708987,0.357609,0.401516,0.130224,0.940358,0.788102,0.167044,0.316869,0.854791,0.878314,0.627973,0.504349,0.685909,0.731832,0.792597,0.125026,0.595872,0.658332,0.537983,0.569434,0.00947917,0.810107,0.37808,0.250992,0.634574,0.324863,0.537396,0.9032,0.671339,0.0417375,0.299188,0.594753,0.190576,0.433266,0.906974,0.7958,0.0712899,0.697402,0.709928,0.706189,0.447096,0.0913642,0.247429,0.829416,0.182641,0.674132,0.424094,0.0165922,0.730305,0.420696,0.370065,0.350739,0.0304096,0.37112,0.815036,0.12994,0.103505,0.456629,0.22334,0.144695,0.643282,0.528568,0.420735,0.685579,0.735169,0.962185,0.102261,0.187223,0.150408,0.789124,0.463009,0.835917,0.345002,0.936438,0.345567,0.334987,0.248039,0.471676,0.850346,0.302174,0.89837,0.729477,0.0671671,0.943101,0.604178,0.726641,0.814853,0.860635,0.999143,0.122762,0.54721,0.332397,0.0346924,0.985963,0.551918,0.234829,0.192735,0.827657,0.864867,0.381785,0.515704,0.344038,0.983127,0.947754,0.550548,0.29305,0.359357,0.0975802,0.734471,0.812901,0.546674,0.888115,0.701991,0.503102,0.607654,0.980264,0.155361,0.440664,0.637348,0.0804929,0.117928,0.351084,0.160309,0.226236,0.992919,0.201832,0.228467,0.176604,0.902842,0.113334,0.303508,0.978572,0.482091,0.195728,0.651716,0.233327,0.464831,0.520584,0.884336,0.535498,0.724217,0.838837,0.941717,0.783084,0.378464,0.688602,0.197315,0.508617,0.709235,0.927279,0.190191,0.664616,0.326524,0.844501,0.0220209,0.702151,0.649935,0.285194,0.729289,0.807333,0.548502,0.211845,0.296608,0.359876,0.994591,0.551976,0.0253226,0.628684,0.637007,0.798016,0.792219,0.357302,0.47717,0.257064,0.328224,0.789839,0.569026,0.366799,0.485246,0.904911,0.846839,0.0102798,0.792111,0.628063,0.613613,0.653529,0.871154,0.415091,0.161073,0.364529,0.555418,0.601628,0.739406,0.550575,0.30494,0.0945494,0.262032,0.535125,0.252949,0.994641,0.112747,0.57199,0.591444,0.664228,0.299232,0.325767,0.117917,0.440378,0.847002,0.055944,0.609136,0.180688,0.837674,0.864884,0.448621,0.931396,0.529703,0.925666,0.930571,0.586237,0.82931,0.323985,0.155964,0.656679,0.402058,0.263711,0.195852,0.418814,0.744802,0.928833,0.468499,0.255099,0.29932,0.759603,0.715186,0.800242,0.662371,0.961971,0.692598,0.780909,0.240556,0.218789,0.297264,0.573026,0.921151,0.501026,0.535073,0.851263,0.545852,0.813021,0.0721411,0.950129,0.214241,0.574871,0.125006,0.426561,0.0609665,0.449348,0.774885,0.0368121,0.34772,0.0708608,0.0176488,0.450257,0.960536,0.0562124,0.656305,0.618042,0.188861,0.21507,0.60893,0.653566,0.904384,0.47864,0.701471,0.779003,0.752429,0.578248,0.418756,0.657868,0.0146147,0.948488,0.444276,0.549108,0.454873,0.443985,0.205308,0.728222,0.242885,0.85919,0.84748,0.110882,0.69628,0.209533,0.864587,0.293098,0.998726,0.302364,0.964044,0.599002,0.0365672,0.384265,0.18806,0.895704,0.1679,0.119467,0.102444,0.434834,0.883887,0.702385,0.81609,0.369543,0.298066,0.0892563,0.153288,0.247293,0.0128023,0.383272,0.416616,0.763783,0.0899767,0.874892,0.235571,0.632479,0.183081,0.221747,0.540151,0.90009,0.128503,0.304087,0.5835,0.99264,0.241872,0.692911,0.324455,0.249902,0.930595,0.827736,0.710569,0.94092,0.775532,0.746523,0.537253,0.922714,0.401806,0.475074,0.306686,0.25005,0.637271,0.340287,0.479183,0.136752,0.72512,0.569186,0.910852,0.317625,0.554347,0.701779,0.687178,0.768741,0.0771317,0.288069,0.73298,0.272545,0.0976834,0.187074,0.160464,0.145731,0.395063,0.92436,0.11219,0.107738,0.038004,0.845547,0.734354,0.630183,0.218593,0.0667717,0.780289,0.168103,0.559833,0.91443,0.915479,0.480166,0.47095,0.849661,0.224375,0.782318,0.39234,0.292869,0.279555,0.26693,0.0796026,0.179394,0.821062,0.416421,0.70903,0.470995,0.639901,0.902229,0.702054,0.63746,0.859498,0.689421,0.973817,0.487157,0.955747,0.577084,0.340284,0.839967,0.0154989,0.0945815,0.0782877,0.876163,0.0684648,0.774274,0.717315,0.821458,0.437084,0.353379,0.519723,0.60343,0.397639,0.75545,0.752811,0.239275,0.76156,0.406627,0.0910392,0.269358,0.348843,0.708999,0.598533,0.370717,0.60496,0.863765,0.125412,0.895465,0.0210941,0.533055,0.353223,0.0896819,0.614787,0.0494994,0.745796,0.667775,0.166973,0.132108,0.718192,0.164434,0.883638,0.797528,0.469665,0.787376,0.06486,0.44266,0.96166,0.421664,0.346758,0.353032,0.231521,0.205006,0.67003,0.356678,0.290907,0.421499,0.173729,0.311345,0.0600499,0.851173,0.413336,0.124925,0.795476,0.708296,0.982951,0.870376,0.49995,0.374835,0.0542139,0.952885,0.874671,0.346777,0.384674,0.892764,0.432638,0.394354,0.655838,0.487709,0.393117,0.426175,0.0476405,0.714397,0.395958,0.585295,0.818768,0.427853,0.727148,0.131445,0.663685,0.367522,0.852491,0.952024,0.530209,0.892697,0.17144,0.00157499,0.370605,0.0824893,0.0342879,0.792371,0.773962,0.961924,0.422191,0.744962,6.65188e-05,0.964735,0.556158,0.0321403,0.490511,0.0706964,0.0962877,0.726129,0.827542,0.0873602,0.246974,0.922919,0.165238,0.58377,0.838614,0.13202,0.0405697,0.760061,0.419844,0.115191,0.59952,0.136512,0.98854,0.12486,0.962478,0.505032,0.973585,0.423033,0.875545,0.311,0.402883,0.868091,0.0611496,0.954923,0.00908041,0.929938,0.00731385,0.959072,0.0462428,0.855186,0.263567,0.803507,0.539815,0.424674,0.61526,0.956464,0.802907,0.663632,0.147997,0.405925,0.584111,0.312513,0.417982,0.68041,0.918823,0.525327,0.92893,0.683131,0.75839,0.859574,0.736385,0.453486,0.192329,0.446586,0.405543,0.575809,0.748267,0.698339,0.856415,0.132889,0.52802,0.598397,0.608468,0.302423,0.48472,0.123116,0.13617,0.438318,0.973895,0.0400637,0.7755,0.289132,0.0174742,0.299104,0.290096,0.643155,0.933181,0.643395,0.817534,0.815882,0.597467,0.160143,0.767675,0.327745,0.269989,0.710877,0.833104,0.766988,0.461325,0.223172,0.192991,0.371457,0.94371,0.82553,0.914587,0.0495294,0.0565982,0.944942,0.727598,0.997654,0.935993,0.832793,0.0764508,0.00241458,0.667167,0.933817,0.0523,0.706965,0.465759,0.988986,0.20499,0.850588,0.60255,0.745616,0.789419,0.362412,0.837744,0.263314,0.250661,0.154824,0.507313,0.698905,0.350455,0.271205,0.0162349,0.899304,0.380396,0.696254,0.263555,0.102397,0.150373,0.127834,0.602556,0.210889,0.0453414,0.435288,0.231163,0.700544,0.783454,0.905064,0.89739,0.610708,0.0130098,0.466682,0.207336,0.267282,0.350016,0.826167,0.531031,0.331425,0.91094,0.469964,0.154873,0.177635,0.247652,0.380481,0.54444,0.316654,0.122593,0.999546,0.857824,0.460127,0.83332,0.139229,0.675457,0.751342,0.700221,0.804108,0.872114,0.0561009,0.794257,0.692543,0.629654,0.140806,0.242164,0.449455,0.66002,0.968407,0.105277,0.734223,0.375398,0.0666954,0.885144,0.614909,0.380336,0.862925,0.51778,0.520012,0.309866,0.193115,0.0399632,0.0300754,0.373055,0.536558,0.412348,0.8091,0.375992,0.0099082,0.942643,0.34168,0.360793,0.101108,0.291568,0.189769,0.103144,0.307199,0.96422,0.761146,0.518545,0.38901,0.233805,0.36036,0.211918,0.942585,0.426827,0.412383,0.9371,0.956884,0.673483,0.955364,0.312719,0.470269,0.901252,0.715016,0.786135,0.917125,0.257926,0.674535,0.451037,0.350282,0.250347,0.984462,0.183842,0.721642,0.0305073,0.111944,0.234766,0.00557595,0.853532,0.970262,0.375774,0.576336,0.55447,0.282664,0.686212,0.972582,0.353294,0.98428,0.404635,0.345867,0.800706,0.0765831,0.647851,0.180799,0.146962,0.829821,0.18255,0.537138,0.153951,0.506376,0.9663,0.896244,0.999348,0.0172926,0.801724,0.910634,0.74551,0.022791,0.473108,0.641581,0.489761,0.628888,0.906364,0.363504,0.00101233,0.617813,0.704617,0.251228,0.959723,0.708446,0.617264,0.491254,0.434069,0.446778,0.856627,0.660459,0.129739,0.401884,0.217449,0.440493,0.879131,0.222324,0.315338,0.555153,0.935789,0.330715,0.743543,0.316736,0.936003,0.884107,0.395409,0.214585,0.475649,0.799999,0.77679,0.901231,0.570614,0.145569,0.377483,0.0711958,0.418627,0.162831,0.807831,0.575316,0.906317,0.785564,0.034857,0.298074,0.879465,0.481281,0.446848,0.300075,0.441188,0.333525,0.554598,0.659776,0.47086,0.120916,0.0477582,0.310162,0.41655,0.441425,0.901441,0.149065,0.0035789,0.375498,0.976859,0.627452,0.117344,0.25704,|0.0578168,0.485472,0.878634,0.269599,0.0813234,0.0483201,0.40673,0.681062,0.93831,0.903637,0.78872,0.359844,0.552698,0.647824,0.711225,0.832045,0.440845,0.454544,0.0371994,0.576603,0.585106,0.790231,0.377962,0.212797,0.78989,0.274861,0.0389749,0.571087,0.476149,0.0591947,0.753023,0.806616,0.558913,0.552857,0.29703,0.217737,0.127703,0.883718,0.82327,0.0858415,0.905292,0.345074,0.677926,0.806304,0.0656588,0.316804,0.222391,0.784352,0.833248,0.840349,0.566694,0.0131564,0.472312,0.569858,0.156149,0.0792718,0.311121,0.446195,0.830491,0.0725449,0.234776,0.593937,0.506638,0.381795,0.303128,0.907634,0.860478,0.492857,0.0139567,0.26165,0.942215,0.124572,0.369284,0.980648,0.821934,0.844442,0.926524,0.813702,0.678366,0.853705,0.771708,0.89074,0.323964,0.91014,0.545187,0.0410743,0.74033,0.970071,0.498374,0.15985,0.878067,0.842672,0.287753,0.880884,0.98388,0.646633,0.475686,0.0701169,0.885828,0.542172,0.0130588,0.040712,0.676623,0.308362,0.513554,0.822173,0.694938,0.829657,0.414091,0.0762372,0.0313578,0.963441,0.461291,0.969381,0.357546,0.948177,0.573519,0.313109,0.926584,0.316264,0.919519,0.777719,0.619219,0.886689,0.0687512,0.308966,0.837457,0.579448,0.298692,0.381757,0.484918,0.114756,0.814563,0.628698,0.128619,0.791352,0.64187,0.679714,0.803003,0.512647,0.423714,0.274279,0.218276,0.705668,0.215263,0.817053,0.845067,0.528181,0.661234,0.401547,0.872515,0.242157,0.906058,0.841864,0.0837206,0.0461553,0.784335,0.500994,0.209625,0.793469,0.136912,0.227534,0.253245,0.648039,0.506105,0.691538,0.307729,0.283697,0.90708,0.774769,0.975864,0.897741,0.71408,0.353979,0.781709,0.0798415,0.557072,0.208862,0.0700489,0.8915,0.700711,0.507958,0.638024,0.607143,0.875848,0.079842,0.833475,0.809417,0.661715,0.172082,0.471497,0.631072,0.962579,0.526825,0.884194,0.120141,0.166745,0.057865,0.121398,0.890535,0.983434,0.468513,0.200781,0.421178,0.474628,0.768502,0.83406,0.966328,0.0329998,0.722917,0.147384,0.12617,0.0887182,0.948787,0.968128,0.753872,0.479771,0.883271,0.711625,0.194882,0.805121,0.310944,0.620207,0.126941,0.782189,0.0497043,0.506955,0.980765,0.158719,0.0689986,0.286616,0.155652,0.448858,0.717624,0.130328,0.441905,0.31913,0.980088,0.825792,0.747835,0.79893,0.821261,0.0566718,0.247835,0.271929,0.884725,0.687465,0.909854,0.211147,0.118033,0.901023,0.0299773,0.556385,0.659235,0.592409,0.40609,0.42917,0.202311,0.441224,0.101513,0.942461,0.524653,0.11148,0.314372,0.227513,0.401767,0.204795,0.716455,0.953291,0.517159,0.730977,0.531435,0.148224,0.087904,0.732556,0.0325194,0.780132,0.390484,0.874256,0.352715,0.953815,0.876549,0.972107,0.766126,0.948686,0.652584,0.601051,0.0731671,0.729706,0.390504,0.34766,0.379129,0.393187,0.581006,0.390861,0.284317,0.127086,0.845495,0.0341277,0.665099,0.489612,0.0543162,0.600922,0.577348,0.700116,0.208829,0.228714,0.941362,0.292145,0.427404,0.834667,0.0251001,0.321998,0.485473,0.0238991,0.893663,0.835136,0.831117,0.934119,0.880546,0.970491,0.565454,0.533584,0.752871,0.539373,0.906025,0.122031,0.674277,0.120933,0.934782,0.331327,0.0895308,0.167684,0.278504,0.459185,0.334355,0.827714,0.519413,0.900545,0.995182,0.7447,0.52568,0.579642,0.647639,0.997151,0.471938,0.665264,0.928926,0.414752,0.756708,0.833635,0.898237,0.687832,0.266169,0.19391,0.255419,0.269297,0.70601,0.698682,0.692324,0.541149,0.415666,0.151186,0.969276,0.96423,0.749938,0.700026,0.669474,0.99923,0.647653,0.318278,0.429979,0.721447,0.66869,0.600364,0.51577,0.293084,0.127306,0.496854,0.508777,0.775571,0.282097,0.951327,0.365086,0.0443683,0.428376,0.585222,0.89009,0.261546,0.759558,0.641502,0.15457,0.61097,0.606441,0.930252,0.591267,0.781993,0.937908,0.619433,0.198779,0.73406,0.486834,0.660232,0.0752701,0.67063,0.984288,0.853225,0.196048,0.90627,0.218017,0.643298,0.0217913,0.245169,0.403471,0.358599,0.00848222,0.311032,0.627339,0.65869,0.323835,0.401781,0.992841,0.788214,0.180666,0.967192,0.867641,0.194098,0.0183501,0.119918,0.432782,0.210531,0.225587,0.0459071,0.199941,0.358719,0.0771155,0.978474,0.175475,0.0840008,0.614582,0.420212,0.427033,0.496791,0.127167,0.60713,0.363128,0.43367,0.627824,0.253387,0.12677,0.925357,0.31607,0.975174,0.293984,0.511953,0.352343,0.678012,0.282481,0.73861,0.602355,0.653297,0.701149,0.772447,0.417587,0.193869,0.982537,0.0414641,0.641081,0.0931425,0.542138,0.38292,0.432698,0.047356,0.695831,0.998111,0.372417,0.853805,0.328155,0.789031,0.30235,0.0540504,0.829904,0.79987,0.285887,0.146306,0.620893,0.849866,0.0519532,0.0983356,0.787721,0.482031,0.939083,0.947075,0.941407,0.744056,0.24694,0.709864,0.258688,0.816977,0.203565,0.19957,0.781272,0.745533,0.933429,0.518742,0.243816,0.99618,0.256225,0.00359827,0.124877,0.785999,0.097021,0.721076,0.100319,0.700804,0.426413,0.103731,0.64984,0.707208,0.0313861,0.376355,0.543759,0.990629,0.487352,0.942254,0.126416,0.485491,0.372889,0.708245,0.262583,0.445847,0.427184,0.862113,0.00806844,0.987592,0.310855,0.756817,0.12756,0.656462,0.876302,0.32097,0.77609,0.499945,0.989708,0.829793,0.976563,0.586622,0.274271,0.370372,0.137526,0.970872,0.589467,0.335387,0.0565664,0.44586,0.595662,0.442071,0.585858,0.609644,0.610798,0.166625,0.59486,0.326052,0.0997118,0.0623664,0.0371164,0.10602,0.491658,0.503515,0.441753,0.814691,0.266387,0.145514,0.710832,0.0311424,0.329009,0.0407715,0.882973,0.333407,0.225574,0.144678,0.124573,0.412547,0.613948,0.367919,0.342667,0.811155,0.246887,0.258826,0.444417,0.999497,0.640301,0.961921,0.412985,0.109024,0.919103,0.645535,0.881787,0.498795,0.0877461,0.932904,0.584416,0.292703,0.398094,0.00753289,0.100207,0.759158,0.023307,0.594997,0.561087,0.68732,0.947573,0.674658,0.112455,0.889478,0.138878,0.963495,0.482773,0.0779885,0.352901,0.833429,0.995238,0.132514,0.206009,0.175584,0.256162,0.68294,0.240882,0.58599,0.892431,0.498569,0.806471,0.703488,0.823923,0.0688838,0.289438,0.121658,0.115975,0.683179,0.115644,0.0807901,0.855398,0.409998,0.0509825,0.902025,0.516665,0.843243,0.610388,0.00768238,0.434947,0.42137,0.25375,0.846578,0.956386,0.0912108,0.73636,0.0565864,0.221677,0.22488,0.457204,0.827711,0.0172791,0.698588,0.32348,0.535909,0.710378,0.652582,0.488151,0.336468,0.281757,0.320554,0.603164,0.706678,0.86181,0.445053,0.0562727,0.58736,0.00289309,0.940868,0.780217,0.333512,0.988155,0.847533,0.330617,0.137143,0.47423,0.520017,0.70281,0.450925,0.119432,0.502422,0.110037,0.789211,0.0263486,0.29707,0.331572,0.447083,0.431385,0.699492,0.429763,0.505526,0.031017,0.999559,0.121066,0.180007,0.64339,0.996411,0.402184,0.202315,0.941927,0.628297,0.480169,0.376621,0.913781,0.783187,0.348823,0.564774,0.0511286,0.517565,0.353006,0.910393,0.0340689,0.409041,0.0997827,0.0779964,0.280296,0.290972,0.653022,0.762085,0.906147,0.285066,0.790554,0.475367,0.131631,0.706065,0.570765,0.892447,0.805567,0.675596,0.386447,0.443368,0.70684,0.0349215,0.736565,0.556806,0.398593,0.995543,0.806762,0.140375,0.802957,0.600132,0.520725,0.80505,0.900218,0.138813,0.106192,0.762053,0.0037272,0.775486,0.520151,0.146662,0.710424,0.614331,0.568175,0.448313,0.442019,0.975292,0.853376,0.801849,0.457736,0.268416,0.283002,0.980822,0.906239,0.531603,0.783149,0.0907732,0.266916,0.957954,0.453112,0.251218,0.340117,0.485217,0.0175147,0.69879,0.734373,0.80866,0.720131,0.852404,0.158838,0.870482,0.286797,0.943554,0.953169,0.727526,0.796515,0.953758,0.069754,0.89269,0.630453,0.66653,0.870673,0.805171,0.784274,0.836741,0.539436,0.310352,0.144911,0.981897,0.427706,0.661526,0.500122,0.111532,0.892381,0.821335,0.804452,0.894472,0.616242,0.660025,0.257772,0.586754,0.580284,0.45498,0.202676,0.577929,0.46293,0.159984,0.547333,0.826954,0.115756,0.643707,0.606035,0.126059,0.570598,0.24415,0.816929,0.330326,0.936749,0.838614,0.588182,0.300301,0.181559,0.923274,0.0382291,0.668055,0.30771,0.449156,0.581709,0.0959132,0.597735,0.797134,0.402642,0.600316,0.909842,0.620072,0.494111,0.509061,0.984556,0.763229,0.794903,0.540662,0.552052,0.37911,0.432984,0.812033,0.524765,0.773205,0.0464746,0.503866,0.500312,0.720297,0.314953,0.212293,0.474051,0.49524,0.610148,0.199874,0.158655,0.586931,0.445489,0.46916,0.805678,0.251904,0.1822,0.380048,0.740329,0.949489,0.959943,0.0762691,0.193044,0.656804,0.728015,0.919507,0.821598,0.568143,0.528513,0.271887,0.771372,0.297042,0.287582,0.666952,0.614822,0.900006,0.846354,0.290744,0.955175,0.256919,0.0311978,0.714889,0.963042,0.567794,0.779567,0.817721,0.92346,0.560988,0.813746,0.212794,0.997511,0.461592,0.924346,0.631634,0.680478,0.713898,0.318494,0.242683,0.0614875,0.391212,0.0896173,0.833957,0.867185,0.149686,0.899484,0.962443,0.076616,0.948757,0.965995,0.223803,0.19537,0.451873,0.599536,0.623868,0.69053,0.715575,0.260609,0.790224,0.0377796,0.616264,0.46924,0.67527,0.0700399,0.614657,0.817244,0.221675,0.0674554,0.357535,0.824942,0.528222,0.625692,0.89735,0.570049,0.665206,0.311689,0.803234,0.585658,0.099786,0.890314,0.741682,0.474203,0.0450359,0.893256,0.431476,0.186182,0.824732,0.4508,0.718851,0.990018,0.0177834,0.866074,0.565804,0.644323,0.700865,0.193278,0.0765551,0.758811,0.0594749,0.794309,0.905748,0.698705,0.868843,0.143713,0.950042,0.890723,0.302041,0.855839,0.0243931,0.0133468,0.470379,0.762921,0.697722,0.254649,|0.755693,0.0711975,0.744013,0.762563,0.314229,0.155099,0.0798177,0.935115,0.79806,0.838561,0.267085,0.679256,0.303251,0.860749,0.958824,0.490499,0.929894,0.325511,0.642848,0.589905,0.644693,0.687255,0.96818,0.533299,0.173447,0.472292,0.997433,0.999613,0.37963,0.474291,0.475962,0.359057,0.0293844,0.0517723,0.0218714,0.92519,0.311766,0.658388,0.721386,0.823138,0.892429,0.845754,0.51085,0.126326,0.876395,0.635643,0.46718,0.295888,0.400516,0.148954,0.345036,0.555553,0.376593,0.20387,0.185676,0.0961066,0.702926,0.78375,0.24054,0.213181,0.186279,0.821177,0.956257,0.975693,0.999578,0.758716,0.585637,0.943349,0.236829,0.396534,0.00246614,0.97716,0.689871,0.325857,0.20429,0.732033,0.469395,0.335914,0.476587,0.552633,0.520344,0.941262,0.480006,0.293283,0.0773419,0.276707,0.0404785,0.704832,0.897163,0.990081,0.731138,0.960547,0.103854,0.720795,0.562865,0.142537,0.431974,0.919907,0.258511,0.28528,0.40454,0.975775,0.752235,0.279641,0.485849,0.691048,0.862778,0.470776,0.409775,0.876876,0.855265,0.0629048,0.353318,0.152924,0.54746,0.276231,0.730218,0.840116,0.0493816,0.56117,0.574067,0.0598859,0.507067,0.567788,0.108163,0.0781491,0.446108,0.623279,0.316757,0.797286,0.207922,0.157392,0.627163,0.713417,0.437868,0.570978,0.316499,0.292566,0.652947,0.684728,0.12754,0.562679,0.211153,0.789366,0.577751,0.911608,0.353977,0.859219,0.36127,0.111495,0.893535,0.516774,0.582256,0.702945,0.816645,0.549261,0.568144,0.787732,0.730125,0.324242,0.548798,0.738433,0.634749,0.747055,0.383823,0.339918,0.613053,0.60452,0.0570084,0.347874,0.242,0.950681,0.815229,0.279732,0.583852,0.71366,0.285728,0.850819,0.0365005,0.43257,0.723755,0.383673,0.522078,0.0834768,0.437275,0.0572295,0.341944,0.747451,0.418005,0.0667521,0.530232,0.185162,0.315042,0.509195,0.689497,0.546712,0.412207,0.274791,0.339127,0.811809,0.544107,0.708834,0.25203,0.267476,0.409474,0.598649,0.000130057,0.209423,0.826709,0.3661,0.332171,0.0433022,0.933278,0.552604,0.953391,0.270864,0.497386,0.894375,0.274011,0.0692697,0.627812,0.437727,0.539036,0.324845,0.0491387,0.240173,0.578647,0.463621,0.74592,0.277133,0.496019,0.891995,0.0207779,0.0504736,0.872337,0.50193,0.644872,0.770537,0.150384,0.299031,0.232751,0.504555,0.260028,0.873217,0.762307,0.0123767,0.79707,0.654522,0.556254,0.376277,0.337411,0.805961,0.668136,0.61724,0.873839,0.305806,0.274093,0.123174,0.46057,0.0700142,0.846981,0.408692,0.365723,0.977027,0.218831,0.167862,0.3652,0.134194,0.233505,0.443963,0.836067,0.396678,0.930425,0.394327,0.914107,0.701015,0.100202,0.225975,0.832806,0.210666,0.880343,0.949264,0.485793,0.985551,0.860341,0.0528236,0.689153,0.133206,0.195142,0.24374,0.975809,0.577365,0.28744,0.211262,0.421795,0.646154,0.360981,0.381528,0.669646,0.649136,0.845493,0.0439801,0.12704,0.765024,0.370859,0.747838,0.0725296,0.101416,0.507202,0.721822,0.427021,0.716969,0.0293207,0.791444,0.629964,0.0221804,0.102013,0.664747,0.295043,0.776317,0.116778,0.844177,0.882747,0.00668609,0.24081,0.333404,0.750977,0.0908831,0.903203,0.449039,0.0759469,0.604356,0.231953,0.177987,0.488425,0.32617,0.880402,0.0236496,0.770583,0.710072,0.573034,0.272398,0.323174,0.292326,0.258698,0.393593,0.651386,0.724452,0.0626912,0.891421,0.663746,0.00690711,0.859504,0.683373,0.651871,0.646524,0.377401,0.527122,0.645762,0.51788,0.778674,0.0862159,0.0976561,0.600258,0.757239,0.450439,0.560176,0.838618,0.977472,0.848018,0.597619,0.0753058,0.929821,0.327483,0.427764,0.713081,0.0809412,0.608619,0.270021,0.0291259,0.938608,0.564755,0.254286,0.0331962,0.204516,0.952888,0.720496,0.552526,0.416721,0.0395084,0.154125,0.435757,0.302496,0.751823,0.176724,0.117313,0.189821,0.814714,0.584495,0.867456,0.876294,0.135766,0.456143,0.198627,0.454289,0.200189,0.524805,0.0629112,0.932977,0.758616,0.242313,0.763395,0.951431,0.297699,0.864212,0.778346,0.365498,0.757926,0.392106,0.363804,0.179451,0.103511,0.350951,0.497517,0.868442,0.567208,0.947765,0.37792,0.416706,0.525233,0.832864,0.805929,0.373523,0.0193533,0.464813,0.0801703,0.206444,0.417357,0.458409,0.005198,0.89375,0.218404,0.808218,0.318238,0.511799,0.668279,0.881547,0.0174098,0.946488,0.547919,0.347676,0.798308,0.518019,0.925162,0.357444,0.32039,0.319477,0.532794,0.995423,0.885066,0.631486,0.798987,0.471506,0.864351,0.387526,0.974384,0.731235,0.561958,0.89799,0.796988,0.726825,0.537014,0.670419,0.441495,0.167274,0.281324,0.225175,0.916728,0.840769,0.0205128,0.993831,0.205761,0.205551,0.56447,0.11787,0.480369,0.808476,0.971445,0.822325,0.772,0.198407,0.992483,0.587417,0.397614,0.244835,0.125737,0.399991,0.353922,0.583069,0.283888,0.815783,0.671486,0.453428,0.866972,0.149942,0.352122,0.963463,0.779381,0.716592,0.724024,0.165329,0.967064,0.296447,0.86943,0.872308,0.412155,0.38636,0.247619,0.844428,0.448867,0.390092,0.600465,0.288392,0.296677,0.512202,0.521037,0.462531,0.396872,0.791692,0.742669,0.835089,0.972704,0.816063,0.659062,0.819924,0.43667,0.98192,0.771603,0.154097,0.320502,0.871326,0.512876,0.638583,0.080973,0.523288,0.686644,0.289689,0.314338,0.151983,0.412193,0.238831,0.73052,0.382408,0.686784,0.0595688,0.903875,0.994805,0.0959942,0.861317,0.356912,0.736124,0.635352,0.557611,0.647795,0.99891,0.0842398,0.645833,0.613532,0.629231,0.474448,0.703821,0.575229,0.477415,0.266281,0.245176,0.994141,0.261077,0.890311,0.213038,0.423495,0.944206,0.571158,0.264773,0.918425,0.966979,0.517634,0.119346,0.745165,0.847542,0.817629,0.151098,0.871073,0.191907,0.675909,0.179963,0.115284,0.359265,0.259519,0.195878,0.247787,0.149082,0.189843,0.0439773,0.721341,0.737994,0.711154,0.450414,0.615304,0.0360155,0.781541,0.558188,0.409597,0.0602432,0.276015,0.755594,0.224661,0.718118,0.19784,0.302846,0.322196,0.901498,0.566308,0.0580246,0.228062,0.704365,0.702752,0.563069,0.468433,0.889303,0.440827,0.660682,0.84389,0.529735,0.264641,0.746436,0.474177,0.626517,0.277904,0.288185,0.964176,0.624634,0.0916445,0.126743,0.535245,0.030298,0.908647,0.872425,0.366522,0.0676348,0.867326,0.770996,0.597521,0.526887,0.539798,0.0495499,0.128425,0.663127,0.947845,0.101285,0.290552,0.905522,0.270554,0.919949,0.902315,0.561999,0.688894,0.898396,0.448261,0.951673,0.438437,0.542068,0.937663,0.717117,0.273475,0.180298,0.0722278,0.136277,0.191356,0.537668,0.921919,0.922829,0.843955,0.0341451,0.614171,0.556603,0.235463,0.884005,0.0793663,0.769916,0.456581,0.322281,0.875459,0.397496,0.259016,0.452357,0.798847,0.279748,0.69569,0.954955,0.339293,0.313095,0.306844,0.0115532,0.650026,0.557843,0.916818,0.432197,0.584448,0.62183,0.0593706,0.33577,0.633693,0.621873,0.715115,0.146861,0.945606,0.513471,0.21495,0.264067,0.980554,0.125172,0.501573,0.715031,0.859226,0.791336,0.0219797,0.958152,0.78253,0.374935,0.422932,0.660074,0.013163,0.553634,0.360652,0.113152,0.432774,0.0181154,0.992678,0.678065,0.0352009,0.645068,0.714266,0.127688,0.110898,0.138652,0.120455,0.195108,0.729621,0.596108,0.501415,0.851189,0.386386,0.316795,0.0374765,0.875833,0.565125,0.0734569,0.648697,0.680077,0.0865017,0.248608,0.19068,0.0444635,0.928095,0.874813,0.59869,0.303925,0.542574,0.704127,0.0204322,0.86519,0.0626921,0.67147,0.0252476,0.952786,0.111449,0.812034,0.991657,0.055845,0.682089,0.667735,0.874243,0.92509,0.952268,0.174122,0.170277,0.46291,0.667845,0.0869709,0.103275,0.951281,0.549005,0.754749,0.189196,0.215778,0.828859,0.842278,0.509078,0.919728,0.00741732,0.860879,0.597232,0.0521336,0.533594,0.902745,0.956927,0.670916,0.11451,0.126814,0.504247,0.420462,0.932871,0.952151,0.873597,0.93122,0.57402,0.154064,0.0322039,0.386727,0.0473208,0.342738,0.454729,0.615434,0.839069,0.0550487,0.175962,0.144437,0.976079,0.545904,0.367625,0.318366,0.185441,0.163177,0.131428,0.443194,0.756744,0.564158,0.607659,0.0999629,0.495904,0.709869,0.0234698,0.689011,0.866892,0.829061,0.188367,0.192356,0.636065,0.550412,0.166613,0.365668,0.567322,0.43252,0.628622,0.300549,0.0425355,0.319006,0.416095,0.26727,0.324209,0.42222,0.245533,0.510432,0.524777,0.9122,0.981215,0.0350485,0.908273,0.342221,0.811442,0.707081,0.489903,0.326368,0.414557,0.895255,0.969737,0.711399,0.832026,0.031123,0.868022,0.527348,0.111775,0.865007,0.315577,0.707573,0.226362,0.961031,0.728359,0.158593,0.476083,0.048797,0.284553,0.160206,0.69523,0.878445,0.798395,0.997061,0.493533,0.507644,0.833842,0.744774,0.309432,0.514275,0.257534,0.481282,0.168338,0.0224764,0.857127,0.910958,0.25799,0.704655,0.125224,0.842155,0.773827,0.519915,0.748525,0.508461,0.371161,0.829729,0.0815771,0.0313814,0.832007,0.551177,0.00364935,0.661496,0.626393,0.037063,0.374707,0.248379,0.583577,0.559794,0.122818,0.297223,0.930608,0.97682,0.585975,0.260601,0.97873,0.584845,0.0563328,0.742597,0.980524,0.609179,0.317882,0.648542,0.368997,0.294068,0.43146,0.130267,0.185868,0.937722,0.723987,0.0605854,0.283974,0.182259,0.911532,0.331487,0.305592,0.83228,0.143442,0.0190164,0.574264,0.615375,0.95275,0.973214,0.946909,0.736093,0.534105,0.42766,0.270297,0.826392,0.763227,0.200257,0.920282,0.660647,0.779068,0.125763,0.670129,0.149763,0.679529,0.319093,0.669118,0.364615,0.820238,0.684537,0.148561,0.372257,0.184149,0.518819,0.363975,0.668977,0.892081,0.585625,0.642784,0.387835,0.793396,0.482987,0.178811,0.954168,0.380981,|0.668113,0.446853,0.178744,0.678919,0.417126,0.531174,0.823461,0.795769,0.922432,0.769124,0.518306,0.92513,0.305672,0.421357,0.842722,0.981299,0.337802,0.157366,0.837137,0.884147,0.275702,0.976106,0.0813501,0.291808,0.659992,0.00867009,0.222754,0.612179,0.263987,0.170865,0.214203,0.857386,0.813806,0.895348,0.873486,0.180818,0.652141,0.875661,0.156842,0.638724,0.202079,0.0705688,0.963595,0.924741,0.0379982,0.810248,0.228892,0.268716,0.81961,0.850504,0.886411,0.948833,0.822694,0.936586,0.36866,0.794329,0.301565,0.658254,0.775016,0.681949,0.0647335,0.431803,0.160636,0.890945,0.944951,0.101626,0.678642,0.221764,0.440603,0.557233,0.253432,0.331941,0.856057,0.306376,0.525173,0.142963,0.454693,0.611014,0.399749,0.876509,0.513761,0.849602,0.35786,0.385796,0.414057,0.64436,0.22272,0.777561,0.866648,0.656488,0.523022,0.460477,0.240522,0.661499,0.264668,0.647574,0.919897,0.128717,0.0789281,0.0710002,0.741647,0.448349,0.833961,0.167738,0.909528,0.638843,0.747117,0.139344,0.389629,0.425971,0.999482,0.0634431,0.492688,0.9595,0.802379,0.33991,0.815549,0.940483,0.491259,0.705132,0.644235,0.120223,0.015902,0.989114,0.927566,0.525806,0.340531,0.146831,0.0724891,0.966692,0.787414,0.162531,0.209163,0.473868,0.415404,0.982601,0.19389,0.453705,0.802941,0.551214,0.713795,0.901732,0.20415,0.190243,0.0274395,0.603132,0.847322,0.0108591,0.779184,0.487451,0.720156,0.694218,0.48415,0.909511,0.303582,0.26207,0.67596,0.161336,0.387379,0.337428,0.00233835,0.167247,0.00188941,0.11705,0.640563,0.152201,0.976519,0.926941,0.415258,0.589871,0.798097,0.981599,0.845889,0.874728,0.226466,0.888493,0.801891,0.126029,0.285708,0.709513,0.0192748,0.0773195,0.797034,0.496337,0.895096,0.987599,0.6321,0.543114,0.039998,0.323399,0.474712,0.901525,0.356478,0.712472,0.0874919,0.78125,0.609692,0.37608,0.72256,0.8046,0.665699,0.773638,0.0561965,0.782841,0.174797,0.530713,0.130867,0.501311,0.280006,0.2725,0.773655,0.168533,0.988145,0.60293,0.308891,0.151304,0.642569,0.186611,0.654093,0.916251,0.906426,0.88333,0.603075,0.529201,0.0542153,0.495567,0.204428,0.0228663,0.463403,0.787414,0.462454,0.494168,0.751954,0.803634,0.92969,0.704841,0.291692,0.381974,0.0869309,0.519075,0.772087,0.479609,0.546795,0.181453,0.967545,0.46421,0.294742,0.112535,0.0783861,0.567085,0.393829,0.111052,0.249536,0.448251,0.386257,0.842588,0.277091,0.550911,0.944294,0.364538,0.365501,0.0517362,0.306548,0.59418,0.869643,0.985014,0.375853,0.722122,0.467402,0.247365,0.639093,0.552306,0.0524619,0.173806,0.351042,0.712377,0.91879,0.0443299,0.592552,0.491758,0.165414,0.56056,0.283009,0.165136,0.309633,0.00506383,0.337965,0.580127,0.203169,0.302497,0.152769,0.241788,0.938676,0.822962,0.0462575,0.98146,0.605403,0.751444,0.23176,0.505035,0.562585,0.821009,0.562361,0.108401,0.377608,0.888561,0.139028,0.984684,0.824644,0.765575,0.0529574,0.124548,0.630408,0.978774,0.119741,0.784849,0.810438,0.876945,0.217781,0.703825,0.0453693,0.160472,0.312002,0.046553,0.875775,0.0671467,0.506383,0.384594,0.46538,0.875039,0.381716,0.112126,0.00933963,0.216807,0.550284,0.142077,0.929944,0.0642278,0.517242,0.199901,0.552653,0.524646,0.217276,0.572692,0.0873805,0.932043,0.560512,0.73781,0.387492,0.455865,0.25137,0.108149,0.457758,0.728826,0.292316,0.179938,0.929025,0.558546,0.157871,0.522386,0.463289,0.856611,0.780587,0.533428,0.680045,0.689961,0.213712,0.723483,0.0886049,0.0288032,0.627391,0.284661,0.557604,0.151339,0.759943,0.18514,0.07428,0.641334,0.418509,0.376842,0.411389,0.142657,0.420597,0.315579,0.551067,0.756581,0.852062,0.287987,0.537139,0.797514,0.0898516,0.178909,0.971906,0.674881,0.288385,0.309568,0.292042,0.669451,0.0880113,0.147684,0.550262,0.803123,0.811916,0.894668,0.923131,0.945037,0.96625,0.592836,0.252989,0.191931,0.799497,0.139643,0.745924,0.343821,0.114548,0.105364,0.668697,0.212347,0.893965,0.454748,0.6533,0.687462,0.949968,0.556368,0.600558,0.72933,0.529148,0.725368,0.963709,0.161216,0.83147,0.00992376,0.192777,0.406626,0.83939,0.757676,0.138803,0.675344,0.357052,0.394718,0.66125,0.276494,0.823649,0.0883854,0.81105,0.727935,0.312607,0.602361,0.0192465,0.916583,0.284382,0.164162,0.182232,0.755883,0.909262,0.00823218,0.386951,0.217921,0.51652,0.648686,0.648673,0.0146785,0.660667,0.477234,0.848616,0.603736,0.254264,0.955093,0.213272,0.790862,0.151632,0.902513,0.612684,0.536947,0.0248166,0.896293,0.728991,0.811184,0.977417,0.116805,0.646731,0.801259,0.693365,0.72282,0.472947,0.600201,0.601573,0.797371,0.941586,0.184876,0.848969,0.330976,0.371171,0.972812,0.811216,0.279966,0.0708393,0.412983,0.722992,0.225928,0.0607961,0.0519063,0.15394,0.871839,0.689756,0.339173,0.714837,0.870862,0.819799,0.393609,0.85143,0.0394811,0.487516,0.914816,0.442512,0.741811,0.235525,0.624526,0.377417,0.707719,0.335522,0.366792,0.41779,0.0809377,0.652491,0.484048,0.833711,0.613687,0.549963,0.451974,0.902799,0.84586,0.204321,0.254962,0.363627,0.925466,0.892825,0.54803,0.337173,0.609724,0.914298,0.300043,0.739802,0.098528,0.231446,0.905175,0.476329,0.859924,0.391152,0.079762,0.299036,0.422303,0.499977,0.670065,0.208328,0.917683,0.351524,0.567659,0.816033,0.572851,0.67583,0.777395,0.762681,0.503091,0.35566,0.884508,0.0952445,0.270896,0.24169,0.96448,0.819361,0.737881,0.307513,0.81495,0.355888,0.346168,0.692579,0.403463,0.617371,0.919339,0.65798,0.703458,0.296971,0.717569,0.335314,0.781914,0.106136,0.0763753,0.69486,0.419088,0.969846,0.097831,0.611705,0.586543,0.21488,0.852391,0.593191,0.189273,0.817664,0.681263,0.100822,0.613748,0.124638,0.354589,0.344325,0.601779,0.716734,0.875759,0.242285,0.636785,0.74109,0.16448,0.162611,0.0619888,0.655555,0.281581,0.541365,0.462705,0.210517,0.401384,0.226354,0.00945222,0.688984,0.72468,0.980048,0.165797,0.963428,0.495082,0.114201,0.209604,0.989956,0.524505,0.455139,0.0585595,0.670008,0.738445,0.420598,0.178964,0.67669,0.390202,0.36572,0.562088,0.510662,0.598402,0.0319756,0.466768,0.977111,0.717095,0.327913,0.870984,0.817868,0.991391,0.626305,0.709584,0.0832349,0.772239,0.369385,0.110535,0.359851,0.264945,0.714882,0.186249,0.314291,0.29645,0.245831,0.921421,0.820693,0.279097,0.57565,0.449335,0.985683,0.0640998,0.790115,0.789571,0.483787,0.0613962,0.686322,0.92181,0.918199,0.328755,0.114243,0.919532,0.515943,0.573869,0.0845919,0.700774,0.459005,0.0205975,0.445575,0.381802,0.374352,0.192489,0.3329,0.0395464,0.219176,0.338852,0.427405,0.806805,0.672291,0.0846683,0.841211,0.360891,0.0442557,0.645814,0.218284,0.432704,0.697497,0.0432877,0.804476,0.229678,0.438154,0.4235,0.329755,0.747382,0.0213922,0.482923,0.0429688,0.220779,0.369081,0.311794,0.546893,0.386877,0.378621,0.561322,0.442363,0.972869,0.933409,0.451801,0.496199,0.71368,0.254451,0.799369,0.710298,0.454143,0.92842,0.818267,0.868735,0.858962,0.294929,0.297703,0.44304,0.779022,0.307975,0.257631,0.0675014,0.25237,0.28615,0.306065,0.220432,0.549111,0.831748,0.911104,0.667372,0.27428,0.899364,0.24388,0.995963,0.950381,0.691763,0.466897,0.597381,0.486361,0.832922,0.626444,0.942084,0.299262,0.83268,0.417014,0.5093,0.777247,0.384754,0.993499,0.978142,0.365594,0.908936,0.993808,0.699354,0.047703,0.598994,0.409841,0.868464,0.74665,0.427077,0.837385,0.174519,0.727022,0.670384,0.109949,0.300477,0.718437,0.199956,0.702512,0.260126,0.440183,0.398717,0.228152,0.198812,0.123789,0.899137,0.845985,0.853889,0.123275,0.86498,0.323502,0.444328,0.0836822,0.452762,0.568651,0.145874,0.363987,0.620726,0.0512019,0.999245,0.375113,0.63233,0.336651,0.646001,0.237908,0.0727566,0.0598623,0.115192,0.843826,0.141211,0.431804,0.581218,0.734902,0.996316,0.299457,0.554489,0.0856231,0.464549,0.847973,0.694551,0.65378,0.122798,0.601426,0.318212,0.644392,0.727104,0.826996,0.802642,0.572326,0.445577,0.841044,0.109824,0.690851,0.540884,0.958994,0.728684,0.0674082,0.286474,0.112702,0.413722,0.866443,0.47776,0.549943,0.503063,0.290417,0.258901,0.476823,0.75408,0.00674903,0.145079,0.700203,0.393815,0.174029,0.348076,0.450881,0.00404364,0.228353,0.63504,0.00207675,0.150795,0.826615,0.188874,0.743416,0.671231,0.428753,0.288219,0.442024,0.28151,0.571323,0.729651,0.679089,0.59234,0.549528,0.140411,0.714222,0.915691,0.517048,0.058495,0.266686,0.172363,0.0974073,0.351987,0.742439,0.761661,0.439066,0.117679,0.0800681,0.48803,0.411763,0.0573799,0.0230179,0.76109,0.0237613,0.514328,0.875745,0.395994,0.276614,0.12254,0.0340995,0.823975,0.131337,0.507255,0.188985,0.18463,0.932024,0.843037,0.232161,0.902326,0.0835331,0.196183,0.852045,0.1466,0.804264,0.970039,0.672459,0.813914,0.165055,0.475396,0.0217065,0.501021,0.0116282,0.594207,0.923596,0.0753837,0.86839,0.133126,0.165103,0.31765,0.301126,0.351743,0.346555,0.00494581,0.314976,0.479699,0.286195,0.597384,0.719192,0.0605221,0.477084,0.721467,0.297055,0.242101,0.741969,0.269822,0.390705,0.751436,0.102451,0.771893,0.00939077,0.782772,0.825019,0.24153,0.15842,0.457104,0.939729,0.538416,0.720443,0.475916,0.156443,0.88854,0.558229,0.894647,0.758811,0.27485,0.139173,0.415877,0.677774,0.850273,0.873232,0.635175,0.928272,0.701145,0.194613,0.237633,0.0669565,0.911135,0.656137,0.887086,0.337886,0.349753,0.492454,0.0442594,0.513312,0.538456,0.694228,0.180829,0.240506,|0.813513,0.0878408,0.769241,0.749289,0.0551003,0.687348,0.346013,0.44135,0.776988,0.455336,0.60909,0.269738,0.770878,0.795286,0.245359,0.432023,0.939618,0.931139,0.827364,0.854777,0.505983,0.981276,0.106111,0.071004,0.349589,0.965334,0.900796,0.699303,0.631382,0.983101,0.646669,0.838555,0.948645,0.0447539,0.271451,0.5247,0.229976,0.856991,0.246791,0.648364,0.662684,0.825398,0.680153,0.943273,0.794208,0.837159,0.919399,0.232129,0.347665,0.363286,0.930541,0.450761,0.341336,0.587494,0.605906,0.825478,0.478599,0.940907,0.239148,0.154976,0.564798,0.30149,0.244596,0.65657,0.887102,0.310354,0.31649,0.238902,0.932976,0.756517,0.461394,0.824224,0.316819,0.466661,0.502191,0.38006,0.459744,0.836446,0.726023,0.802648,0.53145,0.77429,0.313166,0.0761731,0.175929,0.891164,0.743808,0.55092,0.128541,0.275372,0.333536,0.277129,0.651784,0.152875,0.518259,0.874668,0.347359,0.408748,0.208254,0.185871,0.285521,0.833258,0.0467635,0.669694,0.378236,0.835193,0.252295,0.334562,0.683437,0.361933,0.793752,0.275008,0.924641,0.976304,0.410276,0.829713,0.679473,0.986473,0.497304,0.774953,0.114844,0.921185,0.26838,0.503007,0.678735,0.240636,0.654793,0.911541,0.514417,0.918039,0.603532,0.895104,0.499016,0.157907,0.878201,0.520482,0.0776454,0.463363,0.607531,0.97154,0.256833,0.339279,0.860813,0.3204,0.839043,0.469851,0.00905526,0.254981,0.959384,0.303443,0.707318,0.728503,0.531546,0.0576871,0.892153,0.94864,0.484703,0.328352,0.127378,0.0878828,0.371088,0.0287519,0.463706,0.242677,0.713296,0.4577,0.873519,0.159635,0.272946,0.971793,0.231732,0.975366,0.706903,0.26103,0.0559922,0.961903,0.19226,0.815887,0.959382,0.182215,0.667119,0.96078,0.125057,0.272398,0.446577,0.944799,0.819542,0.0203356,0.203097,0.409231,0.597168,0.661264,0.145924,0.362475,0.413845,0.318211,0.616238,0.0887462,0.705836,0.703599,0.70184,0.578964,0.0583695,0.645674,0.364928,0.740612,0.526901,0.77663,0.302536,0.839794,0.550805,0.564607,0.950562,0.462576,0.127543,0.718135,0.77814,0.571558,0.961606,0.178115,0.857537,0.978687,0.891137,0.40477,0.749574,0.344812,0.858499,0.86081,0.999247,0.509582,0.607316,0.934172,0.339172,0.931775,0.842646,0.400821,0.362154,0.911965,0.20796,0.756442,0.598708,0.569869,0.0907779,0.674602,0.193765,0.297086,0.398858,0.625083,0.781981,0.763382,0.401578,0.503886,0.0150852,0.803126,0.140619,0.872226,0.14267,0.932956,0.371316,0.585981,0.53263,0.97558,0.519865,0.391728,0.598627,0.981463,0.734243,0.251904,0.720829,0.937823,0.160361,0.763462,0.548956,0.969332,0.303767,0.945057,0.600424,0.596276,0.875029,0.921597,0.166296,0.745691,0.267201,0.890915,0.633067,0.335283,0.725745,0.647751,0.154066,0.734822,0.606492,0.296235,0.163315,0.408443,0.0894948,0.732374,0.548205,0.594487,0.0611401,0.0122924,0.290119,0.578791,0.465892,0.355355,0.955606,0.244793,0.423984,0.424703,0.699379,0.781005,0.461376,0.32851,0.972177,0.506093,0.867933,0.114213,0.396108,0.237353,0.646891,0.366721,0.414634,0.496155,0.252548,0.507594,0.199078,0.890378,0.261912,0.692611,0.659992,0.744248,0.282598,0.956532,0.905317,0.983513,0.922809,0.529655,0.475071,0.801056,0.498222,0.178545,0.942326,0.343819,0.929132,0.587785,0.00333583,0.399102,0.0775765,0.376225,0.205386,0.284909,0.0340579,0.986435,0.0372616,0.748738,0.060285,0.853692,0.785085,0.255534,0.797455,0.188539,0.81064,0.78388,0.755638,0.676107,0.747929,0.511717,0.87431,0.36737,0.32463,0.299285,0.972911,0.560935,0.372499,0.566846,0.532937,0.733148,0.732838,0.86641,0.625863,0.363774,0.22108,0.219275,0.376389,0.701157,0.113741,0.718956,0.428564,0.236093,0.523551,0.411067,0.939,0.718599,0.201114,0.466181,0.300928,0.897597,0.283802,0.896009,0.850636,0.0158938,0.583247,0.020929,0.79062,0.999139,0.073817,0.988062,0.0123267,0.887118,0.755618,0.326865,0.983283,0.465684,0.88401,0.408687,0.592589,0.908494,0.316605,0.488159,0.560356,0.300441,0.526678,0.780073,0.645128,0.892824,0.872368,0.106155,0.899455,0.64737,0.76605,0.128961,0.857406,0.912787,0.322196,0.137452,0.329481,0.767494,0.362526,0.238112,0.193216,0.437217,0.248798,0.265868,0.429102,0.555953,0.809404,0.422401,0.757249,0.168578,0.55924,0.0923809,0.791804,0.428892,0.469029,0.209372,0.763578,0.517963,0.944812,0.0357035,0.558697,0.534451,0.685427,0.325002,0.644783,0.458332,0.539711,0.412607,0.675053,0.21244,0.244184,0.338446,0.991747,0.222726,0.309008,0.686362,0.383872,0.289358,0.393546,0.307204,0.952996,0.0881806,0.0696481,0.293812,0.909465,0.379604,0.81064,0.931216,0.953646,0.26906,0.0749499,0.354864,0.288602,0.530603,0.896548,0.688119,0.89428,0.409757,0.764025,0.0498678,0.397386,0.201114,0.432047,0.805909,0.861073,0.970672,0.790071,0.700614,0.442814,0.131843,0.585338,0.0203162,0.83867,0.97759,0.241901,0.31813,0.110017,0.253668,0.626899,0.846683,0.891674,0.0146017,0.144638,0.381364,0.744011,0.424938,0.738136,0.604121,0.492139,0.905813,0.0541373,0.484905,0.433937,0.802343,0.911647,0.544544,0.229317,0.35713,0.165091,0.190488,0.0869442,0.0667731,0.087879,0.56888,0.596483,0.978671,0.052415,0.481758,0.0224079,0.624286,0.595183,0.621767,0.839635,0.900282,0.863098,0.128388,0.738833,0.917138,0.338733,0.711594,0.71246,0.514165,0.654513,0.873309,0.958465,0.265784,0.308466,0.933341,0.305586,0.356124,0.0476503,0.173627,0.927,0.535614,0.228335,0.934024,0.94483,0.00525296,0.205609,0.666885,0.00964862,0.938854,0.618661,0.0479071,0.596693,0.150484,0.383555,0.306418,0.86863,0.898692,0.436554,0.0865451,0.691031,0.701543,0.489441,0.79279,0.188073,0.24668,0.370505,0.809556,0.20566,0.981842,0.87918,0.312605,0.357162,0.135375,0.125304,0.46616,0.847793,0.48163,0.633806,0.110082,0.326574,0.618157,0.919787,0.143294,0.000136912,0.889042,0.424905,0.156952,0.0938816,0.670692,0.136841,0.391319,0.0368887,0.289466,0.653503,0.70751,0.588883,0.631134,0.573515,0.651844,0.482248,0.266467,0.938216,0.80151,0.757526,0.549148,0.18828,0.435201,0.39243,0.896928,0.391329,0.803858,0.404974,0.241437,0.893806,0.537153,0.99696,0.809787,0.12098,0.693707,0.300213,0.220582,0.974309,0.958928,0.941833,0.488222,0.0946724,0.866481,0.806437,0.134462,0.658145,0.794155,0.0373831,0.818339,0.352776,0.220232,0.365098,0.0496414,0.0871998,0.839563,0.262611,0.301526,0.65046,0.651083,0.166329,0.383412,0.0988296,0.87903,0.0120023,0.161737,0.311197,0.671336,0.406424,0.451348,0.335749,0.112383,0.917759,0.200493,0.999939,0.228441,0.0681513,0.733237,0.442449,0.861977,0.521568,0.013577,0.658565,0.95151,0.0646691,0.0264228,0.697641,0.864302,0.580969,0.890014,0.795817,0.287866,0.454012,0.509513,0.177806,0.678063,0.942195,0.0812516,0.130784,0.772656,0.2889,0.119371,0.702769,0.71505,0.490308,0.260705,0.878661,0.203632,0.927222,0.979432,0.119281,0.101778,0.52421,0.51627,0.394042,0.0400677,0.352362,0.174758,0.0355702,0.686615,0.218222,0.160135,0.297121,0.722633,0.276642,0.316212,0.303357,0.540179,0.518751,0.0269367,0.0808845,0.33492,0.735665,0.928494,0.989408,0.793575,0.958952,0.462444,0.0941783,0.379203,0.39676,0.245804,0.0807064,0.212567,0.994336,0.361068,0.687746,0.333467,0.200897,0.000979602,0.998594,0.348155,0.445207,0.835194,0.475629,0.153391,0.642421,0.369632,0.886432,0.105196,0.333285,0.630568,0.503791,0.47329,0.593962,0.142491,0.19218,0.93415,0.44619,0.959995,0.541173,0.0884136,0.807938,0.80183,0.585096,0.0420156,0.19883,0.607304,0.0586597,0.641931,0.0799737,0.134224,0.796913,0.878031,0.0699699,0.158405,0.464861,0.345602,0.146492,0.120869,0.310846,0.325098,0.422984,0.763953,0.269212,0.15832,0.314365,0.225038,0.487907,0.27507,0.889292,0.995541,0.672236,0.11525,0.942241,0.0476804,0.127948,0.986638,0.757897,0.578113,0.52962,0.493125,0.848534,0.308671,0.0961123,0.618808,0.249384,0.34097,0.924232,0.138061,0.0794104,0.585251,0.701263,0.0497968,0.0471827,0.0946506,0.36979,0.425653,0.708542,0.59863,0.895098,0.37731,0.600276,0.656141,0.221388,0.281905,0.774646,0.797246,0.774804,0.0452765,0.769349,0.277808,0.756261,0.819912,0.276952,0.320298,0.0116339,0.0231873,0.621705,0.745675,0.0466505,0.0297158,0.0207178,0.781952,0.105326,0.192334,0.361212,0.141352,0.31517,0.643206,0.00334698,0.601258,0.642046,0.355075,0.509846,0.396793,0.525628,0.319717,0.960044,0.10889,0.791386,0.21977,0.800151,0.142727,0.120192,0.78483,0.0729476,0.656633,0.437842,0.445667,0.15822,0.211818,0.574306,0.210163,0.898019,0.751373,0.743052,0.494478,0.539739,0.227969,0.69423,0.665661,0.454645,0.585509,0.783826,0.83531,0.545767,0.615937,0.346226,0.714116,0.507852,0.140659,0.82938,0.439769,0.0833395,0.829466,0.106722,0.0182406,0.264085,0.350429,0.00940293,0.671578,0.187002,0.207043,0.803209,0.189043,0.885533,0.412548,0.290721,0.89432,0.00279385,0.975921,0.39891,0.262547,0.828649,0.611819,0.657556,0.176703,0.686626,0.384801,0.31969,0.278263,0.180543,0.163961,0.325477,0.806115,0.544143,0.215264,0.531433,0.31445,0.644355,0.747895,0.906995,0.54574,0.385313,0.159653,0.965767,0.523823,0.99056,0.412124,0.956734,0.171693,0.586977,0.825759,0.346301,0.743396,0.712467,0.016341,0.732902,0.710135,0.672276,0.146406,0.418609,0.0908238,0.553027,0.24726,0.864261,0.720009,0.65864,0.959067,0.903034,0.881396,0.11106,0.755565,0.538118,0.843195,0.189426,0.797068,0.0129296,0.122769,0.485915,0.630876,0.641717,0.128509,0.978729,0.255221,|0.57756,0.242926,0.40842,0.626806,0.800764,0.239275,0.448081,0.186157,0.224942,0.166124,0.471353,0.437319,0.836443,0.487075,0.828005,0.786353,0.184109,0.565216,0.608059,0.672332,0.762426,0.921805,0.368502,0.675821,0.765687,0.589359,0.23147,0.279439,0.652427,0.341526,0.631803,0.469546,0.632113,0.919533,0.510555,0.792299,0.795018,0.742634,0.0305947,0.829917,0.509398,0.114182,0.312321,0.609779,0.286048,0.349615,0.0456421,0.361098,0.380319,0.806606,0.813432,0.936854,0.950147,0.211404,0.245746,0.709246,0.701242,0.612652,0.699893,0.461364,0.918326,0.434402,0.22409,0.470111,0.564728,0.211714,0.722041,0.0574896,0.764292,0.10779,0.62238,0.204456,0.324808,0.215262,0.917917,0.287618,0.667175,0.392624,0.972263,0.0226442,0.182265,0.91111,0.881221,0.981466,0.402917,0.85941,0.712127,0.716364,0.822096,0.176703,0.0503283,0.926581,0.240964,0.0174416,0.0588214,0.0433233,0.711268,0.501742,0.787654,0.29969,0.492418,0.752578,0.78025,0.580506,0.367625,0.209233,0.405113,0.282743,0.325474,0.608719,0.0915143,0.61142,0.451305,0.826565,0.410149,0.418382,0.410119,0.642337,0.0865209,0.043282,0.124157,0.234465,0.266273,0.074883,0.818483,0.569248,0.613308,0.531706,0.512002,0.00782168,0.739216,0.150565,0.0254877,0.37373,0.0283633,0.13334,0.538697,0.00679272,0.0082956,0.631217,0.116718,0.421019,0.567072,0.118402,0.292092,0.347433,0.584718,0.179529,0.875982,0.950396,0.771634,0.777164,0.860503,0.0970712,0.417594,0.525206,0.724167,0.773414,0.75247,0.605266,0.421426,0.70458,0.648036,0.788386,0.0315619,0.705063,0.230573,0.161193,0.397597,0.156103,0.228003,0.885271,0.933886,0.331331,0.00316018,0.285823,0.0764222,0.962238,0.105478,0.361966,0.323989,0.238521,0.397844,0.0884691,0.96159,0.557572,0.316078,0.855539,0.432171,0.997604,0.311621,0.542281,0.722231,0.0222336,0.908016,0.61015,0.678686,0.128952,0.0938987,0.868898,0.645974,0.97106,0.889167,0.715399,0.485141,0.981235,0.237169,0.22913,0.617321,0.68811,0.155444,0.638682,0.758517,0.655042,0.542851,0.518523,0.593054,0.346829,0.583998,0.487992,0.881491,0.932998,0.354263,0.800275,0.248528,0.560888,0.492199,0.958936,0.649083,0.0734562,0.511793,0.679643,0.922681,0.638014,0.000848114,0.0292827,0.879761,0.277566,0.372332,0.793324,0.489796,0.943052,0.845244,0.978293,0.85343,0.565534,0.887571,0.576592,0.0379894,0.85211,0.775078,0.111032,0.952119,0.910693,0.104075,0.51827,0.550588,0.312014,0.33661,0.960747,0.44793,0.0142245,0.375217,0.834169,0.124913,0.841644,0.854074,0.710388,0.589198,0.231821,0.507726,0.0792297,0.672348,0.981589,0.690323,0.150465,0.293481,0.944121,0.642343,0.192489,0.786149,0.470009,0.522942,0.311001,0.24788,0.82606,0.685011,0.667325,0.593049,0.587949,0.791445,0.644552,0.236163,0.229156,0.0418397,0.920631,0.469869,0.762695,0.204705,0.505731,0.556136,0.726311,0.228106,0.358602,0.321645,0.325486,0.855387,0.866659,0.0416318,0.200904,0.01317,0.876665,0.0748938,0.240268,0.73933,0.0831015,0.786288,0.397922,0.228515,0.0151019,0.142819,0.0342407,0.771327,0.686231,0.147702,0.131749,0.921133,0.30726,0.337519,0.793062,0.720057,0.135931,0.251478,0.623657,0.871372,0.407485,0.87821,0.0637591,0.962572,0.109016,0.963983,0.752871,0.782138,0.764147,0.164202,0.883633,0.778302,0.581287,0.612522,0.688552,0.343661,0.641998,0.746441,0.866905,0.783703,0.692526,0.644812,0.0299648,0.253074,0.912335,0.246454,0.570474,0.557283,0.0232333,0.47717,0.797291,0.490146,0.215535,0.377231,0.837451,0.83945,0.848459,0.190679,0.08106,0.638216,0.107287,0.960552,0.121623,0.919754,0.40863,0.0056361,0.864768,0.200187,0.711265,0.195503,0.49037,0.901092,0.370504,0.467752,0.525357,0.288092,0.146112,0.244021,0.446094,0.471986,0.696224,0.446871,0.321753,0.47358,0.117554,0.822033,0.4314,0.1635,0.285732,0.620289,0.600944,0.509524,0.45514,0.893515,0.246882,0.034798,0.450736,0.350349,0.870229,0.426144,0.456628,0.514407,0.0874418,0.300978,0.321626,0.181146,0.133904,0.953847,0.686471,0.0448137,0.95886,0.283312,0.105039,0.866713,0.817969,0.908397,0.981934,0.129244,0.647716,0.0229945,0.215384,0.913331,0.867347,0.163424,0.662608,0.655669,0.413378,0.675269,0.540754,0.170512,0.600973,0.199569,0.167414,0.933673,0.362988,0.931478,0.778772,0.109065,0.656939,0.882542,0.183202,0.625582,0.296429,0.469662,0.0303366,0.757021,0.306634,0.472054,0.81583,0.220974,0.734595,0.531018,0.336102,0.681336,0.914806,0.755055,0.516216,0.506736,0.24492,0.849432,0.736783,0.615473,0.97519,0.656085,0.721833,0.218283,0.991033,0.0600377,0.359739,0.147095,0.547858,0.424718,0.545908,0.0433469,0.988544,0.886207,0.822013,0.17549,0.0151196,0.0945628,0.605458,0.173791,0.498399,0.0383148,0.958297,0.56942,0.515466,0.622877,0.787594,0.0656423,0.680644,0.66917,0.0404636,0.682344,0.773863,0.151569,0.259717,0.0595905,0.737965,0.867688,0.525563,0.287187,0.779424,0.00643438,0.438374,0.0564013,0.144215,0.525223,0.016691,0.531556,0.346509,0.951622,0.508956,0.563966,0.639464,0.364932,0.955094,0.363989,0.972176,0.621694,0.260512,0.631495,0.262778,0.600152,0.553349,0.0242373,0.0472517,0.199901,0.112798,0.46177,0.785183,0.631744,0.830682,0.734165,0.237061,0.158799,0.189855,0.265625,0.863746,0.97792,0.515016,0.673021,0.469911,0.166452,0.428506,0.377685,0.509256,0.806577,0.57298,0.56926,0.573916,0.178552,0.405757,0.255944,0.473138,0.0718648,0.536236,0.971414,0.793372,0.555859,0.325719,0.343836,0.458778,0.983674,0.224638,0.206228,0.911784,0.445126,0.872188,0.0559893,0.805613,0.0326847,0.805211,0.736716,0.53804,0.527622,0.679999,0.200559,0.00978309,0.260224,0.838725,0.669297,0.674032,0.793107,0.0281385,0.116862,0.980153,0.89444,0.145591,0.0891506,0.396657,0.578736,0.867594,0.97521,0.460469,0.824586,0.297695,0.835172,0.17719,0.823237,0.00313514,0.512039,0.50756,0.872441,0.152131,0.22376,0.807954,0.637967,0.211338,0.792322,0.684244,0.736656,0.825508,0.622334,0.829775,0.924222,0.359717,0.279832,0.984105,0.425499,0.391584,0.502345,0.619893,0.538867,0.18547,0.966871,0.840997,0.242965,0.620378,0.747908,0.827308,0.627523,0.283959,0.658566,0.930154,0.762895,0.0859523,0.338358,0.916698,0.60485,0.877016,0.449882,0.899759,0.148364,0.410846,0.315542,0.838841,0.376501,0.296899,0.120898,0.788034,0.60547,0.3642,0.133328,0.150288,0.167686,0.97617,0.648436,0.108295,0.369263,0.31795,0.364735,0.719935,0.452821,0.111686,0.588304,0.787205,0.834926,0.882456,0.0341971,0.295348,0.604813,0.647271,0.433943,0.452734,0.946694,0.474292,0.254869,0.728646,0.883219,0.0517004,0.911798,0.653971,0.10308,0.260466,0.822885,0.130482,0.598203,0.916669,0.358667,0.208754,0.649183,0.298576,0.158264,0.287075,0.794827,0.0264736,0.315854,0.0627204,0.3305,0.186714,0.856846,0.426955,0.107508,0.0811751,0.710668,0.242853,0.206635,0.889754,0.666057,0.798952,0.771708,0.520649,0.440843,0.821893,0.890044,0.458985,0.653209,0.817879,0.421925,0.703361,0.25686,0.546579,0.936161,0.664663,0.940143,0.501976,0.68373,0.213394,0.153313,0.833591,0.114451,0.632869,0.585329,0.0978145,0.881021,0.825347,0.260744,0.566323,0.863837,0.995627,0.318843,0.975679,0.869283,0.0373427,0.118287,0.861038,0.87548,0.761017,0.477262,0.433617,0.859701,0.255347,0.189042,0.399185,0.628894,0.670781,0.665322,0.656747,0.696105,0.832616,0.705774,0.457582,0.59236,0.825844,0.160462,0.142405,0.578858,0.0951747,0.838826,0.922905,0.682572,0.0982586,0.578674,0.784848,0.146634,0.643147,0.492629,0.331583,0.33055,0.0230476,0.573767,0.502338,0.187899,0.477066,0.517676,0.299466,0.582127,0.0892276,0.302867,0.198642,0.919115,0.588223,0.590715,0.210373,0.902379,0.813773,0.80876,0.0943363,0.570071,0.884238,0.163573,0.586744,0.214255,0.0109591,0.076006,0.376809,0.899732,0.0388796,0.204467,0.232689,0.162302,0.456739,0.234125,0.886728,0.977477,0.807718,0.762288,0.573039,0.507588,0.995147,0.570633,0.101996,0.317617,0.562986,0.319396,0.343492,0.437112,0.0622503,0.453202,0.419746,0.285527,0.786252,0.623994,0.430529,0.421722,0.537568,0.828785,0.437335,0.983164,0.758175,0.0991981,0.377599,0.0778332,0.378925,0.869421,0.918777,0.464809,0.870386,0.749648,0.99851,0.542511,0.013075,0.894745,0.651912,0.11284,0.424,0.254229,0.495939,0.965024,0.563755,0.172056,0.64483,0.759075,0.94918,0.404557,0.796779,0.453624,0.0771274,0.108156,0.200375,0.384106,0.87165,0.121378,0.454929,0.511872,0.227134,0.488782,0.878646,0.408516,0.760197,0.419291,0.520647,0.847775,0.340664,0.25073,0.631119,0.262173,0.1612,0.0619158,0.0546252,0.424233,0.752287,0.0638067,0.440069,0.398532,0.0319673,0.453842,0.673402,0.881058,0.401424,0.557151,0.864172,0.756376,0.425134,0.962571,0.562004,0.392556,0.480333,0.845577,0.60979,0.614616,0.244099,0.60383,0.321174,0.147119,0.608165,0.193219,0.662391,0.220767,0.674711,0.216599,0.827288,0.868429,0.254821,0.350919,0.280816,0.952145,0.938889,0.521574,0.466464,0.885977,0.663565,0.210869,0.562099,0.842679,0.0709212,0.300541,0.731608,0.746784,0.845686,0.738384,0.368928,0.179765,0.861106,0.130208,0.981293,0.843939,0.0362063,0.785969,0.720846,0.126715,0.244274,0.0546354,0.225594,0.179928,0.566333,0.463126,0.467314,0.117388,0.801736,7.64728e-05,0.529319,0.432053,0.597746,0.108989,0.750741,0.856944,0.816983,0.352886,0.126359,0.31629,0.251923,0.698739,0.21445,0.949478,0.738144,0.510716,0.136756,0.907232,0.124848,0.265062,0.0629562,0.102732,0.199465,|0.671538,0.51459,0.684048,0.553569,0.153263,0.369277,0.603797,0.380966,0.853914,0.551924,0.184057,0.858413,0.540082,0.866437,0.298376,0.778754,0.0386188,0.0639089,0.707445,0.00997669,0.450879,0.95582,0.0200978,0.687464,0.300457,0.871121,0.577631,0.395588,0.473269,0.162937,0.0570874,0.011961,0.0475007,0.118654,0.544097,0.962686,0.373345,0.813873,0.348837,0.21789,0.243048,0.816682,0.485649,0.415626,0.614006,0.864061,0.361745,0.159768,0.37916,0.518226,0.239891,0.617891,0.613896,0.301969,0.347681,0.0249378,0.983883,0.300932,0.0583126,0.366672,0.0267896,0.677191,0.514982,0.842748,0.0155134,0.110157,0.211201,0.385713,0.0412425,0.361626,0.150152,0.727886,0.101382,0.0466814,0.301264,0.137809,0.113395,0.0767531,0.00388402,0.666268,0.134669,0.657637,0.554153,0.493187,0.923433,0.862657,0.434051,0.44992,0.41208,0.977745,0.296173,0.604029,0.0674765,0.739452,0.680256,0.927116,0.092548,0.742394,0.832001,0.784922,0.797699,0.102519,0.576309,0.734039,0.868692,0.941917,0.813597,0.114962,0.162662,0.374166,0.92893,0.63962,0.280471,0.735184,0.146943,0.249906,0.969064,0.264008,0.076156,0.844672,0.601045,0.556433,0.350242,0.42285,0.237195,0.0228231,0.42938,0.548265,0.362887,0.99735,0.905353,0.602702,0.645351,0.433964,0.865803,0.605553,0.0295735,0.0409082,0.392712,0.407029,0.275475,0.942753,0.488883,0.620682,0.11762,0.466184,0.928049,0.769492,0.967872,0.966036,0.836514,0.900838,0.899341,0.685498,0.189126,0.841323,0.580745,0.427799,0.0468534,0.313757,0.24018,0.356061,0.0603607,0.781746,0.05039,0.559311,0.916132,0.49042,0.079831,0.480709,0.0673628,0.493846,0.990317,0.248034,0.770514,0.972292,0.937635,0.733198,0.252807,0.562964,0.0683466,0.375284,0.775754,0.495045,0.905749,0.511618,0.524131,0.730851,0.0594751,0.257225,0.758959,0.610186,0.243304,0.534013,0.241372,0.118211,0.80931,0.401626,0.152124,0.364838,0.453307,0.276311,0.89557,0.773026,0.409522,0.454298,0.225646,0.825899,0.108494,0.604812,0.746957,0.620575,0.0450107,0.955889,0.380049,0.642078,0.880547,0.90828,0.826409,0.283376,0.891359,0.533701,0.959704,0.770714,0.601146,0.495955,0.421771,0.954877,0.662143,0.722105,0.100198,0.072247,0.225287,0.788646,0.417697,0.989826,0.00797433,0.909279,0.0341794,0.62241,0.635056,0.119916,0.430058,0.13321,0.80591,0.474233,0.73659,0.942926,0.394291,0.591925,0.88939,0.396682,0.673608,0.688214,0.899013,0.228827,0.75755,0.595476,0.817532,0.664718,0.143587,0.118496,0.666887,0.233568,0.577244,0.880447,0.813955,0.178932,0.130954,0.729113,0.371927,0.872192,0.494366,0.98971,0.52771,0.834237,0.928176,0.676216,0.810252,0.275002,0.692069,0.29054,0.612242,0.376056,0.0571693,0.0409805,0.0365641,0.345491,0.826864,0.123666,0.481068,0.394369,0.199452,0.934356,0.977482,0.588987,0.487791,0.816127,0.691048,0.522934,0.170763,0.679257,0.284845,0.509643,0.321608,0.308335,0.719736,0.641902,0.0468068,0.59454,0.0320616,0.352186,0.988766,0.150918,0.345662,0.70915,0.565639,0.34192,0.0132136,0.206012,0.254731,0.68733,0.434144,0.652537,0.832643,0.664237,0.127861,0.911087,0.776362,0.788978,0.329733,0.354643,0.487161,0.182739,0.120063,0.288559,0.634581,0.589258,0.410683,0.274343,0.0811545,0.484359,0.744672,0.25467,0.860953,0.0293151,0.99046,0.277473,0.879447,0.136285,0.657257,0.0593835,0.777264,0.462419,0.270716,0.303717,0.595802,0.76158,0.199624,0.800187,0.685257,0.73451,0.192295,0.61683,0.542021,0.991355,0.543414,0.119611,0.00637513,0.454973,0.884507,0.419641,0.108624,0.312939,0.866042,0.524376,0.391165,0.258325,0.814939,0.16311,0.0896792,0.45844,0.736508,0.968511,0.0587057,0.221363,0.635203,0.661653,0.781092,0.125277,0.408843,0.443571,0.176154,0.240051,0.373226,0.133939,0.224176,0.194659,0.339854,0.22305,0.783899,0.768069,0.677769,0.296017,0.847719,0.570268,0.888491,0.834024,0.592519,0.354717,0.238388,0.582677,0.58054,0.265665,0.256951,0.146676,0.0931306,0.926886,0.681605,0.587269,0.990751,0.958506,0.00939518,0.202705,0.908148,0.27346,0.30163,0.5025,0.208741,0.553685,0.921714,0.603732,0.849968,0.800976,0.958638,0.732092,0.317948,0.593293,0.186699,0.171154,0.751601,0.388274,0.136476,0.0202242,0.750481,0.680489,0.481524,0.774614,0.352685,0.967556,0.128764,0.235531,0.821883,0.308016,0.682955,0.302553,0.384839,0.602446,0.46189,0.119388,0.384058,0.769478,0.11525,0.741998,0.0180626,0.00284243,0.376396,0.305246,0.554279,0.243391,0.0571209,0.0560594,0.0311675,0.0273955,0.986881,0.78774,0.128429,0.472955,0.423909,0.969076,0.682316,0.470451,0.926204,0.466503,0.796507,0.666699,0.597108,0.977028,0.108448,0.736623,0.799194,0.345884,0.880391,0.79382,0.58381,0.452601,0.668845,0.756588,0.162597,0.0888345,0.463075,0.241211,0.542894,0.289185,0.597584,0.86044,0.653021,0.0636867,0.142455,0.580114,0.67707,0.221163,0.379068,0.833497,0.584634,0.498021,0.268231,0.394279,0.305801,0.727718,0.238895,0.820032,0.723144,0.466198,0.330423,0.317037,0.196836,0.662955,0.252747,0.853759,0.758314,0.298621,0.864576,0.494956,0.629321,0.258032,0.529839,0.0366449,0.938666,0.312815,0.564397,0.430832,0.208217,0.973261,0.445938,0.273508,0.995244,0.650573,0.711173,0.701004,0.842954,0.979638,0.695384,0.619276,0.272721,0.98777,0.866717,0.547919,0.20908,0.168482,0.0752822,0.473666,0.140123,0.623627,0.333187,0.689305,0.660295,0.745486,0.835164,0.223695,0.221139,0.545069,0.624939,0.630116,0.79391,0.613192,0.249773,0.361125,0.999295,0.496274,0.851138,0.612634,0.741651,0.270849,0.831552,0.553087,0.966621,0.887442,0.632876,0.901444,0.757336,0.211669,0.376566,0.363294,0.212032,0.139283,0.908735,0.00625736,0.265741,0.947922,0.228295,0.457082,0.62936,0.976127,0.894976,0.806278,0.646867,0.817607,0.0522448,0.300433,0.016514,0.0651644,0.351656,0.0942775,0.663548,0.510984,0.147076,0.880871,0.244572,0.638839,0.975472,0.739799,0.984966,0.410171,0.120741,0.491383,0.250231,0.506667,0.955486,0.244293,0.688934,0.428568,0.631876,0.554444,0.805129,0.645613,0.956748,0.748543,0.711658,0.267635,0.844473,0.0218918,0.739872,0.652875,0.178246,0.540822,0.169307,0.273356,0.640176,0.897412,0.0404101,0.532468,0.800431,0.0922989,0.471176,0.00276262,0.501579,0.0940531,0.0614977,0.17043,0.321068,0.940935,0.340268,0.529573,0.487441,0.248178,0.370491,0.428581,0.300641,0.330677,0.0315557,0.988795,0.114271,0.527434,0.567491,0.819923,0.0584935,0.595676,0.591652,0.864672,0.80986,0.63351,0.205573,0.0628288,0.556909,0.260239,0.22431,0.410446,0.832479,0.602308,0.613595,0.0636973,0.662579,0.796808,0.967141,0.839913,0.457539,0.713627,0.833224,0.447076,0.665184,0.520133,0.144133,0.696326,0.403531,0.478287,0.353502,0.110923,0.374348,0.725471,0.13441,0.154364,0.519555,0.576311,0.607363,0.439882,0.66253,0.404561,0.131881,0.651722,0.870641,0.112601,0.373858,0.171939,0.951745,0.466705,0.239292,0.341153,0.65512,0.598818,0.178395,0.55214,0.0172821,0.0583254,0.654328,0.0111706,0.700694,0.581803,0.127609,0.833377,0.750922,0.439206,0.177151,0.615389,0.574629,0.181558,0.359123,0.169685,0.0853232,0.245777,0.659534,0.165756,0.333875,0.226536,0.667821,0.346167,0.797974,0.717422,0.936597,0.150923,0.00605386,0.643232,0.660949,0.709919,0.873319,0.317422,0.765468,0.731928,0.231057,0.570592,0.551342,0.416408,0.0407219,0.627447,0.442854,0.256951,0.673974,0.945344,0.823144,0.00993639,0.540352,0.90069,0.747242,0.926137,0.620416,0.702431,0.245611,0.236303,0.119522,0.119565,0.94678,0.757857,0.200786,0.00913334,0.119613,0.750764,0.0810974,0.507958,0.892641,0.9755,0.226374,0.19476,0.0108979,0.352175,0.108225,0.588105,0.110246,0.690456,0.508082,0.0464879,0.756005,0.771196,0.807095,0.67849,0.76205,0.625823,0.84979,0.400391,0.0589988,0.85844,0.303217,0.562245,0.0199932,0.52833,0.904993,0.899781,0.584925,0.236756,0.144667,0.291405,0.190908,0.253602,0.914732,0.916641,0.830933,0.153121,0.695081,0.727728,0.0850089,0.911275,0.277862,0.80643,0.863139,0.21943,0.0943511,0.0885965,0.615383,0.226802,0.136651,0.573829,0.943979,0.542359,0.98423,0.142911,0.291742,0.00125146,0.492298,0.891721,0.350677,0.397741,0.253381,0.732478,0.416191,0.407501,0.211581,0.692585,0.958929,0.750083,0.347512,0.970906,0.355114,0.175083,0.941322,0.591463,0.373458,0.30671,0.217947,0.944024,0.60034,0.237731,0.679998,0.971163,0.810777,0.136381,0.413023,0.0294647,0.709136,0.54429,0.49654,0.921428,0.0262846,0.430878,0.418547,0.859621,0.5189,0.158924,0.116007,0.625184,0.376658,0.929212,0.468917,0.220227,0.497851,0.404201,0.136732,0.947244,0.280119,0.6132,0.190936,0.51011,0.0540145,0.949872,0.951656,0.107188,0.715953,0.847874,0.296693,0.727403,0.62696,0.845527,0.492985,0.81414,0.95917,0.129499,0.0488531,0.418955,0.537253,0.763542,0.0626094,0.122226,0.36647,0.449306,0.905863,0.529031,0.387106,0.782601,0.0767727,0.415341,0.920329,0.778163,0.680933,0.848467,0.785879,0.954005,0.594836,0.225786,0.408142,0.754803,0.0730975,0.309642,0.194739,0.596844,0.27343,0.981028,0.252165,0.420623,0.874965,0.185127,0.164534,0.355364,0.23506,0.107809,0.998106,0.738051,0.554618,0.0846999,0.577353,0.270425,0.887643,0.86821,0.597796,0.791058,0.145109,0.822404,0.84866,0.0442236,0.340255,0.572159,0.776433,0.377652,0.271651,0.523205,0.680482,0.950184,0.529536,0.644681,0.412379,0.811757,0.571488,0.0521154,0.855005,0.5954,0.505807,0.530823,0.61961,0.607665,0.768043,0.127963,0.650757,0.185688,|0.024513,0.361962,0.950993,0.339742,0.67913,0.388427,0.800361,0.463705,0.593063,0.147008,0.913806,0.39092,0.836551,0.765898,0.354495,0.978797,0.685328,0.759653,0.115684,0.644616,0.804376,0.78446,0.4186,0.0783076,0.834168,0.770627,0.482563,0.434961,0.759032,0.784897,0.909781,0.552263,0.22858,0.017199,0.939552,0.757382,0.862244,0.0628717,0.575179,0.818927,0.486756,0.0999157,0.201743,0.71399,0.571598,0.301722,0.0846842,0.956581,0.0540503,0.958548,0.629699,0.82475,0.531296,0.365253,0.389981,0.0546913,0.310653,0.570614,0.501588,0.471547,0.172816,0.716501,0.0713567,0.515326,0.87263,0.842734,0.303821,0.666935,0.0352129,0.30866,0.441269,0.532818,0.216911,0.835351,0.987797,0.835207,0.478309,0.319669,0.371878,0.0528859,0.211915,0.436752,0.735725,0.348926,0.29095,0.247514,0.723305,0.745781,0.201628,0.825299,0.0734223,0.0210617,0.910761,0.773772,0.163156,0.675707,0.762856,0.312242,0.352352,0.931069,0.696356,0.728326,0.696416,0.898632,0.694902,0.81242,0.889194,0.730213,0.542977,0.884121,0.679155,0.380459,0.927452,0.844396,0.871159,0.642703,0.541087,0.205981,0.00142092,0.125211,0.974123,0.896593,0.412696,0.961435,0.0355071,0.129338,0.777503,0.390401,0.484743,0.41852,0.560913,0.26532,0.0673511,0.67715,0.669284,0.143999,0.0906711,0.594481,0.434949,0.895216,0.637583,0.938408,0.962774,0.351342,0.461599,0.563138,0.125961,0.970319,0.0389225,0.603286,0.3499,0.926721,0.0734483,0.915811,0.0454391,0.719137,0.883789,0.619357,0.612611,0.751518,0.110767,0.026238,0.675529,0.236253,0.45088,0.0679271,0.247877,0.83342,0.910277,0.0218288,0.987404,0.685908,0.087504,0.9355,0.0255638,0.334945,0.934542,0.340866,0.511086,0.837906,0.0389129,0.299281,0.288246,0.546148,0.0950927,0.594726,0.528286,0.880697,0.703802,0.052877,0.637618,0.21508,0.909722,0.323377,0.485403,0.605686,0.0512937,0.679309,0.3743,0.926211,0.631859,0.963112,0.915072,0.535492,0.547466,0.7871,0.727913,0.645806,0.452767,0.386675,0.231798,0.71117,0.0935529,0.827788,0.844803,0.608209,0.358598,0.854434,0.90637,0.265327,0.00533491,0.868622,0.511576,0.90101,0.946411,0.501091,0.943022,0.739182,0.395037,0.0929673,0.533013,0.871396,0.738594,0.349089,0.529398,0.158767,0.405704,0.567158,0.925085,0.0667977,0.188609,0.773129,0.753313,0.844251,0.239492,0.662199,0.761286,0.86927,0.381544,0.825195,0.781128,0.336811,0.566202,0.875682,0.658028,0.837186,0.375313,0.60769,0.96165,0.724051,0.530993,0.636604,0.215067,0.491542,0.4663,0.79525,0.439904,0.0592542,0.783584,0.526869,0.442185,0.783958,0.745481,0.766448,0.479092,0.0756713,0.115245,0.154603,0.548879,0.976511,0.657956,0.58395,0.388128,0.667612,0.27149,0.834732,0.0449901,0.115763,0.341882,0.359551,0.0285339,0.291008,0.0564453,0.675922,0.400519,0.439493,0.276078,0.309204,0.228438,0.104704,0.372716,0.821902,0.509046,0.364496,0.29684,0.00946414,0.675412,0.685492,0.736312,0.107775,0.224564,0.478365,0.881224,0.257455,0.945969,0.79174,0.0886214,0.0780469,0.0258557,0.0783125,0.54511,0.745568,0.792857,0.354596,0.569795,0.711274,0.0467376,0.866377,0.126342,0.757831,0.369149,0.924479,0.695968,0.975879,0.322947,0.19952,0.814823,0.44828,0.0980961,0.845023,0.529503,0.714676,0.499629,0.297676,0.0637177,0.284208,0.436614,0.0680902,0.812695,0.700476,0.180185,0.610173,0.00368261,0.66648,0.31225,0.334307,0.704249,0.135874,0.832675,0.887367,0.638361,0.952661,0.0433172,0.297189,0.725929,0.656926,0.513056,0.55713,0.811564,0.0078243,0.489412,0.728364,0.835583,0.548599,0.393581,0.631428,0.524847,0.764117,0.710145,0.274964,0.906357,0.255346,0.916608,0.835481,0.511698,0.210422,0.872097,0.00979072,0.122571,0.386042,0.88043,0.428656,0.263047,0.369319,0.12257,0.572685,0.370385,0.853068,0.326445,0.30818,0.584882,0.807976,0.786425,0.59359,0.929174,0.351535,0.398843,0.378198,0.357339,0.0652567,0.812027,0.908314,0.370282,0.587273,0.103773,0.651342,0.379401,0.518578,0.584728,0.697641,0.377889,0.281397,0.449328,0.206275,0.579175,0.836303,0.444981,0.155552,0.072009,0.361076,0.997541,0.187688,0.765224,0.818011,0.930189,0.673365,0.128019,0.294858,0.0859113,0.280327,0.274062,0.829943,0.00734872,0.184028,0.188128,0.834952,0.106301,0.880407,0.841019,0.654877,0.643695,0.400421,0.914707,0.478048,0.526967,0.628161,0.817792,0.53463,0.928405,0.258317,0.803418,0.575657,0.162132,0.771517,0.342348,0.926775,0.661368,0.893686,0.486541,0.660825,0.165893,0.216556,0.339606,0.226247,0.129447,0.390913,0.842417,0.197061,0.537723,0.642995,0.403554,0.730625,0.227881,0.780815,0.306489,0.0790745,0.119836,0.107297,0.540633,0.794998,0.49594,0.231422,0.4161,0.788755,0.621999,0.117339,0.750501,0.766145,0.889228,0.481135,0.319902,0.988331,0.846526,0.400866,0.867884,0.46298,0.64705,0.874695,0.977381,0.679883,0.749394,0.266642,0.392981,0.221415,0.272328,0.85504,0.769691,0.695654,0.0620071,0.949027,0.0562521,0.246248,0.963952,0.0505365,0.24357,0.294029,0.495369,0.0218795,0.738126,0.79244,0.654694,0.401392,0.249198,0.0509987,0.105303,0.555392,0.170043,0.897423,0.665074,0.514032,0.499776,0.456776,0.0630684,0.381208,0.440038,0.793442,0.802452,0.405149,0.30528,0.908734,0.760434,0.730452,0.319636,0.814113,0.60692,0.266205,0.601225,0.242905,0.200602,0.839221,0.980611,0.84691,0.369268,0.922837,0.807452,0.420728,0.507003,0.0861985,0.161468,0.576642,0.261271,0.478158,0.0522904,0.269114,0.149301,0.914878,0.0846965,0.86013,0.896594,0.834906,0.97389,0.515581,0.194642,0.157949,0.048182,0.304141,0.375828,0.00359887,0.629047,0.0581998,0.877928,0.427876,0.52184,0.80919,0.500119,0.515368,0.648743,0.462093,0.0402812,0.268658,0.148029,0.538518,0.571911,0.814811,0.56147,0.709749,0.472708,0.77766,0.932584,0.571479,0.366945,0.486556,0.474157,0.903094,0.617015,0.944139,0.377394,0.280928,0.677543,0.931742,0.775883,0.00491673,0.264026,0.434746,0.614716,0.341753,0.784139,0.91873,0.945031,0.426184,0.241542,0.984833,0.486996,0.0852482,0.943047,0.39654,0.952216,0.870918,0.682002,0.84913,0.367832,0.397443,0.322753,0.456861,0.0466318,0.0182248,0.192234,0.941062,0.400961,0.516671,0.044284,0.484327,0.0980502,0.257638,0.803574,0.0173481,0.906592,0.439239,0.716863,0.3095,0.90987,0.118624,0.788253,0.0250583,0.333089,0.699452,0.95721,0.364889,0.196108,0.930232,0.982071,0.335594,0.0924994,0.300067,0.184524,0.496995,0.476175,0.169844,0.0937915,0.00506121,0.0464932,0.297734,0.976833,0.573476,0.306539,0.442341,0.99722,0.596225,0.652892,0.743213,0.940351,0.868005,0.444203,0.529792,0.437893,0.944791,0.902163,0.0480813,0.914174,0.186249,0.422421,0.53909,0.0231327,0.121366,0.126729,0.533941,0.106688,0.335574,0.0410158,0.725149,0.718276,0.740269,0.797225,0.139279,0.558724,0.348412,0.484332,0.825726,0.953255,0.222436,0.460003,0.277046,0.204337,0.241119,0.133363,0.124833,0.0767069,0.262143,0.583278,0.625932,0.880836,0.149897,0.864277,0.0787924,0.296013,0.56918,0.886864,0.527045,0.603652,0.637845,0.419411,0.379622,0.836101,0.261157,0.912001,0.591967,0.829136,0.280474,0.0969437,0.591077,0.886556,0.809779,0.130081,0.266311,0.516256,0.220549,0.862676,0.651301,0.870022,0.532972,0.260439,0.77801,0.392517,0.163283,0.96049,0.370769,0.785597,0.302659,0.583856,0.458935,0.71035,0.153279,0.638971,0.368328,0.557382,0.44158,0.401622,0.745486,0.239759,0.708236,0.132039,0.00600535,0.222805,0.299922,0.152439,0.861025,0.240654,0.725974,0.42859,0.738927,0.816846,0.573667,0.609011,0.0767844,0.136756,0.354532,0.448178,0.612666,0.154667,0.54155,0.60735,0.434385,0.789019,0.933087,0.82587,0.916083,0.376481,0.690382,0.831994,0.494232,0.810089,0.839785,0.465879,0.805737,0.770472,0.852423,0.638155,0.709032,0.160701,0.896352,0.518256,0.549751,0.607525,0.342136,0.268652,0.615351,0.203856,0.342492,0.976757,0.950504,0.203915,0.298981,0.0482163,0.152226,0.349401,0.808366,0.656589,0.470676,0.78939,0.0853738,0.369141,0.549899,0.714499,0.368703,0.236505,0.246913,0.52856,0.853692,0.969468,0.866642,0.777592,0.306959,0.63119,0.509344,0.557562,0.109212,0.863466,0.275903,0.35696,0.492785,0.13728,0.361508,0.684935,0.181182,0.283452,0.150616,0.870783,0.574176,0.575328,0.35017,0.292849,0.840296,0.228595,0.935666,0.240892,0.402233,0.214702,0.49586,0.137383,0.779529,0.508172,0.349922,0.0872275,0.142517,0.546397,0.730773,0.76348,0.690428,0.568181,0.865064,0.276286,0.628224,0.63852,0.00134891,0.299042,0.924063,0.874578,0.853829,0.641956,0.511725,0.513173,0.648219,0.0965233,0.467969,0.220799,0.362454,0.589382,0.00681776,0.681803,0.00115645,0.511446,0.489826,0.25536,0.267192,0.604,0.58301,0.897282,0.98659,0.570462,0.419769,0.235384,0.307539,0.717278,0.889583,0.865132,0.6067,0.920165,0.966192,0.188001,0.69683,0.354546,0.125343,0.126781,0.344336,0.624429,0.898889,0.0708428,0.63323,0.992575,0.887474,0.939287,0.639208,0.747262,0.0895662,0.232814,0.397195,0.110528,0.986492,0.790127,0.150918,0.284093,0.193964,0.64085,0.631842,0.574993,0.317039,0.86857,0.402725,0.958548,0.346271,0.80116,0.0839728,0.988564,0.646543,0.510213,0.64604,0.161345,0.73523,0.903906,0.876993,0.0535398,0.846766,0.915876,0.706402,0.460459,0.627189,0.591658,0.00959027,0.762198,0.14209,0.200825,0.273985,0.260364,0.0551305,0.101479,0.300348,0.105722,0.406875,0.283235,0.250604,0.00851959,0.00223643,0.975996,0.461329,0.488487,0.753475,0.161079,0.642247,0.604852,0.287387,|0.70903,0.649929,0.676405,0.0783593,0.532682,0.796299,0.932491,0.0324748,0.952227,0.994737,0.902741,0.44083,0.729652,0.881795,0.667001,0.365969,0.902508,0.541364,0.378696,0.579526,0.757562,0.0418394,0.937193,0.327748,0.319766,0.275946,0.682044,0.550384,0.292404,0.0840766,0.0816584,0.963089,0.516389,0.555773,0.845184,0.222601,0.200288,0.926424,0.843331,0.723703,0.203737,0.225681,0.954999,0.204579,0.713975,0.216511,0.832277,0.226414,0.987618,0.144849,0.960419,0.164143,0.839012,0.0258777,0.290611,0.902092,0.765144,0.642749,0.332828,0.0929855,0.298488,0.0858854,0.584762,0.922315,0.742306,0.63376,0.783302,0.212258,0.225625,0.745544,0.952934,0.657716,0.865416,0.928836,0.844444,0.611687,0.0764558,0.30163,0.428024,0.70937,0.820011,0.746008,0.581755,0.510454,0.630673,0.10895,0.282392,0.933266,0.718716,0.378707,0.413435,0.635191,0.059713,0.339854,0.706955,0.268398,0.00768143,0.736045,0.0990667,0.821988,0.668633,0.171896,0.0248334,0.00860482,0.616452,0.544522,0.736931,0.931843,0.742465,0.250822,0.482526,0.0356032,0.416274,0.421261,0.528394,0.334616,0.639957,0.826069,0.556628,0.386286,0.472788,0.166383,0.044113,0.813564,0.089104,0.968066,0.138907,0.818699,0.96785,0.211814,0.219877,0.905304,0.701096,0.51374,0.625289,0.203232,0.555453,0.656852,0.415756,0.788197,0.774073,0.0697154,0.671471,0.625954,0.755558,0.48141,0.660665,0.176194,0.363442,0.0144674,0.680026,0.474909,0.996652,0.988852,0.318764,0.120737,0.538527,0.0525153,0.430489,0.0467752,0.00320113,0.0713122,0.869569,0.391303,0.547533,0.544463,0.319189,0.167041,0.711847,0.525458,0.850456,0.842277,0.538936,0.834844,0.998459,0.619432,0.116141,0.911456,0.98456,0.244341,0.959146,0.575519,0.499114,0.987099,0.648057,0.303737,0.0957146,0.544884,0.263313,0.109771,0.113856,0.0933628,0.836578,0.51061,0.753869,0.162018,0.0955534,0.745186,0.842669,0.689809,0.798363,0.305675,0.194994,0.730957,0.889254,0.430334,0.22314,0.792653,0.378062,0.855504,0.766255,0.288433,0.860807,0.357758,0.520787,0.16051,0.219558,0.0512846,0.492731,0.0149983,0.970584,0.604555,0.409117,0.967343,0.386643,0.817964,0.521459,0.202944,0.880708,0.486623,0.43281,0.0442429,0.396756,0.0658324,0.962864,0.379045,0.97452,0.170883,0.582506,0.241758,0.638531,0.0463039,0.644396,0.982421,0.660685,0.797851,0.788515,0.387956,0.946306,0.423743,0.0040164,0.28543,0.624514,0.242091,0.406755,0.325217,0.913694,0.636884,0.723673,0.812365,0.62858,0.64975,0.0804708,0.841002,0.86995,0.38344,0.413031,0.956676,0.621363,0.681479,0.0827226,0.555091,0.0167415,0.854891,0.148136,0.432181,0.530615,0.773021,0.886959,0.663238,0.437479,0.282796,0.725011,0.400718,0.516669,0.897901,0.516166,0.827982,0.462984,0.203916,0.89613,0.279494,0.34605,0.48829,0.551312,0.288898,0.712802,0.426704,0.847579,0.189175,0.73717,0.19605,0.136068,0.46385,0.798048,0.0810559,0.392456,0.338027,0.9046,0.396482,0.42059,0.666151,0.541226,0.974156,0.788538,0.961108,0.583891,0.781118,0.24382,0.62937,0.609163,0.0959768,0.0845438,0.694859,0.799193,0.0827143,0.244086,0.293807,0.00748962,0.979245,0.177381,0.908788,0.282168,0.124472,0.991432,0.716579,0.411656,0.964865,0.561462,0.282184,0.947596,0.399159,0.770276,0.729326,0.354307,0.999875,0.770335,0.519233,0.827412,0.55991,0.490448,0.709534,0.803494,0.76684,0.581758,0.560406,0.740627,0.323791,0.485789,0.908217,0.774258,0.989345,0.440142,0.840044,0.768636,0.971221,0.157154,0.882286,0.304041,0.439792,0.666136,0.142709,0.798497,0.772671,0.270577,0.403352,0.158152,0.505916,0.266756,0.420898,0.502246,0.35329,0.750611,0.325325,0.796374,0.623164,0.963198,0.241828,0.635169,0.381951,0.453607,0.69571,0.498783,0.926973,0.32385,0.813975,0.622945,0.192082,0.88057,0.778557,0.251888,0.611424,0.212443,0.28813,0.527938,0.0588785,0.29341,0.0664189,0.475389,0.190824,0.460041,0.146784,0.802635,0.273443,8.63075e-05,0.210507,0.977687,0.811475,0.433774,0.0302361,0.920005,0.297603,0.376315,0.757902,0.819793,0.286215,0.874119,0.699236,0.120426,0.0891758,0.253115,0.30812,0.0157678,0.957472,0.0951957,0.750813,0.177151,0.751928,0.467002,0.77083,0.302347,0.940586,0.123624,0.824944,0.877127,0.283135,0.470428,0.382363,0.923972,0.12328,0.015087,0.485733,0.78032,0.594336,0.713569,0.754743,0.766611,0.627215,0.254584,0.0155571,0.64215,0.535027,0.611749,0.468702,0.171278,0.0167903,0.365901,0.804541,0.911309,0.229667,0.252126,0.0982108,0.692153,0.534281,0.13956,0.373427,0.313781,0.587469,0.656979,0.437932,0.128806,0.54511,0.559914,0.0192024,0.133196,0.428978,0.423921,0.916692,0.0113791,0.946751,0.101019,0.348703,0.332623,0.980318,0.0127835,0.200798,0.973091,0.610041,0.567554,0.54325,0.81369,0.69569,0.955497,0.643891,0.936795,0.108094,0.152138,0.83879,0.843678,0.764639,0.500559,0.351544,0.65012,0.738009,0.114002,0.755786,0.831168,0.92739,0.0778794,0.67664,0.98935,0.221011,0.263373,0.861684,0.993091,0.684314,0.0852614,0.770589,0.44319,0.0782121,0.776558,0.438401,0.432241,0.115291,0.991262,0.178243,0.540895,0.526133,0.170559,0.424138,0.175827,0.143118,0.0140997,0.0468143,0.6182,0.125531,0.84367,0.81412,0.61164,0.949163,0.800233,0.905182,0.51356,0.0398885,0.312838,0.289894,0.650742,0.105862,0.373978,0.543101,0.505484,0.0909165,0.231915,0.930817,0.997588,0.138811,0.526051,0.385475,0.394383,0.147162,0.125625,0.933824,0.777061,0.960036,0.641837,0.442613,0.854069,0.501661,0.157774,0.514318,0.0136053,0.519692,0.141548,0.689336,0.552421,0.245717,0.457451,0.826621,0.610763,0.128157,0.969765,0.588994,0.462439,0.480631,0.0571122,0.65087,0.546512,0.901078,0.69923,0.808236,0.819002,0.0066008,0.563527,0.586486,0.618217,0.506489,0.35703,0.13294,0.953126,0.146173,0.715113,0.0227998,0.29967,0.141108,0.674819,0.542474,0.832854,0.363913,0.239388,0.261885,0.281072,0.766007,0.426232,0.548954,0.834112,0.134909,0.869525,0.755653,0.409406,0.341914,0.308227,0.611372,0.148757,0.692936,0.74019,0.233586,0.488679,0.2385,0.0315134,0.734774,0.194705,0.87938,0.671004,0.592662,0.409674,0.401114,0.73933,0.417628,0.693952,0.728501,0.912882,0.844868,0.533661,0.424291,0.647689,0.39691,0.109058,0.00869596,0.472406,0.0502421,0.378749,0.941746,0.448848,0.825113,0.867287,0.230192,0.0984016,0.594622,0.072103,0.393605,0.834336,0.051422,0.142326,0.194182,0.640003,0.0996066,0.330919,0.363588,0.228375,0.0670399,0.101454,0.316535,0.489163,0.0325169,0.0669706,0.229417,0.820869,0.571567,0.967942,0.29875,0.747475,0.0437964,0.638512,0.618051,0.335202,0.0285593,0.513304,0.773089,0.793856,0.895614,0.546341,0.261962,0.359612,0.198995,0.614684,0.182181,0.198909,0.105828,0.420466,0.169494,0.806532,0.343475,0.836989,0.734165,0.764694,0.256472,0.76694,0.0084998,0.781107,0.391161,0.960729,0.753938,0.208864,0.0917658,0.0601355,0.852341,0.488072,0.792471,0.797494,0.24007,0.95514,0.218236,0.354361,0.365801,0.947094,0.308725,0.881725,0.812942,0.441829,0.781134,0.410246,0.783532,0.400179,0.842104,0.489998,0.115603,0.783664,0.216616,0.570487,0.0207444,0.136619,0.658467,0.760488,0.168759,0.330425,0.00551045,0.923256,0.215911,0.717277,0.614246,0.131226,0.242789,0.300029,0.481551,0.207866,0.646322,0.902773,0.095592,0.654005,0.832855,0.225745,0.585203,0.742149,0.594336,0.392877,0.443295,0.628449,0.926398,0.949651,0.831817,0.547891,0.115592,0.886334,0.361068,0.906822,0.337369,0.397651,0.551683,0.136077,0.00750494,0.969139,0.608484,0.825895,0.295362,0.549866,0.00449765,0.977964,0.164337,0.0992434,0.933402,0.959163,0.873858,0.432244,0.671738,0.527647,0.711779,0.60444,0.177941,0.210558,0.964884,0.579078,0.66164,0.853807,0.990576,0.562106,0.910215,0.784909,0.167797,0.404615,0.747981,0.819915,0.664584,0.273971,0.604131,0.437165,0.470067,0.980165,0.436552,0.925285,0.690666,0.95432,0.701276,0.480724,0.116961,0.927898,0.390822,0.738442,0.363348,0.234339,0.0328534,0.928648,0.0197128,0.231846,0.505458,0.604795,0.628062,0.15743,0.00450975,0.558474,0.528739,0.0590404,0.542846,0.515756,0.346536,0.543464,0.265656,0.213866,0.402627,0.888669,0.288867,0.129764,0.124429,0.880442,0.979125,0.472227,0.969325,0.251015,0.264698,0.701492,0.791457,0.225896,0.0676528,0.702001,0.345065,0.25836,0.282085,0.674603,0.932886,0.974253,0.684367,0.721527,0.368908,0.420612,0.879148,0.593913,0.326903,0.0474581,0.779545,0.809118,0.64475,0.108087,0.10224,0.188739,0.942143,0.952373,0.629288,0.849015,0.651001,0.0199555,0.0575184,0.324611,0.94702,0.641573,0.290121,0.736426,0.48519,0.0494564,0.111741,0.426468,0.147323,0.290596,0.53367,0.199818,0.392406,0.905982,0.973685,0.988265,0.815977,0.128686,0.829611,0.967449,0.171284,0.277127,0.514962,0.875204,0.846266,0.17052,0.418815,0.607901,0.129904,0.0839682,0.641078,0.27511,0.834925,0.789594,0.418952,0.888132,0.690039,0.129033,0.0712337,0.589716,0.770841,0.706535,0.223574,0.15468,0.652242,0.660467,0.413146,0.529457,0.915536,0.154186,0.0633149,0.0249146,0.880407,0.132987,0.20304,0.748472,0.184594,0.876085,0.880259,0.846064,0.422365,0.821875,0.490492,0.281212,0.644513,0.54129,0.597521,0.425858,0.779379,0.0916885,0.159779,0.602109,0.877363,0.111645,0.114181,0.161427,0.770585,0.786333,0.757343,0.837334,0.906297,0.379609,0.237879,0.499552,0.986677,0.961607,0.936901,0.494165,0.0809721,0.716431,0.603167,0.30005,0.0890288,0.941628,0.100601,0.652643,0.0686983,0.0573318,0.535256,|0.692601,0.934014,0.484707,0.947892,0.598089,0.620885,0.034901,0.815182,0.0259637,0.382281,0.835357,0.0663119,0.821301,0.665339,0.454772,0.701939,0.591762,0.452999,0.555881,0.687205,0.0175985,0.800241,0.258417,0.820124,0.0480279,0.143888,0.532698,0.146797,0.283009,0.393356,0.91251,0.574919,0.604376,0.456031,0.122086,0.615498,0.322587,0.636691,0.0347641,0.230307,0.0550921,0.779414,0.189099,0.468779,0.251483,0.133228,0.702367,0.460669,0.222524,0.232213,0.909556,0.444368,0.176072,0.659759,0.778387,0.782729,0.817555,0.631189,0.968521,0.220446,0.243291,0.163815,0.138429,0.950278,0.601475,0.688586,0.161288,0.359972,0.307391,0.731796,0.852118,0.525015,0.0702356,0.00716466,0.599682,0.162513,0.472228,0.996086,0.822999,0.144659,0.0830238,0.607021,0.929466,0.505701,0.410371,0.660701,0.343262,0.458906,0.302981,0.767026,0.947332,0.757314,0.194296,0.0565802,0.960095,0.201132,0.648828,0.0284886,0.161319,0.217587,0.273664,0.522625,0.535074,0.74905,0.859274,0.888676,0.125031,0.470187,0.16872,0.60754,0.179628,0.2446,0.76029,0.790937,0.328272,0.422764,0.373268,0.628265,0.422671,0.0937884,0.0705692,0.790553,0.60894,0.834031,0.0124854,0.0238967,0.613065,0.447203,0.905572,0.59001,0.711161,0.807284,0.391094,0.185906,0.359387,0.110812,0.296038,0.939212,0.20838,0.95129,0.235935,0.371491,0.465503,0.106415,0.408754,0.0885201,0.588941,0.685811,0.473006,0.735807,0.853339,0.0232871,0.0289446,0.264708,0.0999821,0.989477,0.183538,0.328177,0.302509,0.376239,0.718424,0.389942,0.714571,0.205617,0.0378595,0.161279,0.651185,0.703229,0.586419,0.46103,0.947691,0.112546,0.563454,0.128047,0.625749,0.865457,0.352529,0.224295,0.260949,0.711119,0.0718184,0.851016,0.334069,0.201418,0.893064,0.59003,0.252038,0.247113,0.873096,0.636649,0.437301,0.515475,0.0635818,0.204158,0.572699,0.642742,0.125912,0.651623,0.469681,0.16246,0.738199,0.624079,0.850572,0.0225736,0.784931,0.747291,0.835541,0.115426,0.0866849,0.517788,0.58458,0.81837,0.635862,0.958057,0.174025,0.495041,0.868561,0.708025,0.939168,0.219787,0.215761,0.274481,0.75661,0.727706,0.359209,0.275118,0.873783,0.0546356,0.647066,0.0610436,0.46818,0.542316,0.820617,0.790793,0.2984,0.0764041,0.0585016,0.988871,0.644824,0.744036,0.538975,0.471771,0.747433,0.442888,0.387016,0.392049,0.196382,0.48664,0.698839,0.718979,0.202796,0.207691,0.108867,0.287203,0.147053,0.744355,0.798583,0.620228,0.652384,0.379075,0.938456,0.776027,0.102102,0.89766,0.123023,0.961319,0.874111,0.869217,0.236323,0.297767,0.320751,0.0207393,0.647217,0.38045,0.310449,0.773793,0.391241,0.564309,0.682124,0.916739,0.988415,0.848547,0.089718,0.496511,0.101614,0.59993,0.191751,0.075961,0.569034,0.334546,0.506752,0.400933,0.759344,0.650743,0.970903,0.621489,0.80338,0.197016,0.986369,0.475972,0.696382,0.673333,0.221875,0.304268,0.166936,0.526334,0.857205,0.700815,0.0349101,0.438801,0.304032,0.635576,0.532202,0.151233,0.520308,0.0140736,0.86346,0.863365,0.612781,0.149441,0.0236453,0.24769,0.774024,0.86388,0.58051,0.217225,0.474376,0.652916,0.872474,0.17072,0.966239,0.504914,0.765925,0.230375,0.658834,0.824804,0.583278,0.826852,0.701054,0.975191,0.249082,0.2653,0.173498,0.924841,0.118662,0.917873,0.118803,0.114674,0.701554,0.642983,0.82676,0.462743,0.487571,0.618153,0.943967,0.541579,0.920393,0.222233,0.512376,0.503124,0.813285,0.00520843,0.73436,0.966989,0.385431,0.494091,0.563699,0.383679,0.0406888,0.0805889,0.940778,0.847827,0.0259473,0.593072,0.856443,0.769481,0.0949124,0.874648,0.488014,0.376886,0.457257,0.558698,0.137023,0.287828,0.272918,0.983628,0.173772,0.266407,0.136901,0.383628,0.215153,0.836934,0.903639,0.571763,0.96515,0.767857,0.926025,0.540322,0.307146,0.788806,0.721541,0.77954,0.139353,0.896794,0.00332969,0.250726,0.0899246,0.13656,0.0696289,0.660371,0.719305,0.196259,0.441056,0.306301,0.446494,0.873424,0.734643,0.534951,0.352251,0.0738224,0.0397167,0.119626,0.984501,0.555843,0.0439317,0.664715,0.204485,0.63318,0.75304,0.451259,0.236166,0.561163,0.947155,0.831064,0.691146,0.372598,0.554358,0.0906978,0.541691,0.156309,0.622027,0.782174,0.00356871,0.124995,0.768388,0.436081,0.862064,0.500376,0.652182,0.0533025,0.325022,0.366044,0.913071,0.405495,0.205755,0.439736,0.942519,0.215389,0.614479,0.660304,0.438491,0.50327,0.400469,0.73373,0.486573,0.916299,0.58291,0.909955,0.242214,0.0913168,0.179492,0.303874,0.699661,0.607491,0.982007,0.338635,0.912493,0.418364,0.0238515,0.329228,0.495894,0.818108,0.0232815,0.429406,0.726022,0.00741267,0.490099,0.495619,0.970815,0.700577,0.949853,0.726202,0.0803781,0.949264,0.896924,0.839665,0.491961,0.800682,0.65242,0.407094,0.66215,0.126444,0.249009,0.362717,0.852433,0.00352663,0.961868,0.999538,0.916657,0.373871,0.767208,0.490686,0.14532,0.0128293,0.419814,0.91874,0.707672,0.45214,0.0767031,0.733216,0.330395,0.719034,0.907417,0.42163,0.253471,0.087847,0.41903,0.174927,0.842916,0.497047,0.534208,0.769948,0.988097,0.285303,0.849969,0.122685,0.0780522,0.592625,0.207295,0.185205,0.459665,0.105433,0.780957,0.766191,0.254598,0.483346,0.458509,0.133898,0.0249239,0.347606,0.817436,0.582773,0.312121,0.167488,0.106643,0.265623,0.835279,0.935762,0.913234,0.164043,0.653572,0.493283,0.826284,0.49563,0.329238,0.406651,0.298292,0.595244,0.150138,0.172563,0.681675,0.983528,0.118303,0.586938,0.405543,0.775817,0.579583,0.990439,0.183078,0.871641,0.798486,0.99475,0.615925,0.593895,0.263745,0.0241324,0.22695,0.477292,0.927491,0.413383,0.927576,0.707087,0.00501686,0.805327,0.299686,0.53904,0.336609,0.486179,0.68855,0.711798,0.00314993,0.438579,0.110867,0.547338,0.808113,0.700921,0.692923,0.797984,0.0639986,0.949741,0.812464,0.377844,0.738878,0.449775,0.676379,0.790922,0.537851,0.436278,0.287125,0.809067,0.697044,0.558166,0.300173,0.695409,0.608776,0.0322326,0.0930233,0.919137,0.134834,0.943184,0.455877,0.320704,0.0694849,0.510939,0.0823399,0.265869,0.68467,0.389055,0.700086,0.741837,0.774226,0.170771,0.764383,0.817743,0.343242,0.610247,0.731333,0.566432,0.695733,0.702508,0.987513,0.206228,0.374807,0.278872,0.120702,0.8624,0.821396,0.749819,0.413655,0.290119,0.179635,0.720605,0.018402,0.850517,0.345883,0.0154553,0.153722,0.723522,0.692057,0.867866,0.150435,0.361598,0.307692,0.979161,0.178007,0.926432,0.109692,0.474397,0.937613,0.87927,0.367405,0.460567,0.660033,0.173385,0.0875981,0.108053,0.630352,0.433999,0.962892,0.212425,0.759958,0.756085,0.028761,0.627578,0.00751036,0.15521,0.377316,0.929944,0.753961,0.234104,0.318606,0.508001,0.850932,0.620596,0.842655,0.386266,0.479457,0.266687,0.8262,0.201543,0.859944,0.824524,0.524214,0.930842,0.869431,0.443296,0.887926,0.427118,0.896763,0.530552,0.586011,0.586289,0.760387,0.0863501,0.34324,0.440661,0.453109,0.0370117,0.137394,0.0392954,0.902852,0.704574,0.210889,0.383703,0.904875,0.195548,0.502122,0.102912,0.177672,0.948564,0.861368,0.823207,0.33782,0.60927,0.301636,0.382156,0.544481,0.311658,0.504871,0.376565,0.776419,0.877785,0.119979,0.203659,0.443111,0.12309,0.941558,0.398747,0.697753,0.211573,0.571007,0.0101694,0.240665,0.408247,0.824357,0.453444,0.393334,0.115944,0.832143,0.249016,0.326645,0.271882,0.291221,0.30081,0.967717,0.0627523,0.533326,0.438216,0.929542,0.72634,0.205112,0.996711,0.349258,0.00234032,0.687383,0.196945,0.420175,0.0817688,0.981119,0.0144272,0.38927,0.434019,0.1628,0.752373,0.0367727,0.903961,0.032592,0.824741,0.994313,0.143838,0.478338,0.946301,0.265586,0.882844,0.968546,0.404459,0.809548,0.715051,0.831304,0.29449,0.392864,0.950884,0.812312,0.629814,0.373663,0.842532,0.924967,0.418739,0.0311807,0.910008,0.976787,0.129499,0.681568,0.654332,0.828047,0.344542,0.557836,0.820715,0.538504,0.262593,0.663558,0.543608,0.285939,0.0847911,0.475556,0.97579,0.0159924,0.439413,0.0879828,0.723803,0.2126,0.869572,0.713527,0.791648,0.683752,0.721828,0.335001,0.66705,0.438217,0.963174,0.33555,0.946616,0.6075,0.145418,0.000760615,0.233579,0.3109,0.341971,0.458882,0.897819,0.128559,0.343616,0.957856,0.039924,0.914973,0.387747,0.455561,0.227565,0.679861,0.199254,0.68831,0.0432234,0.945867,0.482748,0.48078,0.410757,0.776693,0.210472,0.773262,0.0444968,0.1401,0.225915,0.34401,0.0603454,0.987039,0.426677,0.375955,0.0290185,0.498124,0.572852,0.465339,0.389435,0.771147,0.841556,0.443739,0.0551552,0.55723,0.0426188,0.428289,0.460088,0.699273,0.058507,0.942797,0.46293,0.0973947,0.00618714,0.378731,0.0410833,0.929316,0.0797682,0.952167,0.376093,0.133562,0.0625594,0.329159,0.831885,0.85388,0.675638,0.335951,0.992844,0.113197,0.289218,0.391578,0.354445,0.973946,0.0977774,0.912887,0.718152,0.10746,0.212405,0.322737,0.738121,0.490662,0.507845,0.568904,0.262113,0.905705,0.852466,0.0502428,0.948111,0.110983,0.444412,0.291507,0.634584,0.536807,0.824791,0.976159,0.818229,0.843562,0.68361,0.149602,0.975149,0.645852,0.95006,0.11224,0.108706,0.0318461,0.210872,0.434893,0.163389,0.607548,0.938813,0.707697,0.0657137,0.866903,0.0145663,0.474046,0.461723,0.516943,0.788252,0.334442,0.771912,0.596411,0.954521,0.816236,0.402297,0.0622317,0.817404,0.752629,0.337276,0.294735,0.0585092,0.841859,0.0172353,0.359584,0.0419017,0.43556,0.236869,0.657422,0.623629,0.208426,0.146256,0.946181,0.691264,0.0294845,0.176287,0.776112,0.875679,0.830419,0.482864,|0.706803,0.16974,0.555937,0.107478,0.938752,0.697675,0.779649,0.0629392,0.398656,0.248224,0.325721,0.250184,0.848479,0.100479,0.832878,0.132632,0.492263,0.195425,0.108156,0.353854,0.283538,0.471925,0.991932,0.590771,0.208303,0.773452,0.0924407,0.0884933,0.284257,0.458819,0.1865,0.855079,0.96722,0.0545466,0.80014,0.385633,0.76858,0.894484,0.675127,0.68549,0.513002,0.577133,0.73646,0.234369,0.271314,0.990919,0.402861,0.664457,0.423568,0.821452,0.169832,0.226129,0.101655,0.318257,0.696325,0.805266,0.976907,0.662255,0.152227,0.0364705,0.816872,0.707435,0.256154,0.102052,0.836365,0.191522,0.665421,0.568769,0.566804,0.0411974,0.272407,0.144169,0.0737362,0.767701,0.501565,0.932487,0.956445,0.395695,0.791176,0.187357,0.682402,0.252192,0.420354,0.322861,0.365108,0.960054,0.769393,0.451759,0.0195081,0.781753,0.912818,0.0317509,0.504264,0.308894,0.442733,0.98141,0.801444,0.267893,0.426296,0.421534,0.857805,0.96299,0.246366,0.330993,0.0832136,0.928332,0.873553,0.30244,0.805456,0.520537,0.214275,0.616549,0.329639,0.144395,0.737771,0.0615041,0.246171,0.674634,0.724105,0.668969,0.555753,0.387684,0.803154,0.81066,0.26924,0.323549,0.0106905,0.674455,0.577317,0.735319,0.729486,0.0385846,0.756013,0.734224,0.849122,0.290535,0.017894,0.778017,0.297307,0.280071,0.712688,0.707658,0.618799,0.402791,0.125467,0.549934,0.965599,0.305005,0.779649,0.191719,0.573615,0.71468,0.989346,0.192345,0.14833,0.353847,0.378178,0.687887,0.9897,0.420189,0.798637,0.644331,0.726825,0.352551,0.769522,0.651991,0.120274,0.455546,0.227712,0.545581,0.698451,0.283486,0.792221,0.736707,0.586693,0.345263,0.843784,0.0325456,0.118465,0.476731,0.756038,0.789891,0.324604,0.178506,0.927717,0.944934,0.187246,0.512062,0.178075,0.0162988,0.852538,0.477688,0.452833,0.593243,0.818417,0.751827,0.644966,0.54135,0.535241,0.635814,0.827356,0.134209,0.793346,0.729941,0.425025,0.539279,0.859418,0.350605,0.934675,0.352681,0.711392,0.599927,0.917244,0.18146,0.735755,0.480062,0.910776,0.908628,0.302885,0.0221292,0.942306,0.398809,0.71961,0.488642,0.902438,0.178083,0.399048,0.212481,0.955942,0.429269,0.940163,0.938947,0.154848,0.461124,0.506124,0.261498,0.723235,0.451575,0.869424,0.735398,0.921718,0.46361,0.0732428,0.084164,0.588265,0.0892129,0.737098,0.0926496,0.693389,0.333949,0.172779,0.0987246,0.448621,0.798672,0.880498,0.612293,0.690439,0.449488,0.868883,0.548069,0.660414,0.362469,0.179401,0.970926,0.852805,0.393825,0.0236942,0.00881809,0.379811,0.482961,0.248702,0.232191,0.171034,0.641675,0.718006,0.118055,0.259838,0.014081,0.390267,0.00674015,0.619102,0.977138,0.707112,0.0683174,0.441408,0.690639,0.799366,0.528305,0.651797,0.859981,0.067423,0.532353,0.20705,0.520851,0.318442,0.814663,0.31931,0.508385,0.0947244,0.760716,0.736439,0.948953,0.579092,0.203753,0.668511,0.543122,0.197213,0.379267,0.0169708,0.0393659,0.482068,0.215948,0.800754,0.770699,0.0595378,0.700221,0.555974,0.121466,0.814848,0.56438,0.430174,0.010478,0.200688,0.229427,0.101074,0.451044,0.0991789,0.483312,0.720875,0.434414,0.72398,0.00436926,0.0974163,0.589588,0.956623,0.957274,0.289374,0.0114638,0.0305894,0.605995,0.481862,0.873272,0.275687,0.381803,0.260728,0.14058,0.281492,0.554927,0.899386,0.262271,0.840592,0.741143,0.5681,0.597909,0.872678,0.989799,0.23642,0.741846,0.448418,0.546964,0.68511,0.920126,0.420948,0.567761,0.103653,0.0472596,0.664561,0.882301,0.0241101,0.0152968,0.913665,0.585094,0.081054,0.0558659,0.790986,0.260966,0.527946,0.928978,0.986451,0.819542,0.592819,0.216056,0.918631,0.541139,0.129922,0.158025,0.40124,0.282394,0.953448,0.241248,0.202883,0.0566295,0.44882,0.599123,0.850079,0.553067,0.258705,0.423876,0.909636,0.740339,0.0503367,0.578503,0.0432206,0.0236465,0.855581,0.33053,0.125325,0.496446,0.193377,0.979148,0.754903,0.464404,0.650853,0.752279,0.434542,0.288339,0.0482675,0.325903,0.842722,0.633054,0.708978,0.200775,0.639944,0.790838,0.67008,0.87509,0.723582,0.132839,0.825913,0.514882,0.603509,0.697486,0.859849,0.697441,0.204888,0.61641,0.334071,0.129572,0.686762,0.393927,0.251085,0.107366,0.0773211,0.427636,0.731272,0.535343,0.754826,0.764262,0.0304937,0.262436,0.0645179,0.553925,0.00415123,0.629946,0.311221,0.977439,0.444735,0.225914,0.84369,0.026975,0.995405,0.174539,0.356078,0.616855,0.170206,0.798369,0.591726,0.624851,0.0580194,0.96182,0.582317,0.504868,0.646976,0.037355,0.0828297,0.690585,0.144648,0.647093,0.670589,0.6332,0.992074,0.572181,0.416274,0.6414,0.996741,0.306508,0.770097,0.00901908,0.98258,0.865762,0.67041,0.547939,0.982612,0.794667,0.330026,0.44591,0.309326,0.322186,0.167818,0.370909,0.638678,0.837756,0.0766542,0.186897,0.525894,0.700161,0.380265,0.470592,0.360708,0.941732,0.812309,0.635446,0.337725,0.544359,0.259664,0.868955,0.38435,0.9388,0.841525,0.069502,0.231312,0.661574,0.0268336,0.479379,0.310563,0.164061,0.527258,0.384033,0.507505,0.88895,0.00562418,0.588125,0.931426,0.473316,0.295823,0.167648,0.998427,0.614628,0.301723,0.543676,0.944929,0.0421826,0.229063,0.173808,0.921411,0.836903,0.351138,0.836129,0.186796,0.0929779,0.811275,0.980696,0.282065,0.108217,0.0412814,0.897193,0.223847,0.523489,0.641635,0.907048,0.930632,0.958131,0.0167423,0.822239,0.799536,0.437637,0.431249,0.447261,0.141824,0.0318578,0.304397,0.0443056,0.712994,0.0654424,0.519047,0.922645,0.802721,0.477278,0.554799,0.843287,0.820155,0.820329,0.790803,0.791138,0.449498,0.610918,0.666806,0.177944,0.509881,0.53983,0.526972,0.303283,0.558827,0.919825,0.385395,0.689542,0.137917,0.303159,0.573008,0.101628,0.272881,0.843783,0.777358,0.129246,0.265907,0.125355,0.935758,0.951685,0.648965,0.149226,0.0671253,0.227927,0.0179243,0.847926,0.759926,0.435853,0.869506,0.678388,0.461471,0.0778712,0.726719,0.950056,0.434766,0.626506,0.208756,0.384075,0.864494,0.892896,0.522964,0.249719,0.462443,0.876535,0.0294909,0.737118,0.150042,0.732027,0.525998,0.841475,0.74512,0.0712122,0.821959,0.162687,0.799812,0.816855,0.00387424,0.845461,0.718697,0.617332,0.731977,0.444013,0.661056,0.719301,0.0661757,0.271255,0.35242,0.185604,0.446415,0.887012,0.98043,0.819622,0.351455,0.198701,0.603854,0.132018,0.0263973,0.814707,0.916524,0.277625,0.337278,0.778669,0.94942,0.275738,0.843578,0.493004,0.935961,0.764154,0.791909,0.477379,0.949695,0.0133392,0.579315,0.372405,0.223582,0.354675,0.204943,0.208265,0.88535,0.699986,0.761186,0.434639,0.996247,0.890003,0.612054,0.890531,0.552509,0.494964,0.425805,0.126596,0.27906,0.612187,0.217002,0.58695,0.556354,0.171716,0.155858,0.813594,0.844423,0.733045,0.502577,0.113643,0.907549,0.0458304,0.0775078,0.162556,0.580337,0.928486,0.00834793,0.0858757,0.322703,0.397191,0.246607,0.295368,0.713626,0.333089,0.771527,0.0609471,0.139661,0.923503,0.350161,0.719776,0.939966,0.518252,0.672289,0.576898,0.678254,0.286859,0.622993,0.457089,0.062387,0.485314,0.536781,0.566574,0.401478,0.300763,0.224042,0.662383,0.757627,0.44275,0.697438,0.0894647,0.717538,0.823584,0.312781,0.709715,0.750488,0.896318,0.688437,0.075247,0.220887,0.364789,0.807221,0.0979637,0.657476,0.160282,0.697008,0.321664,0.968785,0.759801,0.663639,0.599847,0.791136,0.904488,0.481186,0.756137,0.997247,0.320483,0.227621,0.470935,0.00535125,0.183792,0.651815,0.13067,0.105223,0.721386,0.0170162,0.519801,0.896745,0.529928,0.322618,0.266779,0.754114,0.325109,0.773626,0.227217,0.563329,0.415929,0.211591,0.135526,0.916313,0.492392,0.180065,0.622658,0.451059,0.194451,0.571033,0.624619,0.456952,0.655806,0.0340339,0.275633,0.638775,0.894335,0.821263,0.638169,0.163964,0.913697,0.814017,0.727813,0.863439,0.772675,0.85759,0.139794,0.691505,0.347639,0.858524,0.668321,0.965188,0.426983,0.135638,0.97001,0.709806,0.700461,0.0904544,0.468309,0.811242,0.243027,0.56052,0.248703,0.913515,0.0623797,0.604759,0.841347,0.170905,0.833783,0.580337,0.414797,0.149529,0.964222,0.0990102,0.616632,0.951315,0.0384367,0.537379,0.461682,0.363394,0.906304,0.372955,0.0886631,0.370291,0.077585,0.41228,0.73964,0.490286,0.877233,0.921721,0.529599,0.774993,0.834055,0.310126,0.128175,0.944212,0.289401,0.505345,0.771093,0.868679,0.279035,0.261508,0.183792,0.179485,0.666888,0.806962,0.856448,0.546247,0.0128604,0.67832,0.10705,0.748094,0.410594,0.855518,0.242294,0.831677,0.00384319,0.284189,0.890791,0.465785,0.671696,0.695654,0.315918,0.932784,0.713321,0.158478,0.602133,0.530955,0.722716,0.418327,0.813264,0.82368,0.147947,0.942546,0.695448,0.766475,0.0428709,0.733896,0.0979903,0.182276,0.0433797,0.0485997,0.272759,0.580228,0.66281,0.989811,0.416717,0.787534,0.116492,0.677387,0.103904,0.545549,0.978126,0.355116,0.271093,0.955403,0.0690879,0.0137082,0.830975,0.63736,0.185309,0.508281,0.500648,0.769293,0.249292,0.586359,0.486184,0.0430602,0.699922,0.744508,0.717382,0.657236,0.881514,0.305351,0.347387,0.742638,0.713608,0.843031,0.496458,0.262011,0.266876,0.471531,0.356578,0.321576,0.465178,0.00720465,0.973261,0.0489363,0.011219,0.680477,0.515806,0.99099,0.629238,0.654506,0.696509,0.0925003,0.58592,0.155771,0.493759,0.920431,0.0775534,0.697536,0.857375,0.0177206,0.548966,0.465105,0.306915,0.405767,0.225854,0.18345,0.517627,0.470928,0.0135276,0.58087,0.58518,0.0353354,0.626657,0.0332434,0.412148,0.76218,0.65506,0.603821,0.189271,0.83923,0.35202,|0.980489,0.951704,0.717441,0.760261,0.634619,0.563932,0.227609,0.167671,0.233835,0.411983,0.662645,0.746532,0.343621,0.620434,0.794591,0.983407,0.525697,0.835299,0.0766634,0.997544,0.444435,0.620776,0.492435,0.836541,0.546986,0.27,0.912216,0.663671,0.320396,0.681872,0.945385,0.468918,0.0603567,0.886368,0.206059,0.362437,0.064506,0.727757,0.28027,0.792803,0.255253,0.149786,0.30128,0.80245,0.318382,0.325017,0.693344,0.912789,0.670733,0.517293,0.0286339,0.680372,0.759263,0.388915,0.938866,0.72766,0.565436,0.204811,0.695552,0.594369,0.590974,0.0609059,0.0201493,0.19523,0.562318,0.735129,0.691973,0.158411,0.692116,0.169796,0.0440744,0.901992,0.796306,0.825337,0.0383157,0.256397,0.463009,0.924232,0.535566,0.397964,0.850443,0.799192,0.086667,0.823422,0.1856,0.171408,0.509839,0.174291,0.383552,0.199826,0.709985,0.528673,0.945056,0.46317,0.445026,0.919836,0.0253291,0.157083,0.933372,0.776669,0.723122,0.73933,0.716141,0.551684,0.12133,0.101121,0.616088,0.693993,0.56097,0.919923,0.433386,0.302125,0.131007,0.888017,0.456841,0.260213,0.0572091,0.921629,0.97885,0.191144,0.444736,0.463454,0.356013,0.39252,0.218718,0.0249235,0.946138,0.723688,0.952756,0.341799,0.508931,0.662481,0.0544064,0.0972097,0.306272,0.406715,0.652238,0.454459,0.512766,0.892158,0.497395,0.629525,0.917922,0.818295,0.955333,0.240139,0.942891,0.64655,0.465582,0.784865,0.375041,0.635169,0.567663,0.108143,0.196922,0.711976,0.902066,0.360803,0.0307543,0.373647,0.86038,0.514934,0.993647,0.471491,0.427848,0.878227,0.853233,0.450416,0.509812,0.426071,0.286653,0.237736,0.121334,0.575536,0.612966,0.0832937,0.197977,0.0164674,0.00157201,0.485278,0.291068,0.0430996,0.716265,0.456569,0.786069,0.679674,0.11751,0.982762,0.694603,0.0595042,0.654378,0.136274,0.56097,0.708711,0.928674,0.926201,0.497404,0.740561,0.272214,0.173772,0.457403,0.834452,0.0612578,0.7271,0.656515,0.949678,0.114729,0.377913,0.194755,0.875303,0.998597,0.726404,0.274199,0.230486,0.410068,0.617028,0.449416,0.171835,0.116246,0.277663,0.789029,0.982822,0.927773,0.400134,0.273512,0.04814,0.941987,0.502501,0.46948,0.399642,0.0358309,0.558641,0.954005,0.161442,0.642284,0.539555,0.929199,0.764715,0.310024,0.233143,0.536542,0.886452,0.0980808,0.210667,0.629222,0.252783,0.944176,0.584249,0.939852,0.0486323,0.139079,0.28807,0.781223,0.0089103,0.130275,0.942146,0.375425,0.364324,0.726942,0.71614,0.257849,0.761184,0.944292,0.27767,0.754844,0.577418,0.212302,0.822493,0.488201,0.0271349,0.202583,0.376005,0.349879,0.780697,0.858916,0.152658,0.691854,0.451431,0.781036,0.191749,0.850091,0.16624,0.784565,0.13533,0.825298,0.256395,0.581972,0.99575,0.384806,0.620051,0.154379,0.284728,0.56797,0.395808,0.206097,0.640041,0.186814,0.856966,0.529379,0.28867,0.608302,0.351494,0.537482,0.873665,0.221844,0.791246,0.535242,0.48851,0.541643,0.182636,0.9666,0.0366554,0.989096,0.360747,0.255279,0.140248,0.218029,0.541511,0.714288,0.418481,0.408717,0.908673,0.7771,0.494231,0.388202,0.844952,0.00365406,0.456757,0.547821,0.307786,0.937037,0.960213,0.395175,0.727286,0.136141,0.659539,0.885639,0.125845,0.780517,0.332399,0.562324,0.756886,0.127209,0.873494,0.659552,0.00221813,0.472586,0.15218,0.633678,0.520803,0.10524,0.775763,0.301943,0.363334,0.228347,0.568674,0.531016,0.0484491,0.185147,0.750487,0.827425,0.974289,0.567231,0.00180268,0.318805,0.890576,0.443778,0.0605241,0.0766728,0.285127,0.91955,0.0748807,0.751942,0.438392,0.038772,0.529104,0.0324962,0.630256,0.776722,0.954493,0.74389,0.966771,0.234567,0.748445,0.613545,0.0742304,0.94725,0.500894,0.440088,0.139198,0.145596,0.0728462,0.813665,0.19608,0.858077,0.811217,0.891048,0.703328,0.979635,0.952139,0.0248787,0.515557,0.289068,0.85659,0.573965,0.995283,0.846163,0.0682915,0.230827,0.200024,0.721913,0.40821,0.764386,0.993758,0.440453,0.873785,0.485529,0.285548,0.609556,0.765128,0.487213,0.853933,0.634737,0.507619,0.344469,0.63903,0.393507,0.633763,0.771629,0.160986,0.207306,0.109283,0.838811,0.696743,0.503314,0.514968,0.425352,0.836113,0.0490621,0.0855085,0.606495,0.599038,0.0349138,0.293748,0.55752,0.41828,0.509395,0.661867,0.0549833,0.847275,0.796118,0.967984,0.968017,0.953156,0.145321,0.289685,0.111302,0.550863,0.29159,0.300442,0.791058,0.476412,0.359513,0.872398,0.873767,0.365648,0.00458658,0.50071,0.0399508,0.726716,0.2007,0.367941,0.471676,0.203163,0.66699,0.653004,0.264725,0.648559,0.637332,0.476149,0.656496,0.55099,0.373384,0.305825,0.52471,0.909432,0.91166,0.656678,0.491556,0.553443,0.51361,0.773751,0.296748,0.327069,0.512791,0.217285,0.911319,0.336712,0.898748,0.133999,0.0919036,0.527397,0.904927,0.352115,0.422807,0.290174,0.855898,0.729341,0.793845,0.923121,0.645344,0.588152,0.437511,0.79204,0.267657,0.397565,0.146917,0.212114,0.842105,0.277193,0.253259,0.846068,0.525488,0.308975,0.398134,0.532038,0.974265,0.697628,0.291701,0.972034,0.553874,0.969687,0.903006,0.430619,0.472612,0.633928,0.405925,0.663771,0.652554,0.304582,0.71724,0.180379,0.899846,0.365265,0.114824,0.244922,0.473214,0.980282,0.163704,0.332632,0.324338,0.519439,0.455306,0.902987,0.11668,0.902839,0.470709,0.751618,0.577564,0.911421,0.799107,0.190243,0.752968,0.139216,0.600204,0.72265,0.772186,0.471209,0.264894,0.909862,0.269498,0.621661,0.130465,0.439784,0.124675,0.956248,0.431033,0.407584,0.0919801,0.714752,0.843425,0.140283,0.17271,0.564806,0.657458,0.193388,0.948385,0.730607,0.424084,0.616934,0.170208,0.537749,0.473907,0.885804,0.91702,0.17935,0.863208,0.344327,0.460919,0.255394,0.216682,0.994944,0.254066,0.749481,0.325391,0.53688,0.619727,0.451181,0.745422,0.157499,0.212211,0.140012,0.15214,0.0594127,0.922665,0.452696,0.08257,0.641883,0.265461,0.748507,0.0165198,0.15456,0.179704,0.0870231,0.574852,0.339793,0.657472,0.268524,0.777672,0.593413,0.433028,0.382527,0.352698,0.67739,0.788733,0.022207,0.277809,0.512454,0.149201,0.628911,0.412982,0.176461,0.700144,0.556037,0.248466,0.612167,0.97506,0.871392,0.893391,0.687087,0.691276,0.635426,0.621103,0.503467,0.619195,0.225116,0.027666,0.189764,0.813727,0.595114,0.153482,0.966008,0.850933,0.430205,0.554481,0.0836181,0.367066,0.638374,0.642523,0.747652,0.677532,0.255727,0.46092,0.85476,0.7707,0.8398,0.311141,0.85619,0.771717,0.222893,0.421611,0.0136863,0.272504,0.0232975,0.980559,0.850411,0.305335,0.912901,0.84019,0.225786,0.353402,0.836279,0.875186,0.391924,0.541902,0.49611,0.111424,0.263401,0.245575,0.144984,0.100044,0.560709,0.965602,0.476091,0.847186,0.0650313,0.854071,0.125847,0.0480165,0.975639,0.444181,0.150034,0.599622,0.45133,0.330163,0.683209,0.690613,0.0918128,0.993568,0.57777,0.602463,0.603688,0.423706,0.749624,0.530013,0.903744,0.724512,0.46567,0.827993,0.273422,0.342698,0.630966,0.828087,0.469549,0.335504,0.162172,0.945561,0.0940842,0.863246,0.34086,0.051381,0.3516,0.619226,0.287857,0.103155,0.648618,0.3483,0.397254,0.0460362,0.926989,0.811385,0.749618,0.18092,0.297487,0.15625,0.345522,0.382501,0.409077,0.105869,0.57507,0.570065,0.689085,0.903058,0.122891,0.188808,0.388483,0.424044,0.373434,0.669927,0.929816,0.217219,0.620683,0.639563,0.175415,0.934578,0.750549,0.00956947,0.977334,0.0211712,0.472427,0.66246,0.0560536,0.46755,0.187827,0.222279,0.875624,0.899406,0.310425,0.873447,0.676149,0.761761,0.0450091,0.887873,0.836729,0.489759,0.239737,0.90139,0.642375,0.834386,0.63083,0.238798,0.999502,0.903443,0.640593,0.385749,0.618635,0.103056,0.0989187,0.0203018,0.467209,0.842241,0.497586,0.0743315,0.740686,0.819257,0.628641,0.455951,0.0194429,0.693049,0.506964,0.271388,0.075308,0.246705,0.0505793,0.163006,0.00887346,0.991248,0.202638,0.716316,0.918625,0.529108,0.150412,0.439459,0.36543,0.754493,0.878663,0.71549,0.802668,0.390907,0.28721,0.682035,0.127207,0.765209,0.693864,0.28205,0.428198,0.640791,0.322593,0.848724,0.650533,0.965824,0.687949,0.565562,0.55035,0.665051,0.629092,0.711032,0.292724,0.688043,0.81778,0.280616,0.45208,0.624529,0.124053,0.201689,0.997709,0.557896,0.661409,0.993419,0.623875,0.380468,0.811069,0.681672,0.340976,0.92123,0.837725,0.826961,0.786852,0.984428,0.96969,0.98705,0.939889,0.517485,0.861579,0.0828189,0.269838,0.17768,0.911275,0.433854,0.938385,0.947745,0.301409,0.34766,0.206646,0.0347618,0.436613,0.800276,0.206802,0.435754,0.345547,0.833103,0.0119607,0.780761,0.158109,0.0362057,0.42437,0.934203,0.55509,0.0135058,0.366957,0.200617,0.0378764,0.943031,0.0335521,0.411525,0.169849,0.377457,0.762736,0.549052,0.979158,0.636451,0.441197,0.860314,0.774401,0.182544,0.719568,0.814718,0.30863,0.438329,0.275972,0.85654,0.592277,0.600618,0.658301,0.754735,0.909328,0.477467,0.921974,0.0904939,0.525859,0.223926,0.22405,0.0234787,0.455768,0.655162,0.268108,0.229719,0.289664,0.803143,0.897178,0.76251,0.220264,0.751483,0.744162,0.617517,0.146838,0.248413,0.518925,0.897156,0.22991,0.620565,0.825227,0.884451,0.75671,0.25727,0.703049,0.828146,0.327983,0.781646,0.770975,0.296811,0.0809262,0.0569203,0.935763,0.728168,0.907716,0.693519,0.480646,0.386251,0.443973,0.675062,0.199916,0.132252,0.0245878,0.840133,0.373107,0.522843,0.517137,0.0524332,0.819239,0.367326,0.557148,0.802088,0.285923,0.790742,0.640969,0.204311,0.488332,0.738067,0.236281,|0.59703,0.703532,0.77895,0.751332,0.430468,0.404722,0.103817,0.323621,0.076051,0.712435,0.125386,0.223549,0.813235,0.925048,0.369675,0.586487,0.122662,0.519888,0.37081,0.704301,0.771792,0.552122,0.655049,0.825399,0.607572,0.0965487,0.0954333,0.406523,0.00280178,0.356492,0.424259,0.387946,0.115409,0.366271,0.58425,0.729977,0.425724,0.619405,0.372167,0.0609984,0.914089,0.462414,0.755415,0.0326006,0.119322,0.94145,0.306915,0.615084,0.228901,0.0727916,0.880731,0.901536,0.512762,0.851249,0.710611,0.808794,0.588731,0.864828,0.493339,0.395166,0.298668,0.411127,0.0456114,0.102883,0.0677094,0.85563,0.334006,0.556527,0.485457,0.408262,0.989849,0.194934,0.428544,0.430684,0.632664,0.831086,0.828925,0.150109,0.33529,0.908148,0.845695,0.104421,0.770116,0.676568,0.650174,0.308264,0.504922,0.273315,0.341251,0.645609,0.0343754,0.535151,0.247988,0.757673,0.428939,0.741174,0.272698,0.832526,0.651065,0.738668,0.641784,0.977658,0.274074,0.0523864,0.478052,0.578324,0.486988,0.114328,0.425289,0.303452,0.43155,0.622684,0.394345,0.310529,0.838676,0.260081,0.608582,0.869957,0.999025,0.608405,0.574987,0.183009,0.511031,0.145533,0.465546,0.413301,0.677231,0.0305341,0.198444,0.651517,0.893024,0.44282,0.970767,0.499436,0.718659,0.741743,0.969647,0.658926,0.704166,0.554841,0.408081,0.441089,0.708521,0.531094,0.158251,0.74944,0.142862,0.131689,0.154964,0.581774,0.980209,0.791845,0.518246,0.401642,0.166523,0.619404,0.0121683,0.255087,0.290984,0.386099,0.857311,0.685901,0.598795,0.778931,0.482051,0.222022,0.753685,0.0537345,0.831741,0.59419,0.624553,0.858777,0.677684,0.0862651,0.515215,0.0101364,0.79248,0.00733036,0.270076,0.00272512,0.894744,0.469434,0.40168,0.415696,0.0893913,0.0709978,0.929932,0.698194,0.71746,0.4845,0.0014351,0.34545,0.397966,0.396116,0.946744,0.243317,0.889406,0.598122,0.795502,0.190481,0.605984,0.662567,0.457957,0.327836,0.863563,0.772399,0.30243,0.817196,0.353351,0.239222,0.520795,0.0832088,0.498485,0.721858,0.589477,0.174736,0.917656,0.487047,0.654983,0.719017,0.524177,0.476139,0.19967,0.347281,0.552555,0.700876,0.416742,0.622151,0.621095,0.356755,0.718359,0.512648,0.307123,0.325327,0.479085,0.576824,0.41244,0.167744,0.476482,0.727255,0.633731,0.144246,0.887965,0.688325,0.572379,0.843021,0.251679,0.196159,0.658295,0.190171,0.13281,0.781359,0.271952,0.512304,0.106145,0.642003,0.792865,0.56023,0.497818,0.555814,0.373123,0.0643777,0.574437,0.0536637,0.0248012,0.9864,0.411361,0.73585,0.45238,0.494728,0.170489,0.875303,0.918848,0.756202,0.0501409,0.698979,0.653969,0.197309,0.0769752,0.147192,0.365834,0.696687,0.715234,0.23675,0.982184,0.300741,0.0512761,0.997966,0.18361,0.119344,0.86452,0.195881,0.0248183,0.656973,0.502721,0.258416,0.404271,0.494418,0.698776,0.12566,0.684874,0.550107,0.100271,0.354881,0.148866,0.480455,0.92636,0.147933,0.964878,0.0542051,0.519039,0.818895,0.769874,0.666271,0.693714,0.378792,0.0939358,0.816305,0.263193,0.893355,0.780491,0.474834,0.727716,0.116239,0.53628,0.568599,0.131367,0.506949,0.0931265,0.493189,0.972165,0.821139,0.279865,0.785273,0.661422,0.759432,0.0782914,0.669519,0.840979,0.91262,0.796427,0.281274,0.0134298,0.746257,0.619291,0.424729,0.679328,0.118668,0.00989205,0.0793732,0.757726,0.559587,0.0339891,0.32441,0.432598,0.067209,0.298028,0.804148,0.514384,0.948805,0.462381,0.309984,0.477635,0.962706,0.365772,0.0705054,0.589297,0.38262,0.171067,0.594599,0.373031,0.605306,0.590011,0.11789,0.0639875,0.559106,0.31308,0.0173798,0.133687,0.0297169,0.592398,0.915666,0.0448306,0.988689,0.724985,0.967206,0.540987,0.0832586,0.553554,0.922977,0.140278,0.578711,0.600983,0.961699,0.748637,0.238796,0.494438,0.208652,0.847467,0.861436,0.85463,0.521642,0.516322,0.545177,0.396163,0.503228,0.863765,0.526542,0.0768998,0.176815,0.124515,0.978644,0.420071,0.0617719,0.142458,0.808733,0.303268,0.880774,0.565701,0.268478,0.327177,0.884265,0.122123,0.220992,0.196426,0.202447,0.854682,0.705331,0.168044,0.13838,0.0264327,0.399271,0.242797,0.489176,0.358152,0.983612,0.210843,0.620385,0.600514,0.353635,0.719777,0.15144,0.165827,0.313511,0.390033,0.928075,0.520575,0.961336,0.856829,0.91319,0.54728,0.684798,0.0923554,0.78598,0.920067,0.752073,0.50158,0.532209,0.156647,0.121894,0.763471,0.155961,0.723566,0.294535,0.672698,0.505956,0.544472,0.315228,0.268143,0.35962,0.078598,0.801532,0.372551,0.648456,0.99752,0.447901,0.104386,0.859303,0.289176,0.199325,0.90123,0.374183,0.692728,0.601225,0.426771,0.416488,0.408921,0.0524985,0.433227,0.440256,0.995362,0.539879,0.562619,0.222209,0.689896,0.0681406,0.089364,0.628756,0.138079,0.191843,0.45557,0.134298,0.122917,0.758134,0.263203,0.543049,0.343365,0.79614,0.0952871,0.284827,0.320074,0.883681,0.178252,0.743175,0.570257,0.617172,0.682622,0.544576,0.993743,0.355623,0.9684,0.888983,0.211292,0.280775,0.494818,0.798292,0.966885,0.818511,0.701338,0.460486,0.724648,0.219951,0.148784,0.783676,0.840031,0.616332,0.900994,0.417034,0.704896,0.500934,0.511888,0.103077,0.38401,0.0553669,0.00478023,0.0835841,0.122067,0.412969,0.0405724,0.901879,0.471963,0.107549,0.705145,0.987062,0.670443,0.453005,0.244944,0.442963,0.686079,0.569959,0.801677,0.965007,0.535957,0.152061,0.501312,0.0775751,0.0438173,0.0324031,0.356424,0.969616,0.0486061,0.940103,0.299994,0.95445,0.775115,0.119435,0.631954,0.493811,0.9533,0.394096,0.724711,0.885082,0.351089,0.0545716,0.0030598,0.69725,0.564661,0.00934374,0.509903,0.887407,0.961412,0.484409,0.0925578,0.409749,0.667817,0.517674,0.26693,0.443906,0.4105,0.121344,0.809282,0.857903,0.684918,0.175845,0.408555,0.179711,0.535929,0.0729559,0.429819,0.188547,0.225173,0.563764,0.937356,0.846925,0.285099,0.414981,0.727022,0.234612,0.855335,0.223603,0.240205,0.379011,0.231106,0.455416,0.226356,0.312745,0.861837,0.431844,0.43639,0.490661,0.20486,0.7458,0.81859,0.0779071,0.802968,0.648652,0.510632,0.485829,0.33439,0.439301,0.49684,0.707333,0.446466,0.51805,0.670256,0.470514,0.411522,0.732991,0.301371,0.383525,0.832212,0.591286,0.0735896,0.23564,0.434687,0.715754,0.279028,0.41027,0.177876,0.769123,0.958618,0.499828,0.781839,0.170448,0.507909,0.0833449,0.000221848,0.743815,0.789967,0.752805,0.734337,0.543823,0.817241,0.162512,0.23789,0.44758,0.512599,0.571853,0.724131,0.187356,0.460221,0.691505,0.395925,0.350648,0.616568,0.797048,0.484062,0.28604,0.480003,0.857512,0.804663,0.927004,0.177485,0.187818,0.00245059,0.608132,0.873262,0.449655,0.293702,0.100541,0.718725,0.46206,0.702124,0.854601,0.221364,0.629155,0.742188,0.894166,0.214112,0.979017,0.948301,0.577266,0.271789,0.212583,0.0274401,0.304045,0.856828,0.718155,0.809435,0.450427,0.517471,0.892487,0.553603,0.0972785,0.0991443,0.487994,0.791383,0.074261,0.991846,0.159362,0.817211,0.394959,0.00831932,0.249109,0.546961,0.872277,0.744427,0.809191,0.91907,0.109554,0.0764144,0.361654,0.274864,0.494566,0.363641,0.205427,0.566133,0.622567,0.0464306,0.121798,0.902002,0.0467175,0.474423,0.7095,0.0201967,0.3817,0.996711,0.878733,0.937091,0.226361,0.783149,0.961711,0.89571,0.44876,0.684254,0.569731,0.645851,0.481922,0.528064,0.788801,0.339849,0.269557,0.161198,0.963902,0.402057,0.65114,0.88662,0.00419551,0.343104,0.676108,0.45019,0.818186,0.218557,0.520815,0.342548,0.768153,0.277435,0.513355,0.0310847,0.0132874,0.946668,0.881587,0.382227,0.114963,0.258965,0.601668,0.513291,0.109453,0.16244,0.207252,0.0608357,0.061967,0.287603,0.188682,0.828032,0.748061,0.0489143,0.276055,0.631532,0.593328,0.575654,0.801723,0.799261,0.504345,0.772277,0.000186682,0.747332,0.60886,0.727168,0.45137,0.349323,0.658998,0.0957138,0.393704,0.906672,0.541382,0.322009,0.167917,0.99232,0.898651,0.828457,0.764391,0.551196,0.343954,0.85272,0.699493,0.883449,0.093318,0.247404,0.32852,0.0300683,0.757214,0.229207,0.846959,0.321844,0.326033,0.64663,0.980147,0.603151,0.738434,0.541695,0.650189,0.682168,0.0205184,0.295175,0.579498,0.307507,0.655672,0.920704,0.405417,0.130999,0.96737,0.238073,0.143039,0.305502,0.408838,0.649718,0.643419,0.584873,0.276235,0.665284,0.579739,0.576393,0.251344,0.163131,0.671388,0.687458,0.426406,0.469969,0.721161,0.0242717,0.0604616,0.949515,0.330912,0.666871,0.800847,0.641825,0.860077,0.510431,0.818378,0.755219,0.718515,0.558229,0.972838,0.19306,0.387544,0.0136805,0.336665,0.254048,0.870376,0.451879,0.716663,0.110145,0.545793,0.864983,0.996716,0.0940334,0.891475,0.144432,0.732455,0.579028,0.120656,0.0739796,0.812338,0.330996,0.366871,0.473251,0.301367,0.335225,0.476032,0.744702,0.311291,0.946844,0.0237195,0.129135,0.957497,0.682091,0.317393,0.35956,0.850327,0.539611,0.660262,0.085297,0.48426,0.692659,0.315781,0.660074,0.326028,0.925805,0.753334,0.53869,0.389583,0.932284,0.88551,0.996994,0.933498,0.0557619,0.374403,0.614876,0.333114,0.838424,0.589713,0.181038,0.864135,0.366758,0.569288,0.394871,0.252331,0.072898,0.597349,0.820334,0.0681258,0.425268,0.307416,0.336468,0.9897,0.0037086,0.0193508,0.645368,0.263955,0.327973,0.388053,0.0101749,0.725075,0.647478,0.0908054,0.565599,0.660662,0.944419,0.913488,0.541016,0.230115,0.0209926,0.453361,0.0881041,0.193384,0.140337,0.0284755,0.970226,0.124723,0.0072906,0.969039,0.842905,0.771904,0.134125,0.324575,0.0661684,0.874161,0.182201,0.798769,|0.665267,0.32514,0.425389,0.24649,0.750908,0.29588,0.280055,0.0813891,0.393256,0.311803,0.120353,0.868603,0.658002,0.780773,0.695382,0.39867,0.871495,0.328999,0.723413,0.00857556,0.370219,0.416957,0.371398,0.27388,0.0424955,0.172907,0.818397,0.458747,0.0389169,0.800416,0.572442,0.870566,0.773007,0.424601,0.801883,0.00843328,0.23699,0.106093,0.254753,0.0215331,0.690637,0.729802,0.317132,0.430412,0.787008,0.686058,0.411106,0.756727,0.470069,0.312756,0.82244,0.296385,0.226694,0.730714,0.273093,0.764337,0.238381,0.385606,0.669701,0.198409,0.100909,0.54668,0.956372,0.0777179,0.592278,0.11933,0.919322,0.976428,0.0848833,0.452998,0.265677,0.310676,0.247365,0.857462,0.605729,0.968974,0.562383,0.0842433,0.776401,0.118091,0.700771,0.92266,0.584011,0.857317,0.36069,0.927048,0.605055,0.868907,0.866195,0.495012,0.163281,0.60022,0.579125,0.459202,0.579029,0.929861,0.191177,0.725905,0.219996,0.479406,0.243774,0.711908,0.424926,0.656684,0.868692,0.343183,0.598076,0.807248,0.568307,0.930131,0.313066,0.89253,0.789956,0.430352,0.402181,0.471377,0.420527,0.847895,0.417572,0.543973,0.202707,0.998641,0.0460118,0.708145,0.330149,0.331904,0.0493332,0.0940703,0.653474,0.770175,0.669289,0.175978,0.100437,0.844475,0.263075,0.682978,0.86895,0.0315997,0.662422,0.440761,0.729632,0.102425,0.534154,0.710666,0.559453,0.0221097,0.197578,0.113569,0.49275,0.0122196,0.713695,0.105172,0.645545,0.787969,0.307603,0.174436,0.684288,0.266312,0.112755,0.814749,0.963485,0.539999,0.442571,0.126429,0.379468,0.176826,0.591352,0.508598,0.377812,0.222764,0.766172,0.762454,0.770003,0.890404,0.956999,0.0412076,0.965487,0.562885,0.9543,0.893253,0.818082,0.315492,0.239849,0.618632,0.32339,0.704936,0.562178,0.799156,0.301672,0.769866,0.663367,0.779893,0.996173,0.922199,0.344106,0.262173,0.575006,0.203687,0.295826,0.642211,0.237658,0.663643,0.942071,0.0665752,0.682001,0.415364,0.817231,0.879448,0.649695,0.978542,0.772238,0.420402,0.226776,0.21787,0.799202,0.59286,0.983182,0.517473,0.426947,0.810274,0.583107,0.782165,0.600369,0.450771,0.703289,0.663098,0.938903,0.139255,0.342832,0.670855,0.299096,0.453609,0.71442,0.345736,0.994096,0.922644,0.409288,0.778135,0.200866,0.856891,0.12638,0.645589,0.387324,0.929243,0.535869,0.899176,0.535926,0.851981,0.361019,0.237229,0.243902,0.971877,0.988763,0.753647,0.956764,0.649373,0.733796,0.946989,0.386991,0.246901,0.611084,0.861575,0.612233,0.463632,0.162048,0.947016,0.789906,0.511947,0.916239,0.13375,0.837116,0.325147,0.258819,0.120568,0.320681,0.700758,0.89906,0.00553441,0.867451,0.0167122,0.394085,0.612409,0.375079,0.762727,0.508679,0.203705,0.511116,0.721972,0.203352,0.727724,0.369423,0.385951,0.519451,0.146141,0.00610262,0.452211,0.121825,0.929127,0.895928,0.0732686,0.792626,0.752469,0.121276,0.859261,0.939112,0.0294574,0.197014,0.309442,0.614854,0.509826,0.173379,0.897347,0.995712,0.741479,0.490463,0.246941,0.7675,0.574504,0.581995,0.804102,0.764727,0.899818,0.33645,0.106337,0.0908726,0.92259,0.243293,0.863862,0.474325,0.405907,0.400519,0.750057,0.228314,0.084568,0.961737,0.526596,0.0371985,0.400668,0.609581,0.601265,0.964063,0.427929,0.932615,0.0586278,0.302155,0.975073,0.0628728,0.823568,0.970735,0.296182,0.182778,0.758943,0.497833,0.215639,0.703153,0.910164,0.346236,0.32503,0.758437,0.27577,0.0886461,0.273465,0.223361,0.439564,0.820693,0.943732,0.812985,0.178938,0.937288,0.903079,0.0908515,0.387541,0.24294,0.972369,0.860567,0.957816,0.980182,0.043519,0.680625,0.301288,0.108937,0.950948,0.157292,0.581911,0.962889,0.845958,0.428287,0.504078,0.537314,0.0890795,0.510198,0.462702,0.758215,0.0443958,0.508933,0.00688368,0.762853,0.497931,0.456745,0.937283,0.997467,0.337653,0.637494,0.017905,0.0214877,0.0243274,0.929402,0.93801,0.394351,0.516783,0.597942,0.607375,0.492091,0.133651,0.331627,0.260826,0.418656,0.485205,0.183597,0.728128,0.419522,0.706274,0.433377,0.215864,0.731699,0.464568,0.465201,0.697607,0.0302327,0.380352,0.162825,0.784732,0.492737,0.877765,0.157506,0.0317979,0.159813,0.0954235,0.94699,0.308652,0.389632,0.132804,0.600934,0.758882,0.405728,0.0871947,0.588591,0.940674,0.12835,0.784147,0.689736,0.468037,0.607278,0.254283,0.681928,0.509899,0.386997,0.825683,0.892246,0.346352,0.543514,0.282365,0.728903,0.302323,0.967642,0.234981,0.108997,0.990984,0.280306,0.573564,0.600255,0.000700533,0.551102,0.921096,0.69883,0.362388,0.214584,0.772312,0.952555,0.644051,0.996264,0.121272,0.167986,0.386879,0.66306,0.791235,0.11791,0.846457,0.0673784,0.00786197,0.5833,0.996877,0.17148,0.275967,0.519584,0.792522,0.987912,0.538968,0.694581,0.610863,0.743756,0.922445,0.513194,0.554348,0.924258,0.0299546,0.608566,0.599006,0.718592,0.223384,0.527581,0.706534,0.153081,0.949619,0.483087,0.256371,0.860914,0.479992,0.235729,0.768774,0.696655,0.546412,0.607551,0.306017,0.952097,0.409618,0.0696164,0.158275,0.771284,0.31701,0.75141,0.0895259,0.168764,0.461527,0.194653,0.80333,0.289491,0.412136,0.401213,0.825888,0.240938,0.865067,0.156285,0.781108,0.720411,0.446573,0.255486,0.376043,0.811332,0.207326,0.810083,0.697292,0.472945,0.356079,0.0955321,0.0293149,0.0674543,0.161489,0.652197,0.23919,0.635757,0.350432,0.289951,0.486493,0.202734,0.686296,0.566117,0.446703,0.271526,0.359101,0.188466,0.935521,0.215301,0.40468,0.773237,0.341651,0.115126,0.885572,0.443138,0.871052,0.300554,0.871566,0.866657,0.836924,0.071538,0.508114,0.331971,0.777211,0.776771,0.316283,0.6193,0.306072,0.109333,0.560068,0.382343,0.979365,0.343518,0.0742632,0.253267,0.391319,0.40665,0.149835,0.992359,0.198128,0.665537,0.474552,0.313708,0.807434,0.545328,0.384948,0.604636,0.929338,0.585027,0.714435,0.570992,0.739215,0.870665,0.14361,0.119394,0.731516,0.257243,0.595245,0.437604,0.24083,0.300182,0.900266,0.722181,0.446087,0.665463,0.074445,0.820693,0.0632446,0.954586,0.740506,0.646489,0.338008,0.123652,0.723608,0.0335113,0.0856502,0.94363,0.496422,0.0880111,0.829024,0.126624,0.266249,0.550801,0.080357,0.697453,0.740198,0.944023,0.486315,0.177012,0.490738,0.746952,0.325956,0.713633,0.933533,0.211116,0.244442,0.516275,0.281828,0.487676,0.450922,0.414428,0.563166,0.317464,0.0555472,0.56481,0.0602164,0.284474,0.367222,0.0340564,0.383639,0.112956,0.882144,0.332794,0.348529,0.331878,0.26097,0.432357,0.192085,0.273181,0.242809,0.798408,0.0850797,0.803643,0.181999,0.225831,0.703588,0.241258,0.659255,0.612648,0.195429,0.0501835,0.470837,0.336189,0.483741,0.491679,0.899856,0.595622,0.792673,0.699041,0.788537,0.538703,0.412244,0.168873,0.639146,0.562038,0.762522,0.706697,0.351577,0.180579,0.319486,0.0907177,0.470383,0.550524,0.108876,0.558491,0.253353,0.230362,0.734485,0.421849,0.120623,0.224647,0.989428,0.475509,0.0711886,0.0377971,0.880574,0.210082,0.370947,0.346854,0.0335885,0.21192,0.305001,0.828006,0.0796466,0.0168435,0.719649,0.793758,0.57853,0.810573,0.852903,0.313105,0.0854901,0.734585,0.8505,0.255334,0.6187,0.216225,0.971486,0.658501,0.711263,0.83753,0.378415,0.00892699,0.0380052,0.419032,0.183577,0.947333,0.608166,0.922511,0.530575,0.679674,0.490042,0.0767726,0.00759041,0.1386,0.238901,0.0263829,0.97656,0.242189,0.647663,0.588665,0.583776,0.229665,0.910882,0.755251,0.240794,0.0106996,0.74042,0.602339,0.693684,0.638614,0.218329,0.733074,0.178048,0.0872723,0.592423,0.947011,0.507484,0.155287,0.171888,0.397523,0.49438,0.875365,0.0727078,0.484267,0.50462,0.561864,0.532676,0.38159,0.297058,0.446746,0.129606,0.902224,0.119447,0.938892,0.483697,0.431995,0.949573,0.663813,0.657463,0.128274,0.134656,0.574611,0.969627,0.103802,0.00401586,0.913642,0.954429,0.141423,0.950607,0.582245,0.13956,0.7247,0.891033,0.426247,0.950602,0.73721,0.617473,0.433696,0.855618,0.839897,0.94979,0.600418,0.215104,0.153903,0.419992,0.324632,0.412754,0.373214,0.412963,0.0705121,0.385914,0.939885,0.895269,0.633129,0.219334,0.195007,0.505687,0.56865,0.927152,0.681128,0.812475,0.603049,0.0549387,0.377943,0.432111,0.656723,0.101019,0.579299,0.111176,0.602742,0.0317698,0.679724,0.677737,0.584593,0.648212,0.353151,0.810802,0.0283571,0.170036,0.64597,0.225389,0.974016,0.725947,0.705662,0.805784,0.196021,0.318497,0.455816,0.925691,0.558384,0.138443,0.34006,0.823275,0.178072,0.553387,0.083962,0.0202206,0.634458,0.460818,0.539236,0.847813,0.808128,0.064885,0.0363578,0.554813,0.44706,0.449499,0.906653,0.104408,0.0322468,0.0955858,0.745178,0.0496096,0.906814,0.85134,0.933534,0.703198,0.634148,0.49342,0.117587,0.617917,0.789869,0.277868,0.853937,0.471283,0.956967,0.20594,0.668254,0.422209,0.616899,0.949174,0.623413,0.00455719,0.740192,0.684329,0.495375,0.675775,0.362517,0.757793,0.389638,0.0271034,0.923549,0.8912,0.992937,0.643426,0.356465,0.40006,0.0506798,0.521438,0.698004,0.528414,0.498731,0.536682,0.119424,0.436073,0.880255,0.484362,0.396122,0.640093,0.934035,0.353854,0.741132,0.791057,0.869123,0.193405,0.538808,0.582021,0.89289,0.624344,0.0763319,0.551019,0.766104,0.924503,0.607448,0.122557,0.362342,0.0157567,0.643971,0.268257,0.253088,0.255868,0.52279,0.338026,0.814216,0.795633,0.923267,0.700568,0.910788,0.842991,0.833185,0.633895,0.0943835,0.464267,0.297643,0.404512,0.67497,0.632709,0.956613,0.513715,0.764907,0.560523,0.518603,0.794283,0.421182,0.538123,|0.790377,0.400787,0.170163,0.440487,0.469802,0.0920942,0.143759,0.0603474,0.104928,0.180787,0.104706,0.45255,0.774083,0.559382,0.0594267,0.576755,0.847205,0.511159,0.834852,0.584086,0.118183,0.630688,0.811113,0.191848,0.938299,0.861547,0.13023,0.489195,0.454122,0.573173,0.347796,0.876878,0.864345,0.919653,0.350372,0.444417,0.0879596,0.244713,0.225708,0.0710795,0.587637,0.909388,0.302075,0.883588,0.588629,0.602256,0.829688,0.825289,0.936694,0.763982,0.76398,0.182258,0.289826,0.499861,0.100875,0.40812,0.88868,0.848381,0.24235,0.19762,0.630624,0.742514,0.0889048,0.849598,0.463262,0.0433419,0.864968,0.803144,0.169461,0.981112,0.9387,0.949812,0.450009,0.341122,0.430693,0.593354,0.346532,0.67487,0.424488,0.0929171,0.959549,0.678084,0.797549,0.715744,0.706765,0.705987,0.690562,0.670307,0.205292,0.32853,0.453947,0.204784,0.676715,0.548023,0.272741,0.949154,0.536209,0.586406,0.786326,0.638657,0.00646985,0.161221,0.581634,0.0397102,0.963528,0.904533,0.606969,0.0740278,0.326198,0.273263,0.977383,0.111763,0.555932,0.906202,0.34254,0.723403,0.541157,0.264201,0.774687,0.384868,0.949649,0.0723346,0.0783101,0.579329,0.103713,0.39678,0.226938,0.690345,0.587118,0.12217,0.760585,0.83216,0.517742,0.537552,0.450477,0.0838234,0.343747,0.0351481,0.382362,0.920753,0.207926,0.684811,0.00790262,0.183591,0.890161,0.450455,0.244317,0.623674,0.418924,0.108746,0.523108,0.259459,0.369461,0.317271,0.757563,0.946976,0.362214,0.796984,0.542807,0.919268,0.165184,0.874189,0.277367,0.969588,0.350999,0.617709,0.465259,0.43989,0.154787,0.330212,0.970156,0.776279,0.763743,0.891775,0.233801,0.66389,0.959677,0.371832,0.669538,0.221038,0.881369,0.835049,0.124008,0.958404,0.625273,0.052598,0.489386,0.0685709,0.137947,0.808043,0.043584,0.806468,0.188338,0.107776,0.916422,0.156422,0.89576,0.550829,0.463045,0.289826,0.418004,0.964676,0.26163,0.924119,0.269116,0.607542,0.780493,0.0294873,0.86555,0.893024,0.121869,0.595805,0.243964,0.802191,0.35589,0.962205,0.992205,0.879212,0.173509,0.501516,0.195845,0.462259,0.0170954,0.378641,0.51442,0.524986,0.167995,0.802357,0.952489,0.888321,0.431734,0.549527,0.121177,0.641285,0.797219,0.27371,0.192177,0.596501,0.730394,0.44066,0.876187,0.621973,0.405108,0.594715,0.809808,0.140708,0.821757,0.842986,0.996456,0.802626,0.76161,0.268127,0.918713,0.934654,0.484322,0.266515,0.921934,0.296083,0.575605,0.0498952,0.783462,0.483337,0.74421,0.657757,0.0533567,0.14378,0.672572,0.922414,0.501131,0.0392888,0.295379,0.583072,0.478215,0.852983,0.565236,0.248895,0.22942,0.170048,0.385147,0.199409,0.159248,0.549335,0.405853,0.707449,0.577355,0.467335,0.112499,0.615112,0.64922,0.537672,0.113344,0.250729,0.464674,0.178204,0.52091,0.762589,0.768441,0.937149,0.358256,0.513181,0.771757,0.0349031,0.134054,0.144578,0.191392,0.815336,0.526903,0.622818,0.27341,0.239815,0.453234,0.605346,0.796155,0.747994,0.192672,0.765466,0.370203,0.511239,0.073086,0.316707,0.35787,0.84293,0.0585526,0.265625,0.169875,0.25507,0.450756,0.141099,0.127142,0.492887,0.222985,0.395922,0.562606,0.000718176,0.223828,0.173191,0.879921,0.195745,0.715455,0.653686,0.511085,0.654601,0.992887,0.412843,0.461585,0.783719,0.85821,0.911519,0.344475,0.959031,0.973597,0.51205,0.540945,0.291903,0.74261,0.661811,0.255155,0.269711,0.597097,0.645446,0.440693,0.921824,0.7907,0.80285,0.112933,0.862812,0.339899,0.820139,0.213259,0.803724,0.316615,0.351164,0.0416966,0.801805,0.0323818,0.233349,0.607102,0.67979,0.725591,0.219412,0.903699,0.58194,0.701798,0.654449,0.623292,0.153296,0.213353,0.805497,0.10511,0.548233,0.691413,0.329462,0.821878,0.716881,0.341031,0.391863,0.913787,0.974134,0.0620358,0.62318,0.613855,0.0964368,0.592413,0.284599,0.077691,0.975672,0.6759,0.358786,0.635031,0.878477,0.309794,0.972242,0.692825,0.302031,0.930719,0.726875,0.736621,0.0689892,0.0717376,0.721801,0.0880672,0.460315,0.888561,0.662174,0.0903615,0.334014,0.547086,0.0144411,0.309791,0.375093,0.613591,0.893946,0.328479,0.428092,0.214957,0.656971,0.424639,0.0110711,0.916113,0.152892,0.537488,0.319826,0.301729,0.237156,0.201371,0.975763,0.602301,0.366283,0.081495,0.259507,0.908562,0.68476,0.00216037,0.292176,0.211522,0.792881,0.781392,0.0338084,0.763176,0.517965,0.702893,0.162833,0.513315,0.213323,0.106342,0.657162,0.819433,0.274304,0.472577,0.417909,0.242544,0.697191,0.210797,0.640358,0.516923,0.781745,0.116118,0.557022,0.720502,0.634409,0.523318,0.904138,0.399016,0.969951,0.920798,0.501612,0.517313,0.0147003,0.611392,0.847359,0.188281,0.476431,0.143709,0.155379,0.491305,0.692677,0.497737,0.937372,0.113681,0.886958,0.853361,0.174491,0.480878,0.870753,0.852072,0.894724,0.517796,0.792095,0.0796088,0.316152,0.757215,0.917142,0.852257,0.817772,0.0137738,0.360638,0.950684,0.520008,0.754254,0.467681,0.491141,0.67352,0.758286,0.866528,0.790063,0.218383,0.453151,0.208032,0.295387,0.569307,0.899021,0.635093,0.57204,0.533653,0.62519,0.248717,0.594405,0.19087,0.78479,0.136442,0.309157,0.267139,0.295898,0.576085,0.41415,0.494281,0.401461,0.0552303,0.204015,0.505368,0.00786388,0.791655,0.259884,0.0551929,0.444419,0.760336,0.693399,0.426454,0.469643,0.779975,0.490724,0.608147,0.952589,0.855145,0.940569,0.49252,0.429671,0.355989,0.786046,0.957603,0.177697,0.253707,0.0714679,0.0981951,0.681438,0.605,0.299111,0.354405,0.915279,0.368188,0.964465,0.537853,0.196884,0.424416,0.140081,0.47321,0.633269,0.179565,0.920661,0.777332,0.647854,0.792466,0.835308,0.253534,0.765363,0.358726,0.572312,0.451928,0.75622,0.195225,0.724058,0.885707,0.982708,0.811306,0.707528,0.100748,0.0788237,0.959126,0.619668,0.663464,0.0286427,0.282704,0.251726,0.144015,0.595375,0.607254,0.271276,0.651844,0.580885,0.914241,0.551637,0.246899,0.478011,0.356383,0.286333,0.249264,0.692985,0.054684,0.577939,0.516247,0.0221,0.142255,0.922855,0.904691,0.6651,0.294925,0.119226,0.594668,0.485998,0.436913,0.989104,0.961639,0.582253,0.819072,0.194169,0.766574,0.198944,0.860764,0.434374,0.0148059,0.0368338,0.232743,0.47509,0.198092,0.263258,0.826758,0.182054,0.945455,0.979277,0.772607,0.506831,0.467126,0.81701,0.966364,0.880148,0.137293,0.0425587,0.655078,0.13344,0.398339,0.789616,0.62783,0.683567,0.860761,0.64824,0.908331,0.76169,0.822584,0.762154,0.415757,0.806308,0.36218,0.274169,0.0662814,0.546672,0.573917,0.543898,0.0478014,0.961449,0.15506,0.771088,0.661039,0.0715823,0.0217636,0.475823,0.71249,0.554918,0.26483,0.681332,0.392994,0.898577,0.712049,0.980465,0.915515,0.264511,0.488167,0.346614,0.420508,0.109283,0.636912,0.26164,0.327054,0.478633,0.861318,0.759133,0.627806,0.334481,0.764085,0.371418,0.022446,0.68565,0.481591,0.665912,0.0902689,0.0154843,0.721266,0.211885,0.0520238,0.836566,0.17523,0.790003,0.40629,0.699921,0.905604,0.597297,0.887526,0.0965768,0.462709,0.452831,0.73187,0.444364,0.773156,0.82001,0.52256,0.399026,0.52912,0.202771,0.306756,0.502565,0.163247,0.161743,0.762053,0.833383,0.725599,0.119021,0.927285,0.0515438,0.166312,0.32017,0.804703,0.885005,0.970904,0.339587,0.0743591,0.918815,0.00596082,0.496432,0.57234,0.818879,0.801592,0.231935,0.362256,0.932427,0.721773,0.0606759,0.172262,0.214498,0.281683,0.0494328,0.488728,0.630138,0.0831041,0.0935844,0.423711,0.757243,0.394984,0.968334,0.665809,0.258714,0.490713,0.521086,0.808604,0.498285,0.800915,0.0650859,0.495795,0.945165,0.787924,0.308058,0.806299,0.402328,0.0555648,0.486512,0.589292,0.899585,0.354574,0.0556961,0.760416,0.207158,0.387494,0.91121,0.636545,0.586638,0.777113,0.861564,0.483644,0.0150577,0.0421407,0.0931975,0.995193,0.681009,0.109802,0.0383254,0.802508,0.33112,0.820093,0.416465,0.226585,0.348007,0.556175,0.322222,0.360383,0.715301,0.445702,0.714311,0.944945,0.27505,0.0276874,0.844256,0.73042,0.515489,0.591673,0.92341,0.203905,0.322315,0.126232,0.46988,0.668361,0.559885,0.863521,0.419638,0.369107,0.248811,0.526604,0.680039,0.229943,0.314205,0.156707,0.565532,0.993024,0.950012,0.197493,0.549221,0.811874,0.408665,0.22394,0.51493,0.393817,0.46056,0.234314,0.647481,0.0309771,0.212464,0.619395,0.0291295,0.37891,0.397957,0.979699,0.250361,0.656025,0.60828,0.199726,0.151165,0.856428,0.453271,0.0496904,0.668333,0.256306,0.488537,0.118931,0.0192964,0.0575209,0.616779,0.121928,0.787473,0.461779,0.406221,0.694615,0.171688,0.962883,0.870725,0.691438,0.821261,0.744666,0.540952,0.377763,0.0183085,0.273425,0.148798,0.857733,0.0313083,0.900415,0.901777,0.587927,0.507063,0.253391,0.572856,0.604447,0.350896,0.117992,0.431588,0.562552,0.469421,0.930568,0.949196,0.519818,0.294711,0.451726,0.106725,0.493298,0.737059,0.271881,0.586408,0.905312,0.907727,0.0122318,0.584755,0.267293,0.26253,0.558396,0.516131,0.608369,0.797738,0.177315,0.945941,0.381933,0.212373,0.185965,0.10758,0.0489815,0.452064,0.286239,0.706997,0.741594,0.073758,0.348228,0.141914,0.990633,0.581882,0.547461,0.866767,0.325552,0.151986,0.200468,0.0134013,0.939415,0.854989,0.758445,0.194314,0.111942,0.946159,0.256939,0.730689,0.56349,0.0641292,0.202705,0.206886,0.0147158,0.623919,0.147179,0.627259,0.895143,0.154099,0.310024,0.79507,0.841468,0.246791,0.704143,0.955519,0.821415,0.822751,0.584235,0.817309,0.806475,0.628438,0.90236,0.745032,0.953056,0.869582,0.362386,|0.17197,0.192452,0.946406,0.16002,0.729212,0.842691,0.205965,0.494079,0.118703,0.466221,0.270552,0.472274,0.828634,0.0876306,0.474256,0.71193,0.950678,0.966687,0.258127,0.986771,0.416655,0.744052,0.439648,0.924564,0.694551,0.158429,0.564195,0.140754,0.789221,0.913283,0.407186,0.847332,0.368941,0.217931,0.239287,0.998128,0.694776,0.133314,0.48436,0.242793,0.316868,0.989437,0.61216,0.908299,0.79573,0.387992,0.601695,0.591091,0.665905,0.289278,0.0821747,0.681539,0.115225,0.362956,0.501821,0.243661,0.0847976,0.24557,0.367663,0.634096,0.627838,0.845568,0.732546,0.227322,0.766351,0.523064,0.724341,0.747428,0.730608,0.0425934,0.288925,0.155232,0.409591,0.0791171,0.392758,0.0972406,0.851198,0.60893,0.419023,0.561164,0.984805,0.70424,0.335731,0.49985,0.0889079,0.387014,0.67118,0.530349,0.996157,0.499426,0.0415087,0.141412,0.435161,0.243054,0.156525,0.44824,0.871292,0.864324,0.600871,0.099021,0.163235,0.273688,0.470925,0.709173,0.661128,0.620043,0.855991,0.684658,0.088163,0.77381,0.0401965,0.654764,0.883724,0.597779,0.0170515,0.304919,0.0816644,0.460261,0.649896,0.0819672,0.235223,0.268244,0.503179,0.659579,0.326146,0.187563,0.306549,0.0492771,0.267598,0.0271696,0.432574,0.886042,0.704445,0.434636,0.203146,0.954741,0.132075,0.448449,0.700753,0.475637,0.182438,0.112479,0.730258,0.42875,0.186826,0.254306,0.750467,0.725399,0.297972,0.321638,0.843331,0.537654,0.411576,0.432797,0.51089,0.0255278,0.744127,0.811844,0.763182,0.675867,0.307472,0.445146,0.717215,0.919228,0.00666386,0.734384,0.163989,0.618272,0.539569,0.877051,0.481335,0.625499,0.0416057,0.119171,0.565661,0.983446,0.226183,0.776894,0.333656,0.301263,0.574304,0.341519,0.07101,0.191916,0.882927,0.4946,0.06133,0.248039,0.539884,0.26608,0.427882,0.375548,0.993127,0.0392316,0.654497,0.870135,0.498764,0.368499,0.604434,0.983241,0.492246,0.519754,0.780482,0.0907124,0.60879,0.505268,0.919931,0.934928,0.302433,0.909229,0.997637,0.0193074,0.931125,0.0225485,0.545563,0.257507,0.500869,0.226511,0.456409,0.321628,0.564306,0.174961,0.736829,0.623845,0.234533,0.418529,0.176118,0.290717,0.200416,0.0874171,0.922149,0.579279,0.135779,0.898388,0.680011,0.40237,0.0268216,0.431791,0.653057,0.694673,0.325908,0.967393,0.61297,0.0163592,0.386794,0.16221,0.45228,0.588913,0.635399,0.532446,0.00791377,0.719814,0.57651,0.238625,0.736704,0.138708,0.143935,0.967614,0.589759,0.704664,0.715656,0.394683,0.845161,0.624829,0.649568,0.0249442,0.901858,0.336138,0.949308,0.589489,0.18467,0.140697,0.483721,0.457896,0.10647,0.427947,0.47671,0.592517,0.584477,0.0784914,0.760414,0.0340328,0.791434,0.264156,0.819113,0.159934,0.774811,0.575963,0.734527,0.0408087,0.542768,0.130857,0.783418,0.752777,0.158529,0.270082,0.0568202,0.0858164,0.806012,0.374033,0.109349,0.775954,0.74258,0.295868,0.923662,0.356896,0.52769,0.361362,0.828129,0.377687,0.775066,0.876047,0.973599,0.491063,0.968993,0.396596,0.233242,0.781453,0.573275,0.598348,0.848017,0.0820039,0.454608,0.953359,0.675168,0.414979,0.811117,0.797818,0.0305782,0.789227,0.155414,0.423892,0.384811,0.487876,0.125096,0.248351,0.915882,0.451108,0.0207829,0.134207,0.23386,0.399304,0.0700895,0.697493,0.415636,0.243519,0.519269,0.290823,0.729227,0.338563,0.304221,0.904257,0.538248,0.837362,0.670601,0.35901,0.702629,0.580427,0.726487,0.375583,0.392764,0.307318,0.0965241,0.560609,0.737755,0.651455,0.683425,0.462833,0.844995,0.857087,0.293034,0.25743,0.055761,0.982849,0.373816,0.93614,0.0524453,0.992303,0.71653,0.703046,0.422689,0.124053,0.711816,0.389244,0.490558,0.655189,0.173465,0.385949,0.89797,0.767774,0.504721,0.822277,0.944746,0.375185,0.187907,0.12393,0.805824,0.162834,0.918098,0.227085,0.833068,0.0660972,0.491089,0.675474,0.906787,0.534037,0.341675,0.905026,0.325589,0.359439,0.662068,0.713692,0.770568,0.735302,0.204996,0.552609,0.373636,0.882289,0.373102,0.0623984,0.804083,0.0905827,0.299099,0.438954,0.439322,0.406246,0.516435,0.849757,0.772506,0.441163,0.96154,0.306101,0.7068,0.982834,0.0913789,0.585486,0.0907537,0.542198,0.269366,0.223145,0.677624,0.0311651,0.384816,0.126502,0.448489,0.863437,0.691991,0.934395,0.307138,0.242441,0.323012,0.241111,0.59588,0.495449,0.113597,0.528039,0.538312,0.691967,0.707181,0.709887,0.477854,0.271864,0.810424,0.104278,0.898849,0.701228,0.767277,0.319362,0.853565,0.823866,0.0456089,0.765409,0.182458,0.286133,0.960638,0.819545,0.0558715,0.0592495,0.627835,0.340827,0.159072,0.080406,0.731552,0.0231369,0.0620629,0.782935,0.0974729,0.334399,0.81421,0.023098,0.371194,0.460708,0.492765,0.841256,0.54716,0.688959,0.114246,0.981968,0.02908,0.811725,0.793872,0.307241,0.933511,0.522092,0.552881,0.428368,0.220922,0.269581,0.522128,0.784847,0.201674,0.236833,0.954958,0.846676,0.18498,0.217045,0.71389,0.492186,0.068272,0.850987,0.124883,0.298572,0.928154,0.724632,0.152393,0.503128,0.441383,0.0867138,0.458535,0.592702,0.788266,0.719442,0.860089,0.300794,0.522527,0.707032,0.0866869,0.698555,0.488954,0.759519,0.705307,0.949214,0.681173,0.887902,0.30018,0.668814,0.972184,0.823635,0.724879,0.258602,0.957978,0.308562,0.0502526,0.546179,0.329246,0.0407856,0.149935,0.70901,0.255403,0.889236,0.0951731,0.680224,0.421676,0.420409,0.813332,0.744752,0.299744,0.632996,0.73392,0.775599,0.238009,0.766852,0.711875,0.848007,0.109613,0.131091,0.410799,0.0753506,0.828439,0.11309,0.550001,0.769162,0.727173,0.563166,0.0035243,0.286763,0.686367,0.293083,0.162439,0.563293,0.995421,0.502532,0.286426,0.675604,0.953279,0.0641976,0.028348,0.10968,0.414359,0.137329,0.356268,0.607615,0.327822,0.29044,0.181699,0.984035,0.699867,0.528674,0.222872,0.431667,0.344845,0.192983,0.796416,0.952672,0.50106,0.500306,0.359265,0.559022,0.0420579,0.0980262,0.846142,0.547827,0.0531279,0.085611,0.0393052,0.251731,0.3075,0.0317534,0.453524,0.635289,0.755208,0.28358,0.953651,0.635203,0.45698,0.376329,0.796648,0.333317,0.159056,0.425797,0.233093,0.627697,0.344229,0.307948,0.35803,0.171794,0.371171,0.805578,0.552599,0.292143,0.260837,0.854248,0.764666,0.0887817,0.602531,0.412233,0.408898,0.482327,0.702843,0.397732,0.10893,0.775658,0.428006,0.690008,0.986574,0.042447,0.23593,0.428801,0.325671,0.0152317,0.985822,0.588229,0.253783,0.255627,0.993914,0.639566,0.0788204,0.964315,0.00457686,0.0234248,0.53336,0.847285,0.658305,0.109898,0.958038,0.504731,0.992939,0.638508,0.05136,0.365864,0.094503,0.417443,0.826651,0.610506,0.30647,0.642003,0.245179,0.1115,0.419498,0.812318,0.252573,0.0315083,0.597435,0.00175291,0.406922,0.207502,0.173224,0.577283,0.947873,0.234599,0.0523773,0.71834,0.648959,0.546012,0.316173,0.555653,0.994338,0.0283177,0.333266,0.829755,0.9539,0.491089,0.441462,0.222626,0.842303,0.427146,0.686387,0.960621,0.855259,0.696523,0.456159,0.186364,0.391963,0.888996,0.950746,0.932821,0.16545,0.690903,0.870984,0.572015,0.631375,0.221907,0.141602,0.234608,0.877939,0.456639,0.687934,0.392057,0.805417,0.0105355,0.0988344,0.00689518,0.301782,0.757708,0.276115,0.303608,0.634088,0.29633,0.997386,0.0225344,0.980191,0.597234,0.0877501,0.307811,0.605648,0.967778,0.11858,0.988828,0.888184,0.912629,0.494735,0.648777,0.631444,0.547187,0.903275,0.490706,0.389012,0.53338,0.818147,0.509857,0.316303,0.980772,0.549884,0.0392982,0.54332,0.458636,0.982967,0.336915,0.965212,0.258156,0.776472,0.474951,0.543665,0.891878,0.173005,0.8278,0.0277976,0.474177,0.613721,0.219875,0.13453,0.238394,0.907063,0.876857,0.484142,0.315753,0.949301,0.673971,0.607349,0.804231,0.182961,0.459832,0.735754,0.244407,0.718438,0.595911,0.705998,0.261772,0.20547,0.764072,0.487045,0.749898,0.253842,0.987385,0.130684,0.419953,0.519156,0.657133,0.57399,0.275415,0.309047,0.179861,0.654615,0.611524,0.087954,0.933708,0.911995,0.423053,0.274384,0.105692,0.395986,0.441778,0.95501,0.768387,0.817317,0.254457,0.678123,0.358665,0.685424,0.252851,0.308437,0.241574,0.553757,0.384871,0.848488,0.335368,0.844997,0.471492,0.299315,0.0390713,0.123582,0.318925,0.755313,0.871065,0.772336,0.952451,0.805642,0.404188,0.919801,0.27583,0.413169,0.539568,0.871051,0.0456353,0.555294,0.00974423,0.702971,0.615358,0.221303,0.826534,0.409869,0.704617,0.0792755,0.19244,0.697267,0.873324,0.831924,0.293508,0.670957,0.945927,0.633088,0.431282,0.456511,0.336424,0.97259,0.798281,0.486895,0.334834,0.490111,0.883564,0.593955,0.710717,0.562965,0.795554,0.208216,0.394902,0.576654,0.284265,0.209838,0.027068,0.00586015,0.113788,0.760361,0.049842,0.799702,0.936184,0.507703,0.127437,0.729749,0.912005,0.910535,0.401329,0.0423999,0.157058,0.0863439,0.465333,0.592735,0.407344,0.335295,0.961591,0.916925,0.247165,0.0591208,0.244074,0.954827,0.19176,0.775354,0.374487,0.695986,0.602103,0.0583038,0.465045,0.847268,0.0581411,0.0772947,0.616028,0.372119,0.702486,0.763051,0.443265,0.37663,0.728375,0.975494,0.212711,0.12633,0.576679,0.189949,0.834287,0.525915,0.775321,0.519344,0.882728,0.780607,0.632139,0.622134,0.897755,0.307264,0.530313,0.465102,0.583888,0.0297049,0.24821,0.462595,0.302254,0.235238,0.900601,0.0718664,0.364286,0.701635,0.0262699,0.856827,0.0481354,0.769822,0.220113,0.569245,0.291731,0.351884,0.206329,0.326296,0.608434,0.819982,0.774001,0.0691711,0.825675,0.708586,0.625916,0.568913,0.00559425,0.658514,0.790353,|0.470037,0.355921,0.497258,0.68626,0.593196,0.0370033,0.0901715,0.391949,0.170408,0.528842,0.911314,0.423251,0.288134,0.260845,0.342704,0.177128,0.2795,0.738497,0.445181,0.292378,0.730237,0.638693,0.614382,0.634766,0.0376955,0.212412,0.142615,0.318869,0.697486,0.36803,0.427873,0.696875,0.428292,0.919128,0.219376,0.666535,0.881243,0.423228,0.555571,0.734035,0.689546,0.438456,0.104702,0.769598,0.464081,0.0111822,0.24813,0.425255,0.0247404,0.0953553,0.236439,0.883963,0.352262,0.907288,0.216808,0.48911,0.0242531,0.848273,0.529887,0.448988,0.874343,0.417765,0.764031,0.684615,0.802289,0.749171,0.861053,0.234464,0.131859,0.832435,0.300493,0.256591,0.4393,0.619888,0.657365,0.854389,0.348402,0.926959,0.215579,0.920346,0.637186,0.915516,0.604966,0.360066,0.298732,0.210737,0.172908,0.768142,0.739993,0.124265,0.463121,0.335863,0.131783,0.399775,0.376162,0.98671,0.934847,0.150297,0.16003,0.661984,0.538663,0.714653,0.915377,0.676891,0.607305,0.12034,0.28829,0.774815,0.759791,0.760184,0.100262,0.316184,0.757592,0.415269,0.264848,0.740474,0.890433,0.0244753,0.473986,0.548321,0.518478,0.54033,0.456109,0.00238293,0.925493,0.83189,0.429531,0.240266,0.21836,0.723636,0.755179,0.396711,0.259009,0.196319,0.833797,0.588968,0.651326,0.708748,0.904872,0.143843,0.416949,0.916056,0.860712,0.141039,0.532684,0.139155,0.564816,0.115614,0.664707,0.0715976,0.990048,0.270126,0.712155,0.101773,0.727734,0.619483,0.315174,0.736108,0.580326,0.224055,0.710369,0.33031,0.264915,0.617291,0.501955,0.97749,0.352344,0.030647,0.691612,0.308323,0.029546,0.812594,0.571236,0.111954,0.687888,0.801201,0.72917,0.381475,0.978786,0.667248,0.976281,0.493634,0.232459,0.672638,0.502264,0.540062,0.450825,0.533464,0.682796,0.746368,0.76761,0.665852,0.62979,0.994925,0.130538,0.750416,0.37451,0.456455,0.935213,0.00602239,0.305946,0.71918,0.252468,0.149304,0.184245,0.582873,0.337672,0.63618,0.767953,0.994986,0.100621,0.594349,0.201617,0.775793,0.610574,0.768191,0.352702,0.174984,0.47829,0.240281,0.991917,0.972338,0.894355,0.446236,0.871872,0.119945,0.120403,0.940184,0.742492,0.119547,0.885764,0.3876,0.182193,0.369733,0.064373,0.505988,0.417613,0.699106,0.48407,0.222021,0.208874,0.615014,0.604603,0.9981,0.348799,0.551624,0.142061,0.186843,0.191582,0.191447,0.198141,0.596612,0.185583,0.00943911,0.342743,0.821187,0.674804,0.25058,5.78165e-05,0.647397,0.631391,0.74606,0.34794,0.0106406,0.639715,0.29343,0.420577,0.251534,0.915738,0.683291,0.643756,0.12489,0.289601,0.0765397,0.281591,0.425412,0.485855,0.581174,0.0800351,0.805196,0.519686,0.107783,0.850552,0.489617,0.474224,0.858626,0.741712,0.788473,0.692787,0.342472,0.59607,0.312649,0.119196,0.834751,0.83235,0.302348,0.813875,0.0837189,0.516421,0.528646,0.287705,0.433562,0.175565,0.153091,0.952195,0.81466,0.848048,0.366884,0.831684,0.615515,0.510673,0.573444,0.835328,0.9818,0.337421,0.580244,0.255942,0.211002,0.552549,0.634809,0.366543,0.697057,0.123404,0.108674,0.273291,0.750375,0.482114,0.449747,0.881329,0.295782,0.859535,0.598244,0.128248,0.46136,0.264582,0.921435,0.984616,0.793965,0.722431,0.505441,0.439405,0.283496,0.748927,0.28915,0.276588,0.0792622,0.111653,0.692625,0.907437,0.774514,0.495338,0.48544,0.914065,0.0702012,0.257082,0.0229558,0.918827,0.88454,0.297403,0.991436,0.240471,0.32844,0.479135,0.886749,0.278578,0.025769,0.645409,0.543615,0.702192,0.421146,0.929299,0.219449,0.449313,0.0942399,0.198164,0.954352,0.0536882,0.0328085,0.843482,0.697261,0.363877,0.929292,0.338867,0.526109,0.355373,0.0574372,0.035564,0.0920439,0.343248,0.169103,0.508956,0.926967,0.69503,0.502204,0.931058,0.337614,0.189686,0.849584,0.972393,0.411994,0.0561092,0.88834,0.553992,0.235152,0.125263,0.98922,0.453699,0.280541,0.171502,0.18871,0.824848,0.458951,0.816269,0.977095,0.0348951,0.260868,0.29551,0.691077,0.391911,0.639333,0.204533,0.622215,0.010213,0.768553,0.650925,0.254966,0.247598,0.558593,0.102447,0.776319,0.901339,0.50493,0.123578,0.956944,0.336113,0.177788,0.903605,0.541641,0.822007,0.19497,0.825042,0.224217,0.600756,0.292851,0.377479,0.532466,0.555855,0.817921,0.965532,0.149977,0.0181069,0.161691,0.17093,0.963703,0.534368,0.629632,0.973759,0.0145945,0.896762,0.631268,0.480718,0.305951,0.480695,0.409094,0.73114,0.673954,0.404574,0.197645,0.0356398,0.218062,0.99479,0.88753,0.245995,0.649635,0.019848,0.135579,0.814097,0.107888,0.727187,0.686721,0.333886,0.80126,0.383467,0.265115,0.529516,0.0714747,0.139533,0.704164,0.529853,0.711611,0.772195,0.905235,0.0337774,0.377268,0.290842,0.709158,0.946095,0.739529,0.919464,0.289217,0.941116,0.0929092,0.107084,0.11827,0.518884,0.789298,0.329885,0.871161,0.875354,0.27042,0.106509,0.0559113,0.636925,0.325905,0.455113,0.331064,0.514576,0.831803,0.467274,0.871452,0.350159,0.632469,0.84367,0.864269,0.38773,0.800405,0.468526,0.605839,0.127417,0.246336,0.219833,0.712389,0.628513,0.303322,0.98695,0.946295,0.566155,0.739672,0.461701,0.455499,0.0240657,0.873291,0.871937,0.598867,0.190898,0.947054,0.458365,0.494997,0.841116,0.108729,0.761511,0.370649,0.586464,0.167398,0.358559,0.96076,0.347759,0.0576073,0.570877,0.282377,0.439031,0.278313,0.150276,0.97544,0.481378,0.0629694,0.196473,0.472136,0.363006,0.620021,0.129455,0.522984,0.32521,0.975263,0.7939,0.272844,0.542381,0.637793,0.720706,0.736564,0.0208393,0.856647,0.459433,0.209529,0.415721,0.89667,0.193549,0.181253,0.445394,0.221917,0.505276,0.384,0.0156663,0.0926957,0.26447,0.541825,0.648211,0.126852,0.395622,0.249115,0.873109,0.00353801,0.099274,0.502814,0.356634,0.77067,0.690878,0.950894,0.184845,0.900313,0.0972149,0.98847,0.111607,0.635842,0.274094,0.12147,0.382306,0.76328,0.14154,0.174465,0.699297,0.328429,0.318666,0.605775,0.289318,0.769129,0.134918,0.459707,0.641464,0.490517,0.892106,0.294658,0.578979,0.335748,0.427661,0.496167,0.331408,0.659169,0.365587,0.384326,0.76618,0.566204,0.473134,0.127291,0.962869,0.337086,0.264599,0.924279,0.932211,0.270521,0.48102,0.185787,0.617282,0.763017,0.977641,0.194318,0.779518,0.787203,0.685273,0.27701,0.251061,0.374504,0.48185,0.348738,0.901236,0.500974,0.895853,0.486765,0.180664,0.842935,0.193745,0.240699,0.689302,0.963498,0.315696,0.606923,0.386441,0.108948,0.0351034,0.406695,0.410253,0.69888,0.562565,0.341429,0.421912,0.86653,0.763996,0.613476,0.169804,0.78505,0.401771,0.621263,0.219558,0.507015,0.182774,0.855998,0.781224,0.778435,0.60208,0.367846,0.336555,0.376905,0.123166,0.22758,0.300172,0.305689,0.698688,0.71891,0.0335619,0.723828,0.643247,0.988682,0.670626,0.913095,0.565963,0.935579,0.729811,0.419397,0.967072,0.955308,0.0420848,0.0424897,0.180434,0.347612,0.414463,0.137118,0.861097,0.186174,0.556749,0.679606,0.733172,0.721089,0.00572562,0.121316,0.249014,0.604335,0.529134,0.0199808,0.162371,0.651418,0.564652,0.58992,0.887239,0.306234,0.542541,0.37832,0.793681,0.0441802,0.841211,0.876593,0.131341,0.865559,0.893105,0.65025,0.197107,0.848363,0.285809,0.192717,0.107867,0.188146,0.274504,0.565255,0.683876,0.560656,0.737279,0.0627719,0.0663541,0.532024,0.628883,0.465882,0.442222,0.330727,0.386415,0.691772,0.788603,0.30902,0.949653,0.401234,0.525401,0.63007,0.33837,0.0831542,0.990279,0.652308,0.640179,0.397769,0.342857,0.646344,0.794533,0.552177,0.331268,0.0436895,0.27372,0.707275,0.393951,0.797986,0.530428,0.674303,0.0210326,0.674894,0.239518,0.426784,0.722463,0.839983,0.912843,0.869073,0.76182,0.694354,0.535664,0.379864,0.330111,0.762555,0.372146,0.343432,0.589659,0.601524,0.335648,0.877511,0.0132887,0.0607027,0.392738,0.0975379,0.950107,0.0397366,0.0626917,0.718089,0.166979,0.92745,0.880888,0.333455,0.974873,0.135681,0.39406,0.118997,0.0804094,0.0823777,0.458785,0.240184,0.0664571,0.810987,0.984341,0.597795,0.76066,0.383783,0.11875,0.236738,0.474806,0.901029,0.579211,0.199525,0.876616,0.429201,0.10194,0.471197,0.116988,0.77248,0.880925,0.184226,0.769544,0.228716,0.421597,0.782811,0.734988,0.522024,0.607377,0.974424,0.912533,0.639867,0.196598,0.518108,0.254108,0.389575,0.660294,0.567587,0.116306,0.506527,0.961751,0.939185,0.785928,0.643912,0.411181,0.266552,0.394005,0.965858,0.614584,0.187802,0.121557,0.889578,0.161792,0.602297,0.785705,0.714258,0.412623,0.259838,0.867298,0.665457,0.451172,0.58693,0.138904,0.525171,0.220347,0.871816,0.486424,0.538817,0.0250999,0.483281,0.28941,0.706619,0.921565,0.861732,0.786238,0.676904,0.961254,0.307089,0.149453,0.0981715,0.764669,0.941235,0.269668,0.12826,0.27584,0.762545,0.764037,0.0335503,0.577236,0.666624,0.105248,0.663038,0.933005,0.687687,0.375898,0.950974,0.740888,0.629795,0.248135,0.639919,0.858918,0.755846,0.489372,0.822316,0.576108,0.652849,0.0358273,0.780578,0.0448654,0.379659,0.0932037,0.0677502,0.786155,0.237195,0.937868,0.724224,0.99091,0.658768,0.856194,0.0995188,0.832597,0.866951,0.975067,0.473346,0.839973,0.512995,0.583904,0.596802,0.00144404,0.0604056,0.0929272,0.4405,0.936917,0.0927143,0.0764705,0.0247909,0.83956,0.539699,0.105581,0.432576,0.787204,0.319826,0.127127,0.114806,0.357798,0.637132,0.984758,0.5974,0.41403,0.174994,0.847035,0.569644,0.173009,0.973198,0.444298,0.99903,0.870511,0.756336,0.591266,0.444504,0.814721,0.413573,0.419012,0.0150006,|0.874795,0.0199208,0.300127,0.205819,0.904594,0.533383,0.965845,0.900873,0.929845,0.520534,0.226448,0.567988,0.174234,0.0582762,0.0639496,0.505313,0.5123,0.275366,0.382322,0.363833,0.378836,0.635817,0.869493,0.0997909,0.502363,0.680326,0.585462,0.233329,0.415596,0.693148,0.0523913,0.0256051,0.190435,0.472734,0.380279,0.733905,0.987003,0.35807,0.0207646,0.708484,0.827699,0.266029,0.548602,0.654669,0.0335308,0.942195,0.868706,0.855645,0.948146,0.937682,0.903697,0.572192,0.806901,0.935442,0.515369,0.0423669,0.949053,0.068566,0.874833,0.768986,0.338059,0.480976,0.267812,0.629585,0.589666,0.442701,0.469335,0.72467,0.331622,0.799853,0.757146,0.993417,0.179803,0.631818,0.198401,0.00213385,0.521598,0.0379253,0.630261,0.412927,0.579658,0.545735,0.507942,0.986676,0.812447,0.83947,0.94953,0.784646,0.0692108,0.394127,0.983811,0.685359,0.424403,0.785236,0.285402,0.583223,0.84937,0.549973,0.577964,0.192364,0.279406,0.762974,0.916686,0.499697,0.99719,0.309977,0.143182,0.379224,0.313581,0.436282,0.2297,0.901127,0.949802,0.906832,0.275906,0.170256,0.687502,0.854862,0.219521,0.457413,0.673876,0.857656,0.270602,0.957868,0.906057,0.317541,0.515503,0.0965682,0.751288,0.777008,0.800853,0.823366,0.0693758,0.0759326,0.264774,0.239324,0.621227,0.429976,0.0102373,0.440946,0.018061,0.172812,0.0780864,0.0396336,0.0104807,0.41091,0.0335652,0.918685,0.943479,0.917471,0.750205,0.524797,0.916794,0.266767,0.907742,0.146141,0.635467,0.34723,0.870424,0.749162,0.591955,0.750441,0.506949,0.0476516,0.673791,0.184692,0.628792,0.297445,0.068393,0.314855,0.528338,0.263611,0.142174,0.390901,0.354644,0.0819498,0.803045,0.914094,0.415266,0.00365782,0.675258,0.855608,0.384085,0.538653,0.125868,0.106288,0.503857,0.0559715,0.487466,0.975799,0.432923,0.592257,0.17364,0.860365,0.881651,0.266012,0.657678,0.253229,0.780649,0.549531,0.272338,0.10105,0.760617,0.554222,0.518188,0.622548,0.229778,0.328605,0.283827,0.358914,0.26053,0.676651,0.169673,0.772725,0.488371,0.526333,0.773227,0.829291,0.0076912,0.334052,0.0556397,0.781638,0.784342,0.661228,0.25238,0.599808,0.867835,0.887851,0.696033,0.95725,0.39953,0.293739,0.518223,0.331108,0.221343,0.0560179,0.541641,0.67785,0.237344,0.215712,0.539346,0.466038,0.50454,0.488316,0.667967,0.459435,0.45104,0.385055,0.75133,0.0352649,0.94515,0.997193,0.470811,0.439741,0.190737,0.315032,0.670578,0.177542,0.293987,0.589489,0.661818,0.694689,0.330848,0.44534,0.369297,0.296839,0.137124,0.452916,0.724103,0.905988,0.278598,0.911672,0.752646,0.481025,0.0390618,0.310965,0.170657,0.104274,0.0346755,0.86953,0.121488,0.486487,0.481547,0.362501,0.729107,0.807401,0.4179,0.682158,0.109872,0.662332,0.471095,0.0236515,0.954134,0.149328,0.0761469,0.172715,0.0671206,0.43127,0.339959,0.862788,0.614398,0.815318,0.804669,0.68829,0.068212,0.719966,0.365531,0.893716,0.324452,0.435554,0.897296,0.501279,0.263284,0.566867,0.969979,0.895429,0.62615,0.742596,0.443279,0.852853,0.115784,0.776432,0.892655,0.0691748,0.608325,0.948014,0.282242,0.568061,0.982389,0.514681,0.438448,0.688035,0.868011,0.332281,0.139297,0.793814,0.102988,0.534899,0.681206,0.0274577,0.0402736,0.310183,0.597104,0.0585771,0.169898,0.952422,0.669179,0.60267,0.146045,0.929834,0.0177707,0.0464326,0.752315,0.0509297,0.889178,0.848459,0.62918,0.194587,0.665933,0.110367,0.609503,0.10631,0.226087,0.254063,0.865134,0.209224,0.972347,0.346861,0.0403671,0.642583,0.376597,0.198011,0.554269,0.18984,0.79907,0.432001,0.923126,0.0572122,0.908662,0.617747,0.159151,0.0539916,0.943678,0.446926,0.22929,0.846811,0.49036,0.700998,0.0280511,0.0923163,0.600721,0.727683,0.0405911,0.110521,0.452876,0.125477,0.00155431,0.0629088,0.841896,0.361036,0.885085,0.784189,0.93353,0.11305,0.711158,0.883465,0.0784998,0.416484,0.319757,0.663731,0.455739,0.179556,0.0508173,0.0264444,0.589459,0.614981,0.633456,0.130047,0.0413204,0.778058,0.489682,0.0396953,0.265722,0.533392,0.889062,0.539168,0.218423,0.438291,0.831854,0.345038,0.731063,0.390196,0.406919,0.525316,0.193199,0.628409,0.439005,0.0492271,0.11443,0.958475,0.831853,0.472773,0.0324931,0.493796,0.0303556,0.401282,0.933916,0.891483,0.414063,0.373425,0.697246,0.278592,0.618262,0.776951,0.938291,0.109432,0.784669,0.779752,0.312568,0.673823,0.633264,0.6537,0.473266,0.0735595,0.579311,0.861869,0.745579,0.613226,0.759309,0.368075,0.452384,0.867628,0.495668,0.109424,0.758137,0.426711,0.508757,0.395973,0.787486,0.756596,0.289332,0.364908,0.528323,0.463591,0.670928,0.296247,0.975526,0.834823,0.689921,0.819317,0.613485,0.980341,0.663292,0.00645632,0.986626,0.570081,0.862883,0.183688,0.799054,0.414605,0.103632,0.00262153,0.447401,0.159614,0.473742,0.290493,0.449125,0.693315,0.258018,0.565474,0.302427,0.344548,0.87279,0.833179,0.300865,0.097333,0.244084,0.144155,0.749975,0.53482,0.263824,0.766839,0.0599793,0.596084,0.684533,0.192533,0.102698,0.0996152,0.384423,0.184222,0.38928,0.822636,0.499461,0.694702,0.779238,0.300705,0.751545,0.0938293,0.272023,0.877609,0.102816,0.656377,0.345591,0.188754,0.365822,0.104253,0.185252,0.380242,0.668088,0.19734,0.121717,0.773746,0.691868,0.594714,0.481908,0.851268,0.167518,0.189184,0.409254,0.452893,0.101704,0.00250006,0.517923,0.824845,0.401471,0.158934,0.425108,0.423635,0.903056,0.496625,0.090549,0.790742,0.243319,0.393887,0.78125,0.465712,0.35646,0.237718,0.159917,0.832877,0.230273,0.336423,0.53987,0.520251,0.0592673,0.640195,0.960498,0.790826,0.543651,0.400884,0.530417,0.150098,0.35817,0.400024,0.35204,0.871346,0.495634,0.681312,0.161343,0.32489,0.843794,0.430544,0.948404,0.982936,0.647399,0.6796,0.466588,0.750741,0.214653,0.683944,0.968729,0.512464,0.311822,0.626589,0.241771,0.419977,0.0515726,0.788541,0.531686,0.682889,0.135893,0.231722,0.140893,0.0191543,0.292136,0.116612,0.859832,0.00594151,0.436897,0.207731,0.909631,0.795942,0.660064,0.688652,0.143124,0.302926,0.848708,0.356409,0.498671,0.674162,0.286492,0.0750215,0.392478,0.24495,0.10965,0.895126,0.424095,0.19731,0.500448,0.861621,0.573825,0.408405,0.842995,0.344639,0.817745,0.904432,0.962931,0.845525,0.889041,0.435239,0.375255,0.802963,0.965565,0.921161,0.0970784,0.682537,0.146434,0.879979,0.0430894,0.176573,0.468554,0.847876,0.0794888,0.515304,0.93317,0.0777844,0.282527,0.366104,0.659886,0.139756,0.0523461,0.196732,0.997984,0.0839072,0.540552,0.64765,0.43962,0.0335038,0.542303,0.71795,0.920488,0.816473,0.163279,0.372698,0.875987,0.107528,0.77941,0.733029,0.715332,0.0542104,0.151378,0.130285,0.939037,0.742236,0.660263,0.55057,0.180201,0.491527,0.61794,0.877433,0.162359,0.231952,0.193198,0.742154,0.963669,0.9949,0.789124,0.450399,0.80806,0.698147,0.596034,0.755308,0.409721,0.0739848,0.879328,0.341015,0.29038,0.369631,0.426875,0.807802,0.0824032,0.125759,0.698533,0.344988,0.757061,0.667813,0.167765,0.646761,0.776687,0.265906,0.168175,0.309441,0.0594898,0.267391,0.153489,0.334049,0.724368,0.0367489,0.140279,0.550665,0.335982,0.324372,0.723272,0.560798,0.368908,0.270716,0.546862,0.493835,0.947296,0.821984,0.449658,0.233467,0.0573586,0.765448,0.644047,0.00863224,0.288984,0.157768,0.499432,0.0009197,0.645572,0.0879253,0.913215,0.695718,0.656051,0.115483,0.0891129,0.167578,0.375507,0.15267,0.568086,0.297357,0.820812,0.427297,0.600192,0.66052,0.693812,0.887246,0.395011,0.630759,0.879763,0.236224,0.89387,0.648641,0.371249,0.630905,0.45321,0.866119,0.523877,0.00959837,0.818227,0.15386,0.832482,0.940854,0.431644,0.210109,0.945216,0.511713,0.846967,0.824268,0.284203,0.491121,0.360602,0.378577,0.4754,0.716918,0.570568,0.239632,0.818289,0.378544,0.0234547,0.51099,0.865158,0.949806,0.48015,0.84193,0.714224,0.692387,0.904161,0.989289,0.237366,0.0421864,0.288092,0.396064,0.234352,0.0142682,0.973381,0.575328,0.505,0.0681998,0.885739,0.355216,0.982512,0.398019,0.748449,0.768904,0.649729,0.607048,0.976459,0.0882476,0.0417061,0.383799,0.234895,0.194854,0.88354,0.520192,0.883017,0.592397,0.159693,0.0763792,0.0591728,0.600457,0.9693,0.904448,0.701559,0.565563,0.75084,0.828337,0.521129,0.138433,0.519631,0.754807,0.879911,0.926587,0.636565,0.532836,0.122871,0.807609,0.901585,0.300817,0.756594,0.39557,0.0555947,0.000909209,0.691885,0.228688,0.0346834,0.942969,0.204587,0.653821,0.945902,0.164444,0.261345,0.662588,0.497341,0.241783,0.546129,0.479275,0.377073,0.274372,0.162926,0.292876,0.196521,0.948781,0.726279,0.868462,0.227037,0.194875,0.0562295,0.0406042,0.284633,0.0257024,0.270391,0.886664,0.188137,0.455372,0.53201,0.450433,0.955951,0.759621,0.145702,0.660856,0.334774,0.526737,0.957953,0.815249,0.0367239,0.0698004,0.728218,0.00800455,0.926592,0.0982742,0.201711,0.461033,0.882263,0.957091,0.495194,0.726012,0.530604,0.791705,0.365132,0.205976,0.754684,0.803924,0.580476,0.813756,0.560605,0.305784,0.120837,0.400628,0.447151,0.68036,0.756135,0.669633,0.000388801,0.539396,0.910292,0.0239823,0.576079,0.910882,0.0979252,0.577587,0.123768,0.969657,0.46679,0.0456337,0.735402,0.708374,0.319226,0.117863,0.355681,0.85898,0.356158,0.239969,0.561734,0.332496,0.0743594,0.549067,0.834342,0.45286,0.769368,0.927724,0.37492,0.220129,0.338731,0.88825,0.2674,0.307253,0.315083,0.0768303,0.171017,0.104779,0.181029,0.867869,0.23542,0.0926701,0.17924,0.0237479,0.307041,0.167247,|0.891487,0.0474386,0.670414,0.0436491,0.492619,0.536048,0.907162,0.0704837,0.0839958,0.84027,0.731719,0.667533,0.910347,0.277572,0.687487,0.437104,0.187025,0.459944,0.801135,0.703677,0.296886,0.917565,0.970138,0.495876,0.158826,0.172499,0.166984,0.29648,0.923918,0.614055,0.546435,0.733088,0.771974,0.491364,0.29041,0.79364,0.904673,0.760542,0.254288,0.656103,0.187603,0.507879,0.0977829,0.568185,0.0377308,0.345139,0.600389,0.153034,0.418378,0.163643,0.658336,0.865123,0.973705,0.405617,0.113167,0.177076,0.0433432,0.45668,0.0496404,0.270743,0.372847,0.181517,0.366981,0.783332,0.717128,0.246694,0.874333,0.662902,0.624456,0.03864,0.423975,0.589976,0.796403,0.269212,0.428083,0.990263,0.175226,0.363732,0.145455,0.721567,0.278129,0.799631,0.631667,0.997969,0.00710714,0.936846,0.535421,0.980553,0.942185,0.41744,0.564719,0.436579,0.0623335,0.882483,0.663043,0.716034,0.791871,0.522214,0.295256,0.705766,0.636587,0.159408,0.555632,0.0191327,0.424591,0.765684,0.484277,0.392087,0.471609,0.352782,0.411181,0.680005,0.332783,0.32742,0.0656334,0.898505,0.787949,0.162743,0.866036,0.816735,0.403332,0.194836,0.453676,0.0321845,0.135978,0.339674,0.763207,0.722391,0.41969,0.995802,0.140346,0.384837,0.115676,0.156552,0.230496,0.765554,0.697764,0.496624,0.305388,0.862556,0.231651,0.94658,0.304386,0.0361553,0.497975,0.279488,0.68078,0.844224,0.94742,0.821251,0.780691,0.675779,0.029366,0.621493,0.983621,0.949952,0.0253175,0.637282,0.93209,0.705873,0.267123,0.92194,0.665477,0.342027,0.102308,0.223931,0.00660431,0.948522,0.795656,0.473316,0.955137,0.184498,0.829247,0.881796,0.303864,0.104502,0.373337,0.649185,0.55435,0.896024,0.244501,0.0164671,0.29505,0.361759,0.319496,0.677723,0.166478,0.870365,0.493601,0.338381,0.489704,0.250662,0.965241,0.866737,0.350398,0.231874,0.463313,0.263588,0.751038,0.915326,0.539113,0.497378,0.84458,0.387998,0.991928,0.89121,0.496971,0.265457,0.0866135,0.0824996,0.208528,0.532714,0.375461,0.235224,0.735756,0.573585,0.989161,0.776518,0.923952,0.873872,0.767484,0.740419,0.971659,0.0730647,0.431569,0.161314,0.762329,0.558699,0.416495,0.539912,0.84534,0.377842,0.863462,0.7268,0.441287,0.511296,0.154591,0.570969,0.643299,0.290065,0.0952124,0.425576,0.719051,0.591001,0.772146,0.825124,0.411243,0.903268,0.901919,0.371824,0.360609,0.0639854,0.476818,0.202612,0.450806,0.529248,0.80011,0.0991591,0.886562,0.353042,0.883456,0.365969,0.105412,0.61679,0.843139,0.672208,0.430357,0.710255,0.799083,0.914505,0.134012,0.979411,0.388443,0.0742567,0.489518,0.650267,0.0614584,0.865636,0.534294,0.998872,0.906897,0.705753,0.493918,0.239296,0.573522,0.61178,0.340528,0.802708,0.0412897,0.0193127,0.209781,0.734435,0.0400194,0.231318,0.578738,0.0611534,0.951153,0.747521,0.999795,0.835332,0.357049,0.615888,0.869115,0.479466,0.566351,0.197833,0.314994,0.412696,0.38546,0.93673,0.497579,0.807581,0.477662,0.722908,0.227978,0.678309,0.488931,0.0452703,0.531987,0.371753,0.25651,0.330674,0.290318,0.771221,0.539585,0.772477,0.694743,0.0353022,0.120499,0.963651,0.770259,0.621556,0.11433,0.675114,0.477181,0.923246,0.30523,0.84156,0.46831,0.395166,0.416262,0.355367,0.918137,0.147553,0.878279,0.934248,0.873589,0.778666,0.567156,0.381527,0.0287009,0.460936,0.247149,0.834572,0.981244,0.426857,0.432006,0.766387,0.836384,0.924762,0.280721,0.407067,0.755534,0.623916,0.0816621,0.504202,0.874814,0.829662,0.332815,0.510638,0.965697,0.21787,0.321329,0.791141,0.795488,0.470147,0.396686,0.776317,0.804715,0.0729393,0.930128,0.1807,0.931013,0.394959,0.435996,0.394337,0.0189397,0.237456,0.384101,0.224083,0.680488,0.637228,0.198439,0.750959,0.294509,0.432957,0.183876,0.88564,0.259766,0.23123,0.830279,0.378105,0.93572,0.58539,0.0267424,0.168999,0.194577,0.454923,0.117774,0.601422,0.616092,0.495093,0.256047,0.414872,0.130949,0.501963,0.638141,0.738864,0.658925,0.57703,0.265787,0.408798,0.00493956,0.727025,0.963964,0.595284,0.577149,0.524443,0.937228,0.733169,0.708066,0.852052,0.32081,0.29763,0.629433,0.158043,0.604712,0.867582,0.896817,0.85733,0.27608,0.57268,0.343593,0.5908,0.278321,0.989236,0.488299,0.583516,0.128521,0.746721,0.528947,0.846282,0.877936,0.076982,0.577198,0.476583,0.514324,0.133133,0.827065,0.100802,0.781801,0.42422,0.00463623,0.70257,0.176612,0.940472,0.177242,0.341547,0.65495,0.0493855,0.728727,0.849046,0.146098,0.626032,0.0264952,0.405423,0.959078,0.410621,0.828164,0.569656,0.487551,0.155214,0.314948,0.554805,0.196372,0.529678,0.247338,0.706478,0.447348,0.579729,0.164174,0.874233,0.851271,0.14955,0.185213,0.344169,0.650275,0.764126,0.774404,0.438034,0.637444,0.571563,0.505922,0.454768,0.0513163,0.371075,0.232862,0.749957,0.2138,0.667503,0.415522,0.76683,0.167263,0.284904,0.8316,0.703621,0.152728,0.144879,0.236945,0.161699,0.44369,0.308237,0.255927,0.74183,0.621792,0.268342,0.954833,0.8401,0.150981,0.220582,0.168325,0.52848,0.742882,0.35254,0.766576,0.0852005,0.5019,0.923713,0.522726,0.91787,0.0358915,0.275099,0.20551,0.647481,0.473965,0.246089,0.0239453,0.265558,0.92085,0.11205,0.0637988,0.863659,0.766881,0.295387,0.47153,0.551518,0.404251,0.0166934,0.0113722,0.230818,0.566401,0.353917,0.364371,0.64079,0.00506228,0.109444,0.3421,0.389306,0.50809,0.0571716,0.99343,0.463776,0.508431,0.119858,0.333507,0.444398,0.881681,0.790967,0.655562,0.517475,0.10393,0.567522,0.625377,0.564541,0.175866,0.436839,0.104278,0.376759,0.383488,0.470361,0.0419457,0.805665,0.769553,0.0946113,0.45492,0.679606,0.766232,0.930551,0.14104,0.883831,0.77428,0.254078,0.228027,0.749043,0.771332,0.102294,0.399176,0.113816,0.166943,0.419265,0.879447,0.35258,0.607892,0.839895,0.623918,0.304754,0.283837,0.61645,0.201237,0.252025,0.998505,0.586532,0.182882,0.987119,0.821068,0.893852,0.459354,0.580404,0.80504,0.553743,0.542253,0.701686,0.105529,0.360366,0.792964,0.551878,0.713823,0.245516,0.182731,0.256174,0.323123,0.790194,0.281297,0.466818,0.0556993,0.53222,0.191386,0.377937,0.723189,0.994766,0.413833,0.691053,0.943056,0.704385,0.571014,0.710792,0.0527136,0.388972,0.225798,0.791737,0.799015,0.269984,0.0717248,0.341946,0.895177,0.0830182,0.844933,0.275357,0.586575,0.256955,0.934193,0.0726518,0.824943,0.840552,0.238215,0.0914407,0.8454,0.263694,0.902076,0.2546,0.683498,0.223126,0.742606,0.697312,0.0885694,0.178434,0.909346,0.404528,0.817139,0.683209,0.834665,0.185262,0.69159,0.22209,0.695821,0.336797,0.505406,0.767184,0.910402,0.585853,0.104337,0.525283,0.46146,0.498122,0.223871,0.978627,0.817881,0.609701,0.839987,0.574483,0.0128115,0.658545,0.350903,0.655626,0.492576,0.541017,0.323195,0.216385,0.761589,0.190504,0.343417,0.255982,0.612671,0.207099,0.734842,0.349439,0.39741,0.962889,0.78433,0.748894,0.804107,0.140628,0.438476,0.825445,0.444712,0.400781,0.279881,0.135962,0.217063,0.810955,0.0331241,0.731484,0.411543,0.753949,0.0563215,0.775692,0.665774,0.434698,0.464032,0.373091,0.986664,0.436679,0.618954,0.376181,0.977339,0.6212,0.673485,0.180861,0.784307,0.518773,0.167885,0.848901,0.167564,0.174414,0.7098,0.969363,0.377015,0.359833,0.354351,0.789334,0.361786,0.40673,0.75379,0.208575,0.0556168,0.0170013,0.563917,0.021928,0.925201,0.723105,0.0276083,0.178839,0.75948,0.636841,0.56633,0.442015,0.890507,0.0308736,0.57343,0.566854,0.345315,0.905871,0.997404,0.917064,0.999125,0.0711301,0.78961,0.0885662,0.550226,0.977198,0.702454,0.199831,0.759954,0.868193,0.889794,0.21986,0.40655,0.0351295,0.802687,0.865893,0.19277,0.242376,0.984112,0.0262715,0.493503,0.402308,0.0937845,0.214259,0.864917,0.666686,0.157241,0.951221,0.687649,0.62592,0.385977,0.948059,0.759987,0.862494,0.773432,0.305902,0.878057,0.500346,0.247569,0.759994,0.464636,0.572558,0.400962,0.441004,0.680539,0.568823,0.330253,0.250892,0.544073,0.849049,0.101771,0.667321,0.807748,0.838823,0.535215,0.474904,0.0449017,0.318006,0.18864,0.530387,0.940345,0.736509,0.321524,0.254626,0.860995,0.49986,0.0683438,0.495729,0.723932,0.134927,0.665062,0.609711,0.810618,0.0842719,0.662884,0.415193,0.713885,0.541076,0.136276,0.581148,0.959145,0.0259086,0.350676,0.865938,0.862702,0.2165,0.858394,0.119701,0.573753,0.783993,0.889144,0.535494,0.659862,0.433819,0.44332,0.731243,0.967172,0.78633,0.836228,0.171181,0.134871,0.255199,0.351582,0.141731,0.670804,0.721473,0.0489889,0.663735,0.420284,0.0648009,0.352692,0.0968255,0.137127,0.839717,0.833762,0.78389,0.20154,0.601544,0.467595,0.132502,0.111012,0.684334,0.278972,0.119491,0.46531,0.91238,0.693572,0.470464,0.473896,0.911364,0.529062,0.0266177,0.768775,0.160077,0.476799,0.183992,0.0350072,0.23091,0.226952,0.865581,0.693003,0.946074,0.714957,0.496569,0.946277,0.494858,0.409999,0.762664,0.0605766,0.828034,0.417315,0.195829,0.000552475,0.830918,0.167605,0.136746,0.758192,0.0701755,0.282907,0.707239,0.807181,0.997187,0.294323,0.273401,0.374708,0.244574,0.527397,0.666065,0.670024,0.271413,0.260571,0.600006,0.495845,0.373112,0.61371,0.21023,0.431712,0.725911,0.373357,0.134527,0.0715523,0.104675,0.773269,0.276241,0.988927,0.365496,0.420523,0.805154,0.61958,0.968273,0.120103,0.798359,0.419283,0.337989,0.793094,0.740032,0.049508,0.020048,0.304336,0.384883,0.968744,0.325267,0.0240446,0.400906,0.420415,0.166249,|0.0979777,0.72298,0.403014,0.843775,0.545088,0.807402,0.461634,0.625197,0.253642,0.376654,0.717138,0.238573,0.87714,0.251764,0.633191,0.209052,0.609696,0.82154,0.508901,0.617777,0.163127,0.622946,0.226825,0.248662,0.929723,0.45983,0.565468,0.642878,0.411882,0.904868,0.714633,0.333671,0.464814,0.243635,0.591269,0.626415,0.521778,0.230191,0.79959,0.550247,0.861631,0.235242,0.0715322,0.121001,0.944544,0.721698,0.947881,0.592085,0.232505,0.888794,0.493169,0.0120146,0.750362,0.637201,0.631989,0.808474,0.712764,0.379626,0.352854,0.462517,0.813742,0.297238,0.544182,0.293449,0.650069,0.149958,0.764347,0.779683,0.50321,0.794722,0.820368,0.0964364,0.988108,0.867219,0.446086,0.812552,0.0507411,0.550208,0.76072,0.398178,0.207081,0.585535,0.356868,0.382424,0.325178,0.301236,0.504658,0.560822,0.36186,0.719089,0.631789,0.384257,0.686334,0.21015,0.047423,0.290845,0.597463,0.275159,0.635837,0.338751,0.721036,0.845358,0.553803,0.0135085,0.664592,0.958403,0.856978,0.184725,0.187576,0.925623,0.227017,0.794036,0.410049,0.593424,0.623926,0.0834182,0.937209,0.407211,0.0562981,0.402593,0.2273,0.38468,0.4687,0.227754,0.469335,0.271908,0.700575,0.344528,0.517914,0.769834,0.416855,0.0603513,0.0204228,0.321887,0.377959,0.557153,0.893785,0.191545,0.670293,0.134863,0.400159,0.642109,0.613819,0.635055,0.422288,0.21102,0.48244,0.182873,0.634238,0.814467,0.958382,0.403712,0.653554,0.910248,0.428006,0.843444,0.597288,0.328207,0.0530338,0.422235,0.381065,0.0713015,0.690187,0.52739,0.115087,0.98034,0.225754,0.0515382,0.347927,0.796381,0.278834,0.362143,0.26172,0.847243,0.247514,0.696399,0.31979,0.362747,0.736303,0.19968,0.679972,0.868477,0.0973021,0.867279,0.0568886,0.0451956,0.953014,0.999176,0.496078,0.0663339,0.163973,0.697111,0.018407,0.921149,0.755848,0.264206,0.752339,0.747594,0.534658,0.935617,0.196366,0.258919,0.492391,0.613332,0.626956,0.323876,0.319079,0.954454,0.813929,0.461759,0.158676,0.137243,0.637573,0.919516,0.776276,0.0799567,0.611547,0.812065,0.384213,0.523928,0.649638,0.0115176,0.382668,0.214463,0.257735,0.218463,0.596412,0.204069,0.549019,0.0883195,0.952557,0.524978,0.509042,0.315235,0.632742,0.564387,0.553132,0.114741,0.161422,0.0385385,0.399033,0.851075,0.0391011,0.302658,0.842357,0.301162,0.71522,0.85397,0.868928,0.00110507,0.485242,0.956994,0.955524,0.27442,0.798072,0.314497,0.593066,0.940055,0.501814,0.768373,0.115232,0.738406,0.0910249,0.0480441,0.952028,0.683463,0.152153,0.51116,0.100425,0.491819,0.522514,0.27876,0.798205,0.848046,0.0114936,0.173734,0.783188,0.946859,0.912783,0.729115,0.87229,0.416852,0.484873,0.755685,0.382553,0.0158666,0.150104,0.105578,0.00640529,0.886309,0.468182,0.226326,0.936538,0.884573,0.722399,0.559803,0.389564,0.0563899,0.043294,0.239253,0.892994,0.55649,0.44584,0.195085,0.392306,0.62204,0.0595868,0.503619,0.44087,0.00166881,0.167247,0.883865,0.714299,0.873365,0.403691,0.963343,0.0836141,0.610742,0.515397,0.421441,0.341908,0.660762,0.478521,0.982567,0.82285,0.680654,0.406936,0.253469,0.471749,0.55047,0.233889,0.0670072,0.74545,0.937105,0.461733,0.295444,0.762111,0.213481,0.146832,0.226143,0.825626,0.723437,0.781424,0.149039,0.105056,0.852763,0.00535965,0.160765,0.355947,0.454875,0.056781,0.689271,0.395522,0.933841,0.789882,0.652422,0.943418,0.478314,0.397815,0.316742,0.857975,0.36737,0.0576494,0.800436,0.148957,0.74407,0.453311,0.0125965,0.698172,0.523433,0.517709,0.100069,0.83747,0.112233,0.476637,0.591392,0.401299,0.905166,0.570575,0.242353,0.942082,0.883177,0.0848959,0.878324,0.940034,0.800179,0.930818,0.178892,0.961747,0.403824,0.220189,0.932556,0.64407,0.269773,0.179812,0.958417,0.440476,0.979977,0.969895,0.344369,0.898023,0.309643,0.873539,0.378842,0.693549,0.0404558,0.00407171,0.640567,0.550977,0.895603,0.30919,0.694909,0.13773,0.0382602,0.0911845,0.663406,0.99955,0.93934,0.204575,0.270071,0.236252,0.436749,0.754474,0.413716,0.376346,0.192186,0.36989,0.334989,0.228677,0.282615,0.256426,0.461283,0.985398,0.911755,0.117409,0.882887,0.509271,0.628395,0.250439,0.353146,0.608217,0.664934,0.471181,0.689019,0.808829,0.138324,0.658942,0.615612,0.302492,0.551812,0.00848603,0.25518,0.012778,0.917645,0.869341,0.168543,0.983271,0.147353,0.760125,0.762766,0.416335,0.194138,0.259265,0.0385345,0.650959,0.502157,0.250815,0.535857,0.390101,0.598229,0.193828,0.742523,0.575493,0.458252,0.342648,0.526251,0.660056,0.749804,0.353196,0.993067,0.294679,0.763412,0.328972,0.981242,0.466922,0.521159,0.940071,0.0967175,0.0911659,0.128174,0.503107,0.279087,0.307995,0.398934,0.582192,0.23832,0.653079,0.369732,0.0610114,0.905585,0.630832,0.941995,0.447726,0.544905,0.0735099,0.270813,0.687045,0.953386,0.82011,0.789223,0.148751,0.314069,0.429473,0.978755,0.0247306,0.404042,0.763962,0.666506,0.630909,0.185719,0.750035,0.88415,0.711129,0.320792,0.847081,0.368453,0.942899,0.643184,0.137473,0.687504,0.676396,0.505508,0.170181,0.459344,0.145827,0.118284,0.986009,0.590072,0.00711042,0.901116,0.238251,0.168601,0.770236,0.700404,0.187794,0.228404,0.320091,0.926408,0.380963,0.0415406,0.362103,0.997711,0.022902,0.741834,0.877375,0.847203,0.520006,0.137506,0.577794,0.068335,0.533406,0.323024,0.971982,0.606063,0.195722,0.49173,0.700524,0.459775,0.306157,0.687444,0.990083,0.333539,0.763803,0.272037,0.132298,0.530948,0.959745,0.555377,0.365851,0.241848,0.132122,0.509006,0.936424,0.536322,0.331988,0.108259,0.709518,0.324291,0.637104,0.124269,0.235997,0.385254,0.841419,0.0783269,0.969484,0.962462,0.91265,0.82847,0.669386,0.318085,0.150868,0.35478,0.798997,0.643401,0.909469,0.814354,0.218254,0.0373623,0.764692,0.405483,0.0702515,0.313651,0.970298,0.998244,0.966183,0.233908,0.454178,0.178277,0.48787,0.599399,0.992169,0.920824,0.901705,0.566776,0.101454,0.674133,0.0195034,0.247191,0.295776,0.814893,0.601945,0.112545,0.330369,0.921767,0.316123,0.822941,0.855259,0.766703,0.119108,0.499436,0.7,0.430338,0.099252,0.160984,0.46708,0.575937,0.301735,0.533572,0.965325,0.753119,0.0284441,0.0498559,0.416292,0.599309,0.192694,0.706394,0.444051,0.421041,0.327182,0.412173,0.683326,0.957234,0.64614,0.749175,0.847138,0.274672,0.52946,0.864968,0.609381,0.0435588,0.576886,0.927841,0.000693679,0.716989,0.624179,0.0322291,0.492738,0.60925,0.14955,0.922451,0.801545,0.760032,0.349662,0.727668,0.97732,0.851191,0.419674,0.179559,0.831569,0.61013,0.590347,0.394726,0.437504,0.926791,0.818972,0.341054,0.188415,0.156222,0.178489,0.512641,0.714427,0.643858,0.137848,0.100172,0.824636,0.480878,0.199086,0.0269287,0.247749,0.751553,0.37534,0.392333,0.674722,0.197407,0.397436,0.932368,0.325324,0.4708,0.345743,0.543532,0.114907,0.376608,0.767894,0.0427712,0.0941993,0.513609,0.65705,0.189342,0.812172,0.44207,0.895502,0.475639,0.497311,0.537481,0.994009,0.46388,0.882969,0.519828,0.269563,0.106629,0.494748,0.606212,0.494016,0.832796,0.0295296,0.595837,0.0216421,0.341489,0.00496024,0.665973,0.321597,0.0443282,0.601215,0.605595,0.678935,0.314872,0.451438,0.825694,0.635137,0.289557,0.119565,0.572349,0.521451,0.054459,0.142747,0.390584,0.99348,0.507182,0.832607,0.66455,0.452851,0.893286,0.0857099,0.893766,0.621611,0.191158,0.590868,0.631124,0.344654,0.00460815,0.522155,0.0335404,0.162215,0.501659,0.821585,0.963558,0.133253,0.389283,0.572811,0.0380379,0.169544,0.105083,0.384244,0.630832,0.282326,0.288553,0.938547,0.44957,0.81949,0.460436,0.150458,0.0207833,0.354857,0.201912,0.090317,0.126375,0.939248,0.129394,0.71013,0.819332,0.125915,0.467992,0.79909,0.669477,0.757769,0.349896,0.481663,0.0232577,0.436731,0.266593,0.989937,0.398934,0.289458,0.280887,0.874127,0.888627,0.27513,0.657374,0.415121,0.901608,0.535164,0.0224794,0.564777,0.718425,0.610159,0.445435,0.919453,0.400295,0.403051,0.734086,0.702991,0.976629,0.728372,0.591183,0.74546,0.707086,0.689073,0.0032118,0.781142,0.155614,0.484835,0.0931036,0.0665625,0.928462,0.103954,0.351751,0.0179467,0.619756,0.181622,0.236676,0.194827,0.626508,0.740969,0.945746,0.557095,0.702731,0.394513,0.686718,0.588934,0.93307,0.776234,0.703329,0.732781,0.71656,0.756155,0.669819,0.669743,0.2047,0.681206,0.621032,0.433618,0.2118,0.754776,0.252629,0.378806,0.53284,0.615177,0.227554,0.300737,0.988306,0.214261,0.0720223,0.315068,0.734851,0.764913,0.793812,0.268574,0.346189,0.667074,0.348804,0.863657,0.081499,0.586702,0.459679,0.226035,0.628002,0.532403,0.0519491,0.290907,0.227612,0.0102105,0.53152,0.673736,0.826044,0.398334,0.401228,0.0486846,0.962974,0.170314,0.21632,0.0844984,0.847418,0.737404,0.345919,0.399877,0.398491,0.878332,0.951131,0.918281,0.990006,0.519903,0.535835,0.470637,0.588799,0.0600587,0.414404,0.158552,0.00443673,0.602139,0.250655,0.234901,0.343312,0.961227,0.390556,0.0342904,0.160961,0.729434,0.797952,0.38669,0.25993,0.63186,0.0519044,0.59824,0.457434,0.835509,0.425323,0.909649,0.264816,0.36306,0.257961,0.0155317,0.663994,0.500953,0.974547,0.329911,0.530877,0.759873,0.576889,0.651389,0.922608,0.697364,0.343406,0.774265,0.412724,0.946181,0.840028,0.91398,0.22086,0.63096,0.222973,0.281249,0.403575,0.705528,0.584734,0.926739,0.858972,0.687125,0.532386,0.0226008,0.155338,0.502374,0.695187,0.221466,0.0348517,0.457147,0.962707,0.644646,0.128204,0.905901,0.671043,|0.185513,0.477713,0.0997443,0.750431,0.169277,0.31365,0.994801,0.165753,0.470204,0.546955,0.248744,0.615194,0.823271,0.740541,0.0906004,0.613559,0.532841,0.17698,0.221966,0.801027,0.805448,0.990546,0.54361,0.960231,0.693088,0.475293,0.913933,0.789999,0.582861,0.639025,0.370097,0.817453,0.81605,0.0634487,0.0602931,0.323148,0.810386,0.662372,0.517558,0.662588,0.292628,0.0213431,0.528273,0.299157,0.23388,0.0789575,0.332006,0.802136,0.90754,0.167319,0.563609,0.562387,0.951812,0.675466,0.24477,0.185091,0.701002,0.141522,0.657122,0.372832,0.54368,0.919174,0.650539,0.776016,0.51047,0.114918,0.772411,0.16936,0.626789,0.081013,0.249488,0.309859,0.518937,0.251086,0.409614,0.311775,0.102914,0.312472,0.169035,0.262216,0.257204,0.537806,0.967642,0.665133,0.389601,0.0194909,0.111869,0.850679,0.35671,0.899945,0.0386986,0.714894,0.329633,0.937607,0.443979,0.771826,0.141687,0.170221,0.29688,0.586772,0.0299461,0.400406,0.210123,0.0581799,0.819149,0.734464,0.768809,0.623686,0.279073,0.30201,0.353221,0.992983,0.736154,0.63937,0.393727,0.449716,0.39584,0.784158,0.942857,0.35563,0.217401,0.173851,0.997561,0.766512,0.384321,0.465009,0.913348,0.189509,0.210996,0.883865,0.438842,0.354371,0.313323,0.743888,0.360658,0.375512,0.783703,0.904968,0.388566,0.386855,0.439444,0.716891,0.33923,0.541371,0.508728,0.351976,0.35024,0.140631,0.489472,0.309693,0.515993,0.97581,0.120952,0.301296,0.596639,0.0558307,0.767343,0.00452685,0.151103,0.0601062,0.248517,0.991583,0.25646,0.716549,0.289533,0.183243,0.955785,0.379023,0.756563,0.805681,0.724743,0.31573,0.221203,0.326357,0.499385,0.275516,0.599577,0.110458,0.316765,0.543559,0.239247,0.916904,0.908933,0.225832,0.823901,0.417615,0.246501,0.738282,0.709701,0.697516,0.626261,0.235379,0.418753,0.593023,0.656145,0.462863,0.484004,0.685707,0.391918,0.590202,0.997087,0.756697,0.23345,0.757076,0.203731,0.484948,0.436859,0.328607,0.710988,0.663134,0.426813,0.596967,0.58331,0.0975859,0.240669,0.860157,0.263305,0.818987,0.641724,0.397258,0.873874,0.0920087,0.907843,0.789108,0.231879,0.767117,0.83195,0.0772352,0.968735,0.654703,0.849627,0.6756,0.9885,0.238769,0.724879,0.772806,0.742734,0.756212,0.462797,0.0520833,0.157141,0.575077,0.890763,0.995861,0.0133341,0.719864,0.959456,0.014222,0.303671,0.325467,0.64719,0.461109,0.926422,0.501334,0.277362,0.195506,0.194939,0.88904,0.476608,0.0915574,0.521668,0.349597,0.988605,0.390394,0.813988,0.925535,0.0689989,0.339544,0.918384,0.414781,0.501729,0.638736,0.545154,0.31118,0.581286,0.205462,0.467963,0.403365,0.945406,0.54298,0.51115,0.554936,0.294042,0.78319,0.747559,0.117261,0.710969,0.791156,0.689233,0.308674,0.819839,0.822105,0.385006,0.855034,0.688486,0.957095,0.23324,0.0865589,0.585612,0.421695,0.827593,0.490855,0.840253,0.437093,0.109812,0.404964,0.960275,0.870183,0.521364,0.150279,0.742669,0.366181,0.221084,0.493194,0.552479,0.417499,0.67838,0.0266397,0.311073,0.190807,0.0951545,0.13462,0.898154,0.837081,0.34544,0.79312,0.509668,0.207719,0.0285708,0.438821,0.195143,0.725152,0.218022,0.327037,0.950669,0.910561,0.815344,0.393019,0.111963,0.131113,0.470613,0.811277,0.516072,0.429216,0.0832414,0.938437,0.0789855,0.303146,0.789582,0.184474,0.189443,0.781407,0.496325,0.574034,0.918807,0.485944,0.737634,0.256258,0.0847693,0.193019,0.953756,0.149105,0.343001,0.298731,0.439579,0.746346,0.826793,0.0200789,0.208865,0.182879,0.840187,0.844484,0.773684,0.721441,0.594315,0.262329,0.592836,0.614932,0.951356,0.998608,0.0154485,0.576904,0.692411,0.994293,0.448288,0.568081,0.436474,0.324462,0.0471907,0.333578,0.399419,0.616275,0.260228,0.913075,0.88372,0.725942,0.128997,0.723495,0.95235,0.539128,0.277304,0.487786,0.401105,0.417718,0.832879,0.898282,0.141821,0.556677,0.492041,0.11049,0.529561,0.17698,0.903007,0.69579,0.0705179,0.0868233,0.633272,0.754829,0.938195,0.989699,0.833145,0.460654,0.162756,0.0929515,0.832383,0.3908,0.629595,0.217918,0.244589,0.532984,0.556377,0.635514,0.408625,0.382709,0.415207,0.21563,0.686776,0.102857,0.391264,0.0979804,0.811483,0.435792,0.0523369,0.214884,0.409669,0.421014,0.73319,0.954026,0.0840023,0.694162,0.154589,0.744175,0.157982,0.21465,0.172445,0.243919,0.884281,0.673246,0.384678,0.370317,0.838241,0.711892,0.225477,0.313183,0.133888,0.770321,0.604572,0.915222,0.359834,0.0569242,0.392563,0.22264,0.0513456,0.836756,0.64882,0.266156,0.510728,0.348479,0.596681,0.277331,0.0236456,0.158062,0.925842,0.987018,0.0537445,0.440211,0.16472,0.70598,0.627891,0.532687,0.695372,0.331127,0.873785,0.731783,0.931485,0.147406,0.808011,0.411887,0.962257,0.542495,0.936956,0.0200641,0.523136,0.11367,0.108277,0.612256,0.857493,0.0170624,0.881793,0.995012,0.61749,0.847087,0.833426,0.58665,0.69,0.257647,0.727124,0.488483,0.378696,0.325405,0.848786,0.301489,0.0114661,0.104778,0.304396,0.95152,0.892905,0.39445,0.965603,0.913504,0.553222,0.173126,0.919795,0.895269,0.0132948,0.177074,0.36838,0.391638,0.625781,0.705144,0.00539517,0.692323,0.355222,0.381028,0.0484949,0.464444,0.49293,0.998371,0.404167,0.619849,0.474976,0.100439,0.151481,0.640617,0.437748,0.525374,0.284448,0.686914,0.218934,0.168677,0.86057,0.180279,0.801768,0.112405,0.152595,0.549248,0.173489,0.336173,0.571569,0.799163,0.848318,0.845274,0.530527,0.492038,0.978431,0.161115,0.552884,0.133011,0.279682,0.578868,0.909794,0.681369,0.165866,0.554404,0.545377,0.920413,0.289298,0.56178,0.728051,0.597695,0.211977,0.569696,0.0328192,0.88723,0.224951,0.758471,0.54701,0.236316,0.194625,0.34856,0.490381,0.863863,0.49464,0.994886,0.536883,0.64568,0.825051,0.0280417,0.918579,0.704385,0.645766,0.457922,0.791807,0.42373,0.211645,0.0823138,0.303988,0.0700899,0.835957,0.508363,0.784634,0.847081,0.221626,0.978961,0.646493,0.548976,0.00016278,0.634963,0.248298,0.773607,0.656551,0.747199,0.827152,0.75706,0.929687,0.446032,0.0245783,0.221732,0.669817,0.85393,0.628034,0.833449,0.272937,0.899506,0.678793,0.0846522,0.667029,0.433147,0.55121,0.679372,0.893651,0.577299,0.711796,0.131837,0.449229,0.747851,0.285702,0.551425,0.225859,0.856125,0.943597,0.199004,0.416982,0.714133,0.517287,0.341795,0.976784,0.948981,0.276984,0.0191404,0.409867,0.616498,0.637886,0.202204,0.736506,0.266034,0.0528436,0.459382,0.181037,0.160743,0.837984,0.123515,0.17323,0.0374823,0.848691,0.0974446,0.140265,0.197464,0.872032,0.0374413,0.621268,0.352586,0.767935,0.0598466,0.204672,0.454501,0.334002,0.886712,0.0718483,0.44935,0.671964,0.674609,0.0990095,0.857715,0.238715,0.199866,0.784765,0.627762,0.600865,0.118091,0.0322401,0.142941,0.692756,0.820925,0.722251,0.89098,0.172459,0.0614936,0.475466,0.441003,0.831808,0.252067,0.857849,0.0427979,0.777547,0.0202109,0.204935,0.0959529,0.735969,0.558273,0.90329,0.650376,0.19257,0.185559,0.227616,0.789471,0.0602005,0.26593,0.784788,0.999602,0.50237,0.159574,0.931873,0.870875,0.409261,0.0126998,0.299098,0.331237,0.214167,0.973397,0.55508,0.354823,0.69905,0.469233,0.074401,0.520076,0.873518,0.649752,0.645975,0.905949,0.582456,0.745002,0.224096,0.76792,0.718343,0.550535,0.731825,0.362631,0.929459,0.803751,0.577809,0.989175,0.153264,0.312757,0.662822,0.930548,0.34753,0.644557,0.583967,0.562234,0.952494,0.541628,0.88163,0.115887,0.108522,0.187679,0.870454,0.797872,0.539212,0.713823,0.613149,0.0670276,0.849512,0.812354,0.0499724,0.084805,0.276449,0.992808,0.26068,0.595152,0.0123914,0.457869,0.427165,0.288624,0.274091,0.323003,0.0407624,0.40305,0.735231,0.903461,0.16197,0.709772,0.594794,0.558011,0.879045,0.925934,0.853921,0.263317,0.481531,0.40269,0.223709,0.00572884,0.0450498,0.584064,0.242237,0.291377,0.530075,0.384181,0.7084,0.6766,0.306468,0.123333,0.760017,0.343349,0.0270385,0.303561,0.65165,0.10862,0.967272,0.691189,0.302096,0.559779,0.622943,0.463336,0.601745,0.601071,0.378694,0.0509588,0.755154,0.358915,0.633187,0.288599,0.132193,0.438813,0.630208,0.504606,0.960084,0.534204,0.406439,0.684135,0.843007,0.0695867,0.23889,0.501931,0.449667,0.100925,0.44523,0.10767,0.429286,0.68687,0.586812,0.0531844,0.846434,0.470385,0.960905,0.241789,0.375347,0.334889,0.407334,0.911034,0.904758,0.514401,0.812572,0.785811,0.773053,0.102734,0.252046,0.791656,0.910963,0.596224,0.696016,0.838319,0.305929,0.103774,0.115706,0.607028,0.986686,0.682016,0.211079,0.451334,0.327645,0.916957,0.192795,0.584325,0.872463,0.397522,0.387649,0.905241,0.776327,0.10636,0.00623411,0.556275,0.787199,0.29517,0.253048,0.403259,0.770237,0.0259703,0.536733,0.441202,0.771871,0.154222,0.531569,0.986848,0.670063,0.692997,0.231302,0.152369,0.320395,0.965147,0.132849,0.889563,0.945913,0.0123282,0.865162,0.361803,0.478862,0.654879,0.43021,0.363967,0.171365,0.95475,0.946641,0.516434,0.732949,0.385066,0.281638,0.00641936,0.79491,0.397742,0.476657,0.395196,0.162748,0.281327,0.862462,0.424947,0.795345,0.698768,0.0462647,0.787081,0.682395,0.742948,0.444637,0.970753,0.993795,0.986607,0.0379596,0.862545,0.96978,0.698314,0.763042,0.741309,0.381841,0.042851,0.356628,0.910411,0.112348,0.940495,0.567092,0.0959838,0.389969,0.820183,0.642629,0.961612,0.75938,0.694883,0.358445,0.44473,0.184866,0.457087,0.720579,0.480497,0.388594,0.514433,0.733097,0.283757,0.82424,0.143545,0.94228,0.680419,|0.48191,0.785298,0.983199,0.0992519,0.218934,0.0368743,0.874523,0.710107,0.811846,0.949308,0.407921,0.816805,0.898385,0.655654,0.409644,0.438998,0.507507,0.901913,0.455693,0.395085,0.393441,0.814691,0.30525,0.491251,0.329897,0.440155,0.553333,0.857526,0.0893483,0.845778,0.891245,0.742888,0.509607,0.0847601,0.820655,0.655275,0.348951,0.763988,0.829089,0.467534,0.118224,0.126165,0.130194,0.996553,0.677569,0.608591,0.449505,0.200417,0.0291197,0.104966,0.720481,0.044072,0.83793,0.0639715,0.621179,0.470322,0.387684,0.361754,0.920917,0.481406,0.958459,0.278802,0.364586,0.0709512,0.283785,0.0932521,0.341633,0.906332,0.495468,0.282956,0.359807,0.538855,0.215717,0.588153,0.815242,0.301561,0.0383639,0.430957,0.529843,0.0345182,0.349544,0.951609,0.431336,0.710737,0.984806,0.154315,0.409924,0.459199,0.109866,0.0780913,0.449878,0.82284,0.715778,0.945553,0.229359,0.12822,0.994394,0.911712,0.225752,0.440916,0.371741,0.686252,0.918775,0.409147,0.623722,0.316919,0.629958,0.450479,0.466275,0.751015,0.355043,0.33559,0.806932,0.393572,0.663517,0.253737,0.683694,0.914539,0.420745,0.848008,0.186294,0.960048,0.514403,0.435602,0.483898,0.338527,0.63731,0.984378,0.762005,0.402623,0.222538,0.149289,0.862394,0.963384,0.490195,0.916619,0.0742894,0.216899,0.7062,0.226122,0.702158,0.534156,0.861076,0.627102,0.0926952,0.193204,0.837019,0.0569878,0.680603,0.426975,0.714847,0.417226,0.489471,0.929857,0.981869,0.44587,0.202123,0.538728,0.258708,0.754773,0.854533,0.124109,0.404899,0.283703,0.417114,0.75641,0.896853,0.866705,0.577173,0.635724,0.445385,0.631319,0.681483,0.243815,0.734732,0.447559,0.395813,0.561452,0.315801,0.5655,0.0445344,0.518858,0.853926,0.117863,0.993148,0.831472,0.351288,0.094826,0.847856,0.923047,0.818513,0.0872438,0.667054,0.965228,0.425045,0.874168,0.878641,0.940149,0.635328,0.663533,0.0915533,0.194878,0.0913408,0.515615,0.972353,0.463053,0.371292,0.206053,0.895634,0.383345,0.663975,0.479858,0.186468,0.203687,0.801539,0.652605,0.272107,0.607832,0.183106,0.842614,0.879166,0.733808,0.742999,0.440162,0.32844,0.81811,0.535893,0.287187,0.477761,0.714562,0.777298,0.624001,0.270059,0.744852,0.457705,0.048727,0.540805,0.884368,0.422193,0.769381,0.639746,0.0715815,0.474584,0.389826,0.711877,0.751204,0.186283,0.0331571,0.287638,0.0887399,0.0404339,0.172418,0.113341,0.758383,0.77423,0.409806,0.670864,0.326085,0.0359998,0.129336,0.715386,0.737428,0.12087,0.680278,0.620029,0.410635,0.0813011,0.710691,0.306638,0.755779,0.0565425,0.309327,0.827507,0.696069,0.70813,0.0917356,0.901059,0.758019,0.646403,0.207303,0.433774,0.0439397,0.53164,0.30168,0.110123,0.694182,0.520576,0.647646,0.0487391,0.152066,0.0801449,0.21152,0.240821,0.818312,0.286152,0.426256,0.428834,0.942322,0.922828,0.790823,0.671661,0.61508,0.888729,0.590422,0.319448,0.896658,0.659068,0.24059,0.919585,0.245631,0.101169,0.462639,0.177635,0.697237,0.660112,0.194573,0.837796,0.386082,0.655922,0.96637,0.285067,0.565374,0.389135,0.9168,0.0395979,0.107643,0.607874,0.852578,0.358221,0.0626155,0.785611,0.374581,0.157425,0.630792,0.432627,0.569709,0.217998,0.205386,0.446367,0.410861,0.897682,0.346019,0.51084,0.0847066,0.272631,0.675429,0.731392,0.129784,0.154214,0.17905,0.175489,0.0297908,0.2913,0.148393,0.910211,0.345878,0.749469,0.442082,0.926948,0.520091,0.280141,0.161428,0.0684616,0.7908,0.0885439,0.922938,0.752772,0.223751,0.531493,0.0807149,0.524171,0.482955,0.835887,0.971223,0.133735,0.73781,0.18889,0.794557,0.106267,0.0153326,0.732265,0.173735,0.820444,0.0256463,0.971492,0.385301,0.17298,0.759494,0.45374,0.256878,0.24581,0.368484,0.308887,0.41529,0.779321,0.460192,0.912017,0.0500268,0.168842,0.860441,0.809762,0.959231,0.428101,0.321628,0.732579,0.252036,0.0888379,0.775717,0.319243,0.131256,0.0817146,0.407755,0.553569,0.268359,0.13691,0.458143,0.489338,0.766142,0.904098,0.0525788,0.797034,0.509829,0.119477,0.481984,0.286895,0.926784,0.956407,0.636871,0.733014,0.678657,0.418671,0.38754,0.500029,0.723225,0.90168,0.926597,0.8892,0.620814,0.822084,0.210974,0.156565,0.396116,0.0137827,0.0284402,0.0188878,0.204107,0.965478,0.0040139,0.414045,0.280006,0.52515,0.556721,0.300358,0.28796,0.602203,0.647493,0.694317,0.903698,0.450753,0.694088,0.677013,0.993114,0.649057,0.184057,0.696109,0.628679,0.643327,0.136286,0.323703,0.948355,0.837679,0.486865,0.665015,0.154476,0.938197,0.391516,0.958368,0.308534,0.279415,0.358729,0.260584,0.0198085,0.399077,0.589814,0.594694,0.968285,0.643808,0.881417,0.975371,0.699425,0.256745,0.237282,0.279776,0.392853,0.189036,0.727097,0.473463,0.174516,0.0776386,0.0406383,0.682529,0.2718,0.703341,0.824174,0.667441,0.373483,0.830409,0.146856,0.220389,0.86695,0.587484,0.480341,0.445633,0.169177,0.878353,0.616554,0.587389,0.132965,0.256301,0.858594,0.3231,0.121499,0.905226,0.583673,0.981754,0.379282,0.0709476,0.435407,0.694202,0.751226,0.255111,0.617824,0.681239,0.684723,0.240589,0.00684971,0.181169,0.514889,0.79915,0.267705,0.222572,0.335015,0.734294,0.978814,0.783647,0.0510256,0.452462,0.367427,0.281706,0.877205,0.516549,0.319861,0.305701,0.914955,0.955788,0.913093,0.129049,0.50744,0.615585,0.913397,0.0279927,0.563954,0.519446,0.951046,0.494001,0.448606,0.234249,0.396071,0.015827,0.258749,0.344626,0.83065,0.344665,0.779833,0.0298552,0.791133,0.662804,0.424202,0.0778419,0.882212,0.0642285,0.723488,0.84191,0.0974935,0.868279,0.529707,0.77711,0.00649017,0.377558,0.894035,0.75148,0.961956,0.395746,0.947993,0.931181,0.423114,0.0152236,0.986295,0.154078,0.248089,0.932615,0.373266,0.265507,0.128436,0.646027,0.794993,0.895695,0.253324,0.641593,0.467989,0.762126,0.187888,0.0615877,0.836,0.371159,0.559661,0.744139,0.592402,0.474276,0.251259,0.100609,0.275887,0.441477,0.109173,0.994806,0.830085,0.83488,0.440973,0.505057,0.092173,0.329892,0.79606,0.607167,0.735693,0.735549,0.78146,0.289501,0.394523,0.000494301,0.428084,0.249502,0.844638,0.563222,0.506273,0.286628,0.146866,0.102013,0.965492,0.510572,0.985516,0.511797,0.943607,0.253933,0.516169,0.0835088,0.404907,0.695825,0.599111,0.54035,0.833624,0.19856,0.713138,0.588502,0.0199385,0.259362,0.219979,0.503682,0.845495,0.684585,0.162831,0.551548,0.485305,0.854401,0.757149,0.900412,0.385376,0.559256,0.384256,0.98966,0.218791,0.500577,0.122664,0.728958,0.673627,0.934436,0.175701,0.463799,0.500783,0.200176,0.412809,0.792515,0.508675,0.358998,0.806959,0.458086,0.0324392,0.541557,0.862544,0.830058,0.9643,0.936092,0.902977,0.975286,0.688689,0.894353,0.0544723,0.290874,0.117482,0.804926,0.252893,0.0613028,0.73092,0.593372,0.0219971,0.0597634,0.647441,0.626634,0.970531,0.126542,0.39378,0.310595,0.330737,0.618548,0.857093,0.432844,0.437311,0.28864,0.364455,0.720686,0.616531,0.569996,0.868071,0.512097,0.755744,0.15195,0.901775,0.337517,0.526062,0.64123,0.928624,0.562371,0.989056,0.852898,0.697025,0.267023,0.0221342,0.0886024,0.395152,0.7546,0.397266,0.344035,0.101662,0.651162,0.343855,0.865844,0.934996,0.178843,0.0973526,0.563561,0.0747544,0.50466,0.830849,0.460263,0.00114888,0.974053,0.256418,0.0188012,0.60698,0.803852,0.339286,0.31925,0.294027,0.233741,0.188534,0.349296,0.131108,0.0832354,0.516742,0.0500801,0.417961,0.97309,0.0510699,0.753998,0.952965,0.665248,0.97273,0.22375,0.598959,0.605415,0.354605,0.227779,0.454531,0.660365,0.355641,0.844171,0.722521,0.774642,0.915788,0.334005,0.417036,0.680012,0.239438,0.23137,0.351999,0.182958,0.148226,0.461989,0.0722398,0.0432563,0.565127,0.788144,0.215467,0.517628,0.758174,0.0122287,0.49898,0.297303,0.13497,0.103618,0.72308,0.392463,0.659325,0.390572,0.323124,0.512561,0.282972,0.742404,0.666537,0.740696,0.574401,0.017511,0.80616,0.493278,0.0789856,0.192736,0.245668,0.896043,0.312669,0.329721,0.686576,0.0771663,0.414818,0.564162,0.432303,0.727488,0.585863,0.0176226,0.914693,0.852253,0.311306,0.137836,0.212264,0.299785,0.545528,0.230026,0.990636,0.521721,0.678301,0.0313651,0.11315,0.949293,0.770537,0.720962,0.624222,0.643569,0.58293,0.530551,0.498507,0.770631,0.605818,0.614129,0.857098,0.314881,0.570881,0.694353,0.229687,0.180266,0.773758,0.48333,0.498489,0.0433781,0.143867,0.503537,0.998041,0.103977,0.876725,0.247381,0.794881,0.591588,0.146284,0.774598,0.63302,0.621615,0.475219,0.605799,0.440735,0.0783603,0.519623,0.64759,0.781902,0.209736,0.0852312,0.418482,0.840226,0.164444,0.400565,0.380839,0.820863,0.522071,0.976458,0.789695,0.506541,0.379753,0.845951,0.693205,0.0485601,0.130114,0.70465,0.620691,0.821502,0.201256,0.816127,0.612476,0.417165,0.0369316,0.818013,0.987935,0.564139,0.993027,0.743088,0.313156,0.852847,0.185494,0.782561,0.101429,0.289304,0.821155,0.00100642,0.759412,0.258308,0.382184,0.703138,0.255077,0.470908,0.475135,0.152801,0.93964,0.77541,0.71684,0.411197,0.593471,0.243919,0.26038,0.256189,0.0939401,0.466268,0.113544,0.987038,0.876558,0.210857,0.859389,0.863084,0.490855,0.336794,0.421469,0.719149,0.484002,0.727569,0.577026,0.13782,0.161156,0.236765,0.477365,0.61664,0.328412,0.111785,0.918089,0.754787,0.478123,0.257282,0.307105,0.747231,0.964974,0.54325,0.0753364,0.294498,0.0989946,0.73509,0.366012,0.204043,0.373331,0.0980036,0.987467,0.567341,0.291473,0.443575,0.345526,0.210418,0.859334,0.502994,|0.123803,0.610472,0.95809,0.839165,0.458847,0.409438,0.649528,0.798882,0.774677,0.808988,0.362784,0.556442,0.457104,0.393546,0.246468,0.39262,0.759185,0.976997,0.34744,0.723701,0.581645,0.43113,0.291737,0.362523,0.315845,0.931856,0.284289,0.283828,0.785318,0.502554,0.100999,0.143072,0.548304,0.243095,0.480752,0.929038,0.801105,0.405632,0.897938,0.820027,0.987197,0.63415,0.390041,0.465739,0.244192,0.937209,0.217622,0.933111,0.834249,0.935786,0.560728,0.781734,0.956828,0.375837,0.874953,0.522843,0.666246,0.94808,0.846842,0.311236,0.778985,0.902631,0.745858,0.157035,0.469979,0.876726,0.697763,0.782189,0.795409,0.153365,0.361858,0.154026,0.626165,0.495179,0.9653,0.434316,0.0281001,0.91497,0.574724,0.556462,0.664708,0.454598,0.140277,0.839662,0.200225,0.467768,0.987327,0.154311,0.86924,0.0251443,0.317508,0.629445,0.0093236,0.361184,0.770241,0.230407,0.307835,0.289852,0.761405,0.535658,0.325266,0.975112,0.845468,0.103806,0.467919,0.496996,0.463468,0.437328,0.6023,0.763639,0.0514343,0.0524767,0.381368,0.704974,0.648145,0.1306,0.519986,0.000232697,0.331908,0.160231,0.220061,0.916435,0.193349,0.0784589,0.727656,0.725988,0.648456,0.390015,0.908022,0.38986,0.205625,0.762819,0.579737,0.0687698,0.837652,0.609386,0.769416,0.636455,0.870478,0.189076,0.579744,0.238818,0.667418,0.998208,0.780399,0.238393,0.0447431,0.581399,0.230961,0.928159,0.0519201,0.300681,0.709655,0.324244,0.764542,0.783173,0.510913,0.274482,0.513056,0.361865,0.479735,0.374174,0.340676,0.880068,0.954235,0.47424,0.0667055,0.57172,0.0144969,0.153427,0.175152,0.235315,0.624156,0.0592663,0.904833,0.98202,0.595319,0.796204,0.0864834,0.456873,0.666937,0.541595,0.85794,0.612232,0.633971,0.213281,0.0588025,0.817422,0.273708,0.563113,0.643997,0.129113,0.673948,0.0666699,0.997583,0.185856,0.52962,0.550531,0.0227558,0.24058,0.294661,0.879311,0.130457,0.37793,0.0206743,0.887909,0.422787,0.376983,0.84647,0.138106,0.900249,0.918159,0.0219207,0.516417,0.869857,0.310025,0.379315,0.17593,0.511583,0.00307369,0.0838171,0.200442,0.203225,0.281198,0.431828,0.790886,0.716611,0.323691,0.546752,0.73974,0.0660859,0.515251,0.489852,0.716269,0.883996,0.238317,0.982182,0.880627,0.764133,0.115751,0.258562,0.253515,0.94013,0.133203,0.0376529,0.796073,0.774726,0.743554,0.547951,0.61277,0.0554032,0.301628,0.66381,0.328119,0.00498956,0.0802774,0.937057,0.670282,0.870322,0.193107,0.996401,0.159462,0.323547,0.721248,0.592333,0.0881494,0.129555,0.0466532,0.79646,0.483154,0.863706,0.420726,0.939632,0.0813701,0.229672,0.310083,0.0710524,0.14711,0.74001,0.5009,0.17491,0.502605,0.313201,0.721172,0.990698,0.43049,0.78685,0.819398,0.605553,0.489816,0.695898,0.0292225,0.759707,0.89166,0.730118,0.450489,0.272485,0.763327,0.427973,0.822538,0.529311,0.513085,0.774417,0.224483,0.0086844,0.780161,0.945455,0.5065,0.23663,0.544871,0.427016,0.57802,0.301731,0.192833,0.186355,0.68311,0.824487,0.657358,0.101893,0.542995,0.649193,0.942074,0.114931,0.301761,0.282823,0.78469,0.922233,0.708243,0.291957,0.814413,0.294285,0.51635,0.265762,0.523141,0.683953,0.209846,0.352904,0.501172,0.749647,0.649056,0.65707,0.378323,0.263641,0.498365,0.814248,0.0934633,0.47188,0.502768,0.903515,0.0841667,0.355255,0.45184,0.657569,0.579763,0.464454,0.541698,0.0204042,0.391652,0.824298,0.421224,0.0453355,0.216815,0.046307,0.468781,0.561593,0.669335,0.143953,0.704392,0.61916,0.659514,0.602236,0.0663939,0.519843,0.634656,0.985289,0.741626,0.173809,0.718913,0.424871,0.789999,0.304237,0.559951,0.181208,0.968895,0.826569,0.392654,0.406082,0.551647,0.322836,0.609272,0.425537,0.377311,0.296391,0.00617069,0.245801,0.605257,0.275146,0.141239,0.769868,0.854761,0.0468133,0.5185,0.288674,0.472941,0.312045,0.754876,0.143623,0.729452,0.724259,0.423998,0.373533,0.225761,0.238479,0.981792,0.218557,0.875088,0.519377,0.953707,0.529792,0.556583,0.0892136,0.186048,0.243861,0.62489,0.779868,0.515871,0.0146049,0.344137,0.659316,0.175388,0.332122,0.592425,0.013693,0.85515,0.0995216,0.0311759,0.17059,0.335811,0.462496,0.148377,0.77469,0.936114,0.391404,0.705383,0.674643,0.675117,0.160674,0.334798,0.620902,0.847595,0.273179,0.303833,0.298644,0.919493,0.383951,0.033478,0.714385,0.587888,0.891737,0.130569,0.0321703,0.567302,0.632609,0.756743,0.14116,0.533045,0.221954,0.990315,0.725111,0.451467,0.184887,0.0562373,0.184631,0.770734,0.333958,0.144589,0.913032,0.879255,0.676931,0.343133,0.0403206,0.870708,0.320234,0.500391,0.168989,0.929984,0.0513775,0.427627,0.367237,0.816634,0.893248,0.197215,0.919417,0.472349,0.822137,0.588758,0.466652,0.67269,0.580825,0.882726,0.653011,0.198091,0.951924,0.818416,0.388611,0.084978,0.502639,0.163532,0.715698,0.90173,0.640142,0.219087,0.634706,0.662951,0.395782,0.40748,0.22206,0.305928,0.807536,0.592418,0.94491,0.642269,0.819504,0.109479,0.0453303,0.459595,0.396602,0.627707,0.293336,0.61419,0.199608,0.852508,0.136435,0.702601,0.992638,0.0319088,0.34308,0.0440449,0.635974,0.892511,0.230826,0.396097,0.475788,0.768759,0.0339056,0.106035,0.223152,0.114922,0.143737,0.766549,0.8397,0.623382,0.53878,0.0779072,0.569159,0.475095,0.685522,0.735275,0.917989,0.741923,0.996433,0.893131,0.0134448,0.0378968,0.0889549,0.0670308,0.678897,0.758124,0.551542,0.344571,0.996699,0.553249,0.844728,0.444574,0.53845,0.977022,0.574228,0.896016,0.503929,0.149421,0.370191,0.762952,0.897282,0.237875,0.149616,0.189861,0.815583,0.329774,0.399146,0.846166,0.47714,0.296362,0.105399,0.603938,0.454096,0.680646,0.496524,0.604094,0.120013,0.915674,0.459475,0.0272706,0.86417,0.606339,0.20911,0.64387,0.754404,0.530406,0.731671,0.749434,0.342459,0.150927,0.886121,0.770181,0.858508,0.666232,0.913341,0.461102,0.144822,0.459961,0.00480205,0.950663,0.809757,0.280345,0.469613,0.874075,0.0954461,0.618499,0.445467,0.379891,0.475028,0.709553,0.39691,0.514313,0.916437,0.0310854,0.253625,0.807739,0.331766,0.957949,0.768232,0.518818,0.296009,0.0906773,0.219287,0.252873,0.431868,0.278384,0.627257,0.688589,0.707134,0.340035,0.0275899,0.592675,0.499548,0.368415,0.880847,0.348043,0.170986,0.284086,0.588962,0.975181,0.311274,0.106898,0.482877,0.745385,0.218169,0.0530771,0.863459,0.945758,0.689712,0.261372,0.189216,0.0986714,0.923727,0.740804,0.447107,0.467499,0.207471,0.00694698,0.115647,0.365514,0.807084,0.954196,0.999031,0.192007,0.817486,0.704446,0.770022,0.873378,0.734025,0.587084,0.900383,0.183461,0.21922,0.691068,0.559061,0.241792,0.419159,0.939247,0.841685,0.624218,0.479897,0.132836,0.393306,0.73859,0.00838131,0.166407,0.928628,0.751475,0.399618,0.986339,0.0346886,0.816341,0.740605,0.0743489,0.659882,0.671847,0.0417038,0.567193,0.141815,0.167828,0.257992,0.0484219,0.677189,0.73629,0.099624,0.948897,0.0598549,0.156473,0.215237,0.41743,0.066523,0.31327,0.955418,0.370806,0.646668,0.530559,0.463971,0.342658,0.0994514,0.108549,0.490928,0.0212628,0.640434,0.329137,0.841968,0.748321,0.802415,0.072909,0.663543,0.00733787,0.884476,0.689223,0.416768,0.801232,0.584458,0.538474,0.464962,0.55509,0.343587,0.249011,0.403657,0.754207,0.282919,0.490033,0.99114,0.44882,0.350131,0.102742,0.753217,0.196819,0.786952,0.658704,0.873262,0.933117,0.255907,0.346237,0.589837,0.319228,0.118291,0.553214,0.185199,0.465239,0.690445,0.456779,0.99386,0.589732,0.485335,0.71241,0.944698,0.867819,0.542457,0.248411,0.934701,0.513348,0.904168,0.021663,0.527029,0.707416,0.0757042,0.584947,0.531158,0.432628,0.869603,0.428226,0.616506,0.820376,0.81437,0.957,0.396756,0.188641,0.381323,0.798355,0.840306,0.399914,0.134325,0.936638,0.13948,0.450898,0.123416,0.973373,0.178419,0.225592,0.600023,0.29327,0.365666,0.886654,0.508452,0.758849,0.241975,0.761916,0.600374,0.557837,0.293833,0.81,0.17519,0.192181,0.00143278,0.247954,0.527482,0.497918,0.140857,0.296657,0.0849286,0.0649557,0.969158,0.870641,0.294649,0.905141,0.579834,0.335042,0.188332,0.973397,0.397361,0.882058,0.0847135,0.745044,0.663553,0.64374,0.304706,0.888561,0.0503441,0.595676,0.756935,0.693211,0.508162,0.376656,0.733989,0.411423,0.586246,0.561634,0.24211,0.482968,0.686728,0.6629,0.588904,0.309858,0.232256,0.46836,0.835511,0.272319,0.859639,0.475884,0.302678,0.911327,0.763251,0.262976,0.875608,0.233893,0.979638,0.791522,0.254157,0.199746,0.770381,0.331365,0.705833,0.649689,0.00609493,0.246463,0.566741,0.337767,0.0135684,0.128407,0.144735,0.880039,0.337252,0.0724529,0.573828,0.163997,0.589663,0.0112431,0.755403,0.983251,0.637677,0.482181,0.308629,0.518616,0.499777,0.476545,0.552624,0.619036,0.0198189,0.0746477,0.651732,0.93974,0.672694,0.150423,0.529076,0.74262,0.611935,0.194683,0.208857,0.154874,0.169159,0.787854,0.659194,0.488846,0.688166,0.726669,0.538462,0.175462,0.135139,0.814136,0.474211,0.431879,0.672934,0.872011,0.389059,0.972803,0.714952,0.839717,0.247633,0.767542,0.926759,0.88964,0.373341,0.778139,0.685159,0.941372,0.430923,0.44397,0.888117,0.663539,0.221255,0.263952,0.711283,0.648718,0.883479,0.153593,0.940738,0.80234,0.400995,0.219271,0.802397,0.257211,0.623024,0.349106,0.793472,0.0737075,0.230799,0.407497,0.270454,0.225624,0.757947,0.285304,0.0632633,0.868724,0.0231375,0.591938,0.0166161,0.548448,0.663681,0.586488,0.18367,0.121695,0.293621,0.838899,0.183032,0.210123,|0.809892,0.149916,0.271471,0.373851,0.225959,0.596966,0.566206,0.296319,0.733595,0.351892,0.63523,0.594101,0.780437,0.928215,0.922369,0.784634,0.323248,0.543891,0.611286,0.105718,0.470782,0.575292,0.567769,0.987516,0.364888,0.85798,0.353732,0.791659,0.735258,0.357044,0.323178,0.0936564,0.633399,0.895174,0.462846,0.0163382,0.958528,0.208412,0.700566,0.995714,0.372621,0.909981,0.0174591,0.892752,0.47457,0.969965,0.153662,0.019128,0.53361,0.549368,0.170453,0.10126,0.279802,0.266675,0.497056,0.563599,0.772509,0.865619,0.379258,0.494251,0.780697,0.435436,0.861027,0.0551922,0.0268655,0.19553,0.356126,0.281062,0.0165963,0.327157,0.0324971,0.639867,0.806521,0.0355899,0.246207,0.104127,0.998861,0.439139,0.145729,0.585214,0.185429,0.205262,0.197086,0.823504,0.50365,0.210533,0.764222,0.580952,0.481683,0.137391,0.196062,0.778665,0.946487,0.721544,0.588683,0.109861,0.19001,0.729188,0.4285,0.88904,0.533116,0.191308,0.222184,0.00438142,0.495165,0.0975677,0.453835,0.137769,0.985994,0.232748,0.778278,0.00947291,0.49225,0.202477,0.0959117,0.635279,0.660765,0.313508,0.681167,0.0327654,0.088303,0.65531,0.948748,0.239115,0.564193,0.308445,0.715636,0.79505,0.859002,0.302309,0.153739,0.625834,0.42479,0.281366,0.671466,0.44982,0.9712,0.0697718,0.717485,0.400486,0.425457,0.164214,0.62902,0.995224,0.0307633,0.8642,0.392635,0.715261,0.809181,0.149915,0.0220776,0.604194,0.119455,0.377282,0.393426,0.153784,0.880695,0.46613,0.835805,0.44759,0.0588722,0.864039,0.959028,0.162687,0.585488,0.0042392,0.442278,0.902148,0.413737,0.635397,0.972083,0.319557,0.688625,0.63386,0.168059,0.853583,0.0815001,0.199553,0.265783,0.946213,0.576687,0.569404,0.253373,0.163812,0.832444,0.609314,0.216122,0.842358,0.111371,0.687008,0.306143,0.690847,0.418831,0.259016,0.21442,0.136399,0.0719146,0.352793,0.273129,0.855856,0.251027,0.885725,0.0270473,0.875159,0.711723,0.262418,0.0448866,0.207812,0.425751,0.0127305,0.377258,0.219651,0.978362,0.758958,0.408081,0.870042,0.441477,0.975143,0.975252,0.923798,0.204642,0.0467041,0.424564,0.824685,0.28481,0.141931,0.986893,0.805584,0.110169,0.611668,0.443393,0.244572,0.148789,0.46599,0.677876,0.337655,0.623649,0.672238,0.909161,0.741616,0.582565,0.572833,0.356383,0.192339,0.32184,0.3976,0.774413,0.0167153,0.32197,0.118593,0.208624,0.187987,0.747286,0.764435,0.602614,0.727217,0.609557,0.406248,0.125049,0.992135,0.0249859,0.555221,0.707425,0.144112,0.288561,0.310198,0.00656056,0.475334,0.631316,0.0785825,0.722821,0.621879,0.880944,0.0206621,0.0886989,0.991617,0.893978,0.115972,0.22412,0.938308,0.129549,0.521187,0.475482,0.333428,0.160981,0.391801,0.516669,0.243773,0.587238,0.547286,0.0305752,0.199337,0.16215,0.736368,0.430064,0.798596,0.80582,0.811701,0.0356177,0.827084,0.946087,0.905973,0.0165042,0.262209,0.219542,0.712942,0.830288,0.169776,0.396471,0.326598,0.42932,0.315503,0.701244,0.533661,0.154931,0.447595,0.900835,0.91811,0.802127,0.828057,0.172771,0.677368,0.572097,0.858619,0.256735,0.45612,0.311164,0.0993948,0.2189,0.18708,0.509095,0.00858033,0.499797,0.908996,0.656576,0.559582,0.104961,0.668612,0.341429,0.71445,0.230925,0.539346,0.967353,0.093468,0.0189096,0.796482,0.131104,0.685262,0.0213041,0.564152,0.824163,0.0312055,0.768897,0.194927,0.996733,0.12636,0.0762682,0.0522046,0.190288,0.239457,0.480865,0.718116,0.870173,0.624017,0.835345,0.72766,0.75889,0.764905,0.750397,0.724245,0.963209,0.872204,0.690451,0.0244791,0.645349,0.308607,0.259079,0.443139,0.238097,0.304176,0.736673,0.218108,0.398194,0.988118,0.28451,0.401604,0.267901,0.307568,0.939531,0.730663,0.206596,0.00264466,0.522638,0.341292,0.994385,0.104557,0.737688,0.248446,0.880675,0.287396,0.835451,0.184329,0.974473,0.0104834,0.0420508,0.993507,0.433899,0.383339,0.171244,0.166421,0.382434,0.566728,0.631473,0.355113,0.448024,0.217739,0.0982488,0.841778,0.729921,0.944595,0.660192,0.721022,0.515738,0.744123,0.572388,0.884053,0.761719,0.026048,0.707571,0.113569,0.512224,0.460845,0.157127,0.267461,0.640777,0.803603,0.590278,0.672004,0.118759,0.62947,0.878438,0.857583,0.219934,0.105247,0.975712,0.409854,0.120691,0.478777,0.498303,0.844183,0.233888,0.799956,0.286358,0.179487,0.755485,0.000473976,0.399574,0.914017,0.356512,0.669102,0.836805,0.953299,0.791611,0.833852,0.963459,0.892936,0.178453,0.792135,0.167214,0.905442,0.934604,0.556716,0.255542,0.788678,0.364416,0.834976,0.449163,0.659628,0.63938,0.252964,0.149961,0.803983,0.148035,0.371693,0.126986,0.522652,0.103815,0.5562,0.807385,0.277663,0.393441,0.0774628,0.464323,0.419617,0.0776423,0.511063,0.477504,0.882312,0.497473,0.609702,0.0481021,0.45552,0.810486,0.334731,0.932402,0.967209,0.755601,0.494749,0.314249,0.728808,0.595823,0.816134,0.88313,0.282556,0.864005,0.282939,0.208181,0.285529,0.143498,0.3101,0.791906,0.269636,0.727804,0.597663,0.477475,0.645042,0.580015,0.865073,0.126395,0.770978,0.786727,0.276885,0.998145,0.71305,0.0474975,0.402619,0.43093,0.478806,0.822011,0.0488583,0.184831,0.562476,0.33576,0.22737,0.788273,0.955164,0.687796,0.393788,0.986614,0.772799,0.627983,0.585268,0.0542745,0.64514,0.144699,0.780714,0.560088,0.540315,0.0416893,0.0715969,0.960171,0.135372,0.547481,0.0547812,0.321492,0.834208,0.48656,0.808372,0.215713,0.6101,0.46089,0.537477,0.909841,0.616894,0.580672,0.56721,0.0207437,0.678409,0.4286,0.831731,0.750885,0.192787,0.492554,0.347334,0.669002,0.0485346,0.0723696,0.713142,0.809101,0.903132,0.807545,0.474048,0.584225,0.71614,0.282834,0.818809,0.102546,0.135504,0.538826,0.257801,0.447659,0.928764,0.458507,0.478239,0.561712,0.945626,0.870597,0.294716,0.969151,0.982518,0.508762,0.975674,0.149114,0.652894,0.492827,0.513552,0.731032,0.0614685,0.754506,0.551738,0.67125,0.282726,0.0475684,0.477162,0.102415,0.359265,0.324885,0.947263,0.219429,0.0711952,0.483203,0.258595,0.46583,0.610854,0.266808,0.84161,0.0860625,0.340201,0.358641,0.490658,0.126217,0.695687,0.816586,0.777014,0.0817986,0.477208,0.223229,0.83946,0.737399,0.697743,0.150816,0.665098,0.84045,0.0180703,0.420219,0.850969,0.902207,0.846278,0.950734,0.827588,0.710844,0.566584,0.656092,0.76232,0.162801,0.312602,0.180165,0.841825,0.190531,0.446642,0.210999,0.177305,0.63274,0.902219,0.368697,0.628138,0.429843,0.431174,0.643648,0.601937,0.100541,0.690022,0.689003,0.723678,0.256519,0.900554,0.29215,0.351409,0.0878982,0.677851,0.722288,0.525627,0.6782,0.671606,0.396098,0.521293,0.219705,0.240404,0.573656,0.562129,0.9742,0.373635,0.930975,0.3324,0.921618,0.0467112,0.870738,0.647746,0.855064,0.599271,0.584125,0.251201,0.330678,0.922338,0.52831,0.882816,0.256226,0.533031,0.731379,0.825882,0.69362,0.389317,0.00671905,0.334664,0.864274,0.295936,0.72773,0.13437,0.837645,0.669859,0.826754,0.155353,0.670036,0.43037,0.645119,0.932383,0.98478,0.221052,0.525584,0.15886,0.1717,0.337854,0.675387,0.680766,0.543505,0.926636,0.458588,0.733833,0.33843,0.0634628,0.389028,0.377928,0.526003,0.0961005,0.442296,0.711768,0.27725,0.29425,0.203629,0.963047,0.198857,0.0579445,0.803991,0.513534,0.0595524,0.54939,0.563161,0.417202,0.102097,0.503844,0.0727711,0.995294,0.995891,0.855651,0.952598,0.879999,0.504638,0.450397,0.258042,0.27676,0.332891,0.43346,0.360618,0.0134021,0.590056,0.554433,0.897481,0.587761,0.213298,0.228393,0.353253,0.366738,0.472954,0.92826,0.333031,0.359128,0.253863,0.416768,0.519181,0.934278,0.79662,0.0464364,0.567242,0.227963,0.865773,0.353663,0.613271,0.398062,0.0146492,0.145632,0.109789,0.949884,0.825701,0.638054,0.63285,0.477669,0.382004,0.661434,0.732983,0.331564,0.413419,0.882783,0.70617,0.477191,0.182805,0.177857,0.166367,0.771224,0.598853,0.469597,0.638693,0.107839,0.459902,0.0998099,0.0536613,0.869234,0.0354127,0.502478,0.0815157,0.311608,0.874718,0.411439,0.750201,0.0495734,0.416471,0.0537021,0.583624,0.902178,0.330894,0.918082,0.0516772,0.003016,0.442493,0.65822,0.964036,0.658425,0.383389,0.590692,0.757539,0.744059,0.221427,0.862268,0.93848,0.295142,0.742878,0.476359,0.683871,0.149099,0.0283291,0.836015,0.556507,0.988012,0.484953,0.900118,0.787771,0.503529,0.688918,0.634129,0.41055,0.468026,0.533643,0.60146,0.970188,0.95509,0.861399,0.242769,0.783708,0.710214,0.298837,0.478815,0.286882,0.634299,0.239293,0.335075,0.66012,0.872688,0.542028,0.982405,0.332856,0.652632,0.730235,0.305224,0.376956,0.267633,0.612379,0.213424,0.814434,0.385846,0.346854,0.0529119,0.968231,0.509394,0.939584,0.0278111,0.364134,0.833806,0.189667,0.899214,0.984108,0.149153,0.190701,0.234235,0.844596,0.0516851,0.628843,0.574843,0.547857,0.505536,0.91025,0.567358,0.0098933,0.341569,0.178981,0.156782,0.987824,0.100055,0.265045,0.145863,0.813577,0.527602,0.00600922,0.12351,0.671386,0.844725,0.341313,0.262664,0.730765,0.880537,0.0405186,0.581599,0.165682,0.712728,0.70405,0.806352,0.863451,0.0818149,0.486688,0.602788,0.263381,0.238949,0.789446,0.0444462,0.795651,0.226203,0.50995,0.621519,0.428848,0.0837297,0.628609,0.84411,0.216571,0.478782,0.736007,0.638571,0.573182,0.488684,0.574436,0.637062,0.598037,0.754881,0.293336,0.581943,0.652797,0.251453,0.899424,0.376457,0.91133,0.0236892,0.40378,0.627255,0.0130274,0.147429,0.502058,0.0104854,0.402163,0.95934,0.552959,0.329375,0.392947,0.674053,|0.405433,0.341407,0.939145,0.285099,0.762639,0.166804,0.646879,0.205219,0.138506,0.45568,0.18203,0.523458,0.533574,0.762287,0.620201,0.671477,0.224763,0.154868,0.175843,0.675296,0.642195,0.580209,0.440983,0.778089,0.671679,0.865104,0.962093,0.182491,0.542503,0.503055,0.91128,0.41252,0.0993308,0.0318614,0.67252,0.228301,0.706868,0.445991,0.831408,0.0353875,0.431026,0.528241,0.460591,0.411797,0.155032,0.0917512,0.195982,0.405362,0.33661,0.780393,0.835642,0.187293,0.125173,0.857526,0.991214,0.56623,0.697302,0.394928,0.716654,0.0558475,0.191014,0.831432,0.230055,0.266534,0.669648,0.223693,0.439934,0.841301,0.0174145,0.724308,0.553854,0.499872,0.049423,0.0888744,0.880287,0.391209,0.414388,0.892298,0.542273,0.839702,0.380725,0.850118,0.161225,0.710068,0.285741,0.817784,0.334944,0.888857,0.441248,0.119178,0.150439,0.959435,0.163927,0.323019,0.32633,0.0172086,0.41821,0.195117,0.160462,0.487394,0.512829,0.717881,0.33365,0.0759111,0.262504,0.230834,0.562945,0.0622209,0.0478704,0.202146,0.22742,0.381879,0.166938,0.694118,0.592117,0.507545,0.0101334,0.631319,0.652585,0.122144,0.559438,0.511019,0.385165,0.265508,0.973955,0.156293,0.455348,0.278649,0.86289,0.474937,0.194832,0.471384,0.87305,0.223247,0.590782,0.0185445,0.738737,0.260529,0.995969,0.615257,0.196392,0.969628,0.545845,0.967194,0.162644,0.688265,0.727686,0.952914,0.153514,0.748781,0.158888,0.764523,0.959723,0.496417,0.837961,0.638321,0.73285,0.808355,0.246155,0.953302,0.764567,0.00439513,0.475694,0.863203,0.778406,0.827859,0.8703,0.461772,0.0887827,0.837093,0.991265,0.714166,0.222935,0.685947,0.687062,0.654466,0.156249,0.971755,0.63871,0.0293394,0.0498071,0.199065,0.231032,0.235929,0.405481,0.83976,0.561662,0.966888,0.57653,0.136635,0.643809,0.99299,0.852858,0.583323,0.970547,0.254785,0.228932,0.143966,0.530366,0.392135,0.190263,0.0349064,0.240758,0.447981,0.940982,0.401173,0.589642,0.877215,0.955489,0.491361,0.718756,0.735131,0.664941,0.418826,0.611641,0.662228,0.704821,0.406914,0.254097,0.837706,0.364406,0.102016,0.61913,0.529426,0.649026,0.696044,0.735534,0.167302,0.470063,0.656428,0.906944,0.920962,0.84339,0.00797188,0.89358,0.896723,0.494915,0.857275,0.31177,0.181464,0.744207,0.495019,0.109751,0.97393,0.135595,0.43751,0.539325,0.740755,0.797418,0.594977,0.71681,0.297566,0.64038,0.136634,0.366649,0.399808,0.0784768,0.474729,0.587693,0.833044,0.430955,0.94016,0.133648,0.632678,0.0669938,0.216425,0.985306,0.950533,0.91568,0.581834,0.543206,0.0447148,0.577387,0.170037,0.210996,0.808866,0.289187,0.419992,0.725883,0.128516,0.784658,0.0479187,0.742668,0.0960581,0.784847,0.525188,0.541211,0.278758,0.466837,0.568481,0.0638629,0.224876,0.206322,0.0804064,0.0492567,0.152864,0.474236,0.350168,0.810917,0.0437573,0.251418,0.92158,0.387729,0.624115,0.087283,0.0107361,0.870936,0.66674,0.119478,0.0687942,0.743062,0.856049,0.635554,0.478801,0.501197,0.681727,0.720514,0.665859,0.635579,0.85548,0.38959,0.0775085,0.264626,0.605927,0.0529394,0.0786134,0.326665,0.542438,0.370794,0.15543,0.264879,0.259304,0.419877,0.206543,0.509437,0.917722,0.134735,0.118746,0.091424,0.840719,0.894878,0.704185,0.18361,0.696647,0.443766,0.903318,0.357208,0.952505,0.310405,0.0952218,0.634878,0.23535,0.741149,0.412004,0.961329,0.362813,0.638129,0.116686,0.242206,0.833239,0.936173,0.0517758,0.378175,0.665205,0.803911,0.769211,0.0945343,0.578036,0.367719,0.128587,0.799467,0.187475,0.453636,0.0784032,0.192889,0.194414,0.323057,0.787959,0.542075,0.755461,0.32577,0.176203,0.658991,0.451318,0.330515,0.508399,0.298032,0.0901401,0.312513,0.267823,0.156686,0.128139,0.850153,0.150232,0.696115,0.434308,0.150389,0.600394,0.586835,0.517207,0.850264,0.393651,0.947704,0.66163,0.153764,0.589849,0.348148,0.234958,0.578453,0.558619,0.0948609,0.579922,0.63587,0.0161018,0.544038,0.18457,0.800948,0.821193,0.214802,0.71282,0.605859,0.733887,0.141407,0.728169,0.353479,0.783351,0.196856,0.109566,0.317899,0.963742,0.20932,0.0806384,0.453441,0.0867232,0.241908,0.267797,0.601914,0.991904,0.595896,0.0418948,0.424132,0.552807,0.0351694,0.116977,0.699471,0.664454,0.496512,0.847078,0.380592,0.145141,0.911897,0.362079,0.818417,0.175588,0.921997,0.89031,0.0803132,0.24931,0.539313,0.852946,0.502153,0.817945,0.059991,0.845997,0.463778,0.284822,0.685888,0.686456,0.22602,0.239906,0.524642,0.0164709,0.14116,0.192161,0.306526,0.906932,0.893298,0.645291,0.204463,0.8765,0.721884,0.502842,0.788938,0.359057,0.0941001,0.881274,0.29049,0.682415,0.194198,0.32175,0.125685,0.73562,0.333546,0.96661,0.919256,0.953021,0.757758,0.174476,0.342299,0.390834,0.798745,0.806917,0.722376,0.000558317,0.907225,0.877931,0.157945,0.492412,0.0301574,0.898925,0.802963,0.59917,0.178943,0.955097,0.0811998,0.978359,0.0543803,0.996722,0.616926,0.550931,0.640832,0.414916,0.22833,0.46793,0.5923,0.0811607,0.189835,0.49854,0.155255,0.201183,0.946624,0.435465,0.510431,0.325925,0.364898,0.196684,0.815412,0.758051,0.785498,0.0532995,0.56353,0.429837,0.888597,0.762416,0.235378,0.428913,0.0401286,0.0778502,0.394556,0.127438,0.543836,0.989089,0.488499,0.830172,0.545442,0.165383,0.134993,0.540362,0.320575,0.567453,0.65227,0.675558,0.260932,0.76124,0.471031,0.319208,0.256848,0.617281,0.216737,0.43829,0.147931,0.572393,0.730664,0.663599,0.0150758,0.61448,0.987339,0.118427,0.671525,0.199055,0.970755,0.376328,0.195181,0.678794,0.625581,0.0884274,0.511922,0.517625,0.518804,0.905833,0.152616,0.689226,0.476181,0.259977,0.123309,0.177028,0.968005,0.0834007,0.275439,0.0519429,0.232614,0.110625,0.817613,0.323107,0.881901,0.652395,0.0246679,0.652606,0.211511,0.894711,0.339847,0.993196,0.139192,0.564894,0.960546,0.354278,0.294445,0.0610148,0.950185,0.266335,0.91086,0.378833,0.73018,0.618025,0.559149,0.594044,0.0731104,0.963129,0.267855,0.581313,0.0704114,0.242173,0.792124,0.455794,0.0796967,0.0488275,0.882218,0.36438,0.446857,0.454093,0.411698,0.519759,0.578593,0.475198,0.600084,0.325298,0.428007,0.282711,0.157549,0.795052,0.538188,0.493848,0.0968807,0.199351,0.768598,0.274016,0.809051,0.135779,0.10066,0.196413,0.415268,0.412794,0.099351,0.426823,0.454981,0.208864,0.950793,0.212169,0.473092,0.00858057,0.443935,0.26022,0.265222,0.781007,0.51931,0.379843,0.880697,0.353424,0.263384,0.994461,0.120957,0.0202253,0.80339,0.299569,0.182981,0.436426,0.694919,0.20166,0.371304,0.632813,0.341793,0.71803,0.506375,0.093089,0.859239,0.931657,0.848534,0.143611,0.817185,0.412631,0.800135,0.298099,0.711625,0.588157,0.730731,0.235941,0.306731,0.974381,0.511737,0.560775,0.422957,0.739038,0.36299,0.124268,0.479391,0.225191,0.226955,0.320813,0.125787,0.56568,0.202714,0.680577,0.834651,0.0712993,0.638143,0.25731,0.0545016,0.681273,0.580176,0.977958,0.522045,0.249342,0.311977,0.69778,0.177271,0.963643,0.727994,0.472847,0.334608,0.0448966,0.886524,0.162438,0.169716,0.933435,0.263127,0.781063,0.698724,0.355392,0.666387,0.53667,0.303162,0.851932,0.581997,0.785959,0.0416189,0.527956,0.367848,0.976729,0.144929,0.730576,0.85775,0.403738,0.245435,0.588565,0.293954,0.570404,0.0620514,0.218726,0.36945,0.52385,0.13432,0.996219,0.0193963,0.716853,0.380636,0.148744,0.432005,0.10119,0.320496,0.206505,0.268656,0.0935141,0.730314,0.458424,0.681136,0.458836,0.73562,0.391083,0.151727,0.626641,0.397283,0.756233,0.986759,0.335269,0.877319,0.387093,0.280137,0.265742,0.876421,0.863215,0.965138,0.662108,0.742553,0.649771,0.424885,0.478914,0.84268,0.807042,0.607312,0.848648,0.830404,0.0717869,0.571332,0.0561556,0.00869018,0.0140148,0.308601,0.645923,0.554238,0.777562,0.313923,0.131616,0.157357,0.394361,0.212986,0.871462,0.167688,0.821381,0.45477,0.795886,0.174041,0.982727,0.273094,0.762435,0.0844988,0.279762,0.939284,0.263543,0.816807,0.407516,0.35668,0.0215607,0.213816,0.124766,0.0821405,0.355013,0.180236,0.518055,0.100847,0.0406546,0.00129008,0.54564,0.114203,0.379511,0.998278,0.459157,0.233261,0.411864,0.893952,0.458009,0.871769,0.701875,0.67737,0.956771,0.658404,0.517849,0.27448,0.90477,0.75783,0.798551,0.491436,0.396363,0.428138,0.721924,0.760348,0.291594,0.239499,0.336821,0.656298,0.776859,0.319936,0.474646,0.735342,0.195344,0.0217313,0.775514,0.750054,0.367358,0.539756,0.149892,0.289376,0.24626,0.894612,0.668744,0.161736,0.967121,0.400485,0.976204,0.657876,0.967852,0.778574,0.893325,0.951461,0.102522,0.901227,0.295671,0.480289,0.371107,0.73464,0.245617,0.940364,0.235889,0.299336,0.369143,0.434464,0.424294,0.227741,0.952338,0.390918,0.410843,0.740032,0.70604,0.924362,0.884788,0.593421,0.57811,0.120941,0.378985,0.073878,0.139226,0.814674,0.748897,0.378051,0.65711,0.490948,0.835728,0.240848,0.187315,0.567582,0.951269,0.500857,0.2249,0.99047,0.562211,0.779201,0.224752,0.34122,0.250186,0.218663,0.0947106,0.695609,0.364349,0.894475,0.377198,0.559997,0.58629,0.152835,0.146132,0.356507,0.0861029,0.358304,0.692495,0.16682,0.756166,0.997079,0.706501,0.715365,0.362325,0.0222347,0.054492,0.718254,0.172336,0.978779,0.0114253,0.163834,0.306919,0.102349,0.808703,0.414971,0.641093,0.0580477,0.15938,0.515715,0.144542,0.54914,0.75329,0.444675,0.659931,0.0456587,0.286276,0.462615,0.43129,0.211938,0.94953,0.46476,0.779602,0.0525976,0.880614,0.88905,0.735021,|0.719499,0.32502,0.7561,0.102068,0.93195,0.562199,0.362984,0.769307,0.744215,0.347131,0.532235,0.133832,0.435979,0.874984,0.991484,0.75259,0.863191,0.738156,0.967353,0.179861,0.375095,0.117792,0.141703,0.196785,0.0389763,0.33667,0.712609,0.703638,0.861263,0.694104,0.629738,0.184246,0.4202,0.565512,0.758176,0.856008,0.646522,0.355571,0.927408,0.497279,0.45062,0.0291678,0.150012,0.678346,0.518507,0.846646,0.117629,0.711795,0.505643,0.862569,0.258639,0.170523,0.399369,0.354366,0.491247,0.59602,0.942561,0.682112,0.0884988,0.694255,0.605241,0.31627,0.95449,0.416931,0.456355,0.128743,0.730051,0.0707252,0.78723,0.695497,0.541987,0.958085,0.353595,0.666252,0.0730247,0.546351,0.628497,0.704342,0.816198,0.614805,0.323724,0.436207,0.206082,0.906108,0.215324,0.641381,0.731641,0.320591,0.817356,0.217844,0.0828009,0.739038,0.77071,0.540821,0.839209,0.595474,0.451387,0.697549,0.118796,0.120643,0.585697,0.0647765,0.867708,0.471484,0.226119,0.423471,0.54303,0.602207,0.939183,0.605442,0.970909,0.634,0.701404,0.407684,0.166719,0.432778,0.0300041,0.0697142,0.102144,0.90633,0.0111793,0.226848,0.433772,0.820198,0.293785,0.789032,0.958473,0.59933,0.650556,0.0490517,0.873285,0.0655928,0.407168,0.372894,0.246198,0.422132,0.668614,0.331686,0.265689,0.770998,0.691548,0.735283,0.318771,0.0948173,0.277179,0.0280018,0.983802,0.0986279,0.47037,0.852885,0.89774,0.474328,0.980926,0.413148,0.771679,0.691974,0.543688,0.902059,0.63384,0.00586939,0.430941,0.467079,0.802362,0.158478,0.8516,0.560119,0.0347065,0.906853,0.10704,0.855684,0.690792,0.290515,0.27658,0.020191,0.0226362,0.439813,0.133299,0.265601,0.472264,0.385646,0.505829,0.797628,0.172204,0.668978,0.519228,0.854689,0.0428132,0.4076,0.524786,0.612295,0.830189,0.040633,0.349571,0.0595554,0.778202,0.309205,0.00436687,0.274085,0.806151,0.72547,0.522045,0.0712949,0.341052,0.932566,0.819895,0.630902,0.749063,0.104356,0.98432,0.955506,0.0367455,0.650529,0.610643,0.852179,0.959964,0.291431,0.771839,0.226512,0.95604,0.627941,0.174085,0.215718,0.756023,0.827689,0.258388,0.456549,0.957932,0.0776864,0.489133,0.354606,0.76769,0.434276,0.992929,0.0611533,0.258915,0.433698,0.699796,0.726044,0.162612,0.924823,0.865381,0.822245,0.100701,0.482691,0.461875,0.915104,0.932338,0.84622,0.980348,0.802031,0.571335,0.64512,0.556284,0.744692,0.800398,0.404491,0.666884,0.779622,0.700259,0.494168,0.51738,0.794484,0.293751,0.937083,0.714626,0.587852,0.319525,0.784812,0.662491,0.16389,0.392085,0.344217,0.0891856,0.247804,0.101186,0.417643,0.253866,0.0950889,0.660114,0.51744,0.754048,0.643536,0.0889819,0.147926,0.283122,0.206078,0.237702,0.533955,0.170058,0.017442,0.393858,0.29801,0.704247,0.876344,0.768388,0.844249,0.832632,0.178815,0.0171357,0.788694,0.813083,0.527243,0.698346,0.942748,0.0917261,0.408102,0.986663,0.466749,0.944431,0.473741,0.749679,0.570014,0.531476,0.0322928,0.680427,0.682393,0.901275,0.445539,0.330047,0.27215,0.532133,0.0820349,0.2543,0.671895,0.32592,0.917135,0.638089,0.377756,0.586633,0.604308,0.936912,0.97588,0.372735,0.721503,0.608793,0.760295,0.247686,0.836862,0.54245,0.877735,0.394319,0.631526,0.255799,0.0310198,0.246943,0.280468,0.975513,0.945648,0.166874,0.514292,0.0705131,0.102285,0.392912,0.653902,0.0961006,0.449006,0.559069,0.799282,0.290015,0.659645,0.49601,0.0210875,0.397539,0.240018,0.116367,0.528232,0.144623,0.562721,0.973241,0.43058,0.732485,0.719002,0.496068,0.453648,0.856323,0.77472,0.6222,0.924756,0.170667,0.442439,0.641862,0.0717158,0.89341,0.379703,0.0531799,0.979178,0.721067,0.492817,0.536992,0.0731655,0.104599,0.150491,0.569303,0.692884,0.679159,0.019662,0.73219,0.955509,0.299902,0.802642,0.716876,0.548029,0.909631,0.72444,0.923961,0.842906,0.171548,0.0874355,0.970069,0.676086,0.802434,0.58121,0.627202,0.524661,0.982049,0.429421,0.42841,0.896466,0.645426,0.629865,0.68509,0.210196,0.0538443,0.25974,0.0601298,0.949398,0.793034,0.0165998,0.657742,0.941584,0.00303733,0.83799,0.0247295,0.666865,0.514162,0.6395,0.851128,0.868814,0.298086,0.424064,0.801848,0.755315,0.410536,0.861401,0.709876,0.327765,0.428221,0.123465,0.871293,0.567465,0.953993,0.745804,0.940699,0.80873,0.275398,0.62213,0.420179,0.796979,0.989345,0.75637,0.822365,0.158385,0.589092,0.389088,0.610636,0.364607,0.290381,0.936826,0.103779,0.987221,0.349919,0.906557,0.142029,0.552958,0.315255,0.776796,0.681194,0.015081,0.358652,0.195016,0.625358,0.000309587,0.278232,0.612065,0.544893,0.748917,0.590818,0.237827,0.607111,0.440892,0.834983,0.288677,0.182438,0.871744,0.83259,0.962541,0.886519,0.217445,0.967714,0.980275,0.236542,0.196654,0.741999,0.128473,0.516779,0.393119,0.580172,0.713751,0.800294,0.484852,0.228653,0.337204,0.0627972,0.0553263,0.392856,0.200199,0.655887,0.0580019,0.894951,0.719551,0.142927,0.161606,0.922258,0.225762,0.470922,0.577373,0.258898,0.346299,0.645676,0.465818,0.628184,0.322389,0.903261,0.520939,0.952559,0.702357,0.0121819,0.768179,0.628207,0.848181,0.132005,0.434997,0.646841,0.234126,0.187895,0.610697,0.25423,0.779081,0.352565,0.295648,0.0619987,0.218569,0.4903,0.552176,0.333539,0.955344,0.386978,0.124352,0.314234,0.00435519,0.811101,0.87034,0.272356,0.740206,0.427857,0.225458,0.414501,0.265583,0.577843,0.491165,0.315372,0.554373,0.824851,0.902633,0.70898,0.505643,0.843084,0.548886,0.201725,0.643895,0.1731,0.635052,0.00361955,0.589722,0.157961,0.495154,0.52586,0.114121,0.190374,0.638356,0.0304645,0.865628,0.161657,0.191209,0.680349,0.507307,0.13317,0.914467,0.768613,0.647108,0.311462,0.318019,0.554731,0.0508131,0.646254,0.996922,0.476177,0.0852126,0.400955,0.677292,0.982505,0.954673,0.251346,0.115519,0.453378,0.283087,0.0565886,0.974326,0.507652,0.859097,0.297153,0.0487662,0.406133,0.504964,0.440293,0.470179,0.674316,0.781384,0.985828,0.55888,0.679686,0.54769,0.172605,0.202897,0.437727,0.525721,0.698597,0.785295,0.485152,0.507556,0.297423,0.47472,0.763239,0.436787,0.156489,0.547987,0.471237,0.582459,0.409689,0.954471,0.326352,0.691809,0.288029,0.871711,0.923241,0.864443,0.609196,0.970783,0.941938,0.56798,0.555568,0.483655,0.12997,0.667428,0.620276,0.183645,0.365871,0.957523,0.394794,0.417216,0.320993,0.661807,0.286909,0.416508,0.54555,0.909683,0.568982,0.874133,0.120467,0.891035,0.884854,0.429558,0.702864,0.369859,0.117152,0.896823,0.753814,0.896488,0.232302,0.55235,0.157037,0.36493,0.319185,0.590809,0.849476,0.460088,0.49261,0.513327,0.965869,0.0230708,0.297234,0.347953,0.565194,0.589376,0.648535,0.884105,0.237605,0.870579,0.814293,0.143395,0.817746,0.948815,0.619735,0.209758,0.319345,0.543018,0.278409,0.578423,0.0962835,0.716747,0.21406,0.192059,0.179633,0.917708,0.0397807,0.452443,0.928764,0.151384,0.866729,0.464388,0.780844,0.263117,0.088793,0.275424,0.0111732,0.37283,0.731853,0.210474,0.4495,0.906758,0.967293,0.377606,0.922326,0.330323,0.131759,0.93379,0.666947,0.599098,0.397664,0.202943,0.253363,0.548359,0.168113,0.578066,0.628873,0.237271,0.134458,0.793448,0.0186974,0.971338,0.0267877,0.626511,0.141246,0.783272,0.758089,0.214846,0.666451,0.297018,0.750851,0.525046,0.431207,0.30045,0.883371,0.0460076,0.143743,0.922383,0.751495,0.905525,0.0877346,0.642205,0.595122,0.389208,0.696789,0.182146,0.781483,0.0158245,0.572969,0.0476026,0.905153,0.220911,0.657968,0.870178,0.141712,0.936365,0.675961,0.220773,0.507823,0.326402,0.149776,0.020875,0.124158,0.460712,0.349589,0.319072,0.963111,0.569268,0.126792,0.195378,0.911363,0.444213,0.049908,0.229507,0.114132,0.91369,0.00341451,0.521233,0.145595,0.264564,0.0194247,0.954099,0.0768678,0.803274,0.795752,0.151933,0.862139,0.382378,0.99166,0.0316779,0.885106,0.20065,0.208104,0.832457,0.730138,0.917424,0.370226,0.505977,0.094105,0.104299,0.796669,0.840231,0.587346,0.584014,0.247612,0.439397,0.481283,0.839406,0.791727,0.63987,0.577336,0.263542,0.803206,0.533202,0.518122,0.275437,0.634348,0.493567,0.799117,0.560184,0.400092,0.745397,0.165032,0.693182,0.0469236,0.0509694,0.619217,0.2985,0.693583,0.889919,0.247307,0.760812,0.612285,0.107718,0.0766194,0.813363,0.155717,0.607499,0.471705,0.720965,0.60695,0.102852,0.235229,0.00847095,0.886554,0.896536,0.619453,0.30857,0.197029,0.881904,0.263421,0.647798,0.380757,0.677905,0.326892,0.478384,0.265333,0.977325,0.312125,0.559211,0.148808,0.627589,0.589578,0.903876,0.744256,0.91695,0.283618,0.0649109,0.323195,0.755656,0.828636,0.280845,0.0767031,0.241102,0.293422,0.0227157,0.00444126,0.721756,0.490971,0.406073,0.152333,0.503132,0.284803,0.877558,0.493653,0.398009,0.715952,0.768875,0.259102,0.601082,0.482821,0.106764,0.863048,0.825889,0.636373,0.347413,0.278541,0.346366,0.856733,0.565239,0.264005,0.913698,0.358299,0.529321,0.474513,0.240306,0.614191,0.0662677,0.769877,0.426823,0.195883,0.443626,0.996452,0.93952,0.316445,0.818193,0.71006,0.366412,0.847113,0.482147,0.921894,0.518836,0.68531,0.901257,0.0584049,0.834697,0.305674,0.12844,0.612553,0.496951,0.535273,0.692435,0.665838,0.986269,0.535831,0.768876,0.923726,0.243238,0.835939,0.685092,0.11406,0.453211,0.139392,0.900898,0.97626,0.029678,0.668482,0.38603,0.185716,0.340581,0.323128,0.873582,0.8632,0.380892,0.857927,0.52053,0.610345,0.431098,0.931293,0.757696,0.564348,0.152668,|0.858545,0.00886112,0.486326,0.950058,0.746181,0.938213,0.871645,0.352907,0.157806,0.832949,0.601266,0.410498,0.196509,0.607582,0.355682,0.646157,0.905509,0.606964,0.882718,0.0425931,0.0261889,0.280082,0.988554,0.895939,0.468653,0.0863045,0.843854,0.167618,0.0898913,0.990132,0.399336,0.00857127,0.358504,0.00170588,0.67175,0.929573,0.159124,0.991146,0.0245554,0.87504,0.593111,0.464661,0.735392,0.145851,0.473389,0.624433,0.418125,0.297867,0.115064,0.830719,0.269087,0.0329515,0.239231,0.475225,0.195068,0.725048,0.434225,0.31461,0.915761,0.616984,0.758426,0.114713,0.967927,0.621237,0.222425,0.0758731,0.0543568,0.595017,0.207111,0.342597,0.766139,0.040561,0.233732,0.225601,0.282775,0.4639,0.0546681,0.0954178,0.673599,0.508974,0.607404,0.420446,0.871142,0.211652,0.945753,0.732142,0.325755,0.946808,0.778144,0.777408,0.545589,0.940117,0.330791,0.347534,0.365834,0.25531,0.0133538,0.63716,0.788141,0.3152,0.962899,0.525989,0.305906,0.47802,0.605752,0.374481,0.689267,0.209191,0.692353,0.481817,0.0089252,0.70564,0.0853251,0.94021,0.549298,0.276111,0.272987,0.148579,0.926719,0.27762,0.348237,0.867726,0.638364,0.369816,0.575455,0.929789,0.491477,0.550533,0.370111,0.987518,0.688147,0.901994,0.594986,0.396181,0.488742,0.581967,0.592354,0.272163,0.291371,0.838623,0.727003,0.983167,0.376325,0.262733,0.988061,0.213119,0.663738,0.0511748,0.70301,0.840422,0.299515,0.198452,0.949431,0.195596,0.545048,0.774883,0.412632,0.440113,0.107971,0.238769,0.809174,0.900324,0.0464428,0.660776,0.932948,0.801578,0.339178,0.103897,0.020362,0.702682,0.189652,0.744458,0.0812239,0.712132,0.472113,0.143622,0.87829,0.208917,0.0523174,0.0425907,0.661842,0.680022,0.655592,0.306493,0.203128,0.804719,0.485529,0.173266,0.800645,0.718203,0.701935,0.79912,0.763592,0.235236,0.856654,0.461869,0.899712,0.373079,0.740942,0.706747,0.121611,0.842541,0.497828,0.805703,0.912887,0.785403,0.485763,0.260371,0.606146,0.179697,0.628705,0.438448,0.0886708,0.434723,0.185647,0.584623,0.316762,0.117499,0.312597,0.362967,0.219139,0.513139,0.0584927,0.519826,0.608888,0.65453,0.413787,0.897871,0.933672,0.597294,0.0907756,0.442054,0.688444,0.845371,0.766706,0.641676,0.639245,0.958384,0.522723,0.51053,0.795738,0.846671,0.095367,0.899456,0.337442,0.884376,0.142233,0.674636,0.271942,0.988151,0.862839,0.803252,0.892606,0.0680227,0.192564,0.837515,0.186821,0.0147277,0.581011,0.892527,0.0009045,0.785875,0.488964,0.406818,0.898541,0.852236,0.560109,0.167262,0.802551,0.142811,0.47004,0.930829,0.0957485,0.0127237,0.346551,0.90998,0.491047,0.556492,0.76761,0.0185078,0.939825,0.577619,0.995989,0.835532,0.945888,0.628746,0.072702,0.446162,0.171961,0.827939,0.623099,0.0127251,0.494123,0.108676,0.49062,0.848797,0.558575,0.672058,0.652856,0.108984,0.668216,0.0595695,0.197813,0.82924,0.237142,0.0418869,0.186447,0.225746,0.408844,0.933762,0.199457,0.502266,0.979183,0.612849,0.253895,0.630003,0.0853302,0.952622,0.476561,0.722586,0.296288,0.488745,0.433838,0.0327714,0.255367,0.896495,0.509714,0.348363,0.334854,0.916979,0.22309,0.503952,0.485294,0.779665,0.934128,0.850761,0.460525,0.499609,0.253093,0.488873,0.837238,0.93975,0.524769,0.84016,0.977997,0.0748276,0.307842,0.938327,0.510451,0.832052,0.719931,0.0701748,0.784277,0.0687417,0.115355,0.924735,0.148754,0.912322,0.534183,0.881905,0.281516,0.628405,0.775892,0.369232,0.112768,0.198884,0.295764,0.364338,0.376019,0.889152,0.954394,0.70353,0.0283316,0.3481,0.0499068,0.429965,0.706964,0.0513839,0.558965,0.349994,0.291203,0.898933,0.595792,0.462628,0.913116,0.38884,0.795587,0.226135,0.129681,0.306503,0.858468,0.518851,0.108557,0.286908,0.399438,0.934392,0.652032,0.663837,0.823732,0.29779,0.0219761,0.376055,0.993742,0.0680903,0.314011,0.686601,0.987053,0.896317,0.925193,0.627946,0.788482,0.652112,0.293076,0.616118,0.330512,0.588143,0.0628795,0.556758,0.692451,0.699985,0.348071,0.315749,0.616857,0.474064,0.989579,0.578209,0.804736,0.351905,0.77393,0.660504,0.388587,0.172168,0.355144,0.872356,0.576531,0.471723,0.361432,0.498129,0.45433,0.880515,0.442474,0.884997,0.487223,0.98571,0.503997,0.579827,0.326914,0.170554,0.677252,0.707402,0.0519286,0.0574166,0.0908123,0.531375,0.324166,0.132077,0.603491,0.0856749,0.714512,0.664017,0.0165008,0.948173,0.0346086,0.157236,0.601544,0.9684,0.449555,0.770821,0.967588,0.0698913,0.533849,0.109474,0.865071,0.730033,0.0537186,0.201144,0.502768,0.138397,0.261078,0.691789,0.53063,0.276913,0.568897,0.890768,0.680954,0.620001,0.343197,0.0198421,0.996841,0.177744,0.290006,0.460179,0.0155994,0.0760478,0.253715,0.709045,0.500959,0.0879232,0.941931,0.951298,0.521362,0.444138,0.933142,0.244939,0.525756,0.517808,0.0546579,0.175551,0.941436,0.309343,0.431899,0.817412,0.740043,0.141708,0.901164,0.146912,0.961883,0.204682,0.303181,0.176344,0.21593,0.0852945,0.926048,0.0273491,0.838119,0.903878,0.158524,0.409045,0.0258727,0.0696391,0.932661,0.908392,0.484273,0.600513,0.298381,0.308305,0.0779282,0.701751,0.286822,0.969287,0.0286729,0.928894,0.0961651,0.485207,0.169693,0.0670598,0.287292,0.391084,0.934878,0.249214,0.84468,0.181028,0.420333,0.569953,0.915285,0.645412,0.308928,0.205112,0.38728,0.980064,0.920507,0.578045,0.484711,0.52578,0.308797,0.293734,0.222806,0.275712,0.131788,0.171303,0.955094,0.670079,0.390749,0.655027,0.72255,0.208435,0.24509,0.449088,0.0767794,0.719355,0.831607,0.477871,0.85431,0.576234,0.931495,0.326173,0.470644,0.9874,0.57929,0.807902,0.453348,0.620843,0.257173,0.561708,0.31577,0.470032,0.431115,0.00843638,0.329212,0.895009,0.522794,0.666108,0.467699,0.840884,0.946024,0.0791464,0.655746,0.79065,0.869257,0.379597,0.607065,0.107956,0.871319,0.109701,0.327888,0.603948,0.468503,0.710453,0.4923,0.869988,0.991403,0.285929,0.497529,0.533696,0.585645,0.579718,0.108648,0.548225,0.604005,0.0265878,0.692151,0.677859,0.198772,0.14984,0.97923,0.667777,0.140659,0.579352,0.360902,0.230284,0.0462481,0.695348,0.0466638,0.418548,0.291326,0.926727,0.263346,0.218872,0.813216,0.492649,0.152495,0.970753,0.526411,0.216613,0.482971,0.735612,0.818263,0.406379,0.238141,0.281286,0.0480678,0.983821,0.0498615,0.96871,0.581927,0.483374,0.207404,0.427613,0.622279,0.51915,0.00162607,0.736274,0.35271,0.109419,0.492435,0.215288,0.548356,0.935417,0.92164,0.189059,0.182263,0.170277,0.22131,0.208308,0.377,0.855554,0.0414286,0.429445,0.616106,0.580854,0.992211,0.250421,0.86192,0.168638,0.32033,0.0350047,0.239018,0.857323,0.143258,0.859204,0.306068,0.73098,0.984392,0.912932,0.106543,0.896741,0.916592,0.938293,0.00435257,0.908174,0.826487,0.80498,0.338927,0.35668,0.982579,0.105388,0.181288,0.063929,0.285004,0.291097,0.267384,0.646729,0.935882,0.949087,0.926726,0.962411,0.427996,0.818688,0.614114,0.534904,0.655185,0.704946,0.825993,0.0763708,0.179539,0.910388,0.712472,0.799019,0.733676,0.15648,0.909796,0.244296,0.94455,0.829496,0.133318,0.500686,0.170032,0.363129,0.16495,0.517431,0.657647,0.110723,0.225542,0.150564,0.957117,0.699525,0.476716,0.332953,0.956518,0.375535,0.835152,0.18577,0.785063,0.937663,0.53769,0.538367,0.591582,0.418483,0.178162,0.871813,0.871815,0.853351,0.188926,0.706569,0.642642,0.12118,0.695921,0.426302,0.0491335,0.122515,0.0403397,0.212889,0.997999,0.211526,0.315866,0.923466,0.801803,0.569164,0.518619,0.930931,0.347601,0.507231,0.7282,0.233455,0.404392,0.701422,0.0559689,0.197706,0.837051,0.289012,0.306978,0.578737,0.277844,0.278067,0.813319,0.579205,0.615179,0.212844,0.806659,0.746955,0.349372,0.492878,0.0386109,0.00103801,0.64539,0.71135,0.623922,0.588796,0.0279174,0.475888,0.414144,0.945385,0.519418,0.810732,0.631263,0.850737,0.489223,0.0782173,0.28277,0.358042,0.328596,0.569374,0.567736,0.267609,0.514679,0.427161,0.918818,0.93964,0.381064,0.0690094,0.966847,0.730793,0.116966,0.177409,0.544731,0.84282,0.290655,0.176358,0.216745,0.233823,0.851348,0.67758,0.303866,0.410603,0.609704,0.389646,0.701525,0.838031,0.000930548,0.200447,0.497777,0.397907,0.252032,0.267037,0.154524,0.0299752,0.80265,0.333435,0.438612,0.111189,0.312966,0.442208,0.50054,0.371309,0.302379,0.991341,0.193695,0.0200984,0.51062,0.221156,0.197473,0.379327,0.00170791,0.26475,0.0261568,0.88791,0.61786,0.519932,0.163879,0.402489,0.752258,0.286396,0.0750606,0.678821,0.174471,0.97106,0.549671,0.116089,0.890721,0.454446,0.697207,0.922143,0.738771,0.643014,0.429329,0.906197,0.604038,0.706032,0.320043,0.563166,0.478439,0.171464,0.465545,0.889018,0.815763,0.235295,0.570355,0.143372,0.0641913,0.819285,0.771695,0.923763,0.71864,0.106974,0.739761,0.342487,0.325538,0.0617732,0.766318,0.524915,0.133197,0.198315,0.904915,0.683926,0.375632,0.42142,0.980765,0.744147,0.910081,0.246523,0.622534,0.285288,0.91571,0.41207,0.000348568,0.914021,0.433597,0.354466,0.203773,0.373797,0.522444,0.313181,0.0226864,0.742602,0.595324,0.135682,0.528445,0.751285,0.732093,0.0128275,0.946365,0.444908,0.242524,0.741788,0.166266,0.0253915,0.144941,0.206301,0.678615,0.981725,0.920779,0.481898,0.853595,0.724029,0.688949,0.210612,0.818165,0.319541,0.947831,0.0145296,0.225737,0.915912,0.7297,0.757281,0.694122,0.571994,0.651716,0.238887,0.53919,0.235348,0.312652,0.898465,0.811061,0.0104615,0.947665,0.797425,0.915951,0.0953394,0.27539,0.821683,|0.992808,0.406671,0.645162,0.0502093,0.962244,0.459492,0.204609,0.116478,0.177812,0.861483,0.101498,0.928079,0.116971,0.768465,0.122551,0.684494,0.619908,0.169387,0.83931,0.402285,0.721467,0.141301,0.88825,0.461427,0.985048,0.683429,0.854874,0.540772,0.450286,0.893591,0.792754,0.635971,0.677486,0.054499,0.921473,0.508673,0.286516,0.720693,0.954581,0.152622,0.0875674,0.115587,0.666796,0.0828164,0.250448,0.450901,0.242358,0.425698,0.908676,0.923785,0.664307,0.950217,0.00220495,0.36436,0.707557,0.17405,0.873613,0.773885,0.873127,0.363241,0.632279,0.467312,0.267138,0.906453,0.729228,0.424117,0.5488,0.700897,0.350708,0.263918,0.467283,0.986411,0.154411,0.824541,0.747912,0.0994183,0.512955,0.464585,0.501016,0.695992,0.609702,0.248612,0.738827,0.99048,0.579037,0.472901,0.327793,0.638419,0.37595,0.169892,0.286128,0.048822,0.0350595,0.843934,0.707368,0.345888,0.282358,0.621184,0.131609,0.982998,0.804458,0.721963,0.792126,0.0512168,0.964661,0.325126,0.374598,0.0865349,0.198558,0.691442,0.743481,0.128926,0.516488,0.226195,0.0142538,0.338191,0.439134,0.880303,0.780837,0.0758728,0.809677,0.291836,0.372692,0.756105,0.867283,0.379953,0.475816,0.55896,0.991021,0.991219,0.0580202,0.718403,0.234463,0.17435,0.177138,0.965406,0.548329,0.820077,0.750452,0.196151,0.862925,0.209611,0.290715,0.846082,0.71199,0.539317,0.0737592,0.168173,0.528976,0.583867,0.391078,0.677742,0.731071,0.963724,0.528113,0.412997,0.319836,0.76825,0.65118,0.559546,0.751319,0.169374,0.77061,0.62611,0.913783,0.574734,0.824783,0.589881,0.673616,0.225517,0.656727,0.0886092,0.122777,0.0705457,0.41545,0.882494,0.35579,0.546001,0.331383,0.723042,0.958328,0.781169,0.967484,0.662392,0.849132,0.842949,0.655749,0.41832,0.153375,0.348434,0.638403,0.737684,0.833902,0.884014,0.150361,0.94744,0.0674378,0.763398,0.397807,0.18021,0.231662,0.177162,0.0950111,0.674717,0.295521,0.866344,0.390543,0.9727,0.468403,0.336804,0.974958,0.309395,0.408802,0.929251,0.157098,0.908648,0.639738,0.434059,0.313249,0.572428,0.473333,0.555031,0.67749,0.730994,0.103121,0.754292,0.447303,0.0508138,0.568096,0.790154,0.799012,0.789389,0.855729,0.35849,0.910164,0.0120224,0.35388,0.998334,0.451858,0.722524,0.598658,0.027665,0.117588,0.636888,0.631144,0.897717,0.861215,0.972065,0.632949,0.784335,0.171215,0.294471,0.200548,0.497024,0.12563,0.0333381,0.405249,0.698126,0.661056,0.645643,0.0753031,0.547637,0.596232,0.00841993,0.986269,0.934394,0.330041,0.0151027,0.181666,0.0178263,0.585831,0.555698,0.535137,0.141965,0.645705,0.525244,0.0813587,0.279122,0.982436,0.592537,0.592543,0.475481,0.6195,0.808449,0.911075,0.177739,0.411359,0.731859,0.70858,0.805234,0.431369,0.458041,0.452195,0.947095,0.986867,0.53036,0.941226,0.119576,0.913928,0.459605,0.912667,0.160926,0.798393,0.494794,0.675184,0.928579,0.323423,0.470144,0.266113,0.891857,0.520435,0.149684,0.538826,0.493293,0.288372,0.683855,0.101068,0.301461,0.952859,0.59399,0.901976,0.453644,0.484669,0.916288,0.379519,0.218458,0.662885,0.864505,0.531577,0.894757,0.556165,0.636606,0.797606,0.650091,0.442359,0.809949,0.848069,0.882665,0.709108,0.794273,0.265212,0.252985,0.777619,0.969566,0.498574,0.0827823,0.11423,0.280931,0.862384,0.1793,0.540765,0.203655,0.784135,0.897073,0.734677,0.267788,0.113036,0.879959,0.247929,0.890338,0.978164,0.657241,0.822631,0.120453,0.356015,0.789563,0.759239,0.649018,0.457296,0.829473,0.883745,0.964403,0.280693,0.910749,0.579943,0.910897,0.123984,0.981549,0.821421,0.660032,0.864317,0.419956,0.591088,0.372657,0.331734,0.314436,0.530587,0.595465,0.891149,0.127434,0.974942,0.39285,0.856759,0.847605,0.430073,0.933533,0.877053,0.205553,0.326477,0.377911,0.587619,0.507155,0.957512,0.747327,0.574361,0.557544,0.104465,0.996573,0.67984,0.103351,0.200119,0.308905,0.33158,0.528876,0.297544,0.557455,0.598716,0.304426,0.0224714,0.593744,0.718505,0.13891,0.159407,0.139501,0.617915,0.672534,0.585929,0.276084,0.805881,0.70821,0.783933,0.804266,0.0413213,0.0362709,0.473421,0.96969,0.153253,0.831361,0.531813,0.0810244,0.418129,0.370691,0.658902,0.519102,0.568787,0.914992,0.719001,0.296567,0.221115,0.383233,0.922989,0.75145,0.412948,0.659962,0.38926,0.106165,0.0507773,0.390503,0.664999,0.837389,0.0013898,0.789317,0.747628,0.364509,0.870666,0.749538,0.569771,0.912669,0.744251,0.36965,0.455291,0.842024,0.158511,0.398174,0.981349,0.839931,0.0913457,0.569021,0.167143,0.554995,0.696422,0.504319,0.00942135,0.156368,0.779431,0.710605,0.618472,0.649908,0.595809,0.598728,0.0517586,0.808825,0.207836,0.379192,0.227591,0.0269447,0.987627,0.75517,0.27373,0.661123,0.462506,0.498505,0.418312,0.722993,0.879194,0.402207,0.143565,0.612457,0.224139,0.214379,0.154691,0.478964,0.590979,0.00266659,0.656931,0.798762,0.76905,0.392421,0.268752,0.573781,0.283386,0.857982,0.524041,0.175596,0.00382304,0.0077849,0.85127,0.190831,0.444314,0.018324,0.670794,0.494013,0.880017,0.66421,0.336682,0.798273,0.590709,0.276685,0.439029,0.133264,0.35758,0.0999971,0.113995,0.869676,0.481851,0.700911,0.142466,0.53471,0.993223,0.74417,0.545349,0.209712,0.661025,0.807201,0.162862,0.26515,0.788267,0.306379,0.778566,0.266503,0.692536,0.055871,0.600256,0.51138,0.158662,0.256312,0.106733,0.77002,0.986127,0.473911,0.666874,0.598852,0.965583,0.727877,0.699447,0.867286,0.784405,0.284135,0.150796,0.52471,0.762623,0.933878,0.724723,0.435399,0.300419,0.247649,0.659298,0.810744,0.532044,0.645825,0.80194,0.0441894,0.396388,0.735192,0.498269,0.805688,0.437975,0.57434,0.428691,0.307348,0.083512,0.811357,0.0469906,0.529376,0.104654,0.178357,0.590629,0.749295,0.434451,0.0510069,0.701398,0.374882,0.666609,0.212673,0.953117,0.106522,0.501512,0.835935,0.134283,0.181438,0.759806,0.38273,0.98118,0.569199,0.836225,0.403311,0.319789,0.0127406,0.152186,0.0469422,0.795334,0.690355,0.640249,0.458122,0.493855,0.345346,0.858348,0.359229,0.663078,0.343379,0.370337,0.769124,0.645646,0.975496,0.113156,0.00749964,0.820457,0.715402,0.581047,0.363607,0.153589,0.856971,0.129313,0.14255,0.347261,0.539403,0.959969,0.974772,0.909666,0.573914,0.164905,0.417035,0.40189,0.549738,0.339218,0.916703,0.795182,0.514847,0.910011,0.235213,0.732107,0.227772,0.262739,0.521776,0.616331,0.567893,0.0445972,0.224142,0.0022245,0.204313,0.363294,0.731169,0.512822,0.782851,0.588526,0.473616,0.570387,0.810775,0.477158,0.799896,0.601373,0.149151,0.046762,0.987275,0.109245,0.752945,0.0487787,0.671588,0.562402,0.677768,0.991642,0.0836606,0.233542,0.283385,0.0566119,0.476339,0.549493,0.108831,0.593609,0.3834,0.231161,0.762651,0.39569,0.61154,0.441903,0.312408,0.147748,0.419656,0.874179,0.592103,0.325971,0.535906,0.308764,0.88673,0.774413,0.578565,0.942037,0.0606781,0.538844,0.060345,0.000932515,0.0343607,0.409806,0.410641,0.142671,0.625308,0.311266,0.266816,0.174165,0.0619828,0.688388,0.0107292,0.553036,0.379395,0.565178,0.188595,0.354397,0.764376,0.418501,0.748762,0.487717,0.754284,0.24536,0.107937,0.168918,0.5432,0.331789,0.439566,0.25035,0.335767,0.821942,0.136059,0.514466,0.107864,0.76749,0.640474,0.25487,0.867554,0.241957,0.58936,0.428602,0.720814,0.159295,0.342015,0.520365,0.379998,0.937867,0.955035,0.682298,0.241811,0.939912,0.0298142,0.655394,0.0541698,0.662355,0.0471139,0.488518,0.739983,0.81221,0.334216,0.0956007,0.281561,0.0443578,0.65459,0.82098,0.172335,0.172346,0.414041,0.387247,0.0717847,0.393726,0.997383,0.466825,0.718304,0.93577,0.907526,0.34482,0.836802,0.110738,0.145624,0.713659,0.0266268,0.408362,0.574264,0.605132,0.375186,0.700333,0.555367,0.473756,0.934606,0.632899,0.76718,0.334068,0.513218,0.468052,0.157307,0.846218,0.286517,0.538131,0.93962,0.503265,0.135726,0.6448,0.278067,0.0130314,0.975593,0.165529,0.916572,0.284412,0.797012,0.876209,0.97526,0.320084,0.406727,0.47441,0.398301,0.462432,0.241487,0.395397,0.203632,0.467318,0.0647274,0.361905,0.713536,0.212697,0.835513,0.876893,0.0767925,0.0497009,0.157465,0.44628,0.243233,0.963045,0.385054,0.649048,0.953289,0.55587,0.131891,0.246419,0.185559,0.950083,0.998722,0.257823,0.577494,0.0726552,0.928519,0.865122,0.822539,0.281211,0.337191,0.206382,0.5121,0.878891,0.940062,0.314628,0.535651,0.0553449,0.361473,0.165958,0.473162,0.846056,0.516663,0.370064,0.938088,0.884479,0.494129,0.753806,0.168511,0.370592,0.661905,0.578359,0.306669,0.341019,0.412655,0.927511,0.335966,0.17441,0.681526,0.808684,0.858626,0.304875,0.772072,0.321939,0.938294,0.239064,0.704607,0.367808,0.867271,0.534516,0.962702,0.0405006,0.936368,0.556829,0.471506,0.339026,0.909145,0.836831,0.634261,0.328772,0.479626,0.958291,0.698624,0.766813,0.613551,0.446948,0.941191,0.836453,0.315091,0.923589,0.120749,0.156256,0.241187,0.903612,0.784594,0.56004,0.166478,0.601523,0.681449,0.235889,0.486506,0.39627,0.32053,0.63648,0.931195,0.89301,0.711532,0.342722,0.484441,0.259905,0.678572,0.950623,0.418849,0.454846,0.85559,0.950535,0.417736,0.75173,0.281652,0.236093,0.301854,0.810224,0.19755,0.0424628,0.615099,0.415184,0.567389,0.0141453,0.639447,0.380625,0.428003,0.776708,0.414192,0.094779,0.52365,0.419468,0.992358,0.916245,0.332713,0.678641,0.950947,0.872902,0.484284,0.566146,0.9997,0.462926,0.175372,0.662506,0.13574,0.23412,0.893725,|0.921049,0.689743,0.154351,0.193951,0.634481,0.227286,0.618177,0.194619,0.453878,0.28881,0.683788,0.293,0.235195,0.246784,0.927712,0.403334,0.829847,0.772697,0.148648,0.763964,0.169189,0.843635,0.892944,0.798392,0.640499,0.297615,0.360125,0.38389,0.852747,0.027435,0.278429,0.0385582,0.546278,0.610718,0.615991,0.662635,0.37643,0.646941,0.768133,0.0941855,0.808084,0.162032,0.234558,0.926027,0.181515,0.103413,0.907595,0.498137,0.262501,0.47435,0.866036,0.118648,0.210879,0.989615,0.0545505,0.0103056,0.662232,0.255383,0.638007,0.255001,0.827368,0.729251,0.468435,0.217509,0.850709,0.657744,0.304932,0.675879,0.901715,0.1464,0.510302,0.119427,0.412971,0.366259,0.746448,0.977194,0.914407,0.124035,0.603547,0.830413,0.552992,0.926981,0.249422,0.84197,0.303139,0.553491,0.428443,0.935429,0.713235,0.593517,0.916742,0.731496,0.850043,0.185094,0.831187,0.0148755,0.683489,0.35421,0.837522,0.316203,0.241189,0.943989,0.617728,0.0876867,0.665641,0.717901,0.365107,0.76525,0.478662,0.550763,0.29153,0.415894,0.544588,0.114341,0.320476,0.389333,0.790989,0.89969,0.59963,0.448509,0.944279,0.742843,0.928894,0.158906,0.319771,0.248106,0.277595,0.00223684,0.587874,0.282138,0.56304,0.749588,0.560668,0.166191,0.964623,0.634881,0.507003,0.228537,0.635066,0.868604,0.805788,0.57783,0.27905,0.888447,0.787855,0.594166,0.915074,0.409191,0.0960679,0.916926,0.670944,0.875259,0.714754,0.9893,0.170263,0.0749068,0.418371,0.0460768,0.873078,0.77968,0.265962,0.8438,0.0413476,0.14134,0.990558,0.684362,0.257854,0.543902,0.793403,0.977326,0.944954,0.689425,0.0122537,0.827864,0.964797,0.652518,0.221169,0.960908,0.65749,0.289858,0.353701,0.833,0.248297,0.293652,0.780296,0.883471,0.974548,0.0197747,0.0669129,0.650729,0.825854,0.578355,0.393123,0.359856,0.368136,0.844182,0.977203,0.0767839,0.130728,0.540541,0.530659,0.863656,0.856541,0.0140567,0.691008,0.672907,0.25473,0.310201,0.0958408,0.551176,0.149594,0.506577,0.447839,0.193787,0.46982,0.0889433,0.487892,0.240837,0.554058,0.0254613,0.45,0.190556,0.481422,0.401925,0.772244,0.748156,0.83506,0.719767,0.377584,0.671194,0.0506452,0.0249803,0.73528,0.243371,0.453778,0.720344,0.924384,0.394382,0.957326,0.686468,0.587103,0.267349,0.140845,0.919405,0.539992,0.876695,0.205517,0.626657,0.995749,0.291129,0.881066,0.197177,0.750004,0.577663,0.299022,0.683559,0.209403,0.532802,0.177396,0.0170367,0.521521,0.188212,0.308498,0.0481752,0.380076,0.365538,0.41267,0.129957,0.849346,0.137379,0.447466,0.609707,0.510245,0.964514,0.0229123,0.172975,0.793905,0.710846,0.892337,0.181305,0.266417,0.103948,0.771336,0.895401,0.42797,0.699384,0.737767,0.800192,0.435521,0.549252,0.0357085,0.381531,0.879915,0.0813282,0.331946,0.422842,0.0308351,0.93527,0.444655,0.529601,0.911352,0.16371,0.516329,0.188811,0.728031,0.717109,0.737215,0.46686,0.270718,0.556804,0.17981,0.9382,0.21388,0.680368,0.0851398,0.918449,0.774735,0.672486,0.492076,0.692109,0.360746,0.360403,0.956355,0.0123712,0.669476,0.836781,0.670428,0.117016,0.265166,0.130044,0.684083,0.823169,0.888034,0.101921,0.830856,0.568743,0.234001,0.569254,0.444134,0.634542,0.999927,0.415952,0.876903,0.938138,0.162115,0.28232,0.0717192,0.149098,0.406434,0.0209344,0.13656,0.394775,0.499941,0.512405,0.594645,0.408066,0.214142,0.453089,0.531555,0.544795,0.835643,0.895256,0.900761,0.352204,0.229192,0.704905,0.986159,0.825575,0.350133,0.92596,0.672938,0.181694,0.0160806,0.434263,0.9328,0.859519,0.366134,0.64966,0.876598,0.150506,0.248652,0.423171,0.277044,0.786188,0.579045,0.732667,0.952836,0.690817,0.0652951,0.626397,0.0733318,0.881417,0.436477,0.166044,0.200354,0.92204,0.55692,0.611759,0.775941,0.787741,0.49333,0.854966,0.434008,0.6213,0.203196,0.602764,0.0407581,0.708574,0.716025,0.637908,0.215121,0.944176,0.285174,0.000872433,0.117127,0.666905,0.274641,0.0327486,0.0152964,0.996251,0.922051,0.247344,0.649515,0.66889,0.264621,0.430987,0.293654,0.701041,0.697919,0.420263,0.28782,0.673851,0.403979,0.496246,0.0573683,0.647461,0.959435,0.281412,0.864691,0.509475,0.591797,0.388916,0.0668797,0.823712,0.703056,0.270791,0.66637,0.520063,0.860655,0.215712,0.077033,0.994579,0.43697,0.61002,0.830482,0.958703,0.932309,0.752995,0.42356,0.524768,0.948663,0.97279,0.104025,0.914513,0.0534545,0.327911,0.0930887,0.177082,0.153328,0.560345,0.973154,0.0486818,0.158692,0.851752,0.283134,0.246588,0.633199,0.729373,0.992749,0.356603,0.211456,0.662959,0.965128,0.497961,0.414508,0.895548,0.597829,0.524525,0.366217,0.656184,0.735604,0.793964,0.235758,0.503337,0.608393,0.541128,0.396414,0.326887,0.0963444,0.54995,0.86817,0.542136,0.959315,0.153354,0.0671032,0.763827,0.537911,0.871616,0.36546,0.61384,0.855515,0.989515,0.561348,0.357672,0.281989,0.661783,0.65438,0.44889,0.0519327,0.773399,0.335873,0.371368,0.312203,0.862557,0.704672,0.23559,0.748895,0.681813,0.75944,0.0552272,0.0588752,0.376277,0.779253,0.0921094,0.0278819,0.747461,0.601217,0.549258,0.269943,0.537116,0.0479636,0.779483,0.542054,0.808932,0.693786,0.45554,0.615885,0.535706,0.412747,0.753046,0.684353,0.989631,0.208953,0.959039,0.415302,0.814476,0.428238,0.38953,0.79177,0.59772,0.0982752,0.465289,0.330293,0.519507,0.181195,0.743565,0.835312,0.477038,0.989349,0.34485,0.98945,0.550865,0.956725,0.866831,0.754217,0.168762,0.494725,0.225527,0.245588,0.58461,0.281353,0.788015,0.55022,0.837673,0.880621,0.496368,0.944916,0.933336,0.57959,0.0817046,0.369868,0.0750805,0.725686,0.429939,0.775826,0.838112,0.772579,0.969534,0.185212,0.200917,0.704956,0.723484,0.70035,0.0783912,0.145685,0.61653,0.547902,0.847281,0.104865,0.768046,0.796578,0.774918,0.24019,0.737585,0.24435,0.678079,0.215463,0.160912,0.105638,0.395288,0.744798,0.145036,0.983004,0.0814561,0.498854,0.384774,0.165163,0.868803,0.817537,0.0420305,0.32588,0.701207,0.341816,0.608155,0.313351,0.453453,0.241697,0.0120221,0.887957,0.181702,0.434002,0.747943,0.226017,0.671941,0.0128711,0.328672,0.288528,0.781972,0.991677,0.246425,0.59888,0.629461,0.827942,0.833774,0.90407,0.618514,0.758354,0.601281,0.343599,0.735309,0.364052,0.966074,0.278799,0.258885,0.147785,0.480241,0.546172,0.240439,0.58524,0.140591,0.0735916,0.618463,0.037536,0.753773,0.541085,0.0789344,0.0145351,0.156668,0.484214,0.454775,0.625526,0.195485,0.0747308,0.654957,0.257387,0.648167,0.07823,0.154083,0.768925,0.63167,0.659316,0.702579,0.827628,0.196033,0.91055,0.461467,0.586392,0.349132,0.228107,0.663643,0.0489383,0.674986,0.92961,0.828266,0.812605,0.960109,0.507831,0.937273,0.644473,0.690405,0.104765,0.0701649,0.0707985,0.057101,0.552052,0.838949,0.204782,0.413422,0.822197,0.581702,0.0983074,0.459118,0.984122,0.563397,0.421782,0.712843,0.717515,0.789336,0.0788023,0.946435,0.473675,0.472206,0.052471,0.354439,0.0368292,0.541263,0.923412,0.908941,0.0833902,0.667286,0.267775,0.775297,0.166894,0.932348,0.162119,0.997626,0.0711024,0.140309,0.157162,0.193349,0.799794,0.685963,0.0407176,0.913218,0.512317,0.450463,0.229363,0.413307,0.500877,0.487511,0.206658,0.826882,0.547587,0.963629,0.253599,0.397106,0.0841353,0.777729,0.162565,0.818453,0.312445,0.818161,0.637143,0.363429,0.0703745,0.231727,0.6308,0.653651,0.737521,0.790256,0.932818,0.522834,0.270796,0.282315,0.123972,0.907724,0.751035,0.197051,0.100889,0.533845,0.204734,0.738117,0.758871,0.766022,0.741526,0.0675278,0.263245,0.675616,0.565346,0.831214,0.0533311,0.981143,0.511195,0.779524,0.286456,0.531789,0.485825,0.463083,0.81931,0.2602,0.804795,0.161514,0.292221,0.39877,0.302657,0.743982,0.0197759,0.794347,0.921027,0.635975,0.495697,0.682444,0.107905,0.415596,0.142073,0.649218,0.85155,0.540788,0.787038,0.799517,0.0700912,0.344363,0.043223,0.464446,0.122285,0.514828,0.765878,0.901846,0.400401,0.994356,0.693339,0.413502,0.365264,0.391102,0.756561,0.33524,0.643481,0.736645,0.757739,0.0342815,0.283979,0.359627,0.613519,0.159003,0.835313,0.55593,0.340113,0.801032,0.958432,0.692958,0.119933,0.558182,0.479931,0.425974,0.891319,0.429859,0.902803,0.674884,0.536404,0.155947,0.15532,0.221648,0.959969,0.447443,0.307958,0.613092,0.518835,0.271692,0.264925,0.915096,0.155688,0.955044,0.611186,0.192399,0.0527058,0.777741,0.353742,0.676796,0.860949,0.294799,0.251931,0.826957,0.772577,0.141153,0.994413,0.230382,0.713181,0.322262,0.461661,0.708186,0.523305,0.953134,0.624454,0.776684,0.655231,0.804746,0.854343,0.945306,0.00926536,0.483302,0.339742,0.40509,0.239712,0.312102,0.0499533,0.660265,0.735149,0.974021,0.136413,0.381731,0.262492,0.892674,0.264788,0.179197,0.409009,0.90669,0.0786726,0.632714,0.5929,0.93543,0.482842,0.277233,0.639265,0.0791946,0.978353,0.0713903,0.863455,0.74516,0.221746,0.292663,0.0878972,0.0509644,0.260311,0.512699,0.606312,0.785412,0.612321,0.663453,0.620183,0.471101,0.381596,0.801453,0.606462,0.496149,0.0755334,0.856867,0.780656,0.710564,0.736329,0.662443,0.0299921,0.884133,0.970107,0.660179,0.29188,0.00589943,0.78368,0.344174,0.336894,0.708097,0.745725,0.336295,0.155146,0.304825,0.64348,0.846445,0.370809,0.263373,0.948578,0.851693,0.356626,0.220674,0.151989,0.206592,0.542194,0.487978,0.640677,0.178799,0.611636,0.889142,0.936665,0.133305,0.247874,0.144832,0.320928,0.9196,0.176472,0.592743,0.717366,0.958092,|0.969337,0.781453,0.533131,0.615349,0.275292,0.29249,0.604023,0.977077,0.615946,0.00354445,0.826162,0.855503,0.507716,0.140223,0.792815,0.720768,0.129363,0.142386,0.616428,0.670906,0.337071,0.0158975,0.980881,0.508297,0.142689,0.265311,0.347259,0.659971,0.112687,0.211017,0.0288064,0.343679,0.720607,0.944892,0.992775,0.771275,0.00587511,0.764128,0.806059,0.200066,0.416487,0.0286173,0.437759,0.278517,0.868459,0.747534,0.469516,0.532687,0.342481,0.572498,0.885822,0.313914,0.614418,0.674231,0.134949,0.617537,0.379385,0.759074,0.55874,0.0640778,0.386218,0.310127,0.0731122,0.018832,0.652397,0.0345762,0.454039,0.318931,0.552867,0.336262,0.845783,0.505431,0.21932,0.55624,0.894152,0.438712,0.0762064,0.936179,0.645189,0.666869,0.603858,0.99614,0.570877,0.56489,0.714069,0.597924,0.574747,0.237024,0.106573,0.349351,0.228259,0.234372,0.606487,0.612319,0.295014,0.949918,0.88225,0.15977,0.0976402,0.297465,0.0860098,0.0319963,0.603235,0.903848,0.714088,0.995827,0.543122,0.917627,0.892306,0.352253,0.00150347,0.834815,0.858991,0.660601,0.750091,0.457973,0.436996,0.862999,0.815538,0.486438,0.440715,0.280889,0.41497,0.429212,0.0696286,0.983461,0.885101,0.455851,0.273114,0.959493,0.949196,0.991951,0.422203,0.0843927,0.538187,0.484389,0.512801,0.577538,0.770924,0.475943,0.224984,0.327772,0.741848,0.880425,0.519077,0.97341,0.671952,0.647948,0.80686,0.569137,0.909144,0.928397,0.836497,0.0471594,0.370823,0.576184,0.323817,0.0819921,0.246437,0.339302,0.136353,0.886379,0.477123,0.589788,0.0597678,0.438438,0.767793,0.94143,0.56176,0.563707,0.64611,0.599826,0.857372,0.0712517,0.712139,0.342452,0.100133,0.921904,0.897985,0.894096,0.447489,0.547086,0.507082,0.207918,0.885478,0.94526,0.726839,0.178091,0.536659,0.738709,0.500955,0.901605,0.183995,0.519763,0.937024,0.0727669,0.788597,0.739197,0.732757,0.11751,0.170359,0.855619,0.712136,0.437347,0.256754,0.498365,0.253457,0.25413,0.0145607,0.143698,0.252366,0.549488,0.703503,0.954088,0.307803,0.799935,0.763041,0.197027,0.870781,0.730465,0.00398397,0.431299,0.335109,0.700948,0.641163,0.0173289,0.457465,0.862646,0.22965,0.207019,0.303414,0.786588,0.536893,0.972301,0.205883,0.124361,0.235209,0.0695308,0.604728,0.839356,0.722308,0.880563,0.793342,0.84192,0.75371,0.232669,0.35905,0.632782,0.574964,0.570428,0.665069,0.933717,0.123176,0.693342,0.995651,0.977713,0.264076,0.0465835,0.83286,0.103622,0.809231,0.975209,0.938785,0.458328,0.602507,0.7013,0.184328,0.0604056,0.24602,0.344895,0.214774,0.757066,0.428238,0.322812,0.157304,0.579273,0.486662,0.749664,0.214676,0.698259,0.357246,0.30859,0.00323069,0.419772,0.305631,0.479916,0.753816,0.791364,0.424617,0.211491,0.107758,0.351711,0.0520993,0.378431,0.876212,0.476536,0.222834,0.36584,0.736977,0.723297,0.0221745,0.630404,0.72079,0.721075,0.572008,0.672788,0.134736,0.494206,0.885921,0.186604,0.327766,0.224116,0.737487,0.81407,0.7693,0.96523,0.861544,0.430206,0.599068,0.131935,0.192503,0.312184,0.835121,0.490445,0.622701,0.342218,0.981292,0.104916,0.939314,0.239319,0.974099,0.723868,0.453768,0.0143882,0.980879,0.983387,0.866389,0.222882,0.530961,0.363411,0.405029,0.771866,0.376351,0.29346,0.976104,0.68168,0.932952,0.854556,0.306298,0.811108,0.346409,0.878591,0.563667,0.583504,0.104618,0.933419,0.642402,0.460887,0.336744,0.686294,0.60685,0.493904,0.802484,0.865374,0.319891,0.142956,0.0692387,0.749573,0.761844,0.375027,0.207544,0.675751,0.679962,0.477946,0.0258171,0.735355,0.104319,0.926649,0.323444,0.690454,0.48004,0.76379,0.156576,0.333456,0.245988,0.18995,0.930375,0.230582,0.18142,0.643671,0.135607,0.392803,0.567753,0.0360577,0.783702,0.133064,0.817741,0.554514,0.275123,0.569571,0.0284102,0.875214,0.603178,0.0554249,0.297405,0.907681,0.13512,0.84473,0.966921,0.294433,0.663166,0.139535,0.0220999,0.242453,0.985885,0.746886,0.709209,0.683423,0.218323,0.841831,0.222319,0.86726,0.906379,0.77609,0.808379,0.500639,0.547868,0.781259,0.978117,0.263189,0.384469,0.86052,0.222812,0.834208,0.00702161,0.155249,0.0264306,0.26595,0.625624,0.124415,0.152776,0.352903,0.197211,0.0748873,0.373826,0.15951,0.127531,0.382644,0.657001,0.889448,0.12609,0.230581,0.436602,0.155425,0.17175,0.781866,0.812964,0.654969,0.741877,0.146989,0.460196,0.0655056,0.680517,0.974209,0.560768,0.69178,0.973884,0.582605,0.352896,0.306666,0.564036,0.388378,0.923386,0.360882,0.425543,0.0443084,0.624362,0.690478,0.160986,0.0846177,0.224004,0.806806,0.936329,0.463254,0.936445,0.0968313,0.893454,0.138051,0.652013,0.322803,0.0603842,0.618549,0.996418,0.717587,0.892713,0.806535,0.0691092,0.774027,0.495319,0.193438,0.968646,0.615725,0.731258,0.441262,0.212583,0.285878,0.266176,0.456781,0.534531,0.580825,0.700313,0.868447,0.166571,0.651929,0.515172,0.783575,0.837114,0.846275,0.68681,0.726326,0.00293547,0.949255,0.875305,0.549084,0.927084,0.418167,0.410021,0.63485,0.757847,0.138435,0.806557,0.950601,0.221251,0.742372,0.253391,0.744747,0.790576,0.837669,0.131783,0.749251,0.922096,0.502669,0.48735,0.645736,0.614788,0.226221,0.657665,0.943265,0.493642,0.727364,0.885097,0.800304,0.406853,0.683139,0.344525,0.800113,0.272063,0.53476,0.931976,0.639932,0.502462,0.9562,0.683761,0.387616,0.19666,0.615939,0.415484,0.699939,0.0969828,0.124609,0.0546761,0.156541,0.362671,0.280173,0.0481228,0.991098,0.210072,0.612612,0.338549,0.413216,0.923155,0.0183894,0.702109,0.970919,0.109944,0.113356,0.485132,0.127033,0.463161,0.767234,0.872282,0.443503,0.635761,0.907569,0.343743,0.292203,0.991196,0.196805,0.613543,0.327766,0.692539,0.0945113,0.641314,0.343632,0.153731,0.682387,0.255032,0.608811,0.749412,0.952656,0.178478,0.971665,0.926432,0.445453,0.558765,0.92318,0.698304,0.294702,0.163929,0.562732,0.0866742,0.745644,0.61806,0.252792,0.368756,0.139673,0.664005,0.591808,0.270184,0.791507,0.18902,0.799802,0.294801,0.641441,0.923388,0.0781733,0.564406,0.59306,0.886146,0.110258,0.487276,0.307755,0.56925,0.973142,0.547798,0.289715,0.366161,0.897466,0.752086,0.316602,0.342145,0.177038,0.370933,0.683074,0.545057,0.067749,0.693918,0.0371802,0.494575,0.342968,0.381803,0.795408,0.931188,0.0384175,0.619328,0.643433,0.571813,0.944674,0.711142,0.154992,0.272859,0.210902,0.0395158,0.160874,0.914676,0.919675,0.473029,0.711288,0.712955,0.648584,0.435902,0.833954,0.470558,0.803178,0.267935,0.712864,0.84893,0.207564,0.984644,0.93492,0.689315,0.562311,0.636864,0.177429,0.991403,0.743521,0.0621371,0.657053,0.192672,0.619674,0.902327,0.437406,0.779092,0.401906,0.487207,0.705018,0.123825,0.711097,0.816613,0.929017,0.0796267,0.461832,0.798067,0.28484,0.940841,0.426538,0.80987,0.725817,0.318622,0.349012,0.365884,0.264745,0.453296,0.200379,0.915301,0.126989,0.523704,0.908697,0.640657,0.416542,0.528657,0.857347,0.491509,0.528278,0.145876,0.49565,0.663165,0.0710185,0.754175,0.912681,0.279472,0.949573,0.986402,0.364903,0.881761,0.760454,0.7587,0.20254,0.856321,0.687813,0.118805,0.486691,0.656593,0.754686,0.656944,0.200413,0.959244,0.4757,0.481484,0.260202,0.244097,0.174643,0.654246,0.988295,0.892713,0.785969,0.480404,0.836634,0.326951,0.0111548,0.65286,0.50744,0.331846,0.799189,0.356266,0.2933,0.981537,0.0706079,0.0482053,0.900104,0.252907,0.746891,0.051744,0.834149,0.938284,0.369387,0.454176,0.23669,0.963405,0.158604,0.695737,0.882813,0.515744,0.253007,0.682106,0.589848,0.390354,0.00231516,0.75305,0.974826,0.528681,0.895066,0.0848112,0.691243,0.596958,0.690366,0.588794,0.404042,0.0474544,0.568215,0.266167,0.922546,0.875484,0.384861,0.0728797,0.240103,0.188603,0.868447,0.672509,0.216513,0.601705,0.896227,0.0688591,0.175362,0.227862,0.435608,0.533658,0.0638889,0.336366,0.909841,0.95717,0.426113,0.20456,0.366808,0.917105,0.43019,0.284512,0.497162,0.263083,0.514002,0.836994,0.302511,0.117647,0.893818,0.684739,0.29521,0.935894,0.351064,0.262822,0.786859,0.807167,0.134841,0.0375371,0.902697,0.506361,0.00925958,0.747038,0.317517,0.537024,0.0998703,0.026198,0.819162,0.817536,0.32846,0.80739,0.654384,0.786054,0.191134,0.539254,0.403654,0.111286,0.829385,0.953586,0.78174,0.241977,0.82709,0.11291,0.377269,0.495128,0.237283,0.0872281,0.0928668,0.960193,0.607766,0.799437,0.196804,0.904725,0.0959666,0.209752,0.832995,0.865914,0.436902,0.786035,0.113308,0.590624,0.231493,0.498654,0.634209,0.934202,0.151607,0.560922,0.29422,0.423596,0.248841,0.751871,0.599051,0.198791,0.597782,0.914685,0.421715,0.602602,0.346774,0.977541,0.00255132,0.623166,0.39222,0.47052,0.814697,0.697617,0.529108,0.829817,0.364381,0.973473,0.984589,0.566773,0.258218,0.533295,0.163563,0.533446,0.431679,0.339754,0.566149,0.689432,0.464265,0.987395,0.627759,0.812991,0.295934,0.657402,0.571255,0.197105,0.685797,0.977775,0.999658,0.69244,0.373433,0.514977,0.263413,0.745957,0.448672,0.430292,0.176529,0.785313,0.667023,0.640216,0.337017,0.495239,0.408484,0.178814,0.0289963,0.778378,0.137914,0.0577399,0.225656,0.385306,0.23863,0.638285,0.0885772,0.855981,0.907839,0.908851,0.602494,0.331212,0.378585,0.50705,0.886823,0.330874,0.832027,0.724603,0.37788,0.715447,0.151776,0.922874,0.968505,0.529991,0.521811,0.890157,0.21373,0.325353,0.709657,0.28068,0.185435,0.52167,0.781511,0.228094,0.615666,0.844686,0.18422,0.944227,0.540514,|0.708774,0.781359,0.494027,0.995462,0.957519,0.54019,0.405576,0.943649,0.676774,0.0348163,0.568249,0.718105,0.982859,0.303859,0.215675,0.196339,0.119841,0.412165,0.34411,0.229943,0.0551224,0.627849,0.588885,0.428707,0.414244,0.151189,0.411321,0.862708,0.413881,0.961419,0.79177,0.222456,0.530996,0.490674,0.119596,0.451301,0.140557,0.136867,0.170071,0.845965,0.902746,0.157614,0.739914,0.760941,0.884584,0.854153,0.638026,0.765478,0.88387,0.224135,0.493821,0.139446,0.845546,0.832107,0.250238,0.524987,0.38016,0.631802,0.823702,0.0382152,0.714141,0.149288,0.454826,0.571844,0.265148,0.564815,0.245845,0.0683773,0.415868,0.21404,0.927468,0.137724,0.664738,0.952231,0.456163,0.0513694,0.14431,0.738496,0.768426,0.205855,0.981662,0.292063,0.939915,0.510869,0.0155281,0.678636,0.895535,0.501306,0.340996,0.0952461,0.0961412,0.503791,0.469698,0.510788,0.745356,0.643134,0.726859,0.799674,0.790651,0.249285,0.617234,0.687487,0.941767,0.233134,0.969608,0.219487,0.771399,0.00957,0.929616,0.427893,0.809592,0.862168,0.508934,0.0879851,0.966157,0.992211,0.742848,0.504764,0.74735,0.428442,0.760265,0.0600926,0.975184,0.816688,0.391225,0.223025,0.536442,0.945201,0.31491,0.684893,0.409397,0.97485,0.733846,0.958253,0.115143,0.67052,0.586031,0.481691,0.22732,0.164778,0.736438,0.752031,0.342933,0.17433,0.94959,0.0732523,0.0134982,0.532258,0.448993,0.243056,0.120834,0.93717,0.677965,0.0835506,0.280893,0.426985,0.0177594,0.7833,0.832717,0.0218012,0.823094,0.58906,0.697641,0.347961,0.144785,0.450748,0.0758715,0.805013,0.00187486,0.436784,0.941841,0.53854,0.197073,0.798436,0.464426,0.495379,0.602656,0.257228,0.252278,0.356723,0.95791,0.748163,0.0347151,0.186881,0.547279,0.460899,0.105798,0.891135,0.595728,0.844549,0.714417,0.506176,0.288965,0.167478,0.749601,0.931698,0.419605,0.471659,0.690444,0.390974,0.145896,0.475372,0.0154811,0.859749,0.95628,0.552407,0.335008,0.275308,0.611017,0.0221722,0.248663,0.0827363,0.27483,0.856193,0.110518,0.153084,0.756379,0.486962,0.543692,0.725528,0.62124,0.0413382,0.475087,0.0635797,0.0353094,0.754052,0.615451,0.0413557,0.887646,0.724552,0.44572,0.0201269,0.580841,0.691918,0.0268058,0.0230746,0.749482,0.238701,0.966336,0.65921,0.900445,0.13556,0.751347,0.935328,0.0925449,0.244296,0.406357,0.282268,0.484656,0.708643,0.180649,0.0358631,0.0504701,0.91999,0.108068,0.0699153,0.590517,0.186019,0.54335,0.467658,0.541874,0.289863,0.73906,0.598316,0.619444,0.59508,0.453741,0.586537,0.246892,0.841155,0.432566,0.868761,0.294339,0.391396,0.367195,0.483417,0.764155,0.037955,0.183515,0.115882,0.318331,0.0697717,0.0346266,0.867358,0.930132,0.164631,0.868842,0.808743,0.864168,0.706054,0.0651317,0.853974,0.699338,0.880189,0.00453311,0.950646,0.234122,0.247126,0.704709,0.237262,0.302136,0.507666,0.24286,0.498846,0.952791,0.675762,0.846844,0.717978,0.89644,0.262307,0.352553,0.651762,0.271656,0.626742,0.621272,0.95,0.215933,0.865113,0.619833,0.24028,0.81817,0.728464,0.805529,0.594698,0.288852,0.27683,0.668467,0.801244,0.824376,0.24859,0.495166,0.252828,0.787782,0.898469,0.40579,0.00173521,0.767409,0.874729,0.542529,0.143224,0.11168,0.67293,0.415868,0.588394,0.951855,0.956602,0.962543,0.520233,0.754464,0.983266,0.987622,0.281554,0.600051,0.822394,0.654776,0.220744,0.862126,0.474851,0.193385,0.971968,0.0357433,0.21921,0.775057,0.906766,0.563159,0.69316,0.635083,0.737488,0.315181,0.598363,0.0592681,0.530099,0.499496,0.0680129,0.458978,0.604284,0.878897,0.42572,0.994097,0.83992,0.572422,0.367156,0.73942,0.814902,0.874429,0.881467,0.227896,0.424717,0.625746,0.266752,0.558971,0.842058,0.0915568,0.687964,0.0931563,0.949024,0.366786,0.959235,0.464573,0.490349,0.324169,0.627037,0.180465,0.273337,0.450918,0.0196133,0.881008,0.371355,0.0289656,0.452879,0.320494,0.712906,0.687052,0.468552,0.705399,0.3739,0.0994256,0.295471,0.0937557,0.949714,0.0268113,0.0779446,0.36269,0.02603,0.434431,0.426929,0.195433,0.886751,0.0624695,0.994371,0.523733,0.0670999,0.963653,0.32861,0.964425,0.880179,0.525457,0.853887,0.449121,0.172687,0.799298,0.420424,0.410987,0.675984,0.681993,0.821768,0.849617,0.732762,0.378437,0.604819,0.932844,0.0832307,0.832011,0.745943,0.433217,0.674031,0.0582557,0.261263,0.787996,0.792432,0.467912,0.0928419,0.873568,0.521376,0.35379,0.95169,0.54695,0.258676,0.677721,0.601098,0.281301,0.135276,0.474374,0.873444,0.0486987,0.937783,0.0411974,0.849596,0.125545,0.91648,0.410428,0.845727,0.554651,0.486064,0.937363,0.364518,0.858551,0.786478,0.852184,0.420979,0.583515,0.997831,0.319407,0.839895,0.0577014,0.46184,0.191455,0.681399,0.797521,0.725819,0.774285,0.65009,0.581436,0.383737,0.863848,0.837366,0.0636736,0.0425317,0.984743,0.587131,0.748634,0.087885,0.0678293,0.889123,0.728269,0.704136,0.00780153,0.63115,0.309325,0.540154,0.782934,0.569389,0.372281,0.866067,0.634467,0.742859,0.257783,0.156363,0.304192,0.439051,0.483359,0.893722,0.941678,0.132734,0.237689,0.955957,0.229087,0.36246,0.420859,0.450788,0.0273961,0.00775176,0.373671,0.183557,0.670889,0.820478,0.524486,0.540444,0.994821,0.636179,0.177003,0.826334,0.732034,0.500437,0.950512,0.743726,0.146137,0.928134,0.205788,0.706455,0.230341,0.912131,0.820235,0.459275,0.49897,0.0671523,0.306081,0.765217,0.998524,0.446975,0.944199,0.464332,0.84062,0.216995,0.103831,0.807935,0.551158,0.31909,0.558186,0.283185,0.965582,0.96332,0.919131,0.997309,0.599193,0.271551,0.267224,0.758794,0.829341,0.730243,0.517909,0.234965,0.531272,0.349952,0.25991,0.47209,0.400164,0.459379,0.822806,0.799508,0.790927,0.970398,0.742261,0.402361,0.687455,0.00685769,0.226016,0.495649,0.569051,0.726622,0.280773,0.861782,0.840732,0.786729,0.761575,0.206177,0.304919,0.589332,0.17695,0.550275,0.252876,0.613595,0.470429,0.161933,0.536355,0.899741,0.430504,0.435833,0.450273,0.747509,0.244759,0.296122,0.664911,0.151341,0.0510438,0.602377,0.158845,0.416734,0.238408,0.828769,0.0264517,0.154807,0.265626,0.933382,0.162021,0.697402,0.490417,0.219633,0.323581,0.352156,0.350619,0.27264,0.961091,0.775874,0.919478,0.274471,0.963755,0.760517,0.208034,0.802007,0.379703,0.757397,0.792484,0.383975,0.578878,0.846547,0.206921,0.182607,0.711653,0.354018,0.419173,0.496994,0.717276,0.0276943,0.406775,0.197595,0.770371,0.295761,0.97875,0.490985,0.84127,0.214031,0.871962,0.454799,0.792361,0.104142,0.788551,0.506492,0.513585,0.727102,0.601151,0.509872,0.098319,0.811395,0.327075,0.499528,0.8902,0.0877775,0.993897,0.419758,0.233994,0.62751,0.388658,0.260715,0.941827,0.668693,0.209087,0.719103,0.986769,0.21191,0.618973,0.269454,0.884102,0.600196,0.467785,0.990607,0.181168,0.613389,0.87858,0.756613,0.346308,0.597232,0.462136,0.565032,0.0409205,0.808754,0.412442,0.581267,0.846378,0.192635,0.884245,0.0142837,0.866246,0.994912,0.721863,0.0615459,0.719083,0.317685,0.389165,0.854909,0.384004,0.205958,0.687746,0.214431,0.846621,0.639448,0.630489,0.543412,0.877619,0.376854,0.0417573,0.53768,0.812068,0.355214,0.430282,0.933295,0.833333,0.533281,0.532032,0.460415,0.581182,0.314898,0.469083,0.403543,0.501941,0.527505,0.566481,0.134689,0.980484,0.895051,0.150309,0.415601,0.8506,0.918118,0.363953,0.191956,0.242487,0.75038,0.187508,0.312605,0.579872,0.323735,0.627521,0.388703,0.4422,0.887658,0.331412,0.464494,0.350814,0.588308,0.1544,0.180576,0.961979,0.150101,0.61699,0.385217,0.546841,0.0163499,0.708714,0.309287,0.86399,0.291661,0.361388,0.293279,0.153341,0.549524,0.450121,0.453951,0.0731534,0.0600453,0.890665,0.976707,0.95328,0.875806,0.160889,0.305778,0.883308,0.670285,0.548936,0.365082,0.355281,0.884863,0.272428,0.329767,0.343712,0.394054,0.119334,0.200534,0.266374,0.73647,0.348228,0.322793,0.276601,0.793009,0.199711,0.390933,0.473433,0.766302,0.158332,0.814453,0.556116,0.605518,0.191271,0.196784,0.705392,0.0393952,0.410416,0.548002,0.514269,0.517766,0.698629,0.205797,0.701398,0.857071,0.871997,0.991496,0.519335,0.115992,0.258085,0.0405554,0.637304,0.447838,0.299681,0.534661,0.145891,0.737705,0.396578,0.184184,0.159597,0.14413,0.672008,0.824466,0.046333,0.0969383,0.770375,0.914549,0.838424,0.43923,0.493506,0.86361,0.235659,0.395279,0.151716,0.44036,0.274295,0.737779,0.0859612,0.273027,0.471425,0.985577,0.596115,0.871829,0.290569,0.167365,0.229492,0.813881,0.278363,0.151407,0.870437,0.689446,0.354076,0.763607,0.842602,0.208022,0.772679,0.512504,0.330244,0.278495,0.582297,0.227352,0.981197,0.672654,0.146237,0.113071,0.835598,0.695084,0.390666,0.554685,0.15454,0.0201011,0.219504,0.829862,0.333014,0.556104,0.885819,0.55871,0.196405,0.0353471,0.00954163,0.0563946,0.100553,0.551362,0.0247997,0.809827,0.204973,0.0694932,0.922316,0.141593,0.480749,0.505972,0.298999,0.447744,0.473634,0.431973,0.579287,0.39291,0.243808,0.927536,0.361378,0.326195,0.206562,0.755764,0.0279142,0.985632,0.0120837,0.0146035,0.0772901,0.0344338,0.803266,0.281235,0.665621,0.287415,0.555508,0.362763,0.906617,0.871867,0.31304,0.999487,0.0830804,0.454796,0.963666,0.178649,0.936277,0.444346,0.540421,0.498796,0.0961885,0.733952,0.935287,0.397045,0.329411,0.519644,0.793189,0.629035,0.915262,0.711851,0.415973,0.620226,0.0503944,0.485982,0.343163,0.582628,0.240261,0.109164,0.414182,0.266992,0.802483,0.668141,0.866392,0.839892,|0.531757,0.105171,0.641306,0.759188,0.92216,0.53418,0.596913,0.25981,0.251615,0.661563,0.529133,0.21732,0.53886,0.244727,0.557045,0.656838,0.689103,0.626671,0.154882,0.996049,0.39025,0.260046,0.711641,0.447423,0.362053,0.953245,0.340026,0.554704,0.66822,0.983261,0.244903,0.199951,0.149079,0.816896,0.860547,0.462607,0.430134,0.268669,0.619919,0.720616,0.227146,0.946201,0.569915,0.181161,0.329573,0.098152,0.998689,0.459851,0.394786,0.0222426,0.355953,0.209789,0.655908,0.600057,0.0460481,0.0707307,0.294813,0.564505,0.868545,0.295956,0.621179,0.814214,0.93721,0.991512,0.397579,0.352892,0.290714,0.840124,0.833097,0.0351062,0.532134,0.32788,0.834356,0.676469,0.748204,0.065319,0.405365,0.100248,0.254129,0.883199,0.565853,0.0752087,0.584839,0.525989,0.372034,0.0532427,0.990652,0.83956,0.794815,0.893631,0.532549,0.330876,0.506636,0.604544,0.489296,0.38563,0.316181,0.342135,0.328846,0.37424,0.810863,0.707654,0.626014,0.427257,0.559601,0.745241,0.688736,0.95508,0.546986,0.709252,0.604097,0.120197,0.62223,0.151757,0.241895,0.512643,0.147479,0.623566,0.955239,0.940466,0.336526,0.643341,0.761644,0.0577055,0.623637,0.742093,0.701264,0.391733,0.923259,0.360409,0.424823,0.6405,0.144174,0.968641,0.868425,0.324877,0.336061,0.374551,0.936442,0.547815,0.729403,0.542515,0.708056,0.448454,0.273887,0.331343,0.345979,0.899226,0.932892,0.0369421,0.139941,0.794963,0.646009,0.871321,0.0476862,0.581106,0.187856,0.0399759,0.774177,0.340984,0.820422,0.103022,0.874596,0.556125,0.933629,0.760488,0.247364,0.485925,0.245675,0.0449337,0.590927,0.759187,0.593768,0.724116,0.129535,0.267394,0.990203,0.598075,0.26804,0.538202,0.959044,0.174354,0.772548,0.711941,0.839829,0.0941786,0.561222,0.447968,0.384574,0.744633,0.829656,0.0319977,0.752616,0.752543,0.0118715,0.713438,0.415588,0.855797,0.946871,0.0468619,0.612333,0.0207034,0.435379,0.975994,0.269574,0.404047,0.0172403,0.134252,0.447559,0.00105572,0.0404794,0.808677,0.410912,0.397278,0.947715,0.227226,0.762643,0.17736,0.395818,0.588723,0.195236,0.779764,0.934209,0.684615,0.818327,0.561487,0.736703,0.0139223,0.845043,0.758333,0.512576,0.345845,0.48875,0.881816,0.617409,0.298083,0.451191,0.810053,0.894014,0.434959,0.20084,0.807767,0.065198,0.660242,0.0997484,0.0561237,0.825135,0.256574,0.716293,0.439084,0.45189,0.769123,0.723323,0.243302,0.395703,0.185027,0.668656,0.458093,0.837339,0.470046,0.698236,0.527951,0.0895808,0.447861,0.528458,0.0210821,0.280803,0.509799,0.669521,0.765476,0.867206,0.113547,0.57772,0.653243,0.635271,0.806628,0.923961,0.00720644,0.133392,0.824201,0.207848,0.145863,0.28578,0.816703,0.350573,0.308201,0.308333,0.315902,0.633947,0.721248,0.958443,0.688685,0.822576,0.92514,0.718276,0.722562,0.162126,0.815804,0.494262,0.0639644,0.416169,0.577236,0.510283,0.200529,0.378643,0.363363,0.385079,0.973337,0.426033,0.418495,0.690157,0.142572,0.424553,0.0455688,0.990815,0.501379,0.619739,0.699546,0.41513,0.950184,0.815344,0.883514,0.0803297,0.13131,0.195819,0.475392,0.211226,0.559196,0.908017,0.426142,0.776763,0.894599,0.610784,0.455357,0.459198,0.9307,0.42187,0.420236,0.453388,0.773025,0.285243,0.708335,0.44173,0.767834,0.80645,0.863037,0.711836,0.269657,0.943314,0.240643,0.423214,0.160174,0.707309,0.495699,0.653757,0.00603944,0.304843,0.454516,0.104982,0.40066,0.913729,0.472589,0.936125,0.0587304,0.84086,0.192709,0.790613,0.0276359,0.0537898,0.0458967,0.527025,0.683012,0.786061,0.795801,0.060474,0.709532,0.604372,0.0516657,0.858462,0.963809,0.586306,0.0053491,0.116872,0.849635,0.375414,0.830428,0.49648,0.16137,0.500476,0.821591,0.112094,0.516688,0.522425,0.768375,0.899364,0.536155,0.782167,0.721189,0.398877,0.734418,0.795551,0.000633538,0.855556,0.386916,0.208118,0.36985,0.671408,0.00887036,0.987198,0.363883,0.874692,0.0253864,0.274393,0.197602,0.319811,0.683348,0.544783,0.52798,0.729334,0.476007,0.0386449,0.546907,0.558278,0.420806,0.959621,0.144531,0.0700106,0.0531345,0.917096,0.842864,0.372339,0.860147,0.211989,0.670213,0.273184,0.531282,0.953745,0.343288,0.0882689,0.702205,0.749619,0.773268,0.512503,0.46401,0.368915,0.643793,0.591576,0.548767,0.864592,0.0781375,0.358038,0.0779353,0.1834,0.123705,0.583797,0.905458,0.339244,0.0929644,0.564271,0.133528,0.0642034,0.665423,0.891931,0.887636,0.802628,0.591387,0.14538,0.771878,0.0958098,0.932264,0.867603,0.546645,0.594258,0.966978,0.832416,0.859691,0.590212,0.908223,0.67854,0.270212,0.215955,0.815505,0.835134,0.86123,0.348903,0.201781,0.0795144,0.970417,0.796104,0.338844,0.0704588,0.834306,0.733863,0.0718327,0.977047,0.689104,0.079093,0.396398,0.330931,0.459402,0.543071,0.656578,0.688199,0.679112,0.168919,0.159837,0.754913,0.89077,0.657197,0.482438,0.753862,0.970718,0.623484,0.568629,0.882104,0.740256,0.840533,0.949993,0.818441,0.156892,0.377458,0.886456,0.208448,0.510775,0.29998,0.129758,0.546023,0.979281,0.432709,0.229962,0.837977,0.0585049,0.767818,0.4554,0.452805,0.413177,0.658508,0.670614,0.166807,0.56892,0.951302,0.172972,0.0951587,0.798475,0.989526,0.220066,0.769507,0.0673039,0.231133,0.726716,0.503507,0.774005,0.0890447,0.0980843,0.309322,0.843061,0.739741,0.320435,0.337168,0.874991,0.347754,0.381771,0.847581,0.470161,0.269593,0.810763,0.149772,0.425589,0.387193,0.205278,0.635973,0.838124,0.294105,0.443201,0.904472,0.972936,0.766572,0.164336,0.795962,0.0586768,0.559381,0.769995,0.099107,0.174388,0.71865,0.955119,0.177993,0.132132,0.347655,0.153314,0.163146,0.535832,0.525414,0.248141,0.203206,0.166245,0.578547,0.040482,0.908621,0.56097,0.949512,0.211459,0.162506,0.236373,0.178988,0.454778,0.306918,0.514193,0.615774,0.727582,0.373553,0.645491,0.788919,0.805023,0.310564,0.261634,0.447422,0.5807,0.491418,0.651468,0.73348,0.0959127,0.532399,0.183712,0.818807,0.834276,0.995052,0.423008,0.281711,0.950222,0.550789,0.941754,0.704081,0.0803649,0.780199,0.965213,0.900143,0.99869,0.154004,0.141882,0.230958,0.259523,0.804131,0.251442,0.310725,0.0931457,0.155258,0.346342,0.334857,0.593585,0.20194,0.0321254,0.485949,0.832221,0.404869,0.331919,0.837156,0.497253,0.410128,0.334959,0.914795,0.538999,0.218367,0.696628,0.441669,0.723446,0.186141,0.184883,0.0180355,0.752572,0.044426,0.662113,0.911068,0.166575,0.312621,0.313531,0.559877,0.755062,0.831323,0.068775,0.443993,0.97522,0.24292,0.0557018,0.851765,0.979617,0.0246547,0.633101,0.414518,0.653051,0.139392,0.652891,0.922272,0.563107,0.203399,0.612925,0.180085,0.795331,0.998314,0.125988,0.172847,0.536346,0.805363,0.67249,0.324363,0.308857,0.0229287,0.778718,0.417581,0.623506,0.399608,0.502414,0.335924,0.953513,0.946903,0.704259,0.292664,0.517539,0.898756,0.953251,0.768083,0.36848,0.243062,0.851886,0.922062,0.707562,0.11037,0.679868,0.757342,0.986581,0.673249,0.978465,0.179215,0.787223,0.94815,0.977264,0.0717184,0.59545,0.3975,0.294708,0.0615788,0.718683,0.474829,0.869423,0.049562,0.699125,0.819177,0.973028,0.299521,0.476237,0.465972,0.675807,0.975369,0.604786,0.833832,0.861869,0.326928,0.501403,0.536257,0.797614,0.0860333,0.208316,0.0816197,0.850612,0.567591,0.0533906,0.265202,0.311577,0.130296,0.614745,0.843357,0.441287,0.983771,0.965179,0.964206,0.526536,0.144074,0.534737,0.422912,0.973186,0.483356,0.946084,0.61849,0.870953,0.478878,0.0244275,0.142758,0.858702,0.727155,0.477754,0.30773,0.494119,0.74554,0.410246,0.662827,0.0673574,0.185624,0.553417,0.789469,0.264621,0.480764,0.952503,0.914139,0.365825,0.943481,0.204098,0.777133,0.50725,0.400523,0.802057,0.797307,0.731818,0.720347,0.0521994,0.0705803,0.891165,0.260048,0.280126,0.274335,0.385755,0.651896,0.133395,0.0861972,0.150555,0.835679,0.0475494,0.452646,0.0415802,0.588601,0.436274,0.0163381,0.054386,0.889388,0.717358,0.816937,0.454198,0.92999,0.688362,0.235721,0.011061,0.0322664,0.502843,0.0441441,0.821644,0.14927,0.977502,0.201487,0.302253,0.92398,0.0606676,0.891463,0.705555,0.99889,0.194806,0.498296,0.15298,0.300703,0.0146513,0.7569,0.822792,0.525282,0.745783,0.467896,0.11978,0.128235,0.021968,0.28441,0.0923359,0.319239,0.72498,0.221598,0.522886,0.15801,0.371172,0.545316,0.764898,0.424615,0.66649,0.588068,0.196813,0.99296,0.245916,0.766114,0.553725,0.169316,0.426841,0.184891,0.0185057,0.561289,0.729053,0.121102,0.0738004,0.972575,0.576238,0.493665,0.154202,0.113935,0.782114,0.70506,0.385408,0.148799,0.944888,0.239988,0.873211,0.325324,0.423032,0.55672,0.137339,0.691882,0.670684,0.201193,0.848928,0.215706,0.626471,0.662926,0.775708,0.642923,0.261205,0.0940461,0.370711,0.487474,0.841291,0.702566,0.833892,0.37746,0.851082,0.620941,0.370452,0.997607,0.79252,0.20029,0.0317771,0.879966,0.248961,0.639694,0.256977,0.242503,0.509006,0.582884,0.0329733,0.144646,0.832447,0.194148,0.413239,0.635682,0.0831878,0.629425,0.738864,0.618575,0.676537,0.225089,0.208606,0.168193,0.841444,0.216784,0.831905,0.812357,0.00641322,0.845493,0.602014,0.636658,0.308159,0.271336,0.812302,0.668935,0.621191,0.638596,0.661844,0.780317,0.565042,0.66836,0.412954,0.419218,0.921252,0.0562265,0.970588,0.487899,0.402334,0.669491,0.134207,0.67103,0.258392,0.699536,0.435265,0.762827,0.320485,0.717049,0.231543,0.714538,0.449847,0.967692,0.857296,0.860952,0.621494,0.615587,0.96111,0.270663,0.1008,0.620156,0.404797,|0.220338,0.176719,0.194271,0.943178,0.202429,0.781101,0.91038,0.709653,0.410266,0.835456,0.544001,0.528991,0.366175,0.641425,0.386307,0.488997,0.184784,0.500685,0.340531,0.612789,0.541925,0.392294,0.356376,0.0331245,0.204543,0.739213,0.965896,0.729735,0.851725,0.104473,0.671097,0.0294421,0.557467,0.330992,0.840381,0.352224,0.0166793,0.222861,0.806348,0.994325,0.117087,0.779728,0.354568,0.891536,0.553436,0.881689,0.142086,0.316636,0.315948,0.895834,0.69438,0.658372,0.794593,0.161534,0.84197,0.0702386,0.770576,0.826106,0.881486,0.718029,0.803069,0.95694,0.597797,0.503322,0.639365,0.88739,0.787485,0.00809211,0.439734,0.539937,0.0929763,0.761034,0.349117,0.484489,0.329467,0.936363,0.452242,0.52024,0.22447,0.769865,0.285794,0.23952,0.124225,0.544339,0.831657,0.386053,0.563633,0.478277,0.608494,0.652339,0.727685,0.608546,0.63752,0.793129,0.344748,0.412628,0.308933,0.354036,0.314167,0.421051,0.0532252,0.382264,0.121897,0.976363,0.385833,0.0667875,0.324266,0.737908,0.595265,0.909515,0.136727,0.893743,0.49593,0.93123,0.947612,0.845857,0.712313,0.0740046,0.287332,0.884342,0.0709201,0.499189,0.234768,0.275291,0.36758,0.455208,0.272433,0.476258,0.677305,0.373153,0.633795,0.73725,0.139285,0.423368,0.73744,0.836239,0.250609,0.373344,0.569128,0.46612,0.97002,0.707721,0.699367,0.931494,0.420783,0.920048,0.541431,0.449033,0.127459,0.0603316,0.757327,0.225938,0.675146,0.263182,0.381967,0.226046,0.371526,0.201062,0.335203,0.568242,0.00342935,0.247688,0.580771,0.316524,0.680787,0.351027,0.873876,0.733447,0.313599,0.926626,0.657874,0.860078,0.931139,0.407966,0.847895,0.495657,0.591548,0.140951,0.370313,0.281,0.720147,0.621896,0.0376025,0.994311,0.203634,0.468546,0.635423,0.780178,0.133074,0.40919,0.589473,0.0989419,0.223515,0.931036,0.288285,0.173989,0.507042,0.0331498,0.896985,0.722431,0.609469,0.0427442,0.0381934,0.130251,0.897632,0.126381,0.338618,0.301934,0.544266,0.55384,0.440061,0.293167,0.195564,0.936281,0.163457,0.327625,0.719832,0.66717,0.47921,0.432774,0.811692,0.388744,0.97421,0.119888,0.190231,0.184318,0.499863,0.729983,0.0909337,0.025581,0.254868,0.57745,0.851392,0.415933,0.471778,0.760673,0.584424,0.841185,0.0226792,0.713156,0.838692,0.97506,0.00437939,0.157048,0.149295,0.125974,0.287413,0.584425,0.317518,0.244232,0.870278,0.356269,0.704002,0.884817,0.51236,0.288936,0.681046,0.644121,0.199108,0.760425,0.0318732,0.608445,0.181799,0.231928,0.355605,0.0205141,0.0603234,0.151378,0.241135,0.54294,0.918724,0.190769,0.271787,0.590201,0.0307879,0.297234,0.440146,0.0321503,0.873428,0.286937,0.649552,0.652654,0.991752,0.17046,0.606263,0.9716,0.508875,0.939017,0.12358,0.739394,0.496678,0.845751,0.0735562,0.887766,0.284546,0.237463,0.0827251,0.939949,0.445451,0.473879,0.211205,0.740686,0.951236,0.869839,0.626179,0.690586,0.717643,0.675641,0.351969,0.89681,0.262278,0.0974056,0.0294564,0.832777,0.498098,0.578765,0.884642,0.324234,0.0328052,0.284839,0.706799,0.540897,0.0969275,0.266638,0.825602,0.0321988,0.575117,0.146961,0.0850236,0.445332,0.8814,0.262207,0.121516,0.734572,0.165731,0.0643835,0.230104,0.466516,0.789652,0.679271,0.220146,0.769575,0.338464,0.381368,0.0418627,0.966572,0.650639,0.0531686,0.0163843,0.258242,0.0211067,0.770514,0.650242,0.199354,0.651248,0.528649,0.972399,0.105485,0.0659918,0.313307,0.138089,0.0792762,0.731597,0.484599,0.506121,0.705365,0.865126,0.046202,0.975465,0.180486,0.100853,0.943874,0.160196,0.421108,0.805456,0.923273,0.90684,0.985183,0.678552,0.146231,0.00926584,0.621142,0.909909,0.933278,0.589042,0.394364,0.0816243,0.171486,0.545359,0.98182,0.152991,0.278614,0.0272953,0.423483,0.678072,0.649659,0.496662,0.518728,0.860429,0.668417,0.370151,0.585624,0.357369,0.620364,0.796241,0.404784,0.807679,0.952376,0.601038,0.439025,0.0702274,0.933829,0.135595,0.737766,0.170228,0.00242251,0.794316,0.517678,0.311453,0.584962,0.137242,0.494487,0.785459,0.628613,0.767962,0.644075,0.276738,0.121906,0.0729824,0.28927,0.191986,0.634911,0.331654,0.551116,0.318969,0.155619,0.871653,0.361625,0.187709,0.393864,0.126176,0.405881,0.836736,0.714993,0.224204,0.465105,0.851934,0.207322,0.556853,0.5418,0.814088,0.260434,0.328337,0.811046,0.350278,0.273791,0.600329,0.484765,0.620063,0.488026,0.52146,0.266753,0.406942,0.935305,0.735952,0.0300898,0.577699,0.970905,0.304203,0.308464,0.0536515,0.739421,0.12159,0.816681,0.990984,0.231954,0.372003,0.906027,0.615358,0.522859,0.111412,0.521267,0.41577,0.654206,0.845401,0.752525,0.788879,0.782415,0.909479,0.37388,0.87806,0.245876,0.702831,0.470274,0.0151839,0.744976,0.558051,0.82602,0.247021,0.497115,0.33975,0.54329,0.536972,0.517179,0.445957,0.899835,0.145958,0.845965,0.950764,0.195739,0.04279,0.704694,0.146552,0.40307,0.408116,0.431809,0.78692,0.0826163,0.0668285,0.0711894,0.404058,0.987913,0.32943,0.397334,0.908373,0.0243707,0.600061,0.219993,0.892839,0.718845,0.124338,0.803078,0.654076,0.964205,0.0103249,0.939394,0.85629,0.0490478,0.688941,0.521934,0.406735,0.0920646,0.87521,0.251236,0.855445,0.0518973,0.989088,0.515438,0.416439,0.186696,0.544632,0.707186,0.361095,0.49225,0.811556,0.58378,0.776848,0.0874875,0.925134,0.186011,0.670978,0.35418,0.647746,0.244171,0.0029273,0.886234,0.824309,0.000839055,0.896229,0.564758,0.982123,0.288103,0.13439,0.506361,0.165486,0.700534,0.326084,0.812244,0.225138,0.339964,0.858465,0.931917,0.520344,0.00742972,0.650194,0.0238526,0.741344,0.322289,0.635011,0.852948,0.129218,0.407127,0.925409,0.413115,0.67496,0.212069,0.922713,0.0760359,0.348041,0.315026,0.25134,0.18119,0.836993,0.35647,0.799996,0.517416,0.586289,0.906923,0.199921,0.468632,0.804845,0.788717,0.838938,0.868924,0.977531,0.541473,0.601748,0.849741,0.834026,0.778798,0.953726,0.497693,0.6582,0.787516,0.496489,0.918906,0.951437,0.964521,0.712582,0.262585,0.764644,0.811461,0.676197,0.96634,0.625017,0.84813,0.965519,0.441293,0.128974,0.125147,0.937546,0.269107,0.101527,0.777237,0.292823,0.150923,0.459994,0.531083,0.351261,0.997194,0.966298,0.0429458,0.546956,0.388589,0.35351,0.421775,0.524744,0.0737238,0.824667,0.695487,0.264882,0.497466,0.13976,0.226151,0.389562,0.575268,0.0326145,0.187025,0.496512,0.549968,0.285188,0.541928,0.157794,0.161744,0.675224,0.744915,0.889448,0.690899,0.88413,0.401571,0.959483,0.697476,0.763149,0.110467,0.336596,0.72054,0.635284,0.295563,0.333416,0.974629,0.87098,0.379378,0.93235,0.618518,0.834919,0.802965,0.444854,0.335343,0.863504,0.201458,0.642028,0.395562,0.130191,0.125506,0.385124,0.0425342,0.871994,0.0763738,0.69413,0.372092,0.516826,0.905643,0.758462,0.255604,0.429402,0.873325,0.0598772,0.987861,0.787728,0.855489,0.0530808,0.778862,0.39722,0.414014,0.374489,0.63211,0.420232,0.282159,0.662258,0.937309,0.406916,0.95276,0.990365,0.481294,0.647606,0.365741,0.15938,0.623153,0.828986,0.289288,0.20673,0.796854,0.8076,0.642028,0.101473,0.0541733,0.376482,0.906603,0.756745,0.900779,0.561988,0.716836,0.0485127,0.911301,0.546236,0.75153,0.122586,0.664106,0.573596,0.884946,0.01411,0.180938,0.11144,0.347791,0.914385,0.325609,0.42151,0.688295,0.256965,0.778602,0.257211,0.137973,0.620432,0.00389773,0.52854,0.256876,0.834885,0.921413,0.377728,0.463243,0.383251,0.72369,0.80517,0.104728,0.394946,0.149834,0.540607,0.939474,0.93047,0.675872,0.0316594,0.125027,0.653834,0.397889,0.72857,0.60513,0.497111,0.307509,0.859341,0.275053,0.63835,0.606125,0.471538,0.126483,0.30993,0.328268,0.645059,0.00653142,0.611021,0.45959,0.166635,0.0789558,0.126242,0.902579,0.602801,0.699378,0.986845,0.486432,0.951268,0.823476,0.0664228,0.979854,0.831042,0.994654,0.968009,0.688633,0.205445,0.988332,0.985839,0.717622,0.197055,0.769881,0.510125,0.965802,0.849391,0.00906909,0.823333,0.398076,0.395991,0.787679,0.14859,0.324885,0.556017,0.768298,0.402768,0.530753,0.523153,0.644093,0.910639,0.322347,0.0645775,0.851963,0.580419,0.0528239,0.613477,0.321804,0.153923,0.939099,0.211625,0.328753,0.838502,0.399599,0.741001,0.267214,0.246454,0.212286,0.863935,0.913769,0.527361,0.626226,0.493465,0.0795293,0.724973,0.679522,0.40168,0.105351,0.374746,0.941564,0.513646,0.295059,0.808142,0.650495,0.325762,0.533605,0.450686,0.360704,0.542581,0.734305,0.163833,0.374618,0.756927,0.785347,0.186651,0.273174,0.648199,0.862771,0.630169,0.491908,0.890653,0.511957,0.469515,0.807602,0.325826,0.592376,0.792144,0.871398,0.622873,0.16352,0.950909,0.559268,0.352142,0.33433,0.57688,0.949076,0.490011,0.565322,0.20382,0.367302,0.370715,0.0303174,0.119189,0.123376,0.354752,0.256788,0.951524,0.224946,0.436415,0.909401,0.167818,0.780037,0.986181,0.468386,0.134747,0.784398,0.478874,0.117088,0.385091,0.919139,0.501597,0.0876963,0.729882,0.694438,0.0489175,0.542241,0.327506,0.469406,0.0916126,0.791194,0.0808963,0.243649,0.00512916,0.0989702,0.419091,0.302742,0.949183,0.425189,0.792391,0.807437,0.2891,0.307515,0.291499,0.655182,0.453522,0.345456,0.256926,0.209704,0.559136,0.410759,0.595273,0.783738,0.887388,0.570848,0.929097,0.848795,0.147095,0.016335,0.699305,0.496583,0.782625,0.42968,0.0651845,0.49378,0.624167,0.927953,0.918122,0.184348,0.207377,0.752117,0.183518,0.047196,0.224265,0.757971,0.44739,0.456428,0.788113,0.860622,0.545687,0.10641,0.632254,0.631396,|0.524355,0.0715393,0.0172231,0.597797,0.435328,0.661033,0.968143,0.843215,0.48913,0.0261989,0.877211,0.0387759,0.99859,0.231974,0.747896,0.726422,0.481469,0.156353,0.544097,0.895965,0.643903,0.642088,0.613823,0.646798,0.304223,0.48328,0.767812,0.916582,0.66937,0.347322,0.594623,0.772274,0.0937476,0.754975,0.550769,0.324846,0.564747,0.649695,0.103155,0.622088,0.142568,0.0786937,0.368358,0.72101,0.016849,0.102954,0.873833,0.394345,0.814248,0.178929,0.654711,0.40679,0.385531,0.515111,0.0959433,0.133682,0.0524104,0.56693,0.82496,0.968998,0.29459,0.73632,0.435126,0.489181,0.79919,0.585781,0.736874,0.730283,0.598067,0.526515,0.611076,0.154515,0.527993,0.22896,0.0917662,0.679731,0.857321,0.979112,0.521836,0.526292,0.666578,0.478278,0.551887,0.922835,0.405812,0.924859,0.63305,0.139471,0.583531,0.568376,0.322157,0.395133,0.711677,0.951916,0.739271,0.337,0.799459,0.707355,0.486762,0.967246,0.735217,0.442588,0.823791,0.880673,0.936875,0.245479,0.176816,0.625623,0.805377,0.405926,0.688425,0.285211,0.780745,0.876474,0.868401,0.00683481,0.698421,0.573302,0.244507,0.368006,0.576777,0.47506,0.256524,0.605237,0.854641,0.94092,0.758596,0.855334,0.451457,0.24472,0.427592,0.909525,0.597116,0.409722,0.711037,0.494634,0.478997,0.463717,0.293433,0.604193,0.898373,0.302308,0.328923,0.574277,0.183642,0.618962,0.0998458,0.593549,0.834231,0.096176,0.387354,0.93702,0.277396,0.150122,0.188775,0.263211,0.320213,0.7501,0.572935,0.0479745,0.518686,0.992616,0.0139055,0.237776,0.574756,0.0194992,0.805471,0.0814598,0.703014,0.773241,0.132343,0.962408,0.933744,0.947124,0.0155054,0.506158,0.439734,0.562027,0.890518,0.537552,0.810423,0.875435,0.742487,0.0199329,0.861937,0.202744,0.446519,0.817886,0.165587,0.422518,0.111052,0.00390607,0.687172,0.574097,0.565994,0.840745,0.837485,0.477169,0.740828,0.0439518,0.471508,0.241793,0.952078,0.282797,0.23839,0.162131,0.280836,0.895722,0.909643,0.759277,0.0670402,0.45236,0.800635,0.725803,0.813545,0.16983,0.459672,0.614567,0.0897113,0.851857,0.729172,0.717849,0.292069,0.207054,0.145989,0.130654,0.502701,0.921508,0.343654,0.394361,0.112982,0.710617,0.623072,0.621693,0.738729,0.562734,0.77483,0.866573,0.636873,0.0226428,0.406366,0.25725,0.81153,0.632152,0.796547,0.254764,0.443932,0.203302,0.523165,0.146978,0.431895,0.162752,0.546995,0.745596,0.380403,0.719573,0.491686,0.240317,0.485134,0.818001,0.771371,0.493591,0.292295,0.861096,0.595643,0.0358775,0.552099,0.0755686,0.492435,0.456725,0.662383,0.265351,0.25244,0.519259,0.710293,0.0621126,0.558946,0.503222,0.411166,0.895261,0.366253,0.0200732,0.0274796,0.718435,0.584673,0.948843,0.234965,0.426045,0.912602,0.218718,0.0728877,0.41946,0.103398,0.94605,0.0626115,0.878172,0.571599,0.47676,0.985525,0.604013,0.955913,0.360035,0.424606,0.382973,0.397585,0.150055,0.236818,0.225848,0.710734,0.289701,0.623206,0.806217,0.703008,0.827151,0.120022,0.673388,0.737495,0.333824,0.374339,0.00294161,0.725545,0.298874,0.5472,0.404295,0.118411,0.614218,0.0883164,0.816492,0.116057,0.828678,0.907609,0.917165,0.822755,0.597456,0.448586,0.500448,0.80613,0.608686,0.739339,0.663118,0.308275,0.283824,0.27055,0.374468,0.309787,0.219308,0.788143,0.100015,0.787113,0.985803,0.34363,0.103645,0.833649,0.71046,0.36876,0.0437025,0.8587,0.222362,0.844673,0.216738,0.324177,0.538878,0.140676,0.0898756,0.805223,0.870778,0.691716,0.623143,0.927653,0.0750269,0.379936,0.667975,0.633974,0.431727,0.710122,0.199813,0.546872,0.750013,0.86253,0.744076,0.565323,0.0903738,0.53948,0.68086,0.738104,0.745712,0.956127,0.52155,0.186661,0.589445,0.0888951,0.988696,0.273005,0.806252,0.814635,0.659082,0.811391,0.260474,0.105497,0.800617,0.409129,0.11191,0.815099,0.391401,0.76738,0.0210694,0.32877,0.805888,0.641959,0.991987,0.280687,0.138888,0.520629,0.36061,0.14936,0.449338,0.195217,0.570306,0.0438504,0.579944,0.604471,0.681279,0.319819,0.770822,0.695811,0.708079,0.635628,0.0882523,0.918065,0.348052,0.553183,0.320339,0.567846,0.471606,0.00126672,0.0391011,0.821734,0.815778,0.225762,0.554095,0.767385,0.571732,0.586523,0.592156,0.852502,0.0452889,0.762283,0.80087,0.180752,0.564112,0.459867,0.166025,0.313188,0.427811,0.696264,0.194449,0.451819,0.14232,0.603256,0.835126,0.298238,0.115374,0.602756,0.403384,0.258603,0.879252,0.587316,0.460099,0.282995,0.395861,0.832669,0.638539,0.388748,0.110102,0.582455,0.448787,0.503962,0.409286,0.588668,0.584246,0.456627,0.592119,0.403783,0.964427,0.235268,0.301364,0.842506,0.990977,0.950392,0.455592,0.642539,0.302496,0.665833,0.378808,0.854698,0.716618,0.189747,0.980843,0.889486,0.440588,0.411911,0.212497,0.0348467,0.833103,0.720925,0.931058,0.791405,0.932664,0.712033,0.428696,0.401562,0.798708,0.812007,0.286437,0.111868,0.075798,0.999706,0.792888,0.402089,0.442797,0.295017,0.725317,0.343572,0.571541,0.660984,0.014845,0.430671,0.208835,0.264282,0.38911,0.704073,0.368798,0.102174,0.937951,0.907954,0.996638,0.0416788,0.218096,0.530739,0.990383,0.740758,0.980641,0.45867,0.0315404,0.105763,0.581584,0.190243,0.32528,0.418086,0.395755,0.790675,0.458795,0.317478,0.271774,0.556029,0.27229,0.600438,0.252672,0.580678,0.525524,0.491986,0.000772357,0.975945,0.817785,0.499,0.829704,0.916507,0.465549,0.0480999,0.052909,0.8681,0.995307,0.0137296,0.857937,0.520263,0.155957,0.50702,0.25287,0.525476,0.946897,0.462667,0.5275,0.589442,0.827185,0.208509,0.116366,0.913806,0.129704,0.303575,0.919428,0.552192,0.598782,0.114614,0.7273,0.576996,0.0527781,0.211979,0.32409,0.263071,0.78945,0.261247,0.299527,0.575118,0.702514,0.759333,0.742887,0.555376,0.936135,0.048948,0.418832,0.145623,0.0269458,0.0259818,0.14391,0.977723,0.308841,0.477038,0.35195,0.0550877,0.242816,0.0586651,0.915511,0.272359,0.334859,0.533029,0.0322235,0.102027,0.643202,0.0208654,0.659059,0.676909,0.385874,0.685266,0.533827,0.543127,0.0835142,0.602983,0.88909,0.0260576,0.689324,0.378056,0.00823486,0.218239,0.192111,0.429237,0.697161,0.63214,0.790654,0.162647,0.688388,0.980155,0.298147,0.564294,0.150536,0.159832,0.708661,0.22461,0.510549,0.752349,0.0905111,0.123027,0.127199,0.302391,0.558968,0.0316584,0.426808,0.995906,0.998426,0.332865,0.453969,0.241175,0.543305,0.633193,0.0637697,0.517006,0.986387,0.23225,0.600182,0.688141,0.807619,0.36544,0.0301812,0.705272,0.590654,0.262431,0.993234,0.762546,0.22335,0.669719,0.937576,0.107486,0.948283,0.780554,0.226961,0.780834,0.282675,0.680764,0.958443,0.942555,0.814177,0.194827,0.921074,0.169055,0.3467,0.765366,0.0629029,0.951333,0.818584,0.146799,0.259942,0.532627,0.515304,0.726084,0.411487,0.248805,0.503151,0.768178,0.865113,0.744562,0.587792,0.103429,0.433652,0.94916,0.400921,0.743362,0.355252,0.453229,0.464003,0.280325,0.95781,0.0988348,0.351614,0.322238,0.12231,0.413054,0.36397,0.438063,0.596031,0.426838,0.401052,0.696676,0.612226,0.915142,0.359153,0.846081,0.0908321,0.0949108,0.2831,0.154164,0.667309,0.165579,0.450742,0.980284,0.832397,0.471064,0.152467,0.120532,0.6044,0.234532,0.923807,0.990053,0.332444,0.408309,0.787822,0.120454,0.437501,0.419744,0.604478,0.793196,0.392864,0.138228,0.183357,0.516894,0.119993,0.23022,0.0444365,0.72443,0.254979,0.568975,0.880146,0.281617,0.224984,0.458042,0.624192,0.952049,0.949262,0.799566,0.498208,0.556834,0.18687,0.642706,0.963826,0.111324,0.756091,0.309051,0.163032,0.889396,0.542627,0.511817,0.668819,0.515638,0.566739,0.978361,0.397859,0.271465,0.576075,0.89102,0.593193,0.441081,0.866929,0.769763,0.307513,0.102932,0.516819,0.373415,0.422931,0.787126,0.664596,0.13459,0.803104,0.384709,0.288738,0.330123,0.744686,0.891983,0.119286,0.0974131,0.904638,0.94472,0.322272,0.697141,0.834321,0.21714,0.966905,0.601247,0.371296,0.763311,0.541646,0.973971,0.31115,0.141179,0.271892,0.464726,0.544436,0.271447,0.299781,0.52225,0.0435257,0.802774,0.345725,0.690455,0.536215,0.790003,0.0107387,0.655601,0.470888,0.504018,0.0414801,0.558923,0.589921,0.0417354,0.477946,0.290075,0.0512174,0.191644,0.235985,0.789848,0.370759,0.36968,0.29163,0.59475,0.115567,0.5208,0.15386,0.820601,0.678691,0.656487,0.0618824,0.0935609,0.651312,0.940204,0.169207,0.236802,0.00194144,0.441712,0.886096,0.358636,0.213342,0.070945,0.837574,0.22745,0.846593,0.280367,0.527807,0.373426,0.173068,0.967192,0.848678,0.803262,0.127504,0.645594,0.259001,0.275957,0.835341,0.8316,0.428283,0.10461,0.837764,0.171268,0.690903,0.834774,0.177933,0.274424,0.982213,0.888443,0.769655,0.801032,0.144329,0.452645,0.810394,0.534897,0.624374,0.74742,0.983719,0.548633,0.286872,0.170427,0.723108,0.116325,0.0891457,0.139858,0.839,0.313196,0.496824,0.324307,0.976022,0.702758,0.3244,0.118341,0.97563,0.200989,0.669307,0.518133,0.540183,0.738416,0.0434885,0.220721,0.218677,0.227514,0.213248,0.625948,0.103568,0.0497553,0.897388,0.471773,0.0487883,0.296195,0.646287,0.370383,0.239067,0.133092,0.442572,0.296955,0.534213,0.747103,0.697137,0.344273,0.183692,0.222552,0.151029,0.242118,0.635153,0.0847168,0.274824,0.200317,0.91959,0.922364,0.506811,0.359888,0.431211,0.567346,0.267718,0.971806,0.036094,0.0717047,0.69828,0.525711,0.873301,0.129116,0.604499,0.0467899,0.100727,0.321549,0.990661,0.654172,0.130712,0.203716,0.0240213,0.836511,0.38859,|0.0921733,0.89906,0.181498,0.621948,0.537763,0.132981,0.756168,0.206343,0.214589,0.449194,0.86209,0.545557,0.755211,0.927061,0.870516,0.125379,0.485384,0.101195,0.169775,0.433255,0.359983,0.223559,0.408724,0.260176,0.14442,0.261261,0.135195,0.718986,0.773809,0.0858076,0.284642,0.509307,0.714962,0.503793,0.0214549,0.251011,0.937858,0.864199,0.827975,0.42394,0.56765,0.0334978,0.389073,0.563153,0.331053,0.442937,0.557189,0.674416,0.19077,0.359743,0.673694,0.544501,0.081504,0.917274,0.540147,0.162656,0.973858,0.753918,0.941454,0.403112,0.798187,0.0338353,0.0217899,0.175488,0.856278,0.250051,0.809942,0.963689,0.796308,0.911168,0.208669,0.691996,0.464351,0.523018,0.989467,0.712155,0.382057,0.133655,0.0826001,0.991649,0.527453,0.73687,0.371452,0.675916,0.883009,0.294422,0.823455,0.22372,0.581876,0.316306,0.91814,0.0471645,0.240761,0.787495,0.432694,0.804569,0.164174,0.302658,0.552136,0.725609,0.679154,0.544684,0.407853,0.497624,0.742757,0.974256,0.0185444,0.420082,0.109274,0.975969,0.318319,0.316465,0.0682248,0.950281,0.145662,0.00436896,0.817889,0.0846167,0.570552,0.865793,0.0822175,0.272113,0.0825494,0.174703,0.0273222,0.949854,0.369195,0.600945,0.233887,0.952643,0.167989,0.0928185,0.0919245,0.752801,0.21461,0.707531,0.703802,0.869797,0.342303,0.648957,0.711639,0.118321,0.806153,0.811548,0.229127,0.197837,0.369583,0.461884,0.658448,0.962333,0.365885,0.918103,0.184667,0.829143,0.634579,0.307844,0.271277,0.23176,0.793314,0.97516,0.532554,0.361505,0.270764,0.014702,0.735219,0.200304,0.854731,0.761331,0.287748,0.0264019,0.348978,0.99058,0.843773,0.7835,0.451213,0.965711,0.95084,0.421187,0.0882096,0.146477,0.288687,0.871878,0.358456,0.459368,0.00322986,0.559621,0.887054,0.130192,0.806503,0.521339,0.0726977,0.69532,0.511832,0.499187,0.578358,0.192703,0.290452,0.225785,0.0385106,0.123585,0.177539,0.143236,0.157382,0.366431,0.149138,0.100367,0.635382,0.852696,0.878416,0.72313,0.847646,0.11415,0.89561,0.36316,0.0172119,0.512291,0.388519,0.716594,0.505368,0.313671,0.613926,0.337643,0.870402,0.196243,0.678837,0.987875,0.838122,0.00492829,0.0891903,0.73997,0.852909,0.778432,0.253237,0.604832,0.894802,0.300504,0.360444,0.734051,0.80203,0.458565,0.489851,0.53684,0.227649,0.300745,0.643662,0.571232,0.416625,0.995708,0.588089,0.366073,0.0211136,0.398926,0.541939,0.00756246,0.973548,0.453922,0.30924,0.188537,0.610315,0.807772,0.590686,0.404128,0.537507,0.746016,0.0793792,0.310827,0.271844,0.169934,0.245652,0.0879786,0.468927,0.495253,0.232893,0.10433,0.0349947,0.234618,0.929842,0.410858,0.442552,0.401409,0.467733,0.0387755,0.798948,0.58667,0.775856,0.220477,0.32661,0.706575,0.932237,0.664969,0.725573,0.500286,0.353584,0.576368,0.225255,0.436219,0.953816,0.00365335,0.224741,0.882339,0.542665,0.394491,0.0592679,0.579509,0.716907,0.460396,0.897893,0.12699,0.736563,0.0800799,0.0581079,0.770843,0.898852,0.525174,0.139215,0.24314,0.165949,0.277499,0.70332,0.525797,0.241145,0.0789593,0.913802,0.732069,0.300807,0.955058,0.651487,0.988743,0.161023,0.945614,0.204199,0.221811,0.719903,0.399344,0.226883,0.183577,0.770443,0.0734586,0.943113,0.846543,0.788861,0.655432,0.711014,0.654754,0.192914,0.893405,0.264601,0.540417,0.91855,0.881872,0.0266926,0.145747,0.601485,0.569277,0.44609,0.831413,0.544756,0.567937,0.258103,0.17735,0.320878,0.0193651,0.724434,0.28927,0.751002,0.0116912,0.198248,0.968218,0.959137,0.183416,0.0325177,0.607106,0.563761,0.96871,0.927467,0.414683,0.472226,0.877581,0.218456,0.172912,0.848585,0.714743,0.277951,0.404618,0.465062,0.340173,0.0143805,0.799556,0.660023,0.0978345,0.91882,0.883276,0.139692,0.159292,0.908995,0.950793,0.366293,0.121371,0.672282,0.175313,0.515778,0.528487,0.322057,0.367485,0.339371,0.71998,0.0998664,0.95659,0.959493,0.188958,0.613452,0.031436,0.547214,0.19534,0.796279,0.371543,0.156872,0.0941865,0.23039,0.44706,0.21725,0.108488,0.129346,0.605599,0.480114,0.0757791,0.310424,0.438935,0.666528,0.096722,0.203232,0.574978,0.578877,0.936393,0.12601,0.539475,0.263505,0.798765,0.0807139,0.718806,0.675038,0.165398,0.381963,0.185087,0.0584209,0.130175,0.645117,0.711673,0.44615,0.542047,0.510758,0.174269,0.145943,0.616228,0.364268,0.309545,0.497988,0.612633,0.472862,0.746653,0.805395,0.198693,0.186917,0.79268,0.350609,0.540395,0.875297,0.130598,0.220111,0.527393,0.0865803,0.013433,0.611318,0.371607,0.508642,0.57437,0.00482041,0.595013,0.646578,0.296256,0.766164,0.95124,0.482548,0.599992,0.81883,0.278423,0.226728,0.0542859,0.944781,0.136787,0.974348,0.117843,0.651777,0.184431,0.175007,0.349965,0.625201,0.0858532,0.341302,0.962657,0.438274,0.583613,0.550214,0.679503,0.325787,0.918361,0.0883763,0.633811,0.607865,0.755986,0.827147,0.980699,0.0744764,0.122061,0.163485,0.188643,0.862967,0.453154,0.751994,0.583747,0.24386,0.072846,0.974472,0.645949,0.484089,0.556245,0.321996,0.9351,0.10585,0.907473,0.0905092,0.973657,0.163001,0.352335,0.893636,0.348243,0.401587,0.339783,0.374434,0.583929,0.272758,0.328944,0.568342,0.363114,0.472696,0.0433287,0.160398,0.326031,0.768982,0.581069,0.197902,0.661521,0.0366836,0.605241,0.410198,0.752294,0.456447,0.0450841,0.339348,0.4284,0.632985,0.518031,0.922672,0.363806,0.278336,0.817154,0.599601,0.783254,0.113079,0.832227,0.289759,0.847294,0.528807,0.570362,0.0384786,0.759124,0.801968,0.921647,0.673525,0.210235,0.557664,0.79142,0.0157494,0.626854,0.966467,0.318984,0.66228,0.223742,0.275859,0.00864291,0.569722,0.160546,0.399722,0.455616,0.990796,0.904413,0.109438,0.482954,0.792854,0.234183,0.272837,0.446179,0.0199904,0.696284,0.949732,0.218639,0.152974,0.548826,0.747945,0.0645223,0.492499,0.75797,0.400237,0.880856,0.15021,0.407264,0.902546,0.267571,0.819877,0.943914,0.488967,0.423998,0.145306,0.107947,0.50129,0.153993,0.867454,0.373395,0.276157,0.865995,0.258725,0.966149,0.446092,0.305325,0.523643,0.76135,0.719691,0.264696,0.497103,0.0695226,0.95884,0.64547,0.626382,0.426018,0.991306,0.822548,0.500333,0.780844,0.114301,0.257772,0.176206,0.540401,0.403455,0.0841699,0.812982,0.892219,0.819216,0.617918,0.0766959,0.276012,0.2356,0.362491,0.391599,0.785761,0.340462,0.70448,0.714641,0.664547,0.872387,0.79292,0.162798,0.906149,0.908934,0.209674,0.706336,0.897617,0.970962,0.813571,0.663843,0.0898752,0.0255179,0.413934,0.840967,0.852619,0.374757,0.852414,0.121136,0.577063,0.315968,0.145817,0.449952,0.902344,0.746068,0.521842,0.680748,0.618337,0.667725,0.0430601,0.0828017,0.487412,0.0450804,0.191924,0.310924,0.762237,0.31352,0.323354,0.0429686,0.930628,0.329639,0.00304115,0.802119,0.730596,0.927222,0.775027,0.685388,0.989,0.778852,0.132145,0.220803,0.47454,0.371579,0.398014,0.127664,0.652386,0.678731,0.565866,0.618176,0.771662,0.710152,0.419777,0.373048,0.97125,0.253795,0.233936,0.105393,0.0406867,0.989256,0.793158,0.137887,0.0509776,0.339419,0.224622,0.385401,0.919413,0.978286,0.560176,0.7621,0.874327,0.810102,0.0464441,0.0945896,0.0369391,0.616167,0.505941,0.634721,0.167167,0.667581,0.831294,0.777844,0.133827,0.646807,0.89236,0.363742,0.900976,0.200157,0.146123,0.697261,0.173555,0.772965,0.00465423,0.541379,0.875478,0.84481,0.310475,0.880586,0.0481618,0.831477,0.493105,0.737114,0.844788,0.97207,0.685668,0.569052,0.472954,0.481006,0.352835,0.485349,0.418939,0.698616,0.190832,0.362325,0.39021,0.619286,0.0850097,0.160718,0.544325,0.40689,0.387292,0.560452,0.681522,0.592843,0.057955,0.528226,0.115594,0.889831,0.466297,0.930611,0.251166,0.0605795,0.308636,0.802855,0.272064,0.318948,0.112239,0.714118,0.728757,0.935477,0.00650418,0.436934,0.302388,0.161067,0.628888,0.822992,0.25728,0.887267,0.328653,0.897797,0.241805,0.946741,0.601903,0.0968177,0.902056,0.938258,0.164372,0.181323,0.831667,0.866063,0.0677369,0.899244,0.846238,0.996319,0.118253,0.137658,0.481968,0.615746,0.982746,0.0589188,0.358426,0.103607,0.0535072,0.613395,0.149711,0.5671,0.0959712,0.939482,0.630967,0.880468,0.104884,0.39835,0.856515,0.728115,0.0860944,0.732814,0.670115,0.877452,0.949414,0.249074,0.851063,0.328839,0.0087136,0.51337,0.166997,0.380329,0.0990557,0.0443349,0.700737,0.506679,0.0316493,0.764513,0.965064,0.191871,0.0341163,0.161136,0.631065,0.540292,0.0937348,0.815668,0.942511,0.416737,0.799876,0.0870535,0.431431,0.575394,0.64436,0.215422,0.245097,0.737657,0.746823,0.740694,0.0574106,0.535484,0.179221,0.323052,0.965254,0.789135,0.37033,0.528589,0.774303,0.787171,0.952921,0.772922,0.289001,0.879924,0.964086,0.880651,0.752307,0.284892,0.230078,0.627533,0.747544,0.204451,0.161125,0.0709953,0.87754,0.653114,0.502589,0.500528,0.684597,0.13592,0.830231,0.887136,0.643144,0.843042,0.366254,0.0678625,0.956131,0.800254,0.845294,0.840104,0.956401,0.197078,0.758524,0.265553,0.759976,0.469693,0.503135,0.458209,0.631666,0.807676,0.530437,0.746311,0.986991,0.080812,0.676725,0.960915,0.608648,0.773605,0.42349,0.584912,0.944851,0.350766,0.678089,0.634864,0.921395,0.460983,0.894927,0.409777,0.0322396,0.160805,0.554734,0.774011,0.751544,0.499553,0.364666,0.205503,0.1831,0.111593,0.107726,0.070147,0.867295,0.470326,0.846807,0.34857,0.118045,0.0794396,0.281808,0.0253857,0.23149,0.273796,0.0888245,0.246255,0.0778999,0.235274,0.591382,0.00234526,0.824396,0.699429,0.242796,0.37716,0.981138,|0.378406,0.821858,0.0597178,0.570383,0.863475,0.049602,0.336971,0.838723,0.606566,0.749001,0.872995,0.409312,0.77315,0.358285,0.0625097,0.583047,0.101322,0.649965,0.492122,0.106181,0.592083,0.727764,0.705906,0.832653,0.992663,0.681045,0.713633,0.882465,0.261713,0.477944,0.928838,0.502374,0.680618,0.427573,0.747129,0.295852,0.52972,0.152995,0.757608,0.88958,0.531328,0.580275,0.112957,0.40785,0.143173,0.999405,0.518405,0.636975,0.429372,0.620072,0.392993,0.960193,0.537901,0.739878,0.0182391,0.746245,0.222858,0.903935,0.662581,0.428435,0.405613,0.681949,0.174747,0.359111,0.607728,0.77172,0.651686,0.174314,0.380056,0.896952,0.237669,0.493723,0.448229,0.392989,0.814333,0.672539,0.547939,0.238808,0.705138,0.26645,0.195111,0.2538,0.74581,0.344724,0.238822,0.853368,0.740813,0.360044,0.719037,0.64885,0.924698,0.476173,0.473512,0.422004,0.149534,0.0696901,0.113562,0.803159,0.154615,0.0823682,0.261155,0.69638,0.68828,0.472818,0.533997,0.457003,0.672153,0.705542,0.856117,0.661747,0.129203,0.705818,0.0365964,0.618544,0.844273,0.711677,0.748913,0.459567,0.548626,0.664697,0.142092,0.539415,0.17604,0.0959381,0.682447,0.0596867,0.958476,0.41561,0.603227,0.384479,0.104561,0.440989,0.488999,0.210523,0.840737,0.982338,0.364758,0.406324,0.954253,0.901488,0.799431,0.952831,0.805433,0.74861,0.245085,0.0368559,0.135268,0.418254,0.807355,0.0945113,0.445258,0.2122,0.360142,0.22674,0.0460216,0.456144,0.748329,0.0224925,0.80016,0.126934,0.744608,0.63128,0.0258293,0.13105,0.0974537,0.960774,0.0424098,0.288363,0.489233,0.0308515,0.896665,0.00852805,0.639631,0.495257,0.726331,0.266995,0.628688,0.686558,0.876694,0.0963135,0.363002,0.396067,0.300762,0.768121,0.627096,0.786616,0.00175291,0.523229,0.751021,0.580482,0.582297,0.382497,0.273221,0.269014,0.954792,0.94236,0.249021,0.61328,0.0144676,0.304678,0.141913,0.865142,0.577374,0.673054,0.952242,0.54281,0.917271,0.929882,0.12673,0.437231,0.834187,0.0506625,0.531831,0.198011,0.166175,0.644456,0.394004,0.65021,0.405591,0.402581,0.739765,0.569688,0.0763551,0.634984,0.361865,0.251031,0.172644,0.485373,0.238523,0.0268939,0.207148,0.0267061,0.0828095,0.258472,0.360783,0.149391,0.166003,0.65009,0.939145,0.606776,0.203603,0.743608,0.552295,0.647857,0.263086,0.0422319,0.116608,0.48204,0.262775,0.338408,0.629015,0.483573,0.91782,0.729843,0.342612,0.794331,0.67533,0.341186,0.26655,0.508393,0.619599,0.845303,0.85811,0.867881,0.350825,0.698346,0.479284,0.135189,0.226952,0.430452,0.754095,0.800679,0.485,0.541356,0.644303,0.904771,0.727176,0.255002,0.984443,0.76445,0.287864,0.242074,0.329181,0.0190845,0.808282,0.903477,0.415178,0.0529234,0.353857,0.0649055,0.525324,0.909249,0.401339,0.689976,0.191819,0.897488,0.727457,0.994106,0.672554,0.601451,0.408307,0.252074,0.726568,0.396752,0.606995,0.0749311,0.664461,0.795611,0.17224,0.239981,0.298646,0.794457,0.528199,0.842237,0.444507,0.295003,0.723423,0.851349,0.171478,0.778465,0.0585421,0.0696805,0.226308,0.250427,0.322707,0.773297,0.31064,0.382707,0.343679,0.92331,0.281666,0.416541,0.418397,0.847253,0.527609,0.16948,0.360489,0.386594,0.587984,0.492861,0.315846,0.741485,0.519586,0.671114,0.52015,0.941048,0.584833,0.567681,0.688825,0.213076,0.796866,0.181917,0.732135,0.449,0.343189,0.204706,0.248186,0.167542,0.215723,0.864874,0.121543,0.747524,0.507385,0.0651467,0.745449,0.489486,0.86469,0.231416,0.404185,0.636339,0.121589,0.506695,0.0353645,0.930278,0.171428,0.841884,0.69079,0.497452,0.420639,0.57228,0.129464,0.56498,0.111112,0.441956,0.754952,0.422812,0.146002,0.270757,0.389508,0.802915,0.508881,0.54179,0.991604,0.769158,0.725878,0.0370125,0.933689,0.261129,0.618991,0.431635,0.891174,0.572422,0.722471,0.666636,0.0492377,0.690881,0.367866,0.216131,0.954556,0.680894,0.801242,0.364981,0.623554,0.718024,0.686216,0.306069,0.610865,0.156739,0.484847,0.508756,0.639529,0.260489,0.0711417,0.89461,0.537759,0.823379,0.2004,0.744342,0.831881,0.378363,0.314993,0.941182,0.8672,0.414955,0.96109,0.82275,0.216873,0.217635,0.248136,0.0759297,0.480697,0.029231,0.747966,0.738867,0.277706,0.0972502,0.128598,0.891416,0.170529,0.752295,0.287098,0.35154,0.58183,0.763814,0.312814,0.433056,0.424952,0.294548,0.170349,0.334103,0.654591,0.832578,0.292205,0.0716522,0.387349,0.708532,0.612241,0.848772,0.461999,0.0133895,0.630044,0.687378,0.117993,0.843031,0.601669,0.366441,0.243311,0.321564,0.348322,0.126408,0.704624,0.735989,0.750334,0.799905,0.394886,0.899492,0.176976,0.443884,0.144982,0.180225,0.519505,0.198652,0.583139,0.36392,0.945984,0.205172,0.818674,0.855956,0.946624,0.222666,0.15064,0.888552,0.217279,0.210391,0.74535,0.152184,0.846241,0.920616,0.666075,0.140339,0.40475,0.982001,0.937789,0.491088,0.558286,0.607214,0.414551,0.783901,0.1334,0.852917,0.655565,0.667918,0.125022,0.649381,0.0157357,0.268523,0.0229434,0.836606,0.216085,0.0951043,0.192315,0.90628,0.157094,0.649027,0.628728,0.760434,0.650589,0.110872,0.302565,0.793873,0.167154,0.211294,0.649638,0.5636,0.947731,0.986311,0.339129,0.15448,0.726708,0.748213,0.262109,0.43302,0.186228,0.865747,0.199915,0.488768,0.146784,0.264809,0.046494,0.0271919,0.360065,0.850709,0.0170616,0.245161,0.198949,0.809548,0.829496,0.870105,0.193579,0.132384,0.391797,0.0340714,0.367375,0.52881,0.311184,0.396916,0.263835,0.113855,0.668655,0.588807,0.737142,0.644935,0.472479,0.372309,0.602957,0.401699,0.240031,0.0308308,0.80539,0.496458,0.955298,0.836369,0.404222,0.67913,0.878002,0.948661,0.949052,0.661582,0.348278,0.486442,0.621299,0.266311,0.575637,0.312362,0.672981,0.757001,0.878723,0.0740163,0.545533,0.0305206,0.803398,0.252751,0.0883094,0.991551,0.83128,0.100866,0.622188,0.127532,0.874452,0.711985,0.269702,0.00340861,0.236163,0.0642122,0.44409,0.103377,0.454767,0.920928,0.189249,0.33448,0.703488,0.733894,0.418268,0.121092,0.462798,0.933943,0.489948,0.17589,0.61946,0.634081,0.0202613,0.853634,0.359597,0.845726,0.794865,0.0524935,0.155508,0.363898,0.824595,0.341317,0.23145,0.621624,0.770742,0.175761,0.484692,0.826328,0.828626,0.589674,0.393944,0.31887,0.791377,0.0337971,0.586432,0.0925408,0.502212,0.421323,0.77675,0.999625,0.783235,0.9323,0.0856035,0.96048,0.666533,0.659515,0.0848864,0.573677,0.0118198,0.119927,0.793804,0.142218,0.533655,0.131007,0.136996,0.578718,0.290801,0.859617,0.0777177,0.0362158,0.291342,0.24331,0.329215,0.238704,0.362378,0.247493,0.861412,0.45362,0.386351,0.296303,0.381398,0.768481,0.55085,0.215764,0.114216,0.340608,0.72907,0.189833,0.767429,0.0860546,0.234632,0.363878,0.0975593,0.135998,0.0552451,0.282845,0.576435,0.209907,0.291957,0.512102,0.552935,0.805499,0.22606,0.995879,0.976755,0.717679,0.817306,0.0893301,0.317425,0.0684433,0.202357,0.240857,0.292915,0.101927,0.319839,0.174664,0.637517,0.998694,0.949816,0.00800496,0.21434,0.150917,0.437196,0.421767,0.983757,0.158745,0.270326,0.441771,0.105383,0.153376,0.902149,0.68178,0.633282,0.338387,0.353497,0.826225,0.746884,0.305739,0.688235,0.901699,0.646625,0.0647836,0.284458,0.150715,0.944949,0.110279,0.810614,0.64273,0.842623,0.674446,0.00439453,0.3013,0.220179,0.222363,0.544149,0.651923,0.54479,0.329783,0.6783,0.531114,0.0181166,0.59863,0.60377,0.0222244,0.702704,0.733821,0.675069,0.26503,0.349881,0.442506,0.145425,0.780127,0.764064,0.00378299,0.660644,0.486955,0.328748,0.110917,0.68901,0.999501,0.519517,0.902548,0.718183,0.597156,0.388271,0.88225,0.535497,0.720237,0.921544,0.397945,0.0285166,0.0466998,0.664159,0.654179,0.962711,0.951225,0.518005,0.441818,0.322439,0.173305,0.502698,0.28081,0.265883,0.527346,0.425334,0.00930417,0.634379,0.128193,0.932759,0.523771,0.458868,0.328999,0.317229,0.106796,0.814896,0.866385,0.110785,0.787159,0.516906,0.548439,0.717623,0.154084,0.270711,0.325592,0.0596362,0.34553,0.781988,0.101068,0.910896,0.955345,0.92928,0.00137496,0.599637,0.536186,0.938737,0.670703,0.0728662,0.219154,0.384769,0.147656,0.215898,0.570592,0.0934118,0.514816,0.276521,0.984457,0.682863,0.248857,0.822413,0.74414,0.940751,0.441215,0.0182645,0.385087,0.515415,0.438977,0.00389856,0.937351,0.868662,0.886629,0.257544,0.751382,0.733181,0.871198,0.725886,0.372495,0.427804,0.251352,0.196049,0.0156217,0.28451,0.475138,0.611788,0.277046,0.526754,0.554931,0.936334,0.882178,0.527983,0.924853,0.862835,0.913737,0.6255,0.585084,0.534053,0.0690469,0.755564,0.034142,0.427534,0.22918,0.264953,0.889162,0.765651,0.61134,0.352242,0.214614,0.317219,0.963517,0.43691,0.0113577,0.0215157,0.572126,0.864615,0.943518,0.397143,0.187666,0.722026,0.111337,0.331339,0.567427,0.358327,0.272207,0.0856588,0.0860823,0.437599,0.59217,0.572298,0.838145,0.0456506,0.54888,0.551347,0.063522,0.64078,0.188548,0.329453,0.214217,0.445003,0.830195,0.447206,0.419064,0.279194,0.522564,0.518666,0.187125,0.0299855,0.394585,0.522163,0.58489,0.972663,0.679507,0.287387,0.296382,0.275187,0.0264055,0.701659,0.61611,0.808279,0.392883,0.75552,0.440053,0.610088,0.952284,0.65847,0.164437,0.938345,0.0542399,0.72982,0.0522349,0.658544,0.667849,0.738462,0.778109,0.425394,0.102605,0.416744,0.147986,0.86861,0.0400295,0.0587806,0.293432,0.120106,0.412677,0.5803,0.810743,0.245073,0.789758,0.55648,0.506857,0.92605,0.0330516,0.926011,0.445001,|0.0905952,0.126848,0.537276,0.25189,0.997148,0.136119,0.762026,0.668621,0.757487,0.338032,0.852426,0.995174,0.597569,0.750479,0.178031,0.571847,0.0225768,0.202534,0.937071,0.588634,0.569469,0.848604,0.237291,0.980168,0.444562,0.739624,0.555494,0.130259,0.154862,0.342649,0.579273,0.0656307,0.606211,0.483686,0.214373,0.636566,0.5911,0.500901,0.414573,0.916104,0.496061,0.103979,0.510191,0.177172,0.217452,0.424408,0.957325,0.649614,0.869357,0.0656002,0.736006,0.720847,0.753436,0.299878,0.313957,0.576561,0.300561,0.240387,0.389968,0.734607,0.416251,0.869459,0.922067,0.847903,0.684064,0.585667,0.644662,0.0115026,0.730239,0.195007,0.654562,0.530394,0.196839,0.381673,0.800051,0.661549,0.34451,0.649667,0.735186,0.866841,0.444264,0.367994,0.406052,0.379982,0.595221,0.453679,0.0670224,0.993247,0.655882,0.700397,0.0905269,0.306323,0.123561,0.346664,0.805984,0.724454,0.525887,0.455423,0.369909,0.186455,0.764582,0.215638,0.60866,0.286208,0.14631,0.823717,0.212461,0.457649,0.870356,0.23017,0.466829,0.292765,0.274737,0.253917,0.227241,0.476312,0.3716,0.11519,0.0844508,0.18117,0.119002,0.11502,0.777255,0.299191,0.297193,0.721838,0.416019,0.106947,0.250875,0.000138164,0.0853674,0.592167,0.325695,0.350063,0.876283,0.582639,0.854345,0.652771,0.86762,0.228977,0.0048244,0.59095,0.747261,0.245622,0.52353,0.600709,0.614383,0.968993,0.570566,0.287141,0.771943,0.913832,0.647554,0.788684,0.857823,0.862088,0.976786,0.822351,0.797314,0.0970165,0.0451719,0.288524,0.641886,0.641599,0.442933,0.177716,0.0780377,0.185856,0.977746,0.792528,0.310818,0.937607,0.273191,0.0625944,0.419472,0.831275,0.296232,0.448923,0.29723,0.493644,0.929888,0.442901,0.911773,0.603312,0.243146,0.975637,0.0447033,0.643904,0.990678,0.582997,0.0579349,0.26946,0.931296,0.979346,0.91328,0.57373,0.519479,0.270565,0.410411,0.63376,0.537877,0.0321229,0.158467,0.00400722,0.861048,0.758631,0.42348,0.252673,0.732687,0.938629,0.539331,0.619465,0.567948,0.191598,0.543115,0.451298,0.45919,0.315212,0.484781,0.879484,0.231922,0.904593,0.366291,0.420719,0.962355,0.548166,0.817272,0.39849,0.402656,0.765703,0.286699,0.290374,0.141782,0.282903,0.146693,0.829464,0.02894,0.207788,0.0198461,0.776612,0.225948,0.211289,0.796439,0.633752,0.215454,0.307053,0.974109,0.949687,0.690607,0.141017,0.218228,0.488686,0.778343,0.664515,0.00741738,0.0476692,0.878767,0.646133,0.497938,0.00571501,0.0822803,0.829218,0.586713,0.976876,0.5177,0.15043,0.260862,0.0565121,0.974629,0.851436,0.619601,0.208232,0.811342,0.73789,0.968825,0.480835,0.49913,0.489432,0.796787,0.786191,0.797168,0.188494,0.22518,0.861827,0.239889,0.83242,0.441225,0.294132,0.411128,0.780342,0.681892,0.907963,0.642283,0.794412,0.354465,0.671025,0.390392,0.812606,0.946105,0.169703,0.164773,0.294397,0.217727,0.51968,0.599104,0.244347,0.57016,0.835693,0.394522,0.844126,0.969502,0.146864,0.0350137,0.529236,0.310117,0.535334,0.393403,0.77155,0.99076,0.296076,0.0302415,0.926373,0.503775,0.775774,0.544883,0.264539,0.743573,0.960619,0.297963,0.400774,0.656079,0.0146405,0.00291264,0.354475,0.316533,0.647432,0.907481,0.180383,0.779712,0.504584,0.3953,0.00505435,0.771717,0.819887,0.356398,0.985263,0.0486035,0.198741,0.0998524,0.945232,0.115833,0.965815,0.101299,0.437969,0.575361,0.194397,0.343103,0.543174,0.833491,0.107297,0.274366,0.19832,0.410637,0.602807,0.398161,0.904015,0.400771,0.507462,0.372436,0.0478314,0.59681,0.75773,0.326573,0.50204,0.618476,0.606453,0.430201,0.540809,0.888653,0.20005,0.0856654,0.603779,0.604634,0.615048,0.848231,0.99199,0.188944,0.93694,0.298268,0.587932,0.0736154,0.955383,0.453345,0.891826,0.304941,0.679409,0.889216,0.70023,0.683187,0.0377435,0.81219,0.978026,0.882526,0.173527,0.0145327,0.999353,0.548676,0.640944,0.0627648,0.263506,0.188218,0.0495407,0.155026,0.372843,0.719635,0.701971,0.0103457,0.240627,0.498786,0.615408,0.910897,0.014533,0.433248,0.593409,0.870598,0.254289,0.834487,0.0171395,0.872617,0.734449,0.588811,0.69844,0.08586,0.877809,0.288437,0.512609,0.505299,0.535843,0.870094,0.396609,0.303833,0.871444,0.963308,0.479622,0.236656,0.894985,0.731093,0.24851,0.71135,0.928711,0.552472,0.480223,0.338493,0.324843,0.769383,0.30269,0.0105581,0.345324,0.843392,0.214629,0.158291,0.037389,0.83251,0.0175928,0.358155,0.459002,0.816775,0.568051,0.701334,0.495359,0.688622,0.00992787,0.174186,0.312706,0.16611,0.605745,0.0136674,0.947809,0.0115945,0.653419,0.362545,0.565503,0.230746,0.383019,0.368633,0.916956,0.551939,0.105029,0.119246,0.917014,0.500719,0.691596,0.297683,0.679394,0.886287,0.0724699,0.753293,0.658823,0.474276,0.245902,0.210469,0.326473,0.820103,0.115451,0.529354,0.29529,0.234217,0.780272,0.489384,0.726618,0.487489,0.49113,0.340572,0.948294,0.219263,0.876524,0.0572398,0.712,0.417655,0.503076,0.183002,0.77706,0.988337,0.350011,0.685415,0.430331,0.862399,0.583507,0.786331,0.759136,0.340034,0.817689,0.107188,0.207574,0.469953,0.357925,0.961235,0.26063,0.109376,0.583718,0.744174,0.901089,0.888144,0.703217,0.142369,0.663558,0.658709,0.0997841,0.142532,0.363093,0.891125,0.259934,0.882631,0.447331,0.638058,0.691895,0.461255,0.948038,0.969533,0.290605,0.5398,0.903369,0.324198,0.826943,0.61249,0.343692,0.0998354,0.156477,0.264892,0.350501,0.909904,0.479259,0.0261093,0.451863,0.692644,0.865158,0.369841,0.734446,0.503851,0.0427684,0.339453,0.444593,0.680334,0.401778,0.896438,0.772228,0.096782,0.345624,0.244767,0.811115,0.00258517,0.984374,0.0639001,0.736881,0.350714,0.772467,0.22597,0.288218,0.150312,0.859066,0.895383,0.750677,0.332281,0.627987,0.0377323,0.92741,0.451844,0.359319,0.215951,0.764261,0.132162,0.687804,0.657651,0.947617,0.434902,0.545974,0.159622,0.21137,0.23417,0.58027,0.29271,0.938539,0.377161,0.289862,0.92016,0.766726,0.886187,0.503938,0.499287,0.609472,0.454196,0.76735,0.685489,0.0440418,0.855122,0.177314,0.467025,0.544254,0.806881,0.0795847,0.638758,0.943221,0.627793,0.82563,0.834509,0.949033,0.0467761,0.238997,0.384002,0.873943,0.179622,0.678704,0.607446,0.831476,0.150941,0.524635,0.0382568,0.128186,0.0782208,0.603792,0.210957,0.811065,0.442504,0.545761,0.323369,0.456615,0.564902,0.766012,0.839802,0.206112,0.366826,0.277341,0.980419,0.223911,0.354348,0.973378,0.52891,0.383333,0.440205,0.580593,0.0262254,0.939399,0.344934,0.713233,0.731724,0.120811,0.982455,0.523781,0.677314,0.13154,0.211746,0.307409,0.376138,0.498729,0.0757149,0.707154,0.501691,0.18442,0.679996,0.70177,0.583557,0.106154,0.864546,0.452571,0.581211,0.978642,0.383862,0.528961,0.147191,0.414434,0.978058,0.934614,0.835502,0.547534,0.234856,0.821347,0.255827,0.580281,0.531326,0.897892,0.116312,0.465259,0.734087,0.885791,0.611732,0.980877,0.207992,0.150953,0.613819,0.259255,0.123737,0.615428,0.785515,0.193828,0.999215,0.134658,0.396559,0.225068,0.107309,0.895674,0.955811,0.301532,0.351632,0.612996,0.97208,0.299715,0.172155,0.356472,0.846651,0.666626,0.53922,0.0100172,0.570602,0.141977,0.93606,0.102567,0.490952,0.0928649,0.654884,0.16522,0.235763,0.857684,0.250971,0.388329,0.899222,0.591121,0.747963,0.581149,0.901024,0.624926,0.0621784,0.482314,0.266912,0.85097,0.915199,0.469513,0.802457,0.394316,0.194992,0.643666,0.873045,0.794796,0.949355,0.482663,0.732023,0.00214279,0.232327,0.284139,0.886524,0.873556,0.540645,0.301949,0.817909,0.640654,0.330709,0.443232,0.768797,0.234133,0.816384,0.118818,0.704533,0.80541,0.755207,0.0164775,0.271594,0.0442374,0.0516502,0.268412,0.730336,0.719408,0.40273,0.718745,0.843754,0.999556,0.403191,0.00544339,0.919007,0.349621,0.783175,0.520816,0.851714,0.97462,0.717471,0.564444,0.271982,0.149844,0.728513,0.169829,0.464781,0.718428,0.871746,0.87854,0.597027,0.255112,0.706353,0.627029,0.678868,0.141473,0.0203669,0.233947,0.14099,0.150151,0.897096,0.428342,0.406088,0.382351,0.346916,0.558178,0.761902,0.815904,0.385169,0.0324326,0.206485,0.68302,0.80302,0.526382,0.0190743,0.914553,0.322107,0.60804,0.198789,0.96809,0.16641,0.68022,0.361148,0.887349,0.354625,0.543407,0.0256767,0.35983,0.851394,0.434442,0.499605,0.300676,0.985214,0.0217983,0.0420784,0.747304,0.930461,0.523418,0.580346,0.612083,0.173152,0.302774,0.34161,0.157491,0.634833,0.384411,0.238844,0.931966,0.0808254,0.797052,0.720304,0.539387,0.534078,0.600823,0.38536,0.994819,0.0399573,0.897736,0.872973,0.824831,0.0934013,0.510586,0.052261,0.888408,0.782593,0.892943,0.641534,0.660618,0.0501051,0.131017,0.9928,0.933952,0.746406,0.415569,0.492403,0.779333,0.839822,0.0485889,0.633175,0.557125,0.911756,0.544601,0.0520231,0.589068,0.379498,0.329129,0.876189,0.0412009,0.271528,0.326924,0.860683,0.310067,0.398014,0.743416,0.497244,0.0825912,0.87226,0.0619574,0.558169,0.259206,0.431016,0.094834,0.561646,0.296971,0.505857,0.907658,0.454818,0.436286,0.135251,0.728296,0.152512,0.613011,0.656937,0.467001,0.386884,0.713205,0.995903,0.61255,0.50791,0.62517,0.497391,0.915189,0.838801,0.411057,0.503748,0.330762,0.930951,0.320757,0.990323,0.479804,0.547655,0.582901,0.710047,0.573204,0.0549746,0.960701,0.457832,0.177016,0.71127,0.385794,0.0512323,0.379351,0.522519,0.0620139,0.715129,0.061265,0.926273,0.510821,0.407266,0.908529,0.116781,0.41429,0.259841,0.0886743,0.920807,0.971732,0.828227,0.853561,|0.461999,0.59749,0.473979,0.336086,0.795014,0.959787,0.926618,0.374053,0.181068,0.311366,0.46582,0.434891,0.050508,0.635536,0.748391,0.755713,0.076366,0.0071978,0.00865966,0.661251,0.272646,0.568431,0.672048,0.430064,0.468388,0.0609169,0.875177,0.218377,0.695231,0.297403,0.708977,0.432988,0.73194,0.949517,0.275146,0.752458,0.0651329,0.0537748,0.385526,0.150196,0.55403,0.678927,0.486198,0.52818,0.842859,0.612803,0.863365,0.925834,0.0176308,0.765825,0.97788,0.0690374,0.373771,0.601272,0.801794,0.295501,0.140622,0.102172,0.450763,0.786092,0.0390227,0.253315,0.30737,0.508045,0.781042,0.938272,0.522788,0.872662,0.581585,0.834518,0.904716,0.198441,0.0614104,0.632009,0.783075,0.465137,0.535466,0.267194,0.0331935,0.641714,0.0789282,0.795446,0.27129,0.940986,0.0981084,0.182799,0.791052,0.0234286,0.597565,0.616317,0.340608,0.0375847,0.603248,0.401579,0.429012,0.539889,0.471198,0.0624924,0.41045,0.682914,0.370302,0.264578,0.333346,0.157287,0.355005,0.254226,0.284128,0.79032,0.146751,0.383845,0.413263,0.221906,0.842813,0.0465263,0.451825,0.22073,0.34241,0.00974929,0.885464,0.769894,0.478625,0.462669,0.528156,0.832787,0.697251,0.466042,0.127984,0.420712,0.35165,0.0472136,0.304635,0.338711,0.686365,0.514555,0.926728,0.115984,0.913481,0.640908,0.239062,0.553947,0.99149,0.982062,0.957151,0.915859,0.60658,0.450323,0.551789,0.852995,0.347579,0.424721,0.882029,0.219825,0.700227,0.235808,0.793907,0.165416,0.24399,0.12411,0.563254,0.887356,0.733127,0.934486,0.974626,0.832411,0.362076,0.804818,0.197165,0.146362,0.596234,0.309667,0.409709,0.777031,0.274958,0.465652,0.882273,0.771225,0.514374,0.610362,0.845412,0.617769,0.722503,0.981402,0.722798,0.0575988,0.520854,0.313978,0.61079,0.925186,0.427435,0.468232,0.412039,0.219438,0.985918,0.820024,0.00415587,0.883615,0.597254,0.0934715,0.558583,0.524662,0.822508,0.589236,0.873316,0.466149,0.470654,0.0818241,0.723235,0.048191,0.739431,0.346262,0.172011,0.618101,0.907157,0.888385,0.640872,0.988941,0.842155,0.524456,0.21923,0.12417,0.245365,0.216435,0.193462,0.160672,0.87249,0.659583,0.793931,0.057839,0.0603486,0.491136,0.911443,0.934216,0.248768,0.962867,0.177355,0.788255,0.796112,0.34954,0.592232,0.329511,0.0988984,0.528457,0.394988,0.386773,0.149622,0.755489,0.319261,0.902195,0.256106,0.794987,0.66262,0.664954,0.00746596,0.698412,0.0727568,0.586516,0.171038,0.337237,0.109177,0.933721,0.997971,0.988996,0.614692,0.578284,0.497199,0.862861,0.351616,0.0487517,0.646495,0.511225,0.928833,0.627896,0.214836,0.547792,0.596864,0.369854,0.657312,0.350082,0.14042,0.855806,0.343837,0.280227,0.468548,0.0315939,0.852051,0.702025,0.267724,0.0455151,0.39843,0.207188,0.0717502,0.985741,0.728786,0.908859,0.392001,0.0981454,0.379261,0.933971,0.89858,0.720638,0.402627,0.950902,0.557119,0.633663,0.54218,0.837997,0.965896,0.938868,0.346274,0.947927,0.528857,0.271677,0.0484714,0.30127,0.129787,0.33667,0.510788,0.064005,0.719105,0.558677,0.5574,0.649999,0.173734,0.997969,0.266891,0.379401,0.193997,0.90994,0.511963,0.461509,0.0308884,0.0819814,0.282465,0.581705,0.208092,0.63278,0.13233,0.0304361,0.74505,0.415564,0.17056,0.182976,0.358533,0.456376,0.919654,0.983602,0.351431,0.732532,0.338578,0.193573,0.826811,0.306218,0.125662,0.602584,0.382365,0.332005,0.203259,0.843363,0.681911,0.38873,0.192107,0.562022,0.122391,0.257631,0.862433,0.160578,0.730268,0.0898422,0.522952,0.10485,0.872858,0.776655,0.400661,0.00222307,0.326894,0.764964,0.351092,0.624773,0.696923,0.505346,0.0645416,0.565454,0.820031,0.725495,0.858094,0.234943,0.882165,0.861759,0.194001,0.0134026,0.730941,0.812315,0.437059,0.0609783,0.583894,0.344397,0.0970004,0.175951,0.272916,0.00666684,0.0529505,0.493941,0.0207759,0.312256,0.232312,0.180476,0.0133752,0.522915,0.987021,0.351707,0.145237,0.767114,0.121149,0.0720277,0.565762,0.0320562,0.502091,0.696724,0.899179,0.133061,0.176524,0.324022,0.753989,0.0806111,0.961137,0.872111,0.367548,0.663216,0.334605,0.318926,0.682311,0.987083,0.449614,0.155482,0.954782,0.90336,0.84662,0.429858,0.741516,0.629585,0.260139,0.558033,0.852386,0.59706,0.813,0.386661,0.281439,0.382529,0.251318,0.643931,0.696146,0.273324,0.649072,0.948426,0.507243,0.520055,0.686342,0.874645,0.112469,0.614863,0.100413,0.657165,0.0740181,0.801255,0.20466,0.492513,0.45058,0.293634,0.48932,0.0987448,0.253816,0.646731,0.160324,0.778997,0.503998,0.761811,0.564262,0.836076,0.615774,0.735285,0.620645,0.694621,0.160337,0.295534,0.191961,0.919955,0.620552,0.0851591,0.301867,0.402259,0.631171,0.202832,0.146651,0.85994,0.316618,0.212475,0.489829,0.444842,0.172816,0.483739,0.930362,0.29963,0.42011,0.540824,0.704424,0.308861,0.899731,0.95941,0.926019,0.590338,0.549496,0.537382,0.738535,0.314016,0.54513,0.348253,0.673558,0.230398,0.59055,0.34055,0.192925,0.0564438,0.754219,0.485607,0.660062,0.0926304,0.924524,0.0297758,0.578285,0.807979,0.189383,0.804306,0.991553,0.663319,0.672892,0.327433,0.536735,0.416984,0.151517,0.455479,0.55476,0.0738799,0.506384,0.206452,0.758593,0.627582,0.433085,0.773715,0.941298,0.834818,0.225258,0.263839,0.952879,0.455873,0.159312,0.250255,0.884167,0.124868,0.00428057,0.237743,0.410581,0.0747212,0.926844,0.315464,0.372083,0.576849,0.673925,0.257211,0.413872,0.265861,0.828386,0.627663,0.149053,0.173662,0.660985,0.00808775,0.602704,0.378686,0.429084,0.711748,0.367675,0.764168,0.763629,0.330739,0.0546672,0.694918,0.143834,0.644499,0.772716,0.732408,0.351704,0.0225633,0.0301504,0.628176,0.0638756,0.869358,0.201679,0.540404,0.943915,0.377864,0.28677,0.185605,0.124352,0.351141,0.476909,0.536974,0.686467,0.39786,0.136495,0.605503,0.481233,0.448591,0.628702,0.805748,0.895394,0.621892,0.504785,0.529083,0.534378,0.688939,0.477209,0.125023,0.60259,0.547392,0.806471,0.208619,0.907632,0.544758,0.594391,0.601517,0.737382,0.887475,0.27758,0.8455,0.12895,0.94863,0.708074,0.368201,0.172246,0.410079,0.306071,0.562999,0.361806,0.00593394,0.837196,0.549339,0.686915,0.846002,0.240497,0.572024,0.770639,0.301112,0.753182,0.082609,0.106338,0.798439,0.404665,0.826417,0.00678676,0.837872,0.447131,0.961787,0.607821,0.652812,0.461885,0.0618568,0.141274,0.532202,0.623374,0.338911,0.0507349,0.180969,0.414899,0.750334,0.325667,0.121459,0.109535,0.142082,0.421349,0.00485414,0.523417,0.0974135,0.929333,0.915409,0.0206483,0.275691,0.77492,0.715096,0.86503,0.884698,0.539517,0.526622,0.564745,0.378639,0.4755,0.0900062,0.119522,0.0966927,0.0358328,0.238461,0.467367,0.99555,0.756613,0.773494,0.844531,0.436333,0.252994,0.849188,0.397126,0.859603,0.391343,0.569196,0.993749,0.713363,0.0310196,0.10794,0.175434,0.729475,0.0527129,0.0810778,0.658599,0.199352,0.0783111,0.668064,0.15324,0.443748,0.0766104,0.545752,0.232997,0.385597,0.125621,0.25434,0.459326,0.0907256,0.292276,0.630705,0.00528526,0.088357,0.403137,0.610789,0.275873,0.11912,0.302194,0.461818,0.812321,0.395183,0.553587,0.263243,0.324921,0.951831,0.814808,0.942246,0.142765,0.705853,0.191107,0.699581,0.38869,0.145957,0.440165,0.914697,0.352237,0.839172,0.330439,0.147911,0.939199,0.259385,0.808007,0.352908,0.0778283,0.755463,0.017027,0.242068,0.659067,0.166316,0.558695,0.237299,0.899577,0.0563284,0.19082,0.302506,0.981326,0.887543,0.350769,0.645521,0.343103,0.907111,0.111574,0.0381423,0.483473,0.961612,0.730037,0.343091,0.513373,0.245874,0.401177,0.287295,0.808811,0.486602,0.475458,0.828277,0.835587,0.635777,0.895441,0.673757,0.847215,0.681231,0.734588,0.312404,0.0134206,0.512911,0.152737,0.933931,0.209132,0.429883,0.367165,0.167813,0.233342,0.228758,0.11095,0.521613,0.252153,0.628168,0.249334,0.0118988,0.811936,0.161882,0.682533,0.688572,0.835915,0.829224,0.11592,0.502519,0.534436,0.783348,0.156085,0.110895,0.623503,0.262788,0.976882,0.541042,0.427819,0.732971,0.45714,0.11828,0.785381,0.233519,0.790824,0.305146,0.334047,0.456375,0.332487,0.644235,0.0130458,0.584514,0.10637,0.241935,0.591995,0.520716,0.52884,0.43864,0.00404269,0.317027,0.983326,0.113937,0.653086,0.345717,0.843241,0.306814,0.178857,0.894811,0.351464,0.696266,0.720081,0.117586,0.425848,0.767817,0.0378538,0.966694,0.121667,0.332323,0.776136,0.274953,0.604133,0.520211,0.772183,0.756039,0.123341,0.237497,0.660881,0.570229,0.766271,0.877486,0.65723,0.225178,0.591841,0.221105,0.545679,0.549167,0.517266,0.239757,0.180408,0.188656,0.963086,0.695523,0.896673,0.332426,0.983279,0.143726,0.211977,0.0351133,0.0216596,0.977476,0.380744,0.0966773,0.661677,0.979728,0.288312,0.644292,0.833237,0.463771,0.56759,0.0821157,0.420292,0.103232,0.885623,0.185999,0.0196179,0.337274,0.995407,0.902468,0.362977,0.308947,0.905526,0.0937052,0.621464,0.0260616,0.580297,0.881139,0.599425,0.556498,0.110322,0.736661,0.132438,0.910973,0.717935,0.326719,0.222846,0.362519,0.621753,0.413323,0.0455339,0.692252,0.32468,0.923001,0.320184,0.277409,0.6129,0.132927,0.570218,0.937871,0.349509,0.159074,0.820193,0.164288,0.927065,0.326038,0.822577,0.14447,0.0154306,0.273133,0.150546,0.93436,0.573357,0.207898,0.392817,0.592832,0.570546,0.351873,0.864629,0.232483,0.909016,0.325367,0.271038,0.965249,0.0954694,0.768607,0.733796,0.164836,0.375059,0.0827843,0.651473,0.218814,0.0554355,0.169303,0.997364,0.454845,0.692693,0.0676134,0.578772,0.630724,|0.164507,0.249544,0.354931,0.502394,0.43467,0.200549,0.435981,0.503071,0.120928,0.951284,0.310904,0.535369,0.586608,0.496493,0.639359,0.863506,0.47859,0.138097,0.440929,0.563949,0.627065,0.0605586,0.756303,0.98377,0.875109,0.291655,0.415787,0.339348,0.0896869,0.926032,0.810238,0.889033,0.270886,0.33419,0.111942,0.63746,0.52385,0.511805,0.822085,0.0126128,0.410999,0.0617936,0.651929,0.799881,0.320166,0.100699,0.165223,0.441164,0.622983,0.74907,0.488003,0.116952,0.214869,0.889835,0.386142,0.729063,0.675806,0.512073,0.195194,0.80009,0.65058,0.626544,0.181197,0.706698,0.701076,0.913486,0.692384,0.264387,0.0495191,0.0120203,0.322702,0.362557,0.791383,0.636532,0.399389,0.956251,0.0398274,0.14696,0.727945,0.597665,0.894627,0.123152,0.17687,0.6977,0.678836,0.791068,0.695653,0.554162,0.212506,0.494206,0.499665,0.932064,0.308416,0.379433,0.811007,0.367321,0.568647,0.976203,0.935539,0.0233861,0.111379,0.799307,0.620188,0.0946352,0.0090304,0.0652753,0.931794,0.346317,0.952627,0.0796967,0.923041,0.408791,0.632919,0.630167,0.29963,0.804981,0.358163,0.226247,0.983388,0.680415,0.362924,0.209521,0.676202,0.287485,0.565798,0.895363,0.19117,0.43786,0.56943,0.608917,0.258793,0.46767,0.765404,0.705783,0.846025,0.468566,0.544699,0.0222119,0.898249,0.159005,0.926759,0.574506,0.572771,0.152511,0.293342,0.719738,0.912369,0.431368,0.778608,0.956887,0.208455,0.835433,0.428563,0.791079,0.646161,0.190179,0.68934,0.0469093,0.77929,0.49046,0.569442,0.41809,0.0356614,0.0479991,0.808458,0.229596,0.002729,0.586194,0.328901,0.0598333,0.420511,0.187869,0.693485,0.861936,0.729576,0.812334,0.807054,0.421712,0.232531,0.313617,0.35587,0.850463,0.45663,0.780515,0.948392,0.696705,0.522241,0.102652,0.779437,0.465103,0.572984,0.944429,0.738959,0.94923,0.501134,0.340198,0.368307,0.196626,0.0434608,0.241704,0.72156,0.811113,0.0791773,0.48043,0.470541,0.0907979,0.243871,0.427954,0.755965,0.431227,0.5581,0.558282,0.028733,0.614253,0.415154,0.643856,0.619393,0.476469,0.975742,0.539798,0.90739,0.901701,0.918191,0.823371,0.289855,0.197573,0.141275,0.760285,0.116425,0.649015,0.124527,0.54181,0.91017,0.348746,0.339121,0.525402,0.335964,0.581751,0.622405,0.440675,0.532324,0.0609164,0.989278,0.881037,0.203176,0.378867,0.251718,0.567744,0.849534,0.730893,0.862195,0.931269,0.12941,0.440644,0.756088,0.0806155,0.476849,0.535899,0.408552,0.362834,0.492912,0.643444,0.6625,0.487049,0.0522998,0.412147,0.605991,0.182965,0.630653,0.228069,0.930357,0.296838,0.388144,0.540064,0.745259,0.197883,0.834909,0.778041,0.908042,0.280477,0.814326,0.508789,0.84826,0.754003,0.0439583,0.909858,0.191813,0.54954,0.553357,0.478709,0.559781,0.182083,0.0272003,0.899163,0.423121,0.896977,0.615643,0.809011,0.813228,0.573664,0.580106,0.11103,0.614567,0.959202,0.802345,0.255091,0.429271,0.629229,0.489863,0.375208,0.251859,0.763762,0.0885126,0.452905,0.422989,0.384729,0.137767,0.215091,0.313416,0.239967,0.00410646,0.704805,0.430215,0.339789,0.642177,0.634282,0.590329,0.882057,0.295224,0.642101,0.708556,0.854479,0.12756,0.307632,0.258347,0.181243,0.894086,0.24168,0.780236,0.38912,0.516009,0.779154,0.722448,0.258409,0.395673,0.16781,0.711148,0.728569,0.0586407,0.142458,0.682554,0.357156,0.748755,0.236144,0.305749,0.845312,0.203085,0.405632,0.30608,0.104164,0.985222,0.440417,0.695448,0.0958446,0.163652,0.727826,0.0119069,0.778227,0.695798,0.798201,0.397608,0.843259,0.519971,0.491581,0.0563866,0.71442,0.421603,0.0461243,0.0718276,0.808042,0.812185,0.739497,0.0464451,0.62247,0.513349,0.49217,0.725368,0.924295,0.815877,0.187491,0.733786,0.127796,0.531203,0.969661,0.845225,0.368498,0.364928,0.926864,0.101262,0.470714,0.933389,0.986459,0.468258,0.998412,0.475607,0.107588,0.451276,0.462187,0.0326954,0.916229,0.0762494,0.860556,0.82071,0.0183977,0.831248,0.255813,0.319801,0.807268,0.288908,0.405517,0.529281,0.468865,0.415827,0.0719823,0.655946,0.282245,0.780102,0.99628,0.905782,0.548085,0.774614,0.909151,0.873945,0.903285,0.844913,0.161823,0.43589,0.434479,0.571325,0.900111,0.964009,0.464492,0.32321,0.367085,0.487322,0.241105,0.941101,0.852406,0.139711,0.0976233,0.563616,0.472394,0.441974,0.613355,0.138766,0.81688,0.0730489,0.160137,0.581304,0.283865,0.456164,0.612606,0.867847,0.209998,0.989463,0.14245,0.483415,0.300175,0.722204,0.373444,0.836949,0.469326,0.0402602,0.0934358,0.168873,0.173954,0.9414,0.859999,0.0129597,0.976759,0.16571,0.108433,0.50446,0.632674,0.606175,0.0977707,0.758911,0.306034,0.107943,0.198654,0.313481,0.362766,0.0866277,0.928716,0.986745,0.914514,0.571855,0.584104,0.158293,0.575935,0.822004,0.786572,0.00367171,0.994734,0.718371,0.339694,0.816333,0.422221,0.377728,0.829338,0.872152,0.746721,0.218144,0.569019,0.382984,0.188836,0.845109,0.145615,0.969802,0.825608,0.858186,0.238057,0.137322,0.567794,0.447888,0.244371,0.813751,0.852066,0.443487,0.596554,0.662408,0.301269,0.319495,0.497958,0.427439,0.238307,0.470741,0.748677,0.424259,0.741669,0.628935,0.727398,0.0855002,0.962231,0.5337,0.726592,0.19403,0.60347,0.0362585,0.70825,0.74903,0.55978,0.869321,0.0865272,0.620016,0.444595,0.0891697,0.684692,0.354142,0.272868,0.530564,0.761055,0.81659,0.490648,0.262556,0.625926,0.632823,0.415252,0.769464,0.78061,0.960452,0.169183,0.0590689,0.23317,0.942092,0.0242456,0.97236,0.47454,0.763712,0.695214,0.861499,0.219274,0.777819,0.123285,0.495313,0.346135,0.481237,0.0902508,0.527816,0.235335,0.655375,0.776151,0.123985,0.545045,0.204837,0.986949,0.986085,0.570916,0.813114,0.251172,0.588984,0.563613,0.062104,0.8273,0.337789,0.311219,0.513515,0.0119979,0.982164,0.607504,0.47523,0.438506,0.0488386,0.211909,0.76272,0.00281096,0.492269,0.204955,0.503912,0.436888,0.746015,0.892999,0.335542,0.272852,0.622764,0.946722,0.878211,0.663781,0.768025,0.362947,0.167495,0.546522,0.431599,0.840012,0.520521,0.553286,0.538746,0.613293,0.920984,0.668017,0.483802,0.840544,0.708898,0.961502,0.252717,0.487059,0.178112,0.417141,0.945761,0.0643705,0.373222,0.443482,0.383416,0.558098,0.724185,0.99154,0.839866,0.948303,0.00385725,0.612354,0.154859,0.658812,0.350199,0.637228,0.781759,0.405593,0.867182,0.834015,0.877949,0.516147,0.968508,0.262765,0.123481,0.579847,0.266316,0.6171,0.982341,0.190292,0.502389,0.172978,0.641671,0.741917,0.250224,0.717183,0.13507,0.794765,0.338005,0.0663891,0.0118573,0.968277,0.208552,0.852196,0.673634,0.60263,0.0113603,0.812667,0.0852205,0.560981,0.119065,0.366453,0.507028,0.531249,0.432634,0.490825,0.331761,0.501109,0.543942,0.79343,0.323681,0.698662,0.736059,0.127732,0.558167,0.909376,0.397212,0.610556,0.52242,0.429235,0.82826,0.531175,0.713681,0.824996,0.559037,0.8683,0.689849,0.592215,0.277481,0.610222,0.992711,0.289261,0.571047,0.854324,0.848824,0.769694,0.129427,0.992742,0.733674,0.0719905,0.125088,0.881442,0.0329944,0.961746,0.328966,0.76582,0.177539,0.977237,0.909021,0.817236,0.995441,0.0851438,0.823281,0.370778,0.156666,0.441276,0.0445433,0.654383,0.664904,0.132093,0.051405,0.540881,0.854106,0.858072,0.28974,0.216403,0.554614,0.921271,0.770691,0.659924,0.613296,0.988805,0.556112,0.928936,0.829413,0.908872,0.977862,0.448061,0.290303,0.810594,0.696867,0.432863,0.867027,0.639084,0.0363065,0.389443,0.441009,0.270971,0.439794,0.361465,0.599139,0.461808,0.0928367,0.488503,0.00219041,0.760529,0.194594,0.641526,0.686537,0.46774,0.0463096,0.793668,0.484425,0.416536,0.431346,0.0340726,0.325381,0.251164,0.165504,0.833022,0.171477,0.693691,0.87175,0.754111,0.0584068,0.39393,0.363909,0.919756,0.875495,0.435789,0.63281,0.744043,0.305794,0.515907,0.935617,0.954758,0.0764405,0.335041,0.210047,0.876925,0.395833,0.356232,0.239517,0.536241,0.97845,0.126292,0.679737,0.0562582,0.760539,0.463584,0.234946,0.0557459,0.786618,0.876896,0.388152,0.0221395,0.0708761,0.178092,0.0813097,0.315842,0.789781,0.188981,0.936803,0.363149,0.929229,0.891034,0.497563,0.870607,0.848675,0.474591,0.0407547,0.825859,0.268424,0.157363,0.798476,0.95792,0.163202,0.063551,0.120177,0.141242,0.799197,0.323881,0.686394,0.54403,0.089821,0.694553,0.301833,0.717469,0.56661,0.67225,0.785597,0.350284,0.526523,0.251585,0.0871142,0.548205,0.205019,0.0489575,0.195704,0.148474,0.520143,0.178483,0.462596,0.535664,0.579799,0.189076,0.105815,0.601327,0.527456,0.80029,0.186394,0.828218,0.853693,0.148754,0.188685,0.583991,0.306464,0.0541341,0.397013,0.322216,0.346875,0.663177,0.623556,0.529722,0.496581,0.22999,0.354477,0.606721,0.0920509,0.486651,0.0692873,0.932576,0.230074,0.441275,0.698405,0.873589,0.779002,0.83026,0.0608076,0.0902714,0.426154,0.419281,0.532947,0.354315,0.379816,0.380505,0.538487,0.395445,0.562119,0.246555,0.582974,0.858218,0.248223,0.487306,0.0336327,0.947083,0.61453,0.339931,0.489745,0.69745,0.064913,0.549966,0.303799,0.00422257,0.378823,0.455319,0.0247633,0.968745,0.396869,0.405752,0.879819,0.681595,0.523849,0.6285,0.0895112,0.230574,0.209281,0.973076,0.155164,0.757114,0.312228,0.315421,0.846398,0.800628,0.431414,0.540767,0.344976,0.0455395,0.228858,0.996664,0.796217,0.71107,0.380897,0.429664,0.889483,0.618018,0.209892,0.78345,0.634947,0.542818,0.477867,0.961958,0.959479,0.1537,0.945076,0.896551,0.23288,0.860406,0.823758,0.396008,0.645141,0.278237,|0.396044,0.622773,0.948364,0.0619402,0.0256642,0.887221,0.3377,0.0814576,0.210901,0.847696,0.185527,0.305361,0.361716,0.967071,0.95422,0.285978,0.724681,0.0510136,0.963542,0.292372,0.898435,0.190987,0.336007,0.0954311,0.351889,0.629707,0.843667,0.667282,0.309847,0.680758,0.789443,0.806155,0.495032,0.695929,0.0428963,0.937314,0.0292538,0.513261,0.00493878,0.0669747,0.321672,0.221589,0.831964,0.391123,0.646754,0.102454,0.36262,0.779765,0.522052,0.784506,0.0247168,0.329865,0.0796127,0.03316,0.725678,0.586416,0.251918,0.747353,0.933123,0.533111,0.405971,0.661975,0.126642,0.71087,0.839856,0.317028,0.808644,0.763237,0.469269,0.605337,0.0821017,0.867455,0.641091,0.696929,0.913007,0.627549,0.645363,0.370296,0.202531,0.556542,0.567361,0.519414,0.532817,0.874117,0.022624,0.23687,0.326107,0.912272,0.102619,0.0781434,0.552386,0.0971604,0.978862,0.244278,0.988736,0.264871,0.407254,0.853826,0.2627,0.997118,0.289253,0.314422,0.0635906,0.819347,0.356415,0.403954,0.441923,0.599665,0.507172,0.469504,0.255559,0.385529,0.442742,0.904298,0.296663,0.251306,0.324877,0.931512,0.548375,0.355863,0.710854,0.940245,0.617582,0.671972,0.907694,0.889653,0.0342477,0.209332,0.996643,0.46354,0.918239,0.292777,0.935157,0.0589846,0.934542,0.785408,0.931903,0.667399,0.281029,0.573402,0.557981,0.1439,0.0450614,0.286763,0.00758767,0.786593,0.516431,0.533006,0.273422,0.411552,0.441201,0.19769,0.451711,0.886815,0.347555,0.521828,0.48125,0.606547,0.0125341,0.225561,0.449771,0.689678,0.459395,0.0244836,0.589781,0.0128613,0.376719,0.108839,0.919062,0.464247,0.927758,0.925005,0.109844,0.99437,0.935107,0.730691,0.208914,0.519935,0.914936,0.561327,0.748827,0.567949,0.166237,0.252681,0.930738,0.904394,0.859396,0.419518,0.0227907,0.688588,0.000814795,0.912045,0.185535,0.45271,0.668292,0.244791,0.95656,0.86712,0.173275,0.0344732,0.953357,0.0925236,0.803672,0.0281953,0.648606,0.560455,0.44853,0.267018,0.875199,0.623156,0.808153,0.690901,0.953361,0.855697,0.183283,0.63897,0.433899,0.692325,0.269198,0.640282,0.853248,0.489389,0.493727,0.777442,0.364323,0.669167,0.597467,0.792324,0.953878,0.837049,0.100756,0.794314,0.671351,0.100499,0.864179,0.695994,0.718601,0.134815,0.81665,0.900845,0.981958,0.957978,0.819533,0.475747,0.722254,0.674061,0.948791,0.125069,0.779934,0.0802563,0.786023,0.55949,0.00643581,0.390884,0.620122,0.475956,0.0112333,0.547432,0.747926,0.950175,0.968728,0.619526,0.120985,0.148815,0.661434,0.403328,0.0516984,0.767508,0.448644,0.168097,0.0177867,0.927972,0.980116,0.543755,0.781421,0.717426,0.588424,0.159911,0.804908,0.0336761,0.616022,0.871028,0.855305,0.112504,0.20815,0.844819,0.134169,0.0815462,0.697702,0.986639,0.0425988,0.698543,0.119176,0.429792,0.0436777,0.810235,0.542335,0.264423,0.498963,0.525644,0.788357,0.343732,0.507594,0.851052,0.164861,0.125835,0.678432,0.15101,0.55432,0.138313,0.267602,0.77428,0.601887,0.121792,0.757122,0.370878,0.581852,0.680565,0.0832966,0.691019,0.586314,0.0263715,0.568549,0.16296,0.886242,0.134739,0.974937,0.479907,0.555591,0.891379,0.430762,0.484998,0.0262788,0.176926,0.60319,0.203924,0.463837,0.337561,0.232114,0.741565,0.36506,0.405528,0.0248254,0.809945,0.251267,0.816001,0.912251,0.752373,0.879478,0.0741119,0.102967,0.854872,0.455505,0.993016,0.134027,0.321087,0.376201,0.46702,0.586959,0.0114834,0.155852,0.842492,0.425726,0.695961,0.463772,0.762783,0.230973,0.867315,0.0452569,0.31537,0.743176,0.158477,0.791243,0.2728,0.25491,0.725089,0.347619,0.0717188,0.790162,0.68322,0.0656934,0.572864,0.727215,0.262436,0.10955,0.340514,0.741855,0.79951,0.0140393,0.353969,0.294706,0.596961,0.302821,0.141428,0.981072,0.848495,0.653056,0.816291,0.124468,0.141932,0.0469617,0.650153,0.82384,0.652797,0.366365,0.336182,0.516874,0.702297,0.419476,0.517327,0.438225,0.933384,0.192503,0.418243,0.373755,0.607281,0.493156,0.647723,0.600188,0.756782,0.780083,0.658622,0.551588,0.448974,0.94048,0.713576,0.867816,0.640351,0.722323,0.168928,0.420363,0.143161,0.738775,0.968959,0.756199,0.234517,0.574802,0.959665,0.488744,0.824633,0.734325,0.222944,0.946034,0.914713,0.944787,0.280869,0.0632794,0.592721,0.448201,0.285864,0.439106,0.794983,0.84918,0.517291,0.0126722,0.237166,0.502176,0.21338,0.599733,0.476673,0.143287,0.815634,0.650973,0.135599,0.0387076,0.372881,0.512398,0.351506,0.0356083,0.184976,0.306988,0.79083,0.817796,0.254605,0.244038,0.351495,0.610251,0.879575,0.391537,0.111621,0.0354734,0.157281,0.0712457,0.430963,0.143511,0.403382,0.457853,0.449265,0.485145,0.538042,0.323035,0.028975,0.912553,0.204203,0.238191,0.924319,0.757936,0.947084,0.164379,0.775434,0.715222,0.903589,0.569315,0.527995,0.0076282,0.256909,0.847561,0.249013,0.666277,0.263635,0.725621,0.499005,0.927751,0.584829,0.65199,0.176333,0.522208,0.0639481,0.462586,0.678827,0.95774,0.811269,0.268095,0.147564,0.568199,0.726019,0.231558,0.934099,0.757515,0.130322,0.991994,0.320305,0.187533,0.940513,0.514355,0.447836,0.819142,0.0548625,0.809755,0.328922,0.00768113,0.12341,0.375991,0.960629,0.760581,0.668266,0.153359,0.374007,0.682786,0.964506,0.266676,0.663335,0.247193,0.912075,0.918253,0.910514,0.855872,0.875685,0.291322,0.320577,0.774877,0.537967,0.91036,0.220685,0.0443518,0.663429,0.0644234,0.91984,0.773347,0.0201156,0.915986,0.0103007,0.984929,0.00835419,0.360451,0.329421,0.774736,0.519636,0.581165,0.319254,0.121118,0.852077,0.690443,0.445103,0.0623035,0.00690889,0.975108,0.475641,0.898367,0.193854,0.154616,0.4407,0.839662,0.533961,0.159007,0.27012,0.818833,0.87257,0.897525,0.83325,0.256175,0.631059,0.803119,0.510402,0.748752,0.986014,0.530257,0.798729,0.576652,0.603474,0.424313,0.96821,0.656305,0.526685,0.237268,0.0171294,0.878709,0.747433,0.142492,0.595602,0.521579,0.470565,0.140975,0.0175923,0.650767,0.165184,0.438592,0.27543,0.579457,0.314163,0.089902,0.0681671,0.464416,0.327947,0.796516,0.771732,0.35529,0.86059,0.768784,0.424056,0.0224783,0.587307,0.940066,0.0394852,0.0897893,0.461731,0.243232,0.389313,0.663403,0.107138,0.994413,0.600821,0.798966,0.525545,0.79326,0.0755349,0.999876,0.872937,0.15498,0.122744,0.576585,0.6306,0.785764,0.276964,0.782437,0.277959,0.223559,0.0585054,0.98325,0.431565,0.530593,0.822311,0.409699,0.900434,0.960443,0.554414,0.00155538,0.207895,0.887373,0.876846,0.00768119,0.152974,0.869419,0.909896,0.230977,0.447609,0.163705,0.210517,0.309229,0.249428,0.952222,0.841421,0.468907,0.561367,0.885598,0.912595,0.723956,0.584946,0.654496,0.80732,0.587307,0.188931,0.28991,0.529946,0.917156,0.085276,0.477725,0.0510923,0.20988,0.663493,0.263078,0.0658078,0.662626,0.911526,0.897629,0.334748,0.962461,0.0286662,0.934955,0.7605,0.221641,0.306942,0.450454,0.0116059,0.126505,0.377833,0.181955,0.814591,0.640869,0.0104575,0.777143,0.101323,0.115119,0.888499,0.59642,0.130878,0.194309,0.770596,0.589563,0.930602,0.772969,0.718051,0.85025,0.8144,0.873261,0.0292577,0.146734,0.307139,0.408764,0.0292985,0.881835,0.75026,0.570353,0.114199,0.368485,0.900482,0.192149,0.904169,0.0915509,0.352117,0.878251,0.928055,0.113724,0.956715,0.294444,0.866202,0.286961,0.764972,0.630383,0.0841135,0.599686,0.689739,0.275218,0.944727,0.247396,0.872954,0.32158,0.483019,0.532287,0.514822,0.644327,0.809694,0.968931,0.0803475,0.434081,0.150298,0.829055,0.820495,0.536013,0.0648409,0.415661,0.787142,0.970391,0.536296,0.263987,0.216595,0.258964,0.965396,0.501397,0.597282,0.10346,0.652476,0.754514,0.424977,0.649081,0.684483,0.0788248,0.136707,0.826073,0.145872,0.257799,0.422221,0.651089,0.552652,0.273492,0.467666,0.486205,0.973482,0.101047,0.502966,0.696206,0.55071,0.203724,0.894522,0.023205,0.514292,0.142262,0.196145,0.809293,0.0188684,0.297801,0.396723,0.262112,0.479496,0.640164,0.0674116,0.333221,0.447362,0.168909,0.205117,0.277883,0.262251,0.345715,0.507774,0.968108,0.105575,0.634015,0.178568,0.927208,0.929667,0.162513,0.374526,0.608036,0.939115,0.965422,0.0813556,0.27915,0.0143909,0.61467,0.184407,0.308888,0.854751,0.83286,0.226493,0.538018,0.303833,0.344984,0.119513,0.515796,0.285865,0.222197,0.375303,0.0454021,0.345202,0.526558,0.0641224,0.339701,0.665772,0.688286,0.228967,0.873371,0.56088,0.610097,0.529402,0.68475,0.728301,0.218495,0.250491,0.300412,0.484674,0.870097,0.463312,0.0817136,0.614255,0.0904936,0.553991,0.241935,0.532505,0.61164,0.301046,0.199894,0.766584,0.708707,0.547321,0.795261,0.212968,0.399601,0.272845,0.395793,0.30459,0.412439,0.739357,0.475491,0.0721,0.275136,0.0200262,0.671775,0.00261569,0.335348,0.569667,0.339452,0.931153,0.510651,0.219464,0.458726,0.645953,0.122355,0.551608,0.407034,0.601803,0.86364,0.133602,0.420442,0.323679,0.605435,0.893157,0.763639,0.0583534,0.47074,0.212375,0.0648112,0.78824,0.0438499,0.361282,0.763762,0.602146,0.854375,0.583263,0.39999,0.350412,0.953498,0.861333,0.622408,0.906047,0.209875,0.127867,0.929328,0.034262,0.15857,0.393415,0.301357,0.705831,0.362568,0.34656,0.0164945,0.889469,0.418992,0.555714,0.10042,0.66451,0.227519,0.627414,0.325782,0.621155,0.0515267,0.310706,0.123447,0.255113,0.838997,0.698096,0.277584,0.164045,0.726007,0.469185,0.414639,0.10797,0.862499,0.32039,0.117386,0.859083,0.620013,0.492591,0.376545,0.886758,0.13444,0.420267,0.217457,0.550369,0.0232838,0.326827,|0.901055,0.235523,0.0798208,0.919751,0.944435,0.553917,0.641547,0.0650675,0.072882,0.982794,0.408489,0.179453,0.662174,0.299101,0.796563,0.0980794,0.931516,0.977056,0.600288,0.207082,0.699192,0.762183,0.819131,0.0790955,0.192531,0.884607,0.135837,0.771058,0.76473,0.344992,0.239425,0.655121,0.692584,0.459101,0.601495,0.280053,0.169151,0.832639,0.432612,0.69073,0.181822,0.221786,0.503133,0.953889,0.589567,0.670041,0.963707,0.92657,0.336235,0.401074,0.269102,0.819189,0.131461,0.243715,0.833422,0.44155,0.786125,0.0623543,0.444298,0.926655,0.473154,0.195173,0.799558,0.396596,0.0812372,0.639224,0.519741,0.0265563,0.243075,0.997037,0.418157,0.0641093,0.185987,0.343441,0.555833,0.3367,0.856523,0.598723,0.306235,0.184119,0.407738,0.8601,0.70713,0.550117,0.0849861,0.204881,0.375165,0.0692418,0.13681,0.943897,0.295872,0.096082,0.0430074,0.908768,0.189736,0.872008,0.870474,0.763117,0.288997,0.526085,0.98505,0.938743,0.48579,0.662877,0.0826265,0.944309,0.162621,0.508695,0.350397,0.0545395,0.325652,0.266778,0.000863552,0.826971,0.2954,0.794629,0.767918,0.912651,0.497227,0.749614,0.395289,0.265361,0.900815,0.585616,0.828252,0.0441778,0.188565,0.803045,0.229107,0.847158,0.870664,0.324968,0.646642,0.771295,0.0311214,0.363273,0.426076,0.412002,0.150953,0.360841,0.811487,0.893527,0.483705,0.452243,0.953022,0.367349,0.293393,0.726831,0.0375482,0.730215,0.730298,0.251711,0.100212,0.0912077,0.840452,0.0374749,0.177489,0.423846,0.0269341,0.567342,0.375593,0.236682,0.796735,0.00845283,0.342108,0.0293236,0.594113,0.992931,0.388951,0.37528,0.712365,0.401404,0.24314,0.056456,0.423241,0.81692,0.191398,0.971856,0.189474,0.313719,0.820214,0.588214,0.00643957,0.601138,0.810567,0.344454,0.0881881,0.832088,0.627769,0.948548,0.444339,0.873499,0.394722,0.429472,0.82482,0.0274399,0.359218,0.35753,0.128806,0.939482,0.00883061,0.11515,0.599522,0.366248,0.0399999,0.563973,0.975148,0.979726,0.671452,0.531846,0.222175,0.978047,0.435392,0.864056,0.615659,0.528642,0.779571,0.0822126,0.949294,0.628988,0.00145543,0.274525,0.771279,0.13112,0.689455,0.866861,0.507469,0.978123,0.315228,0.072701,0.723739,0.539942,0.415986,0.557765,0.713565,0.897679,0.949201,0.413513,0.874989,0.996518,0.743855,0.941479,0.752056,0.656941,0.915949,0.169344,0.57919,0.346338,0.289754,0.551491,0.106428,0.679193,0.874962,0.800291,0.741525,0.265627,0.00967872,0.627825,0.90466,0.238661,0.0940741,0.702335,0.322426,0.186904,0.55964,0.0266485,0.851336,0.199883,0.57998,0.618178,0.379806,0.00102443,0.106783,0.901515,0.302731,0.295935,0.531762,0.847926,0.127241,0.221056,0.70072,0.205001,0.598472,0.628364,0.544135,0.793126,0.525754,0.541589,0.107378,0.740695,0.0820401,0.893679,0.00314206,0.379368,0.391115,0.899742,0.36992,0.190512,0.464458,0.926007,0.0597842,0.740931,0.614059,0.584384,0.372844,0.147103,0.514771,0.0403835,0.790108,0.80085,0.226712,0.290804,0.842401,0.819354,0.489137,0.36508,0.435266,0.750452,0.499822,0.797058,0.258703,0.909002,0.0529444,0.0252053,0.878234,0.137862,0.3516,0.69392,0.607287,0.844001,0.126479,0.0684836,0.458138,0.205309,0.998306,0.653346,0.342861,0.846376,0.0176564,0.261789,0.908856,0.983082,0.522374,0.0851984,0.878983,0.625043,0.0711516,0.220701,0.372238,0.685469,0.139953,0.892947,0.151257,0.613372,0.0522357,0.960715,0.493807,0.779391,0.724253,0.0106722,0.0970433,0.481153,0.0209699,0.809569,0.651684,0.235931,0.496086,0.938404,0.780772,0.734238,0.751212,0.359902,0.880791,0.369208,0.140062,0.250014,0.295404,0.979066,0.546902,0.470158,0.662704,0.0689608,0.0290859,0.226529,0.899021,0.560601,0.457415,0.109035,0.262502,0.682468,0.903591,0.434351,0.836554,0.283101,0.0919188,0.318534,0.629345,0.129033,0.401683,0.0300503,0.6367,0.633645,0.0178899,0.884983,0.848938,0.315244,0.482588,0.0616468,0.385819,0.500923,0.0739591,0.805751,0.941197,0.278175,0.617785,0.885468,0.862784,0.390441,0.267317,0.889523,0.176562,0.182852,0.0461935,0.719166,0.272175,0.782559,0.743262,0.228557,0.790469,0.256882,0.512459,0.178665,0.0245606,0.786349,0.025359,0.279534,0.788956,0.48819,0.920057,0.0276396,0.830339,0.350306,0.36521,0.806594,0.460929,0.785188,0.409949,0.405786,0.143688,0.910706,0.967449,0.740777,0.318421,0.91563,0.200892,0.600425,0.522354,0.467575,0.877876,0.196631,0.65023,0.132867,0.629622,0.163571,0.242505,0.230385,0.571889,0.618724,0.826427,0.132372,0.736218,0.491189,0.735324,0.989686,0.792462,0.12556,0.446645,0.288422,0.0566523,0.587744,0.773206,0.0575162,0.886795,0.745279,0.00165248,0.865866,0.712887,0.606959,0.431697,0.473641,0.132042,0.482863,0.549317,0.397081,0.743882,0.280958,0.0750983,0.895009,0.607965,0.926493,0.166019,0.573073,0.923006,0.302397,0.148449,0.0682742,0.0794216,0.491537,0.910433,0.139166,0.392385,0.730072,0.956767,0.860446,0.0957676,0.482448,0.585573,0.995568,0.107772,0.118348,0.571675,0.265794,0.0933958,0.743256,0.519785,0.185412,0.953073,0.914518,0.137256,0.512678,0.348778,0.213406,0.592495,0.419744,0.252245,0.532903,0.971683,0.311965,0.517379,0.858693,0.407243,0.0357106,0.1653,0.605316,0.695794,0.690941,0.420416,0.37349,0.645586,0.641388,0.403348,0.616091,0.206915,0.0844415,0.509552,0.323841,0.704949,0.534459,0.108556,0.0654796,0.605272,0.51493,0.432805,0.81632,0.0990905,0.093605,0.390412,0.331879,0.104675,0.593342,0.637859,0.2666,0.828779,0.0454661,0.447896,0.363057,0.438595,0.567248,0.652965,0.737798,0.351979,0.483178,0.0556629,0.458678,0.515942,0.734872,0.672999,0.867867,0.570484,0.117374,0.345092,0.412394,0.0901352,0.0101778,0.377094,0.888677,0.296308,0.508684,0.33023,0.722765,0.244342,0.932351,0.653044,0.0168949,0.959966,0.803187,0.213299,0.693505,0.386694,0.812541,0.865261,0.752902,0.274556,0.437508,0.734916,0.343499,0.806877,0.507829,0.996606,0.916497,0.205808,0.0985205,0.356344,0.147429,0.633657,0.780612,0.763867,0.242879,0.651717,0.521754,0.680608,0.401572,0.670228,0.903793,0.237049,0.459098,0.394559,0.645719,0.648986,0.880701,0.411751,0.225772,0.553642,0.0403507,0.355542,0.0207171,0.635813,0.677521,0.101584,0.356099,0.596892,0.59314,0.554945,0.437546,0.242534,0.384269,0.0397215,0.765525,0.466345,0.558545,0.445014,0.67336,0.426556,0.786129,0.0548908,0.368336,0.453967,0.748882,0.90174,0.999391,0.736121,0.578675,0.28077,0.657305,0.450066,0.618018,0.851382,0.162138,0.799416,0.43102,0.270563,0.538834,0.608908,0.36481,0.900031,0.259593,0.886146,0.509848,0.319194,0.870591,0.0730705,0.877363,0.890166,0.905672,0.596027,0.462412,0.232816,0.387696,0.944634,0.603461,0.546716,0.55125,0.68676,0.996727,0.971765,0.563029,0.30191,0.500863,0.139317,0.0863881,0.458318,0.824401,0.159072,0.799783,0.394055,0.732676,0.665143,0.209843,0.325896,0.548962,0.199003,0.497567,0.833659,0.916039,0.352722,0.18966,0.524078,0.800314,0.085259,0.697006,0.949878,0.399383,0.12552,0.480364,0.399812,0.941047,0.915375,0.976117,0.0901267,0.334515,0.518792,0.554007,0.505532,0.286546,0.652248,0.222596,0.585393,0.310883,0.246113,0.907887,0.819025,0.366763,0.290143,0.383709,0.230731,0.596403,0.592032,0.17021,0.916662,0.643068,0.920601,0.154086,0.275838,0.0738811,0.665134,0.291965,0.467754,0.527546,0.326552,0.609062,0.378699,0.535913,0.735547,0.310106,0.313393,0.784385,0.658029,0.225602,0.85237,0.891848,0.588614,0.960269,0.682703,0.592911,0.995152,0.627576,0.509949,0.509182,0.35517,0.280496,0.507989,0.209572,0.338197,0.895939,0.85662,0.0343541,0.263626,0.935406,0.521961,0.639578,0.438385,0.129665,0.374311,0.677279,0.00838208,0.863487,0.883049,0.400934,0.39649,0.891842,0.311892,0.145737,0.88651,0.0649027,0.634278,0.5211,0.424002,0.669383,0.505584,0.0915897,0.946225,0.319415,0.148019,0.29039,0.798906,0.228072,0.0466911,0.841301,0.910674,0.0254999,0.0292926,0.422179,0.550592,0.732041,0.987683,0.468197,0.333291,0.370088,0.268531,0.445418,0.568208,0.871267,0.993189,0.228623,0.564142,0.230347,0.309948,0.832273,0.821351,0.306475,0.648112,0.361821,0.122723,0.973593,0.448941,0.535309,0.493354,0.647338,0.0801436,0.180018,0.776535,0.973819,0.637359,0.444533,0.142328,0.89825,0.10208,0.990966,0.104803,0.538571,0.207102,0.229108,0.108419,0.00833952,0.276295,0.247125,0.993037,0.0283967,0.404057,0.23773,0.14789,0.830583,0.602669,0.37154,0.505027,0.439069,0.0178133,0.23574,0.282704,0.115536,0.316167,0.4199,0.480756,0.981955,0.521389,0.103168,0.416365,0.13446,0.653674,0.193255,0.180424,0.929851,0.257232,0.277421,0.447433,0.150306,0.968226,0.0770398,0.0812265,0.13187,0.13849,0.197069,0.160357,0.81414,0.660582,0.0597705,0.569376,0.499606,0.802619,0.969396,0.866419,0.319282,0.940814,0.217326,0.435563,0.355528,0.795155,0.442385,0.822085,0.944318,0.273886,0.237446,0.0442414,0.37007,0.961603,0.793476,0.374886,0.221935,0.526891,0.422393,0.134742,0.0223572,0.391598,0.920274,0.0481929,0.2676,0.825423,0.737253,0.900858,0.093439,0.214563,0.398787,0.957035,0.424142,0.327208,0.761414,0.900728,0.874064,0.909061,0.922016,0.0733978,0.415587,0.0706034,0.373815,0.59976,0.710839,0.285694,0.842742,0.308304,0.205193,0.46055,0.973498,0.483929,0.790958,0.860129,0.789794,0.806971,0.10525,0.735204,0.938245,0.583596,0.79288,0.147538,0.963213,0.455948,0.530552,0.216436,0.756735,0.42165,0.801727,0.877082,0.543742,0.196847,0.232961,0.441222,0.489788,0.514041,0.121166,0.557678,0.875139,|0.617411,0.634416,0.119887,0.179057,0.385038,0.444806,0.571564,0.869693,0.854353,0.822922,0.267405,0.553081,0.476955,0.262757,0.883248,0.542295,0.25311,0.448265,0.892883,0.766659,0.310998,0.401595,0.84731,0.0451078,0.92115,0.390349,0.469605,0.901404,0.429606,0.853944,0.488751,0.685144,0.16868,0.421972,0.534083,0.487519,0.0711993,0.906786,0.955812,0.843585,0.380517,0.887984,0.203186,0.703546,0.983047,0.708701,0.609366,0.606698,0.239641,0.160348,0.73595,0.292295,0.115901,0.500343,0.343419,0.712034,0.0681983,0.998779,0.105028,0.846473,0.721591,0.185763,0.908684,0.985995,0.812176,0.000359952,0.171375,0.863389,0.237862,0.184388,0.242417,0.670696,0.909828,0.800088,0.246654,0.121983,0.441464,0.2405,0.454396,0.167897,0.485324,0.537432,0.734256,0.895317,0.485157,0.719151,0.681191,0.72893,0.0978401,0.534902,0.300829,0.699986,0.65372,0.586254,0.118252,0.395224,0.383228,0.0506423,0.228938,0.656393,0.259381,0.433031,0.3655,0.198357,0.959796,0.140698,0.110024,0.0330116,0.152082,0.00539184,0.293948,0.143895,0.654853,0.675045,0.220408,0.630256,0.810346,0.501055,0.661556,0.769251,0.671066,0.036036,0.430883,0.783769,0.363589,0.211906,0.0262183,0.270429,0.921745,0.752611,0.0214499,0.639966,0.309549,0.955601,0.267291,0.76122,0.368826,0.763598,0.061258,0.949784,0.360205,0.114628,0.782671,0.208481,0.36353,0.56218,0.0459211,0.812344,0.849999,0.818427,0.610277,0.497385,0.479616,0.887558,0.613191,0.300257,0.581403,0.595361,0.873716,0.600398,0.296266,0.387818,0.062402,0.267358,0.239274,0.273184,0.498483,0.763918,0.0773392,0.734682,0.937297,0.0924984,0.326694,0.807735,0.648444,0.330143,0.578978,0.369968,0.970018,0.977682,0.535544,0.198035,0.130571,0.894723,0.591187,0.412953,0.441841,0.733282,0.568993,0.333637,0.0517722,0.0786467,0.637958,0.95652,0.268435,0.9988,0.112691,0.505979,0.118296,0.468086,0.376577,0.566028,0.241821,0.895736,0.4059,0.501833,0.454976,0.675752,0.10835,0.998948,0.89808,0.980925,0.826757,0.581556,0.572773,0.535962,0.775352,0.300226,0.0641984,0.434752,0.401691,0.569144,0.668904,0.65612,0.0354602,0.259649,0.719387,0.814175,0.747691,0.309605,0.0206821,0.521814,0.915595,0.961687,0.667471,0.190788,0.967055,0.000109673,0.231249,0.146381,0.677971,0.00553596,0.794751,0.907672,0.0971246,0.605068,0.103457,0.190686,0.25691,0.413099,0.306305,0.0276881,0.60734,0.901133,0.416887,0.625854,0.538552,0.710274,0.913046,0.254162,0.710405,0.887472,0.600075,0.798461,0.0450791,0.514075,0.50096,0.194254,0.303505,0.0677712,0.771557,0.484901,0.758331,0.908627,0.781775,0.852265,0.330185,0.452196,0.66964,0.0865666,0.26641,0.763489,0.978025,0.588069,0.947668,0.785259,0.805018,0.781591,0.480055,0.0557928,0.187973,0.252177,0.453579,0.255828,0.328684,0.72719,0.598478,0.695636,0.318754,0.39667,0.98229,0.186761,0.914197,0.133409,0.655369,0.374224,0.0904102,0.554635,0.68181,0.340702,0.556182,0.219211,0.245214,0.294738,0.864745,0.739822,0.423679,0.545331,0.275878,0.128513,0.83181,0.881346,0.344944,0.93985,0.51824,0.849445,0.549681,0.26476,0.213447,0.428453,0.103379,0.810393,0.232262,0.509426,0.367142,0.649631,0.635543,0.500376,0.769172,0.0738679,0.480225,0.215708,0.267796,0.504086,0.0382472,0.165776,0.101748,0.67165,0.34805,0.930401,0.867601,0.743377,0.732823,0.261727,0.194658,0.00874472,0.431411,0.612088,0.544849,0.400145,0.295645,0.720461,0.863964,0.381519,0.443464,0.924436,0.965859,0.726529,0.168629,0.76739,0.561158,0.400073,0.779042,0.562554,0.621587,0.188565,0.085941,0.850485,0.696635,0.618291,0.992154,0.700968,0.917728,0.532413,0.5102,0.219062,0.0421482,0.193538,0.396537,0.159936,0.364203,0.603242,0.31842,0.476509,0.535918,0.533871,0.115992,0.961257,0.465138,0.0921698,0.469575,0.612801,0.102657,0.677032,0.106892,0.158491,0.786943,0.421718,0.806544,0.073396,0.636041,0.443182,0.233304,0.541957,0.610078,0.108818,0.222265,0.778972,0.396237,0.523854,0.426849,0.918456,0.947155,0.722613,0.607255,0.703813,0.296457,0.195243,0.843262,0.476957,0.494084,0.137306,0.851882,0.720224,0.985067,0.433842,0.993181,0.338265,0.770267,0.0601158,0.181063,0.0926655,0.778034,0.641315,0.834737,0.177675,0.96114,0.805337,0.920203,0.661789,0.609724,0.354233,0.710348,0.721075,0.0914276,0.523186,0.74966,0.703396,0.704553,0.627111,0.137682,0.775499,0.65836,0.689679,0.437372,0.242793,0.975008,0.758656,0.565263,0.673316,0.0563064,0.35727,0.0818093,0.58498,0.802094,0.4365,0.572103,0.214343,0.326798,0.0997676,0.0283914,0.647895,0.500635,0.829333,0.345689,0.620293,0.511417,0.259737,0.239685,0.521401,0.442281,0.461734,0.999925,0.94585,0.0781627,0.953219,0.00598633,0.801428,0.0783522,0.266984,0.164876,0.949556,0.947922,0.432075,0.777793,0.625021,0.329781,0.750511,0.837013,0.924283,0.530706,0.58869,0.836172,0.282859,0.166058,0.255743,0.12009,0.284408,0.712556,0.976354,0.252524,0.568292,0.122513,0.315495,0.627635,0.0624437,0.194342,0.457684,0.918079,0.804419,0.72717,0.545201,0.307306,0.95706,0.157,0.423826,0.418595,0.84314,0.915907,0.456814,0.985037,0.0784595,0.796942,0.866017,0.147964,0.56141,0.791699,0.473502,0.0474229,0.597224,0.558774,0.133756,0.593152,0.644216,0.0298709,0.678589,0.741911,0.69411,0.595241,0.542743,0.21967,0.682643,0.0207039,0.829454,0.838188,0.402352,0.686387,0.661008,0.497428,0.863569,0.949779,0.876346,0.839591,0.67835,0.0445983,0.860375,0.756221,0.400712,0.786184,0.968883,0.352055,0.542035,0.220071,0.811377,0.452126,0.321596,0.65448,0.411384,0.0291021,0.470945,0.801494,0.215805,0.629109,0.986039,0.735692,0.81967,0.655955,0.6645,0.928371,0.535567,0.548529,0.903787,0.197341,0.00437617,0.764008,0.873826,0.132505,0.223896,0.36355,0.545729,0.0398534,0.870557,0.836997,0.910105,0.131376,0.575447,0.968784,0.316042,0.766291,0.639856,0.581872,0.402181,0.195955,0.192037,0.0665275,0.455823,0.859462,0.0615224,0.262666,0.204676,0.817383,0.05906,0.91794,0.392165,0.0520761,0.547239,0.250265,0.524434,0.0858016,0.422289,0.309176,0.445295,0.665586,0.439443,0.78455,0.217023,0.729556,0.235763,0.57193,0.837516,0.848121,0.816859,0.139111,0.402183,0.167487,0.943308,0.051875,0.157442,0.835693,0.324661,0.062577,0.741438,0.866615,0.402045,0.967537,0.195626,0.338576,0.264038,0.193002,0.150788,0.48103,0.690069,0.978816,0.992672,0.882276,0.972306,0.912954,0.645954,0.343576,0.685474,0.0141088,0.0977275,0.257715,0.0988102,0.779778,0.748095,0.82135,0.701615,0.919892,0.362139,0.668621,0.875085,0.0951212,0.898085,0.32505,0.0887295,0.734373,0.779854,0.530848,0.0252276,0.650472,0.519367,0.4107,0.728923,0.35824,0.696146,0.430915,0.361066,0.403428,0.907263,0.667451,0.705878,0.392406,0.340799,0.969388,0.43153,0.585583,0.105748,0.42298,0.273936,0.589526,0.512935,0.68792,0.349014,0.936299,0.444049,0.465765,0.421578,0.985271,0.493124,0.464328,0.278154,0.794871,0.692672,0.285375,0.0871407,0.272293,0.755016,0.881378,0.742806,0.561773,0.97392,0.312626,0.315188,0.25047,0.705522,0.737889,0.902924,0.864669,0.211504,0.0708285,0.661503,0.274987,0.172836,0.497457,0.609371,0.388451,0.359756,0.810903,0.860145,0.106545,0.68725,0.0990584,0.243911,0.715745,0.383681,0.62617,0.542817,0.0694394,0.51216,0.864801,0.50742,0.846414,0.907377,0.145068,0.890738,0.240131,0.156065,0.0708701,0.227971,0.865726,0.257419,0.676304,0.202375,0.469902,0.114336,0.786854,0.395001,0.995648,0.79167,0.93208,0.917923,0.4092,0.0239857,0.766211,0.297733,0.846978,0.143821,0.162919,0.548923,0.0275514,0.931165,0.0819586,0.576236,0.143722,0.389432,0.127615,0.923139,0.447855,0.0105051,0.0542951,0.506747,0.844247,0.867496,0.505494,0.155243,0.350607,0.383182,0.151506,0.484944,0.248317,0.589194,0.936729,0.056107,0.753738,0.607457,0.0690407,0.122264,0.394797,0.0174915,0.687484,0.935276,0.0364147,0.457207,0.12022,0.00298971,0.266131,0.15329,0.256957,0.23766,0.85624,0.909482,0.186564,0.00369275,0.375899,0.193824,0.0306644,0.58941,0.362828,0.26618,0.759611,0.857388,0.753945,0.260244,0.367317,0.691018,0.691231,0.898309,0.933085,0.661256,0.376445,0.502696,0.858076,0.0191542,0.373924,0.590436,0.438503,0.435963,0.701959,0.702178,0.160198,0.0479874,0.118039,0.132788,0.673607,0.425371,0.154194,0.497859,0.562247,0.907353,0.862692,0.559531,0.917674,0.992967,0.835712,0.432636,0.686971,0.257027,0.816684,0.850048,0.26468,0.921233,0.416699,0.503393,0.622979,0.631049,0.756972,0.718727,0.515081,0.416228,0.2384,0.415937,0.822209,0.72536,0.166383,0.462534,0.642031,0.427653,0.315552,0.649252,0.35665,0.917466,0.308003,0.724276,0.0022471,0.627531,0.752347,0.0167624,0.250998,0.144405,0.739242,0.886683,0.846434,0.28168,0.181681,0.571352,0.252381,0.892311,0.214719,0.166423,0.393992,0.888753,0.239659,0.759596,0.755124,0.890859,0.990751,0.310183,0.18227,0.400555,0.0144757,0.352855,0.426993,0.742031,0.605728,0.112024,0.547406,0.106095,0.271423,0.570307,0.906073,0.018884,0.945818,0.395414,0.972586,0.569314,0.150058,0.844436,0.432596,0.459198,0.307348,0.778278,0.775021,0.514257,0.57237,0.363501,0.359523,0.533166,0.926419,0.0125393,0.557181,0.243585,0.793348,0.0060001,0.0438142,0.779421,0.50253,0.859641,0.727088,0.607181,0.815922,0.813473,0.818741,0.209448,0.0882328,0.590784,0.193461,0.339941,0.744764,0.97769,0.788956,0.91474,0.772951,0.854856,0.700973,0.988823,0.98794,0.125973,0.379338,0.404506,|0.393052,0.175857,0.486678,0.654103,0.845434,0.25502,0.0194508,0.368019,0.337207,0.632106,0.0998948,0.925812,0.662136,0.0895543,0.825335,0.103132,0.852207,0.679177,0.298182,0.413796,0.0284819,0.193683,0.745103,0.286805,0.884067,0.0510033,0.904288,0.776148,0.494017,0.287446,0.184217,0.295664,0.541454,0.61878,0.563083,0.314076,0.474234,0.494821,0.418601,0.478338,0.376606,0.449361,0.941418,0.529484,0.930537,0.525168,0.102455,0.824771,0.190024,0.129355,0.380664,0.132075,0.393353,0.450146,0.651842,0.726,0.0187896,0.0291528,0.379815,0.220845,0.360502,0.978338,0.958134,0.952079,0.95956,0.458774,0.421442,0.698221,0.63228,0.338982,0.570687,0.66796,0.0187978,0.363601,0.302067,0.482955,0.209126,0.520347,0.55109,0.463184,0.154048,0.252701,0.948543,0.00871813,0.353808,0.840084,0.103913,0.122669,0.210003,0.21458,0.300252,0.854531,0.478744,0.91353,0.0519493,0.789338,0.111262,0.341469,0.470413,0.108862,0.236527,0.830533,0.57246,0.733207,0.728295,0.239917,0.43852,0.332477,0.546873,0.982943,0.796532,0.423068,0.447376,0.121463,0.849973,0.163052,0.375459,0.761921,0.345157,0.313258,0.0390173,0.216992,0.784627,0.822639,0.588926,0.458591,0.0272968,0.7413,0.0898938,0.833578,0.426005,0.114754,0.635189,0.51044,0.525862,0.635118,0.214094,0.572635,0.654513,0.854523,0.958675,0.886906,0.307996,0.532231,0.867508,0.508271,0.71633,0.978475,0.431144,0.891945,0.507221,0.0344707,0.595906,0.5862,0.949565,0.794855,0.0838373,0.563164,0.205837,0.910402,0.0047009,0.335683,0.107326,0.973584,0.996596,0.0177025,0.00177103,0.665613,0.66294,0.51235,0.0125515,0.0137467,0.579454,0.782739,0.913963,0.279242,0.664853,0.541504,0.994725,0.939994,0.632184,0.692632,0.0403786,0.679909,0.600397,0.433354,0.397169,0.264918,0.100487,0.594641,0.607014,0.895843,0.249707,0.960246,0.574452,0.997243,0.238758,0.418421,0.122751,0.650031,0.443008,0.0210324,0.165537,0.341278,0.129819,0.649789,0.0387086,0.0030098,0.483114,0.368636,0.900891,0.66732,0.863857,0.230205,0.850105,0.694579,0.362163,0.51985,0.356439,0.458351,0.634838,0.98914,0.58433,0.341164,0.667461,0.802511,0.387986,0.760275,0.74059,0.692174,0.0194473,0.733306,0.572478,0.603409,0.648727,0.246242,0.715243,0.32914,0.213726,0.804789,0.320177,0.585026,0.885537,0.299278,0.309473,0.3283,0.8412,0.0999059,0.988346,0.818601,0.386679,0.905144,0.185024,0.997598,0.385179,0.0242715,0.56286,0.225529,0.0114805,0.965448,0.619572,0.515062,0.982878,0.792313,0.253157,0.873301,0.594584,0.307166,0.667482,0.0271645,0.421826,0.280235,0.886563,0.420197,0.450933,0.819096,0.835969,0.914451,0.652103,0.872764,0.291886,0.292263,0.936535,0.742599,0.480074,0.3333,0.250313,0.369152,0.395208,0.483571,0.247298,0.65275,0.100239,0.250264,0.545049,0.0830424,0.381512,0.22466,0.199181,0.557772,0.873453,0.210675,0.644356,0.262264,0.203206,0.379484,0.0283637,0.566953,0.282715,0.98043,0.486133,0.0775964,0.857906,0.501495,0.0349591,0.520128,0.759185,0.208769,0.884322,0.981551,0.493249,0.727779,0.960984,0.403844,0.403916,0.84454,0.60755,0.929299,0.717353,0.692914,0.448202,0.412749,0.883326,0.72001,0.710078,0.892991,0.469701,0.0973539,0.995452,0.318798,0.223224,0.571401,0.818759,0.337997,0.138969,0.525991,0.460852,0.399794,0.299075,0.434699,0.36844,0.464802,0.389678,0.748552,0.76661,0.333073,0.453604,0.914631,0.169797,0.120947,0.782986,0.55338,0.935262,0.249816,0.753555,0.781567,0.298513,0.703459,0.721336,0.772553,0.189559,0.542387,0.042478,0.674051,0.0309823,0.128376,0.447898,0.490949,0.793174,0.745517,0.699075,0.651253,0.217779,0.513042,0.567758,0.332276,0.00708359,0.912269,0.913273,0.678407,0.501341,0.3737,0.888887,0.338412,0.886872,0.718734,0.0765455,0.784484,0.759256,0.211282,0.385793,0.0489326,0.586162,0.886821,0.778149,0.254528,0.827975,0.280685,0.210868,0.517644,0.279701,0.443663,0.729236,0.352698,0.615293,0.471711,0.688249,0.168527,0.80815,0.744851,0.99389,0.477754,0.397377,0.447646,0.244667,0.315215,0.765673,0.447793,0.0403792,0.236593,0.976083,0.00391561,0.353389,0.990018,0.362268,0.718435,0.816689,0.187132,0.550732,0.543146,0.092485,0.603529,0.0133779,0.158917,0.767011,0.926542,0.259516,0.611312,0.00124407,0.829435,0.161721,0.85253,0.226936,0.149608,0.479598,0.714889,0.0490285,0.398725,0.546109,0.329752,0.672344,0.372626,0.694016,0.649714,0.00209492,0.885484,0.868325,0.215859,0.290947,0.72846,0.417528,0.749214,0.65686,0.516353,0.870658,0.907872,0.608554,0.804292,0.135013,0.329223,0.091288,0.479692,0.890138,0.47966,0.161865,0.544746,0.422133,0.0637108,0.596878,0.922829,0.783259,0.241572,0.121899,0.790961,0.954205,0.10533,0.520424,0.816087,0.653492,0.991054,0.186089,0.140685,0.254184,0.152009,0.570319,0.450494,0.350344,0.202195,0.647176,0.471676,0.392579,0.885203,0.0399284,0.191122,0.938718,0.664706,0.645592,0.250988,0.281177,0.540873,0.139186,0.412261,0.156488,0.299379,0.473534,0.689522,0.924552,0.707833,0.346804,0.586626,0.673687,0.446965,0.538988,0.726685,0.0185256,0.232649,0.224471,0.00387061,0.739008,0.819775,0.965981,0.721105,0.131384,0.775858,0.760288,0.0607525,0.51306,0.993765,0.320528,0.29555,0.739263,0.730302,0.371496,0.661227,0.651954,0.535929,0.980966,0.0359136,0.834345,0.985714,0.939087,0.993256,0.610088,0.43277,0.12203,0.460333,0.398346,0.56128,0.965338,0.344014,0.858997,0.0129147,0.709868,0.113782,0.39513,0.736508,0.522806,0.931363,0.119182,0.822812,0.717141,0.950004,0.783938,0.6019,0.45102,0.46793,0.55393,0.805885,0.608215,0.34364,0.916637,0.743363,0.267048,0.615245,0.280313,0.892066,0.0447789,0.372379,0.213751,0.476433,0.208218,0.726727,0.801732,0.00502557,0.505498,0.479151,0.979646,0.0464692,0.191228,0.082165,0.75598,0.032884,0.0350944,0.0897843,0.394862,0.854745,0.839741,0.535582,0.299426,0.531762,0.366025,0.323191,0.30476,0.638972,0.791153,0.880014,0.910663,0.913636,0.00486344,0.0381137,0.333564,0.966777,0.0448205,0.670315,0.141642,0.230024,0.700011,0.373731,0.066545,0.922124,0.0603207,0.457489,0.456292,0.242634,0.837009,0.498698,0.493166,0.0441647,0.344885,0.504257,0.949916,0.955577,0.994058,0.22494,0.170982,0.318518,0.413461,0.739004,0.915112,0.400186,0.184268,0.91187,0.216038,0.389331,0.431474,0.847642,0.209966,0.569263,0.357802,0.104368,0.0708499,0.383974,0.555834,0.511558,0.381147,0.487848,0.000721395,0.28747,0.277429,0.376193,0.837848,0.0103784,0.513868,0.390375,0.00458384,0.450118,0.756182,0.463791,0.918544,0.159633,0.966794,0.81472,0.914184,0.0848758,0.808592,0.535399,0.979748,0.505293,0.545207,0.576653,0.582045,0.226633,0.669638,0.770836,0.724905,0.222485,0.619969,0.247812,0.0169803,0.0351098,0.928417,0.241339,0.379398,0.417538,0.618258,0.569942,0.0668674,0.578276,0.95489,0.236772,0.778845,0.481179,0.555221,0.319025,0.990294,0.890925,0.64588,0.355604,0.383233,0.641655,0.121283,0.388977,0.0249446,0.116533,0.630688,0.0714462,0.0644777,0.259281,0.889923,0.265564,0.81273,0.683389,0.462286,0.563724,0.762998,0.618051,0.409246,0.627943,0.389402,0.401982,0.697908,0.505354,0.863774,0.574126,0.0862479,0.0501692,0.553326,0.566291,0.412009,0.988447,0.558574,0.806395,0.858584,0.392219,0.533606,0.418517,0.0792627,0.835675,0.381734,0.263133,0.456283,0.948806,0.979688,0.870888,0.322538,0.518027,0.601708,0.699543,0.70321,0.373118,0.247972,0.90884,0.313882,0.990351,0.141974,0.514375,0.987916,0.192205,0.11584,0.671239,0.892312,0.852037,0.297056,0.106419,0.180013,0.694577,0.681245,0.910465,0.119077,0.238474,0.516315,0.491411,0.325677,0.364022,0.75949,0.983535,0.531832,0.161891,0.142798,0.211368,0.783104,0.293134,0.154708,0.499404,0.0621477,0.524436,0.0284839,0.774011,0.839266,0.259694,0.340898,0.207563,0.274337,0.689033,0.00561106,0.44262,0.196204,0.114515,0.929552,0.529427,0.0393527,0.881794,0.33595,0.0263017,0.496268,0.556912,0.664452,0.909868,0.0185547,0.593634,0.689115,0.194399,0.64847,0.178462,0.42604,0.106945,0.472378,0.745734,0.923225,0.949857,0.949264,0.325322,0.170852,0.861598,0.0777678,0.721062,0.899263,0.715932,0.176715,0.0607933,0.254548,0.760083,0.915677,0.269432,0.766377,0.624036,0.193937,0.17349,0.0857571,0.583632,0.288041,0.40945,0.407311,0.997073,0.665543,0.405322,0.901409,0.2519,0.773299,0.198916,0.311303,0.0423922,0.584677,0.795888,0.710315,0.556679,0.59301,0.319011,0.363666,0.32019,0.763623,0.111859,0.760317,0.621414,0.649569,0.785318,0.527065,0.533,0.282748,0.360741,0.703117,0.679406,0.323315,0.729321,0.833417,0.521794,0.13357,0.0603962,0.144793,0.638163,0.490582,0.0456238,0.0431915,0.685404,0.990132,0.39216,0.675711,0.359446,0.158031,0.595537,0.191383,0.741563,0.249187,0.0283909,0.871689,0.708777,0.483587,0.181439,0.753647,0.803269,0.594867,0.222091,0.401595,0.507844,0.732032,0.467909,0.918223,0.77206,0.988545,0.777772,0.288608,0.503126,0.68625,0.241028,0.000740409,0.907627,0.0261747,0.972288,0.463603,0.440851,0.388344,0.188343,0.0524676,0.189808,0.123156,0.292566,0.506093,0.116041,0.00615114,0.834694,0.67827,0.486504,0.442724,0.657057,0.996952,0.959517,0.8755,0.51148,0.648563,0.780294,0.162534,0.467296,0.872808,0.208626,0.565841,0.0761632,0.45212,0.683062,0.23462,0.483557,0.393279,0.233874,0.97158,0.4466,0.251406,0.203643,0.946887,0.273443,0.69009,0.528751,0.750576,0.596901,0.690325,0.701902,0.00182104,0.929685,0.71525,0.553693,0.0576123,0.122696,|0.511272,0.684141,0.657508,0.890595,0.931993,0.507323,0.657549,0.8285,0.328998,0.952071,0.457597,0.558758,0.553555,0.816894,0.190686,0.190664,0.780309,0.178065,0.359439,0.212092,0.693689,0.939798,0.966423,0.0953062,0.395347,0.846401,0.507799,0.315623,0.544466,0.767222,0.584858,0.455953,0.575776,0.0834506,0.943468,0.5708,0.87857,0.0863026,0.263299,0.784022,0.473954,0.979633,0.862046,0.597571,0.171215,0.178151,0.469269,0.173367,0.911092,0.254617,0.457994,0.949313,0.413867,0.747017,0.293044,0.408039,0.200116,0.686621,0.966177,0.42601,0.0815057,0.621427,0.765939,0.290959,0.381962,0.531199,0.507938,0.870861,0.320566,0.655937,0.656055,0.547174,0.252268,0.638199,0.284808,0.395305,0.0746211,0.978974,0.00841391,0.798078,0.6944,0.565453,0.315979,0.293441,0.538084,0.793635,0.156829,0.82377,0.467535,0.774457,0.868253,0.977479,0.935351,0.704504,0.338007,0.803937,0.199997,0.197736,0.837997,0.410268,0.196004,0.211295,0.656099,0.873468,0.508852,0.536173,0.527118,0.596654,0.408686,0.474249,0.0446828,0.955321,0.300863,0.266712,0.29755,0.0498111,0.640684,0.895652,0.93137,0.518453,0.471002,0.596317,0.727245,0.516447,0.827102,0.849788,0.07987,0.653823,0.588212,0.593142,0.981372,0.327973,0.245741,0.247582,0.914982,0.51979,0.237807,0.512427,0.966135,0.698284,0.29994,0.234746,0.684447,0.260006,0.395933,0.985313,0.399808,0.700298,0.231545,0.215605,0.948626,0.659572,0.0245476,0.116246,0.995726,0.062843,0.156637,0.373151,0.226924,0.054633,0.273738,0.180518,0.7958,0.565412,0.660359,0.110631,0.840169,0.00850827,0.846522,0.0229893,0.0357518,0.473454,0.994089,0.309288,0.853765,0.954936,0.319284,0.919907,0.613957,0.0324746,0.0307997,0.976637,0.142129,0.530634,0.0666168,0.570167,0.540595,0.784769,0.325497,0.577869,0.0917886,0.516922,0.493325,0.0599147,0.808417,0.309172,0.312957,0.888136,0.114893,0.363279,0.898222,0.881788,0.199821,0.0380136,0.758994,0.590874,0.698619,0.230763,0.747774,0.061596,0.957362,0.166067,0.970562,0.040854,0.693249,0.824157,0.0852463,0.44271,0.106264,0.25214,0.886294,0.0928408,0.672476,0.482657,0.718075,0.844676,0.958355,0.395988,0.971187,0.255344,0.0059669,0.313194,0.301639,0.0335944,0.497811,0.634543,0.353815,0.0546184,0.508111,0.98043,0.263061,0.655822,0.4949,0.0330791,0.308943,0.573993,0.883271,0.580913,0.992559,0.152073,0.875709,0.367769,0.752384,0.256904,0.949078,0.729442,0.481375,0.749073,0.953134,0.0969266,0.803897,0.109453,0.206326,0.589853,0.538944,0.699014,0.379589,0.108799,0.438694,0.79043,0.431873,0.341606,0.699733,0.225098,0.797888,0.199291,0.0862673,0.230136,0.486558,0.295716,0.0999579,0.257597,0.650448,0.990692,0.471328,0.116203,0.0460381,0.230534,0.718357,0.737381,0.0852276,0.876092,0.260264,0.711365,0.153343,0.369491,0.393813,0.0539591,0.920137,0.897187,0.535844,0.879713,0.722528,0.463862,0.529767,0.730389,0.708642,0.795947,0.380785,0.281962,0.0828394,0.367703,0.249348,0.627595,0.213594,0.987463,0.459494,0.300993,0.351077,0.821936,0.95958,0.504722,0.0221046,0.174296,0.545556,0.074936,0.861913,0.684538,0.138246,0.420732,0.0864151,0.468904,0.738523,0.664147,0.715465,0.822749,0.599654,0.295869,0.992612,0.735314,0.751072,0.894749,0.995015,0.884504,0.148232,0.445379,0.316849,0.405699,0.583047,0.393267,0.512688,0.101411,0.782983,0.172656,0.0417587,0.366753,0.420087,0.0871527,0.0271102,0.430622,0.206087,0.56906,0.266602,0.218204,0.447663,0.460484,0.816019,0.115732,0.641859,0.575664,0.0205677,0.865588,0.877094,0.523305,0.610877,0.591499,0.471911,0.00227273,0.242696,0.527814,0.482453,0.451007,0.596292,0.123808,0.168233,0.972094,0.0740488,0.509658,0.588294,0.383951,0.900945,0.13051,0.778394,0.574662,0.913893,0.520384,0.679316,0.0556366,0.155474,0.516782,0.132404,0.152313,0.4321,0.355612,0.976365,0.26865,0.195861,0.153629,0.786593,0.770024,0.373227,0.841924,0.471066,0.417229,0.750052,0.0286522,0.629195,0.455039,0.855886,0.0839882,0.283451,0.995152,0.721848,0.820903,0.511802,0.563056,0.782389,0.397444,0.505508,0.729129,0.876764,0.0736378,0.25726,0.942757,0.906454,0.340638,0.652977,0.242272,0.173209,0.00665206,0.0349669,0.436545,0.704255,0.83046,0.743143,0.0304122,0.936821,0.755974,0.127077,0.430991,0.995764,0.795327,0.786699,0.199112,0.364742,0.445709,0.844147,0.502951,0.275264,0.553733,0.591169,0.726523,0.608637,0.149809,0.107642,0.900208,0.354899,0.294155,0.796705,0.221159,0.44931,0.859828,0.331088,0.41639,0.644015,0.601451,0.910033,0.788858,0.124407,0.124925,0.641257,0.26981,0.329752,0.198914,0.431449,0.495403,0.273101,0.545201,0.310483,0.589822,0.980459,0.102978,0.131638,0.478687,0.54966,0.42277,0.430195,0.918208,0.171278,0.230975,0.533939,0.811671,0.532077,0.660581,0.597182,0.434768,0.461199,0.916655,0.486924,0.119737,0.214524,0.043344,0.657834,0.659096,0.8186,0.427249,0.203287,0.558414,0.829782,0.430883,0.467635,0.785279,0.470831,0.261962,0.321356,0.478539,0.950923,0.709783,0.968706,0.317533,0.571346,0.490046,0.830729,0.572113,0.00911427,0.888107,0.992058,0.101115,0.245314,0.627407,0.32127,0.93329,0.514389,0.770252,0.0342914,0.125797,0.70392,0.257577,0.958818,0.922045,0.226627,0.533751,0.19351,0.411076,0.358737,0.980328,0.439038,0.796819,0.737967,0.418644,0.00203919,0.609817,0.00187427,0.188773,0.467784,0.248711,0.608112,0.356089,0.145046,0.89573,0.223692,0.578213,0.616224,0.00730389,0.898056,0.103035,0.422823,0.294234,0.289811,0.936847,0.42289,0.822972,0.150576,0.290182,0.341664,0.944345,0.596015,0.739039,0.910231,0.368413,0.0029918,0.0588489,0.103568,0.564568,0.000303686,0.579438,0.123113,0.291854,0.394382,0.387679,0.8538,0.789723,0.0895973,0.853768,0.132509,0.878807,0.0540071,0.637672,0.0381733,0.826057,0.234518,0.0660871,0.588251,0.0519172,0.871517,0.258393,0.542414,0.332342,0.0451906,0.969549,0.751953,0.24518,0.35992,0.954948,0.708719,0.544693,0.736325,0.519718,0.683744,0.28328,0.088554,0.620387,0.460623,0.608777,0.527551,0.234553,0.207834,0.960896,0.0238039,0.976964,0.843011,0.22214,0.411061,0.286592,0.256554,0.360715,0.459714,0.513786,0.685994,0.351019,0.8201,0.770272,0.467234,0.736047,0.748909,0.658593,0.156209,0.198113,0.583318,0.531594,0.481082,0.280924,0.0523475,0.470308,0.00434577,0.0906962,0.256983,0.857791,0.583535,0.946894,0.380843,0.926615,0.649542,0.500352,0.284232,0.563697,0.0602038,0.652453,0.440173,0.231396,0.271568,0.905034,0.0230961,0.971555,0.711807,0.885423,0.454151,0.158986,0.536026,0.204984,0.497984,0.0873722,0.935574,0.53383,0.58077,0.648547,0.957902,0.530841,0.14787,0.014248,0.376299,0.395639,0.385844,0.963345,0.23924,0.535049,0.795051,0.974827,0.726977,0.988163,0.675361,0.141745,0.523256,0.647659,0.762767,0.284163,0.739166,0.327766,0.346546,0.328795,0.74268,0.410439,0.590461,0.910177,0.00698543,0.215746,0.437892,0.208918,0.632944,0.219583,0.664405,0.0448399,0.406469,0.798827,0.0324443,0.0151198,0.379549,0.944348,0.930062,0.8305,0.856018,0.0666521,0.302237,0.896086,0.0336716,0.803898,0.0939888,0.431627,0.862061,0.377336,0.276901,0.348834,0.667097,0.845341,0.851281,0.918745,0.861437,0.871658,0.954018,0.899433,0.52116,0.312388,0.176313,0.957358,0.208547,0.887379,0.739212,0.798989,0.64399,0.940995,0.148534,0.815716,0.813815,0.0733418,0.680612,0.673088,0.0264116,0.113696,0.731184,0.701346,0.43483,0.511302,0.0140322,0.620947,0.557646,0.790783,0.499288,0.313063,0.3779,0.339483,0.48286,0.487944,0.959556,0.967416,0.785432,0.254637,0.307501,0.459241,0.0725855,0.37561,0.293464,0.270408,0.599957,0.200511,0.835802,0.534201,0.285202,0.422096,0.424173,0.132051,0.380829,0.176184,0.65457,0.246973,0.852561,0.283414,0.0898253,0.484441,0.837628,0.595756,0.896371,0.83368,0.473957,0.947186,0.529157,0.560236,0.184816,0.190277,0.768845,0.716714,0.928163,0.164028,0.0928355,0.347153,0.506827,0.146154,0.365855,0.163372,0.591984,0.650631,0.0171932,0.0511512,0.846258,0.492058,0.733589,0.418488,0.755897,0.0629749,0.492314,0.932754,0.658862,0.585278,0.962339,0.0822999,0.105969,0.689955,0.135382,0.333383,0.77763,0.323392,0.591964,0.436803,0.711767,0.920045,0.740912,0.278968,0.422819,0.530779,0.781458,0.197764,0.334936,0.378785,0.655101,0.471113,0.549191,0.267427,0.559453,0.316861,0.753838,0.828315,0.91549,0.265614,0.913232,0.349065,0.286836,0.274909,0.236523,0.611106,0.989536,0.720619,0.0745093,0.200606,0.449209,0.677809,0.321932,0.246907,0.52268,0.311714,0.869671,0.16587,0.977954,0.148938,0.39834,0.203493,0.523188,0.782341,0.412487,0.99427,0.837349,0.465506,0.384337,0.433696,0.0218754,0.0295891,0.126443,0.434387,0.00104642,0.438091,0.291582,0.271147,0.476802,0.665068,0.879762,0.676773,0.195035,0.286857,0.186657,0.291599,0.882696,0.089179,0.620023,0.950883,0.932968,0.651807,0.788515,0.922985,0.791624,0.414657,0.607157,0.644199,0.619945,0.65218,0.391306,0.962566,0.739793,0.49948,0.702487,0.176736,0.172726,0.17507,0.726759,0.827873,0.84272,0.432785,0.811582,0.363031,0.836589,0.527403,0.0856602,0.70604,0.710136,0.654375,0.766195,0.708033,0.275622,0.803481,0.80982,0.540667,0.149567,0.00690144,0.0509092,0.0878981,0.161011,0.848213,0.0147591,0.716972,0.88358,0.755983,0.0551947,0.626091,0.655768,0.542946,0.918215,0.897649,0.298695,0.564763,0.714602,0.833927,0.749402,0.379394,0.0114579,0.723694,0.475345,0.266709,0.374785,0.698186,0.936838,0.0761087,0.184579,0.461349,|0.517101,0.262296,0.66845,0.780819,0.375479,0.295457,0.639351,0.48632,0.0444404,0.757157,0.394012,0.0826626,0.165265,0.0148077,0.0695204,0.133611,0.067771,0.374712,0.239398,0.0575578,0.210145,0.906289,0.563401,0.235012,0.552041,0.125415,0.460182,0.287717,0.91762,0.240173,0.152615,0.394131,0.881729,0.281791,0.782516,0.627272,0.106919,0.694063,0.157567,0.119902,0.259488,0.238226,0.206912,0.0707099,0.643232,0.151494,0.189657,0.140887,0.582898,0.286458,0.753082,0.850149,0.528922,0.122869,0.0211409,0.049159,0.529846,0.0713391,0.315617,0.289106,0.643483,0.970186,0.293575,0.864673,0.589021,0.800211,0.373618,0.564275,0.809561,0.639741,0.347109,0.376189,0.550001,0.322532,0.201999,0.562726,0.672577,0.875391,0.943984,0.994857,0.807838,0.996409,0.0715672,0.310672,0.230744,0.958406,0.325027,0.24262,0.789983,0.248949,0.472107,0.761767,0.696804,0.192132,0.904135,0.60013,0.920568,0.554331,0.0601911,0.432999,0.252662,0.252603,0.290161,0.282224,0.141513,0.803286,0.602359,0.455253,0.238766,0.8836,0.317313,0.269275,0.687858,0.831645,0.238855,0.641739,0.137296,0.364081,0.630886,0.170098,0.593043,0.569218,0.7418,0.450372,0.871126,0.463356,0.694118,0.390556,0.875494,0.200871,0.139306,0.719792,0.247462,0.468038,0.837858,0.267228,0.24835,0.0938957,0.840584,0.614958,0.519761,0.319492,0.536458,0.0841726,0.555211,0.953263,0.877494,0.547898,0.911827,0.876627,0.906305,0.314667,0.828191,0.666161,0.554775,0.301409,0.586971,0.152951,0.100262,0.502812,0.0250189,0.236611,0.278363,0.692576,0.218651,0.238211,0.654665,0.556743,0.87078,0.355934,0.230055,0.0636131,0.85971,0.60846,0.00119716,0.0130391,0.777754,0.285046,0.15843,0.846066,0.162872,0.552508,0.355668,0.840714,0.351593,0.140658,0.86273,0.744516,0.705167,0.23241,0.36387,0.0354149,0.989002,0.303183,0.0962276,0.297296,0.399058,0.969296,0.832795,0.905052,0.105891,0.0776407,0.0224414,0.660354,0.472893,0.603272,0.847379,0.47114,0.770427,0.271795,0.4158,0.0581948,0.513033,0.691168,0.394917,0.300317,0.847514,0.421005,0.770232,0.637765,0.805655,0.235064,0.978673,0.648919,0.0181172,0.598789,0.659111,0.825628,0.631002,0.125441,0.759887,0.956234,0.141381,0.733983,0.59898,0.306156,0.677123,0.248161,0.40905,0.761109,0.0146858,0.340388,0.589893,0.890441,0.591717,0.0741468,0.967187,0.579724,0.397119,0.277292,0.822238,0.822061,0.0234171,0.169917,0.356577,0.0787438,0.426494,0.823024,0.328408,0.984802,0.00919145,0.822808,0.0120355,0.332197,0.459769,0.134443,0.0944449,0.514246,0.459835,0.987278,0.369883,0.857194,0.95599,0.574816,0.613456,0.516394,0.989844,0.169196,0.394625,0.281466,0.763763,0.726659,0.276289,0.360387,0.946662,0.855927,0.764591,0.408591,0.909491,0.705641,0.802309,0.112498,0.89384,0.250799,0.967411,0.019022,0.288743,0.552784,0.0931596,0.476194,0.636188,0.604998,0.921292,0.930732,0.404484,0.841089,0.00353974,0.436403,0.505416,0.675555,0.773054,0.597857,0.5448,0.0478859,0.792911,0.578099,0.140206,0.223838,0.830733,0.400888,0.829432,0.932237,0.0673095,0.930424,0.380669,0.893792,0.50011,0.348812,0.521739,0.391561,0.759034,0.0116546,0.485447,0.455765,0.661412,0.568724,0.672894,0.672169,0.194819,0.0171831,0.0268304,0.509122,0.742374,0.433989,0.846484,0.141142,0.786611,0.821237,0.86994,0.256714,0.0695959,0.964468,0.940863,0.659674,0.389003,0.458802,0.742422,0.574549,0.159722,0.00459659,0.555045,0.544924,0.933777,0.19731,0.969434,0.897981,0.139768,0.129027,0.255097,0.447355,0.70315,0.905396,0.82871,0.494301,0.930832,0.121243,0.290398,0.390326,0.472888,0.523039,0.726454,0.91203,0.28044,0.255244,0.633542,0.592756,0.618949,0.791548,0.781112,0.636026,0.667789,0.291381,0.284479,0.819356,0.00775987,0.591924,0.696314,0.246417,0.0688734,0.0947674,0.10514,0.842699,0.548851,0.917761,0.0536751,0.815881,0.758223,0.215233,0.523865,0.473915,0.766475,0.388623,0.616884,0.959536,0.0783739,0.578996,0.038397,0.821945,0.0703251,0.0150026,0.724899,0.760777,0.690982,0.35976,0.0357422,0.842634,0.0800309,0.294058,0.705387,0.431984,0.940738,0.745726,0.581203,0.194271,0.905939,0.522878,0.780613,0.411297,0.312651,0.0685546,0.712628,0.0784706,0.152988,0.107329,0.363326,0.985271,0.860167,0.551644,0.63143,0.363618,0.405641,0.430587,0.52031,0.83153,0.0156164,0.419685,0.149588,0.367372,0.977336,0.456825,0.816104,0.202259,0.577115,0.514772,0.406776,0.588528,0.679686,0.772198,0.00359571,0.514652,0.319106,0.421454,0.22194,0.74748,0.457742,0.937258,0.945321,0.455528,0.211984,0.713329,0.709389,0.118156,0.0261955,0.872611,0.477107,0.725925,0.699289,0.860285,0.733546,0.614349,0.2644,0.861532,0.891871,0.386783,0.22224,0.0683637,0.395558,0.679434,0.715286,0.15307,0.889335,0.88155,0.32027,0.595739,0.641282,0.0692628,0.23231,0.74502,0.141111,0.996476,0.650762,0.381056,0.775402,0.150742,0.234225,0.863532,0.394354,0.245697,0.59408,0.978028,0.980525,0.731726,0.297421,0.749782,0.854668,0.792583,0.59733,0.329415,0.762233,0.808828,0.124197,0.99832,0.565213,0.42422,0.539907,0.298493,0.324865,0.981862,0.48263,0.449093,0.809318,0.660795,0.983572,0.443235,0.951325,0.590553,0.778501,0.286842,0.402452,0.852369,0.963602,0.727387,0.912673,0.219124,0.412559,0.607654,0.558811,0.979398,0.103173,0.687134,0.204616,0.145548,0.637742,0.390459,0.872046,0.338778,0.468611,0.561518,0.382113,0.629074,0.0713034,0.554278,0.448653,0.521356,0.739845,0.959769,0.0830079,0.205113,0.0940948,0.905828,0.671442,0.28289,0.107296,0.465856,0.530206,0.895426,0.232147,0.779095,0.992289,0.412848,0.46074,0.718961,0.448943,0.898471,0.324019,0.0674199,0.0678527,0.69231,0.094051,0.530394,0.928272,0.61334,0.652479,0.692324,0.394726,0.462218,0.879425,0.0362532,0.495731,0.329699,0.49007,0.0929682,0.0284316,0.458363,0.524573,0.341964,0.501499,0.381323,0.428198,0.337473,0.59137,0.306295,0.760312,0.484016,0.803081,0.689451,0.303359,0.171604,0.698622,0.399555,0.774377,0.755254,0.614026,0.501305,0.532384,0.936341,0.269401,0.149665,0.673203,0.625365,0.341646,0.325301,0.475633,0.645553,0.76621,0.177796,0.260614,0.40458,0.740217,0.640401,0.90975,0.969089,0.305319,0.792586,0.326233,0.473582,0.32858,0.644688,0.527869,0.840622,0.437546,0.713877,0.0217147,0.118907,0.232674,0.565109,0.317626,0.0400338,0.866547,0.795569,0.359292,0.333199,0.900856,0.714006,0.49593,0.835959,0.448996,0.112073,0.391952,0.201054,0.118996,0.548854,0.0370781,0.0556738,0.836788,0.663898,0.841943,0.0420065,0.293679,0.375582,0.0717577,0.358216,0.00461924,0.404876,0.506487,0.235342,0.0415123,0.199027,0.206377,0.583566,0.526559,0.0963799,0.803295,0.889428,0.0566292,0.529755,0.339421,0.193967,0.157453,0.915698,0.0595767,0.443677,0.140431,0.821606,0.898312,0.0190507,0.190299,0.93712,0.0148315,0.358728,0.266964,0.863627,0.798831,0.457207,0.918794,0.370188,0.460414,0.360506,0.992357,0.771879,0.0819817,0.203728,0.595308,0.0810452,0.433421,0.259837,0.981416,0.63634,0.344588,0.860207,0.92596,0.462274,0.363132,0.212798,0.727252,0.150943,0.341049,0.809432,0.873669,0.459912,0.530148,0.450222,0.397166,0.909595,0.441526,0.204778,0.134078,0.46974,0.56402,0.415251,0.00905073,0.30365,0.950361,0.516144,0.249069,0.663537,0.0858248,0.118592,0.534075,0.922943,0.865842,0.681293,0.883128,0.532235,0.356167,0.814868,0.404573,0.211476,0.627617,0.34576,0.128188,0.695883,0.357692,0.732321,0.572096,0.00834936,0.106512,0.57797,0.266567,0.886662,0.846746,0.53653,0.599139,0.905078,0.155582,0.0684347,0.0150759,0.115129,0.85632,0.942925,0.220677,0.81113,0.424692,0.0494166,0.733524,0.553848,0.881279,0.499986,0.908411,0.198031,0.3734,0.843545,0.949176,0.956471,0.35366,0.826097,0.705788,0.255706,0.883855,0.13852,0.579821,0.333645,0.140689,0.860311,0.665134,0.215086,0.596591,0.672895,0.495984,0.606327,0.342229,0.492653,0.600494,0.430214,0.0900888,0.901287,0.190705,0.477356,0.784204,0.468957,0.0899202,0.388756,0.256123,0.549079,0.0123579,0.32816,0.32075,0.549725,0.864511,0.162544,0.287149,0.914743,0.81899,0.0993743,0.585418,0.0708214,0.828817,0.957672,0.171338,0.931295,0.563957,0.746592,0.282958,0.183848,0.741809,0.835817,0.427096,0.492617,0.749285,0.159612,0.199562,0.480159,0.310542,0.21546,0.708913,0.00697416,0.893594,0.83011,0.152501,0.432194,0.661886,0.935797,0.820884,0.644593,0.199703,0.782779,0.249651,0.680425,0.566721,0.0419731,0.85053,0.528577,0.480252,0.236612,0.154768,0.971956,0.204236,0.904544,0.391684,0.206496,0.883316,0.906101,0.593179,0.322962,0.844272,0.659555,0.245786,0.765732,0.795953,0.57878,0.308068,0.265055,0.148604,0.376661,0.985954,0.313295,0.108045,0.527884,0.929037,0.0856261,0.561137,0.901987,0.797102,0.916329,0.112378,0.533244,0.442907,0.159174,0.321627,0.486639,0.839669,0.603919,0.220545,0.269741,0.911806,0.807481,0.225867,0.850786,0.198291,0.258551,0.736269,0.586534,0.702659,0.399087,0.072459,0.66198,0.200355,0.0992329,0.725775,0.424606,0.355916,0.336069,0.827383,0.225566,0.315723,0.116034,0.320504,0.246896,0.0103328,0.294044,0.350803,0.568058,0.460681,0.0488191,0.767036,0.509694,0.35387,0.887874,0.898517,0.85207,0.613063,0.918986,0.977566,0.134273,0.171306,0.965807,0.776762,0.961884,0.835283,0.84923,0.0126436,0.582837,0.157167,0.720579,0.912543,0.909967,0.520434,0.437862,0.108099,0.891888,0.836684,0.0833699,0.548207,0.950505,0.083118,0.325964,0.296871,0.93502,0.89565,0.455315,|0.675759,0.215814,0.856018,0.416358,0.121134,0.398026,0.419852,0.124241,0.0586423,0.987331,0.21271,0.214745,0.751878,0.273272,0.499577,0.731675,0.687374,0.758807,0.437972,0.688351,0.00594133,0.524519,0.792717,0.0220232,0.185439,0.560686,0.651506,0.678142,0.798609,0.0943838,0.840695,0.767214,0.914371,0.515629,0.617424,0.968423,0.254913,0.0802947,0.313762,0.578472,0.35207,0.931685,0.606956,0.581942,0.345366,0.0409571,0.954645,0.408478,0.145223,0.263399,0.750389,0.38248,0.149219,0.560527,0.635137,0.770221,0.712189,0.836346,0.425562,0.283334,0.261137,0.902133,0.999493,0.40138,0.669769,0.10417,0.492515,0.305681,0.409279,0.17916,0.854963,0.191848,0.0286844,0.93117,0.836659,0.971754,0.548108,0.933753,0.997439,0.8219,0.251992,0.0429336,0.335684,0.841194,0.989936,0.752423,0.651827,0.863199,0.306661,0.910784,0.38089,0.984042,0.714216,0.944134,0.54052,0.884298,0.172841,0.0551912,0.742845,0.122321,0.290025,0.0812207,0.656425,0.179465,0.789731,0.482311,0.780854,0.629164,0.202716,0.331556,0.786034,0.175571,0.636712,0.0823623,0.679976,0.224262,0.224867,0.747393,0.205528,0.206027,0.66849,0.416855,0.12869,0.0467368,0.45767,0.776902,0.43733,0.0429488,0.84844,0.504531,0.306302,0.837509,0.670409,0.361206,0.980113,0.734789,0.275277,0.0344514,0.976435,0.28637,0.321779,0.255798,0.343553,0.213913,0.0543147,0.544613,0.32971,0.958896,0.123115,0.732059,0.282979,0.397488,0.316339,0.530523,0.504931,0.88877,0.915665,0.241016,0.0540615,0.975623,0.170586,0.201305,0.860607,0.907473,0.58137,0.775414,0.0250036,0.737066,0.0951334,0.128373,0.72698,0.108325,0.302798,0.578779,0.0658552,0.593548,0.260905,0.969213,0.264232,0.341532,0.807625,0.697279,0.736762,0.955374,0.541805,0.0057109,0.041343,0.407352,0.42507,0.69771,0.701448,0.470882,0.840901,0.981536,0.562085,0.700513,0.279401,0.208453,0.526887,0.68773,0.0385065,0.879864,0.191003,0.31381,0.113443,0.931296,0.438256,0.0999695,0.67462,0.675032,0.237742,0.235303,0.618695,0.770094,0.0242029,0.60616,0.703235,0.710295,0.19256,0.633304,0.598608,0.487626,0.860346,0.225723,0.516022,0.941087,0.77521,0.453393,0.891686,0.85643,0.498067,0.254472,0.583767,0.909815,0.809831,0.534036,0.91417,0.177577,0.546017,0.883905,0.061437,0.383965,0.632646,0.734209,0.978705,0.143355,0.850382,0.456038,0.860942,0.152407,0.630319,0.884058,0.114263,0.0261661,0.96377,0.382205,0.735957,0.648194,0.869436,0.118981,0.896752,0.759324,0.226264,0.303259,0.490102,0.338322,0.833771,0.362664,0.967339,0.282254,0.133156,0.656146,0.0213875,0.952172,0.724209,0.295275,0.365761,0.629958,0.732365,0.178103,0.368627,0.121727,0.229639,0.0757436,0.919992,0.249606,0.510455,0.605408,0.415301,0.0753784,0.043566,0.316302,0.839136,0.381426,0.598411,0.207125,0.302831,0.815234,0.0999094,0.171089,0.41492,0.383481,0.833061,0.675798,0.298602,0.645949,0.560735,0.24856,0.472762,0.408534,0.394471,0.97283,0.9453,0.585593,0.523618,0.752804,0.795469,0.846894,0.490504,0.847987,0.615961,0.645012,0.808908,0.328721,0.644623,0.353521,0.764805,0.579308,0.522818,0.128874,0.434036,0.632659,0.635842,0.956717,0.123727,0.0275821,0.598588,0.427063,0.838562,0.652466,0.337323,0.818648,0.0822152,0.730209,0.819249,0.319417,0.966139,0.0865003,0.20578,0.134162,0.524809,0.793635,0.629201,0.888359,0.13453,0.508732,0.0378976,0.621042,0.431219,0.839789,0.881947,0.67299,0.575347,0.164502,0.0458515,0.546105,0.624909,0.306187,0.420598,0.826462,0.887383,0.893257,0.0970849,0.299182,0.992015,0.684516,0.400567,0.719357,0.625962,0.295026,0.880927,0.536767,0.763876,0.97755,0.725601,0.237977,0.299358,0.370791,0.370529,0.856216,0.250491,0.796742,0.994098,0.791621,0.773422,0.425059,0.764032,0.88341,0.398639,0.0687941,0.851212,0.854558,0.445365,0.356685,0.973405,0.578041,0.300467,0.32248,0.893073,0.801004,0.186233,0.520824,0.31662,0.841677,0.483565,0.814103,0.330566,0.804921,0.0529163,0.1136,0.672697,0.0889955,0.534753,0.37103,0.579051,0.244758,0.430644,0.880336,0.818782,0.21136,0.593109,0.13857,0.249514,0.123213,0.344429,0.205991,0.251293,0.112904,0.28606,0.115602,0.320153,0.751777,0.0774306,0.957332,0.514266,0.223539,0.236535,0.609388,0.414754,0.24921,0.872736,0.47179,0.301875,0.126317,0.756198,0.721439,0.294951,0.615772,0.596862,0.259022,0.989583,0.470054,0.970565,0.330773,0.964057,0.948987,0.398819,0.73061,0.634318,0.496958,0.610346,0.561356,0.85256,0.595869,0.566181,0.479817,0.451386,0.150877,0.938867,0.254228,0.489708,0.0767661,0.897719,0.869951,0.869154,0.998331,0.65891,0.414702,0.286355,0.110451,0.220182,0.139003,0.321705,0.957916,0.788224,0.884094,0.908532,0.322038,0.234227,0.278719,0.25999,0.977221,0.333382,0.0381848,0.0351966,0.233841,0.630195,0.491359,0.897768,0.391109,0.281994,0.980184,0.179838,0.225997,0.531799,0.0414099,0.945241,0.475946,0.840462,0.432901,0.726274,0.326394,0.628552,0.776803,0.417988,0.398533,0.384286,0.018512,0.0694293,0.23448,0.335789,0.725461,0.435437,0.0214054,0.961103,0.938908,0.25878,0.0309647,0.918548,0.286924,0.484269,0.249238,0.894767,0.0052411,0.820547,0.779008,0.00662565,0.736686,0.316819,0.927853,0.828103,0.324466,0.976611,0.493697,0.214305,0.0725816,0.473717,0.321218,0.686039,0.525205,0.389693,0.686639,0.153983,0.268308,0.174271,0.227499,0.329261,0.129798,0.0572065,0.467707,0.483858,0.545283,0.793697,0.927485,0.17233,0.709955,0.855178,0.720696,0.148607,0.989649,0.476264,0.774777,0.215441,0.7709,0.926973,0.311773,0.707492,0.449667,0.635145,0.162245,0.440824,0.188726,0.31714,0.473039,0.318018,0.747998,0.0502794,0.285237,0.784303,0.317139,0.626657,0.779782,0.320318,0.0816818,0.950158,0.661234,0.098027,0.228257,0.958759,0.103457,0.389525,0.432027,0.656049,0.225705,0.580472,0.804438,0.514214,0.517891,0.931179,0.163336,0.392131,0.414713,0.450503,0.63504,0.521892,0.465732,0.392029,0.946249,0.46447,0.306846,0.546972,0.665258,0.838268,0.241169,0.021569,0.417375,0.931097,0.871765,0.468488,0.501667,0.908094,0.906608,0.912266,0.39839,0.126009,0.426292,0.295382,0.338093,0.474574,0.680361,0.100167,0.346205,0.278532,0.222154,0.985423,0.482781,0.928305,0.833424,0.68305,0.784917,0.659393,0.626304,0.519406,0.482466,0.71313,0.59249,0.738361,0.950447,0.327081,0.555926,0.840982,0.156259,0.0335171,0.332361,0.427359,0.493085,0.543918,0.701629,0.668727,0.912978,0.903825,0.779845,0.788266,0.442957,0.31553,0.157606,0.350669,0.176538,0.751,0.380489,0.280156,0.43025,0.336154,0.240378,0.486761,0.656647,0.0962563,0.130894,0.467111,0.87936,0.617399,0.652641,0.597958,0.287422,0.711392,0.0463919,0.758585,0.917414,0.86924,0.0251018,0.0231082,0.777353,0.741335,0.797391,0.148842,0.118402,0.117342,0.67268,0.768802,0.943564,0.992045,0.90445,0.580571,0.175954,0.753812,0.565124,0.958935,0.724848,0.813496,0.192985,0.77074,0.267373,0.367805,0.271544,0.981501,0.501254,0.329924,0.266547,0.356403,0.27342,0.0693449,0.0192701,0.529573,0.999081,0.304061,0.352344,0.090778,0.251752,0.204057,0.999671,0.0302932,0.053739,0.322453,0.989485,0.0723807,0.00200635,0.748312,0.583023,0.998326,0.759623,0.490749,0.0230742,0.672985,0.597037,0.864374,0.936119,0.490489,0.435113,0.91859,0.343565,0.777806,0.0249832,0.602331,0.889934,0.054328,0.466692,0.666214,0.790486,0.449836,0.201895,0.961998,0.488208,0.432546,0.993878,0.172632,0.674199,0.151578,0.244112,0.0115169,0.0700355,0.282988,0.21853,0.525998,0.496276,0.610616,0.95226,0.0169557,0.712155,0.553363,0.73238,0.460448,0.855532,0.0680266,0.139564,0.467445,0.320413,0.199584,0.869131,0.545993,0.351076,0.12578,0.796918,0.415142,0.0686395,0.165865,0.476048,0.335227,0.142352,0.562156,0.292795,0.730027,0.0419188,0.903358,0.674071,0.480569,0.798057,0.567964,0.482994,0.980028,0.768966,0.440309,0.230396,0.0661959,0.455891,0.444425,0.62773,0.0920708,0.387008,0.597634,0.365193,0.990743,0.789631,0.986592,0.284933,0.78673,0.724994,0.565005,0.218912,0.240309,0.435703,0.182365,0.160437,0.251074,0.978698,0.865633,0.301153,0.736049,0.902478,0.0364906,0.580391,0.930846,0.089559,0.563371,0.0359312,0.889466,0.12924,0.987189,0.926029,0.58127,0.745177,0.555255,0.936964,0.00864989,0.962057,0.890076,0.057797,0.0283546,0.0542208,0.252309,0.967543,0.160751,0.715206,0.949965,0.420015,0.792971,0.381033,0.289629,0.553101,0.899583,0.778061,0.570668,0.679068,0.477434,0.590756,0.357188,0.428024,0.0963405,0.438422,0.830892,0.728529,0.728828,0.079358,0.435019,0.378865,0.888242,0.975749,0.887319,0.756445,0.805064,0.578581,0.0245441,0.212892,0.358157,0.481183,0.787914,0.92041,0.17708,0.223399,0.457805,0.435534,0.465915,0.171181,0.898397,0.135459,0.230652,0.351978,0.154307,0.492127,0.282765,0.436937,0.665967,0.522854,0.09603,0.485914,0.11049,0.707896,0.154824,0.575819,0.505273,0.760257,0.229128,0.118336,0.377725,0.475437,0.897013,0.458874,0.862395,0.0915554,0.815349,0.0999458,0.210707,0.186724,0.408563,0.39797,0.636207,0.0830905,0.848884,0.498062,0.545453,0.245165,0.906823,0.113999,0.437418,0.645907,0.615101,0.228012,0.572875,0.158648,0.0246924,0.455606,0.996458,0.538262,0.500585,0.43596,0.218964,0.998255,0.682867,0.512886,0.0698668,0.497495,0.963934,0.551693,0.529276,0.0221143,0.316283,0.656689,0.181239,0.425841,0.324721,0.427021,0.891715,0.894591,0.82675,0.335372,0.96374,0.260243,0.0115992,0.810078,0.0785334,0.041392,|0.626823,0.61911,0.518965,0.536543,0.395549,0.789767,0.970669,0.745695,0.224672,0.963081,0.660976,0.166786,0.604539,0.159594,0.0999538,0.750106,0.256675,0.505407,0.00355965,0.274189,0.573284,0.586093,0.973107,0.785855,0.229783,0.630913,0.783363,0.0314671,0.468378,0.991003,0.835314,0.499995,0.903369,0.935344,0.22226,0.0193635,0.651839,0.796391,0.874318,0.677268,0.00140935,0.352932,0.750116,0.75396,0.844188,0.0650511,0.86694,0.63995,0.880002,0.849987,0.651821,0.418777,0.477711,0.77351,0.509817,0.248514,0.0946561,0.45086,0.869424,0.514929,0.321589,0.56609,0.420531,0.643028,0.159272,0.171879,0.899246,0.474148,0.200247,0.229308,0.965479,0.759981,0.364619,0.409267,0.584895,0.763425,0.00409377,0.00436288,0.707105,0.449049,0.0556068,0.838233,0.761029,0.346235,0.0805616,0.151281,0.515311,0.821511,0.0265492,0.424973,0.929531,0.407153,0.709148,0.932789,0.501143,0.270809,0.457237,0.722551,0.511791,0.267794,0.0857639,0.730576,0.931733,0.182864,0.890312,0.977097,0.333198,0.190436,0.532347,0.235256,0.90642,0.500272,0.412504,0.867888,0.199874,0.0816228,0.772225,0.0549936,0.571707,0.99141,0.583221,0.2728,0.207371,0.571298,0.320804,0.0189947,0.226067,0.571872,0.988778,0.864147,0.622953,0.27028,0.494968,0.443789,0.148063,0.0604065,0.630489,0.908164,0.82492,0.217347,0.395223,0.860224,0.314676,0.95298,0.61911,0.660786,0.0725538,0.767645,0.936241,0.202693,0.926484,0.250129,0.686108,0.868568,0.187484,0.281009,0.375483,0.77361,0.090784,0.609065,0.952595,0.0423967,0.725955,0.0776843,0.31637,0.101257,0.624077,0.221224,0.932841,0.266084,0.0311337,0.320044,0.613019,0.294435,0.951891,0.242754,0.696173,0.0222409,0.662868,0.868741,0.611585,0.488941,0.389901,0.224047,0.498645,0.271122,0.576124,0.192148,0.70951,0.752352,0.511846,0.361862,0.926629,0.121657,0.93017,0.630289,0.43202,0.512,0.556487,0.166715,0.879512,0.605276,0.618892,0.393034,0.960848,0.643546,0.194778,0.648467,0.703689,0.422782,0.757337,0.252089,0.533887,0.273673,0.854196,0.703278,0.886073,0.0462834,0.457867,0.0524319,0.376587,0.385701,0.00999141,0.848363,0.141879,0.744276,0.647479,0.361338,0.818953,0.945009,0.207846,0.847046,0.0752009,0.564362,0.755878,0.0992649,0.531514,0.577413,0.19837,0.711639,0.693637,0.707002,0.706797,0.86653,0.891053,0.025718,0.295354,0.831065,0.415431,0.136256,0.980489,0.913848,0.306401,0.229992,0.0194393,0.176971,0.420174,0.376146,0.23686,0.825461,0.917781,0.132135,0.682611,0.568145,0.772307,0.651439,0.406623,0.13828,0.294083,0.620403,0.662945,0.249581,0.724095,0.156157,0.789069,0.870719,0.743205,0.679472,0.726557,0.682631,0.450476,0.993092,0.457246,0.888066,0.710981,0.496859,0.62998,0.560824,0.0583373,0.37804,0.485128,0.169111,0.468764,0.390035,0.565464,0.48022,0.886448,0.527776,0.487381,0.64229,0.3468,0.157782,0.600813,0.767078,0.938567,0.0280418,0.695221,0.815951,0.772345,0.0871467,0.271121,0.0101007,0.260313,0.160825,0.438952,0.87478,0.0230539,0.900856,0.388193,0.411105,0.54646,0.3703,0.597887,0.49483,0.220667,0.670042,0.329057,0.901504,0.631268,0.363173,0.876497,0.836623,0.322029,0.113977,0.911578,0.432287,0.865061,0.34756,0.229155,0.0275416,0.266286,0.864508,0.213948,0.993027,0.229844,0.098775,0.61751,0.756957,0.756024,0.836087,0.431604,0.828629,0.159156,0.47112,0.900684,0.974179,0.25194,0.115282,0.121604,0.87318,0.924492,0.692173,0.392807,0.722261,0.828209,0.777222,0.471544,0.308098,0.069068,0.174307,0.068536,0.169636,0.817648,0.250693,0.496345,0.725951,0.0374016,0.0513627,0.510422,0.179421,0.396418,0.972118,0.603762,0.794392,0.936483,0.801569,0.471072,0.198328,0.0735448,0.414216,0.696886,0.165311,0.872586,0.969089,0.984616,0.597447,0.932,0.505182,0.987563,0.473753,0.474275,0.135628,0.701685,0.5376,0.36591,0.209808,0.801172,0.99849,0.0502576,0.371681,0.302044,0.353262,0.0264486,0.532645,0.340815,0.328526,0.969436,0.0395581,0.0200077,0.319142,0.701432,0.885758,0.268677,0.276802,0.563689,0.792006,0.237059,0.480008,0.337124,0.450778,0.0268015,0.324647,0.0142716,0.678741,0.473323,0.336186,0.551934,0.104534,0.494687,0.943409,0.814927,0.0861553,0.916732,0.43941,0.844523,0.0865171,0.968727,0.987421,0.730155,0.0290502,0.386979,0.63515,0.762362,0.602213,0.797344,0.255297,0.478004,0.690369,0.183904,0.304865,0.68305,0.418039,0.847383,0.391696,0.99799,0.641559,0.978008,0.303324,0.902633,0.86319,0.920909,0.824686,0.948179,0.169768,0.476515,0.253929,0.655761,0.77117,0.402861,0.836587,0.206596,0.671106,0.618475,0.0584471,0.769053,0.372962,0.457846,0.802891,0.541211,0.43871,0.0269662,0.655257,0.463148,0.123463,0.753386,0.943588,0.357654,0.669876,0.54039,0.140081,0.479123,0.978368,0.0529155,0.650901,0.598488,0.220505,0.655899,0.536007,0.0930118,0.256665,0.941351,0.366906,0.946098,0.163177,0.965929,0.875198,0.506296,0.886221,0.485666,0.781092,0.0497515,0.73608,0.0151489,0.727894,0.167584,0.0157319,0.390628,0.557633,0.435833,0.710376,0.740783,0.675692,0.149127,0.722052,0.0367978,0.353932,0.716308,0.817986,0.699865,0.219847,0.274267,0.0987577,0.480851,0.846197,0.362291,0.923031,0.75004,0.254002,0.319769,0.332905,0.9181,0.491534,0.244021,0.772103,0.833192,0.0113082,0.948395,0.903928,0.900444,0.586416,0.218186,0.156732,0.368845,0.586062,0.942418,0.46974,0.156959,0.983544,0.140249,0.282255,0.584245,0.510062,0.1874,0.275057,0.717566,0.900429,0.0680209,0.965812,0.0850191,0.460115,0.596424,0.640051,0.633141,0.134592,0.250493,0.157122,0.0515596,0.582386,0.0993676,0.0513955,0.405852,0.915177,0.934867,0.20266,0.0886049,0.840575,0.094512,0.376404,0.363025,0.608202,0.738616,0.0256128,0.618528,0.0365484,0.951761,0.136417,0.380641,0.300282,0.48931,0.562481,0.172085,0.13357,0.2125,0.736484,0.906447,0.185013,0.620007,0.4794,0.913832,0.443977,0.987041,0.151557,0.784416,0.747916,0.232749,0.128961,0.392253,0.889736,0.544524,0.239609,0.0774395,0.296882,0.549353,0.0127207,0.573134,0.430537,0.994463,0.011083,0.111257,0.170635,0.370094,0.811215,0.37963,0.977076,0.750854,0.212522,0.537114,0.666766,0.233545,0.938841,0.342064,0.800265,0.557299,0.465722,0.696968,0.197079,0.520213,0.727256,0.166753,0.233283,0.209093,0.586628,0.367235,0.334409,0.970128,0.97945,0.777426,0.336997,0.668603,0.411356,0.908015,0.0837675,0.103434,0.747874,0.825184,0.646328,0.547709,0.427867,0.0395746,0.63406,0.0629786,0.216139,0.880097,0.601591,0.0542504,0.354774,0.555071,0.0901664,0.381011,0.565663,0.102314,0.120784,0.000693619,0.616578,0.750858,0.0716352,0.597259,0.826307,0.0736207,0.440335,0.752872,0.919618,0.663389,0.122129,0.0285934,0.986508,0.0882242,0.490673,0.36167,0.967299,0.180062,0.422645,0.821182,0.87031,0.436583,0.98065,0.188826,0.0958035,0.168347,0.566479,0.42028,0.979975,0.256037,0.345591,0.120622,0.491269,0.722076,0.291426,0.961991,0.054836,0.0324618,0.496055,0.357447,0.138181,0.432835,0.126371,0.399196,0.458946,0.571087,0.354403,0.63755,0.0975319,0.180298,0.00576651,0.566876,0.790979,0.337829,0.190542,0.441801,0.318012,0.47613,0.110379,0.723204,0.108911,0.338785,0.963717,0.789408,0.760471,0.310196,0.290374,0.315238,0.624919,0.715617,0.184,0.91777,0.453295,0.976842,0.828651,0.0454589,0.798237,0.320777,0.737176,0.533631,0.412962,0.151461,0.231525,0.63882,0.143154,0.51279,0.0735793,0.758904,0.648868,0.500234,0.760939,0.496612,0.993669,0.740588,0.886381,0.943762,0.127781,0.556129,0.221213,0.301065,0.981578,0.362307,0.120971,0.423318,0.846943,0.406477,0.362144,0.231858,0.928262,0.525256,0.604018,0.127227,0.138224,0.999962,0.47845,0.206675,0.15777,0.869,0.790177,0.768491,0.302804,0.851533,0.964325,0.623061,0.909999,0.786245,0.647973,0.420523,0.795342,0.947778,0.685296,0.768335,0.0422252,0.682069,0.931313,0.330308,0.852267,0.622382,0.757385,0.872471,0.951682,0.256242,0.154669,0.847487,0.498495,0.585899,0.487745,0.526777,0.854141,0.947298,0.876353,0.861357,0.736717,0.132683,0.0263794,0.549706,0.183929,0.344149,0.327095,0.629241,0.293359,0.802816,0.881055,0.86398,0.281512,0.158868,0.692179,0.467304,0.819285,0.551762,0.435998,0.853847,0.146265,0.452051,0.363811,0.268585,0.281464,0.267678,0.714997,0.040193,0.456558,0.285468,0.493651,0.312665,0.906354,0.407871,0.118265,0.970293,0.812747,0.831934,0.322816,0.297082,0.950917,0.658428,0.499717,0.684681,0.435463,0.949453,0.0690751,0.109927,0.205945,0.991189,0.885532,0.682085,0.483583,0.97676,0.566198,0.804729,0.65087,0.865515,0.411775,0.189577,0.136717,0.179313,0.703258,0.792964,0.399617,0.327542,0.26723,0.720824,0.514755,0.874435,0.91667,0.951434,0.855445,0.400095,0.0323452,0.526988,0.370013,0.94997,0.548411,0.932462,0.717426,0.96175,0.476353,0.926974,0.542071,0.298256,0.21358,0.745676,0.431352,0.510457,0.12574,0.558591,0.495613,0.292631,0.223428,0.169315,0.112335,0.744015,0.373415,0.978919,0.713689,0.50355,0.147766,0.490691,0.319372,0.87166,0.536477,0.771966,0.0210758,0.96914,0.511988,0.866106,0.233491,0.17662,0.682773,0.125036,0.437635,0.713926,0.384553,0.521845,0.502115,0.943388,0.526486,0.094614,0.570445,0.838506,0.15495,0.42895,0.983667,0.171849,0.98062,0.463503,0.171832,0.688029,0.471326,0.564935,0.82289,0.390556,0.490193,0.154465,0.404452,0.738046,0.263854,0.815803,0.576461,0.449077,0.666573,0.0790948,0.769427,0.619979,0.522853,0.523269,0.704813,0.26372,0.757325,|0.385607,0.549246,0.570709,0.204195,0.0713279,0.696101,0.738167,0.344586,0.717776,0.811889,0.573735,0.432301,0.00983071,0.00685757,0.0359114,0.051366,0.962692,0.856803,0.391658,0.0317936,0.0154518,0.58417,0.071689,0.963875,0.751962,0.439984,0.19475,0.968779,0.23034,0.0992115,0.0672964,0.894739,0.152056,0.327961,0.294281,0.303357,0.956082,0.386886,0.859822,0.121713,0.49243,0.582653,0.772677,0.470619,0.897088,0.0382258,0.435141,0.991283,0.0213482,0.749677,0.309337,0.763156,0.642082,0.209121,0.156813,0.841634,0.0901368,0.427035,0.428768,0.903798,0.425557,0.228725,0.485403,0.759246,0.0876313,0.543808,0.923942,0.6463,0.764588,0.536097,0.894673,0.372513,0.162016,0.539108,0.745123,0.998103,0.940138,0.188021,0.5431,0.922401,0.255895,0.907921,0.919479,0.798035,0.621211,0.795987,0.500174,0.448019,0.875116,0.856442,0.440884,0.325361,0.459933,0.436887,0.628982,0.197267,0.0369372,0.230259,0.121875,0.670787,0.816083,0.181973,0.430845,0.714663,0.97978,0.592669,0.758853,0.673141,0.948783,0.60855,0.11863,0.260857,0.0610572,0.212557,0.894327,0.252998,0.515095,0.72361,0.564745,0.287064,0.932516,0.410711,0.133348,0.0710113,0.957359,0.864551,0.483149,0.701722,0.330173,0.429775,0.448657,0.890827,0.561499,0.998739,0.883845,0.47333,0.186867,0.0910122,0.107237,0.633989,0.762188,0.627573,0.183779,0.493998,0.935487,0.0759643,0.547096,0.212558,0.709125,0.335157,0.638904,0.328792,0.662628,0.639405,0.779739,0.557606,0.808851,0.0751938,0.195993,0.216873,0.62026,0.108273,0.226082,0.2695,0.303321,0.770871,0.555025,0.336878,0.356611,0.224417,0.651473,0.296419,0.464495,0.634982,0.764981,0.613238,0.837375,0.135385,0.916192,0.527436,0.0249181,0.873964,0.979199,0.431964,0.654108,0.308533,0.641807,0.452837,0.944626,0.0545639,0.354382,0.577017,0.256916,0.197011,0.294638,0.552344,0.00895709,0.652931,0.42344,0.0453588,0.262006,0.294306,0.0342003,0.466907,0.812394,0.244279,0.280722,0.11745,0.218713,0.464562,0.907738,0.973662,0.910934,0.243742,0.131805,0.702466,0.576059,0.495124,0.270423,0.350831,0.267812,0.427289,0.983096,0.838787,0.256335,0.430066,0.05996,0.407944,0.880572,0.483583,0.457233,0.496191,0.474637,0.206277,0.156393,0.469262,0.173714,0.776538,0.414667,0.693831,0.065351,0.0812343,0.359622,0.832282,0.415117,0.98757,0.311837,0.422468,0.921606,0.189929,0.812874,0.0871272,0.490458,0.602611,0.736908,0.661822,0.981569,0.4497,0.252413,0.344482,0.354922,0.00595897,0.062429,0.954091,0.574356,0.688284,0.673302,0.856863,0.753067,0.733876,0.991518,0.336509,0.603598,0.734737,0.187133,0.73139,0.841947,0.61378,0.491162,0.958108,0.931214,0.0243593,0.791787,0.940473,0.725724,0.217229,0.442835,0.758192,0.293784,0.736613,0.4759,0.564919,0.455339,0.217127,0.212322,0.85206,0.355627,0.945457,0.638074,0.969046,0.772383,0.989905,0.000393569,0.547088,0.251759,0.44768,0.882914,0.695027,0.638545,0.468218,0.479013,0.2136,0.509045,0.739138,0.158451,0.167029,0.295624,0.924142,0.803376,0.856247,0.16816,0.612836,0.473227,0.444292,0.748265,0.407176,0.412299,0.620115,0.0778341,0.170083,0.394471,0.0750692,0.850785,0.0852402,0.533439,0.574003,0.0829731,0.118174,0.240617,0.296863,0.360066,0.184449,0.453476,0.614647,0.153619,0.535128,0.149623,0.419567,0.239155,0.108673,0.68999,0.536973,0.130143,0.862695,0.776814,0.908517,0.688847,0.273051,0.873866,0.916877,0.56881,0.529446,0.977944,0.619485,0.365537,0.265406,0.157888,0.761878,0.778786,0.532899,0.618439,0.904089,0.925184,0.0863,0.404683,0.251921,0.735167,0.0749855,0.0217327,0.339216,0.29967,0.905103,0.0659614,0.830803,0.433829,0.996154,0.51544,0.269036,0.16775,0.911067,0.821898,0.727587,0.697164,0.639185,0.164206,0.791876,0.858898,0.479947,0.879918,0.419766,0.418342,0.232716,0.223442,0.941851,0.0388584,0.134579,0.85985,0.45821,0.50588,0.359234,0.305673,0.697376,0.859013,0.449151,0.105529,0.684499,0.277018,0.127819,0.467967,0.313323,0.773796,0.337388,0.428505,0.193212,0.283163,0.0452627,0.224527,0.730471,0.466807,0.916537,0.807018,0.379272,0.6155,0.235732,0.200015,0.340909,0.277677,0.749413,0.158276,0.80772,0.371948,0.228282,0.586099,0.114062,0.727555,0.377938,0.467433,0.929219,0.15614,0.438408,0.574046,0.812145,0.770132,0.909949,0.768207,0.66051,0.525656,0.772617,0.479089,0.24336,0.692254,0.6151,0.83865,0.892763,0.0747061,0.832389,0.0368955,0.661088,0.279513,0.677182,0.835825,0.369147,0.810755,0.109517,0.470016,0.0151595,0.0577359,0.628751,0.0139138,0.797548,0.0299965,0.21446,0.0205629,0.452886,0.579968,0.596379,0.308413,0.152973,0.977758,0.0928427,0.824221,0.0106094,0.660252,0.251227,0.473281,0.0302772,0.447231,0.853573,0.483546,0.477292,0.410297,0.860892,0.445142,0.847086,0.134411,0.795897,0.137479,0.786061,0.959228,0.0619689,0.13811,0.0350686,0.772699,0.370363,0.963956,0.908012,0.482623,0.144685,0.871573,0.913033,0.320592,0.535321,0.0581409,0.607998,0.0952128,0.116575,0.0899224,0.673244,0.817203,0.482782,0.120677,0.329098,0.570446,0.0808732,0.62367,0.919188,0.800188,0.0105251,0.622419,0.60645,0.415766,0.216872,0.204865,0.968908,0.751593,0.515444,0.195026,0.974622,0.455177,0.973106,0.155492,0.47161,0.507985,0.0452254,0.284398,0.0354789,0.598288,0.899338,0.596896,0.45838,0.4399,0.618347,0.148464,0.748346,0.220757,0.366132,0.37164,0.468167,0.360854,0.961087,0.670118,0.574208,0.49103,0.110757,0.122104,0.889045,0.371476,0.00932628,0.329555,0.635088,0.26295,0.170591,0.908128,0.799571,0.599876,0.25675,0.691639,0.894008,0.305985,0.549573,0.0831307,0.157957,0.667624,0.456404,0.796249,0.499036,0.800377,0.168487,0.318728,0.511064,0.114578,0.799991,0.893574,0.831963,0.354736,0.161746,0.788454,0.254827,0.964577,0.53781,0.517423,0.675066,0.986198,0.904081,0.923094,0.306954,0.330433,0.241867,0.543757,0.215402,0.364184,0.95782,0.614853,0.639731,0.444302,0.640183,0.968484,0.617491,0.703062,0.233947,0.844117,0.448488,0.990363,0.755146,0.896022,0.557691,0.810005,0.931901,0.762256,0.73327,0.968967,0.191601,0.892329,0.140822,0.536307,0.221689,0.40091,0.502574,0.924488,0.909595,0.880928,0.654602,0.991597,0.525543,0.867344,0.749733,0.568199,0.393001,0.474375,0.357942,0.840914,0.803448,0.354668,0.649856,0.746067,0.85821,0.180221,0.785219,0.615425,0.279824,0.657158,0.801037,0.598949,0.471891,0.511561,0.869905,0.791557,0.762621,0.0132151,0.675695,0.682286,0.541001,0.0602392,0.851442,0.298741,0.460499,0.722608,0.895952,0.431239,0.523448,0.651335,0.73843,0.300637,0.287763,0.580039,0.405944,0.080411,0.89973,0.097219,0.661122,0.739311,0.45482,0.142898,0.17289,0.45963,0.834626,0.684427,0.46688,0.391266,0.927298,0.419271,0.401662,0.38674,0.272944,0.157757,0.0704371,0.277415,0.251057,0.984183,0.342847,0.344988,0.975135,0.171389,0.966799,0.877541,0.637234,0.429585,0.765711,0.498718,0.627065,0.209501,0.802914,0.972287,0.318452,0.250877,0.976518,0.390662,0.420853,0.345317,0.21649,0.938825,0.475529,0.288217,0.276212,0.90329,0.111615,0.169767,0.0461797,0.195456,0.533143,0.597079,0.253298,0.366282,0.259898,0.891507,0.323623,0.327389,0.458006,0.658144,0.681766,0.782583,0.561989,0.949424,0.496501,0.777222,0.966493,0.923955,0.981507,0.173786,0.532499,0.415296,0.365061,0.701342,0.955706,0.143465,0.976582,0.410695,0.0469205,0.342947,0.157498,0.49522,0.328853,0.287224,0.79779,0.961835,0.775015,0.548659,0.649058,0.409976,0.317444,0.557957,0.754195,0.735183,0.0268907,0.530644,0.51685,0.694545,0.285157,0.865914,0.34126,0.984976,0.157756,0.508541,0.972834,0.748137,0.94123,0.457797,0.605543,0.628426,0.574663,0.947993,0.451793,0.0263415,0.662658,0.132825,0.928017,0.810317,0.522656,0.636217,0.785258,0.0195552,0.103419,0.195542,0.852175,0.576454,0.178128,0.360714,0.422977,0.415624,0.586903,0.192952,0.410787,0.401776,0.0946078,0.95502,0.964758,0.490836,0.130572,0.276878,0.313926,0.444256,0.399384,0.404859,0.0583656,0.0247178,0.310223,0.671909,0.990459,0.442713,0.17146,0.165636,0.900475,0.479558,0.309551,0.660842,0.17247,0.851918,0.713269,0.936102,0.881957,0.854337,0.363803,0.802897,0.984544,0.744828,0.775943,0.467277,0.761547,0.263559,0.447875,0.912272,0.455232,0.94593,0.936557,0.178927,0.485668,0.58744,0.230786,0.69983,0.294877,0.643753,0.311954,0.249234,0.130439,0.248532,0.856151,0.362743,0.19053,0.945809,0.878032,0.0852398,0.370493,0.358896,0.0577074,0.811552,0.770155,0.947443,0.769222,0.955008,0.221452,0.880847,0.423688,0.787478,0.301799,0.748358,0.647604,0.324646,0.579413,0.424004,0.717338,0.970197,0.0703367,0.876502,0.080177,0.830887,0.452261,0.857064,0.544657,0.511136,0.531855,0.727367,0.15888,0.0196858,0.888546,0.126231,0.619381,0.704464,0.492362,0.258664,0.688381,0.980053,0.709437,0.917812,0.220739,0.466696,0.65876,0.704907,0.923016,0.807511,0.793035,0.46708,0.764204,0.309143,0.0695856,0.436171,0.949821,0.148352,0.708282,0.893812,0.161993,0.664928,0.448007,0.712062,0.186004,0.305143,0.40553,0.209608,0.121414,0.366229,0.730346,0.617847,0.75043,0.839215,0.122215,0.998594,0.559663,0.561581,0.73016,0.963104,0.921,0.0592358,0.527566,0.275717,0.897298,0.286401,0.0171173,0.474489,0.314483,0.818018,0.800391,0.129686,0.919919,0.859675,0.123411,0.886226,0.989069,0.312606,0.71474,0.606252,0.817017,0.333625,0.15962,0.45514,0.283581,0.521118,0.0295916,0.0759428,0.910319,0.0564885,0.351199,|0.0123722,0.886835,0.160963,0.589335,0.0343075,0.974623,0.822895,0.830251,0.932443,0.286565,0.421419,0.74523,0.798739,0.410039,0.337399,0.193435,0.457775,0.358428,0.437077,0.708172,0.640929,0.819094,0.100072,0.469896,0.360694,0.647517,0.24032,0.133363,0.479424,0.231057,0.982105,0.0934529,0.54718,0.981215,0.198327,0.684183,0.996131,0.346135,0.349537,0.82907,0.834048,0.699111,0.893747,0.00667185,0.921435,0.228635,0.195027,0.176329,0.203277,0.182477,0.466422,0.411513,0.0658689,0.842257,0.886746,0.371009,0.869473,0.0362234,0.487249,0.862608,0.628911,0.543064,0.705239,0.973664,0.734998,0.311363,0.772577,0.672611,0.884447,0.853436,0.231476,0.704522,0.237961,0.0662634,0.524889,0.519848,0.6673,0.199688,0.0561532,0.303882,0.931958,0.886842,0.050903,0.406912,0.727763,0.224084,0.215964,0.872848,0.210882,0.204249,0.856397,0.0341172,0.154043,0.214989,0.784963,0.519652,0.433576,0.135278,0.937055,0.249865,0.393377,0.0853801,0.832102,0.117991,0.821288,0.575051,0.602641,0.320768,0.153517,0.357669,0.627958,0.313594,0.0990488,0.0187757,0.160094,0.944539,0.493565,0.20647,0.10841,0.812433,0.333948,0.897557,0.633036,0.905359,0.506583,0.962777,0.898751,0.469617,0.709202,0.594774,0.961471,0.520371,0.299795,0.655176,0.375071,0.684795,0.766686,0.533788,0.188153,0.0849301,0.910399,0.43597,0.55325,0.558694,0.787566,0.692366,0.557898,0.127125,0.579847,0.893464,0.20652,0.728762,0.561091,0.242392,0.282177,0.835557,0.884401,0.376666,0.979803,0.201296,0.173569,0.359784,0.0903469,0.927111,0.32151,0.645363,0.95084,0.0372402,0.603881,0.0861244,0.725914,0.804382,0.453219,0.77687,0.641279,0.660361,0.567087,0.485949,0.861758,0.809288,0.86305,0.865562,0.0526556,0.788932,0.23664,0.820418,0.873214,0.412568,0.453555,0.730831,0.156842,0.287802,0.919002,0.260787,0.389298,0.534331,0.413229,0.0852855,0.312424,0.0262949,0.952171,0.636793,0.986549,0.727784,0.383047,0.986589,0.527566,0.463461,0.89797,0.362213,0.591922,0.954579,0.693968,0.60396,0.476276,0.242331,0.440228,0.61441,0.129898,0.372252,0.498181,0.803839,0.0658907,0.306064,0.364086,0.567837,0.832159,0.940057,0.281567,0.856019,0.262072,0.215288,0.999817,0.785529,0.740938,0.977188,0.739389,0.826213,0.717087,0.0530728,0.417276,0.348908,0.670347,0.244822,0.190999,0.190184,0.64916,0.426387,0.396285,0.836375,0.596504,0.537473,0.656986,0.837909,0.794691,0.92319,0.783324,0.397355,0.770941,0.388898,0.372167,0.0556757,0.125062,0.144815,0.149999,0.171643,0.320404,0.246036,0.832528,0.858061,0.32345,0.97762,0.975826,0.889334,0.885548,0.123202,0.643154,0.318842,0.455096,0.517614,0.694273,0.220813,0.986704,0.275895,0.637399,0.169936,0.39647,0.455996,0.717116,0.959944,0.49878,0.80708,0.57773,0.176414,0.324995,0.215664,0.246924,0.771206,0.147193,0.392233,0.229879,0.927037,0.413988,0.983815,0.00242931,0.241964,0.0650223,0.111477,0.278795,0.977913,0.796107,0.587311,0.975226,0.478197,0.707612,0.711892,0.159817,0.156398,0.0873368,0.361495,0.673262,0.356495,0.025944,0.266413,0.855879,0.670633,0.349673,0.778582,0.810892,0.622986,0.885067,0.850836,0.306499,0.76556,0.703006,0.891535,0.212926,0.786033,0.148628,0.828529,0.964239,0.134189,0.269779,0.539376,0.330445,0.524095,0.476285,0.881947,0.836815,0.228235,0.799661,0.0250233,0.771386,0.677289,0.969604,0.997759,0.127067,0.272239,0.00175095,0.711718,0.987013,0.755611,0.901094,0.0980175,0.342486,0.591471,0.20768,0.361699,0.735966,0.713757,0.291889,0.96478,0.104668,0.191218,0.38617,0.522686,0.418222,0.113575,0.0691015,0.977778,0.386514,0.78577,0.954245,0.0867819,0.0617625,0.899942,0.692499,0.58707,0.131187,0.149202,0.165286,0.281025,0.371482,0.908588,0.565967,0.93234,0.66608,0.9621,0.629301,0.268342,0.302238,0.449499,0.555017,0.697841,0.189427,0.611909,0.925837,0.22068,0.306965,0.364878,0.157264,0.690665,0.447267,0.137032,0.472427,0.7174,0.350217,0.93872,0.838873,0.00218999,0.751897,0.53462,0.926215,0.410212,0.0157824,0.232979,0.28282,0.622928,0.0653664,0.66936,0.69968,0.0833225,0.239713,0.632138,0.583457,0.203092,0.51516,0.190147,0.796974,0.704653,0.775468,0.927113,0.712355,0.233184,0.210337,0.0897722,0.577157,0.664852,0.941521,0.848524,0.615011,0.14021,0.904786,0.877242,0.841383,0.729692,0.859588,0.840311,0.276275,0.636138,0.39384,0.470389,0.9123,0.966827,0.561094,0.518301,0.432845,0.377446,0.216209,0.273753,0.802746,0.704277,0.00607061,0.600891,0.256171,0.803506,0.279069,0.648456,0.753525,0.174492,0.114045,0.411779,0.720661,0.852645,0.60175,0.633281,0.897291,0.528809,0.333224,0.70283,0.633311,0.757754,0.811347,0.961426,0.95832,0.504211,0.871326,0.127444,0.371676,0.0814643,0.595278,0.665964,0.393948,0.866592,0.570703,0.199881,0.253506,0.592169,0.661174,0.366851,0.386219,0.700151,0.0231306,0.997908,0.184981,0.940563,0.239863,0.852923,0.109688,0.454076,0.553488,0.755664,0.00895953,0.0774193,0.447023,0.590021,0.960815,0.742622,0.280059,0.85523,0.418742,0.323408,0.285161,0.894101,0.852867,0.948723,0.17175,0.418207,0.202982,0.566278,0.67671,0.974738,0.486487,0.656107,0.392792,0.0145559,0.407003,0.770297,0.874038,0.215321,0.962866,0.61538,0.485519,0.13364,0.357843,0.175908,0.751084,0.643515,0.631457,0.91277,0.934747,0.755859,0.443675,0.508512,0.749762,0.684063,0.132812,0.699734,0.414038,0.107814,0.860188,0.77719,0.849242,0.541059,0.290555,0.455451,0.638203,0.342517,0.716302,0.532599,0.790595,0.20622,0.782945,0.932353,0.304033,0.675497,0.381386,0.681235,0.909294,0.57535,0.240399,0.410014,0.544903,0.537029,0.653001,0.0523046,0.351808,0.632122,0.911937,0.308736,0.993707,0.107755,0.517828,0.870533,0.433927,0.839726,0.078208,0.962404,0.631973,0.0325356,0.83546,0.453553,0.471416,0.073747,0.915494,0.707024,0.0159296,0.290866,0.71571,0.807636,0.890893,0.881228,0.389201,0.0293915,0.715486,0.868664,0.33191,0.724092,0.926623,0.405167,0.0246904,0.322413,0.176775,0.0909469,0.859561,0.532575,0.966239,0.735005,0.611454,0.13098,0.444737,0.693505,0.719942,0.906563,0.595802,0.502522,0.17693,0.328844,0.461102,0.471682,0.817183,0.680729,0.766506,0.131461,0.70878,0.778137,0.681895,0.872654,0.0567703,0.0949056,0.392277,0.610216,0.512444,0.613551,0.559749,0.551071,0.385111,0.429528,0.197467,0.660627,0.148281,0.0488824,0.754827,0.385021,0.955307,0.794472,0.557094,0.748226,0.74368,0.861874,0.287439,0.842586,0.651554,0.281671,0.746994,0.228507,0.568063,0.758692,0.79473,0.116795,0.353719,0.561676,0.0537323,0.722447,0.80347,0.691064,0.150502,0.172663,0.146736,0.0894274,0.789006,0.438102,0.642157,0.169186,0.774523,0.830981,0.770003,0.624897,0.958678,0.678126,0.452211,0.366856,0.879693,0.275181,0.505686,0.663765,0.68696,0.418459,0.83651,0.203376,0.0599782,0.20284,0.888531,0.737716,0.952009,0.544824,0.59819,0.482021,0.096311,0.836544,0.174967,0.266277,0.122758,0.682261,0.885601,0.453313,0.592258,0.500316,0.508557,0.0411119,0.639175,0.287847,0.366819,0.627528,0.386558,0.785615,0.59922,0.958244,0.544503,0.399194,0.119815,0.508585,0.122979,0.057851,0.162791,0.201022,0.375935,0.454588,0.35589,0.427316,0.690006,0.846989,0.591274,0.508279,0.0209358,0.579202,0.0689834,0.469959,0.645263,0.661165,0.787735,0.579648,0.753227,0.916527,0.398851,0.219637,0.304844,0.880663,0.409472,0.00338072,0.266137,0.36425,0.98499,0.6432,0.170544,0.493639,0.98761,0.597403,0.183431,0.281034,0.919608,0.227326,0.228013,0.283691,0.133422,0.385903,0.137538,0.0665004,0.952295,0.994282,0.881998,0.144383,0.28663,0.250848,0.535887,0.89592,0.588953,0.223206,0.153276,0.0576813,0.346076,0.784976,0.807036,0.0265756,0.0698251,0.086899,0.361059,0.637837,0.0540364,0.467861,0.680923,0.814505,0.832706,0.340071,0.616194,0.153263,0.860883,0.466967,0.789059,0.793793,0.300104,0.674385,0.597514,0.0212848,0.858968,0.788057,0.428388,0.530869,0.266924,0.821941,0.335198,0.0417905,0.979053,0.527581,0.186029,0.283911,0.251241,0.747178,0.617294,0.314325,0.716579,0.606479,0.136853,0.360588,0.707025,0.872006,0.86697,0.0569571,0.0648911,0.156736,0.962622,0.314393,0.0275652,0.116228,0.625825,0.495055,0.798393,0.314933,0.0508472,0.464371,0.931227,0.460096,0.67658,0.713674,0.871777,0.0880212,0.280051,0.955726,0.929443,0.949833,0.148778,0.928352,0.562301,0.683513,0.989983,0.750301,0.59394,0.515609,0.579015,0.923114,0.165131,0.928247,0.623255,0.0589409,0.204435,0.278477,0.141605,0.842174,0.227461,0.788163,0.0790412,0.956119,0.435288,0.0391204,0.968173,0.770095,0.832227,0.404063,0.955955,0.829022,0.615233,0.910839,0.744115,0.405857,0.929603,0.995324,0.39309,0.640643,0.339123,0.731656,0.869292,0.141273,0.836638,0.311365,0.339403,0.67808,0.345201,0.843889,0.652414,0.954103,0.840776,0.225055,0.234487,0.0416105,0.596584,0.409925,0.815964,0.263764,0.292461,0.26048,0.469821,0.173805,0.936777,0.994683,0.032034,0.793601,0.39142,0.414886,0.112013,0.757043,0.117253,0.286437,0.27296,0.451876,0.817875,0.535373,0.692696,0.26341,0.0336084,0.28202,0.106753,0.916141,0.594123,0.436186,0.865316,0.998274,0.919093,0.654494,0.0488009,0.848037,0.486024,0.520382,0.686536,0.407036,0.504303,0.782301,0.626689,0.313046,0.0605676,0.874876,0.330707,0.973979,0.739344,0.172462,0.377506,0.799955,0.529573,0.697454,0.739273,0.245247,0.0093348,0.635015,0.736382,0.0127955,0.250958,0.332476,0.515091,0.273657,0.760503,0.402057,|0.38891,0.472654,0.998854,0.0466498,0.608084,0.000516236,0.381944,0.504553,0.505334,0.653757,0.119393,0.194575,0.228872,0.609771,0.576677,0.272228,0.865578,0.144635,0.418408,0.481867,0.376525,0.127103,0.982514,0.0262021,0.699077,0.765408,0.994705,0.719132,0.831654,0.923171,0.824573,0.00606686,0.919847,0.786817,0.97423,0.902427,0.0641245,0.945414,0.253896,0.3047,0.809999,0.939527,0.239437,0.253519,0.131799,0.401666,0.884276,0.511282,0.464663,0.449034,0.0190121,0.0827433,0.943457,0.0422079,0.0719641,0.757842,0.427559,0.259994,0.518733,0.674297,0.0244306,0.951701,0.225337,0.759122,0.700532,0.0993397,0.923024,0.765993,0.0652992,0.674973,0.221347,0.730173,0.106973,0.0646125,0.511216,0.335452,0.835824,0.679532,0.707417,0.86995,0.855124,0.0626405,0.0677585,0.25045,0.274824,0.835425,0.518372,0.599801,0.85031,0.743789,0.845419,0.4601,0.583502,0.670063,0.184948,0.710943,0.883651,0.665311,0.0113557,0.527207,0.198165,0.549422,0.335508,0.555078,0.195142,0.163804,0.684462,0.563257,0.806064,0.00164998,0.960508,0.0584904,0.21491,0.397772,0.11923,0.55878,0.447471,0.304734,0.689248,0.45327,0.44152,0.594793,0.0649939,0.00606745,0.619242,0.655323,0.655078,0.835114,0.517763,0.717364,0.313197,0.306849,0.0812132,0.458233,0.2672,0.437412,0.345047,0.410876,0.138215,0.515838,0.843461,0.659462,0.148338,0.889934,0.285756,0.790474,0.445756,0.917103,0.16404,0.228927,0.0436008,0.135823,0.616398,0.909702,0.613263,0.741462,0.354975,0.211311,0.102283,0.0161589,0.0209767,0.370105,0.206804,0.0556855,0.92772,0.62697,0.641635,0.559639,0.718396,0.195411,0.72742,0.604811,0.0858743,0.176546,0.581064,0.674327,0.248817,0.886366,0.608639,0.0899977,0.769488,0.244832,0.477788,0.186634,0.510262,0.132052,0.0752481,0.667962,0.332526,0.991911,0.565188,0.851548,0.274775,0.604171,0.857868,0.167736,0.477442,0.792335,0.879604,0.0501377,0.882939,0.618954,0.254828,0.222396,0.080541,0.0407501,0.80169,0.66135,0.799073,0.0641034,0.340206,0.94,0.630511,0.806846,0.303405,0.936779,0.499085,0.663594,0.995724,0.406301,0.0257047,0.273401,0.209853,0.792164,0.794791,0.927744,0.973717,0.13486,0.468686,0.084154,0.823591,0.335173,0.868892,0.0880252,0.859029,0.166295,0.0578176,0.0958484,0.324442,0.753275,0.209237,0.877601,0.189629,0.488618,0.294624,0.700323,0.0698942,0.744113,0.0568376,0.308127,0.812274,0.392259,0.7213,0.490313,0.379329,0.0722312,0.910179,0.204504,0.239662,0.0649294,0.579781,0.0414861,0.813919,0.899196,0.280528,0.734473,0.889216,0.257304,0.718016,0.149134,0.734289,0.102153,0.360815,0.258863,0.891037,0.682088,0.118566,0.993609,0.78819,0.628589,0.840317,0.764491,0.0838797,0.499913,0.21871,0.808992,0.603864,0.709776,0.169742,0.569822,0.661885,0.530215,0.641934,0.131033,0.295412,0.20179,0.43144,0.439349,0.626046,0.82505,0.0280777,0.995434,0.194908,0.367738,0.740966,0.671537,0.869573,0.343771,0.604596,0.159481,0.324286,0.758918,0.514325,0.0899168,0.609575,0.936646,0.375593,0.249817,0.399575,0.378593,0.534942,0.675192,0.179213,0.922834,0.3326,0.699163,0.319388,0.705499,0.449494,0.124856,0.738769,0.17154,0.522518,0.514248,0.430059,0.302401,0.622054,0.576079,0.591327,0.0929322,0.336396,0.411761,0.406646,0.509428,0.33587,0.357225,0.342546,0.955022,0.695361,0.717309,0.762552,0.404532,0.56654,0.129473,0.412397,0.423925,0.228786,0.519313,0.690199,0.430961,0.464687,0.926461,0.648997,0.178544,0.27755,0.87149,0.756926,0.934656,0.314566,0.981469,0.900377,0.125854,0.0110538,0.546868,0.278713,0.81666,0.986186,0.5336,0.377867,0.938757,0.73503,0.266299,0.0744373,0.16571,0.53208,0.0798416,0.337917,0.884322,0.943166,0.929727,0.68502,0.864962,0.814226,0.587965,0.818258,0.98845,0.719994,0.536235,0.567612,0.413678,0.572094,0.340973,0.100548,0.513518,0.48502,0.475937,0.312596,0.745826,0.0805766,0.180972,0.207766,0.204142,0.986578,0.319291,0.693977,0.0173472,0.0596585,0.395024,0.214264,0.35174,0.192949,0.112358,0.00326383,0.445459,0.648458,0.689207,0.786395,0.629239,0.24614,0.524344,0.654826,0.143694,0.980634,0.0840474,0.548082,0.700433,0.679997,0.11931,0.352671,0.97369,0.0515938,0.960568,0.0550394,0.240919,0.234357,0.952386,0.338657,0.354919,0.409475,0.571461,0.408287,0.788911,0.385152,0.863861,0.00693387,0.44804,0.456514,0.843805,0.189479,0.041005,0.653208,0.712896,0.12581,0.882065,0.533461,0.366865,0.948502,0.95819,0.652599,0.000826061,0.853125,0.535997,0.452366,0.385896,0.823367,0.54783,0.85539,0.308325,0.857369,0.173034,0.371341,0.788033,0.461724,0.601869,0.250265,0.796797,0.551136,0.420753,0.917673,0.280217,0.974913,0.660722,0.153014,0.725531,0.240808,0.503533,0.275539,0.869314,0.478891,0.550125,0.529323,0.0141144,0.332855,0.416113,0.508976,0.743729,0.736597,0.834795,0.290867,0.614145,0.784273,0.761461,0.860483,0.173625,0.30838,0.906814,0.857981,0.909422,0.0499786,0.761472,0.548649,0.175851,0.448683,0.306779,0.384178,0.267665,0.0948602,0.261931,0.882866,0.961008,0.716877,0.966942,0.0141377,0.401879,0.667151,0.458503,0.888293,0.0787316,0.855587,0.316327,0.353216,0.731148,0.530989,0.845991,0.81065,0.320191,0.196975,0.916694,0.304893,0.419605,0.373336,0.488565,0.807241,0.134765,0.884932,0.202433,0.0770373,0.919295,0.268406,0.131704,0.441735,0.528345,0.257189,0.477307,0.252528,0.0896956,0.178329,0.882909,0.412608,0.399188,0.717096,0.849703,0.062167,0.620095,0.915907,0.677725,0.264054,0.680379,0.292602,0.56406,0.174854,0.993519,0.218852,0.881017,0.317055,0.262954,0.601571,0.768905,0.636347,0.0734943,0.672805,0.883772,0.141217,0.27453,0.619713,0.557193,0.499866,0.848166,0.222541,0.678816,0.405477,0.172096,0.175461,0.517929,0.611027,0.514884,0.0721893,0.9767,0.261422,0.400393,0.318139,0.551809,0.350145,0.0710747,0.46085,0.955043,0.153459,0.284921,0.210382,0.766888,0.653753,0.350658,0.113321,0.198578,0.0161105,0.481258,0.766801,0.217805,0.562432,0.888852,0.827744,0.510678,0.931374,0.375988,0.0075646,0.411379,0.480851,0.472426,0.327062,0.384907,0.937461,0.397695,0.0193646,0.422374,0.923779,0.560706,0.337593,0.653104,0.128209,0.294658,0.941496,0.00776303,0.165513,0.268441,0.000290811,0.154096,0.00010705,0.700589,0.766312,0.698618,0.0763372,0.412596,0.966427,0.316531,0.0459809,0.16891,0.493335,0.374846,0.469141,0.227776,0.618942,0.375606,0.259142,0.149138,0.880063,0.431631,0.769863,0.584131,0.135418,0.941578,0.242942,0.0486645,0.815711,0.190628,0.640372,0.811487,0.589189,0.0487887,0.488888,0.500166,0.119836,0.547103,0.371828,0.6846,0.97618,0.673774,0.707241,0.250286,0.89735,0.425213,0.512042,0.130138,0.252703,0.101326,0.123661,0.992706,0.17568,0.601156,0.415049,0.693418,0.345066,0.963755,0.342242,0.518444,0.989293,0.676257,0.59418,0.528788,0.781023,0.83643,0.0141832,0.0111414,0.452813,0.971249,0.786846,0.84373,0.895117,0.515138,0.439465,0.900341,0.803807,0.113571,0.496681,0.254556,0.870921,0.966382,0.839218,0.350569,0.165181,0.266677,0.854233,0.527058,0.772177,0.414625,0.0644835,0.233762,0.190232,0.466935,0.712636,0.322646,0.635953,0.914647,0.480749,0.828347,0.938077,0.395372,0.463927,0.377834,0.619248,0.731246,0.121782,0.997726,0.670132,0.976767,0.527715,0.180764,0.0696872,0.119047,0.325973,0.526631,0.148227,0.229947,0.437844,0.948559,0.140606,0.135023,0.138222,0.359334,0.102486,0.766849,0.989801,0.839776,0.417882,0.779132,0.234057,0.619547,0.434247,0.755983,0.942986,0.101128,0.959998,0.200368,0.626652,0.196033,0.0308809,0.561843,0.114728,0.016658,0.00356317,0.280836,0.55301,0.340312,0.287799,0.304159,0.0601804,0.314705,0.340404,0.211005,0.263303,0.122142,0.0800446,0.409225,0.170275,0.631763,0.441557,0.52767,0.379413,0.00263864,0.308561,0.806705,0.253524,0.506557,0.524648,0.172117,0.513067,0.627874,0.834695,0.127162,0.383626,0.201537,0.914004,0.866322,0.553285,0.784635,0.46257,0.328913,0.0400841,0.408568,0.91029,0.998081,0.0822496,0.111458,0.58153,0.474646,0.0587227,0.95002,0.00505167,0.549256,0.821165,0.934446,0.379522,0.745171,0.171666,0.366014,0.0887969,0.601602,0.788725,0.106524,0.777282,0.876112,0.268331,0.423671,0.207922,0.762203,0.203397,0.765701,0.660301,0.852989,0.948222,0.488191,0.298111,0.694373,0.245531,0.324754,0.944376,0.970698,0.974088,0.818208,0.121459,0.233839,0.986197,0.871781,0.937801,0.0169441,0.375319,0.738862,0.0895824,0.821687,0.202319,0.275102,0.520929,0.149635,0.313507,0.311093,0.373483,0.756989,0.84872,0.279621,0.798887,0.211716,0.508246,0.531256,0.909115,0.29841,0.286036,0.116693,0.578512,0.684342,0.0457197,0.128108,0.982944,0.776726,0.44891,0.0465301,0.496042,0.984799,0.0620438,0.0604567,0.497517,0.832537,0.683603,0.322459,0.1192,0.14397,0.232918,0.983968,0.643322,0.547564,0.239511,0.395719,0.0624709,0.345924,0.216312,0.908766,0.783936,0.988821,0.762828,0.275502,0.819106,0.414489,0.138783,0.51591,0.557025,0.412926,0.6177,0.0984222,0.759374,0.509021,0.767544,0.739549,0.634122,0.416862,0.632367,0.909937,0.623739,0.649994,0.470055,0.320045,0.734948,0.979619,0.231879,0.0516449,0.55952,0.55191,0.255848,0.941973,0.971262,0.621213,0.460919,0.468512,0.262395,0.833121,0.418883,0.79571,0.448416,0.49212,0.542303,0.244377,0.0860568,0.646375,0.441678,0.75463,0.64286,0.494829,0.291408,0.557621,0.696956,0.189117,0.851047,0.190837,0.337229,0.0699952,0.851972,0.92015,0.195559,0.260732,0.407278,0.932487,0.210426,0.901773,|0.619738,0.881159,0.0485694,0.249867,0.691372,0.589811,0.368255,0.165482,0.861344,0.902423,0.216039,0.367953,0.572068,0.789047,0.55024,0.738786,0.768997,0.667554,0.200485,0.880765,0.896823,0.849715,0.185578,0.482533,0.787712,0.0831642,0.452521,0.9011,0.661198,0.133708,0.665745,0.99264,0.44721,0.892652,0.751162,0.902962,0.839909,0.441629,0.371956,0.594178,0.644806,0.929348,0.586269,0.866461,0.567239,0.222725,0.362138,0.941784,0.112999,0.707963,0.903604,0.529104,0.0983776,0.661277,0.571037,0.0269041,0.697711,0.997255,0.603341,0.439278,0.476048,0.0526825,0.0113401,0.885405,0.949329,0.145342,0.0966861,0.672529,0.521977,0.587294,0.367501,0.0247764,0.184539,0.855647,0.864321,0.426096,0.995352,0.932399,0.246585,0.677213,0.450348,0.107246,0.311269,0.319608,0.14743,0.643439,0.994357,0.751161,0.260361,0.766027,0.450173,0.146796,0.0745359,0.406399,0.84902,0.953044,0.281897,0.253365,0.994047,0.549074,0.754513,0.418646,0.395734,0.0558746,0.766354,0.80957,0.00827968,0.660651,0.765817,0.717929,0.896235,0.500518,0.630465,0.193084,0.130223,0.502469,0.642501,0.172214,0.475196,0.889949,0.948491,0.0243977,0.835189,0.894226,0.195739,0.954028,0.42741,0.336868,0.619018,0.879598,0.6487,0.560603,0.0610305,0.877924,0.565043,0.785819,0.344617,0.597117,0.720972,0.136208,0.417003,0.956989,0.233038,0.561033,0.414507,0.825971,0.498725,0.0394803,0.842259,0.830744,0.720002,0.791886,0.324284,0.958548,0.202093,0.190536,0.00462317,0.0217369,0.969338,0.411938,0.122573,0.990844,0.83836,0.71438,0.115327,0.45038,0.521346,0.480747,0.973372,0.399647,0.579187,0.0475931,0.804739,0.500954,0.964958,0.993617,0.108652,0.977213,0.804291,0.288964,0.488286,0.407076,0.14921,0.344668,0.684744,0.876516,0.915412,0.162497,0.20127,0.311061,0.356678,0.681489,0.468715,0.551251,0.469453,0.574748,0.856797,0.403587,0.363278,0.165107,0.797072,0.79627,0.480635,0.626734,0.415145,0.82357,0.174417,0.67387,0.918606,0.51915,0.872098,0.421944,0.583178,0.683028,0.0571279,0.119979,0.248575,0.0229101,0.922725,0.353194,0.867131,0.223016,0.94013,0.208735,0.644523,0.322706,0.78572,0.356541,0.494149,0.624339,0.941828,0.0233488,0.174903,0.776159,0.0940264,0.22325,0.120319,0.38337,0.724562,0.688482,0.0896732,0.672515,0.812896,0.480319,0.631084,0.872022,0.404422,0.858417,0.172784,0.279937,0.0245767,0.860333,0.163407,0.222441,0.16529,0.788114,0.428823,0.969104,0.190348,0.249189,0.0602055,0.555201,0.34661,0.152818,0.995147,0.542556,0.357672,0.0314931,0.674825,0.254812,0.85285,0.607757,0.727766,0.8611,0.408082,0.55283,0.548592,0.620712,0.894793,0.394872,0.857561,0.494453,0.455974,0.349372,0.979076,0.579176,0.794116,0.635135,0.39268,0.297356,0.0852852,0.948412,0.79013,0.674864,0.131406,0.725883,0.896255,0.739078,0.275556,0.229681,0.585232,0.670188,0.284734,0.155889,0.0558402,0.631982,0.47959,0.657034,0.631997,0.532139,0.154745,0.312686,0.675627,0.819816,0.0271145,0.391715,0.0219366,0.0886204,0.300998,0.875889,0.992833,0.957162,0.624729,0.0831012,0.737101,0.5941,0.0579633,0.443285,0.464521,0.485256,0.0500283,0.251483,0.593299,0.955773,0.767853,0.366171,0.805767,0.623674,0.0983045,0.501112,0.879003,0.275236,0.967156,0.886615,0.894916,0.662463,0.667373,0.654459,0.753679,0.169963,0.191251,0.91146,0.537798,0.909737,0.183231,0.190702,0.127998,0.257477,0.0504626,0.823722,0.188415,0.624788,0.636883,0.972242,0.00946981,0.63137,0.149023,0.922665,0.14786,0.903866,0.575898,0.797708,0.550923,0.947735,0.0502597,0.971807,0.236966,0.953991,0.413596,0.435693,0.472361,0.498582,0.887503,0.404461,0.901435,0.13969,0.954437,0.603197,0.307695,0.317168,0.369253,0.693684,0.418929,0.360894,0.0221255,0.959182,0.937838,0.680926,0.86766,0.261013,0.727235,0.226699,0.664378,0.899461,0.668111,0.357198,0.67291,0.121224,0.00503767,0.909741,0.0783144,0.509958,0.563769,0.406373,0.287851,0.83837,0.341653,0.592009,0.883597,0.74921,0.882659,0.7924,0.417881,0.816214,0.548591,0.496565,0.908591,0.414298,0.325784,0.902891,0.874606,0.960775,0.437384,0.48533,0.149713,0.413088,0.547737,0.648176,0.166367,0.110722,0.979629,0.703862,0.30909,0.760222,0.880034,0.222602,0.586642,0.115651,0.586111,0.887622,0.416512,0.283647,0.25516,0.402363,0.422985,0.293847,0.897786,0.310886,0.837694,0.842323,0.572962,0.0634624,0.757041,0.912877,0.316716,0.298386,0.390687,0.760584,0.825762,0.244555,0.943338,0.34257,0.757445,0.687811,0.47416,0.21277,0.120858,0.523513,0.496737,0.553632,0.54563,0.187427,0.391265,0.592395,0.88734,0.78849,0.352611,0.688231,0.432332,0.857684,0.33301,0.292691,0.718619,0.147382,0.60334,0.416846,0.589302,0.690564,0.216152,0.44194,0.391973,0.114918,0.310621,0.0123187,0.638186,0.0312878,0.0642123,0.905797,0.00781447,0.224873,0.738289,0.550766,0.3704,0.496321,0.464701,0.328262,0.563064,0.932567,0.321856,0.0919966,0.104806,0.750295,0.543573,0.329422,0.0534823,0.0603269,0.0135302,0.234407,0.457203,0.142885,0.0345402,0.165422,0.623467,0.930142,0.523393,0.562859,0.305691,0.809276,0.531052,0.014653,0.916337,0.995677,0.498202,0.52371,0.246391,0.210427,0.647484,0.685236,0.149895,0.478,0.493707,0.0630462,0.59152,0.654706,0.0368586,0.801982,0.548734,0.200775,0.0350482,0.063232,0.682219,0.482684,0.137878,0.937582,0.211656,0.869829,0.22161,0.233072,0.594548,0.563524,0.472866,0.609196,0.0647494,0.583798,0.383574,0.443063,0.555859,0.487376,0.486781,0.956271,0.973624,0.354512,0.626583,0.00564009,0.960728,0.439475,0.945776,0.301652,0.412963,0.724323,0.07127,0.317213,0.350421,0.474033,0.711309,0.151004,0.417326,0.195402,0.856377,0.14651,0.860187,0.532494,0.492603,0.0519851,0.244685,0.227307,0.621278,0.745165,0.264228,0.201812,0.264845,0.530068,0.471841,0.942267,0.211626,0.677459,0.805836,0.139387,0.862058,0.63496,0.0119516,0.837735,0.570561,0.653548,0.332933,0.775538,0.45893,0.0676831,0.399212,0.0681392,0.131044,0.39651,0.436185,0.120596,0.205896,0.428321,0.112723,0.28102,0.812826,0.408519,0.899811,0.639971,0.759548,0.956713,0.793971,0.549328,0.773261,0.746128,0.548421,0.91248,0.597129,0.685385,0.901618,0.345886,0.465275,0.998079,0.411178,0.414768,0.728695,0.123948,0.318151,0.79268,0.948741,0.587315,0.221584,0.560527,0.853025,0.404514,0.529938,0.352467,0.589207,0.916017,0.260804,0.265421,0.788083,0.54416,0.733273,0.329959,0.501701,0.289616,0.823074,0.831253,0.159947,0.548105,0.374389,0.582738,0.265087,0.0702399,0.624768,0.295348,0.789524,0.279805,0.56817,0.989191,0.348056,0.489625,0.0611107,0.782453,0.613345,0.647325,0.873824,0.922707,0.682207,0.225373,0.124,0.34174,0.535612,0.987588,0.102981,0.939072,0.448137,0.245672,0.507855,0.498132,0.402562,0.742281,0.568034,0.196403,0.571109,0.915294,0.568601,0.136883,0.858634,0.324284,0.297527,0.128008,0.0200366,0.413551,0.676782,0.155056,0.819508,0.00901222,0.708031,0.347094,0.391965,0.278026,0.994525,0.349857,0.0894548,0.958392,0.909742,0.298955,0.030265,0.61328,0.70984,0.857934,0.278964,0.186421,0.125755,0.0332139,0.746895,0.920684,0.0689353,0.514713,0.76687,0.124242,0.45964,0.556327,0.858809,0.510367,0.82787,0.401295,0.206955,0.00518405,0.240598,0.58573,0.441121,0.240304,0.189921,0.168241,0.707953,0.514242,0.434099,0.920247,0.613893,0.12718,0.664368,0.63693,0.319402,0.529579,0.461272,0.980868,0.606024,0.0394852,0.668804,0.0606952,0.825329,0.859448,0.897078,0.120094,0.9697,0.0325098,0.21857,0.865914,0.59846,0.880134,0.568523,0.40737,0.93313,0.566428,0.0553871,0.643828,0.0114347,0.616684,0.565606,0.374556,0.37254,0.306777,0.896673,0.265422,0.60931,0.995651,0.22873,0.467907,0.303006,0.145738,0.513595,0.251512,0.476344,0.394501,0.85975,0.052808,0.560943,0.133323,0.520331,0.0768745,0.715899,0.91223,0.15706,0.516041,0.823228,0.0397434,0.35582,0.629785,0.11892,0.0341587,0.203341,0.229596,0.257901,0.692315,0.423244,0.261705,0.491733,0.57242,0.828827,0.991967,0.563617,0.0660843,0.875464,0.319101,0.110824,0.48282,0.937295,0.674199,0.688428,0.333156,0.0376322,0.946849,0.01522,0.6053,0.609252,0.0800823,0.785584,0.546549,0.812928,0.398377,0.356114,0.479022,0.631491,0.168277,0.181337,0.920853,0.171029,0.803606,0.862527,0.0366566,0.799332,0.895956,0.597194,0.0610572,0.193609,0.758051,0.454876,0.565736,0.876143,0.980873,0.34076,0.823961,0.390207,0.227769,0.150651,0.229492,0.410502,0.118239,0.649805,0.0904314,0.776643,0.525282,0.862308,0.387392,0.866452,0.379842,0.981668,0.385828,0.29656,0.925997,0.326324,0.799381,0.348889,0.857075,0.675683,0.579675,0.355418,0.682015,0.968818,0.120547,0.0724587,0.693087,0.817302,0.967315,0.421116,0.224826,0.069473,0.722916,0.659853,0.596718,0.802158,0.562926,0.544666,0.208593,0.92446,0.408648,0.110659,0.377603,0.389944,0.764872,0.434554,0.540637,0.0674061,0.762804,0.348903,0.776837,0.890005,0.399308,0.40098,0.719668,0.369943,0.497067,0.0481663,0.641098,0.226045,0.18202,0.53054,0.671478,0.796301,0.215064,0.594534,0.77373,0.120563,0.802867,0.469758,0.954579,0.616688,0.653836,0.0374289,0.666913,0.971179,0.776462,0.469949,0.598082,0.127157,0.875121,0.378556,0.422477,0.34065,0.298724,0.602653,0.567903,0.159519,0.314389,0.18997,0.387643,0.913706,0.765817,0.825798,0.822486,0.977506,0.316136,0.285719,0.268525,0.988524,0.197682,0.284096,0.401886,0.363977,0.295025,0.658398,0.534395,0.165621,0.940502,|0.363384,0.944624,0.563137,0.935938,0.328746,0.635168,0.853857,0.319879,0.432008,0.77947,0.732958,0.69848,0.409199,0.963194,0.786575,0.931211,0.0767225,0.181883,0.769915,0.374782,0.734666,0.258603,0.935101,0.316588,0.790277,0.992961,0.896987,0.0569091,0.0613348,0.658864,0.985256,0.148881,0.366025,0.770562,0.508821,0.947679,0.208073,0.342878,0.891052,0.250083,0.460115,0.868553,0.84941,0.205728,0.900674,0.126461,0.0101333,0.075613,0.138304,0.575646,0.292399,0.744452,0.510425,0.92609,0.914907,0.322966,0.447436,0.0675164,0.272042,0.547015,0.682886,0.49856,0.658134,0.540102,0.345045,0.464752,0.133908,0.777316,0.845906,0.0578125,0.615312,0.754424,0.341035,0.189334,0.431182,0.625524,0.921457,0.196929,0.413625,0.435991,0.500978,0.0331364,0.719233,0.443826,0.69298,0.958694,0.103877,0.124952,0.141529,0.63106,0.435367,0.0274016,0.13252,0.565781,0.403172,0.819343,0.912229,0.70872,0.287549,0.874602,0.44033,0.0222754,0.634339,0.499242,0.0174412,0.839295,0.319938,0.604669,0.619861,0.585427,0.329027,0.371684,0.936608,0.706722,0.0556,0.134966,0.610036,0.857881,0.815376,0.262535,0.301682,0.815708,0.305276,0.248534,0.3987,0.857668,0.980444,0.186426,0.632727,0.589151,0.31489,0.781357,0.569708,0.933386,0.324492,0.907817,0.462533,0.325353,0.794886,0.124947,0.799274,0.318751,0.194434,0.735194,0.306169,0.421389,0.912545,0.0745208,0.308397,0.67524,0.956723,0.936786,0.236336,0.783212,0.22824,0.923356,0.255305,0.864061,0.324101,0.781307,0.827257,0.3523,0.805031,0.770551,0.129739,0.433878,0.0594738,0.715301,0.49142,0.655186,0.141821,0.394212,0.245235,0.783974,0.773044,0.0200949,0.247528,0.865241,0.104096,0.713057,0.962788,0.434927,0.956187,0.679451,0.100336,0.311636,0.903486,0.506748,0.610613,0.612404,0.888528,0.188966,0.935899,0.844573,0.564634,0.138369,0.782519,0.0357835,0.671806,0.0117068,0.689728,0.498983,0.33035,0.733354,0.657261,0.552163,0.0213929,0.235085,0.576847,0.730864,0.161171,0.709405,0.113041,0.256487,0.750077,0.0755841,0.623928,0.587339,0.464969,0.28668,0.423426,0.0677298,0.21916,0.727231,0.0251321,0.934229,0.315198,0.163605,0.943256,0.474158,0.138323,0.976572,0.812318,0.753368,0.283715,0.463628,0.27869,0.36256,0.3607,0.0574776,0.424359,0.280686,0.0954771,0.296047,0.876817,0.00891745,0.186011,0.304031,0.483201,0.311298,0.351771,0.0183493,0.374281,0.797593,0.988553,0.906321,0.938858,0.458999,0.440142,0.472262,0.936027,0.144714,0.919526,0.868113,0.725144,0.830472,0.780812,0.919502,0.270695,0.909695,0.705245,0.0384465,0.835639,0.464577,0.408734,0.0256674,0.561474,0.0645022,0.494927,0.000163913,0.310775,0.368381,0.105475,0.453329,0.69163,0.673984,0.982002,0.142357,0.392284,0.387128,0.842928,0.953964,0.885742,0.910456,0.514436,0.885532,0.714435,0.727509,0.956123,0.347701,0.213135,0.754943,0.0316702,0.0746903,0.972348,0.934299,0.305018,0.448417,0.756355,0.904685,0.475888,0.0118053,0.786513,0.120093,0.953596,0.908126,0.759632,0.725218,0.6889,0.941819,0.568156,0.40303,0.583452,0.0690934,0.954692,0.447665,0.772098,0.473974,0.722244,0.0707995,0.833207,0.111069,0.948398,0.917107,0.318705,0.055166,0.910745,0.3619,0.729366,0.216821,0.970112,0.639577,0.606511,0.463801,0.963322,0.410694,0.306278,0.369898,0.126178,0.0143614,0.255578,0.95275,0.171561,0.382308,0.265177,0.696573,0.720339,0.873047,0.746088,0.249364,0.168087,0.190124,0.696482,0.841853,0.500606,0.498226,0.467883,0.117738,0.938077,0.91348,0.620576,0.488637,0.576349,0.0844595,0.862837,0.720449,0.993266,0.962761,0.062393,0.0836005,0.818109,0.155937,0.651127,0.85483,0.932559,0.847574,0.568595,0.419737,0.927077,0.0664363,0.537502,0.368666,0.759266,0.0164154,0.0106054,0.956742,0.341577,0.0948003,0.83675,0.732715,0.811708,0.252315,0.91372,0.359133,0.654252,0.400176,0.240658,0.283565,0.730027,0.0170264,0.378401,0.019986,0.499679,0.860773,0.470034,0.566361,0.460883,0.73241,0.747511,0.126105,0.3899,0.0331168,0.067146,0.899234,0.207192,0.579995,0.317917,0.964805,0.388861,0.968782,0.790632,0.774486,0.639941,0.442815,0.413715,0.931288,0.269025,0.917373,0.905557,0.391406,0.295586,0.447081,0.799691,0.0722479,0.200423,0.125762,0.763007,0.305659,0.0757635,0.694884,0.0985228,0.197094,0.133918,0.300195,0.759065,0.582729,0.675267,0.0489748,0.571108,0.772818,0.0549016,0.212356,0.619877,0.866534,0.769038,0.311835,0.531451,0.354651,0.273103,0.965954,0.0269669,0.849964,0.832315,0.896809,0.335386,0.463503,0.781018,0.742088,0.155526,0.315073,0.394102,0.762654,0.378564,0.957423,0.496472,0.0308908,0.942386,0.662907,0.884354,0.519543,0.73797,0.995727,0.0490003,0.792678,0.393345,0.668475,0.483266,0.825031,0.490547,0.635989,0.110587,0.868206,0.228539,0.543806,0.479358,0.74591,0.56284,0.131103,0.957575,0.586996,0.177886,0.111005,0.824091,0.223904,0.882239,0.403438,0.386225,0.259352,0.177502,0.175289,0.124382,0.160191,0.810184,0.813776,0.347528,0.697596,0.997777,0.62927,0.369481,0.819348,0.864201,0.226411,0.447511,0.0315467,0.776782,0.857322,0.319099,0.975837,0.292955,0.134133,0.403788,0.383099,0.0335501,0.475929,0.900561,0.240624,0.922771,0.329615,0.73677,0.885418,0.974298,0.187519,0.105979,0.103719,0.0724465,0.72325,0.382218,0.774383,0.561808,0.892589,0.950549,0.158473,0.340883,0.192446,0.151733,0.0907454,0.0379287,0.528557,0.178263,0.17932,0.844108,0.10163,0.810675,0.353514,0.422206,0.570698,0.823802,0.0232068,0.0892146,0.38742,0.651336,0.86434,0.849831,0.151499,0.610897,0.117386,0.657939,0.475316,0.150485,0.389945,0.493982,0.459112,0.654925,0.359215,0.788889,0.474309,0.613631,0.819001,0.226601,0.984534,0.441918,0.174251,0.0341584,0.944314,0.276304,0.707404,0.849601,0.514524,0.310384,0.599197,0.070663,0.17349,0.246077,0.510139,0.834178,0.817771,0.585367,0.82537,0.606823,0.79535,0.994039,0.458219,0.371688,0.841798,0.98284,0.707002,0.758435,0.443285,0.996679,0.473049,0.856422,0.623458,0.504141,0.719225,0.275886,0.557847,0.089317,0.638803,0.377768,0.253804,0.888425,0.163662,0.0214226,0.878111,0.000832975,0.791947,0.0853649,0.637144,0.405821,0.388798,0.183119,0.847201,0.314286,0.725001,0.215755,0.916398,0.989604,0.96134,0.73392,0.902478,0.164701,0.414575,0.00368041,0.887963,0.891614,0.270236,0.133405,0.739831,0.53847,0.688525,0.134189,0.0436049,0.384701,0.238347,0.758927,0.0742785,0.424841,0.0125557,0.00552434,0.814315,0.338421,0.482928,0.157749,0.396107,0.478482,0.688517,0.477568,0.152693,0.901374,0.659384,0.804254,0.233001,0.275935,0.311,0.16763,0.272961,0.0487644,0.451623,0.21157,0.891963,0.194945,0.628624,0.0608247,0.946376,0.92304,0.625937,0.724538,0.796358,0.683321,0.358211,0.38381,0.807625,0.443601,0.923297,0.413411,0.367617,0.994968,0.021521,0.00606602,0.238901,0.885505,0.234425,0.997491,0.301631,0.100471,0.743789,0.682173,0.895362,0.239976,0.833046,0.623711,0.965465,0.858519,0.637904,0.469032,0.246716,0.737577,0.0720039,0.384752,0.984089,0.798743,0.85376,0.658767,0.706352,0.174048,0.98044,0.57785,0.691133,0.480061,0.847784,0.0756294,0.362253,0.309857,0.280434,0.706494,0.640307,0.458624,0.836169,0.771572,0.570462,0.710964,0.789463,0.533224,0.763104,0.24345,0.65354,0.316883,0.465632,0.226457,0.931494,0.545689,0.217623,0.652671,0.0581276,0.861876,0.905104,0.0949851,0.892232,0.941016,0.47518,0.296235,0.609664,0.845174,0.128766,0.0167841,0.570314,0.709833,0.362447,0.0618997,0.0369945,0.69314,0.578427,0.177527,0.735977,0.280612,0.967024,0.894628,0.337458,0.956116,0.9752,0.847944,0.109252,0.631238,0.771271,0.950446,0.0207475,0.698621,0.957082,0.599251,0.783311,0.328971,0.765704,0.397589,0.184334,0.355528,0.720164,0.271505,0.342006,0.437977,0.605124,0.864966,0.540488,0.638684,0.32346,0.924854,0.678666,0.907858,0.025246,0.0230469,0.960162,0.00243682,0.793668,0.94319,0.540482,0.0354992,0.319288,0.727273,0.959054,0.0196711,0.0713189,0.969889,0.374662,0.00641382,0.446298,0.369772,0.938241,0.576299,0.588238,0.592665,0.00375384,0.399298,0.514827,0.596643,0.503358,0.697824,0.877456,0.674095,0.915381,0.753178,0.622257,0.254218,0.469015,0.0791367,0.649803,0.821054,0.236284,0.345311,0.944381,0.244328,0.680949,0.0653832,0.537113,0.775396,0.57795,0.625965,0.343743,0.410726,0.76105,0.380674,0.394847,0.480935,0.733106,0.713843,0.928743,0.439153,0.822742,0.198464,0.187911,0.225977,0.796228,0.287963,0.657681,0.632305,0.505039,0.193216,0.127289,0.172268,0.10589,0.876297,0.0514891,0.722299,0.395385,0.684471,0.388083,0.0979312,0.878974,0.414187,0.614506,0.308325,0.258131,0.458207,0.867536,0.924118,0.610437,0.945548,0.946817,0.722385,0.485365,0.590759,0.774942,0.830147,0.499279,0.0501555,0.290757,0.652825,0.915794,0.550966,0.89476,0.653355,0.908606,0.908534,0.958968,0.642509,0.402617,0.65258,0.420879,0.432115,0.552647,0.711262,0.132933,0.329175,0.598898,0.482638,0.644497,0.328297,0.800187,0.0537376,0.616703,0.562034,0.580158,0.490525,0.499431,0.0088985,0.244195,0.507434,0.388937,0.380048,0.550163,0.0991687,0.24172,0.356031,0.711955,0.137374,0.345071,0.488466,0.334891,0.867031,0.530317,0.559698,0.983538,0.269848,0.296735,0.352384,0.0449266,0.943802,0.584741,0.807236,0.353436,0.761056,0.523122,0.5924,0.254805,0.207985,0.498891,0.786629,0.452312,0.682635,0.239474,0.170746,0.330185,0.776909,0.555376,0.154751,0.286615,0.213798,0.521921,0.860441,0.839635,0.492863,0.484793,|0.263478,0.656658,0.848356,0.525832,0.441141,0.709611,0.456557,0.424811,0.283429,0.0909898,0.550638,0.421761,0.79615,0.501218,0.0816037,0.157716,0.921918,0.530334,0.559326,0.204656,0.704684,0.370467,0.16597,0.908291,0.164146,0.980776,0.449606,0.564718,0.857567,0.313552,0.144271,0.951678,0.742932,0.00422555,0.0431873,0.216219,0.617995,0.452126,0.813695,0.604502,0.744824,0.199003,0.985509,0.765519,0.418017,0.951011,0.316393,0.612978,0.317301,0.571206,0.656368,0.378009,0.322201,0.93783,0.892048,0.258375,0.564696,0.606741,0.761113,0.329457,0.367195,0.561049,0.644987,0.446989,0.237057,0.474474,0.471615,0.749762,0.120814,0.19085,0.162623,0.391994,0.43106,0.760105,0.591809,0.527878,0.764883,0.71627,0.221293,0.292679,0.378102,0.0657951,0.516406,0.613893,0.371428,0.824189,0.877539,0.388571,0.734372,0.573397,0.271517,0.965506,0.606722,0.430477,0.524907,0.905025,0.108213,0.91817,0.885527,0.153989,0.106662,0.209945,0.238485,0.450028,0.608255,0.0881261,0.263941,0.665709,0.124714,0.783026,0.552743,0.511949,0.355817,0.472979,0.514434,0.741237,0.96579,0.56753,0.583301,0.627521,0.164458,0.994658,0.70305,0.336313,0.513118,0.396157,0.455826,0.79399,0.547615,0.791437,0.635242,0.643317,0.736739,0.419107,0.842105,0.72943,0.958788,0.232425,0.329409,0.175888,0.927753,0.726891,0.123301,0.958255,0.371143,0.0624507,0.861598,0.633641,0.426491,0.385509,0.116569,0.0995906,0.989733,0.446161,0.938941,0.670667,0.113717,0.54217,0.125367,0.864438,0.911249,0.711381,0.890488,0.828628,0.91981,0.12649,0.955099,0.663518,0.205901,0.413877,0.427048,0.856491,0.317982,0.105505,0.542196,0.92157,0.956941,0.787313,0.137625,0.864383,0.723294,0.577773,0.728878,0.757024,0.713306,0.614539,0.274328,0.171753,0.072212,0.946719,0.259475,0.483501,0.597555,0.855074,0.258343,0.445507,0.701439,0.784827,0.765594,0.0161492,0.745114,0.862425,0.0741088,0.372569,0.350424,0.512544,0.665481,0.590407,0.161179,0.667577,0.37555,0.202056,0.304023,0.28352,0.0969655,0.393869,0.898077,0.334485,0.415976,0.800779,0.302809,0.102779,0.023038,0.323699,0.136785,0.653956,0.699432,0.39334,0.928031,0.811588,0.458395,0.38951,0.326746,0.215636,0.809885,0.984793,0.149883,0.995786,0.719263,0.838826,0.426056,0.171186,0.514369,0.62916,0.682291,0.1504,0.520803,0.265365,0.727691,0.896529,0.980382,0.448392,0.819088,0.768582,0.763673,0.0809579,0.42325,0.48388,0.409271,0.736238,0.458616,0.22376,0.706196,0.564673,0.75336,0.71319,0.614601,0.717449,0.039395,0.894126,0.75106,0.090799,0.054113,0.992158,0.602964,0.276535,0.797702,0.341144,0.473263,0.968013,0.419713,0.699757,0.766376,0.0465261,0.0416852,0.701469,0.288567,0.171782,0.215497,0.145576,0.462972,0.996032,0.792246,0.904766,0.567902,0.423702,0.45391,0.20526,0.627526,0.840981,0.932662,0.524066,0.139949,0.803729,0.702455,0.499389,0.705979,0.094526,0.722538,0.247768,0.540589,0.310769,0.418642,0.556893,0.330774,0.837428,0.651897,0.0246187,0.0813709,0.430625,0.275747,0.866746,0.106195,0.686211,0.910452,0.513288,0.464882,0.861691,0.858703,0.497991,0.209572,0.366107,0.762051,0.936665,0.127919,0.393819,0.375334,0.948365,0.296037,0.19906,0.619105,0.536129,0.368778,0.762159,0.218938,0.961773,0.863154,0.416347,0.188953,0.167069,0.29687,0.627522,0.495015,0.30942,0.460603,0.883953,0.857139,0.694443,0.526821,0.44936,0.269229,0.143707,0.333633,0.563149,0.474015,0.799965,0.905805,0.533391,0.892493,0.373024,0.867556,0.780381,0.756739,0.892911,0.229908,0.479808,0.982886,0.470749,0.976646,0.810921,0.959786,0.819261,0.404947,0.471548,0.0609807,0.0895666,0.509255,0.699824,0.490393,0.621364,0.255907,0.412523,0.912017,0.95505,0.430185,0.432524,0.346809,0.296847,0.865188,0.807342,0.748668,0.521062,0.558173,0.887233,0.569031,0.214088,0.471636,0.788606,0.918333,0.309756,0.95119,0.774092,0.862741,0.956995,0.212734,0.772401,0.624235,0.73611,0.443569,0.0147094,0.824568,0.0570925,0.512852,0.65515,0.214853,0.839583,0.41041,0.525586,0.947245,0.415472,0.0179164,0.0372621,0.779107,0.900548,0.318849,0.0349208,0.347029,0.633654,0.460258,0.360022,0.426147,0.204968,0.835494,0.152245,0.00971848,0.193674,0.0392334,0.332636,0.716838,0.361428,0.141348,0.0070219,0.200436,0.293753,0.440142,0.279497,0.242884,0.364798,0.734073,0.212601,0.274219,0.733533,0.36833,0.638339,0.626691,0.769764,0.212335,0.0472676,0.535907,0.0241049,0.0219727,0.725524,0.392896,0.398682,0.61181,0.321503,0.718491,0.997685,0.496563,0.538331,0.166668,0.10824,0.693403,0.518522,0.00899464,0.888054,0.385818,0.67419,0.412907,0.559805,0.986436,0.256335,0.452278,0.973338,0.726932,0.232454,0.912866,0.163155,0.500396,0.550984,0.145684,0.76119,0.655023,0.328326,0.168326,0.515304,0.488701,0.906298,0.615832,0.684031,0.532784,0.877604,0.589008,0.295201,0.157198,0.0424703,0.778444,0.0748408,0.951091,0.131214,0.463689,0.730314,0.685855,0.661814,0.332518,0.745558,0.879231,0.888703,0.549492,0.316398,0.790039,0.62608,0.779158,0.702501,0.730344,0.0152842,0.539782,0.014232,0.830195,0.797843,0.170427,0.949775,0.640991,0.818228,0.570686,0.315593,0.666079,0.411142,0.759433,0.141139,0.0300894,0.563375,0.126856,0.785162,0.0513093,0.32321,0.127029,0.899733,0.634584,0.988146,0.802426,0.532375,0.219597,0.888574,0.0692169,0.18764,0.35498,0.89907,0.202658,0.0335067,0.106572,0.258965,0.883287,0.621395,0.596523,0.631192,0.268306,0.330073,0.924984,0.188958,0.69751,0.272113,0.13701,0.00835782,0.670759,0.689709,0.249281,0.956383,0.671749,0.0436258,0.157692,0.505418,0.8384,0.795448,0.679355,0.730642,0.58405,0.812177,0.28923,0.691471,0.10515,0.512056,0.515151,0.217055,0.748338,0.428708,0.691408,0.260249,0.321396,0.441826,0.369796,0.114766,0.40073,0.850215,0.603087,0.295367,0.614673,0.944281,0.472689,0.679386,0.373869,0.73405,0.55165,0.761165,0.361082,0.437518,0.134679,0.981721,0.917843,0.193723,0.898344,0.586128,0.216693,0.315584,0.0946828,0.127204,0.808541,0.431014,0.154939,0.738762,0.841822,0.178652,0.943251,0.274841,0.569651,0.305371,0.820782,0.675629,0.871159,0.415707,0.134641,0.474728,0.696571,0.737704,0.0353374,0.670757,0.493683,0.677995,0.832967,0.932487,0.430067,0.209795,0.471846,0.553161,0.313966,0.232968,0.903434,0.742868,0.441343,0.248588,0.348682,0.918515,0.45972,0.185266,0.0630351,0.191637,0.470088,0.0131367,0.65872,0.293073,0.910648,0.550616,0.978537,0.370547,0.416596,0.836268,0.380208,0.933369,0.165488,0.702089,0.951722,0.611971,0.201197,0.882416,0.0151646,0.896676,0.528024,0.245839,0.702058,0.950957,0.579796,0.0247852,0.488272,0.305911,0.854131,0.435852,0.358895,0.563759,0.213152,0.0543961,0.145215,0.303985,0.194906,0.353562,0.9211,0.627101,0.00346559,0.748783,0.61966,0.55137,0.288328,0.859621,0.746282,0.0599641,0.0323074,0.453425,0.5657,0.127785,0.27364,0.0446224,0.127731,0.810212,0.912168,0.958724,0.945395,0.186422,0.181344,0.163068,0.475582,0.107124,0.31328,0.923626,0.132979,0.795674,0.344829,0.627706,0.160202,0.375837,0.402734,0.310266,0.448094,0.755288,0.499022,0.187678,0.804769,0.741267,0.225471,0.747775,0.213558,0.527577,0.818256,0.55002,0.577995,0.0432788,0.657471,0.0485226,0.134432,0.866779,0.922523,0.863809,0.826232,0.719196,0.291672,0.707789,0.314168,0.416311,0.00526279,0.820874,0.123655,0.905008,0.0548041,0.629785,0.246053,0.696996,0.922978,0.327298,0.284597,0.215738,0.649787,0.289418,0.120258,0.639305,0.908894,0.0326979,0.581901,0.6903,0.600637,0.182108,0.497355,0.843567,0.567321,0.726811,0.296254,0.658728,0.936831,0.356993,0.548777,0.988703,0.810221,0.527708,0.303935,0.0686494,0.0240571,0.0125728,0.836601,0.653742,0.685555,0.939362,0.770793,0.637131,0.0814593,0.297094,0.451424,0.730358,0.129368,0.168261,0.666629,0.528666,0.019399,0.590127,0.114538,0.213185,0.159384,0.93768,0.418855,0.599217,0.654339,0.356668,0.935866,0.90887,0.35711,0.285997,0.694098,0.485286,0.811377,0.677751,0.200551,0.0526741,0.0405971,0.876558,0.758255,0.449615,0.878654,0.929906,0.97788,0.873876,0.667614,0.599487,0.272229,0.211226,0.227663,0.787297,0.42224,0.735044,0.0387576,0.141413,0.945517,0.258299,0.307809,0.282282,0.3934,0.610603,0.42563,0.747363,0.287564,0.121127,0.257331,0.897488,0.467868,0.990458,0.861343,0.623226,0.740274,0.509826,0.587952,0.569049,0.871156,0.185327,0.171683,0.0665188,0.817931,0.931327,0.539622,0.627952,0.702372,0.102824,0.534997,0.402402,0.957056,0.361476,0.173232,0.969925,0.950829,0.411779,0.905,0.18244,0.0681689,0.608652,0.467637,0.030966,0.944318,0.366601,0.728658,0.66849,0.172242,0.806454,0.711545,0.617656,0.784799,0.264658,0.45308,0.00690573,0.448737,0.793689,0.815582,0.071985,0.226518,0.14581,0.104205,0.124738,0.615158,0.947822,0.839364,0.639996,0.311929,0.0357436,0.0780789,0.631609,0.172096,0.410899,0.312282,0.956738,0.779462,0.426576,0.534699,0.560229,0.726532,0.016373,0.0187988,0.543599,0.159862,0.522606,0.161891,0.966213,0.937683,0.1644,0.197278,0.637198,0.56448,0.564485,0.95522,0.659844,0.266932,0.0353233,0.755363,0.575964,0.857298,0.789687,0.596375,0.628811,0.718036,0.798177,0.501552,0.997087,0.726243,0.277168,0.788709,0.134474,0.943962,0.686483,0.0479832,0.195068,0.379326,0.971415,0.49296,0.397123,0.84971,0.497492,0.120876,0.801413,0.970329,0.87756,0.18707,0.772803,0.174568,0.527103,0.445254,0.281073,0.350887,0.453007,|0.704298,0.620878,0.952062,0.342161,0.767147,0.405057,0.634854,0.803611,0.0384045,0.941666,0.480262,0.718583,0.407181,0.855413,0.247494,0.432532,0.700982,0.699327,0.775617,0.126231,0.785337,0.325752,0.456234,0.974917,0.546521,0.0952569,0.242828,0.496251,0.204805,0.682394,0.327483,0.712261,0.46438,0.59893,0.903446,0.542569,0.508402,0.371026,0.307818,0.125977,0.928326,0.439141,0.577399,0.626002,0.38434,0.266224,0.666319,0.465752,0.793994,0.241049,0.9451,0.384897,0.581033,0.952832,0.187591,0.12411,0.978586,0.753169,0.905325,0.912756,0.138041,0.0523951,0.456039,0.812877,0.611787,0.293874,0.664996,0.132026,0.156434,0.509421,0.436093,0.0298766,0.0861219,0.213224,0.786094,0.934283,0.795649,0.605888,0.25655,0.315815,0.526607,0.594122,0.346888,0.692332,0.86613,0.647854,0.0745993,0.508639,0.306885,0.0780831,0.0683408,0.0939773,0.932791,0.847105,0.246534,0.629409,0.984134,0.482799,0.735756,0.575847,0.196381,0.641298,0.750707,0.353135,0.314117,0.230777,0.0668631,0.551054,0.233467,0.0788869,0.755832,0.777912,0.555224,0.814196,0.174172,0.692523,0.585201,0.592416,0.765557,0.460541,0.953437,0.477985,0.572359,0.982296,0.272279,0.225863,0.620574,0.528083,0.0953323,0.23546,0.309029,0.556572,0.526177,0.801777,0.988713,0.257829,0.274875,0.061994,0.43658,0.746585,0.12676,0.828341,0.870649,0.983394,0.103734,0.383951,0.160853,0.762588,0.152141,0.297319,0.137172,0.459772,0.469761,0.92005,0.558426,0.310671,0.148562,0.93774,0.0259418,0.266998,0.513859,0.462121,0.863231,0.593634,0.031092,0.318187,0.697317,0.138352,0.76809,0.944887,0.29756,0.659646,0.382076,0.838144,0.327513,0.345775,0.391447,0.528545,0.162395,0.444174,0.752554,0.342675,0.707387,0.0736322,0.562718,0.799423,0.805986,0.956806,0.178517,0.735737,0.569028,0.849561,0.467104,0.742628,0.661647,0.390137,0.0681365,0.15547,0.654349,0.453061,0.866457,0.450064,0.982129,0.99964,0.475225,0.91685,0.251356,0.0124637,0.487352,0.734706,0.671445,0.60501,0.931481,0.68141,0.880391,0.962702,0.320027,0.348193,0.895563,0.776733,0.182304,0.799577,0.650427,0.208038,0.832828,0.949348,0.00660962,0.767159,0.745251,0.00756758,0.937882,0.712103,0.959571,0.808249,0.583723,0.316552,0.546471,0.488193,0.405743,0.0935917,0.954094,0.353926,0.127479,0.866207,0.897733,0.0518,0.865618,0.492196,0.669702,0.20464,0.0830649,0.886146,0.35401,0.108903,0.0834053,0.898436,0.999616,0.0364515,0.323058,0.524338,0.878384,0.669477,0.508732,0.683059,0.245643,0.735717,0.463184,0.0285523,0.280713,0.994502,0.943683,0.0881301,0.122474,0.458147,0.103644,0.695968,0.973161,0.889749,0.0397919,0.533885,0.649387,0.902926,0.394552,0.132341,0.494603,0.430511,0.317476,0.155069,0.616349,0.94686,0.332805,0.305217,0.382025,0.846689,0.739976,0.114551,0.388316,0.504879,0.796407,0.686556,0.472594,0.71287,0.276484,0.537865,0.0354165,0.805332,0.691008,0.158661,0.434725,0.446471,0.472864,0.454762,0.995139,0.0438923,0.598536,0.431568,0.119171,0.354644,0.798523,0.583655,0.712914,0.771222,0.59637,0.108108,0.84348,0.0897083,0.880028,0.324939,0.535175,0.475615,0.656379,0.243786,0.0877365,0.0911195,0.657232,0.311306,0.465405,0.390754,0.71558,0.726216,0.43703,0.77917,0.836357,0.451423,0.130928,0.825365,0.826511,0.768002,0.298773,0.990601,0.532116,0.605529,0.0756304,0.36753,0.684271,0.7245,0.671432,0.973419,0.828357,0.0936564,0.0735376,0.602252,0.828381,0.0485452,0.0938969,0.13496,0.149163,0.734797,0.700364,0.486452,0.545935,0.360261,0.219796,0.2197,0.875679,0.222183,0.825829,0.81568,0.551168,0.730981,0.932677,0.952514,0.119507,0.661129,0.264877,0.93773,0.612277,0.710021,0.934318,0.599225,0.670165,0.235442,0.291627,0.465496,0.766872,0.752862,0.0845482,0.937554,0.836846,0.879746,0.291497,0.444714,0.403297,0.808462,0.416511,0.915816,0.168405,0.843851,0.396155,0.419515,0.888086,0.0236557,0.838045,0.676849,0.140798,0.80204,0.939842,0.820648,0.338593,0.304272,0.960771,0.142019,0.353856,0.0481991,0.951265,0.82374,0.0939823,0.0835407,0.765479,0.778765,0.488355,0.00825536,0.490742,0.736213,0.921482,0.22957,0.241867,0.856348,0.335432,0.0912267,0.150465,0.590807,0.48506,0.830372,0.76645,0.303958,0.0877811,0.496745,0.0355698,0.511381,0.944529,0.50315,0.722855,0.951651,0.752636,0.0349199,0.814809,0.551248,0.115723,0.510952,0.494923,0.318337,0.837322,0.98252,0.406141,0.217495,0.972191,0.37431,0.191794,0.0230118,0.148485,0.669657,0.638434,0.495208,0.427242,0.790628,0.861709,0.756935,0.115833,0.00566649,0.696175,0.996161,0.683997,0.576897,0.845456,0.0592462,0.0953422,0.0570509,0.994148,0.36825,0.357724,0.661431,0.10543,0.700671,0.837854,0.962796,0.838162,0.399619,0.895833,0.541937,0.0800062,0.931422,0.514173,0.834675,0.868716,0.223278,0.0790712,0.793023,0.106771,0.894178,0.107068,0.522381,0.298251,0.762068,0.344452,0.176522,0.576534,0.738308,0.284946,0.212349,0.160997,0.486553,0.687884,0.96356,0.109585,0.268098,0.538931,0.222498,0.81571,0.698655,0.300802,0.714069,0.367989,0.0730047,0.732309,0.421555,0.361572,0.173466,0.179098,0.418064,0.0615387,0.246269,0.703176,0.638193,0.229382,0.951647,0.200481,0.89507,0.467283,0.760321,0.24786,0.448861,0.88988,0.960488,0.507822,0.458,0.678266,0.0475154,0.981863,0.773973,0.901725,0.4425,0.496775,0.586187,0.689808,0.625241,0.732928,0.79186,0.466667,0.74025,0.155775,0.758968,0.690057,0.458512,0.256756,0.0456822,0.027455,0.0836009,0.850421,0.346696,0.0797447,0.975507,0.0823933,0.240039,0.34428,0.604185,0.643161,0.0843504,0.999194,0.0428135,0.734959,0.330554,0.366776,0.295447,0.20536,0.299575,0.932597,0.150721,0.546331,0.403454,0.504765,0.177086,0.715566,0.790949,0.958358,0.924569,0.414601,0.0739889,0.653143,0.374686,0.850952,0.148516,0.266956,0.430494,0.465315,0.691584,0.101277,0.0581555,0.788614,0.857659,0.824566,0.0281302,0.163873,0.953895,0.038525,0.113862,0.55945,0.0705559,0.720787,0.889456,0.532555,0.153943,0.277093,0.394855,0.0835845,0.740272,0.76987,0.435069,0.628511,0.545171,0.12331,0.211348,0.648814,0.443787,0.319058,0.142932,0.618812,0.388627,0.27352,0.3931,0.970373,0.398961,0.365778,0.479696,0.231844,0.22442,0.991386,0.260901,0.290145,0.247515,0.314394,0.766437,0.29045,0.913508,0.452094,0.532471,0.188875,0.220433,0.484604,0.150212,0.831661,0.0862354,0.380399,0.553931,0.279529,0.181681,0.140145,0.282375,0.113675,0.189481,0.915103,0.57055,0.150956,0.293566,0.257521,0.742756,0.94254,0.38226,0.496237,0.107674,0.0433127,0.523252,0.769711,0.960058,0.793411,0.430968,0.195562,0.663725,0.444748,0.986453,0.275686,0.742453,0.797047,0.111526,0.58564,0.779261,0.844997,0.718395,0.972012,0.775981,0.918287,0.0924878,0.265776,0.0315924,0.813465,0.202529,0.368481,0.820786,0.588191,0.926312,0.340476,0.348037,0.110314,0.583684,0.825951,0.697285,0.653655,0.0468503,0.111045,0.981046,0.667071,0.590696,0.908429,0.790168,0.476555,0.377567,0.207173,0.0691499,0.222751,0.15115,0.0511282,0.32862,0.260747,0.405757,0.401472,0.102915,0.575139,0.379995,0.975314,0.475299,0.022965,0.592339,0.600872,0.763301,0.0262778,0.771709,0.123617,0.521676,0.0393162,0.43537,0.84768,0.309781,0.0565038,0.154352,0.614669,0.426821,0.450876,0.125521,0.108314,0.00581318,0.0754513,0.119917,0.98383,0.839166,0.760019,0.12658,0.14487,0.338154,0.264111,0.0436637,0.0511515,0.768829,0.964924,0.123011,0.331746,0.392078,0.0262274,0.507587,0.667937,0.198375,0.602307,0.719927,0.992412,0.383053,0.588709,0.531694,0.163507,0.0432014,0.0730679,0.634755,0.841592,0.268589,0.697924,0.183613,0.651281,0.510187,0.0413467,0.442519,0.856133,0.618752,0.605642,0.165235,0.604405,0.417313,0.750121,0.472026,0.100976,0.231955,0.943276,0.793996,0.382408,0.124058,0.348402,0.0416007,0.124497,0.109626,0.118536,0.639409,0.510357,0.990775,0.696662,0.513967,0.0342505,0.409431,0.336962,0.914334,0.158533,0.403976,0.764429,0.374223,0.654725,0.433583,0.0783783,0.55742,0.25322,0.704553,0.211062,0.586184,0.411189,0.851312,0.264761,0.956043,0.385034,0.793293,0.653901,0.884593,0.0227937,0.161524,0.312733,0.228301,0.992598,0.338856,0.591508,0.152393,0.493532,0.301793,0.312469,0.347039,0.803911,0.95113,0.246097,0.889781,0.42874,0.230357,0.780775,0.372441,0.0745235,0.669031,0.610146,0.871295,0.375466,0.690921,0.699786,0.702332,0.72364,0.725179,0.143649,0.0228907,0.179733,0.563263,0.120838,0.773462,0.351847,0.426104,0.976845,0.13855,0.206852,0.282747,0.697544,0.305883,0.658609,0.441103,0.549124,0.826509,0.0536408,0.0865688,0.179343,0.743725,0.567036,0.0638342,0.862005,0.496976,0.0725534,0.331995,0.874396,0.050929,0.0938274,0.0347473,0.448596,0.176817,0.576501,0.409267,0.94011,0.307808,0.501866,0.822181,0.37583,0.675725,0.669264,0.0598971,0.439867,0.271343,0.191442,0.22818,0.779086,0.188969,0.3795,0.398229,0.864444,0.852382,0.223315,0.412705,0.313323,0.857507,0.51511,0.800323,0.772856,0.204805,0.141099,0.94641,0.408712,0.813495,0.357413,0.279753,0.290803,0.229195,0.246639,0.222195,0.718775,0.797016,0.254471,0.413432,0.646635,0.642276,0.758041,0.00738668,0.695969,0.429776,0.747739,0.504537,0.343632,0.261278,0.979832,0.526449,0.256261,0.161538,0.71639,0.273405,0.53647,0.0985481,0.398194,0.879421,0.335001,0.994518,0.270576,0.482962,0.713176,0.244618,0.863118,0.940949,0.996815,0.615511,0.227955,0.662648,0.756428,0.884862,0.516715,0.103466,0.17951,0.617021,|0.714349,0.492079,0.535778,0.510529,0.266669,0.946344,0.921059,0.813685,0.75193,0.878871,0.64719,0.41505,0.267614,0.718816,0.297989,0.742219,0.537577,0.934745,0.215169,0.612573,0.110483,0.594715,0.351257,0.0980731,0.908581,0.0895962,0.9705,0.558404,0.316928,0.380809,0.547618,0.641747,0.814371,0.897921,0.960383,0.389438,0.912503,0.655741,0.385275,0.805912,0.75788,0.233214,0.969238,0.57363,0.758728,0.0765047,0.100252,0.142365,0.117517,0.645897,0.274453,0.358745,0.60077,0.250692,0.597608,0.825556,0.0924909,0.664336,0.166341,0.858371,0.841965,0.573691,0.823405,0.443594,0.280498,0.567965,0.886357,0.956369,0.0907699,0.0513306,0.726454,0.95267,0.954552,0.695704,0.021699,0.0754153,0.603016,0.413716,0.753757,0.974469,0.681074,0.636344,0.418886,0.833424,0.106554,0.48155,0.175357,0.494173,0.167924,0.298452,0.239169,0.801835,0.0176761,0.279564,0.937637,0.214212,0.18042,0.0995184,0.940848,0.739238,0.00952965,0.861231,0.89838,0.339368,0.664835,0.891086,0.210845,0.250321,0.568546,0.748436,0.377437,0.838962,0.139794,0.66621,0.716141,0.067153,0.577841,0.763554,0.710431,0.652331,0.427187,0.295752,0.273378,0.664151,0.510331,0.393876,0.956015,0.086193,0.704857,0.489966,0.540192,0.525575,0.352641,0.937545,0.620503,0.772796,0.140235,0.678139,0.429042,0.152452,0.080008,0.713049,0.122393,0.748901,0.239429,0.362025,0.468564,0.351805,0.814906,0.123344,0.0803554,0.785222,0.136491,0.716065,0.870371,0.721701,0.825315,0.252905,0.711896,0.414225,0.857455,0.267187,0.236166,0.910657,0.20135,0.733633,0.238359,0.682486,0.573869,0.151007,0.192101,0.855745,0.768997,0.485234,0.636704,0.495948,0.19641,0.598089,0.0164766,0.734776,0.986086,0.920067,0.596594,0.165996,0.925066,0.143616,0.0344184,0.244415,0.733864,0.245276,0.772125,0.685503,0.290426,0.719034,0.413589,0.811969,0.824978,0.512904,0.360121,0.343805,0.078206,0.983565,0.795744,0.679177,0.989917,0.0721701,0.499039,0.436594,0.703784,0.45326,0.857781,0.522085,0.61699,0.475204,0.201006,0.831828,0.641687,0.818638,0.466696,0.0518118,0.989193,0.265985,0.00384992,0.460165,0.15927,0.300608,0.846033,0.668238,0.0792027,0.789767,0.828916,0.723863,0.138019,0.69528,0.759381,0.935274,0.33811,0.649631,0.010519,0.519627,0.483475,0.911808,0.319949,0.208046,0.575029,0.457032,0.673448,0.635563,0.0324063,0.67349,0.740665,0.280249,0.359563,0.143599,0.287978,0.355719,0.740149,0.279428,0.229985,0.29668,0.588997,0.256844,0.159983,0.336367,0.788266,0.0830164,0.247122,0.967481,0.869598,0.715191,0.135671,0.551351,0.855651,0.760585,0.87568,0.745384,0.862117,0.712289,0.0352687,0.228035,0.202934,0.533107,0.0693999,0.679429,0.809707,0.586223,0.391017,0.839648,0.24154,0.808568,0.18271,0.275016,0.797589,0.0658894,0.0238225,0.177875,0.395914,0.336835,0.924392,0.726025,0.371312,0.281417,0.34578,0.949431,0.966582,0.287457,0.688499,0.651072,0.385954,0.542935,0.458251,0.907099,0.127093,0.478311,0.901374,0.794876,0.778891,0.935602,0.0168597,0.80299,0.538518,0.576932,0.38192,0.977626,0.211946,0.52885,0.715805,0.808299,0.225086,0.852213,0.469569,0.633499,0.414201,0.769726,0.826519,0.961979,0.0185704,0.24548,0.399154,0.480125,0.0950672,0.709876,0.462991,0.0740582,0.112687,0.969244,0.0997815,0.558618,0.648436,0.936815,0.261171,0.112032,0.296955,0.996946,0.802702,0.213285,0.897931,0.656449,0.57553,0.425393,0.251435,0.574155,0.796289,0.52109,0.266583,0.613358,0.273383,0.59322,0.998075,0.227179,0.535302,0.544678,0.304308,0.682275,0.83339,0.491111,0.964795,0.280694,0.161517,0.329939,0.885099,0.494332,0.765265,0.0583282,0.556164,0.463983,0.0413605,0.189671,0.982128,0.766851,0.198911,0.336899,0.949897,0.993114,0.444272,0.995691,0.225279,0.561339,0.524506,0.191984,0.378924,0.316939,0.524394,0.535467,0.791657,0.0324994,0.472319,0.677928,0.760558,0.0747344,0.272887,0.76214,0.142526,0.367566,0.498445,0.80124,0.202726,0.310708,0.127655,0.214452,0.140324,0.930099,0.851947,0.242527,0.583417,0.79788,0.743896,0.00921428,0.548276,0.122704,0.242178,0.895945,0.291362,0.904831,0.0896367,0.098707,0.306692,0.115489,0.803341,0.196614,0.115986,0.564013,0.480542,0.965431,0.280702,0.695479,0.800759,0.469809,0.265915,0.86044,0.219665,0.358768,0.357751,0.533765,0.167293,0.487154,0.977244,0.885409,0.14257,0.37896,0.963632,0.230399,0.0714,0.679655,0.6595,0.150761,0.922546,0.923436,0.493851,0.592135,0.691022,0.841534,0.880912,0.984125,0.501877,0.138349,0.477064,0.719089,0.536715,0.196108,0.0446539,0.240036,0.267578,0.0670772,0.707932,0.566351,0.0379444,0.645579,0.125822,0.00502962,0.157035,0.123922,0.644578,0.771812,0.0746779,0.837939,0.200226,0.190682,0.993623,0.150706,0.672991,0.961899,0.314471,0.569493,0.201809,0.498568,0.759362,0.355802,0.914259,0.057874,0.1694,0.750991,0.247318,0.0559943,0.488102,0.672597,0.807814,0.522697,0.397446,0.807713,0.210272,0.642294,0.210698,0.782613,0.62398,0.432119,0.628106,0.628768,0.0423912,0.118717,0.377227,0.757577,0.880627,0.912844,0.526721,0.756517,0.159852,0.992421,0.170363,0.392799,0.425928,0.239937,0.362437,0.359848,0.562189,0.85471,0.0811423,0.899795,0.0572845,0.500634,0.747561,0.224435,0.643575,0.00419116,0.909517,0.36684,0.880851,0.151069,0.111431,0.516272,0.411508,0.621541,0.368971,0.38644,0.550508,0.636416,0.430341,0.884563,0.991621,0.567209,0.120566,0.000326037,0.0503729,0.334863,0.572164,0.303451,0.965188,0.307484,0.000815213,0.626049,0.197833,0.122615,0.468653,0.835413,0.243279,0.1509,0.977556,0.384627,0.429469,0.509025,0.99761,0.757564,0.200837,0.237032,0.971321,0.793885,0.605885,0.109177,0.0527733,0.625061,0.225108,0.107143,0.862373,0.618466,0.625459,0.253889,0.64246,0.99521,0.661404,0.242033,0.25661,0.353441,0.294626,0.271348,0.842257,0.488981,0.97647,0.448763,0.115209,0.0240641,0.845613,0.519105,0.99624,0.869913,0.589639,0.993792,0.565309,0.555245,0.758838,0.137021,0.114049,0.266026,0.748579,0.74273,0.997351,0.0438446,0.199557,0.12543,0.178718,0.222289,0.46309,0.573345,0.655351,0.334694,0.221347,0.958734,0.998534,0.600632,0.914774,0.281021,0.671193,0.0959522,0.604048,0.620109,0.334889,0.101996,0.0678541,0.0409742,0.581408,0.574147,0.794723,0.0562043,0.164592,0.194529,0.949149,0.0881909,0.20699,0.0219545,0.483916,0.557072,0.966661,0.227623,0.249439,0.599155,0.151568,0.590878,0.499525,0.84067,0.497026,0.0333343,0.587955,0.203043,0.817927,0.290289,0.802507,0.840063,0.869077,0.924617,0.238693,0.572752,0.844772,0.160547,0.289135,0.178991,0.500841,0.389958,0.839016,0.35064,0.583034,0.710226,0.798252,0.928335,0.0281745,0.839238,0.300212,0.76614,0.201996,0.910449,0.386575,0.214637,0.413424,0.488215,0.0155764,0.467344,0.51993,0.778419,0.693423,0.276354,0.439786,0.48858,0.0556286,0.260424,0.29354,0.187165,0.391479,0.126654,0.31523,0.373916,0.0645723,0.582286,0.615587,0.987153,0.927951,0.196622,0.129579,0.745844,0.0615823,0.822171,0.0775654,0.0610834,0.103089,0.310228,0.859611,0.961491,0.598579,0.583542,0.168631,0.987529,0.941934,0.429241,0.20357,0.05972,0.0125276,0.0750479,0.961936,0.118021,0.133737,0.879685,0.409599,0.953535,0.322373,0.3262,0.369467,0.117042,0.219835,0.253033,0.0321321,0.870249,0.633873,0.334717,0.61274,0.43172,0.05072,0.979094,0.197746,0.229966,0.731849,0.134971,0.506492,0.368242,0.885288,0.771306,0.237732,0.88304,0.368706,0.709246,0.384968,0.209611,0.747853,0.537868,0.652834,0.39298,0.900192,0.839113,0.225657,0.0282214,0.0865233,0.548823,0.0380508,0.186859,0.536188,0.911726,0.99483,0.58529,0.718218,0.347693,0.209125,0.616891,0.494517,0.964432,0.782782,0.63585,0.315165,0.516073,0.391634,0.496382,0.974043,0.258362,0.670623,0.789171,0.318344,0.557411,0.710808,0.513968,0.900323,0.994889,0.114491,0.944168,0.264204,0.764275,0.609981,0.153063,0.19427,0.149303,0.70451,0.52101,0.669471,0.974445,0.358256,0.241441,0.145354,0.230831,0.895923,0.525042,0.707241,0.463111,0.453169,0.307946,0.576096,0.711195,0.198548,0.718106,0.297319,0.130111,0.52804,0.137459,0.929222,0.654695,0.576386,0.399431,0.108755,0.497311,0.283165,0.718321,0.408934,0.158392,0.721172,0.131283,0.896724,0.71535,0.991414,0.522696,0.625797,0.803521,0.117154,0.473191,0.183743,0.409578,0.0779346,0.366286,0.00950509,0.743669,0.62104,0.362268,0.794237,0.874176,0.652758,0.35075,0.00460494,0.938384,0.800666,0.864571,0.0399951,0.444334,0.136281,0.0406985,0.716717,0.404317,0.618051,0.494644,0.155688,0.400594,0.659802,0.0867567,0.116119,0.597008,0.351502,0.491554,0.464112,0.458444,0.38174,0.176976,0.61692,0.845606,0.846789,0.457579,0.164178,0.874281,0.853233,0.0808802,0.259372,0.0478386,0.66443,0.361319,0.807185,0.419233,0.888174,0.0954825,0.151554,0.67591,0.656799,0.768049,0.25473,0.811348,0.0789872,0.5561,0.442936,0.108722,0.598115,0.353832,0.511265,0.0245814,0.351162,0.263756,0.22314,0.422973,0.108288,0.101497,0.0733222,0.000521064,0.567708,0.949926,0.436198,0.187659,0.461578,0.269591,0.927645,0.185853,0.0636993,0.949084,0.933622,0.0594981,0.313089,0.640146,0.279147,0.529896,0.749256,0.633149,0.701317,0.94268,0.352437,0.703868,0.410663,0.235761,0.662558,0.897797,0.0998901,0.682895,0.0608357,0.206544,0.523634,0.305643,0.237448,0.981508,0.313544,0.533587,0.385251,0.482985,0.203209,0.273202,0.450362,0.652043,0.314158,0.300141,0.957556,0.647148,0.813534,0.893436,0.0331972,0.502412,|0.27064,0.475772,0.672482,0.327408,0.266117,0.622758,0.0794792,0.845972,0.641341,0.833877,0.2025,0.310775,0.859716,0.69709,0.48145,0.745132,0.649653,0.444846,0.185404,0.466896,0.997946,0.209178,0.99577,0.64225,0.137854,0.998984,0.705607,0.514088,0.97828,0.586015,0.0405784,0.60226,0.0810801,0.579128,0.456358,0.196045,0.465973,0.299072,0.854121,0.964424,0.718652,0.8591,0.433729,0.266944,0.976553,0.333563,0.792309,0.850382,0.610404,0.080577,0.76975,0.15558,0.32659,0.533896,0.310653,0.639783,0.396568,0.66924,0.0691332,0.794843,0.984597,0.503182,0.805605,0.104425,0.68402,0.34211,0.760551,0.0949911,0.942619,0.234649,0.209004,0.518125,0.641797,0.012591,0.243926,0.4023,0.85995,0.435298,0.635934,0.721176,0.691576,0.326069,0.301327,0.795019,0.0164343,0.271287,0.804737,0.444102,0.152797,0.420873,0.816116,0.158467,0.366821,0.782978,0.788251,0.833759,0.216478,0.225235,0.577489,0.732691,0.156609,0.734289,0.0696617,0.980193,0.499613,0.183838,0.657616,0.172024,0.893275,0.356985,0.0772814,0.977748,0.159688,0.647595,0.40179,0.317712,0.263082,0.0754274,0.172158,0.148225,0.503139,0.645242,0.433413,0.0107443,0.451026,0.436361,0.889308,0.106947,0.913743,0.70816,0.150896,0.239903,0.209961,0.249881,0.519303,0.437006,0.53214,0.376754,0.61959,0.0143008,0.168765,0.942646,0.162796,0.792103,0.567229,0.559286,0.558122,0.74211,0.644565,0.0158781,0.216227,0.816612,0.642183,0.323589,0.667453,0.653853,0.960869,0.227667,0.68656,0.799639,0.255176,0.0909447,0.580537,0.370269,0.148875,0.640036,0.919419,0.915087,0.893155,0.823955,0.551522,0.870328,0.0916778,0.708889,0.0232894,0.21389,0.360242,0.913824,0.167816,0.378304,0.505816,0.241659,0.365434,0.793583,0.464179,0.524431,0.757661,0.00283492,0.120976,0.401419,0.419316,0.402395,0.14608,0.54431,0.180034,0.220885,0.631192,0.76715,0.63466,0.0929539,0.603225,0.10399,0.280373,0.450128,0.565122,0.830041,0.780778,0.729607,0.463174,0.979488,0.92403,0.973183,0.206305,0.534526,0.0273685,0.263821,0.384866,0.00710136,0.705557,0.74854,0.639965,0.482733,0.80226,0.74652,0.965511,0.899748,0.0377584,0.77591,0.983723,0.0927677,0.104981,0.715765,0.682543,0.327468,0.515148,0.878131,0.982113,0.258859,0.862169,0.874055,0.969222,0.598303,0.854611,0.202807,0.810999,0.846023,0.565299,0.527845,0.220397,0.496135,0.369707,0.816981,0.285537,0.750769,0.192827,0.487001,0.126902,0.235864,0.0473749,0.476233,0.498469,0.395985,0.686613,0.440012,0.383586,0.820653,0.844644,0.274432,0.196393,0.996119,0.495245,0.901208,0.733946,0.0492999,0.282704,0.712959,0.234228,0.171836,0.768944,0.144817,0.432073,0.479447,0.610986,0.303552,0.267906,0.282284,0.635062,0.985483,0.985872,0.43447,0.22996,0.341961,0.981155,0.149082,0.817527,0.492766,0.220493,0.285585,0.1198,0.65467,0.339059,0.873542,0.863348,0.496795,0.179292,0.735794,0.213243,0.735729,0.858512,0.993136,0.627701,0.51748,0.740058,0.348696,0.805988,0.0871655,0.0531273,0.0292189,0.926517,0.907201,0.483432,0.566816,0.782512,0.0422089,0.66242,0.0843984,0.627059,0.394479,0.054679,0.908228,0.759834,0.836394,0.933306,0.627592,0.774678,0.0923045,0.97021,0.795866,0.762659,0.295787,0.0629067,0.779946,0.0528624,0.237608,0.383195,0.878468,0.060717,0.477992,0.449676,0.57955,0.949202,0.705285,0.145839,0.330831,0.21159,0.757517,0.272707,0.609543,0.336868,0.770578,0.886204,0.666826,0.697769,0.914033,0.729708,0.255219,0.904231,0.601705,0.261275,0.459452,0.642262,0.250102,0.777646,0.747069,0.801633,0.279154,0.0279608,0.653252,0.22392,0.431265,0.81735,0.544247,0.0654361,0.4091,0.251692,0.716297,0.851477,0.411677,0.431468,0.924219,0.650568,0.562525,0.0298653,0.940107,0.804012,0.214845,0.53177,0.310515,0.157457,0.881958,0.581093,0.667726,0.328689,0.280184,0.734454,0.889097,0.762066,0.360163,0.2284,0.882172,0.564575,0.638746,0.166286,0.225274,0.773662,0.903906,0.718609,0.629546,0.293337,0.416522,0.689398,0.416911,0.430634,0.629582,0.295504,0.879757,0.58732,0.0498191,0.680755,0.211771,0.52443,0.96905,0.319004,0.560714,0.572717,0.1181,0.608018,0.476588,0.151786,0.120869,0.530046,0.487522,0.133211,0.591027,0.568076,0.419438,0.14719,0.386127,0.186168,0.00330389,0.876907,0.830118,0.060659,0.786081,0.612952,0.063227,0.707608,0.812872,0.858075,0.755944,0.385802,0.0413557,0.852033,0.663128,0.672532,0.115359,0.277119,0.0910456,0.251081,0.201672,0.287762,0.675762,0.996493,0.17599,0.578866,0.0124354,0.603509,0.956291,0.00486434,0.376551,0.863572,0.608524,0.931662,0.709956,0.515613,0.734983,0.943608,0.284873,0.175492,0.953409,0.468999,0.397465,0.158283,0.660805,0.129238,0.29345,0.252782,0.932657,0.202479,0.705085,0.293362,0.190612,0.843141,0.397748,0.0752412,0.00394946,0.00138009,0.706815,0.257853,0.592204,0.92104,0.0706798,0.260163,0.152401,0.682525,0.390476,0.496794,0.129104,0.577613,0.305606,0.760728,0.713905,0.341406,0.560712,0.633336,0.661764,0.115985,0.586417,0.861629,0.272701,0.624519,0.675051,0.0928814,0.509757,0.480147,0.645887,0.424835,0.524753,0.69211,0.933275,0.503573,0.192991,0.480633,0.665743,0.768113,0.0545743,0.310721,0.840744,0.456159,0.436842,0.748652,0.501951,0.494798,0.255866,0.770012,0.441515,0.271559,0.214724,0.336357,0.191903,0.962859,0.499422,0.663867,0.076043,0.9981,0.51225,0.932245,0.720504,0.0471488,0.993299,0.552323,0.499931,0.173199,0.0862219,0.27561,0.387739,0.980629,0.309582,0.322282,0.471287,0.985674,0.246417,0.279002,0.611048,0.165347,0.729789,0.214035,0.289629,0.264748,0.872717,0.434553,0.209426,0.418833,0.851375,0.256295,0.825433,0.636533,0.702354,0.808285,0.838801,0.119546,0.376762,0.218911,0.388009,0.192299,0.860431,0.514677,0.487222,0.797076,0.335621,0.115943,0.849818,0.747771,0.244731,0.11017,0.956789,0.918705,0.692914,0.875755,0.177229,0.492988,0.87189,0.381432,0.446114,0.930779,0.887699,0.369118,0.667768,0.366171,0.256137,0.49121,0.56145,0.798447,0.767633,0.242303,0.430906,0.0571603,0.0548215,0.646204,0.4082,0.625338,0.207361,0.808655,0.906536,0.763464,0.884001,0.336715,0.79543,0.113329,0.163108,0.0600172,0.730611,0.948147,0.157944,0.892339,0.259959,0.780496,0.764937,0.23093,0.0825812,0.370705,0.241551,0.497351,0.651602,0.254728,0.449003,0.80723,0.621502,0.190555,0.744712,0.108384,0.561884,0.136591,0.557537,0.917656,0.225838,0.737385,0.511824,0.678037,0.34945,0.0159379,0.674029,0.624841,0.116804,0.489257,0.763266,0.995927,0.105667,0.0537958,0.0496806,0.828197,0.462113,0.410098,0.974376,0.818558,0.211523,0.571383,0.332127,0.59337,0.673365,0.748917,0.765213,0.495428,0.0718425,0.986965,0.602739,0.42562,0.0771145,0.963594,0.563631,0.840057,0.242055,0.41134,0.762996,0.233062,0.738874,0.561993,0.249445,0.393352,0.745654,0.310006,0.725423,0.151407,0.447158,0.302107,0.299094,0.955759,0.707566,0.288644,0.8483,0.827124,0.742398,0.0859752,0.177001,0.289425,0.660436,0.709839,0.485139,0.266254,0.986761,0.550857,0.126691,0.320006,0.418336,0.884427,0.142642,0.612135,0.121866,0.925724,0.0768284,0.11676,0.598804,0.108953,0.766662,0.441176,0.240692,0.134359,0.0155928,0.0598841,0.532592,0.829995,0.00740486,0.483791,0.556453,0.11026,0.971671,0.319911,0.120432,0.289292,0.0850722,0.577081,0.688734,0.641039,0.938951,0.528275,0.544135,0.987307,0.759263,0.026575,0.00340247,0.00107443,0.685023,0.0906889,0.0238717,0.30031,0.774023,0.424115,0.863903,0.624581,0.293208,0.715354,0.353609,0.15692,0.367277,0.394952,0.471755,0.883792,0.19055,0.887905,0.616396,0.80318,0.772747,0.209064,0.194964,0.532839,0.213028,0.245641,0.852744,0.133375,0.229027,0.334823,0.514679,0.520777,0.0326909,0.147249,0.187005,0.254489,0.114199,0.211844,0.348891,0.442353,0.278211,0.949895,0.513494,0.754957,0.911303,0.912838,0.307994,0.666188,0.787722,0.71389,0.0575967,0.802574,0.536713,0.0953455,0.226436,0.631995,0.799572,0.939518,0.833019,0.672742,0.79117,0.649605,0.987501,0.139037,0.102878,0.154931,0.197712,0.163929,0.0707896,0.581138,0.886267,0.0597902,0.452393,0.734092,0.562824,0.628916,0.238994,0.761094,0.833653,0.566616,0.132374,0.0820807,0.584252,0.531613,0.50733,0.987174,0.27497,0.220604,0.958665,0.0431727,0.00599754,0.27113,0.0745389,0.214007,0.440567,0.694933,0.518122,0.311334,0.886671,0.87954,0.106593,0.891798,0.211358,0.598615,0.559267,0.606647,0.370228,0.598638,0.243062,0.866409,0.752073,0.953103,0.333701,0.676156,0.0942876,0.179051,0.757299,0.267995,0.436421,0.807326,0.871405,0.577873,0.867222,0.951082,0.888973,0.768526,0.852728,0.30146,0.644849,0.653976,0.716216,0.335283,0.841327,0.46828,0.173448,0.759459,0.721824,0.670625,0.247982,0.0084486,0.363485,0.083291,0.587792,0.403983,0.618134,0.466824,0.162078,0.113082,0.496461,0.945896,0.436388,0.246914,0.770753,0.0652483,0.703009,0.400661,0.987944,0.570661,0.680263,0.686382,0.587465,0.197161,0.64077,0.477592,0.29737,0.886058,0.528106,0.420349,0.984835,0.133681,0.0279425,0.797536,0.0301151,0.663718,0.584954,0.294365,0.954442,0.216318,0.910566,0.989779,0.558973,0.851344,0.114256,0.685125,0.134727,0.588896,0.169209,0.769009,0.724957,0.287742,0.489024,0.795105,0.970846,0.943808,0.88601,0.52068,0.00869501,0.790952,0.552059,0.579553,0.996662,0.581286,0.306557,0.728484,0.63059,0.233656,0.181344,0.0160469,0.568033,0.375067,0.532517,0.0432845,0.426912,0.567693,0.805639,0.239895,0.294892,0.80658,0.096226,|0.9735,0.717417,0.735165,0.0561426,0.780784,0.679974,0.108465,0.969631,0.341297,0.822861,0.805579,0.292467,0.745447,0.837497,0.986885,0.992935,0.517144,0.198425,0.0209689,0.823983,0.915193,0.892712,0.0151733,0.314691,0.548594,0.697103,0.982274,0.181925,0.775725,0.853266,0.0794882,0.664467,0.0625932,0.994694,0.739404,0.830289,0.456618,0.688699,0.770045,0.080521,0.776713,0.453811,0.987599,0.363536,0.998012,0.967107,0.41959,0.0342205,0.318047,0.425664,0.685245,0.0577431,0.607928,0.937746,0.992917,0.0943649,0.222541,0.0978161,0.444435,0.152485,0.907999,0.552106,0.254219,0.978338,0.18731,0.422182,0.369601,0.835256,0.826402,0.807997,0.476966,0.974132,0.34748,0.699029,0.0863593,0.909242,0.777962,0.128295,0.620917,0.466178,0.369772,0.763782,0.987251,0.468417,0.664707,0.109824,0.491822,0.177359,0.980016,0.612928,0.124769,0.773002,0.229967,0.897316,0.68147,0.566714,0.50486,0.359451,0.943241,0.782018,0.509275,0.620361,0.905352,0.858874,0.82385,0.838437,0.53094,0.512983,0.614888,0.435916,0.0542462,0.837088,0.608077,0.669251,0.117907,0.115337,0.367071,0.383973,0.329312,0.168464,0.519004,0.798931,0.847596,0.895863,0.351981,0.24919,0.682081,0.631557,0.53055,0.328873,0.509004,0.79813,0.571959,0.912903,0.0383729,0.815493,0.864437,0.72877,0.0503811,0.0593068,0.728048,0.141055,0.383021,0.86779,0.998167,0.759731,0.511018,0.473628,0.560403,0.5611,0.502595,0.578983,0.198542,0.351556,0.812087,0.0172368,0.784439,0.535918,0.0586972,0.539116,0.0626261,0.719465,0.720789,0.714866,0.595846,0.483227,0.470206,0.693915,0.578523,0.305369,0.766114,0.762034,0.00478977,0.437136,0.246708,0.46189,0.864764,0.778579,0.668111,0.559708,0.661413,0.0919179,0.10446,0.672612,0.979099,0.574008,0.255656,0.582846,0.0752108,0.810246,0.223236,0.645009,0.0378929,0.75655,0.0389908,0.115819,0.745021,0.897282,0.569629,0.685123,0.624982,0.102673,0.112009,0.815237,0.108426,0.693064,0.804218,0.540689,0.573265,0.43901,0.587878,0.186792,0.0633706,0.897215,0.683498,0.708465,0.626084,0.652828,0.84426,0.841483,0.866153,0.230036,0.773201,0.47254,0.226092,0.487352,0.985919,0.291887,0.0268971,0.512737,0.164836,0.0388332,0.042275,0.819815,0.951554,0.256596,0.894262,0.807986,0.919137,0.0818532,0.578027,0.828482,0.662754,0.547179,0.324796,0.780716,0.788374,0.0811957,0.128362,0.222018,0.966044,0.112277,0.585477,0.248443,0.787989,0.736968,0.388781,0.0167893,0.73116,0.790889,0.170954,0.311578,0.484767,0.364733,0.630691,0.300575,0.390508,0.328096,0.109569,0.00539404,0.250414,0.521902,0.87871,0.748199,0.909405,0.857588,0.779847,0.324941,0.985915,0.406953,0.9249,0.817848,0.870755,0.82742,0.429697,0.249511,0.924325,0.92179,0.494351,0.81499,0.772695,0.993133,0.67786,0.635428,0.410264,0.675176,0.975467,0.945026,0.0528229,0.655943,0.17826,0.0641994,0.910802,0.22719,0.048506,0.80908,0.209554,0.266616,0.0398667,0.429126,0.0449979,0.808208,0.0573457,0.5053,0.218864,0.413352,0.801973,0.992856,0.112367,0.0511774,0.396939,0.726513,0.213443,0.723843,0.535616,0.817564,0.407713,0.697715,0.0724475,0.383088,0.204368,0.85819,0.362741,0.114797,0.35138,0.761324,0.947988,0.60264,0.468299,0.873275,0.727694,0.311318,0.411619,0.721231,0.378323,0.632695,0.996404,0.160532,0.142178,0.398889,0.35869,0.429109,0.0642454,0.43932,0.378884,0.81698,0.0564185,0.877162,0.623228,0.902956,0.373665,0.444418,0.493831,0.992451,0.540214,0.421625,0.042863,0.281408,0.558824,0.362841,0.724735,0.609179,0.224837,0.167425,0.174514,0.352763,0.630084,0.361062,0.503879,0.174469,0.677521,0.284767,0.836595,0.436883,0.306885,0.684859,0.795939,0.654458,0.420315,0.65479,0.654765,0.0728872,0.60885,0.555083,0.18667,0.381537,0.510334,0.0488978,0.305233,0.725529,0.278879,0.368735,0.647702,0.369921,0.772109,0.436274,0.890632,0.964723,0.681777,0.822861,0.506217,0.5287,0.270606,0.0338957,0.327534,0.730552,0.254893,0.793692,0.932596,0.120429,0.81059,0.548533,0.645384,0.687279,0.847115,0.729853,0.357348,0.0835438,0.656914,0.00771165,0.00821537,0.714899,0.912881,0.0703192,0.485429,0.574552,0.752391,0.952041,0.213725,0.0966763,0.383012,0.457577,0.747211,0.997127,0.823523,0.431683,0.203976,0.00935942,0.205864,0.112902,0.694212,0.00942993,0.746047,0.344824,0.178221,0.2167,0.573292,0.0897017,0.866682,0.506055,0.638669,0.328813,0.633143,0.715823,0.711089,0.365764,0.98747,0.960721,0.927687,0.368006,0.256912,0.658009,0.562233,0.750008,0.683646,0.0558203,0.676932,0.0527642,0.429955,0.589122,0.661478,0.0549853,0.249605,0.957994,0.740155,0.455576,0.524616,0.661561,0.944726,0.157451,0.680057,0.336378,0.494105,0.757176,0.168318,0.446921,0.577277,0.835682,0.65633,0.789429,0.471568,0.526868,0.222524,0.807216,0.643479,0.371674,0.843156,0.886575,0.0279453,0.48507,0.487027,0.274764,0.251968,0.295113,0.860169,0.919656,0.930411,0.614763,0.316493,0.637532,0.863376,0.987677,0.220445,0.756664,0.0559744,0.509602,0.755594,0.350954,0.916536,0.296427,0.268801,0.0699825,0.306703,0.607129,0.693842,0.859929,0.417148,0.0259725,0.413691,0.633415,0.159128,0.165365,0.395074,0.535064,0.693844,0.881932,0.177106,0.581773,0.688478,0.257946,0.962467,0.885018,0.635239,0.18956,0.601521,0.994605,0.0946388,0.0819125,0.65416,0.615509,0.212324,0.503569,0.451633,0.605517,0.193021,0.858725,0.429272,0.61866,0.48996,0.581217,0.562199,0.42019,0.711837,0.118746,0.832807,0.250186,0.193828,0.703991,0.133402,0.912454,0.996272,0.0561331,0.781319,0.687186,0.40231,0.311998,0.0660478,0.132127,0.574844,0.448383,0.210881,0.693278,0.511927,0.6091,0.866525,0.902677,0.675777,0.871876,0.222577,0.374281,0.507464,0.0271692,0.539308,0.652971,0.109444,0.480252,0.378692,0.253089,0.341952,0.281587,0.487422,0.664126,0.10456,0.131476,0.285157,0.632006,0.0511576,0.223568,0.94529,0.730617,0.669464,0.453764,0.519497,0.0260504,0.286856,0.297111,0.563778,0.679398,0.814346,0.84764,0.387237,0.53446,0.13123,0.786112,0.527574,0.605451,0.732306,0.588987,0.723355,0.904704,0.986038,0.891926,0.85879,0.746356,0.0168403,0.0957767,0.171819,0.178594,0.353268,0.411052,0.182672,0.514272,0.355841,0.242782,0.0921646,0.921882,0.228825,0.573748,0.108277,0.269219,0.127094,0.529069,0.927181,0.255375,0.94274,0.331327,0.173413,0.039158,0.0847654,0.567279,0.928162,0.789811,0.42991,0.679375,0.713641,0.712302,0.00849646,0.994904,0.559363,0.895259,0.130854,0.322651,0.191659,0.413222,0.181684,0.051847,0.724105,0.0744469,0.544647,0.83367,0.129498,0.413069,0.883281,0.597512,0.0831034,0.740431,0.325422,0.568602,0.0107446,0.771681,0.689072,0.440263,0.435265,0.947131,0.498039,0.779917,0.482936,0.991594,0.248128,0.897358,0.0880923,0.421575,0.0915393,0.257403,0.750197,0.0773073,0.767682,0.604607,0.35335,0.697052,0.403577,0.935897,0.299928,0.0827575,0.237815,0.199212,0.604658,0.0155182,0.145141,0.700571,0.775108,0.982241,0.992101,0.15051,0.743905,0.380904,0.316045,0.480939,0.620305,0.347823,0.136204,0.0175505,0.220068,0.0199357,0.993129,0.550941,0.0877196,0.479161,0.180018,0.490293,0.6614,0.904783,0.532377,0.301318,0.767223,0.988199,0.336362,0.157367,0.459101,0.895509,0.508905,0.0359185,0.0429103,0.316087,0.622822,0.573691,0.561928,0.37081,0.303695,0.733624,0.170383,0.436524,0.492027,0.94847,0.0220687,0.582731,0.969475,0.892539,0.788984,0.600716,0.384217,0.106304,0.443625,0.250695,0.252266,0.376863,0.0941167,0.853635,0.0795273,0.301638,0.670816,0.751398,0.516068,0.385811,0.0534617,0.231103,0.732594,0.525123,0.0713121,0.180158,0.528412,0.839099,0.501708,0.986653,0.731786,0.0715138,0.511872,0.84664,0.984489,0.501744,0.910962,0.217783,0.872737,0.857382,0.154521,0.333167,0.92019,0.0532343,0.231,0.334006,0.685977,0.702136,0.79016,0.0662334,0.893367,0.524945,0.255725,0.577117,0.63865,0.665239,0.683764,0.0880666,0.348683,0.215198,0.16833,0.684621,0.509019,0.826019,0.49093,0.239048,0.467043,0.203763,0.898771,0.70987,0.0112696,0.742379,0.134108,0.0513414,0.794719,0.418077,0.688193,0.247871,0.258052,0.25688,0.958091,0.0920411,0.133796,0.866539,0.154392,0.369289,0.935568,0.367028,0.631568,0.575796,0.969109,0.118664,0.764729,0.380336,0.882781,0.230893,0.52365,0.00327462,0.974566,0.46326,0.911874,0.0310996,0.583968,0.961479,0.87551,0.230293,0.629203,0.705327,0.423561,0.120318,0.236544,0.522352,0.989755,0.0522696,0.268725,0.873186,0.36573,0.298424,0.318618,0.0876762,0.559844,0.946873,0.737855,0.198313,0.264702,0.202234,0.086042,0.339756,0.860474,0.273031,0.39266,0.811716,0.370529,0.899343,0.561823,0.0296921,0.336503,0.726808,0.113388,0.107158,0.785639,0.176149,0.670258,0.180319,0.486783,0.78263,0.921174,0.803941,0.558889,0.793103,0.726769,0.954512,0.6333,0.124831,0.811157,0.112764,0.371763,0.943483,0.537974,0.795176,0.482802,0.361266,0.0603368,0.262512,0.535081,0.0999206,0.529761,0.247471,0.316703,0.149078,0.405795,0.276807,0.564747,0.741713,0.0628564,0.246159,0.964518,0.167539,0.78895,0.0413385,0.887541,0.917231,0.774814,0.983114,0.307411,0.60104,0.786038,0.834623,0.926551,0.316384,0.981998,0.165248,0.782755,0.267614,0.783442,0.154117,0.921882,0.87777,0.307867,0.360193,0.474018,0.473604,0.757312,0.743335,0.909513,0.0272949,0.86982,0.19758,0.953373,0.620504,0.0840856,0.930676,0.667678,0.939144,0.0812698,0.227141,0.956814,0.219169,0.647101,0.78892,0.729695,0.188015,0.68212,0.655244,0.797279,0.819547,|0.161336,0.706628,0.00707054,0.34169,0.228466,0.0856404,0.634227,0.782858,0.547978,0.86611,0.995983,0.375505,0.800978,0.666398,0.614448,0.273484,0.213017,0.217766,0.593813,0.0846034,0.779121,0.768654,0.74005,0.229734,0.445474,0.625696,0.981187,0.159954,0.136172,0.644439,0.661032,0.625289,0.00854635,0.993382,0.961405,0.335708,0.811195,0.979393,0.0285453,0.324976,0.235171,0.102402,0.896908,0.272547,0.108694,0.476494,0.0377048,0.889693,0.191935,0.175038,0.674127,0.0333735,0.975175,0.482448,0.537688,0.947452,0.611534,0.461513,0.582945,0.90457,0.142998,0.384161,0.956698,0.335837,0.0916281,0.646243,0.296586,0.141822,0.521078,0.631428,0.581192,0.32384,0.861775,0.432312,0.361709,0.705082,0.223468,0.337755,0.440369,0.806726,0.738883,0.929781,0.984819,0.564134,0.151901,0.812822,0.10257,0.4364,0.879706,0.759005,0.860335,0.262032,0.0612805,0.085061,0.422852,0.951539,0.0101123,0.18988,0.437943,0.110643,0.877143,0.708533,0.230326,0.585118,0.777246,0.239116,0.797194,0.0654025,0.0639032,0.579601,0.767769,0.28298,0.0573702,0.045454,0.178232,0.796851,0.745253,0.462149,0.501679,0.937167,0.588315,0.0519822,0.322061,0.368459,0.588488,0.676598,0.252106,0.718925,0.21519,0.0217605,0.331186,0.718242,0.497413,0.273476,0.275497,0.883372,0.0875718,0.9971,0.686038,0.356805,0.549743,0.696229,0.0907046,0.414134,0.324001,0.192736,0.166276,0.0831719,0.0884671,0.477064,0.613256,0.311935,0.806772,0.296057,0.19841,0.125765,0.640973,0.317304,0.925857,0.052892,0.0704771,0.185172,0.938354,0.74722,0.893403,0.381374,0.955079,0.932591,0.813799,0.917937,0.0292531,0.830581,0.473307,0.653421,0.666346,0.908835,0.279276,0.0822895,0.0525196,0.802414,0.598992,0.245403,0.163093,0.804194,0.0741595,0.0659497,0.201263,0.492909,0.970039,0.372628,0.436221,0.671747,0.163985,0.579037,0.963962,0.710247,0.109507,0.76956,0.471181,0.206336,0.461405,0.302428,0.342039,0.125756,0.716014,0.388098,0.881095,0.948584,0.951158,0.0815702,0.377819,0.172227,0.0637453,0.411327,0.638203,0.267432,0.00239515,0.403659,0.0465707,0.172502,0.955605,0.625746,0.505158,0.675051,0.576877,0.31317,0.272756,0.96091,0.286802,0.424425,0.990497,0.0986651,0.475999,0.768067,0.172158,0.610044,0.958412,0.533895,0.694263,0.353176,0.95153,0.764144,0.765639,0.275071,0.901276,0.557525,0.182732,0.818162,0.481769,0.62772,0.695656,0.426279,0.170276,0.397081,0.561073,0.70498,0.373796,0.538949,0.0150472,0.488803,0.668178,0.18526,0.15596,0.645691,0.336473,0.453295,0.965647,0.305947,0.253118,0.521388,0.988069,0.191852,0.951948,0.988474,0.604958,0.980414,0.221761,0.5246,0.339927,0.624017,0.344263,0.207294,0.0562919,0.711928,0.00395888,0.375923,0.439853,0.804377,0.148219,0.616707,0.23508,0.478162,0.615292,0.532382,0.881478,0.760592,0.499888,0.796428,0.982189,0.882228,0.955993,0.495856,0.267441,0.449495,0.539823,0.982707,0.723383,0.371306,0.293826,0.540247,0.272957,0.736995,0.465286,0.314064,0.764585,0.0220458,0.826992,0.304797,0.760519,0.497485,0.747177,0.519028,0.163915,0.97957,0.637349,0.660814,0.0577211,0.465686,0.90167,0.321467,0.630853,0.15564,0.535409,0.731334,0.910934,0.263023,0.601272,0.703709,0.391818,0.79495,0.88994,0.873918,0.798621,0.502617,0.501058,0.304762,0.379164,0.424495,0.321382,0.534001,0.737265,0.845181,0.49355,0.761314,0.2933,0.0998212,0.0264252,0.99275,0.377157,0.953552,0.121208,0.25146,0.146676,0.215162,0.920383,0.663411,0.717199,0.178739,0.363557,0.951572,0.212929,0.105718,0.171083,0.923874,0.693232,0.341079,0.710069,0.242968,0.269138,0.607821,0.447588,0.0582576,0.892022,0.0923327,0.228492,0.0702931,0.314924,0.0595182,0.521703,0.235169,0.29277,0.609816,0.525872,0.191575,0.959559,0.843806,0.256019,0.985311,0.930067,0.207749,0.956059,0.120168,0.964315,0.727221,0.16106,0.569184,0.742295,0.344294,0.867298,0.89478,0.282705,0.517238,0.809636,0.452475,0.352906,0.851544,0.64143,0.0212873,0.892966,0.684171,0.320344,0.389471,0.322287,0.559161,0.550926,0.664154,0.752302,0.934791,0.820145,0.408836,0.437111,0.474229,0.329629,0.261685,0.730165,0.256768,0.812397,0.705735,0.894308,0.316117,0.942124,0.767815,0.96244,0.0735045,0.368269,0.289311,0.624223,0.525105,0.551475,0.394687,0.70319,0.85346,0.369921,0.577452,0.977727,0.828482,0.631984,0.214807,0.911061,0.328925,0.702585,0.644112,0.824305,0.767043,0.531646,0.217086,0.325632,0.109497,0.81962,0.966186,0.774583,0.827033,0.609119,0.647864,0.286955,0.308661,0.76876,0.712947,0.155569,0.708251,0.879429,0.50401,0.883503,0.256932,0.0188717,0.921566,0.657795,0.95345,0.488823,0.904626,0.604632,0.235423,0.682627,0.910453,0.00241309,0.416613,0.760875,0.75646,0.0777549,0.757618,0.0590302,0.261354,0.0255501,0.86707,0.860504,0.669333,0.0607109,0.36627,0.0255519,0.102941,0.741906,0.425915,0.359019,0.531436,0.886753,0.781037,0.912513,0.447711,0.294074,0.612021,0.499784,0.882474,0.248333,0.442697,0.766794,0.178838,0.136422,0.360193,0.317677,0.284244,0.834634,0.397988,0.670581,0.482672,0.0961868,0.0531632,0.273798,0.57141,0.74174,0.161299,0.615455,0.684269,0.167484,0.198552,0.849055,0.709846,0.663333,0.679066,0.405668,0.245372,0.106638,0.234667,0.99568,0.84638,0.316086,0.897398,0.953239,0.35273,0.154291,0.677607,0.324415,0.314402,0.11913,0.687125,0.275085,0.290078,0.780956,0.851729,0.39509,0.682838,0.540874,0.339791,0.266731,0.436746,0.683433,0.405713,0.96195,0.592038,0.03877,0.440246,0.637342,0.205306,0.779424,0.124002,0.537576,0.584165,0.99708,0.467559,0.671207,0.769854,0.233405,0.475168,0.585592,0.689477,0.505961,0.555257,0.294078,0.295858,0.744994,0.448859,0.99156,0.931251,0.621804,0.460062,0.340087,0.825017,0.179621,0.479749,0.995255,0.0588493,0.996526,0.798664,0.0271857,0.972786,0.0951273,0.357798,0.409578,0.19698,0.268591,0.647358,0.926302,0.746713,0.92436,0.940762,0.810044,0.093656,0.945557,0.898155,0.107457,0.910561,0.134089,0.651176,0.411383,0.1981,0.208031,0.677137,0.2432,0.842395,0.714728,0.981084,0.440232,0.182874,0.442112,0.963435,0.723221,0.0379195,0.122533,0.259943,0.816251,0.563364,0.491486,0.430514,0.0151243,0.203162,0.936025,0.744774,0.77933,0.363204,0.521495,0.308244,0.814854,0.0328941,0.716092,0.45731,0.604664,0.816799,0.336885,0.492712,0.944676,0.262743,0.337782,0.796897,0.499971,0.687951,0.348808,0.150392,0.447572,0.0123802,0.418974,0.750696,0.770172,0.790497,0.29228,0.037951,0.804535,0.744085,0.988009,0.211273,0.787912,0.0667115,0.26965,0.977211,0.356743,0.735893,0.456902,0.78618,0.855456,0.75938,0.740174,0.85025,0.772567,0.721186,0.506535,0.315249,0.586673,0.833274,0.398542,0.694349,0.286133,0.432587,0.605448,0.966232,0.437222,0.387483,0.702949,0.0681429,0.983714,0.151221,0.375661,0.566414,0.157287,0.453442,0.526763,0.61879,0.727589,0.266839,0.820579,0.267745,0.610547,0.605932,0.515829,0.739849,0.199194,0.866819,0.181373,0.151243,0.590227,0.818385,0.843926,0.0485975,0.0857742,0.041319,0.92725,0.909628,0.602196,0.179579,0.56254,0.22992,0.438275,0.485202,0.146007,0.801878,0.632996,0.0478417,0.759779,0.5879,0.892337,0.461798,0.657533,0.611784,0.342982,0.53926,0.755798,0.311303,0.0596819,0.922057,0.570666,0.937119,0.32838,0.205451,0.980447,0.775979,0.426538,0.200059,0.464249,0.496938,0.121195,0.108377,0.214087,0.826498,0.574732,0.245391,0.996602,0.0150148,0.302986,0.971603,0.656125,0.950959,0.708936,0.369714,0.548063,0.379842,0.270411,0.345287,0.774552,0.971519,0.985171,0.403237,0.604033,0.617192,0.0933324,0.12962,0.178783,0.224275,0.223701,0.933942,0.339563,0.987599,0.245816,0.965244,0.452958,0.295853,0.334371,0.52946,0.771129,0.0295728,0.64014,0.408435,0.570327,0.0508764,0.475347,0.861548,0.652448,0.492976,0.519942,0.206574,0.807188,0.543677,0.575489,0.373396,0.91825,0.0814866,0.311062,0.0558064,0.557895,0.625297,0.647798,0.509155,0.6473,0.571791,0.510579,0.367255,0.96592,0.690699,0.102623,0.10793,0.810925,0.611847,0.155613,0.049464,0.271937,0.9457,0.455772,0.403537,0.493606,0.0329808,0.841069,0.0575335,0.474596,0.947146,0.842464,0.199406,0.411052,0.653298,0.652064,0.995794,0.577535,0.438163,0.81411,0.673539,0.576389,0.601162,0.624297,0.0434069,0.879996,0.442727,0.84424,0.875431,0.634285,0.316318,0.888269,0.990864,0.822974,0.504466,0.286271,0.225123,0.434229,0.462072,0.852564,0.854022,0.705857,0.471063,0.49991,0.929323,0.416845,0.0420583,0.522531,0.658446,0.282408,0.521594,0.121932,0.680228,0.197678,0.725682,0.524473,0.405303,0.0504786,0.326092,0.958568,0.934842,0.654328,0.228563,0.924994,0.058138,0.0994331,0.745409,0.159172,0.121687,0.046441,0.678649,0.395726,0.6082,0.335188,0.84096,0.119412,0.47196,0.404444,0.622265,0.211931,0.892968,0.81352,0.0842048,0.167195,0.734548,0.189741,0.687424,0.184221,0.18299,0.518164,0.654899,0.940584,0.808029,0.950164,0.0572808,0.882686,0.587375,0.667973,0.449751,0.388175,0.309667,0.843323,0.125253,0.0812114,0.918591,0.566439,0.698682,0.510233,0.913832,0.640506,0.771028,0.938996,0.248744,0.104336,0.470487,0.231543,0.674586,0.0813849,0.888069,0.1286,0.817761,0.967831,0.966906,0.0343445,0.87282,0.795276,0.839246,0.465298,0.0167285,0.412435,0.374001,0.434915,0.388955,0.887861,0.416634,0.780268,0.0414203,0.74481,0.667162,0.0283132,0.525786,0.571619,0.999644,0.0245336,0.152573,0.986846,0.937604,0.935508,0.457012,0.200324,0.352878,|0.18582,0.463181,0.555813,0.457123,0.459379,0.693928,0.579844,0.0105058,0.2716,0.270231,0.867424,0.597294,0.926629,0.426721,0.921983,0.23039,0.108847,0.450724,0.357759,0.345727,0.117164,0.323161,0.218583,0.721533,0.548124,0.0451463,0.108461,0.0219207,0.444241,0.112476,0.556418,0.0519176,0.352272,0.303459,0.556972,0.0105172,0.197429,0.0120928,0.269973,0.771421,0.352623,0.869116,0.43096,0.831539,0.768209,0.050523,0.113742,0.472236,0.887232,0.845216,0.158695,0.0577216,0.83409,0.224071,0.472701,0.613728,0.0534074,0.715546,0.313324,0.0403832,0.639778,0.961964,0.6269,0.986803,0.315037,0.209632,0.95342,0.301634,0.481239,0.909205,0.0555222,0.161507,0.270557,0.00926214,0.0138455,0.846604,0.924609,0.0996011,0.841076,0.436925,0.724791,0.953978,0.674695,0.43274,0.1118,0.543725,0.580146,0.376209,0.106805,0.600517,0.104698,0.74273,0.725627,0.487531,0.242816,0.0869687,0.0594524,0.848808,0.968018,0.577484,0.39334,0.89682,0.0129444,0.141379,0.132932,0.789687,0.904809,0.0642483,0.421975,0.719256,0.631071,0.185261,0.783831,0.387651,0.458418,0.148076,0.669469,0.257123,0.816779,0.556798,0.430279,0.0303576,0.497247,0.197574,0.137626,0.362058,0.97872,0.640109,0.362443,0.617269,0.0887579,0.504972,0.870149,0.649609,0.626677,0.526067,0.794191,0.782547,0.560309,0.39251,0.267781,0.976452,0.439723,0.271581,0.373741,0.642542,0.649639,0.21121,0.879039,0.680782,0.430754,0.351667,0.846894,0.857492,0.393731,0.801313,0.711398,0.957241,0.145535,0.669565,0.384647,0.352978,0.74577,0.698883,0.816401,0.224807,0.827085,0.204183,0.343191,0.184836,0.933435,0.514337,0.328139,0.860812,0.192296,0.567143,0.191017,0.609502,0.43561,0.991387,0.122686,0.00486028,0.89441,0.401796,0.838359,0.701405,0.474408,0.169018,0.994503,0.000287175,0.249621,0.263217,0.880958,0.530345,0.45989,0.718454,0.646322,0.138576,0.44041,0.709292,0.790797,0.96987,0.981094,0.166568,0.718261,0.997016,0.79641,0.282717,0.28395,0.181155,0.684186,0.143547,0.234901,0.183882,0.590092,0.747928,0.547387,0.162524,0.682777,0.581364,0.913398,0.744645,0.548393,0.305367,0.846014,0.369736,0.0278971,0.504396,0.152075,0.0130152,0.253583,0.892495,0.886942,0.643805,0.185271,0.576514,0.601661,0.481924,0.0826572,0.80416,0.301224,0.0959194,0.0022583,0.868223,0.210011,0.1641,0.488613,0.224017,0.345285,0.51131,0.546171,0.833367,0.495333,0.928053,0.838765,0.150931,0.8866,0.663128,0.0574082,0.305601,0.960767,0.303711,0.667098,0.28715,0.639022,0.34926,0.837878,0.492122,0.770459,0.607788,0.491783,0.78456,0.550945,0.312395,0.67602,0.870289,0.724845,0.134061,0.734512,0.858614,0.679536,0.320553,0.589217,0.269409,0.976385,0.679596,0.254115,0.805226,0.0288385,0.416357,0.800432,0.7536,0.869063,0.937868,0.731703,0.803857,0.656516,0.763958,0.553502,0.639563,0.135919,0.210409,0.542697,0.615023,0.302334,0.915013,0.18774,0.890754,0.183505,0.959131,0.628454,0.831605,0.432463,0.1475,0.733368,0.687486,0.423134,0.737134,0.322931,0.292598,0.427512,0.609957,0.928299,0.38136,0.463428,0.590182,0.277378,0.355159,0.590531,0.724061,0.490119,0.888658,0.12924,0.705697,0.267452,0.908035,0.805128,0.153021,0.511401,0.882648,0.236208,0.137439,0.26985,0.663191,0.95155,0.138675,0.795551,0.690207,0.368703,0.24801,0.285945,0.491792,0.975508,0.370392,0.892719,0.71193,0.23699,0.347921,0.121236,0.821142,0.470231,0.743585,0.737958,0.966135,0.849972,0.0861444,0.0800744,0.603289,0.255333,0.402793,0.703969,0.177554,0.332462,0.578576,0.1507,0.763223,0.736128,0.0638907,0.189028,0.272301,0.0364812,0.806957,0.374414,0.612161,0.922689,0.651146,0.616286,0.972368,0.150533,0.141878,0.410496,0.357035,0.893515,0.257543,0.87691,0.277566,0.71229,0.691024,0.463825,0.733607,0.208301,0.140172,0.489757,0.394564,0.852104,0.881215,0.34101,0.68801,0.776906,0.050044,0.162254,0.937169,0.207005,0.876438,0.804147,0.19879,0.585726,0.458913,0.0414495,0.928546,0.796186,0.745326,0.677865,0.144771,0.831571,0.112873,0.185848,0.276098,0.742528,0.866784,0.580659,0.891997,0.68242,0.260796,0.705529,0.595905,0.683869,0.431147,0.793555,0.122402,0.706087,0.578087,0.35452,0.714082,0.536101,0.851851,0.559854,0.983203,0.872332,0.148073,0.874782,0.561342,0.258539,0.945455,0.448861,0.540602,0.574584,0.385032,0.429219,0.963001,0.289819,0.745066,0.51049,0.880665,0.510868,0.955897,0.240158,0.111256,0.473142,0.578767,0.363328,0.619276,0.400207,0.358002,0.919826,0.607622,0.0958829,0.0558685,0.729176,0.21971,0.0640387,0.374048,0.659987,0.867387,0.377404,0.0839642,0.313382,0.741729,0.267727,0.0909688,0.243544,0.884564,0.747931,0.764838,0.703676,0.313142,0.0762814,0.100156,0.460208,0.451186,0.975384,0.276989,0.377494,0.653542,0.563563,0.245962,0.390746,0.677128,0.917165,0.892186,0.994933,0.180343,0.174175,0.351057,0.838014,0.0449501,0.631948,0.887429,0.987473,0.517634,0.046689,0.728726,0.430056,0.454707,0.0435559,0.796972,0.732186,0.929366,0.295605,0.118926,0.427832,0.875161,0.690711,0.339632,0.278486,0.323559,0.523317,0.977815,0.0131748,0.963018,0.362961,0.402964,0.238336,0.6313,0.424454,0.608155,0.899319,0.858414,0.352612,0.909882,0.426797,0.336188,0.92055,0.297283,0.853544,0.927997,0.151555,0.385275,0.898755,0.217735,0.074145,0.653239,0.164467,0.763545,0.973801,0.54058,0.0975146,0.663859,0.9393,0.226376,0.622919,0.092575,0.559016,0.0157126,0.682473,0.0227988,0.136118,0.675135,0.34933,0.437997,0.683497,0.131741,0.151584,0.109933,0.530772,0.91747,0.124567,0.954203,0.762199,0.499405,0.818376,0.794164,0.840476,0.112578,0.2085,0.0292637,0.244897,0.239848,0.340824,0.311269,0.559996,0.425118,0.602061,0.872082,0.0626658,0.453851,0.279183,0.133279,0.757506,0.302485,0.589273,0.638205,0.259602,0.601216,0.125842,0.723743,0.853554,0.456905,0.0301491,0.847655,0.500028,0.0514815,0.732492,0.611695,0.58465,0.979882,0.508865,0.547832,0.541646,0.560112,0.570922,0.535171,0.715971,0.911144,0.555446,0.96118,0.415706,0.555547,0.182363,0.0172813,0.0606164,0.204235,0.342707,0.206804,0.85571,0.97931,0.13614,0.804325,0.127536,0.968087,0.190385,0.907997,0.0565829,0.0433274,0.945031,0.189376,0.159909,0.0801889,0.207863,0.603507,0.921537,0.035983,0.30994,0.433685,0.655332,0.079872,0.858104,0.61948,0.0350013,0.790989,0.64207,0.0290011,0.0938471,0.897884,0.115989,0.526643,0.881595,0.545894,0.751581,0.561098,0.643382,0.666486,0.225856,0.231123,0.0252784,0.103461,0.0222692,0.982474,0.620022,0.00814849,0.339489,0.651546,0.987323,0.30454,0.925082,0.221238,0.554846,0.0902596,0.25996,0.655269,0.801408,0.934041,0.249244,0.0683933,0.0889292,0.627009,0.237425,0.818578,0.317144,0.850638,0.345697,0.740195,0.267778,0.0829314,0.895591,0.277854,0.61578,0.225864,0.985294,0.966581,0.823596,0.191703,0.920707,0.315233,0.744883,0.00886756,0.213677,0.848789,0.569215,0.769899,0.606792,0.720568,0.987027,0.206336,0.196066,0.700774,0.360182,0.265243,0.173933,0.272501,0.828313,0.463334,0.199984,0.980969,0.611298,0.11617,0.00832933,0.918504,0.727009,0.24544,0.0993164,0.829377,0.0714929,0.637292,0.638139,0.561388,0.252874,0.221507,0.833743,0.519963,0.20427,0.0781509,0.854161,0.865561,0.840673,0.180099,0.115978,0.697637,0.464787,0.534444,0.0659073,0.871106,0.899991,0.143663,0.279526,0.334513,0.348575,0.516235,0.87735,0.0710589,0.995875,0.482513,0.0410711,0.317627,0.311133,0.607473,0.989889,0.310699,0.99724,0.03232,0.925351,0.749265,0.555184,0.887886,0.656122,0.427514,0.499285,0.00722617,0.660411,0.975746,0.17417,0.327174,0.712659,0.356467,0.0441397,0.765905,0.924296,0.23934,0.485155,0.578215,0.658448,0.837221,0.193901,0.548814,0.937244,0.793486,0.892949,0.259726,0.541969,0.19686,0.530008,0.59719,0.888386,0.591505,0.647703,0.23394,0.051038,0.187374,0.70063,0.00803334,0.475527,0.446711,0.0800181,0.762513,0.810602,0.239549,0.0504757,0.576674,0.912063,0.41091,0.277008,0.771308,0.934908,0.293024,0.436919,0.493908,0.600973,0.75354,0.581908,0.313961,0.548334,0.882075,0.551431,0.813596,0.692171,0.328085,0.407916,0.159238,0.743545,0.134666,0.884241,0.874234,0.368772,0.313408,0.712243,0.462191,0.873113,0.480937,0.278954,0.941221,0.648269,0.328578,0.829335,0.0763896,0.976529,0.319234,0.193447,0.790588,0.646839,0.335718,0.758366,0.332825,0.0248851,0.401555,0.465096,0.0489324,0.284424,0.992117,0.59323,0.122282,0.124682,0.269569,0.216652,0.809072,0.602834,0.857243,0.666961,0.107023,0.871401,0.956415,0.231465,0.398562,0.545477,0.553441,0.283713,0.458018,0.800076,0.430805,0.352547,0.161295,0.511954,0.401592,0.294062,0.756388,0.1251,0.101894,0.67584,0.995018,0.871198,0.000830114,0.0288474,0.40987,0.617468,0.435442,0.820836,0.927323,0.317985,0.82925,0.795049,0.549325,0.570509,0.296441,0.738341,0.35541,0.883842,0.856382,0.401304,0.459879,0.921395,0.683616,0.236102,0.896329,0.74043,0.937299,0.4276,0.736776,0.850958,0.603144,0.162693,0.759529,0.935093,0.482484,0.0720986,0.466679,0.709033,0.576488,0.241576,0.915087,0.938256,0.834557,0.197897,0.543858,0.236748,0.35209,0.750204,0.356024,0.257374,0.986486,0.179378,0.608893,0.292819,0.1452,0.0947506,0.602949,0.437567,0.197685,0.896429,0.611451,0.402641,0.0354527,0.924974,0.536806,0.947891,0.385962,0.168936,0.7925,0.63378,0.309723,0.324825,0.311248,0.306609,0.402359,0.774727,0.482165,0.495229,0.274532,0.121622,0.940235,0.695469,0.717716,|0.223807,0.456924,0.671981,0.726258,0.0976897,0.459187,0.536099,0.511584,0.120157,0.503516,0.104144,0.390197,0.0417832,0.767668,0.718566,0.473072,0.151346,0.445491,0.691924,0.217725,0.513601,0.462822,0.300052,0.498915,0.447869,0.597733,0.109835,0.309469,0.776396,0.717308,0.266442,0.356338,0.610582,0.250751,0.437757,0.641018,0.648001,0.491464,0.601941,0.585479,0.348488,0.41862,0.256172,0.389741,0.997478,0.182914,0.855856,0.806636,0.310948,0.231832,0.501097,0.578247,0.105184,0.536653,0.0448406,0.427253,0.0512045,0.75007,0.92644,0.543555,0.070554,0.708748,0.656278,0.544149,0.915374,0.855927,0.710559,0.603259,0.847947,0.44861,0.6619,0.0255941,0.729023,0.360647,0.159535,0.911395,0.539744,0.37849,0.0580871,0.819793,0.52754,0.614116,0.722033,0.599382,0.952746,0.273887,0.862726,0.856025,0.48681,0.0558312,0.749817,0.772315,0.399259,0.955888,0.290856,0.468764,0.288097,0.999427,0.371427,0.80454,0.727345,0.0412244,0.257066,0.479929,0.929842,0.169107,0.972909,0.884145,0.416148,0.642718,0.977593,0.776079,0.53352,0.32474,0.452865,0.633559,0.534406,0.219955,0.0363001,0.643339,0.712851,0.551791,0.667898,0.537469,0.539283,0.277786,0.310851,0.31,0.440065,0.638981,0.748604,0.977815,0.493708,0.540886,0.755773,0.224925,0.663743,0.546829,0.024586,0.119432,0.503033,0.745079,0.391072,0.500416,0.686027,0.439304,0.22076,0.913462,0.573295,0.271158,0.365269,0.853594,0.835973,0.812016,0.369231,0.798868,0.643066,0.333964,0.765506,0.960134,0.54419,0.660162,0.635775,0.467551,0.777075,0.613356,0.805214,0.376131,0.854206,0.601132,0.192098,0.670998,0.924153,0.0421821,0.0733224,0.381338,0.240747,0.611949,0.351066,0.495539,0.93889,0.179556,0.648813,0.120924,0.298382,0.360125,0.41847,0.485943,0.174032,0.130438,0.728696,0.963987,0.730212,0.0633923,0.978009,0.594359,0.48801,0.936863,0.366832,0.0606533,0.753084,0.713764,0.166678,0.761152,0.0268955,0.848534,0.733186,0.700404,0.461529,0.0475501,0.25768,0.966759,0.144364,0.838325,0.57979,0.733845,0.82058,0.123766,0.000918925,0.532425,0.0996315,0.445462,0.962387,0.345723,0.578624,0.634648,0.427414,0.267535,0.416577,0.487803,0.491189,0.558073,0.0550812,0.97,0.705353,0.767164,0.252309,0.31931,0.723752,0.9903,0.571916,0.0459899,0.16291,0.303127,0.59086,0.308561,0.589379,0.539553,0.143576,0.585057,0.0604854,0.906541,0.732294,0.607885,0.209543,0.855074,0.190327,0.752912,0.378277,0.838563,0.923029,0.116106,0.804554,0.488868,0.254315,0.00174206,0.218457,0.559325,0.47562,0.817733,0.119824,0.424653,0.798266,0.135963,0.151167,0.908647,0.493725,0.354314,0.184099,0.173259,0.632568,0.983652,0.0080685,0.224448,0.676047,0.843919,0.80221,0.26829,0.503877,0.93082,0.585287,0.28974,0.638971,0.906497,0.531178,0.56348,0.362838,0.340731,0.78095,0.514769,0.872091,0.420309,0.623818,0.774363,0.753692,0.773932,0.496548,0.667432,0.841218,0.196596,0.581081,0.808338,0.821671,0.349361,0.426011,0.130541,0.946183,0.805634,0.0715153,0.112747,0.370869,0.253673,0.0578078,0.639341,0.129413,0.589817,0.266475,0.752609,0.354577,0.679416,0.327103,0.29587,0.935862,0.224093,0.0845021,0.672772,0.480363,0.478619,0.379468,0.702823,0.664225,0.612237,0.944516,0.406862,0.839831,0.749944,0.041167,0.978612,0.827082,0.335106,0.355833,0.0274947,0.930157,0.414868,0.298862,0.529659,0.184047,0.58513,0.709288,0.844795,0.343679,0.301289,0.800008,0.579271,0.652039,0.636161,0.637699,0.987789,0.1468,0.235299,0.733948,0.249923,0.958261,0.176172,0.940083,0.0769345,0.421905,0.770876,0.868115,0.552337,0.376091,0.122773,0.952571,0.790285,0.408891,0.124821,0.390453,0.0708793,0.474918,0.128342,0.110037,0.912715,0.414472,0.591217,0.685301,0.156958,0.0265523,0.732668,0.218467,0.549333,0.913372,0.0745453,0.113399,0.987045,0.75112,0.500513,0.921888,0.818055,0.939392,0.393991,0.730622,0.829577,0.751535,0.548321,0.754997,0.485352,0.99154,0.92957,0.503887,0.100793,0.599734,0.185607,0.843435,0.521637,0.587003,0.456927,0.447428,0.826434,0.28982,0.0153766,0.261909,0.784669,0.313012,0.263246,0.0238665,0.578504,0.42793,0.576664,0.298634,0.27475,0.658182,0.24955,0.356348,0.918784,0.451363,0.111656,0.495161,0.672195,0.300828,0.483949,0.221028,0.52424,0.536493,0.142631,0.502468,0.565172,0.36498,0.332272,0.420561,0.938605,0.820151,0.303241,0.436197,0.856626,0.688964,0.977218,0.898839,0.0830374,0.0884742,0.822656,0.966654,0.205541,0.902234,0.659135,0.330451,0.19828,0.887117,0.87009,0.979269,0.41751,0.608191,0.559381,0.253308,0.600581,0.779332,0.661481,0.125847,0.136035,0.282722,0.0864393,0.846483,0.31239,0.151347,0.486119,0.846348,0.551918,0.864173,0.935589,0.448797,0.253311,0.485627,0.892474,0.639132,0.361482,0.803362,0.11021,0.137277,0.116191,0.71468,0.935676,0.736892,0.874273,0.445452,0.385117,0.680192,0.431529,0.728949,0.0441609,0.217873,0.961794,0.0186049,0.181249,0.460366,0.946805,0.812875,0.757808,0.150321,0.738958,0.583131,0.150715,0.0817169,0.845505,0.816418,0.296061,0.166531,0.363985,0.342562,0.446273,0.896247,0.680401,0.291626,0.189053,0.802383,0.38111,0.751523,0.11956,0.999379,0.267956,0.435688,0.360593,0.446415,0.225157,0.677289,0.106346,0.0276079,0.225677,0.770374,0.611818,0.409104,0.794175,0.497039,0.990443,0.0851609,0.806398,0.396688,0.766059,0.693782,0.557338,0.82162,0.0563063,0.0528471,0.308997,0.910735,0.775186,0.935011,0.933806,0.958777,0.627366,0.0864604,0.503957,0.367988,0.905454,0.429342,0.953634,0.988859,0.656599,0.810816,0.399413,0.207969,0.937146,0.627847,0.160326,0.559716,0.832442,0.554314,0.152142,0.688905,0.173727,0.979916,0.200926,0.0362123,0.420394,0.0801979,0.944486,0.628808,0.380842,0.520699,0.293343,0.866845,0.612352,0.0975348,0.83655,0.690532,0.763984,0.500363,0.492024,0.779338,0.851236,0.274465,0.311685,0.767975,0.42849,0.0729913,0.627649,0.494132,0.656969,0.530763,0.39927,0.406908,0.868075,0.080194,0.50672,0.41747,0.183165,0.978831,0.889241,0.727128,0.910831,0.824137,0.6099,0.170711,0.767495,0.098865,0.597445,0.984255,0.723771,0.693328,0.988406,0.0752625,0.147549,0.41791,0.938305,0.901651,0.513185,0.520613,0.549404,0.534417,0.979073,0.982739,0.486615,0.818605,0.246824,0.924144,0.00176978,0.0460275,0.0978253,0.195476,0.873242,0.394136,0.402073,0.915248,0.122737,0.424365,0.75046,0.0171561,0.605739,0.290885,0.999483,0.134372,0.677354,0.998887,0.901604,0.199028,0.687598,0.694898,0.591287,0.545412,0.301992,0.285954,0.148681,0.15068,0.200213,0.845591,0.724567,0.603569,0.751336,0.906362,0.584258,0.933342,0.294565,0.426326,0.993616,0.502822,0.712439,0.289851,0.246026,0.248999,0.0659342,0.461803,0.555521,0.895217,0.327026,0.656514,0.365534,0.800597,0.746743,0.959703,0.508056,0.827062,0.066088,0.235098,0.859728,0.962416,0.206993,0.238277,0.420634,0.590826,0.584858,0.412608,0.252388,0.59312,0.466634,0.590039,0.611869,0.289757,0.12254,0.23808,0.588243,0.300911,0.10264,0.623376,0.408521,0.0433766,0.640815,0.763834,0.770833,0.683754,0.958275,0.653911,0.401565,0.790179,0.258172,0.351114,0.363864,0.958166,0.838652,0.0662405,0.322792,0.140079,0.892434,0.63182,0.808574,0.729182,0.496656,0.99434,0.215588,0.0652452,0.14559,0.730509,0.0718825,0.567023,0.28597,0.89253,0.678259,0.131583,0.260799,0.478805,0.49018,0.376009,0.864643,0.22492,0.331019,0.782295,0.847067,0.463153,0.788701,0.335536,0.685319,0.774138,0.714795,0.420772,0.273997,0.930207,0.116941,0.174756,0.707399,0.14619,0.761772,0.139365,0.985387,0.476401,0.0846091,0.0678335,0.261219,0.464546,0.700151,0.153229,0.3544,0.248003,0.296911,0.00287199,0.0730119,0.369169,0.155511,0.444017,0.898758,0.0736515,0.968866,0.60784,0.500045,0.720595,0.329371,0.0523107,0.433691,0.9848,0.910356,0.930836,0.20639,0.920982,0.404524,0.500579,0.799225,0.357751,0.951385,0.65487,0.0906557,0.630386,0.665418,0.863049,0.105531,0.511894,0.991756,0.198719,0.282746,0.381669,0.68301,0.0601198,0.021323,0.108765,0.122424,0.270459,0.828092,0.762408,0.629079,0.0718899,0.30725,0.235877,0.556793,0.411355,0.505995,0.569243,0.0790231,0.139096,0.193508,0.689601,0.334982,0.120407,0.176405,0.732831,0.89439,0.0153253,0.0700068,0.771517,0.632184,0.924487,0.835215,0.972838,0.372448,0.368862,0.609867,0.0595569,0.241054,0.500941,0.822031,0.226837,0.315283,0.927,0.496803,0.45561,0.537654,0.438336,0.786737,0.858834,0.886168,0.831704,0.796325,0.0434231,0.847609,0.764349,0.703851,0.957036,0.97811,0.282507,0.655211,0.432611,0.277604,0.305221,0.0275007,0.58276,0.811023,0.938894,0.86265,0.844442,0.909147,0.621264,0.557108,0.931321,0.861651,0.044726,0.882238,0.645776,0.445681,0.472446,0.25459,0.734796,0.0124086,0.287501,0.0510908,0.0424982,0.778147,0.1141,0.349423,0.942891,0.479458,0.500581,0.49297,0.872887,0.357647,0.866545,0.725723,0.867437,0.440437,0.209199,0.568033,0.747754,0.755092,0.785411,0.716793,0.171789,0.42308,0.296504,0.953789,0.629019,0.181517,0.0190513,0.396053,0.866971,0.43831,0.0356396,0.472032,0.546809,0.469191,0.931727,0.163231,0.1199,0.820548,0.385757,0.451845,0.257381,0.410922,0.66381,0.821057,0.836768,0.218319,0.233117,0.478512,0.694151,0.562327,0.552309,0.409566,0.263619,0.883346,0.585445,0.379086,0.163676,0.57922,0.538052,0.157735,0.957987,0.119897,0.838678,0.7173,0.701225,0.438814,0.855882,0.42735,0.0800424,0.0569561,0.372286,0.561033,|0.413658,0.743566,0.207662,0.517651,0.423013,0.23344,0.641769,0.328381,0.908248,0.418843,0.137169,0.760916,0.233606,0.119411,0.171142,0.868996,0.0453416,0.750083,0.830927,0.698669,0.584912,0.665278,0.574238,0.147131,0.317465,0.595944,0.399818,0.349323,0.483864,0.654732,0.629282,0.526094,0.635786,0.828664,0.633202,0.643859,0.469808,0.477766,0.961299,0.323976,0.139088,0.0960509,0.437228,0.623026,0.353538,0.900381,0.161066,0.0276422,0.506408,0.09174,0.905575,0.454539,0.574674,0.0957038,0.827371,0.706977,0.82401,0.202236,0.754844,0.751652,0.856855,0.473624,0.227461,0.0699062,0.896451,0.922478,0.580905,0.393195,0.792607,0.667362,0.882868,0.685974,0.238806,0.364198,0.83713,0.225003,0.0153378,0.757877,0.137176,0.456229,0.653381,0.601719,0.289156,0.904083,0.36855,0.752277,0.271879,0.969355,0.545402,0.801054,0.441057,0.0182669,0.78817,0.934798,0.915313,0.0232059,0.797954,0.742803,0.290333,0.694769,0.423746,0.520738,0.59888,0.18794,0.396006,0.109153,0.208328,0.597353,0.0651147,0.63729,0.363734,0.821206,0.0809377,0.274498,0.479513,0.737194,0.857381,0.634771,0.592311,0.239421,0.625195,0.895926,0.0407356,0.470764,0.191938,0.45837,0.965078,0.0270762,0.348132,0.601222,0.962712,0.642973,0.205648,0.536559,0.546428,0.00420749,0.0619619,0.72502,0.369826,0.842086,0.993588,0.199049,0.717489,0.854057,0.597921,0.170877,0.365933,0.477328,0.034406,0.848789,0.610242,0.27325,0.774718,0.13109,0.824469,0.345609,0.937079,0.296266,0.735769,0.733404,0.440311,0.882747,0.206101,0.3983,0.683604,0.109288,0.426061,0.834038,0.534348,0.350536,0.14556,0.179138,0.363603,0.370797,0.263846,0.513424,0.703829,0.933847,0.127916,0.0874366,0.94115,0.293801,0.670516,0.3901,0.107964,0.869552,0.240128,0.568813,0.869933,0.74719,0.446773,0.906152,0.637883,0.275436,0.610414,0.774272,0.0169057,0.486679,0.59358,0.969904,0.628748,0.866139,0.462119,0.396008,0.85354,0.795428,0.791189,0.395375,0.63936,0.385283,0.925379,0.917532,0.289684,0.687922,0.726249,0.53781,0.0925341,0.564744,0.672743,0.00387812,0.897783,0.711553,0.329206,0.574986,0.150548,0.114958,0.407651,0.901896,0.880978,0.998585,0.2701,0.284313,0.20699,0.0895892,0.0130442,0.52898,0.591202,0.310728,0.725163,0.845732,0.328161,0.528849,0.891946,0.0973984,0.678269,0.027572,0.644623,0.873408,0.89048,0.0270446,0.816885,0.365362,0.159044,0.580189,0.475016,0.444051,0.873813,0.200038,0.508907,0.186911,0.293553,0.530758,0.859433,0.820169,0.488709,0.962131,0.66012,0.654165,0.354961,0.439584,0.771646,0.0708583,0.717553,0.22088,0.364289,0.631989,0.731614,0.58377,0.590466,0.562864,0.59856,0.134317,0.0653647,0.17345,0.473066,0.973289,0.241102,0.824462,0.133723,0.0693941,0.0555351,0.497742,0.662097,0.967753,0.042143,0.230076,0.240803,0.404419,0.967874,0.825345,0.986071,0.324565,0.227217,0.247601,0.0293309,0.0120359,0.0838377,0.379613,0.307114,0.611449,0.411061,0.892399,0.712632,0.680492,0.329236,0.751833,0.392756,0.360817,0.428078,0.479364,0.591515,0.811031,0.898858,0.36838,0.0164472,0.0861446,0.999283,0.553532,0.362861,0.173945,0.617216,0.856687,0.76695,0.53367,0.912439,0.666691,0.691352,0.220332,0.701384,0.552194,0.16072,0.627236,0.674164,0.115263,0.210478,0.408218,0.544739,0.30428,0.204287,0.936425,0.573021,0.619399,0.436574,0.968767,0.370225,0.480311,0.099504,0.565521,0.862803,0.932098,0.249522,0.969694,0.459653,0.130209,0.977973,0.163233,0.25545,0.950856,0.747468,0.901758,0.985043,0.396541,0.875203,0.888425,0.443668,0.653246,0.868944,0.326856,0.623544,0.0692679,0.724212,0.364575,0.877495,0.322323,0.0679141,0.830278,0.354042,0.730857,0.686701,0.693097,0.00670046,0.0939655,0.164623,0.872182,0.0700358,0.280966,0.93405,0.193859,0.677259,0.334977,0.573938,0.303986,0.944146,0.524527,0.375617,0.358007,0.112882,0.01241,0.235765,0.940134,0.528392,0.0810804,0.657579,0.20096,0.79409,0.726937,0.362178,0.718308,0.867929,0.41479,0.541789,0.338659,0.841806,0.446827,0.99778,0.0687442,0.854069,0.879821,0.187608,0.714104,0.475152,0.965771,0.251646,0.3945,0.653647,0.084366,0.398987,0.201435,0.367767,0.792101,0.133948,0.149412,0.439399,0.265044,0.942092,0.754317,0.348502,0.211705,0.999673,0.605552,0.83027,0.618797,0.99114,0.170633,0.962088,0.767004,0.719471,0.434901,0.825535,0.468568,0.576481,0.548121,0.606434,0.439256,0.258705,0.613514,0.0343794,0.0793889,0.511051,0.86516,0.42067,0.316226,0.177042,0.0715878,0.326829,0.0431511,0.6331,0.129731,0.489259,0.176789,0.319409,0.552083,0.891056,0.83646,0.775147,0.462136,0.745949,0.739075,0.224525,0.319036,0.518348,0.51908,0.439559,0.494858,0.529391,0.323029,0.967771,0.62298,0.643246,0.922209,0.886037,0.0597783,0.773287,0.858666,0.136543,0.88212,0.193213,0.324476,0.0478097,0.762079,0.272005,0.0613764,0.642189,0.0293902,0.773911,0.60106,0.737925,0.343992,0.0682799,0.347335,0.440784,0.391018,0.487435,0.530981,0.652506,0.374636,0.479797,0.352024,0.742601,0.174794,0.460203,0.167773,0.861294,0.22491,0.461086,0.38322,0.0597907,0.573724,0.310353,0.36071,0.12121,0.209173,0.206893,0.410959,0.276709,0.697862,0.920124,0.879309,0.0759035,0.845239,0.157836,0.197574,0.960027,0.852628,0.0569434,0.146405,0.738587,0.109476,0.632527,0.76369,0.0819081,0.807035,0.87017,0.600961,0.987482,0.194234,0.213809,0.573967,0.0198914,0.244947,0.537409,0.763428,0.0585335,0.918526,0.493481,0.973864,0.146906,0.263788,0.0777027,0.901582,0.101407,0.554625,0.47996,0.0359346,0.0706285,0.0413815,0.532073,0.192271,0.0902145,0.206416,0.730775,0.531606,0.0989918,0.533067,0.156184,0.015177,0.763159,0.611252,0.521975,0.799732,0.966969,0.71579,0.796186,0.43395,0.517653,0.851194,0.91096,0.657975,0.915194,0.168766,0.0132448,0.313018,0.289509,0.802908,0.784769,0.554981,0.891662,0.509051,0.750279,0.0621515,0.396686,0.7826,0.438514,0.800066,0.551965,0.385344,0.10092,0.26369,0.595232,0.354791,0.285114,0.48107,0.62725,0.953721,0.766025,0.719342,0.233845,0.84702,0.443355,0.333524,0.144714,0.410333,0.452229,0.708141,0.285635,0.407667,0.276149,0.207248,0.961968,0.109218,0.816943,0.716464,0.408288,0.283634,0.0327311,0.537922,0.36559,0.36593,0.50631,0.939292,0.483868,0.296381,0.0789582,0.360306,0.781968,0.555517,0.318847,0.64902,0.413464,0.97718,0.276696,0.96977,0.422391,0.691263,0.237431,0.978182,0.68476,0.932047,0.580479,0.955925,0.372725,0.364735,0.340928,0.335764,0.470478,0.716961,0.75361,0.503774,0.129032,0.706779,0.0233847,0.324263,0.767142,0.505127,0.522791,0.630852,0.883797,0.21755,0.83556,0.567124,0.190316,0.999207,0.126033,0.174953,0.328631,0.691868,0.903433,0.0760896,0.845269,0.782457,0.590781,0.0459238,0.955497,0.0535001,0.950335,0.103769,0.238336,0.625801,0.970588,0.858056,0.68352,0.319016,0.982626,0.137528,0.13675,0.536466,0.369774,0.0660719,0.534046,0.335271,0.156379,0.601914,0.577217,0.800735,0.525334,0.554081,0.161613,0.696289,0.706163,0.741686,0.123089,0.843274,0.371344,0.459372,0.910226,0.864811,0.0216396,0.398846,0.116836,0.708177,0.096283,0.24879,0.976942,0.553215,0.401558,0.819495,0.962818,0.577006,0.696023,0.134486,0.141707,0.536061,0.920268,0.235479,0.210487,0.953256,0.789855,0.672637,0.29125,0.87874,0.660977,0.142059,0.0732743,0.561703,0.307546,0.165711,0.109757,0.402021,0.605337,0.492545,0.125352,0.343681,0.982651,0.135243,0.084305,0.548985,0.164545,0.263386,0.230335,0.605567,0.655188,0.995964,0.644375,0.436939,0.740376,0.717572,0.748608,0.441445,0.693571,0.830587,0.061312,0.754005,0.635792,0.171487,0.384749,0.671324,0.612871,0.668885,0.377025,0.0641443,0.124495,0.815853,0.963308,0.682394,0.818319,0.335247,0.544204,0.89825,0.0127247,0.191516,0.158506,0.965106,0.0619969,0.368177,0.169885,0.146821,0.842352,0.825445,0.711505,0.773555,0.619091,0.793721,0.522855,0.394783,0.509171,0.784792,0.887546,0.214595,0.130939,0.381037,0.628737,0.682227,0.455249,0.462804,0.0675949,0.340878,0.509639,0.695709,0.454619,0.546062,0.161137,0.565896,0.207869,0.173921,0.179496,0.702692,0.834602,0.834955,0.665193,0.367316,0.659726,0.750261,0.64829,0.201243,0.850752,0.441152,0.437907,0.563296,0.54296,0.412247,0.305976,0.184588,0.231281,0.999936,0.317057,0.525024,0.269682,0.939397,0.171888,0.419358,0.264123,0.199717,0.46709,0.320797,0.973412,0.180681,0.329709,0.993857,0.86538,0.632182,0.00034678,0.514139,0.920407,0.0222057,0.962254,0.0677082,0.44513,0.905679,0.209247,0.424373,0.309576,0.532655,0.0143133,0.306686,0.755862,0.437723,0.229523,0.277872,0.263935,0.94151,0.18853,0.177906,0.407914,0.188115,0.587183,0.820673,0.636482,0.468623,0.405766,0.252657,0.728809,0.811526,0.943262,0.650045,0.404522,0.559572,0.495986,0.124169,0.826303,0.877759,0.912721,0.4988,0.358509,0.661744,0.591736,0.616352,0.216641,0.302417,0.412779,0.28174,0.0699549,0.772551,0.0569864,0.480014,0.219864,0.666704,0.245403,0.254662,0.494797,0.304007,0.728055,0.940807,0.0582913,0.185248,0.283702,0.0462132,0.333409,0.264787,0.0745386,0.970874,0.157683,0.781496,0.965808,0.123279,0.691928,0.882127,0.392615,0.296637,0.644058,0.309374,0.461582,0.535689,0.561854,0.286993,0.76162,0.387451,0.754575,0.848548,0.0248278,0.495787,0.53838,0.892995,0.975354,0.217738,0.688548,0.632562,0.106067,0.556884,0.159645,0.836423,0.542628,0.0637402,0.451726,0.202241,0.633837,0.460768,0.653185,0.514255,0.530353,0.792687,|0.746558,0.925439,0.389984,0.34827,0.803634,0.237422,0.396778,0.531607,0.0693014,0.976392,0.45754,0.222452,0.795985,0.597218,0.281882,0.0257539,0.358035,0.0612049,0.198479,0.560065,0.359789,0.179071,0.0117808,0.458477,0.149864,0.476476,0.9257,0.520157,0.293799,0.663429,0.107009,0.565887,0.162429,0.205777,0.655879,0.6784,0.195895,0.0810916,0.197271,0.119566,0.262189,0.893695,0.948169,0.799356,0.0641841,0.336122,0.16614,0.965888,0.334472,0.47597,0.67443,0.376439,0.0796633,0.0359564,0.962556,0.9223,0.444776,0.586235,0.365706,0.205071,0.788659,0.71978,0.631875,0.363154,0.122929,0.191428,0.145162,0.399613,0.243171,0.161443,0.558533,0.32779,0.943412,0.981759,0.616786,0.00688386,0.63098,0.215721,0.0743461,0.425656,0.602495,0.409907,0.369694,0.119195,0.989448,0.0224033,0.597551,0.719984,0.562311,0.627683,0.210122,0.260837,0.103558,0.707125,0.524557,0.645841,0.308089,0.480914,0.923831,0.144598,0.820627,0.370442,0.399106,0.782754,0.0177482,0.889796,0.953226,0.293021,0.071268,0.0608091,0.726695,0.896518,0.356564,0.144375,0.711833,0.512065,0.351811,0.439844,0.293998,0.772684,0.658868,0.0180866,0.608046,0.321538,0.339213,0.0873445,0.227003,0.321109,0.187153,0.146514,0.729058,0.462998,0.583752,0.587671,0.976797,0.303145,0.921833,0.906663,0.622122,0.569869,0.257777,0.429151,0.73779,0.794664,0.830176,0.0862557,0.453405,0.138105,0.0639215,0.147269,0.750317,0.653534,0.863948,0.991466,0.53079,0.960281,0.826782,0.740796,0.425819,0.268065,0.283974,0.150731,0.516532,0.76632,0.899895,0.926225,0.258631,0.445531,0.231718,0.786274,0.53486,0.757713,0.00270128,0.821527,0.72694,0.381727,0.042729,0.641112,0.0819179,0.287444,0.862803,0.925923,0.549006,0.0448728,0.479328,0.602339,0.0154867,0.0299128,0.54774,0.65176,0.726222,0.00293064,0.00278097,0.93576,0.695336,0.725709,0.0639665,0.705904,0.658624,0.107682,0.692037,0.607432,0.162634,0.0443888,0.418188,0.758213,0.102135,0.30451,0.0490932,0.985863,0.669135,0.349994,0.482671,0.602719,0.401232,0.355853,0.419211,0.32348,0.450094,0.660269,0.584215,0.219167,0.742174,0.0720373,0.792748,0.785976,0.859572,0.169941,0.37756,0.366121,0.947826,0.188855,0.78271,0.365244,0.516727,0.647485,0.935094,0.725993,0.0884209,0.859624,0.910506,0.452979,0.4829,0.415656,0.907558,0.378007,0.354387,0.931033,0.102767,0.976027,0.655222,0.338039,0.864868,0.201705,0.680773,0.277467,0.157897,0.342245,0.923362,0.483319,0.774933,0.455842,0.866481,0.855128,0.829727,0.318408,0.155987,0.983745,0.0425112,0.419594,0.786559,0.795451,0.154408,0.163341,0.48092,0.801136,0.419992,0.13971,0.345591,0.160254,0.350374,0.549271,0.592797,0.93841,0.506513,0.161582,0.636178,0.232217,0.982281,0.785609,0.35024,0.170394,0.32655,0.0507303,0.160096,0.543605,0.100637,0.950791,0.107836,0.577359,0.399723,0.674186,0.947234,0.483947,0.394532,0.571514,0.0473331,0.758606,0.142867,0.945688,0.00759524,0.654471,0.191978,0.818677,0.129252,0.835431,0.40696,0.51879,0.369324,0.0791324,0.500556,0.209924,0.502098,0.909514,0.757481,0.70053,0.775269,0.310469,0.880194,0.213077,0.135569,0.22412,0.268505,0.943418,0.873675,0.0385729,0.151776,0.869322,0.988322,0.836957,0.797695,0.122287,0.139215,0.528182,0.30795,0.837937,0.389724,0.562217,0.853042,0.217368,0.0273774,0.289158,0.195758,0.000174344,0.578775,0.00830966,0.387335,0.878261,0.0243252,0.394041,0.081369,0.157755,0.0253367,0.292989,0.00988877,0.185174,0.0848352,0.273102,0.175984,0.345157,0.595977,0.510979,0.917743,0.0323798,0.219928,0.0718442,0.420731,0.47931,0.163115,0.454542,0.741699,0.642347,0.917138,0.67208,0.147555,0.197496,0.452685,0.864513,0.628169,0.824226,0.544483,0.903723,0.603255,0.833035,0.155661,0.427136,0.0333714,0.648845,0.316127,0.189802,0.752108,0.994637,0.933688,0.36585,0.965071,0.477302,0.778007,0.440271,0.428949,0.242384,0.546792,0.798538,0.602657,0.675923,0.19509,0.339641,0.149498,0.559585,0.327518,0.29055,0.226583,0.214954,0.56115,0.00041157,0.803236,0.748287,0.185632,0.480824,0.485494,0.378826,0.867894,0.294831,0.266933,0.183524,0.612766,0.0787675,0.307745,0.53686,0.716325,0.669787,0.400116,0.741417,0.121025,0.837207,0.0855671,0.980918,0.703998,0.570728,0.212303,0.265596,0.440664,0.893033,0.0920705,0.58261,0.565343,0.719021,0.530758,0.764481,0.136401,0.609525,0.466865,0.134737,0.191427,0.116114,0.138052,0.6668,0.773771,0.474668,0.830626,0.382923,0.537555,0.615999,0.460767,0.619316,0.221337,0.762484,0.232769,0.328112,0.391836,0.74203,0.328686,0.773087,0.775189,0.285795,0.239765,0.621657,0.705768,0.946997,0.579403,0.497481,0.892454,0.716548,0.271994,0.81578,0.202719,0.325106,0.944663,0.563131,0.515341,0.877142,0.531316,0.282808,0.263115,0.541143,0.304147,0.348093,0.861764,0.164756,0.490671,0.785027,0.379291,0.6947,0.441452,0.146837,0.492812,0.991039,0.946558,0.477848,0.701118,0.241131,0.311709,0.85619,0.236393,0.786916,0.589731,0.128499,0.734983,0.230039,0.911307,0.266153,0.421804,0.456647,0.961807,0.688256,0.731196,0.258846,0.252277,0.81351,0.823832,0.743138,0.905623,0.379256,0.550167,0.0477896,0.559612,0.460844,0.609675,0.291992,0.938829,0.621508,0.684703,0.185088,0.62865,0.672128,0.697176,0.515314,0.36371,0.241099,0.256954,0.516125,0.132408,0.345557,0.591382,0.324675,0.042915,0.830223,0.0877071,0.867316,0.616993,0.809973,0.268731,0.976878,0.753003,0.326772,0.490926,0.528471,0.0174422,0.707012,0.950875,0.665046,0.836621,0.76136,0.303799,0.0444779,0.842153,0.501823,0.867196,0.0334047,0.430804,0.682751,0.521057,0.893979,0.679868,0.952404,0.34735,0.428908,0.0362273,0.624472,0.170403,0.626298,0.998159,0.836756,0.744152,0.862039,0.122308,0.7831,0.173458,0.799041,0.849723,0.955766,0.684856,0.440983,0.930592,0.238281,0.828981,0.983843,0.0665604,0.312909,0.619076,0.761172,0.628187,0.0748481,0.542046,0.566258,0.0711889,0.439801,0.487369,0.9702,0.525428,0.789841,0.734361,0.513225,0.339661,0.897447,0.131351,0.787374,0.644597,0.510384,0.695125,0.00519967,0.171938,0.0215019,0.991028,0.217388,0.382553,0.778808,0.904294,0.159837,0.634221,0.00565743,0.68287,0.441085,0.345341,0.370788,0.000773072,0.0576485,0.544073,0.513022,0.579296,0.620656,0.639985,0.994773,0.227031,0.0533439,0.140351,0.310291,0.843287,0.174678,0.868026,0.645128,0.125579,0.38804,0.850153,0.182394,0.170057,0.583035,0.392165,0.0208958,0.754126,0.769141,0.155106,0.173037,0.190146,0.498357,0.996601,0.3257,0.0613531,0.066332,0.151622,0.978368,0.146503,0.754908,0.419862,0.259479,0.21786,0.251451,0.69566,0.117856,0.447802,0.133692,0.20208,0.540515,0.0853755,0.24215,0.348916,0.797177,0.925804,0.698922,0.571948,0.849219,0.541009,0.328187,0.552847,0.480072,0.262936,0.660426,0.410792,0.934609,0.553714,0.533719,0.969082,0.187591,0.688011,0.223697,0.0326782,0.0436425,0.627878,0.134637,0.414594,0.0287259,0.095014,0.244812,0.530712,0.811987,0.0370117,0.567755,0.945546,0.28645,0.00391525,0.232526,0.74436,0.706192,0.112128,0.868829,0.339424,0.297621,0.520748,0.613626,0.525131,0.127123,0.112392,0.697784,0.512316,0.191496,0.346938,0.372142,0.29666,0.209166,0.650271,0.366861,0.568627,0.543189,0.330194,0.00442797,0.843801,0.255859,0.562293,0.437634,0.990827,0.675557,0.52611,0.195522,0.754715,0.427683,0.854893,0.267351,0.815592,0.121487,0.395812,0.596471,0.00488758,0.110197,0.32504,0.184756,0.672841,0.682886,0.569222,0.895327,0.718883,0.924077,0.358834,0.193802,0.0944388,0.69182,0.663447,0.520969,0.642891,0.0373365,0.0787663,0.940975,0.630423,0.49438,0.147124,0.65161,0.386187,0.673843,0.238314,0.4634,0.912691,0.0316457,0.0944445,0.921897,0.73829,0.694163,0.515037,0.435057,0.354771,0.982793,0.457,0.26147,0.902295,0.738876,0.680719,0.901944,0.941748,0.195261,0.89822,0.8975,0.884021,0.582261,0.310739,0.319141,0.772639,0.798956,0.934907,0.486117,0.730515,0.997974,0.270901,0.167886,0.635427,0.704269,0.382992,0.321688,0.590025,0.253933,0.443837,0.0810071,0.421739,0.723552,0.365341,0.42047,0.199439,0.383391,0.201963,0.381655,0.501228,0.628362,0.304246,0.916446,0.677466,0.672279,0.577621,0.435243,0.89338,0.760054,0.557971,0.726661,0.543502,0.585261,0.938776,0.585362,0.90633,0.492368,0.211915,0.411945,0.870613,0.799871,0.286727,0.164276,0.693464,0.921961,0.216101,0.975026,0.926451,0.479166,0.137704,0.642723,0.969851,0.866399,0.789018,0.361903,0.361462,0.282816,0.832751,0.404728,0.0449412,0.694876,0.663711,0.137684,0.180824,0.837232,0.42512,0.957971,0.725063,0.753321,0.151504,0.768865,0.547792,0.38609,0.998409,0.361681,0.563129,0.00557709,0.82019,0.0250347,0.136071,0.854652,0.094166,0.83582,0.403135,0.407315,0.10486,0.414581,0.92857,0.169006,0.411529,0.839518,0.436181,0.33449,0.162144,0.57793,0.626453,0.976382,0.457648,0.10616,0.527247,0.736115,0.585179,0.191823,0.814277,0.821253,0.176952,0.0959436,0.657392,0.846893,0.985525,0.631797,0.620296,0.384539,0.489921,0.737169,0.299645,0.186615,0.722781,0.934457,0.179201,0.423117,0.0141573,0.312517,0.0567567,0.459059,0.479283,0.348429,0.0933156,0.62852,0.91258,0.399161,0.192935,0.831364,0.597826,0.472129,0.0448306,0.114109,0.096747,0.395143,0.906216,0.0195056,0.642844,0.178194,0.916176,0.581723,0.654144,0.996692,0.451753,0.0070926,0.18023,0.977001,0.971227,0.439342,0.969019,0.72139,0.895785,0.302395,0.636389,0.668846,0.698749,0.264442,0.554036,0.499204,|0.422752,0.165829,0.170079,0.581853,0.933339,0.521266,0.0737591,0.663462,0.554187,0.0112585,0.90204,0.442008,0.826329,0.534433,0.535036,0.354876,0.618021,0.0852615,0.432722,0.949683,0.362397,0.640889,0.105377,0.437532,0.699095,0.764496,0.758173,0.899295,0.238032,0.949686,0.254522,0.0581164,0.110099,0.397192,0.359633,0.442944,0.980007,0.63934,0.946059,0.720658,0.118528,0.038519,0.253929,0.448805,0.485525,0.968996,0.0453951,0.625423,0.403316,0.820912,0.0533655,0.265183,0.904849,0.674452,0.700653,0.42001,0.826398,0.143451,0.406964,0.0158218,0.666643,0.807878,0.944332,0.380536,0.326684,0.802289,0.224653,0.181471,0.173099,0.0159864,0.627869,0.464772,0.919666,0.840029,0.830161,0.500507,0.909634,0.949399,0.77026,0.0296215,0.0576216,0.600399,0.974855,0.275432,0.876858,0.853961,0.360947,0.915577,0.931035,0.417387,0.489118,0.662727,0.604871,0.697177,0.738593,0.958414,0.491731,0.593709,0.310661,0.436539,0.988463,0.722886,0.664037,0.662441,0.366261,0.853318,0.411673,0.659074,0.229293,0.655279,0.7917,0.524553,0.71256,0.648901,0.0269974,0.565148,0.697939,0.491849,0.207508,0.770692,0.520778,0.446353,0.828695,0.454425,0.0697324,0.550372,0.234579,0.986507,0.15732,0.707295,0.796894,0.838244,0.596334,0.289922,0.609313,0.500509,0.917054,0.488576,0.704937,0.251252,0.546661,0.077207,0.295294,0.101725,0.702291,0.123132,0.0726048,0.503403,0.551449,0.311405,0.0224346,0.0913326,0.814024,0.169498,0.954879,0.475478,0.18303,0.970668,0.00750268,0.658072,0.984471,0.110479,0.497748,0.622638,0.320573,0.231965,0.505545,0.346552,0.894259,0.490168,0.0198779,0.320907,0.355735,0.716527,0.532879,0.373616,0.637732,0.587671,0.575217,0.354575,0.0391952,0.123706,0.399407,0.64883,0.310811,0.743833,0.269931,0.0803332,0.722703,0.750089,0.920247,0.798607,0.703323,0.867386,0.449826,0.405543,0.271595,0.577035,0.32089,0.41784,0.145042,0.032929,0.487179,0.739324,0.704339,0.488463,0.908694,0.851529,0.865553,0.825019,0.20581,0.598531,0.398771,0.317748,0.69363,0.426644,0.84277,0.019976,0.579971,0.405833,0.605691,0.797647,0.734334,0.113769,0.0773662,0.736107,0.363935,0.509515,0.918896,0.942614,0.990158,0.191111,0.743059,0.316947,0.640275,0.876072,0.733874,0.488149,0.0730896,0.356201,0.357526,0.0208728,0.883181,0.0154293,0.684234,0.944883,0.827154,0.499106,0.588947,0.565196,0.814598,0.0544355,0.817947,0.855413,0.967172,0.776839,0.345973,0.508398,0.220626,0.54772,0.0829735,0.429055,0.557101,0.799941,0.544454,0.152765,0.76122,0.984713,0.72534,0.440724,0.156637,0.485784,0.597546,0.627317,0.0617717,0.209438,0.880442,0.178884,0.0406626,0.115927,0.586911,0.164659,0.026139,0.192896,0.713409,0.981907,0.274338,0.38117,0.510046,0.53447,0.967311,0.965551,0.779441,0.694578,0.708959,0.382497,0.901582,0.216726,0.78414,0.197492,0.793462,0.194967,0.481034,0.948385,0.633331,0.902873,0.703214,0.343376,0.164728,0.00870746,0.808676,0.0277328,0.61663,0.626752,0.243413,0.439526,0.538492,0.903615,0.647938,0.989797,0.250434,0.731515,0.756915,0.266469,0.656595,0.645148,0.133598,0.165381,0.319834,0.706007,0.466323,0.890396,0.762146,0.417131,0.398056,0.606707,0.173609,0.382821,0.369867,0.812148,0.693305,0.180094,0.161061,0.475161,0.660732,0.102323,0.852727,0.82652,0.377692,0.751453,0.281535,0.0484843,0.455256,0.456077,0.256605,0.867528,0.525492,0.947873,0.56098,0.133674,0.952413,0.632485,0.575324,0.447123,0.752148,0.225222,0.363022,0.313243,0.623467,0.193675,0.100732,0.794101,0.563488,0.46164,0.89003,0.543258,0.950119,0.520928,0.548706,0.637955,0.614424,0.324193,0.136998,0.654237,0.355031,0.369083,0.523216,0.612255,0.993179,0.0359892,0.214035,0.994123,0.912947,0.988522,0.326747,0.791001,0.0932376,0.0447922,0.358716,0.866953,0.181094,0.460483,0.661083,0.365962,0.710535,0.551291,0.568689,0.354801,0.789349,0.490009,0.992106,0.575218,0.750458,0.233817,0.462486,0.16861,0.199836,0.349622,0.831838,0.448705,0.474546,0.561471,0.974035,0.697678,0.994264,0.37763,0.497739,0.839848,0.421354,0.885035,0.261539,0.92115,0.0649219,0.623349,0.246888,0.600853,0.417314,0.833298,0.48284,0.174157,0.30847,0.362872,0.802419,0.693106,0.94145,0.950644,0.124332,0.857356,0.643298,0.455833,0.812187,0.250741,0.281688,0.4504,0.681672,0.584086,0.783162,0.248377,0.803742,0.939794,0.678504,0.995863,0.795156,0.458911,0.172955,0.309886,0.766833,0.576078,0.556895,0.48339,0.852586,0.34184,0.446929,0.837138,0.563848,0.201881,0.790607,0.320257,0.941678,0.769267,0.162921,0.412285,0.133667,0.0550027,0.550417,0.362061,0.777005,0.376782,0.732584,0.927585,0.110785,0.77228,0.361865,0.159675,0.696868,0.205447,0.908987,0.625937,0.101253,0.552601,0.101496,0.667539,0.439809,0.0748155,0.793772,0.903671,0.204041,0.731556,0.594606,0.125142,0.805265,0.0603785,0.267842,0.969466,0.742522,0.20543,0.487292,0.183403,0.998577,0.93554,0.120852,0.660944,0.461307,0.809052,0.953182,0.184224,0.201547,0.841134,0.64861,0.494531,0.776976,0.783843,0.436852,0.405508,0.0665271,0.627271,0.337238,0.994119,0.644677,0.524983,0.587325,0.935797,0.00456291,0.899275,0.670078,0.971134,0.473612,0.661738,0.958661,0.200597,0.080899,0.211919,0.963062,0.985344,0.988197,0.74477,0.393751,0.587174,0.00300092,0.302794,0.658471,0.630201,0.337533,0.767328,0.687139,0.87636,0.265154,0.208192,0.225217,0.019496,0.867526,0.497045,0.442554,0.612653,0.323889,0.0467722,0.480313,0.134787,0.0375187,0.155986,0.404858,0.881245,0.952969,0.708802,0.288403,0.143399,0.613795,0.438428,0.46339,0.127646,0.860721,0.287859,0.601963,0.165606,0.0491839,0.371181,0.275799,0.285509,0.490055,0.648215,0.546301,0.750543,0.0277402,0.193101,0.463345,0.417545,0.535834,0.465149,0.556349,0.0213748,0.919113,0.824763,0.126709,0.452449,0.492245,0.756457,0.844172,0.0307156,0.795754,0.0364206,0.842099,0.836797,0.253901,0.637071,0.534874,0.452412,0.789095,0.0965923,0.954319,0.583654,0.82522,0.0499749,0.887075,0.857044,0.0128476,0.531994,0.636658,0.822311,0.275156,0.153945,0.515127,0.55964,0.764013,0.0104417,0.200402,0.186028,0.116169,0.976413,0.405829,0.249197,0.84623,0.395113,0.738786,0.855558,0.342738,0.2888,0.930957,0.66217,0.205348,0.879737,0.419139,0.622101,0.306477,0.467046,0.318102,0.665484,0.732285,0.886646,0.980376,0.190976,0.481567,0.311101,0.892137,0.323107,0.0757915,0.398509,0.199077,0.249562,0.951607,0.11165,0.667237,0.508597,0.229795,0.401884,0.850491,0.691956,0.358337,0.457648,0.420307,0.783273,0.537686,0.325437,0.626533,0.34154,0.409618,0.257182,0.567597,0.0489151,0.661493,0.258751,0.190968,0.130463,0.711215,0.854152,0.343769,0.927364,0.0812744,0.908246,0.953489,0.0224239,0.925579,0.25432,0.74443,0.407234,0.487161,0.872823,0.851006,0.276422,0.879664,0.342624,0.419275,0.402587,0.270842,0.304824,0.144946,0.845131,0.897187,0.103172,0.50556,0.0496322,0.290609,0.505555,0.263706,0.335676,0.636992,0.35595,0.929402,0.109909,0.468662,0.921706,0.811955,0.775644,0.882216,0.324489,0.133736,0.710606,0.954021,0.841793,0.624869,0.256342,0.751131,0.601547,0.164902,0.608668,0.0580276,0.128357,0.864648,0.148199,0.784064,0.0288175,0.735176,0.469886,0.808443,0.469356,0.470852,0.852621,0.0260792,0.975507,0.752004,0.348904,0.420482,0.625328,0.296697,0.639312,0.00565714,0.595615,0.43839,0.338141,0.755413,0.31275,0.138374,0.419816,0.326477,0.312485,0.646912,0.110961,0.134146,0.215891,0.818292,0.739451,0.160223,0.82352,0.0941874,0.658086,0.874569,0.0927297,0.52925,0.467953,0.37902,0.476583,0.136135,0.0416846,0.484104,0.0457434,0.600927,0.719849,0.404863,0.439174,0.903174,0.577424,0.187301,0.399492,0.743688,0.747468,0.255885,0.465009,0.901658,0.0321857,0.691712,0.677916,0.48947,0.387556,0.649555,0.239482,0.86314,0.674301,0.860783,0.190109,0.394926,0.318675,0.0174584,0.727461,0.325476,0.466805,0.148481,0.568478,0.789825,0.145789,0.876485,0.833185,0.112555,0.854995,0.461062,0.353734,0.598209,0.707845,0.0377879,0.410003,0.612098,0.765281,0.171611,0.781122,0.808521,0.230523,0.0303889,0.984027,0.18456,0.470996,0.744642,0.312208,0.700286,0.0924283,0.244818,0.368613,0.706082,0.185354,0.788939,0.743372,0.0585734,0.218755,0.866026,0.669682,0.835409,0.701622,0.500562,0.800147,0.458152,0.736536,0.392451,0.813678,0.396452,0.941218,0.413485,0.117582,0.348924,0.126043,0.0594428,0.767792,0.863635,0.685048,0.567166,0.699248,0.350366,0.450922,0.935891,0.990445,0.585304,0.406219,0.632929,0.812632,0.30322,0.741593,0.742249,0.376386,0.996859,0.232644,0.811245,0.499447,0.657157,0.151979,0.513949,0.81,0.842505,0.951811,0.679139,0.465614,0.692418,0.823666,0.517378,0.340043,0.0954218,0.611026,0.70874,0.602294,0.295892,0.334786,0.982902,0.819652,0.232289,0.869151,0.0664105,0.205571,0.981444,0.089118,0.369037,0.775674,0.201596,0.667172,0.693482,0.578203,0.392856,0.876633,0.807444,0.75451,0.507687,0.264121,0.691773,0.461042,0.0425465,0.506388,0.662125,0.211231,0.0751219,0.537152,0.281605,0.752913,0.621918,0.580126,0.427296,0.573517,0.142296,0.108438,0.801123,0.0400932,0.594299,0.385173,0.459299,0.325342,0.794057,0.50279,0.520301,0.859346,0.199423,0.971833,0.230502,0.370511,0.448529,0.32555,0.633548,0.392658,0.491483,0.538715,0.563486,0.48412,0.621453,0.672106,0.0369306,0.650307,0.11949,0.697261,0.782775,0.670357,0.911649,0.0132925,0.247332,0.227375,0.124631,0.410941,0.508699,0.485332,|0.823257,0.623472,0.441905,0.491865,0.610791,0.0918047,0.424924,0.220824,0.287325,0.725694,0.315364,0.42244,0.225938,0.830262,0.287896,0.0484664,0.921509,0.715568,0.756785,0.773833,0.442334,0.744834,0.787513,0.868749,0.61186,0.882263,0.612221,0.0122972,0.435116,0.491604,0.262582,0.830047,0.804356,0.141385,0.314728,0.154831,0.365688,0.687586,0.963167,0.723888,0.766515,0.830137,0.261733,0.879991,0.373156,0.904125,0.482526,0.135458,0.857562,0.8879,0.97706,0.363632,0.121947,0.570544,0.0813187,0.430622,0.467288,0.692535,0.799356,0.968334,0.559754,0.795518,0.425977,0.449893,0.701161,0.210633,0.741816,0.281058,0.688759,0.520425,0.520275,0.30557,0.391644,0.504265,0.843557,0.0911938,0.950921,0.651957,0.245315,0.530886,0.435775,0.697025,0.952965,0.015043,0.239955,0.594472,0.882805,0.00477052,0.513149,0.476577,0.722467,0.505206,0.776696,0.667596,0.401734,0.966475,0.0644173,0.345352,0.20156,0.612001,0.409823,0.127267,0.0415466,0.763346,0.734637,0.258201,0.990865,0.593995,0.0776722,0.203234,0.101241,0.642119,0.765761,0.151732,0.631181,0.224719,0.561572,0.763486,0.397846,0.290881,0.449347,0.344318,0.923551,0.960767,0.522555,0.83609,0.896611,0.128976,0.749691,0.668713,0.397919,0.826635,0.000872791,0.227644,0.766067,0.941294,0.995208,0.517965,0.256385,0.0990453,0.661552,0.650736,0.595346,0.81205,0.363068,0.413206,0.346435,0.362117,0.445881,0.959514,0.286904,0.104167,0.721762,0.844373,0.806903,0.634383,0.100619,0.664896,0.184796,0.421688,0.98062,0.953063,0.0433869,0.475082,0.698028,0.421957,0.35527,0.446785,0.549356,0.763174,0.0150602,0.417634,0.985267,0.0918776,0.62282,0.41775,0.962919,0.969152,0.950131,0.362598,0.0611059,0.554221,0.614879,0.0480947,0.51236,0.650185,0.720675,0.309838,0.90547,0.0471957,0.248873,0.945866,0.0979981,0.825,0.932849,0.685984,0.173683,0.683534,0.257493,0.931552,0.702768,0.446071,0.807368,0.342693,0.00938553,0.912346,0.937375,0.350334,0.468642,0.0372491,0.458242,0.742973,0.421904,0.849918,0.000434339,0.694248,0.666694,0.366567,0.41857,0.942134,0.417705,0.376881,0.677626,0.370513,0.117815,0.86474,0.332137,0.265265,0.923347,0.882761,0.971961,0.63518,0.307187,0.561868,0.458896,0.0587654,0.132744,0.309465,0.962737,0.547492,0.957571,0.583778,0.238709,0.332226,0.400277,0.554309,0.29088,0.118109,0.463233,0.130311,0.507137,0.857863,0.925976,0.398586,0.814131,0.0450376,0.306915,0.749086,0.201535,0.209218,0.922293,0.00487107,0.294626,0.93821,0.429335,0.440584,0.662922,0.0636401,0.770486,0.906352,0.127402,0.646995,0.550591,0.382345,0.794689,0.468644,0.35348,0.289484,0.75996,0.0731015,0.809908,0.991237,0.817736,0.99602,0.947637,0.434297,0.393068,0.0936842,0.0505443,0.656854,0.0774174,0.0748576,0.904408,0.160294,0.442664,0.0515381,0.551803,0.868264,0.580025,0.592607,0.242493,0.12232,0.081296,0.818073,0.938945,0.155992,0.83076,0.40284,0.107998,0.670303,0.508917,0.344358,0.309156,0.175096,0.0879493,0.56194,0.271157,0.456226,0.998264,0.80122,0.814189,0.56113,0.370655,0.160885,0.48608,0.778078,0.90175,0.773492,0.0953676,0.0351089,0.726344,0.175725,0.763403,0.438725,0.108115,0.140756,0.344458,0.89943,0.995503,0.874835,0.862141,0.00464767,0.78278,0.142553,0.440377,0.650044,0.374433,0.652057,0.940869,0.430327,0.971284,0.114565,0.086078,0.267858,0.947606,0.613996,0.988978,0.140576,0.168063,0.502117,0.0394307,0.783538,0.496082,0.727395,0.330715,0.0860605,0.91725,0.362347,0.403889,0.323044,0.381715,0.990472,0.971422,0.525285,0.884715,0.546856,0.638225,0.326484,0.972221,0.168181,0.941783,0.415998,0.649125,0.475507,0.881479,0.884758,0.468904,0.354339,0.289899,0.635778,0.103557,0.329926,0.925469,0.14511,0.534931,0.0191222,0.386387,0.755724,0.72496,0.0447111,0.392332,0.532815,0.0852567,0.76007,0.296879,0.0303922,0.500998,0.877371,0.243918,0.516577,0.463983,0.262813,0.707187,0.506755,0.551269,0.812131,0.810605,0.0617825,0.121802,0.774063,0.299829,0.144912,0.134205,0.675837,0.0185404,0.168095,0.841828,0.532958,0.385078,0.398728,0.447894,0.0480515,0.413731,0.493198,0.212359,0.622889,0.241155,0.699824,0.327194,0.249415,0.812396,0.866133,0.631174,0.829377,0.920435,0.244331,0.131821,0.369998,0.194675,0.401174,0.046456,0.128294,0.690207,0.866942,0.13312,0.458668,0.170128,0.329226,0.694165,0.459707,0.243709,0.325455,0.299217,0.186994,0.0691648,0.261352,0.819803,0.746344,0.162038,0.631372,0.716362,0.771175,0.445248,0.242913,0.393289,0.161538,0.428427,0.967283,0.43559,0.70616,0.123738,0.770533,0.582509,0.402676,0.495592,0.264999,0.53188,0.3651,0.21874,0.745773,0.0200422,0.390036,0.73614,0.550607,0.661964,0.368535,0.975943,0.455442,0.386126,0.657129,0.292002,0.547135,0.399437,0.541437,0.978802,0.843101,0.119077,0.0653348,0.965829,0.153916,0.480976,0.446748,0.705195,0.294446,0.598058,0.663869,0.820241,0.747233,0.763589,0.474576,0.621173,0.365033,0.734483,0.172652,0.749671,0.222827,0.878098,0.210525,0.332667,0.724955,0.187668,0.471742,0.0113473,0.0329462,0.924955,0.522251,0.422701,0.742541,0.703987,0.0579388,0.680128,0.102946,0.720225,0.548641,0.378766,0.647938,0.848386,0.908571,0.713961,0.787042,0.541373,0.171838,0.114952,0.87895,0.276481,0.934064,0.526852,0.0932716,0.411872,0.397254,0.397425,0.842617,0.328416,0.216408,0.937102,0.114719,0.3049,0.422038,0.47601,0.299152,0.64138,0.765956,0.309843,0.00452805,0.986514,0.12509,0.553403,0.632287,0.163562,0.921469,0.401494,0.393062,0.134819,0.694928,0.626667,0.043083,0.678442,0.834112,0.398449,0.119305,0.919269,0.103038,0.278782,0.972591,0.968464,0.868064,0.385722,0.207331,0.925066,0.670123,0.111346,0.851995,0.823243,0.633729,0.557036,0.982746,0.537751,0.653655,0.731514,0.03395,0.53845,0.965708,0.0320359,0.331369,0.256042,0.805868,0.709446,0.33508,0.898497,0.822798,0.928398,0.439949,0.276249,0.173162,0.560343,0.469318,0.187638,0.63576,0.215882,0.868846,0.578626,0.860859,0.578132,0.677718,0.558568,0.809689,0.876804,0.586154,0.683842,0.54905,0.604869,0.818462,0.585004,0.156978,0.156081,0.246358,0.550024,0.473845,0.544063,0.405973,0.98231,0.898486,0.343099,0.463098,0.475293,0.196943,0.197453,0.850186,0.634602,0.863158,0.224485,0.240759,0.800343,0.839845,0.205344,0.899006,0.975694,0.34911,0.329288,0.39739,0.18726,0.819472,0.0688255,0.497572,0.321204,0.518992,0.00593591,0.428518,0.157981,0.141133,0.513732,0.286318,0.631596,0.0817552,0.446346,0.0412874,0.623988,0.683245,0.874921,0.550859,0.828839,0.538562,0.749055,0.791122,0.204622,0.68367,0.0743846,0.571172,0.169165,0.832561,0.519145,0.463409,0.504299,0.786103,0.839476,0.344763,0.632158,0.34026,0.723721,0.609509,0.520282,0.867716,0.215234,0.612495,0.5916,0.637638,0.0763855,0.664323,0.290884,0.69008,0.152369,0.567355,0.363745,0.241542,0.714762,0.710072,0.671013,0.120722,0.0522977,0.742459,0.742566,0.135449,0.657624,0.466032,0.0537544,0.284461,0.737088,0.439706,0.582939,0.993264,0.729694,0.405791,0.0355145,0.963118,0.369696,0.0526513,0.0313535,0.422494,0.433061,0.781124,0.772606,0.646405,0.744418,0.858315,0.95336,0.305869,0.981252,0.801677,0.405974,0.0373105,0.806427,0.923262,0.389035,0.163572,0.317753,0.980885,0.847533,0.598834,0.783438,0.983524,0.555264,0.118316,0.92829,0.825746,0.176686,0.377735,0.101101,0.479653,0.390782,0.683828,0.375835,0.55489,0.271205,0.455744,0.259585,0.859978,0.609685,0.0820918,0.625328,0.397099,0.57404,0.469129,0.614687,0.954995,0.856182,0.377688,0.742919,0.43731,0.65834,0.234103,0.587369,0.0945257,0.176938,0.0795664,0.961673,0.461951,0.42204,0.133406,0.826342,0.352925,0.92781,0.309823,0.175986,0.936098,0.963634,0.627192,0.688194,0.501768,0.530092,0.723384,0.162387,0.662142,0.602376,0.0879891,0.5019,0.0662801,0.0636413,0.5372,0.92173,0.598051,0.148108,0.766169,0.290487,0.493233,0.207548,0.294454,0.82698,0.815935,0.583727,0.734791,0.429045,0.324685,0.514857,0.249637,0.203081,0.794305,0.251701,0.620959,0.655605,0.70602,0.0484254,0.643785,0.155644,0.822132,0.158811,0.970641,0.993122,0.202011,0.60488,0.212233,0.383518,0.26603,0.669086,0.817327,0.813779,0.832735,0.70847,0.996231,0.963002,0.643112,0.75906,0.828595,0.277054,0.153804,0.645373,0.507767,0.00316316,0.850428,0.34872,0.501977,0.104486,0.607478,0.912398,0.421401,0.201407,0.96874,0.723579,0.904387,0.595304,0.191504,0.0849664,0.884302,0.214923,0.0179825,0.0396613,0.624459,0.338807,0.437356,0.0984916,0.517517,0.38747,0.90463,0.480593,0.90642,0.116783,0.501948,0.567317,0.368064,0.527255,0.0458458,0.231484,0.50194,0.293939,0.504185,0.736758,0.195684,0.226001,0.851647,0.507574,0.697944,0.598085,0.362125,0.144128,0.250117,0.793299,0.985012,0.499393,0.458644,0.807299,0.0337318,0.910042,0.80512,0.660584,0.856177,0.0561663,0.130398,0.437922,0.527455,0.257828,0.486645,0.471744,0.614539,0.772181,0.0305523,0.596017,0.917597,0.0988494,0.435115,0.691449,0.0057987,0.24646,0.477672,0.087873,0.0147332,0.263225,0.09197,0.188288,0.434597,0.777143,0.0988625,0.564239,0.961013,0.925077,0.367399,0.668462,0.36399,0.955242,0.0441748,0.816044,0.23591,0.0156683,0.898846,0.164429,0.656557,0.983193,0.807884,0.864048,0.603912,0.807637,0.318999,0.827326,0.89283,0.828023,0.668534,0.0718153,0.838551,0.684364,0.925783,0.201782,0.00712568,0.227547,0.556884,0.982046,0.047999,0.16368,0.316047,0.194827,0.522309,0.0715717,0.587048,|0.149714,0.50226,0.765112,0.127767,0.802945,0.453981,0.816089,0.91248,0.214981,0.199191,0.0116256,0.992514,0.980892,0.536781,0.257079,0.563953,0.511717,0.247003,0.379723,0.812346,0.493612,0.711671,0.722186,0.741514,0.293091,0.412702,0.729904,0.823972,0.338691,0.564795,0.933814,0.0355673,0.532467,0.609473,0.213858,0.319873,0.707955,0.79425,0.0874145,0.667836,0.111954,0.0732391,0.526001,0.0876364,0.892969,0.395811,0.584874,0.740152,0.127599,0.133145,0.723966,0.663101,0.494801,0.418442,0.857508,0.448804,0.560215,0.562752,0.411082,0.445076,0.160088,0.607346,0.449204,0.138645,0.788369,0.897108,0.200783,0.932066,0.0886672,0.159329,0.043905,0.649339,0.766827,0.770896,0.65439,0.335467,0.853761,0.337945,0.804693,0.570264,0.939121,0.288958,0.584508,0.0272547,0.189502,0.0921636,0.153867,0.866303,0.274143,0.75186,0.963391,0.621601,0.961439,0.479263,0.700931,0.122717,0.88177,0.51716,0.290156,0.813388,0.552982,0.0801897,0.112969,0.241773,0.654441,0.363571,0.915477,0.0458493,0.335247,0.413959,0.0600621,0.90569,0.31351,0.715729,0.385553,0.446227,0.845121,0.0508814,0.880779,0.350818,0.0164315,0.487623,0.181466,0.937465,0.590825,0.192463,0.242177,0.139226,0.444761,0.606268,0.893592,0.77435,0.919344,0.492124,0.791451,0.238815,0.0628071,0.223609,0.339156,0.868786,0.509344,0.320591,0.312755,0.439213,0.512734,0.700844,0.669101,0.760774,0.731841,0.765836,0.721767,0.659362,0.0670843,0.93919,0.87665,0.125301,0.282442,0.338593,0.959681,0.445642,0.0932878,0.471124,0.121628,0.458059,0.262818,0.326545,0.927325,0.178997,0.0916668,0.924033,0.373691,0.905537,0.722398,0.692189,0.254945,0.720619,0.198932,0.283996,0.0463722,0.473246,0.762694,0.588673,0.454128,0.606133,0.150206,0.495267,0.592441,0.574954,0.0355467,0.481861,0.00352019,0.0558415,0.397636,0.462486,0.463216,0.563275,0.144272,0.34675,0.807321,0.403923,0.27496,0.693982,0.688777,0.426808,0.426758,0.881766,0.353619,0.163073,0.693173,0.370685,0.15692,0.692973,0.771281,0.827623,0.432896,0.344081,0.19489,0.303525,0.892389,0.796444,0.57528,0.887559,0.426435,0.322297,0.50183,0.552734,0.222189,0.772687,0.579469,0.556985,0.380562,0.77485,0.0228193,0.710033,0.236529,0.537475,0.812791,0.886833,0.405631,0.0598511,0.785275,0.792289,0.180267,0.671639,0.302715,0.532993,0.927955,0.677568,0.344768,0.0816875,0.054228,0.359248,0.954809,0.793552,0.555789,0.249804,0.658302,0.450384,0.494221,0.0555596,0.327037,0.978002,0.0358683,0.332165,0.997705,0.455219,0.258511,0.829195,0.0378776,0.070034,0.881666,0.0804511,0.414206,0.0704951,0.285867,0.0519955,0.198617,0.320335,0.621454,0.0183515,0.00397152,0.226423,0.968562,0.0250154,0.578125,0.476953,0.491829,0.872283,0.127183,0.222679,0.746562,0.54255,0.610027,0.36965,0.440692,0.428644,0.766196,0.531309,0.441442,0.818395,0.252825,0.110568,0.965034,0.424653,0.763874,0.539418,0.449711,0.443048,0.239894,0.56282,0.793672,0.41253,0.88982,0.109744,0.244891,0.241206,0.340422,0.458177,0.154634,0.383725,0.307482,0.380225,0.691833,0.990119,0.318624,0.35742,0.0797037,0.411394,0.377449,0.511546,0.360204,0.0760391,0.569527,0.306927,0.969074,0.439273,0.199517,0.625654,0.745198,0.821923,0.209764,0.809103,0.853469,0.691988,0.437185,0.544374,0.979477,0.432369,0.366858,0.44715,0.583175,0.875311,0.302628,0.147618,0.96236,0.440462,0.901806,0.0201988,0.938447,0.487613,0.258293,0.857641,0.308741,0.593881,0.0775675,0.33989,0.114596,0.171116,0.0725546,0.651195,0.9298,0.365173,0.774732,0.24905,0.8947,0.945209,0.850441,0.25962,0.46917,0.723281,0.661622,0.56527,0.766702,0.127232,0.0843655,0.955423,0.0196314,0.758694,0.376906,0.970101,0.575888,0.882365,0.855292,0.751232,0.891773,0.013548,0.990978,0.630958,0.669161,0.291407,0.372012,0.421466,0.132109,0.544226,0.388923,0.0565698,0.938229,0.303288,0.836424,0.269936,0.404252,0.547311,0.575589,0.552663,0.0419866,0.530041,0.682449,0.533932,0.0330946,0.27962,0.892508,0.193649,0.785039,0.691671,0.413818,0.0896417,0.402478,0.636842,0.495394,0.307792,0.893124,0.736603,0.951835,0.236334,0.836221,0.704919,0.827247,0.385316,0.302304,0.555951,0.801275,0.863418,0.657819,0.0712469,0.703273,0.537314,0.0483163,0.553293,0.824528,0.230144,0.496133,0.621764,0.358,0.230151,0.166075,0.469292,0.0380048,0.60398,0.996632,0.982832,0.693866,0.0970978,0.103082,0.241584,0.639515,0.492378,0.738303,0.185257,0.583434,0.210334,0.306964,0.584872,0.445959,0.226787,0.761473,0.0352187,0.999844,0.793142,0.448276,0.461224,0.436456,0.715937,0.542982,0.130445,0.672599,0.968194,0.907712,0.771006,0.785483,0.936921,0.365024,0.208536,0.231308,0.616699,0.021226,0.00978011,0.535363,0.581694,0.129867,0.0513372,0.188898,0.406526,0.953568,0.554938,0.206969,0.554827,0.242975,0.142329,0.120165,0.401928,0.623934,0.454152,0.882118,0.589705,0.660662,0.560647,0.244781,0.232621,0.569747,0.520468,0.752769,0.751843,0.914645,0.377804,0.12126,0.36708,0.915546,0.0756193,0.00756884,0.0824018,0.33501,0.384767,0.962059,0.521452,0.707785,0.68238,0.852365,0.747109,0.724423,0.523569,0.170268,0.45175,0.636678,0.230811,0.882135,0.640248,0.646738,0.908249,0.480798,0.364,0.6401,0.125715,0.145241,0.613067,0.75888,0.977604,0.758262,0.0320607,0.410151,0.220367,0.969536,0.499507,0.901367,0.991942,0.566503,0.439151,0.0928247,0.484273,0.299663,0.54178,0.331898,0.97168,0.448184,0.0864995,0.437624,0.345794,0.928777,0.216948,0.0848129,0.231534,0.6267,0.22619,0.701208,0.198741,0.547619,0.725572,0.80731,0.651058,0.779121,0.10239,0.612649,0.828513,0.596,0.756872,0.877779,0.225481,0.770128,0.816247,0.304908,0.915399,0.625429,0.944541,0.680164,0.841266,0.0322414,0.0100843,0.112646,0.78851,0.334008,0.624975,0.364999,0.75593,0.101759,0.224314,0.860348,0.752066,0.132707,0.0447855,0.106759,0.0885172,0.735648,0.632026,0.542563,0.671104,0.434289,0.271908,0.341474,0.999146,0.367781,0.252733,0.17762,0.286359,0.778605,0.469066,0.975586,0.505328,0.112189,0.861815,0.120495,0.680005,0.309492,0.364295,0.234645,0.428076,0.276034,0.266456,0.319066,0.752066,0.328631,0.843516,0.418204,0.419739,0.247237,0.0317472,0.0710385,0.855201,0.881746,0.834444,0.811755,0.205404,0.823595,0.371522,0.925221,0.403364,0.458265,0.641607,0.664896,0.691383,0.964396,0.938718,0.815696,0.405211,0.55948,0.862759,0.144591,0.434524,0.430168,0.238322,0.538046,0.163482,0.0833188,0.0940127,0.371893,0.878197,0.969946,0.546656,0.00958711,0.881302,0.163665,0.970147,0.439241,0.265328,0.0688061,0.907709,0.322656,0.55777,0.549303,0.899497,0.62245,0.691967,0.630965,0.815706,0.131804,0.804141,0.582343,0.915652,0.767126,0.78547,0.308047,0.388939,0.524823,0.753015,0.449335,0.53853,0.173853,0.141745,0.214968,0.833591,0.364669,0.567028,0.317565,0.883173,0.32242,0.748806,0.834786,0.214801,0.184827,0.0690058,0.467807,0.0919471,0.478286,0.460859,0.599414,0.701389,0.25157,0.930767,0.272246,0.354314,0.476177,0.311627,0.839587,0.531919,0.876145,0.110232,0.950785,0.213374,0.912971,0.158578,0.815374,0.368921,0.913095,0.0883067,0.598798,0.717855,0.536155,0.771347,0.84447,0.016537,0.270787,0.711467,0.972447,0.95057,0.259789,0.756051,0.152465,0.732328,0.75622,0.4838,0.927052,0.73155,0.294646,0.0322597,0.82722,0.797505,0.113376,0.462281,0.873843,0.12854,0.322967,0.561473,0.354301,0.674709,0.686531,0.951492,0.746417,0.0736436,0.345085,0.817918,0.581152,0.0622954,0.357615,0.31905,0.0676842,0.813731,0.290407,0.385804,0.414217,0.646403,0.765742,0.85554,0.237765,0.420399,0.507411,0.536293,0.735145,0.467308,0.293856,0.52252,0.71201,0.46789,0.921715,0.937533,0.00432336,0.755064,0.146207,0.121416,0.597352,0.492142,0.794669,0.643535,0.703833,0.553654,0.491077,0.727387,0.626156,0.358253,0.631787,0.196345,0.0511314,0.126419,0.941366,0.707535,0.692804,0.67481,0.820812,0.430185,0.884047,0.584003,0.273898,0.0687581,0.693637,0.717826,0.102806,0.386179,0.323701,0.148448,0.340699,0.681229,0.675046,0.74094,0.473372,0.419551,0.250887,0.797202,0.463202,0.161985,0.0161767,0.910399,0.791554,0.829143,0.528328,0.0904312,0.210862,0.126407,0.375129,0.869566,0.998063,0.660644,0.22309,0.804719,0.501101,0.659621,0.0443951,0.492966,0.646865,0.993496,0.17308,0.231158,0.631028,0.944662,0.436811,0.888713,0.0141435,0.86196,0.487794,0.82659,0.120758,0.575802,0.0540145,0.888377,0.849848,0.800137,0.49983,0.833579,0.207388,0.431501,0.80975,0.50985,0.974173,0.834371,0.30792,0.394469,0.109076,0.365354,0.1899,0.74292,0.661434,0.956817,0.955149,0.882311,0.154087,0.943418,0.152019,0.414434,0.229159,0.731743,0.848305,0.881624,0.246549,0.0668191,0.879359,0.591852,0.953819,0.620724,0.816281,0.353198,0.0071193,0.511915,0.538468,0.707635,0.288127,0.336622,0.614728,0.662372,0.85373,0.281815,0.137781,0.422348,0.155399,0.192628,0.0445974,0.562916,0.768601,0.694147,0.916458,0.948612,0.67605,0.927567,0.196807,0.0860245,0.920843,0.262925,0.283971,0.889685,0.517542,0.9643,0.741358,0.518259,0.129775,0.730821,0.640698,0.0645504,0.850079,0.671588,0.223873,0.674569,0.00685436,0.600576,0.292844,0.56059,0.923368,0.0826969,0.142221,0.0948286,0.892045,0.433129,0.83587,0.518935,0.18298,0.800632,0.165606,0.164476,0.0509831,0.394307,0.903259,0.00984561,0.807008,0.680141,0.829005,0.244744,0.890601,0.468373,0.168504,0.538941,0.188634,0.235324,0.50601,0.87159,0.977865,0.0891627,|0.459302,0.387123,0.796558,0.346247,0.301089,0.861953,0.239962,0.047326,0.0525923,0.689369,0.177109,0.854977,0.615831,0.912141,0.743444,0.24049,0.0143383,0.152308,0.930645,0.0517312,0.812804,0.01999,0.0623809,0.375414,0.116043,0.349492,0.00412482,0.635334,0.595373,0.76912,0.335781,0.250742,0.846877,0.397566,0.401303,0.72955,0.822015,0.257057,0.989092,0.265343,0.274342,0.423925,0.655169,0.360173,0.545557,0.802268,0.867778,0.524588,0.198725,0.256222,0.221814,0.814795,0.544363,0.574585,0.52845,0.252582,0.00267732,0.572421,0.487601,0.0382988,0.925407,0.841251,0.205332,0.5642,0.254279,0.244786,0.697203,0.458731,0.408663,0.759934,0.772423,0.584357,0.372111,0.511762,0.557487,0.925983,0.672867,0.773682,0.0450516,0.210139,0.509494,0.0686768,0.977463,0.918181,0.0853351,0.266379,0.285638,0.311349,0.680611,0.965918,0.0520512,0.216561,0.378024,0.210036,0.714962,0.116589,0.184872,0.0748331,0.865783,0.904622,0.643593,0.793753,0.508398,0.827264,0.150727,0.721359,0.264863,0.420239,0.368165,0.668469,0.787087,0.777201,0.539893,0.610801,0.795609,0.977665,0.506463,0.898454,0.364604,0.289463,0.645579,0.887557,0.644833,0.526602,0.520777,0.524507,0.415873,0.384698,0.565333,0.135105,0.565482,0.531418,0.359949,0.203744,0.116497,0.792949,0.0181517,0.00594622,0.487349,0.0657514,0.21328,0.86466,0.876437,0.281705,0.548612,0.975227,0.989384,0.952003,0.366725,0.903575,0.935824,0.196696,0.00493664,0.154591,0.426925,0.305256,0.333944,0.607765,0.565687,0.266915,0.158135,0.424078,0.507252,0.638857,0.629071,0.128296,0.386325,0.0921986,0.563847,0.90234,0.674987,0.553409,0.492821,0.0606474,0.0984839,0.228003,0.708621,0.0977441,0.785778,0.412349,0.00134671,0.627104,0.246278,0.576415,0.033755,0.311862,0.703375,0.0744816,0.976184,0.683746,0.290695,0.0488339,0.478992,0.699859,0.310691,0.684597,0.826789,0.17912,0.971994,0.877786,0.0659651,0.904323,0.613083,0.553259,0.258916,0.30675,0.110594,0.539246,0.520683,0.664761,0.325108,0.309237,0.434596,0.940495,0.834405,0.891902,0.141982,0.257879,0.900555,0.521363,0.45571,0.394094,0.127476,0.605252,0.434554,0.853754,0.2224,0.765815,0.46354,0.996867,0.15432,0.467165,0.696515,0.923407,0.359773,0.795408,0.0246663,0.512146,0.795682,0.679356,0.724531,0.484117,0.163247,0.815092,0.15726,0.716672,0.0224497,0.85799,0.122099,0.0918658,0.251158,0.317792,0.765608,0.411343,0.282188,0.249769,0.0623589,0.496088,0.94737,0.517898,0.823505,0.453538,0.952722,0.880576,0.485151,0.0574356,0.777349,0.421837,0.263176,0.795357,0.059735,0.308841,0.951536,0.922318,0.0338966,0.703856,0.888503,0.3043,0.572751,0.985629,0.522829,0.496481,0.292251,0.021945,0.712702,0.823897,0.59795,0.355611,0.307628,0.937753,0.216469,0.0636072,0.241664,0.839171,0.0527193,0.226217,0.574114,0.540471,0.764842,0.976815,0.78772,0.0676707,0.709024,0.717704,0.761718,0.503182,0.523959,0.314458,0.990229,0.346871,0.245078,0.499286,0.118999,0.0867658,0.467837,0.842048,0.533111,0.610109,0.1205,0.241518,0.302987,0.0309248,0.140009,0.713745,0.838979,0.0534192,0.00952095,0.764958,0.437974,0.0685424,0.708598,0.163418,0.158827,0.0521811,0.576856,0.169885,0.0889957,0.0117382,0.0406334,0.748475,0.899263,0.0527755,0.499501,0.479317,0.732775,0.872745,0.205108,0.0538005,0.569051,0.74247,0.818488,0.555744,0.657973,0.310626,0.167628,0.469966,0.60437,0.942147,0.245353,0.677125,0.363583,0.34535,0.360172,0.201726,0.903092,0.780636,0.659816,0.366813,0.79535,0.879541,0.782489,0.929646,0.813856,0.280887,0.30707,0.363131,0.597238,0.312177,0.70694,0.71861,0.791774,0.206421,0.747664,0.487638,0.761609,0.339389,0.0785783,0.919918,0.639672,0.722288,0.665169,0.347644,0.127291,0.830436,0.421214,0.446765,0.914277,0.945437,0.355309,0.376886,0.338057,0.337689,0.725308,0.248214,0.982842,0.690047,0.281016,0.955334,0.225382,0.76823,0.712012,0.597774,0.744139,0.858089,0.870454,0.42345,0.762899,0.20771,0.452946,0.881117,0.326261,0.00456417,0.478717,0.286069,0.600031,0.822461,0.594317,0.000532687,0.186948,0.0949155,0.839352,0.242289,0.357053,0.964291,0.115173,0.513788,0.554506,0.603698,0.702413,0.392836,0.505969,0.531494,0.459909,0.990616,0.754337,0.080774,0.911449,0.711529,0.353385,0.011775,0.282482,0.633355,0.506865,0.920596,0.980405,0.328076,0.63083,0.262879,0.783598,0.533627,0.796144,0.35019,0.010628,0.775512,0.280566,0.317017,0.681814,0.336909,0.803754,0.351101,0.334705,0.868142,0.875293,0.846929,0.582762,0.356186,0.478251,0.739068,0.717493,0.658597,0.969801,0.347096,0.809515,0.950066,0.869734,0.0561487,0.0949922,0.344537,0.654815,0.233079,0.859883,0.287254,0.39944,0.666307,0.645418,0.069492,0.57,0.908793,0.460713,0.889478,0.0833765,0.218427,0.769075,0.859888,0.984976,0.844311,0.849544,0.985655,0.542096,0.292389,0.357764,0.944315,0.0381052,0.121159,0.836957,0.821938,0.569051,0.579515,0.23873,0.565401,0.271438,0.499994,0.271599,0.0218846,0.79472,0.881329,0.715167,0.565773,0.662047,0.23524,0.0855615,0.262582,0.988191,0.89741,0.627176,0.355782,0.205543,0.325763,0.267249,0.665057,0.382105,0.64235,0.651833,0.685109,0.86209,0.376405,0.647099,0.469151,0.775657,0.186452,0.924537,0.111618,0.0903671,0.444763,0.403449,0.780474,0.782248,0.0192822,0.534739,0.0138586,0.554481,0.273363,0.415479,0.947041,0.930456,0.936599,0.553576,0.239425,0.419879,0.925978,0.842446,0.595862,0.57004,0.447072,0.841172,0.106997,0.582371,0.646435,0.0793415,0.847342,0.390281,0.169676,0.616813,0.336168,0.927937,0.393834,0.135954,0.610523,0.964423,0.988653,0.135109,0.100814,0.594237,0.866764,0.0237806,0.390266,0.349018,0.588695,0.214692,0.88276,0.16729,0.686829,0.183998,0.223641,0.148216,0.438229,0.442319,0.502349,0.3815,0.205398,0.500368,0.592687,0.708005,0.60661,0.170242,0.70802,0.296949,0.0672534,0.174676,0.526084,0.0158135,0.179386,0.894076,0.921132,0.0176805,0.626286,0.0364511,0.810003,0.650503,0.601382,0.057901,0.246895,0.631549,0.180584,0.755396,0.289984,0.839378,0.268149,0.521506,0.758619,0.762611,0.727866,0.121462,0.774188,0.876162,0.375515,0.166119,0.701022,0.290045,0.402541,0.806914,0.744961,0.616737,0.954982,0.181221,0.0317652,0.862141,0.258071,0.0194569,0.506281,0.552717,0.844317,0.23527,0.632189,0.976708,0.127667,0.304985,0.619428,0.925271,0.225465,0.494816,0.551704,0.767693,0.65925,0.676297,0.996024,0.880911,0.270321,0.986838,0.451689,0.59303,0.656218,0.033381,0.384294,0.156783,0.0206813,0.397538,0.755942,0.859507,0.529218,0.320548,0.935158,0.0952477,0.281824,0.339724,0.881613,0.819533,0.0274305,0.0788133,0.00921029,0.632401,0.447757,0.0497196,0.567816,0.718981,0.27204,0.888213,0.515427,0.560083,0.694616,0.362012,0.643727,0.670346,0.504223,0.387318,0.992067,0.680175,0.500831,0.294887,0.137059,0.52633,0.625685,0.45703,0.236929,0.848542,0.0244836,0.313646,0.266654,0.152449,0.974888,0.429837,0.0481349,0.254477,0.669153,0.480062,0.432751,0.504611,0.598431,0.928989,0.447499,0.660063,0.888106,0.776335,0.901772,0.265844,0.870575,0.513579,0.507049,0.116574,0.993179,0.549086,0.0291231,0.319574,0.289598,0.557055,0.126227,0.563507,0.195365,0.402987,0.824421,0.961449,0.792403,0.318514,0.291057,0.619612,0.440452,0.340305,0.482903,0.605514,0.389932,0.659453,0.655703,0.796523,0.197758,0.0810346,0.465256,0.309223,0.615637,0.216685,0.0812005,0.511364,0.284616,0.823785,0.0453464,0.250228,0.879658,0.157068,0.0464215,0.572041,0.246776,0.761815,0.751836,0.676884,0.23709,0.803199,0.00696164,0.591567,0.664166,0.338152,0.495459,0.156864,0.669485,0.659164,0.0993814,0.459738,0.807529,0.334097,0.220542,0.02366,0.354118,0.227129,0.609362,0.256704,0.755296,0.881782,0.294716,0.242077,0.184188,0.323914,0.443513,0.476854,0.619274,0.575113,0.284596,0.908687,0.815265,0.354473,0.558653,0.243463,0.366248,0.0292861,0.586679,0.736199,0.447695,0.388079,0.278115,0.302635,0.200751,0.277252,0.589594,0.291761,0.19725,0.436099,0.111482,0.432122,0.466476,0.744323,0.0394055,0.352098,0.566108,0.596965,0.50521,0.884118,0.475764,0.466738,0.888822,0.0107038,0.810597,0.805953,0.341951,0.0197629,0.739707,0.747984,0.006136,0.482135,0.460864,0.199816,0.503177,0.0883961,0.212309,0.125696,0.394357,0.299956,0.313867,0.0741569,0.427809,0.989969,0.189973,0.080745,0.917666,0.790825,0.804539,0.585783,0.576217,0.927712,0.655719,0.975593,0.637693,0.917038,0.345499,0.0849446,0.256051,0.559007,0.223724,0.0924383,0.489591,0.0297284,0.115156,0.0489196,0.288112,0.0334519,0.0893416,0.173078,0.480461,0.264319,0.713917,0.889213,0.703616,0.408141,0.0360885,0.743856,0.811677,0.457289,0.402774,0.965541,0.39963,0.204244,0.802647,0.41889,0.779167,0.0987721,0.201419,0.719482,0.555882,0.37419,0.908898,0.151018,0.780654,0.317424,0.985341,0.134483,0.0471216,0.275459,0.817245,0.262,0.658864,0.897613,0.450587,0.696603,0.682778,0.557536,0.367678,0.586921,0.947477,0.392565,0.575661,0.411408,0.0324404,0.395968,0.375087,0.243706,0.0947375,0.627107,0.417492,0.806443,0.239876,0.352191,0.159881,0.993979,0.320559,0.010931,0.590069,0.442686,0.608409,0.673301,0.23303,0.0841041,0.709933,0.51303,0.22456,0.563571,0.735818,0.220286,0.331258,0.889166,0.474673,0.814209,0.647474,0.150447,0.326861,0.492029,0.137032,0.793896,0.998021,0.798389,0.744639,0.814686,0.407498,0.723526,0.629373,0.451553,0.515331,0.699207,0.810648,0.753781,0.515118,0.70291,0.539701,0.00590795,0.300969,|0.484958,0.887624,0.570518,0.20275,0.932961,0.952084,0.608107,0.0840861,0.373574,0.223904,0.206762,0.575301,0.361387,0.271417,0.0214891,0.836455,0.305806,0.0348876,0.720085,0.468307,0.0122127,0.675013,0.332744,0.194456,0.16226,0.674751,0.565959,0.88724,0.431926,0.109749,0.645331,0.811247,0.558262,0.269766,0.985816,0.736902,0.0956759,0.658043,0.910767,0.975401,0.927657,0.207908,0.341894,0.0461089,0.477414,0.7432,0.155917,0.842533,0.152078,0.178349,0.485169,0.811215,0.221733,0.00416178,0.106006,0.550767,0.756236,0.18383,0.114563,0.282807,0.83229,0.909419,0.271855,0.632728,0.0378404,0.396178,0.274791,0.796624,0.473124,0.299355,0.402077,0.597528,0.675032,0.936644,0.768564,0.289327,0.629633,0.314129,0.864723,0.556932,0.291286,0.808826,0.134264,0.42217,0.0704043,0.223416,0.317405,0.23587,0.209484,0.577684,0.0289671,0.149199,0.622774,0.60968,0.453891,0.565226,0.860848,0.320557,0.162394,0.0782665,0.0233254,0.616401,0.829169,0.9501,0.133419,0.468945,0.766427,0.101229,0.515123,0.686108,0.597216,0.309698,0.635989,0.549365,0.895809,0.555704,0.828465,0.300865,0.908483,0.432235,0.681675,0.766388,0.780011,0.251222,0.487116,0.313986,0.81537,0.428253,0.595693,0.654789,0.737657,0.218255,0.779741,0.483197,0.835014,0.237854,0.343556,0.246033,0.43102,0.46031,0.236877,0.506567,0.438842,0.225547,0.549004,0.655001,0.799624,0.157996,0.520797,0.92811,0.823357,0.159462,0.651391,0.41153,0.855287,0.844971,0.207982,0.772175,0.409239,0.407082,0.205462,0.597173,0.104368,0.486244,0.088909,0.892873,0.117869,0.564178,0.777482,0.274669,0.0626937,0.843657,0.0942137,0.158793,0.996065,0.199747,0.0600494,0.991282,0.0669456,0.139055,0.268472,0.664717,0.925731,0.31069,0.645316,0.825742,0.385765,0.433461,0.719425,0.938545,0.358808,0.363114,0.819225,0.831964,0.244238,0.239287,0.290353,0.50859,0.00374562,0.291389,0.965768,0.413854,0.292882,0.65929,0.868878,0.480496,0.638117,0.652148,0.217025,0.0598357,0.433854,0.370081,0.189996,0.441413,0.329075,0.5476,0.0895861,0.955868,0.421972,0.975145,0.146596,0.168462,0.0657291,0.519941,0.242731,0.466721,0.108154,0.682957,0.657593,0.226865,0.149044,0.142262,0.0289932,0.843831,0.988641,0.0402759,0.859521,0.0323948,0.706929,0.61143,0.321083,0.890802,0.76955,0.406622,0.589662,0.805149,0.481378,0.622733,0.465348,0.619852,0.0507204,0.701129,0.845818,0.52481,0.259992,0.256801,0.986834,0.339296,0.91252,0.383326,0.586585,0.357765,0.0587695,0.332113,0.628862,0.85598,0.703373,0.0270607,0.541099,0.624541,0.675773,0.215697,0.86618,0.603107,0.499968,0.147864,0.0793454,0.142769,0.132403,0.895233,0.651813,0.108867,0.81065,0.52328,0.624087,0.973335,0.769228,0.0154791,0.648684,0.759611,0.984279,0.0766626,0.992899,0.00281948,0.257112,0.894061,0.613613,0.780877,0.439909,0.987206,0.781842,0.216302,0.354355,0.168808,0.472147,0.0187232,0.638017,0.413931,0.704673,0.078398,0.875908,0.392217,0.793474,0.463843,0.152436,0.226513,0.474403,0.266527,0.0320544,0.265657,0.722703,0.672065,0.185734,0.228728,0.881197,0.877308,0.779032,0.615589,0.135158,0.458,0.522786,0.40663,0.607483,0.641013,0.70934,0.409073,0.763979,0.185516,0.0796432,0.622903,0.429231,0.684323,0.536488,0.822008,0.810484,0.377214,0.668457,0.822266,0.75251,0.908788,0.92711,0.185018,0.722218,0.997432,0.979561,0.809752,0.818351,0.928,0.108091,0.464498,0.374472,0.66265,0.555583,0.155492,0.174296,0.843861,0.460778,0.619309,0.779432,0.582805,0.0738186,0.399721,0.503363,0.59756,0.0139568,0.350758,0.950906,0.159792,0.156178,0.663028,0.25242,0.672198,0.731194,0.562038,0.843468,0.384018,0.121509,0.382814,0.551636,0.699533,0.679499,0.449019,0.424727,0.0958308,0.0100744,0.0920799,0.0328092,0.0932379,0.159001,0.129348,0.957478,0.270233,0.48804,0.426627,0.961149,0.602144,0.815581,0.952356,0.952901,0.49132,0.553593,0.00516397,0.893184,0.0124431,0.464455,0.441069,0.981383,0.458094,0.511263,0.815321,0.010115,0.571976,0.605606,0.578846,0.61287,0.0145476,0.785011,0.6905,0.790628,0.652496,0.881963,0.151936,0.183229,0.181351,0.403189,0.630772,0.319162,0.796231,0.457634,0.965442,0.143728,0.745412,0.530321,0.498879,0.434042,0.941313,0.15044,0.981179,0.176164,0.715009,0.623677,0.499068,0.649576,0.856215,0.979394,0.25761,0.437851,0.66484,0.397181,0.832249,0.964551,0.595384,0.684187,0.683969,0.236538,0.0363541,0.634398,0.458901,0.775607,0.196033,0.988859,0.773707,0.620559,0.770629,0.7784,0.705953,0.570247,0.656907,0.301719,0.722636,0.915743,0.0855834,0.247393,0.723966,0.994166,0.720633,0.355594,0.922418,0.905116,0.449346,0.898637,0.734738,0.719016,0.30695,0.650361,0.86969,0.161051,0.564462,0.25589,0.82602,0.314137,0.785145,0.958101,0.803025,0.900335,0.860291,0.0939858,0.405857,0.456507,0.766634,0.729693,0.4395,0.0820578,0.113802,0.610156,0.608045,0.725002,0.163686,0.232063,0.914601,0.293397,0.379442,0.793365,0.0930133,0.618189,0.487184,0.361949,0.556206,0.778318,0.686562,0.600815,0.671684,0.559965,0.123062,0.970498,0.17623,0.271304,0.555669,0.10775,0.808514,0.799916,0.000602126,0.24523,0.334011,0.546406,0.526458,0.492228,0.574115,0.692336,0.993769,0.399022,0.883527,0.70876,0.938549,0.0310529,0.261516,0.205791,0.305563,0.373389,0.697225,0.757494,0.733805,0.0939512,0.932082,0.56768,0.591674,0.511189,0.798309,0.659361,0.338278,0.684086,0.659943,0.617818,0.32533,0.45383,0.0544642,0.0328262,0.565695,0.908006,0.99735,0.846488,0.421373,0.838369,0.024192,0.564817,0.788002,0.540664,0.85145,0.619753,0.855839,0.966145,0.846315,0.115006,0.892182,0.428796,0.600013,0.423311,0.906844,0.710296,0.767869,0.0280908,0.427258,0.513557,0.172411,0.744701,0.813442,0.191251,0.340953,0.600478,0.408922,0.993285,0.725244,0.514261,0.624089,0.834314,0.431337,0.838626,0.529037,0.404733,0.285566,0.209778,0.963335,0.639513,0.340753,0.297205,0.0813314,0.547882,0.270003,0.547999,0.0410534,0.524009,0.465757,0.713733,0.207848,0.728396,0.299963,0.702005,0.304238,0.0231681,0.827415,0.030875,0.353751,0.866612,0.276389,0.378796,0.273944,0.188955,0.34111,0.375275,0.328092,0.581451,0.686247,0.344898,0.519337,0.00540906,0.253079,0.445591,0.739976,0.54501,0.592052,0.907128,0.0399144,0.10222,0.157966,0.625343,0.575978,0.489755,0.604901,0.344439,0.428751,0.98274,0.418016,0.169982,0.611965,0.537293,0.840981,0.890706,0.874422,0.340789,0.655505,0.00513077,0.0731143,0.756355,0.907464,0.216884,0.610676,0.850679,0.311779,0.16736,0.455728,0.131862,0.0217519,0.786816,0.867887,0.335462,0.812815,0.976717,0.62128,0.316377,0.355476,0.86712,0.287893,0.321755,0.705885,0.395522,0.610911,0.732677,0.869763,0.316301,0.32455,0.716791,0.25952,0.463668,0.754662,0.874378,0.933002,0.742714,0.42239,0.144642,0.738321,0.790479,0.495574,0.238574,0.517369,0.37099,0.656844,0.916171,0.975135,0.797761,0.331891,0.086233,0.622304,0.0816315,0.0194455,0.900566,0.959737,0.748101,0.907591,0.356628,0.386513,0.177534,0.92554,0.281371,0.241732,0.378993,0.471435,0.776873,0.801729,0.908374,0.121314,0.28442,0.974354,0.598717,0.0676742,0.748544,0.0488459,0.464227,0.122091,0.621295,0.655683,0.528746,0.203681,0.253993,0.324328,0.931331,0.328816,0.393447,0.0303413,0.730139,0.751507,0.245831,0.617347,0.631271,0.61006,0.643878,0.0688959,0.659573,0.0900435,0.440887,0.440849,0.713501,0.547616,0.526951,0.511818,0.73861,0.333072,0.0412428,0.515888,0.583804,0.396005,0.294762,0.757918,0.937937,0.292565,0.00707799,0.960876,0.846232,0.401038,0.663104,0.863182,0.0203752,0.345424,0.129767,0.238371,0.851488,0.375804,0.0457474,0.72968,0.856757,0.689383,0.102339,0.730207,0.612929,0.651232,0.694824,0.284437,0.789215,0.575573,0.201634,0.497471,0.236563,0.0651578,0.0978569,0.639767,0.931454,0.0791083,0.384701,0.672672,0.835667,0.654093,0.981523,0.936473,0.234809,0.834139,0.756117,0.578319,0.360613,0.566152,0.910664,0.480284,0.901291,0.593765,0.324071,0.262927,0.339955,0.799514,0.942755,0.208149,0.116908,0.941507,0.765408,0.527861,0.482319,0.227829,0.884439,0.508251,0.426644,0.406036,0.00756997,0.217957,0.497978,0.168828,0.00543606,0.841782,0.849274,0.710468,0.627064,0.426365,0.883742,0.388484,0.790129,0.727526,0.161056,0.795882,0.945726,0.227524,0.9774,0.397694,0.0994539,0.859346,0.707755,0.992456,0.0631565,0.800405,0.789144,0.0740115,0.346758,0.595935,0.93572,0.892505,0.0177423,0.857114,0.116902,0.293936,0.847539,0.408114,0.420947,0.107076,0.148117,0.318402,0.651319,0.0824789,0.128201,0.699004,0.346149,0.660369,0.215411,0.293563,0.952311,0.340151,0.528143,0.646211,0.49385,0.705135,0.808378,0.0492552,0.197779,0.0428393,0.627845,0.410441,0.98062,0.489299,0.967831,0.260922,0.364096,0.878464,0.0969564,0.468352,0.788168,0.561739,0.775272,0.292022,0.583424,0.141373,0.505289,0.604276,0.870717,0.908148,0.261746,0.54045,0.158759,0.346619,0.471463,0.838621,0.959994,0.614592,0.543735,0.183144,0.172261,0.725573,0.61673,0.030775,0.330678,0.200745,0.849744,0.211337,0.233194,0.0438935,0.303582,0.628987,0.0514475,0.0121818,0.886263,0.568271,0.813776,0.096737,0.12799,0.0840883,0.467827,0.931426,0.668704,0.738561,0.0358817,0.0806441,0.708916,0.938348,0.414961,0.350323,0.152641,0.694121,0.815193,0.503556,0.560675,0.714495,0.607316,0.644536,0.95343,0.073465,0.232303,0.567473,0.694667,0.933147,0.235084,0.853759,0.0962742,0.580089,0.420161,0.994731,0.684538,0.987559,|0.138576,0.68962,0.320332,0.421755,0.801268,0.218211,0.511041,0.412427,0.968982,0.204839,0.646541,0.897745,0.674112,0.446852,0.268998,0.330042,0.236043,0.408871,0.951801,0.265645,0.992018,0.949895,0.733289,0.372646,0.591305,0.776473,0.32392,0.0603774,0.424342,0.627838,0.823298,0.708183,0.495967,0.598156,0.978689,0.201982,0.911469,0.35246,0.551109,0.625005,0.201257,0.156593,0.106875,0.523305,0.147305,0.102927,0.588212,0.677817,0.960289,0.117149,0.376824,0.211938,0.6269,0.59291,0.552636,0.0997219,0.877904,0.207576,0.728624,0.0669559,0.613614,0.480801,0.537929,0.604982,0.653234,0.546298,0.522511,0.0596715,0.338621,0.745743,0.184891,0.0539082,0.330359,0.417057,0.554111,0.335313,0.616682,0.946449,0.915978,0.302441,0.85989,0.609187,0.156101,0.275815,0.187884,0.897511,0.886651,0.941246,0.691947,0.0406953,0.248659,0.0774689,0.105851,0.103864,0.339818,0.839434,0.579108,0.711662,0.145625,0.240596,0.190324,0.940476,0.3443,0.604483,0.260232,0.907059,0.130916,0.283596,0.853401,0.401192,0.232681,0.767118,0.254651,0.423037,0.279806,0.914301,0.280183,0.963992,0.824423,0.201063,0.695501,0.867738,0.126015,0.105861,0.528152,0.938761,0.823275,0.00749582,0.09889,0.716882,0.219023,0.560596,0.00891322,0.638419,0.519277,0.348378,0.672671,0.345025,0.0801961,0.0702073,0.239072,0.230244,0.479473,0.580571,0.975197,0.435204,0.869471,0.994719,0.873173,0.921844,0.647486,0.239781,0.785723,0.893603,0.760464,0.705174,0.120417,0.327569,0.935732,0.93507,0.0111939,0.53273,0.845952,0.322291,0.63881,0.651427,0.627179,0.340444,0.44476,0.205957,0.69726,0.480439,0.694776,0.893956,0.336688,0.644208,0.477722,0.675189,0.564296,0.484107,0.45283,0.11463,0.76028,0.460873,0.861861,0.696466,0.366307,0.626224,0.39603,0.343978,0.590176,0.504449,0.406325,0.131398,0.676682,0.654013,0.730779,0.488371,0.117367,0.989489,0.467178,0.438696,0.565478,0.650787,0.362109,0.847504,0.952355,0.254638,0.249621,0.621952,0.982467,0.712447,0.33944,0.282134,0.0939196,0.135593,0.172564,0.719849,0.00543642,0.59061,0.956418,0.618337,0.848223,0.395239,0.159302,0.68176,0.734792,0.652654,0.991379,0.853483,0.99233,0.736244,0.324819,0.599391,0.303379,0.560163,0.308227,0.806722,0.273963,0.137921,0.646608,0.96097,0.263741,0.578534,0.540244,0.802943,0.437618,0.0797139,0.358983,0.408928,0.738153,0.57552,0.0693678,0.787302,0.225997,0.0473526,0.650514,0.532264,0.474699,0.0688881,0.307522,0.50525,0.846811,0.832455,0.779061,0.186168,0.922346,0.822402,0.567574,0.815742,0.554783,0.246737,0.588526,0.700898,0.0622851,0.849395,0.537926,0.172648,0.516298,0.646814,0.350774,0.968867,0.858551,0.666133,0.0431765,0.0342059,0.433502,0.258828,0.770152,0.640547,0.474624,0.563442,0.433835,0.7591,0.595802,0.177402,0.0992402,0.416309,0.00227892,0.862552,0.757614,0.701649,0.108377,0.0871394,0.217491,0.197061,0.0880548,0.653833,0.356507,0.652985,0.844418,0.876981,0.540072,0.612746,0.565586,0.523383,0.445334,0.459989,0.208466,0.403709,0.897558,0.159001,0.36259,0.242705,0.559401,0.574604,0.839438,0.261689,0.193029,0.499146,0.31556,0.912215,0.682997,0.917829,0.000883579,0.71204,0.495814,0.213263,0.615408,0.640899,0.997332,0.411663,0.510546,0.186392,0.07688,0.147156,0.481187,0.527222,0.694029,0.957654,0.396654,0.177424,0.74926,0.66741,0.848385,0.380723,0.439515,0.31652,0.478938,0.121843,0.507173,0.091188,0.061332,0.996091,0.246766,0.258486,0.730485,0.151041,0.417187,0.968446,0.381775,0.653338,0.451262,0.480377,0.493052,0.0283759,0.109197,0.447632,0.877844,0.306997,0.0483891,0.910483,0.488494,0.97057,0.809098,0.109898,0.681269,0.176651,0.550199,0.940253,0.0196838,0.920427,0.888758,0.720365,0.0674807,0.703162,0.216093,0.933573,0.573449,0.472044,0.632527,0.702762,0.436907,0.137454,0.0244049,0.0680192,0.289133,0.319684,0.745761,0.783076,0.402062,0.569914,0.0805789,0.733739,0.590677,0.443878,0.377935,0.916177,0.960255,0.420044,0.133206,0.689478,0.79496,0.645854,0.822225,0.727155,0.161545,0.195389,0.457804,0.945539,0.350539,0.83932,0.0273907,0.680384,0.307787,0.725711,0.716278,0.402702,0.108795,0.0257004,0.72562,0.646436,0.274895,0.76226,0.861545,0.886219,0.321683,0.628018,0.845037,0.325444,0.178149,0.468437,0.272042,0.367744,0.313234,0.652637,0.949941,0.978618,0.99288,0.843991,0.487876,0.620921,0.449683,0.789688,0.5112,0.616323,0.449941,0.414071,0.0697392,0.0869319,0.101342,0.44688,0.531659,0.236401,0.803065,0.745323,0.093881,0.4864,0.294778,0.573732,0.215977,0.966469,0.137637,0.320639,0.666886,0.243271,0.607465,0.328942,0.559521,0.885402,0.203089,0.662422,0.02797,0.755665,0.177731,0.965219,0.528493,0.539877,0.0901898,0.578085,0.0466538,0.899218,0.819992,0.955507,0.294285,0.208745,0.1485,0.889623,0.685328,0.287784,0.350026,0.45664,0.596579,0.427635,0.468651,0.0951198,0.877219,0.614743,0.32662,0.583715,0.137424,0.866538,0.975698,0.890516,0.997459,0.137525,0.327409,0.115519,0.373264,0.0146797,0.813595,0.273869,0.445981,0.328668,0.94807,0.348163,0.753555,0.432147,0.0760555,0.562801,0.508443,0.360753,0.879095,0.0439574,0.757008,0.0985972,0.350463,0.120113,0.0198631,0.310025,0.358449,0.571059,0.935483,0.0188288,0.492621,0.801377,0.327528,0.849649,0.0575181,0.747087,0.169589,0.720433,0.639031,0.569399,0.194965,0.515474,0.871903,0.250878,0.401857,0.197316,0.10145,0.414288,0.924914,0.00538981,0.387362,0.559572,0.481536,0.501852,0.254053,0.155926,0.842378,0.936167,0.83273,0.334095,0.951112,0.615563,0.934194,0.483561,0.121951,0.0803574,0.57796,0.427382,0.177357,0.18945,0.428182,0.366523,0.63927,0.0232231,0.265361,0.511879,0.997559,0.398361,0.760914,0.207222,0.43384,0.191973,0.864425,0.846131,0.705172,0.350293,0.620316,0.598304,0.976728,0.844385,0.776147,0.641208,0.295871,0.18126,0.232408,0.611905,0.216279,0.295689,0.201249,0.0524781,0.343071,0.124867,0.212642,0.17644,0.78049,0.56422,0.808695,0.633446,0.72748,0.549105,0.976593,0.84553,0.572093,0.0479861,0.905765,0.837493,0.0331887,0.453936,0.382532,0.771724,0.0451572,0.560935,0.055112,0.619803,0.700414,0.507767,0.416148,0.446925,0.984374,0.966254,0.499569,0.853571,0.603022,0.514763,0.0816383,0.99714,0.336181,0.260685,0.301413,0.865805,0.00310636,0.851974,0.545083,0.262849,0.945538,0.687441,0.624683,0.425178,0.983777,0.819243,0.549667,0.206413,0.624042,0.130297,0.824824,0.467742,0.42414,0.659061,0.336745,0.929743,0.868568,0.228527,0.473919,0.104519,0.0804726,0.827187,0.679519,0.755292,0.341277,0.378582,0.677185,0.331903,0.325049,0.373691,0.596283,0.613278,0.221881,0.574244,0.222143,0.980872,0.32243,0.570457,0.00421768,0.495576,0.527391,0.297757,0.653134,0.264353,0.488441,0.213635,0.441541,0.785306,0.75475,0.989592,0.867281,0.0656044,0.36202,0.821839,0.348438,0.893982,0.968891,0.0994912,0.350524,0.887008,0.115571,0.0986047,0.454961,0.118639,0.0120231,0.0317811,0.21106,0.291133,0.334241,0.053426,0.75465,0.616622,0.325229,0.688422,0.536629,0.556095,0.71704,0.983193,0.589875,0.424906,0.811611,0.317576,0.723296,0.397061,0.701433,0.484864,0.503854,0.102727,0.891076,0.814954,0.461763,0.690115,0.792254,0.526287,0.615902,0.951758,0.705831,0.904667,0.903348,0.203501,0.18007,0.45843,0.504286,0.362048,0.00980031,0.0202502,0.438452,0.0640783,0.158491,0.887249,0.792043,0.940809,0.61979,0.921993,0.902023,0.240762,0.436185,0.603783,0.524226,0.748611,0.664747,0.758628,0.596706,0.233473,0.118438,0.0654297,0.052521,0.984299,0.494461,0.220699,0.884223,0.0977415,0.183883,0.924157,0.912994,0.515857,0.558331,0.0423446,0.13054,0.969293,0.625528,0.26524,0.758313,0.189114,0.373742,0.841969,0.728385,0.627094,0.675251,0.794558,0.532795,0.685077,0.840517,0.661873,0.0336967,0.120275,0.596326,0.368767,0.046206,0.495515,0.866215,0.42371,0.19757,0.965517,0.931323,0.515239,0.956603,0.768293,0.72844,0.578764,0.338507,0.689574,0.865228,0.574254,0.908189,0.396316,0.550365,0.650304,0.805963,0.0486088,0.669818,0.131599,0.731111,0.338004,0.381934,0.310959,0.69251,0.609139,0.742861,0.152132,0.736039,0.596929,0.576773,0.0816952,0.6367,0.879931,0.206566,0.697655,0.422655,0.945869,0.526322,0.274354,0.0358982,0.753053,0.120339,0.843041,0.606854,0.43267,0.376001,0.0914223,0.490222,0.534607,0.490466,0.0271241,0.25125,0.812333,0.080036,0.559044,0.962417,0.375975,0.0424081,0.708228,0.323345,0.916672,0.00162643,0.645728,0.289618,0.711537,0.731499,0.639995,0.641369,0.355973,0.50549,0.614916,0.456985,0.638366,0.0731487,0.0132954,0.616851,0.563077,0.970982,0.0754872,0.453946,0.266424,0.327989,0.877347,0.893664,0.216109,0.688095,0.920665,0.311209,0.29374,0.338,0.163895,0.129732,0.789886,0.0811559,0.712402,0.39013,0.56517,0.374185,0.416097,0.364826,0.680717,0.218151,0.931034,0.255731,0.182943,0.239833,0.388107,0.181896,0.149039,0.553715,0.716409,0.372816,0.78065,0.600332,0.610222,0.415345,0.463823,0.941974,0.790126,0.403364,0.357663,0.555655,0.885362,0.0104893,0.621359,0.85865,0.10997,0.240705,0.318711,0.955817,0.694761,0.451563,0.611596,0.63155,0.230657,0.878047,0.0261561,0.588228,0.0417477,0.156044,0.575923,0.380002,0.0110013,0.0328726,0.364296,0.0895358,0.38304,0.593501,0.204503,0.643442,0.104587,0.119656,0.775718,0.707078,0.824599,0.228851,0.842904,0.961543,0.680996,0.792953,0.0202036,0.649238,0.898001,0.450678,0.450788,0.206557,0.977214,0.264141,0.955272,|0.840611,0.133127,0.863696,0.419864,0.531234,0.0286798,0.447295,0.00374478,0.664683,0.145784,0.793825,0.198245,0.610024,0.0582549,0.496506,0.630554,0.731489,0.967526,0.485081,0.284527,0.244564,0.346462,0.256828,0.451209,0.744371,0.504328,0.268982,0.811746,0.0242801,0.554012,0.635254,0.00358474,0.754877,0.833849,0.590574,0.229146,0.924313,0.889849,0.740819,0.0513828,0.967629,0.514002,0.582783,0.539975,0.910429,0.848605,0.316635,0.882572,0.698022,0.374501,0.449108,0.897314,0.227145,0.91128,0.191822,0.593897,0.430696,0.623489,0.488636,0.222962,0.788452,0.66952,0.141773,0.994395,0.560149,0.699031,0.491572,0.28274,0.328663,0.840072,0.493537,0.180261,0.471232,0.889532,0.226754,0.257495,0.167875,0.724738,0.275266,0.35686,0.922331,0.0966792,0.670175,0.962266,0.717853,0.551851,0.756628,0.332937,0.725224,0.146689,0.728752,0.619444,0.460285,0.340538,0.00268656,0.729458,0.0899214,0.596442,0.137595,0.260178,0.309953,0.455307,0.223044,0.954199,0.1039,0.218956,0.300993,0.440165,0.630659,0.414557,0.639668,0.339184,0.648911,0.530602,0.205989,0.368988,0.3787,0.221944,0.499961,0.827723,0.835709,0.994174,0.406407,0.720497,0.105876,0.547632,0.768805,0.740936,0.306929,0.224976,0.387446,0.14147,0.39116,0.751343,0.382886,0.556019,0.570881,0.656925,0.232669,0.200794,0.908043,0.0636015,0.0954478,0.230377,0.258811,0.84154,0.674511,0.520541,0.887854,0.438458,0.969421,0.302265,0.50056,0.843361,0.543343,0.433544,0.891882,0.250664,0.153383,0.019028,0.0281143,0.668547,0.794765,0.012985,0.740999,0.793544,0.66585,0.273759,0.39185,0.221028,0.615353,0.583161,0.81911,0.645467,0.933655,0.80508,0.604908,0.381493,0.725799,0.574851,0.0264344,0.438973,0.836573,0.99271,0.442146,0.190291,0.968858,0.183094,0.862825,0.864962,0.791339,0.258433,0.340288,0.90898,0.832815,0.379441,0.59573,0.544719,0.944672,0.17444,0.707021,0.664371,0.046978,0.802139,0.418643,0.85612,0.659445,0.975542,0.191978,0.961596,0.14752,0.120355,0.742871,0.0571874,0.774176,0.57397,0.954214,0.0910487,0.35867,0.73448,0.602831,0.109796,0.0243524,0.0760269,0.503697,0.830914,0.420511,0.458614,0.613814,0.185906,0.173142,0.131731,0.711077,0.556991,0.248421,0.678622,0.700859,0.340349,0.499883,0.0846677,0.950895,0.343732,0.597043,0.234189,0.327405,0.249592,0.236194,0.984461,0.262964,0.221021,0.682768,0.957042,0.565259,0.826454,0.117134,0.332382,0.602831,0.702161,0.622924,0.455076,0.290697,0.924776,0.608658,0.751943,0.879696,0.0779406,0.612577,0.0270007,0.824513,0.453844,0.783288,0.486989,0.172916,0.149818,0.280422,0.0688166,0.249505,0.0532988,0.644972,0.532894,0.519573,0.991579,0.0669565,0.575827,0.883776,0.794411,0.316836,0.11503,0.516415,0.56742,0.630485,0.392504,0.586477,0.891558,0.140863,0.0784124,0.737643,0.776307,0.329277,0.00186312,0.110653,0.413987,0.817987,0.701655,0.530994,0.897415,0.22373,0.0789144,0.774664,0.815911,0.512256,0.0928856,0.258338,0.929399,0.02246,0.131309,0.995303,0.30602,0.271827,0.195887,0.143931,0.338795,0.0348371,0.759566,0.895014,0.0762441,0.154355,0.0439631,0.0298312,0.339692,0.198295,0.267921,0.526197,0.517495,0.888178,0.847648,0.432498,0.657631,0.606762,0.187532,0.689392,0.752144,0.614887,0.332663,0.750711,0.595499,0.98083,0.327476,0.543536,0.72627,0.091938,0.270941,0.325907,0.985783,0.0793243,0.159359,0.802446,0.984445,0.866445,0.125022,0.926806,0.323468,0.232003,0.618502,0.921281,0.488286,0.0628754,0.0280275,0.176427,0.435704,0.745539,0.785986,0.0688641,0.776706,0.539431,0.683817,0.765765,0.506669,0.895744,0.329639,0.101643,0.647539,0.484647,0.54279,0.64244,0.802279,0.888139,0.561172,0.804873,0.402802,0.308002,0.387089,0.586897,0.587079,0.744495,0.938252,0.465897,0.24834,0.23172,0.661711,0.46658,0.760325,0.696586,0.0471153,0.64937,0.370395,0.240835,0.454441,0.482566,0.505649,0.410615,0.0192934,0.499021,0.0452138,0.365223,0.933827,0.297663,0.19992,0.558602,0.433943,0.814588,0.691619,0.500391,0.19021,0.66424,0.879536,0.11942,0.644793,0.721834,0.665764,0.578107,0.0789001,0.342975,0.789026,0.336786,0.284858,0.736278,0.056685,0.354857,0.716294,0.505628,0.197472,0.39275,0.688898,0.59663,0.162301,0.688626,0.77351,0.140079,0.792652,0.84017,0.30045,0.0508229,0.176063,0.990968,0.205611,0.0984119,0.778263,0.427997,0.491002,0.290412,0.637322,0.800704,0.89563,0.378605,0.159314,0.42463,0.85998,0.88645,0.219288,0.413186,0.31294,0.476794,0.405251,0.381519,0.541595,0.457919,0.280362,0.082338,0.529492,0.511268,0.368196,0.234186,0.639312,0.715264,0.451902,0.361427,0.373088,0.430427,0.95632,0.15735,0.989011,0.10229,0.0552518,0.0135592,0.665608,0.720382,0.198892,0.735979,0.355848,0.539175,0.389949,0.898443,0.787217,0.358536,0.364896,0.0365936,0.11186,0.386994,0.592452,0.0475583,0.317622,0.487805,0.837561,0.13065,0.243502,0.289124,0.936841,0.906943,0.198244,0.52217,0.521018,0.33057,0.00681251,0.1633,0.00697863,0.796248,0.844107,0.898329,0.980023,0.878722,0.673067,0.963851,0.39438,0.707204,0.183149,0.0566458,0.570724,0.0421409,0.176151,0.992018,0.161067,0.818334,0.123097,0.732758,0.00989968,0.259109,0.887433,0.592187,0.776245,0.796681,0.394129,0.132297,0.0886835,0.442336,0.883441,0.720271,0.341479,0.496818,0.374366,0.761799,0.873853,0.664822,0.535484,0.852086,0.90783,0.920336,0.999777,0.676096,0.766568,0.00233763,0.689774,0.497248,0.216709,0.839168,0.891523,0.901037,0.847224,0.994718,0.474838,0.86274,0.814212,0.844464,0.882695,0.923898,0.162755,0.7059,0.504297,0.62396,0.404945,0.784467,0.0582594,0.844362,0.753485,0.484343,0.07804,0.758544,0.60084,0.557024,0.817646,0.180475,0.820847,0.396239,0.0679799,0.290186,0.284491,0.884779,0.459707,0.659715,0.630166,0.737346,0.761377,0.524241,0.0667449,0.598422,0.145769,0.573327,0.135467,0.809511,0.874157,0.664051,0.378163,0.500542,0.551709,0.989105,0.395812,0.778461,0.161107,0.371483,0.811155,0.763873,0.0402169,0.755015,0.817788,0.872336,0.325132,0.367944,0.676131,0.810596,0.0622473,0.292815,0.260381,0.57124,0.352481,0.797442,0.374095,0.0590121,0.735728,0.217012,0.255629,0.666821,0.729402,0.679869,0.907048,0.0680415,0.189595,0.452666,0.19155,0.804417,0.573762,0.131688,0.959471,0.283064,0.628596,0.234441,0.945278,0.65196,0.528975,0.410935,0.99959,0.738264,0.395324,0.913974,0.186669,0.172999,0.0524502,0.41347,0.0875877,0.148583,0.914197,0.473002,0.317492,0.00704396,0.93255,0.214165,0.847444,0.85644,0.909379,0.508061,0.786387,0.994381,0.322749,0.673354,0.370731,0.246131,0.0301573,0.901497,0.285327,0.270912,0.477895,0.439164,0.287805,0.65079,0.882454,0.700333,0.992642,0.892047,0.50463,0.452204,0.386665,0.349997,0.38477,0.225987,0.125209,0.601823,0.502023,0.694587,0.204745,0.950431,0.622613,0.266628,0.903235,0.115192,0.201648,0.648226,0.595485,0.509739,0.261623,0.295466,0.812812,0.980732,0.479349,0.398961,0.0879831,0.0722615,0.151971,0.436562,0.948699,0.585776,0.114777,0.733078,0.592808,0.475182,0.615449,0.000308037,0.735198,0.602473,0.884818,0.0785192,0.0103015,0.0949798,0.49809,0.120248,0.355711,0.108218,0.270778,0.810897,0.0694548,0.0741003,0.792358,0.506085,0.374112,0.64149,0.965467,0.464378,0.63271,0.0725169,0.0600714,0.167574,0.304761,0.367063,0.464894,0.812851,0.12395,0.359786,0.821125,0.782369,0.808761,0.599234,0.628643,0.525563,0.433955,0.656673,0.0965127,0.130872,0.351116,0.398648,0.434817,0.284368,0.357314,0.32498,0.957958,0.335524,0.836961,0.623003,0.15478,0.632329,0.362205,0.764972,0.81751,0.133211,0.023492,0.299584,0.687434,0.969718,0.794651,0.334974,0.302344,0.496455,0.905056,0.844951,0.094291,0.618964,0.692723,0.965234,0.548585,0.185236,0.909748,0.785314,0.819262,0.262435,0.39895,0.581362,0.700255,0.229557,0.531383,0.998545,0.478628,0.926192,0.373462,0.235406,0.906129,0.666912,0.852573,0.468047,0.653046,0.00391102,0.0409361,0.688469,0.916775,0.305666,0.0457812,0.487277,0.222195,0.314771,0.271544,0.849421,0.978547,0.155087,0.713554,0.787439,0.572024,0.30173,0.0428707,0.548938,0.0281872,0.957549,0.243955,0.216448,0.062831,0.0443577,0.292354,0.178064,0.206302,0.824105,0.507325,0.161339,0.141921,0.159828,0.6475,0.268867,0.622185,0.820549,0.43602,0.448934,0.517519,0.776605,0.128316,0.0621634,0.598617,0.991527,0.716598,0.226582,0.0719929,0.834771,0.364618,0.507528,0.338932,0.97006,0.994582,0.773948,0.713043,0.869636,0.211265,0.697579,0.252739,0.860774,0.0967442,0.49299,0.734551,0.491613,0.134031,0.782082,0.829864,0.843862,0.670145,0.495293,0.690133,0.222106,0.526481,0.398497,0.408456,0.21252,0.0624022,0.775237,0.00439346,0.484673,0.288207,0.13526,0.571368,0.0759737,0.596519,0.142528,0.526983,0.926414,0.744761,0.858537,0.673038,0.308354,0.286429,0.509603,0.08644,0.428979,0.906339,0.0902969,0.92591,0.910701,0.916602,0.234671,0.6324,0.331373,0.553819,0.623912,0.27353,0.231969,0.750851,0.596482,0.716294,0.238924,0.817028,0.31545,0.833102,0.257384,0.119254,0.681045,0.429952,0.554812,0.860488,0.0755022,0.477773,0.851873,0.729018,0.592586,0.0526176,0.927407,0.891607,0.719467,0.820363,0.194663,0.04337,0.233267,0.751621,0.639177,0.524473,0.977529,0.632544,0.611239,0.0808388,0.367444,0.808689,0.685472,0.990008,0.726181,0.028231,0.469797,0.137081,0.469012,0.422831,0.184883,0.86039,0.987516,0.851453,0.575593,0.955201,0.801181,0.00985432,0.986009,0.95523,0.647013,0.135885,|0.992041,0.942585,0.365164,0.00657392,0.205234,0.503883,0.698423,0.00526565,0.706776,0.385214,0.614062,0.438305,0.0907789,0.704061,0.17217,0.501498,0.421184,0.195719,0.720008,0.666297,0.0815877,0.0772066,0.0932806,0.481508,0.467756,0.41621,0.194677,0.505438,0.938163,0.842438,0.469481,0.406759,0.474994,0.585616,0.5312,0.0386609,0.981033,0.0270543,0.73281,0.797885,0.79107,0.660325,0.721723,0.93571,0.118654,0.91988,0.538077,0.162364,0.644857,0.846055,0.925377,0.134572,0.201902,0.988651,0.890431,0.316118,0.967762,0.490627,0.0345444,0.660943,0.74803,0.808309,0.165494,0.245365,0.884492,0.761415,0.643885,0.663919,0.961504,0.986936,0.469414,0.0715573,0.29259,0.38246,0.0103856,0.716542,0.334788,0.243795,0.227332,0.595374,0.324523,0.71226,0.19918,0.371368,0.0132222,0.505141,0.244888,0.927001,0.301731,0.596885,0.00145602,0.745753,0.628286,0.785185,0.715295,0.588456,0.662299,0.956532,0.156122,0.19166,0.064733,0.380163,0.695628,0.0500599,0.844283,0.257732,0.228019,0.715102,0.779651,0.25745,0.230939,0.563126,0.795455,0.816142,0.74146,0.190134,0.301069,0.899416,0.651433,0.0553719,0.150715,0.849242,0.842725,0.888201,0.466438,0.465222,0.310919,0.65262,0.793874,0.303865,0.482843,0.176063,0.0831711,0.418723,0.970931,0.53404,0.371203,0.988416,0.626552,0.862014,0.83617,0.519275,0.0563597,0.930751,0.187366,0.62203,0.34135,0.793238,0.510841,0.436898,0.854597,0.863958,0.311973,0.247176,0.753922,0.173939,0.151787,0.749695,0.536191,0.442143,0.432184,0.464349,0.569472,0.962947,0.393598,0.556954,0.574079,0.411121,0.635496,0.548706,0.242569,0.835327,0.358278,0.459226,0.106268,0.697663,0.261258,0.0253577,0.900724,0.845645,0.999141,0.513642,0.0182129,0.189747,0.784384,0.736994,0.282069,0.902153,0.265513,0.335332,0.938355,0.230413,0.718697,0.0198411,0.809407,0.163984,0.662633,0.0398447,0.26127,0.588088,0.960786,0.590922,0.655049,0.539641,0.584856,0.647382,0.595295,0.379681,0.0196424,0.0826418,0.851981,0.258994,0.402765,0.0588315,0.813987,0.932495,0.946636,0.922551,0.748626,0.927268,0.556495,0.488365,0.841428,0.448679,0.149533,0.873671,0.500773,0.551138,0.749814,0.733479,0.97489,0.178844,0.462644,0.839293,0.720371,0.955044,0.885509,0.704336,0.445259,0.20762,0.686951,0.0314605,0.85886,0.0064826,0.667119,0.117193,0.802813,0.718919,0.745585,0.487659,0.793192,0.846307,0.177818,0.626501,0.482504,0.0315659,0.474274,0.104976,0.737817,0.300476,0.773835,0.707812,0.189334,0.0674389,0.473599,0.889456,0.101626,0.279208,0.549348,0.553423,0.416468,0.0710287,0.165658,0.444685,0.945077,0.711175,0.69667,0.898601,0.891103,0.0712053,0.885768,0.570413,0.30569,0.512408,0.470286,0.922287,0.934539,0.401983,0.738103,0.333358,0.552122,0.0261201,0.678364,0.385989,0.869989,0.983353,0.448982,0.899566,0.27022,0.241075,0.833437,0.321402,0.319095,0.652099,0.74222,0.797701,0.261458,0.683697,0.465696,0.854765,0.658233,0.791339,0.691387,0.321297,0.923317,0.342682,0.954894,0.989496,0.17626,0.60814,0.680267,0.584221,0.34693,0.885204,0.688617,0.78299,0.301675,0.494352,0.130682,0.868793,0.876776,0.568951,0.744804,0.267757,0.630291,0.0445108,0.605777,0.875816,0.729157,0.784526,0.791672,0.602463,0.986858,0.841319,0.405733,0.00663459,0.701575,0.754752,0.495418,0.867953,0.413657,0.0711824,0.177156,0.114665,0.830298,0.362195,0.760057,0.0720069,0.725565,0.210731,0.892753,0.121086,0.531097,0.00953174,0.597078,0.818143,0.17209,0.606554,0.585823,0.211041,0.222214,0.363126,0.706249,0.904263,0.0886441,0.715191,0.609961,0.201477,0.214802,0.266721,0.57092,0.879305,0.872777,0.219469,0.992842,0.263269,0.448849,0.755937,0.599895,0.614382,0.453397,0.436854,0.761071,0.0445381,0.982807,0.251924,0.454419,0.489755,0.434586,0.54233,0.790467,0.602495,0.411462,0.419738,0.756286,0.203923,0.165297,0.848458,0.751801,0.366248,0.0828101,0.581585,0.592095,0.677268,0.743792,0.559741,0.583513,0.170452,0.737909,0.779906,0.472766,0.175161,0.999807,0.52939,0.214763,0.972295,0.841139,0.626069,0.135431,0.483445,0.643468,0.293427,0.652194,0.500511,0.902686,0.0748114,0.74754,0.450201,0.127126,0.95608,0.719587,0.788885,0.425355,0.779596,0.183458,0.798748,0.170679,0.118936,0.359976,0.827145,0.0784457,0.0315683,0.168709,0.452269,0.205266,0.176661,0.322687,0.869555,0.948453,0.358676,0.599122,0.662699,0.782689,0.0841201,0.95675,0.712509,0.606621,0.463135,0.528128,0.38596,0.0198293,0.284383,0.325287,0.355969,0.948221,0.9014,0.322957,0.732823,0.52036,0.270101,0.158717,0.860998,0.413011,0.209887,0.465958,0.477006,0.764128,0.0486182,0.469532,0.0477734,0.570571,0.973661,0.0604521,0.777221,0.877956,0.793561,0.445184,0.651899,0.298534,0.31217,0.47115,0.0930972,0.646754,0.165509,0.0106621,0.717689,0.51665,0.253817,0.41529,0.927298,0.773994,0.254274,0.605566,0.332619,0.783227,0.735099,0.816136,0.382629,0.813816,0.908248,0.772492,0.896662,0.271284,0.55333,0.586063,0.210775,0.0534733,0.415367,0.64544,0.359251,0.334755,0.812075,0.162183,0.0839573,0.229049,0.496843,0.970197,0.87693,0.8611,0.286065,0.584804,0.682276,0.642033,0.776343,0.0203626,0.0835165,0.66798,0.875411,0.468115,0.38684,0.513044,0.412885,0.648414,0.103245,0.0679258,0.691975,0.0930466,0.450385,0.822537,0.919955,0.611759,0.873939,0.874823,0.288625,0.596254,0.974459,0.582576,0.542632,0.495567,0.474501,0.108669,0.789917,0.767306,0.311483,0.702607,0.719872,0.0510368,0.171592,0.883311,0.319528,0.505302,0.730494,0.769248,0.795639,0.356503,0.83561,0.447897,0.872243,0.710099,0.974215,0.300233,0.737894,0.27282,0.0632665,0.820929,0.228998,0.207369,0.488787,0.579028,0.701664,0.815439,0.358036,0.178901,0.710572,0.0582456,0.508032,0.00519288,0.511885,0.424625,0.848194,0.0531686,0.448767,0.799944,0.301418,0.936151,0.107866,0.537315,0.304523,0.039237,0.740295,0.318044,0.796621,0.524847,0.274118,0.962313,0.143168,0.0224844,0.967446,0.0200047,0.753638,0.862895,0.0404215,0.257615,0.860094,0.148945,0.658592,0.0320965,0.153201,0.55551,0.37754,0.587983,0.640367,0.277114,0.753594,0.3871,0.559761,0.118228,0.590393,0.662044,0.287437,0.888684,0.945045,0.234155,0.58611,0.652687,0.567547,0.751557,0.162736,0.693718,0.590586,0.197769,0.927898,0.611441,0.409886,0.372138,0.558378,0.920743,0.738612,0.768647,0.256579,0.601773,0.958809,0.59985,0.506148,0.2748,0.941161,0.537983,0.736577,0.138687,0.133922,0.287537,0.6683,0.804766,0.906255,0.0834728,0.470972,0.497502,0.989006,0.0552367,0.139046,0.762147,0.399374,0.401751,0.58209,0.660132,0.600152,0.507985,0.157694,0.72334,0.110153,0.122637,0.756486,0.866351,0.850997,0.155434,0.874141,0.939956,0.804924,0.262772,0.886699,0.00187922,0.450664,0.949271,0.32698,0.0971329,0.75776,0.360366,0.425058,0.254481,0.78471,0.916817,0.588475,0.52512,0.489414,0.256709,0.907201,0.0235891,0.761725,0.701102,0.439961,0.948271,0.355184,0.373271,0.375372,0.578433,0.312852,0.769936,0.500423,0.400258,0.850175,0.402602,0.556243,0.82931,0.168014,0.719626,0.327209,0.609773,0.847804,0.278236,0.60172,0.544894,0.352723,0.740152,0.424024,0.844201,0.232102,0.48605,0.324202,0.589651,0.75685,0.386489,0.315054,0.93063,0.142817,0.0290757,0.811211,0.161943,0.957502,0.418907,0.138699,0.794002,0.21314,0.135904,0.303631,0.260625,0.193071,0.055271,0.616146,0.712231,0.455309,0.638913,0.0341339,0.968855,0.499512,0.648041,0.503688,0.907851,0.752952,0.602843,0.507227,0.879045,0.433845,0.382969,0.663465,0.844655,0.734903,0.763845,0.655941,0.139167,0.739401,0.187759,0.0984721,0.496846,0.780708,0.183085,0.195783,0.655534,0.147111,0.523851,0.992278,0.399043,0.524897,0.030148,0.351325,0.648252,0.172649,0.880576,0.28956,0.590414,0.77758,0.581183,0.347685,0.684028,0.63906,0.772747,0.563908,0.674347,0.724257,0.624186,0.806635,0.966903,0.861509,0.440168,0.746971,0.90951,0.967436,0.927159,0.211481,0.955666,0.111162,0.945202,0.951001,0.00865006,0.475661,0.636748,0.517849,0.186044,0.609827,0.787285,0.118017,0.64348,0.112302,0.051879,0.28178,0.292971,0.131219,0.0312608,0.418156,0.630602,0.182107,0.172531,0.74989,0.203618,0.552293,0.40515,0.726671,0.238606,0.876382,0.323781,0.0676708,0.392777,0.141237,0.865021,0.572153,0.771064,0.680307,0.652282,0.674296,0.666025,0.061789,0.381965,0.979694,0.965149,0.760592,0.546851,0.634518,0.686403,0.0482946,0.0218333,0.319556,0.894656,0.821057,0.109637,0.0559035,0.866898,0.499982,0.877347,0.521581,0.918082,0.854202,0.00349039,0.549337,0.395002,0.629659,0.465203,0.367229,0.588045,0.966483,0.920254,0.368786,0.461781,0.376979,0.0607526,0.846405,0.299208,0.404997,0.859734,0.518134,0.122523,0.609065,0.652628,0.842434,0.703701,0.987108,0.00235045,0.949904,0.678402,0.99456,0.280588,0.241644,0.857145,0.43053,0.389205,0.880727,0.813966,0.921993,0.100215,0.616798,0.996599,0.977876,0.143857,0.975677,0.813626,0.390719,0.827784,0.998643,0.0593113,0.415107,0.928677,0.0654171,0.154468,0.499328,0.661989,0.544426,0.591951,0.203606,0.71633,0.504828,0.502938,0.0746203,0.215383,0.0387118,0.817018,0.673212,0.142372,0.280571,0.839252,0.822342,0.839071,0.0969494,0.270063,0.515274,0.319666,0.806664,0.946107,0.726936,0.441915,0.0691101,0.637726,0.421557,0.928413,0.0546404,0.318808,0.589681,0.687391,0.245911,0.177547,0.955579,0.0567814,0.147632,0.890873,0.473998,0.322912,0.376676,0.767404,0.207569,0.174239,0.129086,0.541505,0.750866,|0.415478,0.0975847,0.484658,0.64456,0.858443,0.0659956,0.753837,0.0937968,0.405542,0.38651,0.325889,0.0593112,0.775274,0.445079,0.397831,0.307069,0.221826,0.0716701,0.984944,0.141146,0.0807481,0.0778238,0.128741,0.20373,0.149601,0.872637,0.652034,0.756849,0.21917,0.180736,0.695117,0.83388,0.0474913,0.752482,0.855093,0.924062,0.675386,0.511435,0.56758,0.262106,0.130671,0.84117,0.205037,0.0281916,0.308265,0.0310459,0.791234,0.0196724,0.00855839,0.684784,0.321944,0.728484,0.572645,0.98038,0.272519,0.872781,0.233177,0.463364,0.682835,0.75528,0.684728,0.755402,0.545639,0.680643,0.232883,0.63613,0.108724,0.345458,0.480996,0.810925,0.744939,0.414646,0.744863,0.972902,0.235102,0.901721,0.468705,0.555693,0.16725,0.591935,0.917779,0.883777,0.42054,0.662317,0.575594,0.347443,0.24493,0.561792,0.69777,0.447271,0.602147,0.45202,0.607495,0.40227,0.389685,0.571352,0.0707262,0.499736,0.16391,0.592662,0.529135,0.140219,0.821364,0.6416,0.569033,0.148528,0.0124967,0.396759,0.627752,0.805434,0.84888,0.51146,0.499779,0.340058,0.542157,0.08949,0.137359,0.250957,0.918875,0.917686,0.455461,0.603551,0.839223,0.0400525,0.933417,0.860972,0.130516,0.132113,0.937367,0.979029,0.971209,0.598626,0.787396,0.0974665,0.59708,0.244996,0.792809,0.443636,0.222204,0.0768969,0.357551,0.437482,0.911538,0.0118875,0.308405,0.0676994,0.0974422,0.522606,0.801941,0.836513,0.260618,0.608974,0.033004,0.584444,0.526505,0.0800716,0.168324,0.78354,0.25112,0.326569,0.699909,0.0476416,0.217243,0.874963,0.510265,0.204202,0.523608,0.413325,0.890465,0.672881,0.367978,0.904309,0.772587,0.407856,0.0684878,0.407426,0.386878,0.192599,0.959499,0.827318,0.148968,0.0111098,0.560019,0.756185,0.291928,0.567396,0.384272,0.871642,0.791817,0.0964975,0.0012514,0.254639,0.313762,0.200016,0.988279,0.653346,0.225298,0.784928,0.450702,0.526355,0.592824,0.243087,0.881225,0.680926,0.634186,0.0212683,0.0821623,0.882363,0.502723,0.681147,0.899313,0.257297,0.63321,0.699592,0.303313,0.261064,0.451302,0.650119,0.453632,0.485733,0.224875,0.302325,0.406426,0.797341,0.697611,0.950942,0.814091,0.137078,0.16803,0.705899,0.515775,0.584996,0.109926,0.032183,0.153632,0.826761,0.0324709,0.710961,0.478753,0.412915,0.570609,0.0775594,0.821226,0.980704,0.44584,0.381527,0.970261,0.347047,0.197226,0.47797,0.86367,0.0288076,0.899846,0.0981583,0.214544,0.595689,0.0649892,0.491723,0.476977,0.384191,0.286478,0.413594,0.775712,0.550543,0.932421,0.884988,0.486097,0.897624,0.640386,0.500741,0.954597,0.868998,0.731105,0.951613,0.74984,0.325062,0.677016,0.184131,0.0104041,0.903128,0.149731,0.0727811,0.352962,0.25796,0.0243685,0.619517,0.569018,0.820001,0.300255,0.997416,0.712846,0.611042,0.0614542,0.668717,0.885565,0.0226968,0.415758,0.989611,0.380964,0.304383,0.881004,0.350425,0.660298,0.684431,0.272035,0.464558,0.90731,0.116639,0.254337,0.635585,0.00555414,0.973848,0.619821,0.0557953,0.916012,0.0268173,0.203124,0.203281,0.536172,0.127055,0.913344,0.704205,0.602641,0.719244,0.507826,0.14001,0.499649,0.392841,0.875539,0.248865,0.790873,0.760012,0.641901,0.476621,0.203306,0.966353,0.808449,0.129116,0.435713,0.74268,0.814545,0.83366,0.826044,0.953783,0.951391,0.908841,0.253214,0.17507,0.455408,0.66394,0.504729,0.462723,0.10611,0.651071,0.24133,0.768148,0.271369,0.391747,0.71359,0.425929,0.489354,0.265478,0.315338,0.0167161,0.331871,0.96531,0.111631,0.139761,0.921927,0.305511,0.619128,0.0583751,0.479361,0.454684,0.378889,0.063499,0.493168,0.489746,0.178249,0.143958,0.146519,0.742342,0.612353,0.959033,0.806004,0.719603,0.72102,0.319664,0.167505,0.308385,0.266023,0.734496,0.488618,0.999816,0.246408,0.103611,0.856207,0.681779,0.832911,0.696668,0.292939,0.409329,0.954817,0.192055,0.939534,0.335642,0.930795,0.698254,0.0752683,0.667079,0.42685,0.163107,0.838355,0.688975,0.213403,0.796681,0.0760464,0.168529,0.696022,0.708816,0.940394,0.657799,0.915784,0.18125,0.194753,0.441323,0.772882,0.711995,0.792429,0.936137,0.0544378,0.583614,0.994667,0.0225627,0.766613,0.721345,0.99524,0.979043,0.665656,0.589723,0.949698,0.846505,0.687502,0.462604,0.226444,0.331491,0.178425,0.0711564,0.662642,0.477151,0.0583012,0.12946,0.147135,0.740458,0.359887,0.374943,0.178498,0.175863,0.226486,0.595221,0.486313,0.309965,0.139953,0.116749,0.230993,0.383234,0.925907,0.454619,0.466873,0.914313,0.567726,0.576311,0.124508,0.580048,0.225016,0.226118,0.215739,0.369972,0.836551,0.23394,0.552022,0.572582,0.694485,0.510996,0.986107,0.976251,0.974108,0.701272,0.637152,0.0351739,0.595967,0.0140101,0.955568,0.448802,0.119382,0.206326,0.549482,0.905304,0.587139,0.49684,0.31555,0.157538,0.703951,0.3189,0.500434,0.815929,0.469798,0.917334,0.550959,0.436515,0.472702,0.0447035,0.202152,0.978415,0.594292,0.634244,0.0605588,0.931021,0.489989,0.804279,0.613769,0.114194,0.0604412,0.362256,0.293463,0.00304216,0.268584,0.0438251,0.290956,0.64657,0.0239201,0.316954,0.772456,0.805951,0.487995,0.91008,0.753638,0.869449,0.258763,0.800153,0.633518,0.404585,0.603496,0.852385,0.28255,0.815626,0.589297,0.433227,0.858841,0.843739,0.44581,0.170621,0.905154,0.549336,0.843838,0.334488,0.63875,0.724598,0.0100647,0.595682,0.70245,0.802621,0.885123,0.0204561,0.601797,0.747467,0.0857714,0.517424,0.234126,0.208668,0.790615,0.223496,0.958175,0.812655,0.733187,0.408037,0.347051,0.864764,0.471646,0.909354,0.896687,0.714305,0.690517,0.458276,0.10271,0.860598,0.902458,0.490991,0.114273,0.519596,0.460325,0.340772,0.456443,0.938161,0.143164,0.0467213,0.404379,0.0252883,0.649508,0.368942,0.554051,0.924815,0.687814,0.39106,0.675864,0.677226,0.856639,0.167627,0.540944,0.646015,0.0446677,0.836683,0.665189,0.82188,0.00918525,0.720754,0.55292,0.738405,0.936566,0.890252,0.395477,0.937081,0.13928,0.623878,0.428347,0.944634,0.880315,0.279658,0.763373,0.412037,0.0321088,0.26646,0.625974,0.989863,0.822656,0.528153,0.867361,0.169901,0.150935,0.633333,0.242616,0.681692,0.58164,0.362977,0.67714,0.300097,0.47829,0.402015,0.180518,0.771863,0.664385,0.0965207,0.0422362,0.405762,0.200134,0.307021,0.843695,0.0934126,0.561397,0.58058,0.990031,0.770292,0.123573,0.806826,0.53489,0.0400152,0.451908,0.269013,0.840314,0.199627,0.708536,0.0754593,0.408232,0.192944,0.111003,0.291883,0.634819,0.98552,0.315224,0.302205,0.845346,0.76836,0.891486,0.517765,0.812898,0.960952,0.0748516,0.653706,0.0113688,0.00801092,0.792437,0.971063,0.351994,0.365077,0.165864,0.374476,0.0634677,0.960732,0.603498,0.523195,0.361513,0.267739,0.556311,0.575757,0.363837,0.262479,0.496273,0.091644,0.801783,0.00515234,0.819702,0.0326924,0.99214,0.461597,0.0552974,0.685299,0.656787,0.960262,0.896396,0.73686,0.916069,0.76256,0.0943042,0.639451,0.622206,0.28793,0.489336,0.0376962,0.545569,0.81553,0.13311,0.787896,0.472938,0.313351,0.993749,0.582342,0.339163,0.725538,0.221094,0.397598,0.164544,0.0481455,0.939505,0.63804,0.927909,0.0136699,0.932574,0.988717,0.362643,0.574203,0.976386,0.313354,0.656447,0.992538,0.458836,0.73533,0.159744,0.0259797,0.148417,0.21534,0.770308,0.0279104,0.830531,0.307826,0.267209,0.479398,0.659651,0.332659,0.469924,0.144329,0.639159,0.247827,0.445976,0.760376,0.837926,0.756297,0.880431,0.197019,0.988756,0.274632,0.616103,0.503436,0.538379,0.943184,0.781466,0.0838272,0.00263387,0.00604796,0.868651,0.571821,0.860765,0.709941,0.834885,0.0341212,0.853549,0.553698,0.239814,0.199026,0.0844316,0.409058,0.0491543,0.812587,0.692985,0.110434,0.549414,0.5441,0.27639,0.823518,0.643303,0.955621,0.130095,0.228141,0.185471,0.253163,0.0859438,0.466,0.050245,0.466128,0.571076,0.0707134,0.138424,0.580275,0.364537,0.509661,0.496589,0.854944,0.400833,0.201313,0.255775,0.249749,0.0321979,0.251292,0.93346,0.956961,0.0216759,0.175991,0.55476,0.653931,0.215663,0.821339,0.766123,0.70185,0.925484,0.0480286,0.549855,0.706212,0.512206,0.217143,0.0914651,0.325213,0.370168,0.625914,0.651221,0.616433,0.675901,0.306672,0.658273,0.408036,0.0947923,0.456454,0.912716,0.165144,0.510551,0.975897,0.782833,0.641697,0.279305,0.418255,0.411131,0.848153,0.834299,0.791149,0.134905,0.2304,0.15623,0.919116,0.739458,0.912877,0.886559,0.136401,0.735934,0.922291,0.899286,0.333056,0.636147,0.686235,0.77729,0.0592105,0.274141,0.063264,0.211129,0.320643,0.791246,0.192639,0.460589,0.816661,0.426476,0.375552,0.461778,0.116359,0.708285,0.922704,0.0818815,0.0647282,0.950689,0.721862,0.00607723,0.433257,0.252925,0.0710666,0.24747,0.68418,0.322499,0.299118,0.720778,0.332364,0.507432,0.756568,0.81055,0.135476,0.916252,0.0109515,0.00207376,0.355989,0.814154,0.250736,0.651303,0.0867985,0.327987,0.645747,0.326219,0.460138,0.939918,0.22843,0.687717,0.455956,0.749184,0.105026,0.0356446,0.366017,0.00930583,0.908533,0.504791,0.684241,0.323815,0.178042,0.507269,0.732407,0.777492,0.634277,0.0309524,0.0380877,0.649251,0.333943,0.633762,0.642799,0.506784,0.903753,0.427961,0.684946,0.142767,0.225261,0.25324,0.410415,0.899632,0.59904,0.00284803,0.513002,0.207291,0.13357,0.136982,0.336933,0.692493,0.414609,0.574746,0.71821,0.231584,0.385482,0.476094,0.30496,0.99934,0.22678,0.737697,0.401678,0.00796944,0.310757,0.460489,0.186994,0.674511,0.275987,0.415332,0.442906,0.672874,0.464277,0.644056,0.647902,0.628783,0.674007,0.89619,0.954699,|0.629575,0.918231,0.330429,0.751313,0.79562,0.340017,0.753561,0.651551,0.329855,0.747764,0.326978,0.48624,0.269194,0.775059,0.664785,0.817637,0.338518,0.847974,0.961826,0.580749,0.527041,0.194949,0.0521665,0.743647,0.683303,0.687389,0.0262803,0.887355,0.0789735,0.542226,0.705663,0.75872,0.0499187,0.141875,0.248828,0.143122,0.250794,0.659324,0.669813,0.0109571,0.0795534,0.713638,0.293695,0.591272,0.199832,0.830228,0.281436,0.667825,0.27866,0.424219,0.504875,0.698344,0.912607,0.403103,0.00199199,0.600643,0.852456,0.00115454,0.193209,0.808209,0.923147,0.0707179,0.468588,0.426864,0.828535,0.46448,0.0753067,0.301211,0.319134,0.808574,0.418171,0.274913,0.215346,0.324945,0.695646,0.399628,0.984405,0.0111455,0.671659,0.625513,0.807731,0.0403445,0.997196,0.408052,0.655712,0.385018,0.166283,0.367423,0.292903,0.620933,0.0890649,0.855939,0.456478,0.750466,0.393957,0.609789,0.524223,0.471783,0.244282,0.318214,0.723452,0.479508,0.181734,0.391753,0.756585,0.823498,0.135077,0.178649,0.157122,0.591586,0.231605,0.611977,0.258261,0.34079,0.16435,0.383261,0.595876,0.146931,0.523269,0.668845,0.256841,0.52912,0.224289,0.719264,0.863157,0.412518,0.272595,0.235926,0.881217,0.240362,0.401263,0.744659,0.600437,0.0891165,0.388508,0.405852,0.0511876,0.868071,0.974865,0.0702306,0.864752,0.198312,0.736782,0.58647,0.118823,0.639379,0.51033,0.397965,0.44084,0.291021,0.00971794,0.281176,0.535696,0.969834,0.261129,0.173381,0.630263,0.166721,0.100993,0.381993,0.758511,0.786465,0.472477,0.434768,0.0770576,0.103691,0.501603,0.331415,0.00508225,0.131433,0.0259868,0.364331,0.327488,0.0636005,0.651227,0.771453,0.98002,0.810224,0.000530481,0.278731,0.325693,0.518564,0.94434,0.200447,0.440682,0.313678,0.739542,0.429136,0.906181,0.338994,0.923651,0.512502,0.697113,0.0757724,0.870488,0.277346,0.0747267,0.130072,0.0139934,0.198132,0.482802,0.760625,0.543692,0.733231,0.870949,0.931015,0.125879,0.858038,0.377999,0.533761,0.757093,0.593164,0.515776,0.933832,0.97051,0.147611,0.974607,0.942659,0.358439,0.41975,0.254998,0.0297847,0.596707,0.328676,0.509051,0.635947,0.592145,0.249968,0.481354,0.588584,0.871349,0.41403,0.0913412,0.638963,0.66414,0.342201,0.353747,0.226815,0.115849,0.537418,0.896152,0.0864918,0.659065,0.547959,0.717611,0.936346,0.20756,0.771866,0.285853,0.831727,0.181226,0.862842,0.188027,0.178126,0.604248,0.450199,0.561886,0.0335876,0.902042,0.3487,0.698015,0.0510616,0.282933,0.343257,0.737651,0.343346,0.404866,0.700589,0.505172,0.00917917,0.516679,0.0687043,0.576251,0.980981,0.894388,0.557983,0.243409,0.115569,0.196133,0.0923158,0.118848,0.0666168,0.822995,0.248227,0.287645,0.354101,0.277331,0.508145,0.691558,0.741308,0.848468,0.0775474,0.536764,0.412729,0.480618,0.590727,0.346803,0.330622,0.0381671,0.134994,0.645293,0.374881,0.38044,0.0862902,0.0990563,0.129966,0.594147,0.591923,0.717474,0.569964,0.0263809,0.417579,0.0793532,0.898212,0.483229,0.326735,0.368802,0.234104,0.972735,0.31788,0.576303,0.63414,0.106438,0.749835,0.903881,0.530631,0.394931,0.659227,0.50241,0.601533,0.459762,0.419748,0.974623,0.416754,0.598704,0.617201,0.232762,0.588602,0.793576,0.481977,0.964539,0.70461,0.303689,0.208029,0.964182,0.53338,0.924251,0.355709,0.22585,0.901944,0.40858,0.915993,0.874956,0.0573518,0.922913,0.00904888,0.927495,0.371609,0.276374,0.625172,0.621901,0.149237,0.592154,0.82101,0.120614,0.101595,0.287915,0.232513,0.083883,0.655534,0.0862622,0.557392,0.873517,0.849757,0.585127,0.387749,0.212047,0.621874,0.149562,0.157929,0.3082,0.669321,0.225635,0.165517,0.489889,0.917288,0.0389026,0.289983,0.875554,0.247106,0.850101,0.0788147,0.0424691,0.830233,0.976607,0.526093,0.884776,0.431234,0.916708,0.772119,0.675384,0.140281,0.460164,0.13477,0.100296,0.604851,0.184322,0.588669,0.0246786,0.825167,0.133054,0.597931,0.875499,0.866135,0.508407,0.423335,0.275668,0.683791,0.350625,0.105899,0.267757,0.312414,0.191249,0.586232,0.0199711,0.65172,0.551238,0.692553,0.545855,0.642004,0.339916,0.743451,0.544426,0.661868,0.29137,0.713126,0.0656135,0.441018,0.0130832,0.943218,0.12078,0.184723,0.0591475,0.43849,0.889651,0.592081,0.401053,0.536217,0.00610751,0.75267,0.129191,0.453087,0.850442,0.630903,0.734939,0.583026,0.804137,0.397767,0.00924188,0.388756,0.158442,0.688656,0.524203,0.486937,0.470315,0.349814,0.737732,0.20331,0.49864,0.485307,0.405801,0.10751,0.891989,0.179757,0.983972,0.0961432,0.265454,0.442002,0.856386,0.431507,0.188245,0.597034,0.012119,0.374186,0.568115,0.560434,0.139685,0.0439084,0.0353539,0.109018,0.47892,0.185223,0.428991,0.188703,0.680568,0.220906,0.438273,0.514242,0.315121,0.00279468,0.690042,0.203809,0.775183,0.331905,0.275988,0.375975,0.0517414,0.410277,0.279921,0.379037,0.32713,0.838776,0.0480336,0.594563,0.0441739,0.717412,0.124948,0.276534,0.213422,0.344154,0.00056529,0.767052,0.270098,0.258048,0.0103735,0.959963,0.662465,0.620951,0.0857127,0.898825,0.427258,0.855677,0.75051,0.635766,0.609922,0.802347,0.559214,0.371146,0.701623,0.441031,0.648295,0.747692,0.324348,0.639939,0.767027,0.25758,0.967938,0.306432,0.500509,0.273144,0.110542,0.355548,0.336143,0.487226,0.125443,0.81068,0.725668,0.699879,0.885127,0.210463,0.660996,0.581381,0.454254,0.109798,0.57966,0.53615,0.196481,0.159868,0.791829,0.568986,0.725361,0.391562,0.787806,0.671385,0.350115,0.881347,0.989163,0.532761,0.761529,0.867639,0.0736493,0.191069,0.283457,0.1835,0.37493,0.23971,0.622622,0.386554,0.512874,0.848113,0.414984,0.483478,0.714528,0.406966,0.0115964,0.0221526,0.133551,0.810104,0.226114,0.00806141,0.493922,0.987596,0.524745,0.00396955,0.837884,0.716269,0.029741,0.40374,0.643353,0.854298,0.926308,0.0128483,0.270064,0.280974,0.113686,0.337062,0.256608,0.0709521,0.14299,0.0684779,0.0874833,0.835495,0.63677,0.197013,0.71231,0.878708,0.427328,0.670811,0.822954,0.456816,0.415409,0.500983,0.35739,0.361152,0.544627,0.997263,0.882615,0.12509,0.154002,0.244774,0.437151,0.106619,0.075027,0.78684,0.5338,0.494868,0.71891,0.571177,0.91446,0.86893,0.719039,0.648875,0.838437,0.916754,0.152823,0.208776,0.000813007,0.929836,0.647412,0.99406,0.120615,0.170874,0.244834,0.644518,0.245275,0.034672,0.96548,0.847819,0.6761,0.924533,0.609352,0.870706,0.515333,0.515715,0.557694,0.746553,0.0745962,0.605631,0.659779,0.633335,0.989781,0.300053,0.87088,0.632538,0.606903,0.808122,0.739306,0.418911,0.510825,0.906176,0.792758,0.639425,0.204564,0.35829,0.900034,0.252498,0.493896,0.869008,0.332044,0.745184,0.0255296,0.543131,0.475066,0.286811,0.0710714,0.49683,0.729369,0.210469,0.277891,0.951221,0.342802,0.494594,0.566589,0.155792,0.822654,0.314307,0.313765,0.883887,0.521061,0.557712,0.962979,0.399089,0.703244,0.777153,0.693175,0.610393,0.254854,0.225448,0.484493,0.41646,0.215364,0.970997,0.60814,0.836825,0.0849437,0.505887,0.716724,0.53199,0.441445,0.603794,0.809205,0.334467,0.677664,0.220229,0.915132,0.489946,0.7034,0.219943,0.223122,0.0844076,0.282771,0.180911,0.656873,0.829116,0.542259,0.575741,0.920191,0.872483,0.842014,0.896177,0.699202,0.374525,0.734567,0.633931,0.0485379,0.100581,0.877184,0.657608,0.137114,0.780399,0.815995,0.751306,0.774269,0.067764,0.14149,0.221618,0.899363,0.956366,0.323371,0.152807,0.373343,0.964173,0.941075,0.462768,0.326306,0.313086,0.934381,0.132031,0.27933,0.618299,0.620102,0.261086,0.486741,0.634866,0.913911,0.0737321,0.643379,0.501701,0.266983,0.827809,0.137722,0.924861,0.945633,0.936373,0.62793,0.777684,0.423577,0.418087,0.972774,0.686416,0.39587,0.657286,0.938713,0.348507,0.95663,0.936704,0.540167,0.161574,0.300012,0.120984,0.0792262,0.983625,0.260861,0.764846,0.595716,0.381082,0.725395,0.290424,0.609412,0.0183348,0.799411,0.14839,0.253661,0.98091,0.0795464,0.571117,0.890096,0.711169,0.67416,0.352183,0.337497,0.418053,0.839046,0.221214,0.142753,0.734762,0.778588,0.645823,0.971669,0.445773,0.562167,0.873941,0.667682,0.928038,0.907006,0.897801,0.180682,0.193197,0.0255655,0.153713,0.145919,0.0279152,0.364327,0.446117,0.0133873,0.154531,0.840328,0.0866179,0.269481,0.192806,0.683626,0.887792,0.632704,0.679612,0.354106,0.899225,0.133974,0.261205,0.607289,0.346006,0.828261,0.305949,0.13212,0.449591,0.106212,0.653791,0.150983,0.772353,0.480168,0.0962474,0.700734,0.540037,0.352532,0.00990897,0.736124,0.653773,0.350823,0.557726,0.69955,0.51271,0.230622,0.822524,0.339945,0.110862,0.639387,0.106277,0.0161319,0.466655,0.615465,0.319498,0.0125511,0.888865,0.894394,0.169407,0.474308,0.466987,0.191741,0.378325,0.999814,0.726612,0.45098,0.00217146,0.654741,0.849212,0.626905,0.593289,0.764216,0.0511112,0.570402,0.987738,0.192176,0.129306,0.927499,0.0608096,0.491543,0.791788,0.507708,0.938031,0.612485,0.582689,0.583927,0.674966,0.143971,0.753157,0.811842,0.906174,0.0868573,0.586297,0.570689,0.122188,0.722567,0.933066,0.729395,0.0843534,0.976317,0.145617,0.543248,0.046084,0.995077,0.336515,0.38688,0.817049,0.550892,0.431779,0.0511752,0.0813233,0.923523,0.975926,0.71469,0.0830329,0.265309,0.295399,0.945267,0.639183,0.384136,0.0624672,0.815497,0.950007,0.362914,0.944189,0.0526831,0.206457,0.0900796,0.448757,0.972501,0.301663,0.283891,0.977801,0.0865371,0.278262,0.35932,0.351492,0.0413348,0.817902,0.436902,0.448803,0.723001,0.628632,0.271721,0.182186,|0.105987,0.306221,0.641974,0.225963,0.068542,0.467569,0.633041,0.0690864,0.938511,0.757188,0.558899,0.564558,0.872731,0.00722063,0.681281,0.746692,0.654815,0.176921,0.563638,0.295557,0.522787,0.128276,0.651783,0.492551,0.64604,0.314534,0.211155,0.966472,0.0661011,0.800596,0.337781,0.18982,0.598329,0.84913,0.258961,0.396624,0.567458,0.731266,0.641584,0.884852,0.740434,0.0771844,0.176117,0.989701,0.594675,0.856073,0.666904,0.179674,0.0177187,0.0107685,0.191658,0.987038,0.848586,0.828694,0.722276,0.0309673,0.183994,0.727911,0.577849,0.734269,0.312429,0.938655,0.640891,0.88331,0.465392,0.621418,0.325725,0.845175,0.0382001,0.192099,0.174709,0.93203,0.637126,0.363795,0.401371,0.349574,0.0192128,0.913141,0.817515,0.659739,0.564862,0.0339173,0.711761,0.407364,0.361406,0.259777,0.0647242,0.740766,0.488594,0.730103,0.436496,0.847256,0.523045,0.127138,0.667764,0.403189,0.574989,0.797906,0.822463,0.715388,0.986853,0.500299,0.248522,0.141674,0.739728,0.848885,0.5681,0.782314,0.91995,0.128464,0.14057,0.254,0.692785,0.857027,0.555459,0.913555,0.286752,0.678309,0.350163,0.826257,0.697881,0.206954,0.389524,0.99905,0.968545,0.342396,0.599726,0.34243,0.677511,0.381261,0.396591,0.188513,0.785231,0.314186,0.994234,0.602143,0.552302,0.637722,0.804199,0.907631,0.095787,0.284144,0.176482,0.518533,0.379318,0.896373,0.721529,0.871187,0.0439843,0.449398,0.933138,0.324702,0.204036,0.483599,0.542108,0.775472,0.737761,0.926595,0.382969,0.29894,0.22889,0.500741,0.119321,0.0297424,0.389458,0.336066,0.789877,0.247465,0.0685163,0.930835,0.896269,0.151621,0.693954,0.362084,0.644776,0.0599325,0.597655,0.405728,0.588096,0.101907,0.952643,0.360839,0.200433,0.89688,0.829225,0.240151,0.0941245,0.0334579,0.467392,0.256097,0.477151,0.747983,0.129673,0.834497,0.76931,0.273845,0.104551,0.110425,0.336526,0.0976171,0.446948,0.31076,0.897732,0.279092,0.698025,0.0854278,0.466799,0.714954,0.796404,0.524692,0.691473,0.00734758,0.419444,0.326106,0.0272459,0.928361,0.0305947,0.991159,0.791716,0.734053,0.742795,0.614307,0.943462,0.166815,0.774505,0.479288,0.379416,0.440807,0.72311,0.113544,0.677608,0.669427,0.283656,0.438841,0.473784,0.463926,0.593103,0.8102,0.971241,0.358931,0.397888,0.876695,0.599341,0.408942,0.861088,0.686481,0.424857,0.142361,0.578114,0.139654,0.524824,0.560692,0.860194,0.783041,0.511257,0.111712,0.433551,0.475639,0.788811,0.652954,0.134136,0.581748,0.461134,0.372232,0.532993,0.476837,0.176932,0.256009,0.428525,0.844719,0.118324,0.868245,0.536671,0.854579,0.754134,0.00344288,0.622048,0.170926,0.0322423,0.791693,0.0175846,0.881041,0.277457,0.0449389,0.423632,0.108484,0.159016,0.445434,0.303231,0.0285457,0.767118,0.709106,0.961587,0.569754,0.839347,0.916918,0.756679,0.0286382,0.542372,0.259371,0.321653,0.410499,0.676217,0.097982,0.386108,0.821304,0.8761,0.690774,0.341898,0.248824,0.128479,0.175926,0.395685,0.157923,0.0146559,0.979168,0.224211,0.681629,0.824097,0.13405,0.598865,0.55063,0.297526,0.421068,0.817802,0.688008,0.945856,0.765739,0.761737,0.286374,0.433833,0.687651,0.511168,0.282484,0.426705,0.0868784,0.57871,0.145594,0.944246,0.845423,0.539119,0.12727,0.950903,0.0868952,0.688626,0.260559,0.203889,0.915964,0.601496,0.251959,0.206589,0.370352,0.867981,0.821731,0.991337,0.366192,0.225508,0.14373,0.908525,0.547349,0.575078,0.24131,0.801699,0.605818,0.71145,0.99237,0.388543,0.999307,0.698456,0.438077,0.240913,0.925721,0.777756,0.897254,0.614927,0.589614,0.22797,0.551432,0.419023,0.753172,0.690583,0.927846,0.277314,0.0456143,0.609162,0.662519,0.177483,0.399653,0.1732,0.547551,0.642703,0.943803,0.539362,0.338425,0.131567,0.253474,0.786442,0.735392,0.919752,0.0256211,0.963,0.928948,0.072574,0.660736,0.720998,0.408544,0.31055,0.127689,0.358669,0.942162,0.831581,0.277692,0.578613,0.852401,0.830758,0.940528,0.612389,0.0539582,0.479871,0.587153,0.38795,0.112377,0.357914,0.0983967,0.543675,0.0646964,0.776511,0.74716,0.914739,0.582386,0.00144386,0.959166,0.665193,0.367474,0.220626,0.351022,0.0225824,0.65015,0.157915,0.453184,0.293319,0.404258,0.96718,0.403569,0.980182,0.744694,0.255908,0.955322,0.17987,0.09991,0.806201,0.438301,0.0691707,0.32134,0.813459,0.690482,0.104332,0.650936,0.438654,0.482813,0.0236594,0.270563,0.344023,0.40752,0.745601,0.285246,0.282977,0.387692,0.0871744,0.821801,0.0493535,0.0234105,0.304133,0.0294106,0.813771,0.140579,0.232191,0.688798,0.294831,0.102941,0.545726,0.783127,0.128088,0.430577,0.518363,0.625705,0.0264293,0.718741,0.564558,0.658975,0.549799,0.167088,0.42071,0.898716,0.543873,0.587695,0.0101042,0.448893,0.294652,0.171047,0.436525,0.126526,0.50377,0.659027,0.1537,0.460543,0.564199,0.942734,0.337747,0.183657,0.754562,0.521912,0.682115,0.069299,0.834698,0.676162,0.711653,0.585917,0.680194,0.870154,0.730418,0.164186,0.284317,0.018348,0.437629,0.891024,0.386405,0.462707,0.592249,0.57517,0.857197,0.583011,0.622777,0.500713,0.694963,0.00329912,0.212124,0.24141,0.444102,0.893,0.793272,0.294116,0.100179,0.0225295,0.887289,0.746185,0.145353,0.806137,0.438086,0.734994,0.951015,0.799048,0.27039,0.66207,0.140169,0.726423,0.836191,0.0352309,0.183529,0.138973,0.262742,0.551615,0.748484,0.55642,0.608053,0.459245,0.426383,0.284852,0.401221,0.00485301,0.721822,0.912564,0.138439,0.980003,0.189769,0.611971,0.269532,0.238965,0.465364,0.165916,0.844413,0.747221,0.0611538,0.397405,0.0620843,0.544046,0.710869,0.227248,0.699641,0.410496,0.947135,0.185979,0.338383,0.802065,0.36331,0.544191,0.723895,0.777465,0.52586,0.441527,0.0195852,0.362689,0.755101,0.307303,0.61048,0.617349,0.0560421,0.647948,0.300194,0.724003,0.00422746,0.8166,0.0574011,0.145798,0.857917,0.825062,0.0712116,0.165225,0.368624,0.17464,0.460983,0.0894974,0.343007,0.139985,0.454897,0.513496,0.277232,0.201466,0.240346,0.907397,0.160038,0.0010612,0.0587124,0.923608,0.123025,0.949237,0.0240299,0.314812,0.0811357,0.0718507,0.63437,0.878757,0.402101,0.59784,0.672644,0.125862,0.802169,0.362568,0.445108,0.0522195,0.821199,0.981174,0.126837,0.936862,0.950644,0.822477,0.823312,0.876476,0.181545,0.380293,0.0209309,0.214768,0.976448,0.0820791,0.201555,0.35245,0.367536,0.982922,0.375008,0.886763,0.00496835,0.707328,0.183582,0.735617,0.836492,0.852804,0.0800897,0.387884,0.57442,0.535689,0.878798,0.104321,0.902138,0.936454,0.424626,0.501102,0.715717,0.380525,0.388146,0.699253,0.238983,0.464793,0.632272,0.456472,0.270649,0.409246,0.0650973,0.463299,0.744322,0.734294,0.719156,0.834139,0.37543,0.981059,0.831056,0.662845,0.834431,0.644376,0.832379,0.0529609,0.984066,0.457696,0.616525,0.679831,0.897661,0.886984,0.859909,0.652318,0.3449,0.889892,0.682671,0.448874,0.413488,0.678054,0.825277,0.283733,0.32429,0.518103,0.427213,0.501837,0.598378,0.0329606,0.963561,0.0320803,0.828804,0.367909,0.188252,0.992988,0.290926,0.909314,0.467741,0.280806,0.716186,0.000509739,0.780185,0.718836,0.534613,0.558717,0.532187,0.187395,0.372736,0.309533,0.0673971,0.571357,0.248771,0.902405,0.115488,0.697664,0.0985636,0.334237,0.115443,0.640308,0.241398,0.225259,0.34498,0.525528,0.19912,0.038476,0.31832,0.413962,0.496251,0.55933,0.405705,0.230048,0.49503,0.672288,0.841428,0.441116,0.860911,0.0647193,0.989253,0.926769,0.814074,0.0721602,0.353281,0.217817,0.449006,0.0847638,0.143865,0.240692,0.470591,0.189935,0.0335891,0.142603,0.350779,0.430633,0.397827,0.211325,0.236041,0.46658,0.968638,0.323295,0.130179,0.252504,0.468185,0.517985,0.202731,0.704939,0.0315502,0.597883,0.422377,0.598975,0.0863465,0.00978458,0.403625,0.0446467,0.561891,0.705382,0.375563,0.0252686,0.165077,0.130002,0.62494,0.837738,0.933245,0.527941,0.835053,0.33078,0.685942,0.668599,0.0722216,0.698346,0.618122,0.813764,0.302855,0.77721,0.806858,0.269148,0.533712,0.958933,0.501527,0.0923803,0.479261,0.13943,0.545916,0.926982,0.188029,0.683889,0.563001,0.16726,0.423315,0.654054,0.451333,0.668395,0.289247,0.814867,0.700792,0.767189,0.601388,0.0623024,0.109687,0.848637,0.932331,0.487464,0.305265,0.0166008,0.406233,0.765291,0.501428,0.511981,0.955897,0.383009,0.891379,0.573378,0.16848,0.642415,0.179515,0.69985,0.588184,0.965618,0.837851,0.996518,0.652147,0.0244829,0.500723,0.743348,0.093253,0.91872,0.558695,0.407517,0.327103,0.702641,0.347187,0.471184,0.204724,0.525731,0.992993,0.417565,0.330118,0.314461,0.668112,0.791625,0.493079,0.925728,0.121183,0.78841,0.479674,0.343781,0.589367,0.501048,0.0483536,0.369289,0.542374,0.967101,0.787845,0.747193,0.829175,0.705341,0.0963486,0.904537,0.988225,0.831474,0.54557,0.550007,0.446077,0.0900483,0.430186,0.907,0.0199985,0.671463,0.00912917,0.249313,0.885756,0.912639,0.944328,0.327539,0.775388,0.034061,0.0673167,0.468095,0.0377781,0.589087,0.708633,0.240022,0.180881,0.940883,0.564258,0.133403,0.818133,0.478903,0.516387,0.0261919,0.952839,0.639054,0.661651,0.788414,0.549857,0.419431,0.909497,0.762074,0.567567,0.0333521,0.995956,0.822713,0.458525,0.642386,0.80404,0.189348,0.00540316,0.0308488,0.10506,0.11182,0.21867,0.562949,0.340184,0.149449,0.248354,0.471833,0.487629,0.666907,0.474547,0.175942,0.29106,0.51641,0.892959,0.987434,0.014221,0.636325,0.937862,0.0240433,0.759202,0.676767,0.662424,0.252854,0.987741,0.299098,0.358379,0.442746,0.163918,0.933988,|0.132434,0.146604,0.643885,0.330203,0.987548,0.157718,0.468826,0.202277,0.640803,0.179422,0.28836,0.743702,0.659327,0.581884,0.100139,0.4439,0.768533,0.9164,0.49408,0.869148,0.456665,0.477833,0.623079,0.197591,0.760527,0.229561,0.543987,0.707133,0.955825,0.543723,0.269738,0.519221,0.40953,0.505152,0.566167,0.847802,0.728326,0.0288452,0.780562,0.805909,0.644172,0.232717,0.946977,0.0984018,0.425147,0.93282,0.143248,0.174978,0.98903,0.0611474,0.275276,0.816342,0.642042,0.82545,0.112186,0.108747,0.0992841,0.0746463,0.384309,0.881604,0.685507,0.42774,0.261253,0.366366,0.64122,0.392392,0.591876,0.801845,0.209617,0.461607,0.546605,0.774298,0.967672,0.710717,0.0783413,0.561075,0.663622,0.620993,0.552883,0.853383,0.456913,0.14305,0.94039,0.413053,0.804505,0.256137,0.739232,0.250133,0.759677,0.0130727,0.0840313,0.146807,0.767396,0.726586,0.89266,0.337321,0.0252118,0.247893,0.917148,0.293583,0.630457,0.658769,0.969391,0.629888,0.22705,0.0617222,0.731277,0.174819,0.326471,0.620497,0.0882142,0.0202351,0.673948,0.15448,0.519452,0.574155,0.789545,0.822153,0.566725,0.828918,0.920708,0.483742,0.0737517,0.210752,0.852006,0.0123485,0.804341,0.202755,0.0466336,0.04119,0.237515,0.474955,0.988889,0.984792,0.953152,0.700463,0.286616,0.180324,0.288057,0.233249,0.936118,0.963495,0.0842242,0.382028,0.787081,0.893995,0.340719,0.265583,0.00159359,0.357255,0.204544,0.26454,0.926842,0.346806,0.725261,0.778025,0.868509,0.462629,0.178317,0.988444,0.849234,0.414497,0.843448,0.264711,0.841848,0.361223,0.07717,0.83962,0.656121,0.960126,0.803028,0.558738,0.736593,0.508223,0.769801,0.238083,0.0592177,0.33942,0.0941222,0.417933,0.403421,0.499327,0.802065,0.932529,0.86285,0.459548,0.349005,0.822191,0.198704,0.881403,0.854642,0.272851,0.969829,0.976787,0.857698,0.918383,0.448218,0.416574,0.660725,0.577741,0.0597848,0.2276,0.350719,0.582527,0.600099,0.941763,0.345008,0.869117,0.344802,0.800183,0.604316,0.73087,0.458671,0.139617,0.0484176,0.543913,0.764191,0.885152,0.622692,0.265095,0.950404,0.811439,0.649525,0.827196,0.42478,0.849561,0.919534,0.457373,0.221957,0.89831,0.806566,0.643221,0.906864,0.175134,0.542718,0.941856,0.21976,0.439218,0.678443,0.484347,0.848024,0.272755,0.764557,0.479403,0.0325236,0.126427,0.35113,0.763292,0.669541,0.142917,0.375266,0.627084,0.212927,0.344217,0.311907,0.991145,0.71934,0.523819,0.447212,0.414066,0.948983,0.0285173,0.367475,0.454276,0.185383,0.974763,0.394071,0.73803,0.0675734,0.241387,0.135298,0.806459,0.601104,0.949211,0.386892,0.703626,0.335872,0.351864,0.269048,0.155091,0.574457,0.787615,0.270792,0.444842,0.76289,0.803932,0.360596,0.341488,0.733811,0.750614,0.282012,0.504001,0.500269,0.877472,0.998041,0.575132,0.20944,0.297225,0.576416,0.157475,0.616307,0.0227059,0.0891865,0.2533,0.209912,0.371026,0.594144,0.478253,0.996186,0.30995,0.908905,0.233732,0.474103,0.70108,0.560997,0.943108,0.847013,0.300084,0.363766,0.571716,0.239295,0.240233,0.614826,0.396038,0.617752,0.811207,0.0132329,0.624957,0.887411,0.944911,0.653335,0.899231,0.327376,0.752595,0.575724,0.566606,0.55225,0.774481,0.362536,0.434165,0.267015,0.776506,0.0654479,0.630853,0.284571,0.526545,0.296573,0.341952,0.877264,0.313607,0.569744,0.423321,0.467935,0.733107,0.215677,0.626302,0.353188,0.35818,0.172497,0.837882,0.891944,0.923517,0.928356,0.0253195,0.280964,0.0944878,0.00992602,0.656655,0.52441,0.168374,0.217506,0.61397,0.778565,0.676235,0.0600975,0.276865,0.0830641,0.450925,0.137508,0.65432,0.762029,0.893381,0.899176,0.891052,0.642879,0.858401,0.0498807,0.0776397,0.195059,0.325521,0.918222,0.199706,0.168327,0.653285,0.19246,0.0931178,0.182147,0.38797,0.971809,0.223575,0.734616,0.936572,0.226173,0.694707,0.445859,0.00478524,0.69523,0.710072,0.901739,0.643993,0.135806,0.702693,0.379202,0.97361,0.15623,0.651039,0.538511,0.672661,0.035808,0.308682,0.694388,0.219604,0.160415,0.657177,0.230539,0.256517,0.109318,0.422532,0.97348,0.780806,0.218889,0.322121,0.814487,0.45851,0.998794,0.291768,0.543927,0.368952,0.711443,0.715316,0.666552,0.330368,0.152224,0.146224,0.839036,0.268876,0.273062,0.243911,0.278537,0.207894,0.84647,0.730961,0.88326,0.624793,0.876022,0.881909,0.154706,0.476147,0.547383,0.440875,0.149959,0.602926,0.655663,0.910745,0.417059,0.468818,0.767676,0.918809,0.188302,0.338588,0.301802,0.631677,0.998069,0.538171,0.950555,0.347654,0.684861,0.429021,0.60064,0.522749,0.472582,0.403955,0.144534,0.898439,0.622733,0.633611,0.796132,0.711443,0.806929,0.117519,0.736808,0.297181,0.68492,0.247566,0.357233,0.648248,0.710458,0.184324,0.458297,0.226243,0.45056,0.403305,0.680019,0.336695,0.22787,0.113672,0.951495,0.0504095,0.972969,0.93083,0.549708,0.580645,0.395359,0.533025,0.0316182,0.523632,0.604236,0.510123,0.0581555,0.261833,0.641577,0.524493,0.771253,0.814409,0.476145,0.893451,0.886481,0.230161,0.494246,0.215671,0.0294106,0.642643,0.675219,0.900929,0.256643,0.992295,0.716867,0.12091,0.14836,0.569057,0.160628,0.792494,0.331514,0.195952,0.227824,0.27011,0.489996,0.265825,0.981918,0.735888,0.0896806,0.133741,0.915487,0.541025,0.250605,0.118235,0.647368,0.0207947,0.0359653,0.0122617,0.182409,0.345327,0.0553784,0.76388,0.672979,0.406182,0.70329,0.00635052,0.710933,0.187643,0.767061,0.32028,0.394211,0.945809,0.506868,0.489443,0.407887,0.999274,0.72891,0.603491,0.924407,0.307618,0.546288,0.851213,0.751761,0.679144,0.475424,0.209233,0.6757,0.345371,0.771411,0.883088,0.266919,0.615758,0.757077,0.327131,0.125108,0.867261,0.073092,0.844103,0.905724,0.0837539,0.115042,0.884315,0.922405,0.355626,0.0999637,0.053612,0.125122,0.655875,0.665793,0.631926,0.536465,0.0552034,0.781752,0.625799,0.315881,0.229524,0.705254,0.537277,0.712499,0.866968,0.346332,0.659224,0.0199461,0.35958,0.991381,0.0767574,0.992755,0.580886,0.716833,0.600863,0.999614,0.865844,0.224502,0.317028,0.338885,0.965433,0.629716,0.539903,0.178135,0.133963,0.870708,0.268132,0.808321,0.20041,0.589294,0.0415111,0.63523,0.572382,0.963057,0.37905,0.395899,0.351093,0.921418,0.378072,0.43154,0.881852,0.411491,0.583341,0.823101,0.446856,0.827353,0.386128,0.821145,0.775943,0.589699,0.622762,0.670582,0.590237,0.0921488,0.47233,0.558338,0.175435,0.460203,0.434228,0.837487,0.198093,0.69447,0.227842,0.950231,0.834153,0.753199,0.109113,0.658876,0.0919837,0.797531,0.455089,0.123686,0.0394289,0.682344,0.501727,0.722689,0.151839,0.393505,0.00126386,0.608958,0.660208,0.731264,0.205419,0.306981,0.833619,0.924459,0.419161,0.434572,0.891181,0.892757,0.27804,0.820652,0.737117,0.471888,0.4356,0.395584,0.678845,0.611223,0.962276,0.413795,0.0966326,0.389545,0.809553,0.345472,0.84128,0.599219,0.530985,0.782569,0.0864251,0.820153,0.560345,0.968809,0.259493,0.942234,0.631344,0.966314,0.394274,0.962147,0.213657,0.998247,0.354385,0.430146,0.305717,0.866826,0.371142,0.82711,0.206625,0.465228,0.333181,0.984738,0.126844,0.620036,0.304236,0.943561,0.357167,0.0277224,0.253869,0.529841,0.37529,0.119084,0.205143,0.711107,0.718772,0.00894547,0.658387,0.776002,0.290661,0.749443,0.313491,0.953418,0.07759,0.303708,0.372384,0.972375,0.338494,0.177419,0.0568407,0.379872,0.995561,0.0335312,0.163404,0.60706,0.322456,0.127747,0.564231,0.0475045,0.700379,0.0534882,0.8051,0.515729,0.600927,0.418935,0.784984,0.748546,0.247601,0.270928,0.956129,0.614122,0.92212,0.699769,0.481224,0.884449,0.443125,0.735031,0.335227,0.591138,0.0225641,0.652136,0.324325,0.408442,0.833216,0.338211,0.819911,0.669396,0.829311,0.544846,0.347556,0.316899,0.99376,0.531696,0.537903,0.319522,0.612455,0.0817224,0.468874,0.974899,0.999252,0.333428,0.307157,0.394146,0.905453,0.736311,0.214019,0.0271616,0.207829,0.570244,0.323085,0.425466,0.904606,0.904132,0.539182,0.154007,0.703282,0.729518,0.988768,0.642418,0.872789,0.137057,0.866552,0.999574,0.303589,0.392018,0.346663,0.89125,0.0529081,0.915275,0.0820935,0.746667,0.368479,0.469886,0.864308,0.245805,0.35203,0.782043,0.571136,0.326576,0.101198,0.887885,0.0279025,0.338048,0.183418,0.965154,0.782982,0.572108,0.15226,0.814807,0.441034,0.643359,0.633985,0.904608,0.642129,0.771841,0.297696,0.20014,0.710998,0.445878,0.108001,0.569923,0.172506,0.809283,0.902547,0.361373,0.531868,0.929008,0.581443,0.387797,0.994128,0.556367,0.814086,0.0268129,0.258969,0.0731401,0.0354635,0.662824,0.774225,0.179125,0.30039,0.086548,0.740546,0.80393,0.966929,0.228665,0.686163,0.049161,0.963007,0.212481,0.457828,0.47397,0.82522,0.901247,0.650601,0.923507,0.672202,0.701256,0.533857,0.889739,0.951535,0.282581,0.565837,0.451374,0.396199,0.575568,0.178847,0.0555092,0.651336,0.39657,0.693921,0.0326199,0.157438,0.515891,0.905538,0.716283,0.980593,0.410675,0.530846,0.610236,0.174321,0.674199,0.513399,0.224004,0.660411,0.722437,0.348639,0.487584,0.939799,0.76996,0.290575,0.00752771,0.231451,0.0631198,0.32486,0.459939,0.568155,0.861374,0.495932,0.319045,0.353673,0.437077,0.869725,0.986802,0.520981,0.0791463,0.888875,0.55249,0.200471,0.881235,0.974251,0.943121,0.105143,0.325,0.565727,0.821855,0.704781,0.918337,0.993592,0.0993711,0.28929,0.426856,0.527837,0.275053,0.321457,0.329946,0.64725,0.286432,0.666253,0.0954155,0.41943,0.381384,0.0677209,0.563051,0.16675,0.732917,0.512711,|0.442677,0.143723,0.486535,0.207477,0.41024,0.276028,0.160945,0.61429,0.288061,0.665714,0.531896,0.684229,0.00221908,0.317099,0.111638,0.978859,0.259715,0.395382,0.187119,0.653304,0.0954742,0.311795,0.812157,0.465379,0.626163,0.867105,0.657913,0.209158,0.239962,0.393659,0.534912,0.978766,0.493493,0.0370579,0.705795,0.99044,0.958066,0.104526,0.651416,0.00740731,0.329367,0.953213,0.521344,0.678319,0.00575238,0.421676,0.948764,0.827589,0.199317,0.999438,0.320165,0.634702,0.0338397,0.973906,0.659791,0.4052,0.615671,0.189348,0.308481,0.242841,0.306758,0.565151,0.942849,0.0561715,0.62246,0.123877,0.816523,0.632278,0.95598,0.343787,0.352619,0.764747,0.502359,0.900923,0.471066,0.0608324,0.110877,0.648395,0.860554,0.259019,0.310411,0.521443,0.499923,0.21553,0.434813,0.462649,0.899361,0.720583,0.633947,0.543693,0.659599,0.280018,0.30164,0.890328,0.561764,0.438915,0.63293,0.571601,0.709367,0.541542,0.838405,0.272093,0.760643,0.212448,0.585484,0.190047,0.364549,0.611774,0.610178,0.765147,0.649735,0.765405,0.0498904,0.796267,0.528741,0.226847,0.143464,0.468573,0.150854,0.424593,0.123325,0.0457082,0.110702,0.213955,0.204934,0.675622,0.308553,0.303438,0.530565,0.568266,0.0337546,0.652915,0.518568,0.0872744,0.549254,0.0657419,0.306441,0.846108,0.865228,0.0987256,0.823292,0.197327,0.844633,0.983522,0.0610224,0.770893,0.553686,0.579941,0.760767,0.96531,0.220222,0.595052,0.0792231,0.192107,0.882234,0.825571,0.725919,0.95401,0.638655,0.623312,0.194259,0.380204,0.95865,0.3384,0.524064,0.066206,0.942199,0.214181,0.0604193,0.55712,0.590378,0.227333,0.920685,0.16724,0.623285,0.589326,0.880415,0.979153,0.120222,0.753073,0.00908178,0.106436,0.0698892,0.281228,0.0619381,0.67625,0.103164,0.530839,0.987178,0.416455,0.263984,0.956656,0.843192,0.820089,0.339032,0.105929,0.592071,0.155948,0.342525,0.594078,0.948238,0.211477,0.0479171,0.372398,0.81903,0.775338,0.23825,0.629291,0.726892,0.00651211,0.325555,0.609371,0.3044,0.652594,0.887397,0.0804803,0.703771,0.719048,0.937283,0.00106549,0.880283,0.0143539,0.0454386,0.198131,0.0890685,0.800516,0.801351,0.42463,0.450153,0.457036,0.985554,0.434851,0.0415329,0.674998,0.39303,0.285694,0.714336,0.713711,0.572498,0.951031,0.1944,0.456412,0.718632,0.867167,0.145397,0.75962,0.0710028,0.225363,0.546403,0.793063,0.51723,0.275029,0.505081,0.201763,0.446825,0.37037,0.497397,0.600304,0.825443,0.21064,0.788049,0.278801,0.956432,0.85978,0.19991,0.800654,0.270674,0.136269,0.29099,0.523505,0.706851,0.868188,0.993776,0.771363,0.584928,0.929301,0.0216823,0.883346,0.311486,0.898547,0.118197,0.0201769,0.268139,0.521638,0.034198,0.82923,0.0968755,0.685403,0.342715,0.0524584,0.446773,0.535893,0.597446,0.303538,0.151995,0.354763,0.463434,0.992608,0.682748,0.48064,0.83027,0.0570138,0.258354,0.0787127,0.209019,0.170651,0.507856,0.140778,0.82149,0.771655,0.139203,0.418893,0.546359,0.675237,0.776998,0.141354,0.422037,0.69331,0.455262,0.524225,0.456576,0.248113,0.823506,0.369537,0.48823,0.0659407,0.229758,0.272066,0.704739,0.68344,0.527858,0.399338,0.558821,0.665018,0.54878,0.765668,0.59722,0.0394504,0.741611,0.841694,0.126709,0.862584,0.48059,0.318642,0.733092,0.385974,0.305539,0.770942,0.787914,0.981505,0.932347,0.117921,0.350043,0.697494,0.586587,0.477142,0.258402,0.194726,0.103424,0.753873,0.886757,0.510209,0.197402,0.397305,0.602495,0.100559,0.907623,0.631083,0.904401,0.53454,0.984842,0.320965,0.81927,0.983314,0.773199,0.276423,0.567994,0.152669,0.996301,0.639901,0.459696,0.422354,0.138786,0.251024,0.0109563,0.349586,0.371895,0.0136126,0.258511,0.32632,0.351321,0.326705,0.626128,0.332999,0.624498,0.435425,0.813224,0.283024,0.642423,0.515886,0.798481,0.350019,0.52818,0.473392,0.237594,0.788064,0.142152,0.84605,0.866459,0.49439,0.265269,0.24297,0.471018,0.457293,0.437548,0.608732,0.936723,0.711081,0.0497055,0.453159,0.684634,0.837661,0.953592,0.297726,0.00533378,0.685358,0.147097,0.656859,0.349196,0.856977,0.953843,0.91124,0.540334,0.506403,0.366121,0.181811,0.686363,0.937307,0.166927,0.705577,0.721289,0.879216,0.885694,0.633623,0.752869,0.390025,0.407144,0.112167,0.222587,0.829898,0.305551,0.979831,0.894287,0.122266,0.305512,0.13771,0.0698516,0.476957,0.454815,0.0661865,0.023879,0.949549,0.661813,0.277476,0.843097,0.936169,0.899688,0.20682,0.626093,0.319053,0.928021,0.903284,0.561164,0.965331,0.628951,0.220822,0.595422,0.0854673,0.609097,0.534105,0.507195,0.430318,0.508614,0.46336,0.480824,0.917601,0.450254,0.0686324,0.669286,0.31345,0.121129,0.140589,0.928822,0.647729,0.673403,0.749166,0.266226,0.26671,0.405839,0.381058,0.218961,0.655073,0.601965,0.594838,0.374438,0.198893,0.965721,0.285469,0.0884895,0.214921,0.0877517,0.737427,0.326937,0.314558,0.616018,0.243942,0.07081,0.910884,0.976185,0.325852,0.594884,0.616417,0.264054,0.708138,0.233755,0.0544505,0.911686,0.768432,0.25346,0.736266,0.912261,0.288409,0.595154,0.504768,0.276864,0.060477,0.403585,0.532558,0.946213,0.87166,0.34802,0.727526,0.991761,0.646698,0.678665,0.411352,0.39531,0.846078,0.708218,0.318564,0.648328,0.56069,0.187987,0.315398,0.400715,0.870127,0.432358,0.691811,0.519545,0.932213,0.592496,0.422827,0.0695263,0.452924,0.653974,0.365115,0.551134,0.0718055,0.833263,0.948665,0.745892,0.447146,0.726626,0.0379946,0.793369,0.844676,0.737115,0.413191,0.898945,0.894758,0.963194,0.313103,0.667123,0.77295,0.0856575,0.592106,0.742509,0.459671,0.812554,0.0573316,0.0545555,0.356072,0.732258,0.28068,0.776923,0.0220859,0.290123,0.628427,0.11269,0.029502,0.346962,0.928466,0.404951,0.0863011,0.735541,0.302059,0.228176,0.777361,0.0200965,0.212199,0.765206,0.11972,0.432773,0.115639,0.459966,0.560431,0.706207,0.995751,0.547256,0.872081,0.265344,0.0831047,0.185247,0.71894,0.0811269,0.37903,0.357103,0.152919,0.967528,0.780668,0.573627,0.56506,0.9803,0.598165,0.451899,0.413005,0.523482,0.6808,0.915557,0.03385,0.0598491,0.290195,0.730146,0.531115,0.233837,0.569699,0.470767,0.868813,0.343655,0.495829,0.0214911,0.871787,0.40288,0.977582,0.347817,0.286744,0.707354,0.00676292,0.340393,0.2708,0.590023,0.195279,0.760176,0.879481,0.191675,0.990313,0.549622,0.277694,0.180176,0.269118,0.769553,0.148708,0.880469,0.1615,0.828739,0.443229,0.646084,0.885,0.28449,0.0613465,0.307616,0.114933,0.103813,0.725786,0.181121,0.856792,0.206541,0.24216,0.83173,0.632313,0.498939,0.834688,0.492991,0.445083,0.763006,0.37965,0.897968,0.871641,0.502687,0.804772,0.616978,0.297913,0.610494,0.843205,0.985665,0.985087,0.357029,0.0720245,0.864539,0.0695465,0.384916,0.629982,0.180084,0.35187,0.987279,0.170799,0.0581303,0.569679,0.521303,0.692254,0.669657,0.110393,0.661516,0.570294,0.501061,0.0413148,0.575617,0.314563,0.534873,0.794818,0.661954,0.432961,0.0041244,0.328657,0.782177,0.489318,0.54185,0.636016,0.868575,0.162504,0.974178,0.0651625,0.104666,0.372478,0.662391,0.771373,0.823627,0.520967,0.895878,0.455046,0.218512,0.784967,0.737577,0.331771,0.127088,0.490963,0.316656,0.918267,0.883437,0.707902,0.293249,0.629131,0.31983,0.361323,0.998938,0.032537,0.20266,0.825433,0.101242,0.268557,0.109534,0.987979,0.519097,0.945032,0.252037,0.0589529,0.0391424,0.443902,0.312144,0.738326,0.413609,0.0343998,0.0397025,0.389027,0.0162455,0.84057,0.458603,0.433111,0.29357,0.658125,0.775608,0.44233,0.658155,0.0140097,0.757594,0.782075,0.417407,0.0990412,0.553841,0.877367,0.940794,0.716436,0.250683,0.0930415,0.427603,0.365992,0.391438,0.420838,0.323445,0.253065,0.124352,0.914903,0.367424,0.433463,0.0345941,0.142953,0.814001,0.489938,0.832928,0.219835,0.677715,0.69834,0.957373,0.799131,0.127947,0.509312,0.857388,0.812606,0.96391,0.369986,0.398253,0.912627,0.158807,0.966963,0.341904,0.215589,0.613049,0.234007,0.879527,0.487867,0.0806199,0.386737,0.733118,0.515921,0.535793,0.632264,0.905713,0.978821,0.719577,0.197778,0.441746,0.484733,0.932134,0.86247,0.988804,0.968852,0.383974,0.970003,0.168857,0.465265,0.0589123,0.387383,0.567923,0.886321,0.22998,0.923766,0.263089,0.212591,0.606624,0.967364,0.0314393,0.684893,0.645087,0.720081,0.758326,0.0591139,0.189158,0.640433,0.933362,0.330773,0.20924,0.0673189,0.578373,0.752119,0.146555,0.114485,0.696441,0.164044,0.0826221,0.7271,0.571088,0.715301,0.992914,0.575114,0.216821,0.0452049,0.961576,0.502967,0.454614,0.290407,0.678928,0.746439,0.32165,0.29627,0.883937,0.629176,0.566996,0.5824,0.886146,0.882724,0.994899,0.0523462,0.545247,0.0320203,0.988145,0.733925,0.589736,0.225163,0.237422,0.11919,0.708182,0.502456,0.421711,0.0692794,0.474308,0.657191,0.997049,0.0861449,0.507235,0.438382,0.337923,0.169098,0.591059,0.561564,0.0291126,0.232434,0.42099,0.681805,0.028236,0.20286,0.512283,0.0759367,0.00852638,0.540183,0.576551,0.184306,0.0451729,0.787444,0.518381,0.0741348,0.896192,0.139294,0.418723,0.0520071,0.0974169,0.660324,0.524282,0.795654,0.0419602,0.270347,0.685567,0.486818,0.728766,0.340535,0.479521,0.326905,0.821354,0.398303,0.375072,0.48584,0.234468,0.533256,0.094837,0.830291,0.884437,0.984326,0.209176,0.819019,0.361462,0.178649,0.442827,0.481977,0.828934,0.79478,0.618212,0.316997,0.677879,0.520952,0.125462,0.000898838,0.585553,0.0152057,0.720465,0.901358,0.954027,0.567702,0.637292,0.456348,0.135631,0.36325,|0.882557,0.590378,0.150763,0.72758,0.998416,0.132683,0.213037,0.768135,0.487758,0.651619,0.508578,0.940306,0.105613,0.780699,0.426109,0.585236,0.653329,0.222895,0.879497,0.646787,0.219628,0.599785,0.592631,0.690628,0.88913,0.070621,0.474951,0.95942,0.549993,0.786098,0.865787,0.960527,0.255641,0.713902,0.166956,0.47843,0.702332,0.669439,0.73218,0.244685,0.922964,0.0404582,0.0968213,0.550968,0.270238,0.396776,0.194234,0.397392,0.383157,0.205747,0.418703,0.175045,0.75157,0.61211,0.191408,0.518105,0.697737,0.488123,0.422493,0.702854,0.269509,0.654451,0.520168,0.462055,0.124305,0.943408,0.254956,0.286277,0.971583,0.86584,0.920686,0.449643,0.989262,0.651654,0.78192,0.315403,0.664892,0.607882,0.38996,0.490373,0.633724,0.832096,0.845255,0.306659,0.0391934,0.323088,0.264143,0.912063,0.742158,0.0331698,0.552416,0.344597,0.421087,0.460257,0.195201,0.255434,0.280949,0.772755,0.821375,0.999289,0.292182,0.0878071,0.764564,0.306585,0.722059,0.999041,0.477941,0.472917,0.467859,0.012588,0.537007,0.941381,0.265046,0.26163,0.818059,0.960398,0.69883,0.315621,0.543769,0.280036,0.154125,0.790129,0.424766,0.317958,0.746638,0.654658,0.933057,0.598222,0.415025,0.42214,0.148602,0.651113,0.609838,0.833272,0.976059,0.055518,0.678939,0.00809711,0.478527,0.768603,0.196307,0.798964,0.275083,0.698884,0.542588,0.76736,0.38998,0.32749,0.177681,0.43489,0.843829,0.771003,0.637188,0.658973,0.61189,0.816954,0.17638,0.689121,0.981713,0.289814,0.90048,0.740507,0.323771,0.924038,0.247727,0.901867,0.792401,0.297099,0.748893,0.297261,0.186244,0.701492,0.380878,0.539491,0.0689583,0.162168,0.548908,0.320209,0.0289735,0.721215,0.447903,0.567821,0.412266,0.256559,0.615099,0.239027,0.150915,0.356063,0.132499,0.807644,0.598578,0.849791,0.092415,0.1862,0.593403,0.899805,0.678523,0.332654,0.0123256,0.0489915,0.702159,0.924804,0.258168,0.139141,0.981405,0.0799206,0.364631,0.293405,0.742406,0.937266,0.17853,0.0224059,0.725383,0.163925,0.28691,0.337332,0.144764,0.323054,0.301101,0.705672,0.797485,0.277916,0.455394,0.0267068,0.787038,0.729628,0.521759,0.726775,0.708152,0.331398,0.1903,0.929331,0.800755,0.980237,0.249374,0.406274,0.940003,0.807927,0.848663,0.426255,0.692767,0.509046,0.0473825,0.297629,0.00947857,0.451398,0.588709,0.269639,0.191389,0.942571,0.941885,0.0295884,0.0893278,0.881545,0.273834,0.888964,0.811914,0.259732,0.399288,0.972492,0.938465,0.571491,0.0863546,0.917238,0.816765,0.206083,0.230013,0.117591,0.516562,0.55754,0.911152,0.121046,0.282342,0.366733,0.992103,0.233531,0.00709307,0.817677,0.541413,0.163298,0.968362,0.789834,0.970549,0.498841,0.0967348,0.0765369,0.259293,0.999571,0.996517,0.432988,0.123265,0.826688,0.888686,0.0688083,0.359352,0.205742,0.403152,0.764855,0.798899,0.375201,0.493746,0.797144,0.20188,0.744031,0.144281,0.642295,0.714183,0.716008,0.0812925,0.5264,0.981367,0.464285,0.32234,0.86731,0.729274,0.377371,0.858945,0.349016,0.802601,0.870776,0.640587,0.194491,0.929082,0.545045,0.878227,0.053319,0.288,0.0688742,0.342762,0.614234,0.700701,0.752504,0.812218,0.785594,0.783477,0.833749,0.999634,0.858158,0.369749,0.129017,0.0154748,0.465649,0.962128,0.929494,0.856021,0.168663,0.171087,0.222284,0.480162,0.78587,0.658122,0.686616,0.00379813,0.66998,0.996748,0.485131,0.242663,0.00394869,0.948786,0.713036,0.671187,0.366621,0.729596,0.523233,0.555523,0.468606,0.312629,0.631302,0.051278,0.0308963,0.843519,0.339034,0.700043,0.851015,0.286652,0.21061,0.0449769,0.888111,0.953907,0.719542,0.0765842,0.965868,0.733159,0.740282,0.447125,0.88814,0.954216,0.477916,0.917995,0.299891,0.773278,0.537583,0.00200772,0.31452,0.473615,0.234842,0.974879,0.890964,0.430035,0.420461,0.34033,0.373873,0.112094,0.445968,0.630625,0.797938,0.519825,0.96322,0.640405,0.0160225,0.209292,0.0816696,0.183267,0.594499,0.0732015,0.157296,0.850138,0.107928,0.0323076,0.464289,0.784282,0.89536,0.308178,0.751694,0.901513,0.769052,0.165411,0.972693,0.537183,0.597574,0.946267,0.912598,0.725995,0.844442,0.844174,0.365497,0.985042,0.960188,0.283861,0.725119,0.50511,0.179286,0.787147,0.722527,0.994735,0.93342,0.0896381,0.438292,0.534283,0.0551197,0.895196,0.858496,0.996747,0.973043,0.346506,0.0919802,0.719003,0.0351655,0.938416,0.585006,0.126694,0.986419,0.0126245,0.678635,0.693019,0.970349,0.297629,0.780191,0.658354,0.890491,0.0794376,0.212031,0.791259,0.693704,0.599482,0.552687,0.803826,0.212801,0.744353,0.626729,0.0576709,0.27373,0.0976189,0.167408,0.775588,0.407375,0.710979,0.139824,0.254525,0.207013,0.526737,0.162891,0.00277293,0.205659,0.780295,0.0849777,0.105643,0.345303,0.0607014,0.0426486,0.434017,0.101772,0.450036,0.587037,0.763824,0.0774508,0.817605,0.131892,0.976371,0.889449,0.121826,0.594696,0.776582,0.665998,0.107309,0.636703,0.496546,0.183967,0.167566,0.781062,0.301268,0.342245,0.944808,0.0909706,0.92015,0.0905856,0.49294,0.485616,0.0858514,0.592231,0.887075,0.0407184,0.518293,0.217159,0.26994,0.0511944,0.200043,0.77211,0.733514,0.155487,0.80467,0.16374,0.474722,0.223179,0.353955,0.429451,0.745899,0.763238,0.84361,0.12529,0.9723,0.14466,0.695152,0.11691,0.376914,0.128201,0.943196,0.491482,0.793263,0.277254,0.749419,0.515825,0.155211,0.183452,0.293041,0.634965,0.790496,0.300484,0.974144,0.654251,0.133669,0.145103,0.352342,0.143542,0.75396,0.881211,0.40469,0.282927,0.0972471,0.980846,0.796045,0.413834,0.729511,0.817876,0.780823,0.693687,0.094061,0.152198,0.138002,0.545231,0.406125,0.866649,0.381949,0.85125,0.539363,0.891498,0.545749,0.500505,0.622828,0.380357,0.918101,0.845899,0.536779,0.165138,0.0542073,0.766066,0.859846,0.654902,0.504472,0.386904,0.734526,0.567457,0.353238,0.843643,0.850934,0.726411,0.485834,0.398762,0.3757,0.496484,0.239234,0.276889,0.310418,0.54296,0.248698,0.766849,0.691302,0.142071,0.101957,0.781506,0.615518,0.0870316,0.840935,0.631859,0.612363,0.818541,0.921681,0.455789,0.538675,0.203761,0.6346,0.898532,0.0946859,0.872657,0.469447,0.0676475,0.409472,0.537148,0.942036,0.159717,0.296942,0.868216,0.82321,0.130926,0.973328,0.667904,0.428232,0.299643,0.56595,0.472277,0.846561,0.932814,0.0216956,0.695721,0.805539,0.644329,0.0568439,0.956191,0.915295,0.980026,0.27577,0.884541,0.568599,0.317341,0.109244,0.819042,0.362436,0.228717,0.0513203,0.932589,0.21949,0.503473,0.884115,0.124024,0.203815,0.367245,0.711244,0.0964314,0.536572,0.373461,0.63781,0.0620235,0.498012,0.269018,0.470797,0.178481,0.0113822,0.931687,0.771378,0.947173,0.71728,0.893864,0.523419,0.124798,0.278507,0.856688,0.669267,0.104888,0.761433,0.868731,0.0339703,0.0214018,0.744058,0.897909,0.765215,0.591178,0.230688,0.786866,0.815092,0.81739,0.901932,0.89906,0.221219,0.381942,0.927967,0.85683,0.99965,0.817728,0.980277,0.0674652,0.7566,0.46588,0.650689,0.162109,0.343093,0.193973,0.542985,0.743387,0.185856,0.65616,0.666578,0.173374,0.702815,0.0214912,0.263917,0.698456,0.924158,0.466585,0.921242,0.17395,0.40657,0.0461709,0.0506139,0.226939,0.705876,0.468565,0.384458,0.909008,0.697242,0.399975,0.342954,0.905562,0.643555,0.732077,0.629245,0.52091,0.977425,0.796704,0.20077,0.552731,0.886112,0.607279,0.176202,0.409885,0.795731,0.923639,0.566714,0.519986,0.42851,0.431489,0.770707,0.614929,0.978345,0.32462,0.602623,0.764845,0.8062,0.164413,0.888133,0.217421,0.0209219,0.674281,0.126421,0.725876,0.43839,0.274334,0.688853,0.327068,0.743182,0.881187,0.342784,0.150005,0.0509784,0.236537,0.690268,0.391859,0.710043,0.126794,0.837047,0.10496,0.269063,0.673436,0.467753,0.0232688,0.825666,0.887771,0.322243,0.216006,0.326157,0.861395,0.985731,0.718787,0.451022,0.883615,0.175865,0.254467,0.743855,0.755572,0.757335,0.29468,0.41656,0.010461,0.965102,0.945234,0.783706,0.114916,0.621868,0.546434,0.490544,0.667577,0.456833,0.970407,0.624928,0.554712,0.787229,0.451389,0.867094,0.611054,0.852675,0.864367,0.616758,0.872776,0.163297,0.991764,0.255301,0.57603,0.0875998,0.0635406,0.737052,0.443115,0.799709,0.108153,0.87631,0.759138,0.503061,0.740444,0.121296,0.424561,0.675737,0.409807,0.715058,0.478811,0.755865,0.0113685,0.207382,0.922912,0.643166,0.504638,0.952048,0.698389,0.763449,0.7606,0.4968,0.854247,0.753959,0.8764,0.0475791,0.0289691,0.604583,0.285087,0.304488,0.563611,0.81125,0.371367,0.170587,0.513899,0.477115,0.999994,0.74293,0.294913,0.183956,0.290983,0.489149,0.760545,0.464998,0.831506,0.957027,0.502859,0.739264,0.226118,0.853568,0.301504,0.473453,0.190601,0.75917,0.918675,0.189946,0.363703,0.445557,0.145711,0.803396,0.391493,0.115776,0.0601185,0.780909,0.596439,0.0979098,0.328639,0.104005,0.257868,0.159868,0.0611385,0.497185,0.660369,0.935951,0.896341,0.601857,0.365501,0.800125,0.480896,0.53716,0.338654,0.296733,0.444525,0.73615,0.279738,0.752083,0.702108,0.560918,0.11434,0.287518,0.776271,0.79871,0.900135,0.138996,0.0736014,0.689804,0.706412,0.415907,0.751838,0.477911,0.260662,0.431963,0.529751,0.870785,0.785294,0.100116,0.193784,0.550264,0.923207,0.302193,0.263427,0.225224,0.292084,0.53419,0.0295516,0.424081,0.276422,0.771049,0.425167,0.383304,0.534499,0.0272816,0.0801321,0.234602,0.71161,0.378992,0.287792,0.836026,0.530155,0.624053,0.260834,0.487494,0.676844,0.971281,0.738307,0.00831378,0.819959,0.68846,0.889059,|0.765778,0.941626,0.073633,0.105699,0.536938,0.84623,0.761985,0.932011,0.278009,0.826366,0.49022,0.735031,0.988046,0.114468,0.147887,0.80433,0.514223,0.196507,0.600814,0.372019,0.693943,0.630223,0.33977,0.726188,0.210898,0.729983,0.333062,0.757327,0.246534,0.402551,0.22516,0.794251,0.296111,0.12356,0.25544,0.890471,0.190241,0.584257,0.884206,0.164098,0.908005,0.892885,0.508144,0.573295,0.0320123,0.927434,0.667984,0.925918,0.082404,0.459437,0.131226,0.179552,0.882438,0.399708,0.993013,0.814972,0.514053,0.791064,0.507518,0.0491829,0.120334,0.748732,0.151785,0.0262425,0.647245,0.537337,0.195967,0.439512,0.910535,0.280377,0.605448,0.038895,0.685284,0.247872,0.891333,0.324729,0.106737,0.2795,0.47038,0.205869,0.57997,0.810329,0.068622,0.47439,0.374831,0.286133,0.378251,0.820771,0.011186,0.249549,0.967987,0.623781,0.401904,0.819009,0.814557,0.980191,0.651294,0.40779,0.0645089,0.335825,0.145211,0.876921,0.595755,0.896462,0.411823,0.515854,0.921674,0.926601,0.623885,0.449588,0.782564,0.204385,0.537808,0.770762,0.13092,0.16589,0.105787,0.903034,0.392548,0.950373,0.938618,0.258949,0.331809,0.490265,0.777339,0.178317,0.710243,0.0691679,0.325823,0.556526,0.524083,0.0459623,0.205732,0.577611,0.0575063,0.914672,0.39735,0.411993,0.0888321,0.795439,0.34565,0.874908,0.14625,0.755286,0.25982,0.816024,0.975037,0.796608,0.619811,0.170977,0.65651,0.599292,0.0017603,0.104329,0.396395,0.852363,0.939248,0.458383,0.322139,0.574362,0.710727,0.0396691,0.751343,0.247834,0.266504,0.5907,0.1886,0.949087,0.793673,0.992986,0.587372,0.196524,0.278756,0.171183,0.984515,0.471479,0.560838,0.507127,0.850043,0.838987,0.107876,0.487757,0.426566,0.758633,0.0997092,0.224561,0.276037,0.00177717,0.233681,0.443985,0.842993,0.844817,0.0541899,0.937438,0.539574,0.484676,0.479304,0.154996,0.233955,0.43473,0.0402849,0.704013,0.0129616,0.43961,0.567371,0.120933,0.674626,0.567396,0.173694,0.0783641,0.723175,0.762816,0.844195,0.930692,0.079627,0.780569,0.112795,0.100618,0.42722,0.580339,0.686731,0.278867,0.115504,0.516545,0.848204,0.828508,0.230118,0.146367,0.888539,0.360267,0.728028,0.464498,0.366544,0.673712,0.0719491,0.598269,0.263683,0.218204,0.162531,0.721588,0.876279,0.266237,0.961861,0.447497,0.87506,0.148341,0.832071,0.233705,0.00494248,0.717418,0.849242,0.895872,0.344051,0.531434,0.404979,0.11054,0.211403,0.701259,0.426869,0.215589,0.170203,0.438437,0.254638,0.645159,0.684431,0.462297,0.258127,0.26847,0.703742,0.0912807,0.839828,0.379248,0.104447,0.698415,0.0421298,0.115413,0.577661,0.434148,0.150292,0.643512,0.310571,0.853046,0.605685,0.29123,0.322192,0.0794129,0.039254,0.145623,0.965539,0.92416,0.437698,0.751731,0.0716605,0.51477,0.788283,0.946242,0.601461,0.587805,0.155337,0.810723,0.0205115,0.793251,0.687377,0.0518538,0.821972,0.0968423,0.112465,0.369352,0.8759,0.013959,0.580975,0.861799,0.480536,0.898537,0.551971,0.835998,0.912124,0.00118643,0.512107,0.640778,0.949598,0.64669,0.218851,0.764061,0.879646,0.202666,0.259042,0.359199,0.00445133,0.0652848,0.336341,0.125381,0.461644,0.978858,0.456468,0.926631,0.700227,0.980581,0.802782,0.887872,0.593932,0.592281,0.0820817,0.383947,0.597567,0.722016,0.0986941,0.655308,0.780459,0.472901,0.434305,0.722594,0.12356,0.65329,0.273037,0.220396,0.0427778,0.302474,0.479138,0.776027,0.543395,0.711398,0.693285,0.262015,0.20268,0.715086,0.169586,0.298349,0.0533659,0.875648,0.657877,0.445519,0.833273,0.286868,0.633504,0.589148,0.992348,0.239261,0.25166,0.598491,0.562503,0.85632,0.762044,0.690874,0.0948408,0.959947,0.921062,0.770949,0.761053,0.562517,0.923991,0.346552,0.365849,0.725616,0.996316,0.517617,0.186224,0.0471109,0.313364,0.452393,0.676956,0.434927,0.70656,0.443053,0.724647,0.431755,0.199213,0.362526,0.714032,0.143604,0.672255,0.588978,0.0122917,0.200158,0.157469,0.63258,0.152379,0.460437,0.408155,0.694002,0.515586,0.210208,0.0391959,0.312199,0.0894223,0.351764,0.0433832,0.412891,0.596535,0.625494,0.325463,0.787371,0.488763,0.235743,0.62487,0.0699525,0.147912,0.821728,0.57741,0.817998,0.573245,0.51573,0.41773,0.455705,0.819197,0.449686,0.754091,0.191288,0.688678,0.592415,0.410364,0.489212,0.795723,0.185857,0.59907,0.757271,0.461914,0.017132,0.652602,0.866256,0.899975,0.0297064,0.0822855,0.808889,0.397107,0.959599,0.191665,0.798327,0.0857454,0.922158,0.110013,0.137491,0.971865,0.511768,0.924196,0.860384,0.483593,0.93811,0.584356,0.271081,0.225087,0.768416,0.00819111,0.981748,0.373882,0.07141,0.0614485,0.623363,0.594807,0.0428136,0.795994,0.391174,0.917948,0.746008,0.629181,0.532663,0.194246,0.967147,0.40032,0.975827,0.957632,0.183457,0.829232,0.945085,0.608647,0.185439,0.934985,0.427101,0.2983,0.299818,0.430318,0.590101,0.336239,0.448076,0.625551,0.0672119,0.817889,0.117954,0.148304,0.158202,0.630034,0.863964,0.0461041,0.571112,0.966364,0.319879,0.328062,0.00616032,0.22029,0.384212,0.980286,0.047191,0.0152342,0.810183,0.961823,0.0404282,0.462849,0.708144,0.55996,0.527748,0.0432367,0.0749528,0.0165434,0.608456,0.608248,0.371492,0.571302,0.485597,0.432085,0.738951,0.687848,0.943263,0.860879,0.950949,0.30574,0.203895,0.272949,0.948662,0.0976134,0.782303,0.965341,0.0961755,0.554773,0.134789,0.66895,0.507163,0.911098,0.22699,0.304912,0.433744,0.135639,0.49233,0.575686,0.654513,0.706025,0.107836,0.895601,0.159588,0.334795,0.507931,0.624645,0.437975,0.173275,0.872515,0.64486,0.583795,0.845982,0.524289,0.332754,0.490477,0.737888,0.398569,0.804426,0.555301,0.745512,0.860495,0.640819,0.156154,0.0325457,0.0838923,0.541373,0.566579,0.975202,0.606738,0.41885,0.809839,0.905848,0.566091,0.989293,0.263316,0.545464,0.374537,0.296275,0.880389,0.395288,0.548189,0.541545,0.349338,0.66868,0.882556,0.71094,0.202324,0.931598,0.0638737,0.6591,0.266598,0.449483,0.612435,0.092528,0.507849,0.49365,0.858216,0.85656,0.834031,0.685085,0.699534,0.888634,0.99763,0.373629,0.134425,0.987703,0.643452,0.423281,0.91418,0.146336,0.457211,0.892186,0.232769,0.438104,0.248421,0.716278,0.363058,0.34727,0.20208,0.215656,0.735341,0.670412,0.680581,0.412713,0.90196,0.950945,0.672593,0.409054,0.727595,0.77161,0.996067,0.788159,0.656315,0.161799,0.368823,0.838976,0.315281,0.851107,0.277139,0.640804,0.575085,0.685768,0.91542,0.852159,0.806121,0.289918,0.6753,0.918393,0.484254,0.516091,0.469015,0.244272,0.0866541,0.920831,0.358188,0.466889,0.855287,0.499111,0.189052,0.559822,0.179497,0.185506,0.0633811,0.0210828,0.496077,0.740296,0.0253395,0.402251,0.754917,0.695362,0.0161361,0.482189,0.292373,0.918267,0.297715,0.307755,0.861833,0.740871,0.644631,0.755768,0.182786,0.432532,0.88686,0.0766363,0.588154,0.324811,0.388133,0.687387,0.909699,0.900358,0.545888,0.343025,0.85135,0.922692,0.445023,0.92374,0.323564,0.702778,0.217806,0.837644,0.812536,0.751186,0.550666,0.746664,0.63538,0.4773,0.113985,0.16687,0.157426,0.367526,0.912757,0.889117,0.48091,0.732349,0.0465939,0.0641539,0.971808,0.274991,0.137372,0.603236,0.83478,0.371081,0.0396311,0.857195,0.585701,0.504315,0.725724,0.840222,0.71954,0.2065,0.137815,0.966025,0.606284,0.522891,0.165007,0.598261,0.583418,0.616593,0.127523,0.626426,0.0487058,0.28323,0.713727,0.313648,0.592201,0.304649,0.743693,0.787557,0.1014,0.975107,0.829079,0.0443775,0.344773,0.16229,0.0852787,0.152447,0.976224,0.215213,0.90633,0.287318,0.586608,0.444825,0.389686,0.331894,0.61258,0.553539,0.848171,0.0398255,0.125001,0.866859,0.615489,0.302535,0.905627,0.671644,0.999991,0.136594,0.824337,0.730337,0.995799,0.598597,0.550633,0.379487,0.993551,0.651887,0.30304,0.176907,0.384441,0.0453894,0.0777636,0.209149,0.272753,0.490846,0.328895,0.030899,0.695794,0.627071,0.301371,0.661116,0.755332,0.42095,0.429713,0.37339,0.259373,0.371254,0.428682,0.00306785,0.688301,0.250024,0.964599,0.706657,0.640531,0.801232,0.67496,0.951208,0.0777144,0.907552,0.731888,0.542002,0.76992,0.23753,0.907788,0.569145,0.924204,0.434263,0.987484,0.956177,0.231128,0.0985005,0.897898,0.820119,0.730289,0.786981,0.366496,0.364142,0.256149,0.641157,0.501374,0.513257,0.597896,0.193707,0.35083,0.241766,0.880834,0.00823051,0.700083,0.608704,0.895672,0.8366,0.735106,0.158165,0.482727,0.471854,0.432417,0.181718,0.276332,0.203382,0.954385,0.00518769,0.0636914,0.278948,0.67527,0.0773103,0.904533,0.985071,0.737322,0.458625,0.486503,0.187716,0.155402,0.782451,0.0927843,0.00606841,0.665259,0.394909,0.870856,0.446964,0.412897,0.201797,0.7645,0.326404,0.533801,0.292885,0.594475,0.82717,0.189127,0.466132,0.521915,0.745815,0.271583,0.273716,0.399257,0.846236,0.197407,0.541232,0.797795,0.827755,0.42022,0.0771922,0.408773,0.930851,0.653818,0.360132,0.21291,0.942334,0.00391358,0.551392,0.132967,0.623769,0.559535,0.15252,0.186632,0.452269,0.801063,0.335464,0.973935,0.509008,0.973171,0.842313,0.0579498,0.599579,0.729386,0.353047,0.151438,0.465614,0.558354,0.404485,0.76574,0.784628,0.592545,0.403849,0.469929,0.630296,0.51383,0.609701,0.506782,0.239574,0.0903553,0.120087,0.349175,0.334025,0.661248,0.599469,0.409292,0.820604,0.496851,0.919378,0.550357,0.153617,0.923461,0.278829,0.603799,0.628316,0.794706,0.330081,0.0115241,0.393644,0.815641,0.0502746,0.620737,0.485112,0.300785,0.912231,0.912302,0.749924,0.895227,|0.115901,0.111998,0.954467,0.0563467,0.82237,0.931265,0.041629,0.838817,0.323679,0.418524,0.441472,0.0656301,0.306319,0.185512,0.175927,0.539317,0.613627,0.414883,0.938364,0.11913,0.57373,0.333576,0.77023,0.728863,0.875947,0.904093,0.517453,0.673445,0.879885,0.682036,0.0893122,0.943478,0.367833,0.202801,0.624599,0.464124,0.130805,0.01517,0.893494,0.328542,0.562141,0.651646,0.897143,0.0454149,0.33886,0.719625,0.580549,0.279201,0.187787,0.69242,0.401542,0.403372,0.11859,0.37247,0.843818,0.339474,0.242955,0.977759,0.752033,0.553048,0.766136,0.875415,0.317036,0.73673,0.237241,0.0162304,0.575649,0.474805,0.654996,0.455363,0.69573,0.308272,0.39607,0.41548,0.0107307,0.178324,0.109563,0.62565,0.436663,0.896905,0.831543,0.924587,0.09474,0.677764,0.223992,0.38697,0.0236389,0.776883,0.194653,0.341427,0.739899,0.886607,0.171546,0.766154,0.94694,0.316292,0.132386,0.118418,0.481697,0.183027,0.638806,0.27352,0.676436,0.813292,0.824219,0.887446,0.123663,0.895995,0.809443,0.516334,0.364031,0.926182,0.899362,0.834414,0.279499,0.836875,0.492927,0.382858,0.535749,0.94571,0.587252,0.0857481,0.449873,0.607977,0.911025,0.422635,0.0465014,0.759267,0.727747,0.622933,0.759995,0.988104,0.585133,0.298154,0.613117,0.0648616,0.319798,0.541871,0.151779,0.365973,0.389505,0.395088,0.15809,0.271208,0.278275,0.237879,0.642833,0.588957,0.812835,0.379968,0.890836,0.268657,0.492732,0.453473,0.0755156,0.731206,0.978894,0.853135,0.459449,0.553742,0.228794,0.69506,0.413758,0.780529,0.0475689,0.0954295,0.812269,0.157901,0.568021,0.700849,0.828849,0.7294,0.6351,0.172965,0.00674492,0.0708603,0.476735,0.119655,0.233016,0.923142,0.0939152,0.450805,0.554412,0.0249974,0.950962,0.775222,0.321526,0.667886,0.507875,0.270926,0.884941,0.94265,0.11148,0.402348,0.607234,0.975182,0.706684,0.300076,0.195682,0.695769,0.738926,0.522562,0.918982,0.56073,0.65575,0.562839,0.551147,0.66345,0.510304,0.409043,0.40306,0.201443,0.484068,0.185156,0.501532,0.183531,0.530295,0.376794,0.621369,0.0303164,0.370601,0.80698,0.486722,0.990834,0.688026,0.481094,0.648793,0.98847,0.562747,0.905906,0.226739,0.448731,0.0809513,0.0937154,0.476627,0.550486,0.169706,0.0874077,0.637292,0.559767,0.757819,0.503786,0.74946,0.260951,0.550778,0.479247,0.994015,0.0996022,0.766592,0.113676,0.0841855,0.948114,0.919867,0.166595,0.168904,0.115407,0.567995,0.993113,0.551112,0.619096,0.335373,0.764951,0.765527,0.9491,0.151884,0.928835,0.398202,0.288684,0.619276,0.344113,0.0197673,0.343875,0.771867,0.763693,0.469974,0.509585,0.501984,0.457181,0.620869,0.69964,0.719268,0.791261,0.699438,0.63169,0.503895,0.0197943,0.447944,0.022164,0.168649,0.512732,0.546106,0.00581044,0.673202,0.807629,0.192711,0.52757,0.863589,0.26554,0.598525,0.00324696,0.656722,0.453754,0.407301,0.368307,0.921538,0.0296083,0.692886,0.773827,0.664054,0.540966,0.368468,0.562132,0.175784,0.417261,0.723944,0.672631,0.163083,0.092088,0.65176,0.334365,0.510235,0.372652,0.583227,0.959719,0.111649,0.0774764,0.375307,0.749536,0.154299,0.965783,0.609687,0.556332,0.490063,0.510423,0.482304,0.926898,0.194581,0.550735,0.862263,0.0200368,0.0395725,0.424166,0.0960493,0.711387,0.399183,0.101401,0.852014,0.11349,0.354454,0.388298,0.894159,0.341107,0.327557,0.127635,0.514445,0.105096,0.612997,0.217573,0.906596,0.924593,0.236646,0.0842414,0.0441263,0.601523,0.344663,0.44141,0.165394,0.0587658,0.749838,0.364267,0.767711,0.83467,0.696841,0.0939338,0.0299922,0.88813,0.824336,0.132682,0.662227,0.231545,0.775187,0.341081,0.028873,0.779853,0.802317,0.738961,0.580851,0.22927,0.00721312,0.133018,0.280301,0.299053,0.272554,0.239655,0.648004,0.720459,0.00717038,0.47728,0.148422,0.625427,0.208649,0.581836,0.957386,0.549666,0.912479,0.548287,0.00793195,0.44338,0.125255,0.756002,0.2765,0.388106,0.444571,0.653059,0.847536,0.42933,0.959338,0.130182,0.784956,0.388066,0.600416,0.387312,0.63595,0.460513,0.67954,0.164848,0.790849,0.746144,0.749785,0.835492,0.680014,0.704225,0.723711,0.758671,0.0896089,0.572792,0.219847,0.555983,0.0354195,0.963604,0.289351,0.574107,0.210041,0.583011,0.366559,0.0395243,0.460134,0.560472,0.516803,0.552209,0.751276,0.304775,0.936759,0.770472,0.632708,0.431918,0.15741,0.433191,0.849081,0.581272,0.952266,0.636063,0.501435,0.560301,0.361945,0.670202,0.444383,0.395764,0.63532,0.922895,0.686592,0.007972,0.550802,0.371525,0.100668,0.150683,0.415392,0.875269,0.267406,0.0506822,0.154666,0.383959,0.269951,0.690834,0.20908,0.13354,0.188616,0.292839,0.238319,0.661857,0.909034,0.543869,0.86882,0.177468,0.270577,0.834574,0.0482443,0.877754,0.0319652,0.297401,0.955964,0.735013,0.808212,0.572024,0.254056,0.741131,0.883032,0.881617,0.250281,0.70361,0.525552,0.399922,0.583557,0.498722,0.527502,0.873747,0.0598947,0.851283,0.926006,0.254861,0.839617,0.227659,0.659567,0.231183,0.968953,0.61315,0.42355,0.249467,0.889436,0.842904,0.25832,0.466646,0.118053,0.722445,0.154426,0.376193,0.27233,0.235276,0.172268,0.138266,0.283716,0.95531,0.415068,0.376566,0.0546349,0.204735,0.58535,0.0967426,0.766181,0.704555,0.744768,0.515263,0.0830735,0.00482714,0.917024,0.681333,0.471793,0.775481,0.105214,0.697503,0.244863,0.900801,0.764179,0.568996,0.221874,0.68281,0.447297,0.338677,0.709221,0.495614,0.47747,0.0446531,0.621961,0.893365,0.934361,0.658483,0.432791,0.848145,0.845573,0.419626,0.593191,0.746733,0.515426,0.146775,0.15564,0.0281652,0.189048,0.24798,0.562381,0.226011,0.653695,0.297737,0.293517,0.171297,0.383883,0.00724405,0.818276,0.579624,0.0204229,0.738119,0.575398,0.857442,0.595925,0.590353,0.255394,0.517866,0.0442387,0.242629,0.0772449,0.452223,0.49441,0.739276,0.620165,0.733609,0.851003,0.474229,0.8507,0.144422,0.905141,0.746653,0.37293,0.598472,0.309884,0.558839,0.542913,0.199166,0.679256,0.876853,0.511847,0.770306,0.549325,0.88438,0.331424,0.396543,0.660468,0.293163,0.24834,0.880997,0.704165,0.880836,0.190511,0.333912,0.797353,0.0911726,0.248658,0.447517,0.442872,0.593783,0.846854,0.661325,0.195035,0.468595,0.588624,0.77357,0.270941,0.0792905,0.194869,0.459001,0.0487671,0.157102,0.847296,0.239284,0.32317,0.106585,0.0872498,0.496873,0.999359,0.578852,0.629595,0.151447,0.622004,0.739865,0.68421,0.204582,0.00405294,0.415759,0.514062,0.161682,0.916748,0.31164,0.869221,0.0994753,0.455323,0.529317,0.578188,0.249393,0.468497,0.552543,0.558833,0.761257,0.512308,0.966953,0.919919,0.324874,0.831421,0.0690402,0.331557,0.116116,0.287425,0.36199,0.0247913,0.824694,0.304614,0.903029,0.441338,0.728968,0.0491185,0.120311,0.420401,0.135417,0.205197,0.324093,0.803988,0.330216,0.0697173,0.518394,0.115792,0.569256,0.30873,0.484245,0.589942,0.151935,0.654333,0.858136,0.0263872,0.625655,0.478699,0.275687,0.941142,0.0322997,0.61855,0.973441,0.613434,0.261321,0.0437764,0.791696,0.854354,0.262235,0.476707,0.848382,0.548014,0.057077,0.31452,0.153378,0.22727,0.635919,0.261759,0.855162,0.644323,0.228176,0.097159,0.742824,0.679316,0.889148,0.443589,0.445038,0.479444,0.145414,0.397185,0.00725281,0.970304,0.376371,0.0138025,0.646733,0.432077,0.526235,0.799752,0.597773,0.378828,0.245261,0.653074,0.182981,0.845112,0.336037,0.478074,0.588091,0.980201,0.997999,0.101549,0.617935,0.248461,0.574515,0.405392,0.97701,0.937115,0.520489,0.82621,0.608351,0.332362,0.665466,0.862118,0.661353,0.0625798,0.774524,0.45903,0.908446,0.971563,0.902893,0.956469,0.355124,0.335393,0.306564,0.261892,0.995917,0.610364,0.257797,0.323767,0.51406,0.0203513,0.499237,0.979554,0.847524,0.801337,0.942208,0.565516,0.45654,0.167903,0.661229,0.379887,0.124341,0.88427,0.961724,0.474072,0.782395,0.728289,0.894338,0.00164992,0.74398,0.711416,0.556423,0.360196,0.777303,0.390603,0.320537,0.555836,0.485635,0.548938,0.882921,0.283058,0.85111,0.603393,0.832668,0.867789,0.324733,0.993235,0.0150025,0.841179,0.15964,0.437221,0.561862,0.167783,0.502688,0.390336,0.103714,0.488691,0.25504,0.674396,0.433443,0.133725,0.326877,0.701902,0.174991,0.713807,0.579269,0.0980569,0.458035,0.532785,0.462162,0.141305,0.200684,0.447456,0.941122,0.196631,0.0899441,0.0794577,0.867278,0.811552,0.341528,0.99828,0.992788,0.61288,0.774214,0.57212,0.502452,0.358187,0.766144,0.0753609,0.230023,0.892663,0.360995,0.822956,0.92702,0.0370758,0.794284,0.265004,0.0141398,0.307127,0.545451,0.152156,0.556214,0.65227,0.308439,0.639744,0.45372,0.194538,0.36371,0.157855,0.667787,0.0486336,0.385024,0.0612128,0.0842151,0.826825,0.340653,0.481528,0.315618,0.581882,0.6609,0.330478,0.875806,0.834236,0.637387,0.70585,0.926359,0.299685,0.134665,0.506961,0.856446,0.169304,0.592781,0.945046,0.633466,0.588523,0.454857,0.691921,0.411685,0.322859,0.789751,0.826656,0.225625,0.103565,0.510938,0.740029,0.370549,0.643715,0.0453291,0.525312,0.0814524,0.0556238,0.791456,0.420729,0.46471,0.974437,0.969416,0.335375,0.472533,0.625926,0.000556111,0.764794,0.441141,0.789777,0.303398,0.875809,0.639405,0.766707,0.235396,0.313337,0.712169,0.144085,0.0105808,0.653283,0.757405,0.489807,0.163834,0.163756,0.466441,0.699664,0.776329,0.0332429,0.894618,0.859487,0.299502,0.0049575,0.602395,0.661346,0.119084,0.540836,0.278571,0.877068,0.24426,0.377105,0.265986,0.760664,0.484804,0.882811,0.195992,0.523892,0.35688,0.270183,0.321293,|0.792446,0.101969,0.741403,0.320933,0.108941,0.0791827,0.847691,0.631705,0.637959,0.121458,0.353927,0.274989,0.58973,0.371566,0.76156,0.0266336,0.291944,0.865984,0.85945,0.281591,0.955882,0.291893,0.531463,0.218446,0.734617,0.0470308,0.975152,0.976808,0.0781724,0.680661,0.724768,0.637686,0.491745,0.150813,0.57714,0.326984,0.982494,0.505241,0.503366,0.300756,0.189086,0.658569,0.152113,0.307495,0.983331,0.657768,0.360148,0.165278,0.282203,0.319666,0.309926,0.786332,0.395562,0.625244,0.642963,0.880789,0.595615,0.216864,0.781623,0.99376,0.286952,0.0713862,0.0606662,0.752963,0.721547,0.650538,0.43819,0.525066,0.839674,0.674314,0.957237,0.456138,0.00511736,0.0628296,0.171404,0.785988,0.570393,0.185657,0.723177,0.163592,0.383772,0.764954,0.0192834,0.12756,0.555494,0.911004,0.733864,0.637143,0.898148,0.021318,0.374133,0.0219647,0.0098834,0.462942,0.522449,0.257585,0.907026,0.987884,0.905025,0.641229,0.927299,0.12618,0.367472,0.031828,0.248983,0.351377,0.34809,0.512278,0.908107,0.23793,0.102976,0.383911,0.54153,0.708541,0.217397,0.0541939,0.0310578,0.534296,0.160614,0.542286,0.223,0.114463,0.17166,0.0166885,0.0708432,0.417712,0.248279,0.945396,0.853067,0.163801,0.534986,0.604791,0.275117,0.00634891,0.849436,0.207937,0.143807,0.243108,0.256956,0.394336,0.811313,0.486069,0.759086,0.222291,0.464866,0.19136,0.0818374,0.894955,0.26842,0.314997,0.561733,0.492182,0.0416339,0.850357,0.219953,0.755892,0.104893,0.0215225,0.377126,0.0382382,0.514735,0.100478,0.388044,0.554875,0.886543,0.627864,0.711853,0.667011,0.26823,0.579891,0.67475,0.671834,0.968252,0.633116,0.250557,0.156868,0.953308,0.533248,0.102366,0.973887,0.385935,0.20933,0.748937,0.37716,0.0747171,0.201112,0.813251,0.525202,0.184834,0.312274,0.247439,0.724231,0.946418,0.706856,0.851804,0.305449,0.364768,0.811781,0.634376,0.842948,0.448084,0.197316,0.268027,0.967335,0.576773,0.275296,0.548829,0.776123,0.20643,0.249392,0.0739457,0.220834,0.621258,0.906437,0.123278,0.116077,0.321619,0.949716,0.81012,0.201139,0.289404,0.901723,0.668308,0.89963,0.480678,0.658556,0.476011,0.828076,0.0541925,0.951306,0.133819,0.555028,0.947656,0.850482,0.104318,0.0701609,0.981319,0.286157,0.533182,0.167377,0.50483,0.542933,0.537101,0.828553,0.315909,0.378955,0.914453,0.180479,0.0582026,0.664798,0.705327,0.760972,0.835545,0.0659329,0.115773,0.294975,0.989273,0.802017,0.353855,0.0509239,0.740065,0.897187,0.87515,0.246864,0.606839,0.410763,0.163064,0.517535,0.510729,0.292399,0.160215,0.399111,0.956075,0.925244,0.636258,0.728475,0.798629,0.365002,0.816571,0.651939,0.43637,0.703275,0.0248551,0.405685,0.527618,0.151257,0.83852,0.615334,0.475787,0.739308,0.456719,0.176277,0.0383418,0.099529,0.483749,0.843606,0.197679,0.421068,0.528292,0.0618072,0.999224,0.163936,0.733253,0.461526,0.733175,0.63306,0.774755,0.761594,0.189551,0.376101,0.735963,0.688669,0.0243374,0.913757,0.496921,0.630142,0.300239,0.108577,0.0912017,0.942331,0.146165,0.836667,0.303319,0.403801,0.360556,0.389522,0.334024,0.25231,0.673786,0.72406,0.733638,0.292089,0.43051,0.792104,0.504833,0.800796,0.743532,0.462866,0.296744,0.0103095,0.606811,0.570114,0.23559,0.82976,0.802376,0.73318,0.286107,0.853303,0.473968,0.302267,0.170178,0.664492,0.684451,0.403664,0.387238,0.0190679,0.881061,0.623969,0.55931,0.299102,0.486477,0.815484,0.29416,0.656032,0.00554562,0.483457,0.624504,0.502897,0.22144,0.538828,0.260066,0.645002,0.276859,0.285654,0.688393,0.0586655,0.539985,0.403747,0.805651,0.72244,0.667199,0.246997,0.801362,0.222139,0.178403,0.679043,0.35046,0.817548,0.920029,0.210837,0.341299,0.127028,0.0681092,0.703908,0.260932,0.301715,0.160937,0.722151,0.308151,0.715628,0.289753,0.263217,0.768384,0.262348,0.25067,0.827206,0.726587,0.140033,0.11907,0.843009,0.798131,0.689889,0.602409,0.362857,0.595619,0.464137,0.531638,0.980279,0.527225,0.919138,0.799933,0.81154,0.630369,0.997221,0.375873,0.362471,0.0247001,0.768485,0.995789,0.0733014,0.492183,0.397819,0.663934,0.963646,0.570012,0.391184,0.600803,0.414197,0.76652,0.273999,0.520724,0.915869,0.0856206,0.460271,0.436433,0.44445,0.636117,0.00987726,0.188823,0.467423,0.557976,0.753569,0.0272204,0.531834,0.286125,0.0650839,0.122323,0.37856,0.778489,0.05801,0.881611,0.697733,0.359672,0.81907,0.426913,0.495272,0.0829774,0.746338,0.286282,0.653643,0.371884,0.589812,0.202126,0.460922,0.0621501,0.365418,0.565449,0.250016,0.985934,0.715085,0.449898,0.479665,0.868214,0.214509,0.643796,0.609161,0.420816,0.559644,0.967368,0.790534,0.856965,0.383062,0.744366,0.166341,0.235911,0.634688,0.940692,0.722954,0.783238,0.636671,0.696607,0.0514444,0.111718,0.444409,0.0854049,0.417705,0.487383,0.511081,0.464248,0.685784,0.328282,0.0603583,0.909756,0.31512,0.20801,0.512997,0.36463,0.686591,0.650059,0.718263,0.0634217,0.506347,0.491427,0.275651,0.050176,0.134556,0.262964,0.966531,0.898814,0.144943,0.815293,0.125521,0.175982,0.328271,0.997322,0.972296,0.0318955,0.273802,0.991812,0.919656,0.392263,0.442633,0.425604,0.15145,0.36501,0.647877,0.437852,0.553542,0.530441,0.552128,0.986818,0.694896,0.347387,0.714961,0.852724,0.310686,0.324053,0.394401,0.0914734,0.540203,0.223114,0.242778,0.0116083,0.440464,0.764542,0.124274,0.287055,0.996694,0.0862654,0.977295,0.679864,0.512721,0.306504,0.0778315,0.803267,0.279255,0.309015,0.739969,0.823858,0.424361,0.771529,0.52119,0.164659,0.248207,0.194438,0.692561,0.332858,0.441651,0.962579,0.101033,0.814733,0.0123823,0.327304,0.976614,0.725863,0.675937,0.291688,0.911298,0.0819615,0.466453,0.420244,0.35162,0.983389,0.779275,0.768524,0.323623,0.664263,0.712452,0.870977,0.78591,0.976161,0.879252,0.673469,0.700321,0.0416676,0.510948,0.74212,0.625425,0.624289,0.886972,0.587402,0.411899,0.543209,0.649878,0.845906,0.445571,0.943697,0.961885,0.908986,0.131345,0.483718,0.639782,0.656197,0.401219,0.0438436,0.508306,0.125671,0.61322,0.622464,0.170509,0.771535,0.826264,0.0414297,0.558758,0.0672449,0.0186943,0.6545,0.918937,0.197982,0.432145,0.420007,0.109064,0.521399,0.330318,0.0494438,0.355308,0.485559,0.534585,0.139375,0.952884,0.669682,0.548383,0.947608,0.0709363,0.104708,0.169373,0.347349,0.28369,0.0635716,0.582849,0.280218,0.0438654,0.530587,0.416389,0.629631,0.889865,0.489857,0.95354,0.993082,0.266629,0.296632,0.63974,0.136093,0.550228,0.0963129,0.397681,0.579051,0.29938,0.149431,0.476064,0.584487,0.492322,0.431642,0.151627,0.834404,0.697213,0.417452,0.790205,0.207108,0.0563245,0.763893,0.619447,0.994502,0.668938,0.380599,0.704829,0.544747,0.636822,0.63337,0.25968,0.834069,0.985577,0.791011,0.920562,0.734016,0.636902,0.563604,0.200025,0.118672,0.774344,0.463287,0.469943,0.366593,0.42644,0.378343,0.642995,0.331349,0.768283,0.041817,0.726241,0.78245,0.794192,0.428547,0.698491,0.0603109,0.802736,0.651581,0.0588012,0.6971,0.415065,0.36407,0.282119,0.862221,0.601381,0.0581776,0.11243,0.569821,0.349406,0.304157,0.859451,0.810774,0.978924,0.159213,0.207049,0.167644,0.315553,0.352453,0.384129,0.759468,0.671567,0.966422,0.972309,0.563607,0.553294,0.67812,0.925352,0.905099,0.455924,0.496104,0.29416,0.410178,0.352109,0.186786,0.303303,0.618503,0.150458,0.641119,0.524258,0.875265,0.280046,0.833037,0.900192,0.672499,0.0791178,0.614803,0.242817,0.372154,0.443585,0.129052,0.831181,0.870786,0.495891,0.817922,0.84083,0.572893,0.68331,0.942226,0.554601,0.158875,0.350446,0.944424,0.881457,0.451915,0.307224,0.837618,0.704405,0.0996009,0.646931,0.916446,0.521802,0.871244,0.203499,0.680169,0.105825,0.707013,0.699835,0.535284,0.154653,0.228644,0.43104,0.122715,0.570286,0.361033,0.00803924,0.967453,0.467692,0.935903,0.441079,0.827268,0.777535,0.965059,0.678371,0.554862,0.578676,0.635894,0.104651,0.452702,0.243278,0.145886,0.040868,0.177043,0.656516,0.797979,0.308239,0.415837,0.104719,0.246265,0.306015,0.132097,0.344114,0.273115,0.11479,0.343983,0.679175,0.293424,0.464326,0.945421,0.561623,0.869204,0.107097,0.336773,0.434654,0.653184,0.31673,0.747702,0.655495,0.740987,0.675064,0.300681,0.59459,0.706253,0.288041,0.319116,0.328085,0.664984,0.86856,0.393379,0.207827,0.101693,0.919085,0.231723,0.615028,0.954519,0.258851,0.907968,0.048914,0.334774,0.849678,0.118773,0.48519,0.791306,0.567811,0.762657,0.142361,0.659366,0.639535,0.423816,0.11196,0.185692,0.304794,0.329521,0.256652,0.173887,0.174146,0.986461,0.244009,0.880296,0.199305,0.716248,0.0942242,0.177731,0.422238,0.792064,0.831072,0.984979,0.100653,0.084039,0.558991,0.04013,0.830776,0.444137,0.492328,0.427057,0.513062,0.752171,0.98102,0.79451,0.801113,0.345826,0.297767,0.152501,0.0929019,0.175705,0.209783,0.861811,0.439654,0.809937,0.241062,0.946258,0.410177,0.169682,0.407238,0.765212,0.5819,0.108953,0.511739,0.657283,0.545666,0.261353,0.193113,0.450812,0.141194,0.0636379,0.567467,0.223637,0.366053,0.878725,0.676285,0.637756,0.0654583,0.519769,0.9836,0.291023,0.90455,0.882783,0.00530708,0.575138,0.187349,0.165324,0.214612,0.106001,0.57756,0.174156,0.151996,0.0959249,0.804162,0.645267,0.175841,0.264054,0.958773,0.366393,0.916386,0.298273,0.430197,0.0705723,0.595779,0.0610538,0.934345,0.791152,0.982338,0.332933,0.194311,0.657906,0.525658,0.437038,0.415168,0.10429,0.709837,0.502151,0.502721,|0.608294,0.28719,0.686113,0.573566,0.255914,0.1279,0.229831,0.0932189,0.686391,0.824783,0.456497,0.889406,0.273563,0.751869,0.384679,0.981086,0.606325,0.0187058,0.288643,0.298224,0.834368,0.901516,0.819398,0.155158,0.0367489,0.97187,0.388955,0.723946,0.163181,0.897786,0.571254,0.427912,0.489515,0.1809,0.0635071,0.611489,0.933323,0.627643,0.20162,0.980092,0.721107,0.408886,0.469331,0.0849484,0.10859,0.888467,0.752371,0.905428,0.962813,0.585696,0.427922,0.834956,0.451905,0.513848,0.0699956,0.0113328,0.360729,0.665678,0.114976,0.0728174,0.595747,0.670186,0.316216,0.715397,0.5359,0.355314,0.770754,0.341817,0.288952,0.0734476,0.50737,0.0184261,0.702543,0.420668,0.443594,0.378287,0.635123,0.44121,0.0170069,0.94871,0.0136659,0.408483,0.323297,0.923075,0.323671,0.0804778,0.770019,0.0684353,0.0144407,0.173335,0.0970781,0.399846,0.892715,0.278326,0.423349,0.233488,0.503435,0.806762,0.00819546,0.614284,0.478445,0.934927,0.915098,0.964818,0.203705,0.0139545,0.0804473,0.46219,0.204064,0.457621,0.261786,0.195704,0.863119,0.19335,0.247531,0.419105,0.193646,0.938993,0.288662,0.841634,0.277094,0.860443,0.302833,0.187475,0.775913,0.0438644,0.322645,0.519785,0.626395,0.760639,0.215749,0.122097,0.359059,0.917801,0.936587,0.950958,0.45462,0.526258,0.439443,0.626748,0.788056,0.06343,0.402685,0.046701,0.647107,0.0814174,0.791438,0.221714,0.664694,0.650687,0.155772,0.187315,0.489782,0.103879,0.511002,0.715921,0.939246,0.200019,0.795429,0.162999,0.679302,0.666218,0.129833,0.275465,0.999804,0.513681,0.915551,0.0466909,0.830265,0.139527,0.0605251,0.720629,0.663387,0.572856,0.212764,0.845526,0.815364,0.444531,0.75539,0.6858,0.406667,0.745809,0.136561,0.967511,0.212136,0.380696,0.858951,0.744466,0.200658,0.167946,0.410976,0.389984,0.115101,0.128071,0.260574,0.141359,0.964193,0.346683,0.250554,0.722885,0.670251,0.180427,0.327285,0.967417,0.0233173,0.848908,0.386806,0.583848,0.734124,0.0640769,0.616538,0.346638,0.998383,0.66903,0.5884,0.503548,0.567046,0.230528,0.823521,0.0401472,0.337044,0.388426,0.160109,0.516829,0.680773,0.487536,0.304334,0.789144,0.251413,0.944315,0.45904,0.051865,0.856555,0.699038,0.359912,0.942347,0.551691,0.923145,0.316856,0.265942,0.400411,0.47654,0.673143,0.767995,0.0363199,0.287382,0.685096,0.587836,0.913418,0.181602,0.286308,0.825981,0.970407,0.937816,0.692348,0.431455,0.715067,0.233418,0.79795,0.0483533,0.524596,0.142938,0.435578,0.129696,0.480535,0.845808,0.766259,0.548233,0.586515,0.24513,0.206455,0.489752,0.11875,0.951805,0.185358,0.179752,0.466059,0.375678,0.071623,0.629603,0.369047,0.311756,0.479319,0.499758,0.102979,0.652412,0.916487,0.355434,0.0165881,0.798311,0.711929,0.927118,0.69533,0.0103016,0.951385,0.634224,0.462367,0.474423,0.498006,0.975969,0.0692785,0.214064,0.285359,0.676355,0.628775,0.863327,0.558752,0.65209,0.305555,0.29721,0.489888,0.391306,0.191231,0.475823,0.220622,0.406076,0.0348026,0.849782,0.960366,0.733649,0.389483,0.217818,0.616749,0.525088,0.0496916,0.860541,0.870825,0.0752909,0.315695,0.651661,0.381002,0.283164,0.524591,0.581311,0.464091,0.779518,0.583626,0.384517,0.600891,0.823847,0.0433406,0.873842,0.0614902,0.647941,0.433449,0.351043,0.401461,0.338711,0.842036,0.897366,0.954856,0.316179,0.566681,0.464363,0.368207,0.730201,4.82798e-05,0.148861,0.226564,0.418896,0.166264,0.536975,0.696337,0.957953,0.897473,0.181391,0.564537,0.415223,0.312566,0.374622,0.661529,0.61022,0.466613,0.885472,0.237789,0.452936,0.962102,0.694412,0.531175,0.279062,0.849906,0.85365,0.0279896,0.232141,0.166118,0.0782309,0.638794,0.352801,0.212621,0.260149,0.11557,0.470098,0.424032,0.687459,0.618665,0.88764,0.471467,0.828558,0.83861,0.618299,0.765644,0.115229,0.14775,0.565525,0.0456973,0.839727,0.667222,0.0501938,0.505956,0.38625,0.916768,0.211634,0.298431,0.0508688,0.363584,0.619347,0.189232,0.388518,0.470134,0.363063,0.362258,0.337374,0.267777,0.583021,0.503184,0.144099,0.880956,0.343063,0.240544,0.179998,0.671761,0.804268,0.467103,0.0441946,0.157802,0.689694,0.792637,0.892175,0.288996,0.286175,0.368715,0.69284,0.24794,0.705742,0.918908,0.659074,0.525476,0.90913,0.31563,0.813012,0.50575,0.123004,0.763696,0.336503,0.876921,0.0855634,0.55368,0.770485,0.347275,0.827811,0.78479,0.270481,0.826424,0.697753,0.365778,0.0507587,0.326654,0.455055,0.426137,0.559597,0.56571,0.755077,0.185627,0.638846,0.0841614,0.430982,0.346239,0.802574,0.411353,0.161553,0.348957,0.920059,0.0730746,0.992595,0.0712566,0.606578,0.311325,0.32673,0.633429,0.786463,0.921496,0.591542,0.594783,0.405994,0.380801,0.401848,0.62726,0.479426,0.886623,0.559179,0.856312,0.563771,0.172607,0.221251,0.439565,0.581503,0.0198357,0.0736821,0.845516,0.276892,0.590741,0.143029,0.114043,0.898159,0.958029,0.107504,0.727399,0.000987649,0.158698,0.327468,0.577384,0.806708,0.493849,0.920414,0.462696,0.720565,0.72972,0.0296469,0.954782,0.028003,0.725108,0.1252,0.225479,0.267583,0.0170422,0.40339,0.228783,0.790112,0.0958267,0.607502,0.0673242,0.0594302,0.135881,0.872692,0.398421,0.177387,0.379533,0.152938,0.0350393,0.310132,0.218059,0.969976,0.922754,0.315312,0.411273,0.549809,0.387618,0.881326,0.129969,0.794977,0.657027,0.0196568,0.584952,0.565267,0.607275,0.112139,0.184192,0.289383,0.182506,0.548742,0.145883,0.617424,0.714853,0.183626,0.0695891,0.660554,0.416933,0.339397,0.685549,0.454363,0.440457,0.170203,0.187584,0.236631,0.629607,0.592035,0.740945,0.33856,0.744099,0.800805,0.647781,0.233594,0.16144,0.340913,0.308911,0.0666465,0.718761,0.456683,0.602755,0.113777,0.890275,0.580982,0.560948,0.993629,0.0186939,0.0158175,0.858213,0.245053,0.13481,0.813415,0.587322,0.034296,0.07594,0.056881,0.234541,0.636495,0.670014,0.7606,0.527236,0.527774,0.862073,0.565753,0.829005,0.729472,0.799548,0.874972,0.940831,0.967649,0.94248,0.173937,0.385267,0.377209,0.542034,0.456004,0.431563,0.0460678,0.16955,0.610548,0.779966,0.293325,0.617487,0.291812,0.244865,0.0405633,0.193649,0.404715,0.457803,0.636325,0.73804,0.570121,0.177134,0.0189133,0.145371,0.0800722,0.625799,0.673252,0.625223,0.514553,0.160926,0.71518,0.318654,0.628933,0.816965,0.881172,0.433829,0.992343,0.832584,0.211488,0.29359,0.474667,0.527939,0.144804,0.285986,0.711098,0.53015,0.761157,0.790962,0.774802,0.599485,0.61153,0.313715,0.377751,0.625374,0.133697,0.801541,0.910966,0.0538064,0.0112794,0.504038,0.363042,0.303573,0.256968,0.186165,0.541461,0.264668,0.673184,0.238902,0.553928,0.406583,0.488788,0.581816,0.823218,0.744745,0.647526,0.0854701,0.918754,0.92506,0.287961,0.446913,0.500362,0.0273817,0.0625562,0.185054,0.230346,0.500785,0.883773,0.665771,0.00641227,0.333493,0.250236,0.971231,0.887555,0.257381,0.815939,0.740388,0.24445,0.418754,0.656011,0.849322,0.394589,0.455344,0.579743,0.117038,0.594904,0.643904,0.0636671,0.103102,0.509988,0.917413,0.598785,0.562257,0.0296739,0.378655,0.0113599,0.171139,0.0916401,0.047147,0.522648,0.956117,0.435655,0.0715995,0.599652,0.121913,0.891797,0.693816,0.428391,0.188293,0.469698,0.598005,0.482389,0.409235,0.592695,0.880529,0.240929,0.369439,0.181858,0.993496,0.442179,0.396186,0.775324,0.0680726,0.199787,0.422687,0.00251675,0.379574,0.16324,0.206781,0.194932,0.218417,0.0322614,0.216966,0.541165,0.878217,0.660849,0.455161,0.772996,0.776082,0.562366,0.195218,0.18755,0.148194,0.244443,0.605005,0.0193552,0.755587,0.252295,0.0919289,0.907405,0.114845,0.791938,0.555244,0.205224,0.996012,0.217887,0.109887,0.0124153,0.418929,0.0539284,0.393352,0.15958,0.850235,0.3078,0.0136066,0.362545,0.755728,0.188445,0.242738,0.76611,0.124898,0.952296,0.234294,0.044929,0.680069,0.389206,0.374848,0.603153,0.907846,0.925074,0.863697,0.350771,0.810472,0.875136,0.8617,0.420353,0.00727385,0.818167,0.489018,0.992626,0.888096,0.257537,0.791001,0.477966,0.0210795,0.957204,0.0564551,0.874653,0.678365,0.0788901,0.0247726,0.47767,0.108545,0.00671238,0.20911,0.89356,0.940876,0.996545,0.520452,0.39201,0.876412,0.265558,0.0852519,0.316343,0.442091,0.578923,0.395565,0.0249754,0.674309,0.993054,0.0560317,0.169296,0.183708,0.69244,0.801493,0.167968,0.177507,0.091594,0.186078,0.89793,0.668669,0.165931,0.912063,0.405728,0.787931,0.533592,0.746467,0.505915,0.299558,0.232768,0.0750891,0.233828,0.751777,0.921836,0.506509,0.658513,0.941823,0.92464,0.321678,0.329992,0.323887,0.0819776,0.540178,0.253103,0.810436,0.377908,0.517726,0.319252,0.214254,0.268409,0.913337,0.921048,0.291112,0.158327,0.293309,0.542538,0.341271,0.247299,0.372441,0.714335,0.896044,0.976517,0.758493,0.62426,0.222177,0.4727,0.810159,0.778472,0.525837,0.930233,0.727494,0.0907514,0.935804,0.556261,0.375569,0.914237,0.33084,0.474373,0.354849,0.935495,0.37646,0.853723,0.830071,0.102028,0.96464,0.204925,0.948814,0.953142,0.950658,0.755083,0.521218,0.872945,0.169919,0.727185,0.268211,0.311852,0.835098,0.183455,0.84745,0.497666,0.476234,0.748234,0.0902831,0.83361,0.185314,0.436662,0.192104,0.376895,0.487194,0.565497,0.974778,0.393083,0.464673,0.629491,0.803568,0.407565,0.290183,0.178306,0.836879,0.731942,0.806332,0.908997,0.854627,0.579335,0.248985,0.0929427,0.613363,0.990535,0.19921,0.532371,0.0232652,0.321962,0.817084,0.536058,0.0691719,0.0526575,0.631048,0.0115881,0.567145,0.244472,0.0401298,0.720304,|0.554764,0.141835,0.978542,0.899988,0.219733,0.949336,0.0638304,0.461145,0.642322,0.865478,0.869782,0.965994,0.933865,0.260306,0.207781,0.289763,0.866624,0.637934,0.494225,0.909131,0.982674,0.810003,0.942984,0.504913,0.776124,0.41356,0.796848,0.466179,0.552436,0.758157,0.815055,0.406405,0.0169558,0.837536,0.900706,0.680991,0.16297,0.859606,0.842403,0.354609,0.74791,0.735209,0.604919,0.202135,0.0368635,0.974801,0.341196,0.32874,0.996566,0.796245,0.604706,0.543693,0.461275,0.938169,0.678045,0.627891,0.253402,0.662345,0.0454968,0.952531,0.54372,0.633122,0.130098,0.606271,0.309812,0.0500003,0.763829,0.563943,0.898906,0.679163,0.659899,0.0820955,0.186534,0.855619,0.0443006,0.410479,0.488107,0.865621,0.005216,0.543147,0.361388,0.452488,0.77432,0.702239,0.554677,0.058717,0.845232,0.0374734,0.657146,0.96813,0.209729,0.877333,0.342247,0.451679,0.124125,0.687888,0.200532,0.588655,0.28325,0.21513,0.528607,0.900061,0.679236,0.881288,0.678155,0.0163398,0.737028,0.438406,0.293762,0.577603,0.80144,0.92106,0.259438,0.7149,0.0833448,0.145772,0.106913,0.288451,0.187833,0.0387685,0.00228518,0.221282,0.203336,0.327179,0.724372,0.895143,0.82408,0.79423,0.296152,0.0580951,0.0879623,0.958697,0.458529,0.789503,0.165084,0.430229,0.882121,0.436227,0.112923,0.0838573,0.753516,0.0329468,0.965497,0.778923,0.491444,0.0594228,0.0647703,0.177454,0.168233,0.0349795,0.841065,0.827606,0.673858,0.479313,0.700612,0.765497,0.683025,0.0672621,0.970208,0.751222,0.980329,0.12548,0.940322,0.285687,0.0014084,0.993648,0.259836,0.272575,0.371537,0.109512,0.16518,0.702854,0.114709,0.452951,0.734916,0.608771,0.100209,0.138549,0.546101,0.91931,0.24019,0.510486,0.972681,0.450019,0.558141,0.900002,0.952448,0.153748,0.798636,0.0958817,0.642019,0.698485,0.594229,0.458198,0.988143,0.658297,0.176284,0.0103408,0.262438,0.21091,0.986272,0.145607,0.908492,0.593273,0.160336,0.0547313,0.63926,0.70667,0.611583,0.740656,0.662862,0.0748742,0.50477,0.4165,0.0123729,0.616181,0.400508,0.988485,0.172713,0.735163,0.606525,0.490764,0.0950152,0.171562,0.128121,0.971747,0.935462,0.892284,0.409699,0.419342,0.470301,0.742735,0.242471,0.024646,0.946444,0.586474,0.979915,0.0262515,0.847866,0.960339,0.886819,0.540033,0.479226,0.793097,0.34025,0.805973,0.024823,0.551817,0.67787,0.959337,0.860532,0.393208,0.394839,0.883051,0.436467,0.869243,0.0265061,0.897335,0.0405456,0.977442,0.740148,0.91563,0.594736,0.85029,0.0722194,0.137471,0.526406,0.622284,0.201262,0.439993,0.746844,0.106008,0.188913,0.192482,0.758592,0.590985,0.383362,0.327597,0.00202239,0.804622,0.345244,0.139219,0.137918,0.682418,0.612222,0.303095,0.652477,0.170281,0.926975,0.160683,0.338475,0.43754,0.814695,0.692626,0.663771,0.586139,0.140077,0.775881,0.85527,0.377566,0.572929,0.453082,0.0910631,0.187455,0.222436,0.978465,0.635284,0.776778,0.744946,0.699413,0.725945,0.852641,0.321541,0.874758,0.805521,0.444397,0.276724,0.15463,0.631343,0.507056,0.826548,0.803869,0.462102,0.930742,0.194768,0.889216,0.988749,0.249212,0.233467,0.0237067,0.524892,0.60954,0.479217,0.0885838,0.805572,0.00679141,0.618934,0.287724,0.159295,0.68821,0.334121,0.954564,0.0570884,0.199879,0.885366,0.0136368,0.26898,0.434931,0.877654,0.01941,0.602246,0.0290299,0.228183,0.239465,0.293957,0.0847227,0.237896,0.439031,0.235955,0.516093,0.756968,0.370876,0.415109,0.168879,0.202424,0.962585,0.787601,0.455495,0.942473,0.932,0.848859,0.0629813,0.184098,0.209452,0.637168,0.558017,0.286839,0.73449,0.22709,0.521787,0.498817,0.739755,0.104745,0.242373,0.483433,0.082461,0.158713,0.913519,0.524163,0.211123,0.325864,0.239939,0.904105,0.497748,0.705222,0.0237395,0.150021,0.712899,0.936307,0.705018,0.456264,0.0611073,0.324308,0.0701791,0.842385,0.689365,0.0951256,0.637396,0.469516,0.306965,0.891368,0.0358728,0.127329,0.432152,0.294518,0.697118,0.0451452,0.297604,0.818619,0.645974,0.157913,0.0881985,0.139341,0.763643,0.345554,0.418551,0.42629,0.546657,0.758838,0.932986,0.564778,0.725165,0.959251,0.908515,0.615771,0.127983,0.894485,0.107462,0.382556,0.707162,0.801648,0.0298005,0.661913,0.0474137,0.615036,0.831303,0.555622,0.931607,0.504059,0.544661,0.114645,0.91699,0.568435,0.953011,0.445057,0.665871,0.354803,0.851643,0.953745,0.985155,0.554769,0.0029791,0.119609,0.0407581,0.601987,0.356782,0.982728,0.273447,0.494378,0.404556,0.731862,0.174835,0.794821,0.767873,0.275403,0.899932,0.637669,0.530556,0.302859,0.0813581,0.459597,0.325951,0.869678,0.164751,0.74219,0.0853969,0.642429,0.689266,0.76339,0.203537,0.526444,0.894377,0.827465,0.0752251,0.894405,0.247394,0.485996,0.545447,0.0289138,0.468401,0.440826,0.793681,0.872735,0.565753,0.187048,0.413758,0.0586098,0.568791,0.220117,0.0972919,0.743014,0.582802,0.867107,0.719048,0.894687,0.169032,0.465733,0.369681,0.961442,0.20672,0.552305,0.033308,0.420746,0.0254169,0.632925,0.751794,0.767163,0.0826897,0.883817,0.925762,0.1372,0.930988,0.615055,0.896367,0.28517,0.519735,0.449773,0.489293,0.411212,0.703982,0.50323,0.862735,0.745657,0.622405,0.183047,0.50767,0.426116,0.569836,0.292131,0.731362,0.427043,0.0773863,0.19171,0.441939,0.822225,0.662859,0.4295,0.718515,0.595751,0.712939,0.786608,0.306427,0.324393,0.343594,0.564812,0.146925,0.727285,0.172512,0.464904,0.0510131,0.909805,0.752941,0.956257,0.384335,0.728999,0.749787,0.289696,0.635769,0.776071,0.902363,0.726244,0.855142,0.819807,0.796245,0.482708,0.692795,0.703881,0.59472,0.328298,0.0852634,0.295512,0.356202,0.615994,0.190359,0.804138,0.435879,0.450957,0.573613,0.387832,0.101856,0.465465,0.300607,0.958454,0.616879,0.839248,0.191288,0.824732,0.717446,0.515357,0.366654,0.863034,0.592756,0.993157,0.419206,0.102056,0.748461,0.40746,0.88105,0.195838,0.260252,0.59698,0.754554,0.997349,0.344917,0.391436,0.329193,0.817854,0.567327,0.823294,0.0340948,0.287185,0.712064,0.678085,0.912957,0.896202,0.677716,0.562584,0.0869993,0.933857,0.0643799,0.636884,0.578002,0.688231,0.925161,0.795382,0.938303,0.355263,0.374241,0.333184,0.718635,0.197562,0.231921,0.697037,0.785761,0.0338564,0.332302,0.174845,0.872603,0.168058,0.191497,0.908107,0.710222,0.471543,0.0046429,0.179864,0.778689,0.698636,0.753322,0.699894,0.320085,0.410642,0.441884,0.163655,0.44597,0.431787,0.331216,0.956792,0.0379155,0.661675,0.230544,0.878984,0.256915,0.756042,0.796463,0.777631,0.212599,0.0217866,0.9116,0.976444,0.427482,0.833899,0.95286,0.337673,0.86609,0.805449,0.623282,0.380476,0.640962,0.468344,0.764978,0.0788208,0.592713,0.863372,0.516005,0.234836,0.695359,0.395528,0.833701,0.957404,0.248956,0.60962,0.791243,0.309677,0.00702512,0.193152,0.442113,0.289414,0.00871485,0.553547,0.0544955,0.787118,0.703766,0.268312,0.148286,0.799031,0.853078,0.617227,0.221694,0.648818,0.349876,0.576419,0.100614,0.889151,0.0767612,0.105207,0.770434,0.238356,0.442953,0.90473,0.446492,0.42239,0.0627334,0.919264,0.710349,0.0800684,0.525304,0.315304,0.830671,0.66517,0.33948,0.672066,0.469238,0.764342,0.918762,0.19121,0.65413,0.244019,0.34444,0.592695,0.221235,0.394867,0.357422,0.85623,0.377065,0.626194,0.729037,0.0528371,0.266935,0.834923,0.315292,0.243198,0.343893,0.94609,0.293033,0.821862,0.162685,0.811665,0.779127,0.544598,0.175867,0.571994,0.231639,0.744014,0.345653,0.844148,0.0587413,0.409477,0.422604,0.6055,0.656734,0.246854,0.776075,0.475812,0.991398,0.143132,0.667044,0.817716,0.168513,0.399425,0.393809,0.00319564,0.696019,0.561008,0.0447499,0.280916,0.540616,0.461951,0.383243,0.326171,0.219437,0.026093,0.942531,0.804112,0.870874,0.631018,0.0268898,0.578923,0.142966,0.934463,0.174437,0.586874,0.989245,0.148425,0.214599,0.140015,0.902725,0.156956,0.950628,0.158505,0.447391,0.033657,0.745912,0.10852,0.834718,0.40742,0.139592,0.689773,0.485498,0.156042,0.940817,0.276936,0.840492,0.252511,0.456233,0.0326449,0.422151,0.488607,0.261593,0.0702674,0.340586,0.760169,0.71497,0.118227,0.885537,0.153455,0.892368,0.171849,0.0600677,0.781252,0.114864,0.301942,0.358193,0.462468,0.646586,0.746067,0.307777,0.253033,0.425268,0.488872,0.875389,0.383281,0.00413728,0.280023,0.427946,0.0926273,0.185103,0.309646,0.0578635,0.528575,0.967245,0.610289,0.495165,0.434256,0.396271,0.0221391,0.74413,0.241312,0.573913,0.0824068,0.510579,0.761238,0.828273,0.394143,0.0578545,0.0269252,0.888619,0.049888,0.782314,0.563664,0.745677,0.972615,0.746081,0.148292,0.509535,0.318851,0.648268,0.552674,0.118225,0.236121,0.578217,0.104518,0.0250108,0.914249,0.890391,0.00664979,0.321234,0.962323,0.286795,0.247644,0.218201,0.882468,0.406397,0.457917,0.110063,0.841431,0.548044,0.736741,0.762763,0.153325,0.134743,0.22502,0.215265,0.250408,0.426752,0.367051,0.0981298,0.917605,0.843773,0.818186,0.543243,0.936844,0.38022,0.589539,0.814427,0.263096,0.420769,0.522112,0.0988612,0.674562,0.953984,0.239992,0.483584,0.152801,0.0469353,0.864245,0.511804,0.474729,0.654571,0.207499,0.3298,0.276398,0.491777,0.150508,0.594443,0.187587,0.750254,0.649622,0.605969,0.716559,0.0351611,0.0941361,0.314033,0.0505252,0.061487,0.992402,0.173375,0.36413,0.00642818,0.711969,0.966072,0.540543,0.743065,0.374089,0.137211,0.153225,0.789124,0.893039,0.808387,0.754611,0.149429,0.514815,0.579519,0.0315736,0.427297,0.06995,0.316269,0.999727,0.0323544,0.706055,0.601334,|0.349897,0.496236,0.100088,0.361235,0.293439,0.798431,0.513168,0.816269,0.938567,0.24639,0.900284,0.937592,0.763408,0.17267,0.83248,0.141833,0.956583,0.391363,0.612956,0.000356019,0.135307,0.891556,0.488728,0.150461,0.230836,0.244576,0.428335,0.40495,0.822804,0.294128,0.439764,0.675949,0.836668,0.149308,0.836073,0.102346,0.627888,0.23033,0.759051,0.786454,0.292826,0.0296019,0.516845,0.426609,0.53241,0.575285,0.896848,0.343481,0.543991,0.10734,0.625014,0.564795,0.936859,0.350415,0.474546,0.538404,0.806824,0.594956,0.84176,0.412547,0.743782,0.0736431,0.906364,0.425574,0.0489696,0.216061,0.979324,0.064334,0.231097,0.656884,0.673628,0.592404,0.972427,0.413706,0.105331,0.136228,0.108603,0.463806,0.515835,0.945683,0.79875,0.81008,0.970144,0.722363,0.0306288,0.618738,0.959638,0.434791,0.754331,0.710568,0.545049,0.387058,0.818851,0.101342,0.487857,0.39052,0.213272,0.782943,0.730494,0.925348,0.534841,0.439503,0.472109,0.16963,0.96253,0.455225,0.106414,0.413601,0.401822,0.526983,0.348303,0.87432,0.947375,0.266114,0.211544,0.0231214,0.56607,0.418273,0.686156,0.566975,0.78604,0.560421,0.0210955,0.661689,0.0785406,0.884317,0.129676,0.88463,0.888308,0.0935095,0.0850739,0.650737,0.0443009,0.517561,0.823193,0.282832,0.306379,0.931537,0.676586,0.0544312,0.443539,0.261455,0.411864,0.128743,0.781029,0.700147,0.288419,0.599589,0.857518,0.490714,0.950279,0.203957,0.157797,0.000888705,0.624348,0.331448,0.341366,0.97715,0.652234,0.378196,0.310077,0.863003,0.0459189,0.0637053,0.0617638,0.422691,0.854873,0.876259,0.195787,0.410434,0.151864,0.644372,0.139486,0.36698,0.805326,0.658085,0.247406,0.0205333,0.728895,0.956395,0.473319,0.56457,0.456064,0.455078,0.960052,0.461811,0.0657706,0.895683,0.767886,0.363232,0.330356,0.102949,0.740665,0.61543,0.470012,0.603953,0.535174,0.633059,0.441604,0.368846,0.052583,0.840267,0.777476,0.880024,0.0716845,0.134248,0.0261442,0.826262,0.529646,0.312495,0.038989,0.00565457,0.448182,0.505123,0.438638,0.784192,0.102252,0.0319282,0.503018,0.77428,0.333425,0.90809,0.867567,0.910767,0.260052,0.138813,0.319154,0.605909,0.47091,0.927156,0.331204,0.482235,0.130339,0.750922,0.856628,0.69231,0.550103,0.174869,0.358073,0.373422,0.694917,0.547525,0.506278,0.90822,0.00783348,0.668809,0.575188,0.392716,0.475559,0.926998,0.808444,0.466542,0.0765568,0.984339,0.20976,0.847355,0.620603,0.621016,0.647589,0.934384,0.638249,0.0884042,0.112428,0.555875,0.705959,0.376684,0.0625573,0.953267,0.58062,0.501746,0.44814,0.47112,0.107188,0.77395,0.692193,0.0672358,0.526319,0.302219,0.496015,0.482233,0.936803,0.566532,0.54983,0.671402,0.601618,0.220529,0.631603,0.0351725,0.316071,0.702673,0.85284,0.595481,0.115065,0.665899,0.290875,0.602722,0.0301449,0.782763,0.220924,0.925771,0.879031,0.537155,0.142271,0.740084,0.265568,0.740413,0.867866,0.514306,0.444256,0.608049,0.86759,0.62199,0.475114,0.215925,0.793345,0.0609918,0.0984452,0.655273,0.924196,0.583638,0.61801,0.616472,0.703421,0.308631,0.375575,0.132202,0.0282413,0.845506,0.706585,0.153294,0.852137,0.197507,0.604796,0.880303,0.498402,0.631184,0.991299,0.450744,0.573924,0.873289,0.0950889,0.665258,0.694793,0.355947,0.908166,0.130017,0.492991,0.409211,0.572202,0.262195,0.825406,0.669546,0.0791243,0.298127,0.57376,0.238043,0.594314,0.835631,0.235388,0.578941,0.721638,0.602638,0.697731,0.93017,0.693931,0.805578,0.455076,0.600227,0.681474,0.257268,0.341585,0.572544,0.562231,0.673834,0.154617,0.342191,0.162819,0.297565,0.199899,0.714616,0.280754,0.138075,0.41097,0.0149603,0.841875,0.0631693,0.864148,0.420287,0.13058,0.650159,0.355182,0.345499,0.890074,0.660277,0.649648,0.488317,0.849741,0.385526,0.86945,0.124887,0.799566,0.526365,0.0807413,0.655076,0.194964,0.928374,0.64695,0.526896,0.744266,0.160703,0.430165,0.0724775,0.698803,0.829879,0.175993,0.931217,0.907658,0.763611,0.134648,0.103618,0.20604,0.963165,0.785047,0.311995,0.383998,0.0964921,0.126402,0.0297548,0.961745,0.326711,0.286075,0.510735,0.954896,0.411733,0.21825,0.985445,0.348446,0.607285,0.865847,0.577266,0.639777,0.823792,0.909427,0.225618,0.490649,0.67194,0.467813,0.0613267,0.934429,0.577941,0.968387,0.582924,0.779451,0.120012,0.337161,0.852737,0.704868,0.070595,0.777745,0.284845,0.449846,0.697799,0.447405,0.114492,0.222283,0.99327,0.0519884,0.00835627,0.934857,0.0710568,0.491973,0.454801,0.110256,0.522548,0.783344,0.753783,0.2691,0.211485,0.315501,0.020037,0.881089,0.0704841,0.36306,0.346446,0.434388,0.764762,0.944752,0.0587073,0.971589,0.771023,0.741287,0.318665,0.905359,0.674053,0.689347,0.860392,0.24078,0.383372,0.622921,0.0223159,0.0424039,0.79301,0.643009,0.375378,0.0494294,0.0590283,0.945626,0.701232,0.546576,0.0238416,0.0706463,0.737987,0.913523,0.262793,0.434103,0.121846,0.855193,0.084331,0.352354,0.0937111,0.609154,0.257944,0.814556,0.47686,0.923451,0.779904,0.0971778,0.298481,0.157013,0.337205,0.208294,0.47119,0.124582,0.295465,0.0475863,0.569629,0.46959,0.978247,0.613661,0.544851,0.744202,0.786996,0.588434,0.814226,0.900107,0.434316,0.815979,0.571289,0.964968,0.996416,0.107277,0.885071,0.950708,0.314803,0.176677,0.912568,0.142154,0.454355,0.478536,0.472766,0.731797,0.0136698,0.413998,0.670152,0.439443,0.946354,0.899627,0.00549245,0.86099,0.602988,0.444885,0.319526,0.660031,0.205638,0.511083,0.619342,0.0938307,0.666278,0.135979,0.905257,0.804625,0.841941,0.0481362,0.235018,0.900004,0.558043,0.10206,0.258886,0.497391,0.414111,0.390509,0.58597,0.275306,0.33501,0.906016,0.0402598,0.63939,0.693196,0.861356,0.734357,0.697667,0.766771,0.0259474,0.654895,0.215759,0.925876,0.581131,0.0197635,0.845458,0.264618,0.205861,0.238149,0.96662,0.963107,0.1885,0.853986,0.914184,0.555798,0.93821,0.151035,0.260402,0.307055,0.588778,0.128514,0.295745,0.753409,0.0261064,0.0804452,0.920684,0.142546,0.80828,0.169369,0.231434,0.901586,0.330531,0.929372,0.178172,0.263482,0.850719,0.054686,0.760422,0.561978,0.40079,0.280706,0.747229,0.403861,0.945715,0.519771,0.991203,0.857202,0.0686126,0.615027,0.649846,0.407109,0.671434,0.680158,0.729917,0.0989637,0.434278,0.350281,0.365444,0.21381,0.153544,0.368609,0.33119,0.526499,0.174975,0.496645,0.595315,0.903504,0.177391,0.623964,0.393725,0.933251,0.405598,0.856023,0.539156,0.84542,0.102269,0.507816,0.301734,0.877957,0.531965,0.277066,0.519296,0.471193,0.330856,0.572608,0.51243,0.993554,0.603396,0.147201,0.506536,0.130392,0.41237,0.97612,0.710138,0.22543,0.357463,0.796201,0.836594,0.176081,0.369911,0.175957,0.439671,0.0969412,0.596009,0.217494,0.0806635,0.681401,0.263162,0.149694,0.75313,0.269211,0.947874,0.748379,0.777449,0.758583,0.566625,0.11586,0.550977,0.881877,0.458482,0.623834,0.888777,0.183472,0.878546,0.395042,0.56735,0.578538,0.082617,0.0515819,0.373687,0.502947,0.977564,0.79567,0.688719,0.665146,0.792664,0.641718,0.945507,0.986156,0.972331,0.220638,0.931874,0.166104,0.701647,0.86245,0.153554,0.65205,0.906312,0.35874,0.933744,0.378846,0.885535,0.000789762,0.311982,0.0957535,0.536737,0.595325,0.443411,0.950805,0.025479,0.224083,0.998601,0.515918,0.597885,0.680616,0.922293,0.354354,0.862069,0.127398,0.437551,0.234625,0.210122,0.413694,0.575195,0.0545837,0.854575,0.116567,0.273046,0.274839,0.445362,0.661608,0.426483,0.565401,0.590666,0.0469647,0.266963,0.991163,0.0385049,0.923026,0.303235,0.745158,0.0597342,0.50739,0.634633,0.0678353,0.326398,0.949516,0.355718,0.357657,0.417535,0.96178,0.405561,0.901033,0.135901,0.955863,0.627125,0.100288,0.397465,0.213063,0.931149,0.990629,0.664915,0.425959,0.546241,0.318098,0.0103431,0.505336,0.619481,0.473684,0.208596,0.278772,0.466984,0.201618,0.341324,0.72555,0.761179,0.601399,0.607515,0.167294,0.0225982,0.657615,0.769987,0.650295,0.796054,0.0477239,0.583716,0.53367,0.464342,0.73856,0.791889,0.45883,0.268259,0.742774,0.801795,0.76334,0.0339745,0.312835,0.285627,0.268735,0.740865,0.852683,0.0756665,0.863309,0.791624,0.0028019,0.80493,0.464261,0.00328553,0.860921,0.23947,0.815766,0.486844,0.929846,0.711284,0.166934,0.552727,0.782632,0.47571,0.262398,0.973444,0.812769,0.681123,0.102373,0.228106,0.113776,0.0532086,0.744372,0.918897,0.307973,0.041031,0.660567,0.0198042,0.589398,0.732637,0.53656,0.960569,0.475281,0.103874,0.416869,0.713784,0.0880114,0.437912,0.806173,0.948603,0.217696,0.667688,0.815792,0.378306,0.16571,0.934274,0.409566,0.774811,0.832952,0.414931,0.28038,0.257541,0.285406,0.995602,0.917961,0.809417,0.215951,0.949148,0.908752,0.743096,0.344973,0.533645,0.310692,0.235869,0.462563,0.662112,0.218646,0.976368,0.404287,0.719746,0.746382,0.745632,0.797114,0.574834,0.390856,0.573168,0.364166,0.329609,0.14286,0.654495,0.281027,0.489646,0.493869,0.399273,0.374031,0.338583,0.627302,0.559843,0.35099,0.260285,0.55196,0.982817,0.440474,0.218072,0.0545926,0.318827,0.840751,0.408139,0.31789,0.299471,0.356024,0.0890394,0.61509,0.704459,0.0173233,0.0114631,0.958535,0.312793,0.646217,0.263176,0.132215,0.546919,0.0908435,0.45473,0.840521,0.278919,0.561626,0.988311,0.531614,0.785614,0.365519,0.17607,0.313348,0.481918,0.451792,0.80818,0.189301,0.867668,0.797502,0.184131,0.568137,0.371484,0.755008,0.921644,0.211345,0.893089,0.963695,0.912497,0.38703,0.389427,0.773714,0.782535,0.262916,|0.891272,0.201116,0.320345,0.934973,0.230271,0.563028,0.324522,0.890421,0.203387,0.126181,0.206387,0.639893,0.560288,0.631562,0.823071,0.344513,0.988849,0.926609,0.196921,0.531384,0.492824,0.954285,0.750889,0.922877,0.935591,0.267897,0.539435,0.314211,0.576587,0.681089,0.726245,0.0752663,0.188131,0.38112,0.44913,0.0628148,0.780271,0.901089,0.332429,0.8044,0.397845,0.983021,0.285262,0.533723,0.880934,0.810308,0.189846,0.109989,0.705464,0.844352,0.544107,0.34211,0.351234,0.978142,0.584261,0.437374,0.143779,0.984232,0.777111,0.868655,0.275729,0.162767,0.299438,0.299511,0.806057,0.460191,0.581531,0.779923,0.949974,0.636447,0.518004,0.165298,0.338913,0.563403,0.992323,0.362556,0.415511,0.945195,0.357431,0.145774,0.330671,0.0870007,0.0543767,0.880558,0.28576,0.984604,0.677895,0.436554,0.713605,0.536726,0.184017,0.52253,0.77571,0.148766,0.425918,0.00139546,0.510775,0.259781,0.529019,0.275628,0.167361,0.509,0.385889,0.848649,0.798364,0.875307,0.440107,0.365663,0.285023,0.299278,0.0991021,0.263565,0.544664,0.961779,0.436752,0.369486,0.0649121,0.0279673,0.302938,0.381915,0.438197,0.56667,0.400775,0.620517,0.972715,0.613842,0.37383,0.603997,0.374549,0.70666,0.905201,0.583946,0.971844,0.0142269,0.558376,0.973967,0.0711646,0.400226,0.761759,0.563746,0.0431326,0.024089,0.874586,0.698186,0.41342,0.262371,0.772101,0.856498,0.17376,0.301567,0.148302,0.113494,0.982784,0.275648,0.0740321,0.377461,0.571555,0.970138,0.815123,0.949999,0.812159,0.765757,0.874142,0.868748,0.487921,0.372222,0.29909,0.0688905,0.269493,0.501892,0.534725,0.763239,0.0230084,0.721361,0.796691,0.637837,0.482103,0.705718,0.284493,0.299739,0.023637,0.115255,0.243344,0.305067,0.936552,0.787813,0.0104844,0.132247,0.204546,0.534098,0.769561,0.941194,0.184453,0.865541,0.897265,0.729527,0.4041,0.943725,0.471213,0.358039,0.375805,0.974113,0.691712,0.579433,0.928827,0.447843,0.473013,0.381554,0.185573,0.824509,0.609054,0.14309,0.749404,0.925187,0.419911,0.440874,0.632855,0.983995,0.496989,0.577989,0.638788,0.0174508,0.18429,0.526718,0.826629,0.527978,0.860143,0.49372,0.336548,0.350452,0.293833,0.205881,0.11503,0.227205,0.955547,0.898088,0.716633,0.250679,0.0466117,0.669769,0.645884,0.104475,0.0313526,0.187093,0.390552,0.15707,0.831733,0.296951,0.0991154,0.352025,0.354226,0.99942,0.340292,0.994628,0.705369,0.695916,0.108241,0.434697,0.115287,0.231402,0.547994,0.0805516,0.174258,0.531307,0.00371742,0.458204,0.363335,0.205202,0.682944,0.903031,0.293531,0.0835686,0.526349,0.885226,0.76416,0.179903,0.111757,0.0504572,0.878302,0.401626,0.125944,0.231,0.665207,0.997006,0.619747,0.0273237,0.913672,0.89226,0.0583387,0.844854,0.143399,0.266506,0.115483,0.839423,0.745114,0.622085,0.943764,0.21518,0.0434747,0.141551,0.989023,0.259237,0.994523,0.883718,0.39343,0.882666,0.424637,0.245407,0.544239,0.479068,0.059625,0.609469,0.727877,0.663089,0.292205,0.0374709,0.627467,0.933939,0.67948,0.313559,0.629265,0.438348,0.859136,0.1844,0.944692,0.0614458,0.0261211,0.127369,0.248121,0.515055,0.825552,0.0876827,0.96847,0.325809,0.952336,0.545172,0.259307,0.482193,0.32961,0.958664,0.430465,0.721916,0.601171,0.16568,0.761094,0.102018,0.990192,0.339582,0.087369,0.238651,0.971123,0.156831,0.29105,0.938151,0.461469,0.90111,0.249696,0.382742,0.194779,0.298328,0.567145,0.779625,0.326893,0.561682,0.644432,0.278935,0.285114,0.709586,0.197239,0.352865,0.687579,0.0837043,0.000669062,0.144076,0.112366,0.746393,0.209302,0.377945,0.483631,0.828097,0.67768,0.340236,0.935823,0.492393,0.953354,0.0461218,0.917193,0.749361,0.722498,0.882983,0.034021,0.50414,0.132516,0.416442,0.110901,0.870826,0.555343,0.650266,0.1364,0.963392,0.0466689,0.600651,0.196947,0.949871,0.859973,0.135545,0.0724065,0.663512,0.0683952,0.253493,0.122942,0.427646,0.695575,0.141682,0.268442,0.687202,0.489557,0.986004,0.37217,0.270688,0.232636,0.193975,0.19318,0.631465,0.0498268,0.917882,0.53469,0.228442,0.467884,0.657652,0.137318,0.201328,0.617909,0.815853,0.154774,0.696065,0.0661547,0.178278,0.651627,0.829141,0.398586,0.380315,0.280466,0.26856,0.109388,0.239809,0.164126,0.987086,0.398649,0.859709,0.404175,0.084711,0.580662,0.540441,0.330543,0.587395,0.712051,0.293395,0.153604,0.235115,0.0526135,0.544038,0.329725,0.415203,0.0392793,0.20842,0.22959,0.0162025,0.0470818,0.225975,0.560575,0.388657,0.150955,0.89742,0.308224,0.670501,0.627841,0.767183,0.162655,0.968683,0.187912,0.0442147,0.304159,0.43953,0.142368,0.674252,0.0883546,0.193061,0.820528,0.965888,0.85022,0.393214,0.836112,0.586804,0.908564,0.443195,0.997329,0.642815,0.989912,0.299405,0.8792,0.391003,0.980674,0.368943,0.995191,0.45427,0.934266,0.182148,0.501275,0.667111,0.653341,0.887968,0.484375,0.709133,0.294451,0.739369,0.531194,0.565051,0.389811,0.201,0.91227,0.712586,0.34067,0.245348,0.155677,0.318345,0.734328,0.399681,0.510809,0.132535,0.255741,0.480743,0.0548045,0.87282,0.561538,0.1453,0.0649745,0.710686,0.302814,0.305217,0.647095,0.59776,0.342609,0.737256,0.722674,0.464698,0.394865,0.38424,0.779513,0.926808,0.67792,0.389634,0.681059,0.172188,0.828788,0.946852,0.684198,0.926492,0.658727,0.389709,0.903949,0.811806,0.165588,0.266231,0.564559,0.154657,0.717801,0.0292653,0.496648,0.672284,0.308366,0.309407,0.756901,0.700056,0.325842,0.0477983,0.226301,0.711651,0.4418,0.82758,0.572319,0.335612,0.541889,0.715204,0.622952,0.379112,0.965363,0.404615,0.895485,0.555553,0.780779,0.561286,0.382533,0.683185,0.628031,0.96551,0.415725,0.0543938,0.904441,0.514458,0.298909,0.730688,0.620175,0.0625308,0.526229,0.67634,0.308333,0.299089,0.383072,0.764098,0.0184189,0.812235,0.436638,0.0368793,0.938309,0.290325,0.995233,0.244059,0.965877,0.511333,0.90626,0.693599,0.403028,0.75274,0.189923,0.343719,0.628007,0.891917,0.505205,0.400481,0.162686,0.694726,0.183455,0.624231,0.955801,0.432636,0.136532,0.250089,0.335208,0.141898,0.872978,0.999359,0.617948,0.302877,0.365864,0.711936,0.580746,0.669683,0.77062,0.991438,0.253324,0.824974,0.783809,0.660277,0.47438,0.669991,0.44838,0.773506,0.686233,0.241255,0.685189,0.646523,0.30418,0.619149,0.70625,0.80424,0.145428,0.0166814,0.706727,0.324451,0.216664,0.878046,0.263376,0.346969,0.517537,0.511056,0.85098,0.299955,0.758358,0.755976,0.148761,0.131346,0.760536,0.742388,0.143294,0.289359,0.673507,0.222359,0.582391,0.340162,0.107439,0.586671,0.930832,0.756204,0.307621,0.513646,0.836029,0.277465,0.298885,0.724854,0.652443,0.778352,0.22807,0.676556,0.561173,0.200468,0.104528,0.47393,0.605611,0.959607,0.959791,0.373407,0.587331,0.627553,0.70967,0.0439461,0.550041,0.287575,0.839361,0.0164819,0.281937,0.0222367,0.0417329,0.711038,0.316973,0.566021,0.306355,0.0998852,0.736894,0.919619,0.0861967,0.0164959,0.900022,0.524515,0.596415,0.952778,0.275142,0.137302,0.517536,0.251122,0.611817,0.67146,0.189279,0.623642,0.762081,0.286906,0.0700479,0.563846,0.760462,0.874763,0.14585,0.067524,0.682635,0.989829,0.122012,0.379118,0.873816,0.70938,0.181227,0.907695,0.107785,0.860545,0.706349,0.534259,0.710253,0.166101,0.184559,0.768627,0.370196,0.472313,0.702372,0.885044,0.464441,0.81425,0.328891,0.888976,0.221934,0.344167,0.259408,0.93964,0.708832,0.588183,0.186993,0.234951,0.160796,0.480759,0.998524,0.572399,0.806326,0.504507,0.483974,0.309178,0.791887,0.19942,0.367894,0.433547,0.675739,0.987824,0.575813,0.99628,0.404477,0.713574,0.718798,0.698286,0.307655,0.153604,0.0655258,0.0300459,0.309337,0.0167624,0.623904,0.817808,0.205811,0.0685898,0.409278,0.535884,0.640334,0.212359,0.588886,0.894247,0.0555364,0.871546,0.383275,0.46138,0.6319,0.815109,0.342908,0.252082,0.648069,0.522855,0.378033,0.507736,0.67813,0.235258,0.978166,0.645479,0.779811,0.1761,0.598903,0.853439,0.760873,0.0319185,0.937079,0.69258,0.959224,0.456228,0.660626,0.124158,0.545004,0.454251,0.524623,0.547755,0.301806,0.19141,0.831539,0.78605,0.254378,0.823624,0.457762,0.82179,0.712561,0.234569,0.822026,0.786417,0.166264,0.024902,0.986016,0.0150827,0.0560284,0.43118,0.248567,0.490866,0.599374,0.589302,0.934318,0.554804,0.0701439,0.73417,0.0353692,0.671944,0.56092,0.61661,0.194292,0.112307,0.505982,0.284542,0.902829,0.496415,0.333488,0.640182,0.875221,0.0935981,0.830881,0.0501519,0.888412,0.56396,0.878817,0.23277,0.984243,0.0823766,0.121022,0.607322,0.56634,0.514875,0.926722,0.305132,0.575383,0.253382,0.76849,0.586651,0.40471,0.396064,0.0231474,0.567626,0.820202,0.669492,0.620644,0.660006,0.275391,0.882193,0.523416,0.223727,0.244841,0.716158,0.535934,0.235279,0.189126,0.23935,0.215851,0.962443,0.73322,0.418047,0.564242,0.468145,0.484364,0.82581,0.144108,0.626121,0.199917,0.82242,0.888194,0.615161,0.642048,0.685135,0.381918,0.881063,0.371229,0.0189492,0.352258,0.890784,0.059715,0.896889,0.888446,0.73389,0.0975124,0.992959,0.286931,0.601187,0.248809,0.218968,0.68541,0.761997,0.183289,0.305396,0.127411,0.864585,0.0198786,0.747157,0.18697,0.920338,0.147506,0.662933,0.647958,0.526103,0.947153,0.998796,0.349827,0.432951,0.0648609,0.473816,0.376793,0.201312,0.00743872,0.679024,0.512243,0.384455,0.0301886,0.488691,0.0619212,0.721877,0.733281,0.502792,0.252089,0.0996611,0.428476,0.519447,0.517129,0.196672,0.505611,0.588485,|0.445689,0.655217,0.796219,0.505474,0.766148,0.836237,0.944558,0.0166247,0.605814,0.472394,0.412467,0.530869,0.036941,0.337935,0.191823,0.607159,0.345052,0.568311,0.26347,0.397256,0.786277,0.438999,0.909521,0.597053,0.307644,0.839626,0.308139,0.601488,0.619142,0.663744,0.926442,0.330317,0.904066,0.205243,0.27321,0.883672,0.122167,0.585616,0.775917,0.395874,0.0596529,0.688124,0.16192,0.115932,0.877232,0.373535,0.121669,0.783539,0.00720459,0.948726,0.564294,0.0331739,0.00452173,0.382079,0.358092,0.596136,0.832088,0.539602,0.313811,0.403329,0.711923,0.352366,0.959569,0.425853,0.0460899,0.789222,0.457416,0.178287,0.35821,0.157188,0.562217,0.756505,0.735756,0.330225,0.0638297,0.06062,0.338107,0.946988,0.228348,0.520566,0.425622,0.516467,0.398873,0.903757,0.769952,0.94474,0.244873,0.487381,0.545245,0.990556,0.959601,0.14827,0.0473548,0.312001,0.430468,0.798602,0.789694,0.0491168,0.747853,0.12554,0.429242,0.154402,0.820142,0.667592,0.713663,0.244902,0.848182,0.648862,0.963811,0.705471,0.00562251,0.385173,0.848586,0.533187,0.80599,0.0681064,0.423349,0.0530385,0.711372,0.241583,0.15332,0.39107,0.517683,0.459168,0.202988,0.393227,0.875902,0.706376,0.587002,0.69226,0.638502,0.606561,0.307327,0.563419,0.970453,0.205965,0.807165,0.663209,0.154439,0.0766323,0.270493,0.0324814,0.160426,0.328069,0.940703,0.174464,0.971259,0.506953,0.924161,0.194339,0.668542,0.947916,0.724578,0.0531309,0.909237,0.574477,0.242189,0.0288428,0.60994,0.737186,0.450272,0.390005,0.0270316,0.35113,0.727672,0.414013,0.994132,0.374518,0.425758,0.701418,0.859808,0.878405,0.908563,0.377016,0.971502,0.0667484,0.151732,0.00302237,0.148145,0.825881,0.535002,0.95756,0.90253,0.689342,0.900139,0.603299,0.732358,0.694364,0.689144,0.46595,0.800664,0.918257,0.264754,0.296333,0.382742,0.380254,0.23887,0.440302,0.119473,0.371791,0.540672,0.398605,0.667167,0.479313,0.689779,0.0517443,0.360972,0.918433,0.126557,0.763119,0.367316,0.948342,0.545487,0.344568,0.561138,0.770493,0.856347,0.5874,0.589034,0.960352,0.00890517,0.518513,0.841917,0.276305,0.712177,0.0697215,0.0254353,0.0708094,0.411196,0.596077,0.78379,0.582116,0.959975,0.835117,0.604424,0.709804,0.620248,0.318534,0.93535,0.446387,0.933158,0.922302,0.707483,0.211172,0.464796,0.32587,0.0246869,0.255771,0.272397,0.472827,0.419945,0.784244,0.575978,0.45815,0.492715,0.220008,0.215301,0.0852581,0.387653,0.870485,0.495282,0.860215,0.16682,0.45839,0.337938,0.486547,0.120717,0.855199,0.0833653,0.682667,0.866949,0.0782519,0.375833,0.828053,0.726163,0.153331,0.975377,0.0282642,0.507444,0.542258,0.939511,0.672942,0.782312,0.537697,0.696129,0.906348,0.662961,0.772508,0.680731,0.133671,0.787302,0.543314,0.901568,0.599978,0.211089,0.641382,0.494706,0.543688,0.851416,0.258572,0.989218,0.557086,0.267859,0.699129,0.271036,0.0468209,0.558605,0.819431,0.676954,0.725503,0.127832,0.00146496,0.595356,0.168157,0.948725,0.460647,0.160827,0.366233,0.269754,0.915626,0.900483,0.521451,0.399873,0.140941,0.0657461,0.378281,0.868301,0.790889,0.339647,0.248306,0.959491,0.561454,0.719123,0.671882,0.545734,0.127979,0.513224,0.615506,0.542396,0.204585,0.615815,0.745055,0.11507,0.482901,0.974108,0.174794,0.748964,0.997547,0.700706,0.650118,0.777906,0.690239,0.347265,0.949412,0.191557,0.677763,0.975922,0.431446,0.666681,0.93026,0.156591,0.75935,0.0671766,0.0647857,0.291618,0.069734,0.260593,0.472337,0.583286,0.961705,0.452385,0.959822,0.923518,0.411754,0.738999,0.587987,0.147776,0.964345,0.12778,0.140705,0.135995,0.251958,0.482389,0.869921,0.147812,0.881335,0.934641,0.60823,0.479364,0.401747,0.581113,0.609611,0.426704,0.965144,0.489348,0.419325,0.101402,0.80727,0.681243,0.431119,0.155183,0.880499,0.0267402,0.391152,0.553054,0.986384,0.249562,0.575437,0.685406,0.609646,0.679973,0.270976,0.911565,0.184437,0.911977,0.233129,0.570033,0.301413,0.686541,0.111956,0.711713,0.89675,0.78655,0.995777,0.453562,0.856599,0.189674,0.0846156,0.857488,0.248646,0.0427104,0.758243,0.79417,0.263154,0.394965,0.997319,0.952173,0.131085,0.0998467,0.803483,0.686244,0.693215,0.833717,0.074232,0.383936,0.63433,0.653381,0.145639,0.821999,0.375355,0.571306,0.0981132,0.127011,0.171521,0.312212,0.0766411,0.692308,0.290292,0.11552,0.000844538,0.258234,0.869521,0.45548,0.378138,0.333102,0.297215,0.783337,0.739539,0.0680065,0.451171,0.559371,0.966251,0.655108,0.0522916,0.599205,0.595807,0.770196,0.702758,0.674866,0.736471,0.979401,0.669607,0.366451,0.604934,0.522879,0.160256,0.419718,0.88274,0.979724,0.210352,0.922579,0.665545,0.54421,0.142198,0.0728954,0.340321,0.728704,0.835394,0.912278,0.843321,0.373501,0.158575,0.677038,0.592163,0.994102,0.599195,0.25111,0.449083,0.269589,0.701345,0.646217,0.166842,0.997226,0.882738,0.151471,0.747884,0.180979,0.487327,0.147712,0.783742,0.515176,0.860094,0.744651,0.391463,0.315502,0.699138,0.76982,0.205766,0.690874,0.143556,0.529982,0.575022,0.826356,0.67536,0.941798,0.700794,0.873951,0.588687,0.731903,0.339298,0.216883,0.797878,0.543279,0.397738,0.430208,0.283344,0.0116723,0.544478,0.859716,0.460018,0.408234,0.149551,0.667484,0.376112,0.538285,0.517623,0.508358,0.80004,0.431527,0.992038,0.209576,0.383168,0.252675,0.361191,0.0545774,0.612194,0.653324,0.845706,0.315856,0.246072,0.349169,0.196272,0.124211,0.854149,0.54523,0.139798,0.653934,0.157618,0.824322,0.201127,0.481678,0.996927,0.517439,0.960527,0.776092,0.762618,0.782151,0.727322,0.392172,0.45545,0.366714,0.161368,0.187578,0.213562,0.0990147,0.269018,0.0477746,0.974794,0.81723,0.651536,0.882454,0.340617,0.499218,0.240081,0.162608,0.351603,0.989732,0.621107,0.613137,0.521661,0.36548,0.243127,0.127284,0.352861,0.722759,0.923232,0.113938,0.782589,0.769439,0.121881,0.898752,0.479622,0.305385,0.515711,0.86509,0.955754,0.443672,0.212461,0.700814,0.289568,0.44771,0.976269,0.658817,0.191711,0.660785,0.0813049,0.620751,0.355917,0.393517,0.964756,0.358949,0.475053,0.955674,0.307822,0.700777,0.909048,0.561672,0.716525,0.871425,0.154035,0.805783,0.0406473,0.92132,0.587499,0.0518752,0.88392,0.340069,0.670325,0.625375,0.970993,0.533187,0.213822,0.632525,0.0149113,0.775997,0.667278,0.731706,0.398283,0.841019,0.967951,0.724037,0.893824,0.20332,0.829582,0.334029,0.743523,0.108277,0.124431,0.333073,0.779493,0.941301,0.0199661,0.177795,0.0928466,0.0196897,0.991059,0.554946,0.259257,0.956361,0.602283,0.71015,0.170832,0.520365,0.277206,0.934437,0.464957,0.504051,0.860501,0.768777,0.176799,0.367967,0.955074,0.470767,0.859939,0.17723,0.587372,0.224754,0.464142,0.700674,0.60093,0.879668,0.262201,0.423941,0.744409,0.277362,0.640692,0.550993,0.379356,0.640875,0.0994585,0.791939,0.694344,0.115321,0.638309,0.957355,0.22227,0.317308,0.275001,0.855411,0.712702,0.811629,0.966601,0.330937,0.76369,0.920503,0.969111,0.715626,0.325935,0.703781,0.0587503,0.363101,0.152013,0.554743,0.651228,0.132304,0.0374478,0.606529,0.662144,0.595157,0.264251,0.377681,0.223025,0.69017,0.345932,0.291642,0.190001,0.516153,0.406197,0.93611,0.682206,0.555446,0.0243399,0.824392,0.959825,0.350607,0.809181,0.621714,0.339593,0.879491,0.802721,0.885378,0.724765,0.83868,0.815865,0.0422782,0.344189,0.438512,0.50322,0.698931,0.732012,0.966784,0.557051,0.366259,0.256179,0.256259,0.105275,0.681393,0.65306,0.245315,0.53964,0.549338,0.347391,0.418726,0.198271,0.616064,0.830158,0.797932,0.935316,0.59162,0.0324923,0.256929,0.813001,0.170649,0.686678,0.880832,0.468812,0.585939,0.710264,0.950423,0.994197,0.897906,0.0602105,0.159812,0.308584,0.627708,0.580852,0.944501,0.185916,0.782151,0.34527,0.387224,0.5587,0.684401,0.189625,0.214408,0.303605,0.995082,0.0943795,0.248129,0.823742,0.431933,0.933772,0.305807,0.323623,0.146553,0.851192,0.615765,0.700973,0.910223,0.958824,0.147496,0.857078,0.197896,0.80006,0.349571,0.233176,0.56883,0.673933,0.277838,0.528038,0.164758,0.170708,0.979631,0.339501,0.0877775,0.984606,0.0938548,0.902061,0.757645,0.382005,0.161345,0.15747,0.119145,0.490349,0.982925,0.086247,0.262113,0.165399,0.997923,0.190576,0.109639,0.714541,0.149419,0.749141,0.0560342,0.422703,0.835238,0.862949,0.744121,0.684784,0.816663,0.186523,0.712191,0.497619,0.303505,0.907267,0.966108,0.0937253,0.287293,0.613811,0.120464,0.0941325,0.0859611,0.120504,0.694364,0.715531,0.172013,0.155861,0.970768,0.29913,0.877186,0.0594433,0.650923,0.657438,0.340471,0.175693,0.935525,0.0210254,0.153157,0.891577,0.765391,0.215483,0.927768,0.215285,0.35624,0.03951,0.129348,0.336479,0.965061,0.768057,0.50518,0.713411,0.0412397,0.638806,0.323378,0.270963,0.0956904,0.841667,0.329309,0.305554,0.227075,0.923946,0.383581,0.241453,0.851105,0.722994,0.962081,0.0810753,0.119498,0.660407,0.449186,0.26665,0.46135,0.581919,0.138543,0.999841,0.437332,0.912279,0.851935,0.252935,0.34581,0.473864,0.438757,0.650356,0.983266,0.618864,0.270017,0.940744,0.72797,0.571975,0.167336,0.215586,0.0816214,0.270526,0.395196,0.546787,0.771357,0.0303775,0.159579,0.866686,0.0519136,0.322675,0.649839,0.266846,0.882092,0.382168,0.34758,0.717388,0.115126,0.909506,0.963772,0.573573,0.223603,0.260054,0.983238,0.841199,0.329559,0.935337,0.983389,0.916742,0.140377,0.609094,0.197582,0.546054,0.721703,0.450276,0.73935,0.765853,0.848938,0.0288338,|0.835359,0.0168554,0.177003,0.592949,0.478834,0.882221,0.667752,0.044448,0.842352,0.93185,0.766357,0.106115,0.0370556,0.89706,0.176275,0.967572,0.360172,0.101319,0.225954,0.0367793,0.182981,0.857392,0.135688,0.158224,0.706089,0.567107,0.218744,0.642403,0.196285,0.966413,0.0985648,0.627034,0.903253,0.0592755,0.70909,0.331865,0.97264,0.648305,0.0855144,0.545964,0.875795,0.179133,0.543749,0.204025,0.67751,0.0199186,0.365672,0.66678,0.694205,0.909752,0.590125,0.437673,0.700712,0.172194,0.407488,0.018841,0.586873,0.125823,0.943661,0.35464,0.481333,0.750018,0.281274,0.0963491,0.595335,0.421563,0.439498,0.431355,0.132977,0.834975,0.731334,0.095972,0.63702,0.224664,0.79333,0.913504,0.624155,0.591006,0.290499,0.8171,0.898539,0.792741,0.821183,0.121242,0.363571,0.606356,0.946272,0.131525,0.00651181,0.0509518,0.539897,0.340731,0.777638,0.655435,0.37413,0.149667,0.721398,0.845836,0.101145,0.977117,0.434679,0.765936,0.515047,0.53652,0.210916,0.496896,0.705885,0.173255,0.926671,0.93246,0.444575,0.162986,0.444611,0.263918,0.260157,0.255038,0.0144798,0.527021,0.88207,0.800372,0.924235,0.523047,0.127096,0.138091,0.367929,0.865385,0.52163,0.443021,0.202055,0.118745,0.738684,0.696638,0.290648,0.817376,0.24493,0.28231,0.405077,0.716494,0.98683,0.886751,0.363495,0.412354,0.733396,0.752557,0.688995,0.723831,0.210252,0.813739,0.614398,0.827852,0.836345,0.327973,0.388761,0.680074,0.212801,0.753162,0.595994,0.112174,0.894007,0.793396,0.90992,0.129968,0.370078,0.176584,0.150495,0.630103,0.477081,0.614172,0.693329,0.328573,0.0549206,0.448454,0.85905,0.144655,0.674381,0.187944,0.305431,0.847689,0.0994214,0.998533,0.0800303,0.553225,0.351235,0.657611,0.297939,0.0327452,0.144984,0.183526,0.823011,0.759483,0.506949,0.171065,0.490365,0.0353435,0.337003,0.73702,0.94085,0.374835,0.393741,0.114399,0.396459,0.957957,0.659108,0.355201,0.857115,0.525755,0.481538,0.0392192,0.518814,0.438849,0.0322527,0.117888,0.715827,0.0385919,0.262912,0.210519,0.498917,0.799144,0.712093,0.429635,0.58171,0.678373,0.408557,0.990876,0.627536,0.394449,0.598354,0.444708,0.330848,0.765698,0.933502,0.692789,0.423009,0.927159,0.279007,0.921983,0.920797,0.665915,0.239042,0.0665347,0.717736,0.200539,0.688763,0.362468,0.167897,0.929535,0.548469,0.832629,0.394255,0.876475,0.251831,0.036157,0.574025,0.810265,0.135393,0.267382,0.391297,0.695646,0.236129,0.17776,0.391111,0.406472,0.941226,0.470894,0.703809,0.397102,0.238313,0.771284,0.0300091,0.611895,0.354195,0.765637,0.994154,0.706666,0.161433,0.946879,0.969479,0.305844,0.593628,0.0834776,0.823453,0.629197,0.457685,0.592015,0.170659,0.429297,0.734173,0.775231,0.0325376,0.0800877,0.445263,0.39402,0.605517,0.697548,0.166067,0.218438,0.114176,0.412996,0.668628,0.920415,0.443497,0.480891,0.282374,0.903077,0.408869,0.584048,0.729444,0.629827,0.473065,0.60114,0.942138,0.615937,0.938281,0.384856,0.413892,0.648387,0.854376,0.370994,0.813364,0.375815,0.929879,0.258082,0.794843,0.690239,0.129713,0.174572,0.819486,0.490378,0.263761,0.998925,0.368472,0.372112,0.321655,0.375275,0.34912,0.621996,0.797065,0.354485,0.385297,0.93626,0.946376,0.336602,0.12768,0.0819359,0.788771,0.128788,0.498543,0.442741,0.476429,0.473008,0.459617,0.005952,0.399618,0.387362,0.853722,0.743963,0.844339,0.517051,0.81991,0.223578,0.827751,0.918254,0.946787,0.147641,0.563978,0.35241,0.509202,0.268692,0.0952916,0.109589,0.64239,0.790739,0.684932,0.416629,0.718358,0.0514723,0.162332,0.0903178,0.371844,0.948,0.585981,0.830515,0.68742,0.666781,0.429819,0.953543,0.543031,0.550693,0.684782,0.688041,0.981438,0.796633,0.310098,0.452928,0.795506,0.231936,0.0511206,0.609267,0.88552,0.835092,0.568482,0.622047,0.732101,0.880382,0.584259,0.015728,0.440846,0.0664709,0.276636,0.444468,0.898051,0.257721,0.132462,0.947755,0.0536917,0.96896,0.839694,0.603539,0.167143,0.172441,0.916986,0.762023,0.613671,0.934758,0.984052,0.673765,0.0282887,0.923819,0.411048,0.210111,0.88628,0.686632,0.869342,0.15516,0.7604,0.531319,0.949653,0.974092,0.628558,0.863919,0.430709,0.0509977,0.313489,0.624762,0.521351,0.84706,0.629718,0.591785,0.957887,0.433168,0.807733,0.847389,0.33109,0.333664,0.579442,0.407225,0.558639,0.147047,0.913487,0.363633,0.0258418,0.39235,0.64305,0.132614,0.958086,0.180079,0.988257,0.147831,0.103671,0.728824,0.212086,0.955526,0.737899,0.221615,0.180881,0.392373,0.0427535,0.221613,0.147363,0.196724,0.974667,0.0773982,0.0144693,0.205772,0.567262,0.639381,0.930027,0.925621,0.635243,0.309783,0.935637,0.158015,0.708579,0.847597,0.35228,0.0357248,0.108003,0.00821435,0.0638174,0.81723,0.0514458,0.149847,0.249064,0.795313,0.87946,0.284668,0.733209,0.2165,0.900233,0.228556,0.547853,0.414437,0.433877,0.764437,0.527709,0.298513,0.26063,0.208754,0.929031,0.214299,0.222136,0.792601,0.11788,0.302538,0.692174,0.297016,0.863806,0.2135,0.187791,0.532098,0.613677,0.860648,0.415714,0.153816,0.328928,0.987928,0.571584,0.789644,0.199038,0.642063,0.808092,0.374623,0.657321,0.567735,0.926232,0.319521,0.221268,0.471391,0.474531,0.195593,0.103903,0.882268,0.216955,0.756379,0.359065,0.467323,0.614239,0.29172,0.365498,0.573575,0.519888,0.888612,0.60722,0.0742453,0.589281,0.0206899,0.544919,0.301474,0.592682,0.29525,0.843441,0.337973,0.233649,0.571918,0.872853,0.765948,0.419503,0.0134768,0.645383,0.0230647,0.840146,0.911902,0.0795609,0.933951,0.349755,0.233372,0.506657,0.457865,0.922935,0.657958,0.317405,0.439679,0.499631,0.629001,0.835238,0.986266,0.569355,0.197766,0.0974349,0.110129,0.301763,0.415388,0.740754,0.454453,0.798477,0.225541,0.867569,0.347676,0.652882,0.17898,0.219547,0.347121,0.783342,0.76772,0.101297,0.815753,0.334217,0.772247,0.329828,0.390733,0.609263,0.0122461,0.650026,0.46711,0.772032,0.0064612,0.842101,0.29266,0.507378,0.777063,0.415594,0.525411,0.926523,0.90401,0.754199,0.861503,0.100644,0.803462,0.135296,0.629964,0.786627,0.15445,0.144922,0.874097,0.293743,0.24931,0.800384,0.521254,0.922688,0.139631,0.729014,0.249562,0.569463,0.985652,0.46221,0.457502,0.697632,0.123715,0.0679179,0.912876,0.0896561,0.390777,0.43652,0.285201,0.953068,0.600784,0.690456,0.288262,0.752433,0.951371,0.285224,0.999452,0.820458,0.328142,0.0524487,0.596288,0.965856,0.412266,0.57298,0.805942,0.391335,0.638712,0.123481,0.251736,0.0258203,0.120859,0.470016,0.603157,0.582738,0.326899,0.821662,0.487912,0.224914,0.824155,0.165969,0.680037,0.136719,0.322369,0.551156,0.170858,0.517205,0.348192,0.472466,0.521907,0.455567,0.0476548,0.221522,0.653091,0.547119,0.128845,0.890627,0.106326,0.152261,0.0539013,0.423514,0.81844,0.137534,0.541113,0.40679,0.28604,0.54439,0.980476,0.933445,0.1176,0.266049,0.149186,0.104928,0.40797,0.296441,0.195084,0.615792,0.778238,0.748664,0.0947061,0.841335,0.816275,0.197388,0.484999,0.239679,0.631073,0.846141,0.295056,0.964497,0.984921,0.901909,0.521292,0.851849,0.679462,0.619703,0.250853,0.498582,0.209447,0.502854,0.856453,0.0788587,0.336124,0.294227,0.159834,0.512037,0.731791,0.190904,0.596944,0.439328,0.988035,0.909555,0.784016,0.11956,0.366508,0.999612,0.123561,0.197217,0.892655,0.625938,0.999152,0.219908,0.420839,0.903416,0.471301,0.250124,0.309477,0.935579,0.0280292,0.38696,0.613475,0.972766,0.118866,0.702728,0.755742,0.0983804,0.663967,0.878869,0.149032,0.0918716,0.277987,0.132185,0.710211,0.867697,0.244421,0.240726,0.456654,0.0433732,0.0792794,0.88664,0.445207,0.458368,0.622144,0.69611,0.261012,0.956204,0.157506,0.656163,0.809436,0.606422,0.675515,0.786628,0.542525,0.26827,0.59574,0.655186,0.887876,0.0104821,0.51654,0.838726,0.227182,0.942737,0.313462,0.285412,0.0203716,0.721866,0.508228,0.165141,0.819848,0.163972,0.781048,0.86236,0.385731,0.462563,0.660252,0.554391,0.233601,0.151155,0.465736,0.0241333,0.245321,0.755606,0.0454825,0.918473,0.646006,0.655806,0.971087,0.187019,0.510408,0.0406441,0.440656,0.707257,0.0408488,0.77876,0.314934,0.0139537,0.583515,0.854215,0.779957,0.585702,0.760481,0.517377,0.327268,0.00326234,0.575214,0.746521,0.463198,0.818318,0.491262,0.99902,0.152694,0.792494,0.386418,0.217461,0.275621,0.674694,0.303475,0.916473,0.0158204,0.941282,0.430221,0.852964,0.796911,0.0992451,0.341894,0.476525,0.214734,0.432346,0.810367,0.385229,0.452237,0.925972,0.350989,0.116924,0.419619,0.496616,0.307886,0.0135312,0.191202,0.253664,0.471937,0.709852,0.991291,0.0390612,0.355867,0.655624,0.497839,0.142666,0.12302,0.844301,0.124044,0.932783,0.503483,0.754525,0.700558,0.249627,0.71805,0.10206,0.712118,0.0109267,0.0321187,0.100149,0.751007,0.596637,0.0676883,0.338655,0.139405,0.409327,0.924746,0.719238,0.908116,0.817046,0.322399,0.955494,0.258047,0.677635,0.944472,0.120711,0.42458,0.233105,0.720539,0.440711,0.16705,0.538922,0.109023,0.110539,0.581162,0.802508,0.788946,0.322605,0.0632078,0.368765,0.924455,0.370192,0.292182,0.620429,0.199364,0.0817516,0.10315,0.195952,0.929117,0.320784,0.159705,0.839009,0.741614,0.0978485,0.967203,0.818626,0.629948,0.38391,0.433783,0.381864,0.983844,0.845922,0.360549,0.43282,0.935838,0.396551,0.940977,0.463792,0.0286756,0.685302,0.731609,0.243435,0.690664,0.701084,0.721726,0.378152,0.727614,0.263788,0.0615131,0.716317,0.865528,0.425413,0.599533,0.692459,0.0505891,|0.306407,0.496385,0.752761,0.111047,0.962307,0.607786,0.433771,0.218044,0.113879,0.279838,0.469745,0.672083,0.973918,0.804313,0.351528,0.528786,0.17914,0.154148,0.842551,0.547681,0.78282,0.91033,0.460786,0.524977,0.785481,0.707477,0.277081,0.920004,0.512676,0.715379,0.0902439,0.188641,0.386675,0.834418,0.847452,0.118206,0.608963,0.435404,0.714224,0.379462,0.848889,0.728974,0.0589409,0.137461,0.545371,0.932495,0.696723,0.747352,0.684078,0.996886,0.669562,0.125267,0.781644,0.630548,0.504148,0.0119885,0.79658,0.0971677,0.990246,0.168083,0.939623,0.0310718,0.496512,0.439135,0.344593,0.962145,0.767953,0.395835,0.84575,0.281464,0.436021,0.335495,0.569727,0.3784,0.821348,0.818799,0.0848706,0.672673,0.917959,0.336177,0.646652,0.0445583,0.49831,0.684385,0.556456,0.124528,0.0799112,0.208928,0.610248,0.578515,0.991345,0.62726,0.110678,0.0629141,0.531734,0.805115,0.18349,0.37721,0.914501,0.157723,0.340713,0.538692,0.210394,0.121189,0.213261,0.100785,0.441019,0.885831,0.474591,0.100445,0.976094,0.420984,0.856985,0.110214,0.372508,0.806603,0.319834,0.930118,0.801154,0.395827,0.492096,0.354265,0.282983,0.996453,0.677442,0.419837,0.159155,0.137918,0.451154,0.630941,0.0896344,0.441209,0.977119,0.0470477,0.418954,0.697835,0.493972,0.789551,0.0765582,0.583825,0.478677,0.527143,0.884995,0.490137,0.800803,0.309029,0.827341,0.301801,0.598904,0.343617,0.74803,0.0570143,0.935668,0.0374025,0.727911,0.955785,0.776122,0.487885,0.112241,0.374213,0.590388,0.822907,0.0467142,0.274214,0.151511,0.687922,0.730255,0.877881,0.819477,0.400029,0.677823,0.641062,0.155836,0.690255,0.664249,0.720673,0.278309,0.481008,0.431337,0.0590406,0.489339,0.634471,0.711498,0.699779,0.0396672,0.566835,0.188774,0.850228,0.116675,0.682739,0.851652,0.0260409,0.0443997,0.0971068,0.673914,0.866178,0.987005,0.50752,0.328014,0.640744,0.900965,0.222185,0.131111,0.655528,0.444999,0.692002,0.451583,0.798481,0.400406,0.835757,0.269667,0.0143129,0.650442,0.351475,0.0252005,0.944901,0.438443,0.281924,0.563885,0.399449,0.875328,0.151895,0.41332,0.663516,0.396108,0.48102,0.64533,0.968089,0.337354,0.1829,0.987878,0.138633,0.652332,0.0568078,0.706033,0.880322,0.769715,0.572165,0.33918,0.360163,0.453012,0.810083,0.900827,0.929833,0.0488757,0.240288,0.0160089,0.374104,0.248756,0.0585332,0.481824,0.305483,0.551864,0.22109,0.973209,0.760515,0.142725,0.0970936,0.308927,0.788616,0.955533,0.830122,0.990618,0.400178,0.9065,0.989409,0.759201,0.743224,0.681033,0.467819,0.53583,0.296122,0.310128,0.545196,0.210583,0.706734,0.238735,0.330462,0.214837,0.319971,0.892194,0.394864,0.439819,0.163669,0.571812,0.313629,0.538328,0.962907,0.0824983,0.397729,0.245146,0.342002,0.0777786,0.608203,0.195508,0.667797,0.961645,0.800845,0.247662,0.325293,0.0160633,0.739507,0.994049,0.781583,0.457445,0.954442,0.324182,0.372544,0.745985,0.0519875,0.26091,0.215228,0.263645,0.388012,0.974271,0.468737,0.280743,0.845765,0.23754,0.855064,0.300076,0.129991,0.129523,0.0731913,0.421115,0.366499,0.33107,0.380871,0.222352,0.318601,0.216076,0.0301539,0.0612616,0.855958,0.252508,0.19313,0.712573,0.958249,0.674682,0.193541,0.570068,0.472293,0.200159,0.0572724,0.458191,0.846376,0.465488,0.0589707,0.923424,0.69829,0.945488,0.0362707,0.92738,0.36858,0.0382158,0.508814,0.170095,0.896208,0.574242,0.88265,0.114688,0.41096,0.726595,0.212679,0.952967,0.920429,0.165489,0.820638,0.331546,0.150063,0.916555,0.695165,0.998771,0.348309,0.100741,0.916031,0.718041,0.959137,0.525332,0.0307986,0.81152,0.707018,0.653761,0.736164,0.638636,0.819636,0.160466,0.210276,0.490587,0.93431,0.969299,0.777268,0.144594,0.0916405,0.284257,0.00465584,0.230343,0.0793526,0.821272,0.789752,0.749289,0.224522,0.448041,0.804424,0.349844,0.94324,0.885601,0.463033,0.406157,0.363243,0.0150215,0.70629,0.55023,0.181448,0.685681,0.576166,0.155039,0.63506,0.365213,0.345983,0.0190335,0.564743,0.91557,0.0689217,0.181045,0.559525,0.308285,0.272722,0.944753,0.514546,0.72463,0.0444824,0.0969887,0.29978,0.358409,0.866512,0.77318,0.878991,0.648041,0.525972,0.987856,0.384359,0.17892,0.968642,0.632199,0.226239,0.310384,0.655888,0.609249,0.324621,0.941163,0.49771,0.0690415,0.273283,0.424069,0.907859,0.232702,0.042626,0.403185,0.125538,0.131877,0.798844,0.399832,0.211506,0.417901,0.325947,0.349686,0.422196,0.605892,0.234178,0.68686,0.306359,0.197436,0.47699,0.706425,0.0118876,0.634443,0.167569,0.915473,0.885729,0.753064,0.197245,0.918264,0.421944,0.445741,0.659087,0.821294,0.271573,0.474641,0.404031,0.785377,0.346171,0.408638,0.652853,0.710807,0.610175,0.887386,0.141101,0.321776,0.106324,0.128282,0.00263578,0.875571,0.22965,0.72225,0.920616,0.54601,0.602141,0.759905,0.0544987,0.168195,0.725193,0.550961,0.554101,0.245148,0.488794,0.812444,0.521201,0.618015,0.603371,0.0860006,0.361744,0.139828,0.537609,0.288245,0.223748,0.0160857,0.462692,0.821594,0.937296,0.317307,0.850191,0.423397,0.245821,0.324622,0.493677,0.694642,0.403718,0.0317684,0.661601,0.618211,0.895598,0.462117,0.0816136,0.0263196,0.918705,0.143371,0.622282,0.380526,0.419224,0.136701,0.63389,0.120216,0.987982,0.481367,0.940706,0.289748,0.580682,0.51645,0.50628,0.643614,0.509948,0.163649,0.870415,0.0760198,0.0768714,0.997645,0.259806,0.717809,0.273011,0.964334,0.969229,0.486973,0.766049,0.0119463,0.639043,0.792919,0.427208,0.799139,0.299064,0.339829,0.935578,0.0158777,0.917552,0.633453,0.047513,0.0417126,0.781111,0.12394,0.437533,0.243006,0.450399,0.0359045,0.163113,0.31129,0.719279,0.983666,0.1959,0.123604,0.182199,0.720032,0.87015,0.596476,0.789941,0.324875,0.190193,0.839984,0.82527,0.0827255,0.627504,0.978496,0.799231,0.0493519,0.189909,0.76919,0.586206,0.842037,0.633818,0.279432,0.217643,0.929048,0.742257,0.155996,0.264135,0.896487,0.704925,0.350636,0.30833,0.556045,0.239894,0.362488,0.657153,0.763498,0.0565341,0.198931,0.0632536,0.177492,0.90322,0.753883,0.540995,0.220718,0.677239,0.429779,0.934098,0.0190034,0.458325,0.35813,0.947075,0.823825,0.837741,0.265499,0.412371,0.718801,0.0949441,0.951592,0.758564,0.745514,0.792672,0.108149,0.37755,0.854089,0.0891271,0.528604,0.590842,0.948263,0.748773,0.532692,0.816717,0.79049,0.146032,0.6732,0.215082,0.667339,0.447925,0.376633,0.515321,0.445487,0.0705287,0.612798,0.42504,0.50555,0.476342,0.794315,0.748189,0.579268,0.484597,0.802458,0.914819,0.115339,0.484329,0.631777,0.555154,0.247071,0.0409213,0.409326,0.390681,0.877117,0.110325,0.539912,0.905716,0.352591,0.884969,0.439086,0.151074,0.544374,0.380943,0.025279,0.77877,0.916648,0.411845,0.645137,0.806856,0.55023,0.243263,0.765143,0.569392,0.850582,0.672707,0.870113,0.561876,0.137196,0.86452,0.0322826,0.705937,0.730241,0.08281,0.390215,0.964309,0.983559,0.109537,0.126361,0.959047,0.332108,0.511448,0.147389,0.0860233,0.399344,0.441607,0.0984116,0.761358,0.874814,0.288503,0.143984,0.0592659,0.477882,0.644678,0.326059,0.217976,0.0300724,0.0676706,0.14072,0.836233,0.968629,0.203153,0.570237,0.139691,0.844153,0.00156432,0.739769,0.710525,0.445653,0.813878,0.295506,0.399342,0.617591,0.609031,0.263012,0.827349,0.0479211,0.953495,0.170356,0.731185,0.295446,0.76058,0.794869,0.736315,0.491703,0.736773,0.842471,0.909906,0.57414,0.586727,0.930222,0.107178,0.949987,0.13125,0.849102,0.483416,0.564324,0.863394,0.287407,0.509824,0.248214,0.975305,0.316188,0.542769,0.210644,0.529996,0.99746,0.854363,0.115315,0.676834,0.996112,0.650955,0.568408,0.338945,0.633064,0.966095,0.995728,0.525237,0.319031,0.979643,0.571735,0.521092,0.128959,0.10246,0.458853,0.585026,0.311922,0.765013,0.714539,0.360465,0.397839,0.729112,0.428287,0.876749,0.40997,0.776089,0.355234,0.957813,0.393873,0.4144,0.265965,0.362694,0.434094,0.253135,0.552003,0.508518,0.831245,0.0429774,0.30985,0.174321,0.00537157,0.0990285,0.915818,0.0559517,0.91801,0.529294,0.277836,0.308458,0.529955,0.409665,0.260866,0.670595,0.172273,0.110366,0.505639,0.0990044,0.62239,0.391652,0.635318,0.483396,0.384423,0.7716,0.423986,0.580581,0.210051,0.240042,0.138619,0.956877,0.962552,0.535789,0.50028,0.826535,0.160424,0.626538,0.715384,0.628763,0.824523,0.0696574,0.13714,0.589572,0.420865,0.0257396,0.582812,0.291126,0.343056,0.770339,0.672654,0.293393,0.573341,0.108953,0.993011,0.683096,0.295878,0.748329,0.274723,0.873908,0.629514,0.884232,0.882944,0.386607,0.702232,0.575416,0.859672,0.55949,0.747012,0.415698,0.1126,0.45548,0.452037,0.388999,0.111453,0.971361,0.944058,0.922142,0.532475,0.72783,0.959037,0.481911,0.75062,0.937936,0.763466,0.603086,0.951616,0.342136,0.637427,0.708271,0.226359,0.307879,0.934381,0.0456722,0.650255,0.702022,0.511483,0.524009,0.707137,0.0046612,0.645196,0.382819,0.29699,0.0677291,0.351798,0.798523,0.340362,0.288994,0.333209,0.859457,0.370593,0.141357,0.203344,0.397715,0.436014,0.14946,0.586358,0.572112,0.240405,0.0977167,0.0123846,0.0528243,0.122136,0.210263,0.606949,0.117782,0.793263,0.790303,0.518592,0.48144,0.406655,0.580055,0.527571,0.710467,0.0369757,0.314778,0.910623,0.41893,0.527988,0.84357,0.371574,0.435359,0.82348,0.245521,0.0277936,0.209428,0.56469,0.415895,0.74814,0.149734,0.201861,0.59908,0.86592,0.0258667,0.615621,0.369152,0.138846,0.82509,0.104161,0.701681,0.98334,0.409057,|0.434238,0.0824302,0.556426,0.28106,0.29405,0.762453,0.879415,0.394388,0.541832,0.356796,0.847484,0.22869,0.278413,0.707393,0.344803,0.167933,0.42812,0.361266,0.949689,0.143907,0.376212,0.776989,0.95126,0.978705,0.966481,0.502708,0.686272,0.0887401,0.789867,0.825874,0.578182,0.305999,0.727336,0.609738,0.627776,0.152175,0.877415,0.865007,0.865868,0.667321,0.309663,0.357817,0.429066,0.933673,0.663818,0.20712,0.735903,0.890382,0.958147,0.063793,0.869099,0.883476,0.596049,0.365109,0.568479,0.697111,0.37532,0.628514,0.752372,0.477578,0.135931,0.411176,0.543783,0.0547464,0.775159,0.618224,0.81062,0.793983,0.202707,0.998281,0.705352,0.694652,0.291279,0.250489,0.84486,0.563187,0.375155,0.111119,0.173473,0.540461,0.801899,0.246223,0.521251,0.273656,0.299992,0.23748,0.209948,0.938043,0.628114,0.0736309,0.64328,0.367152,0.393909,0.890686,0.624873,0.525019,0.884502,0.43709,0.412132,0.940202,0.0852281,0.782942,0.468008,0.84529,0.506229,0.653658,0.389239,0.119817,0.51367,0.126974,0.483554,0.0351174,0.859637,0.917549,0.147835,0.929016,0.215903,0.12162,0.88018,0.137975,0.756415,0.21252,0.189953,0.347158,0.615884,0.0809482,0.977513,0.119674,0.354965,0.434166,0.419467,0.0400428,0.136146,0.346385,0.661345,0.232908,0.740154,0.93722,0.348538,0.0151352,0.367007,0.519424,0.511939,0.386115,0.199474,0.875672,0.336805,0.0921007,0.661482,0.329403,0.833641,0.418913,0.908558,0.275523,0.984216,0.131885,0.376309,0.0253208,0.345722,0.619115,0.196748,0.0787362,0.921183,0.135063,0.810153,0.613698,0.70615,0.42168,0.0506843,0.218638,0.561842,0.802298,0.222374,0.334437,0.645984,0.219997,0.401779,0.444751,0.100197,0.415739,0.406165,0.582198,0.610704,0.421575,0.197248,0.481278,0.958654,0.598549,0.868146,0.133878,0.533753,0.109304,0.127758,0.36769,0.65473,0.746635,0.623954,0.726925,0.867852,0.239141,0.138074,0.128141,0.218866,0.783701,0.538727,0.19727,0.985989,0.808252,0.131247,0.838911,0.872262,0.544488,0.893818,0.59142,0.862573,0.371808,0.193271,0.00712091,0.132655,0.909327,0.149927,0.077611,0.519572,0.510277,0.730861,0.594591,0.138225,0.821094,0.111508,0.00603586,0.29612,0.0442249,0.604183,0.960787,0.198294,0.400641,0.284222,0.503173,0.180344,0.669453,0.911534,0.442522,0.95152,0.140871,0.0667322,0.0739011,0.472458,0.106937,0.849144,0.597076,0.752072,0.450248,0.722749,0.944634,0.526415,0.572263,0.806167,0.654999,0.222624,0.580722,0.752702,0.608,0.426747,0.947735,0.0879414,0.814801,0.800252,0.0968779,0.88306,0.53369,0.613527,0.920732,0.0878519,0.807822,0.651756,0.918653,0.953381,0.186462,0.817234,0.439685,0.126944,0.187634,0.854215,0.905928,0.262602,0.229117,0.87719,0.173287,0.816977,0.274563,0.323467,0.84012,0.778674,0.00855643,0.777957,0.360172,0.461957,0.761045,0.121928,0.243279,0.872108,0.169533,0.874943,0.612488,0.765369,0.885528,0.877079,0.000984251,0.487577,0.803659,0.630332,0.958458,0.356408,0.101805,0.192303,0.931159,0.91807,0.0518547,0.80532,0.734778,0.665037,0.415349,0.476237,0.469991,0.858885,0.17738,0.45146,0.0763271,0.0831384,0.977411,0.28596,0.975614,0.305345,0.738088,0.0834967,0.559389,0.84654,0.502402,0.353798,0.646479,0.463946,0.285765,0.734242,0.502203,0.645939,0.405597,0.861277,0.249518,0.446609,0.240322,0.0927789,0.0955034,0.833714,0.808192,0.888663,0.636925,0.126368,0.48093,0.0993921,0.510126,0.0986919,0.00704962,0.497639,0.227703,0.871538,0.138571,0.11987,0.234932,0.0856705,0.17199,0.462241,0.646421,0.960238,0.684306,0.369839,0.861876,0.203664,0.408111,0.0489699,0.191196,0.625707,0.6108,0.1839,0.114056,0.786114,0.607821,0.916245,0.352797,0.386237,0.0999748,0.575806,0.993046,0.553474,0.228916,0.0840427,0.355138,0.881498,0.0262724,0.554279,0.0296606,0.490647,0.0754983,0.0729104,0.252335,0.615278,0.698567,0.509713,0.652475,0.490968,0.00484282,0.951715,0.895613,0.287111,0.41348,0.227725,0.933312,0.99972,0.602166,0.168234,0.291608,0.299544,0.452102,0.86604,0.925247,0.0668885,0.379694,0.365897,0.892671,0.0248462,0.814558,0.847733,0.514703,0.0939793,0.789171,0.438993,0.333856,0.728134,0.690766,0.313644,0.0605189,0.939946,0.144119,0.607369,0.905081,0.415811,0.324902,0.702755,0.485947,0.405423,0.245,0.747812,0.663888,0.900232,0.0904986,0.813331,0.0330245,0.482775,0.197088,0.476287,0.614549,0.198625,0.383747,0.186469,0.535574,0.642151,0.123512,0.661154,0.674262,0.363984,0.39826,0.984536,0.570703,0.415987,0.796013,0.805171,0.694291,0.61206,0.359589,0.570608,0.403159,0.621523,0.193847,0.90656,0.807004,0.454826,0.70559,0.128242,0.450585,0.07091,0.489985,0.0823665,0.641913,0.893136,0.488466,0.0700261,0.732295,0.94971,0.0276365,0.715273,0.940259,0.978875,0.242732,0.693368,0.191109,0.879659,0.969161,0.154788,0.560114,0.180316,0.725951,0.447942,0.352743,0.675824,0.00841528,0.674472,0.632805,0.19082,0.0575956,0.258348,0.991825,0.041481,0.874435,0.893317,0.534267,0.547004,0.299693,0.333719,0.136186,0.362251,0.638395,0.861342,0.45568,0.168447,0.775505,0.845076,0.638517,0.556069,0.204247,0.885485,0.879624,0.506083,0.802025,0.917309,0.906643,0.654443,0.374207,0.196746,0.383957,0.38211,0.452575,0.682494,0.397267,0.430358,0.0366805,0.999926,0.28639,0.106877,0.716189,0.727179,0.417686,0.570082,0.815825,0.0445744,0.243459,0.964998,0.742171,0.857351,0.700248,0.248224,0.384406,0.933536,0.0349288,0.441206,0.366053,0.15789,0.584711,0.412444,0.885715,0.448192,0.995641,0.332892,0.497184,0.0205709,0.43043,0.099427,0.838479,0.802618,0.0939854,0.32186,0.0440375,0.175168,0.0433332,0.108832,0.281751,0.725411,0.993552,0.360998,0.89494,0.737212,0.7105,0.416432,0.389542,0.571373,0.092801,0.380936,0.288056,0.323594,0.29454,0.458263,0.466485,0.925399,0.835242,0.880302,0.287636,0.617256,0.449749,0.586528,0.619312,0.927958,0.897238,0.914173,0.257542,0.83399,0.713172,0.193825,0.89279,0.791959,0.213104,0.649045,0.060936,0.513447,0.9753,0.774978,0.91476,0.844821,0.306935,0.00861633,0.145816,0.940403,0.337953,0.321706,0.343742,0.835765,0.700354,0.367358,0.513233,0.152074,0.195032,0.851501,0.555391,0.604891,0.0526534,0.519873,0.414249,0.258639,0.109526,0.639694,0.0735857,0.538852,0.891887,0.708255,0.309503,0.336474,0.896251,0.0297492,0.852159,0.293575,0.0716405,0.634733,0.676886,0.592741,0.494218,0.383221,0.619335,0.0603203,0.854503,0.176518,0.426892,0.472882,0.598053,0.395077,0.981403,0.0818061,0.520238,0.182739,0.823612,0.313258,0.70475,0.379814,0.589119,0.755834,0.625449,0.772541,0.642124,0.0643392,0.243563,0.657749,0.106791,0.819792,0.782767,0.0659752,0.251107,0.781391,0.114099,0.625942,0.297528,0.539204,0.996814,0.749085,0.306035,0.77111,0.82644,0.832294,0.359327,0.661204,0.452579,0.698683,0.0383816,0.46222,0.360171,0.425818,0.839931,0.125208,0.507227,0.802939,0.77329,0.974752,0.141921,0.0956169,0.0570009,0.75918,0.22851,0.972605,0.382658,0.0802516,0.660464,0.0277001,0.877831,0.924562,0.274328,0.39509,0.948409,0.230066,0.948856,0.285588,0.910414,0.110295,0.790555,0.0619889,0.743244,0.743632,0.291682,0.270711,0.651632,0.475329,0.815705,0.733677,0.888023,0.907437,0.165631,0.52282,0.427177,0.818326,0.941999,0.229483,0.488719,0.130753,0.5102,0.901634,0.363812,0.919147,0.316786,0.906646,0.807221,0.0687494,0.695557,0.667244,0.216421,0.223789,0.292476,0.951911,0.501647,0.884814,0.442449,0.100449,0.187825,0.740967,0.0205201,0.0855484,0.998661,0.550281,0.835959,0.945056,0.845657,0.372381,0.447424,0.455045,0.157981,0.470754,0.976802,0.492846,0.842912,0.83347,0.908339,0.0159677,0.307367,0.149242,0.109726,0.189945,0.302663,0.894036,0.574532,0.575165,0.973134,0.834296,0.774683,0.544088,0.524089,0.43782,0.690038,0.475279,0.212871,0.799966,0.844806,0.820781,0.491754,0.0661162,0.491741,0.582565,0.409609,0.644418,0.672327,0.952679,0.818796,0.240825,0.554082,0.295465,0.651223,0.179473,0.455486,0.460299,0.212484,0.088611,0.393971,0.594138,0.51812,0.0554774,0.543136,0.550466,0.582393,0.838848,0.406189,0.28643,0.0748401,0.229575,0.297326,0.377492,0.380366,0.524749,0.218996,0.101735,0.950767,0.742787,0.80814,0.131653,0.586619,0.358108,0.48045,0.295653,0.263394,0.744298,0.710852,0.457772,0.477969,0.816701,0.159586,0.0177072,0.956171,0.267762,0.507892,0.859129,0.345763,0.986547,0.496732,0.11036,0.102879,0.585383,0.308666,0.178446,0.126823,0.222704,0.935926,0.739779,0.916965,0.335972,0.941079,0.479943,0.367734,0.529773,0.963753,0.489775,0.729459,0.912353,0.183247,0.622753,0.932527,0.394269,0.643777,0.797734,0.887788,0.792054,0.190148,0.476615,0.186976,0.621016,0.179569,0.908101,0.387437,0.276017,0.713271,0.731237,0.67426,0.631661,0.543863,0.660144,0.954349,0.316834,0.923269,0.0590484,0.941311,0.589643,0.703556,0.759654,0.11189,0.0956889,0.389655,0.651012,0.704542,0.921657,0.330968,0.134448,0.77699,0.650551,0.760464,0.0405975,0.144901,0.73059,0.651957,0.0137374,0.710807,0.639029,0.359623,0.144513,0.275571,0.842055,0.74861,0.661301,0.369395,0.620563,0.0985449,0.925158,0.673971,0.229343,0.638343,0.407373,0.00607675,0.619803,0.429302,0.511963,0.531093,0.139501,0.0682948,0.702401,0.58524,0.583434,0.819478,0.871319,0.209207,0.396043,0.340143,0.0109511,0.384275,0.401375,0.362512,0.76271,0.689625,0.251494,0.645368,0.639644,0.831785,0.294169,0.154491,0.1512,0.943212,0.696502,0.253132,0.965105,0.656169,0.499509,0.535145,|0.258805,0.853585,0.703037,0.526511,0.851467,0.0945414,0.496107,0.177637,0.80953,0.647113,0.554195,0.309841,0.63792,0.574402,0.815088,0.084331,0.157104,0.180366,0.00714779,0.959882,0.440344,0.110799,0.644743,0.818972,0.136083,0.527091,0.403253,0.330565,0.961072,0.871399,0.650782,0.985966,0.466287,0.156921,0.962766,0.564743,0.838656,0.150766,0.584653,0.263183,0.688779,0.814012,0.900254,0.80145,0.431712,0.701128,0.292239,0.227487,0.176365,0.704993,0.565082,0.854637,0.0947698,0.206285,0.405605,0.246383,0.507476,0.432401,0.680757,0.452865,0.94916,0.916547,0.34677,0.812581,0.744438,0.488266,0.34808,0.378335,0.463498,0.717295,0.743944,0.194767,0.321373,0.937699,0.944631,0.226347,0.637712,0.247007,0.150119,0.117993,0.498629,0.239079,0.812865,0.130075,0.0216875,0.134573,0.838066,0.0886796,0.0316667,0.382133,0.389691,0.890734,0.564726,0.37999,0.531032,0.688225,0.704591,0.134453,0.306952,0.26995,0.218644,0.139864,0.517459,0.473788,0.652513,0.31758,0.0927047,0.773571,0.917804,0.766582,0.797421,0.0328726,0.0107876,0.994368,0.0697894,0.557052,0.059508,0.762827,0.417458,0.713438,0.845467,0.275305,0.606693,0.617193,0.626636,0.420093,0.0797704,0.637721,0.544262,0.378683,0.658225,0.0391234,0.0431323,0.0936903,0.377519,0.036831,0.00220609,0.962299,0.0334608,0.242963,0.580918,0.830648,0.0720583,0.891439,0.895377,0.0675606,0.0619385,0.54808,0.586204,0.839837,0.106286,0.353302,0.186627,0.530049,0.567857,0.0970157,0.235645,0.213008,0.390638,0.695086,0.772779,0.0252505,0.630487,0.712717,0.209893,0.207197,0.924163,0.019491,0.42605,0.0226955,0.433111,0.715277,0.854532,0.926624,0.673402,0.313536,0.955883,0.0763837,0.175694,0.879954,0.595047,0.743618,0.818429,0.427648,0.897751,0.329896,0.00508618,0.756679,0.415709,0.622354,0.121368,0.8359,0.316387,0.00892687,0.989907,0.165237,0.575223,0.929674,0.968586,0.295496,0.542741,0.0623666,0.549283,0.29579,0.576091,0.400179,0.438747,0.344115,0.025857,0.845838,0.632042,0.862303,0.594764,0.591438,0.21596,0.0112652,0.38217,0.517203,0.983064,0.918176,0.827347,0.263162,0.486685,0.362141,0.602113,0.0883418,0.345217,0.0888684,0.489283,0.653305,0.260824,0.014294,0.0629503,0.4438,0.585928,0.655693,0.14018,0.223544,0.606532,0.0893819,0.684864,0.827105,0.13434,0.362126,0.0301549,0.856783,0.883504,0.495192,0.322034,0.281389,0.848818,0.996652,0.281277,0.552969,0.976895,0.578976,0.507036,0.299631,0.266877,0.379066,0.698359,0.497286,0.385892,0.477226,0.305714,0.471596,0.953217,0.400507,0.540114,0.826199,0.998093,0.459358,0.106086,0.417602,0.283154,0.813446,0.993533,0.974315,0.345181,0.651401,0.237181,0.931752,0.356384,0.872099,0.384379,0.447591,0.318229,0.325098,0.793626,0.758668,0.643785,0.00645971,0.496627,0.804729,0.45674,0.825389,0.678061,0.834317,0.0817412,0.893151,0.0230244,0.590453,0.300173,0.626028,0.201195,0.482084,0.430577,0.621892,0.942521,0.834233,0.472251,0.108855,0.934157,0.359383,0.814229,0.929865,0.297614,0.259035,0.468007,0.460065,0.831135,0.902418,0.827183,0.351148,0.532589,0.130669,0.146451,0.831511,0.730189,0.93553,0.212533,0.58671,0.842878,0.298687,0.25843,0.583372,0.943913,0.85718,0.816956,0.00475609,0.370028,0.348735,0.342676,0.384251,0.473467,0.798011,0.0550979,0.36027,0.0883927,0.0827569,0.902048,0.968215,0.450771,0.959309,0.838489,0.417859,0.200229,0.741507,0.764852,0.805613,0.303474,0.977635,0.493602,0.149775,0.606058,0.57455,0.536602,0.574732,0.367787,0.213226,0.562713,0.109135,0.980528,0.665783,0.736217,0.135254,0.894967,0.940763,0.79607,0.321638,0.973395,0.400155,0.812973,0.79779,0.851665,0.624793,0.0919752,0.81239,0.653751,0.470533,0.266488,0.8456,0.0347046,0.294729,0.000927925,0.952499,0.0346164,0.617989,0.0169055,0.184501,0.438741,0.920449,0.366997,0.814531,0.303642,0.686098,0.441118,0.629984,0.973687,0.623431,0.532864,0.744781,0.999757,0.0320041,0.652326,0.229521,0.712792,0.624751,0.566604,0.216549,0.699167,0.383969,0.721998,0.549059,0.94179,0.843864,0.00214076,0.863181,0.843331,0.789864,0.276717,0.853954,0.624433,0.975806,0.184053,0.664902,0.0397685,0.773623,0.170453,0.417134,0.966071,0.627222,0.204554,0.022042,0.117095,0.414019,0.809596,0.585492,0.377663,0.917777,0.385483,0.547553,0.632563,0.585137,0.174262,0.118353,0.883708,0.868851,0.458079,0.535906,0.992738,0.826572,0.0781875,0.727986,0.456093,0.0473132,0.742875,0.273666,0.492269,0.957599,0.558733,0.948085,0.302577,0.126045,0.485044,0.456538,0.628238,0.152666,0.561678,0.387237,0.0490537,0.297594,0.514843,0.212824,0.171433,0.418263,0.507455,0.833486,0.868744,0.592927,0.660395,0.521769,0.626404,0.0478211,0.205611,0.243435,0.0338444,0.647328,0.218037,0.410573,0.814083,0.345513,0.157264,0.0493249,0.121803,0.315055,0.574147,0.140786,0.349783,0.164912,0.230715,0.0753486,0.82278,0.809419,0.583797,0.894655,0.770377,0.836877,0.480898,0.684343,0.898743,0.176211,0.428476,0.981334,0.915224,0.0593168,0.0224297,0.123421,0.320654,0.869817,0.164131,0.310167,0.0528032,0.584224,0.360935,0.0885518,0.758614,0.776891,0.770794,0.930317,0.191564,0.567726,0.737976,0.555723,0.258295,0.509607,0.310068,0.368053,0.533494,0.20258,0.601243,0.301872,0.433029,0.591381,0.728559,0.554839,0.940516,0.526473,0.0487507,0.933345,0.801986,0.61595,0.616639,0.593023,0.210254,0.309888,0.416635,0.425028,0.599734,0.747932,0.23157,0.941958,0.68386,0.517575,0.669307,0.151978,0.77243,0.95978,0.180251,0.556566,0.637929,0.356516,0.0050568,0.210968,0.808001,0.969234,0.682873,0.341479,0.631263,0.73125,0.022624,0.318522,0.240481,0.169111,0.573351,0.642872,0.249672,0.147154,0.108862,0.331888,0.403225,0.439375,0.708698,0.855474,0.616638,0.980368,0.0198854,0.274232,0.432426,0.100736,0.103847,0.872387,0.0633016,0.11575,0.716964,0.795847,0.50992,0.743036,0.258662,0.726488,0.990637,0.710345,0.785782,0.841193,0.830782,0.0664433,0.241551,0.127348,0.97638,0.994274,0.572301,0.262269,0.59082,0.142552,0.829029,0.120721,0.130962,0.340108,0.0656559,0.0713365,0.290202,0.989745,0.180646,0.28796,0.158653,0.421306,0.127448,0.80978,0.504601,0.303853,0.835063,0.283483,0.349509,0.91829,0.790679,0.763734,0.12372,0.637917,0.331581,0.758978,0.569204,0.857249,0.302227,0.325185,0.425627,0.122886,0.691339,0.229026,0.994196,0.0391693,0.0703977,0.865423,0.627452,0.241264,0.983996,0.252827,0.973525,0.667087,0.916439,0.505464,0.629072,0.766758,0.523104,0.415622,0.106213,0.450343,0.00230217,0.153105,0.139024,0.281949,0.641723,0.485858,0.694776,0.2217,0.721372,0.705912,0.775595,0.106984,0.954775,0.0907381,0.341765,0.118642,0.00686854,0.874901,0.132658,0.746339,0.145216,0.456061,0.644988,0.915562,0.0827609,0.20203,0.978889,0.115089,0.488316,0.53266,0.363844,0.333402,0.0466862,0.666125,0.325531,0.774601,0.163592,0.195794,0.64557,0.23374,0.36866,0.318988,0.266948,0.732316,0.311515,0.845819,0.551953,0.671529,0.522145,0.21268,0.134693,0.225774,0.635529,0.65114,0.847774,0.478231,0.453738,0.990164,0.0385059,0.44946,0.114389,0.272486,0.949581,0.0843716,0.192426,0.180427,0.368268,0.406495,0.964147,0.251294,0.949613,0.0541106,0.341376,0.680372,0.459569,0.396065,0.697637,0.396402,0.257073,0.476912,0.853199,0.339094,0.754441,0.411321,0.323593,0.199079,0.744766,0.0164103,0.329947,0.254409,0.0714368,0.150727,0.445573,0.216909,0.168664,0.950049,0.748494,0.300755,0.084989,0.881313,0.985811,0.905206,0.599031,0.665842,0.571978,0.488626,0.427199,0.702037,0.556246,0.446102,0.732703,0.756091,0.697546,0.417842,0.178399,0.0832496,0.176015,0.091008,0.122147,0.848637,0.222822,0.215359,0.692159,0.252001,0.73187,0.415004,0.776539,0.578545,0.759244,0.706253,0.472639,0.0863174,0.477273,0.492659,0.789296,0.937948,0.263237,0.686594,0.244364,0.2336,0.279043,0.132276,0.201452,0.269551,0.413448,0.924961,0.0544595,0.0285977,0.658782,0.260152,0.882911,0.986559,0.115525,0.959076,0.906872,0.916635,0.371774,0.741773,0.593349,0.636291,0.991159,0.703417,0.892979,0.0239359,0.242666,0.0680425,0.67419,0.827195,0.936102,0.530267,0.800917,0.317646,0.167624,0.167901,0.836224,0.452886,0.411156,0.000853062,0.732935,0.462925,0.837452,0.657617,0.971848,0.788654,0.910661,0.429777,0.73128,0.0978805,0.54441,0.701051,0.824123,0.608044,0.526763,0.33187,0.38443,0.759227,0.819623,0.509171,0.962391,0.0816253,0.197616,0.184259,0.635279,0.446612,0.210595,0.185742,0.265664,0.204003,0.734127,0.398257,0.502495,0.192039,0.309445,0.385037,0.103688,0.622164,0.0344598,0.883021,0.731823,0.870429,0.05216,0.0167118,0.736709,0.430094,0.611585,0.203893,0.929704,0.169927,0.622944,0.781778,0.210135,0.76123,0.540386,0.733378,0.870421,0.480923,0.684533,0.174192,0.137455,0.789636,0.13632,0.819377,0.0733622,0.296451,0.441011,0.877047,0.626917,0.797536,0.805845,0.501953,0.110673,0.453028,0.371517,0.500705,0.764057,0.855327,0.996606,0.968659,0.559917,0.971815,0.777644,0.889778,0.00498635,0.0149889,0.385041,0.393868,0.288153,0.825321,0.582953,0.799266,0.0598369,0.558802,0.915806,0.546845,0.560522,0.137554,0.877312,0.480685,0.930803,0.0548688,0.164233,0.0173216,0.433286,0.03614,0.728079,0.26337,0.535699,0.0347976,0.462856,0.129848,0.511935,0.475171,0.793267,0.646901,0.22422,0.812959,0.330844,0.529743,0.279563,0.523669,0.638652,0.264941,0.236302,0.749231,0.792801,0.170363,0.920008,0.904482,0.334382,0.606374,0.223314,0.256661,0.349597,0.036415,|0.747995,0.84874,0.460983,0.0889661,0.773504,0.385072,0.575986,0.111704,0.211459,0.945979,0.923354,0.0157264,0.949568,0.0650835,0.58645,0.139833,0.569541,0.0715488,0.752472,0.675958,0.447822,0.307205,0.266195,0.451575,0.873105,0.963806,0.695438,0.323937,0.709883,0.453154,0.182195,0.49432,0.104804,0.541316,0.603728,0.2829,0.966402,0.37378,0.36856,0.820305,0.63932,0.828476,0.342533,0.572086,0.0504993,0.792238,0.753825,0.625427,0.562522,0.0839536,0.0942216,0.803957,0.564584,0.961648,0.93149,0.916626,0.739221,0.505865,0.954128,0.745101,0.176654,0.638429,0.83383,0.0260656,0.746958,0.139471,0.351594,0.662606,0.892169,0.819443,0.340109,0.922109,0.208995,0.825033,0.391344,0.575094,0.850969,0.432197,0.00555301,0.951251,0.847295,0.187006,0.284059,0.808549,0.619406,0.429335,0.651425,0.124749,0.54018,0.371304,0.542363,0.753311,0.00440836,0.754538,0.982943,0.554311,0.799594,0.700733,0.713864,0.171605,0.0499769,0.700872,0.649438,0.822824,0.218696,0.154593,0.00841153,0.238039,0.266319,0.164098,0.655207,0.761472,0.6076,0.649077,0.0536217,0.0154179,0.237255,0.8496,0.660588,0.751092,0.656294,0.624364,0.940072,0.0252339,0.381705,0.555636,0.178343,0.0563785,0.0200516,0.0576589,0.406466,0.724388,0.0822802,0.216406,0.162029,0.995219,0.870449,0.456,0.771338,0.0392125,0.481,0.261877,0.73494,0.745129,0.428389,0.456806,0.449102,0.914633,0.996047,0.905427,0.334687,0.429588,0.985232,0.157876,0.754854,0.394761,0.321121,0.0894947,0.192989,0.677527,0.0867823,0.272358,0.686543,0.340703,0.282721,0.130031,0.971056,0.173464,0.776935,0.0298069,0.898441,0.657469,0.030629,0.639231,0.884925,0.400701,0.38058,0.718669,0.63522,0.0909334,0.546279,0.405041,0.971235,0.0981647,0.801772,0.644972,0.123447,0.371568,0.10528,0.708243,0.114265,0.0394878,0.995148,0.944316,0.64684,0.904909,0.485864,0.0336094,0.287271,0.494529,0.178611,0.937521,0.886743,0.399021,0.813538,0.310843,0.898476,0.781695,0.393807,0.365247,0.412375,0.750148,0.416221,0.618283,0.989286,0.233098,0.278958,0.780211,0.211277,0.372072,0.974696,0.205335,0.0905883,0.0186938,0.00542992,0.782331,0.520764,0.136473,0.171249,0.985329,0.0851262,0.642262,0.602149,0.144364,0.778901,0.820498,0.696681,0.133194,0.827628,0.640735,0.594944,0.370647,0.642889,0.00685936,0.598176,0.82682,0.914529,0.815079,0.110979,0.439179,0.774356,0.800346,0.281064,0.16801,0.5562,0.496739,0.196426,0.432802,0.729624,0.498492,0.639407,0.38705,0.0550916,0.684435,0.990028,0.375674,0.0347221,0.441321,0.245651,0.765578,0.00378543,0.34074,0.175519,0.402709,0.811739,0.459039,0.969255,0.086832,0.946711,0.868038,0.232388,0.595801,0.12584,0.151232,0.181163,0.172818,0.043855,0.727219,0.544387,0.750522,0.64997,0.176838,0.844475,0.292815,0.489586,0.480961,0.53883,0.882244,0.741275,0.154817,0.0325183,0.0689574,0.435757,0.0156199,0.531398,0.743621,0.86703,0.657142,0.307824,0.0725266,0.0486408,0.779179,0.0859164,0.465284,0.0845804,0.407691,0.181027,0.245152,0.369329,0.708604,0.765554,0.417031,0.0510847,0.720084,0.0654609,0.933983,0.21153,0.319474,0.824837,0.91343,0.689845,0.312621,0.627557,0.630963,0.700968,0.726457,0.164244,0.172478,0.734027,0.48889,0.486767,0.973049,0.878744,0.344392,0.567742,0.488348,0.834284,0.435963,0.552593,0.223084,0.273419,0.675087,0.391441,0.0562015,0.253949,0.0901597,0.294878,0.72904,0.799546,0.922539,0.543415,0.528097,0.513562,0.634782,0.461917,0.35742,0.905561,0.816231,0.336342,0.578971,0.962304,0.35186,0.454236,0.322075,0.743669,0.263778,0.836352,0.780418,0.90281,0.141494,0.505765,0.99296,0.883541,0.652251,0.000292122,0.745347,0.0659608,0.911266,0.772819,0.0644259,0.672776,0.0773906,0.756764,0.976533,0.915764,0.837338,0.982599,0.873105,0.581757,0.0687603,0.708262,0.838928,0.987196,0.926012,0.723182,0.766182,0.907547,0.059096,0.276052,0.365116,0.524556,0.470087,0.147088,0.982599,0.259958,0.841442,0.641526,0.608215,0.756224,0.215822,0.401615,0.244912,0.947908,0.395788,0.157958,0.703634,0.655044,0.33515,0.671297,0.599737,0.523061,0.261259,0.115547,0.837057,0.265078,0.0182669,0.233497,0.423224,0.872978,0.877614,0.180112,0.0423954,0.896568,0.152928,0.243032,0.966206,0.20244,0.644844,0.781837,0.184389,0.705763,0.16478,0.0245561,0.156987,0.544765,0.503664,0.520405,0.180057,0.0806653,0.662865,0.825446,0.620309,0.553357,0.799372,0.565267,0.775358,0.413568,0.69573,0.937244,0.932738,0.198868,0.286688,0.990515,0.239259,0.289327,0.356749,0.61773,0.752294,0.163065,0.607401,0.469248,0.887654,0.660807,0.77479,0.921889,0.987387,0.169634,0.244044,0.742734,0.756695,0.827011,0.341441,0.550903,0.999764,0.954457,0.943335,0.135093,0.126096,0.644923,0.258497,0.0950859,0.712519,0.268433,0.0664759,0.109638,0.862403,0.534204,0.399002,0.724141,0.117192,0.308899,0.411663,0.208036,0.307206,0.381105,0.647066,0.000601828,0.455778,0.958395,0.98536,0.77239,0.276967,0.789954,0.623443,0.528623,0.677061,0.46913,0.778194,0.21097,0.68038,0.941541,0.612572,0.295269,0.406262,0.950656,0.106101,0.891845,0.0723344,0.414013,0.330234,0.231893,0.860453,0.751069,0.0302495,0.430203,0.0324975,0.49256,0.904429,0.268177,0.116407,0.452571,0.844667,0.0281128,0.813019,0.250475,0.931394,0.898864,0.758919,0.263527,0.591238,0.787081,0.173037,0.761955,0.616609,0.436157,0.50667,0.30203,0.326088,0.913185,0.288341,0.583072,0.593426,0.843863,0.606129,0.34237,0.0941674,0.901575,0.267991,0.0747926,0.180148,0.481562,0.156629,0.481625,0.767707,0.0618308,0.795806,0.847018,0.368419,0.843399,0.901991,0.0989627,0.270909,0.455934,0.29561,0.0328432,0.867071,0.907214,0.751215,0.100275,0.141094,0.910166,0.711486,0.229797,0.698066,0.0303641,0.984571,0.412696,0.254953,0.217403,0.748853,0.310361,0.965672,0.804235,0.521748,0.551935,0.200658,0.540448,0.0424573,0.0368478,0.939989,0.759758,0.790785,0.0972526,0.148439,0.328927,0.109468,0.412714,0.611122,0.705444,0.498155,0.71372,0.406355,0.477065,0.0195427,0.216253,0.701011,0.281705,0.355692,0.248893,0.948189,0.455135,0.355916,0.697676,0.963826,0.3648,0.941638,0.191993,0.970055,0.733914,0.0250758,0.952736,0.374185,0.312379,0.490771,0.984534,0.892023,0.630773,0.33195,0.836933,0.141794,0.251818,0.665584,0.116143,0.626944,0.819733,0.065161,0.096783,0.963096,0.869738,0.291017,0.641723,0.885924,0.0789473,0.503179,0.00799477,0.999771,0.807786,0.0760214,0.165702,0.90891,0.504125,0.151035,0.0878314,0.446344,0.866425,0.0706403,0.735277,0.457306,0.132971,0.0220002,0.454729,0.432125,0.730855,0.127405,0.169038,0.908286,0.527701,0.19495,0.868973,0.0182401,0.176531,0.202674,0.0176059,0.0889255,0.039439,0.145548,0.968806,0.180048,0.128197,0.665325,0.343158,0.581324,0.356189,0.302735,0.739839,0.854386,0.382365,0.761833,0.476329,0.742537,0.00391567,0.96838,0.989477,0.886831,0.198533,0.193457,0.536132,0.536315,0.386946,0.736751,0.724083,0.718675,0.0487853,0.140998,0.844522,0.878506,0.978121,0.06967,0.215592,0.878733,0.142746,0.152808,0.402944,0.825977,0.0115802,0.251451,0.201807,0.90034,0.656644,0.433851,0.843298,0.510948,0.774593,0.43058,0.945833,0.431501,0.248086,0.082127,0.365586,0.787724,0.98542,0.343699,0.252027,0.930317,0.650684,0.772409,0.155819,0.417602,0.394029,0.326718,0.257347,0.598004,0.998677,0.734443,0.131461,0.851288,0.247346,0.658348,0.444481,0.769619,0.627829,0.332039,0.0815776,0.398604,0.904704,0.952693,0.191952,0.227796,0.429812,0.0169772,0.873287,0.852329,0.427449,0.758758,0.475121,0.416263,0.747826,0.976334,0.564211,0.652,0.411988,0.152304,0.616841,0.592652,0.673023,0.3762,0.877843,0.000474453,0.871276,0.773626,0.753279,0.749986,0.0018453,0.706673,0.370184,0.854824,0.220963,0.259967,0.778483,0.982483,0.644356,0.835228,0.158126,0.536527,0.953054,0.564776,0.504285,0.346305,0.906333,0.75057,0.0552288,0.108798,0.767485,0.919709,0.388613,0.898509,0.978431,0.0723816,0.512799,0.0686296,0.225342,0.633516,0.980683,0.879592,0.450278,0.286972,0.0802667,0.4831,0.457529,0.152995,0.728968,0.625358,0.122482,0.221429,0.390178,0.812083,0.792715,0.637077,0.290696,0.0888613,0.350256,0.469567,0.156118,0.248698,0.224181,0.404803,0.791031,0.971961,0.46822,0.373711,0.758854,0.872513,0.485144,0.805505,0.32217,0.283758,0.55428,0.687132,0.906166,0.428803,0.449535,0.977225,0.692629,0.241738,0.65555,0.860743,0.419201,0.156995,0.434655,0.722691,0.224542,0.998371,0.0243703,0.415169,0.980012,0.849267,0.559688,0.469592,0.0829158,0.299044,0.936267,0.201092,0.461396,0.557312,0.851807,0.248537,0.368714,0.452989,0.00976455,0.0921941,0.722031,0.442669,0.960312,0.0397627,0.559247,0.0445595,0.0233825,0.539529,0.92371,0.821533,0.061056,0.208551,0.796176,0.313785,0.0053314,0.967463,0.47266,0.173665,0.645659,0.0619565,0.242665,0.817641,0.200909,0.940779,0.681148,0.753753,0.911854,0.560603,0.147626,0.313886,0.40211,0.64691,0.173268,0.81246,0.885669,0.254768,0.879048,0.461809,0.196614,0.369488,0.776636,0.0786063,0.946886,0.476195,0.445033,0.63062,0.493998,0.0854529,0.583195,0.090054,0.155461,0.997907,0.722197,0.703987,0.912453,0.335189,0.649793,0.99053,0.211406,0.813036,0.880744,0.109112,0.83479,0.184339,0.431441,0.584147,0.45529,0.595526,0.516411,0.329798,0.447598,0.627735,0.522416,0.282634,0.99325,0.996392,0.206702,0.0384874,0.18154,0.772405,0.999181,0.409873,0.668242,0.86469,0.919452,0.0331929,0.909576,0.499965,0.00389743,0.663008,|0.89788,0.833122,0.110423,0.131736,0.843503,0.605187,0.473586,0.618713,0.118405,0.543347,0.39688,0.530746,0.812518,0.735968,0.328495,0.860341,0.895108,0.172259,0.5251,0.0857791,0.989503,0.866574,0.702651,0.0264007,0.663876,0.200664,0.294145,0.486527,0.202197,0.153112,0.684943,0.919277,0.393102,0.781101,0.631943,0.715787,0.00770515,0.921684,0.0551323,0.691612,0.371228,0.775157,0.639836,0.585826,0.793085,0.890352,0.826535,0.650251,0.702477,0.805188,0.488954,0.975959,0.741678,0.353654,0.0568721,0.118969,0.909799,0.998984,0.258655,0.936469,0.966423,0.843345,0.945703,0.968389,0.544793,0.791017,0.108802,0.695213,0.000521421,0.87366,0.615077,0.965989,0.831321,0.935957,0.937929,0.0618317,0.671784,0.9577,0.644119,0.802829,0.454522,0.116741,0.752919,0.703589,0.00432509,0.226331,0.731626,0.742661,0.299424,0.746052,0.519255,0.0786436,0.470452,0.111263,0.224557,0.641364,0.745685,0.542278,0.17362,0.0981186,0.0406551,0.276886,0.446002,0.694877,0.895493,0.812092,0.216667,0.988136,0.0832791,0.314299,0.0333927,0.197882,0.886908,0.988982,0.932799,0.105758,0.523601,0.567046,0.415187,0.644273,0.431338,0.214175,0.76507,0.168603,0.785446,0.804339,0.852898,0.83344,0.282958,0.380791,0.660672,0.365474,0.55696,0.382574,0.367559,0.247508,0.827683,0.699224,0.416702,0.808856,0.745962,0.700255,0.608084,0.244053,0.298638,0.318256,0.00464165,0.463434,0.269456,0.570214,0.56157,0.294042,0.424678,0.968439,0.57892,0.506325,0.97671,0.0174033,0.668486,0.306496,0.383219,0.336783,0.652756,0.402849,0.494618,0.112485,0.413282,0.114683,0.202881,0.848343,0.506953,0.783763,0.00415283,0.601255,0.978827,0.390549,0.790729,0.278094,0.834835,0.715513,0.807619,0.0695083,0.208814,0.473679,0.108614,0.460748,0.732549,0.269476,0.956033,0.332278,0.782797,0.45832,0.98102,0.359721,0.684712,0.107111,0.342046,0.713769,0.450243,0.719422,0.682986,0.824474,0.511704,0.94838,0.375114,0.926568,0.171529,0.237284,0.594511,0.373566,0.467354,0.238048,0.715728,0.843248,0.493864,0.678943,0.162764,0.558975,0.301406,0.829596,0.759548,0.94801,0.136819,0.922346,0.254716,0.838016,0.752241,0.0538331,0.416948,0.662087,0.758292,0.0266212,0.396992,0.44394,0.710521,0.374265,0.164034,0.223333,0.143577,0.778835,0.527867,0.159968,0.352838,0.645188,0.17828,0.581627,0.637344,0.475255,0.20019,0.0614132,0.877538,0.701645,0.954119,0.635568,0.659757,0.925397,0.258597,0.212707,0.891554,0.983191,0.201463,0.9927,0.551523,0.895191,0.265425,0.401257,0.1856,0.402851,0.141688,0.53102,0.579787,0.531198,0.937809,0.873132,0.449668,0.588587,0.608761,0.768566,0.88114,0.578792,0.429652,0.748566,0.217954,0.219766,0.728257,0.861358,0.8436,0.923433,0.658654,0.668499,0.362167,0.281449,0.600396,0.665576,0.0184744,0.0824326,0.261863,0.974369,0.902639,0.454646,0.360964,0.583605,0.632482,0.462827,0.411053,0.0487505,0.0149335,0.310704,0.689937,0.522976,0.531043,0.759942,0.540807,0.0790295,0.643819,0.436615,0.91837,0.208528,0.726837,0.68052,0.273183,0.876692,0.362542,0.306286,0.927539,0.144878,0.293528,0.719334,0.962507,0.180128,0.181097,0.219414,0.121299,0.265951,0.958476,0.131865,0.0696768,0.736596,0.174169,0.291286,0.481669,0.228818,0.54705,0.552054,0.764884,0.888606,0.921649,0.172785,0.222038,0.299435,0.887956,0.224325,0.550127,0.735932,0.456066,0.0299866,0.569108,0.209671,0.235709,0.508207,0.585102,0.591665,0.531768,0.151648,0.166631,0.332704,0.839149,0.436848,0.955475,0.535485,0.596057,0.657095,0.406344,0.955339,0.0785974,0.705774,0.196956,0.113424,0.462337,0.935254,0.370537,0.523295,0.283829,0.710183,0.450092,0.881824,0.474649,0.990793,0.782547,0.389051,0.988313,0.219018,0.614317,0.939691,0.640328,0.0425885,0.686483,0.643917,0.884268,0.908845,0.756535,0.826194,0.554176,0.212842,0.127832,0.714066,0.470991,0.542996,0.0611155,0.244488,0.954569,0.332097,0.784422,0.75327,0.18686,0.715069,0.155024,0.144861,0.60398,0.0656445,0.56288,0.555913,0.698464,0.241278,0.733905,0.408475,0.342389,0.130577,0.523403,0.150434,0.21524,0.229213,0.534174,0.396066,0.49815,0.791636,0.738866,0.020164,0.588741,0.321163,0.791737,0.26223,0.833552,0.794892,0.245701,0.401473,0.422248,0.618729,0.272323,0.55002,0.219908,0.583189,0.380701,0.218718,0.620453,0.075532,0.579989,0.495711,0.982934,0.778234,0.791585,0.404595,0.13089,0.70549,0.957468,0.83785,0.32105,0.581776,0.780349,0.394348,0.491107,0.0230799,0.455549,0.450708,0.864626,0.851373,0.0714352,0.129841,0.679375,0.940039,0.954063,0.227949,0.424965,0.741026,0.87331,0.301642,0.360893,0.136652,0.305055,0.185499,0.258541,0.422467,0.677443,0.666438,0.478748,0.0801347,0.449428,0.517476,0.659708,0.694223,0.155555,0.515619,0.631115,0.691365,0.151967,0.301797,0.380358,0.288558,0.729702,0.832793,0.00966322,0.390539,0.457147,0.504209,0.442528,0.948247,0.388559,0.841802,0.691909,0.920166,0.209319,0.532226,0.706908,0.406974,0.245757,0.752583,0.509245,0.397646,0.0804457,0.0476096,0.254073,0.598499,0.637944,0.635062,0.852706,0.305942,0.299791,0.117657,0.0378368,0.239482,0.165048,0.366179,0.24393,0.121103,0.807183,0.695539,0.236449,0.525104,0.263716,0.833215,0.0879847,0.142862,0.263393,0.872869,0.447655,0.817317,0.666338,0.36215,0.0777521,0.594249,0.415514,0.415035,0.879153,0.90858,0.664761,0.118161,0.816547,0.595528,0.217681,0.92318,0.501748,0.701472,0.163056,0.310983,0.892504,0.79231,0.0545518,0.794844,0.727272,0.251432,0.389152,0.573534,0.632177,0.533721,0.9075,0.282304,0.153889,0.370997,0.257893,0.536358,0.551299,0.908523,0.56223,0.35595,0.886812,0.0231329,0.760117,0.277034,0.755034,0.479251,0.220665,0.423931,0.776812,0.15105,0.888432,0.35778,0.0981644,0.432094,0.774983,0.690221,0.0580447,0.375074,0.0476936,0.40286,0.256215,0.719318,0.555212,0.664436,0.10926,0.883711,0.886839,0.00937635,0.433583,0.368839,0.721566,0.919558,0.473665,0.706199,0.440021,0.98769,0.64127,0.404235,0.310379,0.0505098,0.560964,0.399738,0.197263,0.226983,0.281638,0.212853,0.722582,0.499538,0.713993,0.241159,0.346843,0.354127,0.38621,0.764914,0.0318154,0.492408,0.954537,0.295999,0.425198,0.906011,0.969703,0.87026,0.478746,0.104544,0.400313,0.564352,0.670631,0.374319,0.0494878,0.46399,0.900711,0.605362,0.398921,0.346558,0.733893,0.23565,0.396861,0.267534,0.165181,0.831623,0.324717,0.0926225,0.526248,0.211955,0.315496,0.932808,0.535793,0.48819,0.959684,0.180717,0.416345,0.940252,0.772093,0.488884,0.0113633,0.791593,0.365065,0.191336,0.355777,0.577303,0.853665,0.614058,0.113471,0.750227,0.0672345,0.172544,0.229071,0.895688,0.57061,0.690069,0.912376,0.35781,0.265424,0.188823,0.198503,0.294031,0.969589,0.597757,0.732635,0.361828,0.752714,0.200623,0.995387,0.567414,0.47335,0.866764,0.271809,0.320468,0.794085,0.0302917,0.526523,0.896525,0.977241,0.276169,0.301537,0.983972,0.219057,0.565334,0.690208,0.822941,0.740653,0.300726,0.561287,0.472651,0.705499,0.526606,0.446883,0.120805,0.00438911,0.55196,0.0233132,0.601011,0.751764,0.838036,0.378089,0.622931,0.896853,0.928835,0.486794,0.134097,0.282457,0.229533,0.78767,0.17413,0.984039,0.0689034,0.258478,0.267668,0.210484,0.66554,0.525911,0.842509,0.0880567,0.907351,0.144989,0.765193,0.0967078,0.982207,0.67917,0.502142,0.4933,0.707591,0.389953,0.510369,0.818574,0.956906,0.0794334,0.517081,0.462526,0.774945,0.184094,0.445559,0.880536,0.0140535,0.542345,0.587621,0.0999168,0.896012,0.297318,0.367742,0.439939,0.124052,0.16057,0.643849,0.768233,0.795762,0.323092,0.384427,0.642963,0.278331,0.125564,0.875317,0.0384371,0.522432,0.441327,0.0378876,0.535302,0.00374925,0.851334,0.0411234,0.235868,0.00997227,0.0243809,0.0169834,0.879729,0.536633,0.427388,0.301127,0.105972,0.936463,0.480591,0.473365,0.460843,0.469136,0.207116,0.865556,0.0341206,0.346977,0.304133,0.142037,0.05549,0.431993,0.108394,0.798319,0.648245,0.292889,0.161256,0.480023,0.621497,0.73709,0.0982776,0.787282,0.26805,0.316789,0.181141,0.692633,0.430011,0.218129,0.471823,0.0961268,0.460816,0.448748,0.321162,0.736364,0.750909,0.0304244,0.316263,0.702177,0.635654,0.201448,0.846842,0.394102,0.864203,0.197409,0.828732,0.257876,0.636096,0.228958,0.695341,0.945235,0.363634,0.206553,0.22975,0.191999,0.34712,0.0548192,0.133709,0.986383,0.788864,0.271124,0.025218,0.290439,0.314655,0.948725,0.966515,0.485914,0.475313,0.345001,0.338268,0.281011,0.821755,0.267485,0.952396,0.424631,0.125758,0.869785,0.285662,0.788796,0.641891,0.534557,0.613693,0.277636,0.291553,0.0507572,0.561343,0.572663,0.834484,0.741306,0.0677532,0.524373,0.947426,0.137432,0.9519,0.879253,0.831089,0.0972251,0.682299,0.804282,0.175619,0.796163,0.658729,0.936941,0.574327,0.444557,0.1266,0.806191,0.268788,0.703967,0.833932,0.911606,0.162491,0.590774,0.591853,0.456143,0.00442612,0.987714,0.708218,0.150583,0.372937,0.149162,0.232633,0.959602,0.447218,0.0324227,0.607855,0.267449,0.463181,0.923637,0.239397,0.77378,0.198461,0.637203,0.747551,0.986125,0.523332,0.814046,0.299975,0.665039,0.365346,0.36642,0.89695,0.200381,0.000615954,0.455805,0.888958,0.178989,0.691759,0.869617,0.54759,0.665359,0.957755,0.488236,0.927959,0.569383,0.911962,0.168479,0.88509,0.798883,0.780633,0.27781,0.56084,0.804468,0.162247,0.0892394,0.339503,0.556583,0.893202,0.647172,0.237927,0.897401,0.026219,0.850871,0.0720097,0.199635,0.150665,0.715004,|0.67684,0.522842,0.0529333,0.179325,0.180138,0.435493,0.363437,0.231527,0.23075,0.629994,0.0830084,0.955292,0.12815,0.928828,0.250745,0.0732499,0.739111,0.697132,0.17408,0.146554,0.675631,0.706933,0.491408,0.536793,0.718448,0.876937,0.47345,0.281361,0.13908,0.443365,0.158586,0.683163,0.520166,0.928334,0.772573,0.306308,0.672083,0.469541,0.485461,0.324496,0.232574,0.206325,0.708187,0.00899494,0.922799,0.684076,0.951634,0.299651,0.811507,0.300459,0.566467,0.947541,0.663687,0.836238,0.159102,0.865604,0.38345,0.368362,0.448774,0.909539,0.912838,0.0315914,0.202178,0.536197,0.428736,0.910865,0.666228,0.224089,0.417655,0.716345,0.16787,0.495884,0.287436,0.141392,0.952705,0.634374,0.752073,0.376454,0.830645,0.470738,0.99836,0.458731,0.264426,0.850629,0.174572,0.88295,0.34135,0.106136,0.293061,0.835431,0.310359,0.364807,0.87864,0.211243,0.539239,0.793981,0.498733,0.534326,0.00168937,0.655274,0.778515,0.747245,0.258418,0.384365,0.928527,0.641373,0.623245,0.219963,0.669594,0.353731,0.393931,0.344007,0.598474,0.620479,0.16097,0.286435,0.203561,0.858064,0.89832,0.511232,0.0833889,0.469351,0.0741141,0.313738,0.0462379,0.365359,0.176733,0.380006,0.840964,0.697382,0.0909556,0.134117,0.438904,0.982804,0.670495,0.156189,0.493823,0.571403,0.575972,0.759147,0.0619899,0.587537,0.19805,0.327411,0.476596,0.330222,0.237856,0.519312,0.0408329,0.0916363,0.486433,0.015679,0.751077,0.0321241,0.10977,0.78041,0.360326,0.416951,0.181989,0.8141,0.510613,0.621562,0.347502,0.21138,0.430442,0.951068,0.344054,0.263509,0.916368,0.982126,0.690627,0.257018,0.242108,0.421244,0.589525,0.51113,0.60565,0.420494,0.431248,0.90502,0.642842,0.407257,0.42358,0.336723,0.241378,0.348464,0.886386,0.72393,0.444678,0.708503,0.465811,0.501064,0.862503,0.342747,0.18382,0.990948,0.915311,0.286374,0.762888,0.00231844,0.546128,0.462235,0.604889,0.805406,0.631206,0.315834,0.252819,0.968193,0.149751,0.278374,0.159959,0.501257,0.860801,0.844699,0.819801,0.942114,0.955642,0.540681,0.0688103,0.783254,0.857406,0.472113,0.212674,0.979965,0.883148,0.369336,0.449553,0.827169,0.93392,0.2576,0.693388,0.0345296,0.806699,0.694852,0.615836,0.149038,0.465973,0.604572,0.887604,0.301068,0.188744,0.0197741,0.0817368,0.770535,0.101875,0.944904,0.807226,0.426479,0.84728,0.598774,0.576972,0.698456,0.943072,0.782534,0.860715,0.0430328,0.367567,0.126803,0.503721,0.510562,0.684964,0.681172,0.00865692,0.22708,0.381537,0.657998,0.651072,0.739482,0.3077,0.729902,0.669582,0.666233,0.426369,0.155792,0.846145,0.156453,0.223446,0.560268,0.00195825,0.58597,0.00647968,0.0544555,0.950371,0.133593,0.507052,0.984637,0.645318,0.0759797,0.057982,0.0409483,0.598103,0.475063,0.809922,0.274907,0.842229,0.561565,0.325695,0.753611,0.621448,0.314599,0.24774,0.290873,0.135745,0.711086,0.315216,0.334771,0.742477,0.978397,0.264093,0.893894,0.602126,0.485363,0.67027,0.759338,0.630736,0.812087,0.541414,0.326532,0.428186,0.977665,0.0748807,0.572987,0.383166,0.402461,0.597787,0.880094,0.282204,0.559092,0.379463,0.904237,0.621386,0.33643,0.923868,0.646018,0.275918,0.332819,0.519467,0.0808083,0.56343,0.524043,0.00927788,0.165313,0.977349,0.111355,0.269076,0.23974,0.692943,0.527153,0.560703,0.509344,0.0308803,0.362568,0.356924,0.149359,0.245926,0.771353,0.848185,0.256239,0.673512,0.806853,0.216561,0.522723,0.65437,0.248234,0.774448,0.817966,0.898241,0.191717,0.394102,0.691925,0.00722426,0.203261,0.51917,0.603651,0.85634,0.562567,0.473328,0.494293,0.77941,0.153624,0.390714,0.361277,0.726147,0.220363,0.771709,0.5016,0.276817,0.655252,0.961909,0.700851,0.287393,0.105051,0.291112,0.0537993,0.918324,0.440734,0.385544,0.535892,0.684982,0.0444466,0.920236,0.0464855,0.0140218,0.62126,0.723404,0.327378,0.610415,0.298395,0.714979,0.658602,0.283934,0.43093,0.525891,0.315243,0.446574,0.658022,0.46922,0.606504,0.990918,0.407482,0.722725,0.778138,0.674467,0.673653,0.445189,0.62673,0.227325,0.00115067,0.236292,0.201196,0.496953,0.548363,0.713327,0.117601,0.490408,0.919923,0.0222088,0.313689,0.722159,0.677976,0.955876,0.00278342,0.342988,0.0705842,0.698796,0.726355,0.239828,0.389566,0.652328,0.859699,0.933393,0.155458,0.441175,0.879103,0.29177,0.110538,0.875413,0.141104,0.123727,0.902379,0.11399,0.797437,0.716365,0.783476,0.104434,0.247617,0.124695,0.550983,0.617528,0.0972521,0.584993,0.148812,0.891466,0.950651,0.815161,0.272223,0.785847,0.349139,0.78175,0.729976,0.0846087,0.424277,0.924773,0.341485,0.229276,0.941136,0.101772,0.868841,0.314914,0.23317,0.701205,0.16378,0.743735,0.612443,0.0113859,0.542602,0.52092,0.873285,0.15841,0.903092,0.218791,0.0314727,0.278503,0.416861,0.36481,0.724873,0.106309,0.929309,0.539922,0.290066,0.268641,0.871539,0.566356,0.318903,0.550399,0.215474,0.504989,0.206242,0.0833435,0.410782,0.254319,0.631602,0.279656,0.31457,0.951225,0.96285,0.990903,0.113948,0.696029,0.988065,0.537129,0.397178,0.592713,0.363576,0.866809,0.703024,0.90935,0.905116,0.0403788,0.119328,0.597486,0.576694,0.334158,0.37779,0.337041,0.623415,0.662576,0.586137,0.984643,0.0650176,0.810163,0.047091,0.575287,0.285865,0.247432,0.110773,0.569543,0.734842,0.3608,0.0225438,0.0353032,0.826684,0.347791,0.258966,0.175878,0.302433,0.0432074,0.00876933,0.58202,0.223885,0.588772,0.305642,0.572954,0.206246,0.28732,0.794607,0.178656,0.961258,0.447843,0.229544,0.568586,0.905229,0.0825143,0.598495,0.439541,0.464021,0.744796,0.256887,0.80669,0.93334,0.607342,0.39886,0.426857,0.567117,0.28917,0.720041,0.814531,0.0877841,0.476522,0.259194,0.263245,0.104776,0.162167,0.942776,0.308418,0.900158,0.59213,0.236428,0.707301,0.300731,0.183926,0.446213,0.672638,0.568014,0.875799,0.857167,0.0657856,0.26851,0.484468,0.682098,0.126554,0.305681,0.577554,0.643062,0.314011,0.431206,0.727222,0.292314,0.220664,0.450767,0.755642,0.242099,0.512046,0.260673,0.500118,0.463511,0.632316,0.276768,0.11401,0.367893,0.195741,0.301759,0.722842,0.669278,0.961816,0.875014,0.0298951,0.657297,0.52541,0.497574,0.899614,0.240477,0.199929,0.782254,0.540772,0.908538,0.831429,0.273771,0.201018,0.476841,0.197858,0.322085,0.502487,0.263448,0.219518,0.765447,0.318677,0.277254,0.772317,0.484783,0.622158,0.158613,0.149713,0.381131,0.899954,0.698366,0.168842,0.276607,0.479815,0.00610596,0.0100187,0.717727,0.937638,0.428929,0.427439,0.523692,0.165115,0.00530303,0.821914,0.164823,0.600531,0.19297,0.053735,0.320104,0.758019,0.326081,0.598934,0.301115,0.797416,0.453044,0.00465739,0.980303,0.319177,0.770734,0.494407,0.605955,0.305106,0.216794,0.580617,0.424715,0.106717,0.73924,0.241843,0.0433953,0.254714,0.860723,0.196236,0.338132,0.0244219,0.5758,0.726358,0.519836,0.976749,0.433017,0.675279,0.392516,0.210468,0.595737,0.470793,0.164337,0.544571,0.666867,0.0242047,0.587456,0.355835,0.127983,0.132762,0.910748,0.187204,0.0449323,0.781399,0.412046,0.404833,0.212499,0.584204,0.669104,0.635486,0.930306,0.335036,0.705962,0.220734,0.0916332,0.554752,0.428207,0.828598,0.740435,0.155774,0.334709,0.351397,0.668981,0.53413,0.827739,0.611184,0.973422,0.290958,0.790924,0.582973,0.146287,0.823865,0.478274,0.457067,0.25719,0.350531,0.483571,0.2074,0.356205,0.0268463,0.832852,0.639501,0.301025,0.196342,0.668396,0.230041,0.283679,0.407003,0.957969,0.388084,0.429942,0.21562,0.926602,0.487701,0.87728,0.299008,0.0631002,0.272743,0.123014,0.863095,0.652009,0.396396,0.0370886,0.149812,0.106854,0.0148293,0.482661,0.688212,0.45331,0.875279,0.620774,0.513377,0.263623,0.183641,0.721792,0.367324,0.0444815,0.0658805,0.234023,0.192723,0.57534,0.913981,0.15642,0.641649,0.805814,0.385072,0.680885,0.373544,0.470329,0.161827,0.107864,0.981025,0.444929,0.409792,0.746057,0.450474,0.331858,0.0558504,0.493752,0.158322,0.625286,0.0744216,0.755604,0.998082,0.830292,0.706741,0.142689,0.997272,0.903906,0.40306,0.245044,0.605404,0.967054,0.398665,0.688743,0.413326,0.391665,0.323354,0.108881,0.123951,0.497917,0.476475,0.342416,0.578694,0.808751,0.0762247,0.476944,0.287551,0.193829,0.740392,0.952691,0.836018,0.912658,0.424072,0.211048,0.46884,0.795263,0.774085,0.394711,0.838446,0.627306,0.649298,0.851933,0.042154,0.979405,0.737333,0.611254,0.536896,0.172229,0.721299,0.894224,0.907968,0.966767,0.161878,0.202678,0.69826,0.633563,0.41616,0.837711,0.221506,0.53848,0.898611,0.0105259,0.482631,0.385676,0.729884,0.833338,0.647811,0.90756,0.635957,0.0819917,0.386282,0.00501508,0.364107,0.939385,0.667177,0.239101,0.67215,0.636924,0.0315812,0.933119,0.217454,0.13235,0.137222,0.70711,0.827201,0.229418,0.641089,0.624104,0.411124,0.208684,0.366414,0.602403,0.613138,0.595215,0.92753,0.781564,0.517669,0.605525,0.201707,0.203233,0.0622583,0.0756561,0.348116,0.175201,0.414362,0.0525293,0.111238,0.160728,0.662041,0.134123,0.723969,0.038808,0.145297,0.310366,0.535394,0.17864,0.748287,0.0584763,0.743505,0.209437,0.480473,0.210125,0.0888044,0.787315,0.154383,0.27378,0.0535096,0.185097,0.692073,0.447973,0.957333,0.940469,0.239553,0.829484,0.607171,0.24869,0.23675,0.726185,0.849899,0.644686,0.426908,0.318777,0.109002,0.0404766,0.0750917,0.993621,0.22814,0.0217263,0.18408,0.958255,0.4277,0.335801,0.627215,0.498642,0.682453,0.724611,0.0180188,0.0491519,0.382087,0.611972,0.893541,0.597729,|0.657483,0.996427,0.287538,0.682084,0.160611,0.252147,0.211844,0.206579,0.872523,0.794249,0.926766,0.0151805,0.295555,0.303332,0.310232,0.409872,0.98137,0.472295,0.427255,0.298926,0.463968,0.151551,0.863816,0.842776,0.744335,0.97973,0.470862,0.293444,0.795373,0.0842216,0.532711,0.758565,0.839715,0.604665,0.744316,0.162554,0.0114992,0.143975,0.185963,0.525117,0.755447,0.707615,0.920318,0.516263,0.0370257,0.423974,0.207003,0.510308,0.0238379,0.0596303,0.687769,0.800121,0.155538,0.929959,0.372465,0.667197,0.283832,0.363006,0.418112,0.957891,0.864483,0.569051,0.944786,0.443621,0.246819,0.780527,0.785689,0.848223,0.485436,0.132602,0.0126017,0.644243,0.225669,0.598956,0.770533,0.375967,0.753813,0.256492,0.408695,0.065349,0.774584,0.958173,0.156569,0.773137,0.492133,0.586341,0.544508,0.894238,0.193099,0.289264,0.583629,0.0590786,0.754479,0.101162,0.0619293,0.387877,0.542145,0.322716,0.497664,0.543968,0.0330079,0.834196,0.148296,0.42379,0.086073,0.0539563,0.178755,0.963962,0.0309475,0.775888,0.388915,0.569455,0.577059,0.465226,0.394452,0.41971,0.0667124,0.300451,0.184533,0.831411,0.590356,0.341747,0.145514,0.717818,0.96173,0.00386518,0.373685,0.325739,0.530762,0.893213,0.735132,0.710064,0.243344,0.100022,0.14541,0.848267,0.943703,0.364188,0.56764,0.775263,0.502303,0.104278,0.985669,0.197092,0.900186,0.754583,0.603788,0.41746,0.322953,0.0514542,0.688252,0.828598,0.104526,0.417363,0.48026,0.580942,0.730224,0.162728,0.887081,0.784765,0.558339,0.763766,0.696276,0.415235,0.993258,0.382661,0.214027,0.921284,0.11745,0.219291,0.434102,0.853778,0.159497,0.272115,0.776619,0.0299626,0.0034824,0.705681,0.650212,0.707821,0.171378,0.728172,0.887719,0.103017,0.309878,0.614914,0.696467,0.800613,0.788218,0.273542,0.279086,0.47176,0.856625,0.908004,0.278744,0.220719,0.899046,0.626489,0.0121375,0.945341,0.37115,0.360335,0.974376,0.0818936,0.862681,0.624336,0.683413,0.523233,0.150339,0.286464,0.315262,0.558911,0.965326,0.826143,0.489257,0.692846,0.160041,0.601362,0.139944,0.94045,0.4304,0.499719,0.0423184,0.791243,0.624825,0.865523,0.102633,0.839951,0.0823849,0.52113,0.581605,0.385565,0.181391,0.677576,0.836035,0.824043,0.0936101,0.555559,0.629976,0.0862344,0.394662,0.754501,0.157313,0.964273,0.614,0.743316,0.709819,0.752256,0.714194,0.897837,0.952554,0.563738,0.197558,0.331452,0.029456,0.504342,0.984053,0.127324,0.3387,0.235909,0.45378,0.222413,0.771967,0.600231,0.236827,0.268291,0.530932,0.91352,0.0893124,0.999138,0.41209,0.660637,0.599594,0.726022,0.0511967,0.298733,0.443774,0.875145,0.407731,0.775952,0.542082,0.400608,0.69371,0.65038,0.292305,0.837634,0.751773,0.262154,0.234344,0.211022,0.431499,0.458047,0.812816,0.933498,0.6936,0.823575,0.597344,0.107235,0.258775,0.134194,0.972921,0.812163,0.33627,0.0465165,0.084556,0.69733,0.36031,0.0524834,0.748322,0.232817,0.338429,0.0864217,0.275752,0.303052,0.491087,0.0407963,0.13737,0.41688,0.358241,0.236371,0.236606,0.664585,0.892416,0.225777,0.843217,0.607608,0.0328696,0.320764,0.695409,0.803256,0.690874,0.835384,0.590474,0.456955,0.563641,0.558871,0.00140673,0.292275,0.362896,0.277399,0.848788,0.410957,0.510737,0.998298,0.267908,0.163368,0.329779,0.116116,0.00113112,0.824906,0.870635,0.662812,0.472586,0.178737,0.638904,0.127153,0.952409,0.840218,0.308564,0.513209,0.0566493,0.992749,0.889722,0.0807464,0.978132,0.0307912,0.548929,0.807139,0.498387,0.412305,0.372347,0.200192,0.111358,0.315815,0.111009,0.989709,0.0273504,0.776589,0.144076,0.028192,0.739116,0.84403,0.107397,0.775244,0.225054,0.425975,0.758987,0.879705,0.371736,0.245015,0.0477118,0.543036,0.777762,0.791095,0.0434381,0.315036,0.661069,0.729536,0.667436,0.765473,0.181864,0.716029,0.385858,0.506473,0.638496,0.678833,0.475669,0.566959,0.587131,0.45482,0.595238,0.712997,0.771873,0.894135,0.212995,0.928186,0.322183,0.901638,0.0968908,0.0942218,0.708187,0.421464,0.321759,0.919942,0.745397,0.178556,0.921,0.86593,0.708473,0.705247,0.568394,0.59042,0.87162,0.493837,0.474251,0.0870441,0.412099,0.192692,0.791987,0.823969,0.148695,0.196674,0.643533,0.495977,0.278853,0.718846,0.0769224,0.869269,0.614275,0.280555,0.898377,0.388538,0.0580794,0.692895,0.507167,0.644608,0.412968,0.329272,0.0810573,0.57121,0.0169926,0.17839,0.587453,0.081254,0.634999,0.378807,0.176824,0.178063,0.299816,0.161244,0.82044,0.240433,0.925971,0.809366,0.736358,0.999115,0.00430489,0.0197555,0.384329,0.696346,0.96503,0.143501,0.727225,0.7759,0.593588,0.0831383,0.556955,0.534278,0.320784,0.699941,0.408435,0.28071,0.328668,0.359797,0.661701,0.496355,0.784649,0.803525,0.395486,0.600232,0.262984,0.209306,0.483829,0.563816,0.656496,0.202219,0.498049,0.309622,0.564393,0.187129,0.232828,0.552893,0.259242,0.64035,0.917058,0.101805,0.280716,0.50965,0.729303,0.566941,0.818532,0.0237217,0.526252,0.825745,0.720185,0.232528,0.194795,0.0531844,0.715709,0.978146,0.845551,0.481521,0.490443,0.716981,0.251617,0.731529,0.250519,0.542831,0.0111673,0.0935746,0.498797,0.361774,0.674184,0.20431,0.637864,0.0264633,0.694079,0.876235,0.000705361,0.118261,0.173844,0.489211,0.101627,0.171372,0.766816,0.479227,0.0330301,0.823587,0.371144,0.826122,0.224147,0.748721,0.636734,0.760716,0.263478,0.49542,0.0364164,0.048914,0.48191,0.144083,0.464675,0.220662,0.572289,0.848148,0.392604,0.77133,0.7537,0.515902,0.483998,0.256094,0.807085,0.615225,0.293682,0.609035,0.392521,0.968189,0.899118,0.587336,0.602929,0.566415,0.0110449,0.110342,0.790723,0.164919,0.410478,0.736735,0.712951,0.514406,0.925873,0.334262,0.506325,0.526282,0.54818,0.727361,0.453247,0.882227,0.0827029,0.671363,0.334633,0.506555,0.369584,0.605887,0.708367,0.484794,0.178291,0.264554,0.177877,0.921543,0.973094,0.539569,0.527032,0.174354,0.11879,0.811822,0.817848,0.701765,0.765508,0.832611,0.289743,0.0114851,0.526335,0.768647,0.203525,0.336065,0.769376,0.529284,0.876686,0.237797,0.998709,0.297791,0.366294,0.720089,0.00944275,0.858591,0.775643,0.156992,0.211875,0.791554,0.904442,0.784977,0.658858,0.696505,0.473163,0.561168,0.0300637,0.535832,0.0491638,0.0346241,0.812874,0.205474,0.134908,0.139492,0.424039,0.199004,0.872891,0.689964,0.0287341,0.878639,0.476498,0.580051,0.00591081,0.0599775,0.73255,0.435607,0.974998,0.49464,0.112781,0.692013,0.262725,0.0435732,0.176673,0.0602323,0.685856,0.0382764,0.831746,0.782783,0.1116,0.121531,0.349283,0.269276,0.314551,0.622428,0.754452,0.765773,0.433022,0.365945,0.448808,0.998904,0.157193,0.884311,0.277867,0.748219,0.220694,0.356793,0.225165,0.536712,0.387416,0.890343,0.547524,0.542,0.917923,0.701072,0.827469,0.365084,0.0197714,0.941144,0.963045,0.2414,0.113438,0.470953,0.0446327,0.18996,0.753605,0.539813,0.479839,0.998864,0.891374,0.319213,0.262786,0.449366,0.862782,0.817616,0.658372,0.181121,0.717408,0.29823,0.621061,0.943007,0.732542,0.181032,0.225633,0.901759,0.400802,0.557856,0.146391,0.760211,0.870583,0.826191,0.773622,0.734325,0.377134,0.780284,0.197594,0.412958,0.220014,0.84103,0.933843,0.122621,0.109269,0.388177,0.789204,0.524695,0.586455,0.621666,0.510257,0.205159,0.174152,0.640218,2.93255e-05,0.145576,0.758553,0.850521,0.208914,0.36111,0.254657,0.467739,0.17664,0.416595,0.223362,0.996664,0.259466,0.685524,0.599773,0.632073,0.659045,0.222818,0.164515,0.295437,0.359398,0.243292,0.91009,0.566295,0.769395,0.91276,0.203524,0.956574,0.289367,0.0392568,0.506313,0.19535,0.721492,0.39305,0.180475,0.633017,0.876362,0.544087,0.0453739,0.542031,0.616938,0.550375,0.52368,0.366896,0.0329545,0.296394,0.276762,0.336742,0.593239,0.403221,0.0228392,0.562911,0.280519,0.842364,0.773898,0.600875,0.344047,0.408769,0.251486,0.353972,0.625723,0.202347,0.956983,0.675674,0.62234,0.237588,0.732555,0.591133,0.837907,0.194942,0.312854,0.140235,0.904518,0.842038,0.981599,0.939014,0.243507,0.893121,0.155288,0.500093,0.503716,0.319618,0.261168,0.395805,0.830161,0.0301555,0.584357,0.239305,0.207915,0.987507,0.421887,0.155875,0.199016,0.499393,0.0211548,0.941036,0.554407,0.510827,0.0129158,0.975801,0.0760545,0.408855,0.537691,0.496324,0.234081,0.550251,0.33446,0.0175202,0.353157,0.0993853,0.0809395,0.57516,0.150706,0.834834,0.0229383,0.192845,0.41439,0.148317,0.169034,0.573099,0.0187424,0.502844,0.997761,0.164133,0.389109,0.553849,0.633641,0.10026,0.324722,0.345934,0.408876,0.582627,0.859788,0.982311,0.676097,0.150333,0.0292861,0.266911,0.100867,0.383762,0.655677,0.85696,0.762659,0.434492,0.982351,0.642196,0.26944,0.863612,0.403864,0.597792,0.366465,0.188262,0.288926,0.859028,0.517029,0.497392,0.823219,0.801255,0.558677,0.569548,0.111846,0.28547,0.419801,0.532163,0.0651274,0.939586,0.755869,0.0630946,0.596592,0.555168,0.332209,0.0777274,0.221262,0.892128,0.207636,0.0780853,0.766836,0.588557,0.681069,0.0267438,0.237517,0.596303,0.368501,0.276066,0.977863,0.628291,0.447798,0.217781,0.874162,0.390702,0.151753,0.97656,0.781106,0.0785991,0.827749,0.356185,0.393546,0.815974,0.906429,0.641916,0.910339,0.502446,0.665327,0.912181,0.317045,0.969343,0.772005,0.759673,0.12778,0.236976,0.405457,0.111746,0.903121,0.323376,0.878807,0.266142,0.885052,0.649026,0.416322,0.0388969,0.447201,0.054673,0.61319,0.999119,0.528436,0.735563,0.144766,0.400822,0.132915,0.457935,0.018721,0.658815,|0.797935,0.055079,0.0944115,0.623699,0.756235,0.859945,0.753144,0.922081,0.875061,0.103831,0.993383,0.152209,0.946632,0.253362,0.530311,0.406809,0.246475,0.0643918,0.216797,0.676076,0.751465,0.040853,0.898676,0.311356,0.0504717,0.306402,0.764788,0.883282,0.517075,0.600716,0.23993,0.398474,0.499829,0.240438,0.769915,0.0713277,0.341006,0.917893,0.765035,0.5019,0.21484,0.82892,0.114592,0.0699754,0.650321,0.453237,0.663239,0.681757,0.113799,0.332671,0.373856,0.685388,0.361981,0.529047,0.596609,0.441186,0.618412,0.961717,0.939961,0.45316,0.617411,0.159102,0.388551,0.808343,0.996522,0.166701,0.556568,0.162054,0.35683,0.768839,0.901647,0.132328,0.262964,0.140632,0.388242,0.769486,0.909234,0.957841,0.441634,0.272998,0.625585,0.0563984,0.503103,0.00785315,0.875593,0.219282,0.605887,0.451158,0.830787,0.863314,0.33112,0.718542,0.447557,0.558991,0.6575,0.684742,0.618866,0.511374,0.236522,0.398625,0.988227,0.932167,0.553561,0.696268,0.933094,0.220963,0.76284,0.622448,0.72251,0.403054,0.220551,0.366021,0.637706,0.506002,0.548672,0.500602,0.184101,0.520364,0.249321,0.582952,0.0423352,0.886424,0.812352,0.94842,0.0999981,0.947979,0.303861,0.787344,0.813791,0.741234,0.546234,0.811014,0.271059,0.948644,0.915327,0.642029,0.328486,0.873655,0.878232,0.282578,0.534512,0.702765,0.440163,0.442161,0.046829,0.79153,0.544114,0.427729,0.185588,0.101528,0.826943,0.274534,0.485403,0.556162,0.323066,0.620101,0.824408,0.866321,0.883669,0.111011,0.593427,0.14844,0.882705,0.879611,0.140886,0.322189,0.219421,0.550174,0.0488127,0.0286011,0.681518,0.196333,0.642405,0.133201,0.0983811,0.447468,0.757282,0.52232,0.565261,0.963131,0.201322,0.768388,0.56615,0.256751,0.998532,0.356603,0.671506,0.676154,0.142566,0.502495,0.958218,0.365962,0.301352,0.936743,0.146527,0.722421,0.138502,0.666402,0.157607,0.861856,0.732446,0.343772,0.785193,0.27894,0.481748,0.568371,0.427728,0.498471,0.418205,0.122279,0.355065,0.0204782,0.723111,0.686141,0.638532,0.775707,0.654707,0.203323,0.172895,0.562451,0.39186,0.376521,0.217179,0.110207,0.702292,0.670023,0.575275,0.66305,0.155269,0.864712,0.228955,0.510059,0.938908,0.486956,0.488951,0.0494719,0.468567,0.974953,0.600201,0.0452767,0.672513,0.257084,0.241885,0.138857,0.766926,0.85105,0.366781,0.230826,0.595727,0.584904,0.357771,0.150921,0.676625,0.298476,0.877407,0.0451832,0.342661,0.0580222,0.196366,0.244156,0.382577,0.721413,0.893507,0.89467,0.0696326,0.83422,0.871464,0.0680143,0.657205,0.503408,0.156335,0.805861,0.738902,0.23122,0.390089,0.247821,0.480664,0.763879,0.633517,0.948798,0.267807,0.635357,0.498872,0.96844,0.951501,0.351998,0.356179,0.180743,0.00373411,0.733813,0.903229,0.342266,0.100621,0.432137,0.595061,0.0638971,0.106217,0.491092,0.585072,0.396482,0.126265,0.341086,0.343691,0.21182,0.585085,0.240944,0.205798,0.151109,0.740999,0.28625,0.724583,0.620988,0.587228,0.932872,0.899294,0.663159,0.765077,0.829155,0.00548649,0.613154,0.915129,0.263471,0.18002,0.579709,0.405239,0.020225,0.0465724,0.448714,0.363618,0.743322,0.762508,0.247803,0.931822,0.089446,0.211324,0.719656,0.0614139,0.173228,0.0384266,0.20355,0.687226,0.512946,0.678497,0.78733,0.0206798,0.546924,0.315208,0.00990719,0.505447,0.661013,0.229493,0.327081,0.707687,0.209172,0.50761,0.318805,0.368688,0.397621,0.988544,0.265508,0.649459,0.367471,0.927883,0.755848,0.0529883,0.977785,0.554563,0.233845,0.200278,0.441402,0.804353,0.614625,0.187333,0.371144,0.578745,0.132577,0.00627148,0.244047,0.971927,0.634583,0.462002,0.284973,0.0695731,0.283751,0.607921,0.485066,0.0898729,0.972226,0.188857,0.15443,0.193362,0.108303,0.297617,0.299882,0.108849,0.233982,0.729139,0.0604687,0.689389,0.810225,0.0497401,0.104103,0.569735,0.739788,0.1372,0.543904,0.248972,0.763818,0.918077,0.79146,0.963663,0.160234,0.809349,0.926632,0.064875,0.820495,0.218718,0.432843,0.00540715,0.983331,0.674069,0.146511,0.318806,0.484583,0.620825,0.141835,0.499964,0.453811,0.628349,0.166196,0.722167,0.177231,0.543573,0.847068,0.470241,0.934443,0.720995,0.528155,0.46405,0.617361,0.321369,0.735233,0.546811,0.0872369,0.271152,0.425306,0.942055,0.436251,0.552932,0.500785,0.0987113,0.905067,0.740588,0.664231,0.551295,0.487292,0.949698,0.121272,0.906132,0.585812,0.334163,0.991212,0.825702,0.180955,0.836346,0.044109,0.342662,0.264689,0.900711,0.811238,0.203687,0.721,0.731836,0.448949,0.487054,0.593453,0.0736095,0.148541,0.223856,0.33669,0.736771,0.971154,0.345894,0.718123,0.816199,0.636178,0.992615,0.981064,0.517321,0.327307,0.65616,0.815707,0.510722,0.276744,0.0302187,0.52268,0.290527,0.927866,0.592056,0.544232,0.0132394,0.746086,0.0561099,0.978908,0.241618,0.157734,0.483757,0.752238,0.0238678,0.603961,0.570868,0.961745,0.689622,0.927447,0.997722,0.952771,0.909812,0.415873,0.754361,0.934677,0.866488,0.458715,0.378432,0.704282,0.238707,0.0682616,0.87078,0.587718,0.00574249,0.507507,0.931921,0.567931,0.850644,0.139329,0.496068,0.0260518,0.682007,0.996917,0.0235254,0.0339632,0.76046,0.597844,0.04052,0.171223,0.468521,0.384641,0.690674,0.998414,0.785325,0.263128,0.425367,0.506706,0.916767,0.696773,0.328385,0.817615,0.163444,0.830079,0.00173086,0.34318,0.815968,0.524501,0.618281,0.297655,0.196554,0.0970027,0.0851086,0.503597,0.979953,0.496372,0.332393,0.327079,0.174369,0.404606,0.747082,0.121636,0.335981,0.0981103,0.479004,0.492473,0.581048,0.865492,0.026179,0.348002,0.850995,0.231801,0.303889,0.338636,0.640798,0.697986,0.532791,0.180131,0.337646,0.360221,0.674205,0.176623,0.925184,0.903166,0.870045,0.573431,0.745753,0.0436302,0.427077,0.822278,0.762591,0.241846,0.976328,0.42631,0.489038,0.995746,0.914566,0.942716,0.673689,0.233198,0.114402,0.421275,0.125512,0.897525,0.896419,0.451297,0.282469,0.976888,0.370155,0.669443,0.749708,0.658503,0.191542,0.553558,0.25378,0.727124,0.599796,0.400443,0.44812,0.607235,0.977355,0.858638,0.0134438,0.0569357,0.595234,0.0160462,0.815682,0.103488,0.620863,0.520968,0.686965,0.518202,0.120614,0.513878,0.376728,0.593948,0.0212924,0.895287,0.655752,0.59853,0.785977,0.458093,0.569538,0.662193,0.555228,0.564505,0.247709,0.16982,0.685632,0.0420704,0.128502,0.959477,0.134664,0.258951,0.169391,0.200821,0.367806,0.633232,0.044274,0.298689,0.450282,0.0513232,0.820011,0.104514,0.444718,0.952825,0.226644,0.382545,0.421957,0.555322,0.653483,0.471042,0.117902,0.0519702,0.696344,0.127101,0.100487,0.0706532,0.108173,0.123415,0.670559,0.285998,0.724742,0.338926,0.699757,0.848664,0.0495763,0.595098,0.00159156,0.444676,0.935481,0.0277012,0.210835,0.187822,0.405957,0.622988,0.706188,0.767177,0.142685,0.489827,0.252768,0.549397,0.0795855,0.82599,0.542692,0.649443,0.0683432,0.409065,0.0938456,0.338937,0.166986,0.832413,0.512082,0.527183,0.584795,0.368307,0.388858,0.0587521,0.246988,0.215572,0.256649,0.887904,0.173937,0.95245,0.58749,0.0711616,0.202649,0.193289,0.678245,0.0316714,0.108685,0.913827,0.921799,0.505303,0.554591,0.927462,0.830531,0.96615,0.588259,0.514762,0.288368,0.327536,0.405736,0.209075,0.504647,0.053134,0.122631,0.116235,0.546082,0.278216,0.0658317,0.285523,0.0320993,0.157104,0.629225,0.20832,0.410213,0.155287,0.694758,0.307437,0.717558,0.33588,0.412311,0.499406,0.398352,0.310383,0.881875,0.612536,0.373605,0.437064,0.042752,0.171999,0.611689,0.625571,0.966257,0.0761265,0.47467,0.782315,0.0945088,0.057808,0.248383,0.60867,0.935021,0.704085,0.3372,0.544367,0.384209,0.483858,0.632808,0.577906,0.708406,0.337599,0.766538,0.535941,0.311622,0.69949,0.642156,0.828209,0.291466,0.875869,0.950089,0.771215,0.357039,0.814909,0.210721,0.672501,0.970131,0.426268,0.223583,0.84622,0.68394,0.167826,0.219679,0.958425,0.151529,0.896706,0.916065,0.45093,0.0516225,0.904142,0.078652,0.0417722,0.0731136,0.244419,0.5024,0.727174,0.142277,0.734696,0.764371,0.361025,0.659958,0.930218,0.0683796,0.176901,0.968981,0.74508,0.999122,0.184799,0.368423,0.465214,0.967684,0.637289,0.287553,0.39582,0.22835,0.110854,0.0258118,0.642579,0.996013,0.89934,0.891052,0.77431,0.309614,0.648502,0.74928,0.847834,0.228698,0.220977,0.57936,0.551099,0.584447,0.664529,0.0552708,0.431795,0.625649,0.518724,0.444449,0.09422,0.157868,0.17731,0.313122,0.384085,0.272288,0.562325,0.97405,0.917435,0.357917,0.100664,0.200817,0.323828,0.0925679,0.965217,0.824004,0.254328,0.22909,0.27581,0.106543,0.557277,0.69552,0.891282,0.129206,0.433647,0.487271,0.17815,0.918368,0.26232,0.936108,0.119611,0.345249,0.617216,0.297707,0.834777,0.542408,0.949261,0.195888,0.584564,0.0926995,0.107293,0.559292,0.491927,0.328486,0.122314,0.985945,0.12189,0.17391,0.672325,0.858074,0.864693,0.083985,0.898742,0.553428,0.283966,0.0285823,0.593909,0.635271,0.113647,0.76524,0.279615,0.857747,0.243623,0.558389,0.669793,0.421822,0.3789,0.783339,0.86394,0.283548,0.796139,0.312989,0.192501,0.193541,0.873977,0.0615782,0.408524,0.37058,0.812656,0.262197,0.87992,0.460472,0.962668,0.528748,0.671603,0.278577,0.424805,0.599115,0.998614,0.437251,0.804234,0.642194,0.631658,0.513668,0.589501,0.232119,0.222934,0.142369,0.897096,0.024073,0.337607,0.991192,0.3793,0.193324,0.367709,0.687045,0.973113,0.722449,0.0942442,0.761254,0.00134057,0.712871,0.750562,0.852908,0.568091,0.211964,0.393998,0.326005,0.958447,|0.0976235,0.210534,0.655977,0.680113,0.620965,0.74578,0.514721,0.755949,0.924525,0.337089,0.500876,0.245039,0.833898,0.895828,0.894223,0.130877,0.319359,0.589661,0.866213,0.627738,0.0320404,0.750057,0.324913,0.749654,0.648817,0.0993398,0.882327,0.146374,0.364326,0.277049,0.592186,0.182373,0.901283,0.00707197,0.149972,0.0102701,0.277903,0.308891,0.338724,0.797819,0.92271,0.950237,0.882142,0.496785,0.933528,0.311185,0.532925,0.526177,0.766723,0.948941,0.348309,0.181387,0.730215,0.58584,0.018409,0.994611,0.582775,0.2144,0.955587,0.192041,0.607225,0.382919,0.608273,0.265287,0.228404,0.442278,0.197381,0.823416,0.28745,0.14519,0.239986,0.0081653,0.270186,0.71998,0.717711,0.610287,0.669579,0.394583,0.925062,0.0930757,0.604649,0.0261039,0.515647,0.693202,0.952098,0.244166,0.996097,0.549139,0.413613,0.820924,0.969876,0.8866,0.369828,0.870622,0.878647,0.807072,0.988736,0.141023,0.0762241,0.150602,0.106209,0.820829,0.9211,0.445762,0.721943,0.954729,0.653369,0.35554,0.740645,0.472026,0.786933,0.205578,0.258208,0.461903,0.465833,0.315344,0.673301,0.996624,0.574385,0.739118,0.643194,0.851858,0.765343,0.610036,0.549859,0.764934,0.840823,0.869117,0.223816,0.760254,0.377314,0.416217,0.708956,0.141714,0.9291,0.790424,0.702757,0.262594,0.167273,0.231536,0.899408,0.115904,0.513009,0.777206,0.0191332,0.770603,0.0791603,0.745227,0.518121,0.496311,0.566531,0.771276,0.458692,0.0250465,0.730717,0.270682,0.345412,0.0787714,0.846711,0.299675,0.0960613,0.318761,0.326976,0.834228,0.731002,0.487756,0.201493,0.637691,0.466988,0.146978,0.730714,0.452232,0.955466,0.342548,0.86906,0.341839,0.58425,0.488225,0.956254,0.939008,0.790616,0.378694,0.956459,0.299059,0.826188,0.831497,0.335841,0.370416,0.808229,0.744399,0.516122,0.865681,0.463338,0.0568105,0.365749,0.304945,0.618748,0.923438,0.777636,0.751352,0.641367,0.29727,0.703058,0.698887,0.638861,0.145229,0.674499,0.187995,0.674542,0.340809,0.0273541,0.668598,0.568594,0.985846,0.0256112,0.146062,0.01498,0.963162,0.880441,0.645849,0.36367,0.0540536,0.0153348,0.473536,0.780694,0.83826,0.798377,0.281044,0.640342,0.173753,0.583783,0.891869,0.414735,0.42478,0.339994,0.405385,0.569979,0.977874,0.767406,0.411021,0.250244,0.490091,0.881925,0.552147,0.910954,0.885286,0.559203,0.561228,0.829163,0.374263,0.038964,0.292226,0.333122,0.67604,0.929332,0.0296613,0.779921,0.774981,0.9279,0.646346,0.46073,0.8884,0.806344,0.601003,0.620789,0.802108,0.257978,0.917411,0.294472,0.354362,0.377389,0.302498,0.0299796,0.890881,0.581355,0.317764,0.34315,0.73774,0.17752,0.947205,0.405011,0.076299,0.169495,0.805844,0.294602,0.276517,0.257257,0.937752,0.560735,0.168768,0.614602,0.535507,0.79011,0.351662,0.955559,0.765282,0.779291,0.68764,0.593277,0.799441,0.0763633,0.630267,0.251807,0.452991,0.543101,0.585027,0.527919,0.153632,0.600748,0.214836,0.206023,0.158934,0.000907958,0.722328,0.374674,0.397283,0.27669,0.767693,0.679116,0.679647,0.42408,0.59051,0.608338,0.626709,0.691745,0.0941809,0.238445,0.551526,0.422328,0.771843,0.0346845,0.860333,0.936584,0.113554,0.267525,0.66751,0.763725,0.811781,0.976373,0.614862,0.828238,0.344894,0.519361,0.543947,0.817394,0.358779,0.701088,0.0776919,0.762362,0.893279,0.52789,0.470679,0.195728,0.220982,0.197724,0.46613,0.833724,0.580816,0.0518692,0.783087,0.525095,0.90634,0.59841,0.929411,0.217314,0.27971,0.372732,0.297808,0.838603,0.720413,0.456859,0.0958991,0.926773,0.617126,0.199239,0.789857,0.163831,0.438993,0.305512,0.866392,0.469625,0.098582,0.781965,0.0623226,0.985665,0.875214,0.557146,0.335564,0.251924,0.183621,0.115363,0.250482,0.846889,0.569709,0.648464,0.606441,0.437738,0.182037,0.428553,0.0960426,0.85097,0.715516,0.169187,0.206132,0.652672,0.0615541,0.759743,0.703676,0.722701,0.272059,0.689161,0.647241,0.831588,0.701912,0.800525,0.570579,0.4861,0.933651,0.715128,0.192172,0.17412,0.907504,0.63451,0.174504,0.194429,0.337441,0.858524,0.281023,0.269668,0.597706,0.904486,0.570324,0.104484,0.948186,0.280631,0.0561764,0.632018,0.124656,0.225539,0.485913,0.301144,0.433314,0.724589,0.324523,0.579668,0.0327121,0.111859,0.393871,0.236852,0.831871,0.932946,0.464652,0.678486,0.175239,0.312575,0.755449,0.483062,0.0790352,0.297572,0.139326,0.389935,0.567958,0.547161,0.645062,0.508877,0.472371,0.785472,0.145365,0.419545,0.635451,0.475438,0.371497,0.827011,0.31527,0.311158,0.582684,0.411412,0.208819,0.952242,0.425815,0.201055,0.698751,0.84445,0.878906,0.793866,0.538214,0.660201,0.487111,0.500068,0.147313,0.0975881,0.550199,0.727922,0.0667379,0.319957,0.179804,0.54771,0.295573,0.968399,0.990179,0.911993,0.815551,0.310853,0.407814,0.0322419,0.806563,0.132077,0.139019,0.0184104,0.48748,0.21031,0.457528,0.911656,0.704665,0.82826,0.113663,0.165464,0.281085,0.216941,0.326441,0.661543,0.0104213,0.96793,0.408086,0.859559,0.823412,0.642054,0.401075,0.294992,0.0224161,0.056563,0.49565,0.470269,0.975793,0.225586,0.682238,0.510876,0.98762,0.169254,0.364724,0.479024,0.183666,0.518254,0.156324,0.085514,0.763077,0.856153,0.204162,0.553137,0.516261,0.169715,0.887412,0.616299,0.748229,0.189277,0.826081,0.515326,0.882012,0.565629,0.762612,0.429779,0.467534,0.125461,0.266243,0.334732,0.379052,0.579283,0.542095,0.420864,0.957042,0.976998,0.614714,0.953462,0.856034,0.925876,0.0469414,0.620543,0.526026,0.432133,0.97293,0.0958027,0.755449,0.13946,0.242381,0.146437,0.0800382,0.545806,0.152991,0.903172,0.5292,0.633105,0.635787,0.213208,0.243685,0.890062,0.611572,0.428803,0.328627,0.0195922,0.102662,0.953528,0.58015,0.217547,0.808698,0.998006,0.171861,0.27258,0.0729702,0.127376,0.80933,0.217338,0.0250835,0.824417,0.0688861,0.165083,0.112096,0.352506,0.875978,0.522597,0.408649,0.521035,0.402278,0.966213,0.372441,0.824627,0.480907,0.0493263,0.797654,0.896515,0.850265,0.539785,0.0711017,0.0120289,0.738386,0.844183,0.813654,0.967746,0.69779,0.559766,0.0704232,0.897096,0.894136,0.669686,0.346691,0.613428,0.0802626,0.350816,0.915822,0.308883,0.72232,0.645138,0.949243,0.977207,0.274312,0.352285,0.186533,0.865133,0.366165,0.456327,0.944056,0.821447,0.842992,0.0350441,0.686565,0.339366,0.635095,0.289793,0.746026,0.890181,0.735937,0.492607,0.826212,0.256171,0.0463539,0.699971,0.663798,0.623777,0.685677,0.411436,0.484045,0.503641,0.485144,0.80175,0.64124,0.765019,0.682786,0.231513,0.785719,0.54518,0.814189,0.599771,0.960329,0.933331,0.939039,0.801021,0.578231,0.678326,0.695458,0.0148308,0.758713,0.142627,0.196009,0.69097,0.12167,0.485108,0.686279,0.86064,0.859869,0.721859,0.399927,0.452552,0.601801,0.00726873,0.975441,0.410977,0.235993,0.381666,0.116805,0.0624823,0.825791,0.555099,0.959734,0.800056,0.95229,0.204323,0.152793,0.746349,0.296562,0.191763,0.150137,0.898957,0.420533,0.313793,0.313049,0.274866,0.0590715,0.184272,0.9169,0.0782034,0.925944,0.867294,0.772682,0.228071,0.230436,0.0983481,0.500945,0.858848,0.452307,0.0805385,0.692738,0.906585,0.151546,0.455436,0.391047,0.695093,0.99617,0.00842291,0.830643,0.407593,0.701619,0.688179,0.583037,0.437649,0.179912,0.198613,0.214212,0.189456,0.29388,0.285949,0.489035,0.402284,0.148064,0.920808,0.807242,0.371475,0.350844,0.635702,0.484058,0.0116344,0.480397,0.724799,0.936348,0.918661,0.881012,0.037611,0.359824,0.570328,0.0439921,0.0232403,0.749278,0.159103,0.394324,0.0862894,0.242194,0.456697,0.866663,0.46544,0.912885,0.248245,0.696119,0.588492,0.981583,0.496884,0.498234,0.387558,0.691329,0.885479,0.00496894,0.541877,0.849929,0.501011,0.499189,0.69252,0.986864,0.274785,0.47461,0.424889,0.453039,0.468871,0.568291,0.572731,0.560422,0.799768,0.422951,0.952234,0.584145,0.415365,0.391752,0.493884,0.986915,0.274356,0.208502,0.537605,0.44747,0.132161,0.964257,0.0606024,0.672505,0.135564,0.619939,0.212543,0.651857,0.832051,0.380961,0.185771,0.467453,0.0215834,0.589211,0.861594,0.522313,0.723902,0.153604,0.262006,0.921308,0.369756,0.234858,0.711462,0.500257,0.214564,0.446827,0.221326,0.621297,0.0810301,0.127798,0.333467,0.763963,0.235354,0.669392,0.120652,0.442329,0.107964,0.825821,0.934817,0.697605,0.801154,0.316798,0.843485,0.808615,0.517329,0.490374,0.790351,0.827703,0.891425,0.284837,0.690135,0.273917,0.741031,0.435875,0.122034,0.732466,0.331236,0.551732,0.569179,0.815938,0.360154,0.376775,0.091163,0.645226,0.83602,0.15794,0.878038,0.69641,0.895781,0.677286,0.496022,0.472465,0.918911,0.339423,0.344705,0.557425,0.0854903,0.247775,0.364243,0.698389,0.954772,0.979954,0.0877367,0.0589239,0.725172,0.766308,0.851682,0.321149,0.932588,0.163206,0.418247,0.0346064,0.510472,0.507287,0.545553,0.153813,0.65296,0.875734,0.705624,0.461993,0.973454,0.0668768,0.419508,0.797241,0.266688,0.668865,0.363491,0.62174,0.98417,0.65051,0.607579,0.796707,0.26379,0.74106,0.714962,0.100611,0.334803,0.441989,0.554434,0.183609,0.737846,0.0732475,0.900583,0.740018,0.690634,0.0174958,0.770943,0.0305532,0.849539,0.663091,0.742935,0.588251,0.559829,0.515585,0.537489,0.188787,0.907615,0.273078,0.118423,0.00317091,0.627626,0.481615,0.0989249,0.230449,0.435997,0.669959,0.684893,0.504682,0.966376,0.478086,0.969217,0.291258,0.374681,0.887547,0.203582,0.53954,0.508582,0.595257,0.363969,0.456789,0.258007,0.120488,0.217475,0.0493376,0.187172,0.464596,|0.0800846,0.537579,0.168418,0.382656,0.181562,0.394506,0.969716,0.69624,0.983531,0.900237,0.906528,0.297131,0.288361,0.104888,0.86583,0.114339,0.150622,0.486739,0.392177,0.469735,0.0387672,0.614073,0.227228,0.250533,0.247958,0.62207,0.310564,0.718364,0.354252,0.247963,0.559278,0.294858,0.376893,0.0487524,0.322216,0.746638,0.722316,0.738277,0.776196,0.981206,0.559896,0.565575,0.371231,0.711667,0.337555,0.582872,0.691434,0.0139095,0.0722985,0.589536,0.31396,0.30089,0.294156,0.954679,0.85678,0.137787,0.350191,0.869945,0.294905,0.828791,0.622367,0.289258,0.741225,0.158773,0.838025,0.89272,0.421468,0.885422,0.560128,0.782,0.0304436,0.588727,0.847157,0.512005,0.837901,0.461669,0.754206,0.30831,0.258268,0.736934,0.191872,0.860906,0.765379,0.345293,0.0477439,0.264916,0.577592,0.176254,0.165493,0.630469,0.976854,0.495563,0.112733,0.215595,0.721582,0.738921,0.572801,0.557619,0.943475,0.99812,0.659766,0.42832,0.464178,0.485049,0.548519,0.586192,0.165476,0.129655,0.534338,0.863177,0.233233,0.162374,0.575682,0.99319,0.0578862,0.433842,0.927123,0.953967,0.0511122,0.875829,0.688793,0.383796,0.259279,0.557831,0.870781,0.0117568,0.862638,0.406872,0.0771033,0.230746,0.214293,0.0868267,0.242182,0.869208,0.837275,0.383374,0.262722,0.117372,0.73434,0.532879,0.600449,0.34315,0.185158,0.315517,0.773784,0.0360228,0.355953,0.0287383,0.765691,0.433863,0.144105,0.204513,0.73317,0.329454,0.756001,0.596605,0.651502,0.698246,0.798611,0.554967,0.905577,0.7986,0.305047,0.679082,0.634789,0.221161,0.89128,0.522309,0.0123619,0.434179,0.308595,0.90836,0.368558,0.908854,0.779678,0.537943,0.427359,0.475848,0.879659,0.501344,0.485209,0.786089,0.22895,0.521651,0.525867,0.210934,0.0703084,0.496675,0.0652385,0.318001,0.839126,0.310242,0.492162,0.472301,0.0216676,0.728877,0.377715,0.632319,0.985122,0.844163,0.874085,0.536848,0.0369474,0.951081,0.886679,0.965699,0.273046,0.135584,0.79819,0.511636,0.176176,0.184816,0.00542891,0.349445,0.532002,0.447763,0.0852807,0.885301,0.98079,0.136906,0.237041,0.449141,0.794735,0.667038,0.854904,0.802602,0.0623052,0.904664,0.52674,0.00173843,0.353629,0.553405,0.0316596,0.961543,0.526759,0.942797,0.826124,0.198421,0.670105,0.0508384,0.360569,0.137941,0.955817,0.245233,0.737003,0.609107,0.143022,0.757027,0.418217,0.365777,0.984207,0.693667,0.44493,0.981271,0.94764,0.353611,0.94179,0.165157,0.14374,0.850983,0.690777,0.2246,0.188193,0.922485,0.675326,0.79575,0.97078,0.173331,0.077406,0.677487,0.0972567,0.570907,0.135265,0.550898,0.758588,0.739694,0.262008,0.812813,0.0415218,0.025545,0.229931,0.1496,0.479141,0.954326,0.265325,0.831899,0.85719,0.759912,0.145156,0.681933,0.0722135,0.727703,0.747096,0.328411,0.767072,0.0792389,0.657825,0.882173,0.622361,0.0364588,0.468818,0.0506674,0.177372,0.0227373,0.0321618,0.548789,0.820027,0.595401,0.464907,0.608388,0.705274,0.275663,0.848166,0.563944,0.286367,0.219233,0.924766,0.24891,0.668164,0.624924,0.798571,0.848694,0.576572,0.131704,0.484376,0.875283,0.526968,0.979014,0.244529,0.749181,0.416878,0.334465,0.481817,0.841254,0.413268,0.0460294,0.0209303,0.144135,0.415501,0.48796,0.903611,0.481653,0.570705,0.119607,0.306011,0.764779,0.643846,0.399892,0.00179762,0.301561,0.237758,0.0102458,0.240499,0.503037,0.0759333,0.678873,0.0986694,0.56232,0.606256,0.32481,0.927726,0.683037,0.882337,0.300979,0.639076,0.833993,0.260972,0.520369,0.938308,0.585592,0.258019,0.260691,0.340992,0.613813,0.464961,0.573956,0.742415,0.696856,0.923055,0.515695,0.323167,0.938755,0.737569,0.163073,0.546591,0.0260092,0.378955,0.189995,0.413999,0.152795,0.788148,0.638261,0.129079,0.488025,0.772501,0.916491,0.965526,0.576247,0.963143,0.219502,0.356059,0.744704,0.461354,0.907537,0.14824,0.637513,0.797158,0.743179,0.335699,0.732735,0.492138,0.105522,0.0382103,0.897933,0.404251,0.376929,0.907133,0.952882,0.766628,0.688647,0.338519,0.800641,0.00666076,0.272124,0.133036,0.14551,0.312785,0.317911,0.868335,0.620044,0.827282,0.693878,0.850673,0.401997,0.0840765,0.429007,0.602596,0.392787,0.702349,0.140357,0.90828,0.83243,0.271937,0.659906,0.728361,0.404483,0.179127,0.000328779,0.862018,0.33811,0.216857,0.614494,0.564247,0.456041,0.111734,0.821059,0.192272,0.130981,0.897576,0.80989,0.17249,0.570932,0.473869,0.614019,0.984976,0.246718,0.31056,0.696792,0.809295,0.944742,0.183075,0.85334,0.413892,0.457924,0.463438,0.289214,0.77159,0.517767,0.764236,0.872885,0.655893,0.341923,0.473665,0.0666059,0.218334,0.820124,0.78892,0.484018,0.599508,0.276619,0.806076,0.302176,0.96041,0.3098,0.824518,0.664681,0.27225,0.81647,0.466574,0.644725,0.563653,0.698419,0.554096,0.921275,0.834637,0.63379,0.210429,0.717884,0.194234,0.59278,0.223345,0.814669,0.583412,0.438818,0.00485694,0.307215,0.321183,0.901726,0.868714,0.0543529,0.489375,0.26028,0.699499,0.530409,0.307598,0.510752,0.813816,0.58453,0.177285,0.561497,0.12508,0.349028,0.0531026,0.706505,0.222178,0.368486,0.322826,0.873321,0.128965,0.973549,0.769587,0.893757,0.0588354,0.762613,0.592286,0.375101,0.81418,0.552629,0.986691,0.708175,0.931882,0.369303,0.673424,0.888295,0.726104,0.856128,0.814057,0.320648,0.53162,0.486516,0.363277,0.0455073,0.0163164,0.796238,0.796471,0.852354,0.986561,0.112029,0.376359,0.0131526,0.636967,0.387548,0.256604,0.713245,0.309388,0.885099,0.559763,0.294829,0.679234,0.426452,0.958791,0.189497,0.0089938,0.241186,0.169761,0.353732,0.810731,0.54566,0.987096,0.575515,0.508574,0.386624,0.676827,0.930226,0.704259,0.0530977,0.604931,0.794605,0.0566753,0.573866,0.0156629,0.380961,0.0144323,0.836083,0.760951,0.267511,0.0512242,0.718372,0.313096,0.540616,0.304569,0.556587,0.967877,0.900981,0.908558,0.601563,0.0221479,0.364796,0.46522,0.697473,0.376907,0.123756,0.989655,0.813618,0.0512662,0.0800135,0.445086,0.0640441,0.0527316,0.334965,0.689868,0.916972,0.479678,0.664977,0.898863,0.653694,0.954355,0.729085,0.0116757,0.258736,0.809419,0.124275,0.0945162,0.689222,0.0146573,0.433887,0.163912,0.635368,0.315953,0.096672,0.99115,0.691014,0.218244,0.691709,0.769658,0.595722,0.642555,0.927372,0.630361,0.232395,0.0835342,0.778056,0.995033,0.0774819,0.903637,0.558766,0.930537,0.057807,0.00839239,0.0227475,0.0714192,0.951057,0.537515,0.0677341,0.978016,0.125473,0.342716,0.0620871,0.610444,0.412751,0.518916,0.0323008,0.0888898,0.493288,0.282189,0.559906,0.253335,0.967755,0.6827,0.129884,0.051813,0.63668,0.721131,0.550998,0.0969231,0.454159,0.798892,0.925356,0.25585,0.617054,0.0661909,0.852717,0.250805,0.877776,0.653591,0.910313,0.784094,0.963903,0.867778,0.3138,0.833157,0.870564,0.554478,0.293141,0.995942,0.322432,0.660653,0.93654,0.884161,0.621656,0.938263,0.840974,0.811466,0.88277,0.999469,0.641779,0.447772,0.391264,0.46747,0.495109,0.756916,0.905722,0.391514,0.269345,0.116449,0.201389,0.862806,0.96211,0.786513,0.628042,0.095137,0.246552,0.616746,0.759976,0.26969,0.772411,0.645512,0.0798522,0.167256,0.595218,0.205001,0.626127,0.516082,0.709271,0.777027,0.968304,0.709552,0.391225,0.31278,0.146116,0.216113,0.544955,0.583179,0.05595,0.787491,0.676244,0.0268169,0.546779,0.932167,0.30946,0.924372,0.737508,0.123582,0.331504,0.283206,0.758552,0.270837,0.732999,0.551327,0.610035,0.514799,0.00751436,0.465723,0.0699276,0.258855,0.396639,0.901906,0.335499,0.500916,0.137581,0.957848,0.830464,0.794601,0.364541,0.590298,0.428195,0.245333,0.168499,0.504539,0.661249,0.871712,0.0824934,0.387261,0.551159,0.641783,0.343245,0.860544,0.114258,0.751716,0.142722,0.28951,0.336464,0.697266,0.147677,0.0296953,0.561668,0.786178,0.440365,0.124828,0.68756,0.749245,0.521682,0.997135,0.0176712,0.195471,0.686313,0.183738,0.238966,0.822693,0.75865,0.279763,0.786032,0.830446,0.655042,0.0243025,0.0221125,0.701974,0.908136,0.226078,0.997562,0.814399,0.658879,0.28974,0.960476,0.734487,0.644111,0.078548,0.510563,0.0484106,0.260765,0.898766,0.881679,0.258761,0.317568,0.604304,0.555632,0.70166,0.489109,0.0732962,0.895279,0.107185,0.329493,0.480702,0.6733,0.995075,0.0825241,0.488373,0.338185,0.374991,0.856493,0.582482,0.923701,0.562118,0.592359,0.31867,0.453796,0.691743,0.380973,0.78305,0.0814374,0.921969,0.428763,0.246943,0.955413,0.509939,0.0539536,0.581673,0.0583836,0.214702,0.597816,0.437943,0.990865,0.692961,0.935385,0.617047,0.174969,0.554296,0.64817,0.0709221,0.843876,0.109181,0.628606,0.58823,0.697395,0.117038,0.784735,0.159675,0.380013,0.776331,0.483603,0.34029,0.0692324,0.641888,0.268426,0.477836,0.881455,0.09016,0.578297,0.32262,0.410686,0.921473,0.70412,0.921379,0.651121,0.559291,0.22482,0.37678,0.810784,0.465235,0.223906,0.893016,0.425056,0.611365,0.700469,0.402196,0.737438,0.329881,0.0643021,0.0669734,0.32563,0.09927,0.794819,0.894914,0.265712,0.836913,0.81541,0.842897,0.143224,0.722539,0.803402,0.471593,0.531615,0.765793,0.0856652,0.651212,0.394085,0.155731,0.774679,0.850282,0.534147,0.911385,0.661013,0.696292,0.0619389,0.560713,0.689389,0.362661,0.00687039,0.530901,0.240695,0.360777,0.236292,0.957101,0.766593,0.0345849,0.850471,0.544058,0.982564,0.556649,0.965074,0.189417,0.156898,0.439593,0.401126,0.369504,0.134554,0.992514,0.672731,0.660976,0.143763,0.332843,0.736231,0.109679,0.100648,0.36051,0.694872,0.511323,0.134404,0.401594,0.479011,|0.779507,0.803786,0.00291526,0.666792,0.112482,0.158879,0.151043,0.798804,0.180133,0.462646,0.405267,0.331744,0.571072,0.00980985,0.401664,0.471611,0.141583,0.296718,0.620605,0.953872,0.478919,0.350504,0.701699,0.317012,0.199389,0.20595,0.453051,0.813907,0.10863,0.846698,0.0715604,0.271487,0.355249,0.484017,0.579032,0.240821,0.861693,0.837871,0.0931411,0.170804,0.749232,0.775131,0.204218,0.823184,0.396582,0.416842,0.733346,0.155939,0.765717,0.783037,0.662755,0.249483,0.695465,0.299725,0.462562,0.234823,0.767332,0.928925,0.42377,0.133801,0.379781,0.368474,0.443144,0.417864,0.295165,0.250774,0.175137,0.49473,0.100802,0.658834,0.876683,0.902346,0.392348,0.729541,0.827885,0.905242,0.611892,0.625765,0.285256,0.878389,0.970481,0.432548,0.266429,0.0853611,0.125412,0.159232,0.886578,0.217196,0.979513,0.63916,0.397715,0.205278,0.247425,0.789351,0.53289,0.0586874,0.617626,0.994378,0.276691,0.358654,0.596137,0.352065,0.531975,0.221465,0.0861101,0.641391,0.301424,0.0717539,0.0900847,0.799002,0.895975,0.225586,0.900143,0.841152,0.283077,0.245112,0.283508,0.121217,0.967327,0.791009,0.0219753,0.344587,0.103187,0.446731,0.981056,0.9669,0.165474,0.543873,0.988306,0.447318,0.184451,0.94579,0.757951,0.0137399,0.663051,0.815814,0.282832,0.848408,0.739769,0.826904,0.545898,0.469489,0.353068,0.343252,0.599483,0.041685,0.216668,0.516631,0.725115,0.0759853,0.917076,0.24606,0.28602,0.603363,0.020439,0.278595,0.241752,0.397573,0.173795,0.724404,0.485796,0.430152,0.340077,0.237129,0.0432459,0.658174,0.987027,0.313148,0.27705,0.298333,0.957449,0.764243,0.455064,0.479615,0.15791,0.458753,0.403902,0.63047,0.264202,0.647549,0.300511,0.663441,0.4725,0.37031,0.791646,0.224456,0.906303,0.560262,0.715746,0.367822,0.368894,0.744309,0.853863,0.79484,0.0383551,0.104325,0.601501,0.594607,0.851703,0.802835,0.0855498,0.278788,0.744603,0.413045,0.679309,0.236848,0.122242,0.97428,0.181392,0.626454,0.561183,0.482602,0.270956,0.333966,0.261993,0.499689,0.447624,0.228394,0.00343692,0.92808,0.574011,0.609604,0.603437,0.963068,0.685918,0.652612,0.407833,0.886811,0.842826,0.584921,0.991578,0.358121,0.253266,0.42149,0.941927,0.672765,0.403776,0.890483,0.979007,0.267629,0.062359,0.611047,0.193891,0.190942,0.0635794,0.182242,0.101852,0.815778,0.118548,0.352568,0.648877,0.50983,0.162679,0.0625583,0.529551,0.197402,0.204433,0.180031,0.253418,0.597388,0.0935121,0.953678,0.0913059,0.596758,0.25491,0.380811,0.402445,0.601678,0.673672,0.37998,0.664892,0.397322,0.161723,0.515752,0.177807,0.949936,0.237401,0.155155,0.400062,0.844029,0.873004,0.208726,0.255902,0.811234,0.0467601,0.709381,0.0792235,0.657028,0.717126,0.377373,0.890326,0.465451,0.473695,0.206209,0.281247,0.305734,0.271664,0.783259,0.056101,0.80531,0.636313,0.441544,0.642122,0.385547,0.763736,0.562078,0.990228,0.123405,0.77308,0.0667133,0.199758,0.876971,0.709736,0.680631,0.413347,0.939324,0.995721,0.910298,0.66159,0.425875,0.482106,0.0648497,0.120213,0.212986,0.811888,0.922507,0.233934,0.322577,0.612553,0.231027,0.513267,0.564968,0.735417,0.667073,0.60528,0.096506,0.291701,0.347518,0.08021,0.386784,0.917943,0.205591,0.483794,0.38715,0.189403,0.333283,0.402049,0.591757,0.820564,0.217219,0.555129,0.836976,0.290754,0.289669,0.0692536,0.0939502,0.879867,0.332412,0.870567,0.15897,0.105716,0.729098,0.337445,0.44305,0.0473834,0.608195,0.617324,0.599033,0.186522,0.970257,0.733915,0.0692436,0.283029,0.942774,0.10762,0.0578712,0.381107,0.245573,0.816448,0.632287,0.00126666,0.988506,0.710722,0.0434887,0.65661,0.847703,0.38638,0.872357,0.528756,0.990606,0.0381004,0.0863658,0.800258,0.632184,0.722216,0.264572,0.512959,0.370194,0.0845928,0.16555,0.622653,0.517594,0.720014,0.314541,0.188246,0.637476,0.789998,0.579201,0.888659,0.781491,0.885275,0.504658,0.747145,0.207108,0.138277,0.947439,0.871643,0.342917,0.713825,0.498075,0.889205,0.148023,0.0869028,0.632442,0.0281381,0.277069,0.968786,0.20418,0.0362751,0.066187,0.799256,0.402034,0.229817,0.193806,0.993039,0.219923,0.969272,0.0263637,0.170412,0.336298,0.176888,0.332337,0.590166,0.237626,0.823972,0.665553,0.804799,0.885415,0.770936,0.489726,0.727796,0.419566,0.708525,0.0026322,0.481408,0.248254,0.884547,0.335488,0.129154,0.530946,0.958899,0.919075,0.997516,0.306799,0.114856,0.486679,0.559688,0.483862,0.357991,0.328997,0.481493,0.962332,0.601465,0.373383,0.0954615,0.461373,0.393691,0.636466,0.620001,0.139334,0.775173,0.571297,0.428694,0.911602,0.81653,0.294511,0.546233,0.978238,0.139725,0.275874,0.740344,0.466927,0.335615,0.388102,0.109763,0.292329,0.610062,0.648536,0.375087,0.689097,0.359705,0.599511,0.953547,0.638619,0.0111463,0.124955,0.759284,0.765401,0.341434,0.208556,0.153936,0.81537,0.418074,0.803495,0.0425135,0.598686,0.444415,0.318017,0.897777,0.12594,0.413077,0.727562,0.967435,0.983834,0.580605,0.324104,0.414712,0.967181,0.157134,0.884258,0.623039,0.899418,0.970962,0.7422,0.485009,0.870316,0.502713,0.579302,0.85565,0.138068,0.944013,0.164555,0.855435,0.33766,0.514368,0.850691,0.0517521,0.952703,0.865873,0.0552958,0.952741,0.616936,0.304516,0.104883,0.792807,0.0287948,0.19321,0.574737,0.019713,0.507297,0.0676187,0.352998,0.732419,0.662245,0.583834,0.463517,0.37987,0.420794,0.39805,0.59994,0.18968,0.746306,0.895559,0.0271167,0.181495,0.315629,0.922414,0.192976,0.775359,0.280129,0.924182,0.771736,0.562057,0.720856,0.460836,0.799412,0.421483,0.939515,0.433691,0.973838,0.69842,0.0384204,0.317708,0.730334,0.154818,0.674698,0.782877,0.53929,0.758671,0.233309,0.0438268,0.090952,0.0945934,0.888759,0.694376,0.927208,0.0551906,0.0362812,0.64955,0.0757789,0.51533,0.737459,0.872279,0.841274,0.0425826,0.840552,0.201625,0.935649,0.605934,0.687187,0.996859,0.642871,0.203225,0.483643,0.444198,0.280748,0.847176,0.676,0.691611,0.708704,0.785535,0.0340161,0.963408,0.720864,0.3099,0.748128,0.120894,0.631374,0.296029,0.0366955,0.0116889,0.679524,0.459856,0.973497,0.87473,0.699574,0.209872,0.14359,0.836642,0.411263,0.922742,0.975035,0.954197,0.932499,0.415573,0.863204,0.863343,0.397314,0.602737,0.0427116,0.419326,0.489267,0.672765,0.101387,0.913774,0.69441,0.945834,0.61872,0.261436,0.558789,0.693115,0.660861,0.819917,0.1235,0.768117,0.929216,0.867706,0.470416,0.710551,0.380219,0.120252,0.954127,0.932555,0.631844,0.683912,0.0331997,0.0186863,0.352818,0.550721,0.727055,0.689841,0.503385,0.348615,0.244677,0.415253,0.138305,0.350284,0.61279,0.263822,0.00659764,0.0566055,0.877219,0.0333441,0.8604,0.162562,0.284361,0.711159,0.817423,0.390996,0.177196,0.466509,0.395088,0.122558,0.967702,0.56315,0.582285,0.413364,0.782142,0.0275997,0.672236,0.599882,0.416813,0.813448,0.525182,0.271063,0.551268,0.625742,0.587386,0.8263,0.489227,0.166174,0.472213,0.044949,0.385525,0.189246,0.31233,0.573727,0.990662,0.963591,0.723438,0.847317,0.67376,0.748132,0.224859,0.785474,0.675397,0.25524,0.669026,0.197558,0.0294606,0.151634,0.470011,0.199779,0.928078,0.33887,0.305847,0.968415,0.374196,0.282966,0.588071,0.827843,0.70275,0.125796,0.367221,0.968409,0.863624,0.903637,0.572713,0.467914,0.312141,0.722582,0.979128,0.186918,0.93082,0.231958,0.209829,0.509351,0.291009,0.416553,0.0630926,0.638191,0.417768,0.939735,0.894084,0.299859,0.577424,0.552065,0.0988396,0.580024,0.065917,0.0492725,0.823834,0.376745,0.235037,0.404079,0.786183,0.360224,0.916313,0.671743,0.644903,0.563688,0.362231,0.577053,0.739855,0.39682,0.913456,0.669134,0.10423,0.650889,0.822914,0.901995,0.895355,0.89876,0.200826,0.399946,0.626469,0.606203,0.0354655,0.846717,0.103152,0.577739,0.121566,0.866647,0.371829,0.498307,0.704119,0.953305,0.569667,0.867185,0.93588,0.484246,0.0883467,0.0108169,0.612855,0.655417,0.142064,0.200059,0.993637,0.594492,0.323435,0.399095,0.68806,0.050973,0.57586,0.980256,0.194718,0.198604,0.719567,0.99975,0.74954,0.0198197,0.58739,0.588554,0.66655,0.0716533,0.892299,0.406344,0.514027,0.35756,0.720004,0.493771,0.940378,0.941728,0.628243,0.776484,0.4042,0.514384,0.287132,0.315024,0.994061,0.198556,0.640474,0.990402,0.457136,0.512384,0.550707,0.222808,0.241849,0.656721,0.0828443,0.751188,0.447035,0.376193,0.986808,0.283868,0.841639,0.968926,0.864866,0.155494,0.432584,0.194494,0.819721,0.124896,0.149521,0.593209,0.0316969,0.306167,0.161009,0.472655,0.0124497,0.43861,0.092515,0.665251,0.365301,0.528533,0.441651,0.937409,0.977344,0.84471,0.565951,0.355885,0.797731,0.443114,0.307435,0.550682,0.540233,0.840809,0.719135,0.202856,0.616428,0.0513453,0.954314,0.257477,0.746479,0.055065,0.499591,0.0971456,0.80938,0.145669,0.499911,0.782184,0.956297,0.232812,0.462267,0.355208,0.931598,0.625936,0.664695,0.609386,0.214246,0.2464,0.958524,0.497099,0.904202,0.875268,0.410166,0.533032,0.673052,0.0833388,0.400681,0.0358584,0.00930548,0.510489,0.442407,0.817253,0.848647,0.652749,0.985949,0.00154841,0.0928329,0.952943,0.223446,0.345962,0.207976,0.878598,0.331502,0.285031,0.525163,0.348742,0.00186718,0.334058,0.434327,0.481236,0.955897,0.06516,0.763676,0.722363,0.293781,0.681944,0.50192,0.455814,0.53292,0.721363,0.139706,0.425943,0.484446,0.860477,0.936886,0.650948,0.550916,0.717326,0.872189,0.0662848,0.788123,0.178439,0.424208,0.740913,0.429817,0.152361,0.0622406,|0.0218949,0.082446,0.257455,0.164513,0.393209,0.706234,0.670489,0.908217,0.81908,0.0544761,0.174076,0.557628,0.973477,0.264948,0.970133,0.509898,0.370913,0.992933,0.844818,0.299988,0.501867,0.336617,0.771681,0.537342,0.366034,0.273178,0.593405,0.66611,0.00906587,0.636901,0.398581,0.156777,0.821017,0.100097,0.188672,0.404562,0.898099,0.825612,0.618691,0.810929,0.933634,0.675241,0.172774,0.825215,0.977445,0.0379817,0.472022,0.490732,0.632454,0.099322,0.185333,0.924453,0.475711,0.423635,0.931487,0.991596,0.56051,0.196724,0.321644,0.780298,0.224596,0.406842,0.17072,0.59856,0.329976,0.766322,0.53429,0.558658,0.484742,0.340314,0.179844,0.540103,0.559146,0.45667,0.662038,0.00489146,0.790622,0.212926,0.1962,0.302919,0.565312,0.541738,0.270999,0.0157179,0.525206,0.0951058,0.543045,0.538472,0.432566,0.0671729,0.293602,0.846319,0.0934895,0.351588,0.0763847,0.0821158,0.161762,0.1748,0.683218,0.677421,0.966766,0.445757,0.703399,0.46115,0.619089,0.596719,0.198655,0.102621,0.470404,0.253803,0.13062,0.877239,0.222139,0.101825,0.483958,0.396378,0.833272,0.11831,0.784633,0.710231,0.573128,0.179498,0.358304,0.349893,0.232091,0.204972,0.988886,0.380529,0.124837,0.0238669,0.569108,0.994731,0.309023,0.338935,0.353729,0.763445,0.221814,0.271999,0.5456,0.368666,0.902065,0.901729,0.589083,0.450417,0.481975,0.54915,0.721167,0.794966,0.631844,0.392906,0.595244,0.53285,0.676924,0.50554,0.271806,0.813845,0.967263,0.0661446,0.614785,0.394308,0.54903,0.922775,0.9973,0.0460896,0.314461,0.932899,0.566897,0.224154,0.745448,0.3529,0.328904,0.613916,0.844559,0.00997466,0.12929,0.80073,0.538688,0.44774,0.936317,0.69144,0.256056,0.917037,0.0615116,0.488815,0.474741,0.750927,0.538026,0.916871,0.284242,0.100121,0.80796,0.528773,0.421791,0.480128,0.270617,0.383173,0.868678,0.486839,0.229453,0.909323,0.166025,0.925469,0.352793,0.202834,0.690815,0.796363,0.343094,0.519648,0.966372,0.181436,0.35529,0.659408,0.517526,0.178198,0.291185,0.713438,0.930515,0.0900216,0.231556,0.764732,0.715734,0.405775,0.55671,0.565486,0.941129,0.351567,0.306161,0.173247,0.611676,0.835175,0.0244628,0.702951,0.656955,0.222721,0.00383031,0.165812,0.138615,0.489265,0.945471,0.818859,0.9697,0.689427,0.756172,0.397976,0.235158,0.411958,0.633651,0.349563,0.614298,0.205637,0.165123,0.217875,0.335354,0.277872,0.100301,0.308745,0.997689,0.13612,0.554156,0.329257,0.238993,0.126122,0.369994,0.538684,0.56568,0.352267,0.577418,0.990347,0.524079,0.616784,0.367198,0.147793,0.0469058,0.375523,0.219915,0.892568,0.48803,0.363651,0.828702,0.213997,0.84257,0.16083,0.164839,0.567083,0.213445,0.54916,0.988953,0.391162,0.631233,0.32757,0.456357,0.477029,0.309614,0.635823,0.699262,0.472642,0.125359,0.245954,0.927604,0.852219,0.781744,0.820989,0.67826,0.645544,0.0213004,0.22607,0.479223,0.561784,0.25748,0.286336,0.856264,0.0650886,0.022687,0.713162,0.197277,0.474498,0.794079,0.134092,0.483725,0.474755,0.671227,0.471268,0.102695,0.857485,0.454123,0.58703,0.706281,0.932884,0.657725,0.606323,0.217825,0.154267,0.108829,0.152723,0.56419,0.97061,0.539938,0.215173,0.991524,0.691671,0.91349,0.799318,0.57715,0.847869,0.931506,0.721061,0.146306,0.768707,0.959211,0.211788,0.325473,0.00806546,0.827459,0.391934,0.822676,0.584799,0.273902,0.257255,0.656956,0.390383,0.0826209,0.78429,0.713072,0.821622,0.51515,0.837208,0.574039,0.985658,0.706917,0.223304,0.274218,0.53238,0.978271,0.711277,0.578388,0.838336,0.854914,0.189063,0.0968584,0.318997,0.991781,0.217006,0.904855,0.787008,0.13364,0.967411,0.42008,0.861769,0.527595,0.788764,0.0656575,0.035626,0.178914,0.318361,0.38276,0.758257,0.757568,0.420963,0.781588,0.0539824,0.411446,0.0198845,0.490632,0.20119,0.152097,0.814418,0.395777,0.846468,0.17947,0.236961,0.42274,0.793995,0.483705,0.55715,0.00177419,0.892177,0.644487,0.679031,0.773976,0.969217,0.892744,0.0974458,0.720699,0.53097,0.423089,0.71925,0.434585,0.368639,0.945065,0.606478,0.664555,0.755961,0.747148,0.552893,0.634871,0.646527,0.184338,0.961886,0.923145,0.570005,0.0884317,0.46766,0.627224,0.86187,0.0222561,0.954466,0.801784,0.866273,0.644845,0.983014,0.785238,0.0197894,0.600031,0.576634,0.254078,0.993945,0.0232433,0.677637,0.15195,0.828891,0.957772,0.126284,0.813915,0.813346,0.990324,0.442972,0.512275,0.540051,0.381502,0.38803,0.919536,0.965576,0.161385,0.355593,0.956999,0.0276366,0.437321,0.445368,0.208757,0.0445136,0.327841,0.602077,0.0173062,0.0278013,0.56504,0.824123,0.183414,0.613535,0.214446,0.658943,0.0260438,0.840958,0.944468,0.481997,0.406099,0.683684,0.0931758,0.654873,0.873657,0.312872,0.225241,0.387307,0.632939,0.49961,0.831396,0.477916,0.159502,0.100952,0.496974,0.811387,0.634259,0.867447,0.665412,0.43324,0.739322,0.806413,0.639544,0.404572,0.915314,0.088379,0.53414,0.0347946,0.929114,0.326928,0.624959,0.428386,0.0937407,0.593606,0.871289,0.606658,0.0546064,0.623726,0.542634,0.698869,0.639553,0.750032,0.235297,0.0686968,0.334523,0.469994,0.512062,0.379834,0.605961,0.199733,0.541823,0.680666,0.654932,0.428489,0.173709,0.129191,0.324357,0.18129,0.0912374,0.967207,0.571665,0.465461,0.132995,0.51691,0.983319,0.0144755,0.925204,0.208254,0.949191,0.641561,0.889227,0.68997,0.817881,0.651142,0.604378,0.217651,0.34021,0.523541,0.348708,0.76687,0.514188,0.490392,0.427903,0.767244,0.910803,0.283432,0.792725,0.606453,0.151626,0.465625,0.60046,0.215324,0.693338,0.293118,0.167117,0.315402,0.678905,0.324276,0.324297,0.52375,0.818368,0.340863,0.247703,0.34382,0.700339,0.481095,0.0231183,0.867997,0.671957,0.145609,0.41059,0.298747,0.511542,0.203249,0.22928,0.708191,0.748068,0.172526,0.293026,0.43539,0.279101,0.485468,0.367881,0.0576089,0.234528,0.0834265,0.444238,0.348499,0.0249718,0.32056,0.0853552,0.25523,0.456371,0.456616,0.536782,0.440931,0.967179,0.791195,0.10219,0.32979,0.982952,0.655502,0.448255,0.98114,0.678777,0.400779,0.383248,0.568587,0.341871,0.851235,0.56718,0.927963,0.677983,0.124734,0.0911469,0.821084,0.236641,0.729126,0.419669,0.429797,0.218394,0.649647,0.730218,0.666596,0.0024417,0.263693,0.247169,0.0663922,0.653132,0.175186,0.0942994,0.549102,0.547767,0.44817,0.590933,0.718251,0.45316,0.719688,0.0999514,0.335096,0.934911,0.305547,0.799136,0.979726,0.737175,0.457282,0.724867,0.993538,0.822998,0.857637,0.558643,0.918048,0.723389,0.284039,0.0236633,0.367023,0.401283,0.786442,0.386148,0.2875,0.0581378,0.216924,0.0102072,0.431648,0.632639,0.657799,0.0845808,0.420383,0.154198,0.194947,0.701346,0.728141,0.260296,0.898765,0.848632,0.482125,0.0123377,0.0281085,0.466744,0.937556,0.410971,0.995054,0.803075,0.802483,0.955445,0.217588,0.313135,0.626433,0.997163,0.740796,0.414839,0.913809,0.964551,0.695743,0.0702987,0.386892,0.835166,0.242001,0.73802,0.250533,0.201033,0.715516,0.0865452,0.902185,0.605894,0.92062,0.455144,0.407327,0.0732096,0.361568,0.632457,0.884476,0.458876,0.978114,0.133265,0.826244,0.0145669,0.552337,0.350414,0.283242,0.482597,0.924998,0.972697,0.722977,0.332135,0.456373,0.369121,0.525985,0.096566,0.271831,0.525386,0.0519171,0.0942799,0.461207,0.85066,0.493233,0.062296,0.274514,0.679912,0.126544,0.647116,0.294623,0.321583,0.144612,0.96548,0.00690383,0.304524,0.351249,0.981936,0.474544,0.126873,0.397353,0.561817,0.476858,0.771543,0.743749,0.977493,0.21893,0.614674,0.830029,0.441474,0.919602,0.313094,0.718231,0.0238711,0.84252,0.120493,0.348153,0.235554,0.240605,0.271023,0.529752,0.751216,0.523252,0.899693,0.625992,0.26392,0.460029,0.942181,0.118045,0.710105,0.571219,0.459645,0.896522,0.585484,0.0167375,0.625403,0.89661,0.990716,0.697421,0.550651,0.00563747,0.893015,0.54572,0.563969,0.0555238,0.91488,0.888944,0.577341,0.737173,0.479279,0.454679,0.891365,0.909245,0.521936,0.504995,0.956319,0.765256,0.732691,0.216008,0.574709,0.429873,0.25275,0.190582,0.837118,0.135211,0.667772,0.549056,0.71737,0.101587,0.758315,0.719424,0.384901,0.633325,0.703652,0.970642,0.945005,0.036348,0.82473,0.573784,0.0207753,0.046831,0.292069,0.974174,0.587742,0.390084,0.733769,0.15071,0.470078,0.435485,0.928907,0.807504,0.94488,0.434997,0.454289,0.525367,0.44492,0.114008,0.716638,0.397325,0.631623,0.0221781,0.329345,0.924513,0.725784,0.547715,0.823294,0.0681791,0.683189,0.922276,0.837615,0.0299209,0.756883,0.57328,0.886246,0.512513,0.451515,0.359872,0.985262,0.684606,0.550806,0.782748,0.583117,0.358796,0.0319412,0.848165,0.918575,0.644319,0.469939,0.99756,0.586773,0.846898,0.711684,0.760561,0.528287,0.786365,0.347857,0.539964,0.01784,0.487158,0.0456742,0.0924219,0.494306,0.885095,0.941976,0.92674,0.456274,0.552299,0.40827,0.221165,0.797211,0.856716,0.756741,0.527739,0.961273,0.174489,0.0490078,0.879903,0.817959,0.26665,0.589994,0.613202,0.381799,0.224357,0.292236,0.771095,0.421323,0.128154,0.417529,0.045662,0.663543,0.294811,0.880562,0.237118,0.967556,0.740057,0.19775,0.00539345,0.505905,0.475043,0.0887741,0.238716,0.503648,0.859862,0.366487,0.855809,0.163072,0.446692,0.289599,0.45997,0.0399485,0.0182078,0.320293,0.405556,0.641769,0.643432,0.537572,0.357088,0.154473,0.295745,0.918887,0.331475,0.62445,0.567556,0.197881,0.845766,0.199963,0.681236,0.436783,0.484439,0.611219,0.348816,0.563832,0.604189,0.356994,0.915025,|0.125151,0.041647,0.704025,0.319311,0.437432,0.465808,0.652387,0.00850368,0.195704,0.292282,0.932822,0.611087,0.9074,0.437813,0.803675,0.548872,0.916428,0.376808,0.536286,0.650946,0.0268424,0.0325781,0.379703,0.215566,0.461639,0.555556,0.927213,0.753744,0.645529,0.647224,0.947476,0.823865,0.00403827,0.250704,0.186648,0.453453,0.801317,0.188166,0.120381,0.507049,0.378346,0.279226,0.922546,0.457821,0.47672,0.0949573,0.167056,0.761925,0.581743,0.237,0.822808,0.161586,0.235482,0.815735,0.212964,0.150041,0.212882,0.886866,0.503255,0.33547,0.216925,0.513971,0.820023,0.62632,0.371382,0.98239,0.514437,0.709397,0.0200889,0.96386,0.767244,0.491428,0.236083,0.0585014,0.593842,0.402962,0.38476,0.565512,0.0982714,0.464941,0.478052,0.606275,0.190509,0.88398,0.189002,0.960976,0.795612,0.941717,0.394271,0.462307,0.79902,0.667001,0.934472,0.78975,0.535104,0.79002,0.500725,0.953587,0.0890953,0.587923,0.481466,0.831809,0.527644,0.781851,0.926754,0.171634,0.685674,0.543704,0.871406,0.770575,0.331522,0.494139,0.423454,0.718788,0.392284,0.606525,0.699099,0.106988,0.792641,0.893924,0.123793,0.734782,0.983609,0.908956,0.772188,0.881482,0.505263,0.275704,0.496458,0.650557,0.418351,0.148142,0.645909,0.432805,0.833385,0.516665,0.934353,0.932938,0.143117,0.439188,0.552793,0.123311,0.564073,0.572154,0.864424,0.21753,0.532697,0.0245265,0.101943,0.964043,0.0767304,0.740022,0.951966,0.0848395,0.463014,0.50788,0.153315,0.233381,0.280565,0.680123,0.783469,0.682511,0.437049,0.55819,0.525418,0.566346,0.484249,0.207615,0.344576,0.823544,0.280856,0.970736,0.435679,0.0639306,0.920952,0.267994,0.701107,0.263584,0.838691,0.359033,0.0825819,0.219337,0.204978,0.15592,0.473597,0.507425,0.437235,0.514323,0.979836,0.894838,0.518016,0.612123,0.835174,0.430287,0.180538,0.980251,0.133521,0.195576,0.538093,0.821804,0.491657,0.578818,0.499948,0.785072,0.389334,0.19689,0.315062,0.545991,0.179832,0.258529,0.581505,0.244803,0.965279,0.112405,0.654271,0.508166,0.161254,0.385925,0.534057,0.653694,0.824275,0.471701,0.70197,0.431094,0.784406,0.0243568,0.236029,0.830541,0.493906,0.996494,0.517182,0.127994,0.404535,0.654665,0.181185,0.180885,0.386773,0.953422,0.999756,0.791705,0.712457,0.803694,0.660736,0.795902,0.146535,0.437081,0.478463,0.791509,0.305126,0.675901,0.360512,0.491541,0.702163,0.771438,0.989276,0.92263,0.168072,0.377913,0.889863,0.0455338,0.553257,0.782547,0.339635,0.447912,0.121706,0.721885,0.0108331,0.083192,0.578413,0.371101,0.076978,0.0855346,0.316248,0.553876,0.293114,0.144038,0.762885,0.808907,0.952699,0.768412,0.607958,0.780793,0.996927,0.396651,0.559135,0.704348,0.486424,0.0494267,0.240684,0.0782055,0.126431,0.679182,0.093659,0.449853,0.934953,0.773575,0.758299,0.820342,0.283766,0.0657257,0.988645,0.896015,0.569077,0.24457,0.655833,0.0998408,0.305218,0.0558159,0.395614,0.110052,0.377281,0.784733,0.213108,0.408662,0.105572,0.190649,0.961645,0.108195,0.519568,0.659459,0.502237,0.234469,0.325443,0.0264578,0.446711,0.19861,0.775215,0.39429,0.381989,0.861122,0.347547,0.00328493,0.489039,0.444132,0.0941277,0.127884,0.598604,0.274596,0.933486,0.103786,0.205618,0.625061,0.182678,0.919982,0.65076,0.998952,0.593362,0.640738,0.638604,0.449629,0.166785,0.932729,0.314809,0.763224,0.455426,0.926578,0.847931,0.60176,0.37147,0.755838,0.913975,0.81394,0.100061,0.615599,0.484465,0.714853,0.602404,0.373922,0.436458,0.371907,0.222879,0.854118,0.277842,0.674812,0.878316,0.0260145,0.349825,0.36944,0.480365,0.604015,0.517493,0.522294,0.473404,0.859608,0.359554,0.780802,0.440077,0.720686,0.0145468,0.750024,0.369726,0.631667,0.021405,0.807319,0.826685,0.313193,0.987635,0.933986,0.198308,0.281487,0.411036,0.0697817,0.863961,0.273907,0.354882,0.838303,0.165978,0.0422977,0.101825,0.107763,0.427064,0.823919,0.66325,0.860267,0.613147,0.899105,0.598716,0.985201,0.227768,0.808797,0.525834,0.213388,0.0922047,0.240178,0.743599,0.412207,0.933337,0.805597,0.283994,0.78161,0.928806,0.298142,0.102247,0.152113,0.0930172,0.776186,0.0559314,0.571919,0.809185,0.0218335,0.868253,0.709701,0.684537,0.651964,0.26074,0.530724,0.535815,0.834247,0.713062,0.437585,0.778898,0.898528,0.899836,0.468617,0.744884,0.438259,0.327252,0.610796,0.480435,0.289984,0.907946,0.145966,0.112627,0.372926,0.930311,0.571572,0.582291,0.454771,0.677544,0.692057,0.979516,0.91258,0.873397,0.0402515,0.506676,0.671361,0.747718,0.381128,0.345196,0.696342,0.30913,0.0817598,0.619488,0.469906,0.467847,0.0782323,0.914378,0.702394,0.292524,0.519345,0.310897,0.783464,0.056677,0.24349,0.507003,0.473858,0.343377,0.85307,0.579281,0.965802,0.228693,0.21775,0.668113,0.739879,0.183001,0.931213,0.106605,0.933836,0.574128,0.631682,0.248417,0.948958,0.872271,0.327051,0.999874,0.882596,0.388051,0.562677,0.294184,0.666225,0.154555,0.878251,0.802837,0.799459,0.124818,0.346229,0.188072,0.060972,0.143418,0.310805,0.816353,0.238222,0.639963,0.695239,0.868658,0.883503,0.373272,0.482054,0.113177,0.794246,0.566196,0.758264,0.706044,0.443571,0.294197,0.393467,0.778163,0.447525,0.213154,0.681211,0.0464578,0.847167,0.862052,0.7118,0.69464,0.758033,0.911836,0.443014,0.688863,0.782277,0.404976,0.531471,0.700366,0.697073,0.0414552,0.739511,0.673925,0.657204,0.343193,0.453244,0.92009,0.168477,0.489764,0.270914,0.37387,0.508182,0.430683,0.514709,0.709401,0.688633,0.378449,0.49934,0.0328852,0.387932,0.516741,0.0479337,0.127417,0.329666,0.657914,0.422575,0.798795,0.510424,0.516364,0.940671,0.318623,0.744913,0.226399,0.830355,0.411352,0.707558,0.00539988,0.781113,0.411393,0.266999,0.0575264,0.543213,0.285674,0.258648,0.227145,0.276505,0.599918,0.269434,0.538166,0.122775,0.592582,0.32129,0.685866,0.133044,0.840263,0.435397,0.993023,0.443138,0.398231,0.457483,0.489752,0.225631,0.19345,0.0333983,0.765999,0.469606,0.12309,0.266546,0.28483,0.383034,0.30355,0.568567,0.503435,0.640127,0.864241,0.893737,0.788679,0.0716523,0.329505,0.49534,0.335217,0.63842,0.671618,0.17279,0.101372,0.138155,0.136535,0.933209,0.751708,0.154842,0.271167,0.173577,0.239381,0.971295,0.641192,0.780048,0.626906,0.776763,0.302024,0.0842405,0.251385,0.961595,0.614457,0.00488591,0.485281,0.296675,0.569736,0.81121,0.60434,0.485799,0.756334,0.454432,0.0944328,0.148093,0.751498,0.147739,0.799161,0.815798,0.121121,0.739074,0.956851,0.585496,0.782276,0.312965,0.101376,0.598885,0.729347,0.939074,0.248233,0.626839,0.0608292,0.126991,0.394206,0.115674,0.249854,0.45544,0.793313,0.226885,0.471062,0.426893,0.547822,0.80323,0.573314,0.079581,0.0698584,0.791231,0.272779,0.120419,0.654635,0.0042159,0.291671,0.81653,0.807392,0.711605,0.786959,0.50511,0.256422,0.921707,0.27792,0.133818,0.10438,0.0978783,0.628015,0.783337,0.818916,0.785811,0.63083,0.43797,0.699671,0.535631,0.0421788,0.365272,0.410306,0.155536,0.0414266,0.218716,0.633503,0.96693,0.878526,0.0138367,0.624583,0.375794,0.0559455,0.82645,0.861877,0.021981,0.0682184,0.744301,0.303861,0.565988,0.533046,0.267056,0.42037,0.416238,0.228156,0.0722414,0.820068,0.207659,0.284897,0.19455,0.765223,0.208626,0.892999,0.321564,0.609125,0.703596,0.5968,0.478119,0.999738,0.955881,0.205503,0.598136,0.734277,0.904705,0.3295,0.64335,0.113803,0.062528,0.882851,0.98294,0.0631008,0.638722,0.880961,0.357508,0.0108439,0.693138,0.992942,0.940959,0.656297,0.901402,0.625111,0.44209,0.670044,0.680056,0.566459,0.591241,0.0396188,0.105617,0.403161,0.307144,0.0935977,0.334847,0.812892,0.0684782,0.0359963,0.250785,0.530512,0.172451,0.582229,0.863628,0.725034,0.448341,0.304131,0.0584552,0.486037,0.214729,0.550215,0.486796,0.685488,0.199479,0.137453,0.801826,0.918072,0.16087,0.083995,0.524088,0.992425,0.833561,0.817139,0.878681,0.173881,0.492158,0.654891,0.927349,0.367702,0.783493,0.311965,0.641861,0.700647,0.0503731,0.984539,0.136292,0.659095,0.916411,0.973454,0.551116,0.372626,0.406349,0.201217,0.289358,0.533237,0.826388,0.989807,0.00815779,0.248737,0.86421,0.62388,0.800499,0.763665,0.656645,0.149654,0.711352,0.046302,0.329048,0.157245,0.0789971,0.62223,0.545712,0.971815,0.83801,0.357023,0.763963,0.509055,0.32837,0.0798116,0.576634,0.30891,0.376583,0.0584409,0.548787,0.662261,0.448797,0.399285,0.557585,0.717061,0.759455,0.616068,0.885232,0.304452,0.905362,0.876478,0.930842,0.385426,0.799145,0.774725,0.643427,0.9836,0.402131,0.207569,0.964107,0.252344,0.0767361,0.102086,0.778557,0.919094,0.879015,0.734767,0.0514251,0.44916,0.797252,0.133105,0.418911,0.771075,0.311171,0.0257799,0.826554,0.531518,0.947118,0.553262,0.891078,0.811351,0.478504,0.0677465,0.94333,0.724135,0.957905,0.810907,0.795836,0.49977,0.322145,0.335469,0.621226,0.463979,0.83694,0.296876,0.0160567,0.537218,0.155782,0.140543,0.782438,0.592027,0.0120478,0.936725,0.499624,0.927661,0.467267,0.601897,0.144195,0.211986,0.512334,0.216246,0.419049,0.875394,0.837321,0.329529,0.716062,0.6248,0.243105,0.479179,0.882161,0.269335,0.143653,0.320659,0.916613,0.865275,0.558345,0.0222251,0.62091,0.997849,0.289014,0.999969,0.0658594,0.607409,0.686695,0.449803,0.852875,0.182951,0.618406,0.418404,0.287086,0.0574777,0.286881,0.539768,0.49737,0.88639,0.989654,0.75503,0.623318,0.731092,0.282953,0.523559,0.402052,0.425986,0.899385,0.400013,0.968586,|0.669067,0.0982523,0.140185,0.17407,0.101858,0.0155946,0.778523,0.833857,0.427429,0.561668,0.417077,0.313683,0.67567,0.907873,0.0543222,0.0589216,0.565022,0.436995,0.285158,0.258575,0.176678,0.884168,0.340354,0.170768,0.413799,0.15405,0.0476201,0.259728,0.802108,0.523022,0.467256,0.0799799,0.0703342,0.453521,0.144938,0.83272,0.118506,0.697613,0.566012,0.0689113,0.634741,0.599552,0.324862,0.572156,0.427419,0.304035,0.357233,0.891312,0.319322,0.463511,0.771494,0.152757,0.627447,0.8404,0.874926,0.017998,0.813557,0.820504,0.410758,0.379516,0.268488,0.331512,0.85599,0.693574,0.487442,0.692857,0.239527,0.783596,0.195477,0.551929,0.259665,0.308751,0.982742,0.547698,0.642385,0.35801,0.501131,0.502675,0.0380511,0.128556,0.407823,0.867033,0.0604903,0.989608,0.872629,0.754756,0.831332,0.820157,0.227933,0.516753,0.183958,0.572842,0.898117,0.963837,0.100767,0.412044,0.616467,0.0592182,0.0554995,0.0120261,0.0037992,0.337464,0.447506,0.242397,0.153449,0.803034,0.158231,0.392746,0.496978,0.954369,0.371441,0.0694454,0.265555,0.922092,0.612515,0.978135,0.453707,0.584806,0.42794,0.460045,0.386632,0.454367,0.446271,0.286843,0.229122,0.0912269,0.623259,0.218635,0.446146,0.481031,0.139328,0.909995,0.314357,0.350898,0.0334118,0.833778,0.642698,0.611515,0.26261,0.232426,0.729313,0.339286,0.382969,0.296226,0.406915,0.808731,0.0260842,0.387349,0.300065,0.568515,0.571594,0.291428,0.923831,0.0140314,0.994204,0.419743,0.965851,0.81684,0.20213,0.400212,0.352234,0.937998,0.00244945,0.596549,0.18321,0.0834219,0.384926,0.541377,0.34294,0.113453,0.58962,0.636082,0.238453,0.841264,0.226042,0.762573,0.94566,0.424269,0.979038,0.950828,0.944196,0.484719,0.601207,0.0194561,0.502208,0.696324,0.716493,0.67074,0.516578,0.711402,0.306529,0.794846,0.174317,0.17376,0.701721,0.270741,0.462552,0.00407761,0.592128,0.234903,0.31413,0.176866,0.284788,0.203629,0.250071,0.426039,0.198188,0.272198,0.576873,0.190811,0.422807,0.844441,0.777945,0.846811,0.576283,0.703111,0.723864,0.839218,0.629829,0.486766,0.367289,0.876953,0.579609,0.969838,0.39552,0.0897692,0.401634,0.890344,0.471943,0.584267,0.939843,0.023939,0.0040158,0.00550938,0.893616,0.259557,0.494966,0.495812,0.424061,0.437199,0.731656,0.309659,0.0205072,0.739318,0.251337,0.480985,0.219497,0.995906,0.275268,0.29549,0.79414,0.514509,0.80668,0.124301,0.247292,0.91721,0.519349,0.283655,0.919341,0.418293,0.736168,0.549085,0.350702,0.184884,0.444808,0.155205,0.662148,0.760914,0.208939,0.178186,0.51129,0.404153,0.79987,0.54166,0.269459,0.368372,0.664205,0.652979,0.715577,0.210402,0.218242,0.892097,0.540428,0.514566,0.0290728,0.036074,0.632185,0.296389,0.469305,0.37737,0.549026,0.924974,0.111367,0.380402,0.555556,0.494857,0.561141,0.780919,0.390762,0.0239329,0.164375,0.810252,0.304761,0.70401,0.127076,0.048251,0.064747,0.589491,0.58205,0.782303,0.848965,0.415703,0.419096,0.051559,0.9964,0.253671,0.704364,0.533152,0.518956,0.0818493,0.0480279,0.349803,0.404916,0.866296,0.57118,0.0203606,0.665053,0.533175,0.471053,0.233345,0.958161,0.167952,0.424571,0.994874,0.408874,0.805812,0.439367,0.483588,0.824706,0.0762538,0.482074,0.0766833,0.809211,0.709547,0.785648,0.439956,0.590883,0.914927,0.479101,0.220597,0.0852259,0.98849,0.0359048,0.991864,0.32455,0.273153,0.248888,0.0761649,0.944302,0.669478,0.424632,0.97898,0.0274587,0.563902,0.596066,0.617272,0.197413,0.798847,0.140282,0.033906,0.646387,0.122046,0.893989,0.657901,0.296291,0.696987,0.903932,0.584999,0.979203,0.219692,0.45576,0.963194,0.671824,0.0585431,0.0541442,0.675239,0.299698,0.337609,0.579653,0.174107,0.993931,0.915055,0.233619,0.644627,0.599239,0.945337,0.721752,0.432298,0.84834,0.587063,0.772971,0.432189,0.085039,0.532977,0.451124,0.891022,0.752968,0.514894,0.0184062,0.986461,0.53881,0.62481,0.0554767,0.477805,0.667557,0.0419134,0.434582,0.223824,0.125594,0.43591,0.409153,0.212146,0.0593283,0.079731,0.154149,0.468988,0.103301,0.713478,0.380961,0.465534,0.41736,0.380399,0.351897,0.258197,0.488684,0.870655,0.472791,0.637573,0.00080806,0.279567,0.0305135,0.751427,0.075773,0.260117,0.66349,0.390888,0.0982106,0.680802,0.848175,0.447739,0.40039,0.632845,0.0147008,0.904021,0.854231,0.334057,0.892708,0.488465,0.81676,0.650782,0.792101,0.819903,0.896105,0.244507,0.00401276,0.954754,0.582524,0.429697,0.652489,0.834925,0.83325,0.622657,0.902471,0.556336,0.607417,0.542487,0.117268,0.990517,0.0378179,0.568142,0.134575,0.675597,0.952886,0.991467,0.48436,0.472396,0.646975,0.154337,0.856821,0.82597,0.200374,0.709571,0.862373,0.496523,0.744808,0.697194,0.194819,0.846024,0.133064,0.14276,0.99031,0.622879,0.47301,0.947565,0.923337,0.161402,0.306818,0.832075,0.396841,0.540022,0.280048,0.952243,0.125123,0.142761,0.347151,0.454221,0.370131,0.497032,0.922801,0.114053,0.952933,0.345416,0.578182,0.3132,0.623299,0.585008,0.307871,0.842072,0.711573,0.125089,0.782205,0.934648,0.287858,0.55391,0.991195,0.824504,0.711313,0.57016,0.602978,0.922231,0.475025,0.338988,0.395781,0.256093,0.609455,0.556207,0.725031,0.227882,0.16082,0.494079,0.683343,0.167437,0.627409,0.667328,0.473731,0.777221,0.512111,0.535956,0.958033,0.44318,0.440189,0.181688,0.560511,0.3258,0.345819,0.62925,0.832565,0.672403,0.917605,0.210615,0.374983,0.925576,0.877966,0.6136,0.830163,0.783037,0.415845,0.369989,0.498834,0.432491,0.154705,0.857747,0.697915,0.951316,0.803078,0.372792,0.913773,0.582305,0.429283,0.264126,0.221685,0.469098,0.00453097,0.847894,0.992822,0.0735751,0.848422,0.0568849,0.187482,0.850825,0.00206304,0.773983,0.652563,0.910184,0.0281561,0.492287,0.980679,0.319376,0.809847,0.112234,0.222144,0.380159,0.330124,0.515225,0.35472,0.350961,0.164503,0.619885,0.700807,0.64058,0.399455,0.108303,0.014121,0.771578,0.84128,0.833013,0.449315,0.19589,0.519533,0.641584,0.00714868,0.921551,0.0248342,0.751179,0.724801,0.814795,0.0764515,0.283941,0.211117,0.357839,0.845024,0.970425,0.789653,0.115725,0.0205283,0.753136,0.119003,0.594194,0.42414,0.264443,0.997233,0.0798024,0.303654,0.544472,0.0818141,0.660295,0.323961,0.597789,0.655956,0.447664,0.243506,0.195266,0.967695,0.675429,0.434281,0.4921,0.905978,0.152918,0.234497,0.713603,0.18254,0.948571,0.326644,0.168814,0.584029,0.188961,0.247237,0.925652,0.645769,0.0479179,0.401632,0.261532,0.114369,0.821486,0.0699879,0.996459,0.712033,0.214174,0.653818,0.385123,0.178345,0.705077,0.255241,0.80862,0.750707,0.91804,0.482867,0.195413,0.509477,0.328061,0.716801,0.236056,0.233083,0.405221,0.704559,0.736815,0.128713,0.394161,0.912186,0.841435,0.351989,0.860434,0.564765,0.993514,0.823824,0.660729,0.252809,0.653086,0.143296,0.963997,0.87917,0.491649,0.312835,0.56683,0.0582599,0.333184,0.0192719,0.336887,0.145327,0.105952,0.655246,0.95258,0.770977,0.710704,0.869161,0.555558,0.344159,0.103719,0.45601,0.806084,0.0358999,0.0372551,0.312777,0.675364,0.789246,0.633773,0.231908,0.751959,0.0428852,0.129434,0.0728864,0.00620127,0.238575,0.361064,0.312709,0.319074,0.128449,0.908823,0.298168,0.218433,0.753743,0.21726,0.550001,0.0736813,0.912078,0.792301,0.655761,0.835513,0.838254,0.920633,0.553784,0.0650467,0.881399,0.473228,0.231842,0.124599,0.0505454,0.360914,0.101577,0.307834,0.800506,0.281513,0.676948,0.276166,0.0849612,0.41026,0.628174,0.900984,0.922477,0.341593,0.907458,0.949851,0.740587,0.79972,0.699759,0.330925,0.863938,0.136591,0.186329,0.397097,0.968396,0.0993174,0.0981236,0.292031,0.688014,0.790028,0.0402721,0.352051,0.766175,0.111597,0.56551,0.844925,0.94661,0.0514044,0.383825,0.129006,0.92626,0.0106128,0.0531248,0.87248,0.145247,0.963259,0.724377,0.205774,0.576411,0.0912274,0.0853651,0.157864,0.349745,0.953595,0.991851,0.849078,0.913475,0.402251,0.37208,0.922199,0.718575,0.363561,0.966074,0.148368,0.439454,0.922453,0.651755,0.0676927,0.176487,0.593448,0.352022,0.576582,0.900443,0.428108,0.904712,0.0486516,0.333686,0.697234,0.420333,0.868745,0.21935,0.867367,0.330122,0.64666,0.196693,0.1472,0.00839752,0.588645,0.286463,0.742377,0.0781268,0.751423,0.0615711,0.556744,0.489066,0.552393,0.567612,0.947505,0.0108021,0.889273,0.551291,0.540817,0.973981,0.969649,0.490074,0.96849,0.289993,0.287579,0.630544,0.383645,0.403355,0.288518,0.391694,0.147425,0.647581,0.593378,0.193247,0.106274,0.418142,0.24038,0.601088,0.195686,0.116469,0.907883,0.922671,0.42338,0.411167,0.878617,0.443302,0.128043,0.138042,0.0845795,0.889511,0.334472,0.0593415,0.601268,0.855866,0.992302,0.481523,0.573579,0.884098,0.433375,0.467781,0.216337,0.930709,0.0596724,0.744085,0.213004,0.506798,0.618237,0.874175,0.541042,0.199079,0.897391,0.323538,0.116315,0.542646,0.305367,0.447476,0.631662,0.481511,0.0650119,0.356838,0.519639,0.0457532,0.818941,0.146223,0.346645,0.345506,0.848163,0.623324,0.0328269,0.663547,0.934148,0.342956,0.865541,0.593425,0.955745,0.280781,0.683274,0.572751,0.468196,0.680669,0.0483184,0.859015,0.800865,0.236989,0.672394,0.243645,0.393996,0.943209,0.0916099,0.918694,0.875669,0.880151,0.178152,0.39216,0.128557,0.0108,0.349567,0.694807,0.465742,0.392533,0.150552,0.855734,0.74371,0.00762898,0.364024,0.729876,0.219828,0.658069,0.835464,0.881432,0.572972,0.787511,0.364113,0.278904,0.792421,0.717342,0.254052,0.405119,0.272125,0.881782,0.234349,|0.904794,0.00475597,0.39118,0.0858411,0.918034,0.674451,0.100112,0.0121652,0.95145,0.283523,0.355631,0.0802001,0.49891,0.819765,0.316389,0.113814,0.527778,0.505264,0.951595,0.939897,0.745684,0.664885,0.300237,0.950813,0.256554,0.45514,0.222415,0.0931306,0.0922564,0.491677,0.663663,0.427537,0.679644,0.108083,0.622317,0.960818,0.330256,0.307296,0.928745,0.0790389,0.0439473,0.636419,0.00312108,0.702012,0.740571,0.481205,0.781847,0.821512,0.0212767,0.135283,0.639901,0.00903076,0.353787,0.61737,0.0431221,0.738113,0.534502,0.874067,0.98042,0.328506,0.812791,0.34631,0.486644,0.0135002,0.563601,0.602663,0.347946,0.982781,0.942413,0.785941,0.606789,0.428139,0.342697,0.452137,0.537685,0.950004,0.205011,0.674924,0.957326,0.54183,0.477735,0.196147,0.820358,0.802336,0.643648,0.877525,0.0805805,0.807377,0.319491,0.44574,0.0425549,0.697789,0.92482,0.875056,0.632508,0.800686,0.0383077,0.46809,0.823494,0.556921,0.261476,0.314805,0.73602,0.012904,0.213438,0.197506,0.552719,0.183427,0.265793,0.968553,0.269449,0.315547,0.214261,0.187476,0.654571,0.626095,0.646321,0.983111,0.209392,0.140724,0.764812,0.502778,0.999218,0.577996,0.644427,0.977062,0.861909,0.655999,0.128425,0.518677,0.609443,0.983041,0.17733,0.953311,0.797304,0.266741,0.586553,0.0348405,0.647799,0.353178,0.105573,0.26622,0.138868,0.119449,0.959898,0.971043,0.138852,0.616245,0.911706,0.97636,0.747247,0.702501,0.443896,0.772042,0.742744,0.335195,0.0159884,0.885536,0.366399,0.912154,0.212485,0.179067,0.301753,0.488362,0.91813,0.859589,0.0850843,0.346551,0.54984,0.0832199,0.222231,0.987049,0.226258,0.770303,0.693843,0.662959,0.610555,0.370917,0.658328,0.302551,0.820728,0.362232,0.7959,0.406884,0.0701999,0.777645,0.548225,0.567398,0.412585,0.476247,0.377991,0.235479,0.61633,0.0777096,0.977565,0.0969254,0.349479,0.991547,0.514167,0.248261,0.627916,0.384535,0.163909,0.297072,0.632013,0.0450316,0.783326,0.662835,0.118945,0.122188,0.724692,0.789317,0.0393715,0.61286,0.119314,0.890052,0.110728,0.0580834,0.365208,0.182325,0.395325,0.0593465,0.720272,0.787466,0.271873,0.661046,0.817194,0.295871,0.528161,0.206222,0.522374,0.327595,0.428494,0.841197,0.494782,0.217988,0.170509,0.0311403,0.518268,0.346427,0.550112,0.992858,0.900848,0.94275,0.963354,0.86901,0.313033,0.331138,0.425001,0.646546,0.707451,0.608664,0.136689,0.22862,0.386497,0.68268,0.190955,0.0497746,0.0355572,0.321222,0.536062,0.811225,0.658115,0.584025,0.206719,0.795316,0.120767,0.300748,0.67691,0.99592,0.616375,0.632395,0.472201,0.0804445,0.943225,0.631918,0.453084,0.120044,0.0915933,0.159862,0.401165,0.590635,0.320069,0.325833,0.147694,0.920678,0.311041,0.548042,0.803324,0.975563,0.135723,0.257023,0.943483,0.857651,0.949813,0.0678802,0.265648,0.471188,0.0613522,0.515216,0.325603,0.254348,0.810141,0.930754,0.610803,0.000503123,0.393514,0.246209,0.720312,0.754845,0.740453,0.595735,0.57432,0.719117,0.0723333,0.448084,0.531629,0.746613,0.106911,0.400109,0.577595,0.43742,0.105088,0.920305,0.055882,0.137046,0.967287,0.321929,0.506834,0.0323198,0.754861,0.314556,0.368418,0.75628,0.708681,0.856282,0.889162,0.757939,0.339564,0.385721,0.655389,0.00992912,0.174566,0.446803,0.650462,0.237201,0.56694,0.487186,0.99911,0.813248,0.19936,0.622471,0.912458,0.71238,0.0692117,0.0767832,0.244004,0.988805,0.874388,0.515823,0.707916,0.139731,0.42183,0.855242,0.436605,0.922415,0.463254,0.21556,0.273467,0.143911,0.742876,0.595135,0.498222,0.0461762,0.300344,0.174203,0.34566,0.741797,0.538454,0.082305,0.976779,0.653436,0.401437,0.189879,0.379581,0.0676641,0.572744,0.710469,0.256346,0.853894,0.888155,0.327195,0.0793205,0.0850356,0.111322,0.493431,0.251392,0.360085,0.7899,0.422948,0.792934,0.645357,0.548441,0.623197,0.298828,0.941217,0.508849,0.145135,0.890383,0.051724,0.206416,0.22897,0.540768,0.0757132,0.164614,0.770486,0.56143,0.372491,0.638657,0.42079,0.833945,0.985684,0.818811,0.378884,0.998242,0.857433,0.171507,0.85695,0.241074,0.675851,0.872059,0.00240189,0.221561,0.622173,0.45992,0.710419,0.490981,0.0410452,0.697006,0.61279,0.0196984,0.487518,0.621926,0.115565,0.0833635,0.930061,0.493454,0.346883,0.761706,0.443179,0.277357,0.686972,0.381114,0.629681,0.162299,0.660721,0.927772,0.819962,0.97681,0.0318363,0.231825,0.653212,0.527623,0.491211,0.42274,0.72261,0.365531,0.539369,0.110391,0.0508288,0.507834,0.0471585,0.975873,0.47585,0.676164,0.0275952,0.790208,0.584814,0.625153,0.272425,0.639229,0.462176,0.41344,0.654232,0.823412,0.245527,0.10107,0.782257,0.625768,0.706032,0.85811,0.142633,0.641311,0.760499,0.849959,0.374942,0.0179899,0.927385,0.799553,0.926876,0.757863,0.99896,0.118271,0.961655,0.734467,0.349576,0.176266,0.418202,0.676254,0.561544,0.0357329,0.47468,0.471208,0.747681,0.440066,0.562995,0.129902,0.544326,0.511381,0.0465388,0.424098,0.343011,0.642767,0.539491,0.71979,0.703412,0.851497,0.895733,0.276106,0.0054388,0.575737,0.959483,0.953869,0.709856,0.0566608,0.730082,0.0250027,0.543693,0.63287,0.642551,0.196932,0.232559,0.466516,0.503139,0.0933686,0.0462636,0.735743,0.687026,0.905228,0.0317767,0.192759,0.236276,0.297107,0.303381,0.376879,0.411719,0.913443,0.0972628,0.054051,0.1274,0.338025,0.325519,0.038641,0.589455,0.156699,0.187331,0.352212,0.546386,0.502721,0.513678,0.66792,0.38465,0.264261,0.800496,0.462938,0.392464,0.880823,0.122776,0.536211,0.687177,0.470063,0.798565,0.826502,0.911954,0.637747,0.594723,0.951191,0.690504,0.419617,0.50533,0.433526,0.611889,0.0328307,0.826693,0.0499249,0.73205,0.743396,0.400581,0.431582,0.18474,0.567107,0.661833,0.433297,0.723087,0.288512,0.300157,0.355664,0.0529203,0.967851,0.810227,0.104125,0.0967029,0.239651,0.37446,0.672983,0.144053,0.0979459,0.774584,0.528129,0.343888,0.0173539,0.102482,0.231159,0.231423,0.590464,0.211922,0.743801,0.0572973,0.499169,0.35201,0.196053,0.841547,0.994261,0.0825673,0.089784,0.417716,0.532035,0.12352,0.245314,0.616981,0.501147,0.0974462,0.714209,0.745575,0.108909,0.673493,0.332679,0.478965,0.712029,0.105815,0.617061,0.036299,0.379637,0.10958,0.899073,0.496035,0.623061,0.780311,0.324036,0.350582,0.0432715,0.140486,0.669225,0.426991,0.316611,0.950269,0.00559425,0.0316471,0.278765,0.104508,0.298284,0.0726091,0.336405,0.742135,0.95558,0.421794,0.868629,0.820118,0.502228,0.297636,0.594719,0.33004,0.64804,0.725894,0.0318171,0.0679079,0.525226,0.00123191,0.779144,0.887284,0.798113,0.08338,0.910813,0.479196,0.228577,0.380605,0.402613,0.579841,0.579515,0.104316,0.205654,0.103879,0.149833,0.182134,0.698698,0.646816,0.842072,0.141185,0.574965,0.239004,0.592945,0.617028,0.148123,0.739708,0.457653,0.691043,0.796466,0.349092,0.446257,0.833659,0.30454,0.406973,0.861324,0.427773,0.128444,0.6501,0.846861,0.0163022,0.628538,0.857291,0.0787058,0.691675,0.851045,0.11998,0.204535,0.0264124,0.154429,0.88447,0.865471,0.69023,0.320084,0.304274,0.562369,0.78642,0.472637,0.0667459,0.0377897,0.273015,0.407282,0.163965,0.965618,0.46609,0.986308,0.823675,0.743877,0.115496,0.719862,0.543779,0.930061,0.966818,0.0674236,0.383734,0.696225,0.413806,0.879309,0.626274,0.490293,0.563051,0.174932,0.791771,0.39186,0.793411,0.826458,0.189425,0.0539727,0.690096,0.105783,0.651888,0.00878924,0.75682,0.231701,0.415646,0.930525,0.793421,0.0811956,0.683254,0.680835,0.719136,0.776858,0.67993,0.255554,0.711591,0.816502,0.662709,0.724962,0.920152,0.178842,0.672477,0.276503,0.707036,0.926936,0.118634,0.25554,0.604811,0.986438,0.990016,0.321766,0.780684,0.810462,0.607942,0.163579,0.693146,0.840706,0.580535,0.213068,0.763315,0.70035,0.784549,0.00353861,0.995995,0.579216,0.914928,0.889633,0.0506242,0.936618,0.767323,0.819074,0.167211,0.867341,0.853941,0.972553,0.411207,0.060663,0.159318,0.595067,0.639956,0.952005,0.399853,0.995666,0.761398,0.572647,0.854708,0.191964,0.754581,0.144113,0.934152,0.389712,0.733348,0.613274,0.334266,0.972522,0.686565,0.905042,0.244778,0.61921,0.609621,0.783633,0.595766,0.640547,0.983276,0.882034,0.758338,0.394985,0.560795,0.128318,0.277608,0.0155542,0.510783,0.542955,0.392982,0.159923,0.685979,0.669828,0.661529,0.149017,0.197231,0.181017,0.844919,0.917031,0.527249,0.470184,0.52353,0.6376,0.925708,0.0515714,0.662369,0.0484703,0.0628231,0.448539,0.0877187,0.501071,0.097652,0.873184,0.683445,0.204394,0.404296,0.610104,0.0201748,0.381464,0.397048,0.114267,0.162861,0.665695,0.112729,0.269986,0.0957612,0.183064,0.284614,0.777113,0.777885,0.182708,0.61323,0.83305,0.628266,0.0737348,0.254005,0.0834875,0.811915,0.701609,0.20957,0.076629,0.0877199,0.264011,0.00067234,0.846607,0.0911545,0.815645,0.317124,0.83836,0.818085,0.400268,0.438976,0.160813,0.510518,0.446311,0.0775332,0.165432,0.945563,0.586487,0.00143915,0.820827,0.507036,0.456266,0.0156468,0.518451,0.753883,0.992976,0.689601,0.541653,0.523795,0.353053,0.548211,0.681355,0.672822,0.520663,0.00756937,0.0398174,0.362289,0.160605,0.854497,0.898466,0.734931,0.146424,0.00035882,0.222043,0.556858,0.0188972,0.223678,0.660493,0.62732,0.344875,0.275987,0.0993499,0.276022,0.825302,0.158526,0.943891,0.642927,0.6406,0.523035,0.292351,0.953328,0.412194,0.765894,0.877081,0.905017,0.934982,0.0953242,0.172828,0.508892,0.553817,0.0800817,0.155855,0.574188,0.800501,0.108235,0.176651,0.338299,0.470491,0.588719,|0.343966,0.871731,0.684835,0.878404,0.74694,0.593305,0.0330669,0.254019,0.550512,0.509427,0.918353,0.644766,0.720631,0.0439946,0.501498,0.891716,0.274327,0.559427,0.717428,0.73994,0.290795,0.1555,0.762614,0.805221,0.473746,0.272625,0.240591,0.937195,0.478745,0.764614,0.551238,0.1444,0.194681,0.469512,0.42425,0.226935,0.562498,0.990301,0.826377,0.422279,0.961207,0.235819,0.80058,0.0282273,0.275081,0.30043,0.0946568,0.20734,0.49304,0.878757,0.353514,0.478675,0.405478,0.455856,0.976317,0.789948,0.97383,0.418549,0.477468,0.346585,0.993862,0.452129,0.181586,0.0331971,0.775322,0.322588,0.964969,0.0309393,0.0206878,0.636047,0.154555,0.121225,0.978232,0.789598,0.912625,0.925191,0.191112,0.142804,0.653473,0.0803432,0.285214,0.36361,0.199039,0.909914,0.555709,0.267981,0.860833,0.181368,0.719751,0.118278,0.639508,0.445477,0.65232,0.366247,0.818256,0.270541,0.217573,0.0701052,0.321201,0.348764,0.532307,0.27807,0.689197,0.41041,0.552254,0.686033,0.971171,0.162228,0.159164,0.867493,0.574445,0.217327,0.464297,0.679175,0.754442,0.549107,0.84165,0.0923854,0.962015,0.449918,0.117134,0.455717,0.617728,0.8829,0.364043,0.33103,0.953795,0.318222,0.476449,0.199661,0.383516,0.295911,0.820999,0.817459,0.812277,0.606136,0.0606511,0.0200439,0.859637,0.677405,0.70149,0.199419,0.207613,0.475682,0.77867,0.764863,0.524424,0.246145,0.0333523,0.989319,0.713901,0.435864,0.61392,0.489316,0.580527,0.123086,0.692995,0.298285,0.711068,0.0758443,0.399644,0.804356,0.953284,0.80371,0.300538,0.467316,0.971896,0.112074,0.85905,0.30035,0.865139,0.925564,0.977232,0.677528,0.787212,0.0769176,0.66941,0.576157,0.0422416,0.753448,0.841215,0.405871,0.247572,0.0184234,0.545618,0.462374,0.931954,0.789837,0.955962,0.0285453,0.123031,0.929613,0.0301263,0.1865,0.885846,0.790792,0.24309,0.242258,0.431039,0.877846,0.58852,0.843477,0.241285,0.271618,0.3132,0.16066,0.294148,0.00667304,0.861723,0.387558,0.425476,0.562967,0.0237688,0.187534,0.0354733,0.259475,0.329246,0.501654,0.818948,0.950531,0.192003,0.713771,0.860307,0.437479,0.849564,0.269207,0.312387,0.496105,0.545095,0.719773,0.157615,0.852833,0.102559,0.2835,0.678721,0.758593,0.900349,0.98608,0.0300236,0.542982,0.597935,0.0838161,0.55673,0.832799,0.389258,0.919006,0.215891,0.861534,0.862418,0.983775,0.0939935,0.00213397,0.201655,0.977992,0.891698,0.968385,0.965206,0.585206,0.826272,0.999743,0.751672,0.903568,0.880647,0.643879,0.381261,0.626967,0.952042,0.928019,0.619015,0.132156,0.54171,0.0852956,0.411151,0.270967,0.247658,0.314345,0.0241839,0.910719,0.757198,0.588751,0.780849,0.146675,0.489054,0.572736,0.180259,0.678141,0.88064,0.780307,0.953172,0.709619,0.0708821,0.670213,0.754295,0.990946,0.652538,0.81317,0.29321,0.365746,0.366408,0.749126,0.346368,0.519663,0.193759,0.47031,0.463951,0.964981,0.0842827,0.360927,0.331717,0.575559,0.141145,0.0135769,0.49074,0.211726,0.791233,0.364238,0.206807,0.155216,0.435966,0.541231,0.962874,0.632588,0.769035,0.548642,0.399311,0.273862,0.999742,0.664245,0.222018,0.412008,0.483983,0.41576,0.224368,0.729809,0.725745,0.262826,0.524358,0.0206742,0.965308,0.727833,0.267654,0.715652,0.406261,0.0276777,0.0660175,0.275488,0.498888,0.446374,0.435748,0.0985596,0.258357,0.17368,0.0677326,0.360165,0.657192,0.234164,0.77558,0.289036,0.398799,0.201928,0.283458,0.526021,0.0591215,0.792672,0.741395,0.61039,0.948861,0.686637,0.973007,0.239666,0.570548,0.194422,0.168949,0.768114,0.695942,0.191131,0.605821,0.218389,0.931943,0.804504,0.0210961,0.488989,0.224471,0.924881,0.682995,0.762617,0.892134,0.13012,0.98938,0.421254,0.1788,0.0353116,0.0524331,0.535621,0.493799,0.830722,0.880464,0.00758529,0.150016,0.704857,0.63008,0.0880257,0.214216,0.110424,0.258102,0.037202,0.612956,0.651982,0.422242,0.402009,0.0203316,0.56204,0.906242,0.574552,0.898907,0.295903,0.0543634,0.361258,0.848889,0.224142,0.293296,0.193155,0.233024,0.339491,0.730312,0.944712,0.315041,0.101672,0.0731761,0.852318,0.890365,0.292508,0.0368218,0.514042,0.0710375,0.935491,0.0769676,0.673874,0.465855,0.456677,0.98927,0.803532,0.0517751,0.948486,0.434834,0.481168,0.868227,0.767257,0.718776,0.283528,0.537438,0.389274,0.399904,0.463668,0.230616,0.687439,0.0712259,0.467695,0.638917,0.769491,0.116171,0.773838,0.691197,0.56388,0.704642,0.00131577,0.206634,0.975934,0.164506,0.98779,0.460182,0.358026,0.366587,0.447071,0.530194,0.571191,0.999385,0.63368,0.864531,0.697924,0.153709,0.339423,0.755503,0.715269,0.766877,0.993424,0.251417,0.673659,0.949392,0.655995,0.385829,0.66583,0.458041,0.821488,0.372611,0.406556,0.755661,0.466156,0.465169,0.319388,0.651025,0.515254,0.503196,0.224719,0.680554,0.269103,0.301235,0.752838,0.887551,0.565485,0.413172,0.600269,0.218238,0.969744,0.391704,0.136165,0.15114,0.503235,0.755092,0.186309,0.538987,0.0790954,0.764697,0.361024,0.644952,0.785586,0.971956,0.993863,0.713107,0.786177,0.256834,0.0738856,0.111298,0.83624,0.183262,0.0489153,0.0921856,0.18071,0.450812,0.740525,0.364483,0.879645,0.286619,0.435124,0.944717,0.405555,0.700044,0.900076,0.5499,0.743771,0.142923,0.325927,0.762133,0.747545,0.841735,0.0616847,0.639997,0.111463,0.505042,0.0120758,0.0648127,0.898752,0.899407,0.718904,0.988242,0.94773,0.534708,0.420198,0.797928,0.0295761,0.40145,0.566458,0.0364862,0.482702,0.623263,0.436462,0.631521,0.604228,0.540436,0.336804,0.966566,0.920541,0.843076,0.575761,0.790264,0.222324,0.958425,0.750292,0.757727,0.341925,0.136159,0.234703,0.161908,0.632956,0.990736,0.310767,0.152977,0.928175,0.829037,0.938312,0.215419,0.784425,0.929533,0.948913,0.241922,0.408918,0.0803182,0.159205,0.766266,0.522906,0.836897,0.523565,0.910631,0.909916,0.809003,0.953193,0.443992,0.847184,0.466235,0.417129,0.23441,0.144536,0.79917,0.952355,0.901998,0.871585,0.112571,0.597331,0.288598,0.917735,0.715109,0.796177,0.744093,0.0480643,0.250628,0.201361,0.640121,0.237957,0.809164,0.980362,0.331856,0.33909,0.312258,0.0777389,0.923568,0.0105894,0.901789,0.165815,0.99691,0.267667,0.591579,0.324889,0.126951,0.17131,0.315751,0.928158,0.398642,0.0474002,0.145739,0.748755,0.732549,0.193937,0.143895,0.448202,0.328869,0.622504,0.305739,0.31483,0.658697,0.814933,0.250475,0.626458,0.2834,0.823139,0.448342,0.571973,0.707202,0.985881,0.538464,0.968947,0.62842,0.45926,0.123146,0.671612,0.584353,0.0291187,0.924704,0.891179,0.314116,0.057743,0.440987,0.540244,0.718855,0.476165,0.688157,0.274989,0.223677,0.685355,0.881722,0.763194,0.246655,0.703447,0.410681,0.360181,0.312637,0.400781,0.820246,0.884544,0.252698,0.443212,0.418703,0.73604,0.769506,0.586028,0.429563,0.362712,0.0138031,0.936905,0.371345,0.684472,0.505828,0.274206,0.483017,0.340134,0.710186,0.171365,0.258459,0.0623245,0.533928,0.54141,0.301454,0.166852,0.101894,0.870932,0.892094,0.447182,0.674581,0.806647,0.569827,0.498172,0.154662,0.754317,0.237184,0.233641,0.659468,0.358466,0.142587,0.712826,0.337731,0.803339,0.972091,0.863583,0.925233,0.884563,0.211377,0.75442,0.682572,0.644191,0.0496369,0.611191,0.660909,0.0782307,0.800514,0.58257,0.10756,0.923724,0.554513,0.871115,0.674634,0.895079,0.572858,0.663694,0.493266,0.364415,0.229883,0.810914,0.351486,0.830382,0.105058,0.254984,0.876455,0.537069,0.184546,0.977951,0.482748,0.61805,0.885251,0.923934,0.439245,0.325678,0.116828,0.194807,0.415243,0.4287,0.390521,0.0397453,0.061592,0.745927,0.243075,0.361245,0.694788,0.162977,0.829678,0.334849,0.904943,0.18249,0.288227,0.0381414,0.962127,0.810727,0.794898,0.67789,0.0908046,0.850976,0.582697,0.830246,0.494015,0.0185773,0.323435,0.198729,0.181957,0.657416,0.954867,0.0592355,0.667612,0.898797,0.532448,0.00590569,0.261864,0.604592,0.188497,0.535235,0.00565368,0.0824803,0.0380047,0.977456,0.641747,0.194363,0.410604,0.529478,0.123735,0.981527,0.531822,0.985359,0.0542356,0.82086,0.632932,0.241958,0.35175,0.700567,0.122467,0.387617,0.120454,0.647035,0.48339,0.982442,0.0762153,0.00902081,0.564138,0.504258,0.474937,0.340989,0.408383,0.680755,0.0878278,0.0828493,0.802154,0.638305,0.681317,0.86628,0.63947,0.9269,0.289491,0.633923,0.302612,0.838081,0.460028,0.43294,0.400629,0.177552,0.959341,0.819564,0.0305933,0.514573,0.182435,0.376128,0.351053,0.24738,0.566842,0.0905134,0.554172,0.215655,0.378431,0.0975209,0.229465,0.0667186,0.543069,0.553726,0.509258,0.112698,0.0911443,0.938927,0.547275,0.679602,0.322452,0.894158,0.00992256,0.399748,0.103421,0.0037446,0.501072,0.319442,0.531632,0.182037,0.024191,0.685294,0.0345291,0.7289,0.543814,0.44557,0.131819,0.94341,0.669638,0.845737,0.984486,0.564485,0.00921726,0.407191,0.826455,0.0550022,0.245865,0.585381,0.39563,0.129483,0.194027,0.357225,0.778772,0.352362,0.00576359,0.235311,0.243901,0.436637,0.792987,0.906625,0.0801685,0.163752,0.115859,0.473939,0.970478,0.336986,0.171688,0.695967,0.867239,0.408439,0.535771,0.667452,0.0430177,0.982114,0.123507,0.929796,0.935317,0.628534,0.408241,0.340287,0.231063,0.799319,0.465059,0.554211,0.748507,0.174215,0.399105,0.217104,0.52301,0.000496626,0.378373,0.213932,0.71504,0.678221,0.601187,0.757129,0.623484,0.875817,0.11616,0.104979,0.123904,0.539979,0.866247,0.682789,0.782082,0.0225945,0.746029,0.794848,0.441464,0.293306,0.99856,0.650538,0.123812,0.268908,0.307936,0.918447,|0.366904,0.740897,0.542805,0.8168,0.993607,0.95026,0.319845,0.280472,0.506686,0.485027,0.874254,0.465081,0.764085,0.932428,0.26572,0.828386,0.964155,0.836087,0.216842,0.279762,0.334471,0.740187,0.284378,0.0670305,0.112818,0.0963231,0.855352,0.168758,0.40441,0.123302,0.573554,0.783557,0.843419,0.893089,0.503894,0.50971,0.0273228,0.0569654,0.93802,0.121149,0.358732,0.355327,0.536902,0.240713,0.270375,0.528988,0.826824,0.660404,0.887396,0.716613,0.8972,0.530266,0.211516,0.457942,0.0794819,0.717225,0.456551,0.225711,0.635455,0.791908,0.301768,0.609613,0.456679,0.271915,0.514236,0.181003,0.417955,0.52421,0.881416,0.871272,0.224878,0.451522,0.0337263,0.420475,0.586422,0.663272,0.747244,0.730697,0.992149,0.75162,0.0589522,0.322759,0.519996,0.21852,0.0110842,0.393505,0.141432,0.924946,0.575706,0.573733,0.0505006,0.233093,0.0894045,0.330673,0.2865,0.586541,0.815952,0.725763,0.0655939,0.446676,0.769761,0.984183,0.65005,0.0160327,0.823698,0.38898,0.982102,0.0765174,0.0800865,0.338593,0.553195,0.133979,0.546199,0.681228,0.834313,0.562685,0.166039,0.0881765,0.907054,0.47308,0.10398,0.273861,0.42294,0.533636,0.588823,0.0242442,0.907001,0.405481,0.393952,0.303297,0.417263,0.384694,0.887321,0.493022,0.14282,0.799766,0.272972,0.493233,0.969414,0.558445,0.188276,0.658051,0.446928,0.894302,0.927317,0.63557,0.586856,0.697302,0.502551,0.400407,0.602777,0.626088,0.526039,0.609137,0.298042,0.467776,0.404279,0.745076,0.346115,0.471546,0.325584,0.525745,0.0214533,0.956166,0.528173,0.0237326,0.854685,0.888697,0.251752,0.328094,0.8508,0.571507,0.4347,0.75174,0.697025,0.774301,0.141651,0.433435,0.179218,0.0613499,0.8128,0.365506,0.59203,0.79196,0.657154,0.222563,0.742798,0.327028,0.573528,0.213401,0.279216,0.691727,0.535038,0.887794,0.312904,0.768728,0.437351,0.87786,0.761312,0.062993,0.0686446,0.0830084,0.834776,0.0975977,0.846611,0.0957665,0.968301,0.885768,0.41434,0.66654,0.477008,0.607373,0.218305,0.309017,0.358458,0.790376,0.330236,0.867688,0.753432,0.414239,0.406006,0.0409601,0.322402,0.852097,0.726771,0.9619,0.00356865,0.176021,0.977992,0.0971875,0.31076,0.816292,0.550601,0.317866,0.740297,0.188625,0.101399,0.631148,0.745034,0.420131,0.701877,0.851991,0.314101,0.452564,0.768643,0.470517,0.4256,0.820484,0.120727,0.811236,0.699452,0.764106,0.842215,0.530801,0.889436,0.318636,0.85528,0.19948,0.169626,0.576655,0.920873,0.442807,0.468711,0.783317,0.300949,0.636504,0.1729,0.605115,0.794142,0.554188,0.347857,0.657516,0.334044,0.0910474,0.994137,0.414636,0.29057,0.786973,0.474547,0.372812,0.826013,0.987576,0.05849,0.868061,0.288441,0.617126,0.784416,0.947909,0.580865,0.274554,0.700334,0.643186,0.279647,0.068265,0.957732,0.590287,0.100336,0.74801,0.646662,0.47975,0.0285377,0.427601,0.0629145,0.36023,0.551744,0.596704,0.238923,0.124062,0.804132,0.246871,0.145311,0.664271,0.694637,0.885145,0.47637,0.131034,0.813487,0.306468,0.950408,0.412244,0.403331,0.112087,0.0818279,0.773876,0.525082,0.552157,0.877583,0.803523,0.211476,0.925397,0.0867144,0.921156,0.0216879,0.239893,0.481814,0.0786151,0.637263,0.349911,0.947392,0.274919,0.939395,0.118874,0.339418,0.569837,0.401097,0.234489,0.818976,0.404706,0.117434,0.885934,0.256354,0.703462,0.711103,0.0914841,0.370855,0.429387,0.980583,0.404538,0.40267,0.629688,0.43522,0.0749032,0.837741,0.567689,0.930657,0.982218,0.794751,0.965142,0.681449,0.0482452,0.886061,0.836774,0.543043,0.897137,0.651126,0.777318,0.753628,0.968623,0.907327,0.823805,0.436225,0.735728,0.391232,0.93371,0.87556,0.933179,0.0631581,0.733267,0.959619,0.393306,0.21816,0.358216,0.791671,0.199241,0.660282,0.806332,0.19969,0.738872,0.470951,0.861664,0.750857,0.226807,0.909574,0.516707,0.137344,0.149931,0.313928,0.92114,0.298042,0.332602,0.235914,0.479481,0.991962,0.664418,0.687267,0.798034,0.345809,0.157793,0.737354,0.0238181,0.33483,0.961046,0.431431,0.364329,0.107294,0.595786,0.777235,0.830531,0.42153,0.0755576,0.552203,0.94517,0.405086,0.455656,0.0464904,0.595792,0.46308,0.603182,0.536708,0.0127978,0.527017,0.374736,0.881897,0.65871,0.0830758,0.578511,0.776025,0.0687363,0.950883,0.20277,0.951544,0.567887,0.5728,0.714083,0.622346,0.155457,0.0985509,0.29777,0.921872,0.960915,0.445998,0.475502,0.602717,0.0150708,0.380607,0.0754175,0.045543,0.820837,0.523719,0.933054,0.850404,0.637022,0.558514,0.794941,0.678463,0.814836,0.0303982,0.838558,0.744824,0.15979,0.358633,0.0579112,0.546571,0.172962,0.109235,0.198054,0.863862,0.891184,0.893103,0.668737,0.772542,0.205034,0.865703,0.526838,0.782569,0.680509,0.10294,0.0749053,0.167256,0.13206,0.550875,0.969752,0.472912,0.942009,0.702402,0.522761,0.635754,0.28155,0.282122,0.0611222,0.999684,0.823291,0.183721,0.337319,0.976395,0.442939,0.961789,0.132974,0.247076,0.636059,0.329239,0.468498,0.538578,0.20887,0.603633,0.0573276,0.0678054,0.695118,0.584993,0.29887,0.0677684,0.896464,0.657983,0.908765,0.710544,0.205301,0.733983,0.335921,0.857753,0.981199,0.344534,0.319832,0.955553,0.722675,0.289095,0.439103,0.879891,0.0487434,0.0549197,0.503458,0.689178,0.0103952,0.925757,0.917025,0.317293,0.188134,0.732693,0.578835,0.319456,0.406797,0.739352,0.497201,0.930761,0.00750697,0.274879,0.121378,0.22347,0.957916,0.354101,0.630282,0.272133,0.468749,0.605848,0.424656,0.705298,0.351994,0.844126,0.030746,0.0164119,0.101266,0.420363,0.556073,0.718711,0.904046,0.716587,0.0132613,0.586703,0.460373,0.118976,0.627416,0.603797,0.301935,0.181958,0.256466,0.236343,0.817162,0.632984,0.215582,0.844026,0.924869,0.484549,0.639848,0.798879,0.209337,0.700149,0.226052,0.260342,0.232096,0.26599,0.892354,0.978247,0.79302,0.664488,0.938243,0.193976,0.993213,0.192381,0.919447,0.549385,0.214236,0.881109,0.698202,0.428714,0.856032,0.888002,0.496862,0.375432,0.0465784,0.450331,0.877029,0.616375,0.602062,0.678013,0.475378,0.0593985,0.465908,0.223395,0.493983,0.832909,0.00309128,0.5915,0.789965,0.130885,0.909794,0.928517,0.432176,0.936963,0.453072,0.470519,0.105694,0.166185,0.685733,0.925704,0.708286,0.455749,0.4266,0.888602,0.234295,0.274518,0.916087,0.948324,0.949256,0.266794,0.0948642,0.565472,0.0871071,0.831139,0.408184,0.123708,0.10301,0.201301,0.379668,0.193857,0.847126,0.669663,0.0366811,0.752065,0.984414,0.750659,0.910059,0.425141,0.905648,0.400571,0.272798,0.371991,0.126598,0.62662,0.869718,0.916407,0.218052,0.261664,0.590065,0.139896,0.846112,0.831897,0.115941,0.223939,0.151518,0.404228,0.976098,0.820565,0.844642,0.43231,0.89928,0.185223,0.970849,0.100308,0.45479,0.624604,0.56308,0.597049,0.287288,0.762073,0.827828,0.0278113,0.628317,0.758462,0.366818,0.0875865,0.0186994,0.388254,0.0583402,0.38597,0.456517,0.528082,0.666065,0.260749,0.857077,0.766108,0.845932,0.947604,0.461216,0.853427,0.496063,0.802679,0.458437,0.621731,0.579681,0.971695,0.280854,0.542999,0.182871,0.579005,0.698939,0.499236,0.434706,0.620397,0.796556,0.203384,0.914672,0.540109,0.92387,0.730232,0.783222,0.422829,0.856719,0.909857,0.42982,0.467708,0.604506,0.683411,0.976947,0.774123,0.461964,0.662217,0.163526,0.0267347,0.202087,0.462483,0.77933,0.358073,0.67152,0.404631,0.573335,0.831424,0.610814,0.287401,0.281603,0.467402,0.665573,0.962254,0.0241576,0.421982,0.156576,0.601208,0.269968,0.877181,0.466937,0.234282,0.225518,0.89274,0.0102772,0.03536,0.0989273,0.590467,0.158567,0.0812974,0.293471,0.272134,0.014076,0.129692,0.805673,0.713983,0.83374,0.508258,0.0426632,0.271163,0.957858,0.93163,0.849365,0.596833,0.18163,0.44593,0.624235,0.891094,0.166855,0.00709224,0.371431,0.435537,0.973031,0.516085,0.937782,0.610418,0.231735,0.213357,0.13842,0.0528582,0.0156285,0.356333,0.35713,0.410719,0.607974,0.107948,0.663119,0.617485,0.631113,0.77904,0.810039,0.568283,0.271215,0.113398,0.280032,0.0290449,0.876142,0.329461,0.0314736,0.724005,0.0314041,0.531926,0.260504,0.426327,0.769487,0.433889,0.144256,0.162082,0.708334,0.467109,0.839575,0.0713171,0.23711,0.727655,0.279961,0.472873,0.626043,0.0929132,0.985717,0.670668,0.465741,0.61229,0.0454374,0.891419,0.817875,0.163192,0.8181,0.370475,0.987715,0.523673,0.156225,0.545569,0.965692,0.305988,0.525052,0.477347,0.652548,0.692684,0.129286,0.8405,0.258697,0.957089,0.166687,0.446313,0.991717,0.161105,0.446722,0.0178356,0.832928,0.0502449,0.702787,0.660662,0.734481,0.799715,0.82748,0.185448,0.723989,0.331456,0.702619,0.560886,0.366539,0.660898,0.962329,0.420263,0.343928,0.00257301,0.482341,0.441313,0.528851,0.714641,0.752877,0.500608,0.167757,0.0491424,0.225832,0.498845,0.558313,0.551932,0.907047,0.624079,0.80183,0.537486,0.0253681,0.600481,0.320048,0.140466,0.876566,0.792784,0.539969,0.848647,0.0615087,0.118577,0.69399,0.79781,0.733593,0.485821,0.7905,0.0153096,0.424469,0.391549,0.956271,0.11239,0.242426,0.815808,0.605083,0.621899,0.803944,0.840337,0.933249,0.488067,0.966999,0.576391,0.812099,0.0818396,0.702036,0.385998,0.325369,0.869472,0.815743,0.397949,0.289254,0.747325,0.699021,0.863977,0.750435,0.295869,0.687082,0.700604,0.635927,0.099928,0.783318,0.0704896,0.489726,0.880406,0.613983,0.799132,0.791272,0.996481,0.0323997,0.909485,0.537231,0.920424,0.900558,0.236938,0.952202,0.464585,0.876955,0.0299102,0.420241,0.514846,0.204015,0.00673431,0.417915,|0.965988,0.165633,0.442065,0.541395,0.376237,0.922415,0.586254,0.597084,0.840373,0.70999,0.0518849,0.316468,0.978229,0.983396,0.190856,0.0221295,0.263072,0.962099,0.486805,0.279175,0.141606,0.456921,0.535739,0.596816,0.722958,0.2945,0.201214,0.13276,0.865495,0.686668,0.896424,0.39535,0.418154,0.583007,0.197381,0.239767,0.544172,0.558119,0.150454,0.410083,0.291229,0.992015,0.700215,0.000468612,0.129596,0.399102,0.904325,0.0465296,0.502679,0.385022,0.452873,0.84994,0.728629,0.3988,0.377035,0.0300605,0.355289,0.811284,0.467081,0.845377,0.495422,0.458683,0.450441,0.263795,0.374977,0.0552279,0.210386,0.181135,0.462246,0.208498,0.542239,0.362505,0.889935,0.255733,0.803359,0.809776,0.423803,0.0836248,0.0471514,0.00938541,0.588536,0.13449,0.758406,0.953001,0.0960009,0.260083,0.0882136,0.164755,0.780883,0.511746,0.675753,0.803189,0.736938,0.829043,0.986783,0.416055,0.552404,0.136509,0.687881,0.253783,0.325905,0.912383,0.685537,0.261125,0.581977,0.316914,0.437621,0.190186,0.717603,0.317386,0.906223,0.195587,0.122386,0.144194,0.628161,0.219723,0.432051,0.00239068,0.76576,0.449601,0.205723,0.796771,0.1401,0.580873,0.096347,0.0706696,0.819058,0.131061,0.281025,0.978582,0.750766,0.584523,0.924374,0.572457,0.256875,0.709093,0.48327,0.852374,0.617381,0.768311,0.334671,0.222239,0.491621,0.695019,0.850336,0.884559,0.357679,0.013731,0.123462,0.987998,0.829175,0.095145,0.180234,0.659396,0.0509387,0.16218,0.394495,0.130009,0.538025,0.0679523,0.526532,0.859495,0.308365,0.577434,0.804139,0.830932,0.724282,0.119748,0.253368,0.736851,0.777861,0.108016,0.00972944,0.412957,0.540197,0.409904,0.745906,0.738983,0.22799,0.738725,0.225284,0.306831,0.854181,0.529909,0.0911328,0.925036,0.959268,0.482744,0.0219842,0.204403,0.25259,0.787721,0.708063,0.714326,0.461899,0.153701,0.410775,0.271243,0.817802,0.770745,0.869042,0.731654,0.841989,0.586332,0.437044,0.175292,0.846489,0.444864,0.589256,0.840356,0.716163,0.968621,0.780414,0.672275,0.407658,0.408344,0.733455,0.42987,0.980849,0.10849,0.827552,0.715344,0.284611,0.894269,0.868602,0.77257,0.148293,0.438268,0.845984,0.215541,0.987633,0.120904,0.369088,0.352184,0.238425,0.230783,0.854378,0.0908945,0.0664592,0.901444,0.519187,0.798734,0.886632,0.983869,0.0622305,0.184225,0.976466,0.685357,0.820243,0.311965,0.412392,0.200958,0.366249,0.728827,0.968919,0.675437,0.0908396,0.291854,0.326238,0.506481,0.964304,0.905809,0.398374,0.225375,0.396267,0.409431,0.386255,0.240031,0.899002,0.410333,0.645987,0.704087,0.643906,0.830405,0.988171,0.786956,0.974901,0.153975,0.655166,0.915724,0.576145,0.318378,0.162998,0.191456,0.268535,0.949543,0.322923,0.999901,0.605849,0.319986,0.474477,0.433476,0.58735,0.570552,0.385911,0.0554265,0.879563,0.284088,0.427415,0.980833,0.954512,0.359861,0.777182,0.98285,0.617425,0.902348,0.989263,0.190236,0.489308,0.613358,0.398394,0.93083,0.70046,0.396798,0.889307,0.268196,0.693295,0.0442035,0.446979,0.143436,0.428559,0.013381,0.673395,0.593043,0.357835,0.0333306,0.215249,0.86738,0.555005,0.269248,0.565994,0.378951,0.573061,0.0076496,0.93123,0.373449,0.566337,0.80576,0.275404,0.948522,0.0661204,0.553366,0.373921,0.444982,0.476898,0.351517,0.846022,0.198088,0.641934,0.67462,0.186629,0.402382,0.769339,0.535161,0.565421,0.280213,0.429831,0.16965,0.0141914,0.902582,0.268087,0.0752434,0.225686,0.995719,0.67709,0.552752,0.828301,0.0083434,0.093967,0.508417,0.582468,0.330473,0.0919221,0.801135,0.398171,0.705546,0.137091,0.939968,0.405726,0.171219,0.318841,0.534133,0.859476,0.0686123,0.794485,0.473654,0.307364,0.896548,0.0170083,0.577808,0.59277,0.873972,0.728074,0.334773,0.6912,0.0464106,0.598651,0.490321,0.57309,0.545895,0.0394499,0.15008,0.412603,0.562248,0.766853,0.920066,0.595415,0.752429,0.918624,0.0939698,0.945417,0.0912138,0.785661,0.113644,0.904697,0.150585,0.679116,0.00834143,0.396509,0.618077,0.39738,0.529325,0.930024,0.206111,0.498964,0.782534,0.0752198,0.900577,0.875013,0.547434,0.38756,0.0176239,0.125008,0.268858,0.712075,0.237528,0.390449,0.568733,0.897344,0.110836,0.425987,0.594835,0.720937,0.454917,0.0435801,0.726554,0.966482,0.33341,0.329608,0.256889,0.742987,0.824375,0.529024,0.951689,0.697488,0.344828,0.319834,0.837469,0.710906,0.912911,0.880038,0.338123,0.334852,0.593275,0.675228,0.599479,0.63984,0.407516,0.098761,0.773168,0.419752,0.600139,0.495503,0.828349,0.216496,0.843177,0.668927,0.751281,0.674568,0.444452,0.540093,0.731986,0.279156,0.840641,0.595427,0.900773,0.756925,0.56931,0.197833,0.0843654,0.82901,0.887821,0.435372,0.110414,0.100984,0.808677,0.936289,0.0109363,0.0967876,0.154128,0.643443,0.83683,0.261306,0.988161,0.973912,0.15838,0.911699,0.192838,0.288538,0.679539,0.0463346,0.133962,0.832216,0.578375,0.617561,0.91073,0.936506,0.352134,0.647333,0.446095,0.29036,0.356984,0.0290656,0.236264,0.244099,0.738574,0.740265,0.5904,0.749904,0.729556,0.427165,0.109587,0.216945,0.448653,0.742018,0.359284,0.271386,0.922626,0.768565,0.309867,0.922678,0.0784963,0.61454,0.0249521,0.0549349,0.436152,0.873516,0.581316,0.737479,0.00148565,0.23149,0.866055,0.506818,0.575044,0.973887,0.256188,0.291986,0.7339,0.631151,0.364145,0.9074,0.858883,0.158761,0.927887,0.255126,0.996448,0.916222,0.013083,0.520218,0.26336,0.735318,0.0746192,0.886183,0.759589,0.341316,0.47319,0.464926,0.95936,0.911093,0.191949,0.652459,0.525237,0.734023,0.691158,0.799446,0.636523,0.0635541,0.748744,0.426166,0.53884,0.856057,0.459458,0.907843,0.22377,0.956542,0.514308,0.353734,0.843122,0.399151,0.47507,0.0189911,0.861592,0.838393,0.335586,0.0118278,0.959792,0.260234,0.466272,0.275065,0.0858524,0.581276,0.537471,0.0663815,0.669164,0.217148,0.762999,0.898753,0.728641,0.327219,0.359997,0.366133,0.713293,0.419603,0.00127774,0.114071,0.969656,0.314115,0.383781,0.772203,0.764159,0.55293,0.182661,0.0772695,0.490336,0.971675,0.452374,0.501424,0.0818782,0.0986177,0.123114,0.273089,0.333275,0.184776,0.919768,0.571862,0.0157109,0.379579,0.832161,0.100803,0.852207,0.000477612,0.0528157,0.49227,0.920097,0.111603,0.484531,0.414117,0.0441025,0.422738,0.755075,0.901862,0.554846,0.92164,0.936212,0.911105,0.491814,0.577907,0.313565,0.931602,0.561722,0.792747,0.998121,0.105403,0.290375,0.608669,0.616504,0.389649,0.895778,0.565574,0.352059,0.648871,0.922579,0.64963,0.843573,0.0936522,0.500436,0.449032,0.560707,0.517632,0.052696,0.173846,0.944182,0.77609,0.492275,0.365034,0.54666,0.478083,0.106662,0.123259,0.587717,0.906744,0.87141,0.64592,0.465766,0.371247,0.218325,0.774926,0.258625,0.527399,0.46439,0.898187,2.98023e-06,0.577314,0.159378,0.464536,0.843401,0.219644,0.621413,0.514088,0.605863,0.253954,0.798016,0.00786555,0.0395288,0.117922,0.718592,0.958401,0.607339,0.705819,0.649548,0.253365,0.613616,0.662707,0.770626,0.945663,0.692426,0.727692,0.569204,0.192631,0.711611,0.13124,0.347868,0.344159,0.469216,0.565014,0.0793943,0.460419,0.907019,0.584554,0.663831,0.660282,0.104433,0.949999,0.0424749,0.905515,0.378676,0.48011,0.707298,0.796838,0.335241,0.318904,0.880905,0.219132,0.18966,0.764862,0.874331,0.585851,0.885177,0.140548,0.211929,0.184988,0.429836,0.656346,0.772515,0.38756,0.707594,0.0550164,0.0898726,0.426847,0.494822,0.980498,0.866892,0.170468,0.513705,0.812855,0.869827,0.655182,0.943356,0.0331277,0.630508,0.749664,0.00925392,0.978232,0.935535,0.105391,0.434226,0.0441839,0.254261,0.840665,0.138554,0.260052,0.232923,0.286644,0.397148,0.384076,0.527794,0.395892,0.246835,0.698133,0.819328,0.1053,0.0347708,0.24619,0.0918844,0.985495,0.646111,0.535731,0.740049,0.0814056,0.0430554,0.075622,0.966477,0.0601628,0.786036,0.135153,0.638238,0.422532,0.845025,0.292194,0.335853,0.131167,0.992305,0.580307,0.289408,0.790204,0.747958,0.597615,0.0251577,0.324288,0.440879,0.368594,0.528268,0.920901,0.790733,0.822923,0.302751,0.531658,0.31172,0.656843,0.279376,0.840248,0.108557,0.102177,0.0863208,0.56357,0.450437,0.782862,0.00175285,0.426431,0.912562,0.734044,0.983712,0.368273,0.79174,0.599595,0.303196,0.297887,0.155367,0.608291,0.650093,0.39116,0.370616,0.274188,0.787465,0.384747,0.9638,0.544754,0.218158,0.407228,0.485582,0.737203,0.627014,0.062181,0.733393,0.625638,0.338745,0.419967,0.422031,0.594885,0.353269,0.847783,0.219857,0.876468,0.614476,0.125929,0.803858,0.931128,0.715099,0.913951,0.147918,0.967791,0.95267,0.583289,0.89851,0.434992,0.272047,0.188406,0.293601,0.939108,0.018173,0.816725,0.775475,0.359977,0.3998,0.106556,0.361633,0.614006,0.47719,0.868145,0.546323,0.249178,0.893242,0.785786,0.923808,0.320577,0.485535,0.129958,0.245274,0.1239,0.744256,0.106889,0.256086,0.812984,0.701983,0.306894,0.0285876,0.413381,0.559713,0.766142,0.167175,0.425721,0.534543,0.633237,0.0713649,0.265744,0.937901,0.960482,0.982677,0.910393,0.855286,0.303829,0.0180246,0.915492,0.582447,0.478992,0.663731,0.0480608,0.649128,0.195113,0.704912,0.15239,0.809077,0.115875,0.446905,0.172891,0.293524,0.617401,0.376787,0.696749,0.636128,0.0609624,0.831497,0.1144,0.095732,0.526088,0.313638,0.460319,0.46828,0.242365,0.611302,0.637935,0.43982,0.790031,0.19132,0.498109,0.542596,0.781401,0.337362,0.912979,0.707027,0.934849,0.56752,0.976761,0.28624,0.253035,0.940774,0.33069,0.0431035,0.516347,0.72475,|0.62593,0.179511,0.460442,0.779263,0.0332847,0.604918,0.68998,0.0146113,0.47938,0.467777,0.75659,0.201378,0.40258,0.262877,0.96366,0.825149,0.841249,0.940984,0.891466,0.0533354,0.900869,0.765935,0.23601,0.452526,0.903575,0.559474,0.877431,0.43402,0.822772,0.708405,0.931849,0.718889,0.111893,0.778137,0.626851,0.271216,0.874689,0.532033,0.325373,0.816497,0.972823,0.91208,0.34926,0.881106,0.892478,0.204506,0.629336,0.340701,0.831934,0.510271,0.979168,0.275113,0.508891,0.273903,0.311252,0.304655,0.300861,0.225703,0.636736,0.543364,0.627811,0.681405,0.709855,0.533441,0.409521,0.0488313,0.732958,0.322248,0.823818,0.217738,0.21561,0.369977,0.726166,0.987528,0.355677,0.962649,0.524696,0.607281,0.622554,0.779799,0.328321,0.019851,0.621571,0.835082,0.17928,0.648291,0.643512,0.33247,0.448679,0.486809,0.504101,0.936321,0.175064,0.284382,0.58321,0.876043,0.528709,0.0684226,0.648699,0.198784,0.95119,0.384461,0.207076,0.668782,0.0405799,0.975849,0.00120944,0.157383,0.314974,0.364756,0.155981,0.0790273,0.151605,0.267726,0.354274,0.690354,0.372341,0.724397,0.351695,0.572069,0.932532,0.445426,0.372899,0.833618,0.982702,0.0911477,0.187027,0.854031,0.514483,0.837224,0.685991,0.884721,0.264807,0.255329,0.938118,0.432119,0.335504,0.54821,0.919925,0.439539,0.220195,0.831862,0.831729,0.296271,0.287669,0.237759,0.685166,0.251761,0.308558,0.982715,0.410707,0.943083,0.409014,0.439729,0.798177,0.820062,0.128264,0.209236,0.571242,0.629171,0.511806,0.341598,0.954917,0.734923,0.0743722,0.617095,0.857635,0.0752358,0.228232,0.33651,0.426134,0.478617,0.0110661,0.434117,0.490254,0.762833,0.068735,0.163988,0.423976,0.593967,0.953208,0.335271,0.777971,0.842849,0.474257,0.562539,0.102076,0.0870017,0.312324,0.762914,0.606097,0.936184,0.677132,0.93809,0.774347,0.21475,0.776073,0.158478,0.337193,0.72062,0.363241,0.723382,0.840831,0.146173,0.502466,0.698529,0.410802,0.148265,0.0035376,0.0232331,0.2076,0.561908,0.249939,0.277236,0.011553,0.981353,0.995245,0.994768,0.187045,0.457879,0.234917,0.447647,0.304251,0.514873,0.553377,0.752571,0.327279,0.347068,0.898989,0.124307,0.464509,0.846228,0.266329,0.675575,0.473389,0.983893,0.2001,0.362429,0.11334,0.0855039,0.266661,0.454573,0.0415685,0.0448047,0.0380575,0.118718,0.319995,0.656604,0.746382,0.768632,0.0659847,0.87511,0.644077,0.91602,0.0246645,0.595065,0.87381,0.406369,0.601671,0.00685138,0.555881,0.7798,0.548396,0.360447,0.811208,0.715823,0.615037,0.640039,0.258927,0.270954,0.0658795,0.270442,0.429416,0.337667,0.794599,0.501561,0.08363,0.941555,0.999043,0.637004,0.813615,0.833751,0.266944,0.820469,0.619232,0.753576,0.331603,0.542085,0.908971,0.0748266,0.987755,0.0707559,0.896975,0.664342,0.904022,0.0522537,0.00363529,0.386638,0.945564,0.996348,0.0160574,0.719797,0.828206,0.16001,0.495914,0.488208,0.709592,0.0733595,0.506351,0.182145,0.0508671,0.0934108,0.401785,0.745284,0.114878,0.0187832,0.517686,0.0643202,0.812136,0.530343,0.184065,0.53538,0.573225,0.220679,0.974961,0.133831,0.0729828,0.129637,0.670032,0.190141,0.0132959,0.249766,0.909178,0.427612,0.848962,0.679007,0.983156,0.896914,0.889974,0.525772,0.520764,0.893523,0.159425,0.539459,0.486041,0.97326,0.628756,0.849701,0.186996,0.949275,0.52646,0.32292,0.623101,0.0839095,0.512525,0.828685,0.345216,0.838999,0.814062,0.178616,0.212826,0.864948,0.830278,0.691968,0.780969,0.323706,0.599376,0.145678,0.537142,0.0957234,0.422908,0.082342,0.670055,0.0368192,0.680231,0.770665,0.727902,0.198662,0.482613,0.415441,0.590512,0.514075,0.0412147,0.676296,0.788907,0.21153,0.692881,0.552823,0.558042,0.739789,0.691851,0.248759,0.301466,0.0782771,0.693914,0.851212,0.515129,0.712439,0.0977091,0.272137,0.528169,0.493409,0.741169,0.0271956,0.388418,0.210231,0.714633,0.557995,0.163276,0.0864385,0.264018,0.939931,0.906333,0.110301,0.520294,0.180389,0.970556,0.461874,0.0785117,0.276186,0.5426,0.604463,0.630101,0.254517,0.474227,0.660472,0.832529,0.0189659,0.227687,0.604652,0.523112,0.655068,0.900978,0.364381,0.306632,0.549358,0.109429,0.0545411,0.253112,0.126201,0.244093,0.379945,0.534213,0.392792,0.724504,0.96414,0.235326,0.698374,0.146834,0.204723,0.0666491,0.682514,0.383087,0.665106,0.252308,0.0289122,0.851039,0.652854,0.97768,0.28678,0.229827,0.0518641,0.915238,0.444664,0.399498,0.727664,0.395342,0.276965,0.253365,0.45634,0.200519,0.288532,0.924545,0.205737,0.554367,0.72802,0.837369,0.780294,0.718423,0.392912,0.387745,0.501001,0.205907,0.987915,0.15801,0.212,0.924043,0.530634,0.0842682,0.832056,0.16115,0.403814,0.593027,0.224294,0.421446,0.444963,0.357702,0.68559,0.679711,0.167409,0.557355,0.204093,0.340977,0.403709,0.743044,0.197279,0.377896,0.33027,0.701221,0.281931,0.071708,0.778598,0.245021,0.227367,0.45615,0.0649744,0.78871,0.924322,0.621677,0.87229,0.151606,0.94401,0.168622,0.253776,0.497144,0.250726,0.562539,0.236259,0.939333,0.226952,0.82627,0.900867,0.246919,0.659691,0.810041,0.00230163,0.374785,0.764802,0.953023,0.562276,0.199634,0.266801,0.977362,0.737859,0.376375,0.795155,0.557203,0.374316,0.120625,0.173084,0.68121,0.00126529,0.064316,0.863085,0.468008,0.80094,0.330086,0.981507,0.898204,0.0954093,0.952087,0.560296,0.527195,0.967999,0.729105,0.203984,0.950228,0.420247,0.538206,0.595282,0.527447,0.998488,0.0867606,0.728423,0.165888,0.284016,0.00945115,0.857841,0.534479,0.190463,0.879167,0.64571,0.833019,0.452635,0.913479,0.684282,0.54328,0.723257,0.95572,0.125286,0.165321,0.688297,0.698223,0.428858,0.353066,0.055372,0.134982,0.380737,0.326844,0.781708,0.790247,0.125139,0.245467,0.985415,0.882509,0.724598,0.149539,0.975594,0.723148,0.653027,0.397204,0.246251,0.363766,0.89154,0.929964,0.0434616,0.356367,0.0663639,0.203131,0.545272,0.605104,0.749838,0.712842,0.840709,0.06197,0.186693,0.432776,0.633216,0.271753,0.361303,0.103729,0.0553538,0.728609,0.8054,0.817717,0.867157,0.77609,0.0233388,0.63005,0.173086,0.891008,0.607646,0.0949622,0.283822,0.240909,0.71981,0.713177,0.369778,0.552742,0.18568,0.525944,0.234434,0.285708,0.698317,0.134527,0.38435,0.571156,0.766023,0.352384,0.387621,0.859927,0.848358,0.711788,0.840282,0.122801,0.995555,0.352129,0.239115,0.844771,0.0784039,0.998633,0.765182,0.298639,0.027985,0.711019,0.747779,0.797241,0.062719,0.835524,0.731741,0.223678,0.182577,0.0189516,0.2379,0.644831,0.531719,0.0627136,0.0967867,0.463359,0.100007,0.667062,0.70415,0.86625,0.976627,0.107671,0.702258,0.575103,0.983436,0.372796,0.393031,0.599974,0.0630363,0.270103,0.480814,0.551485,0.910272,0.977987,0.419862,0.915264,0.836138,0.595764,0.695615,0.949181,0.420504,0.844581,0.497097,0.33105,0.28449,0.386486,0.801698,0.481948,0.173401,0.273703,0.359465,0.148296,0.509142,0.262228,0.803657,0.770476,0.411036,0.579686,0.130123,0.414874,0.549002,0.765152,0.85253,0.649742,0.525365,0.625881,0.957171,0.432593,0.165987,0.878971,0.294142,0.419228,0.460021,0.328896,0.471706,0.443213,0.867418,0.0843044,0.890519,0.648156,0.158138,0.554541,0.997441,0.398264,0.513615,0.907643,0.136565,0.315295,0.769003,0.0150179,0.547406,0.192766,0.00175238,0.962309,0.404293,0.361359,0.345304,0.446379,0.952151,0.233942,0.556849,0.0524377,0.377475,0.987086,0.0286716,0.879708,0.89901,0.191322,0.517545,0.304189,0.102522,0.64434,0.414313,0.190707,0.652446,0.816162,0.262887,0.503552,0.291247,0.753227,0.260864,0.744257,0.692458,0.426504,0.234823,0.0773811,0.0723013,0.871754,0.202949,0.349171,0.75731,0.626812,0.795252,0.665009,0.216495,0.271999,0.432133,0.288137,0.809515,0.274092,0.932765,0.301658,0.159987,0.323748,0.169986,0.388493,0.454831,0.160342,0.842425,0.644603,0.387724,0.742657,0.598962,0.3405,0.933267,0.608859,0.577769,0.684093,0.145804,0.948648,0.836211,0.395966,0.565225,0.988646,0.474862,0.37492,0.060065,0.456082,0.146148,0.528921,0.664159,0.58161,0.396276,0.878759,0.043937,0.397415,0.976733,0.136905,0.90536,0.991356,0.332139,0.0785939,0.0569628,0.428642,0.128726,0.00881964,0.606068,0.283701,0.475151,0.529682,0.401221,0.973131,0.00990003,0.806066,0.736625,0.347051,0.85191,0.490313,0.10449,0.537046,0.130384,0.037389,0.150908,0.721164,0.416252,0.111779,0.725112,0.144638,0.13699,0.308514,0.465544,0.189138,0.758319,0.930165,0.402783,0.678639,0.460522,0.32397,0.606262,0.584912,0.495068,0.751281,0.469392,0.981114,0.20512,0.15765,0.75902,0.553053,0.580857,0.81811,0.13562,0.335872,0.535706,0.397979,0.105526,0.369933,0.281286,0.180152,0.934234,0.118793,0.537541,0.6727,0.475783,0.215237,0.42884,0.268682,0.724053,0.941782,0.585829,0.41725,0.503005,0.823947,0.509156,0.868458,0.645531,0.0667179,0.621015,0.507155,0.576665,0.0935349,0.075667,0.959601,0.176498,0.845237,0.550891,0.700486,0.0518478,0.693937,0.64194,0.862054,0.727359,0.927332,0.111232,0.551396,0.600347,0.207047,0.237937,0.126764,0.983739,0.19111,0.874575,0.889049,0.338871,0.414511,0.919775,0.114815,0.0681769,0.0164758,0.0581822,0.153107,0.603987,0.627739,0.319776,0.181913,0.314998,0.798113,0.47488,0.656747,0.124543,0.465706,0.76354,0.122217,0.683114,0.16323,0.988057,0.946243,0.483149,0.632134,0.0248289,0.161686,0.293512,0.724258,0.815619,0.89737,0.178531,0.0783831,0.562016,0.303046,0.228834,0.2583,0.447213,0.798034,0.78696,0.625065,0.262286,0.615266,0.481801,|0.893485,0.490234,0.795149,0.660594,0.477863,0.929717,0.14233,0.591407,0.848149,0.823829,0.778331,0.150294,0.461766,0.776979,0.354598,0.350256,0.219168,0.24436,0.757609,0.115886,0.156832,0.749143,0.954013,0.983817,0.146879,0.597125,0.768062,0.104352,0.566617,0.0937361,0.0279472,0.452456,0.778244,0.972719,0.841737,0.116197,0.279422,0.699757,0.000958264,0.0967844,0.822459,0.433153,0.531605,0.830458,0.0377852,0.307266,0.411467,0.0100188,0.300304,0.457209,0.382375,0.75099,0.984964,0.423484,0.98199,0.822259,0.179107,0.19532,0.392115,0.131672,0.774304,0.32483,0.586264,0.0186545,0.472424,0.123429,0.144131,0.313258,0.339383,0.184749,0.52294,0.770123,0.960915,0.0175007,0.366852,0.863198,0.999041,0.447698,0.141443,0.999028,0.779398,0.295244,0.0750166,0.632466,0.443787,0.417969,0.171653,0.596696,0.736279,0.968897,0.856181,0.655774,0.211477,0.77942,0.745747,0.158727,0.304336,0.992174,0.637022,0.0647801,0.994215,0.138541,0.779113,0.00996649,0.811618,0.208136,0.893951,0.0361421,0.433038,0.888754,0.546637,0.483361,0.896,0.367975,0.860533,0.316751,0.303891,0.465985,0.720114,0.0295243,0.101609,0.227215,0.733543,0.418009,0.825407,0.955289,0.0674639,0.984989,0.832634,0.514172,0.513978,0.449817,0.316082,0.487092,0.422307,0.14347,0.812264,0.741944,0.62342,0.149465,0.502311,0.347641,0.00578785,0.309815,0.963831,0.156438,0.251127,0.389825,0.19083,0.414816,0.368575,0.825107,0.627169,0.0430806,0.3915,0.421556,0.360748,0.41866,0.0461295,0.533413,0.0170982,0.635037,0.421667,0.985961,0.535778,0.520522,0.436786,0.312465,0.570723,0.768267,0.777846,0.416234,0.882389,0.558207,0.32479,0.937972,0.932685,0.947358,0.367832,0.177943,0.930816,0.344079,0.262736,0.110684,0.690428,0.63768,0.439753,0.879297,0.751469,0.944136,0.931126,0.666031,0.616042,0.439307,0.379103,0.635758,0.44731,0.90887,0.251407,0.667661,0.376645,0.515509,0.0665532,0.758076,0.282466,0.298283,0.416559,0.268618,0.94815,0.859478,0.36516,0.618537,0.560138,0.774768,0.899797,0.328953,0.854794,0.225832,0.00119257,0.0663678,0.290291,0.31681,0.61023,0.654069,0.766325,0.915056,0.747605,0.539074,0.15401,0.921884,0.0381371,0.761302,0.516689,0.803195,0.604987,0.804708,0.371914,0.500372,0.160833,0.668292,0.00275785,0.816195,0.0448948,0.172413,0.639354,0.661762,0.552758,0.958045,0.100957,0.867728,0.667732,0.419823,0.940296,0.240102,0.3619,0.394377,0.484331,0.305745,0.309126,0.838297,0.125329,0.52228,0.832103,0.736658,0.840103,0.318939,0.793914,0.523598,0.693549,0.239139,0.243659,0.837151,0.979923,0.237785,0.64797,0.399679,0.265117,0.207053,0.271587,0.422713,0.284121,0.307801,0.00997972,0.511779,0.950326,0.268909,0.159575,0.468767,0.0215539,0.044956,0.289515,0.33347,0.0288092,0.19695,0.919053,0.649241,0.240434,0.672161,0.472095,0.106398,0.988678,0.536896,0.917912,0.874403,0.781989,0.844878,0.949105,0.622103,0.254597,0.308888,0.181443,0.428079,0.416398,0.695509,0.389705,0.975994,0.884171,0.747631,0.497563,0.528563,0.522182,0.658294,0.534893,0.825276,0.0437831,0.804516,0.764984,0.0392333,0.265892,0.0784993,0.219313,0.906769,0.722837,0.709503,0.619453,0.0754235,0.25312,0.886183,0.631234,0.815561,0.656305,0.529546,0.700765,0.582003,0.944398,0.986312,0.145787,0.240355,0.392073,0.207899,0.448916,0.42967,0.274125,0.277964,0.371412,0.838815,0.328515,0.209981,0.463669,0.970626,0.717189,0.208741,0.688733,0.150739,0.339042,0.939232,0.616559,0.541632,0.766561,0.861672,0.34342,0.608562,0.0457934,0.618724,0.0216496,0.302987,0.980548,0.356871,0.428277,0.418713,0.451488,0.758561,0.722824,0.22736,0.0303026,0.028493,0.891527,0.810019,0.602152,0.512459,0.596468,0.576258,0.744166,0.689088,0.346588,0.349699,0.768201,0.466171,0.413646,0.656994,0.444555,0.0578121,0.306333,0.439623,0.570939,0.702899,0.553444,0.241893,0.688068,0.863505,0.425696,0.266627,0.945265,0.474457,0.614262,0.260459,0.084253,0.881864,0.159183,0.0412126,0.11704,0.509824,0.356862,0.752123,0.452412,0.566658,0.863026,0.726848,0.81546,0.346358,0.324108,0.241526,0.525432,0.613631,0.0678833,0.440178,0.93702,0.818436,0.612459,0.365836,0.0285245,0.00658894,0.0617639,0.882685,0.419855,0.0612552,0.173421,0.679528,0.890085,0.633562,0.0426182,0.1351,0.712803,0.821399,0.836705,0.78733,0.117718,0.588452,0.152727,0.682837,0.713054,0.909196,0.235621,0.471042,0.198769,0.902747,0.155873,0.986274,0.556101,0.105891,0.38509,0.453983,0.93895,0.539179,0.0950281,0.775632,0.385324,0.0338231,0.87686,0.784698,0.506836,0.860027,0.0105777,0.393753,0.69606,0.904732,0.587159,0.758484,0.925012,0.775948,0.0665441,0.167034,0.583082,0.53859,0.382789,0.669454,0.223985,0.303524,0.744819,0.974624,0.51962,0.205527,0.0925672,0.864222,0.822059,0.0339622,0.180004,0.143361,0.0317535,0.486174,0.176913,0.792405,0.806697,0.791732,0.944248,0.815982,0.674865,0.360787,0.377892,0.205082,0.414664,0.777235,0.620275,0.505283,0.871804,0.18437,0.99128,0.372822,0.138529,0.265435,0.0312622,0.218876,0.474173,0.843771,0.63457,0.547285,0.891309,0.952114,0.631155,0.032662,0.552284,0.67081,0.345473,0.0652842,0.757168,0.475338,0.945923,0.0784409,0.927762,0.310436,0.947697,0.632786,0.797006,0.378802,0.687421,0.293868,0.461163,0.793789,0.447374,0.468718,0.158553,0.858423,0.673999,0.0906182,0.37063,0.793489,0.32199,0.669664,0.390897,0.811213,0.57273,0.777676,0.67454,0.00599813,0.800602,0.32172,0.778982,0.858433,0.875112,0.0874276,0.41355,0.630001,0.763738,0.341778,0.366528,0.444609,0.29769,0.0690135,0.0193087,0.171816,0.234044,0.602011,0.266665,0.0839802,0.184574,0.928759,0.191357,0.719573,0.592063,0.0728479,0.765975,0.0992671,0.664812,0.114776,0.933145,0.157215,0.552287,0.873507,0.438981,0.324527,0.916016,0.905681,0.924096,0.530531,0.303737,0.370561,0.989656,0.769508,0.935542,0.806739,0.19962,0.109365,0.604403,0.72372,0.564576,0.35639,0.956432,0.485479,0.0682769,0.914662,0.505,0.7844,0.302087,0.486239,0.0618851,0.193204,0.0521781,0.422698,0.0967234,0.323958,0.915222,0.209191,0.861099,0.203377,0.14994,0.616264,0.697048,0.45445,0.736435,0.140139,0.708392,0.432814,0.496749,0.111743,0.486373,0.188676,0.793764,0.452349,0.345322,0.0260248,0.966725,0.0594853,0.906265,0.0828898,0.803897,0.823984,0.215706,0.276914,0.185182,0.255161,0.341422,0.42401,0.405377,0.40673,0.571312,0.589125,0.0917263,0.599011,0.901307,0.446528,0.784231,0.844418,0.567929,0.259287,0.276511,0.382873,0.510533,0.325183,0.485398,0.232502,0.976832,0.726804,0.42607,0.071869,0.73757,0.457346,0.44033,0.683476,0.585066,0.918622,0.45652,0.803054,0.669261,0.155008,0.140382,0.970755,0.870193,0.35597,0.760233,0.480676,0.164768,0.476644,0.194347,0.959831,0.64515,0.96005,0.453021,0.107215,0.450358,0.946372,0.0457326,0.765548,0.52236,0.119614,0.766091,0.730922,0.220345,0.246629,0.256881,0.119425,0.132651,0.561141,0.217407,0.301994,0.1484,0.895124,0.292636,0.107057,0.374671,0.469578,0.389839,0.76318,0.648594,0.761075,0.428002,0.138651,0.368202,0.130475,0.422758,0.103256,0.0802424,0.976083,0.472231,0.313165,0.660777,0.198483,0.559128,0.35358,0.532848,0.594616,0.975333,0.500503,0.839017,0.256995,0.707241,0.485829,0.0631312,0.613789,0.627359,0.451398,0.331403,0.902148,0.431031,0.148037,0.264255,0.188175,0.248802,0.361354,0.560885,0.676457,0.727259,0.898942,0.78694,0.298052,0.651263,0.939474,0.401647,0.114773,0.963892,0.0332177,0.45813,0.560455,0.473118,0.275639,0.253702,0.946581,0.667067,0.970262,0.19685,0.657188,0.676938,0.808828,0.849845,0.242796,0.149806,0.964203,0.435211,0.258908,0.857858,0.90383,0.471937,0.725251,0.182985,0.656986,0.952454,0.136381,0.0108334,0.873753,0.420136,0.1804,0.368623,0.78202,0.566933,0.254381,0.0636037,0.698676,0.624634,0.233783,0.974948,0.853464,0.258801,0.67452,0.530217,0.451507,0.185355,0.533829,0.351238,0.321349,0.45261,0.638478,0.8179,0.934256,0.191101,0.523696,0.293555,0.609002,0.43212,0.589609,0.425104,0.167519,0.79994,0.77127,0.376182,0.849547,0.00759137,0.211455,0.405237,0.940022,0.444633,0.586132,0.705455,0.634499,0.783285,0.376397,0.837585,0.658746,0.152353,0.795169,0.36447,0.513679,0.188306,0.269978,0.708049,0.0857933,0.0873103,0.0611607,0.782116,0.569429,0.416709,0.345163,0.722759,0.43784,0.576858,0.346279,0.197124,0.640719,0.818661,0.0386308,0.223208,0.543827,0.930349,0.778765,0.658573,0.509219,0.202263,0.708088,0.707065,0.694711,0.178034,0.810235,0.220013,0.132209,0.161872,0.64783,0.127833,0.462866,0.966929,0.481552,0.364362,0.583401,0.0253095,0.352948,0.964816,0.391436,0.511115,0.762091,0.83857,0.432716,0.156384,0.969375,0.5601,0.750867,0.418342,0.282154,0.296663,0.22849,0.378717,0.922745,0.843001,0.222655,0.332012,0.318152,0.340016,0.116393,0.756111,0.139259,0.30894,0.461687,0.637609,0.638829,0.570437,0.678735,0.0198708,0.289687,0.117561,0.508965,0.691031,0.246821,0.915675,0.371464,0.918764,0.709991,0.833569,0.629549,0.326877,0.875193,0.443291,0.932292,0.822049,0.96436,0.871689,0.453498,0.860044,0.769261,0.225427,0.0661353,0.321655,0.357445,0.144088,0.828445,0.0138935,0.169809,0.9094,0.886878,0.747786,0.445928,0.466619,0.777284,0.0761502,0.452848,0.158066,0.0550745,0.684417,0.891421,0.354744,0.408556,0.431467,0.949322,0.446493,0.0738335,0.960854,0.821153,0.944189,0.435569,0.508141,0.876808,0.561752,0.832992,0.898416,0.510083,|0.774916,0.759305,0.461586,0.794841,0.305509,0.766451,0.188598,0.515142,0.804014,0.803759,0.275742,0.384498,0.128431,0.578268,0.893639,0.809836,0.279145,0.878708,0.233937,0.252799,0.909085,0.850535,0.055214,0.915295,0.33515,0.506458,0.672527,0.456384,0.753143,0.735657,0.695917,0.944059,0.911324,0.138267,0.763043,0.100236,0.258193,0.488497,0.359793,0.675867,0.11718,0.425732,0.838816,0.339693,0.911459,0.766682,0.628498,0.0510978,0.893236,0.599649,0.0267123,0.923113,0.535231,0.532683,0.732649,0.706933,0.828085,0.960474,0.743358,0.895285,0.662305,0.147017,0.708203,0.519218,0.960444,0.598285,0.883442,0.942439,0.907734,0.395179,0.919331,0.200298,0.879716,0.554639,0.798337,0.391396,0.893231,0.549921,0.976339,0.184937,0.0204248,0.0843785,0.839107,0.406938,0.423355,0.516614,0.0045768,0.166397,0.496369,0.537932,0.858878,0.132775,0.858615,0.103424,0.699658,0.522767,0.363229,0.289899,0.480961,0.980691,0.89055,0.791841,0.473613,0.168782,0.384536,0.207905,0.876523,0.687632,0.771423,0.0341197,0.510483,0.527631,0.876043,0.564507,0.0752901,0.282673,0.28853,0.836955,0.54549,0.0922917,0.805221,0.891995,0.114495,0.446605,0.691108,0.271446,0.217588,0.731749,0.722376,0.696387,0.632865,0.36007,0.406558,0.627439,0.260655,0.930571,0.642703,0.333428,0.440594,0.591087,0.732813,0.85849,0.363921,0.990699,0.323673,0.00843883,0.973443,0.462973,0.749595,0.354892,0.985911,0.429191,0.817928,0.286979,0.342796,0.609891,0.111166,0.612517,0.832881,0.361055,0.865478,0.080421,0.479501,0.513784,0.4455,0.779021,0.18053,0.805077,0.877871,0.483782,0.651191,0.773214,0.802948,0.0878501,0.899782,0.788376,0.758415,0.0614047,0.561564,0.08247,0.427096,0.166174,0.100669,0.0409663,0.67571,0.670996,0.166253,0.634115,0.517821,0.968775,0.0573198,0.459563,0.235204,0.347716,0.361501,0.0417243,0.609956,0.687256,0.387468,0.406883,0.785856,0.314718,0.688084,0.0264374,0.824796,0.643249,0.0284035,0.817224,0.398888,0.131073,0.177366,0.938562,0.508378,0.170119,0.606034,0.0163938,0.753646,0.794926,0.692562,0.883806,0.657798,0.710626,0.0399005,0.0478726,0.394185,0.918731,0.127926,0.754863,0.984156,0.184287,0.560934,0.605018,0.542997,0.31511,0.879934,0.395415,0.410952,0.127295,0.170552,0.313246,0.0747172,0.165616,0.99551,0.930218,0.262094,0.197249,0.193997,0.788877,0.0986329,0.377338,0.610077,0.130216,0.251196,0.752685,0.118442,0.817525,0.474936,0.533732,0.947807,0.91618,0.567794,0.514713,0.924564,0.626398,0.920742,0.0392429,0.654464,0.806417,0.736092,0.115542,0.337548,0.0146345,0.0689589,0.568454,0.352232,0.512417,0.40929,0.011326,0.85881,0.518309,0.1206,0.468819,0.513535,0.256773,0.699231,0.100169,0.397928,0.133358,0.23062,0.0298381,0.73087,0.523743,0.748179,0.329931,0.869206,0.0547628,0.822358,0.831059,0.0249664,0.986217,0.56681,0.743547,0.365983,0.479169,0.921944,0.900988,0.0319631,0.857904,0.596991,0.126483,0.348006,0.50062,0.519033,0.151793,0.906921,0.652918,0.130214,0.25888,0.951119,0.105286,0.463717,0.260119,0.0194132,0.815005,0.269746,0.824106,0.317519,0.784684,0.997543,0.945011,0.245392,0.863346,0.973775,0.863995,0.0370793,0.269096,0.874667,0.447713,0.0900844,0.30931,0.16638,0.358175,0.450699,0.989281,0.908126,0.305336,0.819903,0.0105636,0.846061,0.213493,0.95818,0.141492,0.533208,0.495004,0.707326,0.355592,0.464909,0.0432116,0.423961,0.426991,0.309529,0.455839,0.962699,0.822793,0.265408,0.894042,0.213405,0.20849,0.442354,0.749481,0.0583963,0.544298,0.565925,0.223046,0.284889,0.194533,0.0283613,0.413682,0.312711,0.826604,0.578835,0.191927,0.980667,0.438544,0.776386,0.648175,0.293349,0.743008,0.828177,0.946069,0.0358423,0.387696,0.120203,0.6592,0.0994716,0.97623,0.409863,0.69706,0.678123,0.714927,0.395925,0.972494,0.959418,0.206225,0.994148,0.934354,0.348187,0.211994,0.822486,0.348056,0.0317429,0.957859,0.121778,0.252859,0.857512,0.901448,0.427523,0.655428,0.0916971,0.767058,0.607799,0.053196,0.916219,0.994147,0.160447,0.72384,0.0963635,0.929842,0.633267,0.981039,0.118211,0.513501,0.999549,0.559424,0.195445,0.152297,0.403253,0.791399,0.297281,0.0460522,0.348315,0.951271,0.331779,0.875774,0.574865,0.783642,0.163644,0.717207,0.523695,0.7502,0.169826,0.27509,0.528439,0.454498,0.823733,0.738831,0.581966,0.524686,0.0737595,0.882287,0.989459,0.767866,0.0292851,0.143943,0.664892,0.240815,0.299472,0.540064,0.337232,0.628896,0.463884,0.0233438,0.138407,0.928845,0.327205,0.444757,0.822914,0.706694,0.396957,0.345902,0.0208773,0.00889069,0.762651,0.512563,0.638199,0.142589,0.846083,0.831238,0.933907,0.795497,0.35772,0.499769,0.881456,0.265355,0.982864,0.753428,0.950368,0.50637,0.942081,0.31636,0.482503,0.226663,0.482834,0.85693,0.604675,0.502265,0.711428,0.104075,0.120797,0.667497,0.473552,0.744471,0.437902,0.58817,0.565051,0.0432947,0.538032,0.546352,0.429745,0.149523,0.048561,0.726142,0.472842,0.0529418,0.0211583,0.541309,0.505045,0.258762,0.0427729,0.957832,0.917279,0.855546,0.812099,0.809477,0.909361,0.0851807,0.0669007,0.108694,0.0726791,0.91265,0.509061,0.693335,0.975553,0.873593,0.376101,0.657778,0.255966,0.375918,0.950371,0.133869,0.978996,0.489999,0.349075,0.326732,0.972591,0.639455,0.177213,0.65463,0.989783,0.521136,0.69143,0.0203271,0.881089,0.684748,0.499156,0.437901,0.0417961,0.570295,0.379532,0.353523,0.563724,0.0209909,0.866984,0.656067,0.975941,0.847422,0.448825,0.444993,0.955927,0.653134,0.613114,0.664088,0.397724,0.29389,0.744214,0.904361,0.278603,0.598058,0.311027,0.597285,0.634537,0.0809656,0.0999309,0.973584,0.18905,0.985847,0.880756,0.118345,0.90407,0.697902,0.459423,0.331474,0.502972,0.0586477,0.449854,0.170107,0.22583,0.118409,0.693589,0.799576,0.593213,0.839907,0.46849,0.835155,0.710173,0.340854,0.387402,0.655168,0.943561,0.634608,0.169976,0.718879,0.424723,0.237854,0.544438,0.254366,0.049349,0.678813,0.673115,0.840999,0.00628924,0.927307,0.870757,0.91893,0.28837,0.318357,0.658153,0.295415,0.172276,0.0121889,0.239954,0.720382,0.16436,0.292985,0.592272,0.00894511,0.736848,0.778694,0.521532,0.438304,0.594779,0.320111,0.253679,0.799797,0.600613,0.0737711,0.576277,0.683637,0.404732,0.33767,0.430158,0.969706,0.135648,0.887957,0.373434,0.00232625,0.697059,0.798518,0.65935,0.679342,0.153818,0.667872,0.141381,0.335589,0.279585,0.252476,0.762643,0.58802,0.581051,0.79771,0.727666,0.61607,0.932594,0.475646,0.200696,0.803483,0.269006,0.870323,0.861565,0.638222,0.0187523,0.48439,0.462456,0.212377,0.410431,0.283825,0.545915,0.349171,0.914861,0.40153,0.0713748,0.491335,0.229536,0.790367,0.600751,0.388632,0.778777,0.703775,0.48286,0.448973,0.64724,0.804293,0.381959,0.143413,0.973968,0.631741,0.627451,0.575595,0.303246,0.0719134,0.00107962,0.613645,0.637539,0.263783,0.989673,0.59842,0.924897,0.282809,0.678508,0.383787,0.449231,0.463589,0.465341,0.924072,0.141209,0.256391,0.134898,0.543323,0.0507594,0.458723,0.391216,0.35863,0.258483,0.19971,0.823334,0.498515,0.533807,0.95498,0.281393,0.75367,0.24518,0.861068,0.416709,0.876021,0.0911362,0.772465,0.812937,0.382578,0.849483,0.195337,0.250974,0.0177897,0.572072,0.415358,0.857395,0.419493,0.407396,0.227279,0.540634,0.0313519,0.820645,0.00803173,0.776752,0.452946,0.229967,0.401859,0.0927635,0.234758,0.594356,0.522928,0.93081,0.381718,0.21309,0.0960191,0.709941,0.92244,0.471264,0.994782,0.810245,0.300884,0.530617,0.396833,0.698169,0.823975,0.664822,0.823886,0.685385,0.292506,0.153035,0.317256,0.0185577,0.997376,0.985867,0.172619,0.634011,0.136769,0.357579,0.651165,0.449429,0.170133,0.595405,0.862424,0.302502,0.54843,0.543151,0.275254,0.170871,0.715643,0.577522,0.769845,0.569716,0.150143,0.0965625,0.948306,0.0654214,0.509869,0.826416,0.951272,0.881155,0.886873,0.0575151,0.959184,0.355829,0.043597,0.874868,0.827636,0.642767,0.223327,0.689145,0.800682,0.602538,0.295225,0.0978688,0.24419,0.155212,0.432657,0.376637,0.52248,0.258677,0.208347,0.0841612,0.0995682,0.0609426,0.146372,0.438172,0.417883,0.851699,0.240764,0.688926,0.559338,0.742546,0.864607,0.969963,0.787675,0.559803,0.436239,0.680635,0.45857,0.674094,0.0868286,0.396787,0.351115,0.865927,0.771282,0.119875,0.438754,0.723159,0.352346,0.625206,0.426236,0.8984,0.235626,0.567215,0.429195,0.506897,0.126033,0.923112,0.922752,0.212248,0.187708,0.483283,0.839698,0.673918,0.893119,0.971754,0.942173,0.162975,0.360393,0.660754,0.545489,0.909002,0.120217,0.898967,0.489607,0.085278,0.813432,0.0987877,0.786951,0.715091,0.528587,0.737198,0.686451,0.953203,0.396559,0.352556,0.836257,0.0936832,0.601534,0.531809,0.827421,0.950933,0.25557,0.678779,0.363099,0.849535,0.644167,0.146273,0.760126,0.602069,0.893658,0.676789,0.143987,0.673526,0.697272,0.902471,0.478875,0.369627,0.814384,0.506707,0.342898,0.903275,0.582252,0.374778,0.0390096,0.0920514,0.2,0.624569,0.876553,0.597171,0.363262,0.410178,0.336845,0.939085,0.0177227,0.734208,0.510115,0.00544566,0.174997,0.486152,0.0361634,0.518785,0.985092,0.431773,0.958854,0.390484,0.501899,0.196256,0.278305,0.263616,0.74087,0.480845,0.263739,0.198173,0.772111,0.195193,0.576247,0.559944,0.912414,0.0578246,0.292323,0.337897,0.726403,0.77889,0.205649,0.49041,0.964632,0.782355,0.0775713,0.844781,0.517048,0.804686,0.636993,0.822631,0.479965,0.397386,0.145854,0.543203,0.900357,0.697423,0.913382,|0.932979,0.0427282,0.427132,0.905531,0.702966,0.0692341,0.558399,0.400529,0.519518,0.226862,0.854289,0.726432,0.659775,0.0782073,0.735576,0.979527,0.152891,0.815333,0.504752,0.492762,0.931976,0.560496,0.348935,0.877729,0.554923,0.349873,0.974478,0.470839,0.748705,0.92107,0.440109,0.876701,0.539397,0.216247,0.98381,0.138646,0.433873,0.778433,0.387851,0.126894,0.907788,0.281292,0.932926,0.0218732,0.146565,0.648627,0.30691,0.412525,0.474918,0.408773,0.787372,0.525988,0.197578,0.823463,0.0311366,0.915053,0.448101,0.76077,0.00132358,0.741048,0.205204,0.634854,0.700555,0.702501,0.589369,0.506096,0.103042,0.999629,0.296706,0.9432,0.0578388,0.640014,0.120366,0.159726,0.22594,0.454092,0.252748,0.227659,0.0652871,0.00274706,0.0272672,0.0198278,0.0144728,0.434775,0.82374,0.634581,0.539468,0.125907,0.47398,0.462907,0.94457,0.332286,0.962661,0.389839,0.495432,0.436624,0.244182,0.693438,0.922125,0.754367,0.0871293,0.176357,0.103738,0.492522,0.00265759,0.840027,0.646189,0.335575,0.647057,0.653705,0.690312,0.840273,0.856875,0.183396,0.152058,0.625982,0.591873,0.352954,0.545123,0.40308,0.3136,0.728338,0.972952,0.626799,0.445305,0.984926,0.538865,0.575221,0.500408,0.640221,0.773785,0.0611864,0.971478,0.0737184,0.271931,0.588815,0.832502,0.238939,0.483653,0.242748,0.994225,0.543842,0.885822,0.955017,0.0580438,0.67697,0.104812,0.799737,0.542428,0.714771,0.145946,0.09895,0.191976,0.153222,0.0717257,0.688895,0.359599,0.609382,0.922161,0.443246,0.0555745,0.202316,0.443421,0.336925,0.414786,0.9932,0.85266,0.116842,0.751657,0.447836,0.809752,0.207608,0.512018,0.435311,0.586313,0.581007,0.447645,0.735363,0.196537,0.0733007,0.860277,0.357535,0.527649,0.294835,0.301286,0.701369,0.817586,0.385026,0.750021,0.163175,0.877292,0.682742,0.00805831,0.778622,0.111261,0.0551695,0.571843,0.452296,0.697203,0.851345,0.490882,0.431481,0.0854672,0.226343,0.313307,0.972075,0.993968,0.267696,0.951511,0.143413,0.841289,0.517557,0.513363,0.200908,0.88438,0.108962,0.498583,0.20603,0.142523,0.779577,0.019428,0.28867,0.838976,0.360235,0.0766118,0.831988,0.932819,0.226476,0.282921,0.366745,0.68347,0.868132,0.289295,0.867355,0.471105,0.875697,0.09696,0.705004,0.749283,0.413952,0.928085,0.460324,0.490308,0.594132,0.645658,0.681995,0.0928723,0.686754,0.706247,0.492661,0.750435,0.233084,0.276546,0.570688,0.247464,0.141452,0.535047,0.796498,0.315936,0.136026,0.0733331,0.917553,0.357142,0.806587,0.329577,0.023312,0.166515,0.665584,0.264085,0.7246,0.238773,0.941005,0.716442,0.653168,0.841642,0.0607312,0.807761,0.382836,0.575536,0.135315,0.953326,0.33244,0.408974,0.155187,0.212641,0.788086,0.546975,0.144772,0.523897,0.605507,0.693043,0.907824,0.567338,0.083658,0.893138,0.267756,0.927093,0.21911,0.779036,0.213285,0.336069,0.995827,0.520841,0.616281,0.032259,0.538595,0.316911,0.0588618,0.831391,0.429223,0.427134,0.424738,0.506886,0.6703,0.324445,0.0635629,0.873549,0.566753,0.534088,0.398958,0.081572,0.834462,0.832563,0.219266,0.465719,0.855105,0.394238,0.433273,0.568478,0.837179,0.401064,0.493416,0.0933346,0.448361,0.6581,0.945503,0.238375,0.395202,0.0256953,0.219822,0.452145,0.876106,0.738992,0.472981,0.192275,0.847181,0.586464,0.0547055,0.150583,0.785381,0.236984,0.0676995,0.794567,0.849409,0.918407,0.946897,0.23796,0.938085,0.989601,0.130653,0.721079,0.16123,0.559471,0.777995,0.429271,0.793055,0.51845,0.71709,0.447396,0.817327,0.781002,0.400208,0.12003,0.150495,0.640422,0.103269,0.282943,0.487661,0.847465,0.427275,0.425954,0.224657,0.684677,0.35097,0.952259,0.672145,0.869508,0.936176,0.982746,0.64654,0.70207,0.572772,0.593013,0.644262,0.0949238,0.459522,0.781448,0.0484535,0.983597,0.481855,0.598603,0.657388,0.732467,0.504364,0.562505,0.394203,0.0429404,0.888069,0.353759,0.0607581,0.561392,0.445873,0.226201,0.819332,0.124502,0.581814,0.916083,0.567532,0.960658,0.394018,0.730221,0.222012,0.679796,0.22282,0.986948,0.180891,0.115022,0.263814,0.372447,0.338266,0.967643,0.0153111,0.844174,0.217953,0.12088,0.00660181,0.296645,0.77837,0.0973836,0.798628,0.621181,0.27756,0.827338,0.668738,0.0197906,0.0198854,0.430835,0.392545,0.682829,0.788016,0.403551,0.731008,0.227691,0.464098,0.0639023,0.133929,0.955826,0.638473,0.132026,0.52647,0.133913,0.712586,0.807988,0.194984,0.588958,0.105567,0.772045,0.40462,0.595689,0.355934,0.486796,0.209762,0.331702,0.345505,0.852383,0.65558,0.363723,0.904071,0.999588,0.446455,0.529352,0.785017,0.459884,0.730432,0.223594,0.633605,0.527408,0.899854,0.819843,0.327284,0.612398,0.396167,0.33212,0.576329,0.284015,0.194503,0.774495,0.614559,0.186244,0.352193,0.264068,0.276799,0.0384474,0.0949386,0.818806,0.538101,0.990664,0.999394,0.795352,0.240708,0.162226,0.365967,0.697822,0.0965371,0.672825,0.440741,0.689651,0.865773,0.827206,0.749121,0.639518,0.430116,0.702716,0.0796718,0.345851,0.344984,0.363319,0.0549557,0.320573,0.0724396,0.207241,0.706754,0.394955,0.435983,0.681642,0.181009,0.568619,0.20386,0.672082,0.412105,0.468284,0.193714,0.340939,0.999834,0.333348,0.587072,0.632512,0.525045,0.409092,0.0825445,0.283664,0.0980774,0.752985,0.673801,0.393812,0.0329933,0.349523,0.637289,0.17631,0.164601,0.310998,0.17521,0.248569,0.954633,0.413313,0.714333,0.137939,0.508032,0.920439,0.579157,0.362506,0.98827,0.470822,0.442337,0.30208,0.383777,0.53176,0.387376,0.455043,0.369158,0.584931,0.367359,0.385815,0.467685,0.999671,0.861467,0.414204,0.772993,0.935741,0.752042,0.781999,0.830125,0.697504,0.721314,0.403926,0.478565,0.198944,0.50183,0.0329416,0.870282,0.993216,0.59351,0.346595,0.709225,0.31748,0.364865,0.0693044,0.496021,0.0203924,0.0687767,0.221372,0.251012,0.869999,0.678126,0.4464,0.668278,0.931124,0.121436,0.411096,0.133812,0.107184,0.74481,0.42858,0.000193536,0.635694,0.45061,0.544195,0.389636,0.867804,0.542162,0.552107,0.273258,0.0978196,0.42609,0.544543,0.643903,0.192067,0.696289,0.579235,0.702422,0.309226,0.407466,0.384434,0.108222,0.0673517,0.35668,0.989171,0.790674,0.813597,0.242575,0.218017,0.797851,0.157534,0.558821,0.877804,0.610476,0.919287,0.337198,0.253528,0.228192,0.812397,0.242167,0.132664,0.243727,0.558344,0.636114,0.31134,0.908007,0.517405,0.860244,0.676127,0.484733,0.946988,0.600373,0.879456,0.580384,0.91983,0.748278,0.327679,0.724271,0.612171,0.800718,0.607255,0.268888,0.198486,0.230099,0.458436,0.370731,0.953875,0.451859,0.335643,0.254859,0.203173,0.651663,0.945061,0.724559,0.248081,0.316741,0.306148,0.728028,0.349533,0.464626,0.7639,0.813065,0.198916,0.012473,0.343776,0.0258445,0.162296,0.735653,0.675538,0.68011,0.576304,0.348233,0.0759133,0.235498,0.956122,0.545344,0.258771,0.385422,0.370645,0.172245,0.574871,0.0440749,0.109648,0.802419,0.422505,0.3805,0.00266451,0.803296,0.61704,0.00068146,0.190416,0.123777,0.619849,0.567764,0.624148,0.208285,0.295829,0.0612574,0.233715,0.172564,0.52841,0.144129,0.209586,0.429251,0.431751,0.611391,0.17236,0.724933,0.0326927,0.478155,0.796346,0.957717,0.716588,0.0794914,0.238546,0.877426,0.0129837,0.788597,0.064304,0.680417,0.0160605,0.744581,0.736318,0.806394,0.752189,0.236016,0.00323671,0.927884,0.938127,0.44892,0.809886,0.74967,0.682282,0.954996,0.699785,0.596182,0.159259,0.75406,0.79166,0.692218,0.165866,0.65016,0.692511,0.976809,0.902762,0.575723,0.749655,0.508961,0.602236,0.634158,0.482062,0.413763,0.809284,0.94071,0.526305,0.749117,0.525522,0.226415,0.677361,0.193982,0.597741,0.916448,0.321495,0.9616,0.544089,0.775562,0.970422,0.27481,0.818013,0.552739,0.0740117,0.243458,0.799564,0.958898,0.820274,0.116168,0.344283,0.634344,0.0708268,0.272058,0.99568,0.652177,0.259233,0.993393,0.358062,0.578623,0.24241,0.624481,0.228904,0.152132,0.275133,0.720713,0.878312,0.350589,0.527433,0.955512,0.00699222,0.563941,0.960698,0.563459,0.830995,0.264149,0.714974,0.276403,0.59336,0.404888,0.519443,0.429489,0.203164,0.855037,0.58897,0.0982975,0.945621,0.280597,0.31264,0.949978,0.224066,0.793827,0.89459,0.902603,0.394194,0.163998,0.78222,0.203772,0.776076,0.22945,0.323321,0.0888174,0.578678,0.240723,0.849932,0.397076,0.111225,0.839254,0.310796,0.281962,0.591864,0.175727,0.969327,0.15193,0.868347,0.335951,0.988768,0.365897,0.538885,0.594174,0.862396,0.565351,0.359868,0.856125,0.293325,0.288413,0.0884793,0.864235,0.241315,0.316392,0.79054,0.00633281,0.83185,0.663689,0.921548,0.0361881,0.339537,0.246145,0.173351,0.672825,0.715536,0.908706,0.453426,0.159029,0.560868,0.657036,0.446319,0.961942,0.209905,0.567395,0.165705,0.656955,0.635357,0.869156,0.145277,0.975305,0.516947,0.477488,0.216802,0.492837,0.748554,0.930085,0.23829,0.829437,0.372131,0.924606,0.879076,0.129274,0.0110837,0.631615,0.651519,0.871051,0.584738,0.915893,0.728695,0.524508,0.360412,0.119846,0.354201,0.672536,0.238881,0.823741,0.811076,0.515375,0.450285,0.0255243,0.0112575,0.338289,0.850843,0.852014,0.877762,0.133393,0.883872,0.133146,0.100284,0.403402,0.188393,0.337794,0.154664,0.300189,0.720167,0.551786,0.931918,0.401439,0.715759,0.985833,0.754312,0.377476,0.700911,0.202964,0.483406,0.592777,0.875789,0.777842,0.841949,0.06696,0.277148,0.761677,0.8227,0.120206,0.0695256,0.430974,0.89597,0.440641,0.131333,0.0145757,0.797532,0.62641,0.184153,0.363859,0.886449,0.0392276,|0.112762,0.160431,0.954499,0.00857407,0.898294,0.50157,0.784782,0.0940188,0.249876,0.344167,0.3489,0.00736022,0.514304,0.0993585,0.776649,0.646178,0.653531,0.397251,0.311324,0.871158,0.285862,0.0938146,0.0967824,0.670414,0.349782,0.0979512,0.6773,0.110857,0.71055,0.869652,0.453657,0.241938,0.137185,0.225674,0.621405,0.585466,0.921529,0.807832,0.654041,0.152767,0.507602,0.643236,0.506515,0.761589,0.182003,0.0740975,0.57205,0.247742,0.857201,0.00224656,0.653205,0.340129,0.546887,0.414126,0.522668,0.0671438,0.214709,0.314021,0.93996,0.204253,0.980134,0.631431,0.222937,0.171745,0.616174,0.327374,0.635218,0.0608826,0.18459,0.0599915,0.552574,0.217577,0.86577,0.231686,0.218911,0.578033,0.797068,0.104726,0.421381,0.10622,0.0335679,0.212271,0.279272,0.844539,0.797071,0.815043,0.613917,0.908204,0.85495,0.535631,0.700185,0.96777,0.694296,0.481547,0.186563,0.417466,0.289882,0.992821,0.921726,0.551151,0.215271,0.566634,0.844422,0.202897,0.436032,0.829072,0.636448,0.46214,0.26198,0.821586,0.0444411,0.360101,0.0122482,0.767906,0.670828,0.094022,0.82791,0.459228,0.19249,0.754884,0.466444,0.0641779,0.715427,0.145883,0.16822,0.0231177,0.0236875,0.444932,0.446632,0.602439,0.954062,0.831575,0.00341821,0.047957,0.535245,0.407956,0.311471,0.168943,0.842004,0.916376,0.403371,0.869668,0.228928,0.0544798,0.848453,0.805122,0.429146,0.457237,0.286458,0.0146587,0.331254,0.4051,0.102549,0.767664,0.979918,0.113894,0.178138,0.0570261,0.838191,0.595244,0.980894,0.902062,0.800734,0.829239,0.957948,0.361075,0.912122,0.179464,0.503601,0.204776,0.513513,0.475911,0.622559,0.391586,0.963318,0.799203,0.309486,0.63658,0.332912,0.48008,0.721523,0.299684,0.80118,0.95264,0.341082,0.246701,0.0740295,0.331703,0.747624,0.245624,0.922782,0.39392,0.227749,0.718281,0.502554,0.839771,0.054774,0.0561861,0.799055,0.424596,0.593588,0.485321,0.382453,0.00452447,0.50466,0.575719,0.0327513,0.0594147,0.688739,0.528939,0.371544,0.977812,0.304726,0.190335,0.180775,0.902575,0.629254,0.0428036,0.011865,0.621527,0.288514,0.529385,0.640463,0.661248,0.418013,0.0928746,0.278872,0.790476,0.967893,0.620214,0.455632,0.715324,0.417342,0.708115,0.826375,0.0554981,0.210147,0.534204,0.0415368,0.300457,0.709061,0.688075,0.465168,0.491851,0.793737,0.240678,0.215584,0.261311,0.341936,0.193779,0.301795,0.347695,0.286385,0.523693,0.288144,0.508746,0.168816,0.423514,0.303692,0.163449,0.628175,0.00748038,0.643849,0.989891,0.400176,0.256588,0.936467,0.723885,0.378141,0.631465,0.596076,0.506254,0.728516,0.315691,0.620395,0.0845181,0.674034,0.733232,0.951569,0.735282,0.59046,0.122343,0.107352,0.0435563,0.775508,0.268849,0.60355,0.605147,0.931729,0.594975,0.11231,0.153663,0.372099,0.141501,0.683938,0.53402,0.575133,0.949379,0.404909,0.724467,0.983802,0.962552,0.0750232,0.200957,0.403665,0.242168,0.731713,0.776182,0.299731,0.462961,0.563533,0.455194,0.632466,0.295488,0.653473,0.331558,0.464159,0.66735,0.358165,0.428239,0.899245,0.218801,0.659512,0.607091,0.405176,0.934828,0.713443,0.826313,0.487815,0.301128,0.468153,0.793189,0.356681,0.348639,0.464362,0.00649911,0.611034,0.968535,0.225677,0.495515,0.695688,0.548678,0.612236,0.817016,0.913151,0.0553346,0.206843,0.325356,0.605263,0.569261,0.242523,0.0853497,0.959135,0.452446,0.363752,0.44648,0.910011,0.0525241,0.253406,0.629705,0.610647,0.200742,0.639402,0.800694,0.476904,0.590606,0.50637,0.541504,0.289285,0.335876,0.92114,0.195575,0.067997,0.862267,0.0741925,0.986771,0.0665918,0.836528,0.880768,0.470616,0.0295937,0.512408,0.797672,0.260322,0.657983,0.778163,0.133731,0.599317,0.155952,0.276313,0.0868719,0.729556,0.0655112,0.0924594,0.678451,0.52904,0.745907,0.182356,0.426339,0.0472125,0.35607,0.036104,0.821348,0.177272,0.228604,0.285007,0.346007,0.522562,0.690442,0.87359,0.858223,0.259625,0.164719,0.201026,0.746644,0.538493,0.294986,0.197539,0.350574,0.0866779,0.203676,0.055681,0.488703,0.644088,0.659085,0.685747,0.320404,0.886116,0.527688,0.605229,0.0936454,0.0815381,0.053196,0.059902,0.629552,0.969472,0.971921,0.387134,0.385452,0.879542,0.198011,0.395948,0.76746,0.621312,0.730555,0.707645,0.0261925,0.29777,0.12034,0.0754487,0.948311,0.887695,0.307424,0.776377,0.313885,0.207992,0.503382,0.812657,0.958722,0.123134,0.54163,0.16135,0.623097,0.778772,0.899594,0.31475,0.455297,0.654876,0.833572,0.0887125,0.41795,0.0658271,0.654084,0.292667,0.456331,0.800158,0.530513,0.676683,0.467247,0.147013,0.617657,0.963912,0.625298,0.473064,0.275461,0.485669,0.224923,0.837078,0.660911,0.572571,0.385632,0.615323,0.946738,0.450978,0.767682,0.0903541,0.944852,0.471356,0.710901,0.69228,0.647345,0.383567,0.902115,0.798329,0.894388,0.90864,0.133437,0.373176,0.29295,0.906064,0.394535,0.391619,0.339894,0.0734785,0.0366491,0.791,0.850511,0.594875,0.366934,0.368748,0.170302,0.716551,0.567178,0.606869,0.911422,0.162089,0.381754,0.463475,0.698225,0.933298,0.257391,0.596391,0.811025,0.38835,0.388818,0.883905,0.594821,0.995736,0.492668,0.109451,0.485794,0.00510412,0.0128309,0.15216,0.456059,0.725369,0.262417,0.968733,0.368657,0.738454,0.705996,0.490826,0.229706,0.304039,0.570748,0.513389,0.113266,0.776178,0.909443,0.913342,0.0547194,0.591577,0.230805,0.69742,0.14267,0.535961,0.137292,0.434066,0.422322,0.207411,0.576208,0.959494,0.499475,0.494434,0.40319,0.863429,0.297976,0.372813,0.861945,0.830616,0.232869,0.284669,0.579039,0.746048,0.0145486,0.289728,0.233854,0.932927,0.400589,0.789999,0.924356,0.418617,0.217758,0.773417,0.201323,0.523307,0.808639,0.469891,0.43068,0.00921357,0.337226,0.332468,0.513222,0.452085,0.360376,0.578881,0.647855,0.767931,0.231837,0.0560037,0.76372,0.513296,0.6752,0.491722,0.974132,0.350115,0.13284,0.981577,0.615522,0.413494,0.15856,0.956658,0.0636307,0.598686,0.0728661,0.993011,0.658095,0.770087,0.583657,0.553986,0.466897,0.0957795,0.496184,0.54903,0.538528,0.0301835,0.0285441,0.689461,0.056236,0.327112,0.9028,0.480925,0.081251,0.395846,0.674475,0.295385,0.794346,0.0681401,0.843771,0.902378,0.804607,0.0351802,0.781315,0.204957,0.362848,0.546053,0.116683,0.0623388,0.232879,0.444669,0.122495,0.964164,0.385182,0.0502237,0.193534,0.551127,0.250489,0.0328634,0.570056,0.71282,0.381093,0.240576,0.328521,0.0557854,0.132018,0.611911,0.762375,0.241794,0.785104,0.957923,0.0842474,0.984706,0.768041,0.195177,0.179241,0.0234118,0.736053,0.777491,0.861107,0.550092,0.140321,0.4702,0.0460346,0.768684,0.174411,0.0166978,0.657139,0.460884,0.165823,0.0949025,0.861447,0.169911,0.0117755,0.409463,0.582674,0.262166,0.312801,0.970228,0.79867,0.211444,0.990447,0.391319,0.804423,0.267014,0.348713,0.595602,0.888331,0.0266948,0.448371,0.398666,0.628988,0.390678,0.95393,0.477296,0.377476,0.434273,0.509122,0.790446,0.429794,0.93747,0.512014,0.828338,0.300714,0.169631,0.374892,0.679074,0.263195,0.0732791,0.530194,0.741825,0.261596,0.306037,0.057175,0.846566,0.465725,0.00390005,0.0766549,0.953543,0.439684,0.0842838,0.998338,0.129306,0.309735,0.523587,0.575396,0.810556,0.707769,0.197796,0.926978,0.230289,0.604119,0.469056,0.617684,0.760879,0.0471451,0.828576,0.224452,0.27892,0.218834,0.606584,0.136775,0.8773,0.49861,0.33998,0.490314,0.431908,0.296831,0.0994912,0.964538,0.555635,0.0058468,0.558081,0.100811,0.923217,0.987838,0.555353,0.566646,0.736326,0.551633,0.78936,0.138595,0.293538,0.0364957,0.523953,0.858396,0.699623,0.983288,0.541975,0.781766,0.31366,0.947048,0.835142,0.698018,0.957377,0.687628,0.713893,0.635943,0.86446,0.875587,0.93676,0.747415,0.814416,0.135104,0.712949,0.162528,0.218186,0.0805656,0.777336,0.973326,0.134512,0.19246,0.856237,0.0961723,0.42075,0.953732,0.0596474,0.853171,0.794222,0.783881,0.846646,0.864134,0.272626,0.136675,0.397037,0.15174,0.727825,0.346932,0.640943,0.415207,0.545318,0.111704,0.726462,0.113058,0.484169,0.646687,0.257966,0.100736,0.805891,0.840858,0.958198,0.700367,0.659323,0.75843,0.670594,0.98541,0.274505,0.499048,0.337088,0.218225,0.146438,0.974257,0.124022,0.992619,0.0407563,0.940813,0.808175,0.528941,0.615389,0.393864,0.180583,0.454769,0.76936,0.518527,0.325105,0.172564,0.676577,0.0796455,0.610561,0.771904,0.0743433,0.372252,0.511998,0.429701,0.642475,0.764204,0.567649,0.288804,0.0560552,0.207596,0.47032,0.0678845,0.00415969,0.316465,0.337444,0.122143,0.122847,0.721591,0.953321,0.982044,0.910131,0.2964,0.282365,0.449291,0.943487,0.405838,0.805211,0.315813,0.624993,0.616509,0.664973,0.983764,0.812875,0.216442,0.330746,0.0949459,0.36533,0.929669,0.302419,0.39987,0.949093,0.805969,0.0479123,0.833746,0.0456413,0.878687,0.280627,0.961748,0.700065,0.126959,0.817024,0.467946,0.674896,0.0464884,0.924201,0.356784,0.630711,0.805101,0.625839,0.47965,0.847919,0.652303,0.765566,0.724866,0.0524729,0.720919,0.174311,0.760324,0.6548,0.91695,0.636207,0.561603,0.812249,0.625002,0.39467,0.754594,0.380723,0.131602,0.882854,0.986599,0.540862,0.500785,0.448485,0.0920127,0.154518,0.0417974,0.0631732,0.184074,0.0739394,0.696509,0.380741,0.417877,0.946549,0.0930796,0.873761,0.129265,0.922976,0.650342,0.75516,0.0322297,0.59392,0.580839,0.547342,0.288931,0.92692,0.458099,0.449542,0.318522,0.23419,0.112919,0.969734,0.842156,0.348863,0.0658608,0.356973,0.565479,0.290194,0.692796,0.837418,0.940769,0.172846,|0.778975,0.327429,0.303988,0.957958,0.193808,0.434727,0.46189,0.622148,0.156479,0.172159,0.492358,0.0639031,0.830589,0.957794,0.741124,0.0186564,0.727528,0.808186,0.236915,0.679104,0.0361329,0.368978,0.251075,0.986956,0.690155,0.213639,0.433615,0.0796376,0.993668,0.837531,0.200903,0.373729,0.17765,0.200572,0.338429,0.159314,0.337349,0.82564,0.507423,0.119256,0.959519,0.527826,0.728731,0.623614,0.864086,0.371556,0.228769,0.781175,0.291306,0.37691,0.262206,0.141079,0.0185806,0.930315,0.822362,0.944478,0.485641,0.935795,0.516944,0.950339,0.748834,0.279225,0.438228,0.361911,0.229948,0.50585,0.279564,0.20672,0.256593,0.707698,0.215894,0.432224,0.0162105,0.613256,0.534531,0.323085,0.325182,0.0405073,0.516511,0.0232348,0.273495,0.768376,0.150278,0.815275,0.961237,0.349204,0.676291,0.59538,0.861887,0.83043,0.205283,0.733518,0.151945,0.450682,0.752228,0.864172,0.259539,0.0592786,0.666845,0.982934,0.373567,0.293261,0.205869,0.838683,0.243093,0.585002,0.423947,0.194604,0.722369,0.959836,0.244652,0.857287,0.025794,0.0937037,0.456526,0.0265986,0.805932,0.309256,0.00936055,0.326537,0.193028,0.0340377,0.593124,0.244848,0.776114,0.0536091,0.348215,0.98669,0.881825,0.783749,0.945968,0.548573,0.0613259,0.0234786,0.270828,0.0465987,0.396608,0.936341,0.441136,0.667957,0.429193,0.669813,0.619828,0.159685,0.661893,0.706826,0.835412,0.418721,0.665857,0.0338696,0.270141,0.0584882,0.255334,0.410478,0.225314,0.783582,0.284005,0.374765,0.302074,0.607934,0.120735,0.870002,0.605706,0.273655,0.39257,0.425119,0.186749,0.0583957,0.56723,0.745763,0.769502,0.125613,0.784579,0.192443,0.0970246,0.637215,0.685142,0.568891,0.515671,0.123862,0.450604,0.873958,0.201218,0.201739,0.067949,0.895921,0.128546,0.769785,0.858249,0.648968,0.446753,0.660514,0.502676,0.0142947,0.170478,0.725023,0.829411,0.224973,0.891711,0.827204,0.783421,0.0970932,0.802275,0.814631,0.206948,0.514387,0.00220817,0.643426,0.720159,0.402522,0.0971036,0.49623,0.684145,0.298036,0.871886,0.0998545,0.0858456,0.679037,0.434204,0.498478,0.0664148,0.828333,0.465917,0.61867,0.735652,0.586069,0.52018,0.779461,0.581447,0.372187,0.107876,0.819944,0.303797,0.395239,0.740509,0.804204,0.736082,0.783918,0.237564,0.158921,0.563661,0.727326,0.339196,0.80992,0.0336202,0.743548,0.496948,0.265324,0.413203,0.711825,0.68046,0.837333,0.654957,0.876612,0.853829,0.793069,0.0379226,0.0245522,0.952374,0.594563,0.0483618,0.997067,0.196257,0.143878,0.265461,0.0535471,0.500677,0.836813,0.0755058,0.658511,0.433364,0.533264,0.938253,0.729196,0.612705,0.426241,0.107007,0.382648,0.384685,0.935088,0.829166,0.508142,0.69964,0.253724,0.739803,0.153021,0.902557,0.495109,0.0911298,0.943228,0.76381,0.969636,0.10194,0.4686,0.18812,0.79455,0.0241117,0.330643,0.578934,0.206867,0.60124,0.89243,0.67777,0.186719,0.865673,0.785507,0.296826,0.0411558,0.790108,0.0017187,0.6396,0.66707,0.78363,0.680797,0.638985,0.103731,0.545526,0.357482,0.674632,0.0883625,0.572341,0.993561,0.197058,0.91162,0.289659,0.838191,0.916244,0.293501,0.495563,0.216254,0.27233,0.169258,0.251485,0.750573,0.381039,0.620676,0.925295,0.762799,0.564266,0.995077,0.416955,0.46284,0.173164,0.451858,0.747364,0.449615,0.522359,0.966941,0.0896366,0.5555,0.145898,0.884385,0.202074,0.109034,0.351134,0.682883,0.710745,0.540494,0.533724,0.0562997,0.448321,0.410234,0.762037,0.912516,0.0576524,0.843972,0.816485,0.765975,0.16114,0.298519,0.77825,0.516715,0.168058,0.68335,0.639248,0.278501,0.228986,0.935646,0.408283,0.901314,0.299319,0.756296,0.374778,0.242264,0.17194,0.645955,0.265772,0.573423,0.677219,0.776534,0.718401,0.293899,0.559547,0.961186,0.534435,0.923819,0.45147,0.362789,0.268474,0.809388,0.0213846,0.0426353,0.610139,0.925033,0.208002,0.332161,0.88005,0.533133,0.36516,0.125398,0.499698,0.0369297,0.210494,0.32395,0.477297,0.993317,0.735533,0.979301,0.0710292,0.381112,0.244674,0.882703,0.200621,0.549208,0.950528,0.56672,0.580658,0.419332,0.121434,0.0382337,0.854096,0.334574,0.781284,0.169137,0.578543,0.244345,0.464165,0.709277,0.0710544,0.621135,0.174863,0.848956,0.255641,0.997834,0.755414,0.953322,0.428864,0.0715134,0.114327,0.920366,0.301206,0.637222,0.140364,0.601391,0.625633,0.255343,0.337024,0.444157,0.0939326,0.411185,0.649875,0.696305,0.0706322,0.684671,0.115733,0.576653,0.302613,0.897419,0.867051,0.448648,0.985924,0.154747,0.737337,0.0583162,0.672696,0.763347,0.961097,0.12092,0.657797,0.75658,0.725405,0.183664,0.603345,0.227127,0.0195416,0.358861,0.145802,0.555277,0.0824383,0.131071,0.978745,0.493133,0.0335257,0.178975,0.670711,0.442729,0.90529,0.230553,0.555397,0.62678,0.542047,0.950031,0.613512,0.80559,0.607961,0.844893,0.0490947,0.414266,0.431673,0.268633,0.908315,0.652161,0.672105,0.0212671,0.585025,0.755317,0.0523066,0.794032,0.306996,0.502748,0.964172,0.0855825,0.408465,0.0525675,0.409047,0.767891,0.535951,0.010218,0.750064,0.954665,0.590966,0.984099,0.361661,0.976449,0.734082,0.0841897,0.234747,0.230428,0.234764,0.735706,0.662608,0.810003,0.615766,0.532673,0.11331,0.580642,0.12346,0.298751,0.536126,0.168695,0.24589,0.436211,0.815903,0.0959193,0.185569,0.669517,0.995332,0.316523,0.449424,0.373512,0.787001,0.0673615,0.72798,0.684692,0.59183,0.613691,0.598472,0.466956,0.360972,0.972772,0.844161,0.63486,0.307391,0.25905,0.807118,0.208782,0.765905,0.459467,0.878173,0.583146,0.531007,0.349052,0.21417,0.380935,0.0085665,0.375822,0.545995,0.90043,0.0201665,0.0357881,0.16846,0.881806,0.745644,0.166672,0.0743707,0.0929113,0.70019,0.0642348,0.681194,0.929379,0.914542,0.759463,0.842551,0.526533,0.178683,0.58416,0.564761,0.680067,0.540546,0.427286,0.907699,0.665464,0.961593,0.749187,0.251127,0.443426,0.173116,0.227828,0.423189,0.849244,0.3907,0.0312049,0.803749,0.788596,0.87004,0.381049,0.311539,0.379831,0.194075,0.166403,0.791781,0.0326103,0.705775,0.63962,0.0244402,0.857038,0.186885,0.319123,0.208693,0.835398,0.674136,0.912356,0.678137,0.435564,0.291456,0.228231,0.0165226,0.138806,0.760223,0.151892,0.317652,0.834919,0.536479,0.246141,0.215073,0.414777,0.781309,0.941655,0.944168,0.945256,0.723805,0.47125,0.458604,0.956128,0.376821,0.645834,0.154295,0.0261303,0.411365,0.328609,0.442528,0.132852,0.818077,0.701587,0.628598,0.392289,0.21885,0.729846,0.844785,0.281627,0.020911,0.482628,0.897225,0.4764,0.415089,0.473824,0.285946,0.7566,0.306593,0.285373,0.972108,0.767525,0.217419,0.138664,0.428218,0.698555,0.593567,0.210106,0.470452,0.346313,0.741498,0.0484251,0.664331,0.270034,0.291984,0.785061,0.706874,0.145743,0.0569961,0.491387,0.10799,0.673211,0.647984,0.040046,0.85537,0.246233,0.32041,0.389627,0.596933,0.252972,0.85451,0.304055,0.714428,0.0902735,0.0578898,0.223062,0.588285,0.616953,0.586953,0.905617,0.977834,0.0511501,0.45451,0.971636,0.109523,0.54436,0.738232,0.676974,0.497366,0.787117,0.83054,0.68853,0.514249,0.275235,0.510266,0.00282413,0.996533,0.0131757,0.459912,0.878332,0.119964,0.532922,0.961298,0.544041,0.508689,0.790372,0.918105,0.224162,0.221793,0.726896,0.789686,0.304201,0.719527,0.827576,0.307081,0.294794,0.430027,0.0543842,0.834416,0.884743,0.946744,0.482704,0.0926559,0.660482,0.764186,0.54904,0.847284,0.932178,0.907833,0.142228,0.217771,0.316485,0.661439,0.866464,0.177003,0.554989,0.508449,0.935902,0.404522,0.0679889,0.373619,0.592272,0.806768,0.566854,0.868355,0.906236,0.276161,0.381245,0.0509784,0.475257,0.897447,0.0611177,0.693412,0.183217,0.831551,0.978248,0.748697,0.685122,0.639943,0.430456,0.256259,0.244471,0.393074,0.565531,0.712457,0.590584,0.710534,0.883123,0.538657,0.819358,0.574967,0.8751,0.79758,0.411966,0.342178,0.499799,0.549883,0.100318,0.443108,0.715716,0.298043,0.671849,0.91488,0.900769,0.250503,0.595908,0.289914,0.411293,0.413341,0.77851,0.268415,0.584167,0.32553,0.431693,0.987816,0.949502,0.305443,0.283383,0.0369494,0.145964,0.155497,0.410831,0.308618,0.926886,0.285466,0.211953,0.549017,0.123229,0.015726,0.969993,0.559315,0.324782,0.0147921,0.44961,0.922079,0.755824,0.592429,0.284203,0.063905,0.774627,0.958377,0.230188,0.12004,0.684789,0.231185,0.905364,0.774842,0.972725,0.31241,0.713114,0.616017,0.601832,0.960165,0.22993,0.885315,0.879099,0.528089,0.0374404,0.640036,0.553312,0.91142,0.530041,0.0458073,0.24623,0.10987,0.636546,0.170039,0.665923,0.85503,0.0935125,0.282549,0.993352,0.884919,0.758788,0.380132,0.842655,0.636228,0.136768,0.885651,0.259905,0.337809,0.000791788,0.997253,0.78886,0.848845,0.883801,0.497041,0.551157,0.681179,0.402677,0.331945,0.35355,0.980667,0.00550264,0.873703,0.764243,0.114902,0.00795627,0.481151,0.113925,0.0504996,0.318194,0.0824367,0.985712,0.392259,0.700316,0.994233,0.00851649,0.637979,0.188386,0.440272,0.173114,0.844503,0.74305,0.78923,0.422659,0.330773,0.998412,0.343348,0.423782,0.32685,0.37755,0.196506,0.996016,0.0589132,0.0123057,0.163091,0.0420855,0.261185,0.56647,0.34284,0.761463,0.423652,0.998886,0.0705357,0.535912,0.534396,0.84585,0.165686,0.47753,0.413245,0.442931,0.613239,0.961675,0.929346,0.680869,0.044986,0.8155,0.586621,0.879071,0.554414,0.759102,0.372355,0.302409,0.905899,0.0265098,0.338161,0.408482,0.760706,0.311668,0.96259,0.48196,0.193349,0.758458,0.624359,0.468625,0.972794,0.222956,0.874666,0.841094,|0.902275,0.0143216,0.552725,0.939977,0.571353,0.991969,0.176651,0.929398,0.264397,0.408975,0.175171,0.798919,0.926293,0.409387,0.598654,0.324836,0.74078,0.704667,0.382365,0.310302,0.430226,0.0939844,0.995039,0.91164,0.757181,0.0226881,0.16092,0.584866,0.411284,0.23057,0.857689,0.926957,0.175426,0.322571,0.857258,0.0740052,0.901758,0.277973,0.819176,0.18562,0.737524,0.240763,0.219206,0.352533,0.707969,0.989721,0.810438,0.186531,0.415325,0.721673,0.15801,0.133405,0.382177,0.774141,0.556084,0.486963,0.0521238,0.90158,0.0357541,0.0709847,0.178773,0.908953,0.924209,0.812442,0.776565,0.574439,0.0188214,0.501105,0.497473,0.582643,0.755781,0.265999,0.803695,0.159907,0.0639521,0.0682395,0.215657,0.98538,0.77325,0.504053,0.466861,0.589424,0.871029,0.0836354,0.996991,0.0211241,0.511546,0.896729,0.347855,0.997351,0.0446314,0.807864,0.00124496,0.491532,0.206715,0.614957,0.41319,0.848917,0.64991,0.266714,0.449052,0.646282,0.0331102,0.869775,0.587211,0.283173,0.781366,0.0522105,0.902666,0.395017,0.25017,0.778008,0.161756,0.399784,0.605959,0.728968,0.447506,0.316945,0.806809,0.732552,0.851497,0.182316,0.279129,0.418582,0.658181,0.0883177,0.461631,0.535144,0.192562,0.634708,0.655158,0.19495,0.208452,0.873611,0.746223,0.704457,0.307913,0.790891,0.617191,0.84126,0.493797,0.342405,0.169117,0.536551,0.813204,0.959181,0.352387,0.386555,0.6503,0.00164032,0.43627,0.220676,0.513234,0.921945,0.110206,0.717868,0.367779,0.454685,0.75952,0.348842,0.210157,0.836752,0.279103,0.307354,0.837316,0.664611,0.974301,0.711858,0.935773,0.711254,0.365308,0.886641,0.898576,0.135406,0.797847,0.32667,0.628758,0.971111,0.556705,0.991696,0.512929,0.506499,0.223457,0.335181,0.196685,0.183963,0.987611,0.164609,0.0520326,0.105181,0.555091,0.10807,0.663085,0.82148,0.916408,0.137492,0.966677,0.360724,0.655169,0.00351685,0.70013,0.704292,0.238179,0.0248969,0.359913,0.400505,0.187093,0.641866,0.956486,0.800093,0.86038,0.844366,0.480676,0.605051,0.507362,0.370687,0.196961,0.414299,0.363106,0.0182767,0.960603,0.00699216,0.276321,0.928002,0.621827,0.567341,0.995369,0.90847,0.0739146,0.850508,0.445784,0.197983,0.807784,0.366187,0.935045,0.469634,0.516867,0.760176,0.253014,0.575931,0.169826,0.839113,0.0859396,0.0568732,0.969002,0.61163,0.773908,0.121203,0.44914,0.0331023,0.0593769,0.0568983,0.832699,0.996977,0.255695,0.776691,0.0704332,0.994373,0.866309,0.107088,0.380024,0.451012,0.729068,0.45136,0.695708,0.359059,0.438798,0.617263,0.74998,0.221176,0.78809,0.47352,0.190505,0.16526,0.609617,0.175208,0.63097,0.897403,0.0792199,0.0393521,0.333307,0.022372,0.625491,0.0581532,0.362072,0.680205,0.408307,0.267315,0.980123,0.201176,0.703258,0.905217,0.992566,0.942592,0.395536,0.732791,0.809678,0.0497062,0.168317,0.535819,0.385235,0.286867,0.903367,0.865749,0.679155,0.00681448,0.565807,0.928273,0.416849,0.53359,0.782246,0.494266,0.780064,0.759555,0.65768,0.429879,0.381149,0.106376,0.500462,0.394747,0.802822,0.0134448,0.073517,0.945677,0.598338,0.886803,0.242731,0.461406,0.138588,0.173746,0.462961,0.38015,0.707472,0.541538,0.0366434,0.276534,0.972118,0.943465,0.287993,0.315398,0.627811,0.17643,0.733764,0.956326,0.749747,0.804503,0.98818,0.341767,0.469245,0.144702,0.152484,0.498693,0.0317153,0.527374,0.992364,0.367654,0.302431,0.729692,0.30564,0.673732,0.650895,0.60029,0.501414,0.41834,0.987465,0.982875,0.0479512,0.996358,0.951681,0.820946,0.927807,0.677292,0.801297,0.576773,0.171976,0.260895,0.941127,0.879132,0.572305,0.489947,0.809441,0.2433,0.330089,0.644505,0.792267,0.629397,0.242053,0.0474808,0.922518,0.847679,0.717762,0.507743,0.576992,0.191008,0.613535,0.198496,0.970556,0.978949,0.333081,0.83329,0.951474,0.136263,0.35636,0.495799,0.632773,0.961746,0.916842,0.622579,0.217636,0.631164,0.180081,0.158605,0.744416,0.68652,0.624171,0.993897,0.314463,0.0268172,0.510116,0.52255,0.0291345,0.428934,0.203566,0.447528,0.376413,0.231702,0.241299,0.494937,0.604585,0.366236,0.338101,0.0256312,0.334806,0.396142,0.907166,0.658535,0.265572,0.0497507,0.243571,0.461615,0.348174,0.56315,0.478219,0.0869702,0.95976,0.240233,0.550182,0.812752,0.114229,0.714752,0.621244,0.539676,0.190144,0.387981,0.910098,0.0887163,0.947989,0.085256,0.451929,0.428018,0.285771,0.383785,0.0762267,0.0172675,0.308864,0.472593,0.310322,0.678151,0.467753,0.314138,0.952643,0.530475,0.864128,0.962248,0.714914,0.0770261,0.988459,0.62009,0.852565,0.363141,0.101753,0.150326,0.805662,0.62625,0.310787,0.00835049,0.299915,0.554976,0.158119,0.255857,0.809104,0.319948,0.16493,0.387088,0.95683,0.686826,0.136409,0.809991,0.491882,0.228494,0.169891,0.337541,0.261881,0.949788,0.263473,0.289809,0.0699188,0.0793412,0.238296,0.701578,0.0699743,0.612074,0.415815,0.0854988,0.780881,0.583192,0.44827,0.133374,0.710608,0.242766,0.715669,0.509468,0.116211,0.126724,0.880259,0.497015,0.173171,0.765244,0.412257,0.744647,0.753043,0.266411,0.424741,0.577463,0.354088,0.232818,0.618355,0.767144,0.126168,0.457093,0.122114,0.570437,0.876514,0.288088,0.0157475,0.467063,0.352279,0.115817,0.517899,0.60521,0.532905,0.425921,0.913659,0.120204,0.975127,0.727543,0.427724,0.661778,0.246151,0.852781,0.819157,0.991697,0.278636,0.36513,0.587761,0.756573,0.392451,0.48099,0.335976,0.94889,0.664227,0.740738,0.545447,0.0528699,0.954513,0.098754,0.250071,0.0053885,0.0790412,0.0807699,0.0825065,0.390385,0.343126,0.740891,0.309165,0.207718,0.543593,0.62921,0.204252,0.609603,0.724508,0.416224,0.31877,0.568381,0.0914398,0.297171,0.44349,0.637138,0.836397,0.725674,0.180299,0.586352,0.166869,0.888987,0.0944784,0.947091,0.595217,0.864961,0.225451,0.134614,0.502088,0.640579,0.73267,0.618261,0.369616,0.0663235,0.956554,0.0331545,0.961558,0.174672,0.955942,0.0878223,0.798296,0.377471,0.0395465,0.463205,0.787887,0.121162,0.995668,0.94463,0.8735,0.328478,0.966162,0.546267,0.409226,0.588589,0.471712,0.620265,0.387644,0.600797,0.692314,0.192057,0.278264,0.284217,0.667328,0.561886,0.129561,0.441127,0.215509,0.885243,0.41468,0.431127,0.762491,0.112666,0.623473,0.201247,0.657575,0.284924,0.169975,0.100909,0.453064,0.646484,0.519618,0.677695,0.830359,0.445899,0.132005,0.320351,0.176534,0.60471,0.374943,0.596299,0.402032,0.400695,0.964739,0.131476,0.356206,0.266166,0.697686,0.954827,0.286051,0.23372,0.133558,0.578172,0.383269,0.497542,0.869593,0.195636,0.92644,0.396564,0.683974,0.330019,0.262722,0.299011,0.419606,0.56325,0.385678,0.428326,0.631647,0.623349,0.0695391,0.276856,0.865576,0.828638,0.0764745,0.797147,0.695024,0.268208,0.164131,0.0401608,0.777277,0.234783,0.429696,0.92831,0.57826,0.992108,0.716925,0.587421,0.408874,0.833943,0.572863,0.248531,0.203778,0.20121,0.352653,0.3926,0.621186,0.968055,0.333562,0.701287,0.641554,0.119378,0.407121,0.486769,0.163343,0.627959,0.408528,0.565051,0.0429901,0.146026,0.706441,0.494844,0.210535,0.109913,0.184371,0.304721,0.968524,0.568676,0.598265,0.725838,0.577674,0.109159,0.448734,0.940729,0.821166,0.0685166,0.486968,0.370342,0.416944,0.477908,0.812422,0.168099,0.452911,0.0589153,0.743579,0.473411,0.550998,0.618194,0.3743,0.348462,0.956572,0.605419,0.00731009,0.182579,0.197662,0.920504,0.10464,0.799323,0.927555,0.458613,0.388205,0.181104,0.866379,0.538069,0.379666,0.212769,0.428259,0.610697,0.131845,0.815887,0.328626,0.4841,0.638077,0.114445,0.504064,0.0996397,0.0546988,0.24928,0.952986,0.706628,0.848203,0.846836,0.86582,0.819837,0.466429,0.924287,0.247862,0.905709,0.168461,0.920265,0.527123,0.0455949,0.982752,0.945127,0.396261,0.217832,0.29184,0.483586,0.661744,0.118456,0.906643,0.951705,0.634866,0.584275,0.918955,0.566872,0.792054,0.383633,0.779966,0.271465,0.352325,0.100059,0.0858825,0.379099,0.60294,0.179543,0.381503,0.941514,0.66493,0.518248,0.167482,0.1044,0.669817,0.715914,0.00442475,0.601906,0.470171,0.396596,0.39942,0.472396,0.999293,0.386081,0.123846,0.0404875,0.614998,0.132088,0.462655,0.38875,0.482351,0.873843,0.164561,0.0100181,0.115156,0.500647,0.266522,0.893647,0.453866,0.926373,0.465306,0.411829,0.562193,0.544492,0.419417,0.624775,0.394154,0.996885,0.093994,0.951919,0.236751,0.502059,0.740078,0.689632,0.966549,0.268925,0.613491,0.500634,0.691694,0.543695,0.964884,0.810699,0.114628,0.420758,0.549286,0.727276,0.56733,0.756337,0.559651,0.775469,0.848631,0.49636,0.682186,0.0973675,0.149933,0.111774,0.530039,0.795826,0.869964,0.361689,0.886712,0.999719,0.37252,0.045464,0.0136405,0.748435,0.857747,0.277929,0.538133,0.0442129,0.491226,0.695971,0.615938,0.122727,0.223861,0.307666,0.134498,0.0563443,0.11492,0.512222,0.948985,0.290901,0.856549,0.364261,0.20617,0.534142,0.870658,0.84161,0.923678,0.90201,0.261418,0.491881,0.128023,0.990429,0.188759,0.640402,0.502461,0.236408,0.635589,0.826676,0.379484,0.428126,0.651452,0.431418,0.753499,0.372004,0.423382,0.496097,0.728577,0.626759,0.541546,0.776637,0.326488,0.855698,0.513834,0.0248785,0.81149,0.200699,0.903947,0.404016,0.0712702,0.460164,0.904693,0.0958341,0.530911,0.732729,0.683595,0.064595,0.397592,0.488782,0.56014,0.0353997,0.23874,0.948585,0.971334,0.795062,0.692927,0.976587,0.224775,0.207529,0.335239,0.930812,0.254852,0.55776,0.253165,0.359754,0.0789869,0.369681,0.216088,0.36428,0.130952,0.726441,|0.7698,0.888769,0.676445,0.134496,0.233699,0.0220393,0.975146,0.738722,0.695521,0.870388,0.350074,0.471951,0.563766,0.930566,0.689299,0.741913,0.198342,0.505684,0.985757,0.513263,0.401423,0.735542,0.182424,0.510484,0.329708,0.455904,0.931953,0.461016,0.59755,0.538196,0.705375,0.25196,0.0538794,0.45303,0.192558,0.531341,0.682641,0.924041,0.809339,0.489379,0.727882,0.4279,0.288149,0.464668,0.443339,0.981586,0.7495,0.609407,0.0680656,0.139915,0.854237,0.695904,0.652899,0.501665,0.716862,0.968436,0.273113,0.701105,0.0816976,0.392784,0.0457728,0.983969,0.145359,0.183263,0.668807,0.1404,0.247674,0.412654,0.965342,0.778591,0.988033,0.482864,0.38361,0.433076,0.461391,0.22901,0.0848176,0.806785,0.207471,0.0461903,0.0918049,0.627917,0.444228,0.542067,0.359319,0.0715178,0.829198,0.503844,0.496571,0.982016,0.579912,0.550955,0.872784,0.304394,0.740407,0.505239,0.523655,0.891319,0.777916,0.286416,0.965017,0.633139,0.228141,0.620148,0.490381,0.0838195,0.605988,0.420444,0.690459,0.126962,0.65445,0.745106,0.629608,0.998822,0.685087,0.887565,0.444567,0.497682,0.496862,0.538404,0.92111,0.66926,0.841472,0.320571,0.410513,0.546862,0.0729421,0.454925,0.958333,0.980412,0.542329,0.35511,0.619893,0.125649,0.638104,0.478104,0.124144,0.705373,0.872953,0.809942,0.105392,0.327104,0.303797,0.680787,0.543157,0.799567,0.710502,0.969778,0.160165,0.530971,0.0397539,0.889878,0.817373,0.0561174,0.176274,0.28106,0.630231,0.994325,0.921746,0.624399,0.369657,0.517641,0.397316,0.151242,0.991635,0.279588,0.668804,0.330263,0.409507,0.107389,0.125311,0.548475,0.0235961,0.458149,0.74001,0.863314,0.438404,0.987862,0.534778,0.100609,0.395311,0.788757,0.544606,0.402921,0.953263,0.799901,0.425205,0.111017,0.709731,0.196836,0.481761,0.435668,0.213721,0.320999,0.270844,0.154129,0.0567698,0.62299,0.634737,0.0723836,0.869313,0.0667741,0.0132313,0.468461,0.59307,0.782874,0.207459,0.223032,0.398218,0.0432999,0.344321,0.974981,0.186875,0.16084,0.552495,0.346352,0.544779,0.435358,0.53484,0.87088,0.411756,0.273965,0.918099,0.861091,0.77716,0.461903,0.886604,0.635215,0.380838,0.118581,0.129141,0.809901,0.0344606,0.0307708,0.416195,0.196412,0.456986,0.300845,0.555851,0.210067,0.525987,0.185509,0.668303,0.572802,0.283395,0.0413117,0.65094,0.283542,0.346492,0.588837,0.0254681,0.55155,0.510269,0.841221,0.829286,0.771357,0.594345,0.328623,0.358076,0.366719,0.89007,0.00169569,0.173399,0.617952,0.587334,0.160889,0.47823,0.425901,0.0642817,0.0438876,0.208205,0.0889472,0.557905,0.895461,0.669457,0.0454684,0.657831,0.955189,0.499268,0.202622,0.051481,0.735179,0.321123,0.00481355,0.43473,0.370761,0.239634,0.566086,0.201094,0.366296,0.757302,0.560992,0.114679,0.754712,0.374034,0.361472,0.905559,0.258732,0.427958,0.635384,0.0462943,0.131665,0.606838,0.986834,0.490857,0.34837,0.954519,0.309433,0.333528,0.413334,0.775002,0.782916,0.472863,0.486697,0.825269,0.955254,0.72487,0.881478,0.828482,0.334006,0.729571,0.395092,0.577215,0.102143,0.743761,0.906723,0.552919,0.0639378,0.998807,0.865957,0.58618,0.219613,0.476302,0.602914,0.275164,0.888181,0.0516349,0.242127,0.267491,0.293337,0.934572,0.73817,0.770329,0.635021,0.373669,0.394953,0.863504,0.431031,0.2874,0.971068,0.764324,0.0611597,0.605916,0.0763411,0.554675,0.628251,0.0334857,0.0660722,0.280709,0.95869,0.609552,0.812286,0.124614,0.846117,0.771989,0.429256,0.396419,0.24601,0.357726,0.384274,0.746404,0.0800061,0.589868,0.486792,0.0973219,0.334636,0.74778,0.110328,0.591264,0.303231,0.968959,0.626662,0.0363654,0.442251,0.298713,0.969,0.448345,0.172307,0.420217,0.688981,0.387281,0.898618,0.615405,0.806841,0.476839,0.797857,0.314812,0.259217,0.74721,0.171935,0.151788,0.907,0.0208728,0.979163,0.892286,0.0256788,0.881806,0.842027,0.0930076,0.776671,0.398512,0.107274,0.723842,0.113075,0.787738,0.688719,0.273168,0.332852,0.775327,0.979884,0.441489,0.0970616,0.181347,0.221683,0.354814,0.187618,0.949514,0.512456,0.394204,0.602038,0.136139,0.0741587,0.707007,0.186018,0.701581,0.131559,0.978269,0.592481,0.689328,0.205792,0.821796,0.855482,0.702628,0.472634,0.819708,0.536614,0.22345,0.843546,0.386765,0.960862,0.0873736,0.707513,0.368719,0.106601,0.624082,0.36045,0.703893,0.384501,0.536281,0.073876,0.158685,0.2211,0.78649,0.441438,0.356747,0.510135,0.146877,0.706164,0.185541,0.123333,0.547462,0.338655,0.718297,0.193063,0.699956,0.524159,0.127989,0.712016,0.390642,0.723815,0.720817,0.315013,0.00456494,0.852646,0.692982,0.327792,0.383638,0.644408,0.509942,0.775323,0.598522,0.270349,0.782594,0.442428,0.798187,0.562066,0.97315,0.585701,0.711316,0.762037,0.311397,0.377668,0.473618,0.142704,0.0190367,0.985937,0.721331,0.487655,0.481773,0.287154,0.987131,0.859086,0.699121,0.0110649,0.251967,0.984688,0.557199,0.157747,0.105298,0.312564,0.84786,0.132422,0.385539,0.107063,0.605863,0.8473,0.101273,0.0738776,0.058491,0.0826859,0.607215,0.677527,0.136471,0.908113,0.957034,0.326128,0.261047,0.573837,0.343856,0.717052,0.554129,0.677222,0.948696,0.985727,0.785357,0.318407,0.660486,0.901559,0.995426,0.709747,0.296909,0.866322,0.484442,0.10194,0.604049,0.584586,0.852104,0.886415,0.517368,0.239477,0.584055,0.327034,0.341835,0.781433,0.984013,0.749507,0.0445956,0.676432,0.320073,0.667915,0.829011,0.719312,0.834791,0.762087,0.297291,0.522255,0.0219389,0.666493,0.779989,0.753977,0.83844,0.32627,0.863785,0.908614,0.376636,0.352019,0.415191,0.0128382,0.143145,0.357169,0.621085,0.358469,0.53927,0.322703,0.142143,0.622626,0.866362,0.560375,0.648588,0.27008,0.91921,0.702952,0.604952,0.447484,0.0561438,0.640642,0.259488,0.529148,0.52567,0.544756,0.33765,0.492994,0.0789151,0.157546,0.323972,0.328052,0.139751,0.91778,0.0874237,0.978009,0.146906,0.580305,0.289357,0.547599,0.79648,0.144284,0.225306,0.258444,0.364542,0.161145,0.387725,0.460556,0.346846,0.0427961,0.863807,0.818283,0.8235,0.953469,0.136825,0.119739,0.909284,0.774554,0.857426,0.255108,0.668637,0.288375,0.303578,0.491857,0.645942,0.373536,0.489065,0.593063,0.774356,0.728867,0.120683,0.659326,0.644592,0.60418,0.807114,0.0743766,0.638065,0.445018,0.871576,0.33737,0.234106,0.975048,0.235114,0.336142,0.433814,0.261514,0.661014,0.0436665,0.515512,0.760059,0.327865,0.719327,0.977892,0.45472,0.813947,0.318553,0.246265,0.472514,0.180593,0.658734,0.735125,0.347101,0.372953,0.720925,0.530849,0.479989,0.83116,0.872344,0.492827,0.133493,0.207975,0.185406,0.478537,0.603356,0.0845166,0.398825,0.679914,0.108155,0.824657,0.611151,0.639273,0.592565,0.839471,0.662302,0.00747257,0.88025,0.423599,0.220573,0.701195,0.316038,0.930593,0.8705,0.774463,0.357604,0.97857,0.618057,0.713448,0.922169,0.603492,0.926031,0.19708,0.614073,0.276043,0.638553,0.915219,0.0455438,0.856624,0.472239,0.0402108,0.796531,0.0656764,0.74043,0.892411,0.0128036,0.0858288,0.424834,0.691744,0.445895,0.937273,0.282,0.581422,0.561044,0.0195649,0.433889,0.852882,0.711797,0.916112,0.638646,0.00264889,0.234563,0.867334,0.603769,0.422451,0.51206,0.614445,0.139283,0.202949,0.645485,0.894564,0.663681,0.161469,0.413257,0.267455,0.564615,0.00991184,0.528672,0.465312,0.408816,0.551473,0.773273,0.75858,0.593838,0.847789,0.797958,0.48506,0.733601,0.645387,0.11034,0.635981,0.0897556,0.0848894,0.32302,0.0833074,0.479609,0.0388563,0.983855,0.982482,0.459593,0.286857,0.581475,0.280885,0.359577,0.277191,0.17564,0.501444,0.134854,0.390488,0.0369119,0.289909,0.662954,0.831198,0.407495,0.394038,0.750617,0.342012,0.535102,0.808219,0.948051,0.715249,0.999916,0.362607,0.449103,0.326559,0.581274,0.474547,0.625794,0.000977695,0.765186,0.0556321,0.833651,0.621921,0.358388,0.613933,0.570007,0.492751,0.562581,0.412136,0.833624,0.660164,0.691908,0.857686,0.409925,0.389142,0.192422,0.240559,0.661864,0.0951555,0.83452,0.210338,0.76019,0.688866,0.36987,0.926905,0.637095,0.391911,0.455873,0.00850499,0.187912,0.661885,0.410572,0.432039,0.198882,0.664926,0.919602,0.462523,0.0883816,0.0141397,0.138261,0.0302154,0.470713,0.417176,0.291711,0.916591,0.826847,0.0804354,0.477703,0.486312,0.929765,0.227427,0.274715,0.278904,0.585055,0.842561,0.75867,0.858528,0.511284,0.0033623,0.663716,0.541861,0.568628,0.227009,0.0340017,0.119751,0.136593,0.645374,0.280394,0.226427,0.196875,0.0822912,0.82608,0.702996,0.455102,0.482022,0.375638,0.0728234,0.233676,0.426835,0.234223,0.888614,0.743942,0.524745,0.883397,0.709934,0.165747,0.17479,0.656561,0.889534,0.349783,0.198619,0.907615,0.215732,0.779474,0.242725,0.88863,0.653422,0.990571,0.548247,0.101732,0.886906,0.344505,0.375155,0.842633,0.951925,0.35757,0.995217,0.895786,0.581134,0.278899,0.401262,0.64084,0.528503,0.940901,0.586823,0.799596,0.229713,0.443078,0.860262,0.800476,0.953122,0.793002,0.110417,0.579136,0.432628,0.824447,0.316612,0.832445,0.9018,0.294632,0.771664,0.105889,0.461637,0.942176,0.160861,0.322673,0.471667,0.32665,0.229275,0.903431,0.927606,0.570727,0.750677,0.0617621,0.879857,0.36859,0.500223,0.483693,0.894096,0.732337,0.47069,0.243559,0.481862,0.88237,0.0674297,0.953746,0.697533,0.274411,0.29716,0.811293,0.469572,0.676526,0.526341,0.573345,0.300237,0.906853,0.354309,0.280846,0.399867,0.285954,0.99498,0.935849,0.300494,0.464084,0.334906,0.310461,0.523565,0.841091,|0.102043,0.782448,0.0777677,0.960472,0.0295455,0.808537,0.217085,0.366994,0.393712,0.979503,0.543911,0.119745,0.854323,0.696025,0.481895,0.547778,0.566895,0.540302,0.83138,0.964059,0.0554046,0.415258,0.957581,0.0473986,0.854527,0.893206,0.856415,0.727701,0.32759,0.277713,0.954515,0.798755,0.406055,0.603572,0.916992,0.0812075,0.765815,0.838074,0.124393,0.662746,0.0339028,0.249953,0.119957,0.794904,0.917055,0.659127,0.882948,0.434647,0.937121,0.201116,0.497307,0.729159,0.507221,0.0302027,0.57711,0.149571,0.205708,0.0329281,0.664547,0.335822,0.298736,0.827112,0.575742,0.440624,0.3546,0.412401,0.531222,0.919591,0.516025,0.00223178,0.785409,0.0989433,0.707877,0.0115153,0.298539,0.251766,0.0825012,0.375674,0.810421,0.59496,0.719744,0.0841753,0.912679,0.801453,0.854632,0.575567,0.0558032,0.558467,0.187063,0.537702,0.933594,0.147194,0.626746,0.263843,0.0101164,0.0753874,0.474877,0.241009,0.277205,0.251405,0.145396,0.832884,0.207873,0.620938,0.252986,0.961525,0.596049,0.658047,0.792658,0.670755,0.124331,0.298615,0.850751,0.620056,0.0331274,0.724491,0.642182,0.890458,0.412178,0.939842,0.981248,0.509317,0.900337,0.0605296,0.602879,0.395294,0.193806,0.259082,0.904694,0.873896,0.410538,0.33732,0.150705,0.245974,0.193815,0.635783,0.0637725,0.216824,0.989153,0.643418,0.512179,0.162478,0.873092,0.655154,0.149711,0.367066,0.72859,0.998155,0.372821,0.64851,0.0739068,0.694262,0.382966,0.720839,0.420692,0.526586,0.386968,0.095414,0.296241,0.632442,0.522836,0.91774,0.934238,0.548085,0.867871,0.264088,0.721356,0.532359,0.800541,0.810436,0.397441,0.275187,0.6409,0.0961969,0.908144,0.531755,0.117008,0.310607,0.163591,0.665915,0.736857,0.576603,0.529243,0.968194,0.588094,0.63334,0.679092,0.700697,0.515634,0.566997,0.935413,0.492104,0.769059,0.871822,0.773732,0.478498,0.275282,0.695742,0.490874,0.382831,0.108901,0.17236,0.158825,0.890635,0.38625,0.735887,0.388349,0.995481,0.743738,0.900423,0.996768,0.758657,0.815753,0.285847,0.788037,0.343424,0.950438,0.724957,0.584741,0.173603,0.505647,0.434753,0.742677,0.613563,0.424736,0.712682,0.914571,0.114184,0.548609,0.978438,0.180327,0.61524,0.307812,0.411147,0.985242,0.901478,0.698167,0.726563,0.0385951,0.613403,0.854145,0.220574,0.722961,0.416503,0.463621,0.690579,0.310392,0.937496,0.00580847,0.182418,0.341907,0.0640533,0.671449,0.644278,0.297706,0.612023,0.42932,0.869933,0.139491,0.970663,0.00157541,0.302866,0.498903,0.80528,0.760407,0.102299,0.130943,0.824953,0.629518,0.506427,0.240379,0.509889,0.211114,0.862873,0.131867,0.659218,0.390233,0.762477,0.164402,0.46991,0.388074,0.762384,0.78468,0.850854,0.197354,0.0875455,0.557357,0.662569,0.10086,0.839571,0.820589,0.555549,0.0499004,0.886479,0.254856,0.101351,0.728988,0.851829,0.277015,0.397297,0.654481,0.156639,0.485594,0.36629,0.470176,0.220228,0.336996,0.806222,0.412568,0.688364,0.706552,0.663928,0.242519,0.638096,0.780542,0.304402,0.489954,0.941705,0.0118158,0.889673,0.701256,0.735124,0.598397,0.262381,0.656733,0.542024,0.445758,0.279483,0.234443,0.660355,0.503304,0.834009,0.232191,0.59047,0.787162,0.111226,0.717419,0.42871,0.944528,0.42157,0.0235493,0.180587,0.373509,0.212021,0.423154,0.333196,0.313863,0.495856,0.571325,0.833231,0.349139,0.760944,0.599811,0.548696,0.671102,0.807159,0.899463,0.571486,0.959086,0.681518,0.478705,0.393762,0.905767,0.702616,0.698573,0.83399,0.782847,0.677994,0.740398,0.202134,0.443693,0.514743,0.313603,0.876426,0.600452,0.198041,0.449288,0.261046,0.0553135,0.23177,0.451765,0.952856,0.675478,0.235727,0.313276,0.742061,0.838329,0.0189964,0.88687,0.350197,0.212039,0.672413,0.242466,0.105074,0.466956,0.699754,0.624132,0.111771,0.218087,0.265655,0.135055,0.72661,0.869781,0.539496,0.414364,0.248483,0.617198,0.991804,0.557947,0.570202,0.440518,0.134779,0.248872,0.7006,0.0154991,0.583379,0.249905,0.911011,0.883381,0.954705,0.296397,0.460402,0.591415,0.0645539,0.040171,0.131425,0.843227,0.24091,0.964281,0.316211,0.261295,0.294577,0.766195,0.595313,0.758949,0.941771,0.583938,0.71739,0.0959494,0.736874,0.990356,0.239222,0.239835,0.805708,0.452242,0.210718,0.388717,0.307251,0.610162,0.220936,0.696835,0.248368,0.919369,0.818317,0.963092,0.992044,0.818753,0.0751421,0.462576,0.955199,0.900478,0.864249,0.225412,0.192253,0.799275,0.367378,0.332721,0.932596,0.132172,0.494202,0.768908,0.508524,0.720923,0.0944284,0.00941336,0.957274,0.823901,0.151951,0.691851,0.260017,0.322618,0.308053,0.940925,0.877616,0.942214,0.658837,0.677958,0.314534,0.891409,0.652839,0.0403678,0.568977,0.584213,0.540142,0.920146,0.210619,0.129034,0.520507,0.655859,0.732526,0.536005,0.627015,0.985237,0.779121,0.80965,0.025412,0.0190508,0.621844,0.429687,0.0427387,0.274939,0.324437,0.251194,0.886685,0.787368,0.61036,0.25645,0.687417,0.412787,0.449199,0.903586,0.381804,0.0776182,0.844462,0.627024,0.83308,0.903998,0.639352,0.917283,0.320951,0.747546,0.32148,0.415263,0.348272,0.21335,0.792931,0.12496,0.570451,0.414205,0.315383,0.570014,0.870052,0.909449,0.331712,0.517727,0.391293,0.323439,0.517062,0.138464,0.823129,0.586399,0.649723,0.975707,0.99492,0.0271257,0.139249,0.668877,0.561649,0.353875,0.637492,0.804288,0.393948,0.398771,0.140398,0.624917,0.766992,0.517194,0.140907,0.595416,0.179905,0.864439,0.535576,0.331363,0.841378,0.842018,0.462885,0.33442,0.655203,0.387118,0.536128,0.196572,0.0362991,0.711555,0.424306,0.160797,0.375304,0.766249,0.939489,0.823016,0.499566,0.996173,0.836598,0.219806,0.124767,0.613737,0.375482,0.321226,0.578353,0.723847,0.681381,0.564281,0.770712,0.691577,0.574134,0.269725,0.332481,0.995261,0.114477,0.292722,0.960969,0.110547,0.549136,0.136079,0.847747,0.632379,0.59706,0.438282,0.381271,0.882392,0.0108252,0.793009,0.0625826,0.103652,0.525245,0.234348,0.940722,0.77704,0.0245456,0.368228,0.167408,0.784271,0.357934,0.785873,0.62721,0.205593,0.593739,0.926151,0.930962,0.211109,0.496381,0.983916,0.566912,0.781525,0.58116,0.89914,0.839593,0.516363,0.219147,0.974383,0.0446141,0.505172,0.902023,0.710695,0.829027,0.238769,0.175621,0.279538,0.316193,0.311881,0.321041,0.232171,0.821035,0.118068,0.884586,0.7101,0.242213,0.577906,0.458321,0.20283,0.25004,0.649007,0.947299,0.996886,0.951901,0.0961614,0.994401,0.254156,0.262394,0.310395,0.44259,0.57252,0.122309,0.288668,0.64052,0.982488,0.295304,0.903438,0.677981,0.0311872,0.491754,0.352908,0.776755,0.31815,0.700433,0.954216,0.619417,0.86783,0.562305,0.458624,0.0589744,0.410791,0.248044,0.407415,0.382149,0.0294474,0.26062,0.870463,0.289008,0.263942,0.410435,0.339224,0.0250774,0.281673,0.0195273,0.158814,0.817007,0.979973,0.364828,0.657186,0.602371,0.649728,0.45127,0.927046,0.0100528,0.371182,0.684986,0.673335,0.946253,0.531318,0.698276,0.992931,0.75197,0.242217,0.964083,0.72977,0.899975,0.776482,0.820884,0.629402,0.804405,0.245398,0.491986,0.442382,0.0430358,0.519516,0.658066,0.804461,0.294312,0.406268,0.876688,0.0542468,0.207657,0.200721,0.760483,0.191053,0.935791,0.709216,0.699671,0.0126744,0.611611,0.705748,0.789994,0.862393,0.00324827,0.339285,0.821963,0.734404,0.677498,0.662799,0.76175,0.961821,0.0822382,0.477327,0.27765,0.470818,0.383745,0.269318,0.332031,0.99871,0.509192,0.114912,0.771899,0.60893,0.445562,0.675107,0.751894,0.241228,0.696961,0.356986,0.558665,0.630061,0.815148,0.953321,0.57301,0.455999,0.445082,0.885059,0.660736,0.242971,0.336567,0.141223,0.15711,0.0890123,0.142083,0.271188,0.764846,0.0466887,0.962871,0.913862,0.665102,0.361412,0.320548,0.773913,0.468914,0.155221,0.759871,0.342882,0.775275,0.579427,0.123971,0.741848,0.707051,0.457626,0.796303,0.400594,0.537473,0.413178,0.146025,0.689189,0.42209,0.542982,0.128897,0.557404,0.934011,0.821996,0.176732,0.301215,0.0935035,0.504652,0.92452,0.474948,0.0252785,0.333824,0.98355,0.718158,0.550878,0.588249,0.84825,0.155219,0.871229,0.637468,0.42337,0.43937,0.0509474,0.884971,0.259139,0.742658,0.77108,0.74199,0.819408,0.85881,0.0927563,0.839146,0.129206,0.98463,0.7371,0.459674,0.680468,0.518686,0.374878,0.337557,0.437595,0.0691082,0.63352,0.784856,0.580601,0.993132,0.523633,0.235763,0.184476,0.143953,0.161985,0.439933,0.866685,0.870201,0.423867,0.204563,0.646352,0.115455,0.846931,0.74557,0.134453,0.322821,0.465272,0.485415,0.290958,0.837992,0.409497,0.948792,0.170922,0.415518,0.201508,0.849037,0.95869,0.488432,0.48064,0.179071,0.0157613,0.925229,0.658158,0.962404,0.186089,0.74178,0.459342,0.445206,0.277214,0.538985,0.893762,0.0273827,0.43647,0.593112,0.566206,0.92467,0.853728,0.826714,0.713041,0.108193,0.423133,0.00785339,0.921787,0.0472102,0.0290218,0.75751,0.932237,0.477567,0.312241,0.522833,0.900809,0.24829,0.0423599,0.286477,0.156452,0.0843784,0.698918,0.456111,0.640252,0.863798,0.887319,0.365118,0.915487,0.904682,0.87508,0.73386,0.748935,0.194095,0.828865,0.280008,0.159908,0.359647,0.272231,0.750094,0.497306,0.917543,0.43666,0.467892,0.157978,0.668709,0.141392,0.699069,0.306933,0.0824193,0.547188,0.161132,0.98306,0.666606,0.883524,0.518404,0.827086,0.229459,0.0390231,0.349807,0.504579,0.642923,0.0366485,0.615582,0.671259,0.36274,0.425022,0.674787,0.479357,0.516463,0.95915,0.975031,0.423225,0.878434,0.811668,0.62199,0.17363,0.886137,0.772425,|0.935028,0.992295,0.599133,0.937806,0.645622,0.530193,0.910744,0.879915,0.543644,0.421129,0.838595,0.400952,0.418137,0.49726,0.505422,0.333933,0.645346,0.559766,0.448595,0.601368,0.0626341,0.368064,0.684586,0.246012,0.848167,0.237352,0.467666,0.71279,0.226907,0.661776,0.9108,0.00805527,0.552767,0.196284,0.348837,0.457956,0.129407,0.367231,0.797016,0.206174,0.345762,0.997694,0.797208,0.604536,0.743748,0.201717,0.458907,0.295914,0.630996,0.0549737,0.637414,0.623758,0.195303,0.00815737,0.864021,0.202751,0.267934,0.928045,0.537379,0.235003,0.203831,0.911954,0.856875,0.236806,0.286377,0.0638397,0.209121,0.455092,0.309312,0.826133,0.251627,0.29519,0.231966,0.495319,0.603181,0.77523,0.451193,0.335777,0.338858,0.642796,0.362221,0.150034,0.41609,0.0423273,0.685964,0.951311,0.698214,0.491646,0.00202101,0.46465,0.526924,0.280425,0.181942,0.288758,0.445344,0.455577,0.716539,0.253188,0.170909,0.611363,0.051813,0.0621959,0.0939622,0.530128,0.323401,0.736392,0.947615,0.260443,0.644848,0.528878,0.321975,0.0725179,0.209536,0.557699,0.412563,0.0588185,0.327455,0.363991,0.426813,0.651082,0.416303,0.527286,0.121919,0.927166,0.0384313,0.0988705,0.23069,0.0219949,0.870467,0.0616813,0.511871,0.771904,0.142862,0.991461,0.114155,0.117937,0.799851,0.966977,0.955078,0.307842,0.811836,0.15284,0.313238,0.971588,0.403471,0.130403,0.0522105,0.828154,0.766816,0.00562459,0.436878,0.308686,0.234356,0.983633,0.524908,0.807119,0.167491,0.99199,0.759204,0.833275,0.103859,0.055926,0.651155,0.710881,0.182563,0.0332624,0.765055,0.255373,0.545217,0.391838,0.380438,0.401172,0.531594,0.182166,0.0383083,0.691553,0.67319,0.360991,0.258864,0.414264,0.916303,0.718808,0.842277,0.784384,0.0813306,0.934935,0.090725,0.608134,0.14825,0.552118,0.345917,0.871439,0.0810599,0.746384,0.599936,0.538973,0.65422,0.464744,0.158844,0.0626059,0.93429,0.477433,0.579624,0.399781,0.0424607,0.0530107,0.803071,0.969018,0.997283,0.820704,0.474507,0.968344,0.801854,0.720047,0.463103,0.863384,0.297108,0.532003,0.646304,0.587618,0.669788,0.734951,0.811939,0.517265,0.312891,0.609432,0.248206,0.420586,0.926571,0.758011,0.160216,0.363209,0.506994,0.803878,0.830672,0.295391,0.697341,0.334499,0.00578225,0.712995,0.644003,0.344424,0.0497152,0.101339,0.0236885,0.191081,0.858031,0.842559,0.50229,0.734931,0.558319,0.73124,0.984262,0.311165,0.962677,0.401631,0.154536,0.854866,0.0129179,0.774809,0.807499,0.0355185,0.967283,0.516033,0.310479,0.0693914,0.266074,0.325452,0.792312,0.482801,0.671045,0.148149,0.813942,0.446128,0.223611,0.107194,0.594676,0.187749,0.481244,0.764035,0.432804,0.700737,0.768553,0.658643,0.889449,0.75438,0.964855,0.5737,0.0201175,0.19859,0.834992,0.195493,0.918676,0.878187,0.0920433,0.303166,0.14162,0.596236,0.791509,0.860041,0.557701,0.777327,0.308164,0.0398111,0.245135,0.889735,0.908446,0.252133,0.283397,0.693123,0.726874,0.787352,0.679234,0.0438238,0.418428,0.889609,0.213184,0.0381798,0.429646,0.100421,0.202099,0.0300114,0.875326,0.83831,0.889488,0.106848,0.208063,0.595605,0.449384,0.868864,0.592682,0.0621817,0.235156,0.532832,0.754655,0.950294,0.0688373,0.812085,0.927017,0.430642,0.883825,0.145546,0.632049,0.215311,0.247455,0.150044,0.854783,0.732936,0.461537,0.171915,0.699652,0.817282,0.161029,0.752569,0.684874,0.254375,0.0509585,0.482385,0.123482,0.750928,0.258133,0.964613,0.154932,0.688515,0.643371,0.927089,0.839608,0.76539,0.535312,0.66086,0.954759,0.339936,0.918945,0.0317834,0.286731,0.98335,0.144649,0.66835,0.343863,0.645647,0.440297,0.424152,0.935744,0.339349,0.334894,0.548473,0.771412,0.613446,0.591344,0.29403,0.480092,0.541197,0.416673,0.514841,0.962329,0.135387,0.853734,0.968899,0.973758,0.188143,0.41612,0.61072,0.645608,0.743281,0.987399,0.0552351,0.142832,0.425491,0.576128,0.0855973,0.521187,0.355287,0.742437,0.625826,0.785477,0.81452,0.39017,0.737498,0.728153,0.0244029,0.651341,0.138225,0.259952,0.886793,0.328184,0.0395698,0.784733,0.0880845,0.842227,0.867534,0.390114,0.0886248,0.70846,0.34297,0.699192,0.962067,0.927204,0.380897,0.946131,0.409422,0.330233,0.109166,0.381816,0.658592,0.737143,0.147795,0.472698,0.633558,0.928262,0.324028,0.608651,0.680068,0.650968,0.546029,0.323423,0.40989,0.964031,0.910337,0.966702,0.709027,0.949565,0.608932,0.0637608,0.989215,0.207184,0.323569,0.323271,0.388621,0.662863,0.955857,0.328869,0.981274,0.258855,0.486846,0.0612161,0.49753,0.310214,0.598132,0.574509,0.340166,0.375344,0.801425,0.6966,0.464265,0.424359,0.669853,0.415086,0.440462,0.895468,0.657749,0.179794,0.535326,0.96482,0.254868,0.0741943,0.164975,0.252221,0.991167,0.206041,0.452034,0.778604,0.360598,0.528358,0.307071,0.743312,0.52501,0.509459,0.827861,0.37312,0.833245,0.237122,0.17539,0.378862,0.345915,0.662539,0.520296,0.010852,0.694519,0.744222,0.190676,0.177183,0.669842,0.556906,0.364668,0.594706,0.241669,0.761993,0.412708,0.812944,0.400474,0.664788,0.248121,0.774325,0.0386535,0.73681,0.882253,0.8266,0.159163,0.311886,0.121268,0.687501,0.595578,0.0722678,0.554117,0.464464,0.20167,0.760847,0.201769,0.920646,0.611518,0.414548,0.671742,0.0524216,0.42739,0.00138128,0.82352,0.896418,0.56981,0.0947846,0.518521,0.039301,0.236421,0.244179,0.498077,0.512289,0.527072,0.228323,0.467243,0.990541,0.982943,0.657531,0.490256,0.610177,0.267326,0.382496,0.236767,0.166432,0.211202,0.589961,0.736574,0.875976,0.768705,0.484344,0.0892971,0.240867,0.0923469,0.571384,0.950629,0.294816,0.254741,0.853264,0.0807637,0.510909,0.246722,0.811627,0.420658,0.776262,0.885709,0.595887,0.453191,0.16124,0.582856,0.779051,0.867534,0.538505,0.374144,0.805126,0.227325,0.968756,0.636527,0.0923773,0.436844,0.481616,0.328146,0.30118,0.692923,0.803687,0.070911,0.58073,0.56565,0.103168,0.745973,0.14111,0.333747,0.81292,0.0208223,0.674473,0.241528,0.419219,0.134779,0.963896,0.979007,0.0364724,0.998749,0.715119,0.27768,0.267538,0.652187,0.365044,0.898966,0.984129,0.55281,0.719388,0.723305,0.877048,0.374032,0.141856,0.244715,0.051581,0.373383,0.559588,0.0997116,0.346497,0.830094,0.701564,0.961716,0.192614,0.861312,0.148531,0.813617,0.587692,0.382717,0.983918,0.675616,0.990474,0.959642,0.831594,0.340282,0.479357,0.383936,0.307016,0.406106,0.783469,0.320176,0.0591047,0.280622,0.0370313,0.772025,0.000585318,0.00135565,0.496856,0.361084,0.257698,0.447549,0.911806,0.0445659,0.702107,0.762936,0.944523,0.0272117,0.0710492,0.602343,0.295961,0.888196,0.0385271,0.924689,0.0840799,0.762269,0.821889,0.190607,0.544186,0.402574,0.897179,0.215625,0.337777,0.975129,0.666908,0.101427,0.254943,0.169738,0.240472,0.231473,0.408656,0.550882,0.795521,0.82426,0.103867,0.0726385,0.03231,0.32132,0.703185,0.884051,0.785838,0.444504,0.540111,0.0320243,0.958162,0.295897,0.375499,0.32662,0.133923,0.833525,0.60562,0.543752,0.627491,0.871092,0.705472,0.866636,0.907876,0.514651,0.519868,0.889821,0.490969,0.839635,0.0337691,0.0758815,0.752275,0.594144,0.590529,0.417369,0.921525,0.493968,0.141842,0.303262,0.129493,0.989386,0.654573,0.874935,0.427315,0.420006,0.204237,0.556183,0.427952,0.0199383,0.476329,0.357606,0.577586,0.0863789,0.640805,0.742236,0.230124,0.794704,0.747969,0.740015,0.789291,0.511845,0.037461,0.812425,0.57311,0.771813,0.298351,0.474254,0.748483,0.523079,0.219356,0.780615,0.144184,0.475044,0.690698,0.746511,0.886706,0.860696,0.0042271,0.404129,0.767954,0.604459,0.501401,0.555817,0.946767,0.709401,0.238702,0.832506,0.489271,0.965256,0.56301,0.331386,0.652587,0.111355,0.0276533,0.623158,0.509455,0.270524,0.69939,0.332348,0.488311,0.535887,0.897657,0.0949101,0.0157893,0.802944,0.0725852,0.265911,0.980488,0.789297,0.398081,0.78299,0.86142,0.616473,0.106619,0.392339,0.886717,0.597973,0.971902,0.528875,0.0887981,0.964489,0.570513,0.206389,0.628577,0.972531,0.125511,0.549562,0.958936,0.192712,0.713383,0.640124,0.503391,0.771621,0.460432,0.682353,0.733873,0.258009,0.424893,0.557302,0.774594,0.610521,0.468468,0.497492,0.176898,0.0560241,0.927655,0.330523,0.00452375,0.539613,0.0982888,0.885862,0.105105,0.279251,0.358531,0.176366,0.230111,0.469819,0.676149,0.342258,0.197115,0.130557,0.332028,0.531126,0.205633,0.515142,0.687611,0.0635417,0.738379,0.511152,0.904692,0.176175,0.79906,0.753904,0.917537,0.974622,0.376943,0.562102,0.24815,0.945015,0.994516,0.732125,0.890752,0.611226,0.99574,0.101155,0.0600558,0.216002,0.0530167,0.614116,0.590788,0.938347,0.820029,0.686705,0.724557,0.955311,0.38033,0.729708,0.592551,0.45348,0.263663,0.554377,0.183237,0.824311,0.0518281,0.703206,0.781558,0.396667,0.888925,0.795764,0.0519985,0.850093,0.967793,0.884165,0.0508205,0.744929,0.290629,0.647513,0.669605,0.636266,0.53012,0.310068,0.838199,0.135528,0.750077,0.787723,0.140011,0.688715,0.435447,0.656192,0.00853789,0.772683,0.542994,0.11331,0.828378,0.610296,0.473774,0.716831,0.870687,0.640113,0.853499,0.398738,0.36584,0.148782,0.0796966,0.388144,0.261907,0.747682,0.42874,0.526747,0.624882,0.159851,0.208146,0.319673,0.673758,0.737699,0.909983,0.939586,0.880166,0.141874,0.359112,0.638062,0.387332,0.699571,0.947668,0.923624,0.12627,0.253862,0.492952,0.957998,0.495093,0.654356,0.344545,0.871607,0.817709,0.366303,0.528086,0.868114,0.549297,0.768231,0.954582,0.146195,0.806976,0.276308,0.991744,0.799321,|0.218714,0.104618,0.08245,0.0572503,0.158763,0.790841,0.354765,0.440548,0.136084,0.965436,0.102427,0.564521,0.142548,0.371902,0.0187443,0.192082,0.815232,0.824204,0.534589,0.50725,0.828714,0.611569,0.223678,0.707871,0.158788,0.710557,0.393547,0.232058,0.696935,0.481002,0.209449,0.712813,0.58795,0.131604,0.985717,0.850167,0.341071,0.0955505,0.694425,0.753543,0.324667,0.323419,0.671254,0.0866075,0.133499,0.915009,0.147757,0.901814,0.359431,0.282281,0.45535,0.376263,0.796049,0.807317,0.432612,0.565464,0.934263,0.390645,0.802099,0.759621,0.844277,0.732457,0.664963,0.576992,0.356641,0.925644,0.523605,0.899342,0.391441,0.126663,0.0786493,0.862911,0.981096,0.995092,0.736445,0.128378,0.716149,0.347843,0.581925,0.883701,0.427893,0.147165,0.079592,0.0134467,0.166875,0.597844,0.691781,0.22036,0.734153,0.404565,0.254771,0.0632507,0.222166,0.966816,0.815347,0.712839,0.849549,0.510491,0.617406,0.403886,0.135234,0.476284,0.65224,0.146842,0.878105,0.867961,0.162482,0.401812,0.52454,0.435543,0.433741,0.741871,0.781668,0.0264812,0.664496,0.0639703,0.962216,0.564038,0.576998,0.978971,0.199082,0.0642961,0.00445759,0.804394,0.560494,0.606734,0.0200073,0.144506,0.751498,0.0679759,0.489555,0.13249,0.156103,0.384556,0.329942,0.217858,0.552117,0.663748,0.54382,0.982911,0.137509,0.781307,0.494998,0.0726106,0.322885,0.23567,0.290368,0.200158,0.996482,0.925393,0.969485,0.7838,0.561099,0.895892,0.683503,0.558732,0.517752,0.595498,0.425713,0.710051,0.431282,0.34088,0.949744,0.765456,0.0989299,0.246734,0.493544,0.561065,0.542359,0.195804,0.372419,0.633593,0.219956,0.0625142,0.971521,0.242001,0.0198283,0.890356,0.254752,0.273265,0.853968,0.9321,0.915627,0.846294,0.571157,0.366417,0.905544,0.508675,0.266765,0.00456941,0.329353,0.388915,0.016526,0.733205,0.766035,0.0391157,0.267352,0.827784,0.938235,0.666093,0.546007,0.385031,0.935199,0.0149311,0.279321,0.202433,0.577679,0.422643,0.101266,0.993532,0.00327063,0.71357,0.00461429,0.627311,0.698168,0.395118,0.212307,0.585362,0.266223,0.740129,0.778209,0.479973,0.485773,0.766524,0.734506,0.56374,0.389808,0.102817,0.88968,0.580002,0.576522,0.618198,0.196708,0.850048,0.827069,0.476761,0.274755,0.587214,0.868496,0.305727,0.139342,0.30249,0.493806,0.674751,0.545276,0.64312,0.482669,0.271478,0.766732,0.154446,0.753293,0.380322,0.791125,0.251446,0.934295,0.000466287,0.0555652,0.388133,0.0772135,0.577204,0.173603,0.296925,0.802153,0.807849,0.409256,0.642101,0.0686213,0.0346279,0.482409,0.788003,0.510883,0.886658,0.860683,0.717802,0.199879,0.0923714,0.563327,0.337282,0.747211,0.174582,0.788942,0.354419,0.225391,0.730379,0.404347,0.223673,0.200848,0.334108,0.0946656,0.122523,0.0132691,0.825626,0.37633,0.213333,0.819593,0.85802,0.141452,0.0594677,0.479686,0.98199,0.504314,0.867806,0.573498,0.468963,0.445513,0.336454,0.776432,0.874476,0.895756,0.9622,0.220833,0.00788331,0.734785,0.946696,0.373132,0.555931,0.416335,0.470561,0.601995,0.0829095,0.118507,0.0563805,0.475382,0.0931855,0.604426,0.22381,0.631597,0.221679,0.342188,0.103917,0.232639,0.625481,0.330339,0.52747,0.111449,0.0822746,0.34124,0.870402,0.0222397,0.763205,0.974334,0.266216,0.759683,0.421955,0.391548,0.972951,0.789697,0.579137,0.224713,0.050424,0.927806,0.910267,0.543104,0.719217,0.827259,0.796742,0.264847,0.334908,0.679399,0.401708,0.182475,0.391204,0.22501,0.96761,0.615392,0.692883,0.585243,0.511298,0.849706,0.268096,0.229924,0.43823,0.233994,0.81561,0.251639,0.433388,0.59018,0.405346,0.948569,0.0931161,0.454841,0.0515313,0.301723,0.627165,0.0326811,0.238464,0.238716,0.198237,0.329998,0.147349,0.2056,0.233932,0.883302,0.91086,0.315963,0.0223107,0.558496,0.0689132,0.697962,0.351603,0.548181,0.00332206,0.374731,0.496675,0.704539,0.818181,0.659415,0.674336,0.737986,0.621953,0.0499738,0.0764219,0.318381,0.993505,0.507396,0.166823,0.611786,0.956284,0.353414,0.226636,0.370857,0.0469691,0.439723,0.859631,0.42726,0.697416,0.352429,0.192801,0.108677,0.0144982,0.572552,0.688355,0.836287,0.823274,0.332778,0.825032,0.232698,0.184359,0.523949,0.340907,0.707363,0.37005,0.351303,0.952511,0.132761,0.372679,0.529549,0.891753,0.119182,0.457882,0.0486332,0.475465,0.233782,0.587226,0.45764,0.555104,0.458224,0.76473,0.62148,0.453837,0.101116,0.808123,0.572104,0.0692258,0.0461433,0.155781,0.700511,0.99702,0.781302,0.986356,0.838009,0.4164,0.098404,0.776699,0.0539209,0.844661,0.310938,0.692879,0.0665718,0.174224,0.523107,0.652569,0.197629,0.868607,0.152869,0.572915,0.730922,0.904815,0.982733,0.0292144,0.094713,0.736853,0.741797,0.516247,0.0731876,0.242466,0.919012,0.728112,0.205576,0.926811,0.668648,0.757517,0.625193,0.814749,0.522865,0.871209,0.863517,0.110388,0.287289,0.0503253,0.359987,0.0893998,0.659965,0.0582093,0.407337,0.739108,0.0115692,0.48821,0.00784808,0.908435,0.877976,0.843965,0.146655,0.232669,0.0264292,0.826397,0.938674,0.54624,0.396584,0.541001,0.639005,0.214346,0.0558175,0.854686,0.619461,0.657326,0.687966,0.50983,0.606731,0.801084,0.350011,0.506475,0.696067,0.399198,0.323197,0.313681,0.634473,0.83511,0.45831,0.40062,0.962583,0.895261,0.571998,0.982013,0.667155,0.424501,0.75871,0.293466,0.282742,0.0802463,0.0207824,0.695601,0.16791,0.749022,0.0844572,0.517723,0.683061,0.193414,0.558917,0.474448,0.610016,0.344238,0.738268,0.430955,0.220107,0.29138,0.70334,0.590634,0.532582,0.43365,0.838406,0.936793,0.671065,0.552206,0.979553,0.440923,0.602928,0.654444,0.237078,0.617887,0.0499637,0.735018,0.368283,0.800639,0.195009,0.329591,0.739073,0.510304,0.571369,0.875215,0.859353,0.170486,0.446243,0.827419,0.809269,0.0914791,0.0898781,0.82243,0.798922,0.195333,0.981794,0.335554,0.952502,0.554555,0.501506,0.0392802,0.980561,0.0279477,0.665717,0.412322,0.938531,0.167913,0.952571,0.112856,0.0305887,0.627764,0.992401,0.704278,0.73596,0.104734,0.643082,0.457131,0.562366,0.158386,0.900668,0.0852541,0.880234,0.612086,0.150739,0.487514,0.250703,0.579241,0.405262,0.704752,0.942385,0.387125,0.830089,0.62659,0.0947369,0.0376479,0.849401,0.56487,0.510017,0.522292,0.392886,0.0981176,0.00796258,0.972093,0.66299,0.588096,0.0705606,0.736588,0.209143,0.391568,0.0557986,0.419623,0.318112,0.929301,0.819097,0.860405,0.755116,0.94602,0.69533,0.165575,0.308681,0.0897052,0.907795,0.378868,0.134492,0.716832,0.0800282,0.893431,0.928165,0.688225,0.237564,0.459633,0.21874,0.255461,0.576107,0.633024,0.108965,0.563851,0.153932,0.987291,0.959958,0.223825,0.997862,0.0717845,0.168287,0.902305,0.862547,0.331402,0.369124,0.719133,0.487149,0.455028,0.744345,0.318067,0.985803,0.442785,0.308411,0.257035,0.158163,0.222047,0.295943,0.791403,0.756484,0.533423,0.727427,0.462978,0.564582,0.163552,0.0070588,0.63115,0.660268,0.145678,0.276591,0.463229,0.147616,0.231732,0.0328487,0.345108,0.976923,0.114141,0.0944576,0.324999,0.243374,0.382844,0.355312,0.989598,0.413142,0.139862,0.561153,0.597129,0.329486,0.0546114,0.606827,0.715432,0.838223,0.5163,0.305733,0.801937,0.793301,0.423273,0.9617,0.744761,0.430727,0.139677,0.993268,0.851776,0.837096,0.0346326,0.778079,0.0879155,0.89957,0.882571,0.736491,0.068108,0.992298,0.719496,0.125499,0.761181,0.883601,0.0148873,0.125242,0.492038,0.0719191,0.663783,0.715322,0.955491,0.273441,0.906668,0.0685025,0.517729,0.40144,0.877781,0.662308,0.439447,0.77458,0.611729,0.0249774,0.69477,0.166259,0.878564,0.62824,0.685524,0.950373,0.00842053,0.4092,0.971486,0.909997,0.740722,0.475991,0.424349,0.3995,0.675698,0.200142,0.924286,0.0616065,0.718801,0.926955,0.412064,0.545759,0.659141,0.64491,0.645655,0.239618,0.406968,0.822687,0.879657,0.140341,0.249096,0.787475,0.49964,0.134876,0.966194,0.428378,0.0628365,0.163546,0.915796,0.312193,0.786732,0.960432,0.336762,0.728442,0.595874,0.900668,0.603221,0.0475926,0.883106,0.353543,0.288229,0.393194,0.964439,0.0903226,0.544191,0.24061,0.0411435,0.00300765,0.189805,0.41162,0.75568,0.148338,0.619412,0.773381,0.298976,0.965371,0.660912,0.0277655,0.980652,0.623717,0.303315,0.390041,0.762455,0.509937,0.369992,0.449129,0.546717,0.481773,0.738381,0.940207,0.927258,0.188575,0.203727,0.423605,0.349522,0.871754,0.581099,0.180583,0.426158,0.182734,0.741037,0.134783,0.251899,0.555459,0.636811,0.412637,0.789264,0.24425,0.630325,0.281888,0.43695,0.98515,0.49771,0.582363,0.391202,0.965255,0.433634,0.332274,0.731423,0.977017,0.614892,0.795744,0.340873,0.0431631,0.344195,0.661794,0.972793,0.814714,0.40636,0.236285,0.00624192,0.771053,0.976933,0.531029,0.198159,0.821475,0.758542,0.265283,0.448907,0.89262,0.194964,0.869765,0.0647668,0.431297,0.664278,0.189395,0.102264,0.365195,0.143465,0.519358,0.340236,0.156284,0.254765,0.937746,0.231673,0.642446,0.704177,0.160648,0.433576,0.0999032,0.315834,0.382908,0.436628,0.960039,0.505189,0.269493,0.771897,0.345425,0.534769,0.225789,0.114912,0.797213,0.634268,0.762893,0.217963,0.92035,0.305487,0.0822814,0.881445,0.760994,0.75444,0.413068,0.78783,0.201617,0.498873,0.616377,0.216713,0.887809,0.655423,0.691168,0.946024,0.601807,0.107433,0.146151,0.166893,0.00062871,0.676988,0.149169,0.144673,0.837732,0.161766,0.775466,0.424736,0.612423,0.272147,0.00731546,0.64636,0.626598,0.423211,0.516639,0.811719,0.540933,0.369104,0.129671,0.891732,0.422738,0.376678,0.94483,0.0977417,|0.0736316,0.253363,0.125084,0.877875,0.440008,0.056936,0.151082,0.740651,0.0544456,0.149113,0.191727,0.896947,0.135908,0.942775,0.97931,0.807489,0.225426,0.67406,0.320538,0.0155568,0.306286,0.868342,0.139743,0.679847,0.0175692,0.936739,0.979281,0.0851209,0.0877381,0.9457,0.359588,0.662317,0.268131,0.171089,0.38429,0.602543,0.245989,0.1501,0.954984,0.934183,0.617159,0.9165,0.145036,0.1032,0.511049,0.735866,0.60412,0.566101,0.420464,0.930443,0.27327,0.498328,0.216333,0.339468,0.804059,0.98032,0.341774,0.717896,0.222803,0.359895,0.354928,0.06313,0.476605,0.35912,0.23024,0.620131,0.973057,0.551595,0.964245,0.297161,0.36483,0.126416,0.231707,0.179779,0.673822,0.83532,0.47122,0.759978,0.102865,0.374347,0.564984,0.476956,0.776071,0.939952,0.523295,0.4435,0.403899,0.460938,0.509326,0.0318719,0.918011,0.679379,0.877421,0.606739,0.179051,0.215074,0.648674,0.458139,0.782331,0.579042,0.592187,0.587763,0.32274,0.709917,0.22607,0.763372,0.270634,0.609762,0.172009,0.483393,0.131333,0.708263,0.770954,0.631305,0.361103,0.673859,0.924175,0.198122,0.630068,0.875469,0.425918,0.900124,0.660187,0.788365,0.601529,0.570094,0.64543,0.478557,0.557011,0.760774,0.0822003,0.155541,0.080716,0.212121,0.959047,0.942733,0.797056,0.447419,0.229071,0.689864,0.221052,0.785949,0.425205,0.634397,0.231076,0.116576,0.0261506,0.196445,0.784969,0.955604,0.662206,0.174728,0.273437,0.0160352,0.0405095,0.6568,0.939086,0.757643,0.575525,0.756103,0.347302,0.388597,0.200937,0.936725,0.865737,0.0894282,0.0878863,0.547818,0.0187482,0.399189,0.143361,0.328661,0.130304,0.95397,0.67019,0.201276,0.49545,0.449065,0.56498,0.0257782,0.368728,0.524487,0.129344,0.2335,0.545126,0.321101,0.835621,0.777043,0.17004,0.730638,0.354625,0.790756,0.244342,0.417628,0.375462,0.881531,0.184294,0.380818,0.475178,0.827899,0.851492,0.209968,0.358218,0.952221,0.44431,0.430377,0.989381,0.0426537,0.405007,0.164056,0.455183,0.871628,0.754958,0.758465,0.122268,0.783825,0.0619859,0.0577094,0.965967,0.546612,0.436858,0.290908,0.626949,0.908312,0.457224,0.145365,0.766852,0.782321,0.716813,0.390342,0.566745,0.362211,0.862298,0.958808,0.99414,0.0800765,0.766796,0.284242,0.623573,0.640971,0.165678,0.433702,0.368746,0.876423,0.794151,0.39581,0.947592,0.745979,0.261828,0.970495,0.780872,0.765149,0.418144,0.948623,0.161293,0.261585,0.834906,0.145951,0.547302,0.495407,0.335289,0.476514,0.591496,0.773992,0.926553,0.539731,0.644633,0.909914,0.264892,0.864756,0.777488,0.376469,0.184454,0.289652,0.515692,0.216307,0.584414,0.21483,0.392324,0.454886,0.0959655,0.619502,0.234916,0.522249,0.110475,0.335602,0.601565,0.982813,0.676978,0.338268,0.48604,0.626549,0.00544095,0.755348,0.777496,0.987213,0.239289,0.332598,0.430298,0.675769,0.421171,0.639913,0.553951,0.128264,0.277642,0.805627,0.762312,0.700478,0.121322,0.810679,0.42655,0.575751,0.273027,0.976415,0.305661,0.485192,0.287186,0.0364156,0.764279,0.511572,0.345507,0.708552,0.765969,0.492847,0.197986,0.0356765,0.86428,0.832805,0.0257535,0.201248,0.31415,0.326785,0.225049,0.522131,0.303373,0.390213,0.180565,0.629022,0.921863,0.130949,0.133844,0.40817,0.553035,0.428053,0.253255,0.441534,0.760886,0.590759,0.358313,0.495636,0.561847,0.261616,0.459158,0.14827,0.829716,0.0664406,0.494278,0.0606793,0.9033,0.612788,0.634627,0.563356,0.856528,0.857332,0.412439,0.638945,0.237244,0.019785,0.0183549,0.336585,0.44027,0.665014,0.642497,0.139133,0.131832,0.71675,0.519757,0.185057,0.79607,0.930321,0.785456,0.487523,0.366611,0.724696,0.43134,0.745286,0.258773,0.34797,0.55628,0.292424,0.422225,0.244025,0.135669,0.762317,0.0600855,0.691033,0.0935982,0.537132,0.329103,0.504287,0.519863,0.084735,0.331963,0.926688,0.147534,0.525303,0.889506,0.49444,0.114619,0.976744,0.173866,0.269606,0.318048,0.165374,0.939318,0.0194363,0.933716,0.492951,0.26731,0.728651,0.510924,0.259343,0.876169,0.579112,0.956601,0.542694,0.890955,0.300507,0.901873,0.941403,0.0453272,0.772681,0.74021,0.956784,0.177736,0.773506,0.510472,0.74429,0.239408,0.961652,0.56698,0.900213,0.979742,0.839348,0.655135,0.723957,0.431285,0.951814,0.541762,0.44865,0.646628,0.315202,0.584146,0.0971251,0.186833,0.0736248,0.375382,0.00495255,0.597814,0.509216,0.225967,0.592944,0.556836,0.00269926,0.242104,0.730696,0.595155,0.878901,0.130759,0.6347,0.764168,0.509938,0.627486,0.140407,0.335579,0.949894,0.931453,0.321145,0.611762,0.391796,0.31771,0.0169033,0.767004,0.689507,0.787666,0.248931,0.737929,0.252321,0.757883,0.736092,0.744568,0.10884,0.977178,0.129375,0.46019,0.439501,0.617559,0.194106,0.479813,0.663386,0.827537,0.519325,0.958657,0.899543,0.288584,0.560465,0.744067,0.268772,0.614187,0.0178159,0.375541,0.147121,0.416445,0.786959,0.956902,0.571166,0.0383613,0.287461,0.204378,0.200393,0.55496,0.910693,0.142559,0.310713,0.107185,0.364664,0.590998,0.887937,0.174074,0.624768,0.556639,0.769895,0.793304,0.515603,0.271379,0.288492,0.839891,0.0634168,0.517409,0.0589394,0.134816,0.675383,0.344709,0.330812,0.173431,0.425069,0.81342,0.935305,0.963225,0.995759,0.0608132,0.556413,0.853134,0.112984,0.056657,0.826543,0.970543,0.884221,0.768857,0.784169,0.747206,0.184993,0.744906,0.78396,0.661076,0.165142,0.108888,0.840084,0.795568,0.215097,0.0406303,0.107376,0.0191255,0.523045,0.0129634,0.259721,0.647515,0.951382,0.306269,0.266607,0.0913658,0.348504,0.879947,0.437163,0.882803,0.932952,0.645271,0.709953,0.791075,0.728142,0.750388,0.570989,0.390073,0.268512,0.0130718,0.00764227,0.386565,0.349604,0.0719128,0.858319,0.9696,0.593524,0.682607,0.673013,0.470908,0.560766,0.0935501,0.748804,0.419711,0.58225,0.134234,0.949441,0.833145,0.498262,0.404149,0.345564,0.449755,0.827429,0.979023,0.255988,0.3824,0.297247,0.694878,0.889057,0.171097,0.667705,0.773344,0.955171,0.193807,0.717158,0.511377,0.78098,0.0115307,0.0605149,0.319786,0.943408,0.103078,0.477174,0.256494,0.289758,0.7793,0.703914,0.496249,0.129905,0.771944,0.116515,0.463587,0.381523,0.697846,0.844817,0.675932,0.516536,0.914855,0.766768,0.48176,0.712525,0.0345439,0.45872,0.758388,0.879029,0.480002,0.178342,0.301694,0.379041,0.46617,0.279173,0.610846,0.161876,0.607139,0.722301,0.873771,0.10329,0.268587,0.558214,0.189214,0.793005,0.333301,0.999084,0.0303698,0.308826,0.973012,0.263617,0.470673,0.0663543,0.119695,0.853522,0.487236,0.0119471,0.300422,0.406944,0.528865,0.956222,0.0294805,0.154718,0.942214,0.803358,0.237355,0.0980555,0.417151,0.501883,0.738424,0.534296,0.611349,0.760973,0.649823,0.192376,0.421082,0.582936,0.865604,0.522132,0.629194,0.0323809,0.306551,0.733084,0.0309942,0.712442,0.0381812,0.896036,0.36313,0.893027,0.438496,0.0248404,0.379305,0.430701,0.663967,0.244948,0.169548,0.446463,0.688371,0.102331,0.46424,0.213431,0.887429,0.497619,0.158251,0.310787,0.371967,0.139525,0.324879,0.418461,0.797858,0.121947,0.0849743,0.292932,0.90695,0.590641,0.979451,0.932144,0.252924,0.427648,0.968581,0.841601,0.321989,0.762915,0.941902,0.367351,0.28004,0.65155,0.336593,0.404616,0.185141,0.212021,0.302634,0.479862,0.256205,0.085552,0.432314,0.569178,0.466921,0.426245,0.567749,0.298325,0.208149,0.320578,0.778513,0.682627,0.846101,0.560785,0.228364,0.412589,0.790355,0.862447,0.76461,0.575022,0.0212665,0.922571,0.773187,0.884813,0.493161,0.0630437,0.963873,0.489905,0.969406,0.00366181,0.506463,0.764415,0.422885,0.766954,0.0856354,0.317481,0.580191,0.756848,0.934688,0.857679,0.645992,0.381728,0.829936,0.696223,0.716535,0.240915,0.420048,0.694118,0.198818,0.935633,0.780231,0.276709,0.606236,0.995184,0.538798,0.829452,0.503774,0.505783,0.751044,0.725123,0.50375,0.454767,0.472769,0.905386,0.246977,0.729529,0.900205,0.0439361,0.723338,0.172537,0.368829,0.834525,0.154503,0.301868,0.680079,0.184511,0.875256,0.605327,0.137571,0.638466,0.393683,0.820029,0.36447,0.791215,0.819908,0.00342566,0.410775,0.173092,0.104145,0.497587,0.87227,0.735043,0.56073,0.649848,0.470261,0.791629,0.940202,0.0818207,0.60173,0.532746,0.597126,0.942158,0.945562,0.284984,0.0742,0.758352,0.686907,0.15443,0.785818,0.273659,0.245342,0.237777,0.869098,0.26484,0.794501,0.502638,0.759419,0.79135,0.998505,0.538256,0.596382,0.927141,0.73313,0.973684,0.315686,0.848791,0.92947,0.762898,0.0588753,0.109035,0.892149,0.843945,0.0985832,0.229703,0.385106,0.866091,0.856758,0.187698,0.803225,0.27038,0.039368,0.94452,0.495845,0.742947,0.665012,0.882136,0.411091,0.998754,0.213931,0.239683,0.770906,0.858282,0.457169,0.710968,0.39706,0.292024,0.874516,0.559917,0.559394,0.247394,0.186589,0.247861,0.188008,0.080385,0.944093,0.352885,0.391657,0.410441,0.305565,0.711588,0.942861,0.659851,0.282304,0.72635,0.294555,0.780122,0.993245,0.203088,0.835766,0.100789,0.437181,0.952948,0.422729,0.433798,0.443841,0.0666575,0.262346,0.422343,0.820908,0.820797,0.336645,0.468305,0.0283773,0.113322,0.998397,0.352276,0.807565,0.844492,0.779864,0.439435,0.610629,0.120514,0.331882,0.870372,0.325387,0.828831,0.245478,0.118823,0.978196,0.0568816,0.158794,0.0840676,0.468722,0.565324,0.212789,0.451705,0.227662,0.226941,0.703778,0.70009,0.905195,0.171147,0.90059,0.73256,0.0543543,0.632792,0.0348966,0.150294,0.436793,0.339725,0.228386,0.53392,0.956067,0.193471,0.833588,0.623535,|0.142181,0.857633,0.227169,0.545145,0.117101,0.712023,0.538811,0.780588,0.810501,0.10344,0.700867,0.429937,0.200775,0.199091,0.708891,0.792892,0.150006,0.982618,0.612595,0.0708719,0.492079,0.96533,0.474846,0.759154,0.632598,0.206293,0.0788516,0.828259,0.789345,0.351874,0.241353,0.617612,0.885772,0.355977,0.99226,0.627932,0.000518322,0.958767,0.900457,0.891847,0.929343,0.501252,0.291405,0.486607,0.193312,0.0833628,0.504772,0.863144,0.691007,0.35483,0.847195,0.47394,0.463725,0.786505,0.0930253,0.517878,0.701822,0.323744,0.622149,0.498942,0.958973,0.696305,0.205981,0.377173,0.049364,0.321662,0.0181825,0.682789,0.815888,0.419182,0.610451,0.311427,0.183134,0.532813,0.950417,0.676332,0.114913,0.1917,0.662397,0.784128,0.381883,0.197901,0.325493,0.270773,0.262233,0.974891,0.925569,0.559343,0.043172,0.510306,0.335122,0.474798,0.226973,0.995359,0.954317,0.54508,0.362042,0.972441,0.542019,0.609904,0.910577,0.568753,0.495518,0.710635,0.63963,0.207282,0.475424,0.657253,0.957381,0.120553,0.975693,0.516544,0.26958,0.740925,0.744447,0.693886,0.654092,0.744087,0.74024,0.373323,0.495799,0.485747,0.336658,0.269969,0.914036,0.820037,0.585132,0.103691,0.775857,0.277489,0.457025,0.836582,0.0989412,0.321261,0.481572,0.933366,0.259022,0.349299,0.508166,0.93499,0.467627,0.246552,0.752054,0.45492,0.1438,0.934597,0.658286,0.0142387,0.337907,0.475661,0.622954,0.123424,0.684579,0.565174,0.77187,0.146821,0.218312,0.893403,0.732459,0.71835,0.242562,0.447496,0.0198481,0.274675,0.323911,0.727182,0.226833,0.162633,0.48134,0.442807,0.764375,0.315673,0.146671,0.54782,0.84156,0.642282,0.721277,0.971876,0.0648232,0.479041,0.963744,0.146183,0.61219,0.654496,0.359331,0.175243,0.630827,0.333473,0.420117,0.371551,0.627115,0.695657,0.107218,0.527575,0.642911,0.0127648,0.70747,0.11811,0.153447,0.407134,0.815374,0.00970501,0.871111,0.126583,0.579637,0.171919,0.151344,0.634473,0.816916,0.584462,0.967233,0.744837,0.374956,0.395038,0.0746593,0.821147,0.814103,0.39937,0.909685,0.909754,0.617065,0.809712,0.0462074,0.621146,0.528816,0.899469,0.00777024,0.983537,0.72885,0.306337,0.244526,0.657429,0.808791,0.860294,0.387172,0.650848,0.222058,0.29511,0.105551,0.177779,0.826453,0.298225,0.752763,0.732765,0.20853,0.349453,0.934165,0.934468,0.983932,0.0356387,0.0318839,0.208009,0.101466,0.281651,0.419457,0.0839816,0.257477,0.908475,0.392479,0.587685,0.185256,0.305754,0.896398,0.184408,0.650781,0.684747,0.57135,0.69061,0.707154,0.195723,0.97443,0.82022,0.554717,0.512501,0.398801,0.104328,0.452023,0.61568,0.541803,0.0831329,0.265721,0.874802,0.741716,0.398241,0.674972,0.652972,0.959033,0.576044,0.383734,0.225756,0.498914,0.841712,0.868073,0.0762526,0.0335744,0.14583,0.452682,0.00610763,0.475303,0.821812,0.92925,0.136722,0.985809,0.824869,0.170802,0.912099,0.150817,0.910903,0.760087,0.32785,0.0355251,0.762234,0.192777,0.966929,0.187132,0.978322,0.683443,0.323347,0.871478,0.582929,0.622724,0.725077,0.934669,0.265095,0.376306,0.0874135,0.605386,0.524053,0.921327,0.999549,0.870123,0.976217,0.704542,0.178861,0.330538,0.886002,0.235862,0.560577,0.783887,0.572889,0.0164591,0.57043,0.0603601,0.79196,0.841903,0.711939,0.98865,0.670612,0.949424,0.38859,0.0558335,0.876094,0.956065,0.885332,0.592505,0.840802,0.262043,0.704914,0.658321,0.282476,0.563039,0.0671732,0.419536,0.702562,0.366136,0.588979,0.402464,0.798039,0.136465,0.854708,0.542089,0.599925,0.455506,0.909773,0.834279,0.0924346,0.062205,0.236742,0.261735,0.555674,0.569398,0.0589601,0.994136,0.831341,0.986763,0.708589,0.454509,0.322373,0.0148754,0.508743,0.204598,0.633575,0.18792,0.559579,0.93458,0.608354,0.148696,0.447392,0.515043,0.126123,0.802356,0.515017,0.568419,0.4726,0.837413,0.901523,0.0136046,0.13133,0.100679,0.506725,0.886465,0.0813759,0.127275,0.505325,0.954434,0.84038,0.097056,0.969225,0.171326,0.970822,0.561652,0.130436,0.106079,0.656527,0.957604,0.599924,0.401149,0.031984,0.349766,0.864683,0.0719512,0.853741,0.906297,0.508206,0.997783,0.465663,0.0970885,0.707019,0.65763,0.71287,0.582993,0.470477,0.772602,0.314253,0.151646,0.0514135,0.0928979,0.932303,0.621498,0.904888,0.693759,0.523059,0.313415,0.380263,0.354906,0.336129,0.365705,0.658883,0.367491,0.0425605,0.398966,0.889744,0.727075,0.883479,0.419342,0.620056,0.488116,0.560365,0.0238613,0.675611,0.346414,0.473284,0.485904,0.534077,0.805512,0.0191042,0.203978,0.408175,0.490567,0.190431,0.107532,0.155,0.157033,0.0485353,0.536361,0.781444,0.434862,0.763445,0.577028,0.77645,0.982606,0.320588,0.975822,0.742134,0.0964654,0.720791,0.697461,0.0907556,0.993952,0.216978,0.953849,0.967432,0.356815,0.631106,0.808275,0.351609,0.777439,0.286886,0.0849457,0.199873,0.883122,0.149531,0.600029,0.83989,0.81594,0.0236902,0.804906,0.968559,0.0334451,0.891843,0.740617,0.747277,0.448131,0.411339,0.21897,0.934027,0.527785,0.624524,0.601122,0.40269,0.80436,0.0387456,0.946595,0.262069,0.268989,0.795623,0.0550812,0.440269,0.177031,0.661224,0.208908,0.774539,0.842348,0.738016,0.819955,0.177491,0.693344,0.298448,0.807225,0.860095,0.461866,0.710105,0.115493,0.859757,0.490902,0.794272,0.513138,0.0697125,0.0883226,0.0531494,0.595303,0.973086,0.595675,0.502349,0.337988,0.86302,0.854469,0.566498,0.915947,0.249182,0.7156,0.0791554,0.10418,0.174433,0.174829,0.264246,0.423696,0.394599,0.976518,0.230241,0.260949,0.166395,0.919275,0.846083,0.695196,0.898209,0.120042,0.0183339,0.582531,0.965183,0.698031,0.991205,0.663695,0.469326,0.708462,0.19906,0.852078,0.373041,0.458239,0.932702,0.720976,0.932098,0.676486,0.998881,0.0110545,0.386814,0.780367,0.655965,0.53091,0.708068,0.793793,0.914887,0.710738,0.992797,0.149523,0.0624399,0.0528843,0.534152,0.941017,0.981611,0.658999,0.8165,0.387966,0.320738,0.00767303,0.617654,0.610787,0.825061,0.345086,0.0449601,0.505884,0.155741,0.949091,0.47512,0.0838304,0.998665,0.905857,0.293975,0.365006,0.858709,0.150869,0.257723,0.672078,0.452501,0.927732,0.730649,0.305467,0.124166,0.198322,0.452556,0.872713,0.336718,0.986466,0.211576,0.993502,0.784824,0.0234563,0.923613,0.303491,0.502595,0.644988,0.90593,0.0525569,0.16658,0.403587,0.635945,0.262752,0.595171,0.120299,0.371148,0.233749,0.31037,0.742287,0.0107999,0.622898,0.722441,0.809328,0.496532,0.189646,0.510899,0.843925,0.745282,0.940602,0.277522,0.372145,0.550268,0.566892,0.218016,0.923537,0.485051,0.199114,0.489085,0.350306,0.497966,0.00174195,0.286537,0.47188,0.619145,0.535207,0.451875,0.604832,0.487903,0.385986,0.439764,0.645556,0.81414,0.824375,0.224402,0.343867,0.264804,0.165636,0.109668,0.273071,0.701003,0.269714,0.376097,0.443711,0.863481,0.449838,0.746465,0.565421,0.587829,0.81445,0.877834,0.641465,0.758627,0.846753,0.647577,0.337077,0.184386,0.0292541,0.869773,0.689473,0.432087,0.483509,0.308424,0.659995,0.0403464,0.222238,0.544736,0.362939,0.115618,0.0480307,0.0398449,0.0818335,0.313949,0.26728,0.846809,0.18751,0.0582558,0.0659565,0.781882,0.141366,0.238704,0.906768,0.0278054,0.96634,0.0906365,0.445218,0.293251,0.476998,0.892276,0.0608403,0.0186547,0.458415,0.717624,0.342257,0.340563,0.951032,0.30465,0.849809,0.749851,0.654914,0.690316,0.366266,0.16246,0.0986614,0.296246,0.282247,0.378774,0.861306,0.642591,0.0728515,0.108137,0.582324,0.616518,0.401582,0.587566,0.0330682,0.129142,0.543445,0.498232,0.407482,0.53305,0.236436,0.411386,0.704707,0.0944458,0.82218,0.508374,0.413424,0.895989,0.865749,0.0396633,0.951834,0.238443,0.176393,0.935547,0.828624,0.0957452,0.919408,0.465838,0.886822,0.445438,0.753532,0.427791,0.337586,0.0128415,0.525001,0.799965,0.968928,0.940681,0.0972781,0.946798,0.780476,0.665486,0.219735,0.390086,0.743385,0.685052,0.282312,0.331439,0.975717,0.454078,0.916155,0.635134,0.816624,0.00968719,0.676861,0.734793,0.540636,0.127653,0.846458,0.49973,0.181621,0.351334,0.79641,0.660825,0.400919,0.0930085,0.0462448,0.61766,0.642574,0.582697,0.720138,0.502505,0.231225,0.224407,0.68263,0.609656,0.854906,0.86105,0.26821,0.39487,0.645696,0.608489,0.58872,0.280106,0.0694364,0.571714,0.476407,0.490011,0.461255,0.833438,0.56082,0.800254,0.665745,0.474887,0.564037,0.448613,0.571631,0.548214,0.744318,0.259371,0.720676,0.722782,0.0573528,0.510066,0.200975,0.170717,0.528737,0.190242,0.784999,0.271062,0.0571703,0.270501,0.679775,0.281171,0.786689,0.225619,0.172164,0.922363,0.413237,0.831735,0.668057,0.175272,0.169201,0.0113009,0.843436,0.261504,0.663289,0.441261,0.967628,0.485073,0.13337,0.114008,0.93926,0.45084,0.114402,0.113625,0.23899,0.54356,0.595771,0.866527,0.596251,0.0801483,0.125517,0.00952256,0.0367179,0.108959,0.367839,0.591789,0.719128,0.576053,0.640666,0.480607,0.808034,0.218721,0.234618,0.667165,0.925774,0.0185192,0.841738,0.41649,0.823881,0.555846,0.165075,0.348803,0.179929,0.657686,0.852858,0.930193,0.78721,0.666972,0.709666,0.143184,0.737742,0.776288,0.078522,0.810595,0.583416,0.708961,0.00983596,0.277737,0.0457686,0.865943,0.51521,0.864368,0.717691,0.778577,0.569492,0.592429,0.14354,0.867611,0.905622,0.683011,0.770059,0.393001,0.487152,0.456048,0.0351245,0.420032,0.322694,0.754387,0.710415,0.687625,0.759243,0.552602,0.163599,0.565681,0.996049,0.556371,0.59611,0.300054,0.160833,0.925959,0.128242,0.228757,0.612861,0.215941,|0.918963,0.676839,0.731395,0.70268,0.835858,0.53783,0.709258,0.0988247,0.708939,0.859697,0.319585,0.145723,0.987677,0.217319,0.0150137,0.670119,0.13667,0.126969,0.611863,0.591799,0.60652,0.232069,0.191247,0.432832,0.617344,0.395469,0.988524,0.0511675,0.729767,0.703041,0.526996,0.479899,0.732937,0.965535,0.922003,0.158642,0.56596,0.358582,0.975922,0.385399,0.400617,0.670785,0.216947,0.609665,0.738145,0.733229,0.657788,0.941617,0.48105,0.174606,0.462678,0.833955,0.946759,0.726677,0.23374,0.276004,0.804457,0.400978,0.219912,0.769908,0.206014,0.21469,0.320755,0.602604,0.247368,0.958117,0.594637,0.828003,0.679339,0.742955,0.677911,0.330384,0.200696,0.133502,0.434395,0.371424,0.0100188,0.586989,0.321049,0.489926,0.569805,0.193714,0.111696,0.899639,0.304684,0.757253,0.142245,0.11243,0.979562,0.672173,0.56553,0.354096,0.909782,0.840217,0.528051,0.320243,0.589158,0.345147,0.728512,0.24056,0.908118,0.887962,0.263609,0.332334,0.526385,0.280287,0.704558,0.42188,0.625849,0.851588,0.394398,0.917563,0.933055,0.663009,0.407575,0.504823,0.45225,0.622513,0.627828,0.192993,0.409108,0.859745,0.0351076,0.298663,0.942456,0.304767,0.175185,0.665871,0.446512,0.494704,0.64562,0.378979,0.204407,0.0253354,0.528598,0.434534,0.0346168,0.552142,0.218135,0.35641,0.305092,0.323562,0.466153,0.635371,0.603419,0.909243,0.974893,0.960795,0.829551,0.000964284,0.828157,0.408309,0.478868,0.92365,0.12899,0.0869944,0.00147742,0.212628,0.894786,0.36373,0.253141,0.258143,0.400188,0.601069,0.326302,0.155835,0.101707,0.417758,0.918776,0.90329,0.72699,0.898086,0.815697,0.160722,0.101999,0.611557,0.175768,0.996769,0.394546,0.913864,0.0760247,0.486068,0.588257,0.247084,0.823556,0.514226,0.150092,0.791704,0.849482,0.530191,0.709746,0.742266,0.456967,0.164918,0.116628,0.904185,0.225096,0.71303,0.752264,0.249068,0.524098,0.12475,0.464765,0.287926,0.295517,0.0507097,0.656767,0.954846,0.89108,0.924972,0.339924,0.48386,0.0308581,0.973405,0.732912,0.5203,0.515506,0.710836,0.560214,0.0276527,0.00369793,0.443572,0.76035,0.701838,0.223214,0.362352,0.570296,0.195832,0.70964,0.464612,0.917754,0.422766,0.613732,0.649768,0.471936,0.626559,0.413747,0.629587,0.437032,0.283242,0.831747,0.600026,0.373914,0.683109,0.0545993,0.106096,0.812175,0.594523,0.64492,0.76411,0.853957,0.973868,0.469953,0.700397,0.219632,0.0236307,0.651754,0.662879,0.593349,0.341004,0.0385492,0.920347,0.588641,0.623624,0.459181,0.418058,0.587793,0.0645136,0.506577,0.801232,0.528879,0.809802,0.212789,0.541285,0.815108,0.0656255,0.168406,0.279903,0.256632,0.599015,0.19916,0.166833,0.779528,0.694293,0.573661,0.959068,0.591732,0.0754172,0.845952,0.325421,0.361456,0.148622,0.360184,0.645522,0.544642,0.672442,0.897012,0.19215,0.808617,0.248001,0.118675,0.872995,0.278043,0.0685963,0.410805,0.170585,0.856649,0.596272,0.0659104,0.282266,0.677158,0.662429,0.857818,0.0807652,0.482475,0.912699,0.228569,0.444981,0.757964,0.408679,0.175768,0.843422,0.315369,0.225926,0.304082,0.764112,0.700346,0.0458429,0.209235,0.885886,0.625939,0.115623,0.920011,0.414953,0.425441,0.666403,0.825214,0.141201,0.574914,0.165724,0.96303,0.516605,0.0213166,0.649246,0.441557,0.998629,0.357936,0.357097,0.981007,0.863038,0.177702,0.840592,0.879308,0.84564,0.997337,0.833473,0.452018,0.9242,0.126453,0.377609,0.973251,0.9755,0.833097,0.986147,0.160444,0.206363,0.609119,0.762137,0.778875,0.577858,0.144394,0.798628,0.678904,0.157719,0.510089,0.788005,0.181554,0.698725,0.518151,0.86003,0.404181,0.889902,0.0407726,0.729972,0.235877,0.230621,0.0746558,0.220858,0.401934,0.242641,0.34545,0.440931,0.224744,0.868308,0.516851,0.954186,0.580758,0.874496,0.34139,0.571608,0.902355,0.104258,0.0671399,0.0292155,0.490405,0.728671,0.226605,0.983474,0.09643,0.859473,0.629693,0.650875,0.282105,0.222889,0.0302037,0.165583,0.556565,0.587987,0.326759,0.164081,0.156071,0.0450796,0.0710266,0.145813,0.0729343,0.540652,0.529009,0.92245,0.774728,0.84781,0.152163,0.946141,0.492094,0.282363,0.473565,0.54317,0.0898324,0.214622,0.0853487,0.799958,0.744309,0.859687,0.113208,0.620154,0.0236293,0.296162,0.505472,0.164602,0.66322,0.780162,0.760662,0.890566,0.166788,0.38851,0.721524,0.543906,0.955876,0.644997,0.354924,0.273162,0.766686,0.0966558,0.864681,0.162845,0.229409,0.74221,0.174431,0.166773,0.0919815,0.0610664,0.828226,0.584295,0.50242,0.897122,0.157688,0.142005,0.992562,0.984619,0.514449,0.499625,0.428065,0.532836,0.428123,0.67135,0.647367,0.296089,0.342857,0.596625,0.830108,0.708957,0.117373,0.571744,0.944909,0.475225,0.532925,0.0979162,0.721249,0.575164,0.509127,0.209609,0.371545,0.947901,0.308275,0.187344,0.684025,0.245815,0.56966,0.189772,0.167213,0.182281,0.669052,0.918074,0.888422,0.160764,0.919579,0.0670502,0.372839,0.265705,0.00648332,0.558555,0.0849947,0.63402,0.0650634,0.870718,0.34714,0.275472,0.620126,0.02029,0.850356,0.237218,0.569279,0.586622,0.450945,0.58823,0.330222,0.744266,0.337467,0.262056,0.696804,0.649635,0.640858,0.549306,0.431069,0.949941,0.518499,0.618539,0.675419,0.560387,0.644857,0.0103121,0.840027,0.85186,0.0707285,0.273009,0.214563,0.756425,0.469437,0.0378156,0.380411,0.0495662,0.311898,0.98226,0.706107,0.614184,0.653565,0.106726,0.706688,0.833005,0.983029,0.409832,0.788899,0.398578,0.477891,0.183064,0.533868,0.872027,0.385374,0.836562,0.595768,0.334615,0.0839574,0.745493,0.878436,0.371968,0.0397475,0.832675,0.157947,0.608537,0.133686,0.910048,0.0124908,0.243397,0.0368586,0.4053,0.478337,0.790477,0.0864104,0.511391,0.97499,0.945579,0.000133336,0.920465,0.967484,0.699354,0.2557,0.527226,0.862037,0.592696,0.319856,0.737645,0.883403,0.574105,0.158614,0.585922,0.050754,0.320512,0.106647,0.134641,0.287847,0.0807584,0.172981,0.0303669,0.87794,0.125614,0.509555,0.416745,0.977207,0.971766,0.359203,0.607574,0.425877,0.253088,0.109308,0.0051648,0.0218581,0.85557,0.230985,0.339723,0.0457698,0.966617,0.462402,0.51053,0.0940676,0.687119,0.700016,0.824569,0.401044,0.595804,0.675129,0.623281,0.558236,0.877635,0.883252,0.747285,0.0586724,0.934557,0.440803,0.03049,0.613606,0.921656,0.267518,0.911568,0.377473,0.0285892,0.181516,0.80945,0.410025,0.392879,0.471611,0.0438494,0.506412,0.79,0.68008,0.324832,0.00190079,0.922457,0.145059,0.3907,0.030103,0.468859,0.209026,0.798482,0.973902,0.724599,0.625772,0.332602,0.150467,0.161542,0.554153,0.31288,0.153767,0.904875,0.792008,0.356901,0.801581,0.781889,0.812483,0.881847,0.393924,0.323097,0.420683,0.155854,0.951218,0.303041,0.854879,0.0995379,0.403014,0.40205,0.51111,0.798166,0.659252,0.17867,0.532267,0.630893,0.697302,0.730997,0.025963,0.146716,0.578855,0.0566467,0.586517,0.475479,0.0109566,0.54481,0.154646,0.21696,0.699548,0.13855,0.385858,0.719285,0.905506,0.648961,0.805233,0.11118,0.400193,0.859311,0.804141,0.0386911,0.891428,0.280712,0.768915,0.58525,0.558282,0.350301,0.198441,0.430074,0.199663,0.456545,0.392072,0.935849,0.170163,0.15543,0.430099,0.820847,0.538085,0.235269,0.283199,0.714252,0.642198,0.436221,0.474442,0.823028,0.785245,0.0976298,0.769109,0.313476,0.777655,0.230626,0.12203,0.940247,0.408733,0.0624496,0.494243,0.793133,0.189125,0.753395,0.345684,0.0482934,0.282397,0.637244,0.602936,0.0179705,0.492088,0.268777,0.922148,0.0367042,0.125498,0.102253,0.104999,0.90613,0.793968,0.268269,0.372536,0.346907,0.675443,0.231736,0.472343,0.0325277,0.747757,0.673614,0.876695,0.919376,0.717084,0.281321,0.983779,0.560774,0.246043,0.151572,0.0079096,0.0280007,0.204973,0.867761,0.0686646,0.727991,0.0410981,0.582795,0.228934,0.427436,0.614392,0.868561,0.151199,0.109564,0.217368,0.022145,0.350417,0.55908,0.169585,0.618266,0.283333,0.335971,0.322184,0.333651,0.0788346,0.406242,0.144598,0.62548,0.690954,0.469297,0.173101,0.919862,0.87354,0.00368273,0.124049,0.787865,0.924967,0.566503,0.566964,0.625688,0.701071,0.457161,0.67813,0.910745,0.167415,0.664278,0.752062,0.790703,0.853166,0.240483,0.784272,0.284842,0.0340211,0.852653,0.403238,0.446623,0.316273,0.610657,0.885012,0.33779,0.941381,0.578956,0.291449,0.9146,0.755973,0.752549,0.992118,0.926077,0.644727,0.0710909,0.183833,0.720499,0.21229,0.558451,0.0797337,0.398261,0.236854,0.0329116,0.195181,0.651418,0.626204,0.325393,0.689875,0.277469,0.943802,0.261681,0.102597,0.339665,0.417402,0.0761538,0.379837,0.85741,0.680979,0.0809423,0.592999,0.655911,0.30427,0.076092,0.42955,0.732595,0.0768373,0.144447,0.34973,0.255091,0.247073,0.190354,0.469099,0.395695,0.0160107,0.513154,0.741432,0.864601,0.206828,0.914647,0.815657,0.73015,0.704361,0.436383,0.396694,0.688456,0.431805,0.0971107,0.320536,0.0458881,0.660281,0.638055,0.854381,0.505795,0.920884,0.729913,0.156806,0.85454,0.477458,0.167053,0.477008,0.784395,0.883517,0.695494,0.456194,0.0573221,0.775729,0.155804,0.874552,0.430136,0.672915,0.576436,0.191224,0.115404,0.502686,0.0637655,0.998692,0.481533,0.82118,0.54256,0.587129,0.217348,0.683197,0.654149,0.190814,0.489199,0.923636,0.723786,0.296226,0.861081,0.214194,0.995066,0.390459,0.658198,0.977648,0.964774,0.234392,0.491634,0.969626,0.851426,0.945976,0.2874,0.442435,0.40706,0.774347,0.0362856,0.252662,0.468456,0.299414,0.970637,0.287258,0.687074,0.979177,0.00816512,0.708634,0.84471,0.75924,0.515784,|0.553392,0.337709,0.447838,0.583077,0.242375,0.41999,0.693095,0.767681,0.528385,0.221346,0.864191,0.162855,0.735472,0.871942,0.15066,0.222425,0.305345,0.387428,0.861149,0.54568,0.307523,0.996795,0.333191,0.350401,0.477468,0.0590317,0.201578,0.580834,0.854894,0.00107741,0.397345,0.258268,0.12025,0.585567,0.309317,0.451724,0.637811,0.170731,0.957685,0.608153,0.392699,0.590036,0.506233,0.697821,0.319288,0.93428,0.137125,0.822777,0.899654,0.939395,0.757583,0.887155,0.623065,0.858402,0.376738,0.583767,0.648316,0.103348,0.821062,0.692795,0.993704,0.356473,0.692693,0.70638,0.400455,0.0152586,0.392855,0.247694,0.479177,0.0326434,0.192914,0.314808,0.922615,0.308802,0.53704,0.243483,0.664932,0.457326,0.251485,0.536949,0.96333,0.805144,0.329869,0.0811933,0.199537,0.85872,0.636482,0.504311,0.0472075,0.44002,0.328941,0.864449,0.282625,0.947853,0.297395,0.521388,0.917055,0.856744,0.417328,0.47068,0.218142,0.524837,0.195762,0.714378,0.109481,0.354508,0.982824,0.00143325,0.424895,0.631508,0.470593,0.438618,0.996228,0.35894,0.807765,0.519278,0.0156386,0.727977,0.97824,0.828529,0.616413,0.350534,0.341616,0.486052,0.875335,0.123267,0.358668,0.480382,0.26284,0.807679,0.779679,0.367168,0.964826,0.250686,0.598533,0.547999,0.536964,0.0989253,0.858714,0.748898,0.029201,0.27773,0.0427423,0.105272,0.169481,0.924409,0.503732,0.0564631,0.178531,0.451479,0.973008,0.3938,0.348374,0.281645,0.507738,0.238643,0.143836,0.768047,0.342032,0.98013,0.0973349,0.156313,0.551688,0.766192,0.173241,0.639407,0.252161,0.940601,0.625899,0.474578,0.587162,0.782241,0.135308,0.68689,0.496376,0.359329,0.602192,0.131819,0.081834,0.985995,0.440443,0.909815,0.495757,0.598664,0.501192,0.613583,0.0395357,0.460605,0.316558,0.920965,0.904578,0.400921,0.109484,0.39351,0.109468,0.752256,0.456885,0.0118254,0.88961,0.276237,0.648527,0.516381,0.115769,0.343506,0.788496,0.963262,0.219508,0.412866,0.715625,0.589619,0.386705,0.531127,0.156522,0.514894,0.923917,0.63853,0.916562,0.698075,0.258873,0.687504,0.797134,0.0479621,0.537949,0.719102,0.677062,0.644615,0.924455,0.623839,0.634316,0.369617,0.36988,0.739471,0.898835,0.84163,0.288968,0.895845,0.89599,0.845841,0.520185,0.107681,0.272155,0.912857,0.979228,0.228018,0.385517,0.782511,0.323153,0.851837,0.467551,0.500148,0.951903,0.578993,0.988798,0.913102,0.371855,0.383395,0.212866,0.32368,0.212643,0.109755,0.200877,0.566135,0.566793,0.184839,0.824059,0.994822,0.0886557,0.765333,0.747026,0.759858,0.583953,0.763601,0.563565,0.94749,0.0760478,0.670789,0.283526,0.061537,0.48551,0.636537,0.52267,0.209203,0.0204337,0.776934,0.760384,0.289016,0.90399,0.963949,0.433951,0.719633,0.797542,0.241883,0.677706,0.364335,0.450445,0.933229,0.661575,0.800286,0.519275,0.354512,0.408191,0.98425,0.464746,0.370586,0.712844,0.0555697,0.329123,0.176519,0.445234,0.80402,0.554682,0.484566,0.171207,0.389266,0.858521,0.566517,0.500301,0.00342983,0.666768,0.783998,0.366614,0.668077,0.365683,0.565244,0.438727,0.572253,0.646795,0.335358,0.145932,0.920951,0.0245655,0.372494,0.979344,0.937475,0.261154,0.867167,0.253467,0.347866,0.939056,0.794178,0.511939,0.151367,0.658476,0.884696,0.657921,0.54017,0.245215,0.70453,0.0133991,0.835956,0.175606,0.449805,0.866265,0.73702,0.848312,0.8001,0.454728,0.021398,0.35418,0.631261,0.687477,0.763773,0.83368,0.335273,0.48731,0.70977,0.529776,0.468886,0.333077,0.662534,0.554113,0.723372,0.902147,0.739434,0.744217,0.616031,0.501145,0.724718,0.835894,0.495832,0.600434,0.825058,0.974763,0.522229,0.827179,0.257309,0.97344,0.489231,0.536439,0.313336,0.623923,0.757415,0.991046,0.717196,0.819785,0.909909,0.838332,0.561479,0.580709,0.496039,0.00547791,0.353936,0.778933,0.223948,0.843118,0.846699,0.37663,0.719645,0.308129,0.20948,0.859139,0.47743,0.617926,0.279919,0.385436,0.811441,0.58328,0.77089,0.466571,0.718025,0.732909,0.970652,0.3251,0.0535569,0.686599,0.32022,0.384114,0.231401,0.631877,0.629538,0.449613,0.610025,0.52536,0.630373,0.650964,0.300225,0.666918,0.634926,0.832468,0.332388,0.0846657,0.832786,0.30539,0.349876,0.203118,0.265598,0.975681,0.24815,0.582065,0.036074,0.362756,0.657782,0.945146,0.199809,0.837246,0.588373,0.684735,0.695643,0.456027,0.442818,0.716233,0.0111925,0.838619,0.11343,0.8719,0.267113,0.140935,0.785184,0.19632,0.922392,0.265967,0.735359,0.649447,0.299295,0.859883,0.722399,0.650121,0.0553823,0.331316,0.725975,0.165181,0.741511,0.104341,0.161779,0.252812,0.0367744,0.94463,0.0918618,0.582188,0.733886,0.400004,0.721353,0.113394,0.77443,0.457745,0.105004,0.267562,0.88282,0.558851,0.346228,0.780506,0.160578,0.642875,0.709271,0.0706043,0.538333,0.188008,0.823932,0.687638,0.0162895,0.971864,0.591692,0.717502,0.610427,0.682317,0.698232,0.335351,0.247696,0.1214,0.803673,0.0636707,0.204643,0.402983,0.522348,0.528867,0.951683,0.382475,0.837402,0.0405278,0.16484,0.232794,0.992217,0.890184,0.786985,0.833832,0.439975,0.86492,0.899873,0.128534,0.803012,0.0166876,0.954914,0.790116,0.617689,0.228413,0.204018,0.70475,0.591428,0.405476,0.153023,0.643221,0.568593,0.703827,0.111026,0.143103,0.929736,0.888113,0.711759,0.292401,0.228279,0.264511,0.307265,0.326446,0.277607,0.327083,0.152072,0.0448341,0.884775,0.636525,0.123288,0.0945399,0.536443,0.631786,0.605055,0.439391,0.729018,0.0952027,0.378355,0.897943,0.814979,0.692108,0.00197649,0.936863,0.587396,0.403033,0.252764,0.0207219,0.164154,0.60387,0.852078,0.684538,0.692906,0.163415,0.315311,0.492398,0.066772,0.370453,0.431812,0.963499,0.534824,0.77011,0.954714,0.819595,0.917303,0.629892,0.505109,0.0066061,0.337139,0.174009,0.271229,0.699387,0.176636,0.926532,0.944415,0.435146,0.720884,0.303855,0.709659,0.144494,0.956652,0.171266,0.973996,0.0958974,0.104752,0.702286,0.900977,0.695642,0.384263,0.0583478,0.185711,0.789162,0.844852,0.62343,0.23634,0.033676,0.597652,0.50009,0.677949,0.498159,0.545558,0.0488946,0.992524,0.444911,0.380752,0.777538,0.238637,0.401095,0.19917,0.224827,0.00243074,0.22501,0.500169,0.179433,0.81508,0.0489752,0.707857,0.982433,0.45459,0.983995,0.802848,0.871185,0.0358906,0.0978687,0.1945,0.886268,0.451423,0.840856,0.0400055,0.570588,0.718834,0.390913,0.340876,0.586492,0.0199556,0.26427,0.924507,0.393501,0.413543,0.881883,0.0984879,0.126586,0.373876,0.837612,0.78125,0.528548,0.617904,0.950372,0.790171,0.915335,0.12646,0.124999,0.844984,0.532153,0.664946,0.425941,0.82227,0.742892,0.138547,0.245552,0.129571,0.275865,0.243066,0.178578,0.818527,0.33248,0.367253,0.387507,0.897467,0.485248,0.995052,0.479154,0.192107,0.513016,0.678541,0.116882,0.549087,0.534973,0.552864,0.982275,0.466882,0.197359,0.700029,0.467479,0.965138,0.736766,0.730284,0.974966,0.351104,0.334493,0.292321,0.374667,0.59253,0.598512,0.0781818,0.790248,0.878996,0.391374,0.217072,0.393981,0.848826,0.0828488,0.00965446,0.649587,0.554691,0.0225244,0.454858,0.273178,0.57732,0.487125,0.317309,0.00183028,0.869595,0.983718,0.326669,0.87251,0.173858,0.854185,0.294176,0.00696033,0.73343,0.761738,0.0389959,0.850626,0.949463,0.793237,0.704695,0.719879,0.994503,0.623019,0.523906,0.534466,0.641108,0.68831,0.824924,0.0691605,0.730149,0.322583,0.229754,0.68911,0.321771,0.250063,0.27224,0.154916,0.943145,0.332904,0.482003,0.826373,0.810274,0.548363,0.0243104,0.812902,0.164277,0.230834,0.906344,0.909187,0.687729,0.7353,0.36811,0.608264,0.534856,0.748092,0.794414,0.431402,0.0016045,0.717002,0.657209,0.360133,0.165796,0.569898,0.57398,0.402907,0.309628,0.605835,0.701509,0.535656,0.0146745,0.864533,0.213267,0.701464,0.120849,0.566728,0.36556,0.242962,0.315025,0.868373,0.0894173,0.856968,0.57815,0.900722,0.788596,0.873223,0.302211,0.125948,0.688345,0.632352,0.836079,0.433386,0.555978,0.88473,0.181524,0.144671,0.133774,0.336444,0.0033527,0.244638,0.0122705,0.879671,0.844625,0.33183,0.721249,0.103563,0.423051,0.184011,0.152607,0.708895,0.751329,0.459641,0.255475,0.427255,0.861372,0.331456,0.846781,0.149793,0.155017,0.380484,0.305903,0.563551,0.0598158,0.14603,0.152496,0.483205,0.931466,0.618721,0.580577,0.968983,0.90444,0.813765,0.187253,0.684159,0.275184,0.773105,0.675801,0.394928,0.555412,0.864294,0.642953,0.406091,0.429111,0.750059,0.1872,0.593402,0.352822,0.0869547,0.0502803,0.439512,0.994951,0.239812,0.666748,0.558469,0.105042,0.964934,0.513568,0.726289,0.754347,0.602644,0.674975,0.621191,0.112791,0.288693,0.159823,0.514573,0.917124,0.817676,0.8773,0.477224,0.796511,0.700141,0.309855,0.622141,0.0123392,0.825772,0.511916,0.595714,0.895768,0.642472,0.368635,0.530297,0.878005,0.494258,0.732433,0.286768,0.0512672,0.353838,0.965366,0.0022434,0.641039,0.559875,0.323211,0.0487776,0.746822,0.00407922,0.174733,0.157885,0.492015,0.247076,0.933373,0.190968,0.182234,0.233882,0.295758,0.544391,0.945989,0.110052,0.0280076,0.769456,0.777933,0.205819,0.837023,0.205583,0.339559,0.692661,0.766784,0.758968,0.54367,0.0447583,0.334486,0.259468,0.012417,0.965151,0.336589,0.224056,0.985343,0.782584,0.365802,0.700101,0.889111,0.552388,0.244593,0.00465304,0.897254,0.462052,0.576025,0.495929,0.583251,0.381893,0.0844937,0.0469099,0.85286,0.124366,0.389171,0.150592,0.860632,0.343807,0.0248174,0.344346,0.307456,0.59511,0.397598,0.0130371,0.0346312,|0.768796,0.257318,0.387899,0.725203,0.52249,0.485291,0.121622,0.822247,0.307037,0.655678,0.2594,0.928078,0.700786,0.432492,0.246083,0.330364,0.654383,0.954062,0.720347,0.594832,0.799619,0.624845,0.951797,0.109462,0.45751,0.539152,0.739358,0.701661,0.20223,0.0131534,0.851967,0.441731,0.464306,0.960608,0.315363,0.43501,0.753394,0.0156689,0.646892,0.337798,0.20598,0.390406,0.853022,0.273163,0.172671,0.0382637,0.75856,0.426182,0.801812,0.461869,0.719238,0.600031,0.709803,0.713677,0.130822,0.982673,0.884428,0.975973,0.104212,0.747698,0.179676,0.320452,0.9711,0.304681,0.535056,0.580351,0.953089,0.129337,0.980624,0.645625,0.50634,0.150678,0.624005,0.493291,0.420463,0.0432135,0.470775,0.00715303,0.596959,0.481034,0.219151,0.647368,0.247524,0.805909,0.260575,0.650617,0.986192,0.361029,0.748221,0.0418094,0.833746,0.263303,0.164555,0.290852,0.943071,0.39756,0.0720826,0.955467,0.455324,0.426976,0.606221,0.684099,0.688838,0.227409,0.336926,0.112153,0.45922,0.256685,0.807776,0.919922,0.280523,0.0957534,0.863216,0.757244,0.452739,0.717606,0.251342,0.917884,0.984645,0.708897,0.218552,0.671513,0.156873,0.747762,0.240179,0.554089,0.958217,0.0130734,0.206795,0.720819,0.176954,0.685311,0.800879,0.0737677,0.316155,0.524745,0.120587,0.37503,0.715989,0.916499,0.0598968,0.99579,0.550713,0.0329163,0.734019,0.937577,0.554013,0.143649,0.409606,0.0232591,0.729389,0.229877,0.0317227,0.239345,0.372615,0.447776,0.424271,0.842449,0.493366,0.567528,0.632998,0.756517,0.924189,0.764253,0.652853,0.388871,0.744839,0.0144736,0.287882,0.0615169,0.065643,0.572505,0.275417,0.414761,0.670456,0.325792,0.949136,0.200585,0.553923,0.920895,0.0826049,0.17884,0.669746,0.612236,0.701041,0.247674,0.781159,0.892053,0.12322,0.818506,0.720315,0.4672,0.271873,0.724303,0.586904,0.53795,0.281481,0.563505,0.785199,0.645836,0.572853,0.264608,0.834186,0.393875,0.889187,0.0257038,0.460084,0.420128,0.99624,0.991532,0.740232,0.844558,0.0468367,0.794659,0.494566,0.56143,0.246313,0.473546,0.212674,0.568207,0.184563,0.959555,0.992334,0.269653,0.4311,0.353939,0.821242,0.00494301,0.423317,0.182341,0.17163,0.827645,0.771186,0.102385,0.0274277,0.251374,0.173651,0.924957,0.303164,0.191016,0.0412036,0.454633,0.570659,0.20359,0.839316,0.952242,0.0412433,0.965829,0.207488,0.0541598,0.514285,0.542688,0.543726,0.995829,0.715378,0.336819,0.242809,0.554496,0.522433,0.264154,0.507133,0.524695,0.194796,0.282169,0.564477,0.570142,0.576375,0.422582,0.604483,0.754426,0.653272,0.858459,0.452064,0.1594,0.983856,0.705485,0.272873,0.504896,0.585951,0.701828,0.0112766,0.553375,0.548225,0.021381,0.681525,0.915665,0.453714,0.613328,0.823118,0.379843,0.494126,0.868684,0.22322,0.951579,0.64571,0.564628,0.992382,0.996823,0.075481,0.228633,0.13409,0.947116,0.692638,0.573164,0.719804,0.973603,0.614092,0.703831,0.550335,0.564641,0.903162,0.809294,0.602468,0.910906,0.82992,0.0390245,0.914917,0.834153,0.662304,0.925086,0.177532,0.692582,0.10694,0.530197,0.985887,0.435264,0.808627,0.129109,0.249063,0.331697,0.703866,0.474311,0.552715,0.523918,0.0805786,0.671127,0.996723,0.552482,0.205056,0.765244,0.477974,0.283993,0.462623,0.438021,0.898183,0.639017,0.296441,0.497871,0.91225,0.798704,0.4465,0.431023,0.595111,0.804663,0.220044,0.787752,0.523345,0.836808,0.527478,0.841094,0.505154,0.186688,0.448953,0.0787751,0.520156,0.841926,0.573487,0.256582,0.585558,0.655891,0.0415577,0.967545,0.261751,0.159413,0.938053,0.346099,0.878533,0.859526,0.718958,0.435138,0.764805,0.256411,0.272267,0.480686,0.504181,0.265432,0.244798,0.925836,0.562679,0.142239,0.513976,0.940044,0.731086,0.596413,0.571197,0.783054,0.930093,0.628136,0.202824,0.502566,0.36304,0.416076,0.964117,0.989075,0.419651,0.614979,0.70852,0.845991,0.00362903,0.427768,0.871263,0.687315,0.179223,0.254421,0.910197,0.409623,0.829877,0.135825,0.279533,0.000239491,0.761565,0.756147,0.680647,0.0661267,0.445504,0.622913,0.813833,0.93621,0.362788,0.155718,0.37957,0.451038,0.713236,0.98264,0.681163,0.916193,0.450935,0.845162,0.444168,0.601008,0.766025,0.979253,0.710691,0.170064,0.892968,0.369596,0.0412094,0.897317,0.483233,0.718228,0.19238,0.585791,0.988812,0.469065,0.115529,0.477223,0.263505,0.955192,0.203422,0.691373,0.631451,0.157328,0.811792,0.290263,0.711242,0.211946,0.021627,0.177959,0.551876,0.0598109,0.944278,0.594862,0.0605159,0.0831494,0.601855,0.945841,0.272333,0.783845,0.0686416,0.724405,0.409907,0.780086,0.749591,0.729701,0.0761672,0.234771,0.94855,0.667822,0.209127,0.495979,0.803609,0.118739,0.689125,0.459252,0.591124,0.096048,0.897527,0.123529,0.853216,0.623444,0.585748,0.242131,0.0534672,0.341129,0.144764,0.408646,0.142101,0.709167,0.190159,0.726152,0.936635,0.524619,0.360956,0.126639,0.184777,0.484245,0.833677,0.613741,0.193595,0.467782,0.546596,0.52392,0.121634,0.805338,0.657684,0.22342,0.996877,0.554,0.639168,0.94866,0.293926,0.0522745,0.311729,0.690898,0.926361,0.90755,0.119591,0.169403,0.933656,0.591195,0.740211,0.826467,0.956829,0.479088,0.133017,0.435632,0.0941334,0.267998,0.352087,0.157164,0.639861,0.493151,0.560574,0.342725,0.339906,0.375838,0.547572,0.0348463,0.000722587,0.441816,0.48284,0.338352,0.994278,0.926278,0.846663,0.382021,0.984586,0.533217,0.573289,0.297431,0.986214,0.730931,0.677485,0.519934,0.0301824,0.983062,0.728517,0.800049,0.93061,0.941011,0.207558,0.716897,0.768827,0.346787,0.275857,0.803246,0.460565,0.579928,0.0116759,0.756506,0.55955,0.440575,0.646419,0.728372,0.488501,0.780334,0.259293,0.28868,0.0960436,0.544967,0.65631,0.418657,0.334437,0.229739,0.998316,0.658949,0.602233,0.700233,0.177688,0.694277,0.232734,0.777972,0.560058,0.0285581,0.63089,0.473926,0.0165257,0.94562,0.672915,0.0123624,0.825399,0.636188,0.0821236,0.562428,0.0502809,0.85647,0.983195,0.0388644,0.190167,0.0274333,0.612714,0.375835,0.00795692,0.915749,0.0350359,0.504076,0.596224,0.894055,0.697509,0.958336,0.93949,0.342607,0.28565,0.999876,0.719221,0.822947,0.614161,0.258883,0.898181,0.797721,0.969552,0.239495,0.482645,0.604574,0.655891,0.0798094,0.334356,0.480713,0.391255,0.618285,0.792132,0.256867,0.690299,0.733737,0.756907,0.0251549,0.645246,0.812394,0.149479,0.0881743,0.402233,0.411032,0.750517,0.820902,0.803206,0.146944,0.176296,0.058426,0.540392,0.53048,0.74399,0.912722,0.213415,0.548398,0.146812,0.668101,0.663214,0.996348,0.220391,0.394996,0.259251,0.967973,0.733331,0.166803,0.361703,0.0852774,0.170983,0.899483,0.734492,0.434615,0.178812,0.566948,0.645677,0.789607,0.289951,0.789899,0.869785,0.30845,0.481912,0.618957,0.572018,0.968287,0.0414805,0.379238,0.268186,0.379559,0.612942,0.0886512,0.594461,0.205713,0.337704,0.434389,0.551398,0.129052,0.701435,0.273368,0.034229,0.467226,0.912643,0.678127,0.470336,0.308061,0.347275,0.110324,0.686551,0.979054,0.165573,0.240682,0.815515,0.0818607,0.831983,0.397324,0.582954,0.175837,0.673878,0.852686,0.505535,0.978421,0.305658,0.125982,0.865393,0.235262,0.415211,0.602439,0.827004,0.69438,0.197369,0.291511,0.280867,0.438074,0.110581,0.554005,0.991528,0.417332,0.27099,0.779241,0.240206,0.891197,0.324372,0.77813,0.63355,0.828026,0.0728697,0.221269,0.976216,0.121792,0.0227397,0.272959,0.947539,0.322011,0.419192,0.59212,0.853499,0.76417,0.459983,0.876433,0.964601,0.69969,0.993787,0.163958,0.0378875,0.175994,0.253678,0.201995,0.709647,0.939617,0.131843,0.576852,0.721435,0.373385,0.666843,0.838108,0.283522,0.88577,0.36923,0.177548,0.0576152,0.772294,0.891006,0.693639,0.350807,0.131476,0.545682,0.783864,0.837181,0.835573,0.162295,0.185948,0.817652,0.137701,0.299706,0.637686,0.155346,0.808549,0.391381,0.511953,0.190876,0.323215,0.398375,0.339862,0.157191,0.161305,0.287051,0.69265,0.269927,0.639424,0.438544,0.462885,0.650087,0.636408,0.765447,0.0830777,0.841159,0.603947,0.549075,0.688745,0.761567,0.978511,0.391494,0.386365,0.296389,0.410741,0.845779,0.479729,0.494676,0.225884,0.273278,0.0651113,0.780123,0.170652,0.322895,0.682898,0.0404896,0.400733,0.815813,0.958101,0.870677,0.101993,0.289328,0.964264,0.409301,0.710315,0.953132,0.353369,0.110408,0.150303,0.0381044,0.33152,0.243049,0.088802,0.282783,0.851725,0.695678,0.824316,0.852192,0.992327,0.532588,0.292566,0.0934289,0.147861,0.121765,0.45254,0.0149155,0.19061,0.301513,0.117402,0.694247,0.952967,0.884831,0.373904,0.421317,0.680814,0.888556,0.398047,0.71705,0.447228,0.259457,0.826354,0.674919,0.412544,0.878469,0.0696638,0.20483,0.876198,0.512492,0.705653,0.682178,0.802305,0.840955,0.228929,0.450281,0.345255,0.40699,0.0843046,0.706983,0.257702,0.857629,0.104021,0.799234,0.793077,0.826994,0.0837433,0.963937,0.532113,0.471491,0.038129,0.288019,0.124809,0.979429,0.155154,0.203293,0.415313,0.811272,0.133376,0.0884129,0.998322,0.758562,0.185818,0.885396,0.345179,0.447992,0.730399,0.30786,0.729551,0.0796177,0.252138,0.389476,0.00253528,0.219911,0.315874,0.491885,0.827993,0.498018,0.0559744,0.592738,0.71354,0.0343354,0.472475,0.865822,0.707845,0.0163667,0.749265,0.603209,0.125144,0.420736,0.213354,0.0907826,0.224582,0.364694,0.133512,0.0378426,0.288287,0.948669,0.102602,0.148227,0.837214,0.905744,0.579415,0.362286,0.480942,0.0755641,0.854035,0.291781,0.657873,0.699836,0.0332124,0.762249,0.787428,0.0378919,0.357253,|0.0721794,0.564361,0.257593,0.427997,0.717958,0.805524,0.323347,0.957545,0.420573,0.778784,0.323373,0.555081,0.932339,0.110198,0.0676621,0.0239081,0.996852,0.227558,0.131634,0.294333,0.595592,0.506941,0.991298,0.839784,0.69008,0.834604,0.919527,0.867661,0.906196,0.785098,0.908437,0.505024,0.606318,0.157339,0.392127,0.859192,0.778236,0.0491394,0.123857,0.775129,0.366891,0.956767,0.337974,0.910529,0.980095,0.846402,0.0549173,0.371819,0.10056,0.635226,0.780905,0.557446,0.976827,0.567645,0.17732,0.73462,0.365603,0.989997,0.56335,0.330971,0.247764,0.0877488,0.0277413,0.337386,0.685697,0.409224,0.550112,0.242296,0.233982,0.881807,0.303866,0.297066,0.130324,0.527066,0.232171,0.00189185,0.324445,0.80818,0.163531,0.594124,0.230177,0.641013,0.408287,0.244958,0.662114,0.866346,0.826224,0.730837,0.77811,0.57317,0.152946,0.616537,0.597334,0.535644,0.709026,0.122591,0.0529089,0.380827,0.929307,0.68499,0.579632,0.669,0.34918,0.219666,0.949803,0.0180829,0.237098,0.495553,0.996847,0.538781,0.908947,0.626205,0.801452,0.119364,0.814686,0.811488,0.805203,0.415054,0.359092,0.789351,0.884856,0.654437,0.87382,0.668471,0.194601,0.763948,0.028048,0.152219,0.751458,0.431049,0.742398,0.284271,0.258999,0.826944,0.817524,0.0842543,0.312291,0.946669,0.687879,0.459977,0.360316,0.763446,0.950847,0.873809,0.0716398,0.0403296,0.496777,0.89457,0.174797,0.384963,0.265669,0.0999029,0.164792,0.826491,0.258195,0.0103343,0.357725,0.120515,0.219433,0.822683,0.948632,0.689993,0.900045,0.627263,0.102853,0.713788,0.0748324,0.277609,0.936568,0.366674,0.12304,0.620786,0.103665,0.6946,0.301625,0.59731,0.853981,0.377036,0.250322,0.443609,0.0158113,0.51865,0.135068,0.663341,0.688184,0.498694,0.828658,0.0686272,0.423772,0.836082,0.437602,0.212617,0.907909,0.892038,0.215288,0.00710762,0.193986,0.375521,0.147446,0.448457,0.75031,0.620236,0.89768,0.65743,0.8414,0.476895,0.78414,0.11759,0.773088,0.592848,0.0896528,0.433624,0.534232,0.611543,0.290831,0.948801,0.620386,0.353153,0.0333492,0.578259,0.246412,0.846818,0.248593,0.724762,0.0308951,0.408266,0.413805,0.00516903,0.949606,0.62656,0.69552,0.272411,0.565245,0.85954,0.756791,0.794696,0.257193,0.0618443,0.589522,0.412799,0.0784587,0.259841,0.504961,0.0421153,0.585938,0.633203,0.585648,0.410279,0.0991123,0.669938,0.318702,0.582983,0.671477,0.172523,0.222607,0.260792,0.0130837,0.990027,0.0487322,0.00309861,0.111768,0.145891,0.96857,0.0500172,0.580631,0.784989,0.966284,0.661947,0.206557,0.903247,0.522994,0.87649,0.783737,0.416615,0.410222,0.969297,0.200259,0.263414,0.30166,0.703762,0.413387,0.0583845,0.309759,0.405931,0.783978,0.138978,0.706567,0.158097,0.536107,0.776599,0.49251,0.550679,0.727277,0.0537765,0.534028,0.732642,0.303545,0.499774,0.101996,0.59234,0.157248,0.559552,0.46803,0.0652351,0.911203,0.0620266,0.201939,0.78789,0.524473,0.607886,0.219965,0.185586,0.103704,0.294653,0.896468,0.877536,0.571286,0.315354,0.404294,0.122522,0.0693225,0.554096,0.15309,0.96406,0.628543,0.318404,0.28559,0.609599,0.287434,0.120781,0.79098,0.447987,0.945875,0.0916461,0.41221,0.102079,0.0358589,0.30193,0.0110285,0.875446,0.134213,0.615978,0.50824,0.179378,0.902325,0.462384,0.933184,0.728555,0.309118,0.669892,0.505399,0.548898,0.510805,0.360929,0.908966,0.143238,0.00799906,0.00334275,0.611225,0.593509,0.0134702,0.334984,0.430786,0.530648,0.664499,0.698207,0.389705,0.458325,0.82483,0.113711,0.634303,0.268981,0.817167,0.900653,0.780993,0.567961,0.172378,0.246189,0.994454,0.811304,0.0526994,0.698364,0.614838,0.525836,0.621842,0.618395,0.291005,0.072718,0.426439,0.857891,0.554739,0.0105315,0.568245,0.457096,0.446811,0.425603,0.031304,0.389163,0.678661,0.7081,0.128961,0.748651,0.875894,0.354478,0.00401843,0.247978,0.957012,0.772635,0.175899,0.556022,0.658869,0.161441,0.758422,0.159614,0.140575,0.336258,0.733219,0.397008,0.983859,0.598513,0.929488,0.790579,0.863904,0.250465,0.104115,0.927695,0.259945,0.599644,0.294071,0.910226,0.0440441,0.616613,0.416736,0.127917,0.0912043,0.680977,0.814519,0.910868,0.300966,0.303719,0.506315,0.642533,0.871416,0.268306,0.354306,0.668587,0.793202,0.991987,0.803909,0.92624,0.849045,0.465233,0.271207,0.78598,0.707237,0.86395,0.802997,0.879916,0.129805,0.825949,0.72914,0.827916,0.852404,0.989926,0.0459867,0.520372,0.0303741,0.227945,0.0203667,0.817259,0.211076,0.100839,0.874751,0.0398644,0.572065,0.859767,0.314385,0.652048,0.58153,0.55509,0.97382,0.419858,0.449288,0.313305,0.103098,0.66346,0.385133,0.562216,0.166413,0.197039,0.818191,0.267378,0.369277,0.688854,0.473373,0.428098,0.0490836,0.807635,0.484941,0.169152,0.0783893,0.402702,0.457798,0.0101334,0.102362,0.0600572,0.518891,0.939273,0.936374,0.487575,0.653175,0.679733,0.884798,0.0699959,0.427796,0.486249,0.373684,0.211648,0.575116,0.719947,0.942576,0.207728,0.451662,0.99274,0.984945,0.0973316,0.943829,0.581373,0.522213,0.553406,0.909274,0.593781,0.0496201,0.945395,0.233316,0.93909,0.276446,0.910644,0.836956,0.876855,0.861709,0.347824,0.334117,0.429514,0.305451,0.827039,0.360829,0.459823,0.910941,0.61003,0.457994,0.924733,0.971301,0.60013,0.490711,0.698258,0.539365,0.529962,0.584174,0.129174,0.724298,0.798836,0.282769,0.726612,0.698392,0.395986,0.305978,0.517034,0.922962,0.821875,0.142723,0.990096,0.769543,0.478748,0.101176,0.483099,0.304169,0.260772,0.971529,0.38666,0.218958,0.628294,0.369897,0.28459,0.175072,0.237252,0.377472,0.510544,0.00318027,0.285191,0.430761,0.306138,0.277019,0.872506,0.881445,0.774082,0.364699,0.620439,0.366436,0.61087,0.478469,0.552292,0.548588,0.121207,0.283945,0.022507,0.177797,0.774284,0.343846,0.728628,0.92443,0.00969344,0.913705,0.675812,0.692622,0.76471,0.793613,0.654154,0.239031,0.0497218,0.0954541,0.721397,0.604913,0.55357,0.419421,0.407842,0.542951,0.947098,0.987924,0.27712,0.765539,0.588824,0.70221,0.87841,0.0876823,0.0991342,0.794413,0.497871,0.0514503,0.976087,0.865407,0.981781,0.396002,0.85422,0.0161583,0.344513,0.146502,0.237196,0.347246,0.25201,0.916877,0.781696,0.312667,0.443348,0.583966,0.213629,0.740321,0.705184,0.279511,0.696172,0.909803,0.0701017,0.311452,0.454786,0.670175,0.277843,0.121904,0.517991,0.715937,0.92568,0.961088,0.975831,0.962292,0.20081,0.922217,0.291881,0.598172,0.249873,0.141072,0.978505,0.401519,0.296463,0.464254,0.492071,0.759421,0.676926,0.792064,0.0909174,0.764298,0.580174,0.618207,0.691938,0.881886,0.225071,0.420252,0.860992,0.505711,0.462911,0.806855,0.123869,0.732849,0.873867,0.173641,0.581407,0.778167,0.0792002,0.310036,0.520793,0.923825,0.175878,0.0181645,0.241892,0.175964,0.317919,0.638181,0.82558,0.292055,0.378252,0.536193,0.657443,0.411495,0.274326,0.221883,0.522213,0.907595,0.602832,0.908806,0.485039,0.108322,0.206185,0.452383,0.205158,0.0991629,0.71071,0.205614,0.731393,0.776368,0.600641,0.752101,0.907132,0.712421,0.202402,0.342851,0.462189,0.366606,0.606301,0.786259,0.650103,0.454493,0.586708,0.137364,0.487806,0.68889,0.366634,0.224779,0.962035,0.804118,0.996885,0.0352943,0.308733,0.44632,0.777379,0.141769,0.383163,0.0737589,0.166981,0.0751869,0.993625,0.151365,0.698976,0.846832,0.759168,0.94119,0.503063,0.606122,0.997541,0.841975,0.165012,0.115894,0.1438,0.893043,0.730065,0.590999,0.558951,0.405408,0.940346,0.746912,0.964608,0.293965,0.316459,0.489456,0.77216,0.134548,0.524311,0.533773,0.402534,0.409042,0.794847,0.18517,0.913426,0.563788,0.128745,0.332907,0.558044,0.920576,0.801022,0.850439,0.673306,0.323541,0.591416,0.648387,0.242102,0.885432,0.182625,0.490761,0.462608,0.722229,0.392596,0.80605,0.890887,0.782071,0.905917,0.59156,0.651781,0.377485,0.956754,0.436195,0.989441,0.632686,0.978932,0.397065,0.521098,0.250579,0.214577,0.289765,0.566982,0.890371,0.961875,0.363338,0.898291,0.362762,0.761433,0.618933,0.348688,0.897572,0.0705967,0.832868,0.991034,0.281956,0.68249,0.0305281,0.51504,0.59181,0.565728,0.336378,0.898687,0.411722,0.73492,0.309671,0.853917,0.533878,0.242619,0.952137,0.64152,0.386518,0.419026,0.380424,0.167249,0.56764,0.174793,0.46654,0.149265,0.828756,0.809501,0.41271,0.706027,0.677865,0.56814,0.480459,0.155991,0.974115,0.845907,0.388806,0.241631,0.901929,0.237886,0.0793214,0.729546,0.217829,0.4984,0.640084,0.364491,0.968996,0.873015,0.294171,0.958895,0.242502,0.932002,0.803161,0.900914,0.993477,0.464091,0.0760876,0.870515,0.910526,0.458642,0.30901,0.237214,0.2418,0.286642,0.726306,0.0968735,0.879181,0.348875,0.654462,0.878134,0.199374,0.573743,0.72567,0.216545,0.970144,0.894356,0.843967,0.151118,0.487468,0.591511,0.614098,0.320724,0.496769,0.116864,0.826779,0.863105,0.90093,0.188409,0.0845852,0.123993,0.20398,0.353902,0.7538,0.70226,0.0670985,0.932979,0.858675,0.654967,0.6197,0.450056,0.843068,0.165404,0.950979,0.744738,0.119764,0.405773,0.17094,0.815724,0.299017,0.319392,0.579339,0.534354,0.990482,0.767729,0.636887,0.57061,0.348894,0.963479,0.393457,0.130518,0.350488,0.107726,0.131803,0.147599,0.540847,0.178656,0.619171,0.272272,0.219478,0.541564,0.336652,0.699166,0.34348,0.960922,0.219137,0.860067,0.293746,0.171188,0.604697,0.415041,0.646344,0.0566923,0.373004,0.830926,0.837927,0.695314,0.440158,0.538544,0.402394,0.419529,0.476829,0.896264,0.394378,0.350374,|0.639515,0.358694,0.785892,0.476824,0.918242,0.741678,0.755766,0.764618,0.192033,0.918045,0.734199,0.520679,0.0669595,0.179419,0.893237,0.281489,0.0807677,0.434887,0.514975,0.880629,0.167114,0.548854,0.499662,0.578922,0.369478,0.235291,0.223586,0.395559,0.172445,0.0890106,0.857923,0.211299,0.816532,0.864985,0.945729,0.863391,0.0702717,0.616166,0.201078,0.930707,0.812287,0.204034,0.701977,0.476874,0.128161,0.279076,0.281321,0.834272,0.681237,0.827909,0.226983,0.948363,0.809385,0.718864,0.550995,0.111796,0.913068,0.983663,0.333892,0.637008,0.864203,0.344817,0.914616,0.956753,0.00105619,0.960908,0.479959,0.632334,0.206892,0.676539,0.0257186,0.584066,0.866869,0.578386,0.159371,0.881911,0.89121,0.105987,0.605949,0.743704,0.196594,0.771638,0.962743,0.871357,0.18223,0.634652,0.667113,0.525203,0.118425,0.590337,0.887925,0.119931,0.889323,0.771527,0.74229,0.336641,0.208796,0.683627,0.609481,0.197628,0.049327,0.917435,0.507143,0.544855,0.410209,0.503281,0.873089,0.114296,0.27597,0.541934,0.224891,0.863869,0.315731,0.282638,0.588565,0.211887,0.103563,0.995992,0.920162,0.182018,0.578751,0.464098,0.885589,0.615813,0.610739,0.542235,0.844745,0.684859,0.514232,0.291576,0.777393,0.129962,0.339881,0.677875,0.55051,0.923637,0.23928,0.361096,0.868161,0.345866,0.210868,0.707111,0.028531,0.552287,0.120558,0.73969,0.529591,0.155269,0.589628,0.414309,0.693699,0.572954,0.665309,0.346239,0.542037,0.171576,0.448202,0.48212,0.320217,0.467337,0.438679,0.577021,0.0317387,0.0647103,0.411715,0.728089,0.349388,0.859715,0.957301,0.971065,0.450467,0.690625,0.874603,0.0841055,0.647396,0.196015,0.457836,0.100764,0.0507591,0.939934,0.847532,0.324298,0.27678,0.0752857,0.432413,0.134791,0.779566,0.173946,0.417458,0.751345,0.251586,0.914724,0.252504,0.954737,0.00521415,0.326625,0.219058,0.690016,0.186703,0.461804,0.775681,0.24381,0.0737557,0.604087,0.745188,0.794596,0.763672,0.00758255,0.286089,0.708379,0.758495,0.804027,0.53198,0.17061,0.636669,0.326107,0.255478,0.105173,0.94455,0.00472665,0.212523,0.163889,0.458498,0.605402,0.0444752,0.336487,0.646529,0.277136,0.920956,0.377145,0.547091,0.33198,0.262313,0.746981,0.283083,0.726031,0.679679,0.172239,0.245275,0.456057,0.105748,0.70293,0.482593,0.615156,0.0375437,0.383726,0.704498,0.525069,0.533922,0.217021,0.0350468,0.805439,0.742704,0.00650764,0.638236,0.119051,0.76916,0.419436,0.268223,0.469032,0.913157,0.551907,0.647355,0.665354,0.913818,0.775734,0.724564,0.0568034,0.802394,0.00519884,0.272051,0.0952415,0.429305,0.393004,0.201315,0.112273,0.241157,0.441899,0.336132,0.115764,0.557162,0.905156,0.84972,0.503515,0.708469,0.337061,0.932605,0.331218,0.572979,0.676262,0.00325769,0.0777757,0.0679247,0.30409,0.454643,0.577944,0.0260137,0.40247,0.941328,0.405768,0.811184,0.108017,0.950149,0.720906,0.0772371,0.0141216,0.842168,0.202,0.891412,0.382999,0.503933,0.907781,0.372384,0.901392,0.109557,0.973715,0.945787,0.0342212,0.505027,0.484556,0.312063,0.916608,0.702517,0.0801672,0.627351,0.841188,0.426549,0.130295,0.170317,0.483206,0.304949,0.695479,0.847047,0.938002,0.324888,0.971023,0.760663,0.324055,0.269423,0.64862,0.957514,0.0073604,0.21255,0.127546,0.0663295,0.129224,0.842568,0.932623,0.544145,0.711359,0.865022,0.27672,0.162361,0.292388,0.46091,0.931115,0.230799,0.587082,0.00815821,0.29228,0.135183,0.81398,0.00694185,0.326067,0.50333,0.286128,0.0497352,0.262802,0.733397,0.340823,0.948734,0.179227,0.733796,0.756713,0.286099,0.879015,0.358067,0.173484,0.700248,0.95029,0.654419,0.306451,0.552917,0.828256,0.280046,0.477852,0.480216,0.823895,0.520794,0.538939,0.532786,0.592455,0.281321,0.518392,0.431753,0.0645685,0.911417,0.277441,0.570084,0.385832,0.859697,0.543576,0.335903,0.788699,0.595521,0.182674,0.756813,0.291887,0.0688072,0.284688,0.915667,0.921703,0.907063,0.825469,0.884511,0.564183,0.147724,0.73299,0.581429,0.62662,0.325377,0.959269,0.236768,0.0365617,0.512581,0.491452,0.774737,0.615526,0.932399,0.535657,0.141627,0.886894,0.697103,0.0422643,0.747928,0.580858,0.272336,0.864746,0.884216,0.179428,0.362418,0.527952,0.928586,0.651649,0.879839,0.0900788,0.823261,0.908375,0.192779,0.581412,0.591257,0.647078,0.428972,0.0785252,0.372117,0.494593,0.957034,0.154683,0.707623,0.399805,0.146671,0.0515736,0.771583,0.912591,0.862652,0.802508,0.708819,0.55522,0.363247,0.11911,0.28384,0.841098,0.800116,0.085706,0.926209,0.925234,0.743836,0.598912,0.799323,0.971487,0.262934,0.133766,0.694589,0.734499,0.0468578,0.163253,0.219933,0.341186,0.419255,0.701887,0.767513,0.235551,0.78193,0.840277,0.051598,0.265374,0.622676,0.0870389,0.196791,0.822849,0.692083,0.534811,0.397284,0.809037,0.244955,0.44387,0.496247,0.699245,0.715265,0.886666,0.0252376,0.571541,0.112004,0.227408,0.719154,0.697028,0.743171,0.0448871,0.74021,0.160875,0.722248,0.435604,0.25053,0.445991,0.499358,0.114026,0.0827304,0.320148,0.551138,0.110572,0.983652,0.373489,0.937808,0.909096,0.632921,0.299695,0.00410444,0.616014,0.350951,0.220229,0.145006,0.676658,0.234752,0.842158,0.942516,0.887673,0.0776283,0.273367,0.0410577,0.614966,0.753073,0.841464,0.648106,0.994357,0.843734,0.964933,0.959144,0.231377,0.378594,0.479934,0.967047,0.405828,0.401217,0.760277,0.589083,0.676959,0.63577,0.271958,0.819102,0.902378,0.0409691,0.940179,0.119256,0.437318,0.930351,0.359019,0.149088,0.113511,0.682208,0.903306,0.962003,0.208924,0.565439,0.635194,0.571811,0.965924,0.956032,0.2302,0.566523,0.153651,0.713234,0.395334,0.517047,0.0841329,0.472362,0.441004,0.463676,0.940534,0.342513,0.248931,0.345035,0.188064,0.418244,0.527005,0.357824,0.845243,0.0139345,0.383968,0.0662879,0.807385,0.411129,0.545822,0.850214,0.224675,0.279105,0.576271,0.723645,0.130758,0.164145,0.224757,0.490501,0.0757508,0.950137,0.21694,0.338275,0.820031,0.535084,0.777538,0.184867,0.580486,0.863138,0.129759,0.808006,0.381201,0.418634,0.269084,0.761228,0.991488,0.941072,0.252321,0.505077,0.418985,0.99219,0.0801145,0.373468,0.909784,0.0734658,0.472317,0.471029,0.980332,0.536283,0.770746,0.673776,0.370843,0.305464,0.558803,0.903706,0.525966,0.780937,0.608414,0.576504,0.789782,0.241967,0.300757,0.437127,0.918675,0.976617,0.277556,0.792489,0.775537,0.477465,0.524284,0.367667,0.643346,0.14662,0.824698,0.0929585,0.51056,0.351706,0.781319,0.111119,0.0109463,0.0711895,0.386485,0.546798,0.190744,0.122825,0.148521,0.043619,0.299391,0.381778,0.332684,0.991386,0.9099,0.102305,0.250749,0.930975,0.316743,0.51599,0.5477,0.75392,0.262141,0.902851,0.536683,0.950417,0.263753,0.57112,0.64005,0.669013,0.655284,0.11368,0.371077,0.400294,0.733514,0.540392,0.277215,0.850225,0.813907,0.0679997,0.223292,0.400281,0.64132,0.21433,0.114999,0.193876,0.825772,0.0447906,0.757613,0.415528,0.881461,0.851768,0.791441,0.314506,0.641689,0.363084,0.810861,0.996359,0.201029,0.69713,0.276834,0.16319,0.290212,0.521233,0.846474,0.592675,0.892006,0.535047,0.421136,0.270496,0.571496,0.503439,0.395585,0.174319,0.880957,0.899295,0.589738,0.0773284,0.63767,0.0374006,0.0747256,0.0704005,0.0528656,0.0531259,0.0550967,0.0307079,0.806615,0.110546,0.44648,0.85567,0.024582,0.814901,0.507591,0.914532,0.0266079,0.664915,0.851809,0.150797,0.807844,0.295816,0.854748,0.812029,0.714627,0.118976,0.241267,0.035314,0.427275,0.14522,0.682854,0.863082,0.566876,0.455766,0.315696,0.245242,0.836328,0.306768,0.598785,0.433517,0.814219,0.759072,0.482495,0.923724,0.0986351,0.806825,0.571618,0.316641,0.952117,0.009148,0.708323,0.0613511,0.120673,0.67105,0.0526567,0.0501882,0.868998,0.94754,0.0916541,0.056809,0.64071,0.317164,0.593589,0.454845,0.688443,0.696517,0.0524077,0.585616,0.135696,0.349479,0.0491735,0.816348,0.171758,0.848172,0.131759,0.618205,0.54429,0.731391,0.590863,0.333853,0.749059,0.580192,0.125647,0.908794,0.949819,0.0329761,0.882633,0.261699,0.346444,0.544049,0.0758609,0.711583,0.775101,0.0881295,0.101446,0.0311162,0.505982,0.914003,0.259014,0.35824,0.755025,0.650584,0.364893,0.194965,0.417807,0.0529529,0.643567,0.763136,0.199697,0.633026,0.339616,0.419739,0.0821555,0.432739,0.472698,0.537153,0.780098,0.827128,0.430939,0.553566,0.704505,0.807218,0.707858,0.48772,0.25163,0.193325,0.499927,0.330193,0.5711,0.240921,0.4618,0.833288,0.352004,0.740157,0.268767,0.567223,0.276576,0.645972,0.64412,0.17348,0.94175,0.145604,0.894981,0.825284,0.501408,0.86991,0.519,0.729426,0.765708,0.274007,0.513175,0.602329,0.656911,0.464189,0.308246,0.946958,0.632815,0.457273,0.385077,0.671706,0.626289,0.314234,0.597316,0.0889778,0.0895391,0.0568336,0.362804,0.4727,0.830129,0.110215,0.527233,0.448812,0.576279,0.102565,0.096999,0.945258,0.368271,0.354406,0.930064,0.219485,0.460835,0.562187,0.728006,0.209714,0.541142,0.388262,0.599644,0.640174,0.610692,0.750152,0.49518,0.497553,0.988099,0.218578,0.274785,0.932919,0.634619,0.496835,0.984403,0.0638524,0.278906,0.111072,0.512843,0.60163,0.760919,0.930533,0.94169,0.0691736,0.732704,0.818887,0.712857,0.691811,0.359389,0.42917,0.839296,0.999758,0.456469,0.419241,0.132592,0.316992,0.781123,0.0893582,0.981381,0.551795,0.0996907,0.977518,0.341189,0.72452,0.561308,0.395865,0.777606,0.845023,0.989046,0.0619488,0.0120271,0.516921,0.760616,0.825313,0.909576,0.821167,0.331207,0.828897,0.00572139,|0.878565,0.734118,0.593566,0.25404,0.253894,0.215635,0.845141,0.834898,0.626024,0.251825,0.230984,0.355365,0.959033,0.00931859,0.217618,0.133977,0.145152,0.331121,0.634954,0.729361,0.273401,0.739312,0.209615,0.43557,0.505193,0.431347,0.670942,0.611321,0.844225,0.370895,0.375363,0.978741,0.642297,0.741182,0.141813,0.199367,0.456916,0.348691,0.201748,0.739369,0.899627,0.17082,0.426002,0.517738,0.479671,0.590104,0.677258,0.547463,0.185524,0.195963,0.186353,0.325888,0.664497,0.221345,0.0943173,0.254675,0.115167,0.320977,0.595026,0.136509,0.638984,0.0139029,0.774866,0.0840781,0.6493,0.41017,0.0876135,0.0142519,0.441696,0.711344,0.19565,0.924231,0.189771,0.0936428,0.951743,0.901647,0.618204,0.860265,0.550389,0.751066,0.666571,0.0606391,0.16803,0.811152,0.415212,0.811337,0.393526,0.206504,0.956558,0.0901513,0.826851,0.702481,0.531699,0.911242,0.753343,0.686226,0.735444,0.588808,0.105656,0.955771,0.239151,0.569645,0.577564,0.416601,0.0768371,0.643975,0.827413,0.76702,0.103992,0.970085,0.756957,0.169512,0.910188,0.0119815,0.236233,0.736378,0.988871,0.398583,0.43332,0.153938,0.525173,0.755883,0.862995,0.00746602,0.582781,0.453336,0.972515,0.218542,0.366926,0.173299,0.0947912,0.916371,0.82932,0.589767,0.788995,0.234654,0.433497,0.90658,0.222834,0.452207,0.344596,0.25189,0.23306,0.763955,0.49721,0.164283,0.687109,0.194075,0.696215,0.884095,0.516296,0.153371,0.667587,0.808017,0.0250185,0.463808,0.0650398,0.66648,0.720335,0.154461,0.617568,0.161177,0.927699,0.641043,0.992204,0.136538,0.116478,0.786916,0.0912071,0.813229,0.353338,0.991857,0.417805,0.360683,0.387325,0.0759108,0.113596,0.0377025,0.354036,0.934812,0.200769,0.434717,0.83122,0.145477,0.982168,0.715025,0.687062,0.0816978,0.615054,0.362912,0.105074,0.0821728,0.690283,0.572771,0.916613,0.165565,0.351819,0.291978,0.400089,0.408264,0.955502,0.0175912,0.610939,0.352971,0.83646,0.893468,0.0515124,0.483864,0.30237,0.0039317,0.345776,0.524119,0.0419613,0.198073,0.656125,0.615538,0.145142,0.467978,0.335763,0.566814,0.0484561,0.0856085,0.572965,0.101787,0.85838,0.902252,0.9413,0.692114,0.985739,0.8466,0.859611,0.25371,0.492972,0.58163,0.06637,0.772247,0.758303,0.167379,0.56494,0.0810756,0.069259,0.48228,0.495301,0.63189,0.537528,0.701642,0.519698,0.622935,0.602344,0.681365,0.104645,0.788233,0.0830415,0.862336,0.14097,0.446635,0.714504,0.35357,0.268652,0.522843,0.569739,0.187269,0.749136,0.00355113,0.599447,0.50752,0.0874759,0.685323,0.424936,0.707729,0.641907,0.864833,0.646324,0.0579797,0.625575,0.0182925,0.271908,0.663796,0.232718,0.726306,0.7233,0.610507,0.629306,0.2277,0.293536,0.535675,0.549739,0.713122,0.479119,0.808416,0.988332,0.963041,0.426628,0.236359,0.737625,0.0675713,0.666811,0.446412,0.931313,0.584133,0.962371,0.640463,0.559701,0.80225,0.411312,0.381986,0.171896,0.826637,0.988896,0.106058,0.956405,0.647419,0.118858,0.522141,0.978264,0.184613,0.648097,0.11039,0.87948,0.00625837,0.469402,0.29414,0.474889,0.425435,0.462109,0.651841,0.992313,0.9247,0.0198126,0.889354,0.434769,0.218353,0.549601,0.218047,0.203642,0.6566,0.590715,0.460248,0.694906,0.0961093,0.700384,0.313899,0.352954,0.53088,0.403885,0.841109,0.0358916,0.469895,0.700033,0.0207567,0.500619,0.704461,0.0581925,0.493778,0.474377,0.529348,0.00331891,0.474314,0.727651,0.544078,0.75262,0.51561,0.986979,0.150177,0.56814,0.631388,0.242515,0.722593,0.336377,0.0975684,0.446809,0.934076,0.130279,0.978963,0.246502,0.489644,0.0675455,0.940889,0.839868,0.158245,0.709938,0.148505,0.281885,0.832703,0.695176,0.517551,0.183926,0.158392,0.448394,0.600572,0.191132,0.464106,0.0924109,0.6452,0.118135,0.530415,0.548639,0.505992,0.722742,0.709663,0.507234,0.698106,0.436214,0.696978,0.863715,0.866042,0.696525,0.231654,0.33611,0.677928,0.636904,0.566917,0.286461,0.797768,0.646003,0.279237,0.910309,0.523546,0.46791,0.756456,0.151006,0.0397331,0.135913,0.991809,0.481075,0.456053,0.316375,0.525846,0.587635,0.159945,0.893434,0.498909,0.0124007,0.911517,0.433261,0.958971,0.278843,0.160798,0.0286156,0.492693,0.55166,0.00170547,0.727235,0.0838079,0.577363,0.924628,0.408088,0.0451712,0.218455,0.432837,0.84761,0.424046,0.0548924,0.0382501,0.560067,0.246442,0.64197,0.170876,0.790772,0.47326,0.0910606,0.596022,0.0705631,0.742982,0.559157,0.83741,0.954633,0.775397,0.607329,0.994981,0.325586,0.762571,0.756445,0.630192,0.69305,0.433145,0.702221,0.262671,0.176918,0.680459,0.937858,0.780199,0.601896,0.15588,0.407097,0.654879,0.657491,0.534811,0.169394,0.779434,0.386784,0.253348,0.0149496,0.0366633,0.347689,0.534096,0.249332,0.657606,0.552688,0.014643,0.344147,0.424265,0.997091,0.108218,0.610933,0.939704,0.675109,0.209464,0.440994,0.83288,0.630863,0.979263,0.37505,0.311147,0.354775,0.939108,0.953135,0.681949,0.818022,0.42126,0.540342,0.126601,0.968155,0.705136,0.23051,0.447147,0.906488,0.700576,0.254763,0.932313,0.779526,0.388392,0.594781,0.522164,0.701627,0.418207,0.619837,0.876071,0.622562,0.0311443,0.338169,0.615967,0.314545,0.40983,0.577291,0.498614,0.298868,0.951025,0.541404,0.882647,0.964972,0.726162,0.0432785,0.512896,0.277471,0.259545,0.877197,0.475361,0.0133955,0.306092,0.889387,0.530759,0.173629,0.91977,0.344544,0.686186,0.316088,0.85011,0.416058,0.683972,0.0996529,0.118018,0.78757,0.17136,0.75667,0.701371,0.674177,0.0240136,0.747197,0.403153,0.471215,0.555385,0.921396,0.375072,0.151574,0.860577,0.967473,0.723621,0.976792,0.802182,0.14331,0.559083,0.952216,0.583526,0.38224,0.757706,0.239557,0.841686,0.0536535,0.63668,0.231352,0.405646,0.497957,0.580284,0.317005,0.231525,0.402856,0.744591,0.372533,0.794259,0.325414,0.257544,0.599707,0.198503,0.226301,0.426955,0.877276,0.0429791,0.371432,0.321463,0.672445,0.948718,0.711051,0.232433,0.668277,0.0864137,0.910966,0.787973,0.181757,0.614828,0.878313,0.114448,0.52358,0.391012,0.394468,0.693739,0.257914,0.974143,0.528459,0.861256,0.0750163,0.223262,0.0648758,0.431909,0.965302,0.762382,0.04518,0.545123,0.95006,0.535451,0.446752,0.305445,0.73079,0.495652,0.543573,0.645825,0.797423,0.831372,0.147139,0.850095,0.0903326,0.629673,0.0346594,0.94873,0.353316,0.799822,0.849533,0.655757,0.561898,0.969181,0.704317,0.288688,0.998019,0.328761,0.600862,0.212473,0.657587,0.537439,0.941042,0.542111,0.813137,0.300241,0.364124,0.134251,0.60805,0.340059,0.984135,0.948204,0.443188,0.686357,0.343168,0.487413,0.00381601,0.0646318,0.161746,0.628125,0.776825,0.515822,0.0966483,0.962768,0.397617,0.863356,0.69865,0.853693,0.300248,0.343608,0.701179,0.328434,0.986454,0.0695986,0.147661,0.517085,0.770385,0.857247,0.219824,0.482717,0.717695,0.63188,0.180998,0.788094,0.992105,0.927543,0.848635,0.500955,0.598753,0.14448,0.184669,0.0438865,0.985088,0.207386,0.554325,0.705391,0.195815,0.302748,0.632289,0.612294,0.97166,0.813655,0.740856,0.920358,0.413447,0.518105,0.168288,0.302143,0.817091,0.317809,0.769443,0.988044,0.986706,0.722762,0.0133301,0.154632,0.943156,0.779951,0.0236814,0.0625465,0.924447,0.478031,0.0520754,0.00434238,0.198168,0.590296,0.87559,0.0388454,0.324482,0.268504,0.961496,0.0828121,0.19509,0.808676,0.131522,0.509157,0.097027,0.137953,0.756576,0.925885,0.761439,0.321053,0.483553,0.835103,0.34869,0.543988,0.795672,0.683283,0.400087,0.182934,0.782014,0.779183,0.183274,0.898106,0.322247,0.568612,0.0529838,0.631107,0.563802,0.497439,0.411628,0.817774,0.042639,0.437712,0.850062,0.692805,0.790556,0.355378,0.747408,0.628847,0.743927,0.536827,0.65433,0.815782,0.915465,0.481639,0.0590093,0.334978,0.575325,0.979558,0.190039,0.627825,0.323149,0.662026,0.828366,0.266794,0.739009,0.384946,0.756004,0.573006,0.737298,0.458292,0.0410421,0.111158,0.53258,0.246562,0.424127,0.96131,0.447094,0.480448,0.141081,0.575855,0.326136,0.722285,0.959915,0.609492,0.709776,0.495728,0.397331,0.0794499,0.896487,0.502874,0.290483,0.374454,0.518028,0.20869,0.455817,0.123112,0.0119899,0.296573,0.554409,0.453248,0.520353,0.939991,0.818158,0.579428,0.427568,0.297117,0.728145,0.16038,0.43283,0.884597,0.554415,0.631365,0.76319,0.260933,0.484908,0.155664,0.977304,0.0320641,0.935888,0.980207,0.454984,0.220318,0.387743,0.293411,0.771114,0.446876,0.98868,0.408651,0.485822,0.724312,0.324069,0.421532,0.474136,0.705826,0.661527,0.547596,0.555321,0.615419,0.63165,0.509001,0.466206,0.373116,0.290782,0.949294,0.142486,0.143254,0.0709298,0.884906,0.535726,0.84889,0.283085,0.506562,0.0291658,0.951789,0.726213,0.706667,0.219154,0.426876,0.886518,0.210296,0.993686,0.676968,0.0373006,0.889847,0.263147,0.123632,0.076657,0.567274,0.446183,0.511641,0.312184,0.35227,0.759511,0.536138,0.551004,0.320952,0.865895,0.583094,0.297424,0.923215,0.55886,0.772905,0.875397,0.894168,0.0570392,0.915185,0.675672,0.0710002,0.447834,0.532061,0.0833018,0.259482,0.788509,0.544913,0.724068,0.91994,0.805443,0.230682,0.781026,0.205466,0.162539,0.55596,0.108484,0.519081,0.810288,0.289281,0.946806,0.452324,0.247964,0.0817815,0.993192,0.901364,0.45283,0.855887,0.0110427,0.350684,0.396619,0.230233,0.795836,0.555634,0.448458,0.967315,0.0347949,0.584193,0.368855,0.823737,0.200806,0.393877,0.992221,0.90802,0.639254,0.878083,0.646705,0.586234,0.610317,0.139025,0.585183,0.627069,0.783613,0.980192,0.303298,0.121094,|0.319662,0.779334,0.974686,0.928315,0.350295,0.56952,0.547662,0.897184,0.708268,0.122396,0.0634798,0.753254,0.0343882,0.423035,0.985254,0.305456,0.605972,0.667125,0.47388,0.287112,0.59652,0.889223,0.807236,0.587678,0.891738,0.774715,0.784817,0.144655,0.897118,0.000911891,0.357299,0.284793,0.86162,0.396401,0.835792,0.788852,0.964747,0.930466,0.985792,0.63418,0.689975,0.0874289,0.00663382,0.728246,0.795092,0.375988,0.574537,0.525721,0.0413853,0.190827,0.625516,0.693535,0.491549,0.578832,0.783175,0.439789,0.371248,0.798049,0.674165,0.571458,0.788404,0.529727,0.11957,0.404708,0.735144,0.500385,0.270296,0.0217375,0.693648,0.780892,0.491213,0.996313,0.181977,0.441055,0.307011,0.442905,0.429812,0.35018,0.226712,0.102038,0.0371578,0.307589,0.210551,0.130884,0.592942,0.538102,0.527365,0.671601,0.121493,0.194439,0.0377212,0.84188,0.413941,0.407397,0.324566,0.564946,0.0999283,0.537326,0.488325,0.813635,0.816082,0.0574938,0.170469,0.812783,0.529371,0.267551,0.0122336,0.424293,0.62254,0.725386,0.00982207,0.0117363,0.464742,0.838756,0.553218,0.0698215,0.575825,0.814094,0.227565,0.184871,0.184531,0.751037,0.554369,0.242051,0.550438,0.391875,0.142799,0.778439,0.786081,0.105605,0.931585,0.532412,0.93336,0.117239,0.061113,0.526446,0.27846,0.99315,0.253075,0.330401,0.398496,0.571674,0.657436,0.799378,0.956461,0.100327,0.0518293,0.691898,0.385241,0.724266,0.77655,0.00560141,0.078419,0.224957,0.460513,0.97018,0.877158,0.055724,0.134369,0.78986,0.365473,0.590639,0.429803,0.766319,0.699721,0.536646,0.55255,0.916048,0.798189,0.010735,0.0281379,0.421019,0.59054,0.0542382,0.792959,0.01193,0.291612,0.890063,0.971059,0.327821,0.104365,0.0809092,0.712785,0.94132,0.854157,0.688752,0.981278,0.42097,0.112971,0.912469,0.0126485,0.347761,0.506755,0.101342,0.567571,0.388155,0.982643,0.0324811,0.588569,0.13728,0.154079,0.643129,0.240028,0.924843,0.90037,0.583469,0.125357,0.496104,0.166948,0.99061,0.383317,0.812538,0.32222,0.969741,0.59216,0.482304,0.339719,0.00468796,0.241373,0.00215876,0.76043,0.392588,0.293594,0.63142,0.284913,0.75708,0.0292845,0.119852,0.71326,0.140742,0.892386,0.271034,0.882622,0.346525,0.801382,0.0919552,0.837181,0.86635,0.840841,0.768672,0.0813397,0.580561,0.411141,0.324568,0.936849,0.951399,0.47333,0.418191,0.182028,0.734369,0.52723,0.635116,0.128753,0.0370463,0.186157,0.0389584,0.931239,0.128718,0.676258,0.49797,0.833515,0.250914,0.122378,0.978593,0.166733,0.444957,0.0572121,0.833556,0.154969,0.697236,0.538929,0.874969,0.413834,0.0933238,0.900842,0.191873,0.0294148,0.466053,0.958579,0.289878,0.502472,0.862983,0.832804,0.288716,0.935309,0.670518,0.951191,0.195768,0.904904,0.534468,0.843799,0.627871,0.671001,0.153826,0.617934,0.879286,0.691665,0.00745887,0.149406,0.176906,0.935465,0.339353,0.375349,0.246467,0.481289,0.294531,0.678569,0.890993,0.213509,0.959396,0.109621,0.575146,0.9895,0.697102,0.62472,0.57778,0.417683,0.11212,0.88226,0.423555,0.200465,0.909764,0.11041,0.104784,0.252911,0.51968,0.0593169,0.102253,0.507517,0.974823,0.519085,0.198317,0.170903,0.00328952,0.7714,0.0100845,0.119248,0.949452,0.462066,0.840949,0.883635,0.0693052,0.29681,0.704263,0.428797,0.884181,0.748554,0.709242,0.351651,0.314134,0.0309381,0.425425,0.0799575,0.726283,0.0839697,0.272862,0.077705,0.570795,0.713852,0.210297,0.231342,0.801972,0.630171,0.920745,0.667824,0.385041,0.239911,0.53649,0.538279,0.710794,0.766064,0.193308,0.0263732,0.23443,0.982782,0.143085,0.789705,0.0486109,0.293133,0.0633153,0.693576,0.186677,0.35205,0.825445,0.396021,0.121515,0.616136,0.433804,0.481533,0.443746,0.818025,0.106245,0.0102417,0.321976,0.96849,0.925125,0.943609,0.370204,0.915496,0.0510117,0.169322,0.194571,0.860138,0.602584,0.514119,0.491152,0.282678,0.869451,0.144871,0.932529,0.530054,0.614159,0.782476,0.519581,0.0325115,0.540311,0.737424,0.217857,0.727463,0.57663,0.509141,0.734666,0.603793,0.514231,0.504588,0.653973,0.396664,0.191052,0.587717,0.71407,0.557086,0.829609,0.0957839,0.380705,0.169513,0.533988,0.83405,0.379136,0.979588,0.903254,0.845607,0.363806,0.809665,0.104715,0.550172,0.94905,0.976486,0.732506,0.702749,0.731964,0.656876,0.22696,0.570192,0.752917,0.0192211,0.234285,0.822719,0.789024,0.098612,0.859124,0.878339,0.983609,0.640499,0.286873,0.100947,0.256666,0.433254,0.715006,0.871051,0.567179,0.69337,0.638825,0.644158,0.771055,0.18379,0.942537,0.797749,0.348245,0.437042,0.625296,0.374892,0.153325,0.407569,0.821733,0.343665,0.462071,0.753451,0.674208,0.986629,0.843509,0.944643,0.59289,0.421933,0.750456,0.541087,0.00220829,0.133631,0.7685,0.786767,0.813331,0.350912,0.630821,0.585673,0.161023,0.517062,0.0393248,0.36539,0.401436,0.932698,0.434016,0.254725,0.0239363,0.315515,0.229407,0.120899,0.614824,0.0958081,0.412978,0.852576,0.51175,0.928795,0.0892748,0.887192,0.403422,0.0819404,0.946052,0.894927,0.413596,0.610906,0.521941,0.867717,0.804709,0.81041,0.16257,0.923153,0.365171,0.524886,0.467156,0.821717,0.662823,0.67413,0.0731802,0.0641592,0.486009,0.0176896,0.534797,0.76904,0.55421,0.448886,0.782711,0.611945,0.0365231,0.142561,0.589523,0.446225,0.72436,0.623071,0.701703,0.244081,0.494069,0.860164,0.819623,0.660098,0.464192,0.919105,0.206711,0.247386,0.0711591,0.875988,0.0472754,0.560139,0.98139,0.226444,0.740906,0.714634,0.997651,0.812382,0.899918,0.434121,0.0644352,0.47429,0.298972,0.227918,0.519785,0.226879,0.214944,0.832963,0.29982,0.499237,0.102128,0.23378,0.216502,0.919162,0.00176811,0.0216845,0.188585,0.259562,0.198781,0.773995,0.0481976,0.210727,0.579319,0.752508,0.59777,0.440278,0.864571,0.112975,0.512233,0.934508,0.702189,0.413362,0.382637,0.559472,0.144662,0.070088,0.450992,0.965703,0.116799,0.399078,0.559944,0.993618,0.220309,0.83835,0.508026,0.788489,0.783166,0.596053,0.950981,0.0254539,0.393739,0.935371,0.00864756,0.171103,0.668209,0.36544,0.693644,0.442191,0.253869,0.123798,0.680385,0.617266,0.802898,0.392761,0.921981,0.526881,0.00222284,0.785599,0.431444,0.401309,0.849233,0.720723,0.847953,0.04991,0.365217,0.799889,0.0742279,0.05898,0.772417,0.883749,0.881912,0.925074,0.892341,0.180881,0.213697,0.170988,0.299768,0.923826,0.264907,0.819815,0.186279,0.864492,0.100185,0.388981,0.670255,0.624017,0.715004,0.603493,0.586661,0.972803,0.167529,0.249347,0.075399,0.394238,0.997757,0.919299,0.401023,0.873006,0.71084,0.179083,0.0415143,0.751391,0.323468,0.868174,0.472914,0.757858,0.347369,0.209953,0.755798,0.00312066,0.766567,0.856326,0.59716,0.218297,0.282406,0.93137,0.499481,0.960955,0.924776,0.0588592,0.982477,0.0480917,0.76567,0.475196,0.996966,0.17307,0.263587,0.927175,0.0091809,0.692093,0.463668,0.768394,0.877152,0.375575,0.286856,0.93914,0.668884,0.819534,0.974383,0.319352,0.626372,0.920724,0.412453,0.335613,0.775668,0.761992,0.0411372,0.936051,0.650303,0.327809,0.139768,0.604838,0.369509,0.51545,0.781309,0.0315644,0.656841,0.802782,0.976894,0.117209,0.482996,0.944074,0.355219,0.106491,0.356509,0.868447,0.33614,0.620777,0.707534,0.239829,0.496555,0.626353,0.49318,0.736288,0.970153,0.686707,0.439953,0.189502,0.479183,0.551901,0.282717,0.481692,0.11652,0.48164,0.334441,0.387392,0.959751,0.984191,0.504603,0.185428,0.642553,0.535132,0.950427,0.298881,0.625902,0.405529,0.333022,0.129274,0.550961,0.0669318,0.423688,0.461452,0.325588,0.670999,0.818729,0.715993,0.553523,0.261162,0.918364,0.657327,0.330287,0.234708,0.690042,0.0685453,0.323754,0.802239,0.425903,0.00531018,0.0173749,0.290139,0.0927182,0.0158551,0.70221,0.753603,0.626616,0.867468,0.299606,0.436027,0.714368,0.0128617,0.481876,0.0432691,0.594,0.75257,0.216938,0.664952,0.326352,0.558143,0.890828,0.513937,0.993254,0.669662,0.14078,0.286099,0.266829,0.432423,0.0508798,0.321877,0.671941,0.368659,0.0215186,0.67352,0.598493,0.15579,0.204203,0.138123,0.834553,0.561294,0.179963,0.608806,0.535318,0.124756,0.561387,0.0938422,0.821288,0.759699,0.133265,0.68801,0.780057,0.425205,0.602528,0.866192,0.350027,0.135498,0.074624,0.653032,0.196434,0.208432,0.447765,0.786412,0.765375,0.999874,0.136823,0.410532,0.250414,0.930422,0.202188,0.373273,0.264754,0.313328,0.0966074,0.0224857,0.520967,0.541648,0.82167,0.361825,0.301766,0.480866,0.677105,0.876341,0.0226924,0.837533,0.17322,0.357566,0.4889,0.0151748,0.970046,0.093981,0.180812,0.192134,0.814053,0.781256,0.75008,0.112163,0.185675,0.119781,0.923373,0.509434,0.395148,0.953059,0.258123,0.222064,0.0229064,0.383825,0.116283,0.772772,0.729276,0.65179,0.431792,0.569614,0.570369,0.108738,0.210579,0.0470957,0.321236,0.0695434,0.620398,0.970579,0.466475,0.535891,0.360092,0.539174,0.622128,0.294692,0.31616,0.526132,0.445002,0.097128,0.731372,0.902962,0.537272,0.609761,0.656639,0.110569,0.299856,0.922346,0.608879,0.5097,0.705861,0.124421,0.30395,0.132985,0.345626,0.640513,0.522977,0.269258,0.447764,0.291676,0.379368,0.805044,0.794496,0.468407,0.0352457,0.976273,0.276287,0.397514,0.219388,0.280464,0.998446,0.170671,0.0657929,0.122679,0.884822,0.551892,0.0362531,0.115417,0.802384,0.344135,0.924583,0.42506,0.678729,0.708911,0.41455,0.385899,0.175292,0.0496692,0.351724,0.142989,0.82412,0.942675,0.960961,0.790022,0.890845,0.900632,0.246198,0.824099,0.0443095,0.971396,0.937984,0.396544,0.762761,|0.141747,0.547006,0.994837,0.279317,0.849668,0.605974,0.945867,0.641175,0.379617,0.822114,0.384521,0.570702,0.296482,0.268817,0.755941,0.804224,0.702399,0.11286,0.406856,0.204279,0.584279,0.421428,0.0614768,0.617531,0.352799,0.179198,0.166069,0.77113,0.32359,0.0389767,0.777835,0.877153,0.817509,0.519809,0.869575,0.0266917,0.714873,0.227933,0.738709,0.475303,0.655019,0.632053,0.197026,0.574054,0.261178,0.589829,0.0554796,0.64164,0.0422691,0.183607,0.0377018,0.383143,0.64567,0.429506,0.592641,0.907212,0.425228,0.380074,0.553345,0.970521,0.210773,0.0603117,0.399792,0.961692,0.0415382,0.0416623,0.599275,0.256799,0.482624,0.922071,0.570024,0.0178365,0.839067,0.80799,0.800918,0.542549,0.511942,0.896055,0.955477,0.68543,0.595435,0.388393,0.342474,0.0410902,0.270366,0.932769,0.863641,0.786689,0.374907,0.810555,0.858215,0.890942,0.250288,0.955345,0.61898,0.14181,0.323952,0.129353,0.128458,0.314245,0.691072,0.872792,0.958525,0.369082,0.449429,0.82315,0.648337,0.102736,0.538977,0.439397,0.0596667,0.940199,0.219705,0.443364,0.36283,0.765429,0.0437571,0.941948,0.656042,0.217901,0.960845,0.79634,0.175052,0.0153056,0.0873833,0.14663,0.719881,0.614616,0.875971,0.278044,0.0792699,0.91656,0.591073,0.223777,0.202676,0.603621,0.693391,0.959585,0.960844,0.785171,0.679208,0.518031,0.623199,0.552172,0.947979,0.556571,0.539138,0.797847,0.307469,0.395051,0.61972,0.231577,0.253477,0.958521,0.542298,0.0928178,0.759601,0.875384,0.154582,0.202441,0.0112554,0.178757,0.205328,0.914137,0.0740088,0.102309,0.257592,0.965064,0.880064,0.515627,0.375161,0.201584,0.820063,0.399428,0.442281,0.895802,0.90906,0.117878,0.877443,0.362813,0.478784,0.795373,0.543916,0.348421,0.928511,0.995881,0.847387,0.417362,0.74349,0.461387,0.816661,0.437021,0.763337,0.232275,0.907089,0.0495769,0.719262,0.416259,0.881264,0.251814,0.750493,0.827761,0.344444,0.658024,0.174237,0.496603,0.53219,0.14662,0.495392,0.443062,0.546144,0.389849,0.845357,0.538884,0.450808,0.539589,0.155073,0.155625,0.478477,0.739452,0.557262,0.859883,0.41813,0.190528,0.142998,0.087022,0.284942,0.790998,0.698441,0.469739,0.370158,0.130449,0.658308,0.0214979,0.0684469,0.599674,0.554075,0.712173,0.6873,0.618613,0.224075,0.0748835,0.9848,0.731695,0.373569,0.907356,0.967438,0.630941,0.69285,0.744734,0.0356814,0.772441,0.526454,0.331988,0.871436,0.729271,0.162122,0.155931,0.630495,0.078781,0.40651,0.718218,0.168097,0.234626,0.356801,0.768251,0.755177,0.768512,0.443473,0.858033,0.112481,0.130547,0.340009,0.343121,0.554294,0.888076,0.12642,0.846619,0.118444,0.556355,0.442125,0.20272,0.682035,0.985746,0.98377,0.902333,0.87028,0.455284,0.686497,0.601203,0.772406,0.367893,0.850295,0.784385,0.820004,0.683702,0.83518,0.0581773,0.733083,0.119482,0.171255,0.173954,0.131067,0.367132,0.529703,0.0563699,0.570041,0.0613642,0.285831,0.842626,0.0329337,0.455069,0.922181,0.0747945,0.725908,0.097083,0.97996,0.19121,0.79244,0.894104,0.997421,0.911855,0.903766,0.881354,0.473651,0.0954073,0.474339,0.666395,0.650558,0.32581,0.999406,0.28865,0.88672,0.84968,0.592173,0.421779,0.653508,0.532942,0.284175,0.900838,0.278843,0.556158,0.324697,0.748309,0.142965,0.447797,0.860557,0.365708,0.525371,0.825801,0.387275,0.999781,0.163196,0.647227,0.237023,0.968279,0.898294,0.0710403,0.224711,0.363286,0.335751,0.32265,0.101019,0.60389,0.340615,0.463452,0.360661,0.0811303,0.548464,0.563885,0.19647,0.613165,0.640897,0.591823,0.323288,0.188265,0.671944,0.193454,0.82117,0.946221,0.256889,0.0732286,0.722865,0.0861577,0.401544,0.30064,0.09637,0.570663,0.854106,0.21551,0.0232331,0.684027,0.640962,0.956352,0.272446,0.774784,0.284674,0.329961,0.852867,0.0499944,0.0370926,0.932219,0.383677,0.943456,0.718694,0.869617,0.922412,0.180385,0.632081,0.813391,0.7731,0.347487,0.331146,0.0521901,0.577586,0.310507,0.469858,0.671435,0.59071,0.545563,0.914754,0.664008,0.378667,0.830257,0.10384,0.54856,0.318798,0.883358,0.826861,0.844401,0.764604,0.126534,0.574008,0.892033,0.461991,0.305612,0.862959,0.964882,0.245125,0.155881,0.343769,0.980175,0.793208,0.520503,0.562094,0.445298,0.213329,0.419906,0.828524,0.110463,0.0143704,0.774638,0.872033,0.280204,0.247886,0.398828,0.581741,0.893144,0.337672,0.397694,0.682917,0.328708,0.531719,0.701386,0.678721,0.642083,0.949979,0.278975,0.66711,0.698135,0.522073,0.685478,0.344565,0.78229,0.508597,0.245137,0.28626,0.532359,0.463498,0.685241,0.905989,0.510164,0.564078,0.786596,0.926901,0.713008,0.435898,0.836564,0.647289,0.425605,0.411414,0.252836,0.365099,0.812633,0.958912,0.139402,0.637465,0.0807149,0.174873,0.312468,0.102213,0.732024,0.574512,0.133122,0.524267,0.53231,0.536933,0.454244,0.440785,0.119063,0.533376,0.967229,0.126133,0.979249,0.519676,0.90642,0.688166,0.0848365,0.706003,0.0594687,0.486533,0.182978,0.554665,0.708299,0.152699,0.55236,0.953439,0.433377,0.672063,0.834829,0.435209,0.0600379,0.112863,0.669651,0.697985,0.301917,0.303169,0.279939,0.82075,0.413321,0.84471,0.671404,0.243821,0.00424665,0.0774555,0.475823,0.985224,0.0430084,0.643181,0.439496,0.461104,0.684348,0.417476,0.29095,0.504411,0.771054,0.278602,0.20074,0.799491,0.448311,0.487652,0.673953,0.496472,0.948495,0.965565,0.760034,0.369135,0.163167,0.833521,0.454846,0.520126,0.731822,0.440739,0.273845,0.472345,0.310279,0.305435,0.770433,0.517518,0.620634,0.0523989,0.47805,0.194378,0.391154,0.677238,0.482036,0.707151,0.724322,0.675859,0.569845,0.199574,0.25853,0.0417557,0.249626,0.659336,0.204696,0.350724,0.427815,0.343695,0.150753,0.58851,0.0207906,0.159991,0.269747,0.105093,0.0297737,0.887742,0.461858,0.302735,0.260231,0.169364,0.368336,0.420416,0.486223,0.818105,0.851995,0.0915083,0.835692,0.140223,0.117467,0.465076,0.691585,0.168732,0.84073,0.315474,0.998152,0.127019,0.0184526,0.500295,0.852114,0.600285,0.389839,0.752891,0.788254,0.33885,0.40939,0.625074,0.480121,0.792628,0.0379386,0.459343,0.851824,0.427841,0.00912875,0.580274,0.738932,0.429754,0.710623,0.890682,0.750678,0.214942,0.572316,0.839655,0.68256,0.954531,0.403534,0.631934,0.652255,0.6043,0.145428,0.0698673,0.197427,0.694315,0.501475,0.969329,0.41272,0.504829,0.0959586,0.738629,0.233297,0.877035,0.654413,0.97471,0.997717,0.95491,0.628972,0.358681,0.791426,0.39269,0.122827,0.454858,0.481561,0.181949,0.510718,0.822207,0.12165,0.424644,0.0305902,0.153495,0.125014,0.418234,0.695584,0.165029,0.674683,0.369903,0.0303899,0.251543,0.0132738,0.579297,0.0920713,0.108395,0.597868,0.414426,0.931768,0.292793,0.248457,0.379534,0.673654,0.791668,0.535952,0.313597,0.719968,0.595131,0.13157,0.185528,0.454365,0.828491,0.649985,0.329274,0.664255,0.332688,0.614853,0.553266,0.919402,0.130305,0.196947,0.744835,0.625195,0.223351,0.238413,0.294801,0.594069,0.876826,0.662413,0.0491651,0.462398,0.982831,0.934382,0.204784,0.467451,0.376691,0.891661,0.863158,0.734547,0.881325,0.268052,0.642502,0.0671922,0.505898,0.378806,0.218609,0.458574,0.887993,0.684815,0.346936,0.812803,0.313544,0.172785,0.844859,0.396185,0.859865,0.675574,0.593486,0.992875,0.370625,0.096765,0.123978,0.821877,0.0986108,0.516829,0.0193133,0.841559,0.132386,0.403032,0.142148,0.265621,0.458707,0.592597,0.894731,0.685765,0.381347,0.376959,0.818275,0.163895,0.935662,0.348522,0.0729029,0.382251,0.376976,0.453758,0.0837137,0.344203,0.779788,0.983233,0.161843,0.0747202,0.250897,0.944483,0.0936055,0.44424,0.730586,0.959014,0.19517,0.776157,0.4294,0.323599,0.687998,0.414985,0.34105,0.0713296,0.182497,0.936911,0.0241226,0.642008,0.49152,0.75267,0.00652963,0.647531,0.121166,0.746514,0.47975,0.434496,0.771399,0.869088,0.240052,0.428999,0.0917374,0.495706,0.953631,0.445139,0.723507,0.51035,0.728185,0.524304,0.812769,0.00830609,0.843103,0.186768,0.569235,0.587278,0.0935947,0.949507,0.998813,0.850901,0.0773178,0.865547,0.917966,0.175435,0.908785,0.0460193,0.604066,0.942703,0.961265,0.114471,0.772126,0.944001,0.669803,0.8777,0.31956,0.896403,0.349419,0.373024,0.0477133,0.769846,0.621842,0.614457,0.415575,0.9581,0.665051,0.803907,0.740622,0.31664,0.187777,0.80647,0.250076,0.364882,0.392489,0.116816,0.0117128,0.650095,0.643424,0.68216,0.860978,0.595319,0.494092,0.618299,0.174031,0.78296,0.454833,0.983403,0.302557,0.776861,0.575694,0.0859808,0.611554,0.742471,0.723687,0.653903,0.757968,0.96622,0.617279,0.552666,0.297071,0.58785,0.917236,0.406276,0.016425,0.322007,0.274259,0.136055,0.329313,0.486575,0.0371162,0.076714,0.126991,0.422699,0.452683,0.0024991,0.154386,0.513448,0.166137,0.0903627,0.766514,0.104211,0.474496,0.961675,0.383046,0.54549,0.940708,0.0118606,0.42261,0.0176387,0.761665,0.727956,0.391103,0.9127,0.977892,0.90605,0.581342,0.489557,0.282034,0.508412,0.100546,0.2802,0.244193,0.624337,0.0450013,0.246559,0.954669,0.066848,0.758398,0.954209,0.372153,0.383831,0.506788,0.250872,0.757267,0.836836,0.86014,0.828979,0.0860193,0.756513,0.529906,0.707675,0.0586526,0.0229531,0.604758,0.943031,0.629655,0.800755,0.17938,0.931061,0.555543,0.692457,0.758802,0.395653,0.609822,0.943264,0.0821892,0.970256,0.00264013,0.313908,0.485036,0.167672,0.54193,0.798807,0.521898,0.0206566,0.269942,0.735293,0.678028,0.887071,0.46661,0.167825,0.0631174,0.0064292,0.0433797,0.370288,0.444806,0.392024,|0.883874,0.910033,0.650493,0.500812,0.767305,0.179833,0.37393,0.115139,0.883293,0.938805,0.721205,0.675001,0.86767,0.749789,0.0245566,0.206796,0.128874,0.228267,0.532769,0.331217,0.422612,0.443452,0.537438,0.884572,0.255252,0.708608,0.638834,0.0148998,0.391811,0.139454,0.522498,0.248728,0.497287,0.0947736,0.00960064,0.804733,0.64118,0.199483,0.88493,0.990762,0.732801,0.38873,0.127645,0.727998,0.273271,0.322319,0.185891,0.897559,0.320543,0.86742,0.589867,0.757637,0.962049,0.475809,0.580745,0.504908,0.630181,0.460571,0.629415,0.145152,0.408973,0.126124,0.368718,0.90334,0.795271,0.817945,0.950466,0.601166,0.8729,0.81599,0.665807,0.874621,0.184144,0.852013,0.32652,0.107044,0.754526,0.385518,0.297519,0.881484,0.881625,0.510954,0.847655,0.614605,0.0174559,0.289193,0.135533,0.921495,0.194351,0.357791,0.311262,0.0248948,0.446671,0.564824,0.896189,0.188866,0.954364,0.400647,0.512604,0.844287,0.908133,0.116296,0.0873329,0.365212,0.905687,0.751767,0.544706,0.66938,0.4549,0.546458,0.307672,0.56939,0.447803,0.171505,0.216812,0.395303,0.126355,0.0148927,0.226561,0.105565,0.793065,0.924229,0.285658,0.0722128,0.817075,0.293749,0.0280594,0.488031,0.668271,0.514377,0.00619435,0.673157,0.418212,0.421709,0.521979,0.35895,0.326667,0.95115,0.365345,0.962035,0.705414,0.259663,0.493796,0.826231,0.600173,0.906387,0.0211943,0.538998,0.413004,0.0835546,0.539977,0.345847,0.136713,0.651722,0.535861,0.319836,0.871924,0.426536,0.409699,0.795028,0.834208,0.257917,0.813513,0.932277,0.361834,0.394809,0.110034,0.87893,0.334329,0.588985,0.125897,0.874876,0.204212,0.937376,0.465193,0.539923,0.656274,0.48786,0.529196,0.295987,0.538214,0.716982,0.136588,0.700954,0.148263,0.78161,0.92503,0.614611,0.471913,0.844182,0.203938,0.364363,0.413247,0.645333,0.994391,0.0323596,0.388819,0.650262,0.18315,0.737572,0.183472,0.496392,0.233548,0.609824,0.814787,0.632633,0.721674,0.348561,0.990597,0.22375,0.581679,0.944226,0.178412,0.835726,0.0356752,0.611853,0.902779,0.0761816,0.866852,0.972876,0.241832,0.657676,0.380439,0.697012,0.119618,0.27273,0.689211,0.96071,0.561558,0.501467,0.0625359,0.148401,0.107296,0.055444,0.842932,0.66245,0.17247,0.157561,0.316119,0.707867,0.652916,0.560106,0.611542,0.858559,0.68382,0.974806,0.926862,0.757481,0.314232,0.312932,0.877504,0.0683122,0.192389,0.134649,0.468186,0.60075,0.871264,0.0960277,0.0871153,0.170471,0.996747,0.569395,0.613321,0.742692,0.483476,0.900594,0.0744578,0.6772,0.154032,0.960328,0.337673,0.27745,0.222431,0.644124,0.673766,0.101091,0.80735,0.505214,0.91526,0.0151312,0.458267,0.10445,0.896005,0.762921,0.87699,0.438979,0.094757,0.42679,0.590278,0.790731,0.603856,0.628124,0.628728,0.352367,0.806485,0.63177,0.393374,0.875673,0.22544,0.617538,0.501879,0.204056,0.575754,0.631073,0.130679,0.399974,0.896795,0.767955,0.75573,0.734058,0.892372,0.18123,0.781455,0.34774,0.706346,0.0262839,0.661531,0.0564421,0.617849,0.0395491,0.162943,0.398757,0.0733376,0.45382,0.193518,0.528508,0.530095,0.92729,0.829696,0.375909,0.736331,0.269022,0.015668,0.997129,0.299471,0.986451,0.777327,0.0165606,0.248905,0.265683,0.573902,0.493147,0.991385,0.371938,0.405804,0.521807,0.729072,0.609034,0.613,0.210544,0.344112,0.912448,0.330337,0.899843,0.285479,0.0287316,0.0446591,0.793846,0.431691,0.0194317,0.29513,0.483205,0.0276204,0.385043,0.717261,0.518283,0.633781,0.947098,0.494709,0.33357,0.63323,0.246978,0.271359,0.0564104,0.853363,0.0730736,0.71854,0.846057,0.734363,0.7534,0.511325,0.21693,0.705066,0.381235,0.261773,0.949688,0.156675,0.442974,0.374126,0.181623,0.230276,0.507043,0.0109829,0.423227,0.0372171,0.0151041,0.647971,0.896079,0.583535,0.462235,0.605641,0.536627,0.196192,0.709526,0.898352,0.0290589,0.853024,0.121007,0.553593,0.764489,0.263758,0.589894,0.235523,0.625183,0.414809,0.269201,0.661236,0.835542,0.22728,0.109663,0.12401,0.41609,0.286288,0.956539,0.651475,0.324551,0.0555202,0.873903,0.945896,0.708657,0.966472,0.279949,0.135987,0.411258,0.295729,0.785903,0.154104,0.0260822,0.924758,0.862935,0.395162,0.667337,0.569793,0.154997,0.842972,0.306019,0.246442,0.406135,0.480831,0.847379,0.518249,0.429481,0.672385,0.993601,0.708014,0.759491,0.348315,0.227861,0.472053,0.699294,0.193899,0.763556,0.350904,0.10889,0.98086,0.456078,0.130517,0.0118335,0.140437,0.190599,0.916649,0.694367,0.00535476,0.107999,0.475189,0.519859,0.140399,0.819287,0.13168,0.630949,0.261713,0.886827,0.913626,0.785831,0.96158,0.879503,0.317849,0.738494,0.895707,0.872746,0.922126,0.911369,0.246628,0.738562,0.568628,0.378975,0.966246,0.165318,0.572713,0.0248826,0.21269,0.928505,0.340066,0.396088,0.874688,0.25065,0.965276,0.55242,0.314579,0.0595961,0.171916,0.551608,0.511404,0.0171014,0.927916,0.827633,0.726464,0.602789,0.157488,0.225547,0.555924,0.148752,0.383087,0.699134,0.0980954,0.169383,0.327935,0.442196,0.415823,0.41523,0.394434,0.587668,0.522622,0.881282,0.819577,0.200099,0.998182,0.418272,0.416074,0.94904,0.294522,0.463358,0.667495,0.293253,0.126708,0.870171,0.204634,0.192661,0.0632975,0.273207,0.0142162,0.172084,0.848759,0.600408,0.817582,0.224323,0.148584,0.524271,0.966227,0.30108,0.349447,0.176411,0.0319779,0.427368,0.873906,0.625324,0.892487,0.1841,0.890396,0.261165,0.0258127,0.597337,0.238557,0.82638,0.795998,0.520811,0.0367693,0.639273,0.101261,0.463337,0.672708,0.154534,0.135709,0.888024,0.806734,0.796075,0.303237,0.990131,0.584416,0.654958,0.958467,0.875733,0.0116615,0.183999,0.599479,0.168259,0.648315,0.499953,0.093768,0.605392,0.72844,0.652758,0.914535,0.408323,0.929704,0.65991,0.273372,0.311809,0.625307,0.253492,0.96014,0.635359,0.118799,0.738804,0.646109,0.256131,0.738385,0.967915,0.839358,0.978991,0.534149,0.81954,0.634369,0.682158,0.250505,0.634957,0.770383,0.174073,0.528837,0.369271,0.733471,0.68449,0.575596,0.482349,0.139326,0.115869,0.497273,0.859174,0.463496,0.801353,0.559726,0.429563,0.63946,0.931226,0.480376,0.643025,0.422422,0.364827,0.659659,0.973978,0.252186,0.854218,0.0714961,0.291868,0.928651,0.129294,0.601846,0.674838,0.479094,0.851009,0.616021,0.615477,0.542231,0.0139025,0.274904,0.256078,0.866375,0.145963,0.700239,0.722924,0.362831,0.671463,0.981748,0.65098,0.637833,0.869063,0.594275,0.184159,0.639985,0.327954,0.27931,0.512851,0.254008,0.677143,0.151021,0.952848,0.553232,0.341679,0.716729,0.941024,0.0862588,0.922549,0.584844,0.172951,0.511851,0.363032,0.879169,0.552089,0.495591,0.534629,0.972814,0.076149,0.47078,0.333457,0.365051,0.826941,0.742008,0.969561,0.186626,0.887127,0.340721,0.572025,0.853816,0.989235,0.943044,0.526486,0.541762,0.658759,0.711106,0.0269417,0.564097,0.779364,0.462906,0.396656,0.139699,0.497837,0.991625,0.146602,0.23793,0.172401,0.0158755,0.562324,0.310973,0.455783,0.461253,0.316823,0.624328,0.891507,0.538326,0.0718011,0.827391,0.134103,0.94323,0.156257,0.0779464,0.88785,0.626482,0.548085,0.59661,0.217871,0.417183,0.0408965,0.343469,0.83838,0.500007,0.366267,0.850195,0.853396,0.336332,0.339543,0.997813,0.564068,0.759062,0.864161,0.81887,0.3768,0.996045,0.969107,0.760514,0.79958,0.925516,0.144972,0.743432,0.630404,0.566692,0.995047,0.0867857,0.878507,0.273045,0.745405,0.307065,0.613954,0.91378,0.142817,0.750969,0.483195,0.0702441,0.0054431,0.409426,0.915748,0.794291,0.766006,0.732926,0.465539,0.418196,0.0809762,0.779904,0.197059,0.398806,0.400611,0.286649,0.674193,0.780819,0.801983,0.610502,0.632386,0.997125,0.611413,0.0924608,0.952118,0.458185,0.102764,0.145624,0.0456348,0.126181,0.0057404,0.0774947,0.0464208,0.0351685,0.982515,0.0681803,0.178443,0.261037,0.127,0.687409,0.485597,0.209556,0.616041,0.394561,0.822025,0.400412,0.885307,0.325729,0.76679,0.899201,0.328556,0.508108,0.214323,0.129687,0.156967,0.0066601,0.405833,0.980017,0.352404,0.935223,0.706061,0.169645,0.804003,0.770547,0.513022,0.681515,0.880274,0.678671,0.103767,0.875133,0.339253,0.444493,0.543527,0.613661,0.75727,0.678632,0.0677389,0.690476,0.511239,0.149135,0.701954,0.305308,0.158156,0.0376304,0.0494373,0.463289,0.863125,0.184708,0.678813,0.292578,0.236248,0.204932,0.861418,0.295904,0.940812,0.0114293,0.820831,0.530821,0.87394,0.477093,0.716118,0.724401,0.0463695,0.789073,0.328586,0.446589,0.595892,0.949908,0.11982,0.95919,0.931292,0.54606,0.0274416,0.00193256,0.454333,0.0441968,0.258632,0.560415,0.131638,0.945733,0.483314,0.23085,0.40923,0.723374,0.689129,0.506025,0.0539142,0.858912,0.835934,0.680863,0.856834,0.433372,0.906389,0.269112,0.0854484,0.799292,0.57952,0.801293,0.425756,0.859318,0.504272,0.547292,0.867018,0.215687,0.199267,0.153294,0.607231,0.506658,0.277095,0.280742,0.156679,0.0491638,0.795679,0.998325,0.286543,0.605468,0.85033,0.266407,0.550149,0.830167,0.0449741,0.663118,0.720538,0.164766,0.843787,0.259872,0.0732244,0.932258,0.00247669,0.715699,0.140455,0.659464,0.785616,0.820433,0.269597,0.248421,0.637689,0.102798,0.181984,0.0826345,0.612384,0.711155,0.527065,0.94005,0.0369988,0.186868,0.877094,0.105135,0.365435,0.369503,0.978491,0.419025,0.516524,0.830136,0.845392,0.78356,0.510107,0.0797555,0.791315,0.537549,0.815845,0.0973239,0.384206,0.287675,0.930887,0.62489,0.853351,0.831243,0.0447926,0.301525,0.910552,0.235066,0.622798,0.859411,0.139388,|0.441567,0.557329,0.212606,0.995105,0.312306,0.836105,0.631085,0.968077,0.549714,0.310508,0.687754,0.514714,0.983763,0.389979,0.150922,0.603981,0.841027,0.0920177,0.821444,0.829958,0.946342,0.054427,0.0257025,0.45149,0.853528,0.806346,0.935974,0.721298,0.162921,0.749166,0.962607,0.954955,0.875826,0.989477,0.455843,0.533202,0.358084,0.584066,0.834551,0.7151,0.782938,0.969512,0.788592,0.545838,0.395856,0.72862,0.183619,0.023978,0.666552,0.39292,0.33691,0.267244,0.880903,0.519654,0.378942,0.384637,0.326267,0.704648,0.310148,0.728512,0.936566,0.597806,0.681525,0.712122,0.456505,0.271466,0.484743,0.413275,0.148915,0.0279967,0.348336,0.750022,0.985718,0.243662,0.772218,0.950324,0.796923,0.810598,0.805027,0.0219039,0.831631,0.247735,0.988054,0.915813,0.939643,0.522611,0.62693,0.844385,0.924303,0.118324,0.881054,0.405355,0.285401,0.700859,0.0948324,0.366651,0.754407,0.913891,0.688964,0.496793,0.799897,0.856442,0.761624,0.0109485,0.997891,0.332927,0.0250298,0.0709995,0.550318,0.17883,0.693956,0.183846,0.756618,0.940206,0.132177,0.513057,0.500785,0.553262,0.205105,0.962756,0.847446,0.833686,0.81922,0.180936,0.191475,0.261995,0.559213,0.650624,0.063338,0.954971,0.781468,0.0741656,0.491336,0.770323,0.453439,0.73555,0.411331,0.903791,0.126778,0.956897,0.259096,0.78449,0.537291,0.727193,0.194196,0.77779,0.103368,0.331368,0.870516,0.161601,0.735781,0.974844,0.784096,0.285046,0.0793523,0.0302114,0.423026,0.572794,0.593736,0.20025,0.331995,0.853915,0.836101,0.715583,0.170869,0.311396,0.274579,0.633878,0.0810162,0.929516,0.935697,0.910154,0.9327,0.455991,0.242597,0.951951,0.540716,0.250513,0.293974,0.698824,0.514754,0.740525,0.37275,0.327505,0.662173,0.17403,0.00235134,0.372734,0.752439,0.800081,0.162737,0.442019,0.544644,0.0434029,0.147034,0.0116247,0.816987,0.368981,0.4082,0.933536,0.985753,0.370431,0.46283,0.621973,0.304772,0.596551,0.946609,0.830264,0.522456,0.135368,0.998481,0.962362,0.348096,0.658376,0.0165649,0.98163,0.250817,0.0156478,0.268969,0.279816,0.87748,0.0225459,0.989778,0.249941,0.330624,0.233022,0.121021,0.0685275,0.943495,0.193569,0.178009,0.258418,0.256437,0.993766,0.921644,0.933566,0.811593,0.304367,0.0969094,0.503065,0.779188,0.45004,0.574699,0.409977,0.205367,0.0257438,0.653175,0.442101,0.760025,0.530186,0.530929,0.444372,0.262081,0.502637,0.928728,0.706725,0.206549,0.448927,0.850167,0.845941,0.848311,0.11855,0.971678,0.086845,0.246737,0.203491,0.562487,0.0754606,0.626464,0.0424876,0.350444,0.438642,0.812817,0.294207,0.372608,0.431576,0.0708607,0.551185,0.526586,0.466622,0.828406,0.746795,0.0682696,0.0738052,0.620736,0.0879151,0.922242,0.960681,0.498742,0.268542,0.747488,0.944268,0.261791,0.346144,0.98684,0.702788,0.246724,0.693335,0.360087,0.871353,0.940385,0.964043,0.360465,0.211342,0.895727,0.430298,0.331066,0.336502,0.162813,0.949148,0.487553,0.470033,0.373665,0.389326,0.706929,0.847554,0.76342,0.808071,0.962744,0.288811,0.574377,0.666255,0.572666,0.782921,0.887532,0.449827,0.261804,0.836832,0.344233,0.827884,0.816374,0.284571,0.408032,0.642484,0.0319975,0.471957,0.566836,0.217861,0.170104,0.818115,0.309163,0.886806,0.826849,0.796974,0.0601251,0.718704,0.98533,0.367806,0.306853,0.206461,0.8934,0.277302,0.0411452,0.773973,0.347301,0.198469,0.642364,0.354264,0.929842,0.616825,0.640567,0.257736,0.312733,0.717216,0.38479,0.150782,0.877459,0.110475,0.0290262,0.826075,0.572869,0.939646,0.952897,0.496669,0.272589,0.320211,0.707505,0.808512,0.612577,0.0905621,0.75494,0.735974,0.0761347,0.87955,0.600391,0.294819,0.152382,0.200525,0.576723,0.636324,0.380151,0.382585,0.0891732,0.385105,0.804347,0.646553,0.678832,0.516907,0.285712,0.832539,0.599843,0.177048,0.542436,0.443207,0.964667,0.993086,0.554114,0.634466,0.95026,0.334107,0.685492,0.369553,0.377442,0.922825,0.310143,0.554905,0.505788,0.191898,0.160134,0.268694,0.733786,0.0896233,0.971435,0.35275,0.368627,0.544337,0.941707,0.347526,0.832486,0.544466,0.794751,0.28274,0.197585,0.116379,0.574813,0.940812,0.355638,0.620538,0.623185,0.898859,0.825961,0.66787,0.736309,0.214515,0.676356,0.927254,0.492077,0.162956,0.735808,0.463554,0.797456,0.125252,0.718481,0.187766,0.398608,0.677479,0.559306,0.543704,0.28565,0.633549,0.466123,0.0923269,0.211506,0.209373,0.196008,0.469983,0.711817,0.598557,0.959274,0.358715,0.0254602,0.888909,0.0850389,0.980635,0.213773,0.885208,0.184759,0.0335701,0.665206,0.911398,0.362171,0.470367,0.66834,0.484146,0.811564,0.474135,0.688161,0.936261,0.949216,0.806192,0.45118,0.9315,0.725852,0.142163,0.464605,0.312731,0.756751,0.312572,0.444206,0.520587,0.597989,0.847722,0.19454,0.515351,0.826326,0.494379,0.559193,0.185195,0.0777154,0.73677,0.669358,0.376839,0.71333,0.137074,0.561501,0.169784,0.491627,0.044961,0.550259,0.507365,0.89789,0.185286,0.254103,0.552314,0.0321901,0.323624,0.719566,0.581016,0.925733,0.0902666,0.168199,0.934683,0.344466,0.0900827,0.363456,0.850702,0.330362,0.665723,0.194082,0.61456,0.707531,0.901782,0.126005,0.561348,0.537358,0.335402,0.583244,0.768473,0.303544,0.48288,0.376202,0.567162,0.492549,0.373962,0.550928,0.193591,0.647568,0.0557169,0.402761,0.748131,0.0451382,0.674711,0.282803,0.0955762,0.290737,0.188808,0.588097,0.408218,0.942982,0.948334,0.542897,0.95575,0.71172,0.684133,0.780153,0.532859,0.240487,0.921176,0.973026,0.906123,0.775529,0.172848,0.32459,0.775608,0.601465,0.568234,0.0158393,0.340778,0.861838,0.0335761,0.611931,0.0563613,0.223337,0.776853,0.07581,0.405556,0.293561,0.709392,0.108209,0.661377,0.0578318,0.752217,0.692331,0.951635,0.931327,0.0785151,0.463711,0.289985,0.948604,0.339999,0.381666,0.953548,0.434535,0.880928,0.58838,0.500924,0.903398,0.488966,0.0407699,0.940115,0.127653,0.10202,0.0688339,0.388185,0.237792,0.95246,0.875503,0.498593,0.180668,0.323036,0.448001,0.574519,0.00391066,0.214394,0.92315,0.491763,0.0974228,0.283984,0.624956,0.847683,0.904007,0.67042,0.125886,0.103679,0.859843,0.855433,0.274386,0.491095,0.852517,0.642745,0.721319,0.39726,0.565339,0.519801,0.653824,0.893836,0.485368,0.846887,0.263116,0.982592,0.535695,0.984348,0.442136,0.155159,0.0114508,0.679574,0.0798954,0.664907,0.315046,0.738734,0.206139,0.687736,0.132927,0.0918478,0.0288914,0.0695444,0.953735,0.160006,0.535895,0.00556391,0.116806,0.69684,0.403572,0.571466,0.0890559,0.111399,0.529448,0.557686,0.800931,0.101521,0.849845,0.371645,0.760625,0.451546,0.569437,0.156172,0.711616,0.725063,0.275182,0.123989,0.757579,0.181541,0.617203,0.784411,0.922786,0.703479,0.696475,0.490312,0.577582,0.376458,0.145555,0.066707,0.184289,0.678656,0.516815,0.87146,0.984723,0.787363,0.292633,0.0995764,0.0839754,0.307864,0.935196,0.598762,0.265448,0.132868,0.492317,0.650494,0.191781,0.0915543,0.303204,0.735228,0.835956,0.415053,0.0400472,0.316471,0.207624,0.872682,0.100407,0.224725,0.854858,0.985392,0.488741,0.519198,0.9618,0.662114,0.833899,0.452863,0.346005,0.874155,0.0830758,0.301353,0.863419,0.756363,0.665872,0.817142,0.195323,0.530332,0.237158,0.138852,0.615573,0.624733,0.945308,0.711482,0.272411,0.122361,0.327135,0.887596,0.498946,0.592587,0.884455,0.373721,0.878075,0.7128,0.670513,0.0374076,0.312487,0.0332149,0.619856,0.142306,0.644509,0.0338047,0.291998,0.831142,0.879233,0.136321,0.243391,0.579758,0.123809,0.728996,0.941417,0.817759,0.233758,0.318271,0.0630481,0.851631,0.644259,0.90388,0.73201,0.0761642,0.103889,0.199645,0.183689,0.145748,0.317947,0.620455,0.490659,0.0525774,0.872423,0.645665,0.714246,0.440531,0.227114,0.18482,0.911373,0.558787,0.676157,0.234227,0.810292,0.103038,0.602852,0.284798,0.252293,0.369857,0.564554,0.299556,0.724153,0.954268,0.102995,0.409223,0.0374328,0.880261,0.909896,0.041862,0.351894,0.18714,0.121658,0.043466,0.337416,0.961673,0.365378,0.370365,0.567296,0.345818,0.69991,0.861938,0.73119,0.18081,0.430367,0.540921,0.44036,0.986471,0.519972,0.14441,0.799193,0.657112,0.624968,0.376692,0.705161,0.337455,0.775751,0.548194,0.193986,0.394639,0.560545,0.0106372,0.816935,0.633928,0.080656,0.663038,0.527488,0.989157,0.242265,0.181229,0.457679,0.226889,0.997739,0.622224,0.578861,0.785633,0.814497,0.630411,0.116923,0.190339,0.163802,0.953091,0.930958,0.895959,0.136281,0.116038,0.1324,0.255336,0.870153,0.307571,0.351651,0.953014,0.77172,0.866174,0.705405,0.242331,0.683454,0.343772,0.909044,0.0425474,0.846123,0.105965,0.225381,0.786371,0.399495,0.347907,0.673,0.436246,0.480213,0.960922,0.447484,0.927227,0.280055,0.00943601,0.0365822,0.626123,0.737346,0.161552,0.0589771,0.374278,0.430258,0.00273657,0.444672,0.283518,0.177933,0.563128,0.0120644,0.677085,0.738298,0.682948,0.334369,0.618088,0.528764,0.370049,0.039472,0.618253,0.77294,0.165202,0.527774,0.495167,0.128779,0.177328,0.18726,0.260599,0.998166,0.429669,0.448117,0.0522732,0.839306,0.803335,0.892397,0.925207,0.246591,0.404854,0.950806,0.390868,0.370062,0.237309,0.877577,0.784448,0.0067718,0.0450086,0.878514,0.721002,0.270943,0.78965,0.89908,0.912072,0.0383289,0.830377,0.0682994,0.819383,0.879638,0.882146,0.571753,0.164835,0.383839,0.056576,0.0341425,0.642826,0.0917431,0.554975,0.622804,0.752299,0.611623,0.888984,0.348152,0.867081,0.0994548,0.800619,0.883409,0.0630692,0.500181,0.189451,0.802791,0.193225,|0.497021,0.466367,0.95594,0.323817,0.550811,0.929601,0.580693,0.174054,0.426683,0.265151,0.224167,0.326753,0.0802918,0.697981,0.976001,0.625476,0.392941,0.887006,0.10875,0.923557,0.976906,0.731026,0.594033,0.596245,0.968625,0.374713,0.535972,0.391842,0.877969,0.998604,0.231639,0.274943,0.0952873,0.404114,0.36243,0.315476,0.672544,0.954428,0.181118,0.558028,0.507664,0.774433,0.256422,0.749287,0.715297,0.833714,0.711558,0.589048,0.286434,0.36486,0.433687,0.483549,0.78143,0.671452,0.74822,0.800546,0.755028,0.147607,0.676644,0.380671,0.982157,0.913995,0.125375,0.379756,0.87844,0.761971,0.779526,0.42729,0.114508,0.807244,0.939973,0.205049,0.667468,0.997672,0.746924,0.227877,0.704559,0.281882,0.292094,0.724188,0.420978,0.251932,0.290651,0.0653343,0.835057,0.741991,0.364023,0.296924,0.185128,0.4565,0.307942,0.635657,0.331769,0.375438,0.754617,0.13762,0.687921,0.183796,0.315793,0.202822,0.782704,0.360918,0.252671,0.101429,0.924805,0.693243,0.0480624,0.906093,0.669365,0.756687,0.173509,0.354675,0.275911,0.401104,0.505085,0.87717,0.0378959,0.286421,0.32751,0.768492,0.725679,0.189424,0.623617,0.463662,0.0979213,0.815792,0.906544,0.00521046,0.221627,0.65148,0.769964,0.965732,0.902756,0.371054,0.486631,0.61876,0.0618411,0.704139,0.629023,0.639651,0.366878,0.172239,0.99429,0.878568,0.232983,0.910977,0.0985373,0.0993011,0.170956,0.0777075,0.233267,0.258953,0.264947,0.560682,0.592598,0.412658,0.610892,0.238417,0.605614,0.0838388,0.648214,0.0761688,0.861355,0.891614,0.382351,0.834551,0.151868,0.839014,0.34811,0.589264,0.177727,0.0815963,0.935717,0.446539,0.678563,0.642056,0.240551,0.837679,0.557302,0.311226,0.990439,0.642343,0.871587,0.203995,0.0525412,0.0291358,0.51449,0.313401,0.344444,0.36824,0.683868,0.0802675,0.887351,0.108967,0.0503542,0.494262,0.854237,0.246579,0.691644,0.599306,0.602304,0.567377,0.602196,0.180528,0.358099,0.969532,0.860217,0.917872,0.33322,0.633703,0.883293,0.691693,0.331749,0.966265,0.0530687,0.140909,0.673197,0.112069,0.995254,0.14425,0.682801,0.0244874,0.490431,0.66586,0.937731,0.359664,0.253842,0.0775128,0.457792,0.852257,0.234173,0.567106,0.528962,0.801626,0.888305,0.270343,0.418624,0.623606,0.310662,0.890349,0.729494,0.471405,0.0110017,0.224741,0.630476,0.513017,0.518925,0.553839,0.463401,0.211483,0.701943,0.588261,0.104262,0.871508,0.255843,0.57443,0.830896,0.311607,0.496968,0.469635,0.547971,0.756982,0.580735,0.844932,0.161162,0.0515001,0.778453,0.894177,0.779871,0.617209,0.283099,0.162311,0.0102018,0.531549,0.350073,0.482586,0.293911,0.224569,0.988382,0.203283,0.391835,0.788346,0.169306,0.199257,0.256522,0.0222656,0.281851,0.231044,0.193865,0.526045,0.372156,0.390945,0.978052,0.11975,0.0118125,0.893123,0.42625,0.914595,0.154134,0.38976,0.537835,0.88183,0.483829,0.742028,0.8028,0.914663,0.0615714,0.236076,0.24072,0.781774,0.88669,0.975914,0.193536,0.0638974,0.11083,0.97739,0.228787,0.265712,0.104165,0.795483,0.38949,0.807335,0.784341,0.290208,0.295893,0.86077,0.762073,0.16466,0.0136136,0.0887801,0.964755,0.0468399,0.804031,0.256769,0.997504,0.942367,0.342818,0.497332,0.095199,0.914468,0.052457,0.790687,0.57097,0.994724,0.903654,0.483284,0.333275,0.257505,0.975815,0.21117,0.444125,0.723715,0.128102,0.0662227,0.525533,0.997316,0.728917,0.44878,0.370365,0.575161,0.518873,0.131759,0.125868,0.81588,0.153368,0.86441,0.668214,0.629802,0.90946,0.627931,0.220318,0.580343,0.467295,0.340785,0.0967574,0.401797,0.859587,0.539194,0.735944,0.589282,0.689489,0.0893332,0.988315,0.598977,0.153534,0.828754,0.00211519,0.803285,0.354809,0.00921446,0.565505,0.831523,0.746875,0.951018,0.718421,0.223484,0.872261,0.113209,0.0369973,0.0528648,0.320651,0.202601,0.556872,0.72147,0.266453,0.812071,0.417397,0.489432,0.30203,0.227133,0.0872759,0.823061,0.986803,0.442971,0.300439,0.993534,0.606888,0.296575,0.524396,0.259609,0.0592538,0.309887,0.762357,0.413387,0.149801,0.913872,0.686233,0.783861,0.133483,0.662959,0.137375,0.853216,0.825215,0.373301,0.494257,0.876987,0.0184464,0.0207375,0.0783897,0.243674,0.534331,0.76419,0.49895,0.105739,0.975283,0.170349,0.953509,0.00772065,0.0506405,0.196651,0.982775,0.301838,0.965212,0.117283,0.449146,0.601309,0.283455,0.948129,0.586613,0.11551,0.151138,0.860172,0.916783,0.67673,0.0936704,0.896371,0.181309,0.610043,0.45109,0.182566,0.258727,0.466262,0.075025,0.475439,0.10636,0.837482,0.36524,0.00984168,0.75234,0.741131,0.329185,0.421645,0.740322,0.0240374,0.57639,0.117387,0.221937,0.105504,0.156015,0.87218,0.323001,0.761635,0.465868,0.334547,0.800239,0.19776,0.013834,0.536585,0.428619,0.642529,0.272496,0.198699,0.294936,0.394673,0.195674,0.716482,0.531492,0.615318,0.904963,0.499419,0.767154,0.257734,0.997112,0.183263,0.160711,0.853386,0.788589,0.365227,0.449904,0.2212,0.908759,0.374349,0.855397,0.00233376,0.739152,0.618706,0.675302,0.812543,0.0108441,0.466385,0.385453,0.124471,0.26175,0.206125,0.401296,0.432557,0.601855,0.736416,0.921955,0.710164,0.801594,0.407366,0.580464,0.235323,0.0309143,0.102086,0.575083,0.851619,0.357885,0.954588,0.380816,0.467297,0.171915,0.147362,0.225611,0.541681,0.218123,0.130346,0.211054,0.925062,0.277666,0.149262,0.874715,0.0589789,0.197321,0.969534,0.439085,0.6211,0.774531,0.52164,0.0411112,0.634185,0.980323,0.459797,0.136846,0.0339686,0.447233,0.151863,0.111644,0.456552,0.637879,0.888168,0.916686,0.632151,0.470144,0.321653,0.841525,0.307494,0.838409,0.52762,0.296049,0.242527,0.181546,0.238935,0.51254,0.863434,0.308861,0.243033,0.915786,0.275599,0.585652,0.917395,0.092298,0.181765,0.195833,0.853476,0.839324,0.875943,0.375759,0.132854,0.267044,0.102896,0.806389,0.881913,0.719635,0.644742,0.691369,0.223165,0.266163,0.394041,0.279261,0.982691,0.291848,0.0900906,0.36334,0.0292285,0.439655,0.780985,0.7017,0.734424,0.855765,0.437933,0.342979,0.866679,0.885757,0.268416,0.421821,0.774886,0.337434,0.335495,0.063466,0.522688,0.793535,0.173456,0.547116,0.585067,0.673015,0.939707,0.475126,0.94649,0.775362,0.171074,0.474339,0.0595276,0.931877,0.755717,0.570252,0.690471,0.43052,0.293949,0.0491596,0.423178,0.263981,0.53196,0.525111,0.973839,0.934089,0.506363,0.585946,0.943036,0.609117,0.434924,0.295595,0.0596801,0.631474,0.206738,0.459018,0.955492,0.292316,0.399226,0.546541,0.334442,0.812063,0.39504,0.604041,0.447693,0.792909,0.606796,0.187702,0.613978,0.375009,0.62399,0.152034,0.0563174,0.716351,0.803964,0.768568,0.473224,0.951594,0.888734,0.369326,0.998711,0.591074,0.0850663,0.0050078,0.870606,0.232551,0.169537,0.911113,0.646794,0.859018,0.698876,0.642497,0.0207632,0.657771,0.0251669,0.314367,0.288848,0.651939,0.973142,0.948434,0.826128,0.20372,0.585799,0.0395129,0.266163,0.0986882,0.37213,0.685222,0.500634,0.14814,0.598198,0.609176,0.522995,0.806921,0.220275,0.920423,0.431203,0.0446597,0.904266,0.878786,0.357714,0.950938,0.190446,0.668525,0.201671,0.116455,0.287397,0.456126,0.101292,0.873966,0.609466,0.669259,0.821863,0.143724,0.909096,0.794335,0.781756,0.672173,0.816406,0.556352,0.973987,0.466203,0.494539,0.383532,0.500085,0.63713,0.581763,0.376662,0.531971,0.380511,0.735082,0.621093,0.416152,0.342182,0.859855,0.0691902,0.614357,0.630131,0.526332,0.10787,0.584431,0.580891,0.605312,0.289278,0.103495,0.673235,0.152785,0.70473,0.903259,0.982212,0.819378,0.525107,0.618796,0.385419,0.612399,0.363233,0.129469,0.116181,0.423792,0.160829,0.869274,0.293357,0.33685,0.505851,0.959854,0.923092,0.156577,0.058034,0.113351,0.638432,0.528159,0.196588,0.845818,0.579202,0.898848,0.202866,0.718356,0.430155,0.00758404,0.910696,0.447278,0.964313,0.0976637,0.134471,0.843419,0.671831,0.995157,0.942265,0.563035,0.364167,0.27547,0.145711,0.219487,0.892192,0.764319,0.782154,0.774917,0.546147,0.906117,0.536408,0.787257,0.646122,0.0570261,0.29768,0.931844,0.86429,0.556907,0.715936,0.351344,0.746253,0.440151,0.485249,0.747758,0.170382,0.217911,0.285504,0.94257,0.997764,0.951257,0.903652,0.544458,0.945465,0.00802588,0.377608,0.799083,0.335814,0.773451,0.413954,0.231375,0.82744,0.868458,0.784347,0.132376,0.59334,0.0818953,0.0748376,0.155035,0.245963,0.705101,0.311797,0.893098,0.666614,0.359823,0.979926,0.500488,0.583275,0.836042,0.247495,0.726807,0.878026,0.296768,0.914278,0.309961,0.583627,0.482297,0.439903,0.881092,0.50205,0.765763,0.0157005,0.0603865,0.408547,0.100737,0.606902,0.786082,0.152769,0.0928851,0.650065,0.490476,0.0396013,0.0889483,0.822753,0.857711,0.0336522,0.00369722,0.600736,0.543165,0.494549,0.105945,0.0809206,0.713126,0.993997,0.712647,0.592629,0.455751,0.437241,0.393891,0.48533,0.994456,0.0359115,0.378166,0.0491403,0.656537,0.751773,0.285515,0.540081,0.226917,0.491334,0.2835,0.432864,0.76286,0.451685,0.0471538,0.517706,0.263885,0.00136685,0.463902,0.306565,0.645073,0.748655,0.0851113,0.216129,0.243722,0.675528,0.832959,0.787896,0.489262,0.836427,0.451128,0.560767,0.0616334,0.55026,0.0514333,0.723672,0.0508232,0.321364,0.0800099,0.906803,0.838457,0.500939,0.338613,0.170684,0.433442,0.328789,0.733442,0.426325,0.49075,0.846466,0.211569,0.177945,0.553438,0.980348,0.292425,0.262261,0.879428,0.602588,0.335741,0.135627,0.236551,0.866473,0.0311891,0.309701,0.0818183,0.843458,0.163786,0.865093,0.817186,0.946763,0.562086,|0.488076,0.156251,0.0883834,0.41474,0.823223,0.284228,0.980891,0.49413,0.995507,0.800609,0.552541,0.65601,0.877626,0.713856,0.411271,0.55687,0.640536,0.0643427,0.00625384,0.634896,0.318147,0.17507,0.461613,0.354114,0.917981,0.731138,0.217579,0.126766,0.743066,0.0834597,0.894278,0.523761,0.358719,0.72497,0.363111,0.796819,0.688062,0.669285,0.464641,0.249328,0.250163,0.646138,0.871755,0.411901,0.690764,0.901684,0.375234,0.613515,0.719206,0.794012,0.790119,0.398054,0.648982,0.590911,0.769323,0.86792,0.868874,0.845338,0.0910123,0.735773,0.857181,0.0297292,0.794756,0.760714,0.735668,0.54071,0.908063,0.875018,0.110768,0.407701,0.741593,0.879483,0.908114,0.344149,0.74611,0.235447,0.562733,0.993449,0.786418,0.267986,0.684828,0.324249,0.12144,0.935728,0.266013,0.579088,0.0891305,0.434251,0.309621,0.134768,0.893896,0.805129,0.701676,0.935129,0.0665097,0.462331,0.152125,0.478416,0.585722,0.821704,0.77498,0.653668,0.562913,0.754421,0.288591,0.51507,0.17623,0.850674,0.537833,0.624667,0.775819,0.569323,0.976717,0.140985,0.114893,0.430851,0.0258553,0.550726,0.100652,0.450955,0.987524,0.418433,0.317135,0.0992537,0.403257,0.655988,0.113662,0.458128,0.954119,0.638193,0.516448,0.550847,0.918009,0.652008,0.832455,0.491569,0.496718,0.0550972,0.76223,0.708193,0.457305,0.816429,0.308483,0.798142,0.820363,0.878555,0.114875,0.721713,0.361619,0.0237319,0.896924,0.936468,0.261169,0.957738,0.562916,0.724914,0.0489198,0.439172,0.776814,0.655453,0.62042,0.00870812,0.114279,0.28331,0.384751,0.131582,0.952451,0.1981,0.274279,0.35131,0.493431,0.352217,0.552687,0.883192,0.654823,0.00600308,0.842225,0.686641,0.959371,0.434151,0.890043,0.0932471,0.341702,0.586162,0.437159,0.615516,0.672008,0.472299,0.48601,0.928488,0.811358,0.116109,0.0485139,0.00317782,0.590117,0.233316,0.885687,0.906691,0.447151,0.922124,0.456571,0.594418,0.944966,0.152009,0.993144,0.305525,0.555009,0.467484,0.706737,0.861338,0.1348,0.738179,0.135707,0.406556,0.144542,0.557992,0.528387,0.967046,0.79688,0.233926,0.966013,0.312497,0.210755,0.614713,0.221483,0.702261,0.637024,0.151275,0.18575,0.970924,0.542109,0.0327787,0.909079,0.853246,0.247655,0.634874,0.370574,0.0936596,0.150801,0.0712625,0.180755,0.187718,0.523238,0.898493,0.238602,0.284625,0.465676,0.990484,0.368109,0.70656,0.695417,0.720056,0.766276,0.028668,0.578404,0.83987,0.795008,0.465603,0.729773,0.122557,0.737736,0.561816,0.462333,0.509795,0.735564,0.366198,0.620327,0.945521,0.750012,0.93869,0.994515,0.519945,0.830273,0.857405,0.436142,0.835629,0.902278,0.370115,0.65416,0.149773,0.850175,0.599641,0.249388,0.0613358,0.834279,0.488665,0.209439,0.312066,0.888572,0.646235,0.108712,0.798497,0.953202,0.224526,0.0244621,0.606971,0.451425,0.226414,0.838663,0.579079,0.195579,0.430854,0.299936,0.414884,0.0944456,0.794276,0.51246,0.338082,0.89382,0.0283827,0.38743,0.47876,0.176868,0.384078,0.515871,0.394174,0.587661,0.185924,0.0538962,0.976354,0.156735,0.98586,0.789321,0.918991,0.00538242,0.870556,0.0485289,0.972997,0.308381,0.701206,0.684203,0.611332,0.0287255,0.792401,0.947778,0.70434,0.195536,0.536757,0.429798,0.841241,0.79003,0.913363,0.915118,0.842744,0.64591,0.635177,0.520063,0.288005,0.846955,0.869238,0.493133,0.559479,0.834739,0.660175,0.329869,0.985064,0.926675,0.380041,0.37714,0.54971,0.8199,0.504053,0.206183,0.042658,0.748924,0.422196,0.482371,0.884919,0.463617,0.482991,0.10282,0.243716,0.42874,0.250202,0.96397,0.999328,0.801732,0.9018,0.52133,0.87144,0.866173,0.975547,0.877066,0.00612146,0.796601,0.474927,0.169833,0.292837,0.730655,0.501,0.696849,0.619199,0.41411,0.640552,0.444062,0.170911,0.590673,0.470411,0.697385,0.732504,0.372267,0.635883,0.622463,0.17101,0.760867,0.940669,0.62235,0.350814,0.945518,0.332912,0.563217,0.164121,0.763088,0.135087,0.628346,0.194237,0.64371,0.694688,0.281622,0.919562,0.476611,0.466052,0.882014,0.711284,0.766951,0.926531,0.158252,0.824898,0.993497,0.99141,0.44454,0.192031,0.323962,0.627135,0.822226,0.996612,0.268869,0.953008,0.364342,0.733909,0.382727,0.734628,0.784131,0.559488,0.475228,0.583777,0.728584,0.994409,0.920114,0.512937,0.136695,0.154542,0.729913,0.933523,0.0219825,0.620114,0.598256,0.273144,0.0246633,0.0664764,0.605921,0.55748,0.782214,0.451356,0.976719,0.909931,0.150638,0.491447,0.155444,0.136887,0.264587,0.0708878,0.392227,0.104695,0.575999,0.180598,0.78967,0.960077,0.668361,0.101174,0.457014,0.857898,0.477596,0.840576,0.748739,0.0470177,0.908263,0.811935,0.121874,0.366537,0.615894,0.873153,0.0925049,0.0919069,0.257321,0.0484086,0.407838,0.720202,0.201694,0.723083,0.65335,0.368662,0.192855,0.138247,0.868003,0.120384,0.249313,0.567384,0.629211,0.598694,0.563113,0.168138,0.0317495,0.0123968,0.823421,0.748623,0.13662,0.0627165,0.667826,0.525053,0.915707,0.665719,0.952748,0.397884,0.348735,0.807368,0.416386,0.311895,0.825838,0.970495,0.84118,0.365032,0.783122,0.981312,0.561878,0.299614,0.985656,0.943638,0.68351,0.978464,0.761639,0.89401,0.67875,0.42048,0.508769,0.459734,0.959937,0.642036,0.631397,0.561684,0.0600993,0.105145,0.739556,0.856066,0.307679,0.422833,0.19941,0.409533,0.907575,0.316397,0.303794,0.934674,0.696332,0.545376,0.887227,0.363246,0.146216,0.810273,0.412876,0.00755322,0.811441,0.113821,0.770911,0.793545,0.68613,0.381327,0.658576,0.400185,0.152853,0.518721,0.454894,0.360697,0.709838,0.358979,0.373194,0.842513,0.692996,0.627298,0.907611,0.975439,0.993033,0.870389,0.658852,0.662286,0.887903,0.526012,0.665207,0.0891875,0.153707,0.782836,0.839024,0.380927,0.107133,0.371346,0.501018,0.86196,0.319845,0.52928,0.403891,0.811527,0.0485271,0.382551,0.425054,0.29433,0.938091,0.0658072,0.960217,0.854709,0.170091,0.482915,0.0665113,0.487716,0.809083,0.45611,0.0770809,0.930481,0.858711,0.583428,0.654917,0.875519,0.884204,0.831916,0.610852,0.322552,0.423834,0.937496,0.0203275,0.0878431,0.259196,0.152859,0.6123,0.583793,0.754281,0.354964,0.198887,0.697817,0.239961,0.179785,0.150651,0.827506,0.840432,0.509683,0.497468,0.614115,0.306866,0.467305,0.65023,0.016556,0.930118,0.260168,0.000667632,0.5966,0.0193633,0.803554,0.225089,0.777048,0.880572,0.247684,0.510504,0.751215,0.913801,0.339524,0.0074988,0.706349,0.0274537,0.819731,0.151278,0.985389,0.541683,0.748603,0.120208,0.595393,0.940992,0.92463,0.125917,0.883993,0.771932,0.787678,0.210431,0.140081,0.838715,0.157113,0.353285,0.697578,0.438366,0.251195,0.477053,0.22457,0.477338,0.140787,0.334719,0.342496,0.228105,0.98264,0.681303,0.973412,0.632938,0.0839957,0.715042,0.144883,0.475422,0.58334,0.461119,0.535808,0.993357,0.579056,0.526607,0.36247,0.368756,0.329175,0.0528695,0.397266,0.169656,0.388195,0.978851,0.815116,0.500161,0.427931,0.242823,0.945536,0.985863,0.0947438,0.692858,0.830447,0.890936,0.272929,0.158512,0.898918,0.901911,0.029982,0.167363,0.477124,0.987601,0.37693,0.0826722,0.264971,0.819152,0.273334,0.517633,0.5402,0.293238,0.723193,0.442982,0.285653,0.602697,0.745625,0.692873,0.419489,0.317637,0.556918,0.0253395,0.297033,0.0238065,0.780645,0.730718,0.659839,0.108156,0.558745,0.901361,0.893722,0.691454,0.639018,0.160119,0.121083,0.251892,0.79334,0.863596,0.46331,0.112936,0.603558,0.0873542,0.0844451,0.771154,0.67537,0.396959,0.624226,0.383303,0.465407,0.674598,0.0708445,0.340081,0.886209,0.549945,0.477336,0.210041,0.129552,0.688854,0.291074,0.963651,0.545951,0.319708,0.486218,0.294055,0.0689746,0.45004,0.680344,0.896115,0.515768,0.132957,0.521996,0.127513,0.0309108,0.583388,0.0042696,0.0791566,0.109094,0.779804,0.530512,0.326391,0.536564,0.495525,0.613164,0.132246,0.333715,0.132669,0.662947,0.719725,0.540112,0.335367,0.33923,0.397742,0.24075,0.441038,0.957328,0.260517,0.197387,0.469695,0.248145,0.434966,0.996873,0.29884,0.163037,0.265226,0.582031,0.893652,0.662184,0.297877,0.942378,0.579576,0.648615,0.0858964,0.657209,0.0614581,0.0212114,0.143275,0.448741,0.717687,0.031738,0.565567,0.950835,0.32104,0.552496,0.799151,0.178579,0.867788,0.105123,0.0772883,0.6443,0.0937208,0.225866,0.412866,0.0603256,0.495219,0.870104,0.350328,0.645061,0.809483,0.908975,0.380693,0.163515,0.838978,0.592867,0.851913,0.249069,0.46319,0.331319,0.127182,0.49666,0.283906,0.772401,0.557306,0.444227,0.777045,0.964347,0.372997,0.62869,0.331613,0.252541,0.204846,0.602517,0.196919,0.358885,0.00643939,0.159279,0.195967,0.336483,0.284725,0.789724,0.662114,0.927197,0.314425,0.212842,0.21929,0.627166,0.814944,0.226533,0.936774,0.313346,0.110715,0.765389,0.748859,0.0398077,0.455034,0.735492,0.588573,0.812525,0.667756,0.941526,0.331748,0.252035,0.459651,0.346338,0.940134,0.171292,0.43887,0.568429,0.00548851,0.0561156,0.944989,0.344421,0.859322,0.304754,0.752034,0.685003,0.915129,0.134064,0.87638,0.249292,0.764804,0.649206,0.11225,0.48233,0.757412,0.520342,0.0767041,0.725133,0.370987,0.454759,0.722588,0.143705,0.727495,0.699382,0.708086,0.245202,0.980465,0.599094,0.90427,0.737751,0.933291,0.689154,0.690046,0.912266,0.441871,0.528561,0.468041,0.0210472,0.693658,0.999909,0.352325,0.940337,0.796013,0.721622,0.513262,0.132806,0.120249,0.442674,0.46535,0.0193315,0.317296,0.442543,0.904695,0.392139,0.192513,0.434799,0.643293,0.411898,0.629815,0.156692,0.388365,0.181797,|0.624513,0.18769,0.925781,0.948154,0.930675,0.544402,0.350834,0.0183752,0.97794,0.922594,0.0727108,0.353039,0.174583,0.657891,0.0722452,0.232383,0.11075,0.566025,0.644365,0.97944,0.958737,0.120521,0.658927,0.85952,0.844188,0.937606,0.210945,0.997053,0.196425,0.481595,0.821004,0.0188843,0.95921,0.560644,0.982138,0.708823,0.729581,0.523021,0.725597,0.82426,0.860855,0.252347,0.15347,0.714478,0.0359552,0.873545,0.339902,0.712651,0.697253,0.927604,0.774063,0.924252,0.193631,0.500434,0.0482049,0.506266,0.870904,0.0657811,0.472635,0.398036,0.673704,0.387097,0.405687,0.199609,0.940609,0.168335,0.704257,0.234946,0.50153,0.927555,0.40305,0.719399,0.338792,0.0616229,0.60676,0.036594,0.0456253,0.706539,0.44079,0.627365,0.0913705,0.551554,0.152165,0.192836,0.309937,0.420277,0.426466,0.434022,0.258242,0.968147,0.977992,0.73907,0.507452,0.661559,0.458045,0.389847,0.827663,0.795058,0.317028,0.511768,0.944006,0.269934,0.486601,0.563529,0.700964,0.782339,0.0913736,0.837124,0.581725,0.327841,0.682201,0.36932,0.765911,0.519615,0.957596,0.903952,0.310045,0.485699,0.745642,0.827821,0.457735,0.93008,0.51106,0.486367,0.897864,0.668566,0.740254,0.0578195,0.0358315,0.503908,0.208586,0.0683922,0.365833,0.896304,0.709938,0.857106,0.926112,0.801907,0.943753,0.819053,0.33875,0.412207,0.555175,0.052765,0.316355,0.756543,0.952804,0.424903,0.224023,0.824805,0.293772,0.416951,0.757614,0.581115,0.94595,0.0910596,0.889193,0.341123,0.496032,0.0534554,0.918165,0.0921169,0.303298,0.0913271,0.171333,0.892931,0.00437462,0.677538,0.456957,0.988846,0.369759,0.906076,0.569746,0.00521773,0.881523,0.977754,0.64041,0.227512,0.524676,0.0718179,0.943045,0.685476,0.127454,0.0971476,0.0243618,0.218349,0.549005,0.965925,0.397972,0.892138,0.818366,0.176812,0.265274,0.291019,0.121369,0.892173,0.557766,0.296808,0.758979,0.307759,0.139935,0.910343,0.478431,0.779589,0.322509,0.812386,0.936175,0.0784807,0.0999774,0.695959,0.266733,0.383497,0.502276,0.80195,0.962631,0.342486,0.673202,0.437894,0.871407,0.997621,0.666999,0.631395,0.47799,0.361808,0.267157,0.464389,0.228969,0.983131,0.517066,0.142476,0.372814,0.444888,0.649336,0.970983,0.714209,0.241081,0.26709,0.48944,0.46121,0.703529,0.641999,0.417342,0.955259,0.858852,0.548861,0.0174834,0.920958,0.255434,0.650487,0.405556,0.987752,0.68918,0.453608,0.404223,0.230614,0.0126027,0.957538,0.739233,0.999486,0.188982,0.564249,0.2847,0.94777,0.708062,0.019125,0.444666,0.891816,0.49898,0.273986,0.076684,0.324978,0.366715,0.468959,0.432969,0.485731,0.587684,0.562166,0.313854,0.365115,0.0847291,0.123204,0.2131,0.934959,0.277812,0.869356,0.0294596,0.119504,0.218675,0.34534,0.945455,0.918428,0.839334,0.637445,0.488871,0.802578,0.810277,0.811674,0.202067,0.471723,0.0936987,0.482976,0.817894,0.956922,0.758512,0.179805,0.463413,0.452167,0.165949,0.0663994,0.542855,0.773067,0.509452,0.0941315,0.160226,0.262441,0.344996,0.675312,0.248818,0.0570047,0.615147,0.569404,0.555832,0.510643,0.999545,0.363925,0.081598,0.647971,0.0230765,0.726129,0.0157164,0.157941,0.395706,0.456204,0.59481,0.205963,0.232973,0.498882,0.791931,0.662134,0.110201,0.396401,0.705338,0.981581,0.708397,0.209163,0.612381,0.563072,0.1476,0.576243,0.385119,0.141123,0.181179,0.332184,0.653376,0.0145499,0.484309,0.906656,0.411764,0.88558,0.431206,0.528824,0.994493,0.626531,0.850907,0.119129,0.128378,0.71707,0.392084,0.306917,0.253961,0.739412,0.961457,0.0524877,0.480165,0.0989777,0.995677,0.839183,0.910057,0.761475,0.405701,0.0461184,0.0832658,0.997268,0.142285,0.761222,0.872398,0.574543,0.172983,0.335217,0.253057,0.45792,0.329444,0.208538,0.377042,0.266847,0.497116,0.13215,0.518615,0.0811573,0.588327,0.979262,0.359336,0.321655,0.375664,0.163269,0.539388,0.112959,0.375554,0.544198,0.885036,0.312405,0.184898,0.744465,0.298959,0.106343,0.395606,0.998329,0.400818,0.136441,0.543701,0.421045,0.662743,0.412804,0.4709,0.826179,0.229208,0.969994,0.108076,0.0529876,0.0304686,0.42516,0.837099,0.359289,0.813652,0.452784,0.00769758,0.661011,0.461512,0.795215,0.782925,0.8486,0.090821,0.202836,0.782489,0.496726,0.484357,0.208622,0.90532,0.452524,0.756234,0.522501,0.0189195,0.630432,0.542422,0.0958711,0.767536,0.1311,0.318362,0.26303,0.349025,0.929128,0.40897,0.897395,0.284949,0.131733,0.427577,0.662262,0.258873,0.836532,0.0820811,0.728948,0.0518969,0.712032,0.195671,0.461111,0.898333,0.0191037,0.651315,0.858386,0.508297,0.978332,0.103604,0.340122,0.960308,0.162472,0.527555,0.213443,0.605785,0.464171,0.996172,0.474426,0.44642,0.0569125,0.0269001,0.293532,0.977388,0.966354,0.672088,0.492598,0.750413,0.523278,0.843887,0.0839862,0.870619,0.318448,0.133194,0.423218,0.61659,0.960048,0.354784,0.946999,0.223318,0.230207,0.372043,0.576719,0.979625,0.48209,0.962641,0.762709,0.0788886,0.728586,0.721972,0.435222,0.953763,0.485354,0.327745,0.927862,0.571569,0.347095,0.591993,0.567155,0.946298,0.184383,0.0328934,0.937004,0.168918,0.335976,0.0639298,0.695358,0.785976,0.913249,0.32708,0.0880685,0.610185,0.194512,0.690634,0.366854,0.875606,0.681497,0.0521551,0.691823,0.813627,0.700478,0.803971,0.565713,0.782205,0.249352,0.321237,0.0857788,0.197103,0.834519,0.826999,0.568238,0.887833,0.410895,0.379396,0.967395,0.180217,0.979425,0.900988,0.55972,0.613407,0.61008,0.119912,0.499956,0.16315,0.422169,0.468503,0.246367,0.714074,0.494822,0.473992,0.522984,0.879141,0.566444,0.0779359,0.333905,0.00949699,0.772988,0.826834,0.273234,0.85552,0.10127,0.502532,0.535167,0.0938308,0.61584,0.411805,0.142315,0.320412,0.50146,0.342369,0.795039,0.0978515,0.0675536,0.986692,0.0145724,0.402721,0.0521768,0.479928,0.79647,0.680862,0.501491,0.939784,0.504207,0.65926,0.11807,0.6292,0.749771,0.800554,0.99374,0.859294,0.759936,0.939674,0.914707,0.294915,0.18665,0.959113,0.608995,0.72327,0.279201,0.391213,0.865326,0.747963,0.00518769,0.828533,0.713432,0.617213,0.278791,0.252736,0.476266,0.584,0.871917,0.123865,0.373492,0.0450338,0.730411,0.245586,0.690553,0.832002,0.737134,0.363582,0.19251,0.521262,0.0550731,0.189967,0.250133,0.0380754,0.402523,0.312548,0.41801,0.391646,0.388761,0.557152,0.592579,0.72761,0.339052,0.357316,0.90074,0.778098,0.457311,0.65823,0.421639,0.35098,0.316055,0.768098,0.480795,0.00227243,0.696695,0.0656604,0.414838,0.0881438,0.403963,0.150804,0.94066,0.146149,0.405464,0.76599,0.196612,0.433833,0.790085,0.403309,0.0374031,0.0492312,0.440592,0.948325,0.786932,0.726833,0.916936,0.809885,0.951889,0.00892574,0.0337605,0.365471,0.0581551,0.670677,0.313311,0.0526471,0.610607,0.0272781,0.255342,0.615009,0.957963,0.795884,0.796011,0.525586,0.354803,0.158076,0.535301,0.156273,0.961671,0.767023,0.319022,0.102293,0.424038,0.353207,0.00618398,0.063954,0.526975,0.389715,0.1123,0.632271,0.777719,0.409132,0.295418,0.585973,0.967793,0.487478,0.622069,0.517582,0.428209,0.28086,0.524986,0.329637,0.178335,0.981335,0.789917,0.801017,0.908004,0.527813,0.301887,0.694049,0.517713,0.784206,0.120817,0.0844523,0.704983,0.541829,0.82592,0.131694,0.65412,0.794343,0.38999,0.963082,0.875233,0.997535,0.906468,0.116359,0.366397,0.74688,0.0822012,0.989794,0.361276,0.280833,0.0843031,0.167752,0.877199,0.995062,0.70182,0.81254,0.489348,0.536301,0.89077,0.866503,0.189904,0.430101,0.165249,0.300285,0.0827867,0.433433,0.724342,0.671909,0.203294,0.723422,0.0912334,0.118148,0.510305,0.224324,0.272326,0.187524,0.918762,0.892033,0.342673,0.61197,0.616103,0.96308,0.495243,0.910377,0.48144,0.946822,0.310221,0.867327,0.983396,0.797256,0.0479075,0.889703,0.854435,0.416387,0.500721,0.787379,0.288066,0.827114,0.0774495,0.674378,0.234569,0.422561,0.987614,0.0133086,0.356824,0.883956,0.0878621,0.493544,0.105792,0.859799,0.659052,0.115443,0.620619,0.915556,0.237042,0.823998,0.897424,0.358834,0.604897,0.30695,0.0904632,0.850791,0.730612,0.192305,0.271298,0.199061,0.907994,0.690953,0.771062,0.39818,0.312359,0.302861,0.731212,0.195255,0.192328,0.153941,0.920195,0.433196,0.0297107,0.718022,0.238286,0.654276,0.458158,0.994845,0.617334,0.483084,0.0638634,0.791869,0.302592,0.624957,0.0936723,0.10224,0.766002,0.103123,0.874137,0.684703,0.929257,0.546844,0.356129,0.997104,0.243691,0.165468,0.427289,0.373399,0.530249,0.614549,0.636533,0.0189386,0.042748,0.550752,0.345687,0.958058,0.408265,0.0880323,0.17127,0.538202,0.191463,0.828722,0.477545,0.438009,0.827685,0.73452,0.190314,0.419885,0.31106,0.0406957,0.718051,0.79031,0.613356,0.54609,0.587086,0.112094,0.778335,0.519078,0.499495,0.190257,0.309403,0.772505,0.838045,0.935005,0.536858,0.911,0.801465,0.511173,0.168229,0.535535,0.927655,0.0734978,0.584739,0.632775,0.0075292,0.360916,0.328765,0.0994977,0.648823,0.577973,0.771568,0.523805,0.833728,0.899931,0.488289,0.630486,0.378543,0.339725,0.939507,0.115995,0.692989,0.18782,0.831163,0.925978,0.0235836,0.561045,0.747008,0.503052,0.0969379,0.853915,0.56707,0.333537,0.519045,0.0185264,0.285863,0.320693,0.463685,0.177793,0.623785,0.231143,0.917336,0.590377,0.918322,0.219944,0.530441,0.0314145,0.692776,0.516744,0.268521,0.545045,0.204604,0.911298,0.446813,0.942925,0.407013,0.946712,0.9325,0.0442862,0.752292,0.82741,0.0738264,0.044573,0.606641,0.306243,0.627843,0.0510221,0.310081,0.457603,0.206569,0.63151,|0.350847,0.475327,0.612995,0.951553,0.734812,0.637574,0.49623,0.985143,0.202681,0.0269335,0.421396,0.717221,0.96607,0.970924,0.689011,0.254023,0.729377,0.68936,0.228658,0.886161,0.0166283,0.231617,0.70832,0.148887,0.0131776,0.227022,0.32102,0.766426,0.922627,0.837206,0.425536,0.372062,0.466106,0.843182,0.47747,0.0140193,0.841146,0.290901,0.452781,0.789388,0.949188,0.918587,0.369052,0.656661,0.822245,0.710653,0.0604109,0.0925922,0.836699,0.975477,0.0436426,0.388747,0.65542,0.658927,0.394974,0.292681,0.0618733,0.707842,0.428552,0.869948,0.708434,0.556392,0.0608259,0.701331,0.0943117,0.474941,0.648015,0.0994831,0.202687,0.970832,0.84421,0.925843,0.251451,0.864157,0.278311,0.327016,0.792784,0.616033,0.676676,0.864905,0.373074,0.416566,0.0253813,0.555879,0.984872,0.936914,0.0428658,0.205326,0.721437,0.796152,0.966197,0.232784,0.290302,0.520887,0.579809,0.922489,0.356136,0.126631,0.689262,0.479298,0.229198,0.221092,0.467412,0.613772,0.470711,0.574001,0.651501,0.963253,0.133901,0.207081,0.873078,0.674682,0.803234,0.766658,0.115917,0.413109,0.348142,0.215823,0.69636,0.781317,0.447823,0.862515,0.606725,0.819676,0.0180752,0.450457,0.849117,0.987513,0.00542068,0.72765,0.512967,0.337249,0.00595587,0.856955,0.343419,0.151608,0.00682396,0.516597,0.485229,0.832999,0.939289,0.0641193,0.250323,0.912868,0.785256,0.869574,0.723819,0.264568,0.448176,0.571161,0.0413636,0.815794,0.404968,0.708229,0.78245,0.366733,0.534055,0.520892,0.99662,0.259996,0.882378,0.804572,0.00445777,0.0917376,0.122857,0.697062,0.83,0.970247,0.458876,0.165131,0.552119,0.121488,0.390883,0.630052,0.194894,0.855383,0.0540461,0.569382,0.956522,0.322609,0.888625,0.985333,0.969039,0.952306,0.856505,0.842545,0.830104,0.139456,0.466887,0.754353,0.36384,0.594243,0.736023,0.592579,0.69607,0.157626,0.733015,0.744994,0.366748,0.823936,0.156764,0.137315,0.593475,0.832528,0.554558,0.704563,0.923945,0.358414,0.698035,0.681,0.0864882,0.269172,0.425305,0.980243,0.272085,0.940251,0.5731,0.502513,0.222288,0.869642,0.61729,0.578258,0.334045,0.309261,0.885746,0.486285,0.868519,0.143313,0.981627,0.800708,0.582028,0.0814937,0.204175,0.362471,0.811333,0.342943,0.30149,0.117475,0.796277,0.996366,0.581765,0.626622,0.293832,0.451536,0.324543,0.232773,0.0719174,0.520384,0.703449,0.00749272,0.650392,0.0108973,0.41396,0.327649,0.0809551,0.713929,0.307978,0.952288,0.802216,0.836419,0.617717,0.195833,0.675987,0.702972,0.83209,0.330082,0.465897,0.71123,0.670194,0.644529,0.92591,0.240914,0.51066,0.13982,0.918706,0.0990632,0.34209,0.181236,0.827549,0.496412,0.340194,0.892696,0.134005,0.287142,0.414893,0.7303,0.819182,0.406016,0.218843,0.772841,0.129674,0.317886,0.16375,0.261174,0.918229,0.883736,0.595905,0.49865,0.10174,0.57824,0.358416,0.120525,0.264242,0.688579,0.595823,0.0874671,0.0677831,0.702984,0.545295,0.354288,0.41344,0.527772,0.000744879,0.439762,0.745611,0.242727,0.120945,0.182612,0.943447,0.751997,0.173579,0.258112,0.583559,0.300627,0.872674,0.987906,0.34124,0.379566,0.0444847,0.215694,0.340439,0.677335,0.447911,0.643157,0.305451,0.0154282,0.854549,0.259212,0.979556,0.748051,0.704025,0.285135,0.907265,0.680344,0.0446883,0.758803,0.904475,0.15423,0.837702,0.738185,0.304361,0.186903,0.146012,0.779312,0.834359,0.212392,0.0201881,0.336856,0.852788,0.134559,0.807768,0.613769,0.886421,0.837771,0.991612,0.355419,0.660948,0.43247,0.260637,0.250863,0.441523,0.312677,0.268657,0.150316,0.788845,0.336158,0.759903,0.0931792,0.294984,0.0184407,0.899993,0.645122,0.339766,0.0466759,0.982708,0.490614,0.660639,0.810924,0.10005,0.387715,0.165103,0.322891,0.121275,0.985311,0.566345,0.630663,0.423141,0.761428,0.711372,0.495885,0.518851,0.173983,0.843811,0.424087,0.685371,0.726864,0.579195,0.397909,0.173813,0.0358286,0.852458,0.92549,0.687064,0.676881,0.241964,0.927216,0.79118,0.0607669,0.280846,0.808738,0.8073,0.963498,0.468481,0.594549,0.817137,0.443556,0.250312,0.760201,0.355384,0.471657,0.128046,0.541758,0.443075,0.666597,0.599456,0.792107,0.46713,0.738675,0.983677,0.395668,0.402433,0.235146,0.676379,0.534362,0.727036,0.296135,0.936298,0.951368,0.251607,0.884288,0.939209,0.234449,0.471915,0.580482,0.354773,0.327475,0.776044,0.91096,0.987126,0.204341,0.802428,0.482566,0.702558,0.297781,0.54306,0.71544,0.63811,0.355855,0.0138974,0.434827,0.256019,0.528761,0.613557,0.968937,0.979389,0.123143,0.852354,0.458347,0.841043,0.88251,0.0486817,0.568787,0.00692898,0.546012,0.525482,0.0175015,0.559784,0.609005,0.446577,0.924865,0.114472,0.110598,0.164049,0.802773,0.266729,0.560156,0.188632,0.983247,0.485491,0.432173,0.348677,0.957642,0.495882,0.617362,0.385001,0.33635,0.919974,0.409284,0.991949,0.312649,0.947018,0.603484,0.168746,0.590992,0.890763,0.21126,0.752536,0.54389,0.434831,0.853951,0.906728,0.158562,0.37204,0.605081,0.00163925,0.461853,0.896075,0.467804,0.42956,0.447523,0.570268,0.0774219,0.704771,0.500793,0.964067,0.0157539,0.707013,0.238753,0.0438659,0.734007,0.40943,0.824577,0.183362,0.552079,0.578681,0.126185,0.16067,0.908614,0.679129,0.954739,0.550366,0.278234,0.264495,0.922405,0.671522,0.628739,0.326334,0.499092,0.172599,0.675365,0.216166,0.979934,0.606687,0.250753,0.597959,0.167934,0.379979,0.257268,0.800736,0.0706961,0.703272,0.549053,0.893491,0.807396,0.993275,0.841069,0.806245,0.570107,0.362551,0.2855,0.446067,0.683482,0.407725,0.887446,0.355548,0.190368,0.537395,0.0265349,0.16849,0.933328,0.587968,0.603464,0.162949,0.339798,0.201606,0.750142,0.170075,0.378658,0.145311,0.0101103,0.829801,0.655818,0.830603,0.205264,0.878197,0.904239,0.67054,0.573636,0.635224,0.346096,0.656833,0.850096,0.686031,0.0454062,0.553535,0.980247,0.0464152,0.90737,0.650123,0.894414,0.976075,0.0850613,0.51378,0.482711,0.387052,0.0443108,0.104421,0.0103845,0.730569,0.678877,0.265982,0.159136,0.590838,0.0392814,0.560956,0.825044,0.102998,0.385326,0.566689,0.826994,0.266487,0.132021,0.890813,0.793625,0.375814,0.840269,0.502715,0.753376,0.67111,0.703117,0.680193,0.443599,0.393324,0.412479,0.496214,0.950008,0.0025019,0.516496,0.494424,0.98269,0.344749,0.312678,0.292657,0.893479,0.703153,0.96843,0.569963,0.137749,0.261159,0.757628,0.480835,0.277543,0.114803,0.437864,0.465118,0.396558,0.181545,0.0489083,0.472243,0.189276,0.724462,0.549818,0.556229,0.544151,0.106781,0.0920682,0.830971,0.761907,0.648763,0.175519,0.59008,0.0560412,0.444496,0.154561,0.4715,0.821165,0.809996,0.99468,0.32553,0.317599,0.577813,0.12838,0.896039,0.875743,0.0837812,0.19632,0.79878,0.315592,0.826252,0.886326,0.654962,0.483964,0.553316,0.701454,0.921998,0.606313,0.497736,0.574523,0.857399,0.0591382,0.1688,0.292888,0.616653,0.123135,0.940425,0.0833954,0.83718,0.817785,0.274764,0.530843,0.551074,0.478238,0.422884,0.32665,0.277596,0.529587,0.523524,0.132219,0.976377,0.593992,0.157526,0.554854,0.285574,0.591845,0.764123,0.939595,0.739416,0.619955,0.596004,0.127658,0.989855,0.196777,0.78636,0.234778,0.522998,0.812827,0.646927,0.354926,0.83584,0.999437,0.348452,0.763539,0.978302,0.0817943,0.18422,0.166306,0.233861,0.582591,0.650489,0.767744,0.984718,0.181216,0.105818,0.28546,0.506109,0.466079,0.959606,0.0567175,0.135556,0.889474,0.343596,0.926627,0.299353,0.46265,0.0883664,0.0961486,0.24265,0.912509,0.196479,0.781083,0.860901,0.0328503,0.996774,0.953112,0.385207,0.647895,0.1172,0.981853,0.864768,0.122651,0.385971,0.265231,0.641999,0.179735,0.616918,0.423284,0.693523,0.402799,0.773227,0.165695,0.514698,0.767576,0.790995,0.773248,0.203323,0.322511,0.186072,0.654514,0.354913,0.988509,0.438982,0.452028,0.00575495,0.262626,0.520526,0.50487,0.42828,0.194521,0.423969,0.739128,0.980676,0.0734855,0.567835,0.698671,0.807539,0.182735,0.442107,0.655678,0.455927,0.470943,0.93268,0.365767,0.483824,0.682266,0.195602,0.430572,0.125838,0.697479,0.875314,0.45716,0.320407,0.499635,0.605952,0.900813,0.415478,0.71774,0.918448,0.187879,0.511961,0.86866,0.437669,0.712184,0.832208,0.867381,0.12282,0.00328958,0.49062,0.283268,0.275965,0.471266,0.389285,0.910812,0.69043,0.565031,0.0120693,0.929492,0.304415,0.622222,0.232733,0.946493,0.949283,0.576542,0.329162,0.804132,0.594497,0.495445,0.433329,0.0624527,0.847849,0.730602,0.474718,0.855036,0.775807,0.900535,0.981915,0.0443404,0.379618,0.613008,0.769961,0.469312,0.914342,0.802748,0.717085,0.695277,0.812196,0.947048,0.52744,0.811731,0.135906,0.787821,0.653154,0.362292,0.299277,0.0417922,0.924515,0.202658,0.903668,0.51447,0.907628,0.644906,0.428413,0.437557,0.535619,0.160204,0.663687,0.380174,0.297545,0.280085,0.474756,0.424378,0.606591,0.0133799,0.785994,0.251786,0.290247,0.0303892,0.58932,0.232042,0.391659,0.81844,0.375641,0.928936,0.390232,0.223984,0.785572,0.266959,0.779843,0.991351,0.412509,0.119671,0.361429,0.650722,0.435247,0.650444,0.178284,0.099387,0.737782,0.64498,0.0585545,0.861687,0.968079,0.685073,0.94179,0.422012,0.668263,0.588203,0.734269,0.689242,0.453702,0.700816,0.0825568,0.458422,0.770174,0.960338,0.173321,0.624821,0.0275674,0.196154,0.446306,0.972035,0.805785,0.500319,0.834986,0.914432,0.685245,0.18334,0.440596,0.29302,0.0387614,0.366545,0.256197,0.156869,0.908463,0.562942,0.0886926,0.758856,0.923527,0.101135,0.175174,0.130379,|0.154969,0.118423,0.0984415,0.232196,0.589949,0.13798,0.141658,0.286182,0.617392,0.671619,0.752385,0.416032,0.144451,0.792752,0.378095,0.531147,0.00114167,0.414006,0.219918,0.204524,0.227779,0.091876,0.494613,0.312534,0.549074,0.799493,0.942542,0.746762,0.96656,0.669293,0.478883,0.0742387,0.0272974,0.0925996,0.108288,0.671948,0.132626,0.628661,0.880782,0.32078,0.463181,0.546683,0.00928158,0.713618,0.990155,0.607768,0.0686369,0.599212,0.0400923,0.235611,0.993309,0.0690129,0.670882,0.886777,0.580497,0.607703,0.747706,0.959274,0.540439,0.706812,0.540023,0.230544,0.327381,0.378071,0.97948,0.479629,0.805351,0.917568,0.0087682,0.345186,0.951888,0.0829273,0.889796,0.985485,0.282312,0.87267,0.132712,0.272709,0.857988,0.436165,0.711671,0.261888,0.83524,0.747505,0.925211,0.410544,0.628666,0.9399,0.716414,0.821663,0.458714,0.543867,0.149686,0.821485,0.0678105,0.594469,0.489375,0.953421,0.983831,0.973705,0.752985,0.170776,0.07191,0.621766,0.72059,0.294095,0.622662,0.698106,0.162347,0.456683,0.315826,0.663354,0.915882,0.640316,0.342676,0.707222,0.869899,0.834271,0.345286,0.736202,0.535593,0.27109,0.814911,0.267273,0.11876,0.636001,0.83895,0.864875,0.718889,0.907384,0.554082,0.174044,0.519351,0.070891,0.243358,0.109158,0.610338,0.75353,0.255179,0.66889,0.950668,0.146027,0.59369,0.220268,0.882553,0.912601,0.150298,0.991151,0.081726,0.0868812,0.744718,0.0965749,0.656664,0.879045,0.818192,0.635432,0.233883,0.752295,0.423971,0.838083,0.3731,0.772834,0.335406,0.781064,0.232203,0.751039,0.87101,0.239625,0.189613,0.554994,0.879178,0.684037,0.33422,0.0822234,0.512787,0.279119,0.608364,0.182876,0.811505,0.272969,0.526435,0.450045,0.98529,0.646735,0.00739735,0.402362,0.738105,0.841721,0.670221,0.764581,0.492235,0.81108,0.28095,0.451152,0.900834,0.253132,0.510285,0.674799,0.374665,0.800034,0.0580528,0.937472,0.0775244,0.0549126,0.138501,0.552399,0.259804,0.62388,0.997325,0.627908,0.814569,0.617043,0.680784,0.154379,0.651329,0.54271,0.0764467,0.935854,0.557698,0.240708,0.851103,0.985046,0.467686,0.403499,0.474785,0.291135,0.283641,0.414537,0.480767,0.557167,0.10755,0.240542,0.0544564,0.50991,0.555352,0.148809,0.435851,0.239062,0.594929,0.031084,0.302737,0.754531,0.371437,0.980062,0.0170814,0.916979,0.436323,0.710709,0.60884,0.812751,0.0103978,0.435173,0.476975,0.963627,0.258781,0.0320521,0.606046,0.502591,0.57929,0.00423938,0.38421,0.651523,0.112961,0.0373492,0.503043,0.0891126,0.0837176,0.738379,0.919053,0.91779,0.00663501,0.577436,0.167767,0.813491,0.862914,0.388988,0.394378,0.835216,0.463553,0.59322,0.162265,0.00706303,0.98982,0.968898,0.362741,0.628428,0.448634,0.357152,0.49181,0.855232,0.946203,0.505062,0.326851,0.499512,0.463578,0.867377,0.266905,0.354655,0.294012,0.0551534,0.634771,0.757148,0.476205,0.152223,0.0671293,0.197382,0.791042,0.85935,0.885765,0.175943,0.575374,0.232484,0.375338,0.820042,0.872066,0.0735533,0.236368,0.34831,0.580777,0.546678,0.646657,0.994054,0.883416,0.99359,0.456042,0.139654,0.861528,0.9992,0.715371,0.607807,0.686156,0.117338,0.774095,0.164347,0.660428,0.490196,0.0349147,0.716649,0.805301,0.63359,0.0125096,0.173824,0.270396,0.548655,0.172245,0.380083,0.804465,0.509076,0.205515,0.82649,0.990064,0.386739,0.108152,0.454742,0.827676,0.198448,0.0134893,0.657787,0.815366,0.153664,0.839863,0.247347,0.68574,0.456127,0.156766,0.977277,0.399476,0.700943,0.437527,0.869877,0.654732,0.580374,0.987738,0.383927,0.00766635,0.240976,0.0908934,0.700691,0.729663,0.200624,0.898719,0.124923,0.552812,0.714619,0.849284,0.886371,0.461114,0.867746,0.12179,0.267562,0.939054,0.999841,0.0381663,0.732509,0.273311,0.559984,0.464035,0.940365,0.545765,0.861565,0.479715,0.617333,0.910896,0.699091,0.932649,0.301136,0.279857,0.626128,0.554897,0.325464,0.300484,0.439375,0.586012,0.298174,0.445967,0.778686,0.0984111,0.780023,0.743895,0.0575768,0.668466,0.459304,0.161187,0.260705,0.560674,0.119433,0.388783,0.610844,0.130183,0.0878857,0.993441,0.824441,0.628769,0.666534,0.931813,0.4011,0.966942,0.841463,0.0197747,0.0992697,0.619945,0.226671,0.825656,0.360032,0.520872,0.427925,0.250928,0.234024,0.747796,0.334065,0.164786,0.352161,0.370971,0.827447,0.266565,0.732596,0.60547,0.185733,0.726296,0.734849,0.788368,0.411542,0.769586,0.864907,0.355825,0.403017,0.0691674,0.513012,0.465693,0.486549,0.563332,0.51097,0.884724,0.818194,0.268153,0.994812,0.0061354,0.528374,0.551989,0.00119358,0.467901,0.362418,0.646257,0.445976,0.538184,0.768432,0.176444,0.347562,0.273129,0.618836,0.42589,0.766068,0.57152,0.318227,0.998809,0.461185,0.00935441,0.0130708,0.20004,0.49952,0.260083,0.0674927,0.59019,0.0312176,0.729844,0.465459,0.938134,0.316756,0.0877456,0.915905,0.701659,0.749395,0.509442,0.152924,0.587554,0.271619,0.500382,0.594895,0.592459,0.836698,0.0567313,0.580663,0.346727,0.873992,0.419068,0.300132,0.508019,0.425508,0.618481,0.553758,0.920155,0.503954,0.887355,0.320639,0.509265,0.718564,0.848692,0.0743036,0.865522,0.983137,0.337716,0.753865,0.0769366,0.276014,0.424296,0.425789,0.0223088,0.76513,0.627398,0.324717,0.201225,0.836917,0.85239,0.929829,0.882926,0.129145,0.451831,0.678379,0.932876,0.363164,0.760113,0.0823653,0.118905,0.0300286,0.522882,0.0023309,0.453645,0.0334848,0.0725367,0.331162,0.190962,0.213118,0.695317,0.315371,0.750048,0.916538,0.58294,0.32168,0.827075,0.674042,0.0156904,0.579621,0.30975,0.0655141,0.19593,0.393525,0.0734718,0.684675,0.405747,0.254006,0.04953,0.131083,0.858347,0.942358,0.681961,0.898819,0.953455,0.77588,0.0184254,0.586365,0.93882,0.128293,0.838093,0.941592,0.506101,0.108757,0.706384,0.243772,0.715617,0.159124,0.340333,0.0753732,0.874468,0.987497,0.372587,0.978,0.579233,0.616799,0.747553,0.788459,0.0405793,0.128998,0.730436,0.734693,0.857869,0.663082,0.256885,0.63063,0.380949,0.419768,0.0458807,0.334048,0.513306,0.127603,0.0401057,0.992252,0.0120299,0.220305,0.631254,0.451111,0.812714,0.133487,0.183905,0.62618,0.984955,0.413319,0.79912,0.906854,0.0361557,0.883647,0.926243,0.41363,0.950019,0.730725,0.473372,0.927891,0.287918,0.674632,0.639197,0.563144,0.429488,0.216429,0.812555,0.735246,0.291468,0.255786,0.398304,0.801294,0.00509614,0.296583,0.230521,0.203386,0.997613,0.197655,0.200869,0.045466,0.664801,0.82703,0.506628,0.11934,0.0433719,0.366719,0.907955,0.107788,0.901043,0.361784,0.293147,0.744615,0.431451,0.764888,0.185933,0.332229,0.818564,0.846964,0.165241,0.438421,0.785695,0.973722,0.054248,0.209906,0.215384,0.37969,0.680384,0.0305053,0.259829,0.609564,0.474211,0.858806,0.516069,0.232069,0.526966,0.244524,0.95606,0.705328,0.23143,0.768183,0.479428,0.45216,0.275179,0.324674,0.645759,0.69049,0.690055,0.402459,0.0664871,0.842554,0.539928,0.636223,0.351968,0.688218,0.322747,0.00799054,0.83534,0.557378,0.0588507,0.493079,0.493198,0.622734,0.730271,0.473317,0.0423477,0.568686,0.275182,0.668674,0.83613,0.773184,0.393615,0.506512,0.268231,0.867506,0.408557,0.877312,0.0121718,0.221535,0.60251,0.0646694,0.749612,0.387897,0.332615,0.330866,0.525625,0.852515,0.536439,0.0239709,0.825382,0.973023,0.393117,0.747109,0.116481,0.689086,0.970609,0.870499,0.0135227,0.906841,0.830356,0.387431,0.55282,0.803475,0.624227,0.750862,0.625108,0.277278,0.92513,0.404536,0.78244,0.159209,0.764085,0.638775,0.2232,0.660355,0.867097,0.604121,0.292297,0.0470338,0.778404,0.752562,0.989885,0.661382,0.171011,0.101935,0.195544,0.145665,0.570643,0.907746,0.314967,0.302029,0.550913,0.801902,0.169585,0.4294,0.257168,0.844585,0.918772,0.836996,0.639567,0.23193,0.735938,0.234669,0.171965,0.148683,0.326621,0.313418,0.0324625,0.661604,0.541189,0.47126,0.119145,0.0788748,0.00749677,0.953406,0.214171,0.623388,0.421523,0.700604,0.597759,0.382812,0.0717228,0.28634,0.947526,0.46895,0.764181,0.356069,0.481754,0.556941,0.164039,0.0641459,0.272527,0.036877,0.746849,0.693798,0.0550601,0.473913,0.198259,0.565449,0.0324073,0.996013,0.619798,0.875217,0.824642,0.0154262,0.334918,0.79253,0.325733,0.84223,0.243863,0.750767,0.155904,0.873024,0.593874,0.0572909,0.702613,0.327212,0.181243,0.59651,0.740927,0.108296,0.687232,0.241939,0.109381,0.283594,0.80445,0.937857,0.262738,0.803895,0.270266,0.391161,0.649006,0.789174,0.477616,0.240291,0.463555,0.997295,0.358558,0.587853,0.152804,0.95241,0.499158,0.0583465,0.452762,0.795692,0.711725,0.19248,0.226712,0.164036,0.852525,0.48492,0.979881,0.187348,0.860341,0.288315,0.93522,0.892907,0.34697,0.66232,0.0191682,0.710763,0.0487061,0.95878,0.545187,0.545491,0.899151,0.320123,0.273135,0.552304,0.0236369,0.0953934,0.974772,0.977755,0.789259,0.482642,0.450831,0.449907,0.759775,0.949523,0.430407,0.369051,0.85253,0.781523,0.400658,0.606318,0.27671,0.412454,0.0238797,0.490471,0.736672,0.0778983,0.90822,0.682677,0.885925,0.282911,0.801978,0.916657,0.476865,0.888563,0.531905,0.859765,0.37878,0.555661,0.00499624,0.975929,0.206023,0.383575,0.715007,0.0497041,0.790877,0.267492,0.314288,0.506696,0.491307,0.490204,0.45886,0.895958,0.657794,0.302585,0.172452,0.400986,0.682767,0.192447,0.351127,0.448071,0.832545,0.684735,0.38453,0.535363,0.810546,0.880888,0.661417,0.646442,0.939281,0.0143372,0.64732,0.527996,0.416168,0.342809,0.021177,0.453469,0.600522,0.290144,0.280237,0.927094,|0.332934,0.574759,0.821123,0.946116,0.16728,0.59341,0.0537661,0.269268,0.734615,0.202304,0.683171,0.0901024,0.148521,0.491577,0.934423,0.97325,0.383504,0.196884,0.466711,0.203961,0.575919,0.968725,0.594999,0.261286,0.0321041,0.690616,0.829087,0.758222,0.660616,0.521777,0.363467,0.652449,0.268766,0.269603,0.962874,0.444931,0.630177,0.628104,0.482199,0.912601,0.593881,0.670222,0.414844,0.425323,0.475313,0.248899,0.0840338,0.741646,0.151801,0.531983,0.93041,0.385882,0.799683,0.529446,0.448017,0.433601,0.696081,0.935969,0.721164,0.898227,0.319906,0.510747,0.874675,0.563687,0.938853,0.844698,0.00262731,0.0520709,0.798858,0.0603595,0.535847,0.0455586,0.669433,0.107584,0.74456,0.894166,0.864729,0.19011,0.0773625,0.492477,0.898817,0.274795,0.8678,0.164545,0.0710816,0.493016,0.617117,0.867912,0.627546,0.458163,0.219667,0.172739,0.760165,0.0208776,0.208872,0.325395,0.336377,0.524926,0.226414,0.389456,0.078073,0.892632,0.923824,0.405846,0.889411,0.42854,0.499667,0.519624,0.885724,0.00310868,0.091441,0.723917,0.948006,0.358585,0.0661861,0.0282958,0.94921,0.19401,0.624056,0.661708,0.71251,0.974217,0.455313,0.159745,0.607328,0.593265,0.941533,0.0926684,0.208277,0.308749,0.807403,0.672798,0.850531,0.170387,0.434199,0.254648,0.990492,0.316795,0.898419,0.701388,0.256007,0.358183,0.221239,0.987517,0.802523,0.135093,0.059379,0.329746,0.394077,0.98767,0.0494229,0.308856,0.528938,0.0122589,0.129002,0.242036,0.7963,0.753452,0.868812,0.105376,0.594251,0.537076,0.0714331,0.92361,0.744975,0.370614,0.618069,0.851346,0.187285,0.871847,0.807802,0.174736,0.995918,0.770437,0.294046,0.589943,0.548653,0.751451,0.363022,0.937105,0.500788,0.812935,0.995104,0.0111212,0.315904,0.830336,0.0775811,0.517774,0.630641,0.0736813,0.0884523,0.76735,0.41321,0.284327,0.0945669,0.429201,0.517605,0.616922,0.171014,0.921882,0.678265,0.377018,0.0911215,0.208025,0.30679,0.277677,0.981478,0.252435,0.732691,0.682554,0.838528,0.33908,0.856167,0.677284,0.293191,0.441584,0.527863,0.052404,0.18456,0.907298,0.397375,0.298041,0.956592,0.801852,0.505335,0.66417,0.743353,0.0577701,0.676354,0.818456,0.146791,0.989601,0.635352,0.0658762,0.515539,0.108143,0.387857,0.0576137,0.767563,0.344253,0.751918,0.0389628,0.0425432,0.838297,0.864297,0.0333809,0.984697,0.319709,0.891126,0.169857,0.642475,0.709412,0.628541,0.2513,0.753127,0.325958,0.197307,0.0337695,0.0579314,0.852918,0.911004,0.386876,0.757579,0.625006,0.983695,0.862576,0.146518,0.572301,0.414945,0.971429,0.442118,0.588029,0.714834,0.881777,0.390627,0.9857,0.883853,0.616099,0.185097,0.754519,0.209585,0.431343,0.759287,0.176868,0.523297,0.997757,0.643119,0.345767,0.0415589,0.266879,0.432629,0.379055,0.106158,0.631808,0.973105,0.547819,0.893556,0.33966,0.359704,0.047619,0.0399783,0.129925,0.475647,0.663306,0.725848,0.794666,0.811861,0.839725,0.547021,0.362231,0.0305462,0.230276,0.352578,0.37066,0.798847,0.887554,0.647613,0.771706,0.888469,0.95285,0.750252,0.446602,0.901318,0.872571,0.303216,0.534959,0.709332,0.351369,0.258184,0.635219,0.790565,0.976373,0.589615,0.796144,0.383789,0.449464,0.044014,0.936704,0.356505,0.773046,0.258515,0.49769,0.0360646,0.628368,0.360015,0.174575,0.172769,0.931571,0.956817,0.398224,0.260199,0.96278,0.0878432,0.408114,0.680746,0.752419,0.658978,0.300652,0.332849,0.7136,0.809544,0.832327,0.481346,0.825327,0.492441,0.757594,0.111235,0.857344,0.898719,0.534986,0.979868,0.462112,0.0130822,0.104107,0.447567,0.644659,0.686256,0.827884,0.223611,0.110494,0.950025,0.235872,0.45459,0.498188,0.30428,0.844009,0.21422,0.447565,0.388072,0.383834,0.414696,0.734286,0.189212,0.502199,0.879583,0.0874285,0.231205,0.931455,0.809525,0.620049,0.308858,0.198697,0.326526,0.436898,0.127749,0.413369,0.668653,0.339886,0.0714671,0.422638,0.918582,0.180889,0.880203,0.574573,0.893878,0.892977,0.506447,0.732446,0.101081,0.626008,0.458977,0.94792,0.0613604,0.63496,0.332633,0.483526,0.35608,0.183504,0.183553,0.454076,0.850844,0.513732,0.512734,0.0903363,0.497958,0.091776,0.0312899,0.0717643,0.118359,0.682605,0.493095,0.818836,0.437213,0.756304,0.0193224,0.159229,0.986938,0.541278,0.995522,0.113572,0.163206,0.156485,0.283243,0.238282,0.109073,0.22056,0.220311,0.531043,0.724891,0.130088,0.178436,0.234147,0.0316747,0.610465,0.137215,0.0442298,0.27694,0.434167,0.549656,0.196751,0.531803,0.395181,0.166824,0.320315,0.638482,0.877038,0.111311,0.306574,0.16325,0.206008,0.495531,0.954814,0.213053,0.309309,0.29915,0.239339,0.997684,0.616564,0.0458734,0.0472831,0.735996,0.0207887,0.76733,0.725145,0.728572,0.272866,0.706225,0.653668,0.0477816,0.856572,0.599905,0.832009,0.965491,0.144771,0.0610994,0.693017,0.633939,0.497055,0.30288,0.0542324,0.253357,0.181605,0.984079,0.0422724,0.111647,0.410486,0.388059,0.710762,0.731491,0.534571,0.615868,0.74439,0.999939,0.215807,0.843634,0.873468,0.820052,0.964233,0.109326,0.368017,0.738795,0.556865,0.274546,0.117025,0.632354,0.0499681,0.53907,0.941253,0.388552,0.626832,0.196768,0.140532,0.865558,0.205241,0.668394,0.509482,0.11979,0.740023,0.979976,0.12539,0.997379,0.99532,0.591757,0.9957,0.949551,0.576429,0.237516,0.488517,0.296413,0.11463,0.235334,0.44114,0.0612912,0.00519538,0.460269,0.386031,0.302431,0.228677,0.882448,0.769252,0.0501699,0.50193,0.2343,0.746211,0.239818,0.164545,0.144242,0.200428,0.764565,0.805003,0.950455,0.0572228,0.320874,0.409075,0.00925589,0.316472,0.384507,0.0451766,0.897218,0.95049,0.733646,0.567506,0.0619544,0.935409,0.424598,0.802583,0.742262,0.379288,0.690959,0.190727,0.148554,0.511717,0.532714,0.263655,0.612283,0.40883,0.815247,0.713958,0.724535,0.973122,0.685807,0.727999,0.801452,0.121111,0.710543,0.117291,0.374553,0.567611,0.937537,0.45347,0.643534,0.829713,0.865301,0.774523,0.559724,0.469803,0.968087,0.328037,0.903607,0.442813,0.441132,0.126508,0.334427,0.917923,0.2595,0.833471,0.225477,0.123344,0.546641,0.135507,0.221451,0.854726,0.790047,0.783976,0.143064,0.92215,0.569668,0.72889,0.743639,0.733045,0.778994,0.33417,0.0872882,0.600392,0.297118,0.725007,0.356881,0.060513,0.638213,0.873741,0.874052,0.540638,0.702895,0.801915,0.33993,0.927633,0.129112,0.313102,0.178439,0.122869,0.0617569,0.676726,0.13887,0.101368,0.481193,0.526469,0.813226,0.412566,0.589451,0.105002,0.99808,0.427875,0.555603,0.00460422,0.367135,0.674915,0.290348,0.637561,0.587267,0.607646,0.764318,0.638667,0.500669,0.160897,0.0807967,0.30538,0.0165137,0.155272,0.049518,0.604163,0.867106,0.954395,0.780371,0.212284,0.79341,0.774691,0.343982,0.38308,0.460172,0.698127,0.326645,0.627284,0.577903,0.993455,0.237941,0.115785,0.131122,0.21689,0.371486,0.666403,0.200123,0.688868,0.590773,0.286447,0.428253,0.154247,0.584842,0.273167,0.60972,0.29838,0.815416,0.381095,0.335897,0.880227,0.317723,0.25374,0.48236,0.813666,0.0775027,0.269238,0.163093,0.897671,0.7209,0.790394,0.746348,0.411483,0.309253,0.0582451,0.608161,0.7044,0.214844,0.375005,0.431612,0.263222,0.646965,0.0662277,0.917761,0.765381,0.450019,0.686445,0.00830644,0.747521,0.937945,0.811046,0.906785,0.668542,0.184276,0.443266,0.0352734,0.493053,0.101457,0.167028,0.247016,0.33409,0.580513,0.81485,0.508831,0.232425,0.657824,0.672081,0.615036,0.250392,0.364461,0.417693,0.34229,0.929188,0.0189521,0.819993,0.819077,0.711044,0.618747,0.204697,0.293687,0.847809,0.382463,0.185869,0.0765592,0.511126,0.123647,0.127938,0.691139,0.606961,0.0338961,0.0662072,0.798847,0.195805,0.0407976,0.63642,0.876059,0.38746,0.695154,0.0947046,0.87506,0.487336,0.0065099,0.16755,0.829897,0.114614,0.592405,0.982355,0.303391,0.167574,0.607842,0.0681249,0.0776911,0.150306,0.00135404,0.0836131,0.274792,0.756388,0.791701,0.89186,0.266403,0.872968,0.944162,0.402293,0.560111,0.528376,0.361554,0.000469923,0.730684,0.257288,0.727614,0.0822111,0.0706543,0.58905,0.686755,0.284057,0.344213,0.162533,0.512725,0.878536,0.644821,0.458619,0.475631,0.480125,0.657448,0.433745,0.234254,0.539453,0.972038,0.985468,0.399851,0.849423,0.163794,0.0966921,0.450555,0.0264887,0.748385,0.0280063,0.138628,0.21626,0.629413,0.507464,0.242639,0.168891,0.028815,0.673715,0.598291,0.889995,0.677779,0.898609,0.286087,0.836015,0.82097,0.824679,0.440716,0.89488,0.316617,0.97435,0.0770412,0.44898,0.129682,0.0937043,0.652626,0.749437,0.766355,0.814156,0.732941,0.569221,0.00444794,0.741117,0.17871,0.949906,0.932544,0.333913,0.887524,0.957564,0.905353,0.792178,0.973247,0.263628,0.399521,0.247518,0.0978625,0.737369,0.0274729,0.39286,0.291317,0.11589,0.556509,0.616087,0.0791901,0.0596392,0.178167,0.0650514,0.127149,0.261881,0.0957294,0.490207,0.632745,0.269512,0.943533,0.173725,0.935832,0.0400597,0.056833,0.8646,0.567058,0.389311,0.362485,0.655055,0.147883,0.938294,0.551785,0.798732,0.903062,0.81861,0.100695,0.953802,0.771707,0.685157,0.384263,0.957336,0.686093,0.460258,0.58568,0.836536,0.17128,0.871665,0.704526,0.895974,0.58509,0.985215,0.617963,0.172917,0.326487,0.745647,0.975683,0.231564,0.759725,0.878527,0.599717,0.877732,0.847693,0.125808,0.314368,0.934803,0.0501115,0.926804,0.774245,0.202335,0.518627,0.565954,0.81227,0.133052,0.209578,0.00539994,0.998087,0.973253,0.390888,0.676649,0.790543,0.443721,0.337969,0.319542,0.307013,0.815759,0.971292,0.271796,|0.629216,0.688469,0.0807799,0.387957,0.123182,0.55126,0.895855,0.889499,0.547728,0.437268,0.967972,0.275999,0.852657,0.971501,0.453001,0.194248,0.706217,0.567751,0.429734,0.100438,0.581934,0.615556,0.645956,0.679705,0.637712,0.203958,0.793778,0.5069,0.661862,0.203471,0.910496,0.703731,0.669095,0.831823,0.879109,0.791678,0.125004,0.397117,0.398732,0.769428,0.137386,0.172556,0.84535,0.805912,0.427464,0.622829,0.060519,0.182327,0.174211,0.114481,0.686858,0.298385,0.649322,0.836485,0.596398,0.217042,0.927503,0.558671,0.465103,0.515282,0.616283,0.672509,0.251333,0.328303,0.699844,0.412136,0.736378,0.573902,0.100026,0.697685,0.580679,0.339291,0.392943,0.831114,0.947589,0.279516,0.101711,0.111435,0.00657052,0.556224,0.7319,0.359924,0.165388,0.699525,0.663992,0.636189,0.209296,0.330515,0.415319,0.758926,0.240866,0.383243,0.479176,0.201276,0.0265771,0.936484,0.538069,0.704455,0.864728,0.842844,0.858068,0.730751,0.445443,0.565863,0.45796,0.613026,0.304306,0.317628,0.755522,0.257632,0.720153,0.937948,0.421527,0.739354,0.141947,0.243127,0.560313,0.566376,0.708343,0.218033,0.944693,0.629416,0.263163,0.420696,0.464868,0.623598,0.250488,0.72366,0.590876,0.933767,0.0521004,0.706947,0.146466,0.455524,0.38475,0.87221,0.620051,0.452282,0.913261,0.86524,0.026742,0.393871,0.531623,0.9207,0.282021,0.230599,0.422778,0.438979,0.795479,0.46833,0.687631,0.488624,0.383235,0.598167,0.672327,0.819194,0.138941,0.134555,0.785255,0.740618,0.32003,0.251962,0.226073,0.0283281,0.929933,0.400951,0.554833,0.0649015,0.565857,0.117805,0.83698,0.109407,0.145029,0.41542,0.0250619,0.914087,0.955652,0.282182,0.152437,0.151993,0.289338,0.531166,0.209266,0.654754,0.438488,0.878938,0.0609523,0.822661,0.886862,0.428402,0.683109,0.30671,0.114303,0.469632,0.160726,0.137062,0.724444,0.121863,0.289267,0.813299,0.595913,0.14366,0.602599,0.0217628,0.245762,0.79737,0.266847,0.203064,0.294964,0.98054,0.337976,0.145225,0.260493,0.456267,0.912379,0.300992,0.467796,0.943956,0.665999,0.217345,0.73479,0.613273,0.980723,0.194584,0.611497,0.821019,0.870122,0.517636,0.674407,0.274678,0.88529,0.139781,0.185873,0.103723,0.0229186,0.63613,0.675026,0.43281,0.150421,0.535097,0.97858,0.305311,0.679047,0.379662,0.0410761,0.668011,0.846759,0.629316,0.306013,0.421021,0.341508,0.660393,0.835019,0.315882,0.976553,0.0268387,0.680917,0.407796,0.648129,0.65645,0.135347,0.931642,0.916928,0.0632519,0.710793,0.806263,0.640674,0.7515,0.325774,0.607051,0.201629,0.100243,0.778027,0.80643,0.61461,0.835734,0.504634,0.0748025,0.0675833,0.534194,0.844361,0.357945,0.683717,0.272922,0.182956,0.420871,0.445093,0.878509,0.329414,0.442025,0.614809,0.791584,0.637209,0.537649,0.573618,0.821613,0.902835,0.939038,0.42774,0.860965,0.919165,0.42919,0.918086,0.46643,0.154508,0.295873,0.723845,0.708154,0.960261,0.856963,0.572508,0.263466,0.661348,0.360883,0.797415,0.00126916,0.620315,0.504613,0.0798525,0.468798,0.0174118,0.999096,0.0260041,0.184072,0.610889,0.339211,0.988711,0.862447,0.831402,0.833361,0.416135,0.689176,0.662469,0.0954871,0.496048,0.477437,0.966997,0.139281,0.867849,0.0588461,0.298643,0.635297,0.549409,0.887951,0.580659,0.088816,0.931976,0.133019,0.448945,0.396161,0.727705,0.965522,0.938236,0.157827,0.427918,0.34425,0.207898,0.0382444,0.703847,0.00792438,0.104876,0.646335,0.23989,0.844001,0.979567,0.154265,0.606955,0.6019,0.408855,0.931975,0.937382,0.733444,0.502292,0.583071,0.544213,0.927358,0.859289,0.0970956,0.410292,0.532882,0.0996187,0.114191,0.298811,0.0435212,0.122321,0.064351,0.806552,0.0477169,0.770993,0.718013,0.676158,0.657224,0.829111,0.219486,0.514268,0.4829,0.511342,0.638663,0.315521,0.871742,0.0022223,0.319349,0.631343,0.865417,0.992907,0.759939,0.0891988,0.76587,0.730906,0.230726,0.600698,0.734199,0.979044,0.761637,0.884437,0.348431,0.841186,0.702364,0.537438,0.275407,0.514178,0.757465,0.134703,0.2823,0.748889,0.552108,0.989299,0.737604,0.82411,0.465665,0.624188,0.714637,0.679792,0.194544,0.854024,0.111193,0.630665,0.188168,0.127103,0.139107,0.513778,0.178671,0.495218,0.252227,0.0885307,0.7857,0.936014,0.742205,0.0379485,0.119055,0.170602,0.648162,0.653049,0.285181,0.662937,0.0324546,0.244163,0.907249,0.411421,0.256822,0.368323,0.178221,0.255323,0.761127,0.452123,0.0865353,0.522608,0.49326,0.50155,0.0280454,0.991703,0.288259,0.61837,0.443429,0.78128,0.676167,0.251139,0.903683,0.994103,0.948934,0.853268,0.431087,0.406807,0.66123,0.35952,0.230761,0.47757,0.460467,0.819525,0.651693,0.801692,0.903691,0.636862,0.575274,0.966815,0.617973,0.214695,0.213153,0.302673,0.161488,0.264884,0.707699,0.292683,0.762954,0.826249,0.224614,0.130593,0.390106,0.572107,0.890687,0.480905,0.705162,0.680088,0.788437,0.0447636,0.175798,0.260227,0.724078,0.947461,0.835995,0.866642,0.922282,0.245581,0.757326,0.689498,0.925798,0.952882,0.099045,0.251071,0.343389,0.359027,0.919585,0.760907,0.153377,0.921979,0.0563231,0.0912967,0.451811,0.422161,0.090767,0.41135,0.53007,0.765105,0.493816,0.111845,0.0127261,0.250056,0.43857,0.68598,0.126857,0.598776,0.300931,0.800114,0.766706,0.26538,0.27285,0.877662,0.832676,0.379062,0.208774,0.00801122,0.887821,0.293433,0.550273,0.354973,0.345752,0.363033,0.179758,0.378723,0.836979,0.053095,0.309507,0.738173,0.228379,0.764737,0.388363,0.26089,0.0131157,0.362722,0.406203,0.538484,0.75436,0.63374,0.783083,0.72534,0.818835,0.884918,0.626256,0.580072,0.601995,0.237847,0.14705,0.670884,0.781133,0.529804,0.932371,0.958703,0.776664,0.448366,0.680379,0.608332,0.527937,0.480709,0.0324184,0.632915,0.545608,0.301799,0.843421,0.360644,0.706694,0.0497743,0.807114,0.830228,0.274099,0.271814,0.0349226,0.0661716,0.154154,0.369334,0.107699,0.483273,0.394038,0.0667063,0.399538,0.357225,0.11723,0.994229,0.33852,0.239155,0.52068,0.341253,0.344689,0.487151,0.887153,0.409097,0.376517,0.939603,0.922766,0.956079,0.400047,0.217081,0.724262,0.722447,0.915671,0.272157,0.620883,0.10231,0.814989,0.228414,0.779781,0.776254,0.888955,0.667753,0.494525,0.950076,0.80096,0.866448,0.737946,0.485027,0.170361,0.262765,0.578378,0.642856,0.664122,0.834552,0.356014,0.203774,0.932526,0.066753,0.669926,0.364221,0.325845,0.354911,0.137582,0.573503,0.390975,0.820838,0.758993,0.445016,0.316257,0.233472,0.762667,0.458583,0.493075,0.194726,0.584611,0.915422,0.255367,0.589224,0.113334,0.384059,0.782221,0.134218,0.136201,0.548843,0.879726,0.990306,0.653295,0.950347,0.2386,0.763143,0.333099,0.154224,0.172424,0.507752,0.856818,0.886023,0.0160276,0.5606,0.67396,0.198008,0.921109,0.690298,0.83221,0.85966,0.528643,0.400593,0.692363,0.289247,0.812429,0.247061,0.995754,0.06315,0.696338,0.561819,0.703042,0.979374,0.466617,0.66573,0.357318,0.796128,0.580843,0.369375,0.984138,0.936524,0.767645,0.36127,0.0432126,0.59175,0.234953,0.471366,0.697146,0.883193,0.849892,0.0219817,0.25767,0.492915,0.0353299,0.138717,0.292644,0.34319,0.21892,0.245003,0.88162,0.287704,0.521835,0.385047,0.946583,0.830401,0.727534,0.466025,0.724925,0.511886,0.888708,0.856366,0.575681,0.460213,0.371728,0.654851,0.351935,0.782991,0.0698395,0.914563,0.473338,0.0907755,0.244057,0.345924,0.131218,0.939265,0.997651,0.301613,0.948647,0.156807,0.603419,0.816873,0.572894,0.658357,0.461634,0.192874,0.403154,0.766266,0.805481,0.626588,0.0086211,0.0518532,0.433887,0.728566,0.79817,0.755337,0.261418,0.423457,0.746596,0.393916,0.937576,0.399502,0.211102,0.563967,0.999403,0.39522,0.189907,0.64088,0.46105,0.374816,0.795579,0.608564,0.900644,0.950444,0.15331,0.281092,0.687582,0.648681,0.780058,0.0414735,0.951408,0.555194,0.600835,0.433144,0.815623,0.719398,0.527508,0.673723,0.757339,0.821046,0.978506,0.561589,0.891523,0.402113,0.893481,0.18186,0.94219,0.576081,0.533443,0.580781,0.44624,0.579063,0.960287,0.176799,0.878279,0.310198,0.285474,0.27134,0.212902,0.75217,0.252046,0.341833,0.313759,0.410905,0.945393,0.896312,0.0695449,0.599158,0.155671,0.586006,0.0974571,0.969669,0.61511,0.281646,0.22573,0.39743,0.216094,0.104111,0.210729,0.60061,0.723757,0.221633,0.0646647,0.706663,0.107272,0.0642516,0.893058,0.868873,0.452314,0.232563,0.434354,0.471377,0.0772837,0.803586,0.58573,0.550237,0.0678121,0.526799,0.640485,0.980379,0.755967,0.0916173,0.400098,0.885032,0.00365937,0.931162,0.581274,0.514176,0.005557,0.351663,0.590063,0.759374,0.113483,0.245649,0.581931,0.55922,0.858072,0.0218542,0.294041,0.430465,0.325646,0.0357615,0.88933,0.663842,0.247917,0.579754,0.70415,0.0781395,0.563709,0.166629,0.405976,0.567224,0.40761,0.626511,0.854804,0.283515,0.419107,0.391393,0.353841,0.0572952,0.601516,0.667389,0.193537,0.591287,0.989927,0.184412,0.503769,0.807131,0.658948,0.757368,0.812153,0.825492,0.54599,0.0310022,0.386778,0.712313,0.242187,0.999265,0.324515,0.620074,0.408624,0.66948,0.703698,0.22194,0.444898,0.769732,0.382526,0.12823,0.744772,0.167219,0.0820467,0.408031,0.959556,0.651113,0.225982,0.0609653,0.89854,0.722078,0.484374,0.94211,0.63351,0.538668,0.598122,0.378867,0.0155544,0.853576,0.672173,0.777352,0.282944,0.176529,0.522485,0.111468,0.71566,0.214709,0.399802,0.568752,0.301677,0.564638,0.133894,0.686054,0.305216,0.121492,0.133778,0.534703,0.769175,0.779979,0.231369,|0.346217,0.249872,0.301102,0.494281,0.312662,0.799302,0.895064,0.652987,0.0245401,0.63928,0.350959,0.0882183,0.888148,0.701144,0.236468,0.320392,0.740419,0.180871,0.19324,0.669642,0.636762,0.975986,0.0165524,0.571221,0.172943,0.735011,0.372954,0.657979,0.312582,0.751144,0.99037,0.207355,0.467044,0.473143,0.768352,0.584794,0.449804,0.920103,0.212679,0.417942,0.515007,0.803817,0.115048,0.194427,0.993088,0.698497,0.709163,0.807158,0.570551,0.539227,0.904724,0.162657,0.800779,0.0863007,0.561322,0.855439,0.755439,0.267306,0.288104,0.0878948,0.976741,0.20125,0.055725,0.149052,0.780623,0.437605,0.334861,0.91758,0.635491,0.521207,0.534107,0.0830439,0.429424,0.424498,0.221447,0.272079,0.279292,0.047244,0.93164,0.20375,0.831637,0.523179,0.35854,0.98009,0.791503,0.0244802,0.186345,0.432632,0.758138,0.11856,0.587986,0.233115,0.86954,0.771147,0.495146,0.698258,0.194429,0.598795,0.223358,0.613186,0.279282,0.983465,0.221826,0.0956841,0.301358,0.582112,0.3356,0.614276,0.8873,0.643965,0.657076,0.752904,0.6431,0.592683,0.752799,0.216846,0.840079,0.426974,0.235974,0.0696365,0.172046,0.285002,0.689004,0.0547206,0.07338,0.914883,0.105024,0.265579,0.430317,0.326653,0.492484,0.579761,0.515103,0.64497,0.676972,0.263609,0.952675,0.677965,0.0084976,0.266083,0.288945,0.37515,0.600103,0.88348,0.725653,0.693665,0.39979,0.288918,0.15213,0.829489,0.369134,0.530095,0.370236,0.802067,0.996832,0.54935,0.855151,0.0932617,0.0237753,0.634629,0.422477,0.40067,0.358798,0.364846,0.279285,0.199648,0.910536,0.0477742,0.286727,0.498523,0.184525,0.537414,0.841012,0.529359,0.28646,0.997063,0.772707,0.0406075,0.516462,0.146153,0.326343,0.138222,0.523342,0.121122,0.472181,0.150081,0.721822,0.452323,0.904741,0.380322,0.766096,0.999688,0.842905,0.534041,0.859542,0.939577,0.498194,0.169332,0.237172,0.688895,0.74443,0.361318,0.268055,0.289989,0.143459,0.313946,0.783703,0.468838,0.145561,0.0699198,0.661527,0.114973,0.53732,0.178735,0.855352,0.730857,0.799996,0.157373,0.0640972,0.157304,0.242372,0.801881,0.861096,0.196474,0.417756,0.536592,0.640354,0.0773373,0.892114,0.632845,0.118612,0.40236,0.4335,0.0622217,0.325271,0.864424,0.740672,0.298279,0.882061,0.410169,0.210109,0.546181,0.737207,0.97665,0.892275,0.139147,0.603682,0.939184,0.337591,0.622016,0.876093,0.77583,0.0016734,0.23604,0.550827,0.539298,0.3645,0.834044,0.75576,0.0547035,0.661101,0.617585,0.757027,0.677133,0.257894,0.957366,0.5627,0.921566,0.519279,0.313328,0.314812,0.034265,0.0745718,0.245115,0.689417,0.711841,0.725224,0.241924,0.00288224,0.140611,0.797129,0.850061,0.773631,0.328937,0.367435,0.919808,0.111951,0.191139,0.202156,0.887168,0.0506603,0.897503,0.635108,0.0959851,0.637937,0.830269,0.236942,0.706513,0.917872,0.624997,0.276038,0.807081,0.225043,0.15356,0.622667,0.1016,0.336032,0.481424,0.654145,0.213827,0.414122,0.774529,0.57793,0.400347,0.835714,0.689464,0.487118,0.737637,0.965682,0.648027,0.981728,0.499917,0.338076,0.322808,0.718219,0.977597,0.904307,0.18549,0.834824,0.902745,0.0852352,0.40276,0.359406,0.040363,0.397468,0.822526,0.245408,0.0634511,0.680225,0.336979,0.426448,0.198898,0.221533,0.892182,0.837121,0.643605,0.974092,0.71973,0.0697812,0.122311,0.365808,0.135766,0.649227,0.569319,0.949538,0.917364,0.359057,0.42699,0.752715,0.75028,0.454094,0.961386,0.922644,0.534691,0.220663,0.150133,0.196458,0.794026,0.244736,0.843097,0.907345,0.285097,0.150378,0.608001,0.991019,0.39014,0.14329,0.474354,0.266686,0.612505,0.505279,0.88852,0.284219,0.340487,0.867482,0.322738,0.891488,0.337329,0.476375,0.547913,0.860926,0.12363,0.193875,0.816649,0.980441,0.0546738,0.735639,0.676344,0.786571,0.164558,0.99494,0.773292,0.242536,0.738858,0.00638193,0.467049,0.90528,0.854079,0.872519,0.505663,0.338289,0.901077,0.97897,0.313582,0.187308,0.371731,0.327408,0.89794,0.238908,0.094494,0.71387,0.316039,0.280121,0.143434,0.704975,0.867378,0.0413452,0.351893,0.975877,0.123556,0.665849,0.422221,0.108864,0.115892,0.181707,0.450571,0.873044,0.91769,0.251937,0.778919,0.416838,0.798909,0.0751228,0.50513,0.00275785,0.125906,0.871912,0.782809,0.833757,0.220965,0.615804,0.274538,0.189275,0.279914,0.864352,0.25725,0.593198,0.737351,0.975649,0.354561,0.803107,0.337763,0.969583,0.221424,0.422859,0.19282,0.764442,0.211908,0.305548,0.737461,0.86396,0.331915,0.255494,0.790149,0.30894,0.41872,0.357087,0.420924,0.746617,0.139895,0.285728,0.986193,0.312606,0.5239,0.898395,0.648865,0.0229573,0.62428,0.663597,0.718143,0.658211,0.00761646,0.484462,0.505315,0.599548,0.694382,0.128654,0.751483,0.73286,0.420308,0.0982333,0.693162,0.747703,0.04474,0.058179,0.114571,0.293867,0.658941,0.288102,0.374908,0.72784,0.636372,0.819905,0.425028,0.774413,0.367951,0.776936,0.560552,0.897136,0.669278,0.378745,0.63086,0.374615,0.509318,0.608277,0.268021,0.795398,0.223275,0.592305,0.855139,0.636497,0.479734,0.152947,0.396903,0.742145,0.450282,0.438164,0.0599448,0.454198,0.784159,0.500452,0.477409,0.410906,0.269288,0.0123393,0.0211449,0.788611,0.881727,0.909268,0.933575,0.0587807,0.35079,0.241409,0.38975,0.418217,0.46342,0.710072,0.69819,0.928151,0.464219,0.464487,0.191168,0.867264,0.108701,0.538192,0.128181,0.261752,0.87807,0.489477,0.727287,0.192331,0.948162,0.274281,0.3799,0.450191,0.0754662,0.657213,0.00516629,0.767568,0.34244,0.903304,0.843212,0.402449,0.518482,0.123399,0.0859019,0.27098,0.46507,0.549724,0.189894,0.347594,0.45073,0.27846,0.827995,0.385489,0.0646369,0.532861,0.818827,0.190999,0.0665464,0.709858,0.861021,0.089457,0.723383,0.432581,0.446528,0.0450665,0.0407293,0.736331,0.487673,0.512418,0.658783,0.88701,0.602078,0.768129,0.639228,0.845256,0.642755,0.703905,0.709829,0.589878,0.173935,0.493572,0.122743,0.466397,0.632565,0.70077,0.935538,0.186419,0.0805212,0.778534,0.25618,0.924006,0.403761,0.911515,0.755277,0.978009,0.300417,0.510575,0.324166,0.663175,0.864588,0.074825,0.108502,0.97543,0.223586,0.955105,0.0438759,0.367369,0.555426,0.948673,0.132669,0.43193,0.863238,0.906378,0.309693,0.813465,0.424531,0.908674,0.49998,0.206873,0.247807,0.455043,0.532021,0.140892,0.231117,0.751662,0.981274,0.064886,0.0974022,0.494379,0.0327697,0.846001,0.605268,0.478716,0.75201,0.518877,0.346244,0.792509,0.207621,0.784311,0.564389,0.630648,0.563437,0.750715,0.450545,0.775299,0.563013,0.578861,0.780519,0.956028,0.593167,0.918947,0.853323,0.675959,0.270729,0.96912,0.952824,0.256418,0.209344,0.417289,0.825091,0.0337067,0.585241,0.119773,0.529137,0.0901408,0.0591873,0.903,0.312005,0.911103,0.576617,0.780758,0.892228,0.940975,0.70643,0.0349171,0.0269634,0.487597,0.744399,0.761241,0.666903,0.888949,0.277243,0.0385084,0.532223,0.711682,0.0679865,0.185297,0.136641,0.627156,0.79025,0.0769219,0.0926045,0.533449,0.0660204,0.979896,0.719476,0.624529,0.0082162,0.68914,0.654276,0.184693,0.7603,0.675776,0.576167,0.662387,0.861929,0.322989,0.532689,0.315283,0.07361,0.677763,0.404814,0.445387,0.616137,0.569558,0.839035,0.601677,0.373008,0.022181,0.460131,0.981002,0.904994,0.0427629,0.887767,0.896485,0.493738,0.892395,0.22758,0.837575,0.059157,0.570203,0.655301,0.192787,0.811342,0.0334508,0.626367,0.99804,0.252047,0.756206,0.268033,0.146729,0.424801,0.921197,0.30963,0.20522,0.647114,0.334362,0.383539,0.737947,0.756023,0.378573,0.549738,0.242057,0.0527578,0.735635,0.656544,0.974958,0.0363188,0.695952,0.449847,0.71644,0.611993,0.127262,0.659245,0.281284,0.852417,0.0807559,0.461945,0.0938461,0.200938,0.222186,0.617018,0.228725,0.0965873,0.912674,0.98392,0.599883,0.805616,0.922928,0.59715,0.136886,0.425731,0.400974,0.594017,0.190036,0.746363,0.871493,0.223041,0.429971,0.384835,0.493653,0.0859579,0.839331,0.958515,0.68445,0.807553,0.815934,0.151273,0.309851,0.603918,0.884467,0.413217,0.345882,0.521384,0.261318,0.276665,0.468601,0.232766,0.0380363,0.529777,0.77373,0.156004,0.442779,0.353763,0.179847,0.84129,0.983646,0.206499,0.509008,0.611897,0.353276,0.18336,0.80123,0.517036,0.0272595,0.0299382,0.241906,0.957671,0.408846,0.194737,0.483448,0.625993,0.675599,0.726068,0.595371,0.912181,0.00953001,0.244752,0.122467,0.0464078,0.379616,0.89876,0.955353,0.991984,0.134636,0.830999,0.778264,0.139035,0.640349,0.207366,0.723354,0.321045,0.908609,0.587643,0.0634688,0.950417,0.211078,0.178036,0.32095,0.4578,0.0919417,0.45665,0.846548,0.31106,0.0337018,0.133401,0.124738,0.850589,0.907111,0.943025,0.218475,0.987437,0.927374,0.0942894,0.29921,0.602732,0.492929,0.753843,0.0369549,0.249202,0.921987,0.64924,0.975138,0.111084,0.579398,0.784059,0.46917,0.57073,0.843846,0.922687,0.68386,0.854871,0.669881,0.191782,0.77514,0.559076,0.22607,0.678942,0.416834,0.703703,0.487519,0.156147,0.90742,0.667842,0.935896,0.518553,0.864516,0.407796,0.399419,0.870151,0.472398,0.250221,0.206897,0.556014,0.0769899,0.569201,0.10883,0.0543221,0.66167,0.960766,0.695732,0.134839,0.615835,0.30874,0.213983,0.690637,0.0693901,0.159887,0.723437,0.573096,0.678601,0.707991,0.313574,0.349564,0.669242,0.575563,0.627449,0.650205,0.984512,0.319158,0.188621,0.626865,0.859212,0.370612,0.356154,0.37975,0.281188,0.58573,0.766845,0.499519,0.443142,0.0581425,0.675516,0.408168,0.16616,0.346087,0.533024,0.401213,|0.177586,0.904271,0.616072,0.429829,0.441974,0.536991,0.872918,0.891573,0.232717,0.624063,0.573375,0.39655,0.768877,0.962667,0.072833,0.57823,0.388193,0.666843,0.333113,0.0741384,0.0816261,0.593864,0.820245,0.417719,0.974236,0.860983,0.286835,0.651946,0.793168,0.818861,0.977154,0.972697,0.216749,0.533072,0.420319,0.43177,0.443156,0.320446,0.962427,0.292734,0.726297,0.468072,0.57233,0.772008,0.103616,0.553326,0.677728,0.969914,0.497619,0.751683,0.402533,0.40048,0.688414,0.283197,0.735281,0.659129,0.373777,0.424522,0.42026,0.300232,0.0324029,0.732609,0.0706418,0.246723,0.22697,0.217185,0.532408,0.0481544,0.729477,0.107651,0.745933,0.747226,0.224976,0.0772842,0.290992,0.942056,0.649348,0.393632,0.0803856,0.856713,0.738117,0.118331,0.374645,0.254317,0.189433,0.646583,0.780643,0.986573,0.627446,0.858695,0.519125,0.917182,0.429983,0.202193,0.781538,0.16675,0.0221934,0.586162,0.507854,0.171267,0.0221577,0.16032,0.28634,0.264521,0.281949,0.981507,0.695683,0.253964,0.602653,0.624165,0.19761,0.385765,0.662934,0.472862,0.790363,0.271142,0.229047,0.563741,0.728074,0.126798,0.869812,0.849674,0.50307,0.339019,0.769323,0.105858,0.149551,0.00207567,0.944439,0.26989,0.664055,0.988395,0.157126,0.0882214,0.678676,0.39232,0.63352,0.933621,0.644298,0.578159,0.0836184,0.103645,0.250184,0.663542,0.543543,0.677697,0.700736,0.605736,0.835436,0.191079,0.471533,0.0529127,0.324537,0.170977,0.265074,0.0544208,0.118167,0.806594,0.708586,0.607656,0.686339,0.299078,0.514872,0.491814,0.332661,0.302926,0.499514,0.383683,0.605449,0.471562,0.27001,0.13268,0.493191,0.140334,0.311964,0.63602,0.149473,0.214224,0.47197,0.371969,0.380359,0.76997,0.376141,0.00607812,0.0939102,0.264151,0.000449121,0.631807,0.584214,0.670374,0.805508,0.548243,0.467754,0.753768,0.137445,0.977225,0.642023,0.108615,0.998207,0.741543,0.589926,0.155606,0.7496,0.167599,0.264934,0.621627,0.643409,0.779898,0.329081,0.443169,0.354227,0.369317,0.70554,0.450892,0.702873,0.619059,0.234068,0.260304,0.787104,0.938383,0.434958,0.606936,0.133545,0.283199,0.209407,0.467473,0.731066,0.575867,0.783483,0.423183,0.732216,0.0521318,0.35935,0.393147,0.739721,0.0250497,0.0446401,0.195919,0.809606,0.150137,0.940344,0.754088,0.946172,0.843953,0.606767,0.0718737,0.158757,0.686353,0.247546,0.724969,0.479356,0.510501,0.595813,0.767131,0.647871,0.248191,0.265228,0.45193,0.196341,0.904953,0.544589,0.00292724,0.504406,0.186274,0.130719,0.470734,0.135515,0.415077,0.840461,0.540747,0.568298,0.00660634,0.455801,0.368597,0.786652,0.57658,0.370095,0.761146,0.888352,0.74576,0.275468,0.457517,0.735861,0.998807,0.588169,0.308048,0.180289,0.748513,0.967098,0.131554,0.0459458,0.684471,0.591,0.704127,0.081554,0.288339,0.360583,0.653173,0.0324451,0.39438,0.110241,0.960501,0.576434,0.300474,0.210792,0.0657374,0.693047,0.302274,0.666494,0.468683,0.883753,0.447875,0.734508,0.211442,0.794058,0.253142,0.180152,0.566629,0.901455,0.391223,0.0455564,0.344981,0.497834,0.567146,0.462951,0.701219,0.476353,0.951329,0.618631,0.452856,0.672163,0.576254,0.521982,0.522347,0.571398,0.756049,0.140137,0.266153,0.798595,0.316459,0.13923,0.401724,0.511534,0.174482,0.403642,0.114584,0.0269743,0.887034,0.341642,0.771898,0.574224,0.798985,0.094611,0.834743,0.20804,0.617986,0.353553,0.739526,0.965405,0.71619,0.625748,0.761575,0.490446,0.609731,0.99954,0.31923,0.786476,0.277545,0.884637,0.364693,0.523081,0.542008,0.830024,0.159795,0.0529171,0.723109,0.559072,0.0705138,0.547979,0.989408,0.177717,0.577459,0.256853,0.253141,0.352642,0.126164,0.387511,0.712195,0.243231,0.633864,0.356439,0.0210844,0.407446,0.953951,0.81898,0.129838,0.379782,0.164846,0.547278,0.222086,0.742235,0.111374,0.936505,0.200255,0.652313,0.932185,0.392106,0.668277,0.710085,0.582498,0.517713,0.737985,0.464536,0.206981,0.26128,0.991526,0.245003,0.363167,0.378877,0.345852,0.453493,0.0430869,0.823164,0.293554,0.579426,0.392812,0.570726,0.655833,0.956188,0.934465,0.203912,0.983891,0.296867,0.649284,0.499071,0.185662,0.165733,0.0113973,0.595021,0.288564,0.829099,0.585834,0.328709,0.96942,0.296555,0.730483,0.570409,0.433201,0.561481,0.205951,0.0416229,0.0147554,0.783649,0.0990568,0.83683,0.386513,0.600406,0.190383,0.0558019,0.288588,0.670806,0.37784,0.0572338,0.40758,0.556448,0.799041,0.0325125,0.452978,0.12283,0.645773,0.186651,0.218661,0.228026,0.104203,0.902052,0.486057,0.354377,0.142822,0.955619,0.0638972,0.929479,0.715803,0.453295,0.319556,0.379382,0.661093,0.333711,0.260277,0.276565,0.602757,0.416175,0.60426,0.805205,0.213774,0.944902,0.951014,0.161992,0.00723177,0.573787,0.139038,0.124127,0.917051,0.875954,0.0946452,0.779724,0.410662,0.189879,0.0805292,0.778719,0.183176,0.606434,0.930543,0.223042,0.0620592,0.603523,0.983591,0.57772,0.00448078,0.580367,0.30204,0.680981,0.984601,0.624977,0.367603,0.417361,0.157207,0.0700544,0.20155,0.288132,0.424369,0.902356,0.0722563,0.197581,0.641993,0.53343,0.736311,0.38715,0.578436,0.139727,0.69688,0.392894,0.92887,0.00432813,0.751115,0.837915,0.384465,0.42713,0.324715,0.592212,0.545969,0.672234,0.581613,0.722459,0.8578,0.552815,0.438389,0.588598,0.353353,0.527095,0.767532,0.812853,0.256149,0.282632,0.775425,0.20484,0.592079,0.864744,0.110415,0.956356,0.751053,0.761101,0.298667,0.519854,0.970721,0.622971,0.976972,0.373047,0.181222,0.359248,0.497174,0.639026,0.364094,0.260493,0.957505,0.82951,0.773468,0.2031,0.209711,0.923315,0.508029,0.378,0.227556,0.247868,0.174213,0.0515919,0.687802,0.600071,0.178697,0.0191616,0.398709,0.851132,0.63803,0.780381,0.687572,0.0158374,0.856037,0.435048,0.145001,0.792148,0.896239,0.817741,0.908605,0.867416,0.37721,0.937508,0.164854,0.555967,0.61039,0.91121,0.418838,0.873664,0.942116,0.581825,0.539291,0.944306,0.861089,0.00915402,0.895939,0.517911,0.294606,0.471135,0.512562,0.617317,0.246595,0.207959,0.053129,0.833035,0.792056,0.235294,0.108102,0.86792,0.684557,0.451329,0.813885,0.623547,0.373285,0.506927,0.57261,0.976986,0.303184,0.445656,0.671878,0.448596,0.649017,0.836957,0.341732,0.84862,0.446619,0.458196,0.713768,0.957246,0.674104,0.981408,0.461608,0.790217,0.206506,0.58174,0.340391,0.0339515,0.0935256,0.850773,0.431087,0.765948,0.973523,0.728983,0.761875,0.761842,0.818653,0.591717,0.28091,0.683332,0.638628,0.908475,0.148671,0.77256,0.0268098,0.169676,0.456638,0.792693,0.656364,0.103516,0.337265,0.292418,0.0268404,0.524563,0.462067,0.197329,0.939183,0.327381,0.418251,0.731211,0.781305,0.738135,0.111077,0.883602,0.211223,0.390452,0.388848,0.812293,0.524305,0.526699,0.58851,0.144474,0.486479,0.337529,0.950472,0.86764,0.561427,0.0468611,0.227025,0.38262,0.256541,0.385844,0.958952,0.654707,0.32923,0.302327,0.998046,0.997715,0.864284,0.22583,0.217394,0.760791,0.555792,0.51802,0.583233,0.989873,0.572769,0.489663,0.154905,0.35854,0.191013,0.505655,0.426165,0.666856,0.15641,0.865523,0.553306,0.0513191,0.573953,0.605897,0.274813,0.153574,0.437727,0.41204,0.343294,0.726439,0.187081,0.254353,0.178971,0.117422,0.153859,0.487455,0.350971,0.928335,0.619249,0.683149,0.801298,0.200802,0.207133,0.395949,0.108841,0.0327442,0.630924,0.834947,0.752088,0.336468,0.730958,0.885315,0.493497,0.252207,0.893771,0.317569,0.569467,0.650174,0.0556527,0.385249,0.260934,0.0616927,0.210007,0.0313346,0.205407,0.611429,0.699906,0.495686,0.390339,0.585896,0.0280749,0.213347,0.738419,0.43492,0.153353,0.954514,0.75453,0.735694,0.928584,0.438581,0.614061,0.202762,0.279783,0.962166,0.719081,0.613847,0.73316,0.981891,0.803205,0.533464,0.0944422,0.538926,0.931951,0.130697,0.369825,0.669489,0.793987,0.883928,0.740772,0.254999,0.681406,0.655337,0.964266,0.234069,0.96416,0.245286,0.0100511,0.154118,0.204713,0.026315,0.517989,0.970803,0.469478,0.21687,0.334514,0.441757,0.0670516,0.961096,0.876705,0.538588,0.180458,0.795478,0.968888,0.416057,0.122953,0.125228,0.00464338,0.306979,0.480702,0.0946612,0.522733,0.864903,0.217172,0.723168,0.677443,0.493082,0.575745,0.493342,0.967159,0.795012,0.48895,0.266932,0.852791,0.648175,0.154608,0.94716,0.805843,0.266382,0.876315,0.247866,0.830216,0.713,0.94623,0.050869,0.562411,0.695676,0.470182,0.45067,0.763112,0.53662,0.787219,0.662874,0.434266,0.894979,0.70239,0.746873,0.252543,0.691462,0.420818,0.832407,0.326937,0.826427,0.490478,0.485462,0.0486211,0.728897,0.293054,0.773136,0.896833,0.509502,0.25113,0.929115,0.178858,0.570581,0.74632,0.693899,0.853307,0.738149,0.0422963,0.166263,0.680742,0.516722,0.907623,0.370616,0.788749,0.2181,0.587573,0.157027,0.538,0.752977,0.165364,0.282062,0.635847,0.680888,0.82461,0.0990332,0.409081,0.591192,0.204494,0.61901,0.737057,0.690448,0.273712,0.506088,0.218359,0.230265,0.4203,0.281463,0.094057,0.877288,0.523561,0.939791,0.457124,0.359578,0.358578,0.514713,0.363114,0.10067,0.736051,0.386478,0.495472,0.98885,0.877224,0.477396,0.922103,0.165572,0.994363,0.38401,0.331525,0.949767,0.221425,0.813479,0.15914,0.638279,0.380007,0.394777,0.255085,0.183818,0.463482,0.053438,0.687086,0.47783,0.233336,0.754407,0.753019,0.196299,0.302438,0.732882,0.540879,0.583757,0.328061,0.628763,0.337292,0.426211,0.698332,0.380444,0.129148,0.069241,0.402762,0.870702,0.655625,0.531581,0.0626893,|0.779019,0.34156,0.762852,0.620914,0.316903,0.952048,0.0162302,0.360552,0.00992256,0.348104,0.8485,0.168778,0.667998,0.177216,0.455148,0.24041,0.349419,0.131119,0.966367,0.794375,0.781493,0.315215,0.211941,0.242915,0.139926,0.463689,0.173908,0.413302,0.516508,0.40575,0.186602,0.723539,0.68396,0.452982,0.795645,0.688562,0.294577,0.629482,0.517112,0.26323,0.28019,0.748636,0.441669,0.797886,0.94839,0.00130653,0.0972292,0.217011,0.396305,0.591656,0.852877,0.0743052,0.375543,0.128781,0.764533,0.62457,0.35958,0.708698,0.803687,0.247975,0.94324,0.407669,0.588244,0.0700665,0.0583612,0.96321,0.736507,0.162576,0.52937,0.755732,0.29535,0.690195,0.179909,0.568732,0.275564,0.595835,0.510356,0.416988,0.0448151,0.159993,0.916882,0.921455,0.495644,0.301896,0.829353,0.518761,0.775168,0.222156,0.211506,0.545183,0.731254,0.622563,0.53656,0.579699,0.600019,0.050215,0.387522,0.208125,0.060917,0.131695,0.55813,0.598862,0.527429,0.572446,0.725963,0.105181,0.669346,0.150554,0.709187,0.282239,0.845492,0.18623,0.411297,0.70225,0.606249,0.328,0.899401,0.897943,0.15714,0.931684,0.72492,0.859974,0.847591,0.48644,0.0759958,0.474597,0.634406,0.377143,0.254229,0.906777,0.496702,0.159452,0.830171,0.191952,0.125529,0.277243,0.406945,0.0946171,0.63191,0.575609,0.0594216,0.793487,0.495293,0.718563,0.383471,0.308542,0.0767331,0.542944,0.273347,0.198996,0.9001,0.0373858,0.922359,0.202528,0.945811,0.256583,0.442364,0.861424,0.112067,0.948799,0.776738,0.318479,0.090264,0.941719,0.171471,0.638857,0.743249,0.205814,0.016396,0.79649,0.795827,0.166669,0.101927,0.783493,0.40058,0.938844,0.259265,0.753311,0.237788,0.323593,0.521635,0.736856,0.440465,0.00528222,0.136614,0.92293,0.932999,0.784184,0.110492,0.362451,0.921143,0.147571,0.455618,0.981113,0.151832,0.263551,0.696831,0.653906,0.0289423,0.307323,0.149762,0.338293,0.0407034,0.971736,0.161531,0.366894,0.783833,0.0582379,0.950579,0.45404,0.408442,0.678387,0.874158,0.962582,0.765972,0.413083,0.714831,0.611047,0.113451,0.225891,0.604553,0.670033,0.221333,0.616818,0.19675,0.0940855,0.0552389,0.111784,0.114046,0.9417,0.978723,0.0469278,0.452293,0.244988,0.778842,0.0141998,0.121977,0.35892,0.912685,0.25795,0.80229,0.148368,0.063958,0.564278,0.0632262,0.719076,0.819083,0.724898,0.185601,0.106506,0.806971,0.424009,0.581543,0.784669,0.465332,0.043551,0.893798,0.796539,0.603555,0.021194,0.194687,0.203647,0.759311,0.0184531,0.714523,0.300637,0.143542,0.504756,0.0826974,0.345287,0.45594,0.464134,0.199457,0.842134,0.45131,0.608855,0.496571,0.319956,0.170204,0.0786583,0.335793,0.229748,0.699608,0.730204,0.516498,0.138559,0.751206,0.34866,0.229635,0.579818,0.0431672,0.421284,0.439763,0.726398,0.0204576,0.660344,0.708632,0.603208,0.520938,0.926555,0.0124195,0.115336,0.691977,0.832226,0.0494295,0.711543,0.0964612,0.699195,0.291346,0.261716,0.966002,0.592834,0.374953,0.391384,0.642671,0.259497,0.792248,0.234774,0.127867,0.143652,0.305643,0.146362,0.829705,0.896086,0.0130265,0.192762,0.109211,0.390415,0.865826,0.845434,0.611197,0.565234,0.881511,0.108164,0.111594,0.136931,0.335472,0.827468,0.909666,0.212655,0.753151,0.807799,0.445224,0.277976,0.158063,0.600809,0.0175463,0.248345,0.611268,0.347769,0.680117,6.77705e-05,0.973122,0.086392,0.606459,0.487386,0.844389,0.172428,0.999792,0.226445,0.698342,0.833264,0.0398687,0.629345,0.226989,0.987475,0.986449,0.485765,0.339082,0.0760597,0.178556,0.0150604,0.417672,0.85198,0.343026,0.0317255,0.833223,0.440073,0.786412,0.0324205,0.765693,0.835953,0.964183,0.793956,0.840941,0.338648,0.365276,0.536578,0.879654,0.195952,0.351215,0.0521055,0.838712,0.726939,0.404103,0.586437,0.264804,0.0149572,0.280337,0.0595371,0.369629,0.675358,0.373029,0.701478,0.937687,0.268402,0.432722,0.50686,0.04252,0.147062,0.463317,0.369575,0.720036,0.00866115,0.15701,0.908984,0.288537,0.270008,0.217233,0.779398,0.573114,0.936797,0.330339,0.471191,0.041023,0.415719,0.181323,0.278007,0.493083,0.417376,0.486331,0.05575,0.605046,0.125541,0.605114,0.483981,0.304226,0.824871,0.738737,0.851958,0.5383,0.159113,0.274183,0.52628,0.466679,0.340501,0.288076,0.705752,0.752114,0.022333,0.108065,0.859864,0.856618,0.945725,0.98749,0.916726,0.662064,0.129798,0.134923,0.684762,0.156054,0.993204,0.922744,0.0771796,0.108264,0.591774,0.56192,0.222535,0.493828,0.154703,0.563845,0.0331962,0.331054,0.490892,0.0476577,0.0346577,0.946748,0.137176,0.514754,0.631771,0.711756,0.148457,0.56189,0.393373,0.386704,0.376574,0.564165,0.605477,0.409308,0.283285,0.676079,0.0261958,0.0548346,0.423934,0.799166,0.110286,0.947608,0.0705142,0.259925,0.406969,0.385259,0.46911,0.211891,0.930438,0.998936,0.131988,0.144779,0.0307678,0.843548,0.36475,0.430955,0.0390424,0.839988,0.872121,0.913818,0.228511,0.319983,0.252255,0.246439,0.604183,0.200077,0.0821925,0.0724202,0.408129,0.183074,0.810135,0.15678,0.333173,0.536151,0.782752,0.687001,0.735263,0.549466,0.348457,0.0462458,0.992088,0.114936,0.280133,0.405344,0.499642,0.257251,0.0652275,0.816178,0.0967573,0.989275,0.231495,0.27886,0.582784,0.234572,0.254991,0.608786,0.701765,0.340156,0.545356,0.914329,0.30125,0.877439,0.0526653,0.874047,0.704022,0.510296,0.449201,0.977596,0.54625,0.779239,0.640417,0.96037,0.55764,0.168535,0.43562,0.360049,0.0103764,0.27812,0.254753,0.525968,0.226152,0.582355,0.867684,0.968429,0.167592,0.877747,0.126145,0.766338,0.599629,0.28664,0.886687,0.0238452,0.290658,0.738253,0.435905,0.928557,0.572246,0.568103,0.118548,0.851828,0.662005,0.0213756,0.311869,0.209053,0.636008,0.955053,0.772576,0.942523,0.920216,0.859879,0.138346,0.647749,0.384343,0.184564,0.738431,0.0640462,0.938303,0.412915,0.594368,0.0445595,0.12922,0.780855,0.0910258,0.18685,0.55181,0.130018,0.418544,0.349666,0.377252,0.409207,0.731394,0.826193,0.604898,0.958118,0.842301,0.871937,0.563271,0.141363,0.564878,0.879796,0.609621,0.928014,0.300773,0.751411,0.443345,0.145024,0.55478,0.0987653,0.437249,0.394326,0.231853,0.357018,0.41607,0.243723,0.725034,0.527966,0.671981,0.62655,0.410125,0.622937,0.639582,0.671123,0.705267,0.413523,0.279815,0.896284,0.752604,0.564996,0.715941,0.264059,0.580247,0.733488,0.20266,0.306468,0.875697,0.412867,0.927918,0.781727,0.534587,0.676711,0.442511,0.319118,0.45006,0.770116,0.857797,0.106858,0.0850493,0.597369,0.550586,0.896751,0.856885,0.536433,0.636258,0.737578,0.571164,0.770914,0.693096,0.0346076,0.525837,0.484058,0.944354,0.223624,0.361491,0.849636,0.411984,0.9952,0.855802,0.592021,0.70265,0.463801,0.624658,0.59756,0.553253,0.492855,0.754195,0.197626,0.543191,0.465991,0.817358,0.462905,0.754813,0.219532,0.210261,0.558209,0.528809,0.884713,0.00473928,0.475717,0.0551565,0.540286,0.412978,0.362564,0.462925,0.706591,0.416222,0.742662,0.3852,0.0325187,0.406405,0.213963,0.692098,0.200572,0.915268,0.807382,0.491561,0.591961,0.81004,0.412194,0.0512092,0.511295,0.498526,0.372976,0.462778,0.179282,0.609015,0.222832,0.538016,0.51943,0.570339,0.201081,0.65568,0.118098,0.747919,0.166416,0.448125,0.712204,0.743947,0.678253,0.91869,0.411625,0.566898,0.135502,0.558042,0.0420841,0.198508,0.856956,0.489382,0.727896,0.5673,0.0999647,0.597563,0.978086,0.273007,0.291197,0.477798,0.28694,0.621807,0.573214,0.699439,0.307955,0.559166,0.943846,0.310135,0.683434,0.629234,0.0393981,0.816647,0.235412,0.0754427,0.370067,0.7977,0.434963,0.670888,0.988901,0.582924,0.784028,0.650801,0.035454,0.914033,0.286423,0.226712,0.600291,0.254172,0.26778,0.0799099,0.676759,0.341886,0.834801,0.797673,0.178705,0.0811816,0.436761,0.0665349,0.318978,0.501622,0.716777,0.107259,0.930807,0.829261,0.382499,0.891965,0.865007,0.138027,0.593996,0.970552,0.0187909,0.547739,0.959888,0.610784,0.895901,0.0517181,0.0750754,0.160448,0.397249,0.0464974,0.634436,0.170204,0.331197,0.700583,0.576964,0.0295954,0.979124,0.560801,0.557376,0.302096,0.199399,0.209614,0.0672123,0.544205,0.125166,0.76852,0.976625,0.0189959,0.0720331,0.0956852,0.132104,0.769443,0.214609,0.721889,0.0569237,0.508057,0.921916,0.668459,0.171071,0.683153,0.527634,0.342864,0.711821,0.00648993,0.399489,0.695745,0.970265,0.389516,0.400257,0.493065,0.492627,0.342985,0.749108,0.398533,0.261148,0.632872,0.580104,0.569009,0.679726,0.160858,0.977665,0.438495,0.349014,0.462994,0.948252,0.117058,0.474074,0.862899,0.121463,0.662788,0.312402,0.847773,0.266965,0.724511,0.689845,0.893054,0.969828,0.224285,0.255215,0.512672,0.238674,0.712509,0.522632,0.512061,0.206755,0.474666,0.816073,0.203886,0.621761,0.0681289,0.393111,0.026623,0.427734,0.607443,0.916331,0.418622,0.31148,0.259622,0.331191,0.047338,0.873025,0.51273,0.276583,0.412359,0.265802,0.98864,0.761312,0.0632845,0.716749,0.630268,0.183312,0.812851,0.835097,0.720721,0.40844,0.52967,0.549447,0.921953,0.770958,0.347928,0.938045,0.355444,0.85344,0.866158,0.846786,0.451518,0.0932787,0.559062,0.0102404,0.0409595,0.0171995,0.331138,0.796724,0.743999,0.945363,0.867541,0.192274,0.942792,0.69869,0.274062,0.0510162,0.382004,0.147208,0.430927,0.863597,0.64191,0.97007,0.130215,0.357361,0.259364,0.544297,0.910667,0.979649,0.545918,0.356762,0.291708,0.409027,0.320373,0.149835,0.608822,0.609188,0.840723,0.00472176,0.53133,0.896589,0.0720626,0.684542,0.862346,0.0391058,0.944662,|0.371226,0.318448,0.386394,0.804815,0.0484784,0.0607046,0.390003,0.632647,0.650488,0.585686,0.896959,0.885344,0.242794,0.202435,0.825789,0.258076,0.764372,0.355817,0.662548,0.75619,0.0843458,0.972787,0.0387417,0.852529,0.630677,0.51573,0.596855,0.0793125,0.00478762,0.283389,0.991966,0.0437065,0.584321,0.290639,0.986346,0.746038,0.721991,0.0190061,0.903138,0.134147,0.654915,0.499658,0.0675374,0.150356,0.980542,0.957216,0.752473,0.38583,0.437405,0.534837,0.690241,0.857022,0.434363,0.60997,0.792832,0.0487174,0.228157,0.349212,0.678816,0.301773,0.423606,0.240648,0.075414,0.522071,0.114375,0.354551,0.206106,0.725574,0.473665,0.627567,0.43252,0.942442,0.470682,0.411008,0.659734,0.739323,0.869502,0.666338,0.830645,0.637155,0.0962244,0.907778,0.996121,0.681078,0.113015,0.864491,0.417893,0.405021,0.620535,0.271144,0.224654,0.781792,0.292108,0.031265,0.341661,0.524165,0.295014,0.193132,0.0390937,0.847891,0.328638,0.488072,0.256989,0.605255,0.0524668,0.902802,0.504512,0.795199,0.595122,0.831665,0.229471,0.709574,0.504279,0.478653,0.917631,0.174108,0.966538,0.377709,0.597199,0.0917668,0.258868,0.640666,0.330608,0.449751,0.527986,0.863384,0.550817,0.696203,0.501883,0.537694,0.323885,0.171307,0.382395,0.916036,0.270542,0.417578,0.0751446,0.0783644,0.329192,0.822959,0.989825,0.732464,0.41934,0.557142,0.975432,0.744641,0.746489,0.335054,0.579448,0.587589,0.551485,0.858541,0.730925,0.698317,0.826797,0.28489,0.355678,0.500696,0.00189149,0.194555,0.621439,0.998508,0.627537,0.969276,0.679495,0.171798,0.703524,0.700331,0.488575,0.808026,0.922072,0.746786,0.919617,0.854174,0.213595,0.218214,0.100101,0.158611,0.310794,0.879246,0.0449129,0.0341573,0.570237,0.426179,0.61731,0.450369,0.260466,0.0496454,0.199951,0.519334,0.493155,0.138771,0.521831,0.219597,0.67951,0.427938,0.667448,0.576868,0.407957,0.246422,0.860821,0.262974,0.647712,0.994219,0.829435,0.131933,0.120941,0.371218,0.670155,0.072721,0.131449,0.134707,0.233186,0.322776,0.660906,0.888915,0.479316,0.921046,0.695487,0.99309,0.934748,0.727162,0.0914983,0.816215,0.560027,0.615547,0.416037,0.876106,0.732262,0.569296,0.805906,0.154627,0.0510407,0.224381,0.0322285,0.071308,0.522816,0.507479,0.745147,0.890011,0.0306913,0.079729,0.544376,0.888402,0.474134,0.443628,0.794459,0.415703,0.526222,0.600837,0.453554,0.321586,0.447873,0.0606961,0.755181,0.711389,0.120715,0.787737,0.0466214,0.584356,0.59303,0.0996593,0.170459,0.364073,0.288833,0.656601,0.545974,0.116607,0.808153,0.048456,0.113677,0.598245,0.70277,0.875854,0.544611,0.721939,0.473617,0.668334,0.0833376,0.617425,0.976618,0.764569,0.95561,0.665911,0.810006,0.051755,0.368225,0.576759,0.651228,0.255404,0.670122,0.182173,0.445136,0.795001,0.0824535,0.560759,0.197931,0.410672,0.787139,0.885602,0.647828,0.756374,0.0612098,0.936705,0.366114,0.0973176,0.597899,0.458066,0.282808,0.187659,0.308194,0.827638,0.0386485,0.794337,0.440143,0.790703,0.513675,0.00321186,0.0847343,0.173812,0.3083,0.337098,0.989927,0.0795899,0.639028,0.819265,0.697029,0.727051,0.601285,0.959826,0.695065,0.294573,0.635667,0.354773,0.553301,0.793315,0.381198,0.374894,0.0543481,0.0695979,0.305172,0.698663,0.913745,0.503623,0.928715,0.806854,0.14536,0.33272,0.82034,0.429633,0.844279,0.600386,0.954223,0.536708,0.910164,0.290479,0.238255,0.633448,0.606256,0.997547,0.340649,0.741693,0.441173,0.524401,0.532372,0.286637,0.439657,0.17241,0.209697,0.80023,0.998563,0.4956,0.485973,0.641021,0.316969,0.734731,0.681395,0.0188277,0.0198914,0.07928,0.125739,0.0629075,0.35753,0.175984,0.91686,0.92045,0.086129,0.934324,0.921904,0.587092,0.593772,0.511005,0.445209,0.495482,0.0525149,0.054131,0.140402,0.0305813,0.770921,0.423154,0.902901,0.0397924,0.812903,0.529905,0.925628,0.209459,0.382416,0.243639,0.615079,0.0225924,0.245518,0.290935,0.0589158,0.13919,0.124419,0.142835,0.769787,0.350926,0.722749,0.34038,0.444097,0.188811,0.894437,0.920525,0.357874,0.39073,0.998173,0.0214794,0.717455,0.778498,0.117833,0.0163184,0.916232,0.0098244,0.710712,0.387824,0.503818,0.604705,0.520358,0.366424,0.270038,0.671047,0.0355472,0.331817,0.475332,0.599517,0.22345,0.138537,0.80265,0.779681,0.91433,0.555853,0.856061,0.295224,0.910191,0.428293,0.927238,0.159039,0.92882,0.804415,0.730436,0.21459,0.0522186,0.144484,0.166019,0.027395,0.689009,0.725396,0.366786,0.278761,0.197991,0.623505,0.144734,0.726649,0.1803,0.194681,0.166994,0.747124,0.31453,0.119062,0.887843,0.995061,0.262681,0.817748,0.080828,0.128618,0.801529,0.99985,0.182014,0.94278,0.548543,0.803044,0.268644,0.0134117,0.204916,0.458798,0.18034,0.723964,0.674805,0.256572,0.816823,0.803179,0.257661,0.143692,0.492422,0.182973,0.81816,0.85381,0.223294,0.594842,0.317829,0.17659,0.391673,0.982502,0.0892102,0.00268203,0.470216,0.498637,0.575489,0.273196,0.897005,0.849973,0.238285,0.108272,0.682272,0.201172,0.158546,0.562061,0.506515,0.309177,0.514167,0.0135451,0.540141,0.695456,0.974509,0.162424,0.256237,0.946656,0.022765,0.756507,0.452793,0.744664,0.919619,0.0900263,0.339574,0.325177,0.401182,0.529125,0.415979,0.152337,0.376837,0.334731,0.72932,0.529228,0.629808,0.422574,0.140385,0.828171,0.324713,0.695306,0.41146,0.450853,0.241469,0.470078,0.393796,0.626174,0.0172977,0.594234,0.564881,0.407315,0.24006,0.929297,0.412581,0.238488,0.0488717,0.371114,0.835644,0.0369776,0.94032,0.0569394,0.823189,0.393739,0.209137,0.358443,0.979107,0.559092,0.461565,0.108087,0.582398,0.416828,0.0977018,0.183666,0.973555,0.549266,0.804126,0.667042,0.330868,0.754208,0.696279,0.877651,0.208793,0.0383778,0.855674,0.464654,0.584995,0.803688,0.36939,0.311326,0.0662033,0.679422,0.879003,0.586148,0.444467,0.554345,0.404613,0.0797775,0.536466,0.510286,0.148467,0.849394,0.854359,0.825281,0.334936,0.0145759,0.757528,0.671184,0.343264,0.0646588,0.607545,0.526378,0.443747,0.986873,0.271799,0.850169,0.365287,0.835371,0.7676,0.681834,0.172493,0.911532,0.829665,0.247762,0.706827,0.756892,0.683943,0.467367,0.0388981,0.655604,0.059073,0.295183,0.689802,0.753563,0.221256,0.76333,0.115947,0.297439,0.841363,0.722162,0.270708,0.379692,0.687359,0.930502,0.375027,0.0864692,0.186259,0.457625,0.379712,0.14917,0.282547,0.0351198,0.960742,0.839299,0.117609,0.441787,0.4049,0.935787,0.514959,0.871567,0.322537,0.684144,0.220743,0.636341,0.876618,0.471391,0.813577,0.00134367,0.603804,0.498676,0.225497,0.210991,0.363415,0.370019,0.755008,0.309389,0.489262,0.0980151,0.325677,0.0200796,0.807066,0.692813,0.98512,0.622017,0.955807,0.659682,0.646637,0.719602,0.595877,0.096411,0.812301,0.492602,0.77233,0.863379,0.522746,0.621084,0.354486,0.0447022,0.696842,0.0368373,0.580175,0.862477,0.839586,0.455407,0.931991,0.321695,0.439107,0.542199,0.569504,0.796736,0.234321,0.88209,0.585332,0.725665,0.906244,0.887091,0.736747,0.765621,0.137134,0.729298,0.708669,0.0661176,0.503571,0.390979,0.871289,0.682845,0.747302,0.957161,0.143955,0.998853,0.378674,0.0478393,0.042089,0.771697,0.363869,0.794917,0.163701,0.819976,0.513488,0.363864,0.556637,0.561571,0.499403,0.00852162,0.503715,0.574498,0.695909,0.0968698,0.28577,0.913068,0.213913,0.507191,0.551629,0.937527,0.0395189,0.0651745,0.411773,0.420448,0.166422,0.937843,0.685888,0.00253481,0.634613,0.788368,0.242388,0.160916,0.731433,0.0449114,0.335672,0.806295,0.297724,0.548327,0.636113,0.533286,0.584542,0.838176,0.780337,0.108772,0.12984,0.149586,0.730126,0.192219,0.572642,0.309146,0.254679,0.0733864,0.771381,0.61929,0.380321,0.317613,0.211712,0.565105,0.535563,0.30805,0.191361,0.68213,0.815239,0.254824,0.127418,0.859957,0.253027,0.157557,0.873625,0.397859,0.715054,0.67467,0.166471,0.990277,0.67665,0.0269157,0.473278,0.751455,0.985921,0.240472,0.90816,0.588967,0.770079,0.0386966,0.911674,0.263355,0.651103,0.513562,0.298126,0.104876,0.721857,0.739667,0.0293092,0.126641,0.720901,0.283157,0.277718,0.70448,0.786406,0.418972,0.698545,0.221425,0.674816,0.0862951,0.0428008,0.0625432,0.490709,0.81999,0.29173,0.425922,0.668692,0.70482,0.254826,0.00915384,0.249869,0.428267,0.463683,0.736626,0.99773,0.506724,0.493141,0.847601,0.87451,0.643329,0.387327,0.158997,0.977531,0.99658,0.0930595,0.576265,0.845043,0.416706,0.767764,0.440414,0.762628,0.0378298,0.820028,0.209858,0.258834,0.0883677,0.236555,0.868066,0.279777,0.215084,0.875933,0.849537,0.150257,0.186517,0.371945,0.181569,0.564497,0.308926,0.913992,0.0440865,0.368771,0.184649,0.347507,0.435696,0.0190423,0.737561,0.3433,0.360495,0.860528,0.468077,0.394562,0.350849,0.0623718,0.184473,0.75645,0.417636,0.119505,0.308846,0.734095,0.707115,0.777587,0.585401,0.716234,0.694358,0.102095,0.0243836,0.00313848,0.933156,0.660522,0.0429322,0.662201,0.693243,0.083508,0.3707,0.199466,0.927909,0.412654,0.0477731,0.987269,0.356504,0.579572,0.737373,0.917947,0.798232,0.533437,0.76188,0.078488,0.972515,0.784172,0.397778,0.702969,0.872413,0.447598,0.246459,0.125632,0.0300086,0.208256,0.28665,0.286066,0.268133,0.480205,0.66359,0.278694,0.383453,0.37188,0.611358,0.206178,0.685864,0.175842,0.965126,0.567751,0.670421,0.599987,0.292886,0.0961258,0.499273,0.867115,0.173766,0.574257,0.0468267,0.710974,0.231413,0.883161,0.998712,0.0401073,0.0628672,0.287533,0.746355,0.412184,0.453992,0.620671,0.537021,0.441402,0.154494,|0.277291,0.437779,0.903599,0.82972,0.00767851,0.308782,0.378186,0.741215,0.145693,0.150774,0.300678,0.401048,0.885698,0.223884,0.760345,0.281079,0.51187,0.0121362,0.665267,0.374548,0.647459,0.494532,0.253893,0.319311,0.0412377,0.698997,0.262956,0.785319,0.130145,0.827014,0.395638,0.649221,0.096914,0.772941,0.188817,0.619356,0.94366,0.214365,0.685485,0.728364,0.739087,0.956681,0.630859,0.922633,0.464921,0.581784,0.0636141,0.93059,0.582246,0.0523884,0.363284,0.589671,0.189269,0.321308,0.48559,0.467216,0.419348,0.852111,0.646401,0.465493,0.0106422,0.0840467,0.934253,0.715862,0.694193,0.32027,0.957743,0.155635,0.276804,0.0251355,0.681402,0.433322,0.880619,0.174025,0.262534,0.0964457,0.434023,0.995156,0.897449,0.659972,0.904945,0.584395,0.502514,0.3481,0.553831,0.591381,0.113301,0.281972,0.492078,0.650394,0.0782592,0.592831,0.649402,0.342298,0.133365,0.0188978,0.837685,0.294745,0.105268,0.276072,0.20315,0.740767,0.536824,0.314886,0.311943,0.590406,0.422635,0.785326,0.567528,0.773969,0.897109,0.312831,0.0440841,0.711345,0.495592,0.467737,0.594782,0.774894,0.190147,0.397694,0.701554,0.918726,0.755288,0.00166976,0.678631,0.825751,0.017571,0.808202,0.889249,0.407933,0.348345,0.424404,0.909102,0.665813,0.201088,0.584539,0.786124,0.946985,0.570835,0.922378,0.184902,0.0467821,0.266181,0.461658,0.268033,0.28559,0.536165,0.481685,0.79291,0.815111,0.945505,0.40372,0.586349,0.0325817,0.266223,0.789132,0.230221,0.604674,0.787276,0.0778975,0.229145,0.279519,0.798017,0.599509,0.163064,0.289479,0.652053,0.324662,0.239138,0.0598422,0.289729,0.0885256,0.769734,0.81509,0.0212641,0.626973,0.533564,0.497238,0.2525,0.624066,0.28027,0.253626,0.147033,0.236597,0.849902,0.551076,0.822115,0.934463,0.308165,0.544706,0.54006,0.0383977,0.85151,0.0650465,0.911634,0.936095,0.155349,0.541735,0.134628,0.547385,0.259679,0.151911,0.688657,0.317006,0.2248,0.653007,0.817011,0.654974,0.290542,0.711787,0.720251,0.580835,0.93094,0.580702,0.285727,0.948638,0.32929,0.0466587,0.303128,0.946569,0.640223,0.590884,0.185823,0.00657523,0.952632,0.263277,0.717036,0.396193,0.34598,0.8691,0.229313,0.330514,0.125252,0.924742,0.819121,0.910257,0.577113,0.805816,0.709997,0.605939,0.683996,0.081397,0.13594,0.110595,0.581015,0.920358,0.208361,0.887357,0.213903,0.0597311,0.489657,0.446666,0.427868,0.891102,0.397544,0.239046,0.80808,0.484329,0.831548,0.752383,0.952518,0.624419,0.504478,0.633175,0.0773112,0.89463,0.811356,0.780007,0.798342,0.110447,0.797148,0.488648,0.546063,0.374604,0.775559,0.62431,0.0800421,0.945056,0.50708,0.939503,0.000788152,0.662944,0.163846,0.672137,0.412061,0.842223,0.787444,0.107497,0.208926,0.371919,0.849686,0.336135,0.445508,0.165974,0.487949,0.166022,0.230537,0.537893,0.176567,0.312856,0.303535,0.653166,0.297482,0.604108,0.408469,0.309119,0.429347,0.408199,0.819344,0.715967,0.930641,0.353611,0.748021,0.620115,0.146062,0.783098,0.674443,0.813933,0.0357706,0.101168,0.849643,0.0923781,0.0866042,0.484213,0.43184,0.375895,0.690677,0.082368,0.549912,0.472009,0.129354,0.434354,0.921718,0.00876135,0.695315,0.190924,0.745555,0.236033,0.908651,0.633065,0.505625,0.819405,0.629273,0.903588,0.0595918,0.684593,0.315168,0.49188,0.144846,0.583487,0.457891,0.947784,0.667968,0.904507,0.93559,0.44474,0.593776,0.612363,0.908945,0.409749,0.848084,0.489964,0.265569,0.360385,0.906575,0.690548,0.398622,0.524005,0.33924,0.0507579,0.505269,0.245036,0.072987,0.0100999,0.762797,0.354763,0.763563,0.998188,0.163757,0.350061,0.133396,0.932467,0.586986,0.0578737,0.845017,0.711258,0.0387263,0.141073,0.470095,0.035107,0.193974,0.707793,0.0177507,0.261563,0.488973,0.206497,0.811152,0.692867,0.453172,0.610577,0.415691,0.0783305,0.370163,0.685653,0.0425134,0.270631,0.133692,0.0311774,0.255142,0.948455,0.30866,0.223205,0.65805,0.0490927,0.230382,0.910335,0.836415,0.891723,0.514534,0.878362,0.549462,0.512317,0.48997,0.798836,0.388908,0.283136,0.262367,0.262261,0.574518,0.087198,0.148812,0.0627548,0.0459993,0.278188,0.881611,0.323114,0.855608,0.198104,0.559851,0.036325,0.761131,0.642891,0.852345,0.385939,0.78712,0.418533,0.23506,0.76856,0.345221,0.766032,0.927429,0.322899,0.619056,0.00818872,0.0903136,0.507423,0.580913,0.58179,0.578968,0.152717,0.610199,0.713483,0.0562642,0.736153,0.448382,0.363561,0.28341,0.815907,0.4302,0.861687,0.259899,0.373281,0.420828,0.964947,0.441997,0.836089,0.366198,0.1633,0.94576,0.673411,0.833427,0.953502,0.15237,0.955591,0.85395,0.255757,0.0843993,0.303712,0.533596,0.975662,0.571133,0.884806,0.655881,0.782579,0.863156,0.222466,0.263976,0.885616,0.828855,0.072069,0.303674,0.843315,0.388115,0.536331,0.205047,0.0387589,0.593128,0.549273,0.330082,0.895516,0.139535,0.904034,0.539628,0.312777,0.465411,0.0188479,0.42321,0.0451775,0.809145,0.737489,0.520343,0.924088,0.172815,0.213994,0.742562,0.598486,0.328841,0.750494,0.414536,0.498757,0.877129,0.635455,0.440546,0.51675,0.477925,0.855395,0.222507,0.13662,0.931382,0.932047,0.754231,0.632378,0.275065,0.494081,0.139928,0.993569,0.155859,0.488742,0.747748,0.294644,0.886533,0.735846,0.3012,0.631547,0.534367,0.297291,0.820765,0.269308,0.0224702,0.0231069,0.885378,0.796753,0.630319,0.479973,0.276581,0.891662,0.595977,0.504307,0.00417209,0.35257,0.827192,0.902621,0.1127,0.856773,0.410634,0.856825,0.332461,0.540298,0.511894,0.434939,0.820637,0.809112,0.377697,0.741909,0.111624,0.0368947,0.500195,0.751142,0.114193,0.381524,0.696152,0.935988,0.719955,0.191492,0.130127,0.627827,0.971164,0.854087,0.340766,0.973342,0.464855,0.545427,0.138494,0.182053,0.539624,0.803684,0.700826,0.568689,0.2325,0.35775,0.568958,0.419289,0.365424,0.0679657,0.580289,0.993765,0.0958542,0.888864,0.0586117,0.549482,0.635239,0.467782,0.925524,0.883998,0.586094,0.914838,0.738721,0.322582,0.636913,0.324585,0.78554,0.648823,0.726639,0.179102,0.87596,0.754894,0.806747,0.397957,0.664396,0.447695,0.187532,0.870899,0.576964,0.0562473,0.264943,0.147679,0.242654,0.883171,0.44356,0.0698888,0.0164731,0.681399,0.539299,0.138631,0.381437,0.341081,0.426635,0.600595,0.211845,0.959107,0.86755,0.288213,0.829768,0.665489,0.308171,0.0913967,0.279106,0.12238,0.217425,0.809567,0.173711,0.0634566,0.00586873,0.391322,0.0816588,0.88691,0.304416,0.91979,0.874637,0.867497,0.0480225,0.179275,0.717042,0.417236,0.201624,0.584875,0.947173,0.886399,0.21711,0.354346,0.912335,0.072811,0.38521,0.348893,0.458947,0.341676,0.774026,0.4786,0.221732,0.560679,0.521822,0.568963,0.334648,0.615745,0.900686,0.40935,0.0270087,0.639311,0.9484,0.0466558,0.07988,0.519129,0.32845,0.707761,0.530984,0.63964,0.391469,0.240884,0.781719,0.765737,0.822047,0.671942,0.295049,0.388808,0.398491,0.536429,0.392451,0.625698,0.981756,0.219238,0.779717,0.80133,0.808421,0.318152,0.723303,0.908703,0.894277,0.766625,0.987425,0.864494,0.88351,0.819209,0.678722,0.486651,0.0521349,0.541929,0.207336,0.179542,0.624771,0.131436,0.943238,0.849574,0.974624,0.353992,0.952685,0.114047,0.158573,0.196936,0.0824018,0.313119,0.5342,0.281111,0.607916,0.866291,0.944444,0.214092,0.0983692,0.527035,0.277515,0.0991154,0.609354,0.975591,0.280691,0.285567,0.897948,0.213405,0.804841,0.803538,0.497051,0.787644,0.461579,0.929576,0.457215,0.245905,0.0119901,0.079805,0.0432997,0.0514463,0.200379,0.655534,0.727573,0.925034,0.593183,0.654691,0.909373,0.610586,0.568088,0.295986,0.730927,0.278672,0.835833,0.60849,0.112622,0.0573168,0.900938,0.777431,0.586249,0.987826,0.157644,0.947364,0.786613,0.204128,0.114133,0.708275,0.347747,0.379697,0.947981,0.262811,0.448622,0.389359,0.815483,0.539075,0.652856,0.55644,0.297127,0.531654,0.136725,0.0956233,0.507013,0.214644,0.813572,0.691482,0.205489,0.8241,0.961618,0.890382,0.598103,0.397862,0.254777,0.467227,0.148375,0.176262,0.702857,0.274525,0.0368078,0.123533,0.670406,0.401948,0.691207,0.292511,0.0672975,0.237186,0.894678,0.370292,0.414577,0.740586,0.611007,0.443185,0.422763,0.490684,0.251344,0.737974,0.19865,0.192941,0.83397,0.840342,0.0570582,0.731716,0.0880666,0.368658,0.375083,0.734312,0.66372,0.939069,0.103552,0.121306,0.892816,0.101161,0.795838,0.810101,0.70261,0.73421,0.561863,0.838945,0.865892,0.477961,0.487748,0.830039,0.489406,0.921131,0.290956,0.651929,0.0343266,0.929145,0.334846,0.0848821,0.989688,0.685661,0.446332,0.143945,0.937337,0.116143,0.462631,0.24644,0.955696,0.863817,0.794622,0.967068,0.999797,0.605207,0.379395,0.154161,0.778076,0.211702,0.993922,0.0996709,0.884376,0.243658,0.715178,0.59471,0.378694,0.424972,0.179125,0.935783,0.675274,0.424893,0.90899,0.921014,0.357679,0.404348,0.166881,0.962273,0.251737,0.73154,0.444317,0.648328,0.540126,0.42963,0.87202,0.0812819,0.307577,0.38294,0.963651,0.536642,0.555403,0.536869,0.756203,0.197927,0.896252,0.966443,0.538277,0.247846,0.252127,0.306961,0.648962,0.296377,0.589145,0.787189,0.913715,0.363255,0.253608,0.016164,0.385391,0.457067,0.33972,0.725154,0.501886,0.781878,0.190069,0.268182,0.0722727,0.274882,0.521812,0.595402,0.545006,0.534227,0.067887,0.110287,0.740953,0.93265,0.22179,0.215318,0.743479,0.7266,0.509753,0.0974716,0.157883,0.171777,0.732744,0.853585,0.597396,0.747001,0.774494,0.220922,0.863546,0.668951,0.532688,0.573095,0.476014,0.809131,|0.397897,0.437486,0.119762,0.213631,0.382449,0.958592,0.785192,0.490151,0.559248,0.997903,0.655025,0.209352,0.310311,0.445246,0.278763,0.242757,0.000222921,0.0305234,0.357989,0.961975,0.386817,0.418845,0.851148,0.462315,0.0655127,0.114035,0.466343,0.165307,0.241644,0.626543,0.56785,0.352146,0.142518,0.443931,0.35285,0.382562,0.499346,0.143779,0.957737,0.350055,0.432021,0.903445,0.560829,0.0231783,0.717038,0.908853,0.84655,0.167079,0.303066,0.727073,0.559872,0.843937,0.403629,0.938047,0.537069,0.340339,0.326612,0.412399,0.847926,0.246918,0.223134,0.760165,0.645495,0.752212,0.0622955,0.48795,0.232844,0.607793,0.105992,0.709163,0.339745,0.113721,0.666018,0.850698,0.915269,0.00709909,0.0347814,0.594472,0.654996,0.598067,0.397126,0.589396,0.119841,0.354293,0.701314,0.296626,0.952712,0.660255,0.120981,0.723077,0.974792,0.302977,0.856804,0.363122,0.0887098,0.0863612,0.0351844,0.784704,0.864058,0.815507,0.26082,0.279412,0.394268,0.686103,0.165765,0.521764,0.197473,0.345706,0.417942,0.320476,0.746331,0.578783,0.35179,0.297688,0.976218,0.163325,0.158509,0.785464,0.179134,0.701765,0.749975,0.0653279,0.685659,0.822062,0.0990535,0.993738,0.757358,0.268802,0.433528,0.209297,0.692613,0.451635,0.425802,0.53455,0.267995,0.888792,0.863956,0.276722,0.110366,0.565895,0.487518,0.487453,0.0842678,0.384786,0.488028,0.622432,0.327499,0.861503,0.587224,0.136685,0.285801,0.606386,0.973613,0.0569699,0.587615,0.85798,0.256203,0.244206,0.732208,0.636336,0.56483,0.165562,0.727171,0.0782369,0.562761,0.314628,0.453346,0.989595,0.892953,0.884152,0.390693,0.209336,0.729151,0.161757,0.295251,0.225243,0.998264,0.632869,0.667761,0.0970375,0.0984151,0.128313,0.936996,0.0961061,0.986541,0.224991,0.327653,0.844648,0.585298,0.0649605,0.618407,0.257921,0.810706,0.526221,0.411881,0.374021,0.917119,0.554484,0.00756109,0.718384,0.87396,0.928343,0.735788,0.556204,0.296702,0.628801,0.603185,0.0668066,0.746567,0.124341,0.521889,0.982609,0.155984,0.479565,0.818044,0.320585,0.154972,0.132887,0.437796,0.313214,0.174133,0.204577,0.00973886,0.414273,0.127691,0.255833,0.337012,0.15101,0.837558,0.458697,0.451582,0.597397,0.0241385,0.433524,0.73853,0.338601,0.388387,0.409965,0.130007,0.0686206,0.0430492,0.035074,0.435402,0.885121,0.978763,0.64473,0.176879,0.121808,0.461848,0.0624896,0.551771,0.000610054,0.174211,0.92419,0.633539,0.0947645,0.192608,0.522249,0.626423,0.862317,0.765803,0.44581,0.551616,0.688501,0.956115,0.899751,0.644434,0.977995,0.93078,0.904961,0.371406,0.66226,0.449437,0.894903,0.946835,0.877123,0.3971,0.261013,0.183898,0.639843,0.44449,0.765997,0.339161,0.926345,0.261242,0.831351,0.988936,0.110507,0.42378,0.559237,0.735035,0.281266,0.953029,0.150751,0.333722,0.779474,0.987538,0.523361,0.195628,0.313307,0.56206,0.187765,0.540056,0.194649,0.544665,0.687229,0.958651,0.0573625,0.374406,0.953819,0.896179,0.457181,0.0122684,0.959288,0.604314,0.312433,0.613119,0.700664,0.655733,0.745455,0.716285,0.23891,0.666362,0.513398,0.537796,0.719677,0.934671,0.0824443,0.516147,0.883744,0.388688,0.558578,0.776682,0.465034,0.278887,0.0325249,0.178408,0.435069,0.0833645,0.0670049,0.395171,0.127142,0.880459,0.12728,0.932751,0.979336,0.35735,0.150273,0.720265,0.245321,0.243027,0.601219,0.515357,0.198572,0.754113,0.10487,0.360061,0.285987,0.483586,0.753094,0.817903,0.563796,0.920092,0.100583,0.542302,0.447308,0.222149,0.342138,0.424442,0.823884,0.118353,0.878994,0.599049,0.0998998,0.674595,0.111397,0.309994,0.337114,0.495983,0.645982,0.0461132,0.013286,0.118723,0.54424,0.635702,0.105374,0.438031,0.0058381,0.604531,0.265215,0.431383,0.925457,0.788958,0.670986,0.0901099,0.687319,0.762746,0.766267,0.747322,0.184678,0.0409402,0.127177,0.0144019,0.976082,0.300836,0.719965,0.275231,0.418991,0.69109,0.0915617,0.567976,0.661745,0.218274,0.43928,0.163686,0.033898,0.887695,0.141895,0.091821,0.0412241,0.0370808,0.751125,0.735086,0.502014,0.357304,0.37978,0.848319,0.603927,0.303317,0.882579,0.641806,0.377023,0.199716,0.395672,0.268555,0.276974,0.699657,0.650915,0.332054,0.0182111,0.100219,0.726686,0.448832,0.647089,0.117892,0.545933,0.733878,0.443859,0.122461,0.909705,0.143781,0.662048,0.897462,0.639831,0.864834,0.397517,0.579825,0.020391,0.977631,0.655907,0.686877,0.902738,0.278525,0.191716,0.900546,0.586338,0.373393,0.0602381,0.816319,0.0152646,0.214167,0.157044,0.790642,0.432199,0.254105,0.976223,0.614253,0.102614,0.443025,0.181697,0.155663,0.106113,0.209969,0.707566,0.72817,0.565934,0.160146,0.00474483,0.623256,0.755549,0.714704,0.466409,0.16901,0.245857,0.883198,0.580501,0.473755,0.473174,0.317599,0.325523,0.368372,0.581598,0.0220937,0.348289,0.180435,0.773271,0.267848,0.469305,0.909125,0.159154,0.367289,0.173559,0.0828733,0.385272,0.709703,0.981968,0.438204,0.957169,0.300569,0.755124,0.561106,0.678169,0.367535,0.770404,0.476578,0.808851,0.673606,0.990977,0.82868,0.910323,0.300976,0.217382,0.470141,0.329881,0.407289,0.190371,0.809277,0.700864,0.0495899,0.862998,0.538571,0.704619,0.463976,0.55704,0.801553,0.675417,0.709173,0.853115,0.371659,0.87296,0.60527,0.563401,0.89708,0.656427,0.819081,0.681703,0.701566,0.157039,0.307751,0.917372,0.549591,0.288173,0.024412,0.85351,0.54836,0.665197,0.223892,0.597795,0.665685,0.755584,0.989049,0.548442,0.700535,0.551629,0.815751,0.47958,0.145907,0.458928,0.00734127,0.496676,0.295174,0.818752,0.638218,0.154806,0.794234,0.0574687,0.550306,0.411954,0.254983,0.98788,0.482217,0.644441,0.298307,0.647132,0.749377,0.251251,0.938786,0.649883,0.686609,0.780051,0.403661,0.409914,0.662621,0.822883,0.272017,0.582149,0.853298,0.450846,0.733506,0.0936988,0.943195,0.160262,0.125701,0.64097,0.950017,0.750615,0.690402,0.971218,0.940807,0.475614,0.963241,0.854859,0.61568,0.690064,0.484232,0.213988,0.926277,0.581425,0.886253,0.20686,0.509913,0.187059,0.977139,0.106631,0.0613064,0.80688,0.174351,0.172233,0.507151,0.756643,0.819875,0.181722,0.796379,0.0681063,0.688089,0.926686,0.840355,0.558426,0.451485,0.555319,0.183779,0.818278,0.0206951,0.131781,0.162415,0.71095,0.168965,0.641304,0.100751,0.0795848,0.872592,0.445838,0.0823689,0.215816,0.413874,0.636548,0.0679556,0.0367348,0.923106,0.867585,0.49611,0.301353,0.716019,0.146882,0.021482,0.80547,0.7906,0.153305,0.613344,0.226753,0.435758,0.470954,0.641469,0.766087,0.884304,0.0950303,0.00493473,0.603137,0.473499,0.694386,0.690681,0.378423,0.965874,0.580096,0.844265,0.827087,0.274142,0.00196165,0.711565,0.238303,0.853292,0.378264,0.583078,0.111592,0.892234,0.951551,0.686802,0.348701,0.72103,0.766437,0.098641,0.455937,0.111874,0.480824,0.920886,0.446471,0.849501,0.732195,0.315541,0.818492,0.0608,0.817539,0.649099,0.727478,0.504834,0.316805,0.60197,0.807511,0.969749,0.834061,0.41866,0.317603,0.631353,0.359241,0.917561,0.428577,0.784895,0.189635,0.233297,0.819032,0.162652,0.156012,0.454515,0.509458,0.211964,0.805346,0.810371,0.0248988,0.535358,0.979859,0.100475,0.501708,0.910293,0.981075,0.35569,0.306181,0.0956293,0.00275242,0.0460849,0.227454,0.240732,0.200974,0.340972,0.218142,0.271031,0.448249,0.766525,0.99508,0.326809,0.759574,0.874529,0.452894,0.12925,0.222341,0.198168,0.734193,0.680548,0.786401,0.679159,0.850584,0.369693,0.0339469,0.395367,0.478289,0.199296,0.52238,0.766353,0.412652,0.478306,0.122967,0.565211,0.966016,0.177269,0.275116,0.703519,0.765606,0.646933,0.476617,0.805967,0.60805,0.959379,0.675402,0.57049,0.0326253,0.432699,0.461653,0.464938,0.748172,0.589845,0.0985175,0.664852,0.0814592,0.834581,0.836587,0.629849,0.244822,0.441608,0.600554,0.782054,0.576551,0.911404,0.304556,0.128241,0.0513031,0.461743,0.0245258,0.940654,0.332073,0.36581,0.0235115,0.481856,0.348192,0.072767,0.399695,0.242048,0.811682,0.0957361,0.947714,0.796596,0.121333,0.499782,0.824759,0.570329,0.952086,0.640496,0.35968,0.66201,0.288823,0.0674779,0.177869,0.618997,0.205825,0.271876,0.929235,0.421468,0.0408679,0.441723,0.130616,0.602167,0.645549,0.517348,0.475994,0.095959,0.147496,0.499481,0.116646,0.900978,0.363543,0.717179,0.831179,0.653464,0.305506,0.783423,0.993834,0.0681595,0.95109,0.962354,0.777396,0.22009,0.213146,0.436678,0.562539,0.728561,0.930111,0.612271,0.70785,0.675826,0.657895,0.0292885,0.995,0.560989,0.0299433,0.366015,0.814419,0.171369,0.271648,0.685829,0.923271,0.7363,0.218343,0.161377,0.848626,0.928234,0.399353,0.775892,0.81574,0.020736,0.208424,0.218123,0.331103,0.810787,0.151987,0.963918,0.400367,0.947732,0.502843,0.751681,0.505653,0.990059,0.514083,0.889331,0.521889,0.373496,0.897455,0.0826452,0.222099,0.229156,0.0335552,0.597726,0.993236,0.723649,0.683064,0.983039,0.600079,0.313464,0.122865,0.548023,0.732566,0.264935,0.464718,0.809253,0.00300819,0.734092,0.491292,0.952445,0.612999,0.431885,0.578543,0.62857,0.405388,0.764774,0.584172,0.522693,0.658701,0.95576,0.0523103,0.631232,0.483673,0.816662,0.654135,0.530959,0.367188,0.122787,0.506305,0.683975,0.636245,0.346623,0.834195,0.816131,0.325313,0.365402,0.726457,0.474884,0.335976,0.523305,0.622919,0.476044,0.994009,0.436514,0.608399,0.838253,0.752458,0.40675,0.951077,0.64759,0.717235,0.548419,0.744639,0.879589,0.328061,0.986878,0.230978,0.554243,0.0814394,0.91589,0.914096,0.442203,0.868849,0.511278,0.314694,|0.238236,0.816958,0.173172,0.321117,0.634611,0.265464,0.803932,0.408565,0.624057,0.615846,0.27294,0.602269,0.432048,0.430449,0.805062,0.497589,0.860227,0.531231,0.920653,0.110154,0.653012,0.139443,0.428968,0.111903,0.0621863,0.285373,0.811518,0.693676,0.0259133,0.664747,0.261691,0.677595,0.62456,0.399668,0.729434,0.130772,0.684603,0.474449,0.547256,0.143399,0.853991,0.475629,0.371356,0.935422,0.549251,0.964436,0.702469,0.208849,0.689958,0.391516,0.552628,0.189796,0.390969,0.273345,0.242623,0.521468,0.816711,0.0832906,0.698417,0.665235,0.419791,0.690997,0.150024,0.747784,0.893302,0.465133,0.104438,0.637548,0.562014,0.0246889,0.059854,0.621106,0.354941,0.97442,0.409016,0.683918,0.768767,0.884396,0.342592,0.398652,0.618478,0.186052,0.863161,0.809837,0.256764,0.185348,0.399402,0.859098,0.2473,0.769958,0.349606,0.83493,0.654294,0.207934,0.208804,0.820446,0.153902,0.389265,0.532094,0.892866,0.556606,0.566695,0.800318,0.715817,0.815924,0.718098,0.67698,0.701242,0.991226,0.0568143,0.955934,0.814697,0.0996575,0.186965,0.956281,0.695712,0.618275,0.751376,0.727138,0.455061,0.155058,0.757037,0.547469,0.33224,0.911873,0.5815,0.45076,0.708017,0.844568,0.746043,0.920331,0.0431128,0.225793,0.500189,0.480509,0.876236,0.862692,0.794406,0.544896,0.899257,0.768354,0.211682,0.625757,0.984904,0.303266,0.00183141,0.702097,0.371586,0.545742,0.487831,0.812041,0.637223,0.478469,0.26267,0.528281,0.0125716,0.369587,0.618572,0.0865336,0.740341,0.656556,0.205998,0.936837,0.192199,0.729379,0.651929,0.614746,0.554399,0.259588,0.933433,0.648436,0.822857,0.127169,0.00167269,0.896459,0.783299,0.935306,0.851985,0.689193,0.900813,0.0667272,0.099836,0.0629289,0.305193,0.227926,0.823622,0.69553,0.13136,0.471059,0.559398,0.676585,0.163945,0.535991,0.835529,0.431133,0.226546,0.609811,0.0963554,0.0883558,0.991884,0.0569668,0.908102,0.481966,0.485899,0.433409,0.700386,0.849309,0.74249,0.166697,0.744957,0.811996,0.786301,0.947969,0.857758,0.918906,0.451138,0.211362,0.0674419,0.105128,0.95199,0.566266,0.896679,0.302712,0.165518,0.316394,0.442992,0.200325,0.9967,0.536372,0.98555,0.291234,0.682913,0.0590394,0.708927,0.208436,0.476581,0.612655,0.490679,0.678321,0.718065,0.963564,0.0104095,0.0467092,0.0856553,0.574276,0.55937,0.456456,0.499578,0.190121,0.862148,0.239081,0.524236,0.0818506,0.207394,0.112307,0.43503,0.548982,0.0261294,0.437512,0.690868,0.0902016,0.372961,0.978115,0.579855,0.366302,0.790514,0.128157,0.722818,0.784154,0.700599,0.919798,0.766905,0.137127,0.983698,0.696192,0.369118,0.532141,0.412698,0.0582808,0.545436,0.927036,0.0342842,0.884051,0.411982,0.0684471,0.00505513,0.343817,0.773435,0.308154,0.0411308,0.0784466,0.00358915,0.244602,0.509277,0.919355,0.446481,0.895655,0.875709,0.179263,0.941502,0.919284,0.384697,0.461572,0.581337,0.988202,0.970341,0.193908,0.702032,0.668643,0.900168,0.18323,0.18898,0.911084,0.523721,0.380842,0.992935,0.365065,0.442248,0.400119,0.888833,0.461499,0.42423,0.866744,0.38915,0.808906,0.547376,0.270501,0.175045,0.558332,0.483786,0.110679,0.832189,0.926805,0.544677,0.597396,0.0473015,0.197364,0.27232,0.25081,0.652856,0.142606,0.115872,0.258723,0.505176,0.663611,0.0493978,0.836336,0.649286,0.831493,0.527938,0.983011,0.958778,0.586078,0.0850877,0.984548,0.93903,0.336363,0.742471,0.385497,0.269473,0.613887,0.704196,0.197805,0.725273,0.155727,0.0586842,0.284747,0.493349,0.465871,0.0661787,0.706783,0.668565,0.476605,0.480143,0.0434515,0.274343,0.501769,0.301077,0.712824,0.0176621,0.0185636,0.237174,0.301468,0.806673,0.288055,0.733934,0.663442,0.337019,0.889018,0.825564,0.105349,0.764845,0.171372,0.992592,0.927238,0.727326,0.636901,0.145847,0.649804,0.0649567,0.260814,0.217706,0.806104,0.714807,0.435689,0.527588,0.241989,0.252866,0.905479,0.140854,0.915528,0.0425178,0.367657,0.990006,0.169907,0.035764,0.329912,0.990084,0.421333,0.989353,0.626321,0.128924,0.778702,0.54432,0.145584,0.566001,0.693315,0.881648,0.291113,0.94296,0.882493,0.493616,0.0317892,0.727077,0.418353,0.453812,0.489982,0.633931,0.597589,0.755566,0.427477,0.440205,0.405724,0.586223,0.414583,0.127204,0.323408,0.271182,0.834199,0.931029,0.401862,0.588747,0.181977,0.30669,0.684725,0.347606,0.832376,0.489759,0.86165,0.18819,0.704741,0.0351012,0.595102,0.608487,0.2645,0.912313,0.91037,0.229378,0.0225958,0.607663,0.274394,0.255502,0.313003,0.89697,0.437746,0.908046,0.126095,0.487001,0.792748,0.707501,0.0402679,0.622173,0.587562,0.30327,0.573688,0.872534,0.149232,0.0435744,0.412224,0.694652,0.220551,0.837273,0.160671,0.447963,0.470983,0.521435,0.813199,0.472116,0.470386,0.777048,0.0794797,0.919655,0.629911,0.184966,0.178948,0.0396852,0.670219,0.158961,0.53479,0.775081,0.171646,0.0589905,0.19318,0.166881,0.843993,0.367969,0.513995,0.632297,0.405007,0.324309,0.515698,0.787775,0.724275,0.173156,0.476443,0.782095,0.437568,0.554881,0.0066011,0.936327,0.934732,0.00428885,0.555938,0.0417475,0.593367,0.275475,0.00938904,0.990004,0.148355,0.214667,0.622957,0.459543,0.507574,0.35631,0.125941,0.247951,0.150962,0.31339,0.624185,0.733898,0.674678,0.971566,0.746479,0.0250042,0.24388,0.500571,0.969561,0.0777841,0.0191383,0.24876,0.434332,0.468622,0.939176,0.434712,0.342771,0.501647,0.535615,0.142347,0.487371,0.773132,0.143061,0.494353,0.936035,0.431244,0.672299,0.381775,0.787756,0.781993,0.0621125,0.319534,0.782485,0.44853,0.188684,0.606856,0.595645,0.69429,0.716043,0.26014,0.224983,0.140966,0.279172,0.979565,0.374144,0.700807,0.429075,0.538963,0.284981,0.1991,0.0641853,0.727652,0.630944,0.0839722,0.22039,0.119303,0.826454,0.330997,0.458871,0.86048,0.411265,0.172435,0.682739,0.299246,0.159551,0.000455081,0.558211,0.261338,0.834167,0.657469,0.0679427,0.23688,0.345489,0.607619,0.667622,0.46617,0.194012,0.290108,0.782916,0.474874,0.91997,0.222807,0.0728472,0.111251,0.573099,0.828827,0.701251,0.853465,0.409135,0.627715,0.159772,0.014726,0.731767,0.995432,0.657638,0.468664,0.130559,0.179009,0.924189,0.242655,0.37762,0.628125,0.146816,0.635567,0.129,0.489622,0.126785,0.630561,0.1504,0.130526,0.444845,0.869416,0.603169,0.28624,0.433092,0.452303,0.679167,0.430718,0.386231,0.187097,0.477076,0.739387,0.480001,0.765792,0.258351,0.697191,0.54521,0.323349,0.900883,0.3292,0.389071,0.246599,0.05672,0.843919,0.45956,0.518315,0.136056,0.30389,0.922358,0.43853,0.610645,0.717127,0.599526,0.683632,0.334304,0.0928474,0.588516,0.611025,0.293882,0.203155,0.409135,0.683246,0.612312,0.463472,0.958,0.256566,0.933618,0.993146,0.212562,0.123283,0.316108,0.232818,0.434571,0.295839,0.295398,0.710803,0.778581,0.385693,0.430941,0.352147,0.657755,0.620906,0.0324828,0.974499,0.451373,0.183468,0.889911,0.612871,0.325366,0.329519,0.451337,0.411107,0.121446,0.568961,0.165129,0.230222,0.472465,0.533047,0.400492,0.235753,0.0815676,0.79651,0.321271,0.496208,0.164027,0.530017,0.649105,0.556703,0.606906,0.974429,0.720277,0.0909615,0.740101,0.229859,0.327267,0.529096,0.748899,0.526033,0.285315,0.61244,0.821491,0.649146,0.217111,0.467717,0.7289,0.720336,0.902843,0.705027,0.485418,0.372614,0.170926,0.34037,0.673676,0.532587,0.887647,0.0131726,0.467118,0.577675,0.337045,0.544578,0.343984,0.384364,0.98214,0.445779,0.751572,0.800452,0.95725,0.538376,0.599354,0.838906,0.0322949,0.154672,0.274053,0.538241,0.205387,0.784833,0.710999,0.536567,0.585515,0.232442,0.683425,0.243685,0.0975674,0.173691,0.236868,0.26334,0.151614,0.869565,0.881891,0.447957,0.704551,0.998012,0.0765565,0.584158,0.724422,0.773778,0.0793177,0.626896,0.0539108,0.156208,0.763512,0.688728,0.619035,0.310142,0.532984,0.539403,0.67298,0.858079,0.479191,0.636192,0.582895,0.940294,0.986071,0.490067,0.397636,0.576997,0.0723488,0.154438,0.786669,0.726436,0.422598,0.903472,0.885918,0.871143,0.687874,0.968386,0.543894,0.606012,0.819141,0.665501,0.620145,0.626155,0.685795,0.265594,0.819199,0.668674,0.299306,0.0229973,0.708884,0.0067451,0.234686,0.760352,0.526708,0.99648,0.094537,0.405262,0.878276,0.629852,0.238363,0.0340076,0.410428,0.330196,0.696603,0.663719,0.399366,0.941353,0.498439,0.250957,0.278651,0.915076,0.582611,0.379104,0.316348,0.635163,0.519193,0.830658,0.417756,0.514258,0.278813,0.187704,0.363639,0.45896,0.423265,0.29808,0.973559,0.872613,0.883732,0.650132,0.440568,0.60199,0.46418,0.445983,0.692255,0.704445,0.274212,0.185429,0.226016,0.669061,0.215998,0.589923,0.568971,0.660068,0.186814,0.630116,0.852082,0.330075,0.587099,0.291621,0.672615,0.616882,0.741643,0.850504,0.579863,0.891275,0.729208,0.82623,0.998631,0.889524,0.183281,0.950621,0.216913,0.256857,0.973122,0.512923,0.0427032,0.371034,0.457173,0.777325,0.777347,0.810027,0.304315,0.298987,0.0436831,0.587663,0.240788,0.437879,0.0125591,0.428045,0.136153,0.961253,0.306657,0.952657,0.755386,0.822874,0.241085,0.409535,0.410521,0.404381,0.701316,0.80554,0.609673,0.838338,0.0251619,0.471372,0.458385,0.197305,0.451991,0.465167,0.131406,0.882254,0.829782,0.346983,0.79167,0.452742,0.74202,0.148142,0.336962,0.75251,0.304194,0.733186,0.0295188,0.834607,0.323769,0.871059,0.979924,0.885821,0.675155,0.942801,0.614244,0.270034,0.663643,0.465263,0.519285,0.0565273,0.109082,0.577199,0.233572,0.891646,0.689514,0.662466,0.748763,0.271222,|0.0835703,0.756463,0.99585,0.333928,0.715568,0.580119,0.942356,0.892616,0.246676,0.345928,0.5527,0.194948,0.89136,0.745864,0.381837,0.773808,0.574125,0.710642,0.303938,0.926134,0.868367,0.986708,0.826057,0.197652,0.0128866,0.800931,0.861564,0.651432,0.770555,0.542852,0.0608319,0.330313,0.322768,0.948673,0.19127,0.777835,0.380474,0.243832,0.406013,0.993552,0.513092,0.312818,0.747309,0.220957,0.99003,0.208407,0.919918,0.777117,0.333208,0.98452,0.431771,0.499363,0.707206,0.260678,0.196094,0.214375,0.92103,0.50099,0.583398,0.495159,0.222989,0.987608,0.775699,0.431812,0.243993,0.959265,0.415736,0.255285,0.757386,0.985928,0.528002,0.326005,0.896349,0.970269,0.380337,0.966438,0.932349,0.850208,0.18788,0.309017,0.920491,0.320289,0.122644,0.442383,0.704148,0.326864,0.395938,0.509791,0.496459,0.830913,0.321194,0.206763,0.421266,0.115742,0.462662,0.643432,0.0577552,0.434431,0.728225,0.00184757,0.490545,0.456633,0.679837,0.539988,0.540972,0.192212,0.458656,0.794176,0.246231,0.59611,0.307681,0.369248,0.828344,0.167073,0.453909,0.590137,0.919228,0.112535,0.304058,0.316752,0.0045324,0.330474,0.841224,0.826138,0.374431,0.399624,0.711615,0.0615687,0.540508,0.669785,0.836086,0.408352,0.216006,0.190584,0.738736,0.492589,0.698565,0.268301,0.489672,0.0784596,0.0329428,0.157744,0.1867,0.965949,0.983678,0.0624079,0.645537,0.456345,0.526781,0.999263,0.0571037,0.591541,0.210149,0.98202,0.868494,0.0929497,0.892255,0.261472,0.55318,0.292296,0.287437,0.285484,0.564461,0.660938,0.261425,0.447532,0.603368,0.46337,0.455241,0.8619,0.0530403,0.833917,0.0969209,0.568657,0.386837,0.92264,0.0511908,0.579758,0.566146,0.507367,0.618406,0.508181,0.763459,0.759932,0.01717,0.0655435,0.221534,0.152875,0.4158,0.423852,0.752369,0.824237,0.0985241,0.873755,0.447297,0.906591,0.381102,0.167801,0.529331,0.772516,0.853546,0.966502,0.0573621,0.308835,0.665621,0.0972045,0.445631,0.787488,0.0119308,0.39893,0.708085,0.523547,0.111999,0.318807,0.512397,0.216343,0.000147402,0.875651,0.437429,0.512928,0.829517,0.804429,0.146314,0.378371,0.778822,0.1745,0.69848,0.0366045,0.0787584,0.625062,0.025465,0.495041,0.497591,0.899301,0.820996,0.747444,0.269973,0.442466,0.737936,0.0578269,0.993504,0.496783,0.930505,0.865708,0.589978,0.448481,0.924516,0.755976,0.648743,0.930873,0.990115,0.929869,0.756905,0.59329,0.482919,0.185548,0.0379658,0.317028,0.771028,0.546322,0.97907,0.348157,0.774695,0.103334,0.877486,0.0404745,0.0288886,0.680022,0.483414,0.848305,0.066384,0.795249,0.220728,0.454911,0.086324,0.424296,0.268321,0.567839,0.654056,0.209735,0.319125,0.882835,0.195628,0.825562,0.908728,0.420491,0.112043,0.00794339,0.752985,0.16843,0.85301,0.871112,0.338345,0.153628,0.796273,0.30052,0.544817,0.819074,0.0155957,0.257656,0.25546,0.47771,0.0782374,0.407748,0.345561,0.935933,0.812447,0.345884,0.604099,0.689957,0.719737,0.263345,0.959577,0.658993,0.374229,0.157501,0.332997,0.406803,0.012957,0.0863616,0.622557,0.25402,0.0606591,0.560752,0.743679,0.0293915,0.360863,0.802885,0.596666,0.75501,0.639029,0.468641,0.233298,0.28956,0.751165,0.330211,0.300418,0.0841344,0.611305,0.640975,0.822531,0.351496,0.588809,0.532011,0.687173,0.931993,0.876058,0.155811,0.723611,0.275839,0.426026,0.167771,0.0757085,0.703781,0.822551,0.716949,0.906255,0.336244,0.572681,0.438278,0.279753,0.920805,0.717313,0.891441,0.511261,0.484694,0.111383,0.37179,0.0794576,0.953716,0.272532,0.70431,0.0198274,0.414332,0.149063,0.723638,0.12403,0.690912,0.335105,0.156477,0.408533,0.826452,0.955937,0.669394,0.674269,0.902141,0.776852,0.447914,0.932017,0.75878,0.051841,0.640092,0.895059,0.591054,0.514439,0.108127,0.576188,0.411576,0.649738,0.220776,0.0541819,0.123278,0.425082,0.962183,0.361075,0.743744,0.958446,0.057911,0.000587642,0.00285727,0.469578,0.407762,0.76602,0.0170852,0.0529315,0.0819563,0.592692,0.909663,0.936421,0.523543,0.800437,0.625439,0.423967,0.36797,0.564106,0.661217,0.131171,0.501938,0.0476962,0.716269,0.931448,0.501766,0.489647,0.272943,0.557449,0.423498,0.954246,0.210025,0.646672,0.251213,0.577991,0.605976,0.153179,0.32113,0.922063,0.772357,0.945817,0.872851,0.51387,0.231819,0.974929,0.960763,0.264974,0.623877,0.595833,0.133119,0.593244,0.396756,0.439936,0.979358,0.874721,0.00464648,0.699938,0.802594,0.39823,0.917655,0.298307,0.0447254,0.108603,0.959628,0.726334,0.17249,0.436574,0.64061,0.836532,0.610626,0.614267,0.0341465,0.746792,0.554125,0.892627,0.0969648,0.023289,0.849167,0.620743,0.583892,0.762962,0.366118,0.814155,0.525818,0.835297,0.621696,0.581904,0.255695,0.600738,0.395877,0.886669,0.019572,0.967812,0.410912,0.941927,0.745984,0.808031,0.638944,0.343477,0.324559,0.212334,0.952441,0.454678,0.888858,0.583633,0.938991,0.771796,0.96158,0.640618,0.613483,0.489038,0.716314,0.0258953,0.0469965,0.901631,0.560733,0.850175,0.679635,0.47613,0.409169,0.273783,0.159744,0.430111,0.166392,0.366305,0.634012,0.663403,0.074982,0.826541,0.0873969,0.831513,0.535334,0.0542034,0.0397504,0.82114,0.379473,0.489901,0.586949,0.740112,0.247344,0.027723,0.993389,0.537893,0.243377,0.509086,0.923013,0.369519,0.657478,0.508592,0.00261754,0.601038,0.452175,0.703665,0.273572,0.810246,0.77728,0.642421,0.0273226,0.976273,0.961515,0.553976,0.147117,0.143244,0.294955,0.160796,0.786222,0.085712,0.785033,0.943478,0.945754,0.596541,0.117163,0.861775,0.147067,0.509801,0.715664,0.0466217,0.432072,0.882083,0.632193,0.304278,0.838534,0.586367,0.625442,0.357045,0.474764,0.394458,0.567746,0.223748,0.000195503,0.791822,0.805422,0.933612,0.0945623,0.79115,0.612615,0.246562,0.857939,0.465948,0.874098,0.143244,0.579724,0.0313179,0.774293,0.0331152,0.533503,0.136025,0.519012,0.374708,0.0177459,0.923123,0.148772,0.00988156,0.483918,0.247324,0.476816,0.616285,0.124232,0.17836,0.754158,0.404639,0.500613,0.721915,0.0816345,0.890448,0.370337,0.139878,0.33058,0.388882,0.432363,0.575764,0.719453,0.77241,0.996179,0.402252,0.396342,0.657727,0.253117,0.699624,0.41507,0.656675,0.989939,0.908892,0.712468,0.394287,0.172431,0.978006,0.199477,0.990105,0.971166,0.405716,0.6867,0.300609,0.64223,0.0274318,0.568414,0.46597,0.0463049,0.0872042,0.0470694,0.359295,0.105515,0.576793,0.625496,0.0610465,0.372034,0.339148,0.191313,0.653184,0.780759,0.0272231,0.0769071,0.336978,0.19098,0.188506,0.888219,0.441096,0.805683,0.577561,0.67794,0.641773,0.639635,0.869433,0.917517,0.629554,0.789573,0.0636032,0.974531,0.66854,0.906726,0.812956,0.595377,0.0848401,0.88658,0.238872,0.112451,0.891392,0.851929,0.816083,0.216386,0.921543,0.254157,0.903468,0.662691,0.722061,0.282721,0.700394,0.370055,0.0195388,0.44798,0.347499,0.162204,0.942491,0.343352,0.694669,0.299506,0.438895,0.499724,0.647235,0.835292,0.318681,0.221674,0.5831,0.616051,0.573557,0.386687,0.620314,0.924307,0.812895,0.0170537,0.616008,0.417872,0.0447597,0.563755,0.893386,0.339014,0.217139,0.929605,0.117347,0.210461,0.159861,0.658742,0.856188,0.255982,0.850112,0.462936,0.0198516,0.268643,0.356656,0.205042,0.246484,0.592797,0.783282,0.489362,0.41867,0.0344617,0.162251,0.625903,0.577355,0.693235,0.928037,0.604758,0.295637,0.178944,0.187133,0.0105402,0.632721,0.707605,0.502425,0.542589,0.782155,0.488051,0.764007,0.590029,0.717551,0.535443,0.057085,0.212659,0.976617,0.849869,0.701091,0.522738,0.625349,0.583787,0.493972,0.743385,0.990677,0.521675,0.25057,0.248537,0.808845,0.739546,0.648231,0.0219413,0.980933,0.417658,0.415242,0.967597,0.139214,0.179629,0.97625,0.0348626,0.725896,0.192018,0.96064,0.10728,0.554793,0.199427,0.587465,0.575345,0.0590937,0.851105,0.694037,0.331639,0.368007,0.0240092,0.912162,0.997939,0.0645451,0.0898061,0.912485,0.100216,0.954467,0.16316,0.352021,0.932609,0.593033,0.40961,0.131038,0.674196,0.0322657,0.870822,0.376891,0.13383,0.603209,0.589549,0.63759,0.640156,0.947514,0.140521,0.205018,0.441919,0.91273,0.495126,0.363651,0.151428,0.755766,0.426208,0.0985873,0.69566,0.293056,0.0972469,0.992549,0.283864,0.178899,0.906035,0.403016,0.658104,0.578764,0.272291,0.565754,0.141848,0.610607,0.163159,0.025436,0.869324,0.48039,0.849461,0.647652,0.0391626,0.896801,0.476473,0.992582,0.417745,0.674689,0.884329,0.486557,0.257983,0.819776,0.396702,0.414575,0.104049,0.282801,0.656264,0.49449,0.304688,0.4022,0.80899,0.557388,0.155454,0.987811,0.955206,0.83822,0.799741,0.637728,0.592607,0.213009,0.256857,0.879044,0.682563,0.217277,0.854964,0.782511,0.303694,0.959769,0.320405,0.647176,0.374343,0.705548,0.482176,0.964575,0.433323,0.196578,0.794301,0.793282,0.387989,0.780385,0.901831,0.538422,0.96861,0.593427,0.635521,0.816708,0.405423,0.0659857,0.730476,0.312748,0.0947371,0.825779,0.826189,0.471185,0.87599,0.291919,0.187323,0.475449,0.409953,0.95105,0.433814,0.606449,0.763344,0.760291,0.931175,0.932535,0.268504,0.825512,0.179039,0.648165,0.167082,0.0253506,0.424755,0.515251,0.908071,0.512233,0.589174,0.53276,0.980415,0.654932,0.0559143,0.0639067,0.500342,0.0844196,0.764978,0.231384,0.79195,0.681439,0.592688,0.932696,0.417971,0.29274,0.275823,0.272229,0.551817,0.681186,0.249443,0.255431,0.102382,0.314307,0.368018,0.640295,0.196559,0.989441,0.431842,0.998993,0.414323,0.237372,0.541228,0.1994,0.774549,0.985561,0.589916,0.33649,0.184835,0.155842,0.840161,|0.289197,0.395574,0.0952075,0.672098,0.0803981,0.208144,0.457539,0.546922,0.64879,0.629063,0.525957,0.0872391,0.781652,0.575929,0.423167,0.68975,0.761497,0.758083,0.436017,0.974885,0.227587,0.235508,0.641135,0.424368,0.349275,0.221534,0.362473,0.56934,0.362828,0.922422,0.588668,0.785558,0.407411,0.733313,0.101597,0.0802369,0.103866,0.26514,0.599183,0.888724,0.193374,0.98746,0.650497,0.740593,0.0913401,0.728047,0.744142,0.883814,0.437638,0.510965,0.660945,0.979886,0.520623,0.417065,0.947652,0.678318,0.994002,0.593547,0.880624,0.137062,0.647017,0.681742,0.383174,0.698567,0.0399089,0.168186,0.817978,0.0928644,0.189445,0.113802,0.771896,0.477035,0.814485,0.907182,0.309704,0.32546,0.358015,0.0473124,0.217591,0.474995,0.0294793,0.4787,0.579487,0.682664,0.979022,0.340688,0.750465,0.976094,0.385982,0.19178,0.10525,0.985727,0.0745727,0.195931,0.312451,0.267333,0.649445,0.29114,0.770934,0.634051,0.826561,0.0219294,0.799675,0.43662,0.516037,0.849636,0.506548,0.378907,0.545645,0.515714,0.659198,0.269848,0.719969,0.73782,0.365296,0.660944,0.370113,0.656353,0.917237,0.815403,0.827029,0.666737,0.0847179,0.660621,0.574171,0.273572,0.821466,0.210993,0.135114,0.207518,0.132853,0.872412,0.0976581,0.52206,0.612908,0.698973,0.549766,0.127763,0.236641,0.926745,0.587148,0.849102,0.410778,0.669266,0.584519,0.219865,0.948558,0.289929,0.780596,0.839621,0.606701,0.586996,0.950667,0.0568702,0.52763,0.853374,0.222097,0.335927,0.466175,0.440316,0.190205,0.844678,0.0347329,0.228488,0.344119,0.602712,0.736731,0.0872932,0.576083,0.740614,0.364599,0.823412,0.615456,0.379885,0.739813,0.180074,0.264474,0.43516,0.66907,0.540873,0.568465,0.973974,0.519295,0.490198,0.138228,0.569988,0.02526,0.814865,0.613282,0.911473,0.586647,0.727077,0.887449,0.723703,0.391249,0.652942,0.750022,0.656062,0.349868,0.820031,0.0265867,0.873501,0.511428,0.166301,0.428036,0.848102,0.357526,0.948138,0.363457,0.128556,0.607138,0.131091,0.192602,0.665355,0.01115,0.226108,0.614609,0.63968,0.0739319,0.633646,0.945298,0.55853,0.586213,0.572409,0.766755,0.415933,0.511675,0.80281,0.108035,0.513166,0.228555,0.0837286,0.663743,0.299503,0.337769,0.173895,0.390223,0.897951,0.476274,0.793331,0.0747873,0.0223272,0.672283,0.168965,0.284298,0.115237,0.603088,0.24745,0.994478,0.0575676,0.295628,0.818129,0.14414,0.958186,0.818878,0.624477,0.487936,0.851421,0.298296,0.391817,0.98117,0.429309,0.442257,0.544329,0.254539,0.0921337,0.457981,0.0764014,0.652327,0.883192,0.193127,0.770967,0.332819,0.438007,0.870905,0.85492,0.0101256,0.439757,0.299758,0.997088,0.630975,0.828724,0.992978,0.953519,0.694654,0.04025,0.607376,0.0311459,0.206676,0.67784,0.88254,0.775437,0.447217,0.961825,0.563559,0.575273,0.39054,0.885475,0.702636,0.952969,0.40359,0.82846,0.806206,0.640911,0.0423589,0.805553,0.124061,0.97877,0.664238,0.10329,0.499435,0.990436,0.5421,0.61509,0.5018,0.213776,0.862328,0.205843,0.204796,0.904498,0.142417,0.0469477,0.835337,0.333601,0.528033,0.382123,0.97336,0.222776,0.00746542,0.309565,0.190464,0.746664,0.115412,0.448591,0.267839,0.844312,0.373101,0.565828,0.519568,0.321882,0.258987,0.80813,0.492974,0.72287,0.230226,0.691207,0.325866,0.443934,0.602841,0.265552,0.85519,0.778115,0.183478,0.828226,0.860485,0.405245,0.219715,0.846892,0.396022,0.766599,0.383666,0.834959,0.523431,0.491006,0.666529,0.306797,0.298217,0.601261,0.644071,0.437445,0.476935,0.803735,0.500084,0.377685,0.182954,0.330785,0.914182,0.395734,0.0241818,0.262537,0.906398,0.866476,0.0326999,0.395096,0.387627,0.30024,0.455708,0.0856909,0.843385,0.0259503,0.355686,0.485211,0.0259562,0.639045,0.160969,0.556483,0.180797,0.311106,0.92337,0.147699,0.438394,0.958227,0.569328,0.344669,0.537717,0.8523,0.441229,0.601912,0.6382,0.600708,0.716112,0.666608,0.239558,0.39609,0.863004,0.0076552,0.801849,0.863627,0.434973,0.327453,0.121701,0.203554,0.00296515,0.106732,0.249679,0.0320913,0.433913,0.481774,0.613313,0.0796251,0.738092,0.455915,0.474047,0.0622563,0.423688,0.457186,0.950276,0.989838,0.808671,0.962507,0.623287,0.387541,0.866841,0.514268,0.764653,0.895746,0.687422,0.885234,0.664087,0.673912,0.596299,0.982499,0.759726,0.0954966,0.465507,0.745838,0.306576,0.10025,0.98613,0.618581,0.850424,0.764127,0.27484,0.125716,0.452899,0.268809,0.696635,0.672681,0.684564,0.397412,0.477464,0.340596,0.356438,0.308092,0.252246,0.104198,0.430198,0.662089,0.14558,0.695253,0.808864,0.841637,0.854269,0.0546899,0.714808,0.220213,0.624515,0.504299,0.592094,0.872555,0.959395,0.099967,0.682805,0.0220592,0.109138,0.0714052,0.0537627,0.176654,0.678536,0.6889,0.866681,0.451839,0.902167,0.603345,0.517138,0.620385,0.687997,0.439796,0.4699,0.149202,0.963706,0.0255841,0.193062,0.921618,0.567512,0.401419,0.606242,0.652048,0.689132,0.795206,0.984381,0.675465,0.384858,0.797087,0.755278,0.410509,0.251387,0.434268,0.0156081,0.259405,0.681877,0.905468,0.845425,0.851432,0.350827,0.226966,0.69691,0.337343,0.089713,0.544963,0.343327,0.53529,0.0186927,0.458396,0.10621,0.31059,0.94804,0.590101,0.521358,0.415801,0.369209,0.0438232,0.684524,0.206519,0.289993,0.696697,0.0695607,0.906647,0.937591,0.169526,0.824349,0.692289,0.419156,0.313424,0.352787,0.570179,0.714687,0.988559,0.773899,0.380587,0.590959,0.690578,0.869094,0.20657,0.570599,0.530459,0.350493,0.659471,0.83482,0.163705,0.604136,0.580792,0.823991,0.0476912,0.256968,0.400118,0.756115,0.147197,0.55429,0.35237,0.681999,0.786062,0.970674,0.610548,0.55488,0.329075,0.478711,0.730434,0.114695,0.755774,0.886621,0.143632,0.04792,0.905978,0.164157,0.364212,0.809872,0.323213,0.544467,0.352419,0.541343,0.0525522,0.270508,0.414473,0.902562,0.490999,0.214027,0.30886,0.763751,0.494471,0.517932,0.739655,0.140094,0.983967,0.214634,0.651489,0.3251,0.0128873,0.204314,0.540699,0.763594,0.351043,0.985678,0.533766,0.310782,0.128264,0.949604,0.42156,0.22712,0.585878,0.718322,0.822498,0.524339,0.799451,0.110256,0.0829635,0.147284,0.708283,0.138769,0.225133,0.0370773,0.0631574,0.632127,0.363241,0.684109,0.10382,0.0301807,0.144103,0.336187,0.938127,0.79646,0.558612,0.998988,0.981435,0.536401,0.0672413,0.455653,0.550181,0.765099,0.198523,0.926907,0.214848,0.117512,0.774643,0.799336,0.00684369,0.392427,0.648374,0.15819,0.913105,0.549092,0.416646,0.240674,0.686971,0.382449,0.511302,0.623387,0.787546,0.437546,0.59945,0.724052,0.0686719,0.983257,0.505117,0.442611,0.436096,0.585715,0.309682,0.976337,0.49749,0.497676,0.426364,0.561468,0.921203,0.228742,0.888492,0.874374,0.15755,0.858769,0.744976,0.178474,0.246321,0.488174,0.281297,0.715389,0.633668,0.399631,0.796172,0.133185,0.0278704,0.272642,0.994298,0.252286,0.617279,0.716203,0.513289,0.380063,0.717124,0.449651,0.684934,0.0321496,0.677586,0.0707639,0.511494,0.359852,0.0449857,0.693243,0.47712,0.543586,0.0653163,0.78977,0.186804,0.0431356,0.240738,0.0726714,0.663023,0.95753,0.562239,0.580378,0.36825,0.89459,0.374674,0.159732,0.47956,0.870306,0.892033,0.988356,0.0219248,0.944162,0.274352,0.765637,0.360398,0.276326,0.116736,0.179644,0.0183212,0.109777,0.667887,0.597272,0.4549,0.933425,0.954763,0.280615,0.935871,0.184102,0.132268,0.283961,0.511098,0.708653,0.811384,0.168147,0.163994,0.209184,0.553382,0.103697,0.44235,0.805479,0.366102,0.702007,0.385113,0.598619,0.286886,0.720816,0.264488,0.810722,0.0574219,0.601192,0.265655,0.95502,0.265413,0.987705,0.152982,0.80299,0.331623,0.114591,0.921679,0.717114,0.384712,0.927325,0.110637,0.320111,0.94711,0.0021717,0.402964,0.557468,0.161611,0.91025,0.638811,0.0094772,0.197329,0.10511,0.0673363,0.678412,0.420955,0.576292,0.555934,0.903772,0.724962,0.478518,0.390099,0.489052,0.324772,0.0456553,0.609336,0.867016,0.58138,0.0627052,0.0919904,0.0354,0.0716634,0.238377,0.982868,0.419735,0.485361,0.118085,0.653896,0.104177,0.620478,0.870768,0.986079,0.271813,0.905204,0.360025,0.629088,0.917379,0.242291,0.430117,0.174817,0.623761,0.163261,0.320974,0.164561,0.491516,0.676534,0.0668406,0.257351,0.0778301,0.787584,0.910242,0.16265,0.907514,0.799962,0.475866,0.68105,0.92217,0.966774,0.87107,0.433869,0.461796,0.544818,0.128161,0.37239,0.596817,0.105229,0.583302,0.290319,0.987394,0.839469,0.62321,0.812386,0.375617,0.0133866,0.972699,0.576861,0.513499,0.271903,0.0571988,0.263109,0.467452,0.0725302,0.399891,0.614391,0.43351,0.224634,0.249339,0.529353,0.660734,0.576513,0.457927,0.227275,0.297257,0.991233,0.901861,0.636406,0.175085,0.95094,0.974634,0.444473,0.698486,0.133901,0.223382,0.175699,0.215348,0.655385,0.998428,0.346571,0.149849,0.88401,0.0349242,0.982353,0.830526,0.356619,0.0150506,0.12584,0.616792,0.899402,0.382509,0.562122,0.378732,0.588401,0.982691,0.285678,0.0334515,0.482107,0.382854,0.598189,0.585117,0.801891,0.288959,0.255942,0.406653,0.31084,0.844914,0.350372,0.394745,0.782923,0.48058,0.322801,0.358949,0.610578,0.132755,0.324697,0.399324,0.474633,0.157787,0.113595,0.581671,0.371839,0.258123,0.580566,0.239324,0.442136,0.148401,0.304987,0.688159,0.839542,0.468151,0.942293,0.639346,0.786817,0.213465,0.387054,0.417051,0.0392344,0.43985,0.581243,0.545987,0.949692,0.846294,0.842397,0.401836,0.742891,0.134943,0.282432,0.870799,0.437836,0.532749,0.877815,0.66966,0.799583,|0.435943,0.361662,0.636714,0.605795,0.659335,0.830008,0.303679,0.168656,0.971792,0.88691,0.0932378,0.547557,0.512981,0.722617,0.161654,0.324657,0.2303,0.765088,0.880938,0.99985,0.302892,0.77351,0.491974,0.634733,0.759163,0.0917696,0.113502,0.986262,0.498827,0.317846,0.358162,0.279484,0.496774,0.0364851,0.735901,0.0586126,0.0397195,0.241961,0.855544,0.535755,0.173877,0.712321,0.357252,0.492817,0.383966,0.12552,0.114384,0.55243,0.504638,0.779646,0.150454,0.47658,0.84598,0.604662,0.268877,0.311363,0.840047,0.223564,0.508375,0.595574,0.204469,0.224154,0.784952,0.307777,0.572504,0.600237,0.978674,0.692496,0.192132,0.942855,0.169612,0.846395,0.0259668,0.261336,0.273951,0.998327,0.277817,0.942603,0.406452,0.41836,0.236105,0.373512,0.29463,0.635202,0.323359,0.653889,0.531031,0.422621,0.850356,0.0708992,0.132375,0.459342,0.370691,0.171096,0.417783,0.234544,0.512362,0.767612,0.669448,0.992569,0.133718,0.534557,0.644816,0.47394,0.735377,0.679776,0.265892,0.683913,0.895584,0.0708452,0.0268636,0.784075,0.725186,0.932021,0.82527,0.778656,0.298819,0.636351,0.579842,0.645629,0.649064,0.685695,0.180329,0.104108,0.712019,0.242159,0.0410092,0.444614,0.114368,0.0815077,0.404156,0.430871,0.851438,0.188509,0.258008,0.190135,0.337003,0.230684,0.23367,0.848875,0.259708,0.372541,0.369345,0.139959,0.155687,0.77582,0.880164,0.769818,0.251294,0.0172173,0.661548,0.776105,0.1223,0.0529925,0.534426,0.161062,0.829174,0.820047,0.0251222,0.416207,0.984199,0.231504,0.136578,0.655676,0.235454,0.106428,0.572933,0.479903,0.378461,0.944404,0.975497,0.388918,0.92573,0.394315,0.60552,0.886675,0.787637,0.170549,0.269463,0.508896,0.700973,0.921538,0.567521,0.15043,0.00918859,0.649915,0.355439,0.487506,0.546659,0.437984,0.870204,0.644776,0.854764,0.654558,0.659889,0.675479,0.997028,0.613641,0.732517,0.209787,0.749738,0.848969,0.370548,0.953826,0.364701,0.657044,0.840216,0.106149,0.653618,0.460746,0.631666,0.676203,0.998019,0.607164,0.428739,0.95414,0.346836,0.676897,0.303289,0.841271,0.0942038,0.0893903,0.987985,0.500752,0.487458,0.584757,0.709541,0.817188,0.530135,0.201585,0.901014,0.334274,0.0357644,0.785269,0.525817,0.119301,0.858762,0.520576,0.25011,0.299693,0.394466,0.756974,0.0929717,0.0253217,0.0726157,0.606505,0.517208,0.750928,0.266492,0.720245,0.926617,0.209829,0.0491299,0.958843,0.595117,0.653516,0.0902207,0.172291,0.50983,0.493211,0.194411,0.0658755,0.930709,0.234427,0.0242705,0.616661,0.141467,0.453857,0.614775,0.665225,0.0585615,0.432722,0.667168,0.182173,0.353903,0.520463,0.195833,0.382649,0.501167,0.166289,0.705396,0.453268,0.803658,0.769232,0.577027,0.266227,0.774587,0.718464,0.0243354,0.808429,0.363441,0.230449,0.646877,0.376828,0.613947,0.967374,0.903869,0.0147289,0.388803,0.745931,0.905566,0.55242,0.70758,0.124801,0.865,0.517384,0.850907,0.687509,0.271199,0.579474,0.998995,0.487424,0.791675,0.313371,0.082739,0.822017,0.881331,0.427673,0.761674,0.21356,0.804109,0.751572,0.877598,0.625408,0.60503,0.0783222,0.126766,0.0781635,0.454597,0.540195,0.704232,0.166675,0.330432,0.578581,0.981004,0.144095,0.682619,0.332061,0.721343,0.176905,0.0348915,0.819622,0.406141,0.552305,0.457651,0.532587,0.0455779,0.89663,0.0675653,0.982004,0.976918,0.924469,0.610927,0.981286,0.272218,0.517326,0.447376,0.389618,0.356738,0.39187,0.409218,0.58065,0.671985,0.281081,0.176231,0.267507,0.28995,0.12085,0.918925,0.636893,0.868822,0.955144,0.911786,0.439211,0.365195,0.689942,0.37653,0.621853,0.90685,0.980534,0.462473,0.590927,0.367296,0.157409,0.714306,0.59245,0.99766,0.807668,0.103462,0.972183,0.930235,0.359277,0.588512,0.441072,0.342867,0.649751,0.752518,0.735039,0.613437,0.568186,0.91798,0.525545,0.631081,0.183672,0.907653,0.933071,0.889103,0.406932,0.253605,0.295054,0.351898,0.697538,0.056285,0.76937,0.996434,0.532048,0.733932,0.787959,0.551549,0.62102,0.257652,0.129944,0.673663,0.542997,0.780704,0.261785,0.517631,0.697131,0.597088,0.847634,0.808984,0.62142,0.99578,0.498279,0.95277,0.969136,0.962632,0.98326,0.332276,0.0272261,0.973816,0.106336,0.176413,0.273784,0.74353,0.114168,0.28252,0.419064,0.820829,0.6679,0.14183,0.315737,0.233022,0.22755,0.638395,0.128371,0.295043,0.155566,0.86799,0.974401,0.21766,0.986169,0.0371412,0.534356,0.914108,0.286442,0.78866,0.29598,0.202037,0.158435,0.828268,0.739784,0.781962,0.0302961,0.142303,0.449258,0.0562486,0.526047,0.0673816,0.0549986,0.229684,0.504482,0.505041,0.121738,0.974058,0.378358,0.94667,0.858613,0.411161,0.0323462,0.135256,0.817874,0.205111,0.997182,0.959182,0.586195,0.35754,0.862592,0.766891,0.543369,0.0188911,0.647478,0.432341,0.502819,0.649171,0.245775,0.612658,0.424492,0.287063,0.965202,0.103216,0.500249,0.680677,0.984467,0.640076,0.619481,0.206643,0.843997,0.14948,0.659026,0.958974,0.837965,0.39406,0.597988,0.143167,0.558506,0.626001,0.700429,0.464613,0.730748,0.171556,0.353336,0.266322,0.457239,0.274643,0.440322,0.797525,0.758393,0.0871743,0.774854,0.0757198,0.810994,0.818039,0.755928,0.410402,0.11101,0.468573,0.325925,0.442144,0.20201,0.905579,0.360954,0.187768,0.724672,0.0981569,0.207453,0.268959,0.189978,0.300923,0.0384394,0.172232,0.854623,0.945435,0.697906,0.984706,0.257295,0.53121,0.961696,0.319929,0.0303396,0.249967,0.379192,0.669096,0.655455,0.0909675,0.950217,0.470737,0.597442,0.89205,0.72327,0.133803,0.00791693,0.368032,0.72681,0.989397,0.458701,0.226123,0.0932003,0.36718,0.541465,0.626235,0.983212,0.945059,0.360087,0.369101,0.413911,0.898185,0.263658,0.154546,0.0871455,0.0148311,0.126197,0.314927,0.185369,0.34257,0.703965,0.988289,0.296143,0.169471,0.579942,0.609668,0.25845,0.900599,0.658445,0.163243,0.429426,0.797315,0.786599,0.981231,0.866493,0.997023,0.62005,0.658302,0.137199,0.322464,0.569052,0.590917,0.0449769,0.763759,0.24529,0.353414,0.0539219,0.955879,0.413839,0.264099,0.0546814,0.218532,0.603945,0.494481,0.883286,0.225695,0.583984,0.791847,0.916962,0.368199,0.660462,0.774398,0.9127,0.81173,0.727486,0.0637115,0.401488,0.845575,0.226945,0.749307,0.12192,0.71134,0.0433756,0.156032,0.979584,0.257767,0.924504,0.755866,0.116531,0.942456,0.413223,0.170368,0.860529,0.33964,0.472734,0.813424,0.193849,0.577039,0.385809,0.134772,0.905727,0.751622,0.744922,0.95616,0.165765,0.763525,0.815326,0.279039,0.130751,0.962816,0.96862,0.908082,0.0549568,0.703019,0.0233509,0.369569,0.957067,0.401601,0.560894,0.579877,0.366753,0.533001,0.63196,0.472744,0.854419,0.701214,0.599313,0.827045,0.610261,0.574631,0.378158,0.239793,0.680398,0.187105,0.357116,0.21703,0.653522,0.276043,0.203399,0.795735,0.169624,0.0430108,0.639169,0.728923,0.374375,0.180916,0.278529,0.389996,0.135584,0.00829643,0.471905,0.770579,0.261521,0.15248,0.0560771,0.80558,0.691135,0.22306,0.284149,0.666179,0.662204,0.691925,0.781071,0.126101,0.223348,0.0469202,0.660628,0.116064,0.678441,0.238483,0.139546,0.323653,0.29287,0.794741,0.539779,0.712912,0.852071,0.906569,0.673107,0.152883,0.891493,0.720377,0.860004,0.925817,0.328632,0.798867,0.0774209,0.550926,0.664416,0.824396,0.0981459,0.477402,0.636218,0.536225,0.39,0.909167,0.695161,0.582932,0.775957,0.0506842,0.735761,0.0914817,0.269704,0.338079,0.346076,0.0259144,0.823922,0.294128,0.373628,0.107329,0.0576044,0.533482,0.392371,0.860253,0.888644,0.895757,0.289279,0.423398,0.394538,0.718056,0.567603,0.269222,0.46682,0.913122,0.558179,0.606781,0.531772,0.160573,0.282428,0.657336,0.0619922,0.616159,0.604504,0.664102,0.827937,0.00354993,0.182003,0.929539,0.758322,0.371017,0.00318736,0.559312,0.163719,0.894173,0.924904,0.321682,0.854801,0.729775,0.0832555,0.777812,0.921205,0.986842,0.627738,0.990558,0.842317,0.931353,0.0498492,0.873777,0.21957,0.130769,0.782577,0.0571817,0.426851,0.908885,0.300756,0.103603,0.044323,0.0971401,0.64753,0.0515861,0.355792,0.272096,0.0498536,0.54277,0.810415,0.704798,0.814989,0.66596,0.699835,0.0799114,0.971065,0.542255,0.48897,0.214421,0.484772,0.0141882,0.616589,0.428703,0.637647,0.230027,0.563321,0.337411,0.958085,0.794108,0.545516,0.225192,0.702709,0.0736156,0.24781,0.23859,0.0275176,0.700055,0.0392546,0.413984,0.475174,0.363112,0.02872,0.381661,0.158679,0.628071,0.431891,0.723726,0.803103,0.18285,0.92474,0.837144,0.906482,0.0263622,0.370278,0.130352,0.374929,0.357386,0.995871,0.0462344,0.786169,0.358213,0.964616,0.585509,0.876202,0.613422,0.0736824,0.744314,0.120943,0.2451,0.496922,0.0360759,0.107279,0.34184,0.342293,0.600266,0.34355,0.479241,0.291073,0.460227,0.300285,0.416231,0.289748,0.874942,0.655897,0.194994,0.200547,0.774795,0.0372521,0.61976,0.971919,0.366652,0.648932,0.674769,0.0128631,0.692632,0.0284072,0.882637,0.393185,0.487769,0.62971,0.1299,0.0568902,0.85156,0.147908,0.348235,0.0178329,0.671364,0.349656,0.149421,0.155025,0.759461,0.162122,0.507252,0.866724,0.633443,0.108785,0.329505,0.00270563,0.172393,0.109111,0.661982,0.971262,0.679873,0.0651994,0.807401,0.640531,0.6,0.275342,0.439117,0.722082,0.939297,0.291086,0.960324,0.687744,0.224889,0.807084,0.646203,0.640394,0.740176,0.446596,0.0671614,0.113278,0.113559,0.811795,0.488053,0.908651,0.42383,0.305966,0.928645,0.298575,0.26705,0.244525,0.431772,0.874845,0.905019,0.0307077,0.832848,0.438961,0.870367,0.708474,|0.268354,0.965468,0.381549,0.0747468,0.514294,0.536388,0.890144,0.634449,0.619216,0.240922,0.752504,0.121603,0.447302,0.661991,0.754746,0.967066,0.469339,0.427892,0.370635,0.0614417,0.756959,0.399134,0.105791,0.749217,0.563717,0.55867,0.23376,0.234548,0.0413509,0.0853269,0.831556,0.322682,0.703993,0.400746,0.387605,0.0246253,0.194098,0.277448,0.502845,0.0169127,0.121674,0.0747332,0.244899,0.364208,0.471318,0.0707625,0.109724,0.974185,0.0667616,0.758195,0.767839,0.265679,0.659624,0.829191,0.715865,0.718663,0.817955,0.803859,0.319058,0.124143,0.739152,0.614968,0.640296,0.348616,0.98576,0.959244,0.322603,0.304593,0.792642,0.506549,0.466954,0.230668,0.282451,0.379716,0.449779,0.271593,0.733142,0.623225,0.201902,0.0501354,0.617769,0.844949,0.678281,0.727581,0.879287,0.693797,0.819609,0.924898,0.371816,0.0206467,0.700521,0.00336266,0.179356,0.324404,0.735791,0.0993835,0.641651,0.457523,0.99103,0.0840352,0.969226,0.0133697,0.694274,0.610247,0.462159,0.767661,0.579096,0.598827,0.290154,0.63442,0.53472,0.339982,0.790287,0.135288,0.38194,0.516256,0.993517,0.0932545,0.353535,0.641161,0.864883,0.257562,0.755174,0.642528,0.315628,0.426037,0.0930212,0.457087,0.474088,0.658546,0.534913,0.714539,0.29519,0.653444,0.359382,0.572436,0.311804,0.143879,0.472146,0.503616,0.607374,0.809667,0.680502,0.0396571,0.898219,0.786616,0.287502,0.0398205,0.0916904,0.849332,0.244497,0.341877,0.370414,0.939521,0.714236,0.46655,0.300169,0.425371,0.506873,0.274326,0.73523,0.444542,0.716318,0.533317,0.805544,0.406107,0.468352,0.258139,0.263665,0.798063,0.391048,0.728122,0.0894156,0.896497,0.25402,0.745498,0.451475,0.113973,0.124923,0.508749,0.751929,0.821634,0.174846,0.519354,0.1934,0.212016,0.267547,0.308006,0.980144,0.884069,0.958449,0.527091,0.693854,0.513018,0.421854,0.300075,0.382004,0.146577,0.788231,0.0695809,0.209607,0.830617,0.882045,0.0187277,0.635434,0.508176,0.389835,0.543278,0.715534,0.284476,0.974404,0.653634,0.878198,0.636114,0.576698,0.661166,0.549027,0.157591,0.768497,0.372373,0.888758,0.648406,0.242611,0.696782,0.618359,0.85357,0.120427,0.692151,0.36392,0.243026,0.996025,0.90344,0.846125,0.588091,0.586363,0.0363459,0.470629,0.362233,0.612009,0.736206,0.754673,0.461931,0.243122,0.43443,0.792624,0.972911,0.0240013,0.920717,0.58482,0.0539147,0.654041,0.0589672,0.744013,0.697315,0.557354,0.630615,0.847188,0.34257,0.128502,0.567087,0.891738,0.988081,0.133738,0.860665,0.215031,0.544504,0.724158,0.486953,0.997959,0.179502,0.0636792,0.21055,0.692134,0.952062,0.851029,0.916899,0.0857946,0.342211,0.345778,0.530208,0.44269,0.878344,0.0556255,0.494166,0.419602,0.00548869,0.308075,0.902357,0.822512,0.319242,0.889866,0.468366,0.933747,0.783094,0.193544,0.56486,0.847757,0.515752,0.656747,0.00290376,0.389425,0.30112,0.301477,0.0687026,0.811888,0.689371,0.512947,0.867982,0.141259,0.536487,0.416386,0.217551,0.53562,0.819784,0.993457,0.533878,0.290314,0.413885,0.102171,0.882648,0.469983,0.182638,0.152244,0.744538,0.380072,0.417187,0.333613,0.646296,0.7616,0.75468,0.00508803,0.672748,0.10843,0.504335,0.196577,0.147089,0.651556,0.505869,0.275505,0.18849,0.214754,0.442645,0.739082,0.712746,0.219195,0.318033,0.0523575,0.295269,0.0142035,0.249656,0.828066,0.721663,0.431486,0.831589,0.364309,0.608644,0.789591,0.974291,0.929387,0.630757,0.19814,0.0632007,0.686754,0.136622,0.359693,0.783673,0.393885,0.221309,0.479038,0.590097,0.802436,0.490774,0.608173,0.241389,0.819368,0.070574,0.971894,0.374162,0.412783,0.665615,0.44095,0.145457,0.891938,0.473508,0.803476,0.402204,0.924047,0.629058,0.492205,0.583615,0.297977,0.325874,0.528382,0.612797,0.679793,0.163468,0.907445,0.0930718,0.222322,0.621257,0.409054,0.787234,0.22953,0.108722,0.922786,0.556137,0.979077,0.53175,0.222433,0.770746,0.437654,0.107254,0.0608411,0.769164,0.0856711,0.729271,0.704346,0.0310279,0.601196,0.356462,0.527045,0.906026,0.470283,0.860046,0.272147,0.734382,0.911211,0.875823,0.333641,0.907884,0.227588,0.443575,0.198877,0.970996,0.536998,0.425796,0.954927,0.639369,0.955615,0.808855,0.467422,0.246517,0.270746,0.765626,0.0217992,0.700332,0.977209,0.190091,0.0482718,0.713549,0.185994,0.39229,0.505785,0.961197,0.262573,0.683231,0.432099,0.999691,0.555721,0.725851,0.10746,0.265112,0.419072,0.18552,0.400045,0.988023,0.551694,0.994009,0.871528,0.642281,0.853488,0.0988971,0.11254,0.375936,0.44198,0.871381,0.590709,0.599664,0.00351167,0.800887,0.208471,0.133111,0.707179,0.828671,0.208209,0.690165,0.207701,0.54038,0.127427,0.725645,0.424917,0.306607,0.931625,0.864481,0.898731,0.137458,0.0266989,0.217286,0.644335,0.29323,0.289286,0.776062,0.0131794,0.218367,0.994073,0.614759,0.778094,0.917196,0.971389,0.401743,0.806626,0.418594,0.199668,0.228141,0.334638,0.566398,0.489072,0.220162,0.857215,0.730908,0.937238,0.760879,0.658354,0.956151,0.379805,0.732468,0.31702,0.820289,0.208683,0.176862,0.0893816,0.124637,0.186616,0.731798,0.570289,0.0412177,0.542722,0.810641,0.193913,0.553502,0.356716,0.703665,0.407045,0.243938,0.810674,0.743626,0.802401,0.979996,0.749943,0.864461,0.951393,0.8207,0.575166,0.618143,0.465886,0.274099,0.524298,0.268613,0.00440025,0.565869,0.89351,0.950673,0.906871,0.858306,0.585341,0.413816,0.108588,0.560273,0.167341,0.317437,0.103558,0.152007,0.626702,0.543554,0.583383,0.202441,0.663218,0.638884,0.475221,0.69481,0.211999,0.531858,0.0764453,0.57008,0.731444,0.670887,0.0143542,0.00236326,0.116144,0.814359,0.72347,0.457881,0.221326,0.553115,0.523042,0.096682,0.766705,0.713335,0.245329,0.01767,0.218417,0.782371,0.981793,0.0796212,0.609714,0.920437,0.7529,0.963228,0.0585892,0.100847,0.281118,0.611186,0.598503,0.99442,0.969341,0.623455,0.668819,0.371596,0.177083,0.473721,0.436465,0.770276,0.645506,0.702777,0.30504,0.419793,0.103173,0.234123,0.900294,0.61587,0.541567,0.682751,0.128056,0.0502027,0.552967,0.557198,0.639884,0.447942,0.364272,0.0826066,0.691175,0.0573106,0.343711,0.412228,0.811251,0.593853,0.726667,0.795971,0.118344,0.907624,0.0599972,0.581223,0.911871,0.718511,0.717176,0.328639,0.175747,0.939077,0.0973142,0.688472,0.221038,0.0200747,0.067704,0.288957,0.899706,0.0286148,0.936693,0.158979,0.417251,0.587636,0.978316,0.47904,0.925066,0.404611,0.227186,0.358958,0.409428,0.753561,0.517992,0.425174,0.27897,0.498073,0.703528,0.0204499,0.159546,0.327519,0.0245964,0.385342,0.0959786,0.366521,0.585293,0.980917,0.0796107,0.227759,0.129288,0.5075,0.276765,0.334896,0.338773,0.817229,0.759794,0.848458,0.644762,0.450089,0.235799,0.73539,0.341027,0.400902,0.49091,0.559959,0.824196,0.855162,0.876635,0.574374,0.570448,0.170811,0.514714,0.616358,0.974476,0.747405,0.752721,0.133415,0.982596,0.58689,0.412901,0.980015,0.133806,0.487841,0.814669,0.0543772,0.142362,0.924912,0.953896,0.0701504,0.388568,0.507122,0.842155,0.462576,0.587669,0.0719102,0.603875,0.115889,0.989569,0.446932,0.425821,0.981972,0.0736739,0.23043,0.280651,0.618804,0.196058,0.11147,0.990834,0.454848,0.453443,0.298653,0.419791,0.893544,0.327567,0.829406,0.630245,0.726954,0.522899,0.496779,0.215802,0.975509,0.273759,0.941608,0.9939,0.190429,0.899443,0.270156,0.0118601,0.051123,0.717706,0.596851,0.0440823,0.325806,0.790686,0.87127,0.593792,0.825898,0.942224,0.350712,0.338975,0.104815,0.876585,0.357483,0.643178,0.716493,0.179068,0.36128,0.729447,0.857889,0.693613,0.373211,0.381865,0.877756,0.997404,0.874167,0.77762,0.068943,0.386207,0.69953,0.551151,0.489319,0.107937,0.144609,0.33661,0.736964,0.87786,0.260485,0.189309,0.829977,0.705299,0.339723,0.195056,0.136487,0.440705,0.299691,0.864869,0.403954,0.299485,0.975574,0.791799,0.0304527,0.197374,0.046208,0.540473,0.832185,0.748724,0.388197,0.939021,0.780288,0.452725,0.669898,0.473983,0.342642,0.355532,0.158768,0.187399,0.339379,0.997244,0.716408,0.230574,0.126446,0.0240155,0.625886,0.769513,0.174496,0.587311,0.799507,0.168433,0.271095,0.779099,0.625043,0.563925,0.979734,0.426674,0.631221,0.28489,0.0182157,0.546518,0.608722,0.0401719,0.300471,0.311263,0.525082,0.779926,0.933363,0.949299,0.108219,0.838994,0.844803,0.587409,0.461794,0.520472,0.533823,0.471593,0.509541,0.203862,0.921503,0.268862,0.625963,0.225249,0.057371,0.542286,0.935596,0.272918,0.0308411,0.431995,0.0149239,0.766675,0.985728,0.637559,0.83524,0.577559,0.0484113,0.459229,0.056609,0.247334,0.879619,0.0563006,0.651037,0.859996,0.0883967,0.763423,0.61308,0.824766,0.663836,0.624916,0.470336,0.51613,0.3522,0.741724,0.578329,0.74937,0.708553,0.747154,0.0976115,0.578572,0.649277,0.664459,0.718711,0.664204,0.817384,0.243263,0.533171,0.399032,0.774115,0.188927,0.554949,0.312817,0.589924,0.74069,0.311225,0.822579,0.522691,0.786883,0.620441,0.469047,0.433036,0.0295824,0.356143,0.983264,0.271887,0.0190972,0.447349,0.12077,0.691509,0.782099,0.333584,0.0571461,0.0573425,0.20797,0.781189,0.0817001,0.531463,0.61047,0.259822,0.453085,0.640021,0.311302,0.372539,0.07318,0.192537,0.825498,0.00971484,0.956655,0.674427,0.244494,0.386838,0.380638,0.392346,0.118884,0.962545,0.953376,0.0459961,0.927582,0.939104,0.613281,0.718295,0.597856,0.800476,0.286754,0.998227,0.00165921,0.668838,0.61652,0.935153,0.783637,0.240333,0.445087,0.939477,0.893368,0.858988,0.182564,0.112593,0.00849056,0.680777,|0.498028,0.766207,0.648445,0.0591876,0.490535,0.0246364,0.977149,0.818985,0.166458,0.642624,0.322369,0.0984609,0.632529,0.165415,0.676487,0.639179,0.860034,0.225252,0.0131393,0.897955,0.150434,0.640868,0.269754,0.401608,0.0103071,0.0782472,0.902949,0.17276,0.721772,0.198076,0.234571,0.432643,0.575217,0.63619,0.209794,0.884702,0.300901,0.244116,0.71303,0.322181,0.38955,0.230726,0.898808,0.106445,0.710029,0.612064,0.93922,0.109008,0.28275,0.245341,0.628975,0.217217,0.792602,0.996533,0.115829,0.895438,0.25935,0.701652,0.302131,0.969828,0.531488,0.233421,0.582512,0.856074,0.613019,0.21515,0.894597,0.370578,0.97993,0.28424,0.152979,0.56752,0.683476,0.814832,0.962434,0.874973,0.580418,0.475166,0.958751,0.465823,0.939493,0.245149,0.174383,0.270674,0.470335,0.865541,0.634319,0.163838,0.421711,0.809705,0.468977,0.869513,0.12553,0.14001,0.511994,0.669841,0.109169,0.204212,0.966189,0.628334,0.160646,0.030497,0.153546,0.342162,0.141395,0.276643,0.52301,0.910743,0.948221,0.0985307,0.715537,0.913281,0.0530416,0.226468,0.76642,0.262838,0.41261,0.19683,0.362444,0.192534,0.283076,0.726841,0.712302,0.334098,0.0286292,0.886403,0.709827,0.426555,0.197922,0.424502,0.306253,0.613588,0.430776,0.036951,0.203525,0.141238,0.05718,0.881558,0.109162,0.712897,0.191687,0.932962,0.483244,0.472478,0.256402,0.616953,0.0913868,0.451758,0.88109,0.15521,0.885501,0.91718,0.645998,0.163454,6.00815e-05,0.455804,0.00421399,0.82218,0.429826,0.252008,0.225691,0.652921,0.0841232,0.359361,0.77005,0.457318,0.595542,0.721106,0.97883,0.90819,0.293511,0.239536,0.913633,0.976034,0.777759,0.334846,0.549356,0.780525,0.23709,0.882997,0.0904654,0.0987399,0.850638,0.219725,0.745637,0.0116794,0.941478,0.315646,0.029071,0.435959,0.0575423,0.659438,0.171301,0.675105,0.394501,0.728892,0.0681781,0.744487,0.901074,0.337277,0.201329,0.536643,0.0269669,0.302595,0.151998,0.255016,0.613783,0.756984,0.205056,0.0193315,0.755549,0.322328,0.587688,0.966436,0.370695,0.852291,0.132447,0.906326,0.887065,0.415695,0.358548,0.748065,0.331304,0.74127,0.337731,0.966904,0.565471,0.599369,0.859344,0.933261,0.821227,0.43431,0.464326,0.57401,0.794733,0.283013,0.0527831,0.958801,0.335387,0.436494,0.939008,0.530078,0.674101,0.313755,0.1699,0.0104308,0.302714,0.773713,0.0662668,0.00825173,0.0643858,0.54858,0.679842,0.628203,0.68365,0.259837,0.765271,0.43373,0.542562,0.849492,0.0778694,0.162852,0.833904,0.101342,0.713207,0.367142,0.861428,0.343226,0.992584,0.705836,0.320215,0.645226,0.677724,0.969495,0.281604,0.973711,0.736302,0.343687,0.00802678,0.31243,0.202117,0.513309,0.149766,0.0507408,0.149552,0.912744,0.5306,0.52154,0.751042,0.791412,0.574833,0.235692,0.27795,0.883962,0.0285689,0.0340156,0.579591,0.161693,0.727695,0.176106,0.718924,0.0635329,0.606923,0.410077,0.0339931,0.151059,0.681044,0.453048,0.0321209,0.585484,0.958515,0.416136,0.677253,0.779042,0.535349,0.892777,0.817652,0.5947,0.587446,0.760292,0.905696,0.637915,0.811071,0.639292,0.0416051,0.760563,0.539519,0.598202,0.364379,0.621287,0.964109,0.705728,0.100155,0.38591,0.606614,0.466288,0.630682,0.582232,0.125936,0.505108,0.146571,0.759194,0.404549,0.154075,0.948451,0.318923,0.154898,0.253662,0.566149,0.680478,0.457381,0.246688,0.912185,0.83932,0.690139,0.512198,0.965529,0.834418,0.645814,0.66455,0.256037,0.175333,0.82551,0.97864,0.994331,0.111126,0.999979,0.896481,0.943332,0.658933,0.124748,0.446642,0.801236,0.686264,0.586398,0.273248,0.180948,0.00343341,0.530524,0.795648,0.0561959,0.794438,0.135302,0.739429,0.201148,0.544609,0.810824,0.59334,0.0938199,0.0170252,0.526086,0.927254,0.349462,0.139189,0.896509,0.349896,0.453044,0.91486,0.426366,0.89851,0.935912,0.979242,0.300652,0.626099,0.491177,0.124851,0.770986,0.385379,0.281178,0.558066,0.0525974,0.0727068,0.883531,0.999304,0.068129,0.682337,0.528616,0.85561,0.123756,0.450039,0.317517,0.0250939,0.826325,0.676633,0.421876,0.100437,0.153905,0.293853,0.84958,0.441941,0.407548,0.0540006,0.733751,0.18221,0.682918,0.833311,0.756212,0.563803,0.940851,0.909104,0.688667,0.461636,0.812538,0.456,0.616723,0.263025,0.134849,0.662006,0.460458,0.251297,0.390952,0.662276,0.988992,0.088178,0.453407,0.990137,0.616136,0.484402,0.234994,0.0140209,0.224655,0.456392,0.262309,0.00491208,0.280431,0.32694,0.914593,0.390312,0.503564,0.518392,0.196295,0.233248,0.640744,0.214859,0.0512703,0.148769,0.922755,0.202476,0.446314,0.0992656,0.589575,0.983603,0.587866,0.255133,0.86968,0.570798,0.548784,0.613464,0.821183,0.710475,0.272411,0.710075,0.145538,0.927005,0.924681,0.894319,0.552959,0.797943,0.995692,0.30801,0.348587,0.696049,0.175364,0.940274,0.417452,0.833688,0.334783,0.527981,0.158722,0.309284,0.543708,0.0415543,0.858708,0.126741,0.543053,0.641462,0.841271,0.50064,0.443536,0.481202,0.402679,0.801783,0.0657633,0.847475,0.001634,0.926228,0.148415,0.948898,0.537612,0.54052,0.426575,0.635216,0.439663,0.179581,0.235546,0.834113,0.202259,0.843396,0.126989,0.216757,0.345631,0.619679,0.175145,0.695023,0.525352,0.675142,0.691692,0.476486,0.0137588,0.737727,0.665156,0.256232,0.502553,0.464274,0.720234,0.776311,0.063861,0.570638,0.110814,0.803913,0.0987365,0.528518,0.407128,0.540357,0.37738,0.569448,0.657771,0.716542,0.355673,0.216091,0.233261,0.72583,0.00254363,0.634294,0.271924,0.0221741,0.0852891,0.782616,0.484058,0.126715,0.878664,0.782888,0.742755,0.638166,0.981751,0.87813,0.0576432,0.475911,0.585834,0.169995,0.0924354,0.935258,0.591064,0.515447,0.515211,0.87706,0.281329,0.649776,0.718243,0.115161,0.961183,0.0113884,0.579768,0.103973,0.714789,0.711709,0.0029965,0.473894,0.610458,0.170698,0.697621,0.461074,0.154647,0.0773014,0.139609,0.225223,0.577356,0.683797,0.967696,0.706434,0.451797,0.104021,0.0885732,0.506151,0.648959,0.435611,0.0602344,0.606178,0.200366,0.265926,0.608619,0.298437,0.413978,0.555327,0.413932,0.740683,0.928117,0.219583,0.468159,0.573299,0.0955615,0.657696,0.745376,0.437468,0.123542,0.6819,0.569491,0.982892,0.560574,0.73022,0.165784,0.100954,0.992271,0.854048,0.96473,0.339411,0.114304,0.235387,0.119463,0.533362,0.769427,0.417419,0.5599,0.216352,0.874362,0.458509,0.63324,0.261019,0.657835,0.897601,0.223903,0.261087,0.52189,0.944885,0.618501,0.578017,0.139359,0.203365,0.00874734,0.434297,0.55304,0.178463,0.4382,0.0838526,0.596597,0.654601,0.0289537,0.876603,0.0353216,0.74918,0.722023,0.35613,0.785299,0.787995,0.103228,0.418412,0.0324596,0.725814,0.839087,0.782668,0.700296,0.272188,0.281222,0.552982,0.0568922,0.444609,0.582832,0.519874,0.204497,0.460323,0.963405,0.764904,0.41333,0.316246,0.686517,0.488854,0.433867,0.997094,0.727909,0.177762,0.38053,0.431371,0.941941,0.0102057,0.0459477,0.605651,0.77239,0.406773,0.583367,0.527478,0.993863,0.310562,0.872811,0.104634,0.607298,0.609078,0.610291,0.540755,0.566431,0.294113,0.613383,0.996917,0.502992,0.0188828,0.457186,0.0914691,0.746593,0.626938,0.455537,0.0217187,0.854513,0.962762,0.852007,0.613061,0.434692,0.327156,0.476089,0.89359,0.239939,0.00759268,0.736386,0.716578,0.212868,0.0545242,0.682033,0.400106,0.98574,0.551645,0.116095,0.809346,0.938312,0.735347,0.77874,0.318299,0.957241,0.403943,0.705021,0.671896,0.290526,0.101398,0.522095,0.522442,0.0331362,0.343807,0.0936646,0.856186,0.119532,0.277407,0.435392,0.417015,0.355133,0.334722,0.806883,0.550591,0.399432,0.786066,0.132065,0.600216,0.232276,0.91542,0.189924,0.667936,0.569389,0.762622,0.730417,0.0776985,0.887051,0.719178,0.430086,0.667809,0.817369,0.0533262,0.735687,0.129154,0.0607995,0.304008,0.661046,0.974342,0.134943,0.251655,0.548166,0.801915,0.481984,0.453394,0.569064,0.6409,0.949321,0.555872,0.644813,0.308574,0.453281,0.758026,0.742911,0.388134,0.572548,0.641113,0.652397,0.470589,0.914305,0.97918,0.369318,0.768334,0.815522,0.861666,0.227834,0.756655,0.398774,0.452311,0.552938,0.0402232,0.383579,0.0780433,0.727547,0.180564,0.230592,0.325133,0.878928,0.0442579,0.52761,0.043007,0.281306,0.968459,0.536995,0.774243,0.796601,0.802417,0.393353,0.514759,0.0894852,0.473345,0.237965,0.688676,0.738638,0.714971,0.350512,0.325596,0.062008,0.233836,0.0344552,0.554253,0.889179,0.920899,0.0835246,0.759142,0.585527,0.188091,0.480043,0.733384,0.252907,0.644795,0.361184,0.0285091,0.376318,0.755939,0.731707,0.109923,0.926026,0.229551,0.40897,0.420791,0.857357,0.100543,0.895186,0.23512,0.592746,0.808752,0.580866,0.230258,0.970884,0.328863,0.432152,0.489231,0.671932,0.200789,0.967068,0.90498,0.824821,0.816129,0.672114,0.514185,0.80239,0.52458,0.223175,0.925019,0.512053,0.930719,0.537987,0.242926,0.236498,0.31108,0.297433,0.376652,0.892343,0.497274,0.55106,0.471527,0.340534,0.92418,0.772958,0.837219,0.651995,0.889077,0.577779,0.14919,0.362472,0.894729,0.171176,0.611271,0.537911,0.75059,0.13694,0.672113,0.557898,0.947557,0.170662,0.805422,0.770546,0.723863,0.153897,0.419,0.900852,0.480999,0.48894,0.408729,0.516667,0.415376,0.628052,0.310552,0.760177,0.0983693,0.0562572,0.62835,0.97236,0.138233,0.998476,0.198591,0.822524,0.700306,0.745052,0.908524,0.816462,0.424685,0.0222648,0.361443,0.542107,0.734216,0.911373,0.134362,0.269409,0.506548,0.788094,0.807053,0.817895,0.422447,0.925644,0.453774,0.998662,0.976659,0.625563,0.774303,|0.177434,0.412517,0.561517,0.625083,0.232886,0.786296,0.262946,0.66415,0.23509,0.218514,0.995463,0.641547,0.587485,0.293916,0.474588,0.577131,0.309359,0.566235,0.471288,0.00304627,0.767168,0.0394428,0.0912703,0.0565665,0.828598,0.720841,0.842498,0.772452,0.0589576,0.940614,0.588534,0.782114,0.600051,0.0474977,0.808261,0.55727,0.778958,0.857727,0.453738,0.0663919,0.108516,0.18569,0.985735,0.323848,0.704793,0.522982,0.231276,0.198867,0.309069,0.735864,0.0390025,0.410207,0.684224,0.561018,0.87444,0.634652,0.128099,0.0159278,0.812623,0.723991,0.421157,0.787658,0.638282,0.104761,0.581153,0.431132,0.529748,0.806372,0.478244,0.857078,0.424123,0.595591,0.221446,0.0672149,0.560023,0.956117,0.087791,0.776182,0.48053,0.232228,0.892118,0.355665,0.819919,0.634748,0.908481,0.279252,0.682925,0.0280679,0.314662,0.8814,0.470813,0.453104,0.404146,0.308487,0.607038,0.200261,0.974691,0.333759,0.726831,0.558386,0.351344,0.831923,0.823766,0.758296,0.962452,0.00410914,0.831289,0.589721,0.295577,0.964583,0.691114,0.753345,0.672053,0.923664,0.35025,0.676008,0.25464,0.0228801,0.0546931,0.925502,0.67014,0.34508,0.867271,0.179796,0.632505,0.194789,0.2591,0.23633,0.571819,0.918379,0.475878,0.816368,0.957319,0.705899,0.182781,0.470391,0.372856,0.594869,0.826323,0.158986,0.0146403,0.594189,0.556989,0.337567,0.663878,0.0479934,0.149607,0.994656,0.167572,0.466078,0.924395,0.652068,0.53519,0.00242436,0.412359,0.516944,0.559613,0.30502,0.969652,0.426451,0.202105,0.945077,0.0314273,0.185843,0.884191,0.964188,0.621014,0.206262,0.196839,0.0933095,0.885371,0.80137,0.546154,0.264584,0.308943,0.836192,0.083664,0.80531,0.424197,0.599628,0.246931,0.835519,0.323787,0.557949,0.940478,0.201914,0.198732,0.346769,0.804927,0.686748,0.275973,0.298166,0.469326,0.684667,0.255739,0.249199,0.693458,0.221383,0.884328,0.2404,0.879196,0.678229,0.000957131,0.257649,0.906076,0.736483,0.362911,0.757422,0.435526,0.939744,0.72306,0.0017845,0.946831,0.525588,0.761658,0.384209,0.0577755,0.494874,0.891909,0.0824999,0.732296,0.751653,0.383518,0.21742,0.136514,0.356305,0.547128,0.633903,0.846067,0.38715,0.79682,0.648424,0.11104,0.810539,0.19465,0.358366,0.0866711,0.77371,0.535103,0.421698,0.733756,0.52231,0.137096,0.772365,0.468104,0.343376,0.951785,0.357818,0.534677,0.147827,0.224306,0.94834,0.382108,0.00558561,0.353224,0.696676,0.891501,0.879736,0.514637,0.631804,0.361883,0.297555,0.532801,0.59253,0.167769,0.695499,0.715445,0.408167,0.0426562,0.61922,0.48646,0.381584,0.351712,0.96974,0.24516,0.8416,0.800203,0.243202,0.830568,0.409898,0.0908405,0.272226,0.550554,0.963543,0.888039,0.0804428,0.64769,0.621297,0.00861442,0.124733,0.663301,0.646693,0.346347,0.370989,0.423075,0.65582,0.871755,0.461099,0.747111,0.699159,0.937384,0.0968746,0.0556414,0.914348,0.908168,0.966014,0.751356,0.998732,0.175495,0.392702,0.061344,0.636661,0.376622,0.0876891,0.166699,0.412355,0.887061,0.471805,0.511413,0.0851172,0.0162412,0.734729,0.670212,0.616637,0.38076,0.798201,0.651483,0.714945,0.350926,0.589488,0.999652,0.336311,0.865844,0.680127,0.483525,0.905474,0.562575,0.416001,0.498204,0.915135,0.322292,0.260205,0.433094,0.601279,0.83579,0.747706,0.0226787,0.752944,0.26808,0.664575,0.691027,0.62277,0.371057,0.178005,0.0236951,0.876105,0.99736,0.957836,0.672649,0.0779554,0.841341,0.826488,0.784102,0.0725035,0.211174,0.221833,0.20606,0.835733,0.213325,0.279013,0.387253,0.186774,0.757223,0.0822272,0.420096,0.0235344,0.9714,0.293335,0.1902,0.0811448,0.861835,0.524831,0.497543,0.697185,0.0164968,0.294987,0.530417,0.704942,0.889698,0.236478,0.159675,0.69473,0.0811755,0.978704,0.446356,0.567874,0.196102,0.86211,0.658452,0.338638,0.318344,0.863934,0.590392,0.250338,0.165343,0.489455,0.676887,0.582557,0.921137,0.252998,0.316334,0.681234,0.234738,0.990329,0.00730461,0.670712,0.704325,0.53173,0.396759,0.952578,0.569162,0.857139,0.435618,0.0302606,0.956838,0.873653,0.901392,0.514672,0.772156,0.812461,0.753761,0.219297,0.530582,0.382096,0.470335,0.458664,0.267967,0.548994,0.885044,0.971326,0.601318,0.582933,0.120527,0.139015,0.00120395,0.768304,0.704862,0.416266,0.0171075,0.198314,0.101731,0.217859,0.368762,0.450397,0.19201,0.298739,0.75358,0.739828,0.726393,0.0124263,0.966565,0.205688,0.896201,0.974468,0.0836961,0.392226,0.582936,0.505671,0.700207,0.332448,0.732153,0.137636,0.118161,0.244468,0.934999,0.954909,0.836677,0.750315,0.0116149,0.0412536,0.255507,0.847322,0.963904,0.74173,0.731031,0.0295233,0.487104,0.312922,0.70009,0.097294,0.594044,0.341198,0.88817,0.26682,0.411072,0.240696,0.577103,0.510565,0.0952326,0.342607,0.164127,0.381777,0.439405,0.525537,0.0695223,0.116863,0.220075,0.148836,0.45529,0.843819,0.104074,0.885114,0.546676,0.761869,0.834522,0.264557,0.79913,0.819364,0.96446,0.419361,0.205074,0.949525,0.671225,0.58711,0.536775,0.575895,0.545678,0.465317,0.345255,0.684658,0.956734,0.847196,0.082158,0.320911,0.228534,0.0269753,0.593798,0.552266,0.142787,0.0320891,0.226388,0.759324,0.46321,0.56644,0.486594,0.430807,0.193486,0.194275,0.508644,0.0824733,0.547135,0.565413,0.237951,0.505636,0.596928,0.409581,0.983359,0.255329,0.876006,0.959791,0.582585,0.445554,0.888423,0.911476,0.303528,0.923073,0.970845,0.0641373,0.797221,0.366892,0.140896,0.834548,0.615801,0.31768,0.0862862,0.26184,0.557593,0.856187,0.0904911,0.676943,0.438901,0.905241,0.202782,0.339927,0.29025,0.851101,0.817134,0.848733,0.674268,0.721711,0.967574,0.0439285,0.0752124,0.338584,0.203441,0.41277,0.505126,0.669957,0.279509,0.116276,0.222743,0.491607,0.75379,0.37036,0.703545,0.425012,0.584122,0.53147,0.148938,0.276663,0.190145,0.770309,0.0913718,0.191587,0.471657,0.17945,0.518245,0.282454,0.873018,0.310655,0.977081,0.0242087,0.0664096,0.990865,0.769104,0.892253,0.608713,0.0623158,0.626222,0.364375,0.697504,0.346055,0.245236,0.932485,0.0604294,0.173294,0.917795,0.575407,0.111834,0.667877,0.901506,0.406085,0.243445,0.4635,0.11775,0.549832,0.750294,0.819978,0.55468,0.785672,0.350302,0.462859,0.832994,0.119198,0.147007,0.0809135,0.848904,0.28548,0.356877,0.72907,0.209268,0.502886,0.400417,0.743103,0.844709,0.796498,0.311895,0.701539,0.058171,0.85297,0.752575,0.0285218,0.598512,0.711723,0.964258,0.7659,0.813375,0.125864,0.445717,0.3808,0.66179,0.494965,0.780034,0.131885,0.86422,0.245086,0.480424,0.382314,0.84939,0.312218,0.166616,0.675458,0.0445576,0.753523,0.213283,0.1126,0.297855,0.709159,0.237717,0.425156,0.822407,0.102478,0.0348396,0.573118,0.0282515,0.113849,0.466767,0.809918,0.453241,0.634142,0.460867,0.956814,0.436663,0.577736,0.516238,0.915578,0.720405,0.144842,0.734788,0.796038,0.479571,0.897797,0.247665,0.754888,0.945926,0.0136793,0.12257,0.2404,0.0221082,0.991479,0.239999,0.840628,0.779738,0.373051,0.762407,0.408417,0.17075,0.0164688,0.102155,0.190458,0.314478,0.257201,0.456635,0.613422,0.462485,0.80859,0.157419,0.9029,0.886675,0.625736,0.308052,0.155029,0.92604,0.180086,0.475769,0.0591654,0.659242,0.788368,0.439999,0.999935,0.691768,0.525959,0.575236,0.470888,0.051212,0.40762,0.368576,0.637141,0.0254066,0.298654,0.0959382,0.62954,0.45588,0.702342,0.445978,0.649006,0.368432,0.165727,0.62372,0.262677,0.888653,0.92368,0.425482,0.60623,0.660963,0.490732,0.749286,0.26933,0.879478,0.066141,0.325742,0.549173,0.295838,0.398391,0.145933,0.859246,0.148867,0.774195,0.411259,0.0303987,0.124919,0.123958,0.734446,0.0582132,0.431684,0.882647,0.867826,0.0212041,0.534139,0.640685,0.951369,0.0581573,0.185781,0.700571,0.901574,0.450253,0.618896,0.141409,0.236345,0.408368,0.957423,0.98906,0.791103,0.28441,0.838276,0.419341,0.0883515,0.87272,0.092914,0.609407,0.73427,0.739343,0.631321,0.678445,0.94498,0.846304,0.762878,0.221978,0.408382,0.919529,0.373917,0.461091,0.0167081,0.125615,0.0367599,0.764749,0.344051,0.278219,0.592798,0.79813,0.00221229,0.719267,0.861238,0.850336,0.753626,0.735861,0.597358,0.957615,0.944069,0.226712,0.733137,0.302196,0.587113,0.221319,0.23031,0.309805,0.167808,0.110957,0.835719,0.14638,0.728945,0.0401127,0.173982,0.641854,0.0125465,0.307971,0.736578,0.709182,0.912844,0.723767,0.602626,0.20591,0.111425,0.868373,0.637282,0.184264,0.680017,0.279604,0.37679,0.152343,0.551292,0.763721,0.669522,0.191182,0.303468,0.131806,0.0678893,0.468608,0.982458,0.0284736,0.367894,0.48758,0.746812,0.458306,0.550603,0.0888985,0.664535,0.0683535,0.394042,0.969398,0.295713,0.150088,0.86949,0.925748,0.0618224,0.130609,0.694093,0.668937,0.53011,0.521371,0.841346,0.881787,0.751623,0.612756,0.8038,0.118361,0.168269,0.191665,0.340525,0.858856,0.782904,0.979799,0.294887,0.412196,0.50942,0.236377,0.60217,0.802493,0.21054,0.891578,0.637957,0.495984,0.832896,0.846615,0.490208,0.578676,0.742307,0.0925584,0.379645,0.939744,0.977189,0.593115,0.086996,0.115745,0.754249,0.652399,0.189425,0.921876,0.83219,0.036227,0.277895,0.70411,0.75285,0.879787,0.185756,0.116773,0.260999,0.194677,0.371802,0.322468,0.809024,0.58576,0.862648,0.932577,0.241703,0.836874,0.294339,0.473604,0.123631,0.122074,0.929459,0.949307,0.598026,0.384097,0.219354,0.309725,0.602539,0.390917,0.0588134,0.612312,0.88242,0.810695,0.782422,0.317502,0.765321,0.30179,0.193817,0.1931,0.122497,0.503913,|0.0756326,0.95095,0.501785,0.807949,0.605002,0.274852,0.789418,0.180529,0.555292,0.823958,0.274478,0.363595,0.344206,0.420654,0.58757,0.952678,0.781826,0.178214,0.15245,0.997653,0.811772,0.923479,0.337519,0.549319,0.737435,0.275003,0.42312,0.533494,0.173362,0.99575,0.724619,0.653319,0.0109405,0.0629124,0.789432,0.213664,0.214855,0.620244,0.250774,0.589242,0.863085,0.785132,0.800841,0.841099,0.905543,0.294509,0.380129,0.96038,0.449713,0.99983,0.606755,0.738544,0.0930371,0.936979,0.516663,0.450691,0.824293,0.773,0.0894786,0.900526,0.751221,0.455909,0.259816,0.450751,0.296034,0.884869,0.93206,0.21865,0.259427,0.270793,0.668483,0.116409,0.380055,0.736892,0.349081,0.70398,0.312799,0.375124,0.843999,0.735365,0.587735,0.956504,0.760804,0.852044,0.594286,0.652217,0.940545,0.360552,0.93558,0.0337371,0.943588,0.63295,0.784264,0.864474,0.922791,0.705784,0.752334,0.915357,0.670015,0.326589,0.815706,0.0936369,0.400417,0.770582,0.348427,0.648407,0.708324,0.318176,0.576438,0.866628,0.890482,0.236493,0.664455,0.273488,0.657327,0.56699,0.613321,0.00968999,0.0298062,0.237392,0.242389,0.323913,0.726025,0.320156,0.568604,0.90337,0.579831,0.134499,0.35132,0.344661,0.623412,0.990497,0.412358,0.499325,0.717306,0.379675,0.632402,0.28626,0.803927,0.198059,0.489436,0.4272,0.579775,0.48233,0.244768,0.089203,0.795487,0.426013,0.890493,0.603967,0.236078,0.444897,0.926243,0.352176,0.941339,0.38,0.839092,0.602884,0.384081,0.45208,0.500274,0.0635224,0.838852,0.0276931,0.250636,0.661258,0.768064,0.0396575,0.134919,0.733642,0.676127,0.486148,0.543003,0.342076,0.365126,0.128868,0.0940878,0.63174,0.0957291,0.305675,0.967818,0.239588,0.278607,0.0259194,0.765294,0.169773,0.716895,0.337211,0.682274,0.940065,0.234584,0.922818,0.340252,0.178163,0.815918,0.0454894,0.409092,0.00608259,0.618937,0.42156,0.831286,0.721055,0.277613,0.266957,0.954396,0.274749,0.163115,0.168006,0.375388,0.835774,0.160011,0.970395,0.257743,0.770802,0.605004,0.410445,0.68255,0.961613,0.627425,0.573257,0.27762,0.424384,0.79749,0.243987,0.508583,0.36597,0.779251,0.722542,0.173484,0.960106,0.996791,0.419864,0.898618,0.321316,0.54052,0.779667,0.653776,0.00382853,0.40943,0.880102,0.882747,0.63971,0.954741,0.380006,0.484488,0.956428,0.751535,0.181532,0.216572,0.0159217,0.463475,0.289992,0.033326,0.869527,0.993467,0.626306,0.479985,0.723146,0.660796,0.139739,0.193941,0.927978,0.445742,0.0856235,0.309457,0.327389,0.180521,0.0476568,0.451138,0.437301,0.359073,0.659263,0.54016,0.47849,0.526348,0.660182,0.670043,0.911679,0.0192297,0.230749,0.985755,0.344837,0.61349,0.295774,0.0834004,0.39864,0.378058,0.382116,0.310461,0.376099,0.241311,0.0274589,0.699458,0.152463,0.30857,0.591776,0.229551,0.0165691,0.744904,0.253958,0.531142,0.0962006,0.048791,0.883716,0.825656,0.406524,0.869319,0.821417,0.670766,0.529579,0.177641,0.394949,0.670344,0.397275,0.392403,0.075234,0.878401,0.536802,0.290832,0.15557,0.101528,0.886508,0.76972,0.968017,0.665197,0.0829599,0.549269,0.739913,0.0526363,0.362262,0.137923,0.171661,0.667554,0.241638,0.441476,0.045638,0.0205454,0.231551,0.37097,0.250508,0.48021,0.833485,0.240514,0.71164,0.537591,0.994533,0.134334,0.981477,0.24884,0.623517,0.0381474,0.283127,0.417969,0.592592,0.114914,0.355668,0.0178092,0.582242,0.110408,0.903187,0.641208,0.960208,0.2221,0.51985,0.720352,0.0739799,0.251056,0.912846,0.0461354,0.653969,0.681124,0.639218,0.4026,0.818561,0.158595,0.122964,0.11244,0.292744,0.261116,0.522735,0.955671,0.242077,0.635517,0.905918,0.92062,0.293972,0.716458,0.855831,0.972864,0.402263,0.635756,0.839883,0.291604,0.831129,0.973975,0.945431,0.748067,0.352594,0.0940335,0.881982,0.545618,0.874711,0.502578,0.117889,0.825306,0.00256652,0.640312,0.937998,0.912522,0.601918,0.314081,0.523567,0.195129,0.162893,0.341893,0.412221,0.918437,0.32455,0.200029,0.871594,0.692849,0.320254,0.904469,0.906919,0.477964,0.0830792,0.405209,0.683008,0.780921,0.264396,0.984567,0.377522,0.285242,0.0179452,0.425841,0.287188,0.0167246,0.909503,0.744947,0.755746,0.89286,0.0606574,0.709716,0.400155,0.969303,0.0521988,0.695661,0.361687,0.368316,0.430117,0.208677,0.0857948,0.542309,0.916519,0.227895,0.936803,0.25666,0.328122,0.0481376,0.0619993,0.601497,0.973484,0.530803,0.531755,0.551791,0.810669,0.796341,0.184708,0.992401,0.487838,0.306798,0.310852,0.437428,0.928799,0.139902,0.296536,0.11298,0.704448,0.508889,0.548851,0.84481,0.86475,0.776951,0.824229,0.0660986,0.783258,0.488311,0.140997,0.949346,0.378198,0.117332,0.12627,0.390236,0.347617,0.752236,0.869631,0.815089,0.655539,0.838073,0.521636,0.33615,0.123946,0.698935,0.334876,0.969303,0.227586,0.727218,0.921086,0.903576,0.0495196,0.916933,0.864822,0.139834,0.394159,0.953835,0.527902,0.442663,0.0996909,0.720497,0.0470869,0.0752536,0.429534,0.813235,0.117704,0.430705,0.935911,0.0679293,0.373857,0.544274,0.629244,0.76761,0.119922,0.582442,0.149434,0.445163,0.867119,0.547602,0.0341256,0.303666,0.729081,0.143047,0.853041,0.186208,0.945453,0.820239,0.834958,0.768544,0.523078,0.884277,0.540464,0.972519,0.199119,0.682473,0.863149,0.521731,0.5536,0.540838,0.0191389,0.05475,0.345788,0.605558,0.962672,0.241472,0.658998,0.592066,0.102775,0.542017,0.8132,0.841596,0.0352306,0.576532,0.894426,0.365894,0.155956,0.25513,0.0324715,0.104107,0.347481,0.709287,0.810142,0.461229,0.333837,0.389318,0.373894,0.125004,0.811279,0.930551,0.377738,0.34072,0.900851,0.888535,0.25253,0.984138,0.0247875,0.671598,0.507842,0.174953,0.564115,0.283893,0.458084,0.749504,0.421235,0.00911969,0.92393,0.48697,0.661648,0.751493,0.538204,0.0737627,0.754234,0.0243632,0.682289,0.236199,0.925017,0.0256836,0.183568,0.110075,0.757545,0.49561,0.372989,0.187922,0.159351,0.739279,0.759118,0.455905,0.633666,0.962965,0.585396,0.401377,0.193261,0.810935,0.484232,0.801295,0.989188,0.100316,0.66169,0.80265,0.184683,0.81023,0.253224,0.206572,0.925194,0.478565,0.381623,0.301235,0.783888,0.585351,0.121256,0.124722,0.571898,0.446878,0.251148,0.200461,0.672417,0.589902,0.373047,0.778877,0.804593,0.317954,0.209474,0.466043,0.520655,0.480608,0.597582,0.419263,0.634981,0.466132,0.194667,0.821194,0.336235,0.897546,0.939404,0.981161,0.589496,0.725221,0.959177,0.980362,0.673658,0.179918,0.594108,0.168069,0.933495,0.10493,0.390083,0.167293,0.365873,0.203309,0.659997,0.300537,0.674892,0.778152,0.618949,0.435867,0.0690067,0.980363,0.043157,0.937711,0.421735,0.858275,0.714719,0.907239,0.0149049,0.636432,0.654769,0.291719,0.938846,0.545635,0.848913,0.155607,0.60037,0.127862,0.317573,0.32453,0.803689,0.570921,0.349084,0.527667,0.407535,0.209319,0.771894,0.125613,0.769504,0.641407,0.873147,0.0497653,0.289384,0.136463,0.478284,0.475613,0.344453,0.732153,0.315133,0.904703,0.915025,0.392686,0.600898,0.837153,0.35265,0.863632,0.524339,0.289181,0.463858,0.834489,0.253525,0.579644,0.590579,0.74415,0.0669775,0.14054,0.218363,0.450131,0.986034,0.506245,0.591746,0.0757338,0.747866,0.165858,0.205525,0.243531,0.532669,0.00150537,0.97067,0.306894,0.813237,0.293843,0.618476,0.333596,0.33634,0.198781,0.691605,0.500798,0.766169,0.985408,0.269035,0.670148,0.579059,0.68444,0.241468,0.870736,0.512328,0.500899,0.201265,0.27645,0.192251,0.69997,0.0451869,0.585587,0.35929,0.273588,0.382751,0.801366,0.577006,0.812022,0.923455,0.553178,0.0375239,0.510875,0.00378954,0.7426,0.394231,0.265326,0.241281,0.139628,0.639222,0.421097,0.586037,0.873662,0.37132,0.39597,0.726012,0.883843,0.186294,0.588427,0.832227,0.0319209,0.124636,0.635912,0.467117,0.265004,0.554412,0.504581,0.00620157,0.92802,0.560722,0.840254,0.173431,0.187015,0.171626,0.555342,0.817518,0.520128,0.642356,0.590981,0.242132,0.556532,0.0870064,0.427032,0.753156,0.56034,0.221749,0.538152,0.616819,0.960928,0.180679,0.407221,0.287225,0.239065,0.655021,0.747934,0.196849,0.117296,0.165508,0.458649,0.743232,0.475229,0.927255,0.905136,0.529973,0.587402,0.95498,0.572054,0.881553,0.858744,0.783292,0.101672,0.32785,0.209658,0.285033,0.613001,0.428296,0.0668947,0.694349,0.72771,0.288609,0.0318785,0.136857,0.102937,0.838275,0.356993,0.00560778,0.914492,0.0381325,0.582458,0.494537,0.808767,0.925108,0.486695,0.159867,0.221745,0.827721,0.341406,0.272749,0.119532,0.227493,0.374642,0.412648,0.612301,0.884173,0.579103,0.0343392,0.0426657,0.588679,0.245082,0.696781,0.119581,0.81191,0.550655,0.777153,0.0139517,0.297542,0.503464,0.508381,0.0301349,0.937075,0.948555,0.481771,0.640639,0.698456,0.554076,0.789991,0.43947,0.189773,0.1818,0.0849679,0.00234532,0.208034,0.94431,0.322908,0.212231,0.95798,0.730308,0.543099,0.478111,0.928212,0.285364,0.981767,0.861474,0.101536,0.20642,0.683882,0.33706,0.0664411,0.622537,0.0328609,0.411213,0.899911,0.728904,0.195825,0.0545571,0.91904,0.379292,0.0385994,0.311787,0.662516,0.802037,0.297901,0.258832,0.18889,0.141557,0.343533,0.0711035,0.0612856,0.752079,0.227795,0.370272,0.213256,0.0963998,0.792216,0.361961,0.086315,0.680856,0.613272,0.21165,0.106414,0.457094,0.455085,0.196145,0.0382355,0.18638,0.672293,0.382412,0.513441,0.271883,0.383395,0.251229,0.97747,0.253005,0.241064,0.552076,0.816284,0.905686,0.13268,0.130072,0.829193,0.786558,0.482523,0.155098,0.47525,0.535294,0.316733,|0.444593,0.301254,0.372038,0.0699954,0.896856,0.667246,0.0640862,0.899331,0.923404,0.832373,0.166177,0.371619,0.799043,0.0668668,0.362432,0.053207,0.766527,0.235926,0.352069,0.537897,0.547168,0.895481,0.763389,0.410621,0.84692,0.372868,0.545073,0.45276,0.498508,0.400212,0.122585,0.682614,0.176624,0.616953,0.61392,0.418625,0.0658886,0.986749,0.492748,0.813226,0.393758,0.515159,0.652197,0.540934,0.192345,0.160998,0.514911,0.0909939,0.0953128,0.442251,0.160794,0.45156,0.706833,0.217549,0.354386,0.740661,0.196189,0.917457,0.0200029,0.102006,0.892028,0.24013,0.646981,0.918161,0.673676,0.242139,0.26588,0.508344,0.438387,0.898437,0.389466,0.556284,0.489911,0.0143942,0.879247,0.871781,0.0960163,0.137374,0.841032,0.226834,0.458961,0.885145,0.795546,0.142885,0.743978,0.843334,0.237791,0.0784072,0.933502,0.410517,0.843491,0.832347,0.287352,0.342732,0.262071,0.532566,0.467909,0.0110888,0.469734,0.159375,0.868276,0.431375,0.432169,0.951102,0.501362,0.287128,0.986601,0.287205,0.151865,0.707298,0.217753,0.434344,0.690351,0.208897,0.201687,0.573977,0.554767,0.710588,0.449021,0.83909,0.923239,0.698292,0.306918,0.974431,0.755631,0.518188,0.755101,0.327227,0.744322,0.0500961,0.684878,0.754094,0.602251,0.261784,0.585674,0.223821,0.10971,0.382798,0.320934,0.91069,0.102381,0.0405247,0.100382,0.491836,0.641399,0.776917,0.105402,0.634176,0.612346,0.208691,0.175496,0.941413,0.868701,0.634967,0.0652255,0.371412,0.0292236,0.0816318,0.0219663,0.463036,0.104623,0.893598,0.854858,0.953918,0.466564,0.0913699,0.308852,0.047884,0.673774,0.732934,0.909741,0.190775,0.756751,0.0384745,0.702938,0.799157,0.990004,0.498592,0.271318,0.616854,0.276667,0.506826,0.33682,0.768185,0.661734,0.744548,0.791314,0.831866,0.171187,0.332442,0.0235021,0.474622,0.478189,0.0471565,0.603877,0.745482,0.782809,0.305174,0.162769,0.509123,0.770188,0.755498,0.675267,0.104561,0.45269,0.0561681,0.291139,0.067885,0.971765,0.937321,0.814852,0.401472,0.864511,0.250419,0.839582,0.0946091,0.997166,0.912706,0.51897,0.509959,0.166088,0.88992,0.702205,0.854852,0.0674379,0.841368,0.539306,0.624261,0.142619,0.465637,0.683366,0.124499,0.924735,0.511499,0.324418,0.918798,0.149333,0.899222,0.648602,0.0688276,0.996706,0.152402,0.68812,0.24789,0.407423,0.0508361,0.338717,0.039001,0.351475,0.347855,0.521382,0.0728435,0.690417,0.290946,0.735573,0.369866,0.873047,0.80868,0.687265,0.616437,0.184662,0.714195,0.467035,0.636825,0.0336335,0.855366,0.517879,0.469923,0.436392,0.0687181,0.0407098,0.400945,0.298677,0.961659,0.119207,0.111769,0.283548,0.561516,0.61437,0.563048,0.288774,0.788529,0.437717,0.186958,0.721501,0.186352,0.108571,0.846654,0.100835,0.710316,0.555941,0.259174,0.382663,0.327555,0.623292,0.792156,0.473994,0.480671,0.632192,0.980866,0.733194,0.344867,0.143383,0.693723,0.35619,0.361588,0.140874,0.270094,0.300044,0.800171,0.158308,0.909058,0.0999455,0.913334,0.914931,0.0198711,0.433984,0.172762,0.719117,0.509478,0.119741,0.940189,0.491252,0.412177,0.31774,0.447822,0.568466,0.508137,0.370906,0.113424,0.781375,0.902887,0.372318,0.284331,0.13701,0.111362,0.916319,0.103803,0.512375,0.780596,0.322649,0.549165,0.297527,0.00819492,0.196462,0.283603,0.389915,0.860343,0.287521,0.907246,0.933357,0.505309,0.0799481,0.958428,0.695835,0.735462,0.430086,0.901643,0.99079,0.398546,0.103143,0.850724,0.637775,0.138066,0.858485,0.827341,0.207165,0.668758,0.914537,0.822683,0.958695,0.400441,0.608054,0.934847,0.0522472,0.668403,0.853778,0.183692,0.134008,0.0471259,0.330699,0.332753,0.654216,0.208103,0.457297,0.336096,0.858164,0.874988,0.996573,0.422052,0.948871,0.426745,0.403933,0.795453,0.700639,0.7421,0.773947,0.621144,0.316056,0.35681,0.874818,0.434357,0.518138,0.266001,0.465852,0.28043,0.357005,0.0712295,0.881684,0.187591,0.58663,0.568357,0.687024,0.173714,0.911904,0.983016,0.244451,0.634439,0.883597,0.173015,0.218398,0.202953,0.72134,0.723864,0.470853,0.348541,0.128247,0.555973,0.926277,0.892997,0.799189,0.407747,0.871506,0.195618,0.521758,0.796093,0.703783,0.798712,0.7211,0.975463,0.831859,0.270723,0.143178,0.190904,0.912825,0.634641,0.827055,0.611873,0.480274,0.854431,0.187479,0.173932,0.17255,0.699192,0.0904392,0.377041,0.630306,0.539495,0.736775,0.0516532,0.365694,0.246173,0.298275,0.571157,0.616376,0.174873,0.19338,0.174883,0.649025,0.763988,0.340486,0.140737,0.705518,0.660403,0.284803,0.722056,0.538575,0.348447,0.388295,0.370292,0.960118,0.619555,0.964034,0.0189113,0.766069,0.407805,0.0380046,0.38659,0.534917,0.326198,0.0692139,0.812859,0.020718,0.661498,0.971207,0.697453,0.93926,0.894611,0.624563,0.206276,0.897487,0.782914,0.825655,0.102821,0.30274,0.121965,0.136786,0.897102,0.240238,0.752569,0.844653,0.832267,0.544532,0.746764,0.88366,0.427228,0.926205,0.618968,0.518899,0.111388,0.408218,0.87077,0.748313,0.919098,0.082635,0.104824,0.970705,0.637857,0.124879,0.143818,0.0230832,0.00748342,0.511616,0.574061,0.733989,0.608575,0.674153,0.817241,0.577454,0.182426,0.136862,0.815206,0.955375,0.449631,0.798717,0.263098,0.917085,0.124033,0.279499,0.585981,0.450483,0.284675,0.995713,0.340757,0.915879,0.400213,0.160085,0.933375,0.0331613,0.609429,0.847048,0.431059,0.096137,0.833369,0.987864,0.905126,0.49274,0.670467,0.0423658,0.228719,0.656191,0.674239,0.13184,0.37357,0.194618,0.338161,0.326819,0.977837,0.882639,0.100364,0.800056,0.869775,0.36901,0.315028,0.419612,0.94367,0.206638,0.421851,0.992429,0.286322,0.26498,0.166658,0.117919,0.109322,0.972554,0.501162,0.814686,0.855649,0.863897,0.816066,0.454807,0.26158,0.0695717,0.174203,0.436679,0.830717,0.232426,0.396191,0.768571,0.791338,0.530779,0.896637,0.6142,0.870377,0.469512,0.000155389,0.727405,0.903972,0.510293,0.864868,0.73829,0.72025,0.432159,0.778841,0.19923,0.712596,0.040049,0.213718,0.352397,0.177269,0.267682,0.384543,0.640834,0.794544,0.668067,0.211835,0.866502,0.156006,0.64752,0.974777,0.343249,0.617745,0.230512,0.327397,0.415418,0.450018,0.251703,0.180734,0.21864,0.0605919,0.779575,0.231828,0.887506,0.241968,0.608591,0.135787,0.180822,0.652681,0.668017,0.199161,0.358654,0.295957,0.793555,0.341776,0.176011,0.0739197,0.440659,0.611618,0.710592,0.351182,0.137204,0.454497,0.311815,0.04983,0.535602,0.29066,0.177685,0.255849,0.858476,0.450838,0.411524,0.669141,0.744925,0.289972,0.966928,0.965963,0.395976,0.933815,0.361152,0.214879,0.843935,0.815654,0.734312,0.375099,0.173952,0.719992,0.0477545,0.346154,0.653669,0.993722,0.940188,0.874427,0.782096,0.731683,0.577704,0.243957,0.886031,0.0218948,0.23408,0.069043,0.351035,0.950019,0.0672476,0.541434,0.648555,0.341636,0.24693,0.00829947,0.591367,0.0404499,0.775992,0.647624,0.991842,0.916566,0.62397,0.370865,0.0648366,0.697176,0.994143,0.739129,0.902266,0.835992,0.91451,0.52548,0.412087,0.559205,0.167343,0.758338,0.879062,0.908854,0.163352,0.540019,0.350865,0.812737,0.130987,0.586101,0.575316,0.600624,0.696539,0.818677,0.758416,0.00216115,0.142326,0.277668,0.86072,0.513345,0.666063,0.0820275,0.204621,0.903486,0.0373685,0.748807,0.417513,0.886741,0.355311,0.4378,0.103345,0.432201,0.184486,0.58724,0.140424,0.13773,0.835554,0.586473,0.920788,0.101427,0.405289,0.544542,0.65223,0.710621,0.540262,0.0340629,0.539049,0.436326,0.537064,0.292264,0.414944,0.42873,0.20628,0.719769,0.109172,0.390014,0.395318,0.266251,0.194661,0.157992,0.99883,0.112924,0.678172,0.21269,0.324308,0.0208195,0.471729,0.323672,0.511607,0.72362,0.777635,0.97746,0.543782,0.919116,0.950803,0.526833,0.697278,0.266102,0.580596,0.309248,0.287581,0.225691,0.776199,0.977195,0.599029,0.952796,0.344853,0.70148,0.00150108,0.045006,0.112787,0.834158,0.822731,0.940011,0.305555,0.137055,0.636612,0.0376315,0.26912,0.576957,0.00940114,0.143419,0.93882,0.399681,0.0977935,0.24457,0.344987,0.786394,0.292642,0.4282,0.483871,0.435528,0.646798,0.308166,0.19265,0.524095,0.84429,0.341121,0.889851,0.0904804,0.679853,0.469437,0.538315,0.975953,0.176825,0.833456,0.836988,0.752449,0.107253,0.407912,0.881988,0.026619,0.0439585,0.269498,0.708446,0.650681,0.77278,0.0805359,0.164051,0.264045,0.760992,0.123492,0.979477,0.692995,0.0744029,0.650006,0.925862,0.844542,0.86456,0.821292,0.707164,0.403818,0.735227,0.801542,0.590105,0.259512,0.815161,0.322531,0.825337,0.856921,0.668369,0.26543,0.221091,0.0826262,0.696773,0.338114,0.945236,0.632703,0.414199,0.00348002,0.883652,0.332998,0.456789,0.294153,0.820354,0.648847,0.749901,0.725525,0.939455,0.287739,0.00814897,0.944955,0.391024,0.190485,0.964013,0.463056,0.789393,0.699822,0.534433,0.373962,0.591342,0.679678,0.566486,0.765875,0.506066,0.440041,0.944244,0.211563,0.962583,0.599254,0.285834,0.299089,0.712718,0.574437,0.233676,0.969511,0.328299,0.190552,0.113451,0.795869,0.798959,0.0247253,0.465578,0.683533,0.574395,0.415815,0.85363,0.371082,0.974144,0.648678,0.516458,0.536891,0.73473,0.985176,0.108793,0.773312,0.598372,0.427764,0.655573,0.428991,0.899621,0.592417,0.508047,0.204649,0.964014,0.265257,0.0281435,0.506795,0.593014,0.185956,0.687191,0.72406,0.7285,0.119282,0.48225,0.977846,0.695925,0.444739,0.55514,0.584095,0.506525,0.424441,0.703053,0.68075,0.435477,0.385422,0.616396,0.0480453,0.91179,0.831427,0.297757,0.857333,0.935756,0.997134,|0.370614,0.468485,0.396529,0.26658,0.673422,0.801831,0.776963,0.0265747,0.311247,0.161132,0.313006,0.610067,0.982691,0.418106,0.567303,0.753011,0.196083,0.960468,0.184756,0.732479,0.0121768,0.0126963,0.028684,0.577514,0.618147,0.405703,0.982421,0.88474,0.846217,0.088057,0.442459,0.221645,0.410681,0.466464,0.973813,0.994991,0.464827,0.495928,0.832845,0.932996,0.266769,0.286182,0.0718278,0.801461,0.42564,0.0266578,0.205066,0.90304,0.19941,0.0179296,0.0690172,0.215856,0.87803,0.206575,0.648266,0.892175,0.376406,0.421358,0.136377,0.362999,0.657255,0.472227,0.685393,0.430652,0.63947,0.70227,0.558852,0.610159,0.413726,0.104072,0.0144517,0.532894,0.249963,0.778737,0.523624,0.088737,0.896373,0.0175487,0.539358,0.627893,0.542728,0.493995,0.345535,0.604134,0.669442,0.756899,0.646815,0.813661,0.859647,0.552141,0.782266,0.350096,0.132018,0.0423909,0.0404066,0.586865,0.85577,0.165727,0.320758,0.2496,0.66511,0.440787,0.119504,0.681005,0.0148964,0.431564,0.70512,0.920277,0.504663,0.481091,0.707948,0.0488709,0.455084,0.941817,0.558977,0.437521,0.72021,0.199032,0.803856,0.866539,0.58885,0.677194,0.483327,0.819813,0.199408,0.555499,0.625875,0.0680403,0.0164942,0.518528,0.121096,0.476486,0.962319,0.314781,0.565854,0.451318,0.667714,0.571956,0.379713,0.482206,0.0398815,0.291886,0.505477,0.281383,0.631443,0.686565,0.710646,0.0961973,0.855978,0.502598,0.09337,0.36612,0.604395,0.244961,0.109387,0.310417,0.40602,0.653234,0.976014,0.218266,0.78436,0.895417,0.0862006,0.902286,0.819082,0.821493,0.375692,0.923569,0.189746,0.872097,0.730031,0.821951,0.00656134,0.513996,0.814477,0.737694,0.640908,0.294469,0.474597,0.771281,0.739933,0.910389,0.809156,0.458186,0.606173,0.374557,0.0463365,0.204275,0.474584,0.788779,0.640205,0.407083,0.578707,0.465009,0.740366,0.949943,0.569244,0.234685,0.883024,0.990097,0.889726,0.820689,0.412996,0.36735,0.998918,0.40519,0.0476556,0.0476059,0.779859,0.562464,0.975956,0.249886,0.324562,0.72385,0.161591,0.412037,0.190625,0.37704,0.682005,0.198336,0.141836,0.946186,0.345917,0.215151,0.220134,0.543301,0.221752,0.774027,0.935605,0.704836,0.179582,0.977857,0.413857,0.340261,0.437236,0.476449,0.584688,0.0182773,0.381789,0.615694,0.802665,0.635051,0.771982,0.710507,0.914759,0.0483021,0.00156909,0.606467,0.625592,0.515994,0.319677,0.847505,0.327928,0.0323106,0.833081,0.166342,0.840281,0.705983,0.514233,0.546043,0.0390738,0.846467,0.344617,0.838632,0.714623,0.380146,0.3591,0.85258,0.926988,0.76337,0.96415,0.478355,0.472921,0.900934,0.624119,0.675622,0.175056,0.967659,0.597803,0.460389,0.473805,0.757025,0.691837,0.0740287,0.520562,0.38467,0.984379,0.892694,0.242431,0.729296,0.0793242,0.36552,0.978772,0.0584756,0.417907,0.230342,0.693779,0.016082,0.234631,0.970253,0.409516,0.512751,0.0232115,0.873128,0.819759,0.0991593,0.574246,0.306252,0.148101,0.653046,0.999982,0.441025,0.236503,0.622038,0.90724,0.85833,0.782944,0.966882,0.889756,0.412357,0.480069,0.797811,0.697589,0.461171,0.324947,0.0397304,0.600612,0.521289,0.129822,0.535235,0.598066,0.645119,0.981087,0.407687,0.068644,0.62864,0.0655438,0.952186,0.625404,0.303336,0.824228,0.15325,0.549867,0.421032,0.180286,0.189923,0.108852,0.940347,0.935433,0.782308,0.464237,0.412473,0.796252,0.264243,0.649536,0.912179,0.0406827,0.0971028,0.366454,0.945346,0.226779,0.490618,0.344902,0.937747,0.415546,0.302983,0.811326,0.498974,0.626159,0.162689,0.98485,0.868884,0.683575,0.201286,0.757783,0.604754,0.401823,0.467809,0.718273,0.171296,0.646026,0.24835,0.127959,0.928593,0.900199,0.645545,0.212019,0.563549,0.893122,0.0658676,0.558689,0.574165,0.817462,0.521678,0.533916,0.852057,0.600022,0.75414,0.449301,0.314178,0.555992,0.225726,0.935873,0.733468,0.227609,0.538934,0.694013,0.753158,0.544722,0.694262,0.203026,0.189468,0.325604,0.36413,0.164807,0.568929,0.750772,0.501556,0.469942,0.496216,0.95057,0.843775,0.0668068,0.615096,0.612907,0.157309,0.401792,0.722802,0.883859,0.905203,0.0953997,0.772147,0.0861627,0.126548,0.0101432,0.146442,0.156545,0.338837,0.762881,0.447251,0.307826,0.951532,0.698429,0.34069,0.785346,0.71393,0.999419,0.606148,0.56798,0.617265,0.222588,0.0494692,0.689784,0.90011,0.503188,0.378224,0.781167,0.573095,0.500758,0.801469,0.101891,0.456364,0.275016,0.80231,0.844168,0.218725,0.867593,0.803674,0.394939,0.291454,0.127733,0.559016,0.243824,0.151687,0.193004,0.436981,0.027488,0.452299,0.203708,0.426917,0.170237,0.676787,0.586678,0.781,0.0023939,0.909062,0.239037,0.475971,0.145016,0.513876,0.750502,0.237252,0.110885,0.248578,0.153343,0.0857591,0.608551,0.976495,0.565694,0.0861687,0.272186,0.414065,0.737987,0.0102211,0.76713,0.264021,0.612318,0.588989,0.419041,0.542806,0.0182889,0.816254,0.770367,0.258389,0.640905,0.884632,0.456482,0.376953,0.806139,0.794879,0.497703,0.966759,0.485255,0.0534908,0.516436,0.514671,0.508253,0.729856,0.752434,0.054967,0.0330788,0.298563,0.45196,0.136639,0.281753,0.551233,0.387522,0.52767,0.2476,0.845758,0.442344,0.203717,0.262268,0.524257,0.126939,0.149787,0.660192,0.653543,0.373033,0.721808,0.855711,0.330546,0.191317,0.706482,0.472721,0.442207,0.545907,0.0610926,0.489041,0.762255,0.137721,0.922346,0.236964,0.296531,0.448883,0.415805,0.914214,0.464173,0.304772,0.351848,0.986743,0.91706,0.711014,0.410345,0.588418,0.437227,0.905981,0.34475,0.152441,0.777399,0.189049,0.117955,0.216355,0.950516,0.927178,0.575869,0.902803,0.0478049,0.0846711,0.677493,0.41486,0.594095,0.0212954,0.958944,0.45738,0.939706,0.400758,0.904444,0.106785,0.0205985,0.298838,0.0633091,0.53005,0.486144,0.620934,0.774544,0.240971,0.828611,0.134407,0.902808,0.547651,0.0612893,0.603417,0.0068531,0.0943162,0.973139,0.491159,0.507135,0.29897,0.704623,0.0798091,0.927161,0.456462,0.663369,0.438093,0.0608393,0.0165175,0.966358,0.706191,0.0508181,0.925878,0.536468,0.436595,0.305674,0.688257,0.334575,0.56481,0.619476,0.169438,0.179615,0.51424,0.781996,0.72894,0.849183,0.894791,0.567447,0.340504,0.0314956,0.141319,0.27347,0.174641,0.708059,0.235536,0.286743,0.421926,0.127104,0.898736,0.687942,0.500358,0.632578,0.768061,0.450305,0.571718,0.364282,0.224312,0.464131,0.820402,0.649907,0.268735,0.473717,0.300157,0.959724,0.913221,0.154977,0.915602,0.619192,0.340092,0.376495,0.0218695,0.408543,0.234472,0.684816,0.46353,0.725545,0.401498,0.072755,0.724254,0.0594078,0.689864,0.928694,0.597444,0.525656,0.573483,0.709146,0.141882,0.164824,0.55069,0.519326,0.776203,0.360138,0.0965279,0.269371,0.721524,0.878703,0.388689,0.575784,0.620351,0.0291532,0.597776,0.42606,0.00987625,0.341831,0.673438,0.563589,0.517478,0.28704,0.556077,0.606101,0.407392,0.0163088,0.924771,0.441132,0.130979,0.507423,0.196629,0.966529,0.738497,0.735821,0.41962,0.3727,0.465356,0.167746,0.254668,0.436121,0.591447,0.694886,0.932902,0.411135,0.211499,0.107332,0.92325,0.45556,0.273965,0.880216,0.201173,0.604871,0.307794,0.7749,0.816127,0.100038,0.910933,0.661767,0.59183,0.386817,0.198409,0.193053,0.71317,0.773992,0.598906,0.125813,0.557336,0.766406,0.118504,0.472673,0.703977,0.350821,0.12394,0.386927,0.651523,0.540894,0.738085,0.138893,0.611233,0.125361,0.247935,0.383356,0.0807006,0.80291,0.435228,0.562977,0.444127,0.718229,0.83221,0.934849,0.386159,0.397205,0.17857,0.0980881,0.649159,0.155678,0.547272,0.569369,0.440304,0.945934,0.569163,0.931282,0.892616,0.283379,0.852344,0.356296,0.291812,0.514773,0.524985,0.889143,0.359335,0.490252,0.473698,0.69114,0.822113,0.862151,0.546728,0.675393,0.229649,0.645014,0.485641,0.228593,0.212344,0.904657,0.725448,0.898288,0.579775,0.835923,0.959615,0.365238,0.282289,0.209479,0.29928,0.0527245,0.497972,0.932459,0.374222,0.519186,0.562311,0.850698,0.942826,0.580337,0.848819,0.130655,0.643146,0.870609,0.479799,0.302458,0.550062,0.536264,0.62361,0.736947,0.479993,0.375469,0.627558,0.0640276,0.0694761,0.605737,0.682337,0.215833,0.167213,0.118922,0.580099,0.115028,0.146725,0.898106,0.398572,0.742891,0.128553,0.182412,0.854751,0.795799,0.165807,0.490302,0.143539,0.989553,0.262695,0.465694,0.686514,0.231671,0.906683,0.0384845,0.0255196,0.821412,0.371964,0.918659,0.335516,0.218844,0.132831,0.437737,0.473773,0.858607,0.316489,0.61933,0.371043,0.949618,0.843771,0.19769,0.58067,0.556664,0.080273,0.234454,0.315181,0.87096,0.758666,0.0816521,0.212975,0.466336,0.40818,0.146055,0.0223149,0.764509,0.478798,0.460519,0.959333,0.27584,0.940625,0.75954,0.0624826,0.72365,0.167057,0.920452,0.573246,0.663913,0.517749,0.716042,0.816187,0.506754,0.259514,0.985324,0.209989,0.561436,0.715574,0.828605,0.249925,0.701264,0.203037,0.228208,0.887648,0.984325,0.28887,0.649693,0.921834,0.906101,0.337452,0.781022,0.66061,0.96958,0.997126,0.759814,0.5284,0.640672,0.324588,0.853698,0.00795031,0.575847,0.638531,0.664897,0.373844,0.769314,0.0216891,0.763476,0.985796,0.520257,0.78096,0.680678,0.743277,0.403194,0.921573,0.724195,0.00190103,0.401915,0.96088,0.299598,0.82361,0.472586,0.0197698,0.32641,0.855788,0.242009,0.0916758,0.783462,0.150081,0.0942535,0.105149,0.000573337,0.129341,0.53704,0.357603,0.389802,0.0521948,0.85991,0.215256,0.828679,0.605788,0.997115,0.776464,0.110086,0.603462,0.127072,0.593976,0.369859,0.951995,0.948615,0.618163,0.488706,|0.398182,0.0766146,0.012723,0.626046,0.341215,0.183268,0.125612,0.285319,0.380611,0.952749,0.837286,0.471585,0.245671,0.269497,0.85817,0.0835018,0.997066,0.945513,0.433847,0.145386,0.10657,0.311276,0.757463,0.19713,0.00530553,0.354084,0.857268,0.749325,0.278624,0.710941,0.285784,0.708473,0.293999,0.92223,0.504111,0.0236526,0.444116,0.515763,0.494978,0.529341,0.574078,0.672415,0.455166,0.259523,0.42658,0.579987,0.216898,0.0579171,0.511054,0.660418,0.799489,0.566311,0.864071,0.224815,0.643025,0.307555,0.107031,0.0539588,0.289836,0.732197,0.0870153,0.634482,0.781021,0.150797,0.239056,0.562401,0.783265,0.969745,0.182001,0.400724,0.145449,0.799029,0.0275546,0.276345,0.817349,0.00094825,0.431754,0.832947,0.997083,0.789784,0.0930158,0.668875,0.712949,0.355328,0.195683,0.353335,0.731304,0.896852,0.214265,0.596888,0.00166589,0.599072,0.748623,0.1849,0.685933,0.0407292,0.500856,0.127699,0.393066,0.280575,0.132122,0.252777,0.987955,0.0571593,0.203848,0.502615,0.367709,0.747238,0.524704,0.46056,0.52785,0.953968,0.193675,0.909829,0.397783,0.827313,0.842803,0.263028,0.927547,0.977405,0.895303,0.355255,0.250563,0.115244,0.686551,0.382255,0.586738,0.978592,0.680255,0.240664,0.928361,0.696374,0.342025,0.661501,0.053732,0.5524,0.0737795,0.506525,0.37612,0.977782,0.901027,0.41877,0.66739,0.131372,0.528539,0.183382,0.0983617,0.970034,0.228533,0.572547,0.256462,0.993275,0.402985,0.0923452,0.349122,0.651533,0.664592,0.372541,0.229929,0.960253,0.936644,0.678092,0.368862,0.511895,0.964303,0.890565,0.42691,0.526094,0.507753,0.647615,0.541635,0.846637,0.0315294,0.0359653,0.438003,0.258646,0.846957,0.288126,0.539871,0.699944,0.0239201,0.423505,0.685199,0.796374,0.875492,0.547803,0.911204,0.501712,0.412143,0.644923,0.355995,0.130058,0.179251,0.990086,0.663997,0.970428,0.521766,0.163749,0.320867,0.770925,0.483199,0.360175,0.622388,0.222139,0.608718,0.688898,0.21839,0.85788,0.514827,0.712044,0.0618363,0.346056,0.428865,0.712718,0.58119,0.0622572,0.55884,0.534035,0.597862,0.501903,0.568105,0.652907,0.0644249,0.920221,0.551085,0.280382,0.138779,0.613882,0.0442761,0.131328,0.366626,0.822322,0.0838333,0.809836,0.960124,0.138849,0.902556,0.977613,0.0344636,0.690934,0.280429,0.172249,0.0383081,0.176401,0.932558,0.710942,0.436898,0.940529,0.139573,0.73318,0.211658,0.847384,0.839357,0.056456,0.240819,0.199007,0.492064,0.807362,0.341978,0.612528,0.525226,0.0248136,0.320414,0.0722362,0.136053,0.0180537,0.357409,0.123497,0.90786,0.446517,0.530027,0.665535,0.882843,0.761464,0.92651,0.580084,0.789866,0.925118,0.0504323,0.239043,0.351596,0.361131,0.193995,0.768867,0.454135,0.770391,0.84422,0.754252,0.211312,0.120468,0.404257,0.830503,0.861116,0.77263,0.192156,0.680573,0.708269,0.175636,0.364848,0.863512,0.170357,0.582197,0.875287,0.548811,0.853241,0.821727,0.351258,0.865813,0.934757,0.0907292,0.302994,0.927701,0.999251,0.262838,0.0450808,0.349471,0.143611,0.955877,0.630891,0.120864,0.911467,0.389806,0.950246,0.870684,0.824367,0.660347,0.358492,0.0227903,0.829619,0.317148,0.210594,0.633174,0.81414,0.532508,0.0100837,0.935835,0.00628352,0.930274,0.0547292,0.155282,0.00878692,0.329573,0.803415,0.0425617,0.402446,0.228842,0.419261,0.888837,0.78284,0.529784,0.992665,0.135421,0.250729,0.124685,0.767248,0.429287,0.877825,0.0646703,0.541457,0.656743,0.270964,0.93623,0.888608,0.768073,0.518025,0.671488,0.658616,0.320004,0.213607,0.00515616,0.709421,0.169115,0.236181,0.757408,0.324121,0.608896,0.127677,0.977652,0.452219,0.42306,0.713825,0.0962606,0.846472,0.236385,0.219395,0.370388,0.0437716,0.318899,0.474113,0.956033,0.741683,0.893391,0.264721,0.884668,0.147104,0.812359,0.508661,0.219694,0.714107,0.526807,0.821836,0.0836965,0.422243,0.550781,0.182794,0.482395,0.562041,0.747139,0.822478,0.394736,0.354848,0.329835,0.772247,0.19453,0.449725,0.191455,0.935896,0.174306,0.177997,0.389657,0.100853,0.0652405,0.728961,0.989942,0.892168,0.272309,0.14763,0.120221,0.148581,0.378052,0.147994,0.876661,0.208102,0.650402,0.813959,0.768537,0.0607079,0.273981,0.776736,0.347251,0.459836,0.426658,0.531267,0.553194,0.178194,0.129702,0.177228,0.833551,0.775717,0.25739,0.141222,0.995673,0.209825,0.805582,0.64375,0.775729,0.100605,0.0401424,0.224848,0.265516,0.0758557,0.132361,0.456973,0.206825,0.637539,0.006558,0.954705,0.684937,0.566486,0.118821,0.151179,0.599838,0.582217,0.982068,0.975084,0.897863,0.850518,0.333653,0.68997,0.688138,0.871965,0.0438604,0.753247,0.705644,0.797561,0.96848,0.566686,0.762784,0.371665,0.375656,0.69153,0.806985,0.167365,0.378443,0.59332,0.481854,0.484212,0.41301,0.588139,0.959826,0.00862938,0.467702,0.505195,0.491658,0.280228,0.73309,0.705018,0.336433,0.879506,0.525613,0.222824,0.0248996,0.136861,0.680246,0.744709,0.670811,0.142444,0.439195,0.554998,0.572565,0.552148,0.551014,0.0339087,0.297681,0.190203,0.548894,0.470151,0.571649,0.856452,0.902131,0.154025,0.751311,0.913377,0.147742,0.408519,0.578357,0.132722,0.647201,0.297605,0.916066,0.566482,0.155333,0.518124,0.0698106,0.460803,0.69769,0.256614,0.0189198,0.922384,0.39909,0.845964,0.66118,0.463654,0.494766,0.118732,0.456269,0.960865,0.944237,0.289505,0.957043,0.921178,0.678815,0.699369,0.928407,0.70798,0.378601,0.89119,0.640427,0.088753,0.577466,0.0233291,0.346615,0.520094,0.7116,0.628686,0.314681,0.88693,0.456236,0.939553,0.0346208,0.38461,0.327452,0.836751,0.662888,0.789241,0.486105,0.201876,0.864602,0.361956,0.418392,0.352034,0.729441,0.110688,0.39189,0.164511,0.65901,0.283276,0.335632,0.207776,0.956843,0.515046,0.854671,0.905991,0.508531,0.195785,0.919875,0.644341,0.0188826,0.0604792,0.923741,0.400594,0.327906,0.0284047,0.975872,0.0653608,0.81538,0.726021,0.801639,0.685332,0.257255,0.350092,0.0964949,0.365124,0.689815,0.227415,0.378801,0.36461,0.0478358,0.858059,0.149402,0.979671,0.95612,0.0580715,0.22173,0.697225,0.0387152,0.547897,0.209162,0.435543,0.000543594,0.285273,0.680048,0.658237,0.356163,0.526829,0.255641,0.336966,0.342659,0.578561,0.725201,0.188612,0.760519,0.962097,0.692116,0.299805,0.436746,0.771757,0.698185,0.928613,0.350645,0.847051,0.883622,0.615717,0.46356,0.403959,0.498204,0.0220405,0.566264,0.186655,0.84089,0.992465,0.831401,0.832996,0.277745,0.330736,0.543505,0.0224454,0.934655,0.0383747,0.690679,0.772602,0.724369,0.488665,0.561927,0.494317,0.934547,0.362529,0.876866,0.0662738,0.359851,0.646351,0.738781,0.374683,0.0762926,0.785909,0.165824,0.45926,0.472013,0.821758,0.524145,0.657378,0.370616,0.0756647,0.262301,0.521512,0.26776,0.288168,0.0791195,0.236029,0.329214,0.986254,0.816738,0.778621,0.951984,0.566568,0.105637,0.756687,0.492889,0.515393,0.854283,0.16674,0.766159,0.655962,0.494661,0.0183524,0.0192584,0.62629,0.814984,0.092023,0.276372,0.162922,0.232677,0.565773,0.986471,0.699123,0.0994323,0.21203,0.784642,0.730353,0.360277,0.726204,0.229917,0.88311,0.339636,0.42529,0.165805,0.689785,0.537474,0.401317,0.334682,0.197214,0.644474,0.938403,0.112305,0.900494,0.130574,0.762063,0.674535,0.947161,0.43117,0.411977,0.324902,0.635355,0.986266,0.325397,0.891296,0.744622,0.728445,0.573865,0.884053,0.786633,0.222431,0.31053,0.590459,0.671043,0.948505,0.947215,0.308234,0.161373,0.914386,0.0657049,0.789061,0.133801,0.0563411,0.821043,0.53864,0.169795,0.125148,0.00910318,0.0940799,0.934726,0.62962,0.202445,0.373299,0.236491,0.606572,0.831846,0.449223,0.980345,0.0162657,0.510985,0.331833,0.598487,0.760787,0.554495,0.333424,0.994666,0.830992,0.684056,0.618117,0.7475,0.692293,0.85724,0.492094,0.0683905,0.521977,0.076,0.810667,0.555453,0.0220287,0.0860901,0.0891932,0.443624,0.941891,0.047825,0.38671,0.307756,0.209284,0.904395,0.85402,0.662496,0.264394,0.723594,0.359904,0.207874,0.984064,0.604212,0.381148,0.582062,0.836285,0.816557,0.504391,0.798715,0.514147,0.426412,0.585056,0.898826,0.116653,0.863326,0.0258254,0.428159,0.131784,0.841171,0.874374,0.941537,0.753728,0.600547,0.692543,0.96883,0.813413,0.203659,0.709847,0.867799,0.66871,0.193807,0.0539287,0.302042,0.072723,0.396613,0.967489,0.177876,0.907098,0.434421,0.422424,0.0821835,0.828149,0.0595438,0.314968,0.0138,0.493854,0.389307,0.476675,0.806935,0.0976666,0.287819,0.274621,0.851119,0.83864,0.539398,0.798668,0.264616,0.935449,0.802114,0.486134,0.344223,0.0289236,0.430694,0.684689,0.636795,0.483762,0.529823,0.266057,0.861257,0.191753,0.140735,0.310306,0.627854,0.282686,0.116381,0.463897,0.753208,0.0815162,0.737782,0.296462,0.475854,0.111247,0.705886,0.418184,0.593754,0.302353,0.374796,0.239169,0.584595,0.755394,0.705423,0.196562,0.575341,0.480771,0.924474,0.54968,0.506767,0.273522,0.90717,0.257066,0.738452,0.0881518,0.51571,0.330949,0.604753,0.0544043,0.75703,0.580999,0.42123,0.463126,0.0927218,0.579871,0.561549,0.902528,0.0509696,0.477455,0.0990849,0.59906,0.901299,0.636652,0.818709,0.20327,0.319743,0.975556,0.544433,0.823737,0.135759,0.441867,0.874801,0.937862,0.0830323,0.27268,0.594339,0.384607,0.545954,0.790517,0.855743,0.348383,0.0960442,0.753363,0.766391,0.473319,0.795552,0.254818,0.715916,0.249773,0.741337,0.333849,0.279221,0.382129,0.507387,0.608832,0.0160943,0.0750296,0.0255505,0.401814,0.790889,0.217118,0.310967,0.898561,0.662055,0.487687,0.601805,0.179769,0.526324,0.676771,|0.632754,0.56998,0.156403,0.137662,0.381097,0.903023,0.963043,0.372685,0.146055,0.624568,0.177577,0.478684,0.786575,0.453497,0.336529,0.407831,0.749236,0.102254,0.564775,0.384844,0.274905,0.450692,0.500483,0.269239,0.493444,0.0372569,0.997594,0.928706,0.723784,0.904428,0.0660363,0.977789,0.380438,0.434786,0.328652,0.0295315,0.239339,0.0680525,0.488956,0.145438,0.0734917,0.959613,0.704191,0.174489,0.467033,0.966034,0.365885,0.292772,0.263784,0.362894,0.74391,0.158022,0.300886,0.346861,0.13395,0.644151,0.960728,0.978235,0.870419,0.083586,0.700133,0.433202,0.261689,0.884685,0.329751,0.678623,0.507539,0.147406,0.633894,0.650876,0.507343,0.820347,0.912307,0.571169,0.707553,0.354423,0.0913864,0.300428,0.866432,0.93382,0.788778,0.239407,0.738113,0.611025,0.694573,0.462255,0.806935,0.758041,0.264353,0.829227,0.233332,0.947161,0.513303,0.0624051,0.257866,0.157204,0.956233,0.768153,0.216809,0.464511,0.0202203,0.224008,0.347357,0.593704,0.931402,0.0359784,0.769141,0.699642,0.805099,0.560724,0.448059,0.617844,0.431284,0.17721,0.247708,0.0276307,0.513066,0.395426,0.478564,0.731394,0.289214,0.0717145,0.437098,0.166031,0.815316,0.0168096,0.277529,0.70491,0.812157,0.402518,0.987575,0.40889,0.657287,0.277721,0.834953,0.427537,0.936191,0.276496,0.292173,0.421804,0.851879,0.482728,0.589243,0.00594771,0.927404,0.229125,0.44669,0.360235,0.0469617,0.617957,0.0306624,0.477577,0.734173,0.445572,0.593774,0.045768,0.163086,0.00526679,0.951315,0.561315,0.233213,0.730645,0.918013,0.206872,0.458313,0.0311799,0.143611,0.533365,0.870381,0.218094,0.221285,0.579755,0.641566,0.412955,0.798669,0.0104188,0.448569,0.892778,0.990622,0.588511,0.685865,0.175484,0.341385,0.557192,0.993415,0.338217,0.628574,0.517545,0.931289,0.271447,0.691111,0.962758,0.462957,0.42082,0.619834,0.896041,0.622743,0.84713,0.933119,0.896331,0.410018,0.794112,0.796232,0.123227,0.0573188,0.0447564,0.865018,0.751975,0.115965,0.489888,0.896678,0.47704,0.555034,0.989957,0.631089,0.242478,0.132618,0.40297,0.0633485,0.601925,0.843928,0.722184,0.0727997,0.9211,0.774279,0.823959,0.175212,0.958314,0.595737,0.688702,0.132822,0.922035,0.46542,0.346742,0.262331,0.856504,0.840707,0.619749,0.0969017,0.957195,0.917253,0.823448,0.440023,0.794694,0.232266,0.939083,0.246115,0.349664,0.0736839,0.415299,0.107461,0.365032,0.756075,0.89691,0.309887,0.195304,0.699575,0.749552,0.981308,0.146632,0.963817,0.849375,0.629765,0.163038,0.403982,0.561282,0.768461,0.630872,0.156599,0.203052,0.666883,0.346757,0.554019,0.568859,0.240458,0.0777096,0.676461,0.756467,0.751468,0.286344,0.968728,0.808556,0.192423,0.0868226,0.853389,0.205609,0.977504,0.0840868,0.677559,0.910956,0.250073,0.492996,0.602534,0.627967,0.71313,0.621909,0.874128,0.624976,0.82808,0.552974,0.231562,0.0319144,0.812495,0.236511,0.554386,0.0691479,0.367448,0.161698,0.0325312,0.297613,0.757278,0.678895,0.0859752,0.923356,0.215946,0.0943492,0.945916,0.481265,0.099987,0.768972,0.984861,0.094573,0.915835,0.523564,0.176236,0.551863,0.725899,0.977603,0.674425,0.552102,0.453104,0.942386,0.435866,0.0680233,0.30588,0.0478355,0.182473,0.904502,0.721833,0.198418,0.0838663,0.541277,0.254592,0.720856,0.492735,0.166984,0.0257882,0.539524,0.995859,0.229606,0.544495,0.596039,0.141862,0.453926,0.516444,0.62079,0.998378,0.190699,0.0565885,0.970716,0.267165,0.857291,0.518545,0.332065,0.0613193,0.465752,0.179459,0.786798,0.630082,0.849565,0.965001,0.388673,0.754176,0.58399,0.0325798,0.955497,0.930713,0.0477405,0.263133,0.631774,0.192108,0.888511,0.0187683,0.287455,0.452726,0.540301,0.682008,0.933523,0.564666,0.05391,0.048529,0.861516,0.897927,0.00245559,0.855764,0.602972,0.696187,0.756004,0.231031,0.131551,0.226014,0.611627,0.486581,0.184208,0.996622,0.0648175,0.453175,0.179587,0.286627,0.566637,0.699226,0.727541,0.885284,0.343644,0.477664,0.303537,0.436024,0.509215,0.157937,0.331136,0.308363,0.670992,0.976683,0.730234,0.936317,0.0304001,0.468702,0.604087,0.460771,0.685363,0.364662,0.0490301,0.860632,0.752186,0.608454,0.373347,0.930928,0.728723,0.313178,0.62882,0.16869,0.854042,0.242699,0.741426,0.903037,0.625414,0.681539,0.307525,0.443655,0.73856,0.287899,0.613761,0.20506,0.718296,0.252145,0.00849742,0.951566,0.623029,0.415739,0.655262,0.657619,0.100747,0.499967,0.386055,0.320776,0.59056,0.9444,0.923127,0.39371,0.373814,0.751871,0.384985,0.589751,0.251873,0.492081,0.956995,0.0445936,0.0754461,0.619145,0.833901,0.605637,0.945452,0.651914,0.422225,0.244974,0.107806,0.991219,0.0548075,0.304138,0.618011,0.800327,0.734117,0.0215473,0.403138,0.363131,0.765988,0.067565,0.156095,0.924305,0.144041,0.226667,0.90588,0.942375,0.571234,0.400743,0.749621,0.66183,0.329709,0.0294793,0.216927,0.388805,0.819697,0.160507,0.402037,0.00769544,0.68318,0.85527,0.896604,0.81648,0.456433,0.859986,0.901514,0.351369,0.656617,0.357972,0.487574,0.897117,0.496293,0.365284,0.866192,0.437687,0.236734,0.955368,0.315802,0.00635976,0.513938,0.73431,0.634102,0.154703,0.21179,0.715337,0.616257,0.831866,0.254102,0.00106192,0.317243,0.856305,0.941958,0.746755,0.488939,0.474858,0.167164,0.724594,0.962679,0.818422,0.0958155,0.348464,0.0741032,0.632155,0.41905,0.879504,0.755508,0.0371853,0.609484,0.107621,0.0173343,0.176955,0.546148,0.514723,0.00325507,0.0894812,0.996007,0.869267,0.994438,0.639943,0.505494,0.891961,0.509414,0.171872,0.604934,0.137415,0.715786,0.0520946,0.263013,0.69917,0.336136,0.88076,0.00754803,0.52099,0.745727,0.167388,0.688645,0.850597,0.245983,0.64788,0.542502,0.182114,0.0175707,0.971736,0.0365225,0.393421,0.92136,0.523774,0.404344,0.0792545,0.523326,0.180368,0.950176,0.4928,0.950808,0.0690288,0.785196,0.46926,0.349711,0.591605,0.3976,0.577809,0.984834,0.956013,0.152312,0.0839148,0.1042,0.00258565,0.545123,0.042133,0.346778,0.784564,0.514314,0.596988,0.284657,0.899737,0.488645,0.202735,0.765733,0.83459,0.265298,0.133079,0.80311,0.323997,0.659696,0.254791,0.524142,0.0636404,0.569437,0.616589,0.403005,0.882432,0.842889,0.698344,0.385782,0.784905,0.391864,0.416817,0.603487,0.547347,0.0550073,0.611589,0.887315,0.572064,0.450697,0.0971847,0.816264,0.972462,0.502142,0.869376,0.491911,0.0146052,0.808533,0.545311,0.769395,0.159371,0.645216,0.48305,0.416973,0.0380964,0.697668,0.722394,0.255637,0.719929,0.0163069,0.0465623,0.873706,0.326572,0.104361,0.58002,0.484449,0.714027,0.753331,0.107488,0.275384,0.863251,0.939638,0.0317144,0.0409258,0.670527,0.470909,0.0872865,0.760264,0.871168,0.257667,0.210741,0.904459,0.129039,0.125089,0.319956,0.200535,0.0200913,0.690435,0.756874,0.537799,0.956372,0.0611643,0.946333,0.364613,0.388733,0.964157,0.388241,0.948084,0.786634,0.0492825,0.821592,0.675631,0.215082,0.0855967,0.548667,0.87607,0.564004,0.273917,0.231448,0.339906,0.996452,0.78181,0.248242,0.780539,0.429125,0.468829,0.0421478,0.0902205,0.14145,0.438298,0.377182,0.307281,0.590093,0.139014,0.835637,0.83967,0.187932,0.426767,0.706785,0.000520468,0.112121,0.989001,0.103173,0.328435,0.787012,0.253023,0.567736,0.317825,0.229498,0.254691,0.361827,0.686464,0.745171,0.396912,0.66068,0.983962,0.0854461,0.00835216,0.964023,0.370373,0.0627891,0.759769,0.150989,0.972385,0.781786,0.949239,0.402104,0.631262,0.0100306,0.763734,0.142359,0.698138,0.941634,0.591864,0.36639,0.0880631,0.39167,0.048093,0.442381,0.226172,0.333407,0.847625,0.242822,0.0184152,0.436366,0.723617,0.295957,0.917858,0.0432209,0.647345,0.379298,0.556426,0.666603,0.750912,0.0989959,0.252088,0.675036,0.145327,0.769395,0.504059,0.943185,0.206668,0.495486,0.647775,0.555288,0.646709,0.520648,0.140821,0.0262818,0.995476,0.897125,0.0886631,0.889421,0.65456,0.413425,0.968178,0.832948,0.932534,0.213279,0.176538,0.411261,0.902899,0.127429,0.202676,0.979629,0.714097,0.474379,0.16889,0.0733098,0.423158,0.884756,0.639987,0.483686,0.377901,0.754355,0.00523925,0.0224395,0.641426,0.89298,0.947134,0.811318,0.598808,0.640178,0.367958,0.668789,0.624876,0.871695,0.290351,0.732991,0.236792,0.555769,0.423541,0.838417,0.15384,0.344819,0.0695505,0.803689,0.214538,0.76961,0.643328,0.672482,0.770389,0.0620415,0.119059,0.0847088,0.0126415,0.107644,0.206066,0.302561,0.887857,0.891548,0.647341,0.647752,0.185527,0.718087,0.47542,0.111311,0.516342,0.300732,0.439649,0.421994,0.279725,0.229311,0.77047,0.140902,0.593089,0.837689,0.476997,0.223551,0.506424,0.472132,0.667863,0.212637,0.938091,0.6512,0.593606,0.631657,0.649018,0.491213,0.070388,0.39599,0.642205,0.728036,0.7034,0.601409,0.646283,0.136383,0.767299,0.816523,0.66802,0.279428,0.460971,0.224189,0.841097,0.297043,0.248288,0.0690411,0.0592495,0.835292,0.256835,0.446593,0.913926,0.937271,0.0134334,0.395937,0.824106,0.476882,0.706001,0.878745,0.887016,0.245952,0.251432,0.0244291,0.811008,0.404746,0.964984,0.114458,0.345647,0.463658,0.367778,0.899286,0.7748,0.785256,0.417096,0.00778174,0.212742,0.626812,0.490369,0.832899,0.24626,0.015697,0.618384,0.657648,0.118735,0.937503,0.235619,0.92105,0.978822,0.032521,0.704247,0.490631,0.155365,0.173173,0.270782,0.34612,0.543759,0.961133,0.956679,0.82221,0.367864,0.750761,0.731965,0.0998653,0.87061,0.160004,0.961514,0.387051,0.547275,0.196801,0.478321,0.0135154,0.210246,0.473369,0.976571,0.27271,0.7885,0.960779,0.505989,0.909801,0.58347,|0.110864,0.243391,0.935706,0.261734,0.737774,0.46366,0.633461,0.393167,0.958403,0.951011,0.0655977,0.198683,0.48919,0.356055,0.729285,0.717471,0.837611,0.364256,0.248321,0.499485,0.420352,0.255608,0.133169,0.250819,0.887043,0.341332,0.672114,0.326367,0.864478,0.221378,0.527035,0.376891,0.996254,0.578617,0.726469,0.877082,0.631609,0.618454,0.198582,0.365649,0.972109,0.0975533,0.171651,0.626146,0.956449,0.725157,0.335028,0.109556,0.124622,0.515891,0.631615,0.234969,0.496886,0.705947,0.588038,0.828964,0.746171,0.163898,0.268171,0.722519,0.73453,0.477738,0.715335,0.940589,0.969934,0.93519,0.294738,0.820488,0.219914,0.568905,0.377294,0.598221,0.92081,0.585409,0.563295,0.582935,0.999877,0.784117,0.309295,0.602197,0.912575,0.0997838,0.13645,0.216284,0.614546,0.548035,0.766364,0.0126085,0.473314,0.460555,0.440938,0.52719,0.253811,0.0188622,0.142301,0.117595,0.222396,0.895311,0.232231,0.565154,0.232799,0.902288,0.172991,0.492901,0.126282,0.589999,0.461229,0.267906,0.826907,0.6176,0.83268,0.376383,0.639985,0.790501,0.200617,0.937013,0.523143,0.475869,0.147286,0.855448,0.902605,0.396329,0.145306,0.730628,0.826035,0.497832,0.630636,0.55485,0.672282,0.498027,0.879028,0.811428,0.544108,0.84071,0.924959,0.776344,0.434635,0.37934,0.821322,0.533647,0.404215,0.953637,0.540458,0.562576,0.375389,0.203184,0.840892,0.763131,0.903044,0.808188,0.76796,0.534602,0.3295,0.311803,0.0183648,0.850642,0.823082,0.860989,0.189836,0.0907742,0.442639,0.560218,0.431875,0.405202,0.877114,0.931086,0.218613,0.799514,0.616836,0.765028,0.690817,0.0326325,0.838409,0.624753,0.416283,0.903822,0.513604,0.104329,0.109167,0.565376,0.583843,0.509107,0.62963,0.823909,0.590225,0.849467,0.0874872,0.607592,0.427477,0.975712,0.21683,0.545246,0.32501,0.600656,0.311743,0.645691,0.153836,0.302333,0.278803,0.50364,0.55927,0.48608,0.63853,0.598769,0.44098,0.209087,0.916017,0.596124,0.957482,0.8138,0.854704,0.523452,0.922172,0.502087,0.785199,0.79117,0.689712,0.745573,0.0319105,0.322554,0.0951763,0.0623914,0.735711,0.552995,0.505046,0.238065,0.472748,0.624278,0.0530491,0.653844,0.879722,0.749402,0.700778,0.425555,0.455998,0.552953,0.121292,0.0608712,0.305635,0.257818,0.843109,0.676834,0.467992,0.536411,0.0704323,0.689565,0.034229,0.855347,0.779879,0.41594,0.341261,0.419105,0.885418,0.986781,0.314252,0.758089,0.0161452,0.657563,0.511243,0.511725,0.0219404,0.655228,0.0853077,0.406466,0.219731,0.0489299,0.672088,0.313903,0.275694,0.82196,0.273999,0.517951,0.127426,0.0444705,0.59893,0.830692,0.689654,0.383662,0.704433,0.603887,0.0415576,0.983433,0.744019,0.0532615,0.616742,0.0695868,0.509847,0.361313,0.212159,0.755217,0.920829,0.917889,0.341398,0.800221,0.0461212,0.285106,0.298064,0.564007,0.490922,0.186992,0.40557,0.0181925,0.701913,0.25115,0.189717,0.333892,0.257591,0.376798,0.612211,0.521838,0.0337548,0.0683326,0.931968,0.649582,0.630124,0.262536,0.874056,0.0103442,0.43964,0.925655,0.0382919,0.145991,0.95698,0.26026,0.657117,0.893693,0.972432,0.164874,0.268432,0.520186,0.546946,0.780936,0.202239,0.390336,0.878451,0.471621,0.979201,0.228725,0.00965536,0.8599,0.146371,0.2473,0.54403,0.234916,0.374265,0.688487,0.891784,0.530282,0.981592,0.830216,0.314852,0.48908,0.451122,0.34511,0.734162,0.81369,0.337157,0.321707,0.0244241,0.865546,0.79969,0.715869,0.480588,0.815642,0.636639,0.715614,0.484066,0.852491,0.374988,0.854067,0.917718,0.51966,0.754317,0.729634,0.0800141,0.650247,0.103539,0.803537,0.255002,0.391413,0.357014,0.367392,0.208462,0.715271,0.53568,0.767894,0.726935,0.455188,0.603199,0.695264,0.736103,0.396525,0.419789,0.245405,0.189013,0.703184,0.0257823,0.930856,0.308258,0.306833,0.340598,0.266384,0.922014,0.951087,0.611477,0.2158,0.334612,0.685222,0.213733,0.293478,0.692496,0.0732374,0.565792,0.382734,0.965315,0.833267,0.234996,0.411204,0.290034,0.379281,0.691899,0.793281,0.687497,0.944265,0.762085,0.0831773,0.593441,0.365207,0.974693,0.0595614,0.330302,0.702464,0.920816,0.0552311,0.442115,0.592753,0.383124,0.592103,0.643382,0.812966,0.436047,0.681212,0.947984,0.991991,0.167901,0.77765,0.990595,0.0507119,0.45956,0.508153,0.0837594,0.746988,0.329002,0.719338,0.354539,0.119883,0.50972,0.624404,0.430306,0.370133,0.173312,0.00440723,0.54535,0.935693,0.68121,0.126747,0.267189,0.653968,0.199395,0.691599,0.389705,0.0777838,0.910363,0.848364,0.0410777,0.830601,0.397624,0.90417,0.590907,0.0617686,0.283689,0.693071,0.283993,0.71846,0.76395,0.0638306,0.0901933,0.320221,0.361217,0.81094,0.664282,0.504296,0.394213,0.493929,0.809008,0.827179,0.577689,0.249822,0.429807,0.0188428,0.287296,0.918945,0.213888,0.878143,0.172375,0.981903,0.336902,0.635847,0.869878,0.117736,0.656751,0.710381,0.814185,0.904273,0.85672,0.323934,0.00190365,0.0767183,0.648374,0.470583,0.932322,0.585621,0.615324,0.691378,0.136669,0.569342,0.773406,0.197479,0.162808,0.747427,0.701955,0.494719,0.564312,0.534002,0.906235,0.509353,0.458054,0.704757,0.48486,0.490669,0.546441,0.487908,0.533609,0.995582,0.6665,0.140644,0.766176,0.753948,0.0130346,0.743058,0.990574,0.239824,0.383193,0.959293,0.407463,0.826679,0.352082,0.420556,0.842883,0.660403,0.236923,0.893892,0.419609,0.445696,0.666366,0.44725,0.487134,0.0512704,0.349301,0.871938,0.28588,0.217933,0.907663,0.270561,0.554506,0.322607,0.0133307,0.800323,0.992386,0.0453044,0.339297,0.483687,0.305732,0.890931,0.331301,0.45954,0.686625,0.722329,0.6587,0.0722119,0.121953,0.141718,0.364382,0.295176,0.813945,0.151937,0.555075,0.0305122,0.258089,0.519587,0.126445,0.885596,0.362589,0.219859,0.952695,0.64405,0.338189,0.322396,0.888728,0.228247,0.858508,0.562288,0.239175,0.314728,0.891031,0.58237,0.0268982,0.718334,0.538364,0.407477,0.158853,0.872344,0.706993,0.36791,0.172369,0.0802709,0.389086,0.982637,0.896167,0.0157875,0.0929614,0.805189,0.0888977,0.706097,0.568187,0.994249,0.271889,0.492023,0.962505,0.0103733,0.920964,0.98954,0.314706,0.167318,0.996042,0.932227,0.0452269,0.728297,0.893431,0.257768,0.973092,0.95735,0.0906396,0.49419,0.712002,0.45161,0.378748,0.116442,0.335589,0.137825,0.343897,0.767946,0.160362,0.0673383,0.505645,0.746202,0.156343,0.381343,0.923142,0.0633593,0.581933,0.360116,0.44602,0.531647,0.796219,0.471125,0.964483,0.424851,0.494151,0.551979,0.842288,0.638397,0.791988,0.77179,0.633003,0.198596,0.104856,0.524582,0.176939,0.848534,0.115556,0.493277,0.867874,0.641684,0.633479,0.250873,0.34518,0.566221,0.756472,0.414625,0.299802,0.266711,0.327104,0.419472,0.591424,0.645229,0.855138,0.616962,0.308699,0.390155,0.524744,0.567304,0.68561,0.154809,0.0616508,0.453817,0.79971,0.185247,0.532264,0.83375,0.378466,0.44313,0.891492,0.38295,0.167049,0.126091,0.734229,0.998067,0.454796,0.861831,0.785489,0.122393,0.4371,0.121389,0.793393,0.880779,0.199489,0.132483,0.977864,0.0379489,0.141786,0.559707,0.378512,0.324102,0.469503,0.243653,0.979235,0.745931,0.523704,0.271756,0.224229,0.941486,0.0375593,0.639085,0.178777,0.618411,0.268431,0.539728,0.474073,0.397123,0.0972757,0.320114,0.156279,0.32715,0.935081,0.109861,0.770994,0.394394,0.222761,0.736304,0.725592,0.659798,0.00958198,0.654756,0.317183,0.739905,0.212161,0.0444678,0.790448,0.174476,0.619195,0.616932,0.775405,0.324054,0.716835,0.850916,0.196914,0.700505,0.896098,0.146349,0.0833248,0.501789,0.109736,0.0830291,0.784655,0.776246,0.677408,0.554676,0.258971,0.81706,0.335017,0.693799,0.984313,0.0954569,0.0848724,0.0588297,0.13091,0.47455,0.652048,0.0689059,0.304876,0.175945,0.213276,0.303939,0.0406142,0.538445,0.298099,0.381165,0.946232,0.46048,0.363592,0.827899,0.171383,0.200975,0.63968,0.280212,0.734812,0.353349,0.465762,0.575168,0.709947,0.122813,0.0218967,0.148696,0.616512,0.197872,0.820419,0.174355,0.187256,0.386461,0.128023,0.621287,0.0317487,1.63913e-05,0.0435232,0.291832,0.21008,0.678824,0.757131,0.435465,0.834629,0.707463,0.365468,0.535551,0.508008,0.98616,0.681355,0.723953,0.0796698,0.910053,0.742128,0.342144,0.251007,0.0256972,0.0331988,0.932576,0.502581,0.571078,0.551664,0.924181,0.373855,0.887867,0.469566,0.351383,0.494682,0.00485975,0.572264,0.682787,0.810403,0.491887,0.987693,0.287175,0.426548,0.756507,0.326891,0.493689,0.767114,0.376661,0.270814,0.737804,0.946416,0.878357,0.516518,0.745346,0.958141,0.143793,0.446601,0.95498,0.659287,0.246673,0.667141,0.414775,0.174792,0.670824,0.959081,0.957268,0.971275,0.940357,0.277137,0.976798,0.791921,0.948336,0.145804,0.307272,0.0184742,0.769257,0.848261,0.813429,0.662683,0.96605,0.440536,0.625066,0.164779,0.0266199,0.560157,0.554221,0.799434,0.71236,0.0246055,0.284844,0.679559,0.0476133,0.871212,0.345528,0.0656437,0.321519,0.136706,0.573167,0.666029,0.469541,0.305402,0.12045,0.0831497,0.763064,0.237311,0.128928,0.905357,0.201265,0.350016,0.774083,0.949389,0.278989,0.89769,0.8708,0.787493,0.0580162,0.00755364,0.795046,0.777238,0.91052,0.278448,0.482962,0.587891,0.220579,0.656002,0.210501,0.285189,0.952959,0.769717,0.77672,0.296931,0.223603,0.765431,0.736346,0.204398,0.895976,0.495259,0.582723,0.104333,0.6088,0.505034,0.886687,0.887588,0.427134,0.562097,0.28563,0.582801,0.195843,0.218838,0.731117,0.594053,0.148586,0.388572,0.0480958,0.519794,0.92711,0.713976,0.302635,0.970143,0.918321,|0.82988,0.842356,0.333921,0.632011,0.0875487,0.997243,0.2606,0.137093,0.961814,0.352011,0.0814744,0.112778,0.85103,0.347899,0.053268,0.850674,0.76374,0.436133,0.490829,0.258392,0.890185,0.0155535,0.175577,0.0114095,0.94408,0.671071,0.386176,0.810643,0.168888,0.226752,0.294399,0.61215,0.500775,0.74688,0.506921,0.0225048,0.0836934,0.765025,0.496729,0.142466,0.84534,0.6572,0.340734,0.59626,0.347368,0.34825,0.385245,0.480764,0.472501,0.827963,0.630606,0.26062,0.875352,0.577367,0.0753137,0.98826,0.895335,0.92704,0.282472,0.791716,0.824779,0.0335535,0.490301,0.0776365,0.993875,0.862113,0.118632,0.0686669,0.556014,0.484554,0.0288154,0.137362,0.67406,0.172627,0.151897,0.21861,0.645781,0.345525,0.259019,0.323084,0.669264,0.793075,0.204536,0.724397,0.69281,0.975261,0.385396,0.040176,0.457423,0.164874,0.806339,0.100185,0.820294,0.490586,0.524062,0.637223,0.977402,0.120051,0.221541,0.369119,0.799379,0.426066,0.53424,0.0212447,0.214878,0.46799,0.727909,0.960075,0.339681,0.212756,0.777757,0.469113,0.293654,0.18987,0.107624,0.411344,0.103933,0.725453,0.0831641,0.958173,0.659859,0.186114,0.834822,0.261059,0.729698,0.0499814,0.26806,0.216761,0.165553,0.515316,0.502891,0.818774,0.0255085,0.435264,0.394681,0.725492,0.152117,0.0104934,0.0918176,0.422742,0.518598,0.548994,0.211603,0.826143,0.727561,0.98375,0.0733438,0.235815,0.601147,0.241219,0.195074,0.524647,0.825361,0.153529,0.713313,0.861078,0.53263,0.96118,0.0719253,0.45766,0.339476,0.441701,0.76655,0.733349,0.264229,0.261395,0.98594,0.93001,0.926523,0.29379,0.588978,0.1525,0.795979,0.0756733,0.416467,0.16466,0.305093,0.680857,0.472107,0.865701,0.262146,0.420522,0.737949,0.697758,0.0130799,0.260555,0.505612,0.610454,0.579925,0.0688185,0.28886,0.00926131,0.000161588,0.715056,0.398107,0.545692,0.00512832,0.376602,0.741467,0.768062,0.00831759,0.143125,0.361495,0.309147,0.550296,0.362023,0.647373,0.753564,0.613415,0.343366,0.238935,0.0641067,0.295522,0.99054,0.921154,0.692166,0.181412,0.73439,0.534376,0.0645227,0.948869,0.933517,0.380613,0.26655,0.607694,0.984367,0.491819,0.067798,0.161166,0.374178,0.468999,0.4377,0.470687,0.522869,0.731106,0.322224,0.0246423,0.948275,0.74789,0.47546,0.0138895,0.631725,0.769033,0.805372,0.642996,0.270351,0.304885,0.0231898,0.595051,0.90794,0.307428,0.472521,0.424766,0.742269,0.0368818,0.054498,0.520321,0.0165842,0.788687,0.0479758,0.286342,0.348229,0.840087,0.32833,0.360472,0.56819,0.164261,0.518002,0.482923,0.48497,0.30747,0.639409,0.650782,0.616633,0.555842,0.714008,0.28962,0.458015,0.931317,0.213362,0.675122,0.00128418,0.316284,0.231916,0.920725,0.206733,0.0420119,0.623077,0.564779,0.10621,0.0479843,0.00458461,0.126762,0.795637,0.0330391,0.589605,0.446418,0.110756,0.708727,0.804315,0.667882,0.689211,0.172327,0.685051,0.109083,0.0322182,0.137563,0.417889,0.501349,0.758251,0.00672853,0.0488413,0.919406,0.475532,0.72166,0.867433,0.300115,0.570729,0.789954,0.0399973,0.160052,0.610137,0.427904,0.202196,0.627812,0.740178,0.287058,0.931979,0.34254,0.772048,0.069369,0.780551,0.82712,0.713865,0.780633,0.906224,0.923821,0.595624,0.633414,0.354184,0.721551,0.507956,0.758788,0.464185,0.646089,0.246274,0.365001,0.579681,0.128692,0.0953789,0.829662,0.730032,0.00592583,0.988525,0.00748909,0.0259818,0.772917,0.389231,0.347031,0.0886647,0.549276,0.148356,0.51997,0.308983,0.221937,0.942314,0.916917,0.79884,0.377148,0.254108,0.9336,0.0596098,0.885811,0.346481,0.0226895,0.447572,0.29722,0.930122,0.362461,0.01781,0.603386,0.214613,0.107936,0.922707,0.0756314,0.249663,0.011732,0.734994,0.0437579,0.991802,0.312421,0.833415,0.274774,0.0158818,0.454947,0.598122,0.697068,0.00421059,0.937385,0.603218,0.824659,0.331018,0.817043,0.674588,0.615151,0.77836,0.565383,0.807881,0.36498,0.329705,0.390796,0.660283,0.200865,0.870143,0.0343437,0.392434,0.400295,0.104255,0.242654,0.469095,0.878641,0.754645,0.282013,0.123224,0.905765,0.544548,0.472219,0.40274,0.859506,0.267155,0.573556,0.35508,0.667756,0.854139,0.117974,0.0783346,0.200231,0.852481,0.758977,0.954508,0.942634,0.356076,0.643894,0.132947,0.995246,0.411244,0.662312,0.995031,0.958431,0.97625,0.910527,0.621361,0.863454,0.830536,0.703901,0.214519,0.0681342,0.628348,0.242825,0.360574,0.811473,0.970351,0.293351,0.922555,0.121767,0.621611,0.802962,0.564583,0.307516,0.954111,0.386736,0.624058,0.26804,0.334952,0.709417,0.444845,0.261437,0.611137,0.0040645,0.10371,0.995987,0.0997352,0.0253044,0.604074,0.834718,0.0457833,0.655318,0.977807,0.521249,0.209813,0.68372,0.271746,0.484591,0.686391,0.755713,0.0578237,0.125674,0.861226,0.742493,0.0833023,0.210131,0.0840683,0.613194,0.791966,0.898842,0.15195,0.693549,0.0400189,0.786425,0.422559,0.872792,0.439399,0.794601,0.282631,0.858666,0.989376,0.913891,0.685819,0.0290794,0.906754,0.132246,0.878929,0.437705,0.964076,0.426628,0.332456,0.927434,0.277089,0.563597,0.0136288,0.814147,0.991695,0.805635,0.877506,0.826135,0.665493,0.768612,0.541228,0.796324,0.645872,0.633951,0.542593,0.863145,0.0943145,0.248336,0.927154,0.0602164,0.115373,0.00985205,0.784864,0.154949,0.0599135,0.420414,0.466347,0.525022,0.0910473,0.389827,0.0423762,0.464848,0.28986,0.242929,0.959381,0.767239,0.456473,0.0947044,0.168159,0.359952,0.627922,0.00970948,0.182606,0.584807,0.815632,0.80015,0.958075,0.884531,0.11144,0.81575,0.939889,0.790301,0.958434,0.192225,0.440543,0.950787,0.150467,0.555577,0.925839,0.362452,0.633156,0.831125,0.261821,0.43068,0.465204,0.695105,0.236109,0.139146,0.758037,0.30387,0.710669,0.552874,0.968165,0.43167,0.446123,0.216595,0.232255,0.565961,0.277297,0.350891,0.518703,0.639976,0.438607,0.75487,0.309239,0.0750882,0.567128,0.665359,0.866253,0.62579,0.157634,0.15595,0.593422,0.59908,0.123093,0.940354,0.278244,0.74597,0.883328,0.218535,0.664909,0.743447,0.851323,0.71279,0.01699,0.0601402,0.375102,0.519482,0.281612,0.599216,0.547712,0.842491,0.32014,0.86663,0.612337,0.189985,0.581045,0.0169669,0.501373,0.230945,0.922439,0.0574527,0.949918,0.71633,0.0770164,0.0355085,0.326843,0.677335,0.732483,0.0965611,0.29454,0.650028,0.54675,0.476123,0.604623,0.502664,0.00291145,0.106654,0.665685,0.332651,0.7216,0.938521,0.451946,0.544988,0.401818,0.263497,0.87995,0.393857,0.231228,0.991256,0.827285,0.827621,0.0673028,0.862076,0.177809,0.226062,0.43891,0.213523,0.00758725,0.700679,0.550835,0.784749,0.738185,0.293688,0.00104749,0.618364,0.674663,0.59921,0.214225,0.293913,0.153723,0.0875522,0.198833,0.464495,0.492866,0.521801,0.673651,0.0365798,0.863609,0.943782,0.280462,0.869604,0.434886,0.626876,0.888214,0.0493211,0.312745,0.843408,0.409062,0.83523,0.693437,0.892917,0.801461,0.872744,0.589502,0.651444,0.257655,0.954227,0.82139,0.153434,0.864352,0.769743,0.264428,0.797545,0.926223,0.756726,0.98181,0.4095,0.795446,0.0240985,0.914549,0.363309,0.704064,0.365492,0.535093,0.483066,0.667677,0.361984,0.686026,0.413131,0.695742,0.498019,0.921646,0.0621235,0.0364823,0.661426,0.355136,0.634765,0.708425,0.910148,0.502665,0.881729,0.965122,0.698642,0.828081,0.507501,0.409339,0.407624,0.206595,0.236582,0.190343,0.691512,0.146559,0.363129,0.248042,0.73978,0.00819558,0.0697228,0.206107,0.853637,0.151797,0.38955,0.3548,0.368754,0.103343,0.982695,0.0340772,0.768155,0.122977,0.121482,0.671872,0.584387,0.100515,0.74985,0.05033,0.592768,0.277586,0.324905,0.461389,0.129805,0.469514,0.652923,0.409308,0.133153,0.504083,0.0736308,0.334348,0.0773499,0.811031,0.449767,0.612696,0.184874,0.532118,0.708629,0.305361,0.0432265,0.582692,0.414514,0.103986,0.063902,0.964646,0.774524,0.672177,0.772797,0.190496,0.350015,0.795867,0.896194,0.476142,0.206641,0.556251,0.0522642,0.908691,0.0658584,0.632088,0.276171,0.470076,0.475302,0.936326,0.269284,0.0685228,0.869875,0.574103,0.189685,0.704559,0.777368,0.250145,0.61086,0.569596,0.500901,0.66378,0.880103,0.502819,0.0488523,0.898695,0.712873,0.193546,0.687367,0.431682,0.556578,0.434173,0.300412,0.22568,0.769348,0.163989,0.624796,0.860311,0.376803,0.476808,0.652927,0.929439,0.802323,0.176646,0.709081,0.818307,0.0292784,0.786805,0.727721,0.0839601,0.759988,0.462088,0.152208,0.20109,0.382316,0.835159,0.829694,0.899821,0.920003,0.890868,0.372359,0.0703063,0.498393,0.0917659,0.232082,0.836303,0.845427,0.631379,0.0993002,0.438613,0.341804,0.296482,0.166501,0.612517,0.46457,0.896598,0.628873,0.23358,0.0727104,0.865588,0.0964241,0.728613,0.0761116,0.53021,0.921033,0.758694,0.226546,0.316899,0.707651,0.40307,0.464628,0.594313,0.616518,0.333216,0.0868189,0.153072,0.253551,0.0357171,0.0215301,0.437272,0.208397,0.692151,0.461717,0.63985,0.422098,0.654832,0.238665,0.86612,0.28288,0.0810896,0.434635,0.110754,0.0785214,0.431442,0.598794,0.818538,0.116287,0.709433,0.206389,0.48306,0.270898,0.50588,0.0925069,0.148885,0.393209,0.970297,0.870895,0.48228,0.855546,0.44589,0.115805,0.402952,0.555167,0.548772,0.728893,0.614623,0.486909,0.376779,0.1655,0.843115,0.881756,0.217034,0.0497816,0.171021,0.213718,0.495744,0.144235,0.730984,0.510418,0.426908,0.306228,0.437029,0.499359,0.18829,0.16398,0.799259,0.444562,0.973244,0.187189,0.58143,0.030828,0.345741,0.298516,0.617497,0.986868,0.621835,0.633017,0.184846,0.582044,0.917552,0.682555,0.884686,0.989384,0.442116,|0.537147,0.832458,0.502409,0.597537,0.786967,0.807661,0.345335,0.562722,0.919736,0.758828,0.2129,0.853712,0.410873,0.27291,0.960217,0.272535,0.822883,0.892392,0.824586,0.379935,0.536541,0.0764099,0.47547,0.358017,0.844702,0.969733,0.918406,0.546212,0.445694,0.569844,0.286901,0.754638,0.770691,0.331337,0.34591,0.213438,0.839362,0.104152,0.0772181,0.920319,0.917583,0.150862,0.262417,0.595948,0.95616,0.0137629,0.873331,0.814861,0.833136,0.0384057,0.337649,0.182711,0.585969,0.965451,0.199786,0.704936,0.444687,0.636316,0.413158,0.488179,0.101922,0.978573,0.039225,0.665246,0.567634,0.887501,0.385735,0.554922,0.220466,0.332198,0.571903,0.5887,0.817088,0.133674,0.116346,0.354518,0.739234,0.127131,0.228372,0.849755,0.0319123,0.666209,0.927256,0.58037,0.926105,0.605074,0.426254,0.76961,0.494673,0.0909564,0.409648,0.272175,0.3356,0.123048,0.641664,0.527382,0.174673,0.195095,0.43942,0.468588,0.113797,0.306563,0.450339,0.406941,0.835568,0.485305,0.0842905,0.862076,0.185991,0.806826,0.554245,0.743001,0.874277,0.0350336,0.799806,0.0399536,0.272454,0.248015,0.714175,0.443627,0.387603,0.133201,0.318443,0.384405,0.294967,0.0279018,0.477311,0.336618,0.165938,0.275008,0.272548,0.36658,0.960304,0.243856,0.483907,0.53124,0.314168,0.117401,0.676485,0.356324,0.266268,0.771273,0.00770259,0.472831,0.832406,0.609682,0.0428358,0.323123,0.273733,0.0396665,0.462823,0.123689,0.118211,0.594962,0.449803,0.710603,0.761721,0.687204,0.467188,0.446419,0.805126,0.327401,0.20848,0.840154,0.226627,0.146469,0.336073,0.254354,0.261217,0.0480424,0.605835,0.254443,0.894653,0.362541,0.716716,0.349064,0.978346,0.191331,0.732033,0.0362116,0.819189,0.856622,0.293889,0.731056,0.611073,0.605009,0.598638,0.871838,0.413056,0.724295,0.157356,0.542662,0.608647,0.250047,0.180744,0.54066,0.811066,0.187587,0.93193,0.275034,0.851514,0.482936,0.963211,0.663477,0.883383,0.663966,0.381361,0.870413,0.560116,0.212252,0.19685,0.409446,0.275721,0.775794,0.650608,0.374483,0.792942,0.694591,0.0437118,0.335282,0.00908947,0.363594,0.515717,0.882241,0.505973,0.737762,0.252802,0.754457,0.483025,0.674307,0.82478,0.799251,0.547474,0.258216,0.628037,0.758006,0.845734,0.0295124,0.836801,0.903192,0.13512,0.111768,0.541245,0.530959,0.715745,0.141909,0.745335,0.590883,0.706474,0.57731,0.0664267,0.989651,0.320387,0.400956,0.602086,0.0915741,0.649758,0.0128389,0.493607,0.28348,0.910215,0.317117,0.0999297,0.882079,0.946911,0.557188,0.170222,0.842675,0.558384,0.880176,0.4173,0.736177,0.0899078,0.627904,0.750656,0.717659,0.127333,0.843844,0.646774,0.152866,0.175232,0.949959,0.0353279,0.212885,0.913005,0.247745,0.857772,0.469269,0.766085,0.0719022,0.531754,0.52231,0.694383,0.138793,0.334941,0.502004,0.691045,0.94679,0.743982,0.222128,0.474765,0.0803269,0.192521,0.332144,0.0923985,0.116533,0.124433,0.424236,0.771818,0.866211,0.0314434,0.304055,0.299237,0.693322,0.0509433,0.330837,0.258843,0.798167,0.773772,0.115199,0.62559,0.754422,0.90571,0.132457,0.899478,0.0930266,0.375338,0.793707,0.315622,0.357413,0.677551,0.0305054,0.387068,0.725475,0.866508,0.53236,0.217496,0.251981,0.899609,0.613345,0.250396,0.156827,0.548786,0.474751,0.0450616,0.696188,0.79519,0.84796,0.634318,0.780571,0.550413,0.909995,0.918824,0.869585,0.970919,0.317344,0.324372,0.96961,0.952893,0.823038,0.0687699,0.683134,0.597726,0.621706,0.346712,0.102051,0.511685,0.630358,0.343423,0.928125,0.786664,0.568943,0.995728,0.718849,0.0145454,0.688554,0.308688,0.0192505,0.791315,0.311867,0.454456,0.41812,0.557141,0.695245,0.284322,0.931817,0.602256,0.201679,0.17979,0.232547,0.909826,0.259997,0.0187571,0.814656,0.0976908,0.31065,0.376793,0.00902462,0.0886862,0.180961,0.100372,0.171737,0.925872,0.620009,0.286049,0.87409,0.796021,0.769104,0.477432,0.327407,0.549602,0.481141,0.391111,0.711333,0.295713,0.453279,0.814637,0.794656,0.474151,0.739409,0.418083,0.141569,0.70944,0.549823,0.109928,0.683947,0.39353,0.294822,0.814043,0.446607,0.316676,0.624099,0.660861,0.586962,0.533117,0.898089,0.529488,0.0805262,0.382816,0.00572306,0.0411731,0.674937,0.391585,0.108068,0.577333,0.851298,0.247259,0.494648,0.24381,0.742455,0.705383,0.209827,0.463082,0.862616,0.575068,0.455682,0.777713,0.24719,0.911001,0.856099,0.611289,0.92935,0.503671,0.29536,0.782476,0.0995282,0.895602,0.80656,0.510522,0.883406,0.102819,0.0239233,0.148285,0.695617,0.975816,0.0874817,0.197751,0.587876,0.289293,0.0389091,0.587545,0.839252,0.217182,0.511348,0.641349,0.0637519,0.390112,0.962956,0.0375205,0.109736,0.469484,0.0882158,0.576915,0.920095,0.366413,0.759172,0.187947,0.461866,0.103662,0.291546,0.462428,0.540197,0.0867206,0.982499,0.919472,0.604227,0.965377,0.722853,0.75945,0.420465,0.557552,0.619001,0.59324,0.881935,0.0950561,0.134836,0.0439485,0.191613,0.344148,0.760926,0.903704,0.538874,0.536684,0.429727,0.542792,0.799424,0.978817,0.458335,0.929576,0.883205,0.0185258,0.934687,0.68575,0.626156,0.328135,0.00466609,0.0768535,0.0829107,0.253325,0.414399,0.937183,0.190362,0.562746,0.408196,0.319181,0.0867912,0.295007,0.199381,0.0361182,0.65438,0.552546,0.0119645,0.514157,0.209482,0.64785,0.656279,0.0964189,0.648594,0.0485927,0.331709,0.411253,0.384358,0.508641,0.778332,0.9285,0.418278,0.0950787,0.0208037,0.542667,0.0147201,0.464833,0.600166,0.282057,0.3135,0.429911,0.435655,0.384121,0.152024,0.908411,0.734304,0.195107,0.864794,0.103992,0.321918,0.37175,0.616577,0.103459,0.191355,0.982593,0.973188,0.996222,0.12201,0.213961,0.296204,0.321976,0.26313,0.915411,0.0398845,0.808149,0.693488,0.724501,0.857974,0.534728,0.989225,0.26771,0.873508,0.808021,0.382872,0.00588048,0.677176,0.950231,0.628018,0.39907,0.591059,0.206113,0.38502,0.579134,0.809777,0.506642,0.937033,0.502629,0.44578,0.237513,0.201416,0.197733,0.812794,0.237485,0.921573,0.96243,0.846137,0.762105,0.771267,0.444241,0.378079,0.796138,0.888667,0.268756,0.353413,0.936488,0.0539608,0.370854,0.0244722,0.965273,0.603076,0.940157,0.447779,0.446492,0.268868,0.324884,0.689464,0.599657,0.0399085,0.308327,0.7902,0.396055,0.170827,0.262707,0.456836,0.0078277,0.526892,0.848777,0.846309,0.439013,0.930024,0.948689,0.749051,0.153808,0.481533,0.0293981,0.118222,0.40123,0.238175,0.802045,0.176624,0.213501,0.341337,0.470868,0.54542,0.343079,0.920819,0.804985,0.939368,0.787227,0.397676,0.795827,0.104149,0.960326,0.808555,0.144569,0.587352,0.4825,0.862019,0.62963,0.508262,0.335307,0.457858,0.141128,0.716949,0.666071,0.594292,0.339296,0.629211,0.419037,0.397539,0.887797,0.526956,0.734428,0.927782,0.302971,0.624047,0.489336,0.0114451,0.773316,0.463678,0.0142143,0.790649,0.513765,0.94631,0.336012,0.663037,0.930248,0.727227,0.550231,0.521819,0.298551,0.0769913,0.0232263,0.314452,0.296249,0.539927,0.858333,0.507851,0.320851,0.732415,0.921185,0.369206,0.329317,0.571226,0.947561,0.164051,0.961822,0.196967,0.524254,0.663386,0.736325,0.843791,0.232845,0.971842,0.035572,0.324865,0.718202,0.882042,0.218679,0.472072,0.485093,0.311603,0.288099,0.559775,0.46298,0.256206,0.627403,0.822594,0.799948,0.044818,0.569303,0.401916,0.969198,0.0387216,0.830598,0.241724,0.523407,0.584667,0.291157,0.683374,0.0583172,0.435506,0.165097,0.781361,0.941736,0.435155,0.0107421,0.973798,0.333397,0.439896,0.0490891,0.567262,0.601862,0.634518,0.41751,0.798246,0.210138,0.516271,0.373171,0.496775,0.122024,0.953693,0.887988,0.404787,0.99189,0.0961752,0.224112,0.986301,0.80891,0.46275,0.615025,0.576237,0.874913,0.505959,0.134515,0.117436,0.127174,0.783495,0.141198,0.92316,0.304222,0.10144,0.0519928,0.159226,0.702276,0.892003,0.868906,0.000599742,0.851052,0.702429,0.742364,0.53622,0.389291,0.455652,0.541378,0.937547,0.276186,0.973618,0.0791612,0.346139,0.00387025,0.563583,0.791698,0.644812,0.590186,0.616738,0.857116,0.284618,0.125046,0.646047,0.942234,0.654175,0.59714,0.568653,0.219369,0.611379,0.433691,0.156146,0.876752,0.6169,0.548607,0.49342,0.570604,0.792332,0.735532,0.577296,0.352428,0.103231,0.429846,0.0737697,0.646146,0.478247,0.581307,0.458862,0.450369,0.353727,0.478326,0.800456,0.770798,0.77428,0.638289,0.15578,0.318309,0.346927,0.433154,0.0807894,0.222294,0.73263,0.346334,0.163792,0.938687,0.248641,0.876894,0.355673,0.244596,0.538517,0.834849,0.355553,0.469909,0.509722,0.187948,0.0850158,0.763825,0.0822589,0.584988,0.711987,0.480236,0.756983,0.580142,0.973496,0.920469,0.831794,0.610994,0.296012,0.0178012,0.543864,0.494012,0.329223,0.0246389,0.406138,0.938867,0.35358,0.252017,0.702509,0.902903,0.19948,0.108569,0.0996938,0.430972,0.00599551,0.779167,0.715799,0.442825,0.011201,0.171472,0.907149,0.0143265,0.426379,0.0117901,0.982146,0.668709,0.163598,0.226626,0.772089,0.312753,0.331287,0.567017,0.281873,0.87194,0.959764,0.610052,0.32168,0.944763,0.627408,0.284633,0.688694,0.0375444,0.450767,0.144988,0.652359,0.698304,0.138264,0.539868,0.0253015,0.865383,0.519483,0.591478,0.711505,0.488916,0.0402499,0.452433,0.0300826,0.873659,0.831068,0.875394,0.957002,0.972121,0.972555,0.0765244,0.75152,0.183591,0.174229,0.140716,0.313947,0.371985,0.221011,0.811979,0.961187,0.578098,0.363352,0.990536,0.908882,0.491986,0.609886,0.573976,0.160675,0.816218,0.260475,0.880937,0.360798,0.0656319,0.328874,0.828065,0.359215,0.681233,0.852626,|0.101596,0.399656,0.627288,0.911063,0.491217,0.388934,0.852441,0.844931,0.449133,0.587487,0.865132,0.486557,0.567358,0.0857736,0.0523052,0.704089,0.568224,0.343718,0.855174,0.895285,0.221374,0.532643,0.0898243,0.144852,0.555592,0.451964,0.228999,0.695801,0.116028,0.704447,0.0337729,0.123598,0.459719,0.0865144,0.559609,0.0704696,0.605445,0.612289,0.79512,0.206056,0.367809,0.980218,0.10674,0.401063,0.864532,0.944983,0.625711,0.9111,0.194582,0.0621886,0.981627,0.944967,0.0214505,0.7309,0.136905,0.62776,0.211805,0.214906,0.528304,0.69425,0.649612,0.840582,0.646161,0.446996,0.3027,0.861118,0.014778,0.620515,0.799949,0.870838,0.0504696,0.291975,0.521274,0.858046,0.463553,0.923756,0.929353,0.537145,0.382396,0.873282,0.706236,0.697414,0.843553,0.55719,0.418761,0.17245,0.633955,0.491285,0.0612037,0.255094,0.264595,0.425221,0.0473329,0.214402,0.308878,0.270807,0.316427,0.618572,0.735496,0.139151,0.98596,0.63408,0.684498,0.915846,0.110735,0.503052,0.914091,0.356313,0.851727,0.854263,0.903349,0.0599999,0.99352,0.210856,0.7713,0.348117,0.848566,0.863508,0.381901,0.579549,0.938856,0.563628,0.410626,0.317965,0.797542,0.779317,0.980205,0.757501,0.0155465,0.838161,0.854887,0.106375,0.709109,0.757417,0.744759,0.919331,0.289173,0.378914,0.375442,0.0670289,0.5087,0.988317,0.0131547,0.158001,0.165274,0.754121,0.939514,0.121376,0.960409,0.044894,0.932991,0.222224,0.345962,0.832514,0.621276,0.381846,0.823072,0.972672,0.586444,0.359499,0.467395,0.15109,0.206991,0.204413,0.295412,0.342692,0.756842,0.173344,0.0992437,0.0512493,0.837168,0.161885,0.094989,0.664703,0.118971,0.485094,0.0726118,0.403792,0.18043,0.293302,0.103507,0.0938459,0.178707,0.852238,0.24061,0.596559,0.753747,0.116903,0.574849,0.354875,0.23192,0.833329,0.361377,0.648835,0.811078,0.332414,0.381867,0.521851,0.944715,0.656363,0.238573,0.0952253,0.987881,0.415422,0.549474,0.186054,0.717979,0.40749,0.873238,0.20033,0.918593,0.932802,0.708511,0.879535,0.171948,0.339278,0.685314,0.284066,0.270383,0.610775,0.225815,0.367055,0.668008,0.3296,0.496739,0.147142,0.54046,0.962503,0.996696,0.0340424,0.908502,0.860978,0.917736,0.763102,0.690413,0.253877,0.282878,0.909369,0.72674,0.00307024,0.0826216,0.0528503,0.063715,0.651103,0.765227,0.603222,0.500114,0.692348,0.681472,0.0791935,0.663376,0.480466,0.813904,0.678521,0.787128,0.266719,0.338308,0.356636,0.882741,0.556026,0.683422,0.886375,0.345644,0.109118,0.10122,0.655147,0.930524,0.243136,0.142928,0.275935,0.367459,0.38658,0.200075,0.275708,0.766496,0.421995,0.675328,0.00448364,0.0511769,0.183546,0.718828,0.15759,0.721739,0.56462,0.962339,0.00555354,0.46527,0.470582,0.511399,0.859983,0.735513,0.293557,0.616123,0.194595,0.503681,0.593541,0.571935,0.411091,0.833274,0.788541,0.429332,0.320729,0.738879,0.19127,0.471778,0.643591,0.888719,0.552317,0.882034,0.750191,0.165418,0.859528,0.900253,0.819479,0.851579,0.636986,0.422027,0.840545,0.378424,0.276853,0.900539,0.489329,0.529313,0.324726,0.325827,0.58048,0.18545,0.589704,0.827797,0.976224,0.138196,0.336735,0.650467,0.637765,0.215955,0.13282,0.957573,0.601771,0.224453,0.599899,0.552534,0.148994,0.781857,0.362018,0.454943,0.721029,0.311212,0.804202,0.487899,0.34866,0.0533082,0.754303,0.501961,0.742239,0.515161,0.816407,0.896931,0.231563,0.429798,0.811447,0.902754,0.314242,0.445935,0.898402,0.0478669,0.280612,0.107597,0.930851,0.0801468,0.688982,0.0888559,0.641858,0.694071,0.876213,0.33163,0.823516,0.746053,0.90835,0.210791,0.047879,0.695595,0.949109,0.635377,0.429792,0.56092,0.382425,0.144724,0.308814,0.295636,0.528552,0.431224,0.662353,0.328462,0.786204,0.9157,0.960826,0.516163,0.680327,0.446035,0.690418,0.00894076,0.305415,0.933405,0.414623,0.104414,0.844672,0.422923,0.813087,0.32772,0.295912,0.208364,0.661317,0.72241,0.15595,0.37734,0.27439,0.0882033,0.834211,0.884884,0.527773,0.918605,0.0634561,0.107712,0.276634,0.388103,0.713487,0.275474,0.772123,0.840921,0.70133,0.805324,0.647008,0.404467,0.469122,0.38873,0.339059,0.913245,0.808853,0.506708,0.974056,0.935304,0.123736,0.780708,0.976948,0.647629,0.0260341,0.594661,0.951499,0.632026,0.859166,0.0101296,0.330478,0.696706,0.362726,0.679615,0.660306,0.290059,0.0324771,0.796657,0.130255,0.542773,0.728265,0.923643,0.0499611,0.576589,0.647802,0.385453,0.616236,0.318225,0.932686,0.140568,0.439772,0.429544,0.0216552,0.68954,0.64862,0.311915,0.541177,0.385466,0.348054,0.496987,0.226309,0.477637,0.228547,0.466477,0.86569,0.43094,0.807589,0.943164,0.901954,0.409634,0.378375,0.36467,0.762347,0.435441,0.370867,0.835179,0.207909,0.981745,0.468696,0.226011,0.137578,0.277601,0.634648,0.68334,0.491033,0.514714,0.103484,0.911451,0.452651,0.278393,0.44527,0.210785,0.7825,0.716514,0.644588,0.280391,0.674877,0.324379,0.518095,0.844649,0.516903,0.207084,0.887286,0.276345,0.889884,0.473435,0.513509,0.120161,0.597985,0.81891,0.823965,0.392107,0.402378,0.150683,0.595815,0.732839,0.260145,0.542911,0.14069,0.545583,0.710914,0.127203,0.418151,0.685219,0.893891,0.0154111,0.621329,0.384348,0.648402,0.720612,0.120546,0.00912744,0.985781,0.147996,0.830765,0.783026,0.835536,0.847281,0.748701,0.0258458,0.252244,0.881725,0.28045,0.82221,0.241489,0.885374,0.119009,0.552648,0.737452,0.341108,0.616026,0.715175,0.420946,0.426479,0.229678,0.892024,0.052,0.370083,0.517033,0.441778,0.105276,0.3758,0.876394,0.157589,0.386531,0.951489,0.695211,0.709375,0.630016,0.469886,0.713369,0.317296,0.260109,0.941772,0.60096,0.554298,0.948621,0.997944,0.956443,0.284136,0.0421162,0.406067,0.0888393,0.536207,0.45004,0.649285,0.014771,0.600385,0.280681,0.706143,0.421573,0.906281,0.913206,0.412153,0.786226,0.893337,0.101365,0.295071,0.598216,0.441004,0.281601,0.891774,0.281308,0.388695,0.818459,0.0284162,0.783506,0.956182,0.0192973,0.420928,0.690836,0.579585,0.443573,0.185405,0.751088,0.259199,0.0800611,0.869078,0.595815,0.983282,0.646251,0.633422,0.921071,0.79993,0.0173835,0.582685,0.468116,0.0425382,0.058126,0.871116,0.410675,0.974217,0.369296,0.963308,0.0500764,0.234773,0.883286,0.396956,0.232884,0.321279,0.654196,0.445299,0.517769,0.0805443,0.746872,0.388345,0.373034,0.394529,0.500881,0.233801,0.987267,0.310188,0.708666,0.418973,0.651011,0.0284687,0.276109,0.503453,0.27306,0.50831,0.813507,0.0399068,0.480342,0.00598103,0.207585,0.239537,0.657493,0.661272,0.746026,0.228793,0.0313748,0.563781,0.648795,0.973508,0.228486,0.0648434,0.644314,0.536801,0.476246,0.178522,0.543387,0.956368,0.0273125,0.240277,0.109472,0.125714,0.111328,0.356783,0.678605,0.455881,0.899593,0.4885,0.782307,0.915387,0.59259,0.546426,0.315796,0.257702,0.461764,0.599041,0.28241,0.391924,0.806789,0.0363012,0.0570133,0.696229,0.723373,0.115288,0.506029,0.938581,0.813505,0.253492,0.379867,0.0628468,0.734888,0.967175,0.62858,0.0455138,0.117185,0.27267,0.660133,0.239084,0.393483,0.332238,0.752772,0.87325,0.682535,0.118659,0.76685,0.178702,0.957039,0.589853,0.643618,0.695208,0.447187,0.88848,0.931042,0.54391,0.0107133,0.590997,0.0103835,0.48906,0.25294,0.582711,0.309757,0.604568,0.978642,0.125099,0.1775,0.0135425,0.245781,0.0800068,0.699411,0.333802,0.919589,0.867142,0.895554,0.43404,0.523117,0.613501,0.237991,0.381677,0.141813,0.690162,0.250701,0.486227,0.67348,0.0021286,0.107025,0.851241,0.63255,0.280387,0.980405,0.331867,0.201255,0.38841,0.842928,0.108865,0.443428,0.487677,0.13434,0.378171,0.836813,0.167619,0.165207,0.770935,0.192801,0.10101,0.758695,0.19696,0.471461,0.686339,0.676534,0.238281,0.873112,0.113133,0.0163897,0.765778,0.441428,0.687837,0.443365,0.00398588,0.422949,0.243323,0.0477431,0.144529,0.0415936,0.187074,0.521289,0.574874,0.016566,0.0313529,0.677929,0.24548,0.662418,0.494974,0.913566,0.572267,0.996005,0.597005,0.525734,0.0908458,0.419317,0.516077,0.57964,0.00730556,0.263499,0.893478,0.794155,0.471169,0.925073,0.935058,0.654826,0.129269,0.77215,0.836581,0.508283,0.165812,0.521124,0.0788953,0.356769,0.603548,0.222929,0.694995,0.992592,0.582374,0.18023,0.0621532,0.95674,0.54439,0.333262,0.251797,0.157361,0.350128,0.839851,0.544732,0.7717,0.679576,0.590098,0.66813,0.783808,0.302483,0.523819,0.32747,0.371264,0.545742,0.0603356,0.660001,0.352446,0.625807,0.900131,0.315376,0.769364,0.175101,0.570633,0.821377,0.65033,0.533433,0.908177,0.395385,0.190366,0.180219,0.561266,0.856562,0.318448,0.864059,0.226464,0.425245,0.932482,0.683897,0.461845,0.226234,0.697775,0.488788,0.219541,0.886556,0.69564,0.396055,0.742431,0.665091,0.563513,0.453987,0.643397,0.630991,0.0682433,0.519386,0.724281,0.616391,0.475154,0.50049,0.421801,0.790826,0.677114,0.809721,0.856468,0.807789,0.95561,0.785296,0.751966,0.959344,0.670809,0.911289,0.682092,0.0710809,0.122343,0.142947,0.407318,0.810865,0.0946701,0.0866616,0.463718,0.403526,0.526224,0.962752,0.389103,0.928292,0.733569,0.518413,0.934286,0.098968,0.178237,0.125939,0.0495705,0.939273,0.547033,0.594346,0.683395,0.81153,0.757507,0.810752,0.752577,0.726526,0.774178,0.577313,0.428094,0.893125,0.951449,0.711842,0.259934,0.370938,0.320029,0.264054,0.728653,0.957459,0.770601,0.951948,0.791339,0.227986,0.705199,0.505383,0.878671,0.431638,0.937459,0.0355701,0.814696,0.456727,0.0681822,0.0956745,0.52961,|0.670715,0.0401252,0.302561,0.561131,0.792486,0.785787,0.618809,0.569542,0.11956,0.421327,0.554435,0.0628471,0.97882,0.999513,0.432615,0.723771,0.131256,0.983156,0.0183821,0.119733,0.641466,0.869485,0.574943,0.494891,0.435056,0.541803,0.352732,0.248402,0.587051,0.496472,0.491336,0.151344,0.550593,0.366809,0.338917,0.193021,0.0880741,0.770119,0.18436,0.282283,0.419558,0.763026,0.920477,0.0274116,0.129506,0.818812,0.545926,0.431856,0.722384,0.228731,0.100757,0.255942,0.814661,0.459481,0.392457,0.302651,0.978298,0.521854,0.827833,0.0775769,0.620757,0.714088,0.676306,0.0104077,0.690286,0.883155,0.000683427,0.964876,0.669282,0.314416,0.788604,0.00725949,0.952242,0.915383,0.499672,0.409862,0.913468,0.0892422,0.162053,0.926336,0.213918,0.125685,0.752592,0.618149,0.127098,0.395119,0.201725,0.424571,0.649248,0.356617,0.0655178,0.564981,0.206155,0.962507,0.0942029,0.434429,0.164828,0.533105,0.134257,0.693368,0.19687,0.443018,0.990102,0.798569,0.440789,0.91165,0.61526,0.566087,0.817244,0.610164,0.746006,0.172919,0.857466,0.135837,0.809591,0.901868,0.242995,0.159498,0.384093,0.382699,0.867863,0.310802,0.917966,0.235777,0.906576,0.197298,0.774186,0.049753,0.515015,0.615171,0.519211,0.944341,0.313859,0.0806869,0.508201,0.162677,0.72435,0.967675,0.280554,0.315572,0.925861,0.169263,0.718618,0.631608,0.906589,0.408531,0.374622,0.254386,0.0912327,0.279306,0.687606,0.732014,0.645295,0.118497,0.660027,0.89332,0.716206,0.101425,0.419977,0.332652,0.910607,0.549351,0.456008,0.938963,0.432022,0.947356,0.906618,0.661229,0.071564,0.998285,0.443874,0.577908,0.661287,0.184658,0.823916,0.757329,0.812638,0.834823,0.117273,0.645481,0.729934,0.1708,0.634444,0.957829,0.498728,0.704437,0.815903,0.570755,0.598709,0.327518,0.180344,0.276008,0.731378,0.898068,0.220224,0.292392,0.801999,0.571113,0.23641,0.65241,0.688851,0.207982,0.762021,0.575813,0.545858,0.129059,0.563844,0.264227,0.527297,0.0348995,0.372648,0.0701111,0.111096,0.376321,0.104481,0.0660859,0.0859942,0.219015,0.468413,0.669956,0.942027,0.326882,0.626343,0.0886651,0.97673,0.311228,0.80469,0.225523,0.778815,0.325772,0.937038,0.945154,0.961923,0.0630689,0.604706,0.673876,0.849141,0.0675046,0.966632,0.796218,0.736529,0.646985,0.42891,0.650797,0.10828,0.215083,0.182264,0.211257,0.261956,0.0115117,0.803246,0.245031,0.5393,0.735568,0.379626,0.664837,0.256815,0.0577638,0.808055,0.150015,0.177323,0.654048,0.201816,0.834346,0.243724,0.354079,0.574969,0.0335509,0.373546,0.351258,0.957141,0.0133214,0.0404806,0.765192,0.634481,0.0588723,0.358636,0.0368025,0.539342,0.172025,0.0245929,0.270755,0.407482,0.381085,0.763627,0.73096,0.18586,0.865698,0.689373,0.895004,0.344672,0.443346,0.423886,0.919281,0.191077,0.29827,0.49709,0.792769,0.754892,0.264201,0.0170009,0.499809,0.310333,0.0170953,0.595218,0.508336,0.663693,0.62431,0.554819,0.571695,0.577098,0.751356,0.993089,0.253596,0.977138,0.311022,0.26929,0.804285,0.0951314,0.326751,0.954466,0.756638,0.503873,0.513258,0.981859,0.520434,0.984683,0.84823,0.735294,0.636742,0.777445,0.358299,0.513691,0.764779,0.976116,0.41857,0.53733,0.499286,0.81372,0.639047,0.378297,0.0730034,0.456664,0.133321,0.0364,0.357546,0.597893,0.220173,0.534298,0.822865,0.237388,0.760806,0.87371,0.955305,0.445381,0.294035,0.432817,0.237161,0.619936,0.863967,0.779047,0.880375,0.76118,0.152866,0.99909,0.829956,0.824386,0.602226,0.507975,0.29677,0.392934,0.578609,0.611577,0.17422,0.723911,0.336244,0.748186,0.0275296,0.666937,0.217481,0.325766,0.918719,0.608716,0.636349,0.241775,0.399284,0.208093,0.622415,0.134102,0.858182,0.568962,0.378528,0.155565,0.44134,0.184831,0.466803,0.259049,0.916742,0.108674,0.709449,0.263236,0.0282265,0.470217,0.868027,0.400129,0.629546,0.329303,0.547567,0.79108,0.738904,0.1215,0.0891247,0.420099,0.613962,0.338255,0.732908,0.86513,0.971065,0.0973783,0.147877,0.912752,0.681553,0.172141,0.90366,0.509736,0.217027,0.0889215,0.681161,0.74149,0.768893,0.045902,0.372047,0.705634,0.722978,0.403082,0.848591,0.291698,0.777838,0.32424,0.645012,0.0787237,0.459632,0.451653,0.377338,0.778196,0.688091,0.118946,0.114376,0.674823,0.881898,0.411493,0.171472,0.303425,0.717468,0.628163,0.510837,0.273404,0.140812,0.0777165,0.694543,0.735566,0.312466,0.744409,0.381698,0.310135,0.596787,0.916206,0.456297,0.745995,0.645536,0.170399,0.00805789,0.431493,0.724256,0.963262,0.730235,0.635803,0.123763,0.190769,0.539357,0.690105,0.267959,0.0892552,0.109235,0.153006,0.639973,0.348672,0.563898,0.427177,0.782877,0.195245,0.156256,0.31732,0.859854,0.207335,0.739403,0.107676,0.206187,0.16828,0.153989,0.15502,0.560113,0.486943,0.36789,0.215317,0.697339,0.641393,0.0873471,0.647518,0.676148,0.947496,0.0239748,0.191918,0.897146,0.274406,0.560931,0.796661,0.117612,0.367667,0.365273,0.627179,0.377562,0.0465028,0.727046,0.441329,0.846465,0.432719,0.378249,0.29511,0.0428657,0.0751569,0.0548154,0.857751,0.260866,0.920327,0.280703,0.374476,0.610086,0.757448,0.785053,0.347002,0.118163,0.840749,0.686124,0.581158,0.182692,0.51131,0.639536,0.137997,0.657843,0.975689,0.652754,0.861931,0.46556,0.982161,0.640667,0.126369,0.464689,0.00516176,0.150518,0.699041,0.805076,0.709881,0.665759,0.744173,0.271122,0.769213,0.0593269,0.659538,0.825843,0.47738,0.596142,0.239909,0.965583,0.955504,0.0067718,0.713154,0.540689,0.579509,0.703689,0.467368,0.859209,0.375691,0.942727,0.911997,0.747144,0.355936,0.698727,0.165308,0.0679266,0.339704,0.613879,0.336844,0.381109,0.340223,0.983988,0.37752,0.754522,0.213516,0.142442,0.661936,0.696195,0.709443,0.00526452,0.313034,0.681442,0.018616,0.388674,0.655243,0.0505507,0.188853,0.83993,0.61408,0.563326,0.917665,0.773831,0.291169,0.916074,0.99436,0.910973,0.186971,0.56174,0.793545,0.981009,0.44338,0.170169,0.846233,0.781249,0.847496,0.949021,0.496359,0.289746,0.934617,0.815557,0.0946472,0.0610543,0.535567,0.248703,0.718759,0.308743,0.308452,0.393646,0.366676,0.878333,0.7279,0.984663,0.374038,0.431611,0.512268,0.782641,0.645445,0.422732,0.0437858,0.274831,0.763238,0.729849,0.0966976,0.385493,0.177252,0.869405,0.301619,0.417145,0.148473,0.672244,0.352785,0.313634,0.253947,0.725389,0.708304,0.325437,0.437461,0.175021,0.188186,0.908219,0.944215,0.508228,0.686379,0.929209,0.136182,0.916163,0.25698,0.490865,0.498015,0.207023,0.635601,0.51404,0.884359,0.469233,0.801242,0.986993,0.851254,0.502678,0.434588,0.344989,0.209397,0.168049,0.128236,0.631951,0.380687,0.987139,0.756904,0.984642,0.399706,0.886992,0.701335,0.143092,0.915944,0.862134,0.0888901,0.172978,0.75185,0.916211,0.512571,0.162485,0.193574,0.772995,0.157199,0.895626,0.964137,0.373083,0.203883,0.887813,0.866893,0.0316032,0.031814,0.1685,0.44069,0.595155,0.375823,0.759408,0.675809,0.465952,0.603153,0.555831,0.693469,0.901829,0.375469,0.728632,0.000141263,0.904522,0.472086,0.414654,0.0602401,0.161263,0.918796,0.793668,0.477514,0.0264966,0.775075,0.940172,0.71523,0.256462,0.949874,0.32269,0.820195,0.23513,0.942676,0.836723,0.555132,0.711593,0.50521,0.263946,0.584547,0.19223,0.367021,0.608744,0.03095,0.201155,0.766151,0.262018,0.400098,0.658895,0.258851,0.490949,0.552249,0.670409,0.763811,0.319882,0.771663,0.802212,0.224922,0.182203,0.0179793,0.1203,0.148373,0.960656,0.637169,0.594964,0.565318,0.141091,0.626578,0.954362,0.913036,0.414153,0.106158,0.952919,0.450863,0.253421,0.244308,0.00767857,0.264731,0.330343,0.239855,0.706152,0.0243954,0.794027,0.88117,0.191374,0.157796,0.796232,0.503199,0.389135,0.258624,0.986142,0.981321,0.00344872,0.444849,0.64435,0.814771,0.910709,0.783297,0.919138,0.0386208,0.492274,0.680376,0.347904,0.367968,0.99561,0.567163,0.600554,0.669895,0.185645,0.338307,0.943011,0.676241,0.134879,0.649712,0.0292221,0.495555,0.268536,0.968979,0.884617,0.253595,0.302959,0.771199,0.919649,0.57102,0.339164,0.484443,0.785548,0.0257927,0.415876,0.711139,0.364617,0.768551,0.477513,0.122931,0.480374,0.847535,0.867425,0.56255,0.694854,0.666028,0.808202,0.210343,0.894536,0.808206,0.705463,0.285815,0.340949,0.0722137,0.427024,0.644642,0.0957323,0.748645,0.462173,0.00506932,0.0849177,0.604141,0.0140948,0.00213271,0.183194,0.637197,0.732753,0.719695,0.880705,0.00778586,0.94954,0.250805,0.204533,0.892802,0.0259287,0.907029,0.899189,0.986272,0.930467,0.989696,0.117886,0.991277,0.449232,0.667126,0.317562,0.210706,0.411764,0.611954,0.010978,0.936863,0.276757,0.461887,0.515141,0.629118,0.775145,0.557936,0.799643,0.807776,0.840949,0.0222735,0.83494,0.580391,0.780422,0.400211,0.295174,0.963405,0.799989,0.372946,0.362182,0.708991,0.300892,0.426625,0.29432,0.589369,0.636379,0.814223,0.133461,0.251864,0.305112,0.178306,0.625248,0.837432,0.150291,0.47883,0.500831,0.684668,0.0795805,0.200042,0.807999,0.997192,0.521089,0.481783,0.890221,0.209059,0.907945,0.592391,0.317493,0.115458,0.502672,0.665151,0.827502,0.0854428,0.164479,0.411639,0.0259843,0.203256,0.0191654,0.896521,0.27652,0.0330299,0.189728,0.952033,0.335904,0.500537,0.545856,0.693987,0.247958,0.50017,0.798375,0.676369,0.696045,0.663024,0.0506327,0.806452,0.115031,0.558582,0.612762,0.184011,0.238944,0.523201,0.690156,0.0690724,0.105719,0.303881,0.343571,0.135339,0.689079,0.229409,0.959096,0.428796,0.761411,0.579895,0.99644,|0.269885,0.336821,0.543786,0.568835,0.0692978,0.348027,0.803283,0.370845,0.070052,0.597859,0.698695,0.308226,0.588401,0.447033,0.0067929,0.471049,0.694482,0.437407,0.078095,0.156461,0.813275,0.178521,0.0941607,0.794489,0.658997,0.931393,0.85296,0.595622,0.61432,0.0418036,0.716063,0.939073,0.123257,0.364814,0.879366,0.319816,0.600264,0.21085,0.236044,0.484481,0.637332,0.916231,0.145081,0.363458,0.0313913,0.870854,0.454181,0.639473,0.626005,0.284818,0.0794721,0.406195,0.447433,0.657396,0.649352,0.383773,0.663576,0.844443,0.484036,0.848894,0.973367,0.622163,0.490044,0.846641,0.848306,0.00112092,0.385315,0.953189,0.61906,0.838077,0.713265,0.651996,0.243551,0.229528,0.0039072,0.399785,0.426855,0.449452,0.331472,0.783186,0.174515,0.770622,0.314416,0.620556,0.183022,0.929634,0.447468,0.458682,0.300464,0.934604,0.804687,0.546878,0.980454,0.833284,0.840321,0.165813,0.21699,0.197155,0.0967577,0.854494,0.209676,0.453794,0.214845,0.301642,0.293154,0.893368,0.913418,0.190235,0.485106,0.0251877,0.0248385,0.319736,0.637118,0.381164,0.198762,0.980523,0.710039,0.956552,0.538357,0.781878,0.935867,0.0813272,0.590727,0.671116,0.155284,0.810095,0.841285,0.267884,0.408604,0.741468,0.123556,0.978079,0.102475,0.144419,0.873437,0.541954,0.522044,0.959196,0.265198,0.486138,0.941753,0.693792,0.47917,0.0808359,0.0734798,0.781273,0.141908,0.360106,0.726867,0.273179,0.180252,0.0169867,0.931008,0.762803,0.233582,0.447245,0.751795,0.711583,0.951323,0.0774534,0.517181,0.188263,0.226968,0.999882,0.247175,0.119976,0.844103,0.703052,0.414512,0.206573,0.0152017,0.159121,0.559658,0.142915,0.205924,0.848661,0.253698,0.302834,0.680126,0.00252396,0.111295,0.477986,0.722547,0.948417,0.519005,0.079832,0.629648,0.276125,0.87167,0.981194,0.166106,0.607861,0.815017,0.446033,0.667156,0.314741,0.284649,0.587395,0.135305,0.811423,0.567126,0.926284,0.650427,0.319158,0.0574623,0.10254,0.849053,0.289256,0.743331,0.399598,0.246296,0.0593259,0.410783,0.891886,0.75392,0.116425,0.855084,0.515615,0.229508,0.338981,0.350321,0.304208,0.761527,0.0461408,0.189807,0.487102,0.573514,0.319153,0.444849,0.462432,0.503723,0.5483,0.688058,0.269044,0.994722,0.0875977,0.645424,0.0112747,0.249201,0.594563,0.876673,0.82505,0.0406132,0.539555,0.870328,0.615822,0.896128,0.822486,0.558341,0.941168,0.946351,0.502465,0.704863,0.0337113,0.600075,0.141353,0.98225,0.562641,0.899094,0.427927,0.860652,0.807328,0.988241,0.226222,0.972925,0.0538663,0.0317207,0.717175,0.715789,0.0329468,0.121985,0.973845,0.579617,0.109223,0.0788603,0.24707,0.805871,0.293596,0.835695,0.345987,0.0881125,0.375887,0.660492,0.661769,0.455167,0.505924,0.623813,0.186933,0.697034,0.480564,0.0930191,0.373173,0.202593,0.241665,0.0464363,0.492837,0.712725,0.335675,0.0921287,0.829475,0.16337,0.519579,0.78118,0.190276,0.361504,0.217348,0.24233,0.380179,0.019854,0.155883,0.527757,0.542361,0.320478,0.877865,0.6215,0.258103,0.914913,0.183333,0.791298,0.787509,0.744042,0.14986,0.660518,0.435435,0.124661,0.710076,0.686376,0.072544,0.652653,0.644784,0.309065,0.637131,0.331175,0.138734,0.453543,0.719481,0.832921,0.0191192,0.925089,0.305452,0.316457,0.119004,0.98653,0.376973,0.0193822,0.494281,0.183207,0.495584,0.94711,0.279143,0.34331,0.477483,0.657298,0.716456,0.162589,0.313802,0.451445,0.302671,0.880068,0.315475,0.427444,0.260172,0.806238,0.758572,0.843941,0.535885,0.614711,0.16705,0.512887,0.970636,0.586651,0.79982,0.68246,0.423899,0.0269796,0.695314,0.686571,0.112326,0.43908,0.894983,0.98879,0.366459,0.789633,0.877101,0.573793,0.208913,0.813729,0.843509,0.167767,0.415526,0.655319,0.594242,0.375708,0.859871,0.0252357,0.0801618,0.887646,0.231062,0.167968,0.300725,0.594556,0.356549,0.956183,0.764506,0.547452,0.503275,0.668597,0.37905,0.862413,0.931633,0.154129,0.849892,0.24057,0.571456,0.0917273,0.14793,0.916547,0.381976,0.834086,0.385918,0.927196,0.992293,0.876907,0.659394,0.613949,0.505371,0.187543,0.634088,0.270818,0.758586,0.208277,0.364957,0.271452,0.866091,0.00112581,0.436915,0.803371,0.37214,0.00708544,0.382254,0.846891,0.278279,0.177665,0.457227,0.419086,0.529535,0.360147,0.220306,0.687199,0.446141,0.795186,0.461992,0.583629,0.497238,0.124302,0.82628,0.526471,0.101759,0.689435,0.991936,0.918999,0.36196,0.934371,0.767516,0.960921,0.828633,0.327629,0.239683,0.76283,0.151539,0.26886,0.723702,0.444493,0.49033,0.674406,0.0323603,0.196378,0.212053,0.531524,0.794456,0.392238,0.968808,0.136032,0.996642,0.187141,0.950231,0.426372,0.842703,0.818976,0.229577,0.555197,0.0345959,0.458706,0.281456,0.751487,0.470723,0.0373023,0.423115,0.619203,0.274692,0.481457,0.786092,0.427594,0.360422,0.75563,0.716037,0.607497,0.165618,0.491543,0.919125,0.249827,0.727118,0.647178,0.611718,0.191967,0.474413,0.708846,0.588183,0.336599,0.885042,0.5884,0.478578,0.270448,0.925898,0.979363,0.276354,0.182174,0.685564,0.312734,0.772167,0.703983,0.28942,0.349932,0.842843,0.168448,0.231643,0.976942,0.473256,0.506239,0.727665,0.428552,0.693357,0.409794,0.433019,0.0229037,0.303388,0.775404,0.500946,0.593097,0.723826,0.736219,0.461101,0.837303,0.499614,0.744329,0.432608,0.387181,0.0797347,0.0134411,0.327624,0.439485,0.243345,0.552823,0.598492,0.0531715,0.0113115,0.0658097,0.867246,0.902132,0.313424,0.0696135,0.679475,0.455795,0.810965,0.882242,0.637764,0.663515,0.205483,0.37656,0.449809,0.946456,0.329491,0.0999297,0.725083,0.588202,0.565936,0.573972,0.54709,0.069667,0.828351,0.805789,0.414363,0.134114,0.137321,0.111645,0.405821,0.36261,0.103098,0.122072,0.935094,0.39961,0.920421,0.0860826,0.793157,0.316269,0.82706,0.00129575,0.956256,0.711966,0.537138,0.534478,0.896759,0.325568,0.410943,0.723983,0.65015,0.731001,0.833343,0.827418,0.10834,0.350484,0.924574,0.370402,0.484346,0.59534,0.725003,0.388463,0.884809,0.810694,0.366836,0.248468,0.534297,0.0043627,0.518871,0.234005,0.853431,0.879545,0.598868,0.80689,0.214997,0.58325,0.696831,0.127876,0.351904,0.0545717,0.683116,0.944934,0.742378,0.450543,0.557311,0.36186,0.23107,0.137057,0.965016,0.406901,0.563899,0.0463449,0.728109,0.127388,0.308253,0.653012,0.508826,0.193195,0.834815,0.962245,0.205895,0.504423,0.152899,0.304935,0.638983,0.0236409,0.438793,0.387798,0.0226029,0.0176315,0.510089,0.886316,0.0154176,0.012933,0.939409,0.246901,0.474596,0.199632,0.0490244,0.215725,0.320214,0.0606803,0.295071,0.660265,0.652409,0.7193,0.765797,0.486564,0.59443,0.672244,0.21247,0.354556,0.0258734,0.392408,0.320658,0.0590861,0.931149,0.542243,0.627755,0.35866,0.683046,0.276699,0.296348,0.254044,0.135285,0.466004,0.647541,0.885873,0.747652,0.419273,0.182859,0.363153,0.82397,0.664883,0.153053,0.78584,0.852729,0.559837,0.601783,0.502869,0.476057,0.272404,0.353403,0.874737,0.121457,0.411671,0.670444,0.866925,0.655158,0.600091,0.623208,0.354254,0.952441,0.336763,0.920704,0.680626,0.92241,0.170123,0.49101,0.116518,0.394356,0.477888,0.251487,0.858404,0.562693,0.563541,0.128316,0.0194136,0.771895,0.614978,0.689761,0.872188,0.604053,0.586257,0.557015,0.113297,0.469612,0.25833,0.698418,0.583831,0.690843,0.409833,0.150395,0.861769,0.256807,0.0797283,0.469915,0.620083,0.975366,0.918929,0.694914,0.120351,0.0483925,0.968691,0.222167,0.454477,0.636016,0.52673,0.515039,0.0132789,0.614464,0.612278,0.840739,0.314688,0.34121,0.432574,0.0900657,0.424683,0.110567,0.337537,0.257058,0.56853,0.322975,0.954914,0.38826,0.242052,0.200869,0.905066,0.128058,0.613932,0.0749624,0.214806,0.263938,0.530233,0.855261,0.0609928,0.425729,0.455103,0.113315,0.422138,0.0277811,0.79435,0.319516,0.827475,0.45373,0.26244,0.957543,0.841497,0.13735,0.994255,0.942238,0.439457,0.988013,0.751401,0.682958,0.765515,0.37694,0.253882,0.59396,0.748565,0.449081,0.564548,0.273153,0.11698,0.0618105,0.881343,0.720186,0.637494,0.712509,0.774483,0.548028,0.044085,0.852015,0.112626,0.236746,0.896514,0.0221061,0.994629,0.223341,0.843232,0.153042,0.56064,0.367865,0.330524,0.548951,0.383547,0.714837,0.724721,0.539104,0.00540936,0.795566,0.566172,0.581646,0.157598,0.217137,0.0508182,0.577344,0.0490482,0.842925,0.0690964,0.274576,0.697858,0.282782,0.586909,0.280824,0.0851727,0.562795,0.113792,0.729396,0.160294,0.174946,0.210496,0.288351,0.917432,0.26592,0.692786,0.403347,0.547975,0.0214883,0.979135,0.910693,0.352278,0.420354,0.342131,0.812079,0.341356,0.727027,0.656538,0.997522,0.295341,0.117809,0.0101187,0.538189,0.650604,0.71352,0.50411,0.878781,0.936694,0.113075,0.191566,0.469996,0.570294,0.800957,0.830383,0.653116,0.280182,0.785344,0.0919887,0.37373,0.26642,0.074782,0.758336,0.967923,0.782282,0.668612,0.751413,0.696514,0.779393,0.153476,0.517384,0.029807,0.209616,0.192887,0.470555,0.287337,0.667752,0.791067,0.152535,0.301022,0.796237,0.293903,0.124577,0.935999,0.618067,0.613198,0.462827,0.141248,0.899476,0.100165,0.549389,0.535705,0.903911,0.656673,0.0260944,0.101988,0.301541,0.0096038,0.358459,0.304953,0.226281,0.107034,0.381455,0.944234,0.014937,0.543556,0.905706,0.325406,0.00815517,0.000428021,0.0184648,0.742494,0.468087,0.856603,0.57678,0.243165,0.456162,0.373577,0.0285652,0.0732828,0.327979,0.242453,0.310547,0.533584,0.543034,0.777135,0.062565,0.68208,0.870571,0.218828,0.313663,0.658558,0.443451,0.389917,0.92842,0.590466,|0.974665,0.455761,0.64114,0.745717,0.0788859,0.418524,0.788672,0.418518,0.117672,0.585051,0.365736,0.645765,0.613682,0.279679,0.725865,0.0802649,0.430786,0.744271,0.0420099,0.248879,0.962073,0.302966,0.00318044,0.423975,0.976398,0.318246,0.58737,0.867891,0.0842211,0.14513,0.318642,0.523228,0.0567833,0.781718,0.0292978,0.642584,0.971694,0.0596983,0.714008,0.303377,0.0698659,0.497313,0.0678594,0.563424,0.771163,0.807528,0.139628,0.555465,0.722953,0.522827,0.55846,0.855471,0.836169,0.0422956,0.941453,0.571511,0.0733134,0.769342,0.158587,0.329085,0.779608,0.0413725,0.564051,0.702344,0.863322,0.186961,0.0754652,0.511646,0.577429,0.99293,0.315325,0.883866,0.946475,0.750361,0.664578,0.0523086,0.0193807,0.0580685,0.570334,0.482193,0.345265,0.776605,0.94545,0.241183,0.894789,0.738131,0.344187,0.927701,0.825223,0.280132,0.170588,0.622402,0.710158,0.379708,0.158772,0.583457,0.606266,0.792835,0.437386,0.0213699,0.167007,0.755249,0.999727,0.0189657,0.394018,0.104483,0.386258,0.701205,0.151343,0.657159,0.00296932,0.807396,0.360327,0.322095,0.244915,0.603809,0.56414,0.0225855,0.751699,0.659571,0.450713,0.780723,0.291102,0.627313,0.0227244,0.699835,0.921369,0.18509,0.414346,0.233624,0.0325133,0.511328,0.0460991,0.458367,0.0433362,0.833815,0.873106,0.944497,0.715918,0.750101,0.036792,0.867635,0.466942,0.439044,0.559095,0.812948,0.039198,0.359511,0.858831,0.41723,0.697494,0.771364,0.0496194,0.183618,0.39309,0.76471,0.235963,0.0416301,0.786707,0.58375,0.307352,0.383044,0.197858,0.588044,0.498343,0.482591,0.972144,0.000124454,0.884414,0.655456,0.426412,0.223793,0.165527,0.699496,0.206435,0.221315,0.328233,0.597024,0.437825,0.878994,0.848938,0.0467651,0.25314,0.333512,0.180679,0.730563,0.0163198,0.747669,0.346157,0.129832,0.205392,0.972927,0.193686,0.788795,0.646076,0.616839,0.663982,0.631663,0.154992,0.883588,0.893653,0.873768,0.868019,0.548628,0.263132,0.179906,0.818227,0.58321,0.045621,0.881766,0.400808,0.618159,0.186009,0.138196,0.313501,0.162262,0.858461,0.400429,0.441407,0.684886,0.628324,0.333783,0.903243,0.581754,0.572694,0.160866,0.776995,0.252784,0.874411,0.337242,0.904191,0.733584,0.271902,0.10205,0.613075,0.133517,0.805377,0.403245,0.585019,0.0673894,0.720842,0.965805,0.775323,0.429299,0.777203,0.186444,0.856305,0.862051,0.883186,0.723389,0.177412,0.0734177,0.241017,0.724449,0.507742,0.221923,0.675858,0.459407,0.487187,0.916314,0.108249,0.461106,0.842542,0.060799,0.828223,0.189911,0.937233,0.339631,0.0247332,0.102869,0.496803,0.611383,0.602177,0.0167922,0.710192,0.225498,0.76087,0.533333,0.117221,0.396975,0.486615,0.474106,0.370426,0.178783,0.515589,0.611629,0.00886118,0.800433,0.774289,0.951095,0.10183,0.798693,0.499687,0.271585,0.114168,0.614037,0.987867,0.0423239,0.202452,0.371769,0.0779809,0.885328,0.925519,0.752832,0.97285,0.859361,0.578746,0.325065,0.362169,0.165323,0.702916,0.501904,0.687697,0.775919,0.00206202,0.579081,0.234925,0.0949761,0.654474,0.187312,0.982377,0.304273,0.560409,0.150584,0.0426686,0.149992,0.501797,0.919598,0.207011,0.757929,0.471372,0.272729,0.506518,0.479644,0.0755544,0.918182,0.0377982,0.199309,0.563202,0.454113,0.320064,0.748816,0.849518,0.906322,0.804969,0.799119,0.275102,0.942929,0.425837,0.0242617,0.824963,0.799742,0.034099,0.824144,0.128832,0.834406,0.642891,0.573516,0.508356,0.93061,0.859973,0.231931,0.0573279,0.711852,0.876652,0.809269,0.958247,0.950762,0.707325,0.767885,0.808324,0.463814,0.691655,0.755298,0.50055,0.490549,0.647454,0.613909,0.804509,0.56814,0.53026,0.977433,0.078084,0.412027,0.992146,0.493075,0.316705,0.211587,0.317627,0.4481,0.353378,0.670839,0.156959,0.597487,0.932524,0.434615,0.667578,0.182817,0.874549,0.238075,0.243834,0.443457,0.297388,0.9748,0.235801,0.354733,0.852266,0.528237,0.333067,0.288045,0.328046,0.757951,0.0887651,0.176274,0.242195,0.0711887,0.932531,0.92357,0.775998,0.406264,0.130827,0.0327989,0.133832,0.985232,0.147844,0.804241,0.060167,0.950709,0.489155,0.285805,0.203503,0.803259,0.807592,0.129199,0.166194,0.300782,0.67001,0.321362,0.474203,0.451939,0.404799,0.016082,0.691004,0.344962,0.405916,0.0173786,0.911173,0.292093,0.145026,0.022186,0.367556,0.662477,0.152612,0.622023,0.742247,0.896276,0.90374,0.0934276,0.688806,0.157946,0.201653,0.863322,0.160654,0.801996,0.742684,0.835867,0.0794736,0.129283,0.630037,0.708871,0.361955,0.806637,0.275919,0.15241,0.524212,0.218517,0.301812,0.379722,0.0849188,0.364273,0.660145,0.0161664,0.554977,0.683644,0.117842,0.0310989,0.972833,0.661515,0.0632228,0.120093,0.119888,0.805215,0.885157,0.313022,0.388933,0.429725,0.95708,0.445305,0.0911555,0.362142,0.304291,0.956887,0.552382,0.929755,0.76008,0.472451,0.379638,0.14557,0.841429,0.0988075,0.525645,0.893209,0.00202525,0.854904,0.130395,0.763949,0.388418,0.876384,0.887981,0.772674,0.87287,0.730137,0.399387,0.361477,0.0197105,0.723429,0.712776,0.541554,0.924227,0.447542,0.00205237,0.511164,0.582472,0.955563,0.438224,0.207633,0.730059,0.797704,0.565734,0.549996,0.0609183,0.284968,0.954216,0.610839,0.0174807,0.0961801,0.549252,0.563902,0.483214,0.306098,0.0707305,0.408505,0.588804,0.314863,0.0854005,0.712334,0.259799,0.971584,0.74942,0.218347,0.10814,0.747867,0.0421541,0.843807,0.843261,0.548907,0.759132,0.493077,0.749741,0.375201,0.625619,0.348655,0.00101262,0.374933,0.543048,0.332578,0.363996,0.977145,0.942295,0.295895,0.00949103,0.758599,0.136629,0.247162,0.131723,0.0223176,0.695762,0.780422,0.433584,0.296453,0.267676,0.187592,0.462105,0.408522,0.185327,0.39435,0.212389,0.348045,0.936718,0.840035,0.578659,0.65952,0.0937437,0.101995,0.815043,0.227048,0.693588,0.402102,0.173715,0.940883,0.289375,0.395351,0.665223,0.401357,0.611585,0.251526,0.769337,0.346819,0.63263,0.137392,0.434777,0.472054,0.895282,0.797469,0.360256,0.577492,0.309344,0.369928,0.334836,0.341284,0.726005,0.818585,0.935864,0.689424,0.992586,0.362669,0.907877,0.53697,0.541419,0.960208,0.00239432,0.320527,0.0498096,0.16026,0.136719,0.265403,0.333111,0.479892,0.547981,0.44697,0.918423,0.113887,0.546225,0.870489,0.680587,0.736846,0.608811,0.16514,0.139371,0.111609,0.254837,0.45472,0.417589,0.00245476,0.809049,0.10814,0.341154,0.615228,0.725157,0.272078,0.850833,0.957713,0.286413,0.180018,0.249346,0.0322046,0.874109,0.992208,0.937177,0.95163,0.962726,0.647571,0.237056,0.469028,0.940055,0.522881,0.453692,0.13499,0.605963,0.795781,0.584657,0.0218659,0.59729,0.781554,0.88125,0.599849,0.559575,0.0866401,0.98314,0.224398,0.751766,0.732749,0.490063,0.72772,0.766721,0.122232,0.314402,0.295028,0.923401,0.835309,0.808892,0.0805271,0.0348873,0.828902,0.837911,0.635491,0.808668,0.204317,0.0188038,0.78799,0.992861,0.692406,0.484336,0.60334,0.936898,0.0715459,0.235859,0.883622,0.147084,0.603833,0.0896493,0.352517,0.814522,0.518089,0.740241,0.544818,0.610981,0.409779,0.0223526,0.622042,0.243059,0.941222,0.441739,0.402906,0.607486,0.733256,0.452456,0.074131,0.854981,0.681409,0.997321,0.605582,0.538031,0.948022,0.852277,0.794655,0.554654,0.189886,0.295141,0.298648,0.4342,0.431354,0.768486,0.922515,0.321142,0.752371,0.675289,0.067605,0.0994228,0.543519,0.991174,0.239756,0.890335,0.186747,0.368632,0.99701,0.873164,0.858564,0.333018,0.860364,0.508043,0.586972,0.409141,0.252979,0.585724,0.846701,0.884015,0.845098,0.10512,0.352261,0.696847,0.725462,0.96994,0.0426722,0.836173,0.372464,0.864558,0.479803,0.793294,0.769414,0.642083,0.867397,0.724804,0.143692,0.64693,0.0328703,0.706365,0.238777,0.736892,0.861981,0.0447727,0.303739,0.525247,0.739867,0.820866,0.105399,0.886864,0.816224,0.609975,0.549422,0.181249,0.535907,0.137245,0.185344,0.908316,0.778711,0.70945,0.163359,0.514182,0.815699,0.115137,0.594959,0.845033,0.95139,0.293183,0.46725,0.936274,0.165786,0.121759,0.125691,0.177209,0.388682,0.835582,0.798114,0.800122,0.651815,0.729523,0.848222,0.960381,0.295968,0.992343,0.387682,0.563166,0.326895,0.29792,0.614021,0.127991,0.946314,0.810321,0.2025,0.518725,0.797459,0.157311,0.113692,0.448645,0.883503,0.550584,0.379093,0.854262,0.0630464,0.636875,0.805413,0.352856,0.144442,0.728696,0.728329,0.642064,0.072263,0.620611,0.591283,0.176769,0.193373,0.886009,0.727378,0.368836,0.943065,0.890187,0.655423,0.481874,0.955311,0.945612,0.643176,0.0512936,0.239976,0.492923,0.762516,0.258411,0.788998,0.0944809,0.224967,0.393826,0.469387,0.860929,0.817606,0.0754727,0.650546,0.771899,0.771534,0.455248,0.883208,0.402657,0.293621,0.579514,0.780821,0.818352,0.18162,0.607588,0.377387,0.956302,0.127434,0.642649,0.345587,0.0852227,0.562716,0.53252,0.551175,0.251952,0.777964,0.823127,0.650145,0.666611,0.0924273,0.119197,0.58438,0.931037,0.735889,0.924394,0.934912,0.420956,0.994616,0.06458,0.730653,0.333945,0.617419,0.30875,0.878387,0.0251824,0.798915,0.646327,0.45841,0.187856,0.927109,0.135938,0.189872,0.35476,0.197363,0.484082,0.543574,0.0254298,0.809911,0.846588,0.952978,0.13017,0.0239261,0.665872,0.394568,0.665818,0.877654,0.555744,0.996871,0.228103,0.0844442,0.412061,0.247028,0.668583,0.742804,0.991575,0.665557,0.69431,0.979829,0.170161,0.0125322,0.885154,0.476396,0.684407,0.857392,0.231281,0.869044,0.960699,0.45699,0.0498868,0.338446,0.541528,0.443321,0.217284,0.143642,0.41691,0.555096,0.468909,0.068527,|0.495026,0.0228152,0.445545,0.163933,0.901965,0.758908,0.474306,0.839351,0.873132,0.353922,0.954238,0.637504,0.236315,0.194125,0.178592,0.0591038,0.93948,0.352677,0.044495,0.115935,0.0835086,0.892606,0.0102804,0.77192,0.21057,0.190161,0.4174,0.133467,0.472179,0.473698,0.55337,0.695628,0.994248,0.999358,0.5598,0.927616,0.544305,0.739793,0.393945,0.728005,0.992432,0.572042,0.359802,0.935121,0.736277,0.958398,0.166064,0.662926,0.755881,0.888026,0.854664,0.511723,0.531775,0.0820357,0.0694418,0.662844,0.363533,0.147406,0.870733,0.800419,0.0164044,0.443769,0.907932,0.387573,0.317321,0.859192,0.842703,0.507931,0.463611,0.708358,0.705076,0.110204,0.681231,0.857982,0.178954,0.152889,0.363907,0.769063,0.432221,0.333116,0.341206,0.035418,0.825518,0.890021,0.400618,0.775051,0.827403,0.600039,0.199473,0.961252,0.782579,0.43071,0.677676,0.587293,0.908797,0.93156,0.812274,0.387816,0.612683,0.953576,0.322876,0.964769,0.0259043,0.140343,0.490176,0.763141,0.591328,0.64537,0.45874,0.162862,0.836002,0.821485,0.777145,0.939273,0.0764112,0.98983,0.504636,0.0905835,0.866074,0.3748,0.134861,0.284535,0.487989,0.891554,0.28907,0.471542,0.41376,0.692686,0.605549,0.150355,0.763264,0.4951,0.381071,0.310399,0.942169,0.888958,0.259532,0.925331,0.928624,0.7587,0.910898,0.950224,0.9003,0.00876868,0.921452,0.754717,0.0128616,0.274984,0.330871,0.232978,0.0200957,0.405434,0.412471,0.800443,0.301499,0.735871,0.573536,0.64546,0.382489,0.422126,0.766621,0.378369,0.221489,0.425663,0.424375,0.592064,0.475002,0.914859,0.521713,0.911073,0.741116,0.477831,0.460216,0.00473726,0.69982,0.650999,0.218029,0.747695,0.262389,0.588021,0.429664,0.247048,0.102708,0.403468,0.0624127,0.196096,0.913596,0.914756,0.637409,0.726907,0.802416,0.47458,0.928875,0.575499,0.541012,0.446343,0.285797,0.824067,0.876144,0.763614,0.173998,0.990406,0.695841,0.0822095,0.108481,0.272263,0.250632,0.062748,0.880355,0.211537,0.675884,0.519228,0.376026,0.509704,0.230957,0.274803,0.536311,0.276965,0.0650228,0.0798028,0.0987756,0.949765,0.978744,0.453514,0.994239,0.499651,0.220505,0.526922,0.527078,0.21671,0.672306,0.553436,0.439605,0.445089,0.488071,0.974179,0.176391,0.42965,0.974463,0.661164,0.570735,0.137053,0.308711,0.19115,0.311589,0.236735,0.88483,0.326029,0.255151,0.672665,0.413616,0.577012,0.437258,0.849955,0.86966,0.723345,0.104323,0.386501,0.977055,0.181914,0.136301,0.558999,0.0576321,0.747393,0.840518,0.745763,0.231356,0.155087,0.612624,0.852387,0.960122,0.0954489,0.586196,0.108583,0.667702,0.769539,0.820112,0.569778,0.169374,0.980858,0.975943,0.449107,0.807661,0.496572,0.807848,0.0545544,0.728379,0.70136,0.8309,0.706069,0.702185,0.309678,0.420521,0.109857,0.956317,0.471313,0.0179241,0.864142,0.101891,0.505618,0.941156,0.257872,0.403854,0.098446,0.567518,0.946227,0.513085,0.261324,0.599656,0.534274,0.677367,0.290523,0.394324,0.511219,0.171762,0.758086,0.585234,0.328859,0.00924516,0.871795,0.0573049,0.56184,0.932418,0.925743,0.584352,0.717642,0.438145,0.730912,0.448036,0.660842,0.00620359,0.428457,0.753224,0.64668,0.782286,0.432168,0.435709,0.276846,0.0229653,0.174976,0.498658,0.676174,0.148316,0.0352482,0.327566,0.091179,0.422731,0.190281,0.335442,0.547756,0.147162,0.0634723,0.32203,0.173424,0.967493,0.00378704,0.577165,0.986128,0.756565,0.371213,0.327215,0.0981754,0.997023,0.734961,0.908038,0.676958,0.497658,0.778619,0.63396,0.0378496,0.122509,0.114555,0.703729,0.307761,0.289656,0.0449103,0.692693,0.804598,0.315395,0.77667,0.399469,0.925362,0.0136628,0.379554,0.936633,0.300258,0.177648,0.223518,0.845035,0.258492,0.466743,0.705834,0.315061,0.151325,0.281852,0.257581,0.103862,0.516239,0.482642,0.491059,0.46955,0.412749,0.800704,0.492474,0.821663,0.545739,0.270504,0.637698,0.413243,0.201901,0.0888397,0.723309,0.934311,0.101555,0.716474,0.995163,0.993856,0.0627149,0.52018,0.329853,0.943853,0.182718,0.870994,0.975307,0.171435,0.914276,0.896535,0.842057,0.497778,0.951022,0.881434,0.794294,0.426009,0.241654,0.90453,0.760029,0.34052,0.436766,0.75626,0.370525,0.887621,0.348711,0.348086,0.857524,0.943441,0.660337,0.655635,0.105696,0.7367,0.806268,0.413842,0.257514,0.504701,0.0773776,0.431426,0.574983,0.31104,0.473156,0.179248,0.820968,0.981779,0.70044,0.342547,0.233341,0.0641909,0.617731,0.845923,0.955001,0.524741,0.0798729,0.937875,0.482242,0.818813,0.47635,0.132198,0.544824,0.384832,0.0863101,0.796445,0.186812,0.790061,0.964639,0.450829,0.3048,0.924613,0.586193,0.752771,0.86667,0.0798644,0.782738,0.390919,0.26185,0.713535,0.234012,0.607619,0.258717,0.600609,0.316395,0.34411,0.869839,0.633199,0.0572047,0.0522932,0.926851,0.889537,0.984367,0.0661159,0.302926,0.30022,0.0942136,0.488215,0.0142912,0.98155,0.432078,0.416094,0.797333,0.378332,0.944653,0.817885,0.824953,0.42779,0.761593,0.882139,0.0801303,0.655686,0.41378,0.655493,0.712164,0.428502,0.695655,0.168556,0.593095,0.12991,0.0139226,0.688481,0.965303,0.963404,0.0202166,0.482955,0.751537,0.187001,0.772517,0.906553,0.992807,0.576323,0.783847,0.648328,0.759345,0.486265,0.326246,0.484233,0.332792,0.0195165,0.286827,0.832721,0.348973,0.344821,0.658424,0.768573,0.250169,0.948427,0.923748,0.49455,0.428385,0.21239,0.425941,0.846799,0.459946,0.993484,0.965722,0.693762,0.445313,0.78437,0.416344,0.553297,0.521607,0.788592,0.172392,0.83324,0.778562,0.288915,0.73306,0.155748,0.781517,0.784738,0.328498,0.708737,0.349801,0.618657,0.101286,0.650201,0.00828719,0.641977,0.62045,0.0384672,0.238033,0.356263,0.318474,0.974541,0.886451,0.914462,0.781645,0.713443,0.323938,0.340106,0.944855,0.593541,0.142517,0.780814,0.295265,0.34246,0.270705,0.706782,0.35088,0.990934,0.0619783,0.330885,0.469889,0.853834,0.590122,0.318047,0.715438,0.335209,0.758667,0.437422,0.716751,0.566698,0.26764,0.308325,0.280531,0.170142,0.121553,0.356785,0.72706,0.2945,0.905636,0.694954,0.080327,0.719478,0.710043,0.806828,0.736795,0.369626,0.604453,0.0786141,0.992179,0.565515,0.436627,0.797078,0.688773,0.693643,0.122864,0.74846,0.908773,0.164588,0.173734,0.874841,0.0685313,0.328259,0.494896,0.618502,0.461883,0.548695,0.652066,0.852582,0.216106,0.54343,0.753922,0.601309,0.387563,0.702784,0.772399,0.148327,0.832822,0.374327,0.958355,0.566027,0.694509,0.70008,0.465643,0.850365,0.801358,0.487078,0.881625,0.0239049,0.120287,0.624631,0.32937,0.865807,0.224604,0.511733,0.425592,0.914956,0.237002,0.879784,0.566933,0.118663,0.875772,0.373729,0.38123,0.287497,0.197181,0.722726,0.0497655,0.0775514,0.915922,0.302611,0.154822,0.67817,0.464605,0.810001,0.878018,0.670646,0.541219,0.449271,0.882446,0.393424,0.155904,0.0317089,0.542499,0.000209391,0.639117,0.950822,0.352977,0.340693,0.226873,0.265888,0.119434,0.335684,0.303738,0.366152,0.73135,0.255608,0.995952,0.929042,0.687387,0.447158,0.118576,0.301588,0.850241,0.035525,0.229329,0.0903372,0.20359,0.751633,0.497425,0.226101,0.397484,0.128404,0.35921,0.894796,0.374654,0.432735,0.443216,0.186799,0.858146,0.929272,0.422541,0.851326,0.00511932,0.0693569,0.212354,0.39294,0.313678,0.280914,0.32953,0.442036,0.980337,0.0988849,0.136556,0.13824,0.635565,0.995067,0.593226,0.956889,0.647831,0.549423,0.484742,0.119028,0.0670178,0.856933,0.444422,0.534561,0.717731,0.498638,0.00670481,0.0102822,0.47803,0.0921495,0.328589,0.215928,0.436549,0.879218,0.904732,0.0982239,0.0633564,0.11377,0.477847,0.37891,0.979982,0.298099,0.0141281,0.170914,0.857195,0.494885,0.973399,0.100277,0.0531576,0.65972,0.703315,0.971089,0.415589,0.911287,0.347481,0.242057,0.449112,0.764993,0.34044,0.708504,0.0380464,0.703607,0.492335,0.156493,0.901661,0.94039,0.0162271,0.899942,0.831825,0.089893,0.798076,0.584601,0.258296,0.595159,0.112388,0.418307,0.809173,0.570062,0.840962,0.305372,0.406556,0.0675966,0.701815,0.405371,0.182398,0.671742,0.502499,0.20721,0.857104,0.00362885,0.754977,0.621688,0.528936,0.369898,0.21442,0.228661,0.339008,0.676599,0.0221652,0.3643,0.498938,0.018959,0.808883,0.848686,0.578326,0.00868922,0.580487,0.729664,0.0810443,0.778432,0.78144,0.0999979,0.317468,0.896915,0.423181,0.603446,0.128795,0.426673,0.454873,0.583834,0.579144,0.658077,0.695379,0.0528252,0.24652,0.468927,0.023864,0.183708,0.445536,0.704535,0.51175,0.823682,0.0926228,0.484881,0.0403335,0.690298,0.704124,0.783068,0.854899,0.957812,0.55289,0.127691,0.303515,0.768862,0.949773,0.85493,0.775897,0.590558,0.341345,0.389415,0.209349,0.207544,0.182551,0.00459915,0.98455,0.336897,0.32232,0.47984,0.236636,0.00122911,0.215889,0.205519,0.0231557,0.532357,0.595742,0.439045,0.973627,0.117683,0.162468,0.552323,0.0332528,0.693828,0.0561095,0.186148,0.539888,0.211323,0.994207,0.723563,0.427002,0.58913,0.392181,0.177444,0.84828,0.872806,0.109646,0.665949,0.520679,0.911693,0.952641,0.738421,0.864045,0.66615,0.714531,0.734108,0.487035,0.132899,0.544979,0.808558,0.66369,0.479076,0.620706,0.196827,0.717835,0.501748,0.10632,0.533483,0.906282,0.142531,0.817162,0.209132,0.184276,0.15374,0.180816,0.867087,0.880976,0.86066,0.162563,0.89744,0.901125,0.129883,0.88276,0.350334,0.113977,0.69285,0.496395,0.027908,0.53763,0.61745,0.508143,0.512795,0.2663,0.707728,0.083008,0.797195,0.195821,0.0214139,0.114798,0.241508,0.974009,0.650673,0.973793,|0.436765,0.408073,0.122897,0.407457,0.0850155,0.0140371,0.477152,0.186524,0.865444,0.800675,0.037907,0.989667,0.128188,0.548936,0.504515,0.162448,0.705054,0.169306,0.0515729,0.414164,0.050994,0.0315236,0.502299,0.765732,0.189112,0.206869,0.967774,0.00799787,0.761589,0.687128,0.109324,0.0427848,0.0436772,0.915794,0.930166,0.0916124,0.464803,0.519106,0.380727,0.0761217,0.067764,0.0648361,0.459064,0.242469,0.164496,0.334681,0.120443,0.598083,0.912636,0.912853,0.69879,0.724307,0.90653,0.621836,0.941682,0.809883,0.696171,0.129622,0.416167,0.0242667,0.118577,0.673708,0.256072,0.557761,0.564819,0.565177,0.262265,0.477078,0.942005,0.0690126,0.508067,0.608198,0.110813,0.217994,0.633244,0.216654,0.857288,0.0377495,0.905465,0.479675,0.336998,0.0961768,0.562012,0.971152,0.610408,0.886529,0.729065,0.664401,0.836039,0.963788,0.876008,0.685223,0.733179,0.765336,0.806678,0.022702,0.348359,0.165585,0.625286,0.26258,0.785522,0.710898,0.902146,0.534741,0.471952,0.0491719,0.293983,0.539934,0.289265,0.47807,0.77197,0.636787,0.758752,0.806608,0.752275,0.105254,0.474184,0.199158,0.710379,0.213141,0.902367,0.0317506,0.198057,0.771333,0.443835,0.899768,0.0492262,0.0572606,0.375746,0.109415,0.607017,0.676608,0.712711,0.0536191,0.33435,0.0515742,0.182662,0.0441844,0.354747,0.619446,0.447037,0.801438,0.708302,0.784722,0.51209,0.756817,0.480026,0.552982,0.129759,0.536834,0.222359,0.780805,0.244768,0.983669,0.259462,0.961119,0.922987,0.804832,0.607625,0.486977,0.215781,0.759523,0.154926,0.342933,0.147929,0.11968,0.470886,0.239942,0.988695,0.367006,0.51955,0.356788,0.534508,0.335792,0.160264,0.7576,0.365937,0.331099,0.396691,0.0800762,0.317533,0.222345,0.728357,0.213288,0.781687,0.907676,0.0348459,0.292656,0.715708,0.622295,0.51181,0.495093,0.657793,0.406823,0.761134,0.939514,0.910479,0.0810302,0.320588,0.906945,0.253491,0.413732,0.125465,0.660524,0.146097,0.503339,0.272152,0.979502,0.324843,0.978083,0.852598,0.830914,0.794507,0.785022,0.485736,0.7944,0.381641,0.540033,0.171723,0.51276,0.63745,0.867453,0.0986899,0.898051,0.398435,0.380866,0.62848,0.789258,0.931044,0.100654,0.208551,0.889394,0.852649,0.754534,0.787251,0.101671,0.931715,0.871786,0.1312,0.146264,0.922587,0.959107,0.623561,0.59501,0.348296,0.467375,0.71304,0.755012,0.341065,0.34033,0.460691,0.0239118,0.908708,0.559502,0.230732,0.913872,0.82097,0.591456,0.125117,0.939823,0.85325,0.744471,0.041074,0.247854,0.278657,0.272383,0.493394,0.354699,0.327784,0.851499,0.752897,0.470962,0.48868,0.37284,0.290306,0.85364,0.775817,0.562559,0.602672,0.345201,0.352291,0.190093,0.884046,0.1743,0.0569602,0.854233,0.98972,0.586424,0.293557,0.693784,0.830715,0.995009,0.197335,0.231353,0.310632,0.117956,0.21488,0.305162,0.749989,0.204513,0.924032,0.126917,0.297151,0.678458,0.72797,0.403933,0.974441,0.195545,0.341204,0.606581,0.00283128,0.314384,0.390441,0.42585,0.667513,0.131664,0.190985,0.436253,0.993197,0.420947,0.336224,0.339732,0.17645,0.6623,0.801453,0.00561863,0.0306929,0.776174,0.489934,0.358946,0.886294,0.304503,0.575593,0.642601,0.716746,0.216396,0.52895,0.666317,0.978374,0.183499,0.0664608,0.506455,0.214176,0.160536,0.611891,0.0891561,0.728392,0.200254,0.212532,0.346899,0.645216,0.984076,0.835668,0.795287,0.608924,0.255174,0.351776,0.754191,0.184937,0.710521,0.661521,0.0433105,0.707984,0.0630773,0.572063,0.0755941,0.240171,0.652767,0.462419,0.357108,0.777034,0.836429,0.898469,0.53311,0.981964,0.635476,0.841605,0.235298,0.636675,0.336829,0.382466,0.669605,0.732449,0.532602,0.125856,0.638902,0.890743,0.604756,0.755202,0.0310491,0.759471,0.185156,0.640509,0.652475,0.0766218,0.647333,0.204334,0.968472,0.59535,0.547093,0.582587,0.28474,0.0200261,0.715747,0.156916,0.0195794,0.137028,0.350914,0.363369,0.205553,0.392629,0.49804,0.379292,0.207526,0.47202,0.378851,0.323505,0.219966,0.185871,0.915735,0.96882,0.379117,0.143073,0.113899,0.956572,0.541249,0.346409,0.436456,0.820496,0.885966,0.916327,0.554862,0.168777,0.39653,0.0928861,0.403089,0.667418,0.288129,0.613264,0.379351,0.391399,0.960699,0.604673,0.0850197,0.512494,0.217255,0.96496,0.479969,0.374377,0.188167,0.380071,0.792682,0.846014,0.202705,0.949483,0.487442,0.248287,0.36385,0.105544,0.827832,0.647233,0.734178,0.073775,0.641976,0.496539,0.0893846,0.213839,0.186174,0.112369,0.0393484,0.256454,0.0920888,0.435554,0.136738,0.148899,0.133607,0.732533,0.495184,0.00466424,0.375038,0.656175,0.423018,0.871507,0.179302,0.170715,0.265395,0.428378,0.114431,0.922023,0.24033,0.90663,0.471486,0.310432,0.0236172,0.581504,0.467082,0.979656,0.551544,0.512186,0.286432,0.638995,0.281508,0.447379,0.603197,0.420197,0.797827,0.0511526,0.469789,0.712194,0.731035,0.94718,0.807631,0.0296312,0.59807,0.357261,0.99623,0.763485,0.0623698,0.0590621,0.222885,0.661038,0.356853,0.404504,0.285506,0.591798,0.386617,0.10915,0.118145,0.287381,0.918466,0.859324,0.208871,0.987555,0.139159,0.782183,0.97691,0.472003,0.901563,0.969637,0.648338,0.82967,0.894363,0.68855,0.498128,0.510013,0.173115,0.426321,0.385063,0.82006,0.904455,0.379175,0.820563,0.312004,0.870349,0.732036,0.9901,0.101734,0.918207,0.718965,0.948568,0.942118,0.317857,0.116859,0.058333,0.24695,0.513454,0.415578,0.0838103,0.737051,0.298363,0.431067,0.134689,0.643212,0.307699,0.593184,0.0684558,0.606776,0.00772041,0.601962,0.17139,0.0196922,0.322739,0.143343,0.946761,0.347996,0.710375,0.0124706,0.389366,0.708091,0.99383,0.342373,0.0307441,0.851312,0.577524,0.968452,0.958851,0.883419,0.63279,0.908584,0.593049,0.275795,0.380647,0.219741,0.610355,0.621209,0.730154,0.564011,0.888698,0.9613,0.419912,0.0614048,0.897092,0.593709,0.228513,0.509869,0.260527,0.0523457,0.741784,0.966939,0.597973,0.181118,0.778093,0.394331,0.315755,0.390093,0.280975,0.331924,0.615161,0.25198,0.053565,0.452437,0.499237,0.965105,0.2332,0.543605,0.706337,0.319599,0.734071,0.0494704,0.579074,0.681476,0.155572,0.951211,0.934712,0.0682275,0.130181,0.962964,0.296571,0.456174,0.906817,0.379472,0.719704,0.66974,0.388235,0.224225,0.221882,0.83564,0.423903,0.539094,0.359387,0.0184191,0.928672,0.11438,0.395114,0.185733,0.517649,0.22307,0.419008,0.471215,0.39562,0.46107,0.154681,0.0971166,0.794375,0.326388,0.633625,0.458338,0.859201,0.635355,0.164104,0.665486,0.0246666,0.514739,0.631017,0.779948,0.933414,0.10944,0.470373,0.369496,0.870184,0.890935,0.47719,0.541871,0.604625,0.782111,0.236857,0.262188,0.650022,0.301143,0.778282,0.920197,0.163662,0.194898,0.660492,0.243956,0.647929,0.873004,0.539166,0.967157,0.866705,0.90111,0.32324,0.993655,0.956028,0.0272597,0.0733259,0.171428,0.695741,0.202033,0.284998,0.180045,0.125818,0.360653,0.588316,0.240092,0.700869,0.114885,0.150628,0.532312,0.87574,0.988019,0.710823,0.85994,0.537425,0.86512,0.63783,0.809971,0.74356,0.0669675,0.590286,0.00993568,0.504223,0.880985,0.320852,0.707867,0.144312,0.498018,0.784241,0.380161,0.25039,0.713559,0.25961,0.359604,0.22399,0.517303,0.00232536,0.488904,0.303672,0.152291,0.838834,0.593073,0.0298273,0.227312,0.548595,0.992814,0.326218,0.948689,0.63172,0.737661,0.387237,0.0520393,0.10607,0.510292,0.663445,0.501086,0.16904,0.15028,0.13289,0.0494419,0.761288,0.928286,0.643351,0.392984,0.836087,0.248621,0.586205,0.807633,0.815189,0.295036,0.820547,0.830592,0.842573,0.29873,0.165261,0.642178,0.0955567,0.155899,0.206093,0.202297,0.645664,0.765082,0.663957,0.455301,0.142627,0.0853001,0.349362,0.853948,0.826584,0.368647,0.479239,0.896477,0.519903,0.112393,0.336861,0.250346,0.442865,0.237876,0.410376,0.930928,0.314467,0.962199,0.65611,0.776497,0.648159,0.108625,0.206906,0.616917,0.0753378,0.516768,0.11077,0.150389,0.797082,0.564204,0.753102,0.0168316,0.612696,0.939478,0.25016,0.62709,0.857116,0.989016,0.562181,0.723754,0.583511,0.937846,0.686922,0.717911,0.280537,0.901135,0.828806,0.403938,0.00836021,0.123877,0.431913,0.686898,0.358811,0.284519,0.835023,0.915784,0.554618,0.0631284,0.399758,0.380854,0.149122,0.744864,0.801736,0.973767,0.755024,0.533397,0.441588,0.546438,0.391395,0.362193,0.960406,0.598151,0.330512,0.494362,0.39388,0.9449,0.975892,0.527101,0.127233,0.685891,0.821252,0.752108,0.978463,0.240401,0.33344,0.390367,0.145777,0.201301,0.485322,0.723395,0.444308,0.484624,0.298803,0.746603,0.617117,0.92588,0.405943,0.894664,0.19831,0.230725,0.395984,0.700101,0.638032,0.126534,0.33505,0.00793809,0.635446,0.723662,0.747615,0.371585,0.583608,0.289342,0.922999,0.743642,0.296784,0.643621,0.550584,0.0132959,0.785658,0.850987,0.904325,0.385733,0.566081,0.273954,0.544601,0.455357,0.741066,0.0503383,0.595689,0.554515,0.417444,0.781669,0.300451,0.213579,0.184136,0.833814,0.260501,0.563622,0.595811,0.407161,0.0147496,0.501809,0.0721757,0.0392786,0.485675,0.465639,0.7027,0.753066,0.573046,0.313703,0.53751,0.213423,0.484604,0.410452,0.161691,0.775341,0.573196,0.378947,0.405239,0.627198,0.826329,0.707304,0.588577,0.266145,0.573263,0.414247,0.77368,0.160314,0.327968,0.872454,0.961923,0.833704,0.585767,0.231583,0.124367,0.798281,0.721439,0.569556,0.558412,0.267378,0.46392,0.314694,0.208549,0.247426,0.878707,0.0410374,0.92972,0.431212,0.754538,0.278682,0.802516,0.525173,0.0962781,0.199024,0.470714,0.417909,0.430936,|0.620286,0.205047,0.275699,0.773229,0.13584,0.659254,0.485474,0.238841,0.291153,0.608657,0.729027,0.984911,0.920312,0.500891,0.449899,0.217238,0.0439762,0.116882,0.113582,0.812179,0.475644,0.557896,0.138199,0.834185,0.144234,0.638326,0.172393,0.79895,0.965082,0.68105,0.789771,0.0292694,0.356692,0.591148,0.771707,0.519719,0.0749018,0.541794,0.889215,0.646471,0.185359,0.443925,0.653157,0.190791,0.992207,0.0578921,0.321311,0.0276292,0.0897461,0.0247635,0.768411,0.592155,0.0673951,0.711347,0.939183,0.955977,0.191952,0.185332,0.889428,0.723728,0.303963,0.956738,0.719197,0.363446,0.546922,0.366992,0.968184,0.505799,0.827387,0.197863,0.0553012,0.344219,0.255526,0.706056,0.775355,0.0707141,0.373958,0.0495113,0.715125,0.249399,0.0783162,0.634916,0.377835,0.804617,0.304462,0.480986,0.611999,0.350661,0.866047,0.711978,0.463163,0.0247351,0.600846,0.140664,0.167286,0.329318,0.317542,0.890412,0.391047,0.257476,0.865109,0.465478,0.254905,0.102297,0.477145,0.591066,0.374692,0.49985,0.990975,0.713195,0.664053,0.512402,0.212034,0.0675294,0.505926,0.745896,0.694064,0.749311,0.961225,0.992634,0.883467,0.389479,0.885821,0.550794,0.818088,0.589926,0.367311,0.224384,0.450226,0.289687,0.858602,0.992439,0.168311,0.25143,0.194719,0.274813,0.775697,0.0997238,0.589201,0.360309,0.457074,0.107504,0.227703,0.440504,0.454233,0.0655992,0.29916,0.23721,0.0747777,0.926211,0.471391,0.398486,0.546757,0.818583,0.503679,0.299718,0.985179,0.484089,0.145298,0.65042,0.167526,0.251563,0.228734,0.721197,0.533651,0.806832,0.605385,0.999191,0.25756,0.647705,0.218669,0.878443,0.459554,0.94051,0.633964,0.609736,0.890686,0.599498,0.0298302,0.382753,0.0257969,0.383861,0.201749,0.881036,0.103438,0.194658,0.844303,0.812237,0.729624,0.662467,0.193272,0.524681,0.26362,0.875811,0.0819969,0.813157,0.90868,0.442746,0.313814,0.0827617,0.444352,0.562598,0.0943017,0.975686,0.914165,0.486879,0.54513,0.455348,0.189979,0.993778,0.402147,0.269634,0.449528,0.0748313,0.509194,0.426435,0.647477,0.851922,0.455314,0.0889655,0.828258,0.504255,0.496273,0.890364,0.135428,0.0104162,0.298887,0.560548,0.472269,0.625695,0.62255,0.217043,0.0856773,0.179918,0.682617,0.853631,0.512743,0.360067,0.203673,0.124608,0.410861,0.297674,0.462989,0.968626,0.78384,0.245931,0.961619,0.0247896,0.282376,0.556957,0.35901,0.600195,0.883307,0.618007,0.192293,0.387688,0.440372,0.120134,0.0597991,0.239133,0.798683,0.137964,0.994741,0.940452,0.544103,0.883672,0.0742982,0.761508,0.318139,0.953753,0.816685,0.541982,0.182672,0.147641,0.238537,0.759298,0.387832,0.570382,0.693101,0.105671,0.345857,0.861611,0.810201,0.692072,0.497057,0.493237,0.478342,0.872892,0.360635,0.649456,0.465366,0.0984893,0.750372,0.540389,0.869016,0.222079,0.609199,0.455051,0.750504,0.279656,0.771336,0.156585,0.815947,0.764065,0.776474,0.615949,0.652167,0.557851,0.0772575,0.807046,0.0657449,0.123716,0.380515,0.541832,0.537508,0.0180225,0.0766968,0.718649,0.797946,0.117297,0.730996,0.143622,0.588481,0.492527,0.111388,0.09314,0.681277,0.964827,0.758262,0.7638,0.220691,0.784781,0.752207,0.241282,0.549921,0.00450218,0.513275,0.721329,0.19954,0.511729,0.361435,0.479682,0.172949,0.696694,0.411528,0.00340456,0.566505,0.795742,0.932374,0.77002,0.483842,0.766201,0.313685,0.162251,0.94706,0.552723,0.560739,0.961965,0.850562,0.0610832,0.0293772,0.4923,0.397897,0.329653,0.841834,0.23409,0.820537,0.565241,0.626844,0.294714,0.231292,0.513425,0.801246,0.32071,0.475845,0.353145,0.218151,0.769935,0.258576,0.0259869,0.107647,0.127546,0.988914,0.129209,0.576535,0.785112,0.376644,0.252683,0.757317,0.0460931,0.677459,0.0608042,0.129564,0.24763,0.442153,0.659015,0.441478,0.550664,0.189352,0.368688,0.0603016,0.760932,0.0109257,0.977747,0.281119,0.141508,0.0104346,0.620642,0.355447,0.190768,0.784392,0.335783,0.322204,0.934545,0.37562,0.605075,0.463467,0.589369,0.696103,0.707993,0.891513,0.809041,0.495521,0.348141,0.473272,0.9108,0.719746,0.000701547,0.741789,0.133514,0.485822,0.605922,0.898559,0.91072,0.18703,0.456272,0.99203,0.167928,0.0314757,0.278127,0.702951,0.623907,0.392892,0.129789,0.307278,0.29511,0.406494,0.0649311,0.168662,0.900854,0.550973,0.739201,0.116154,0.714269,0.80814,0.813352,0.936646,0.168777,0.189074,0.352982,0.351909,0.5837,0.44639,0.338877,0.548524,0.664603,0.35902,0.313955,0.991997,0.850783,0.115353,0.195523,0.587795,0.196392,0.39797,0.94866,0.668856,0.553786,0.222585,0.635382,0.282271,0.491291,0.963955,0.534414,0.740945,0.502235,0.442952,0.488176,0.590066,0.917052,0.723998,0.252391,0.276827,0.0329913,0.597286,0.774303,0.659299,0.212318,0.657459,0.702798,0.134082,0.935804,0.067477,0.512428,0.750729,0.130707,0.741679,0.210526,0.913122,0.387856,0.795252,0.869609,0.732417,0.018926,0.220567,0.873218,0.307821,0.699934,0.519127,0.57024,0.187636,0.0188273,0.909012,0.340521,0.96629,0.537579,0.0467123,0.0957216,0.435217,0.226974,0.0900057,0.557507,0.191811,0.484176,0.199952,0.925693,0.787731,0.993304,0.47543,0.393533,0.386225,0.000446796,0.422868,0.728983,0.812291,0.170912,0.239041,0.34318,0.231134,0.811811,0.0492063,0.189806,0.565442,0.398257,0.444774,0.667633,0.152494,0.0321442,0.00150913,0.91667,0.967711,0.160458,0.70659,0.298092,0.387197,0.507008,0.0646433,0.396731,0.360002,0.146815,0.0622281,0.528736,0.432459,0.255302,0.449193,0.41723,0.679794,0.521,0.0946618,0.14764,0.639545,0.27336,0.667474,0.720078,0.385198,0.719484,0.69415,0.508225,0.476892,0.0749296,0.299342,0.153772,0.899042,0.0891061,0.533332,0.880286,0.2181,0.0426698,0.0184945,0.0133784,0.437994,0.0624245,0.620041,0.614219,0.779343,0.0319249,0.192221,0.844191,0.327116,0.740314,0.713122,0.341738,0.399967,0.793536,0.344685,0.0508775,0.648432,0.607149,0.771583,0.162452,0.252965,0.295344,0.415981,0.239538,0.504571,0.442217,0.224369,0.762955,0.408811,0.140954,0.00428915,0.730715,0.255876,0.694636,0.458648,0.85071,0.0620404,0.834326,0.855119,0.90253,0.534885,0.637088,0.128859,0.643987,0.495042,0.905627,0.936064,0.343625,0.463284,0.760986,0.506733,0.228235,0.363996,0.923767,0.697182,0.520647,0.788559,0.987439,0.0286818,0.277512,0.508848,0.906347,0.755477,0.7997,0.468672,0.873255,0.504272,0.942633,0.885557,0.797554,0.41027,0.366618,0.835661,0.190577,0.454925,0.367537,0.554099,0.52307,0.750094,0.780791,0.386068,0.667924,0.827219,0.0170444,0.939528,0.894573,0.797566,0.610394,0.242966,0.600909,0.398391,0.761482,0.328796,0.0965247,0.0515278,0.703794,0.804754,0.432615,0.690884,0.657669,0.854327,0.0560331,0.732855,0.47792,0.551539,0.133576,0.771332,0.936451,0.831717,0.108949,0.0467574,0.653083,0.434318,0.972595,0.511298,0.277244,0.702927,0.397431,0.298212,0.877562,0.151402,0.0909579,0.955856,0.261252,0.727198,0.880816,0.92037,0.878892,0.481967,0.366479,0.0747761,0.234548,0.890647,0.316999,0.853135,0.995469,0.637282,0.247786,0.269191,0.424412,0.680063,0.525866,0.0460466,0.758154,0.3247,0.755102,0.879864,0.676192,0.38608,0.757293,0.365883,0.361917,0.689064,0.880607,0.769671,0.751675,0.131291,0.177629,0.89228,0.382627,0.695499,0.287483,0.669742,0.258162,0.37011,0.845725,0.704638,0.531181,0.741343,0.887254,0.725959,0.263267,0.598853,0.834222,0.651285,0.348046,0.602883,0.798508,0.914824,0.694894,0.677739,0.435565,0.315474,0.799729,0.330584,0.348519,0.796686,0.604099,0.788633,0.107987,0.378269,0.553293,0.0308098,0.0825082,0.70297,0.624042,0.628254,0.721768,0.568618,0.266079,0.763806,0.383031,0.620063,0.315934,0.121768,0.980828,0.94391,0.591207,0.817532,0.498229,0.432094,0.473979,0.865886,0.0798725,0.721907,0.0935569,0.725074,0.450629,0.96124,0.636839,0.347182,0.736138,0.217195,0.704899,0.604919,0.906198,0.364856,0.0475563,0.299979,0.148628,0.0166987,0.537832,0.845366,0.0221997,0.990585,0.490265,0.593311,0.241732,0.82915,0.464336,0.946871,0.702849,0.426934,0.460812,0.5028,0.926604,0.6481,0.745617,0.488326,0.00526971,0.533297,0.297988,0.763154,0.740937,0.611837,0.888062,0.78801,0.755975,0.888156,0.263942,0.525317,0.116911,0.683692,0.884016,0.779481,0.18905,0.566513,0.497886,0.449436,0.309457,0.388517,0.693111,0.799022,0.660774,0.428548,0.0251969,0.985995,0.268275,0.967294,0.696767,0.253393,0.317401,0.106094,0.613349,0.405183,0.622023,0.0180799,0.207983,0.086506,0.652134,0.0267967,0.950885,0.426177,0.15381,0.342102,0.0496022,0.292422,0.071461,0.710172,0.305213,0.108096,0.445358,0.835883,0.274954,0.352476,0.871166,0.926417,0.499675,0.860206,0.620047,0.382307,0.605206,0.560321,0.806186,0.406194,0.526749,0.516896,0.230951,0.112624,0.638039,0.87753,0.841683,0.83414,0.960683,0.888429,0.981736,0.104149,0.586665,0.716763,0.214322,0.0434722,0.763085,0.216742,0.96899,0.751671,0.751962,0.681438,0.96575,0.108095,0.421234,0.587501,0.33849,0.87087,0.99588,0.877088,0.186382,0.529081,0.403915,0.0634219,0.317884,0.26376,0.332662,0.552855,0.553104,0.126952,0.0212577,0.822148,0.518118,0.602098,0.690826,0.810389,0.824466,0.346471,0.847601,0.459694,0.591853,0.710102,0.640652,0.980916,0.49826,0.263465,0.28454,0.945353,0.870497,0.661584,0.789548,0.285484,0.722866,0.298234,0.304342,0.437979,0.644786,0.247651,0.70792,0.162939,0.134104,0.639668,0.87453,0.658874,0.47928,0.203725,0.856771,0.56625,0.771856,0.531683,0.957848,0.143957,0.778517,0.748609,0.9858,|0.965015,0.515876,0.875475,0.261968,0.040289,0.71152,0.0440801,0.361883,0.334566,0.0369402,0.0471457,0.896375,0.800918,0.175021,0.566124,0.876227,0.894501,0.492988,0.662122,0.473327,0.780913,0.414974,0.62988,0.599905,0.27953,0.0185826,0.206422,0.382274,0.384284,0.55754,0.59889,0.977639,0.712039,0.55834,0.217134,0.105405,0.484952,0.0815756,0.492673,0.452572,0.384006,0.798102,0.498739,0.271408,0.851914,0.499968,0.270956,0.433779,0.873174,0.262178,0.632901,0.622764,0.143305,0.993069,0.274923,0.276229,0.59152,0.386439,0.112642,0.844142,0.923464,0.20637,0.60762,0.106742,0.311243,0.857963,0.71538,0.491173,0.0073415,0.81727,0.795161,0.952781,0.0475654,0.939729,0.105937,0.958488,0.82354,0.59506,0.215997,0.334176,0.0758732,0.362258,0.934252,0.725485,0.788296,0.905808,0.372898,0.983637,0.760899,0.874048,0.497038,0.485306,0.729946,0.611358,0.763954,0.870883,0.976443,0.0915085,0.815313,0.10779,0.0326945,0.136846,0.414178,0.233792,0.288737,0.3703,0.597056,0.330141,0.461028,0.377564,0.087593,0.147924,0.148314,0.0670688,0.564517,0.134225,0.493906,0.406343,0.427653,0.494395,0.0653359,0.709452,0.553775,0.0934989,0.142724,0.54524,0.711926,0.740553,0.808282,0.0512124,0.307504,0.197252,0.0753418,0.00758797,0.00230992,0.160067,0.944178,0.0185994,0.875148,0.757062,0.613242,0.191841,0.703821,0.0961038,0.389643,0.0133833,0.0359842,0.513406,0.579734,0.677151,0.189285,0.147007,0.634628,0.128212,0.739307,0.290515,0.032541,0.86343,0.962364,0.290821,0.782253,0.166776,0.0524487,0.495898,0.769278,0.413442,0.0435829,0.264469,0.136683,0.512504,0.169034,0.174545,0.88627,0.777279,0.0113979,0.52448,0.356857,0.670571,0.217786,0.0827829,0.739749,0.184031,0.519038,0.410742,0.00514418,0.672762,0.96902,0.818452,0.124956,0.200688,0.47027,0.975223,0.600278,0.287957,0.348552,0.169855,0.913202,0.987848,0.604365,0.0549656,0.315793,0.796477,0.643425,0.861799,0.742187,0.266516,0.964527,0.671844,0.155961,0.240529,0.0116536,0.996042,0.580522,0.393321,0.345633,0.154157,0.598314,0.555879,0.19343,0.331164,0.619626,0.357915,0.514707,0.792675,0.588671,0.591609,0.320776,0.901775,0.848054,0.962328,0.510298,0.051256,0.320655,0.0743534,0.589848,0.615953,0.939773,0.952685,0.342363,0.584719,0.966743,0.129374,0.721543,0.264887,0.166699,0.760786,0.252128,0.386699,0.267384,0.160469,0.748837,0.681679,0.133806,0.742126,0.193472,0.548329,0.0102496,0.484932,0.269289,0.884182,0.692359,0.530728,0.270156,0.145368,0.0651663,0.0300437,0.751827,0.375408,0.66817,0.310346,0.379335,0.338536,0.166429,0.0190795,0.751589,0.952998,0.155998,0.231893,0.345965,0.893417,0.571468,0.692186,0.747147,0.60819,0.697952,0.609448,0.329448,0.610343,0.0278038,0.23279,0.938505,0.70683,0.551869,0.964992,0.458808,0.583667,0.761232,0.0636641,0.767576,0.0885786,0.0447953,0.708616,0.0221859,0.990305,0.679889,0.55789,0.506371,0.585907,0.576496,0.0351252,0.846137,0.677906,0.980988,0.489549,0.254142,0.45376,0.741106,0.416302,0.875407,0.838531,0.970967,0.162528,0.192313,0.0279876,0.242086,0.773222,0.0807207,0.580775,0.833235,0.266016,0.514328,0.052083,0.942208,0.294354,0.323498,0.145246,0.401299,0.874594,0.394609,0.23741,0.795371,0.0572582,0.375236,0.543968,0.198926,0.804838,0.264768,0.0981067,0.106663,0.305956,0.250768,0.629031,0.19394,0.83734,0.929257,0.0939512,0.057328,0.287873,0.610876,0.290773,0.535272,0.429064,0.416929,0.0778063,0.121722,0.325951,0.934121,0.140946,0.615631,0.362357,0.978295,0.285003,0.350748,0.575543,0.371238,0.503054,0.739151,0.0997223,0.543734,0.566899,0.419792,0.0386426,0.990411,0.309651,0.87822,0.616196,0.15495,0.134168,0.217331,0.533962,0.677785,0.258635,0.250582,0.814659,0.597324,0.680991,0.873761,0.986015,0.988756,0.929035,0.500436,0.983833,0.854229,0.10672,0.333021,0.0807849,0.48497,0.699417,0.273279,0.324616,0.544685,0.255775,0.200419,0.494469,0.871689,0.00801188,0.337701,0.0680116,0.672094,0.945652,0.799999,0.958826,0.407592,0.901541,0.0314022,0.381377,0.41694,0.371972,0.0279917,0.873588,0.367107,0.180847,0.594875,0.402897,0.245445,0.604455,0.658525,0.609465,0.272713,0.762764,0.164887,0.95355,0.572394,0.474668,0.84578,0.336989,0.878751,0.312845,0.294436,0.376974,0.0145682,0.794701,0.783572,0.200572,0.262104,0.475746,0.920822,0.0762599,0.356049,0.657967,0.732053,0.664088,0.0521696,0.231196,0.533989,0.378462,0.935756,0.37042,0.238991,0.246204,0.393346,0.262124,0.334195,0.665865,0.95869,0.512847,0.181462,0.761132,0.601673,0.137605,0.969605,0.928044,0.36752,0.120645,0.343543,0.632709,0.402286,0.50412,0.52526,0.190313,0.607183,0.518252,0.567171,0.581152,0.195065,0.838183,0.439603,0.754327,0.712362,0.473172,0.163936,0.400597,0.0977795,0.636183,0.865445,0.0311124,0.972896,0.153861,0.312339,0.153259,0.132355,0.781825,0.3348,0.347253,0.0707025,0.818848,0.930564,0.287295,0.546939,0.202791,0.7877,0.270061,0.681695,0.859835,0.489256,0.259466,0.346313,0.325844,0.791952,0.74009,0.92118,0.505842,0.784836,0.225064,0.895575,0.0653568,0.926942,0.747141,0.154843,0.493803,0.0463225,0.825179,0.455452,0.153282,0.357409,0.35879,0.928042,0.196034,0.0553629,0.58695,0.0673876,0.670448,0.79941,0.527659,0.584976,0.579297,0.736829,0.892643,0.800526,0.589026,0.18556,0.400887,0.3094,0.111522,0.761074,0.88507,0.894133,0.456864,0.450927,0.883766,0.786667,0.973989,0.579265,0.714109,0.837615,0.533629,0.212211,0.671655,0.806209,0.702762,0.218142,0.207525,0.0864778,0.133016,0.125199,0.875116,0.262372,0.00937074,0.611481,0.499999,0.300836,0.217086,0.704061,0.47989,0.585889,0.959732,0.356092,0.636985,0.813728,0.53786,0.532755,0.700336,0.0672489,0.908369,0.943945,0.192857,0.867114,0.441321,0.841835,0.00237542,0.560307,0.432395,0.472657,0.982567,0.13251,0.446077,0.109308,0.655544,0.385186,0.812112,0.463051,0.500792,0.441249,0.309505,0.758546,0.672071,0.967468,0.0260385,0.928635,0.631673,0.826364,0.65644,0.754438,0.327036,0.0338671,0.697404,0.809992,0.882455,0.0096699,0.508059,0.672373,0.870368,0.574716,0.0513825,0.436775,0.631575,0.647614,0.173792,0.839586,0.248274,0.151399,0.763772,0.848255,0.273797,0.0507373,0.702654,0.773668,0.186572,0.297657,0.732581,0.551459,0.604158,0.458115,0.985965,0.0244055,0.953858,0.433622,0.399735,0.699775,0.984805,0.12646,0.0945179,0.477727,0.656653,0.918476,0.451454,0.670857,0.113819,0.371449,0.624424,0.909218,0.865436,0.486181,0.253242,0.93422,0.396364,0.878625,0.316625,0.824673,0.844357,0.737725,0.962342,0.253605,0.724355,0.625968,0.255897,0.517811,0.222532,0.465434,0.00524014,0.575393,0.174699,0.706631,0.21354,0.694496,0.264809,0.993803,0.779264,0.253804,0.715795,0.510382,0.855254,0.161921,0.749257,0.960651,0.264077,0.108612,0.251492,0.39012,0.138669,0.0064612,0.386585,0.889675,0.725197,0.448118,0.342023,0.433069,0.548459,0.725098,0.0327099,0.871034,0.29171,0.457346,0.877175,0.995352,0.325787,0.622862,0.750116,0.373646,0.451967,0.197179,0.96146,0.693328,0.857956,0.948189,0.697056,0.229824,0.856919,0.607358,0.828494,0.0984377,0.171424,0.964277,0.984929,0.40383,0.193768,0.246661,0.815816,0.715319,0.406722,0.668287,0.0246571,0.529543,0.461373,0.898316,0.790292,0.985538,0.746835,0.637924,0.731224,0.29649,0.945737,0.607718,0.894554,0.383963,0.409275,0.205662,0.158761,0.542506,0.153035,0.00606775,0.550893,0.423225,0.153145,0.402054,0.940831,0.191499,0.364633,0.295957,0.722443,0.287158,0.348754,0.200583,0.132086,0.00358486,0.324961,0.873015,0.451752,0.650079,0.788329,0.491833,0.24433,0.90067,0.0941513,0.330682,0.353748,0.737783,0.757945,0.341776,0.134256,0.569791,0.740576,0.241454,0.920382,0.305583,0.921019,0.919333,0.295303,0.0252326,0.499197,0.00692385,0.286605,0.491381,0.719448,0.142782,0.839244,0.358569,0.997005,0.520212,0.385833,0.341643,0.523628,0.926771,0.939933,0.480284,0.332392,0.111355,0.284849,0.898068,0.338233,0.384288,0.586286,0.106236,0.0312713,0.691945,0.0838482,0.856059,0.804399,0.819082,0.215047,0.814799,0.835717,0.131773,0.012867,0.710354,0.700867,0.107971,0.00679749,0.36748,0.808089,0.72469,0.596769,0.139457,0.0109098,0.254528,0.37802,0.202914,0.922155,0.0890121,0.906683,0.71929,0.516731,0.0550084,0.201717,0.0192419,0.110802,0.693626,0.821637,0.0935897,0.0679748,0.552366,0.915389,0.666903,0.707896,0.721701,0.628337,0.151073,0.491358,0.230761,0.310575,0.264529,0.564365,0.235741,0.513777,0.318851,0.111343,0.991213,0.408461,0.775284,0.997394,0.0602804,0.882944,0.181821,0.995672,0.870608,0.646822,0.849017,0.808791,0.942353,0.839247,0.000169396,0.0886918,0.579928,0.74263,0.25988,0.29092,0.955525,0.119088,0.0894151,0.929113,0.167356,0.715028,0.452892,0.476174,0.272513,0.382551,0.739269,0.922557,0.843396,0.410977,0.0547479,0.153156,0.766081,0.0923432,0.0480608,0.326415,0.758441,0.44963,0.881549,0.250796,0.897813,0.125007,0.798446,0.638752,0.228997,0.571064,0.88988,0.0695783,0.854861,0.178768,0.808876,0.704748,0.0546591,0.579285,0.927722,0.216129,0.104764,0.836225,0.829666,0.287078,0.549361,0.722194,0.199188,0.418377,0.452602,0.500782,0.907189,0.403556,0.0798572,0.123312,0.714154,0.255414,0.35996,0.308145,0.779377,0.322736,0.282035,0.726023,0.481412,0.161423,0.185226,0.431067,0.637127,0.941501,0.955763,0.224154,0.0673453,0.735528,0.341279,0.818306,0.201535,0.236622,0.186952,0.201726,0.477978,0.799363,0.222174,0.667789,0.296505,0.0227742,|0.187201,0.104555,0.672755,0.549176,0.247906,0.021843,0.694089,0.402925,0.360954,0.807042,0.23784,0.515853,0.222796,0.788369,0.489236,0.301113,0.291561,0.174461,0.0769213,0.139641,0.351536,0.320702,0.934472,0.489895,0.0792126,0.0439207,0.764559,0.0820835,0.756855,0.936486,0.235741,0.545591,0.872697,0.300712,0.420788,0.271348,0.884748,0.353068,0.920315,0.68419,0.438908,0.637684,0.148244,0.506291,0.620366,0.427009,0.0675927,0.795228,0.259572,0.68953,0.428305,0.74516,0.998222,0.51046,0.867179,0.16708,0.0227388,0.0596443,0.34345,0.701594,0.561028,0.275123,0.280456,0.766493,0.538894,0.516469,0.823147,0.609434,0.473623,0.575876,0.332458,0.89941,0.473441,0.471638,0.136488,0.751105,0.441849,0.346657,0.821068,0.835985,0.888086,0.255002,0.699846,0.484704,0.412088,0.67715,0.224792,0.828716,0.991018,0.165638,0.0631616,0.740505,0.383583,0.808064,0.702823,0.979747,0.0964293,0.734978,0.136284,0.105774,0.461068,0.308158,0.326097,0.950366,0.0940952,0.484871,0.513669,0.629341,0.827285,0.799748,0.648082,0.5299,0.234451,0.588025,0.617323,0.940741,0.00412077,0.793436,0.415339,0.278237,0.805004,0.0605022,0.638251,0.496379,0.848041,0.460849,0.906634,0.137976,0.570387,0.660473,0.589166,0.295528,0.484206,0.174742,0.156938,0.204744,0.271755,0.353404,0.273811,0.384933,0.0243883,0.163123,0.799464,0.545058,0.427246,0.768231,0.199697,0.457454,0.452376,0.69632,0.590692,0.165148,0.42989,0.312269,0.884318,0.743929,0.975329,0.739532,0.287398,0.757498,0.801327,0.3209,0.260249,0.222768,0.38513,0.685369,0.467019,0.637652,0.519262,0.982475,0.970431,0.755039,0.493235,0.310029,0.881106,0.0549501,0.187617,0.344275,0.0552742,0.0299307,0.901228,0.251545,0.752435,0.902498,0.654466,0.282781,0.913315,0.250074,0.0706658,0.211691,0.291766,0.166906,0.0872397,0.786301,0.536364,0.0494562,0.885476,0.849511,0.634902,0.511957,0.0199102,0.859775,0.663762,0.699884,0.602579,0.287719,0.879416,0.00100899,0.179558,0.0802056,0.79488,0.961386,0.293098,0.162634,0.22187,0.00168103,0.379048,0.274528,0.198717,0.00515306,0.819104,0.191938,0.717708,0.348676,0.293068,0.961514,0.565721,0.0320458,0.724181,0.941436,0.553923,0.8427,0.371648,0.338046,0.890296,0.905243,0.0139599,0.207107,0.0458195,0.232742,0.00600761,0.349939,0.719496,0.137191,0.677584,0.619408,0.819812,0.0550691,0.047464,0.51579,0.0554683,0.746151,0.383574,0.0865621,0.318684,0.842634,0.779735,0.0325437,0.955985,0.419774,0.632781,0.860703,0.381643,0.173744,0.42237,0.803884,0.526065,0.0978196,0.696413,0.979479,0.0228174,0.309132,0.26099,0.789527,0.0590736,0.706171,0.588059,0.154297,0.386655,0.92297,0.352948,0.00315791,0.675828,0.941828,0.389719,0.873935,0.151769,0.626095,0.289493,0.0943543,0.313337,0.459507,0.380484,0.539771,0.666175,0.727219,0.916487,0.687097,0.367044,0.315709,0.799877,0.842047,0.304498,0.221589,0.672267,0.330313,0.176699,0.125641,0.405321,0.564093,0.363398,0.741831,0.025894,0.16524,0.827041,0.634885,0.56467,0.135721,0.232733,0.585053,0.0655496,0.550709,0.681504,0.743913,0.428201,0.963024,0.773027,0.94908,0.594549,0.725073,0.256138,0.890486,0.526806,0.964793,0.417745,0.715672,0.722259,0.739871,0.888033,0.684253,0.57086,0.798494,0.990371,0.205023,0.85667,0.233835,0.397911,0.790479,0.513282,0.379503,0.56982,0.534543,0.135772,0.515199,0.557525,0.935899,0.484933,0.325723,0.101872,0.941381,0.00866938,0.0833027,0.118949,0.470188,0.583314,0.88092,0.24948,0.589398,0.0685328,0.292706,0.380972,0.945256,0.480783,0.751049,0.152831,0.28235,0.857813,0.871287,0.56695,0.256481,0.850967,0.415659,0.153511,0.158319,0.401202,0.913599,0.446408,0.76454,0.399186,0.257424,0.907645,0.997103,0.106673,0.099251,0.310068,0.890668,0.629926,0.767613,0.751879,0.0151953,0.32836,0.824292,0.0679126,0.986353,0.175185,0.461009,0.966391,0.311028,0.727659,0.596966,0.319336,0.242693,0.816376,0.273396,0.30297,0.416518,0.523262,0.620674,0.489439,0.175253,0.86127,0.373207,0.976201,0.711993,0.104508,0.687749,0.227235,0.198899,0.0915948,0.622371,0.595515,0.591588,0.229616,0.673024,0.500781,0.541036,0.587129,0.608954,0.0206391,0.726924,0.456991,0.614392,0.261458,0.00330687,0.903621,0.355139,0.661339,0.390462,0.188074,0.855993,0.163831,0.506198,0.665483,0.857949,0.846677,0.396073,0.0785943,0.588222,0.874593,0.766776,0.216567,0.516287,0.0924268,0.225984,0.948858,0.79436,0.683839,0.964709,0.37112,0.687204,0.138313,0.311294,0.256774,0.181061,0.570629,0.197865,0.229495,0.661007,0.86619,0.820607,0.376555,0.33126,0.998115,0.689278,0.692025,0.884526,0.469012,0.20927,0.355346,0.813505,0.0111209,0.379717,0.938771,0.640074,0.218287,0.874491,0.392254,0.505191,0.549176,0.00685757,0.801196,0.361805,0.134838,0.854802,0.909539,0.597757,0.974357,0.925195,0.198051,0.148948,0.994224,0.989639,0.124765,0.0779345,0.811018,0.53187,0.291137,0.784342,0.391004,0.539868,0.169023,0.137753,0.316051,0.668653,0.508752,0.275875,0.00432372,0.193755,0.166182,0.652459,0.601563,0.180476,0.372528,0.841841,0.388326,0.4292,0.418533,0.0107574,0.535264,0.835937,0.475221,0.889843,0.343788,0.988869,0.666899,0.17113,0.603451,0.433657,0.598132,0.937764,0.897466,0.789307,0.0804145,0.371848,0.341437,0.319616,0.888931,0.852606,0.819391,0.812301,0.977687,0.0216931,0.394884,0.0820787,0.604741,0.180264,0.265976,0.999421,0.476376,0.36517,0.311717,0.543216,0.161833,0.154523,0.845245,0.765001,0.10906,0.400494,0.853009,0.650526,0.00192571,0.686586,0.422806,0.772184,0.934744,0.050621,0.833324,0.459501,0.216057,0.772224,0.159844,0.910586,0.410487,0.39183,0.520761,0.830426,0.490667,0.22607,0.968395,0.727623,0.803037,0.378763,0.804192,0.114185,0.122486,0.533388,0.241123,0.031645,0.69326,0.0273495,0.641061,0.345269,0.951918,0.915554,0.721443,0.932185,0.158702,0.182465,0.525686,0.601707,0.655977,0.42702,0.674907,0.809309,0.724808,0.968137,0.00156981,0.220636,0.399151,0.432183,0.83246,0.017849,0.954145,0.169572,0.209213,0.843362,0.167841,0.207447,0.877187,0.191687,0.00922126,0.950955,0.791248,0.0681559,0.499431,0.364626,0.139331,0.737069,0.849408,0.125654,0.0686129,0.0419912,0.225104,0.639931,0.134509,0.235295,0.576938,0.425006,0.977293,0.227533,0.69272,0.388715,0.271444,0.5247,0.804202,0.109361,0.895774,0.690222,0.822227,0.619795,0.281835,0.363675,0.418666,0.611482,0.725785,0.0883796,0.580654,0.0385624,0.828111,0.479085,0.320776,0.70654,0.967452,0.275024,0.133229,0.757982,0.972953,0.116689,0.526098,0.0494673,0.821707,0.543425,0.289738,0.836942,0.896925,0.0163516,0.155442,0.982274,0.632697,0.552728,0.336558,0.642303,0.589589,0.229335,0.863849,0.624612,0.950144,0.515146,0.28451,0.196182,0.936577,0.509146,0.0914067,0.205292,0.429536,0.702159,0.23098,0.787785,0.951278,0.323002,0.0219123,0.170756,0.72866,0.505944,0.774519,0.16366,0.337087,0.527244,0.072742,0.695602,0.155368,0.27976,0.298016,0.104826,0.569265,0.789686,0.822371,0.443706,0.560478,0.262451,0.423987,0.510348,0.435623,0.558431,0.163037,0.697164,0.143267,0.950363,0.339023,0.336204,0.0719801,0.924515,0.342289,0.563439,0.673388,0.543285,0.260183,0.684484,0.11965,0.808048,0.375216,0.840369,0.918716,0.825268,0.618985,0.361187,0.864453,0.254136,0.83868,0.630834,0.462151,0.130987,0.124709,0.336856,0.796501,0.670524,0.400874,0.754239,0.729069,0.771807,0.247474,0.672126,0.85593,0.453941,0.429045,0.833769,0.52831,0.231853,0.796987,0.807167,0.659188,0.0554568,0.713703,0.0408053,0.291249,0.631815,0.405149,0.17625,0.1724,0.00835979,0.987322,0.406345,0.514222,0.00226486,0.910021,0.334954,0.957203,0.0088281,0.360431,0.426801,0.171464,0.863756,0.184798,0.375095,0.0625696,0.73964,0.502657,0.993869,0.110815,0.549258,0.872973,0.921377,0.219503,0.447636,0.727304,0.795578,0.13387,0.788667,0.758628,0.85946,0.75736,0.940351,0.292222,0.908493,0.952808,0.489514,0.504648,0.973001,0.991985,0.0374213,0.67158,0.933418,0.46997,0.673505,0.342309,0.983674,0.0562365,0.0488466,0.739861,0.10982,0.992432,0.251836,0.0163217,0.749255,0.554607,0.644243,0.99084,0.0481679,0.833266,0.398466,0.19695,0.23363,0.383968,0.451368,0.59296,0.983339,0.0699323,0.521348,0.445957,0.695282,0.371575,0.461798,0.851313,0.799372,0.598471,0.622509,0.800669,0.952284,0.230284,0.299531,0.457742,0.406016,0.913742,0.0172678,0.305887,0.130256,0.450644,0.276344,0.714232,0.15758,0.955445,0.526713,0.814013,0.574412,0.860978,0.656418,0.0272917,0.948126,0.509198,0.64665,0.484581,0.819321,0.480247,0.982881,0.463898,0.926782,0.271701,0.0180699,0.944628,0.298803,0.757188,0.16803,0.296117,0.0422721,0.502047,0.35909,0.820975,0.503158,0.289234,0.0133665,0.556649,0.898552,0.226802,0.996573,0.641314,0.630842,0.153012,0.349698,0.171755,0.955724,0.130385,0.988146,0.713357,0.435278,0.677667,0.967751,0.493815,0.990211,0.146799,0.56912,0.0124419,0.00762689,0.929943,0.993049,0.764424,0.982367,0.646206,0.692988,0.8124,0.47214,0.725167,0.91418,0.270655,0.0823536,0.0862554,0.702603,0.601541,0.636895,0.0113518,0.102854,0.75714,0.0537504,0.0106726,0.15925,0.282227,0.79455,0.766375,0.105138,0.577149,0.682663,0.607218,0.468322,0.838339,0.768618,0.956128,0.151542,0.329013,0.147804,0.260797,0.291535,0.8247,0.486573,0.931026,0.230099,0.805961,0.664667,0.341042,0.35979,0.35365,0.780443,0.448485,0.416194,0.0613867,0.49667,0.6704,0.797596,0.83924,0.0740337,0.558172,0.289376,|0.570965,0.437063,0.0506316,0.330545,0.763021,0.599822,0.768976,0.689206,0.729946,0.943972,0.391213,0.400459,0.416472,0.299805,0.543166,0.631077,0.349929,0.527422,0.368106,0.113302,0.243899,0.134968,0.824606,0.338413,0.82844,0.461038,0.904756,0.0260946,0.5753,0.600899,0.947534,0.663699,0.839782,0.662878,0.313403,0.55888,0.562363,0.552459,0.385432,0.300837,0.36011,0.0855146,0.675878,0.0386679,0.230093,0.374906,0.407988,0.534854,0.154128,0.647416,0.786448,0.041105,0.0377985,0.753825,0.516153,0.95492,0.210333,0.670749,0.875912,0.75694,0.165484,0.928333,0.0621843,0.846543,0.900655,0.126076,0.818979,0.441945,0.157411,0.133245,0.910848,0.578273,0.169734,0.723648,0.997689,0.542819,0.766632,0.560549,0.357855,0.286868,0.431149,0.929972,0.0210622,0.0907857,0.285507,0.956878,0.329973,0.842156,0.78752,0.0698302,0.0965506,0.178261,0.981242,0.580416,0.698656,0.013129,0.752756,0.267338,0.950429,0.75769,0.175033,0.932167,0.383294,0.605392,0.716268,0.644112,0.684241,0.894936,0.355656,0.153808,0.414397,0.479782,0.733777,0.807284,0.0757384,0.67007,0.391357,0.227077,0.0110765,0.142475,0.232316,0.133099,0.969883,0.249606,0.958967,0.464312,0.689706,0.657322,0.731048,0.597643,0.441983,0.762444,0.476721,0.0488744,0.878974,0.837294,0.750729,0.0713928,0.822252,0.160283,0.576866,0.362931,0.255351,0.993645,0.68214,0.523935,0.392347,0.842849,0.666419,0.799979,0.410753,0.489799,0.174976,0.737246,0.265247,0.844209,0.521794,0.570826,0.32118,0.93004,0.806632,0.941637,0.871273,0.932141,0.313198,0.744123,0.534914,0.0686627,0.966375,0.873043,0.591075,0.109864,0.516488,0.729244,0.563784,0.610795,0.288621,0.269643,0.280645,0.0701491,0.695018,0.384422,0.700987,0.22706,0.236799,0.553335,0.254108,0.429428,0.133605,0.525506,0.460671,0.0869425,0.03207,0.783681,0.668951,0.0196881,0.876136,0.00411624,0.181711,0.964432,0.0590425,0.584729,0.210421,0.872231,0.528124,0.429336,0.301723,0.163914,0.508046,0.0522825,0.218274,0.889046,0.643565,0.283873,0.524636,0.80593,0.023252,0.566093,0.138234,0.00312155,0.435968,0.812034,0.625232,0.456713,0.313543,0.0450066,0.952329,0.462287,0.83823,0.652072,0.478358,0.938174,0.91396,0.354999,0.0865295,0.918376,0.835749,0.568335,0.586737,0.206591,0.885078,0.803102,0.429667,0.719427,0.39947,0.126277,0.626464,0.334936,0.215933,0.768629,0.269497,0.9234,0.528477,0.456186,0.766713,0.478973,0.0321849,0.267993,0.0356622,0.633763,0.752417,0.511459,0.276424,0.458576,0.636523,0.175959,0.0894741,0.231534,0.659929,0.167827,0.733194,0.227655,0.0101806,0.384242,0.535108,0.426486,0.642639,0.962848,0.199387,0.910851,0.0748684,0.025546,0.736104,0.514821,0.738047,0.911361,0.0284516,0.0495427,0.182942,0.116644,0.807318,0.4264,0.972697,0.713654,0.550599,0.0239109,0.248949,0.28168,0.975658,0.130841,0.177713,0.713386,0.684241,0.348554,0.140457,0.311131,0.43065,0.956253,0.808946,0.449919,0.426968,0.252527,0.618282,0.947345,0.755914,0.131142,0.0907031,0.910712,0.99484,0.156785,0.445964,0.344587,0.579432,0.553154,0.247578,0.351825,0.917376,0.39834,0.700276,0.0571019,0.187567,0.486953,0.927198,0.302725,0.906365,0.990812,0.866861,0.794703,0.182791,0.190388,0.90882,0.652955,0.381283,0.764402,0.227398,0.531435,0.0105599,0.389213,0.200535,0.845064,0.0477527,0.224811,0.303502,0.498723,0.971227,0.869554,0.770927,0.94162,0.827568,0.0962032,0.870295,0.0914172,0.921108,0.701964,0.710203,0.929993,0.336263,0.0813508,0.35868,0.444895,0.471481,0.396667,0.714058,0.697996,0.803246,0.840255,0.189834,0.263362,0.510734,0.844938,0.344342,0.858439,0.922212,0.521455,0.0660406,0.147027,0.111838,0.548651,0.85387,0.444064,0.353567,0.0245807,0.725587,0.392343,0.407966,0.358585,0.497185,0.796731,0.568559,0.676994,0.50458,0.681546,0.0460901,0.504398,0.0796691,0.835349,0.338535,0.221637,0.663932,0.978281,0.823913,0.42707,0.695477,0.958122,0.930815,0.554026,0.717288,0.80155,0.0270044,0.850964,0.680794,0.411867,0.766465,0.973496,0.61654,0.637283,0.938736,0.820623,0.252202,0.597355,0.343917,0.777824,0.139802,0.249591,0.237241,0.295002,0.0145891,0.75295,0.667337,0.118859,0.311628,0.304968,0.112521,0.426855,0.638863,0.407317,0.981277,0.30414,0.10487,0.0233258,0.555144,0.101605,0.0321188,0.0655648,0.298333,0.438457,0.597501,0.14587,0.804009,0.358949,0.587408,0.212198,0.816869,0.378134,0.899509,0.326624,0.333132,0.794723,0.16773,0.108287,0.863414,0.634512,0.999311,0.75368,0.382378,0.261229,0.0352614,0.85856,0.287775,0.848983,0.199393,0.338759,0.422536,0.649585,0.273651,0.979888,0.51491,0.0413449,0.781662,0.0124525,0.211718,0.408045,0.19987,0.124314,0.0100507,0.226764,0.175375,0.453126,0.347081,0.309505,0.790643,0.730508,0.501056,0.413354,0.141079,0.285237,0.792636,0.771805,0.383388,0.658446,0.158798,0.624272,0.413098,0.298173,0.682449,0.77055,0.307716,0.0465729,0.818296,0.511307,0.212035,0.795667,0.861287,0.00700998,0.27968,0.218303,0.732938,0.535595,0.0790548,0.550037,0.125751,0.0836521,0.708505,0.0733323,0.761218,0.869078,0.537514,0.852297,0.881668,0.102768,0.985922,0.676434,0.879557,0.00761962,0.76005,0.803119,0.235333,0.396556,0.143836,0.208104,0.539984,0.229433,0.241376,0.859243,0.700672,0.414727,0.479722,0.45039,0.181394,0.233265,0.684317,0.110023,0.20529,0.142885,0.20562,0.351818,0.852611,0.684736,0.91105,0.0725831,0.139754,0.798595,0.0976663,0.300379,0.196269,0.926281,0.412286,0.755135,0.948353,0.158683,0.267349,0.866288,0.328087,0.110369,0.0614201,0.428377,0.991297,0.874138,0.358059,0.699361,0.242983,0.46886,0.138235,0.813576,0.796373,0.332194,0.458192,0.286541,0.498861,0.183897,0.977134,0.952707,0.917535,0.308047,0.120567,0.782141,0.469439,0.758834,0.857467,0.268856,0.842105,0.326846,0.609135,0.728265,0.344201,0.155825,0.520605,0.580492,0.118883,0.700717,0.732706,0.716293,0.646027,0.244977,0.519837,0.922163,0.924456,0.170866,0.200873,0.478834,0.0621175,0.57953,0.51469,0.861263,0.66556,0.817466,0.233737,0.726547,0.716883,0.415503,0.862413,0.423783,0.599449,0.0411654,0.665763,0.553805,0.0266937,0.782456,0.674382,0.0574781,0.995222,0.140353,0.705264,0.171134,0.513298,0.569797,0.724352,0.545651,0.662071,0.515004,0.00105101,0.286345,0.120357,0.887564,0.721441,0.104659,0.60453,0.602205,0.291103,0.199048,0.906638,0.0258523,0.145893,0.761863,0.750854,0.980832,0.232145,0.188699,0.455301,0.340864,0.317632,0.117764,0.0577949,0.449299,0.203501,0.797155,0.0889892,0.104989,0.732982,0.044983,0.374673,0.0154531,0.0391464,0.435898,0.559026,0.738463,0.812221,0.0408481,0.370356,0.498223,0.566381,0.290553,0.0122836,0.363455,0.626318,0.947926,0.805922,0.0218465,0.996889,0.562666,0.80044,0.96601,0.535905,0.104699,0.977234,0.0644041,0.0987055,0.755676,0.865349,0.235961,0.126397,0.678108,0.94975,0.0520897,0.208978,0.21046,0.476995,0.780147,0.631748,0.44069,0.720047,0.971543,0.908979,0.729329,0.0514479,0.304276,0.956409,0.638759,0.880676,0.933179,0.859751,0.0956729,0.465645,0.744375,0.640876,0.948007,0.291639,0.833288,0.167581,0.877653,0.632607,0.553996,0.272409,0.300519,0.521583,0.0787424,0.125262,0.755206,0.0272449,0.0183687,0.117339,0.0306631,0.422164,0.772037,0.825002,0.762331,0.206586,0.686027,0.475829,0.298382,0.709403,0.23754,0.36564,0.992656,0.253584,0.457669,0.667508,0.728955,0.391956,0.439273,0.152542,0.822899,0.502135,0.398661,0.465059,0.383123,0.171246,0.0485916,0.158939,0.530154,0.716412,0.998244,0.295428,0.620868,0.476024,0.228875,0.0981365,0.886266,0.384243,0.933555,0.269121,0.679994,0.155172,0.0918111,0.52686,0.396459,0.325735,0.0168866,0.0195798,0.523584,0.310424,0.140119,0.235442,0.527362,0.773899,0.398474,0.387653,0.686311,0.654892,0.514898,0.359954,0.639847,0.208736,0.279293,0.00560129,0.454096,0.975672,0.390495,0.211705,0.770212,0.534106,0.406491,0.0606049,0.75752,0.170539,0.904429,0.279772,0.95015,0.858102,0.000314116,0.017284,0.900536,0.180591,0.394681,0.853712,0.23393,0.492449,0.0033927,0.786176,0.822501,0.360367,0.533276,0.760742,0.111028,0.951972,0.532889,0.720829,0.967561,0.770186,0.491764,0.771518,0.803086,0.69621,0.199503,0.712818,0.181628,0.833106,0.60833,0.903182,0.593392,0.909588,0.848213,0.519029,0.0909902,0.212167,0.440787,0.90145,0.650225,0.850468,0.82795,0.227993,0.343162,0.112428,0.0231773,0.997747,0.173464,0.0726394,0.978529,0.0700043,0.516813,0.320376,0.417868,0.263676,0.687846,0.174491,0.680978,0.905061,0.612743,0.136401,0.370917,0.305394,0.325261,0.522792,0.568783,0.494705,0.460111,0.92545,0.520288,0.425501,0.503664,0.955121,0.484378,0.0346319,0.367669,0.406539,0.804627,0.351026,0.351977,0.721073,0.43849,0.535239,0.816735,0.459909,0.544951,0.0766234,0.112703,0.0480165,0.652114,0.144698,0.884068,0.751304,0.412052,0.893988,0.350072,0.231885,0.572306,0.664485,0.142627,0.62055,0.464182,0.930759,0.129716,0.921561,0.39437,0.328239,0.967917,0.760808,0.689557,0.680984,0.528169,0.128393,0.0111443,0.694073,0.562614,0.764747,0.419387,0.142254,0.873291,0.585693,0.761753,0.175512,0.45914,0.497912,0.369637,0.188538,0.982481,0.854958,0.319227,0.0476328,0.967488,0.731497,0.761568,0.0337877,0.285116,0.996985,0.0765205,0.469789,0.973777,0.985293,0.132065,0.612645,0.497521,0.692594,0.338886,0.449215,0.35876,0.28382,0.691087,0.105756,0.135643,0.322646,0.134893,0.396232,0.273474,0.202713,0.894584,0.258767,0.0531405,0.906714,0.0247623,|0.740251,0.534498,0.600772,0.221362,0.318796,0.345295,0.704188,0.629233,0.458361,0.837811,0.255159,0.187031,0.723394,0.272417,0.733227,0.0355986,0.75419,0.442728,0.310777,0.968395,0.277711,0.103703,0.334457,0.122623,0.476571,0.947195,0.0780401,0.526706,0.593096,0.884342,0.742273,0.255644,0.51484,0.978122,0.193377,0.181907,0.391258,0.0938893,0.659873,0.60067,0.576107,0.445846,0.0232351,0.537565,0.723702,0.435636,0.209602,0.638613,0.77763,0.60131,0.127456,0.00641519,0.503485,0.353527,0.214872,0.487636,0.80404,0.287859,0.435781,0.820292,0.900283,0.918518,0.612052,0.958216,0.323948,0.971565,0.094426,0.634674,0.860144,0.599894,0.972741,0.156853,0.445189,0.552169,0.0753829,0.828408,0.479163,0.763544,0.0631982,0.656228,0.259718,0.445456,0.0930042,0.735286,0.959544,0.677689,0.504265,0.390415,0.531035,0.301303,0.994755,0.784183,0.84471,0.32467,0.352625,0.755688,0.558603,0.159489,0.282286,0.224564,0.907531,0.788736,0.905617,0.568234,0.307675,0.510391,0.703226,0.600334,0.823668,0.94655,0.0187732,0.589676,0.0912888,0.891778,0.539576,0.480774,0.159786,0.250081,0.597801,0.809895,0.0408261,0.500206,0.232028,0.290692,0.293449,0.506373,0.172217,0.521455,0.30818,0.0446544,0.429298,0.717929,0.930269,0.454199,0.402012,0.178216,0.154545,0.35369,0.896514,0.357514,0.968154,0.0900133,0.589554,0.869713,0.0411889,0.373061,0.490878,0.433122,0.289461,0.721587,0.86452,0.792895,0.754522,0.968263,0.521164,0.905825,0.691617,0.34252,0.246124,0.942796,0.886038,0.397928,0.857957,0.0514416,0.546031,0.95008,0.871884,0.961451,0.285506,0.565224,0.761513,0.76137,0.971242,0.764056,0.588703,0.491946,0.538332,0.980239,0.135733,0.434692,0.28758,0.477502,0.385017,0.907721,0.563781,0.875332,0.189902,0.72355,0.495003,0.63384,0.801266,0.664615,0.971349,0.0446835,0.947126,0.961461,0.106266,0.223706,0.311864,0.0129361,0.946321,0.0514153,0.844734,0.0706028,0.0666569,0.958628,0.982785,0.171687,0.977036,0.404485,0.597382,0.52284,0.185153,0.9288,0.54751,0.498098,0.98645,0.299531,0.795442,0.208521,0.296967,0.822101,0.505849,0.764856,0.849486,0.726421,0.83487,0.363809,0.191877,0.403136,0.413858,0.531448,0.496201,0.306681,0.724657,0.896835,0.354875,0.800194,0.460851,0.725987,0.0260378,0.561797,0.874078,0.199303,0.389821,0.14865,0.357277,0.443327,0.7348,0.955061,0.193621,0.0821567,0.458005,0.639858,0.0031606,0.0913044,0.176793,0.296677,0.9415,0.62845,0.00903934,0.0829608,0.182441,0.760994,0.29111,0.483957,0.753825,0.654781,0.8192,0.0882777,0.0415651,0.589375,0.849127,0.727457,0.910313,0.169291,0.886658,0.93855,0.359686,0.564573,0.225686,0.903745,0.127835,0.658081,0.377053,0.876932,0.57979,0.96038,0.615406,0.142427,0.8804,0.543123,0.104282,0.649158,0.388003,0.489,0.609826,0.166816,0.0825192,0.754774,0.906807,0.0112619,0.39938,0.769681,0.0733705,0.874758,0.125415,0.271811,0.342399,0.866722,0.122289,0.282764,0.0609791,0.872525,0.110783,0.0173771,0.584297,0.132613,0.333044,0.820088,0.319012,0.63813,0.135559,0.129923,0.206139,0.299175,0.858771,0.955683,0.201386,0.940882,0.599385,0.32061,0.0762277,0.352652,0.676761,0.147728,0.978664,0.249035,0.754682,0.527673,0.284855,0.0641658,0.0708405,0.573234,0.959988,0.074044,0.0506317,0.227105,0.515872,0.531387,0.19189,0.50865,0.429468,0.238484,0.747957,0.957792,0.989133,0.0147809,0.0582768,0.761922,0.286771,0.954864,0.310495,0.385031,0.341263,0.34329,0.265549,0.438219,0.929683,0.388411,0.865129,0.840357,0.159102,0.401216,0.763445,0.263631,0.0612779,0.0690649,0.278404,0.488804,0.481777,0.414768,0.900286,0.283617,0.796078,0.148021,0.578245,0.177633,0.706261,0.886161,0.577069,0.937757,0.751711,0.566002,0.498001,0.509557,0.985298,0.55647,0.844189,0.0599113,0.870478,0.402419,0.0242451,0.980207,0.434285,0.616967,0.556614,0.373462,0.157338,0.846293,0.487919,0.20232,0.366254,0.210735,0.48867,0.470187,0.34849,0.864602,0.22188,0.201354,0.974167,0.574631,0.174823,0.371038,0.510085,0.900249,0.415148,0.943949,0.113965,0.222737,0.546555,0.0877844,0.267392,0.730749,0.958157,0.573244,0.559719,0.0694306,0.214373,0.319481,0.389729,0.716606,0.143133,0.64828,0.81411,0.970709,0.46721,0.287185,0.274096,0.378222,0.420886,0.557918,0.726428,0.207098,0.985322,0.706397,0.344502,0.839302,0.00601256,0.887205,0.0685075,0.226204,0.00926489,0.53477,0.108484,0.257211,0.406861,0.016418,0.434776,0.0902998,0.942619,0.141341,0.425412,0.159253,0.363549,0.937375,0.923841,0.785591,0.92542,0.0856436,0.724714,0.0780842,0.232493,0.828552,0.286068,0.666646,0.456884,0.432453,0.569148,0.566265,0.700541,0.736265,0.404946,0.946029,0.991737,0.680453,0.240072,0.43992,0.304135,0.105623,0.884388,0.710975,0.480126,0.979921,0.749673,0.722402,0.968379,0.462859,0.0587251,0.567307,0.15599,0.255855,0.7716,0.204718,0.07963,0.230725,0.287228,0.339286,0.933432,0.904509,0.352263,0.167323,0.371936,0.729554,0.67712,0.883494,0.378387,0.289534,0.462229,0.066725,0.47293,0.620288,0.669441,0.736884,0.448646,0.526372,0.310341,0.968966,0.803014,0.167498,0.261793,0.894453,0.118465,0.432171,0.834953,0.617969,0.832878,0.714179,0.103533,0.120399,0.239037,0.962978,0.691611,0.69454,0.628026,0.839276,0.0694183,0.270979,0.851283,0.369771,0.466057,0.511375,0.615181,0.236818,0.611081,0.629596,0.769241,0.778867,0.015662,0.192797,0.868027,0.0343771,0.318756,0.010697,0.869314,0.551769,0.942196,0.250581,0.0454538,0.602384,0.937002,0.0725455,0.222219,0.633788,0.164599,0.74084,0.548934,0.373964,0.499141,0.273406,0.421366,0.337614,0.744197,0.490829,0.160366,0.0860752,0.578585,0.779669,0.225133,0.102958,0.20246,0.953971,0.971392,0.527118,0.551117,0.0877941,0.361485,0.786677,0.525946,0.63855,0.309617,0.087607,0.0977632,0.401733,0.857747,0.520131,0.0350519,0.230035,0.0767074,0.337388,0.823256,0.934271,0.0498644,0.215923,0.352589,0.296824,0.844067,0.988526,0.532034,0.810717,0.106512,0.692108,0.591817,0.209511,0.634641,0.943753,0.762137,0.153987,0.590489,0.664129,0.307034,0.757973,0.871777,0.230171,0.56091,0.190237,0.699885,0.348419,0.556598,0.446958,0.506018,0.347779,0.599955,0.591822,0.848635,0.210922,0.406137,0.224075,0.434148,0.971697,0.150221,0.219446,0.668698,0.831915,0.383125,0.83639,0.22951,0.0450252,0.779021,0.0261578,0.844768,0.48561,0.875955,0.970542,0.423742,0.300085,0.942405,0.321377,0.957679,0.645228,0.715352,0.0603276,0.510416,0.659585,0.13987,0.237584,0.818872,0.817133,0.813969,0.0702072,0.848872,0.505459,0.569055,0.347695,0.463204,0.382793,0.872051,0.729791,0.834181,0.108277,0.535737,0.259941,0.178705,0.188322,0.528575,0.864662,0.451527,0.483415,0.902958,0.328971,0.646226,0.947278,0.462501,0.609421,0.866832,0.637685,0.279287,0.170433,0.189776,0.520065,0.864257,0.805871,0.472745,0.921156,0.0219497,0.64101,0.0259354,0.237953,0.938226,0.441349,0.38714,0.989317,0.376134,0.0444458,0.53544,0.253456,0.147909,0.389718,0.499195,0.139521,0.846073,0.501113,0.0760438,0.175068,0.881154,0.792059,0.142603,0.837967,0.249328,0.0980486,0.680244,0.736636,0.583597,0.740392,0.580864,0.901828,0.980691,0.141391,0.418057,0.914855,0.343684,0.606453,0.965556,0.573205,0.66519,0.240882,0.674418,0.166273,0.857993,0.0684049,0.973785,0.39046,0.967259,0.8976,0.010593,0.557104,0.446177,0.782608,0.455613,0.567171,0.619468,0.561393,0.809667,0.995545,0.716619,0.898134,0.798829,0.645289,0.114001,0.264938,0.511146,0.781161,0.0110167,0.00398654,0.0304268,0.145087,0.920511,0.922755,0.643731,0.382356,0.14884,0.797286,0.836868,0.745595,0.664954,0.743334,0.78677,0.12543,0.732795,0.159087,0.978286,0.754423,0.890449,0.44222,0.757703,0.379904,0.386952,0.34698,0.0802262,0.412532,0.320929,0.135061,0.456103,0.0687671,0.148537,0.294705,0.216187,0.714668,0.113598,0.62071,0.166555,0.555645,0.869397,0.636006,0.732916,0.783352,0.870054,0.343025,0.460411,0.134295,0.310521,0.212555,0.708198,0.388841,0.97106,0.637179,0.107485,0.573511,0.969609,0.815462,0.21335,0.809504,0.887467,0.0176386,0.620576,0.924592,0.0267273,0.472948,0.136465,0.920434,0.00424123,0.853098,0.441339,0.699892,0.559624,0.182982,0.00574589,0.893229,0.422162,0.745825,0.13936,0.912462,0.158839,0.413432,0.965982,0.891414,0.368763,0.38559,0.627618,0.925649,0.546991,0.393925,0.918758,0.111235,0.616118,0.129138,0.505448,0.981619,0.61925,0.200355,0.149705,0.508273,0.12764,0.331272,0.277536,0.262243,0.645981,0.58266,0.285203,0.102769,0.339834,0.382146,0.785108,0.147811,0.479388,0.0633,0.835746,0.468496,0.717089,0.455002,0.0014227,0.692608,0.972924,0.0715442,0.850729,0.294934,0.929603,0.615299,0.0519737,0.116688,0.500445,0.751637,0.677381,0.402259,0.915995,0.157462,0.041698,0.221364,0.666605,0.152534,0.407225,0.0451426,0.204759,0.666464,0.0698292,0.253943,0.258658,0.561872,0.939741,0.546399,0.84365,0.760053,0.409487,0.782804,0.608316,0.536248,0.851531,0.0587091,0.671608,0.576281,0.744928,0.34017,0.490125,0.508376,0.911652,0.924055,0.862075,0.973105,0.439758,0.54207,0.67737,0.962181,0.445608,0.519553,0.861826,0.84,0.925263,0.656725,0.173927,0.458189,0.880873,0.584936,0.317254,0.536751,0.506491,0.796734,0.98896,0.804013,0.719429,0.0390106,0.180905,0.8743,0.438507,0.285736,0.203413,0.711426,0.68169,0.0354944,0.846044,0.324863,0.132008,0.422366,0.461979,0.805616,0.0902684,0.945092,0.606818,0.197009,0.00800389,0.639934,|0.792655,0.807291,0.11961,0.00392866,0.882569,0.383726,0.445886,0.800296,0.549498,0.979104,0.874073,0.160698,0.312298,0.629182,0.643461,0.281723,0.783658,0.47084,0.660827,0.0573358,0.174739,0.228827,0.918987,0.690252,0.0693384,0.278605,0.792005,0.085358,0.181295,0.637248,0.041863,0.841728,0.684779,0.21942,0.495991,0.980824,0.0661806,0.400449,0.992983,0.867419,0.420145,0.532046,0.927024,0.681806,0.202313,0.809977,0.319809,0.796141,0.775462,0.566777,0.267156,0.0789155,0.0849792,0.976925,0.424738,0.43035,0.370128,0.00903302,0.779806,0.630222,0.372195,0.0185331,0.810359,0.944866,0.417509,0.132701,0.708327,0.619987,0.340539,0.973932,0.273094,0.414433,0.957625,0.505177,0.772216,0.464768,0.778674,0.31747,0.675652,0.258099,0.386777,0.274853,0.561737,0.548345,0.952747,0.952184,0.265616,0.96528,0.743211,0.669389,0.0761138,0.348252,0.0947163,0.513779,0.267266,0.400526,0.062618,0.559102,0.235307,0.588926,0.613803,0.0639656,0.940993,0.822309,0.457902,0.146488,0.0715815,0.0778723,0.572158,0.642978,0.228178,0.695404,0.0871085,0.627352,0.139474,0.696453,0.207911,0.906162,0.529171,0.255463,0.867176,0.729275,0.261996,0.107224,0.00762421,0.188777,0.149881,0.75886,0.796237,0.316614,0.228006,0.766682,0.397454,0.62179,0.88623,0.326629,0.737851,0.978098,0.0881149,0.543213,0.0980024,0.504553,0.200236,0.773652,0.113865,0.878554,0.718618,0.152373,0.0679669,0.497869,0.902694,0.953324,0.0866867,0.725916,0.241208,0.980242,0.301897,0.469984,0.990488,0.257037,0.209682,0.154924,0.425766,0.272416,0.0920635,0.00985545,0.268862,0.188578,0.431491,0.344133,0.48142,0.627692,0.0629684,0.511528,0.216214,0.255566,0.310021,0.837104,0.786728,0.167385,0.133425,0.520133,0.936355,0.960162,0.223479,0.13285,0.114409,0.521766,0.297932,0.00269359,0.268331,0.292012,0.329236,0.310725,0.00674695,0.0327163,0.0312318,0.39874,0.0505414,0.634642,0.8359,0.585968,0.863703,0.279853,0.888638,0.391065,0.334139,0.49758,0.491631,0.335158,0.356217,0.5441,0.872356,0.256621,0.52816,0.52947,0.253636,0.449125,0.624677,0.79854,0.414191,0.844892,0.877087,0.269595,0.636397,0.679584,0.821102,0.50385,0.545425,0.623067,0.535182,0.599237,0.49424,0.261848,0.35239,0.212973,0.610359,0.0929766,0.665924,0.359375,0.13288,0.522634,0.821078,0.539607,0.688089,0.228226,0.287515,0.696656,0.803146,0.723934,0.844606,0.934563,0.115212,0.815713,0.695251,0.281179,0.758753,0.503013,0.0986366,0.611978,0.0889482,0.564297,0.420196,0.623192,0.0543451,0.0747204,0.725005,0.949453,0.261045,0.105765,0.0728067,0.486935,0.118744,0.130249,0.849845,0.909949,0.460988,0.521426,0.0191512,0.0262859,0.634039,0.65368,0.518436,0.863876,0.199676,0.157171,0.655012,0.0435146,0.0427093,0.252367,0.502827,0.802301,0.916569,0.533621,0.593462,0.841802,0.35808,0.91669,0.509294,0.437541,0.52493,0.501643,0.921873,0.698372,0.672523,0.877656,0.360913,0.683759,0.31822,0.228408,0.119685,0.619328,0.687067,0.701293,0.219607,0.615646,0.426818,0.230966,0.866587,0.861041,0.914289,0.586417,0.854011,0.79703,0.327644,0.718718,0.236576,0.0251774,0.286536,0.831258,0.325196,0.961512,0.384774,0.703927,0.0628644,0.657664,0.303827,0.302378,0.93752,0.685371,0.187181,0.314898,0.658263,0.00421274,0.713127,0.640547,0.779136,0.137472,0.789411,0.682405,0.320352,0.621613,0.656247,0.580355,0.847882,0.737455,0.782412,0.028905,0.0269263,0.561663,0.80506,0.721607,0.848913,0.346842,0.891566,0.537087,0.92613,0.182376,0.948966,0.727623,0.254431,0.729388,0.259441,0.330539,0.616613,0.202999,0.842346,0.483667,0.00837946,0.0817749,0.811063,0.242527,0.0755902,0.579431,0.890527,0.57226,0.391412,0.176769,0.820496,0.272823,0.798054,0.138182,0.569531,0.0255578,0.109721,0.938171,0.724478,0.0130374,0.769087,0.841004,0.00712436,0.883474,0.0574328,0.808315,0.87429,0.87065,0.764757,0.502334,0.224947,0.426412,0.86293,0.0151604,0.755162,0.236158,0.503769,0.71087,0.281471,0.259428,0.852674,0.499161,0.651787,0.668429,0.41364,0.290395,0.975255,0.228857,0.922429,0.984754,0.792862,0.235601,0.872504,0.105337,0.683234,0.59978,0.655289,0.0490097,0.991492,0.492276,0.258093,0.0393389,0.851606,0.379989,0.572526,0.0892987,0.0439532,0.444473,0.707182,0.479183,0.637512,0.184194,0.984522,0.0270891,0.919475,0.551065,0.926277,0.732934,0.888865,0.0151503,0.0116344,0.824806,0.103178,0.245943,0.791609,0.0735083,0.950449,0.736882,0.682539,0.444732,0.700325,0.736951,0.913711,0.108789,0.77337,0.338828,0.904985,0.424489,0.0634448,0.106977,0.972964,0.801211,0.180264,0.414528,0.203372,0.950734,0.6823,0.808357,0.150632,0.227697,0.733397,0.889906,0.0532625,0.356104,0.736014,0.675162,0.241198,0.699116,0.650862,0.345026,0.234899,0.38631,0.969762,0.795023,0.271853,0.261039,0.589451,0.674072,0.604958,0.352566,0.0236421,0.569093,0.447668,0.539665,0.171844,0.186511,0.0153973,0.251467,0.0209056,0.984519,0.991772,0.219809,0.40549,0.652538,0.0638805,0.932778,0.107047,0.74694,0.341305,0.139712,0.792852,0.97524,0.097733,0.488563,0.360717,0.511351,0.667764,0.374664,0.507479,0.725847,0.715275,0.858242,0.686381,0.799733,0.849694,0.0188066,0.817241,0.754321,0.830842,0.821327,0.137343,0.93342,0.891562,0.874787,0.428553,0.91899,0.661873,0.0342032,0.884568,0.21074,0.105145,0.867404,0.188669,0.344672,0.327739,0.0279161,0.355562,0.88907,0.656114,0.830724,0.203484,0.297885,0.356392,0.904195,0.580667,0.921091,0.742188,0.732389,0.0473969,0.286192,0.0995837,0.38454,0.545874,0.525313,0.266434,0.240905,0.201405,0.914867,0.11097,0.492872,0.81799,0.752086,0.383385,0.127357,0.54026,0.817534,0.00835562,0.0275944,0.327042,0.335419,0.308401,0.0735449,0.57024,0.711404,0.617188,0.330249,0.942589,0.165182,0.599852,0.4099,0.865258,0.156614,0.53017,0.805681,0.804126,0.783976,0.770433,0.240622,0.243551,0.886761,0.823758,0.347165,0.386209,0.388591,0.115625,0.931784,0.069052,0.129799,0.646201,0.417282,0.781668,0.979733,0.285788,0.373113,0.832781,0.494501,0.606525,0.968076,0.546007,0.057056,0.646739,0.71481,0.0501638,0.386668,0.321167,0.939781,0.171426,0.876119,0.386557,0.610122,0.60813,0.618127,0.209308,0.232737,0.330597,0.769201,0.057025,0.764157,0.468925,0.137565,0.841502,0.862949,0.246394,0.51568,0.738857,0.363839,0.582591,0.779648,0.659006,0.0619518,0.448238,0.945835,0.579473,0.417929,0.977868,0.220102,0.589639,0.041173,0.634683,0.0872523,0.0491347,0.843126,0.115522,0.660773,0.394372,0.373993,0.743314,0.825424,0.0534154,0.0659559,0.875115,0.238851,0.722344,0.284455,0.349342,0.316458,0.634209,0.412252,0.576937,0.997736,0.14782,0.0336939,0.401463,0.614762,0.407807,0.0402425,0.98698,0.789581,0.497783,0.11077,0.239109,0.339443,0.895448,0.971611,0.977848,0.336899,0.796392,0.823022,0.0142653,0.563555,0.366555,0.872785,0.487692,0.950596,0.186004,0.51324,0.581887,0.870028,0.100609,0.160172,0.644867,0.466706,0.877023,0.734272,0.648218,0.535418,0.148894,0.374091,0.555911,0.405885,0.197211,0.120704,0.880713,0.363011,0.257211,0.00666928,0.947528,0.867482,0.261206,0.497209,0.449782,0.0624433,0.252222,0.227567,0.489934,0.173477,0.525434,0.771087,0.681533,0.787272,0.084388,0.29153,0.88383,0.839523,0.735666,0.271571,0.743212,0.512629,0.488456,0.902246,0.0529506,0.943759,0.459612,0.379538,0.0917235,0.276839,0.574984,0.133238,0.14156,0.460022,0.986943,0.392991,0.239471,0.935843,0.634087,0.19623,0.534163,0.567791,0.0981816,0.0678363,0.546447,0.172119,0.798071,0.133853,0.126769,0.755261,0.303405,0.799418,0.456103,0.101972,0.0587217,0.370511,0.465725,0.533625,0.0793268,0.579242,0.94389,0.73576,0.46747,0.399443,0.00373316,0.341759,0.400341,0.705457,0.114597,0.404903,0.96642,0.176084,0.604394,0.63683,0.95692,0.520658,0.159214,0.302099,0.621282,0.924526,0.671601,0.824484,0.18543,0.885746,0.912191,0.760969,0.715105,0.709061,0.459197,0.615908,0.380406,0.250985,0.962128,0.839498,0.637013,0.898383,0.808873,0.876354,0.12003,0.184199,0.201992,0.560898,0.107992,0.411686,0.635707,0.633299,0.399085,0.432671,0.796064,0.948207,0.316008,0.934114,0.427468,0.245279,0.795901,0.171719,0.0378422,0.335125,0.606348,0.632194,0.426138,0.68757,0.522087,0.389214,0.583423,0.707887,0.479066,0.328191,0.886382,0.103477,0.568877,0.850107,0.151127,0.700117,0.521211,0.34803,0.599222,0.623439,0.57884,0.924159,0.976108,0.565746,0.436388,0.944247,0.749311,0.184377,0.313033,0.028167,0.991356,0.121908,0.0944327,0.694725,0.966941,0.662421,0.287797,0.861929,0.310254,0.527542,0.0570552,0.626217,0.858772,0.238598,0.446015,0.916348,0.203193,0.551558,0.682426,0.702882,0.120912,0.538695,0.307505,0.807017,0.349403,0.570278,0.232344,0.333104,0.71716,0.996732,0.73019,0.836701,0.637232,0.704985,0.872505,0.95845,0.549607,0.0793009,0.555442,0.248545,0.607222,0.400482,0.631619,0.737002,0.834138,0.601597,0.0798971,0.0751476,0.0947766,0.902401,0.602819,0.205889,0.499601,0.509177,0.370735,0.243734,0.96372,0.296129,0.0351247,0.698629,0.364057,0.349291,0.451917,0.403127,0.449837,0.605427,0.168953,0.445699,0.723205,0.444319,0.0874179,0.689559,0.578877,0.221467,0.293707,0.423465,0.815334,0.919082,0.202482,0.033535,0.823279,0.246565,0.52759,0.00775462,0.461115,0.95182,0.253873,0.233007,0.639354,0.437308,0.0280448,0.279508,0.517546,0.342746,0.436971,0.158119,0.683544,0.763159,0.175679,0.22157,0.783987,0.299841,0.766862,0.551248,0.898235,0.667643,0.0474777,0.111489,|0.34088,0.144984,0.624018,0.933077,0.84236,0.685149,0.839904,0.530249,0.360871,0.487814,0.159335,0.727014,0.524455,0.967385,0.4502,0.074055,0.973861,0.169404,0.957527,0.568301,0.0581425,0.0637283,0.845547,0.411564,0.843357,0.949942,0.783974,0.27405,0.169106,0.0937165,0.854495,0.780624,0.280061,0.917834,0.912294,0.538632,0.413794,0.752057,0.396975,0.97422,0.700133,0.918784,0.558777,0.830357,0.359656,0.0868116,0.5211,0.801699,0.43031,0.266081,0.878311,0.0935525,0.30069,0.199137,0.0530756,0.331338,0.385401,0.181086,0.25283,0.737371,0.749631,0.110572,0.62578,0.946187,0.219924,0.519889,0.695873,0.0184348,0.64699,0.965086,0.242921,0.712071,0.661778,0.988669,0.993433,0.814468,0.558889,0.775761,0.688104,0.330324,0.0559103,0.79125,0.219226,0.648341,0.804779,0.911705,0.933842,0.933405,0.701169,0.720451,0.867841,0.83683,0.0988491,0.0388955,0.0529614,0.522514,0.691189,0.266993,0.357457,0.254128,0.885168,0.995126,0.41067,0.0872012,0.441633,0.167695,0.175111,0.466759,0.563624,0.592466,0.963846,0.986493,0.607965,0.757601,0.156631,0.674677,0.260967,0.0836014,0.204783,0.888001,0.684249,0.0689511,0.877904,0.00533485,0.955776,0.0499794,0.262725,0.00391316,0.584084,0.244754,0.903865,0.800015,0.0718442,0.683326,0.509801,0.61357,0.71423,0.115447,0.213876,0.473987,0.0284235,0.205954,0.249822,0.0222327,0.325812,0.913812,0.0339286,0.887664,0.641994,0.27079,0.784632,0.220302,0.580476,0.799891,0.108851,0.702133,0.428582,0.690792,0.139945,0.415916,0.980504,0.270303,0.835724,0.397497,0.186281,0.872868,0.239789,0.49724,0.0138957,0.425269,0.538682,0.513265,0.119191,0.0415308,0.108041,0.181788,0.735348,0.527317,0.458794,0.0295121,0.888422,0.664709,0.408388,0.931219,0.971986,0.951807,0.611327,0.0337901,0.14736,0.118331,0.00155723,0.457922,0.510052,0.647778,0.734436,0.952624,0.0684951,0.836868,0.345018,0.586633,0.560387,0.0369637,0.700157,0.870786,0.672672,0.200032,0.141045,0.760798,0.641728,0.768261,0.487643,0.284802,0.340387,0.340476,0.833816,0.533639,0.27792,0.0894632,0.258105,0.231394,0.972803,0.612459,0.842738,0.50959,0.938724,0.516146,0.553788,0.6899,0.375015,0.29171,0.86042,0.823401,0.85731,0.717336,0.140697,0.818592,0.951556,0.095685,0.416542,0.268638,0.990912,0.53587,0.603072,0.347607,0.624886,0.458497,0.833162,0.80979,0.195605,0.960918,0.391663,0.581258,0.793957,0.564308,0.616406,0.634289,0.680511,0.728809,0.62239,0.501377,0.53515,0.0397284,0.916793,0.10524,0.901147,0.596097,0.93315,0.398991,0.917613,0.0435418,0.994671,0.0895765,0.558292,0.640147,0.981065,0.482889,0.639271,0.798577,0.217963,0.372171,0.874669,0.154047,0.131997,0.366694,0.886747,0.477699,0.593348,0.614403,0.907299,0.525891,0.170057,0.880632,0.718452,0.746421,0.257043,0.152633,0.502548,0.29744,0.880488,0.926759,0.180431,0.5673,0.864902,0.303925,0.786267,0.93277,0.30969,0.526998,0.179226,0.715874,0.482068,0.753453,0.973559,0.338366,0.883416,0.999043,0.329047,0.443687,0.46942,0.110923,0.471042,0.493536,0.00507915,0.987403,0.67332,0.0645878,0.143377,0.322031,0.563488,0.529262,0.03576,0.256425,0.595283,0.0260066,0.662282,0.0618283,0.928065,0.359408,0.859591,0.16535,0.13852,0.0438543,0.678402,0.454885,0.992258,0.805508,0.298384,0.656337,0.689545,0.634099,0.0888124,0.443555,0.124675,0.192786,0.632871,0.917746,0.410621,0.0506065,0.163805,0.42414,0.329458,0.0212066,0.758479,0.59696,0.391067,0.97497,0.491112,0.541265,0.583585,0.438369,0.366917,0.64171,0.228417,0.658561,0.917643,0.854125,0.29002,0.727743,0.705711,0.261076,0.455283,0.0277228,0.0459865,0.982966,0.304801,0.0234695,0.723673,0.382208,0.519862,0.675013,0.768851,0.408503,0.803281,0.533885,0.0752633,0.936566,0.809621,0.572896,0.262574,0.850201,0.810203,0.355626,0.784904,0.588554,0.658109,0.866039,0.956591,0.958799,0.446958,0.369143,0.156691,0.933572,0.796263,0.148651,0.351916,0.345215,0.544794,0.332828,0.59092,0.0368007,0.952861,0.12037,0.981966,0.997832,0.470046,0.0387445,0.00712824,0.22308,0.417346,0.0646088,0.696045,0.189876,0.30802,0.494867,0.959948,0.550957,0.449886,0.222288,0.947722,0.41305,0.948066,0.422713,0.230157,0.181958,0.313383,0.727174,0.329331,0.680933,0.203731,0.0945736,0.885496,0.156656,0.907365,0.403878,0.32638,0.489427,0.6809,0.465615,0.878169,0.401674,0.488614,0.0776517,0.00197601,0.423778,0.667447,0.938801,0.29034,0.8395,0.0549196,0.459979,0.989987,0.322663,0.0293943,0.164636,0.489221,0.738827,0.788623,0.882127,0.379485,0.420974,0.47333,0.661249,0.376556,0.185411,0.56864,0.253089,0.737813,0.492877,0.972026,0.166898,0.255158,0.764362,0.961717,0.0979134,0.00165004,0.680831,0.0197498,0.517685,0.630767,0.134574,0.891215,0.401076,0.545734,0.931881,0.475415,0.72409,0.218997,0.330456,0.00306386,0.3965,0.756334,0.89893,0.593101,0.29733,0.158155,0.523099,0.396722,0.103226,0.476488,0.25774,0.882098,0.732083,0.483137,0.651698,0.711643,0.346231,0.882716,0.521703,0.551895,0.0856901,0.0174412,0.57405,0.660988,0.481628,0.118859,0.497664,0.629504,0.641492,0.0287077,0.832248,0.734389,0.815169,0.51426,0.220807,0.259341,0.709768,0.444241,0.206365,0.00199801,0.293794,0.445773,0.541551,0.742151,0.485294,0.0719795,0.416061,0.544692,0.16746,0.745952,0.806045,0.191392,0.663217,0.885498,0.327966,0.0221413,0.632961,0.7206,0.568126,0.879878,0.530717,0.417366,0.161898,0.348443,0.927413,0.297738,0.590104,0.379488,0.453203,0.780102,0.0671531,0.20846,0.711925,0.736794,0.0173947,0.0692577,0.434954,0.600834,0.485311,0.31646,0.133748,0.0983743,0.814956,0.499987,0.565138,0.444589,0.521412,0.239792,0.61511,0.60904,0.660819,0.105409,0.276199,0.312371,0.269254,0.135642,0.241359,0.149003,0.594878,0.455412,0.00322241,0.533351,0.613896,0.809579,0.00206155,0.13687,0.50313,0.131536,0.538947,0.695862,0.602423,0.55447,0.891244,0.890136,0.885736,0.356288,0.40662,0.422562,0.689194,0.420056,0.224011,0.0380533,0.391532,0.198329,0.489072,0.467254,0.447813,0.361666,0.776924,0.792922,0.595745,0.987699,0.803455,0.499219,0.271309,0.816257,0.840643,0.585662,0.187573,0.0599065,0.0775757,0.531863,0.566125,0.493108,0.374918,0.455203,0.254798,0.291677,0.898493,0.458614,0.473124,0.382917,0.793504,0.750968,0.567743,0.522717,0.552502,0.112508,0.865818,0.733752,0.208349,0.535716,0.690957,0.605009,0.54874,0.869729,0.619867,0.629883,0.873986,0.361227,0.81974,0.531921,0.56929,0.375208,0.106561,0.629968,0.85907,0.116434,0.952873,0.155216,0.976751,0.155435,0.589553,0.954889,0.721046,0.520133,0.213178,0.197308,0.86868,0.736986,0.188051,0.812752,0.377315,0.686468,0.120285,0.738872,0.491354,0.745799,0.45882,0.684573,0.87984,0.40171,0.25685,0.439439,0.889398,0.429137,0.803775,0.158278,0.67469,0.943627,0.093797,0.744977,0.117842,0.355765,0.620477,0.141781,0.317508,0.839728,0.520939,0.434548,0.714979,0.896851,0.463824,0.790733,0.747229,0.936278,0.771709,0.485645,0.133401,0.924427,0.059919,0.993163,0.0194128,0.0355709,0.25163,0.508579,0.106001,0.702339,0.893591,0.936548,0.958613,0.803794,0.303296,0.777232,0.632304,0.754689,0.0271291,0.795828,0.495586,0.455722,0.81141,0.26292,0.647631,0.0115174,0.381491,0.50266,0.89668,0.61669,0.354828,0.555994,0.331594,0.490223,0.00971615,0.917333,0.725983,0.184552,0.30904,0.50349,0.97858,0.418861,0.935892,0.761575,0.823561,0.993643,0.816893,0.786582,0.82683,0.290771,0.835291,0.443866,0.496264,0.269859,0.360406,0.482368,0.10978,0.447693,0.204925,0.306468,0.796478,0.629153,0.0953344,0.408698,0.909282,0.535364,0.941935,0.560229,0.323877,0.71646,0.361475,0.311001,0.803507,0.752237,0.618092,0.119875,0.87857,0.0718715,0.355605,0.498118,0.473133,0.000883043,0.193905,0.60846,0.153734,0.903342,0.63477,0.271143,0.0829813,0.551136,0.728328,0.557911,0.295938,0.574646,0.828721,0.545639,0.924311,0.413078,0.393697,0.946898,0.51021,0.850967,0.554181,0.223637,0.512998,0.212859,0.233677,0.174702,0.590702,0.00294465,0.593833,0.0041461,0.434775,0.63966,0.363573,0.189342,0.460276,0.813104,0.584568,0.772934,0.4535,0.96004,0.939093,0.730098,0.232176,0.0813571,0.743959,0.16742,0.66423,0.0898129,0.301839,0.528517,0.449916,0.425249,0.408805,0.310914,0.78594,0.902747,0.383675,0.421093,0.436727,0.455582,0.0519386,0.64618,0.672491,0.848743,0.674581,0.122281,0.0175583,0.798198,0.380816,0.481501,0.465571,0.50923,0.315184,0.410187,0.0846288,0.613083,0.52654,0.858208,0.0924913,0.13429,0.112056,0.501708,0.917997,0.306832,0.2514,0.423205,0.369843,0.755261,0.304499,0.435048,0.422861,0.304757,0.233663,0.85281,0.841043,0.677195,0.84093,0.00102431,0.45144,0.0696827,0.376224,0.642823,0.810652,0.341285,0.106503,0.223597,0.417839,0.249627,0.36788,0.53863,0.291355,0.453277,0.837388,0.662774,0.841388,0.321036,0.0891781,0.231311,0.317474,0.880043,0.95996,0.997279,0.994599,0.0926841,0.136538,0.618995,0.734956,0.586651,0.731857,0.240599,0.468042,0.15381,0.153001,0.852093,0.130832,0.0990502,0.816149,0.135661,0.92969,0.498682,0.497486,0.159057,0.913037,0.352707,0.825538,0.392848,0.42459,0.215588,0.734576,0.15422,0.160396,0.745392,0.528943,0.403255,0.341864,0.275863,0.650331,0.171761,0.816675,0.871199,0.666461,0.695609,0.573594,0.102895,0.533137,0.0107102,0.713844,0.276882,0.957022,0.342537,0.327869,0.960474,0.80413,0.692046,0.407114,0.80612,0.401527,0.458589,0.0371274,0.512112,0.611238,|0.920978,0.395246,0.306124,0.598265,0.772358,0.143245,0.975076,0.523425,0.92838,0.105185,0.95777,0.219379,0.0161723,0.458128,0.493162,0.244275,0.936546,0.248233,0.150819,0.362241,0.588819,0.262331,0.0369623,0.360347,0.677284,0.571113,0.222566,0.447875,0.111962,0.772586,0.652844,0.571372,0.914132,0.625077,0.715474,0.266807,0.107478,0.616279,0.143929,0.978113,0.242521,0.915768,0.279859,0.56764,0.990586,0.147639,0.201412,0.111263,0.385828,0.662449,0.209312,0.328552,0.505517,0.698269,0.892719,0.46057,0.575938,0.0705008,0.469161,0.315652,0.96163,0.557903,0.432758,0.103902,0.498404,0.801067,0.780736,0.534917,0.968923,0.970037,0.405422,0.760092,0.656742,0.639362,0.0669779,0.81981,0.15183,0.840708,0.415466,0.303782,0.337168,0.385325,0.966487,0.291698,0.413661,0.504102,0.151762,0.623695,0.48178,0.518498,0.313518,0.269746,0.638946,0.0994727,0.904501,0.263014,0.845957,0.73849,0.952432,0.407248,0.0310969,0.182054,0.491898,0.0688819,0.505185,0.8077,0.275664,0.0211996,0.630246,0.538967,0.364679,0.761842,0.865425,0.0640417,0.279004,0.466672,0.0592473,0.749935,0.552175,0.333596,0.894763,0.186548,0.836032,0.493572,0.60295,0.447814,0.934275,0.00142616,0.393484,0.259083,0.0336276,0.720807,0.749903,0.978437,0.980281,0.448133,0.739652,0.26486,0.347385,0.954515,0.183341,0.390623,0.479787,0.954307,0.62959,0.376614,0.633507,0.133342,0.210282,0.658435,0.171678,0.438314,0.584973,0.525178,0.0800014,0.243493,0.918453,0.370347,0.000500143,0.88916,0.68656,0.21174,0.726309,0.0225853,0.242217,0.0802756,0.293171,0.0862157,0.0112275,0.660229,0.62734,0.317274,0.658178,0.459004,0.942203,0.0191503,0.43887,0.345208,0.449777,0.641733,0.722812,0.625662,0.783939,0.965946,0.2204,0.170978,0.116555,0.841599,0.0235161,0.942866,0.207441,0.0736955,0.420874,0.17962,0.0493363,0.827737,0.943553,0.546152,0.978964,0.983029,0.0284458,0.235046,0.000959039,0.0231148,0.792795,0.0498679,0.914725,0.912103,0.0852904,0.474165,0.685432,0.175557,0.615147,0.396748,0.741988,0.792361,0.682808,0.538404,0.0284241,0.0860853,0.889753,0.833592,0.111214,0.162743,0.168608,0.277626,0.769739,0.106329,0.409882,0.860127,0.541851,0.499312,0.550792,0.977694,0.503524,0.272862,0.937866,0.507553,0.419707,0.807634,0.923938,0.832144,0.639274,0.114315,0.14996,0.988187,0.763254,0.704452,0.105701,0.0242779,0.841297,0.27987,0.377469,0.625113,0.92422,0.40422,0.709311,0.470219,0.312046,0.0646318,0.11923,0.0148739,0.685164,0.797662,0.992472,0.996616,0.319495,0.399009,0.570294,0.515119,0.324522,0.0569348,0.786536,0.934817,0.762795,0.729456,0.0866566,0.899456,0.173211,0.889774,0.200501,0.801306,0.946635,0.602519,0.163442,0.42648,0.915128,0.237227,0.51153,0.59359,0.191033,0.190433,0.279399,0.940548,0.361918,0.191548,0.119088,0.825734,0.964788,0.139605,0.948916,0.310829,0.228314,0.945979,0.673958,0.190492,0.593944,0.339655,0.0642347,0.454692,0.741637,0.200457,0.769867,0.0905083,0.928433,0.924201,0.038288,0.487189,0.265497,0.556032,0.128567,0.606566,0.358332,0.0635151,0.248894,0.442622,0.280029,0.429692,0.0689894,0.70108,0.305181,0.869951,0.337875,0.777519,0.661259,0.347556,0.644267,0.106675,0.681535,0.284408,0.338825,0.51472,0.710137,0.654777,0.758231,0.347955,0.626042,0.996981,0.877545,0.221213,0.522485,0.910972,0.0174304,0.158056,0.517465,0.0193586,0.553347,0.394528,0.10825,0.456655,0.167337,0.859868,0.279934,0.0019601,0.890194,0.990788,0.137112,0.950978,0.355864,0.162297,0.692279,0.804542,0.0212998,0.912752,0.830964,0.0619583,0.603184,0.632401,0.478077,0.795935,0.553836,0.219566,0.0858135,0.830755,0.994418,0.971671,0.622015,0.021128,0.373503,0.794319,0.609723,0.115577,0.571804,0.939327,0.609231,0.186128,0.311844,0.99538,0.172286,0.877329,0.821347,0.4596,0.165384,0.417449,0.252487,0.828904,0.562283,0.689152,0.306409,0.366051,0.198911,0.6642,0.536957,0.447714,0.816926,0.212331,0.84485,0.936062,0.239356,0.921128,0.564051,0.687536,0.0735778,0.843423,0.193577,0.360669,0.352759,0.802679,0.409242,0.581668,0.247002,0.304867,0.807662,0.712012,0.761917,0.834386,0.672128,0.0627776,0.738443,0.582914,0.739257,0.21753,0.345297,0.322187,0.139062,0.822023,0.992268,0.219589,0.842875,0.229518,0.0902794,0.205028,0.148179,0.507986,0.130772,0.55289,0.336281,0.808358,0.648101,0.523156,0.158276,0.781376,0.646997,0.0377243,0.996322,0.20792,0.0771235,0.470737,0.235588,0.417039,0.23836,0.983378,0.471812,0.477866,0.489173,0.672891,0.588439,0.772329,0.333458,0.585539,0.396953,0.656056,0.78752,0.703454,0.859165,0.0104603,0.490169,0.418997,0.901638,0.269111,0.412789,0.109932,0.195065,0.082651,0.75102,0.575582,0.689519,0.012915,0.0865463,0.65582,0.226484,0.637828,0.633877,0.924112,0.615046,0.860655,0.971142,0.997016,0.883386,0.894635,0.868442,0.942608,0.139806,0.851406,0.92558,0.0359895,0.254646,0.611306,0.663272,0.46842,0.324342,0.653901,0.00683784,0.704979,0.848693,0.256544,0.539028,0.334021,0.544606,0.381319,0.606581,0.51432,0.815374,0.932021,0.232648,0.542953,0.396404,0.836526,0.46708,0.392579,0.168494,0.674088,0.0892061,0.307797,0.882058,0.797705,0.744285,0.296633,0.759263,0.702534,0.738755,0.300154,0.165471,0.602436,0.0394793,0.562759,0.317205,0.327854,0.81613,0.865449,0.811171,0.211592,0.709139,0.151767,0.583888,0.599346,0.974505,0.591914,0.52936,0.78487,0.508726,0.929455,0.467468,0.268182,0.773819,0.0257533,0.0402992,0.733501,0.148023,0.462743,0.272974,0.878318,0.681835,0.0713392,0.729785,0.587601,0.0937703,0.809772,0.542401,0.490667,0.0213899,0.694869,0.683494,0.941592,0.610816,0.11829,0.431439,0.327886,0.178394,0.073664,0.123254,0.874367,0.92626,0.495444,0.631282,0.273598,0.887521,0.942432,0.492438,0.297104,0.152592,0.260233,0.797614,0.12083,0.495718,0.756598,0.277906,0.160854,0.0354152,0.044608,0.935797,0.235755,0.209686,0.00771815,0.344902,0.109548,0.702416,0.592778,0.552153,0.747065,0.0991749,0.288025,0.654931,0.546272,0.600163,0.399756,0.163793,0.905015,0.840073,0.0514414,0.392403,0.726232,0.169246,0.811582,0.434815,0.753733,0.624438,0.731759,0.773759,0.767309,0.692543,0.995544,0.547332,0.928606,0.657565,0.953818,0.0492337,0.554327,0.0915348,0.900245,0.234066,0.22566,0.475549,0.43974,0.288349,0.613608,0.26932,0.094607,0.792546,0.347399,0.949166,0.248825,0.492445,0.463456,0.160953,0.0596378,0.215582,0.420888,0.528213,0.517066,0.66048,0.476577,0.494034,0.133427,0.117924,0.855518,0.275075,0.341764,0.724661,0.426239,0.182747,0.669265,0.522772,0.252828,0.501817,0.293649,0.963734,0.976291,0.251665,0.904844,0.9943,0.298999,0.996145,0.809168,0.0545326,0.807921,0.178508,0.578596,0.32473,0.700003,0.0258006,0.144795,0.0801151,0.289773,0.832715,0.417,0.781507,0.583036,0.929653,0.226182,0.263265,0.219343,0.247058,0.840104,0.190503,0.368161,0.443523,0.336129,0.789566,0.215018,0.959885,0.416779,0.244655,0.550485,0.832101,0.884764,0.699699,0.0560649,0.780418,0.720682,0.103527,0.287667,0.428693,0.295813,0.402943,0.121296,0.946802,0.137613,0.776043,0.610725,0.631343,0.591251,0.347835,0.226012,0.554388,0.318561,0.569326,0.738193,0.35924,0.722065,0.980326,0.555472,0.87337,0.785474,0.699431,0.489914,0.840538,0.23123,0.686584,0.527955,0.363995,0.268087,0.784824,0.986766,0.847677,0.864948,0.803833,0.963664,0.0978671,0.897456,0.661,0.66467,0.933656,0.677261,0.310289,0.642443,0.940049,0.0289487,0.637644,0.216992,0.761549,0.369885,0.881579,0.478925,0.317695,0.545592,0.356755,0.311131,0.541776,0.585325,0.131761,0.0694646,0.102576,0.746499,0.687359,0.545872,0.0269826,0.7633,0.0825281,0.974088,0.847282,0.234197,0.520775,0.696379,0.103407,0.0812524,0.205544,0.0701252,0.935869,0.880596,0.165709,0.466416,0.413308,0.317975,0.641736,0.0169209,0.936709,0.387505,0.475808,0.79913,0.460228,0.95129,0.0564989,0.547468,0.78131,0.314416,0.337612,0.55894,0.0869294,0.796902,0.0311686,0.81373,0.550762,0.0731942,0.783218,0.899773,0.832642,0.966296,0.960092,0.20067,0.634994,0.946868,0.25396,0.358066,0.472897,0.742276,0.196663,0.269341,0.789257,0.490866,0.0403062,0.873409,0.348896,0.431815,0.238256,0.596144,0.0309091,0.0622738,0.499689,0.908013,0.815451,0.684502,0.837613,0.887285,0.676909,0.60925,0.769332,0.917607,0.0622669,0.553168,0.288394,0.853054,0.0448257,0.791707,0.929641,0.400125,0.327154,0.0254489,0.820865,0.570533,0.37282,0.835666,0.894464,0.520737,0.0181473,0.307822,0.0514868,0.748686,0.257693,0.916083,0.317082,0.705057,0.229114,0.225019,0.450563,0.811106,0.854091,0.426882,0.999544,0.580912,0.722351,0.82975,0.910369,0.128189,0.240892,0.313457,0.648947,0.122211,0.0640736,0.501434,0.923553,0.734867,0.802687,0.970779,0.835855,0.826888,0.55769,0.514079,0.270855,0.070277,0.153908,0.744453,0.281775,0.682877,0.0382908,0.660472,0.81192,0.348189,0.611802,0.263265,0.539875,0.799339,0.654277,0.0121723,0.747028,0.592066,0.679371,0.382372,0.740529,0.29838,0.773756,0.391582,0.346426,0.0638345,0.572163,0.762317,0.904721,0.892713,0.776226,0.153951,0.00867981,0.448274,0.0111256,0.723031,0.231798,0.520108,0.023185,0.410884,0.775329,0.922373,0.669411,0.346374,0.631556,0.00649297,0.775235,0.423668,0.112064,0.978615,0.884016,0.36966,0.891048,0.0078761,0.107529,0.999105,0.62982,0.0357302,0.814379,0.154181,0.644045,0.649864,0.186782,0.313126,0.556485,0.0123953,0.372228,0.680392,0.0118845,0.475573,0.223105,0.16257,|0.822103,0.59816,0.951352,0.059643,0.565206,0.893334,0.235993,0.781157,0.793096,0.485626,0.0439557,0.603837,0.706989,0.174021,0.540315,0.261637,0.71971,0.524423,0.509755,0.427556,0.519116,0.512791,0.478327,0.245952,0.743561,0.730025,0.368085,0.0351772,0.719978,0.678981,0.620811,0.804291,0.465697,0.565322,0.483731,0.592529,0.176179,0.372694,0.258861,0.0600608,0.710564,0.773529,0.410478,0.531596,0.650791,0.489789,0.930066,0.299696,0.97431,0.0196785,0.0442846,0.160513,0.463218,0.238185,0.0623812,0.676216,0.524252,0.0362682,0.222288,0.825255,0.0505091,0.783862,0.713942,0.38353,0.657304,0.17345,0.644874,0.533334,0.712838,0.284088,0.832653,0.572462,0.212607,0.650031,0.936899,0.111378,0.35844,0.716142,0.0323731,0.85728,0.680352,0.32092,0.317489,0.416353,0.642284,0.606296,0.407338,0.536504,0.872662,0.0973493,0.805998,0.842618,0.203774,0.25382,0.885771,0.743821,0.166464,0.707901,0.721821,0.401237,0.620616,0.685032,0.496446,0.756997,0.213811,0.730524,0.282707,0.99006,0.375469,0.73483,0.965956,0.744072,0.480995,0.472971,0.762599,0.696043,0.0522604,0.074416,0.161967,0.446664,0.277415,0.788776,0.215987,0.956404,0.554663,0.688542,0.783762,0.999443,0.494753,0.717556,0.344925,0.350489,0.891297,0.301096,0.591849,0.577543,0.739471,0.824849,0.0112255,0.44001,0.497522,0.187128,0.0881987,0.555823,0.653929,0.0419993,0.892411,0.50825,0.685529,0.847585,0.243688,0.957583,0.55761,0.418113,0.270664,0.45333,0.788334,0.533152,0.91265,0.519208,0.101992,0.380402,0.894217,0.965999,0.917045,0.500006,0.170144,0.0625628,0.0805634,0.113961,0.669297,0.653584,0.779235,0.709887,0.238115,0.744119,0.245055,0.176331,0.539173,0.00526732,0.597424,0.182698,0.360061,0.0501145,0.0199898,0.839482,0.122267,0.5255,0.803931,0.904301,0.329329,0.0418,0.639071,0.765342,0.493822,0.561417,0.361642,0.813695,0.884947,0.581864,0.257969,0.586514,0.768779,0.0209027,0.629448,0.764765,0.862211,0.460937,0.851757,0.730181,0.997316,0.915379,0.928237,0.409909,0.188897,0.0834813,0.853991,0.629461,0.460799,0.800715,0.227532,0.447956,0.0127389,0.0945676,0.223822,0.10555,0.36357,0.760195,0.138746,0.393093,0.672509,0.513083,0.440146,0.212545,0.447718,0.0174209,0.17184,0.482374,0.757306,0.450746,0.723056,0.91372,0.908269,0.00993848,0.0200618,0.559017,0.612569,0.404004,0.250412,0.949398,0.0181838,0.502486,0.619574,0.486736,0.718926,0.778746,0.326037,0.391439,0.977003,0.361867,0.013001,0.026987,0.30391,0.54584,0.335358,0.384644,0.6371,0.174526,0.950446,0.750981,0.064617,0.450872,0.167949,0.967826,0.125871,0.658473,0.625927,0.128622,0.674853,0.765832,0.935832,0.754468,0.496499,0.346389,0.154318,0.90776,0.194348,0.383906,0.388273,0.942894,0.489543,0.729517,0.0241159,0.661139,0.315809,0.235691,0.165712,0.899211,0.882158,0.444505,0.499635,0.859545,0.0373594,0.414693,0.106813,0.348495,0.330476,0.96798,0.989109,0.395549,0.000696242,0.753484,0.252587,0.110187,0.435336,0.704063,0.243405,0.916276,0.493936,0.327589,0.00530791,0.772795,0.469762,0.957491,0.137056,0.666331,0.157874,0.403642,0.662571,0.1903,0.845192,0.844717,0.877724,0.572177,0.344105,0.146104,0.973325,0.683659,0.0216631,0.807239,0.503765,0.410664,0.489015,0.0872951,0.0873716,0.412865,0.440696,0.315236,0.480983,0.750573,0.407938,0.268692,0.483876,0.546598,0.136878,0.709497,0.486079,0.583849,0.314904,0.877357,0.734963,0.361704,0.748522,0.861701,0.419666,0.0139757,0.791238,0.601693,0.798529,0.248617,0.44124,0.319524,0.505008,0.0909306,0.34337,0.832816,0.894448,0.307792,0.945601,0.0721159,0.354078,0.149561,0.216489,0.00908148,0.34646,0.397922,0.00254595,0.504906,0.336569,0.692332,0.142955,0.627707,0.0416344,0.863096,0.231253,0.211658,0.459462,0.4178,0.600151,0.810538,0.0874846,0.945826,0.0187536,0.106806,0.874029,0.713511,0.258854,0.667765,0.506964,0.820517,0.914358,0.928234,0.876613,0.712471,0.358266,0.344045,0.480625,0.243407,0.511005,0.62885,0.934427,0.639754,0.325722,0.468596,0.189364,0.0192932,0.867962,0.265817,0.155638,0.814887,0.823649,0.141449,0.422995,0.261011,0.485706,0.254997,0.30043,0.114646,0.031644,0.0558817,0.433137,0.959093,0.136055,0.754897,0.13598,0.215715,0.319485,0.99632,0.511813,0.20667,0.824018,0.801229,0.572462,0.95101,0.442458,0.909766,0.554927,0.328787,0.748233,0.528529,0.436106,0.697961,0.729245,0.819672,0.0601571,0.432869,0.0380981,0.107768,0.0473997,0.230275,0.296604,0.198194,0.938337,0.444104,0.700901,0.953129,0.869943,0.843321,0.0840561,0.47559,0.643219,0.757048,0.298954,0.101682,0.905354,0.0762209,0.429594,0.00377733,0.108208,0.784292,0.246271,0.2122,0.9795,0.792604,0.263761,0.517507,0.235258,0.944326,0.840991,0.147649,0.86895,0.60411,0.553959,0.749645,0.115725,0.574478,0.28868,0.858735,0.195126,0.26911,0.315902,0.312207,0.559202,0.843251,0.981936,0.564484,0.117813,0.478561,0.181852,0.116249,0.831284,0.251179,0.417003,0.566499,0.500283,0.714513,0.43868,0.155292,0.112104,0.181997,0.706848,0.17773,0.28897,0.290259,0.835351,0.434696,0.652195,0.47741,0.864631,0.88258,0.367322,0.645942,0.0525479,0.956595,0.101736,0.697719,0.788766,0.610022,0.919832,0.893938,0.68819,0.489792,0.990238,0.299701,0.0152604,0.0994658,0.065406,0.817779,0.538867,0.0694356,0.909058,0.731243,0.176008,0.778177,0.660638,0.371677,0.83177,0.185755,0.440902,0.281082,0.696758,0.621637,0.593406,0.666383,0.222068,0.0998605,0.920612,0.813939,0.266973,0.634658,0.423262,0.0484164,0.434527,0.283309,0.151178,0.134042,0.226536,0.808524,0.0483505,0.742814,0.557103,0.426513,0.910745,0.156172,0.135005,0.649125,0.166583,0.519227,0.638821,0.0909965,0.866421,0.539042,0.630761,0.428754,0.0545639,0.771301,0.308233,0.129784,0.784827,0.438143,0.921624,0.698852,0.0598508,0.633309,0.966726,0.771614,0.388958,0.69465,0.364116,0.656505,0.204403,0.358256,0.486886,0.799181,0.555485,0.881667,0.0549059,0.897357,0.199139,0.929113,0.618773,0.253137,0.17541,0.864644,0.786367,0.277085,0.27751,0.72889,0.193875,0.639361,0.153019,0.720954,0.526458,0.673885,0.98342,0.0406197,0.410931,0.621024,0.686612,0.841052,0.762151,0.536492,0.364558,0.477201,0.0305257,0.237677,0.562915,0.000530005,0.156196,0.86586,0.442693,0.910132,0.689305,0.293301,0.432575,0.678078,0.174654,0.351564,0.386524,0.227951,0.594371,0.489879,0.44174,0.174679,0.153915,0.944855,0.879125,0.557078,0.325591,0.242085,0.871853,0.503085,0.153578,0.0857053,0.39646,0.901242,0.606128,0.856082,0.512276,0.818366,0.827769,0.109584,0.510625,0.554484,0.563834,0.81273,0.189437,0.0386881,0.474585,0.454058,0.469999,0.53064,0.0658891,0.366553,0.824838,0.715629,0.144352,0.230181,0.671596,0.500587,0.616746,0.696974,0.768822,0.328599,0.684703,0.0616419,0.592884,0.0539828,0.0564944,0.0795202,0.792352,0.00538212,0.0311281,0.188498,0.579007,0.288544,0.145546,0.174385,0.359412,0.484631,0.535781,0.493595,0.0697126,0.238864,0.349096,0.682658,0.345999,0.0464752,0.986082,0.0117155,0.370709,0.732327,0.146492,0.067436,0.0247419,0.0575005,0.72302,0.376737,0.13853,0.563923,0.584236,0.99993,0.932391,0.700476,0.915465,0.460842,0.531525,0.437366,0.382548,0.846065,0.755212,0.867723,0.658279,0.954963,0.224721,0.451675,0.680408,0.936553,0.778517,0.318874,0.683902,0.367245,0.0623611,0.734271,0.856633,0.0864708,0.122635,0.537172,0.0392215,0.93961,0.0672065,0.221103,0.930752,0.273518,0.0838335,0.161867,0.446315,0.253386,0.728213,0.295765,0.231847,0.974522,0.364787,0.577153,0.623378,0.848773,0.651038,0.944228,0.56299,0.195656,0.226397,0.930412,0.377174,0.384153,0.722041,0.705013,0.614229,0.665683,0.708248,0.288759,0.175244,0.915755,0.525838,0.538145,0.234573,0.311033,0.633806,0.42149,0.515652,0.137096,0.554256,0.316453,0.950389,0.625341,0.648676,0.608319,0.0330691,0.791102,0.731321,0.225423,0.685469,0.710316,0.880056,0.672896,0.142553,0.745882,0.369666,0.52819,0.629888,0.433506,0.794271,0.444455,0.822963,0.400501,0.132189,0.261534,0.756385,0.441711,0.00592703,0.655459,0.698434,0.239583,0.565981,0.849175,0.611293,0.362859,0.539286,0.425613,0.324169,0.136585,0.648208,0.661031,0.146315,0.729349,0.061093,0.350355,0.612111,0.130294,0.921389,0.173661,0.760945,0.157748,0.812535,0.976471,0.85458,0.854608,0.679949,0.126992,0.367031,0.649618,0.335085,0.565903,0.623775,0.634481,0.33628,0.505213,0.901979,0.275473,0.428073,0.915056,0.12843,0.0512301,0.448306,0.674577,0.187028,0.215298,0.919732,0.277497,0.886812,0.378374,0.657757,0.840471,0.490836,0.768644,0.147965,0.143443,0.873381,0.656162,0.13756,0.0101517,0.0216717,0.445098,0.326611,0.89486,0.673349,0.846528,0.441222,0.811091,0.0692599,0.910429,0.22665,0.39325,0.956194,0.444955,0.445154,0.856288,0.253433,0.16485,0.392738,0.955033,0.520118,0.397378,0.158884,0.0662139,0.218665,0.703408,0.713737,0.138835,0.606299,0.942553,0.796873,0.748719,0.229689,0.771671,0.890388,0.924412,0.389065,0.330996,0.920019,0.719601,0.821405,0.757871,0.180443,0.489254,0.827487,0.0820398,0.798765,0.503828,0.522782,0.487182,0.0482728,0.135594,0.578661,0.201906,0.963549,0.2175,0.908185,0.991946,0.0845594,0.150738,0.767764,0.466135,0.230958,0.000270128,0.23417,0.157723,0.245865,0.426933,0.315004,0.524233,0.557813,0.762302,0.59969,0.0724476,0.795215,0.715888,0.445451,0.888223,0.978921,0.460245,0.224304,0.111814,0.469685,0.222239,0.948416,0.108433,0.830441,0.376216,0.934649,0.125269,|0.474628,0.549348,0.786888,0.594946,0.674742,0.220175,0.836245,0.363093,0.509355,0.792574,0.909906,0.128671,0.403921,0.892187,0.462557,0.612033,0.782859,0.593137,0.0679591,0.479447,0.768973,0.171266,0.162983,0.63978,0.977297,0.0722417,0.63111,0.258515,0.685057,0.660538,0.363515,0.486465,0.713913,0.382595,0.113193,0.809873,0.434314,0.386163,0.352018,0.983229,0.362319,0.610138,0.0880758,0.60096,0.872083,0.723854,0.831452,0.740259,0.00872546,0.704484,0.675238,0.883877,0.5729,0.401061,0.592037,0.0932222,0.117435,0.1963,0.7053,0.306469,0.382588,0.538477,0.365987,0.469773,0.486585,0.593958,0.567578,0.421573,0.354206,0.578541,0.863361,0.442001,0.708703,0.18597,0.467431,0.703425,0.359906,0.964373,0.181201,0.937559,0.137596,0.228302,0.302661,0.279644,0.309291,0.514419,0.95416,0.51659,0.955684,0.506169,0.605737,0.572777,0.981488,0.545168,0.118762,0.567196,0.208243,0.648045,0.777874,0.425089,0.271505,0.597088,0.0435154,0.55158,0.409914,0.372016,0.126882,0.266205,0.568677,0.0181062,0.688731,0.334024,0.822125,0.561807,0.933694,0.0152201,0.746513,0.927388,0.275331,0.908771,0.582724,0.314447,0.961051,0.525333,0.451449,0.648591,0.482603,0.463933,0.899292,0.284495,0.612136,0.759263,0.800984,0.866085,0.939827,0.57047,0.866664,0.190407,0.220817,0.492192,0.829188,0.212862,0.520787,0.241355,0.0635214,0.837963,0.103777,0.70437,0.822234,0.215458,0.588263,0.86286,0.265845,0.578759,0.385142,0.0900304,0.105644,0.186388,0.430876,0.268122,0.143749,0.692966,0.959661,0.833045,0.700026,0.496862,0.325699,0.858899,0.801442,0.575256,0.0354257,0.860975,0.0996473,0.858141,0.154391,0.181632,0.962105,0.213217,0.429231,0.288525,0.277129,0.947158,0.663584,0.0338601,0.815743,0.822896,0.872978,0.860509,0.938547,0.059206,0.356914,0.894766,0.930115,0.117622,0.302194,0.811264,0.670631,0.360869,0.927162,0.474474,0.0287996,0.225012,0.518485,0.794839,0.130446,0.646069,0.379182,0.130928,0.143828,0.233201,0.735206,0.0857015,0.831629,0.748773,0.0679523,0.116085,0.0368388,0.0146352,0.477178,0.00472987,0.454916,0.555233,0.552365,0.805658,0.782615,0.0596105,0.63727,0.982429,0.426976,0.180495,0.408001,0.633308,0.461493,0.641795,0.435912,0.0973162,0.74914,0.316592,0.800315,0.624894,0.340484,0.280333,0.343118,0.703459,0.836407,0.529361,0.898886,0.387652,0.966106,0.11288,0.722867,0.404621,0.466006,0.687998,0.712061,0.999704,0.032659,0.170484,0.675916,0.564072,0.226721,0.0115806,0.652438,0.803247,0.980225,0.621111,0.104929,0.143966,0.416855,0.401415,0.614707,0.812185,0.866716,0.289634,0.702291,0.658746,0.181381,0.0846069,0.97148,0.37217,0.374669,0.196705,0.225398,0.88779,0.0793325,0.0894241,0.701946,0.76753,0.849719,0.901495,0.632906,0.485822,0.633878,0.350247,0.777719,0.554611,0.811344,0.329821,0.650133,0.0778964,0.677587,0.429442,0.31197,0.501545,0.953978,0.917898,0.961307,0.243117,0.263969,0.882188,0.841148,0.050814,0.155446,0.255412,0.584063,0.513159,0.110473,0.582118,0.310703,0.00532967,0.611603,0.929874,0.140282,0.457533,0.542142,0.28003,0.204101,0.493066,0.942291,0.818299,0.763915,0.609551,0.547485,0.342652,0.918541,0.792317,0.0636365,0.492728,0.433458,0.833544,0.415613,0.186052,0.654769,0.103513,0.176937,0.0506916,0.635806,0.905551,0.367753,0.639778,0.999676,0.309432,0.875604,0.659203,0.138756,0.764078,0.469528,0.808431,0.592138,0.360221,0.936418,0.138891,0.223845,0.923253,0.624823,0.815461,0.978624,0.983116,0.935456,0.0929754,0.728665,0.568622,0.813704,0.969856,0.171536,0.870601,0.830686,0.501818,0.04805,0.857149,0.151472,0.236072,0.891635,0.70401,0.48743,0.212243,0.380321,0.506466,0.253874,0.0759475,0.560183,0.26099,0.324067,0.292903,0.941672,0.658346,0.080677,0.64113,0.237328,0.0321269,0.0493307,0.309573,0.632174,0.743376,0.595508,0.948754,0.295257,0.668525,0.419182,0.307417,0.704702,0.835743,0.158272,0.194516,0.768248,0.537719,0.408323,0.588224,0.755455,0.921907,0.0538255,0.272057,0.120044,0.226381,0.304431,0.603727,0.352434,0.935031,0.166178,0.28497,0.763679,0.494331,0.282838,0.277562,0.865322,0.447361,0.844803,0.863955,0.165156,0.977922,0.725876,0.928606,0.407605,0.0496324,0.122686,0.280463,0.2639,0.756467,0.90435,0.135453,0.183899,0.106696,0.50417,0.541762,0.383599,0.0408863,0.313622,0.310065,0.65365,0.699951,0.826772,0.446954,0.455277,0.169609,0.224043,0.768002,0.0702729,0.774282,0.438682,0.685977,0.612906,0.157479,0.708085,0.000580907,0.485956,0.727387,0.0163281,0.385377,0.904477,0.0701061,0.430965,0.034807,0.134254,0.397507,0.47694,0.438792,0.896065,0.748899,0.179571,0.54624,0.0188122,0.994569,0.937236,0.419034,0.635456,0.534123,0.466559,0.162382,0.110562,0.58024,0.238294,0.864443,0.819426,0.327648,0.33753,0.32869,0.801835,0.960847,0.0877475,0.49071,0.564892,0.539808,0.283777,0.796491,0.295069,0.410537,0.148725,0.186435,0.717132,0.180134,0.903864,0.741781,0.604543,0.393747,0.378534,0.323318,0.986731,0.887046,0.738188,0.894649,0.404535,0.464592,0.49004,0.946323,0.57656,0.269012,0.105847,0.608244,0.952665,0.714538,0.94523,0.608707,0.100769,0.869311,0.59411,0.691434,0.0958031,0.0389587,0.0216981,0.462425,0.0729971,0.00493616,0.157933,0.668093,0.939245,0.405854,0.737171,0.676719,0.545811,0.597909,0.895645,0.338413,0.0773707,0.866934,0.0989268,0.376874,0.341574,0.796213,0.108583,0.853894,0.00811201,0.651402,0.306987,0.93645,0.684627,0.429492,0.834797,0.796549,0.70041,0.0920929,0.408421,0.523607,0.0374242,0.883105,0.116728,0.222786,0.230801,0.777037,0.309393,0.401953,0.474518,0.942045,0.13773,0.356811,0.368592,0.541853,0.619442,0.503525,0.851141,0.646205,0.475393,0.606611,0.607489,0.613195,0.160012,0.0523874,0.573005,0.211173,0.0261358,0.387621,0.696031,0.456212,0.886037,0.795982,0.607476,0.077457,0.817886,0.459607,0.264808,0.928394,0.0119312,0.780322,0.594481,0.872776,0.845234,0.871924,0.379796,0.807056,0.183786,0.149739,0.79132,0.51734,0.870976,0.394163,0.220449,0.538137,0.297448,0.0835247,0.148329,0.340658,0.730249,0.399383,0.471947,0.429036,0.463762,0.14881,0.30165,0.225468,0.744019,0.108853,0.90796,0.79416,0.825406,0.13548,0.498782,0.68962,0.802423,0.761688,0.0535917,0.72366,0.751292,0.876992,0.425603,0.817036,0.138061,0.123904,0.461579,0.969209,0.284409,0.112925,0.828019,0.143145,0.48241,0.158826,0.832325,0.767751,0.77295,0.431688,0.647666,0.429269,0.266044,0.679286,0.646994,0.108113,0.787031,0.452741,0.240676,0.0852289,0.805052,0.676853,0.616117,0.447721,0.886334,0.0420004,0.992117,0.226195,0.488045,0.533931,0.748724,0.229653,0.199819,0.111859,0.781499,0.27727,0.579967,0.193688,0.366204,0.216514,0.505223,0.882374,0.00833666,0.395098,0.0879714,0.479122,0.853895,0.297694,0.865478,0.971116,0.0323985,0.397159,0.85243,0.352885,0.628666,0.496366,0.519621,0.0562711,0.75039,0.2319,0.0872504,0.788752,0.289232,0.433401,0.726375,0.657048,0.229478,0.388081,0.208088,0.808689,0.650705,0.0377463,0.887537,0.154642,0.652847,0.597384,0.348453,0.73584,0.0488958,0.071655,0.516022,0.178838,0.401163,0.963315,0.18386,0.909942,0.420403,0.36377,0.235069,0.312125,0.265468,0.875237,0.350702,0.131058,0.401897,0.686586,0.372249,0.820063,0.168081,0.639047,0.308135,0.119009,0.0568839,0.40598,0.880519,0.459908,0.604811,0.178298,0.969051,0.266219,0.777784,0.80125,0.485725,0.0320528,0.185829,0.154465,0.364502,0.83263,0.327234,0.134158,0.284603,0.672157,0.698861,0.060628,0.428402,0.75879,0.47236,0.600982,0.312546,0.773403,0.324721,0.812871,0.248795,0.619811,0.834125,0.675595,0.132423,0.264571,0.803926,0.290639,0.462725,0.717672,0.317415,0.967508,0.616691,0.0598663,0.20125,0.252702,0.481172,0.815258,0.708258,0.975246,0.0132453,0.841527,0.47424,0.865764,0.959656,0.538033,0.563627,0.522857,0.476121,0.721007,0.640214,0.679073,0.845911,0.962406,0.804402,0.971484,0.711637,0.890949,0.765426,0.771799,0.140875,0.306534,0.771728,0.00439054,0.429674,0.077554,0.94051,0.971979,0.421003,0.349958,0.495168,0.544614,0.61806,0.543232,0.801947,0.909908,0.842871,0.500594,0.428281,0.44649,0.602382,0.267199,0.684024,0.292529,0.62721,0.555737,0.64249,0.245717,0.811574,0.517103,0.655987,0.181787,0.816027,0.0960774,0.867315,0.963156,0.271523,0.875302,0.299838,0.785461,0.520908,0.885621,0.461057,0.403519,0.997382,0.0881763,0.908774,0.866032,0.433721,0.451537,0.506598,0.387138,0.0970608,0.93269,0.886228,0.0714994,0.870361,0.789996,0.953123,0.843544,0.0442625,0.688944,0.055945,0.931551,0.0347818,0.502021,0.0172333,0.983773,0.180849,0.545405,0.678929,0.150257,0.537919,0.40263,0.765666,0.463969,0.577912,0.340313,0.810569,0.299748,0.6483,0.886361,0.171388,0.760112,0.0515249,0.224215,0.247118,0.63772,0.545203,0.808052,0.87176,0.286423,0.0598217,0.589368,0.541386,0.942192,0.687767,0.0359731,0.107479,0.390986,0.683745,0.446063,0.0591077,0.202825,0.434399,0.185582,0.109449,0.0310816,0.352574,0.683054,0.109674,0.0363501,0.182925,0.783352,0.294105,0.314553,0.605935,0.829413,0.0317743,0.202639,0.500454,0.660658,0.704849,0.258286,0.0653077,0.453197,0.783772,0.574597,0.4625,0.17499,0.466506,0.178536,0.832567,0.166986,0.456207,0.678944,0.932683,0.477811,0.386281,0.125197,0.372318,0.261846,0.891375,0.794234,0.501041,0.411664,0.795358,0.104873,0.597502,0.437367,0.943523,0.0117795,0.686646,0.67584,0.376987,0.0208724,0.903125,0.827629,0.0208739,0.766509,|0.646397,0.758181,0.627513,0.10904,0.251883,0.502421,0.71117,0.511869,0.0417208,0.0793329,0.477242,0.537024,0.500108,0.338499,0.723742,0.0157812,0.720837,0.694652,0.701995,0.393152,0.271266,0.585627,0.874182,0.968447,0.489714,0.481275,0.584077,0.889907,0.178983,0.0450163,0.399842,0.927253,0.672966,0.549782,0.369705,0.920793,0.76004,0.916651,0.449305,0.984878,0.275132,0.358816,0.980339,0.892986,0.577426,0.703463,0.411646,0.873164,0.888388,0.0258918,0.828241,0.629096,0.995352,0.564432,0.920744,0.852131,0.598504,0.190126,0.476016,0.662363,0.441088,0.836205,0.224156,0.111967,0.4255,0.637058,0.883347,0.97564,0.786367,0.382578,0.381795,0.740883,0.331374,0.0980395,0.766366,0.124729,0.741436,0.218129,0.276842,0.843263,0.668459,0.0483227,0.466942,0.62319,0.608876,0.280765,0.626426,0.668624,0.9981,0.596964,0.937111,0.92114,0.973264,0.776226,0.435406,0.724241,0.350198,0.108607,0.944057,0.707409,0.446814,0.888713,0.636022,0.930866,0.202949,0.0647542,0.266468,0.648333,0.149214,0.345497,0.92001,0.154402,0.776841,0.397215,0.0693097,0.780936,0.417026,0.0066976,0.815711,0.0209318,0.80151,0.221401,0.387846,0.0727392,0.0642607,0.596641,0.339171,0.836871,0.081296,0.367594,0.235803,0.195904,0.13981,0.923776,0.939078,0.773165,0.0625783,0.521371,0.90804,0.969037,0.880316,0.425147,0.804892,0.0580422,0.486639,0.471593,0.710375,0.338736,0.89178,0.163624,0.659928,0.824732,0.0748399,0.139616,0.333205,0.00546825,0.41783,0.165673,0.637925,0.826298,0.0363512,0.660652,0.605945,0.592919,0.843676,0.191633,0.0649342,0.805591,0.277044,0.316766,0.677736,0.462527,0.413706,0.685659,0.42033,0.0583851,0.933676,0.836825,0.344554,0.0659089,0.310169,0.134193,0.334087,0.0940368,0.956189,0.0629801,0.505331,0.600318,0.896699,0.998911,0.12447,0.881017,0.322944,0.486396,0.318327,0.80135,0.0344743,0.276188,0.839641,0.429186,0.911691,0.108679,0.000841081,0.0566261,0.235098,0.643376,0.927435,0.656105,0.161281,0.743125,0.467106,0.826272,0.0296758,0.397287,0.684716,0.360021,0.288882,0.361847,0.178372,0.434434,0.0949087,0.998708,0.299596,0.228587,0.184078,0.881863,0.432801,0.957595,0.994788,0.0705627,0.661295,0.468715,0.297461,0.26296,0.936608,0.48464,0.172496,0.295977,0.607043,0.0544048,0.509682,0.874592,0.837738,0.81993,0.938039,0.138681,0.2852,0.555738,0.773802,0.645907,0.335408,0.215631,0.264273,0.737566,0.544099,0.207245,0.236505,0.743239,0.501656,0.457153,0.0727355,0.829666,0.198383,0.389606,0.248041,0.675629,0.433015,0.25404,0.0701057,0.266964,0.0483775,0.719658,0.113041,0.52268,0.633368,0.735472,0.779765,0.713251,0.800712,0.846007,0.21896,0.462118,0.551649,0.345495,0.598765,0.0415027,0.214825,0.866036,0.296088,0.951594,0.582838,0.0437721,0.129249,0.273955,0.952968,0.27433,0.501861,0.906914,0.879745,0.974443,0.437295,0.55698,0.58935,0.130686,0.528998,0.287584,0.515356,0.940549,0.1285,0.152514,0.0936424,0.36375,0.808401,0.0829934,0.52762,0.458675,0.909475,0.205645,0.619729,0.996035,0.736826,0.667666,0.657802,0.216769,0.744725,0.346896,0.37411,0.767869,0.0773854,0.873991,0.134644,0.963974,0.75776,0.0221751,0.551858,0.919331,0.588736,0.200535,0.222398,0.0740039,0.781874,0.578856,0.0394917,0.405921,0.369596,0.350644,0.932881,0.929527,0.00817281,0.596477,0.709184,0.0907005,0.0921953,0.0452189,0.185367,0.497663,0.292221,0.233737,0.662763,0.101327,0.598428,0.335296,0.852215,0.547916,0.625733,0.462162,0.420638,0.803938,0.384807,0.743072,0.139836,0.47031,0.220624,0.45585,0.517735,0.759295,0.561132,0.828291,0.775917,0.184447,0.000118554,0.405449,0.438055,0.837174,0.144132,0.918146,0.923526,0.299265,0.826201,0.141319,0.439812,0.723413,0.308343,0.827137,0.634315,0.526816,0.674485,0.714024,0.614621,0.0455613,0.452896,0.572873,0.38319,0.931409,0.230108,0.956331,0.070574,0.974274,0.482226,0.136002,0.54202,0.164076,0.0933951,0.577535,0.277103,0.889827,0.38098,0.117566,0.568368,0.0413696,0.696096,0.470502,0.850177,0.920036,0.205676,0.975484,0.544496,0.93713,0.291148,0.16303,0.194214,0.953703,0.917565,0.801529,0.565684,0.362686,0.926145,0.129467,0.596995,0.663735,0.626949,0.811419,0.668345,0.147076,0.28596,0.367292,0.979808,0.883301,0.372716,0.907649,0.751214,0.339903,0.441488,0.580588,0.322389,0.363556,0.704386,0.578433,0.796593,0.895236,0.299022,0.0944374,0.394224,0.988781,0.815568,0.837683,0.255236,0.866578,0.129155,0.0801443,0.808065,0.493987,0.43313,0.334083,0.298569,0.0177982,0.00210309,0.586904,0.0257267,0.938735,0.23203,0.0206623,0.247898,0.75365,0.735846,0.806183,0.115268,0.828449,0.831245,0.935947,0.185185,0.63474,0.43305,0.188426,0.652716,0.851494,0.548213,0.971829,0.172789,0.529707,0.904414,0.994285,0.753355,0.231977,0.455826,0.774814,0.397749,0.829091,0.288553,0.936347,0.672034,0.178597,0.202401,0.865785,0.440804,0.924133,0.366348,0.606027,0.340721,0.34274,0.577846,0.750823,0.570325,0.993913,0.94471,0.604053,0.150869,0.645683,0.0693309,0.907591,0.634336,0.656074,0.801686,0.480765,0.788722,0.52543,0.998731,0.634602,0.571087,0.429833,0.709527,0.448156,0.360475,0.502145,0.00354964,0.841875,0.0546288,0.778906,0.944803,0.406339,0.0413607,0.536021,0.15282,0.0753567,0.478977,0.394955,0.697173,0.122549,0.396188,0.356224,0.855963,0.941226,0.798281,0.244452,0.922585,0.289564,0.913184,0.233429,0.898639,0.20949,0.147336,0.317505,0.668407,0.578113,0.578824,0.278031,0.346951,0.557764,0.120611,0.157917,0.0935354,0.81796,0.900205,0.366135,0.073954,0.223007,0.523776,0.671493,0.9376,0.869152,0.528252,0.799333,0.487436,0.711782,0.855901,0.270866,0.617401,0.38354,0.588985,0.333568,0.504679,0.516563,0.540176,0.0348658,0.859898,0.939501,0.311454,0.880335,0.546683,0.269304,0.30852,0.467993,0.685479,0.276279,0.63347,0.497403,0.278437,0.825443,0.497579,0.544192,0.458779,0.133546,0.28367,0.611606,0.785447,0.259364,0.352399,0.732488,0.086135,0.381642,0.599034,0.033406,0.281021,0.370453,0.77425,0.0581338,0.332213,0.74615,0.5362,0.17587,0.3583,0.850189,0.217483,0.625956,0.565108,0.810255,0.160818,0.195654,0.0227219,0.954937,0.00934047,0.541949,0.934636,0.921444,0.737511,0.455626,0.828437,0.947034,0.41651,0.440401,0.3451,0.454858,0.335114,0.947357,0.475937,0.13385,0.419059,0.752099,0.714978,0.389987,0.285128,0.819049,0.829253,0.880982,0.787365,0.997284,0.816072,0.906416,0.156604,0.817601,0.0500812,0.450745,0.869115,0.295308,0.597977,0.576896,0.765375,0.212823,0.74988,0.94964,0.540764,0.731237,0.160356,0.978566,0.862651,0.792585,0.360273,0.938921,0.732218,0.865917,0.559395,0.106475,0.331689,0.474059,0.563448,0.0105972,0.295567,0.342194,0.356851,0.973722,0.622823,0.945543,0.818778,0.704407,0.501837,0.376432,0.875926,0.177046,0.92063,0.413698,0.557063,0.563671,0.131856,0.137686,0.166228,0.699216,0.697852,0.512515,0.955007,0.424074,0.33953,0.326391,0.411717,0.97538,0.510559,0.475974,0.269187,0.0756282,0.136268,0.588374,0.536957,0.941833,0.720378,0.940746,0.277289,0.374808,0.948603,0.534909,0.242429,0.694838,0.78088,0.0211008,0.614816,0.699469,0.610611,0.251613,0.790301,0.320561,0.939759,0.942812,0.510825,0.388953,0.455989,0.731289,0.674684,0.538217,0.933243,0.282469,0.0746669,0.896119,0.603501,0.00396204,0.0879669,0.372486,0.757063,0.451183,0.159069,0.122153,0.101793,0.626399,0.408026,0.238356,0.0601729,0.32531,0.503,0.28657,0.732426,0.140625,0.719568,0.38249,0.637543,0.876679,0.166619,0.724649,0.835751,0.773904,0.460725,0.722247,0.776358,0.904869,0.0336146,0.934864,0.701344,0.506393,0.487488,0.936656,0.618549,0.963464,0.735123,0.628511,0.146185,0.0443279,0.984732,0.321548,0.146464,0.504749,0.321593,0.363958,0.26249,0.591172,0.925866,0.271331,0.852632,0.611091,0.134789,0.37943,0.32074,0.136357,0.764698,0.91888,0.355064,0.466414,0.673881,0.316438,0.211902,0.894319,0.380353,0.854995,0.208696,0.29377,0.958802,0.264749,0.646754,0.383236,0.637501,0.658109,0.744125,0.190311,0.981817,0.0439128,0.183612,0.955391,0.732473,0.174611,0.710333,0.896436,0.989666,0.229124,0.476209,0.225888,0.963324,0.62399,0.50668,0.897779,0.170128,0.0828688,0.284174,0.911085,0.280643,0.431707,0.586604,0.295947,0.769245,0.22941,0.514119,0.0158604,0.533321,0.196846,0.757829,0.515292,0.404295,0.382326,0.647075,0.907784,0.0530437,0.748554,0.936105,0.180153,0.578918,0.106155,0.581986,0.121002,0.427922,0.0311879,0.526916,0.0261574,0.473822,0.800165,0.400935,0.0634959,0.851584,0.929823,0.718629,0.942142,0.0866121,0.896043,0.552127,0.423358,0.788647,0.739799,0.691466,0.1565,0.82407,0.399006,0.557174,0.413348,0.285352,0.545323,0.808021,0.559106,0.332866,0.227292,0.557786,0.817203,0.499286,0.854726,0.776193,0.905603,0.463902,0.318028,0.0754588,0.290118,0.596488,0.350302,0.109036,0.670624,0.733385,0.500246,0.462373,0.724812,0.875994,0.111255,0.688723,0.0316157,0.381299,0.560326,0.0744957,0.703323,0.0124267,0.408621,0.833164,0.00185061,0.0712658,0.669558,0.960181,0.510445,0.225916,0.43967,0.754415,0.491449,0.418761,0.0861003,0.103299,0.368474,0.760992,0.48628,0.286076,0.262342,0.96358,0.0666576,0.76654,0.10352,0.196469,0.594313,0.553237,0.0451655,0.814724,0.730087,0.924881,0.531491,0.363159,0.79869,0.225743,0.688865,0.479689,0.894141,0.323189,0.167074,0.620648,0.565072,0.770449,0.867082,0.825742,0.400404,0.440788,0.402479,0.758476,0.406118,0.493744,0.108486,|0.603719,0.597419,0.65808,0.809205,0.932069,0.992113,0.389283,0.641078,0.247608,0.425462,0.661159,0.26491,0.883776,0.215028,0.283075,0.394164,0.486945,0.0948833,0.725448,0.629855,0.0823045,0.864154,0.0517806,0.769604,0.638126,0.491375,0.444972,0.101735,0.807226,0.0307264,0.543476,0.929553,0.303361,0.341306,0.444628,0.218105,0.527578,0.991622,0.614228,0.021748,0.808276,0.667865,0.443152,0.0700198,0.582559,0.858769,0.848547,0.0761001,0.405541,0.777101,0.286126,0.687991,0.205591,0.827133,0.926554,0.831217,0.576641,0.00833571,0.814375,0.0862697,0.677425,0.618847,0.470312,0.791817,0.320556,0.956731,0.803728,0.76535,0.0979884,0.0853724,0.243431,0.0225625,0.166516,0.177003,0.912777,0.148578,0.772019,0.153055,0.928873,0.590455,0.0772541,0.787347,0.828213,0.423195,0.662261,0.766325,0.732403,0.65515,0.35514,0.405035,0.00450224,0.106258,0.551007,0.385344,0.00754839,0.931733,0.229572,0.077808,0.829014,0.588674,0.929523,0.897727,0.108944,0.610063,0.518178,0.416371,0.194937,0.717291,0.293642,0.528582,0.261201,0.379162,0.45032,0.65893,0.122505,0.455194,0.321638,0.164204,0.948687,0.0366171,0.548566,0.591516,0.96101,0.948061,0.515262,0.086345,0.772168,0.761166,0.0791155,0.693218,0.90631,0.656495,0.541807,0.232739,0.748599,0.154803,0.493463,0.519293,0.16774,0.998976,0.462656,0.688381,0.858555,0.245071,0.35196,0.150871,0.28711,0.413227,0.808469,0.572922,0.920171,0.118035,0.376971,0.897986,0.403095,0.840131,0.816799,0.921728,0.172812,0.350362,0.590528,0.524308,0.977461,0.00129551,0.169611,0.38004,0.276522,0.401381,0.583524,0.0126716,0.150341,0.274267,0.580803,0.65271,0.747021,0.0230336,0.790835,0.1656,0.0793803,0.00313812,0.0877548,0.629646,0.200364,0.146289,0.805522,0.32001,0.064694,0.233898,0.893822,0.552303,0.243336,0.383034,0.615458,0.638814,0.153187,0.156614,0.637957,0.0518131,0.514124,0.994954,0.404511,0.860167,0.0656227,0.775444,0.890333,0.771638,0.339393,0.44337,0.539411,0.971017,0.947806,0.193853,0.645167,0.746961,0.165163,0.175122,0.196102,0.0732462,0.753584,0.375022,0.807635,0.59384,0.686852,0.618194,0.686086,0.329581,0.423663,0.0332506,0.0899809,0.355879,0.527367,0.632884,0.215785,0.362459,0.955544,0.671126,0.411088,0.504513,0.950808,0.0817986,0.553845,0.994955,0.607272,0.450312,0.920948,0.471829,0.423404,0.650928,0.948726,0.539724,0.420769,0.993288,0.391301,0.286314,0.178868,0.321177,0.855464,0.907078,0.906319,0.354306,0.487205,0.898896,0.897105,0.339032,0.384754,0.938827,0.144316,0.482181,0.756924,0.17447,0.81893,0.189432,0.888951,0.282827,0.199281,0.643878,0.764102,0.61083,0.0428648,0.0916834,0.794143,0.508266,0.5473,0.446107,0.194795,0.631823,0.70053,0.453652,0.10692,0.28679,0.763721,0.877069,0.380045,0.207212,0.230122,0.700099,0.560042,0.444459,0.331639,0.418988,0.888318,0.239835,0.85781,0.829949,0.0986331,0.226588,0.911519,0.786143,0.750639,0.0705836,0.46793,0.386168,0.83227,0.649451,0.600073,0.653041,0.130942,0.546927,0.311038,0.529136,0.706242,0.48405,0.0164304,0.76235,0.0655851,0.419843,0.578359,0.732636,0.512,0.768797,0.453873,0.48429,0.0206645,0.836081,0.995488,0.242453,0.00753284,0.557691,0.638232,0.157631,0.000899553,0.567627,0.232298,0.758109,0.815623,0.884434,0.645098,0.344714,0.211883,0.702423,0.774277,0.58648,0.572468,0.368084,0.0187737,0.619295,0.897683,0.866575,0.498793,0.88454,0.613334,0.997383,0.152294,0.565218,0.287363,0.609719,0.308613,0.696896,0.0710778,0.114194,0.859627,0.934497,0.749981,0.746839,0.6387,0.207945,0.165964,0.764195,0.524312,0.514056,0.652029,0.52516,0.674002,0.248924,0.215548,0.526234,0.354315,0.127181,0.494498,0.00989449,0.00420803,0.511582,0.458703,0.866201,0.668098,0.662126,0.960113,0.586807,0.947541,0.299536,0.696095,0.0592018,0.819723,0.752998,0.584561,0.670092,0.801291,0.508757,0.266695,0.301443,0.871597,0.97397,0.509426,0.202096,0.69471,0.393315,0.684311,0.745924,0.0955985,0.352018,0.433293,0.224359,0.328217,0.899355,0.267116,0.763179,0.317017,0.204108,0.667377,0.722874,0.957175,0.0667323,0.300303,0.442201,0.635495,0.50927,0.468489,0.0413427,0.981836,0.224237,0.803703,0.993464,0.930007,0.357826,0.129742,0.97674,0.734404,0.286989,0.179959,0.534737,0.29619,0.104186,0.228035,0.201432,0.745866,0.154215,0.561299,0.162812,0.347494,0.638369,0.881093,0.349349,0.605048,0.424011,0.585958,0.35194,0.621495,0.774142,0.211227,0.523656,0.923339,0.722291,0.0266936,0.765211,0.324153,0.126437,0.474897,0.500396,0.311184,0.58205,0.740404,0.8658,0.178922,0.960881,0.698998,0.714047,0.650279,0.578084,0.893813,0.427046,0.360519,0.133873,0.839471,0.790152,0.530613,0.446461,0.395478,0.976641,0.350133,0.961487,0.215685,0.804866,0.50286,0.472885,0.888131,0.134819,0.754766,0.700788,0.191827,0.850008,0.381587,0.430776,0.958795,0.374902,0.0328127,0.00107211,0.367489,0.734284,0.0912194,0.949204,0.458148,0.0738919,0.794304,0.416056,0.849878,0.222249,0.984055,0.256193,0.713895,0.0301391,0.382251,0.339797,0.527503,0.0341093,0.0707418,0.638238,0.132735,0.968516,0.949474,0.233294,0.167151,0.745493,0.320296,0.789632,0.348426,0.361114,0.613454,0.787721,0.917106,0.725435,0.393209,0.873377,0.569413,0.825151,0.765036,0.393793,0.324617,0.78831,0.363413,0.221111,0.659836,0.417639,0.603315,0.271761,0.93047,0.743899,0.937082,0.508856,0.579059,0.653605,0.358104,0.841903,0.559961,0.787966,0.61259,0.982936,0.597952,0.187089,0.612513,0.0596898,0.567552,0.612269,0.677184,0.0799488,0.669778,0.817193,0.851544,0.214522,0.0130131,0.0153744,0.895192,0.9655,0.463916,0.475564,0.615448,0.0541186,0.892282,0.338507,0.382669,0.467982,0.665697,0.853441,0.140433,0.570698,0.630235,0.111236,0.862895,0.896111,0.822774,0.997712,0.282813,0.365855,0.883551,0.202079,0.0146849,0.219147,0.880677,0.696676,0.353769,0.690316,0.0607882,0.998856,0.396598,0.291032,0.720367,0.634419,0.957993,0.687939,0.257419,0.555814,0.523043,0.366991,0.310035,0.299116,0.609246,0.0712883,0.789364,0.105647,0.53297,0.443393,0.892986,0.193792,0.525302,0.487416,0.231837,0.337644,0.0432567,0.372465,0.924918,0.968416,0.216235,0.210073,0.177785,0.206574,0.588044,0.550745,0.992701,0.507655,0.621195,0.533553,0.889427,0.525831,0.0934075,0.720278,0.272454,0.69485,0.965735,0.961059,0.102735,0.331204,0.0112317,0.34167,0.0715946,0.304865,0.487467,0.162119,0.130291,0.65219,0.894029,0.0658056,0.47754,0.172362,0.11578,0.255142,0.170002,0.282494,0.00188363,0.41473,0.154916,0.086617,0.867117,0.765502,0.908209,0.313303,0.200947,0.410623,0.385443,0.609268,0.318878,0.909283,0.17806,0.823873,0.0580899,0.269587,0.654458,0.638535,0.746703,0.539634,0.504607,0.618997,0.859874,0.319055,0.832689,0.152828,0.433129,0.28325,0.0180506,0.98358,0.159178,0.764301,0.925688,0.211028,0.114515,0.539781,0.651945,0.0234734,0.813019,0.960083,0.0628514,0.684671,0.384538,0.457781,0.168342,0.430399,0.138426,0.151237,0.163557,0.479779,0.132918,0.146721,0.376614,0.0500141,0.632354,0.701495,0.721187,0.837542,0.706178,0.316534,0.447699,0.838322,0.431542,0.471103,0.233665,0.998303,0.749766,0.283234,0.31803,0.185431,0.519097,0.302559,0.517187,0.306715,0.493334,0.403227,0.592275,0.331676,0.481366,0.937346,0.760056,0.711221,0.343278,0.364494,0.542006,0.475816,0.413772,0.246928,0.921213,0.453062,0.79525,0.385261,0.219886,0.519328,0.959108,0.823342,0.763523,0.195253,0.335778,0.861938,0.586442,0.71848,0.294872,0.0104147,0.943079,0.276296,0.803881,0.570177,0.68114,0.795007,0.682651,0.743665,0.957208,0.275122,0.727507,0.178165,0.360626,0.171126,0.663876,0.809964,0.284503,0.0556954,0.992358,0.871081,0.956604,0.00201106,0.83549,0.795956,0.218847,0.867694,0.805561,0.5161,0.730474,0.169553,0.67517,0.564428,0.428932,0.808655,0.0945345,0.07813,0.240607,0.259991,0.285818,0.629972,0.917837,0.513137,0.830649,0.211154,0.461943,0.807918,0.997626,0.405281,0.156078,0.849889,0.410409,0.108913,0.703611,0.0145856,0.882642,0.0389238,0.178313,0.568328,0.966569,0.957455,0.368873,0.801284,0.101691,0.701771,0.899128,0.538762,0.463075,0.99666,0.0862828,0.362773,0.713854,0.841269,0.42084,0.409549,0.586711,0.676909,0.430424,0.223808,0.586939,0.179804,0.831048,0.692723,0.0599644,0.0511521,0.256637,0.671736,0.537625,0.421806,0.067584,0.00778854,0.968898,0.116576,0.542694,0.218163,0.0295873,0.876894,0.156614,0.143117,0.110285,0.820417,0.222395,0.0433766,0.88644,0.594637,0.993349,0.280687,0.3981,0.613659,0.557337,0.344918,0.649933,0.988083,0.811349,0.246815,0.137308,0.953534,0.202657,0.153791,0.195136,0.61947,0.907535,0.657691,0.95855,0.558299,0.267823,0.563284,0.669381,0.776193,0.041346,0.858455,0.307002,0.354804,0.0491162,0.778346,0.970303,0.834813,0.386795,0.774788,0.939607,0.408119,0.624559,0.576276,0.596529,0.909922,0.7374,0.45732,0.795978,0.0380948,0.0983253,0.0476049,0.326067,0.878685,0.0825239,0.587159,0.18064,0.192187,0.259138,0.329228,0.691979,0.484734,0.315985,0.0518641,0.462911,0.595359,0.359949,0.514183,0.996178,0.241603,0.191872,0.179654,0.62473,0.192065,0.900548,0.466273,0.76046,0.600874,0.615811,0.491522,0.668057,0.547952,0.502517,0.946629,0.868436,0.611155,0.89336,0.497071,0.718985,0.905268,0.477816,0.783682,0.13051,0.297437,0.583687,0.856101,0.790538,0.58304,0.699656,0.81103,0.113182,0.276299,0.959979,0.108843,0.0123895,0.10917,0.834666,0.376486,0.138888,0.565564,|0.961047,0.932199,0.830972,0.237829,0.193996,0.431873,0.658278,0.971878,0.0310083,0.792517,0.945733,0.152656,0.48459,0.966467,0.69187,0.601739,0.816172,0.620669,0.556461,0.608419,0.984086,0.29567,0.09637,0.995204,0.883907,0.893559,0.484102,0.0330008,0.951713,0.413888,0.864589,0.0666725,0.85611,0.98137,0.813158,0.33628,0.770926,0.689544,0.868302,0.787022,0.785292,0.736544,0.594311,0.581578,0.267122,0.013912,0.457729,0.321132,0.382839,0.360156,0.485363,0.899539,0.973699,0.56291,0.973555,0.460149,0.218365,0.918323,0.876543,0.602102,0.16868,0.625416,0.846181,0.279896,0.790255,0.371013,0.542562,0.765617,0.987659,0.934747,0.729686,0.395774,0.915626,0.875067,0.765655,0.265226,0.417605,0.628032,0.836921,0.469272,0.430385,0.644382,0.66235,0.291695,0.836077,0.278003,0.587062,0.697109,0.0173764,0.236539,0.048188,0.757894,0.979172,0.0213909,0.4246,0.244559,0.32543,0.772549,0.811426,0.58285,0.571844,0.778631,0.901666,0.535066,0.517253,0.183675,0.334985,0.174088,0.334185,0.550657,0.0496899,0.359513,0.183566,0.906587,0.313947,0.99411,0.78652,0.152078,0.343752,0.866243,0.804199,0.926099,0.820655,0.483735,0.703433,0.778967,0.145467,0.835207,0.924866,0.788987,0.0937039,0.991749,0.335083,0.920117,0.825566,0.0949488,0.241794,0.389402,0.646562,0.15109,0.742463,0.893597,0.686386,0.695134,0.859364,0.0788549,0.86359,0.00182438,0.697847,0.261552,0.47933,0.865421,0.54025,0.67454,0.655689,0.764146,0.56298,0.137902,0.136262,0.793614,0.157592,0.771535,0.119617,0.192537,0.231237,0.535822,0.992633,0.0958366,0.148708,0.145101,0.0776545,0.745904,0.0801976,0.100626,0.0527394,0.155813,0.204107,0.849536,0.807554,0.396623,0.311453,0.534591,0.694715,0.79878,0.333466,0.258367,0.034246,0.0911326,0.662756,0.477805,0.789964,0.518755,0.945537,0.48754,0.942008,0.847743,0.210355,0.382944,0.918233,0.139833,0.862908,0.580927,0.519979,0.610853,0.359415,0.719494,0.803974,0.311225,0.443227,0.102809,0.31451,0.322081,0.670579,0.751911,0.0955164,0.780068,0.395547,0.529785,0.870085,0.258286,0.70342,0.112665,0.940658,0.792114,0.497106,0.0766646,0.746389,0.0514488,0.860203,0.892995,0.893557,0.558667,0.0298946,0.189705,0.366093,0.791335,0.250546,0.91447,0.459324,0.502058,0.569294,0.970519,0.691236,0.60424,0.624741,0.176224,0.339177,0.137618,0.568662,0.466325,0.281137,0.198844,0.722583,0.22553,0.711702,0.0133225,0.160056,0.555789,0.144098,0.271565,0.82472,0.861516,0.340842,0.0376558,0.075469,0.180095,0.0746621,0.424774,0.755638,0.212717,0.710785,0.479316,0.906447,0.131571,0.369741,0.239372,0.768636,0.96737,0.680708,0.85097,0.804706,0.767532,0.667131,0.684361,0.310918,0.0230987,0.879358,0.306002,0.220491,0.47828,0.339073,0.415463,0.819295,0.959846,0.268616,0.46385,0.38728,0.619916,0.859503,0.992233,0.804983,0.381817,0.0582825,0.662065,0.672532,0.117183,0.258437,0.116732,0.423438,0.265539,0.923417,0.185535,0.729705,0.57138,0.524112,0.748897,0.785374,0.563077,0.491217,0.442514,0.273473,0.0815992,0.913192,0.100509,0.390859,0.0882049,0.789855,0.966322,0.520004,0.845047,0.600668,0.16625,0.898828,0.0231795,0.138375,0.57096,0.46685,0.333839,0.946699,0.68911,0.258964,0.392647,0.657976,0.877909,0.709551,0.765384,0.729429,0.534784,0.555691,0.261781,0.785209,0.989287,0.664614,0.595365,0.334769,0.571512,0.609611,0.0808493,0.600426,0.949215,0.511877,0.136512,0.691024,0.118973,0.235714,0.815869,0.830984,0.758792,0.277957,0.937339,0.708469,0.587466,0.0516911,0.292371,0.20698,0.633013,0.00452155,0.62718,0.70811,0.784738,0.439732,0.545642,0.955777,0.928377,0.627652,0.597473,0.62658,0.249219,0.228601,0.292308,0.991518,0.465663,0.98174,0.895209,0.935982,0.660032,0.662549,0.00360572,0.360795,0.190386,0.0846878,0.234027,0.558714,0.150663,0.0688062,0.519719,0.991483,0.884708,0.414008,0.0626082,0.30562,0.97144,0.752008,0.897751,0.652767,0.196813,0.952065,0.734708,0.46571,0.665726,0.462961,0.932966,0.0399716,0.683013,0.17747,0.596969,0.990062,0.714374,0.0766872,0.0400115,0.210235,0.392561,0.376145,0.833482,0.22455,0.118297,0.96667,0.893407,0.55402,0.166186,0.778802,0.27122,0.468832,0.948479,0.523969,0.0421902,0.804414,0.822091,0.69676,0.295407,0.247007,0.576765,0.977076,0.488727,0.429567,0.0472496,0.647379,0.48368,0.673295,0.075305,0.293796,0.785955,0.148891,0.257271,0.691189,0.887528,0.483499,0.114714,0.68958,0.0162749,0.970124,0.782848,0.456077,0.383481,0.772927,0.950687,0.15008,0.0824544,0.919637,0.607468,0.901884,0.263712,0.654052,0.665242,0.797041,0.863383,0.608341,0.45798,0.0469968,0.541812,0.539462,0.199165,0.484918,0.0513678,0.569491,0.214968,0.399995,0.690118,0.308396,0.381235,0.177548,0.188968,0.225242,0.786401,0.0408872,0.677244,0.253837,0.0995198,0.136666,0.0651395,0.676447,0.401143,0.538687,0.57693,0.706827,0.784111,0.39091,0.873044,0.794121,0.810779,0.443945,0.766315,0.475688,0.339724,0.17905,0.470059,0.718883,0.426641,0.988372,0.821586,0.505327,0.951041,0.378185,0.156769,0.541814,0.754615,0.131652,0.140624,0.325832,0.292179,0.580237,0.565025,0.612954,0.684442,0.450036,0.883749,0.733001,0.353583,0.544382,0.205071,0.133776,0.541207,0.969085,0.494991,0.873752,0.810879,0.789546,0.868803,0.866286,0.758543,0.299234,0.736833,0.125723,0.0263271,0.843923,0.374968,0.0620205,0.208667,0.888535,0.173798,0.278673,0.320361,0.420358,0.401066,0.221341,0.373673,0.648047,0.706539,0.268588,0.0131583,0.188436,0.269933,0.703467,0.191227,0.738982,0.469746,0.547707,0.329909,0.502922,0.0255432,0.677238,0.709022,0.588492,0.450552,0.622553,0.299922,0.362823,0.227222,0.277973,0.641834,0.49433,0.636115,0.899254,0.214914,0.803686,0.213925,0.311466,0.449355,0.984056,0.749269,0.313679,0.637226,0.00947905,0.0979774,0.511473,0.593319,0.630004,0.622331,0.848441,0.683607,0.0612327,0.81074,0.888366,0.000665128,0.214293,0.210029,0.765716,0.0616109,0.964264,0.650884,0.799127,0.359321,0.0270795,0.28219,0.0878375,0.618406,0.579731,0.555461,0.0882902,0.741929,0.197796,0.69551,0.106798,0.707966,0.854595,0.104026,0.511474,0.208979,0.0765215,0.486224,0.924385,0.349664,0.453785,0.903237,0.990514,0.58675,0.154491,0.35073,0.270253,0.645184,0.322263,0.386414,0.152986,0.369279,0.19125,0.912285,0.310235,0.915562,0.393885,0.971118,0.0424049,0.547391,0.49068,0.230559,0.827313,0.0820793,0.21946,0.613285,0.705013,0.820725,0.34499,0.550184,0.383386,0.907562,0.48509,0.627458,0.398138,0.429545,0.228967,0.329075,0.286902,0.959525,0.886414,0.476301,0.997692,0.829818,0.024654,0.150579,0.892018,0.27844,0.102057,0.770509,0.945623,0.905542,0.532504,0.782208,0.111049,0.530663,0.11662,0.7752,0.484723,0.18488,0.837412,0.506538,0.460377,0.133132,0.0455857,0.871899,0.757688,0.315795,0.229289,0.907359,0.0767073,0.583646,0.81404,0.188236,0.260999,0.677254,0.606594,0.0988712,0.867595,0.357161,0.780681,0.920325,0.76823,0.116109,0.802525,0.966697,0.611337,0.810096,0.976064,0.708734,0.888336,0.132397,0.73479,0.183538,0.535448,0.97727,0.405031,0.00714284,0.828502,0.579427,0.977418,0.763036,0.568164,0.739391,0.761071,0.316369,0.0685434,0.296461,0.110323,0.778295,0.39667,0.954497,0.641775,0.645217,0.948555,0.880764,0.99378,0.889566,0.440649,0.904484,0.046528,0.528473,0.148404,0.0415843,0.514875,0.588156,0.853831,0.903335,0.911672,0.0675421,0.240597,0.126676,0.00898641,0.138249,0.773881,0.441952,0.232151,0.278557,0.723901,0.916681,0.622955,0.531214,0.365364,0.533303,0.451526,0.94348,0.851794,0.364045,0.342734,0.20545,0.051515,0.17981,0.0389959,0.372864,0.929384,0.0788334,0.0301991,0.875809,0.582695,0.434023,0.367554,0.352331,0.45649,0.53689,0.309668,0.827266,0.0387018,0.62754,0.0122844,0.611901,0.0304077,0.103466,0.149111,0.477547,0.177754,0.154727,0.249521,0.226541,0.171862,0.762539,0.858089,0.924734,0.22846,0.433116,0.803572,0.17345,0.183658,0.479513,0.997123,0.205073,0.00567245,0.270867,0.0364849,0.765328,0.86705,0.953598,0.232651,0.268221,0.642965,0.325325,0.918391,0.326318,0.421531,0.546462,0.292368,0.0337961,0.384339,0.970316,0.719707,0.715373,0.882483,0.466643,0.318894,0.501455,0.636962,0.608837,0.952768,0.282527,0.854643,0.961135,0.900314,0.694189,0.96562,0.126653,0.447422,0.0967859,0.493242,0.261067,0.00695246,0.830874,0.47982,0.725039,0.260309,0.28774,0.0992346,0.320051,0.858076,0.00818408,0.599993,0.617313,0.561211,0.0494656,0.850183,0.556747,0.51785,0.0618698,0.923342,0.282026,0.525391,0.220346,0.857615,0.745154,0.0153541,0.327156,0.0414846,0.515009,0.19903,0.88572,0.228625,0.712438,0.457017,0.932443,0.121301,0.192914,0.00669509,0.233636,0.620447,0.995258,0.0286455,0.451783,0.311413,0.93165,0.459851,0.80058,0.95836,0.945349,0.208789,0.478896,0.422238,0.465416,0.646915,0.106311,0.227512,0.497201,0.601279,0.752138,0.516312,0.670864,0.69347,0.762415,0.368069,0.912741,0.935443,0.282832,0.0233738,0.648326,0.091031,0.319451,0.947882,0.522721,0.802424,0.421045,0.246615,0.516646,0.874768,0.0147429,0.654187,0.464638,0.717452,0.479402,0.980663,0.83568,0.73367,0.753797,0.987251,0.997636,0.42115,0.0891423,0.839289,0.670925,0.972961,0.418641,0.92905,0.173163,0.318574,0.0904058,0.227237,0.542316,0.785581,0.847342,0.431434,0.761124,0.43326,0.602462,0.606002,0.807033,0.590669,0.248954,0.214735,0.574068,0.182731,0.808802,0.203443,0.915515,0.956421,0.144659,0.866666,0.725838,|0.942888,0.438255,0.910587,0.901838,0.993916,0.42435,0.141492,0.0916377,0.621046,0.0332118,0.931335,0.716475,0.899819,0.458113,0.962383,0.887078,0.951802,0.601231,0.0640349,0.995266,0.982101,0.815588,0.515942,0.108423,0.493879,0.347631,0.890756,0.0521425,0.607927,0.696183,0.632108,0.765134,0.496828,0.799519,0.596981,0.164056,0.917252,0.344388,0.503552,0.659629,0.260731,0.467597,0.738084,0.230435,0.390673,0.052037,0.60906,0.661092,0.888173,0.875964,0.375784,0.463857,0.74955,0.974644,0.569322,0.995727,0.581809,0.996358,0.984299,0.819293,0.617304,0.408065,0.50105,0.246509,0.54403,0.982289,0.602254,0.794118,0.672931,0.608593,0.401101,0.478815,0.592592,0.438712,0.296205,0.500734,0.0683163,0.600142,0.646718,0.794034,0.532685,0.0273436,0.506371,0.0633413,0.909976,0.507564,0.457281,0.515308,0.190461,0.561091,0.85164,0.583337,0.160313,0.29513,0.194251,0.976149,0.795324,0.522088,0.558748,0.269549,0.225899,0.777364,0.273947,0.21902,0.0701956,0.603308,0.598847,0.356611,0.529628,0.227275,0.952032,0.683142,0.377762,0.350164,0.124046,0.508037,0.582935,0.223902,0.0840055,0.0856237,0.582157,0.0661633,0.700133,0.0624312,0.935647,0.460672,0.78507,0.531873,0.787125,0.463087,0.532764,0.85588,0.215819,0.808275,0.881312,0.426342,0.0424836,0.940925,0.298078,0.573177,0.614383,0.887229,0.335137,0.661279,0.727643,0.271953,0.886466,0.967459,0.314915,0.110577,0.692199,0.116235,0.843857,0.304092,0.320611,0.403983,0.446142,0.799062,0.00977498,0.729053,0.173405,0.257152,0.179756,0.30759,0.286207,0.997313,0.572046,0.328944,0.169802,0.61901,0.608471,0.58958,0.777289,0.851552,0.910765,0.762996,0.327124,0.00114125,0.203074,0.20837,0.789311,0.317532,0.968714,0.798388,0.089565,0.72866,0.311891,0.881448,0.961101,0.993784,0.511427,0.844743,0.563935,0.837698,0.524739,0.948726,0.492816,0.115001,0.0697057,0.817427,0.976763,0.735651,0.136502,0.490948,0.369976,0.361687,0.864197,0.218995,0.693677,0.875882,0.609245,0.856104,0.526348,0.122782,0.187713,0.692192,0.420974,0.514802,0.547637,0.238716,0.861741,0.464239,0.740433,0.42424,0.391279,0.366942,0.360895,0.842825,0.827753,0.13461,0.0259297,0.00746417,0.844239,0.830442,0.0870685,0.268571,0.204319,0.0177283,0.51205,0.646592,0.238085,0.921138,0.79573,0.885559,0.327706,0.205584,0.542623,0.56265,0.80608,0.588721,0.447082,0.0971374,0.797272,0.967046,0.349846,0.340806,0.796891,0.564705,0.315604,0.812618,0.134192,0.0581652,0.129678,0.62954,0.741771,0.00779289,0.534618,0.353925,0.14236,0.29534,0.388156,0.355485,0.0119079,0.453477,0.960201,0.981178,0.37139,0.388264,0.321262,0.668244,0.697406,0.0647578,0.499298,0.590708,0.351301,0.756672,0.359187,0.817726,0.629431,0.110301,0.0766298,0.0517043,0.618448,0.0135558,0.211598,0.431631,0.294031,0.735559,0.452753,0.595957,0.359742,0.118622,0.859666,0.83663,0.508978,0.473845,0.31411,0.941909,0.236616,0.303477,0.977586,0.764377,0.296926,0.189835,0.964411,0.385185,0.0349145,0.257402,0.978576,0.161235,0.801772,0.247721,0.720032,0.370355,0.0963441,0.854819,0.876312,0.494946,0.567031,0.179837,0.231953,0.014826,0.997323,0.747473,0.114127,0.85727,0.547784,0.175617,0.697941,0.539172,0.657756,0.228465,0.123533,0.871655,0.131613,0.0932169,0.733168,0.373168,0.973334,0.098578,0.106758,0.421928,0.438509,0.977007,0.781439,0.912616,0.643951,0.148098,0.719619,0.935938,0.518569,0.0246711,0.471469,0.874864,0.996215,0.465092,0.475564,0.252167,0.542139,0.528719,0.0487494,0.818208,0.581529,0.126928,0.843653,0.34201,0.111678,0.380791,0.368669,0.995083,0.791009,0.237655,0.0456027,0.354262,0.237172,0.717112,0.671818,0.778569,0.399072,0.493497,0.776088,0.153266,0.240574,0.866015,0.533477,0.683399,0.742152,0.719436,0.279213,0.749306,0.133446,0.300336,0.985599,0.219741,0.594163,0.646111,0.111332,0.0749009,0.4469,0.822167,0.752815,0.187311,0.644171,0.558827,0.892163,0.784774,0.232692,0.679006,0.367026,0.91859,0.57337,0.0400435,0.497063,0.000310361,0.310587,0.880603,0.356705,0.646628,0.0661696,0.306633,0.0735125,0.0263343,0.671017,0.570623,0.03692,0.773412,0.156243,0.0475799,0.000744581,0.862397,0.755955,0.58968,0.148678,0.235209,0.993526,0.810184,0.829605,0.219626,0.878302,0.693168,0.12819,0.221052,0.486997,0.156588,0.229959,0.262467,0.779751,0.538475,0.0428259,0.427226,0.328886,0.727974,0.923948,0.573378,0.68305,0.756079,0.902734,0.388022,0.111592,0.389499,0.649345,0.711463,0.251918,0.386984,0.344758,0.087024,0.160484,0.258944,0.193136,0.205085,0.837064,0.787931,0.895762,0.0875365,0.99196,0.593403,0.0161552,0.223529,0.374194,0.800098,0.617906,0.233493,0.189007,0.687066,0.627032,0.330358,0.306079,0.188363,0.779146,0.200456,0.060666,0.00341946,0.553282,0.568452,0.276187,0.527324,0.0349141,0.855383,0.808214,0.144424,0.205405,0.162596,0.402729,0.501976,0.998549,0.385238,0.601433,0.256166,0.158819,0.555919,0.745392,0.418423,0.145711,0.43099,0.459251,0.12718,0.907009,0.0245489,0.197431,0.524908,0.925035,0.368983,0.325431,0.37911,0.823779,0.86164,0.0333607,0.596088,0.0572941,0.652896,0.469623,0.486725,0.40572,0.497763,0.698276,0.477122,0.392455,0.0471403,0.149972,0.0648476,0.990526,0.996884,0.55181,0.0451551,0.5266,0.684196,0.942832,0.818742,0.620997,0.947695,0.494603,0.365759,0.720832,0.634499,0.679491,0.392504,0.285097,0.179218,0.945222,0.802355,0.399064,0.587719,0.418644,0.714677,0.081508,0.93114,0.388073,0.564653,0.842645,0.0929181,0.642959,0.731393,0.0805993,0.627864,0.402681,0.381745,0.4699,0.726367,0.456249,0.264042,0.702137,0.652552,0.13134,0.172261,0.185352,0.18603,0.478602,0.270961,0.155354,0.97021,0.972331,0.424028,0.274285,0.806281,0.725575,0.57921,0.252414,0.714804,0.0374507,0.0456427,0.419852,0.948509,0.300923,0.849408,0.386009,0.823905,0.603853,0.296575,0.325641,0.984775,0.0751945,0.106548,0.24468,0.0412609,0.23,0.51567,0.706506,0.0457345,0.567863,0.899897,0.863616,0.420015,0.859098,0.577538,0.775638,0.150562,0.250631,0.667125,0.728744,0.840388,0.375871,0.421877,0.331736,0.215711,0.666073,0.727492,0.297567,0.679763,0.419003,0.201257,0.850988,0.306311,0.938648,0.340173,0.0424782,0.461372,0.418935,0.72694,0.788647,0.568986,0.961474,0.935282,0.748923,0.175531,0.0735002,0.336751,0.965205,0.674449,0.925054,0.0413008,0.581704,0.706929,0.925056,0.8721,0.13617,0.00804377,0.459451,0.716269,0.0737826,0.835445,0.358284,0.994075,0.190803,0.30345,0.851052,0.930938,0.879036,0.244033,0.957193,0.377625,0.937895,0.326086,0.851478,0.588097,0.383853,0.25128,0.293807,0.650945,0.910227,0.0354271,0.241565,0.677867,0.710633,0.481859,0.345137,0.190148,0.743622,0.978416,0.449448,0.883404,0.841971,0.627051,0.717672,0.620229,0.826218,0.298898,0.565118,0.673887,0.311683,0.0105207,0.245806,0.0245792,0.775414,0.684891,0.569758,0.817081,0.0899349,0.883337,0.514644,0.452793,0.195632,0.633254,0.777568,0.987054,0.404227,0.522591,0.480148,0.424648,0.295573,0.943377,0.119194,0.616021,0.302965,0.588761,0.22028,0.769514,0.562516,0.639343,0.783014,0.395198,0.0629389,0.963582,0.447571,0.858713,0.18238,0.546102,0.246608,0.779314,0.986927,0.564807,0.278305,0.837918,0.832046,0.224961,0.637058,0.548115,0.719775,0.889455,0.321651,0.34992,0.0956153,0.234271,0.498503,0.394024,0.771876,0.660806,0.390322,0.852567,0.0704204,0.916854,0.365512,0.345172,0.767912,0.34606,0.222903,0.950326,0.378603,0.100465,0.0449935,0.284037,0.475983,0.969797,0.46695,0.161334,0.18561,0.024131,0.307499,0.483948,0.58059,0.678403,0.462829,0.36307,0.564625,0.059419,0.603998,0.0407031,0.810841,0.406144,0.593888,0.824176,0.757085,0.317224,0.519009,0.607583,0.867676,0.0363443,0.318207,0.511533,0.616888,0.180909,0.445474,0.188796,0.56704,0.572752,0.171522,0.716236,0.235786,0.508179,0.0842169,0.545169,0.704119,0.461865,0.200305,0.344241,0.159238,0.668121,0.713196,0.749582,0.578582,0.712855,0.635062,0.872836,0.572341,0.257103,0.609809,0.905356,0.760558,0.538124,0.957646,0.954792,0.963716,0.0911781,0.138038,0.129101,0.579881,0.00429404,0.140072,0.191919,0.855921,0.519943,0.515686,0.948413,0.119894,0.753811,0.928136,0.84969,0.630674,0.215498,0.0512205,0.499612,0.29965,0.643932,0.760801,0.540247,0.751266,0.435152,0.879438,0.13767,0.0131815,0.45858,0.887883,0.0996482,0.2675,0.256641,0.525631,0.643048,0.165698,0.0906571,0.588502,0.133443,0.397463,0.463012,0.574268,0.273286,0.682223,0.437337,0.767534,0.740733,0.987066,0.256019,0.183123,0.749535,0.456957,0.322495,0.698447,0.504618,0.0479645,0.24489,0.681565,0.428523,0.123873,0.746989,0.643808,0.735477,0.147256,0.270895,0.278279,0.954384,0.509335,0.220136,0.347116,0.858338,0.759485,0.157475,0.315164,0.545027,0.590447,0.0439937,0.522107,0.184575,0.295513,0.0067659,0.389787,0.482832,0.137361,0.477963,0.612857,0.250148,0.938977,0.149498,0.642181,0.192921,0.604212,0.72392,0.437353,0.140954,0.825582,0.841606,0.904276,0.877665,0.928462,0.212133,0.0524161,0.137724,0.605342,0.895519,0.099331,0.547561,0.32596,0.0684696,0.502154,0.0854574,0.391569,0.254378,0.261185,0.555169,0.619691,0.971466,0.678696,0.614423,0.776878,0.533471,0.314797,0.610392,0.0758017,0.463294,0.229674,0.947225,0.892435,0.606367,0.892971,0.271933,0.881867,0.281505,0.488768,0.861908,0.120586,0.496005,0.0590745,0.104967,0.0512,0.00454032,0.6806,0.238097,0.23795,0.544215,0.737382,0.76099,0.134412,0.216247,|0.743051,0.969375,0.907197,0.75317,0.344869,0.895495,0.239246,0.461829,0.870732,0.57548,0.88196,0.229753,0.177626,0.540637,0.299225,0.001966,0.550364,0.332093,0.429651,0.960825,0.726443,0.284247,0.515242,0.829484,0.5621,0.482439,0.123018,0.288179,0.263524,0.882072,0.31342,0.24111,0.524816,0.734097,0.710201,0.907902,0.871237,0.356131,0.859724,0.206331,0.719778,0.500176,0.756747,0.638556,0.563105,0.924415,0.113711,0.978163,0.604735,0.271821,0.542298,0.710507,0.174191,0.76022,0.688713,0.0654266,0.857252,0.398036,0.848958,0.734876,0.144234,0.188858,0.579682,0.712974,0.526112,0.63396,0.658293,0.540033,0.260167,0.116943,0.873962,0.996249,0.767303,0.79144,0.128722,0.110757,0.503223,0.613278,0.000811458,0.65809,0.277414,0.515152,0.91807,0.0378568,0.201477,0.859652,0.812362,0.556282,0.881296,0.447708,0.21198,0.380692,0.00275362,0.306965,0.682413,0.167259,0.216934,0.327647,0.70711,0.80305,0.419645,0.858278,0.598615,0.637408,0.598275,0.275167,0.850966,0.988113,0.650711,0.36502,0.904384,0.98385,0.0675325,0.307721,0.0047695,0.439234,0.712675,0.125474,0.97752,0.236761,0.88613,0.599718,0.727,0.389077,0.0124481,0.884492,0.782629,0.971374,0.646188,0.870936,0.171407,0.617209,0.858512,0.947959,0.0378667,0.364083,0.414143,0.583591,0.746153,0.475108,0.108836,0.238073,0.116154,0.0522351,0.597176,0.352492,0.646128,0.0953316,0.112198,0.137505,0.439217,0.500955,0.860025,0.233114,0.150745,0.759198,0.771708,0.0937009,0.815473,0.226775,0.409244,0.28165,0.405192,0.931803,0.927968,0.326951,0.0213671,0.534778,0.226015,0.18111,0.405402,0.777328,0.468949,0.0735661,0.030867,0.111583,0.960909,0.772411,0.319809,0.701266,0.708685,0.43652,0.656008,0.976691,0.400015,0.225179,0.756629,0.906611,0.611037,0.967424,0.426783,0.630353,0.21361,0.370403,0.310214,0.706667,0.089064,0.269858,0.805728,0.013019,0.979888,0.818431,0.836165,0.455053,0.45729,0.0992188,0.531746,0.71699,0.641653,0.0847006,0.034081,0.156181,0.629848,0.835111,0.997769,0.759824,0.422814,0.54264,0.93012,0.148965,0.410022,0.0760426,0.461897,0.805303,0.54404,0.690527,0.235969,0.982192,0.537632,0.843567,0.899107,0.454275,0.858258,0.949587,0.852483,0.661375,0.627705,0.784209,0.111461,0.830296,0.614715,0.227993,0.316331,0.068244,0.466483,0.463406,0.72485,0.777405,0.492275,0.0594635,0.751023,0.733309,0.0886377,0.433184,0.368193,0.798696,0.16404,0.625637,0.522235,0.668871,0.0700106,0.893324,0.581063,0.384195,0.600292,0.216045,0.420497,0.754662,0.996438,0.744402,0.195658,0.750324,0.922363,0.47156,0.15282,0.0679047,0.906118,0.594354,0.521973,0.275045,0.818324,0.829987,0.515901,0.775822,0.300908,0.89016,0.952087,0.364911,0.66384,0.00399989,0.610536,0.437715,0.194383,0.825346,0.526781,0.293248,0.635791,0.673761,0.502349,0.454075,0.602494,0.272646,0.224406,0.959125,0.632639,0.929123,0.184512,0.322351,0.597163,0.96668,0.524445,0.809117,0.759625,0.426072,0.560384,0.116211,0.666738,0.360502,0.796762,0.353776,0.286884,0.464653,0.180987,0.236245,0.742655,0.480445,0.0474642,0.980978,0.667157,0.763225,0.172178,0.949421,0.0708994,0.839142,0.207834,0.33699,0.717218,0.535168,0.253174,0.699221,0.837199,0.90832,0.326364,0.822354,0.737649,0.36395,0.031925,0.193126,0.273185,0.717426,0.095241,0.322519,0.620462,0.808596,0.656566,0.107206,0.400924,0.0124645,0.336972,0.530879,0.00024128,0.853173,0.214846,0.0292934,0.961415,0.254973,0.234469,0.687557,0.431098,0.936899,0.679537,0.516051,0.319816,0.143379,0.811238,0.30784,0.492522,0.21347,0.969335,0.225381,0.403723,0.753417,0.109267,0.210316,0.0465617,0.0427171,0.856821,0.673847,0.947879,0.656886,0.919491,0.89322,0.888702,0.264641,0.350437,0.785313,0.97646,0.202306,0.751447,0.831904,0.252604,0.790431,0.443114,0.379426,0.910586,0.0490588,0.748312,0.95176,0.546146,0.188515,0.465342,0.479884,0.660775,0.766879,0.729447,0.0671494,0.181062,0.938806,0.31118,0.564976,0.781077,0.150884,0.340694,0.853975,0.0822609,0.720728,0.544721,0.798767,0.318105,0.273385,0.126428,0.0436042,0.912097,0.185518,0.661994,0.239774,0.946764,0.337162,0.919087,0.643217,0.671192,0.83026,0.916684,0.730157,0.416678,0.119274,0.475108,0.822578,0.282526,0.502723,0.736061,0.336524,0.0810831,0.842143,0.389279,0.54436,0.0583029,0.260665,0.38029,0.545612,0.264628,0.36325,0.558655,0.164097,0.239628,0.775839,0.311007,0.0361282,0.0321459,0.955429,0.963434,0.0161722,0.221348,0.56424,0.774611,0.0722427,0.875513,0.298477,0.421507,0.260818,0.896136,0.440658,0.82938,0.678973,0.847783,0.293878,0.647981,0.73843,0.895819,0.0829267,0.932669,0.569768,0.392087,0.807707,0.456455,0.852245,0.0984031,0.842413,0.895339,0.289554,0.260124,0.474714,0.0655413,0.254248,0.368265,0.687082,0.821607,0.564107,0.901318,0.49157,0.740063,0.451861,0.781488,0.309567,0.389979,0.404141,0.495295,0.787653,0.808326,0.729547,0.252204,0.976445,0.0910591,0.784034,0.215052,0.419786,0.960721,0.706203,0.301304,0.334811,0.459222,0.912484,0.701949,0.63798,0.870823,0.72101,0.00713325,0.72336,0.70355,0.47537,0.409445,0.540433,0.171853,0.112205,0.217795,0.778276,0.681038,0.223423,0.118768,0.687036,0.84656,0.0341563,0.892247,0.113442,0.707067,0.267711,0.800777,0.731771,0.722882,0.598199,0.340881,0.0200455,0.594931,0.108185,0.105248,0.681422,0.522172,0.732445,0.434951,0.614676,0.480224,0.29375,0.275666,0.599976,0.0448295,0.269628,0.325792,0.379133,0.0401781,0.835149,0.780148,0.683648,0.567623,0.6747,0.961833,0.271416,0.658092,0.160244,0.488796,0.826983,0.892193,0.889877,0.842081,0.179823,0.537745,0.930482,0.899269,0.25533,0.355771,0.371791,0.491847,0.190855,0.273023,0.82905,0.119916,0.40567,0.960029,0.0391549,0.571456,0.743568,0.669895,0.746098,0.247125,0.32684,0.510034,0.244885,0.924768,0.586388,0.70859,0.181411,0.0968565,0.827881,0.608445,0.561559,0.66169,0.907154,0.108195,0.365436,0.490993,0.974108,0.962995,0.754324,0.0792724,0.986587,0.484959,0.817948,0.4632,0.0107622,0.708259,0.207148,0.926999,0.767872,0.768688,0.709454,0.870754,0.679259,0.782134,0.198768,0.365817,0.882775,0.489567,0.195463,0.935363,0.134051,0.708533,0.29136,0.755087,0.794468,0.509873,0.807666,0.293865,0.29476,0.119255,0.386898,0.628253,0.715485,0.840886,0.0124798,0.58222,0.720705,0.491644,0.363296,0.539754,0.137688,0.53797,0.0566471,0.315852,0.97562,0.18549,0.297697,0.905585,0.0906383,0.890042,0.404708,0.753025,0.940452,0.738593,0.755999,0.31711,0.949561,0.892086,0.237967,0.0568794,0.0275614,0.279967,0.807072,0.179457,0.60413,0.135003,0.211092,0.988269,0.717829,0.483565,0.405962,0.431692,0.64172,0.22949,0.795,0.219557,0.582388,0.974657,0.589467,0.236486,0.499316,0.515745,0.668037,0.672056,0.712362,0.95978,0.53595,0.0757759,0.0490334,0.868254,0.661527,0.459384,0.381591,0.551453,0.913004,0.58317,0.940643,0.43593,0.644613,0.935946,0.597325,0.454172,0.737737,0.822875,0.197798,0.131074,0.393755,0.787988,0.0102544,0.586909,0.703189,0.998789,0.269009,0.418867,0.840089,0.141728,0.538815,0.16458,0.257607,0.885916,0.93591,0.448092,0.341592,0.271371,0.4174,0.169,0.136457,0.976285,0.844491,0.793628,0.650788,0.237828,0.408062,0.564948,0.0645026,0.929771,0.417657,0.606471,0.636329,0.695584,0.0725691,0.239605,0.519665,0.529896,0.643945,0.0765945,0.277654,0.61577,0.711318,0.329744,0.380992,0.0315225,0.0998146,0.199293,0.509045,0.477175,0.89911,0.738925,0.856583,0.839825,0.749955,0.966769,0.161074,0.528784,0.350543,0.538028,0.671142,0.715719,0.199645,0.614555,0.85099,0.478892,0.110593,0.701889,0.0784482,0.451497,0.698335,0.993893,0.0569727,0.659383,0.499084,0.763125,0.157334,0.85807,0.900575,0.461385,0.692711,0.640184,0.504753,0.907318,0.722567,0.980344,0.0820891,0.0796918,0.442124,0.542685,0.492037,0.79175,0.792528,0.833441,0.701155,0.811625,0.654854,0.0042572,0.830073,0.575331,0.349522,0.397193,0.706153,0.416426,0.045135,0.599422,0.861912,0.6277,0.753252,0.0132401,0.454961,0.262993,0.815247,0.200897,0.949694,0.668322,0.415717,0.471392,0.858973,0.507775,0.353024,0.463925,0.701791,0.361365,0.687399,0.233347,0.488943,0.789003,0.800656,0.94442,0.404699,0.396387,0.650161,0.819744,0.280881,0.887867,0.0965099,0.395661,0.397347,0.244198,0.697611,0.0298408,0.932478,0.556209,0.2304,0.528099,0.407117,0.297348,0.032822,0.211331,0.37725,0.0622098,0.387694,0.258363,0.0852157,0.0438045,0.5404,0.521892,0.605592,0.60264,0.916636,0.408573,0.991253,0.578994,0.868136,0.758867,0.909895,0.420635,0.695972,0.152764,0.367235,0.717392,0.294655,0.272058,0.738638,0.345664,0.933114,0.029428,0.615043,0.267764,0.615166,0.0317894,0.511412,0.373,0.593267,0.219675,0.75548,0.0345539,0.861881,0.0240376,0.738584,0.391278,0.00874841,0.309133,0.782646,0.830993,0.259947,0.168945,0.135367,0.638397,0.0654206,0.557248,0.87752,0.954744,0.0873986,0.795806,0.0760311,0.256877,0.8215,0.794883,0.289903,0.205759,0.49961,0.697692,0.501086,0.703382,0.623281,0.0978782,0.367468,0.0703838,0.398601,0.45432,0.00413227,0.581435,0.10507,0.972894,0.0785308,0.754632,0.634285,0.488987,0.0628783,0.83377,0.124105,0.0656247,0.154757,0.605164,0.303954,0.543858,0.083554,0.999843,0.538739,0.214086,0.659051,0.404571,0.925413,0.0463927,0.0232914,0.397575,0.0618318,0.0787839,0.0480958,0.797041,0.78844,0.0428139,0.500437,0.539888,0.0683046,0.626384,0.323418,0.507533,0.795003,|0.796472,0.620094,0.811288,0.702718,0.707399,0.538719,0.817367,0.978001,0.567444,0.247671,0.143111,0.487645,0.456831,0.0940457,0.601531,0.207431,0.514091,0.0250669,0.346276,0.375656,0.17499,0.33257,0.166379,0.855981,0.685096,0.11087,0.332779,0.620221,0.31072,0.628483,0.572682,0.067805,0.597599,0.0856587,0.883552,0.609581,0.173099,0.40845,0.216472,0.411272,0.481581,0.927265,0.885019,0.92424,0.176601,0.250508,0.431092,0.56444,0.9156,0.118831,0.382339,0.636459,0.864884,0.30193,0.150636,0.546908,0.304374,0.796006,0.833468,0.207185,0.418554,0.834284,0.580627,0.232227,0.445044,0.93706,0.00566173,0.0354431,0.241391,0.64916,0.672947,0.245278,0.674937,0.935919,0.742951,0.00820059,0.404965,0.190182,0.238756,0.740349,0.541014,0.174854,0.582578,0.220208,0.90294,0.967956,0.373544,0.3403,0.747676,0.0623509,0.524241,0.0691326,0.356972,0.746004,0.134682,0.400343,0.016473,0.68536,0.710289,0.63201,0.883667,0.21047,0.370083,0.687378,0.410904,0.873427,0.641722,0.948608,0.702577,0.738256,0.567001,0.276946,0.616,0.413947,0.0987213,0.341345,0.332635,0.313247,0.299797,0.929811,0.65763,0.980274,0.300493,0.0760571,0.473542,0.00289899,0.620499,0.803842,0.561811,0.54906,0.428164,0.0628356,0.56134,0.447476,0.506777,0.300748,0.60487,0.0395466,0.937845,0.726958,0.52104,0.543193,0.75437,0.937796,0.430821,0.809829,0.908226,0.171754,0.368717,0.383059,0.939326,0.598476,0.42611,0.300368,0.700985,0.835314,0.512829,0.57285,0.0766196,0.914373,0.0183069,0.935184,0.396402,0.707021,0.849919,0.644593,0.477653,0.643638,0.508575,0.382535,0.695527,0.979292,0.411164,0.103096,0.127171,0.359443,0.337424,0.720831,0.869436,0.751646,0.943967,0.76057,0.610722,0.578659,0.489266,0.401815,0.0638068,0.456212,0.602726,0.172886,0.967423,0.701048,0.827502,0.161733,0.484001,0.997567,0.872877,0.767888,0.388448,0.598283,0.773161,0.149633,0.973868,0.946522,0.651476,0.251458,0.411172,0.840127,0.768233,0.457003,0.738305,0.206628,0.605693,0.435244,0.00360316,0.950038,0.732324,0.256208,0.9963,0.412046,0.335105,0.646329,0.523922,0.29704,0.0708389,0.00592762,0.767473,0.719631,0.840509,0.656661,0.266715,0.0366447,0.130777,0.633102,0.445517,0.825541,0.277183,0.288651,0.00234801,0.140645,0.124909,0.307723,0.452533,0.306542,0.155956,0.658721,0.0254006,0.0508823,0.299627,0.179954,0.517108,0.587606,0.496331,0.302403,0.669019,0.266923,0.287956,0.357053,0.446279,0.91664,0.826125,0.37622,0.908358,0.84415,0.203037,0.619855,0.403582,0.846994,0.177126,0.185784,0.899005,0.890939,0.234304,0.0596356,0.771164,0.212251,0.251516,0.903108,0.424541,0.770639,0.401323,0.0708843,0.742999,0.825516,0.98992,0.461024,0.737746,0.653141,0.330957,0.358292,0.526575,0.19877,0.841294,0.435366,0.506649,0.885705,0.893856,0.155494,0.165903,0.0819005,0.395534,0.537857,0.636167,0.914381,0.931303,0.462397,0.449131,0.504966,0.197544,0.351345,0.0564141,0.529152,0.209722,0.0447275,0.917821,0.36082,0.391411,0.15786,0.351211,0.326823,0.851514,0.209589,0.18517,0.33119,0.0562822,0.479001,0.736285,0.382649,0.814055,0.663973,0.323418,0.758412,0.299071,0.500212,0.782625,0.973464,0.947995,0.262061,0.764351,0.971844,0.227379,0.877436,0.117128,0.0709659,0.859031,0.966553,0.997008,0.236219,0.113345,0.00278676,0.469812,0.344749,0.352591,0.957373,0.412546,0.0768396,0.897128,0.148293,0.16377,0.164268,0.970798,0.707136,0.394013,0.607391,0.108767,0.458476,0.027706,0.781279,0.933517,0.809641,0.784414,0.0118582,0.30213,0.560466,0.189774,0.743125,0.0543694,0.983302,0.164573,0.888974,0.731664,0.171587,0.649831,0.540248,0.619065,0.939495,0.69621,0.717118,0.972576,0.119035,0.432161,0.244435,0.879222,0.609291,0.858127,0.589354,0.110867,0.642713,0.196315,0.388966,0.39342,0.320802,0.967412,0.945697,0.578251,0.83299,0.78975,0.630356,0.652498,0.875374,0.0739456,0.104381,0.213824,0.272158,0.418882,0.652455,0.255771,0.446072,0.579735,0.794592,0.13162,0.758509,0.312057,0.165173,0.32197,0.38247,0.222904,0.620825,0.78695,0.829232,0.856022,0.596345,0.531939,0.535947,0.481853,0.473704,0.445009,0.274729,0.422647,0.000732005,0.330762,0.854916,0.696749,0.360944,0.747271,0.204793,0.699989,0.452926,0.643423,0.0368971,0.341457,0.093103,0.240797,0.602604,0.232358,0.283442,0.173027,0.112509,0.276173,0.236576,0.580646,0.796188,0.96796,0.266156,0.266097,0.982163,0.54361,0.0260724,0.818975,0.965113,0.884743,0.499402,0.826558,0.862854,0.480515,0.242326,0.598979,0.687176,0.696124,0.0823377,0.0523816,0.878124,0.251858,0.578635,0.55777,0.844045,0.611535,0.70774,0.259997,0.913673,0.0757843,0.634677,0.43813,0.171165,0.698485,0.156533,0.769428,0.955466,0.299924,0.702439,0.559729,0.603185,0.372998,0.391513,0.899949,0.255577,0.78742,0.460017,0.648979,0.901002,0.0174665,0.294108,0.417032,0.0270653,0.489537,0.993766,0.946514,0.978347,0.873662,0.635991,0.143708,0.352151,0.0374804,0.606143,0.125015,0.0759323,0.404505,0.987993,0.498273,0.802684,0.162006,0.10625,0.855205,0.791811,0.226083,0.960032,0.161602,0.589888,0.935698,0.698477,0.471246,0.392692,0.461356,0.16073,0.00743538,0.204793,0.223165,0.489546,0.846357,0.992518,0.904889,0.727137,0.509419,0.62488,0.468536,0.201417,0.463859,0.846309,0.664614,0.798599,0.735524,0.0494263,0.394758,0.274414,0.544871,0.201212,0.568513,0.247581,0.106408,0.290746,0.0159869,0.712537,0.598789,0.376744,0.977197,0.955544,0.376816,0.476037,0.594603,0.823925,0.725349,0.507037,0.967472,0.0540951,0.937144,0.475372,0.612181,0.121791,0.185566,0.320011,0.447983,0.000480413,0.209432,0.610249,0.216923,0.00319356,0.578063,0.0242806,0.40716,0.841655,0.0980526,0.957941,0.166159,0.922116,0.527939,0.26638,0.719379,0.605088,0.350733,0.462077,0.754909,0.133449,0.262915,0.629704,0.0219176,0.618392,0.206472,0.548015,0.167827,0.704076,0.241371,0.560336,0.593288,0.308475,0.427315,0.969574,0.249761,0.0393156,0.877853,0.381856,0.551636,0.426039,0.971125,0.945638,0.0905586,0.206177,0.228546,0.456469,0.114403,0.83867,0.288547,0.601515,0.762809,0.75822,0.665271,0.231072,0.11015,0.0544858,0.338553,0.531104,0.433368,0.385349,0.276663,0.166176,0.0117609,0.712947,0.104138,0.576134,0.67204,0.50076,0.3771,0.340973,0.138165,0.590279,0.832374,0.845982,0.112258,0.181559,0.0580605,0.89072,0.156485,0.88959,0.118583,0.49249,0.382356,0.208997,0.367695,0.486132,0.917236,0.711883,0.121851,0.441852,0.919948,0.582766,0.190749,0.129337,0.0476125,0.582737,0.912846,0.385694,0.520472,0.648644,0.901284,0.27763,0.776923,0.0229325,0.625679,0.88852,0.887221,0.415298,0.981324,0.041297,0.563106,0.959142,0.932359,0.151617,0.107652,0.0322446,0.990303,0.752356,0.292495,0.938431,0.839831,0.462057,0.351162,0.686817,0.941378,0.852359,0.395228,0.24828,0.466956,0.762385,0.883915,0.950077,0.734835,0.713389,0.75109,0.99657,0.234152,0.283086,0.492032,0.40254,0.81378,0.757096,0.243484,0.89755,0.697079,0.00227702,0.649608,0.339812,0.925218,0.233885,0.411709,0.242224,0.225772,0.130434,0.0783264,0.333838,0.939541,0.724583,0.742508,0.421372,0.856423,0.677909,0.575133,0.361471,0.626027,0.752351,0.102232,0.158399,0.348803,0.342169,0.767865,0.151709,0.17074,0.162818,0.0771414,0.725839,0.740773,0.344314,0.249811,0.733673,0.909957,0.508136,0.834161,0.404028,0.266244,0.702379,0.364331,0.813597,0.576054,0.197847,0.0769191,0.379418,0.998455,0.309535,0.506113,0.664541,0.983713,0.116866,0.174249,0.707839,0.407941,0.873612,0.346329,0.259542,0.976418,0.61912,0.0759976,0.519714,0.0900288,0.381822,0.543749,0.176241,0.878878,0.299482,0.0727818,0.9305,0.901179,0.288259,0.350751,0.818778,0.665672,0.771972,0.327151,0.791181,0.994883,0.991297,0.169152,0.373513,0.832053,0.905545,0.848164,0.924819,0.293981,0.370252,0.610012,0.137145,0.492668,0.51339,0.794792,0.921986,0.506846,0.129012,0.716997,0.593168,0.507328,0.0226783,0.152623,0.70316,0.780713,0.846606,0.497248,0.388548,0.631923,0.710631,0.271716,0.926998,0.748419,0.948559,0.432416,0.127777,0.814899,0.777437,0.334307,0.384652,0.0528315,0.0678082,0.819177,0.0878197,0.442859,0.0505504,0.153459,0.203576,0.216044,0.502436,0.72275,0.370118,0.527598,0.338249,0.540928,0.674432,0.408689,0.588464,0.052025,0.49776,0.0229689,0.170263,0.0442436,0.0575485,0.136102,0.0546953,0.394352,0.124879,0.0449915,0.494884,0.651814,0.307667,0.870459,0.786508,0.455606,0.104467,0.100436,0.519954,0.724688,0.244227,0.0868344,0.981129,0.32805,0.215531,0.752225,0.823132,0.537292,0.796588,0.142049,0.426425,0.590113,0.135191,0.797895,0.880491,0.365119,0.556458,0.497621,0.669779,0.440457,0.618441,0.702531,0.915437,0.705098,0.139578,0.600959,0.87146,0.637901,0.694542,0.383314,0.483857,0.373843,0.171544,0.181939,0.466344,0.798276,0.866733,0.819043,0.305317,0.530337,0.814606,0.107903,0.349122,0.959397,0.920017,0.274976,0.942874,0.785088,0.202143,0.693611,0.120061,0.109789,0.932939,0.581274,0.88692,0.498467,0.408552,0.224322,0.527364,0.237566,0.672953,0.618467,0.145488,0.0240793,0.79232,0.682993,0.428597,0.983606,0.055573,0.174387,0.509879,0.988077,0.531987,0.141938,0.358666,0.79364,0.712626,0.0492181,0.742407,0.25772,0.85085,0.490459,0.329159,0.3064,0.631666,0.919348,0.749553,0.606705,0.866225,0.522483,0.681989,0.299071,0.172154,0.202627,0.906615,0.504395,0.165789,0.12997,0.878836,0.287719,0.28445,0.402808,0.783605,0.661102,0.159851,|0.770105,0.0886584,0.470048,0.121244,0.235759,0.441171,0.658885,0.0420266,0.537318,0.762525,0.817249,0.347844,0.535008,0.453454,0.250109,0.956813,0.767822,0.0618307,0.978963,0.405535,0.934751,0.30053,0.369883,0.806016,0.0136791,0.469979,0.402348,0.0511497,0.874196,0.105811,0.597609,0.578626,0.0758656,0.115444,0.288757,0.217394,0.459285,0.71263,0.942344,0.832864,0.294792,0.644788,0.119822,0.249089,0.104536,0.819637,0.410901,0.235188,0.0833762,0.598099,0.607183,0.41363,2.41399e-05,0.308766,0.0981622,0.453849,0.220749,0.636961,0.551631,0.0119386,0.455656,0.229037,0.252707,0.814437,0.851448,0.410052,0.502876,0.760691,0.751712,0.0835453,0.364703,0.0637314,0.570205,0.254641,0.908463,0.297477,0.232194,0.558168,0.192526,0.554876,0.455016,0.152556,0.0101322,0.644144,0.409063,0.739378,0.416308,0.0604436,0.822325,0.930521,0.255377,0.155126,0.245345,0.701275,0.932638,0.836876,0.0837153,0.142026,0.895184,0.68858,0.740822,0.134389,0.0342668,0.326779,0.482809,0.636359,0.858925,0.20335,0.384905,0.998806,0.312606,0.0748675,0.0316649,0.0962735,0.733293,0.918028,0.459823,0.201643,0.281247,0.368426,0.48699,0.75388,0.285806,0.58534,0.580581,0.164276,0.594135,0.757204,0.298532,0.527851,0.978303,0.719491,0.779946,0.920246,0.126776,0.407958,0.979302,0.741596,0.560295,0.254001,0.877441,0.823164,0.561901,0.861625,0.449037,0.860085,0.0297731,0.21838,0.95737,0.582527,0.482884,0.671571,0.127021,0.876591,0.768867,0.0152402,0.946037,0.676419,0.0960701,0.679985,0.0649707,0.839521,0.766624,0.314869,0.585988,0.362396,0.906238,0.0778965,0.0415059,0.594779,0.623418,0.201602,0.0539495,0.407702,0.889346,0.0980078,0.428185,0.372942,0.441986,0.480678,0.674248,0.385439,0.652555,0.507685,0.594244,0.78332,0.328152,0.343136,0.285892,0.951623,0.205078,0.579827,0.947007,0.29629,0.0899746,0.371354,0.923852,0.902594,0.592224,0.359215,0.400649,0.877177,0.495773,0.196378,0.133926,0.874418,0.0949916,0.0707472,0.456734,0.622431,0.492715,0.798991,0.758693,0.871566,0.283252,0.253801,0.701534,0.293644,0.492166,0.183644,0.662668,0.82154,0.465264,0.7648,0.997783,0.552796,0.156996,0.446315,0.108595,0.386726,0.183624,0.697893,0.632051,0.770427,0.00585997,0.786483,0.545257,0.563566,0.340227,0.279047,0.732144,0.453967,0.637911,0.785143,0.648027,0.0769039,0.696118,0.27221,0.428017,0.115978,0.919147,0.808093,0.725855,0.761909,0.00565803,0.462205,0.0990468,0.28797,0.723998,0.469887,0.327935,0.0411183,0.207455,0.73215,0.365888,0.464619,0.382033,0.273444,0.963719,0.421292,0.0046801,0.246079,0.443233,0.441203,0.987953,0.0537621,0.620078,0.593694,0.99974,0.0216703,0.522275,0.442834,0.909018,0.937809,0.18108,0.198042,0.699506,0.443922,0.402442,0.400841,0.586505,0.524046,0.714723,0.300566,0.13827,0.165092,0.0267216,0.693816,0.285908,0.0511007,0.367724,0.708468,0.83393,0.597529,0.677987,0.14963,0.441566,0.538681,0.464732,0.934812,0.506823,0.48576,0.207954,0.568063,0.790211,0.111957,0.221725,0.413555,0.122343,0.981489,0.0640709,0.44876,0.401114,0.595719,0.838203,0.730929,0.183465,0.861326,0.124106,0.389033,0.220289,0.177484,0.369517,0.389677,0.801532,0.597116,0.322858,0.811232,0.664013,0.376989,0.425338,0.229353,0.745949,0.351655,0.705042,0.820066,0.0462136,0.751408,0.204476,0.521528,0.61861,0.0490556,0.982542,0.288367,0.149264,0.302803,0.478535,0.639754,0.0647985,0.190014,0.9323,0.351518,0.0331576,0.657413,0.542499,0.562893,0.68585,0.225473,0.680341,0.0352563,0.582126,0.390035,0.272197,0.0544492,0.160879,0.393361,0.250446,0.279918,0.632965,0.77777,0.674312,0.66543,0.950176,0.790315,0.103926,0.751465,0.436278,0.55265,0.894128,0.413368,0.759175,0.986901,0.751648,0.154803,0.482571,0.380823,0.961858,0.360258,0.300864,0.0492104,0.911237,0.317087,0.0310592,0.517412,0.353996,0.459475,0.0344673,0.206462,0.574254,0.157064,0.0659525,0.590937,0.744796,0.726559,0.0238863,0.685388,0.357067,0.853798,0.81449,0.674899,0.721659,0.470016,0.772236,0.684624,0.896712,0.498095,0.894996,0.9392,0.281313,0.922388,0.484171,0.513049,0.999811,0.674063,0.530506,0.882557,0.398468,0.112391,0.194882,0.123059,0.687077,0.722956,0.025269,0.624615,0.230225,0.0627913,0.953087,0.78663,0.44308,0.441861,0.64854,0.615798,0.8016,0.393124,0.79709,0.993531,0.428348,0.917814,0.802004,0.518379,0.409269,0.737806,0.15718,0.167097,0.65573,0.88548,0.677091,0.601492,0.487204,0.151214,0.945871,0.263786,0.466795,0.268438,0.407471,0.937398,0.820634,0.323691,0.0871331,0.540858,0.262217,0.964836,0.537425,0.23903,0.592192,0.593533,0.8117,0.117,0.0140532,0.302904,0.0287624,0.0966882,0.233115,0.199665,0.141777,0.257794,0.538319,0.835724,0.425664,0.361682,0.450713,0.605094,0.0667098,0.444997,0.786166,0.695668,0.182505,0.614176,0.490813,0.678477,0.78151,0.10719,0.490041,0.193895,0.0121511,0.193178,0.918395,0.0477776,0.594815,0.041513,0.468409,0.219392,0.30342,0.711734,0.310783,0.748221,0.731989,0.0830629,0.20329,0.124985,0.0548031,0.989555,0.170996,0.674497,0.520602,0.323165,0.0494904,0.66701,0.258751,0.791778,0.794935,0.121298,0.877724,0.539502,0.202284,0.485571,0.517532,0.365637,0.793535,0.564818,0.322589,0.107566,0.00307924,0.223653,0.122617,0.215835,0.378388,0.0005126,0.548642,0.767318,0.191725,0.627049,0.0335671,0.596547,0.412529,0.283424,0.141691,0.618605,0.967954,0.356906,0.800446,0.283953,0.359741,0.806338,0.700768,0.479417,0.843521,0.428284,0.923422,0.648559,0.45763,0.638174,0.154374,0.555062,0.693112,0.78322,0.660896,0.778323,0.701791,0.944746,0.312489,0.264384,0.012692,0.525456,0.103534,0.992953,0.0308702,0.362173,0.681549,0.819647,0.68521,0.375036,0.940471,0.372264,0.147478,0.846501,0.324962,0.175448,0.629688,0.326793,0.15724,0.355869,0.912896,0.268736,0.409645,0.669222,0.489103,0.6017,0.545864,0.694648,0.78506,0.729817,0.506209,0.497478,0.940278,0.555068,0.622411,0.628724,0.992914,0.779392,0.321933,0.679233,0.370372,0.833911,0.231488,0.146978,0.607445,0.719767,0.941971,0.84821,0.53954,0.307811,0.800316,0.0986839,0.614674,0.252989,0.664181,0.546448,0.95316,0.198676,0.191382,0.550807,0.787769,0.825792,0.277074,0.320726,0.0274357,0.75257,0.0323871,0.322934,0.675002,0.740989,0.414216,0.859217,0.8649,0.365039,0.106795,0.268937,0.923576,0.404835,0.263466,0.932921,0.596521,0.580303,0.271431,0.213107,0.0135698,0.62734,0.508461,0.313886,0.945475,0.922661,0.177045,0.317122,0.364142,0.263,0.123122,0.620047,0.742401,0.708954,0.124604,0.641852,0.689822,0.690117,0.169951,0.875971,0.892102,0.675789,0.6136,0.794948,0.798056,0.952371,0.067799,0.642408,0.526142,0.569516,0.372605,0.508323,0.236131,0.208453,0.565315,0.626821,0.420092,0.173058,0.269479,0.848376,0.600086,0.236403,0.804793,0.791991,0.409515,0.63638,0.847237,0.106941,0.982886,0.495675,0.522463,0.211397,0.00935352,0.961623,0.856019,0.516912,0.0975656,0.0464363,0.971854,0.989882,0.690075,0.2327,0.108886,0.999673,0.557337,0.287292,0.141026,0.632945,0.148733,0.00489801,0.976126,0.97373,0.56627,0.998012,0.771852,0.618426,0.096611,0.719794,0.746786,0.913957,0.53522,0.495839,0.102734,0.973699,0.95233,0.961195,0.790762,0.373258,0.730553,0.980668,0.488942,0.433156,0.493293,0.61766,0.428541,0.972252,0.468343,0.611664,0.344351,0.525708,0.104693,0.570652,0.956282,0.908564,0.546564,0.0339748,0.0467405,0.225611,0.600673,0.472354,0.876116,0.407468,0.825807,0.241912,0.510393,0.452539,0.658815,0.0645866,0.203846,0.576733,0.182953,0.152107,0.447317,0.380817,0.116943,0.134763,0.572648,0.866482,0.519609,0.832966,0.401815,0.238334,0.562348,0.777675,0.688771,0.678888,0.872971,0.804263,0.274398,0.156506,0.470477,0.719981,0.288593,0.520735,0.739756,0.244908,0.587881,0.0885175,0.0857522,0.740893,0.390306,0.9962,0.984408,0.273495,0.803861,0.676806,0.428038,0.917499,0.61508,0.598293,0.486362,0.895649,0.823694,0.635498,0.299464,0.525094,0.969515,0.770815,0.905223,0.183189,0.965302,0.0113402,0.540527,0.157986,0.209307,0.87528,0.18939,0.0272838,0.0578769,0.856962,0.963436,0.825157,0.924831,0.51604,0.987694,0.0136585,0.304525,0.75174,0.180374,0.152468,0.218922,0.711784,0.812907,0.401475,0.92042,0.526986,0.582324,0.0281735,0.189747,0.517319,0.867001,0.343183,0.250101,0.25219,0.569441,0.780709,0.499944,0.286039,0.0492205,0.0577747,0.788409,0.622014,0.957829,0.545527,0.848256,0.613196,0.683217,0.807852,0.600985,0.302106,0.0298501,0.0980784,0.978477,0.4725,0.139423,0.620219,0.89918,0.960189,0.112005,0.438067,0.824355,0.430422,0.679957,0.108327,0.63389,0.850322,0.366457,0.218206,0.075267,0.306482,0.625934,0.770729,0.471312,0.930034,0.366135,0.831322,0.652305,0.794976,0.928902,0.0864805,0.0260682,0.906047,0.536803,0.797352,0.320963,0.398758,0.681718,0.45172,0.14608,0.00136209,0.37053,0.427225,0.228826,0.0978457,0.720679,0.136191,0.349864,0.162613,0.574135,0.931713,0.577979,0.465055,0.367741,0.255169,0.3424,0.908983,0.491613,0.747345,0.211339,0.423311,0.689341,0.718195,0.285941,0.945712,0.63683,0.397699,0.0979388,0.224862,0.863552,0.970258,0.142509,0.819152,0.226047,0.419289,0.48743,0.701832,0.514113,0.325025,0.946934,0.52497,0.589169,0.0998624,0.729184,0.089816,0.756023,0.801791,0.964335,0.967135,0.808912,0.221128,0.0242754,0.680521,0.349572,0.767993,0.242979,0.793716,0.917492,0.794479,0.220556,0.958651,0.453331,0.781912,0.328761,0.751972,|0.452885,0.545197,0.835542,0.221332,0.723635,0.264,0.0408351,0.53802,0.831465,0.216162,0.322253,0.25909,0.935873,0.961104,0.0492061,0.607269,0.579726,0.45848,0.652317,0.892358,0.240729,0.404503,0.285725,0.972319,0.743977,0.314132,0.781602,0.702086,0.578146,0.862364,0.813209,0.0564486,0.533377,0.764486,0.346377,0.301274,0.6264,0.683711,0.440713,0.381445,0.882127,0.553843,0.234079,0.190274,0.0508954,0.335712,0.575427,0.606584,0.778653,0.337177,0.581272,0.912637,0.768876,0.759603,0.373405,0.809508,0.50362,0.583779,0.790987,0.470914,0.995958,0.853167,0.76219,0.869852,0.388519,0.172177,0.866144,0.231696,0.513367,0.958515,0.206008,0.354762,0.255764,0.800272,0.0536082,0.0524879,0.970537,0.20257,0.536928,0.529278,0.867681,0.859622,0.820619,0.600354,0.943658,0.532536,0.397246,0.0417675,0.00134283,0.0959366,0.345668,0.333067,0.491086,0.407761,0.955827,0.85036,0.186561,0.0829768,0.691257,0.547063,0.234692,0.530192,0.78824,0.788054,0.548674,0.582279,0.149046,0.316975,0.502832,0.454378,0.0519492,0.336508,0.826753,0.97949,0.766039,0.288308,0.119261,0.170501,0.655684,0.251031,0.406442,0.420238,0.668,0.0971622,0.421082,0.603685,0.00725579,0.673608,0.905269,0.546126,0.597926,0.0172473,0.546994,0.0557972,0.307546,0.906935,0.236213,0.0745897,0.141513,0.53581,0.734778,0.68575,0.951969,0.797773,0.0182517,0.540685,0.988904,0.746279,0.297586,0.959302,0.692975,0.505168,0.263973,0.805933,0.996559,0.152084,0.760534,0.620917,0.498478,0.920976,0.0593628,0.429727,0.962793,0.88381,0.845944,0.806649,0.710488,0.356475,0.814071,0.860237,0.210274,0.899204,0.247408,0.568136,0.475554,0.681891,0.414412,0.225268,0.850308,0.996253,0.893056,0.639587,0.467757,0.5747,0.480279,0.0476179,0.397043,0.862041,0.120019,0.838346,0.678567,0.659078,0.0689793,0.556711,0.0501052,0.944301,0.622043,0.393073,0.231058,0.947153,0.145954,0.438144,0.871848,0.0750293,0.215433,0.509486,0.882771,0.331858,0.354644,0.461361,0.561019,0.954529,0.673631,0.0578669,0.546064,0.344603,0.31738,0.287461,0.965446,0.892098,0.422113,0.276926,0.150774,0.537439,0.0586934,0.336347,0.59757,0.315442,0.606025,0.323984,0.368458,0.84384,0.674348,0.937655,0.977527,0.198973,0.206994,0.765007,0.305061,0.614068,0.598912,0.861582,0.39934,0.345282,0.590575,0.721092,0.648236,0.700641,0.714106,0.415144,0.443159,0.39891,0.702879,0.660099,0.806871,0.366304,0.724045,0.992279,0.527036,0.825876,0.349765,0.267595,0.448616,0.78298,0.248924,0.560041,0.382467,0.878108,0.313074,0.419664,0.657503,0.168027,0.0584617,0.643203,0.0851765,0.127737,0.402583,0.593619,0.504359,0.221378,0.501671,0.365937,0.715533,0.760256,0.0665028,0.870567,0.284196,0.125979,0.748688,0.107009,0.503399,0.602754,0.917879,0.691804,0.125932,0.093326,0.0850859,0.547913,0.363277,0.732158,0.220661,0.816587,0.644455,0.858861,0.187304,0.305614,0.00781316,0.0216244,0.364699,0.542422,0.620015,0.491617,0.194705,0.26173,0.974307,0.945103,0.762823,0.606205,0.752023,0.541206,0.963415,0.689402,0.526389,0.676765,0.942029,0.682184,0.238704,0.832017,0.365642,0.487308,0.774202,0.183792,0.94084,0.578271,0.59475,0.130435,0.0612814,0.235603,0.363088,0.0838179,0.916739,0.55719,0.593701,0.485043,0.316715,0.679351,0.871331,0.0588028,0.966763,0.0760225,0.666207,0.00514245,0.876911,0.383543,0.972729,0.281686,0.632518,0.801196,0.661879,0.85886,0.201173,0.839832,0.710113,0.26391,0.883347,0.576514,0.344995,0.992523,0.252623,0.236127,0.531552,0.906153,0.101222,0.928944,0.758619,0.820813,0.912678,0.39103,0.583654,0.00228357,0.674277,0.444349,0.519292,0.628093,0.627239,0.976833,0.138839,0.432653,0.102641,0.747327,0.0026263,0.922204,0.101389,0.214953,0.493467,0.260556,0.225553,0.388648,0.534215,0.149596,0.0444516,0.858171,0.35065,0.97119,0.715399,0.171103,0.750188,0.374523,0.0558734,0.0446587,0.323735,0.0599852,0.503752,0.092084,0.580377,0.960875,0.840163,0.0734132,0.703703,0.14138,0.960221,0.0997954,0.0326394,0.869062,0.467783,0.677968,0.392954,0.850696,0.127571,0.503527,0.25069,0.512026,0.981085,0.119594,0.560544,0.216493,0.864953,0.0985371,0.762208,0.705971,0.622354,0.898127,0.982125,0.228485,0.436195,0.899026,0.443221,0.246015,0.112,0.444016,0.628279,0.529844,0.364318,0.80913,0.946044,0.00450063,0.585504,0.97207,0.844628,0.263828,0.335912,0.0915227,0.362213,0.0906085,0.67655,0.344493,0.0302625,0.936284,0.758369,0.282678,0.250502,0.903074,0.779865,0.876746,0.312078,0.278704,0.639523,0.232821,0.888664,0.47404,0.0449433,0.95774,0.222915,0.474353,0.695756,0.62981,0.963223,0.208358,0.189341,0.642581,0.746363,0.259755,0.383284,0.176429,0.249334,0.868458,0.278273,0.468929,0.798405,0.853522,0.698772,0.537643,0.510849,0.587521,0.726647,0.515092,0.742433,0.139504,0.0120639,0.687764,0.596275,0.402236,0.89655,0.262528,0.569502,0.0995156,0.825633,0.505399,0.0592095,0.0496005,0.489307,0.841915,0.163154,0.697258,0.350122,0.981594,0.840263,0.207588,0.543312,0.962502,0.995358,0.990392,0.205619,0.793116,0.313689,0.187521,0.583816,0.862931,0.291417,0.489233,0.882475,0.53204,0.487267,0.0302907,0.488571,0.00564617,0.495611,0.116301,0.509876,0.216517,0.982949,0.234674,0.720914,0.755956,0.239426,0.233453,0.338522,0.527865,0.844863,0.685717,0.387976,0.626883,0.684195,0.658079,0.0753785,0.11752,0.42289,0.366585,0.140398,0.254537,0.128034,0.0764912,0.664896,0.774709,0.88868,0.647435,0.817534,0.0963913,0.146768,0.178889,0.930409,0.143042,0.839593,0.347882,0.549822,0.377136,0.989757,0.285428,0.555923,0.402194,0.0454366,0.686137,0.692018,0.867078,0.42677,0.0467817,0.93432,0.739106,0.395051,0.439014,0.112215,0.430177,0.0540354,0.986604,0.0141746,0.0652878,0.217842,0.721029,0.903987,0.0499718,0.603595,0.977695,0.00407422,0.0901608,0.521848,0.540278,0.0990277,0.129031,0.596967,0.113899,0.887339,0.40056,0.203118,0.948738,0.259613,0.608684,0.917245,0.410174,0.739623,0.511562,0.988176,0.594538,0.158613,0.934588,0.521056,0.572426,0.550811,0.0289733,0.393297,0.364847,0.94186,0.829315,0.310503,0.311273,0.768721,0.0443319,0.606178,0.609876,0.165117,0.507796,0.201197,0.805321,0.328192,0.74527,0.660742,0.10276,0.384285,0.0973332,0.920985,0.158384,0.626837,0.724917,0.460244,0.748227,0.537737,0.593043,0.024083,0.881995,0.947059,0.00617337,0.522365,0.0549612,0.39231,0.561907,0.891437,0.581721,0.329844,0.664789,0.0291029,0.854897,0.427981,0.42091,0.373129,0.880287,0.749263,0.827991,0.29786,0.818823,0.794605,0.00487345,0.119226,0.528695,0.871223,0.975409,0.350759,0.412939,0.153667,0.324174,0.404654,0.993794,0.568276,0.946906,0.236955,0.393549,0.113803,0.489479,0.379379,0.0721564,0.165889,0.171393,0.891342,0.491234,0.852558,0.106848,0.677378,0.00335693,0.500208,0.297347,0.570759,0.0873873,0.343588,0.573715,0.0438886,0.667854,0.746478,0.509916,0.899772,0.576914,0.520324,0.808683,0.411507,0.00837958,0.209831,0.79698,0.527205,0.518892,0.728962,0.077872,0.650964,0.014163,0.863475,0.0657911,0.694473,0.151621,0.439002,0.810661,0.26492,0.0135543,0.990117,0.0152221,0.862156,0.494501,0.248644,0.803395,0.299196,0.293732,0.228252,0.0397785,0.502715,0.99942,0.293876,0.0576813,0.121647,0.850128,0.937774,0.460146,0.718622,0.401895,0.83613,0.520459,0.101818,0.277054,0.297389,0.930248,0.8167,0.132391,0.343179,0.696692,0.0864317,0.622846,0.413339,0.730928,0.535666,0.74011,0.592069,0.345141,0.524571,0.164521,0.111855,0.662901,0.131741,0.47378,0.35757,0.441115,0.932334,0.561923,0.903495,0.200494,0.880286,0.523402,0.0760269,0.204711,0.169728,0.502489,0.951709,0.368201,0.935084,0.432952,0.315225,0.758816,0.302123,0.304744,0.437205,0.31542,0.0154076,0.734846,0.0952196,0.539645,0.488001,0.398751,0.187742,0.970392,0.846101,0.405631,0.433008,0.120987,0.132853,0.00629687,0.84822,0.707255,0.113264,0.0878065,0.485781,0.546505,0.621939,0.489047,0.153327,0.35173,0.231213,0.840526,0.95114,0.612382,0.108219,0.632779,0.606179,0.613544,0.724491,0.964113,0.955953,0.398879,0.458491,0.130962,0.248468,0.930571,0.74682,0.94619,0.534881,0.094793,0.775785,0.289726,0.208771,0.786492,0.791595,0.099523,0.309895,0.235459,0.893328,0.201392,0.506954,0.43921,0.523228,0.206399,0.182078,0.0523797,0.151404,0.695155,0.157409,0.655906,0.182913,0.660038,0.564955,0.746011,0.315948,0.66683,0.918844,0.329534,0.681649,0.432611,0.0901989,0.0233545,0.327645,0.197787,0.528718,0.918999,0.913369,0.44795,0.165049,0.657076,0.562758,0.922295,0.0797789,0.915509,0.573062,0.163547,0.315055,0.844159,0.134602,0.407616,0.18801,0.539888,0.713804,0.21453,0.609993,0.306367,0.880491,0.477828,0.457415,0.512996,0.83291,0.0463287,0.876878,0.17474,0.023026,0.47684,0.424954,0.263412,0.353753,0.385892,0.965302,0.0635117,0.896348,0.565139,0.776179,0.100527,0.407153,0.255107,0.499767,0.348497,0.637123,0.205922,0.188818,0.708229,0.557875,0.71149,0.137553,0.147499,0.64671,0.224924,0.326419,0.615994,0.399767,0.567622,0.0122971,0.115355,0.929799,0.962471,0.103895,0.418624,0.670619,0.66806,0.786132,0.893564,0.249301,0.942331,0.661651,0.408811,0.849529,0.659084,0.836865,0.768926,0.992561,0.262327,0.820618,0.175147,0.367803,0.343767,0.0471616,0.19834,0.124455,0.824895,0.878401,0.40772,0.703315,0.695547,0.150128,0.529691,0.266586,0.836703,0.906027,0.552724,0.0481563,0.700128,0.730258,0.330731,0.443243,0.861471,0.846364,0.199909,0.118457,0.392587,|0.0825221,0.978572,0.543685,0.95954,0.00430769,0.807501,0.923039,0.781223,0.858898,0.776734,0.686363,0.276884,0.991019,0.84726,0.577582,0.179969,0.0862024,0.770878,0.684302,0.0876251,0.438056,0.852295,0.839906,0.420124,0.214361,0.132506,0.739868,0.192254,0.553198,0.479224,0.603321,0.608303,0.540274,0.260993,0.571362,0.673185,0.921723,0.117364,0.10929,0.648369,0.541424,0.510498,0.170798,0.422813,0.0768205,0.805409,0.767135,0.8384,0.22639,0.0297819,0.373257,0.381588,0.856315,0.286045,0.14922,0.5767,0.988531,0.0949733,0.207182,0.710163,0.38653,0.714925,0.920516,0.0230559,0.0633494,0.796946,0.308339,0.964101,0.604436,0.995808,0.769602,0.519982,0.941717,0.774391,0.0256457,0.804649,0.912309,0.368532,0.900699,0.472783,0.656079,0.506779,0.8947,0.184603,0.554221,0.633134,0.823708,0.811621,0.842156,0.696755,0.392009,0.0756122,0.28736,0.580219,0.889529,0.437783,0.672059,0.465065,0.730237,0.890144,0.961062,0.429717,0.943465,0.547081,0.0938022,0.0776235,0.64005,0.783603,0.188186,0.926383,0.750055,0.482589,0.301648,0.358988,0.85154,0.268923,0.729982,0.506158,0.375095,0.0302167,0.443119,0.674839,0.949475,0.421921,0.47921,0.00361842,0.375895,0.172174,0.545829,0.0526482,0.838111,0.801747,0.657387,0.358705,0.391712,0.804628,0.0628631,0.418516,0.0181323,0.210384,0.579743,0.618194,0.371738,0.581374,0.718365,0.639802,0.0672325,0.523449,0.242836,0.385402,0.955701,0.940103,0.0992069,0.257714,0.439699,0.887954,0.576688,0.203624,0.385583,0.523484,0.731106,0.641838,0.853607,0.539053,0.293049,0.727369,0.232274,0.952756,0.459002,0.915831,0.528802,0.69482,0.857121,0.246386,0.442386,0.652689,0.367822,0.91712,0.289497,0.241397,0.474827,0.0381123,0.0107616,0.662526,0.877348,0.0172915,0.230405,0.778856,0.538387,0.186186,0.276621,0.623702,0.479726,0.0394313,0.694825,0.587867,0.111694,0.599963,0.258663,0.457238,0.897741,0.304198,0.265764,0.257335,0.777731,0.75915,0.77405,0.960462,0.373584,0.590606,0.678038,0.328351,0.963112,0.825651,0.423824,0.250459,0.71344,0.817149,0.654823,0.567138,0.430217,0.362881,0.466416,0.697598,0.213348,0.207034,0.222466,0.828714,0.537392,0.276042,0.356427,0.0020172,0.142695,0.624776,0.635301,0.731317,0.525689,0.0151007,0.821218,0.980769,0.683164,0.134433,0.174862,0.449959,0.523754,0.577127,0.54309,0.851756,0.0933018,0.768994,0.0888169,0.557985,0.446503,0.232505,0.119078,0.504091,0.550933,0.685545,0.917845,0.419551,0.593556,0.223701,0.547439,0.232124,0.0480626,0.567672,0.0375449,0.383875,0.895671,0.162951,0.382943,0.208083,0.00592005,0.624222,0.567772,0.221051,0.00476944,0.999217,0.228427,0.631913,0.377445,0.215367,0.769346,0.198991,0.0948924,0.93878,0.721003,0.801861,0.6648,0.859164,0.330788,0.801746,0.484667,0.588074,0.920873,0.354684,0.870918,0.661527,0.868188,0.135711,0.631151,0.863213,0.53303,0.502321,0.595922,0.481397,0.761686,0.867904,0.439568,0.350753,0.0561993,0.161301,0.363844,0.252389,0.544947,0.0347615,0.796962,0.38148,0.652333,0.27068,0.716012,0.748097,0.0647326,0.502949,0.0185295,0.737098,0.287779,0.544051,0.130133,0.547496,0.391482,0.283436,0.746835,0.0621108,0.16448,0.624178,0.247405,0.39749,0.947773,0.4695,0.102809,0.406271,0.909681,0.506914,0.103489,0.369911,0.392558,0.0977221,0.815978,0.624229,0.880316,0.249798,0.42801,0.29738,0.091,0.481503,0.237307,0.140279,0.542978,0.535576,0.744528,0.865416,0.325106,0.421345,0.773545,0.813017,0.270361,0.123624,0.290571,0.573457,0.0231407,0.37496,0.195657,0.204353,0.0584819,0.56928,0.177964,0.316618,0.102407,0.583721,0.373745,0.363987,0.248321,0.0551074,0.758127,0.243517,0.246648,0.932261,0.0166715,0.944965,0.404755,0.412988,0.092617,0.679579,0.386601,0.509808,0.337993,0.117065,0.402515,0.0970286,0.413344,0.469619,0.69779,0.166178,0.0557261,0.60745,0.481245,0.428441,0.0483764,0.485598,0.807856,0.951172,0.12839,0.198096,0.495288,0.457616,0.494844,0.415637,0.451301,0.586721,0.317792,0.799237,0.163046,0.984953,0.218787,0.103361,0.232037,0.426845,0.264319,0.223539,0.784423,0.741315,0.639229,0.477212,0.576095,0.388194,0.775526,0.72208,0.305486,0.589604,0.604084,0.527344,0.179919,0.619075,0.592155,0.896823,0.751319,0.720419,0.00547522,0.730214,0.130509,0.29294,0.372014,0.37121,0.490026,0.756847,0.672561,0.471575,0.811162,0.246603,0.980416,0.863258,0.80683,0.781628,0.404567,0.0992444,0.922172,0.00279385,0.53192,0.185473,0.234417,0.72489,0.377468,0.456665,0.674374,0.0543821,0.615486,0.448317,0.878662,0.236072,0.577365,0.37641,0.628083,0.61016,0.548307,0.219377,0.768288,0.607556,0.636529,0.0863608,0.729516,0.620366,0.40557,0.438102,0.979064,0.105693,0.203647,0.297965,0.368373,0.253525,0.827176,0.121228,0.323548,0.505147,0.219136,0.201035,0.7365,0.69624,0.464064,0.693452,0.117744,0.520487,0.35715,0.902463,0.996901,0.554811,0.489973,0.153605,0.284403,0.637735,0.470022,0.366546,0.507433,0.793708,0.458958,0.750363,0.343527,0.912426,0.403726,0.819687,0.913102,0.506786,0.714504,0.897871,0.709952,0.199978,0.183115,0.657354,0.584437,0.95062,0.174341,0.758848,0.135986,0.0199977,0.710604,0.889263,0.475157,0.607808,0.89844,0.658574,0.672171,0.417148,0.290516,0.729563,0.771793,0.996232,0.597502,0.221222,0.451286,0.676116,0.959696,0.86925,0.235097,0.055393,0.0776794,0.363583,0.912145,0.0274996,0.164927,0.780077,0.79662,0.689426,0.508839,0.224768,0.16872,0.0554264,0.511058,0.293805,0.359046,0.851906,0.674903,0.18684,0.190215,0.674153,0.40408,0.439948,0.0972139,0.737639,0.654506,0.540997,0.665297,0.0427197,0.662598,0.479534,0.708022,0.798775,0.725278,0.949164,0.306705,0.37692,0.191469,0.701683,0.474888,0.758942,0.863888,0.589353,0.599497,0.25911,0.542087,0.950737,0.65472,0.743209,0.324156,0.0248203,0.0966766,0.307792,0.192146,0.795583,0.422831,0.767724,0.67996,0.243649,0.665993,0.0292361,0.22705,0.901443,0.799583,0.698639,0.403454,0.690749,0.144172,0.424359,0.761,0.481836,0.725486,0.399683,0.933601,0.106751,0.229945,0.697096,0.685336,0.895911,0.950754,0.603859,0.995905,0.774544,0.526466,0.492772,0.181922,0.172299,0.0794963,0.4385,0.0139891,0.279067,0.26774,0.599808,0.608819,0.788988,0.915999,0.618826,0.969093,0.164159,0.634367,0.623692,0.740581,0.712113,0.785798,0.90338,0.877547,0.849925,0.34312,0.665768,0.120192,0.725041,0.601954,0.852513,0.0915409,0.146388,0.913549,0.207824,0.80393,0.420475,0.0168042,0.470597,0.854227,0.943237,0.457947,0.297046,0.507951,0.322421,0.621773,0.197801,0.181008,0.166416,0.753651,0.592422,0.476259,0.688122,0.551022,0.3509,0.101381,0.322531,0.14251,0.274995,0.0849131,0.873301,0.0975754,0.207968,0.0918533,0.291279,0.055575,0.712139,0.806474,0.546065,0.976341,0.883979,0.477834,0.304653,0.955014,0.461726,0.973125,0.786917,0.00588483,0.340294,0.155049,0.426631,0.465115,0.850526,0.562644,0.860863,0.522907,0.0158371,0.633514,0.585788,0.819413,0.280445,0.837408,0.241722,0.3036,0.731769,0.210101,0.326634,0.505337,0.28524,0.815012,0.835714,0.851295,0.282201,0.0737013,0.684333,0.601235,0.173256,0.59718,0.295983,0.394464,0.895391,0.166593,0.685713,0.911127,0.0703298,0.00421274,0.638796,0.386958,0.416612,0.669353,0.0187516,0.67706,0.847212,0.0373541,0.494129,0.493295,0.465167,0.158451,0.0792191,0.595934,0.754329,0.220037,0.526273,0.676792,0.907945,0.110204,0.872469,0.580868,0.806326,0.33004,0.394362,0.323375,0.361322,0.36844,0.169983,0.380903,0.0201827,0.26901,0.609924,0.430685,0.200482,0.185608,0.037291,0.0650779,0.826203,0.760941,0.31329,0.799875,0.342324,0.377726,0.0812246,0.0497509,0.846138,0.110105,0.650582,0.794376,0.789067,0.177051,0.789167,0.425187,0.666995,0.582682,0.94338,0.119973,0.415101,0.372323,0.365686,0.879232,0.815956,0.375995,0.685754,0.547766,0.992417,0.272406,0.555637,0.202634,0.00242269,0.0837866,0.126747,0.336463,0.796745,0.34997,0.387563,0.493232,0.829161,0.302584,0.200611,0.792818,0.283419,0.678342,0.381384,0.331748,0.291253,0.205365,0.504475,0.386348,0.561234,0.393265,0.828429,0.404008,0.846546,0.700435,0.38706,0.254151,0.261501,0.132999,0.783133,0.437192,0.663648,0.813896,0.839563,0.622532,0.470644,0.202832,0.343135,0.748385,0.501883,0.336037,0.642184,0.338251,0.516288,0.0392848,0.886864,0.476434,0.894148,0.0072611,0.45823,0.547848,0.273944,0.0376717,0.0415941,0.0986513,0.0847389,0.462224,0.00910765,0.223091,0.137766,0.124371,0.883841,0.792487,0.701877,0.502445,0.274956,0.806788,0.0832024,0.845308,0.939309,0.971445,0.154635,0.673406,0.673039,0.840082,0.944065,0.335227,0.172141,0.981157,0.851684,0.23989,0.698858,0.817581,0.604494,0.713587,0.647475,0.589173,0.572989,0.112796,0.343439,0.91362,0.922074,0.382447,0.321861,0.289279,0.65215,0.837922,0.795414,0.569137,0.378636,0.545451,0.384227,0.128617,0.835359,0.705114,0.756675,0.677429,0.876666,0.404656,0.94151,0.0191411,0.157868,0.930406,0.581707,0.69836,0.380218,0.514321,0.0272278,0.193471,0.969973,0.903122,0.793693,0.18935,0.677981,0.987792,0.239254,0.924119,0.218001,0.0304711,0.384785,0.423012,0.865188,0.0259882,0.885442,0.0283634,0.822036,0.345554,0.643231,0.333956,0.422516,0.108895,0.0739666,0.710068,0.486816,0.630447,0.234308,0.816049,0.0191746,0.0621803,0.187197,0.592409,0.0147703,0.172176,0.146936,0.860054,0.792306,0.108951,0.721265,0.746032,0.18496,0.95087,0.482229,0.0551729,0.219304,0.477816,0.926367,0.79464,0.57765,|0.513688,0.661203,0.703445,0.480422,0.870292,0.960414,0.292799,0.323008,0.248262,0.220755,0.0118452,0.530519,0.673711,0.913756,0.828425,0.96175,0.635533,0.245245,0.890459,0.598702,0.145573,0.509702,0.439539,0.241223,0.261086,0.698008,0.795741,0.292622,0.937106,0.910662,0.833527,0.807254,0.838583,0.239034,0.97731,0.680031,0.707809,0.94676,0.663488,0.870783,0.0294327,0.365216,0.515906,0.416772,0.20806,0.5428,0.697964,0.322745,0.205746,0.0411445,0.221576,0.853855,0.997022,0.766143,0.0226922,0.161164,0.831042,0.027905,0.189185,0.621523,0.0257343,0.688077,0.48542,0.801049,0.740707,0.313507,0.173186,0.85787,0.365392,0.0640428,0.411964,0.944724,0.87742,0.423169,0.138697,0.158423,0.896041,0.893141,0.100782,0.14241,0.648565,0.506747,0.220617,0.641385,0.558524,0.161105,0.299677,0.26497,0.0579194,0.429872,0.644216,0.779846,0.568545,0.394987,0.789901,0.877169,0.394164,0.0402296,0.513625,0.316322,0.399685,0.260021,0.231748,0.394319,0.425499,0.983728,0.961074,0.56594,0.360182,0.794389,0.153591,0.730187,0.278858,0.0790958,0.142963,0.893882,0.765462,0.964745,0.106006,0.196557,0.87844,0.205697,0.00331032,0.308168,0.741,0.924175,0.609719,0.24676,0.19285,0.237137,0.0658246,0.886893,0.924876,0.348963,0.496795,0.174095,0.681227,0.0611675,0.224695,0.204539,0.605764,0.458768,0.683857,0.241038,0.239178,0.316947,0.696602,0.687924,0.701214,0.447845,0.707943,0.402872,0.920519,0.115374,0.814278,0.0510757,0.884401,0.979049,0.480482,0.0190587,0.826776,0.248941,0.347027,0.547221,0.596497,0.0188441,0.136383,0.290464,0.928514,0.0790961,0.424755,0.948755,0.918165,0.949255,0.964152,0.440298,0.987883,0.0295716,0.339479,0.159478,0.441529,0.659964,0.754594,0.125089,0.16953,0.154813,0.577895,0.728888,0.510456,0.180656,0.597598,0.781236,0.174765,0.714387,0.0270694,0.44235,0.592027,0.771759,0.746385,0.198684,0.0241038,0.108838,0.00103903,0.718409,0.182426,0.341315,0.833619,0.202955,0.0429317,0.542276,0.110113,0.708214,0.236519,0.431363,0.206493,0.954348,0.712954,0.771092,0.844328,0.241457,0.260967,0.170003,0.696495,0.379147,0.966533,0.541256,0.788803,0.129336,0.850562,0.55838,0.106285,0.538934,0.250503,0.243584,0.162448,0.741738,0.335545,0.591998,0.727438,0.253913,0.800114,0.709624,0.010472,0.530555,0.240735,0.821786,0.595447,0.209625,0.377205,0.777831,0.14362,0.710838,0.80581,0.22786,0.811989,0.724751,0.361834,0.288512,0.460343,0.959235,0.49154,0.817754,0.536234,0.344211,0.0858254,0.704021,0.0261134,0.74854,0.286415,0.435692,0.802442,0.476318,0.812849,0.778343,0.536291,0.246583,0.63522,0.0313221,0.351404,0.195177,0.190214,0.786164,0.0687003,0.30484,0.175491,0.164024,0.985485,0.499927,0.417903,0.00749207,0.168929,0.895293,0.153699,0.0673746,0.142743,0.713891,0.0596576,0.0324565,0.107057,0.352143,0.868963,0.577059,0.818264,0.57445,0.971143,0.840436,0.0132416,0.135723,0.0842379,0.101005,0.485298,0.59075,0.784493,0.124039,0.295437,0.572123,0.400821,0.317836,0.0218028,0.682255,0.84702,0.544931,0.717943,0.871024,0.133642,0.474797,0.457368,0.596594,0.655567,0.195027,0.364292,0.551898,0.770726,0.825713,0.74213,0.231063,0.124496,0.354739,0.318793,0.989089,0.761934,0.0238069,0.955346,0.467368,0.229089,0.677094,0.571368,0.991492,0.674326,0.237332,0.299886,0.566424,0.43558,0.556355,0.281939,0.68408,0.276951,0.937004,0.813002,0.661048,0.750658,0.855755,0.0987993,0.503115,0.316416,0.878829,0.152599,0.111589,0.398255,0.48955,0.00155562,0.798327,0.881417,0.346436,0.465165,0.428203,0.88181,0.598924,0.336939,0.640815,0.510249,0.546967,0.975797,0.749637,0.504257,0.189672,0.842736,0.803963,0.555722,0.632326,0.109402,0.281757,0.347432,0.581064,0.69902,0.740675,0.663024,0.421031,0.419897,0.977781,0.019341,0.562048,0.708624,0.939773,0.905656,0.598568,0.0786891,0.123386,0.944038,0.600153,0.76866,0.955909,0.254336,0.805257,0.891178,0.200439,0.98101,0.239425,0.679149,0.249964,0.598539,0.832881,0.222374,0.757586,0.729174,0.700001,0.880454,0.417253,0.484457,0.647061,0.894723,0.921466,0.0254232,0.672508,0.582466,0.137099,0.077271,0.131753,0.287065,0.122454,0.0443501,0.318318,0.246194,0.19996,0.199439,0.481205,0.346754,0.100771,0.734125,0.587197,0.00764662,0.399591,0.258586,0.27077,0.337556,0.310062,0.574959,0.249821,0.0514007,0.948176,0.405033,0.473846,0.173692,0.369143,0.266131,0.106209,0.706488,0.879599,0.325825,0.435333,0.855908,0.156537,0.938392,0.575118,0.708958,0.233726,0.419976,0.997425,0.0129074,0.360159,0.667918,0.80194,0.427472,0.68325,0.989566,0.410795,0.658339,0.125663,0.586378,0.711334,0.675202,0.159321,0.342049,0.571225,0.0683867,0.27894,0.919661,0.0514801,0.0740666,0.361004,0.677032,0.52288,0.0470133,0.132782,0.300009,0.429616,0.836794,0.585857,0.279629,0.806062,0.996302,0.206494,0.222446,0.715056,0.262879,0.583881,0.591587,0.812766,0.965392,0.328684,0.070105,0.688731,0.579153,0.372493,0.983482,0.533829,0.585845,0.785837,0.705871,0.135099,0.757883,0.411548,0.45547,0.527611,0.157763,0.0667571,0.967418,0.16347,0.812768,0.85754,0.492065,0.221893,0.959478,0.168671,0.593529,0.606907,0.908544,0.516921,0.227344,0.615916,0.671109,0.179491,0.0363293,0.771005,0.775921,0.903781,0.0790379,0.808089,0.0271623,0.0151092,0.15811,0.759544,0.928945,0.819338,0.345309,0.891433,0.0258434,0.966302,0.356739,0.947144,0.250582,0.498856,0.398654,0.961711,0.502431,0.455675,0.353289,0.0302765,0.791153,0.957226,0.570306,0.441939,0.23947,0.504517,0.555213,0.55457,0.471444,0.165665,0.969418,0.751865,0.746837,0.0330743,0.578443,0.226663,0.0379927,0.952475,0.624918,0.720976,0.618134,0.920431,0.170023,0.962412,0.322384,0.99552,0.93612,0.759113,0.167377,0.0127614,0.845234,0.631513,0.287804,0.94358,0.436256,0.536378,0.557259,0.00885218,0.183461,0.669816,0.767498,0.593469,0.0832763,0.331025,0.234755,0.446228,0.0211071,0.0892894,0.800008,0.155281,0.386098,0.218041,0.862583,0.774601,0.625797,0.0471035,0.822311,0.839401,0.928511,0.459616,0.259825,0.723466,0.0797991,0.544327,0.674429,0.835049,0.802161,0.844317,0.976433,0.219641,0.759166,0.0911857,0.13321,0.0791436,0.0347655,0.29577,0.0160847,0.307897,0.0798342,0.81289,0.670763,0.0311694,0.813472,0.847883,0.388056,0.608654,0.370532,0.121286,0.829493,0.366694,0.485959,0.668336,0.499868,0.87712,0.509118,0.430252,0.0820767,0.568882,0.831199,0.0664437,0.219202,0.425077,0.842299,0.533524,0.460012,0.649987,0.847069,0.348482,0.845998,0.869937,0.223107,0.828684,0.046876,0.418413,0.922332,0.252156,0.0103559,0.785854,0.83136,0.0338331,0.046922,0.462926,0.858948,0.690732,0.962563,0.228317,0.77814,0.507599,0.811183,0.933518,0.965943,0.650954,0.641365,0.602303,0.559303,0.811972,0.425949,0.864213,0.111865,0.0806236,0.458057,0.0136068,0.424702,0.662098,0.666677,0.836511,0.998822,0.252011,0.0984777,0.118518,0.628531,0.459456,0.959573,0.286245,0.542382,0.832789,0.982673,0.641276,0.615854,0.870379,0.219483,0.190975,0.25436,0.899786,0.81705,0.361595,0.323269,0.354639,0.191707,0.10952,0.849791,0.515569,0.21176,0.577054,0.862958,0.0527048,0.678629,0.528675,0.419922,0.0511358,0.548882,0.0494921,0.768436,0.875787,0.531563,0.48239,0.836386,0.0201511,0.800125,0.624452,0.549949,0.617944,0.0292583,0.197244,0.628483,0.496464,0.709394,0.648669,0.588324,0.00125933,0.914725,0.0222887,0.913707,0.464681,0.584549,0.216287,0.277844,0.982007,0.641164,0.707534,0.280528,0.318791,0.968065,0.119694,0.75754,0.487,0.434091,0.622726,0.526009,0.896632,0.0993124,0.599891,0.667981,0.819955,0.259736,0.607651,0.272284,0.545395,0.985106,0.212524,0.343061,0.743011,0.317983,0.728471,0.180676,0.114676,0.872543,0.857644,0.0592241,0.803385,0.796444,0.508572,0.173106,0.526914,0.516042,0.0703828,0.779242,0.923745,0.39682,0.9522,0.153891,0.35724,0.828943,0.528443,0.514724,0.93489,0.818915,0.954013,0.0360413,0.55637,0.765154,0.5281,0.0382889,0.881692,0.291648,0.777421,0.596812,0.887619,0.675658,0.772183,0.99257,0.286536,0.422603,0.953323,0.3931,0.325977,0.152681,0.650324,0.624222,0.200537,0.537404,0.691527,0.558411,0.715522,0.223318,0.784219,0.371007,0.649673,0.194592,0.500883,0.448942,0.253705,0.526826,0.910246,0.322209,0.43413,0.0147449,0.0722879,0.0680034,0.499776,0.144723,0.840881,0.222558,0.859905,0.949862,0.992009,0.937205,0.29487,0.106609,0.181943,0.960607,0.237931,0.964172,0.294235,0.809825,0.0660757,0.585479,0.720022,0.294132,0.266442,0.149727,0.428817,0.168748,0.839184,0.174238,0.826418,0.574688,0.257822,0.70561,0.734064,0.649821,0.917493,0.76482,0.39208,0.0389764,0.105356,0.667069,0.357902,0.836465,0.0627963,0.446304,0.868895,0.990498,0.453435,0.367764,0.749946,0.204583,0.0835574,0.552116,0.239533,0.312794,0.654691,0.65665,0.279358,0.55624,0.896783,0.572449,0.749009,0.308626,0.957763,0.220696,0.324059,0.196968,0.975061,0.0816236,0.529639,0.709999,0.39762,0.0629056,0.797675,0.000496328,0.327518,0.0117197,0.656273,0.793662,0.577892,0.335066,0.415302,0.549389,0.910938,0.308212,0.729125,0.158413,0.377699,0.923382,0.897794,0.390394,0.693661,0.125511,0.233296,0.130316,0.951171,0.459705,0.173752,0.329185,0.279861,0.396347,0.498151,0.0873256,0.539991,0.26562,0.743051,0.785018,0.190526,0.372192,0.795683,0.0447803,0.143256,0.322893,0.820472,0.0538012,0.332749,0.402999,0.467502,0.252161,0.925687,0.116766,0.0543604,0.911418,0.602735,0.897021,0.642372,|0.605764,0.296836,0.918269,0.786915,0.0298336,0.143496,0.890549,0.441217,0.931334,0.994726,0.512439,0.213376,0.957673,0.0100996,0.0406818,0.921259,0.744033,0.961852,0.62451,0.811919,0.771098,0.4038,0.503003,0.578904,0.729846,0.481549,0.541059,0.497561,0.962904,0.757052,0.438923,0.275313,0.535053,0.371665,0.0351545,0.578364,0.610206,0.424468,0.971505,0.235276,0.72937,0.575173,0.491106,0.0358731,0.186491,0.717371,0.202019,0.515576,0.50552,0.694013,0.957475,0.907954,0.785087,0.323242,0.663669,0.849192,0.0747432,0.839086,0.261656,0.175168,0.910338,0.569322,0.983196,0.171431,0.698475,0.594706,0.856733,0.618604,0.661134,0.325197,0.428608,0.678151,0.353352,0.786181,0.149982,0.685881,0.476056,0.60667,0.782317,0.510835,0.47489,0.514944,0.821843,0.731633,0.815653,0.31716,0.412268,0.818182,0.67701,0.199931,0.177698,0.820503,0.324255,0.679588,0.923964,0.959862,0.184264,0.0726908,0.778295,0.163619,0.768515,0.943894,0.42588,0.146521,0.670666,0.792491,0.197363,0.723572,0.289166,0.417765,0.604753,0.80351,0.678832,0.0432984,0.931505,0.98963,0.723983,0.400374,0.323802,0.149695,0.365063,0.369463,0.827689,0.98639,0.273513,0.464578,0.487383,0.411398,0.697035,0.466846,0.24081,0.372466,0.643003,0.291259,0.871639,0.579129,0.766566,0.0180443,0.848676,0.841925,0.591438,0.672376,0.669608,0.364955,0.170584,0.452242,0.228545,0.595672,0.0888417,0.866874,0.887813,0.243217,0.917053,0.667965,0.68743,0.709482,0.236827,0.496211,0.845216,0.936598,0.0301564,0.0996342,0.486833,0.308269,0.333863,0.148713,0.600778,0.0908064,0.246769,0.731568,0.803737,0.0443937,0.261257,0.439481,0.109941,0.447334,0.171187,0.208686,0.366268,0.993335,0.952119,0.425022,0.900504,0.00113863,0.0569711,0.430937,0.188746,0.616806,0.493321,0.231104,0.473319,0.474469,0.84353,0.742224,0.04099,0.0786481,0.953861,0.986148,0.177083,0.297916,0.159197,0.60732,0.494874,0.496139,0.460363,0.345534,0.789352,0.792316,0.521707,0.739443,0.351643,0.301356,0.597586,0.271546,0.945573,0.20823,0.394936,0.463979,0.270627,0.526801,0.00260502,0.0372193,0.343592,0.793123,0.734948,0.488253,0.939743,0.336515,0.27357,0.629693,0.341226,0.905817,0.193814,0.270853,0.974511,0.103917,0.164946,0.509243,0.190591,0.316706,0.420616,0.0783443,0.553644,0.00757295,0.0646944,0.0748948,0.53959,0.284734,0.205193,0.0104787,0.909051,0.446688,0.429919,0.391763,0.317187,0.325199,0.345348,0.506759,0.916065,0.176419,0.667775,0.783188,0.0854458,0.805431,0.315102,0.708379,0.684478,0.721213,0.69008,0.383487,0.218582,0.0595841,0.0260318,0.192719,0.435969,0.980358,0.107552,0.557337,0.779889,0.654466,0.403821,0.5931,0.149338,0.313344,0.19235,0.553101,0.875697,0.507111,0.638985,0.276672,0.324415,0.272785,0.284388,0.87972,0.233259,0.613622,0.0239791,0.798877,0.251825,0.243274,0.375952,0.195978,0.636419,0.74962,0.100459,0.924648,0.276306,0.579235,0.577014,0.698615,0.818708,0.719124,0.55657,0.196817,0.477809,0.992122,0.719289,0.911761,0.526117,0.633903,0.73865,0.677813,0.514087,0.826094,0.0436811,0.407889,0.561835,0.361355,0.683633,0.396736,0.866085,0.205611,0.847164,0.910116,0.838547,0.0232534,0.243888,0.814284,0.476721,0.307792,0.778682,0.758422,0.946923,0.599507,0.36325,0.0104933,0.657047,0.0299063,0.0365188,0.326454,0.962094,0.258294,0.190371,0.385924,0.601791,0.81385,0.0093618,0.186013,0.432608,0.271276,0.165685,0.943329,0.481192,0.23311,0.123471,0.0541568,0.134271,0.175401,0.92961,0.33792,0.904836,0.769338,0.542484,0.191299,0.21837,0.228306,0.467359,0.495466,0.0217007,0.404877,0.518663,0.203281,0.246721,0.593359,0.221146,0.390038,0.942674,0.706175,0.313392,0.58671,0.713883,0.485781,0.960399,0.875865,0.997489,0.326549,0.890192,0.482004,0.601261,0.491022,0.952703,0.0666822,0.26876,0.935165,0.628316,0.0374483,0.560626,0.480251,0.245073,0.479619,0.548098,0.916287,0.355649,0.388108,0.234385,0.30005,0.201527,0.33112,0.810632,0.695632,0.965402,0.511125,0.0243028,0.0602393,0.0386546,0.902563,0.493031,0.66814,0.643868,0.505219,0.129238,0.91565,0.0843524,0.943156,0.0401092,0.179107,0.477155,0.119552,0.148256,0.573757,0.377475,0.111611,0.41945,0.153318,0.991535,0.622585,0.0599018,0.750615,0.667008,0.625076,0.557409,0.748914,0.24828,0.74124,0.212336,0.457738,0.975083,0.249388,0.901315,0.0180088,0.110779,0.569935,0.514334,0.171418,0.484975,0.589728,0.656783,0.510473,0.0164653,0.0571492,0.151258,0.0191408,0.217503,0.79753,0.660074,0.171165,0.553843,0.539077,0.240981,0.103927,0.355275,0.0539132,0.476564,0.821216,0.655319,0.8369,0.0852146,0.542822,0.2554,0.771542,0.0614219,0.711354,0.205501,0.416137,0.515012,0.813491,0.794694,0.00575346,0.20973,0.15428,0.652882,0.417431,0.499181,0.41413,0.473294,0.814593,0.264071,0.315083,0.397277,0.978337,0.891202,0.68805,0.498805,0.520754,0.964339,0.306231,0.145521,0.838268,0.677064,0.640546,0.93664,0.990257,0.91711,0.381419,0.788825,0.781029,0.571503,0.794263,0.625774,0.133022,0.137745,0.916675,0.149969,0.978032,0.923232,0.956648,0.111164,0.678814,0.641213,0.935871,0.784197,0.0668829,0.795618,0.726121,0.358986,0.106805,0.14458,0.538893,0.845623,0.815716,0.347072,0.751211,0.0648389,0.35692,0.468392,0.17883,0.886227,0.246785,0.746431,0.601298,0.307849,0.477237,0.606001,0.679654,0.0248651,0.545813,0.47991,0.304497,0.867673,0.177928,0.599799,0.312831,0.153025,0.611258,0.328525,0.612926,0.356793,0.719272,0.00697207,0.171102,0.656063,0.848098,0.802326,0.82825,0.778159,0.269955,0.317621,0.827526,0.384872,0.227301,0.36294,0.717712,0.136782,0.25313,0.682435,0.75692,0.686983,0.0828757,0.523693,0.345439,0.714514,0.442663,0.726458,0.121429,0.636194,0.903845,0.215218,0.0126175,0.0529687,0.42344,0.825083,0.104857,0.134407,0.874365,0.867904,0.77729,0.782581,0.623223,0.818671,0.120319,0.582979,0.964364,0.421147,0.0826917,0.605539,0.590813,0.522511,0.474324,0.588255,0.393768,0.308249,0.0389113,0.940285,0.889111,0.337169,0.970376,0.967791,0.704217,0.633816,0.294167,0.925216,0.37117,0.946299,0.739155,0.46144,0.394786,0.419775,0.36383,0.464721,0.310561,0.652315,0.533967,0.362587,0.109655,0.496631,0.936072,0.0693455,0.607965,0.520942,0.468691,0.967787,0.72506,0.129724,0.560572,0.349485,0.154869,0.0917013,0.780142,0.484109,0.390997,0.271518,0.0365378,0.0553777,0.911658,0.49511,0.555102,0.0282952,0.41996,0.258161,0.209543,0.563198,0.475181,0.767259,0.507762,0.175311,0.278502,0.993219,0.317851,0.976175,0.540002,0.761448,0.480466,0.79821,0.203718,0.170085,0.859526,0.977702,0.641384,0.15949,0.413149,0.310758,0.27471,0.30435,0.912167,0.233633,0.917947,0.11462,0.868416,0.865539,0.205381,0.122999,0.246676,0.239674,0.594955,0.344017,0.849709,0.691649,0.467922,0.904837,0.21164,0.449794,0.960087,0.411336,0.425013,0.534801,0.520926,0.550306,0.762633,0.924111,0.728842,0.793604,0.835386,0.756678,0.865406,0.844678,0.528127,0.461467,0.143081,0.893749,0.450671,0.495481,0.385399,0.611133,0.805465,0.849882,0.144254,0.314961,0.945768,0.519046,0.158061,0.494825,0.406983,0.423463,0.705205,0.543342,0.377012,0.851114,0.922248,0.680627,0.773014,0.856527,0.954088,0.268571,0.552521,0.756874,0.283012,0.855353,0.313688,0.392419,0.740089,0.636206,0.149771,0.537795,0.657495,0.220494,0.0926282,0.336583,0.736531,0.555191,0.363668,0.238928,0.88503,0.428306,0.241029,0.429006,0.317427,0.979313,0.714229,0.160466,0.54166,0.0927952,0.575463,0.276059,0.951647,0.600039,0.456759,0.588232,0.932808,0.877074,0.434276,0.669088,0.688836,0.344062,0.266222,0.90421,0.423254,0.677274,0.0756637,0.801457,0.122986,0.424338,0.157663,0.874368,0.77162,0.636491,0.569119,0.41312,0.061108,0.0464578,0.357291,0.328205,0.0187288,0.899822,0.109619,0.323641,0.946136,0.94837,0.779657,0.658984,0.85177,0.670173,0.212629,0.914421,0.36416,0.996634,0.153914,0.771342,0.735346,0.848345,0.592068,0.984267,0.554236,0.298104,0.954852,0.217035,0.454595,0.0685781,0.310958,0.985899,0.97667,0.291205,0.0376516,0.201086,0.649728,0.902945,0.902739,0.765023,0.30089,0.712014,0.980191,0.336578,0.393303,0.243739,0.742877,0.498346,0.446877,0.64814,0.676161,0.756615,0.968586,0.819959,0.42517,0.255561,0.311526,0.376631,0.0609081,0.227788,0.765913,0.884081,0.650461,0.67548,0.449821,0.146272,0.786804,0.155014,0.517958,0.927783,0.646468,0.573886,0.670071,0.37468,0.32511,0.082185,0.160666,0.144841,0.108504,0.740859,0.0738429,0.359614,0.421436,0.136604,0.68125,0.353636,0.376054,0.771494,0.234477,0.539756,0.270008,0.59309,0.000540912,0.456596,0.29893,0.821266,0.738924,0.908222,0.944076,0.285881,0.13694,0.0769159,0.146691,0.297937,0.0141085,0.0977716,0.400503,0.0304274,0.470504,0.635639,0.526765,0.55514,0.377119,0.958961,0.354411,0.473174,0.131998,0.0497416,0.722889,0.997901,0.914825,0.927257,0.220139,0.657148,0.0308286,0.173412,0.855511,0.203338,0.362483,0.0640138,0.501274,0.37781,0.797779,0.337901,0.384205,0.655237,0.57937,0.0288167,0.426112,0.550608,0.64051,0.0272654,0.53049,0.226786,0.146471,0.00898445,0.476066,0.838639,0.863439,0.729392,0.769303,0.934595,0.335509,0.664603,0.0517917,0.461908,0.0358335,0.0435309,0.521335,0.478769,0.754572,0.446266,0.332853,0.408447,0.952273,0.553444,0.346617,0.433185,0.683477,0.647557,0.245616,0.705667,0.724431,0.00944287,0.266806,0.0224512,0.688528,0.653921,0.914878,0.574959,0.85014,0.676027,0.417604,|0.545262,0.297019,0.469396,0.794528,0.213482,0.337526,0.63911,0.437935,0.66799,0.171899,0.524516,0.0884714,0.474533,0.37129,0.376581,0.445861,0.820554,0.966852,0.580402,0.253767,0.974698,0.472166,0.0558713,0.527283,0.268895,0.735537,0.626463,0.096476,0.92912,0.185269,0.457581,0.629366,0.863608,0.0698707,0.359478,0.456795,0.774156,0.832045,0.841834,0.424193,0.0165016,0.324883,0.53244,0.754638,0.182456,0.348154,0.0874783,0.474064,0.92506,0.594616,0.943194,0.0899855,0.370867,0.0830374,0.806729,0.398324,0.039968,0.951597,0.187412,0.753348,0.475954,0.545123,0.246475,0.654286,0.0908695,0.30074,0.915039,0.0587623,0.589228,0.948973,0.238334,0.744303,0.818964,0.336975,0.738417,0.529105,0.728538,0.597094,0.610328,0.307548,0.739517,0.824954,0.452638,0.398856,0.213126,0.65773,0.367727,0.439825,0.440426,0.571636,0.116221,0.206637,0.465936,0.483306,0.838643,0.525467,0.00835723,0.431466,0.990703,0.29423,0.2044,0.175872,0.970253,0.492877,0.703828,0.715432,0.555488,0.370273,0.551738,0.321238,0.530405,0.107276,0.429951,0.123055,0.126804,0.0922915,0.717758,0.889925,0.28888,0.223948,0.386654,0.806024,0.234402,0.441885,0.910627,0.958656,0.0553152,0.540102,0.927446,0.845459,0.411013,0.850366,0.105375,0.265474,0.413009,0.529505,0.813537,0.388277,0.680571,0.324575,0.445839,0.83812,0.533484,0.657548,0.8004,0.73325,0.250182,0.312134,0.48071,0.230838,0.200429,0.269564,0.98112,0.606873,0.459158,0.932513,0.472997,0.84522,0.398621,0.599449,0.630547,0.801851,0.20499,0.240316,0.106544,0.96823,0.277627,0.965153,0.455319,0.404208,0.232851,0.0124624,0.221711,0.686159,0.97799,0.31452,0.76566,0.0790626,0.393911,0.349531,0.132283,0.691163,0.3124,0.581354,0.298047,0.857316,0.56038,0.00242102,0.00134534,0.508208,0.520529,0.283693,0.97917,0.981413,0.756133,0.505133,0.405105,0.418747,0.63049,0.307273,0.244785,0.800021,0.567677,0.156412,0.943411,0.939166,0.960697,0.24846,0.456651,0.551418,0.0223732,0.141622,0.499016,0.949957,0.210024,0.597233,0.657609,0.563857,0.819221,0.837487,0.767967,0.310159,0.124445,0.906377,0.610896,0.548202,0.957984,0.0377973,0.170122,0.814628,0.228785,0.221017,0.222964,0.699668,0.445985,0.882584,0.321824,0.575627,0.0390774,0.178834,0.0382584,0.74119,0.839535,0.309628,0.313557,0.337584,0.773435,0.447313,0.0251575,0.200931,0.915544,0.730238,0.80594,0.918344,0.337746,0.909187,0.597202,0.136463,0.201605,0.901569,0.473441,0.338595,0.406431,0.324696,0.943155,0.217908,0.677959,0.437875,0.696548,0.229554,0.974135,0.67052,0.535762,0.910314,0.720339,0.851408,0.303867,0.821724,0.0593494,0.359611,0.363574,0.90011,0.850408,0.541028,0.555445,0.734132,0.0589004,0.95586,0.697927,0.532301,0.272744,0.803086,0.182792,0.312024,0.426051,0.32047,0.519954,0.763729,0.783132,0.819883,0.344808,0.476888,0.318261,0.997873,0.703177,0.0423445,0.62926,0.739497,0.0521734,0.179848,0.44503,0.991654,0.0776808,0.567246,0.925401,0.695261,0.544471,0.121398,0.581626,0.793649,0.702666,0.750199,0.698823,0.968981,0.405634,0.259142,0.35096,0.651056,0.749821,0.176744,0.527244,0.788824,0.514091,0.238548,0.630535,0.138838,0.604857,0.894247,0.759618,0.695264,0.32915,0.689958,0.938338,0.359159,0.777275,0.0242465,0.984188,0.158323,0.0659491,0.243467,0.732796,0.0880018,0.376948,0.155239,0.732785,0.0441285,0.458753,0.615435,0.755861,0.392091,0.804856,0.694242,0.700218,0.34655,0.626645,0.0696411,0.234514,0.0471928,0.214327,0.924634,0.631526,0.196739,0.312344,0.966027,0.445606,0.610463,0.434891,0.940023,0.509761,0.728781,0.554471,0.406918,0.388436,0.57927,0.945653,0.179667,0.463038,0.705304,0.747673,0.393019,0.859005,0.479746,0.415808,0.79143,0.045756,0.386722,0.3534,0.88836,0.15849,0.415097,0.981078,0.117457,0.788585,0.107326,0.781419,0.867906,0.362091,0.0925229,0.457345,0.68369,0.539015,0.74883,0.155239,0.559104,0.287989,0.275345,0.534381,0.388116,0.639851,0.40706,0.396515,0.659158,0.932228,0.79593,0.0562164,0.656874,0.148752,0.26686,0.449082,0.326569,0.77259,0.264855,0.412709,0.837561,0.704776,0.25063,0.826465,0.0819144,0.304959,0.636409,0.620881,0.300861,0.468721,0.256252,0.87609,0.398316,0.310904,0.142503,0.0896033,0.634884,0.501037,0.747733,0.688153,0.776962,0.940004,0.956698,0.401432,0.658717,0.3784,0.933547,0.0309439,0.290135,0.461257,0.409553,0.440937,0.886613,0.53277,0.57842,0.137272,0.530346,0.646719,0.0564318,0.07041,0.643123,0.13252,0.906245,0.213191,0.708455,0.417084,0.492792,0.356236,0.135906,0.611096,0.0343184,0.331949,0.918878,0.655257,0.878737,0.492422,0.0120604,0.393626,0.591097,0.343358,0.177465,0.439692,0.65776,0.465572,0.0399482,0.863415,0.520186,0.786217,0.207831,0.653464,0.657676,0.39451,0.844293,0.546174,0.982765,0.858348,0.834467,0.752169,0.437311,0.889312,0.630826,0.23857,0.8315,0.112041,0.934138,0.47977,0.29982,0.616281,0.689643,0.3285,0.914134,0.892946,0.959812,0.440306,0.414509,0.625467,0.336919,0.292926,0.688913,0.986167,0.360372,0.941692,0.936444,0.142996,0.109143,0.944542,0.616801,0.619475,0.115854,0.369099,0.307411,0.399492,0.831361,0.756783,0.920171,0.0239563,0.468164,0.259757,0.343294,0.0446537,0.126031,0.44017,0.249842,0.229891,0.904056,0.978363,0.245687,0.665244,0.878919,0.842544,0.559819,0.0980747,0.256097,0.999029,0.750353,0.971748,0.476773,0.855861,0.0179044,0.248852,0.93654,0.375197,0.958185,0.262086,0.0678962,0.90627,0.268688,0.586682,0.894046,0.230137,0.376061,0.307217,0.0576181,0.11077,0.46384,0.746344,0.887255,0.862428,0.712139,0.717743,0.355722,0.177024,0.52678,0.597233,0.108189,0.150459,0.339901,0.692543,0.329646,0.107507,0.900417,0.698746,0.968522,0.545111,0.206306,0.407963,0.610796,0.389757,0.458779,0.377571,0.705103,0.793173,0.514273,0.765005,0.198223,0.772507,0.141681,0.2414,0.201007,0.875416,0.513167,0.808764,0.406902,0.0399007,0.466831,0.879523,0.288517,0.519824,0.204615,0.653251,0.89381,0.5228,0.483352,0.928082,0.131128,0.769982,0.731397,0.362582,0.289904,0.215531,0.661543,0.620387,0.653498,0.401392,0.201093,0.788971,0.0187969,0.526253,0.0388583,0.664986,0.0861483,0.991659,0.0202482,0.0750673,0.925563,0.0657176,0.303488,0.876358,0.0139616,0.567021,0.946891,0.934007,0.45046,0.36435,0.333285,0.777263,0.0334313,0.301097,0.912383,0.190875,0.575371,0.644688,0.960194,0.850268,0.368267,0.851619,0.762241,0.472949,0.598222,0.069469,0.685545,0.0699382,0.272446,0.186168,0.797576,0.376811,0.238614,0.362986,0.68796,0.766221,0.770239,0.251268,0.0333589,0.612258,0.513815,0.103135,0.611088,0.136927,0.455287,0.0386969,0.318619,0.365797,0.218237,0.298978,0.364697,0.977477,0.232287,0.850234,0.272076,0.905464,0.038681,0.533345,0.922455,0.993161,0.406554,0.0229982,0.00500757,0.210233,0.930384,0.655751,0.303447,0.628494,0.761326,0.636694,0.445652,0.767348,0.220607,0.238197,0.513242,0.936549,0.914524,0.9032,0.496986,0.994541,0.0455518,0.97759,0.50632,0.20066,0.161629,0.163406,0.24351,0.562377,0.387163,0.127877,0.159369,0.0567518,0.00825238,0.224503,0.630372,0.25883,0.727045,0.353264,0.200535,0.301844,0.282415,0.837418,0.675291,0.576264,0.646882,0.198789,0.94169,0.248115,0.0144856,0.653195,0.550626,0.0438828,0.345512,0.8864,0.217993,0.11841,0.94522,0.302429,0.773293,0.551876,0.800584,0.396465,0.747814,0.478699,0.869535,0.063086,0.985706,0.425949,0.415886,0.369574,0.715916,0.0830913,0.736122,0.9898,0.0849787,0.63596,0.187587,0.803303,0.544392,0.142744,0.630192,0.851755,0.109104,0.310869,0.905757,0.180372,0.183511,0.753226,0.23499,0.873075,0.924933,0.968286,0.350175,0.150635,0.860651,0.548838,0.411707,0.729627,0.698043,0.923172,0.0447211,0.0965047,0.373183,0.987871,0.440526,0.264055,0.977521,0.413251,0.690685,0.466139,0.472244,0.0130238,0.0991735,0.847183,0.871858,0.925321,0.579659,0.757209,0.671334,0.172008,0.417994,0.585664,0.393466,0.0834552,0.932931,0.195121,0.507714,0.790851,0.332119,0.263714,0.511937,0.994635,0.511756,0.0246155,0.693179,0.664921,0.668545,0.188657,0.827087,0.868478,0.0855659,0.738767,0.404566,0.441757,0.290305,0.855247,0.76145,0.847219,0.678858,0.262519,0.783868,0.38388,0.935874,0.153359,0.0150655,0.811982,0.185623,0.66416,0.0105885,0.213747,0.112209,0.376138,0.509257,0.733644,0.845189,0.264763,0.628434,0.828616,0.5249,0.148315,0.195328,0.57069,0.739354,0.0301021,0.832955,0.123915,0.363886,0.0581223,0.568818,0.627032,0.576882,0.288254,0.553039,0.00130188,0.360118,0.72833,0.328486,0.795622,0.724973,0.992905,0.58331,0.356277,0.976142,0.866091,0.496734,0.176556,0.344101,0.366151,0.254045,0.516926,0.596757,0.0924968,0.433296,0.901667,0.348007,0.0833067,0.283211,0.656618,0.981747,0.0832585,0.799876,0.634252,0.205432,0.153645,0.560281,0.261722,0.342899,0.331828,0.314355,0.428524,0.901198,0.347388,0.46134,0.982896,0.294255,0.969887,0.798394,0.460015,0.380454,0.212797,0.383299,0.299002,0.130958,0.298472,0.844684,0.808009,0.811858,0.479152,0.301404,0.0435874,0.329608,0.383488,0.199536,0.0594494,0.223811,0.91925,0.23317,0.878938,0.900548,0.424164,0.825555,0.0882362,0.192845,0.0321662,0.689947,0.208664,0.788583,0.0679353,0.054582,0.807454,0.639929,0.233883,0.494849,0.651785,0.367772,0.777775,0.766874,0.616942,0.308719,0.50444,0.865945,0.12493,0.478218,0.453021,0.744056,0.796619,0.655588,0.150655,0.313028,0.556659,0.736789,0.74805,0.767377,|0.287256,0.901563,0.834222,0.823295,0.537034,0.880854,0.733034,0.611432,0.651612,0.0977376,0.0738207,0.566441,0.524171,0.276767,0.0489922,0.0154957,0.0221857,0.333692,0.110112,0.0838862,0.665261,0.252948,0.0317654,0.874587,0.481116,0.729774,0.187419,0.531974,0.0956911,0.774706,0.663599,0.629089,0.553537,0.884227,0.727753,0.58948,0.9286,0.168038,0.694923,0.267819,0.953469,0.608919,0.936263,0.354239,0.818576,0.555404,0.0693558,0.280404,0.721953,0.267812,0.682864,0.217199,0.543964,0.879978,0.258829,0.695692,0.747288,0.0482196,0.710672,0.129975,0.897853,0.355645,0.67193,0.402029,0.548574,0.888798,0.334097,0.0209898,0.496627,0.845668,0.67619,0.494423,0.350471,0.334795,0.0265372,0.0546124,0.0573251,0.24731,0.55538,0.46689,0.857248,0.0313125,0.198492,0.686133,0.66371,0.605416,0.788265,0.939447,0.593632,0.130402,0.444037,0.392594,0.00711602,0.566771,0.171104,0.247508,0.0392302,0.353405,0.0931944,0.930324,0.0992056,0.490668,0.45264,0.699574,0.0849935,0.755224,0.644926,0.572052,0.896525,0.644777,0.202851,0.0608554,0.659917,0.600217,0.329959,0.422647,0.405624,0.665745,0.656717,0.0562999,0.200186,0.577626,0.00350946,0.333088,0.378068,0.791244,0.176533,0.434163,0.783308,0.105678,0.558545,0.00710499,0.165494,0.792578,0.486393,0.504275,0.821519,0.400806,0.394116,0.556462,0.332879,0.857858,0.845096,0.722795,0.141258,0.420991,0.654267,0.122213,0.559097,0.719863,0.040679,0.273525,0.398854,0.497273,0.973992,0.911125,0.255423,0.278417,0.0638845,0.428114,0.0239522,0.831942,0.96715,0.721725,0.108549,0.724604,0.48495,0.914227,0.701214,0.224184,0.819667,0.602549,0.12416,0.528275,0.762603,0.3639,0.820951,0.627968,0.83931,0.00170851,0.258777,0.575302,0.574553,0.213877,0.422504,0.625123,0.811283,0.206948,0.520598,0.419589,0.842695,0.66033,0.601026,0.428814,0.360519,0.607915,0.325574,0.615564,0.332956,0.197389,0.606737,0.691548,0.731882,0.549209,0.575103,0.302183,0.980304,0.530162,0.495147,0.783561,0.155925,0.145634,0.365828,0.0312204,0.91423,0.745336,0.685043,0.530253,0.892511,0.503436,0.65971,0.577157,0.258495,0.911825,0.244514,0.111776,0.185691,0.703074,0.895494,0.462725,0.804467,0.762738,0.603974,0.538942,0.620493,0.375355,0.418617,0.533613,0.323261,0.638978,0.151889,0.0490284,0.0900378,0.907691,0.589015,0.883095,0.533525,0.457997,0.890702,0.731717,0.946468,0.420294,0.14891,0.922137,0.260256,0.501345,0.731112,0.952614,0.770221,0.320432,0.306717,0.499726,0.106176,0.882087,0.248663,0.212541,0.631106,0.504838,0.128655,0.959696,0.689662,0.872349,0.852658,0.495001,0.784539,0.241395,0.091625,0.877323,0.658865,0.636856,0.871749,0.344763,0.422022,0.435645,0.75828,0.58295,0.890823,0.448639,0.613165,0.885097,0.642904,0.734906,0.406028,0.424546,0.04879,0.66059,0.216126,0.234122,0.328808,0.817789,0.227116,0.549512,0.169329,0.360918,0.927986,0.627896,0.114996,0.902947,0.891889,0.768607,0.0354668,0.409801,0.352635,0.815163,0.860193,0.417987,0.165767,0.726943,0.969739,0.0134745,0.66332,0.0393506,0.189044,0.372081,0.651284,0.528406,0.577719,0.915177,0.465259,0.441744,0.673691,0.758136,0.0421926,0.333037,0.635793,0.689841,0.756553,0.823933,0.869328,0.947471,0.581784,0.60551,0.29583,0.399392,0.268895,0.0409874,0.855029,0.780195,0.159576,0.900924,0.329024,0.453114,0.820871,0.599693,0.00540739,0.8748,0.0454981,0.106448,0.142486,0.0226833,0.254659,0.960989,0.344344,0.700417,0.383992,0.804712,0.750848,0.24339,0.438169,0.596407,0.0103251,0.320813,0.937985,0.754002,0.498836,0.00295085,0.418624,0.845153,0.735705,0.501784,0.0063231,0.589898,0.628236,0.949266,0.532849,0.149746,0.950675,0.654778,0.0781509,0.914697,0.897074,0.368004,0.0166368,0.791205,0.615867,0.516851,0.964983,0.865536,0.655639,0.872817,0.557356,0.30012,0.367581,0.365489,0.503971,0.610886,0.166716,0.00153285,0.268683,0.95238,0.386899,0.422901,0.650225,0.0803762,0.672307,0.0867468,0.18608,0.186081,0.104659,0.0519194,0.468823,0.561559,0.978899,0.667737,0.303074,0.28271,0.949555,0.0365883,0.82741,0.74237,0.00918472,0.554452,0.104287,0.958116,0.671049,0.361758,0.328119,0.711935,0.971754,0.455146,0.923694,0.816205,0.303351,0.522594,0.540851,0.280786,0.397627,0.23594,0.326199,0.413677,0.558349,0.427963,0.623555,0.20179,0.520405,0.39036,0.280657,0.78445,0.987856,0.531043,0.660401,0.956577,0.559016,0.822029,0.258581,0.387373,0.820521,0.821347,0.249935,0.560832,0.448392,0.534324,0.633921,0.791725,0.445283,0.298833,0.18752,0.939351,0.791969,0.778198,0.869548,0.725248,0.824596,0.317264,0.824865,0.679526,0.30785,0.386921,0.261922,0.422886,0.477042,0.0158625,0.317932,0.826905,0.367011,0.688167,0.168467,0.209817,0.77455,0.884605,0.273078,0.369123,0.951832,0.780235,0.820694,0.359212,0.392447,0.189462,0.67156,0.724131,0.250226,0.471622,0.00883329,0.0698789,0.0727856,0.751499,0.112408,0.173058,0.679942,0.677746,0.289734,0.240617,0.482176,0.726457,0.0166002,0.801945,0.135609,0.795237,0.360485,0.323377,0.376741,0.0719484,0.627795,0.511777,0.743047,0.694602,0.128983,0.853963,0.811817,0.30695,0.264446,0.0956268,0.543243,0.311692,0.847436,0.953607,0.695549,0.607073,0.977693,0.640565,0.735247,0.15831,0.994392,0.103018,0.993517,0.323011,0.305728,0.849865,0.447551,0.72085,0.497704,0.856943,0.371848,0.318408,0.842679,0.351942,0.860766,0.999255,0.943146,0.745798,0.138392,0.771851,0.993237,0.0411146,0.872604,0.0485908,0.415769,0.591165,0.439889,0.472494,0.348884,0.0561392,0.618893,0.819682,0.803656,0.0350258,0.477803,0.742247,0.650049,0.433306,0.684594,0.543485,0.692857,0.685657,0.00101781,0.65638,0.492715,0.471483,0.780599,0.137914,0.312376,0.754153,0.334107,0.770416,0.278974,0.403719,0.0144593,0.95437,0.785881,0.889752,0.705516,0.140167,0.758452,0.643247,0.736437,0.650838,0.973573,0.123111,0.107519,0.249441,0.865988,0.330871,0.946397,0.54302,0.915926,0.25711,0.519723,0.64196,0.739205,0.884718,0.826057,0.306027,0.0567406,0.191206,0.0786265,0.521191,0.648318,0.803069,0.508045,0.37249,0.89987,0.0722916,0.166704,0.967333,0.646765,0.739446,0.68759,0.417463,0.0901334,0.238571,0.480067,0.681226,0.706881,0.867598,0.0057528,0.829564,0.0378323,0.188034,0.597562,0.00598431,0.0662652,0.946012,0.291831,0.828849,0.853329,0.0647458,0.975014,0.97932,0.698546,0.961626,0.481471,0.940293,0.397675,0.259281,0.601036,0.00218141,0.528748,0.719055,0.695087,0.724334,0.400739,0.653999,0.736943,0.295256,0.504001,0.935139,0.388362,0.360393,0.393739,0.919436,0.198904,0.983865,0.606593,0.146896,0.39476,0.352518,0.67913,0.15943,0.697445,0.544037,0.759924,0.845565,0.69422,0.0493916,0.776854,0.0443219,0.858142,0.812341,0.694084,0.132416,0.253952,0.272925,0.556077,0.0757756,0.425446,0.566201,0.192575,0.954086,0.151007,0.557009,0.514096,0.0991425,0.859823,0.409903,0.593023,0.716519,0.642598,0.408758,0.142724,0.509514,0.0452667,0.984552,0.59546,0.857824,0.305398,0.305756,0.579323,0.511144,0.164168,0.555192,0.0986775,0.360751,0.830163,0.0441973,0.689141,0.320602,0.485803,0.86398,0.0202489,0.523081,0.139881,0.851182,0.639661,0.809145,0.282583,0.791912,0.652322,0.279139,0.892952,0.0224586,0.728097,0.985095,0.0878259,0.642029,0.556421,0.786484,0.424885,0.172722,0.599658,0.194195,0.60705,0.250964,0.533041,0.572774,0.0275168,0.0250732,0.543385,0.912705,0.205942,0.588744,0.790517,0.850537,0.194032,0.160952,0.497523,0.0468387,0.809765,0.160076,0.685218,0.585472,0.630232,0.785585,0.955667,0.922849,0.208656,0.228016,0.935384,0.344588,0.723748,0.914429,0.574282,0.956824,0.434346,0.0343651,0.415957,0.621823,0.477614,0.637893,0.757131,0.45889,0.303758,0.493291,0.89451,0.00124007,0.971788,0.657679,0.726706,0.172303,0.291443,0.498572,0.173538,0.945702,0.747319,0.72121,0.590964,0.336148,0.0800259,0.819371,0.738833,0.921678,0.746531,0.0211675,0.123523,0.715293,0.455953,0.696897,0.858229,0.218606,0.654778,0.984316,0.792213,0.0672782,0.42201,0.0643618,0.159652,0.76724,0.291753,0.621495,0.776362,0.111665,0.502574,0.480843,0.478995,0.946671,0.273991,0.411466,0.442247,0.309464,0.648174,0.794677,0.321577,0.0799577,0.32037,0.329723,0.703362,0.203705,0.0594636,0.532264,0.371914,0.827536,0.696012,0.70408,0.266854,0.400809,0.062574,0.664107,0.666153,0.842027,0.439519,0.373967,0.630105,0.262204,0.322861,0.0565684,0.450323,0.508986,0.945166,0.617822,0.392012,0.24665,0.191282,0.303617,0.00901037,0.522698,0.571897,0.406343,0.55578,0.423243,0.606478,0.308924,0.850831,0.740146,0.513929,0.362258,0.98816,0.036478,0.390888,0.469747,0.936352,0.994854,0.666751,0.342464,0.658248,0.53316,0.654001,0.123593,0.870143,0.164149,0.876019,0.115321,0.425451,0.853681,0.10113,0.641727,0.182614,0.336566,0.0758879,0.752585,0.935832,0.0638714,0.251413,0.744295,0.891925,0.871495,0.862349,0.595392,0.0376891,0.729752,0.35126,0.883592,0.128177,0.842325,0.250467,0.769189,0.153584,0.597845,0.281792,0.37073,0.339812,0.957384,0.242373,0.737231,0.613425,0.840182,0.300789,0.732415,0.636678,0.488457,0.133032,0.469418,0.519992,0.967335,0.853475,0.110859,0.55222,0.0973701,0.218876,0.830467,0.360502,0.0929699,0.744941,0.780767,0.0138925,0.190116,0.148749,0.522926,0.404239,0.85729,0.383907,0.886994,0.754552,0.303424,0.0303143,0.86721,0.370621,0.758614,0.239797,0.850011,0.0526809,0.457989,0.499799,0.803063,0.0103952,0.444033,0.337358,0.129661,0.77896,0.765454,0.8891,0.708286,|0.631134,0.952921,0.609691,0.409411,0.173872,0.145487,0.996109,0.801459,0.594375,0.800049,0.0625573,0.265124,0.53954,0.543498,0.239445,0.614663,0.964009,0.863168,0.480854,0.836219,0.706858,0.420731,0.309378,0.0250331,0.267692,0.0449929,0.830831,0.0256037,0.409649,0.77543,0.563959,0.197138,0.748843,0.0273809,0.0115715,0.790591,0.814846,0.45877,0.194789,0.97964,0.899973,0.115663,0.0896789,0.298571,0.361867,0.140155,0.479203,0.0851393,0.662585,0.593851,0.513731,0.669379,0.0427883,0.440776,0.991257,0.00350958,0.540353,0.0471399,0.811962,0.554945,0.940036,0.865725,0.271314,0.453544,0.762692,0.316232,0.533523,0.94911,0.679271,0.122034,0.320006,0.3274,0.386828,0.928859,0.257159,0.0891986,0.649124,0.589303,0.729735,0.968694,0.0753423,0.0869393,0.73841,0.351199,0.50955,0.490898,0.731695,0.535281,0.240729,0.11862,0.691068,0.676165,0.737622,0.183784,0.0966878,0.535656,0.0143984,0.652387,0.55396,0.967264,0.424639,0.0725673,0.0568855,0.141909,0.125285,0.0908154,0.0504318,0.349608,0.0832288,0.62886,0.983929,0.232491,0.726474,0.0967311,0.39389,0.429047,0.940613,0.782881,0.165389,0.163904,0.573667,0.164721,0.446804,0.502885,0.0418639,0.722894,0.49969,0.633909,0.883161,0.365784,0.294814,0.514268,0.388279,0.971787,0.465618,0.63807,0.175967,0.69855,0.68338,0.455189,0.315136,0.315656,0.401256,0.729538,0.689392,0.0189673,0.914672,0.430314,0.176647,0.152717,0.740722,0.510024,0.0312589,0.247424,0.633448,0.0474384,0.41408,0.333467,0.376581,0.17815,0.515054,0.691476,0.49231,0.433579,0.675637,0.158459,0.0844743,0.946517,0.638334,0.761012,0.626849,0.728684,0.95326,0.545048,0.0846367,0.835034,0.619366,0.727206,0.680677,0.152192,0.289089,0.275491,0.435405,0.235456,0.540309,0.084825,0.620189,0.377882,0.147139,0.796548,0.642755,0.646042,0.219275,0.424505,0.815847,0.331225,0.2923,0.0165352,0.504468,0.240232,0.824587,0.312556,0.225118,0.264467,0.868778,0.156401,0.0791116,0.555436,0.737719,0.101943,0.0587732,0.870241,0.748231,0.96715,0.651041,0.186597,0.150269,0.516986,0.731188,0.920628,0.509903,0.69396,0.756773,0.25748,0.526643,0.965776,0.857492,0.124114,0.878812,0.276302,0.552149,0.737253,0.704341,0.426183,0.360671,0.393687,0.610682,0.205953,0.980725,0.693851,0.324212,0.928616,0.553856,0.0117393,0.938103,0.563395,0.663056,0.0336032,0.293028,0.877345,0.0428871,0.305596,0.483713,0.78287,0.0910719,0.677869,0.392418,0.971437,0.686374,0.0898447,0.515204,0.514591,0.463676,0.702399,0.415716,0.0571938,0.0830483,0.916217,0.835895,0.049314,0.0697102,0.146445,0.621001,0.377624,0.0423787,0.400174,0.733366,0.139054,0.471974,0.370016,0.0108986,0.844941,0.686857,0.988321,0.786182,0.925,0.366944,0.676999,0.27105,0.876436,0.711865,0.273731,0.282796,0.165562,0.146793,0.963311,0.650586,0.671518,0.196155,0.989583,0.742378,0.0159388,0.180976,0.564201,0.432958,0.677891,0.684044,0.635399,0.384944,0.810057,0.879864,0.790775,0.818301,0.331543,0.866307,0.446207,0.859286,0.739383,0.842855,0.982643,0.225702,0.907495,0.75541,0.335843,0.896664,0.0971804,0.245265,0.854907,0.38217,0.773355,0.997351,0.358126,0.580318,0.80621,0.543072,0.758577,0.225895,0.64803,0.818659,0.864336,0.805117,0.121043,0.423811,0.765548,0.00470787,0.163351,0.408045,0.19765,0.504146,0.130231,0.325501,0.205709,0.385627,0.116617,0.369526,0.981932,0.938344,0.343148,0.280847,0.432192,0.433068,0.354476,0.455536,0.112005,0.0317681,0.838508,0.683208,0.933975,0.892032,0.634517,0.537669,0.799333,0.883791,0.136063,0.996892,0.0950252,0.372651,0.621269,0.286117,0.0635986,0.548319,0.0727079,0.956928,0.701688,0.345383,0.811552,0.101622,0.714677,0.271999,0.0882966,0.661514,0.902094,0.915057,0.487478,0.843431,0.729447,0.174497,0.157698,0.488027,0.501689,0.587884,0.799095,0.546065,0.202924,0.219843,0.546175,0.398317,0.932503,0.903929,0.364803,0.917013,0.356206,0.334663,0.631567,0.0151383,0.636946,0.875964,0.7466,0.495411,0.917514,0.962995,0.580086,0.440235,0.274017,0.131689,0.855422,0.758889,0.447114,0.212053,0.370014,0.770215,0.460885,0.0470116,0.76515,0.899707,0.817666,0.0701467,0.297355,0.0441466,0.704077,0.937733,0.886428,0.0689682,0.877814,0.814715,0.0953221,0.882065,0.558012,0.0603536,0.196582,0.320578,0.0451046,0.775629,0.661332,0.439328,0.132465,0.567685,0.285191,0.0313548,0.553801,0.280656,0.560815,0.190141,0.975471,0.718154,0.181878,0.303123,0.505267,0.983007,0.771223,0.504184,0.38624,0.943911,0.815626,0.424641,0.592087,0.597514,0.180073,0.583099,0.788727,0.928736,0.636087,0.495175,0.23923,0.457943,0.494409,0.305296,0.927025,0.204349,0.678292,0.888837,0.289803,0.550856,0.252988,0.113754,0.611861,0.982508,0.234996,0.216711,0.760326,0.360949,0.624757,0.0189226,0.0608593,0.475169,0.791011,0.825066,0.19048,0.503535,0.0174114,0.518028,0.986854,0.459897,0.908951,0.61357,0.409415,0.957034,0.101052,0.157838,0.836962,0.335977,0.586816,0.218972,0.0505635,0.743924,0.21816,0.320998,0.910628,0.308251,0.606092,0.824335,0.750868,0.400781,0.584983,0.651386,0.453187,0.150903,0.146598,0.12628,0.190244,0.521819,0.0430026,0.747489,0.629353,0.864338,0.656605,0.4479,0.500274,0.754201,0.508182,0.596483,0.0192947,0.933445,0.931785,0.972044,0.383025,0.842099,0.143778,0.760359,0.200666,0.307397,0.215976,0.940871,0.506691,0.196918,0.564151,0.820761,0.784574,0.368682,0.258809,0.604629,0.955794,0.287003,0.709316,0.236963,0.0842494,0.656664,0.388511,0.882125,0.832367,0.377943,0.059347,0.702724,0.277991,0.516537,0.449777,0.420872,0.0465997,0.348724,0.142006,0.133511,0.621984,0.0844436,0.0207656,0.51721,0.697852,0.362714,0.489339,0.242539,0.09426,0.941254,0.64483,0.0883985,0.0473269,0.574637,0.251949,0.884956,0.95483,0.964691,0.540018,0.841332,0.134557,0.529826,0.0496239,0.226481,0.715528,0.265388,0.609743,0.970066,0.542806,0.981637,0.568741,0.796876,0.59715,0.14502,0.477012,0.627021,0.904195,0.441963,0.854622,0.52529,0.581942,0.864044,0.932155,0.734907,0.832496,0.354112,0.584078,0.365124,0.315633,0.115227,0.0505146,0.00793308,0.38485,0.632295,0.862794,0.653433,0.569848,0.351801,0.08832,0.277943,0.218212,0.293705,0.203325,0.635618,0.259759,0.255835,0.0949665,0.887326,0.236137,0.469675,0.0193842,0.271293,0.0885566,0.583736,0.721398,0.547517,0.890106,0.849557,0.331941,0.74813,0.63157,0.244055,0.684146,0.729068,0.0337474,0.63767,0.262431,0.688543,0.42114,0.802602,0.175798,0.640356,0.029097,0.702061,0.963635,0.681351,0.495867,0.132645,0.0648851,0.403357,0.616886,0.991593,0.178887,0.51667,0.46747,0.243933,0.877951,0.333009,0.876469,0.014534,0.81993,0.974557,0.906638,0.0236933,0.565216,0.619118,0.750954,0.405706,0.242387,0.283887,0.744994,0.702417,0.58099,0.0304883,0.779853,0.829786,0.0169308,0.910781,0.304674,0.271397,0.119761,0.246072,0.700558,0.635444,0.966149,0.0509752,0.907804,0.621176,0.488866,0.0792731,0.995325,0.522511,0.519479,0.819425,0.324709,0.134602,0.470538,0.475181,0.0873404,0.750118,0.968256,0.113679,0.129531,0.298155,0.813601,0.500735,0.206674,0.414602,0.723408,0.298956,0.0937131,0.602807,0.0979055,0.655711,0.385388,0.564813,0.519005,0.322377,0.567014,0.94207,0.181526,0.803994,0.423466,0.187364,0.887517,0.534797,0.466215,0.63264,0.953297,0.896077,0.393097,0.540041,0.656122,0.880204,0.17034,0.728385,0.221627,0.96203,0.931363,0.50948,0.376376,0.886799,0.46353,0.0946178,0.157409,0.921362,0.945541,0.170135,0.336688,0.405781,0.675942,0.101654,0.670297,0.541172,0.316447,0.209454,0.260418,0.0341151,0.213979,0.2897,0.970753,0.0256482,0.103523,0.910655,0.799456,0.982767,0.99013,0.805928,0.837242,0.612227,0.674277,0.58978,0.69923,0.192136,0.985079,0.121053,0.203249,0.0176346,0.577496,0.415798,0.588853,0.797243,0.850272,0.476482,0.517255,0.172199,0.759767,0.169823,0.777513,0.433068,0.946561,0.139646,0.484178,0.754124,0.116506,0.903595,0.345791,0.973473,0.446289,0.502382,0.878018,0.605962,0.57372,0.0341086,0.175037,0.542341,0.3478,0.0211441,0.823811,0.810892,0.976297,0.530725,0.770614,0.607533,0.654722,0.890899,0.364777,0.133548,0.386457,0.488916,0.209711,0.867764,0.740494,0.754615,0.311252,0.0390284,0.874005,0.587724,0.814729,0.285856,0.296155,0.294451,0.371945,0.992787,0.76877,0.427038,0.857794,0.448979,0.277205,0.157252,0.438327,0.703026,0.746206,0.573779,0.419736,0.20949,0.632734,0.34696,0.761832,0.629429,0.880323,0.452495,0.817495,0.410866,0.788619,0.429302,0.210599,0.586169,0.19865,0.902651,0.604752,0.426316,0.466459,0.923637,0.150275,0.117866,0.555793,0.989014,0.228,0.849118,0.928703,0.584125,0.866388,0.417975,0.985569,0.545852,0.593955,0.998106,0.438802,0.370688,0.811608,0.0496593,0.0508644,0.0644404,0.725052,0.957154,0.602123,0.46357,0.479317,0.443231,0.43804,0.0198392,0.862176,0.548553,0.800061,0.822474,0.279801,0.00172347,0.159825,0.313648,0.181189,0.301156,0.216144,0.280504,0.382746,0.923017,0.982412,0.606671,0.295614,0.429674,0.646512,0.100469,0.914664,0.921797,0.227106,0.701077,0.831705,0.163256,0.755405,0.861201,0.606702,0.146501,0.89694,0.970815,0.35381,0.123021,0.528653,0.508122,0.359777,0.967088,0.174874,0.488582,0.212638,0.837814,0.675816,0.726894,0.802354,0.188359,0.86147,0.785908,0.828834,0.326255,0.617105,0.433356,0.351504,0.144735,0.0461318,0.887779,0.188603,0.901509,0.483812,0.828887,0.271975,0.590259,0.811352,0.546646,0.986351,0.711331,0.950687,|0.516136,0.074303,0.926326,0.759601,0.630653,0.634888,0.600706,0.295088,0.625627,0.876982,0.119512,0.596249,0.992023,0.265065,0.344862,0.0668091,0.538022,0.0253433,0.590444,0.956523,0.290519,0.237007,0.624581,0.959513,0.642541,0.0864605,0.453071,0.298412,0.150577,0.29377,0.614193,0.860259,0.820755,0.916264,0.0472217,0.93434,0.486363,0.117683,0.531714,0.328994,0.0384506,0.871395,0.381497,0.808512,0.186096,0.552446,0.17688,0.49189,0.278788,0.795464,0.920052,0.167724,0.367342,0.413515,0.225618,0.837374,0.370306,0.116845,0.383199,0.888554,0.8968,0.800545,0.953779,0.878044,0.641333,0.747624,0.327822,0.816049,0.541216,0.971637,0.796207,0.992638,0.947732,0.654189,0.582659,0.455951,0.881177,0.433196,0.204781,0.254028,0.0649844,0.43004,0.586414,0.930465,0.665864,0.0797736,0.0660787,0.829195,0.260526,0.998639,0.0546632,0.43383,0.231296,0.834512,0.69459,0.41842,0.972385,0.872919,0.253186,0.34378,0.541283,0.463358,0.459433,0.643316,0.76992,0.208485,0.796055,0.322136,0.433936,0.923886,0.921753,0.701757,0.543802,0.357871,0.0305735,0.466475,0.0455803,0.957096,0.810596,0.737921,0.796681,0.942511,0.45124,0.0865429,0.219646,0.285717,0.864955,0.726036,0.133781,0.552579,0.63539,0.771538,0.0299697,0.0701255,0.463737,0.854751,0.818643,0.0968162,0.896685,0.295085,0.299191,0.752865,0.68498,0.425689,0.742146,0.628826,0.763963,0.733947,0.92642,0.383043,0.943371,0.108169,0.616458,0.368741,0.219964,0.0528204,0.171812,0.146231,0.530682,0.885927,0.740691,0.780122,0.117857,0.0367793,0.986803,0.275819,0.148971,0.496417,0.141322,0.156417,0.764353,0.422732,0.486466,0.820004,0.321314,0.735258,0.847301,0.453613,0.359814,0.617513,0.451225,0.55849,0.013808,0.132163,0.573605,0.947773,0.648201,0.292384,0.193983,0.586097,0.275127,0.0703207,0.944681,0.531716,0.812533,0.274479,0.853955,0.43306,0.757254,0.247328,0.107016,0.932472,0.58067,0.125754,0.208535,0.707303,0.584697,0.915916,0.0891885,0.733048,0.996685,0.506556,0.262394,0.178939,0.447751,0.0176992,0.85983,0.931101,0.783931,0.173988,0.420291,0.349026,0.122698,0.275653,0.214146,0.409501,0.891895,0.447036,0.134461,0.68129,0.618132,0.521276,0.260174,0.618009,0.932633,0.109309,0.621019,0.998595,0.973204,0.306348,0.467818,0.369435,0.0770342,0.623692,0.556407,0.382361,0.427924,0.186135,0.649262,0.873294,0.988349,0.308032,0.264182,0.0163336,0.0638245,0.0242791,0.255088,0.0829536,0.237921,0.158011,0.508233,0.820258,0.0335377,0.743063,0.394855,0.836685,0.98389,0.424541,0.210931,0.400746,0.138842,0.545497,0.683801,0.914691,0.590196,0.575017,0.745737,0.990325,0.129408,0.596318,0.504097,0.0877566,0.875239,0.0662539,0.317922,0.0204134,0.124683,0.556522,0.723032,0.278385,0.31568,0.406489,0.165286,0.838065,0.731004,0.548986,0.470818,0.604518,0.705216,0.36551,0.824855,0.793187,0.897334,0.195259,0.241817,0.948207,0.444838,0.655955,0.69916,0.790975,0.278391,0.837727,0.266596,0.0369927,0.551084,0.357691,0.831175,0.67181,0.633313,0.564354,0.721574,0.981889,0.510979,0.713591,0.398099,0.870723,0.925951,0.400196,0.38523,0.407484,0.299993,0.583955,0.921742,0.816103,0.809555,0.912674,0.152695,0.720885,0.642848,0.38598,0.734819,0.733024,0.98989,0.021449,0.280267,0.9179,0.448159,0.849185,0.712705,0.155684,0.318266,0.987124,0.428664,0.509033,0.633049,0.137957,0.0725788,0.352568,0.662172,0.00334394,0.799298,0.846044,0.196361,0.804472,0.128935,0.453042,0.302094,0.209674,0.944868,0.991048,0.788401,0.308466,0.259915,0.457056,0.666749,0.552684,0.411041,0.742305,0.936533,0.894905,0.0248528,0.656136,0.808288,0.905948,0.603877,0.212512,0.358742,0.24881,0.115001,0.969961,0.0147367,0.444996,0.91934,0.35429,0.987224,0.854471,0.331105,0.24466,0.30958,0.909261,0.269124,0.00684178,0.314535,0.576543,0.412918,0.394446,0.696155,0.0372921,0.983412,0.593722,0.130696,0.871877,0.756416,0.924041,0.838663,0.602763,0.0406621,0.313727,0.948923,0.010807,0.280942,0.433872,0.162258,0.198257,0.0688573,0.570305,0.413005,0.562966,0.739251,0.0785964,0.95176,0.0691954,0.568347,0.0566018,0.903348,0.733169,0.119342,0.154073,0.763407,0.166203,0.702226,0.560606,0.281191,0.550075,0.206729,0.205601,0.355425,0.329836,0.622558,0.637625,0.22194,0.422812,0.927925,0.0168923,0.87852,0.856145,0.108035,0.746861,0.651209,0.700646,0.186967,0.759664,0.388353,0.863737,0.939935,0.244781,0.231782,0.480046,0.907005,0.052361,0.842182,0.812003,0.440408,0.0354737,0.439503,0.731675,0.163442,0.183391,0.80465,0.964254,0.246109,0.665735,0.511593,0.617232,0.147675,0.838259,0.148591,0.380422,0.858978,0.206831,0.0546426,0.370072,0.158107,0.64155,0.723326,0.320622,0.721668,0.844951,0.701476,0.427477,0.758134,0.292624,0.777923,0.24263,0.406034,0.113786,0.0364155,0.645196,0.838686,0.639162,0.0249113,0.233889,0.575263,0.464919,0.373672,0.602119,0.392399,0.0147256,0.639037,0.674674,0.00407416,0.438591,0.239418,0.729894,0.993342,0.47257,0.0813586,0.558472,0.669009,0.57958,0.540701,0.645276,0.0855584,0.874706,0.304609,0.22359,0.125296,0.356199,0.744984,0.0341216,0.00153339,0.230393,0.997714,0.489227,0.153343,0.190295,0.503659,0.049628,0.0237059,0.650213,0.473163,0.192958,0.475228,0.329919,0.686983,0.641586,0.6105,0.580812,0.645815,0.226038,0.998868,0.576254,0.272672,0.140956,0.0580818,0.787125,0.86891,0.670062,0.541161,0.626852,0.38754,0.0662047,0.545523,0.449124,0.308036,0.0929202,0.302157,0.00137007,0.332333,0.0155681,0.677377,0.0235432,0.774914,0.191249,0.3219,0.804726,0.689107,0.207418,0.410937,0.176094,0.285289,0.228789,0.833735,0.1607,0.960243,0.981153,0.96051,0.56723,0.223998,0.117356,0.486469,0.372379,0.972227,0.0487517,0.583754,0.749398,0.744563,0.265933,0.641203,0.919317,0.775514,0.902014,0.950755,0.530376,0.768778,0.392049,0.319113,0.0389487,0.753069,0.829781,0.819402,0.272355,0.641562,0.510584,0.613757,0.418581,0.527115,0.561748,0.576358,0.0841993,0.15664,0.161438,0.293375,0.780229,0.96788,0.854371,0.796978,0.448774,0.688513,0.460912,0.0552509,0.895108,0.172004,0.891959,0.558401,0.495382,0.985965,0.804822,0.371306,0.118867,0.260621,0.0451155,0.955886,0.622537,0.00858861,0.950617,0.376534,0.420822,0.440443,0.600916,0.526569,0.525418,0.706396,0.281313,0.122943,0.197364,0.297601,0.400482,0.993598,0.400348,0.0151396,0.390791,0.91134,0.270196,0.433757,0.9301,0.196026,0.0725856,0.112999,0.462868,0.639071,0.365057,0.0838885,0.340853,0.770494,0.727143,0.752403,0.633192,0.0173594,0.986603,0.869478,0.266148,0.712401,0.445066,0.21572,0.139998,0.8153,0.52456,0.915431,0.7998,0.907553,0.859506,0.110169,0.78327,0.501356,0.971943,0.765098,0.735314,0.237139,0.371768,0.874697,0.454635,0.977524,0.137319,0.0640895,0.365957,0.842708,0.150218,0.90131,0.692411,0.553263,0.595903,0.230779,0.840223,0.74032,0.0444634,0.463322,0.0841745,0.995299,0.134095,0.0430181,0.970988,0.555719,0.34485,0.260963,0.823336,0.948994,0.979322,0.315351,0.614967,0.677891,0.170407,0.0332565,0.783813,0.148959,0.414835,0.81118,0.621909,0.790145,0.34839,0.747171,0.852119,0.681538,0.72135,0.623994,0.612288,0.567898,0.993061,0.301296,0.758605,0.173851,0.760866,0.239977,0.592759,0.558683,0.612751,0.386676,0.94316,0.784044,0.940563,0.34586,0.683112,0.363885,0.224328,0.72091,0.190246,0.424369,0.396281,0.11887,0.901245,0.435047,0.044814,0.196823,0.146952,0.551757,0.621381,0.363778,0.882571,0.781184,0.707181,0.502022,0.748582,0.469298,0.668092,0.919986,0.00446779,0.747833,0.198517,0.644531,0.585694,0.432828,0.216557,0.15087,0.835853,0.375941,0.137594,0.92189,0.741525,0.566667,0.295535,0.563484,0.270836,0.843698,0.115838,0.843911,0.0537735,0.846599,0.497065,0.034681,0.0719761,0.39383,0.868263,0.797637,0.86192,0.72441,0.179407,0.139424,0.071502,0.766246,0.688929,0.711892,0.856077,0.44079,0.343429,0.781885,0.508492,0.281596,0.315652,0.441436,0.306711,0.979941,0.518706,0.280201,0.909603,0.106897,0.117705,0.999587,0.620933,0.529206,0.682761,0.393169,0.737173,0.0227343,0.630601,0.477172,0.947269,0.773319,0.306444,0.396086,0.209419,0.751281,0.61119,0.309388,0.725086,0.279433,0.434736,0.684967,0.142175,0.932333,0.454399,0.691555,0.882992,0.244375,0.657388,0.381467,0.381902,0.967556,0.75051,0.617626,0.543978,0.614126,0.519853,0.847522,0.993111,0.940262,0.88764,0.832238,0.496041,0.439229,0.437693,0.900622,0.984699,0.988417,0.564399,0.58875,0.216561,0.146473,0.234747,0.566745,0.00549054,0.634719,0.273533,0.471357,0.830476,0.887743,0.378709,0.959358,0.527305,0.250711,0.945527,0.151125,0.544917,0.226771,0.431591,0.26197,0.0855951,0.720141,0.0417581,0.146145,0.505267,0.408916,0.4454,0.0900838,0.756874,0.603582,0.407458,0.788905,0.747522,0.322424,0.44386,0.200837,0.849164,0.217785,0.232091,0.953463,0.268921,0.218601,0.646926,0.359858,0.561354,0.373989,0.475229,0.490611,0.658583,0.535995,0.832709,0.931771,0.838496,0.687849,0.786758,0.00837493,0.26878,0.710214,0.397917,0.642118,0.556645,0.669296,0.601367,0.695316,0.666028,0.83182,0.0838147,0.289184,0.747037,0.85665,0.454599,0.339944,0.495324,0.573721,0.912178,0.990394,0.886104,0.932067,0.620502,0.961055,0.29631,0.535563,0.811907,0.603876,0.211956,0.588817,0.899008,0.56008,0.106798,0.191808,0.679777,0.813239,0.928528,0.617685,0.650254,0.257606,0.228153,0.410289,0.0187939,0.952656,0.454532,0.450994,0.342141,0.165473,0.432069,|0.197441,0.510727,0.370242,0.422852,0.174209,0.526115,0.495727,0.970979,0.958337,0.512363,0.332615,0.385957,0.507867,0.00603372,0.167985,0.111276,0.527477,0.0363212,0.264496,0.540563,0.792492,0.771146,0.950464,0.647696,0.147782,0.0904969,0.837362,0.817867,0.569104,0.2223,0.0231177,0.434648,0.491168,0.544349,0.899061,0.443432,0.959029,0.250339,0.0130721,0.517138,0.0674174,0.733976,0.152511,0.845321,0.468538,0.743243,0.989384,0.0282803,0.877773,0.215567,0.392742,0.000137031,0.113842,0.965599,0.798943,0.32,0.32076,0.458953,0.701066,0.214717,0.899202,0.671997,0.414245,0.190108,0.0970126,0.790843,0.578965,0.29996,0.0558317,0.815997,0.711389,0.229059,0.871985,0.968803,0.955939,0.859514,0.0222592,0.573928,0.247618,0.781668,0.303409,0.849635,0.79088,0.181661,0.416338,0.255037,0.498871,0.161003,0.861309,0.294068,0.914985,0.154809,0.984605,0.508979,0.515676,0.0211941,0.89031,0.720122,0.989896,0.717377,0.869427,0.404595,0.193458,0.170839,0.445219,0.556805,0.508473,0.790433,0.899641,0.20511,0.469508,0.888826,0.103887,0.0388902,0.530694,0.672893,0.879863,0.851001,0.67865,0.400059,0.397075,0.984419,0.0823178,0.91415,0.578713,0.539354,0.741871,0.910148,0.858786,0.653766,0.208131,0.754513,0.174217,0.670308,0.092482,0.961251,0.646124,0.567075,0.334704,0.282593,0.925748,0.82232,0.0275419,0.224426,0.568138,0.312627,0.592932,0.150271,0.726507,0.7869,0.499412,0.290301,0.556041,0.176375,0.0552786,0.657682,0.501893,0.88032,0.0528358,0.572573,0.549407,0.32496,0.0975152,0.0213802,0.830473,0.0812459,0.387082,0.570498,0.27668,0.768034,0.693001,0.349725,0.321437,0.0651429,0.195513,0.0523584,0.533763,0.342536,0.514352,0.358091,0.489634,0.10921,0.890923,0.0526446,0.593163,0.60067,0.591365,0.544776,0.532328,0.209001,0.00838792,0.403902,0.847595,0.970471,0.817538,0.738728,0.983592,0.302792,0.753888,0.639192,0.348117,0.868313,0.894869,0.329757,0.438254,0.360779,0.658527,0.807499,0.965684,0.138547,0.73338,0.683348,0.454445,0.366928,0.126694,0.845142,0.873924,0.0154957,0.886456,0.122162,0.0652336,0.962048,0.450508,0.314296,0.113169,0.0145225,0.428347,0.31428,0.26742,0.519512,0.410443,0.504497,0.265586,0.526038,0.155246,0.196536,0.833527,0.083461,0.151528,0.77537,0.0558498,0.211429,0.375568,0.554095,0.267574,0.209523,0.39273,0.608092,0.31432,0.489348,0.0871543,0.85498,0.616984,0.275841,0.177129,0.429629,0.147413,0.706974,0.999964,0.184963,0.770956,0.590029,0.747066,0.931838,0.385418,0.100353,0.673718,0.750396,0.255431,0.906719,0.0187601,0.315612,0.623736,0.917403,0.582394,0.158083,0.339574,0.738555,0.744764,0.576719,0.290417,0.0295137,0.71037,0.506346,0.205472,0.020685,0.0879422,0.138604,0.175823,0.477796,0.801733,0.833518,0.388405,0.952836,0.132698,0.366322,0.939149,0.90153,0.466042,0.156649,0.811694,0.869297,0.651506,0.101127,0.115221,0.205221,0.451857,0.882595,0.276883,0.102314,0.973023,0.74993,0.404495,0.434933,0.428978,0.98989,0.0593143,0.692356,0.688608,0.575575,0.670639,0.144906,0.0896016,0.536768,0.903826,0.22878,0.278434,0.615153,0.302917,0.294402,0.202426,0.679655,0.113697,0.557328,0.320719,0.893661,0.913555,0.0417387,0.188568,0.691093,0.773792,0.736418,0.371803,0.353948,0.111238,0.591614,0.683113,0.395853,0.617383,0.0486914,0.460696,0.581221,0.529757,0.897251,0.59235,0.395298,0.795039,0.747985,0.939093,0.412473,0.895846,0.0750693,0.252371,0.495882,0.625283,0.292443,0.710318,0.206141,0.348041,0.383187,0.84177,0.835219,0.163363,0.619338,0.0393837,0.465145,0.717021,0.706788,0.907469,0.404331,0.862001,0.909903,0.680313,0.158515,0.983095,0.340159,0.398323,0.675846,0.681737,0.797592,0.165747,0.429906,0.0773213,0.382176,0.103951,0.00298852,0.975445,0.506314,0.152876,0.324433,0.894816,0.284611,0.463014,0.530362,0.790936,0.867729,0.487218,0.132373,0.714539,0.801241,0.682538,0.841652,0.608562,0.907483,0.962474,0.668062,0.027805,0.665729,0.902316,0.142599,0.901263,0.0141513,0.525532,0.764937,0.365751,0.170319,0.636405,0.43026,0.829442,0.922181,0.605622,0.163716,0.230684,0.307627,0.409134,0.0679988,0.596882,0.724392,0.3933,0.380113,0.768561,0.858851,0.0845506,0.452494,0.583583,0.899983,0.648441,0.581131,0.643871,0.366378,0.536377,0.875267,0.457655,0.293707,0.106959,0.466505,0.547688,0.905092,0.975833,0.100976,0.0300714,0.359235,0.0367604,0.918953,0.346672,0.965742,0.0810131,0.607003,0.917739,0.73611,0.626122,0.41227,0.737885,0.476395,0.262253,0.858095,0.786092,0.685316,0.922519,0.596595,0.86348,0.503949,0.541528,0.490693,0.149205,0.606491,0.661452,0.798421,0.227696,0.602975,0.646086,0.367558,0.768188,0.794939,0.561125,0.614103,0.352956,0.60539,0.114355,0.303083,0.528847,0.228371,0.92807,0.671119,0.308472,0.543947,0.327093,0.493323,0.977723,0.761051,0.29074,0.674684,0.944158,0.587316,0.437442,0.934685,0.64741,0.453527,0.923477,0.202441,0.322532,0.657369,0.167478,0.592225,0.495498,0.949506,0.824832,0.849458,0.121554,0.623191,0.26128,0.0730244,0.524624,0.309055,0.00969654,0.61464,0.948217,0.762281,0.758035,0.478879,0.670781,0.39983,0.523052,0.765734,0.986461,0.726006,0.10067,0.363487,0.818159,0.180686,0.126589,0.145277,0.56311,0.435358,0.061344,0.0047093,0.905349,0.312823,0.614472,0.231181,0.187724,0.134492,0.635203,0.748885,0.748627,0.991896,0.379298,0.719689,0.832662,0.683315,0.219901,0.507064,0.826467,0.248095,0.690822,0.605102,0.218529,0.108352,0.548891,0.117965,0.0963235,0.500461,0.803611,0.792903,0.364083,0.51102,0.910284,0.915212,0.997661,0.0348405,0.134286,0.745475,0.721138,0.305822,0.0036552,0.793738,0.190449,0.7155,0.22269,0.0734364,0.473113,0.0949911,0.126143,0.136975,0.115006,0.695946,0.77318,0.729201,0.679229,0.204447,0.525896,0.583771,0.0329161,0.0378693,0.890683,0.737146,0.239681,0.680127,0.306621,0.512423,0.555297,0.305528,0.769847,0.881542,0.624755,0.0227442,0.900122,0.497658,0.187867,0.635029,0.408239,0.220155,0.418183,0.451929,0.146821,0.413715,0.9308,0.55361,0.457337,0.681219,0.791803,0.0425716,0.686521,0.794731,0.0661626,0.367167,0.00600696,0.00085628,0.173577,0.825195,0.389176,0.57677,0.516283,0.595646,0.315953,0.939937,0.406443,0.102382,0.200621,0.933773,0.801454,0.850042,0.835377,0.37035,0.0877226,0.220928,0.506287,0.0823982,0.277693,0.14884,0.120662,0.621737,0.513798,0.278881,0.0275759,0.440512,0.742726,0.168652,0.237889,0.259038,0.240625,0.52933,0.417921,0.0860333,0.169701,0.369753,0.289682,0.907556,0.450901,0.98779,0.822367,0.722179,0.393574,0.378883,0.452928,0.427506,0.137508,0.00189286,0.862015,0.820608,0.167407,0.231064,0.12121,0.203152,0.806022,0.55202,0.564086,0.0583974,0.0975301,0.607976,0.979262,0.568135,0.310368,0.808888,0.151175,0.371519,0.233381,0.338356,0.5054,0.697696,0.256776,0.0215806,0.753319,0.804331,0.625078,0.823268,0.652812,0.611785,0.630604,0.0839013,0.899422,0.710303,0.614238,0.0407559,0.745945,0.430378,0.158444,0.874749,0.7679,0.303365,0.634647,0.729072,0.077342,0.608899,0.662449,0.736957,0.605215,0.28047,0.2273,0.524292,0.295775,0.0955906,0.799697,0.358231,0.996813,0.807327,0.518751,0.78108,0.442777,0.118473,0.245532,0.197985,0.733821,0.750837,0.24004,0.101454,0.691538,0.163187,0.808043,0.976334,0.844554,0.807798,0.407646,0.358969,0.377401,0.476223,0.281482,0.810141,0.960304,0.262962,0.669632,0.296378,0.385796,0.360304,0.570183,0.465357,0.979607,0.0342301,0.739886,0.955792,0.496481,0.302007,0.0105524,0.267535,0.716977,0.795137,0.937464,0.965388,0.132868,0.912418,0.935923,0.959169,0.412618,0.41587,0.171701,0.551529,0.756355,0.620201,0.513947,0.511075,0.73725,0.179186,0.18674,0.715958,0.372563,0.0460083,0.73247,0.0115362,0.977985,0.28135,0.19857,0.387614,0.477285,0.640362,0.767555,0.934973,0.381027,0.794639,0.311701,0.622342,0.40091,0.817707,0.619495,0.292787,0.782535,0.0190035,0.217959,0.180705,0.402439,0.13844,0.386765,0.205167,0.331298,0.690099,0.00152647,0.452257,0.261078,0.380672,0.343823,0.977201,0.14636,0.766701,0.264392,0.469537,0.197632,0.463597,0.144978,0.768741,0.679171,0.157766,0.0570085,0.278885,0.25607,0.135604,0.295394,0.491048,0.204924,0.742446,0.547987,0.882055,0.653457,0.640894,0.918652,0.108822,0.901467,0.607087,0.860403,0.092708,0.841208,0.896715,0.582102,0.636428,0.896805,0.767472,0.833963,0.0578756,0.160134,0.607483,0.767676,0.228662,0.304342,0.218423,0.390658,0.147972,0.310738,0.765027,0.46954,0.756113,0.911022,0.822504,0.858496,0.0833665,0.704529,0.755375,0.780696,0.353803,0.0743044,0.513145,0.910649,0.911039,0.399609,0.718502,0.687012,0.924988,0.477017,0.921237,0.210581,0.237373,0.955686,0.239057,0.55167,0.0239694,0.787283,0.756427,0.782854,0.189086,0.43601,0.0563965,0.242583,0.817494,0.391425,0.699991,0.338734,0.320883,0.483186,0.683803,0.770137,0.623692,0.518018,0.40226,0.616763,0.502925,0.764844,0.675182,0.543491,0.56898,0.378608,0.179774,0.214535,0.713278,0.0409182,0.712236,0.291722,0.975684,0.125994,0.5212,0.233661,0.162628,0.474904,0.604071,0.474304,0.854191,0.271479,0.138322,0.735333,0.662433,0.484325,0.273814,0.188757,0.569218,0.307061,0.184995,0.906786,0.557094,0.103675,0.240393,0.529293,0.979771,0.912737,0.857214,0.122347,0.555692,0.894887,0.515031,0.398264,0.193274,0.725217,0.954064,0.271995,0.612564,0.760605,0.24107,0.147877,0.670363,0.997454,0.778054,0.734102,0.762687,0.933845,0.186985,|0.103516,0.818318,0.0877239,0.330444,0.317779,0.931757,0.476077,0.965627,0.648601,0.0580844,0.836516,0.844907,0.0422215,0.607724,0.791221,0.0234508,0.591347,0.289519,0.341315,0.347273,0.938289,0.729265,0.0803022,0.541935,0.808164,0.516823,0.915843,0.911619,0.528746,0.854737,0.857968,0.104182,0.77887,0.52293,0.893378,0.571161,0.251234,0.664251,0.0383751,0.333927,0.117596,0.603711,0.242627,0.554648,0.984354,0.285461,0.611827,0.428342,0.283963,0.636288,0.515862,0.528549,0.609674,0.792017,0.182907,0.106441,0.240993,0.811066,0.872773,0.659829,0.896657,0.700918,0.890281,0.423151,0.420991,0.573834,0.00879657,0.0764629,0.39114,0.180732,0.14683,0.896139,0.0795072,0.602686,0.148835,0.287105,0.0907849,0.418137,0.053392,0.0275706,0.337491,0.793572,0.578495,0.823645,0.431742,0.229162,0.961131,0.81297,0.583074,0.3909,0.0242576,0.74421,0.801632,0.00644082,0.578738,0.806685,0.496664,0.545838,0.675812,0.579935,0.699139,0.342079,0.178898,0.141023,0.134557,0.210297,0.907844,0.0295448,0.212228,0.0674916,0.0575338,0.527373,0.525089,0.258573,0.337039,0.404338,0.193599,0.614297,0.53292,0.271214,0.36884,0.919479,0.725769,0.195148,0.570454,0.64753,0.271537,0.0278733,0.992734,0.230466,0.595181,0.346396,0.887577,0.687495,0.141519,0.273252,0.829223,0.626803,0.143288,0.168819,0.586138,0.187802,0.284358,0.190796,0.542804,0.409275,0.590298,0.488832,0.393592,0.44492,0.301499,0.220009,0.0834277,0.572144,0.545547,0.586956,0.0669239,0.706381,0.500087,0.628662,0.808123,0.44302,0.809595,0.566225,0.2953,0.518583,0.308328,0.538515,0.367568,0.311263,0.87243,0.104417,0.147165,0.800753,0.893181,0.537189,0.165772,0.405133,0.971284,0.865471,0.120369,0.150884,0.776313,0.94398,0.982323,0.672723,0.770643,0.163516,0.0558502,0.197051,0.661232,0.664971,0.683739,0.851115,0.488567,0.701011,0.152688,0.371084,0.992198,0.659731,0.0362644,0.477916,0.102273,0.172403,0.55726,0.430447,0.879356,0.767489,0.603072,0.249598,0.999933,0.809747,0.175411,0.88958,0.845155,0.959358,0.189951,0.82065,0.231825,0.356641,0.42163,0.817722,0.369247,0.077098,0.957415,0.519667,0.292771,0.921917,0.363498,0.0423617,0.242754,0.513744,0.887278,0.642492,0.412287,0.709057,0.379363,0.881189,0.0184836,0.494908,0.463338,0.46331,0.346914,0.440168,0.16994,0.668353,0.426618,0.876333,0.599858,0.556268,0.631679,0.228587,0.34265,0.504988,0.793046,0.676275,0.11073,0.69183,0.727984,0.840629,0.156463,0.45627,0.897354,0.210828,0.561436,0.276151,0.244718,0.808203,0.572414,0.478657,0.906867,0.338679,0.496188,0.433718,0.33622,0.793225,0.218349,0.324608,0.781096,0.986826,0.345079,0.91089,0.288085,0.106415,0.176857,0.933247,0.635359,0.908892,0.431422,0.678192,0.0938692,0.0722383,0.770194,0.530645,0.14333,0.688916,0.707802,0.724581,0.639465,0.615113,0.650315,0.966372,0.803899,0.723324,0.189643,0.380472,0.518453,0.257883,0.951429,0.0151627,0.468513,0.883654,0.559844,0.905349,0.836275,0.0233874,0.329946,0.841767,0.209937,0.071522,0.602385,0.374673,0.835182,0.258266,0.307503,0.363709,0.999349,0.102481,0.0921878,0.724844,0.759153,0.85729,0.595829,0.268872,0.0284473,0.0441514,0.371023,0.0730603,0.207035,0.305864,0.786109,0.683697,0.228101,0.761334,0.790912,0.7636,0.723577,0.446382,0.321625,0.985052,0.674611,0.279746,0.0993748,0.227694,0.471229,0.167591,0.934105,0.911289,0.604702,0.73707,0.53182,0.930222,0.61638,0.727351,0.378409,0.192532,0.854404,0.318389,0.510741,0.565382,0.37148,0.0487264,0.474039,0.993533,0.157232,0.731538,0.371198,0.819934,0.149414,0.749661,0.535476,0.72811,0.0306939,0.11498,0.833213,0.0549061,0.505619,0.830516,0.908437,0.305887,0.898569,0.256066,0.236266,0.924142,0.333697,0.0738803,0.837473,0.901783,0.612875,0.904902,0.607026,0.738242,0.419599,0.766713,0.734253,0.994755,0.244167,0.69831,0.589788,0.767188,0.228484,0.895182,0.612896,0.313528,0.514983,0.641779,0.869848,0.932508,0.488566,0.0766478,0.612563,0.133842,0.203311,0.54678,0.773354,0.108233,0.396308,0.0796853,0.319132,0.559486,0.597889,0.256719,0.60621,0.86568,0.606053,0.464847,0.121209,0.873958,0.668312,0.302955,0.804833,0.555069,0.682564,0.218345,0.145172,0.427545,0.370925,0.25259,0.757811,0.808668,0.604838,0.0693066,0.877914,0.137775,0.0964125,0.0119942,0.32648,0.557538,0.986746,0.354727,0.110976,0.461731,0.45933,0.721845,0.139908,0.127304,0.700876,0.373457,0.601792,0.635945,0.805443,0.5207,0.841386,0.55096,0.142853,0.526713,0.108285,0.4104,0.579041,0.120348,0.379189,0.163861,0.499409,0.868205,0.348958,0.107991,0.342376,0.642239,0.690607,0.0329834,0.306648,0.395071,0.690468,0.854344,0.872886,0.986956,0.617412,0.386584,0.408352,0.643106,0.243223,0.968266,0.0454952,0.947108,0.173972,0.705414,0.356766,0.325551,0.560393,0.45533,0.0345056,0.103849,0.167459,0.657199,0.404223,0.588303,0.913606,0.216229,0.156316,0.0911127,0.632702,0.221125,0.961821,0.0350853,0.190609,0.254699,0.250378,0.500886,0.0216779,0.951903,0.738255,0.752304,0.692043,0.351817,0.763383,0.00510526,0.143772,0.272339,0.181477,0.487831,0.3565,0.615766,0.122059,0.899782,0.891587,0.671098,0.564377,0.812628,0.273649,0.449654,0.146133,0.586563,0.168685,0.0516068,0.741517,0.691662,0.062216,0.151432,0.719767,0.247985,0.178664,0.0802011,0.391517,0.26844,0.0754495,0.374764,0.336301,0.589554,0.738564,0.995254,0.127296,0.479015,0.786847,0.231154,0.23583,0.666483,0.157683,0.255551,0.478413,0.833173,0.0773126,0.610181,0.181464,0.930408,0.475845,0.206111,0.744286,0.461387,0.653024,0.00313264,0.61736,0.252088,0.328045,0.778128,0.658174,0.851383,0.724327,0.16926,0.769437,0.429423,0.462923,0.531036,0.62047,0.621535,0.0822239,0.892358,0.133406,0.593296,0.371496,0.720957,0.795726,0.832446,0.99112,0.527703,0.853197,0.503342,0.637867,0.907971,0.157185,0.968949,0.997358,0.357649,0.774225,0.306895,0.845943,0.825073,0.55985,0.412113,0.224104,0.327927,0.366444,0.748111,0.0409069,0.344851,0.010501,0.753271,0.422319,0.226342,0.25902,0.673143,0.572755,0.932894,0.688874,0.793345,0.40423,0.300419,0.354369,0.688388,0.193044,0.971578,0.744453,0.686241,0.209887,0.37058,0.989763,0.0622827,0.538154,0.813755,0.0998869,0.59203,0.0324233,0.472668,0.467569,0.979502,0.704157,0.091997,0.617948,0.938899,0.636082,0.08349,0.358334,0.796552,0.591932,0.653126,0.183083,0.574054,0.235059,0.690653,0.967878,0.364904,0.123043,0.497652,0.977794,0.333195,0.909656,0.729799,0.81814,0.670707,0.298213,0.739614,0.641844,0.797197,0.614631,0.0785115,0.373686,0.678889,0.0560697,0.582988,0.827427,0.375144,0.497833,0.224804,0.393743,0.643088,0.936047,0.750878,0.43039,0.325465,0.5227,0.37388,0.184511,0.00437832,0.0460374,0.4589,0.61764,0.457161,0.896967,0.057385,0.934065,0.571902,0.195953,0.53958,0.962713,0.600675,0.0178066,0.49487,0.767498,0.610238,0.459679,0.264873,0.375581,0.0107923,0.925533,0.144279,0.0224564,0.84629,0.539897,0.74129,0.675434,0.846997,0.795622,0.420716,0.327022,0.969101,0.76127,0.511888,0.933262,0.148084,0.215736,0.258156,0.799683,0.990818,0.824857,0.831164,0.459102,0.0220872,0.465643,0.0441225,0.388823,0.0425863,0.0293598,0.404024,0.444351,0.140848,0.527429,0.528857,0.595544,0.580339,0.491442,0.794467,0.590299,0.459855,0.947637,0.0961527,0.732202,0.85396,0.107055,0.660407,0.309398,0.832343,0.110664,0.560452,0.61502,0.643801,0.992672,0.888235,0.550074,0.677392,0.615715,0.616508,0.297513,0.999958,0.41924,0.216119,0.0114126,0.134079,0.677302,0.920164,0.0193969,0.176023,0.950369,0.754263,0.184311,0.79597,0.105055,0.472295,0.0852394,0.125708,0.563731,0.742019,0.485356,0.279607,0.702986,0.972478,0.402396,0.904713,0.601812,0.299,0.149246,0.453048,0.651814,0.565855,0.562048,0.0407922,0.127173,0.948452,0.910537,0.761627,0.862926,0.620219,0.850039,0.250319,0.288412,0.358086,0.294482,0.381571,0.233163,0.813535,0.157386,0.186027,0.547068,0.616947,0.0850157,0.0289938,0.507341,0.866824,0.76121,0.496086,0.836094,0.937104,0.498667,0.642929,0.334366,0.576941,0.967672,0.58253,0.224432,0.817876,0.499401,0.0464522,0.958809,0.161972,0.180159,0.527704,0.59558,0.999341,0.513287,0.400005,0.123193,0.0509394,0.134807,0.715041,0.292379,0.0549899,0.944309,0.369424,0.421468,0.485507,0.937421,0.498554,0.264053,0.385255,0.73186,0.435481,0.301983,0.984471,0.82085,0.168346,0.982185,0.750176,0.585428,0.980562,0.855348,0.620814,0.479526,0.96018,0.196606,0.856365,0.311706,0.65995,0.316204,0.0890086,0.61919,0.419102,0.801915,0.398361,0.433483,0.227655,0.422213,0.43228,0.994246,0.168858,0.79692,0.196832,0.663824,0.0565851,0.46345,0.727919,0.929352,0.843911,0.0451607,0.264355,0.0828469,0.410591,0.691237,0.587151,0.986214,0.678266,0.892775,0.705842,0.187029,0.386345,0.204174,0.455721,0.121657,0.0722135,0.197424,0.579202,0.0878928,0.168206,0.799747,0.393119,0.566769,0.880524,0.254041,0.584818,0.430838,0.863265,0.246497,0.444279,0.790783,0.366432,0.545233,0.0645861,0.361183,0.769252,0.92606,0.114361,0.963747,0.957384,0.289194,0.921662,0.886551,0.919007,0.681836,0.388243,0.468125,0.712113,0.530279,0.909954,0.00998414,0.545391,0.667219,0.519006,0.644725,0.882786,0.885006,0.30945,0.0398969,0.794101,0.651992,0.402266,0.0877594,0.779235,0.312653,0.895706,0.329805,0.886645,0.589645,0.221079,0.0308805,0.786102,0.229432,0.372781,0.716549,0.0505999,0.0962011,0.097236,0.0533658,0.7159,|0.958072,0.99825,0.15721,0.59668,0.771107,0.088559,0.119502,0.905668,0.109352,0.637661,0.769731,0.532578,0.206815,0.950003,0.0421956,0.528073,0.254389,0.151,0.155764,0.0459844,0.969781,0.804847,0.0410429,0.739195,0.843029,0.994177,0.403687,0.877402,0.313231,0.29066,0.285714,0.0955942,0.361116,0.923847,0.540843,0.248939,0.672783,0.842921,0.505821,0.418286,0.972302,0.967668,0.258785,0.429625,0.594651,0.648684,0.744807,0.729121,0.578402,0.346302,0.324503,0.295499,0.952353,0.0797122,0.456511,0.766828,0.434568,0.18295,0.818262,0.160522,0.605553,0.154483,0.467879,0.0787342,0.548945,0.0532466,0.0285485,0.785105,0.530617,0.269707,0.84217,0.297234,0.573865,0.702113,0.418997,0.87604,0.803038,0.484232,0.368671,0.679787,0.187216,0.475822,0.348703,0.845982,0.0502339,0.170107,0.496584,0.459604,0.637672,0.0403868,0.214184,0.964517,0.569271,0.6928,0.694808,0.876001,0.0207757,0.427945,0.813821,0.281769,0.323879,0.169154,0.49772,0.225314,0.365049,0.635329,0.162316,0.449193,0.0501788,0.60169,0.0141068,0.545727,0.880469,0.480771,0.645941,0.976142,0.0188534,0.331113,0.838317,0.657308,0.249773,0.9387,0.887638,0.846954,0.757446,0.358415,0.217945,0.0303658,0.914485,0.410129,0.415489,0.519089,0.445393,0.902172,0.582674,0.450247,0.930376,0.296674,0.653834,0.536864,0.839373,0.988423,0.635646,0.51123,0.94331,0.253955,0.641617,0.230593,0.938189,0.837659,0.223043,0.175042,0.644524,0.811728,0.299729,0.42659,0.353986,0.74116,0.634968,0.893622,0.980758,0.499819,0.907503,0.0902115,0.425904,0.946706,0.773249,0.0669717,0.0661274,0.545938,0.590181,0.136634,0.830924,0.850756,0.558985,0.363701,0.648658,0.927667,0.373467,0.600381,0.253744,0.950293,0.97,0.0791187,0.24455,0.540079,0.443654,0.688675,0.112897,0.165946,0.485835,0.823663,0.281335,0.402548,0.567829,0.340282,0.895577,0.254047,0.793238,0.192306,0.824024,0.498022,0.28349,0.47015,0.284358,0.107452,0.105429,0.453788,0.127744,0.774335,0.859633,0.384501,0.928587,0.606034,0.619546,0.517471,0.287411,0.632343,0.676014,0.677322,0.437723,0.257065,0.573929,0.791222,0.313841,0.293238,0.74463,0.470207,0.964756,0.268408,0.730229,0.995802,0.333553,0.864597,0.005229,0.507227,0.0543616,0.35115,0.0955644,0.691727,0.203475,0.216713,0.0148881,0.138057,0.686563,0.430799,0.807146,0.778962,0.568963,0.962819,0.680622,0.860036,0.394771,0.493451,0.451362,0.483789,0.392743,0.0144283,0.757614,0.0338453,0.325622,0.373798,0.500401,0.699298,0.0834428,0.910781,0.0897583,0.978955,0.476287,0.554738,0.904626,0.0669079,0.114306,0.447866,0.687183,0.833408,0.937314,0.647166,0.194376,0.382712,0.323156,0.434293,0.288142,0.65168,0.402168,0.379396,0.847724,0.380694,0.249633,0.931597,0.371862,0.482733,0.196521,0.487058,0.31856,0.0643324,0.0509454,0.465645,0.79334,0.917171,0.197489,0.760067,0.185659,0.502395,0.123274,0.433076,0.443926,0.745787,0.624867,0.810771,0.906407,0.247282,0.477531,0.457538,0.861046,0.72066,0.771787,0.275584,0.0144951,0.952354,0.634252,0.564949,0.948428,0.977763,0.642669,0.368749,0.393561,0.956757,0.806936,0.72237,0.337627,0.947322,0.603802,0.0211044,0.497437,0.144349,0.614125,0.264664,0.421433,0.928558,0.950131,0.832489,0.652504,0.37983,0.150162,0.567187,0.507485,0.451713,0.451021,0.289631,0.802969,0.976771,0.419575,0.0396351,0.524459,0.529644,0.329759,0.66643,0.232875,0.0232743,0.23291,0.0315498,0.0266544,0.360327,0.847257,0.387262,0.866471,0.614511,0.670362,0.825759,0.286586,0.00340468,0.348381,0.824342,0.0163482,0.500847,0.343287,0.380266,0.798543,0.216727,0.384253,0.517902,0.232038,0.725319,0.732045,0.0873013,0.969414,0.0340989,0.848378,0.465391,0.134994,0.900978,0.294976,0.87012,0.988188,0.871266,0.0263676,0.189254,0.208025,0.041007,0.360521,0.419118,0.799105,0.111219,0.647317,0.555798,0.447755,0.582145,0.282656,0.578011,0.289626,0.91231,0.332571,0.205629,0.0138399,0.767837,0.958264,0.490445,0.827594,0.890087,0.107397,0.702578,0.67253,0.871788,0.461164,0.746681,0.628061,0.0363955,0.257711,0.0832041,0.536674,0.846336,0.720365,0.489251,0.0808019,0.325201,0.0339213,0.944894,0.995193,0.587334,0.920018,0.949592,0.390983,0.695319,0.400632,0.119592,0.883754,0.433856,0.289094,0.365996,0.73773,0.0140342,0.773316,0.371108,0.518689,0.68186,0.305262,0.571936,0.728355,0.514554,0.260731,0.333843,0.420783,0.179658,0.636936,0.906014,0.820714,0.859904,0.932097,0.407852,0.636717,0.78663,0.42608,0.848423,0.969959,0.0841999,0.724578,0.252925,0.63829,0.268926,0.00332361,0.0199957,0.35064,0.615022,0.491252,0.816714,0.866816,0.930353,0.297666,0.779766,0.285305,0.739381,0.612418,0.0788799,0.139208,0.477144,0.835898,0.755075,0.717283,0.857109,0.542303,0.141006,0.251633,0.77021,0.873509,0.428429,0.926483,0.780844,0.190253,0.561145,0.231421,0.684839,0.436559,0.762171,0.799728,0.0977709,0.866693,0.487673,0.905128,0.716373,0.980873,0.346474,0.522789,0.0572866,0.799845,0.71031,0.517465,0.309737,0.0693202,0.424658,0.894331,0.519797,0.899094,0.406304,0.381024,0.865529,0.354792,0.41499,0.639752,0.836368,0.380088,0.550122,0.143373,0.57789,0.387706,0.541402,0.0230314,0.73725,0.625268,0.258571,0.482016,0.150881,0.191694,0.323426,0.467731,0.153815,0.214441,0.090556,0.239229,0.286716,0.769579,0.985442,0.361038,0.759061,0.672285,0.11373,0.836031,0.720439,0.600498,0.312935,0.457604,0.771466,0.224665,0.604295,0.963932,0.290599,0.997114,0.488494,0.344938,0.988795,0.55114,0.571318,0.556405,0.079671,0.0575636,0.934195,0.994983,0.927618,0.835129,0.823552,0.954429,0.469024,0.972613,0.681469,0.283122,0.585026,0.0647503,0.82131,0.177774,0.479783,0.994795,0.506908,0.549005,0.0487958,0.699566,0.024464,0.513757,0.355628,0.456859,0.726213,0.735485,0.502074,0.0316178,0.706545,0.0126308,0.819605,0.138029,0.726296,0.210338,0.78069,0.65433,0.519838,0.0477905,0.694495,0.826593,0.330192,0.035584,0.944822,0.556001,0.0911305,0.124698,0.62344,0.808479,0.627268,0.911708,0.802863,0.772836,0.522601,0.276803,0.376182,0.435263,0.223726,0.622736,0.312538,0.0149059,0.993472,0.562531,0.376919,0.953983,0.534813,0.718452,0.135083,0.688117,0.88353,0.436764,0.442453,0.368751,0.597314,0.515864,0.982483,0.110324,0.253844,0.393079,0.395615,0.839078,0.826474,0.325681,0.92626,0.880913,0.473103,0.0789156,0.185069,0.226871,0.701954,0.535578,0.124625,0.48515,0.499628,0.920453,0.296929,0.304361,0.347952,0.482884,0.174688,0.448953,0.723726,0.0690773,0.0301332,0.677323,0.340949,0.399353,0.412466,0.0487397,0.0766503,0.38977,0.525141,0.516525,0.443403,0.429509,0.1615,0.547788,0.821322,0.748551,0.742907,0.568704,0.744899,0.9825,0.889029,0.798206,0.551674,0.561961,0.0528506,0.328665,0.304847,0.0429249,0.191885,0.320159,0.604411,0.444621,0.360474,0.0951485,0.763831,0.407987,0.824487,0.187248,0.655365,0.621054,0.904105,0.400215,0.442453,0.799816,0.249551,0.387735,0.900182,0.557724,0.038906,0.34237,0.657486,0.278234,0.387026,0.76384,0.670614,0.314301,0.536129,0.274045,0.540267,0.261682,0.985619,0.575664,0.332329,0.634987,0.115949,0.448724,0.262029,0.848469,0.496312,0.908815,0.356413,0.0855325,0.842575,0.530444,0.507285,0.439347,0.46878,0.53811,0.676349,0.330352,0.201202,0.149102,0.850675,0.77069,0.674576,0.201766,0.181877,0.129224,0.443812,0.769879,0.961542,0.363371,0.596678,0.0361903,0.0646059,0.154819,0.26164,0.997575,0.159958,0.640628,0.699787,0.789174,0.504273,0.722878,0.932914,0.326906,0.984559,0.341213,0.136964,0.484749,0.440773,0.182831,0.886033,0.577123,0.632338,0.807551,0.176716,0.544466,0.876758,0.379174,0.252306,0.839417,0.356396,0.636843,0.9614,0.833224,0.0727471,0.111329,0.109036,0.243325,0.228206,0.218835,0.862138,0.122637,0.541744,0.692403,0.423879,0.172912,0.322018,0.30678,0.816979,0.388572,0.821151,0.292833,0.166789,0.720354,0.301354,0.453523,0.43773,0.397708,0.735231,0.244461,0.531259,0.35789,0.32966,0.806673,0.332069,0.929728,0.107773,0.520003,0.813361,0.22924,0.489021,0.915467,0.622599,0.277634,0.94928,0.916115,0.598745,0.031209,0.836185,0.44425,0.0325519,0.130812,0.477291,0.654113,0.194557,0.23972,0.0723323,0.134111,0.655458,0.358379,0.632777,0.325989,0.735314,0.244099,0.175582,0.682824,0.206691,0.847318,0.0840461,0.462174,0.65611,0.400097,0.856037,0.232318,0.257623,0.0714332,0.612482,0.802757,0.951627,0.934991,0.99471,0.232876,0.498285,0.407108,0.732541,0.829557,0.0622195,0.558257,0.797928,0.0523566,0.846076,0.101286,0.356455,0.499569,0.666371,0.91802,0.161953,0.140027,0.28706,0.865119,0.397977,0.948328,0.0825267,0.48333,0.160103,0.314489,0.659648,0.726748,0.246029,0.0111626,0.216483,0.126338,0.228681,0.483774,0.424985,0.695388,0.0782168,0.482129,0.846934,0.0920244,0.00168622,0.494779,0.188202,0.00793928,0.390357,0.625811,0.751316,0.453652,0.270381,0.178888,0.799346,0.00263113,0.631661,0.384887,0.153718,0.551709,0.334751,0.530189,0.362204,0.632689,0.76764,0.973053,0.386167,0.47178,0.558669,0.0115961,0.992392,0.891139,0.464334,0.514057,0.304606,0.888105,0.17972,0.0849194,0.464483,0.315326,0.0766677,0.121879,0.140494,0.847036,0.0746492,0.793698,0.435233,0.0344892,0.634033,0.13912,0.0084613,0.0344145,0.461793,0.041933,0.436721,0.0406051,0.708972,0.798409,0.277877,0.55735,0.0970408,0.609688,0.768555,0.999181,0.288984,0.549524,0.941395,0.900827,0.276049,0.301637,0.408513,0.0098902,0.690758,0.717739,0.718617,|0.128838,0.467591,0.517032,0.104703,0.891964,0.314666,0.156882,0.0487688,0.0879059,0.876788,0.586163,0.0367795,0.90803,0.40524,0.503557,0.102598,0.983413,0.961966,0.943339,0.764524,0.448104,0.329058,0.232047,0.142798,0.0897972,0.0834806,0.483413,0.864936,0.00219929,0.780334,0.745169,0.17429,0.501577,0.640358,0.702502,0.459988,0.111995,0.585506,0.191349,0.589308,0.835379,0.829518,0.820481,0.201708,0.802157,0.0209237,0.780267,0.623259,0.487658,0.0522972,0.847289,0.8484,0.8691,0.46395,0.269732,0.380277,0.199905,0.111669,0.882746,0.270056,0.27602,0.10425,0.12252,0.366212,0.384718,0.267303,0.0641329,0.643162,0.475756,0.547477,0.828683,0.388271,0.99298,0.29163,0.0546939,0.992911,0.715991,0.562806,0.0548987,0.30886,0.702212,0.544609,0.19294,0.589791,0.354437,0.152646,0.37145,0.613631,0.339445,0.218056,0.741996,0.530874,0.982011,0.0448195,0.769458,0.829415,0.243695,0.981478,0.720516,0.526353,0.250744,0.435843,0.936727,0.729352,0.376882,0.859383,0.512693,0.615227,0.27318,0.725721,0.836733,0.895337,0.379671,0.134561,0.40997,0.0773675,0.922791,0.796138,0.717568,0.172768,0.312171,0.307713,0.42408,0.226127,0.0829449,0.299624,0.519754,0.0801252,0.0366617,0.912346,0.900871,0.742991,0.250882,0.319749,0.0103996,0.779603,0.566709,0.164273,0.799994,0.396105,0.792421,0.850403,0.906486,0.740676,0.820934,0.168729,0.0366822,0.651511,0.194447,0.237771,0.461986,0.135745,0.433678,0.0551543,0.892414,0.371675,0.4033,0.601043,0.224213,0.845549,0.0951929,0.172445,0.223271,0.175465,0.701903,0.794047,0.790587,0.770286,0.329053,0.772789,0.113711,0.310448,0.111666,0.456139,0.019751,0.447761,0.429053,0.390801,0.490716,0.864915,0.46935,0.639878,0.638061,0.138333,0.617661,0.625874,0.703125,0.015911,0.571845,0.568605,0.00325918,0.777499,0.457432,0.662338,0.463346,0.409279,0.452767,0.329888,0.58167,0.150455,0.409886,0.418245,0.19718,0.22406,0.907277,0.918194,0.743674,0.89928,0.0907844,0.0930307,0.952887,0.904534,0.0350254,0.69216,0.482931,0.97001,0.713233,0.693098,0.129651,0.742761,0.878947,0.466919,0.783879,0.0367332,0.642688,0.00410575,0.736088,0.0772172,0.197232,0.795919,0.812357,0.444749,0.530981,0.343149,0.826555,0.0742132,0.877036,0.474526,0.618409,0.273219,0.230303,0.154327,0.429071,0.333481,0.0824862,0.341538,0.558647,0.224341,0.357726,0.959708,0.241088,0.974548,0.547277,0.850933,0.51112,0.252663,0.212642,0.215259,0.625354,0.890502,0.154966,0.381502,0.824062,0.908982,0.445456,0.718313,0.581918,0.768912,0.0928871,0.117774,0.421529,0.675509,0.43769,0.68238,0.0101051,0.92501,0.428965,0.076416,0.817983,0.0753692,0.411595,0.343778,0.161227,0.150642,0.72816,0.291015,0.685318,0.405384,0.044723,0.332361,0.737965,0.398682,0.769739,0.125381,0.366106,0.727063,0.36069,0.971679,0.923027,0.388754,0.445536,0.329696,0.392655,0.201471,0.463537,0.613055,0.908845,0.380125,0.37712,0.311288,0.592969,0.273126,0.342868,0.365831,0.665246,0.0692163,0.397858,0.482038,0.933317,0.535508,0.801982,0.758536,0.734137,0.58761,0.433636,0.855397,0.00707924,0.629802,0.840448,0.191606,0.0826598,0.403206,0.765422,0.896852,0.00576299,0.0711858,0.550967,0.287073,0.38006,0.173225,0.487833,0.246774,0.269234,0.00874108,0.280847,0.0322303,0.826296,0.722966,0.962538,0.660717,0.716413,0.58341,0.361884,0.37319,0.437083,0.0153891,0.885572,0.545592,0.567082,0.46938,0.616314,0.327455,0.935479,0.15218,0.808813,0.0275491,0.85178,0.623164,0.807929,0.0171278,0.983552,0.0937796,0.974403,0.284164,0.328544,0.692856,0.398975,0.563992,0.00756377,0.979283,0.962045,0.340887,0.427522,0.232381,0.0502965,0.379329,0.0681748,0.877483,0.779666,0.637423,0.239166,0.289647,0.970796,0.0659574,0.408484,0.367939,0.227096,0.376449,0.128312,0.473788,0.470315,0.723393,0.709707,0.641183,0.729666,0.928824,0.501886,0.442251,0.631066,0.37435,0.606175,0.841873,0.506365,0.405091,0.257134,0.579946,0.284887,0.317343,0.0564272,0.541507,0.483865,0.345497,0.449194,0.910307,0.962019,0.12988,0.072447,0.638722,0.74211,0.442177,0.37003,0.623262,0.309236,0.617531,0.129227,0.808304,0.793035,0.0273329,0.708466,0.118575,0.724714,0.424434,0.171534,0.402103,0.56255,0.202783,0.0228066,0.263022,0.0132295,0.942458,0.21282,0.703556,0.926144,0.52574,0.689468,0.894458,0.473221,0.280716,0.649297,0.465354,0.410983,0.535676,0.751968,0.961071,0.489597,0.917583,0.43584,0.865395,0.120793,0.0406567,0.546035,0.260761,0.358125,0.0307056,0.776529,0.275659,0.127498,0.846934,0.679278,0.851817,0.611282,0.81538,0.350056,0.638453,0.405754,0.925226,0.0906137,0.397912,0.775265,0.989887,0.134446,0.961168,0.203597,0.298593,0.834437,0.390673,0.024978,0.799072,0.320555,0.945446,0.817806,0.881121,0.657208,0.847561,0.371669,0.939274,0.451449,0.867058,0.209113,0.526131,0.151126,0.577646,0.469117,0.999694,0.343339,0.0598177,0.487732,0.849718,0.556784,0.492106,0.607767,0.207662,0.862442,0.737318,0.452088,0.311489,0.198217,0.827446,0.336035,0.303645,0.540121,0.420745,0.155181,0.373741,0.957103,0.794232,0.681278,0.10546,0.300394,0.302747,0.231113,0.593746,0.549096,0.489286,0.883105,0.353941,0.24602,0.48184,0.500676,0.980653,0.38527,0.538126,0.0703666,0.909648,0.569513,0.569582,0.682338,0.935083,0.681015,0.44458,0.696807,0.223643,0.138673,0.824578,0.414011,0.66282,0.612932,0.792895,0.328526,0.423291,0.937236,0.770844,0.337033,0.394179,0.615544,0.908245,0.376135,0.131604,0.436461,0.62093,0.397058,0.865834,0.526785,0.324991,0.865689,0.504206,0.989239,0.373896,0.770059,0.17755,0.00941145,0.89443,0.0196817,0.865881,0.532607,0.89908,0.25983,0.330119,0.0335811,0.484895,0.898711,0.339076,0.759566,0.889712,0.669292,0.260856,0.669486,0.682904,0.797788,0.887447,0.547887,0.733785,0.938141,0.537105,0.848224,0.682851,0.916583,0.158742,0.668915,0.0486953,0.779966,0.906671,0.587385,0.293255,0.904869,0.295623,0.336242,0.0116798,0.426899,0.858018,0.476596,0.942696,0.769351,0.289859,0.657484,0.953542,0.168507,0.56174,0.805988,0.393151,0.907897,0.703802,0.835986,0.35118,0.000599146,0.498,0.270293,0.916912,0.228293,0.412638,0.386733,0.227251,0.685539,0.365988,0.36953,0.74615,0.860367,0.17087,0.945379,0.554207,0.280831,0.991407,0.469263,0.861873,0.143601,0.838982,0.836474,0.706553,0.476369,0.847991,0.924317,0.0475121,0.242189,0.168079,0.986106,0.601038,0.942689,0.113669,0.839686,0.310396,0.739714,0.898173,0.207746,0.101517,0.797334,0.120467,0.921368,0.334055,0.880826,0.407352,0.0341046,0.982192,0.292387,0.0181289,0.517409,0.237679,0.144345,0.397846,0.425129,0.299229,0.690419,0.780183,0.122226,0.597208,0.955539,0.56063,0.680075,0.649649,0.0769856,0.399008,0.333753,0.38471,0.444005,0.979146,0.541366,0.608672,0.735369,0.191801,0.224198,0.373853,0.737333,0.479825,0.877978,0.354223,0.80753,0.684169,0.153918,0.556796,0.545253,0.815684,0.621044,0.0496839,0.69919,0.714491,0.41522,0.983903,0.00984037,0.812689,0.834053,0.835038,0.672158,0.182866,0.303087,0.860225,0.440115,0.848094,0.68845,0.138826,0.925205,0.938084,0.959845,0.548374,0.0134692,0.870036,0.633503,0.570229,0.665215,0.5297,0.886552,0.951544,0.968992,0.546353,0.527971,0.52233,0.616761,0.798421,0.0580012,0.161755,0.72015,0.542417,0.732231,0.427014,0.745357,0.0591574,0.149494,0.105849,0.425593,0.715185,0.620158,0.407552,0.5795,0.539752,0.120669,0.851739,0.312391,0.418165,0.0668219,0.639886,0.325256,0.0640866,0.140927,0.536763,0.656778,0.997362,0.00159019,0.508682,0.84312,0.18931,0.377849,0.281083,0.469994,0.534794,0.258216,0.45541,0.177289,0.104251,0.144735,0.925572,0.579996,0.338223,0.815735,0.934301,0.423053,0.698404,0.421923,0.678294,0.421212,0.103457,0.176692,0.699395,0.00327104,0.123699,0.607715,0.954675,0.0850613,0.0709491,0.986675,0.657355,0.332208,0.0994177,0.65366,0.0373808,0.273242,0.332893,0.718539,0.44099,0.642748,0.865515,0.335886,0.346886,0.546072,0.308538,0.733713,0.999104,0.154646,0.649612,0.901964,0.223711,0.500431,0.582453,0.609541,0.647679,0.799254,0.238186,0.643615,0.826308,0.479261,0.599947,0.74107,0.223324,0.166107,0.222391,0.4365,0.814436,0.363572,0.712249,0.136831,0.705867,0.0476143,0.960016,0.566141,0.13868,0.142311,0.81213,0.205355,0.784905,0.26093,0.0549979,0.0176145,0.015195,0.763881,0.473753,0.088201,0.0101309,0.0101719,0.322393,0.436202,0.106882,0.155412,0.963767,0.785703,0.356478,0.961175,0.0148289,0.00286043,0.756943,0.934327,0.810838,0.459574,0.680656,0.126949,0.116604,0.928062,0.715665,0.0627238,0.801884,0.599232,0.0695181,0.547511,0.613324,0.863773,0.746813,0.471755,0.483481,0.913678,0.523633,0.47531,0.609408,0.895697,0.815836,0.595409,0.523944,0.325577,0.412679,0.277327,0.893621,0.645585,0.808677,0.168558,0.864308,0.944544,0.696971,0.428914,0.891142,0.307273,0.204265,0.648798,0.553077,0.861634,0.178662,0.427585,0.672931,0.124892,0.491594,0.113939,0.614047,0.0426325,0.793569,0.923203,0.848083,0.144116,0.00419396,0.0575131,0.895802,0.0487016,0.264876,0.209773,0.284015,0.397624,0.237589,0.68256,0.644499,0.753635,0.645558,0.277893,0.116213,0.601466,0.062471,0.589774,0.420194,0.792718,0.858969,0.871088,0.161669,0.982555,0.197005,0.710085,0.739474,0.890672,0.0693233,0.0143518,0.328348,0.383077,0.331637,0.883586,0.428554,0.495084,0.564677,0.910738,0.494709,0.550617,0.251994,0.570988,0.299271,0.867679,0.995711,0.344694,0.514179,0.0621181,0.138221,|0.681404,0.0762925,0.170237,0.100549,0.726874,0.00918192,0.168082,0.0628403,0.618367,0.825937,0.318499,0.730718,0.0499458,0.488206,0.937866,0.494696,0.490102,0.40951,0.415087,0.0966274,0.782048,0.960399,0.86315,0.435294,0.0338053,0.360768,0.542538,0.911991,0.700098,0.884199,0.766015,0.41595,0.936502,0.265842,0.105768,0.399551,0.738197,0.229147,0.310198,0.959213,0.29351,0.45255,0.642012,0.678753,0.404682,0.988742,0.482246,0.030363,0.224791,0.0741042,0.291497,0.699383,0.564757,0.790647,0.0351632,0.0427531,0.131925,0.102665,0.699809,0.892857,0.759351,0.013368,0.917512,0.0878996,0.539515,0.226922,0.733986,0.134781,0.635136,0.0393197,0.814612,0.620843,0.687949,0.643357,0.694448,0.594136,0.796351,0.534931,0.917823,0.822428,0.34023,0.81534,0.940605,0.444166,0.944449,0.674105,0.93423,0.167342,0.277071,0.72461,0.238256,0.439465,0.621151,0.537422,0.126793,0.876777,0.669751,0.36534,0.599749,0.0411261,0.909472,0.336219,0.914119,0.237048,0.184817,0.974806,0.13519,0.985874,0.946771,0.829763,0.983404,0.42417,0.142366,0.321586,0.787635,0.337759,0.848065,0.321497,0.077366,0.809366,0.677075,0.931221,0.270307,0.243989,0.413734,0.408587,0.411173,0.965361,0.95956,0.807538,0.611482,0.920939,0.537694,0.744009,0.0745813,0.568386,0.983113,0.265177,0.55735,0.535053,0.701743,0.87874,0.202232,0.499657,0.936821,0.755061,0.716103,0.342081,0.24348,0.97482,0.34452,0.409194,0.686635,0.367409,0.814543,0.200038,0.739292,0.032697,0.158456,0.65315,0.164935,0.99837,0.222105,0.655284,0.215278,0.448162,0.434357,0.414299,0.160731,0.45295,0.223385,0.667996,0.930255,0.620465,0.739639,0.870241,0.101719,0.553981,0.0659648,0.264363,0.978629,0.622767,0.634468,0.65873,0.548019,0.0414562,0.543887,0.289532,0.712464,0.226489,0.232809,0.961668,0.219564,0.125859,0.731012,0.944859,0.661451,0.0921654,0.253848,0.099864,0.0142829,0.115943,0.460619,0.772924,0.234379,0.146605,0.292381,0.273856,0.769151,0.0726658,0.423972,0.253015,0.230866,0.623986,0.707312,0.588197,0.240066,0.176153,0.340064,0.118892,0.76056,0.423061,0.387832,0.35189,0.483461,0.892395,0.971179,0.32159,0.162468,0.704831,0.376212,0.60074,0.287033,0.947728,0.0691557,0.282467,0.0678058,0.528001,0.964168,0.965708,0.182837,0.307372,0.394757,0.970872,0.358235,0.995268,0.483601,0.849052,0.0988076,0.753993,0.371459,0.0108258,0.82132,0.0967499,0.970317,0.550996,0.989239,0.0010528,0.265523,0.785852,0.0980689,0.175517,0.588226,0.82047,0.83868,0.739804,0.111973,0.292873,0.314297,0.983343,0.394101,0.299217,0.647754,0.40252,0.264804,0.161999,0.187175,0.965742,0.0814021,0.62833,0.889087,0.457545,0.820215,0.722109,0.219417,0.594401,0.0369766,0.858362,0.974552,0.97669,0.0513582,0.308724,0.254185,0.650003,0.970904,0.362624,0.899069,0.726946,0.0268295,0.811526,0.284505,0.312139,0.253156,0.329497,0.10319,0.924092,0.601393,0.100873,0.348107,0.963185,0.324691,0.736366,0.96956,0.206909,0.447728,0.767755,0.0103359,0.203701,0.354499,0.16307,0.410729,0.86526,0.530195,0.242492,0.122531,0.527157,0.261918,0.768248,0.236365,0.0949358,0.0577478,0.127277,0.886199,0.255703,0.169021,0.585042,0.182452,0.657001,0.635752,0.69512,0.0550942,0.198979,0.596069,0.418144,0.03403,0.0233837,0.678744,0.977794,0.21659,0.756212,0.24284,0.626866,0.0194005,0.979073,0.0999861,0.449707,0.827066,0.400854,0.841734,0.331646,0.215497,0.766995,0.26272,0.19162,0.439346,0.940695,0.432813,0.835497,0.00772524,0.187707,0.324367,0.549515,0.125092,0.37924,0.876681,0.411697,0.354349,0.952007,0.317132,0.739499,0.141532,0.891069,0.591334,0.935782,0.286429,0.940616,0.74454,0.0580702,0.0403548,0.413143,0.548863,0.0767061,0.902898,0.0698807,0.576196,0.270111,0.0777857,0.854697,0.248149,0.311936,0.629459,0.977906,0.624281,0.823863,0.764427,0.837604,0.0471589,0.518354,0.784214,0.900253,0.271131,0.547785,0.35083,0.263234,0.251581,0.249923,0.686148,0.580003,0.34064,0.0286097,0.337403,0.459605,0.0545202,0.910848,0.0464738,0.873471,0.688447,0.300436,0.753226,0.533193,0.810637,0.670911,0.49455,0.611685,0.471929,0.205167,0.913062,0.955172,0.899887,0.980214,0.690561,0.0158073,0.798315,0.592225,0.988852,0.585327,0.423275,0.45276,0.126525,0.0681594,0.664385,0.530854,0.0213469,0.59842,0.53474,0.497889,0.736108,0.190525,0.302446,0.0433848,0.185179,0.239745,0.435636,0.453105,0.720905,0.0519521,0.571283,0.490886,0.969511,0.990806,0.0663462,0.295482,0.659643,0.739267,0.0796015,0.692419,0.601735,0.584904,0.0843448,0.736435,0.753196,0.828613,0.206742,0.700388,0.135132,0.796815,0.143175,0.779658,0.637916,0.0638214,0.328619,0.0311382,0.859744,0.605493,0.814142,0.325638,0.786258,0.887346,0.64573,0.949739,0.09049,0.50685,0.0713908,0.683531,0.783493,0.273782,0.37568,0.415495,0.874706,0.268545,0.860984,0.856115,0.502746,0.0778257,0.337302,0.358479,0.537752,0.136824,0.792681,0.53804,0.0753923,0.718515,0.7096,0.851075,0.801813,0.123811,0.442968,0.707005,0.609746,0.113908,0.786148,0.591378,0.23174,0.508881,0.976083,0.412294,0.430394,0.834878,0.713683,0.074374,0.790398,0.827016,0.790392,0.894984,0.421967,0.070299,0.276204,0.760163,0.109839,0.00910133,0.0888789,0.650626,0.0847014,0.265404,0.385617,0.528518,0.206339,0.288219,0.851437,0.614472,0.781096,0.597681,0.383233,0.753373,0.892831,0.719757,0.210773,0.311016,0.564213,0.158166,0.94008,0.318792,0.226302,0.270166,0.876479,0.349272,0.650213,0.565199,0.606243,0.95456,0.57291,0.411176,0.0967663,0.115866,0.20713,0.347266,0.788625,0.469129,0.728811,0.042683,0.343367,0.457687,0.339648,0.327245,0.974495,0.440971,0.714185,0.0658638,0.668012,0.5962,0.322636,0.241013,0.21321,0.201166,0.759078,0.0552505,0.410614,0.13903,0.452032,0.414714,0.100163,0.178307,0.82268,0.672454,0.767079,0.129218,0.642734,0.276364,0.836432,0.685703,0.0985034,0.0583831,0.873666,0.536288,0.575388,0.213125,0.654595,0.594164,0.890327,0.924524,0.791884,0.156584,0.094437,0.281033,0.624489,0.279079,0.900033,0.549275,0.411247,0.385358,0.629157,0.405872,0.232421,0.722521,0.241264,0.478118,0.162985,0.699898,0.0110908,0.896467,0.0195223,0.0404183,0.303625,0.563748,0.306086,0.349373,0.342493,0.613356,0.127269,0.476561,0.526928,0.591939,0.933493,0.52553,0.00302094,0.0175208,0.634032,0.707761,0.912335,0.708112,0.805303,0.572179,0.659312,0.0868241,0.923397,0.10713,0.870706,0.833563,0.937161,0.303675,0.998737,0.218609,0.663883,0.0865384,0.870987,0.903447,0.534203,0.639606,0.459968,0.324288,0.741222,0.180317,0.268664,0.820761,0.755392,0.724061,0.730378,0.391639,0.685045,0.307117,0.331769,0.225863,0.573042,0.395624,0.932282,0.389137,0.915244,0.749965,0.66339,0.996548,0.679949,0.700231,0.692685,0.750354,0.885952,0.368465,0.726649,0.492761,0.863524,0.985256,0.601055,0.122035,0.951748,0.402845,0.216491,0.625648,0.237393,0.312044,0.5981,0.247131,0.199221,0.98108,0.644786,0.629315,0.685744,0.900494,0.784913,0.677481,0.981865,0.937484,0.87827,0.830381,0.438119,0.50152,0.796436,0.809212,0.364156,0.511042,0.65696,0.150977,0.520056,0.818319,0.152364,0.676488,0.0850272,0.267426,0.363797,0.645751,0.776611,0.238228,0.922365,0.555814,0.339839,0.0159346,0.117811,0.429175,0.983343,0.441544,0.0463869,0.931702,0.569861,0.178704,0.765586,0.10601,0.69273,0.341734,0.252658,0.0717519,0.0233586,0.920473,0.970474,0.733005,0.406889,0.640219,0.61488,0.952641,0.711361,0.98514,0.732945,0.970423,0.393706,0.619907,0.813283,0.732568,0.450763,0.138415,0.670539,0.319415,0.385677,0.702549,0.243173,0.27728,0.337294,0.546007,0.360079,0.174621,0.444634,0.133736,0.830466,0.387856,0.0327069,0.667942,0.331957,0.100033,0.781178,0.905663,0.13083,0.660549,0.115247,0.356884,0.104513,0.54889,0.33592,0.0788025,0.306801,0.0171536,0.312578,0.20927,0.829825,0.185285,0.923189,0.00487244,0.73304,0.82918,0.351345,0.945376,0.44166,0.534245,0.795276,0.88381,0.821921,0.606454,0.700483,0.580121,0.748327,0.267229,0.468807,0.385691,0.185885,0.800102,0.997134,0.531655,0.546155,0.900497,0.53739,0.490566,0.501933,0.77241,0.582803,0.227085,0.445667,0.276369,0.431551,0.930359,0.740148,0.709572,0.315019,0.570923,0.0286599,0.952539,0.646363,0.641252,0.769405,0.635498,0.652223,0.986712,0.0283468,0.793447,0.37481,0.457748,0.441516,0.0833862,0.386197,0.0331764,0.0104587,0.814561,0.348987,0.586486,0.82708,0.57273,0.0127466,0.945688,0.850239,0.020568,0.265424,0.241175,0.752841,0.615784,0.575877,0.152046,0.391015,0.412126,0.603582,0.620425,0.386386,0.777979,0.0609133,0.697712,0.741553,0.948747,0.18897,0.557866,0.763648,0.904169,0.959414,0.350617,0.74916,0.754432,0.451838,0.553442,0.315751,0.889108,0.986305,0.865985,0.281231,0.240799,0.111171,0.462181,0.128772,0.15277,0.178627,0.266124,0.340864,0.280785,0.93801,0.33535,0.527559,0.338011,0.666336,0.427452,0.520548,0.193177,0.799524,0.584534,0.607458,0.70614,0.154696,0.738272,0.628035,0.11825,0.615399,0.94186,0.161595,0.556048,0.188393,0.840551,0.422246,0.764544,0.608246,0.770353,0.877429,0.8626,0.526985,0.606924,0.138587,0.697109,0.930146,0.286858,0.547912,0.714429,0.769608,0.939404,0.526507,0.922257,0.215055,0.946767,0.287755,0.238988,0.575798,0.754189,0.235925,0.887442,0.199821,0.0470368,0.128042,0.868934,0.91377,0.661227,0.452787,0.773036,0.0776625,0.449495,0.0194474,0.412409,0.229915,0.542572,0.884957,0.356686,0.743742,0.838488,|0.221857,0.0677488,0.380699,0.169966,0.441416,0.32149,0.543315,0.409297,0.701993,0.997987,0.207721,0.059705,0.71578,0.573783,0.139159,0.190747,0.160628,0.707779,0.86165,0.351384,0.559435,0.67671,0.621316,0.800009,0.192319,0.271891,0.0907359,0.619892,0.0589181,0.356893,0.196415,0.401869,0.794304,0.900749,0.610682,0.22026,0.719776,0.61394,0.586393,0.140283,0.478898,0.752722,0.116629,0.386516,0.353204,0.983528,0.670732,0.154478,0.373206,0.42498,0.745402,0.0776795,0.116516,0.952713,0.439176,0.00407004,0.876152,0.802659,0.851013,0.900053,0.00837505,0.416611,0.901084,0.426489,0.959679,0.242149,0.691389,0.985983,0.216719,0.268938,0.883157,0.736777,0.164525,0.412496,0.817338,0.83531,0.067792,0.807246,0.302692,0.712836,0.650984,0.30039,0.28551,0.049054,0.943038,0.831302,0.903435,0.979053,0.79293,0.953682,0.276571,0.934941,0.489493,0.775475,0.47158,0.495274,0.0864326,0.170059,0.209882,0.390573,0.521074,0.594041,0.062578,0.294142,0.56532,0.391956,0.595343,0.414947,0.667837,0.492522,0.842175,0.206627,0.262243,0.825827,0.0231809,0.675253,0.967479,0.281277,0.462201,0.181199,0.702467,0.238764,0.68587,0.198624,0.444063,0.474136,0.495972,0.531778,0.336486,0.658868,0.929307,0.638673,0.0988562,0.299971,0.450268,0.493289,0.246706,0.940209,0.758861,0.335105,0.52776,0.837468,0.0743452,0.13299,0.376637,0.737253,0.207824,0.251928,0.46507,0.696321,0.232379,0.303896,0.77433,0.517727,0.659329,0.582281,0.905201,0.943581,0.198627,0.361889,0.0705287,0.718734,0.183089,0.541792,0.60621,0.55852,0.955455,0.881756,0.217344,0.639763,0.574947,0.384377,0.474857,0.22878,0.879928,0.835435,0.550018,0.816778,0.883727,0.0201178,0.0994545,0.0694596,0.532092,0.242305,0.283827,0.808265,0.0317901,0.257183,0.754315,0.177126,0.129111,0.348332,0.647485,0.14324,0.0199854,0.869271,0.953916,0.995832,0.801517,0.120207,0.303069,0.120726,0.332736,0.273016,0.572766,0.869547,0.4058,0.471916,0.587572,0.543073,0.12852,0.877326,0.554379,0.534861,0.767163,0.510164,0.449401,0.366816,0.0319208,0.727623,0.374821,0.386,0.787061,0.345881,0.225185,0.143732,0.484183,0.109763,0.54109,0.649652,0.46363,0.930345,0.824613,0.0486047,0.622261,0.898849,0.943999,0.50389,0.123769,0.712659,0.0197329,0.634522,0.991343,0.40873,0.527059,0.106382,0.267981,0.477722,0.162899,0.327618,0.899309,0.872168,0.798499,0.819333,0.880857,0.178046,0.382907,0.544522,0.611572,0.773968,0.693429,0.237234,0.135905,0.230237,0.230798,0.206564,0.904125,0.0372438,0.94897,0.509682,0.21242,0.0888625,0.487953,0.47635,0.177366,0.810345,0.424446,0.645286,0.0148183,0.294231,0.0596007,0.113757,0.65982,0.794906,0.194182,0.605715,0.568633,0.816358,0.619463,0.397693,0.0280223,0.161171,0.744527,0.205954,0.288993,0.546579,0.528273,0.692506,0.398955,0.491789,0.383309,0.879382,0.488989,0.0934705,0.864488,0.159354,0.232034,0.195686,0.857893,0.24128,0.44687,0.184744,0.337977,0.350962,0.576355,0.409651,0.417463,0.060163,0.180001,0.450614,0.241075,0.501619,0.120918,0.703192,0.293475,0.393952,0.105569,0.297026,0.600583,0.219231,0.370548,0.476081,0.126,0.667364,0.121729,0.863368,0.897321,0.932086,0.644108,0.749877,0.286187,0.421568,0.147891,0.306712,0.461614,0.219614,0.755802,0.282414,0.80215,0.164554,0.682909,0.0508171,0.304645,0.871628,0.0351881,0.951551,0.26559,0.449578,0.434401,0.0311826,0.209735,0.049248,0.717302,0.130796,0.360732,0.834804,0.470166,0.765901,0.215895,0.255047,0.182488,0.110791,0.234404,0.724612,0.26679,0.909151,0.603357,0.34483,0.710781,0.435933,0.318726,0.917085,0.832372,0.774499,0.412555,0.425766,0.84339,0.432756,0.792276,0.821256,0.651845,0.752886,0.592158,0.794437,0.490879,0.407479,0.473603,0.244949,0.295457,0.648981,0.550907,0.416387,0.927099,0.535811,0.351006,0.587012,0.0649111,0.400471,0.785623,0.783297,0.912353,0.877645,0.157102,0.374725,0.034461,0.668972,0.58077,0.572975,0.0850996,0.484728,0.780822,0.212656,0.553227,0.791941,0.630619,0.437526,0.81504,0.740275,0.819467,0.66966,0.0362381,0.97106,0.548872,0.449815,0.794968,0.169938,0.650303,0.873061,0.179842,0.532726,0.597925,0.272147,0.752698,0.641346,0.0803056,0.930037,0.672218,0.794515,0.386418,0.92006,0.718879,0.518301,0.499329,0.525632,0.875797,0.954668,0.379958,0.140306,0.0678946,0.396456,0.545207,0.603684,0.729964,0.848034,0.917153,0.392902,0.0601832,0.868316,0.221712,0.401888,0.484177,0.0411093,0.488583,0.650343,0.904945,0.177085,0.711229,0.630792,0.898722,0.270406,0.56026,0.888013,0.333456,0.445098,0.330928,0.0376123,0.0904661,0.111493,0.409272,0.868233,0.198329,0.985586,0.329424,0.734667,0.963944,0.34366,0.355564,0.00930482,0.613746,0.924399,0.679214,0.614732,0.148524,0.439765,0.661409,0.188454,0.472726,0.858953,0.611278,0.347773,0.38109,0.643501,0.851222,0.814509,0.887551,0.89578,0.90237,0.371114,0.0491246,0.570853,0.752843,0.363933,0.400102,0.770851,0.273388,0.272635,0.27754,0.600647,0.572691,0.279875,0.534979,0.324986,0.706074,0.796697,0.607666,0.807911,0.528643,0.936052,0.401338,0.0202917,0.0783252,0.252174,0.562234,0.441443,0.582414,0.71505,0.463946,0.78936,0.708783,0.275063,0.860175,0.49332,0.789501,0.176313,0.981961,0.286178,0.593815,0.0608794,0.431202,0.526946,0.674097,0.110758,0.125846,0.809879,0.814622,0.158016,0.0840789,0.0627154,0.258161,0.574587,0.482681,0.946061,0.0992294,0.676916,0.656098,0.428968,0.88666,0.191352,0.425201,0.0776054,0.520921,0.355004,0.586829,0.837286,0.70576,0.705084,0.223081,0.607953,0.575639,0.917829,0.112379,0.920279,0.982844,0.898676,0.824027,0.316652,0.41604,0.197303,0.106235,0.744535,0.857763,0.316231,0.549786,0.847079,0.713893,0.346149,0.821797,0.822274,0.7755,0.877383,0.861097,0.438199,0.129369,0.66383,0.270163,0.996047,0.772447,0.129569,0.9395,0.995208,0.559964,0.509357,0.232163,0.293189,0.380975,0.846733,0.420578,0.820187,0.252218,0.268473,0.0744185,0.721959,0.217802,0.334641,0.119877,0.0293228,0.200805,0.446345,0.599652,0.973871,0.859579,0.00838411,0.672355,0.680652,0.511156,0.70287,0.85163,0.519551,0.901691,0.630215,0.984347,0.287704,0.951859,0.524986,0.108578,0.774449,0.590421,0.863653,0.601069,0.961143,0.539459,0.434239,0.0780122,0.277191,0.216063,0.554031,0.930578,0.457872,0.624576,0.571607,0.379695,0.953161,0.450842,0.32954,0.11064,0.892481,0.432919,0.5107,0.842217,0.663842,0.745545,0.0927895,0.452921,0.5676,0.886869,0.654535,0.617876,0.210576,0.840434,0.128157,0.103607,0.52811,0.195694,0.980218,0.338416,0.459832,0.126058,0.0439037,0.519636,0.0059042,0.916408,0.431705,0.661704,0.905539,0.951182,0.464785,0.0530766,0.645185,0.302822,0.693739,0.351907,0.404224,0.646923,0.887359,0.642107,0.23009,0.525768,0.201489,0.36841,0.0962708,0.804281,0.197162,0.317946,0.480951,0.745969,0.526797,0.156079,0.808208,0.627571,0.858809,0.918773,0.44089,0.0342118,0.351301,0.351856,0.635172,0.620206,0.124149,0.43434,0.0598953,0.213865,0.311371,0.219527,0.159649,0.529345,0.532397,0.412345,0.734997,0.455157,0.521429,0.924257,0.512479,0.196514,0.934069,0.335547,0.146416,0.650993,0.261992,0.929952,0.582085,0.0397099,0.691738,0.355529,0.569308,0.0199774,0.469097,0.391235,0.449487,0.472462,0.972308,0.339927,0.463559,0.676204,0.187387,0.925518,0.54994,0.776076,0.342043,0.915605,0.194372,0.829206,0.531943,0.200887,0.970619,0.133275,0.120422,0.832256,0.64076,0.591298,0.737042,0.079549,0.267538,0.155879,0.108307,0.614466,0.4178,0.361552,0.159118,0.0308542,0.290766,0.532217,0.363742,0.473383,0.359394,0.344535,0.873475,0.654756,0.534186,0.737071,0.898157,0.68918,0.472136,0.662343,0.158841,0.874169,0.800681,0.228025,0.524756,0.661717,0.563492,0.615183,0.157519,0.0575248,0.728973,0.603118,0.0418845,0.705764,0.0118958,0.84467,0.59276,0.358195,0.769324,0.287818,0.88112,0.5753,0.379439,0.496469,0.310006,0.264663,0.589011,0.219701,0.374112,0.00262296,0.0270079,0.399613,0.78771,0.194314,0.159588,0.664243,0.647391,0.329039,0.765026,0.369672,0.562071,0.273382,0.708854,0.437514,0.449941,0.353463,0.539923,0.547006,0.0173481,0.794032,0.870098,0.335976,0.748687,0.711346,0.497796,0.871713,0.165037,0.0920861,0.0712805,0.61016,0.718282,0.622974,0.588688,0.162241,0.761425,0.846896,0.411138,0.58785,0.407724,0.520025,0.289284,0.4772,0.293806,0.993268,0.0357158,0.572383,0.190572,0.751386,0.932022,0.778018,0.671457,0.329825,0.441523,0.415873,0.722292,0.498364,0.538774,0.96212,0.524766,0.839446,0.652059,0.364315,0.132831,0.375431,0.266598,0.286861,0.805772,0.767378,0.995657,0.893815,0.981896,0.398237,0.623617,0.0519642,0.128687,0.733291,0.157549,0.314169,0.46617,0.703238,0.854362,0.507057,0.723481,0.998763,0.709175,0.405599,0.0181557,0.0840665,0.983792,0.246735,0.229518,0.59747,0.43168,0.344416,0.0655302,0.49436,0.396844,0.204208,0.0215167,0.698128,0.256862,0.648004,0.874443,0.743855,0.659158,0.315279,0.633513,0.710265,0.88124,0.226033,0.680739,0.806221,0.374626,0.126594,0.342063,0.284229,0.188379,0.643249,0.287393,0.233812,0.333808,0.0805892,0.285505,0.643981,0.0283387,0.630812,0.400434,0.658849,0.924891,0.025947,0.579679,0.919071,0.257755,0.455983,0.876704,0.527189,0.0922834,0.654276,0.319669,0.564408,0.675432,0.905431,0.0810273,0.318617,0.545162,0.0564089,0.978626,0.0387118,0.824307,0.305153,0.573124,0.266206,0.615684,0.264262,0.769199,0.733892,0.541344,|0.249361,0.337321,0.317605,0.0531948,0.461039,0.899474,0.836576,0.268495,0.256409,0.400764,0.878866,0.38825,0.710258,0.942206,0.114816,0.7502,0.105776,0.738301,0.90082,0.859401,0.56721,0.886611,0.568446,0.774084,0.76835,0.926355,0.74064,0.383642,0.947334,0.517564,0.424611,0.09484,0.445805,0.130028,0.664494,0.00865364,0.0563773,0.962627,0.864927,0.231389,0.404849,0.0358158,0.230062,0.898884,0.565048,0.0933585,0.290665,0.987156,0.765979,0.899695,0.424526,0.66481,0.10046,0.526607,0.446692,0.822313,0.89788,0.523927,0.226902,0.113337,0.571199,0.305701,0.738637,0.60491,0.232638,0.193535,0.454201,0.895778,0.114918,0.847727,0.323889,0.900725,0.395569,0.425012,0.983049,0.419998,0.601341,0.536246,0.481404,0.995639,0.840092,0.962134,0.443217,0.472331,0.155748,0.262767,0.251308,0.19024,0.362781,0.862398,0.568625,0.12041,0.972899,0.814211,0.90993,0.686579,0.646638,0.81566,0.672654,0.702436,0.241715,0.65707,0.481933,0.431716,0.693484,0.00313461,0.902688,0.298953,0.172514,0.755758,0.664695,0.0720949,0.124053,0.871974,0.483545,0.0508826,0.245332,0.0498446,0.627534,0.931627,0.68949,0.862031,0.45531,0.000500083,0.0798365,0.494478,0.0614336,0.465865,0.446028,0.695773,0.483827,0.825893,0.860434,0.203964,0.409268,0.622676,0.130727,0.199468,0.510564,0.515581,0.714887,0.774423,0.636681,0.51923,0.145884,0.509795,0.22321,0.0715503,0.967548,0.754612,0.705834,0.680695,0.635847,0.80606,0.0323396,0.354097,0.897585,0.980353,0.296221,0.179179,0.282218,0.519999,0.105617,0.887895,0.994393,0.783011,0.965406,0.501224,0.755439,0.555781,0.31909,0.451744,0.879853,0.19852,0.7567,0.396082,0.198485,0.401087,0.462022,0.654622,0.519278,0.277103,0.00791728,0.396706,0.791063,0.238405,0.407989,0.529316,0.695146,0.089726,0.742173,0.113757,0.678609,0.99625,0.261966,0.960912,0.574866,0.284759,0.0917758,0.300878,0.981693,0.765578,0.183231,0.103122,0.607789,0.388453,0.712859,0.725568,0.443867,0.419741,0.605799,0.797552,0.460259,0.342886,0.44057,0.298563,0.606152,0.332529,0.55674,0.311513,0.115713,0.588332,0.627238,0.0985678,0.0156602,0.425418,0.790305,0.264379,0.145783,0.370422,0.710236,0.355591,0.749283,0.696708,0.20384,0.349117,0.251635,0.649707,0.77471,0.513614,0.155051,0.0622184,0.327478,0.326247,0.300251,0.216598,0.878319,0.338603,0.565993,0.654944,0.421737,0.803002,0.699101,0.285883,0.930806,0.538851,0.123264,0.89561,0.447153,0.0120038,0.695729,0.214193,0.522926,0.564651,0.846133,0.714811,0.291632,0.216925,0.622415,0.0243445,0.441388,0.453592,0.0981264,0.327449,0.854281,0.0723445,0.834784,0.329031,0.686844,0.0193483,0.369761,0.7364,0.715535,0.118422,0.332878,0.177874,0.944981,0.793734,0.202404,0.683872,0.889912,0.320746,0.0275863,0.491516,0.534768,0.75074,0.788381,0.252213,0.511754,0.46265,0.413313,0.394117,0.280904,0.59216,0.783845,0.723833,0.448553,0.119164,0.830224,0.27348,0.366046,0.492432,0.779535,0.552533,0.189581,0.923939,0.0236159,0.898654,0.739403,0.116809,0.76256,0.239776,0.416733,0.950462,0.0157178,0.0597606,0.891274,0.239344,0.204111,0.908318,0.495372,0.603312,0.393939,0.681794,0.526709,0.0899385,0.147714,0.220374,0.378213,0.178077,0.827179,0.640834,0.83548,0.283014,0.435406,0.236933,0.527671,0.430781,0.700176,0.689354,0.804527,0.168451,0.831141,0.228467,0.222324,0.815835,0.757528,0.494425,0.158296,0.591623,0.926077,0.596432,0.800689,0.887794,0.632466,0.124297,0.639961,0.996644,0.647877,0.0877959,0.347774,0.368683,0.770475,0.190624,0.813908,0.851197,0.989727,0.849304,0.982076,0.390998,0.986336,0.169255,0.584943,0.851219,0.900524,0.131673,0.383787,0.811635,0.961691,0.982749,0.290714,0.226197,0.7608,0.952353,0.704777,0.67402,0.6983,0.596925,0.633838,0.491662,0.784923,0.864533,0.294317,0.476889,0.534643,0.88207,0.255484,0.500096,0.619556,0.222067,0.575438,0.808079,0.0944965,0.510139,0.0266245,0.743972,0.906324,0.595011,0.812091,0.111895,0.946159,0.0021947,0.0174941,0.94267,0.316556,0.270457,0.79708,0.159303,0.565407,0.0371132,0.0170151,0.523239,0.934884,0.811339,0.151935,0.709425,0.971779,0.489641,0.452266,0.338816,0.828886,0.624899,0.99243,0.352399,0.0288892,0.300623,0.743885,0.928948,0.0228763,0.471694,0.352208,0.338894,0.495372,0.853279,0.541648,0.249041,0.921602,0.847932,0.918143,0.874268,0.282853,0.115186,0.279477,0.898834,0.396369,0.156208,0.344922,0.809767,0.60215,0.0769511,0.573516,0.924458,0.0926251,0.572845,0.398288,0.275104,0.89719,0.957028,0.684748,0.435142,0.960095,0.753937,0.803224,0.784144,0.661776,0.208004,0.797297,0.174908,0.473528,0.149111,0.846883,0.650218,0.153599,0.608846,0.794864,0.523111,0.88208,0.20452,0.0100059,0.557376,0.0690057,0.779512,0.667107,0.169557,0.0453532,0.947557,0.0945786,0.84578,0.727872,0.650347,0.904936,0.0874129,0.43499,0.288742,0.548825,0.1725,0.789357,0.185676,0.680817,0.029875,0.380222,0.532616,0.253199,0.507802,0.33874,0.684347,0.655128,0.803597,0.72967,0.69748,0.117068,0.415721,0.297698,0.561812,0.201725,0.657528,0.595633,0.371136,0.451281,0.198712,0.1741,0.277748,0.329704,0.593392,0.160441,0.907493,0.426593,0.719676,0.970398,0.0903561,0.176289,0.903249,0.418785,0.552737,0.0309602,0.506584,0.499712,0.248858,0.659448,0.0833541,0.735101,0.253581,0.174106,0.430734,0.0453594,0.222822,0.532964,0.252503,0.766093,0.284121,0.406056,0.474741,0.270285,0.630871,0.892952,0.935286,0.583476,0.205815,0.0853797,0.0717496,0.777836,0.838683,0.245832,0.187761,0.0659115,0.294415,0.520133,0.372917,0.0260991,0.716798,0.967101,0.806719,0.372615,0.987245,0.808296,0.975765,0.975044,0.553186,0.517291,0.909075,0.945154,0.735573,0.596555,0.959048,0.0112054,0.104297,0.938981,0.961721,0.970136,0.423705,0.377643,0.470561,0.130261,0.279775,0.544144,0.058083,0.215255,0.0645114,0.945292,0.571582,0.84907,0.659743,0.510341,0.468919,0.556384,0.30769,0.314261,0.332868,0.961913,0.567847,0.949899,0.900628,0.582672,0.315755,0.521875,0.520164,0.361866,0.0418808,0.704534,0.364441,0.373512,0.475929,0.67636,0.863416,0.615017,0.770647,0.355369,0.830828,0.741915,0.521482,0.673961,0.709807,0.943255,0.218074,0.471134,0.216343,0.534294,0.920581,0.208543,0.896572,0.579435,0.129576,0.52529,0.712746,0.71699,0.68992,0.145482,0.30418,0.387538,0.943287,0.184576,0.392329,0.687346,0.0993248,0.550262,0.0430833,0.883151,0.0133365,0.556859,0.657064,0.799678,0.29411,0.329306,0.432119,0.775432,0.13281,0.430326,0.972816,0.431271,0.79578,0.137,0.941189,0.903421,0.232073,0.705774,0.966692,0.00294876,0.418738,0.614056,0.755795,0.180808,0.150324,0.284401,0.826899,0.952475,0.126047,0.68098,0.741321,0.496042,0.234036,0.090872,0.610715,0.166718,0.551803,0.0846887,0.923065,0.967387,0.566855,0.893611,0.947313,0.345671,0.574219,0.812793,0.368418,0.36721,0.214961,0.569661,0.773949,0.834139,0.259018,0.719382,0.493009,0.346417,0.991866,0.63755,0.797498,0.200998,0.39152,0.0599878,0.91981,0.407886,0.869808,0.428836,0.193202,0.51354,0.0732489,0.0477121,0.0815606,0.827917,0.214466,0.0876416,0.530192,0.349132,0.79306,0.104853,0.48096,0.00249439,0.127275,0.722632,0.212337,0.385397,0.0994309,0.45896,0.284228,0.952111,0.36914,0.895841,0.38517,0.289476,0.445039,0.570742,0.130827,0.168982,0.608677,0.509827,0.665044,0.847724,0.0402952,0.512968,0.300053,0.1191,0.309943,0.422395,0.572083,0.144042,0.541474,0.582176,0.782924,0.969978,0.746718,0.256086,0.994469,0.173706,0.709502,0.204615,0.274149,0.53548,0.934518,0.368534,0.761629,0.62174,0.322711,0.940782,0.577103,0.865351,0.670679,0.451158,0.192814,0.435125,0.422487,0.0409952,0.746917,0.186579,0.480513,0.347806,0.204973,0.873797,0.1886,0.00969529,0.0504689,0.0618946,0.0729296,0.673104,0.36591,0.103879,0.828793,0.323064,0.437279,0.156628,0.399915,0.815689,0.426352,0.959773,0.166319,0.0992965,0.311692,0.0452349,0.452928,0.249524,0.354279,0.257921,0.249287,0.19083,0.80069,0.0755587,0.371731,0.115117,0.758994,0.357229,0.541051,0.22938,0.322565,0.0138714,0.833678,0.685376,0.200704,0.72147,0.369093,0.480206,0.743546,0.934202,0.934891,0.635934,0.956587,0.904051,0.0183396,0.666488,0.223924,0.928184,0.954002,0.982258,0.951607,0.758209,0.819793,0.778548,0.807411,0.839506,0.353335,0.64294,0.0590467,0.962866,0.502201,0.323623,0.829511,0.919474,0.400822,0.328165,0.987551,0.00219595,0.258517,0.644713,0.610049,0.210347,0.39143,0.123797,0.395666,0.81614,0.832203,0.395093,0.578343,0.747549,0.909759,0.823581,0.502671,0.0905172,0.037977,0.498577,0.206635,0.578439,0.21614,0.103925,0.733154,0.0901074,0.107034,0.101843,0.460438,0.928644,0.150162,0.529976,0.568306,0.962967,0.913093,0.474345,0.685172,0.283842,0.185336,0.79192,0.76502,0.195678,0.447606,0.780499,0.2663,0.113972,0.385245,0.611188,0.551152,0.688407,0.0721561,0.800521,0.00743854,0.298412,0.171923,0.401473,0.455546,0.861256,0.51469,0.274246,0.816316,0.304239,0.817326,0.118802,0.416651,0.900088,0.814308,0.609131,0.855765,0.463351,0.103502,0.491102,0.252511,0.238995,0.0883033,0.952156,0.487644,0.920964,0.451895,0.764652,0.361317,0.156376,0.675338,0.673912,0.163518,0.270313,0.0751995,0.401694,0.936294,0.133509,0.542266,0.0091145,0.0263005,0.629188,0.0816894,0.933594,0.693954,0.884316,0.942136,0.852723,0.460248,0.743174,0.0990475,0.869397,0.330297,0.937032,0.928973,0.501144,0.390049,0.949736,0.560353,0.345601,0.913901,|0.535711,0.908451,0.478096,0.842982,0.396593,0.354369,0.603176,0.652731,0.904919,0.484224,0.0711915,0.853147,0.232025,0.165934,0.629409,0.597334,0.685635,0.347988,0.952705,0.666848,0.872367,0.299585,0.520077,0.0702593,0.604884,0.325818,0.144366,0.409537,0.883083,0.726678,0.581111,0.790555,0.957893,0.442611,0.785623,0.296308,0.830551,0.444192,0.0329686,0.841373,0.0778971,0.712773,0.94317,0.804078,0.212232,0.782237,0.416873,0.774694,0.759205,0.862441,0.859193,0.60871,0.172128,0.0171457,0.571906,0.740929,0.224503,0.459789,0.942788,0.657495,0.645843,0.747069,0.714677,0.940728,0.333269,0.571146,0.443812,0.058366,0.705961,0.488361,0.517429,0.994907,0.0929883,0.401368,0.0620329,0.98828,0.915515,0.820968,0.399264,0.578475,0.515123,0.245569,0.20783,0.122986,0.397752,0.0119582,0.714172,0.17102,0.445364,0.785357,0.735182,0.876623,0.0312702,0.00550926,0.674582,0.24526,0.575837,0.0625454,0.972773,0.105335,0.334993,0.675779,0.120949,0.767102,0.994383,0.0545914,0.110778,0.723785,0.867578,0.335852,0.302016,0.11215,0.863938,0.764391,0.331537,0.0124726,0.000398159,0.0431593,0.961224,0.454644,0.891585,0.545812,0.425306,0.393192,0.828428,0.668204,0.0337837,0.744735,0.555437,0.252824,0.15172,0.125015,0.323612,0.945894,0.649962,0.20267,0.87596,0.0966911,0.856525,0.464551,0.980996,0.885493,0.339961,0.561012,0.00383329,0.949375,0.829718,0.129593,0.561689,0.847706,0.706713,0.869674,0.216222,0.427063,0.0296466,0.0914472,0.484158,0.349725,0.375845,0.0459448,0.120342,0.552419,0.30988,0.705217,0.876932,0.0314396,0.452426,0.0848427,0.0607569,0.0376979,0.777736,0.876568,0.118629,0.123752,0.87307,0.630582,0.00713795,0.52527,0.623125,0.362083,0.880614,0.976696,0.628515,0.751305,0.767448,0.289878,0.0452278,0.726096,0.13249,0.97999,0.970878,0.0722753,0.636684,0.340301,0.772385,0.0251585,0.383154,0.0766641,0.623094,0.693678,0.80441,0.444592,0.0310878,0.530357,0.814364,0.220806,0.0859231,0.873745,0.46883,0.680825,0.692721,0.146628,0.378066,0.443599,0.24312,0.696281,0.636467,0.720592,0.323565,0.403978,0.235988,0.756999,0.370835,0.990217,0.253195,0.682558,0.811174,0.477332,0.0326062,0.757105,0.786344,0.395734,0.626388,0.387823,0.609874,0.592071,0.178154,0.899423,0.485336,0.788246,0.779027,0.724091,0.501912,0.984761,0.767674,0.771256,0.825462,0.297262,0.181458,0.409583,0.482132,0.784254,0.890338,0.79567,0.430831,0.164335,0.253525,0.581144,0.845133,0.357202,0.984086,0.835562,0.678524,0.808889,0.735022,0.00514323,0.0403737,0.740334,0.231804,0.257009,0.281295,0.775104,0.186402,0.603791,0.708834,0.856186,0.689585,0.417128,0.490201,0.147828,0.970975,0.568752,0.401167,0.615508,0.50223,0.940184,0.556047,0.617802,0.950252,0.512325,0.0638479,0.4701,0.281581,0.819998,0.826277,0.924651,0.922595,0.700031,0.150323,0.0143668,0.909987,0.839875,0.0603193,0.237747,0.937532,0.675678,0.568448,0.154675,0.579349,0.838661,0.970176,0.401831,0.207888,0.869905,0.525098,0.0369142,0.872956,0.912004,0.330395,0.478667,0.139303,0.670837,0.462135,0.627078,0.748311,0.307861,0.656917,0.659529,0.557024,0.264838,0.930377,0.101507,0.0983005,0.198653,0.123783,0.515657,0.586354,0.397264,0.210363,0.925735,0.0894962,0.866584,0.619253,0.613566,0.487723,0.786883,0.149272,0.676465,0.308226,0.73405,0.872483,0.869876,0.569946,0.620918,0.0243255,0.244663,0.576819,0.346474,0.446644,0.33591,0.599047,0.571375,0.0604789,0.00448841,0.971249,0.0668861,0.602229,0.983344,0.626179,0.318864,0.602681,0.095828,0.297576,0.64559,0.832467,0.708223,0.526678,0.821067,0.12077,0.464408,0.576301,0.279136,0.0915074,0.630274,0.850723,0.597223,0.121851,0.315671,0.0908539,0.376701,0.125705,0.494436,0.818379,0.815178,0.62182,0.303782,0.101968,0.557326,0.524314,0.141562,0.791017,0.508946,0.780492,0.299967,0.418879,0.424098,0.446524,0.192662,0.238858,0.0753288,0.469381,0.471719,0.812561,0.779687,0.271362,0.947421,0.784288,0.274072,0.378189,0.896186,0.553768,0.895508,0.750018,0.258657,0.209686,0.285706,0.690537,0.599778,0.543946,0.583817,0.911835,0.102646,0.893355,0.971227,0.747904,0.157332,0.473933,0.778186,0.672615,0.998721,0.088296,0.180632,0.35298,0.722324,0.554269,0.63742,0.974845,0.143398,0.26766,0.973112,0.756151,0.934134,0.630897,0.361633,0.855404,0.250568,0.949047,0.0276917,0.344369,0.76473,0.478449,0.702236,0.498985,0.00310761,0.156698,0.697881,0.550635,0.908492,0.638072,0.218513,0.529927,0.786806,0.913282,0.996948,0.727345,0.971406,0.318941,0.8193,0.328736,0.0803319,0.807115,0.042836,0.668351,0.58413,0.715734,0.864118,0.598276,0.0830942,0.563629,0.729351,0.105938,0.657372,0.990797,0.691706,0.24095,0.296404,0.908667,0.939302,0.606013,0.535089,0.0381635,0.432794,0.0342659,0.403567,0.0976782,0.691642,0.567362,0.232029,0.307939,0.276606,0.701974,0.973383,0.463009,0.28072,0.0504803,0.788764,0.326337,0.219521,0.977172,0.77105,0.363329,0.607018,0.000953615,0.709051,0.304692,0.783631,0.882762,0.922581,0.834147,0.162755,0.413877,0.291807,0.82914,0.0152858,0.0278116,0.0469794,0.828811,0.0268475,0.811377,0.192656,0.829456,0.80174,0.0101141,0.322949,0.313895,0.97232,0.614495,0.659524,0.965703,0.688988,0.693146,0.767943,0.706054,0.425717,0.808061,0.578176,0.925148,0.51784,0.100341,0.122707,0.638682,0.350315,0.147903,0.33545,0.473944,0.877748,0.465199,0.384941,0.24091,0.0987965,0.386892,0.908025,0.794714,0.887704,0.576797,0.961787,0.676575,0.329814,0.485977,0.70091,0.532648,0.733293,0.933327,0.1981,0.677125,0.985906,0.592287,0.512909,0.766579,0.197869,0.310304,0.46124,0.469739,0.974276,0.90367,0.306783,0.453957,0.236119,0.0722686,0.990802,0.990759,0.288522,0.0214571,0.228836,0.459282,0.265627,0.924327,0.115374,0.746544,0.912538,0.741958,0.432127,0.667063,0.192583,0.145499,0.460716,0.774682,0.621757,0.731073,0.611082,0.973842,0.945384,0.358728,0.351753,0.444827,0.503844,0.851192,0.620997,0.184706,0.869274,0.808213,0.110511,0.0235698,0.363298,0.455355,0.576303,0.234889,0.66898,0.921718,0.655616,0.0497962,0.594714,0.724991,0.0954936,0.759195,0.781091,0.233392,0.649244,0.921243,0.964263,0.200715,0.0233334,0.0740764,0.271029,0.792923,0.802848,0.390188,0.550049,0.881008,0.747164,0.0116829,0.689856,0.430075,0.0721132,0.746666,0.344946,0.487355,0.128066,0.921124,0.588358,0.465572,0.85386,0.466671,0.858321,0.00449002,0.868587,0.899826,0.412472,0.138002,0.271697,0.644913,0.223163,0.821475,0.775953,0.0417696,0.341641,0.586834,0.00963396,0.0814286,0.436013,0.971047,0.15164,0.0551437,0.88265,0.858359,0.58712,0.774023,0.993247,0.476586,0.433719,0.797854,0.37515,0.899861,0.840154,0.143043,0.118616,0.247231,0.708856,0.00101286,0.645532,0.640294,0.645121,0.333955,0.042632,0.997382,0.989498,0.557027,0.215719,0.182955,0.0678602,0.113885,0.875171,0.548505,0.428929,0.169846,0.624762,0.903177,0.0619836,0.378277,0.543054,0.22688,0.6561,0.98157,0.229899,0.737109,0.0389779,0.244738,0.53573,0.366546,0.0203629,0.609122,0.232161,0.0536062,0.802877,0.749062,0.891648,0.994128,0.75373,0.657577,0.104884,0.20209,0.312403,0.241488,0.64297,0.637599,0.290696,0.583176,0.516667,0.236337,0.957644,0.144836,0.786536,0.561121,0.199768,0.767843,0.398896,0.661559,0.145766,0.613041,0.121875,0.646883,0.987603,0.698764,0.354144,0.187569,0.882967,0.0252209,0.0246765,0.348378,0.854833,0.825127,0.155336,0.0673877,0.120457,0.525541,0.88319,0.180701,0.942563,0.632904,0.0525119,0.376082,0.246634,0.764647,0.348352,0.160352,0.818233,0.383059,0.807718,0.889279,0.24483,0.702605,0.680816,0.521372,0.562261,0.197078,0.753911,0.0759547,0.0726789,0.97973,0.988175,0.079029,0.670532,0.408562,0.66704,0.312105,0.17493,0.634838,0.478778,0.263497,0.123697,0.998663,0.134892,0.245341,0.970113,0.83243,0.502733,0.964874,0.203995,0.735129,0.602575,0.118577,0.058796,0.604981,0.169697,0.997145,0.298945,0.320385,0.396009,0.207256,0.489198,0.834569,0.049639,0.0242267,0.604998,0.443117,0.00946677,0.621197,0.073859,0.0932724,0.749021,0.489073,0.84187,0.634644,0.0933871,0.984788,0.608254,0.323107,0.43477,0.141177,0.939856,0.186845,0.379092,0.480367,0.55995,0.0937881,0.192653,0.897088,0.587865,0.740085,0.514519,0.0218149,0.218455,0.602224,0.724501,0.143593,0.777448,0.0904785,0.326533,0.996042,0.468133,0.697709,0.248482,0.274137,0.207383,0.60816,0.346195,0.600652,0.120314,0.23949,0.524822,0.294155,0.82892,0.237404,0.716831,0.480689,0.80374,0.582078,0.0945922,0.866837,0.775311,0.442589,0.155512,0.0990654,0.647726,0.580428,0.214197,0.32407,0.680377,0.462813,0.107251,0.310212,0.470121,0.21472,0.212268,0.780338,0.235809,0.987825,0.129733,0.849845,0.921193,0.730109,0.862772,0.270451,0.66398,0.00347781,0.134564,0.416607,0.960773,0.664365,0.241957,0.154762,0.509588,0.647725,0.315001,0.13958,0.883846,0.494743,0.739681,0.86829,0.402374,0.822137,0.286691,0.94439,0.795324,0.285182,0.780793,0.190916,0.030857,0.544253,0.360045,0.832997,0.490894,0.241365,0.945086,0.6132,0.0193658,0.591697,0.472753,0.825115,0.780957,0.277419,0.276173,0.053025,0.933657,0.847068,0.784936,0.353687,0.769858,0.518532,0.486643,0.730938,0.882329,0.0784562,0.9027,0.762148,0.271924,0.0774109,0.337868,0.0673816,0.341842,0.470829,0.731058,0.804203,0.266852,0.660512,0.704575,0.735755,0.7999,0.103557,0.316039,0.00940746,0.61432,0.660449,0.2216,0.848959,0.646594,0.831454,0.291448,0.650815,0.6773,|0.814903,0.815098,0.542539,0.369143,0.57661,0.390017,0.436732,0.552754,0.597871,0.961671,0.709289,0.613461,0.0114242,0.407858,0.968141,0.384715,0.621956,0.273032,0.13268,0.794064,0.70394,0.35275,0.487927,0.835913,0.607906,0.213713,0.579325,0.807642,0.564028,0.238901,0.378569,0.642839,0.785562,0.440886,0.544457,0.691376,0.334583,0.411111,0.161155,0.302335,0.346901,0.642476,0.231123,0.375308,0.819421,0.500289,0.478302,0.318348,0.754759,0.754201,0.712043,0.534845,0.787678,0.332227,0.858679,0.0732391,0.588051,0.165097,0.734847,0.952365,0.190136,0.232764,0.526186,0.0603719,0.742904,0.227894,0.450906,0.437502,0.0120479,0.163788,0.580343,0.737992,0.748955,0.906796,0.91263,0.281107,0.502385,0.689155,0.845703,0.751836,0.145702,0.316896,0.691017,0.397455,0.710045,0.00223517,0.824736,0.857975,0.470237,0.747486,0.0369434,0.473732,0.828548,0.381904,0.191386,0.0154327,0.777599,0.717354,0.374833,0.309828,0.102991,0.774303,0.427495,0.722724,0.422185,0.731699,0.51719,0.330161,0.98445,0.528821,0.170589,0.316488,0.692601,0.930202,0.0936149,0.0254992,0.970818,0.952958,0.706888,0.300038,0.753058,0.999793,0.781865,0.974721,0.890235,0.195541,0.459234,0.480295,0.434788,0.670981,0.083273,0.323837,0.976679,0.789039,0.934126,0.316642,0.157117,0.37194,0.953838,0.766007,0.587448,0.55835,0.267805,0.0977727,0.309433,0.155618,0.759591,0.958712,0.599917,0.427055,0.475037,0.0258768,0.566524,0.734285,0.567429,0.996998,0.0946796,0.181228,0.0924714,0.103146,0.546284,0.417066,0.216546,0.492528,0.51069,0.986429,0.14823,0.599286,0.880403,0.00419551,0.908362,0.685145,0.510331,0.798933,0.68872,0.0598644,0.166793,0.72856,0.0736634,0.46675,0.882055,0.066178,0.119621,0.233647,0.02751,0.94094,0.17582,0.801417,0.610401,0.321409,0.586649,0.672783,0.199016,0.0355388,0.657464,0.725664,0.616326,0.809587,0.40991,0.362461,0.739108,0.0554443,0.717981,0.79523,0.101638,0.578347,0.447255,0.565955,0.193686,0.990814,0.890549,0.614407,0.110229,0.941116,0.852442,0.671043,0.525559,0.412079,0.711286,0.270782,0.230791,0.651615,0.30218,0.214054,0.688852,0.315077,0.385047,0.922073,0.320043,0.591988,0.703352,0.515553,0.670337,0.55203,0.460085,0.673459,0.684076,0.548165,0.0276138,0.686467,0.22189,0.513898,0.460857,0.402151,0.513914,0.587558,0.206977,0.00318545,0.765827,0.0868577,0.619331,0.764091,0.133258,0.788187,0.16005,0.245532,0.521457,0.165631,0.906567,0.413343,0.648716,0.654181,0.835541,0.495745,0.947984,0.861938,0.441847,0.191152,0.958302,0.231551,0.428884,0.719675,0.273563,0.349669,0.64661,0.75528,0.252447,0.454248,0.937961,0.420548,0.828889,0.110994,0.0871705,0.0152503,0.0190742,0.0651186,0.433883,0.92598,0.224753,0.435235,0.94008,0.964847,0.0713153,0.986004,0.386917,0.262964,0.701529,0.551133,0.154542,0.317228,0.974081,0.00264925,0.961589,0.495889,0.4336,0.798764,0.6276,0.543874,0.87559,0.729243,0.220684,0.288006,0.217252,0.0317512,0.41584,0.171344,0.053524,0.629677,0.636729,0.689574,0.288442,0.939509,0.897911,0.833162,0.970136,0.760897,0.180055,0.856925,0.67859,0.121797,0.318923,0.743889,0.134968,0.785618,0.0331886,0.209165,0.428667,0.271553,0.713354,0.212172,0.336753,0.591624,0.119994,0.70139,0.823868,0.791857,0.64976,0.87398,0.960889,0.00378388,0.687136,0.56975,0.792465,0.000338197,0.353805,0.775689,0.616745,0.847622,0.34661,0.988188,0.57754,0.809618,0.596518,0.65737,0.624891,0.607476,0.0378339,0.301789,0.89628,0.294002,0.732144,0.648806,0.200334,0.545159,0.982309,0.162129,0.241961,0.631369,0.860899,0.0433924,0.383656,0.416891,0.671844,0.137215,0.460706,0.641833,0.18414,0.698251,0.941776,0.678872,0.330447,0.18822,0.916714,0.765003,0.738065,0.871676,0.481219,0.85201,0.871239,0.149929,0.466422,0.510147,0.343655,0.969464,0.499517,0.731372,0.147302,0.197049,0.114811,0.910819,0.24374,0.0853182,0.792613,0.656755,0.366359,0.896091,0.0511649,0.172958,0.0992472,0.825537,0.344072,0.229837,0.384389,0.295958,0.0246351,0.236005,0.413942,0.93742,0.947778,0.263359,0.56663,0.185839,0.42218,0.262045,0.992222,0.377614,0.335848,0.989549,0.607028,0.792644,0.466636,0.0939405,0.537626,0.30336,0.405795,0.418884,0.367697,0.72218,0.853463,0.18982,0.0948028,0.291678,0.775797,0.609818,0.709532,0.578976,0.72063,0.883434,0.349103,0.649641,0.575206,0.910886,0.21507,0.0270895,0.927849,0.474124,0.0268757,0.280129,0.339122,0.749072,0.792161,0.944897,0.886325,0.519676,0.140547,0.727301,0.930018,0.278614,0.686862,0.610404,0.0151534,0.377697,0.0886713,0.30168,0.556214,0.748112,0.631354,0.789495,0.509017,0.772432,0.636839,0.00294828,0.060744,0.290733,0.651602,0.242017,0.0714091,0.987617,0.945503,0.141132,0.41562,0.0550562,0.159633,0.651961,0.381297,0.986131,0.496836,0.145988,0.651414,0.0859237,0.712081,0.521382,0.52623,0.452141,0.118813,0.895548,0.408261,0.428429,0.172478,0.684868,0.345814,0.120285,0.0599529,0.24105,0.587332,0.0526203,0.577711,0.0428523,0.598741,0.721036,0.416539,0.408157,0.185304,0.536126,0.525263,0.946413,0.863943,0.265464,0.745321,0.619213,0.687474,0.177774,0.785124,0.98076,0.868271,0.488677,0.109014,0.828867,0.923207,0.104786,0.00768328,0.64126,0.168975,0.95284,0.656415,0.46546,0.435962,0.437419,0.802601,0.494204,0.562442,0.571869,0.253347,0.628353,0.69424,0.577432,0.28878,0.132732,0.140336,0.837435,0.430944,0.428155,0.00305396,0.984415,0.500903,0.0181401,0.288401,0.965781,0.190068,0.196173,0.944472,0.645804,0.73599,0.978583,0.513604,0.06752,0.440735,0.191871,0.410751,0.308305,0.0256364,0.567692,0.604907,0.430026,0.0439473,0.779967,0.526066,0.788088,0.30226,0.569391,0.466926,0.611676,0.959229,0.939866,0.38573,0.688111,0.36687,0.192713,0.501456,0.343918,0.244046,0.111493,0.290711,0.193214,0.438349,0.379777,0.14928,0.700747,0.156727,0.237955,0.032325,0.219492,0.576775,0.271676,0.381737,0.970102,0.373844,0.278183,0.935317,0.666893,0.22475,0.451877,0.785892,0.798134,0.165585,0.435505,0.159996,0.88304,0.825717,0.78105,0.215878,0.645997,0.034377,0.860167,0.154718,0.601088,0.158795,0.68852,0.701978,0.87196,0.786014,0.845363,0.579899,0.85058,0.109871,0.849252,0.387425,0.497095,0.776493,0.0536378,0.000304163,0.54411,0.950293,0.173122,0.657428,0.961603,0.897606,0.518205,0.861667,0.192157,0.786522,0.434855,0.578068,0.871698,0.439326,0.516218,0.0360469,0.66344,0.46246,0.396688,0.712515,0.366661,0.302319,0.187775,0.00692999,0.181098,0.644665,0.928383,0.335187,0.518121,0.723362,0.608651,0.917584,0.153374,0.560213,0.327708,0.400395,0.427913,0.606753,0.676643,0.377235,0.407104,0.876526,0.303105,0.238908,0.331039,0.365394,0.512258,0.215243,0.617815,0.811982,0.825627,0.032411,0.97793,0.0674954,0.480768,0.988111,0.598748,0.84479,0.0866697,0.331591,0.672716,0.261861,0.164242,0.182483,0.812785,0.834434,0.573391,0.0336884,0.906351,0.69983,0.444842,0.943749,0.0563037,0.605842,0.107022,0.777906,0.452597,0.85872,0.228688,0.291709,0.869728,0.715735,0.915895,0.200829,0.672043,0.273472,0.460088,0.192292,0.0544248,0.406349,0.00445789,0.880056,0.793722,0.255365,0.611441,0.64516,0.900838,0.416287,0.581037,0.380987,0.398584,0.719851,0.947871,0.449102,0.962336,0.840707,0.0912328,0.280865,0.0730728,0.851091,0.222651,0.878013,0.835028,0.399127,0.993079,0.584999,0.838834,0.944489,0.186836,0.647877,0.952466,0.0198435,0.733727,0.983485,0.48151,0.922578,0.470855,0.781202,0.129304,0.191524,0.737391,0.873672,0.756404,0.451428,0.258178,0.135284,0.823898,0.327342,0.789221,0.939985,0.739232,0.804482,0.795919,0.707572,0.494964,0.0575418,0.932459,0.50808,0.943599,0.64696,0.322156,0.613247,0.875346,0.0188758,0.43898,0.810332,0.940729,0.421389,0.853325,0.641864,0.754062,0.756989,0.126162,0.122895,0.546507,0.163014,0.803551,0.591141,0.34425,0.00888884,0.637792,0.329824,0.683256,0.112818,0.510351,0.482625,0.299284,0.710672,0.413521,0.53116,0.581145,0.182885,0.215833,0.12553,0.490388,0.900723,0.477455,0.464886,0.279361,0.299794,0.140099,0.549273,0.219228,0.932273,0.0560364,0.258955,0.72154,0.755716,0.660224,0.34846,0.801438,0.696463,0.462201,0.825156,0.971406,0.023239,0.670045,0.240667,0.658999,0.626833,0.831215,0.914533,0.898662,0.46491,0.20953,0.00143832,0.667711,0.93023,0.24572,0.407077,0.408153,0.427987,0.920117,0.98524,0.679696,0.790214,0.909137,0.190533,0.561573,0.382742,0.394872,0.15167,0.707394,0.684217,0.863175,0.125879,0.631925,0.425385,0.37946,0.00106359,0.0191145,0.137494,0.867638,0.619463,0.241388,0.667281,0.541546,0.692323,0.403212,0.318237,0.910682,0.682633,0.705387,0.530471,0.160784,0.425937,0.880336,0.514551,0.389562,0.0553592,0.946504,0.209091,0.959995,0.321694,0.942553,0.556638,0.842458,0.141228,0.764503,0.789995,0.480592,0.595493,0.592428,0.886702,0.0853815,0.05819,0.862093,0.985664,0.143699,0.59853,0.596241,0.142288,0.358768,0.480705,0.00504541,0.225908,0.206605,0.583667,0.229142,0.353022,0.993389,0.270963,0.783345,0.782993,0.64238,0.925247,0.612185,0.795372,0.18174,0.753833,0.135539,0.44346,0.271552,0.732819,0.786701,0.0747012,0.957364,0.344013,0.788155,0.517694,0.23866,0.258111,0.128886,0.912124,0.180202,0.981387,0.521389,0.946646,0.763022,0.709969,0.168432,0.802229,0.208959,0.354072,0.778614,0.230088,0.784351,0.315706,0.493014,0.833182,0.569229,0.863755,0.127013,0.440706,0.42547,0.252209,0.327637,0.577314,0.301685,|0.481485,0.931936,0.27681,0.51631,0.108779,0.948331,0.744907,0.598433,0.0325902,0.429289,0.622558,0.953483,0.122283,0.0482529,0.274576,0.10942,0.542399,0.278333,0.653307,0.689826,0.155524,0.796672,0.879885,0.49374,0.744895,0.940462,0.877888,0.184666,0.230785,0.479473,0.878816,0.749525,0.679176,0.497454,0.643882,0.466437,0.874183,0.0208335,0.199332,0.254634,0.968618,0.043873,0.154095,0.0359488,0.970382,0.856026,0.716153,0.460392,0.561841,0.523543,0.312111,0.232842,0.584825,0.107971,0.958506,0.531981,0.722798,0.673921,0.734867,0.71769,0.0688071,0.773638,0.35359,0.28752,0.246331,0.812939,0.541862,0.217667,0.241444,0.00587022,0.163557,0.652802,0.835297,0.0142727,0.636235,0.0147642,0.734204,0.290589,0.0311094,0.481996,0.119111,0.956363,0.180605,0.434201,0.173495,0.813316,0.916014,0.177822,0.376624,0.53395,0.571872,0.227789,0.766482,0.943872,0.581967,0.887023,0.735398,0.554262,0.949876,0.256643,0.891811,0.521037,0.269207,0.424917,0.633665,0.176718,0.396563,0.261045,0.773726,0.570997,0.817058,0.812194,0.437554,0.7714,0.514402,0.635909,0.141784,0.652484,0.0245191,0.413088,0.354181,0.226835,0.25691,0.179984,0.624794,0.830792,0.0690916,0.391531,0.891281,0.0176232,0.152684,0.164553,0.386857,0.702396,0.840467,0.0645747,0.993862,0.399351,0.0975806,0.0731742,0.647847,0.355499,0.0227132,0.927188,0.437392,0.793576,0.630031,0.751055,0.329279,0.957019,0.490912,0.161235,0.167931,0.531684,0.72614,0.79597,0.937811,0.717919,0.0259276,0.61347,0.342859,0.0931843,0.864467,0.023406,0.394455,0.950379,0.393389,0.780353,0.428419,0.607575,0.95488,0.192485,0.982807,0.929975,0.526886,0.665669,0.157211,0.634738,0.233482,0.0854256,0.770418,0.142681,0.485797,0.117195,0.0860386,0.790641,0.0544198,0.281374,0.138415,0.296716,0.597245,0.657765,0.766731,0.506111,0.150487,0.452142,0.152541,0.120634,0.686666,0.133915,0.0994407,0.256836,0.796066,0.445613,0.0202338,0.579047,0.663684,0.344893,0.0327771,0.689117,0.487779,0.90246,0.349333,0.613217,0.963711,0.866359,0.124281,0.917695,0.283419,0.412119,0.181029,0.303334,0.635446,0.608714,0.834628,0.647925,0.0288967,0.103934,0.873319,0.0362566,0.00627512,0.913567,0.592926,0.587436,0.0741823,0.448564,0.35879,0.946858,0.41517,0.629628,0.799085,0.711906,0.618618,0.657599,0.192636,0.435157,0.735451,0.143345,0.154968,0.0886491,0.109233,0.532277,0.72087,0.35216,0.666584,0.663153,0.329002,0.55414,0.989749,0.384956,0.949431,0.625795,0.946484,0.469341,0.394117,0.863844,0.839805,0.462839,0.366778,0.178677,0.689858,0.340734,0.0678988,0.608479,0.125875,0.481349,0.683688,0.512362,0.679787,0.0766761,0.387972,0.0236397,0.833608,0.676984,0.58595,0.241743,0.358426,0.975087,0.895849,0.0946043,0.856846,0.915885,0.78231,0.0939146,0.0584508,0.404448,0.00042969,0.321177,0.454626,0.487705,0.75207,0.237334,0.108107,0.739599,0.299156,0.361187,0.772306,0.271424,0.962129,0.60404,0.785369,0.856621,0.845706,0.29908,0.470803,0.276702,0.382344,0.33936,0.684807,0.369905,0.344389,0.951167,0.534105,0.456541,0.640264,0.413255,0.751498,0.768218,0.737756,0.454453,0.945402,0.596811,0.851691,0.490045,0.963962,0.668511,0.818981,0.273455,0.132446,0.580993,0.566893,0.720566,0.420463,0.327626,0.35547,0.710827,0.829536,0.808783,0.295137,0.495189,0.702471,0.244266,0.918808,0.158281,0.775926,0.69103,0.449137,0.250469,0.770938,0.617821,0.827664,0.194763,0.115151,0.968114,0.279654,0.271868,0.177499,0.291726,0.0136408,0.484069,0.542759,0.580081,0.864217,0.343257,0.21266,0.112028,0.0786795,0.895131,0.691994,0.535001,0.14971,0.889822,0.0356681,0.738763,0.243674,0.185685,0.317876,0.389245,0.68173,0.161804,0.29037,0.682206,0.428476,0.321339,0.655593,0.996235,0.659115,0.416341,0.805319,0.836019,0.694628,0.507261,0.0504849,0.537169,0.975978,0.471685,0.498327,0.819908,0.279131,0.780979,0.275391,0.643969,0.201146,0.224738,0.535519,0.469715,0.117254,0.915983,0.887195,0.0445424,0.345138,0.957796,0.603153,0.417798,0.226195,0.458454,0.488624,0.67358,0.479381,0.684375,0.832981,0.261413,0.322259,0.085834,0.442686,0.069546,0.0149907,0.47857,0.664577,0.649645,0.766788,0.611647,0.966062,0.92224,0.453812,0.481269,0.257226,0.718328,0.185144,0.0216261,0.704717,0.19343,0.0891834,0.77399,0.272402,0.337926,0.887355,0.381806,0.411196,0.0700204,0.369592,0.407372,0.108764,0.892165,0.288404,0.353243,0.911788,0.0947413,0.847266,0.944837,0.393246,0.28246,0.950304,0.983354,0.253819,0.785613,0.685233,0.64214,0.115153,0.838424,0.771474,0.185977,0.0715068,0.607704,0.315897,0.995065,0.656028,0.332144,0.670809,0.998819,0.55013,0.990178,0.126928,0.536363,0.19339,0.926408,0.839008,0.861826,0.0631453,0.343191,0.0642757,0.227579,0.914609,0.983933,0.607853,0.642087,0.86696,0.9622,0.257914,0.857909,0.279278,0.415811,0.706073,0.614673,0.476604,0.078311,0.381128,0.916166,0.740322,0.837382,0.693241,0.166729,0.702764,0.635909,0.882777,0.857755,0.686928,0.751419,0.76512,0.468015,0.791557,0.650674,0.845755,0.384497,0.830891,0.344784,0.861581,0.252809,0.419252,0.700674,0.205867,0.239652,0.545001,0.328048,0.201502,0.951617,0.960127,0.521117,0.368911,0.0704818,0.770596,0.580543,0.905153,0.110935,0.0267646,0.253063,0.606208,0.555039,0.733039,0.439598,0.49372,0.89651,0.0171365,0.925171,0.697986,0.981684,0.108303,0.901186,0.386825,0.244476,0.813029,0.396279,0.433964,0.113858,0.2815,0.61063,0.540675,0.13176,0.214501,0.761848,0.140819,0.863792,0.916713,0.590373,0.460096,0.999439,0.757262,0.362479,0.0458848,0.637665,0.424488,0.623979,0.842349,0.21176,0.510295,0.770658,0.365559,0.290066,0.392362,0.646845,0.583407,0.165073,0.850088,0.581941,0.00333226,0.000594735,0.38816,0.268858,0.806601,0.084442,0.394655,0.785795,0.0914918,0.251378,0.797445,0.130641,0.126517,0.0121182,0.149917,0.29542,0.63943,0.957587,0.602697,0.846951,0.860407,0.269133,0.170373,0.397922,0.399711,0.405721,0.804515,0.221988,0.982791,0.151968,0.309754,0.327413,0.205942,0.383219,0.517497,0.0696785,0.983098,0.691708,0.924819,0.38665,0.796798,0.470627,0.046703,0.401972,0.108781,0.813444,0.871965,0.201699,0.31133,0.149246,0.324599,0.0985979,0.341723,0.703001,0.109479,0.0407789,0.237366,0.484752,0.863789,0.731648,0.228687,0.336442,0.000279844,0.165458,0.179942,0.619728,0.270761,0.398165,0.779425,0.00538045,0.930526,0.196808,0.238903,0.856124,0.0213975,0.700338,0.48509,0.10362,0.92072,0.0247445,0.344935,0.270947,0.796935,0.476181,0.245045,0.931679,0.700852,0.0481636,0.191859,0.0680988,0.935203,0.751301,0.705673,0.16663,0.473259,0.882088,0.200759,0.238864,0.223406,0.828914,0.634216,0.809142,0.602284,0.471816,0.240589,0.181789,0.00978446,0.732265,0.658191,0.764267,0.330227,0.462519,0.882414,0.467487,0.628363,0.352867,0.00433362,0.147907,0.0705247,0.324458,0.653808,0.151296,0.0380334,0.436768,0.60721,0.655486,0.106769,0.210848,0.310525,0.853898,0.461977,0.578883,0.813444,0.921954,0.90512,0.135686,0.533084,0.262661,0.888055,0.084599,0.672984,0.87965,0.721715,0.284245,0.640184,0.211186,0.252705,0.363165,0.618178,0.415857,0.709825,0.960615,0.238112,0.789256,0.844162,0.851191,0.42435,0.413022,0.163213,0.940625,0.822579,0.331589,0.0721306,0.768653,0.95425,0.705708,0.570039,0.415639,0.110548,0.956797,0.800763,0.641274,0.47449,0.497814,0.432695,0.901102,0.133818,0.927277,0.41214,0.438034,0.272077,0.170731,0.847992,0.779393,0.863807,0.831489,0.670571,0.535657,0.942937,0.847022,0.962461,0.0236629,0.052605,0.844193,0.972742,0.981157,0.558927,0.575133,0.312764,0.126918,0.480219,0.959366,0.649424,0.0394165,0.186498,0.991016,0.558807,0.273017,0.0967164,0.826163,0.123055,0.613773,0.26439,0.0384048,0.739793,0.818382,0.290528,0.515522,0.954232,0.481776,0.804719,0.2546,0.491695,0.625624,0.919133,0.603737,0.851724,0.498141,0.0662274,0.880751,0.592936,0.842212,0.928276,0.841947,0.894204,0.777034,0.925723,0.35296,0.273293,0.633639,0.0653769,0.551698,0.145041,0.82629,0.849966,0.113334,0.548503,0.10288,0.249138,0.669894,0.419449,0.360231,0.388981,0.894511,0.190176,0.795187,0.754472,0.795777,0.24601,0.0693718,0.052977,0.167518,0.611137,0.661506,0.629344,0.252751,0.998943,0.492795,0.56749,0.875189,0.236691,0.630147,0.0373181,0.58188,0.612709,0.799107,0.212362,0.228775,0.872942,0.364222,0.673259,0.00726014,0.767958,0.655574,0.0539485,0.965707,0.52217,0.534069,0.378723,0.863497,0.807707,0.150104,0.860664,0.804905,0.7358,0.912363,0.785435,0.469605,0.275354,0.488411,0.401101,0.542337,0.769708,0.35611,0.833382,0.137402,0.303907,0.286701,0.845997,0.555141,0.449834,0.91562,0.0161425,0.284218,0.590473,0.236329,0.755849,0.849064,0.423054,0.752462,0.989487,0.197599,0.105818,0.0411514,0.559168,0.363472,0.646463,0.585231,0.989915,0.805482,0.517995,0.289058,0.240861,0.243672,0.849594,0.323147,0.833251,0.316636,0.383388,0.0874094,0.890656,0.207962,0.447716,0.262906,0.291366,0.658868,0.739398,0.404283,0.608888,0.766787,0.103832,0.301884,0.893325,0.384353,0.706468,0.996089,0.465786,0.694377,0.315817,0.222864,0.967524,0.987038,0.745122,0.550862,0.163013,0.792201,0.209408,0.284446,0.0421739,0.95347,0.624107,0.628182,0.796878,0.186502,0.955043,0.36159,0.467574,0.104837,0.318524,0.638359,0.120394,0.717916,0.828586,0.0913546,0.290215,0.543459,0.552109,0.386087,0.234422,0.412867,0.593147,0.694154,0.805498,0.465897,0.0892292,0.50605,|0.932994,0.123658,0.682456,0.363446,0.109079,0.462557,0.322448,0.654079,0.595405,0.545417,0.524024,0.0201463,0.828344,0.926677,0.138659,0.74268,0.583106,0.11126,0.0385078,0.486432,0.332794,0.0470834,0.814525,0.30155,0.715075,0.322349,0.828653,0.905533,0.66612,0.510006,0.426008,0.880253,0.048112,0.358806,0.0490967,0.303738,0.92579,0.659536,0.864306,0.349392,0.886523,0.818708,0.732667,0.197557,0.824368,0.395004,0.263122,0.347254,0.418026,0.576721,0.388253,0.0837306,0.146358,0.182676,0.344288,0.871256,0.377984,0.982769,0.904286,0.493155,0.900268,0.200019,0.106907,0.125344,0.317543,0.796956,0.0025875,0.0290953,0.686353,0.518926,0.905364,0.329029,0.0412732,0.242902,0.956311,0.310156,0.905237,0.659506,0.78314,0.239079,0.17322,0.89135,0.448354,0.716848,0.723372,0.744002,0.195874,0.969613,0.404551,0.989759,0.949585,0.202244,0.176437,0.246583,0.0682136,0.36651,0.560148,0.928715,0.64204,0.41942,0.199011,0.76885,0.68117,0.444496,0.474912,0.991074,0.00896287,0.162859,0.497556,0.216307,0.649365,0.126446,0.466418,0.450636,0.721581,0.215687,0.990318,0.117945,0.812095,0.0835826,0.838911,0.714434,0.769651,0.565711,0.42249,0.671287,0.935776,0.704104,0.442533,0.611741,0.896461,0.952101,0.200586,0.0226631,0.657425,0.836755,0.859798,0.358758,0.610609,0.557181,0.78928,0.669724,0.100255,0.0897583,0.633572,0.0305678,0.708932,0.859932,0.105574,0.419298,0.48632,0.702905,0.760051,0.169861,0.327184,0.0309682,0.94142,0.283861,0.0413821,0.425873,0.341337,0.550267,0.164012,0.72777,0.578667,0.0829825,0.0894493,0.407485,0.939051,0.216206,0.14823,0.104502,0.340453,0.122648,0.604937,0.114829,0.420512,0.636297,0.724263,0.998215,0.144997,0.575232,0.355868,0.952259,0.426455,0.75338,0.791596,0.404041,0.360121,0.229061,0.889325,0.923741,0.637361,0.535581,0.953157,0.642865,0.502155,0.757978,0.310446,0.0873302,0.00887179,0.133403,0.997474,0.655166,0.359973,0.435918,0.825773,0.308701,0.543756,0.648169,0.0500792,0.220886,0.769329,0.177479,0.790178,0.739929,0.645104,0.375427,0.312851,0.311112,0.559849,0.347298,0.854128,0.871568,0.955889,0.368927,0.426363,0.0349213,0.505933,0.596999,0.0137362,0.877479,0.342039,0.97532,0.51586,0.326685,0.658098,0.0737104,0.468176,0.818267,0.669518,0.108376,0.317281,0.116008,0.015091,0.583417,0.667786,0.246671,0.502314,0.886349,0.569692,0.560542,0.29906,0.338675,0.529834,0.0846212,0.834341,0.763625,0.159469,0.357991,0.821893,0.46391,0.539135,0.412675,0.652192,0.341615,0.0968572,0.994824,0.606736,0.860545,0.364056,0.227303,0.186873,0.274182,0.365429,0.0217251,0.952544,0.171109,0.0848422,0.0240635,0.893913,0.265216,0.630424,0.331687,0.701165,0.493147,0.294353,0.211987,0.401661,0.867927,0.294108,0.620101,0.285462,0.999678,0.958702,0.675933,0.0206298,0.379865,0.660858,0.110376,0.168815,0.666702,0.844868,0.210132,0.218124,0.61183,0.03113,0.856437,0.198915,0.313164,0.634714,0.836927,0.529082,0.31419,0.367298,0.144383,0.572661,0.572228,0.283998,0.44385,0.376858,0.251135,0.66884,0.0102007,0.133953,0.436953,0.849664,0.261118,0.761489,0.718894,0.744386,0.0602697,0.000507414,0.707979,0.963878,0.288539,0.32995,0.883589,0.430286,0.553241,0.630525,0.304591,0.851525,0.684349,0.470205,0.725269,0.778031,0.726863,0.73081,0.935577,0.435945,0.255464,0.929639,0.117858,0.808069,0.163931,0.911622,0.0644026,0.139608,0.805276,0.0077613,0.386894,0.868524,0.035809,0.532978,0.731658,0.138599,0.18895,0.218913,0.46007,0.990881,0.898005,0.731626,0.145253,0.218057,0.381449,0.126112,0.0829714,0.402759,0.825056,0.123272,0.250549,0.845714,0.984646,0.276153,0.231608,0.404114,0.430348,0.936054,0.134331,0.966887,0.071395,0.484597,0.424243,0.778474,0.83573,0.602535,0.879513,0.335722,0.642534,0.438074,0.180611,0.167206,0.433293,0.171779,0.0256623,0.316464,0.772483,0.726512,0.942977,0.357232,0.964827,0.179743,0.766767,0.247605,0.127881,0.510281,0.779868,0.898279,0.178218,0.575376,0.679789,0.593428,0.954153,0.074759,0.707874,0.705957,0.370268,0.799842,0.921237,0.349019,0.948227,0.631581,0.433623,0.810253,0.91226,0.304554,0.880954,0.876935,0.992035,0.0111695,0.493937,0.334555,0.906147,0.748325,0.0548623,0.544469,0.706286,0.543699,0.19518,0.750667,0.677913,0.0440921,0.979555,0.516421,0.864951,0.769594,0.408897,0.883751,0.665246,0.268012,0.337054,0.141019,0.589806,0.421954,0.545681,0.406954,0.090452,0.682074,0.0283387,0.477444,0.65555,0.635738,0.0758212,0.447337,0.964562,0.5798,0.857483,0.65425,0.330942,0.656995,0.598989,0.404137,0.552733,0.309735,0.525113,0.749394,0.625227,0.870475,0.974351,0.365967,0.569562,0.397121,0.711754,0.980045,0.659032,0.969743,0.720209,0.299196,0.378409,0.802691,0.0430093,0.532787,0.220926,0.304216,0.485689,0.778765,0.00855666,0.756322,0.850653,0.676593,0.367403,0.388298,0.0807871,0.586643,0.448539,0.54778,0.0573488,0.912011,0.741795,0.560178,0.92268,0.490837,0.60178,0.377868,0.0273815,0.230778,0.694065,0.34519,0.946642,0.946856,0.208475,0.992657,0.00687319,0.977044,0.769431,0.693919,0.858178,0.0525563,0.632065,0.225265,0.687009,0.653528,0.905917,0.537936,0.194876,0.541793,0.583865,0.959898,0.956188,0.302836,0.210055,0.0608367,0.598983,0.869006,0.246352,0.738546,0.762346,0.660926,0.545159,0.6156,0.580075,0.19996,0.877723,0.434609,0.848289,0.278285,0.187312,0.00784689,0.0102599,0.863875,0.466428,0.9702,0.131529,0.0438905,0.0876209,0.789568,0.599382,0.310497,0.48688,0.491561,0.2776,0.182927,0.103174,0.744242,0.795995,0.983162,0.120227,0.246278,0.520996,0.969305,0.539634,0.942575,0.596558,0.345185,0.369095,0.843501,0.0808893,0.677081,0.925021,0.448513,0.480684,0.769075,0.385136,0.765532,0.371598,0.341444,0.682127,0.236681,0.406961,0.551458,0.689699,0.255671,0.130848,0.767254,0.150436,0.466013,0.653347,0.603554,0.048192,0.222186,0.795686,0.246882,0.289312,0.0017193,0.958329,0.847776,0.677406,0.312459,0.411776,0.927795,0.919435,0.84537,0.622423,0.549379,0.0753678,0.107451,0.11229,0.787286,0.577567,0.815847,0.283161,0.140911,0.764107,0.838398,0.700296,0.485097,0.0203558,0.711861,0.97681,0.74794,0.229566,0.00792098,0.527206,0.775884,0.32657,0.261006,0.910408,0.195957,0.693368,0.866264,0.481842,0.734316,0.681972,0.626846,0.775526,0.918754,0.88558,0.930459,0.147209,0.535874,0.120353,0.16431,0.29588,0.940033,0.968722,0.195986,0.125448,0.214784,0.230151,0.807099,0.623931,0.22414,0.312761,0.983542,0.118801,0.4302,0.200871,0.884026,0.0101479,0.93457,0.491748,0.614011,0.227022,0.0330061,0.4611,0.422963,0.486831,0.13583,0.829094,0.349677,0.0579157,0.527892,0.552995,0.608806,0.310184,0.458219,0.869781,0.651273,0.950103,0.514987,0.162108,0.358061,0.0494459,0.640004,0.28423,0.498012,0.796133,0.230669,0.867559,0.908392,0.438539,0.745005,0.192414,0.74254,0.0943625,0.000459969,0.187384,0.742939,0.865209,0.839109,0.271524,0.673813,0.500723,0.265893,0.115852,0.501722,0.644927,0.268972,0.532228,0.16111,0.508988,0.570159,0.072014,0.158467,0.370197,0.629964,0.487181,0.377778,0.142984,0.477812,0.462885,0.584621,0.15454,0.672447,0.0885752,0.791324,0.922306,0.513472,0.45502,0.870345,0.733341,0.535691,0.581637,0.569387,0.591552,0.509198,0.391387,0.135912,0.81493,0.324093,0.180509,0.270943,0.590186,0.121283,0.801801,0.59245,0.797176,0.046255,0.909136,0.494322,0.808876,0.232881,0.146625,0.667263,0.0786695,0.318927,0.457577,0.874537,0.719342,0.595313,0.323622,0.31554,0.98883,0.0555259,0.677739,0.295278,0.891985,0.343724,0.503466,0.339994,0.1185,0.970063,0.242635,0.054433,0.460645,0.0906975,0.699297,0.596296,0.980196,0.261711,0.00185722,0.951262,0.122929,0.0225376,0.864564,0.053974,0.894698,0.891222,0.531532,0.261279,0.537308,0.625944,0.527639,0.553898,0.745874,0.261583,0.612444,0.0936972,0.574334,0.293443,0.200714,0.154063,0.762748,0.0158721,0.293791,0.846659,0.545106,0.850247,0.844003,0.821292,0.341916,0.991304,0.234511,0.705884,0.122183,0.103814,0.876485,0.862122,0.405347,0.477561,0.861133,0.181199,0.285577,0.197091,0.586607,0.361738,0.534618,0.126838,0.468376,0.52109,0.216118,0.366467,0.882991,0.0718317,0.136701,0.869629,0.0907926,0.838258,0.405505,0.20182,0.172287,0.828912,0.439767,0.502708,0.101642,0.153178,0.831475,0.984851,0.299991,0.844877,0.105275,0.71102,0.542355,0.0484662,0.124898,0.35949,0.363547,0.447454,0.434313,0.258324,0.270089,0.554398,0.516233,0.730242,0.440671,0.0216841,0.843792,0.349378,0.79324,0.98367,0.372088,0.879851,0.152748,0.531402,0.798213,0.251386,0.536941,0.938287,0.411267,0.620501,0.0476335,0.151433,0.572214,0.0601873,0.189689,0.557202,0.975723,0.820151,0.322805,0.294833,0.46714,0.965464,0.4428,0.819349,0.133486,0.647327,0.0884584,0.453643,0.863597,0.764293,0.742069,0.559037,0.201478,0.697014,0.318066,0.760467,0.163583,0.688486,0.709303,0.0329443,0.225311,0.380683,0.563776,0.689235,0.961109,0.208822,0.861059,0.0304757,0.34217,0.00382775,0.672495,0.0436316,0.900352,0.061059,0.339881,0.66504,0.0691602,0.0680307,0.0592554,0.908766,0.928974,0.681592,0.318969,0.943141,0.00512207,0.179779,0.0600095,0.459751,0.92277,0.840082,0.651506,0.541725,0.0882844,0.0700915,0.758262,0.0989693,0.206429,0.127049,0.614825,0.0405943,0.241579,0.279824,0.0203818,0.168245,0.0500543,0.203461,0.490973,0.992765,0.387096,0.0433933,0.146598,0.922664,0.00148231,0.596923,0.670915,0.635806,0.326937,0.293095,0.287644,|0.0427936,0.519792,0.0824769,0.299366,0.393442,0.404311,0.144134,0.304795,0.469736,0.151428,0.140285,0.746337,0.112704,0.329203,0.722358,0.0345069,0.155741,0.918337,0.821916,0.0901152,0.828876,0.999692,0.889923,0.559174,0.0915368,0.837342,0.495891,0.5734,0.532952,0.759726,0.251175,0.767707,0.679345,0.248424,0.112375,0.59713,0.307131,0.298339,0.153908,0.0970787,0.254019,0.951393,0.0135079,0.0775281,0.252555,0.862478,0.635018,0.140851,0.891989,0.773395,0.611405,0.186556,0.579024,0.13737,0.178808,0.609828,0.424752,0.628151,0.011529,0.874876,0.31212,0.0379863,0.250714,0.281218,0.572524,0.674467,0.25068,0.247349,0.892393,0.753932,0.478915,0.972833,0.23951,0.741941,0.284522,0.795481,0.0977284,0.803873,0.344204,0.652501,0.744992,0.923322,0.260649,0.58988,0.806819,0.0763347,0.988206,0.837267,0.384883,0.0222686,0.683933,0.0367144,0.333736,0.196588,0.847624,0.694633,0.0605921,0.877019,0.184367,0.516407,0.478657,0.665578,0.182842,0.500782,0.677874,0.774692,0.959071,0.326959,0.951652,0.760393,0.190674,0.263937,0.459484,0.440954,0.821057,0.87286,0.69127,0.796843,0.182061,0.817737,0.570543,0.103936,0.19061,0.87474,0.89813,0.212178,0.281113,0.0897878,0.831194,0.0607173,0.0744721,0.124301,0.523316,0.477639,0.369954,0.478642,0.859082,0.42506,0.360833,0.538302,0.75241,0.00632852,0.833301,0.492431,0.0520852,0.093221,0.93395,0.694602,0.612481,0.57067,0.745914,0.987465,0.324155,0.56715,0.249019,0.256741,0.242977,0.909904,0.098973,0.634954,0.340845,0.377593,0.0761356,0.880841,0.929804,0.475922,0.56923,0.238157,0.56849,0.184884,0.2904,0.289954,0.165104,0.917972,0.289498,0.749509,0.0738693,0.901963,0.415261,0.93531,0.0689248,0.54819,0.782512,0.91619,0.477365,0.791176,0.0424605,0.333683,0.462514,0.196043,0.0608444,0.582468,0.473421,0.561112,0.734337,0.980693,0.596939,0.333487,0.390763,0.672101,0.397504,0.343283,0.57627,0.652852,0.41433,0.976754,0.594413,0.201753,0.0299143,0.781926,0.123449,0.414138,0.220526,0.915945,0.772236,0.825118,0.0979071,0.589145,0.958406,0.665494,0.424591,0.462319,0.945144,0.681041,0.653698,0.931366,0.0499513,0.510966,0.839961,0.889095,0.335802,0.874278,0.22327,0.409966,0.601271,0.316266,0.447925,0.803919,0.749914,0.622177,0.440972,0.170384,0.4282,0.849919,0.118896,0.934694,0.290806,0.716961,0.192588,0.439384,0.594115,0.123729,0.192816,0.318208,0.821101,0.875269,0.948327,0.429818,0.194873,0.807884,0.3188,0.131925,0.174823,0.167648,0.769953,0.748807,0.493845,0.647072,0.308944,0.905117,0.703777,0.0388864,0.693341,0.379102,0.835751,0.178795,0.0610346,0.180297,0.400809,0.612669,0.187647,0.0489534,0.492714,0.622315,0.0540653,0.901667,0.0560221,0.705085,0.544527,0.773225,0.406194,0.206501,0.973286,0.757278,0.369744,0.638188,0.944031,0.36041,0.830023,0.731477,0.946287,0.715878,0.741594,0.83317,0.423655,0.402824,0.267255,0.439834,0.207866,0.0814286,0.696226,0.163833,0.999391,0.939929,0.334865,0.0170937,0.821045,0.291933,0.892979,0.997652,0.335457,0.283674,0.219719,0.900562,0.157077,0.221492,0.461526,0.252964,0.13557,0.971964,0.78423,0.729187,0.537269,0.247191,0.911427,0.747905,0.456374,0.583535,0.0880791,0.404236,0.687306,0.912822,0.879943,0.277575,0.194206,0.775263,0.328712,0.90342,0.419152,0.354573,0.238436,0.490571,0.0190211,0.6423,0.332209,0.460108,0.610712,0.516661,0.000317395,0.262357,0.263999,0.479129,0.636176,0.237944,0.236819,0.32554,0.200901,0.396911,0.294856,0.203763,0.585261,0.278462,0.19683,0.641653,0.766327,0.105555,0.861643,0.0510526,0.907667,0.224586,0.875148,0.530306,0.800139,0.950612,0.634083,0.568641,0.302012,0.850398,0.947317,0.756321,0.178004,0.944679,0.107272,0.123447,0.39561,0.105624,0.540104,0.39177,0.450092,0.899469,0.0423779,0.91618,0.505899,0.77012,0.835368,0.479008,0.0594475,0.942346,0.38671,0.890623,0.0402421,0.566654,0.974401,0.730232,0.558776,0.0198113,0.823013,0.275067,0.681402,0.180541,0.232322,0.755567,0.143766,0.092026,0.20226,0.178505,0.527491,0.268,0.237412,0.581031,0.131699,0.434833,0.334472,0.262447,0.520334,0.83144,0.225607,0.127771,0.982371,0.764292,0.900382,0.0907838,0.760343,0.917809,0.800597,0.886079,0.573801,0.932304,0.473923,0.519089,0.789412,0.128535,0.0738951,0.587592,0.297191,0.878772,0.765908,0.75813,0.494465,0.347238,0.451609,0.104435,0.232732,0.198331,0.845972,0.890511,0.295657,0.585308,0.519514,0.879078,0.196535,0.540138,0.377453,0.642658,0.817774,0.185532,0.402546,0.843047,0.782807,0.835883,0.302968,0.265143,0.209757,0.754981,0.162489,0.137077,0.10022,0.957387,0.0771616,0.529757,0.92898,0.595386,0.767967,0.0950984,0.849067,0.25512,0.0433389,0.465999,0.852143,0.801075,0.998992,0.400606,0.628573,0.480061,0.00436866,0.98342,0.947642,0.737679,0.552044,0.639851,0.473309,0.681708,0.435655,0.380427,0.557243,0.920493,0.988083,0.849386,0.411328,0.716287,0.439852,0.932487,0.166554,0.111265,0.319494,0.30058,0.211992,0.187063,0.977252,0.235523,0.536495,0.506532,0.324044,0.381465,0.448827,0.421849,0.837563,0.485125,0.747296,0.527327,0.643608,0.0538695,0.814607,0.586956,0.169559,0.187277,0.462038,0.989103,0.362396,0.461584,0.273807,0.67611,0.832817,0.486317,0.538977,0.291027,0.369247,0.850837,0.971053,0.997893,0.994508,0.823347,0.373523,0.765904,0.504591,0.622871,0.127156,0.873911,0.16305,0.127597,0.155592,0.475766,0.403074,0.643254,0.705015,0.185421,0.416223,0.160154,0.0497692,0.541298,0.478996,0.723106,0.781489,0.0745341,0.997089,0.755957,0.96675,0.330398,0.237467,0.880482,0.258397,0.107077,0.57461,0.872869,0.533486,0.112287,0.135502,0.655441,0.469184,0.65815,0.437979,0.233809,0.91027,0.180896,0.419533,0.625736,0.304785,0.898616,0.772353,0.531143,0.603267,0.855773,0.00724268,0.743607,0.0841047,0.658871,0.748525,0.135254,0.549239,0.620907,0.304803,0.528502,0.725468,0.563016,0.973577,0.50569,0.57347,0.628998,0.290556,0.566229,0.6773,0.983758,0.264919,0.0319126,0.44757,0.911316,0.748951,0.00237894,0.283411,0.26338,0.467324,0.348946,0.352989,0.0851674,0.857988,0.968831,0.0803154,0.527632,0.719066,0.20785,0.652934,0.471213,0.234731,0.702534,0.162321,0.815081,0.0793678,0.956715,0.511741,0.289299,0.0308682,0.448144,0.39331,0.549574,0.234865,0.1289,0.587181,0.403538,0.471609,0.309275,0.413413,0.845585,0.383066,0.863679,0.328012,0.754604,0.0440731,0.901587,0.792839,0.0342291,0.867063,0.741063,0.919394,0.169365,0.531128,0.346374,0.500253,0.745997,0.477855,0.271791,0.406339,0.495249,0.680283,0.675889,0.290081,0.924342,0.568825,0.206331,0.138301,0.580569,0.480561,0.791565,0.286159,0.684884,0.814839,0.642031,0.0903589,0.439552,0.185797,0.0751263,0.241113,0.0279054,0.0325593,0.955957,0.375471,0.940505,0.423786,0.332278,0.248832,0.653536,0.64105,0.625698,0.928804,0.910783,0.128089,0.96926,0.960468,0.922795,0.30617,0.347379,0.686956,0.143584,0.608217,0.291587,0.217195,0.307364,0.353262,0.495466,0.0333298,0.504311,0.616484,0.489101,0.60779,0.145253,0.684887,0.616755,0.240128,0.116027,0.171289,0.235659,0.0962282,0.131374,0.852128,0.616033,0.749466,0.124749,0.457355,0.498409,0.378826,0.332347,0.503481,0.649596,0.488732,0.274228,0.489409,0.695109,0.923094,0.130677,0.565031,0.00108606,0.794168,0.513557,0.544549,0.745319,0.344514,0.985741,0.27376,0.557606,0.152165,0.260144,0.968238,0.868667,0.628078,0.773866,0.00491607,0.354236,0.418173,0.918942,0.888346,0.406984,0.381624,0.619192,0.149284,0.409433,0.913466,0.857067,0.647187,0.102736,0.115787,0.514122,0.804369,0.695647,0.0539361,0.473884,0.827431,0.0887075,0.842576,0.797576,0.959884,0.397457,0.964861,0.816976,0.158265,0.972942,0.40896,0.860516,0.564804,0.736177,0.699286,0.949752,0.6159,0.231,0.603343,0.747366,0.112364,0.251363,0.558609,0.299739,0.943617,0.535105,0.593867,0.136623,0.0362684,0.525757,0.602476,0.452656,0.21531,0.975866,0.891683,0.448723,0.582012,0.376098,0.676796,0.597109,0.313217,0.922611,0.377456,0.58033,0.361429,0.593996,0.914384,0.5389,0.60565,0.165477,0.572833,0.548921,0.321997,0.86521,0.497834,0.530292,0.99094,0.515652,0.761948,0.884955,0.372466,0.894343,0.393061,0.880954,0.332969,0.142845,0.818997,0.914349,0.944442,0.193421,0.941812,0.787619,0.362898,0.878578,0.410388,0.258001,0.902349,0.589331,0.129727,0.582983,0.912669,0.0688925,0.788488,0.72185,0.844982,0.00890648,0.781662,0.766864,0.0946425,0.0344574,0.544574,0.13342,0.827608,0.992166,0.550357,0.319956,0.834287,0.992245,0.965287,0.890453,0.237466,0.143512,0.30757,0.913775,0.758193,0.0844467,0.0320343,0.947282,0.523348,0.230663,0.152647,0.822509,0.865981,0.872979,0.737867,0.354907,0.0129831,0.572396,0.314979,0.190634,0.653126,0.5694,0.241052,0.884848,0.621996,0.754733,0.807528,0.440679,0.302264,0.242771,0.470914,0.421883,0.00987589,0.385549,0.112276,0.759867,0.759539,0.73422,0.360598,0.854666,0.643939,0.304656,0.731426,0.670528,0.501653,0.981513,0.537868,0.985026,0.00142002,0.0812827,0.75017,0.293521,0.182122,0.0798855,0.700401,0.282192,0.0850036,0.202805,0.0767365,0.946976,0.00574857,0.419185,0.54289,0.899174,0.80148,0.575199,0.14646,0.368568,0.781414,0.974951,0.751987,0.313575,0.984087,0.356191,0.0594094,0.804556,0.505239,0.329137,0.346188,0.657922,0.282068,0.60239,0.0138711,0.043064,0.709533,0.0655031,0.753141,0.0941229,0.217527,0.443315,0.941333,0.62714,0.446556,0.463038,0.581197,0.785398,|0.724995,0.391022,0.924484,0.0960676,0.21304,0.0111393,0.497205,0.504479,0.223651,0.571987,0.76301,0.673552,0.853946,0.356532,0.965789,0.94694,0.893829,0.172221,0.626704,0.0219733,0.745539,0.508658,0.0840228,0.865837,0.39906,0.479775,0.587049,0.469949,0.75113,0.0578263,0.470461,0.766695,0.719998,0.318659,0.340613,0.0514659,0.601838,0.358853,0.226474,0.715539,0.705662,0.383907,0.918783,0.12697,0.791989,0.0857167,0.625526,0.137679,0.746807,0.0940661,0.71071,0.689458,0.447189,0.475005,0.712078,0.0818543,0.876183,0.154813,0.208309,0.866029,0.796601,0.256247,0.69907,0.99057,0.230217,0.483154,0.218215,0.129757,0.36201,0.285872,0.405325,0.368604,0.482376,0.654514,0.277703,0.0445852,0.753389,0.296299,0.0403592,0.465301,0.37839,0.550873,0.35633,0.138075,0.167141,0.636121,0.743595,0.8258,0.243231,0.67841,0.111359,0.496712,0.604338,0.818993,0.628041,0.372733,0.347437,0.687596,0.858647,0.302777,0.953692,0.200631,0.679193,0.758792,0.654108,0.35175,0.133886,0.132619,0.578179,0.628274,0.490608,0.823868,0.24441,0.212295,0.13145,0.718884,0.016674,0.165328,0.169388,0.845002,0.616039,0.206149,0.187022,0.0694084,0.263173,0.83107,0.348935,0.268549,0.735902,0.250534,0.671208,0.334234,0.612768,0.323919,0.468798,0.301488,0.647486,0.174254,0.906882,0.356744,0.816841,0.483188,0.872642,0.550091,0.809555,0.906557,0.723792,0.0316522,0.545396,0.148142,0.949043,0.158638,0.401011,0.653005,0.43559,0.687499,0.92808,0.194418,0.0396403,0.106359,0.990892,0.911799,0.651952,0.721244,0.825634,0.434393,0.985164,0.170607,0.429828,0.555921,0.912252,0.459962,0.701062,0.717074,0.942586,0.853907,0.0364666,0.720357,0.286756,0.918519,0.16185,0.738158,0.374461,0.988375,0.466605,0.63113,0.632326,0.015154,0.615526,0.549503,0.740617,0.52004,0.430011,0.322859,0.75795,0.813825,0.528454,0.171489,0.824711,0.304075,0.0345908,0.801165,0.760525,0.417855,0.317706,0.109937,0.289959,0.423847,0.499764,0.990958,0.623431,0.633832,0.890553,0.710326,0.578991,0.228368,0.0256471,0.971528,0.968493,0.396805,0.470232,0.210707,0.262391,0.556652,0.0763702,0.847938,0.766221,0.114089,0.478134,0.607816,0.0101932,0.416448,0.447816,0.906749,0.655247,0.239717,0.658334,0.836344,0.967662,0.0540962,0.609961,0.169465,0.197565,0.892665,0.286827,0.505659,0.850235,0.928001,0.316336,0.00169438,0.245153,0.393778,0.562314,0.369593,0.936077,0.341051,0.418191,0.294804,0.357793,0.219301,0.605753,0.644458,0.343111,0.735684,0.391695,0.154328,0.164057,0.815905,0.273939,0.402298,0.841697,0.581506,0.465958,0.928681,0.369217,0.36149,0.945562,0.359457,0.362951,0.679261,0.677548,0.691752,0.159133,0.0829318,0.919572,0.979913,0.532007,0.320126,0.769217,0.110467,0.868624,0.4308,0.718708,0.377285,0.95622,0.535491,0.877479,0.327102,0.226839,0.611625,0.407242,0.0552163,0.807245,0.799099,0.778469,0.233189,0.989435,0.117416,0.749026,0.967219,0.845295,0.49002,0.219526,0.14705,0.211193,0.533364,0.830876,0.0807287,0.481467,0.784612,0.653742,0.654826,0.587915,0.504644,0.293286,0.752646,0.130981,0.973284,0.00565106,0.790317,0.733544,0.145146,0.187232,0.823993,0.46812,0.333113,0.867007,0.363702,0.922483,0.153265,0.392623,0.428912,0.90951,0.336049,0.637381,0.669223,0.281701,0.790384,0.907492,0.233746,0.987632,0.118352,0.0339726,0.356443,0.388108,0.245174,0.896754,0.178824,0.249931,0.562212,0.379969,0.848606,0.784059,0.3703,0.401204,0.377202,0.757133,0.372068,0.165868,0.238742,0.172896,0.526679,0.85742,0.345191,0.157676,0.878302,0.645282,0.606896,0.626243,0.331192,0.256187,0.0531601,0.286588,0.485717,0.372549,0.505565,0.396603,0.529731,0.11597,0.372303,0.81715,0.810167,0.868338,0.447157,0.566484,0.545344,0.501646,0.058043,0.162011,0.359325,0.637895,0.726983,0.00139511,0.509514,0.579883,0.649077,0.41717,0.663125,0.0625869,0.810829,0.567456,0.17641,0.256868,0.372188,0.0466267,0.672162,0.935142,0.639579,0.0864266,0.229958,0.312356,0.916831,0.74873,0.558535,0.224733,0.715755,0.888623,0.0406703,0.465709,0.519153,0.646132,0.776258,0.246543,0.83706,0.196272,0.42245,0.94462,0.488968,0.157624,0.935928,0.312854,0.644556,0.175544,0.173203,0.665785,0.756874,0.505853,0.843932,0.221572,0.929325,0.509555,0.240442,0.0855311,0.892759,0.794767,0.911546,0.742963,0.0887898,0.981397,0.368206,0.233533,0.770516,0.207456,0.849533,0.420685,0.788396,0.274408,0.514872,0.977396,0.559547,0.901884,0.518137,0.0514824,0.242795,0.0747913,0.397598,0.982252,0.186875,0.887834,0.477875,0.143463,0.0474387,0.589416,0.829866,0.300773,0.409498,0.338266,0.812135,0.108236,0.636647,0.251333,0.29848,0.205366,0.652845,0.206859,0.791006,0.249759,0.321681,0.0369625,0.924411,0.371313,0.0838424,0.572164,0.583736,0.279536,0.633836,0.514127,0.911041,0.182221,0.9257,0.535837,0.508011,0.98745,0.57113,0.312421,0.337098,0.975014,0.877173,0.883374,0.135077,0.766825,0.264699,0.143703,0.743599,0.409269,0.548926,0.324147,0.302701,0.542609,0.986703,0.642382,0.24425,0.93092,0.334709,0.856957,0.18739,0.899775,0.0995797,0.425142,0.417013,0.00355488,0.28783,0.318447,0.722777,0.643206,0.170055,0.837241,0.264934,0.449255,0.637788,0.473383,0.713185,0.159152,0.331397,0.677939,0.622152,0.390408,0.252011,0.124303,0.97627,0.72349,0.872953,0.290593,0.0813712,0.205687,0.927657,0.455724,0.273185,0.766092,0.427496,0.855882,0.641236,0.713513,0.924898,0.427805,0.771608,0.360183,0.360037,0.275535,0.602431,0.229221,0.322942,0.828965,0.75993,0.311287,0.0674095,0.113068,0.62076,0.507927,0.710779,0.866549,0.916372,0.219004,0.184703,0.642105,0.0931785,0.872154,0.477187,0.367198,0.627018,0.181842,0.234217,0.797794,0.11987,0.566822,0.44534,0.688759,0.29149,0.473091,0.517126,0.849654,0.550967,0.112371,0.564169,0.157879,0.204318,0.529537,0.6295,0.97396,0.460564,0.797667,0.981595,0.598215,0.910608,0.765495,0.197129,0.234607,0.653534,0.370084,0.730133,0.306415,0.500665,0.327933,0.471243,0.438706,0.71798,0.475866,0.251704,0.504822,0.0569157,0.282692,0.317402,0.864879,0.668837,0.450234,0.948658,0.0749153,0.771122,0.701401,0.472936,0.616935,0.157588,0.448704,0.52722,0.73175,0.155476,0.591017,0.821483,0.417616,0.633759,0.742856,0.0726517,0.272608,0.876591,0.703107,0.913442,0.955843,0.933818,0.943696,0.620043,0.0878282,0.43474,0.0904227,0.448783,0.883761,0.198244,0.725422,0.189751,0.566338,0.651985,0.629583,0.160628,0.115005,0.547732,0.237454,0.305746,0.56155,0.696025,0.422298,0.486278,0.857276,0.524559,0.573912,0.0196296,0.947133,0.433787,0.226079,0.0292111,0.700184,0.864554,0.0108385,0.433395,0.722018,0.293537,0.371984,0.0829213,0.380649,0.154722,0.625757,0.880147,0.0504067,0.348128,0.619045,0.794069,0.727391,0.308981,0.305821,0.490768,0.49295,0.830932,0.0765441,0.0143374,0.331497,0.364593,0.445489,0.671318,0.0702248,0.30384,0.274808,0.490534,0.146397,0.406659,0.332331,0.216093,0.217572,0.75387,0.958091,0.123627,0.0125303,0.73408,0.766514,0.833568,0.717997,0.453358,0.855266,0.392668,0.909287,0.0737168,0.340752,0.824925,0.571965,0.0392025,0.554376,0.292694,0.110423,0.796917,0.393629,0.0296258,0.0987908,0.963993,0.959489,0.836574,0.082795,0.320156,0.166054,0.124981,0.997051,0.488797,0.138922,0.105623,0.992553,0.15668,0.878679,0.518138,0.0853012,0.592714,0.0844764,0.774955,0.322081,0.166006,0.404179,0.874157,0.0882825,0.829952,0.423472,0.0106017,0.782725,0.569303,0.673711,0.248262,0.854744,0.77548,0.901545,0.0110538,0.234792,0.0610973,0.0234729,0.554183,0.266388,0.917489,0.476619,0.210194,0.971141,0.489384,0.524055,0.814559,0.657632,0.0175539,0.25535,0.0590985,0.666149,0.0691876,0.483204,0.00593513,0.618954,0.421208,0.771827,0.132734,0.494865,0.192535,0.76374,0.349983,0.205493,0.834533,0.694614,0.888042,0.26353,0.635308,0.304837,0.153939,0.375158,0.635308,0.927359,0.0954455,0.599313,0.907638,0.134782,0.460796,0.807304,0.126721,0.563549,0.423959,0.0831258,0.32823,0.942577,0.336054,0.791648,0.956328,0.190128,0.0940128,0.670255,0.999299,0.82799,0.504309,0.798137,0.530846,0.717956,0.534996,0.678879,0.978491,0.789021,0.542632,0.308729,0.329022,0.945279,0.722864,0.452009,0.924104,0.124016,0.646697,0.503696,0.20066,0.240606,0.330261,0.0998758,0.575655,0.741587,0.366318,0.407411,0.991138,0.678495,0.394592,0.401284,0.156413,0.901199,0.40097,0.729544,0.375247,0.342448,0.542075,0.0302911,0.0822259,0.538016,0.943091,0.113476,0.142694,0.531627,0.0862487,0.937792,0.466812,0.98692,0.758682,0.0191813,0.981447,0.51923,0.963276,0.575154,0.44805,0.346613,0.6319,0.476111,0.785142,0.837142,0.626033,0.133351,0.860538,0.667237,0.00422096,0.503659,0.261191,0.98755,0.329415,0.286911,0.798239,0.182402,0.510101,0.132702,0.269236,0.139716,0.00242555,0.410476,0.693556,0.928245,0.283035,0.566987,0.466066,0.474315,0.645684,0.812136,0.992621,0.961203,0.743712,0.594645,0.351223,0.66989,0.826393,0.331093,0.479576,0.624652,0.167272,0.497503,0.0465601,0.5308,0.816056,0.956918,0.499613,0.17519,0.442618,0.777545,0.698797,0.576713,0.499812,0.386356,0.0409876,0.511963,0.360456,0.282057,0.221301,0.493799,0.812707,0.401774,0.725222,0.237787,0.659936,0.0877557,0.819602,0.783495,0.167156,0.707387,0.0394143,0.608367,0.243481,0.90927,0.314185,0.509973,0.0129225,0.490366,0.177554,0.604468,0.170843,0.718222,0.863306,0.935125,0.473123,0.0925884,0.352148,0.0831969,0.35979,0.358057,0.566691,|0.0918893,0.543439,0.172248,0.701418,0.657732,0.388993,0.788705,0.711444,0.886606,0.507147,0.440546,0.812121,0.409792,0.943745,0.638995,0.482938,0.53968,0.209944,0.322458,0.60027,0.868431,0.0910738,0.954111,0.178485,0.632467,0.387373,0.293361,0.506879,0.889983,0.564718,0.736403,0.265593,0.414694,0.0250204,0.180254,0.476207,0.494189,0.720666,0.123828,0.978212,0.311514,0.442758,0.549673,0.15694,0.106324,0.86199,0.0273052,0.468907,0.0256183,0.352879,0.419914,0.193131,0.271506,0.0603973,0.193528,0.708475,0.0339364,0.756315,0.223556,0.554926,0.928692,0.576763,0.103788,0.540953,0.771894,0.0986539,0.571688,0.0700684,0.126192,0.438511,0.696048,0.763886,0.708996,0.95344,0.333476,0.555474,0.627509,0.551521,0.689881,0.443166,0.2213,0.541147,0.0423185,0.00413984,0.148038,0.611167,0.226859,0.440593,0.536243,0.70502,0.27609,0.649802,0.64316,0.775248,0.000841498,0.577811,0.74594,0.0400698,0.947455,0.356112,0.462662,0.56722,0.395542,0.632063,0.269184,0.374079,0.0182804,0.830254,0.488953,0.256427,0.734823,0.381156,0.808238,0.741064,0.510498,0.887,0.276162,0.324367,0.211,0.749743,0.162136,0.797302,0.55276,0.921617,0.727399,0.0622991,0.211956,0.0376879,0.350163,0.825584,0.727074,0.257655,0.883557,0.68281,0.849293,0.527248,0.564582,0.94284,0.346043,0.87247,0.621904,0.0754549,0.263633,0.152599,0.465814,0.412138,0.223103,0.33991,0.334087,0.0747377,0.348751,0.621752,0.031436,0.973348,0.133531,0.265537,0.801323,0.658155,0.707055,0.939693,0.91831,0.426508,0.522576,0.456769,0.810148,0.787584,0.696321,0.437363,0.718296,0.853835,0.816009,0.64925,0.0838113,0.817043,0.0291563,0.955162,0.385373,0.904493,0.00621319,0.0404292,0.856272,0.0108181,0.695539,0.154008,0.707052,0.429788,0.104218,0.259637,0.335554,0.452111,0.580729,0.898834,0.377873,0.387039,0.706949,0.812571,0.230409,0.175643,0.91685,0.053614,0.690248,0.527069,0.54183,0.655137,0.630309,0.135041,0.613986,0.704293,0.509702,0.792927,0.669378,0.655904,0.896287,0.194283,0.761482,0.0319623,0.0212268,0.783503,0.0441587,0.47199,0.155859,0.120342,0.356294,0.106356,0.805874,0.431503,0.570316,0.374521,0.540359,0.659851,0.639955,0.355396,0.0414907,0.672664,0.862415,0.723403,0.778948,0.0775369,0.800468,0.73392,0.285378,0.0533535,0.673411,0.41264,0.641187,0.0345109,0.262354,0.241038,0.223917,0.675263,0.482338,0.44927,0.694615,0.726772,0.880364,0.073667,0.14492,0.561986,0.102217,0.473,0.697545,0.867949,0.109394,0.480981,0.99704,0.297629,0.626488,0.832506,0.46802,0.839996,0.407677,0.781963,0.890227,0.0589252,0.0953694,0.712097,0.513093,0.0767149,0.287467,0.4259,0.538819,0.326747,0.402537,0.690782,0.136245,0.673627,0.820652,0.27666,0.216504,0.463255,0.576589,0.0572257,0.493859,0.955019,0.322026,0.372626,0.0618501,0.607365,0.421334,0.387041,0.921929,0.305322,0.979985,0.396077,0.568139,0.897754,0.163594,0.285523,0.759178,0.207649,0.373173,0.91986,0.651098,0.928785,0.877501,0.467534,0.00967211,0.707927,0.223625,0.893984,0.680047,0.818539,0.351879,0.897353,0.635608,0.864376,0.86004,0.484586,0.10566,0.252358,0.233808,0.538427,0.369534,0.363185,0.155272,0.0159452,0.403468,0.129525,0.638702,0.691556,0.962791,0.802472,0.475285,0.666065,0.709315,0.316628,0.612607,0.836957,0.288603,0.335749,0.143772,0.106375,0.790275,0.947442,0.55022,0.794208,0.764093,0.00418377,0.815232,0.338382,0.630931,0.832447,0.209295,0.865503,0.299249,0.34324,0.882643,0.22908,0.77712,0.741719,0.770113,0.190093,0.599416,0.991527,0.542067,0.795259,0.193559,0.447305,0.606069,0.578503,0.0869827,0.334139,0.44924,0.925352,0.777037,0.379247,0.367359,0.508573,0.878905,0.686391,0.211248,0.65726,0.483286,0.184697,0.717014,0.550369,0.335053,0.0622987,0.659484,0.192998,0.52491,0.0313014,0.430413,0.960274,0.578099,0.848581,0.00766689,0.163016,0.558332,0.8428,0.43399,0.120023,0.608495,0.517726,0.507291,0.892929,0.229831,0.379659,0.684115,0.417108,0.0790996,0.599452,0.498695,0.604163,0.471137,0.161487,0.410531,0.696333,0.833344,0.452745,0.495097,0.344584,0.505618,0.573052,0.86065,0.228675,0.875847,0.638288,0.415435,0.556799,0.0860379,0.797818,0.732259,0.926295,0.127174,0.8476,0.636285,0.54191,0.687372,0.402334,0.251677,0.10607,0.234955,0.975544,0.748953,0.967073,0.960361,0.497637,0.931865,0.72248,0.947295,0.661561,0.964039,0.979667,0.203648,0.554102,0.358213,0.22583,0.126504,0.389739,0.748565,0.375705,0.634678,0.0853498,0.308471,0.294498,0.666988,0.0982754,0.237249,0.854616,0.998586,0.49237,0.242662,0.457266,0.418045,0.659088,0.98863,0.310355,0.452799,0.747598,0.593947,0.791964,0.898839,0.488664,0.977271,0.0261503,0.410284,0.314765,0.954282,0.505127,0.436162,0.0178268,0.609774,0.289718,0.440185,0.179923,0.96145,0.605054,0.878093,0.784903,0.22559,0.429054,0.861487,0.254629,0.789052,0.83992,0.535964,0.733201,0.347453,0.607162,0.149327,0.774604,0.765508,0.787554,0.770015,0.123182,0.88466,0.184311,0.806622,0.566157,0.132936,0.710678,0.879251,0.192678,0.446775,0.486019,0.00557536,0.201808,0.819702,0.568241,0.656225,0.594284,0.649575,0.976306,0.451632,0.0341469,0.446044,0.986395,0.874856,0.486025,0.842075,0.562836,0.423996,0.956426,0.44418,0.704713,0.36111,0.516337,0.337264,0.987856,0.603148,0.656711,0.32065,0.394109,0.91741,0.874084,0.478524,0.855438,0.642601,0.790032,0.66685,0.164257,0.635067,0.953703,0.88414,0.117698,0.904835,0.183158,0.299146,0.120947,0.695739,0.697311,0.877206,0.0643799,0.493322,0.370142,0.0535798,0.289791,0.867485,0.333661,0.978279,0.677874,0.915513,0.984217,0.209327,0.877676,0.39891,0.155451,0.632318,0.443101,0.226597,0.441589,0.813657,0.490934,0.226658,0.130945,0.752539,0.359167,0.732107,0.874164,0.164438,0.934384,0.948702,0.782086,0.123618,0.11296,0.51186,0.664928,0.077588,0.860821,0.223048,0.245411,0.919101,0.520447,0.54364,0.634436,0.418035,0.71672,0.920714,0.541025,0.263465,0.945963,0.140871,0.599898,0.111529,0.608721,0.56315,0.618867,0.706133,0.998224,0.752533,0.608505,0.623254,0.123973,0.989851,0.434772,0.221147,0.846414,0.964662,0.998026,0.563429,0.887,0.381532,0.999886,0.342734,0.629001,0.706198,0.501297,0.399433,0.291921,0.384859,0.695354,0.562003,0.416556,0.703341,0.414889,0.549787,0.711644,0.819863,0.022187,0.433477,0.116493,0.665763,0.534862,0.348021,0.777979,0.915277,0.425027,0.858391,0.848688,0.264664,0.759472,0.472826,0.144945,0.254186,0.0676489,0.158581,0.985491,0.759524,0.55609,0.666096,0.681133,0.633233,0.613782,0.106643,0.310163,0.762711,0.677979,0.63549,0.853585,0.489884,0.96268,0.994024,0.830354,0.934926,0.599655,0.725186,0.934702,0.285665,0.858123,0.262883,0.362757,0.920561,0.51776,0.437204,0.541596,0.0704585,0.4155,0.162473,0.176831,0.319146,0.905285,0.971873,0.341364,0.366602,0.825037,0.953654,0.10122,0.890087,0.0429783,0.539713,0.811713,0.901439,0.902587,0.192184,0.741212,0.0965042,0.024099,0.116349,0.134455,0.968489,0.627602,0.977877,0.863608,0.481839,0.904576,0.51757,0.146187,0.825601,0.83784,0.517804,0.955284,0.595279,0.935869,0.853962,0.198436,0.716287,0.530216,0.81997,0.872282,0.153272,0.503537,0.0515944,0.652988,0.0847471,0.0682673,0.150925,0.87255,0.166035,0.0645503,0.105497,0.103361,0.407454,0.534769,0.0554505,0.096209,0.0547516,0.848691,0.783936,0.499704,0.146858,0.208755,0.717653,0.81346,0.214488,0.663356,0.335609,0.501633,0.274403,0.124922,0.279614,0.924128,0.352411,0.884334,0.469949,0.389665,0.336484,0.112945,0.174934,0.756641,0.686721,0.67676,0.954457,0.98618,0.762195,0.731799,0.0344121,0.836501,0.316024,0.14583,0.684767,0.442215,0.925701,0.0951735,0.107708,0.602911,0.970515,0.397882,0.0292178,0.964806,0.919878,0.463995,0.19681,0.834288,0.171587,0.149963,0.442722,0.421154,0.213164,0.0737489,0.471675,0.884769,0.578746,0.284808,0.445554,0.0446768,0.0710174,0.265135,0.36576,0.336098,0.774593,0.312541,0.103433,0.629016,0.131376,0.643379,0.52701,0.781585,0.403342,0.222639,0.685286,0.177072,0.972349,0.0199831,0.671551,0.335112,0.192888,0.756085,0.413219,0.406528,0.655348,0.0957245,0.218946,0.706842,0.884619,0.495855,0.016495,0.233612,0.125575,0.483351,0.143945,0.272641,0.67707,0.53306,0.301095,0.86989,0.145446,0.282801,0.692928,0.632003,0.40215,0.763084,0.716806,0.517714,0.206107,0.590528,0.601414,0.75561,0.966807,0.730458,0.569897,0.739436,0.887327,0.804027,0.804795,0.324138,0.253633,0.366076,0.620711,0.44437,0.345697,0.241741,0.410688,0.733745,0.613824,0.581812,0.200043,0.210476,0.0727612,0.48032,0.15698,0.278158,0.31093,0.927319,0.250752,0.645819,0.545822,0.555892,0.695515,0.711506,0.462713,0.614991,0.833821,0.0751235,0.33671,0.139681,0.921845,0.162916,0.304987,0.763769,0.622904,0.684964,0.79516,0.748415,0.356209,0.93672,0.709376,0.357601,0.0592041,0.985994,0.393018,0.434935,0.966928,0.458152,0.0607858,0.377963,0.777055,0.58089,0.9714,0.958492,0.110917,0.424951,0.764283,0.401967,0.305517,0.861661,0.642329,0.641331,0.879237,0.586837,0.819541,0.811727,0.299184,0.80919,0.366355,0.936095,0.694203,0.409146,0.392956,0.465444,0.11616,0.814866,0.819114,0.339028,0.0448622,0.0369954,0.567035,0.609784,0.997935,0.651661,0.365869,0.193587,0.215557,0.843448,0.127389,0.172198,0.25104,0.699953,0.699846,0.198996,0.361243,0.675024,0.205584,0.563346,0.673547,0.16507,0.819977,0.837208,0.973036,0.435263,|0.52824,0.31484,0.564956,0.793637,0.110184,0.784639,0.834043,0.994388,0.622184,0.532843,0.179818,0.259563,0.568774,0.431967,0.196885,0.619691,0.213326,0.35477,0.109996,0.947645,0.459002,0.265174,0.0478179,0.116753,0.232621,0.686545,0.0288355,0.358369,0.597389,0.884136,0.665569,0.277847,0.86152,0.577856,0.220239,0.658484,0.19536,0.40855,0.618622,0.315108,0.754179,0.610512,0.477306,0.496882,0.318437,0.304942,0.860667,0.532189,0.543974,0.392018,0.776203,0.731889,0.193833,0.959083,0.317411,0.250606,0.901563,0.966723,0.471007,0.564968,0.625594,0.445974,0.0468465,0.606749,0.0121865,0.100739,0.0605325,0.444385,0.222494,0.260435,0.486187,0.496365,0.356048,0.0758703,0.167915,0.998285,0.238164,0.3077,0.870979,0.942142,0.300669,0.940136,0.55765,0.232707,0.925706,0.22518,0.21481,0.366901,0.420029,0.27085,0.291626,0.197058,0.0971942,0.68334,0.522401,0.649158,0.710585,0.813811,0.681305,0.546231,0.622568,0.211059,0.81489,0.332552,0.0862859,0.793752,0.00602454,0.765545,0.815851,0.284662,0.871649,0.752692,0.400983,0.740958,0.245385,0.898135,0.332662,0.679175,0.756501,0.0033623,0.742652,0.123326,0.00302511,0.322636,0.124569,0.125433,0.0201933,0.0368531,0.728338,0.0717609,0.668293,0.111494,0.267482,0.486583,0.245598,0.358116,0.718381,0.321814,0.355163,0.155712,0.252367,0.481084,0.189089,0.0809475,0.986429,0.616967,0.862701,0.803703,0.288777,0.0933467,0.646533,0.825855,0.395274,0.509086,0.195796,0.327976,0.761196,0.427331,0.0968771,0.445261,0.515917,0.113923,0.390792,0.694502,0.836843,0.668972,0.522862,0.612652,0.0526454,0.0331523,0.222234,0.886099,0.0753366,0.506605,0.436416,0.39034,0.640711,0.218584,0.983228,0.872824,0.237659,0.86658,0.994475,0.249644,0.104515,0.455367,0.693789,0.00940949,0.594232,0.588906,0.0797638,0.0587395,0.754526,0.428989,0.423299,0.964769,0.387147,0.402721,0.314176,0.891212,0.0503251,0.379906,0.589692,0.638647,0.42751,0.25812,0.399752,0.789533,0.234271,0.23031,0.6477,0.0977736,0.507084,0.84091,0.781404,0.420735,0.49202,0.997285,0.343221,0.881049,0.33076,0.0372503,0.200569,0.976908,0.660429,0.487764,0.528275,0.337753,0.637781,0.403739,0.0129001,0.718655,0.074221,0.313134,0.0712547,0.776371,0.628864,0.293734,0.65258,0.626954,0.443321,0.810408,0.12074,0.466179,0.465346,0.546905,0.824896,0.901957,0.101734,0.900065,0.958809,0.923471,0.238702,0.777682,0.470275,0.0946443,0.100151,0.897863,0.99985,0.72023,0.555385,0.44459,0.295678,0.213252,0.584236,0.130773,0.361986,0.327738,0.122677,0.629325,0.916223,0.946711,0.11549,0.651304,0.0774111,0.0471216,0.00431198,0.216049,0.278123,0.17395,0.0744962,0.0818091,0.0656512,0.713033,0.945672,0.0664687,0.73071,0.671992,0.908489,0.898795,0.402465,0.6685,0.999858,0.131076,0.037272,0.0240669,0.598241,0.480935,0.31547,0.0252182,0.135309,0.431814,0.137356,0.134858,0.256942,0.787284,0.93886,0.817469,0.161769,0.648851,0.673387,0.912863,0.291739,0.39416,0.826581,0.141832,0.322563,0.0240162,0.833831,0.111783,0.298204,0.895771,0.0728253,0.477338,0.580382,0.192826,0.348262,0.892395,0.898658,0.0679876,0.20806,0.14377,0.974481,0.820765,0.416945,0.797456,0.69341,0.751666,0.994651,0.342806,0.0286583,0.121312,0.570411,0.572671,0.405549,0.359412,0.194806,0.318892,0.748182,0.238841,0.150752,0.0648077,0.317002,0.556239,0.896127,0.898352,0.861039,0.196701,0.0153655,0.30656,0.659271,0.120876,0.69207,0.996589,0.0337898,0.567763,0.237531,0.403346,0.56914,0.803903,0.489861,0.912704,0.0274211,0.424924,0.721475,0.887278,0.908847,0.457911,0.715231,0.832559,0.0424393,0.677279,0.0199383,0.141,0.867216,0.875303,0.0346644,0.605303,0.746569,0.183448,0.471949,0.060169,0.747662,0.296521,0.430174,0.685339,0.104497,0.292507,0.0992209,0.455268,0.897871,0.98709,0.732098,0.430774,0.550179,0.15391,0.776894,0.818561,0.125729,0.1796,0.242714,0.732009,0.266338,0.0206581,0.396275,0.40499,0.834928,0.746272,0.161538,0.0494652,0.867583,0.350431,0.170148,0.870119,0.057838,0.222885,0.0554078,0.669521,0.39258,0.836591,0.111565,0.244688,0.415737,0.891164,0.908797,0.0255823,0.435656,0.822679,0.559747,0.548025,0.938038,0.850169,0.577905,0.206276,0.767195,0.121254,0.680797,0.597028,0.728893,0.880849,0.258767,0.520489,0.091841,0.168188,0.636987,0.210227,0.728484,0.288135,0.360212,0.0913057,0.212677,0.492449,0.522558,0.250104,0.692435,0.38399,0.925979,0.216806,0.816392,0.485088,0.639498,0.854975,0.194214,0.710618,0.104531,0.447037,0.24555,0.91241,0.678028,0.157298,0.559606,0.626852,0.834006,0.219724,0.120724,0.0725657,0.420467,0.241881,0.383718,0.769701,0.427832,0.229119,0.443671,0.0752782,0.45871,0.826669,0.0316689,0.27366,0.105898,0.235977,0.874823,0.133777,0.647084,0.543185,0.667259,0.713106,0.492968,0.177358,0.0750208,0.316301,0.807456,0.508543,0.704644,0.169619,0.214821,0.958366,0.86382,0.389728,0.276001,0.6282,0.171624,0.069828,0.317027,0.671143,0.0474042,0.240753,0.187755,0.795372,0.482746,0.761678,0.480028,0.0206935,0.572973,0.713926,0.695668,0.759723,0.0106347,0.17403,0.234462,0.338677,0.166036,0.935659,0.533328,0.421739,0.131153,0.278813,0.159433,0.839544,0.714723,0.986339,0.681538,0.654406,0.317576,0.356508,0.658363,0.71778,0.0803112,0.12704,0.805345,0.348717,0.519606,0.835558,0.331696,0.767948,0.97319,0.0300777,0.122326,0.610891,0.0215832,0.781389,0.0195565,0.403755,0.695284,0.51099,0.83774,0.452552,0.360082,0.921151,0.889199,0.307915,0.982458,0.113022,0.0208412,0.0045929,0.80862,0.0167105,0.0222468,0.0591218,0.541837,0.508655,0.0410593,0.376433,0.704485,0.773957,0.757196,0.215951,0.635119,0.687313,0.273333,0.585062,0.627783,0.608528,0.87295,0.731935,0.989835,0.0841101,0.81474,0.565519,0.340115,0.41115,0.955948,0.904536,0.638368,0.717989,0.207938,0.115169,0.269623,0.651359,0.599063,0.477387,0.850129,0.765666,0.368027,0.934045,0.0101817,0.871747,0.118741,0.555735,0.835107,0.886651,0.969462,0.659295,0.437679,0.293775,0.772953,0.493723,0.975929,0.194037,0.805713,0.0958377,0.190957,0.767912,0.274275,0.685532,0.249731,0.132385,0.420424,0.798315,0.698336,0.716835,0.392143,0.75067,0.584994,0.055791,0.366118,0.056132,0.683671,0.768385,0.318426,0.852308,0.187156,0.22232,0.326299,0.590809,0.158084,0.815427,0.03162,0.012127,0.751103,0.445875,0.627348,0.719738,0.539825,0.945583,0.40013,0.665765,0.79748,0.581905,0.686175,0.617015,0.404282,0.0637325,0.577137,0.0674198,0.197197,0.444415,0.030884,0.437628,0.412294,0.85573,0.825846,0.425622,0.601369,0.281395,0.397628,0.491686,0.342275,0.0839226,0.610511,0.937214,0.998649,0.803817,0.639766,0.380295,0.959911,0.164701,0.258518,0.590934,0.74294,0.205029,0.455208,0.293134,0.19224,0.344693,0.742417,0.10028,0.31873,0.874265,0.539959,0.321041,0.653234,0.704035,0.295439,0.189772,0.936325,0.780834,0.164038,0.852441,0.940817,0.53139,0.261032,0.0366969,0.84317,0.547974,0.121906,0.688426,0.208648,0.536171,0.297911,0.82243,0.312366,0.741396,0.906732,0.415629,0.830143,0.410934,0.442549,0.0228743,0.437798,0.908445,0.377795,0.717284,0.954592,0.836998,0.90278,0.363632,0.864499,0.480248,0.252039,0.419322,0.545727,0.466251,0.0877306,0.83986,0.15138,0.102152,0.811349,0.848925,0.624718,0.24488,0.799968,0.795244,0.724864,0.802034,0.339352,0.0273374,0.0415909,0.357771,0.902664,0.982933,0.965286,0.893806,0.486995,0.506305,0.514522,0.172199,0.0468206,0.215567,0.505001,0.150693,0.326988,0.632063,0.375393,0.0333557,0.280766,0.260292,0.598735,0.984644,0.691594,0.192416,0.884528,0.739463,0.297123,0.195305,0.73171,0.812282,0.583569,0.730384,0.327013,0.432597,0.814935,0.515773,0.543071,0.879141,0.377876,0.188515,0.649187,0.986895,0.410352,0.949418,0.52513,0.56062,0.894033,0.894188,0.339654,0.625781,0.980749,0.154298,0.0845068,0.245407,0.482333,0.704828,0.0616097,0.760994,0.427075,0.74197,0.45252,0.329619,0.441792,0.829893,0.829864,0.449536,0.356952,0.269297,0.0987053,0.200161,0.109136,0.96309,0.0307913,0.617017,0.468308,0.0976385,0.258216,0.567636,0.264857,0.471904,0.124918,0.778873,0.418453,0.393549,0.524488,0.659488,0.792913,0.91393,0.949824,0.86288,0.69178,0.188305,0.973073,0.499662,0.230228,0.896385,0.984581,0.897074,0.472648,0.968078,0.947751,0.100973,0.431937,0.694619,0.20538,0.181028,0.524281,0.978497,0.315767,0.892516,0.0432892,0.192625,0.61234,0.163678,0.21148,0.554219,0.422455,0.930937,0.260262,0.533875,0.875072,0.497849,0.628709,0.330726,0.212326,0.396153,0.824884,0.0922722,0.183242,0.254548,0.475146,0.153619,0.521707,0.838007,0.834321,0.568183,0.202248,0.238837,0.797599,0.46778,0.63688,0.518963,0.808172,0.850663,0.973795,0.219221,0.632053,0.6535,0.40638,0.131795,0.891793,0.952485,0.425663,0.472021,0.731133,0.559322,0.110817,0.690354,0.353973,0.0834297,0.768622,0.171297,0.225819,0.359039,0.696171,0.288298,0.954252,0.751623,0.664547,0.895329,0.688779,0.210656,0.743832,0.166647,0.928093,0.935054,0.203219,0.837952,0.570213,0.491868,0.613245,0.855254,0.136838,0.623746,0.230383,0.28155,0.350247,0.461594,0.920878,0.420666,0.450148,0.373464,0.000208795,0.0718275,0.192915,0.642141,0.440057,0.990246,0.108536,0.374576,0.650219,0.0834539,0.914012,0.242526,0.208241,0.584774,0.0160028,0.19103,0.864377,0.78272,0.206011,0.701695,0.709997,0.0689161,0.860991,0.209378,0.584792,0.223712,0.0797389,0.191434,0.382486,0.406927,0.871568,0.28904,|0.862731,0.605303,0.67137,0.106587,0.399769,0.326778,0.164577,0.360587,0.538383,0.934243,0.849989,0.599769,0.394453,0.95431,0.554274,0.73058,0.266884,0.377848,0.935743,0.540082,0.664815,0.0450858,0.0929067,0.0755798,0.243966,0.0291304,0.905595,0.619573,0.469516,0.685577,0.498922,0.186568,0.422283,0.979018,0.43108,0.656043,0.54447,0.426851,0.570154,0.98868,0.0171009,0.643572,0.347392,0.766604,0.028788,0.778258,0.596802,0.132327,0.822812,0.314378,0.800465,0.803287,0.627152,0.588734,0.804775,0.333116,0.12771,0.542345,0.998381,0.124004,0.980615,0.728522,0.592479,0.837898,0.931359,0.787794,0.864822,0.789922,0.740547,0.760198,0.914621,0.6794,0.570177,0.424076,0.0297156,0.0945997,0.712544,0.50665,0.106188,0.783572,0.803839,0.456282,0.712164,0.0608612,0.211281,0.0980935,0.974162,0.109976,0.00403482,0.105296,0.942136,0.398188,0.931471,0.161882,0.668073,0.493695,0.2101,0.22876,0.231992,0.126337,0.398004,0.366284,0.865854,0.874088,0.59837,0.630084,0.601641,0.196308,0.98376,0.687225,0.325072,0.919822,0.0109559,0.412617,0.45734,0.184113,0.758884,0.580808,0.689942,0.545282,0.0356195,0.708356,0.341108,0.79699,0.466576,0.537224,0.978042,0.573072,0.46422,0.677616,0.746505,0.0790861,0.671575,0.656324,0.956773,0.137007,0.825666,0.043915,0.145798,0.183219,0.717308,0.907895,0.35176,0.433183,0.15088,0.686295,0.0533347,0.708294,0.537634,0.758278,0.629547,0.541068,0.241613,0.351335,0.152037,0.0364594,0.798337,0.464529,0.670457,0.473366,0.229351,0.878806,0.194986,0.79679,0.673479,0.935189,0.43589,0.4446,0.425559,0.986347,0.607611,0.749469,0.593339,0.865687,0.933017,0.656404,0.663641,0.607001,0.33254,0.685309,0.462002,0.538424,0.819469,0.610199,0.0421625,0.741778,0.325866,0.875677,0.318001,0.523335,0.649247,0.933558,0.240788,0.573802,0.160759,0.37693,0.21183,0.14583,0.871809,0.857027,0.170631,0.407789,0.617723,0.384266,0.546877,0.945385,0.332793,0.349289,0.668436,0.238596,0.700156,0.380095,0.222143,0.913603,0.779777,0.473583,0.348458,0.554864,0.283073,0.404698,0.574345,0.478342,0.338757,0.346925,0.862094,0.79313,0.814301,0.369425,0.821635,0.182554,0.22571,0.765755,0.562263,0.440573,0.58531,0.715905,0.211626,0.824658,0.964241,0.00617439,0.558006,0.674509,0.364528,0.978193,0.867959,0.676673,0.948299,0.353126,0.411476,0.874071,0.0973746,0.0173951,0.597382,0.574493,0.754982,0.146325,0.421131,0.234087,0.992962,0.862424,0.663975,0.392333,0.476958,0.0637609,0.388817,0.544899,0.466886,0.77185,0.461585,0.795154,0.327287,0.593596,0.472034,0.132905,0.133169,0.785764,0.637442,0.143558,0.462051,0.680325,0.992133,0.800843,0.110976,0.218046,0.474501,0.432057,0.773921,0.84591,0.16512,0.526676,0.0494135,0.0781724,0.077634,0.673623,0.458798,0.174229,0.767419,0.517346,0.429662,0.856708,0.1424,0.640627,0.291444,0.201553,0.808951,0.0306539,0.326267,0.584667,0.918701,0.455753,0.384389,0.527872,0.398127,0.00853133,0.814141,0.181099,0.845738,0.386594,0.689057,0.792861,0.946926,0.914509,0.72772,0.678263,0.944909,0.130905,0.413617,0.895106,0.428693,0.562509,0.936742,0.777743,0.166788,0.285045,0.163507,0.0900047,0.129348,0.782343,0.901492,0.140321,0.60206,0.18104,0.559991,0.351353,0.753491,0.520063,0.0768619,0.976131,0.347086,0.0118883,0.765711,0.429586,0.470224,0.0538113,0.36689,0.894217,0.650966,0.0900096,0.542052,0.121817,0.0703793,0.739136,0.390035,0.709852,0.2243,0.453663,0.752258,0.0532788,0.650415,0.363852,0.0164898,0.522467,0.0749813,0.647536,0.143435,0.837982,0.940547,0.318318,0.506617,0.478351,0.0922603,0.613898,0.693638,0.953742,0.0519022,0.59821,0.467385,0.748555,0.632928,0.972968,0.580987,0.696616,0.0473525,0.223494,0.0965297,0.361871,0.273666,0.207027,0.304988,0.864429,0.197555,0.0360245,0.593137,0.913239,0.0843646,0.398275,0.965577,0.763901,0.706618,0.215316,0.614272,0.332863,0.557357,0.204293,0.748723,0.760365,0.882815,0.270095,0.122319,0.348839,0.164493,0.0893235,0.392579,0.73571,0.480597,0.281461,0.250717,0.156384,0.911481,0.0687041,0.34276,0.57573,0.806253,0.409738,0.344247,0.331503,0.457306,0.696052,0.117204,0.0106368,0.0118393,0.139286,0.873769,0.69777,0.362692,0.207208,0.0870714,0.54292,0.240012,0.577546,0.217361,0.49102,0.0614778,0.31416,0.392874,0.14106,0.581751,0.503904,0.529666,0.947913,0.402068,0.534183,0.43543,0.115226,0.508807,0.697809,0.756377,0.815162,0.61471,0.264673,0.567835,0.322876,0.0205861,0.940851,0.127546,0.16915,0.0708953,0.425071,0.0599726,0.609591,0.105075,0.0726069,0.748799,0.629099,0.578105,0.793023,0.0152285,0.0564367,0.600587,0.299715,0.335805,0.438304,0.762703,0.8138,0.365956,0.277688,0.287233,0.207868,0.91312,0.655143,0.856977,0.592743,0.087069,0.828263,0.58559,0.325565,0.291815,0.568063,0.157497,0.337377,0.665772,0.601179,0.0783022,0.817082,0.674667,0.785612,0.0544405,0.677429,0.675188,0.743274,0.503063,0.481515,0.0917545,0.0848982,0.935106,0.773731,0.92496,0.436672,0.461223,0.314347,0.119281,0.751399,0.647949,0.829234,0.456081,0.248743,0.337453,0.63465,0.0234992,0.387026,0.856166,0.647508,0.49556,0.937608,0.655501,0.847192,0.159934,0.45684,0.951788,0.945899,0.555334,0.219191,0.5458,0.35404,0.0603608,0.488943,0.515125,0.468968,0.663947,0.332774,0.407902,0.268765,0.303379,0.056205,0.0725226,0.169155,0.924803,0.0616217,0.601255,0.392824,0.682455,0.84817,0.040558,0.739584,0.151466,0.225164,0.145955,0.460562,0.70324,0.505341,0.144235,0.886973,0.980427,0.731209,0.580804,0.132247,0.740904,0.651063,0.991558,0.125286,0.10687,0.948821,0.327491,0.558325,0.301517,0.60404,0.14528,0.929433,0.855262,0.0666876,0.512768,0.336309,0.23961,0.805297,0.118819,0.616495,0.518274,0.0818703,0.975016,0.425496,0.31599,0.100817,0.220843,0.626268,0.65641,0.128354,0.654698,0.464857,0.88838,0.183978,0.526332,0.910507,0.158104,0.366854,0.981105,0.479562,0.338561,0.591097,0.710321,0.940673,0.213902,0.508343,0.531472,0.280901,0.283134,0.813966,0.0965649,0.114444,0.169996,0.111815,0.585949,0.281636,0.0157464,0.199344,0.322685,0.29362,0.709925,0.98393,0.0522433,0.113042,0.292245,0.767064,0.509538,0.421138,0.996586,0.21303,0.433781,0.217477,0.952759,0.748206,0.258301,0.911986,0.686313,0.614361,0.388939,0.142333,0.964804,0.654071,0.60217,0.620091,0.57047,0.337074,0.780079,0.583631,0.230036,0.954681,0.55165,0.465787,0.668108,0.325138,0.972784,0.798491,0.971925,0.307573,0.404678,0.262959,0.449168,0.681645,0.0654348,0.986596,0.932378,0.421368,0.0924616,0.691063,0.957047,0.130613,0.134152,0.226245,0.887516,0.0685947,0.852049,0.932303,0.340788,0.292829,0.783054,0.696314,0.0644658,0.750327,0.376296,0.0286008,0.176148,0.703597,0.532035,0.841727,0.951249,0.690658,0.265063,0.829559,0.102285,0.312248,0.58295,0.413659,0.929807,0.928065,0.37563,0.0157194,0.289939,0.678063,0.825758,0.58528,0.388432,0.458266,0.917375,0.399924,0.286298,0.118382,0.263778,0.775037,0.370215,0.973192,0.375165,0.665121,0.524494,0.881946,0.739911,0.0187266,0.282595,0.980973,0.990472,0.0841017,0.370072,0.531009,0.303555,0.89573,0.937673,0.845213,0.729427,0.461954,0.421197,0.333809,0.0567385,0.0120921,0.341669,0.00352871,0.720339,0.208113,0.619243,0.203791,0.475301,0.772583,0.151018,0.677336,0.502661,0.647827,0.483862,0.274226,0.708888,0.0130473,0.868334,0.316713,0.43404,0.958837,0.390916,0.215173,0.764424,0.0317484,0.754825,0.412863,0.164256,0.0278976,0.111847,0.7335,0.736595,0.995509,0.846079,0.20753,0.57271,0.0190504,0.733576,0.821426,0.120362,0.306675,0.514207,0.314593,0.666785,0.406963,0.0172412,0.635618,0.313605,0.222674,0.689438,0.904061,0.32439,0.8017,0.540597,0.645788,0.797048,0.860452,0.668151,0.402932,0.597328,0.0357239,0.248824,0.798619,0.0109939,0.795536,0.207695,0.948251,0.885212,0.427771,0.884978,0.939765,0.669149,0.684772,0.345695,0.445278,0.0190861,0.113486,0.672047,0.419527,0.788623,0.765935,0.0988232,0.970674,0.695664,0.667452,0.171942,0.85179,0.159027,0.805423,0.655863,0.63073,0.152788,0.0528929,0.0382078,0.305612,0.581739,0.101675,0.829339,0.251393,0.942933,0.111828,0.856187,0.312768,0.980983,0.430353,0.133232,0.100271,0.754754,0.65923,0.0901095,0.44208,0.659936,0.579519,0.0977708,0.761172,0.930781,0.254105,0.329221,0.516804,0.394899,0.243462,0.323948,0.683428,0.844519,0.601591,0.601589,0.243466,0.390235,0.300507,0.484713,0.142927,0.515639,0.228067,0.935512,0.304803,0.253166,0.390569,0.759906,0.475484,0.49132,0.138135,0.957426,0.30058,0.838407,0.25298,0.349522,0.0616148,0.155135,0.98129,0.380441,0.144814,0.62162,0.653174,0.240142,0.658987,0.450726,0.987554,0.402325,0.886828,0.396191,0.865766,0.839288,0.871731,0.136936,0.529544,0.170571,0.708416,0.411481,0.294404,0.0687246,0.289408,0.0757726,0.0447946,0.788598,0.392774,0.536192,0.886204,0.935266,0.490097,0.253675,0.552904,0.703766,0.930175,0.746341,0.929548,0.0594957,0.656582,0.650949,0.422729,0.431805,0.497162,0.829453,0.667461,0.968069,0.389136,0.137871,0.30134,0.729606,0.947932,0.311356,0.133345,0.797427,0.750732,0.210016,0.491818,0.691518,0.253544,0.54356,0.819141,0.0884489,0.745704,0.161503,0.809138,0.315852,0.698966,0.415807,0.302958,0.977112,0.732858,0.0370233,0.111218,0.0807969,0.838296,0.485636,0.607007,0.363677,0.901115,0.138156,0.854561,0.19554,0.545025,0.096338,0.490042,0.167815,0.556722,0.229073,0.342577,0.34459,0.106872,|0.894465,0.550704,0.272322,0.531227,0.210258,0.901343,0.390458,0.425355,0.827236,0.105607,0.461432,0.822748,0.0460292,0.0490637,0.0970326,0.280046,0.469777,0.296363,0.821774,0.484204,0.0503672,0.528146,0.430612,0.775123,0.872642,0.84771,0.936576,0.211755,0.257463,0.939827,0.354294,0.548367,0.69283,0.251789,0.820949,0.08917,0.650624,0.724447,0.199719,0.898263,0.404005,0.898264,0.727761,0.0549805,0.682391,0.111739,0.672294,0.844576,0.531395,0.0589825,0.488322,0.178803,0.304461,0.290262,0.586091,0.488157,0.192296,0.115568,0.998063,0.00061512,0.606697,0.976552,0.464446,0.292794,0.721888,0.348607,0.678165,0.344469,0.652263,0.304435,0.428352,0.354816,0.699282,0.652954,0.928593,0.382115,0.315664,0.41229,0.818138,0.0895404,0.411688,0.347861,0.407016,0.909944,0.35578,0.816318,0.673684,0.66273,0.661698,0.511044,0.78812,0.652011,0.566499,0.725058,0.176093,0.397603,0.064605,0.297288,0.841092,0.678161,0.286625,0.585171,0.933604,0.407261,0.255768,0.65901,0.396259,0.292752,0.836853,0.567743,0.217532,0.421211,0.0866271,0.943926,0.812648,0.972075,0.274291,0.39438,0.603691,0.692193,0.159567,0.98675,0.784461,0.229679,0.0945555,0.279849,0.71527,0.58587,0.183062,0.266438,0.0340494,0.296229,0.104967,0.535364,0.606253,0.169437,0.231247,0.096275,0.32001,0.959775,0.157732,0.311567,0.451184,0.732692,0.580953,0.0721496,0.713392,0.906019,0.854617,0.278986,0.0361257,0.0498928,0.0703573,0.992085,0.682446,0.945234,0.0829486,0.829035,0.205217,0.834911,0.261864,0.31595,0.0448502,0.0316834,0.215191,0.9067,0.254577,0.0158042,0.3544,0.87217,0.685032,0.51514,0.953176,0.447754,0.649534,0.881884,0.55274,0.902355,0.176782,0.552594,0.467163,0.336639,0.749918,0.947484,0.196738,0.953669,0.74285,0.17039,0.0651736,0.301309,0.984167,0.454221,0.395925,0.403441,0.0883734,0.399403,0.211768,0.0829861,0.890631,0.521579,0.613488,0.549366,0.714579,0.0184653,0.671107,0.972578,0.966043,0.270055,0.342598,0.141976,0.75727,0.233767,0.234997,0.163037,0.731868,0.182205,0.360997,0.148524,0.683832,0.586749,0.948569,0.236065,0.799894,0.72909,0.972203,0.528212,0.67947,0.167588,0.604496,0.276316,0.562855,0.150485,0.0662849,0.869207,0.54037,0.87966,0.709945,0.24441,0.0402719,0.0316276,0.387838,0.225741,0.934906,0.419887,0.0589449,0.0744818,0.627723,0.166343,0.384701,0.937271,0.899981,0.840818,0.0385244,0.96099,0.630935,0.0394626,0.37457,0.00227612,0.304585,0.636692,0.870257,0.669683,0.826872,0.540664,0.914918,0.423998,0.296726,0.233367,0.410887,0.469277,0.931871,0.0117314,0.079935,0.118657,0.722315,0.262915,0.0874919,0.901085,0.743804,0.601106,0.335114,0.212698,0.186084,0.502358,0.282213,0.955183,0.22595,0.908732,0.764824,0.715826,0.0874218,0.609327,0.768706,0.175602,0.991238,0.390419,0.172233,0.572409,0.500348,0.178617,0.506422,0.678501,0.565147,0.998532,0.293285,0.0721621,0.653546,0.689676,0.918212,0.620744,0.526407,0.496794,0.765613,0.748267,0.00505102,0.984032,0.31744,0.863592,0.217908,0.330999,0.69814,0.223871,0.191352,0.193281,0.511529,0.851099,0.670803,0.763599,0.743598,0.141962,0.0727279,0.946948,0.192093,0.208444,0.306297,0.477908,0.835822,0.574795,0.165331,0.108875,0.189367,0.40733,0.567356,0.782976,0.515384,0.17214,0.384181,0.214182,0.619621,0.958681,0.802694,0.104926,0.548949,0.0257839,0.256613,0.41749,0.789022,0.40874,0.588072,0.883358,0.882739,0.839855,0.889131,0.0450476,0.169582,0.751995,0.787575,0.593801,0.515301,0.203602,0.946151,0.444885,0.350596,0.883792,0.814186,0.538579,0.0897473,0.518824,0.362885,0.0543476,0.0334144,0.157749,0.573479,0.389338,0.0381924,0.875485,0.342095,0.0561459,0.214677,0.493788,0.788045,0.758016,0.747971,0.126268,0.523589,0.506761,0.820996,0.497559,0.261535,0.655032,0.552141,0.562791,0.802483,0.0457693,0.194498,0.536539,0.86927,0.469843,0.972629,0.245425,0.0597012,0.0711973,0.497693,0.280901,0.412516,0.897771,0.471131,0.696362,0.266156,0.739792,0.5463,0.509404,0.925413,0.130721,0.278397,0.760754,0.049733,0.173005,0.929112,0.704141,0.427115,0.721469,0.283891,0.830959,0.303725,0.604948,0.814366,0.278137,0.310413,0.58355,0.249177,0.162607,0.787565,0.0359117,0.451533,0.112197,0.703331,0.325036,0.866638,0.381827,0.428126,0.00202715,0.0717561,0.105899,0.209027,0.89256,0.287553,0.55723,0.17657,0.627879,0.435543,0.136224,0.463091,0.126037,0.268236,0.876926,0.613012,0.367111,0.893687,0.0820051,0.336903,0.194823,0.407184,0.381642,0.152973,0.259564,0.847512,0.957395,0.253396,0.692259,0.945167,0.21726,0.0364612,0.726644,0.398806,0.74087,0.837575,0.361381,0.966988,0.188894,0.817585,0.115764,0.575331,0.401358,0.606557,0.440615,0.583085,0.348432,0.441964,0.184151,0.396113,0.611479,0.92366,0.747814,0.885946,0.20209,0.00174701,0.476831,0.938006,0.601471,0.0929354,0.304604,0.816562,0.742972,0.559062,0.424945,0.72399,0.336153,0.409811,0.386884,0.768415,0.0109853,0.232971,0.447446,0.490628,0.145002,0.209064,0.579417,0.269834,0.977742,0.259401,0.234535,0.445251,0.605217,0.0168358,0.130464,0.722843,0.997405,0.869168,0.00286227,0.671824,0.012414,0.352815,0.241107,0.283756,0.55282,0.903446,0.995482,0.0923086,0.906695,0.214589,0.0634367,0.155782,0.770265,0.548554,0.409697,0.829323,0.170298,0.990547,0.696612,0.471883,0.0280422,0.381556,0.791224,0.717778,0.868712,0.328013,0.00261247,0.300419,0.00200534,0.164997,0.1171,0.642861,0.504361,0.159275,0.929917,0.865136,0.965309,0.393598,0.0656241,0.384982,0.615485,0.194987,0.775926,0.681725,0.0389711,0.120948,0.178934,0.344224,0.224638,0.0807561,0.417444,0.637963,0.600101,0.0423137,0.497099,0.858659,0.25281,0.0979123,0.512177,0.0238386,0.418737,0.865775,0.469134,0.0352951,0.116195,0.668905,0.12113,0.746973,0.536857,0.305551,0.6541,0.890885,0.202912,0.820323,0.620949,0.169205,0.815288,0.456004,0.367487,0.84261,0.0896658,0.701989,0.970445,0.140734,0.276652,0.236839,0.491025,0.0553317,0.535673,0.861599,0.449161,0.978533,0.250734,0.0170103,0.156367,0.934632,0.6109,0.938967,0.0429892,0.395372,0.437706,0.513843,0.0107638,0.457809,0.987974,0.594346,0.317559,0.210439,0.102479,0.614083,0.421806,0.770441,0.567718,0.938063,0.837032,0.600835,0.497248,0.325292,0.40773,0.24147,0.14716,0.713764,0.0782158,0.627147,0.799286,0.0236638,0.406631,0.0425137,0.185606,0.843404,0.608448,0.737192,0.427165,0.707334,0.00811815,0.707146,0.83876,0.833899,0.876442,0.746019,0.980502,0.0384325,0.790811,0.431361,0.153585,0.256207,0.843961,0.112601,0.590258,0.449273,0.641564,0.228206,0.964688,0.559364,0.0689416,0.738816,0.781817,0.540249,0.52664,0.235711,0.169076,0.995787,0.464149,0.161622,0.378234,0.00473666,0.311726,0.698208,0.913909,0.835544,0.698344,0.751062,0.899025,0.739714,0.533689,0.998929,0.57962,0.151119,0.258708,0.969302,0.549093,0.519433,0.773742,0.329785,0.865877,0.0359337,0.958967,0.745514,0.900579,0.102338,0.131328,0.0574562,0.982397,0.129511,0.94714,0.0348842,0.273511,0.0422332,0.678084,0.698329,0.758457,0.838461,0.224524,0.707481,0.464677,0.928147,0.299704,0.73711,0.729198,0.983835,0.363256,0.697154,0.860554,0.599938,0.163777,0.347477,0.329103,0.0872304,0.616462,0.0387701,0.441102,0.0799049,0.1385,0.328729,0.837463,0.401121,0.578685,0.944608,0.307489,0.948473,0.406859,0.853585,0.456743,0.0800886,0.93573,0.892382,0.255664,0.148838,0.922069,0.841261,0.979625,0.774522,0.944509,0.564818,0.784998,0.985811,0.974894,0.576169,0.867404,0.373874,0.25224,0.40055,0.226784,0.9809,0.0846069,0.169979,0.713757,0.173793,0.0891542,0.480504,0.628226,0.0376486,0.556655,0.100459,0.0465327,0.378904,0.340674,0.676581,0.468288,0.0893101,0.2934,0.345735,0.0413865,0.931751,0.168262,0.797234,0.848032,0.34651,0.196698,0.219554,0.887541,0.854504,0.238888,0.597862,0.96143,0.0450026,0.18089,0.415271,0.442302,0.621812,0.0272357,0.317312,0.735497,0.941326,0.737209,0.632873,0.183434,0.327456,0.7861,0.985188,0.47498,0.74796,0.896706,0.914512,0.172047,0.212106,0.0482439,0.320334,0.178474,0.648906,0.0245488,0.403604,0.27577,0.600782,0.98396,0.849195,0.936527,0.481985,0.77231,0.309577,0.276442,0.650252,0.370002,0.375993,0.781389,0.848505,0.400244,0.330488,0.525027,0.101497,0.207319,0.395673,0.650913,0.773982,0.190599,0.823803,0.36847,0.513464,0.419916,0.0705091,0.537715,0.999123,0.297761,0.101565,0.973806,0.0105012,0.0131239,0.387886,0.127119,0.0239375,0.699456,0.645613,0.119931,0.692856,0.284091,0.546919,0.929031,0.423402,0.459422,0.911588,0.724325,0.760232,0.391989,0.0946099,0.449265,0.137105,0.473284,0.315927,0.302821,0.170465,0.770308,0.824034,0.817593,0.13459,0.959571,0.641427,0.58353,0.173089,0.677803,0.403773,0.261144,0.862251,0.488551,0.361094,0.762263,0.788726,0.984436,0.591807,0.634695,0.497116,0.679,0.516796,0.844287,0.570652,0.722418,0.124144,0.433669,0.809537,0.445078,0.284877,0.330952,0.730522,0.513445,0.261067,0.415181,0.624401,0.676333,0.05526,0.24528,0.152819,0.815693,0.307369,0.696407,0.0657419,0.270288,0.40467,0.571382,0.924942,0.82695,0.592291,0.751756,0.0956358,0.677624,0.705862,0.0378257,0.268827,0.0341229,0.690815,0.67,0.228678,0.220025,0.837723,0.643603,0.257299,0.0844156,0.795886,0.76868,0.600155,0.0550646,0.485999,0.210684,0.931107,0.653077,0.525936,0.734304,0.81086,0.0111814,0.110082,0.0938329,0.586894,0.716595,0.683035,0.0369624,0.95125,0.0162176,0.807362,0.655345,0.986081,0.421472,|0.615748,0.790152,0.0886608,0.600614,0.0923125,0.760673,0.710681,0.673891,0.541322,0.697044,0.979007,0.894079,0.958353,0.654722,0.35121,0.422897,0.461536,0.944545,0.551868,0.00731725,0.500815,0.872179,0.11265,0.377929,0.615371,0.29291,0.205039,0.845859,0.341412,0.206619,0.0727473,0.501941,0.823094,0.492656,0.0561274,0.631518,0.464277,0.386011,0.647662,0.890086,0.0050633,0.0772092,0.233417,0.360348,0.142107,0.805127,0.0101081,0.705729,0.279792,0.990493,0.515421,0.0624749,0.917491,0.030656,0.931886,0.469422,0.241943,0.670917,0.129835,0.791754,0.0612602,0.924016,0.377168,0.551267,0.863637,0.376017,0.0666539,0.233433,0.145961,0.0111701,0.350706,0.218196,0.0104665,0.0581272,0.793454,0.0864037,0.542354,0.899817,0.155386,0.540946,0.486136,0.265906,0.379979,0.117221,0.870649,0.0408508,0.932742,0.963274,0.862159,0.00553536,0.102135,0.629341,0.73056,0.368349,0.898909,0.93357,0.642605,0.14995,0.245983,0.365358,0.986864,0.894851,0.897301,0.543924,0.0742548,0.0908971,0.00775337,0.782696,0.0482007,0.0604737,0.970251,0.490998,0.008564,0.700995,0.81178,0.508491,0.653157,0.347067,0.507756,0.093313,0.356217,0.675124,0.158458,0.820055,0.331738,0.854659,0.589095,0.697408,0.50775,0.567645,0.439911,0.843965,0.44044,0.728099,0.319117,0.462721,0.489477,0.0385033,0.243801,0.98189,0.11589,0.735052,0.567634,0.571896,0.99378,0.639754,0.859498,0.849471,0.530713,0.828854,0.2012,0.48035,0.813053,0.788209,0.558506,0.00284111,0.953017,0.6988,0.786902,0.878491,0.0787142,0.239877,0.575681,0.0151959,0.900675,0.922,0.395141,0.290126,0.376403,0.810897,0.41054,0.487978,0.0687886,0.880687,0.653057,0.152885,0.823445,0.316505,0.954298,0.381693,0.683792,0.0978885,0.0682504,0.474157,0.968993,0.523688,0.631008,0.453645,0.313712,0.609659,0.669311,0.0996936,0.908849,0.307829,0.456408,0.807873,0.75136,0.104222,0.733001,0.893018,0.962844,0.590095,0.900944,0.220521,0.308468,0.375402,0.896254,0.766253,0.941833,0.606789,0.91789,0.756389,0.541549,0.63917,0.585663,0.876674,0.743057,0.449999,0.666896,0.471661,0.902409,0.481723,0.42481,0.716269,0.530007,0.726281,0.691179,0.370214,0.190038,0.709217,0.148553,0.670728,0.409988,0.23255,0.803699,0.790229,0.376584,0.179484,0.373626,0.430243,0.612453,0.346898,0.487932,0.270679,0.051927,0.83175,0.0752261,0.379818,0.286449,0.431446,0.543631,0.16975,0.0950472,0.234978,0.00690889,0.906446,0.683145,0.755447,0.699167,0.240603,0.579105,0.602275,0.600517,0.363447,0.842996,0.47438,0.504313,0.700508,0.467367,0.506548,0.182467,0.452519,0.00824386,0.500037,0.623973,0.693668,0.551515,0.890314,0.239397,0.28228,0.834904,0.523849,0.761006,0.235147,0.824394,0.0328611,0.0415146,0.0340658,0.504366,0.126962,0.33553,0.623257,0.0770695,0.978309,0.554738,0.669053,0.0901173,0.670225,0.161189,0.263,0.243349,0.256753,0.413181,0.55357,0.160278,0.450982,0.650732,0.348018,0.521218,0.683831,0.462558,0.71264,0.288818,0.346217,0.0462363,0.480579,0.933327,0.0431473,0.170283,0.182303,0.98584,0.44867,0.78335,0.0762061,0.930151,0.495568,0.112868,0.59227,0.710314,0.329888,0.484215,0.342411,0.988619,0.707154,0.232627,0.229289,0.117679,0.372473,0.714894,0.285856,0.542075,0.217406,0.275438,0.310439,0.317469,0.101917,0.401776,0.369171,0.068805,0.435472,0.576107,0.801227,0.457212,0.995021,0.0957137,0.412911,0.119325,0.516159,0.25865,0.640512,0.389866,0.812767,0.759,0.696166,0.206032,0.0353904,0.544697,0.570112,0.744018,0.476189,0.0848489,0.281649,0.349587,0.98983,0.108408,0.726263,0.189102,0.499976,0.762541,0.569769,0.0350539,0.953574,0.840977,0.407151,0.224515,0.766179,0.425866,0.664232,0.122778,0.469864,0.465914,0.60821,0.212372,0.435744,0.699372,0.242687,0.823866,0.124063,0.318175,0.625947,0.716831,0.361212,0.275628,0.663336,0.930299,0.459658,0.25588,0.448214,0.411906,0.776283,0.0939402,0.137601,0.955523,0.346924,0.285588,0.678992,0.310945,0.699837,0.880965,0.00308526,0.344474,0.322798,0.94834,0.308616,0.0670817,0.0396284,0.973637,0.112718,0.892033,0.295247,0.191081,0.605129,0.554292,0.298008,0.805631,0.184691,0.810768,0.0103622,0.758586,0.746944,0.631636,0.380091,0.936807,0.219187,0.25718,0.24807,0.691342,0.014668,0.0497645,0.888925,0.807027,0.451129,0.982412,0.978666,0.258817,0.921059,0.343457,0.0518044,0.618813,0.0467759,0.460283,0.432412,0.0455685,0.99507,0.850864,0.503231,0.9123,0.226582,0.490658,0.970904,0.619984,0.254624,0.900693,0.195972,0.278439,0.522142,0.995234,0.576802,0.490112,0.818625,0.0413123,0.603243,0.0792434,0.500964,0.0677007,0.813384,0.0897433,0.519451,0.937845,0.0157348,0.308639,0.0831024,0.409382,0.340657,0.209113,0.750463,0.895031,0.765605,0.308538,0.378948,0.535881,0.596869,0.077662,0.866255,0.995984,0.237873,0.480608,0.926373,0.0715708,0.463305,0.884582,0.121942,0.030252,0.778036,0.427492,0.629414,0.642586,0.143953,0.314643,0.0376801,0.505472,0.623368,0.578025,0.474923,0.216424,0.256293,0.0338401,0.901143,0.433235,0.558253,0.771204,0.360036,0.589256,0.8368,0.733387,0.889149,0.769286,0.734943,0.663974,0.632835,0.932743,0.463455,0.989372,0.117712,0.61594,0.491678,0.0900648,0.85497,0.491562,0.0167038,0.0880074,0.832134,0.0812377,0.702815,0.668877,0.60075,0.0764527,0.38015,0.815545,0.998612,0.141498,0.0816962,0.026913,0.794959,0.505263,0.0381569,0.00501806,0.818724,0.73581,0.854626,0.464583,0.223486,0.614074,0.592583,0.578059,0.672322,0.369207,0.261212,0.815581,0.736483,0.115292,0.495007,0.960417,0.869715,0.106848,0.0638207,0.055348,0.983236,0.971056,0.27677,0.924219,0.444951,0.0376121,0.139302,0.481968,0.154665,0.274728,0.0633194,0.900803,0.0362116,0.221321,0.279951,0.00199997,0.0586803,0.464217,0.415848,0.43541,0.312781,0.638506,0.37785,0.276276,0.286334,0.961615,0.295724,0.726687,0.930373,0.571863,0.107543,0.105524,0.815917,0.214499,0.230051,0.319753,0.255247,0.847447,0.45439,0.426366,0.590007,0.469112,0.92621,0.767828,0.352495,0.722886,0.0995701,0.897224,0.566105,0.95376,0.763951,0.0105333,0.188105,0.161542,0.677423,0.572198,0.0948543,0.830349,0.199975,0.587372,0.601326,0.217233,0.66096,0.994803,0.0485337,0.191503,0.749756,0.614866,0.0452678,0.99082,0.847141,0.815692,0.300917,0.97913,0.524382,0.0499068,0.172409,0.779487,0.647404,0.974447,0.897501,0.19171,0.51589,0.700961,0.550605,0.339294,0.503809,0.402476,0.539525,0.296567,0.166388,0.957644,0.443755,0.360019,0.584451,0.379671,0.395396,0.648321,0.952286,0.979078,0.952664,0.0859429,0.71444,0.151628,0.820088,0.536471,0.320879,0.211621,0.96586,0.351558,0.283741,0.214211,0.0642117,0.656013,0.116189,0.644715,0.380946,0.713835,0.20331,0.480029,0.339522,0.889155,0.0821533,0.537672,0.260182,0.13251,0.374214,0.914052,0.532161,0.728534,0.0439681,0.897501,0.918654,0.160779,0.591698,0.0963081,0.244191,0.474202,0.194385,0.0688497,0.143276,0.375646,0.836403,0.150775,0.220617,0.301707,0.415771,0.931967,0.141617,0.270927,0.661277,0.00556511,0.374283,0.173073,0.640905,0.215723,0.24252,0.292001,0.688866,0.862067,0.898917,0.654709,0.128711,0.165285,0.000820279,0.553879,0.322993,0.139632,0.979959,0.121596,0.489655,0.279211,0.291067,0.405393,0.857917,0.788087,0.232912,0.484125,0.860417,0.72922,0.336724,0.31933,0.536588,0.544516,0.716296,0.76005,0.641804,0.897923,0.418413,0.1421,0.553699,0.211658,0.347587,0.908028,0.495797,0.455271,0.105323,0.821945,0.624032,0.983282,0.529663,0.594449,0.257558,0.859706,0.973924,0.491231,0.3098,0.507915,0.644501,0.477336,0.590689,0.415262,0.14206,0.98855,0.508073,0.462351,0.460549,0.985498,0.922874,0.753785,0.156201,0.392902,0.384089,0.290329,0.174507,0.852888,0.202788,0.839403,0.715273,0.78196,0.811396,0.577018,0.0462542,0.793426,0.553518,0.971524,0.0756837,0.45789,0.291899,0.40135,0.484243,0.8056,0.286507,0.360514,0.369679,0.506379,0.607571,0.289032,0.263413,0.544361,0.53145,0.0304281,0.272472,0.708651,0.482305,0.64854,0.663337,0.481958,0.861564,0.437864,0.628248,0.908689,0.0843562,0.637052,0.0603393,0.832631,0.811503,0.395332,0.818065,0.668718,0.100291,0.00306457,0.622303,0.0309595,0.160399,0.292842,0.0801801,0.243864,0.0821746,0.908107,0.331274,0.550319,0.786766,0.558859,0.59954,0.0246726,0.876682,0.861862,0.695807,0.561364,0.895356,0.618793,0.351487,0.266368,0.758543,0.914424,0.29446,0.0960729,0.735921,0.729593,0.777505,0.0659929,0.0455244,0.461939,0.418125,0.470116,0.19001,0.38502,0.472405,0.966819,0.853075,0.195147,0.922113,0.420281,0.27782,0.422319,0.901234,0.748151,0.882412,0.844961,0.187254,0.608803,0.492287,0.437211,0.281314,0.380221,0.984186,0.814578,0.614574,0.0989363,0.549905,0.00282216,0.544196,0.664733,0.625163,0.901674,0.0118825,0.943411,0.978549,0.317967,0.587716,0.135128,0.827067,0.1861,0.598928,0.771498,0.532512,0.59734,0.786215,0.0529375,0.214985,0.34691,0.517767,0.138258,0.147742,0.411394,0.387405,0.692453,0.0832078,0.50684,0.0404859,0.598917,0.557453,0.578572,0.378664,0.904616,0.239686,0.741352,0.501114,0.563184,0.580982,0.875073,0.329546,0.0950134,0.0491003,0.78606,0.724129,0.0944678,0.503892,0.284592,0.133447,0.637245,0.401436,0.794248,0.929864,0.34121,0.446403,0.069037,0.607033,0.293751,0.423825,0.379698,0.985005,0.931414,0.132761,0.466542,0.286463,0.251255,0.678388,0.214852,0.366423,0.141991,0.634577,0.744814,0.177097,0.0813633,0.299216,0.951108,0.156379,0.607204,0.808259,0.126075,0.885012,|0.982121,0.0502779,0.0262155,0.106212,0.565718,0.579494,0.154165,0.747085,0.687134,0.600043,0.813028,0.635553,0.0548765,0.473473,0.330897,0.997763,0.0375386,0.929928,0.602288,0.837132,0.0895527,0.0107331,0.0972168,0.64762,0.278033,0.392886,0.321011,0.557127,0.356879,0.310634,0.435965,0.270992,0.817526,0.911699,0.0730819,0.839317,0.049996,0.781625,0.717164,0.904473,0.571947,0.999378,0.462565,0.0836115,0.382076,0.223631,0.533946,0.362538,0.53403,0.0601935,0.374424,0.965834,0.984372,0.993002,0.931373,0.999,0.734086,0.0852937,0.898865,0.359537,0.418151,0.35961,0.466426,0.59523,0.413283,0.840307,0.880683,0.986721,0.677977,0.443681,0.293072,0.652751,0.116188,0.927507,0.0128834,0.391374,0.735347,0.522184,0.468033,0.597904,0.517721,0.038907,0.480067,0.946763,0.29163,0.355085,0.915917,0.0530131,0.738501,0.162776,0.538869,0.387822,0.416154,0.898247,0.858415,0.783106,0.238043,0.89524,0.523872,0.564189,0.328311,0.691923,0.290577,0.303562,0.721618,0.411187,0.97343,0.651762,0.465726,0.32917,0.451095,0.521455,0.231893,0.0276667,0.560819,0.851927,0.0643617,0.321189,0.595919,0.118598,0.93588,0.045723,0.0552894,0.630788,0.743027,0.113727,0.668119,0.616941,0.604402,0.474195,0.978741,0.453886,0.372245,0.871353,0.702279,0.0246372,0.535071,0.830648,0.497265,0.870764,0.347074,0.405537,0.443432,0.526866,0.465176,0.639753,0.22434,0.822548,0.590202,0.986011,0.592266,0.296613,0.432052,0.0348216,0.716833,0.0757452,0.0977008,0.947934,0.0322412,0.876181,0.978588,0.429797,0.363919,0.740915,0.753725,0.646614,0.947446,0.421598,0.704839,0.399553,0.104313,0.963322,0.380415,0.565631,0.186336,0.985949,0.510316,0.399605,0.771603,0.398666,0.880195,0.561369,0.0129519,0.883649,0.0823229,0.653211,0.348865,0.56028,0.730129,0.70331,0.184261,0.777391,0.941837,0.194487,0.572234,0.669481,0.716597,0.803979,0.36336,0.679631,0.241549,0.18262,0.368633,0.475121,0.105722,0.0750674,0.678718,0.139658,0.339393,0.16923,0.386407,0.51559,0.029946,0.637152,0.358896,0.837393,0.67161,0.720549,0.388725,0.758368,0.60906,0.778,0.713425,0.63533,0.799684,0.862732,0.207389,0.953255,0.14642,0.662278,0.0451282,0.365411,0.668618,0.257711,0.499908,0.00183606,0.148961,0.221689,0.573582,0.812496,0.180072,0.148231,0.755413,0.726664,0.798537,0.687767,0.783631,0.854772,0.158781,0.335384,0.277886,0.380223,0.285205,0.892556,0.346167,0.863936,0.5203,0.536477,0.806538,0.606142,0.520289,0.74524,0.523432,0.6026,0.465337,0.313251,0.831235,0.348873,0.91194,0.328367,0.0799339,0.715714,0.794608,0.59313,0.612292,0.194532,0.743709,0.284827,0.975505,0.400929,0.461668,0.789685,0.25416,0.129866,0.871461,0.635985,0.93456,0.0630709,0.231725,0.316427,0.0535667,0.724282,0.0726689,0.882035,0.547345,0.0866648,0.241519,0.62772,0.05192,0.959013,0.70368,0.596299,0.541095,0.418456,0.32633,0.273758,0.0116956,0.872343,0.42573,0.295217,0.844097,0.44571,0.882527,0.761331,0.39578,0.956907,0.0279841,0.632028,0.343314,0.826688,0.23301,0.671669,0.681506,0.315573,0.544949,0.315468,0.962113,0.709004,0.375928,0.087187,0.675696,0.0698537,0.355061,0.76737,0.517915,0.12493,0.666458,0.282397,0.190333,0.488759,0.911959,0.423437,0.297835,0.674728,0.413497,0.78944,0.655276,0.362982,0.352055,0.46843,0.964082,0.917863,0.778089,0.67379,0.478533,0.546757,0.925906,0.341711,0.913506,0.0160846,0.0164127,0.611212,0.805674,0.879898,0.157922,0.71897,0.135732,0.0590059,0.634812,0.790675,0.821197,0.242432,0.986494,0.321588,0.0152867,0.204686,0.657598,0.0127718,0.771119,0.416324,0.740713,0.855466,0.740354,0.437574,0.331145,0.774443,0.270621,0.710376,0.928407,0.273692,0.96136,0.43971,0.210912,0.299666,0.932156,0.482891,0.000890672,0.394333,0.870678,0.471815,0.777135,0.889309,0.354081,0.236008,0.0272588,0.114531,0.780945,0.193333,0.387587,0.904625,0.00828981,0.728487,0.00732112,0.471738,0.191903,0.523568,0.695848,0.796968,0.482223,0.104889,0.572714,0.103353,0.258321,0.29165,0.534348,0.293523,0.320686,0.324705,0.563201,0.750472,0.804948,0.66507,0.948504,0.544992,0.629666,0.138188,0.41949,0.621895,0.125587,0.396162,0.863043,0.217556,0.039134,0.918534,0.118091,0.561991,0.105023,0.261849,0.90379,0.218586,0.2375,0.541644,0.456757,0.915003,0.355869,0.835048,0.670177,0.580452,0.481292,0.993919,0.570042,0.991722,0.591281,0.585769,0.834533,0.595118,0.702947,0.700749,0.0952013,0.39709,0.0640828,0.242649,0.0728439,0.913644,0.138515,0.0972528,0.79763,0.450979,0.495228,0.0135383,0.246902,0.58161,0.0969307,0.121732,0.539909,0.609119,0.780054,0.278241,0.769945,0.822567,0.658338,0.933423,0.596575,0.0442583,0.830322,0.456696,0.73815,0.49062,0.150821,0.289128,0.095753,0.221231,0.627084,0.0629303,0.301297,0.914477,0.397829,0.379111,0.540315,0.21778,0.603333,0.0240038,0.673286,0.261091,0.940243,0.3314,0.712681,0.0702187,0.37574,0.859384,0.866182,0.966429,0.951996,0.0753311,0.164936,0.714474,0.713664,0.851755,0.984665,0.330572,0.848974,0.934708,0.0343717,0.78764,0.797707,0.744079,0.309447,0.923352,0.380305,0.429046,0.488552,0.889549,0.883799,0.886433,0.50103,0.618516,0.408983,0.421651,0.542409,0.756517,0.615634,0.424053,0.672321,0.359345,0.878407,0.886426,0.314649,0.956259,0.872776,0.962721,0.862819,0.529854,0.493272,0.58077,0.624438,0.16439,0.937141,0.777746,0.895227,0.913286,0.36995,0.302488,0.761527,0.901873,0.8023,0.402191,0.0957662,0.985883,0.509514,0.577885,0.51382,0.610117,0.243091,0.401044,0.223702,0.0862046,0.551516,0.375153,0.216245,0.0139916,0.527268,0.140945,0.97195,0.23965,0.860537,0.035403,0.801252,0.158452,0.825873,0.357498,0.853383,0.92038,0.262844,0.746287,0.0344831,0.0137619,0.971226,0.600987,0.315015,0.639736,0.543599,0.0121552,0.62303,0.700284,0.809977,0.131911,0.522115,0.559378,0.643976,0.0940935,0.617854,0.147896,0.380507,0.767673,0.920614,0.40858,0.589991,0.924555,0.423968,0.963511,0.282384,0.204562,0.530833,0.927109,0.643183,0.715576,0.0551186,0.514564,0.407738,0.591309,0.208714,0.435777,0.459218,0.256433,0.694525,0.758027,0.932202,0.799074,0.438454,0.633587,0.549522,0.254792,0.351622,0.655634,0.00710958,0.323589,0.749144,0.379883,0.632568,0.723368,0.567782,0.268282,0.617344,0.607316,0.574348,0.600981,0.573097,0.923964,0.517053,0.462696,0.286521,0.676611,0.948125,0.73872,0.255716,0.981762,0.182541,0.576972,0.421227,0.488449,0.586936,0.524019,0.703777,0.144032,0.00857389,0.876396,0.694166,0.993081,0.672598,0.531729,0.285283,0.586062,0.970118,0.556823,0.155571,0.266059,0.276048,0.515013,0.85847,0.0316306,0.696962,0.431705,0.298286,0.07576,0.2687,0.502829,0.807273,0.515134,0.814977,0.8004,0.0176892,0.560336,0.910432,0.820351,0.944089,0.493751,0.938005,0.865712,0.342163,0.498885,0.372429,0.573217,0.558519,0.0481303,0.218763,0.897804,0.511983,0.479323,0.422972,0.656952,0.837193,0.969033,0.163866,0.508503,0.870055,0.621951,0.704283,0.690738,0.909161,0.95007,0.146013,0.849443,0.202386,0.743516,0.336571,0.942703,0.032776,0.808374,0.0314389,0.277085,0.664637,0.198814,0.0578421,0.998941,0.3341,0.465187,0.308763,0.514854,0.874165,0.19445,0.300074,0.220218,0.375224,0.156989,0.759144,0.375836,0.741644,0.709654,0.0966751,0.188219,0.548615,0.716637,0.591003,0.353645,0.24511,0.249536,0.337737,0.240224,0.620106,0.495483,0.467692,0.931152,0.678762,0.778161,0.847525,0.696303,0.43116,0.676871,0.585838,0.772061,0.160102,0.42681,0.808604,0.606544,0.664965,0.179357,0.722531,0.992871,0.612989,0.0498825,0.142978,0.317891,0.0909778,0.39206,0.0699643,0.34073,0.0761184,0.327603,0.0855375,0.112041,0.183755,0.440466,0.643518,0.65383,0.728198,0.429845,0.812736,0.677892,0.629633,0.59939,0.258229,0.956759,0.988189,0.705239,0.978949,0.943892,0.95669,0.367299,0.361112,0.64302,0.958369,0.25432,0.047316,0.270606,0.799593,0.447926,0.391887,0.413806,0.766484,0.0684186,0.798043,0.830092,0.497759,0.734446,0.976282,0.911438,0.814636,0.93978,0.875585,0.01406,0.900141,0.186213,0.764895,0.274076,0.0971283,0.858292,0.614366,0.610959,0.866469,0.447919,0.192062,0.835483,0.72224,0.849585,0.75771,0.669949,0.0942385,0.683428,0.938505,0.968261,0.440774,0.451763,0.00579512,0.330517,0.807693,0.157076,0.568313,0.770745,0.0425177,0.582497,0.317849,0.00491673,0.60602,0.800451,0.627469,0.207827,0.0589981,0.460725,0.457515,0.868331,0.339707,0.558313,0.642511,0.864534,0.419955,0.128824,0.87539,0.172789,0.391535,0.617625,0.233124,0.634865,0.260869,0.767467,0.389048,0.644632,0.539845,0.0370262,0.601445,0.415172,0.746939,0.831812,0.514813,0.343143,0.388857,0.943581,0.750912,0.290766,0.0589999,0.620131,0.213483,0.78725,0.201672,0.721727,0.896653,0.419867,0.275862,0.486865,0.686063,0.308435,0.0841731,0.382923,0.94964,0.256278,0.541328,0.602681,0.19283,0.689135,0.662886,0.0918872,0.596386,0.49643,0.376586,0.0215797,0.899413,0.395991,0.0852956,0.151299,0.279134,0.983725,0.429888,0.168804,0.714634,0.937799,0.120301,0.735722,0.638265,0.690812,0.114938,0.446649,0.581772,0.20852,0.692908,0.500936,0.442142,0.186546,0.714683,0.568639,0.697493,0.865427,0.213402,0.21683,0.510683,0.617764,0.052733,0.553823,0.242987,0.349683,0.129412,0.86207,0.63625,0.171523,0.409259,0.385976,0.485351,0.556895,0.831664,0.185809,0.496977,0.814405,0.94671,0.925558,0.299748,0.380846,0.398906,0.417064,0.440845,0.109336,0.638293,0.0721664,|0.295472,0.650125,0.11356,0.36792,0.12458,0.135544,0.547049,0.0133672,0.7016,0.881901,0.54418,0.325702,0.643367,0.518891,0.242198,0.883476,0.928131,0.996298,0.556241,0.226993,0.0239968,0.0863316,0.674294,0.151778,0.89845,0.502621,0.00770968,0.768513,0.637645,0.344581,0.318484,0.812113,0.519765,0.852545,0.00191015,0.149044,0.3406,0.207013,0.427591,0.650014,0.349975,0.638595,0.8514,0.622054,0.293823,0.805089,0.120193,0.341681,0.742127,0.835577,0.0998839,0.114878,0.955321,0.32375,0.532432,0.285129,0.810201,0.702257,0.925092,0.162217,0.937244,0.542084,0.891204,0.272626,0.516103,0.630112,0.685403,0.282573,0.249742,0.655031,0.00438386,0.590773,0.809591,0.349246,0.876992,0.275807,0.75587,0.176099,0.631656,0.949428,0.0142341,0.632334,0.0849605,0.108958,0.737383,0.892205,0.315074,0.740548,0.184472,0.693909,0.831347,0.901095,0.586321,0.461819,0.125138,0.0703882,0.12473,0.06331,0.702663,0.22067,0.846657,0.0341702,0.911784,0.722407,0.79681,0.0498579,0.801878,0.921924,0.88236,0.782126,0.750289,0.583926,0.677739,0.784802,0.380471,0.0531368,0.401868,0.848258,0.202062,0.901321,0.986805,0.651852,0.766618,0.788166,0.954472,0.309741,0.688516,0.762924,0.365458,0.795886,0.564023,0.68018,0.69434,0.393136,0.473315,0.576948,0.10736,0.400671,0.951659,0.943705,0.348947,0.700012,0.601821,0.517887,0.891367,0.42615,0.890157,0.501479,0.0881241,0.213392,0.0922818,0.165276,0.110229,0.743832,0.544625,0.813824,0.280089,0.27654,0.418765,0.756045,0.393814,0.808171,0.222839,0.791185,0.715617,0.58626,0.540245,0.103512,0.00725907,0.492426,0.475426,0.982137,0.70722,0.732564,0.982198,0.483591,0.828236,0.3157,0.490177,0.680308,0.694094,0.811695,0.911913,0.436487,0.380086,0.978589,0.927704,0.0960566,0.480544,0.588976,0.624431,0.964851,0.919759,0.659576,0.52308,0.0637228,0.392701,0.696849,0.34476,0.0495448,0.238076,0.164878,0.0450908,0.82601,0.340811,0.99492,0.194546,0.667472,0.965826,0.267085,0.233065,0.340291,0.621898,0.43469,0.239887,0.787594,0.649472,0.174495,0.35159,0.549695,0.384568,0.623628,0.348245,0.561286,0.26793,0.0658256,0.122822,0.721438,0.060885,0.323364,0.0530385,0.882414,0.130351,0.840988,0.999922,0.723366,0.131951,0.03071,0.432196,0.396981,0.164392,0.663675,0.833698,0.29054,0.570397,0.420225,0.272064,0.555652,0.61305,0.706212,0.592257,0.493143,0.490876,0.966762,0.800249,0.807782,0.58153,0.875958,0.266378,0.735148,0.221949,0.24601,0.419115,0.321951,0.551686,0.130418,0.388252,0.402541,0.420528,0.993586,0.274583,0.235137,0.419594,0.683152,0.967772,0.0169515,0.84271,0.73163,0.78921,0.0954726,0.433222,0.929344,0.278142,0.991052,0.305242,0.250701,0.023986,0.481481,0.147587,0.764131,0.38684,0.0887725,0.701318,0.784795,0.301801,0.847254,0.503348,0.0453227,0.863028,0.0256635,0.0540488,0.806809,0.0813482,0.552945,0.238551,0.104638,0.516726,0.105634,0.0767018,0.0246317,0.295464,0.794374,0.295333,0.394046,0.44305,0.921807,0.277269,0.367223,0.869451,0.878224,0.0885214,0.066748,0.988949,0.679218,0.487356,0.844927,0.591855,0.991177,0.884318,0.778094,0.264187,0.312212,0.494877,0.400491,0.618069,0.0667458,0.199639,0.149018,0.135744,0.61189,0.433731,0.0466918,0.871615,0.80634,0.749603,0.395498,0.803675,0.34908,0.705603,0.870308,0.434881,0.430293,0.588769,0.387907,0.519719,0.513584,0.707646,0.414252,0.584073,0.59978,0.425901,0.0374938,0.321948,0.1755,0.983747,0.386418,0.00225592,0.645943,0.0642825,0.833992,0.144827,0.959443,0.801383,0.209197,0.870328,0.600258,0.733254,0.928815,0.622043,0.0390435,0.813486,0.539304,0.433722,0.64878,0.919185,0.175434,0.77822,0.136447,0.114679,0.530595,0.753379,0.93806,0.928512,0.462676,0.606067,0.948734,0.0854303,0.685555,0.938962,0.0168338,0.630139,0.866248,0.411075,0.740362,0.116262,0.0277417,0.709247,0.681806,0.793376,0.842203,0.282327,0.617581,0.982804,0.0436248,0.053732,0.468695,0.0568948,0.376597,0.59414,0.111899,0.779355,0.536589,0.762034,0.820527,0.6704,0.824729,0.189448,0.360064,0.329485,0.805654,0.00880134,0.0001055,0.0486662,0.682018,0.199252,0.616385,0.48502,0.622542,0.831724,0.712442,0.980979,0.139664,0.964721,0.962923,0.487153,0.163089,0.969547,0.927058,0.562266,0.026301,0.742115,0.217039,0.249773,0.922274,0.72177,0.699426,0.928788,0.481667,0.189886,0.28681,0.811846,0.575559,0.377168,0.416774,0.367195,0.689368,0.852948,0.494312,0.632003,0.896985,0.952772,0.533519,0.849421,0.700494,0.162627,0.630654,0.922445,0.187569,0.698013,0.234912,0.345795,0.558096,0.466279,0.615627,0.180602,0.827226,0.232185,0.0259858,0.518805,0.706264,0.381707,0.252474,0.465455,0.635072,0.000683844,0.880067,0.535146,0.38111,0.640249,0.865118,0.630522,0.168157,0.0188293,0.527826,0.970225,0.349193,0.0679728,0.543316,0.180681,0.0384026,0.305155,0.056493,0.785443,0.0442086,0.365139,0.0909336,0.508567,0.783829,0.146982,0.00192225,0.49634,0.430034,0.767559,0.910279,0.14915,0.347285,0.800376,0.635879,0.827052,0.765988,0.0902482,0.775677,0.40452,0.211291,0.228383,0.2236,0.287932,0.984583,0.041352,0.247019,0.574959,0.118192,0.918027,0.757268,0.581439,0.209758,0.942686,0.87491,0.0712622,0.900622,0.399105,0.478208,0.193386,0.3615,0.463618,0.114392,0.113747,0.503882,0.335284,0.104029,0.614397,0.278396,0.360929,0.658204,0.0497304,0.445683,0.884634,0.0325762,0.791378,0.215507,0.153745,0.442351,0.339162,0.484423,0.111456,0.370095,0.888632,0.732781,0.161657,0.0469406,0.716687,0.135102,0.639999,0.854045,0.490675,0.584749,0.624758,0.605798,0.0523461,0.130365,0.977021,0.566094,0.176503,0.191824,0.247141,0.52717,0.511138,0.115144,0.913973,0.728057,0.0576812,0.276075,0.613525,0.0485057,0.729274,0.729859,0.753374,0.816796,0.154074,0.582573,0.877105,0.27994,0.590439,0.386121,0.628858,0.190794,0.79017,0.150653,0.348674,0.338365,0.310277,0.398028,0.959588,0.171402,0.456521,0.315907,0.368015,0.85689,0.866286,0.344461,0.758526,0.172308,0.554435,0.916825,0.308473,0.968691,0.840704,0.401554,0.290814,0.253425,0.73118,0.638854,0.113403,0.758678,0.933649,0.433357,0.619962,0.586106,0.468772,0.799211,0.993662,0.446476,0.607534,0.760042,0.673482,0.0355049,0.587032,0.713165,0.659884,0.83828,0.705874,0.110609,0.774832,0.678909,0.827665,0.573864,0.611003,0.0955372,0.179373,0.101008,0.120131,0.301081,0.239664,0.851272,0.7571,0.439091,0.694726,0.688306,0.673115,0.757024,0.364501,0.225611,0.115932,0.111237,0.622466,0.816967,0.198351,0.358682,0.248905,0.651965,0.83155,0.659301,0.235743,0.538579,0.340514,0.147142,0.861932,0.804593,0.213054,0.10658,0.505933,0.66779,0.0614193,0.0232924,0.187508,0.899978,0.508806,0.328934,0.971012,0.350886,0.0394436,0.158302,0.155698,0.464193,0.350577,0.437829,0.463068,0.246629,0.440947,0.70017,0.644662,0.540075,0.809838,0.292606,0.36736,0.764022,0.848205,0.0684458,0.647882,0.720121,0.570242,0.929281,0.921066,0.547549,0.357741,0.262418,0.785035,0.702025,0.455878,0.485608,0.879435,0.789912,0.227127,0.804597,0.00240958,0.0375785,0.95889,0.416689,0.0366277,0.269478,0.810169,0.0792311,0.996734,0.223542,0.78895,0.611697,0.28813,0.693281,0.075386,0.517139,0.531842,0.886661,0.0952926,0.810905,0.892111,0.596814,0.931356,0.326057,0.589951,0.231945,0.35716,0.919717,0.879156,0.938517,0.283112,0.721657,0.176594,0.00225043,0.67178,0.511095,0.500516,0.454852,0.590541,0.228674,0.185615,0.0926911,0.357557,0.000546575,0.854618,0.960428,0.463466,0.223276,0.658634,0.649076,0.548933,0.183028,0.0798836,0.159198,0.99002,0.159168,0.867797,0.342112,0.605069,0.169439,0.0260066,0.245136,0.26311,0.535193,0.414273,0.875983,0.420694,0.70527,0.349333,0.931684,0.0717582,0.329424,0.586072,0.81279,0.899612,0.202258,0.329375,0.80055,0.826504,0.779838,0.575714,0.487111,0.120194,0.942935,0.048278,0.611652,0.720701,0.49665,0.726625,0.109922,0.494072,0.168451,0.529867,0.747826,0.169255,0.00812852,0.714046,0.232702,0.697094,0.831601,0.384916,0.311041,0.697363,0.589489,0.107977,0.569728,0.664391,0.920526,0.713526,0.363385,0.567789,0.579666,0.379245,0.0468099,0.687928,0.605212,0.893478,0.240576,0.148484,0.387902,0.0567487,0.723183,0.649529,0.846204,0.939702,0.359134,0.340073,0.389865,0.812277,0.35212,0.55927,0.182853,0.666387,0.0689087,0.715879,0.276502,0.810904,0.494595,0.861205,0.0145653,0.0143617,0.413374,0.145239,0.736405,0.00149864,0.289637,0.34943,0.616519,0.331396,0.342851,0.305171,0.978445,0.0423512,0.618687,0.775368,0.392976,0.329956,0.727673,0.851276,0.689623,0.637317,0.801435,0.0274848,0.0614493,0.210376,0.666658,0.594945,0.209178,0.124531,0.405639,0.831558,0.438891,0.945779,0.966269,0.0905142,0.942687,0.819345,0.324613,0.681673,0.745441,0.51019,0.667812,0.672141,0.51958,0.469117,0.880665,0.684815,0.332735,0.143791,0.613446,0.361684,0.0222753,0.904272,0.777448,0.639221,0.682742,0.76223,0.778994,0.977871,0.676962,0.578088,0.0019024,0.858744,0.223233,0.213218,0.455299,0.31436,0.747007,0.00792545,0.109243,0.0610752,0.69326,0.885868,0.644542,0.51562,0.0825397,0.731953,0.0631033,0.456668,0.778023,0.813871,0.212284,0.615111,0.757831,0.673529,0.869006,0.517234,0.496369,0.425465,0.0183073,0.19683,0.206922,0.0156802,0.529707,0.283957,0.630543,0.335416,0.0582581,0.79674,0.703571,0.816215,0.621787,0.0284987,0.985767,0.407685,0.944148,0.0029664,0.300156,0.552935,0.0566566,0.936401,0.302047,0.0294112,0.790395,0.0745147,0.411224,|0.971085,0.816604,0.947948,0.550457,0.544729,0.53458,0.573112,0.0316637,0.423923,0.395195,0.139176,0.814042,0.683877,0.13471,0.85987,0.720148,0.985502,0.318808,0.266133,0.341196,0.780515,0.705406,0.793715,0.974599,0.347121,0.812856,0.185716,0.470475,0.284675,0.751282,0.438387,0.654466,0.229725,0.238139,0.080825,0.0866723,0.94319,0.280307,0.830591,0.865804,0.229617,0.759955,0.797073,0.17834,0.502895,0.896605,0.606094,0.659183,0.596021,0.257425,0.641489,0.820534,0.291061,0.99834,0.225216,0.0123165,0.879634,0.168224,0.827244,0.343312,0.130294,0.502691,0.576527,0.420991,0.46736,0.566413,0.991897,0.609576,0.00365055,0.384588,0.626411,0.526796,0.287337,0.330982,0.462687,0.700578,0.138533,0.368664,0.647555,0.43444,0.786522,0.664655,0.0963975,0.34895,0.754062,0.972602,0.0466067,0.497134,0.0738197,0.629496,0.670307,0.208521,0.939996,0.426277,0.323053,0.503453,0.514924,0.242332,0.21225,0.925676,0.993535,0.269351,0.457558,0.739667,0.489825,0.257103,0.590924,0.663577,0.24829,0.643357,0.724663,0.21198,0.333776,0.0687633,0.777743,0.312401,0.395815,0.481522,0.311392,0.952458,0.515225,0.455242,0.200451,0.0487458,0.0953988,0.591523,0.49912,0.49135,0.609409,0.608577,0.135334,0.890803,0.650044,0.753555,0.831445,0.376151,0.0768455,0.309691,0.683467,0.833127,0.747288,0.284571,0.903589,0.765499,0.57372,0.381214,0.384219,0.131025,0.676869,0.185959,0.98065,0.928539,0.753686,0.425636,0.109653,0.824158,0.0630226,0.32895,0.929638,0.848307,0.789751,0.253702,0.803874,0.0982451,0.118802,0.497437,0.866572,0.436157,0.882444,0.735699,0.818047,0.648029,0.031006,0.767546,0.0178358,0.877812,0.369996,0.680145,0.245631,0.843657,0.384234,0.31629,0.223286,0.770774,0.572171,0.753715,0.286736,0.0115761,0.282736,0.0874692,0.199296,0.233301,0.0465996,0.586509,0.758532,0.404185,0.288558,0.637014,0.488233,0.229394,0.660499,0.992108,0.790672,0.795816,0.965059,0.62553,0.906063,0.881807,0.0515288,0.116523,0.23904,0.59177,0.836342,0.0806832,0.0712588,0.456228,0.499913,0.804103,0.989738,0.071419,0.138843,0.0261923,0.944846,0.00864106,0.934264,0.898089,0.562594,0.457695,0.130268,0.288188,0.513588,0.563731,0.396622,0.774119,0.663014,0.979561,0.772954,0.347829,0.935996,0.622993,0.95405,0.585293,0.392852,0.28621,0.33023,0.497754,0.0832385,0.27235,0.196212,0.181274,0.00842291,0.824303,0.761738,0.409537,0.0914116,0.918017,0.293779,0.568086,0.245728,0.405092,0.583323,0.40289,0.696986,0.594553,0.222805,0.592223,0.267853,0.196766,0.245794,0.724203,0.384371,0.567839,0.446137,0.229237,0.0993622,0.525263,0.323465,0.618712,0.1063,0.139015,0.135914,0.564904,0.506457,0.472527,0.527815,0.184784,0.410394,0.75878,0.0305012,0.805416,0.292161,0.597242,0.0598301,0.801678,0.438313,0.244216,0.273481,0.982598,0.387285,0.302595,0.660104,0.161822,0.142462,0.918036,0.517242,0.674087,0.672169,0.958156,0.412673,0.825717,0.46542,0.929282,0.841138,0.278316,0.243983,0.211836,0.29374,0.85931,0.397985,0.110824,0.747578,0.254066,0.263068,0.762013,0.325768,0.342544,0.681304,0.373388,0.856963,0.842428,0.484805,0.53163,0.469785,0.8459,0.928513,0.513345,0.21874,0.172977,0.383568,0.113506,0.013873,0.610036,0.521033,0.0279391,0.627224,0.268481,0.184457,0.693519,0.757661,0.217163,0.695082,0.428301,0.816512,0.382952,0.54503,0.43024,0.957517,0.400978,0.471612,0.0956129,0.313584,0.00841606,0.39036,0.811769,0.559105,0.760883,0.910711,0.0574372,0.586022,0.905226,0.0235924,0.470918,0.0522687,0.00773489,0.735555,0.418043,0.827187,0.3107,0.939885,0.278405,0.560042,0.619809,0.842671,0.188865,0.260623,0.658119,0.0863853,0.583088,0.834647,0.503602,0.983412,0.233554,0.116182,0.292485,0.263753,0.589937,0.710181,0.785931,0.0635679,0.249381,0.128176,0.81798,0.908671,0.273117,0.96147,0.81329,0.17598,0.26665,0.218632,0.0936992,0.663548,0.727618,0.701952,0.0705819,0.255953,0.976252,0.395621,0.104117,0.212047,0.446779,0.435304,0.836043,0.213046,0.684602,0.611102,0.0209563,0.537664,0.0273265,0.259896,0.219627,0.171634,0.013324,0.690418,0.287945,0.903843,0.214335,0.772767,0.0765484,0.129282,0.109408,0.38008,0.312552,0.987761,0.841196,0.147563,0.175493,0.775541,0.467987,0.284435,0.665095,0.0323724,0.351389,0.280838,0.871827,0.707319,0.286874,0.697225,0.39284,0.455078,0.898351,0.556807,0.669748,0.633037,0.62529,0.203053,0.887843,0.386286,0.261181,0.815891,0.173285,0.405543,0.654689,0.0258072,0.756056,0.461388,0.0220314,0.179017,0.36514,0.481095,0.039506,0.719905,0.853994,0.0469679,0.450976,0.455214,0.00445724,0.505578,0.390542,0.332913,0.53583,0.311,0.317583,0.263099,0.636078,0.059579,0.656078,0.499659,0.392782,0.857313,0.404344,0.046095,0.342232,0.583402,0.331096,0.145603,0.0887536,0.354252,0.500988,0.83885,0.147903,0.452948,0.0585133,0.7426,0.0317069,0.139067,0.157695,0.594812,0.250372,0.341308,0.364471,0.808742,0.597205,0.704709,0.830429,0.730512,0.384296,0.289566,0.372366,0.335039,0.215824,0.691658,0.0358756,0.836385,0.0251167,0.617818,0.0390804,0.890997,0.640447,0.625929,0.828126,0.488902,0.732469,0.699992,0.194092,0.573105,0.989136,0.868191,0.612387,0.481054,0.991815,0.848844,0.114193,0.668403,0.363636,0.761848,0.20652,0.0828996,0.372956,0.219496,0.601143,0.913614,0.904169,0.0398632,0.875732,0.481186,0.0495711,0.911193,0.681598,0.97841,0.00922418,0.305633,0.338191,0.564005,0.479592,0.238232,0.403225,0.0281126,0.260644,0.346175,0.515408,0.526438,0.266164,0.215209,0.937384,0.332326,0.622442,0.811621,0.0396128,0.0932835,0.490513,0.745049,0.935572,0.583109,0.249016,0.735119,0.912418,0.891423,0.285477,0.361932,0.608187,0.60038,0.26609,0.290829,0.85101,0.30792,0.663915,0.390948,0.751107,0.336715,0.329254,0.854197,0.398491,0.087877,0.385916,0.628317,0.098944,0.550178,0.235027,0.685397,0.960581,0.56233,0.381658,0.147311,0.786064,0.417238,0.32908,0.876791,0.0486892,0.408373,0.00341368,0.734728,0.800363,0.730796,0.679201,0.133831,0.527652,0.0183976,0.604839,0.831463,0.773849,0.306756,0.429224,0.292948,0.724245,0.798577,0.264915,0.994737,0.0595427,0.41622,0.947746,0.565259,0.369645,0.770264,0.549247,0.439515,0.326619,0.955271,0.749444,0.446606,0.502151,0.0865355,0.0997769,0.825616,0.494401,0.475949,0.122246,0.402278,0.890157,0.064176,0.996525,0.744178,0.989541,0.580056,0.167909,0.0674993,0.829145,0.143659,0.432754,0.582678,0.714465,0.187275,0.0754752,0.0378913,0.979737,0.0149437,0.163105,0.0311069,0.204971,0.733308,0.455723,0.307344,0.8449,0.0946017,0.350661,0.391534,0.786511,0.168753,0.275986,0.540454,0.9398,0.263387,0.858264,0.935214,0.769473,0.961928,0.523182,0.377362,0.856608,0.615127,0.169862,0.684873,0.782137,0.214139,0.721236,0.604579,0.626338,0.0667501,0.881052,0.416489,0.780058,0.216503,0.0508623,0.946085,0.876068,0.0458748,0.0858442,0.74454,0.0880018,0.872769,0.606798,0.720788,0.395211,0.0692979,0.908324,0.36819,0.582919,0.289343,0.812319,0.364719,0.37467,0.2385,0.356799,0.67648,0.556143,0.373421,0.877889,0.305188,0.922901,0.0724249,0.921428,0.344891,0.310141,0.794029,0.0916007,0.112425,0.790289,0.648083,0.110549,0.297282,0.177265,0.115558,0.456053,0.850643,0.929051,0.168894,0.156361,0.737718,0.965582,0.792294,0.852539,0.851832,0.59743,0.631651,0.36139,0.166361,0.715544,0.576007,0.737662,0.617247,0.82801,0.614573,0.245199,0.634831,0.738085,0.411147,0.439302,0.580159,0.497219,0.488771,0.294773,0.854295,0.0150731,0.0520979,0.476943,0.44361,0.173158,0.871081,0.821049,0.027059,0.508257,0.657963,0.276468,0.221326,0.634365,0.281054,0.376869,0.704574,0.0997781,0.823458,0.208142,0.919275,0.230457,0.459756,0.87857,0.771105,0.840929,0.591106,0.639218,0.942943,0.410942,0.245153,0.260394,0.0718839,0.482985,0.414941,0.326077,0.282461,0.806883,0.314029,0.17283,0.166937,0.406165,0.361611,0.0189235,0.512045,0.665352,0.541142,0.147141,0.483637,0.988024,0.542112,0.0253157,0.410795,0.293449,0.388971,0.312242,0.702578,0.970641,0.668355,0.81631,0.419213,0.752159,0.75709,0.768393,0.507823,0.416996,0.751819,0.810345,0.267833,0.131901,0.255157,0.137831,0.204507,0.472565,0.554084,0.855471,0.823152,0.178037,0.466185,0.471848,0.796423,0.360121,0.419828,0.6979,0.724349,0.387943,0.27167,0.429082,0.68517,0.501113,0.200175,0.796709,0.23257,0.55913,0.74022,0.255082,0.147645,0.87304,0.122455,0.567013,0.0545072,0.577616,0.363541,0.00506014,0.458085,0.469049,0.820125,0.480607,0.0636247,0.851697,0.901026,0.994188,0.853113,0.270594,0.661659,0.501158,0.641936,0.82742,0.813749,0.625986,0.0151038,0.752195,0.52789,0.416847,0.141166,0.474968,0.902526,0.953769,0.562343,0.0936532,0.282745,0.075051,0.417997,0.199029,0.743813,0.297007,0.650377,0.119786,0.792674,0.738007,0.13923,0.272385,0.383747,0.105614,0.802603,0.307574,0.523757,0.0699943,0.322552,0.606687,0.447293,0.629471,0.270676,0.24926,0.450506,0.466632,0.510606,0.342984,0.0075509,0.0322372,0.0425575,0.318343,0.679205,0.844266,0.0365011,0.989531,0.0331002,0.769365,0.0459433,0.558933,0.280671,0.240889,0.470507,0.243603,0.747042,0.657276,0.240561,0.714292,0.939476,0.97841,0.585183,0.613012,0.206388,0.525982,0.0255876,0.549688,0.179165,0.0567877,0.782147,0.735802,0.385851,0.135366,0.854955,0.32902,0.907815,0.39337,0.511804,0.869609,0.627346,0.274258,0.79957,0.0599563,0.299308,0.14844,0.197117,0.306902,0.659603,0.412621,0.853029,0.40364,|0.649181,0.425456,0.181458,0.619105,0.698347,0.14684,0.816031,0.399474,0.733237,0.233413,0.882207,0.730623,0.708931,0.1893,0.545305,0.933462,0.678393,0.360003,0.229932,0.828656,0.580309,0.229561,0.0660929,0.124967,0.844638,0.41863,0.872748,0.86696,0.00837249,0.381829,0.965042,0.620796,0.51099,0.453811,0.203081,0.224712,0.0301049,0.437541,0.995473,0.932101,0.0117748,0.343225,0.431321,0.54423,0.384218,0.251599,0.938679,0.0187961,0.59827,0.661207,0.706632,0.17227,0.861017,0.152337,0.970317,0.649503,0.38893,0.198786,0.486443,0.760986,0.587572,0.547062,0.95235,0.143727,0.693768,0.986741,0.061431,0.748605,0.535327,0.673434,0.670413,0.429389,0.451383,0.708018,0.647421,0.720189,0.555325,0.295507,0.864234,0.291449,0.308905,0.229812,0.195325,0.0380441,0.716732,0.851708,0.868947,0.292424,0.27064,0.776709,0.699773,0.884947,0.266268,0.115611,0.484987,0.676516,0.619443,0.807132,0.725181,0.47725,0.984465,0.12942,0.752774,0.839686,0.755691,0.243465,0.0879278,0.383859,0.723883,0.126822,0.397374,0.236773,0.807847,0.325018,0.548001,0.516517,0.595052,0.209668,0.283585,0.889161,0.997946,0.995269,0.347827,0.544975,0.767257,0.192724,0.0547617,0.987976,0.394681,0.0429217,0.270146,0.216531,0.864725,0.369378,0.129425,0.816323,0.26046,0.554808,0.462232,0.203057,0.653598,0.414013,0.342733,0.428007,0.892599,0.306049,0.252612,0.823218,0.999303,0.513773,0.20162,0.307191,0.224263,0.190549,0.371335,0.340754,0.603367,0.590719,0.0023796,0.892428,0.813844,0.83968,0.62576,0.575339,0.102115,0.499497,0.609766,0.76614,0.0586478,0.817051,0.942903,0.767445,0.739876,0.0377292,0.642006,0.865439,0.501048,0.679937,0.429831,0.54321,0.420092,0.907501,0.723989,0.901122,0.0852324,0.998134,0.0120624,0.0949004,0.219038,0.108226,0.839767,0.716397,0.0336772,0.25042,0.346854,0.196594,0.926414,0.893819,0.0185844,0.859785,0.894399,0.633933,0.986926,0.653724,0.551234,0.16228,0.165359,0.290603,0.200414,0.331689,0.62493,0.753048,0.263441,0.091266,0.789534,0.56789,0.657965,0.265269,0.713993,0.0672404,0.42527,0.827363,0.120904,0.250646,0.381092,0.360734,0.390151,0.674209,0.169182,0.735786,0.771981,0.527133,0.0188318,0.0138887,0.210754,0.682955,0.0731343,0.732266,0.0816047,0.479437,0.110969,0.311945,0.288732,0.89668,0.570254,0.0708242,0.24606,0.297979,0.789628,0.339326,0.412666,0.207981,0.968594,0.0666443,0.386945,0.748765,0.952857,0.344434,0.83206,0.401489,0.169262,0.810725,0.440569,0.27712,0.287075,0.861205,0.416169,0.389342,0.627028,0.725953,0.101848,0.63001,0.0028587,0.765363,0.032037,0.00899136,0.927307,0.253699,0.792799,0.351521,0.643831,0.227157,0.113563,0.28756,0.497301,0.585222,0.693476,0.654958,0.370594,0.51102,0.13032,0.159122,0.195342,0.0652893,0.864635,0.336484,0.777817,0.883433,0.684935,0.0722201,0.288535,0.0636425,0.0285704,0.603913,0.857234,0.103759,0.174679,0.534499,0.403553,0.622108,0.696549,0.917368,0.383811,0.476905,0.767877,0.18288,0.351999,0.239681,0.991806,0.263946,0.130697,0.420543,0.567085,0.967166,0.719891,0.889268,0.164346,0.792282,0.274477,0.236312,0.792351,0.768368,0.647032,0.171614,0.142154,0.0944861,0.870185,0.85463,0.110953,0.500721,0.381797,0.94424,0.05923,0.764034,0.333989,0.686552,0.405703,0.150903,0.837636,0.670459,0.00232637,0.219602,0.784864,0.674913,0.497591,0.963516,0.352593,0.343108,0.435298,0.83862,0.877383,0.45274,0.525211,0.58185,0.490013,0.856165,0.771493,0.186165,0.555815,0.0506234,0.0846363,0.987174,0.890843,0.821936,0.610844,0.746325,0.767388,0.0528408,0.0266952,0.167393,0.453585,0.899802,0.328999,0.807754,0.580477,0.624431,0.197717,0.376454,0.449748,0.680865,0.398214,0.444128,0.438206,0.112823,0.64729,0.894819,0.700225,0.880426,0.162201,0.369736,0.913938,0.140695,0.0213861,0.0640928,0.92577,0.748165,0.275496,0.895734,0.226557,0.719021,0.755613,0.524233,0.5715,0.676548,0.212092,0.824162,0.640636,0.994411,0.930313,0.0796422,0.328507,0.757401,0.962712,0.299673,0.511864,0.270171,0.897278,0.713081,0.410806,0.260983,0.125603,0.156849,0.316874,0.752546,0.944974,0.698632,0.762241,0.418411,0.950683,0.810698,0.0333562,0.836033,0.23936,0.923169,0.527707,0.892294,0.629214,0.098095,0.0314214,0.705171,0.0957469,0.483889,0.925979,0.0838529,0.811644,0.211509,0.690343,0.552776,0.353226,0.875154,0.128163,0.227799,0.740171,0.66863,0.784607,0.0111924,0.620906,0.41938,0.468585,0.022258,0.408882,0.91641,0.985921,0.295101,0.0667387,0.258052,0.816876,0.629469,0.0921404,0.264088,0.360407,0.00933558,0.181336,0.595627,0.368261,0.0988492,0.49255,0.0223333,0.973558,0.449121,0.0999119,0.97558,0.101846,0.76341,0.743494,0.739396,0.618535,0.427364,0.948734,0.91526,0.902622,0.710096,0.413656,0.912459,0.903323,0.0615061,0.00022167,0.49655,0.813084,0.36929,0.0547783,0.907559,0.480796,0.286721,0.956169,0.266211,0.626636,0.534487,0.50292,0.693462,0.30713,0.0161999,0.728015,0.488955,0.196202,0.315201,0.628923,0.0740656,0.385909,0.52949,0.480052,0.731157,0.916279,0.514642,0.876841,0.446375,0.656126,0.600201,0.100187,0.302386,0.19847,0.105006,0.514127,0.496767,0.321854,0.452778,0.467753,0.817265,0.599032,0.985184,0.66238,0.655328,0.787075,0.745558,0.53727,0.079794,0.550789,0.598767,0.326641,0.249446,0.436144,0.32319,0.407947,0.701085,0.548774,0.0577109,0.736946,0.927971,0.313175,0.428158,0.668111,0.572319,0.365847,0.644815,0.24661,0.0640334,0.736243,0.3712,0.0645158,0.933755,0.864603,0.427302,0.329307,0.714736,0.120403,0.445098,0.841342,0.40276,0.241901,0.785601,0.315511,0.950104,0.757214,0.853351,0.0536929,0.0603521,0.369713,0.260939,0.433494,0.259518,0.0435134,0.226052,0.953026,0.680353,0.724248,0.702062,0.176278,0.449776,0.55693,0.870493,0.212839,0.118109,0.246704,0.428847,0.497644,0.765357,0.475926,0.857407,0.358363,0.979725,0.561769,0.794606,0.969731,0.0430369,0.107362,0.70236,0.863835,0.185235,0.169853,0.777708,0.787976,0.23692,0.0969141,0.712385,0.348934,0.623928,0.727745,0.958004,0.170552,0.260564,0.225511,0.964302,0.884763,0.141477,0.0274559,0.610404,0.751212,0.966747,0.612764,0.0144466,0.987882,0.90029,0.287497,0.99078,0.986249,0.218401,0.440078,0.923553,0.0975119,0.477311,0.735554,0.791012,0.09447,0.710023,0.315386,0.415733,0.0731369,0.0716245,0.189024,0.61993,0.0528638,0.175122,0.657817,0.0156264,0.756811,0.438016,0.667717,0.692342,0.111367,0.644802,0.628159,0.0728897,0.946414,0.377802,0.57738,0.922557,0.441343,0.357735,0.427989,0.0887864,0.873214,0.224336,0.00329411,0.408768,0.616078,0.426268,0.616677,0.389731,0.655642,0.71255,0.205393,0.709714,0.723068,0.950099,0.462207,0.507099,0.712138,0.273088,0.567383,0.640996,0.720048,0.234616,0.0702292,0.95163,0.510906,0.643317,0.719396,0.531768,0.585132,0.466146,0.537001,0.873554,0.911838,0.772556,0.316877,0.602103,0.890633,0.479027,0.281449,0.123045,0.562644,0.363359,0.685809,0.0456055,0.749835,0.787127,0.740861,0.302954,0.947327,0.0890099,0.472341,0.874819,0.0867031,0.567287,0.976391,0.00341523,0.116674,0.375052,0.874671,0.232235,0.132863,0.905352,0.772121,0.0687212,0.226122,0.538699,0.0225793,0.489674,0.0309169,0.469903,0.612016,0.433725,0.0764912,0.740811,0.860322,0.324613,0.352809,0.238169,0.430578,0.193907,0.524707,0.795667,0.289162,0.668137,0.086982,0.487825,0.39859,0.532526,0.757234,0.443384,0.428854,0.819632,0.425581,0.720304,0.606271,0.664964,0.281305,0.243456,0.606309,0.946243,0.152907,0.459392,0.956709,0.548428,0.756139,0.561855,0.800217,0.397108,0.0582755,0.690519,0.538831,0.264158,0.151543,0.203191,0.294206,0.566861,0.508273,0.842618,0.259513,0.797739,0.847125,0.289368,0.743863,0.568515,0.956708,0.273454,0.0188536,0.721295,0.911322,0.987954,0.639673,0.381467,0.836204,0.158983,0.753973,0.36029,0.436028,0.963935,0.525292,0.215237,0.0882171,0.805542,0.678747,0.198565,0.678202,0.747001,0.455462,0.612822,0.378272,0.780706,0.531524,0.385039,0.443496,0.245886,0.453721,0.551062,0.807053,0.600568,0.889999,0.509629,0.367257,0.760165,0.704771,0.190489,0.184294,0.130633,0.221236,0.883709,0.627367,0.335553,0.0901574,0.579555,0.0981435,0.769904,0.393722,0.655487,0.829788,0.0426008,0.337539,0.555944,0.220465,0.491058,0.533248,0.230613,0.464785,0.453994,0.529302,0.073825,0.17574,0.231562,0.803648,0.0929071,0.178388,0.282529,0.965808,0.299014,0.361203,0.628415,0.987272,0.759385,0.735367,0.0294661,0.410762,0.944205,0.519446,0.3286,0.72665,0.634519,0.279489,0.123129,0.0284012,0.213309,0.541318,0.214906,0.115929,0.592788,0.31683,0.296242,0.928251,0.45489,0.806352,0.547109,0.849486,0.0593117,0.495821,0.836955,0.265287,0.0846272,0.180766,0.730471,0.58867,0.51174,0.30615,0.320286,0.938349,0.997983,0.986017,0.111599,0.183002,0.36759,0.989672,0.249847,0.797429,0.495436,0.711602,0.507969,0.146843,0.761041,0.299315,0.0941759,0.115083,0.0623952,0.608807,0.930501,0.372756,0.905827,0.878585,0.0503358,0.770186,0.31083,0.56177,0.661715,0.865093,0.456317,0.621314,0.706865,0.667631,0.592941,0.1164,0.975139,0.735339,0.659148,0.300618,0.271161,0.871768,0.462973,0.769859,0.737393,0.596538,0.910201,0.362755,0.350141,0.258734,0.843325,0.349258,0.37696,0.3489,0.602528,0.253099,0.588122,0.151763,0.28052,0.13356,0.324936,0.591981,0.636088,0.117973,0.156375,0.127874,0.48108,0.193103,0.846595,0.270179,0.240123,0.840025,0.80074,0.354382,0.230164,0.686543,0.876258,|0.0216997,0.531259,0.679195,0.698973,0.515556,0.323188,0.341989,0.373574,0.0677025,0.341683,0.714249,0.0632404,0.876886,0.607611,0.54314,0.12402,0.971095,0.576933,0.255122,0.874448,0.986095,0.981707,0.975942,0.201579,0.116032,0.694871,0.932985,0.753829,0.261204,0.85996,0.102347,0.110561,0.622345,0.0901318,0.146274,0.872197,0.225004,0.290826,0.44021,0.528042,0.240369,0.529007,0.669135,0.0863768,0.118272,0.842855,0.252539,0.0976637,0.567298,0.454475,0.294724,0.338747,0.454172,0.670223,0.137858,0.783913,0.508271,0.484787,0.270364,0.856191,0.874142,0.848965,0.33379,0.924654,0.48057,0.165125,0.421578,0.592848,0.22947,0.319606,0.96711,0.740599,0.514734,0.93921,0.480252,0.323843,0.0744292,0.921634,0.524095,0.928607,0.721143,0.195397,0.967938,0.604196,0.203874,0.329574,0.298918,0.391283,0.0875619,0.112845,0.784668,0.220193,0.510009,0.175195,0.866372,0.391733,0.990757,0.442556,0.533196,0.304154,0.0264755,0.571501,0.556618,0.127134,0.807576,0.942874,0.917511,0.800094,0.609063,0.172334,0.0953808,0.255708,0.766171,0.153809,0.048319,0.659838,0.838262,0.0249599,0.591437,0.177839,0.741174,0.678451,0.667677,0.267204,0.273815,0.0677365,0.618259,0.761677,0.0596434,0.468749,0.301124,0.361219,0.7961,0.953137,0.968677,0.751663,0.36797,0.15463,0.36149,0.698611,0.922724,0.227335,0.864443,0.786932,0.863295,0.714925,0.454833,0.633878,0.103993,0.606733,0.392755,0.35113,0.968698,0.703709,0.783342,0.602137,0.905143,0.782043,0.204889,0.670869,0.13897,0.414573,0.139562,0.424275,0.63814,0.901974,0.344523,0.977082,0.774359,0.131886,0.0429745,0.495754,0.696645,0.985561,0.987893,0.244297,0.362945,0.558082,0.700997,0.371671,0.0458985,0.18036,0.133053,0.549461,0.873632,0.385707,0.871616,0.0448769,0.137029,0.189038,0.796514,0.581993,0.22667,0.589606,0.355597,0.634994,0.648683,0.259842,0.999582,0.791766,0.877458,0.0191572,0.719146,0.595962,0.474187,0.0583388,0.391591,0.29663,0.376589,0.813999,0.13647,0.751589,0.744721,0.328218,0.108597,0.774634,0.374515,0.877089,0.969771,0.230543,0.603581,0.492401,0.67744,0.82055,0.091369,0.51341,0.999102,0.503881,0.202307,0.729681,0.468897,0.428134,0.887718,0.874096,0.130149,0.623592,0.570117,0.133888,0.588622,0.514051,0.178221,0.232557,0.638996,0.921143,0.701326,0.441874,0.291277,0.444889,0.692796,0.803239,0.00778061,0.81317,0.498954,0.858268,0.931636,0.0346762,0.512189,0.0491918,0.315028,0.982624,0.548528,0.251981,0.854616,0.679489,0.799651,0.55583,0.793857,0.426253,0.60052,0.882127,0.831123,0.167329,0.924597,0.307769,0.245798,0.512695,0.450412,0.136272,0.452113,0.117334,0.632831,0.0537871,0.278135,0.210396,0.913155,0.0897269,0.828222,0.392713,0.163914,0.00744665,0.33795,0.939805,0.668291,0.704987,0.47443,0.800934,0.630315,0.928036,0.588044,0.536571,0.718141,0.322534,0.229097,0.193711,0.935427,0.425454,0.438294,0.561058,0.335881,0.622363,0.262053,0.217266,0.519609,0.138764,0.373577,0.295414,0.368129,0.138304,0.00968397,0.689006,0.857264,0.119759,0.139196,0.190604,0.2098,0.265768,0.339384,0.464411,0.320207,0.278668,0.0895281,0.0389254,0.319403,0.497788,0.396271,0.938758,0.486803,0.0802823,0.123401,0.896157,0.327042,0.940634,0.405391,0.485776,0.170507,0.948939,0.184478,0.644649,0.434934,0.859308,0.162455,0.143829,0.005014,0.31131,0.947761,0.867002,0.289613,0.566066,0.344022,0.213042,0.987193,0.653291,0.772327,0.204962,0.469342,0.645788,0.631403,0.68968,0.84094,0.0416034,0.931885,0.15492,0.648356,0.761531,0.835053,0.068298,0.111745,0.373676,0.185505,0.432612,0.49352,0.610998,0.941514,0.0980427,0.458277,0.496154,0.0364172,0.385856,0.698533,0.480585,0.0164146,0.339133,0.863758,0.876039,0.727531,0.223509,0.536025,0.529415,0.651728,0.887359,0.17268,0.0195646,0.0513722,0.0156445,0.914062,0.39832,0.258788,0.721493,0.49071,0.7507,0.950485,0.499053,0.683976,0.816137,0.298025,0.73008,0.849039,0.32939,0.503964,0.78467,0.821543,0.294,0.720617,0.307867,0.0270684,0.266794,0.70041,0.07103,0.176401,0.369378,0.0538533,0.732939,0.421507,0.839843,0.68394,0.432047,0.922777,0.213957,0.247175,0.218456,0.781105,0.538045,0.622901,0.942424,0.292745,0.690662,0.14914,0.943515,0.933282,0.818408,0.520425,0.502153,0.645847,0.305661,0.735685,0.956319,0.683913,0.175058,0.214618,0.00589162,0.395919,0.0998338,0.226518,0.890231,0.384272,0.461566,0.288392,0.490718,0.109168,0.126712,0.0394336,0.0915529,0.411657,0.889068,0.881932,0.599676,0.341924,0.25075,0.0903752,0.452611,0.984562,0.52491,0.110907,0.175975,0.417164,0.21094,0.227047,0.138339,0.202572,0.124609,0.0169703,0.114402,0.862168,0.316784,0.28859,0.776895,0.776028,0.107458,0.361407,0.207238,0.0880051,0.808326,0.617624,0.729351,0.592279,0.334613,0.64846,0.0159303,0.883609,0.17632,0.665854,0.235819,0.986436,0.588428,0.130612,0.922581,0.0695036,0.91245,0.297613,0.20261,0.947661,0.678408,0.0737019,0.500185,0.526272,0.43204,0.822146,0.670664,0.233787,0.302165,0.680403,0.669355,0.811584,0.40739,0.637781,0.447306,0.0434709,0.00021106,0.85591,0.376231,0.539084,0.586396,0.158074,0.546557,0.824328,0.809521,0.7224,0.288397,0.0439506,0.50448,0.556825,0.931285,0.783655,0.606495,0.945584,0.1874,0.941549,0.818341,0.396979,0.49057,0.00572085,0.740438,0.723223,0.670872,0.797215,0.184521,0.807613,0.383537,0.584479,0.0847274,0.102143,0.632839,0.842384,0.276127,0.738578,0.279388,0.701177,0.926946,0.219548,0.153453,0.490294,0.192256,0.349289,0.62952,0.370264,0.201066,0.277444,0.00576103,0.612991,0.165127,0.862782,0.323403,0.911022,0.330074,0.655839,0.226367,0.00508523,0.635922,0.122055,0.245047,0.0885518,0.263421,0.420806,0.529673,0.494961,0.90032,0.590449,0.442222,0.387206,0.481938,0.948276,0.476438,0.820691,0.109255,0.892071,0.210993,0.558168,0.496911,0.423611,0.873594,0.852884,0.655483,0.162103,0.473892,0.988995,0.149735,0.960284,0.753568,0.533745,0.902602,0.771732,0.61143,0.568199,0.922899,0.185708,0.700922,0.779027,0.295344,0.112336,0.0961556,0.794946,0.0145979,0.319977,0.503183,0.223327,0.573474,0.632767,0.382987,0.975481,0.801828,0.261277,0.350228,0.542699,0.597825,0.987794,0.221447,0.887822,0.405152,0.175948,0.923204,0.359602,0.363756,0.0262851,0.386442,0.447208,0.0958031,0.0873008,0.710098,0.355224,0.460039,0.28987,0.324992,0.0464898,0.572459,0.508496,0.0652368,0.333332,0.67458,0.769696,0.499909,0.589068,0.805248,0.933774,0.840289,0.810475,0.191604,0.295493,0.531838,0.774557,0.770814,0.120303,0.0497435,0.0219727,0.78056,0.217994,0.776853,0.640945,0.10395,0.921905,0.518908,0.308129,0.649786,0.905073,0.138129,0.965505,0.171887,0.430674,0.459416,0.0201595,0.404167,0.259932,0.500011,0.049618,0.450801,0.0898482,0.230344,0.375063,0.574532,0.313092,0.255834,0.546898,0.657589,0.916161,0.591263,0.733022,0.267169,0.0977204,0.818638,0.831483,0.982236,0.112312,0.390115,0.733819,0.70857,0.621894,0.608399,0.0631664,0.820025,0.473992,0.29437,0.113786,0.793238,0.585906,0.498843,0.164043,0.399501,0.67514,0.356772,0.272552,0.354593,0.799164,0.188171,0.503087,0.544252,0.824657,0.185409,0.00637817,0.654823,0.31414,0.55384,0.490786,0.896923,0.779626,0.0164639,0.710796,0.585984,0.586685,0.0107242,0.482386,0.888643,0.417629,0.708205,0.835741,0.579215,0.814106,0.536166,0.818953,0.753753,0.180074,0.820106,0.886551,0.76601,0.662904,0.502183,0.164604,0.652758,0.0540777,0.169648,0.395459,0.202839,0.704199,0.992211,0.0451579,0.294771,0.872214,0.943342,0.597997,0.586401,0.309592,0.927737,0.585845,0.13115,0.45848,0.017727,0.777904,0.476793,0.143886,0.547551,0.31777,0.493027,0.0964224,0.969169,0.231978,0.0351222,0.196046,0.583108,0.790462,0.205798,0.633789,0.111171,0.402099,0.365929,0.0416449,0.79754,0.906084,0.0224071,0.0916927,0.319141,0.521378,0.226725,0.0628247,0.93183,0.027057,0.629741,0.291593,0.0529686,0.549178,0.499616,0.274359,0.833523,0.395863,0.114921,0.825886,0.464869,0.274158,0.17459,0.167337,0.211762,0.998822,0.872613,0.618403,0.597239,0.366944,0.990666,0.198609,0.578155,0.369541,0.357573,0.920489,0.859215,0.169226,0.163327,0.352204,0.674884,0.255236,0.583372,0.56556,0.0240723,0.420537,0.366481,0.382232,0.838591,0.213285,0.230113,0.22446,0.10653,0.202463,0.172903,0.521533,0.840039,0.95396,0.339717,0.0912702,0.227048,0.231971,0.264869,0.846732,0.727767,0.936349,0.512129,0.195803,0.640083,0.371477,0.754651,0.383056,0.726719,0.49264,0.980133,0.356991,0.806184,0.988962,0.281675,0.500089,0.134628,0.933068,0.540981,0.880146,0.373424,0.778097,0.598039,0.753787,0.577037,0.403663,0.576518,0.448737,0.0407721,0.357497,0.264019,0.0499485,0.547397,0.487432,0.328785,0.521365,0.710617,0.59425,0.521611,0.982348,0.499222,0.906454,0.396809,0.407637,0.947539,0.0954044,0.417376,0.908506,0.7688,0.715246,0.796263,0.533097,0.528868,0.92089,0.862181,0.78718,0.716323,0.0462713,0.99058,0.234932,0.464645,0.269941,0.282538,0.856085,0.793382,0.720442,0.634605,0.459936,0.393961,0.534128,0.654835,0.804344,0.276102,0.638756,0.25234,0.311031,0.829983,0.631539,0.142886,0.577175,0.802888,0.173369,0.115651,0.77554,0.193116,0.585696,0.513559,0.495422,0.287161,0.672784,0.503786,0.294713,0.494764,0.128116,0.167464,0.766208,0.867414,0.31655,0.193652,0.657922,0.106556,0.651718,0.422735,0.384401,0.298828,0.563253,0.995551,0.549901,0.296695,0.997138,0.19744,0.830076,0.865468,|0.750144,0.0417187,0.365353,0.0356287,0.153341,0.794642,0.500327,0.419863,0.684822,0.169562,0.151441,0.672835,0.996987,0.384441,0.997203,0.129512,0.548557,0.925671,0.402292,0.77057,0.0184238,0.818031,0.971872,0.722133,0.33637,0.589297,0.186097,0.300629,0.112394,0.717714,0.225293,0.551584,0.131413,0.797426,0.466858,0.875659,0.495777,0.0935349,0.868559,0.640169,0.700127,0.420088,0.301146,0.210668,0.560423,0.347959,0.230654,0.529124,0.508151,0.355762,0.829944,0.43708,0.771973,0.0282446,0.744737,0.155793,0.1999,0.167733,0.112696,0.273026,0.269068,0.806221,0.568885,0.275262,0.215463,0.143358,0.370694,0.0736029,0.355835,0.982934,0.92136,0.187155,0.632937,0.687248,0.819828,0.414267,0.0913855,0.84084,0.0870393,0.213764,0.750501,0.903948,0.380178,0.271807,0.307531,0.00977921,0.589204,0.829454,0.914818,0.0873967,0.872298,0.687452,0.955666,0.709096,0.919811,0.982669,0.653191,0.0246877,0.392573,0.978689,0.341065,0.234831,0.805995,0.273559,0.753398,0.0911134,0.36539,0.43088,0.114151,0.243795,0.756509,0.853862,0.433729,0.338337,0.667188,0.498113,0.543059,0.490795,0.094984,0.581268,0.507764,0.895693,0.145538,0.419142,0.22999,0.477851,0.367465,0.326433,0.22333,0.161387,0.86744,0.341833,0.926311,0.674558,0.655991,0.984097,0.927369,0.882972,0.730138,0.527428,0.446951,0.344553,0.740993,0.0503879,0.704827,0.620975,0.688535,0.966453,0.362629,0.805385,0.733086,0.688585,0.901535,0.467545,0.145549,0.802079,0.721787,0.415357,0.666606,0.127746,0.261903,0.455891,0.550815,0.716702,0.5686,0.969421,0.222641,0.896762,0.133451,0.41501,0.881075,0.539916,0.65476,0.828722,0.618563,0.0641409,0.466031,0.549896,0.522827,0.0962207,0.293626,0.837132,0.157336,0.350378,0.78752,0.889625,0.857757,0.433128,0.865784,0.2826,0.976961,0.765348,0.881327,0.732415,0.194613,0.355885,0.161045,0.141799,0.49863,0.364969,0.949123,0.98583,0.0937174,0.759062,0.146872,0.331881,0.886726,0.470668,0.357127,0.676037,0.267839,0.421687,0.452745,0.180166,0.654712,0.844939,0.351806,0.724364,0.526378,0.583881,0.983715,0.807811,0.873573,0.230414,0.295611,0.465599,0.0980119,0.187493,0.458174,0.768065,0.617689,0.46017,0.0590744,0.315848,0.0273369,0.848419,0.743897,0.812806,0.705486,0.746519,0.432324,0.864849,0.622278,0.899564,0.250234,0.183085,0.340003,0.134609,0.692451,0.37992,0.295505,0.533257,0.595577,0.425761,0.0789372,0.191737,0.760299,0.0724004,0.774467,0.499961,0.422784,0.0377805,0.143431,0.939116,0.744496,0.562797,0.162204,0.24443,0.0928459,0.0347082,0.934113,0.700168,0.254544,0.368263,0.659332,0.314041,0.922711,0.497235,0.156026,0.784629,0.576106,0.821855,0.246135,0.616683,0.904658,0.517015,0.180107,0.176155,0.103751,0.408161,0.107387,0.657849,0.436141,0.0625941,0.106127,0.135657,0.0177254,0.0792575,0.867911,0.932487,0.890119,0.583659,0.635513,0.151407,0.157647,0.456916,0.0343605,0.0455809,0.138168,0.0403682,0.183246,0.947128,0.568268,0.234399,0.996423,0.403914,0.250765,0.715417,0.399904,0.0380138,0.921771,0.998578,0.140545,0.217306,0.569272,0.121704,0.282854,0.867983,0.569784,0.510708,0.690354,0.595565,0.396915,0.137917,0.499315,0.932327,0.112209,0.803982,0.0897753,0.0680164,0.0815165,0.0822966,0.945142,0.615348,0.767464,0.604929,0.467047,0.563157,0.602515,0.74321,0.957138,0.0277274,0.38143,0.843852,0.625269,0.930989,0.866293,0.903397,0.229368,0.977655,0.811746,0.324248,0.904966,0.852813,0.960795,0.37344,0.0483441,0.560671,0.681716,0.601633,0.0087238,0.108025,0.955402,0.0134155,0.371279,0.165889,0.612771,0.292484,0.85619,0.57166,0.10727,0.863546,0.00173551,0.546353,0.190291,0.712224,0.335258,0.250755,0.829761,0.399195,0.0312142,0.455555,0.0463454,0.577794,0.553413,0.120751,0.895774,0.831655,0.658837,0.946327,0.975695,0.376251,0.747487,0.378382,0.322856,0.684849,0.281673,0.00183636,0.0443473,0.918376,0.232634,0.0449319,0.224033,0.196043,0.88097,0.269842,0.891746,0.459684,0.538224,0.559322,0.31455,0.246353,0.173881,0.771199,0.70512,0.15487,0.841753,0.557796,0.299847,0.506904,0.758355,0.238229,0.745507,0.296731,0.893488,0.486462,0.472422,0.475918,0.510505,0.433223,0.933911,0.890172,0.589021,0.336346,0.408215,0.105321,0.499922,0.353259,0.53966,0.0931446,0.575707,0.594683,0.879373,0.532616,0.510278,0.853766,0.47904,0.704917,0.741566,0.426353,0.64205,0.849122,0.368437,0.204401,0.690037,0.0367814,0.762537,0.872131,0.888813,0.438276,0.239079,0.773341,0.734116,0.808539,0.876124,0.0104377,0.0780452,0.0636552,0.591107,0.872778,0.997698,0.640194,0.732816,0.583229,0.85373,0.646548,0.822631,0.777319,0.079964,0.843208,0.544697,0.561185,0.666331,0.599188,0.966095,0.814761,0.202201,0.450439,0.964086,0.172581,0.783085,0.469793,0.0512397,0.269584,0.037787,0.527511,0.67333,0.472658,0.435167,0.904881,0.205987,0.556824,0.675162,0.353081,0.978311,0.382164,0.874794,0.668408,0.432188,0.250966,0.749242,0.713708,0.443052,0.206663,0.110071,0.571995,0.550228,0.79479,0.783849,0.524068,0.715935,0.637245,0.384009,0.508698,0.631415,0.826632,0.173401,0.775682,0.0768853,0.0644634,0.275631,0.127384,0.395574,0.829396,0.242522,0.00399965,0.335793,0.49107,0.330173,0.443349,0.155626,0.101977,0.931497,0.913685,0.412681,0.951497,0.0536178,0.285646,0.136697,0.546926,0.851045,0.444445,0.999299,0.427318,0.388556,0.968021,0.336835,0.468334,0.489548,0.0380079,0.703351,0.774076,0.270379,0.907557,0.128072,0.629986,0.208056,0.710154,0.399762,0.748164,0.322038,0.0114777,0.712965,0.360764,0.158446,0.703819,0.14922,0.534253,0.894476,0.428933,0.560531,0.136677,0.298643,0.393868,0.628226,0.0473256,0.101624,0.851831,0.148182,0.887207,0.658789,0.550008,0.768058,0.403617,0.0124891,0.343015,0.307186,0.648725,0.781656,0.0559344,0.768554,0.0690061,0.803656,0.334389,0.0920225,0.69976,0.569854,0.385358,0.419148,0.7336,0.289319,0.52651,0.524036,0.00112379,0.957232,0.727762,0.0539103,0.704423,0.309676,0.216081,0.0323554,0.0738401,0.955767,0.347473,0.728286,0.292121,0.855423,0.529986,0.192513,0.24957,0.986705,0.00277954,0.0881842,0.0254236,0.326445,0.00297952,0.468373,0.753291,0.00956398,0.875305,0.53196,0.672801,0.844084,0.976025,0.636237,0.0141189,0.979208,0.886572,0.146178,0.227109,0.135215,0.765979,0.601996,0.412464,0.822103,0.0234591,0.622761,0.775763,0.250893,0.866921,0.961965,0.814117,0.422231,0.0384824,0.737812,0.749748,0.113034,0.239839,0.451023,0.559046,0.870813,0.770406,0.456876,0.0123674,0.985022,0.800407,0.208171,0.639492,0.62536,0.687624,0.320092,0.847815,0.758739,0.556471,0.406879,0.567263,0.43001,0.0135921,0.696342,0.682596,0.493213,0.533429,0.333795,0.699421,0.543266,0.653878,0.185284,0.0808287,0.0531116,0.864074,0.716815,0.924452,0.21588,0.726595,0.407938,0.437941,0.543596,0.809327,0.406455,0.498386,0.191752,0.96984,0.754954,0.354612,0.424168,0.23332,0.164889,0.479176,0.509211,0.578637,0.849493,0.239122,0.881807,0.935405,0.709545,0.188442,0.11661,0.721733,0.776873,0.904485,0.100761,0.0579111,0.820755,0.107127,0.912371,0.804511,0.993505,0.951028,0.707012,0.698765,0.946313,0.808025,0.100436,0.397113,0.941604,0.109509,0.911345,0.90315,0.0859026,0.225551,0.988312,0.164811,0.0644619,0.0396824,0.747623,0.651062,0.490942,0.126272,0.994304,0.758915,0.723489,0.622584,0.081091,0.946898,0.056972,0.426729,0.476814,0.787508,0.103875,0.122581,0.151919,0.725882,0.379399,0.353799,0.442255,0.537746,0.614074,0.0316561,0.129019,0.112695,0.557314,0.587082,0.178093,0.372483,0.111854,0.41262,0.0146382,0.342295,0.976511,0.514026,0.926239,0.0353113,0.631848,0.93527,0.993453,0.543709,0.994714,0.695448,0.826447,0.930752,0.102926,0.648312,0.528402,0.411341,0.450078,0.980279,0.154851,0.955266,0.627489,0.000602782,0.15871,0.149121,0.905697,0.247356,0.631163,0.501151,0.28903,0.815643,0.0894811,0.769201,0.34614,0.425336,0.682463,0.319152,0.763547,0.824155,0.783378,0.0391829,0.579726,0.245502,0.911521,0.982419,0.668034,0.556185,0.028801,0.73195,0.273943,0.487431,0.182016,0.479943,0.798798,0.722971,0.845239,0.346047,0.99317,0.869048,0.0646241,0.346245,0.768115,0.276068,0.933438,0.814962,0.669987,0.484888,0.512048,0.320159,0.425795,0.000995815,0.81426,0.391708,0.518956,0.424478,0.341605,0.388769,0.992183,0.211291,0.240874,0.856117,0.858575,0.735545,0.879411,0.174343,0.350409,0.201657,0.573043,0.806764,0.0253834,0.546127,0.6883,0.430666,0.5011,0.557324,0.241884,0.87511,0.96588,0.580636,0.654022,0.989461,0.209904,0.666868,0.265779,0.39335,0.447237,0.300594,0.963097,0.454119,0.457995,0.833496,0.293649,0.198499,0.0891707,0.305567,0.580489,0.0832207,0.0722879,0.320657,0.375822,0.214267,0.353859,0.802712,0.317158,0.294415,0.0126988,0.639061,0.639537,0.331338,0.372597,0.8512,0.624405,0.794868,0.833903,0.6885,0.859094,0.597844,0.100348,0.249374,0.374401,0.124705,0.40676,0.56306,0.848039,0.678549,0.0945712,0.351118,0.0172926,0.156001,0.424215,0.295838,0.208864,0.0563339,0.654952,0.831086,0.880154,0.991706,0.177592,0.237423,0.106656,0.390893,0.702113,0.533081,0.601659,0.147811,0.458363,0.743994,0.283347,0.655993,0.650157,0.641113,0.591379,0.792007,0.945091,0.205315,0.76374,0.879323,0.338802,0.625159,0.146588,0.292251,0.554265,0.87043,0.927088,0.160153,0.60441,0.858463,0.156379,0.787758,0.307266,0.432908,0.535333,0.0135781,0.795455,0.343087,0.227792,0.125808,0.589051,0.375082,0.374956,0.41163,0.582932,0.635658,|0.744328,0.216608,0.241227,0.449007,0.0171289,0.597329,0.821793,0.685141,0.194391,0.513432,0.934084,0.768921,0.953371,0.678967,0.50416,0.471569,0.72214,0.224153,0.864836,0.157634,0.701821,0.897511,0.92352,0.456853,0.885385,0.739955,0.356532,0.478114,0.18162,0.64289,0.195385,0.535191,0.0322961,0.513213,0.0852695,0.673029,0.203138,0.340005,0.449085,0.861651,0.801436,0.411616,0.600318,0.200229,0.943007,0.838507,0.635201,0.294267,0.519642,0.738372,0.176968,0.071995,0.760093,0.183168,0.892704,0.436301,0.0248361,0.293263,0.0220567,0.314475,0.982397,0.318533,0.951189,0.431229,0.62096,0.707243,0.209689,0.699248,0.783775,0.28693,0.853444,0.261689,0.80262,0.17522,0.713171,0.737415,0.65825,0.391785,0.0467619,0.282596,0.998282,0.492406,0.302543,0.945264,0.201673,0.960027,0.180225,0.652749,0.826162,0.525422,0.210816,0.751122,0.302641,0.351414,0.944086,0.049451,0.436263,0.168321,0.272309,0.626079,0.043556,0.891302,0.692206,0.477992,0.784016,0.326691,0.370679,0.0205876,0.191886,0.898683,0.592545,0.559806,0.674396,0.886846,0.711764,0.653883,0.503685,0.152074,0.439699,0.452523,0.538353,0.167625,0.175789,0.90707,0.785047,0.881446,0.362099,0.311499,0.215451,0.342724,0.934677,0.64511,0.763374,0.0502485,0.413039,0.435276,0.83016,0.188487,0.463463,0.996481,0.716756,0.581987,0.751134,0.940395,0.332942,0.979098,0.220952,0.825887,0.690087,0.204413,0.289496,0.937825,0.940104,0.258174,0.498249,0.120939,0.692519,0.455172,0.47977,0.280237,0.865798,0.998801,0.449193,0.382549,0.31105,0.593069,0.531308,0.00788683,0.900343,0.710966,0.690109,0.61272,0.0457862,0.642177,0.128804,0.843562,0.185497,0.588632,0.591393,0.795483,0.41875,0.84968,0.323251,0.959597,0.922385,0.405691,0.887556,0.151539,0.00753337,0.994978,0.147539,0.32594,0.110868,0.561219,0.183684,0.781273,0.58502,0.147989,0.591689,0.207923,0.492731,0.543883,0.0955771,0.451271,0.701864,0.460468,0.0255004,0.496465,0.707412,0.706289,0.808004,0.633799,0.504554,0.755221,0.0676611,0.395214,0.785609,0.663606,0.25134,0.295252,0.29265,0.928667,0.456524,0.196071,0.0790831,0.414937,0.931531,0.649633,0.862966,0.0563577,0.886741,0.861796,0.39002,0.110069,0.417939,0.337786,0.971099,0.87918,0.657877,0.0626733,0.361822,0.829366,0.839097,0.319911,0.41639,0.24949,0.413263,0.262043,0.288855,0.216015,0.598365,0.872903,0.0512075,0.224173,0.0750588,0.538827,0.85214,0.316932,0.0723829,0.253239,0.146112,0.993476,0.838203,0.559585,0.686371,0.239828,0.122982,0.25916,0.118706,0.262212,0.782021,0.579215,0.361384,0.156711,0.83789,0.95264,0.710997,0.584261,0.747404,0.533954,0.652668,0.0533349,0.911269,0.363685,0.930184,0.839054,0.582494,0.586091,0.553786,0.332673,0.0999082,0.738117,0.528474,0.872157,0.787905,0.907983,0.915412,0.29594,0.542023,0.0342224,0.779839,0.684033,0.772111,0.0147626,0.861728,0.658062,0.326143,0.819144,0.515756,0.0288782,0.906227,0.278512,0.639365,0.231779,0.603766,0.819072,0.0238358,0.67788,0.0547739,0.780383,0.808374,0.339909,0.375053,0.184827,0.26329,0.536344,0.722244,0.0333444,0.789882,0.0546183,0.92192,0.730357,0.849627,0.797591,0.688355,0.876293,0.681277,0.961905,0.643595,0.525655,0.174581,0.666726,0.548959,0.132317,0.573636,0.139335,0.286948,0.666105,0.595972,0.482641,0.30713,0.681781,0.5164,0.359387,0.656908,0.293132,0.569836,0.911462,0.535093,0.278544,0.684487,0.388197,0.861578,0.999522,0.223067,0.25151,0.17362,0.424519,0.335297,0.03944,0.815723,0.383551,0.663643,0.768663,0.382071,0.368372,0.678762,0.813634,0.0198548,0.673895,0.882463,0.238214,0.950296,0.814403,0.610952,0.547101,0.289959,0.160359,0.577056,0.864014,0.412302,0.0980959,0.872646,0.981128,0.790835,0.82494,0.374216,0.564556,0.060688,0.380513,0.00861031,0.0569551,0.175264,0.480289,0.111726,0.244224,0.340127,0.720918,0.456502,0.589171,0.895836,0.882619,0.0546547,0.717607,0.185459,0.497288,0.690878,0.741277,0.588051,0.604259,0.805892,0.656532,0.394297,0.356403,0.420498,0.669289,0.0959457,0.376292,0.083146,0.362767,0.463099,0.0647155,0.0166652,0.73255,0.830286,0.101136,0.830038,0.0420427,0.954014,0.0461977,0.974885,0.473446,0.212584,0.412155,0.909782,0.28703,0.724416,0.0838575,0.79324,0.0467152,0.354479,0.00146031,0.641435,0.674729,0.154144,0.936633,0.206978,0.100289,0.960884,0.474837,0.473397,0.482661,0.914108,0.641758,0.51015,0.91902,0.175101,0.996725,0.167869,0.900668,0.873202,0.590825,0.0598063,0.00100011,0.661291,0.259663,0.503462,0.283872,0.75565,0.829175,0.90355,0.852685,0.0758214,0.288067,0.551875,0.578689,0.0903861,0.507509,0.52646,0.187843,0.212492,0.0952615,0.678906,0.793268,0.73145,0.164524,0.856012,0.64554,0.13615,0.966288,0.402139,0.870486,0.503736,0.96487,0.0169414,0.196053,0.97227,0.657902,0.89314,0.413808,0.108937,0.00528449,0.418121,0.690329,0.0601493,0.342088,0.698458,0.471415,0.780761,0.196721,0.0513999,0.852466,0.914882,0.808488,0.256154,0.108083,0.899825,0.511997,0.277272,0.659898,0.039605,0.42933,0.0168012,0.276979,0.157624,0.641374,0.943518,0.0913868,0.104899,0.705821,0.0942157,0.166468,0.567658,0.916766,0.18641,0.162868,0.0195572,0.329502,0.209982,0.178168,0.574116,0.36199,0.683031,0.57866,0.263476,0.16586,0.456676,0.354858,0.092495,0.856382,0.479549,0.702879,0.966308,0.635823,0.815984,0.87344,0.954544,0.573788,0.853746,0.416311,0.419604,0.662969,0.823225,0.917667,0.963615,0.112873,0.98837,0.536399,0.668829,0.862542,0.483741,0.541581,0.426763,0.190514,0.00983149,0.528248,0.620363,0.609003,0.209408,0.514303,0.631583,0.317886,0.0797834,0.715319,0.850593,0.477342,0.670688,0.576591,0.196736,0.060975,0.0859194,0.118081,0.573268,0.45469,0.0394655,0.823426,0.434302,0.957945,0.612393,0.30233,0.388074,0.51196,0.526758,0.0144684,0.976624,0.455724,0.613448,0.448416,0.940495,0.746509,0.459523,0.441136,0.540991,0.809595,0.954619,0.0754467,0.527755,0.968949,0.270651,0.0372186,0.328975,0.646579,0.939466,0.00614411,0.27336,0.648321,0.417634,0.197175,0.10358,0.900705,0.474364,0.475894,0.114385,0.767905,0.895329,0.998803,0.199023,0.618642,0.564832,0.512894,0.471986,0.850617,0.911634,0.87664,0.366872,0.667896,0.643499,0.522454,0.483739,0.363041,0.382369,0.10477,0.425423,0.0651776,0.300804,0.207447,0.176741,0.561955,0.17312,0.0352166,0.528432,0.788286,0.103157,0.22677,0.588932,0.518785,0.971054,0.919806,0.650398,0.561356,0.465036,0.286502,0.868688,0.212309,0.542193,0.243644,0.252126,0.642938,0.17377,0.638564,0.762719,0.377079,0.846149,0.851223,0.755159,0.697913,0.283993,0.764069,0.174668,0.485614,0.328623,0.698662,0.672442,0.117019,0.691256,0.327309,0.904319,0.304921,0.155888,0.526177,0.766878,0.40224,0.135345,0.776798,0.505181,0.112087,0.148306,0.260935,0.255832,0.860745,0.275808,0.0650123,0.607059,0.733811,0.625551,0.42459,0.323976,0.518305,0.328807,0.169862,0.725802,0.735054,0.676386,0.386265,0.452832,0.483363,0.736965,0.177398,0.460942,0.614638,0.547064,0.899289,0.324059,0.385883,0.810734,0.654318,0.384614,0.434191,0.605794,0.922269,0.447568,0.527379,0.642612,0.973048,0.79214,0.672658,0.0423784,0.0717102,0.7143,0.249439,0.656598,0.350331,0.984621,0.202817,0.556046,0.904505,0.774199,0.666847,0.700057,0.141809,0.685899,0.924622,0.85929,0.461306,0.696774,0.322621,0.176615,0.441486,0.175769,0.909777,0.531226,0.42425,0.579289,0.00612664,0.940601,0.772832,0.0394936,0.0353953,0.680599,0.823696,0.11382,0.108932,0.691882,0.088289,0.482019,0.894561,0.514922,0.664336,0.601397,0.822035,0.144657,0.155024,0.851863,0.381519,0.723797,0.443853,0.785188,0.419669,0.559639,0.161868,0.352831,0.919895,0.315494,0.526514,0.742568,0.940847,0.384169,0.679373,0.247245,0.073122,0.204954,0.39674,0.0739011,0.444941,0.124316,0.908292,0.298108,0.360836,0.60796,0.84218,0.717379,0.379902,0.228173,0.567977,0.258094,0.0218337,0.156785,0.704917,0.668462,0.138524,0.255995,0.489987,0.134905,0.691598,0.291625,0.836975,0.311778,0.626683,0.00011301,0.614759,0.895345,0.175272,0.966148,0.479171,0.878154,0.566577,0.213745,0.210306,0.12102,0.484707,0.467639,0.967283,0.639725,0.773827,0.00607526,0.250464,0.452639,0.697569,0.624792,0.193486,0.677078,0.495,0.117138,0.373923,0.773163,0.552832,0.64109,0.911182,0.308947,0.030156,0.431696,0.635157,0.00375056,0.475287,0.153458,0.260124,0.506407,0.860887,0.693865,0.806312,0.431371,0.306207,0.381213,0.770434,0.883738,0.946516,0.422271,0.942305,0.833978,0.277776,0.239062,0.862492,0.965112,0.971122,0.935648,0.394451,0.633595,0.507854,0.627136,0.903101,0.159405,0.406516,0.872854,0.270288,0.410446,0.515459,0.132694,0.105522,0.894191,0.842445,0.950495,0.549949,0.936419,0.478339,0.0907531,0.283471,0.016082,0.885297,0.8575,0.29986,0.334972,0.918076,0.325519,0.540865,0.0127293,0.870503,0.216729,0.592907,0.777153,0.327095,0.0175863,0.581666,0.82626,0.650368,0.73946,0.770486,0.125111,0.864111,0.809267,0.222061,0.217175,0.933751,0.728984,0.764922,0.893457,0.781657,0.169809,0.924633,0.95293,0.382863,0.566799,0.613431,0.950111,0.754854,0.947822,0.8576,0.880303,0.520642,0.928991,0.244483,0.386215,0.0164403,0.592268,0.759955,0.208349,0.706255,0.188464,0.895815,0.955943,0.56609,0.143295,0.824391,0.455868,0.236639,0.461864,0.294049,0.440609,0.533152,0.885365,0.8589,0.770282,0.208883,0.63298,0.227202,0.0297869,0.156885,0.340864,0.948632,0.994433,0.309738,|0.524534,0.71699,0.654974,0.53578,0.353077,0.202467,0.15516,0.0322824,0.187229,0.841356,0.248416,0.696351,0.784973,0.220363,0.66196,0.898268,0.854594,0.863087,0.554663,0.501391,0.402785,0.306391,0.397791,0.430484,0.825606,0.886787,0.956553,0.115194,0.0230213,0.188536,0.728094,0.846777,0.558532,0.59604,0.656999,0.993685,0.120297,0.894996,0.51596,0.855297,0.681376,0.373789,0.0429034,0.283335,0.528169,0.931075,0.222834,0.494334,0.507166,0.574562,0.0889314,0.572866,0.818395,0.729384,0.3911,0.625925,0.0760686,0.49633,0.893251,0.781571,0.059463,0.327391,0.326783,0.422716,0.216238,0.737497,0.716397,0.454015,0.0126403,0.713665,0.851144,0.945563,0.984586,0.634575,0.962312,0.781814,0.943599,0.722329,0.0911851,0.175388,0.307478,0.769023,0.341222,0.932678,0.245471,0.125105,0.0532827,0.797496,0.491259,0.906064,0.932272,0.391223,0.74101,0.536142,0.0694868,0.737087,0.0396638,0.628814,0.741281,0.0177531,0.250801,0.241622,0.550715,0.0927318,0.0140851,0.484765,0.0679072,0.00886607,0.877517,0.822044,0.537335,0.996431,0.852069,0.166409,0.484177,0.0643018,0.11421,0.0608284,0.582732,0.831403,0.0925997,0.643194,0.97843,0.495215,0.322883,0.879819,0.954284,0.677139,0.662243,0.51123,0.437533,0.100342,0.425017,0.911997,0.699319,0.00759745,0.759188,0.0484246,0.65145,0.0916008,0.600533,0.6386,0.188975,0.84924,0.985937,0.307051,0.899515,0.323497,0.440703,0.213663,0.241284,0.773338,0.398583,0.235998,0.88217,0.748488,0.138309,0.00908577,0.235192,0.764186,0.481865,0.00966036,0.530536,0.907406,0.21673,0.227339,0.999359,0.945251,0.254592,0.502711,0.448167,0.553369,0.488498,0.644193,0.7653,0.966261,0.663265,0.227935,0.403372,0.264124,0.469358,0.644397,0.680825,0.581199,0.315011,0.152161,0.729347,0.0897136,0.0213423,0.410152,0.124453,0.0916492,0.938245,0.416597,0.764575,0.531061,0.647784,0.452112,0.856123,0.0154951,0.438569,0.806567,0.592719,0.808058,0.99781,0.678239,0.449877,0.446003,0.972369,0.815217,0.617753,0.453422,0.732464,0.983448,0.309264,0.488249,0.75063,0.360722,0.241881,0.456641,0.448227,0.48892,0.410438,0.390362,0.166865,0.846581,0.565915,0.630074,0.11801,0.665783,0.869719,0.92288,0.390461,0.541851,0.337412,0.837026,0.138203,0.685693,0.0332491,0.666262,0.927687,0.360114,0.113115,0.0251644,0.453674,0.62048,0.0421194,0.550881,0.261265,0.489308,0.360044,0.467253,0.644233,0.473646,0.869764,0.413247,0.83014,0.423291,0.282638,0.251501,0.10169,0.484168,0.797031,0.549746,0.199538,0.0155514,0.198809,0.471168,0.221774,0.260039,0.844064,0.293344,0.0373989,0.147881,0.0175858,0.769498,0.358747,0.0573997,0.0666606,0.899972,0.265474,0.544492,0.878149,0.110433,0.238033,0.36331,0.927889,0.819315,0.158159,0.22923,0.743396,0.570098,0.257184,0.17707,0.959594,0.217859,0.956456,0.318419,0.375705,0.446677,0.607843,0.0288533,0.235029,0.690305,0.508981,0.868738,0.398883,0.764632,0.169989,0.0379249,0.857838,0.485449,0.0604655,0.417716,0.358594,0.0982484,0.218662,0.700937,0.598099,0.379929,0.385074,0.216704,0.188154,0.13677,0.517809,0.177268,0.48837,0.873824,0.40838,0.728761,0.174437,0.851033,0.828116,0.255405,0.425854,0.559623,0.781212,0.546179,0.0460002,0.289874,0.17401,0.000297964,0.570193,0.706942,0.254602,0.770775,0.873913,0.15117,0.166573,0.005822,0.42393,0.263823,0.919675,0.753489,0.257216,0.299343,0.274105,0.27787,0.724569,0.379503,0.897318,0.260445,0.74474,0.938887,0.671749,0.880289,0.63705,0.683504,0.0278264,0.782054,0.985196,0.101724,0.0531093,0.462924,0.0093503,0.456078,0.927332,0.615153,0.306775,0.744365,0.451518,0.138789,0.0541787,0.290223,0.668054,0.579568,0.669129,0.267041,0.711448,0.813147,0.155906,0.277229,0.106107,0.664915,0.0265704,0.254483,0.358015,0.8413,0.631378,0.768259,0.696163,0.946563,0.414626,0.706974,0.258962,0.952133,0.0514535,0.0732651,0.908186,0.979319,0.677969,0.604273,0.783628,0.714133,0.593114,0.728179,0.948203,0.534369,0.5765,0.477902,0.03172,0.289538,0.118335,0.315295,0.260062,0.751368,0.344077,0.392967,0.971467,0.794908,0.923856,0.943043,0.376839,0.87858,0.792879,0.487012,0.832511,0.867477,0.302373,0.0948456,0.10402,0.0721647,0.812828,0.318931,0.693646,0.576355,0.136438,0.063334,0.544321,0.961326,0.174332,0.174279,0.567076,0.876501,0.107392,0.855505,0.882607,0.337559,0.922774,0.747532,0.243396,0.374254,0.655722,0.520274,0.605651,0.571566,0.937857,0.420851,0.414748,0.629352,0.686379,0.262789,0.38608,0.476971,0.820334,0.196477,0.268207,0.462104,0.00384623,0.878772,0.644977,0.981805,0.188043,0.269286,0.639809,0.388678,0.87891,0.965024,0.307818,0.876356,0.743166,0.57468,0.659835,0.239127,0.647844,0.536296,0.315786,0.983274,0.0111237,0.891124,0.841577,0.158828,0.692977,0.127227,0.636996,0.399023,0.45483,0.95167,0.206854,0.0862,0.599939,0.428019,0.903243,0.131083,0.596474,0.0696333,0.967927,0.626132,0.989787,0.870338,0.737798,0.294688,0.185386,0.704054,0.978759,0.617765,0.24101,0.414509,0.524424,0.357138,0.90454,0.770424,0.403916,0.630227,0.206559,0.915568,0.239035,0.768431,0.712747,0.546548,0.181293,0.31118,0.124234,0.923235,0.855716,0.402182,0.773547,0.351907,0.0467113,0.0397444,0.666496,0.576678,0.216752,0.20247,0.731502,0.292428,0.0716059,0.230125,0.694637,0.957789,0.928829,0.843532,0.517654,0.378763,0.256062,0.575536,0.565062,0.115307,0.472612,0.468709,0.32548,0.769379,0.13277,0.890012,0.606468,0.0684576,0.195224,0.518406,0.989033,0.436128,0.755023,0.245545,0.268135,0.949455,0.54341,0.218457,0.123345,0.448784,0.534884,0.91965,0.923317,0.910764,0.968956,0.889644,0.474791,0.678488,0.861133,0.345402,0.345215,0.299577,0.621197,0.695647,0.766713,0.375425,0.0343617,0.316439,0.83014,0.777413,0.971133,0.431594,0.748334,0.788718,0.397297,0.151041,0.978461,0.24358,0.261614,0.33765,0.33146,0.0213892,0.24194,0.213561,0.551716,0.821821,0.555614,0.791458,0.985077,0.500103,0.0527745,0.734592,0.581146,0.982196,0.709765,0.611372,0.315302,0.0653449,0.300892,0.289341,0.401864,0.231475,0.93962,0.876224,0.618249,0.776824,0.795433,0.529219,0.131778,0.455326,0.70975,0.442476,0.335496,0.46701,0.334081,0.895734,0.168732,0.0601298,0.146604,0.455483,0.595595,0.0246891,0.100897,0.563721,0.759521,0.902591,0.716564,0.965549,0.331798,0.39522,0.781531,0.845232,0.720964,0.994774,0.0174733,0.99048,0.714908,0.204408,0.549284,0.317396,0.389445,0.6589,0.0578018,0.249377,0.109438,0.303267,0.909371,0.355661,0.961652,0.664867,0.0545793,0.0923634,0.624656,0.981268,0.319198,0.976824,0.023746,0.559223,0.99696,0.715016,0.358492,0.420777,0.358848,0.635153,0.107726,0.709949,0.271006,0.25075,0.0265102,0.665922,0.660913,0.332619,0.294817,0.318396,0.387446,0.314947,0.712403,0.569782,0.299225,0.33707,0.0474112,0.311541,0.394827,0.306654,0.0568713,0.365557,0.611594,0.627014,0.0963348,0.92868,0.536852,0.551793,0.650641,0.943258,0.863809,0.464283,0.986112,0.24648,0.323095,0.706416,0.504684,0.863,0.608018,0.456437,0.610653,0.986139,0.926506,0.368915,0.0270618,0.799145,0.972042,0.593234,0.632733,0.236758,0.469184,0.490169,0.320507,0.963045,0.903031,0.624547,0.866639,0.38546,0.426124,0.0906039,0.776381,0.904058,0.650269,0.254867,0.748942,0.946798,0.291444,0.129178,0.0786062,0.401872,0.395569,0.468214,0.553283,0.0740076,0.643622,0.200634,0.113808,0.149448,0.184956,0.133257,0.470149,0.522611,0.60922,0.663154,0.371939,0.912732,0.0417297,0.17895,0.706347,0.0230539,0.325963,0.74986,0.660612,0.46741,0.970115,0.737785,0.447181,0.937267,0.0996702,0.162452,0.95887,0.668269,0.565171,0.292689,0.164144,0.730963,0.0996675,0.499501,0.6633,0.998544,0.20723,0.568057,0.428163,0.197323,0.285403,0.0742533,0.77996,0.951389,0.640608,0.294517,0.17042,0.9498,0.240004,0.92346,0.544787,0.432095,0.736677,0.476742,0.813146,0.578255,0.587193,0.631963,0.0228536,0.781679,0.295657,0.783558,0.793716,0.157785,0.954305,0.58461,0.457884,0.538873,0.639182,0.878031,0.584871,0.377421,0.643806,0.749589,0.588748,0.671341,0.204024,0.185666,0.975032,0.751018,0.227662,0.44119,0.290747,0.257519,0.872997,0.0161801,0.0174546,0.876042,0.182708,0.209076,0.629717,0.874576,0.857097,0.666459,0.41845,0.50446,0.0443087,0.668861,0.258215,0.0699787,0.218846,0.488858,0.61681,0.781675,0.218921,0.889962,0.0986078,0.796441,0.31653,0.574027,0.142994,0.319582,0.0401447,0.910943,0.868286,0.228683,0.201134,0.986248,0.472436,0.409536,0.906112,0.868956,0.459881,0.687131,0.629935,0.119636,0.759603,0.162007,0.555019,0.491808,0.762757,0.302619,0.279158,0.201596,0.0391115,0.813603,0.078384,0.646552,0.0730948,0.620245,0.275575,0.658318,0.559002,0.655551,0.536796,0.456039,0.392697,0.845957,0.298903,0.272283,0.170005,0.736936,0.545521,0.764239,0.49212,0.143349,0.400189,0.0305712,0.452924,0.615314,0.743879,0.364627,0.615609,0.787172,0.914451,0.8627,0.0764829,0.257024,0.267192,0.736687,0.112248,0.426533,0.519648,0.0120996,0.57721,0.317864,0.457883,0.00375897,0.603192,0.498904,0.30461,0.755622,0.488383,0.340389,0.942256,0.300051,0.584438,0.748147,0.662268,0.732046,0.590729,0.244607,0.597776,0.874672,0.226365,0.122533,0.372263,0.399048,0.400142,0.469292,0.504208,0.0679402,0.633071,0.944522,0.855681,0.304814,0.866497,0.292537,0.637187,0.614691,0.325256,0.860818,0.705861,0.264712,0.188225,0.242801,0.475599,0.137999,0.737481,0.666322,0.0166121,0.280255,0.723023,0.095296,|0.646065,0.414446,0.819166,0.0844937,0.0616259,0.575675,0.107571,0.743044,0.532641,0.692623,0.327168,0.751894,0.366631,0.269171,0.734816,0.167476,0.598634,0.0475136,0.030423,0.686577,0.352013,0.254835,0.628665,0.70959,0.853592,0.242135,0.70879,0.661048,0.615704,0.804237,0.547291,0.069712,0.167695,0.878998,0.299804,0.869664,0.0184878,0.823043,0.452867,0.934531,0.800251,0.285956,0.494148,0.143598,0.449833,0.496946,0.934436,0.949463,0.263158,0.73034,0.862985,0.477227,0.334995,0.694659,0.13838,0.279893,0.286109,0.4383,0.229211,0.633322,0.890792,0.291352,0.0943234,0.0992519,0.16126,0.477222,0.400749,0.709739,0.865065,0.749077,0.603,0.964671,0.563853,0.409427,0.589048,0.510242,0.830394,0.0278241,0.418169,0.119481,0.313982,0.0397304,0.809138,0.497552,0.0178298,0.982114,0.213314,0.509569,0.426466,0.885873,0.55315,0.122662,0.108602,0.9467,0.455758,0.949471,0.340084,0.19643,0.202666,0.985799,0.00258726,0.145808,0.693026,0.0795739,0.124624,0.231675,0.89894,0.434055,0.475725,0.426384,0.173389,0.427998,0.489512,0.244573,0.19369,0.481715,0.547031,0.964684,0.616052,0.952468,0.489026,0.0425611,0.905559,0.835789,0.128956,0.994605,0.479056,0.967923,0.409902,0.142061,0.930743,0.704401,0.878848,0.436679,0.603592,0.0418644,0.109636,0.37751,0.241833,0.62511,0.71159,0.189281,0.336614,0.115715,0.0736905,0.289298,0.645251,0.388988,0.892481,0.240363,0.186702,0.526513,0.75233,0.981778,0.89328,0.317574,0.430109,0.725279,0.169698,0.957009,0.163348,0.230415,0.0323952,0.46177,0.42976,0.148331,0.313914,0.228418,0.104175,0.0376427,0.588922,0.61511,0.987199,0.41209,0.0871996,0.367031,0.94271,0.124567,0.529519,0.0358301,0.32425,0.49915,0.155038,0.848485,0.873587,0.761559,0.433949,0.348752,0.533116,0.906493,0.670116,0.256258,0.0949054,0.762632,0.168164,0.309711,0.162715,0.971403,0.890619,0.0835689,0.437384,0.720807,0.282185,0.653908,0.399995,0.410832,0.288577,0.62632,0.903284,0.901365,0.211769,0.28355,0.421387,0.651117,0.863325,0.787119,0.411146,0.279364,0.390538,0.667952,0.838226,0.26183,0.675379,0.793419,0.709654,0.40184,0.735696,0.0909476,0.269432,0.270038,0.379772,0.355315,0.0515386,0.672863,0.076751,0.297428,0.501355,0.931372,0.904623,0.738431,0.265001,0.0872512,0.183412,0.0664936,0.674974,0.482551,0.678831,0.653188,0.00555122,0.368462,0.207899,0.0703502,0.753239,0.976531,0.458819,0.993902,0.864544,0.988469,0.429875,0.713418,0.660842,0.8092,0.362485,0.355744,0.932105,0.227969,0.164956,0.559591,0.503696,0.283081,0.418481,0.0024808,0.294833,0.805777,0.16721,0.891201,0.556159,0.40535,0.532451,0.0420591,0.966144,0.425153,0.493683,0.364363,0.772295,0.551335,0.98587,0.707362,0.976231,0.986419,0.699761,0.950138,0.176058,0.586136,0.585242,0.499871,0.54225,0.333488,0.173191,0.445974,0.384549,0.205199,0.154047,0.443406,0.730651,0.823216,0.273027,0.668729,0.629556,0.306733,0.0291103,0.692678,0.0644385,0.030962,0.0272542,0.560847,0.529983,0.817904,0.661229,0.466541,0.78635,0.378786,0.851028,0.0303978,0.313635,0.24019,0.679909,0.564049,0.811922,0.958931,0.846352,0.0308693,0.810469,0.295928,0.962597,0.598199,0.866995,0.295251,0.939795,0.109017,0.821819,0.348011,0.886613,0.784582,0.927113,0.651509,0.883093,0.648714,0.448585,0.527488,0.32494,0.176099,0.271054,0.907074,0.124795,0.19349,0.906614,0.648775,0.869923,0.126925,0.0127413,0.30504,0.156955,0.908454,0.649707,0.499835,0.299476,0.305871,0.14568,0.216077,0.988634,0.356174,0.302881,0.471505,0.982752,0.963992,0.803473,0.174745,0.472614,0.82373,0.831304,0.134189,0.807436,0.584805,0.350382,0.967229,0.872709,0.777768,0.294339,0.292753,0.288852,0.834947,0.951603,0.532148,0.522472,0.316539,0.374414,0.720762,0.606579,0.71289,0.347168,0.444067,0.650401,0.807166,0.70528,0.8403,0.934471,0.0120307,0.0157072,0.902375,0.605921,0.158448,0.641664,0.221705,0.989357,0.361102,0.813525,0.877128,0.747308,0.959891,0.357675,0.922472,0.691816,0.758442,0.0146439,0.385175,0.859838,0.247357,0.0827323,0.575159,0.29695,0.747884,0.0254469,0.297948,0.467778,0.974464,0.624951,0.0936574,0.521551,0.365547,0.575009,0.560969,0.17658,0.63337,0.38592,0.0485714,0.853829,0.131123,0.14625,0.129003,0.0130562,0.457859,0.995227,0.281878,0.754193,0.813567,0.875352,0.968494,0.476361,0.514035,0.571648,0.0701779,0.0433201,0.403543,0.285642,0.441769,0.426448,0.502775,0.517072,0.298958,0.132495,0.493019,0.773,0.902846,0.604996,0.420941,0.950998,0.710728,0.950318,0.00789911,0.378888,0.43211,0.904628,0.889083,0.534411,0.239006,0.424943,0.939138,0.694135,0.179526,0.179954,0.376402,0.526641,0.0474555,0.0834245,0.589355,0.473314,0.270053,0.883211,0.243135,0.98925,0.917209,0.957364,0.804269,0.589482,0.823445,0.873382,0.0297073,0.343433,0.831531,0.659242,0.542685,0.278278,0.495135,0.547956,0.13444,0.438948,0.643731,0.0551043,0.589644,0.540935,0.359051,0.94814,0.309779,0.991642,0.477145,0.6099,0.926768,0.140467,0.771191,0.66541,0.332933,0.34099,0.573327,0.02713,0.181246,0.773826,0.0148241,0.0342279,0.0925638,0.657249,0.90703,0.73169,0.180522,0.942666,0.79322,0.0108621,0.0574058,0.631169,0.455866,0.767953,0.382645,0.429124,0.268775,0.196492,0.273497,0.32693,0.44128,0.232193,0.978502,0.111697,0.171909,0.661182,0.377623,0.548538,0.402125,0.64015,0.709064,0.278357,0.737101,0.0295773,0.412142,0.0178363,0.00597787,0.138273,0.691143,0.517339,0.618574,0.674197,0.779207,0.518496,0.173644,0.632492,0.985546,0.364165,0.73293,0.688184,0.991345,0.349698,0.497032,0.213584,0.304842,0.0189278,0.786791,0.549188,0.0221055,0.934449,0.119857,0.647295,0.0131249,0.226033,0.622494,0.850967,0.406945,0.72976,0.940763,0.488344,0.120086,0.185075,0.488024,0.200686,0.284313,0.175342,0.129975,0.485206,0.86242,0.0107884,0.858884,0.877591,0.675765,0.465799,0.188858,0.537626,0.0764889,0.513045,0.743719,0.00127286,0.327043,0.460353,0.185924,0.0891016,0.829203,0.489905,0.328537,0.84831,0.261717,0.880671,0.763202,0.243767,0.342413,0.149067,0.20152,0.759791,0.279643,0.845355,0.1126,0.981504,0.846481,0.581012,0.203507,0.899605,0.714278,0.143385,0.849065,0.598768,0.159179,0.163421,0.0302772,0.778276,0.998763,0.726161,0.806453,0.762429,0.308729,0.474618,0.744106,0.978369,0.891632,0.817748,0.975848,0.223053,0.342139,0.799622,0.196622,0.780432,0.0743896,0.183802,0.775796,0.562102,0.798392,0.42235,0.328242,0.549103,0.906492,0.296211,0.417139,0.86074,0.654923,0.135351,0.14692,0.612773,0.949598,0.207492,0.893887,0.0773432,0.063764,0.466835,0.379073,0.160813,0.94395,0.612799,0.0310783,0.9279,0.0996616,0.615474,0.49658,0.069,0.305081,0.788013,0.994376,0.680298,0.99351,0.354722,0.00433689,0.966884,0.896052,0.0621368,0.069016,0.85324,0.661214,0.765978,0.574733,0.739936,0.0256845,0.707016,0.398101,0.305363,0.0944244,0.447464,0.681072,0.99452,0.720291,0.789368,0.692586,0.358019,0.861382,0.372556,0.31728,0.820875,0.217635,0.328747,0.700158,0.737049,0.207304,0.0477942,0.122646,0.932964,0.709178,0.192897,0.547728,0.163385,0.75225,0.733296,0.104886,0.706094,0.129831,0.910215,0.165192,0.383152,0.910006,0.209493,0.0641337,0.632257,0.803145,0.159097,0.785471,0.619411,0.405976,0.00657779,0.308582,0.361638,0.0869235,0.477676,0.822572,0.404906,0.905349,0.685208,0.0550323,0.67638,0.861941,0.71963,0.611366,0.309507,0.245967,0.684678,0.603252,0.877897,0.584168,0.726041,0.817345,0.276582,0.158266,0.194995,0.334507,0.938628,0.957487,0.744674,0.3628,0.600067,0.394534,0.796479,0.0725522,0.11851,0.315932,0.286551,0.918931,0.21595,0.628474,0.175089,0.305489,0.548652,0.496172,0.191776,0.470433,0.260745,0.978468,0.000175416,0.91986,0.633978,0.614914,0.0865741,0.146673,0.915804,0.65497,0.00619668,0.766338,0.711757,0.407719,0.8308,0.744607,0.730874,0.294617,0.688292,0.106363,0.466184,0.967901,0.571307,0.115079,0.791789,0.681822,0.342822,0.831023,0.85317,0.967311,0.378789,0.972222,0.205347,0.811642,0.587207,0.284189,0.632501,0.522473,0.220413,0.421375,0.106258,0.252422,0.178999,0.507069,0.170571,0.0216291,0.787574,0.646251,0.141486,0.059647,0.431544,0.934412,0.322728,0.8159,0.0660505,0.976821,0.430717,0.308731,0.505854,0.872647,0.911711,0.498662,0.0573868,0.926573,0.693138,0.16432,0.629303,0.810164,0.506265,0.325861,0.402277,0.617752,0.912892,0.761202,0.785591,0.77856,0.73849,0.516203,0.121419,0.200714,0.44726,0.816036,0.403353,0.244837,0.885958,0.178801,0.890167,0.038038,0.1397,0.81734,0.111304,0.382794,0.83026,0.993791,0.371761,0.231175,0.830727,0.929279,0.963216,0.157188,0.810702,0.0347877,0.286809,0.866773,0.482498,0.676554,0.580634,0.757088,0.920892,0.135528,0.206901,0.716553,0.636625,0.461767,0.356096,0.604511,0.521536,0.128331,0.729785,0.509458,0.0259852,0.117076,0.950902,0.626646,0.950963,0.725837,0.208013,0.848673,0.788989,0.279234,0.833687,0.906447,0.35186,0.0314103,0.713712,0.980251,0.977626,0.706172,0.0330322,0.310542,0.172904,0.0278537,0.943643,0.675988,0.872539,0.787103,0.0362275,0.214125,0.840536,0.433803,0.0694753,0.92378,0.68748,0.385427,0.986022,0.868545,0.22441,0.854512,0.982217,0.197833,0.59454,0.47622,0.996188,0.260687,0.956743,0.702087,0.395715,0.586479,0.310428,0.396495,0.0533035,0.956725,0.415968,0.548149,0.291569,0.535291,0.844803,0.508315,0.35142,0.207156,0.134977,0.364162,0.988845,0.49496,0.589764,0.355569,|0.973644,0.79553,0.599046,0.280691,0.0531839,0.797178,0.613372,0.189454,0.0843798,0.833495,0.164319,0.440311,0.922253,0.358811,0.488634,0.0678036,0.0332707,0.872949,0.0390058,0.811818,0.279202,0.640582,0.968057,0.802203,0.665442,0.649972,0.0523757,0.673026,0.138921,0.100188,0.880066,0.217172,0.707229,0.515523,0.114767,0.63368,0.231479,0.691567,0.772447,0.890918,0.164929,0.627732,0.351459,0.802631,0.883623,0.768379,0.465,0.13974,0.790048,0.872723,0.870631,0.696975,0.101184,0.770313,0.755103,0.488692,0.0183342,0.0464143,0.246003,0.867414,0.424799,0.286209,0.179669,0.843383,0.556829,0.299633,0.0204483,0.466062,0.032511,0.970776,0.170004,0.638567,0.696348,0.190355,0.370921,0.26029,0.635137,0.998098,0.160301,0.529507,0.305302,0.917073,0.729928,0.554979,0.775529,0.847991,0.741473,0.880754,0.596756,0.892444,0.72141,0.0585915,0.153669,0.647527,0.532541,0.939268,0.288412,0.612119,0.404128,0.620063,0.855255,0.54109,0.666424,0.73197,0.899328,0.760395,0.143278,0.652162,0.850015,0.697952,0.633037,0.37111,0.893093,0.317817,0.40523,0.784932,0.953866,0.491355,0.981175,0.597292,0.323489,0.327645,0.144864,0.438261,0.810944,0.129909,0.496863,0.54255,0.464852,0.491396,0.236129,0.0207266,0.622341,0.538037,0.511016,0.775296,0.0217226,0.344631,0.376275,0.641338,0.0783893,0.671829,0.366001,0.967092,0.277091,0.995983,0.454742,0.908853,0.0263975,0.968661,0.547672,0.163152,0.814412,0.407604,0.669292,0.551739,0.52623,0.102287,0.0205286,0.399313,0.618799,0.83235,0.273685,0.21422,0.417065,0.551926,0.541138,0.491419,0.403017,0.882377,0.152973,0.6885,0.647514,0.965572,0.675574,0.358259,0.165997,0.447409,0.134762,0.178746,0.792995,0.875718,0.638794,0.446935,0.0999552,0.682362,0.200493,0.899148,0.972348,0.521507,0.929293,0.229861,0.935393,0.573701,0.851122,0.456565,0.932304,0.878119,0.889394,0.478539,0.209447,0.651862,0.171532,0.305619,0.501956,0.183147,0.0801674,0.723364,0.890791,0.784717,0.125847,0.899544,0.376052,0.213342,0.498284,0.842724,0.828656,0.638599,0.119782,0.8575,0.292979,0.0439323,0.406776,0.796618,0.00990897,0.107503,0.221126,0.53928,0.170139,0.870566,0.758062,0.293061,0.734239,0.61049,0.441364,0.077766,0.108336,0.565156,0.408841,0.0989628,0.0341068,0.0129735,0.808864,0.681272,0.0329591,0.609544,0.825081,0.382613,0.500188,0.918925,0.730252,0.642218,0.0804017,0.280993,0.859861,0.757611,0.443562,0.0307752,0.456339,0.319989,0.51927,0.802974,0.538593,0.723446,0.841855,0.788818,0.896076,0.965906,0.382694,0.141787,0.390488,0.293864,0.735906,0.739522,0.709914,0.793611,0.345279,0.890456,0.703502,0.890871,0.99649,0.420763,0.204622,0.124238,0.976457,0.262599,0.0468359,0.793735,0.0685499,0.382455,0.0919781,0.451914,0.185091,0.0246317,0.0956461,0.295089,0.0908868,0.548937,0.462868,0.322495,0.399373,0.815267,0.0242956,0.259425,0.989238,0.703554,0.606082,0.38016,0.0815904,0.321895,0.361198,0.754866,0.367321,0.0949135,0.0769386,0.44443,0.128892,0.936179,0.483837,0.97092,0.577248,0.226577,0.744812,0.570713,0.670255,0.290181,0.832325,0.0191222,0.363557,0.717012,0.983475,0.648148,0.48254,0.636645,0.759467,0.0517427,0.976896,0.310625,0.573969,0.83777,0.00735599,0.0157566,0.165858,0.939828,0.153975,0.815714,0.474399,0.182109,0.164798,0.69578,0.702674,0.553698,0.0700406,0.78166,0.969819,0.547054,0.213779,0.466339,0.903038,0.253767,0.722863,0.155139,0.377934,0.320759,0.0414652,0.424685,0.764078,0.776768,0.948712,0.171861,0.593101,0.663223,0.956425,0.189943,0.428594,0.7709,0.262764,0.395507,0.138346,0.0281452,0.454999,0.486382,0.393893,0.0987513,0.123639,0.161235,0.796637,0.573131,0.329296,0.680905,0.00532514,0.370775,0.557404,0.155776,0.74556,0.75158,0.642008,0.361662,0.709466,0.170656,0.221228,0.603005,0.36046,0.659941,0.144867,0.00711149,0.166213,0.324595,0.372333,0.0874475,0.155773,0.182927,0.35244,0.0584461,0.695,0.10231,0.31887,0.878995,0.836519,0.883335,0.128797,0.693434,0.480261,0.241899,0.913616,0.361862,0.742605,0.310604,0.363443,0.535257,0.893626,0.254951,0.205698,0.63192,0.0370753,0.289783,0.940032,0.0699064,0.236212,0.343123,0.270138,0.482795,0.602093,0.91032,0.751989,0.383884,0.521932,0.12168,0.75109,0.596287,0.667737,0.121535,0.0496885,0.305062,0.65662,0.135394,0.456004,0.688284,0.980616,0.399617,0.478195,0.894389,0.220904,0.226359,0.858409,0.14782,0.906692,0.553269,0.0803387,0.228279,0.779041,0.240445,0.423485,0.628023,0.793358,0.0825751,0.143886,0.220057,0.736263,0.988351,0.055652,0.854037,0.820161,0.266182,0.851581,0.858922,0.100389,0.147197,0.501094,0.181894,0.458452,0.241959,0.534717,0.0554186,0.526298,0.63002,0.926716,0.157075,0.814809,0.653405,0.77316,0.648819,0.96705,0.486289,0.83262,0.734223,0.590475,0.651681,0.708239,0.393481,0.933692,0.503849,0.769298,0.375653,0.987793,0.735766,0.162498,0.46921,0.599754,0.511431,0.635884,0.969188,0.865754,0.00570393,0.134104,0.283798,0.414599,0.796541,0.236255,0.0480254,0.640768,0.367652,0.393792,0.690573,0.936625,0.0148973,0.611577,0.661244,0.810298,0.164662,0.144518,0.11536,0.487716,0.0622634,0.428267,0.947279,0.822989,0.952587,0.635397,0.288308,0.944623,0.315557,0.353203,0.558735,0.607139,0.58955,0.479656,0.711438,0.884737,0.985854,0.50625,0.145577,0.925821,0.72859,0.587906,0.475856,0.0455346,0.393475,0.901819,0.967111,0.760647,0.905007,0.736117,0.606954,0.790954,0.506865,0.774989,0.405812,0.718666,0.476753,0.379983,0.015251,0.379614,0.788212,0.107583,0.168064,0.364443,0.667785,0.355441,0.139692,0.926393,0.275137,0.0308251,0.466287,0.28841,0.773088,0.531302,0.86776,0.0788614,0.309734,0.00805068,0.673181,0.30824,0.410911,0.790818,0.394099,0.789948,0.621995,0.856249,0.816019,0.593721,0.178592,0.367561,0.597657,0.974993,0.504158,0.907681,0.0690309,0.0146581,0.845836,0.931785,0.305925,0.229034,0.544735,0.766791,0.677395,0.0997836,0.20084,0.38583,0.212476,0.720673,0.420374,0.380164,0.52063,0.309429,0.909726,0.562428,0.131611,0.85959,0.873046,0.69897,0.754542,0.847106,0.219953,0.852364,0.472788,0.173209,0.895812,0.878175,0.0685602,0.671316,0.347984,0.98076,0.107872,0.966693,0.505523,0.664245,0.716228,0.673734,0.637431,0.0238112,0.406434,0.644381,0.89696,0.244385,0.765674,0.844191,0.863347,0.944064,0.0954184,0.901246,0.00715655,0.69716,0.717215,0.716695,0.537676,0.506904,0.188846,0.0360347,0.785277,0.610062,0.11097,0.543684,0.666331,0.45483,0.328295,0.184311,0.856861,0.159554,0.503601,0.457608,0.00974739,0.566089,0.0829933,0.0920394,0.484534,0.671954,0.61543,0.276494,0.745634,0.7613,0.601159,0.294881,0.338298,0.0537087,0.519685,0.590317,0.173385,0.628279,0.228263,0.576818,0.334224,0.391347,0.58389,0.26229,0.152586,0.583557,0.502764,0.0529761,0.332303,0.166495,0.0128947,0.49658,0.976244,0.60012,0.921355,0.988689,0.6495,0.976854,0.000317514,0.598036,0.99213,0.91801,0.86605,0.40799,0.694161,0.0388869,0.647695,0.0980762,0.806374,0.485332,0.8503,0.739594,0.85701,0.171402,0.111022,0.545866,0.552457,0.728413,0.134777,0.879086,0.35065,0.721915,0.51209,0.647179,0.503048,0.299681,0.709757,0.207874,0.790022,0.231327,0.0883759,0.315112,0.0326167,0.405954,0.107713,0.883764,0.743961,0.188067,0.551907,0.827463,0.687858,0.340545,0.531888,0.286398,0.130009,0.134977,0.326782,0.699293,0.121429,0.649233,0.921238,0.592615,0.845437,0.900982,0.534595,0.386941,0.239549,0.237359,0.796024,0.0494513,0.615199,0.816445,0.660576,0.755919,0.598104,0.884152,0.865321,0.103619,0.359832,0.166078,0.435701,0.247897,0.777234,0.318799,0.120688,0.140093,0.843888,0.84394,0.0565825,0.385896,0.34406,0.374199,0.415664,0.0428966,0.107794,0.655103,0.679389,0.728295,0.875649,0.763804,0.0834716,0.730433,0.180985,0.00708878,0.0763711,0.430141,0.173273,0.917649,0.170492,0.867254,0.285591,0.563196,0.638226,0.277016,0.21114,0.0146729,0.804237,0.611726,0.472315,0.164553,0.256473,0.519851,0.922381,0.0773129,0.955139,0.979166,0.256554,0.412888,0.696035,0.369351,0.206982,0.625117,0.899629,0.577235,0.0377494,0.272189,0.176307,0.126825,0.0115353,0.211537,0.78016,0.642547,0.634612,0.69909,0.229619,0.807741,0.558918,0.991065,0.362357,0.455256,0.466731,0.430872,0.517856,0.387521,0.0523669,0.765072,0.599957,0.900183,0.403237,0.423146,0.962301,0.889059,0.435935,0.258484,0.685465,0.832946,0.824131,0.526237,0.266416,0.83117,0.79178,0.23247,0.806781,0.103968,0.169382,0.520558,0.0692333,0.370351,0.63795,0.356069,0.0591089,0.916709,0.194173,0.430195,0.478435,0.897346,0.0910783,0.953682,0.0742388,0.404112,0.195293,0.430901,0.726867,0.20676,0.365156,0.538861,0.824185,0.411439,0.667487,0.657288,0.33586,0.957991,0.680574,0.548356,0.863319,0.351033,0.802668,0.164481,0.945735,0.242954,0.100217,0.767665,0.608684,0.19276,0.78244,0.90533,0.0466489,0.114861,0.712804,0.965526,0.766686,0.0563914,0.990568,0.384521,0.142854,0.21497,0.625821,0.575439,0.10636,0.585201,0.440902,0.36609,0.0515682,0.161022,0.567973,0.497971,0.501504,0.214002,0.826635,0.350421,0.00986767,0.0727478,0.692891,0.9457,0.667218,0.301106,0.849139,0.022373,0.833314,0.716078,0.511568,0.686583,0.345568,0.313342,0.45437,0.875706,0.108416,0.873114,0.746746,0.247798,0.107147,0.045655,0.712767,0.303903,0.214474,0.855576,0.223913,0.0325145,0.916806,0.419103,0.51776,0.34049,0.206358,0.72666,0.186028,0.337026,0.812218,0.641661,0.390876,|0.234525,0.239783,0.296195,0.751724,0.640051,0.598651,0.49808,0.402067,0.674482,0.917264,0.28634,0.351104,0.311961,0.89684,0.20238,0.238506,0.973259,0.646389,0.581,0.821028,0.593784,0.604337,0.41442,0.955337,0.638457,0.238467,0.936481,0.741927,0.51432,0.935242,0.719339,0.176445,0.891191,0.703521,0.708985,0.0759913,0.362626,0.749811,0.118528,0.130619,0.636073,0.697594,0.840591,0.0425338,0.788691,0.496924,0.833951,0.107864,0.925989,0.159253,0.435651,0.32681,0.285939,0.0119821,0.9214,0.927244,0.317466,0.769939,0.32403,0.638745,0.671649,0.176326,0.672161,0.746989,0.326452,0.468412,0.385884,0.652659,0.890654,0.866605,0.674881,0.51796,0.878564,0.224793,0.647716,0.786099,0.481245,0.0111799,0.420389,0.172,0.379898,0.670967,0.00486034,0.22312,0.876331,0.264399,0.0146304,0.925046,0.613507,0.226015,0.0610454,0.0270931,0.494151,0.84505,0.214256,0.232649,0.361684,0.150637,0.222025,0.860611,0.172087,0.899509,0.793557,0.376655,0.650966,0.796752,0.0548031,0.602702,0.910291,0.629409,0.300878,0.796863,0.531324,0.917313,0.858134,0.41538,0.143372,0.440623,0.00125426,0.993496,0.994173,0.315124,0.859905,0.735634,0.259737,0.853148,0.994662,0.355306,0.892263,0.0967453,0.098352,0.491451,0.569091,0.675439,0.0155809,0.696004,0.937471,0.458922,0.523772,0.300633,0.973083,0.150646,0.482117,0.978438,0.447002,0.101157,0.465856,0.385075,0.591352,0.283348,0.915855,0.072212,0.187285,0.506109,0.506799,0.209099,0.723585,0.718432,0.17609,0.314485,0.617718,0.53682,0.653085,0.18916,0.59815,0.870954,0.7425,0.694256,0.611835,0.105034,0.900559,0.547134,0.309253,0.388216,0.936887,0.169066,0.847131,0.735371,0.990937,0.35984,0.195278,0.797264,0.730303,0.205204,0.616157,0.142752,0.973868,0.141505,0.0895311,0.833672,0.529469,0.544462,0.870553,0.257748,0.118728,0.266523,0.391632,0.239909,0.808535,0.600412,0.0633529,0.865352,0.496625,0.201101,0.303039,0.239496,0.734134,0.299586,0.758857,0.191212,0.143117,0.0106615,0.992526,0.101942,0.311066,0.880098,0.0409506,0.21586,0.0180841,0.766209,0.938228,0.0679224,0.121692,0.460709,0.176637,0.399005,0.993538,0.347975,0.801268,0.895373,0.209615,0.832309,0.0494843,0.581762,0.507549,0.543854,0.958611,0.651032,0.87987,0.575887,0.117066,0.243417,0.620314,0.460367,0.837871,0.673417,0.379228,0.283281,0.260203,0.64805,0.409855,0.709096,0.153555,0.610818,0.610965,0.350196,0.232096,0.904744,0.982044,0.122152,0.417536,0.311746,0.977336,0.772569,0.879007,0.398769,0.274718,0.0515128,0.771665,0.380062,0.830611,0.769571,0.830691,0.334429,0.0185201,0.331875,0.679534,0.661715,0.539911,0.322238,0.381391,0.654696,0.0112486,0.68016,0.545762,0.218054,0.456697,0.491436,0.987074,0.56829,0.0368628,0.255309,0.633819,0.581381,0.303791,0.930797,0.580383,0.704051,0.497708,0.6306,0.265611,0.093805,0.725753,0.716688,0.520001,0.5046,0.460223,0.521983,0.693325,0.276144,0.871458,0.0299761,0.635705,0.966806,0.824445,0.0419143,0.283211,0.133612,0.425513,0.409377,0.370387,0.0614225,0.497784,0.682832,0.245489,0.753833,0.20361,0.000914693,0.5109,0.0155017,0.973579,0.367144,0.835613,0.586145,0.35261,0.796515,0.16659,0.129843,0.528874,0.0517962,0.378038,0.794123,0.899185,0.528532,0.488359,0.31991,0.549784,0.938815,0.315479,0.455593,0.117569,0.0206221,0.264205,0.675696,0.896357,0.666853,0.859418,0.139205,0.597727,0.879733,0.554917,0.755492,0.473584,0.723407,0.499075,0.965144,0.256725,0.790707,0.388194,0.394121,0.097088,0.848888,0.548896,0.769857,0.190929,0.0901349,0.289325,0.383967,0.830444,0.530139,0.434836,0.444043,0.0794692,0.291831,0.613391,0.51181,0.801488,0.194059,0.621338,0.292892,0.214996,0.863509,0.242954,0.300758,0.362623,0.352389,0.280866,0.602038,0.921966,0.803424,0.18729,0.622659,0.101379,0.437634,0.267179,0.263639,0.125952,0.0397705,0.101926,0.356486,0.444116,0.772151,0.881593,0.293419,0.8919,0.0968777,0.995651,0.545663,0.319608,0.387712,0.677952,0.398907,0.690627,0.146875,0.723966,0.580237,0.238613,0.943653,0.660086,0.869735,0.734204,0.686855,0.21389,0.390747,0.914478,0.96757,0.698391,0.914769,0.0463606,0.0146758,0.0197632,0.617943,0.685655,0.443167,0.464033,0.938558,0.544934,0.650152,0.187702,0.730365,0.180857,0.07941,0.940021,0.667974,0.0124173,0.0999624,0.199672,0.00723648,0.231234,0.15987,0.511564,0.674329,0.315249,0.167068,0.880288,0.952281,0.953908,0.464398,0.603528,0.206148,0.360632,0.941576,0.843142,0.732448,0.196485,0.388358,0.897363,0.184604,0.4162,0.649276,0.620656,0.312854,0.464529,0.726942,0.770141,0.475775,0.235881,0.200774,0.192988,0.75924,0.436562,0.756404,0.439389,0.923845,0.238964,0.549612,0.822176,0.844312,0.774256,0.880121,0.267294,0.493536,0.773677,0.448635,0.991832,0.529514,0.921365,0.776388,0.849215,0.693514,0.837684,0.0989251,0.162287,0.368618,0.990718,0.488792,0.0142574,0.26363,0.523747,0.85765,0.827345,0.203369,0.0184374,0.127489,0.630982,0.909002,0.400582,0.652431,0.745338,0.382408,0.236678,0.232407,0.406746,0.110779,0.558027,0.562929,0.987262,0.515739,0.985829,0.567245,0.695364,0.233393,0.197969,0.254492,0.07895,0.687195,0.247028,0.314982,0.180592,0.464974,0.880592,0.161053,0.09119,0.719755,0.878184,0.934248,0.0675259,0.946155,0.999292,0.623474,0.0571652,0.933334,0.563577,0.93754,0.0282173,0.401997,0.142891,0.310707,0.984677,0.520139,0.757336,0.557577,0.334513,0.335502,0.0824714,0.843713,0.374436,0.410812,0.840801,0.530107,0.354334,0.105377,0.246917,0.170426,0.895102,0.976943,0.424968,0.579538,0.533656,0.977734,0.279802,0.219272,0.499156,0.638908,0.936263,0.368799,0.883045,0.40648,0.136374,0.336874,0.583076,0.172671,0.662673,0.557371,0.702978,0.121749,0.823318,0.770117,0.0490626,0.254316,0.615913,0.871909,0.864343,0.81175,0.4441,0.0147808,0.962368,0.764562,0.530364,0.494792,0.0653446,0.359124,0.478471,0.954794,0.431071,0.623731,0.267937,0.55603,0.505994,0.846472,0.576247,0.655298,0.704194,0.640174,0.584191,0.730524,0.711648,0.625615,0.956752,0.155665,0.0374535,0.639887,0.680861,0.768665,0.0635133,0.883946,0.972625,0.0207982,0.0710295,0.822839,0.0923919,0.0194269,0.409835,0.325515,0.725014,0.495848,0.693459,0.900684,0.564953,0.311262,0.0339646,0.485128,0.768691,0.486102,0.58092,0.973717,0.535147,0.93169,0.391883,0.292908,0.283551,0.120086,0.469456,0.454893,0.0697539,0.991026,0.382523,0.549155,0.689445,0.213876,0.4148,0.730005,0.455906,0.722916,0.0217986,0.314107,0.254068,0.729814,0.848903,0.830422,0.420228,0.746179,0.148626,0.483796,0.876907,0.375226,0.189916,0.758789,0.415391,0.00107753,0.292065,0.471322,0.352787,0.976542,0.858308,0.927036,0.248622,0.538427,0.0999449,0.319702,0.597528,0.717276,0.202268,0.514012,0.299965,0.452976,0.555139,0.726272,0.53815,0.598064,0.232641,0.229937,0.405663,0.465824,0.496442,0.467785,0.157738,0.955867,0.0946959,0.315408,0.691842,0.691754,0.808016,0.465552,0.592897,0.152484,0.333811,0.807536,0.858121,0.938441,0.111667,0.51,0.100837,0.383013,0.654847,0.55759,0.0823359,0.152553,0.433141,0.767159,0.528208,0.397076,0.289011,0.687331,0.225473,0.341021,0.0191232,0.0379053,0.989388,0.428216,0.0937726,0.0222842,0.713104,0.682855,0.439057,0.618251,0.912123,0.0544882,0.454236,0.105332,0.464166,0.860297,0.489073,0.607457,0.0633239,0.783432,0.40952,0.549127,0.868217,0.278122,0.325126,0.412481,0.514562,0.731509,0.776803,0.951605,0.472387,0.0742545,0.44351,0.936845,0.748562,0.794152,0.789745,0.671222,0.19596,0.476415,0.616406,0.689523,0.388515,0.0582051,0.961197,0.150455,0.390824,0.93516,0.502417,0.32809,0.626677,0.455245,0.898075,0.818224,0.441497,0.532368,0.697566,0.0114673,0.270187,0.649469,0.514884,0.774428,0.558398,0.55332,0.509416,0.74763,0.975915,0.892817,0.0330285,0.182511,0.685363,0.345955,0.720119,0.978807,0.649751,0.803152,0.709444,0.835974,0.700253,0.311451,0.779376,0.82373,0.344719,0.567467,0.15036,0.823477,0.98387,0.44423,0.350444,0.558274,0.257442,0.510195,0.455004,0.793912,0.0313412,0.106123,0.640747,0.425527,0.556846,0.831321,0.930974,0.932649,0.812071,0.322455,0.355229,0.628565,0.835679,0.109346,0.582093,0.311236,0.98569,0.915144,0.537345,0.443132,0.586077,0.304976,0.858503,0.210031,0.497179,0.511071,0.455672,0.890926,0.0142574,0.891193,0.146755,0.689632,0.717747,0.806658,0.239872,0.472483,0.411726,0.0691547,0.0418721,0.476648,0.0822578,0.480224,0.288365,0.87062,0.847464,0.936456,0.234882,0.668138,0.650665,0.876731,0.589643,0.724712,0.307919,0.827638,0.690062,0.635393,0.248758,0.815402,0.758748,0.107992,0.684816,0.869294,0.765425,0.645271,0.0563316,0.469893,0.62577,0.509077,0.848971,0.953616,0.602217,0.421294,0.0683649,0.870269,0.80988,0.829221,0.0678829,0.128032,0.818494,0.825488,0.248501,0.396991,0.148832,0.181714,0.879411,0.368494,0.749073,0.366607,0.0537631,0.223711,0.977379,0.214693,0.422073,0.168838,0.556383,0.343584,0.352609,0.935117,0.379619,0.304089,0.35956,0.114756,0.96362,0.511608,0.396624,0.301534,0.562499,0.0338767,0.594017,0.0271968,0.709317,0.574035,0.942643,0.142954,0.441546,0.82935,0.724847,0.909933,0.624849,0.862151,0.519333,0.845195,0.769199,0.318589,0.309354,0.571164,0.399056,0.750633,0.587491,0.441154,0.732248,0.669984,0.113357,0.94339,0.552278,0.584912,0.171499,0.32704,0.419751,0.475611,0.684438,0.739061,0.0598269,0.434183,0.474623,0.229229,0.161719,0.648737,0.628199,0.572737,|0.767425,0.236418,0.508679,0.769787,0.0683424,0.149883,0.855737,0.890365,0.452267,0.169116,0.00979108,0.223232,0.749122,0.882512,0.245367,0.813691,0.0281489,0.80507,0.0504901,0.454348,0.693311,0.684999,0.480768,0.737051,0.399687,0.939021,0.717752,0.387965,0.159598,0.699725,0.84235,0.334136,0.481408,0.501111,0.39265,0.959293,0.32143,0.812567,0.875801,0.698687,0.446354,0.551385,0.101374,0.466068,0.98357,0.163704,0.203965,0.918321,0.806729,0.75836,0.0798199,0.679543,0.539874,0.188902,0.0827658,0.587254,0.548705,0.619867,0.801582,0.544299,0.872269,0.90511,0.943583,0.268651,0.850643,0.0214725,0.330925,0.400025,0.446623,0.545927,0.267866,0.501041,0.897189,0.843202,0.782971,0.297109,0.826778,0.103549,0.329301,0.54669,0.739305,0.358033,0.648187,0.563939,0.903277,0.0298848,0.114506,0.11167,0.573893,0.6228,0.857636,0.588951,0.266457,0.495369,0.91968,0.68804,0.915409,0.843699,0.410424,0.328045,0.237465,0.0398241,0.615318,0.153204,0.886297,0.257196,0.303715,0.584958,0.753423,0.468423,0.0279314,0.413508,0.279044,0.968857,0.106257,0.885902,0.37102,0.566838,0.975182,0.681363,0.137186,0.71721,0.0878908,0.13138,0.373242,0.214815,0.0233662,0.780957,0.135157,0.567548,0.759693,0.184894,0.483588,0.914051,0.708898,0.84283,0.0714526,0.33253,0.827602,0.451982,0.949546,0.187303,0.435575,0.620236,0.105978,0.816817,0.92882,0.649218,0.77106,0.257923,0.504835,0.530407,0.957792,0.0621787,0.141838,0.840939,0.375712,0.806621,0.967868,0.793024,0.361589,0.208668,0.196705,0.93849,0.929961,0.952041,0.674328,0.676663,0.0862583,0.769212,0.467932,0.201994,0.658883,0.0961831,0.0916372,0.436888,0.166344,0.488643,0.248912,0.442715,0.767677,0.0710532,0.384856,0.973941,0.410998,0.0470684,0.90486,0.795575,0.194821,0.739995,0.179053,0.888292,0.470446,0.837598,0.487105,0.071785,0.867234,0.77818,0.455988,0.913705,0.445747,0.634809,0.557684,0.0832112,0.584441,0.550511,0.745836,0.652558,0.637018,0.927022,0.149893,0.334225,0.644056,0.943866,0.229851,0.463548,0.165218,0.226062,0.525951,0.21119,0.0454845,0.0334919,0.2764,0.391694,0.387956,0.146163,0.705278,0.883749,0.021246,0.146041,0.145039,0.453843,0.584626,0.437036,0.414285,0.776289,0.452441,0.762244,0.0598977,0.44581,0.100896,0.610832,0.935849,0.18869,0.461773,0.0917851,0.944524,0.55422,0.966202,0.424698,0.887135,0.405052,0.982905,0.937665,0.0132951,0.643739,0.430199,0.778167,0.0647085,0.929738,0.654346,0.789771,0.431995,0.166404,0.637708,0.0184755,0.280823,0.31366,0.0421165,0.0940238,0.749431,0.242645,0.828465,0.807595,0.648929,0.660085,0.797692,0.581025,0.447721,0.906713,0.730723,0.429555,0.317437,0.686824,0.370442,0.229167,0.671886,0.111503,0.067234,0.844981,0.599499,0.306281,0.407339,0.290425,0.867529,0.481475,0.748817,0.771078,0.252307,0.873301,0.641928,0.361816,0.180322,0.823773,0.769423,0.420371,0.0325065,0.955104,0.146548,0.0750834,0.718386,0.180854,0.594417,0.393483,0.118028,0.158067,0.662475,0.81777,0.252605,0.685045,0.594103,0.0281961,0.3234,0.54296,0.178033,0.654802,0.311511,0.47735,0.0667304,0.398129,0.219307,0.428443,0.199714,0.122488,0.328556,0.558288,0.353987,0.00806135,0.356203,0.869276,0.37675,0.872475,0.524513,0.200407,0.793811,0.644064,0.957769,0.257408,0.243719,0.773076,0.69061,0.931439,0.696385,0.642366,0.834061,0.731082,0.994407,0.123686,0.705171,0.235236,0.706042,0.278629,0.741498,0.548008,0.681818,0.814851,0.199808,0.515341,0.660601,0.899602,0.863847,0.29039,0.738696,0.534163,0.710477,0.0298473,0.84715,0.108816,0.205335,0.97336,0.582067,0.173362,0.645255,0.092173,0.127122,0.933534,0.588975,0.841242,0.034831,0.220417,0.569534,0.140552,0.915322,0.448082,0.167554,0.462222,0.117131,0.0895501,0.887794,0.19804,0.584884,0.202805,0.681652,0.991594,0.54355,0.987484,0.0363049,0.558342,0.46202,0.972163,0.601605,0.522358,0.844228,0.0946575,0.690138,0.926881,0.286822,0.855045,0.707408,0.29164,0.63382,0.0270513,0.68789,0.489656,0.537896,0.248938,0.861808,0.248375,0.724511,0.005988,0.33927,0.930318,0.254205,0.840986,0.622459,0.867059,0.565449,0.41419,0.621636,0.152958,0.0148472,0.295724,0.152447,0.577602,0.755317,0.152373,0.408437,0.660793,0.234032,0.780681,0.663005,0.63424,0.4674,0.956667,0.526111,0.586202,0.76021,0.661369,0.775569,0.124332,0.516652,0.150858,0.698025,0.676934,0.885987,0.255332,0.485038,0.348994,0.815879,0.999699,0.631583,0.494688,0.225863,0.5651,0.911686,0.176882,0.584176,0.95827,0.800526,0.861479,0.855628,0.826562,0.172025,0.258789,0.0484176,0.973825,0.229423,0.146078,0.406862,0.45567,0.187999,0.897427,0.283868,0.0188724,0.799726,0.14438,0.822504,0.691313,0.934941,0.294102,0.696793,0.516962,0.179608,0.880686,0.271233,0.385952,0.649045,0.817761,0.473551,0.328157,0.851536,0.50553,0.181153,0.909614,0.513248,0.998944,0.505119,0.548288,0.785081,0.203717,0.173066,0.830108,0.627045,0.0398644,0.182909,0.055935,0.391225,0.471987,0.965141,0.198822,0.109952,0.950451,0.730141,0.314903,0.0237496,0.840797,0.664221,0.885193,0.218934,0.107514,0.0261227,0.962432,0.0415698,0.22681,0.2682,0.960809,0.637468,0.148257,0.467822,0.652455,0.155481,0.34316,0.580314,0.592932,0.516868,0.671266,0.407481,0.594094,0.535392,0.273459,0.141818,0.458934,0.846904,0.139862,0.75455,0.724793,0.567779,0.693334,0.520219,0.76617,0.296283,0.40397,0.148982,0.381097,0.262633,0.0977709,0.175525,0.42178,0.267586,0.303214,0.221867,0.407605,0.11894,0.875859,0.587918,0.696852,0.884111,0.58718,0.249803,0.380737,0.20459,0.682747,0.217512,0.493229,0.765844,0.219315,0.137138,0.0996828,0.155403,0.407519,0.281654,0.850712,0.0257309,0.736883,0.823225,0.491211,0.638367,0.934075,0.993058,0.314627,0.455617,0.673127,0.486581,0.578013,0.447547,0.659188,0.679224,0.854665,0.561888,0.588646,0.167632,0.403554,0.13028,0.409067,0.932502,0.71622,0.570043,0.820005,0.648842,0.0667965,0.897659,0.359665,0.384132,0.69368,0.802802,0.390439,0.495565,0.9202,0.163886,0.775624,0.329255,0.15856,0.111215,0.981535,0.140622,0.0247766,0.587147,0.987737,0.659877,0.283678,0.247313,0.997674,0.328399,0.08097,0.0839563,0.723742,0.262858,0.810907,0.850872,0.919802,0.19365,0.346476,0.152134,0.150036,0.907238,0.993078,0.717687,0.80232,0.478372,0.723598,0.737547,0.774778,0.0952677,0.329211,0.211616,0.48381,0.110135,0.514525,0.639579,0.780158,0.565502,0.414351,0.831788,0.187358,0.641421,0.742684,0.336733,0.909119,0.653515,0.0836082,0.10597,0.923383,0.760852,0.261374,0.266602,0.811746,0.795834,0.131277,0.506564,0.930175,0.186649,0.295633,0.185955,0.252447,0.935738,0.0980395,0.89955,0.295394,0.864592,0.36316,0.597396,0.0138032,0.826212,0.7227,0.588234,0.141897,0.25186,0.07999,0.804266,0.700167,0.498836,0.439306,0.503581,0.840818,0.556363,0.328641,0.418027,0.600362,0.141717,0.463069,0.836,0.60906,0.97849,0.495495,0.500074,0.97227,0.0916618,0.899666,0.438589,0.952349,0.285837,0.636143,0.572772,0.989675,0.0867022,0.34067,0.0986949,0.331515,0.558609,0.530764,0.430691,0.793336,0.69184,0.0246913,0.949245,0.029543,0.496361,0.849751,0.99578,0.462533,0.75435,0.549974,0.220705,0.59055,0.549245,0.528751,0.624967,0.741546,0.473286,0.188784,0.593106,0.26409,0.292013,0.887689,0.255167,0.121928,0.237396,0.625519,0.329199,0.675757,0.240264,0.19239,0.548252,0.453893,0.528341,0.898675,0.363521,0.0984407,0.0209901,0.547133,0.763631,0.238573,0.835133,0.638173,0.489294,0.0306664,0.288078,0.873659,0.543845,0.707743,0.953981,0.044574,0.831635,0.87015,0.419843,0.977376,0.887414,0.797982,0.912355,0.346951,0.412072,0.574754,0.222016,0.184273,0.426346,0.862774,0.744402,0.218547,0.505209,0.184229,0.329597,0.678991,0.77998,0.042496,0.653071,0.964489,0.0447199,0.597852,0.725469,0.426612,0.445191,0.0702587,0.00442439,0.694091,0.771493,0.938414,0.524463,0.711058,0.365058,0.162545,0.71278,0.542652,0.756449,0.935288,0.592981,0.164865,0.771494,0.59176,0.490521,0.95932,0.523628,0.251299,0.667697,0.0617195,0.105351,0.691455,0.291599,0.115916,0.218175,0.667398,0.0362867,0.293782,0.0910235,0.73901,0.477685,0.274223,0.822853,0.415245,0.728307,0.214411,0.556697,0.802036,0.883916,0.733707,0.812568,0.322079,0.0532653,0.399546,0.060267,0.301033,0.938816,0.874922,0.820417,0.693586,0.84447,0.400182,0.276016,0.221294,0.670201,0.391897,0.225764,0.426461,0.349126,0.741892,0.363999,0.630652,0.304503,0.0166573,0.299971,0.653465,0.917637,0.494118,0.221174,0.27975,0.711787,0.40477,0.599194,0.186275,0.777311,0.980375,0.997198,0.469148,0.835632,0.104193,0.783813,0.480685,0.0901387,0.645851,0.383552,0.776871,0.463743,0.00586838,0.362903,0.479099,0.809594,0.685992,0.865538,0.830737,0.324494,0.839655,0.753985,0.837049,0.849191,0.229567,0.45461,0.176799,0.137609,0.811066,0.00765014,0.531834,0.779022,0.830567,0.615298,0.053774,0.768144,0.886958,0.620434,0.226362,0.934765,0.629778,0.976858,0.22367,0.959557,0.0397091,0.920539,0.421175,0.195673,0.317326,0.260369,0.396137,0.00476676,0.673537,0.584433,0.14652,0.845939,0.00477946,0.984729,0.646938,0.160158,0.487089,0.890419,0.447872,0.23271,0.62408,0.9675,0.736547,0.418506,0.905393,0.209616,0.200034,0.0556696,0.400879,0.967042,0.376651,0.351906,0.891366,0.81462,0.661316,0.554285,0.178824,0.281898,0.43279,0.497146,0.120624,0.0181109,0.252237,0.529211,0.492598,0.528837,0.0918286,|0.877553,0.0762874,0.576652,0.417936,0.710538,0.0376083,0.72807,0.980231,0.9113,0.845111,0.464408,0.986498,0.596974,0.000835955,0.256854,0.288313,0.60426,0.91871,0.407363,0.387684,0.194725,0.565804,0.941316,0.926395,0.786368,0.941515,0.2256,0.0380557,0.447317,0.370396,0.903587,0.262144,0.270959,0.430791,0.424231,0.821618,0.96879,0.785024,0.984156,0.542046,0.556194,0.902301,0.916981,0.118291,0.267564,0.612426,0.113582,0.560584,0.383897,0.828879,0.249878,0.388458,0.0234516,0.490836,0.592088,0.873749,0.648655,0.966412,0.807282,0.0365549,0.163474,0.613964,0.833347,0.532187,0.840897,0.110588,0.609157,0.278248,0.1853,0.984893,0.572522,0.5555,0.244956,0.723407,0.0519531,0.849192,0.346519,0.509412,0.00759906,0.780203,0.392839,0.846895,0.501326,0.429851,0.921297,0.865493,0.205702,0.00714344,0.566114,0.246972,0.598754,0.906429,0.684566,0.274581,0.530818,0.941396,0.834911,0.254707,0.337405,0.1654,0.154011,0.112349,0.198303,0.244368,0.220104,0.40004,0.222709,0.274662,0.169168,0.558055,0.447156,0.437095,0.950316,0.688255,0.861014,0.65221,0.556611,0.118421,0.105433,0.133039,0.33965,0.726012,0.547709,0.0551542,0.886595,0.716553,0.921158,0.116944,0.539229,0.715606,0.279891,0.821158,0.454563,0.501821,0.694589,0.881328,0.411953,0.112729,0.366259,0.474444,0.39571,0.278736,0.622537,0.655053,0.540177,0.834054,0.966716,0.4737,0.616408,0.346624,0.460534,0.865485,0.447811,0.935005,0.71287,0.550478,0.439665,0.432787,0.217552,0.807058,0.284126,0.613719,0.458704,0.114977,0.111217,0.512617,0.320318,0.922748,0.21816,0.0711633,0.980005,0.380726,0.415264,0.552206,0.0418353,0.353558,0.262465,0.494148,0.164229,0.167648,0.958273,0.237262,0.30265,0.355741,0.394493,0.770884,0.124714,0.319411,0.901488,0.496738,0.594623,0.0682374,0.388675,0.121607,0.495241,0.557166,0.0883905,0.342207,0.113462,0.647783,0.557148,0.955321,0.791442,0.232697,0.466771,0.913325,0.939506,0.812802,0.705732,0.674282,0.0251812,0.177975,0.445088,0.81524,0.595239,0.144393,0.495333,0.300281,0.970163,0.144309,0.332969,0.585045,0.0807828,0.203703,0.234433,0.597565,0.899874,0.545576,0.882667,0.227478,0.598895,0.517433,0.221515,0.793892,0.716044,0.135358,0.825747,0.0829881,0.812338,0.690851,0.957793,0.929984,0.354569,0.712635,0.176604,0.565906,0.777807,0.392062,0.955972,0.127246,0.993352,0.688368,0.529899,0.442576,0.974152,0.98692,0.628677,0.0640717,0.0912436,0.576633,0.828045,0.546334,0.0353349,0.180001,0.924873,0.704928,0.797319,0.137824,0.84004,0.828765,0.562815,0.6933,0.549312,0.424093,0.739609,0.925244,0.787292,0.566517,0.474012,0.929624,0.565159,0.939419,0.129632,0.203125,0.119399,0.770515,0.405044,0.0759992,0.715011,0.755256,0.068129,0.0859889,0.742014,0.173462,0.633775,0.901145,0.135763,0.948728,0.818583,0.310377,0.765395,0.669713,0.273934,0.678599,0.548911,0.71203,0.488008,0.416259,0.124666,0.582886,0.80651,0.927233,0.0286765,0.319689,0.752988,0.980839,0.211821,0.256966,0.378245,0.249785,0.767647,0.561592,0.918394,0.314512,0.748072,0.894573,0.829889,0.0990005,0.836966,0.713299,0.049249,0.534432,0.53266,0.91131,0.257493,0.810793,0.918845,0.787634,0.74929,0.785658,0.728857,0.716901,0.694068,0.910472,0.300378,0.315445,0.223443,0.664166,0.113944,0.442378,0.989059,0.492923,0.756715,0.303621,0.451474,0.564174,0.840065,0.685389,0.676499,0.0486958,0.233175,0.64929,0.596245,0.711119,0.377833,0.618411,0.566041,0.841426,0.406838,0.496929,0.978259,0.183613,0.0904388,0.617607,0.292406,0.68511,0.627111,0.159408,0.911814,0.906178,0.96377,0.210131,0.352552,0.95287,0.0781332,0.0271509,0.706583,0.654454,0.499216,0.572098,0.755652,0.828656,0.740798,0.00339192,0.6012,0.387246,0.48972,0.595606,0.881936,0.584179,0.0647588,0.0536774,0.435734,0.279388,0.242986,0.314222,0.728007,0.829741,0.190196,0.489145,0.117129,0.95328,0.904237,0.206697,0.544001,0.270091,0.999774,0.971685,0.0142604,0.270606,0.269948,0.264795,0.249277,0.706761,0.00206852,0.515987,0.872625,0.0562423,0.414783,0.168839,0.0116494,0.200685,0.714169,0.895767,0.262227,0.420672,0.272806,0.580314,0.746909,0.811607,0.343566,0.244073,0.873807,0.28901,0.1466,0.493284,0.56433,0.289867,0.0300987,0.22428,0.986874,0.883167,0.206404,0.748148,0.795352,0.332849,0.849283,0.391377,0.488623,0.224247,0.833592,0.243321,0.85429,0.867605,0.0754984,0.755173,0.779206,0.320879,0.835195,0.480507,0.47997,0.836023,0.229476,0.242913,0.230669,0.809641,0.444066,0.266792,0.775524,0.140988,0.170931,0.477647,0.856383,0.731699,0.183621,0.673458,0.179495,0.298519,0.969954,0.644997,0.0705704,0.233707,0.740582,0.31325,0.0319164,0.363291,0.139424,0.206678,0.707823,0.235793,0.236066,0.0437022,0.0969917,0.928825,0.784908,0.85199,0.0570174,0.994574,0.869531,0.176755,0.465358,0.0194297,0.652644,0.184459,0.322242,0.410825,0.299898,0.328207,0.168748,0.527857,0.0946901,0.249892,0.380492,0.28779,0.775257,0.654762,0.274591,0.0310432,0.738392,0.627367,0.252521,0.81302,0.0697699,0.569617,0.26085,0.243534,0.24832,0.829249,0.683109,0.263684,0.023503,0.136331,0.439831,0.138229,0.178464,0.839579,0.469736,0.253465,0.953951,0.849359,0.0828068,0.0265775,0.8705,0.255923,0.92989,0.986861,0.257507,0.58991,0.121423,0.901015,0.524592,0.28394,0.778191,0.00336891,0.8015,0.385257,0.312787,0.83399,0.0706823,0.803524,0.690365,0.0111531,0.465249,0.388938,0.0702224,0.304809,0.923647,0.0927448,0.234078,0.873595,0.522896,0.515798,0.458821,0.137944,0.396822,0.404688,0.186303,0.644727,0.920115,0.938873,0.407881,0.888483,0.63558,0.827666,0.343345,0.706195,0.576599,0.327524,0.860504,0.840944,0.968705,0.154152,0.276441,0.0482187,0.625789,0.42251,0.773056,0.420263,0.548533,0.224434,0.97535,0.923197,0.992907,0.108196,0.754262,0.838408,0.392291,0.399037,0.60183,0.763625,0.266132,0.706585,0.924253,0.326134,0.941305,0.72083,0.217656,0.346755,0.328648,0.763778,0.482262,0.753477,0.876792,0.0577379,0.200371,0.428483,0.969368,0.990592,0.306738,0.959831,0.393632,0.888748,0.0485654,0.954703,0.699399,0.632703,0.54107,0.781974,0.785759,0.290891,0.902447,0.481238,0.876929,0.127278,0.0462198,0.914058,0.897336,0.549652,0.334026,0.912579,0.359552,0.939556,0.0131525,0.931058,0.608409,0.971879,0.462478,0.622229,0.714485,0.771773,0.365186,0.0706279,0.358235,0.136199,0.870898,0.487493,0.455889,0.308355,0.378351,0.51531,0.847019,0.180051,0.98507,0.660865,0.216764,0.624862,0.796517,0.0228468,0.254147,0.630303,0.524005,0.26275,0.586369,0.861114,0.795716,0.366646,0.746324,0.00261587,0.928798,0.824347,0.171958,0.336162,0.473727,0.635024,0.179694,0.338409,0.0576303,0.696649,0.840965,0.304727,0.911237,0.468171,0.167483,0.620646,0.414842,0.927661,0.503483,0.929075,0.475781,0.751284,0.206788,0.103163,0.448428,0.637165,0.958433,0.304128,0.312464,0.910847,0.0170229,0.841271,0.325801,0.478604,0.200188,0.685269,0.587315,0.617298,0.865862,0.125759,0.114411,0.0670965,0.186808,0.651357,0.0853513,0.23941,0.606115,0.533099,0.649042,0.0917331,0.403181,0.603424,0.602561,0.394541,0.125849,0.0720058,0.0943956,0.0804811,0.830085,0.478297,0.472191,0.579249,0.493827,0.828202,0.752394,0.524962,0.24937,0.582406,0.449528,0.224241,0.0612696,0.979235,0.484428,0.594829,0.393044,0.452148,0.746623,0.773106,0.810831,0.148444,0.120572,0.0203076,0.724426,0.596149,0.174609,0.0281306,0.779694,0.12577,0.51357,0.525835,0.685117,0.506893,0.0904442,0.575804,0.881936,0.364579,0.411482,0.837128,0.385401,0.903164,0.0709495,0.726992,0.384879,0.788238,0.282253,0.601579,0.589164,0.578047,0.445598,0.0353062,0.0991713,0.971031,0.400413,0.449052,0.185181,0.437276,0.656014,0.698204,0.818518,0.35757,0.934522,0.334364,0.753561,0.233272,0.0500613,0.623952,0.0548034,0.591378,0.245928,0.638534,0.321374,0.629042,0.266295,0.281026,0.74152,0.241867,0.954083,0.546514,0.916249,0.663121,0.692387,0.930754,0.17377,0.522173,0.10419,0.906827,0.220683,0.382929,0.0321013,0.695606,0.644243,0.343105,0.644769,0.712444,0.834372,0.529552,0.456438,0.0374255,0.756969,0.955758,0.4168,0.293272,0.900241,0.287143,0.741196,0.887419,0.0966299,0.457133,0.671908,0.523936,0.526731,0.0804957,0.891214,0.913292,0.315291,0.00336307,0.624106,0.42625,0.130346,0.449091,0.074817,0.559811,0.0693253,0.252903,0.859899,0.890762,0.525592,0.967529,0.236032,0.32815,0.667223,0.616843,0.902987,0.186909,0.50355,0.683704,0.722786,0.19612,0.60397,0.215501,0.783086,0.268519,0.1671,0.448895,0.803156,0.292165,0.610927,0.27351,0.676742,0.508045,0.816936,0.45278,0.641193,0.528033,0.058727,0.238064,0.101536,0.295485,0.791862,0.985203,0.456446,0.113364,0.429237,0.582978,0.320519,0.812025,0.773297,0.843818,0.941898,0.110828,0.957595,0.0853012,0.423472,0.58516,0.50035,0.536321,0.412715,0.938833,0.143577,0.853728,0.668642,0.424002,0.611889,0.3981,0.00753391,0.23065,0.689415,0.0904088,0.518278,0.837034,0.612497,0.727509,0.596943,0.755202,0.346415,0.445104,0.36251,0.485987,0.296419,0.141491,0.014273,0.987422,0.588283,0.404407,0.343633,0.503874,0.116793,0.249338,0.770495,0.362196,0.0298808,0.187538,0.492565,0.45789,0.218077,0.163075,0.999128,0.452226,0.788014,0.233184,0.049235,0.612279,0.812925,0.483496,0.711981,0.0582772,0.264752,0.17309,0.0853195,0.131755,0.830893,0.722923,0.238333,0.713961,0.586778,0.991818,0.59569,0.459872,0.0833762,0.0791609,0.459264,0.474998,|0.488188,0.239212,0.565979,0.433232,0.744928,0.452655,0.103536,0.0877748,0.0986869,0.425687,0.370247,0.450396,0.379916,0.628145,0.0835589,0.639718,0.495785,0.0879552,0.626986,0.323225,0.246356,0.549444,0.210045,0.911014,0.600364,0.477742,0.0146686,0.175239,0.154529,0.167293,0.836133,0.0386864,0.2785,0.726839,0.286691,0.374705,0.0441359,0.0209659,0.444873,0.0192308,0.665595,0.574554,0.70294,0.0242106,0.324355,0.978222,0.371048,0.530372,0.341295,0.45775,0.829574,0.247669,0.880573,0.829471,0.449803,0.332666,0.954477,0.768202,0.308354,0.94987,0.75842,0.741437,0.524818,0.345184,0.252709,0.322297,0.296362,0.717302,0.384536,0.618202,0.807697,0.289544,0.680552,0.649729,0.249203,0.1996,0.867605,0.459281,0.414224,0.533973,0.936453,0.881885,0.640533,0.694236,0.938357,0.783505,0.61781,0.664154,0.467627,0.183059,0.863379,0.775818,0.958429,0.756484,0.166724,0.841122,0.161391,0.336413,0.259796,0.650159,0.0928523,0.494582,0.100525,0.077893,0.0448453,0.526139,0.23,0.406052,0.497299,0.772461,0.587435,0.163856,0.8359,0.964213,0.254612,0.439818,0.775423,0.475121,0.275082,0.00933468,0.838184,0.297791,0.19317,0.336126,0.666811,0.329483,0.509302,0.572051,0.705772,0.684548,0.989151,0.635,0.570897,0.032244,0.46099,0.0656812,0.690545,0.106975,0.377835,0.327493,0.432643,0.693742,0.669501,0.0412779,0.290464,0.641059,0.987566,0.194392,0.546489,0.272129,0.62901,0.229848,0.53437,0.926953,0.164042,0.971996,0.869836,0.9912,0.981852,0.598257,0.721961,0.364912,0.709661,0.337934,0.0363209,0.804095,0.300833,0.55012,0.733297,0.895151,0.230694,0.618712,0.446632,0.694529,0.692938,0.455287,0.598414,0.102764,0.967913,0.204683,0.126371,0.556559,0.16929,0.0241995,0.142792,0.871352,0.327065,0.492207,0.756588,0.66373,0.721805,0.69805,0.741883,0.29154,0.628695,0.608963,0.947506,0.871827,0.817424,0.74715,0.0169366,0.185239,0.8108,0.124814,0.28767,0.47468,0.272532,0.227506,0.577719,0.950359,0.859587,0.0488464,0.563935,0.0150228,0.467407,0.967912,0.410978,0.771419,0.958635,0.149004,0.473449,0.907914,0.544193,0.635372,0.542033,0.389567,0.778298,0.901658,0.170469,0.875217,0.654427,0.816785,0.468097,0.362738,0.664629,0.0330569,0.478966,0.827068,0.104211,0.421442,0.733229,0.150412,0.330007,0.819681,0.864923,0.177826,0.281727,0.630468,0.31452,0.684727,0.0406321,0.00902861,0.817804,0.514424,0.238949,0.220668,0.714781,0.978228,0.769849,0.510931,0.679066,0.555096,0.142534,0.51997,0.564699,0.105106,0.875426,0.182454,0.512251,0.865037,0.20415,0.617673,0.821527,0.826634,0.887677,0.688465,0.262031,0.606078,0.479775,0.436056,0.724634,0.312386,0.634832,0.866746,0.587843,0.860097,0.0980788,0.241823,0.314844,0.612454,0.712108,0.591965,0.636122,0.952165,0.130235,0.795441,0.475694,0.56354,0.623406,0.750506,0.422655,0.668061,0.573065,0.047498,0.488215,0.543686,0.175604,0.897021,0.376534,0.936139,0.190425,0.529811,0.674626,0.993636,0.722171,0.724364,0.943261,0.737875,0.977017,0.881958,0.253344,0.571211,0.113192,0.425894,0.0259279,0.595337,0.0592638,0.905348,0.502678,0.747335,0.57617,0.959761,0.396114,0.810567,0.982421,0.166256,0.559865,0.0486247,0.331208,0.496715,0.479633,0.708956,0.390388,0.437833,0.758522,0.961475,0.168258,0.335622,0.976908,0.836603,0.661247,0.712065,0.755991,0.487042,0.911339,0.900274,0.740013,0.777318,0.858697,0.660516,0.157026,0.202593,0.931053,0.115631,0.216905,0.482742,0.601647,0.387372,0.665504,0.0428125,0.0680596,0.848455,0.997434,0.0934614,0.061473,0.563435,0.788217,0.401605,0.160002,0.371511,0.409034,0.626581,0.254542,0.943219,0.356319,0.187771,0.633125,0.419217,0.907873,0.403134,0.201455,0.698005,0.993894,0.782198,0.220713,0.678676,0.519697,0.277177,0.144641,0.706748,0.372573,0.979955,0.255682,0.864787,0.957706,0.671031,0.129285,0.349528,0.0210783,0.549655,0.54266,0.8967,0.153765,0.950735,0.843537,0.611488,0.893291,0.081858,0.992151,0.302554,0.789715,0.964022,0.754221,0.574489,0.412009,0.482288,0.524744,0.509706,0.331841,0.616737,0.0771082,0.638875,0.71341,0.0637039,0.90171,0.0471417,0.926926,0.446593,0.0222844,0.0974599,0.167544,0.923218,0.249871,0.534377,0.203284,0.130451,0.711084,0.156569,0.507607,0.13557,0.864424,0.125538,0.878291,0.945246,0.614966,0.268472,0.30288,0.168223,0.413362,0.960473,0.299872,0.429606,0.274616,0.782886,0.477498,0.45414,0.878862,0.595131,0.628274,0.140352,0.502158,0.143073,0.207929,0.865934,0.841369,0.714213,0.391383,0.0590096,0.240387,0.016168,0.257217,0.912442,0.505189,0.692414,0.595795,0.192478,0.664925,0.450116,0.481057,0.544773,0.215255,0.383932,0.399463,0.868527,0.320691,0.442416,0.0740804,0.331289,0.428189,0.20586,0.757892,0.236081,0.150512,0.975729,0.918221,0.133375,0.787678,0.512273,0.443498,0.65838,0.252152,0.687991,0.0874359,0.942699,0.265933,0.902024,0.766471,0.597026,0.6725,0.738669,0.121321,0.928523,0.691695,0.682142,0.715188,0.8332,0.835993,0.899799,0.719411,0.764979,0.0928326,0.129409,0.898734,0.202392,0.200377,0.732313,0.368506,0.412732,0.0807198,0.524491,0.000838697,0.583765,0.723216,0.401867,0.451392,0.0335745,0.81449,0.605456,0.523709,0.78343,0.763275,0.259892,0.536094,0.290927,0.778644,0.086386,0.233178,0.774664,0.160131,0.882948,0.698937,0.3265,0.300889,0.730746,0.872173,0.432622,0.230987,0.726192,0.209893,0.980915,0.369723,0.480661,0.482102,0.33066,0.933836,0.36126,0.159428,0.440313,0.93436,0.297662,0.536443,0.365106,0.479504,0.471768,0.216123,0.529097,0.395243,0.648052,0.547996,0.913085,0.168988,0.152253,0.295299,0.658397,0.190076,0.0361522,0.390759,0.259327,0.701884,0.108136,0.530044,0.731147,0.272023,0.421905,0.795975,0.62797,0.495247,0.160631,0.221146,0.117864,0.109283,0.979651,0.107335,0.972277,0.0355901,0.298684,0.54277,0.189253,0.833233,0.73984,0.842364,0.509148,0.589971,0.013256,0.217916,0.607817,0.98236,0.899176,0.788987,0.70516,0.151257,0.783466,0.567661,0.857284,0.124624,0.310087,0.099784,0.377943,0.442453,0.300615,0.861448,0.629573,0.487997,0.526325,0.597754,0.381637,0.230047,0.657202,0.371323,0.827874,0.365959,0.632322,0.554843,0.415461,0.494959,0.178405,0.200302,0.173444,0.393518,0.196629,0.106808,0.808096,0.221946,0.47629,0.994867,0.452263,0.339645,0.99562,0.896319,0.193417,0.978029,0.825868,0.613526,0.722987,0.142111,0.381452,0.228252,0.309887,0.22082,0.202856,0.0135682,0.925213,0.568639,0.0893631,0.611441,0.899328,0.692838,0.149236,0.510242,0.49082,0.942466,0.791688,0.41509,0.951829,0.904983,0.20608,0.491737,0.304111,0.0513514,0.739117,0.67249,0.182082,0.13574,0.587492,0.660308,0.212,0.625543,0.826575,0.236313,0.213515,0.481061,0.999441,0.19883,0.934683,0.279787,0.475736,0.0484763,0.0127499,0.0964754,0.752533,0.0758469,0.20106,0.234837,0.899784,0.956255,0.646241,0.990396,0.102524,0.517016,0.254595,0.576174,0.44464,0.602063,0.0494838,0.617866,0.847994,0.599912,0.503683,0.389147,0.658339,0.823778,0.371519,0.918559,0.807963,0.583059,0.212889,0.742647,0.919,0.608159,0.77206,0.808302,0.396365,0.0745566,0.07201,0.10262,0.520365,0.785827,0.27384,0.850627,0.667319,0.224653,0.49227,0.804723,0.876432,0.426657,0.940602,0.428139,0.578605,0.709968,0.644985,0.381528,0.361153,0.325747,0.431538,0.0751245,0.818061,0.659282,0.411314,0.0552626,0.238011,0.492831,0.0316698,0.0137051,0.778716,0.0632897,0.419742,0.660368,0.343654,0.48933,0.100484,0.794768,0.493234,0.605239,0.490438,0.733803,0.264019,0.721001,0.865473,0.869462,0.325865,0.160199,0.0137312,0.667579,0.298495,0.630815,0.587406,0.873367,0.620734,0.80866,0.871154,0.462754,0.337465,0.730289,0.688119,0.632378,0.419945,0.271378,0.830489,0.843186,0.528797,0.181223,0.619805,0.345314,0.164254,0.531236,0.507712,0.772151,0.86582,0.946787,0.943304,0.840536,0.101413,0.501489,0.861287,0.917303,0.108452,0.152141,0.401279,0.310497,0.992842,0.339253,0.644563,0.434026,0.540099,0.825543,0.26957,0.503499,0.544351,0.901369,0.112923,0.661493,0.111831,0.0837476,0.750078,0.307568,0.833371,0.936117,0.91573,0.438677,0.258124,0.847373,0.906925,0.576877,0.826155,0.797913,0.767054,0.245586,0.873847,0.205804,0.684392,0.992917,0.827376,0.219534,0.75126,0.24959,0.190752,0.757293,0.00831085,0.728849,0.0468512,0.402261,0.801913,0.388505,0.970309,0.025889,0.00746495,0.922247,0.209789,0.638804,0.222467,0.592451,0.354894,0.310506,0.276811,0.633472,0.353364,0.260149,0.397704,0.135137,0.785327,0.0888515,0.241147,0.133906,0.680247,0.482608,0.853843,0.294344,0.406921,0.373442,0.692855,0.435555,0.649178,0.40238,0.566589,0.55788,0.884809,0.866688,0.624205,0.938717,0.670486,0.183385,0.809232,0.006477,0.225704,0.387707,0.824892,0.0490652,0.591871,0.197079,0.811422,0.22503,0.386793,0.941063,0.157644,0.903875,0.0312114,0.586384,0.350634,0.878411,0.12545,0.366952,0.0886714,0.663526,0.494053,0.0440612,0.2413,0.744528,0.435388,0.948186,0.174708,0.303099,0.116639,0.464076,0.821115,0.625315,0.0912977,0.323614,0.183406,0.716274,0.263094,0.325219,0.746929,0.76412,0.883147,0.896661,0.715171,0.318003,0.178928,0.317468,0.534969,0.930545,0.765818,0.038825,0.683886,0.972664,0.801551,0.920238,0.649889,0.955806,0.946982,0.707274,0.577689,0.125616,0.146333,0.794683,0.0283665,0.818366,0.874192,0.740189,0.642375,0.212504,0.852853,0.711613,0.574291,0.0728451,0.755414,0.79707,0.162406,0.037446,0.106232,|0.456534,0.398849,0.268735,0.466744,0.925354,0.291982,0.916832,0.981612,0.716372,0.252968,0.257224,0.876272,0.849577,0.380089,0.975523,0.878828,0.780182,0.998691,0.410651,0.633989,0.668802,0.64031,0.918596,0.0926688,0.616087,0.862851,0.194949,0.491201,0.481163,0.0728015,0.184541,0.277237,0.383624,0.853107,0.252406,0.233975,0.330454,0.279462,0.316613,0.0179079,0.998154,0.0301336,0.0292198,0.765517,0.44861,0.192944,0.895645,0.12827,0.598956,0.918699,0.596675,0.318573,0.412077,0.991046,0.95979,0.602611,0.934352,0.330587,0.9973,0.887406,0.844307,0.592169,0.642146,0.482689,0.285827,0.866731,0.185349,0.37985,0.219937,0.306517,0.39464,0.294636,0.370064,0.50088,0.635243,0.391527,0.441627,0.874461,0.40273,0.230812,0.875636,0.527099,0.569555,0.516545,0.710607,0.735324,0.391261,0.0696697,0.909752,0.802149,0.48738,0.714553,0.736007,0.234691,0.184266,0.828097,0.293578,0.803357,0.0284996,0.999016,0.194682,0.959895,0.48667,0.908305,0.756843,0.62069,0.780741,0.487667,0.213917,0.911126,0.260978,0.13855,0.749164,0.642341,0.712436,0.375807,0.864046,0.89901,0.384481,0.778644,0.0371469,0.575916,0.0404264,0.36873,0.113795,0.422128,0.00468349,0.756218,0.68962,0.204729,0.882477,0.540732,0.342462,0.110263,0.427431,0.235657,0.20308,0.980662,0.591145,0.388035,0.502614,0.450411,0.0163493,0.288343,0.22396,0.14728,0.407778,0.952034,0.182792,0.422918,0.229499,0.586374,0.219634,0.102286,0.245283,0.101476,0.0575163,0.153943,0.88307,0.497481,0.71544,0.390157,0.425085,0.855286,0.0287359,0.213478,0.600719,0.131996,0.573133,0.15505,0.561539,0.757077,0.281001,0.890517,0.566521,0.654945,0.307239,0.370499,0.361685,0.75869,0.985187,0.188225,0.512388,0.531995,0.489567,0.263237,0.553775,0.25149,0.179471,0.733056,0.112554,0.00276309,0.942205,0.99937,0.688602,0.508789,0.342269,0.491639,0.892931,0.35477,0.192534,0.475386,0.699484,0.635865,0.963326,0.335284,0.0596906,0.0135857,0.932642,0.780948,0.344711,0.200363,0.24806,0.444495,0.98698,0.857948,0.448049,0.594617,0.148667,0.528485,0.771178,0.73903,0.922922,0.756235,0.797496,0.18628,0.0942876,0.576021,0.151111,0.76515,0.633767,0.274592,0.645028,0.439584,0.533904,0.506524,0.736372,0.421103,0.842186,0.793619,0.581825,0.764362,0.86671,0.615506,0.0883414,0.000926971,0.50115,0.0722238,0.0776197,0.131561,0.433448,0.325418,0.741626,0.579131,0.755952,0.477906,0.874555,0.233166,0.789596,0.196808,0.530976,0.938218,0.940909,0.475991,0.308441,0.0684639,0.541569,0.860304,0.176668,0.529528,0.468852,0.357765,0.159024,0.461153,0.87021,0.385168,0.960794,0.306856,0.773213,0.861664,0.760928,0.226486,0.0185118,0.117834,0.988831,0.82081,0.905436,0.675103,0.222235,0.591745,0.246781,0.96426,0.69172,0.664322,0.609231,0.844167,0.0329726,0.762728,0.249647,0.099814,0.0824571,0.168925,0.00907779,0.880161,0.521179,0.369841,0.335716,0.00902188,0.936891,0.472463,0.954071,0.00592864,0.479953,0.191172,0.44021,0.274956,0.487298,0.44562,0.202265,0.0216718,0.332827,0.0750483,0.671236,0.578576,0.28661,0.0548397,0.812868,0.807452,0.640608,0.00330281,0.112396,0.599801,0.603198,0.535089,0.692236,0.918872,0.81448,0.761394,0.546041,0.305259,0.157973,0.33641,0.902531,0.29859,0.862049,0.736344,0.886388,0.634912,0.935129,0.540802,0.568597,0.927742,0.269039,0.729783,0.392317,0.85541,0.418573,0.0526854,0.232816,0.194684,0.751424,0.045843,0.104599,0.265858,0.0462908,0.490422,0.231773,0.564507,0.294701,0.929011,0.815679,0.38021,0.25509,0.370247,0.964901,0.593979,0.356877,0.339187,0.928185,0.188213,0.356844,0.0496225,0.354875,0.774833,0.556817,0.537848,0.750151,0.267363,0.69557,0.850594,0.962803,0.679418,0.595502,0.947632,0.0142561,0.753741,0.766899,0.834825,0.844219,0.715159,0.716285,0.0207987,0.122608,0.363404,0.963208,0.803479,0.369713,0.626955,0.166137,0.34275,0.21579,0.546026,0.489879,0.935472,0.238983,0.277308,0.942948,0.12642,0.440526,0.0381153,0.874923,0.132568,0.807114,0.261815,0.325464,0.0472422,0.92908,0.211202,0.415401,0.0247815,0.93948,0.438884,0.463782,0.466935,0.248594,0.579839,0.0198306,0.00622326,0.591103,0.539312,0.410005,0.162943,0.701656,0.942122,0.823967,0.950124,0.0201699,0.483821,0.172388,0.70234,0.713743,0.946921,0.602899,0.391665,0.977339,0.0569935,0.375236,0.214694,0.849339,0.514997,0.0948511,0.48903,0.911414,0.33836,0.489169,0.792219,0.53865,0.00932723,0.405884,0.284542,0.164805,0.433431,0.678808,0.435439,0.916886,0.661894,0.157658,0.857194,0.848258,0.334747,0.124017,0.650897,0.302645,0.726801,0.673058,0.170097,0.519515,0.0786377,0.0836789,0.562562,0.642333,0.187698,0.549479,0.894738,0.429653,0.545256,0.470922,0.708064,0.580526,0.377352,0.384979,0.709475,0.593744,0.851589,0.0568064,0.248624,0.446112,0.617509,0.121187,0.326719,0.672979,0.01384,0.197988,0.532363,0.132381,0.381668,0.926835,0.327514,0.99419,0.176137,0.396893,0.87328,0.870807,0.00543141,0.528628,0.103319,0.921436,0.701999,0.694849,0.967332,0.742165,0.337872,0.333502,0.132965,0.44715,0.87115,0.387338,0.294357,0.719739,0.318303,0.253564,0.747727,0.116691,0.500493,0.322808,0.274904,0.375712,0.110212,0.342,0.536549,0.147636,0.65947,0.999997,0.450932,0.719133,0.496907,0.0945868,0.519364,0.573114,0.738189,0.172706,0.0343837,0.413302,0.0703155,0.750009,0.95984,0.435315,0.704781,0.20658,0.889448,0.821079,0.251967,0.097657,0.471317,0.672464,0.0291805,0.44303,0.908322,0.429073,0.107075,0.164943,0.0228568,0.266387,0.282172,0.454654,0.506648,0.699917,0.0802605,0.504044,0.653591,0.753472,0.549419,0.927121,0.109124,0.426344,0.0169004,0.412106,0.889173,0.523102,0.125231,0.818034,0.764536,0.426112,0.884145,0.0295678,0.814035,0.849115,0.928167,0.202465,0.632648,0.0484505,0.415379,0.6966,0.565687,0.939913,0.434232,0.670514,0.292586,0.636972,0.0222256,0.727793,0.368075,0.449276,0.639319,0.435749,0.98397,0.933222,0.720904,0.836082,0.795138,0.492259,0.710546,0.771237,0.0608035,0.893508,0.495601,0.19387,0.920358,0.550468,0.511297,0.532026,0.782831,0.621315,0.681545,0.0407104,0.479395,0.370555,0.0659804,0.484567,0.413428,0.40763,0.615857,0.569869,0.910815,0.155738,0.361032,0.560972,0.0178365,0.154836,0.208877,0.919024,0.522569,0.29885,0.431995,0.267855,0.208062,0.861851,0.554594,0.383186,0.682852,0.690558,0.977559,0.478085,0.494986,0.438013,0.959709,0.559774,0.787815,0.366694,0.995808,0.537689,0.727419,0.081194,0.762162,0.222774,0.932187,0.168561,0.479395,0.0365013,0.386362,0.93923,0.442926,0.645628,0.988007,0.630467,0.128918,0.236067,0.206089,0.197684,0.459022,0.0280464,0.32951,0.267844,0.310329,0.226142,0.145764,0.327685,0.44073,0.547146,0.883334,0.202548,0.179852,0.333369,0.646068,0.808746,0.755821,0.364719,0.185589,0.547685,0.843644,0.0617678,0.791147,0.922313,0.809975,0.323793,0.869478,0.658365,0.628841,0.142198,0.734801,0.806561,0.520124,0.288707,0.0169899,0.0272912,0.136581,0.597732,0.873896,0.176963,0.511404,0.219397,0.671105,0.822014,0.739078,0.622799,0.255832,0.738787,0.365185,0.194934,0.823596,0.723476,0.671823,0.19889,0.305688,0.712584,0.296905,0.389319,0.41018,0.261972,0.0317938,0.199659,0.425309,0.823473,0.0985883,0.264241,0.156102,0.514394,0.592092,0.779555,0.0205574,0.783278,0.0948094,0.0118849,0.86448,0.59519,0.0977395,0.82805,0.552069,0.989492,0.88884,0.183982,0.944669,0.404974,0.526285,0.461184,0.832515,0.828213,0.0205172,0.613397,0.00733835,0.210103,0.19477,0.388473,0.314698,0.779304,0.411898,0.679643,0.703072,0.00985372,0.589144,0.00852287,0.546716,0.252462,0.658324,0.306992,0.434847,0.691379,0.326769,0.98806,0.336281,0.178375,0.483566,0.543938,0.14737,0.794662,0.849051,0.160634,0.314545,0.768507,0.628532,0.388865,0.449271,0.366862,0.249124,0.232916,0.791878,0.393814,0.705019,0.283029,0.237579,0.426295,0.799523,0.504866,0.899775,0.679184,0.601497,0.0266885,0.846218,0.308686,0.564157,0.360338,0.526786,0.685936,0.383221,0.571098,0.57294,0.825938,0.431371,0.489428,0.800171,0.946094,0.162227,0.0710759,0.783167,0.872135,0.835629,0.0694566,0.573284,0.262125,0.813191,0.60587,0.787787,0.856729,0.293474,0.160997,0.131867,0.522686,0.617459,0.866651,0.444636,0.702598,0.574138,0.259205,0.596556,0.691407,0.0882893,0.472963,0.148034,0.762395,0.868815,0.33953,0.552272,0.756273,0.418187,0.10533,0.0689706,0.256066,0.19925,0.188788,0.33163,0.428499,0.563264,0.77287,0.915526,0.523093,0.21802,0.935054,0.200993,0.280288,0.535864,0.516608,0.301657,0.90396,0.20425,0.835028,0.65509,0.479792,0.447959,0.716491,0.614511,0.287278,0.905675,0.202165,0.0325592,0.979415,0.103637,0.282131,0.302529,0.298113,0.39254,0.339717,0.319238,0.484638,0.962329,0.0210632,0.482018,0.560936,0.0980428,0.874454,0.0450344,0.194166,0.946931,0.00942981,0.631057,0.146161,0.908299,0.76663,0.584198,0.176966,0.252888,0.424675,0.889002,0.807011,0.269136,0.376338,0.628428,0.73087,0.425746,0.0959761,0.176796,0.877737,0.219384,0.378114,0.116519,0.151007,0.371348,0.869574,0.0773641,0.610553,0.771088,0.842423,0.628706,0.87394,0.855117,0.302807,0.438095,0.0273001,0.500721,0.826574,0.468146,0.371617,0.464286,0.267436,0.287268,0.83771,0.974245,0.700359,0.0901424,0.237492,0.0122816,0.950458,0.505659,0.857447,0.743518,0.12206,0.117497,0.305038,0.657655,0.763134,0.0789294,0.0614082,0.655653,0.238843,0.670785,0.427195,0.557251,0.781062,0.322798,0.0911259,0.763013,|0.731147,0.235869,0.137034,0.237034,0.170204,0.443647,0.0362387,0.452561,0.366336,0.46529,0.0854207,0.766918,0.926061,0.33029,0.920157,0.547325,0.971884,0.509887,0.101714,0.72976,0.647015,0.619879,0.525275,0.738705,0.428458,0.79312,0.382576,0.758531,0.281254,0.0874688,0.594693,0.384701,0.0643714,0.625926,0.261525,0.6901,0.698744,0.262109,0.318423,0.776859,0.384185,0.743049,0.474783,0.0590799,0.521894,0.97712,0.707713,0.0770052,0.439611,0.68497,0.0274677,0.230329,0.959762,0.98701,0.241969,0.912888,0.992095,0.145198,0.189442,0.936393,0.0200112,0.600737,0.601944,0.996772,0.0392638,0.403133,0.154417,0.221015,0.275731,0.70101,0.0465974,0.819725,0.700227,0.103062,0.274321,0.331632,0.900668,0.622853,0.372673,0.19963,0.2797,0.373411,0.871361,0.90015,0.140144,0.871095,0.288145,0.954129,0.108065,0.515691,0.789868,0.0491251,0.0637776,0.0112396,0.413143,0.975177,0.369078,0.0633089,0.213843,0.327179,0.0928898,0.161298,0.921221,0.816375,0.65193,0.379216,0.343479,0.542713,0.0490547,0.635097,0.435026,0.959706,0.546056,0.527224,0.0436606,0.324051,0.138038,0.730057,0.833549,0.704348,0.715965,0.599004,0.499312,0.5582,0.995758,0.893377,0.531713,0.188873,0.772916,0.323353,0.372151,0.338876,0.81721,0.802898,0.530981,0.732574,0.691823,0.0297177,0.720144,0.19201,0.471436,0.441025,0.0421011,0.0389044,0.563395,0.925899,0.542086,0.520317,0.0525773,0.292629,0.198735,0.856215,0.803394,0.43672,0.366995,0.883128,0.0716979,0.200074,0.00122386,0.294039,0.295582,0.157262,0.545607,0.447863,0.84536,0.0976765,0.489173,0.253266,0.301136,0.0567628,0.615431,0.460122,0.00117916,0.49596,0.364564,0.299179,0.747153,0.267523,0.351773,0.516571,0.275856,0.946616,0.333405,0.229085,0.407255,0.423838,0.119217,0.930337,0.636249,0.986463,0.650182,0.590495,0.96038,0.0684215,0.370722,0.523559,0.274429,0.456922,0.941857,0.575572,0.260554,0.24228,0.242219,0.0721136,0.705847,0.00147229,0.00211924,0.881284,0.785837,0.49094,0.533622,0.891606,0.110521,0.268039,0.842969,0.482869,0.0297104,0.573719,0.750529,0.719383,0.436235,0.0936915,0.681521,0.169066,0.331636,0.126729,0.229073,0.938105,0.974913,0.688305,0.805575,0.255443,0.835652,0.449457,0.0533162,0.207506,0.29641,0.914305,0.273881,0.661176,0.475523,0.187564,0.465561,0.208434,0.127901,0.773091,0.340344,0.476725,0.234881,0.645379,0.266775,0.834496,0.271201,0.14171,0.766556,0.919789,0.538088,0.995087,0.642307,0.755613,0.105659,0.463305,0.406728,0.101691,0.190422,0.176222,0.136867,0.350967,0.149765,0.482179,0.648096,0.964689,0.574089,0.116365,0.549035,0.797893,0.263082,0.19364,0.800246,0.473345,0.451483,0.448421,0.263578,0.794968,0.407569,0.170888,0.183378,0.256329,0.429363,0.0763274,0.605619,0.893338,0.497656,0.465565,0.0526366,0.713476,0.243037,0.953166,0.124905,0.915862,0.0849823,0.254827,0.808411,0.493724,0.733488,0.737706,0.640423,0.893882,0.951131,0.795421,0.15952,0.759299,0.244942,0.815658,0.294532,0.0445548,0.150654,0.544945,0.571689,0.129722,0.948257,0.404387,0.829851,0.361773,0.77969,0.34273,0.977241,0.12587,0.998927,0.546615,0.292615,0.071051,0.709402,0.219275,0.514469,0.666786,0.736085,0.952389,0.683919,0.730403,0.416846,0.176529,0.774712,0.98252,0.126886,0.21798,0.793436,0.773448,0.870917,0.129709,0.543823,0.306306,0.508562,0.55211,0.508488,0.750879,0.380397,0.678454,0.473693,0.41464,0.251846,0.382244,0.62509,0.432031,0.280773,0.629917,0.268812,0.270756,0.878915,0.821284,0.228627,0.239595,0.316192,0.319833,0.721009,0.540651,0.944364,0.584965,0.197818,0.4849,0.884241,0.604159,0.423111,0.498332,0.723152,0.403696,0.623699,0.564158,0.586503,0.793345,0.520717,0.473579,0.216392,0.594687,0.492368,0.0774367,0.0114784,0.524339,0.917357,0.292837,0.806,0.635617,0.16076,0.0378608,0.223936,0.348277,0.624344,0.0297943,0.324849,0.498452,0.803964,0.273172,0.0383992,0.390724,0.953631,0.172682,0.0569754,0.379245,0.348515,0.44727,0.903282,0.0161148,0.000490129,0.894318,0.641801,0.235951,0.491048,0.754261,0.590287,0.605733,0.755552,0.624834,0.654243,0.424508,0.109135,0.702194,0.837897,0.559127,0.29022,0.881606,0.248933,0.901164,0.700794,0.192837,0.0158862,0.5118,0.321823,0.318164,0.248187,0.397288,0.778493,0.148129,0.354789,0.942173,0.364395,0.703361,0.0577188,0.162673,0.463492,0.122095,0.882533,0.914499,0.734081,0.530816,0.622016,0.962295,0.594294,0.495482,0.619385,0.00917864,0.205352,0.0279375,0.866021,0.501653,0.567566,0.848847,0.205479,0.188302,0.598849,0.746515,0.602522,0.121945,0.136746,0.10682,0.725455,0.87235,0.956306,0.790815,0.909907,0.200437,0.106799,0.301009,0.813923,0.00615853,0.359424,0.454523,0.393499,0.657306,0.950988,0.735985,0.0435726,0.995063,0.209591,0.134101,0.00644284,0.57097,0.740511,0.261926,0.362611,0.112092,0.538211,0.80608,0.733114,0.874901,0.544065,0.98584,0.20539,0.359533,0.872315,0.568961,0.0763524,0.181323,0.409451,0.847208,0.440513,0.197514,0.162794,0.102021,0.939149,0.788909,0.124026,0.644369,0.762719,0.518863,0.769426,0.799312,0.138306,0.245299,0.793156,0.982987,0.804335,0.847783,0.995153,0.711551,0.86091,0.409492,0.159284,0.399806,0.708076,0.686803,0.948618,0.333113,0.405372,0.892209,0.404736,0.275314,0.51872,0.823583,0.0852977,0.900064,0.506356,0.569963,0.441582,0.222902,0.139473,0.242288,0.861362,0.481722,0.905379,0.355932,0.687889,0.538694,0.0592103,0.489451,0.273187,0.116361,0.896617,0.0619988,0.985189,0.217087,0.885699,0.303632,0.162443,0.119246,0.406864,0.303266,0.84275,0.487198,0.677151,0.82976,0.790165,0.74973,0.42288,0.258141,0.2656,0.761283,0.370688,0.949996,0.0507687,0.0268371,0.323524,0.246441,0.133754,0.0587353,0.258308,0.232943,0.889049,0.39256,0.841581,0.258986,0.708955,0.353159,0.861411,0.517806,0.696602,0.788745,0.858282,0.36296,0.495145,0.312329,0.548313,0.484014,0.726439,0.012971,0.786355,0.0786906,0.27031,0.0984297,0.00487202,0.695857,0.294502,0.459274,0.0835053,0.654848,0.0118171,0.623827,0.871936,0.48373,0.449576,0.148075,0.402457,0.304733,0.843303,0.202988,0.849963,0.914927,0.986756,0.112801,0.936047,0.93169,0.700297,0.100147,0.4071,0.911772,0.0795107,0.0152661,0.378698,0.407997,0.311375,0.339498,0.237818,0.540974,0.127947,0.67319,0.718442,0.993732,0.752768,0.498847,0.933479,0.470161,0.846525,0.838207,0.884258,0.737062,0.176474,0.236314,0.858542,0.0803859,0.660564,0.0742903,0.666291,0.422819,0.924514,0.687686,0.877491,0.852354,0.444031,0.281758,0.0413452,0.472979,0.475756,0.372893,0.530783,0.621967,0.937536,0.221441,0.354366,0.821055,0.278879,0.282459,0.499701,0.0186669,0.21034,0.965276,0.596105,0.858666,0.76937,0.75326,0.547292,0.6917,0.91921,0.326934,0.362696,0.748089,0.526002,0.501208,0.555122,0.576657,0.116298,0.837049,0.90377,0.624812,0.947068,0.362182,0.554875,0.630441,0.196233,0.772436,0.652977,0.252531,0.0957726,0.0931416,0.984085,0.46844,0.549571,0.62426,0.809563,0.666555,0.230097,0.380913,0.489829,0.434671,0.983123,0.696046,0.806125,0.720214,0.208098,0.623364,0.180727,0.53627,0.63169,0.173995,0.139388,0.882649,0.628849,0.503898,0.318599,0.899903,0.954812,0.871289,0.995773,0.583498,0.481206,0.0418475,0.840019,0.389069,0.559119,0.056532,0.010334,0.669808,0.00327033,0.075094,0.990616,0.366931,0.997103,0.533888,0.565544,0.284927,0.873428,0.251917,0.537838,0.745898,0.44107,0.259915,0.333767,0.275221,0.917026,0.793908,0.633478,0.0894629,0.237578,0.467971,0.867303,0.491046,0.764198,0.794675,0.583157,0.809218,0.854469,0.562216,0.898697,0.270417,0.716839,0.744831,0.830151,0.0823131,0.441327,0.939709,0.193402,0.639007,0.182994,0.104892,0.103026,0.672014,0.0511241,0.00066179,0.104044,0.677005,0.257581,0.140053,0.651464,0.314822,0.624399,0.75276,0.150901,0.732151,0.996834,0.356224,0.259365,0.826535,0.508096,0.673224,0.647205,0.656995,0.0639509,0.0218177,0.175414,0.708879,0.679336,0.281455,0.262197,0.442445,0.459228,0.752217,0.887314,0.992933,0.303997,0.624638,0.578819,0.0849794,0.446458,0.150323,0.193056,0.417385,0.226646,0.970687,0.318801,0.62182,0.154907,0.674908,0.161843,0.554408,0.263665,0.873984,0.50873,0.977488,0.368515,0.717669,0.0403982,0.549749,0.557136,0.393026,0.651107,0.121304,0.624863,0.137201,0.125126,0.179679,0.306345,0.429541,0.171824,0.087471,0.0197065,0.357868,0.873265,0.753757,0.384135,0.490629,0.9865,0.879965,0.0832618,0.554191,0.28985,0.6055,0.147197,0.823553,0.0447075,0.819232,0.780384,0.540006,0.0761877,0.980682,0.123537,0.662812,0.73657,0.857182,0.152302,0.0790453,0.461387,0.875915,0.905347,0.142305,0.0195042,0.599936,0.829628,0.908446,0.17639,0.654395,0.505608,0.638397,0.611701,0.00238359,0.105002,0.324409,0.173538,0.481994,0.890853,0.862267,0.901734,0.830738,0.415147,0.0171285,0.787358,0.1464,0.607008,0.586462,0.249681,0.409755,0.133655,0.810382,0.267516,0.354058,0.22321,0.0711701,0.853092,0.163939,0.509561,0.0979657,0.934016,0.415693,0.602609,0.406132,0.210685,0.792214,0.915487,0.111784,0.098733,0.119739,0.893724,0.344493,0.327987,0.657216,0.0848485,0.768484,0.337635,0.314915,0.588044,0.128238,0.360333,0.237559,0.899645,0.297461,0.195488,0.382052,0.521531,0.346315,0.80719,0.16875,0.971896,0.251328,0.814246,0.0539623,0.819864,0.0614539,0.464732,0.395727,0.662349,0.575132,0.386925,0.489256,0.736263,0.629462,0.299733,0.968416,0.71544,0.230576,0.623425,0.912255,0.704877,0.0771414,|0.132334,0.203708,0.907583,0.653663,0.303349,0.899059,0.558663,0.549042,0.410575,0.795316,0.827194,0.908651,0.76681,0.614893,0.088559,0.875545,0.250205,0.948295,0.853446,0.215301,0.702989,0.947473,0.125382,0.568945,0.930473,0.499784,0.036609,0.147731,0.180595,0.71825,0.668683,0.318338,0.934768,0.516477,0.40721,0.63442,0.163885,0.615809,0.406045,0.705408,0.183471,0.129162,0.152472,0.862449,0.879746,0.517129,0.424993,0.02857,0.520306,0.378966,0.774764,0.403479,0.673616,0.57042,0.0953241,0.570171,0.248339,0.891766,0.245005,0.599041,0.87766,0.288791,0.943465,0.591932,0.527237,0.492029,0.211375,0.535178,0.317026,0.489528,0.632347,0.354172,0.326,0.466761,0.771874,0.786481,0.277458,0.208445,0.00751287,0.641056,0.389076,0.533282,0.476747,0.872664,0.764128,0.0911717,0.324861,0.275199,0.688239,0.526081,0.442263,0.957123,0.0489403,0.354583,0.811884,0.689391,0.440769,0.425956,0.944816,0.620142,0.500411,0.230875,0.662751,0.910149,0.412314,0.204888,0.0831007,0.926543,0.92948,0.0233163,0.00304323,0.577292,0.625277,0.00345838,0.550635,0.128379,0.773121,0.646475,0.147,0.87072,0.801424,0.373897,0.377494,0.827278,0.908687,0.330369,0.229755,0.755418,0.407518,0.777592,0.458745,0.975135,0.0661591,0.808923,0.361154,0.873768,0.0223132,0.737524,0.90336,0.575231,0.483576,0.682763,0.234071,0.379386,0.884442,0.875162,0.993354,0.96182,0.660216,0.405477,0.630405,0.176918,0.71278,0.358703,0.900872,0.64816,0.709115,0.72347,0.342866,0.108389,0.889494,0.0574729,0.780176,0.56428,0.321081,0.955504,0.804163,0.33504,0.700404,0.701392,0.526448,0.203559,0.637509,0.685645,0.179475,0.187106,0.134185,0.983188,0.61802,0.695237,0.138446,0.717495,0.0393704,0.582578,0.293698,0.713806,0.489633,0.708408,0.822922,0.749862,0.71685,0.0631053,0.234661,0.623335,0.648991,0.913803,0.692457,0.907216,0.857103,0.210831,0.827265,0.49384,0.752094,0.77961,0.390726,0.51753,0.884298,0.160696,0.431956,0.924408,0.430456,0.178414,0.363348,0.938506,0.556369,0.698344,0.442472,0.913478,0.347861,0.190583,0.243793,0.216406,0.373205,0.298626,0.848161,0.763405,0.401708,0.100149,0.468553,0.21269,0.327815,0.918811,0.189197,0.458301,0.215981,0.949797,0.489594,0.0488879,0.390139,0.455628,0.069557,0.0477057,0.887886,0.251427,0.831959,0.837308,0.90678,0.0488303,0.693273,0.0858061,0.956634,0.0722181,0.503371,0.71125,0.169617,0.178911,0.398303,0.00851941,0.203351,0.295694,0.765271,0.742176,0.13388,0.0933092,0.161904,0.883267,0.533146,0.804229,0.471065,0.89651,0.166024,0.729853,0.546537,0.739173,0.986355,0.526923,0.688983,0.878307,0.475563,0.45811,0.750798,0.173194,0.87558,0.145713,0.582366,0.576881,0.0138129,0.0813763,0.693665,0.705376,0.758259,0.100166,0.323099,0.622355,0.578043,0.995889,0.986989,0.181251,0.642002,0.252006,0.423943,0.590002,0.639741,0.238936,0.232839,0.882103,0.876792,0.253907,0.217013,0.312327,0.608918,0.716015,0.626028,0.314741,0.459188,0.508714,0.991339,0.816312,0.0877979,0.944922,0.126005,0.619181,0.528817,0.0453002,0.988375,0.859784,0.0267873,0.840759,0.413057,0.0755201,0.270725,0.988853,0.385629,0.589141,0.0856662,0.0353869,0.634784,0.667478,0.146438,0.338423,0.00875366,0.378804,0.95744,0.584546,0.461481,0.662127,0.802701,0.907991,0.0622467,0.391578,0.0685166,0.95243,0.628583,0.785447,0.862024,0.264349,0.141387,0.520923,0.0243491,0.10359,0.940356,0.21192,0.339609,0.264692,0.187983,0.882202,0.129312,0.754945,0.627146,0.847479,0.293375,0.658494,0.997595,0.439216,0.549275,0.734789,0.119937,0.292909,0.368927,0.891821,0.846025,0.916309,0.152093,0.180464,0.574013,0.342175,0.177072,0.073947,0.525294,0.335769,0.00969642,0.931089,0.180371,0.434719,0.447475,0.477241,0.156753,0.515275,0.192537,0.81613,0.625755,0.0199898,0.0392546,0.570652,0.188947,0.904144,0.482059,0.959787,0.282131,0.289244,0.740767,0.548924,0.518887,0.302699,0.70125,0.659566,0.204762,0.938941,0.616686,0.53077,0.861071,0.61964,0.712427,0.614163,0.904323,0.174887,0.813254,0.677528,0.151482,0.0410891,0.719497,0.866682,0.714578,0.48616,0.899125,0.901837,0.908095,0.360319,0.165211,0.701401,0.870001,0.276664,0.844281,0.216541,0.57215,0.15039,0.802226,0.538772,0.607591,0.752176,0.181703,0.942275,0.336281,0.773806,0.85176,0.178428,0.790218,0.821977,0.82072,0.936307,0.685653,0.73287,0.33408,0.772999,0.616132,0.938267,0.371518,0.96126,0.785239,0.35349,0.947919,0.000800252,0.971093,0.74942,0.17167,0.900115,0.0877184,0.842874,0.920433,0.269308,0.73692,0.363071,0.31734,0.141096,0.963957,0.761976,0.0456208,0.311908,0.845132,0.85771,0.466219,0.132094,0.355903,0.432245,0.62179,0.619228,0.0262938,0.869039,0.0347094,0.0898365,0.645064,0.55735,0.46204,0.821257,0.940832,0.179905,0.0702477,0.749973,0.600813,0.18144,0.353309,0.546946,0.374453,0.224003,0.82085,0.0563885,0.908436,0.794032,0.341392,0.807649,0.062338,0.527041,0.362141,0.117025,0.486787,0.85351,0.300967,0.701518,0.15606,0.583858,0.66655,0.830957,0.62263,0.86995,0.0324284,0.275435,0.897846,0.118973,0.876019,0.442952,0.184015,0.502111,0.856092,0.262817,0.22678,0.523967,0.798052,0.048192,0.0305744,0.137493,0.807457,0.539468,0.573908,0.936624,0.0231614,0.000963867,0.852842,0.881755,0.325194,0.142954,0.664175,0.335185,0.161886,0.576908,0.764707,0.904401,0.345729,0.89989,0.36974,0.485303,0.546201,0.323673,0.488251,0.123903,0.68009,0.614817,0.429857,0.650503,0.521597,0.722456,0.28349,0.235755,0.585195,0.476376,0.453709,0.295817,0.249691,0.464556,0.232784,0.967333,0.464961,0.309592,0.984864,0.53671,0.731806,0.0915789,0.251036,0.683834,0.552059,0.433348,0.794946,0.258075,0.345626,0.117256,0.995498,0.481704,0.610742,0.388023,0.736048,0.753209,0.896186,0.479266,0.013763,0.513949,0.292758,0.10002,0.740098,0.0181009,0.585575,0.682908,0.523364,0.937718,0.674798,0.00258231,0.951372,0.389417,0.527342,0.73879,0.364682,0.721132,0.222822,0.434084,0.223506,0.137079,0.244841,0.54896,0.961347,0.202446,0.051106,0.922243,0.144994,0.0507452,0.0630171,0.0528615,0.480005,0.597756,0.257641,0.382297,0.783612,0.721291,0.431718,0.42171,0.0356941,0.304963,0.398735,0.457612,0.970543,0.37183,0.859547,0.095939,0.479708,0.373783,0.561969,0.593405,0.828376,0.123425,0.490271,0.420049,0.704006,0.0909791,0.590665,0.806428,0.611426,0.446258,0.768774,0.954228,0.205738,0.5766,0.118259,0.0294576,0.628843,0.21574,0.928631,0.281008,0.470162,0.903179,0.848207,0.00566101,0.48194,0.245062,0.811869,0.518211,0.130345,0.441658,0.776055,0.65667,3.93391e-06,0.697603,0.787781,0.445344,0.319457,0.0373649,0.425611,0.741208,0.489084,0.612382,0.586101,0.147178,0.44214,0.200716,0.846172,0.731333,0.0204123,0.788913,0.18513,0.550756,0.724998,0.307326,0.125712,0.285041,0.819415,0.429785,0.334178,0.0556613,0.751262,0.807236,0.363043,0.427747,0.571325,0.882557,0.620539,0.931124,0.675103,0.977531,0.120327,0.144744,0.36107,0.890722,0.689218,0.327648,0.265094,0.734299,0.739428,0.263859,0.819131,0.245061,0.456111,0.412077,0.114887,0.89515,0.931378,0.800755,0.459745,0.520483,0.732495,0.490907,0.424463,0.347777,0.709295,0.733852,0.00304335,0.501991,0.0573228,0.770354,0.457928,0.641046,0.136496,0.505993,0.188717,0.273894,0.936411,0.0255394,0.148425,0.830444,0.0043782,0.0033527,0.876763,0.639039,0.354743,0.185235,0.979137,0.597456,0.493426,0.954055,0.155316,0.708027,0.449356,0.00403863,0.937905,0.677091,0.456084,0.0469139,0.497972,0.344206,0.974491,0.369803,0.315528,0.577561,0.990885,0.522132,0.459272,0.543973,0.025973,0.175947,0.219572,0.859518,0.408996,0.457279,0.887764,0.637672,0.0719341,0.100691,0.866178,0.726617,0.463634,0.624736,0.559141,0.376788,0.850617,0.302472,0.786803,0.0653697,0.165949,0.739512,0.124171,0.790225,0.563157,0.133482,0.68488,0.370593,0.639572,0.149103,0.733313,0.783386,0.822368,0.204163,0.634585,0.848591,0.0028761,0.469965,0.848503,0.31779,0.721206,0.395878,0.128909,0.643291,0.317525,0.939411,0.833178,0.777439,0.633643,0.838575,0.616816,0.567225,0.96944,0.364051,0.524078,0.696015,0.901194,0.406974,0.220934,0.762946,0.140072,0.973991,0.959174,0.596773,0.389487,0.847041,0.987741,0.192553,0.495082,0.371457,0.218549,0.474444,0.696894,0.0460192,0.279147,0.616751,0.0604222,0.542592,0.324807,0.719743,0.859946,0.40089,0.843861,0.642986,0.197199,0.0216336,0.904504,0.348188,0.400838,0.189002,0.684596,0.787947,0.248624,0.270325,0.583201,0.711061,0.313108,0.794786,0.610893,0.431864,0.3594,0.225485,0.140022,0.996517,0.782488,0.00667101,0.581937,0.173343,0.733934,0.411569,0.194237,0.190752,0.0604931,0.415519,0.671522,0.470169,0.796517,0.900215,0.936633,0.298114,0.481803,0.652619,0.798144,0.549997,0.169437,0.661043,0.484813,0.446425,0.47836,0.379113,0.717097,0.614922,0.2894,0.482064,0.697849,0.377089,0.959416,0.895374,0.305411,0.0489337,0.681711,0.748783,0.744646,0.426675,0.150038,0.80789,0.371885,0.511609,0.733646,0.293731,0.984291,0.46255,0.935127,0.643847,0.204936,0.771155,0.715355,0.353827,0.956986,0.339367,0.91745,0.740519,0.350403,0.580229,0.614838,0.273401,0.786381,0.960737,0.439234,0.26245,0.6501,0.118017,0.234146,0.0175167,0.970406,0.366355,0.556832,0.413902,0.0531791,0.2665,0.946004,0.0342763,0.928865,0.655921,0.972734,0.685435,0.088523,0.637803,0.61661,0.516767,0.23477,0.346093,0.371239,0.0567274,0.783524,0.731332,0.812576,0.92691,|0.612771,0.235732,0.216802,0.732559,0.211404,0.9949,0.0158827,0.0299051,0.455636,0.781107,0.318741,0.327932,0.456772,0.613019,0.71562,0.540384,0.828103,0.617843,0.261719,0.0814568,0.180338,0.178849,0.0686728,0.383529,0.0290371,0.0595073,0.137917,0.400093,0.535716,0.863668,0.84226,0.0824635,0.0698789,0.879566,0.81273,0.633613,0.977641,0.55234,0.590871,0.613561,0.840483,0.251502,0.936635,0.993133,0.118903,0.564308,0.0587059,0.81882,0.319916,0.728017,0.303123,0.0898588,0.466391,0.12065,0.88063,0.103,0.381097,0.109697,0.696212,0.88115,0.287806,0.0134713,0.846872,0.914518,0.887494,0.555938,0.788032,0.157843,0.856135,0.82592,0.740315,0.476615,0.273549,0.685956,0.134348,0.892309,0.375763,0.77785,0.137168,0.86453,0.221359,0.562868,0.999638,0.58149,0.684696,0.778255,0.432249,0.0901327,0.158391,0.857507,0.582122,0.6937,0.317281,0.434875,0.6271,0.583726,0.566862,0.492462,0.939517,0.421465,0.0145321,0.233114,0.613876,0.33371,0.460484,0.266611,0.00185072,0.761054,0.987081,0.585796,0.24615,0.34204,0.986073,0.284464,0.806303,0.313337,0.475866,0.447186,0.311291,0.361139,0.668389,0.1948,0.382861,0.600924,0.0283681,0.909198,0.850292,0.22092,0.933511,0.189783,0.763892,0.803273,0.0822744,0.811036,0.498776,0.44641,0.845305,0.797425,0.589098,0.670854,0.512484,0.642268,0.712737,0.0237182,0.504376,0.723323,0.455834,0.589677,0.165182,0.342245,0.362064,0.274187,0.600588,0.128819,0.334019,0.584741,0.182874,0.907329,0.135204,0.489706,0.314664,0.074945,0.814752,0.49342,0.223541,0.823571,0.557551,0.559019,0.607901,0.75369,0.346494,0.246839,0.579057,0.148829,0.791832,0.0450924,0.0225686,0.330581,0.356064,0.197716,0.717891,0.598172,0.387567,0.621756,0.227158,0.793966,0.899341,0.650691,0.617276,0.470898,0.409655,0.851282,0.00394726,0.654558,0.653815,0.731945,0.717941,0.60883,0.150216,0.690551,0.591749,0.88715,0.68929,0.0876288,0.649963,0.352217,0.374643,0.555881,0.744877,0.646329,0.804904,0.80929,0.798994,0.908004,0.0285064,0.907165,0.246949,0.777788,0.81368,0.692425,0.406728,0.701441,0.192969,0.254334,0.813582,0.941676,0.264992,0.219835,0.613921,0.409754,0.326063,0.939313,0.0239272,0.602148,0.891834,0.937978,0.0213534,0.427556,0.240075,0.680443,0.874372,0.971737,0.148852,0.91625,0.803474,0.577484,0.0337126,0.500696,0.845743,0.870213,0.104746,0.260374,0.92248,0.171066,0.906369,0.025367,0.129187,0.88382,0.543052,0.220583,0.904617,0.0610525,0.967081,0.575408,0.0020417,0.0253294,0.714288,0.95522,0.365241,0.334234,0.323691,0.789801,0.698606,0.923614,0.27776,0.24259,0.380127,0.29231,0.141723,0.664856,0.96305,0.723568,0.204891,0.813692,0.26512,0.609374,0.270698,0.487912,0.434439,0.353002,0.940915,0.531882,0.578179,0.823311,0.384736,0.792532,0.0360185,0.0478101,0.867346,0.925925,0.476347,0.454695,0.235489,0.816949,0.829444,0.771102,0.713339,0.776253,0.561064,0.274422,0.769664,0.841329,0.331995,0.396149,0.0488582,0.756825,0.195551,0.96828,0.295126,0.32935,0.668018,0.0108762,0.700102,0.688708,0.608083,0.295798,0.478074,0.995383,0.731921,0.541608,0.290223,0.125902,0.921806,0.370524,0.871301,0.171563,0.596056,0.814224,0.465999,0.172281,0.405596,0.841945,0.748593,0.5689,0.504577,0.0342495,0.656216,0.55766,0.831211,0.634278,0.174537,0.311848,0.259926,0.605771,0.633817,0.87488,0.733241,0.971399,0.0928302,0.388004,0.279716,0.400624,0.410735,0.739456,0.534307,0.410678,0.787289,0.312518,0.727443,0.686044,0.957918,0.646873,0.229707,0.194921,0.892494,0.134515,0.817006,0.424734,0.680647,0.457972,0.904353,0.518108,0.270292,0.646126,0.656369,0.808751,0.15453,0.245072,0.504579,0.677286,0.254947,0.936443,0.50143,0.29151,0.998871,0.815275,0.209582,0.426972,0.0573586,0.0418605,0.602231,0.976246,0.994499,0.244939,0.956397,0.221603,0.585949,0.689115,0.358191,0.914917,0.664066,0.239398,0.425659,0.379846,0.477565,0.150713,0.336119,0.590243,0.786977,0.377056,0.565533,0.559558,0.148679,0.32373,0.181535,0.298681,0.678612,0.85859,0.581875,0.674405,0.231571,0.853438,0.0879573,0.0779248,0.205733,0.488616,0.172366,0.817511,0.884763,0.883724,0.936538,0.95008,0.847945,0.0567586,0.47531,0.7481,0.490078,0.763617,0.932282,0.191784,0.968996,0.0874054,0.741318,0.592866,0.134547,0.8688,0.0207504,0.28432,0.532705,0.455464,0.898948,0.861292,0.370642,0.0564727,0.798925,0.101333,0.925125,0.73059,0.947131,0.457694,0.243814,0.0739428,0.96517,0.229944,0.470199,0.878059,0.0362611,0.0626095,0.261552,0.329783,0.572787,0.941662,0.720511,0.621509,0.951352,0.330387,0.32567,0.954638,0.487483,0.5016,0.584436,0.527744,0.155096,0.91983,0.205576,0.329641,0.624436,0.863226,0.610738,0.659247,0.104046,0.65484,0.314828,0.0589726,0.371667,0.756829,0.789901,0.552661,0.592046,0.14636,0.366723,0.966957,0.0666681,0.140566,0.741,0.780957,0.282202,0.149911,0.644874,0.49598,0.767235,0.463344,0.915338,0.585027,0.508388,0.497704,0.19993,0.981422,0.336598,0.474754,0.645975,0.391676,0.532039,0.411418,0.643358,0.227363,0.749711,0.221305,0.31222,0.904585,0.454782,0.313239,0.861052,0.00577295,0.161913,0.887664,0.248853,0.35675,0.559752,0.0504405,0.537818,0.707062,0.307559,0.819189,0.384243,0.448202,0.229191,0.638208,0.288893,0.320944,0.050609,0.572274,0.73892,0.774976,0.158372,0.723934,0.170324,0.49287,0.865346,0.927406,0.340588,0.546783,0.944739,0.437675,0.0690273,0.1027,0.0300296,0.394964,0.252769,0.975764,0.325779,0.678097,0.904902,0.525423,0.681253,0.966851,0.703826,0.576263,0.247482,0.901342,0.439341,0.623545,0.525657,0.0442168,0.287424,0.307876,0.0575136,0.790758,0.216238,0.994731,0.673852,0.77453,0.942899,0.728763,0.66676,0.0764486,0.948866,0.712401,0.292038,0.89531,0.474489,0.859106,0.422639,0.624679,0.232452,0.242464,0.232304,0.482657,0.508155,0.284066,0.148287,0.049501,0.625526,0.699734,0.7585,0.474234,0.626717,0.841873,0.336158,0.0266436,0.541934,0.339706,0.451914,0.0526075,0.0869833,0.99791,0.694124,0.838012,0.439764,0.271733,0.434088,0.268059,0.506162,0.0261982,0.069464,0.0633429,0.299047,0.957963,0.184576,0.918618,0.266855,0.930965,0.0736665,0.385387,0.84516,0.338035,0.214907,0.639471,0.981228,0.367401,0.345748,0.238255,0.43749,0.315441,0.963355,0.172763,0.214521,0.161283,0.285697,0.57409,0.0504681,0.407891,0.481432,0.448578,0.961979,0.840493,0.958172,0.890485,0.255724,0.681055,0.827929,0.89894,0.462125,0.612669,0.0374411,0.622123,0.401405,0.927005,0.410269,0.875973,0.472409,0.667644,0.980163,0.747497,0.959592,0.703475,0.483549,0.89015,0.553295,0.206428,0.949153,0.706347,0.649556,0.346113,0.242758,0.177761,0.38315,0.960337,0.65426,0.647961,0.0465117,0.542472,0.424052,0.964061,0.944939,0.635108,0.200879,0.738213,0.382376,0.210273,0.731977,0.725614,0.0379012,0.805642,0.344168,0.53875,0.804176,0.765088,0.552822,0.659382,0.981954,0.745105,0.56894,0.519789,0.283854,0.121427,0.474796,0.197173,0.945991,0.0500833,0.674803,0.0789427,0.948496,0.680044,0.409913,0.947078,0.150672,0.380628,0.208954,0.260362,0.524398,0.140347,0.218523,0.70595,0.684592,0.12528,0.970029,0.99749,0.465772,0.55056,0.0513445,0.961498,0.106367,0.472736,0.0581787,0.163969,0.780967,0.241837,0.44561,0.627068,0.0796503,0.0212211,0.367362,0.127642,0.609939,0.0813602,0.0931423,0.241585,0.414882,0.132993,0.248817,0.200179,0.351939,0.446838,0.677214,0.0306249,0.328624,0.20313,0.707543,0.552431,0.367476,0.935452,0.886157,0.103045,0.297246,0.523825,0.739734,0.106651,0.242642,0.200467,0.922392,0.550277,0.865426,0.94093,0.27914,0.139961,0.00284147,0.857926,0.720493,0.68454,0.443557,0.0668744,0.527884,0.178987,0.668427,0.826091,0.623908,0.184118,0.289114,0.972928,0.037198,0.00392538,0.0969232,0.866643,0.58225,0.191848,0.178875,0.779069,0.572215,0.852095,0.796786,0.40122,0.383026,0.128219,0.951868,0.789862,0.0240149,0.494541,0.61282,0.63301,0.821441,0.362186,0.197403,0.626441,0.438984,0.314908,0.0266429,0.1623,0.782479,0.581941,0.267685,0.921011,0.602236,0.0146862,0.692162,0.638182,0.580402,0.190972,0.680692,0.595659,0.610674,0.258331,0.160322,0.864254,0.532417,0.844816,0.0182567,0.689522,0.854768,0.316972,0.488172,0.306675,0.0473266,0.463919,0.652424,0.788398,0.855412,0.597879,0.439991,0.168874,0.882033,0.101632,0.420578,0.713053,0.0644181,0.816066,0.501537,0.385154,0.487014,0.909287,0.246014,0.672146,0.496117,0.0985436,0.0127017,0.488679,0.313343,0.168326,0.905139,0.657892,0.963741,0.630789,0.690326,0.0201513,0.420505,0.094258,0.474035,0.945213,0.856735,0.600946,0.337935,0.580108,0.62727,0.815466,0.497072,0.652488,0.596067,0.392672,0.314834,0.730153,0.572686,0.294375,0.677742,0.369259,0.300167,0.398684,0.525841,0.683455,0.334622,0.321328,0.804834,0.230296,0.584559,0.485754,0.465857,0.319493,0.726697,0.493889,0.444847,0.615258,0.879226,0.274244,0.249304,0.700395,0.825511,0.621293,0.247517,0.174821,0.0773066,0.689914,0.74224,0.092376,0.461312,0.199086,0.359056,0.698992,0.831292,0.37067,0.112538,0.278877,0.486335,0.732274,0.747756,0.447696,0.68268,0.395166,0.465535,0.0931121,0.722064,0.422543,0.920426,1.38283e-05,0.526453,0.111826,0.505853,0.982148,0.99158,0.894286,0.394053,0.49613,0.155775,0.389396,0.577353,0.77522,0.880735,0.949885,0.537895,0.0913765,0.279395,0.171569,0.640429,0.094923,0.834305,0.0878463,0.0418137,0.937027,0.298579,0.625435,0.429293,0.0780876,|0.534567,0.0678048,0.695801,0.528607,0.416609,0.817989,0.447667,0.146446,0.982587,0.419909,0.349378,0.358132,0.199153,0.382121,0.30089,0.615247,0.558991,0.130064,0.766826,0.52543,0.841932,0.358458,0.318379,0.381372,0.470976,0.910534,0.547368,0.96596,0.943893,0.177096,0.511306,0.978633,0.118916,0.252624,0.317704,0.559464,0.366598,0.436292,0.945617,0.292217,0.683307,0.429712,0.121307,0.751662,0.232153,0.587979,0.118812,0.70777,0.868134,0.763378,0.271088,0.455883,0.248208,0.767212,0.442418,0.763822,0.520829,0.618389,0.290183,0.0778134,0.125566,0.0326713,0.643376,0.492644,0.313863,0.788962,0.505696,0.819266,0.959366,0.840219,0.0109418,0.403882,0.763674,0.209999,0.33115,0.11346,0.00237954,0.678884,0.239861,0.44096,0.632761,0.946151,0.63309,0.28548,0.864782,0.713277,0.69833,0.315976,0.382704,0.616543,0.75695,0.389897,0.440881,0.996217,0.113119,0.00711113,0.459606,0.304899,0.401802,0.89617,0.720535,0.513902,0.0480143,0.593917,0.6899,0.113038,0.649219,0.915799,0.130729,0.444408,0.607577,0.0159878,0.930693,0.803235,0.967692,0.957249,0.528653,0.110898,0.605977,0.470237,0.282787,0.667828,0.803325,0.499463,0.165657,0.523018,0.633856,0.716299,0.649704,0.0511209,0.199315,0.481171,0.10781,0.0248132,0.323326,0.81748,0.0559078,0.710699,0.804436,0.989515,0.176471,0.232834,0.292779,0.100274,0.986079,0.590869,0.245178,0.624401,0.231786,0.224698,0.820711,0.605273,0.786974,0.950976,0.853755,0.0290566,0.92936,0.0589768,0.143136,0.922855,0.531602,0.852021,0.406516,0.0541471,0.040471,0.654301,0.711349,0.334565,0.844821,0.15012,0.296201,0.590458,0.00525677,0.948114,0.704899,0.74632,0.04687,0.925844,0.867966,0.968468,0.493176,0.861164,0.853754,0.148779,0.474106,0.926752,0.316091,0.0799771,0.126302,0.215871,0.840363,0.162061,0.697462,0.329935,0.907959,0.164699,0.307771,0.0637887,0.287608,0.168258,0.57814,0.172095,0.00842732,0.554417,0.7695,0.526297,0.59963,0.284365,0.764879,0.503635,0.488461,0.898074,0.443568,0.529225,0.595373,0.123131,0.0399006,0.337319,0.40388,0.879588,0.23397,0.846457,0.0499274,0.605935,0.421932,0.518446,0.486107,0.910666,0.372096,0.860879,0.807785,0.933507,0.802569,0.595894,0.0496464,0.130061,0.61619,0.217514,0.743255,0.284049,0.774433,0.871769,0.500625,0.963514,0.861642,0.453366,0.955323,0.204361,0.467987,0.508457,0.0356939,0.86701,0.270678,0.564112,0.0644736,0.85675,0.223951,0.0885593,0.341176,0.947598,0.353883,0.428023,0.288421,0.62894,0.640214,0.199435,0.864706,0.932273,0.00460923,0.487659,0.263003,0.706144,0.0784952,0.0924444,0.107107,0.491106,0.170035,0.906923,0.318699,0.581321,0.359511,0.356759,0.735635,0.880672,0.222315,0.340657,0.712883,0.562174,0.418391,0.970369,0.730514,0.225333,0.957975,0.906501,0.814105,0.911142,0.431508,0.194523,0.924384,0.305522,0.587996,0.0453848,0.542316,0.97218,0.929008,0.0356315,0.243714,0.968712,0.17449,0.219398,0.872755,0.66182,0.292261,0.818115,0.472805,0.106666,0.509741,0.759393,0.829868,0.886166,0.920415,0.446187,0.383654,0.686957,0.443468,0.67783,0.719555,0.438012,0.711017,0.930057,0.750167,0.562258,0.0734921,0.491235,0.0545779,0.748851,0.510593,0.355544,0.02722,0.488386,0.146676,0.976779,0.135443,0.928929,0.390778,0.209945,0.531855,0.0534005,0.913515,0.882859,0.295185,0.0432927,0.706554,0.819282,0.133712,0.880997,0.137947,0.433175,0.695889,0.5695,0.142811,0.11098,0.837553,0.888024,0.406385,0.572742,0.0496088,0.632209,0.73396,0.187411,0.190415,0.931738,0.53605,0.456963,0.547242,0.919906,0.871782,0.0989235,0.628734,0.518204,0.471267,0.851372,0.0951165,0.571227,0.46717,0.692494,0.662169,0.279888,0.943936,0.69073,0.616615,0.939198,0.0145605,0.107005,0.0693934,0.257345,0.787412,0.61735,0.5571,0.0752281,0.607663,0.0922822,0.0283281,0.642994,0.991216,0.398388,0.716365,0.587639,0.869474,0.972583,0.107791,0.0487038,0.939078,0.237642,0.231355,0.667665,0.027837,0.306164,0.47845,0.640346,0.291908,0.978315,0.410081,0.580622,0.280882,0.0465876,0.314884,0.22772,0.931953,0.84803,0.953471,0.165196,0.8524,0.124315,0.798228,0.859291,0.690887,0.154414,0.181992,0.969236,0.971243,0.351772,0.404607,0.834679,0.887713,0.234855,0.294206,0.328985,0.972016,0.846629,0.658282,0.146958,0.478415,0.0391684,0.285898,0.470168,0.0575839,0.758959,0.42489,0.374918,0.445445,0.191709,0.999017,0.839,0.581738,0.588657,0.360376,0.29322,0.744627,0.540712,0.103162,0.52456,0.869505,0.542563,0.0386271,0.327468,0.888277,0.49919,0.450948,0.919876,0.678152,0.965183,0.592654,0.955152,0.803078,0.551308,0.221012,0.395424,0.0177667,0.409792,0.386919,0.755422,0.556273,0.899571,0.0316505,0.563084,0.470091,0.734284,0.400227,0.718277,0.983771,0.389584,0.541928,0.62252,0.290862,0.583394,0.790959,0.558938,0.898715,0.472944,0.736126,0.118176,0.473747,0.0569663,0.139377,0.246306,0.790369,0.239484,0.809321,0.337127,0.208015,0.649111,0.416363,0.514185,0.55161,0.541454,0.0440721,0.697031,0.221988,0.0290558,0.0125548,0.817995,0.329078,0.0512353,0.286404,0.259738,0.93753,0.629046,0.214938,0.603158,0.275686,0.8833,0.0742367,0.449083,0.452571,0.630461,0.149082,0.560606,0.433667,0.345667,0.930524,0.890765,0.787347,0.950375,0.0999268,0.422551,0.0520064,0.191163,0.31729,0.599735,0.38309,0.214713,0.999495,0.149918,0.296697,0.902621,0.771741,0.210256,0.00520498,0.0707311,0.119212,0.666585,0.153561,0.425058,0.353945,0.683867,0.116971,0.292938,0.194607,0.989081,0.454509,0.527553,0.287217,0.24524,0.759723,0.877484,0.613286,0.822354,0.530635,0.995977,0.665263,0.566437,0.947376,0.650483,0.393378,0.619935,0.698988,0.278545,0.0978288,0.103674,0.244883,0.613968,0.29021,0.867848,0.0251171,0.11417,0.246375,0.504185,0.802867,0.270206,0.846549,0.55574,0.0731648,0.547911,0.545322,0.570182,0.126286,0.956514,0.226475,0.684251,0.633763,0.794297,0.243235,0.488909,0.341724,0.219647,0.372178,0.721207,0.487034,0.589091,0.589587,0.133942,0.574523,0.116007,0.950147,0.312558,0.193723,0.696311,0.425127,0.942957,0.269335,0.406262,0.126218,0.482093,0.557446,0.583543,0.714302,0.558246,0.661175,0.151803,0.195936,0.275325,0.739386,0.196806,0.643637,0.119167,0.200685,0.101147,0.893482,0.614575,0.98029,0.711805,0.615806,0.383838,0.932911,0.354457,0.149567,0.904897,0.396107,0.489185,0.222989,0.75322,0.573994,0.60725,0.235435,0.963409,0.128302,0.36008,0.388956,0.77618,0.524831,0.330068,0.488852,0.219206,0.748249,0.163004,0.0215748,0.913368,0.234706,0.626461,0.253207,0.0499638,0.385157,0.585699,0.699684,0.776169,0.70703,0.620255,0.76849,0.866053,0.273705,0.776297,0.593896,0.987349,0.253853,0.615984,0.685359,0.732459,0.107806,0.729878,0.426281,0.549393,0.631294,0.263045,0.707007,0.43014,0.986814,0.245817,0.0821237,0.666224,0.257075,0.297219,0.886366,0.232,0.8668,0.539327,0.365012,0.185882,0.491648,0.452738,0.708492,0.6838,0.352223,0.623156,0.199099,0.263775,0.634104,0.575817,0.785689,0.229775,0.71691,0.147101,0.858782,0.328494,0.685297,0.446661,0.332089,0.777622,0.965358,0.996716,0.212726,0.102892,0.315848,0.0744766,0.68549,0.761349,0.683338,0.074279,0.280703,0.632638,0.398087,0.942399,0.948319,0.653447,0.0182719,0.942339,0.700412,0.385358,0.19319,0.0912625,0.440262,0.446903,0.177662,0.750554,0.929484,0.609425,0.357356,0.825928,0.222857,0.440584,0.141521,0.782747,0.824036,0.359427,0.80635,0.755348,0.404985,0.552056,0.0374993,0.604942,0.619719,0.564918,0.221143,0.308018,0.354614,0.812767,0.671757,0.643545,0.493266,0.683914,0.334144,0.884657,0.0526132,0.996147,0.966591,0.529857,0.0280588,0.24556,0.840249,0.458884,0.196053,0.553122,0.0535079,0.786855,0.793896,0.702892,0.654935,0.360102,0.699931,0.422053,0.244234,0.861674,0.271497,0.572804,0.437459,0.181916,0.790807,0.296252,0.210748,0.185194,0.925572,0.212781,0.557938,0.547248,0.547339,0.720423,0.454068,0.82701,0.430159,0.234733,0.335442,0.403552,0.471948,0.943931,0.906258,0.899941,0.989239,0.523344,0.361803,0.0347355,0.201805,0.104651,0.168101,0.0152176,0.533786,0.892253,0.957771,0.667145,0.200043,0.175829,0.463735,0.156331,0.789896,0.0734615,0.20035,0.465358,0.235513,0.107072,0.382593,0.276241,0.373041,0.552409,0.156357,0.662562,0.96818,0.146703,0.557036,0.475478,0.300043,0.221314,0.0274541,0.535473,0.47327,0.314302,0.0393744,0.131374,0.423071,0.924775,0.891638,0.509465,0.437725,0.961999,0.302477,0.110685,0.0986274,0.270315,0.722822,0.707061,0.196814,0.329268,0.327286,0.258729,0.0206859,0.122895,0.67573,0.248119,0.518012,0.0396098,0.596121,0.165231,0.634824,0.111596,0.966601,0.793876,0.226373,0.625143,0.945852,0.428547,0.804774,0.132321,0.294104,0.51495,0.722569,0.232249,0.481129,0.102167,0.24741,0.874048,0.192328,0.0945586,0.989575,0.0705801,0.420638,0.66793,0.73204,0.863698,0.956629,0.0835057,0.185592,0.754798,0.844492,0.436156,0.876562,0.529648,0.234604,0.0539578,0.664542,0.621551,0.881822,0.0732002,0.735571,0.277732,0.430096,0.613824,0.506791,0.103568,0.331652,0.494386,0.0258986,0.353193,0.186621,0.824906,0.962883,0.758203,0.470512,0.342442,0.899241,0.644047,0.263507,0.604948,0.814849,0.959889,0.614871,0.991875,0.0770754,0.945409,0.431,0.0638995,0.810929,0.992165,0.836388,0.408828,0.119654,0.00684237,0.962165,0.966114,0.774324,0.0589364,0.840063,0.566727,0.490038,0.441134,0.450934,0.944156,0.558017,0.750565,0.576722,0.0212947,0.636981,0.873747,|0.153655,0.980681,0.283899,0.18707,0.502821,0.66274,0.901975,0.428343,0.847951,0.177939,0.648621,0.558733,0.847404,0.159486,0.539845,0.999252,0.872096,0.328674,0.728094,0.964499,0.313387,0.58811,0.831134,0.4063,0.99387,0.662437,0.830863,0.776874,0.780066,0.91502,0.520032,0.0901956,0.115209,0.455658,0.333734,0.459112,0.539633,0.191366,0.135908,0.598249,0.497964,0.633519,0.260815,0.277524,0.0544441,0.820453,0.688918,0.750298,0.658525,0.629672,0.136719,0.918034,0.945643,0.908513,0.425441,0.0703362,0.641696,0.399453,0.539014,0.069495,0.717417,0.675791,0.836972,0.585288,0.711151,0.909687,0.736901,0.975413,0.515131,0.520288,0.804211,0.709701,0.344463,0.463632,0.0937448,0.604779,0.0375933,0.709305,0.64777,0.229694,0.397015,0.869714,0.129286,0.0245601,0.695206,0.569319,0.828252,0.82674,0.101855,0.723353,0.234166,0.756252,0.527387,0.580923,0.407176,0.962676,0.490168,0.108394,0.107806,0.180994,0.607161,0.905784,0.238692,0.809274,0.15715,0.460908,0.354236,0.849238,0.583629,0.944263,0.755814,0.11564,0.942124,0.651378,0.307312,0.238948,0.856765,0.506218,0.497971,0.602605,0.786714,0.950756,0.647911,0.25832,0.885195,0.976111,0.963594,0.650662,0.378968,0.518138,0.0190758,0.421414,0.368574,0.982937,0.712727,0.235701,0.0154101,0.18914,0.876885,0.319156,0.132515,0.779845,0.27295,0.885583,0.693672,0.221066,0.00155818,0.0991833,0.538564,0.0510749,0.825523,0.429155,0.615807,0.753343,0.410668,0.0174775,0.904283,0.540846,0.30134,0.126906,0.921897,0.325439,0.691064,0.21889,0.981569,0.505812,0.355012,0.361228,0.508603,0.212095,0.0159984,0.236418,0.709167,0.927587,0.611443,0.0635817,0.0445966,0.385862,0.598,0.492026,0.482056,0.899455,0.226697,0.621009,0.229034,0.427067,0.0687771,0.950713,0.668498,0.0289064,0.823658,0.0319178,0.130961,0.267033,0.658842,0.69418,0.809251,0.678281,0.322963,0.428926,0.2152,0.419535,0.333607,0.746976,0.588969,0.881154,0.607094,0.256876,0.250614,0.0518137,0.624971,0.655895,0.793047,0.382459,0.343661,0.35642,0.570444,0.145234,0.743606,0.991476,0.2802,0.774799,0.403119,0.298923,0.520196,0.321139,0.409973,0.505229,0.218781,0.594919,0.640091,0.666544,0.874221,0.993541,0.250995,0.0827796,0.568617,0.417541,0.902599,0.497402,0.124484,0.438803,0.206142,0.320733,0.632104,0.949011,0.635023,0.0799851,0.655821,0.502651,0.462201,0.748211,0.481134,0.18021,0.66782,0.963955,0.272246,0.38559,0.76007,0.519563,0.0764893,0.943656,0.7282,0.319151,0.575105,0.448281,0.529377,0.911705,0.464868,0.282685,0.997138,0.923145,0.152504,0.909439,0.477351,0.16065,0.608047,0.464832,0.484245,0.627201,0.139978,0.281513,0.308965,0.0817934,0.312129,0.544047,0.235186,0.0549948,0.869686,0.592779,0.675106,0.851018,0.196564,0.448002,0.379656,0.132168,0.334928,0.664501,0.228859,0.386585,0.798097,0.0188077,0.971009,0.899074,0.823061,0.0607848,0.400406,0.960279,0.501259,0.497837,0.45729,0.387437,0.206556,0.0302211,0.571689,0.076457,0.558693,0.384427,0.479751,0.315742,0.415914,0.611671,0.759002,0.350997,0.228646,0.496381,0.261195,0.704038,0.992251,0.181426,0.643448,0.61625,0.273379,0.791174,0.448017,0.479885,0.196522,0.198156,0.390074,0.7675,0.222508,0.973248,0.586896,0.965005,0.166256,0.116784,0.93778,0.752857,0.103749,0.310803,0.342966,0.735657,0.975463,0.964144,0.0726674,0.654706,0.453184,0.213008,0.44553,0.38074,0.276623,0.706748,0.914137,0.448226,0.622905,0.414261,0.390793,0.432949,0.938616,0.892748,0.687293,0.647045,0.429018,0.785114,0.485665,0.535776,0.617116,0.193851,0.0829961,0.121135,0.873384,0.606528,0.846246,0.385188,0.832507,0.85505,0.740471,0.992473,0.751225,0.472445,0.198289,0.2693,0.343259,0.406005,0.244734,0.972617,0.0454022,0.668331,0.190919,0.406213,0.939381,0.669011,0.0147364,0.994493,0.707904,0.367535,0.187203,0.596981,0.299766,0.0161495,0.807906,0.0484867,0.512252,0.22841,0.340817,0.883861,0.114406,0.0281926,0.317587,0.35491,0.927276,0.207417,0.348491,0.560904,0.93874,0.345038,0.219089,0.113305,0.69781,0.395089,0.832677,0.443872,0.550567,0.533818,0.473581,0.226794,0.604823,0.197208,0.0640739,0.219787,0.96585,0.751685,0.546766,0.760414,0.30453,0.160724,0.532694,0.00342083,0.49491,0.741594,0.24781,0.333844,0.272536,0.996363,0.131534,0.154676,0.0382572,0.300848,0.53863,0.247005,0.359253,0.628865,0.394557,0.462691,0.512928,0.844518,0.352957,0.70867,0.653782,0.103378,0.394869,0.163996,0.767624,0.750938,0.841181,0.554021,0.434402,0.813763,0.981191,0.73638,0.691307,0.304361,0.0664994,0.67163,0.431059,0.817431,0.543917,0.731186,0.722217,0.112261,0.568159,0.677496,0.9549,0.65278,0.705468,0.717377,0.766713,0.424323,0.902855,0.160191,0.135632,0.463491,0.960183,0.27244,0.446798,0.883976,0.331301,0.562168,0.15303,0.756226,0.176814,0.283834,0.553634,0.657469,0.235978,0.180692,0.114983,0.453793,0.0308381,0.834926,0.734467,0.210439,0.269789,0.994517,0.768645,0.757552,0.744879,0.229874,0.43699,0.0201678,0.568959,0.745087,0.0358092,0.0875553,0.773371,0.781608,0.655799,0.228914,0.941525,0.250478,0.0472116,0.0526092,0.843051,0.867779,0.578262,0.474406,0.940428,0.644189,0.195205,0.0960011,0.381814,0.192229,0.285512,0.548285,0.291906,0.405482,0.606937,0.0374256,0.228009,0.945225,0.263008,0.652935,0.583417,0.133539,0.0894389,0.404238,0.266611,0.976804,0.848893,0.853842,0.551076,0.447491,0.222823,0.725637,0.389409,0.710947,0.920045,0.994071,0.929543,0.0896046,0.647239,0.248425,0.782129,0.158412,0.654924,0.487829,0.551532,0.714661,0.223561,0.0163144,0.595981,0.964659,0.941703,0.875392,0.274508,0.477323,0.609555,0.373359,0.778333,0.329147,0.849765,0.137116,0.0736581,0.20484,0.498603,0.75835,0.586072,0.173362,0.763505,0.448417,0.181255,0.837263,0.867769,0.0386627,0.0994377,0.979992,0.304123,0.564686,0.364494,0.602693,0.342394,0.110736,0.524055,0.069861,0.113081,0.57759,0.767131,0.068881,0.541148,0.199935,0.14882,0.746394,0.123768,0.821546,0.821202,0.552437,0.995927,0.320552,0.198263,0.989238,0.857134,0.949379,0.70989,0.748783,0.720732,0.802413,0.572012,0.799228,0.863961,0.821785,0.480647,0.877085,0.466793,0.234357,0.652042,0.847981,0.162332,0.328295,0.462801,0.210826,0.0566156,0.144798,0.344608,0.184324,0.584519,0.107449,0.776664,0.19865,0.191569,0.649034,0.207771,0.46925,0.686631,0.402626,0.823662,0.494462,0.971116,0.235354,0.276923,0.0619552,0.271548,0.487724,0.153063,0.203218,0.801554,0.827438,0.673016,0.31637,0.19657,0.642542,0.404826,0.507508,0.331096,0.893167,0.562035,0.0245078,0.876435,0.830525,0.95279,0.690423,0.549476,0.458689,0.400657,0.567719,0.977219,0.182158,0.809535,0.778666,0.868057,0.773278,0.602186,0.424849,0.274707,0.644139,0.499415,0.327291,0.852774,0.599548,0.411659,0.834451,0.794209,0.255758,0.678339,0.672099,0.663402,0.163125,0.143616,0.662081,0.0600799,0.000819981,0.121634,0.59013,0.863781,0.237162,0.554058,0.412447,0.966413,0.892144,0.27689,0.998441,0.641653,0.158261,0.435812,0.840627,0.260537,0.6738,0.519473,0.00813925,0.283431,0.0345989,0.117185,0.659289,0.906387,0.11185,0.234541,0.821944,0.119432,0.597376,0.415829,0.843808,0.869145,0.692975,0.495839,0.588218,0.549959,0.530607,0.527136,0.507779,0.150643,0.810166,0.366876,0.432823,0.308569,0.0998369,0.428476,0.864508,0.66973,0.415312,0.220249,0.829503,0.517816,0.192618,0.154317,0.348726,0.724291,0.410301,0.0434744,0.80422,0.613407,0.601709,0.248465,0.353026,0.0392992,0.359435,0.90423,0.916167,0.377116,0.949906,0.171548,0.79011,0.628982,0.297174,0.0115057,0.0861788,0.0325169,0.404282,0.99438,0.169895,0.179717,0.124622,0.204416,0.915285,0.251015,0.629822,0.152977,0.599646,0.340947,0.28459,0.335511,0.819641,0.0412897,0.259263,0.32044,0.803795,0.463205,0.261098,0.617871,0.440561,0.985429,0.683587,0.152104,0.195058,0.974595,0.998678,0.515069,0.0589527,0.37068,0.912934,0.414305,0.0835615,0.311779,0.0193897,0.0271945,0.214301,0.587878,0.116256,0.637419,0.76592,0.65411,0.116145,0.638091,0.592203,0.585244,0.201283,0.597665,0.748933,0.311267,0.963883,0.0721365,0.546748,0.499443,0.394676,0.933203,0.448543,0.215844,0.388698,0.759704,0.892803,0.853515,0.032486,0.908966,0.0976549,0.5424,0.249637,0.658245,0.748528,0.997212,0.0637811,0.703073,0.353302,0.696503,0.884013,0.0993278,0.043846,0.520787,0.58459,0.978524,0.711501,0.257357,0.670148,0.325193,0.28701,0.723734,0.408489,0.712889,0.529413,0.444865,0.281403,0.676297,0.934343,0.530648,0.349344,0.438016,0.592986,0.989102,0.729737,0.405291,0.824859,0.853995,0.047543,0.508231,0.803764,0.490839,0.624202,0.250875,0.639516,0.92781,0.56796,0.863504,0.582977,0.104324,0.596762,0.810202,0.831599,0.77335,0.108798,0.503707,0.206822,0.348297,0.238289,0.377924,0.50712,0.780377,0.248157,0.311922,0.0214739,0.0949071,0.616799,0.787048,0.511107,0.993968,0.875522,0.784241,0.0793673,0.823577,0.670379,0.974094,0.252521,0.388845,0.759199,0.246394,0.91606,0.0643649,0.836916,0.255611,0.418987,0.502002,0.781392,0.130363,0.513719,0.157898,0.791263,0.677952,0.281896,0.817202,0.745976,0.530707,0.354713,0.888644,0.644297,0.755943,0.458244,0.515126,0.109236,0.56862,0.0103688,0.153194,0.109102,0.310139,0.490091,0.342006,0.412589,0.460482,0.181655,0.821996,0.647913,0.0552239,0.625324,0.83723,0.647469,0.0583298,0.367137,0.296961,0.473094,0.653704,0.933051,0.965509,0.341332,0.915183,0.578773,|0.426466,0.0467093,0.40561,0.575808,0.489247,0.062247,0.31196,0.318483,0.401459,0.392502,0.326733,0.905942,0.468953,0.553026,0.342977,0.762724,0.106976,0.0789979,0.143931,0.895857,0.958167,0.467829,0.162591,0.297711,0.730058,0.0437151,0.297041,0.860227,0.825833,0.6826,0.351864,0.84471,0.0378088,0.176698,0.182363,0.977304,0.645949,0.303286,0.439448,0.860813,0.497449,0.554193,0.717316,0.126603,0.456686,0.5919,0.921708,0.508896,0.47811,0.0484685,0.282211,0.137468,0.169371,0.737798,0.980226,0.22513,0.00593567,0.176713,0.662522,0.44648,0.335812,0.861549,0.578819,0.0436642,0.643184,0.437211,0.579639,0.221689,0.27291,0.0704052,0.659294,0.441962,0.0954865,0.0812427,0.221792,0.0252367,0.857916,0.18657,0.0546389,0.403379,0.398238,0.336795,0.622786,0.291941,0.144685,0.575825,0.650846,0.00363934,0.692706,0.192253,0.649117,0.607321,0.373402,0.993688,0.263078,0.792868,0.343655,0.595084,0.915034,0.494737,0.638016,0.807234,0.455947,0.486469,0.406299,0.0429608,0.0597247,0.223534,0.836472,0.842966,0.308538,0.521699,0.903597,0.0579689,0.647967,0.853217,0.0678502,0.214598,0.019152,0.645749,0.513509,0.984503,0.874665,0.237814,0.601106,0.439061,0.868246,0.320212,0.650057,0.0907256,0.649112,0.33312,0.082942,0.365633,0.149777,0.564468,0.841154,0.614586,0.123874,0.892775,0.338395,0.126545,0.826127,0.983836,0.323559,0.842066,0.376008,0.547254,0.994217,0.194959,0.941543,0.716,0.369992,0.632772,0.962312,0.597756,0.445208,0.991416,0.0783524,0.242773,0.478329,0.318561,0.43789,0.930425,0.148699,0.0260276,0.38475,0.317461,0.130811,0.342863,0.593022,0.350001,0.344995,0.567331,0.524055,0.386443,0.642188,0.951563,0.883451,0.165472,0.114918,0.0289319,0.685236,0.205024,0.857579,0.830522,0.412432,0.836986,0.516248,0.866406,0.85287,0.863329,0.617243,0.894814,0.747008,0.215779,0.734697,0.848206,0.636219,0.970812,0.398365,0.00370306,0.547769,0.11174,0.152738,0.0191787,0.555964,0.432082,0.665926,0.802059,0.554418,0.85843,0.803879,0.294509,0.515844,0.299171,0.716352,0.072233,0.0393685,0.205456,0.600615,0.917913,0.546656,0.871453,0.577578,0.882472,0.245422,0.548752,0.302672,0.157059,0.337036,0.863086,0.98933,0.833262,0.930211,0.108455,0.00919431,0.357937,0.685307,0.993901,0.0242314,0.0964727,0.1764,0.329618,0.5763,0.0822898,0.806115,0.996579,0.47103,0.951543,0.0669581,0.926897,0.401443,0.538415,0.621424,0.681501,0.246606,0.226994,0.511965,0.352907,0.369537,0.111015,0.919505,0.419045,0.839623,0.546627,0.292785,0.0125474,0.514311,0.667302,0.906514,0.22863,0.51253,0.776726,0.201928,0.335511,0.966919,0.730235,0.635424,0.425965,0.666214,0.876062,0.589073,0.761346,0.875589,0.687175,0.197081,0.986762,0.0264282,0.201289,0.7806,0.856739,0.272455,0.26635,0.900977,0.576974,0.606475,0.834871,0.270088,0.503758,0.815726,0.451114,0.167234,0.87285,0.590956,0.21448,0.587741,0.533019,0.565597,0.338745,0.414411,0.330004,0.970848,0.0300673,0.604755,0.593368,0.13976,0.390749,0.802466,0.464176,0.05946,0.2533,0.777945,0.0256323,0.914711,0.759923,0.55869,0.576326,0.949439,0.410189,0.100705,0.555736,0.0895183,0.0306386,0.814079,0.434384,0.143367,0.201519,0.0222232,0.208286,0.578069,0.751342,0.59107,0.48721,0.859873,0.555619,0.89814,0.85513,0.0445763,0.870244,0.29662,0.581508,0.995999,0.0082255,0.900932,0.364224,0.0736308,0.0562745,0.452792,0.959824,0.07597,0.878662,0.1564,0.980872,0.551347,0.596399,0.0284218,0.359847,0.106102,0.624763,0.328423,0.406404,0.472056,0.890899,0.891967,0.295626,0.777437,0.461547,0.631191,0.0538872,0.465446,0.666755,0.582252,0.268658,0.221817,0.253081,0.427058,0.544321,0.883777,0.163886,0.984082,0.381913,0.414679,0.590044,0.43737,0.569766,0.0750247,0.433742,0.594474,0.0916335,0.763333,0.945944,0.761667,0.121213,0.483371,0.665404,0.425186,0.706152,0.425907,0.236276,0.212608,0.857141,0.22566,0.922391,0.504517,0.676581,0.993449,0.692241,0.579271,0.296061,0.777021,0.804871,0.382314,0.885163,0.782203,0.626883,0.632451,0.742943,0.977001,0.989243,0.303482,0.947503,0.352565,0.0117182,0.752325,0.727206,0.223564,0.440218,0.160154,0.568335,0.856927,0.372225,0.131441,0.826245,0.616791,0.576087,0.704455,0.976715,0.615341,0.311786,0.78266,0.16385,0.467163,0.81289,0.573864,0.516467,0.215738,0.666641,0.979933,0.171656,0.853714,0.104746,0.586691,0.943537,0.219262,0.706931,0.942529,0.231806,0.00328815,0.18957,0.705179,0.50701,0.898328,0.0878751,0.90193,0.680857,0.165618,0.108761,0.261096,0.590928,0.472622,0.544203,0.515836,0.146261,0.659541,0.247254,0.653788,0.711825,0.5395,0.177311,0.750759,0.301349,0.078133,0.809255,0.743573,0.821494,0.782088,0.0120723,0.52033,0.991707,0.20195,0.186537,0.489986,0.63241,0.434093,0.122095,0.10147,0.385605,0.327951,0.530299,0.774481,0.152005,0.247748,0.658728,0.462537,0.0645563,0.312044,0.0227969,0.475865,0.729797,0.342072,0.394722,0.236261,0.416187,0.557013,0.885873,0.910094,0.220389,0.849414,0.93087,0.178886,0.695568,0.687011,0.885318,0.334981,0.504837,0.329663,0.745742,0.684031,0.42194,0.135785,0.148398,0.922362,0.989916,0.681355,0.0362846,0.195271,0.0334861,0.449287,0.688924,0.268577,0.228953,0.137959,0.431668,0.923892,0.368378,0.19894,0.578009,0.233705,0.738205,0.670517,0.628105,0.830051,0.439977,0.883869,0.74276,0.1311,0.216597,0.56336,0.8661,0.685202,0.513024,0.861575,0.36513,0.585468,0.356995,0.300648,0.540322,0.0471155,0.196313,0.611953,0.00608975,0.0999687,0.160695,0.564617,0.277727,0.290254,0.0100603,0.997381,0.484743,0.763316,0.782454,0.171947,0.295732,0.521929,0.631146,0.46274,0.0609973,0.708621,0.726587,0.785172,0.604358,0.506595,0.104409,0.821874,0.0431812,0.921259,0.282823,0.484191,0.615629,0.357891,0.34805,0.332215,0.00934708,0.0267665,0.918058,0.45002,0.78328,0.22931,0.713374,0.452196,0.30391,0.662107,0.0912514,0.0160192,0.642992,0.736869,0.909337,0.911261,0.209219,0.191557,0.432488,0.0138758,0.265837,0.552082,0.124632,0.837672,0.0746098,0.550662,0.88249,0.553076,0.27492,0.123683,0.826998,0.529461,0.599759,0.279811,0.03455,0.244574,0.168895,0.0578471,0.431871,0.705182,0.528098,0.795349,0.536758,0.856461,0.621844,0.241542,0.322672,0.373357,0.108957,0.971965,0.480116,0.968971,0.370636,0.0231177,0.405592,0.171348,0.768129,0.1885,0.0350986,0.912417,0.489684,0.455408,0.56197,0.7317,0.389191,0.889378,0.16354,0.0857841,0.281884,0.665182,0.245996,0.472825,0.64625,0.128893,0.695574,0.105463,0.58834,0.643504,0.372172,0.640819,0.228387,0.822583,0.433548,0.0160927,0.433135,0.210326,0.665308,0.404813,0.552935,0.514501,0.656477,0.0873178,0.728976,0.662174,0.841627,0.21477,0.765293,0.667097,0.472298,0.327219,0.61056,0.134373,0.226704,0.802668,0.40186,0.887875,0.904502,0.226305,0.0133876,0.897033,0.974462,0.243159,0.547504,0.283755,0.198595,0.943965,0.944358,0.518943,0.0963734,0.182699,0.0938523,0.187566,0.0151642,0.900025,0.554625,0.936219,0.061213,0.458134,0.0105895,0.432673,0.309536,0.491775,0.0369591,0.253535,0.44316,0.0364443,0.6575,0.602011,0.978364,0.412095,0.266651,0.319894,0.235078,0.342625,0.0304468,0.0356108,0.543763,0.690818,0.387434,0.118277,0.652852,0.491675,0.735918,0.433664,0.570595,0.737515,0.698103,0.764458,0.855784,0.424407,0.158072,0.368823,0.89017,0.615227,0.346092,0.613295,0.623741,0.00835657,0.107482,0.647801,0.752804,0.98816,0.970517,0.976786,0.768562,0.746696,0.867323,0.116864,0.223887,0.453219,0.797066,0.749426,0.056551,0.901444,0.964327,0.116555,0.747154,0.785068,0.790272,0.654169,0.528343,0.699701,0.407087,0.737535,0.59914,0.491399,0.475545,0.421333,0.362158,0.782707,0.0433735,0.679946,0.54298,0.636022,0.60167,0.34205,0.479562,0.573977,0.0270133,0.109737,0.926926,0.318515,0.160913,0.0754676,0.139419,0.332648,0.16212,0.476417,0.695017,0.918966,0.528996,0.572561,0.927588,0.430071,0.344429,0.961438,0.326043,0.811263,0.436587,0.937305,0.051888,0.272238,0.482815,0.940582,0.821018,0.334423,0.777747,0.272649,0.0317914,0.814537,0.0356357,0.579557,0.64682,0.180947,0.66169,0.976801,0.556526,0.208304,0.737762,0.326761,0.819605,0.625571,0.579616,0.703991,0.946175,0.568057,0.0877467,0.280718,0.607654,0.250795,0.574715,0.636367,0.686448,0.106357,0.915607,0.458432,0.0181917,0.114811,0.638773,0.973457,0.515135,0.567143,0.126358,0.0393732,0.534763,0.251522,0.212272,0.0216188,0.0943869,0.444922,0.51035,0.760413,0.921489,0.084873,0.582138,0.235368,0.00672656,0.0183066,0.87442,0.591364,0.672155,0.993478,0.110334,0.272247,0.59056,0.828346,0.567219,0.174694,0.433755,0.677686,0.990336,0.0355151,0.1268,0.361642,0.858605,0.0296434,0.39389,0.78523,0.259197,0.995337,0.839655,0.455752,0.874515,0.336104,0.691476,0.459475,0.36694,0.38605,0.347847,0.198235,0.44171,0.350258,0.821592,0.608892,0.907272,0.704109,0.835725,0.112229,0.991383,0.825131,0.265315,0.412559,0.254665,0.57681,0.897206,0.335789,0.561855,0.251107,0.709064,0.419303,0.00322896,0.25951,0.439124,0.626977,0.855899,0.730682,0.0921742,0.458902,0.26676,0.299683,0.431289,0.518598,0.416118,0.541864,0.41818,0.253279,0.333283,0.684382,0.374231,0.423701,0.367018,0.0637927,0.635892,0.124708,0.313139,0.450102,0.837213,0.610932,0.00409162,0.221178,0.184912,0.729486,0.621683,0.674514,0.692363,0.640099,0.273694,0.123864,0.903031,0.388907,0.815221,0.542359,0.737309,0.419633,0.336983,0.587155,0.51153,|0.797203,0.0882234,0.140903,0.787336,0.61907,0.477327,0.548647,0.905109,0.193121,0.684387,0.491711,0.385933,0.475768,0.660295,0.0713648,0.155786,0.201831,0.524626,0.454567,0.266186,0.536989,0.808192,0.331243,0.873121,0.764236,0.72195,0.89878,0.0356246,0.0683722,0.435845,0.136371,0.541251,0.156996,0.324355,0.796637,0.125395,0.0331336,0.631937,0.293921,0.499577,0.0153992,0.937474,0.264014,0.923506,0.873402,0.720873,0.122335,0.872538,0.432472,0.429849,0.065829,0.365569,0.907046,0.776736,0.675447,0.175304,0.734031,0.705105,0.636194,0.373281,0.0221347,0.626311,0.502768,0.644763,0.246167,0.0518363,0.0200517,0.211911,0.971366,0.85823,0.20542,0.157838,0.668205,0.129359,0.54659,0.356791,0.920397,0.369955,0.770213,0.239779,0.848446,0.190414,0.476129,0.0595678,0.111255,0.338459,0.725603,0.668184,0.371771,0.292739,0.0562713,0.781244,0.161125,0.0842839,0.815555,0.212094,0.55535,0.715753,0.701634,0.500409,0.217436,0.574846,0.988807,0.135662,0.209667,0.888337,0.654968,0.95511,0.726582,0.58871,0.758914,0.463179,0.484562,0.758861,0.67325,0.459915,0.289603,0.879634,0.970629,0.842144,0.693896,0.753787,0.362548,0.330297,0.0355297,0.0035637,0.865743,0.0929053,0.470316,0.186763,0.826812,0.195741,0.988072,0.841326,0.496829,0.765547,0.0209435,0.338668,0.8167,0.132416,0.753186,0.801315,0.282056,0.32638,0.811202,0.352727,0.0900909,0.976223,0.0873184,0.434862,0.151873,0.105141,0.316829,0.212934,0.422474,0.767235,0.235456,0.909455,0.665897,0.0964053,0.212041,0.484682,0.239797,0.504525,0.140901,0.339511,0.656223,0.169342,0.808895,0.89074,0.0154733,0.780489,0.603384,0.533486,0.454793,0.463022,0.119694,0.657845,0.259749,0.236785,0.0376139,0.900443,0.555363,0.257826,0.441706,0.894812,0.790384,0.0688506,0.0303654,0.629094,0.0185977,0.48634,0.287307,0.543035,0.102078,0.634182,0.971848,0.250948,0.362807,0.997002,0.401582,0.301231,0.513996,0.109112,0.0414292,0.371469,0.615064,0.0451694,0.358356,0.00700712,0.683255,0.353892,0.402976,0.483487,0.121066,0.713285,0.912925,0.859555,0.726989,0.818982,0.410756,0.520173,0.947749,0.883024,0.54516,0.718893,0.562168,0.438132,0.514312,0.427124,0.165181,0.501061,0.0700214,0.313637,0.554573,0.355698,0.0527042,0.391037,0.577952,0.655659,0.531022,0.149396,0.392266,0.650097,0.817255,0.715983,0.568216,0.870968,0.975451,0.717552,0.577733,0.0512013,0.342383,0.55044,0.587962,0.841339,0.646889,0.95103,0.852921,0.296178,0.211303,0.551403,0.584362,0.343822,0.36057,0.814466,0.668114,0.793041,0.510021,0.756786,0.00897819,0.25746,0.0618588,0.771943,0.479121,0.989697,0.0674709,0.629217,0.491086,0.229072,0.65099,0.821528,0.413162,0.272136,0.369189,0.961834,0.952617,0.658258,0.74217,0.282124,0.308607,0.852401,0.225024,0.300338,0.750328,0.0542693,0.265037,0.345186,0.77934,0.497967,0.708518,0.112679,0.384802,0.543812,0.40598,0.709085,0.27539,0.666108,0.835229,0.187786,0.0500584,0.636082,0.21612,0.244035,0.143065,0.735007,0.261368,0.500549,0.229614,0.304026,0.337955,0.22279,0.231917,0.852195,0.224544,0.702136,0.119314,0.228545,0.0594461,0.811808,0.779872,0.856941,0.488406,0.831522,0.323374,0.49231,0.996495,0.449173,0.854908,0.124922,0.0625337,0.412182,0.557373,0.548202,0.00510484,0.777663,0.0186714,0.59995,0.0055483,0.342521,0.194339,0.949241,0.594272,0.504965,0.929899,0.000986814,0.279901,0.0373937,0.75693,0.351895,0.511423,0.789492,0.245111,0.554946,0.709325,0.861919,0.546872,0.911623,0.818687,0.195724,0.528332,0.52294,0.276351,0.422796,0.165443,0.707082,0.996758,0.917937,0.478541,0.359672,0.0330135,0.889595,0.958121,0.285538,0.0094496,0.310976,0.229489,0.223161,0.933044,0.218265,0.205486,0.0110619,0.0231224,0.476354,0.522432,0.945621,0.573138,0.0704597,0.464728,0.933305,0.870814,0.820936,0.877592,0.870795,0.160882,0.18851,0.656943,0.884164,0.509099,0.0810381,0.575211,0.809495,0.497648,0.605864,0.232308,0.313466,0.835263,0.699666,0.0426469,0.518457,0.358582,0.41125,0.291543,0.31995,0.83081,0.295856,0.476846,0.526533,0.0668935,0.139447,0.482657,0.0610948,0.474807,0.797482,0.275949,0.151184,0.859391,0.0459355,0.176516,0.641333,0.39845,0.771471,0.633851,0.653554,0.0702066,0.675263,0.796701,0.92909,0.179647,0.0164977,0.908041,0.147921,0.0177404,0.623039,0.596975,0.207026,0.843388,0.50939,0.714881,0.413004,0.632777,0.806153,0.855252,0.0772967,0.270551,0.349631,0.0565275,0.585468,0.0835437,0.175902,0.517357,0.681868,0.0300635,0.604953,0.0105819,0.532156,0.0117813,0.498639,0.700333,0.846608,0.532988,0.672763,0.565284,0.44487,0.923541,0.50342,0.299253,0.235168,0.905931,0.0159907,0.341858,0.0305281,0.996952,0.881096,0.300583,0.371889,0.692609,0.683721,0.0050326,0.282536,0.465243,0.156596,0.95843,0.879337,0.211309,0.386363,0.849863,0.702679,0.67589,0.267844,0.860474,0.755897,0.213239,0.865946,0.906208,0.0310081,0.201489,0.576714,0.172727,0.237423,0.453098,0.0941263,0.591639,0.153673,0.140077,0.230553,0.157685,0.429906,0.255494,0.412095,0.674714,0.142134,0.27125,0.158358,0.768718,0.720296,0.247804,0.156293,0.776369,0.54183,0.90688,0.183173,0.162118,0.478812,0.128181,0.761096,0.500462,0.756461,0.405276,0.012424,0.859141,0.390993,0.246903,0.809293,0.098096,0.960594,0.128442,0.743935,0.419755,0.930019,0.162482,0.331858,0.332747,0.747576,0.915418,0.241927,0.476714,0.153024,0.895972,0.944273,0.28135,0.57102,0.672338,0.45251,0.46879,0.33757,0.506524,0.514811,0.639626,0.508859,0.896575,0.702806,0.169382,0.450255,0.385291,0.453574,0.276629,0.299744,0.942936,0.51396,0.920962,0.646727,0.337571,0.122694,0.962788,0.493689,0.0621823,0.59647,0.471528,0.0525467,0.716017,0.0167167,0.821855,0.37857,0.531459,0.661126,0.837802,0.736169,0.411278,0.184766,0.302178,0.650306,0.532694,0.107831,0.13369,0.915556,0.874426,0.610282,0.913975,0.423482,0.364449,0.260265,0.296788,0.716136,0.372197,0.0909531,0.04455,0.0281063,0.0880823,0.619716,0.0924588,0.582432,0.29006,0.154336,0.944939,0.829778,0.387065,0.225856,0.231384,0.708477,0.109872,0.890009,0.334424,0.700595,0.00930351,0.833281,0.491214,0.813204,0.558078,0.271748,0.739463,0.786526,0.842277,0.40449,0.686055,0.995507,0.366711,0.170051,0.324078,0.166131,0.0920661,0.392253,0.294891,0.48004,0.852065,0.57813,0.516348,0.445406,0.162492,0.82272,0.67384,0.0836496,0.977742,0.267765,0.215371,0.492212,0.880866,0.0624123,0.750979,0.186945,0.329839,0.451288,0.287276,0.676882,0.671515,0.35519,0.46976,0.180598,0.591747,0.68435,0.458912,0.884084,0.776482,0.150027,0.147923,0.584057,0.855162,0.441049,0.103488,0.980399,0.500041,0.587688,0.681747,0.852039,0.745062,0.780324,0.103656,0.712835,0.19163,0.312903,0.605258,0.234966,0.734942,0.97976,0.179467,0.289873,0.397029,0.266038,0.093013,0.286839,0.0675331,0.803259,0.114906,0.229305,0.277974,0.575828,0.280173,0.652136,0.427355,0.178601,0.837497,0.81104,0.337963,0.178423,0.052166,0.458641,0.369778,0.099065,0.0765558,0.636441,0.766522,0.143925,0.279233,0.233869,0.717302,0.046828,0.742408,0.825946,0.972235,0.38254,0.948245,0.379289,0.662202,0.219375,0.0852402,0.0854324,0.222281,0.00687778,0.483375,0.163631,0.62878,0.894222,0.592142,0.73262,0.183974,0.630462,0.997341,0.559819,0.698437,0.275683,0.307655,0.157565,0.917781,0.509779,0.168525,0.922242,0.519958,0.186439,0.90888,0.2844,0.537114,0.355265,0.245621,0.760927,0.212328,0.0741854,0.876105,0.474069,0.0985209,0.664042,0.618868,0.380598,0.753829,0.152371,0.569848,0.953227,0.341933,0.263098,0.655088,0.141555,0.00696772,0.484256,0.2109,0.723984,0.707091,0.670483,0.491107,0.291699,0.0200366,0.487981,0.753294,0.866141,0.367562,0.0323017,0.151149,0.673826,0.903955,0.734053,0.635328,0.7116,0.724509,0.956944,0.505909,0.253646,0.472985,0.232114,0.720396,0.58655,0.116218,0.823091,0.853012,0.0467871,0.653791,0.0347704,0.908936,0.0760886,0.366654,0.0458549,0.492769,0.576477,0.0489488,0.295692,0.0476182,0.215407,0.272578,0.037217,0.325965,0.940418,0.454018,0.425381,0.0100355,0.366157,0.670286,0.547652,0.94889,0.69459,0.553655,0.426854,0.66067,0.343674,0.827544,0.204646,0.496164,0.564114,0.030274,0.123859,0.992559,0.589999,0.344327,0.633334,0.554379,0.962427,0.71169,0.874498,0.452932,0.42634,0.48001,0.837147,0.592765,0.774268,0.378042,0.774481,0.597246,0.194387,0.00440776,0.0880749,0.120419,0.953364,0.109907,0.883407,0.00689822,0.584742,0.233445,0.074747,0.148493,0.902176,0.595976,0.454544,0.89334,0.25974,0.143164,0.0575029,0.589871,0.366192,0.695644,0.793875,0.742885,0.785492,0.843458,0.458961,0.199502,0.0743083,0.783647,0.210209,0.855797,0.714835,0.705378,0.114999,0.914262,0.659796,0.956111,0.240839,0.262508,0.551758,0.4459,0.43798,0.808618,0.772094,0.559071,0.208992,0.72471,0.265936,0.947787,0.604563,0.1979,0.104155,0.963036,0.5639,0.232743,0.51006,0.912998,0.356919,0.789292,0.922525,0.952592,0.739166,0.62824,0.187612,0.713397,0.722462,0.0915121,0.0540216,0.400364,0.998556,0.76509,0.178107,0.0681925,0.946675,0.241008,0.348256,0.639242,0.94414,0.731066,0.779103,0.409363,0.56383,0.755382,0.300053,0.584168,0.0432643,0.929266,0.60985,0.760033,0.612852,0.992617,0.352899,0.782041,0.571971,0.397073,0.194882,0.849543,0.681768,0.218913,0.0250686,0.871517,0.908194,0.474922,0.578084,0.223021,0.50209,0.863323,0.483131,0.70329,0.808778,0.958465,0.583747,0.24488,0.786903,0.497173,0.562508,|0.932435,0.281032,0.485171,0.468357,0.969281,0.484359,0.924142,0.754845,0.551843,0.462875,0.457595,0.0869182,0.0262037,0.131374,0.128624,0.462489,0.274934,0.0171325,0.802718,0.29837,0.0769904,0.730413,0.936994,0.160751,0.872091,0.0101458,0.843111,0.526991,0.394754,0.458687,0.826263,0.169333,0.613162,0.882936,0.505746,0.0785224,0.725246,0.340909,0.247468,0.075567,0.790343,0.629856,0.629664,0.439038,0.832743,0.55483,0.186859,0.558305,0.956741,0.104536,0.020506,0.84598,0.193389,0.409983,0.690441,0.209362,0.593293,0.0383811,0.782546,0.372736,0.627086,0.82185,0.186127,0.821371,0.838928,0.101247,0.129139,0.0359107,0.0259719,0.483801,0.794178,0.691401,0.752192,0.116963,0.847255,0.140051,0.656254,0.248562,0.255317,0.23639,0.548031,0.64198,0.352259,0.272289,0.58697,0.780947,0.463251,0.523,0.124783,0.458038,0.783712,0.5865,0.857887,0.136588,0.402853,0.320162,0.395157,0.60185,0.0337802,0.791669,0.995219,0.812506,0.521969,0.515365,0.10274,0.772738,0.289919,0.632773,0.00195849,0.991191,0.18587,0.813916,0.886186,0.206578,0.679519,0.795745,0.827501,0.569898,0.0571517,0.20395,0.260734,0.43652,0.00397199,0.145763,0.236727,0.736747,0.727941,0.497777,0.630728,0.101206,0.750492,0.22879,0.253264,0.629996,0.148902,0.931786,0.0520594,0.383384,0.652289,0.406385,0.558884,0.944866,0.886696,0.423387,0.947986,0.346097,0.701207,0.405264,0.850468,0.971563,0.00375736,0.747209,0.947515,0.367613,0.105239,0.2945,0.271894,0.100299,0.681995,0.740192,0.552628,0.689105,0.059245,0.945503,0.74999,0.702622,0.664348,0.604256,0.708539,0.972514,0.269616,0.353937,0.996469,0.988954,0.701593,0.0762252,0.183869,0.362749,0.46102,0.905332,0.187981,0.59954,0.5698,0.109711,0.883299,0.0461688,0.776704,0.0213368,0.157184,0.738588,0.669445,0.479716,0.862426,0.783381,0.969975,0.893158,0.9141,0.769756,0.0424921,0.805785,0.850708,0.984984,0.207868,0.233135,0.39164,0.322068,0.449179,0.841073,0.886534,0.964309,0.992543,0.696207,0.292525,0.795264,0.86178,0.174827,0.98611,0.0806664,0.925302,0.808931,0.562753,0.368251,0.7899,0.581467,0.0288432,0.922282,0.417542,0.0610596,0.94556,0.123733,0.952708,0.720214,0.807109,0.394987,0.742015,0.877311,0.717566,0.321527,0.676837,0.0421801,0.515407,0.475997,0.250762,0.516453,0.494394,0.801184,0.432043,0.956556,0.0479046,0.0588297,0.617398,0.810673,0.926739,0.0279371,0.974999,0.521201,0.000201046,0.403753,0.751629,0.426863,0.295623,0.0107362,0.0566797,0.630643,0.665722,0.809907,0.0206964,0.607917,0.369465,0.185914,0.600947,0.894439,0.482929,0.0962499,0.968716,0.90501,0.47491,0.967609,0.777969,0.160385,0.607823,0.605761,0.142334,0.0116979,0.273366,0.774981,0.173752,0.599598,0.595636,0.160849,0.195318,0.955458,0.486194,0.0790771,0.973249,0.698893,0.0180277,0.94974,0.831295,0.299518,0.830699,0.564547,0.202637,0.0550904,0.0651557,0.309985,0.948326,0.975167,0.408538,0.636965,0.830684,0.600573,0.738253,0.828253,0.158925,0.126432,0.823826,0.42151,0.119378,0.37925,0.0559204,0.0652009,0.88794,0.310264,0.747866,0.763268,0.0258539,0.797975,0.404688,0.347811,0.259435,0.469007,0.456824,0.123778,0.639059,0.564993,0.624842,0.0675756,0.406304,0.550216,0.840621,0.761006,0.161354,0.243302,0.654812,0.497696,0.574931,0.962481,0.190037,0.0226064,0.78934,0.593079,0.36238,0.967494,0.39237,0.0332183,0.648756,0.886179,0.178295,0.875184,0.126448,0.889283,0.377492,0.142715,0.0303321,0.569803,0.863455,0.953105,0.99187,0.453027,0.384747,0.777964,0.762173,0.94667,0.823146,0.262074,0.697052,0.308843,0.147549,0.878758,0.532988,0.875298,0.297787,0.804008,0.712878,0.281544,0.133376,0.14991,0.346973,0.933679,0.142319,0.377475,0.147031,0.646542,0.27239,0.547242,0.831059,0.163001,0.307475,0.171915,0.754608,0.0342682,0.484518,0.407024,0.121412,0.430078,0.31092,0.428407,0.285887,0.36846,0.374262,0.494876,0.899517,0.482831,0.111802,0.869102,0.588555,0.136399,0.838718,0.104864,0.285555,0.834093,0.0394102,0.153316,0.0290704,0.602997,0.917231,0.332622,0.933982,0.884617,0.174191,0.0682608,0.57214,0.160324,0.614237,0.827841,0.919693,0.23902,0.71359,0.792743,0.490688,0.353001,0.194504,0.904941,0.654831,0.511237,0.803132,0.732515,0.221366,0.238001,0.121322,0.968773,0.767358,0.57066,0.270326,0.0192045,0.822135,0.0647137,0.654025,0.876731,0.0192848,0.800366,0.891132,0.978635,0.464144,0.539793,0.484038,0.30268,0.146004,0.433713,0.701038,0.255011,0.967761,0.884223,0.356072,0.860439,0.167457,0.86763,0.0160155,0.86979,0.585226,0.0266418,0.429761,0.0294484,0.832461,0.890535,0.736266,0.87636,0.0301806,0.172632,0.88807,0.766059,0.837193,0.0138149,0.937623,0.576769,0.325915,0.10668,0.933479,0.307175,0.274426,0.123106,0.983859,0.801938,0.554745,0.743738,0.645692,0.443532,0.0477297,0.92644,0.778754,0.372696,0.376344,0.00104195,0.222864,0.895903,0.114243,0.00420052,0.39813,0.672118,0.795683,0.416902,0.923953,0.458824,0.862226,0.384556,0.609531,0.481575,0.807479,0.319197,0.130431,0.0103139,0.0491652,0.641972,0.607447,0.655529,0.130758,0.00495207,0.177848,0.725441,0.24545,0.901491,0.846056,0.851227,0.824136,0.0911482,0.816574,0.320736,0.86415,0.599203,0.225725,0.323816,0.347826,0.992879,0.0110309,0.569504,0.45691,0.599544,0.659774,0.0882892,0.429622,0.0611479,0.663496,0.292101,0.306424,0.401144,0.0362669,0.0236045,0.929321,0.740227,0.35352,0.421798,0.835328,0.471722,0.23132,0.651154,0.889788,0.221417,0.219169,0.892424,0.202133,0.179897,0.449335,0.355613,0.360182,0.345361,0.285338,0.623913,0.964682,0.137989,0.384062,0.193965,0.13599,0.598021,0.595688,0.805769,0.724988,0.393671,0.0347078,0.21918,0.535377,0.825024,0.275718,0.451281,0.0942576,0.429935,0.522784,0.683878,0.924195,0.367013,0.0944026,0.68074,0.671115,0.853327,0.966461,0.987351,0.476373,0.597372,0.629154,0.107946,0.106727,0.815424,0.379666,0.624453,0.22086,0.193882,0.0791699,0.550021,0.643471,0.239184,0.218109,0.26828,0.617381,0.46343,0.661977,0.862766,0.0513963,0.161006,0.494749,0.547956,0.646245,0.441726,0.776842,0.927853,0.739876,0.870799,0.00177032,0.429751,0.680027,0.902855,0.773567,0.995481,0.186573,0.0552858,0.997328,0.414265,0.87524,0.206282,0.338801,0.760668,0.72796,0.469122,0.931939,0.630821,0.496726,0.457454,0.129512,0.698642,0.15468,0.349318,0.0340081,0.877838,0.83333,0.335381,0.0515998,0.355368,0.388312,0.0101637,0.702137,0.112343,0.415455,0.716409,0.364229,0.112613,0.671015,0.778055,0.396519,0.857112,0.644814,0.220313,0.06574,0.262657,0.655169,0.739695,0.607966,0.835794,0.796639,0.235085,0.0363302,0.385108,0.619785,0.785236,0.0988012,0.789967,0.836907,0.353847,0.121472,0.626912,0.531645,0.687697,0.0237756,0.177795,0.386432,0.448383,0.91328,0.294303,0.750297,0.472307,0.0400717,0.518625,0.118683,0.994699,0.0293275,0.80793,0.869877,0.244042,0.749869,0.666448,0.567566,0.4782,0.110022,0.127799,0.0478336,0.540178,0.745743,0.802142,0.841726,0.159539,0.815546,0.0227497,0.701604,0.819525,0.793711,0.375927,0.439398,0.0663483,0.807096,0.730158,0.871308,0.82237,0.298679,0.75213,0.315583,0.476274,0.793385,0.378517,0.725359,0.209332,0.756137,0.742562,0.311334,0.697505,0.968655,0.695807,0.649928,0.933185,0.444001,0.433575,0.325257,0.475812,0.698993,0.335986,0.356241,0.712163,0.702729,0.130886,0.233552,0.0868977,0.917661,0.811808,0.753171,0.101472,0.65869,0.412181,0.434533,0.808389,0.50943,0.396665,0.207818,0.319446,0.598871,0.683663,0.447343,0.609097,0.741506,0.317617,0.345619,0.0462153,0.342304,0.161854,0.684873,0.342886,0.978832,0.178426,0.63285,0.177984,0.515381,0.691156,0.366645,0.45079,0.254327,0.793594,0.137684,0.951917,0.536336,0.313702,0.442955,0.642902,0.970121,0.921322,0.275045,0.63419,0.47996,0.101364,0.815376,0.88542,0.269772,0.503715,0.0399455,0.875766,0.77832,0.111505,0.555348,0.610439,0.175083,0.562516,0.910461,0.123483,0.60263,0.596921,0.462629,0.969784,0.858642,0.289626,0.438515,0.479301,0.207411,0.775014,0.952644,0.615091,0.0394577,0.113475,0.973023,0.0284104,0.637302,0.924664,0.904881,0.827892,0.384877,0.693793,0.0236549,0.0587683,0.201237,0.370182,0.230547,0.413177,0.607565,0.525617,0.225835,0.673657,0.309286,0.103434,0.466179,0.478315,0.590201,0.714448,0.749019,0.508925,0.129211,0.60462,0.284218,0.704733,0.13806,0.841552,0.709394,0.358413,0.852371,0.342755,0.935696,0.623154,0.500527,0.899754,0.409403,0.885128,0.0137139,0.754976,0.0967016,0.928556,0.0717779,0.824286,0.828833,0.473355,0.861548,0.220297,0.43454,0.965509,0.371254,0.28113,0.128805,0.844098,0.20148,0.603311,0.0295171,0.638731,0.486455,0.82847,0.917348,0.721691,0.90884,0.199262,0.30927,0.902281,0.0771766,0.532978,0.173999,0.86225,0.752129,0.514272,0.917205,0.205727,0.941771,0.422359,0.0141671,0.617902,0.91611,0.711156,0.484389,0.478215,0.038072,0.610044,0.748907,0.347554,0.0859867,0.518399,0.668352,0.112149,0.558211,0.789618,0.873034,0.533558,0.990214,0.491587,0.530628,0.207436,0.337711,0.775062,0.0738655,0.691482,0.233505,0.327101,0.98027,0.321482,0.661918,0.0515383,0.497888,0.968544,0.371078,0.613306,0.286402,0.259975,0.155849,0.0683543,0.41676,0.0706371,0.408159,0.0181556,0.839821,0.526273,0.57041,0.979582,0.634668,0.285217,0.719847,0.318959,0.0531803,0.461176,0.831845,0.396549,0.0881169,0.293717,0.172162,0.149634,0.38807,0.923577,0.234312,0.869369,0.997167,0.00514048,0.261394,0.151906,|0.3579,0.12111,0.535305,0.752034,0.658867,0.126323,0.799032,0.935873,0.498,0.537875,0.186947,0.675808,0.51047,0.580566,0.550185,0.979096,0.995903,0.833623,0.826181,0.679429,0.197779,0.813018,0.561048,0.176596,0.177983,0.344054,0.764851,0.652343,0.208382,0.221199,0.760982,0.0670363,0.975869,0.947054,0.296695,0.864058,0.7022,0.830428,0.691346,0.123556,0.66475,0.324863,0.060288,0.615928,0.949857,0.199986,0.422121,0.51936,0.924144,0.100914,0.246049,0.165743,0.0207612,0.415478,0.0953833,0.749297,0.648118,0.790141,0.443257,0.663807,0.901659,0.174506,0.0240182,0.89664,0.0995216,0.964764,0.0508093,0.37256,0.0788212,0.830311,0.514431,0.639747,0.473292,0.0471894,0.581194,0.19868,0.405366,0.748,0.514473,0.842166,0.413431,0.162058,0.0293335,0.663592,0.27909,0.536075,0.774302,0.654782,0.207983,0.751513,0.702424,0.938523,0.508261,0.952907,0.2191,0.99386,0.952802,0.390631,0.982758,0.509876,0.36699,0.726166,0.97157,0.913712,0.450662,0.962031,0.896771,0.484185,0.674131,0.0879909,0.840591,0.839018,0.261645,0.229243,0.590353,0.0831417,0.554307,0.774056,0.110861,0.751953,0.325766,0.803229,0.0726975,0.98295,0.949185,0.985201,0.609944,0.249039,0.174894,0.0537226,0.517418,0.116002,0.641611,0.901822,0.458654,0.00127524,0.657965,0.0989916,0.716303,0.89559,0.640403,0.929369,0.643951,0.096868,0.819986,0.0841534,0.319779,0.0898066,0.579917,0.0812152,0.454813,0.598383,0.578949,0.432029,0.46861,0.70022,0.977312,0.989836,0.913609,0.310289,0.186009,0.421715,0.400781,0.965205,0.406724,0.424463,0.627029,0.5979,0.17576,0.579796,0.742284,0.671824,0.690907,0.531127,0.951684,0.774433,0.385318,0.224137,0.198359,0.717289,0.450383,0.566045,0.175493,0.908141,0.631084,0.169243,0.0260168,0.513254,0.87738,0.149642,0.925379,0.257998,0.825673,0.0498549,0.0518166,0.377104,0.546977,0.112654,0.0903345,0.710199,0.784911,0.761675,0.817604,0.832901,0.737896,0.7704,0.486316,0.955326,0.0631743,0.4008,0.363971,0.111635,0.709011,0.953597,0.438343,0.927283,0.194493,0.596368,0.0809972,0.281229,0.407085,0.876306,0.173026,0.913834,0.0862135,0.929847,0.743881,0.276765,0.462952,0.976146,0.180429,0.653456,0.267759,0.437244,0.532292,0.313034,0.427632,0.947993,0.0194408,0.484949,0.270199,0.950232,0.453507,0.819406,0.0496898,0.861208,0.381423,0.218872,0.487404,0.171266,0.525368,0.304613,0.361502,0.644201,0.420361,0.524488,0.036938,0.254713,0.34534,0.245182,0.88344,0.742626,0.686303,0.487524,0.816885,0.731075,0.567518,0.673093,0.214162,0.134047,0.963706,0.926503,0.961575,0.927513,0.449392,0.457722,0.866056,0.307791,0.145221,0.0134828,0.466585,0.374435,0.7288,0.506705,0.967814,0.134811,0.0306033,0.146932,0.48442,0.969474,0.504968,0.647344,0.128885,0.211863,0.618051,0.0525255,0.418305,0.746236,0.480945,0.435113,0.107065,0.542878,0.506403,0.684421,0.775746,0.631494,0.214267,0.199965,0.950756,0.288223,0.968852,0.937999,0.124852,0.279641,0.912664,0.692882,0.92217,0.171454,0.459236,0.602511,0.432969,0.188153,0.422693,0.0209903,0.36688,0.545995,0.15999,0.0763867,0.853095,0.480289,0.769118,0.247318,0.852449,0.394463,0.801293,0.429892,0.167886,0.772172,0.791392,0.297436,0.151562,0.754165,0.192376,0.669118,0.116286,0.64445,0.72374,0.61493,0.981435,0.239241,0.436864,0.416317,0.252054,0.718205,0.585367,0.159707,0.647166,0.763115,0.869535,0.963114,0.0623991,0.646089,0.902327,0.181891,0.906617,0.835604,0.335074,0.198015,0.920827,0.346966,0.818959,0.290327,0.38013,0.155007,0.774376,0.624868,0.92633,0.816892,0.577135,0.753668,0.565934,0.785834,0.691284,0.702988,0.658505,0.45655,0.664199,0.0418035,0.669671,0.690748,0.454196,0.10111,0.819823,0.966655,0.06859,0.344089,0.189071,0.316964,0.708455,0.454384,0.899647,0.41565,0.0888752,0.237917,0.837484,0.290616,0.0342126,0.339254,0.987136,0.333981,0.356653,0.369598,0.535946,0.40345,0.977714,0.819611,0.377134,0.965457,0.57796,0.0167397,0.664275,0.510055,0.389261,0.274295,0.816197,0.231195,0.845319,0.927744,0.5537,0.942534,0.0586981,0.601613,0.178792,0.799275,0.901231,0.0388145,0.712824,0.0552097,0.451316,0.57358,0.225144,0.0271922,0.355602,0.804616,0.262606,0.25001,0.106028,0.122949,0.399117,0.849162,0.223542,0.258402,0.0196857,0.121446,0.834467,0.595694,0.407526,0.092539,0.00468069,0.45629,0.111334,0.766315,0.272111,0.13252,0.613547,0.609839,0.0609123,0.325761,0.583152,0.416423,0.872731,0.493239,0.105478,0.418499,0.417558,0.667182,0.64881,0.434926,0.174064,0.426151,0.179337,0.876897,0.00419199,0.800576,0.961203,0.233932,0.414493,0.193903,0.271869,0.713574,0.386694,0.52615,0.837262,0.0851187,0.889557,0.932037,0.302347,0.219663,0.589985,0.0621158,0.797231,0.434945,0.373608,0.271985,0.171663,0.273409,0.865101,0.0866911,0.483715,0.72795,0.269281,0.212328,0.27622,0.80378,0.438973,0.493266,0.911363,0.130486,0.943672,0.795986,0.381278,0.865932,0.834347,0.501746,0.766984,0.646168,0.370329,0.628216,0.16721,0.98181,0.822206,0.973355,0.971286,0.995957,0.966152,0.536672,0.866821,0.29311,0.852948,0.873444,0.831999,0.730182,0.429688,0.937971,0.308449,0.0536479,0.122503,0.162064,0.36687,0.713461,0.942947,0.272465,0.224395,0.918756,0.457366,0.00157446,0.107455,0.49125,0.717716,0.332588,0.837693,0.916853,0.980557,0.910653,0.474502,0.26551,0.959444,0.244829,0.113071,0.122993,0.347747,0.245566,0.0593423,0.584896,0.591854,0.529027,0.55683,0.374717,0.861463,0.414797,0.839025,0.487079,0.966046,0.27642,0.077781,0.555936,0.138599,0.231325,0.465631,0.937602,0.622911,0.711726,0.0267889,0.822654,0.0410405,0.617397,0.000759184,0.286303,0.307054,0.934266,0.443599,0.735583,0.538714,0.0414026,0.365206,0.667362,0.523071,0.0903016,0.421982,0.883778,0.0516405,0.148191,0.0688539,0.724085,0.642852,0.954271,0.911273,0.791668,0.843844,0.598159,0.797335,0.812529,0.267468,0.412666,0.00903314,0.663922,0.0983884,0.182116,0.575047,0.208224,0.713776,0.680109,0.983827,0.548949,0.141456,0.222057,0.060077,0.248989,0.260755,0.22128,0.464407,0.261804,0.17056,0.235799,0.511158,0.978644,0.625877,0.482856,0.577676,0.647623,0.338746,0.551881,0.438334,0.997019,0.846085,0.533727,0.512872,0.447097,0.212873,0.666495,0.665398,0.202652,0.934185,0.172517,0.55936,0.879952,0.0232326,0.572867,0.0649633,0.604036,0.0573602,0.324237,0.084895,0.441773,0.349365,0.97799,0.805757,0.996359,0.896256,0.974177,0.199264,0.778184,0.273569,0.801753,0.514205,0.140176,0.477295,0.0281167,0.431489,0.998575,0.777775,0.553155,0.633163,0.943755,0.298153,0.0184391,0.214916,0.834582,0.993635,0.754892,0.359401,0.0135818,0.54195,0.917762,0.61514,0.98192,0.961967,0.808387,0.424319,0.954176,0.665918,0.738886,0.578596,0.369956,0.340313,0.238535,0.560958,0.0844943,0.0740106,0.988261,0.821862,0.913515,0.484352,0.800997,0.0795351,0.291998,0.775459,0.197905,0.193166,0.559512,0.0463791,0.835564,0.7959,0.527153,0.530216,0.956021,0.230159,0.19488,0.80594,0.173993,0.98074,0.951474,0.086244,0.964882,0.560178,0.706307,0.0814987,0.472718,0.438412,0.305421,0.952569,0.384762,0.321718,0.484315,0.747343,0.945601,0.328669,0.7492,0.374735,0.349711,0.828072,0.51848,0.195663,0.754084,0.996822,0.465227,0.610412,0.385171,0.322579,0.336719,0.862613,0.555351,0.292014,0.0742152,0.225331,0.188481,0.887424,0.216844,0.589787,0.261037,0.108214,0.117953,0.89011,0.348117,0.372259,0.795806,0.302902,0.440192,0.43219,0.332431,0.950696,0.671048,0.333141,0.687555,0.136377,0.977003,0.836836,0.493656,0.752683,0.197781,0.929925,0.196827,0.279524,0.595006,0.215299,0.755586,0.0485464,0.252354,0.688166,0.721326,0.772168,0.792035,0.858024,0.437528,0.43865,0.761425,0.984065,0.930953,0.941014,0.565416,0.217178,0.728636,0.856183,0.701006,0.906018,0.599145,0.556113,0.662647,0.48289,0.845334,0.191853,0.148984,0.217462,0.827288,0.279098,0.0382763,0.537221,0.464139,0.521102,0.387085,0.884486,0.88807,0.400918,0.420736,0.690298,0.268521,0.241553,0.026924,0.886349,0.820701,0.460723,0.8703,0.399838,0.359172,0.383801,0.529255,0.860736,0.238687,0.278124,0.241708,0.175931,0.31038,0.153675,0.842509,0.0635166,0.357342,0.052343,0.42429,0.851208,0.912594,0.042235,0.657687,0.785946,0.835174,0.110284,0.48382,0.0633821,0.314828,0.00345671,0.0119289,0.743306,0.899509,0.874155,0.770288,0.96199,0.651204,0.247665,0.0964571,0.204944,0.832029,0.75949,0.677303,0.980173,0.704473,0.416604,0.0390496,0.372048,0.756547,0.504543,0.81809,0.376446,0.0647966,0.595864,0.427161,0.544301,0.576219,0.465382,0.295969,0.797666,0.14105,0.321512,0.568986,0.86442,0.974053,0.465194,0.080345,0.424039,0.863844,0.772039,0.249924,0.305615,0.134151,0.560773,0.923294,0.929077,0.113174,0.625121,0.764705,0.456611,0.151351,0.061935,0.507029,0.626144,0.480358,0.150105,0.256327,0.830584,0.709035,0.482748,0.486139,0.845419,0.403347,0.405905,0.992441,0.813435,0.849711,0.831405,0.408728,0.697563,0.258678,0.496126,0.820005,0.666155,0.903754,0.124892,0.0377516,0.557699,0.42037,0.650455,0.768135,0.274557,0.937148,0.956453,0.00250077,0.632886,0.179782,0.944192,0.506517,0.830953,0.521836,0.540782,0.353296,0.103966,0.439481,0.264687,0.323062,0.0169109,0.069634,0.941173,0.342313,0.996228,0.802815,0.991833,0.668401,0.0916268,0.165649,0.538788,0.403383,0.588438,0.165831,0.720056,0.0403653,0.235988,0.440157,0.87179,0.550448,0.962886,0.253513,0.68919,0.465504,|0.924289,0.216481,0.515577,0.795193,0.537213,0.802306,0.657249,0.0334626,0.423648,0.432889,0.658704,0.925681,0.623614,0.526357,0.766634,0.812239,0.548023,0.0880471,0.384369,0.426312,0.647868,0.407173,0.514858,0.393784,0.53829,0.813838,0.23523,0.749855,0.266458,0.313998,0.709955,0.264852,0.12539,0.882597,0.251984,0.860435,0.960157,0.931138,0.508288,0.460778,0.558063,0.148537,0.626332,0.845477,0.305441,0.527231,0.320812,0.206023,0.026013,0.404673,0.7667,0.141892,0.95226,0.489655,0.712892,0.143415,0.46146,0.114239,0.80464,0.583042,0.608856,0.412788,0.947761,0.949488,0.833847,0.627546,0.686009,0.687371,0.00296319,0.156634,0.352264,0.0436267,0.205368,0.63973,0.739882,0.89588,0.307802,0.887026,0.293066,0.0409793,0.171627,0.442746,0.3341,0.0417401,0.941503,0.221353,0.866203,0.205528,0.528862,0.480014,0.85056,0.236375,0.491385,0.69812,0.883716,0.980719,0.529494,0.836712,0.850625,0.115123,0.398367,0.0330291,0.246096,0.681472,0.560066,0.810315,0.992484,0.200521,0.848933,0.454098,0.780235,0.802596,0.337939,0.0273973,0.015219,0.353652,0.322819,0.310345,0.458527,0.0967749,0.501564,0.257326,0.105771,0.00405693,0.354022,0.721745,0.966533,0.982286,0.161303,0.212167,0.183107,0.724423,0.519424,0.545217,0.525527,0.916029,0.453396,0.372674,0.39843,0.648039,0.178581,0.506423,0.626426,0.91744,0.280302,0.704809,0.681169,0.473329,0.94407,0.365396,0.264602,0.949656,0.385655,0.540262,0.470882,0.817321,0.88565,0.583906,0.662723,0.0924197,0.506934,0.631178,0.798319,0.213928,0.429927,0.588927,0.0265242,0.274437,0.329226,0.37196,0.527009,0.939862,0.592066,0.760653,0.335344,0.645282,0.975956,0.735271,0.263493,0.574627,0.224115,0.203508,0.0530719,0.813597,0.996944,0.916916,0.718702,0.634407,0.163466,0.556719,0.177082,0.325213,0.820415,0.780622,0.0450553,0.681599,0.537732,0.0966505,0.686307,0.709326,0.751999,0.87931,0.334503,0.710896,0.301487,0.548888,0.968038,0.709173,0.645617,0.655466,0.195731,0.431013,0.635921,0.391649,0.0450212,0.12129,0.261097,0.650181,0.324356,0.611714,0.650581,0.231388,0.331651,0.835821,0.238773,0.25366,0.762316,0.046461,0.425824,0.733201,0.794085,0.442126,0.630945,0.156717,0.129825,0.506623,0.454372,0.869569,0.330272,0.20819,0.272401,0.171689,0.0683391,0.745108,0.3382,0.244747,0.101322,0.409459,0.1412,0.451669,0.458455,0.0487459,0.690436,0.192426,0.494785,0.715776,0.894719,0.916599,0.16277,0.0119984,0.617449,0.395747,0.904202,0.60416,0.276186,0.0882235,0.451955,0.82278,0.568349,0.772977,0.315107,0.640494,0.874028,0.0499511,0.843708,0.756702,0.479384,0.316806,0.0819419,0.678998,0.676566,0.561077,0.906406,0.259803,0.304104,0.561608,0.309792,0.233908,0.489698,0.156503,0.830611,0.862255,0.0313987,0.581163,0.680837,0.0285574,0.738767,0.905662,0.0133587,0.7004,0.348123,0.742384,0.136813,0.126901,0.155556,0.91778,0.85272,0.998296,0.579302,0.555416,0.177236,0.0776913,0.180777,0.591026,0.501178,0.181695,0.234208,0.506285,0.180095,0.434387,0.121718,0.41364,0.797106,0.977169,0.148066,0.453067,0.661618,0.0749705,0.756066,0.824796,0.184206,0.414027,0.298725,0.0375625,0.0458272,0.20357,0.00206542,0.12579,0.914055,0.123345,0.26758,0.924565,0.422239,0.184148,0.765791,0.638089,0.751658,0.840325,0.784889,0.546363,0.369643,0.523191,0.364781,0.611051,0.437785,0.405306,0.899495,0.930831,0.54929,0.558458,0.539461,0.611626,0.435423,0.616981,0.240713,0.345424,0.548939,0.494276,0.164218,0.494989,0.687797,0.693966,0.657975,0.522024,0.687156,0.786078,0.340097,0.00520748,0.604423,0.680404,0.191934,0.830161,0.87328,0.590532,0.680324,0.663731,0.033769,0.57015,0.882701,0.232543,0.477328,0.905597,0.456359,0.914686,0.427343,0.659388,0.245608,0.915471,0.219491,0.974473,0.476217,0.762148,0.547995,0.391546,0.640788,0.938859,0.0675928,0.877251,0.964376,0.776378,0.21525,0.68275,0.56969,0.108364,0.998935,0.818587,0.157577,0.901253,0.439292,0.916882,0.363978,0.311499,0.176996,0.193117,0.676247,0.444983,0.0633723,0.137116,0.476923,0.731176,0.722371,0.0689942,0.693872,0.78095,0.29627,0.90101,0.751331,0.387775,0.801134,0.294702,0.399288,0.833517,0.517855,0.828244,0.240266,0.605532,0.406707,0.963383,0.450808,0.847987,0.120301,0.303646,0.147142,0.584144,0.0293509,0.890324,0.985123,0.216833,0.669229,0.0178992,0.870448,0.682578,0.46422,0.34031,0.505896,0.614186,0.0422252,0.767892,0.323614,0.464475,0.544336,0.016194,0.715702,0.182468,0.343982,0.73658,0.490925,0.106272,0.862409,0.928952,0.900143,0.369701,0.856724,0.757012,0.65498,0.672311,0.4641,0.755283,0.886473,0.552504,0.864534,0.962591,0.869336,0.397683,0.91125,0.380744,0.595363,0.728794,0.00762886,0.860127,0.607194,0.128102,0.590905,0.206172,0.436231,0.511776,0.405887,0.875303,0.916797,0.186737,0.669703,0.331087,0.767429,0.0881981,0.8732,0.942996,0.8736,0.22873,0.2683,0.136193,0.107266,0.147263,0.113844,0.405024,0.0587453,0.316243,0.451697,0.219123,0.925599,0.648884,0.539403,0.610197,0.766519,0.214701,0.623798,0.733034,0.0662956,0.0768443,0.288476,0.103704,0.772962,0.512551,0.209611,0.00142407,0.298439,0.262442,0.350725,0.288096,0.0552768,0.959427,0.719261,0.629188,0.325486,0.0164157,0.191597,0.904809,0.661303,0.463886,0.760608,0.0235413,0.290352,0.468605,0.0989305,0.0443599,0.410522,0.874443,0.936233,0.179179,0.212831,0.458549,0.466349,0.856034,0.220818,0.167396,0.879605,0.168725,0.249895,0.690271,0.301765,0.615688,0.349016,0.73837,0.830473,0.829046,0.670888,0.994022,0.682468,0.20631,0.549972,0.0151112,0.870028,0.35901,0.897248,0.622447,0.845341,0.0600523,0.579718,0.133722,0.202915,0.172816,0.876856,0.602856,0.625397,0.498755,0.417115,0.377491,0.898888,0.407523,0.728494,0.900385,0.887337,0.276415,0.648457,0.519249,0.542441,0.43527,0.723827,0.843138,0.479028,0.717246,0.343794,0.352393,0.968409,0.853187,0.359055,0.24048,0.222944,0.718414,0.644512,0.966873,0.428914,0.763532,0.233051,0.739881,0.613426,0.484071,0.337784,0.0535803,0.0539379,0.0939286,0.195171,0.953508,0.515229,0.220162,0.94871,0.744381,0.658194,0.949741,0.364893,0.485387,0.614891,0.277859,0.896741,0.495231,0.4264,0.201116,0.954911,0.943317,0.909166,0.564468,0.810672,0.721055,0.391666,0.717046,0.844105,0.643021,0.510285,0.831303,0.602534,0.650671,0.738685,0.391718,0.802127,0.889831,0.941513,0.937904,0.497188,0.907646,0.34004,0.989126,0.503233,0.757405,0.299211,0.545984,0.189944,0.343545,0.122873,0.841976,0.975849,0.473413,0.727431,0.556633,0.287564,0.857638,0.962481,0.860056,0.575451,0.672756,0.469648,0.811764,0.395705,0.579781,0.667737,0.678884,0.867683,0.331291,0.576798,0.0516684,0.0600305,0.631679,0.0628573,0.778382,0.0877494,0.405584,0.227124,0.691776,0.403501,0.787414,0.536232,0.83448,0.00379044,0.278507,0.378974,0.322177,0.0004614,0.970685,0.713048,0.478581,0.391103,0.163584,0.885937,0.674319,0.594557,0.424355,0.53426,0.0547172,0.528336,0.177567,0.62132,0.54619,0.00802529,0.3439,0.81648,0.120966,0.869761,0.186066,0.844862,0.87174,0.845878,0.518839,0.000193894,0.45737,0.131427,0.749489,0.737049,0.341876,0.711473,0.447167,0.262609,0.914623,0.406666,0.000510693,0.142047,0.257486,0.52413,0.919512,0.992498,0.765691,0.583513,0.380366,0.946047,0.404171,0.0606755,0.116198,0.558954,0.695733,0.178329,0.183966,0.0248134,0.226264,0.5017,0.579728,0.201792,0.857181,0.757308,0.853699,0.784659,0.220674,0.571061,0.112638,0.656493,0.0843325,0.0398854,0.000587285,0.80467,0.446224,0.253096,0.307651,0.923691,0.633518,0.802907,0.157674,0.556133,0.577359,0.589627,0.658036,0.291164,0.482289,0.419698,0.237557,0.277067,0.376484,0.63173,0.989194,0.0126616,0.743914,0.130713,0.476584,0.452618,0.598171,0.759456,0.812178,0.765427,0.360364,0.525304,0.533704,0.525381,0.0658181,0.450372,0.159167,0.316322,0.675898,0.180833,0.619848,0.998722,0.454967,0.24288,0.682222,0.594358,0.548729,0.661986,0.772808,0.495141,0.277564,0.799534,0.75114,0.184392,0.824548,0.79864,0.615996,0.419029,0.801459,0.00733113,0.420698,0.34732,0.162089,0.819266,0.381929,0.562315,0.968513,0.181152,0.183939,0.664059,0.666244,0.099528,0.867968,0.219024,0.278079,0.8983,0.276236,0.509824,0.0560281,0.588252,0.773892,0.476457,0.865174,0.217838,0.699902,0.096053,0.581793,0.653009,0.926808,0.396834,0.201542,0.944093,0.764522,0.801165,0.608616,0.81198,0.979078,0.17971,0.577401,0.800018,0.21451,0.895558,0.824229,0.32307,0.0898899,0.389107,0.668408,0.139253,0.186326,0.441057,0.887384,0.304375,0.582826,0.0912094,0.423487,0.482527,0.900908,0.698588,0.638029,0.137439,0.0226215,0.620192,0.519396,0.433013,0.221444,0.865779,0.567244,0.516023,0.35983,0.451028,0.565327,0.218476,0.939237,0.13193,0.377306,0.274798,0.242172,0.65069,0.408453,0.284553,0.863648,0.456599,0.103492,0.0713238,0.668151,0.0360485,0.408402,0.181803,0.481509,0.230783,0.197583,0.404418,0.423707,0.232798,0.818796,0.762006,0.961499,0.796114,0.533187,0.566487,0.50357,0.961154,0.0931709,0.625347,0.868659,0.955782,0.860808,0.24221,0.475859,0.879188,0.10922,0.312132,0.673451,0.959835,0.0844438,0.187267,0.916056,0.712445,0.00294691,0.586918,0.61726,0.986746,0.380393,0.13938,0.0257334,0.92372,0.938984,0.472788,0.114743,0.574059,0.274352,0.460951,0.0710352,0.00168812,0.143718,0.329081,0.620458,0.150559,0.578886,0.336087,0.199552,0.98182,0.990576,0.525245,0.0633636,0.138808,0.535811,|0.452254,0.3534,0.839664,0.680293,0.372027,0.437794,0.701315,0.467552,0.432086,0.614288,0.115676,0.540327,0.313289,0.0198621,0.711576,0.71317,0.211395,0.23087,0.865037,0.611643,0.839731,0.204313,0.617659,0.885674,0.0413052,0.656574,0.394468,0.000273585,0.51366,0.651517,0.23763,0.0888614,0.150707,0.0489519,0.595541,0.147637,0.00992876,0.231472,0.0545449,0.235333,0.473994,0.373291,0.674187,0.793202,0.1283,0.239705,0.473698,0.777719,0.0332439,0.0284679,0.0783224,0.741817,0.6579,0.0767468,0.731735,0.847272,0.475595,0.436592,0.611976,0.792791,0.605386,0.858094,0.0812091,0.733403,0.875508,0.278359,0.00932819,0.427752,0.454515,0.119897,0.935413,0.0534942,0.637467,0.440074,0.586532,0.137565,0.0615671,0.972195,0.484557,0.451521,0.593196,0.0708709,0.0826259,0.932469,0.586745,0.646861,0.743428,0.931878,0.903933,0.339076,0.35681,0.0577904,0.907444,0.978211,0.559517,0.162547,0.425135,0.325477,0.479207,0.73577,0.118312,0.604385,0.967295,0.00585061,0.348992,0.685869,0.578686,0.748019,0.693796,0.150605,0.362866,0.314651,0.344535,0.143273,0.324239,0.880644,0.356164,0.426176,0.141456,0.905842,0.958383,0.94021,0.117246,0.305883,0.628602,0.909892,0.505794,0.19443,0.839025,0.73788,0.858368,0.0314628,0.284714,0.268702,0.371093,0.831572,0.45277,0.569181,0.0728389,0.844838,0.704788,0.117675,0.835142,0.236979,0.745806,0.982873,0.662635,0.71765,0.324902,0.19021,0.00308824,0.538485,0.442485,0.3696,0.75624,0.64942,0.934797,0.170379,0.971233,0.102211,0.424519,0.496596,0.845692,0.903425,0.0473921,0.339212,0.00296533,0.802234,0.451714,0.63754,0.979216,0.595673,0.528402,0.875188,0.319555,0.960353,0.861967,0.43759,0.911486,0.217012,0.390689,0.16896,0.640649,0.991884,0.427976,0.082248,0.0357139,0.302113,0.818574,0.242211,0.892924,0.321025,0.935082,0.90034,0.88015,0.859797,0.645352,0.968158,0.482347,0.62743,0.080041,0.746009,0.981274,0.998953,0.940914,0.228503,0.780017,0.343934,0.585274,0.545528,0.259427,0.371862,0.33912,0.679435,0.667845,0.710691,0.102417,0.785485,0.437851,0.710505,0.526028,0.807213,0.294313,0.923703,0.0236678,0.238279,0.110956,0.265359,0.508047,0.920921,0.664828,0.390499,0.136847,0.783608,0.0694171,0.538087,0.099049,0.399521,0.896166,0.860536,0.249854,0.358603,0.45526,0.504945,0.620686,0.177914,0.646764,0.60486,0.515465,0.433152,0.79832,0.54367,0.568753,0.4924,0.430548,0.938193,0.339927,0.216264,0.053746,0.424056,0.615391,0.372542,0.47765,0.987216,0.371564,0.679026,0.868859,0.935204,0.544098,0.267176,0.192623,0.677284,0.312489,0.839042,0.903176,0.791909,0.911029,0.918661,0.25849,0.00832868,0.248132,0.293957,0.694311,0.748371,0.191707,0.0529408,0.861838,0.0510192,0.37589,0.939683,0.237593,0.220708,0.649309,0.928168,0.518354,0.803101,0.930915,0.735515,0.838901,0.250542,0.992583,0.92519,0.997766,0.825211,0.450276,0.896822,0.0330366,0.313684,0.229354,0.161884,0.468349,0.370423,0.155784,0.987923,0.231101,0.0221962,0.372811,0.0471984,0.920832,0.0836729,0.291284,0.427567,0.905955,0.644179,0.163939,0.865763,0.682571,0.388179,0.235907,0.509085,0.494331,0.369261,0.950322,0.204143,0.516296,0.406976,0.654314,0.592899,0.753667,0.854728,0.570257,0.0426711,0.910717,0.327528,0.4272,0.695387,0.11776,0.138679,0.126302,0.956654,0.66053,0.409007,0.263046,0.438683,0.353338,0.746504,0.2406,0.481622,0.937794,0.456354,0.840656,0.637844,0.699489,0.429398,0.489664,0.0290418,0.356439,0.755221,0.756152,0.463873,0.786433,0.698228,0.16287,0.772788,0.301242,0.93807,0.924415,0.393995,0.159091,0.86149,0.284857,0.404764,0.725074,0.789851,0.864602,0.262888,0.648275,0.680068,0.856859,0.258005,0.0373786,0.31127,0.241127,0.52479,0.223086,0.929053,0.44832,0.960541,0.731641,0.855645,0.845913,0.159436,0.144614,0.333656,0.264911,0.0327547,0.963509,0.804365,0.0347852,0.226083,0.486612,0.727686,0.0523396,0.246205,0.909527,0.744298,0.267269,0.496278,0.768561,0.0756783,0.499612,0.784388,0.452156,0.0631102,0.910002,0.184453,0.220306,0.440634,0.861608,0.419295,0.931918,0.0435044,0.332025,0.924674,0.947623,0.832819,0.953162,0.28981,0.859093,0.301774,0.689068,0.717734,0.149592,0.751432,0.456107,0.222333,0.879371,0.84075,0.254129,0.886955,0.24126,0.0298101,0.176198,0.280149,0.551065,0.40586,0.724016,0.0135695,0.971838,0.0485416,0.108976,0.300871,0.907522,0.806141,0.548216,0.00829303,0.545959,0.898844,0.689776,0.278123,0.487754,0.215552,0.403292,0.706165,0.273846,0.138906,0.627338,0.00852275,0.454574,0.104894,0.944341,0.960178,0.80693,0.34436,0.575134,0.640726,0.128349,0.49988,0.122196,0.614765,0.0966326,0.507639,0.338406,0.482817,0.293672,0.289416,0.746675,0.708031,0.817145,0.146083,0.327046,0.946205,0.825714,0.929722,0.939692,0.372138,0.19637,0.811111,0.524915,0.652471,0.872552,0.675401,0.0288072,0.873794,0.30561,0.181529,0.845243,0.135181,0.127506,0.300689,0.431061,0.590759,0.572517,0.111774,0.407329,0.103711,0.0539995,0.23116,0.268103,0.683813,0.441917,0.651052,0.84101,0.334701,0.495996,0.41236,0.891038,0.481319,0.298012,0.111417,0.0435004,0.091967,0.793031,0.659113,0.836213,0.820827,0.532658,0.597072,0.192765,0.717418,0.155559,0.360916,0.998952,0.745852,0.696565,0.603585,0.275835,0.593308,0.395075,0.833722,0.308422,0.000167251,0.902932,0.0432492,0.903488,0.17479,0.395126,0.250978,0.00422555,0.69882,0.51202,0.564876,0.829856,0.714808,0.353798,0.216731,0.0773581,0.0224493,0.555162,0.802325,0.674071,0.22929,0.0276865,0.00792915,0.861114,0.818557,0.986676,0.513599,0.525463,0.373647,0.406479,0.419777,0.549234,0.441725,0.352522,0.602274,0.982845,0.235178,0.392321,0.347914,0.462805,0.63805,0.479037,0.2052,0.426749,0.956233,0.34231,0.369113,0.871648,0.246796,0.834704,0.165185,0.12751,0.582915,0.881853,0.475687,0.451426,0.556302,0.962579,0.971126,0.0148625,0.75261,0.063707,0.827412,0.905628,0.626416,0.692464,0.251171,0.653509,0.652693,0.407696,0.0689538,0.146722,0.143631,0.772086,0.898782,0.42905,0.259775,0.381325,0.993158,0.869239,0.112631,0.828515,0.611459,0.376149,0.995564,0.68716,0.289982,0.579219,0.312376,0.824377,0.389866,0.38058,0.897814,0.741146,0.930935,0.760348,0.957624,0.199324,0.874746,0.799555,0.0524262,0.904526,0.666469,0.826863,0.0341575,0.0557888,0.704538,0.436063,0.491016,0.008928,0.479639,0.380768,0.236783,0.592953,0.93783,0.0567517,0.608298,0.81487,0.0808922,0.885342,0.142593,0.315308,0.187192,0.985785,0.0936975,0.0787662,0.919336,0.903762,0.155701,0.564356,0.0807325,0.610375,0.382577,0.513863,0.308362,0.989031,0.993299,0.663511,0.966715,0.420036,0.686665,0.57557,0.932152,0.0922128,0.789274,0.198873,0.641382,0.508754,0.0548001,0.86778,0.132584,0.540996,0.0937623,0.208456,0.18613,0.826322,0.41931,0.0592241,0.243759,0.336306,0.0301433,0.623468,0.167263,0.514326,0.320279,0.046988,0.527285,0.106279,0.604186,0.720637,0.196096,0.975829,0.634039,0.1441,0.493339,0.410718,0.515132,0.784963,0.992557,0.892883,0.408589,0.318355,0.771205,0.820394,0.590512,0.945251,0.224641,0.94368,0.323595,0.687951,0.465744,0.386719,0.302897,0.763193,0.812961,0.0446294,0.0986151,0.848332,0.467995,0.361464,0.384468,0.259169,0.119963,0.768315,0.214181,0.780817,0.702529,0.177321,0.234101,0.986654,0.560949,0.714132,0.145652,0.573469,0.868021,0.80208,0.272524,0.674167,0.885115,0.960477,0.460533,0.373028,0.375766,0.512563,0.558762,0.922083,0.300237,0.532654,0.0529851,0.427663,0.0786632,0.165628,0.0241843,0.969984,0.993382,0.27431,0.594408,0.430775,0.390084,0.225791,0.13708,0.81357,0.713939,0.529413,0.735534,0.851484,0.781624,0.319841,0.844168,0.0106558,0.923442,0.0715774,0.797939,0.104731,0.0672517,0.873671,0.451795,0.729141,0.860325,0.486204,0.791544,0.137603,0.00427181,0.0852579,0.514216,0.81682,0.517293,0.516997,0.866007,0.977293,0.683024,0.314545,0.68786,0.0723848,0.0275238,0.53312,0.0769327,0.737778,0.579379,0.261723,0.384889,0.493582,0.0520985,0.210284,0.670838,0.177852,0.761726,0.763097,0.230393,0.773186,0.0808211,0.669737,0.187186,0.0840887,0.639884,0.275921,0.154391,0.726389,0.0115067,0.175461,0.115886,0.80345,0.395915,0.864815,0.848709,0.222227,0.638016,0.562425,0.117504,0.419509,0.304013,0.0493966,0.522926,0.0883767,0.293641,0.883431,0.0719154,0.692835,0.728601,0.199353,0.834569,0.97756,0.612914,0.239806,0.312679,0.0157583,0.38801,0.834045,0.071358,0.533079,0.7851,0.842161,0.956874,0.132966,0.92632,0.546743,0.738324,0.852498,0.36463,0.258054,0.177362,0.713087,0.558989,0.704438,0.261497,0.26538,0.00926185,0.870866,0.359874,0.212247,0.189934,0.0445102,0.554611,0.409608,0.407741,0.791191,0.695175,0.695199,0.738545,0.884491,0.568642,0.0408174,0.336391,0.366483,0.377348,0.450851,0.651812,0.438268,0.314677,0.435638,0.475226,0.820759,0.695268,0.398672,0.643921,0.680906,0.822691,0.384115,0.119125,0.401049,0.309893,0.980714,0.997142,0.0839901,0.959363,0.893303,0.775803,0.428093,0.422343,0.64541,0.206322,0.228203,0.69089,0.584912,0.68457,0.222825,0.465357,0.835366,0.750162,0.823354,0.181455,0.831633,0.550773,0.334159,0.408749,0.223088,0.912456,0.571331,0.834898,0.733702,0.987329,0.238438,0.621276,0.289058,0.913052,0.772608,0.988233,0.572749,0.302176,0.618928,0.539351,0.280963,0.306089,0.598266,0.648088,0.253441,0.247347,0.572523,0.418651,0.24246,0.98127,0.340761,0.759389,0.541148,0.302928,0.899639,0.106393,0.0686074,0.565806,|0.213483,0.824012,0.850086,0.0859426,0.911282,0.222343,0.311208,0.867046,0.61647,0.798272,0.568456,0.287814,0.757515,0.728747,0.483883,0.014568,0.515266,0.802703,0.26061,0.524361,0.980408,0.784972,0.815098,0.27771,0.873103,0.476145,0.441996,0.837711,0.166194,0.4134,0.80148,0.709081,0.853604,0.270203,0.249394,0.137397,0.368591,0.892559,0.281998,0.362219,0.133144,0.807356,0.902843,0.332283,0.653455,0.0628433,0.323768,0.0953037,0.535965,0.299663,0.923975,0.655976,0.450201,0.0194389,0.381045,0.141006,0.576298,0.6855,0.436841,0.16004,0.248252,0.467571,0.0373374,0.414013,0.307625,0.176288,0.689969,0.244934,0.745516,0.527556,0.670437,0.934711,0.535647,0.554357,0.45596,0.12226,0.740957,0.672469,0.646725,0.544456,0.669491,0.360678,0.678764,0.950162,0.281178,0.325428,0.88368,0.920597,0.18808,0.977471,0.37764,0.575867,0.544427,0.362381,0.535092,0.179396,0.961993,0.118321,0.851844,0.1446,0.490487,0.264235,0.591532,0.13313,0.113458,0.368486,0.70534,0.420215,0.224971,0.830386,0.839116,0.701777,0.0847556,0.810664,0.757292,0.833048,0.913212,0.329698,0.21611,0.0906873,0.50216,0.136275,0.311434,0.730581,0.667469,0.610219,0.419828,0.439362,0.522943,0.842821,0.895339,0.323745,0.427124,0.234101,0.652235,0.768928,0.494058,0.0874414,0.00567615,0.373169,0.636879,0.372316,0.696326,0.554992,0.851399,0.915819,0.089535,0.174106,0.0129803,0.107145,0.742612,0.921473,0.880933,0.216385,0.602206,0.15915,0.0649063,0.471665,0.0806421,0.194996,0.313949,0.401567,0.710944,0.193301,0.142267,0.903331,0.513482,0.297658,0.723903,0.956708,0.503622,0.784842,0.171187,0.879786,0.288241,0.907742,0.695115,0.811339,0.911105,0.731029,0.0750503,0.602434,0.0468738,0.414455,0.844294,0.755945,0.152478,0.984568,0.138156,0.263819,0.72496,0.394385,0.185978,0.934871,0.823449,0.160386,0.16992,0.55658,0.186307,0.427993,0.557898,0.846359,0.913666,0.440616,0.118689,0.761976,0.0214186,0.462212,0.90447,0.803418,0.4004,0.192834,0.120103,0.430385,0.489233,0.655261,0.9695,0.524191,0.504343,0.143837,0.423578,0.254609,0.776517,0.241539,0.144874,0.911047,0.829665,0.0454134,0.463654,0.130448,0.47838,0.329974,0.276205,0.322743,0.0417638,0.866013,0.907121,0.697605,0.703699,0.602092,0.945177,0.0824445,0.866228,0.64305,0.028987,0.292451,0.365163,0.702611,0.97936,0.613756,0.129504,0.586461,0.535871,0.680068,0.768122,0.806086,0.466669,0.846818,0.0240282,0.423861,0.783575,0.351126,0.866351,0.476447,0.891773,0.611054,0.138419,0.545743,0.360761,0.479626,0.551751,0.104638,0.337044,0.464378,0.780477,0.0625131,0.526542,0.0150387,0.654455,0.814884,0.133841,0.949616,0.363399,0.611739,0.500554,0.513702,0.423452,0.0605749,0.916179,0.360999,0.183634,0.394552,0.0890879,0.245619,0.175223,0.580436,0.378377,0.445089,0.0791373,0.540257,0.138428,0.444353,0.978139,0.909966,0.220584,0.468516,0.125763,0.0881672,0.726379,0.405723,0.523973,0.524455,0.41494,0.209134,0.161632,0.693411,0.0259037,0.0726059,0.098411,0.928054,0.00715059,0.584435,0.129105,0.0183597,0.184778,0.861503,0.468169,0.975205,0.31008,0.0793426,0.414598,0.587981,0.744482,0.908922,0.301128,0.0647892,0.275562,0.416177,0.0848003,0.998081,0.361329,0.381184,0.769989,0.300287,0.693701,0.517453,0.415955,0.549637,0.39755,0.27188,0.49018,0.230781,0.728708,0.114868,0.425198,0.953925,0.291978,0.10637,0.851056,0.730764,0.571745,0.177345,0.158409,0.897473,0.328399,0.0233676,0.251144,0.985873,0.319306,0.473141,0.217638,0.397817,0.697068,0.959557,0.326256,0.604432,0.0886608,0.654812,0.900593,0.0974714,0.0385562,0.762152,0.781325,0.556111,0.351664,0.848203,0.535424,0.885398,0.136011,0.972876,0.589151,0.806046,0.729087,0.599807,0.347177,0.120541,0.857797,0.711999,0.966202,0.168777,0.881897,0.21088,0.0709822,0.337343,0.706296,0.840094,0.117118,0.833001,0.762831,0.638473,0.729098,0.749906,0.0930543,0.374746,0.759733,0.214564,0.937269,0.0238349,0.128961,0.544404,0.807183,0.14104,0.557132,0.0176154,0.398631,0.897671,0.332085,0.641414,0.798546,0.458041,0.351254,0.736108,0.217218,0.284547,0.342177,0.228613,0.60316,0.46316,0.349684,0.448868,0.537817,0.942959,0.192522,0.731801,0.99007,0.0676029,0.518483,0.381553,0.343751,0.41519,0.88278,0.382014,0.449816,0.842721,0.164743,0.0397133,0.393452,0.00501221,0.484636,0.257779,0.0499474,0.983436,0.398418,0.756937,0.877938,0.595552,0.88359,0.332287,0.263577,0.182427,0.219795,0.129493,0.0330747,0.866007,0.827438,0.236751,0.244148,0.440025,0.815693,0.35746,0.70465,0.30927,0.218727,0.662746,0.0577395,0.23781,0.319876,0.921971,0.796515,0.965895,0.220516,0.64373,0.112827,0.201667,0.722689,0.777094,0.0160906,0.395258,0.926203,0.0801526,0.714774,0.336235,0.83376,0.69922,0.488688,0.340897,0.554957,0.593935,0.462645,0.583539,0.34035,0.20947,0.381302,0.713099,0.50769,0.0624326,0.663984,0.67483,0.303442,0.106459,0.122531,0.781795,0.472673,0.987544,0.177863,0.309904,0.252012,0.7755,0.416149,0.887667,0.954618,0.14413,0.50948,0.225856,0.950877,0.0180565,0.777238,0.313354,0.78271,0.967306,0.905222,0.133384,0.975385,0.641444,0.628279,0.0142345,0.10479,0.386274,0.0514901,0.166035,0.0980177,0.176279,0.271371,0.313908,0.733007,0.76143,0.835935,0.932937,0.932465,0.802852,0.604268,0.781871,0.209185,0.281483,0.156208,0.183423,0.27108,0.466357,0.769592,0.325898,0.655538,0.490696,0.728383,0.62055,0.734354,0.751167,0.864798,0.836225,0.709104,0.84004,0.617325,0.759882,0.954566,0.892417,0.282358,0.923984,0.193387,0.67653,0.93189,0.962077,0.728985,0.574757,0.15637,0.216075,0.615539,0.888249,0.375504,0.171391,0.993679,0.784429,0.888143,0.0717387,0.967633,0.962166,0.132695,0.858205,0.50109,0.897169,0.496131,0.918733,0.788763,0.659132,0.935999,0.988063,0.296101,0.325656,0.458392,0.370383,0.989349,0.830349,0.00592226,0.696532,0.434566,0.987661,0.485765,0.191889,0.225145,0.0304351,0.994429,0.75053,0.482569,0.2313,0.638886,0.324192,0.970532,0.729819,0.025608,0.696391,0.857285,0.856112,0.290163,0.0784959,0.563129,0.919263,0.875685,0.710804,0.130896,0.572512,0.289888,0.834266,0.0335418,0.266954,0.279641,0.994599,0.61381,0.264499,0.232766,0.427418,0.0875142,0.183488,0.668572,0.174654,0.531852,0.0641247,0.470788,0.508163,0.381536,0.369583,0.909187,0.870581,0.270205,0.923291,0.976847,0.52594,0.707746,0.0727636,0.731921,0.418692,0.463539,0.696234,0.67597,0.381318,0.66504,0.98663,0.0666152,0.108751,0.434975,0.992908,0.676308,0.423069,0.217378,0.104828,0.409225,0.794453,0.361986,0.628754,0.621569,0.712153,0.83541,0.208048,0.029471,0.943388,0.658398,0.720665,0.316581,0.201902,0.00830919,0.248828,0.965644,0.0895252,0.230285,0.266864,0.919749,0.71227,0.591749,0.784705,0.898822,0.552369,0.0363843,0.240345,0.698094,0.581173,0.940124,0.194995,0.664405,0.558949,0.659841,0.00440896,0.336366,0.829084,0.4695,0.0783607,0.439174,0.279148,0.0305816,0.175978,0.0150623,0.645455,0.127545,0.916286,0.776328,0.565152,0.269603,0.147136,0.878806,0.328366,0.301447,0.252262,0.305512,0.611092,0.189644,0.0741348,0.0716981,0.497649,0.370758,0.497929,0.248667,0.852659,0.881601,0.0715567,0.110084,0.176533,0.752142,0.80005,0.270559,0.377155,0.862584,0.273135,0.866731,0.912611,0.0775833,0.931365,0.850226,0.25404,0.675833,0.485842,0.74525,0.0839435,0.41793,0.729149,0.392157,0.940901,0.993517,0.760118,0.98474,0.999676,0.0257421,0.232739,0.547616,0.0528727,0.355819,0.703453,0.854309,0.970724,0.70385,0.259448,0.541121,0.0208341,0.754604,0.939545,0.800117,0.0724006,0.475421,0.220037,0.564441,0.352355,0.400182,0.543737,0.0346764,0.730255,0.780138,0.784799,0.802667,0.745273,0.0307903,0.721943,0.26821,0.127755,0.397246,0.871048,0.431932,0.266682,0.954168,0.634897,0.0371888,0.364038,0.677277,0.810706,0.595496,0.921585,0.341935,0.967468,0.151637,0.755459,0.728443,0.152786,0.398294,0.249353,0.6493,0.805975,0.581684,0.0865245,0.430921,0.818283,0.791919,0.854378,0.0508778,0.742683,0.503424,0.856391,0.508587,0.958088,0.577404,0.662302,0.612104,0.459084,0.589461,0.838232,0.955813,0.0570542,0.839969,0.203459,0.815643,0.977678,0.521651,0.810205,0.906945,0.627843,0.648113,0.437228,0.830737,0.32572,0.908311,0.34893,0.472307,0.185013,0.28554,0.789387,0.993033,0.838352,0.884897,0.622046,0.423733,0.549389,0.12415,0.258479,0.804033,0.530491,0.521384,0.0146553,0.501698,0.722322,0.876872,0.152591,0.823538,0.885737,0.485966,0.527779,0.317435,0.4374,0.364648,0.0451994,0.985676,0.270104,0.323416,0.0388891,0.0986851,0.95571,0.628083,0.288675,0.82037,0.753611,0.205411,0.358274,0.0347911,0.708853,0.170612,0.388714,0.723451,0.731265,0.300139,0.346914,0.370419,0.674786,0.407161,0.574683,0.536982,0.266727,0.397481,0.466818,0.558734,0.80232,0.0979508,0.586583,0.339472,0.943409,0.175943,0.688738,0.422897,0.0734664,0.155177,0.824909,0.447476,0.971774,0.647508,0.250364,0.0749536,0.0311021,0.484019,0.783889,0.605125,0.542018,0.112819,0.183001,0.984365,0.454413,0.809836,0.841036,0.205979,0.435322,0.607911,0.27232,0.770539,0.259309,0.721752,0.772577,0.999257,0.691574,0.0676205,0.991567,0.950814,0.99667,0.513762,0.15934,0.385241,0.0274265,0.746405,0.87257,0.219619,0.951159,0.854928,0.228369,0.528674,0.71241,0.354356,0.819182,0.548127,0.792198,0.843643,0.0988135,0.204447,0.361489,0.391602,0.258062,0.360363,0.231774,0.925988,0.249321,0.429219,0.108407,|0.945018,0.887103,0.194623,0.653597,0.496766,0.292051,0.61998,0.740437,0.226889,0.620099,0.972602,0.826091,0.93241,0.445046,0.547387,0.363518,0.320916,0.980208,0.983006,0.663336,0.732462,0.344883,0.828168,0.230475,0.861905,0.187116,0.431575,0.223808,0.870779,0.935854,0.0164518,0.324644,0.235493,0.777199,0.259946,0.38331,0.184532,0.923048,0.469938,0.338148,0.413739,0.923474,0.287778,0.534713,0.905136,0.270453,0.9343,0.160565,0.528563,0.0955579,0.444935,0.0449916,0.303854,0.833948,0.716812,0.55656,0.809271,0.350467,0.0444112,0.22056,0.493341,0.352507,0.679068,0.228142,0.316686,0.00703233,0.558845,0.763474,0.172644,0.368362,0.520768,0.80551,0.378341,0.250298,0.817177,0.559739,0.0527961,0.937096,0.204438,0.167492,0.168828,0.350311,0.0426209,0.795371,0.44994,0.951231,0.64843,0.133848,0.0247982,0.278444,0.584128,0.158178,0.0039472,0.35255,0.894972,0.0938539,0.552308,0.0495445,0.997049,0.317856,0.570735,0.117766,0.32304,0.881072,0.880341,0.59618,0.32474,0.447109,0.498677,0.229685,0.969561,0.665966,0.0279099,0.696126,0.856824,0.579888,0.725338,0.501733,0.274798,0.325081,0.747395,0.516082,0.102216,0.0593358,0.229868,0.486885,0.763424,0.657654,0.961103,0.546537,0.189648,0.2283,0.449841,0.372067,0.827002,0.799185,0.0296108,0.0561751,0.618754,0.623368,0.490181,0.546717,0.622906,0.240607,0.803883,0.562366,0.183377,0.562196,0.405173,0.681672,0.0971709,0.912194,0.0586188,0.112297,0.930722,0.236823,0.914147,0.462986,0.816027,0.592967,0.812895,0.901464,0.553378,0.227648,0.299289,0.436918,0.037674,0.619617,0.127788,0.753204,0.956257,0.708699,0.719113,0.974195,0.250518,0.163706,0.775135,0.721999,0.888672,0.438264,0.717084,0.909789,0.791298,0.0216467,0.410961,0.699331,0.627245,0.516732,0.0189633,0.713877,0.970648,0.461233,0.88334,0.530854,0.338065,0.0041557,0.153016,0.960466,0.228475,0.591502,0.185655,0.781756,0.0489479,0.777721,0.556319,0.894107,0.80928,0.00323343,0.472186,0.621698,0.640576,0.0615751,0.809918,0.26412,0.173391,0.341523,0.102899,0.116042,0.848991,0.614041,0.173916,0.443539,0.0370688,0.853965,0.180231,0.985287,0.382277,0.902899,0.685725,0.419159,0.917244,0.105092,0.461045,0.0660511,0.414968,0.67619,0.304545,0.573214,0.651736,0.620307,0.00306565,0.674939,0.241463,0.379764,0.268168,0.64714,0.658178,0.649791,0.525963,0.85574,0.687747,0.805966,0.750103,0.0867407,0.838445,0.166519,0.632085,0.237242,0.134007,0.535971,0.527204,0.760353,0.555613,0.416732,0.631491,0.559248,0.306754,0.471206,0.907042,0.281391,0.74162,0.511249,0.39076,0.0259464,0.138102,0.860267,0.512146,0.336361,0.239569,0.580829,0.776418,0.65473,0.20504,0.826054,0.356915,0.10771,0.552617,0.870626,0.0847731,0.680421,0.260181,0.599765,0.237707,0.128923,0.556593,0.645264,0.766829,0.772183,0.356126,0.671769,0.882715,0.737787,0.724125,0.485174,0.78106,0.694367,0.362844,0.170466,0.85897,0.938322,0.0347452,0.922237,0.163122,0.578075,0.605039,0.30698,0.440494,0.0208666,0.992093,0.932441,0.350352,0.216975,0.0235316,0.996436,0.950431,0.332937,0.443158,0.729067,0.0139906,0.221677,0.610561,0.896466,0.355335,0.406397,0.233246,0.306675,0.593928,0.332121,0.515688,0.079641,0.688825,0.658405,0.0610168,0.297542,0.94484,0.278826,0.815164,0.323012,0.9529,0.133392,0.335678,0.229962,0.281447,0.933356,0.42504,0.693225,0.302901,0.967878,0.0743461,0.306415,0.972826,0.155415,0.123666,0.710217,0.0821855,0.238428,0.833727,0.646343,0.331398,0.633579,0.475676,0.589404,0.124382,0.825519,0.744703,0.804711,0.699926,0.144012,0.339407,0.789317,0.655612,0.603856,0.525293,0.968436,0.273238,0.70438,0.119722,0.421294,0.207356,0.972226,0.728909,0.270922,0.596969,0.830598,0.943285,0.203151,0.0034942,0.551633,0.922302,0.180061,0.334069,0.12269,0.915004,0.0588341,0.4696,0.385544,0.455141,0.628345,0.493666,0.653479,0.171504,0.639905,0.593181,0.0164844,0.800847,0.972986,0.884928,0.0200557,0.974363,0.515055,0.648576,0.188195,0.582466,0.414197,0.82765,0.0489221,0.715672,0.56205,0.607104,0.512245,0.632481,0.697451,0.164314,0.369246,0.560835,0.0416756,0.375165,0.23591,0.250893,0.143607,0.423354,0.588924,0.883846,0.349521,0.631203,0.918472,0.579506,0.889537,0.681685,0.943229,0.935878,0.230475,0.0721874,0.207095,0.955004,0.900997,0.304122,0.590851,0.471714,0.0203749,0.128124,0.343476,0.726374,0.724867,0.0132718,0.867473,0.854152,2.65837e-05,0.713965,0.139361,0.577226,0.844913,0.129627,0.740097,0.203406,0.704478,0.240178,0.591627,0.937776,0.854349,0.461873,0.637037,0.144035,0.0795896,0.202781,0.461144,0.728481,0.228286,0.166081,0.118207,0.603875,0.71994,0.431609,0.478208,0.159504,0.570956,0.251821,0.268765,0.99981,0.0725831,0.0547264,0.119709,0.344784,0.32141,0.324841,0.651459,0.429502,0.960355,0.159481,0.513681,0.302423,0.492526,0.351848,0.485064,0.552665,0.787106,0.0303914,0.447689,0.920373,0.398914,0.469038,0.597524,0.54574,0.209422,0.713567,0.0823146,0.294233,0.243015,0.140186,0.378293,0.316238,0.574781,0.16446,0.277402,0.793246,0.666232,0.589346,0.0266773,0.504902,0.343846,0.182708,0.124543,0.286423,0.17079,0.0813552,0.0529627,0.924792,0.353315,0.315773,0.40627,0.781744,0.0508859,0.767692,0.366497,0.990278,0.334046,0.152505,0.949956,0.0915278,0.954387,0.973417,0.739707,0.861911,0.816385,0.82334,0.725867,0.886767,0.844351,0.297151,0.943077,0.409793,0.0943851,0.858524,0.434946,0.556631,0.98359,0.306543,0.335667,0.862518,0.261605,0.272582,0.250845,0.886109,0.335229,0.696886,0.58336,0.52093,0.715535,0.214836,0.57574,0.0530055,0.940271,0.662646,0.200572,0.864964,0.848134,0.143558,0.816353,0.309028,0.00410229,0.540568,0.586809,0.0493984,0.397653,0.774345,0.556484,0.341065,0.48932,0.310915,0.660984,0.832884,0.751873,0.0118134,0.19647,0.840943,0.224334,0.5515,0.641352,0.653292,0.345171,0.324028,0.575358,0.0650588,0.0583611,0.655186,0.349873,0.69286,0.243331,0.726535,0.435479,0.907658,0.431754,0.597122,0.916606,0.838061,0.493754,0.890175,0.778129,0.202429,0.52141,0.771881,0.553326,0.667535,0.465071,0.68857,0.618929,0.416334,0.781139,0.489647,0.549749,0.449062,0.251212,0.542575,0.480319,0.56658,0.854832,0.82395,0.880367,0.322134,0.37516,0.673087,0.699068,0.507674,0.319757,0.88009,0.152431,0.735062,0.0860589,0.666115,0.217444,0.791152,0.960625,0.0671836,0.293036,0.948392,0.279767,0.801255,0.785759,0.652626,0.809973,0.394121,0.27839,0.780308,0.259944,0.767177,0.102417,0.024038,0.664725,0.877154,0.562229,0.408091,0.291366,0.111404,0.539176,0.251511,0.93926,0.220621,0.0125355,0.619993,0.982811,0.952999,0.485152,0.614636,0.27104,0.971591,0.574757,0.705732,0.249374,0.0379283,0.0183582,0.958785,0.137084,0.712258,0.24563,0.477517,0.339906,0.880622,0.0449431,0.463637,0.456472,0.926031,0.43743,0.348799,0.63753,0.907204,0.913546,0.387692,0.380873,0.507825,0.18361,0.902265,0.967502,0.200616,0.874753,0.0465954,0.906461,0.245509,0.0391671,0.176753,0.64465,0.409368,0.518201,0.0398512,0.35243,0.0822214,0.917256,0.821052,0.7015,0.0867318,0.313642,0.274091,0.758963,0.607851,0.40244,0.743717,0.885052,0.688001,0.355609,0.2953,0.463279,0.414649,0.667929,0.773907,0.694131,0.506234,0.0289257,0.829336,0.873418,0.416111,0.212103,0.52462,0.426311,0.186675,0.748665,0.548306,0.039628,0.664087,0.604758,0.89382,0.114505,0.524241,0.364061,0.825387,0.348124,0.387259,0.707851,0.98254,0.321567,0.694617,0.114599,0.651604,0.669466,0.72963,0.79795,0.18728,0.44941,0.523576,0.537459,0.117467,0.851767,0.298841,0.588864,0.396554,0.474233,0.419186,0.763626,0.70407,0.271947,0.302987,0.804715,0.533873,0.512548,0.375395,0.741798,0.323359,0.997518,0.565539,0.563514,0.246161,0.813975,0.292132,0.450265,0.0406458,0.1379,0.883181,0.48843,0.37321,0.124398,0.849096,0.950065,0.301695,0.0221551,0.704722,0.829074,0.434228,0.0246977,0.212165,0.434722,0.382512,0.627333,0.802372,0.428287,0.292829,0.26738,0.646474,0.0768015,0.212296,0.979477,0.505591,0.4979,0.557529,0.345434,0.153284,0.469037,0.884853,0.93715,0.352045,0.662886,0.333884,0.140994,0.505384,0.926609,0.810403,0.554954,0.766202,0.287229,0.927408,0.64861,0.260791,0.884155,0.476331,0.266436,0.399573,0.843831,0.442189,0.448253,0.939039,0.742926,0.0216594,0.279257,0.29203,0.687836,0.109357,0.994723,0.43892,0.91377,0.0515739,0.108298,0.874962,0.544878,0.421617,0.172269,0.414607,0.815498,0.175819,0.696715,0.100329,0.127878,0.24496,0.183124,0.477243,0.414274,0.543248,0.611646,0.0451568,0.344377,0.912368,0.83718,0.775384,0.760955,0.073648,0.736367,0.827828,0.207643,0.868305,0.93486,0.540503,0.439573,0.442876,0.668624,0.268927,0.444703,0.0235508,0.339531,0.641826,0.878139,0.881794,0.22991,0.108653,0.49295,0.850973,0.170737,0.176958,0.0752357,0.424059,0.028258,0.199112,0.117755,0.61423,0.756379,0.48444,0.790176,0.798498,0.283963,0.254464,0.246575,0.236812,0.127333,0.904263,0.679703,0.820259,0.781807,0.743867,0.263649,0.852704,0.484884,0.397695,0.866537,0.580726,0.210106,0.0132084,0.145172,0.556124,0.2009,0.445032,0.983479,0.274656,0.917169,0.596317,0.0121685,0.906317,0.568945,0.968389,0.78381,0.20523,0.281434,0.000904918,0.00757241,0.360683,0.939807,0.630629,0.375446,0.500349,0.0492503,0.172285,0.665369,0.353913,0.0335616,0.531786,0.107677,0.953189,0.514458,0.898023,0.666613,0.298094,0.758409,0.391359,0.259481,0.865406,0.027115,|0.42132,0.973126,0.800701,0.915224,0.352491,0.881798,0.577702,0.907109,0.127604,0.991377,0.236717,0.7119,0.387217,0.389397,0.201654,0.853124,0.895764,0.264498,0.354807,0.109414,0.939476,0.181494,0.19877,0.866133,0.890198,0.957092,0.381536,0.664799,0.137106,0.640732,0.319018,0.990156,0.872511,0.305784,0.768594,0.708469,0.466416,0.444907,0.291618,0.859638,0.440544,0.449568,0.769038,0.995471,0.140916,0.376147,0.640523,0.868031,0.357789,0.933918,0.660671,0.988113,0.720926,0.660977,0.762355,0.766578,0.848,0.285558,0.714015,0.30226,0.833137,0.824835,0.996774,0.493302,0.370397,0.60657,0.949652,0.59245,0.0824347,0.465306,0.988746,0.390325,0.123649,0.649571,0.543591,0.63908,0.890576,0.239671,0.612652,0.461444,0.522323,0.494969,0.97873,0.963215,0.244056,0.773886,0.788386,0.0757874,0.713109,0.354876,0.226889,0.396733,0.886545,0.536495,0.94613,0.431732,0.905183,0.827759,0.32554,0.679333,0.0378688,0.962608,0.352617,0.627739,0.609613,0.18097,0.869734,0.0572117,0.53175,0.759152,0.708696,0.851219,0.308644,0.62342,0.870459,0.748806,0.488938,0.40342,0.792434,0.795022,0.667703,0.640144,0.812869,0.791063,0.163329,0.890169,0.0959814,0.0385005,0.253685,0.420011,0.127931,0.337051,0.0709651,0.969073,0.896567,0.0887983,0.390792,0.319906,0.506594,0.786412,0.698745,0.0340258,0.313668,0.526021,0.51512,0.870091,0.484084,0.0300389,0.0523837,0.368202,0.838792,0.65941,0.0674096,0.584489,0.161736,0.644508,0.995309,0.102038,0.797639,0.142226,0.379935,0.371549,0.672715,0.664935,0.348535,0.0846259,0.120724,0.166825,0.937322,0.461485,0.460682,0.0387969,0.749528,0.998448,0.0122982,0.676233,0.871762,0.752524,0.319177,0.366407,0.638591,0.235474,0.464296,0.558836,0.166596,0.389728,0.809963,0.893121,0.406102,0.495089,0.13074,0.376064,0.239117,0.0334823,0.0771556,0.417931,0.629031,0.813014,0.665694,0.565925,0.056687,0.0852236,0.649014,0.381558,0.34947,0.945575,0.980607,0.258907,0.144812,0.437856,0.79672,0.758546,0.857261,0.312205,0.72917,0.444296,0.931418,0.807316,0.280289,0.251406,0.750546,0.677916,0.958642,0.157804,0.0169287,0.945943,0.0913214,0.805377,0.977466,0.163451,0.725296,0.178989,0.0605239,0.468834,0.909735,0.720691,0.413324,0.651535,0.230572,0.461342,0.474879,0.977071,0.84809,0.844914,0.574798,0.762899,0.215862,0.612231,0.0212074,0.0112033,0.64272,0.671145,0.232552,0.754217,0.113329,0.353682,0.590709,0.0952592,0.010116,0.857349,0.142073,0.979895,0.445816,0.10804,0.489401,0.662558,0.345108,0.0195361,0.58603,0.90877,0.289365,0.474012,0.122988,0.351162,0.110719,0.673667,0.245328,0.435421,0.816989,0.218022,0.115932,0.539022,0.990176,0.349555,0.194714,0.529005,0.692964,0.949556,0.612443,0.966216,0.770205,0.098381,0.503066,0.561281,0.286973,0.787625,0.619728,0.845076,0.510074,0.124161,0.877782,0.0798798,0.183938,0.516479,0.264049,0.895415,0.463465,0.438596,0.573228,0.137879,0.122868,0.812454,0.629844,0.716543,0.958444,0.453122,0.801493,0.848634,0.15986,0.96323,0.975812,0.811003,0.281412,0.66788,0.713882,0.195865,0.755616,0.916308,0.109101,0.0423242,0.177221,0.400297,0.120988,0.514958,0.659669,0.511211,0.831847,0.608643,0.783106,0.196613,0.00837648,0.994474,0.801668,0.870706,0.219954,0.506404,0.772563,0.757215,0.107998,0.550854,0.327158,0.44405,0.00373322,0.806726,0.488148,0.111781,0.643756,0.0788146,0.819293,0.0703764,0.258239,0.832754,0.518648,0.19019,0.0910712,0.429742,0.581372,0.736089,0.785138,0.112679,0.818758,0.710923,0.443053,0.594892,0.979529,0.462873,0.65886,0.965748,0.478503,0.266414,0.823594,0.873449,0.961156,0.343193,0.686711,0.315103,0.17116,0.55863,0.251726,0.828457,0.182581,0.273632,0.478853,0.708943,0.133226,0.05818,0.711728,0.588898,0.156426,0.433743,0.882371,0.726479,0.853506,0.581991,0.962847,0.827679,0.975065,0.955615,0.0503461,0.272048,0.196764,0.214064,0.47744,0.823308,0.540491,0.113317,0.972269,0.17333,0.00855637,0.985717,0.226351,0.339738,0.327692,0.353672,0.265929,0.987519,0.0960582,0.148551,0.842258,0.569265,0.78568,0.31948,0.612062,0.29623,0.371278,0.335433,0.573896,0.917835,0.31104,0.797698,0.0132323,0.649178,0.0830826,0.356589,0.174002,0.868162,0.476658,0.704534,0.00169206,0.0288261,0.844183,0.862788,0.0154578,0.760184,0.30028,0.882903,0.935996,0.98777,0.838923,0.22978,0.5715,0.914592,0.1043,0.461146,0.724277,0.124486,0.139241,0.571392,0.122283,0.484068,0.142315,0.116781,0.118044,0.791467,0.214243,0.669891,0.574839,0.973853,0.0205155,0.376676,0.987457,0.603807,0.803374,0.320759,0.179365,0.494972,0.542101,0.375362,0.107781,0.482706,0.883725,0.199974,0.866428,0.563082,0.730781,0.192038,0.481376,0.3859,0.837188,0.721606,0.4866,0.921372,0.63607,0.570493,0.41007,0.375278,0.269669,0.92107,0.202785,0.708947,0.553805,0.198416,0.228553,0.386511,0.135236,0.27578,0.118016,0.00488573,0.209205,0.161526,0.279738,0.788441,0.23296,0.277429,0.582944,0.282194,0.062808,0.840407,0.179374,0.757055,0.540922,0.741577,0.330145,0.257068,0.0222653,0.640298,0.0528352,0.767638,0.861155,0.0984464,0.303505,0.248572,0.628785,0.408779,0.238943,0.754937,0.65155,0.704468,0.612211,0.181265,0.913637,0.967594,0.943133,0.845998,0.962257,0.290357,0.726818,0.119763,0.423704,0.0765364,0.441108,0.117027,0.880826,0.930784,0.280207,0.680265,0.510919,0.418795,0.842205,0.0652305,0.298717,0.512767,0.916036,0.424566,0.365439,0.324633,0.166642,0.697601,0.470859,0.828657,0.806663,0.548992,0.441104,0.747519,0.988755,0.536007,0.408117,0.641743,0.862171,0.724969,0.840181,0.549606,0.205085,0.974913,0.169917,0.646639,0.285175,0.794532,0.937547,0.842655,0.842262,0.035777,0.358626,0.901451,0.543541,0.257431,0.344264,0.995543,0.671943,0.58659,0.428167,0.865196,0.181488,0.940742,0.671333,0.993396,0.378971,0.194689,0.717087,0.89849,0.195889,0.127211,0.794585,0.469756,0.836988,0.695734,0.0413277,0.975334,0.183264,0.966611,0.319343,0.0991696,0.726867,0.576953,0.390221,0.559312,0.42816,0.702742,0.887876,0.898284,0.255739,0.929163,0.217532,0.49423,0.673529,0.871934,0.0768485,0.302892,0.10645,0.723817,0.184607,0.576342,0.839907,0.0255129,0.224355,0.347158,0.881386,0.676763,0.21431,0.626666,0.748902,0.98034,0.43449,0.221374,0.688673,0.611665,0.16705,0.237795,0.010354,0.232393,0.143738,0.936332,0.158576,0.174635,0.428357,0.298877,0.959676,0.76037,0.318235,0.992905,0.885229,0.159065,0.497363,0.10375,0.930201,0.916492,0.911427,0.224056,0.990916,0.382667,0.825134,0.747469,0.92508,0.643039,0.667493,0.336841,0.906265,0.987679,0.0348442,0.47398,0.591425,0.46335,0.493956,0.816239,0.25668,0.404207,0.288682,0.418103,0.227176,0.010489,0.512471,0.936764,0.00121766,0.576362,0.179024,0.961857,0.983436,0.686267,0.546596,0.799206,0.901771,0.767125,0.592446,0.864717,0.858432,0.0400259,0.827589,0.776894,0.422441,0.241222,0.935934,0.501022,0.473206,0.75172,0.596753,0.676587,0.845348,0.174944,0.733031,0.202875,0.95973,0.421406,0.277254,0.422956,0.788697,0.992518,0.989088,0.847346,0.862755,0.52883,0.636074,0.310948,0.95044,0.836101,0.851683,0.0512554,0.174043,0.741865,0.815631,0.497165,0.732625,0.908983,0.527996,0.0215843,0.362181,0.396684,0.810283,0.348852,0.135499,0.246852,0.627202,0.705632,0.962737,0.992047,0.798893,0.432804,0.812082,0.269608,0.876157,0.0948402,0.941743,0.701054,0.257207,0.692829,0.559461,0.805266,0.432613,0.210639,0.15667,0.585146,0.438054,0.516762,0.940371,0.543396,0.536467,0.469573,0.957598,0.0821463,0.684876,0.57596,0.958686,0.382592,0.968089,0.807291,0.438344,0.784845,0.656211,0.805732,0.259143,0.858041,0.629209,0.496456,0.56998,0.0289712,0.192955,0.650899,0.908934,0.924572,0.813446,0.760518,0.0365365,0.163358,0.348932,0.16616,0.302754,0.0384668,0.820295,0.824699,0.745936,0.893709,0.970479,0.545574,0.866258,0.360449,0.571617,0.930994,0.376453,0.6877,0.821411,0.637177,0.675713,0.76326,0.0275149,0.560428,0.35797,0.00918365,0.238515,0.638536,0.146189,0.0796512,0.51354,0.264871,0.127241,0.653805,0.199575,0.396473,0.745174,0.523144,0.358385,0.723414,0.237358,0.609172,0.538879,0.151472,0.717786,0.551469,0.432361,0.812219,0.700462,0.772398,0.918356,0.396477,0.0676931,0.668693,0.27277,0.976553,0.169968,0.909381,0.849379,0.719425,0.98203,0.123111,0.319032,0.470442,0.632617,0.926362,0.482158,0.537233,0.800683,0.349082,0.891789,0.288369,0.857446,0.005059,0.507627,0.645157,0.389304,0.0956314,0.186016,0.409265,0.0264903,0.743967,0.986729,0.0779612,0.574211,0.802247,0.779106,0.136683,0.630489,0.557515,0.593884,0.19604,0.879376,0.10718,0.645251,0.0608659,0.703095,0.896266,0.276593,0.56443,0.994879,0.990342,0.448858,0.64134,0.925741,0.0369231,0.92978,0.287133,0.468535,0.955002,0.197549,0.130415,0.83353,0.0565107,0.0520141,0.101957,0.667653,0.486493,0.981171,0.611944,0.819271,0.881801,0.979056,0.0718794,0.482438,0.850473,0.268903,0.799972,0.0942622,0.394115,0.462494,0.637346,0.0557323,0.942712,0.56709,0.727928,0.717104,0.947537,0.15435,0.931232,0.427752,0.147124,0.643472,0.466244,0.286175,0.77717,0.692496,0.521959,0.769058,0.711083,0.149823,0.128007,0.272445,0.541503,0.117168,0.68416,0.772547,0.548239,0.596541,0.0946909,0.613334,0.00164169,0.203533,0.248669,0.872201,0.952703,0.459386,0.464213,0.892413,0.0202644,0.538305,0.0895179,0.458015,0.393158,0.329627,0.63629,0.618921,0.988544,0.178124,0.31946,|0.400171,0.510622,0.320988,0.673403,0.768321,0.394958,0.316336,0.13444,0.452723,0.299993,0.620005,0.342168,0.841874,0.425784,0.466766,0.825083,0.939765,0.267359,0.927262,0.345078,0.940609,0.153147,0.597201,0.825891,0.473825,0.93504,0.429402,0.0293591,0.650841,0.560997,0.803046,0.383113,0.919108,0.628165,0.248201,0.881703,0.139348,0.253618,0.0424484,0.175451,0.71395,0.300571,0.971632,0.74309,0.138529,0.12282,0.945186,0.96094,0.269558,0.956353,0.239197,0.744767,0.255242,0.96749,0.897156,0.538721,0.517536,0.776583,0.146785,0.0464562,0.0167098,0.463777,0.302297,0.678388,0.478338,0.82662,0.42623,0.555881,0.744876,0.448996,0.376972,0.442124,0.0894706,0.697102,0.436068,0.488585,0.910523,0.684526,0.712296,0.707698,0.272551,0.930286,0.882374,0.94548,0.0926117,0.00162774,0.584926,0.292429,0.480979,0.72174,0.0443957,0.297038,0.00735539,0.778248,0.610375,0.794126,0.561916,0.131158,0.944194,0.074935,0.740652,0.1227,0.750519,0.898589,0.966375,0.929996,0.999374,0.588892,0.359998,0.282303,0.162946,0.0108466,0.908758,0.383225,0.847376,0.553396,0.46786,0.7732,0.519244,0.45652,0.0400097,0.502744,0.859571,0.94258,0.561536,0.462508,0.700377,0.197913,0.580093,0.914367,0.925933,0.947325,0.275718,0.71942,0.382365,0.821951,0.477283,0.989201,0.660356,0.0882689,0.330835,0.68071,0.478584,0.482784,0.0359558,0.217955,0.893044,0.843194,0.773496,0.881147,0.634179,0.764711,0.434946,0.350378,0.448599,0.903675,0.356956,0.532211,0.0896871,0.152314,0.464477,0.34556,0.822136,0.244739,0.408903,0.890481,0.865691,0.917739,0.313212,0.754364,0.826293,0.851974,0.628642,0.105072,0.782576,0.578992,0.536473,0.133427,0.285495,0.288187,0.790013,0.341845,0.915737,0.464737,0.729554,0.131508,0.0986766,0.678309,0.0134367,0.877151,0.861512,0.132024,0.291639,0.100809,0.00874001,0.0737566,0.878704,0.326972,0.213616,0.468468,0.496516,0.414551,0.396568,0.168774,0.163199,0.920096,0.621959,0.815639,0.283698,0.268722,0.788974,0.564652,0.835412,0.291919,0.281514,0.0147861,0.500862,0.780221,0.253831,0.648022,0.903543,0.711713,0.283099,0.844742,0.294786,0.781318,0.518519,0.799171,0.381844,0.298373,0.90109,0.620544,0.0484016,0.146613,0.028653,0.431484,0.957552,0.559955,0.398461,0.979506,0.363497,0.359808,0.636067,0.91243,0.342364,0.39847,0.599028,0.739408,0.639443,0.798536,0.127863,0.724296,0.315131,0.187109,0.36986,0.605463,0.42964,0.559149,0.636757,0.211422,0.656672,0.00937068,0.991216,0.990608,0.414783,0.286313,0.763638,0.531216,0.675627,0.942055,0.384265,0.260645,0.644508,0.66611,0.506439,0.552122,0.333222,0.931026,0.854443,0.134145,0.203794,0.610013,0.507286,0.9361,0.356816,0.892126,0.167409,0.958757,0.946625,0.719954,0.540248,0.140397,0.939107,0.341338,0.887559,0.626965,0.660697,0.310807,0.0555279,0.51299,0.641338,0.704108,0.000495493,0.995134,0.626652,0.647363,0.659045,0.65453,0.796982,0.902904,0.582041,0.625581,0.66778,0.250479,0.275122,0.492455,0.44598,0.298747,0.978175,0.167086,0.145573,0.00831699,0.370327,0.443125,0.718688,0.653781,0.373785,0.102622,0.517364,0.0869635,0.981648,0.529937,0.970921,0.531918,0.68436,0.895049,0.575367,0.707745,0.410565,0.738915,0.427669,0.670993,0.367393,0.533519,0.794387,0.671199,0.556849,0.735287,0.96966,0.904766,0.27939,0.505629,0.192729,0.36091,0.511593,0.0196943,0.784746,0.698703,0.508136,0.908696,0.706006,0.749697,0.979432,0.0951238,0.590017,0.443489,0.913168,0.246266,0.829171,0.0354033,0.0758268,0.972458,0.65938,0.390763,0.879722,0.755521,0.220745,0.132933,0.326333,0.711686,0.340643,0.395218,0.410914,0.530029,0.201001,0.451221,0.20354,0.352555,0.680776,0.448155,0.625587,0.766205,0.771971,0.272669,0.411105,0.571071,0.430085,0.0143462,0.972254,0.58493,0.161311,0.0451714,0.678943,0.080249,0.400594,0.103582,0.59521,0.158334,0.39876,0.857325,0.213115,0.38579,0.0385251,0.516345,0.194198,0.291098,0.0659062,0.577713,0.987302,0.848072,0.250136,0.948358,0.26148,0.0300798,0.946426,0.0986028,0.458195,0.579503,0.476556,0.150841,0.340593,0.997247,0.823988,0.563251,0.94504,0.737406,0.120798,0.728465,0.745958,0.725102,0.491237,0.469124,0.773647,0.490769,0.84808,0.140188,0.948169,0.918742,0.944569,0.502009,0.916284,0.428527,0.697777,0.422783,0.0513277,0.91505,0.4065,0.0658174,0.651418,0.98335,0.408338,0.909074,0.359985,0.317591,0.0688265,0.944017,0.919718,0.273964,0.752099,0.474742,0.559397,0.221821,0.112647,0.303763,0.322575,0.059516,0.311365,0.444984,0.39385,0.963927,0.415717,0.27774,0.803883,0.554703,0.288527,0.584421,0.810059,0.6696,0.159413,0.708165,0.0652252,0.216657,0.00704861,0.848305,0.774204,0.376057,0.387149,0.942073,0.901599,0.00590682,0.8636,0.191174,0.116432,0.00272906,0.123074,0.478112,0.277129,0.363502,0.139976,0.305029,0.994296,0.232599,0.217589,0.931294,0.237025,0.168864,0.520836,0.212623,0.137949,0.825325,0.58365,0.496178,0.183745,0.571504,0.358647,0.231597,0.870456,0.842222,0.0537481,0.50011,0.886078,0.0878607,0.419536,0.831792,0.767492,0.0753986,0.895123,0.707579,0.189651,0.878958,0.231248,0.524259,0.631799,0.41409,0.649859,0.496591,0.251482,0.741508,0.400074,0.164405,0.808133,0.319124,0.268798,0.184921,0.250235,0.725562,0.475615,0.535035,0.0453964,0.812305,0.361471,0.317253,0.560141,0.106796,0.638773,0.991083,0.227128,0.549672,0.650054,0.0772694,0.192324,0.0603847,0.464561,0.30553,0.538224,0.915409,0.893703,0.815904,0.247931,0.325159,0.598044,0.386468,0.515067,0.224476,0.471521,0.612423,0.880085,0.774616,0.724828,0.518701,0.538766,0.565008,0.963631,0.911047,0.501914,0.67544,0.771055,0.268812,0.306556,0.597436,0.218435,0.0859171,0.484764,0.452546,0.512743,0.111301,0.1306,0.104679,0.477744,0.722336,0.017239,0.14322,0.469381,0.820512,0.684164,0.777799,0.831352,0.391025,0.980779,0.645129,0.219866,0.54081,0.444629,0.719137,0.468881,0.143787,0.0649133,0.00239873,0.42324,0.413266,0.595025,0.81822,0.0472285,0.7549,0.652261,0.0572621,0.909477,0.217357,0.933677,0.218535,0.827465,0.821503,0.344731,0.684167,0.33675,0.275325,0.0504192,0.18386,0.201402,0.557241,0.451432,0.963962,0.575119,0.798191,0.668687,0.520833,0.27913,0.531169,0.410752,0.207687,0.209272,0.469245,0.764292,0.165548,0.270766,0.206255,0.142534,0.0725042,0.185667,0.356428,0.76954,0.960305,0.17593,0.596504,0.318084,0.112366,0.377697,0.339187,0.0236025,0.14261,0.989913,0.498215,0.384998,0.980927,0.181015,0.767242,0.349741,0.374647,0.521202,0.489493,0.101253,0.299696,0.280277,0.013541,0.864315,0.412737,0.408736,0.376458,0.282673,0.29699,0.125895,0.692557,0.0192961,0.633806,0.127073,0.939278,0.252448,0.850908,0.555025,0.74675,0.613258,0.631087,0.804928,0.763577,0.921455,0.166015,0.090121,0.784575,0.185888,0.448666,0.693667,0.2562,0.546089,0.683258,0.886554,0.314651,0.146825,0.78728,0.55669,0.503159,0.754725,0.255003,0.532392,0.112637,0.0979144,0.435476,0.571223,0.650521,0.620516,0.168439,0.909552,0.511744,0.0469013,0.437958,0.502599,0.75162,0.445955,0.902936,0.577191,0.801237,0.53052,0.946666,0.854718,0.804232,0.932003,0.711499,0.110935,0.0363852,0.0581555,0.10777,0.834773,0.25018,0.238234,0.55433,0.306379,0.0438491,0.275509,0.693018,0.0848223,0.0689791,0.772714,0.599952,0.550532,0.395154,0.898742,0.800769,0.359833,0.175187,0.78734,0.679936,0.548792,0.723488,0.992746,0.475752,0.649961,0.440286,0.459698,0.492137,0.384853,0.743839,0.881963,0.278823,0.10653,0.737122,0.467625,0.497019,0.655625,0.58133,0.880787,0.279933,0.447837,0.810914,0.984241,0.532276,0.818071,0.943843,0.383928,0.852997,0.168922,0.915792,0.241582,0.0394352,0.759273,0.9442,0.761132,0.0793766,0.66304,0.1813,0.161116,0.907393,0.0535126,0.18124,0.377445,0.581932,0.378613,0.617457,0.83991,0.690428,0.373944,0.691179,0.352582,0.505249,0.764287,0.787308,0.881251,0.824718,0.122773,0.52951,0.244319,0.133137,0.338802,0.397079,0.411967,0.862246,0.733734,0.729527,0.895859,0.0134656,0.00355285,0.980855,0.363602,0.343803,0.406802,0.115504,0.149913,0.686588,0.286084,0.0499884,0.5487,0.860577,0.92314,0.158266,0.78872,0.942274,0.133693,0.666597,0.86819,0.675426,0.44088,0.363931,0.609093,0.685555,0.726947,0.451563,0.790339,0.26295,0.605367,0.189055,0.140193,0.950729,0.649057,0.932879,0.0193163,0.00592184,0.770489,0.370273,0.239146,0.189627,0.849114,0.982807,0.42445,0.599197,0.344887,0.687406,0.897267,0.558103,0.779406,0.683835,0.218862,0.940237,0.162905,0.104649,0.653715,0.495942,0.794023,0.373945,0.570568,0.159438,0.742512,0.624308,0.203629,0.127043,0.567074,0.925471,0.0226557,0.747433,0.0840933,0.0374339,0.878731,0.0682847,0.520069,0.801581,0.668319,0.458612,0.349002,0.893278,0.783756,0.398395,0.808456,0.399795,0.371856,0.0845833,0.641349,0.628494,0.569912,0.422082,0.39172,0.0112426,0.974851,0.750538,0.719633,0.324866,0.249293,0.966335,0.888953,0.693839,0.277126,0.283375,0.922113,0.348966,0.460383,0.0814872,0.940923,0.285994,0.355229,0.383626,0.815612,0.0958521,0.950669,0.698751,0.780742,0.603715,0.306687,0.452133,0.973285,0.875578,0.431405,0.229256,0.71438,0.881522,0.869214,0.835892,0.149113,0.92869,0.014182,0.438182,0.205297,0.59986,0.420015,0.0213842,0.00548357,0.337553,0.924574,0.782851,0.601247,0.531784,0.895588,0.511055,0.830577,0.0759739,0.484178,0.285157,0.647497,0.301839,0.20515,0.272982,0.163869,0.637658,0.764708,0.0296397,|0.262635,0.0705904,0.802862,0.721736,0.617922,0.610907,0.228873,0.84322,0.931285,0.395489,0.895035,0.554631,0.411718,0.75475,0.653478,0.260898,0.751438,0.239105,0.894726,0.419509,0.132049,0.74656,0.697478,0.951641,0.114467,0.85071,0.206482,0.313352,0.0554071,0.314707,0.484428,0.93562,0.421972,0.385238,0.513503,0.369779,0.187077,0.706149,0.768769,0.458289,0.883023,0.96473,0.0275208,0.464862,0.00645471,0.2663,0.192755,0.71304,0.772103,0.139341,0.663778,0.109903,0.798103,0.728872,0.510362,0.305613,0.0959585,0.82498,0.993931,0.732413,0.939101,0.966926,0.11755,0.593904,0.240126,0.580723,0.504676,0.0662965,0.504337,0.0940299,0.907844,0.00619835,0.541543,0.143275,0.262028,0.569206,0.262686,0.933293,0.0773662,0.285149,0.864577,0.850793,0.690842,0.564157,0.025556,0.478727,0.432353,0.0878983,0.645332,0.818372,0.977682,0.317962,0.732525,0.119963,0.969757,0.605791,0.487164,0.815797,0.560658,0.984586,0.88155,0.781039,0.682857,0.0681137,0.214828,0.801661,0.994436,0.162929,0.994374,0.920092,0.693498,0.0494568,0.0210055,0.563647,0.932101,0.819281,0.00181293,0.764667,0.783137,0.0739829,0.312078,0.953269,0.186324,0.404071,0.729542,0.379272,0.52938,0.701582,0.125912,0.0668821,0.437512,0.589698,0.739131,0.975359,0.234677,0.783597,0.575583,0.77631,0.648503,0.0142987,0.650171,0.983479,0.041535,0.851302,0.10527,0.00990075,0.0900964,0.809237,0.63169,0.269492,0.962732,0.707817,0.612527,0.0118376,0.180783,0.885438,0.692556,0.307577,0.545298,0.0449957,0.673237,0.129848,0.7432,0.340211,0.121979,0.728346,0.314307,0.557875,0.650583,0.321762,0.226158,0.0167178,0.464434,0.608263,0.759554,0.168776,0.0843974,0.2991,0.622127,0.133731,0.726296,0.232092,0.426142,0.622204,0.268882,0.606448,0.280544,0.066784,0.837381,0.950018,0.503365,0.878101,0.251788,0.974767,0.38377,0.725199,0.919326,0.75351,0.781272,0.270222,0.418458,0.178705,0.856205,0.833584,0.637107,0.768551,0.218546,0.724634,0.404347,0.214181,0.505494,0.986339,0.525734,0.0972216,0.051524,0.120508,0.627591,0.208021,0.722148,0.12419,0.00240242,0.365311,0.826758,0.199846,0.64866,0.0996445,0.0436503,0.363508,0.646677,0.148327,0.351279,0.429304,0.52176,0.0280122,0.00782466,0.159244,0.590379,0.557902,0.958589,0.893165,0.100034,0.378432,0.534041,0.443157,0.413192,0.386971,0.0820999,0.653514,0.112349,0.369401,0.747146,0.814605,0.716822,0.925801,0.300155,0.349878,0.723125,0.222269,0.658404,0.781701,0.506053,0.97621,0.321338,0.650707,0.0116463,0.272401,0.172342,0.982392,0.413167,0.0334367,0.228742,0.801671,0.822958,0.0822417,0.346408,0.747108,0.0305157,0.501292,0.675882,0.393722,0.589274,0.491528,0.832889,0.960641,0.0173122,0.8673,0.827474,0.752836,0.946391,0.445457,0.648907,0.609735,0.359069,0.08905,0.507491,0.419645,0.241333,0.24072,0.451959,0.055864,0.321552,0.36312,0.672246,0.980218,0.851877,0.539559,0.992933,0.684823,0.581721,0.279324,0.290134,0.503433,0.592408,0.915284,0.218864,0.481626,0.470295,0.350754,0.330404,0.147031,0.503417,0.611604,0.0049324,0.361901,0.0491068,0.769054,0.197206,0.0665893,0.0370945,0.712449,0.444879,0.837115,0.24399,0.568111,0.858903,0.0892859,0.515457,0.214578,0.530682,0.888309,0.100686,0.165431,0.571919,0.846014,0.49019,0.30832,0.274789,0.0848548,0.645773,0.205128,0.49211,0.348855,0.855179,0.870532,0.703913,0.772456,0.163026,0.583216,0.869336,0.151173,0.762328,0.890645,0.591914,0.369095,0.0178565,0.16407,0.563436,0.784863,0.449542,0.883847,0.30131,0.816225,0.673755,0.158761,0.0457758,0.503886,0.106947,0.146668,0.446618,0.25853,0.708589,0.130607,0.227127,0.664203,0.427135,0.467045,0.382084,0.963932,0.957651,0.742475,0.680984,0.642962,0.521632,0.143726,0.919451,0.0279146,0.0789682,0.200114,0.978253,0.341142,0.168813,0.501568,0.280793,0.0671523,0.782386,0.577777,0.885893,0.634028,0.393356,0.744634,0.804198,0.318949,0.673058,0.728217,0.611915,0.211086,0.655259,0.352023,0.3051,0.734799,0.604767,0.520828,0.58466,0.00343782,0.93074,0.636703,0.057361,0.0779732,0.345867,0.0635985,0.650751,0.747225,0.453658,0.793364,0.795509,0.427005,0.309153,0.501461,0.241598,0.319195,0.0844541,0.8656,0.454209,0.1449,0.00515687,0.766595,0.505437,0.760633,0.343696,0.0806982,0.878737,0.703999,0.408741,0.741168,0.669187,0.646455,0.214767,0.684816,0.0658464,0.397179,0.0811877,0.167749,0.860863,0.639451,0.196382,0.691215,0.49612,0.144786,0.611206,0.116364,0.141372,0.273382,0.895739,0.383608,0.0810708,0.437973,0.666114,0.369043,0.746934,0.488922,0.780511,0.19052,0.625458,0.383248,0.0551785,0.089996,0.843904,0.300636,0.362076,0.708636,0.70314,0.654915,0.104517,0.721371,0.687156,0.770959,0.420981,0.95452,0.0361333,0.820032,0.326062,0.0219278,0.724945,0.681895,0.333837,0.220226,0.508484,0.0685794,0.542284,0.331207,0.659946,0.764514,0.616018,0.0149717,0.849872,0.501926,0.478907,0.239771,0.21068,0.166546,0.510114,0.5879,0.266165,0.769861,0.530027,0.0543934,0.649605,0.264169,0.263164,0.832067,0.786274,0.833668,0.206743,0.872213,0.212942,0.238782,0.575345,0.899229,0.514859,0.498356,0.45894,0.70356,0.675734,0.286261,0.71098,0.898794,0.114212,0.387748,0.439295,0.312382,0.593569,0.402444,0.400815,0.150959,0.687591,0.257258,0.433763,0.621412,0.467579,0.625194,0.813917,0.113217,0.841986,0.969247,0.252184,0.878071,0.0868633,0.552952,0.163454,0.650273,0.635045,0.845455,0.796975,0.810868,0.9637,0.0430452,0.756309,0.479568,0.153409,0.597505,0.309128,0.901838,0.20291,0.981642,0.51116,0.63845,0.0754924,0.55185,0.361185,0.646535,0.870115,0.0749928,0.185807,0.687581,0.99751,0.430222,0.990348,0.488873,0.0914114,0.10007,0.209704,0.521318,0.929598,0.675937,0.716355,0.698549,0.654119,0.124227,0.528113,0.742246,0.500171,0.636581,0.589689,0.659352,0.352314,0.190955,0.308495,0.251031,0.952953,0.104818,0.490988,0.43801,0.486563,0.161072,0.693041,0.443982,0.186267,0.735827,0.532003,0.763714,0.980172,0.847813,0.862359,0.211071,0.88111,0.965182,0.696388,0.30481,0.524152,0.523299,0.945311,0.182989,0.127655,0.421267,0.378676,0.442517,0.856994,0.859546,0.573733,0.630991,0.914032,0.571842,0.192096,0.502032,0.0754864,0.817746,0.764859,0.259778,0.790603,0.915517,0.126055,0.953899,0.665212,0.121437,0.834911,0.49884,0.4388,0.913947,0.0379692,0.698333,0.289632,0.157292,0.669225,0.254502,0.853002,0.151618,0.368079,0.203755,0.514488,0.131,0.993616,0.463085,0.0179167,0.996961,0.0854416,0.537338,0.906278,0.610659,0.769781,0.450263,0.591563,0.855762,0.970677,0.390014,0.205629,0.882746,0.640872,0.935043,0.660076,0.330232,0.262611,0.817709,0.179518,0.286811,0.843238,0.777386,0.0532206,0.755587,0.735812,0.171616,0.375799,0.411114,0.819655,0.780311,0.436803,0.445091,0.827985,0.680915,0.994668,0.609088,0.625365,0.787681,0.578518,0.629038,0.24068,0.835115,0.510298,0.567356,0.234407,0.0231903,0.963742,0.166976,0.420923,0.357143,0.0575926,0.0573483,0.633421,0.513647,0.674118,0.0993456,0.554597,0.220936,0.830886,0.636251,0.375682,0.5846,0.393395,0.249271,0.642638,0.703541,0.435014,0.906812,0.682157,0.673817,0.684653,0.768956,0.467001,0.926949,0.562415,0.953872,0.950705,0.757085,0.137758,0.386469,0.744585,0.204972,0.657373,0.466124,0.147526,0.56193,0.538336,0.275382,0.497685,0.608628,0.92884,0.313923,0.992651,0.846108,0.749038,0.225208,0.741395,0.398068,0.260244,0.277846,0.161397,0.220512,0.390377,0.150294,0.364447,0.934789,0.680666,0.805683,0.169516,0.163672,0.923646,0.69313,0.827318,0.786823,0.638351,0.48033,0.639464,0.391098,0.488068,0.423491,0.717438,0.0539459,0.830721,0.552081,0.363574,0.743893,0.97802,0.290509,0.326508,0.51692,0.215726,0.398054,0.854266,0.490316,0.757919,0.00811994,0.985832,0.142942,0.868593,0.1522,0.990554,0.568799,0.728871,0.138785,0.608921,0.928478,0.441737,0.0409227,0.514329,0.483943,0.501182,0.695896,0.127533,0.676437,0.852021,0.52813,0.276134,0.364165,0.134976,0.650768,0.975198,0.149868,0.539528,0.145673,0.577044,0.245175,0.155692,0.819408,0.0251305,0.70944,0.397205,0.155061,0.818738,0.552463,0.374202,0.432196,0.0769225,0.478292,0.886748,0.35653,0.411312,0.412325,0.00334805,0.992381,0.303257,0.671181,0.772565,0.954245,0.475551,0.171378,0.937971,0.91491,0.356955,0.00608528,0.865371,0.639245,0.662081,0.00308442,0.14714,0.432207,0.619096,0.440604,0.684709,0.538792,0.606568,0.559759,0.296378,0.258181,0.418496,0.175887,0.078068,0.888891,0.565445,0.420021,0.386383,0.987536,0.828533,0.773771,0.273997,0.97844,0.0217118,0.682213,0.86461,0.879869,0.50564,0.766274,0.984987,0.374796,0.279196,0.138337,0.106676,0.568603,0.529023,0.688444,0.498077,0.520715,0.0663816,0.217791,0.481172,0.748643,0.308606,0.927862,0.710872,0.778481,0.19335,0.57737,0.959321,0.703744,0.313399,0.540668,0.96623,0.294976,0.811965,0.376606,0.99689,0.260473,0.668985,0.500574,0.292904,0.972384,0.632003,0.564658,0.915711,0.63131,0.981414,0.499058,0.280859,0.829399,0.00384456,0.427482,0.473541,0.432394,0.684637,0.143752,0.332911,0.205468,0.0912874,0.458921,0.253486,0.406491,0.00343847,0.774969,0.0556286,0.225343,0.653832,0.432983,0.851605,0.923325,0.196815,0.383947,0.45156,0.420899,0.212584,0.558274,0.0957947,0.174461,0.414516,0.80971,0.243745,0.722066,0.167,0.585182,0.728196,0.0978872,0.30827,0.335556,0.733265,0.399602,0.587299,0.152925,0.844565,0.33143,0.497865,0.800513,0.252738,0.255365,|0.345474,0.433051,0.591321,0.231046,0.368732,0.0982141,0.697102,0.375708,0.875952,0.796426,0.0639855,0.889525,0.132465,0.310899,0.901625,0.26226,0.504396,0.259055,0.54304,0.861839,0.546131,0.537337,0.54728,0.70124,0.021594,0.131132,0.302978,0.18632,0.00618976,0.382247,0.779221,0.153448,0.488248,0.113819,0.523428,0.0837425,0.886182,0.724153,0.612191,0.894606,0.646418,0.877648,0.963717,0.638897,0.988011,0.389681,0.974165,0.143043,0.315454,0.0836614,0.303437,0.828595,0.790977,0.342077,0.156884,0.912455,0.841105,0.229786,0.666787,0.695413,0.598509,0.986056,0.0752458,0.177439,0.970227,0.936349,0.558175,0.525966,0.939413,0.190301,0.115946,0.508507,0.372048,0.299491,0.604438,0.109183,0.118719,0.882899,0.800473,0.85763,0.592375,0.84136,0.241542,0.333408,0.0795231,0.765472,0.951118,0.997276,0.649997,0.989932,0.749409,0.201757,0.342457,0.401992,0.969527,0.158952,0.702518,0.497925,0.680306,0.38218,0.139853,0.368662,0.811014,0.839933,0.0212382,0.600031,0.202733,0.58466,0.471636,0.189623,0.731039,0.861113,0.867554,0.587253,0.298292,0.627323,0.218735,0.590303,0.921866,0.678082,0.833882,0.780987,0.481545,0.400848,0.394498,0.277206,0.818116,0.710923,0.24019,0.18436,0.401998,0.996824,0.356328,0.858025,0.47203,0.293626,0.245221,0.191202,0.905414,0.415887,0.160666,0.431437,0.618881,0.394588,0.737987,0.708119,0.135815,0.613101,0.93727,0.0498541,0.646525,0.580898,0.55851,0.583348,0.631236,0.386921,0.0515134,0.790501,0.601739,0.0677068,0.642042,0.381467,0.139729,0.186352,0.154843,0.612789,0.217042,0.223751,0.675391,0.532329,0.296205,0.362793,0.764344,0.820148,0.240494,0.372704,0.0466248,0.237209,0.642527,0.381882,0.205753,0.885168,0.562631,0.365803,0.0990479,0.492813,0.67515,0.730512,0.811447,0.643182,0.108842,0.0379509,0.367455,0.636415,0.589975,0.46833,0.676513,0.287828,0.110663,0.0759738,0.768186,0.238922,0.0119851,0.056275,0.112478,0.102912,0.0822712,0.699562,0.448727,0.228898,0.871952,0.843177,0.794332,0.0712559,0.627544,0.637419,0.299392,0.914087,0.926209,0.284155,0.513213,0.695165,0.235965,0.942181,0.802044,0.465452,0.775604,0.899859,0.901885,0.665843,0.498779,0.24154,0.0221909,0.818362,0.418726,0.0333263,0.679617,0.336458,0.855369,0.755688,0.0954053,0.0475993,0.88662,0.164492,0.699632,0.204625,0.584503,0.209291,0.0629549,0.23153,0.61363,0.340603,0.767975,0.129141,0.819331,0.0493498,0.306256,0.718229,0.0551655,0.342313,0.425895,0.620119,0.290603,0.079576,0.985638,0.703845,0.0599778,0.845669,0.348014,0.476175,0.157785,0.552225,0.350354,0.380853,0.37104,0.268735,0.179464,0.336734,0.694442,0.730063,0.203841,0.467455,0.816475,0.45213,0.719579,0.235917,0.41862,0.237922,0.58757,0.777724,0.961621,0.277326,0.343811,0.771612,0.790839,0.210195,0.524544,0.386291,0.493019,0.921892,0.994807,0.0867988,0.524481,0.792913,0.193878,0.376637,0.414113,0.725564,0.300882,0.951065,0.409625,0.743537,0.813941,0.551771,0.00651932,0.774296,0.71763,0.794881,0.182496,0.367404,0.975158,0.939546,0.0870324,0.856603,0.521894,0.549149,0.490042,0.0295271,0.541719,0.918268,0.906079,0.187879,0.633792,0.0923988,0.267618,0.0153484,0.1352,0.144674,0.524791,0.877499,0.611715,0.247573,0.580685,0.814446,0.600216,0.177098,0.871282,0.0896736,0.670554,0.279759,0.64165,0.932028,0.413764,0.745825,0.886835,0.079285,0.623211,0.0136406,0.249394,0.425747,0.546225,0.493189,0.490341,0.976245,0.947323,0.238659,0.760592,0.504013,0.780751,0.216919,0.314776,0.330048,0.14922,0.314504,0.819448,0.876401,0.514463,0.628212,0.213302,0.409735,0.135111,0.432709,0.394898,0.172369,0.637328,0.43598,0.249518,0.656938,0.488903,0.77609,0.257202,0.679561,0.981165,0.316197,0.937444,0.525781,0.0511857,0.965511,0.777906,0.322206,0.0918664,0.993326,0.212646,0.166133,0.0773193,0.947678,0.470766,0.627505,0.508834,0.0203167,0.808015,0.0586583,0.211833,0.486524,0.994076,0.526083,0.869419,0.855836,0.11781,0.304613,0.666188,0.221653,0.389875,0.860758,0.981104,0.50418,0.139364,0.578734,0.266617,0.281594,0.318011,0.0825597,0.0183863,0.189951,0.426509,0.0773359,0.870769,0.167562,0.279473,0.702236,0.251803,0.259541,0.823694,0.747495,0.439158,0.500171,0.417016,0.105652,0.547245,0.501805,0.681311,0.231499,0.418352,0.227186,0.0933558,0.833379,0.810199,0.574541,0.843028,0.457067,0.721473,0.174039,0.16209,0.438705,0.795808,0.662883,0.833027,0.827424,0.829064,0.624599,0.936123,0.284333,0.105707,0.0702528,0.558976,0.263898,0.112091,0.432732,0.130747,0.669247,0.601103,0.298927,0.366607,0.604855,0.928653,0.985189,0.228156,0.218793,0.296923,0.980016,0.623533,0.0657123,0.882898,0.902994,0.252061,0.425329,0.880049,0.912822,0.38283,0.477374,0.166475,0.628373,0.0914323,0.991291,0.746484,0.144483,0.678532,0.714405,0.953718,0.43577,0.173048,0.727615,0.498885,0.456487,0.0692291,0.41981,0.201361,0.590399,0.0104853,0.404594,0.0885192,0.648618,0.542858,0.915822,0.505778,0.597378,0.34224,0.641598,0.844522,0.282762,0.379031,0.475108,0.744254,0.778038,0.885857,0.021033,0.226986,0.587733,0.455197,0.060028,0.884785,0.640339,0.322671,0.946948,0.171824,0.804213,0.805575,0.76609,0.415637,0.569324,0.889233,0.726148,0.751793,0.778053,0.37218,0.342266,0.304376,0.400477,0.469352,0.298642,0.666701,0.313314,0.744463,0.0699971,0.137501,0.553702,0.381362,0.135538,0.0536931,0.56353,0.290035,0.841549,0.259885,0.0064621,0.328767,0.15211,0.920869,0.56304,0.0127139,0.374364,0.991309,0.168214,0.18864,0.52621,0.945532,0.292321,0.977135,0.573046,0.828026,0.97464,0.180176,0.525291,0.950817,0.00566477,0.810448,0.507194,0.171572,0.40258,0.616624,0.453622,0.820535,0.154623,0.665438,0.312083,0.681331,0.81343,0.948097,0.0535241,0.620831,0.205685,0.870671,0.753369,0.690348,0.272623,0.629809,0.78137,0.753532,0.0389923,0.45393,0.0579064,0.706035,0.720139,0.870817,0.210155,0.501707,0.351025,0.210693,0.490193,0.772849,0.445315,0.0495027,0.317899,0.622832,0.18727,0.853224,0.770827,0.60147,0.411794,0.0416524,0.400503,0.234384,0.407969,0.629038,0.0372843,0.305019,0.0876047,0.507844,0.625637,0.212182,0.558964,0.779038,0.706663,0.241034,0.457859,0.863042,0.507531,0.415965,0.615813,0.847761,0.068886,0.309032,0.196753,0.854656,0.290359,0.808361,0.334409,0.697189,0.942318,0.805424,0.743075,0.807854,0.203846,0.356653,0.463752,0.89088,0.91766,0.528782,0.142651,0.0354717,0.321337,0.224784,0.744079,0.476605,0.477892,0.366292,0.787803,0.408717,0.590745,0.549185,0.614075,0.479594,0.146955,0.659718,0.334673,0.986732,0.136054,0.0543721,0.451526,0.926134,0.735086,0.438864,0.460435,0.388616,0.614175,0.32106,0.451894,0.845317,0.883317,0.837867,0.893152,0.0712618,0.524516,0.343809,0.729992,0.914384,0.632116,0.836933,0.0945657,0.48916,0.25083,0.927429,0.166844,0.580895,0.209082,0.903934,0.568937,0.522014,0.99525,0.820202,0.324827,0.514077,0.843059,0.556241,0.781209,0.118058,0.971747,0.958693,0.632231,0.81237,0.283216,0.496401,0.376662,0.725269,0.786603,0.554265,0.0908005,0.65759,0.215692,0.402625,0.181535,0.497302,0.46623,0.961224,0.335308,0.434627,0.460725,0.268303,0.149521,0.795434,0.276084,0.046387,0.424956,0.116689,0.439558,0.641031,0.285041,0.0559633,0.380896,0.997601,0.25952,0.592243,0.297982,0.689686,0.0781672,0.283118,0.878033,0.438047,0.138902,0.868065,0.513198,0.700248,0.471176,0.544872,0.954577,0.144113,0.363665,0.962394,0.767088,0.0279633,0.80655,0.341356,0.870222,0.0151588,0.412103,0.415133,0.461874,0.586534,0.228095,0.61566,0.740635,0.880132,0.215139,0.862208,0.708357,0.598642,0.768426,0.505885,0.839669,0.528759,0.453283,0.0217864,0.71775,0.0305175,0.413057,0.506027,0.88045,0.341961,0.544101,0.879534,0.399488,0.946133,0.218886,0.963797,0.677245,0.144962,0.303891,0.40059,0.515184,0.697326,0.959308,0.81981,0.481784,0.500591,0.83867,0.440728,0.179974,0.206054,0.70594,0.457439,0.220167,0.176709,0.247897,0.229442,0.841403,0.305395,0.923508,0.524777,0.808977,0.919866,0.227291,0.692383,0.0159983,0.402315,0.927031,0.283644,0.442128,0.784302,0.0947383,0.404668,0.978427,0.565133,0.267896,0.994741,0.833051,0.402646,0.900251,0.0226818,0.882153,0.228408,0.246196,0.879162,0.142726,0.734776,0.286574,0.562151,0.00480664,0.562508,0.139123,0.280693,0.0302085,0.163941,0.716632,0.468799,0.0288212,0.302583,0.778148,0.449288,0.420033,0.280876,0.468028,0.599343,0.633717,0.719216,0.879448,0.323726,0.436224,0.430162,0.329472,0.90904,0.122634,0.952337,0.756333,0.26504,0.855494,0.494317,0.539698,0.561795,0.341342,0.246695,0.279226,0.87961,0.54852,0.150795,0.187311,0.578163,0.541835,0.846535,0.98547,0.00922579,0.688363,0.834688,0.321693,0.609269,0.199321,0.449933,0.859232,0.726672,0.505341,0.56007,0.309654,0.68767,0.602394,0.530112,0.854553,0.269515,0.358082,0.60893,0.94109,0.743385,0.897186,0.595141,0.197402,0.916165,0.649925,0.401491,0.068997,0.478796,0.992229,0.349972,0.345393,0.037123,0.890491,0.41475,0.745718,0.726038,0.774976,0.069699,0.154709,0.446094,0.605307,0.523015,0.0296068,0.173303,0.640589,0.789387,0.0155324,0.172466,0.744761,0.0908248,0.0600764,0.756829,0.774673,0.448708,0.265097,0.917543,0.836906,0.763187,0.243242,0.191502,0.953803,0.379406,0.794365,0.122974,0.709267,0.575299,0.72072,0.249908,0.972467,0.0492275,0.97207,0.980331,0.30912,0.466519,0.0367311,0.933009,0.463677,0.258281,0.723478,0.737437,0.565109,|0.19819,0.489351,0.547976,0.460295,0.0214061,0.911504,0.96938,0.775302,0.773844,0.871523,0.284145,0.941519,0.947546,0.156801,0.157972,0.270583,0.376022,0.0848812,0.11953,0.981879,0.32192,0.378068,0.828055,0.834621,0.283151,0.166712,0.91013,0.0710653,0.83654,0.169834,0.896774,0.0859891,0.857731,0.0557841,0.54632,0.783493,0.0502273,0.756854,0.500361,0.991472,0.130549,0.279569,0.883641,0.272572,0.565441,0.179225,0.78893,0.920906,0.282408,0.59615,0.301418,0.899709,0.288728,0.724996,0.150909,0.0561943,0.441842,0.991862,0.404328,0.142162,0.0972074,0.62821,0.426017,0.150627,0.684834,0.69332,0.942699,0.644826,0.276184,0.815533,0.361045,0.0238543,0.938765,0.372753,0.848797,0.108361,0.0893761,0.277993,0.807728,0.498973,0.0266539,0.258551,0.509701,0.43829,0.96552,0.398845,0.286093,0.191846,0.59491,0.475493,0.909795,0.08356,0.550805,0.525728,0.250176,0.232838,0.214571,0.867798,0.141602,0.63825,0.766025,0.487333,0.724922,0.999278,0.89955,0.012601,0.583223,0.147587,0.815692,0.569471,0.804493,0.0582216,0.47621,0.55937,0.340514,0.109533,0.232027,0.666255,0.288072,0.310391,0.504783,0.0677326,0.369376,0.24764,0.560439,0.244456,0.501591,0.123855,0.711706,0.664788,0.239478,0.163991,0.508799,0.897433,0.36942,0.330644,0.451552,0.073204,0.298935,0.750393,0.797875,0.921984,0.947471,0.234796,0.39261,0.92477,0.865333,0.426236,0.99136,0.646468,0.497321,0.13626,0.686106,0.836306,0.794872,0.098055,0.589157,0.0398448,0.251344,0.0772064,0.657678,0.943384,0.287065,0.590607,0.228203,0.192129,0.0444447,0.187724,0.921099,0.123735,0.184649,0.605078,0.96496,0.455176,0.416141,0.655076,0.667056,0.966175,0.0868688,0.269045,0.288629,0.540664,0.763844,0.656019,0.787542,0.911839,0.148721,0.963711,0.0531473,0.00592256,0.434413,0.245127,0.830197,0.0798329,0.127337,0.150307,0.355565,0.126497,0.398221,0.386448,0.729753,0.772346,0.0745671,0.348448,0.104731,0.143756,0.0209314,0.240278,0.654168,0.250496,0.282174,0.121427,0.444959,0.161793,0.0463213,0.513067,0.0933573,0.373329,0.131117,0.188292,0.74896,0.501775,0.461666,0.328655,0.332,0.162439,0.358248,0.59937,0.480406,0.659124,0.494209,0.799456,0.514154,0.0444637,0.487291,0.345097,0.567716,0.372607,0.69251,0.823565,0.946393,0.0371807,0.540625,0.415436,0.30759,0.245913,0.806255,0.39896,0.891862,0.737799,0.713773,0.12229,0.0594016,0.533539,0.236193,0.722106,0.540826,0.394044,0.631472,0.364256,0.858898,0.66823,0.0480506,0.624426,0.234306,0.758576,0.308707,0.346665,0.582998,0.415169,0.966756,0.992976,0.913901,0.671336,0.265529,0.836741,0.45166,0.68213,0.0800917,0.059303,0.660975,0.41969,0.435808,0.355036,0.480684,0.693668,0.207553,0.62624,0.752065,0.324362,0.971266,0.445858,0.768356,0.954064,0.278065,0.519857,0.276474,0.650415,0.0944223,0.150998,0.916179,0.702729,0.0462337,0.813864,0.952267,0.305929,0.529882,0.545697,0.784969,0.56533,0.75483,0.289244,0.694853,0.516385,0.648717,0.990239,0.295884,0.667346,0.185549,0.315019,0.998731,0.644889,0.0339606,0.223104,0.226885,0.303592,0.417452,0.367245,0.53597,0.802402,0.506937,0.981943,0.736443,0.164913,0.439321,0.50327,0.111189,0.656258,0.201128,0.0316994,0.632106,0.427109,0.48639,0.161645,0.420617,0.527241,0.69917,0.910689,0.326867,0.200221,0.603531,0.188313,0.388791,0.785021,0.330131,0.306818,0.0900912,0.0219056,0.639006,0.802949,0.444297,0.577528,0.990198,0.398917,0.72067,0.372588,0.182513,0.000381887,0.490209,0.663268,0.417462,0.959182,0.646739,0.82903,0.905047,0.109275,0.303052,0.140112,0.443159,0.109243,0.616949,0.185905,0.915307,0.645326,0.310758,0.611544,0.0209021,0.300495,0.704179,0.819494,0.420794,0.00472265,0.17379,0.566731,0.0673209,0.215956,0.862426,0.230716,0.564325,0.531056,0.00856239,0.720196,0.472511,0.375382,0.235004,0.089018,0.980869,0.483527,0.216079,0.837467,0.577629,0.811719,0.550781,0.0377221,0.26276,0.315574,0.446557,0.120602,0.515691,0.144309,0.113895,0.132562,0.0606307,0.282917,0.868022,0.994728,0.240541,0.0286704,0.880912,0.419278,0.483556,0.433027,0.865605,0.0278184,0.133993,0.178291,0.51165,0.376209,0.641302,0.471728,0.977139,0.642846,0.62347,0.0112678,0.83109,0.943972,0.396487,0.257115,0.984475,0.333371,0.253919,0.986367,0.380006,0.887194,0.211623,0.231124,0.29771,0.669182,0.373763,0.0562413,0.770109,0.474368,0.403344,0.594685,0.599538,0.716824,0.101177,0.625972,0.853103,0.999476,0.0709123,0.715704,0.963839,0.0211837,0.109442,0.239094,0.0188745,0.332901,0.873579,0.687326,0.719347,0.660533,0.312326,0.962542,0.309967,0.94244,0.232031,0.688325,0.451699,0.00399506,0.991233,0.286011,0.043058,0.16854,0.248012,0.0872034,0.72261,0.242456,0.686797,0.912474,0.846061,0.583631,0.230998,0.355844,0.0672694,0.219968,0.758944,0.264032,0.104793,0.569984,0.308761,0.944708,0.314921,0.397533,0.436405,0.982534,0.946106,0.0484638,0.338606,0.302563,0.313428,0.136988,0.202055,0.216266,0.309826,0.290703,0.796713,0.318107,0.466983,0.943158,0.296045,0.914983,0.481433,0.563923,0.783037,0.0693692,0.525389,0.284357,0.209905,0.375084,0.0562359,0.478359,0.22679,0.855273,0.510954,0.0359598,0.17614,0.806541,0.198299,0.668902,0.965604,0.326218,0.693791,0.854304,0.0262816,0.405024,0.201587,0.0226869,0.438043,0.855812,0.525673,0.363413,0.0571637,0.697419,0.476341,0.248169,0.28144,0.593232,0.859517,0.255238,0.169895,0.769034,0.961948,0.45895,0.0146343,0.765189,0.279507,0.144242,0.460624,0.306841,0.458145,0.246139,0.0139079,0.284203,0.592941,0.235628,0.544373,0.551099,0.886086,0.267902,0.891098,0.889464,0.702304,0.612888,0.0764388,0.900004,0.479433,0.00170201,0.557984,0.209479,0.221694,0.611125,0.742202,0.355694,0.287211,0.102598,0.960697,0.781516,0.224017,0.913831,0.327754,0.656208,0.550412,0.373947,0.663394,0.0087316,0.961121,0.840023,0.587684,0.750996,0.524894,0.943173,0.0299596,0.213615,0.83118,0.972595,0.975705,0.00311571,0.283941,0.587351,0.939344,0.636825,0.883561,0.372853,0.807094,0.812245,0.576605,0.302741,0.47735,0.522635,0.191631,0.954168,0.773695,0.576648,0.876562,0.307457,0.0841841,0.673516,0.933067,0.413811,0.673649,0.338998,0.0491096,0.064658,0.628867,0.72064,0.0436437,0.902363,0.0425645,0.801711,0.0550677,0.48769,0.125057,0.988987,0.533631,0.883971,0.865383,0.688231,0.675766,0.633329,0.845367,0.168957,0.854413,0.0684499,0.119355,0.243446,0.343582,0.319196,0.437629,0.230375,0.857976,0.126779,0.330959,0.391002,0.938065,0.662568,0.932722,0.211793,0.897037,0.240854,0.659912,0.117471,0.608046,0.91191,0.918909,0.546269,0.943919,0.221217,0.0372527,0.587441,0.105075,0.897869,0.735139,0.186124,0.0463787,0.307196,0.433793,0.110669,0.240798,0.649791,0.356144,0.351873,0.6355,0.960369,0.444295,0.595261,0.436159,0.89795,0.958311,0.314898,0.576787,0.20711,0.688315,0.733743,0.174362,0.163797,0.685544,0.203875,0.15497,0.47235,0.840646,0.318284,0.100187,0.267638,0.647326,0.45512,0.835541,0.254974,0.227433,0.363598,0.882011,0.809495,0.564377,0.220932,0.871199,0.859247,0.560807,0.386629,0.225552,0.259686,0.233689,0.692531,0.982601,0.182619,0.269121,0.776105,0.875865,0.811396,0.246123,0.11025,0.159738,0.300973,0.608438,0.787802,0.422479,0.62065,0.474253,0.89348,0.470906,0.210924,0.0206026,0.626141,0.502354,0.420902,0.849905,0.394699,0.872055,0.683219,0.177954,0.988484,0.183087,0.569927,0.863978,0.139969,0.272717,0.852421,0.207693,0.371162,0.504969,0.852962,0.24786,0.389563,0.694868,0.493496,0.0210094,0.748917,0.952821,0.877691,0.0725237,0.718921,0.293629,0.177703,0.0892887,0.432551,0.793128,0.473426,0.391384,0.42589,0.521792,0.384792,0.473831,0.839543,0.136679,0.149815,0.805478,0.41581,0.274494,0.875137,0.81837,0.465417,0.214647,0.0439429,0.057265,0.789899,0.775547,0.191159,0.872972,0.942807,0.137957,0.159471,0.438343,0.849112,0.909485,0.745363,0.799014,0.0244228,0.244433,0.588175,0.918294,0.862323,0.806605,0.952884,0.150064,0.213927,0.318791,0.535863,0.574322,0.396475,0.632411,0.509619,0.157099,0.832879,0.425593,0.891336,0.805012,0.245412,0.884443,0.180022,0.659982,0.322032,0.923765,0.788937,0.025992,0.368355,0.136659,0.66436,0.852611,0.138196,0.18599,0.913508,0.000991881,0.522004,0.339197,0.913778,0.635382,0.747789,0.0880055,0.315549,0.322175,0.826627,0.253456,0.0443799,0.209029,0.176452,0.682357,0.377244,0.0971535,0.823134,0.435945,0.810402,0.637472,0.937424,0.656681,0.935047,0.303723,0.313824,0.800145,0.0603703,0.00503337,0.275499,0.905714,0.148152,0.165533,0.934678,0.139181,0.13206,0.764807,0.511951,0.498921,0.0272921,0.248933,0.547281,0.887854,0.70272,0.66483,0.636254,0.0698911,0.166453,0.948147,0.241364,0.463957,0.473093,0.0667026,0.468272,0.268837,0.776136,0.394472,0.503085,0.427703,0.151492,0.900595,0.68307,0.572078,0.993778,0.2125,0.20602,0.31214,0.152019,0.78608,0.842795,0.0448871,0.198165,0.404071,0.315919,0.484551,0.0425937,0.515369,0.198171,0.751939,0.0522183,0.951849,0.192357,0.762652,0.774094,0.539722,0.927212,0.438079,0.380508,0.134302,0.530578,0.875826,0.781789,0.622448,0.0991974,0.797507,0.0851694,0.671346,0.794156,0.528139,0.790947,0.413408,0.377063,0.233218,0.34032,0.56623,0.925606,0.652622,0.596709,0.428478,0.96357,0.936593,0.248232,0.646467,0.167484,0.322332,0.810182,0.0495294,0.746786,0.335995,0.969449,0.220572,0.270109,0.476051,0.165531,0.0068661,0.0466649,0.405146,0.47519,0.698914,0.812214,|0.0844802,0.469464,0.380671,0.882397,0.0179789,0.419723,0.00388241,0.0992931,0.328561,0.600913,0.796538,0.86157,0.845023,0.31605,0.518935,0.544497,0.725638,0.641795,0.404568,0.810046,0.0752314,0.163857,0.0994262,0.414009,0.568867,0.889962,0.748357,0.146687,0.785729,0.445045,0.636838,0.63733,0.510264,0.376581,0.130039,0.668701,0.0166393,0.150761,0.852917,0.877189,0.819453,0.0568118,0.943803,0.522687,0.699736,0.739044,0.534576,0.137804,0.515719,0.673132,0.15165,0.305055,0.837562,0.0637444,0.969521,0.100437,0.845672,0.414073,0.92682,0.649288,0.462189,0.885089,0.25863,0.279885,0.888071,0.934902,0.34445,0.0697835,0.796705,0.466973,0.0637311,0.462041,0.782721,0.323347,0.482097,0.825901,0.473585,0.621975,0.378216,0.903461,0.714941,0.00962299,0.8766,0.621762,0.904246,0.469483,0.567631,0.105206,0.453359,0.134458,0.503074,0.472272,0.150914,0.501252,0.488895,0.798553,0.968549,0.651918,0.649063,0.0391051,0.00276309,0.170374,0.0481195,0.281429,0.176695,0.671031,0.774842,0.991636,0.781988,0.234773,0.424757,0.798302,0.293597,0.312979,0.904469,0.980409,0.29083,0.524042,0.779458,0.848677,0.0637282,0.409751,0.80071,0.394655,0.661102,0.731605,0.494185,0.506609,0.229198,0.998127,0.538305,0.368857,0.645569,0.752735,0.538838,0.0203963,0.56335,0.535416,0.62502,0.0402524,0.0823975,0.627045,0.182908,0.156608,0.456197,0.32142,0.835226,0.441046,0.917093,0.562438,0.243291,0.521281,0.643205,0.876527,0.77866,0.189544,0.603144,0.818909,0.300828,0.331296,0.271509,0.534353,0.971547,0.525562,0.81459,0.920831,0.325723,0.415658,0.792727,0.352551,0.20435,0.885584,0.419697,0.238165,0.125107,0.689415,0.809911,0.993713,0.0525638,0.596469,0.445408,0.206288,0.954123,0.727713,0.113658,0.60633,0.883839,0.498413,0.731347,0.964028,0.736254,0.189411,0.0946002,0.63762,0.755404,0.40507,0.759509,0.298471,0.145486,0.505618,0.487734,0.623133,0.536007,0.265337,0.301126,0.353422,0.938761,0.716295,0.472152,0.0800812,0.801133,0.640828,0.0730968,0.960638,0.681518,0.981747,0.794591,0.133343,0.7797,0.510316,0.165072,0.20272,0.59695,0.0816723,0.287665,0.561809,0.366743,0.734073,0.499691,0.688828,0.654071,0.20226,0.7909,0.208554,0.40102,0.900972,0.361128,0.988345,0.392092,0.665552,0.672852,0.899466,0.558998,0.75386,0.359077,0.611712,0.503268,0.261785,0.302698,0.950445,0.104188,0.499555,0.369194,0.885978,0.0973828,0.143692,0.554327,0.839172,0.0784602,0.541333,0.670298,0.372028,0.948295,0.166037,0.986498,0.218468,0.0388768,0.536797,0.914673,0.0784658,0.904499,0.807866,0.0973969,0.924431,0.910333,0.15438,0.355575,0.12664,0.0181307,0.0272516,0.875295,0.680762,0.48161,0.435861,0.356483,0.32098,0.560014,0.897467,0.413607,0.315915,0.220996,0.173408,0.58814,0.783402,0.381972,0.115497,0.900043,0.762724,0.540011,0.35415,0.0623277,0.127436,0.311007,0.789171,0.389723,0.366971,0.989419,0.553084,0.38362,0.317897,0.793798,0.487876,0.0159565,0.330835,0.899793,0.12591,0.879904,0.672901,0.374845,0.247784,0.413511,0.00953835,0.763512,0.723446,0.4082,0.624772,0.714904,0.299023,0.470665,0.150365,0.117119,0.657127,0.663951,0.0501373,0.0644292,0.326581,0.5075,0.144305,0.80613,0.487275,0.9855,0.18969,0.701798,0.955863,0.991938,0.28653,0.458057,0.910794,0.654234,0.756412,0.986591,0.814722,0.932512,0.319139,0.239296,0.0317706,0.0460276,0.588742,0.954803,0.876328,0.224968,0.458476,0.801621,0.363311,0.547572,0.783698,0.956729,0.469804,0.495411,0.810535,0.140748,0.23833,0.0300537,0.330878,0.847615,0.393839,0.043424,0.557683,0.587391,0.125632,0.17598,0.715266,0.280357,0.371419,0.767129,0.979275,0.456086,0.197673,0.444573,0.526502,0.324701,0.373937,0.463686,0.379393,0.491711,0.0686738,0.324963,0.447629,0.286302,0.485318,0.636567,0.497576,0.583836,0.46223,0.469735,0.970875,0.392373,0.171951,0.099983,0.343813,0.712122,0.227867,0.272991,0.776438,0.809118,0.104085,0.120835,0.122461,0.905248,0.713182,0.669787,0.646519,0.623127,0.923625,0.362119,0.128446,0.288262,0.934626,0.0822671,0.0630289,0.964673,0.6639,0.733916,0.604701,0.515024,0.841298,0.0801607,0.920993,0.910742,0.328324,0.224151,0.787119,0.384336,0.478002,0.607687,0.349861,0.488439,0.018512,0.335989,0.19751,0.632935,0.35146,0.944791,0.005463,0.763953,0.652423,0.134285,0.152083,0.0362109,0.704726,0.0776438,0.146972,0.567755,0.010945,0.720696,0.0856822,0.17201,0.381069,0.403957,0.552341,0.56382,0.605791,0.552598,0.174066,0.88256,0.329884,0.750035,0.0990127,0.846114,0.992898,0.639033,0.486031,0.262402,0.986173,0.159428,0.731884,0.62837,0.635528,0.41469,0.204257,0.37375,0.92132,0.380022,0.0881293,0.623471,0.935201,0.273561,0.727882,0.831148,0.642529,0.417776,0.207914,0.803779,0.645779,0.0953379,0.869895,0.338563,0.164651,0.570524,0.208786,0.493967,0.457952,0.641782,0.408047,0.251689,0.653803,0.191786,0.914352,0.162019,0.370724,0.446366,0.118476,0.330382,0.0883349,0.354517,0.576077,0.406397,0.444921,0.895657,0.708722,0.586838,0.651828,0.753672,0.694238,0.297234,0.615995,0.248116,0.64007,0.0296493,0.303125,0.911513,0.206307,0.49736,0.710797,0.662164,0.68012,0.702457,0.57122,0.981623,0.332678,0.611175,0.00661337,0.129263,0.943397,0.347025,0.770586,0.690994,0.650383,0.365037,0.397179,0.30527,0.687246,0.0780267,0.315652,0.841818,0.764634,0.638202,0.999096,0.561768,0.10477,0.828691,0.0778763,0.409582,0.882153,0.781588,0.843081,0.915443,0.53598,0.358702,0.638889,0.970256,0.960995,0.882405,0.262207,0.471815,0.301055,0.470935,0.222391,0.877724,0.178413,0.143111,0.692187,0.124698,0.864814,0.323914,0.455215,0.409028,0.723866,0.421217,0.114201,0.829338,0.473657,0.0321699,0.954685,0.660423,0.872783,0.163709,0.860214,0.368011,0.32407,0.758702,0.816738,0.0382653,0.980778,0.919683,0.392827,0.618657,0.940542,0.747666,0.0972995,0.455516,0.384364,0.501175,0.429037,0.248829,0.121794,0.083187,0.866758,0.755493,0.559383,0.051916,0.204522,0.363141,0.732655,0.480002,0.185076,0.846643,0.834509,0.793595,0.475501,0.128802,0.831476,0.151321,0.737809,0.0814993,0.28856,0.500538,0.717975,0.922126,0.504771,0.742695,0.617789,0.302682,0.225065,0.462863,0.900768,0.296799,0.228766,0.943108,0.593141,0.526493,0.256275,0.10304,0.671159,0.9292,0.749971,0.343644,0.946919,0.71759,0.582896,0.105991,0.845735,0.781939,0.0359255,0.516489,0.344923,0.0926295,0.723744,0.39417,0.492955,0.313758,0.701017,0.402538,0.628384,0.020905,0.0450274,0.473614,0.75558,0.134915,0.926229,0.980478,0.970608,0.608266,0.923099,0.441856,0.284324,0.0974084,0.563722,0.515183,0.266316,0.935378,0.713083,0.707462,0.156598,0.28822,0.150996,0.661555,0.212363,0.673146,0.465988,0.468592,0.663935,0.166445,0.323035,0.250779,0.390761,0.139616,0.256402,0.66972,0.0501736,0.538911,0.853895,0.164682,0.696035,0.895293,0.993632,0.768505,0.919174,0.378287,0.296732,0.39946,0.185964,0.483431,0.727342,0.518774,0.920973,0.00828433,0.444494,0.973333,0.677389,0.305156,0.802182,0.0460026,0.801629,0.220143,0.819291,0.557893,0.178052,0.462238,0.600561,0.206269,0.681628,0.273199,0.673315,0.463339,0.831208,0.721498,0.80406,0.467313,0.527534,0.236698,0.96733,0.403886,0.300036,0.0657875,0.680274,0.834674,0.871556,0.601506,0.00098604,0.386853,0.974079,0.346486,0.24865,0.256681,0.929512,0.493546,0.255619,0.764171,0.635825,0.469259,0.337269,0.967351,0.356606,0.593141,0.320173,0.939821,0.0165637,0.990766,0.35918,0.0999644,0.725437,0.756489,0.237615,0.660967,0.559674,0.415101,0.256428,0.828668,0.935028,0.727021,0.462419,0.000897706,0.0413237,0.858972,0.0673169,0.886799,0.531985,0.99759,0.26708,0.479337,0.677695,0.0319151,0.111546,0.278955,0.879377,0.0861264,0.294915,0.545061,0.188771,0.00549221,0.0188805,0.296608,0.0969536,0.650959,0.247676,0.562759,0.231689,0.798563,0.100197,0.321049,0.0587865,0.0864239,0.761453,0.511312,0.231698,0.551845,0.223876,0.343597,0.665711,0.802523,0.8826,0.738043,0.671054,0.307519,0.379065,0.118851,0.279142,0.177804,0.288326,0.126509,0.865312,0.0760975,0.570788,0.664323,0.389147,0.162447,0.0495659,0.793837,0.279833,0.290302,0.144434,0.73156,0.299711,0.433406,0.668812,0.747181,0.0963776,0.467729,0.654968,0.717075,0.029316,0.0891522,0.719364,0.241435,0.746471,0.105324,0.927882,0.972426,0.679569,0.404026,0.0162447,0.404202,0.244049,0.698733,0.603446,0.409381,0.858715,0.0256373,0.967236,0.302984,0.106405,0.354641,0.155877,0.120171,0.174362,0.695986,0.246287,0.171561,0.0553393,0.443422,0.207247,0.333526,0.500719,0.197701,0.34489,0.500471,0.065261,0.31256,0.77861,0.434476,0.860677,0.00640243,0.146686,0.431892,0.716214,0.00278425,0.506575,0.97749,0.638025,0.0919691,0.770999,0.67663,0.320954,0.283315,0.214076,0.745465,0.898663,0.825751,0.148592,0.691216,0.772984,0.948892,0.100048,0.152398,0.793386,0.746744,0.134459,0.649895,0.902779,0.581936,0.887781,0.919438,0.420393,0.775891,0.211816,0.235419,0.604988,0.0083794,0.187058,0.963453,0.912247,0.554946,0.142668,0.461829,0.812648,0.221851,0.881569,0.372642,0.437343,0.534274,0.317886,0.125288,0.306539,0.530502,0.257259,0.215646,0.13838,0.643716,0.260934,0.747743,0.517316,0.198832,0.879551,0.282931,0.822693,0.213798,0.724028,0.937251,0.745247,0.363454,0.252106,0.641834,0.964407,0.281986,0.293575,0.366753,0.374512,0.681514,0.342521,0.728705,0.803935,0.67027,0.769256,0.106889,0.803114,0.921037,0.917721,0.281922,0.00315499,|0.756033,0.23286,0.139472,0.825608,0.141466,0.927257,0.495601,0.312679,0.91214,0.159731,0.0157604,0.624222,0.288174,0.256992,0.724405,0.767898,0.531418,0.0575877,0.701226,0.103596,0.585971,0.488828,0.685695,0.647705,0.132277,0.333132,0.648596,0.893705,0.0444756,0.853001,0.765176,0.41409,0.267367,0.243691,0.978122,0.234456,0.0881533,0.682343,0.273364,0.19489,0.580702,0.600658,0.620585,0.834952,0.810359,0.13658,0.504529,0.0360692,0.886505,0.84621,0.0627016,0.281263,0.541731,0.302906,0.333443,0.540742,0.0998302,0.340808,0.12379,0.961791,0.0151309,0.257377,0.212862,0.303894,0.494437,0.164738,0.031279,0.417398,0.0154719,0.189123,0.766985,0.103864,0.131333,0.281125,0.43795,0.941261,0.143592,0.096096,0.771544,0.186935,0.495278,0.062813,0.181476,0.379447,0.348699,0.276443,0.250176,0.784642,0.549053,0.609089,0.749029,0.186849,0.0781262,0.178506,0.193276,0.995467,0.699397,0.364712,0.182948,0.975187,0.373388,0.457454,0.667575,0.0217587,0.126726,0.127584,0.366762,0.634545,0.20477,0.296901,0.493034,0.99534,0.393202,0.609032,0.457241,0.549264,0.127443,0.711475,0.466238,0.812495,0.257141,0.751672,0.0172775,0.506459,0.945734,0.293176,0.373044,0.514287,0.966723,0.453139,0.484093,0.117323,0.665497,0.369351,0.424117,0.68417,0.676083,0.66744,0.303511,0.516339,0.761101,0.713617,0.442481,0.923796,0.914931,0.195888,0.363016,0.966258,0.185522,0.0826383,0.737486,0.603105,0.0877696,0.401731,0.177385,0.52966,0.0475022,0.548014,0.195189,0.177019,0.570717,0.759356,0.955694,0.206622,0.72621,0.525805,0.147915,0.232533,0.427868,0.943029,0.177654,0.736507,0.866636,0.413232,0.542077,0.758822,0.948829,0.601207,0.244763,0.759385,0.621527,0.216029,0.76027,0.483058,0.705614,0.525331,0.451625,0.795231,0.841081,0.744415,0.578078,0.595916,0.437944,0.987532,0.463758,0.679599,0.16554,0.581852,0.283009,0.860013,0.0577313,0.914171,0.395958,0.284585,0.427501,0.853044,0.3178,0.26093,0.0494384,0.948992,0.211819,0.108531,0.696155,0.159917,0.437782,0.891439,0.913942,0.29594,0.668629,0.679363,0.723222,0.692283,0.0537357,0.522379,0.782139,0.241573,0.774034,0.46928,0.468501,0.28337,0.624229,0.705561,0.391901,0.388553,0.801594,0.954067,0.38288,0.707589,0.322525,0.703593,0.0645547,0.683761,0.744728,0.807822,0.65534,0.11648,0.686649,0.967317,0.3975,0.867434,0.428107,0.0715123,0.490429,0.765425,0.462802,0.628681,0.736366,0.920478,0.601089,0.745068,0.178969,0.57345,0.263211,0.122459,0.0347321,0.896372,0.925796,0.0901508,0.0479639,0.392341,0.988633,0.746586,0.749294,0.56125,0.778342,0.00553447,0.5777,0.313244,0.244388,0.26947,0.121791,0.62962,0.465208,0.535133,0.414783,0.808079,0.727053,0.17835,0.453731,0.529921,0.184647,0.303427,0.566604,0.212233,0.070849,0.166726,0.792012,0.072852,0.298796,0.414171,0.653721,0.65035,0.779552,0.483236,0.0182758,0.741172,0.546432,0.810753,0.92101,0.214809,0.269619,0.209205,0.217891,0.743837,0.176087,0.908943,0.563568,0.770042,0.58649,0.785587,0.682,0.846453,0.635087,0.15777,0.740203,0.736279,0.214971,0.351665,0.971187,0.339044,0.563724,0.0957105,0.776052,0.788138,0.0790798,0.576521,0.669029,0.971297,0.430075,0.530981,0.250993,0.669231,0.223554,0.303588,0.4559,0.234611,0.592358,0.368858,0.294263,0.879127,0.0979584,0.622139,0.043118,0.386051,0.887223,0.83929,0.301127,0.679784,0.397351,0.980655,0.236515,0.0175244,0.524314,0.319005,0.750352,0.844293,0.51992,0.649412,0.162796,0.505668,0.258116,0.253703,0.978163,0.386693,0.0695035,0.232621,0.291993,0.0444944,0.716871,0.740303,0.309736,0.890594,0.134729,0.785,0.0922711,0.175002,0.896525,0.176702,0.286293,0.874677,0.508772,0.986986,0.474487,0.741522,0.764508,0.267393,0.932169,0.166367,0.58495,0.372907,0.0490946,0.910457,0.309375,0.234118,0.454255,0.242856,0.746692,0.567336,0.493865,0.710482,0.466997,0.992438,0.58271,0.882804,0.249631,0.904616,0.906121,0.846768,0.603592,0.7026,0.0473667,0.991752,0.58232,0.264541,0.115948,0.341118,0.592636,0.459952,0.780364,0.364073,0.105503,0.877745,0.282091,0.885952,0.25017,0.722806,0.00131381,0.732302,0.488616,0.471886,0.304585,0.444733,0.36851,0.810247,0.701137,0.308457,0.977383,0.87055,0.352531,0.444755,0.154456,0.878955,0.338672,0.945793,0.673768,0.666743,0.542747,0.575409,0.0899988,0.59032,0.25738,0.786804,0.706283,0.256639,0.32649,0.302084,0.676108,0.0355719,0.65969,0.723661,0.780952,0.503195,0.302413,0.727562,0.782062,0.441978,0.0642884,0.805716,0.544211,0.0429734,0.699287,0.111787,0.401404,0.238914,0.145386,0.0340438,0.655909,0.302521,0.374216,0.908254,0.101683,0.968709,0.799307,0.613689,0.53762,0.396831,0.140409,0.450731,0.033398,0.191905,0.534784,0.241582,0.904094,0.508472,0.336075,0.179583,0.0865941,0.880493,0.127864,0.083834,0.102692,0.456963,0.736988,0.568358,0.458747,0.97494,0.77982,0.202265,0.917295,0.852835,0.71095,0.628144,0.799764,0.460349,0.534372,0.157482,0.829568,0.387616,0.858628,0.343297,0.320509,0.849112,0.173673,0.419047,0.19481,0.888489,0.544927,0.837138,0.810585,0.251484,0.676753,0.827366,0.292203,0.356212,0.644304,0.0956132,0.799821,0.0715901,0.654621,0.278175,0.425184,0.0289795,0.0488398,0.972155,0.883534,0.214142,0.473159,0.0423438,0.48002,0.376211,0.0775281,0.469568,0.988592,0.669469,0.602512,0.942814,0.831948,0.252979,0.652222,0.260966,0.759368,0.829804,0.804897,0.743084,0.150604,0.193677,0.930192,0.818106,0.42599,0.639554,0.179267,0.825555,0.175872,0.087189,0.934197,0.222314,0.717399,0.369901,0.127101,0.47947,0.987361,0.674874,0.0292321,0.225247,0.0634846,0.856284,0.656856,0.363173,0.340042,0.095944,0.979067,0.258834,0.547309,0.205146,0.647191,0.830092,0.856133,0.174919,0.293161,0.714824,0.639453,0.154469,0.85693,0.938955,0.176737,0.428233,0.415835,0.391283,0.738825,0.496488,0.815817,0.648363,0.159919,0.25982,0.146153,0.927,0.957715,0.697508,0.121455,0.178693,0.599046,0.286474,0.679861,0.472397,0.10231,0.611987,0.423912,0.864185,0.247206,0.43152,0.0775561,0.204258,0.592894,0.295202,0.0565996,0.898115,0.0127574,0.387649,0.256174,0.373487,0.139999,0.602747,0.427812,0.237125,0.85612,0.844992,0.547988,0.054708,0.730598,0.0724857,0.279015,0.103785,0.707666,0.125135,0.592402,0.809037,0.425609,0.421677,0.684007,0.30402,0.705757,0.0716133,0.688149,0.715242,0.14095,0.730665,0.138784,0.923609,0.855008,0.620573,0.188054,0.867939,0.401701,0.929945,0.714093,0.856798,0.128219,0.394961,0.214627,0.862753,0.21589,0.0633571,0.138234,0.00403392,0.285412,0.449357,0.707481,0.871079,0.207187,0.199887,0.167176,0.254406,0.743475,0.229957,0.934832,0.802835,0.275276,0.580043,0.825495,0.684294,0.530024,0.266191,0.215638,0.918125,0.496256,0.61401,0.0211838,0.184365,0.47261,0.972075,0.329378,0.128811,0.556302,0.427917,0.349089,0.421721,0.435469,0.122527,0.499839,0.138222,0.761434,0.555887,0.635088,0.835578,0.986077,0.458029,0.377503,0.149019,0.894146,0.430834,0.83694,0.960249,0.00781864,0.394506,0.98899,0.0479356,0.902923,0.320495,0.22195,0.610259,0.87519,0.526993,0.525209,0.3577,0.0291828,0.188513,0.443087,0.959789,0.28879,0.603971,0.859584,0.587803,0.953372,0.221916,0.533389,0.418062,0.405498,0.429477,0.910418,0.954047,0.000584424,0.234485,0.0590937,0.2613,0.895716,0.129355,0.447219,0.615836,0.133288,0.39978,0.203771,0.948139,0.523294,0.164821,0.619307,0.158939,0.788038,0.80542,0.980394,0.581071,0.87671,0.040152,0.377036,0.779906,0.340578,0.422303,0.182671,0.872225,0.522604,0.68547,0.721177,0.991881,0.501094,0.30752,0.470902,0.415313,0.98283,0.256568,0.0924199,0.283604,0.524808,0.12985,0.646681,0.820858,0.974206,0.639213,0.948787,0.206127,0.860913,0.875436,0.978382,0.573982,0.918898,0.486099,0.409032,0.759496,0.193425,0.411456,0.887759,0.281872,0.824342,0.779508,0.352099,0.33163,0.45176,0.773483,0.819325,0.369544,0.888802,0.30571,0.19451,0.440731,0.226595,0.440183,0.835042,0.788291,0.677538,0.506504,0.19605,0.765401,0.122832,0.0172894,0.989908,0.933059,0.519638,0.657135,0.263092,0.117753,0.908235,0.276073,0.0362456,0.584283,0.121969,0.77585,0.0969298,0.340593,0.820813,0.0894691,0.644899,0.218079,0.779363,0.0825341,0.807775,0.642211,0.966616,0.814711,0.075792,0.906986,0.734524,0.188631,0.272845,0.0134124,0.540177,0.097219,0.579749,0.553271,0.453106,0.628051,0.921699,0.0833835,0.510512,0.333709,0.815084,0.56344,0.232246,0.787008,0.809558,0.629248,0.808301,0.843617,0.885359,0.625143,0.00265783,0.69533,0.492954,0.375557,0.397538,0.595492,0.13338,0.933382,0.374489,0.836288,0.722898,0.774678,0.793402,0.861872,0.54657,0.060909,0.228996,0.863835,0.523326,0.790262,0.809338,0.453837,0.868686,0.991279,0.105259,0.58839,0.880673,0.352073,0.556923,0.312506,0.0524164,0.836713,0.526539,0.33982,0.379675,0.568375,0.525314,0.667258,0.580131,0.896527,0.573191,0.393463,0.257214,0.127199,0.173566,0.514547,0.272901,0.651088,0.776756,0.132955,0.0761048,0.590574,0.0895505,0.210033,0.754772,0.207128,0.170293,0.422175,0.634222,0.809575,0.453379,0.211982,0.362536,0.733556,0.20392,0.881813,0.975497,0.549559,0.121243,0.84824,0.31347,0.895825,0.637951,0.380888,0.107566,0.563955,0.0987076,0.923816,0.891726,0.522858,0.482633,0.586065,0.803855,0.870178,0.00684333,0.298529,0.668714,0.310457,0.464564,0.409273,0.263024,0.331782,0.722451,0.183296,0.334399,0.577752,0.532232,0.707543,|0.395203,0.692134,0.37972,0.693072,0.656227,0.141035,0.877983,0.48577,0.567313,0.167583,0.639216,0.235389,0.432803,0.8347,0.408121,0.23996,0.607934,0.386911,0.710586,0.0813734,0.423005,0.951509,0.90379,0.627894,0.714053,0.799598,0.130336,0.44509,0.492743,0.619544,0.79816,0.45243,0.739754,0.495454,0.311086,0.793994,0.0325133,0.0444262,0.891579,0.972994,0.790178,0.171924,0.287826,0.48273,0.421531,0.844382,0.989218,0.508386,0.0778905,0.766692,0.0810902,0.202501,0.644999,0.617275,0.107076,0.587376,0.3666,0.16645,0.410433,0.836446,0.0881491,0.107722,0.422931,0.452957,0.761816,0.442033,0.614659,0.763233,0.974701,0.369956,0.612992,0.691411,0.470198,0.79592,0.224705,0.727952,0.741946,0.155774,0.258967,0.60147,0.434681,0.531449,0.276361,0.343625,0.654513,0.167981,0.740017,0.473905,0.447283,0.951762,0.726551,0.789567,0.0995874,0.338648,0.201047,0.661418,0.986156,0.993012,0.371466,0.130214,0.95849,0.765438,0.244907,0.976169,0.246308,0.270594,0.665108,0.583275,0.585136,0.554191,0.063257,0.653989,0.588044,0.915465,0.808833,0.287311,0.846962,0.803244,0.801838,0.985277,0.685539,0.12593,0.546399,0.19934,0.566513,0.260139,0.0481709,0.29853,0.138304,0.154251,0.935065,0.31755,0.700867,0.10422,0.496104,0.449826,0.922298,0.886756,0.106357,0.890796,0.169764,0.282011,0.956729,0.426909,0.690248,0.181573,0.930218,0.738007,0.145644,0.151759,0.59555,0.749567,0.0237566,0.982044,0.198106,0.959531,0.758617,0.217231,0.495398,0.74495,0.649522,0.563121,0.133088,0.721412,0.810789,0.969991,0.348288,0.516345,0.96998,0.103864,0.728804,0.757164,0.642892,0.111986,0.783795,0.089359,0.38994,0.0202082,0.879537,0.884101,0.224798,0.485558,0.597069,0.812912,0.723174,0.0147418,0.511215,0.403369,0.616323,0.483829,0.32472,0.139872,0.512985,0.684979,0.975568,0.91252,0.356053,0.421439,0.555004,0.49276,0.398149,0.343994,0.922305,0.607228,0.135833,0.351659,0.623745,0.0984722,0.90817,0.167388,0.171138,0.426554,0.372803,0.137167,0.339678,0.088917,0.166909,0.856939,0.298272,0.928677,0.566773,0.85411,0.764854,0.355637,0.195724,0.452097,0.984468,0.217327,0.234692,0.792093,0.971778,0.265617,0.645448,0.467022,0.680249,0.419971,0.497723,0.136194,0.877432,0.541783,0.735696,0.0298812,0.84783,0.942954,0.855045,0.613342,0.678374,0.196056,0.0127868,0.644305,0.25309,0.974543,0.388983,0.405239,0.817663,0.199945,0.659427,0.696129,0.679406,0.329345,0.806859,0.955564,0.97508,0.656345,0.00267053,0.660442,0.454639,0.679925,0.958745,0.922928,0.0762743,0.502587,0.758107,0.501997,0.5915,0.215445,0.133099,0.95616,0.544677,0.845084,0.598266,0.789029,0.159831,0.348024,0.635238,0.136856,0.29322,0.769493,0.71031,0.269565,0.737453,0.668583,0.303566,0.126512,0.868675,0.593869,0.140975,0.788604,0.709686,0.63978,0.710375,0.191085,0.420887,0.655143,0.542044,0.97593,0.0445699,0.533971,0.319145,0.500014,0.177063,0.945132,0.885071,0.458463,0.378794,0.203698,0.658053,0.480734,0.0840302,0.220757,0.969213,0.609515,0.453871,0.644505,0.651048,0.00927883,0.28519,0.719755,0.0802426,0.303606,0.894393,0.758743,0.0887254,0.0738694,0.454931,0.452589,0.223666,0.963475,0.0734599,0.80877,0.279644,0.0777047,0.571739,0.12332,0.662636,0.492578,0.841241,0.743339,0.213021,0.843887,0.814967,0.75568,0.484958,0.442327,0.224418,0.11514,0.364688,0.356693,0.975636,0.805641,0.691458,0.990797,0.523439,0.831473,0.449845,0.672966,0.680824,0.431123,0.759603,0.677628,0.434263,0.571398,0.581651,0.225956,0.185344,0.84265,0.763497,0.499749,0.735133,0.962716,0.482143,0.551675,0.0678539,0.721241,0.836831,0.700215,0.662099,0.591338,0.312967,0.727278,0.835115,0.284355,0.034585,0.16909,0.0816498,0.0211066,0.996961,0.659662,0.470733,0.546446,0.525479,0.305093,0.263349,0.470402,0.72782,0.619267,0.619731,0.539756,0.936806,0.94967,0.517082,0.88915,0.764947,0.739748,0.845672,0.210151,0.148347,0.757698,0.727905,0.491061,0.268076,0.0159734,0.16753,0.63115,0.341212,0.633369,0.303165,0.667697,0.708297,0.748967,0.329394,0.695172,0.84186,0.476154,0.859737,0.0183294,0.662938,0.867672,0.202025,0.679971,0.209825,0.758597,0.432635,0.917876,0.244439,0.773775,0.866923,0.632952,0.183354,0.917235,0.175468,0.872296,0.211372,0.30108,0.867847,0.105067,0.0552071,0.292139,0.62748,0.258718,0.909018,0.72049,0.38601,0.240075,0.248339,0.476113,0.932903,0.563227,0.563223,0.989558,0.413861,0.478592,0.199283,0.854854,0.116516,0.310182,0.254965,0.379807,0.155532,0.772873,0.442162,0.447182,0.639465,0.82035,0.646864,0.22165,0.490346,0.427327,0.246939,0.851544,0.442524,0.202631,0.37068,0.391819,0.930197,0.826344,0.831678,0.716521,0.664015,0.715438,0.981041,0.0394101,0.07491,0.292255,0.423551,0.634008,0.0928699,0.636455,0.199639,0.709731,0.268823,0.80635,0.124463,0.796444,0.634983,0.447075,0.149216,0.232872,0.0378101,0.307868,0.723139,0.954229,0.734086,0.998626,0.612114,0.587037,0.600599,0.997603,0.892445,0.515083,0.220722,0.137833,0.46729,0.359246,0.755836,0.682715,0.658362,0.243875,0.747051,0.357637,0.0202952,0.495611,0.235828,0.411263,0.683745,0.575722,0.278524,0.802398,0.443314,0.0796642,0.153636,0.83793,0.748349,0.975303,0.943049,0.90393,0.832697,0.174263,0.620302,0.559364,0.562131,0.52686,0.316631,0.596506,0.588719,0.849168,0.284022,0.292878,0.143267,0.0539526,0.779322,0.865093,0.639581,0.870621,0.29629,0.716473,0.801821,0.585296,0.853547,0.118849,0.0713868,0.376022,0.193814,0.284292,0.827183,0.656669,0.685596,0.376378,0.268495,0.786442,0.796095,0.0918884,0.0515135,0.0102214,0.0817515,0.966079,0.064278,0.296748,0.10736,0.253323,0.674815,0.730747,0.414526,0.1445,0.591029,0.918855,0.472352,0.883757,0.979035,0.666089,0.904314,0.635711,0.51926,0.294608,0.583721,0.431241,0.844291,0.928317,0.900045,0.654228,0.868802,0.605016,0.486093,0.472308,0.0383751,0.698279,0.173952,0.912546,0.196826,0.00285399,0.314984,0.219608,0.914584,0.643495,0.381278,0.880343,0.479403,0.494727,0.361612,0.174733,0.108609,0.174432,0.421633,0.767363,0.923726,0.957611,0.990818,0.146731,0.093172,0.137764,0.926778,0.815756,0.586316,0.376746,0.845229,0.565529,0.674825,0.329032,0.123157,0.934143,0.8007,0.217325,0.416702,0.542715,0.501466,0.679895,0.121303,0.0264706,0.68069,0.411075,0.756931,0.455417,0.204783,0.117328,0.965027,0.960372,0.924952,0.0839537,0.455559,0.480562,0.162076,0.772893,0.399754,0.798236,0.902552,0.418566,0.256432,0.60195,0.534073,0.320973,0.474257,0.60891,0.924267,0.0131219,0.711632,0.435274,0.955938,0.982852,0.396493,0.148974,0.991206,0.333733,0.831244,0.74892,0.267232,0.493043,0.189799,0.83844,0.438494,0.0184166,0.321468,0.900783,0.384336,0.957487,0.676403,0.755339,0.889578,0.0546495,0.0963207,0.902626,0.207684,0.562461,0.199164,0.349858,0.336357,0.682214,0.691556,0.216101,0.733387,0.993262,0.346019,0.0547591,0.526619,0.676254,0.568839,0.940355,0.892254,0.166004,0.245405,0.165869,0.561798,0.750519,0.274694,0.846857,0.226344,0.325637,0.203083,0.941572,0.815293,0.0863483,0.243033,0.647792,0.136745,0.520873,0.420758,0.82295,0.156306,0.0852314,0.257085,0.764795,0.814532,0.692191,0.271402,0.0645731,0.57602,0.920608,0.453176,0.498793,0.893496,0.569401,0.185425,0.362411,0.0476899,0.843691,0.485372,0.347099,0.0473209,0.661247,0.122443,0.676173,0.788135,0.359292,0.936229,0.0391025,0.163129,0.187311,0.199191,0.436286,0.470739,0.778751,0.116436,0.907818,0.821288,0.397013,0.10431,0.343457,0.617782,0.594209,0.789735,0.499297,0.307371,0.140248,0.235578,0.210948,0.0878887,0.212119,0.892125,0.661349,0.641945,0.691218,0.988459,0.0123543,0.0336102,0.0975831,0.628796,0.894694,0.837805,0.807389,0.0765569,0.787143,0.00413525,0.446057,0.575681,0.850781,0.685743,0.844469,0.827547,0.595656,0.394625,0.773696,0.825711,0.651496,0.269196,0.642124,0.946796,0.475185,0.350721,0.972361,0.0267479,0.632423,0.454591,0.423948,0.0740329,0.677264,0.983476,0.708597,0.421307,0.206722,0.00273836,0.328942,0.91012,0.935237,0.865247,0.0823371,0.0128046,0.413076,0.0850545,0.871331,0.704676,0.293889,0.442174,0.00630271,0.0870535,0.53648,0.255546,0.827995,0.834453,0.52386,0.427293,0.842817,0.467426,0.335719,0.51244,0.671204,0.252701,0.123777,0.968754,0.868853,0.920048,0.935682,0.533762,0.0734104,0.569502,0.0688704,0.61549,0.922512,0.295726,0.561741,0.360937,0.401385,0.165857,0.356181,0.113286,0.740266,0.226385,0.334825,0.533979,0.675343,0.0415545,0.523199,0.540109,0.419217,0.23783,0.471525,0.115331,0.363272,0.0677513,0.140133,0.904274,0.627364,0.896792,0.644616,0.622687,0.185538,0.360927,0.777504,0.0425449,0.455017,0.835976,0.363436,0.981524,0.841607,0.407849,0.982927,0.0761728,0.630818,0.161432,0.918659,0.331634,0.211705,0.620167,0.269668,0.567143,0.398223,0.542059,0.846747,0.290108,0.198322,0.573955,0.964478,0.0390124,0.38124,0.968616,0.136763,0.834229,0.212569,0.960486,0.811272,0.168923,0.860645,0.312753,0.658581,0.140762,0.543747,0.77579,0.676913,0.676016,0.456987,0.868991,0.749963,0.728312,0.750251,0.477147,0.774137,0.943082,0.22577,0.167907,0.885643,0.839296,0.522109,0.485249,0.903232,0.808558,0.424381,0.865113,0.884634,0.27636,0.108401,0.101417,0.925739,0.0758029,0.742503,0.231028,0.466148,0.0109044,0.97258,0.450266,0.285405,0.235644,0.276286,0.137805,0.778181,0.291364,0.752597,0.698422,0.728872,0.681749,0.684895,0.115699,0.477085,|0.177319,0.115973,0.157335,0.54331,0.776544,0.371773,0.973468,0.222704,0.015483,0.117082,0.394872,0.406723,0.0464448,0.700163,0.140782,0.844103,0.402428,0.0174266,0.834524,0.234761,0.949503,0.443104,0.0697497,0.645218,0.524288,0.560061,0.138537,0.217199,0.614528,0.908748,0.719418,0.926208,0.512284,0.434784,0.655434,0.810954,0.41183,0.972484,0.767342,0.280747,0.1641,0.817965,0.863868,0.299004,0.530818,0.630242,0.328496,0.878104,0.828934,0.102562,0.669501,0.652228,0.915187,0.562577,0.212604,0.554226,0.052773,0.710134,0.227938,0.788214,0.233375,0.719493,0.834668,0.238283,0.45721,0.867238,0.695439,0.919221,0.851886,0.851788,0.595264,0.736037,0.344183,0.552884,0.209426,0.753662,0.558313,0.233603,0.225815,0.242219,0.949335,0.452658,0.628787,0.29589,0.0547696,0.111967,0.515969,0.769276,0.435427,0.453834,0.145939,0.499487,0.537568,0.993223,0.966163,0.965903,0.707168,0.551952,0.453761,0.0369852,0.15149,0.13567,0.0901201,0.195981,0.904774,0.871401,0.914714,0.111838,0.0264955,0.449691,0.935538,0.477073,0.345966,0.724809,0.506485,0.802724,0.315822,0.449687,0.046607,0.779145,0.657904,0.46941,0.293767,0.438428,0.85713,0.11287,0.178796,0.124448,0.251507,0.674904,0.157561,0.508627,0.428894,0.520326,0.094707,0.646963,0.392261,0.333665,0.584945,0.459699,0.262667,0.723292,0.617184,0.558959,0.973823,0.705379,0.520248,0.681401,0.167828,0.283878,0.389615,0.576232,0.136265,0.671938,0.113641,0.734475,0.886447,0.975795,0.681995,0.265667,0.0401255,0.0838165,0.0903922,0.250395,0.868765,0.509932,0.0196672,0.894382,0.936942,0.163316,0.387084,0.702557,0.221808,0.495775,0.341805,0.579553,0.272352,0.491092,0.148303,0.582647,0.0475453,0.366664,0.837867,0.599009,0.85038,0.625222,0.274965,0.819982,0.501776,0.0786705,0.260677,0.446855,0.51788,0.242918,0.790339,0.617252,0.920265,0.834216,0.517521,0.75739,0.0640444,0.312134,0.0961717,0.534863,0.630635,0.722462,0.964714,0.152497,0.708087,0.209625,0.129269,0.433394,0.437951,0.989367,0.649324,0.212944,0.163509,0.518576,0.128411,0.82142,0.303017,0.228168,0.493229,0.733058,0.342435,0.237133,0.493104,0.846176,0.0172666,0.703995,0.213163,0.0835882,0.839304,0.891471,0.865318,0.758108,0.594091,0.257236,0.345169,0.360642,0.524801,0.357191,0.650878,0.658224,0.227118,0.16441,0.242951,0.886937,0.926488,0.867205,0.728756,0.342413,0.407082,0.687827,0.0631211,0.0930271,0.341451,0.934642,0.0943657,0.36115,0.195368,0.381353,0.668558,0.959113,0.902076,0.695898,0.844551,0.710661,0.679477,0.202893,0.94809,0.177563,0.0499297,0.457803,0.556346,0.629342,0.890588,0.950767,0.151025,0.854315,0.769006,0.344321,0.841067,0.673914,0.932764,0.825273,0.0148019,0.276643,0.91912,0.0169032,0.520952,0.235037,0.2748,0.889086,0.925892,0.471574,0.740024,0.620335,0.906546,0.653404,0.210809,0.962186,0.781107,0.720926,0.925338,0.177674,0.0171461,0.189161,0.247592,0.549198,0.381104,0.288725,0.284977,0.805357,0.999955,0.748336,0.729019,0.394001,0.566103,0.132166,0.814402,0.170242,0.480777,0.185542,0.411557,0.915838,0.176462,0.599514,0.0424768,0.051168,0.640325,0.124799,0.128602,0.465639,0.912842,0.261082,0.746312,0.0279577,0.590553,0.26774,0.0629599,0.334044,0.5095,0.50301,0.240137,0.234153,0.707392,0.0807016,0.802901,0.0639728,0.653663,0.700793,0.644863,0.0145265,0.035314,0.844069,0.0908383,0.357191,0.119965,0.396327,0.970569,0.986573,0.486201,0.306137,0.749011,0.975168,0.902543,0.52415,0.0342931,0.599181,0.686817,0.775952,0.675386,0.198696,0.43843,0.344309,0.594854,0.510627,0.466282,0.658113,0.275385,0.866942,0.517536,0.28179,0.847328,0.27368,0.35942,0.32136,0.254849,0.381677,0.836954,0.875165,0.614701,0.804477,0.26985,0.197013,0.243063,0.323618,0.503267,0.579189,0.652671,0.279467,0.131125,0.630862,0.975663,0.322747,0.453386,0.0236564,0.1721,0.622281,0.455985,0.96458,0.226371,0.953474,0.827291,0.861014,0.343106,0.197494,0.411518,0.553593,0.0579544,0.921171,0.285401,0.782948,0.769385,0.97543,0.146614,0.989213,0.896371,0.44214,0.968413,0.804463,0.121501,0.881643,0.0212364,0.170707,0.554927,0.274898,0.672372,0.652544,0.439615,0.0977886,0.187987,0.161822,0.30045,0.152978,0.0125,0.0395489,0.114585,0.0432328,0.420442,0.38993,0.977976,0.354991,0.748733,0.541922,0.0251232,0.971525,0.176572,0.19817,0.694504,0.98386,0.595481,0.0180522,0.434684,0.285115,0.849452,0.313637,0.449177,0.379131,0.622702,0.702195,0.810105,0.542502,0.845897,0.313029,0.63597,0.845159,0.219218,0.311174,0.261108,0.757416,0.478302,0.210065,0.541409,0.358896,0.607621,0.259666,0.153715,0.732204,0.897546,0.565631,0.381617,0.858747,0.911311,0.588129,0.907694,0.262468,0.157198,0.816614,0.134102,0.0395399,0.707665,0.931749,0.68774,0.510166,0.152575,0.28336,0.816368,0.680655,0.0414832,0.0572742,0.858371,0.992377,0.062084,0.524544,0.678994,0.553939,0.458966,0.334101,0.436902,0.303209,0.164505,0.846766,0.345683,0.447865,0.511323,0.440125,0.77275,0.535907,0.662605,0.0855369,0.637894,0.795315,0.162169,0.0435395,0.84046,0.314176,0.222727,0.0994909,0.797627,0.998074,0.736152,0.162381,0.505731,0.167681,0.22799,0.468941,0.750243,0.25674,0.260941,0.127205,0.19086,0.513558,0.873261,0.0590365,0.948396,0.566347,0.0244688,0.519459,0.0386039,0.31938,0.0125099,0.900879,0.100159,0.85214,0.229681,0.603923,0.834151,0.0141515,0.422136,0.746322,0.135652,0.881811,0.689756,0.069747,0.417738,0.823955,0.287699,0.636387,0.973808,0.0869172,0.403727,0.0694914,0.405123,0.207264,0.746368,0.582521,0.61527,0.245347,0.315524,0.650698,0.585212,0.406734,0.490397,0.322384,0.880726,0.00341511,0.536532,0.573531,0.969793,0.131045,0.894468,0.558699,0.877604,0.788079,0.538713,0.697318,0.410826,0.150115,0.140694,0.067248,0.64774,0.259661,0.405368,0.374946,0.786209,0.525354,0.314867,0.212106,0.118802,0.3412,0.396205,0.513288,0.775097,0.181738,0.10758,0.851711,0.0353632,0.892781,0.525326,0.469219,0.814824,0.84313,0.508588,0.834873,0.566967,0.279826,0.972595,0.954625,0.509444,0.963987,0.755652,0.418764,0.170368,0.951957,0.0119469,0.0693551,0.890759,0.277675,0.402857,0.857138,0.774071,0.659888,0.908901,0.380553,0.750201,0.131173,0.966374,0.883837,0.509679,0.110533,0.918074,0.103126,0.277899,0.012845,0.233411,0.721168,0.959958,0.168644,0.506355,0.798411,0.682952,0.578412,0.444657,0.538041,0.121896,0.466927,0.0626473,0.375312,0.0193502,0.700411,0.0166477,0.552202,0.651049,0.138852,0.166596,0.700192,0.713905,0.482682,0.73732,0.939026,0.597229,0.428801,0.161076,0.757643,0.0360729,0.0856513,0.624852,0.377844,0.780757,0.344833,0.870783,0.413582,0.685422,0.566447,0.58811,0.66084,0.859368,0.0363681,0.426986,0.186591,0.945218,0.209681,0.466898,0.366908,0.594361,0.0565672,0.678693,0.92035,0.00181788,0.540317,0.0949675,0.0186658,0.440431,0.129806,0.564245,0.238927,0.435012,0.311448,0.672222,0.483959,0.542609,0.349718,0.541751,0.528204,0.744699,0.00605565,0.0188525,0.944029,0.589048,0.86886,0.260642,0.925588,0.767442,0.553454,0.391657,0.384505,0.772588,0.325813,0.703404,0.223812,0.456027,0.170531,0.626456,0.104314,0.145777,0.401317,0.629583,0.707733,0.735235,0.652004,0.460079,0.623633,0.431538,0.698548,0.655895,0.493439,0.183439,0.891954,0.816478,0.630966,0.868215,0.228827,0.675324,0.453834,0.902042,0.365788,0.661214,0.814787,0.238547,0.335084,0.856952,0.846476,0.724073,0.437689,0.173378,0.149075,0.61714,0.293345,0.996244,0.363272,0.766806,0.65825,0.401417,0.0343527,0.275777,0.740628,0.73552,0.21779,0.624595,0.889589,0.268666,0.635373,0.465685,0.657465,0.975621,0.237925,0.591798,0.618949,0.452648,0.97414,0.840348,0.175199,0.209648,0.188687,0.206422,0.173729,0.614242,0.247133,0.439594,0.03065,0.657217,0.694117,0.708262,0.416629,0.165429,0.202859,0.969159,0.328207,0.338453,0.604283,0.442414,0.803117,0.592321,0.638608,0.926358,0.685084,0.825835,0.636655,0.676854,0.0315903,0.8311,0.688141,0.141558,0.842955,0.390218,0.672399,0.205323,0.558016,0.619347,0.490939,0.0206643,0.0683285,0.563217,0.189243,0.253613,0.925419,0.718205,0.266735,0.800743,0.610203,0.394811,0.690357,0.554305,0.391518,0.630671,0.371104,0.935915,0.891899,0.171657,0.77925,0.113876,0.00466126,0.602207,0.34702,0.288295,0.411724,0.337391,0.375004,0.221545,0.521198,0.865991,0.0627577,0.89164,0.0467925,0.516187,0.570504,0.838435,0.810053,0.496333,0.558823,0.862919,0.380321,0.0747188,0.487265,0.520646,0.0985307,0.355211,0.689411,0.726321,0.338478,0.559105,0.0927518,0.372517,0.760753,0.345949,0.119231,0.347206,0.118657,0.138634,0.21202,0.00768471,0.681667,0.511114,0.312824,0.403132,0.475682,0.53732,0.560697,0.598723,0.406583,0.0662456,0.341406,0.72458,0.583913,0.696557,0.340094,0.0986952,0.505453,0.545649,0.151209,0.852869,0.467111,0.540948,0.718228,0.0485377,0.118579,0.0120738,0.0069294,0.950041,0.766605,0.850795,0.10359,0.224765,0.435781,0.961103,0.663458,0.595136,0.108272,0.404853,0.56698,0.456487,0.505601,0.184706,0.841774,0.332274,0.449101,0.225883,0.610099,0.514132,0.671585,0.257315,0.796663,0.896911,0.49674,0.670002,0.257731,0.661951,0.264203,0.976817,0.130273,0.908218,0.158862,0.933538,0.0490056,0.519364,0.196919,0.943003,0.469766,0.90687,0.98608,0.265187,0.606874,0.608486,0.43792,0.964922,0.397359,0.84064,0.927273,0.982784,0.0349342,0.636877,0.922469,0.188877,0.951362,0.963883,0.518587,0.65864,0.240356,|0.0213934,0.165751,0.708006,0.778433,0.51278,0.326098,0.403495,0.511687,0.845528,0.473159,0.496908,0.165676,0.419048,0.226698,0.529696,0.100967,0.716319,0.408103,0.845865,0.0541034,0.610344,0.242307,0.965846,0.122209,0.0335006,0.545446,0.18547,0.483008,0.31138,0.324109,0.0295711,0.384336,0.422242,0.602137,0.671625,0.985187,0.663084,0.584042,0.555466,0.0283942,0.0665343,0.649666,0.607309,0.606186,0.494706,0.643074,0.840692,0.740144,0.365072,0.0552632,0.820295,0.593355,0.20966,0.789912,0.746218,0.0256307,0.147712,0.832793,0.760407,0.813487,0.930058,0.901696,0.217555,0.947986,0.460898,0.134335,0.21752,0.559696,0.611018,0.242007,0.112123,0.804803,0.423388,0.848263,0.423249,0.294892,0.605886,0.511773,0.160098,0.931953,0.188698,0.445759,0.426549,0.657885,0.0724471,0.170124,0.116517,0.263219,0.049804,0.514215,0.249676,0.649612,0.678867,0.600998,0.270073,0.0970271,0.757258,0.0258072,0.55077,0.0475677,0.873167,0.278158,0.817409,0.808135,0.0330395,0.359189,0.173603,0.127032,0.58089,0.418523,0.048223,0.257506,0.27273,0.265354,0.221805,0.737345,0.927793,0.624228,0.945096,0.768794,0.0534978,0.957757,0.750392,0.263828,0.67918,0.957735,0.613403,0.597413,0.169623,0.871998,0.458391,0.85115,0.945453,0.351942,0.334217,0.677758,0.0201189,0.383254,0.741829,0.825426,0.955494,0.939935,0.0464906,0.273136,0.207944,0.294919,0.123437,0.91081,0.970554,0.725457,0.191522,0.525029,0.987867,0.236006,0.628614,0.119949,0.599412,0.865564,0.922315,0.437067,0.198899,0.983775,0.736783,0.312393,0.243703,0.9771,0.304148,0.761341,0.972926,0.582224,0.950191,0.0739053,0.952626,0.853987,0.199828,0.6484,0.842102,0.0488065,0.96231,0.736031,0.066725,0.333721,0.561059,0.868994,0.107364,0.451763,0.976503,0.0982848,0.47253,0.345384,0.603975,0.993295,0.319585,0.262523,0.872186,0.57006,0.47975,0.0455183,0.244749,0.251249,0.292075,0.857507,0.349338,0.210217,0.539621,0.77851,0.438416,0.0999377,0.573702,0.331507,0.94359,0.781658,0.116724,0.77369,0.183253,0.666897,0.881537,0.486032,0.408733,0.870883,0.924798,0.300612,0.95903,0.342947,0.0751079,0.456378,0.301175,0.0231808,0.70714,0.480617,0.304932,0.343494,0.723805,0.741048,0.956511,0.807224,0.790852,0.691787,0.304966,0.180878,0.608828,0.74144,0.27337,0.354881,0.487241,0.0340505,0.398102,0.608899,0.904982,0.206951,0.567269,0.861349,0.388324,0.810173,0.579235,0.12994,0.471779,0.303126,0.643645,0.652717,0.559634,0.889412,0.928438,0.539018,0.888541,0.213805,0.810989,0.976157,0.0843628,0.783524,0.668731,0.161466,0.927076,0.257224,0.897758,0.691106,0.799751,0.148452,0.492502,0.0231149,0.258075,0.308329,0.0794431,0.141477,0.328636,0.672531,0.262784,0.986012,0.427218,0.657099,0.423161,0.102163,0.889504,0.449701,0.745358,0.463021,0.479796,0.938115,0.903848,0.797834,0.120875,0.347384,0.455346,0.35623,0.988684,0.413879,0.211997,0.244858,0.105598,0.596414,0.375314,0.831279,0.0522174,0.781653,0.519902,0.310738,0.552753,0.859131,0.746131,0.857276,0.972628,0.650777,0.834602,0.595535,0.83126,0.0277272,0.772239,0.265675,0.159592,0.579816,0.311617,0.19346,0.810611,0.142696,0.0956784,0.303891,0.274015,0.617465,0.0125329,0.446524,0.278505,0.478553,0.420343,0.319182,0.943664,0.810479,0.140158,0.985681,0.336442,0.131487,0.0701442,0.393042,0.593712,0.843764,0.0445869,0.840196,0.448274,0.945319,0.826613,0.580668,0.478704,0.367588,0.193451,0.559319,0.581876,0.216454,0.715369,0.729856,0.475836,0.136518,0.831035,0.23762,0.416675,0.695035,0.390836,0.335578,0.0798909,0.655495,0.943274,0.0280519,0.637995,0.458841,0.962897,0.443422,0.202561,0.429945,0.325408,0.191506,0.642216,0.942581,0.345837,0.840211,0.666924,0.851469,0.0102323,0.160465,0.218279,0.426801,0.881021,0.470317,0.727272,0.022905,0.507313,0.587649,0.214568,0.233331,0.601467,0.579916,0.106328,0.781187,0.967348,0.00544804,0.235154,0.85863,0.389488,0.530949,0.438545,0.902063,0.708712,0.328298,0.350482,0.499647,0.225746,0.776811,0.78582,0.334458,0.908857,0.656682,0.781614,0.427287,0.0736063,0.0941269,0.235047,0.0991811,0.679165,0.705354,0.332262,0.528143,0.307091,0.600844,0.816714,0.967627,0.637191,0.882595,0.438079,0.961596,0.0728611,0.885971,0.483,0.748423,0.97325,0.464357,0.812689,0.0646307,0.466494,0.735316,0.472428,0.347771,0.0621122,0.318955,0.713457,0.837061,0.249741,0.746172,0.424617,0.779708,0.525276,0.14243,0.88293,0.462096,0.202858,0.362976,0.556373,0.486076,0.908605,0.958165,0.589036,0.362501,0.194265,0.264684,0.0629488,0.506693,0.817934,0.613552,0.860459,0.836071,0.778749,0.382622,0.225985,0.745768,0.376937,0.0254272,0.343514,0.751026,0.0709214,0.52951,0.411128,0.235478,0.610623,0.974126,0.611869,0.924909,0.897822,0.861681,0.120016,0.803673,0.155975,0.550156,0.85816,0.509826,0.0160474,0.944638,0.337226,0.535004,0.159161,0.43199,0.100521,0.885482,0.83696,0.613338,0.845466,0.0485336,0.27773,0.541325,0.952023,0.897961,0.339088,0.0296873,0.835822,0.338621,0.680617,0.0484365,0.499776,0.974943,0.462688,0.821267,0.126753,0.261126,0.978067,0.274674,0.135925,0.94563,0.671066,0.0557157,0.918012,0.9744,0.579899,0.540528,0.781208,0.322648,0.331877,0.8296,0.432514,0.951486,0.991748,0.656472,0.39489,0.376066,0.579623,0.894744,0.553708,0.754514,0.237832,0.158684,0.242815,0.82434,0.0606316,0.588192,0.528283,0.2438,0.899858,0.831659,0.245328,0.228112,0.400702,0.181195,0.0804163,0.0935788,0.26617,0.998487,0.634625,0.681889,0.570828,0.314256,0.834827,0.502016,0.478899,0.705885,0.951905,0.658222,0.735467,0.783266,0.155295,0.485961,0.36752,0.956682,0.892707,0.685956,0.083793,0.409164,0.74413,0.227325,0.93499,0.659267,0.507456,0.174947,0.594886,0.684932,0.830688,0.681367,0.196782,0.318435,0.321065,0.442188,0.0441974,0.820174,0.532652,0.290575,0.911517,0.490541,0.837374,0.944686,0.760261,0.397952,0.781742,0.245299,0.242071,0.74608,0.384395,0.272561,0.0861288,0.563814,0.257686,0.0876608,0.837719,0.720191,0.622668,0.92523,0.210072,0.854231,0.818513,0.834405,0.48461,0.432786,0.825132,0.503378,0.71521,0.07205,0.631372,0.00393659,0.291109,0.641911,0.2716,0.359143,0.40991,0.860041,0.645826,0.360301,0.573197,0.866812,0.443241,0.294597,0.105456,0.880692,0.236932,0.944181,0.850151,0.696336,0.801355,0.159496,0.0910633,0.745699,0.618689,0.213914,0.798233,0.466411,0.28165,0.0329563,0.232707,0.906464,0.00820619,0.127617,0.988779,0.368003,0.281939,0.343848,0.960909,0.74308,0.737616,0.338373,0.136539,0.156032,0.0146802,0.629363,0.529661,0.121132,0.565776,0.718131,0.205753,0.0768738,0.664565,0.316707,0.693745,0.423733,0.83216,0.967544,0.501571,0.449148,0.1378,0.025156,0.0291026,0.119633,0.230346,0.338818,0.128479,0.513636,0.432754,0.768958,0.196935,0.785468,0.842367,0.583228,0.499621,0.0832095,0.298924,0.00598937,0.682829,0.15066,0.689687,0.973063,0.706131,0.568725,0.539345,0.904703,0.480382,0.846458,0.723278,0.853772,0.0325241,0.714233,0.705245,0.0277525,0.902152,0.854055,0.026366,0.0355453,0.871942,0.539247,0.468282,0.264515,0.357314,0.5382,0.854993,0.292337,0.285448,0.851346,0.224675,0.0489225,0.58747,0.0742964,0.100133,0.186579,0.487496,0.445314,0.318721,0.248831,0.506736,0.408593,0.934877,0.530688,0.99001,0.201331,0.556912,0.349418,0.661585,0.857239,0.377611,0.443864,0.574044,0.778836,0.523557,0.786284,0.362931,0.546034,0.186346,0.176684,0.317412,0.993114,0.426518,0.973007,0.263295,0.504232,0.0452944,0.702997,0.108498,0.812705,0.138286,0.585169,0.973915,0.835038,0.686633,0.511019,0.273423,0.978193,0.367599,0.352349,0.286976,0.266252,0.386368,0.428411,0.698641,0.755054,0.434866,0.0856352,0.16705,0.796604,0.437927,0.379929,0.836249,0.140093,0.398559,0.779042,0.894176,0.823421,0.631208,0.754536,0.945721,0.138096,0.982425,0.676871,0.596159,0.0226454,0.0735771,0.0730675,0.88763,0.0676383,0.408264,0.861086,0.53846,0.853096,0.0935922,0.0253581,0.889513,0.957521,0.027531,0.195088,0.553514,0.309166,0.0437192,0.309962,0.86967,0.845253,0.186576,0.624923,0.566004,0.979537,0.37382,0.708823,0.721219,0.248471,0.852552,0.143244,0.963682,0.413759,0.358265,0.701676,0.199884,0.513561,0.137319,0.296195,0.878441,0.0662844,0.207772,0.258105,0.208232,0.620814,0.589858,0.183183,0.62489,0.0440618,0.112092,0.989497,0.516469,0.250975,0.422622,0.374588,0.601731,0.764552,0.561516,0.44464,0.828094,0.713009,0.554094,0.124151,0.713562,0.460841,0.506297,0.199964,0.24109,0.297389,0.95807,0.15695,0.425367,0.770922,0.177105,0.944078,0.0547217,0.367188,0.798163,0.57584,0.370078,0.74582,0.562579,0.0418705,0.840223,0.958826,0.731176,0.184609,0.577236,0.733665,0.110139,0.411444,0.944293,0.641621,0.56703,0.443678,0.981612,0.555531,0.250488,0.308413,0.329899,0.874994,0.424281,0.538138,0.471449,0.481296,0.226111,0.813258,0.678135,0.71641,0.943007,0.351426,0.0638696,0.475622,0.107975,0.0165278,0.0763105,0.0289821,0.641635,0.177385,0.569286,0.809571,0.885862,0.333922,0.631604,0.35915,0.326485,0.645476,0.669206,0.73036,0.204866,0.329284,0.673739,0.00348401,0.730421,0.516235,0.529907,0.883367,0.0203183,0.434762,0.275984,0.57816,0.863851,0.738856,0.686153,0.811047,0.662704,0.925879,0.855943,0.868941,0.480247,0.61894,0.50496,0.607165,0.171433,0.808089,0.929953,0.560082,0.134744,0.494515,0.991671,0.422444,0.888595,0.0941867,0.831261,0.0555881,0.013744,0.237812,0.325226,0.19535,|0.0114436,0.249265,0.396988,0.503846,0.37232,0.702171,0.432557,0.666333,0.208236,0.34983,0.0612473,0.210154,0.197326,0.844721,0.266318,0.534188,0.384466,0.84072,0.640258,0.855819,0.343517,0.846487,0.484086,0.500678,0.036691,0.0660844,0.321224,0.361011,0.000547588,0.908514,0.483589,0.949237,0.98151,0.206394,0.141325,0.694965,0.248216,0.716104,0.959226,0.507632,0.921358,0.460581,0.997859,0.733979,0.113066,0.555668,0.263275,0.663378,0.19168,0.541756,0.0509071,0.93942,0.335673,0.688585,0.380463,0.630578,0.56956,0.849705,0.298875,0.986647,0.246826,0.295399,0.0637417,0.49596,0.867281,0.237236,0.501276,0.149897,0.967766,0.535801,0.154686,0.713823,0.865968,0.0149334,0.592691,0.409156,0.311199,0.260295,0.507149,0.180872,0.27872,0.47251,0.947831,0.0956727,0.551759,0.32793,0.360558,0.938286,0.27346,0.453071,0.0582846,0.720089,0.732326,0.984907,0.424074,0.0997939,0.613253,0.0885276,0.152299,0.442605,0.617077,0.0912927,0.953862,0.4491,0.29985,0.897472,0.993545,0.980624,0.99539,0.321695,0.0746242,0.841765,0.99423,0.388052,0.146783,0.747559,0.719927,0.137716,0.731933,0.0203571,0.983729,0.0810881,0.403515,0.469424,0.824935,0.420357,0.305081,0.2192,0.644198,0.292014,0.957711,0.315552,0.622366,0.104209,0.348106,0.0253391,0.0216144,0.357497,0.332004,0.748618,0.836587,0.896745,0.832167,0.326216,0.743975,0.294935,0.637814,0.662833,0.79509,0.276554,0.828786,0.677484,0.237798,0.0781866,0.99792,0.180881,0.58634,0.160282,0.293928,0.119674,0.292466,0.979486,0.429235,0.854048,0.888077,0.761955,0.134295,0.198522,0.930062,0.0397729,0.9871,0.741638,0.885427,0.0266066,0.843464,0.202308,0.938087,0.0286582,0.0105461,0.151737,0.353889,0.982579,0.0530793,0.819276,0.465938,0.244012,0.996069,0.0133933,0.62561,0.358561,0.822457,0.691393,0.718899,0.820281,0.485809,0.76688,0.482981,0.39663,0.0681405,0.00664884,0.462621,0.758592,0.121266,0.0935965,0.915479,0.696695,0.186555,0.179069,0.793237,0.871572,0.320247,0.526446,0.819384,0.499484,0.477857,0.210685,0.843509,0.989641,0.0136398,0.359056,0.402079,0.415838,0.378377,0.590644,0.66392,0.125654,0.0140474,0.427192,0.908159,0.0102584,0.784563,0.314725,0.235602,0.615658,0.249733,0.784091,0.709499,0.110363,0.164655,0.0812229,0.869909,0.999336,0.890858,0.491096,0.427477,0.213515,0.932011,0.524822,0.372557,0.191968,0.457196,0.21491,0.870924,0.365135,0.548243,0.575722,0.40084,0.399328,0.0723527,0.824931,0.976933,0.071152,0.697502,0.889213,0.0942159,0.742596,0.116919,0.952735,0.285056,0.916802,0.752869,0.958895,0.832932,0.212973,0.468044,0.666822,0.504952,0.147717,0.15082,0.863304,0.644488,0.531223,0.891818,0.192202,0.211542,0.870861,0.676363,0.701067,0.213657,0.407132,0.971879,0.883616,0.390164,0.546877,0.465221,0.314645,0.564172,0.230451,0.248378,0.79404,0.649829,0.222094,0.265673,0.839809,0.494721,0.525458,0.153802,0.738769,0.918134,0.825909,0.817465,0.553171,0.506406,0.485184,0.460728,0.695503,0.878862,0.970315,0.661825,0.378446,0.113397,0.113207,0.643032,0.334257,0.166163,0.850224,0.122451,0.481966,0.290641,0.374881,0.673484,0.870602,0.45283,0.86441,0.590716,0.547978,0.106821,0.0609005,0.0158823,0.811448,0.00647879,0.640259,0.990002,0.325109,0.0735412,0.559029,0.905686,0.389499,0.978467,0.50259,0.815359,0.601011,0.0574512,0.803621,0.416962,0.809857,0.064971,0.342574,0.427351,0.0808997,0.297853,0.901157,0.798861,0.713457,0.405388,0.518939,0.0098272,0.408332,0.764698,0.897282,0.976068,0.789084,0.841245,0.218584,0.376817,0.641679,0.0754937,0.93548,0.446167,0.860068,0.599707,0.469642,0.862434,0.394436,0.78528,0.808799,0.795635,0.625435,0.0843383,0.95987,0.277544,0.894611,0.329037,0.191074,0.402008,0.188497,0.376834,0.597738,0.365235,0.10138,0.921338,0.368694,0.0622098,0.38845,0.496497,0.231157,0.944832,0.392726,0.785188,0.816319,0.424015,0.553365,0.379134,0.0314682,0.974357,0.470406,0.78508,0.768731,0.558342,0.280738,0.330532,0.886651,0.802713,0.0414444,0.101617,0.837212,0.926607,0.507339,0.440163,0.503145,0.381972,0.0274214,0.211339,0.0900959,0.00963771,0.0474074,0.848912,0.148007,0.642433,0.580963,0.694538,0.386819,0.305767,0.442815,0.616716,0.432693,0.34895,0.94369,0.263996,0.392141,0.0361336,0.313208,0.885893,0.276459,0.405847,0.701912,0.891439,0.991814,0.938645,0.688148,0.492931,0.786391,0.278491,0.606214,0.411413,0.384313,0.844992,0.610851,0.70579,0.892758,0.117096,0.0980788,0.526819,0.377709,0.387067,0.0037142,0.591874,0.719691,0.286162,0.00210667,0.676521,0.616765,0.760245,0.270503,0.855699,0.746273,0.903541,0.916547,0.425384,0.762032,0.282882,0.770793,0.488599,0.263306,0.295507,0.128656,0.876759,0.754043,0.170984,0.00366938,0.7181,0.0534037,0.825037,0.251069,0.552384,0.110469,0.837602,0.837616,0.13805,0.790378,0.00813258,0.107157,0.0954688,0.156984,0.48962,0.229153,0.343195,0.0230454,0.0420648,0.723664,0.230015,0.741655,0.697569,0.624577,0.89615,0.228107,0.835178,0.437831,0.845418,0.712816,0.945516,0.0200977,0.294543,0.229933,0.977656,0.261007,0.644556,0.0761774,0.706731,0.0461624,0.278459,0.128715,0.34051,0.575266,0.41127,0.414947,0.273242,0.424885,0.449603,0.565668,0.857792,0.782567,0.787968,0.4847,0.736664,0.558899,0.995565,0.230792,0.455302,0.0965158,0.839355,0.0060541,0.207313,0.070456,0.263194,0.79786,0.973314,0.221803,0.243197,0.380883,0.520319,0.254545,0.394522,0.501169,0.33611,0.695356,0.880716,0.257063,0.759783,0.591681,0.919936,0.778725,0.863745,0.713409,0.630751,0.636184,0.323087,0.807885,0.630367,0.419574,0.931563,0.561616,0.926915,0.898213,0.028648,0.496717,0.740193,0.321471,0.377604,0.414559,0.957615,0.5294,0.85119,0.810193,0.0917001,0.802774,0.771974,0.680255,0.764491,0.524171,0.0480117,0.909342,0.164404,0.691848,0.107192,0.582574,0.420845,0.986828,0.84856,0.733736,0.848128,0.320723,0.59427,0.759374,0.0573021,0.203851,0.162306,0.188999,0.965535,0.656915,0.187895,0.759403,0.308572,0.583698,0.520755,0.504228,0.632697,0.624502,0.754626,0.408282,0.521011,0.250966,0.00351638,0.491889,0.974909,0.85145,0.850812,0.710694,0.77469,0.182474,0.0863856,0.879528,0.586117,0.835914,0.195934,0.303972,0.255962,0.0695049,0.901805,0.2253,0.172525,0.254463,0.188994,0.222313,0.108862,0.565056,0.148347,0.191663,0.314717,0.428249,0.142417,0.533128,0.562536,0.216024,0.117415,0.125151,0.0510764,0.465126,0.481303,0.624798,0.170994,0.110067,0.857753,0.161365,0.015935,0.377217,0.0515475,0.383828,0.883409,0.460797,0.328224,0.421223,0.491005,0.361451,0.980847,0.847643,0.695091,0.341945,0.976547,0.327068,0.994895,0.532575,0.262676,0.537923,0.848154,0.852958,0.327616,0.740247,0.766954,0.801544,0.833166,0.472145,0.2603,0.646421,0.582207,0.735651,0.553239,0.604738,0.832086,0.286245,0.213749,0.184232,0.616087,0.336159,0.341494,0.176555,0.778548,0.522169,0.0394984,0.712143,0.197786,0.543674,0.238661,0.0799375,0.730546,0.375941,0.175098,0.922974,0.0448973,0.572279,0.136789,0.668847,0.655918,0.0652341,0.911698,0.566016,0.178525,0.474309,0.26093,0.284383,0.895897,0.288827,0.639434,0.061302,0.615994,0.342169,0.902965,0.677229,0.851955,0.872799,0.833919,0.747683,0.348369,0.025528,0.13559,0.552939,0.78169,0.740735,0.679226,0.153947,0.147784,0.980267,0.141192,0.0440913,0.412058,0.146297,0.989267,0.498194,0.915766,0.49709,0.869324,0.784079,0.678973,0.355877,0.161294,0.958785,0.433784,0.418615,0.150189,0.733027,0.252339,0.0337133,0.961491,0.826056,0.366814,0.0860215,0.872469,0.283071,0.00879234,0.205376,0.0357404,0.134628,0.18524,0.437678,0.548346,0.157121,0.901541,0.999735,0.315025,0.807435,0.938135,0.167752,0.0558915,0.257578,0.353012,0.231648,0.928521,0.200806,0.545207,0.0385746,0.99149,0.923615,0.843476,0.972016,0.154966,0.836836,0.0407213,0.136545,0.063154,0.17995,0.0566178,0.180029,0.835547,0.811266,0.426763,0.840369,0.572732,0.0539128,0.927971,0.817606,0.704308,0.784113,0.321085,0.419187,0.88992,0.602535,0.175476,0.0417787,0.471258,0.212727,0.444584,0.851091,0.283931,0.764556,0.948533,0.716698,0.372282,0.921655,0.193609,0.865231,0.0157939,0.448821,0.354425,0.314653,0.306151,0.230938,0.942663,0.92114,0.747486,0.0671959,0.963179,0.0679886,0.599923,0.976488,0.814062,0.511468,0.643779,0.5515,0.12619,0.144019,0.466261,0.0436668,0.761326,0.668896,0.391281,0.502014,0.439954,0.119818,0.490793,0.764628,0.458919,0.434407,0.758765,0.404171,0.917608,0.373283,0.44377,0.754576,0.229976,0.0221952,0.0835032,0.592754,0.072567,0.422848,0.159077,0.0710887,0.782628,0.197711,0.776654,0.855922,0.149415,0.999506,0.845226,0.533832,0.281152,0.663712,0.165887,0.281989,0.483364,0.399436,0.934469,0.809552,0.606068,0.647144,0.214131,0.443063,0.275326,0.585867,0.104051,0.954857,0.914986,0.791559,0.905029,0.320184,0.137431,0.0552317,0.564057,0.647388,0.569839,0.425718,0.9061,0.557556,0.0507388,0.309629,0.988441,0.170729,0.87153,0.290395,0.179808,0.192129,0.151083,0.544276,0.378565,0.0948787,0.215174,0.0239589,0.927594,0.389605,0.563882,0.330405,0.868822,0.387552,0.269198,0.686998,0.745588,0.517195,0.484405,0.0936137,0.471343,0.34899,0.308609,0.49474,0.553992,0.694187,0.58332,0.549274,0.598021,0.381244,0.343567,0.408341,0.587165,0.315978,0.757341,0.564491,0.563668,0.38343,0.403042,0.779749,0.159595,0.538435,0.673492,0.312519,0.0820902,0.535328,0.669358,0.646146,0.054885,0.482429,0.415178,0.507568,|0.434043,0.208995,0.362817,0.944335,0.751468,0.0580998,0.753201,0.824044,0.294604,0.845666,0.989557,0.564896,0.229099,0.382733,0.831418,0.265197,0.21464,0.970907,0.967199,0.933096,0.171831,0.182576,0.561388,0.77627,0.300297,0.398987,0.915805,0.40165,0.307196,0.53992,0.809501,0.361043,0.310028,0.44434,0.226402,0.536668,0.381394,0.627779,0.486545,0.0911515,0.437729,0.857778,0.299292,0.240024,0.110436,0.593376,0.586527,0.667233,0.726979,0.229462,0.464047,0.454988,0.15481,0.70007,0.210252,0.0685408,0.966888,0.567505,0.133884,0.260847,0.480137,0.551178,0.716991,0.667692,0.0662906,0.264179,0.837173,0.0389006,0.394139,0.40567,0.495547,0.0952284,0.116315,0.653811,0.222814,0.64683,0.602564,0.206519,0.129055,0.275929,0.108122,0.753124,0.786366,0.614336,0.687955,0.42129,0.760802,0.339115,0.767793,0.870744,0.184574,0.551355,0.456188,0.985928,0.691408,0.798076,0.11895,0.511426,0.270505,0.101095,0.742389,0.208694,0.855235,0.0867205,0.122709,0.966744,0.532811,0.532685,0.213469,0.215643,0.292198,0.814757,0.0428581,0.132053,0.719591,0.882591,0.289532,0.159707,0.794566,0.591274,0.378839,0.746989,0.0824208,0.515633,0.575608,0.825393,0.284553,0.398862,0.906318,0.662619,0.521117,0.855774,0.489089,0.60231,0.539565,0.824062,0.211738,0.13222,0.249331,0.623567,0.356027,0.952874,0.372227,0.925186,0.174202,0.395113,0.71626,0.706182,0.389681,0.0264081,0.0750451,0.164553,0.293165,0.163064,0.229283,0.145566,0.287878,0.88805,0.0383131,0.276844,0.352004,0.800705,0.237032,0.0422813,0.831247,0.992616,0.641865,0.122298,0.949123,0.791337,0.0636812,0.295319,0.570777,0.099704,0.719734,0.289868,0.664107,0.632776,0.382945,0.60205,0.996715,0.661509,0.0338304,0.588946,0.962219,0.76704,0.389774,0.48433,0.479073,0.896114,0.541968,0.90858,0.563819,0.397946,0.00141472,0.633898,0.826178,0.121336,0.891977,0.823215,0.672043,0.662351,0.141248,0.269676,0.461072,0.765372,0.196396,0.914963,0.23107,0.817959,0.213454,0.574216,0.610699,0.721329,0.986913,0.42511,0.0968374,0.885964,0.582791,0.178434,0.399291,0.249998,0.904087,0.219231,0.537502,0.731492,0.907653,0.217825,0.138423,0.904667,0.707839,0.514829,0.819567,0.872527,0.982046,0.146224,0.133624,0.690403,0.336175,0.592698,0.364685,0.0239986,0.602159,0.972067,0.516429,0.156978,0.989032,0.635298,0.789917,0.701277,0.377094,0.391961,0.831753,0.856398,0.264874,0.42323,0.255832,0.584041,0.246052,0.949825,0.932338,0.914995,0.660307,0.272735,0.724564,0.648665,0.858302,0.728301,0.7456,0.341643,0.412998,0.893486,0.94943,0.448417,0.845389,0.228793,0.353426,0.897916,0.873632,0.445364,0.0429584,0.176152,0.767356,0.634602,0.0405327,0.776048,0.62019,0.89687,0.147165,0.165823,0.734729,0.575288,0.0338787,0.384533,0.964775,0.424723,0.0202557,0.717176,0.294232,0.0018369,0.0692247,0.833281,0.929166,0.316296,0.510563,0.629877,0.153769,0.576694,0.284484,0.295174,0.865542,0.769274,0.858078,0.224666,0.99014,0.388247,0.327855,0.271356,0.669546,0.120449,0.279571,0.676909,0.824447,0.864852,0.904221,0.886634,0.937486,0.543137,0.0799763,0.711926,0.730244,0.382079,0.352509,0.899429,0.243251,0.394989,0.198713,0.215417,0.265908,0.818239,0.432505,0.97082,0.353859,0.450545,0.826733,0.645906,0.448678,0.0290014,0.611744,0.149923,0.73421,0.440066,0.609179,0.585536,0.781238,0.877075,0.367696,0.384579,0.736764,0.64784,0.931925,0.388724,0.235625,0.247311,0.760243,0.119563,0.0547026,0.940383,0.420005,0.236489,0.699923,0.415333,0.38096,0.127146,0.77192,0.526531,0.473676,0.504574,0.701766,0.512848,0.719137,0.184769,0.154572,0.788452,0.802765,0.086556,0.973713,0.205438,0.00592685,0.0291699,0.713713,0.764557,0.343192,0.983357,0.902888,0.179465,0.701754,0.393369,0.697174,0.112192,0.0604216,0.408145,0.740117,0.776258,0.941085,0.724355,0.490225,0.53032,0.691887,0.634447,0.415007,0.177055,0.102542,0.442465,0.890257,0.279818,0.531693,0.51615,0.628959,0.257348,0.503906,0.626405,0.28955,0.628959,0.150895,0.818684,0.572889,0.555759,0.983597,0.0541919,0.988954,0.349833,0.21855,0.718516,0.740691,0.171631,0.335741,0.291932,0.0554709,0.702663,0.309736,0.369351,0.313367,0.590011,0.142992,0.314588,0.781654,0.368602,0.0459092,0.356026,0.875673,0.0487093,0.646513,0.934123,0.467574,0.283901,0.266388,0.388889,0.852671,0.304955,0.634486,0.921213,0.66392,0.846253,0.879928,0.316095,0.155438,0.627988,0.948691,0.16735,0.931148,0.394526,0.481369,0.00519437,0.840498,0.689661,0.713591,0.805232,0.808036,0.705818,0.889356,0.2748,0.51866,0.467211,0.171851,0.00749826,0.936448,0.700197,0.141513,0.381347,0.149558,0.424708,0.249823,0.470257,0.800728,0.0288699,0.364797,0.604858,0.929224,0.22057,0.949136,0.97229,0.57381,0.626736,0.114767,0.354326,0.925112,0.146371,0.615223,0.553667,0.31829,0.695389,0.804827,0.315835,0.982875,0.222339,0.778713,0.865757,0.799726,0.657369,0.227845,0.708786,0.825319,0.565308,0.443522,0.450539,0.0505978,0.345141,0.503803,0.588211,0.014035,0.828139,0.339265,0.922566,0.941699,0.474844,0.958494,0.0229563,0.87834,0.987804,0.833509,0.161659,0.583297,0.575684,0.936438,0.791734,0.638393,0.427348,0.317326,0.329708,0.645452,0.834073,0.861484,0.664117,0.32752,0.0749856,0.203987,0.947573,0.347295,0.374763,0.517347,0.525784,0.654418,0.506715,0.301368,0.799739,0.254932,0.979983,0.248568,0.249503,0.850519,0.375414,0.856259,0.18307,0.81854,0.794945,0.110391,0.0652161,0.375105,0.446555,0.600796,0.217556,0.920112,0.524676,0.957087,0.232356,0.895923,0.934384,0.724211,0.781848,0.348026,0.396893,0.514122,0.218247,0.0956981,0.457385,0.354385,0.0022521,0.657695,0.714342,0.546571,0.382647,0.302777,0.771344,0.642204,0.176615,0.726722,0.238593,0.0138719,0.368962,0.863098,0.130569,0.0147907,0.384203,0.546979,0.1043,0.307271,0.0260879,0.923048,0.688551,0.0284967,0.624142,0.8527,0.814596,0.660223,0.900585,0.485616,0.193904,0.635682,0.267617,0.482035,0.873557,0.565896,0.0111898,0.0137952,0.212946,0.93963,0.443456,0.441553,0.378793,0.407895,0.231872,0.901173,0.829418,0.129307,0.1581,0.590452,0.0955829,0.158272,0.500089,0.439528,0.368383,0.216701,0.870632,0.749799,0.224341,0.813878,0.338802,0.196589,0.487143,0.907747,0.180025,0.14866,0.824871,0.248131,0.722392,0.653421,0.847184,0.155056,0.706896,0.704225,0.970944,0.644392,0.309907,0.126459,0.0227094,0.597383,0.346726,0.358545,0.964502,0.523328,0.159445,0.178923,0.57109,0.343909,0.151439,0.756335,0.629774,0.32753,0.940603,0.717115,0.188744,0.896029,0.584345,0.222889,0.822739,0.577922,0.266038,0.266376,0.699695,0.382676,0.429421,0.0788044,0.578601,0.229146,0.713369,0.130516,0.861976,0.0639345,0.921635,0.69895,0.737593,0.210961,0.229749,0.441006,0.0532589,0.282656,0.112175,0.188007,0.978419,0.943598,0.85057,0.528089,0.268194,0.0611393,0.565162,0.924146,0.937769,0.952139,0.791458,0.298096,0.624236,0.672477,0.644901,0.264756,0.605502,0.969817,0.234415,0.0884455,0.68829,0.105848,0.610614,0.269345,0.509403,0.246546,0.584312,0.677645,0.0241898,0.696154,0.502584,0.834263,0.060329,0.374722,0.643016,0.39682,0.241825,0.862161,0.195757,0.921604,0.916376,0.805171,0.426574,0.449176,0.208255,0.253474,0.0596489,0.566129,0.459984,0.43005,0.751461,0.625996,0.404934,0.94203,0.286754,0.248673,0.167035,0.599035,0.997376,0.106123,0.603277,0.256606,0.509207,0.715732,0.327891,0.762478,0.824852,0.0832254,0.0594336,0.174079,0.590546,0.692901,0.742441,0.341924,0.547854,0.122409,0.681008,0.177135,0.79608,0.894569,0.530299,0.855312,0.845917,0.00605786,0.3263,0.537212,0.794915,0.907453,0.939888,0.432061,0.0681565,0.893987,0.988497,0.494996,0.863962,0.512166,0.928458,0.317837,0.979475,0.611068,0.481185,0.536667,0.951621,0.437124,0.983894,0.858766,0.808711,0.65746,0.65995,0.0132419,0.0117264,0.251856,0.153975,0.537282,0.698245,0.0778467,0.942161,0.315589,0.785495,0.760626,0.88798,0.699516,0.52477,0.719708,0.755906,0.0193515,0.93297,0.923448,0.401515,0.175934,0.557404,0.83645,0.965732,0.697364,0.210369,0.888715,0.327431,0.489574,0.0565205,0.307716,0.135197,0.837833,0.822112,0.713034,0.0209913,0.592287,0.393558,0.417012,0.294568,0.902352,0.00507665,0.150072,0.913419,0.217182,0.105238,0.285627,0.625344,0.69249,0.78974,0.32454,0.00391477,0.106447,0.71563,0.964041,0.916469,0.927428,0.710676,0.795998,0.354197,0.975316,0.702052,0.719736,0.714436,0.949195,0.43055,0.404651,0.664694,0.861443,0.288589,0.54269,0.88913,0.733352,0.303869,0.392554,0.924733,0.447637,0.494884,0.845676,0.117188,0.646718,0.501001,0.470642,0.7159,0.137107,0.28201,0.676595,0.456744,0.0168829,0.103171,0.0640764,0.860593,0.53763,0.655605,0.194633,0.322695,0.15594,0.613573,0.0424609,0.387623,0.524641,0.923631,0.105594,0.476519,0.434355,0.720434,0.123327,0.80875,0.928393,0.333295,0.728242,0.526873,0.487771,0.109377,0.375332,0.935303,0.646244,0.520065,0.459721,0.383037,0.607828,0.293769,0.0422628,0.175734,0.349853,0.0925884,0.608883,0.463904,0.37469,0.0148038,0.287114,0.718122,0.375288,0.997691,0.934917,0.406077,0.0305253,0.177275,0.0677665,0.0119517,0.454814,0.667063,0.167089,0.104137,0.961656,0.996975,0.130371,0.123231,0.134677,0.589191,0.701906,0.679002,0.558042,0.329898,0.306384,0.112268,0.542466,0.951439,0.843383,0.0122933,0.219718,0.342767,0.0125376,0.511517,0.541581,0.307442,0.0441707,0.660257,0.452687,0.318714,0.198863,0.999148,|0.11174,0.52769,0.800843,0.616116,0.457861,0.651092,0.0391859,0.269551,0.838633,0.282747,0.564017,0.995622,0.147649,0.792189,0.813391,0.479031,0.185741,0.657429,0.47611,0.811676,0.530455,0.126907,0.571068,0.943599,0.158263,0.590824,0.469137,0.0125406,0.715806,0.828263,0.626073,0.435347,0.885721,0.521942,0.7122,0.14758,0.172405,0.537239,0.852946,0.399361,0.45705,0.717173,0.969733,0.743985,0.125065,0.32513,0.330036,0.227632,0.778484,0.289319,0.0819564,0.497866,0.830969,0.940683,0.540551,0.285431,0.499436,0.439638,0.65098,0.288677,0.109529,0.246659,0.123477,0.576,0.689489,0.662051,0.639579,0.52279,0.374289,0.962883,0.191104,0.87504,0.0741132,0.65149,0.813491,0.38595,0.694385,0.495197,0.403132,0.444641,0.179931,0.67057,0.612993,0.804073,0.830713,0.32729,0.641709,0.629963,0.751354,0.739387,0.170189,0.0224205,0.48302,0.0217028,0.368569,0.452318,0.767494,0.574614,0.262329,0.460027,0.0411398,0.899368,0.456288,0.852435,0.424924,0.561417,0.150238,0.322756,0.460437,0.620155,0.792996,0.121491,0.0343331,0.0871099,0.399707,0.593619,0.750493,0.770259,0.844916,0.999351,0.145702,0.219405,0.0886568,0.587479,0.585208,0.134114,0.854939,0.0875113,0.88531,0.663114,0.647252,0.607318,0.275062,0.972903,0.0540303,0.0951638,0.723932,0.860209,0.374896,0.556835,0.507691,0.185674,0.740601,0.349709,0.470908,0.0283642,0.827295,0.565706,0.59806,0.550716,0.0328876,0.42057,0.257477,0.698189,0.508723,0.486713,0.998321,0.232714,0.809534,0.820823,0.339547,0.120179,0.305509,0.533125,0.183541,0.660901,0.926192,0.952509,0.227481,0.0667959,0.857382,0.279401,0.932245,0.368057,0.713574,0.72125,0.688809,0.391999,0.668911,0.0525507,0.513787,0.117095,0.308594,0.527521,0.84824,0.975141,0.516659,0.545437,0.516121,0.139288,0.216344,0.696335,0.238494,0.286141,0.813975,0.436791,0.689254,0.112296,0.866383,0.849161,0.591408,0.474673,0.650199,0.565347,0.608811,0.794355,0.861584,0.290571,0.661919,0.0310938,0.933795,0.366569,0.13561,0.563572,0.87083,0.3462,0.827314,0.0715751,0.960834,0.339531,0.756809,0.442911,0.820044,0.441032,0.761723,0.405607,0.27107,0.0226901,0.255289,0.718324,0.109534,0.0319245,0.766165,0.376156,0.805483,0.679361,0.607577,0.175095,0.0540789,0.159581,0.081354,0.647405,0.328911,0.656842,0.0402235,0.511094,0.286428,0.905585,0.00888896,0.941225,0.750277,0.959219,0.300815,0.409279,0.710623,0.72578,0.870931,0.35206,0.240851,0.276269,0.196764,0.909884,0.114145,0.947276,0.340952,0.781202,0.625951,0.821238,0.390824,0.275473,0.468702,0.15051,0.137794,0.203018,0.488355,0.62863,0.33062,0.851233,0.287951,0.0170342,0.623026,0.695948,0.926418,0.884997,0.802871,0.768366,0.696261,0.686098,0.561826,0.434359,0.060303,0.53651,0.334835,0.972139,0.637806,0.547873,0.894559,0.744707,0.875938,0.416288,0.0811095,0.631527,0.0402555,0.478945,0.599823,0.901209,0.200029,0.116954,0.74579,0.808485,0.180316,0.754372,0.535967,0.00231898,0.0819474,0.759347,0.722415,0.82727,0.440177,0.132074,0.394193,0.367974,0.697794,0.0817282,0.651922,0.420285,0.0105891,0.244506,0.87933,0.698429,0.555771,0.20636,0.656725,0.766767,0.805609,0.508366,0.284677,0.733263,0.43663,0.863375,0.277973,0.164941,0.425343,0.583703,0.221889,0.43,0.369192,0.252036,0.363379,0.557269,0.65002,0.156172,0.879619,0.624995,0.586331,0.586886,0.013555,0.384909,0.317033,0.418133,0.0196065,0.558733,0.472043,0.731773,0.0337538,0.435372,0.813962,0.879778,0.315701,0.302523,0.409845,0.419477,0.586167,0.428123,0.0661272,0.104925,0.0581074,0.850335,0.23014,0.266344,0.527994,0.24248,0.556086,0.188983,0.671859,0.815365,0.636906,0.491362,0.182087,0.254615,0.286299,0.68281,0.905576,0.247615,0.448368,0.517693,0.88979,0.832797,0.260077,0.0967649,0.000828803,0.773356,0.563999,0.931236,0.550608,0.53185,0.315532,0.822711,0.0845779,0.652547,0.309748,0.210212,0.351726,0.597779,0.750333,0.406052,0.707114,0.8623,0.297848,0.425642,0.484613,0.337533,0.777988,0.777026,0.168596,0.711323,0.587557,0.11011,0.922546,0.133712,0.445421,0.448096,0.985334,0.84358,0.016294,0.405452,0.47504,0.700442,0.0664913,0.922744,0.206628,0.319839,0.0180138,0.123408,0.207246,0.231773,0.309127,0.0251051,0.152828,0.0972645,0.878905,0.00348032,0.310485,0.179523,0.793141,0.957434,0.0240136,0.506895,0.00597632,0.350295,0.811382,0.845866,0.799701,0.73793,0.86686,0.264545,0.587652,0.976791,0.738545,0.819061,0.29231,0.891214,0.593914,0.17414,0.357981,0.914182,0.649107,0.784936,0.64528,0.150831,0.401623,0.910551,0.114433,0.743398,0.559691,0.876288,0.501125,0.222207,0.42611,0.88556,0.828503,0.39418,0.656412,0.826531,0.0418428,0.00435668,0.868344,0.404882,0.866224,0.81425,0.154086,0.803759,0.0621181,0.265614,0.29115,0.65035,0.636037,0.449592,0.77071,0.913737,0.573864,0.545555,0.158267,0.737566,0.221778,0.810646,0.433685,0.297958,0.742729,0.800066,0.48633,0.638337,0.377869,0.713936,0.575279,0.580581,0.104694,0.246325,0.852017,0.328286,0.856224,0.4223,0.971019,0.844052,0.013765,0.412275,0.108709,0.906708,0.310473,0.482147,0.439673,0.29479,0.712776,0.678655,0.0819432,0.218336,0.0295944,0.487437,0.875959,0.430526,0.878646,0.429765,0.0663584,0.988624,0.136021,0.782261,0.0422439,0.0499449,0.483921,0.159591,0.948101,0.899264,0.553634,0.127682,0.901079,0.216024,0.566863,0.000362754,0.226818,0.869534,0.486912,0.884075,0.99608,0.989904,0.667202,0.00478035,0.221544,0.36793,0.867153,0.369229,0.475161,0.958619,0.218808,0.663668,0.996681,0.870726,0.853385,0.339777,0.159021,0.092017,0.367899,0.936501,0.814197,0.719529,0.849212,0.378283,0.649478,0.204433,0.469745,0.28373,0.847979,0.559342,0.245499,0.0481268,0.525612,0.555065,0.904686,0.300332,0.690888,0.536752,0.560859,0.469464,0.575635,0.411663,0.396265,0.295062,0.201638,0.26731,0.617446,0.784129,0.393838,0.322663,0.69926,0.0150681,0.948253,0.141673,0.597068,0.345534,0.398054,0.851993,0.510596,0.0599473,0.900672,0.876748,0.40963,0.274509,0.849774,0.818093,0.971319,0.997372,0.237951,0.311299,0.209545,0.870655,0.785777,0.00847507,0.776555,0.998365,0.283787,0.0502178,0.68405,0.531504,0.0122138,0.65907,0.606146,0.794281,0.638242,0.253965,0.183335,0.549392,0.459086,0.388716,0.385663,0.812636,0.826865,0.835299,0.199344,0.429782,0.442953,0.236964,0.351853,0.78372,0.136504,0.555168,0.838658,0.0794956,0.957201,0.105266,0.116212,0.603294,0.765318,0.394726,0.754118,0.738155,0.150961,0.278002,0.257928,0.704108,0.844125,0.58812,0.0891409,0.113089,0.699698,0.734831,0.91539,0.0648598,0.949756,0.848034,0.00595111,0.853388,0.0478161,0.442145,0.169885,0.755832,0.869876,0.317975,0.905912,0.552985,0.275292,0.606013,0.844705,0.688455,0.113895,0.909035,0.53673,0.428376,0.304479,0.14228,0.50754,0.591238,0.118559,0.664092,0.987444,0.0634308,0.287128,0.0931999,0.91429,0.576553,0.0184776,0.725162,0.253773,0.615685,0.13781,0.162081,0.782176,0.120425,0.533151,0.42328,0.468303,0.164942,0.817074,0.312952,0.709208,0.303395,0.0255054,0.604235,0.105668,0.117769,0.566131,0.784559,0.34734,0.0749868,0.630781,0.912718,0.234001,0.397194,0.573932,0.419378,0.0646426,0.22328,0.334936,0.36398,0.693498,0.359567,0.889943,0.116125,0.0131776,0.477227,0.95537,0.936424,0.885404,0.918988,0.444787,0.323863,0.787138,0.29951,0.835076,0.194976,0.271018,0.370317,0.936304,0.752274,0.372943,0.877642,0.282602,0.447348,0.141253,0.624365,0.367555,0.877728,0.830334,0.692415,0.156367,0.0684541,0.423979,0.0872403,0.364041,0.935535,0.65137,0.809288,0.253589,0.351014,0.585871,0.521163,0.60069,0.43906,0.0860195,0.03749,0.854695,0.0394807,0.574444,0.0355902,0.280446,0.685045,0.690578,0.688397,0.723249,0.559976,0.767518,0.038318,0.845069,0.188296,0.0701843,0.913306,0.79821,0.099417,0.390461,0.734305,0.774083,0.519906,0.349328,0.379827,0.558778,0.479141,0.685933,0.202707,0.651575,0.674765,0.418296,0.568602,0.223211,0.338656,0.762564,0.395116,0.744358,0.952894,0.993698,0.220237,0.778204,0.997218,0.692974,0.79683,0.102725,0.799551,0.647533,0.932643,0.768047,0.610592,0.0933504,0.123882,0.830758,0.473771,0.81445,0.310779,0.182161,0.39481,0.610337,0.947152,0.627253,0.409537,0.688313,0.320387,0.948364,0.0968937,0.239587,0.439806,0.619936,0.0863911,0.17133,0.958913,0.204287,0.732529,0.902687,0.966992,0.466584,0.572859,0.523126,0.789605,0.377336,0.958119,0.595892,0.552775,0.652636,0.52033,0.558526,0.109164,0.470303,0.20978,0.681681,0.35879,0.739585,0.216579,0.0130206,0.373406,0.546983,0.841845,0.826878,0.481982,0.644655,0.0603437,0.925725,0.565376,0.421947,0.617337,0.494834,0.0588613,0.141316,0.489256,0.781677,0.195823,0.441883,0.0680708,0.339797,0.0691381,0.513775,0.0707393,0.775103,0.556815,0.320006,0.211664,0.39472,0.678247,0.652845,0.162145,0.286253,0.29304,0.73586,0.130318,0.483382,0.274647,0.859675,0.639487,0.55559,0.837836,0.486045,0.109212,0.725849,0.863134,0.901993,0.767818,0.147316,0.872574,0.688746,0.774883,0.852168,0.389847,0.394541,0.98156,0.713078,0.65917,0.266899,0.130222,0.991601,0.939993,0.756461,0.363611,0.775019,0.206363,0.765247,0.0994481,0.163637,0.70009,0.760415,0.938275,0.583893,0.0274773,0.515532,0.781232,0.379885,0.114161,0.880804,0.372759,0.538583,0.833699,0.980281,0.717095,0.814235,0.699606,0.531614,0.965033,0.893496,0.296086,0.623212,0.641401,0.893526,0.960476,0.993628,0.449858,0.867766,0.513003,|0.364175,0.107145,0.114151,0.78162,0.303764,0.569232,0.39745,0.00589675,0.366957,0.300993,0.860429,0.533116,0.831904,0.302469,0.575723,0.974912,0.458935,0.314575,0.534237,0.060974,0.32101,0.448477,0.838839,0.730848,0.245227,0.602509,0.707683,0.191111,0.370436,0.158094,0.540042,0.48879,0.0998025,0.438179,0.0598442,0.942625,0.911592,0.385196,0.959693,0.938026,0.906498,0.754068,0.351497,0.374704,0.99885,0.893964,0.00247687,0.787011,0.245945,0.850018,0.495272,0.708951,0.63756,0.0256137,0.52267,0.877527,0.428106,0.389747,0.840109,0.489645,0.59666,0.486289,0.186845,0.943021,0.172097,0.695656,0.867841,0.0697089,0.454841,0.559805,0.863643,0.660642,0.754767,0.917395,0.621904,0.0996293,0.0428094,0.278884,0.884073,0.29788,0.736145,0.599366,0.673908,0.998747,0.912695,0.0503743,0.50276,0.142251,0.240659,0.775729,0.164349,0.669689,0.422254,0.56706,0.29219,0.411183,0.0241474,0.43193,0.807559,0.475649,0.900431,0.547962,0.442944,0.443326,0.0172044,0.157581,0.579351,0.732868,0.523068,0.502109,0.0900443,0.142173,0.753187,0.282369,0.161485,0.54272,0.571165,0.909918,0.219175,0.0102797,0.135846,0.768817,0.627074,0.412273,0.938955,0.00378561,0.747471,0.0987962,0.673139,0.0111579,0.738036,0.63928,0.994671,0.903529,0.540589,0.181771,0.869743,0.157594,0.9078,0.490753,0.0450355,0.731931,0.172272,0.780947,0.903452,0.118093,0.986633,0.555624,0.968506,0.389758,0.569158,0.588399,0.242904,0.716709,0.924123,0.123792,0.961075,0.163415,0.0744235,0.922888,0.739003,0.391748,0.709535,0.821475,0.646522,0.232235,0.37317,0.444628,0.0452074,0.121459,0.634305,0.260558,0.473527,0.0367306,0.448364,0.425839,0.514447,0.611919,0.901534,0.602187,0.315657,0.269474,0.750847,0.726272,0.694824,0.939264,0.865089,0.986107,0.497834,0.902052,0.950919,0.632294,0.420229,0.160523,0.464876,0.403498,0.325219,0.638453,0.466975,0.092414,0.71363,0.827128,0.712519,0.522412,0.77838,0.673401,0.989181,0.195994,0.524811,0.316446,0.352192,0.973871,0.601267,0.962566,0.962789,0.79674,0.946835,0.455488,0.832579,0.439863,0.871553,0.177182,0.446201,0.201806,0.429025,0.33722,0.815988,0.275308,0.520275,0.378953,0.154847,0.272675,0.215696,0.990414,0.358044,0.0302525,0.533843,0.351832,0.0507715,0.0586891,0.138804,0.538738,0.26971,0.729376,0.320071,0.568809,0.0853305,0.0577259,0.485113,0.49877,0.65543,0.285333,0.795209,0.158886,0.436599,0.937441,0.844811,0.721504,0.466772,0.138071,0.437519,0.654504,0.299215,0.676781,0.919562,0.980918,0.542713,0.185079,0.731495,0.273559,0.589632,0.26913,0.678832,0.393348,0.336167,0.919736,0.236927,0.761836,0.864617,0.811066,0.943373,0.648343,0.709795,0.562566,0.475041,0.228049,0.668265,0.0623003,0.726512,0.327798,0.480356,0.429682,0.527075,0.321646,0.184503,0.665517,0.173139,0.0540957,0.0324568,0.972712,0.911585,0.114214,0.0665689,0.698802,0.787265,0.315809,0.22517,0.571099,0.675496,0.296079,0.264228,0.540792,0.458886,0.943251,0.336758,0.153004,0.537566,0.258898,0.748887,0.0307572,0.503333,0.82387,0.275373,0.344705,0.511003,0.814195,0.954772,0.312186,0.809083,0.0276024,0.674707,0.000585318,0.763516,0.810914,0.605973,0.799793,0.144387,0.167394,0.972705,0.874622,0.783563,0.691614,0.664694,0.827276,0.482444,0.542362,0.266104,0.989835,0.915455,0.767856,0.175318,0.171197,0.503266,0.956551,0.761155,0.671186,0.398482,0.502357,0.685881,0.573312,0.412716,0.523958,0.6543,0.493458,0.360854,0.0324406,0.957874,0.0609392,0.41786,0.482921,0.126614,0.641668,0.106624,0.646788,0.0320551,0.149805,0.268224,0.376754,0.723284,0.463879,0.58138,0.862259,0.925793,0.817135,0.63056,0.944288,0.904608,0.632055,0.726095,0.780567,0.755763,0.0312025,0.0136803,0.395562,0.495056,0.899692,0.112223,0.541403,0.312659,0.850627,0.384647,0.721832,0.968839,0.738281,0.409045,0.0242829,0.877374,0.150616,0.841159,0.326657,0.863777,0.500748,0.109176,0.892388,0.475613,0.302527,0.309005,0.803584,0.437913,0.362987,0.945966,0.891664,0.834605,0.516518,0.707421,0.296359,0.852521,0.610736,0.663996,0.545282,0.280193,0.831065,0.124621,0.857893,0.824868,0.398364,0.287301,0.918488,0.49349,0.00996226,0.480427,0.982456,0.917467,0.634433,0.260041,0.11352,0.883577,0.355933,0.408966,0.214134,0.720313,0.471192,0.823659,0.769353,0.229859,0.391797,0.444197,0.709305,0.373499,0.0358344,0.426263,0.516491,0.589662,0.741569,0.213891,0.228471,0.731178,0.300343,0.146,0.595172,0.253519,0.950315,0.491882,0.279278,0.631215,0.154274,0.925983,0.678324,0.581165,0.669483,0.455369,0.883951,0.889681,0.727137,0.370321,0.826175,0.175768,0.365456,0.857475,0.649618,0.658162,0.571582,0.588138,0.6183,0.540489,0.640685,0.746003,0.0148874,0.019761,0.0744385,0.394193,0.361205,0.320143,0.577617,0.580218,0.936158,0.758302,0.235746,0.636105,0.519176,0.800095,0.165199,0.784911,0.370108,0.333502,0.0535353,0.13516,0.147527,0.678339,0.446497,0.72502,0.219992,0.205105,0.851021,0.249789,0.685476,0.0573532,0.241667,0.0200644,0.626169,0.610274,0.802224,0.485205,0.688103,0.267133,0.816709,0.288055,0.315221,0.168968,0.741358,0.545924,0.334229,0.0728207,0.471395,0.845026,0.549426,0.348952,0.422336,0.889451,0.966392,0.600685,0.324446,0.977549,0.191409,0.3793,0.0846701,0.0055663,0.712501,0.735193,0.738306,0.130112,0.979699,0.993468,0.544868,0.957069,0.806596,0.375428,0.485414,0.31358,0.159564,0.394155,0.303735,0.322242,0.840774,0.903934,0.0641719,0.190695,0.722189,0.0274506,0.539837,0.2276,0.580781,0.220896,0.899953,0.970292,0.269577,0.893932,0.25181,0.582342,0.0918509,0.196032,0.157952,0.0396082,0.741149,0.359507,0.0970856,0.448879,0.154757,0.378243,0.937263,0.411999,0.665638,0.712992,0.173148,0.405132,0.32527,0.552835,0.696842,0.766995,0.590607,0.705182,0.537091,0.843145,0.334758,0.554709,0.492426,0.929459,0.374111,0.0773077,0.0775239,0.79786,0.585267,0.557956,0.671427,0.070708,0.871303,0.999041,0.855089,0.409201,0.442196,0.189389,0.658555,0.222088,0.756603,0.0271584,0.108616,0.73513,0.272732,0.315655,0.199419,0.739821,0.399588,0.811178,0.508038,0.823449,0.106727,0.746059,0.0587435,0.508645,0.924604,0.861732,0.81895,0.943143,0.302581,0.229046,0.331514,0.855226,0.516959,0.314235,0.734941,0.0485023,0.189968,0.832741,0.185218,0.929827,0.514844,0.886609,0.90827,0.541275,0.195747,0.619406,0.121825,0.807619,0.448056,0.780347,0.613049,0.543503,0.164537,0.312166,0.184378,0.565089,0.971126,0.0592468,0.358459,0.831437,0.0904587,0.569204,0.372231,0.390255,0.906184,0.277796,0.405707,0.850227,0.223956,0.677155,0.935884,0.883064,0.671298,0.421116,0.381642,0.17495,0.436109,0.0914177,0.749657,0.654232,0.743679,0.687146,0.38096,0.36207,0.81889,0.666391,0.224313,0.664182,0.873806,0.23708,0.941652,0.398853,0.74708,0.13431,0.428033,0.996917,0.444011,0.966012,0.864572,0.888092,0.649697,0.50077,0.207625,0.99888,0.500917,0.557681,0.854642,0.735787,0.502742,0.743041,0.0791687,0.337081,0.143563,0.480402,0.902999,0.502528,0.772488,0.109929,0.736458,0.857948,0.473266,0.874915,0.00736308,0.144055,0.612703,0.460667,0.896737,0.182467,0.157464,0.9811,0.00630051,0.212555,0.173179,0.196696,0.923147,0.813353,0.743116,0.584355,0.301416,0.947449,0.329554,0.546604,0.266804,0.29319,0.21795,0.380092,0.546824,0.307203,0.163599,0.716787,0.9122,0.393199,0.41697,0.190559,0.0315838,0.552225,0.501602,0.598923,0.356217,0.70876,0.417489,0.899213,0.633871,0.484901,0.896951,0.152176,0.0841106,0.401979,0.866247,0.539207,0.963403,0.383898,0.558976,0.7164,0.737037,0.656428,0.80374,0.828757,0.0676597,0.391091,0.15881,0.654241,0.738327,0.0050481,0.0388505,0.0302769,0.389253,0.83752,0.458138,0.175412,0.873316,0.007029,0.0953096,0.424007,0.716971,0.747542,0.936255,0.820903,0.221173,0.396053,0.20188,0.555588,0.264903,0.815725,0.812934,0.533044,0.544034,0.219112,0.355659,0.473195,0.352434,0.715504,0.416985,0.292666,0.237545,0.18802,0.717228,0.56366,0.872842,0.199911,0.361025,0.73483,0.7381,0.611298,0.70942,0.244676,0.74271,0.240712,0.17343,0.9431,0.249116,0.73073,0.76364,0.777772,0.22713,0.975624,0.70368,0.604293,0.151964,0.411615,0.855769,0.92762,0.616833,0.967841,0.312589,0.352899,0.794875,0.682471,0.272576,0.323303,0.0693322,0.473026,0.610748,0.310588,0.530743,0.490436,0.792819,0.854057,0.98804,0.00549668,0.16019,0.426711,0.74719,0.845377,0.37847,0.562481,0.0911601,0.840673,0.642196,0.480951,0.495078,0.760487,0.541274,0.15103,0.326345,0.385901,0.0765526,0.939017,0.760974,0.177629,0.571346,0.759095,0.0586008,0.929132,0.811794,0.502403,0.0696602,0.929571,0.196554,0.756645,0.298505,0.449997,0.5808,0.119169,0.478983,0.0619911,0.793361,0.0114619,0.117389,0.718546,0.999546,0.286712,0.209288,0.799671,0.708234,0.356576,0.00961423,0.377995,0.0549993,0.0483178,0.100342,0.603049,0.758211,0.446936,0.716524,0.375646,0.385899,0.211426,0.446127,0.633825,0.720732,0.440032,0.33642,0.640811,0.752588,0.503594,0.635839,0.956696,0.00677276,0.346459,0.359037,0.723359,0.798297,0.769458,0.907886,0.833991,0.235482,0.356349,0.505403,0.539251,0.048112,0.564307,0.37432,0.213722,0.119983,0.167176,0.344366,0.715172,0.296433,0.677686,0.405805,0.539992,0.148508,0.918785,0.17466,0.474091,0.0494777,0.225889,0.944629,0.438214,0.24276,0.97537,0.91991,0.473079,0.903295,0.781364,0.480158,0.781759,0.880776,0.353973,0.0730724,0.9705,0.282776,0.705477,0.635497,|0.394292,0.622163,0.425777,0.291054,0.0289456,0.174381,0.0182785,0.540056,0.14883,0.497616,0.306445,0.780815,0.47172,0.0622189,0.00117159,0.427259,0.757779,0.295881,0.427943,0.238315,0.116296,0.0832675,0.832282,0.228932,0.116619,0.570274,0.543848,0.465638,0.197892,0.830276,0.784684,0.616818,0.41641,0.522108,0.990068,0.801762,0.00863302,0.346279,0.160723,0.706721,0.574878,0.16598,0.180345,0.153421,0.269649,0.918161,0.669336,0.385211,0.436338,0.0106529,0.317252,0.85693,0.538924,0.786707,0.336508,0.556897,0.44285,0.590265,0.702683,0.989269,0.293289,0.616891,0.253702,0.959511,0.0672623,0.702416,0.364499,0.735349,0.339861,0.995197,0.696369,0.038419,0.957819,0.20102,0.68351,0.994242,0.444957,0.467572,0.866855,0.409788,0.740882,0.376927,0.470786,0.505118,0.625208,0.575846,0.0918036,0.892711,0.306875,0.903595,0.774489,0.99341,0.81425,0.35935,0.688781,0.342009,0.452443,0.864308,0.97421,0.518945,0.0534915,0.607011,0.263037,0.743192,0.0242692,0.992931,0.91774,0.820837,0.836513,0.493473,0.852462,0.807351,0.903587,0.0505651,0.701563,0.51913,0.3563,0.833202,0.667316,0.937805,0.608015,0.736828,0.224954,0.974586,0.516174,0.381641,0.923801,0.406706,0.583289,0.293169,0.151083,0.0959783,0.285698,0.160601,0.474026,0.694989,0.795972,0.593788,0.282914,0.919806,0.667255,0.123545,0.245247,0.0752152,0.40284,0.88513,0.673599,0.704874,0.22483,0.557478,0.0150283,0.948593,0.418577,0.251386,0.0705071,0.896936,0.141412,0.860175,0.0869403,0.861249,0.548157,0.709718,0.0450234,0.99159,0.486375,0.236231,0.662495,0.242506,0.278272,0.101053,0.110659,0.740696,0.788112,0.338691,0.478911,0.949053,0.925113,0.669599,0.689754,0.534886,0.380447,0.673038,0.142051,0.572624,0.904299,0.06607,0.843403,0.945684,0.812132,0.531151,0.969991,0.228938,0.093828,0.433859,0.18269,0.141962,0.784881,0.889311,0.217337,0.84574,0.802717,0.173301,0.507314,0.0375378,0.0139853,0.778883,0.663529,0.633518,0.722584,0.241857,0.191262,0.843289,0.170591,0.211365,0.961271,0.324721,0.0148355,0.698618,0.903196,0.502387,0.0975425,0.307006,0.777623,0.226934,0.150429,0.469846,0.820393,0.301453,0.893319,0.835405,0.905136,0.70779,0.255861,0.572075,0.074372,0.672452,0.363477,0.60979,0.328767,0.987867,0.0328589,0.749613,0.946199,0.780542,0.129767,0.0878319,0.673124,0.379025,0.833139,0.876047,0.56945,0.377714,0.615184,0.558508,0.460978,0.108908,0.56201,0.18294,0.945673,0.409585,0.417205,0.957284,0.66934,0.354841,0.294003,0.27066,0.90542,0.519193,0.118679,0.855021,0.56229,0.093799,0.487138,0.26995,0.809067,0.521505,0.198878,0.573093,0.527913,0.0278307,0.795427,0.256816,0.77579,0.830734,0.875039,0.568971,0.199699,0.576944,0.419943,0.286671,0.154116,0.294147,0.202736,0.977239,0.940724,0.62314,0.24482,0.433317,0.299593,0.816633,0.859175,0.786803,0.445199,0.465668,0.577312,0.619314,0.335006,0.824744,0.116164,0.972137,0.410274,0.38864,0.944008,0.101243,0.0258598,0.814656,0.31777,0.068681,0.290764,0.476725,0.941142,0.923107,0.579802,0.170776,0.823348,0.749506,0.233827,0.929576,0.813866,0.441712,0.551448,0.0792757,0.741958,0.846222,0.684276,0.713161,0.19257,0.0728133,0.748928,0.944817,0.44898,0.0479206,0.468178,0.722574,0.554006,0.257776,0.00336933,0.778784,0.926157,0.495723,0.150482,0.931452,0.685857,0.323658,0.484342,0.704159,0.21643,0.521793,0.930533,0.0474187,0.00219619,0.220726,0.305301,0.041455,0.659578,0.825397,0.0656343,0.434702,0.419246,0.629278,0.103176,0.41698,0.43513,0.557282,0.344094,0.993501,0.54594,0.394592,0.386502,0.557641,0.450497,0.500273,0.83915,0.35461,0.753404,0.1889,0.219659,0.0725178,0.388002,0.461539,0.474218,0.83526,0.646637,0.559551,0.926033,0.161009,0.923804,0.824878,0.858609,0.692037,0.00551802,0.934829,0.392102,0.517015,0.946401,0.160198,0.276059,0.053543,0.716939,0.224538,0.767207,0.275586,0.435501,0.845894,0.610173,0.0919045,0.0877342,0.309501,0.669924,0.00613242,0.752366,0.35544,0.0545025,0.183163,0.55697,0.887771,0.239734,0.624095,0.0915731,0.712053,0.408965,0.0287215,0.949706,0.693171,0.448291,0.799201,0.358361,0.916397,0.497884,0.813336,0.638085,0.262305,0.126897,0.761838,0.816964,0.03941,0.702407,0.176929,0.153218,0.367223,0.882125,0.271281,0.584678,0.597616,0.228636,0.168003,0.855796,0.928501,0.568016,0.45353,0.155624,0.482898,0.749209,0.425427,0.571917,0.507206,0.211629,0.430784,0.432609,0.460873,0.454162,0.732486,0.34061,0.108987,0.415915,0.479769,0.656842,0.706794,0.352599,0.024836,0.794311,0.31877,0.0224612,0.752096,0.586882,0.698241,0.899466,0.588207,0.656363,0.624578,0.609405,0.80533,0.999859,0.959558,0.708562,0.100178,0.937381,0.258365,0.780437,0.189862,0.820474,0.627635,0.246974,0.316996,0.547527,0.852547,0.591587,0.959527,0.652281,0.616404,0.812925,0.0358722,0.574278,0.505798,0.919304,0.143245,0.220342,0.848083,0.329086,0.723851,0.110309,0.113031,0.737308,0.243467,0.96387,0.313123,0.244343,0.226818,0.789094,0.792779,0.622033,0.596184,0.778625,0.112465,0.467475,0.918443,0.889438,0.087744,0.550613,0.0363442,0.875118,0.484163,0.101258,0.714498,0.0157248,0.314775,0.251283,0.0905408,0.640311,0.651736,0.745241,0.135861,0.0833588,0.716742,0.221816,0.384898,0.595399,0.338917,0.585519,0.734648,0.554005,0.931551,0.472491,0.825665,0.460945,0.663217,0.258796,0.448722,0.448915,0.36164,0.563982,0.640487,0.220899,0.523221,0.129349,0.82026,0.982611,0.088274,0.350381,0.741411,0.0323848,0.318661,0.651828,0.766817,0.568476,0.695752,0.687729,0.25403,0.698803,0.955862,0.951408,0.168707,0.85036,0.188835,0.214491,0.86234,0.231482,0.949379,0.0348071,0.439578,0.0942746,0.205664,0.971178,0.732172,0.178729,0.90562,0.414223,0.751564,0.0928043,0.448831,0.0536193,0.961648,0.925599,0.469746,0.755318,0.0123231,0.213806,0.800403,0.973536,0.809839,0.981148,0.00170487,0.912456,0.172395,0.462387,0.894161,0.890921,0.136948,0.153866,0.745637,0.24425,0.582558,0.544131,0.306165,0.711593,0.328189,0.0132785,0.903951,0.465811,0.423506,0.0564631,0.874705,0.57564,0.180202,0.489294,0.164951,0.255828,0.980619,0.792088,0.502903,0.769003,0.948732,0.0262424,0.0262986,0.346923,0.6918,0.420156,0.958131,0.770887,0.40355,0.550135,0.126834,0.311689,0.912721,0.220943,0.190656,0.252085,0.659861,0.265134,0.437256,0.436203,0.444049,0.137762,0.0649523,0.854924,0.157714,0.46319,0.573107,0.84355,0.775446,0.990926,0.946919,0.979589,0.753464,0.248847,0.650308,0.305597,0.57591,0.297619,0.291506,0.383495,0.65524,0.853541,0.591628,0.319917,0.0683227,0.241164,0.315447,0.85012,0.992579,0.290929,0.620969,0.0362555,0.769821,0.346326,0.287542,0.140769,0.215565,0.503656,0.284898,0.913584,0.744128,0.833147,0.549988,0.376176,0.717429,0.13322,0.759181,0.259248,0.770645,0.723065,0.743514,0.967284,0.845354,0.0510628,0.269817,0.679274,0.402962,0.269903,0.653946,0.00147325,0.638291,0.536773,0.0426695,0.320254,0.93031,0.524568,0.898117,0.930411,0.700071,0.476756,0.362252,0.460835,0.399217,0.038954,0.223893,0.0472977,0.997362,0.332246,0.0691774,0.523345,0.32041,0.89312,0.892992,0.678592,0.342031,0.528179,0.718983,0.991162,0.520214,0.274033,0.639354,0.862109,0.101084,0.441116,0.838642,0.0984718,0.99715,0.196746,0.323834,0.883694,0.0936115,0.97139,0.169069,0.811796,0.322432,0.784022,0.38756,0.14264,0.823597,0.395467,0.118029,0.783101,0.199647,0.606395,0.697802,0.955534,0.804796,0.49733,0.452526,0.60129,0.677888,0.332878,0.709818,0.996088,0.345167,0.0126171,0.0749104,0.0388659,0.456256,0.896127,0.56982,0.882734,0.812343,0.332464,0.352456,0.113612,0.466942,0.133592,0.185211,0.13129,0.472099,0.520706,0.391905,0.625246,0.936537,0.97724,0.386521,0.316766,0.185314,0.150543,0.131696,0.0615128,0.178861,0.385557,0.559809,0.0180798,0.0195722,0.635519,0.91089,0.00906569,0.301365,0.763612,0.218344,0.0506326,0.887458,0.547246,0.396717,0.0465417,0.592632,0.193127,0.126243,0.0592522,0.438048,0.146119,0.822748,0.662559,0.587153,0.545991,0.827783,0.677108,0.69663,0.607647,0.213956,0.132712,0.490731,0.818511,0.93476,0.485422,0.769175,0.730828,0.290428,0.369241,0.170809,0.0349908,0.851589,0.166679,0.891191,0.483486,0.398228,0.263294,0.757566,0.554509,0.630714,0.54382,0.0399302,0.114109,0.0274082,0.570027,0.837301,0.725736,0.991493,0.318815,0.402362,0.947164,0.324967,0.430212,0.429624,0.934659,0.203192,0.419472,0.326671,0.00436968,0.590818,0.822529,0.417402,0.222098,0.0811138,0.260057,0.656352,0.846076,0.366013,0.655931,0.937556,0.866479,0.108042,0.700812,0.780228,0.436102,0.31629,0.647051,0.359526,0.376174,0.20741,0.984329,0.629963,0.0385444,0.0721453,0.592818,0.447275,0.72667,0.38313,0.775776,0.482993,0.247182,0.547321,0.968887,0.5815,0.0102212,0.0488895,0.208405,0.698705,0.000551403,0.745823,0.561733,0.212963,0.815308,0.1072,0.693711,0.892744,0.581294,0.220243,0.266443,0.888285,0.739602,0.971453,0.801385,0.441693,0.144507,0.710348,0.834016,0.0385811,0.548847,0.158315,0.0486419,0.442595,0.845116,0.622794,0.833194,0.903384,0.072716,0.019174,0.258358,0.76408,0.245914,0.308423,0.7739,0.151783,0.189653,0.772702,0.0604014,0.841154,0.24273,0.000615418,0.337737,0.258757,0.457154,0.0776776,0.808228,0.46785,0.10183,0.30169,0.175359,0.105319,0.983465,0.707591,0.490537,0.819567,0.300071,0.942213,0.384023,0.865962,0.394578,0.254831,0.922319,0.121839,0.851736,0.496786,0.175587,0.38383,|0.871922,0.918891,0.362889,0.853689,0.264952,0.384229,0.675607,0.206383,0.181759,0.172857,0.945343,0.0674969,0.12648,0.621453,0.227019,0.125486,0.261826,0.67009,0.890554,0.573316,0.528643,0.781436,0.438499,0.192088,0.548738,0.450648,0.720472,0.251117,0.814608,0.582099,0.356324,0.155409,0.587034,0.112093,0.87174,0.935507,0.312086,0.591816,0.867267,0.06666,0.332652,0.0132183,0.353371,0.378281,0.419046,0.494253,0.920781,0.337924,0.817133,0.00917256,0.930275,0.38951,0.883138,0.261232,0.522942,0.0174837,0.220627,0.456707,0.128649,0.198133,0.822808,0.791598,0.805206,0.25381,0.169799,0.654231,0.163329,0.114641,0.175782,0.230278,0.631588,0.409671,0.128418,0.580049,0.627342,0.110369,0.747521,0.988484,0.747128,0.469505,0.43429,0.881591,0.0801468,0.0547659,0.406643,0.00814074,0.929466,0.103071,0.680607,0.387111,0.919924,0.854158,0.818689,0.000779927,0.595022,0.42644,0.583069,0.625648,0.919419,0.201449,0.0239661,0.435619,0.9037,0.0214037,0.255241,0.382462,0.187039,0.116724,0.80947,0.764719,0.313516,0.964846,0.272071,0.0694349,0.432718,0.188724,0.658143,0.738436,0.0933798,0.334292,0.0088625,0.031586,0.976884,0.943639,0.513458,0.276627,0.815457,0.457999,0.626169,0.0833027,0.0226311,0.310806,0.379348,0.45288,0.559914,0.740878,0.288742,0.377606,0.618209,0.325556,0.175262,0.680458,0.729204,0.475698,0.161681,0.730873,0.635436,0.217926,0.0341302,0.529816,0.0491942,0.00633794,0.394467,0.190546,0.91972,0.102342,0.215352,0.513652,0.218857,0.156051,0.00473464,0.52585,0.739957,0.137961,0.470594,0.288311,0.398068,0.796306,0.171596,0.775398,0.716762,0.645399,0.694892,0.858248,0.619739,0.281771,0.0175543,0.673336,0.108343,0.303897,0.397214,0.20922,0.00739574,0.255226,0.393793,0.515849,0.074577,0.423956,0.811559,0.350299,0.672958,0.798064,0.459945,0.453288,0.954219,0.00345647,0.226858,0.862523,0.669949,0.81262,0.649875,0.193656,0.633351,0.62548,0.776099,0.663137,0.756856,0.78212,0.806421,0.592717,0.758961,0.899366,0.851511,0.714995,0.987629,0.751249,0.268506,0.839895,0.0616956,0.104956,0.626974,0.873726,0.458898,0.778278,0.956589,0.623458,0.676842,0.92401,0.0608827,0.420318,0.538885,0.897432,0.519975,0.162293,0.509067,0.00825429,0.205004,0.101399,0.907491,0.497971,0.156926,0.805349,0.213628,0.594086,0.876159,0.994496,0.831258,0.912873,0.669363,0.0119857,0.0900565,0.843581,0.303249,0.207835,0.698614,0.921484,0.279289,0.501138,0.595065,0.0240777,0.575289,0.213461,0.49536,0.212127,0.537721,0.463011,0.348187,0.540013,0.234912,0.28042,0.943122,0.955225,0.567039,0.986883,0.0343868,0.506969,0.524475,0.685726,0.402122,0.681437,0.245726,0.115988,0.255745,0.455624,0.838311,0.714705,0.558912,0.0839298,0.163935,0.564024,0.359691,0.606674,0.426591,0.62719,0.955822,0.231016,0.882824,0.720159,0.732093,0.337246,0.0534774,0.486991,0.976624,0.0341526,0.93001,0.626133,0.472302,0.87978,0.77408,0.663943,0.834311,0.054877,0.775901,0.47213,0.0870315,0.273252,0.187703,0.0394859,0.367577,0.882223,0.996311,0.786935,0.963737,0.937864,0.914638,0.189339,0.984389,0.89721,0.3793,0.583983,0.718544,0.0467799,0.263059,0.184768,0.191156,0.954499,0.0220246,0.489672,0.764777,0.814393,0.743687,0.579329,0.962663,0.993414,0.956467,0.750859,0.200477,0.385142,0.486988,0.0579924,0.0948062,0.467002,0.617849,0.751851,0.424236,0.269138,0.0307426,0.0789741,0.358292,0.647469,0.215491,0.0962408,0.605292,0.312563,0.610947,0.614044,0.669696,0.889,0.35487,0.42905,0.525886,0.338992,0.284668,0.56833,0.833406,0.744203,0.385512,0.793735,0.503077,0.906243,0.70834,0.0528115,0.782618,0.705839,0.078303,0.942125,0.263165,0.87588,0.442651,0.811876,0.0727506,0.796169,0.0629483,0.374735,0.52553,0.110752,0.552189,0.569074,0.2126,0.64383,0.46103,0.447247,0.790333,0.205138,0.520134,0.194323,0.725689,0.394961,0.743609,0.90857,0.817001,0.669747,0.981435,0.92654,0.690702,0.482434,0.937922,0.834889,0.800604,0.215196,0.967149,0.953311,0.280107,0.398101,0.998234,0.373682,0.689868,0.0208259,0.234352,0.7298,0.531201,0.582765,0.688434,0.425527,0.214249,0.207533,0.264916,0.0733528,0.140296,0.50863,0.516157,0.963536,0.560007,0.641478,0.198095,0.340219,0.563218,0.575805,0.128083,0.276505,0.59441,0.871187,0.732428,0.701728,0.558495,0.0572078,0.109253,0.0868179,0.0633462,0.744418,0.269026,0.275219,0.26799,0.21486,0.399857,0.267531,0.791324,0.0689191,0.925313,0.0942746,0.995547,0.145779,0.121097,0.899919,0.797751,0.988584,0.451034,0.197912,0.0103764,0.104882,0.579365,0.028281,0.172242,0.235516,0.58599,0.995243,0.775867,0.761332,0.958364,0.293629,0.206275,0.593533,0.542379,0.0156007,0.723348,0.434259,0.699859,0.651985,0.427473,0.0634508,0.297387,0.187832,0.982438,0.85341,0.96452,0.511828,0.743573,0.731842,0.694001,0.859025,0.270792,0.520148,0.533998,0.0663335,0.441435,0.338016,0.649376,0.277414,0.821653,0.981009,0.445116,0.376667,0.240081,0.608961,0.678658,0.578937,0.586375,0.947519,0.956816,0.550639,0.215661,0.700388,0.0638555,0.621001,0.0778868,0.622855,0.947186,0.511866,0.360302,0.289769,0.494818,0.080699,0.11274,0.191353,0.755675,0.432645,0.974871,0.102308,0.154091,0.918734,0.953851,0.390389,0.769389,0.21424,0.440322,0.131315,0.52556,0.371184,0.13385,0.559278,0.734415,0.0569153,0.480339,0.071808,0.31858,0.923889,0.773854,0.868934,0.527771,0.68382,0.186056,0.302932,0.379758,0.904176,0.628202,0.420598,0.758439,0.249915,0.0258787,0.985565,0.324302,0.808999,0.0695736,0.0861982,0.177514,0.491507,0.573984,0.932607,0.713663,0.842,0.59107,0.540779,0.263908,0.31147,0.722659,0.948294,0.077619,0.441157,0.585188,0.39702,0.940776,0.876103,0.184592,0.208647,0.923853,0.798676,0.964935,0.0911463,0.363461,0.160366,0.0659382,0.691778,0.466512,0.910821,0.709112,0.905536,0.510437,0.611161,0.685946,0.930567,0.704247,0.231494,0.893297,0.292999,0.145368,0.942169,0.436791,0.747523,0.870765,0.572672,0.924022,0.0254048,0.466866,0.87283,0.64608,0.297525,0.694121,0.211738,0.261423,0.901129,0.534649,0.923122,0.980003,0.662827,0.531411,0.401331,0.765265,0.690356,0.000641048,0.44503,0.348105,0.62298,0.406703,0.514264,0.482045,0.97131,0.139737,0.5707,0.0412047,0.180928,0.407593,0.254284,0.974307,0.558263,0.503289,0.849482,0.743305,0.916646,0.69271,0.306778,0.830886,0.788826,0.666508,0.304296,0.648234,0.306514,0.466515,0.38021,0.307379,0.284334,0.775509,0.700882,0.770446,0.171099,0.52285,0.500463,0.59673,0.223829,0.551499,0.835773,0.563266,0.377484,0.273832,0.0759189,0.699819,0.0430702,0.443628,0.609409,0.933843,0.296575,0.761717,0.591162,0.575045,0.542983,0.601536,0.385795,0.60475,0.0145891,0.0955332,0.359975,0.529278,0.410972,0.467043,0.636792,0.235975,0.610256,0.178742,0.765603,0.166436,0.73708,0.150458,0.392563,0.962168,0.0911478,0.908774,0.665357,0.844454,0.239152,0.548912,0.981728,0.288331,0.45193,0.652674,0.0996211,0.369762,0.105508,0.710612,0.631572,0.433157,0.624002,0.949601,0.13871,0.330232,0.185808,0.940555,0.865113,0.272414,0.274985,0.10659,0.722597,0.123708,0.636533,0.589702,0.821668,0.817054,0.249544,0.550234,0.831476,0.485775,0.504443,0.0491832,0.859301,0.901846,0.833677,0.528837,0.592328,0.633029,0.131227,0.420052,0.258489,0.171626,0.207346,0.117557,0.367084,0.109962,0.423287,0.567614,0.233874,0.757738,0.997268,0.751929,0.304087,0.822043,0.849661,0.413516,0.593601,0.470614,0.450361,0.428598,0.484792,0.373994,0.906517,0.92837,0.206336,0.713573,0.756606,0.347155,0.704863,0.0941904,0.652518,0.171224,0.396994,0.921708,0.758174,0.282988,0.795577,0.292367,0.999859,0.799211,0.824814,0.0725619,0.818039,0.584153,0.426606,0.806954,0.749973,0.580559,0.806641,0.8849,0.595051,0.68381,0.529684,0.534538,0.948653,0.341275,0.589867,0.996819,0.990642,0.524315,0.754907,0.0552541,0.781029,0.739532,0.134781,0.329022,0.809615,0.404798,0.673507,0.605096,0.113912,0.0381092,0.964241,0.88431,0.375964,0.121587,0.299266,0.860685,0.934124,0.00504351,0.148892,0.867405,0.825025,0.917149,0.229114,0.530741,0.798506,0.899421,0.0229024,0.525432,0.371803,0.684504,0.0239455,0.323043,0.548018,0.123405,0.444744,0.628269,0.404079,0.421555,0.144195,0.00595623,0.0520291,0.822104,0.99187,0.451787,0.566437,0.316229,0.687058,0.77493,0.506403,0.77686,0.416471,0.116508,0.563291,0.171275,0.568454,0.627827,0.239655,0.230624,0.000295639,0.00546587,0.266226,0.459075,0.541512,0.551431,0.893663,0.253456,0.622982,0.879054,0.370754,0.160653,0.831367,0.949762,0.974597,0.705222,0.304281,0.446879,0.622503,0.510487,0.0164425,0.481034,0.666691,0.158375,0.199857,0.855231,0.419809,0.431403,0.768924,0.408601,0.263853,0.204939,0.459206,0.913431,0.259228,0.905059,0.306064,0.571977,0.520623,0.191754,0.0265982,0.1576,0.0870152,0.891518,0.803233,0.483791,0.744896,0.541522,0.557009,0.508055,0.833143,0.720299,0.237806,0.595132,0.830699,0.496994,0.960735,0.567149,0.901101,0.924215,0.461627,0.431799,0.530653,0.194801,0.375759,0.409958,0.269686,0.814339,0.0900046,0.540399,0.0464364,0.974614,0.715369,0.98783,0.976634,0.428044,0.681525,0.066799,0.134056,0.361595,0.895201,0.524678,0.258196,0.189959,0.201876,0.571614,0.450144,0.542898,0.507042,0.673015,0.0598913,0.0681905,0.547868,0.945246,0.528407,0.844389,0.020298,0.70868,0.0104184,0.258135,0.584459,0.766003,0.225386,0.00763345,0.616958,0.803141,0.763482,0.00539696,0.40288,0.568927,0.412893,|0.881543,0.173608,0.992079,0.906156,0.0250468,0.316805,0.68097,0.864614,0.293335,0.329177,0.733279,0.0633156,0.620107,0.742045,0.335793,0.870604,0.286829,0.704231,0.580053,0.44426,0.940799,0.797327,0.489979,0.0962604,0.365656,0.480339,0.767264,0.181013,0.92167,0.777297,0.0953956,0.619768,0.891341,0.0356081,0.391572,0.864134,0.526548,0.426697,0.232426,0.794384,0.626126,0.595498,0.392568,0.992525,0.767794,0.71531,0.857404,0.0625652,0.0248258,0.417589,0.218377,0.313906,0.941691,0.852949,0.795962,0.882097,0.255641,0.427991,0.328589,0.366504,0.39795,0.68013,0.624072,0.331679,0.628523,0.658984,0.00415152,0.14191,0.19583,0.0789068,0.137526,0.384915,0.662766,0.395961,0.544405,0.277941,0.238583,0.421665,0.615255,0.37437,0.669976,0.252161,0.205339,0.00700402,0.320757,0.175684,0.557426,0.0683259,0.0140534,0.16897,0.774958,0.595116,0.310122,0.871941,0.276454,0.11623,0.136209,0.781508,0.0846739,0.812726,0.364494,0.482876,0.12127,0.878505,0.830186,0.253814,0.784806,0.0521721,0.422093,0.433994,0.45494,0.621777,0.12684,0.993878,0.486895,0.401998,0.361265,0.481147,0.293661,0.973018,0.459859,0.979103,0.129834,0.795434,0.536899,0.0137767,0.808572,0.661137,0.212849,0.0608277,0.624186,0.832126,0.782286,0.044511,0.532322,0.0721771,0.780584,0.209379,0.0356501,0.839295,0.966822,0.610622,0.451947,0.653405,0.0401235,0.527086,0.452068,0.610768,0.136123,0.00959915,0.470981,0.570293,0.951676,0.944558,0.888714,0.872821,0.0744991,0.529597,0.502956,0.921553,0.767601,0.0048818,0.0249107,0.853128,0.48539,0.880185,0.85884,0.408241,0.798144,0.256793,0.577493,0.156946,0.311546,0.439165,0.641497,0.885155,0.799698,0.294452,0.724187,0.617316,0.262064,0.529036,0.873617,0.175396,0.372252,0.303183,0.337094,0.844467,0.571119,0.0774966,0.241023,0.534552,0.0962758,0.303257,0.807964,0.494462,0.958514,0.159175,0.497288,0.486205,0.0580885,0.517127,0.0147938,0.334451,0.767964,0.991951,0.367681,0.978169,0.984214,0.101348,0.577432,0.126377,0.121252,0.805308,0.953677,0.401535,0.992972,0.605524,0.688806,0.960275,0.237236,0.371689,0.977478,0.41377,0.522208,0.984384,0.704016,0.966807,0.686146,0.562022,0.843139,0.60268,0.608115,0.619747,0.347959,0.893441,0.00282979,0.0172824,0.179137,0.45182,0.476299,0.597259,0.700599,0.50296,0.15367,0.478963,0.149309,0.15622,0.101004,0.937258,0.212256,0.829816,0.118966,0.914003,0.730264,0.0469776,0.730922,0.0685947,0.175047,0.270157,0.254564,0.826169,0.00174689,0.633389,0.397308,0.894135,0.505653,0.499486,0.329041,0.614267,0.709404,0.112531,0.907097,0.109012,0.299712,0.112808,0.380961,0.516853,0.576524,0.279425,0.119569,0.0372128,0.68091,0.906714,0.484939,0.307052,0.664941,0.320596,0.857672,0.543908,0.740486,0.146823,0.0268429,0.390544,0.238231,0.0644739,0.270503,0.551266,0.394056,0.535273,0.522317,0.495397,0.000672042,0.129897,0.00055927,0.259203,0.61524,0.591802,0.0155542,0.926714,0.588449,0.142102,0.739554,0.580258,0.194806,0.937508,0.821411,0.611557,0.536786,0.491421,0.38117,0.894642,0.780754,0.63342,0.996841,0.380417,0.560578,0.765403,0.573076,0.888858,0.0061115,0.862532,0.909685,0.0768167,0.845302,0.26057,0.0475147,0.327702,0.887686,0.319372,0.194026,0.693386,0.904993,0.0652069,0.226272,0.237269,0.753558,0.0722994,0.182239,0.486016,0.550719,0.838188,0.538097,0.893647,0.916408,0.653234,0.810569,0.661594,0.904425,0.229888,0.188739,0.465085,0.831585,0.867911,0.303452,0.23582,0.613685,0.79555,0.392988,0.184753,0.399517,0.574513,0.751082,0.555719,0.738025,0.707468,0.5582,0.0672758,0.908218,0.808507,0.8255,0.0850148,0.864251,0.489474,0.632336,0.0682551,0.885476,0.351184,0.854863,0.498719,0.695565,0.068028,0.362221,0.68701,0.790532,0.526576,0.394247,0.196061,0.334257,0.944766,0.424588,0.860445,0.462354,0.709205,0.660302,0.566349,0.078723,0.23189,0.200441,0.239996,0.366001,0.549006,0.76954,0.3875,0.026627,0.176633,0.596774,0.540497,0.0789576,0.488348,0.261805,0.224333,0.772293,0.382683,0.595677,0.55654,0.964761,0.944956,0.689446,0.811676,0.0528383,0.145921,0.558539,0.945967,0.180482,0.561432,0.0173989,0.471596,0.0341601,0.0197456,0.327138,0.210187,0.834452,0.316352,0.694005,0.139368,0.510544,0.0296772,0.143556,0.853797,0.908957,0.234146,0.429066,0.964878,0.785328,0.836914,0.0534918,0.506985,0.672778,0.458064,0.0769396,0.719926,0.5339,0.77879,0.559183,0.915048,0.927615,0.58818,0.0658641,0.0439543,0.544144,0.619459,0.710504,0.163333,0.266482,0.547451,0.34268,0.164856,0.221704,0.659108,0.923448,0.832589,0.505245,0.686492,0.414792,0.210013,0.512268,0.532603,0.398615,0.743047,0.0111064,0.11685,0.185714,0.65779,0.652222,0.629987,0.912506,0.890334,0.70319,0.869775,0.436984,0.539707,0.950208,0.837743,0.211596,0.622393,0.529236,0.499109,0.0281354,0.33538,0.772264,0.87982,0.320777,0.860477,0.815734,0.621546,0.911565,0.0765873,0.722435,0.508647,0.911761,0.294063,0.494237,0.524154,0.266666,0.575151,0.15883,0.00956398,0.286867,0.0307092,0.704327,0.3632,0.0840733,0.399707,0.480173,0.19157,0.654867,0.488576,0.473642,0.549369,0.708676,0.240519,0.751795,0.175101,0.310696,0.610118,0.00903469,0.672448,0.858547,0.192619,0.245732,0.510194,0.481486,0.811902,0.0704545,0.831311,0.798183,0.61764,0.898254,0.322685,0.636218,0.791909,0.0853066,0.668814,0.969987,0.933309,0.134958,0.141028,0.767671,0.311574,0.509323,0.619224,0.894098,0.0699255,0.89434,0.131388,0.889125,0.89007,0.128909,0.124261,0.152255,0.519939,0.865997,0.0269476,0.383453,0.279359,0.795812,0.728742,0.276212,0.184279,0.23827,0.207616,0.00868183,0.930582,0.7467,0.84602,0.224541,0.936241,0.0295327,0.101521,0.875105,0.6968,0.914461,0.731134,0.274346,0.560375,0.313035,0.938587,0.936897,0.160101,0.649924,0.266685,0.262357,0.670879,0.671783,0.986052,0.561202,0.742155,0.543398,0.982747,0.245746,0.843139,0.429929,0.322009,0.0112564,0.646753,0.556009,0.777754,0.837146,0.330119,0.902629,0.0269321,0.0126603,0.311295,0.919473,0.54154,0.364977,0.0528525,0.573168,0.560562,0.603324,0.596172,0.172942,0.871795,0.540139,0.913363,0.348916,0.201953,0.201128,0.247747,0.938303,0.967168,0.429392,0.251718,0.310657,0.799558,0.355541,0.786115,0.211237,0.866407,0.578653,0.308877,0.957317,0.821182,0.687498,0.515543,0.449725,0.743026,0.899257,0.325864,0.819485,0.550761,0.889883,0.644085,0.543899,0.362549,0.630675,0.0161744,0.885514,0.864561,0.738409,0.889203,0.30117,0.927092,0.768051,0.421994,0.220613,0.862153,0.0395617,0.911186,0.875109,0.301026,0.0284867,0.166009,0.497054,0.581566,0.0184719,0.709533,0.913292,0.720313,0.567817,0.516308,0.713171,0.521398,0.739558,0.0598636,0.534731,0.358415,0.317614,0.0180373,0.312893,0.972998,0.135403,0.746661,0.576975,0.7157,0.180401,0.239548,0.436977,0.161184,0.0883829,0.696201,0.276615,0.727445,0.789789,0.476404,0.640881,0.356744,0.475595,0.399023,0.442944,0.782735,0.0693194,0.0964263,0.81434,0.407118,0.324887,0.637868,0.0439276,0.286923,0.859842,0.152476,0.627155,0.0557973,0.924332,0.113121,0.957199,0.936407,0.795113,0.566277,0.352156,0.953359,0.864144,0.651281,0.137508,0.415985,0.299962,0.481557,0.458305,0.367552,0.221856,0.322185,0.887343,0.484414,0.914657,0.196339,0.136247,0.576824,0.656908,0.228974,0.565725,0.592973,0.580957,0.980087,0.599479,0.997635,0.310159,0.472303,0.557685,0.182802,0.42699,0.0403756,0.313372,0.85726,0.855582,0.372267,0.936865,0.858327,0.691763,0.484,0.732911,0.786757,0.765899,0.959581,0.57208,0.218024,0.174541,0.712007,0.552065,0.783013,0.829755,0.948697,0.464789,0.00668871,0.880885,0.348489,0.656838,0.212743,0.908501,0.663521,0.693932,0.782317,0.266005,0.35624,0.144926,0.219744,0.189838,0.980173,0.973842,0.110439,0.605383,0.190758,0.335015,0.932224,0.548188,0.254465,0.406947,0.747938,0.342833,0.420232,0.896719,0.539182,0.306089,0.629513,0.63872,0.68685,0.291458,0.943141,0.830149,0.86847,0.643836,0.845831,0.195231,0.790362,0.209856,0.66279,0.531705,0.115678,0.0788749,0.843233,0.826764,0.328791,0.997038,0.487749,0.73892,0.100984,0.844681,0.700684,0.859495,0.833215,0.195851,0.658718,0.634395,0.0490194,0.0115235,0.476627,0.578089,0.134099,0.57475,0.918402,0.873444,0.82539,0.377405,0.66525,0.0290794,0.674411,0.272144,0.0326546,0.16757,0.82116,0.231923,0.0838408,0.927072,0.199534,0.233372,0.981361,0.443104,0.60105,0.170301,0.992559,0.479862,0.624998,0.251478,0.705896,0.0624813,0.469261,0.389086,0.306376,0.622543,0.721985,0.864102,0.546698,0.205873,0.612825,0.360726,0.719731,0.574254,0.342328,0.271159,0.74146,0.768991,0.114185,0.0580176,0.000815332,0.927726,0.246204,0.164278,0.748069,0.559945,0.89049,0.671027,0.440117,0.957491,0.262637,0.964339,0.99642,0.308119,0.89199,0.201134,0.773745,0.89464,0.0257738,0.922899,0.712211,0.340922,0.357406,0.720158,0.630832,0.467519,0.226994,0.447444,0.712122,0.331223,0.329325,0.377958,0.0719917,0.682721,0.735,0.345783,0.546081,0.789625,0.820557,0.64168,0.193174,0.272013,0.719943,0.525524,0.767717,0.445917,0.501956,0.524128,0.242836,0.402617,0.720642,0.879475,0.165147,0.706801,0.550189,0.621544,0.0582052,0.516653,0.0196147,0.888406,0.232237,0.940206,0.945619,0.0335525,0.336295,0.361384,0.952554,0.556862,0.868516,0.756711,0.353195,0.621844,0.240489,0.607423,0.312335,0.222465,0.874915,0.445947,0.288849,0.265779,0.914075,0.439996,0.895591,0.00537354,0.759176,0.131529,0.148358,|0.58284,0.879171,0.700569,0.677358,0.139126,0.587504,0.723339,0.771649,0.618312,0.0691459,0.195757,0.451951,0.392622,0.445272,0.655181,0.21006,0.478689,0.592274,0.508763,0.410779,0.61799,0.488853,0.360029,0.0212817,0.540192,0.40285,0.211758,0.616553,0.681177,0.316698,0.121929,0.595678,0.490013,0.350726,0.194721,0.135762,0.289764,0.242768,0.279321,0.31133,0.530412,0.810533,0.218042,0.404267,0.775555,0.378233,0.232542,0.864147,0.330724,0.578241,0.957709,0.391181,0.870154,0.0428272,0.970457,0.293034,0.385787,0.364308,0.340136,0.100386,0.518386,0.87103,0.712798,0.285639,0.158767,0.935366,0.488414,0.985922,0.134705,0.594946,0.088951,0.549874,0.531101,0.030852,0.309514,0.93552,0.570754,0.100092,0.24457,0.201031,0.976347,0.595078,0.791836,0.664029,0.0012269,0.12104,0.928494,0.139183,0.101441,0.0444515,0.712878,0.764962,0.57083,0.254902,0.496194,0.936719,0.889125,0.167686,0.453093,0.181117,0.109469,0.620199,0.488092,0.888565,0.241129,0.328169,0.956753,0.881948,0.867415,0.488389,0.99318,0.528181,0.895981,0.105197,0.0570243,0.686656,0.934883,0.289645,0.847373,0.840582,0.966151,0.639969,0.694258,0.112959,0.419829,0.262038,0.0650251,0.211308,0.875258,0.829736,0.066911,0.908475,0.675154,0.147266,0.248401,0.883986,0.400307,0.323402,0.982761,0.634404,0.330446,0.463193,0.671397,0.0861706,0.259671,0.42749,0.191227,0.17426,0.00841671,0.937409,0.687133,0.163766,0.363153,0.0553893,0.154824,0.918086,0.338126,0.474925,0.993435,0.74552,0.0334525,0.879148,0.6062,0.807845,0.0134923,0.424842,0.549547,0.782433,0.810393,0.512242,0.501392,0.101296,0.972456,0.320399,0.411915,0.216938,0.455373,0.338596,0.701931,0.960949,0.304771,0.264342,0.583816,0.373967,0.794792,0.0550335,0.494061,0.291557,0.212746,0.10348,0.044631,0.0917242,0.942855,0.471279,0.426215,0.553042,0.00285095,0.861929,0.484099,0.0925967,0.972915,0.754012,0.462812,0.113176,0.137659,0.254944,0.829408,0.811857,0.368544,0.889221,0.221856,0.0702854,0.989512,0.810704,0.486381,0.702429,0.615725,0.0105611,0.634509,0.673694,0.441731,0.87218,0.116721,0.153351,0.794249,0.00178862,0.619839,0.37186,0.44235,0.909673,0.657917,0.769542,0.72255,0.734198,0.504319,0.417311,0.817076,0.580452,0.121808,0.0926696,0.730348,0.423788,0.163512,0.734152,0.755686,0.59903,0.79117,0.706197,0.733234,0.821515,0.819954,0.142944,0.293883,0.651407,0.239897,0.719988,0.58425,0.755576,0.277939,0.495219,0.910896,0.878466,0.16629,0.172497,0.744725,0.643982,0.881091,0.420637,0.95947,0.947472,0.131207,0.189601,0.928338,0.730831,0.0572663,0.908034,0.701681,0.0100972,0.209263,0.743889,0.543601,0.154302,0.49183,0.621607,0.399272,0.781837,0.901568,0.225787,0.421352,0.655285,0.0343954,0.265748,0.658391,0.4077,0.434978,0.609001,0.603751,0.255523,0.0337911,0.268206,0.570435,0.995304,0.0447882,0.588725,0.319368,0.539412,0.673868,0.065344,0.685443,0.298549,0.758403,0.714721,0.440894,0.877999,0.826272,0.0039674,0.268385,0.149509,0.0981703,0.753202,0.554683,0.115817,0.834757,0.490597,0.0256884,0.832467,0.687811,0.310662,0.240473,0.14181,0.0408058,0.870496,0.137965,0.334774,0.340927,0.704032,0.897729,0.7803,0.0635322,0.0611629,0.896685,0.554046,0.11918,0.0995942,0.452646,0.983002,0.977155,0.817102,0.39306,0.220112,0.322842,0.475759,0.356462,0.379449,0.307727,0.917446,0.109407,0.360114,0.577615,0.413439,0.192818,0.167078,0.670607,0.577567,0.602678,0.555654,0.270677,0.827962,0.591843,0.867968,0.29131,0.0243782,0.488128,0.588734,0.82645,0.710267,0.0731861,0.353306,0.0206442,0.0540574,0.243343,0.529871,0.849712,0.294711,0.104847,0.504729,0.513891,0.941022,0.183915,0.0798469,0.494882,0.62089,0.770071,0.358301,0.622068,0.135148,0.19778,0.589241,0.815561,0.804336,0.790645,0.764672,0.0134906,0.924111,0.320199,0.37559,0.0525656,0.787965,0.176392,0.134699,0.185334,0.333799,0.711618,0.546564,0.315273,0.632369,0.944472,0.486147,0.451746,0.375098,0.415266,0.256613,0.638794,0.763483,0.352749,0.0506949,0.374023,0.364778,0.260374,0.319014,0.163256,0.554415,0.827638,0.458339,0.512398,0.791645,0.375951,0.848941,0.366637,0.0771506,0.797924,0.95443,0.471278,0.638998,0.0570051,0.667584,0.879583,0.477927,0.886516,0.793046,0.378491,0.0342013,0.965966,0.605841,0.955353,0.343337,0.876688,0.0351696,0.77963,0.0947307,0.318026,0.162667,0.732789,0.69609,0.401655,0.843418,0.757431,0.475315,0.124889,0.24262,0.197727,0.531058,0.390551,0.741084,0.785332,0.0747273,0.702278,0.396094,0.649082,0.873569,0.425714,0.422389,0.193722,0.085724,0.882273,0.454176,0.653551,0.239591,0.722839,0.233109,0.0553645,0.439332,0.790969,0.2807,0.0758377,0.465273,0.0222777,0.561322,0.59618,0.956638,0.709655,0.492212,0.474383,0.872574,0.966986,0.130187,0.823495,0.818502,0.558454,0.680759,0.874179,0.545005,0.212539,0.016269,0.0309495,0.707956,0.879892,0.80784,0.513026,0.418885,0.422694,0.224717,0.648737,0.605217,0.624903,0.817871,0.577922,0.190462,0.515869,0.0622763,0.755388,0.453723,0.0818011,0.0959523,0.887479,0.793231,0.276342,0.233914,0.0927842,0.0630247,0.762985,0.146047,0.389041,0.234637,0.278894,0.500571,0.968234,0.0959676,0.0985715,0.442667,0.0825186,0.365553,0.868845,0.896836,0.561788,0.290378,0.225434,0.323861,0.544438,0.804091,0.511277,0.0352061,0.282854,0.295796,0.752981,0.662459,0.65799,0.070073,0.0567161,0.48601,0.142703,0.661574,0.202106,0.403146,0.870458,0.195703,0.491713,0.737542,0.0659382,0.267932,0.353159,0.541466,0.415517,0.857325,0.455563,0.0486314,0.313046,0.131242,0.757139,0.063347,0.871985,0.48592,0.452685,0.50572,0.0330411,0.855646,0.0628448,0.762049,0.960504,0.073085,0.713028,0.453778,0.369725,0.275865,0.265141,0.699027,0.645124,0.417303,0.483325,0.297219,0.20955,0.61245,0.465396,0.381128,0.955515,0.400033,0.0766051,0.172181,0.993037,0.436215,0.924639,0.190494,0.361744,0.696135,0.131683,0.709724,0.294918,0.210107,0.622707,0.669512,0.829993,0.0439209,0.275402,0.36004,0.911197,0.537867,0.954328,0.956424,0.611389,0.252364,0.112885,0.0613452,0.321662,0.120871,0.149779,0.0554383,0.688963,0.269408,0.886785,0.277833,0.123331,0.509932,0.776619,0.259966,0.831893,0.964212,0.452938,0.479694,0.914211,0.08848,0.503235,0.893692,0.232486,0.230121,0.31537,0.894995,0.781115,0.0255819,0.359607,0.573538,0.54535,0.26555,0.0158849,0.49037,0.667239,0.480755,0.579627,0.90959,0.348271,0.11168,0.560746,0.30386,0.97196,0.84048,0.194642,0.46751,0.130677,0.231511,0.506661,0.731671,0.520126,0.159095,0.900525,0.523918,0.187633,0.662014,0.072206,0.919453,0.21748,0.746483,0.418274,0.584821,0.234144,0.30236,0.178219,0.188703,0.0671618,0.92175,0.466056,0.0956293,0.122369,0.114219,0.151645,0.40474,0.543554,0.648514,0.836263,0.248366,0.760845,0.625252,0.834968,0.2737,0.932277,0.239007,0.989596,0.727907,0.57654,0.608305,0.129325,0.527119,0.384153,0.877527,0.558756,0.467171,0.648073,0.360894,0.752449,0.0859733,0.204558,0.650124,0.422407,0.491586,0.792868,0.838278,0.645096,0.611545,0.853718,0.556541,0.500323,0.260726,0.123332,0.70673,0.0894873,0.866305,0.036629,0.686349,0.810535,0.642068,0.712608,0.976702,0.636926,0.590611,0.713734,0.350284,0.98401,0.944056,0.31556,0.019914,0.281203,0.138648,0.438452,0.404424,0.20787,0.874895,0.721864,0.275218,0.938046,0.058383,0.368737,0.163345,0.205294,0.378133,0.826824,0.816566,0.600029,0.422215,0.0257862,0.789274,0.458981,0.421555,0.397849,0.888256,0.763506,0.0992205,0.301734,0.0573536,0.736529,0.276313,0.870594,0.38906,0.26281,0.543121,0.744071,0.384586,0.144415,0.607559,0.952237,0.791364,0.391763,0.117748,0.794339,0.764777,0.451734,0.228438,0.606049,0.999784,0.0984048,0.956037,0.708817,0.252161,0.460604,0.980125,0.0698392,0.876928,0.830092,0.165398,0.0126605,0.615864,0.89576,0.0307502,0.753268,0.035403,0.911324,0.335919,0.377557,0.195903,0.277644,0.602952,0.166612,0.76254,0.274615,0.355699,0.287374,0.0175854,0.137227,0.103146,0.448029,0.806733,0.801854,0.0285545,0.328627,0.732832,0.256468,0.159556,0.714022,0.877747,0.718393,0.3126,0.312275,0.368471,0.278896,0.155213,0.3221,0.836395,0.636313,0.844103,0.287311,0.146883,0.340292,0.841623,0.569664,0.497681,0.435053,0.254489,0.304905,0.982969,0.0959588,0.70665,0.387439,0.432968,0.0818227,0.530209,0.464135,0.935674,0.608359,0.353494,0.849418,0.945817,0.923618,0.991768,0.795933,0.431425,0.275317,0.60745,0.604258,0.762804,0.503158,0.598204,0.366318,0.260679,0.21598,0.542357,0.387768,0.774683,0.07845,0.282596,0.403178,0.690602,0.739979,0.890064,0.817948,0.284427,0.145202,0.875951,0.922137,0.0432451,0.17306,0.252289,0.248745,0.708568,0.748698,0.249376,0.798404,0.918304,0.417651,0.952662,0.637172,0.272074,0.442415,0.768744,0.25973,0.378816,0.190239,0.761335,0.495891,0.614696,0.660143,0.851387,0.492262,0.463697,0.92696,0.88697,0.0819685,0.824609,0.249479,0.866594,0.134908,0.169527,0.0641978,0.992573,0.0795208,0.608986,0.560597,0.836931,0.592735,0.235723,0.732147,0.617198,0.164708,0.309181,0.726787,0.793769,0.968886,0.348677,0.114166,0.918242,0.819747,0.324279,0.711931,0.154252,0.259861,0.368713,0.551836,0.937967,0.0262634,0.360232,0.192901,0.465311,0.551566,0.892722,0.863826,0.410083,0.277673,0.613564,0.192511,0.616791,0.183981,0.554366,0.725056,0.810221,0.724518,0.269766,0.8369,0.356526,0.204635,0.469598,0.929576,0.893188,0.0707189,0.297768,|0.711852,0.600743,0.66881,0.709368,0.69308,0.0993515,0.0965424,0.917634,0.905408,0.891666,0.509745,0.905964,0.498517,0.606828,0.6883,0.597593,0.932883,0.470035,0.820483,0.498756,0.410965,0.515812,0.931422,0.837448,0.467562,0.676369,0.137015,0.219172,0.742515,0.158623,0.545216,0.122251,0.0210627,7.12872e-05,0.1349,0.696849,0.452715,0.787506,0.544199,0.554189,0.654336,0.917752,0.339939,0.319591,0.86432,0.208073,0.792131,0.257855,0.222466,0.242177,0.0275323,0.664669,0.784673,0.443956,0.758171,0.488642,0.669406,0.80593,0.659264,0.512899,0.485319,0.315548,0.702658,0.266855,0.159013,0.123143,0.565091,0.420843,0.393299,0.555231,0.12418,0.779388,0.381482,0.958407,0.667165,0.0759171,0.929338,0.0230396,0.326885,0.588589,0.378569,0.330505,0.152466,0.0528642,0.182842,0.514847,0.616352,0.629469,0.444159,0.727068,0.0721738,0.305401,0.0217304,0.86051,0.240756,0.203809,0.0537189,0.646913,0.832171,0.36007,0.267389,0.876774,0.256329,0.748217,0.913181,0.402369,0.271217,0.817117,0.831093,0.134876,0.13753,0.787156,0.706767,0.831786,0.844503,0.575032,0.370219,0.704968,0.422959,0.48323,0.145304,0.212802,0.800799,0.45158,0.614018,0.419293,0.789013,0.0286828,0.158392,0.716729,0.574165,0.23321,0.559879,0.0687162,0.9882,0.355666,0.646577,0.65467,0.0859399,0.356725,0.603281,0.518919,0.357003,0.632534,0.708228,0.304982,0.418767,0.7618,0.709543,0.254197,0.342953,0.181333,0.503637,0.298767,0.640888,0.551062,0.715605,0.193136,0.739618,0.939534,0.0830731,0.613689,0.383717,0.235258,0.174259,0.994137,0.272186,0.614185,0.862809,0.200485,0.867296,0.852969,0.28572,0.111609,0.109487,0.244619,0.804125,0.392565,0.201438,0.883013,0.183463,0.00800943,0.778342,0.274387,0.647621,0.116161,0.380472,0.956448,0.0348223,0.932018,0.902979,0.0436026,0.194254,0.797084,0.137771,0.0704847,0.236946,0.00759792,0.752329,0.827802,0.507488,0.727371,0.926442,0.0731727,0.852546,0.58473,0.95927,0.337046,0.304463,0.716788,0.251379,0.421552,0.561599,0.918752,0.589425,0.508608,0.130603,0.103473,0.19944,0.761128,0.87881,0.427246,0.269517,0.161426,0.441921,0.323296,0.39952,0.739379,0.0901551,0.170061,0.988088,0.92381,0.458372,0.301576,0.10287,0.428657,0.0648687,0.787915,0.411688,0.0825143,0.863412,0.903306,0.963323,0.0265441,0.958924,0.696783,0.443212,0.947477,0.310707,0.775451,0.932088,0.584844,0.140904,0.739371,0.323281,0.859869,0.85095,0.736601,0.736888,0.976163,0.393071,0.0405332,0.399385,0.736307,0.273066,0.475022,0.517885,0.828012,0.408525,0.185152,0.618763,0.957923,0.533935,0.912325,0.372193,0.363123,0.215468,0.724306,0.329709,0.133162,0.46256,0.677172,0.711833,0.0670128,0.493493,0.690904,0.285751,0.0701606,0.871958,0.156632,0.927415,0.265059,0.227407,0.573321,0.902529,0.329876,0.819479,0.668027,0.292544,0.0223861,0.874771,0.750568,0.309059,0.100869,0.296037,0.976676,0.847201,0.187638,0.396124,0.111041,0.246051,0.397848,0.0526563,0.158255,0.879891,0.509997,0.927125,0.046541,0.724698,0.90602,0.604727,0.260652,0.352667,0.502867,0.37977,0.126255,0.186898,0.802715,0.103489,0.582364,0.120433,0.40927,0.709805,0.852167,0.968732,0.621558,0.150501,0.906905,0.235011,0.814482,0.993149,0.274275,0.913415,0.311799,0.776468,0.106627,0.709813,0.187345,0.0974616,0.911306,0.963719,0.493297,0.497425,0.233463,0.498958,0.809486,0.540998,0.061062,0.445835,0.325839,0.886052,0.315342,0.339361,0.593436,0.131293,0.453932,0.499794,0.495631,0.149389,0.0906387,0.262297,0.883865,0.0411232,0.492613,0.182056,0.805552,0.800206,0.910755,0.0671123,0.262769,0.878472,0.202829,0.68101,0.452177,0.604589,0.888773,0.299413,0.393034,0.590201,0.906352,0.957913,0.139146,0.446091,0.253792,0.811047,0.189892,0.80864,0.47222,0.520847,0.395709,0.780328,0.326182,0.022358,0.391086,0.802628,0.730143,0.0544153,0.205931,0.0901767,0.380762,0.443211,0.565762,0.79998,0.52801,0.606601,0.739327,0.246546,0.782105,0.909916,0.895063,0.143703,0.982342,0.746423,0.663769,0.783621,0.394035,0.902911,0.278748,0.5163,0.369371,0.870893,0.86679,0.944174,0.252108,0.80654,0.737217,0.483559,0.152099,0.190473,0.547948,0.136771,0.530977,0.899711,0.696991,0.813935,0.0490997,0.775504,0.502685,0.233529,0.123197,0.414781,0.545392,0.994077,0.274483,0.8827,0.168149,0.59937,0.493678,0.836693,0.0516143,0.144376,0.653062,0.608921,0.561646,0.844957,0.212947,0.731107,0.198622,0.731336,0.544782,0.621657,0.851773,0.889595,0.889664,0.818776,0.0716019,0.217982,0.455893,0.288004,0.986137,0.712447,0.369975,0.711787,0.824523,0.109977,0.425469,0.222821,0.527177,0.19094,0.130178,0.131219,0.0181679,0.374202,0.034847,0.686693,0.563895,0.587041,0.628321,0.807396,0.0946872,0.115495,0.198115,0.279115,0.903475,0.518711,0.500812,0.106518,0.72684,0.396481,0.836206,0.739723,0.355998,0.921371,0.457834,0.379216,0.059209,0.336269,0.461103,0.412748,0.520578,0.41735,0.0714034,0.315967,0.560044,0.315847,0.394609,0.087222,0.0372691,0.676853,0.425619,0.291234,0.613145,0.633793,0.576876,0.0958623,0.109766,0.930135,0.936318,0.421304,0.735004,0.378715,0.802428,0.934774,0.990803,0.877814,0.806591,0.538906,0.795364,0.743601,0.0032919,0.860317,0.588248,0.412121,0.197103,0.156957,0.29689,0.612599,0.898083,0.236105,0.594727,0.615079,0.783074,0.160162,0.999512,0.655243,0.26898,0.905257,0.508533,0.397407,0.709909,0.161172,0.45345,0.331038,0.881812,0.292997,0.488267,0.121504,0.531369,0.1541,0.326799,0.0496827,0.872141,0.0975811,0.873212,0.205775,0.752359,0.11454,0.374854,0.187207,0.857794,0.713303,0.462546,0.785819,0.0602936,0.869906,0.376389,0.482111,0.579862,0.613069,0.0143088,0.167219,0.842262,0.8161,0.774979,0.30343,0.908525,0.101318,0.523929,0.165454,0.868985,0.487963,0.568752,0.673363,0.460068,0.685605,0.379457,0.155408,0.920263,0.351591,0.446938,0.269227,0.904072,0.0391285,0.776264,0.226311,0.631463,0.850147,0.655752,0.791664,0.264746,0.0393157,0.495062,0.441478,0.0719928,0.52206,0.794058,0.763134,0.10856,0.500366,0.591709,0.227817,0.549441,0.532982,0.930508,0.729025,0.198925,0.333009,0.0073325,0.333618,0.527196,0.493177,0.161122,0.177868,0.871105,0.275887,0.509747,0.288429,0.453905,0.966178,0.911467,0.217009,0.150719,0.107676,0.384095,0.516489,0.892078,0.00819445,0.427884,0.0863479,0.549531,0.962161,0.826503,0.465161,0.762079,0.956597,0.523692,0.556747,0.83072,0.446893,0.628752,0.554913,0.510953,0.0888405,0.640856,0.760688,0.0399177,0.862848,0.0753435,0.0589358,0.570801,0.795649,0.707233,0.64503,0.289674,0.188807,0.0242581,0.386299,0.0160814,0.860519,0.225469,0.541132,0.24489,0.0457014,0.870678,0.568154,0.423502,0.820567,0.73229,0.40348,0.299697,0.170128,0.171992,0.653553,0.680962,0.0718977,0.331162,0.660561,0.757483,0.927445,0.28454,0.443344,0.47508,0.376676,0.967273,0.179584,0.34295,0.757808,0.492061,0.326862,0.478681,0.896136,0.196429,0.434391,0.659527,0.522085,0.546876,0.80264,0.3658,0.993024,0.0646622,0.61938,0.874181,0.403698,0.599359,0.389431,0.93677,0.898859,0.778851,0.78235,0.187261,0.180163,0.559793,0.0354791,0.29351,0.856415,0.539346,0.942693,0.527567,0.658271,0.843324,0.00635988,0.391445,0.885941,0.657405,0.187848,0.58834,0.960742,0.269416,0.297689,0.412658,0.000600576,0.935295,0.188501,0.502819,0.118631,0.92929,0.176461,0.729923,0.166975,0.787725,0.5438,0.125356,0.550924,0.109023,0.627207,0.108868,0.52848,0.515294,0.328784,0.531316,0.742041,0.00928676,0.479478,0.982412,0.501168,0.878644,0.144295,0.363436,0.11862,0.308516,0.784054,0.516101,0.110757,0.0659415,0.541354,0.970446,0.162741,0.149444,0.245043,0.458395,0.765215,0.333126,0.588257,0.505337,0.444258,0.018715,0.147178,0.754517,0.925891,0.294313,0.619284,0.631678,0.408716,0.980455,0.957548,0.945212,0.870941,0.417093,0.574538,0.702327,0.891898,0.224047,0.000991225,0.708855,0.220657,0.25741,0.837304,0.631789,0.0745474,0.952842,0.139376,0.842391,0.107061,0.650577,0.260486,0.175644,0.000829279,0.788309,0.838517,0.945839,0.670004,0.154985,0.406703,0.270989,0.870989,0.922854,0.281523,0.835813,0.476571,0.777508,0.876207,0.899809,0.543758,0.090219,0.295996,0.571741,0.965982,0.656821,0.887121,0.10471,0.3098,0.797628,0.55503,0.57247,0.330238,0.410843,0.511523,0.85069,0.111739,0.343726,0.857982,0.770547,0.390642,0.567905,0.794686,0.57829,0.128315,0.090059,0.495357,0.0608079,0.592845,0.211218,0.303381,0.490526,0.957257,0.192681,0.521067,0.228014,0.667711,0.865814,0.300446,0.498627,0.955411,0.760126,0.334732,0.934935,0.743708,0.0482154,0.512131,0.15288,0.593498,0.2402,0.133401,0.85,0.60607,0.759074,0.81948,0.968634,0.908119,0.511764,0.604447,0.964844,0.654912,0.3322,0.964177,0.956504,0.774042,0.298648,0.750094,0.446711,0.697822,0.476948,0.715282,0.00104326,0.0609579,0.696604,0.837348,0.732621,0.250448,0.539575,0.895089,0.702516,0.844819,0.524574,0.458338,0.0652723,0.93631,0.889557,0.766725,0.651552,0.834171,0.160013,0.0660458,0.2997,0.783943,0.634819,0.303757,0.881297,0.0386928,0.40093,0.520554,0.17196,0.739847,0.298544,0.386676,0.374078,0.618027,0.0482745,0.0110514,0.682359,0.12728,0.516039,0.492027,0.151817,0.287594,0.773156,0.735393,0.536795,0.267043,0.604117,0.30931,0.438671,0.142499,0.441811,0.889156,0.945786,0.891362,0.520907,0.726506,0.511843,0.721081,0.571164,0.44924,0.575141,0.693245,0.624143,0.758863,0.756448,0.780307,0.742057,|0.0878447,0.706864,0.271598,0.179252,0.754351,0.748064,0.896747,0.966839,0.628727,0.43465,0.686366,0.711587,0.844132,0.152522,0.567204,0.0543228,0.967589,0.601031,0.807473,0.922773,0.983221,0.819971,0.376937,0.241364,0.553294,0.436879,0.993216,0.218801,0.381205,0.583657,0.58295,0.669531,0.289816,0.158411,0.526566,0.0589434,0.807142,0.197939,0.0477028,0.784028,0.277964,0.713143,0.399229,0.103932,0.987235,0.235823,0.307932,0.350311,0.837257,0.377102,0.489557,0.337183,0.367802,0.0132958,0.157697,0.379323,0.0862612,0.665649,0.683527,0.100636,0.580747,0.311433,0.713495,0.575082,0.610549,0.931434,0.390136,0.797335,0.133264,0.623298,0.0580887,0.443329,0.863085,0.841012,0.942258,0.262943,0.020324,0.364916,0.860375,0.531066,0.184221,0.346674,0.277642,0.816726,0.717092,0.14924,0.886031,0.859319,0.881523,0.611501,0.232682,0.108134,0.304608,0.837975,0.285127,0.325288,0.306701,0.0383357,0.708746,0.025956,0.99033,0.527789,0.0913653,0.351585,0.07825,0.53966,0.338064,0.0718179,0.747333,0.727418,0.181958,0.736791,0.934873,0.449505,0.234633,0.741072,0.871654,0.0600966,0.582651,0.373656,0.25314,0.157142,0.455844,0.562568,0.330163,0.541636,0.68539,0.589627,0.0289965,0.401507,0.52755,0.326425,0.457112,0.8669,0.36245,0.0321863,0.906238,0.907648,0.258393,0.633322,0.45954,0.66698,0.118109,0.660658,0.00179744,0.444503,0.0462738,0.406227,0.0837362,0.148826,0.634243,0.734913,0.482944,0.815733,0.0181046,0.621952,0.140608,0.326334,0.0523927,0.575299,0.572834,0.493745,0.779981,0.136235,0.849904,0.163609,0.410283,0.71974,0.527445,0.251656,0.0220156,0.710771,0.476007,0.930916,0.0057658,0.843307,0.427603,0.729949,0.728186,0.738138,0.419262,0.547566,0.469904,0.150496,0.476438,0.754334,0.925419,0.0082826,0.986746,0.382489,0.764206,0.891773,0.18178,0.437695,0.99199,0.0468348,0.25516,0.104294,0.653402,0.749712,0.715159,0.318417,0.798505,0.037338,0.26095,0.899125,0.436084,0.1823,0.987666,0.600674,0.486092,0.0180936,0.592322,0.734503,0.259457,0.36235,0.563297,0.879059,0.571598,0.498245,0.608355,0.753807,0.651906,0.827228,0.431263,0.824856,0.808863,0.324741,0.140515,0.266109,0.854056,0.569489,0.910384,0.322672,0.815609,0.660019,0.411315,0.710629,0.964265,0.790124,0.131,0.101108,0.840737,0.540678,0.438847,0.238873,0.197371,0.264115,0.0297505,0.724249,0.879708,0.305112,0.427402,0.622019,0.450786,0.99674,0.417559,0.0325553,0.489152,0.924042,0.640117,0.85095,0.495754,0.531964,0.314528,0.958013,0.583821,0.400216,0.209574,0.982349,0.455766,0.447388,0.0493991,0.112384,0.452793,0.440626,0.186776,0.24993,0.68509,0.275003,0.791302,0.516421,0.259181,0.570685,0.589094,0.981589,0.238477,0.825893,0.602107,0.140781,0.229303,0.90248,0.256981,0.978109,0.321452,0.21999,0.420337,0.557171,0.596168,0.619277,0.814475,0.312951,0.642232,0.743849,0.0205923,0.5981,0.209352,0.450339,0.10878,0.0446218,0.416078,0.908239,0.694786,0.0692003,0.733709,0.154539,0.479547,0.769755,0.926201,0.313742,0.622366,0.281101,0.0662986,0.566448,0.482917,0.949908,0.544447,0.187469,0.0401195,0.373607,0.986792,0.915479,0.496538,0.816836,0.679943,0.686512,0.631071,0.931521,0.0447665,0.774049,0.481913,0.498435,0.0950905,0.4102,0.7433,0.558569,0.773125,0.450928,0.874443,0.745528,0.801037,0.513242,0.97888,0.891117,0.0166698,0.897743,0.384365,0.750358,0.265588,0.842005,0.658526,0.0132099,0.642161,0.114465,0.652234,0.735225,0.883499,0.401245,0.905979,0.766935,0.880991,0.368923,0.16145,0.947672,0.778684,0.710044,0.435194,0.239607,0.412524,0.420956,0.126456,0.958626,0.795372,0.576794,0.507391,0.90661,0.832537,0.581435,0.790763,0.138388,0.80067,0.615225,0.449867,0.665949,0.47439,0.965011,0.708462,0.00177532,0.902459,0.591367,0.105182,0.481872,0.997791,0.699722,0.852279,0.580471,0.0377028,0.706684,0.716998,0.941415,0.919485,0.304727,0.0471603,0.62848,0.686068,0.220781,0.915128,0.692349,0.857853,0.847777,0.269223,0.290556,0.188094,0.153457,0.618669,0.436193,0.0871872,0.224489,0.563355,0.146784,0.117926,0.854612,0.914267,0.74033,0.389816,0.770025,0.35885,0.566932,0.959338,0.837635,0.0177323,0.0199834,0.21437,0.356231,0.0701861,0.747893,0.554554,0.96276,0.681977,0.925481,0.797244,0.20415,0.118396,0.269573,0.903306,0.842157,0.954625,0.698752,0.645959,0.955978,0.114942,0.646024,0.256224,0.696612,0.506936,0.733365,0.428537,0.959065,0.0354427,0.773431,0.847415,0.114284,0.290057,0.875731,0.713316,0.502789,0.146607,0.743612,0.366299,0.532184,0.254748,0.339753,0.895342,0.937935,0.865565,0.262516,0.627224,0.993078,0.370075,0.466252,0.134527,0.751939,0.503054,0.31274,0.646987,0.589624,0.5342,0.443594,0.0571199,0.520938,0.256417,0.161453,0.551594,0.785444,0.73265,0.979631,0.940889,0.643694,0.420305,0.34233,0.531456,0.0374705,0.752379,0.925189,0.000972986,0.593307,0.0625094,0.361305,0.0630721,0.379918,0.603534,0.827476,0.450844,0.644609,0.876686,0.502411,0.816147,0.460818,0.994998,0.975595,0.133342,0.0380185,0.561779,0.393824,0.337475,0.911736,0.654573,0.151807,0.775633,0.521669,0.786828,0.452729,0.419845,0.724901,0.693083,0.324105,0.837297,0.993161,0.15952,0.965693,0.12839,0.568115,0.301574,0.780751,0.124043,0.270758,0.218576,0.261989,0.0758489,0.603966,0.614155,0.68009,0.0652575,0.109913,0.664046,0.443619,0.314046,0.566884,0.243137,0.506255,0.88586,0.702214,0.925377,0.70235,0.159276,0.350456,0.0186573,0.4484,0.273686,0.200748,0.471717,0.531587,0.402785,0.742168,0.413616,0.49429,0.200158,0.129001,0.82877,0.935076,0.402826,0.756455,0.36696,0.215167,0.136641,0.582105,0.763881,0.588981,0.0890781,0.807505,0.331412,0.071806,0.253989,0.607852,0.411259,0.17429,0.463896,0.411613,0.157143,0.727692,0.36812,0.275464,0.483321,0.678441,0.506812,0.370176,0.835789,0.411054,0.602578,0.776495,0.676389,0.595209,0.192493,0.623863,0.369054,0.714528,0.12056,0.564383,0.978747,0.481277,0.760671,0.942561,0.0891544,0.559579,0.0378145,0.62758,0.704319,0.786887,0.508879,0.428977,0.439474,0.212858,0.935175,0.743062,0.14961,0.0163428,0.333191,0.366848,0.558776,0.868814,0.702873,0.765195,0.695262,0.97416,0.644401,0.726738,0.157784,0.497639,0.99547,0.116228,0.391892,0.803342,0.0134921,0.677062,0.218287,0.431624,0.0768862,0.899941,0.529899,0.62371,0.165524,0.721619,0.381698,0.970101,0.611936,0.105166,0.0813805,0.657887,0.499752,0.87543,0.5638,0.561757,0.564197,0.128656,0.283071,0.382681,0.457103,0.212728,0.969759,0.891892,0.610442,0.0653211,0.472446,0.162463,0.153333,0.913645,0.0688115,0.397058,0.283933,0.551955,0.654245,0.51726,0.636063,0.492517,0.666106,0.698013,0.166017,0.970854,0.531078,0.458655,0.274875,0.174187,0.760636,0.540567,0.945813,0.908988,0.477205,0.555938,0.650806,0.649299,0.442477,0.481602,0.509807,0.109975,0.744094,0.564947,0.26559,0.939129,0.176863,0.37079,0.283,0.378672,0.902858,0.958642,0.802909,0.890959,0.429031,0.528846,0.829442,0.505058,0.576179,0.315211,0.0543722,0.581499,0.109902,0.349709,0.224651,0.0536712,0.633347,0.741778,0.790417,0.413418,0.917549,0.423065,0.634094,0.156853,0.225922,0.709869,0.405468,0.298204,0.307454,0.368771,0.707749,0.0931169,0.903002,0.897625,0.550107,0.921484,0.618251,0.0516884,0.15404,0.314929,0.279567,0.0394472,0.362509,0.294287,0.591777,0.332268,0.343657,0.317304,0.89307,0.128849,0.487879,0.824359,0.275175,0.280497,0.839762,0.871259,0.481313,0.968683,0.0165486,0.815343,0.814516,0.170329,0.120382,0.709043,0.232178,0.139212,0.0592239,0.534346,0.699656,0.43447,0.650096,0.595071,0.893375,0.141268,0.233107,0.816969,0.0170454,0.808422,0.438858,0.231183,0.562554,0.322097,0.550075,0.203046,0.955095,0.0463086,0.95435,0.565749,0.772562,0.54873,0.423685,0.966104,0.105927,0.21113,0.567674,0.204009,0.343876,0.683279,0.287242,0.717673,0.509769,0.38161,0.696473,0.169524,0.741863,0.480295,0.393284,0.403009,0.13993,0.724456,0.604988,0.980973,0.365276,0.908233,0.423178,0.242678,0.622941,0.0870662,0.0904925,0.704538,0.49697,0.191023,0.426771,0.233767,0.150546,0.0705292,0.338049,0.164257,0.690513,0.349849,0.360689,0.185028,0.487992,0.670232,0.537318,0.77421,0.964609,0.456457,0.691783,0.848566,0.0190334,0.917209,0.604686,0.40979,0.0360372,0.0680583,0.0709175,0.0608825,0.759183,0.172199,0.0285844,0.116498,0.179296,0.328486,0.505949,0.345108,0.196594,0.382689,0.612576,0.97748,0.910377,0.354645,0.995593,0.0624352,0.402878,0.847712,0.118056,0.927713,0.425192,0.220495,0.476363,0.752351,0.911285,0.705341,0.848275,0.723077,0.970427,0.607188,0.354979,0.0945491,0.0332281,0.332455,0.617719,0.114663,0.703065,0.668043,0.294392,0.201353,0.150306,0.709338,0.621262,0.277444,0.891591,0.753137,0.816574,0.478313,0.154257,0.272882,0.795753,0.187449,0.166951,0.194552,0.734941,0.538408,0.0337614,0.750271,0.118377,0.948327,0.751713,0.179772,0.158253,0.0319638,0.794802,0.203854,0.264005,0.686976,0.0539941,0.931922,0.00592673,0.245461,0.78165,0.558719,0.953373,0.513871,0.519715,0.0938631,0.215657,0.611613,0.416059,0.105751,0.997457,0.176972,0.367231,0.383498,0.0171719,0.798401,0.120779,0.920524,0.013253,0.773966,0.511664,0.694941,0.447627,0.204753,0.192097,0.161467,0.281591,0.80335,0.620353,0.556196,0.636991,0.340375,0.627515,0.386472,0.825875,0.269217,0.198726,0.266742,0.798268,0.203046,0.864475,0.00181466,0.757837,0.837333,0.644394,0.878258,0.175163,0.378417,|0.434202,0.668969,0.292119,0.852589,0.777351,0.963595,0.517947,0.827485,0.0257409,0.917864,0.382536,0.846479,0.958135,0.0865051,0.652586,0.557679,0.383314,0.46734,0.0296339,0.149625,0.688006,0.163335,0.527239,0.265965,0.497587,0.988827,0.621477,0.492206,0.332025,0.468988,0.253544,0.427549,0.822316,0.120828,0.227117,0.685646,0.318579,0.589602,0.0930015,0.735475,0.580884,0.0248323,0.843043,0.0940671,0.571978,0.994308,0.625253,0.812628,0.799737,0.136149,0.331456,0.33034,0.910755,0.580249,0.912826,0.897684,0.912272,0.93718,0.054605,0.155286,0.557781,0.695779,0.33064,0.615862,0.408931,0.907869,0.332524,0.411695,0.298202,0.946096,0.306871,0.180111,0.896934,0.854594,0.659312,0.157396,0.970383,0.186319,0.180957,0.282868,0.0692739,0.674589,0.932428,0.422037,0.0313234,0.309102,0.345325,0.528794,0.936507,0.377078,0.711451,0.0145549,0.0958754,0.534397,0.134684,0.880038,0.753561,0.452293,0.555032,0.666707,0.872742,0.638248,0.747289,0.327604,0.303211,0.6361,0.0440245,0.230762,0.223476,0.793632,0.737646,0.960155,0.800486,0.944786,0.483452,0.139024,0.727771,0.428933,0.0986102,0.599118,0.893301,0.464762,0.503096,0.0456765,0.785962,0.400701,0.933765,0.206627,0.467411,0.340889,0.323462,0.0718024,0.964213,0.645925,0.619528,0.703157,0.615447,0.88679,0.489762,0.639613,0.0527125,0.798857,0.855252,0.547092,0.328182,0.502146,0.29645,0.130398,0.656608,0.394706,0.190879,0.401744,0.903457,0.241801,0.92096,0.0426309,0.446969,0.60486,0.722785,0.962638,0.176713,0.54676,0.770059,0.524361,0.754449,0.673245,0.588208,0.77617,0.943034,0.703996,0.732217,0.791914,0.875142,0.200066,0.652349,0.65793,0.548971,0.814885,0.306381,0.674655,0.740337,0.524225,0.486179,0.466604,0.414026,0.101292,0.251271,0.497127,0.685502,0.333811,0.790865,0.0457154,0.0966263,0.144302,0.82594,0.474701,0.925833,0.169019,0.532197,0.16751,0.764368,0.202342,0.158938,0.497671,0.51235,0.134157,0.828893,0.411118,0.0813061,0.866309,0.506893,0.280816,0.186011,0.993008,0.754808,0.99084,0.374732,0.567886,0.968473,0.018478,0.128892,0.93229,0.681013,0.502532,0.937243,0.381606,0.376001,0.730809,0.364902,0.586568,0.85458,0.10903,0.809649,0.783658,0.89046,0.0100101,0.609857,0.359028,0.506801,0.850393,0.0595405,0.750174,0.878363,0.0118722,0.473489,0.75324,0.313881,0.23644,0.761634,0.680955,0.783406,0.104884,0.0296614,0.539515,0.0752819,0.879188,0.637999,0.464517,0.170783,0.225869,0.19059,0.660651,0.162473,0.631456,0.560408,0.152104,0.316592,0.347492,0.771987,0.613611,0.0802317,0.139992,0.76797,0.324455,0.580109,0.575687,0.325072,0.0596286,0.825435,0.042246,0.109541,0.776441,0.753899,0.26955,0.437407,0.524094,0.228707,0.522171,0.536939,0.104993,0.543206,0.0349965,0.0622242,0.442299,0.639835,0.366772,0.347888,0.546957,0.739611,0.104367,0.431407,0.163676,0.302487,0.0319765,0.521699,0.73583,0.386646,0.842891,0.608051,0.97653,0.0607814,0.0509756,0.00152087,0.769024,0.055641,0.759531,0.586158,0.470836,0.153686,0.0884049,0.556225,0.447192,0.00481284,0.744817,0.122843,0.164381,0.962236,0.759964,0.218038,0.871028,0.218628,0.362293,0.179065,0.12812,0.173461,0.127954,0.341878,0.572497,0.797289,0.461224,0.523658,0.675038,0.183558,0.877687,0.714179,0.832412,0.866342,0.914852,0.13021,0.177943,0.305929,0.515525,0.884053,0.422067,0.550674,0.774697,0.489682,0.163673,0.239559,0.762958,0.0899687,0.202374,0.330245,0.131555,0.370202,0.840294,0.965155,0.896983,0.984493,0.343031,0.137397,0.980965,0.971569,0.0906014,0.471843,0.602952,0.600613,0.00379896,0.165989,0.132457,0.947784,0.376847,0.176213,0.0327969,0.768633,0.680225,0.210563,0.272906,0.0711153,0.143141,0.354083,0.340956,0.537006,0.437026,0.478948,0.689827,0.0943322,0.805079,0.724722,0.0950938,0.611116,0.971982,0.341859,0.508428,0.107085,0.935496,0.200718,0.167839,0.612415,0.943619,0.0333316,0.340187,0.301063,0.678726,0.47603,0.308668,0.562516,0.131106,0.247095,0.825052,0.476185,0.921784,0.898414,0.67141,0.67343,0.0954297,0.654516,0.439364,0.591377,0.393761,0.879389,0.20223,0.499651,0.100324,0.979325,0.305315,0.249885,0.00198662,0.984098,0.669702,0.488383,0.107402,0.884068,0.840087,0.518799,0.139839,0.148938,0.547969,0.482994,0.318118,0.900456,0.794748,0.647002,0.012264,0.678023,0.629459,0.168285,0.301932,0.960468,0.561624,0.521825,0.718786,0.0672994,0.133547,0.354671,0.591688,0.0303011,0.593732,0.892653,0.503397,0.196716,0.218619,0.958702,0.0889927,0.755639,0.0270447,0.150665,0.998463,0.695882,0.640255,0.0712643,0.633769,0.579983,0.137905,0.993751,0.046158,0.0332707,0.390781,0.886814,0.135977,0.70614,0.137311,0.783847,0.757908,0.810087,0.413807,0.490102,0.799409,0.562363,0.432165,0.24717,0.690487,0.524837,0.132633,0.747477,0.010454,0.227058,0.707127,0.577032,0.102617,0.208507,0.303095,0.0281244,0.242099,0.310849,0.847736,0.861835,0.624438,0.634748,0.605937,0.0766397,0.893986,0.567621,0.0710766,0.0169731,0.810577,0.146502,0.967183,0.551459,0.293049,0.556114,0.454499,0.5884,0.127599,0.689984,0.561871,0.359981,0.986918,0.571457,0.0383454,0.789851,0.0671532,0.952843,0.369506,0.209705,0.85224,0.886701,0.838672,0.0608078,0.0711774,0.590417,0.531346,0.598967,0.213104,0.874389,0.348228,0.24781,0.200935,0.261107,0.901955,0.568183,0.825107,0.790585,0.934056,0.156446,0.266024,0.493419,0.977328,0.657539,0.926954,0.867986,0.232924,0.22199,0.371142,0.795669,0.680371,0.435975,0.985264,0.590921,0.896947,0.315214,0.492064,0.69331,0.405097,0.154928,0.777776,0.206588,0.872606,0.0852507,0.778947,0.533006,0.611344,0.345178,0.303723,0.880231,0.415423,0.096337,0.478612,0.567793,0.684121,0.177944,0.180396,0.269966,0.240342,0.490173,0.568641,0.434577,0.163496,0.031843,0.84436,0.00902754,0.202673,0.913724,0.904326,0.393833,0.778205,0.587926,0.158498,0.128322,0.517246,0.620175,0.346262,0.947403,0.639208,0.727899,0.720219,0.147756,0.64956,0.692958,0.231017,0.0327921,0.13786,0.419228,0.400991,0.650779,0.569673,0.410673,0.527294,0.444421,0.420256,0.194436,0.642854,0.174784,0.235042,0.278807,0.640589,0.308212,0.598918,0.15518,0.778218,0.192628,0.434717,0.559271,0.778681,0.474318,0.389881,0.174513,0.384577,0.92944,0.191645,0.834362,0.254062,0.776547,0.265708,0.691757,0.0193179,0.369231,0.878549,0.837646,0.81926,0.696819,0.790033,0.0671466,0.256897,0.91892,0.00958496,0.465236,0.174387,0.722597,0.548995,0.875506,0.703584,0.326841,0.763709,0.615464,0.893533,0.75176,0.0842861,0.184976,0.780952,0.96967,0.808972,0.55722,0.349721,0.826767,0.997903,0.835816,0.539403,0.355979,0.147452,0.4248,0.0765917,0.930366,0.0511097,0.215911,0.435458,0.734526,0.737247,0.0473064,0.628202,0.509,0.696788,0.604544,0.712866,0.0699102,0.797563,0.02051,0.811934,0.531173,0.716062,0.865407,0.0687404,0.398257,0.84031,0.0936351,0.559271,0.360117,0.924216,0.38785,0.608136,0.445496,0.128481,0.220451,0.60973,0.867088,0.580333,0.148531,0.662692,0.354956,0.691391,0.812387,0.221864,0.452258,0.288561,0.380052,0.667913,0.126685,0.899975,0.730914,0.555387,0.29556,0.216585,0.971506,0.938485,0.272807,0.209316,0.497213,0.375445,0.081772,0.70728,0.828799,0.450254,0.364296,0.365379,0.718364,0.379913,0.0615972,0.782823,0.59823,0.15619,0.184679,0.42826,0.301737,0.849855,0.694034,0.182341,0.883927,0.249185,0.678422,0.717552,0.509847,0.228351,0.31763,0.236068,0.93414,0.336965,0.524132,0.59395,0.50549,0.245597,0.832446,0.687772,0.21706,0.469453,0.903354,0.323808,0.397612,0.37084,0.791416,0.118901,0.19052,0.644186,0.915007,0.166686,0.305394,0.778557,0.585263,0.161338,0.421227,0.65274,0.788479,0.67373,0.866749,0.711333,0.889478,0.0315266,0.821019,0.212686,0.532106,0.211674,0.313585,0.0672376,0.613642,0.214612,0.491133,0.355563,0.803147,0.935416,0.194408,0.310883,0.909457,0.6445,0.411257,0.912908,0.0494926,0.539908,0.840579,0.273019,0.204747,0.348316,0.682227,0.955115,0.692198,0.547882,0.0848397,0.99611,0.312884,0.0524417,0.155879,0.290184,0.0112892,0.514258,0.984006,0.071197,0.926957,0.539321,0.094869,0.759018,0.150599,0.641208,0.44212,0.105758,0.114699,0.402218,0.978204,0.598819,0.612031,0.38288,0.903363,0.196159,0.0321184,0.293181,0.340917,0.774943,0.396209,0.644491,0.624477,0.399603,0.835842,0.0795674,0.34939,0.484334,0.0754731,0.035774,0.627237,0.586283,0.745451,0.284646,0.543484,0.635779,0.135675,0.470051,0.929225,0.873164,0.581397,0.0942459,0.903009,0.401381,0.771856,0.0265828,0.682326,0.215247,0.0564894,0.345107,0.631363,0.864924,0.802201,0.366486,0.35623,0.299641,0.212793,0.869168,0.947549,0.965046,0.310959,0.570169,0.159412,0.691728,0.628078,0.109028,0.130326,0.846622,0.839644,0.508986,0.40185,0.74754,0.850634,0.383633,0.742928,0.29554,0.0906687,0.91795,0.155999,0.860371,0.771388,0.47344,0.993267,0.439238,0.525214,0.40291,0.161644,0.614691,0.858777,0.637838,0.475984,0.285886,0.796495,0.110879,0.475619,0.31703,0.258213,0.518232,0.654035,0.341724,0.778683,0.98936,0.0485653,0.43995,0.526313,0.0323257,0.98077,0.384167,0.196595,0.362115,0.161101,0.690503,0.684041,0.933434,0.399846,0.434821,0.519544,0.243267,0.642035,0.50249,0.937924,0.333042,0.312871,0.600282,0.739379,0.243984,0.370576,0.441581,0.87055,0.794628,0.182162,0.734113,0.726018,0.316461,0.491428,0.801588,0.622726,0.442934,0.775539,0.400245,0.263294,0.0889211,0.0784109,0.552942,0.994234,0.996366,|0.906591,0.544513,0.264598,0.118358,0.422479,0.0639924,0.4413,0.672834,0.876195,0.962606,0.739658,0.861883,0.601182,0.916207,0.46121,0.0463688,0.433378,0.314295,0.997026,0.627723,0.173635,0.902699,0.463494,0.424448,0.0057795,0.965415,0.296,0.755628,0.552271,0.999005,0.613213,0.168238,0.636355,0.117173,0.812644,0.885051,0.436343,0.12019,0.311071,0.0520259,0.788562,0.712821,0.688488,0.448507,0.85009,0.539812,0.568482,0.230031,0.133055,0.619504,0.169053,0.809998,0.496006,0.642103,0.0976108,0.0800252,0.415236,0.8961,0.38252,0.564695,0.558078,0.109348,0.136964,0.107334,0.10887,0.414969,0.31579,0.988561,0.411329,0.241275,0.863952,0.209009,0.67481,0.178953,0.899082,0.465303,0.827621,0.609919,0.248292,0.957917,0.660091,0.602856,0.478262,0.317883,0.587354,0.967415,0.923781,0.711175,0.442394,0.972409,0.259677,0.370444,0.0684449,0.345878,0.186834,0.419279,0.0504091,0.57125,0.116544,0.430787,0.143024,0.925174,0.658701,0.291904,0.421568,0.399855,0.814702,0.433283,0.781993,0.0617666,0.879722,0.139287,0.56228,0.850164,0.708388,0.307322,0.840702,0.981367,0.816897,0.26038,0.46124,0.749694,0.0498367,0.37574,0.801523,0.893079,0.265129,0.53404,0.526777,0.618812,0.791889,0.152773,0.118067,0.760692,0.409475,0.276026,0.663752,0.218195,0.510749,0.900871,0.709933,0.0764369,0.939874,0.591286,0.379494,0.54705,0.342924,0.252252,0.767174,0.750313,0.10624,0.201089,0.128741,0.948305,0.498311,0.988999,0.765299,0.618836,0.77857,0.0648066,0.0129054,0.201789,0.302214,0.820019,0.705288,0.968798,0.796272,0.601714,0.462605,0.95805,0.579648,0.535285,0.0126854,0.00557315,0.0355027,0.939551,0.537309,0.235448,0.997503,0.498066,0.128386,0.78536,0.336666,0.744676,0.662539,0.356024,0.290721,0.0580797,0.0214451,0.513543,0.396878,0.251492,0.466539,0.294663,0.784689,0.154129,0.210328,0.203538,0.311607,0.7318,0.109564,0.798225,0.626963,0.835198,0.184948,0.393872,0.254364,0.978402,0.815982,0.584815,0.120332,0.112564,0.568325,0.34299,0.480684,0.416581,0.938115,0.108997,0.309061,0.857834,0.184709,0.61494,0.178825,0.832438,0.522165,0.57735,0.353086,0.187613,0.283415,0.300684,0.230052,0.337729,0.0603338,0.291388,0.453396,0.377366,0.034152,0.403974,0.636816,0.692115,0.406045,0.884215,0.619188,0.0471267,0.91984,0.284521,0.708228,0.754346,0.0609613,0.853432,0.476394,0.0709107,0.494107,0.76193,0.400867,0.379054,0.053022,0.463991,0.759906,0.264728,0.224432,0.00297195,0.471623,0.54483,0.831175,0.0782126,0.621576,0.298172,0.0456205,0.406128,0.105541,0.786584,0.822248,0.354447,0.0226377,0.103676,0.92537,0.347857,0.946297,0.230141,0.429803,0.719161,0.534866,0.0519282,0.780112,0.42761,0.42035,0.415073,0.0403854,0.889673,0.568461,0.819987,0.696847,0.572578,0.943997,0.897663,0.353419,0.125946,0.326231,0.596587,0.569118,0.0957794,0.77727,0.507527,0.350263,0.802612,0.870413,0.301586,0.385369,0.491662,0.200801,0.0834416,0.625515,0.107319,0.0606696,0.420133,0.389788,0.412912,0.300738,0.495419,0.992735,0.789669,0.558297,0.383827,0.00924021,0.298363,0.0991653,0.0454234,0.618975,0.904068,0.214514,0.134306,0.306435,0.493848,0.739364,0.655759,0.675931,0.631948,0.778378,0.771437,0.148679,0.356501,0.405293,0.484429,0.673643,0.700222,0.785349,0.154434,0.901242,0.49442,0.770576,0.155265,0.164941,0.435748,0.313413,0.672316,0.127244,0.0842883,0.328148,0.117672,0.543793,0.858319,0.921198,0.0672597,0.838633,0.428681,0.599995,0.83139,0.191924,0.832819,0.602522,0.249537,0.865486,0.15845,0.855658,0.379451,0.997154,0.540018,0.0593843,0.242608,0.5709,0.315188,0.41855,0.0324109,0.673408,0.446552,0.755196,0.95916,0.522898,0.586019,0.291341,0.383217,0.890275,0.514185,0.691803,0.821945,0.244659,0.323326,0.36795,0.371224,0.840183,0.346142,0.360603,0.917122,0.787531,0.838613,0.984746,0.0108019,0.557948,0.332879,0.0290748,0.00298089,0.955217,0.93271,0.213836,0.0705496,0.121429,0.367734,0.0818314,0.706712,0.799266,0.705245,0.288558,0.290501,0.268814,0.517058,0.856025,0.717314,0.819324,0.093156,0.141161,0.651551,0.669286,0.0801215,0.373312,0.73198,0.807175,0.0861953,0.198006,0.406421,0.769949,0.407962,0.218335,0.477075,0.0225364,0.0911899,0.41623,0.349813,0.710411,0.0643611,0.0461063,0.915553,0.0207456,0.112427,0.914696,0.982071,0.804885,0.439856,0.270432,0.0309546,0.00584793,0.408706,0.227848,0.127124,0.214947,0.942735,0.321958,0.707426,0.325112,0.493435,0.681014,0.0805863,0.570264,0.234751,0.0303389,0.460875,0.999981,0.0599206,0.872595,0.560772,0.774825,0.103794,0.473627,0.202278,0.638564,0.28622,0.885116,0.705793,0.0300036,0.265913,0.971213,0.192333,0.870958,0.310151,0.297042,0.939021,0.386246,0.747514,0.845786,0.849204,0.747916,0.274512,0.0370048,0.379478,0.749835,0.174039,0.598852,0.999289,0.974867,0.578577,0.0165509,0.357471,0.814498,0.755319,0.468926,0.844148,0.441607,0.80434,0.0633341,0.167943,0.958954,0.95652,0.236348,0.383294,0.689522,0.672796,0.816203,0.817449,0.894046,0.639706,0.650707,0.610938,0.393682,0.976387,0.747766,0.068917,0.621954,0.243432,0.25815,0.179129,0.477708,0.0528024,0.470599,0.765139,0.615562,0.904292,0.402926,0.00431085,0.394585,0.980154,0.420504,0.545725,0.776358,0.814784,0.234985,0.0810881,0.3681,0.165109,0.640906,0.526367,0.740038,0.906916,0.399354,0.771083,0.833905,0.30701,0.832369,0.748871,0.713418,0.781351,0.0983164,0.33592,0.721315,0.347956,0.240703,0.041473,0.258155,0.340165,0.764768,0.169113,0.352268,0.506908,0.073272,0.152284,0.945121,0.0843392,0.308661,0.868041,0.565951,0.976654,0.737026,0.25918,0.0906391,0.719852,0.824257,0.394199,0.937977,0.821067,0.543665,0.760688,0.198613,0.0693921,0.500675,0.252493,0.336765,0.224999,0.509019,0.408939,0.419197,0.785136,0.194064,0.684629,0.439425,0.980279,0.529928,0.0134817,0.866539,0.0161719,0.107858,0.522018,0.298733,0.985409,0.936716,0.0250828,0.65486,0.165354,0.847693,0.83481,0.612621,0.599862,0.766888,0.738897,0.217552,0.155943,0.100321,0.209112,0.572766,0.0140994,0.0986094,0.946218,0.306085,0.656127,0.772521,0.238937,0.561402,0.275747,0.734109,0.167992,0.505159,0.989254,0.346863,0.0549069,0.63651,0.487937,0.106116,0.733972,0.287317,0.4625,0.0274653,0.443981,0.764334,0.497442,0.843911,0.714322,0.306526,0.00919241,0.162643,0.00234914,0.638113,0.584568,0.584167,0.009247,0.999017,0.246732,0.687651,0.399437,0.398134,0.128622,0.0722034,0.470194,0.448198,0.548134,0.650295,0.568761,0.566086,0.91815,0.247745,0.837077,0.180064,0.627017,0.85319,0.557192,0.373334,0.603691,0.214837,0.576541,0.364919,0.0220331,0.175987,0.451643,0.0207459,0.923985,0.291251,0.601331,0.225361,0.311738,0.760617,0.5288,0.00519657,0.383761,0.449453,0.709945,0.370561,0.385767,0.577321,0.238787,0.88672,0.452073,0.542219,0.0288723,0.649735,0.487957,0.159763,0.154109,0.416032,0.513497,0.760248,0.841044,0.907172,0.0942489,0.0853265,0.457579,0.378757,0.626011,0.545323,0.489606,0.10068,0.407445,0.852514,0.588068,0.0818079,0.561493,0.209914,0.395346,0.881073,0.687156,0.124655,0.51294,0.33967,0.608577,0.426201,0.790456,0.263636,0.993997,0.937405,0.971235,0.0313009,0.0599945,0.435421,0.709496,0.595075,0.0537246,0.345642,0.0679052,0.255414,0.169839,0.464696,0.685325,0.812955,0.442898,0.979158,0.454839,0.422062,0.702788,0.964707,0.161445,0.774921,0.685865,0.0341579,0.937962,0.909353,0.0423719,0.616834,0.175551,0.238587,0.434938,0.612197,0.919514,0.693862,0.366078,0.38149,0.344153,0.4877,0.786487,0.5402,0.273688,0.646975,0.778741,0.673508,0.836362,0.821649,0.34913,0.0131661,0.0415949,0.748427,0.22053,0.436401,0.365407,0.451427,0.950348,0.152914,0.0700611,0.538148,0.886384,0.319378,0.610089,0.0216279,0.111609,0.487335,0.749671,0.327231,0.950575,0.723675,0.431082,0.158748,0.307683,0.133748,0.774909,0.977412,0.596464,0.515824,0.0689499,0.502828,0.324921,0.0786707,0.335614,0.755672,0.861597,0.406717,0.651807,0.856716,0.575924,0.835008,0.548518,0.320055,0.611663,0.740252,0.590236,0.219222,0.760383,0.43423,0.40172,0.902828,0.197384,0.816676,0.593561,0.191311,0.186411,0.494926,0.343856,0.922379,0.898056,0.437345,0.963918,0.936782,0.00277054,0.0166191,0.446156,0.72722,0.576707,0.20462,0.202366,0.453324,0.993112,0.747457,0.0754059,0.467665,0.42418,0.70041,0.984421,0.446908,0.839122,0.00547624,0.359042,0.676771,0.841435,0.104242,0.365671,0.505737,0.981482,0.311556,0.0219262,0.284431,0.0208703,0.804781,0.823717,0.000146866,0.957111,0.95864,0.251067,0.996991,0.581517,0.896583,0.36331,0.0829306,0.489927,0.302689,0.866801,0.407149,0.0994329,0.0663289,0.971734,0.508782,0.383747,0.531479,0.978713,0.556887,0.294736,0.727438,0.113788,0.855592,0.0316953,0.566297,0.944825,0.600203,0.794466,0.889621,0.339709,0.228122,0.497527,0.302933,0.279122,0.604304,0.775875,0.242607,0.607701,0.072776,0.0439067,0.977299,0.537143,0.616139,0.77714,0.367484,0.632365,0.599933,0.504077,0.414472,0.0126866,0.482514,0.622514,0.0209969,0.296788,0.399393,0.921271,0.191029,0.859792,0.817445,0.297359,0.178589,0.141837,0.574799,0.848366,0.65845,0.701215,0.24194,0.24913,0.0901105,0.382362,0.038345,0.396483,0.0394886,0.997655,0.501558,0.206243,0.652641,0.32835,0.00524193,0.054463,0.0951535,0.742895,0.589276,0.103485,0.821762,0.874041,0.0294277,0.15236,0.679347,0.405516,0.673634,0.954877,0.410558,0.909723,0.00026089,0.0294537,0.135689,0.572292,0.149896,0.350779,0.960581,0.230259,|0.405928,0.822946,0.933236,0.665746,0.680796,0.973021,0.632853,0.661692,0.126988,0.97071,0.63472,0.309843,0.268025,0.855804,0.290573,0.656325,0.0586092,0.901403,0.599387,0.164619,0.114603,0.199172,0.793536,0.703932,0.890673,0.764401,0.617054,0.511199,0.997367,0.41181,0.00334966,0.6324,0.372008,0.491294,0.776381,0.590813,0.67413,0.301339,0.998051,0.0952094,0.609007,0.194344,0.534298,0.320695,0.516615,0.327977,0.048017,0.132246,0.613094,0.606185,0.286025,0.130067,0.339589,0.244519,0.266334,0.433788,0.710296,0.980768,0.676277,0.437216,0.981677,0.712004,0.111963,0.586372,0.0125574,0.333196,0.566006,0.82673,0.616392,0.380339,0.518197,0.984788,0.859924,0.912332,0.501185,0.910395,0.92322,0.0760819,0.769062,0.494168,0.702192,0.474342,0.538759,0.23541,0.455292,0.00666714,0.687791,0.778354,0.841099,0.088465,0.183727,0.448665,0.827604,0.697773,0.672643,0.748312,0.880399,0.490092,0.775964,0.670921,0.538844,0.876776,0.253811,0.373887,0.82561,0.518734,0.784076,0.2508,0.630238,0.305085,0.894037,0.308545,0.58357,0.148034,0.890817,0.757463,0.392238,0.275491,0.116794,0.397754,0.494882,0.948989,0.223632,0.0875911,0.112935,0.928888,0.991463,0.828059,0.577853,0.597675,0.241732,0.0644371,0.606973,0.501671,0.510926,0.300332,0.0840285,0.0966675,0.708111,0.934477,0.169275,0.364392,0.565547,0.969964,0.774309,0.0238396,0.82813,0.239887,0.251062,0.90598,0.835358,0.917617,0.850652,0.518104,0.911676,0.885202,0.550031,0.280538,0.52484,0.561447,0.571063,0.596153,0.324603,0.780613,0.374827,0.838384,0.0160783,0.420125,0.790519,0.883261,0.525551,0.219299,0.824305,0.0528404,0.186896,0.166858,0.519459,0.9633,0.012871,0.385591,0.918948,0.215135,0.358006,0.519639,0.198486,0.107697,0.0435316,0.844502,0.618997,0.555828,0.770964,0.805941,0.0172864,0.174389,0.715947,0.570672,0.428694,0.398467,0.637734,0.167146,0.261368,0.216984,0.536128,0.092982,0.620797,0.349412,0.119607,0.455984,0.306859,0.409185,0.0245197,0.641334,0.158375,0.255032,0.123914,0.335722,0.789062,0.867389,0.203839,0.540912,0.645296,0.952146,0.147016,0.347087,0.798743,0.360933,0.956175,0.395018,0.0760161,0.471831,0.45418,0.00604987,0.899148,0.945805,0.584612,0.426629,0.816804,0.952711,0.419784,0.673534,0.727771,0.839553,0.529272,0.123685,0.268565,0.830161,0.833101,0.384756,0.726541,0.894372,0.363631,0.806682,0.864733,0.769019,0.528796,0.105345,0.270425,0.311596,0.276144,0.0285206,0.761488,0.118809,0.326518,0.267807,0.4456,0.70068,0.906103,0.580024,0.741624,0.573336,0.517537,0.694824,0.448558,0.1399,0.593274,0.0512669,0.596745,0.512465,0.335623,0.745994,0.0363212,0.477871,0.0614337,0.619979,0.609391,0.958269,0.0805607,0.993262,0.869131,0.411862,0.113838,0.80456,0.520856,0.361956,0.311038,0.915164,0.970735,0.667116,0.830438,0.256239,0.579288,0.259709,0.107426,0.4051,0.493372,0.735359,0.977621,0.663156,0.39618,0.31132,0.236684,0.56399,0.795609,0.65682,0.93965,0.456162,0.775414,0.172532,0.383965,0.101391,0.787582,0.937507,0.49888,0.407068,0.523864,0.143286,0.839466,0.756925,0.395375,0.0551861,0.703034,0.956146,0.962099,0.788879,0.448107,0.202068,0.333166,0.105246,0.743167,0.702574,0.645179,0.552925,0.0786115,0.459177,0.591792,0.314249,0.559861,0.49944,0.0401556,0.343062,0.340267,0.140667,0.963742,0.47327,0.0110973,0.300298,0.499534,0.423341,0.359203,0.232328,0.943921,0.552797,0.424513,0.276856,0.895597,0.44257,0.814522,0.742655,0.667429,0.783679,0.727782,0.75839,0.106948,0.628353,0.717464,0.29135,0.702692,0.731703,0.124543,0.884299,0.216956,0.782371,0.9607,0.632854,0.106117,0.755604,0.175108,0.931212,0.882524,0.351533,0.00439614,0.665754,0.70297,0.5323,0.0910494,0.0965268,0.120229,0.0633089,0.589661,0.208335,0.0569407,0.817905,0.0273193,0.022506,0.828031,0.92279,0.142436,0.98542,0.888142,0.285263,0.456171,0.384234,0.364692,0.0939055,0.0489206,0.314103,0.899492,0.901274,0.37035,0.813038,0.552234,0.756366,0.656722,0.126637,0.530917,0.395265,0.8014,0.177544,0.795945,0.509856,0.322897,0.695702,0.715226,0.719125,0.553158,0.0110375,0.336556,0.340069,0.796511,0.119842,0.739591,0.864749,0.864801,0.478545,0.570495,0.696683,0.870696,0.36197,0.470645,0.377898,0.814727,0.11616,0.782779,0.633762,0.844325,0.0373961,0.561083,0.250748,0.104938,0.656233,0.795673,0.481814,0.0179765,0.551475,0.459125,0.974578,0.855942,0.0448101,0.85452,0.375677,0.17872,0.857999,0.62994,0.767185,0.389156,0.635901,0.92864,0.86539,0.354115,0.335307,0.203171,0.587859,0.774594,0.562867,0.691357,0.609921,0.309978,0.14483,0.172143,0.542524,0.222815,0.804257,0.330115,0.569789,0.40552,0.851901,0.959094,0.551629,0.588701,0.707886,0.184013,0.177663,0.435307,0.631658,0.476282,0.23712,0.221307,0.778216,0.482468,0.158908,0.112424,0.0742505,0.795271,0.360067,0.0504279,0.758959,0.849134,0.647191,0.749414,0.826465,0.0106368,0.813246,0.722192,0.299172,0.543419,0.0738156,0.14654,0.0714168,0.101635,0.846514,0.532966,0.0580952,0.54005,0.504651,0.695882,0.777696,0.596512,0.0490669,0.515171,0.741034,0.693889,0.486263,0.708142,0.612529,0.500191,0.942955,0.129733,0.448792,0.695698,0.521846,0.00830287,0.477098,0.888167,0.56065,0.445462,0.394551,0.765858,0.0742832,0.521621,0.859281,0.446656,0.743619,0.00711036,0.254777,0.510181,0.20211,0.677955,0.0351925,0.769849,0.123755,0.0405529,0.0212544,0.244254,0.0118876,0.29969,0.38287,0.12532,0.403303,0.320187,0.498078,0.605016,0.281467,0.793586,0.618846,0.347169,0.926604,0.939159,0.553217,0.210988,0.811732,0.308648,0.231426,0.855437,0.37698,0.67502,0.599116,0.500599,0.736144,0.458748,0.907495,0.735025,0.712378,0.319912,0.858532,0.296706,0.0645831,0.269332,0.875886,0.0370957,0.686253,0.519551,0.571812,0.0812634,0.55585,0.13673,0.601554,0.439347,0.32544,0.363841,0.486749,0.725385,0.370675,0.874846,0.22412,0.799194,0.467578,0.175108,0.0663497,0.428287,0.347536,0.661767,0.261157,0.60281,0.689872,0.275467,0.271054,0.346743,0.17634,0.443948,0.0665284,0.244829,0.722618,0.349912,0.706948,0.276238,0.963616,0.119688,0.974755,0.653665,0.749301,0.0533673,0.17436,0.323759,0.65328,0.626382,0.0556362,0.626396,0.334163,0.303136,0.0665983,0.0703998,0.339538,0.777355,0.922595,0.162917,0.920491,0.587053,0.989071,0.158528,0.349615,0.343388,0.886591,0.909838,0.706958,0.565699,0.0885336,0.551412,0.451035,0.262627,0.420366,0.469268,0.112086,0.161227,0.309335,0.905398,0.255526,0.565561,0.220634,0.159167,0.87573,0.200973,0.575873,0.477649,0.17411,0.861632,0.675662,0.632835,0.395183,0.274132,0.117529,0.775599,0.843337,0.88779,0.525559,0.824017,0.871628,0.955137,0.749453,0.317301,0.152429,0.262714,0.973504,0.625915,0.279929,0.128117,0.643035,0.816379,0.502608,0.321985,0.777727,0.596146,0.406875,0.826038,0.33566,0.818751,0.815617,0.597224,0.355376,0.0984049,0.864683,0.648675,0.404015,0.0661639,0.966628,0.996718,0.630682,0.310141,0.205398,0.150683,0.785838,0.0117568,0.578659,0.395212,0.318034,0.978104,0.864747,0.319577,0.0217013,0.115561,0.26861,0.934555,0.527848,0.726342,0.225187,0.350118,0.273949,0.660571,0.750977,0.665537,0.896357,0.0383487,0.0405722,0.998311,0.338732,0.460635,0.976753,0.77272,0.688404,0.386734,0.575484,0.505933,0.17996,0.890337,0.199251,0.822094,0.974024,0.59342,0.280089,0.884083,0.628688,0.941592,0.188138,0.69333,0.336056,0.317866,0.225441,0.373275,0.860511,0.892545,0.316874,0.362609,0.0277915,0.0588166,0.994206,0.212991,0.938274,0.618161,0.156532,0.0611135,0.203274,0.740147,0.717498,0.00830835,0.253524,0.692791,0.706853,0.187727,0.815404,0.780644,0.143514,0.526252,0.916312,0.189347,0.571935,0.478748,0.15882,0.711982,0.600507,0.586762,0.206632,0.723314,0.770562,0.470886,0.280233,0.587488,0.699695,0.937197,0.175554,0.673611,0.443296,0.185571,0.443913,0.509125,0.742015,0.993006,0.895002,0.518466,0.161029,0.314432,0.382055,0.776584,0.731167,0.340089,0.305693,0.555185,0.471946,0.509742,0.425183,0.583085,0.231218,0.989016,0.996203,0.351829,0.0955765,0.735188,0.101249,0.290634,0.534117,0.733826,0.764303,0.0360122,0.897718,0.386104,0.576093,0.489086,0.964885,0.853569,0.648376,0.575053,0.732897,0.395279,0.493719,0.128405,0.373986,0.793962,0.395674,0.457512,0.578022,0.00910819,0.593983,0.994565,0.437517,0.632953,0.695523,0.589579,0.224159,0.160689,0.226605,0.649738,0.224246,0.354034,0.327216,0.260162,0.117362,0.587312,0.363594,0.30848,0.786955,0.973542,0.817818,0.843749,0.449389,0.15586,0.0807612,0.259896,0.286328,0.189367,0.030475,0.0438796,0.737667,0.792986,0.492598,0.347397,0.305118,0.374965,0.498545,0.833706,0.903816,0.961185,0.530894,0.329787,0.2515,0.760675,0.539704,0.99304,0.923056,0.22098,0.514956,0.256575,0.527975,0.865741,0.767177,0.759636,0.172681,0.385933,0.658099,0.783378,0.240806,0.485033,0.873575,0.906291,0.620974,0.393891,0.637664,0.811051,0.888614,0.615904,0.487679,0.342892,0.455039,0.872031,0.529444,0.334416,0.439435,0.176904,0.00710237,0.818455,0.160554,0.258422,0.0113965,0.771872,0.15684,0.883513,0.398661,0.909203,0.614443,0.135479,0.741522,0.980664,0.292752,0.661334,0.670493,0.367161,0.724229,0.937294,0.193562,0.783882,0.297142,0.683765,0.976339,0.380329,0.67462,0.628391,0.452281,0.386744,0.775425,0.126493,0.336185,0.307191,0.412919,0.364483,0.442463,0.175435,0.361415,0.873859,0.709171,0.0634931,0.383266,0.801709,0.227517,|0.870722,0.140698,0.016836,0.801758,0.41133,0.916978,0.202881,0.659133,0.705033,0.746085,0.40649,0.904527,0.956409,0.696617,0.731649,0.806352,0.793457,0.11797,0.362824,0.00618398,0.638254,0.377525,0.569746,0.11634,0.579948,0.83585,0.431678,0.473029,0.969334,0.179024,0.622755,0.584594,0.549446,0.988619,0.255206,0.378501,0.620298,0.441257,0.990078,0.740961,0.978327,0.874668,0.508954,0.959061,0.396655,0.910798,0.365575,0.874051,0.815421,0.39872,0.000178635,0.626506,0.925341,0.919317,0.757856,0.723973,0.960528,0.132225,0.525247,0.134856,0.758508,0.0082376,0.394199,0.559384,0.206284,0.151798,0.191091,0.935,0.718575,0.528384,0.22855,0.568307,0.661708,0.68371,0.169483,0.203234,0.345387,0.125648,0.59823,0.699138,0.759412,0.246921,0.787795,0.88687,0.516938,0.0364789,0.675666,0.166547,0.295818,0.614642,0.903542,0.616341,0.286799,0.477227,0.922489,0.690434,0.191077,0.100681,0.483637,0.0347461,0.703694,0.38837,0.155592,0.262086,0.446364,0.0422923,0.93619,0.618268,0.325161,0.437617,0.69103,0.0086174,0.659189,0.717415,0.039237,0.718341,0.407331,0.863402,0.855535,0.323366,0.425463,0.092122,0.0550383,0.408185,0.859504,0.0317675,0.882018,0.141582,0.1707,0.413275,0.431545,0.415699,0.440878,0.280074,0.57811,0.435216,0.788455,0.310765,0.107377,0.675048,0.0769628,0.700622,0.0158129,0.338408,0.741202,0.398652,0.359771,0.384453,0.294195,0.422423,0.681548,0.50589,0.603885,0.186432,0.858567,0.114731,0.566032,0.50517,0.218498,0.273485,0.91639,0.729732,0.337195,0.413187,0.9697,0.385876,0.86779,0.612589,0.254906,0.325511,0.243084,0.501179,0.516565,0.372489,0.0433842,0.489047,0.562851,0.961954,0.564805,0.670782,0.289927,0.080169,0.22345,0.44321,0.947903,0.412494,0.969944,0.521269,0.940438,0.533834,0.980741,0.719303,0.072337,0.617967,0.252499,0.859597,0.416205,0.7122,0.0199281,0.436554,0.768629,0.0526793,0.690173,0.61451,0.142424,0.479412,0.0680445,0.0240449,0.256042,0.184378,0.343412,0.266204,0.604783,0.56024,0.167851,0.472728,0.00500405,0.276333,0.82429,0.144876,0.693035,0.00220692,0.921454,0.165776,0.224693,0.280747,0.596581,0.211124,0.978536,0.0267701,0.488709,0.946006,0.62407,0.861146,0.917647,0.393265,0.687339,0.820091,0.130895,0.613827,0.719672,0.884506,0.294486,0.256321,0.307029,0.570947,0.705821,0.648145,0.221457,0.887597,0.568728,0.0223734,0.837481,0.75761,0.0290035,0.123593,0.553486,0.887416,0.734121,0.0523092,0.378963,0.391784,0.862497,0.951328,0.0921804,0.399082,0.255528,0.879651,0.0616899,0.0954185,0.57814,0.409859,0.456831,0.116628,0.951158,0.207318,0.621352,0.301874,0.468897,0.277022,0.191587,0.231625,0.135248,0.51265,0.414912,0.373849,0.12506,0.240555,0.517656,0.689598,0.716017,0.309238,0.587377,0.297938,0.432829,0.364984,0.741888,0.880646,0.863689,0.235558,0.275437,0.481794,0.441288,0.106629,0.00386542,0.0306427,0.273386,0.606637,0.901676,0.265347,0.4763,0.779083,0.93131,0.698826,0.468709,0.00930792,0.211748,0.0210297,0.918813,0.230193,0.759719,0.779417,0.371676,0.650476,0.0350876,0.657089,0.932545,0.582158,0.360134,0.30798,0.232896,0.300803,0.873535,0.0199547,0.397457,0.00589043,0.602098,0.564195,0.774016,0.697238,0.657429,0.989079,0.147306,0.188299,0.437072,0.563569,0.217571,0.540572,0.0900347,0.950124,0.0390948,0.833135,0.536687,0.201734,0.43389,0.0145406,0.829181,0.0638969,0.651066,0.171522,0.52741,0.181961,0.427866,0.339738,0.0874598,0.863249,0.433101,0.501206,0.722367,0.973656,0.25473,0.333209,0.912243,0.334224,0.426767,0.267766,0.148942,0.063014,0.646467,0.87188,0.558069,0.69159,0.932916,0.49174,0.920502,0.103755,0.901419,0.857443,0.745885,0.436478,0.138255,0.904315,0.0547018,0.0115994,0.00857103,0.542639,0.973314,0.513918,0.0381408,0.762377,0.620996,0.864431,0.150256,0.871085,0.263182,0.235541,0.0584359,0.787967,0.582634,0.851077,0.864659,0.798723,0.688863,0.786939,0.335951,0.474528,0.482734,0.21369,0.38297,0.406414,0.543814,0.731215,0.741715,0.69737,0.892294,0.767151,0.373018,0.28205,0.718721,0.672082,0.58777,0.425258,0.568095,0.656595,0.0315845,0.0979127,0.95385,0.61668,0.616719,0.730315,0.401014,0.575169,0.722581,0.983364,0.0355396,0.889229,0.713351,0.919973,0.67639,0.32771,0.172164,0.842461,0.00878811,0.136701,0.321478,0.194681,0.219375,0.409439,0.118541,0.396906,0.339069,0.814373,0.258422,0.366493,0.417798,0.955238,0.854417,0.812043,0.583345,0.777292,0.297776,0.383295,0.664584,0.456935,0.349921,0.830597,0.580981,0.280269,0.281519,0.802657,0.0880823,0.424098,0.665518,0.794316,0.778713,0.882136,0.892608,0.869669,0.827132,0.0839649,0.606491,0.0126451,0.951548,0.490538,0.0479406,0.562555,0.653806,0.025404,0.627466,0.740719,0.592929,0.231317,0.665174,0.965009,0.801197,0.40683,0.370874,0.784547,0.172786,0.716434,0.863353,0.772535,0.800418,0.325628,0.315154,0.0305344,0.80446,0.458458,0.483443,0.930083,0.135471,0.151367,0.0479591,0.64935,0.835896,0.118057,0.714487,0.837258,0.0262094,0.387195,0.648234,0.362123,0.524386,0.971744,0.183231,0.444905,0.472561,0.530721,0.954552,0.821251,0.783815,0.314458,0.26666,0.466931,0.647647,0.500249,0.9669,0.340305,0.0484241,0.875327,0.969836,0.732903,0.0701895,0.716139,0.58593,0.392079,0.718139,0.398033,0.731777,0.343192,0.716755,0.623886,0.284474,0.618757,0.0522817,0.24993,0.990631,0.646278,0.0587455,0.141175,0.26075,0.641428,0.51791,0.541045,0.460589,0.424801,0.831808,0.427597,0.613288,0.703874,0.319774,0.473525,0.666037,0.187642,0.757326,0.79027,0.423215,0.850193,0.242527,0.527689,0.749327,0.80827,0.753595,0.59588,0.590342,0.337373,0.137248,0.759731,0.747076,0.733247,0.628868,0.286974,0.171765,0.524417,0.551093,0.656391,0.124643,0.117634,0.608897,0.098552,0.880214,0.862813,0.114976,0.789425,0.343213,0.317922,0.170448,0.985517,0.241455,0.164166,0.675749,0.942894,0.652231,0.464721,0.931519,0.263402,0.136112,0.578726,0.644468,0.154151,0.209004,0.97901,0.0865623,0.811164,0.932404,0.370918,0.128507,0.506669,0.460542,0.796719,0.563717,0.703191,0.908939,0.93008,0.628632,0.0752248,0.720496,0.33509,0.840882,0.97873,0.230181,0.481586,0.383324,0.186331,0.740674,0.827803,0.159434,0.322079,0.335781,0.689737,0.287605,0.518741,0.376338,0.359326,0.63045,0.376332,0.00201327,0.872578,0.697501,0.640464,0.23973,0.0916499,0.379697,0.99418,0.212415,0.710136,0.540346,0.76636,0.212259,0.434909,0.472989,0.554044,0.372932,0.547748,0.463721,0.7269,0.612881,0.0691264,0.539007,0.346723,0.208443,0.283037,0.967894,0.462755,0.693742,0.984934,0.448527,0.0193424,0.11547,0.351064,0.0240206,0.54861,0.22491,0.511632,0.760999,0.259442,0.224779,0.0344952,0.0570795,0.776799,0.691323,0.512374,0.485835,0.355238,0.195746,0.142134,0.994154,0.341788,0.735156,0.375931,0.606984,0.319463,0.817818,0.00644332,0.509845,0.743855,0.701384,0.30097,0.72346,0.705631,0.577119,0.0520228,0.982727,0.992176,0.29678,0.239212,0.393349,0.21889,0.368433,0.308845,0.783328,0.126907,0.061944,0.35201,0.890727,0.363238,0.243748,0.477407,0.0969612,0.962163,0.287126,0.751249,0.605149,0.184086,0.868011,0.043488,0.0819535,0.964859,0.659822,0.559242,0.268202,0.925688,0.411413,0.706218,0.48234,0.233892,0.84692,0.237271,0.522851,0.877158,0.0236949,0.93994,0.421539,0.861949,0.119809,0.123993,0.9846,0.468766,0.223885,0.168694,0.163808,0.47554,0.0214955,0.0326891,0.899719,0.975351,0.231097,0.0955758,0.376796,0.15162,0.512386,0.287114,0.275982,0.0843821,0.163373,0.638923,0.696229,0.961088,0.96084,0.584634,0.38002,0.931067,0.416489,0.280039,0.739576,0.779467,0.167571,0.0910259,0.811287,0.562994,0.61933,0.970225,0.643748,0.14067,0.979802,0.381461,0.179002,0.718748,0.859687,0.057502,0.915178,0.185401,0.959082,0.581285,0.0298302,0.789122,0.758285,0.0447096,0.0305645,0.59885,0.649754,0.92245,0.453105,0.958872,0.774464,0.423859,0.921127,0.0608971,0.872609,0.370839,0.771727,0.849146,0.830784,0.34449,0.601352,0.727325,0.243564,0.149863,0.174113,0.340841,0.854483,0.891576,0.973812,0.701796,0.819331,0.440326,0.958758,0.15635,0.135067,0.585798,0.927497,0.77844,0.117225,0.29637,0.158881,0.833623,0.793152,0.385977,0.557258,0.379218,0.828623,0.296354,0.774172,0.78739,0.757427,0.331305,0.124002,0.802005,0.562778,0.738117,0.443831,0.340517,0.350905,0.252907,0.613275,0.802742,0.0463732,0.921314,0.974352,0.0534995,0.0329727,0.554314,0.705594,0.228498,0.175136,0.406846,0.550455,0.157759,0.782598,0.510682,0.887947,0.435353,0.907781,0.976436,0.0564335,0.945282,0.275879,0.184051,0.741433,0.75202,0.788565,0.426613,0.742056,0.00321764,0.557521,0.820791,0.348153,0.00734061,0.777522,0.666172,0.406889,0.437556,0.376182,0.366855,0.534492,0.115143,0.481863,0.259556,0.172084,0.0715519,0.0852087,0.950325,0.0784749,0.33909,0.278223,0.342843,0.884207,0.971679,0.886453,0.927027,0.510193,0.141423,0.278891,0.327379,0.25701,0.432751,0.042918,0.617099,0.406948,0.276203,0.763182,0.117261,0.0682008,0.485859,0.516561,0.867408,0.00797343,0.21547,0.590887,0.893948,0.171433,0.699834,0.549502,0.210383,0.52505,0.268047,0.516404,0.19643,0.324957,0.956562,0.373019,0.300163,0.899771,0.987829,0.040994,0.536043,0.663218,0.327028,0.910286,0.107109,0.888405,0.958728,0.613973,0.413495,0.0600251,0.354304,0.211554,0.526158,0.0119975,0.731361,0.138345,0.830935,0.427531,0.517824,0.5971,0.0634071,0.834234,0.551828,0.730896,0.0745456,|0.907509,0.155126,0.864592,0.81355,0.536185,0.319876,0.981682,0.581901,0.706841,0.618988,0.377935,0.269224,0.684603,0.364694,0.528904,0.903738,0.729271,0.216928,0.0418919,0.786135,0.153589,0.870363,0.424392,0.616319,0.344783,0.191302,0.727319,0.0529971,0.846965,0.879597,0.101477,0.163296,0.72454,0.290369,0.783652,0.617359,0.924372,0.767281,0.335685,0.533857,0.481898,0.828927,0.517606,0.969028,0.722046,0.380417,0.734967,0.978945,0.963875,0.689261,0.436801,0.936489,0.193613,0.321848,0.707424,0.412789,0.291556,0.039919,0.527559,0.983897,0.0434037,0.168562,0.634652,0.0569812,0.0800728,0.330225,0.436008,0.0280052,0.148441,0.00644511,0.186646,0.833172,0.289712,0.465482,0.466958,0.755933,0.337208,0.641904,0.412269,0.238962,0.194224,0.0847656,0.0634984,0.956034,0.515978,0.132961,0.01222,0.573835,0.180561,0.130254,0.704319,0.0914284,0.540516,0.922792,0.764276,0.0285403,0.646821,0.00399268,0.568588,0.635996,0.672637,0.950158,0.356736,0.732387,0.432384,0.369942,0.205445,0.806916,0.295401,0.459889,0.590444,0.851199,0.48127,0.404214,0.681009,0.259762,0.689931,0.249188,0.936163,0.654406,0.051796,0.911722,0.106566,0.059123,0.0717583,0.200666,0.704463,0.405797,0.482309,0.759746,0.0960199,0.983788,0.399211,0.755397,0.689301,0.0565407,0.98175,0.83536,0.0238867,0.839959,0.705226,0.925411,0.289209,0.436013,0.922929,0.558846,0.730611,0.4861,0.245725,0.432174,0.400826,0.959979,0.402336,0.00819659,0.749947,0.839237,0.671041,0.0887388,0.606987,0.99352,0.03899,0.587752,0.900943,0.644685,0.675994,0.881659,0.512794,0.633557,0.123589,0.968583,0.215079,0.231758,0.968262,0.525037,0.317267,0.420297,0.0460635,0.0937598,0.81049,0.730821,0.895187,0.245077,0.547911,0.0144911,0.255565,0.723778,0.325094,0.350986,0.360519,0.0368525,0.200858,0.575739,0.772618,0.577179,0.0481709,0.756266,0.0588854,0.433922,0.380507,0.442637,0.797252,0.877578,0.881478,0.878022,0.32333,0.00928402,0.61079,0.496775,0.914357,0.838633,0.600186,0.763924,0.147896,0.475677,0.902533,0.867098,0.0452914,0.232438,0.894778,0.146123,0.666321,0.804045,0.812007,0.110015,0.313207,0.546772,0.951903,0.97795,0.45031,0.0195885,0.0905938,0.648749,0.833717,0.810866,0.363906,0.46855,0.606361,0.257926,0.948822,0.47145,0.827834,0.906346,0.533369,0.709776,0.255838,0.451045,0.629735,0.571876,0.546308,0.17004,0.52788,0.549608,0.877918,0.781066,0.541788,0.928994,0.147372,0.561104,0.362106,0.614048,0.0949041,0.499306,0.349437,0.226445,0.871699,0.520021,0.211721,0.40764,0.588219,0.637612,0.627218,0.854507,0.813565,0.372039,0.264306,0.127275,0.66024,0.926534,0.545793,0.112744,0.614581,0.335371,0.0698281,0.221741,0.687349,0.792928,0.0128894,0.0614608,0.486288,0.354857,0.766646,0.0911444,0.557452,0.398481,0.247382,0.997693,0.455967,0.847517,0.979504,0.450709,0.867674,0.909823,0.759362,0.269738,0.194946,0.119993,0.085242,0.870458,0.340604,0.103051,0.483722,0.35194,0.722068,0.0220369,0.91466,0.578634,0.597937,0.837447,0.0963936,0.00195307,0.899002,0.391734,0.389968,0.101536,0.720392,0.497854,0.116942,0.241693,0.759487,0.064446,0.545793,0.118467,0.319561,0.184842,0.608912,0.148726,0.902303,0.676545,0.837661,0.210498,0.130068,0.315973,0.484357,0.375781,0.70189,0.251496,0.111615,0.396332,0.155746,0.277876,0.977814,0.656019,0.617354,0.0679003,0.427665,0.178228,0.735676,0.530474,0.818002,0.457385,0.506301,0.17253,0.79594,0.390179,0.682649,0.460646,0.71355,0.411077,0.294095,0.824751,0.633914,0.263956,0.179727,0.636288,0.246764,0.44101,0.783537,0.197139,0.92103,0.526853,0.330865,0.340474,0.230242,0.498439,0.324124,0.306904,0.507874,0.361186,0.689494,0.604021,0.922664,0.237728,0.246677,0.134823,0.295989,0.41709,0.806519,0.726214,0.616309,0.237597,0.554616,0.626089,0.771189,0.32941,0.749148,0.255748,0.544778,0.414979,0.33349,0.0391121,0.758273,0.159422,0.920572,0.795253,0.831067,0.438341,0.956336,0.587795,0.112599,0.901008,0.0319353,0.366917,0.666379,0.168645,0.349844,0.0357144,0.963049,0.514724,0.734869,0.688559,0.936393,0.213853,0.634507,0.340264,0.430886,0.902806,0.242301,0.957525,0.965782,0.225943,0.0649676,0.891466,0.450276,0.191919,0.475221,0.565198,0.875792,0.502563,0.602274,0.170549,0.837332,0.103002,0.935237,0.142373,0.922452,0.569256,0.670879,0.550231,0.807423,0.783817,0.539677,0.233549,0.438852,0.162629,0.168931,0.588864,0.910246,0.869372,0.666096,0.852046,0.731011,0.407257,0.150677,0.0967868,0.627556,0.56246,0.218152,0.153741,0.241961,0.812204,0.332988,0.399362,0.771306,0.383938,0.100263,0.690174,0.0227044,0.828835,0.692064,0.0139672,0.377797,0.24738,0.398504,0.556483,0.0407646,0.220193,0.513339,0.247587,0.50324,0.0923257,0.13374,0.247457,0.256815,0.814981,0.229436,0.277261,0.0848174,0.756976,0.0979866,0.454285,0.0890282,0.556931,0.152082,0.714626,0.841588,0.143817,0.457633,0.459665,0.0262644,0.00354123,0.278136,0.913406,0.751462,0.948422,0.362677,0.566506,0.572495,0.329229,0.494241,0.558371,0.900925,0.295347,0.0187379,0.0513668,0.84927,0.356182,0.149429,0.0155318,0.79609,0.461299,0.148372,0.381214,0.32,0.231359,0.716083,0.402617,0.384927,0.276346,0.733044,0.195342,0.379385,0.600303,0.719798,0.624535,0.102444,0.98088,0.302867,0.869565,0.880201,0.0513818,0.788888,0.294722,0.921521,0.750795,0.169999,0.313641,0.181587,0.095282,0.260694,0.668274,0.123156,0.210943,0.399135,0.298946,0.0717676,0.175044,0.0235072,0.994636,0.187199,0.383952,0.280816,0.921057,0.323674,0.198807,0.342315,0.426659,0.814083,0.372293,0.878267,0.871597,0.864743,0.218502,0.653754,0.78237,0.842593,0.814662,0.378675,0.485824,0.800762,0.300823,0.334602,0.608608,0.703116,0.816119,0.290304,0.346072,0.71518,0.589708,0.0708787,0.381003,0.80609,0.575107,0.78966,0.120345,0.648582,0.532118,0.916258,0.617438,0.249257,0.444199,0.286948,0.836735,0.865663,0.0622771,0.435686,0.185041,0.139305,0.0857881,0.480414,0.108667,0.0245991,0.952753,0.975564,0.229764,0.441986,0.761475,0.661297,0.962662,0.237001,0.808804,0.966044,0.683735,0.335371,0.841945,0.875418,0.772933,0.411931,0.670436,0.595324,0.0162036,0.157711,0.630445,0.263126,0.0943118,0.517172,0.550673,0.349931,0.975852,0.269139,0.0166344,0.580375,0.813926,0.343733,0.240281,0.960535,0.886783,0.905393,0.264743,0.139437,0.254311,0.286697,0.40253,0.195399,0.886319,0.567434,0.0560208,0.867183,0.73681,0.0934585,0.285034,0.384019,0.95935,0.17566,0.573588,0.548452,0.248648,0.333242,0.528974,0.223475,0.00542206,0.0866667,0.884431,0.295602,0.656402,0.367714,0.172976,0.200306,0.200783,0.582318,0.718749,0.336192,0.89653,0.126864,0.878039,0.357983,0.0936689,0.330952,0.01142,0.950336,0.914289,0.919478,0.107001,0.0763797,0.00860131,0.638578,0.49076,0.738037,0.955139,0.100167,0.0106486,0.118147,0.456919,0.908987,0.357213,0.563399,0.0215419,0.754376,0.620809,0.559509,0.75014,0.449821,0.294163,0.70954,0.958049,0.890203,0.282853,0.726138,0.286653,0.447621,0.712369,0.18887,0.699867,0.269853,0.365716,0.0802655,0.291246,0.213245,0.117432,0.0847974,0.878942,0.293951,0.978846,0.892974,0.712126,0.549382,0.147442,0.764813,0.709497,0.827586,0.55698,0.303802,0.796468,0.0792246,0.698102,0.545366,0.314043,0.215036,0.107729,0.411067,0.703135,0.0800751,0.135562,0.796619,0.187355,0.172568,0.361322,0.621674,0.136133,0.599641,0.198751,0.879136,0.908804,0.359877,0.306663,0.502366,0.291505,0.430167,0.292924,0.662202,0.229566,0.913123,0.646085,0.514238,0.154145,0.349526,0.820916,0.601225,0.430569,0.581854,0.886614,0.915478,0.104636,0.880091,0.421688,0.620191,0.397669,0.466746,0.368895,0.0999047,0.504298,0.334878,0.365511,0.479673,0.415132,0.902528,0.945151,0.304358,0.379819,0.391636,0.290613,0.628116,0.809131,0.271586,0.834189,0.175622,0.17061,0.831165,0.672702,0.433628,0.998064,0.527776,0.749634,0.307018,0.325986,0.313648,0.572233,0.701379,0.439589,0.659279,0.789412,0.676438,0.687338,0.640416,0.552725,0.184068,0.421957,0.592854,0.195489,0.0962483,0.190533,0.861745,0.816732,0.137506,0.778425,0.361007,0.625091,0.0919629,0.0499778,0.831559,0.0229808,0.227619,0.099718,0.976202,0.408825,0.508097,0.300724,0.978398,0.573095,0.909781,0.0593684,0.942752,0.142441,0.36878,0.0709631,0.579931,0.374251,0.960859,0.156831,0.394877,0.705503,0.809452,0.64894,0.564829,0.264142,0.4173,0.0722429,0.780958,0.52896,0.505184,0.0443785,0.221002,0.548416,0.796632,0.8747,0.895322,0.499522,0.663371,0.550623,0.426266,0.418282,0.510135,0.45121,0.977534,0.616194,0.588357,0.320895,0.836175,0.545324,0.863509,0.810129,0.908837,0.352447,0.0813944,0.984763,0.735682,0.417565,0.15535,0.159451,0.272714,0.364433,0.0236263,0.428059,0.716888,0.613115,0.707891,0.358922,0.86964,0.770376,0.119828,0.260198,0.0323867,0.341092,0.80878,0.225195,0.919799,0.596189,0.802411,0.323536,0.855836,0.0239161,0.119222,0.780667,0.431432,0.261333,0.147027,0.191217,0.221056,0.00386518,0.288205,0.985231,0.683263,0.934063,0.26216,0.86027,0.257623,0.941634,0.358721,0.977088,0.880366,0.639917,0.597485,0.9286,0.488695,0.955437,0.714434,0.334013,0.362873,0.953858,0.805567,0.216422,0.309719,0.456873,0.663202,0.549508,0.638674,0.939405,0.695117,0.766028,0.59006,0.868361,0.421519,0.405588,0.0100359,0.953343,0.328666,0.392132,0.314137,0.568119,0.510785,0.873323,0.167588,0.854841,0.464765,0.993171,0.0847429,0.473084,0.315099,0.250015,0.10392,0.956721,|0.386175,0.455902,0.113847,0.727268,0.936902,0.724179,0.396735,0.019086,0.107381,0.757532,0.216444,0.0718117,0.303287,0.0754309,0.949394,0.0301129,0.392713,0.573212,0.762635,0.886734,0.712285,0.238822,0.671024,0.488894,0.823905,0.408245,0.733083,0.150175,0.667789,0.757112,0.658103,0.75697,0.592795,0.164742,0.520069,0.438151,0.362425,0.217692,0.882619,0.185017,0.637094,0.381188,0.270324,0.84487,0.85499,0.587646,0.714537,0.36507,0.934032,0.359619,0.439496,0.961609,0.923824,0.847208,0.790508,0.308016,0.830129,0.902807,0.966447,0.568063,0.210239,0.278192,0.555726,0.686486,0.200916,0.830481,0.0786626,0.557026,0.205405,0.948689,0.509533,0.453968,0.532917,0.605646,0.713553,0.845078,0.895138,0.162853,0.705923,0.111815,0.980519,0.929668,0.418155,0.618788,0.684309,0.316941,0.835803,0.176387,0.411186,0.295399,0.944998,0.327616,0.679407,0.78553,0.84168,0.119887,0.599914,0.863892,0.741747,0.338006,0.143308,0.230511,0.286597,0.787203,0.44634,0.580739,0.791995,0.17008,0.300629,0.413773,0.611355,0.853857,0.581678,0.91944,0.233521,0.71838,0.322617,0.840806,0.832758,0.96853,0.202033,0.192888,0.757458,0.76574,0.537221,0.372701,0.410191,0.0752311,0.735294,0.865528,0.303586,0.517163,0.117855,0.388763,0.362168,0.887385,0.169802,0.927884,0.0997088,0.173561,0.638422,0.650287,0.734016,0.917293,0.322812,0.460409,0.918845,0.65484,0.0582366,0.0987199,0.895485,0.368027,0.441327,0.0701296,0.506001,0.22235,0.0428269,0.215289,0.579533,0.955956,0.865436,0.811868,0.0638675,0.574372,0.841325,0.954449,0.287815,0.30522,0.682569,0.730277,0.537453,0.938757,0.214533,0.00386059,0.509519,0.305824,0.372921,0.804113,0.737364,0.991552,0.703853,0.594616,0.194517,0.521861,0.017474,0.65953,0.586682,0.695107,0.83282,0.900532,0.588125,0.987992,0.248981,0.687895,0.00433791,0.00287175,0.122065,0.837454,0.823451,0.155049,0.998743,0.780731,0.485179,0.606052,0.382009,0.789825,0.766037,0.552286,0.827457,0.332477,0.091782,0.325485,0.47034,0.515161,0.902341,0.900859,0.972191,0.309503,0.722545,0.391776,0.57814,0.757765,0.469544,0.128188,0.802743,0.483988,0.389837,0.0736866,0.530537,0.0511839,0.320056,0.897513,0.38802,0.6869,0.222909,0.967277,0.258124,0.0363309,0.681298,0.706986,0.377487,0.572068,0.353386,0.0690897,0.446817,0.99833,0.0721292,0.444054,0.374355,0.204536,0.653828,0.0874938,0.564395,0.164466,0.551457,0.556707,0.917911,0.180531,0.344948,0.0170762,0.412674,0.19147,0.860121,0.689141,0.958335,0.496497,0.675516,0.105435,0.711356,0.570526,0.293626,0.263621,0.878791,0.863598,0.983088,0.884613,0.570782,0.946807,0.123084,0.254635,0.0291319,0.79727,0.953438,0.608041,0.201316,0.127568,0.401466,0.88451,0.733837,0.0674706,0.090326,0.388182,0.678475,0.662669,0.943642,0.300769,0.775633,0.577132,0.485692,0.0330563,0.395788,0.0394843,0.00891745,0.0895655,0.289998,0.255664,0.617808,0.779562,0.503566,0.247494,0.560478,0.184726,0.309112,0.1289,0.871677,0.882569,0.353203,0.719753,0.745331,0.8072,0.888717,0.587442,0.164151,0.334527,0.557713,0.972185,0.75961,0.323338,0.379244,0.399895,0.445649,0.812224,0.876378,0.961599,0.156095,0.383676,0.84993,0.273977,0.709189,0.412805,0.420913,0.691097,0.854731,0.0697417,0.114048,0.580121,0.759315,0.853789,0.94537,0.513402,0.608383,0.669071,0.752963,0.974185,0.160476,0.91544,0.335578,0.739524,0.0712151,0.178596,0.617568,0.81285,0.831417,0.524289,0.861152,0.320271,0.913717,0.978428,0.454931,0.346754,0.785058,0.955339,0.603396,0.147974,0.397252,0.768374,0.402025,0.60251,0.465548,0.00651109,0.725035,0.972408,0.821367,0.535116,0.690235,0.6482,0.781418,0.556618,0.268031,0.343969,0.836873,0.448698,0.695243,0.666923,0.134522,0.646613,0.519219,0.660742,0.579312,0.790527,0.782509,0.371309,0.847137,0.703094,0.770531,0.844834,0.0460865,0.00472862,0.586534,0.246888,0.659761,0.841468,0.855519,0.0231206,0.800482,0.639528,0.751032,0.352854,0.896356,0.00378549,0.355552,0.969418,0.33026,0.566094,0.723414,0.384611,0.602469,0.896523,0.144361,0.728505,0.508798,0.977774,0.967638,0.871197,0.0984223,0.410625,0.264774,0.954883,0.493103,0.843798,0.981025,0.887427,0.19131,0.444077,0.496708,0.50863,0.0284081,0.36572,0.85919,0.0413727,0.971482,0.857976,0.446488,0.558843,0.417019,0.734521,0.230611,0.571374,0.478088,0.788383,0.931187,0.597042,0.905873,0.864208,0.657099,0.118067,0.680544,0.324352,0.100854,0.46889,0.217535,0.17769,0.664475,0.829359,0.78962,0.106921,0.268975,0.394208,0.960224,0.663241,0.892852,0.983575,0.237533,0.0611688,0.821601,0.442554,0.287409,0.0435068,0.302451,0.497548,0.736515,0.58948,0.295827,0.899716,0.537622,0.841352,0.862886,0.308304,0.411737,0.552362,0.875592,0.586551,0.844187,0.135551,0.502118,0.608572,0.0956591,0.927064,0.16186,0.360262,0.12188,0.33755,0.726392,0.338971,0.422446,0.440942,0.66202,0.73227,0.598532,0.248416,0.509524,0.365889,0.559347,0.345903,0.533189,0.649123,0.385987,0.406625,0.340113,0.972818,0.471633,0.623798,0.0567634,0.566691,0.359542,0.69033,0.567845,0.491229,0.79551,0.319651,0.940215,0.504083,0.523242,0.14963,0.222273,0.558797,0.164532,0.711424,0.494575,0.7272,0.251841,0.323353,0.0658417,0.44355,0.942079,0.244436,0.0946586,0.644024,0.704004,0.929519,0.241131,0.385235,0.0451381,0.477786,0.483823,0.666895,0.373083,0.238962,0.452898,0.823966,0.754222,0.762324,0.253351,0.227185,0.802945,0.0879408,0.107289,0.685998,0.605894,0.497556,0.694217,0.590384,0.91129,0.675316,0.14104,0.664971,0.362083,0.943735,0.589457,0.271757,0.19027,0.131949,0.668277,0.204604,0.849751,0.611195,0.242633,0.451351,0.0860696,0.925769,0.630308,0.706951,0.620536,0.702301,0.401359,0.791078,0.622301,0.500373,0.655982,0.656788,0.97578,0.754218,0.368411,0.22255,0.925095,0.20731,0.838531,0.84241,0.834048,0.893153,0.249192,0.418015,0.863169,0.836786,0.746334,0.995576,0.440828,0.773229,0.235736,0.642135,0.359729,0.223163,0.535882,0.51123,0.114132,0.804679,0.962414,0.794056,0.887269,0.462979,0.457758,0.215344,0.628019,0.142117,0.220265,0.804989,0.0499608,0.166379,0.255304,0.759369,0.314664,0.0535218,0.167676,0.499077,0.370444,0.0479044,0.355902,0.829762,0.266894,0.0303299,0.52243,0.928007,0.723141,0.197131,0.287371,0.408283,0.528881,0.824869,0.0579534,0.880847,0.238481,0.178856,0.914629,0.53227,0.0432945,0.810834,0.949931,0.639928,0.66303,0.0315672,0.148225,0.522824,0.295794,0.419942,0.0819243,0.82991,0.543131,0.594351,0.401098,0.614762,0.186044,0.55103,0.829898,0.959974,0.648756,0.920054,0.205063,0.770559,0.0828118,0.367699,0.482556,0.708632,0.164714,0.949228,0.832934,0.47041,0.65324,0.9342,0.344725,0.440583,0.116811,0.802844,0.131145,0.305479,0.366079,0.620312,0.726088,0.424864,0.34727,0.274974,0.359461,0.105118,0.446238,0.926143,0.448859,0.344348,0.397956,0.26801,0.673994,0.0398596,0.493304,0.45862,0.410471,0.991451,0.257664,0.593116,0.936968,0.961417,0.395882,0.321455,0.207588,0.8097,0.114533,0.167772,0.0249129,0.267412,0.677558,0.341667,0.737977,0.369888,0.495009,0.225959,0.312528,0.329879,0.205849,0.408412,0.954754,0.240592,0.990709,0.13923,0.0898442,0.761407,0.655437,0.865482,0.44473,0.28518,0.90504,0.935954,0.253042,0.810158,0.0846046,0.792569,0.334896,0.375068,0.18564,0.941046,0.377559,0.967401,0.0756976,0.584637,0.544593,0.329619,0.795093,0.914148,0.16368,0.420413,0.32105,0.409532,0.350601,0.442139,0.00465834,0.130084,0.792531,0.907145,0.212493,0.166358,0.496539,0.153721,0.968975,0.43773,0.0492757,0.405718,0.465806,0.740351,0.0272081,0.343824,0.94965,0.503166,0.227736,0.533424,0.232513,0.855388,0.128779,0.702193,0.53799,0.497619,0.830161,0.269586,0.952909,0.683049,0.879588,0.322954,0.745802,0.540568,0.226888,0.158273,0.839578,0.611958,0.591117,0.527467,0.236675,0.332751,0.619304,0.380688,0.311817,0.080236,0.465094,0.116861,0.775793,0.799145,0.249706,0.0461298,0.302573,0.362415,0.870386,0.73305,0.0293663,0.680925,0.360347,0.493688,0.353383,0.269756,0.710208,0.855398,0.0681736,0.819969,0.0950775,0.87714,0.380907,0.708141,0.873852,0.974203,0.4047,0.984208,0.609415,0.385946,0.417159,0.35902,0.465687,0.557714,0.110473,0.350676,0.01676,0.43844,0.555642,0.506389,0.670982,0.206828,0.738683,0.325959,0.597829,0.0294598,0.153745,0.657999,0.540454,0.500946,0.323275,0.866691,0.180023,0.984277,0.658434,0.959551,0.869702,0.638233,0.831966,0.327991,0.793063,0.511653,0.55175,0.62437,0.653933,0.117451,0.106412,0.387939,0.398393,0.944239,0.890534,0.0759058,0.443645,0.0158133,0.379938,0.396803,0.369054,0.268619,0.422122,0.963678,0.636055,0.755516,0.728303,0.982487,0.152915,0.839417,0.560018,0.595822,0.743779,0.645048,0.544515,0.366545,0.32335,0.440628,0.402858,0.837475,0.3918,0.239034,0.881315,0.682999,0.26538,0.184671,0.076237,0.770135,0.661124,0.463176,0.493794,0.348496,0.0208479,0.850114,0.793001,0.65399,0.181608,0.0135413,0.828287,0.125986,0.21737,0.408406,0.444337,0.789224,0.816189,0.797981,0.0157612,0.880709,0.825543,0.396542,0.917232,0.0441158,0.936404,0.520976,0.505114,0.738906,0.0787578,0.831983,0.0225534,0.218391,0.828107,0.200959,0.256385,0.178154,0.689892,0.683497,0.254224,0.829079,0.037177,0.0969132,0.876499,0.853239,0.858904,0.848549,0.564027,0.0306765,0.37796,0.682309,0.478095,0.167971,0.988264,0.154267,0.67344,0.919503,0.146256,0.588052,0.401701,0.745747,|0.422724,0.998299,0.311099,0.915672,0.269571,0.63703,0.461752,0.428323,0.864436,0.523545,0.0119709,0.362578,0.296993,0.0405148,0.363929,0.756702,0.536792,0.427655,0.208841,0.0919121,0.518884,0.632401,0.334264,0.994715,0.478852,0.593515,0.848591,0.98579,0.722894,0.0124397,0.781706,0.163248,0.377381,0.166862,0.359146,0.32148,0.38979,0.483911,0.167935,0.873379,0.403838,0.0470513,0.857019,0.216271,0.313159,0.730689,0.775568,0.186823,0.886209,0.834468,0.404539,0.954439,0.0917568,0.123575,0.786856,0.479791,0.616365,0.559925,0.169146,0.068125,0.0191503,0.893425,0.449367,0.318321,0.0725963,0.212734,0.960843,0.770242,0.294157,0.621597,0.792316,0.400154,0.0857719,0.433743,0.851412,0.940465,0.019406,0.0482584,0.613737,0.204915,0.210671,0.588708,0.883632,0.24274,0.891512,0.0179106,0.31123,0.563408,0.0223617,0.553097,0.46116,0.14995,0.274619,0.116176,0.456129,0.0992197,0.204586,0.30547,0.971466,0.570997,0.761965,0.128853,0.646936,0.791134,0.590923,0.763596,0.761868,0.883705,0.221864,0.896859,0.188716,0.482317,0.957444,0.600389,0.963081,0.169875,0.0863557,0.281859,0.762276,0.424474,0.905869,0.997406,0.596285,0.694291,0.00185978,0.824108,0.449292,0.147417,0.133029,0.510391,0.951169,0.819881,0.57028,0.953118,0.0678598,0.795617,0.39556,0.658728,0.068829,0.668045,0.351383,0.13122,0.852123,0.504289,0.846989,0.432348,0.307316,0.746601,0.849598,0.0971925,0.92144,0.712694,0.978724,0.153497,0.955541,0.0993327,0.923334,0.16023,0.409629,0.89616,0.842063,0.929735,0.316009,0.97236,0.584239,0.372019,0.241984,0.465711,0.817465,0.950289,0.0620058,0.490149,0.745639,0.373064,0.284085,0.527392,0.313716,0.678612,0.0244244,0.160652,0.774837,0.0702263,0.75673,0.0332868,0.890951,0.0601876,0.55732,0.872725,0.181295,0.0416622,0.536693,0.120352,0.0215769,0.859188,0.65927,0.743851,0.746283,0.154158,0.74061,0.510703,0.221269,0.410313,0.0942589,0.811877,0.479832,0.625524,0.479318,0.607232,0.725847,0.157835,0.930971,0.949508,0.447382,0.473657,0.400383,0.707593,0.166294,0.253223,0.359643,0.198779,0.442187,0.0276712,0.438811,0.981091,0.889726,0.516706,0.658987,0.754661,0.00028336,0.215267,0.686202,0.0703543,0.156125,0.355895,0.812847,0.158378,0.404246,0.77583,0.162781,0.0416409,0.743168,0.364323,0.473025,0.648272,0.508237,0.055729,0.0554391,0.753948,0.297948,0.78905,0.959163,0.410795,0.370004,0.237412,0.54845,0.684992,0.117314,0.229065,0.0361685,0.381396,0.785661,0.370195,0.940284,0.889742,0.662812,0.419111,0.817987,0.240097,0.842064,0.592342,0.143508,0.677451,0.886286,0.017864,0.357574,0.623703,0.365332,0.572957,0.991903,0.495852,0.661127,0.689465,0.5535,0.882509,0.554636,0.739483,0.535724,0.127707,0.72266,0.758902,0.689381,0.917535,0.0555038,0.389702,0.590056,0.732009,0.591735,0.618504,0.757704,0.267264,0.0356821,0.292503,0.135163,0.199101,0.232309,0.178602,0.845375,0.161952,0.804707,0.168666,0.56422,0.979125,0.0855557,0.788997,0.257325,0.14868,0.646834,0.705063,0.804828,0.742717,0.875932,0.522113,0.7173,0.459763,0.747564,0.495091,0.456839,0.665708,0.967785,0.189956,0.181681,0.420131,0.0913621,0.843213,0.941044,0.248702,0.671561,0.020389,0.832891,0.0515633,0.164404,0.348692,0.0456092,0.732431,0.162606,0.786044,0.662498,0.559936,0.961649,0.0794859,0.327421,0.233884,0.754889,0.288234,0.908429,0.357336,0.990406,0.837551,0.799985,0.0432291,0.911599,0.827372,0.0819532,0.748758,0.934928,0.170924,0.330673,0.831623,0.203387,0.610185,0.594396,0.730194,0.0970282,0.315215,0.527819,0.925913,0.90256,0.570282,0.565248,0.683458,0.883242,0.244226,0.304932,0.861266,0.48855,0.920629,0.193286,0.270862,0.422361,0.218425,0.232166,0.925899,0.961896,0.834624,0.291983,0.566306,0.67639,0.089842,0.477472,0.623891,0.80008,0.413318,0.197128,0.857556,0.740097,0.280388,0.458605,0.917709,0.436397,0.738834,0.717353,0.628374,0.547171,0.940648,0.620137,0.193904,0.358561,0.561943,0.801635,0.0268674,0.24096,0.111896,0.817335,0.281843,0.579437,0.244986,0.790894,0.774916,0.801837,0.72022,0.264851,0.852555,0.966064,0.530509,0.706234,0.00261563,0.55674,0.1,0.705298,0.530964,0.883113,0.86621,0.596667,0.707727,0.688268,0.0925054,0.402616,0.262232,0.208802,0.395434,0.264435,0.696188,0.957768,0.979423,0.0841449,0.82743,0.320428,0.836997,0.899105,0.301757,0.509559,0.60026,0.0316168,0.477593,0.192577,0.55504,0.521813,0.100089,0.909943,0.526976,0.0441088,0.911137,0.483071,0.416037,0.535372,0.516828,0.145925,0.586954,0.469879,0.710199,0.146647,0.511904,0.0865427,0.201648,0.853602,0.322153,0.983161,0.75405,0.573041,0.50245,0.341739,0.219301,0.284718,0.902231,0.0383496,0.345515,0.909461,0.820531,0.438033,0.321198,0.897994,0.247555,0.551763,0.701476,0.672481,0.127981,0.45994,0.0938488,0.212936,0.266945,0.935876,0.457504,0.413764,0.355246,0.351681,0.546191,0.445862,0.967503,0.214756,0.267631,0.743229,0.720221,0.211136,0.162092,0.377967,0.969565,0.84773,0.62549,0.899461,0.322723,0.385453,0.00506312,0.150481,0.954358,0.679962,0.521573,0.36726,0.55159,0.358321,0.752208,0.141332,0.37062,0.000532746,0.514227,0.442408,0.19554,0.526548,0.811759,0.0808184,0.321758,0.433625,0.101312,0.00218785,0.152274,0.132578,0.137617,0.903603,0.718598,0.543131,0.0833435,0.284203,0.8974,0.587737,0.683625,0.3142,0.257204,0.448386,0.82573,0.397169,0.605341,0.645739,0.278571,0.900926,0.846544,0.239606,0.415273,0.578727,0.568176,0.841464,0.958857,0.829074,0.199157,0.106597,0.609704,0.592781,0.933141,0.472727,0.190993,0.75236,0.88253,0.71356,0.257146,0.272436,0.34382,0.959616,0.606503,0.215956,0.434479,0.327598,0.0941753,0.146639,0.898512,0.164773,0.653111,0.0963279,0.668948,0.885137,0.598208,0.824786,0.712281,0.469063,0.910805,0.906132,0.134728,0.828364,0.716715,0.208951,0.0670723,0.587215,0.646362,0.250359,0.446171,0.130403,0.582072,0.212461,0.514357,0.405367,0.831084,0.214741,0.292531,0.73037,0.290124,0.0479977,0.490265,0.151115,0.577855,0.637461,0.837372,0.631339,0.888085,0.704736,0.159491,0.253838,0.319848,0.122449,0.798787,0.732068,0.931386,0.454977,0.877565,0.226822,0.60025,0.0282559,0.12245,0.667836,0.223232,0.561615,0.0562276,0.389526,0.728772,0.775729,0.203898,0.669838,0.0668198,0.928115,0.938678,0.617163,0.260395,0.295353,0.45702,0.995854,0.283176,0.332773,0.0862487,0.182368,0.175448,0.700954,0.162432,0.184486,0.222485,0.798285,0.47729,0.7819,0.0354989,0.430361,0.701389,0.740397,0.934228,0.477984,0.384611,0.370207,0.106864,0.185373,0.363478,0.384006,0.747803,0.0377182,0.27263,0.393971,0.32949,0.609895,0.961525,0.849771,0.13598,0.30515,0.67142,0.836032,0.266083,0.280704,0.646464,0.464175,0.307149,0.960496,0.228632,0.588144,0.266333,0.638661,0.581415,0.597195,0.173616,0.953442,0.660964,0.821656,0.0955235,0.904729,0.107391,0.210842,0.366729,0.766962,0.222289,0.3162,0.510536,0.901364,0.105611,0.470865,0.433213,0.805408,0.141401,0.74282,0.735824,6.73532e-06,0.481126,0.861572,0.487386,0.888455,0.286806,0.0249434,0.368347,0.0593891,0.769797,0.944242,0.469095,0.189844,0.954602,0.105475,0.409612,0.369552,0.220601,0.827642,0.962816,0.124927,0.869922,0.9294,0.391912,0.272934,0.70092,0.170695,0.982486,0.870074,0.00469255,0.056147,0.090936,0.969516,0.764209,0.968183,0.470909,0.909447,0.590455,0.204599,0.74797,0.745113,0.855261,0.0908853,0.0758567,0.729498,0.865107,0.694079,0.673967,0.802779,0.507679,0.348004,0.896553,0.236432,0.182756,0.465143,0.386024,0.362886,0.207858,0.498781,0.0640908,0.155312,0.00519937,0.658037,0.763067,0.787123,0.00232363,0.392042,0.957152,0.746889,0.649851,0.76353,0.883097,0.207182,0.490463,0.904548,0.0403712,0.695444,0.326095,0.803837,0.396923,0.848954,0.777032,0.025997,0.188249,0.626701,0.069317,0.623036,0.122035,0.0995072,0.491915,0.20005,0.36004,0.302138,0.427702,0.10148,0.658801,0.503296,0.385847,0.229082,0.663582,0.500031,0.883531,0.598722,0.529028,0.294676,0.035226,0.585642,0.942514,0.857948,0.767972,0.346998,0.242785,0.519653,0.317028,0.13269,0.016093,0.0617973,0.250918,0.677392,0.076717,0.400471,0.918299,0.773904,0.344435,0.801083,0.798198,0.597321,0.790584,0.278233,0.525138,0.00383425,0.657133,0.450802,0.849562,0.673045,0.977534,0.0808682,0.837699,0.0486373,0.519116,0.277708,0.788234,0.286134,0.544746,0.0482216,0.763834,0.0142069,0.538508,0.103257,0.801608,0.287891,0.861542,0.910901,0.867003,0.21577,0.34097,0.137254,0.318596,0.400581,0.246698,0.359932,0.370024,0.185988,0.617979,0.469018,0.864912,0.0543336,0.613432,0.403396,0.509564,0.605283,0.62803,0.365138,0.305896,0.497891,0.985903,0.965254,0.638709,0.0603303,0.719917,0.362804,0.0172744,0.3454,0.757678,0.622018,0.352347,0.808919,0.110299,0.521726,0.0343841,0.51903,0.641149,0.545893,0.665109,0.624756,0.471951,0.504021,0.479943,0.486226,0.1788,0.446245,0.0727623,0.487924,0.763226,0.857331,0.973998,0.214311,0.998507,0.0127623,0.0446352,0.646087,0.21167,0.954665,0.936274,0.481023,0.823549,0.811414,0.312972,0.8552,0.936381,0.178762,0.854276,0.850633,0.289313,0.645374,0.88806,0.011781,0.758098,0.684091,0.661496,0.551299,0.983099,0.802217,0.426149,0.0221471,0.561463,0.416,0.696752,0.165434,0.955165,0.236843,0.486769,0.415224,0.593188,0.507623,0.777462,0.570136,0.895506,0.123859,0.584036,0.403131,0.573643,0.850831,0.517324,0.981156,0.518188,0.24071,0.475946,0.15212,0.362101,|0.455522,0.0322797,0.364591,0.70561,0.140994,0.00932652,0.629182,0.835316,0.785336,0.139296,0.511345,0.743208,0.288023,0.759989,0.158852,0.869847,0.224845,0.584983,0.856805,0.153229,0.490304,0.487584,0.241,0.113747,0.625772,0.40499,0.836246,0.0390083,0.707353,0.410454,0.828701,0.845761,0.34067,0.725693,0.347832,0.00951558,0.107414,0.453231,0.157872,0.592025,0.334226,0.432297,0.146789,0.40067,0.258873,0.0673158,0.0824025,0.427168,0.0370611,0.247557,0.578577,0.462436,0.237506,0.300607,0.404849,0.409116,0.249657,0.307814,0.80098,0.354706,0.145047,0.678781,0.775142,0.592112,0.241203,0.237117,0.82442,0.925485,0.674007,0.856129,0.27978,0.893027,0.373425,0.401888,0.456405,0.671092,0.222106,0.123947,0.19834,0.647448,0.186947,0.568587,0.506541,0.208592,0.677195,0.571981,0.866752,0.262659,0.317407,0.135738,0.632935,0.743272,0.94576,0.106059,0.552188,0.566556,0.537943,0.925206,0.667458,0.822315,0.890103,0.732159,0.661539,0.903913,0.0454346,0.705818,0.0302512,0.463079,0.575963,0.419906,0.460493,0.503663,0.219605,0.879438,0.279433,0.809729,0.589382,0.744201,0.279466,0.132191,0.447108,0.411773,0.239716,0.0759813,0.556383,0.11053,0.930252,0.94023,0.24013,0.74638,0.201345,0.725436,0.935423,0.0987384,0.909568,0.287117,0.0614702,0.309025,0.0286627,0.345947,0.23533,0.695295,0.749321,0.778004,0.00770801,0.0288682,0.68482,0.934959,0.846118,0.83264,0.34773,0.662155,0.741927,0.177097,0.0639619,0.0466266,0.253875,0.816899,0.506119,0.616774,0.492045,0.35875,0.537831,0.646364,0.460777,0.392985,0.809746,0.822012,0.386931,0.22903,0.054671,0.607805,0.456489,0.754154,0.623115,0.271746,0.186453,0.890656,0.807419,0.727294,0.25575,0.899747,0.357124,0.904785,0.37907,0.381542,0.269855,0.17282,0.0851164,0.687083,0.420483,0.629873,0.586486,0.650397,0.225093,0.830753,0.630932,0.498874,0.170718,0.514485,0.0349901,0.390352,0.406356,0.230151,0.0471691,0.4672,0.744575,0.0501526,0.559596,0.219091,0.880862,0.885885,0.651867,0.311638,0.405442,0.304039,0.803576,0.448664,0.130525,0.573673,0.970073,0.886695,0.552379,0.58724,0.412319,0.335359,0.895427,0.408675,0.571885,0.980718,0.156098,0.86522,0.368008,0.306589,0.809198,0.144332,0.437787,0.841083,0.0764425,0.966278,0.164164,0.56415,0.489641,0.609818,0.391082,0.511903,0.820934,0.0886002,0.694202,0.974394,0.939301,0.58826,0.263312,0.932915,0.126727,0.889928,0.455499,0.134183,0.114948,0.811082,0.550352,0.164035,0.135979,0.771161,0.714453,0.284201,0.329647,0.479346,0.384328,0.654714,0.683258,0.829027,0.493259,0.712162,0.66795,0.903932,0.762811,0.568727,0.843894,0.348769,0.753708,0.581137,0.379905,0.202892,0.0549924,0.921642,0.324538,0.898823,0.471041,0.423258,0.0342835,0.541583,0.302634,0.00753278,0.160676,0.851977,0.130256,0.495968,0.739563,0.139542,0.870173,0.0568389,0.180288,0.684353,0.742334,0.327538,0.651833,0.383688,0.758045,0.213482,0.944775,0.0375354,0.709543,0.953419,0.105466,0.804158,0.492804,0.791315,0.808757,0.13749,0.451326,0.729359,0.846751,0.566148,0.851098,0.99045,0.337551,0.679661,0.0456733,0.200718,0.184425,0.269566,0.354623,0.0510576,0.322522,0.902899,0.739145,0.573602,0.260872,0.890374,0.585537,0.872009,0.0192022,0.174505,0.574078,0.982221,0.254171,0.88552,0.904708,0.22258,0.974646,0.951225,0.928256,0.496836,0.806115,0.815691,0.254488,0.813181,0.196702,0.303643,0.163139,0.890838,0.598549,0.996575,0.627304,0.389587,0.381799,0.540163,0.6371,0.806837,0.731677,0.200533,0.173728,0.0609844,0.343331,0.0480554,0.0310282,0.238127,0.714234,0.493908,0.725663,0.516743,0.553438,0.450303,0.323358,0.163172,0.745632,0.273152,0.433726,0.759303,0.373159,0.759673,0.310806,0.654058,0.631417,0.211192,0.299212,0.634661,0.303208,0.386867,0.348108,0.888348,0.491261,0.836578,0.0367886,0.164718,0.621872,0.144109,0.614294,0.273914,0.836616,0.404093,0.361521,0.660494,0.133933,0.0969154,0.720645,0.372857,0.0223632,0.0872234,0.963343,0.797018,0.988239,0.758135,0.533028,0.748402,0.424425,0.142192,0.519031,0.248874,0.457637,0.876563,0.835125,0.260561,0.249051,0.593251,0.235945,0.832596,0.606013,0.267622,0.882798,0.91571,0.731173,0.313958,0.632689,0.718633,0.975659,0.381743,0.92217,0.205787,0.710232,0.30731,0.849604,0.902012,0.812501,0.806375,0.0192996,0.584027,0.267829,0.279451,0.407651,0.854617,0.185117,0.77651,0.664715,0.524263,0.39455,0.0965358,0.605781,0.397618,0.870785,0.55917,0.644622,0.209409,0.439098,0.208038,0.793497,0.344713,0.693992,0.619218,0.170349,0.272871,0.229284,0.53149,0.715691,0.828897,0.537593,0.459307,0.0554023,0.463566,0.0663759,0.0372862,0.39077,0.157787,0.981271,0.205504,0.787638,0.603612,0.19779,0.540347,0.1275,0.789469,0.827672,0.12741,0.810558,0.862729,0.0245082,0.31857,0.460779,0.427842,0.312767,0.938435,0.0811505,0.639275,0.782708,0.811066,0.0396385,0.538485,0.836186,0.150802,0.834875,0.204162,0.0942951,0.902808,0.405474,0.313675,0.530541,0.965025,0.777726,0.976555,0.785203,0.499393,0.71029,0.291305,0.674586,0.2349,0.161862,0.980721,0.860787,0.182296,0.513401,0.32098,0.186293,0.934995,0.044986,0.5135,0.571504,0.297333,0.200805,0.97971,0.889987,0.124771,0.453746,0.799466,0.17342,0.952095,0.565945,0.846495,0.760241,0.305257,0.988486,0.409491,0.872099,0.918561,0.385863,0.564864,0.122929,0.234714,0.59976,0.307463,0.727694,0.0117624,0.492455,0.54567,0.186691,0.640582,0.779568,0.552818,0.987093,0.890908,0.0605008,0.807085,0.155277,0.772522,0.570674,0.706701,0.0659468,0.0346186,0.714223,0.603758,0.403938,0.971122,0.950301,0.6994,0.802567,0.181269,0.169894,0.849849,0.801979,0.953258,0.282729,0.263233,0.688601,0.203989,0.179699,0.568005,0.0315237,0.199009,0.642794,0.353567,0.988131,0.283914,0.491139,0.846948,0.499107,0.954444,0.942827,0.671752,0.760706,0.208673,0.254719,0.126701,0.694163,0.279112,0.272413,0.131119,0.644388,0.557205,0.222402,0.458005,0.120928,0.74014,0.105905,0.104913,0.635625,0.880975,0.775752,0.880891,0.0968788,0.0218122,0.398107,0.151761,0.475185,0.695704,0.130953,0.92514,0.64731,0.384123,0.51905,0.323955,0.401291,0.372578,0.966324,0.687213,0.716521,0.211604,0.844312,0.249204,0.0835386,0.81476,0.167225,0.000432432,0.243122,0.300105,0.779405,0.122636,0.743406,0.322676,0.798772,0.180606,0.320762,0.134265,0.506155,0.743408,0.981163,0.842931,0.546421,0.338751,0.780163,0.744515,0.984183,0.989489,0.0916615,0.989525,0.245242,0.645759,0.142191,0.822964,0.641468,0.0859125,0.326448,0.733466,0.902497,0.0711603,0.762331,0.241797,0.993781,0.457422,0.801353,0.324699,0.636989,0.0414965,0.0410151,0.283619,0.934077,0.219418,0.55187,0.651467,0.42454,0.174402,0.179132,0.819683,0.190045,0.649231,0.781017,0.650466,0.61691,0.1476,0.783488,0.24222,0.307944,0.214464,0.712928,0.604407,0.601474,0.880504,0.960154,0.165878,0.631423,0.2117,0.125698,0.351564,0.564164,0.0859817,0.300266,0.642626,0.444067,0.470746,0.18708,0.676491,0.867913,0.482324,0.617314,0.130879,0.738359,0.738166,0.18453,0.804205,0.080748,0.932703,0.362577,0.95903,0.408158,0.0233264,0.578006,0.567881,0.517882,0.69215,0.326298,0.679678,0.984831,0.612539,0.813696,0.395006,0.638101,0.186358,0.72759,0.464669,0.884306,0.785489,0.264398,0.655484,0.185334,0.424128,0.90923,0.432593,0.362411,0.560278,0.368119,0.763137,0.533236,0.345784,0.041005,0.0190755,0.544624,0.577011,0.00113857,0.498844,0.663709,0.803232,0.0296903,0.867312,0.969145,0.839944,0.683766,0.905671,0.542136,0.0334801,0.22688,0.790347,0.271353,0.826969,0.454727,0.599517,0.903943,0.59551,0.399684,0.812777,0.336457,0.465956,0.169179,0.762098,0.981995,0.939478,0.437144,0.416398,0.985509,0.29331,0.806687,0.293417,0.568774,0.706145,0.93911,0.274908,0.158942,0.209768,0.0554922,0.621943,0.0145271,0.413431,0.779182,0.446919,0.596484,0.328005,0.043749,0.665339,0.0978718,0.94386,0.462686,0.549569,0.965716,0.380781,0.447343,0.904072,0.340082,0.802866,0.616519,0.283279,0.58552,0.090109,0.259222,0.0419266,0.416526,0.978506,0.952707,0.214515,0.125174,0.501993,0.305532,0.925636,0.214416,0.329567,0.77035,0.243841,0.533872,0.887172,0.136958,0.142141,0.412161,0.52084,0.488198,0.614831,0.797734,0.233192,0.496058,0.102114,0.820876,0.902477,0.571685,0.604807,0.207737,0.262633,0.582148,0.959904,0.52536,0.325506,0.0940767,0.990363,0.241834,0.275672,0.551423,0.784695,0.543618,0.762729,0.182235,0.39829,0.0347287,0.229434,0.94315,0.0807016,0.360378,0.001046,0.706241,0.428004,0.138415,0.657729,0.946275,0.868787,0.827123,0.605075,0.0265204,0.538394,0.226852,0.9787,0.659374,0.734605,0.279859,0.891089,0.318761,0.972197,0.19623,0.866402,0.628998,0.993258,0.558537,0.955197,0.416536,0.711992,0.288794,0.850844,0.729937,0.776414,0.248604,0.521174,0.523726,0.814711,0.363373,0.694352,0.0250149,0.835884,0.05678,0.169729,0.906308,0.689034,0.846503,0.173536,0.911498,0.453993,0.0845613,0.272678,0.243658,0.770971,0.755567,0.698557,0.921601,0.577184,0.729722,0.951497,0.926543,0.8747,0.0480847,0.881166,0.295962,0.298721,0.46272,0.898784,0.495963,0.378466,0.630522,0.93383,0.538619,0.541323,0.872181,0.353965,0.78378,0.826608,0.994007,0.721823,0.355873,0.496415,0.71833,0.15586,0.0662884,0.82162,0.911944,0.59939,0.176133,0.72774,0.846109,0.197313,0.994654,0.829403,0.00821257,0.0181656,0.291728,0.552583,0.572445,0.212428,0.0290681,0.075703,|0.884604,0.560201,0.632074,0.46457,0.0309378,0.743443,0.861503,0.669332,0.841702,0.0456718,0.996096,0.939938,0.614344,0.16187,0.45717,0.439182,0.460675,0.605102,0.85338,0.496386,0.687735,0.986813,0.724401,0.89374,0.350688,0.107919,0.713626,0.161858,0.641389,0.76684,0.254483,0.760761,0.234269,0.270535,0.103058,0.751868,0.613251,0.900801,0.424565,0.229781,0.138381,0.223852,0.656032,0.0982002,0.217015,0.376198,0.865618,0.924626,0.563995,0.362403,0.206962,0.237377,0.403303,0.446923,0.326382,0.654368,0.692646,0.183746,0.261717,0.778049,0.997222,0.789269,0.0545899,0.351791,0.785796,0.48917,0.28601,0.876195,0.953066,0.046712,0.950603,0.772847,0.846388,0.705948,0.0110333,0.310722,0.560161,0.80311,0.379395,0.593564,0.865007,0.371552,0.814684,0.529644,0.203173,0.77921,0.0968092,0.349424,0.541968,0.69315,0.104142,0.0936808,0.311291,0.767783,0.344588,0.992516,0.652453,0.902187,0.0778155,0.419762,0.870914,0.0863314,0.626697,0.0435189,0.207521,0.224473,0.647098,0.0824348,0.559658,0.944843,0.446825,0.213731,0.0964544,0.541616,0.617809,0.56624,0.694386,0.33593,0.826356,0.13058,0.339696,0.320278,0.350674,0.750438,0.612753,0.262896,0.131297,0.860793,0.984935,0.788792,0.153628,0.969053,0.88979,0.274577,0.959343,0.126975,0.301652,0.3369,0.560465,0.51544,0.140395,0.310381,0.967109,0.309271,0.574008,0.886215,0.863103,0.124126,0.000703573,0.551466,0.90462,0.220648,0.244003,0.562706,0.725356,0.715074,0.879724,0.808319,0.1674,0.515383,0.45724,0.535384,0.639656,0.0876777,0.0402635,0.569848,0.244437,0.512471,0.161122,0.542992,0.925641,0.133815,0.164624,0.884307,0.16691,0.706657,0.160495,0.350655,0.414401,0.981866,0.177712,0.75988,0.0542789,0.85535,0.661738,0.937558,0.156678,0.136569,0.861451,0.0198768,0.145021,0.520285,0.0371588,0.687308,0.927324,0.103022,0.0113006,0.0935659,0.257988,0.144752,0.586718,0.876762,0.420661,0.546236,0.192689,0.344137,0.488462,0.861431,0.567776,0.617749,0.194676,0.110882,0.0128547,0.657033,0.421101,0.916659,0.0877845,0.592533,0.688974,0.315674,0.00991619,0.332783,0.719317,0.703342,0.551703,0.0536128,0.377425,0.952306,0.623707,0.00469142,0.857466,0.179543,0.88288,0.0792816,0.509077,0.165003,0.786041,0.973754,0.0364774,0.198173,0.0967268,0.841866,0.332695,0.0520661,0.486497,0.0946356,0.159863,0.170087,0.702948,0.850574,0.139017,0.142273,0.528319,0.916958,0.620193,0.509881,0.197044,0.911922,0.389184,0.857752,0.0415419,0.987342,0.48292,0.774547,0.663467,0.225932,0.923151,0.697049,0.345996,0.676749,0.597639,0.32181,0.402224,0.056582,0.454945,0.929312,0.29268,0.908143,0.378894,0.759655,0.0889121,0.351988,0.336577,0.451564,0.274739,0.929004,0.468514,0.928259,0.409045,0.813269,0.694347,0.685398,0.262533,0.908761,0.456457,0.708797,0.369749,0.970113,0.814313,0.24555,0.920069,0.6095,0.53257,0.525131,0.0295315,0.725572,0.372403,0.241979,0.592857,0.267785,0.412576,0.672832,0.094116,0.382799,0.263293,0.904843,0.637308,0.43651,0.867693,0.238627,0.00484586,0.370539,0.218951,0.790807,0.54575,0.947141,0.0604686,0.401426,0.735861,0.266901,0.124931,0.604413,0.648716,0.77762,0.284032,0.127772,0.236831,0.255313,0.75187,0.773721,0.779193,0.161251,0.596743,0.491933,0.385293,0.139967,0.195527,0.57999,0.394198,0.223966,0.872007,0.832853,0.376351,0.226836,0.29532,0.515417,0.632704,0.462558,0.227294,0.781578,0.415505,0.575252,0.698914,0.415272,0.272078,0.0763577,0.374051,0.823749,0.390047,0.544467,0.895498,0.803359,0.900782,0.975544,0.863498,0.946284,0.80202,0.8487,0.538099,0.402909,0.31741,0.193826,0.969996,0.492127,0.257793,0.875962,0.612123,0.261101,0.549079,0.466228,0.340535,0.556619,0.867083,0.328813,0.660962,0.912473,0.105616,0.0143991,0.289129,0.791104,0.138431,0.251393,0.572927,0.0312057,0.650335,0.316254,0.562584,0.747138,0.253712,0.981624,0.200003,0.964831,0.765315,0.22222,0.12378,0.960139,0.176919,0.340562,0.745264,0.254901,0.390205,0.874957,0.455744,0.556655,0.989746,0.3456,0.548542,0.0679255,0.113518,0.711979,0.374318,0.981032,0.176702,0.457165,0.754933,0.0542212,0.507742,0.906219,0.313059,0.198941,0.156276,0.949746,0.820574,0.799353,0.351181,0.377178,0.438652,0.132314,0.385266,0.443072,0.249853,0.5745,0.167895,0.700896,0.450181,0.744728,0.703805,0.434579,0.713228,0.0151891,0.838798,0.57866,0.239833,0.873297,0.569996,0.251862,0.112164,0.349812,0.313344,0.999657,0.991266,0.75755,0.691726,0.390416,0.0188671,0.152966,0.0447769,0.439801,0.405486,0.638429,0.391522,0.947531,0.871441,0.403264,0.712204,0.869762,0.367296,0.00792998,0.995871,0.415053,0.749794,0.876453,0.0930327,0.566071,0.477827,0.0356398,0.191186,0.735729,0.568883,0.79104,0.00759739,0.434862,0.43344,0.00972182,0.661592,0.857947,0.629867,0.0631521,0.531731,0.0920752,0.3126,0.369951,0.506293,0.812292,0.580296,0.665379,0.591351,0.761086,0.939715,0.146805,0.0189984,0.460186,0.027491,0.145365,0.690328,0.414843,0.38138,0.694548,0.405194,0.542192,0.997398,0.598254,0.17136,0.726551,0.778488,0.368046,0.60926,0.8133,0.525586,0.428967,0.621629,0.155533,0.636763,0.520579,0.725866,0.604649,0.158269,0.958959,0.121207,0.787166,0.852061,0.944011,0.574231,0.832521,0.151631,0.55936,0.793673,0.572027,0.673087,0.209531,0.350359,0.476606,0.904135,0.552101,0.490979,0.984369,0.362879,0.0990072,0.117519,0.883684,0.77396,0.990709,0.822296,0.924837,0.477898,0.78221,0.390578,0.0157326,0.381678,0.925129,0.583335,0.583678,0.725097,0.220849,0.312989,0.411479,0.215526,0.0321707,0.935669,0.339413,0.546826,0.0944597,0.902257,0.761451,0.493751,0.905992,0.327336,0.984536,0.859478,0.261555,0.842068,0.997691,0.135654,0.609679,0.37148,0.176155,0.316425,0.780599,0.751117,0.0676004,0.233442,0.133493,0.127534,0.25851,0.862126,0.0508134,0.314294,0.46207,0.561168,0.206296,0.96197,0.589221,0.323324,0.391257,0.879582,0.519905,0.782655,0.503401,0.596155,0.503501,0.39888,0.310428,0.545762,0.0679109,0.714562,0.148776,0.0562266,0.102223,0.869276,0.41409,0.125515,0.839534,0.584951,0.899714,0.437644,0.750909,0.331498,0.79825,0.217364,0.0553239,0.794812,0.792601,0.254341,0.332789,0.0523703,0.791558,0.0933313,0.91686,0.327909,0.750281,0.612566,0.745013,0.324974,0.758221,0.243397,0.377438,0.505416,0.329734,0.25985,0.642316,0.332136,0.143998,0.224926,0.414866,0.237793,0.0743339,0.0478165,0.266507,0.612506,0.663397,0.74105,0.209055,0.890144,0.0565088,0.0757869,0.198833,0.91008,0.718541,0.566758,0.722724,0.903058,0.344968,0.780942,0.429843,0.418884,0.952993,0.744315,0.819169,0.386383,0.104269,0.732309,0.209161,0.716492,0.711965,0.197759,0.0381992,0.775971,0.526901,0.494422,0.580472,0.975214,0.552834,0.739676,0.582745,0.799174,0.432148,0.798607,0.526157,0.68246,0.40453,0.561863,0.792376,0.715126,0.823759,0.00663441,0.169714,0.97641,0.0162341,0.69644,0.450563,0.196643,0.658671,0.767034,0.134279,0.857972,0.0541772,0.56603,0.682769,0.320134,0.638245,0.696841,0.345825,0.549083,0.657462,0.165743,0.780523,0.272137,0.322141,0.521621,0.598027,0.835134,0.185386,0.414193,0.649726,0.241694,0.750357,0.288655,0.448693,0.334265,0.371263,0.562818,0.649079,0.177468,0.410444,0.475989,0.915965,0.556035,0.524098,0.926031,0.497601,0.232222,0.761471,0.504734,0.466347,0.809064,0.154638,0.719547,0.00226766,0.434283,0.778935,0.57914,0.962903,0.117576,0.935555,0.0997455,0.821535,0.137739,0.949658,0.807206,0.443013,0.322552,0.784841,0.0690461,0.371973,0.986563,0.35407,0.952772,0.399543,0.324734,0.291502,0.686876,0.70341,0.0304304,0.69964,0.59758,0.776409,0.1629,0.914171,0.610035,0.354428,0.0311652,0.886007,0.747183,0.362572,0.282322,0.238917,0.657522,0.743872,0.557533,0.774795,0.577098,0.484499,0.258362,0.706163,0.996599,0.670913,0.268982,0.670206,0.650436,0.00218296,0.380082,0.634835,0.666973,0.974651,0.574068,0.350766,0.460733,0.71765,0.290986,0.0609589,0.555083,0.442085,0.278579,0.66293,0.373386,0.222157,0.841056,0.27615,0.898492,0.842638,0.43395,0.766673,0.944461,0.573385,0.190062,0.784356,0.661633,0.531429,0.434345,0.680747,0.0174851,0.638118,0.635976,0.21815,0.972327,0.453462,0.712364,0.362346,0.481069,0.497288,0.623649,0.176588,0.120089,0.187507,0.457733,0.902688,0.236587,0.0250685,0.963596,0.200401,0.0102987,0.569953,0.994413,0.485844,0.45966,0.903711,0.491324,0.174806,0.304799,0.680694,0.988357,0.430656,0.120245,0.720185,0.486539,0.448117,0.301038,0.1386,0.883905,0.411511,0.453646,0.884836,0.626054,0.684994,0.36253,0.360066,0.241357,0.2437,0.668485,0.205048,0.495161,0.41623,0.0668638,0.440654,0.908033,0.406125,0.133798,0.3981,0.505878,0.561377,0.0594917,0.697818,0.454875,0.133101,0.0744213,0.911343,0.46778,0.782889,0.874432,0.64075,0.384233,0.739697,0.821332,0.705327,0.785654,0.470259,0.7218,0.289587,0.0402696,0.32532,0.521068,0.751705,0.750976,0.857559,0.572006,0.829438,0.282416,0.414896,0.746297,0.594786,0.314002,0.814823,0.668938,0.266912,0.958721,0.0585811,0.635585,0.456976,0.469239,0.517417,0.348608,0.220152,0.454094,0.435129,0.833411,0.682027,0.56294,0.313463,0.180777,0.905421,0.581768,0.790247,0.794582,0.181598,0.460112,0.225578,0.220241,0.217342,0.288405,0.803332,0.857016,0.89216,0.766944,0.751714,0.905978,0.120964,0.801926,0.557156,0.425978,0.19842,0.553703,0.378999,0.221783,0.0582361,0.670943,0.433802,0.184129,0.637387,0.233279,0.785006,|0.186281,0.261011,0.349907,0.802762,0.792964,0.80636,0.245545,0.941425,0.794464,0.793776,0.632227,0.965408,0.490281,0.183697,0.632835,0.8092,0.201189,0.467406,0.185053,0.321975,0.753803,0.794222,0.367973,0.92118,0.984661,0.961024,0.22486,0.711597,0.464484,0.85678,0.29021,0.757701,0.968182,0.740302,0.0072009,0.009893,0.782514,0.0360128,0.249026,0.463273,0.51658,0.74129,0.378131,0.275771,0.0724953,0.0160549,0.607114,0.458479,0.513078,0.497393,0.0457415,0.745259,0.115025,0.00838381,0.13541,0.541309,0.947141,0.776237,0.723293,0.74417,0.106021,0.301908,0.218759,0.384703,0.420999,0.373728,0.313963,0.706936,0.0723801,0.348289,0.565081,0.797822,0.0610387,0.850169,0.918889,0.447838,0.745217,0.0425348,0.683856,0.972793,0.429474,0.337114,0.892415,0.315223,0.989506,0.91903,0.058007,0.218412,0.0267821,0.202421,0.308051,0.552518,0.328478,0.664362,0.761491,0.486708,0.65231,0.441051,0.432755,0.336468,0.800697,0.626175,0.685904,0.345882,0.582432,0.221659,0.527507,0.374969,0.464065,0.11867,0.719504,0.118107,0.594883,0.216303,0.0542149,0.851353,0.745257,0.975196,0.442414,0.631285,0.803644,0.380249,0.2426,0.0224453,0.209533,0.74766,0.656631,0.209174,0.301647,0.845028,0.628239,0.801746,0.673135,0.262124,0.533744,0.0270919,0.45418,0.204521,0.289478,0.0217472,0.557302,0.987626,0.711661,0.0283992,0.818573,0.289254,0.0694941,0.558108,0.670342,0.680797,0.467155,0.829556,0.375826,0.337119,0.624475,0.308553,0.932481,0.611921,0.908356,0.767989,0.106847,0.630961,0.476787,0.878271,0.948771,0.549482,0.0665876,0.966902,0.681345,0.164615,0.713333,0.423754,0.37067,0.681867,0.295948,0.944061,0.426412,0.543903,0.424002,0.232147,0.369525,0.256132,0.406236,0.856453,0.174719,0.628007,0.486538,0.186324,0.0460362,0.136426,0.247498,0.845411,0.296262,0.777463,0.157421,0.898552,0.0213108,0.487707,0.712044,0.487221,0.567689,0.118538,0.554143,0.206956,0.712208,0.999231,0.353653,0.0518094,0.818791,0.208267,0.112751,0.0387723,0.564996,0.839174,0.339829,0.589107,0.741757,0.745782,0.771689,0.907319,0.0675415,0.427624,0.955291,0.858043,0.094824,0.28392,0.561435,0.238665,0.635284,0.497197,0.502369,0.897155,0.193086,0.647808,0.847022,0.871004,0.15915,0.476448,0.196772,0.654603,0.166606,0.64757,0.365121,0.489026,0.00756472,0.220439,0.597839,0.0406179,0.548487,0.756122,0.0352033,0.160902,0.191248,0.430264,0.955085,0.181493,0.723433,0.656701,0.746691,0.29101,0.0749219,0.601422,0.782879,0.940859,0.134413,0.542363,0.8455,0.612285,0.327314,0.621669,0.358776,0.160571,0.772651,0.514937,0.154008,0.415198,0.58024,0.759775,0.387146,0.499129,0.0200605,0.0855399,0.494083,0.927075,0.709177,0.250502,0.599429,0.647068,0.961361,0.10308,0.0164664,0.570132,0.765861,0.906624,0.543861,0.362623,0.899283,0.713691,0.801905,0.683959,0.989823,0.650369,0.993939,0.328331,0.598044,0.543476,0.757156,0.643934,0.66495,0.529998,0.235593,0.297531,0.905875,0.64434,0.385337,0.340706,0.704187,0.365963,0.86227,0.483627,0.35744,0.341122,0.234753,0.58118,0.164989,0.147236,0.525135,0.0121462,0.0625778,0.422843,0.299683,0.744727,0.10603,0.263527,0.984643,0.970491,0.872382,0.631148,0.463149,0.431025,0.953467,0.829014,0.0813034,0.926737,0.577734,0.317399,0.345978,0.885602,0.477101,0.925252,0.891182,0.90282,0.214643,0.944621,0.947319,0.0660895,0.15191,0.776839,0.679156,0.37982,0.415762,0.4004,0.384217,0.795634,0.980877,0.967897,0.792106,0.143313,0.170692,0.973714,0.0716332,0.471324,0.836746,0.713733,0.605942,0.678946,0.31883,0.291729,0.30318,0.0144409,0.325016,0.307194,0.00101143,0.0612358,0.258773,0.924878,0.581826,0.174825,0.395567,0.808768,0.344506,0.899886,0.369915,0.82597,0.357472,0.957723,0.42875,0.679222,0.880901,0.677811,0.624541,0.609289,0.300579,0.253777,0.150283,0.243893,0.111207,0.500328,0.475781,0.244432,0.183266,0.38737,0.273839,0.702032,0.747289,0.924265,0.687864,0.387732,0.140467,0.953925,0.207097,0.496239,0.763771,0.0647937,0.295806,0.0381634,0.468223,0.95647,0.594443,0.854323,0.511488,0.264325,0.173077,0.793319,0.215615,0.88357,0.740872,0.977131,0.079822,0.411703,0.940766,0.956548,0.769271,0.177835,0.230404,0.703641,0.892659,0.737681,0.269988,0.846829,0.516137,0.801678,0.935732,0.30432,0.354857,0.193783,0.712331,0.754257,0.0836542,0.179966,0.963063,0.0137717,0.430962,0.0353534,0.3206,0.458254,0.748325,0.751373,0.253558,0.282446,0.354838,0.620029,0.0854829,0.785907,0.330389,0.598384,0.952952,0.069591,0.0237948,0.077768,0.968435,0.81525,0.969682,0.243987,0.280011,0.480494,0.343111,0.985445,0.934111,0.838207,0.191704,0.616617,0.629935,0.492633,0.733892,0.155505,0.0298324,0.961862,0.291332,0.713288,0.531575,0.0405435,0.363347,0.389926,0.946364,0.181459,0.363799,0.603679,0.511705,0.00547957,0.0609326,0.278966,0.611195,0.581813,0.400542,0.198055,0.290888,0.603676,0.857718,0.464974,0.333803,0.05857,0.565388,0.855428,0.515141,0.0279651,0.106708,0.419849,0.857222,0.983898,0.522588,0.442646,0.987453,0.20746,0.628026,0.57671,0.584695,0.511033,0.501274,0.369791,0.389897,0.272572,0.969279,0.996087,0.74045,0.951577,0.862724,0.790288,0.331767,0.232461,0.819554,0.734057,0.30587,0.956712,0.0248059,0.21744,0.123172,0.785195,0.026063,0.881816,0.265635,0.670237,0.832431,0.969277,0.0527125,0.378393,0.728673,0.79374,0.645017,0.887461,0.255674,0.648435,0.629805,0.0137511,0.391201,0.651919,0.318393,0.616932,0.971636,0.282263,0.520312,0.361479,0.380277,0.185844,0.0187561,0.752355,0.855801,0.917715,0.507144,0.0865114,0.0600545,0.340376,0.333078,0.297736,0.900053,0.469774,0.0218086,0.120133,0.0324654,0.984587,0.712524,0.086755,0.256998,0.466355,0.928666,0.114115,0.138555,0.190348,0.612109,0.512274,0.734868,0.869777,0.35956,0.234082,0.212749,0.279887,0.134072,0.498247,0.617854,0.423495,0.139681,0.759542,0.223197,0.193184,0.193581,0.675479,0.614264,0.485239,0.00467551,0.977174,0.649878,0.0869023,0.199507,0.287257,0.179936,0.0996971,0.21155,0.758599,0.607231,0.533933,0.614857,0.0997852,0.201598,0.357842,0.625199,0.252227,0.268169,0.667316,0.162771,0.0549125,0.885984,0.896693,0.54499,0.244506,0.137396,0.601916,0.287795,0.71065,0.332988,0.659152,0.231529,0.898318,0.00953376,0.340588,0.939818,0.0738635,0.649922,0.407662,0.898572,0.461273,0.983134,0.502498,0.330334,0.715204,0.453765,0.576191,0.448944,0.898234,0.685072,0.351568,0.86262,0.71816,0.0703714,0.241576,0.548076,0.511056,0.0642595,0.625869,0.0131684,0.860932,0.0862526,0.169425,0.662719,0.423001,0.141913,0.915808,0.446737,0.957746,0.0995648,0.404889,0.579498,0.567206,0.520206,0.919209,0.180747,0.149647,0.449857,0.769753,0.259683,0.0653766,0.851623,0.82715,0.689421,0.801339,0.422776,0.166657,0.767559,0.0528095,0.873209,0.727198,0.605682,0.759072,0.856288,0.168765,0.728819,0.00966728,0.210452,0.847638,0.838345,0.597612,0.554518,0.0386876,0.194277,0.0293174,0.873135,0.832927,0.561279,0.118151,0.857499,0.345393,0.923588,0.318015,0.797531,0.518608,0.315184,0.808446,0.519449,0.708519,0.660286,0.974659,0.6468,0.423401,0.969741,0.361304,0.895215,0.97583,0.289356,0.848423,0.305007,0.775471,0.766755,0.670942,0.291478,0.327584,0.224272,0.445755,0.181364,0.684406,0.0186458,0.0721528,0.106785,0.241346,0.856657,0.528745,0.879905,0.741607,0.620507,0.147799,0.590734,0.795826,0.204242,0.53678,0.874424,0.656475,0.139822,0.572305,0.318954,0.69907,0.316634,0.271245,0.0560912,0.479278,0.948025,0.576714,0.236988,0.0874672,0.578284,0.947368,0.303104,0.835708,0.861707,0.476552,0.338471,0.986307,0.60029,0.86625,0.54843,0.726523,0.0221882,0.255451,0.267377,0.434119,0.180296,0.61206,0.326676,0.618269,0.257717,0.247744,0.105595,0.252417,0.994715,0.183763,0.667482,0.663296,0.258012,0.324937,0.784093,0.178797,0.372344,0.928323,0.054562,0.566138,0.893475,0.38985,0.276547,0.439442,0.124991,0.973189,0.951208,0.109042,0.113317,0.0852044,0.287513,0.944714,0.736159,0.884366,0.752082,0.665048,0.580818,0.798364,0.304352,0.613275,0.121543,0.655283,0.287575,0.210807,0.742634,0.255963,0.25297,0.470459,0.616257,0.330465,0.531218,0.888055,0.693964,0.56562,0.124259,0.706911,0.977477,0.992648,0.786047,0.159318,0.177334,0.481386,0.566482,0.17784,0.320892,0.722583,0.811454,0.856958,0.863039,0.239096,0.445224,0.689615,0.417435,0.033048,0.83204,0.581723,0.346803,0.541083,0.0923167,0.455763,0.289767,0.524774,0.721322,0.889535,0.302773,0.189941,0.26627,0.272412,0.191369,0.717852,0.259663,0.597288,0.299484,0.0881265,0.675847,0.224259,0.688014,0.0644984,0.804033,0.745086,0.217916,0.274146,0.865037,0.176685,0.954264,0.444309,0.453508,0.317102,0.415778,0.273446,0.194058,0.000925958,0.189174,0.0696377,0.88809,0.542781,0.976117,0.055153,0.0634081,0.784184,0.364667,0.599172,0.19235,0.752547,0.296918,0.479462,0.234343,0.704338,0.831154,0.91762,0.793222,0.116063,0.755903,0.00989419,0.509,0.313253,0.11327,0.0293608,0.638117,0.193864,0.477265,0.203955,0.625323,0.174565,0.31495,0.157976,0.809761,0.338108,0.172718,0.867343,0.952277,0.742057,0.206274,0.508671,0.825531,0.904829,0.387554,0.017141,0.822427,0.133481,0.913353,0.419537,0.0100582,0.772326,0.271077,0.0872113,0.172039,0.10157,0.717212,0.462365,0.0768812,0.06287,0.330803,0.506347,0.328837,0.422007,0.493619,0.92349,0.406465,0.66225,0.554605,0.165116,0.0913244,0.741158,0.059345,0.488952,0.698054,0.703303,|0.989574,0.0753015,0.705766,0.580099,0.112096,0.674074,0.454263,0.609258,0.850828,0.916101,0.534203,0.86411,0.537989,0.503169,0.575723,0.979558,0.366306,0.749414,0.725405,0.605338,0.305684,0.237567,0.813917,0.150703,0.737881,0.497817,0.180585,0.978403,0.892102,0.293711,0.0769516,0.947102,0.736075,0.00625896,0.266445,0.8135,0.11096,0.797463,0.538656,0.614337,0.665019,0.264707,0.94157,0.56052,0.00402743,0.341674,0.37491,0.0183268,0.686611,0.388187,0.780003,0.604653,0.0778771,0.690603,0.0270083,0.890338,0.51544,0.879694,0.00806922,0.437436,0.04071,0.16185,0.395081,0.486875,0.3764,0.011956,0.370684,0.920675,0.606846,0.927209,0.102325,0.613293,0.284037,0.262202,0.835576,0.911847,0.163688,0.429502,0.344018,0.974669,0.37732,0.0103068,0.845538,0.383973,0.794087,0.983566,0.724188,0.864554,0.214789,0.608962,0.0996066,0.232094,0.660415,0.771526,0.0678464,0.845874,0.157279,0.762815,0.674934,0.142235,0.700369,0.514678,0.0310963,0.678423,0.797268,0.457551,0.213274,0.0360937,0.657703,0.778448,0.70046,0.328684,0.694917,0.469165,0.584437,0.304811,0.61751,0.649257,0.637734,0.736942,0.923667,0.134247,0.683779,0.636408,0.961848,0.843083,0.277879,0.791245,0.429918,0.600188,0.541394,0.287898,0.21059,0.63884,0.688728,0.745997,0.168701,0.358243,0.683607,0.0724218,0.514922,0.900974,0.641054,0.204676,0.692965,0.95379,0.525008,0.538646,0.120379,0.0643534,0.105273,0.992172,0.675189,0.52349,0.618809,0.225417,0.551126,0.879781,0.762955,0.31104,0.322214,0.288123,0.0459171,0.43571,0.678494,0.366607,0.0316306,0.489869,0.00611204,0.31059,0.77822,0.755622,0.469573,0.0407724,0.783596,0.870256,0.520382,0.525442,0.59731,0.605302,0.333187,0.887692,0.156646,0.896272,0.845665,0.795069,0.531379,0.894177,0.229411,0.433296,0.179708,0.782459,0.128117,0.143106,0.472641,0.338767,0.406922,0.0641195,0.0357203,0.787386,0.185957,0.0994399,0.463845,0.951978,0.645572,0.0406877,0.701584,0.399794,0.388008,0.559605,0.574251,0.625747,0.13992,0.281152,0.713909,0.821389,0.630601,0.999085,0.530586,0.899137,0.416448,0.910949,0.359843,0.656863,0.397974,0.869311,0.557817,0.39595,0.132424,0.943496,0.193304,0.623981,0.908116,0.896249,0.117959,0.511238,0.0974972,0.736069,0.382328,0.322921,0.88574,0.0745787,0.25909,0.680709,0.885833,0.854706,0.697818,0.90666,0.0562918,0.943046,0.0380778,0.695502,0.605828,0.346257,0.46092,0.487388,0.392115,0.722346,0.218009,0.658864,0.204281,0.0238565,0.0671034,0.606499,0.307775,0.762422,0.511399,0.381147,0.39837,0.686479,0.190673,0.557302,0.03057,0.665847,0.734263,0.467332,0.267803,0.412499,0.516352,0.302788,0.464872,0.514921,0.942534,0.307349,0.305601,0.528326,0.032649,0.602012,0.124373,0.202849,0.996629,0.660709,0.764989,0.429151,0.690434,0.312392,0.812774,0.0620817,0.247219,0.767204,0.714076,0.835834,0.487462,0.273979,0.202656,0.779898,0.12093,0.654404,0.906558,0.181978,0.73739,0.308601,0.0239215,0.475418,0.338335,0.815474,0.191696,0.319549,0.313493,0.2086,0.902018,0.359774,0.102499,0.213317,0.930098,0.709577,0.980278,0.615901,0.290637,0.0110838,0.84208,0.870864,0.532904,0.971877,0.0429602,0.114498,0.000884533,0.521953,0.710404,0.510764,0.324832,0.979913,0.415074,0.770862,0.195316,0.352956,0.130058,0.510927,0.00646913,0.82575,0.854576,0.782921,0.640975,0.142869,0.613121,0.091879,0.546852,0.0142678,0.925848,0.0910346,0.990219,0.999885,0.0134243,0.88302,0.873017,0.521029,0.407836,0.054277,0.13472,0.0767179,0.144259,0.69989,0.113936,0.213955,0.90963,0.588332,0.937313,0.261152,0.704872,0.519738,0.0641109,0.0111266,0.246398,0.612482,0.4555,0.295593,0.516242,0.382166,0.44615,0.22184,0.980136,0.0878637,0.351108,0.828649,0.0837625,0.309671,0.408484,0.30557,0.484462,0.703692,0.964282,0.452147,0.362522,0.301902,0.106597,0.805596,0.260507,0.0272052,0.905787,0.33687,0.686441,0.651197,0.73553,0.377136,0.886115,0.851247,0.098834,0.432024,0.136612,0.10707,0.182058,0.501304,0.156585,0.5364,0.0556061,0.699871,0.85044,0.0126255,0.282494,0.275912,0.583386,0.290989,0.898047,0.889573,0.326407,0.602475,0.960116,0.546464,0.959951,0.452811,0.954178,0.915175,0.117852,0.215987,0.467164,0.201829,0.988413,0.284646,0.277226,0.995168,0.539345,0.223891,0.316722,0.432907,0.851282,0.83304,0.88555,0.543151,0.795186,0.898725,0.979791,0.810499,0.0747737,0.31339,0.764652,0.527398,0.95584,0.315922,0.794554,0.0451218,0.3231,0.384278,0.407053,0.521886,0.772101,0.784029,0.678544,0.0887195,0.343805,0.324732,0.915514,0.652253,0.184617,0.846296,0.0959712,0.939576,0.941807,0.492352,0.094412,0.590205,0.191105,0.240533,0.144316,0.927763,0.94576,0.982987,0.308938,0.929863,0.326056,0.954416,0.096793,0.808572,0.605736,0.58565,0.134206,0.609422,0.794617,0.0578018,0.16127,0.912863,0.653662,0.000741541,0.700711,0.0339352,0.482601,0.0394383,0.581644,0.594009,0.457097,0.650354,0.212451,0.802403,0.262856,0.268662,0.26648,0.230504,0.111395,0.301549,0.237504,0.764291,0.853944,0.811642,0.106416,0.560731,0.846637,0.867372,0.232118,0.260572,0.495106,0.406879,0.0331903,0.289724,0.109381,0.191378,0.189688,0.539705,0.198792,0.238349,0.0143355,0.994587,0.571351,0.780523,0.967516,0.925822,0.97783,0.699491,0.696742,0.320572,0.663799,0.655866,0.352273,0.887398,0.443957,0.0695076,0.929732,0.991137,0.955763,0.455635,0.208283,0.111942,0.364311,0.225408,0.461295,0.213584,0.793932,0.0976478,0.919453,0.937456,0.727027,0.234304,0.400816,0.744293,0.196253,0.688557,0.00135809,0.0927793,0.202433,0.129479,0.11282,0.995492,0.115394,0.0881374,0.895936,0.391743,0.161709,0.529472,0.910014,0.841935,0.597626,0.644964,0.429164,0.371211,0.976823,0.951489,0.381338,0.836068,0.911418,0.858454,0.867769,0.190364,0.524781,0.0801371,0.176681,0.661414,0.38381,0.688547,0.21346,0.69299,0.419892,0.871952,0.134152,0.160729,0.402881,0.982587,0.537312,0.618216,0.710473,0.0167669,0.118445,0.245881,0.378877,0.76638,0.798421,0.776068,0.252177,0.656483,0.75049,0.223962,0.144798,0.586717,0.550964,0.530256,0.00465882,0.137315,0.738864,0.300823,0.542344,0.596569,0.641842,0.978328,0.534761,0.088475,0.840699,0.951981,0.48404,0.854689,0.1818,0.343176,0.387453,0.862243,0.0170929,0.562357,0.627219,0.155612,0.684138,0.706959,0.978805,0.938348,0.699074,0.0514423,0.19619,0.277076,0.620201,0.0115675,0.898609,0.443371,0.844598,0.818281,0.275532,0.647529,0.22662,0.205085,0.0705506,0.0921793,0.854946,0.320093,0.610187,0.600908,0.674139,0.249988,0.766921,0.591352,0.662256,0.538068,0.66057,0.0438443,0.662125,0.0154237,0.0874834,0.994824,0.471783,0.337655,0.723117,0.885211,0.505388,0.933589,0.0609295,0.940311,0.63436,0.306829,0.726513,0.23339,0.628362,0.0855683,0.333929,0.724901,0.297364,0.310587,0.711737,0.326465,0.34673,0.805475,0.148619,0.783254,0.335166,0.561754,0.615638,0.930465,0.906053,0.628367,0.785149,0.985781,0.584368,0.344384,0.0303652,0.244581,0.175821,0.486563,0.926903,0.741753,0.075119,0.359964,0.716838,0.698357,0.900454,0.700578,0.564925,0.143852,0.946447,0.957001,0.503136,0.725612,0.351113,0.753043,0.333318,0.484699,0.362273,0.442576,0.804507,0.347053,0.419053,0.62255,0.605658,0.856676,0.729751,0.387445,0.81302,0.905802,0.578264,0.698822,0.169765,0.332461,0.232759,0.184616,0.769173,0.0541274,0.104883,0.462893,0.432066,0.178427,0.0326765,0.748333,0.211403,0.634903,0.47626,0.608186,0.793234,0.564297,0.97586,0.0934943,0.0198373,0.651771,0.0264911,0.13906,0.88646,0.183699,0.62103,0.519876,0.885801,0.90261,0.878919,0.0351802,0.319017,0.84203,0.242057,0.695074,0.808715,0.265866,0.666146,0.580654,0.257994,0.574424,0.0361543,0.986792,0.0168369,0.749263,0.995882,0.101941,0.073555,0.38223,0.230112,0.304327,0.603991,0.0203611,0.340734,0.442174,0.534098,0.794227,0.865075,0.855379,0.251311,0.131443,0.564042,0.919398,0.186625,0.754348,0.323862,0.576677,0.705741,0.32767,0.780599,0.522467,0.101913,0.229209,0.927225,0.554596,0.136199,0.728757,0.0672753,0.914732,0.662646,0.199456,0.217562,0.697662,0.296439,0.750481,0.149736,0.0350405,0.717107,0.803334,0.26108,0.197464,0.741978,0.493151,0.394875,0.985427,0.678405,0.772554,0.0455484,0.423594,0.18108,0.386106,0.446014,0.549835,0.366066,0.0265079,0.991747,0.895174,0.952995,0.660363,0.604661,0.594064,0.770535,0.748274,0.765914,0.116895,0.769903,0.736935,0.858221,0.139992,0.468346,0.392061,0.578372,0.144346,0.896268,0.513498,0.694444,0.0693995,0.427691,0.325207,0.120979,0.168131,0.471081,0.0421163,0.504065,0.642684,0.028222,0.885304,0.166505,0.0611406,0.805196,0.701916,0.708068,0.558152,0.999893,0.0135201,0.576995,0.330872,0.801283,0.0970012,0.154035,0.429129,0.127244,0.566584,0.975751,0.197631,0.691237,0.592396,0.639304,0.831158,0.473362,0.386177,0.697669,0.328245,0.0144007,0.638031,0.624048,0.368411,0.262774,0.724841,0.421191,0.133857,0.647458,0.348926,0.313305,0.915691,0.709793,0.12525,0.283707,0.682296,0.444329,0.557966,0.627733,0.381334,0.665497,0.143672,0.424946,0.603558,0.582454,0.602426,0.42503,0.423407,0.643495,0.545226,0.850707,0.476439,0.583291,0.196877,0.606283,0.0883896,0.901855,0.218664,0.687015,0.40393,0.586721,0.58545,0.791449,0.753932,0.236335,0.877127,0.372109,0.304922,0.495815,0.651429,0.139049,0.435994,0.633493,0.473449,0.643539,0.633519,0.200896,0.541431,0.563266,0.852809,0.195127,0.772094,0.960666,0.792895,0.419892,0.337993,|0.0935331,0.596099,0.560032,0.676794,0.721827,0.687908,0.733779,0.36294,0.0943201,0.37464,0.767195,0.0982714,0.130931,0.240857,0.240439,0.87383,0.564955,0.425496,0.84539,0.474574,0.400428,0.412011,0.694332,0.633885,0.387664,0.482654,0.0664387,0.77493,0.750638,0.0105191,0.331725,0.292717,0.00538647,0.457428,0.806456,0.776633,0.256635,0.517212,0.259414,0.928978,0.523593,0.874008,0.708165,0.792372,0.979301,0.0786289,0.440678,0.190875,0.582484,0.377952,0.678164,0.387696,0.867725,0.565944,0.0603898,0.507631,0.385761,0.0465988,0.712548,0.0727051,0.960903,0.330635,0.644047,0.437303,0.639805,0.0398591,0.0622845,0.0655961,0.720794,0.0978258,0.324565,0.338659,0.843181,0.0196149,0.0152041,0.0341501,0.151347,0.433347,0.280838,0.447221,0.628866,0.079268,0.269643,0.700903,0.382533,0.371292,0.893527,0.554333,0.672967,0.997748,0.804974,0.963515,0.101341,0.464951,0.335188,0.0578141,0.416347,0.1994,0.379546,0.743361,0.255973,0.612442,0.51798,0.741361,0.940033,0.921275,0.260312,0.659711,0.54946,0.502104,0.00252736,0.241705,0.306906,0.459894,0.493416,0.632983,0.401305,0.703584,0.00133187,0.629809,0.301501,0.443996,0.623656,0.363368,0.298325,0.876853,0.891098,0.00397283,0.886719,0.248248,0.647728,0.469228,0.619323,0.0485641,0.508203,0.961316,0.677299,0.153992,0.369507,0.578599,0.826053,0.454864,0.848599,0.906517,0.793329,0.785855,0.198638,0.282657,0.6868,0.145054,0.605928,0.307569,0.645465,0.226731,0.460156,0.328311,0.18605,0.443955,0.134789,0.760364,0.757385,0.197623,0.139221,0.617262,0.265007,0.644612,0.383844,0.304229,0.748423,0.699864,0.338951,0.345763,0.184635,0.390653,0.72833,0.16033,0.673613,0.853005,0.553609,0.363288,0.711583,0.385134,0.872954,0.692716,0.594369,0.137223,0.552838,0.643795,0.312498,0.505596,0.460736,0.934858,0.799145,0.656716,0.775,0.437565,0.734827,0.1345,0.988054,0.52714,0.759481,0.636694,0.819458,0.141472,0.0725619,0.359585,0.442199,0.809153,0.454895,0.835806,0.386981,0.638297,0.551575,0.0925571,0.550471,0.524629,0.913045,0.47205,0.758705,0.592514,0.942912,0.61224,0.863581,0.949915,0.265648,0.133635,0.773487,0.399101,0.510226,0.759185,0.0975928,0.0257653,0.946358,0.428468,0.284187,0.522102,0.775191,0.598248,0.0101306,0.705764,0.417033,0.428852,0.538646,0.0814349,0.813113,0.484327,0.5376,0.12979,0.721014,0.588886,0.104133,0.208147,0.49217,0.785723,0.504186,0.669482,0.942948,0.807708,0.142721,0.882844,0.818466,0.529102,0.695128,0.472851,0.593769,0.195171,0.8296,0.976678,0.982429,0.209829,0.816999,0.0685286,0.344244,0.303348,0.621029,0.888131,0.53338,0.866629,0.92663,0.101231,0.906005,0.711654,0.0749698,0.0347723,0.757054,0.520224,0.875496,0.823899,0.498867,0.171812,0.127418,0.989832,0.758559,0.973094,0.714598,0.481688,0.962241,0.136871,0.439445,0.0722588,0.289881,0.0812961,0.465282,0.713905,0.831784,0.195613,0.48002,0.359863,0.17139,0.382019,0.507727,0.207219,0.610913,0.418696,0.0693859,0.359573,0.38804,0.300497,0.994956,0.123162,0.995237,0.374196,0.882171,0.768483,0.312411,0.912308,0.746193,0.172024,0.777475,0.746978,0.0333965,0.525381,0.527418,0.0284502,0.862974,0.556188,0.935469,0.760867,0.0516306,0.832973,0.539079,0.0545225,0.402893,0.53076,0.406196,0.313601,0.634978,0.280217,0.179722,0.217635,0.214345,0.436419,0.0202889,0.244211,0.307188,0.717643,0.0187871,0.108067,0.272476,0.655812,0.970842,0.381155,0.639961,0.652749,0.666459,0.716664,0.528831,0.194715,0.243044,0.904941,0.587097,0.593604,0.968793,0.504112,0.829444,0.164549,0.913259,0.78833,0.558843,0.0389336,0.0350364,0.61136,0.879928,0.935214,0.754123,0.60245,0.875649,0.862454,0.919265,0.510596,0.603409,0.651872,0.157171,0.548969,0.535613,0.435283,0.163125,0.266136,0.722593,0.272438,0.0563053,0.255946,0.671702,0.424483,0.000230432,0.23756,0.716661,0.157668,0.842727,0.897625,0.374815,0.247312,0.960931,0.747705,0.766559,0.115916,0.527898,0.417627,0.357695,0.875733,0.780325,0.378724,0.957012,0.976445,0.0673286,0.973784,0.852378,0.0684618,0.780987,0.928092,0.821221,0.572351,0.489802,0.497436,0.134136,0.0471144,0.377662,0.679102,0.672227,0.0417699,0.687947,0.345392,0.064351,0.447943,0.468424,0.796613,0.114254,0.704384,0.533448,0.465719,0.515787,0.328915,0.3925,0.857126,0.812184,0.344994,0.741615,0.532671,0.940794,0.0741261,0.896367,0.73011,0.489794,0.210466,0.264705,0.839963,0.0963157,0.960936,0.881475,0.879666,0.930321,0.299131,0.867417,0.353013,0.37216,0.132718,0.852988,0.862846,0.708271,0.927372,0.612482,0.622756,0.120308,0.834932,0.511355,0.681271,0.800905,0.879543,0.593335,0.688728,0.918687,0.937316,0.985134,0.434471,0.0153503,0.91354,0.729999,0.894646,0.930265,0.458439,0.572544,0.503456,0.660904,0.406641,0.786874,0.633864,0.043581,0.943351,0.847179,0.831368,0.879655,0.0511292,0.522034,0.594965,0.969663,0.652944,0.886791,0.010639,0.00812542,0.19549,0.267643,0.216661,0.53346,0.569085,0.0778522,0.425074,0.0218056,0.883576,0.214443,0.192587,0.671636,0.535962,0.782741,0.716081,0.65768,0.705032,0.53618,0.09552,0.605846,0.978561,0.23776,0.162237,0.390052,0.191829,0.691815,0.553436,0.655827,0.878266,0.698783,0.90654,0.51128,0.272575,0.456887,0.329446,0.335579,0.750931,0.935932,0.15301,0.581236,0.214276,0.44772,0.441605,0.0698146,0.185522,0.389562,0.761569,0.827038,0.35632,0.117612,0.313648,0.372576,0.912656,0.747874,0.414545,0.356376,0.960702,0.0427305,0.318283,0.363749,0.607047,0.541763,0.213246,0.219339,0.966079,0.564344,0.343458,0.435701,0.659625,0.466246,0.500823,0.0994042,0.0684599,0.531735,0.338553,0.762565,0.385102,0.669622,0.743101,0.692731,0.983446,0.576387,0.208261,0.774081,0.668801,0.131184,0.429501,0.77372,0.99316,0.576306,0.218083,0.925795,0.720083,0.761871,0.87934,0.14122,0.152073,0.346925,0.436946,0.850946,0.513507,0.502855,0.537525,0.395207,0.327764,0.596919,0.114195,0.532455,0.519286,0.665953,0.672014,0.709711,0.0919113,0.153033,0.512921,0.341868,0.864322,0.121301,0.587101,0.968645,0.318941,0.641901,0.229011,0.847686,0.303318,0.364537,0.592756,0.619442,0.442145,0.165625,0.768262,0.24328,0.0961322,0.822527,0.937115,0.306933,0.413962,0.609613,0.855615,0.861734,0.0073216,0.278677,0.198337,0.949423,0.0258313,0.284753,0.339289,0.417753,0.601112,0.0199604,0.344856,0.281389,0.8642,0.966902,0.0330223,0.0351908,0.386604,0.297253,0.11158,0.180428,0.522429,0.42521,0.643378,0.998953,0.0296088,0.142861,0.432834,0.202931,0.771956,0.833967,0.0528846,0.0636555,0.157693,0.645254,0.216369,0.960996,0.842756,0.090692,0.310543,0.724236,0.233594,0.968641,0.34142,0.579802,0.755714,0.405655,0.0369427,0.221496,0.678741,0.207789,0.341443,0.320793,0.480591,0.926566,0.543058,0.65218,0.296196,0.506122,0.0829256,0.134114,0.926475,0.148873,0.017808,0.0401411,0.930572,0.251932,0.297701,0.302799,0.193714,0.363778,0.176054,0.387205,0.32104,0.589932,0.379949,0.466936,0.522507,0.437063,0.569351,0.173646,0.423401,0.985339,0.74529,0.435929,0.380101,0.97355,0.0362355,0.892997,0.187416,0.950723,0.348515,0.9616,0.573026,0.00768077,0.214155,0.0435842,0.0618429,0.833066,0.0568255,0.272482,0.727524,0.145678,0.586754,0.914138,0.985222,0.457528,0.00607353,0.891125,0.966917,0.414849,0.76551,0.544255,0.0350101,0.868417,0.156883,0.540121,0.566816,0.32148,0.634256,0.0233616,0.444011,0.782505,0.633107,0.842956,0.661648,0.675693,0.900769,0.226776,0.593935,0.217345,0.684014,0.141415,0.796204,0.904107,0.307122,0.673346,0.122239,0.882076,0.492956,0.266912,0.549306,0.837812,0.223485,0.206133,0.0732296,0.0158008,0.154655,0.186367,0.859256,0.220499,0.400207,0.286084,0.518666,0.537663,0.933135,0.511341,0.782402,0.627122,0.670091,0.748101,0.900022,0.988474,0.304796,0.813147,0.566932,0.453255,0.750524,0.874929,0.528445,0.352411,0.418105,0.939007,0.947797,0.23903,0.458739,0.0949592,0.333762,0.549607,0.289529,0.373024,0.704979,0.745487,0.699085,0.126439,0.501418,0.389956,0.064417,0.240017,0.144895,0.996332,0.617747,0.827191,0.542293,0.0813383,0.68828,0.0928985,0.463486,0.402192,0.0689722,0.206427,0.960201,0.682788,0.507579,0.441543,0.744685,0.949043,0.345423,0.15352,0.325704,0.813517,0.921064,0.823069,0.847571,0.348323,0.36707,0.560952,0.029295,0.584138,0.819678,0.517175,0.0885099,0.12892,0.891768,0.481215,0.37374,0.221407,0.63322,0.707988,0.0678046,0.258869,0.976741,0.917158,0.958281,0.518871,0.924043,0.30163,0.0868956,0.404315,0.306427,0.562088,0.0833273,0.951015,0.400567,0.0611944,0.104957,0.598181,0.871078,0.461703,0.944813,0.799608,0.12208,0.675244,0.455002,0.692101,0.84399,0.574682,0.916532,0.127503,0.377287,0.524534,0.458378,0.605379,0.931946,0.0757691,0.518508,0.473552,0.512894,0.0809212,0.0162401,0.511578,0.608441,0.0470537,0.58621,0.362501,0.868815,0.783823,0.560766,0.247184,0.269692,0.333546,0.471509,0.581563,0.99654,0.139057,0.168876,0.47339,0.526603,0.806848,0.320987,0.427686,0.358087,0.107876,0.199751,0.0363414,0.381849,0.103884,0.41233,0.862308,0.436058,0.819627,0.0452831,0.673172,0.83318,0.164214,0.273585,0.383752,0.308841,0.412577,0.58767,0.176242,0.272803,0.891705,0.274567,0.49732,0.722453,0.0961844,0.595876,0.565638,0.677756,0.597254,0.76589,0.194977,0.533073,0.835501,0.0115446,0.421158,0.385994,0.712552,0.162733,0.450455,0.868714,0.46376,0.664827,0.793907,0.992563,0.992103,0.600976,0.115271,0.356514,0.31477,0.371741,|0.402932,0.718372,0.993526,0.864056,0.190215,0.798593,0.93578,0.255236,0.869411,0.408254,0.190996,0.534719,0.355425,0.431992,0.48043,0.360036,0.550318,0.935045,0.795964,0.972479,0.81516,0.0236108,0.450149,0.586459,0.464708,0.314586,0.548623,0.686119,0.540557,0.768266,0.732237,0.447861,0.926296,0.220322,0.751134,0.676215,0.127603,0.32324,0.661844,0.574214,0.57954,0.5641,0.982754,0.25007,0.828732,0.0178044,0.97761,0.399939,0.596066,0.929585,0.85441,0.769269,0.962106,0.108551,0.946685,0.0925844,0.459176,0.839141,0.613116,0.219998,0.575929,0.489675,0.368859,0.455075,0.620775,0.437108,0.414255,0.589663,0.266389,0.276804,0.190636,0.585925,0.799078,0.952752,0.471869,0.787786,0.769177,0.167908,0.1496,0.450684,0.4051,0.294095,0.141915,0.889411,0.46665,0.654014,0.414009,0.384703,0.168188,0.811058,0.477716,0.673525,0.339895,0.10699,0.130016,0.668737,0.729247,0.423969,0.0752156,0.511742,0.695395,0.380541,0.509361,0.431848,0.410436,0.0988339,0.557485,0.0917065,0.537713,0.444648,0.431155,0.185668,0.28788,0.598413,0.492225,0.820679,0.98846,0.883587,0.352573,0.0356224,0.405459,0.639112,0.277977,0.17729,0.110527,0.328596,0.192727,0.208615,0.286096,0.680809,0.0722097,0.594773,0.0452908,0.998307,0.644922,0.428081,0.435977,0.665286,0.588437,0.540638,0.942249,0.0305154,0.0701566,0.90946,0.638904,0.567754,0.231453,0.865095,0.735874,0.586418,0.04067,0.978857,0.781272,0.15389,0.5606,0.330162,0.132609,0.620304,0.784099,0.531944,0.224736,0.438519,0.668438,0.845622,0.992492,0.853512,0.62863,0.2576,0.441898,0.87628,0.403465,0.217988,0.335915,0.876664,0.629137,0.063567,0.95501,0.500278,0.364436,0.158715,0.718605,0.352269,0.620641,0.970009,0.0981746,0.953135,0.106154,0.586815,0.747327,0.666956,0.210993,0.600136,0.27751,0.892537,0.902192,0.885254,0.899159,0.64353,0.863222,0.0946884,0.137852,0.715441,0.0508867,0.312813,0.788375,0.633152,0.290624,0.32397,0.0209012,0.31979,0.225363,0.528251,0.728103,0.906283,0.379742,0.769015,0.338302,0.159354,0.93384,0.336179,0.714244,0.616031,0.623333,0.430174,0.779836,0.839403,0.178864,0.678842,0.12019,0.4492,0.938929,0.451374,0.780656,0.511225,0.34794,0.575396,0.639991,0.0805235,0.686978,0.998424,0.132783,0.753163,0.819821,0.125811,0.313039,0.411393,0.0911363,0.153696,0.966912,0.353121,0.54831,0.227211,0.799962,0.9129,0.411819,0.0497131,0.742291,0.254519,0.748944,0.638729,0.869551,0.698385,0.427342,0.833472,0.0340938,0.767612,0.62734,0.965877,0.0476711,0.278142,0.738381,0.220996,0.620468,0.87995,0.595706,0.0246689,0.208566,0.00431341,0.285101,0.0897206,0.131867,0.0991056,0.376729,0.761447,0.541585,0.71967,0.0352271,0.605197,0.251727,0.739566,0.713305,0.311971,0.44703,0.639362,0.99482,0.455455,0.375102,0.871649,0.373448,0.298024,0.703962,0.507809,0.596356,0.555696,0.632131,0.575829,0.537259,0.288654,0.229364,0.78116,0.650967,0.524846,0.878147,0.986092,0.680036,0.0135459,0.77751,0.20394,0.828315,0.372923,0.61211,0.103438,0.319264,0.360103,0.291908,0.294424,0.148972,0.0405366,0.169291,0.88973,0.0407814,0.0277753,0.235313,0.658594,0.0320535,0.0722554,0.842262,0.842885,0.716574,0.30855,0.509492,0.048916,0.445974,0.657832,0.0730726,0.76539,0.680362,0.931287,0.614512,0.423869,0.74209,0.866169,0.748557,0.0344409,0.567693,0.403741,0.942998,0.305376,0.887803,0.494276,0.0714238,0.975197,0.813911,0.513329,0.888105,0.373996,0.0466846,0.126264,0.823055,0.911637,0.582597,0.89006,0.187906,0.924075,0.480006,0.191696,0.271807,0.592161,0.47082,0.83676,0.361746,0.935906,0.409995,0.345453,0.833799,0.988613,0.856432,0.56249,0.162775,0.260762,0.23727,0.834448,0.0888529,0.423635,0.504193,0.887184,0.520231,0.686572,0.04689,0.721172,0.545614,0.982404,0.128241,0.479474,0.252899,0.866395,0.374221,0.342136,0.868309,0.550131,0.287253,0.770528,0.172787,0.586908,0.847493,0.984409,0.174322,0.0982581,0.16508,0.594231,0.134188,0.564397,0.810898,0.844162,0.945632,0.324011,0.667549,0.185372,0.660083,0.890977,0.8888,0.13304,0.069016,0.355077,0.287758,0.155728,0.0418691,0.701182,0.488439,0.0968553,0.908401,0.995987,0.697464,0.701428,0.309993,0.13989,0.582933,0.0684533,0.409169,0.404389,0.628989,0.312443,0.973071,0.567653,0.520043,0.704412,0.0811505,0.098581,0.0284048,0.607463,0.733369,0.269519,0.541297,0.875595,0.475346,0.686277,0.78301,0.117567,0.109882,0.615984,0.731172,0.592716,0.96427,0.00291413,0.214585,0.552115,0.0382199,0.402538,0.0321483,0.97958,0.216044,0.997881,0.214172,0.197748,0.877571,0.796427,0.622406,0.00855285,0.463586,0.212377,0.020981,0.538951,0.638043,0.735662,0.18442,0.885633,0.47356,0.726587,0.644898,0.0191478,0.0265307,0.650694,0.659523,0.449481,0.0763483,0.964932,0.0901131,0.248431,0.595794,0.587756,0.474956,0.643275,0.634255,0.988524,0.247891,0.180259,0.832111,0.477558,0.95096,0.251694,0.229406,0.479659,0.102594,0.287085,0.215962,0.358425,0.122953,0.667642,0.696117,0.0631918,0.271346,0.239519,0.305869,0.452522,0.447048,0.775538,0.16729,0.57525,0.423531,0.00988913,0.936518,0.667752,0.986688,0.0547305,0.284951,0.99648,0.128424,0.735304,0.726565,0.440375,0.943439,0.799195,0.159982,0.954253,0.386554,0.688402,0.756012,0.780618,0.332851,0.656885,0.119209,0.800456,0.849137,0.160011,0.0569562,0.610597,0.0729699,0.745253,0.116857,0.575328,0.119804,0.969858,0.47872,0.92146,0.13429,0.372261,0.00934601,0.899218,0.406238,0.063409,0.676206,0.755577,0.410176,0.187531,0.681743,0.643568,0.758293,0.989076,0.755886,0.389284,0.520169,0.65254,0.152445,0.740203,0.906745,0.238644,0.739106,0.928391,0.684577,0.411417,0.853163,0.304988,0.212804,0.274911,0.651323,0.764933,0.856904,0.570728,0.683607,0.452094,0.623894,0.245669,0.731654,0.256108,0.271994,0.31122,0.244019,0.537616,0.204856,0.960661,0.704639,0.797038,0.00385046,0.866119,0.43123,0.940988,0.206075,0.114769,0.556913,0.776837,0.108949,0.318956,0.934054,0.0800981,0.358699,0.211452,0.676814,0.886896,0.0932281,0.306152,0.0781536,0.906554,0.0411363,0.325984,0.263948,0.0327846,0.300487,0.132894,0.832965,0.340328,0.246594,0.739611,0.670673,0.129646,0.690408,0.49293,0.320743,0.406689,0.226708,0.142118,0.0776024,0.132321,0.238696,0.216546,0.127478,0.574288,0.199175,0.727628,0.957438,0.555795,0.677833,0.674803,0.522003,0.0182644,0.298737,0.406691,0.00454313,0.0201407,0.826067,0.479317,0.275469,0.322716,0.97633,0.973474,0.535025,0.344587,0.380559,0.11318,0.250002,0.509723,0.735309,0.880446,0.860923,0.998686,0.450466,0.335392,0.614752,0.876507,0.260789,0.72358,0.125119,0.506109,0.826677,0.587979,0.835972,0.993428,0.46856,0.741182,0.436614,0.662424,0.0367494,0.334393,0.915741,0.45114,0.387911,0.746344,0.847713,0.369438,0.297803,0.439061,0.999509,0.0527126,0.524691,0.45018,0.636087,0.368246,0.622131,0.989401,0.201459,0.672099,0.656916,0.160846,0.525892,0.338441,0.0500358,0.842992,0.0956241,0.361285,0.609798,0.167197,0.841624,0.622663,0.986321,0.375034,0.874068,0.823147,0.362401,0.551828,0.549323,0.665023,0.883655,0.764912,0.501054,0.150016,0.491159,0.73686,0.318959,0.197933,0.773687,0.35768,0.31584,0.981143,0.489345,0.0508316,0.988897,0.589478,0.576188,0.911587,0.576512,0.979418,0.367833,0.835839,0.298037,0.613941,0.146979,0.203261,0.64892,0.978985,0.0320356,0.0108852,0.201072,0.82359,0.634551,0.356365,0.6571,0.67875,0.134264,0.307953,0.404525,0.294879,0.4969,0.0964269,0.0730472,0.840871,0.542848,0.0873976,0.960717,0.501578,0.198988,0.296405,0.0268211,0.0844363,0.662001,0.611906,0.236463,0.660899,0.347021,0.429185,0.777722,0.0982108,0.964453,0.658906,0.506102,0.705438,0.936086,0.453328,0.579997,0.173739,0.907166,0.579713,0.774078,0.370963,0.890802,0.903205,0.465033,0.740854,0.998455,0.0142031,0.986212,0.778276,0.131623,0.464785,0.935794,0.912278,0.46799,0.213537,0.349434,0.328174,0.113771,0.931834,0.826097,0.970394,0.833223,0.44077,0.0857002,0.869538,0.640397,0.56239,0.205146,0.439937,0.480834,0.252681,0.705401,0.962702,0.798461,0.731075,0.965497,0.0964895,0.469662,0.484181,0.032537,0.783998,0.329128,0.296979,0.260323,0.682574,0.0749763,0.662288,0.0358609,0.577612,0.997953,0.145784,0.498394,0.916238,0.829658,0.982456,0.397357,0.810579,0.816563,0.87034,0.27727,0.251909,0.772656,0.693185,0.742796,0.423297,0.0592086,0.327699,0.950785,0.922684,0.650963,0.403244,0.811363,0.694974,0.148071,0.430661,0.0883912,0.578047,0.664562,0.477397,0.780012,0.0443229,0.994392,0.232498,0.732857,0.730974,0.941449,0.646848,0.302845,0.0698837,0.311253,0.206104,0.844684,0.143824,0.353925,0.254536,0.180126,0.369708,0.873638,0.172526,0.746875,0.472479,0.135789,0.08762,0.824269,0.0964216,0.525355,0.616047,0.478518,0.269247,0.263826,0.764313,0.707093,0.421633,0.92865,0.775183,0.549871,0.670295,0.749431,0.760572,0.937424,0.944283,0.470632,0.326646,0.491952,0.833771,0.46297,0.0369127,0.982388,0.687511,0.538582,0.790653,0.749476,0.279203,0.48192,0.272252,0.798909,0.0011003,0.0519489,0.48006,0.489453,0.995714,0.0714158,0.970637,0.600918,0.315569,0.680095,0.949299,0.483518,0.444526,0.58988,0.247462,0.417772,0.691901,0.648262,0.757517,0.217633,0.681018,0.529815,0.254831,0.522294,0.605369,0.368257,0.444467,0.976276,0.636488,0.212706,0.0761283,0.295718,0.862068,0.184422,0.895935,0.12769,0.540384,0.644995,0.412209,0.493401,0.600472,0.821532,0.604846,|0.0689942,0.199196,0.719408,0.693974,0.900221,0.00952119,0.189786,0.451655,0.536115,0.111794,0.0654682,0.987524,0.416459,0.0889565,0.14931,0.33247,0.509818,0.493503,0.450047,0.267535,0.780323,0.967039,0.155171,0.7466,0.36999,0.215998,0.239852,0.742321,0.0288749,0.35015,0.274247,0.956121,0.13355,0.33811,0.326761,0.574064,0.918905,0.629309,0.62778,0.688331,0.497344,0.00512928,0.0874897,0.674538,0.17771,0.802207,0.305076,0.0772587,0.482441,0.481786,0.501942,0.299911,0.559599,0.207161,0.827632,0.0879564,0.188247,0.0309848,0.330139,0.446565,0.176628,0.537526,0.35088,0.243353,0.650237,0.000521243,0.650715,0.31029,0.666372,0.999157,0.275858,0.89701,0.925613,0.355567,0.74521,0.887311,0.581854,0.237583,0.826955,0.821471,0.90601,0.533305,0.59195,0.292953,0.421844,0.380474,0.121056,0.696793,0.525686,0.238149,0.267071,0.232748,0.739954,0.788414,0.822577,0.670586,0.570635,0.6828,0.166846,0.00602424,0.00198889,0.761555,0.743943,0.227615,0.207142,0.110883,0.61952,0.00745863,0.340097,0.895979,0.20227,0.113939,0.0657767,0.572679,0.355405,0.237015,0.058453,0.828895,0.620692,0.13973,0.336019,0.263702,0.566135,0.638292,0.855092,0.650125,0.46844,0.152494,0.713927,0.923218,0.0991048,0.40414,0.818174,0.0156193,0.753119,0.314734,0.176095,0.780678,0.656243,0.127904,0.228953,0.565748,0.759603,0.740399,0.671525,0.766419,0.888621,0.991653,0.279578,0.935565,0.194945,0.928873,0.507451,0.421544,0.50479,0.819332,0.318421,0.239892,0.146625,0.851436,0.549671,0.313033,0.224975,0.167544,0.970417,0.322083,0.814762,0.407604,0.0796762,0.173904,0.245278,0.8735,0.214685,0.72946,0.270789,0.844389,0.981346,0.121515,0.57421,0.341328,0.298262,0.937897,0.123306,0.101942,0.281678,0.146628,0.0494407,0.791457,0.70463,0.489158,0.42134,0.831911,0.478227,0.672231,0.865794,0.896165,0.178603,0.39425,0.0773187,0.700356,0.220173,0.871351,0.686599,0.133242,0.83701,0.547802,0.361985,0.243255,0.48429,0.0315821,0.182012,0.462964,0.364698,0.832525,0.160134,0.869571,0.72173,0.910347,0.75575,0.753198,0.223262,0.612932,0.965739,0.0649664,0.854259,0.0876343,0.199108,0.665115,0.717904,0.812288,0.242048,0.0621479,0.971994,0.39972,0.0435596,0.770902,0.534318,0.351075,0.0921562,0.174582,0.503136,0.943285,0.0506192,0.0567846,0.0883082,0.947551,0.661699,0.943319,0.47809,0.901862,0.650695,0.0731803,0.860461,0.278325,0.0325777,0.855347,0.538015,0.802518,0.141135,0.549848,0.0474406,0.206296,0.857651,0.584833,0.00873363,0.873688,0.936843,0.722748,0.221431,0.437559,0.386151,0.848535,0.36684,0.475967,0.458831,0.0713636,0.322707,0.339179,0.358827,0.798723,0.0167019,0.0283427,0.900763,0.770464,0.934424,0.487069,0.564247,0.395716,0.869434,0.135329,0.0828515,0.122714,0.590946,0.773641,0.593743,0.898219,0.222177,0.0772415,0.201657,0.0645604,0.512804,0.604746,0.885491,0.895487,0.331021,0.858654,0.80265,0.767635,0.448993,0.0718744,0.955833,0.234403,0.57369,0.255729,0.095084,0.517348,0.251344,0.469214,0.208115,0.165505,0.850677,0.493022,0.487787,0.37738,0.506574,0.858226,0.760583,0.278847,0.333374,0.328304,0.571225,0.76736,0.327222,0.252141,0.597711,0.63339,0.115184,0.280676,0.397282,0.362069,0.439634,0.940428,0.185699,0.726865,0.898213,0.891411,0.717396,0.367577,0.363598,0.00582117,0.0135575,0.137383,0.161457,0.166552,0.74695,0.634105,0.673306,0.146907,0.622059,0.102174,0.0231913,0.161697,0.784604,0.900145,0.0593703,0.974956,0.793249,0.0933728,0.994412,0.383101,0.861979,0.676349,0.434287,0.646422,0.648352,0.942334,0.851431,0.0852447,0.237703,0.310124,0.0831196,0.142282,0.316987,0.163428,0.941168,0.072962,0.150248,0.584084,0.276304,0.0777106,0.780125,0.937151,0.74228,0.439013,0.251713,0.588891,0.428326,0.649467,0.0940554,0.0189396,0.162725,0.313999,0.559219,0.524506,0.354477,0.736399,0.716519,0.397821,0.303933,0.916161,0.273096,0.277746,0.179244,0.541807,0.000853121,0.050922,0.620329,0.602971,0.96118,0.175673,0.205639,0.945343,0.253994,0.57728,0.0580801,0.51804,0.0785363,0.361053,0.650118,0.335532,0.799412,0.220227,0.744384,0.434543,0.513886,0.558877,0.653887,0.533617,0.127537,0.513328,0.932391,0.802886,0.335882,0.0314672,0.922308,0.28606,0.578399,0.430881,0.931423,0.380023,0.16209,0.568864,0.328626,0.772996,0.552395,0.756209,0.954046,0.818389,0.141132,0.148323,0.217936,0.450437,0.373829,0.561556,0.513384,0.270996,0.627875,0.792411,0.540857,0.891919,0.621932,0.881078,0.356231,0.468917,0.583157,0.362674,0.901203,0.480949,0.937272,0.0333033,0.579104,0.0706095,0.388595,0.320977,0.514095,0.261041,0.385182,0.082503,0.0759315,0.209955,0.40563,0.61078,0.889725,0.813704,0.0546386,0.36365,0.470708,0.0710741,0.0841675,0.593301,0.239688,0.691357,0.408837,0.41799,0.768948,0.147724,0.0251237,0.109053,0.904412,0.951641,0.904972,0.109024,0.766088,0.76234,0.322074,0.704641,0.078228,0.83598,0.281866,0.494346,0.903573,0.764396,0.921278,0.93605,0.085002,0.182573,0.808105,0.351928,0.234425,0.167846,0.242572,0.0608634,0.95848,0.701649,0.812677,0.21623,0.0439432,0.170398,0.0658901,0.690703,0.29748,0.622442,0.135201,0.965964,0.581588,0.816073,0.128749,0.113246,0.436095,0.209073,0.434389,0.490007,0.45443,0.558069,0.259622,0.176993,0.307871,0.198299,0.215079,0.316642,0.192403,0.878425,0.320585,0.217537,0.557711,0.503667,0.0859597,0.729659,0.946658,0.651735,0.342878,0.38272,0.664312,0.291776,0.813027,0.0822001,0.597941,0.144244,0.463986,0.509521,0.214657,0.644928,0.833256,0.910328,0.572726,0.410554,0.990098,0.650589,0.625426,0.918811,0.135611,0.168647,0.350466,0.097084,0.173213,0.959346,0.287666,0.162826,0.792291,0.838428,0.798491,0.43631,0.0527304,0.642025,0.334779,0.197022,0.767353,0.926208,0.154257,0.734436,0.656655,0.309918,0.695688,0.842144,0.231235,0.996863,0.35997,0.537743,0.142123,0.662732,0.0844489,0.909677,0.322014,0.800074,0.718591,0.546305,0.633512,0.671718,0.17107,0.88906,0.172408,0.869774,0.470971,0.342636,0.800314,0.447519,0.902279,0.648108,0.270637,0.959819,0.851638,0.114476,0.972137,0.491258,0.488006,0.0682487,0.0389631,0.554238,0.57307,0.0634894,0.722716,0.709072,0.455052,0.139828,0.682772,0.160475,0.649853,0.393979,0.84751,0.241567,0.777827,0.386389,0.361901,0.0117977,0.506512,0.746972,0.284215,0.500614,0.840074,0.540484,0.193512,0.859353,0.990797,0.0721579,0.690589,0.169494,0.709226,0.525768,0.367346,0.133368,0.66088,0.865276,0.596743,0.169611,0.071334,0.51337,0.107749,0.446976,0.434443,0.479533,0.331626,0.580106,0.948885,0.10075,0.100346,0.962841,0.437836,0.78269,0.417871,0.512142,0.799586,0.952063,0.554506,0.178321,0.903727,0.259256,0.875427,0.208383,0.645501,0.284847,0.831536,0.739141,0.324789,0.642149,0.231675,0.304783,0.106536,0.872951,0.867882,0.78535,0.0192718,0.304171,0.828342,0.799053,0.116215,0.707109,0.767659,0.723477,0.22936,0.790972,0.772677,0.0754241,0.760972,0.935927,0.833865,0.653936,0.399646,0.726084,0.727097,0.824522,0.844107,0.337656,0.582405,0.126653,0.702141,0.911941,0.925879,0.0746078,0.11229,0.433393,0.452376,0.918782,0.762142,0.534971,0.577077,0.513674,0.279785,0.683749,0.21226,0.360801,0.094013,0.18345,0.318195,0.738683,0.0280767,0.799068,0.399859,0.268052,0.893749,0.377082,0.445822,0.137102,0.0724867,0.764887,0.0508624,0.573283,0.849053,0.24148,0.410546,0.928193,0.183091,0.360288,0.348138,0.165992,0.518924,0.364006,0.634999,0.366456,0.576598,0.123603,0.825239,0.293112,0.928431,0.40817,0.791356,0.135722,0.215079,0.652295,0.790799,0.318636,0.512372,0.120449,0.294606,0.954965,0.254642,0.287061,0.173825,0.357644,0.20637,0.212056,0.135121,0.920427,0.105381,0.417889,0.384744,0.52031,0.178099,0.776323,0.626779,0.508274,0.299491,0.216313,0.309595,0.485705,0.685221,0.646563,0.350164,0.856833,0.989055,0.801309,0.491066,0.310916,0.506305,0.318201,0.801063,0.167097,0.818037,0.848445,0.956771,0.993368,0.134741,0.14023,0.102433,0.790656,0.00328249,0.710047,0.310657,0.821831,0.501627,0.61997,0.583139,0.881929,0.443751,0.849081,0.0419974,0.0664421,0.901975,0.560872,0.358602,0.518237,0.906656,0.212243,0.0315608,0.278286,0.901507,0.838664,0.524054,0.116138,0.978949,0.454933,0.650673,0.165743,0.988182,0.22602,0.490819,0.552929,0.606583,0.370298,0.418029,0.994149,0.84071,0.598797,0.55698,0.858539,0.293288,0.248659,0.195537,0.210955,0.243237,0.993773,0.484667,0.200333,0.532735,0.828661,0.350256,0.388921,0.745477,0.605427,0.579389,0.361844,0.515715,0.585961,0.0423985,0.817786,0.0483004,0.888547,0.760568,0.262847,0.53669,0.905535,0.902946,0.0587434,0.502245,0.705442,0.784278,0.0786523,0.265206,0.677271,0.874523,0.16424,0.100446,0.480745,0.837052,0.422732,0.382651,0.713401,0.152178,0.0415996,0.491093,0.0554888,0.807965,0.641449,0.706937,0.71985,0.43956,0.941899,0.54927,0.562688,0.657684,0.0482258,0.536338,0.137265,0.76928,0.683953,0.983503,0.492168,0.775657,0.921423,0.742088,0.755838,0.228581,0.858789,0.929199,0.436697,0.457543,0.981089,0.274368,0.364849,0.532829,0.830455,0.393175,0.53698,0.889179,0.625494,0.867407,0.24006,0.885348,0.213891,0.609844,0.256438,0.83572,0.644782,0.154826,0.475145,0.711882,0.363482,0.364205,0.770273,0.402723,0.997471,0.345215,0.256137,0.547537,0.866241,0.0974681,0.201231,0.712227,0.93015,0.0401488,0.982934,0.917135,0.679524,0.0452458,0.214792,0.869148,0.486982,0.0641419,0.984136,0.283497,0.0181533,|0.120225,0.360266,0.13439,0.594773,0.439475,0.980334,0.0641077,0.784391,0.520923,0.0357882,0.330257,0.199453,0.426641,0.494943,0.660857,0.60954,0.610372,0.414447,0.426775,0.656533,0.625407,0.92842,0.482533,0.49564,0.831638,0.838305,0.966756,0.795773,0.89775,0.692667,0.32679,0.799455,0.640497,0.109281,0.00258166,0.54162,0.698423,0.377832,0.40081,0.0114791,0.480031,0.00366497,0.0566825,0.775992,0.297018,0.914408,0.275677,0.35378,0.598677,0.542092,0.536435,0.273289,0.699924,0.262306,0.306831,0.99065,0.288718,0.51196,0.978026,0.0991323,0.188943,0.0432823,0.223398,0.745372,0.276421,0.315099,0.921535,0.0215006,0.610021,0.791039,0.161952,0.238283,0.264669,0.822515,0.649797,0.987854,0.424247,0.744618,0.529759,0.495703,0.352701,0.576502,0.611896,0.886132,0.308894,0.3514,0.7448,0.582733,0.847353,0.000644445,0.0460169,0.0856893,0.977649,0.506036,0.456181,0.859058,0.759809,0.235844,0.403173,0.966676,0.714838,0.115395,0.267197,0.351729,0.0910622,0.215211,0.948716,0.228336,0.514081,0.0760643,0.300061,0.537878,0.147853,0.0592643,0.208846,0.317922,0.603934,0.287762,0.848303,0.410247,0.575735,0.715858,0.67382,0.463464,0.508471,0.469905,0.234305,0.911942,0.238357,0.547465,0.34386,0.323509,0.467145,0.0135373,0.505931,0.743623,0.918853,0.766862,0.058482,0.170145,0.453506,0.852882,0.193401,0.26829,0.258768,0.878097,0.818738,0.202878,0.304627,0.649967,0.14759,0.895991,0.263564,0.326856,0.703081,0.0734905,0.684828,0.0869747,0.04013,0.929253,0.75993,0.613059,0.335363,0.127829,0.0171854,0.944396,0.91841,0.388198,0.698823,0.869135,0.0958533,0.122237,0.57211,0.505415,0.955192,0.410023,0.370757,0.70878,0.649717,0.461587,0.221871,0.983189,0.0660323,0.486661,0.500535,0.563726,0.314691,0.52748,0.920176,0.719447,0.333569,0.954751,0.835175,0.140327,0.104693,0.846074,0.284944,0.120657,0.45439,0.122915,0.271186,0.529711,0.499151,0.145891,0.832869,0.860141,0.18554,0.332413,0.50315,0.71469,0.0188223,0.152961,0.260513,0.775582,0.710669,0.246213,0.676389,0.321693,0.356999,0.424868,0.0554679,0.995525,0.17458,0.567289,0.380943,0.262108,0.429742,0.479981,0.87539,0.580447,0.597753,0.657233,0.128732,0.895452,0.0276023,0.360008,0.791355,0.674673,0.229426,0.0820693,0.76043,0.549236,0.17868,0.943945,0.569181,0.349027,0.662094,0.62437,0.604003,0.805365,0.0427862,0.235025,0.0653892,0.433326,0.0341278,0.592625,0.264594,0.169965,0.859537,0.798949,0.246749,0.776617,0.885891,0.569524,0.484473,0.468513,0.557936,0.741169,0.215718,0.542284,0.31528,0.0721595,0.810765,0.709064,0.0724213,0.496153,0.926512,0.189125,0.560389,0.625098,0.40687,0.704796,0.668387,0.583749,0.999972,0.551874,0.0972888,0.0523615,0.273893,0.221722,0.689929,0.142752,0.913732,0.512518,0.0645279,0.490401,0.557217,0.0286498,0.271748,0.801432,0.802791,0.369693,0.595615,0.672755,0.721951,0.651224,0.039898,0.551646,0.316846,0.738669,0.814943,0.0599038,0.0855607,0.604495,0.334306,0.801329,0.286909,0.290134,0.332947,0.924796,0.150982,0.245529,0.813305,0.624437,0.308227,0.874324,0.368816,0.0582675,0.422902,0.385419,0.518264,0.597089,0.325652,0.569911,0.0932281,0.579463,0.930232,0.332479,0.542575,0.397804,0.63235,0.306942,0.917229,0.222152,0.83579,0.45145,0.725266,0.105922,0.0175489,0.946203,0.625339,0.362852,0.896945,0.0759556,0.943793,0.966964,0.11643,0.106371,0.0225457,0.883236,0.821667,0.230473,0.568622,0.0578107,0.68212,0.366078,0.269584,0.163601,0.343092,0.638764,0.581886,0.299276,0.0825939,0.119001,0.57586,0.584493,0.1785,0.955249,0.565587,0.342605,0.436911,0.323149,0.193106,0.592154,0.863842,0.450821,0.508226,0.900474,0.542199,0.17273,0.354681,0.258612,0.822524,0.412848,0.495386,0.592744,0.813398,0.58209,0.136288,0.918004,0.502233,0.254726,0.537379,0.326487,0.508078,0.101381,0.540109,0.31377,0.367591,0.161598,0.9339,0.730941,0.117781,0.862674,0.264061,0.294043,0.169875,0.967475,0.538792,0.566277,0.456891,0.899269,0.610053,0.85568,0.188795,0.292118,0.501998,0.212972,0.904211,0.388937,0.436971,0.332476,0.26841,0.138356,0.69416,0.17541,0.798738,0.820763,0.362584,0.835378,0.531079,0.0682319,0.104068,0.623679,0.851476,0.930398,0.997232,0.294997,0.117884,0.614648,0.862996,0.108803,0.40208,0.0172265,0.715401,0.628633,0.728297,0.636512,0.706531,0.141553,0.706497,0.490223,0.279408,0.293169,0.138666,0.126279,0.298383,0.212952,0.244841,0.470721,0.30395,0.624593,0.549685,0.48777,0.581541,0.966991,0.688799,0.0251395,0.638433,0.993495,0.866946,0.638541,0.899476,0.14241,0.314985,0.152858,0.3302,0.189753,0.250164,0.425319,0.156256,0.104774,0.828421,0.000312567,0.0895134,0.231755,0.405977,0.115505,0.139373,0.33485,0.865718,0.920528,0.123681,0.0493563,0.977726,0.611417,0.972311,0.042513,0.92945,0.498514,0.841661,0.483928,0.00252604,0.912204,0.130856,0.0470884,0.469684,0.746903,0.308402,0.170631,0.382257,0.604689,0.539001,0.694338,0.217518,0.447296,0.234999,0.774795,0.701705,0.842173,0.47184,0.154375,0.017122,0.153618,0.767579,0.456474,0.386218,0.274001,0.858299,0.480085,0.527504,0.467445,0.493435,0.707358,0.896682,0.784536,0.866973,0.452217,0.884432,0.693724,0.420703,0.630045,0.485476,0.465427,0.712618,0.577872,0.98536,0.345989,0.715337,0.829953,0.100971,0.673241,0.931304,0.390363,0.243017,0.99376,0.183034,0.605233,0.481002,0.960198,0.170981,0.392849,0.986224,0.339007,0.511209,0.218497,0.910876,0.248412,0.0621378,0.33751,0.705414,0.178363,0.808969,0.288482,0.0152283,0.979513,0.717017,0.368137,0.923024,0.842092,0.0153618,0.346202,0.368036,0.698974,0.838146,0.486819,0.138263,0.600838,0.989576,0.398514,0.53536,0.905313,0.764613,0.677021,0.586748,0.553676,0.816918,0.861529,0.101434,0.0649391,0.590902,0.56424,0.214372,0.604349,0.681386,0.728094,0.317295,0.268048,0.375915,0.679427,0.547346,0.514363,0.0908391,0.775564,0.489153,0.378603,0.0136833,0.611707,0.969048,0.701872,0.668401,0.897199,0.739188,0.151424,0.925988,0.368641,0.0664614,0.296989,0.468322,0.957371,0.724898,0.521773,0.484558,0.276737,0.816221,0.606446,0.521455,0.730252,0.585005,0.944816,0.83084,0.598921,0.190783,0.582887,0.362965,0.814398,0.863975,0.979482,0.239442,0.214648,0.193086,0.777319,0.761921,0.272351,0.291152,0.00946295,0.186321,0.867152,0.152504,0.699462,0.0741963,0.726725,0.92504,0.244169,0.124051,0.206505,0.919184,0.431921,0.161479,0.285915,0.265767,0.257675,0.0977873,0.18005,0.716432,0.98516,0.236415,0.876881,0.921905,0.0401525,0.577012,0.932625,0.880115,0.612868,0.565377,0.153327,0.452635,0.30231,0.141715,0.880943,0.589229,0.616819,0.984647,0.550085,0.143869,0.103738,0.517778,0.138131,0.99498,0.366421,0.00253385,0.434977,0.604296,0.633511,0.112163,0.666978,0.873655,0.490385,0.136767,0.442923,0.0535585,0.402412,0.257387,0.0506316,0.486077,0.593038,0.270385,0.0804441,0.597007,0.153755,0.517399,0.931091,0.246737,0.198074,0.977736,0.711698,0.335957,0.17341,0.058655,0.925089,0.61597,0.384113,0.0593672,0.28376,0.901153,0.361761,0.0304778,0.628426,0.803897,0.849645,0.994621,0.0826083,0.697452,0.538982,0.192106,0.11974,0.667545,0.557264,0.309093,0.735118,0.0207307,0.675726,0.697188,0.502814,0.399195,0.61934,0.200146,0.499636,0.14291,0.159332,0.732438,0.11922,0.392209,0.921099,0.271359,0.52634,0.156084,0.855406,0.517646,0.540329,0.633217,0.597282,0.0356125,0.231954,0.997405,0.147509,0.71138,0.68014,0.573941,0.581042,0.25361,0.470013,0.734771,0.337156,0.401089,0.463984,0.246651,0.0143048,0.35105,0.198626,0.598558,0.00273669,0.375314,0.272043,0.441926,0.00429273,0.318693,0.381218,0.464623,0.765272,0.473016,0.561037,0.750202,0.537277,0.524516,0.790952,0.317217,0.318356,0.560408,0.653193,0.197181,0.386947,0.303795,0.41851,0.183066,0.0497036,0.902746,0.928922,0.564032,0.129206,0.295531,0.225975,0.0150036,0.982082,0.518281,0.0792444,0.212731,0.624001,0.286262,0.132827,0.103102,0.454286,0.228507,0.759142,0.651979,0.62003,0.0247337,0.184209,0.265352,0.783077,0.773202,0.973858,0.724087,0.82563,0.733072,0.571906,0.181742,0.161528,0.191155,0.12804,0.303802,0.287559,0.665775,0.031392,0.974773,0.298289,0.771165,0.452441,0.83524,0.310248,0.0253301,0.429888,0.67506,0.924171,0.723622,0.290574,0.0819494,0.921346,0.613375,0.732358,0.663838,0.206177,0.442935,0.422754,0.479021,0.338745,0.00311089,0.139931,0.432386,0.571066,0.62974,0.193999,0.278464,0.943235,0.0642709,0.773844,0.82506,0.946768,0.835838,0.864222,0.7067,0.132927,0.977383,0.447404,0.725688,0.941335,0.686581,0.0158305,0.347438,0.416358,0.772423,0.826451,0.934662,0.345202,0.752672,0.893414,0.508394,0.528059,0.975501,0.152011,0.651382,0.447266,0.547043,0.636043,0.774296,0.839536,0.137381,0.80587,0.592142,0.605389,0.958203,0.804601,0.229473,0.29242,0.207004,0.653824,0.609872,0.3026,0.277418,0.323182,0.980028,0.230984,0.0835207,0.809826,0.105074,0.493709,0.343268,0.104069,0.177384,0.182327,0.358253,0.532895,0.108218,0.402893,0.438865,0.0399656,0.323429,0.378486,0.430958,0.507339,0.544543,0.0803608,0.922999,0.877395,0.167845,0.827896,0.0654005,0.977769,0.94337,0.962459,0.562063,0.629578,0.491371,0.123578,0.142562,0.0979777,0.276273,0.702207,0.666968,0.76411,0.682634,0.107743,0.0428462,0.363636,0.901561,0.936464,0.898173,0.812718,0.692341,0.54599,0.84909,0.291039,0.759059,0.27884,0.539992,0.117835,0.0081296,0.832853,0.722557,0.689855,|0.626417,0.496399,0.603962,0.675681,0.0677254,0.633728,0.386412,0.702973,0.480001,0.311606,0.427184,0.798746,0.452819,0.726372,0.41692,0.310715,0.800727,0.874212,0.806368,0.92548,0.927717,0.88813,0.103017,0.946348,0.716065,0.881698,0.855843,0.670486,0.646905,0.195763,0.844457,0.0328571,0.786561,0.642387,0.791796,0.317242,0.275215,0.0821152,0.976303,0.478888,0.175634,0.358511,0.679142,0.824762,0.314526,0.23389,0.854658,0.565353,0.750042,0.32037,0.353914,0.201014,0.568604,0.589069,0.663638,0.702435,0.157071,0.461327,0.909788,0.233064,0.101888,0.81093,0.357964,0.331959,0.572203,0.857314,0.977534,0.910067,0.766451,0.629157,0.494991,0.868859,0.765611,0.938646,0.916506,0.41354,0.351484,0.0822071,0.223406,0.0311964,0.283497,0.510066,0.0286542,0.503332,0.468386,0.557493,0.694392,0.809543,0.128694,0.206915,0.764329,0.595915,0.0214885,0.156264,0.516771,0.51044,0.417167,0.10498,0.754845,0.574123,0.57832,0.863899,0.610242,0.593101,0.148304,0.718516,0.08441,0.0108085,0.992979,0.205635,0.114385,0.820176,0.23489,0.0286511,0.758781,0.541458,0.940455,0.732443,0.255298,0.426944,0.616887,0.5871,0.314076,0.181663,0.862161,0.0758232,0.36083,0.756391,0.503531,0.936371,0.168931,0.47213,0.843951,0.165713,0.536743,0.81244,0.117767,0.0148723,0.0372364,0.798812,0.633476,0.145458,0.909966,0.763122,0.333294,0.34289,0.814734,0.0825403,0.0592396,0.0711423,0.581359,0.933926,0.559727,0.00414854,0.657998,0.229765,0.315582,0.269414,0.278366,0.309902,0.187934,0.679353,0.586919,0.710009,0.950492,0.471673,0.481721,0.211237,0.881459,0.306129,0.11191,0.706249,0.227018,0.989232,0.0179392,0.888327,0.253611,0.88449,0.948348,0.0981323,0.852595,0.331035,0.276398,0.346032,0.265973,0.608007,0.469346,0.25593,0.340745,0.734088,0.566891,0.924619,0.171232,0.024,0.840384,0.194385,0.59579,0.701467,0.550449,0.156461,0.985206,0.819453,0.0346803,0.294969,0.978408,0.933365,0.916435,0.758039,0.269154,0.101642,0.0749534,0.504623,0.76141,0.666142,0.432144,0.0532361,0.998043,0.999741,0.885147,0.726842,0.772695,0.339024,0.665182,0.247832,0.659772,0.37223,0.673745,0.177611,0.798562,0.486835,0.893601,0.171914,0.741231,0.564097,0.524791,0.0489743,0.425065,0.671298,0.708986,0.231816,0.560741,0.128306,0.514334,0.945361,0.227948,0.938686,0.813711,0.116562,0.445168,0.867814,0.534129,0.663511,0.953729,0.950518,0.534861,0.29265,0.116038,0.881203,0.619706,0.573494,0.976283,0.151732,0.256114,0.502464,0.0150067,0.432205,0.379628,0.597433,0.778355,0.245484,0.977021,0.782397,0.0632172,0.606055,0.471003,0.786727,0.817741,0.933702,0.22688,0.705531,0.0558786,0.876858,0.371034,0.32442,0.668701,0.65031,0.697837,0.830028,0.0864574,0.898554,0.795742,0.591776,0.30841,0.460638,0.844308,0.0245786,0.443689,0.49663,0.0483377,0.277934,0.311305,0.221488,0.0912518,0.216166,0.000184357,0.0977602,0.240925,0.476603,0.604262,0.656227,0.440098,0.818003,0.923835,0.253041,0.490635,0.651142,0.475106,0.536224,0.91281,0.792771,0.298455,0.530011,0.56028,0.91926,0.0804522,0.0573956,0.273616,0.522788,0.589118,0.154138,0.407318,0.1376,0.169848,0.983196,0.321411,0.574074,0.442927,0.267999,0.017971,0.521949,0.857553,0.428957,0.205187,0.953681,0.740429,0.129061,0.537349,0.865778,0.274597,0.642374,0.0142363,0.29589,0.511646,0.454849,0.650706,0.608687,0.673929,0.490248,0.406566,0.172378,0.661847,0.447656,0.695714,0.575474,0.320854,0.419107,0.0889612,0.835323,0.487704,0.524196,0.571035,0.987616,0.0686719,0.511183,0.177333,0.984006,0.0121112,0.692711,0.954931,0.762635,0.812219,0.439776,0.657724,0.063083,0.355801,0.630167,0.12593,0.835001,0.785625,0.974094,0.287007,0.464993,0.612822,0.235841,0.685884,0.647138,0.80665,0.809607,0.596773,0.400363,0.216307,0.513838,0.783322,0.206481,0.726806,0.585485,0.279339,0.347332,0.98625,0.840658,0.802379,0.581996,0.663775,0.145708,0.74876,0.759634,0.139112,0.867137,0.379336,0.712535,0.878264,0.836281,0.412064,0.0769797,0.832129,0.818629,0.188684,0.0980261,0.148613,0.22236,0.728415,0.0890655,0.609517,0.437721,0.881762,0.344631,0.0771931,0.0100352,0.076581,0.508047,0.637325,0.182561,0.520175,0.48653,0.501186,0.808286,0.1369,0.117733,0.170947,0.982509,0.475528,0.999117,0.646969,0.0619438,0.311063,0.949964,0.0579439,0.53477,0.0385579,0.381844,0.219627,0.561194,0.527488,0.916464,0.335685,0.406197,0.313681,0.759871,0.56183,0.61628,0.79844,0.36282,0.966746,0.393468,0.683587,0.32881,0.644359,0.839204,0.141238,0.218634,0.377893,0.501156,0.277406,0.644619,0.960147,0.820813,0.709918,0.0773973,0.827154,0.963936,0.382994,0.526598,0.340601,0.386137,0.0235059,0.0137624,0.799349,0.734571,0.913541,0.143603,0.0752818,0.00622696,0.369236,0.0586383,0.629337,0.0671822,0.0630572,0.219244,0.872254,0.190529,0.989654,0.19364,0.70017,0.885993,0.413668,0.492134,0.422692,0.964866,0.906666,0.722295,0.863346,0.88884,0.358448,0.133239,0.868806,0.934637,0.910037,0.315127,0.00649869,0.160791,0.23096,0.613621,0.239294,0.764524,0.571545,0.0853221,0.911054,0.0782974,0.125505,0.483233,0.172985,0.155967,0.706004,0.892421,0.917884,0.156165,0.332993,0.289295,0.315529,0.395314,0.294347,0.0421366,0.503782,0.631588,0.520692,0.0870947,0.918497,0.744036,0.547316,0.467599,0.499,0.135075,0.0102949,0.386562,0.509687,0.582719,0.611625,0.0122957,0.224263,0.0627913,0.436486,0.532268,0.523422,0.5279,0.465552,0.378018,0.891404,0.214005,0.554485,0.999901,0.835212,0.444976,0.607554,0.264651,0.854328,0.391935,0.399146,0.919091,0.895939,0.229958,0.846159,0.170207,0.244328,0.405634,0.17266,0.147324,0.597003,0.93846,0.922391,0.679991,0.0293754,0.916381,0.643127,0.846975,0.253821,0.879882,0.0833279,0.012094,0.0547768,0.663918,0.371083,0.924302,0.418403,0.572422,0.21843,0.37145,0.94134,0.79081,0.706739,0.919077,0.421332,0.484768,0.769877,0.628227,0.993759,0.17988,0.992982,0.349657,0.559695,0.675333,0.734322,0.395923,0.0926749,0.815047,0.816953,0.395061,0.44091,0.655207,0.0960108,0.501352,0.156541,0.596953,0.14618,0.0701367,0.477826,0.504233,0.790766,0.249732,0.758974,0.845839,0.52432,0.129365,0.739795,0.68106,0.982623,0.134081,0.150872,0.258058,0.394899,0.952749,0.763775,0.0844614,0.943251,0.442728,0.774567,0.786135,0.602409,0.164936,0.623366,0.294296,0.109255,0.485673,0.98377,0.0536677,0.390875,0.66631,0.715382,0.303976,0.825822,0.462359,0.509681,0.635263,0.997144,0.00129497,0.148386,0.343084,0.632889,0.131333,0.967776,0.853029,0.425765,0.854162,0.639019,0.12287,0.851612,0.403012,0.965001,0.471844,0.079611,0.79996,0.512113,0.125345,0.804648,0.834326,0.620649,0.190496,0.838875,0.996092,0.412875,0.307393,0.428172,0.267075,0.135203,0.586367,0.474965,0.712304,0.962092,0.243822,0.916957,0.146465,0.115838,0.250381,0.655887,0.0363532,0.45706,0.721189,0.388635,0.152782,0.327897,0.0353761,0.767203,0.443199,0.906492,0.0602912,0.338743,0.90908,0.936109,0.858714,0.467762,0.197825,0.87941,0.851181,0.81638,0.809286,0.692196,0.897533,0.170483,0.297397,0.8609,0.963473,0.428237,0.839628,0.826068,0.0343333,0.900077,0.42635,0.430573,0.410122,0.950392,0.218904,0.328641,0.962326,0.112799,0.178684,0.0838076,0.154513,0.298101,0.238723,0.409906,0.195767,0.36969,0.893036,0.408718,0.845422,0.84921,0.770581,0.294278,0.707789,0.668166,0.454059,0.924016,0.0290177,0.250216,0.424588,0.292904,0.924798,0.295014,0.778944,0.500449,0.687613,0.807706,0.309824,0.285668,0.802352,0.601252,0.858638,0.703883,0.637089,0.921299,0.837143,0.0497872,0.487977,0.286961,0.159099,0.558073,0.233551,0.946822,0.482519,0.00361878,0.740866,0.356778,0.621578,0.411734,0.593174,0.520904,0.372968,0.062923,0.175653,0.22143,0.461244,0.994557,0.00771797,0.208205,0.241756,0.401373,0.0155145,0.976549,0.356289,0.427599,0.410508,0.259042,0.0927479,0.373113,0.704928,0.307728,0.100725,0.928842,0.208346,0.227307,0.764542,0.138379,0.0283452,0.823352,0.15551,0.343472,0.952458,0.987147,0.0707399,0.58155,0.91511,0.490762,0.547686,0.707557,0.886878,0.968594,0.54931,0.919746,0.724599,0.664868,0.91806,0.208294,0.522509,0.951737,0.312945,0.467135,0.0469623,0.203745,0.25414,0.480523,0.585697,0.718074,0.387736,0.280942,0.324505,0.507635,0.772064,0.515501,0.261955,0.858598,0.94568,0.744494,0.438988,0.84933,0.0564048,0.643748,0.873308,0.192697,0.0234779,0.308157,0.961567,0.766504,0.879398,0.531995,0.814922,0.734868,0.324022,0.356519,0.794812,0.410485,0.202907,0.440678,0.599627,0.208645,0.413965,0.560885,0.515221,0.999765,0.577168,0.599671,0.0375314,0.260887,0.755218,0.372977,0.356239,0.323076,0.998185,0.340239,0.714155,0.784143,0.209735,0.967667,0.176167,0.917052,0.883997,0.659535,0.279698,0.0957022,0.254007,0.053454,0.523089,0.487265,0.48967,0.509867,0.146943,0.915499,0.162356,0.85181,0.886395,0.433347,0.378949,0.579321,0.511898,0.837471,0.390586,0.831501,0.742465,0.23213,0.277034,0.897079,0.199297,0.615478,0.995981,0.980064,0.0818282,0.405277,0.903076,0.0585979,0.183541,0.166105,0.787624,0.0161512,0.0929345,0.0436734,0.742306,0.508918,0.2609,0.339755,0.101887,0.847793,0.576,0.445403,0.92044,0.946865,0.0599366,0.711771,0.131434,0.180448,0.785592,0.268763,0.264288,0.274236,0.581577,0.197266,0.0236318,0.730062,0.725978,0.475836,0.394849,0.449701,0.0579655,0.840256,0.733064,0.123734,0.673206,0.324398,0.957783,0.15361,0.7503,0.0497967,0.696913,|0.666174,0.134696,0.56598,0.195136,0.1601,0.531289,0.772737,0.758191,0.520722,0.189564,0.581213,0.240626,0.175182,0.777483,0.460153,0.908004,0.717144,0.889614,0.743732,0.66551,0.90413,0.663314,0.554932,0.383604,0.65351,0.642529,0.856583,0.201084,0.443112,0.461433,0.620755,0.95466,0.170753,0.537289,0.436044,0.747097,0.806921,0.516783,0.709323,0.326163,0.68339,0.0769973,0.179544,0.0672498,0.0632303,0.92437,0.551715,0.357314,0.53766,0.02292,0.937081,0.296636,0.296849,0.980238,0.45288,0.395658,0.590831,0.00812334,0.602705,0.0588221,0.565193,0.376406,0.381425,0.579383,0.000649571,0.74521,0.824668,0.763805,0.736398,0.849971,0.813757,0.962503,0.203406,0.570982,0.630263,0.0982249,0.127207,0.124234,0.450878,0.58546,0.829096,0.629895,0.20575,0.0107207,0.677663,0.0357285,0.569167,0.824772,0.0663851,0.404517,0.45634,0.521052,0.896561,0.87466,0.0423225,0.69719,0.205378,0.081364,0.108,0.0016306,0.680163,0.582627,0.461541,0.51577,0.754057,0.0987471,0.177598,0.675224,0.156713,0.35847,0.850764,0.085791,0.0894431,0.636279,0.110019,0.773812,0.341748,0.736367,0.455106,0.42382,0.23519,0.418351,0.37569,0.861979,0.0244263,0.502699,0.336238,0.556157,0.524738,0.916488,0.769363,0.0415605,0.229287,0.181345,0.296677,0.0445312,0.343633,0.585544,0.565164,0.947212,0.388462,0.947068,0.0879429,0.591753,0.120283,0.694149,0.56465,0.53059,0.353179,0.0850243,0.169596,0.375498,0.989126,0.0245388,0.443482,0.523179,0.368701,0.273978,0.72682,0.69579,0.970121,0.373719,0.505374,0.7368,0.12692,0.489678,0.84491,0.833643,0.600212,0.895901,0.0641314,0.296584,0.220223,0.10679,0.313078,0.359036,0.787522,0.483185,0.0737261,0.665069,0.811941,0.562852,0.987221,0.696905,0.286677,0.0405696,0.179819,0.559619,0.304429,0.464067,0.368655,0.302374,0.642639,0.0512553,0.0659428,0.732832,0.790746,0.715162,0.539293,0.399734,0.00532931,0.820021,0.834,0.627149,0.471897,0.780842,0.291594,0.336043,0.818295,0.886227,0.122502,0.495497,0.168037,0.146707,0.475043,0.982904,0.654596,0.797695,0.147983,0.791057,0.609638,0.626418,0.837026,0.202242,0.050217,0.581028,0.0713663,0.44194,0.527355,0.740277,0.131407,0.863311,0.807706,0.709017,0.915547,0.945892,0.882772,0.888155,0.440487,0.662047,0.46712,0.00861043,0.341034,0.00305587,0.784801,0.365883,0.371307,0.628138,0.136909,0.546943,0.416398,0.268669,0.577472,0.628886,0.258405,0.208305,0.57988,0.786918,0.449894,0.63171,0.297517,0.69356,0.742391,0.436647,0.787752,0.24722,0.199389,0.0485268,0.744288,0.629946,0.872422,0.331619,0.769119,0.93704,0.254826,0.570232,0.951852,0.856984,0.468836,0.354697,0.148765,0.635635,0.643586,0.447673,0.693532,0.743447,0.501505,0.736011,0.454133,0.236028,0.316001,0.523825,0.994205,0.288929,0.29622,0.054408,0.619616,0.479465,0.640588,0.41882,0.0803587,0.540165,0.514044,0.738276,0.174065,0.469278,0.948655,0.789078,0.879845,0.0494046,0.434989,0.0800727,0.46665,0.173335,0.537579,0.566371,0.746007,0.749248,0.970122,0.835202,0.312305,0.249383,0.503447,0.971465,0.601263,0.156877,0.736764,0.0200022,0.819919,0.61802,0.841453,0.7323,0.17625,0.792957,0.500983,0.794992,0.953208,0.241403,0.547695,0.403556,0.573082,0.895131,0.41471,0.13907,0.628507,0.54664,0.108083,0.30343,0.0986988,0.216071,0.290316,0.462425,0.638451,0.0729315,0.998981,0.849631,0.15185,0.833883,0.915495,0.424145,0.164876,0.847045,0.303168,0.647432,0.659137,0.0771344,0.467118,0.258649,0.217147,0.401947,0.18535,0.356452,0.54086,0.532557,0.866078,0.848403,0.553187,0.490984,0.518607,0.968334,0.424994,0.626041,0.332081,0.861999,0.899069,0.24639,0.918618,0.296428,0.842399,0.892125,0.0760258,0.3621,0.523032,0.0111544,0.500082,0.216311,0.907776,0.888797,0.888135,0.329021,0.18751,0.589421,0.632962,0.312469,0.971574,0.712336,0.876172,0.809413,0.408312,0.624146,0.731558,0.286047,0.31466,0.186754,0.7969,0.467489,0.512638,0.624923,0.216738,0.275793,0.455833,0.630746,0.0614095,0.319119,0.467612,0.158225,0.30295,0.70935,0.343193,0.868191,0.0675481,0.246944,0.4427,0.31734,0.3919,0.89853,0.373095,0.32529,0.265675,0.538296,0.20899,0.0487514,0.406845,0.343616,0.612399,0.710107,0.332561,0.641637,0.1335,0.873812,0.566174,0.546758,0.509043,0.880595,0.668069,0.390995,0.946321,0.149794,0.0661392,0.0138267,0.0271888,0.883508,0.791124,0.103756,0.427996,0.978581,0.235922,0.0450735,0.210845,0.293862,0.387243,0.694383,0.6926,0.287774,0.982067,0.578375,0.0857419,0.0551227,0.148271,0.120526,0.00984561,0.95397,0.939425,0.872302,0.488824,0.287852,0.962273,0.841513,0.716885,0.528247,0.90969,0.640983,0.852554,0.516954,0.314642,0.0456519,0.677764,0.767716,0.534909,0.95802,0.554121,0.731204,0.289756,0.102058,0.0850768,0.923748,0.365257,0.984857,0.278202,0.0536224,0.0703638,0.787722,0.428173,0.0691134,0.0660895,0.796998,0.543704,0.511781,0.748073,0.330003,0.0614452,0.238061,0.704085,0.636448,0.377427,0.262757,0.170235,0.695143,0.703513,0.191676,0.645203,0.327043,0.748911,0.697405,0.447725,0.221471,0.8125,0.437226,0.665235,0.114862,0.244921,0.848417,0.394177,0.268844,0.762872,0.155163,0.899873,0.804704,0.0993409,0.168369,0.924262,0.788145,0.470141,0.154247,0.211591,0.33863,0.613523,0.200455,0.925212,0.108604,0.737977,0.196972,0.534769,0.215295,0.213323,0.753644,0.795178,0.994343,0.594047,0.769533,0.375974,0.473532,0.596963,0.59903,0.0449529,0.0435843,0.862059,0.121483,0.880973,0.874001,0.260475,0.125304,0.493899,0.749169,0.464315,0.641646,0.0265417,0.774311,0.252065,0.925285,0.561936,0.890924,0.0971266,0.0514517,0.597909,0.740431,0.973536,0.844697,0.715079,0.0476019,0.864824,0.00702822,0.873721,0.591381,0.890398,0.199878,0.872613,0.655413,0.598145,0.17813,0.957652,0.586911,0.851506,0.85039,0.508584,0.0931726,0.102037,0.266144,0.545096,0.95606,0.3033,0.56353,0.917912,0.161774,0.0901563,0.586309,0.430711,0.28228,0.0518103,0.346288,0.631684,0.66637,0.583493,0.14949,0.427589,0.59628,0.511673,0.822336,0.990732,0.416036,0.658078,0.194819,0.0459307,0.360616,0.518984,0.160627,0.632956,0.381869,0.226488,0.436914,0.801838,0.648604,0.827908,0.129969,0.762258,0.0712225,0.494107,0.272996,0.73864,0.89391,0.135687,0.510194,0.95408,0.213797,0.974278,0.673332,0.4068,0.130579,0.0911416,0.0666614,0.909949,0.792488,0.0745287,0.193269,0.525466,0.881489,0.19034,0.747669,0.359352,0.509526,0.268082,0.679788,0.152329,0.411339,0.706564,0.19571,0.0708085,0.405152,0.237997,0.684533,0.120358,0.420355,0.368493,0.182496,0.409397,0.145946,0.379003,0.972706,0.922077,0.207015,0.454367,0.0677804,0.836373,0.617082,0.797896,0.0509365,0.212452,0.276605,0.635594,0.584173,0.304303,0.962009,0.205871,0.86048,0.976455,0.418372,0.252461,0.607858,0.0714476,0.594987,0.127539,0.837522,0.8697,0.736826,0.038243,0.933222,0.687755,0.267834,0.00478429,0.443719,0.31908,0.346164,0.959027,0.0721677,0.155577,0.582723,0.364783,0.0155544,0.729203,0.528634,0.91929,0.827633,0.488432,0.725742,0.481454,0.142679,0.605261,0.410879,0.244448,0.69506,0.276228,0.167436,0.268651,0.11618,0.867487,0.827097,0.70609,0.128446,0.569896,0.71591,0.374628,0.879434,0.845223,0.042321,0.174563,0.618385,0.271031,0.794714,0.239971,0.808544,0.193256,0.360887,0.126707,0.677761,0.403262,0.494313,0.402968,0.00264829,0.659443,0.0464213,0.224372,0.856587,0.486297,0.0473255,0.0952901,0.795776,0.719696,0.293818,0.253193,0.438785,0.945133,0.182976,0.132049,0.0548975,0.474183,0.621401,0.199905,0.727983,0.061794,0.672052,0.819075,0.987976,0.428544,0.010381,0.76091,0.806702,0.519233,0.642987,0.0909577,0.545248,0.635936,0.651781,0.627027,0.993158,0.720149,0.367868,0.373528,0.87771,0.548757,0.48266,0.749301,0.937133,0.630547,0.0927297,0.445195,0.350105,0.131403,0.666168,0.991127,0.900038,0.903081,0.758762,0.805655,0.863271,0.422178,0.497468,0.10671,0.548458,0.787349,0.570559,0.475062,0.515921,0.0210699,0.947899,0.494665,0.143416,0.300131,0.654699,0.254708,0.987857,0.421244,0.984264,0.719436,0.684353,0.383111,0.566333,0.617549,0.789192,0.395929,0.755055,0.659131,0.479195,0.336884,0.764433,0.414623,0.981421,0.529933,0.339235,0.0794725,0.0839147,0.629622,0.179746,0.354291,0.195456,0.156576,0.272675,0.113834,0.607449,0.621213,0.0867614,0.277919,0.185464,0.958637,0.867881,0.666623,0.447176,0.296524,0.0307738,0.623632,0.669304,0.760695,0.096453,0.806325,0.241939,0.657267,0.103273,0.564988,0.860277,0.739938,0.773329,0.573186,0.144365,0.567798,0.534341,0.864458,0.150176,0.354512,0.245591,0.978394,0.53462,0.517561,0.724186,0.821866,0.677053,0.804066,0.65843,0.791219,0.450044,0.151198,0.393609,0.983339,0.729601,0.804557,0.0111238,0.548282,0.938277,0.571827,0.178732,0.562982,0.320106,0.671817,0.829033,0.526606,0.120546,0.00848657,0.818605,0.13586,0.866969,0.279109,0.43928,0.616001,0.314096,0.402325,0.969102,0.781055,0.636269,0.414666,0.232439,0.372194,0.152022,0.867662,0.770636,0.606601,0.833455,0.114406,0.792524,0.649504,0.761053,0.79882,0.0274619,0.232789,0.668369,0.317769,0.398468,0.349867,0.830599,0.649578,0.0712767,0.778918,0.266331,0.285624,0.803319,0.312842,0.885183,0.894051,0.0550489,0.487373,0.983965,0.325056,0.848133,0.130239,0.299583,0.191595,0.950991,0.479953,0.753473,0.583464,0.904181,0.452093,0.510176,0.756049,0.882003,0.381445,0.420326,0.252321,0.717139,0.64564,0.407475,0.418398,0.195584,|0.580132,0.495854,0.79728,0.720361,0.247098,0.109063,0.894612,0.814373,0.361213,0.479215,0.397397,0.448769,0.988918,0.379104,0.614496,0.799357,0.450241,0.225164,0.753926,0.550237,0.686483,0.273025,0.551505,0.417851,0.292934,0.329811,0.660471,0.305049,0.460364,0.252151,0.496856,0.874808,0.442292,0.69225,0.285392,0.0784246,0.812819,0.0982848,0.904453,0.831284,0.586479,0.24232,0.950792,0.132667,0.318854,0.867369,0.249129,0.965582,0.909269,0.557874,0.0617874,0.933627,0.525218,0.480162,0.66773,0.890334,0.565573,0.322918,0.818643,0.414806,0.198983,0.477148,0.833298,0.79832,0.479347,0.517082,0.635253,0.673992,0.86399,0.465757,0.388511,0.445044,0.963018,0.0237171,0.141104,0.52987,0.230694,0.510267,0.409738,0.460421,0.347993,0.0259452,0.764623,0.414163,0.296024,0.225537,0.964576,0.0836495,0.301495,0.302533,0.235263,0.562642,0.597503,0.509159,0.800984,0.181088,0.725018,0.402162,0.555498,0.290326,0.798717,0.910239,0.375705,0.482004,0.859457,0.766745,0.804651,0.614767,0.0911103,0.952776,0.227796,0.771977,0.00984025,0.878646,0.519954,0.905576,0.677635,0.796541,0.173005,0.147999,0.0181904,0.190591,0.833982,0.223367,0.385901,0.441618,0.320524,0.316828,0.521537,0.953792,0.758502,0.40371,0.60199,0.1084,0.880287,0.374844,0.620083,0.448082,0.0925307,0.25862,0.411538,0.850622,0.709849,0.61343,0.692292,0.594056,0.653386,0.787708,0.295863,0.545193,0.593359,0.565429,0.115245,0.190861,0.658902,0.778206,0.434246,0.141652,0.544094,0.989874,0.692327,0.784351,0.612881,0.311925,0.975303,0.15143,0.478675,0.896607,0.685171,0.30467,0.306839,0.0487934,0.532171,0.769437,0.0378859,0.682875,0.933697,0.442545,0.349332,0.0495859,0.877012,0.717066,0.945016,0.356892,0.373124,0.031984,0.228349,0.702864,0.676305,0.40209,0.794444,0.430954,0.0864163,0.320908,0.892832,0.221789,0.770412,0.676306,0.750333,0.492564,0.645599,0.617396,0.972147,0.564426,0.397609,0.571292,0.0557103,0.512798,0.89652,0.708091,0.593445,0.889349,0.0827119,0.777065,0.793769,0.0777981,0.318928,0.545872,0.970554,0.788205,0.668379,0.40402,0.304565,0.884526,0.743436,0.765744,0.320004,0.292554,0.772598,0.763249,0.598719,0.77564,0.197784,0.487659,0.891507,0.449057,0.312887,0.0867636,0.138057,0.507161,0.852051,0.798809,0.242564,0.0601678,0.917762,0.0931988,0.706344,0.711763,0.433578,0.199325,0.148934,0.907435,0.452916,0.387995,0.0435645,0.466062,0.454013,0.0553311,0.311891,0.984776,0.605824,0.509221,0.571511,0.572751,0.101383,0.694298,0.178742,0.716772,0.761238,0.537143,0.913765,0.95187,0.305211,0.0355491,0.692636,0.615269,0.180486,0.558417,0.279592,0.353574,0.989401,0.52218,0.588168,0.931943,0.327489,0.609138,0.935289,0.41808,0.469468,0.254555,0.304312,0.547733,0.843626,0.321755,0.238066,0.776905,0.895897,0.950584,0.49523,0.753297,0.478181,0.168144,0.196977,0.808659,0.692939,0.28078,0.87195,0.131913,0.686909,0.477009,0.53286,0.650349,0.435387,0.969112,0.478086,0.0569534,0.955908,0.83947,0.51298,0.716347,0.426924,0.280917,0.939428,0.97955,0.0371398,0.846511,0.785158,0.190407,0.682069,0.999991,0.9911,0.821849,0.281154,0.512542,0.122589,0.821543,0.998676,0.448457,0.2467,0.610978,0.539019,0.343353,0.552462,0.282487,0.148127,0.0805084,0.860545,0.669856,0.340555,0.164114,0.784328,0.142335,0.874959,0.1041,0.498401,0.0274881,0.469889,0.829783,0.829812,0.289176,0.203101,0.778209,0.119451,0.539756,0.427783,0.751604,0.677143,0.591183,0.710377,0.716874,0.647103,0.163222,0.873886,0.658228,0.999766,0.0129604,0.869253,0.158296,0.931344,0.261894,0.781898,0.729117,0.200024,0.0924206,0.973535,0.516216,0.541716,0.405099,0.608652,0.352002,0.346368,0.324514,0.398188,0.545294,0.455327,0.791129,0.877325,0.622117,0.805424,0.333696,0.0652398,0.999618,0.840121,0.2322,0.531898,0.588308,0.0235049,0.484188,0.0405949,0.280924,0.993163,0.669619,0.332353,0.0349967,0.810063,0.412309,0.0603863,0.784385,0.720439,0.759271,0.798967,0.34805,0.611841,0.358398,0.68348,0.152016,0.501256,0.132637,0.428806,0.406171,0.478509,0.217293,0.103358,0.598822,0.647091,0.785161,0.80781,0.327893,0.432289,0.293151,0.876188,0.86608,0.152233,0.835505,0.925213,0.871091,0.871716,0.550551,0.0897323,0.213897,0.0267267,0.846734,0.0780887,0.0464526,0.545318,0.976641,0.498332,0.883185,0.19847,0.625263,0.108241,0.637797,0.354402,0.399786,0.194474,0.964999,0.567562,0.871222,0.36512,0.418601,0.434312,0.245388,0.210366,0.192359,0.387638,0.136925,0.262976,0.0431514,0.988561,0.368608,0.522347,0.171169,0.130956,0.17623,0.35553,0.157948,0.327742,0.940951,0.166828,0.560321,0.22341,0.137734,0.39441,0.552433,0.208416,0.205433,0.189891,0.184395,0.852893,0.349549,0.225061,0.691592,0.339508,0.435834,0.768961,0.722179,0.926577,0.287972,0.252187,0.137462,0.868924,0.987037,0.550253,0.119117,0.0675896,0.170477,0.846524,0.795602,0.570314,0.544232,0.151836,0.397327,0.0667073,0.18387,0.732613,0.487329,0.959429,0.938161,0.568885,0.193898,0.833559,0.313706,0.116281,0.671487,0.915358,0.519165,0.683627,0.311563,0.621522,0.134232,0.339265,0.217593,0.589321,0.633369,0.380583,0.401855,0.976841,0.534097,0.893353,0.0253435,0.902983,0.113347,0.906538,0.719188,0.708639,0.857275,0.133909,0.931756,0.847463,0.961742,0.321187,0.670941,0.612615,0.374361,0.760892,0.729603,0.643364,0.383187,0.482967,0.212209,0.914941,0.0866558,0.600714,0.415142,0.731083,0.685219,0.590079,0.315611,0.0646185,0.271917,0.994166,0.225838,0.0108171,0.286971,0.977361,0.570409,0.73696,0.024284,0.211942,0.526886,0.722435,0.738949,0.208554,0.534518,0.480928,0.305656,0.260851,0.183879,0.0843092,0.750153,0.368526,0.512462,0.617029,0.0816086,0.250394,0.108911,0.463488,0.459732,0.0730491,0.481467,0.332326,0.92544,0.286347,0.773586,0.937235,0.507625,0.919765,0.0052793,0.799302,0.176425,0.318722,0.582117,0.55958,0.949284,0.348333,0.0870588,0.954824,0.901473,0.64687,0.452333,0.394035,0.505846,0.99447,0.137094,0.916512,0.6049,0.127946,0.349883,0.789,0.614712,0.835947,0.251034,0.0903298,0.941951,0.0488507,0.831575,0.777134,0.0421684,0.931239,0.602828,0.0710202,0.706207,0.281426,0.399732,0.780246,0.966055,0.141484,0.565796,0.336874,0.893634,0.267169,0.771384,0.771332,0.847782,0.408282,0.444494,0.063437,0.998459,0.673026,0.223397,0.517133,0.869814,0.193989,0.774705,0.526787,0.237439,0.330453,0.438511,0.662267,0.509075,0.454637,0.355883,0.817945,0.740789,0.517494,0.434328,0.340877,0.327313,0.290112,0.383528,0.841504,0.115267,0.759,0.800649,0.785966,0.368662,0.242142,0.48068,0.783105,0.075911,0.547462,0.705694,0.814848,0.593831,0.190664,0.568617,0.0362355,0.719807,0.372851,0.332564,0.271661,0.306424,0.492368,0.85649,0.466823,0.297087,0.959385,0.919425,0.553036,0.686834,0.884867,0.400485,0.159462,0.433091,0.511399,0.74512,0.0278359,0.665123,0.0608722,0.337963,0.566403,0.724497,0.447162,0.955561,0.601027,0.288041,0.852525,0.348295,0.401713,0.299485,0.64024,0.249476,0.507492,0.834432,0.702572,0.218961,0.425572,0.330423,0.0833066,0.488368,0.801183,0.398462,0.809548,0.196376,0.407426,0.619362,0.0390056,0.890512,0.203252,0.578437,0.165516,0.177266,0.622343,0.131007,0.981118,0.756715,0.579378,0.226453,0.632356,0.594682,0.625179,0.0424167,0.0398809,0.566257,0.554186,0.462236,0.140181,0.943199,0.483803,0.793806,0.944602,0.216735,0.27676,0.871945,0.504534,0.853787,0.86593,0.989017,0.957702,0.651958,0.574388,0.362439,0.409633,0.347476,0.631816,0.390387,0.409391,0.634204,0.838891,0.0525407,0.150716,0.409308,0.735284,0.0943276,0.297253,0.509185,0.537183,0.39067,0.475922,0.506447,0.828138,0.402186,0.134274,0.772972,0.0717887,0.40972,0.281937,0.758295,0.428308,0.512043,0.232023,0.718623,0.939328,0.674028,0.597246,0.306412,0.345055,0.581399,0.980219,0.367171,0.0732585,0.0349198,0.506084,0.3666,0.934949,0.23808,0.999889,0.723394,0.384527,0.0642,0.907862,0.707886,0.229247,0.580836,0.259665,0.294589,0.00870585,0.532057,0.781799,0.645558,0.450424,0.614146,0.504875,0.327278,0.233685,0.886807,0.989786,0.0149646,0.825071,0.76105,0.623422,0.803842,0.705369,0.435599,0.794864,0.988661,0.497041,0.374803,0.550802,0.402671,0.906448,0.463288,0.368166,0.465072,0.385135,0.159135,0.203917,0.17229,0.45822,0.221834,0.155194,0.00622505,0.442786,0.609941,0.836553,0.342349,0.747947,0.963344,0.635292,0.475568,0.0761095,0.907809,0.729551,0.0670915,0.884197,0.0557286,0.839656,0.969667,0.96638,0.147986,0.686892,0.852442,0.495965,0.0774742,0.623931,0.274586,0.43747,0.8932,0.0482224,0.599691,0.971248,0.329079,0.40037,0.840198,0.504908,0.0826544,0.653978,0.650068,0.534082,0.495327,0.275689,0.566653,0.835683,0.146812,0.768863,0.148531,0.802454,0.151495,0.0509972,0.0773168,0.0649495,0.208472,0.281365,0.456117,0.269477,0.143208,0.420315,0.270164,0.27585,0.805895,0.0376787,0.793845,0.161018,0.59817,0.948439,0.0112196,0.575138,0.689882,0.274233,0.560916,0.685654,0.03689,0.484247,0.0354187,0.842325,0.32627,0.55706,0.219289,0.625749,0.86627,0.103373,0.590783,0.710238,0.323742,0.447408,0.372467,0.844666,0.885974,0.665147,0.172432,0.719622,0.628029,0.679419,0.108297,0.975143,0.136702,0.440857,0.198967,0.180703,0.365041,0.279865,0.943031,0.296115,0.521971,0.536824,0.510676,0.986018,0.53078,0.878959,0.844186,0.152931,0.991055,0.815636,0.400421,0.768849,0.665573,0.354865,0.828037,0.227165,0.671271,|0.48763,0.706814,0.538344,0.509624,0.979451,0.422159,0.425045,0.429763,0.470501,0.593417,0.133849,0.506003,0.136141,0.510648,0.0540053,0.974228,0.28561,0.932171,0.153704,0.324695,0.05931,0.51722,0.36437,0.519323,0.171933,0.643407,0.243955,0.0463873,0.00983322,0.641377,0.607975,0.0413693,0.519789,0.190722,0.792369,0.816617,0.140253,0.528641,0.426597,0.0167997,0.983592,0.366263,0.171354,0.0527074,0.562438,0.461501,0.13876,0.542619,0.205642,0.966063,0.241142,0.438366,0.0757992,0.167649,0.226289,0.891137,0.540598,0.94944,0.802716,0.473164,0.00142401,0.6187,0.17269,0.936607,0.796027,0.286538,0.000580668,0.965179,0.33083,0.789841,0.393406,0.683903,0.35904,0.350359,0.78431,0.710537,0.574707,0.328114,0.995385,0.944035,0.500965,0.838692,0.940096,0.748854,0.864545,0.237671,0.438726,0.897095,0.186718,0.522892,0.880092,0.736867,0.668726,0.707845,0.58081,0.114541,0.963315,0.348337,0.877433,0.0741955,0.50003,0.151213,0.903169,0.0836331,0.833255,0.969321,0.717214,0.0891668,0.767752,0.0728288,0.980414,0.289463,0.0452033,0.814333,0.53477,0.903408,0.251705,0.612433,0.0944459,0.885005,0.611447,0.255689,0.480679,0.866529,0.906141,0.659196,0.0327681,0.912752,0.490655,0.120409,0.316422,0.692444,0.546218,0.222819,0.909321,0.580929,0.941612,0.736019,0.120562,0.231245,0.642188,0.791758,0.0906592,0.928984,0.918813,0.0312709,0.0614241,0.753181,0.267389,0.475997,0.699516,0.688808,0.941787,0.844605,0.637788,0.603662,0.246318,0.88438,0.0907698,0.25183,0.0148377,0.988219,0.525686,0.931558,0.292688,0.789648,0.721773,0.131968,0.49884,0.0342009,0.911619,0.336608,0.286525,0.689638,0.463016,0.271335,0.507109,0.309853,0.953364,0.911627,0.769868,0.617871,0.459498,0.574533,0.765399,0.511739,0.330652,0.604617,0.659919,0.917363,0.417306,0.275025,0.778087,0.91865,0.913616,0.130303,0.599733,0.545172,0.856256,0.402827,0.0417952,0.0993012,0.154222,0.0733539,0.780562,0.425428,0.760274,0.55348,0.312289,0.938366,0.914808,0.717807,0.522189,0.20201,0.555229,0.642448,0.505045,0.978794,0.604448,0.696707,0.0246171,0.257885,0.906536,0.523354,0.732553,0.386888,0.404742,0.450796,0.361131,0.611781,0.586876,0.953079,0.716813,0.959152,0.242947,0.314348,0.140043,0.28709,0.539808,0.243002,0.753089,0.494903,0.0209049,0.271343,0.390478,0.726334,0.835475,0.0697486,0.418737,0.0900771,0.992985,0.950648,0.820808,0.42792,0.559969,0.899774,0.26717,0.998727,0.306171,0.237356,0.689157,0.831801,0.422922,0.292632,0.866753,0.577739,0.298783,0.625726,0.797462,0.500194,0.49947,0.683264,0.866811,0.766864,0.998835,0.250345,0.509012,0.0408474,0.662455,0.110279,0.156851,0.808369,0.83386,0.149465,0.152563,0.0507042,0.0436798,0.780914,0.037169,0.415658,0.154616,0.342806,0.24936,0.698313,0.588333,0.337712,0.279409,0.827352,0.804775,0.750588,0.176127,0.397562,0.370781,0.524642,0.119743,0.573309,0.918726,0.0755228,0.196911,0.842657,0.420976,0.31274,0.651899,0.394518,0.49698,0.30821,0.806156,0.892856,0.891902,0.427829,0.453378,0.113425,0.303701,0.45923,0.587223,0.694412,0.987451,0.487508,0.213484,0.444657,0.91085,0.0728193,0.577163,0.239778,0.920337,0.752167,0.0886633,0.73938,0.340685,0.543559,0.417998,0.136547,0.224393,0.772662,0.855543,0.616875,0.604231,0.181931,0.382799,0.00527835,0.975978,0.39542,0.159733,0.924126,0.330405,0.492094,0.176526,0.745496,0.239045,0.767681,0.330291,0.187388,0.175016,0.230856,0.662789,0.900817,0.467136,0.470878,0.199878,0.539815,0.111596,0.450061,0.504663,0.108051,0.81799,0.141107,0.846621,0.44778,0.700847,0.779993,0.215259,0.961418,0.918384,0.676745,0.992839,0.710596,0.57153,0.301573,0.750862,0.906448,0.802377,0.694153,0.660572,0.950099,0.722089,0.261819,0.575159,0.532907,0.131612,0.0336162,0.176564,0.505028,0.278027,0.981086,0.670804,0.771538,0.971073,0.265757,0.0334277,0.819805,0.397465,0.966829,0.774061,0.5056,0.0657601,0.57105,0.593749,0.783671,0.863205,0.3871,0.495253,0.687009,0.292517,0.259757,0.16117,0.809679,0.0272654,0.635907,0.246463,0.187535,0.369825,0.410326,0.396992,0.718994,0.935497,0.373597,0.736486,0.348031,0.0285285,0.596252,0.076838,0.479895,0.771792,0.49738,0.50905,0.686632,0.488127,0.684328,0.953824,0.204477,0.701015,0.339688,0.0361319,0.950156,0.781326,0.225945,0.964616,0.516308,0.268119,0.434416,0.204786,0.491557,0.657972,0.123358,0.607632,0.420364,0.457907,0.412124,0.208173,0.202041,0.810283,0.322694,0.519851,0.97756,0.426531,0.668207,0.937949,0.441097,0.899071,0.87263,0.24602,0.00923783,0.864851,0.815309,0.800147,0.496639,0.158817,0.542386,0.0735909,0.31159,0.707465,0.964585,0.154669,0.875541,0.149313,0.405542,0.535913,0.70984,0.0169455,0.287297,0.821104,0.899601,0.806508,0.895982,0.986945,0.421009,0.0198504,0.898289,0.211727,0.419316,0.0702034,0.716796,0.0394107,0.0645158,0.886629,0.741332,0.520956,0.686093,0.72677,0.326859,0.119175,0.86902,0.811536,0.13121,0.943398,0.572737,0.997211,0.892661,0.208525,0.888745,0.893667,0.415958,0.899057,0.0715641,0.102207,0.218711,0.956768,0.959675,0.126476,0.539467,0.469174,0.611797,0.808766,0.371096,0.608146,0.303355,0.525153,0.430049,0.953384,0.268824,0.19441,0.554248,0.519048,0.549248,0.963204,0.92707,0.303988,0.593572,0.29684,0.42019,0.817896,0.885239,0.89542,0.456061,0.433059,0.671727,0.0414172,0.0272346,0.148918,0.791323,0.124876,0.529159,0.954683,0.951711,0.184621,0.204612,0.394896,0.733391,0.547885,0.365997,0.549963,0.534739,0.181258,0.547377,0.411976,0.644848,0.833975,0.284572,0.674278,0.120184,0.960312,0.428684,0.383874,0.326335,0.383779,0.310112,0.511863,0.512437,0.659031,0.0455748,0.38209,0.691257,0.5539,0.723914,0.0268764,0.987705,0.817874,0.275565,0.460955,0.763487,0.530184,0.738937,0.55764,0.326923,0.727892,0.443264,0.522753,0.568407,0.184242,0.913404,0.39201,0.0617122,0.780061,0.0383239,0.729563,0.0895814,0.0551465,0.499161,0.678626,0.0849779,0.730076,0.25542,0.963008,0.996792,0.152362,0.396319,0.737732,0.404402,0.570072,0.654768,0.868626,0.36259,0.120398,0.0438982,0.991172,0.992334,0.385065,0.58814,0.592947,0.746379,0.590794,0.561596,0.105313,0.521354,0.422648,0.906977,0.870831,0.959328,0.581142,0.546984,0.824002,0.0607978,0.461296,0.12969,0.999574,0.170174,0.608059,0.862772,0.75587,0.739684,0.870436,0.675606,0.369943,0.726288,0.411064,0.884901,0.259301,0.281295,0.539535,0.230882,0.256715,0.744223,0.122336,0.695258,0.657463,0.643425,0.559913,0.223803,0.106723,0.509033,0.655683,0.907929,0.566965,0.130826,0.454795,0.613401,0.911732,0.56299,0.61403,0.753395,0.76895,0.13877,0.081275,0.292001,0.816507,0.00913304,0.953125,0.427321,0.577342,0.715575,0.359775,0.397978,0.43302,0.304498,0.961257,0.732528,0.0722973,0.437967,0.621554,0.555948,0.196623,0.307447,0.0640126,0.67434,0.763852,0.542475,0.791258,0.250677,0.590554,0.723289,0.769933,0.540183,0.574743,0.920689,0.59509,0.803966,0.441521,0.757227,0.373414,0.0334054,0.688514,0.131089,0.672333,0.877566,0.0478173,0.505404,0.0887511,0.708467,0.098931,0.592166,0.332276,0.959544,0.454593,0.814379,0.477018,0.532153,0.569232,0.42551,0.748922,0.0931044,0.995147,0.961258,0.850686,0.459745,0.0760633,0.211859,0.750124,0.667201,0.725055,0.273631,0.0788469,0.777088,0.70736,0.857878,0.574115,0.424761,0.342017,0.151792,0.564786,0.0329007,0.824379,0.108113,0.173835,0.68138,0.980138,0.255449,0.778077,0.905355,0.873574,0.909376,0.272854,0.832065,0.365412,0.47596,0.373159,0.598696,0.846558,0.51519,0.0629822,0.297304,0.14794,0.800179,0.87838,0.582276,0.0427682,0.494936,0.947706,0.540218,0.62952,0.384464,0.826543,0.525143,0.680051,0.4524,0.617422,0.242627,0.742239,0.58112,0.511031,0.684478,0.260032,0.128442,0.722317,0.343768,0.917359,0.788161,0.497653,0.0110967,0.736356,0.789373,0.505745,0.492602,0.295181,0.462158,0.766558,0.881146,0.346182,0.645979,0.475411,0.623771,0.918589,0.346645,0.124257,0.379465,0.33187,0.779409,0.559202,0.599298,0.450343,0.031295,0.691903,0.112182,0.695459,0.704846,0.775223,0.0165502,0.375939,0.550731,0.0241367,0.0812834,0.47429,0.201531,0.741634,0.969569,0.58032,0.0734138,0.174152,0.578033,0.547214,0.53701,0.782012,0.109652,0.833967,0.238546,0.776541,0.978404,0.671993,0.796501,0.0241255,0.972463,0.176519,0.604152,0.281386,0.471724,0.0918008,0.25891,0.448899,0.601333,0.293494,0.0554548,0.991551,0.649843,0.395359,0.615367,0.0599362,0.729341,0.682231,0.406626,0.556376,0.619824,0.747661,0.63929,0.794611,0.896956,0.896887,0.660127,0.181939,0.793218,0.485933,0.861129,0.193651,0.654818,0.812652,0.545391,0.657025,0.108506,0.301403,0.568037,0.91462,0.351401,0.477164,0.817023,0.836543,0.306574,0.0716686,0.0831695,0.982061,0.319292,0.915596,0.41905,0.299077,0.633011,0.00968307,0.124904,0.765689,0.183991,0.726305,0.934032,0.887627,0.949,0.133788,0.848106,0.449424,0.682522,0.438281,0.855702,0.199948,0.649355,0.0594766,0.445344,0.906897,0.963613,0.578251,0.910431,0.515153,0.792328,0.711381,0.825027,0.43174,0.605761,0.660848,0.0430158,0.644827,0.350809,0.00073874,0.777297,0.0692329,0.741977,0.0108901,0.281852,0.695206,0.600243,0.488099,0.563524,0.0913208,0.140953,0.296451,0.158555,0.612248,0.688722,0.295547,0.26027,0.52772,0.888261,0.362086,0.853823,0.594201,0.00813562,0.043664,0.0289457,0.696186,0.653097,0.967037,0.467872,0.675968,0.691647,0.0288687,0.312648,0.412204,0.284957,|0.289362,0.795755,0.85017,0.0839367,0.177095,0.221821,0.31915,0.332017,0.550818,0.573609,0.563881,0.649602,0.543234,0.42574,0.357351,0.515531,0.271814,0.0467184,0.813677,0.806302,0.375976,0.0604308,0.489992,0.762403,0.780697,0.517509,0.122749,0.524444,0.65838,0.953633,0.47005,0.745053,0.777056,0.604577,0.697414,0.0827254,0.820037,0.764781,0.809754,0.793111,0.428659,0.37521,0.136652,0.155336,0.342383,0.92818,0.210295,0.030117,0.160399,0.432738,0.692129,0.985572,0.893574,0.235077,0.811883,0.108501,0.878317,0.522791,0.393094,0.0955317,0.525687,0.564699,0.654203,0.258033,0.0143124,0.917126,0.249077,0.814012,0.658508,0.811015,0.674724,0.394872,0.217186,0.480889,0.678184,0.531868,0.327037,0.0717382,0.166474,0.825036,0.614008,0.279778,0.158879,0.153321,0.22413,0.93108,0.6627,0.667057,0.70743,0.519069,0.508528,0.965503,0.457502,0.209257,0.0655717,0.714003,0.962169,0.280207,0.962451,0.169871,0.711785,0.171765,0.0268754,0.71732,0.88253,0.98295,0.255421,0.790189,0.930626,0.664178,0.112687,0.627622,0.424257,0.363632,0.125252,0.872381,0.0180561,0.953991,0.507338,0.694439,0.686232,0.23553,0.459289,0.370947,0.506832,0.640835,0.648267,0.389701,0.265059,0.570329,0.445387,0.323523,0.849903,0.405098,0.115338,0.442518,0.278032,0.380876,0.72329,0.675755,0.943113,0.360463,0.265044,0.744225,0.00137472,0.919377,0.206841,0.649672,0.780487,0.41992,0.635499,0.308015,0.275278,0.360772,0.79777,0.490165,0.374338,0.252816,0.390552,0.128389,0.373981,0.0427251,0.450899,0.891606,0.00935274,0.920802,0.258613,0.754164,0.945993,0.325299,0.815397,0.457948,0.628492,0.157852,0.617729,0.600649,0.866779,0.537698,0.705779,0.857077,0.739515,0.351328,0.132326,0.543961,0.0681564,0.626745,0.765967,0.411832,0.515504,0.925219,0.725862,0.691373,0.00302929,0.119411,0.661456,0.2064,0.970583,0.235759,0.487598,0.401218,0.539373,0.556188,0.380307,0.534293,0.705366,0.614485,0.215054,0.884384,0.130086,0.744239,0.712362,0.688576,0.923028,0.813769,0.876266,0.03054,0.211216,0.395858,0.337602,0.346739,0.0200561,0.246762,0.3432,0.961832,0.295007,0.666395,0.049986,0.404025,0.915338,0.801896,0.351988,0.338994,0.411679,0.086263,0.215591,0.808289,0.425525,0.227704,0.448511,0.209862,0.268193,0.763746,0.719629,0.862087,0.927301,0.983263,0.0208966,0.654216,0.249955,0.146511,0.71427,0.205805,0.201815,0.700595,0.509546,0.26649,0.25444,0.661619,0.676713,0.680397,0.733385,0.489939,0.575223,0.585819,0.94503,0.279318,0.681646,0.80701,0.773966,0.751323,0.967141,0.129201,0.597512,0.979234,0.411436,0.360158,0.0851243,0.570579,0.204797,0.343328,0.0496023,0.289129,0.0923932,0.577693,0.35537,0.560155,0.384269,0.0362903,0.641414,0.1646,0.31934,0.510817,0.702371,0.642471,0.550605,0.355049,0.204582,0.371133,0.142469,0.449739,0.953094,0.820163,0.173352,0.692505,0.315514,0.644949,0.667326,0.693899,0.940403,0.822832,0.214261,0.123208,0.140701,0.146853,0.624917,0.0859704,0.992124,0.485802,0.581265,0.450998,0.975541,0.504068,0.853831,0.723717,0.307803,0.752573,0.40189,0.123292,0.316703,0.981298,0.102251,0.627466,0.516117,0.352216,0.308422,0.648921,0.656304,0.976569,0.896014,0.741533,0.291374,0.277458,0.49065,0.313155,0.537965,0.0864497,0.516224,0.223906,0.445783,0.535676,0.942591,0.798474,0.700957,0.395601,0.969534,0.112382,0.784722,0.233286,0.868156,0.49393,0.574552,0.0872096,0.619918,0.531969,0.101087,0.433588,0.91033,0.401652,0.305527,0.2627,0.135335,0.995365,0.337334,0.233687,0.500568,0.328736,0.516129,0.308975,0.607875,0.681467,0.773076,0.1893,0.402689,0.373899,0.942643,0.771178,0.445487,0.185221,0.882547,0.811702,0.63788,0.654156,0.53923,0.175232,0.67735,0.397177,0.0174859,0.910498,0.552154,0.582719,0.589743,0.232296,0.87188,0.595131,0.358963,0.765658,0.254369,0.141802,0.873475,0.623002,0.658358,0.871613,0.863393,0.43215,0.357397,0.452285,0.70445,0.256608,0.841462,0.778608,0.0708643,0.993578,0.975955,0.423751,0.271979,0.417857,0.557856,0.527074,0.479992,0.0432932,0.781411,0.281731,0.386604,0.96395,0.180054,0.986728,0.550756,0.244135,0.127805,0.0779381,0.832003,0.128789,0.792306,0.609614,0.321447,0.342377,0.577073,0.704792,0.261681,0.0851464,0.607278,0.702756,0.907155,0.0140724,0.285433,0.285249,0.0915629,0.306135,0.95335,0.176594,0.861618,0.332357,0.388914,0.662996,0.705347,0.735293,0.0568327,0.319805,0.34729,0.206138,0.156703,0.110775,0.848965,0.157426,0.825087,0.161866,0.23887,0.0920224,0.421911,0.784494,0.687643,0.597074,0.874641,0.467706,0.437237,0.717351,0.534229,0.846506,0.557886,0.121167,0.409558,0.682351,0.619296,0.469734,0.362717,0.444125,0.206777,0.383394,0.0964326,0.68033,0.524221,0.76908,0.24295,0.411297,0.730995,0.204739,0.312243,0.468032,0.846573,0.663665,0.3471,0.847154,0.467538,0.674302,0.615518,0.232485,0.396177,0.643105,0.562371,0.704593,0.292087,0.677758,0.172387,0.25368,0.289775,0.906024,0.621184,0.68879,0.740962,0.584072,0.434476,0.834278,0.228707,0.099327,0.469255,0.102925,0.49386,0.223827,0.507112,0.932545,0.972246,0.540798,0.0773428,0.977119,0.913936,0.248949,0.230826,0.888019,0.604792,0.949404,0.865549,0.872296,0.692152,0.814253,0.536689,0.519526,0.637368,0.515887,0.998758,0.820215,0.572439,0.409948,0.740381,0.968129,0.990514,0.314089,0.0261983,0.345316,0.111921,0.165178,0.699159,0.979149,0.788247,0.42193,0.541928,0.849063,0.818264,0.71579,0.493913,0.327984,0.44008,0.745418,0.121908,0.162202,0.130103,0.882747,0.343997,0.93483,0.85526,0.481689,0.908931,0.698599,0.142916,0.785242,0.452964,0.790106,0.495795,0.833641,0.554807,0.805506,0.579964,0.237985,0.633444,0.47016,0.973014,0.16246,0.960456,0.844772,0.466532,0.544348,0.90425,0.311466,0.767036,0.717076,0.292459,0.504054,0.479235,0.929088,0.65692,0.253657,0.969776,0.027694,0.970564,0.774486,0.532453,0.292184,0.332053,0.165285,0.642564,0.479846,0.300312,0.482946,0.210912,0.807437,0.522072,0.672586,0.430507,0.238204,0.185778,0.535264,0.946388,0.77658,0.211415,0.0883662,0.161065,0.114588,0.21952,0.152785,0.69609,0.851446,0.619322,0.891093,0.576904,0.88457,0.674115,0.625496,0.108369,0.315779,0.629492,0.770376,0.279839,0.673177,0.0626736,0.33469,0.844405,0.911269,0.713117,0.423087,0.643156,0.421812,0.155533,0.122011,0.96642,0.105033,0.177918,0.992985,0.550755,0.165132,0.345738,0.15887,0.783507,0.999477,0.207458,0.766287,0.599643,0.206875,0.99504,0.456541,0.300615,0.419934,0.982284,0.825718,0.306721,0.467789,0.153007,0.281612,0.924848,0.0177193,0.56164,0.352463,0.502834,0.750412,0.845584,0.686244,0.459681,0.307567,0.88493,0.747684,0.935647,0.232148,0.196043,0.846086,0.876134,0.339955,0.0119224,0.379784,0.681962,0.0361773,0.824589,0.00144917,0.0920463,0.433589,0.929724,0.117833,0.0144749,0.366103,0.0627395,0.551569,0.0558857,0.872717,0.70871,0.6741,0.43913,0.808906,0.893194,0.65994,0.424579,0.389777,0.861161,0.602476,0.308677,0.230742,0.0659447,0.71732,0.436369,0.128066,0.0519168,0.446199,0.711564,0.219431,0.00113463,0.427216,0.978715,0.910579,0.214052,0.456779,0.0743448,0.277438,0.097334,0.873545,0.445724,0.531992,0.111129,0.0968887,0.912488,0.624204,0.99629,0.578886,0.0242808,0.152554,0.37285,0.665688,0.646482,0.748304,0.922146,0.73977,0.963825,0.177429,0.659736,0.478188,0.478455,0.913967,0.281957,0.565267,0.269885,0.866557,0.114097,0.854974,0.12262,0.464177,0.753929,0.728032,0.99277,0.819773,0.966985,0.152256,0.654987,0.105952,0.52751,0.371448,0.317535,0.696237,0.379971,0.415553,0.300675,0.293861,0.66333,0.223921,0.942919,0.978282,0.786187,0.780804,0.341177,0.19084,0.177765,0.846839,0.533812,0.620866,0.0772783,0.206836,0.737238,0.495765,0.818426,0.474968,0.242791,0.743869,0.897812,0.564526,0.136427,0.677292,0.325092,0.390739,0.0917332,0.998176,0.722402,0.102826,0.157552,0.390997,0.914963,0.87205,0.460318,0.691335,0.860845,0.708073,0.301523,0.832984,0.185842,0.262724,0.181022,0.117518,0.860176,0.101605,0.552622,0.0840866,0.455672,0.3729,0.25348,0.589101,0.527371,0.0828291,0.695811,0.367021,0.852511,0.259465,0.0816689,0.687156,0.339792,0.120028,0.712564,0.534208,0.870149,0.288144,0.166961,0.35199,0.990499,0.110735,0.495602,0.0477884,0.409765,0.286048,0.907195,0.665145,0.467956,0.64977,0.92873,0.330903,0.189259,0.113157,0.0887493,0.256893,0.439297,0.100732,0.0805707,0.256056,0.823987,0.629863,0.324869,0.99076,0.0911924,0.973534,0.801409,0.53659,0.942254,0.47278,0.477023,0.558673,0.557208,0.291773,0.331959,0.116457,0.139985,0.684534,0.109854,0.838807,0.0116542,0.661914,0.0599477,0.95958,0.318713,0.0621842,0.655161,0.796588,0.109295,0.0181159,0.350179,0.307174,0.945549,0.175572,0.579068,0.851114,0.351255,0.126905,0.888537,0.398867,0.809063,0.893311,0.173594,0.429827,0.435614,0.0984383,0.747781,0.310649,0.638407,0.653826,0.607217,0.47471,0.106898,0.568251,0.271375,0.0176093,0.0297447,0.177342,0.688559,0.531118,0.987988,0.63199,0.0540558,0.752005,0.234268,0.0567348,0.568117,0.783065,0.426958,0.213335,0.922166,0.970309,0.855884,0.369959,0.366244,0.971884,0.505567,0.519444,0.0817475,0.748544,0.312741,0.325477,0.324593,0.841112,0.742711,0.270595,0.53584,0.50579,0.266063,0.318931,0.93858,0.253843,0.970338,0.762274,0.0769086,0.469958,0.623582,0.472298,0.666724,0.794801,0.989305,0.142857,0.728709,0.250891,0.335328,0.771778,|0.618354,0.863793,0.56257,0.278572,0.255184,0.111361,0.944319,0.219902,0.870873,0.55793,0.499221,0.985062,0.444601,0.727473,0.50028,0.964213,0.411252,0.637937,0.0810233,0.803132,0.739472,0.112071,0.324537,0.287134,0.206514,0.284516,0.0639825,0.289761,0.220473,0.608669,0.57954,0.66694,0.320401,0.120947,0.0298289,0.482193,0.559745,0.770522,0.951769,0.390298,0.463083,0.409941,0.0466659,0.212111,0.68037,0.537167,0.769607,0.653543,0.665604,0.0136187,0.980088,0.838034,0.540224,0.5654,0.851563,0.569498,0.511149,0.147345,0.451973,0.212383,0.499308,0.350155,0.707036,0.404817,0.183859,0.226348,0.588972,0.411025,0.125333,0.514291,0.539282,0.898349,0.768183,0.301708,0.874985,0.12328,0.944927,0.452907,0.863859,0.932218,0.0170039,0.430571,0.517157,0.751696,0.719362,0.276582,0.698166,0.620344,0.461137,0.819162,0.397902,0.647523,0.506847,0.819324,0.72285,0.955021,0.733949,0.891502,0.0647935,0.59186,0.273027,0.340069,0.39496,0.837458,0.557015,0.958967,0.324363,0.850605,0.219817,0.13314,0.3124,0.164792,0.767343,0.539101,0.118515,0.213568,0.0731775,0.591105,0.740794,0.182241,0.922267,0.697236,0.611128,0.308151,0.381567,0.0482306,0.302272,0.900029,0.469061,0.808643,0.304409,0.603731,0.493751,0.454747,0.429338,0.388955,0.995169,0.205839,0.400186,0.819028,0.876426,0.901308,0.676849,0.274495,0.410635,0.211058,0.985712,0.973644,0.621934,0.894422,0.0117839,0.0128765,0.663064,0.885366,0.635967,0.989826,0.301527,0.209088,0.448724,0.613434,0.0761047,0.168469,0.61713,0.198131,0.309593,0.716908,0.467627,0.413443,0.286743,0.0937507,0.0953403,0.380518,0.684853,0.73019,0.306313,0.932779,0.868878,0.617534,0.558766,0.618413,0.651879,0.25583,0.371469,0.796881,0.353582,0.698361,0.861427,0.0907758,0.572907,0.197109,0.260436,0.940929,0.808597,0.109992,0.957781,0.318445,0.549707,0.165151,0.829021,0.243041,0.310744,0.586191,0.907078,0.784053,0.0243389,0.677139,0.0968266,0.898356,0.834201,0.586506,0.291039,0.649952,0.817812,0.741001,0.343397,0.105117,0.611974,0.901719,0.0283598,0.652174,0.769682,0.948442,0.675951,0.327549,0.707489,0.496745,0.482271,0.167107,0.32352,0.426205,0.529224,0.610246,0.51217,0.464267,0.533734,0.543294,0.751404,0.124783,0.00335819,0.97778,0.405629,0.195571,0.677167,0.618599,0.0786628,0.884213,0.359376,0.458233,0.587825,0.0201406,0.347198,0.344789,0.884467,0.655986,0.322373,0.458848,0.934199,0.632173,0.270948,0.412091,0.91658,0.140691,0.393191,0.838488,0.432242,0.274617,0.463799,0.937318,0.818918,0.973741,0.220392,0.225035,0.04823,0.579061,0.415197,0.0557118,0.762774,0.152044,0.339487,0.121733,0.110866,0.78896,0.575469,0.386066,0.0912201,0.606707,0.423099,0.428959,0.489696,0.18294,0.0705734,0.324951,0.901562,0.646764,0.769394,0.129841,0.361004,0.284972,0.596039,0.464225,0.758354,0.566606,0.42144,0.526992,0.789893,0.866576,0.359972,0.671974,0.647173,0.420282,0.555996,0.0555537,0.618996,0.114098,0.00706542,0.996381,0.455391,0.562757,0.920575,0.119603,0.461872,0.0153422,0.87148,0.611428,0.704403,0.295711,0.428687,0.33806,0.92557,0.760898,0.860101,0.373604,0.0564008,0.930664,0.995996,0.246295,0.418606,0.947565,0.695827,0.383754,0.133586,0.143561,0.603458,0.593564,0.397183,0.346887,0.0528709,0.908085,0.455487,0.493575,0.97014,0.911517,0.894997,0.210791,0.0992644,0.907463,0.118369,0.421348,0.314959,0.126325,0.148467,0.89414,0.387263,0.336488,0.906018,0.00204271,0.327214,0.50911,0.672734,0.326195,0.546731,0.723461,0.167154,0.369667,0.9448,0.0202951,0.108819,0.107851,0.59127,0.668456,0.143165,0.836729,0.160423,0.905988,0.0270479,0.0865795,0.449682,0.916806,0.774433,0.368832,0.0734897,0.291183,0.453109,0.76548,0.60988,0.625491,0.419143,0.128715,0.708505,0.255209,0.625616,0.92172,0.983115,0.854294,0.949227,0.609068,0.543595,0.390598,0.703494,0.730256,0.434159,0.189418,0.771234,0.288389,0.873543,0.886332,0.165167,0.204611,0.0320097,0.899169,0.111742,0.109551,0.380191,0.21793,0.0197659,0.188972,0.653258,0.961217,0.323355,0.767828,0.170195,0.643763,0.56954,0.930611,0.41453,0.94822,0.208046,0.6418,0.981731,0.327938,0.517495,0.62909,0.249317,0.822117,0.194628,0.966547,0.416526,0.971146,0.935291,0.766843,0.533418,0.943138,0.539827,0.0573326,0.79127,0.468841,0.226879,0.605619,0.235653,0.736153,0.285093,0.139843,0.02533,0.0273788,0.673163,0.788601,0.567204,0.0978964,0.0795985,0.032131,0.61622,0.162685,0.783514,0.310468,0.027599,0.735907,0.782415,0.246147,0.660893,0.639217,0.299588,0.0084188,0.836653,0.590433,0.63067,0.827557,0.522192,0.640091,0.631322,0.264596,0.542322,0.0289023,0.619561,0.256791,0.866695,0.818012,0.509026,0.189196,0.454668,0.834087,0.534013,0.00153267,0.111714,0.57089,0.452289,0.733664,0.489255,0.0881924,0.983446,0.0788771,0.619701,0.693887,0.218901,0.471326,0.31733,0.549807,0.657632,0.576649,0.761706,0.207981,0.351209,0.073884,0.145322,0.561225,0.93895,0.170889,0.541929,0.158557,0.0215345,0.11935,0.927849,0.59852,0.563977,0.443513,0.154349,0.893236,0.00667959,0.00185752,0.686681,0.126998,0.471242,0.146535,0.218281,0.447391,0.950627,0.263249,0.269661,0.00619149,0.156851,0.229013,0.517689,0.558564,0.960617,0.48179,0.133298,0.993625,0.527339,0.915722,0.0752704,0.00521612,0.588957,0.137295,0.451184,0.833015,0.764741,0.148594,0.351069,0.127791,0.664393,0.718658,0.542807,0.841482,0.267679,0.475016,0.853966,0.498411,0.00424784,0.570658,0.0054841,0.326117,0.30481,0.152707,0.0679272,0.467497,0.862371,0.327532,0.872407,0.189343,0.178118,0.402334,0.596678,0.67263,0.752411,0.8359,0.597046,0.136472,0.707872,0.437442,0.357137,0.0177208,0.585199,0.155649,0.239549,0.508683,0.167806,0.803122,0.731194,0.377011,0.939407,0.703955,0.829632,0.657481,0.408999,0.242914,0.067668,0.45907,0.705762,0.865088,0.924339,0.930965,0.518816,0.959384,0.153492,0.466046,0.353785,0.0959296,0.747911,0.789855,0.759347,0.619584,0.55735,0.628398,0.350865,0.687176,0.590969,0.0921885,0.188813,0.952635,0.0308003,0.236155,0.719938,0.0975297,0.996026,0.388727,0.621004,0.871974,0.737308,0.154851,0.774984,0.130016,0.241436,0.387952,0.501168,0.533991,0.671695,0.736246,0.400812,0.219223,0.0700671,0.688461,0.580488,0.644356,0.686525,0.612755,0.317192,0.317522,0.85035,0.241548,0.986546,0.911416,0.650846,0.00765514,0.81736,0.992388,0.408406,0.480691,0.498723,0.416102,0.916297,0.0667353,0.25566,0.944518,0.777045,0.54185,0.916241,0.256639,0.793233,0.519675,0.53997,0.187472,0.277865,0.556293,0.466857,0.0727028,0.271929,0.672118,0.197935,0.76838,0.199279,0.0382084,0.423099,0.636701,0.381767,0.188255,0.777858,0.0556085,0.838091,0.139892,0.047848,0.970215,0.203306,0.536607,0.352646,0.405929,0.968373,0.0195138,0.180799,0.934186,0.462918,0.952589,0.724836,0.113416,0.361353,0.853087,0.892887,0.769207,0.667696,0.785053,0.339696,0.897353,0.00812948,0.763968,0.269299,0.0683696,0.225342,0.74427,0.830474,0.967105,0.758351,0.859282,0.974871,0.749551,0.71241,0.381845,0.110005,0.916147,0.362405,0.851667,0.837356,0.896426,0.89495,0.890775,0.479317,0.155001,0.742965,0.920655,0.160492,0.66245,0.0618176,0.0204555,0.154339,0.040127,0.464348,0.38649,0.736315,0.0726383,0.245914,0.279873,0.312405,0.520181,0.831723,0.0885418,0.896619,0.960435,0.743938,0.0850471,0.404661,0.820427,0.173434,0.107866,0.0292343,0.0977392,0.207892,0.568178,0.703138,0.316439,0.352157,0.147878,0.53446,0.47727,0.205074,0.822396,0.713322,0.75588,0.30461,0.258696,0.167072,0.522161,0.371622,0.476349,0.0980705,0.727751,0.734517,0.441698,0.328909,0.973039,0.552412,0.196837,0.0606181,0.164345,0.857115,0.093177,0.441466,0.98021,0.527212,0.593432,0.519094,0.453306,0.766607,0.502678,0.327698,0.678851,0.731043,0.52882,0.328985,0.521079,0.897272,0.492392,0.186652,0.794957,0.826096,0.496787,0.318825,0.675935,0.308363,1.74642e-05,0.475451,0.749491,0.273608,0.405824,0.214924,0.593402,0.588231,0.276362,0.721394,0.87899,0.845484,0.762044,0.0433753,0.986634,0.782166,0.771623,0.408175,0.716966,0.384554,0.0158212,0.13473,0.538174,0.417377,0.877537,0.262877,0.778086,0.381195,0.71735,0.729056,0.236689,0.819467,0.804608,0.629032,0.976626,0.922537,0.411536,0.958208,0.403811,0.072936,0.00585461,0.66276,0.422308,0.643611,0.898878,0.252782,0.447857,0.247001,0.17962,0.151809,0.55029,0.878234,0.0612481,0.35226,0.781868,0.286884,0.946872,0.921879,0.757455,0.828299,0.616812,0.937228,0.881099,0.560759,0.451596,0.171732,0.567916,0.40659,0.00576729,0.83872,0.822802,0.950855,0.378275,0.280695,0.132467,0.826329,0.252609,0.562204,0.418262,0.407607,0.211072,0.720227,0.767431,0.724858,0.0978734,0.175367,0.802559,0.405669,0.892619,0.226806,0.827105,0.927324,0.56539,0.849978,0.044693,0.650345,0.942992,0.163764,0.249961,0.341579,0.144213,0.261375,0.836072,0.521975,0.590333,0.67483,0.652144,0.791364,0.514348,0.165656,0.728021,0.104931,0.566096,0.843057,0.613336,0.0829589,0.291829,0.880727,0.269492,0.547287,0.231937,0.646528,0.633802,0.765741,0.957564,0.901212,0.610147,0.684449,0.794242,0.715182,0.887813,0.807851,0.753096,0.372557,0.762024,0.393622,0.677093,0.727303,0.510333,0.0615011,0.900261,0.566501,0.114514,0.201191,0.290499,0.807333,0.406364,0.536486,0.090494,0.391507,0.592924,0.444564,0.57172,0.837602,0.173683,0.976361,0.11176,0.0188758,0.0151958,0.912394,0.2863,0.473384,0.116468,0.313727,0.143328,|0.739653,0.0222999,0.561406,0.518888,0.885297,0.374487,0.302541,0.390408,0.753073,0.944469,0.226999,0.396869,0.731445,0.771362,0.821869,0.467364,0.416292,0.601729,0.968665,0.616789,0.405826,0.507622,0.592863,0.457251,0.654492,0.97349,0.755425,0.330587,0.670738,0.269358,0.480369,0.278765,0.0341001,0.235494,0.84981,0.0494807,0.1237,0.169775,0.0742365,0.105931,0.585901,0.197293,0.0340951,0.859317,0.902547,0.184102,0.443272,0.74313,0.00795215,0.193405,0.988585,0.355209,0.279452,0.271702,0.878177,0.0675045,0.888331,0.153456,0.419579,0.991611,0.976716,0.795035,0.459906,0.47145,0.119308,0.932021,0.176046,0.0129706,0.49336,0.768671,0.771489,0.726217,0.199744,0.586446,0.467038,0.319796,0.477898,0.685151,0.0220949,0.760553,0.329779,0.38509,0.559636,0.653708,0.44626,0.008973,0.552938,0.126947,0.0774949,0.552603,0.282,0.587466,0.462578,0.510722,0.539374,0.483031,0.637732,0.810092,0.883645,0.155949,0.51647,0.325955,0.987226,0.649312,0.354797,0.799086,0.314982,0.779954,0.146551,0.0233994,0.162647,0.997923,0.241191,0.568176,0.637508,0.0434558,0.256929,0.57106,0.5376,0.704834,0.496188,0.667329,0.00118595,0.21847,0.926324,0.258719,0.780564,0.771442,0.991396,0.569999,0.120719,0.418312,0.085325,0.572092,0.584553,0.666603,0.697943,0.272295,0.527824,0.189852,0.77944,0.389182,0.624296,0.346865,0.213952,0.225249,0.10371,0.326482,0.680289,0.455542,0.091674,0.788416,0.914137,0.566475,0.131161,0.876186,0.548991,0.706856,0.162271,0.0774367,0.193554,0.0819306,0.947318,0.0866762,0.652802,0.124105,0.795228,0.495971,0.546687,0.185465,0.663563,0.87654,0.805755,0.777979,0.706346,0.00912935,0.901602,0.345746,0.802686,0.891891,0.216932,0.430146,0.543614,0.920406,0.74715,0.758032,0.427308,0.549492,0.986519,0.960047,0.964973,0.0108887,0.348281,0.994038,0.208925,0.921114,0.567995,0.747309,0.604251,0.515562,0.869347,0.48712,0.435489,0.297562,0.661051,0.698525,0.371122,0.0290276,0.482928,0.996441,0.36849,0.715167,0.499791,0.0853637,0.988909,0.320611,0.56124,0.468851,0.816652,0.210816,0.165847,0.611984,0.940184,0.704965,0.364774,0.602675,0.461266,0.351444,0.289828,0.761776,0.529953,0.830945,0.41527,0.410638,0.83143,0.189653,0.238601,0.570107,0.987756,0.869689,0.185778,0.334877,0.897633,0.549266,0.921048,0.51058,0.18337,0.769732,0.396012,0.687955,0.832395,0.713312,0.745285,0.877194,0.581451,0.219743,0.599174,0.625327,0.365307,0.499013,0.862958,0.267187,0.992217,0.707222,0.887922,0.806409,0.670397,0.297836,0.966831,0.199079,0.773359,0.364106,0.389073,0.189591,0.319537,0.125299,0.0706761,0.863854,0.314631,0.951718,0.58948,0.428976,0.13403,0.227935,0.392746,0.650357,0.805474,0.665007,0.286078,0.626159,0.842462,0.527095,0.894037,0.55211,0.930229,0.457737,0.733121,0.0114027,0.237292,0.644748,0.339645,0.38309,0.53137,0.481361,0.0251668,0.142907,0.266196,0.521301,0.384808,0.513626,0.697498,0.39846,0.901722,0.204005,0.811799,0.769146,0.0503944,0.10291,0.710122,0.616104,0.0935001,0.410039,0.340331,0.640211,0.395496,0.027139,0.595496,0.801816,0.209064,0.957478,0.204837,0.247271,0.477193,0.121745,0.467954,0.796407,0.800475,0.68427,0.745739,0.31944,0.0295914,0.532763,0.200584,0.268654,0.391642,0.325219,0.644781,0.176787,0.0522634,0.999407,0.486591,0.457021,0.0456219,0.962342,0.0682139,0.371961,0.722759,0.106645,0.354844,0.891841,0.470878,0.241062,0.145137,0.387267,0.926724,0.0619813,0.405258,0.917315,0.0185377,0.87795,0.129935,0.343506,0.995709,0.25167,0.548355,0.782675,0.903751,0.972316,0.320884,0.894581,0.114089,0.291442,0.0762595,0.348881,0.73994,0.217623,0.65779,0.711258,0.861981,0.340369,0.302809,0.459339,0.121745,0.588097,0.0824283,0.887353,0.213028,0.42443,0.713368,0.833706,0.959373,0.0181585,0.599072,0.516336,0.567995,0.538134,0.900692,0.65105,0.154285,0.31627,0.901311,0.245371,0.270013,0.563323,0.225082,0.876085,0.729585,0.299097,0.516537,0.220368,0.290735,0.0381599,0.313765,0.0471424,0.579671,0.0102993,0.388497,0.129447,0.0813457,0.50979,0.00401402,0.586067,0.0810339,0.168199,0.817373,0.35785,0.663307,0.335699,0.766728,0.0292347,0.962314,0.900118,0.156881,0.0796906,0.795065,0.776835,0.10168,0.42875,0.395867,0.269356,0.685438,0.595827,0.447501,0.466333,0.103126,0.301231,0.237061,0.0146547,0.405753,0.636315,0.443576,0.286031,0.0212866,0.442851,0.163962,0.545394,0.742325,0.080523,0.991612,0.427099,0.306133,0.753754,0.670121,0.0354632,0.742837,0.244727,0.437924,0.0589441,0.172449,0.23003,0.087119,0.367386,0.0208815,0.658985,0.198639,0.0786545,0.0440409,0.925847,0.71392,0.566457,0.32525,0.616181,0.290558,0.461003,0.197963,0.0841703,0.682648,0.701637,0.790685,0.0500916,0.181112,0.848111,0.305077,0.435167,0.451204,0.0314029,0.552554,0.749634,0.610506,0.574353,0.753518,0.258431,0.185687,0.789173,0.927318,0.491007,0.168318,0.703339,0.375019,0.0669545,0.00266504,0.799044,0.414803,0.529933,0.998343,0.164321,0.709733,0.335833,0.609602,0.2314,0.137735,0.567339,0.0724019,0.494396,0.0916638,0.937529,0.0197745,0.673649,0.0843545,0.0193197,0.114461,0.196813,0.347147,0.705905,0.25596,0.144283,0.503748,0.555681,0.284875,0.311411,0.139203,0.678854,0.538948,0.705,0.491575,0.961678,0.29744,0.00420189,0.216418,0.460134,0.752423,0.909512,0.827356,0.565735,0.965089,0.170143,0.302649,0.163162,0.999198,0.382778,0.504413,0.07861,0.745495,0.18651,0.173535,0.781827,0.515018,0.319337,0.309837,0.890497,0.350336,0.40424,0.11877,0.358853,0.108289,0.765827,0.194809,0.422253,0.45026,0.742647,0.420663,0.66691,0.348363,0.288616,0.824939,0.769053,0.375647,0.723839,0.839382,0.121266,0.901663,0.726543,0.115846,0.547795,0.16497,0.338455,0.167499,0.871579,0.914483,0.0844238,0.872801,0.428019,0.895193,0.296539,0.347199,0.321952,0.569987,0.590989,0.657707,0.773328,0.770757,0.414862,0.194738,0.975979,0.592035,0.767989,0.162029,0.637528,0.633975,0.127016,0.322503,0.331519,0.0898439,0.114563,0.837475,0.435861,0.0752073,0.882979,0.674039,0.553501,0.12214,0.751112,0.648829,0.505279,0.101523,0.954941,0.0420684,0.954084,0.37298,0.729667,0.500538,0.264345,0.960038,0.824481,0.485233,0.193145,0.949756,0.942871,0.923398,0.379563,0.92369,0.399441,0.616849,0.542814,0.0786928,0.368552,0.106101,0.236254,0.303387,0.61545,0.414224,0.0874828,0.375715,0.894248,0.705685,0.580945,0.759881,0.447379,0.17782,0.846542,0.240414,0.936314,0.173892,0.193906,0.0487199,0.222237,0.891539,0.9859,0.557672,0.988451,0.31568,0.119411,0.258348,0.968693,0.714791,0.626072,0.560218,0.45011,0.986774,0.278064,0.835612,0.373973,0.759923,0.842455,0.251866,0.204861,0.00644094,0.97488,0.161157,0.881947,0.49422,0.895299,0.254328,0.032598,0.851049,0.27406,0.0888423,0.558914,0.0457278,0.45467,0.973358,0.837467,0.063012,0.987099,0.386581,0.381738,0.0450831,0.282595,0.515592,0.20023,0.845223,0.765691,0.113762,0.118119,0.400841,0.834279,0.218796,0.0191517,0.106314,0.906483,0.42925,0.866286,0.581264,0.207283,0.0892337,0.697353,0.758817,0.431246,0.83644,0.582906,0.411193,0.451616,0.732648,0.161087,0.014743,0.186502,0.472271,0.538305,0.202024,0.056697,0.799028,0.88215,0.965576,0.574286,0.529943,0.106916,0.863342,0.784651,0.650713,0.563811,0.822492,0.447017,0.950378,0.748296,0.550629,0.0264138,0.610638,0.340325,0.840113,0.981839,0.347726,0.0951738,0.312211,0.0371214,0.0713255,0.0212077,0.617993,0.697186,0.841107,0.42787,0.387142,0.779518,0.337292,0.470026,0.251743,0.158894,0.825193,0.224758,0.654852,0.223875,0.605892,0.704681,0.154081,0.190633,0.373006,0.02643,0.421425,0.937759,0.684114,0.983955,0.206494,0.343072,0.835093,0.864319,0.67423,0.117649,0.188024,0.616171,0.270573,0.749718,0.696075,0.343831,0.458842,0.915345,0.584407,0.138799,0.515242,0.382184,0.94621,0.112993,0.962777,0.529755,0.190124,0.444298,0.545635,0.669722,0.519579,0.485088,0.926698,0.546904,0.410026,0.0604296,0.834191,0.514083,0.253983,0.523703,0.251398,0.198313,0.451162,0.891787,0.225593,0.456421,0.233572,0.520078,0.321967,0.908869,0.657248,0.250794,0.725379,0.0911278,0.944185,0.51681,0.802528,0.604328,0.302011,0.967543,0.366252,0.467195,0.601756,0.903373,0.312086,0.242378,0.863159,0.255556,0.771474,0.459093,0.59297,0.501707,0.0909652,0.304749,0.982508,0.966197,0.248368,0.469141,0.958941,0.621723,0.352485,0.55324,0.656454,0.0620375,0.759836,0.128646,0.964713,0.427088,0.579821,0.436637,0.434761,0.862762,0.236557,0.641388,0.165846,0.579061,0.647418,0.449076,0.00104612,0.655044,0.940607,0.905031,0.5626,0.472181,0.204051,0.17889,0.64206,0.855998,0.690388,0.0308535,0.286975,0.566703,0.312454,0.981087,0.818467,0.93031,0.479098,0.363135,0.753857,0.361243,0.330808,0.823831,0.43514,0.188725,0.965815,0.47697,0.105063,0.981621,0.230888,0.354875,0.413962,0.586338,0.359587,0.573623,0.7824,0.0198109,0.763227,0.608441,0.331742,0.104739,0.706365,0.749502,0.222587,0.32748,0.381328,0.991742,0.0831674,0.0711882,0.619292,0.922431,0.0366876,0.741306,0.391368,0.0775569,0.52278,0.88145,0.0699774,0.632565,0.238093,0.544869,0.63336,0.30994,0.078118,0.141117,0.879708,0.505278,0.465073,0.206534,0.977948,0.905387,0.0577011,0.470295,0.148836,0.222485,0.324958,0.899721,0.723701,0.746056,0.390107,0.566389,0.0847611,0.802238,0.973737,0.354466,0.0568995,0.555782,0.359994,0.262012,0.330376,0.845148,0.991762,0.701507,0.018009,0.991528,|0.742192,0.358356,0.0770156,0.929743,0.187541,0.0246788,0.327655,0.395625,0.179294,0.315903,0.53086,0.442326,0.308601,0.349247,0.672504,0.419963,0.127694,0.863028,0.374859,0.37976,0.320594,0.159663,0.900087,0.559112,0.280957,0.098581,0.49976,0.380099,0.105682,0.280729,0.175858,0.857379,0.391476,0.877808,0.382312,0.328614,0.760215,0.906609,0.319746,0.927054,0.140036,0.0575239,0.721534,0.522594,0.0329763,0.972279,0.185565,0.824697,0.00436813,0.519756,0.964213,0.141242,0.812538,0.626718,0.0677445,0.625529,0.111695,0.506127,0.556231,0.25485,0.296419,0.140577,0.591325,0.425229,0.685053,0.431528,0.520331,0.212192,0.721239,0.853469,0.255842,0.535796,0.328094,0.79461,0.627706,0.979265,0.342154,0.940271,0.122313,0.674544,0.339638,0.286186,0.135667,0.00546449,0.54867,0.178493,0.991803,0.735023,0.493032,0.192181,0.843097,0.854309,0.34813,0.892464,0.592041,0.0294893,0.098453,0.406407,0.112392,0.245565,0.702861,0.927191,0.205625,0.0496932,0.648757,0.957773,0.986535,0.248792,0.560641,0.833263,0.401937,0.935991,0.884803,0.193061,0.678575,0.452043,0.332835,0.0986847,0.448198,0.645557,0.746343,0.896902,0.0707723,0.908786,0.214247,0.850116,0.619439,0.444917,0.0667827,0.892584,0.0349144,0.629212,0.0677379,0.144848,0.98744,0.501979,0.193135,0.0800719,0.955026,0.546601,0.80227,0.0459191,0.114559,0.752814,0.855675,0.913138,0.0317024,0.742115,0.441717,0.55875,0.555215,0.62466,0.092932,0.314983,0.121651,0.898992,0.731543,0.674127,0.666214,0.357674,0.453897,0.261693,0.154091,0.328969,0.94608,0.930073,0.577177,0.226358,0.529249,0.181391,0.752992,0.902916,0.873411,0.922655,0.0727626,0.693974,0.824228,0.628821,0.696205,0.400572,0.488363,0.255398,0.978693,0.585884,0.479608,0.59064,0.931202,0.978358,0.373139,0.128539,0.47544,0.128435,0.463491,0.69899,0.542449,0.171071,0.458717,0.349694,0.523927,0.536097,0.406846,0.768314,0.578449,0.596245,0.992688,0.630263,0.697083,0.121213,0.173357,0.669073,0.824536,0.853923,0.310509,0.145548,0.651168,0.661673,0.452781,0.34496,0.135865,0.621257,0.377993,0.0814878,0.759053,0.469798,0.816567,0.218711,0.28406,0.538862,0.602007,0.483664,0.278623,0.902616,0.0159476,0.51427,0.839085,0.545275,0.362218,0.113347,0.437812,0.753067,0.0839648,0.354417,0.545904,0.082746,0.89617,0.109059,0.996226,0.252406,0.892454,0.261951,0.172956,0.14917,0.587357,0.974225,0.640916,0.771362,0.889049,0.0256377,0.0293769,0.462922,0.791947,0.63931,0.827129,0.023857,0.417252,0.870287,0.860439,0.279385,0.724186,0.0212883,0.222763,0.656556,0.963525,0.23166,0.382779,0.234176,0.578409,0.0444168,0.693258,0.618234,0.271787,0.0903834,0.634298,0.69565,0.842922,0.522545,0.08294,0.502285,0.386547,0.245502,0.911217,0.106497,0.741003,0.791286,0.787419,0.310507,0.908428,0.249116,0.901912,0.63651,0.0187377,0.0229535,0.479022,0.977845,0.595501,0.112663,0.643822,0.0958315,0.2269,0.801797,0.0769676,0.286402,0.821675,0.645146,0.204731,0.218973,0.223152,0.540442,0.352662,0.866085,0.035625,0.184389,0.357006,0.230611,0.613623,0.771625,0.704412,0.584154,0.457237,0.991209,0.910768,0.352087,0.355254,0.901212,0.704376,0.901023,0.854214,0.288476,0.682538,0.447812,0.396545,0.272552,0.858987,0.999107,0.163292,0.307324,0.448975,0.203653,0.954372,0.613437,0.568104,0.60971,0.915063,0.0756822,0.0711446,0.448412,0.80037,0.398608,0.0284178,0.52147,0.307413,0.461069,0.24405,0.771043,0.593166,0.289244,0.0270416,0.610974,0.0928105,0.282124,0.279949,0.554507,0.18165,0.333664,0.635451,0.25537,0.733122,0.701351,0.148844,0.799773,0.21651,0.0052712,0.129988,0.42986,0.637511,0.565672,0.812118,0.0817053,0.424516,0.0825971,0.0426165,0.0792007,0.39357,0.0169954,0.502446,0.0235184,0.917947,0.861056,0.385586,0.618277,0.0233352,0.293392,0.725252,0.798138,0.0878444,0.575298,0.74826,0.776112,0.524647,0.15181,0.91983,0.543281,0.305162,0.47124,0.067014,0.435591,0.315181,0.626176,0.0689072,0.810921,0.845257,0.580947,0.234494,0.861756,0.547823,0.591932,0.77334,0.381234,0.74702,0.0140321,0.54668,0.601945,0.66657,0.748121,0.548443,0.106724,0.471595,0.490326,0.0902674,0.995996,0.0644649,0.846047,0.295612,0.879302,0.467858,0.449925,0.585221,0.3209,0.5801,0.0143605,0.833623,0.625351,0.146077,0.00176507,0.046575,0.809416,0.456962,0.824725,0.563699,0.247176,0.910082,0.246981,0.760096,0.547242,0.197772,0.343175,0.246085,0.413283,0.261501,0.233959,0.140742,0.692801,0.867891,0.265076,0.602953,0.461307,0.335278,0.430401,0.16077,0.916272,0.933292,0.110607,0.975972,0.319643,0.46927,0.601921,0.0100979,0.805781,0.209916,0.621056,0.897783,0.547248,0.991161,0.756059,0.620267,0.300146,0.883735,0.481876,0.586417,0.300439,0.208539,0.873861,0.402003,0.574219,0.0019381,0.804968,0.217661,0.133588,0.222536,0.982803,0.366867,0.59469,0.93897,0.192939,0.734237,0.240711,0.918531,0.944087,0.703885,0.216164,0.562891,0.231279,0.652382,0.448821,0.0324488,0.386382,0.931814,0.0449323,0.988354,0.0185606,0.75834,0.704118,0.0291536,0.587472,0.49666,0.835582,0.00277972,0.905631,0.473938,0.184604,0.0109856,0.570306,0.554481,0.288555,0.810759,0.732361,0.762442,0.758457,0.815884,0.660243,0.404997,0.630396,0.485711,0.429074,0.31194,0.55062,0.209438,0.488823,0.312169,0.0774761,0.12007,0.457669,0.300822,0.927601,0.234374,0.0715889,0.330405,0.457993,0.774836,0.970225,0.542319,0.725986,0.0476104,0.997765,0.0964428,0.67674,0.460873,0.662258,0.983482,0.064554,0.0982575,0.0703672,0.252558,0.752576,0.476175,0.260318,0.402012,0.7421,0.615065,0.0454338,0.887721,0.0124534,0.895623,0.911657,0.341541,0.323004,0.488729,0.774696,0.229069,0.378331,0.140778,0.588625,0.485487,0.0907298,0.837209,0.293334,0.165113,0.220359,0.728253,0.402965,0.601771,0.00970834,0.828291,0.00852364,0.263894,0.277642,0.758333,0.166783,0.145558,0.706005,0.874587,0.302445,0.639156,0.432857,0.485333,0.566995,0.443406,0.51389,0.999461,0.550864,0.870811,0.781185,0.731702,0.331243,0.59295,0.663517,0.10091,0.740632,0.900552,0.268974,0.892957,0.577514,0.791591,0.424123,0.836562,0.970138,0.611443,0.0576501,0.906856,0.961717,0.831957,0.740008,0.0656794,0.401324,0.048097,0.27726,0.316636,0.829468,0.825563,0.216255,0.290403,0.133685,0.440795,0.970495,0.980087,0.98256,0.533279,0.884273,0.684252,0.701,0.674079,0.870409,0.0802917,0.513747,0.266454,0.311056,0.404194,0.342784,0.810462,0.969736,0.136279,0.34869,0.406376,0.901661,0.415185,0.514797,0.929428,0.843212,0.173488,0.295658,0.150688,0.354102,0.201964,0.48621,0.362581,0.0856955,0.763166,0.982553,0.784252,0.720657,0.953895,0.0862988,0.35325,0.957047,0.0654813,0.22077,0.737543,0.690871,0.860537,0.874962,0.665709,0.142027,0.757317,0.555955,0.698114,0.116645,0.148137,0.780475,0.757389,0.507656,0.247385,0.80882,0.0657606,0.496445,0.91884,0.00747555,0.72571,0.780572,0.4429,0.405987,0.509053,0.519828,0.583354,0.718645,0.464128,0.938033,0.164652,0.929302,0.31176,0.217612,0.84747,0.0728055,0.98678,0.552876,0.922156,0.0776715,4.65512e-05,0.127193,0.638075,0.575653,0.19172,0.00488186,0.126908,0.622197,0.293222,0.556121,0.00175512,0.678084,0.116161,0.846531,0.928903,0.746083,0.0707836,0.909635,0.557315,0.313905,0.426439,0.196525,0.811237,0.396374,0.715277,0.258623,0.674705,0.581825,0.636177,0.115248,0.583136,0.287138,0.144639,0.0124683,0.509506,0.290077,0.246841,0.979915,0.59038,0.0279661,0.185525,0.206391,0.768118,0.190327,0.617984,0.364882,0.441829,0.358414,0.248079,0.129785,0.166736,0.936121,0.782744,0.551222,0.422277,0.599693,0.532603,0.911652,0.997269,0.606945,0.426582,0.959657,0.783933,0.174399,0.387997,0.00719112,0.981435,0.919102,0.202715,0.207961,0.978966,0.426983,0.970028,0.685353,0.293112,0.448704,0.382443,0.650951,0.0880319,0.172853,0.168235,0.508182,0.379669,0.578358,0.247334,0.260564,0.841237,0.361516,0.71671,0.199369,0.462681,0.839987,0.193948,0.887558,0.186678,0.515435,0.886151,0.851694,0.0510955,0.603188,0.831997,0.918443,0.88319,0.766372,0.826605,0.16293,0.96395,0.708218,0.929325,0.100899,0.0359122,0.44748,0.0623859,0.892827,0.982992,0.451713,0.385923,0.474355,0.620145,0.863421,0.937929,0.763412,0.629192,0.922109,0.815307,0.9019,0.868328,0.513047,0.736235,0.629734,0.0597602,0.286881,0.978914,0.255709,0.718275,0.0561836,0.0483722,0.971327,0.858568,0.0176808,0.869709,0.759598,0.457999,0.333936,0.00936872,0.439905,0.48711,0.947707,0.267378,0.369231,0.921281,0.181965,0.593178,0.129987,0.58653,0.95858,0.477155,0.448019,0.485453,0.355992,0.0353886,0.72527,0.884671,0.435967,0.457468,0.805253,0.824135,0.808445,0.339034,0.199983,0.725419,0.303183,0.535669,0.237201,0.169355,0.407915,0.340366,0.918996,0.919995,0.974404,0.661184,0.452317,0.534023,0.340591,0.42528,0.148445,0.305994,0.615342,0.373396,0.614407,0.129164,0.60117,0.419444,0.953422,0.495258,0.91387,0.11071,0.751818,0.88718,0.237576,0.0529364,0.311312,0.377991,0.119721,0.699524,0.99389,0.824594,0.271928,0.42211,0.589339,0.713749,0.987523,0.996196,0.422168,0.415085,0.387136,0.292644,0.225169,0.950499,0.739083,0.518425,0.583082,0.562565,0.494983,0.810668,0.326219,0.863298,0.21093,0.909481,0.674618,0.891591,0.348867,0.657621,0.659253,0.868189,0.592416,0.733379,0.889175,0.282328,0.251284,0.596617,0.930921,0.960878,0.663076,0.542754,0.846406,0.501283,0.26533,0.0253402,0.779607,0.700761,0.237494,0.572504,0.263043,|0.477937,0.505776,0.144433,0.062717,0.837001,0.590148,0.374134,0.807472,0.00346798,0.671135,0.806664,0.189022,0.844975,0.085512,0.456405,0.0633367,0.563548,0.394062,0.291204,0.0403134,0.237254,0.677627,0.335657,0.695365,0.751262,0.261567,0.0104886,0.932381,0.0420597,0.00784051,0.54295,0.741478,0.0219858,0.297102,0.32123,0.834332,0.584212,0.923224,0.571395,0.133974,0.473423,0.536492,0.364475,0.7258,0.545279,0.662293,0.776841,0.269012,0.15463,0.887124,0.730803,0.141982,0.723073,0.676715,0.105105,0.540283,0.848766,0.769775,0.323211,0.166436,0.310283,0.686348,0.372648,0.289791,0.429424,0.82358,0.473378,0.756227,0.122883,0.0871871,0.334763,0.282159,0.170342,0.803747,0.529845,0.818825,0.335608,0.769504,0.512256,0.843524,0.269162,0.161786,0.907126,0.883417,0.533377,0.804833,0.272043,0.681411,0.773365,0.830232,0.831179,0.815477,0.0368972,0.934061,0.799384,0.762002,0.574365,0.708666,0.960407,0.780957,0.985381,0.953281,0.29486,0.386972,0.608366,0.346979,0.989607,0.384597,0.821456,0.364831,0.325346,0.832625,0.427488,0.743662,0.672945,0.426384,0.904976,0.518627,0.562715,0.819056,0.351666,0.657552,0.255159,0.265079,0.954607,0.779046,0.137455,0.242408,0.649526,0.964072,0.343853,0.936963,0.461372,0.459417,0.705554,0.990618,0.998645,0.149396,0.50263,0.927417,0.66661,0.440748,0.996909,0.54111,0.0834268,0.279406,0.493285,0.28369,0.346922,0.532577,0.494821,0.319171,0.846397,0.245717,0.733246,0.0381891,0.356548,0.514632,0.732125,0.118408,0.717065,0.775527,0.48185,0.601238,0.42784,0.310056,0.810093,0.160136,0.31027,0.665754,0.490574,0.0826465,0.938873,0.251217,0.743601,0.691844,0.553907,0.486303,0.768716,0.731966,0.500866,0.839945,0.105548,0.49555,0.345439,0.955455,0.105909,0.349706,0.88561,0.343088,0.0211449,0.122681,0.643077,0.75293,0.107591,0.239279,0.291846,0.812109,0.0107848,0.957912,0.423796,0.397118,0.907231,0.380798,0.439731,0.569652,0.915373,0.125448,0.636186,0.432647,0.768513,0.0927567,0.709568,0.0627178,0.571093,0.220891,0.504407,0.296065,0.133411,0.358232,0.474459,0.228944,0.365507,0.480458,0.763002,0.137913,0.812315,0.359752,0.464366,0.832337,0.270665,0.36826,0.481099,0.372305,0.457316,0.712671,0.111148,0.878953,0.36077,0.565143,0.217933,0.0884307,0.190368,0.167279,0.512079,0.929071,0.295764,0.863203,0.00711191,0.905087,0.554917,0.448622,0.17976,0.103027,0.76757,0.206387,0.294756,0.239926,0.182676,0.733422,0.597358,0.603037,0.0746662,0.0170908,0.359006,0.735043,0.746395,0.614578,0.397923,0.391487,0.777714,0.486708,0.192464,0.322369,0.344674,0.441247,0.486634,0.778556,0.557388,0.00943458,0.260037,0.716555,0.323185,0.258563,0.192649,0.41892,0.272504,0.377785,0.178266,0.913659,0.0790061,0.677118,0.143166,0.916806,0.769495,0.775547,0.643664,0.710536,0.668071,0.383872,0.190916,0.719134,0.192182,0.778266,0.0713224,0.401234,0.380886,0.454297,0.278542,0.122849,0.670984,0.0963317,0.205774,0.874468,0.34455,0.104473,0.200719,0.170465,0.574447,0.379745,0.689294,0.130713,0.131095,0.389598,0.77985,0.581233,0.520253,0.845105,0.478114,0.198537,0.893725,0.256309,0.365649,0.039521,0.832372,0.408017,0.822095,0.926283,0.715785,0.402227,0.684413,0.71132,0.609778,0.219879,0.576578,0.0496331,0.710928,0.393042,0.464211,0.35423,0.611354,0.855181,0.572639,0.0684519,0.872343,0.654591,0.969401,0.413957,0.584498,0.898318,0.356618,0.886248,0.298152,0.77359,0.38425,0.0405432,0.302347,0.567684,0.355911,0.210075,0.326396,0.750042,0.856952,0.332547,0.604898,0.343649,0.0562,0.857833,0.0649271,0.70331,0.0327468,0.815433,0.937479,0.725374,0.0914036,0.390777,0.0840755,0.842221,0.351288,0.697389,0.276398,0.245463,0.921764,0.211931,0.523001,0.8272,0.121285,0.274137,0.729382,0.765071,0.104215,0.412226,0.645218,0.708829,0.400951,0.811839,0.67075,0.689553,0.322331,0.944962,0.419232,0.422231,0.580383,0.057471,0.870183,0.0680543,0.584058,0.329157,0.383178,0.211738,0.454005,0.10895,0.115951,0.77644,0.115323,0.559865,0.050971,0.864507,0.698191,0.0808098,0.153505,0.341264,0.773919,0.964477,0.200649,0.783171,0.194073,0.870259,0.374755,0.84824,0.0789562,0.0835729,0.0172904,0.840385,0.408341,0.000811875,0.0777957,0.801619,0.220684,0.878675,0.200944,0.728116,0.796157,0.462879,0.765729,0.460382,0.397281,0.519915,0.100881,0.209495,0.36282,0.696946,0.368997,0.321085,0.18114,0.669977,0.090524,0.235541,0.279399,0.843092,0.364152,0.996697,0.162554,0.398339,0.901237,0.63077,0.290404,0.837467,0.385132,0.0889047,0.891239,0.201234,0.429918,0.993124,0.903253,0.810232,0.385587,0.321914,0.0461341,0.648095,0.626993,0.284378,0.105105,0.535518,0.321128,0.327943,0.263949,0.480651,0.851703,0.706905,0.792688,0.932838,0.444727,0.725274,0.520983,0.465408,0.524843,0.166285,0.960453,0.588584,0.375103,0.298097,0.129133,0.250845,0.336546,0.311476,0.289867,0.370632,0.659941,0.870649,0.471109,0.765512,0.760682,0.872852,0.653254,0.925615,0.401073,0.144187,0.201207,0.867399,0.238244,0.00230944,0.20533,0.547092,0.890931,0.279433,0.960068,0.118859,0.306601,0.161768,0.412211,0.440232,0.0991473,0.484186,0.0454388,0.0604246,0.600658,0.923333,0.451949,0.251697,0.403555,0.79999,0.928454,0.031533,0.0957606,0.556134,0.675368,0.834079,0.257506,0.346237,0.107388,0.843549,0.213519,0.653482,0.475044,0.192619,0.844686,0.516023,0.548342,0.483376,0.171054,0.450254,0.0702189,0.251512,0.305421,0.462419,0.233517,0.532048,0.440378,0.66654,0.30533,0.869544,0.61426,0.964267,0.0557033,0.566339,0.330585,0.811375,0.787608,0.622752,0.0304171,0.42101,0.99586,0.492578,0.556649,0.322818,0.658397,0.889401,0.915943,0.530591,0.539017,0.66028,0.764458,0.13669,0.063507,0.218208,0.419716,0.386446,0.349973,0.633501,0.942835,0.888887,0.675035,0.354783,0.85832,0.310629,0.766237,0.225922,0.859361,0.729175,0.0635364,0.336826,0.0679825,0.772243,0.776208,0.741457,0.241036,0.867322,0.314845,0.1337,0.205486,0.4026,0.374504,0.71399,0.0309626,0.00813878,0.884995,0.273971,0.183559,0.291778,0.575219,0.452069,0.133402,0.0405332,0.193072,0.580655,0.182013,0.400409,0.429082,0.510186,0.23543,0.0186492,0.804009,0.598468,0.0142595,0.263274,0.816864,0.825823,0.342224,0.570917,0.153709,0.109411,0.683309,0.590672,0.369932,0.851541,0.939254,0.662746,0.896801,0.159752,0.312842,0.548895,0.349439,0.833791,0.002294,0.0962284,0.899521,0.611802,0.514132,0.117026,0.519401,0.825122,0.111547,0.176563,0.144051,0.830815,0.975526,0.578266,0.329115,0.89441,0.742458,0.976293,0.766371,0.272362,0.755487,0.501674,0.57767,0.22035,0.10513,0.0219188,0.502414,0.92419,0.111925,0.411961,0.411979,0.791643,0.762872,0.598838,0.885143,0.867966,0.214768,0.303408,0.201555,0.215849,0.633313,0.115467,0.418353,0.212155,0.85819,0.486769,0.646509,0.780818,0.722304,0.629407,0.953682,0.346253,0.893297,0.258903,0.887162,0.15619,0.901957,0.368687,0.605396,0.0444774,0.568946,0.481345,0.0208053,0.427465,0.530649,0.111389,0.477401,0.707511,0.64351,0.394858,0.327515,0.615628,0.056132,0.415905,0.32036,0.662969,0.53697,0.911514,0.805952,0.303203,0.831025,0.368712,0.924136,0.491978,0.848878,0.636,0.651762,0.10275,0.762679,0.809943,0.966914,0.10802,0.652183,0.509724,0.893717,0.582355,0.248858,0.476883,0.624424,0.107099,0.411025,0.927158,0.919387,0.664177,0.382042,0.504208,0.15146,0.481758,0.296283,0.457973,0.359974,0.7672,0.732902,0.0524746,0.0706427,0.397185,0.683159,0.391706,0.193657,0.462435,0.911432,0.214513,0.0350604,0.882104,0.231813,0.730767,0.257963,0.149954,0.622813,0.667446,0.769824,0.114173,0.532655,0.430277,0.439452,0.393026,0.0193601,0.221531,0.198624,0.247603,0.511581,0.791118,0.556205,0.066615,0.997275,0.0642766,0.673623,0.222736,0.0408862,0.535079,0.979885,0.697967,0.488608,0.932503,0.224812,0.354719,0.0852258,0.191427,0.884945,0.00241613,0.259512,0.554872,0.105944,0.611705,0.642326,0.14305,0.216579,0.183782,0.147446,0.235755,0.475387,0.480319,0.589814,0.926723,0.0167834,0.347473,0.957491,0.152258,0.13983,0.849549,0.924693,0.478969,0.767469,0.230368,0.950762,0.781052,0.3287,0.575508,0.416458,0.458281,0.985876,0.975473,0.777002,0.692032,0.5646,0.543456,0.110556,0.442958,0.58408,0.913439,0.771122,0.477027,0.514257,0.628042,0.721949,0.526793,0.218849,0.647453,0.427074,0.118642,0.761444,0.902472,0.249814,0.549554,0.305335,0.633502,0.557522,0.710662,0.645015,0.425062,0.188114,0.819628,0.15884,0.767125,0.31667,0.942737,0.633242,0.709188,0.757958,0.64477,0.657196,0.483382,0.776051,0.812934,0.921252,0.143937,0.766363,0.831966,0.204826,0.935292,0.928458,0.256132,0.507643,0.438999,0.33305,0.962649,0.483971,0.803218,0.84108,0.460727,0.525024,0.447609,0.224196,0.827852,0.99099,0.191882,0.686625,0.748215,0.522449,0.28199,0.952141,0.8413,0.495523,0.400602,0.37816,0.510968,0.230785,0.500027,0.305055,0.346082,0.0623874,0.205343,0.838225,0.316949,0.2842,0.143936,0.38087,0.876859,0.405829,0.715341,0.332369,0.46221,0.838616,0.380536,0.478176,0.358875,0.971014,0.170773,0.816862,0.53349,0.650413,0.940885,0.469772,0.125552,0.34488,0.175647,0.874444,0.3175,0.616904,0.0287997,0.80935,0.674636,0.488178,0.693786,0.43362,0.846738,0.701916,0.26688,0.820334,0.226541,0.529985,0.629719,0.560155,0.265432,0.041769,0.927445,0.263615,0.983029,0.109752,0.829676,0.693769,0.24943,0.318847,0.669456,0.0880612,0.755834,|0.214089,0.877977,0.683661,0.473319,0.563569,0.68307,0.12455,0.471784,0.576607,0.82096,0.291005,0.16926,0.790253,0.782313,0.208077,0.99499,0.39487,0.909069,0.771179,0.71838,0.887979,0.221347,0.215163,0.805295,0.859284,0.292269,0.618053,0.918115,0.290771,0.441012,0.860543,0.871096,0.301751,0.594807,0.899121,0.0621122,0.165094,0.365458,0.103248,0.245529,0.858134,0.145392,0.347992,0.878716,0.782775,0.195933,0.334051,0.969297,0.658181,0.741425,0.534639,0.820383,0.677413,0.179593,0.39104,0.642768,0.586605,0.474779,0.192816,0.124376,0.211,0.792811,0.617198,0.216304,0.237018,0.805115,0.816949,0.847881,0.245704,0.144294,0.257785,0.858009,0.148395,0.865403,0.683931,0.949142,0.980901,0.746959,0.972074,0.535734,0.716846,0.0331796,0.956513,0.7169,0.376271,0.326076,0.0864314,0.687515,0.280132,0.895021,0.692544,0.204218,0.408426,0.719746,0.0613756,0.65261,0.511943,0.389372,0.0220684,0.292171,0.166362,0.600582,0.301106,0.411976,0.716733,0.864854,0.58639,0.254029,0.680421,0.190802,0.0132397,0.0027805,0.939355,0.730123,0.741807,0.0509171,0.879879,0.693371,0.671598,0.820377,0.0745465,0.564263,0.101959,0.169281,0.875482,0.328367,0.843714,0.474112,0.0122439,0.244541,0.763468,0.29042,0.0502329,0.219923,0.892953,0.801417,0.757634,0.957245,0.747735,0.426735,0.646422,0.352512,0.373753,0.724548,0.393148,0.641221,0.439543,0.704899,0.0451917,0.542686,0.718922,0.412897,0.922172,0.88195,0.34727,0.645777,0.561757,0.129776,0.8828,0.588614,0.0755465,0.847683,0.804321,0.411935,0.794024,0.815441,0.348122,0.950259,0.250646,0.850596,0.517644,0.717128,0.421112,0.918166,0.555629,0.853888,0.087947,0.814026,0.0845908,0.769739,0.867044,0.597161,0.92467,0.260618,0.32647,0.70876,0.69749,0.212118,0.907338,0.496019,0.478793,0.136436,0.722026,0.462834,0.414333,0.650667,0.549868,0.152872,0.0137078,0.911329,0.211171,0.407837,0.129544,0.0294179,0.0848228,0.235577,0.254647,0.760917,0.642816,0.911525,0.504928,0.728764,0.767033,0.418032,0.451512,0.322373,0.111358,0.759693,0.483565,0.19455,0.658161,0.180061,0.504581,0.431898,0.423318,0.49423,0.969573,0.720867,0.96031,0.71426,0.992114,0.358915,0.857748,0.248115,0.88939,0.164749,0.587704,0.238232,0.591058,0.0547593,0.393732,0.93815,0.796369,0.548316,0.730538,0.55281,0.0233978,0.65686,0.412799,0.836357,0.0416162,0.456516,0.10895,0.402842,0.244964,0.27908,0.152383,0.411154,0.549825,0.618597,0.410527,0.859015,0.847941,0.858414,0.351546,0.828043,0.143229,0.0684499,0.150494,0.311462,0.696063,0.0645045,0.332439,0.437187,0.987399,0.975152,0.306481,0.548687,0.464202,0.708099,0.817783,0.320874,0.747197,0.555428,0.346923,0.904065,0.496418,0.336199,0.860022,0.411223,0.250125,0.913232,0.60548,0.251806,0.632029,0.655787,0.372554,0.375172,0.57463,0.994636,0.684414,0.39566,0.643102,0.168826,0.252836,0.610187,0.785063,0.0480145,0.44857,0.984865,0.838404,0.150114,0.493449,0.23079,0.0632703,0.841334,0.12291,0.0560849,0.791523,0.34164,0.570661,0.561992,0.379666,0.163219,0.810874,0.501624,0.880052,0.336478,0.787911,0.238254,0.0382089,0.612724,0.608434,0.154828,0.364255,0.331129,0.478231,0.867544,0.138003,0.220158,0.888416,0.923827,0.832841,0.288861,0.408079,0.577506,0.122177,0.558722,0.601798,0.458864,0.549041,0.0674733,0.599548,0.774027,0.0264928,0.188666,0.420651,0.67362,0.250278,0.200952,0.000152528,0.935212,0.112984,0.618148,0.916244,0.845674,0.211043,0.0112755,0.177805,0.00709289,0.0456833,0.105839,0.937855,0.594748,0.733361,0.0478594,0.669672,0.556197,0.116089,0.757594,0.629751,0.804675,0.758054,0.615972,0.830943,0.543574,0.437527,0.550842,0.724611,0.707529,0.955131,0.598002,0.909475,0.621255,0.999981,0.206,0.775354,0.745414,0.798124,0.419,0.502057,0.111126,0.608624,0.666261,0.00923949,0.296785,0.731796,0.0107149,0.157557,0.529588,0.225342,0.263831,0.691274,0.861748,0.730313,0.217459,0.931994,0.0883608,0.307913,0.262228,0.348269,0.377835,0.130269,0.863734,0.672376,0.565293,0.885636,0.379782,0.391835,0.916222,0.279152,0.0346166,0.220247,0.170503,0.844617,0.421381,0.913685,0.582064,0.0821435,0.390292,0.227925,0.183934,0.529631,0.191993,0.497466,0.122404,0.625351,0.309154,0.830923,0.31234,0.150463,0.433195,0.806218,0.0920197,0.444848,0.247989,0.0410848,0.616129,0.88392,0.869597,0.622248,0.335203,0.379746,0.474303,0.0787163,0.523033,0.192483,0.0187313,0.761512,0.530185,0.817637,0.245344,0.460274,0.731166,0.742145,0.576371,0.534546,0.592201,0.463814,0.739535,0.437938,0.550139,0.778337,0.862928,0.155484,0.346358,0.0251126,0.72352,0.256282,0.467677,0.978363,0.729155,0.00938189,0.84249,0.140485,0.100515,0.0626051,0.521606,0.315202,0.420517,0.563838,0.359375,0.840592,0.937681,0.903717,0.539126,0.938624,0.302758,0.899587,0.00718033,0.33981,0.312733,0.1738,0.95661,0.333074,0.209969,0.268897,0.552356,0.168794,0.761246,0.324988,0.149827,0.132353,0.183419,0.661552,0.230367,0.147208,0.210478,0.830347,0.639695,0.354863,0.618963,0.960894,0.35012,0.874348,0.952408,0.813798,0.396101,0.98215,0.433261,0.399003,0.481575,0.718474,0.136441,0.760909,0.75229,0.94389,0.572173,0.964263,0.466234,0.9042,0.907674,0.131205,0.0641911,0.295507,0.932119,0.698324,0.686142,0.450763,0.816763,0.33305,0.460636,0.486898,0.240564,0.636979,0.379366,0.631439,0.77831,0.225953,0.0801275,0.112431,0.564473,0.0448765,0.776967,0.826569,0.932965,0.581888,0.439967,0.584448,0.855971,0.156574,0.0202116,0.450575,0.0126829,0.675824,0.833479,0.217231,0.161259,0.746446,0.369461,0.430626,0.290557,0.876967,0.796358,0.623346,0.0398373,0.999796,0.247756,0.732173,0.639819,0.670469,0.638172,0.349384,0.705463,0.453021,0.555429,0.0318453,0.234369,0.704459,0.790553,0.699091,0.786127,0.135484,0.527665,0.834532,0.902969,0.448429,0.907585,0.747713,0.816821,0.335364,0.993712,0.464341,0.645459,0.0482989,0.459916,0.410045,0.506099,0.692086,0.0961956,0.348133,0.606047,0.765294,0.339124,0.47435,0.213764,0.804319,0.884215,0.646587,0.686381,0.00681758,0.496972,0.671031,0.227085,0.371653,0.279977,0.712365,0.942846,0.99733,0.622025,0.544291,0.425579,0.934186,0.0868209,0.952877,0.179238,0.611369,0.621048,0.174013,0.350149,0.985914,0.716178,0.577453,0.69461,0.419859,0.261038,0.525874,0.493858,0.948337,0.349705,0.743257,0.629825,0.815859,0.216644,0.42099,0.0377012,0.786285,0.370505,0.131189,0.424297,0.286783,0.804129,0.04298,0.199586,0.441902,0.981719,0.511241,0.674589,0.691348,0.776356,0.996791,0.4306,0.839585,0.519472,0.137563,0.0567117,0.93443,0.109253,0.582883,0.700177,0.56018,0.0187503,0.609457,0.572044,0.214311,0.873179,0.945181,0.425208,0.049948,0.574484,0.720779,0.967933,0.395357,0.290032,0.457951,0.455759,0.104599,0.0849202,0.69034,0.303607,0.0244954,0.719825,0.250392,0.860023,0.567417,0.987986,0.872784,0.723217,0.715647,0.303229,0.542457,0.242807,0.690579,0.0524386,0.133624,0.776051,0.58231,0.154072,0.800444,0.115863,0.691998,0.885728,0.494304,0.97828,0.65175,0.035683,0.411487,0.691698,0.317799,0.917517,0.838944,0.152242,0.776501,0.57585,0.977823,0.738028,0.318811,0.803871,0.134434,0.589026,0.835173,0.0847231,0.822325,0.895885,0.405683,0.904876,0.971808,0.609083,0.846695,0.237572,0.610767,0.10405,0.441015,0.441732,0.986241,0.998853,0.335406,0.16673,0.0808676,0.0655615,0.817867,0.631761,0.922669,0.535648,0.0820532,0.407533,0.290969,0.463089,0.553317,0.134795,0.674245,0.820145,0.534234,0.518657,0.218231,0.454425,0.465945,0.86595,0.29888,0.799543,0.219062,0.0259555,0.388844,0.300504,0.566968,0.899005,0.963392,0.761169,0.594128,0.0386032,0.387784,0.899509,0.122925,0.202455,0.646429,0.685349,0.201821,0.848257,0.555956,0.228371,0.937667,0.0137522,0.957473,0.846562,0.660345,0.261886,0.725996,0.839552,0.871438,0.241467,0.422229,0.860703,0.704274,0.43135,0.528756,0.699565,0.697116,0.887272,0.768943,0.809421,0.136333,0.818525,0.983148,0.0524408,0.614958,0.359529,0.62646,0.531176,0.252686,0.596386,0.364256,0.333258,0.957401,0.554154,0.0245105,0.582753,0.488522,0.863495,0.108962,0.54375,0.706788,0.94751,0.723287,0.179872,0.765601,0.301047,0.437922,0.835488,0.076612,0.303225,0.982043,0.277399,0.682059,0.637373,0.295174,0.255126,0.192012,0.42686,0.162721,0.866626,0.292016,0.981415,0.534812,0.143684,0.695562,0.680598,0.980436,0.649049,0.809799,0.406887,0.675184,0.217208,0.89463,0.44943,0.601827,0.931636,0.805595,0.672866,0.126262,0.543427,0.942535,0.167739,0.141227,0.427436,0.0766161,0.482442,0.63932,0.117225,0.748286,0.23326,0.555934,0.92388,0.628575,0.450889,0.530442,0.452843,0.756311,0.523286,0.296556,0.620753,0.939267,0.246501,0.745942,0.589537,0.889639,0.736166,0.0866563,0.986635,0.235894,0.989519,0.457128,0.0903319,0.232879,0.7612,0.812602,0.7715,0.0941168,0.542183,0.579537,0.718125,0.250457,0.975769,0.0573402,0.0733061,0.0733418,0.0517948,0.335258,0.815446,0.0899298,0.123016,0.319891,0.804179,0.622801,0.732569,0.115123,0.83949,0.0917206,0.730021,0.569445,0.420069,0.0126429,0.902893,0.00870311,0.911125,0.890279,0.309149,0.711225,0.155499,0.454017,0.481539,0.968478,0.611797,0.494308,0.445103,0.8448,0.168645,0.446265,0.882477,0.359053,0.902471,0.190352,0.10079,0.442993,0.62034,0.576718,0.645123,0.439236,0.852128,0.177316,0.161009,0.335237,0.286251,0.377456,0.820925,0.446288,0.964664,0.284364,0.972989,0.116841,0.228599,|0.54403,0.939637,0.0670965,0.166275,0.515164,0.48936,0.520525,0.0196445,0.940933,0.644928,0.0660848,0.322194,0.102665,0.726701,0.397392,0.28631,0.290033,0.734722,0.116894,0.0127518,0.80004,0.847074,0.327065,0.46729,0.0415975,0.0617725,0.0417359,0.389311,0.447136,0.698544,0.0171219,0.793185,0.326303,0.678561,0.728379,0.0277165,0.134288,0.712839,0.791859,0.79366,0.762922,0.767257,0.0377052,0.57754,0.156285,0.673489,0.553014,0.248291,0.687538,0.964981,0.118848,0.0151368,0.113331,0.115376,0.00399876,0.228478,0.674653,0.536984,0.762142,0.674838,0.176635,0.0735225,0.665318,0.154066,0.423533,0.363791,0.0948569,0.172584,0.460579,0.320805,0.741648,0.682399,0.576516,0.639076,0.54364,0.869942,0.0467444,0.230693,0.847074,0.726104,0.153156,0.323138,0.481179,0.94069,0.837791,0.724363,0.922955,0.999204,0.995953,0.453677,0.332549,0.425871,0.532671,0.0283123,0.788596,0.506461,0.951266,0.962866,0.257276,0.333094,0.688494,0.11889,0.590295,0.969898,0.680447,0.88072,0.454209,0.411027,0.301682,0.406913,0.760764,0.793342,0.334093,0.867383,0.242256,0.736912,0.0477319,0.461677,0.345184,0.551181,0.341749,0.598343,0.854006,0.320391,0.800008,0.759576,0.290989,0.633421,0.37104,0.591858,0.0921844,0.52871,0.223815,0.94594,0.784881,0.498469,0.574546,0.561354,0.337848,0.155808,0.639819,0.233354,0.970787,0.796772,0.707864,0.555403,0.87605,0.61709,0.178401,0.643078,0.0441208,0.205015,0.794376,0.721697,0.97443,0.399264,0.829171,0.0485377,0.0675647,0.57224,0.751893,0.240503,0.308658,0.127461,0.596822,0.688505,0.436555,0.866819,0.373161,0.119535,0.396675,0.340507,0.735722,0.895952,0.296153,0.283016,0.242695,0.727008,0.577115,0.698177,0.992007,0.260483,0.674754,0.143425,0.689096,0.693457,0.0516194,0.523459,0.548153,0.26768,0.804045,0.658273,0.0644218,0.217839,0.579678,0.380659,0.700821,0.245691,0.497373,0.77368,0.171817,0.2465,0.812691,0.0408265,0.960854,0.301021,0.539975,0.307236,0.24893,0.509756,0.680304,0.42038,0.910642,0.481646,0.538219,0.00767052,0.16023,0.914393,0.656586,0.105404,0.442596,0.344918,0.467019,0.0192953,0.0594636,0.510216,0.176591,0.206861,0.910855,0.708652,0.0670706,0.30445,0.90554,0.600695,0.175335,0.3599,0.57396,0.291106,0.526629,0.263004,0.277205,0.440372,0.425818,0.67307,0.539578,0.0400028,0.34637,0.656525,0.274414,0.538015,0.718471,0.414801,0.508144,0.269923,0.706243,0.366839,0.872149,0.142583,0.9953,0.77899,0.653753,0.0102187,0.217107,0.562876,0.682114,0.901861,0.978104,0.923849,0.851465,0.759941,0.123758,0.980468,0.406991,0.570107,0.13006,0.354914,0.00925744,0.87975,0.444537,0.279103,0.267077,0.278318,0.615451,0.270821,0.429178,0.120709,0.0475896,0.728123,0.67525,0.676368,0.222741,0.367483,0.0397016,0.759827,0.496693,0.888137,0.967115,0.562648,0.824346,0.568399,0.647047,0.42691,0.535951,0.131948,0.238152,0.574999,0.0432886,0.527158,0.945798,0.651068,0.359551,0.621895,0.0145873,0.256914,0.83097,0.937835,0.495645,0.540582,0.813987,0.626132,0.368064,0.171998,0.686346,0.153989,0.4542,0.859699,0.57904,0.215087,0.0413275,0.01595,0.400212,0.672783,0.396537,0.946772,0.876097,0.324564,0.973345,0.80444,0.00159073,0.545006,0.0740329,0.733015,0.687887,0.24114,0.315973,0.224143,0.149974,0.209105,0.466421,0.179944,0.144323,0.492324,0.20698,0.0774259,0.401983,0.168784,0.35836,0.626992,0.752238,0.892562,0.505126,0.741339,0.281401,0.128228,0.498887,0.630781,0.0664984,0.344282,0.56222,0.113787,0.211726,0.53277,0.225359,0.145078,0.069217,0.260416,0.988551,0.883807,0.374079,0.189607,0.255968,0.124712,0.0200096,0.940445,0.568305,0.360502,0.688251,0.299322,0.927016,0.809258,0.38264,0.375545,0.131291,0.227011,0.212568,0.816336,0.820757,0.857971,0.133562,0.230984,0.217938,0.978517,0.109076,0.486472,0.264817,0.925214,0.123467,0.0324616,0.505522,0.467987,0.0341533,0.287812,0.295486,0.565334,0.973963,0.554322,0.445209,0.722831,0.62866,0.373269,0.365673,0.277423,0.230499,0.538685,0.0825371,0.944296,0.595899,0.0696895,0.950671,0.908609,0.0997685,0.510514,0.691767,0.837608,0.936263,0.315858,0.713422,0.318558,0.692896,0.478592,0.62465,0.935618,0.451139,0.899711,0.360372,0.698771,0.496608,0.151738,0.799931,0.364065,0.0887032,0.0758948,0.555652,0.881917,0.311363,0.0865258,0.117792,0.78994,0.8434,0.548225,0.93501,0.470013,0.648477,0.721386,0.112889,0.220208,0.561581,0.723498,0.953723,0.220108,0.525697,0.737099,0.222759,0.917068,0.183507,0.576909,0.955247,0.181067,0.764052,0.368732,0.00739431,0.188791,0.963509,0.288028,0.0634137,0.133363,0.671006,0.129378,0.938174,0.481153,0.637534,0.431932,0.304016,0.44352,0.196804,0.0560861,0.196629,0.350436,0.492188,0.872735,0.575163,0.718569,0.469214,0.462792,0.375506,0.986884,0.790887,0.88684,0.921541,0.621101,0.0926496,0.589182,0.340373,0.124345,0.253176,0.177641,0.244176,0.836996,0.248926,0.257563,0.972139,0.819215,0.77864,0.410602,0.351149,0.23396,0.891434,0.441287,0.408741,0.672485,0.375449,0.280675,0.158786,0.311944,0.7634,0.234355,0.315288,0.564142,0.405212,0.679491,0.132476,0.59608,0.637497,0.526424,0.697468,0.0367292,0.581759,0.21386,0.684428,0.246369,0.222336,0.023764,0.966374,0.90868,0.274978,0.0701725,0.739253,0.574652,0.122867,0.999012,0.0186623,0.679541,0.723658,0.938731,0.899485,0.428743,0.864692,0.197017,0.154989,0.102628,0.191851,0.537395,0.585856,0.640343,0.786774,0.379645,0.0547609,0.0565376,0.0472636,0.272496,0.360888,0.569284,0.439447,0.501993,0.894747,0.220616,0.120807,0.0434448,0.179311,0.253449,0.270878,0.698918,0.201525,0.563645,0.0297985,0.363292,0.665876,0.153721,0.275046,0.782751,0.957876,0.652984,0.0350181,0.83296,0.292496,0.392522,0.319806,0.97356,0.250331,0.52837,0.637784,0.725839,0.62192,0.35997,0.973942,0.228063,0.500972,0.34168,0.86731,0.701688,0.916353,0.565004,0.074522,0.610866,0.355962,0.273482,0.979324,0.789117,0.965285,0.109762,0.575765,0.045366,0.537454,0.01638,0.101812,0.983306,0.0565557,0.531244,0.600524,0.671785,0.961466,0.979654,0.817344,0.542491,0.599128,0.37235,0.249598,0.942583,0.145456,0.592743,0.785553,0.559061,0.845552,0.25615,0.191637,0.842778,0.957116,0.970061,0.459678,0.242936,0.362604,0.84094,0.659633,0.937345,0.736201,0.639084,0.494435,0.246747,0.823208,0.209437,0.0294835,0.636621,0.968092,0.678781,0.0163125,0.123205,0.666789,0.196378,0.614525,0.266055,0.979899,0.569749,0.0536504,0.562933,0.461148,0.947189,0.366397,0.0372968,0.470692,0.359114,0.554946,0.275464,0.30698,0.0566439,0.0822832,0.697462,0.436439,0.164101,0.886318,0.605033,0.400867,0.302945,0.800157,0.112978,0.094669,0.572962,0.809714,0.464975,0.422151,0.145128,0.890459,0.508788,0.333826,0.701774,0.634434,0.523153,0.634486,0.835781,0.78434,0.168197,0.302996,0.901212,0.568179,0.731761,0.87344,0.424753,0.669622,0.132893,0.37482,0.693236,0.0936799,0.0897948,0.947325,0.0357653,0.555592,0.974834,0.676887,0.73672,0.953929,0.46273,0.349775,0.64105,0.114888,0.294132,0.663736,0.25612,0.663703,0.972214,0.823247,0.974817,0.805419,0.100049,0.359615,0.150378,0.4753,0.616722,0.16821,0.868676,0.331177,0.828462,0.0474933,0.648256,0.493025,0.493413,0.621366,0.444674,0.138483,0.629978,0.761524,0.296808,0.729373,0.00685459,0.289475,0.434195,0.0783598,0.742083,0.123458,0.481239,0.558595,0.16172,0.910183,0.371502,0.929565,0.0201163,0.162223,0.976648,0.866528,0.446844,0.677996,0.518896,0.935278,0.433215,0.338115,0.949792,0.174179,0.560445,0.873992,0.2217,0.395051,0.606683,0.617587,0.686441,0.122717,0.233021,0.564703,0.132098,0.975985,0.586453,0.696945,0.149355,0.934411,0.889644,0.68299,0.381607,0.962709,0.670937,0.440041,0.21842,0.26624,0.168082,0.328584,0.976134,0.303066,0.550389,0.899813,0.593522,0.555748,0.333509,0.545037,0.181299,0.389612,0.856715,0.022418,0.228033,0.6361,0.532385,0.476064,0.519856,0.325448,0.999936,0.69891,0.531175,0.132611,0.240608,0.97096,0.340747,0.669237,0.155947,0.729232,0.201639,0.278894,0.639707,0.124209,0.100197,0.909228,0.713388,0.116771,0.49167,0.662295,0.588767,0.288231,0.305939,0.419186,0.505914,0.736887,0.645503,0.0292085,0.712748,0.303914,0.798315,0.184026,0.876144,0.312188,0.604786,0.968581,0.881149,0.337547,0.195682,0.345308,0.508388,0.143957,0.678329,0.0986975,0.310943,0.249688,0.889951,0.295305,0.811642,0.25125,0.883586,0.4434,0.446925,0.430959,0.151502,0.272179,0.406382,0.0410623,0.489443,0.0433341,0.933535,0.311658,0.85289,0.652943,0.775435,0.60336,0.65187,0.538719,0.558662,0.768227,0.766446,0.446749,0.637966,0.800829,0.114374,0.263457,0.170083,0.159657,0.190821,0.0592493,0.815395,0.609819,0.706734,0.441129,0.0723979,0.418798,0.686705,0.780483,0.826967,0.72909,0.275049,0.0517529,0.586954,0.816291,0.177262,0.101132,0.914062,0.687451,0.46505,0.830935,0.257666,0.997923,0.505945,0.494415,0.18009,0.557464,0.410934,0.267576,0.756924,0.931893,0.494422,0.294152,0.583317,0.742384,0.047401,0.468039,0.551193,0.366822,0.304217,0.609941,0.541186,0.963648,0.115242,0.0876438,0.262151,0.526482,0.159992,0.523208,0.228617,0.383557,0.357236,0.97829,0.0761673,0.939829,0.556428,0.604014,0.596354,0.342727,0.805131,0.532685,0.523765,0.532989,0.831561,0.953788,0.120352,0.0911383,0.184126,0.581951,0.582176,0.842116,0.477986,0.90777,0.740812,0.520582,0.904772,0.830909,0.340768,0.0358294,0.341309,0.29663,0.450743,|0.684802,0.225992,0.39361,0.979418,0.423083,0.331078,0.887353,0.592017,0.149817,0.431782,0.617344,0.227572,0.150516,0.890592,0.231448,0.0925946,0.409542,0.872943,0.92273,0.849114,0.556771,0.31629,0.427377,0.775648,0.14199,0.508272,0.408241,0.821684,0.227242,0.599567,0.800313,0.421696,0.857192,0.585735,0.539233,0.630837,0.237435,0.984,0.557032,0.441954,0.938888,0.982732,0.678946,0.478871,0.0635812,0.158413,0.797997,0.130057,0.37547,0.123417,0.635859,0.581438,0.0212513,0.596375,0.638942,0.353088,0.583873,0.902069,0.565811,0.536493,0.382831,0.0986024,0.522737,0.343474,0.998452,0.53045,0.407231,0.62,0.151073,0.704189,0.918717,0.51421,0.367969,0.780057,0.351549,0.850685,0.260125,0.778265,0.941166,0.610412,0.744325,0.586971,0.846385,0.00149447,0.250905,0.653952,0.224831,0.726374,0.525753,0.135437,0.902837,0.928477,0.289582,0.757453,0.966397,0.87656,0.703582,0.139283,0.0753057,0.731916,0.91077,0.327516,0.347353,0.348224,0.897133,0.860331,0.210784,0.465099,0.39097,0.969112,0.058552,0.901133,0.0473703,0.809659,0.575086,0.679883,0.539229,0.0475692,0.306272,0.0452083,0.551361,0.942062,0.990138,0.482087,0.591007,0.0550617,0.628677,0.323269,0.326468,0.165855,0.0347505,0.30382,0.0504891,0.60097,0.836205,0.945183,0.230906,0.502711,0.833938,0.377445,0.527159,0.213157,0.0174707,0.134288,0.542617,0.717608,0.785451,0.00840634,0.206917,0.546969,0.335059,0.619134,0.751943,0.27574,0.314706,0.364267,0.728305,0.775803,0.168307,0.150068,0.625831,0.822639,0.0565979,0.121596,0.738803,0.40118,0.663535,0.208928,0.58944,0.144597,0.594627,0.130613,0.389628,0.370338,0.847815,0.311659,0.861016,0.432751,0.55416,0.498757,0.906848,0.702996,0.715053,0.774746,0.404787,0.874034,0.15143,0.0762786,0.226147,0.716249,0.0971684,0.133869,0.249223,0.14565,0.6139,0.216773,0.477361,0.50079,0.751374,0.0055176,0.774805,0.401842,0.889597,0.271472,0.480289,0.451496,0.638974,0.454487,0.336022,0.827089,0.150853,0.432063,0.200877,0.731229,0.219473,0.374357,0.869398,0.636544,0.308042,0.650462,0.250037,0.588143,0.651113,0.0953951,0.294674,0.11438,0.271154,0.986698,0.638543,0.956517,0.453212,0.837182,0.587013,0.12481,0.877418,0.739316,0.241543,0.150419,0.854285,0.565075,0.525078,0.34246,0.448207,0.0897804,0.117814,0.960848,0.970367,0.818004,0.457498,0.442926,0.989051,0.620553,0.272165,0.825365,0.329576,0.338294,0.157283,0.77336,0.189968,0.212451,0.406112,0.691846,0.762532,0.47246,0.553108,0.509274,0.818102,0.660625,0.816793,0.932622,0.0554551,0.602692,0.787088,0.32199,0.929666,0.479079,0.957194,0.268715,0.221909,0.750081,0.137548,0.928474,0.212158,0.983467,0.606282,0.915449,0.838195,0.264465,0.10263,0.208028,0.180649,0.508989,0.0425872,0.912519,0.427894,0.169459,0.836954,0.940989,0.9646,0.984936,0.556038,0.602858,0.249206,0.495046,0.640902,0.621526,0.684256,0.412388,0.643335,0.568692,0.190051,0.575496,0.689501,0.621537,0.226867,0.746041,0.508488,0.264025,0.504685,0.0434872,0.818086,0.55423,0.559114,0.592418,0.889819,0.163247,0.920277,0.558022,0.777279,0.452853,0.553679,0.928441,0.493515,0.18378,0.517635,0.505397,0.0312504,0.727404,0.966085,0.525916,0.875265,0.433915,0.545387,0.694117,0.270065,0.408085,0.621212,0.353797,0.192009,0.603279,0.284972,0.517857,0.899279,0.870699,0.672144,0.839834,0.28259,0.761338,0.219067,0.309989,0.448307,0.705895,0.549257,0.84241,0.0428032,0.939485,0.8483,0.421473,0.674577,0.532285,0.238526,0.848748,0.793796,0.371703,0.139925,0.848752,0.110961,0.777425,0.749848,0.789629,0.193737,0.284028,0.328259,0.596672,0.342518,0.444769,0.847847,0.189859,0.41819,0.0920066,0.952817,0.33548,0.328626,0.820312,0.03693,0.2608,0.422725,0.61229,0.761339,0.323566,0.659515,0.381365,0.891169,0.897369,0.847969,0.458682,0.211828,0.966288,0.676284,0.38637,0.983714,0.00722384,0.50212,0.778393,0.85503,0.673915,0.580178,0.836503,0.14132,0.622281,0.35769,0.376103,0.671735,0.836463,0.420191,0.972692,0.0945796,0.62581,0.0285235,0.852443,0.305624,0.46606,0.9138,0.406686,0.320311,0.171341,0.832119,0.782314,0.223777,0.463461,0.949276,0.948143,0.0260484,0.401289,0.859514,0.170358,0.0493319,0.883306,0.199609,0.325251,0.556651,0.773461,0.0889493,0.618113,0.451035,0.837096,0.646884,0.155105,0.779039,0.397086,0.0245212,0.279988,0.0196081,0.901817,0.785679,0.303941,0.87851,0.615764,0.842772,0.965683,0.566297,0.685974,0.352544,0.625797,0.950085,0.557719,0.0690671,0.464096,0.717849,0.287285,0.769608,0.869428,0.834917,0.464745,0.154845,0.78056,0.298211,0.575643,0.163125,0.944722,0.907223,0.32352,0.819524,0.938016,0.834639,0.456467,0.615258,0.303672,0.908982,0.660879,0.604598,0.508774,0.54744,0.379188,0.014025,0.825605,0.1042,0.397221,0.916581,0.632487,0.937403,0.480831,0.550471,0.928626,0.0491365,0.573816,0.517173,0.494248,0.683391,0.187866,0.486546,0.967754,0.390371,0.848096,0.379272,0.551437,0.0895234,0.207696,0.855906,0.861723,0.380744,0.676538,0.855438,0.79654,0.470754,0.571933,0.836361,0.867046,0.177727,0.737558,0.126894,0.0370487,0.932058,0.764389,0.0479831,0.790744,0.544316,0.315081,0.925422,0.5883,0.159326,0.756273,0.566599,0.837491,0.527918,0.863349,0.389602,0.0840439,0.324105,0.0426326,0.345387,0.9094,0.104239,0.496595,0.38071,0.540394,0.709121,0.0942851,0.151726,0.869602,0.262695,0.849493,0.693713,0.240543,0.979752,0.191419,0.142118,0.829634,0.425444,0.939289,0.0319872,0.560587,0.0902906,0.532068,0.064846,0.724233,0.165606,0.904275,0.79737,0.532839,0.357754,0.738602,0.0457547,0.311411,0.132016,0.85793,0.75655,0.501986,0.759186,0.659172,0.96997,0.539976,0.965227,0.692601,0.265198,0.377655,0.0766262,0.846198,0.123448,0.162302,0.816682,0.462801,0.193168,0.574724,0.159613,0.837722,0.644626,0.294351,0.103487,0.219708,0.896569,0.483934,0.338926,0.0555412,0.209251,0.537705,0.498047,0.157651,0.187403,0.675307,0.798896,0.578009,0.0443311,0.00904399,0.248362,0.850406,0.0526124,0.327781,0.657299,0.538948,0.877301,0.121105,0.184803,0.183245,0.376547,0.336347,0.688337,0.00643981,0.647824,0.740268,0.151738,0.686298,0.839875,0.461079,0.231395,0.731281,0.464605,0.385571,0.124022,0.561279,0.0261009,0.924388,0.912404,0.233853,0.578142,0.773227,0.220042,0.878991,0.660486,0.150762,0.130094,0.868638,0.748854,0.721409,0.621572,0.379047,0.345138,0.0840372,0.836241,0.47247,0.898537,0.230641,0.632957,0.416918,0.664102,0.408365,0.332347,0.426054,0.376971,0.464955,0.360529,0.743661,0.161408,0.596068,0.175506,0.822982,0.779555,0.162184,0.866939,0.156565,0.21411,0.484191,0.0979762,0.7521,0.17217,0.207286,0.313345,0.303071,0.943168,0.724374,0.302651,0.483978,0.882428,0.819755,0.761085,0.393267,0.851449,0.231446,0.567699,0.698089,0.0280333,0.642997,0.596498,0.612912,0.21734,0.592825,0.353202,0.600684,0.472734,0.712022,0.0816826,0.46777,0.718422,0.728211,0.518014,0.917318,0.554385,0.844594,0.726343,0.923935,0.308732,0.780042,0.899212,0.345578,0.878855,0.0126145,0.3495,0.240304,0.687608,0.1939,0.913426,0.477747,0.676271,0.871083,0.790104,0.804301,0.42317,0.0639277,0.0511844,0.0319618,0.736414,0.00658715,0.718917,0.267082,0.60504,0.773897,0.96527,0.180428,0.266731,0.447109,0.634172,0.839107,0.456293,0.023129,0.480869,0.465074,0.863459,0.790567,0.450399,0.23938,0.304169,0.964336,0.985499,0.0678015,0.260113,0.349504,0.388925,0.562477,0.967895,0.724034,0.33628,0.0483068,0.667754,0.303213,0.112788,0.577514,0.744385,0.10167,0.221886,0.246322,0.0321518,0.614024,0.321677,0.285895,0.824336,0.272913,0.858882,0.517485,0.131685,0.416208,0.334815,0.147914,0.428329,0.439834,0.495465,0.30867,0.926249,0.00901103,0.204011,0.369932,0.124551,0.226723,0.27886,0.816248,0.656957,0.925317,0.227952,0.831171,0.856197,0.881648,0.678651,0.441217,0.916469,0.549483,0.306748,0.368646,0.538211,0.585692,0.706036,0.756047,0.515931,0.863817,0.00130892,0.605732,0.797632,0.24149,0.550557,0.140475,0.638238,0.215681,0.346257,0.62458,0.244271,0.246762,0.330336,0.612281,0.445821,0.692436,0.604827,0.874739,0.996867,0.844871,0.423469,0.337826,0.255734,0.995766,0.214306,0.602409,0.154812,0.0502692,0.822634,0.585953,0.0818977,0.636272,0.852643,0.129331,0.929948,0.016537,0.198051,0.755308,0.946319,0.652278,0.149719,0.143025,0.143208,0.321116,0.350579,0.279872,0.458364,0.467782,0.322257,0.126587,0.654067,0.523879,0.416014,0.0220773,0.738454,0.0570965,0.562724,0.344516,0.0228752,0.763035,0.948071,0.635593,0.400554,0.152905,0.670455,0.782274,0.090994,0.49814,0.581563,0.0111415,0.177136,0.677153,0.676477,0.306552,0.477019,0.604635,0.486997,0.699106,0.272811,0.924803,0.809231,0.333505,0.875225,0.361341,0.086264,0.209697,0.0734599,0.135066,0.714936,0.878474,0.950212,0.545507,0.139084,0.196169,0.941326,0.347756,0.186006,0.918572,0.710448,0.123179,0.98044,0.235882,0.319744,0.424872,0.0544823,0.741339,0.758497,0.180218,0.379674,0.144041,0.0718629,0.978882,0.568916,0.925473,0.923666,0.161608,0.786632,0.724277,0.635491,0.120819,0.029605,0.528552,0.628212,0.576712,0.376351,0.522187,0.364569,0.146471,0.903371,0.955812,0.561941,0.87038,0.434338,0.229201,0.217818,0.914049,0.393707,0.296017,0.722486,0.369004,0.543115,0.668432,0.91498,0.688064,0.0710815,0.918586,0.0524283,0.797075,0.703495,0.64559,0.102975,0.954167,0.0372373,0.683833,0.782354,0.547042,0.801218,0.270511,|0.542252,0.729338,0.614593,0.406569,0.00577575,0.527074,0.648279,0.360016,0.961083,0.507528,0.541326,0.80859,0.647448,0.991559,0.90857,0.215472,0.722474,0.163458,0.431013,0.41849,0.94421,0.152756,0.0989131,0.606892,0.55496,0.53792,0.84312,0.866658,0.585101,0.158293,0.56343,0.225237,0.797232,0.271791,0.721865,0.675876,0.185617,0.756374,0.0568203,0.374328,0.837256,0.109336,0.257997,0.131827,0.393534,0.00450146,0.477908,0.591747,0.62884,0.67707,0.498729,0.476952,0.75683,0.132888,0.743159,0.215878,0.949697,0.0267395,0.655477,0.05087,0.652198,0.164072,0.815078,0.975317,0.0020045,0.0285632,0.36053,0.650182,0.406056,0.870076,0.625271,0.526606,0.14147,0.727139,0.939613,0.777039,0.351036,0.0917398,0.0500727,0.0379168,0.773747,0.27364,0.876677,0.921923,0.740001,0.0835135,0.413662,0.939667,0.808498,0.453969,0.297927,0.619639,0.680541,0.271959,0.302647,0.477833,0.89278,0.880063,0.116264,0.146214,0.1479,0.747577,0.672639,0.362307,0.066712,0.0361202,0.40762,0.818307,0.34968,0.728756,0.903111,0.953712,0.803764,0.465924,0.0531735,0.92504,0.635825,0.732323,0.786146,0.85597,0.745672,0.747377,0.176021,0.695329,0.605499,0.544842,0.16032,0.584473,0.306402,0.366803,0.427029,0.754686,0.612727,0.524859,0.000124991,0.497606,0.215117,0.577776,0.988883,0.82895,0.182909,0.0656939,0.87743,0.308693,0.474701,0.781396,0.739739,0.828846,0.497709,0.236967,0.270727,0.992646,0.391883,0.497129,0.684038,0.624087,0.525002,0.480473,0.210976,0.947141,0.255417,0.339215,0.375579,0.360437,0.108862,0.98172,0.502474,0.97414,0.828655,0.201106,0.541755,0.278041,0.746512,0.823529,0.404078,0.237225,0.0582029,0.0508734,0.790767,0.991678,0.672466,0.998883,0.770238,0.397617,0.270438,0.0525767,0.284762,0.0335307,0.869065,0.578346,0.232641,0.929055,0.992717,0.180794,0.0402843,0.926965,0.996319,0.771056,0.389873,0.749313,0.525539,0.91936,0.0576885,0.781887,0.675432,0.828138,0.743344,0.167427,0.446997,0.62149,0.433138,0.947279,0.669039,0.659233,0.407565,0.861159,0.423859,0.32798,0.487687,0.95546,0.636681,0.0578735,0.403216,0.549923,0.512938,0.718577,0.781834,0.244511,0.381602,0.664648,0.223425,0.832385,0.553579,0.134985,0.472127,0.895631,0.851158,0.0154696,0.514044,0.297366,0.276081,0.162582,0.527459,0.139243,0.838478,0.287447,0.0457407,0.118301,0.364987,0.0520989,0.202422,0.516153,0.171903,0.989645,0.762264,0.131749,0.0345058,0.428864,0.156624,0.477901,0.719004,0.319248,0.667063,0.0642592,0.144744,0.563722,0.659555,0.328452,0.181462,0.36786,0.943142,0.805042,0.291729,0.483291,0.465832,0.137203,0.931127,0.656119,0.654102,0.74701,0.942096,0.587524,0.52513,0.744758,0.217085,0.355283,0.995957,0.288872,0.871974,0.727323,0.716465,0.820078,0.684479,0.914606,0.141696,0.174039,0.183818,0.0809174,0.0932841,0.149228,0.9655,0.725954,0.950393,0.102959,0.0834664,0.740595,0.859543,0.669977,0.104588,0.448304,0.493025,0.57838,0.163063,0.403616,0.223095,0.226903,0.486544,0.731619,0.710018,0.222085,0.9755,0.828786,0.401011,0.657684,0.633619,0.510493,0.345861,0.0861086,0.915613,0.387269,0.932679,0.650258,0.28837,0.81836,0.827295,0.935586,0.344326,0.54836,0.622754,0.399778,0.541335,0.461053,0.837692,0.679873,0.503879,0.818753,0.349257,0.3961,0.546494,0.701844,0.299318,0.619051,0.917095,0.26243,0.241765,0.381533,0.790788,0.326688,0.0905395,0.201068,0.0611981,0.523416,0.00786781,0.362454,0.730022,0.750526,0.366713,0.307644,0.890991,0.996139,0.323195,0.243993,0.612806,0.372439,0.617277,0.0928026,0.421195,0.890485,0.969611,0.0286334,0.925201,0.165552,0.310545,0.537503,0.514004,0.923947,0.699119,0.467999,0.26496,0.898737,0.692063,0.800097,0.628007,0.244766,0.347549,0.842222,0.543646,0.640506,0.00561094,0.797521,0.779041,0.299082,0.93429,0.48524,0.0639806,0.253437,0.900386,0.732855,0.264465,0.102236,0.919769,0.970013,0.164602,0.301818,0.806888,0.464471,0.571175,0.544014,0.296226,0.108954,0.659821,0.587583,0.731385,0.23876,0.000628829,0.946353,0.0616768,0.778298,0.0640808,0.352911,0.294872,0.441506,0.667564,0.424201,0.960095,0.839386,0.237788,0.654103,0.600826,0.445588,0.627271,0.988509,0.44623,0.481812,0.206051,0.49958,0.0828192,0.771036,0.512091,0.173961,0.188125,0.948546,0.677992,0.662202,0.950502,0.834096,0.32612,0.598158,0.990148,0.639895,0.52876,0.484874,0.455148,0.511835,0.312762,0.824083,0.419891,0.800653,0.392432,0.315744,0.526219,0.834988,0.857169,0.896158,0.423983,0.6534,0.436636,0.942161,0.667793,0.956393,0.718752,0.289613,0.805219,0.218251,0.762234,0.615299,0.999506,0.692657,0.248161,0.777167,0.744415,0.176143,0.0842013,0.81306,0.940858,0.828827,0.694022,0.252531,0.669729,0.0492957,0.950616,0.419581,0.334278,0.294329,0.494618,0.648841,0.674018,0.386014,0.876216,0.399806,0.204974,0.135771,0.632331,0.578786,0.969517,0.285139,0.581281,0.763753,0.081091,0.673958,0.911585,0.566932,0.670586,0.33945,0.807543,0.646547,0.609657,0.681863,0.123278,0.287354,0.244298,0.861464,0.841967,0.912489,0.211664,0.844703,0.65645,0.418824,0.996854,0.606911,0.251373,0.584511,0.716829,0.266897,0.0620464,0.718546,0.558078,0.883743,0.951925,0.633356,0.995754,0.909722,0.746902,0.693046,0.0495733,0.717377,0.478729,0.534344,0.537417,0.748948,0.428658,0.344734,0.665934,0.369962,0.596878,0.531224,0.511231,0.154517,0.418487,0.0501701,0.99847,0.0706061,0.240414,0.600123,0.0238895,0.555736,0.369268,0.332388,0.109241,0.00354153,0.301232,0.888957,0.145916,0.34662,0.0840892,0.556801,0.038997,0.292902,0.671173,0.697629,0.126109,0.664497,0.692202,0.583078,0.760027,0.668496,0.0556779,0.547549,0.224996,0.109209,0.225944,0.527076,0.616674,0.301625,0.747399,0.139937,0.00566071,0.62009,0.798633,0.138716,0.114578,0.851273,0.48674,0.510474,0.387559,0.00396657,0.385717,0.120908,0.345226,0.3903,0.035853,0.0630355,0.734419,0.382002,0.755835,0.99779,0.660786,0.0764655,0.330212,0.986527,0.574951,0.537844,0.259049,0.263323,0.877078,0.616001,0.225831,0.86612,0.353663,0.160325,0.44829,0.306148,0.766678,0.629511,0.23735,0.675072,0.774264,0.246704,0.111579,0.657723,0.8848,0.402248,0.739346,0.458836,0.569556,0.0875018,0.462534,0.820471,0.459482,0.449773,0.973167,0.78836,0.34754,0.886325,0.286375,0.911023,0.727703,0.638208,0.508768,0.145143,0.60591,0.680639,0.160671,0.461939,0.727834,0.504541,0.761624,0.124849,0.710926,0.529937,0.838182,0.630534,0.931555,0.414273,0.781105,0.910019,0.339631,0.133253,0.937747,0.966959,0.632203,0.309338,0.508865,0.956985,0.0188394,0.130919,0.616313,0.577487,0.178787,0.740347,0.442358,0.124766,0.326177,0.125133,0.67285,0.0485704,0.906869,0.552699,0.616185,0.715863,0.223267,0.95645,0.775656,0.304164,0.157961,0.374667,0.213994,0.14067,0.0251279,0.64282,0.45912,0.563017,0.676861,0.326959,0.0798405,0.913794,0.901508,0.595259,0.279092,0.758082,0.497091,0.442781,0.907588,0.110771,0.824454,0.714191,0.397777,0.715112,0.765227,0.870532,0.955193,0.519598,0.47496,0.563849,0.351462,0.508572,0.768769,0.387654,0.689821,0.153115,0.200989,0.389303,0.423522,0.833767,0.310891,0.106469,0.934306,0.324415,0.308237,0.157574,0.943487,0.255885,0.466048,0.179584,0.0133759,0.872883,0.594447,0.94609,0.637146,0.411126,0.73804,0.0746874,0.263206,0.368492,0.0178738,0.941864,0.647212,0.913478,0.814828,0.558029,0.569304,0.131104,0.806511,0.516795,0.0767933,0.147625,0.325222,0.00949913,0.416952,0.20794,0.276251,0.687292,0.0399598,0.841225,0.492337,0.268531,0.139232,0.260597,0.169204,0.240517,0.54152,0.415438,0.366191,0.951025,0.265459,0.908523,0.661882,0.49047,0.103907,0.650789,0.805339,0.284291,0.187281,0.239593,0.681972,0.0524454,0.554162,0.155023,0.0381425,0.192307,0.0555443,0.319614,0.0618465,0.080036,0.895478,0.352617,0.151189,0.798824,0.155115,0.479557,0.211023,0.311416,0.661896,0.959985,0.942564,0.162301,0.632012,0.496145,0.0745928,0.2415,0.249145,0.556206,0.559772,0.101472,0.461456,0.735496,0.00802159,0.983068,0.558784,0.548387,0.141183,0.804659,0.580064,0.347009,0.603381,0.77845,0.74207,0.700044,0.787787,0.775641,0.251557,0.857601,0.325378,0.502489,0.214917,0.202902,0.497584,0.0308771,0.129073,0.494542,0.00541848,0.312472,0.674988,0.294883,0.0570747,0.302707,0.0588881,0.886431,0.679151,0.860299,0.687802,0.433583,0.868956,0.845874,0.878303,0.546424,0.373816,0.71601,0.845056,0.731588,0.972211,0.848272,0.32908,0.475893,0.921491,0.601269,0.542916,0.216589,0.297819,0.298962,0.290696,0.340282,0.750713,0.233114,0.574423,0.257445,0.82576,0.285999,0.912391,0.370418,0.14087,0.127365,0.640469,0.116564,0.668085,0.758682,0.549562,0.876201,0.812761,0.346287,0.302173,0.565484,0.999989,0.375035,0.028747,0.922293,0.702477,0.525754,0.214708,0.537021,0.697409,0.209119,0.493935,0.700067,0.134438,0.517697,0.428683,0.919547,0.217679,0.99782,0.527133,0.154218,0.12004,0.617907,0.814115,0.208465,0.478735,0.064208,0.60757,0.0207862,0.151591,0.528217,0.513017,0.489732,0.428849,0.0578718,0.761192,0.00510371,0.973239,0.925029,0.799274,0.519499,0.397729,0.145173,0.566093,0.955054,0.000470459,0.571389,0.199309,0.263791,0.430657,0.644603,0.599821,0.560977,0.220591,0.691346,0.490153,0.080562,0.375561,0.686892,0.490796,0.202937,0.332647,0.220539,0.319769,0.257113,0.815391,0.558765,0.410818,0.483126,0.365427,0.488968,0.14571,0.176661,0.0549062,0.134127,0.352408,0.357265,0.752309,0.35411,|0.453926,0.107594,0.630267,0.38983,0.754279,0.628246,0.947385,0.493521,0.902113,0.182868,0.580779,0.832996,0.906344,0.512835,0.579276,0.660959,0.173128,0.417606,0.786249,0.0987518,0.826826,0.855048,0.699913,0.812665,0.932172,0.16662,0.631289,0.46295,0.457643,0.753857,0.724886,0.430276,0.401008,0.607755,0.0861655,0.578402,0.858515,0.391917,0.097587,0.594684,0.400077,0.400058,0.533246,0.00648057,0.221313,0.268781,0.971891,0.451708,0.172589,0.940017,0.183285,0.692202,0.844985,0.437116,0.631003,0.164786,0.389686,0.826074,0.00157326,0.715258,0.610396,0.948406,0.831579,0.961816,0.204059,0.564315,0.349935,0.687103,0.885062,0.222428,0.360997,0.553425,0.289803,0.794183,0.83903,0.466374,0.793948,0.988876,0.527518,0.686591,0.989355,0.931887,0.496528,0.116147,0.577627,0.983292,0.496238,0.920429,0.0904669,0.57753,0.750631,0.873431,0.725624,0.40929,0.88796,0.452654,0.610958,0.938194,0.26311,0.999384,0.056664,0.371686,0.864626,0.977177,0.688035,0.750924,0.306192,0.863842,0.996864,0.100306,0.219123,0.454983,0.36373,0.963877,0.428109,0.0707165,0.227769,0.684722,0.00964475,0.793445,0.258199,0.780308,0.0126393,0.4486,0.224878,0.852632,0.00249654,0.484862,0.317113,0.197006,0.637237,0.00895494,0.0107372,0.4571,0.799763,0.184301,0.946549,0.224091,0.154752,0.445421,0.806681,0.490108,0.646544,0.796171,0.264456,0.953387,0.770328,0.0184807,0.3618,0.783031,0.303201,0.735588,0.304142,0.760527,0.496999,0.554535,0.476474,0.743015,0.467158,0.165654,0.996106,0.809236,0.827727,0.636881,0.676744,0.0641792,0.586802,0.571012,0.579727,0.86746,0.753108,0.521722,0.570434,0.227834,0.0300526,0.814673,0.721029,0.489754,0.710789,0.890154,0.825368,0.222122,0.00400406,0.431772,0.836076,0.700104,0.682308,0.181797,0.699531,0.774876,0.2347,0.302833,0.493687,0.19084,0.941812,0.292795,0.641454,0.150907,0.363215,0.714576,0.0134135,0.906242,0.166511,0.575676,0.206615,0.456536,0.235986,0.724217,0.627887,0.737645,0.0841891,0.933554,0.0425091,0.696244,0.175658,0.925232,0.54541,0.388238,0.507586,0.00885808,0.203049,0.256825,0.791806,0.469621,0.742279,0.566817,0.674672,0.660041,0.894461,0.740293,0.535642,0.840773,0.950203,0.470715,0.413031,0.90177,0.506822,0.172429,0.906156,0.0923458,0.16828,0.569815,0.420075,0.658709,0.437927,0.463346,0.618008,0.670695,0.135231,0.72835,0.689456,0.151335,0.885958,0.828833,0.953003,0.54951,0.537037,0.646172,0.642467,0.0635809,0.0488702,0.829318,0.199942,0.428326,0.299361,0.135164,0.945717,0.765711,0.726723,0.417006,0.996637,0.164151,0.164037,0.0120143,0.107722,0.359651,0.048974,0.498488,0.598658,0.731692,0.78952,0.894505,0.416763,0.574078,0.13365,0.942672,0.510981,0.218709,0.178018,0.727239,0.262034,0.20032,0.713715,0.452415,0.633507,0.953071,0.370988,0.234444,0.761505,0.480034,0.159093,0.106623,0.3495,0.594182,0.290313,0.5949,0.110125,0.709992,0.0539227,0.545452,0.579747,0.01466,0.394965,0.0591743,0.507719,0.179233,0.82767,0.979764,0.930696,0.567873,0.965706,0.957247,0.880793,0.13674,0.379443,0.576676,0.214007,0.247693,0.0643595,0.581189,0.549301,0.0794091,0.383315,0.698578,0.853531,0.197567,0.0998912,0.821327,0.450606,0.720107,0.607485,0.356454,0.116766,0.277074,0.418888,0.896896,0.687697,0.80872,0.805649,0.557213,0.00949317,0.796717,0.00311375,0.593374,0.283997,0.0296646,0.976477,0.70057,0.71044,0.569775,0.893713,0.182873,0.188517,0.952805,0.992637,0.969824,0.207867,0.168166,0.185566,0.986976,0.710408,0.541885,0.848392,0.836606,0.98166,0.576913,0.221446,0.572927,0.576141,0.956772,0.758344,0.754082,0.382615,0.371136,0.664063,0.182848,0.297783,0.589662,0.796718,0.283553,0.938956,0.128581,0.220823,0.674481,0.464493,0.369314,0.227465,0.828545,0.696302,0.58684,0.962222,0.292476,0.418587,0.591904,0.437751,0.682907,0.920273,0.710835,0.494806,0.42268,0.951348,0.987653,0.326224,0.831025,0.593647,0.372998,0.271834,0.282733,0.684029,0.244605,0.819757,0.361805,0.93977,0.0587658,0.14768,0.609607,0.787636,0.730837,0.535312,0.786793,0.233461,0.933251,0.576081,0.749703,0.680602,0.804877,0.69139,0.237253,0.0525388,0.585967,0.0951039,0.270529,0.043277,0.187416,0.809343,0.525169,0.372225,0.349712,0.489941,0.658867,0.0359699,0.87084,0.398148,0.0806941,0.909514,0.400554,0.31874,0.152354,0.57887,0.717536,0.278753,0.284028,0.0458389,0.71661,0.47765,0.729508,0.821724,0.680403,0.614672,0.666529,0.502444,0.3683,0.100995,0.253893,0.416379,0.305699,0.482596,0.832176,0.60506,0.975327,0.0775341,0.451966,0.645747,0.941145,0.24364,0.0711623,0.194095,0.419826,0.648884,0.518763,0.718707,0.648498,0.529754,0.713485,0.959821,0.270983,0.559565,0.369075,0.672404,0.497783,0.806612,0.475467,0.749251,0.962672,0.876456,0.747576,0.61526,0.0533821,0.931223,0.860718,0.222564,0.439181,0.0952999,0.30223,0.267524,0.791849,0.0199453,0.149486,0.916783,0.860559,0.516451,0.768632,0.891457,0.00798374,0.10581,0.554622,0.187259,0.191462,0.994922,0.291458,0.902066,0.732336,0.0603096,0.20482,0.348117,0.242386,0.391011,0.0165231,0.289614,0.743114,0.488408,0.191943,0.650985,0.316682,0.870091,0.189864,0.606856,0.7691,0.216076,0.443674,0.412922,0.493285,0.198002,0.064414,0.3957,0.0122505,0.514748,0.408386,0.346693,0.219025,0.178697,0.498557,0.30265,0.865194,0.000588477,0.542523,0.986917,0.270058,0.709646,0.935202,0.289027,0.98183,0.325033,0.86246,0.0226218,0.561749,0.496288,0.734993,0.944584,0.258286,0.728336,0.298643,0.601755,0.0818599,0.422383,0.904914,0.6325,0.441029,0.249813,0.938652,0.107451,0.461306,0.902255,0.210365,0.621573,0.444112,0.0755789,0.0420113,0.261827,0.686663,0.635176,0.798857,0.960477,0.278325,0.40945,0.511334,0.915034,0.82282,0.00875884,0.3012,0.505616,0.53612,0.836778,0.45335,0.801533,0.457635,0.434855,0.0594457,0.4456,0.861187,0.853453,0.386417,0.918905,0.878826,0.906335,0.957792,0.800734,0.30127,0.450015,0.418981,0.680996,0.379079,0.389923,0.183397,0.571168,0.808794,0.374913,0.0290337,0.115005,0.983284,0.00509351,0.133024,0.91876,0.506956,0.162077,0.950073,0.0644618,0.192513,0.758246,0.185034,0.842418,0.647806,0.216287,0.094537,0.736845,0.961749,0.0356983,0.795431,0.942194,0.733262,0.137276,0.806384,0.211786,0.556525,0.587926,0.820572,0.90609,0.942862,0.613436,0.520073,0.321225,0.00175011,0.168632,0.63894,0.846187,0.898675,0.0088706,0.882985,0.730787,0.225914,0.770914,0.671228,0.575467,0.0261843,0.364156,0.740871,0.992839,0.881556,0.503576,0.989707,0.962905,0.992023,0.976058,0.427601,0.468519,0.697411,0.899391,0.335181,0.96601,0.147448,0.897055,0.327205,0.0676585,0.461169,0.118053,0.212967,0.419077,0.512712,0.459384,0.0968908,0.937789,0.148596,0.237341,0.46831,0.937827,0.667848,0.684928,0.942134,0.147502,0.138328,0.0146304,0.684883,0.503402,0.168137,0.784989,0.941168,0.186414,0.439306,0.666938,0.632921,0.00139391,0.464846,0.643055,0.743814,0.622679,0.0395543,0.879493,0.284195,0.09139,0.215984,0.567239,0.657602,0.565117,0.435591,0.746262,0.763142,0.844921,0.644494,0.115006,0.0962359,0.893399,0.0176339,0.525871,0.911969,0.276388,0.57898,0.847512,0.396883,0.6729,0.311414,0.145515,0.620558,0.911688,0.835539,0.47246,0.260104,0.241564,0.647604,0.232705,0.695832,0.8819,0.460772,0.226471,0.423464,0.331445,0.849468,0.880819,0.708093,0.410561,0.345614,0.869776,0.494585,0.44859,0.0192662,0.959945,0.878675,0.652136,0.389547,0.218255,0.564042,0.602325,0.252021,0.405502,0.746355,0.939447,0.123056,0.789209,0.802112,0.126379,0.215428,0.799088,0.0170346,0.228296,0.564813,0.386772,0.602521,0.275858,0.438568,0.794102,0.355188,0.510128,0.70886,0.0679581,0.891213,0.00525105,0.330616,0.224351,0.222032,0.665288,0.780593,0.24577,0.825432,0.220472,0.977978,0.208848,0.0517671,0.662859,0.0049693,0.522669,0.550121,0.330749,0.88001,0.667769,0.468345,0.603531,0.374278,0.65143,0.545399,0.214109,0.699373,0.379659,0.191804,0.363578,0.806975,0.917502,0.774241,0.803227,0.766072,0.244444,0.516447,0.845741,0.916879,0.0998768,0.380348,0.556387,0.990942,0.564582,0.793197,0.236199,0.585799,0.351591,0.109936,0.877047,0.914009,0.538514,0.773696,0.298926,0.974502,0.549279,0.163193,0.41313,0.991171,0.512348,0.167173,0.123809,0.394489,0.0444604,0.540667,0.364584,0.0290222,0.87186,0.763685,0.781196,0.224101,0.928412,0.285196,0.056443,0.561845,0.154363,0.759473,0.33814,0.296941,0.582892,0.0614116,0.969515,0.411713,0.4783,0.580384,0.434044,0.775244,0.681432,0.481769,0.528143,0.204341,0.475507,0.365468,0.0900909,0.489095,0.127338,0.9798,0.827801,0.191129,0.201965,0.630152,0.235208,0.290101,0.0989142,0.997161,0.0355781,0.629174,0.730861,0.657958,0.152496,0.581592,0.472368,0.570239,0.447574,0.864175,0.265541,0.791962,0.489166,0.966191,0.171309,0.00825417,0.827552,0.478877,0.410381,0.237913,0.18183,0.739517,0.77332,0.358672,0.205089,0.884932,0.0559757,0.531014,0.961593,0.176056,0.433003,0.853716,0.139939,0.10119,0.739141,0.0683404,0.680069,0.741897,0.772307,0.40428,0.394872,0.647781,0.171467,0.513652,0.183418,0.744178,0.371903,0.679994,0.0695344,0.197263,0.57473,0.673249,0.0079729,0.0519828,0.435238,0.780673,0.462006,0.470749,0.325391,0.0249603,0.52557,0.36322,0.411391,0.464948,0.371565,0.754789,0.801912,0.719928,0.423935,0.628266,0.981829,0.606389,0.892967,0.67682,0.597299,0.45291,0.448922,0.175712,0.899721,0.198636,0.921163,0.314422,|0.770705,0.961754,0.0743809,0.0272052,0.883791,0.879327,0.538906,0.201949,0.575685,0.753454,0.00909585,0.317029,0.359185,0.592822,0.749151,0.387394,0.217385,0.952871,0.32648,0.0781595,0.497611,0.276094,0.328351,0.395408,0.0293118,0.700277,0.761389,0.968524,0.144645,0.221163,0.573282,0.463996,0.466799,0.659477,0.879011,0.846109,0.409495,0.875706,0.487032,0.365798,0.727587,0.584975,0.241228,0.104411,0.133435,0.2187,0.0894054,0.222505,0.266156,0.295748,0.853986,0.823505,0.0089224,0.612934,0.516917,0.583359,0.0887737,0.405752,0.473993,0.541875,0.780734,0.0203605,0.446328,0.713269,0.249889,0.445843,0.554315,0.0828071,0.826069,0.780481,0.306911,0.746984,0.476719,0.476052,0.510923,0.930048,0.218157,0.086064,0.0146526,0.353919,0.377231,0.809259,0.273111,0.121982,0.847697,0.109588,0.951288,0.542483,0.176253,0.686616,0.469814,0.663851,0.165969,0.13585,0.521331,0.849533,0.532098,0.280206,0.02547,0.158324,0.0808706,0.934661,0.228225,0.668595,0.445273,0.314789,0.0465482,0.569826,0.389521,0.39765,0.635545,0.147313,0.179068,0.114946,0.634585,0.821566,0.924753,0.571854,0.348309,0.731649,0.812485,0.127026,0.299364,0.836984,0.357515,0.836219,0.207475,0.814348,0.104854,0.0188012,0.0965168,0.916099,0.144081,0.889844,0.219563,0.00266433,0.407593,0.889591,0.900047,0.460214,0.195685,0.184015,0.793928,0.986663,0.37037,0.331567,0.337635,0.777556,0.245365,0.408803,0.69684,0.313688,0.496193,0.0246487,0.041294,0.304321,0.13806,0.877564,0.655984,0.167314,0.933478,0.937701,0.814794,0.359742,0.642245,0.0819241,0.0415298,0.474056,0.0497051,0.79408,0.0702725,0.331481,0.21541,0.875642,0.709249,0.995473,0.769264,0.368348,0.640374,0.871297,0.987863,0.89308,0.445024,0.018538,0.317643,0.202078,0.357624,0.317547,0.168234,0.751556,0.719997,0.63131,0.725321,0.0765699,0.488296,0.22796,0.807074,0.0850988,0.575405,0.400169,0.661322,0.151038,0.350158,0.254508,0.583088,0.112847,0.746077,0.340662,0.406531,0.225801,0.383066,0.74628,0.927159,0.999299,0.180077,0.897626,0.600167,0.00318527,0.499238,0.521363,0.40261,0.182987,0.844127,0.680517,0.0539435,0.351553,0.359999,0.80023,0.875653,0.932645,0.248628,0.0375937,0.480788,0.664269,0.261599,0.210635,0.523252,0.708608,0.557939,0.698393,0.750447,0.902357,0.741445,0.957579,0.627105,0.267811,0.814276,0.81967,0.663005,0.0972335,0.572915,0.0618483,0.330193,0.0234982,0.396988,0.361975,0.666185,0.0279056,0.952435,0.969636,0.914928,0.31604,0.0417427,0.504266,0.635074,0.52457,0.723182,0.699742,0.56861,0.668096,0.593421,0.613089,0.268844,0.0306452,0.0231128,0.976767,0.881605,0.53626,0.892046,0.316602,0.335679,0.539127,0.44797,0.153601,0.82494,0.302199,0.0545726,0.196722,0.746637,0.929264,0.1342,0.255266,0.528186,0.876482,0.509967,0.77436,0.578065,0.829883,0.416413,0.467289,0.211192,0.0189241,0.732434,0.619857,0.986625,0.245871,0.302229,0.454843,0.212434,0.718194,0.631226,0.233241,0.955304,0.243634,0.391818,0.612097,0.0797983,0.456643,0.175145,0.354777,0.986776,0.770957,0.247685,0.935611,0.423389,0.243349,0.434478,0.0534981,0.285738,0.577233,0.14789,0.510134,0.451905,0.432994,0.523251,0.826778,0.27151,0.177252,0.702913,0.439338,0.301833,0.422836,0.632158,0.453616,0.407812,0.70034,0.467872,0.447739,0.0346937,0.965523,0.754896,0.815674,0.797354,0.49265,0.546641,0.934692,0.864118,0.546261,0.525774,0.937291,0.946424,0.279128,0.88205,0.4399,0.104231,0.715688,0.36739,0.856016,0.630067,0.454398,0.721807,0.45191,0.610453,0.682747,0.37365,0.422604,0.0729541,0.906366,0.457216,0.310709,0.661963,0.775383,0.0687101,0.547089,0.407905,0.795758,0.17654,0.970866,0.0568451,0.567912,0.28802,0.357673,0.569657,0.548331,0.789729,0.221913,0.605929,0.166333,0.692798,0.477839,0.175356,0.801139,0.60103,0.052892,0.675316,0.528154,0.940068,0.926612,0.504134,0.806399,0.433247,0.704987,0.0989153,0.787092,0.27917,0.0856208,0.634021,0.149593,0.985668,0.969243,0.186986,0.247163,0.981747,0.812499,0.225527,0.323526,0.241534,0.743882,0.930421,0.463568,0.636871,0.163971,0.950306,0.932613,0.26105,0.886715,0.405328,0.103913,0.813399,0.757675,0.411455,0.47752,0.796542,0.265272,0.835244,0.626952,0.61901,0.0432373,0.450638,0.541748,0.949143,0.967347,0.0112797,0.357003,0.0820744,0.655212,0.0886624,0.434462,0.408722,0.681713,0.345579,0.116896,0.596939,0.355282,0.228008,0.156739,0.254193,0.612277,0.307506,0.177719,0.0332403,0.868027,0.985402,0.0433559,0.10878,0.202452,0.396962,0.334417,0.592008,0.781918,0.885409,0.382416,0.739706,0.902862,0.141992,0.134757,0.94974,0.160339,0.679862,0.204062,0.621405,0.00816494,0.636597,0.926591,0.599292,0.575922,0.318956,0.511458,0.493244,0.232244,0.710571,0.873813,0.13209,0.0614982,0.760654,0.936814,0.552616,0.450906,0.730555,0.715988,0.595928,0.0500444,0.217597,0.00509483,0.215377,0.788228,0.922079,0.376757,0.00535566,0.323241,0.323004,0.837513,0.927751,0.2387,0.0142405,0.777274,0.26747,0.261586,0.394001,0.155848,0.507278,0.0399417,0.652566,0.0708706,0.0513997,0.197769,0.556884,0.804941,0.794803,0.0617748,0.0758929,0.126032,0.556258,0.270792,0.925825,0.135902,0.75823,0.623993,0.291251,0.587946,0.0916483,0.62909,0.864121,0.970152,0.546502,0.584928,0.107865,0.969283,0.237366,0.136125,0.00288653,0.37402,0.829847,0.641349,0.658831,0.068167,0.0977527,0.594188,0.598858,0.055397,0.774046,0.0956417,0.443587,0.46282,0.394886,0.545924,0.719193,0.236577,0.465691,0.684513,0.157633,0.840678,0.298402,0.039333,0.046672,0.0858465,0.119158,0.114255,0.379943,0.24717,0.939829,0.487255,0.649381,0.44086,0.73285,0.427363,0.752328,0.580023,0.301596,0.0987283,0.172852,0.732341,0.9659,0.451264,0.597789,0.757056,0.0451614,0.265102,0.065231,0.234925,0.673154,0.613581,0.341637,0.219188,0.777924,0.0571807,0.418592,0.634411,0.87159,0.0510151,0.002581,0.810249,0.361451,0.83825,0.307743,0.241412,0.860412,0.172017,0.197405,0.817955,0.682586,0.720268,0.0706489,0.985548,0.492714,0.898978,0.971851,0.459465,0.625036,0.216992,0.497343,0.244793,0.662729,0.544776,0.947875,0.423485,0.925207,0.735296,0.69032,0.505106,0.725666,0.79752,0.020541,0.349904,0.769361,0.587643,0.929065,0.186274,0.395551,0.0587499,0.892182,0.727926,0.0140718,0.450189,0.349644,0.389425,0.952898,0.0521401,0.448405,0.542065,0.875552,0.982867,0.409811,0.138249,0.118162,0.204793,0.101745,0.388024,0.166603,0.263267,0.0571448,0.855944,0.892838,0.963388,0.398634,0.137769,0.222233,0.860257,0.0886944,0.137337,0.175468,0.870071,0.843863,0.829399,0.00930816,0.712561,0.24289,0.453839,0.442668,0.735727,0.0371574,0.0304281,0.974832,0.901008,0.853983,0.125668,0.614893,0.445608,0.398947,0.544466,0.889506,0.840985,0.922162,0.477155,0.139726,0.185028,0.999095,0.935278,0.3844,0.180675,0.877876,0.908866,0.0123087,0.197346,0.14625,0.0290875,0.0187224,0.401384,0.153934,0.531028,0.337818,0.946863,0.925576,0.564645,0.377496,0.157198,0.720392,0.91703,0.215427,0.743497,0.2249,0.324243,0.1293,0.164026,0.428894,0.241014,0.229962,0.491961,0.23297,0.401997,0.393734,0.555934,0.539027,0.162244,0.60045,0.423705,0.285384,0.157803,0.153309,0.388305,0.243108,0.152989,0.773532,0.299303,0.815382,0.711006,0.5335,0.113491,0.703988,0.28267,0.213964,0.806501,0.963841,0.262436,0.429627,0.410369,0.960632,0.662692,0.402671,0.704715,0.588783,0.420833,0.438406,0.498753,0.222731,0.225508,0.136682,0.329838,0.197449,0.304181,0.970417,0.436246,0.21436,0.45783,0.975936,0.369247,0.579136,0.127938,0.583511,0.289559,0.97727,0.748941,0.643659,0.411136,0.715587,0.229966,0.23682,0.750257,0.907402,0.894045,0.034117,0.982474,0.0417596,0.416234,0.454715,0.474356,0.209437,0.735948,0.756277,0.199699,0.702663,0.738474,0.557337,0.172964,0.527012,0.495687,0.534319,0.487644,0.124552,0.0390881,0.946226,0.124555,0.810368,0.556235,0.967649,0.420775,0.436551,0.439945,0.865699,0.323021,0.470956,0.172751,0.555646,0.375669,0.447849,0.089895,0.121998,0.376575,0.8903,0.183635,0.769315,0.580175,0.800733,0.580766,0.95306,0.0296806,0.167671,0.121931,0.782902,0.839724,0.859353,0.643051,0.582266,0.730367,0.507479,0.460544,0.531211,0.183731,0.392981,0.0388076,0.526569,0.770708,0.838075,0.672367,0.148154,0.772646,0.838826,0.126939,0.979255,0.504842,0.531749,0.558692,0.567311,0.658584,0.11306,0.187125,0.915749,0.537097,0.606851,0.295745,0.774648,0.203359,0.493231,0.77033,0.90184,0.920001,0.944393,0.712216,0.899199,0.928377,0.762003,0.702757,0.977425,0.793304,0.721342,0.48042,0.697874,0.976336,0.817329,0.449192,0.630404,0.336454,0.883251,0.0250773,0.285586,0.605487,0.00277573,0.901054,0.652195,0.544238,0.388654,0.852818,0.615412,0.0305578,0.345209,0.46628,0.219041,0.599581,0.895098,0.275936,0.85114,0.0119094,0.769792,0.386935,0.647655,0.393436,0.0972714,0.529975,0.60362,0.31713,0.222966,0.826647,0.490373,0.504351,0.70829,0.109749,0.982196,0.406043,0.666186,0.00260407,0.566403,0.0976297,0.836108,0.837308,0.173009,0.792912,0.714717,0.386209,0.430088,0.315178,0.380529,0.0830251,0.0569797,0.260288,0.204053,0.707643,0.0186057,0.904089,0.632437,0.453047,0.314363,0.168321,0.652084,0.908041,0.230812,0.601001,0.526106,0.925588,0.28863,0.0721698,0.476783,0.987648,0.952041,0.237477,0.950779,0.0973583,0.979814,0.74818,0.69729,0.913172,0.126031,0.0464092,0.119325,0.348752,0.995564,0.0399994,0.705757,0.40136,0.243971,0.635801,|0.712398,0.0431637,0.190247,0.914384,0.40149,0.00339264,0.490139,0.738797,0.108507,0.117366,0.976409,0.192387,0.895947,0.192734,0.457668,0.628825,0.739802,0.596141,0.599848,0.00206095,0.782035,0.426785,0.943306,0.764316,0.33244,0.22154,0.787492,0.507987,0.0622685,0.178755,0.315508,0.251985,0.0411556,0.31006,0.0985658,0.326977,0.975021,0.499157,0.0773667,0.382464,0.657902,0.912953,0.900648,0.177169,0.786218,0.224479,0.333475,0.0349069,0.438711,0.475577,0.784746,0.0895171,0.844229,0.0922843,0.911346,0.776591,0.412539,0.461582,0.599336,0.789166,0.735523,0.173891,0.00801504,0.270407,0.267871,0.460676,0.359689,0.265339,0.829122,0.257034,0.854847,0.314046,0.773359,0.746032,0.670733,0.297866,0.875517,0.243212,0.627239,0.496817,0.370372,0.354605,0.82489,0.877319,0.053352,0.695905,0.723945,0.963809,0.428784,0.66181,0.881886,0.518781,0.143458,0.606642,0.286083,0.776573,0.892065,0.713006,0.8637,0.355831,0.683837,0.791096,0.45846,0.494471,0.613953,0.626115,0.382144,0.667905,0.144818,0.626103,0.226971,0.558777,0.979117,0.576464,0.775035,0.480524,0.799239,0.244436,0.763546,0.401845,0.111933,0.735087,0.470541,0.916389,0.931918,0.650092,0.865501,0.711109,0.501805,0.859368,0.981464,0.00131088,0.425689,0.0849497,0.397201,0.701753,0.686788,0.296847,0.663016,0.197906,0.542276,0.23331,0.540915,0.515821,0.992221,0.809591,0.443335,0.148872,0.106862,0.212194,0.42422,0.133249,0.911934,0.328798,0.683804,0.951084,0.312576,0.973665,0.215094,0.149481,0.35184,0.0581913,0.536071,0.16091,0.53742,0.703221,0.223677,0.556545,0.848103,0.904227,0.948007,0.695109,0.518569,0.0238262,0.848937,0.742531,0.234281,0.085589,0.425985,0.389612,0.670757,0.591986,0.370299,0.30967,0.268853,0.651618,0.888242,0.738697,0.246468,0.725271,0.0356482,0.701035,0.990459,0.749627,0.538392,0.803014,0.0705576,0.883684,0.926048,0.924879,0.672298,0.617698,0.779019,0.785956,0.709761,0.070851,0.857549,0.956446,0.167451,0.736557,0.0832171,0.209643,0.0859631,0.134709,0.78893,0.721093,0.237727,0.376339,0.0567577,0.222146,0.0864362,0.811423,0.982173,0.916619,0.40101,0.615888,0.173537,0.611151,0.0886195,0.55504,0.209964,0.22084,0.109322,0.4165,0.443458,0.854196,0.774177,0.0656117,0.17945,0.360898,0.791277,0.71426,0.756912,0.6756,0.921623,0.598208,0.920401,0.460417,0.0917244,0.842936,0.869688,0.889553,0.0118631,0.298771,0.742707,0.544184,0.515989,0.202721,0.525806,0.182202,0.651549,0.663842,0.19316,0.880727,0.701086,0.439119,0.745501,0.000522673,0.497136,0.202672,0.503024,0.378818,0.967117,0.783194,0.623035,0.149537,0.273404,0.462374,0.907368,0.147821,0.495529,0.806263,0.0405157,0.350947,0.503845,0.998446,0.976932,0.0448484,0.28795,0.419185,0.058941,0.0932659,0.858628,0.205123,0.177266,0.179617,0.197841,0.809803,0.762821,0.830245,0.279076,0.440936,0.886122,0.403524,0.104753,0.453934,0.855521,0.940106,0.908041,0.794874,0.611458,0.477892,0.04071,0.0166881,0.310044,0.420949,0.546021,0.375472,0.556325,0.408822,0.715065,0.739352,0.567767,0.447179,0.719983,0.339053,0.361383,0.155641,0.380823,0.707965,0.284319,0.476196,0.0201042,0.418841,0.84645,0.900512,0.443579,0.897754,0.521359,0.804397,0.746299,0.163227,0.228528,0.570328,0.792271,0.505983,0.577343,0.386646,0.120265,0.233461,0.0270487,0.45798,0.171625,0.949941,0.660378,0.508293,0.150931,0.547007,0.509726,0.716138,0.736501,0.459978,0.43526,0.00137484,0.769281,0.767537,0.185778,0.916462,0.21398,0.24953,0.920396,0.139413,0.460212,0.730832,0.707702,0.171288,0.610001,0.451348,0.450342,0.660284,0.873989,0.68237,0.0316168,0.339713,0.73552,0.604712,0.382054,0.0803136,0.326917,0.452505,0.846575,0.664374,0.208594,0.437177,0.587251,0.737696,0.0183292,0.775433,0.620883,0.757011,0.156519,0.0643363,0.735363,0.583897,0.627669,0.687682,0.859931,0.612549,0.480625,0.722559,0.086783,0.283941,0.652752,0.470101,0.622486,0.193185,0.415569,0.134227,0.0724056,0.97131,0.212289,0.564153,0.306546,0.867141,0.730969,0.138865,0.953007,0.60296,0.519413,0.67066,0.283327,0.0301911,0.173389,0.48035,0.596928,0.744678,0.579409,0.730403,0.685735,0.993203,0.822255,0.888873,0.0838704,0.387822,0.590431,0.384506,0.365424,0.178063,0.916326,0.553133,0.672334,0.370497,0.11075,0.171945,0.883947,0.725114,0.511089,0.0284475,0.9249,0.879347,0.392495,0.767911,0.245321,0.622419,0.152949,0.282981,0.590319,0.720352,0.57291,0.324783,0.216412,0.0935302,0.301427,0.569216,0.324605,0.451908,0.97242,0.728868,0.726973,0.84664,0.918582,0.0179094,0.0270459,0.115454,0.552136,0.948778,0.953796,0.248873,0.0549849,0.118493,0.602609,0.796069,0.456794,0.692264,0.243188,0.940288,0.965873,0.717797,0.910412,0.709547,0.339629,0.0784945,0.741589,0.38756,0.284272,0.439316,0.165715,0.976018,0.896027,0.313085,0.0217488,0.830152,0.939747,0.229955,0.846244,0.519118,0.166023,0.01072,0.859636,0.0485411,0.135157,0.99076,0.633444,0.775636,0.575761,0.385409,0.397391,0.862003,0.477913,0.185598,0.928252,0.282876,0.307038,0.655518,0.0706393,0.572971,0.329666,0.369133,0.191266,0.894273,0.907537,0.610307,0.0448225,0.505843,0.312369,0.718211,0.292519,0.807711,0.25136,0.924315,0.800525,0.131127,0.361905,0.0124718,0.743194,0.422324,0.136512,0.452447,0.147162,0.353481,0.027747,0.568015,0.936525,0.6765,0.12388,0.993838,0.975264,0.279275,0.126779,0.423117,0.40298,0.392371,0.662576,0.0213377,0.849355,0.0584214,0.645348,0.304675,0.25133,0.129919,0.328589,0.366661,0.360795,0.869189,0.967505,0.714338,0.703582,0.358798,0.253068,0.409004,0.954361,0.282486,0.663293,0.89006,0.919985,0.44729,0.106224,0.648837,0.982682,0.973737,0.0717135,0.827002,0.873573,0.746602,0.730345,0.293698,0.325697,0.656906,0.845473,0.158456,0.811511,0.971696,0.719233,0.443715,0.167931,0.50723,0.835464,0.862404,0.0675989,0.454895,0.26086,0.492352,0.24865,0.113717,0.193475,0.957541,0.801722,0.322682,0.395521,0.361288,0.92912,0.887918,0.387944,0.910142,0.0331821,0.643838,0.0310674,0.859161,0.868695,0.819827,0.0287221,0.860992,0.998787,0.14858,0.497385,0.0769776,0.646078,0.481424,0.445693,0.253681,0.559969,0.172614,0.717585,0.886387,0.781356,0.349144,0.238757,0.281807,0.632108,0.128613,0.306969,0.320702,0.693824,0.593044,0.0679037,0.0171914,0.38561,0.586804,0.884884,0.60605,0.369408,0.661889,0.110621,0.654278,0.645935,0.386101,0.345876,0.0373595,0.265825,0.026451,0.555958,0.765875,0.0861425,0.94316,0.613358,0.391766,0.182215,0.41704,0.141692,0.631959,0.730223,0.562212,0.0251049,0.290171,0.363536,0.955542,0.854625,0.874519,0.953061,0.137363,0.614662,0.480903,0.383456,0.704339,0.303914,0.273449,0.924624,0.616499,0.207685,0.60973,0.742888,0.847416,0.325779,0.693496,0.589914,0.780152,0.0897031,0.936278,0.322226,0.401958,0.436161,0.0121236,0.511098,0.222672,0.381133,0.416331,0.0160685,0.546884,0.979959,0.271675,0.671499,0.198173,0.083062,0.385006,0.615091,0.506953,0.014548,0.165418,0.962282,0.443957,0.970967,0.571205,0.586513,0.0644994,0.792886,0.188193,0.297877,0.111068,0.202632,0.968216,0.781113,0.544521,0.244334,0.056344,0.53213,0.302979,0.192658,0.643652,0.545263,0.127217,0.11375,0.4005,0.353848,0.216988,0.89266,0.250084,0.599168,0.632574,0.369921,0.970811,0.902019,0.447487,0.249231,0.80189,0.919761,0.475773,0.603084,0.220778,0.48853,0.99017,0.446666,0.611961,0.51117,0.280508,0.958769,0.945677,0.118964,0.684921,0.997997,0.166335,0.688068,0.631319,0.790986,0.545324,0.635904,0.920634,0.0707661,0.342261,0.392282,0.552341,0.1426,0.629252,0.0751771,0.592377,0.541371,0.255702,0.939853,0.613958,0.57542,0.750694,0.808608,0.89283,0.710719,0.448313,0.385328,0.426238,0.967128,0.208315,0.247314,0.607914,0.618855,0.493167,0.916849,0.748653,0.851158,0.363042,0.509394,0.763834,0.608454,0.689498,0.986555,0.267852,0.590855,0.638239,0.348075,0.0924175,0.955118,0.545248,0.443211,0.308414,0.334522,0.832575,0.572646,0.202141,0.103919,0.626634,0.745951,0.152288,0.529283,0.788513,0.220417,0.129167,0.268476,0.148312,0.17363,0.243313,0.688285,0.125867,0.497723,0.193286,0.827787,0.248693,0.409387,0.189914,0.369745,0.0734684,0.442404,0.401475,0.763728,0.988918,0.94985,0.483312,0.189788,0.773266,0.954245,0.366224,0.593769,0.226901,0.0717437,0.919667,0.618403,0.219378,0.500026,0.554876,0.573537,0.933058,0.619494,0.74232,0.622503,0.143851,0.409234,0.962663,0.436911,0.132294,0.427209,0.477359,0.135216,0.653089,0.111733,0.203092,0.571369,0.522983,0.70991,0.512744,0.408325,0.516317,0.0471811,0.028484,0.162798,0.433219,0.375229,0.371212,0.987791,0.632612,0.48135,0.113218,0.939445,0.536159,0.888545,0.651217,0.548688,0.0602274,0.49498,0.799388,0.530927,0.637694,0.774029,0.545764,0.448825,0.688803,0.527017,0.0482528,0.444124,0.99511,0.89957,0.138782,0.838789,0.930121,0.645375,0.3507,0.20418,0.678037,0.245133,0.350702,0.493072,0.236754,0.114761,0.960141,0.404117,0.827969,0.0774729,0.181756,0.305422,0.967512,0.313855,0.732134,0.0391207,0.592858,0.327963,0.218818,0.651593,0.193878,0.526757,0.149942,0.864327,0.375261,0.495768,0.290398,0.310637,0.300493,0.987706,0.627474,0.337598,0.711001,0.694716,0.417915,0.270833,0.670782,0.497633,0.29936,0.0739422,0.79758,0.437919,0.847172,0.347336,0.152475,0.809323,0.66704,0.563394,0.0640678,0.750631,0.752935,0.168961,0.621368,0.65421,0.0919601,0.435297,0.355933,0.813178,0.177496,|0.470077,0.919477,0.338645,0.7449,0.0231282,0.865999,0.765181,0.855124,0.542349,0.125665,0.409289,0.819335,0.966919,0.266289,0.0755698,0.270168,0.0380377,0.551919,0.750093,0.679087,0.867168,0.275238,0.612936,0.991117,0.494956,0.564449,0.0990235,0.0204504,0.90479,0.862923,0.0387012,0.280896,0.836323,0.592607,0.209914,0.452793,0.74151,0.79903,0.494755,0.0770582,0.00338072,0.89523,0.884636,0.688127,0.615408,0.902092,0.989114,0.0675926,0.637875,0.310338,0.735651,0.308983,0.964183,0.0660485,0.945981,0.809238,0.483059,0.370857,0.0482414,0.276703,0.848701,0.125526,0.189292,0.215343,0.176212,0.116765,0.309822,0.447723,0.266324,0.533959,0.602343,0.0576217,0.572579,0.244172,0.904321,0.891254,0.759457,0.20047,0.374045,0.680723,0.492104,0.9379,0.16511,0.172542,0.978824,0.108538,0.099333,0.58384,0.58652,0.224612,0.60431,0.0179561,0.70942,0.0201938,0.214715,0.597778,0.971331,0.445994,0.581476,0.042731,0.658027,0.721408,0.32746,0.812739,0.566476,0.938313,0.939003,0.330622,0.311977,0.945578,0.024794,0.975006,0.0623698,0.72492,0.974119,0.964479,0.167899,0.821964,0.387537,0.605668,0.638067,0.307355,0.0993604,0.528945,0.544792,0.954066,0.204624,0.334952,0.116055,0.154816,0.916038,0.808066,0.814329,0.0994997,0.174384,0.95366,0.694702,0.84292,0.456546,0.419617,0.452654,0.66537,0.00970221,0.384621,0.0184865,0.552403,0.689957,0.574672,0.26451,0.767095,0.0761595,0.398643,0.821635,0.616352,0.508921,0.541124,0.138226,0.0848634,0.401969,0.948076,0.0670651,0.399759,0.263269,0.983723,0.561278,0.977869,0.84568,0.932241,0.710112,0.664171,0.349123,0.169935,0.331262,0.86327,0.709854,0.931923,0.833571,0.917001,0.196108,0.907687,0.910097,0.241638,0.734604,0.422001,0.466814,0.265738,0.843783,0.870631,0.690555,0.892993,0.221266,0.41934,0.121112,0.425581,0.0619598,0.889498,0.551251,0.488924,0.53496,0.368129,0.259219,0.982163,0.661214,0.0336088,0.144056,0.810852,0.835676,0.755107,0.948252,0.0350299,0.0170036,0.666063,0.981777,0.739085,0.5177,0.281686,0.251079,0.824995,0.67897,0.705681,0.558129,0.535065,0.387262,0.566973,0.997128,0.586741,0.806706,0.53828,0.724696,0.0273605,0.0703138,0.0534799,0.89704,0.540648,0.956212,0.806991,0.35148,0.59044,0.106773,0.956362,0.488905,0.659622,0.214161,0.903584,0.452434,0.256361,0.823727,0.302638,0.61005,0.472563,0.382574,0.464044,0.866352,0.930704,0.0319123,0.805073,0.350668,0.43077,0.224474,0.0639436,0.856987,0.128177,0.466379,0.702122,0.0831381,0.17259,0.569983,0.429104,0.0809312,0.639086,0.660055,0.0336921,0.441169,0.181822,0.914083,0.964115,0.214596,0.317271,0.62423,0.619466,0.773972,0.383168,0.107467,0.0313072,0.950834,0.789211,0.967931,0.545623,0.27492,0.641292,0.228453,0.643751,0.789775,0.182805,0.646233,0.762413,0.606701,0.966833,0.795211,0.949317,0.970807,0.373037,0.479936,0.382004,0.783681,0.597188,0.243533,0.987558,0.788041,0.184059,0.36065,0.643586,0.769778,0.0062449,0.500907,0.318749,0.552551,0.54099,0.334643,0.783958,0.838068,0.154427,0.317258,0.143273,0.677058,0.293903,0.170321,0.145461,0.362141,0.50077,0.675226,0.506631,0.36017,0.0223776,0.0905308,0.940261,0.330558,0.310012,0.35138,0.341762,0.624344,0.909656,0.47303,0.909411,0.679853,0.229545,0.917316,0.635496,0.589761,0.832717,0.0403115,0.600023,0.217521,0.270951,0.222077,0.418762,0.108687,0.919945,0.197261,0.917186,0.98111,0.359832,0.549911,0.36615,0.768324,0.620263,0.999985,0.879053,0.450589,0.255967,0.575472,0.237836,0.195769,0.935668,0.0876177,0.628628,0.825532,0.0952949,0.450953,0.132877,0.412642,0.359925,0.447193,0.0545022,0.416604,0.475575,0.124722,0.0731727,0.083684,0.408847,0.0118447,0.419986,0.0817941,0.355607,0.537303,0.90459,0.792435,0.076533,0.385595,0.0569885,0.931275,0.380969,0.698467,0.291879,0.0816085,0.0572277,0.650596,0.786446,0.505322,0.549151,0.475143,0.15978,0.313971,0.747432,0.676146,0.912637,0.750823,0.0153255,1.40667e-05,0.510158,0.5376,0.295774,0.957709,0.146149,0.141872,0.988472,0.563604,0.915179,0.466307,0.708433,0.996998,0.188496,0.820777,0.513691,0.851396,0.583571,0.601707,0.111507,0.709729,0.0287443,0.811807,0.591883,0.111605,0.615291,0.0186456,0.347981,0.310175,0.287537,0.864362,0.876856,0.0331386,0.68314,0.237257,0.265029,0.731653,0.338883,0.443558,0.398201,0.983051,0.840248,0.607294,0.784552,0.0538058,0.513679,0.836893,0.610412,0.945261,0.902108,0.340905,0.0250955,0.541707,0.233189,0.189522,0.15187,0.967781,0.367817,0.272344,0.0274075,0.257349,0.854566,0.470328,0.874317,0.917024,0.0813864,0.029025,0.657619,0.843644,0.338061,0.759127,0.968556,0.835885,0.792629,0.0547528,0.679454,0.153497,0.0894853,0.570471,0.0844857,0.60567,0.723498,0.374288,0.425478,0.519552,0.309541,0.154474,0.67447,0.169311,0.366732,0.597256,0.660874,0.239398,0.0342874,0.3726,0.268338,0.829148,0.712517,0.340022,0.85612,0.0552041,0.387456,0.051623,0.846052,0.352718,0.391812,0.784635,0.173277,0.543307,0.993264,0.252473,0.872534,0.614726,0.244574,0.143847,0.256383,0.269186,0.10741,0.328266,0.096924,0.341754,0.797805,0.478548,0.926134,0.618695,0.107948,0.505552,0.338076,0.295498,0.270134,0.0780901,0.295993,0.877092,0.191417,0.10691,0.663148,0.329309,0.473018,0.741876,0.664274,0.721412,0.0532588,0.802187,0.024913,0.431839,0.945194,0.43059,0.8801,0.527549,0.648235,0.406368,0.20829,0.975184,0.548092,0.335801,0.947269,0.725394,0.941395,0.363323,0.190551,0.804108,0.0953946,0.665629,0.76572,0.654449,0.17985,0.937423,0.21704,0.53049,0.617649,0.590902,0.617518,0.480597,0.921938,0.509305,0.624832,0.0664064,0.825641,0.991853,0.611492,0.303392,0.37472,0.158469,0.752651,0.136957,0.514711,0.485762,0.583462,0.757302,0.523884,0.567967,0.816958,0.241881,0.893441,0.732694,0.844951,0.423919,0.58752,0.642051,0.654871,0.499722,0.475661,0.937701,0.736126,0.153911,0.664726,0.0284318,0.544489,0.458045,0.528307,0.984811,0.671936,0.405677,0.679452,0.876864,0.803682,0.361886,0.548094,0.0383597,0.363796,0.297907,0.370213,0.269668,0.765904,0.518611,0.815934,0.97051,0.680472,0.409355,0.233923,0.568927,0.371474,0.0605484,0.167746,0.165459,0.834401,0.601488,0.502291,0.565979,0.919077,0.997499,0.952389,0.667139,0.987454,0.66227,0.473625,0.282305,0.589989,0.472357,0.90553,0.888877,0.200561,0.818107,0.895539,0.329166,0.04184,0.718027,0.266526,0.649448,0.115471,0.182793,0.38396,0.060471,0.850877,0.243602,0.945172,0.277238,0.290816,0.938521,0.854047,0.499538,0.672585,0.452656,0.283407,0.448114,0.728188,0.514393,0.684436,0.70422,0.894211,0.0379184,0.74703,0.303398,0.799298,0.840576,0.617148,0.207673,0.115684,0.761616,0.232645,0.878053,0.822885,0.210386,0.0487945,0.665418,0.956059,0.295942,0.361483,0.708927,0.791237,0.126649,0.597235,0.41469,0.511396,0.0868094,0.147759,0.170572,0.0845729,0.719995,0.151208,0.984015,0.331969,0.117826,0.875705,0.757463,0.550303,0.773947,0.761522,0.38847,0.182251,0.850949,0.00633073,0.951994,0.997134,0.509731,0.161977,0.62554,0.885722,0.227565,0.974583,0.79866,0.679172,0.226596,0.954104,0.256187,0.534982,0.38384,0.899286,0.715673,0.721024,0.753164,0.0971709,0.04293,0.0353,0.7134,0.680836,0.669938,0.255506,0.787973,0.660683,0.72219,0.0219415,0.323132,0.147412,0.735316,0.98584,0.717527,0.0415586,0.481411,0.575795,0.834551,0.904415,0.315992,0.255033,0.718883,0.779275,0.206796,0.199338,0.258835,0.911436,0.578472,0.100926,0.6426,0.375935,0.234321,0.159326,0.116567,0.305725,0.819996,0.754162,0.462173,0.576198,0.963241,0.908962,0.788265,0.26147,0.47452,0.0885363,0.352115,0.710483,0.433341,0.994552,0.318884,0.522054,0.912917,0.362093,0.999115,0.779249,0.942366,0.127711,0.126504,0.11473,0.913117,0.885986,0.48988,0.687948,0.260108,0.195734,0.296924,0.311651,0.347615,0.801976,0.773834,0.26973,0.263648,0.177339,0.60224,0.174707,0.946847,0.481068,0.708985,0.502156,0.0795822,0.0825765,0.900562,0.275967,0.2074,0.156331,0.429273,0.0914353,0.521872,0.148072,0.785507,0.752735,0.541321,0.0198932,0.301605,0.255899,0.639592,0.135999,0.195896,0.683026,0.703221,0.4639,0.111859,0.554697,0.579194,0.553293,0.216623,0.29567,0.363617,0.324198,0.542875,0.120258,0.926919,0.948198,0.764438,0.984634,0.618169,0.859499,0.185994,0.415354,0.802002,0.053197,0.0295513,0.502422,0.338715,0.211918,0.577813,0.199529,0.455464,0.426606,0.885836,0.925535,0.279608,0.372413,0.222931,0.665537,0.834976,0.893025,0.228944,0.383427,0.97913,0.536125,0.924327,0.751169,0.680871,0.35526,0.534133,0.359827,0.908256,0.944433,0.773243,0.803733,0.688818,0.867923,0.390888,0.16454,0.614129,0.862321,0.0175541,0.333148,0.952846,0.608837,0.868681,0.595141,0.729401,0.945213,0.677402,0.528534,0.824505,0.184338,0.321404,0.398034,0.603692,0.252363,0.936451,0.904801,0.175951,0.756307,0.330315,0.245303,0.0042147,0.00163162,0.211812,0.707665,0.945206,0.856907,0.555939,0.562452,0.263658,0.0540448,0.0574497,0.45107,0.260837,0.425259,0.00649029,0.0394819,0.399385,0.096486,0.0898085,0.0642602,0.719269,0.921941,0.148778,0.781065,0.353186,0.905093,0.752479,0.472343,0.116475,0.256811,0.183676,0.149363,0.944818,0.782812,0.763893,0.018144,0.109833,0.205104,0.491774,0.897122,0.802013,0.943411,0.978047,0.0503826,0.446915,0.432429,0.382006,0.468754,0.435693,0.400898,0.617176,0.628972,0.262488,0.561518,0.66664,0.841067,0.00762671,0.759267,0.806326,0.876915,|0.290056,0.303658,0.262798,0.0920572,0.122796,0.907079,0.781123,0.283018,0.86628,0.515668,0.996023,0.176961,0.537595,0.0960132,0.0854341,0.644915,0.962529,0.882869,0.930093,0.210998,0.997363,0.707632,0.665814,0.00626343,0.524402,0.408779,0.284894,0.766913,0.261691,0.0161265,0.524095,0.102255,0.999768,0.618594,0.0873107,0.319232,0.346548,0.921318,0.0492609,0.791365,0.666018,0.0710794,0.781126,0.566986,0.118938,0.00528389,0.363542,0.76545,0.355714,0.92486,0.298895,0.286996,0.403228,0.385572,0.707991,0.689551,0.0446837,0.150481,0.340354,0.810318,0.384934,0.629191,0.824217,0.105949,0.351544,0.0424024,0.462306,0.302736,0.330912,0.929377,0.992666,0.720972,0.625899,0.69174,0.639035,0.334547,0.949237,0.775373,0.221719,0.570354,0.990113,0.897832,0.37918,0.871062,0.636342,0.104395,0.0927163,0.737514,0.809251,0.095019,0.165752,0.840769,0.495774,0.244852,0.396277,0.168491,0.0648677,0.780232,0.783056,0.968872,0.745276,0.791609,0.27382,0.530478,0.995513,0.245155,0.0691599,0.805128,0.915489,0.477789,0.231217,0.511422,0.747634,0.707375,0.0509667,0.313491,0.462373,0.64958,0.525039,0.771901,0.332956,0.690845,0.840361,0.95309,0.921066,0.490111,0.752318,0.0839359,0.539824,0.794648,0.779743,0.472571,0.234037,0.00754797,0.824661,0.784864,0.376167,0.276662,0.344843,0.131407,0.0534638,0.0935013,0.00041616,0.33869,0.357085,0.589322,0.0742804,0.387304,0.903483,0.671029,0.654911,0.148618,0.00786573,0.224964,0.172691,0.819548,0.801977,0.991135,0.714386,0.56194,0.742366,0.947275,0.630983,0.893196,0.0548195,0.057077,0.788566,0.303902,0.506254,0.93205,0.998125,0.667314,0.152587,0.100977,0.972483,0.266796,0.337628,0.131792,0.869075,0.460631,0.26179,0.911307,0.661405,0.689141,0.0699861,0.256059,0.461955,0.768647,0.43824,0.807907,0.483024,0.227018,0.550978,0.1147,0.362582,0.336707,0.937541,0.654804,0.899877,0.385621,0.160218,0.778155,0.762072,0.651467,0.203029,0.285379,0.70397,0.540069,0.939935,0.535264,0.653627,0.336931,0.150438,0.524457,0.372842,0.528028,0.442292,0.00434929,0.428181,0.0720169,0.0502144,0.289582,0.502855,0.409856,0.858032,0.833562,0.464123,0.809262,0.412473,0.908507,0.553996,0.071305,0.213875,0.68097,0.926533,0.212995,0.380878,0.751464,0.847339,0.17484,0.968149,0.146148,0.677075,0.0568089,0.607578,0.271348,0.703688,0.797414,0.148582,0.158142,0.224472,0.442577,0.828276,0.748544,0.997716,0.875334,0.557717,0.64859,0.061568,0.155947,0.881889,0.0515426,0.622987,0.594157,0.936351,0.74152,0.935034,0.849593,0.621833,0.259474,0.0809671,0.918037,0.227312,0.869466,0.4322,0.685442,0.20162,0.852155,0.218298,0.751705,0.742988,0.79558,0.628795,0.919839,0.883966,0.269928,0.039732,0.284374,0.658547,0.0520706,0.769514,0.675474,0.673919,0.0231096,0.538373,0.709865,0.0771218,0.375411,0.361526,0.952687,0.365079,0.768216,0.900415,0.559566,0.623648,0.96968,0.349169,0.565461,0.288837,0.252338,0.362907,0.162631,0.020209,0.412301,0.230604,0.111754,0.121801,0.488091,0.311448,0.0689808,0.738024,0.430146,0.451492,0.191396,0.347602,0.781637,0.913212,0.177941,0.72498,0.623373,0.168133,0.815525,0.531437,0.0888377,0.993483,0.499615,0.0673208,0.760377,0.276726,0.0455483,0.239293,0.120088,0.724324,0.563467,0.955645,0.0639978,0.51706,0.23181,0.94302,0.851276,0.814742,0.0651755,0.581003,0.240213,0.120267,0.156501,0.5917,0.993049,0.14218,0.872575,0.285535,0.398511,0.911956,0.938438,0.327754,0.664271,0.117162,0.130126,0.0586025,0.253838,0.0415037,0.646768,0.0727339,0.00867301,0.188077,0.852129,0.974558,0.321871,0.666618,0.526697,0.558061,0.795719,0.00261885,0.015856,0.22252,0.44685,0.292578,0.671949,0.989859,0.70426,0.132043,0.708826,0.567083,0.636155,0.74413,0.590803,0.557006,0.259349,0.944108,0.23913,0.135492,0.502376,0.912969,0.613347,0.817854,0.139918,0.564296,0.110019,0.665638,0.683115,0.730072,0.00657463,0.956454,0.0557004,0.0241345,0.140165,0.0622777,0.95734,0.354868,0.4903,0.107567,0.0867679,0.253403,0.957542,0.564905,0.435515,0.600753,0.969871,0.740555,0.337458,0.648203,0.32529,0.955104,0.684413,0.343422,0.255893,0.325025,0.049458,0.718183,0.52725,0.902971,0.624349,0.0464787,0.479121,0.346304,0.0436444,0.175746,0.665556,0.0646853,0.957136,0.691919,0.0873688,0.507772,0.0999777,0.966288,0.666452,0.214475,0.968981,0.66591,0.711457,0.344213,0.502178,0.762896,0.565787,0.68037,0.253227,0.0552917,0.994293,0.0196554,0.437331,0.299342,0.708665,0.654113,0.438967,0.346952,0.89428,0.680152,0.383171,0.961159,0.398225,0.34778,0.745469,0.84035,0.858249,0.558452,0.260073,0.48553,0.79851,0.987122,0.0736595,0.97291,0.0770199,0.518858,0.363921,0.102106,0.420168,0.346448,0.730744,0.0855556,0.010559,0.323873,0.32062,0.420439,0.810632,0.385727,0.996481,0.257378,0.813973,0.234305,0.289715,0.519337,0.115668,0.174156,0.93133,0.146656,0.883223,0.389466,0.995733,0.202577,0.654541,0.755199,0.385023,0.260282,0.599048,0.947211,0.0573838,0.866321,0.902396,0.893752,0.882775,0.408472,0.134217,0.997167,0.663665,0.960119,0.546907,0.569635,0.626078,0.653273,0.843223,0.170949,0.0706068,0.0914436,0.368374,0.932727,0.793742,0.987805,0.584609,0.0995888,0.29839,0.275114,0.856033,0.337711,0.402777,0.317337,0.356418,0.377156,0.291332,0.0245062,0.421719,0.102395,0.289717,0.488377,0.407433,0.159043,0.543042,0.481085,0.516605,0.805763,0.197523,0.187951,0.468012,0.911328,0.40286,0.0363414,0.945363,0.543884,0.586325,0.849682,0.913611,0.559111,0.729768,0.291167,0.564487,0.538384,0.801247,0.591453,0.721862,0.299768,0.140277,0.251368,0.499608,0.609028,0.996257,0.727861,0.110392,0.264166,0.14354,0.270826,0.531592,0.658778,0.85363,0.140561,0.594988,0.105781,0.734915,0.976184,0.55772,0.085086,0.660698,0.45437,0.910622,0.0815409,0.833398,0.638284,0.246122,0.112774,0.232275,0.970252,0.746949,0.0886894,0.358831,0.854507,0.617317,0.230644,0.238351,0.872386,0.681405,0.795435,0.684295,0.173302,0.420386,0.823414,0.590308,0.49179,0.629605,0.440259,0.350991,0.895823,0.801226,0.684609,0.134385,0.709847,0.455601,0.69173,0.423038,0.308674,0.683412,0.513738,0.380488,0.740538,0.956223,0.176984,0.184404,0.956836,0.345227,0.421898,0.35897,0.758112,0.421522,0.0362507,0.362915,0.532267,0.162394,0.966859,0.814865,0.305963,0.672889,0.467618,0.622554,0.580863,0.914996,0.921505,0.132888,0.690074,0.919128,0.564561,0.506643,0.619477,0.971079,0.76497,0.142009,0.875211,0.475666,0.915452,0.52574,0.621363,0.88228,0.202748,0.984256,0.931114,0.234454,0.430495,0.977749,0.0762962,0.267104,0.738944,0.980729,0.899255,0.0559891,0.284166,0.251886,0.595394,0.32977,0.258519,0.318521,0.186941,0.248156,0.841647,0.900319,0.847618,0.302522,0.46584,0.321981,0.629045,0.889015,0.395976,0.786124,0.267871,0.215619,0.51607,0.252733,0.908786,0.826689,0.772798,0.669451,0.781081,0.542036,0.803074,0.815776,0.995844,0.347233,0.080741,0.694234,0.13012,0.459701,0.31547,0.421946,0.177514,0.425352,0.881282,0.572827,0.525315,0.872678,0.352926,0.658785,0.943334,0.624694,0.159995,0.911756,0.582457,0.535167,0.113046,0.336231,0.066458,0.517916,0.865002,0.775983,0.298334,0.366108,0.661818,0.0386872,0.488494,0.836959,0.597249,0.155979,0.302485,0.837109,0.650221,0.60691,0.449896,0.683402,0.497487,0.390426,0.39187,0.252734,0.908687,0.772244,0.216398,0.875324,0.249784,0.52826,0.928215,0.351529,0.700761,0.272794,0.297171,0.542621,0.53489,0.785992,0.00989264,0.747031,0.284431,0.853467,0.935122,0.864834,0.103981,0.369033,0.190442,0.464634,0.207625,0.123397,0.934734,0.0121467,0.149092,0.888165,0.754981,0.227668,0.830408,0.694709,0.323758,0.0816689,0.840384,0.37259,0.50977,0.0626162,0.236967,0.67477,0.936973,0.283376,0.654731,0.23811,0.649479,0.0234186,0.492129,0.73124,0.810033,0.539681,0.575191,0.384256,0.775038,0.934482,0.378243,0.117046,0.356234,0.961538,0.205352,0.966168,0.866976,0.653769,0.495211,0.696514,0.123336,0.191183,0.149229,0.41941,0.84782,0.878462,0.518756,0.601126,0.537483,0.0178648,0.502806,0.512223,0.0576105,0.372536,0.417179,0.80475,0.0259078,0.0263882,0.114738,0.0636023,0.869258,0.603636,0.823387,0.341286,0.641542,0.377908,0.719354,0.388767,0.408309,0.29064,0.640547,0.453245,0.525713,0.212545,0.446197,0.209741,0.676283,0.613186,0.316742,0.126529,0.776205,0.193994,0.654952,0.979695,0.159421,0.64387,0.850471,0.382605,0.53723,0.212156,0.809205,0.454385,0.613318,0.358935,0.121135,0.69392,0.105071,0.470985,0.531578,0.424685,0.283795,0.22452,0.629593,0.998668,0.323585,0.120793,0.463868,0.847361,0.863306,0.825749,0.0483168,0.586428,0.727819,0.237177,0.531922,0.0454024,0.932829,0.0736121,0.0187637,0.0488729,0.452314,0.949478,0.389905,0.460169,0.0540119,0.0693935,0.146852,0.568819,0.745681,0.168674,0.0847582,0.508773,0.17946,0.67865,0.420419,0.43895,0.411202,0.848135,0.0432242,0.229112,0.412826,0.702279,0.800701,0.712106,0.0943041,0.215394,0.810003,0.395558,0.824168,0.441848,0.613618,0.323722,0.691818,0.0764034,0.885612,0.114818,0.960877,0.895172,0.0631651,0.231737,0.712954,0.679671,0.605198,0.917532,0.0854675,0.411247,0.995044,0.639676,0.211122,0.943114,0.066825,0.226005,0.464368,0.394573,0.100982,0.48946,0.787868,0.981274,0.51478,0.388487,0.928742,0.966914,0.222861,0.37769,0.492067,0.109742,0.432648,0.0457045,0.440223,0.385292,0.0139577,0.199838,0.541057,0.180252,0.33688,0.467005,0.884164,0.901784,|0.974214,0.711162,0.135992,0.572342,0.292665,0.366473,0.255222,0.302461,0.0308446,0.790878,0.704397,0.445293,0.973066,0.415188,0.883625,0.817805,0.621978,0.148204,0.566968,0.986573,0.953675,0.441698,0.059322,0.609584,0.990799,0.217115,0.0751303,0.789355,0.108038,0.609365,0.586776,0.381921,0.0388781,0.222703,0.775844,0.211839,0.769697,0.305409,0.3932,0.915472,0.562709,0.314839,0.483776,0.566022,0.378974,0.319251,0.169829,0.488871,0.691873,0.568259,0.0416411,0.810272,0.932931,0.516327,0.374553,0.212,0.258771,0.737906,0.320979,0.6569,0.246286,0.716447,0.402698,0.377629,0.916366,0.499053,0.646932,0.65579,0.411795,0.100036,0.471797,0.549043,0.361804,0.91845,0.614549,0.00955433,0.559075,0.123227,0.374418,0.691585,0.228192,0.620319,0.199766,0.138067,0.179705,0.61771,0.644506,0.680304,0.916947,0.856817,0.119032,0.291732,0.0837826,0.750548,0.457818,0.27895,0.0907147,0.671901,0.907161,0.0700833,0.722418,0.0975499,0.805661,0.715169,0.49262,0.827148,0.0817724,0.845429,0.159203,0.194128,0.869638,0.202574,0.143033,0.310478,0.563235,0.20924,0.308744,0.248249,0.929681,0.890477,0.552459,0.29934,0.619059,0.297355,0.056318,0.641379,0.947875,0.647384,0.53666,0.272725,0.230598,0.316514,0.43455,0.656455,0.225187,0.520105,0.754995,0.0441867,0.780515,0.655735,0.35161,0.401759,0.186708,0.794469,0.81872,0.817148,0.386346,0.682906,0.367375,0.08347,0.368864,0.246713,0.677958,0.163325,0.204495,0.24861,0.728749,0.00150824,0.525304,0.229013,0.674547,0.212014,0.148134,0.292841,0.310336,0.682361,0.752825,0.374179,0.521526,0.437962,0.924993,0.103178,0.568972,0.0617597,0.441078,0.622817,0.425129,0.172422,0.852363,0.892944,0.361097,0.193261,0.724232,0.928276,0.164621,0.725115,0.62018,0.542127,0.311443,0.628108,0.302753,0.569859,0.634593,0.390746,0.103541,0.0963874,0.157706,0.669417,0.0746369,0.505288,0.787403,0.515881,0.433929,0.0991107,0.387055,0.271643,0.0327688,0.483101,0.356977,0.618435,0.503553,0.0729747,0.519338,0.939951,0.130899,0.334801,0.398501,0.96631,0.0357183,0.315772,0.908425,0.170054,0.495482,0.370149,0.418802,0.120968,0.495996,0.637104,0.0415998,0.609965,0.533597,0.210092,0.0391157,0.0201644,0.231265,0.77544,0.0167682,0.71594,0.614246,0.768536,0.189787,0.36482,0.938994,0.477462,0.250373,0.0457323,0.567529,0.763772,0.405455,0.0936503,0.990475,0.722431,0.0225183,0.277735,0.0944175,0.726827,0.928982,0.957157,0.346582,0.933037,0.460358,0.0323283,0.073302,0.243442,0.758408,0.038501,0.446215,0.709866,0.306712,0.890499,0.789585,0.974832,0.253857,0.600909,0.516306,0.0776399,0.151952,0.0250692,0.131298,0.410858,0.900514,0.96898,0.180293,0.220374,0.113632,0.343608,0.443582,0.804713,0.923684,0.706458,0.557319,0.590516,0.804924,0.476962,0.953687,0.803246,0.136743,0.828324,0.208683,0.359773,0.343904,0.851046,0.0192816,0.11657,0.110094,0.40789,0.733336,0.713898,0.250097,0.339603,0.173213,0.000626862,0.406625,0.524621,0.460264,0.839334,0.0011121,0.820993,0.836207,0.744291,0.487257,0.0554586,0.228852,0.672914,0.137922,0.841182,0.819528,0.675039,0.189552,0.148428,0.0592313,0.75947,0.606484,0.993383,0.504361,0.998021,0.225083,0.279847,0.29307,0.0995652,0.623726,0.718311,0.723769,0.50075,0.096049,0.0593436,0.672294,0.570381,0.0581841,0.886281,0.226161,0.980195,0.151486,0.218418,0.0975726,0.191157,0.128718,0.0951383,0.574852,0.12455,0.216331,0.411283,0.68179,0.797854,0.0489605,0.540658,0.510703,0.460013,0.271415,0.415283,0.954869,0.698726,0.728097,0.407522,0.574421,0.15301,0.406208,0.883298,0.119473,0.2635,0.900019,0.4825,0.229984,0.730803,0.60849,0.607252,0.950264,0.0394392,0.145096,0.839492,0.358764,0.385573,0.214243,0.440109,0.063557,0.826332,0.581364,0.819331,0.513339,0.214723,0.6335,0.659358,0.354784,0.661975,0.687021,0.391672,0.233872,0.961073,0.971757,0.659892,0.494306,0.300227,0.69916,0.558157,0.992055,0.537791,0.510545,0.765393,0.811959,0.977791,0.676778,0.450929,0.00573856,0.935958,0.651527,0.901986,0.358293,0.0114821,0.906759,0.0765575,0.00491375,0.909133,0.848761,0.630668,0.352339,0.543653,0.347525,0.0188155,0.252428,0.852238,0.437088,0.749199,0.473139,0.738626,0.777031,0.516117,0.106008,0.304492,0.889824,0.0874014,0.979251,0.289227,0.867792,0.272284,0.348861,0.885006,0.622364,0.455417,0.518085,0.0485111,0.212711,0.495845,0.935989,0.567297,0.852646,0.162708,0.304579,0.449011,0.981151,0.679653,0.17058,0.194306,0.287317,0.601241,0.217893,0.96366,0.87374,0.2579,0.916686,0.128497,0.465775,0.509603,0.502963,0.277761,0.609509,0.436776,0.357358,0.583459,0.278155,0.120832,0.609328,0.179922,0.810123,0.631365,0.341108,0.1529,0.37685,0.492971,0.634227,0.394791,0.495903,0.356637,0.554897,0.855141,0.342221,0.936086,0.262927,0.977834,0.516214,0.0230664,0.312171,0.567005,0.506588,0.134693,0.429922,0.734976,0.203328,0.755792,0.717006,0.276467,0.74684,0.087781,0.245182,0.0449783,0.500413,0.542821,0.927664,0.0637159,0.504278,0.533383,0.938999,0.643354,0.0612308,0.288149,0.682397,0.538375,0.358226,0.282184,0.782343,0.612957,0.179726,0.0854112,0.254212,0.651419,0.382751,0.200444,0.139274,0.33756,0.0249831,0.328675,0.902792,0.547392,0.632414,0.706653,0.393685,0.479587,0.218755,0.29998,0.649844,0.457714,0.825547,0.823334,0.682092,0.159297,0.706671,0.277503,0.114815,0.404885,0.1944,0.566815,0.144565,0.940486,0.957993,0.106219,0.878927,0.582411,0.743776,0.923731,0.304825,0.840247,0.173355,0.349205,0.294963,0.785712,0.086839,0.337499,0.990772,0.191418,0.483007,0.671478,0.791695,0.881486,0.448486,0.39257,0.972179,0.334396,0.145161,0.845279,0.514524,0.837731,0.99993,0.565922,0.617023,0.791614,0.00213909,0.737827,0.153609,0.744475,0.111716,0.248715,0.108556,0.886406,0.62773,0.186476,0.181748,0.0891678,0.273404,0.358598,0.997606,0.806668,0.427643,0.123651,0.336698,0.348102,0.98521,0.452602,0.663829,0.154429,0.737525,0.200144,0.224516,0.0959455,0.358628,0.630831,0.461841,0.684214,0.994168,0.11406,0.127893,0.963427,0.76441,0.770842,0.998477,0.490658,0.57403,0.666236,0.409791,0.635158,0.664988,0.149275,0.763125,0.135323,0.910858,0.274787,0.991062,0.529351,0.773071,0.338426,0.976048,0.802609,0.560228,0.991148,0.365487,0.0463252,0.15093,0.729152,0.949954,0.777978,0.450601,0.0838278,0.161618,0.0191697,0.814554,0.748039,0.340598,0.47918,0.242465,0.468836,0.527298,0.611847,0.200001,0.788711,0.494853,0.0879746,0.408778,0.594418,0.322936,0.147578,0.216929,0.909258,0.641689,0.782377,0.207331,0.990917,0.620264,0.931987,0.870301,0.139791,0.1855,0.561222,0.852811,0.365864,0.0405169,0.806854,0.409186,0.481814,0.700775,0.918291,0.467885,0.957103,0.359989,0.605632,0.705723,0.00361222,0.0964327,0.656381,0.537616,0.343632,0.891084,0.50647,0.600196,0.630655,0.0761946,0.0420271,0.870227,0.156929,0.790291,0.266904,0.104572,0.00576121,0.185474,0.442147,0.825472,0.208579,0.837003,0.557433,0.254294,0.222231,0.111561,0.220774,0.547929,0.785164,0.197523,0.233467,0.858994,0.780688,0.561868,0.0195886,0.615807,0.808832,0.0896937,0.86389,0.901296,0.263678,0.138876,0.992969,0.714833,0.000711501,0.065725,0.614315,0.810322,0.0471541,0.1655,0.0204504,0.555808,0.180013,0.936433,0.907291,0.0222078,0.393439,0.0233634,0.725736,0.115822,0.917527,0.10809,0.463644,0.486385,0.711223,0.199748,0.0875441,0.812796,0.194157,0.667272,0.00262147,0.727842,0.395229,0.905901,0.989385,0.647329,0.837636,0.102726,0.141442,0.299999,0.355848,0.74333,0.692171,0.934555,0.0898697,0.429096,0.771868,0.589086,0.015182,0.659549,0.223115,0.681683,0.992318,0.903727,0.925751,0.912406,0.889094,0.538516,0.872846,0.596737,0.80968,0.528142,0.141225,0.792471,0.0219774,0.241936,0.923396,0.918555,0.316199,0.973573,0.474608,0.435687,0.069325,0.434663,0.298594,0.833892,0.588041,0.73159,0.492373,0.325364,0.00527942,0.197764,0.591259,0.870928,0.770972,0.868177,0.66901,0.0786126,0.471061,0.0860772,0.445465,0.975374,0.103327,0.0184616,0.988716,0.709746,0.820758,0.756732,0.399996,0.710463,0.927782,0.851576,0.312112,0.459216,0.558197,0.0211512,0.930977,0.961163,0.862141,0.836505,0.719303,0.690109,0.46337,0.486014,0.1498,0.507357,0.521783,0.398516,0.792391,0.76848,0.142283,0.640658,0.540234,0.944963,0.293953,0.908185,0.756434,0.0233615,0.168058,0.168583,0.770641,0.898346,0.214718,0.787985,0.0104663,0.604037,0.191781,0.752187,0.968476,0.68838,0.704952,0.783753,0.661022,0.80959,0.783251,0.0518724,0.994287,0.686492,0.0578657,0.616829,0.729616,0.418443,0.444175,0.0214073,0.311947,0.231348,0.915888,0.330448,0.484138,0.408591,0.535724,0.0778753,0.420406,0.585509,0.288433,0.0184928,0.513528,0.173078,0.27691,0.834389,0.33925,0.644199,0.999415,0.660354,0.246811,0.0244987,0.348573,0.018368,0.594607,0.499921,0.141043,0.58028,0.51322,0.179711,0.0243251,0.17754,0.412944,0.335482,0.730947,0.445511,0.385308,0.724302,0.535795,0.105352,0.819405,0.355112,0.742334,0.110296,0.724313,0.159526,0.528366,0.971594,0.394353,0.424661,0.422943,0.922936,0.263015,0.769091,0.17986,0.415495,0.917528,0.565324,0.728876,0.0649391,0.151733,0.879525,0.713791,0.654336,0.0897387,0.689888,0.255221,0.229359,0.967573,0.236875,0.761713,0.423306,0.102013,0.160686,0.355604,0.171352,0.948839,0.888131,0.956233,0.963503,0.488205,0.190368,0.616294,0.907796,0.820731,0.553644,0.873556,0.628873,0.168766,0.861157,0.200089,0.141668,0.579177,|0.169334,0.0933317,0.11585,0.397004,0.398986,0.731366,0.64856,0.592536,0.466521,0.997724,0.347988,0.786289,0.456867,0.959252,0.21624,0.0258785,0.247724,0.489885,0.798517,0.750039,0.513478,0.239883,0.140514,0.161412,0.838012,0.0335962,0.972868,0.0631819,0.865553,0.281066,0.418431,0.285293,0.190395,0.703662,0.303293,0.0333914,0.328281,0.0255372,0.501898,0.298102,0.223578,0.759618,0.228868,0.068126,0.741811,0.667703,0.889042,0.889093,0.976097,0.711824,0.369106,0.283947,0.812497,0.763932,0.367392,0.363894,0.615109,0.532891,0.182491,0.924501,0.576672,0.993618,0.111661,0.175461,0.605644,0.590985,0.38827,0.257851,0.893548,0.318309,0.170815,0.421685,0.886588,0.798814,0.966486,0.191412,0.958781,0.549652,0.765017,0.170498,0.889057,0.396765,0.37618,0.661251,0.131117,0.0371486,0.00205743,0.561002,0.928876,0.00992328,0.0128607,0.381088,0.0847625,0.0109989,0.847963,0.0937598,0.197088,0.447272,0.102827,0.864439,0.517751,0.947871,0.482892,0.594086,0.675342,0.593863,0.601501,0.88686,0.0836841,0.388353,0.395813,0.337574,0.00653219,0.193086,0.817656,0.570957,0.545478,0.510358,0.595002,0.919953,0.298353,0.903079,0.557489,0.961003,0.555928,0.0800267,0.400226,0.552968,0.395872,0.841772,0.822673,0.707347,0.57193,0.717981,0.694615,0.0334949,0.671317,0.268363,0.537671,0.354281,0.548398,0.663001,0.55933,0.465063,0.353751,0.193524,0.505106,0.999812,0.748676,0.435473,0.994168,0.459845,0.331657,0.198428,0.16283,0.576037,0.30856,0.528445,0.780757,0.337075,0.0482823,0.328615,0.581047,0.909566,0.760434,0.586429,0.596408,0.423385,0.587693,0.604686,0.390638,0.145582,0.742831,0.609858,0.0960726,0.832399,0.764455,0.825053,0.756158,0.840734,0.0238487,0.508243,0.718371,0.785529,0.876768,0.182864,0.728682,0.975624,0.872607,0.434701,0.878862,0.805922,0.593029,0.735688,0.944355,0.47408,0.373697,0.0807518,0.0923288,0.407383,0.71302,0.50054,0.383324,0.329576,0.997248,0.906584,0.859281,0.608699,0.740653,0.958417,0.456685,0.51212,0.133514,0.298071,0.522545,0.112632,0.172406,0.110892,0.256306,0.638377,0.188881,0.877294,0.185007,0.712433,0.539051,0.445548,0.226,0.528936,0.531076,0.845624,0.0879444,0.194156,0.213712,0.11001,0.533583,0.586969,0.860483,0.553383,0.257992,0.340126,0.317379,0.141889,0.661642,0.350688,0.810063,0.699915,0.0437477,0.401689,0.31297,0.731223,0.288561,0.206046,0.959867,0.180876,0.368427,0.486254,0.641038,0.367518,0.831576,0.555128,0.43909,0.164841,0.237922,0.545416,0.0770573,0.52763,0.824354,0.0641035,0.211932,0.704076,0.0944924,0.399035,0.833015,0.510363,0.286538,0.660847,0.92576,0.75023,0.889526,0.745629,0.328319,0.941349,0.0294757,0.428198,0.569765,0.840706,0.0122369,0.754895,0.0544167,0.501066,0.128199,0.944991,0.127115,0.927743,0.450258,0.373901,0.287487,0.928142,0.54057,0.814239,0.480066,0.405244,0.782651,0.769161,0.877976,0.058115,0.005795,0.28166,0.569608,0.243939,0.0839748,0.956147,0.643588,0.742551,0.1233,0.306986,0.681675,0.403691,0.143754,0.578395,0.265196,0.175071,0.243225,0.387499,0.652046,0.114421,0.648688,0.580369,0.311045,0.291484,0.854578,0.555572,0.569483,0.318225,0.514749,0.713458,0.679325,0.876997,0.695466,0.917655,0.692061,0.628433,0.261161,0.377287,0.929087,0.266597,0.855786,0.192129,0.192499,0.0910926,0.628911,0.554795,0.982021,0.706358,0.385823,0.210324,0.728387,0.994812,0.0399386,0.223764,0.445995,0.0834417,0.194055,0.303526,0.178863,0.750891,0.370316,0.26543,0.324654,0.0902727,0.0853999,0.444634,0.784159,0.693713,0.951502,0.651293,0.437497,0.208552,0.623406,0.575968,0.622789,0.546016,0.727132,0.113974,0.729138,0.474393,0.625676,0.646815,0.0822843,0.850672,0.0182648,0.171506,0.187375,0.71953,0.902004,0.676366,0.013741,0.585688,0.180171,0.874193,0.529766,0.926012,0.439289,0.547518,0.193787,0.258044,0.150749,0.0139278,0.570624,0.376182,0.310823,0.885888,0.110748,0.0628287,0.851549,0.864942,0.839916,0.966844,0.98832,0.106256,0.870348,0.515987,0.215324,0.974325,0.156292,0.489754,0.230865,0.687147,0.0853775,0.385132,0.98179,0.47211,0.523107,0.6517,0.206677,0.44918,0.641054,0.678118,0.095894,0.441877,0.79772,0.775015,0.195748,0.947543,0.103878,0.300772,0.74547,0.120438,0.122834,0.0615959,0.217086,0.620538,0.816953,0.268668,0.172021,0.361604,0.0033024,0.965678,0.520519,0.595344,0.331118,0.523344,0.61179,0.508076,0.325969,0.207631,0.107169,0.0756506,0.177651,0.118999,0.933364,0.188933,0.499916,0.182975,0.941019,0.176125,0.110656,0.614824,0.672472,0.0638663,0.303017,0.794368,0.751336,0.949591,0.505849,0.484158,0.603709,0.757435,0.663788,0.899287,0.739886,0.497508,0.148393,0.166709,0.129174,0.324387,0.103909,0.211921,0.0139027,0.618518,0.4211,0.345395,0.0690748,0.0251567,0.552893,0.623102,0.83059,0.0846296,0.193149,0.577746,0.854647,0.436336,0.953553,0.638552,0.476577,0.454142,0.258871,0.24747,0.563441,0.88487,0.698627,0.597246,0.898705,0.597155,0.706784,0.0231903,0.23997,0.0832895,0.999041,0.0819668,0.612348,0.751016,0.604092,0.346607,0.439128,0.552048,0.351252,0.805677,0.81434,0.235362,0.928316,0.452024,0.855103,0.373547,0.321818,0.900458,0.685341,0.895613,0.5717,0.759764,0.705939,0.355112,0.696746,0.436668,0.770507,0.209181,0.56393,0.522881,0.44509,0.243845,0.292154,0.376079,0.96583,0.212156,0.866258,0.0306833,0.906637,0.45103,0.581329,0.250466,0.284385,0.367485,0.268556,0.351873,0.178444,0.270008,0.977816,0.712778,0.965085,0.0295975,0.114204,0.537865,0.977675,0.410805,0.865782,0.0155761,0.136113,0.181729,0.538541,0.218301,0.939201,0.702056,0.986869,0.66033,0.697461,0.764545,0.146375,0.560674,0.254334,0.475461,0.279877,0.503764,0.984953,0.0241039,0.999537,0.267097,0.17245,0.477497,0.178168,0.905372,0.795831,0.251485,0.629584,0.650182,0.377783,0.550877,0.73788,0.101908,0.560072,0.192589,0.286271,0.379115,0.885751,0.991037,0.729094,0.903733,0.650297,0.982813,0.28487,0.930441,0.801443,0.952056,0.923223,0.876748,0.838032,0.295069,0.509003,0.471652,0.26556,0.837241,0.624574,0.902133,0.697121,0.068967,0.798416,0.375855,0.665703,0.344608,0.456891,0.0214256,0.778275,0.983877,0.807375,0.733531,0.621381,0.0480375,0.43063,0.934075,0.285544,0.110606,0.0399403,0.466821,0.12156,0.370373,0.834873,0.546206,0.064989,0.45657,0.0946479,0.0199919,0.553811,0.501263,0.249978,0.521421,0.529366,0.825753,0.39694,0.507316,0.380917,0.396805,0.847155,0.494344,0.70485,0.751891,0.667654,0.981964,0.240834,0.184097,0.71448,0.296251,0.0527772,0.65136,0.199616,0.741132,0.629846,0.206457,0.863136,0.43741,0.961642,0.728319,0.953084,0.0856625,0.889204,0.00164241,0.857302,0.161917,0.402499,0.957522,0.139236,0.646929,0.962968,0.836544,0.809619,0.272723,0.0111401,0.849046,0.74967,0.187436,0.775396,0.725507,0.646615,0.525814,0.0825296,0.245274,0.0510357,0.266315,0.373146,0.608546,0.17967,0.439585,0.511351,0.0699935,0.941705,0.497087,0.762861,0.0316103,0.651996,0.228838,0.536644,0.3039,0.760408,0.699372,0.199559,0.0610338,0.708986,0.744632,0.827783,0.591832,0.653725,0.204522,0.225618,0.249706,0.806499,0.0812995,0.251097,0.503216,0.306634,0.1752,0.401495,0.767117,0.821667,0.898923,0.271801,0.280338,0.0386504,0.104208,0.386486,0.626831,0.448227,0.412645,0.10165,0.134765,0.467052,0.350992,0.813555,0.942537,0.0936725,0.952079,0.738947,0.016895,0.749018,0.670752,0.396879,0.422952,0.774052,0.693762,0.984022,0.251442,0.506921,0.972817,0.315183,0.545496,0.994569,0.813664,0.609355,0.403436,0.839264,0.610682,0.393128,0.306562,0.582681,0.561654,0.410406,0.471087,0.648753,0.546033,0.325168,0.220339,0.811429,0.246404,0.810978,0.110434,0.207867,0.635104,0.945799,0.916425,0.462326,0.480439,0.862696,0.717504,0.978812,0.901533,0.828381,0.0117729,0.85383,0.0949793,0.779626,0.931461,0.269276,0.705358,0.889234,0.137087,0.254381,0.603441,0.424695,0.377373,0.881009,0.332667,0.436779,0.939317,0.234014,0.993379,0.792625,0.974571,0.938647,0.349926,0.133455,0.455093,0.872632,0.950005,0.753072,0.316245,0.691189,0.756675,0.420501,0.961615,0.973554,0.568785,0.231806,0.545541,0.920953,0.414233,0.726922,0.347792,0.345071,0.999258,0.111509,0.235524,0.361596,0.19241,0.169427,0.970667,0.937333,0.583042,0.156811,0.327966,0.544534,0.754886,0.557503,0.234156,0.296537,0.897304,0.297638,0.503975,0.815044,0.015422,0.784483,0.786216,0.29261,0.809588,0.00963748,0.60091,0.379719,0.794527,0.569791,0.260679,0.0638333,0.697507,0.321074,0.407526,0.402075,0.494434,0.339414,0.974453,0.392938,0.166991,0.144077,0.571598,0.280702,0.70387,0.0513735,0.234014,0.792133,0.462677,0.694403,0.269801,0.651852,0.896932,0.392364,0.913768,0.223456,0.377359,0.29984,0.823188,0.684252,0.789985,0.799901,0.138929,0.814086,0.105985,0.467352,0.50482,0.425399,0.664703,0.832051,0.376673,0.77519,0.558518,0.510436,0.468275,0.202383,0.258794,0.283625,0.915862,0.987262,0.0313569,0.380108,0.392151,0.593145,0.567244,0.537781,0.499111,0.222243,0.41373,0.246935,0.090299,0.787445,0.219746,0.383943,0.696349,0.725779,0.416099,0.990972,0.0628635,0.77099,0.00810069,0.959591,0.986707,0.563751,0.142037,0.814033,0.679932,0.632089,0.974812,0.45167,0.836205,0.857154,0.0235667,0.19584,0.262384,0.210772,0.527991,0.235736,0.801481,0.0566646,0.146615,0.14476,0.371956,0.777747,0.984836,0.326023,0.733862,0.843373,0.286436,0.544273,0.97706,0.809951,0.369145,0.90159,0.0271109,|0.696078,0.340989,0.521817,0.397906,0.793331,0.811041,0.549532,0.464533,0.925013,0.161406,0.345959,0.495828,0.642078,0.759902,0.584241,0.984167,0.118048,0.761362,0.939602,0.856904,0.139732,0.886014,0.915346,0.895103,0.0449052,0.984336,0.922854,0.304411,0.718669,0.517208,0.0585138,0.408854,0.899456,0.26664,0.77992,0.068072,0.0609306,0.622062,0.888926,0.677802,0.762185,0.328031,0.343171,0.582876,0.640538,0.299227,0.543508,0.0330507,0.725023,0.201117,0.30829,0.499296,0.259354,0.999005,0.0616472,0.763489,0.785466,0.457114,0.459621,0.750934,0.116484,0.719801,0.26523,0.719196,0.684195,0.244403,0.880971,0.756064,0.481417,0.630095,0.888813,0.644576,0.956202,0.79457,0.416754,0.428288,0.0615327,0.999657,0.0145237,0.502382,0.284512,0.61005,0.109273,0.892054,0.810553,0.72929,0.978601,0.13577,0.540555,0.860934,0.0835665,0.255075,0.431277,0.0668543,0.0927815,0.504137,0.152419,0.396027,0.31327,0.659708,0.885107,0.917632,0.362867,0.932787,0.116907,0.679304,0.895799,0.379713,0.534014,0.796381,0.403099,0.727123,0.705272,0.698225,0.872238,0.599125,0.427206,0.116394,0.443484,0.368748,0.512083,0.328904,0.0463206,0.462989,0.385845,0.0621197,0.629902,0.796137,0.763087,0.174113,0.376113,0.509057,0.862581,0.458941,0.0338146,0.366493,0.886199,0.578744,0.0688199,0.774553,0.0828277,0.535685,0.566819,0.507931,0.725477,0.342138,0.0855147,0.426754,0.00760674,0.0254382,0.577868,0.0884774,0.954645,0.777438,0.0343603,0.146944,0.488481,0.69629,0.0026052,0.700752,0.526354,0.431414,0.5038,0.222424,0.915572,0.971552,0.725551,0.46015,0.744991,0.101232,0.47491,0.341372,0.91436,0.727469,0.153109,0.139002,0.68807,0.590699,0.698239,0.73723,0.0665326,0.910242,0.659215,0.536237,0.993736,0.36663,0.0813926,0.818039,0.773582,0.160894,0.00687063,0.0677221,0.130697,0.259979,0.564276,0.740241,0.686155,0.56509,0.39871,0.869314,0.258654,0.737636,0.630599,0.841453,0.660502,0.777715,0.593224,0.183768,0.143117,0.815691,0.590461,0.184376,0.770749,0.244949,0.498027,0.160996,0.153553,0.651736,0.22043,0.192662,0.9409,0.193713,0.322582,0.812711,0.917202,0.583583,0.83518,0.317222,0.907559,0.984926,0.582546,0.881079,0.259768,0.534017,0.746484,0.26459,0.492622,0.891563,0.394587,0.574024,0.0340383,0.639139,0.30447,0.502323,0.017058,0.295877,0.674696,0.618503,0.578272,0.99945,0.400759,0.202149,0.942123,0.620866,0.848248,0.830171,0.460413,0.0416069,0.0744396,0.176548,0.20141,0.330723,0.454479,0.774569,0.927142,0.882402,0.361363,0.476182,0.396748,0.405353,0.571141,0.189879,0.461736,0.93112,0.683147,0.918803,0.258233,0.972486,0.24206,0.726281,0.316543,0.466559,0.549856,0.512202,0.660933,0.0537447,0.322158,0.840383,0.676947,0.524667,0.100497,0.395227,0.851836,0.241813,0.589913,0.121812,0.989212,0.141848,0.260991,0.913923,0.866439,0.416862,0.920482,0.236241,0.935572,0.951882,0.48885,0.846118,0.538193,0.994901,0.00672901,0.890266,0.677176,0.477702,0.537961,0.594367,0.751019,0.434337,0.987711,0.746447,0.356547,0.884662,0.249566,0.0863987,0.35507,0.3157,0.289275,0.921302,0.0518724,0.367924,0.411493,0.99638,0.324863,0.784494,0.0119575,0.170601,0.121349,0.873556,0.618434,0.643047,0.0881095,0.469592,0.0492545,0.709787,0.101599,0.751328,0.21514,0.901255,0.364533,0.487714,0.447433,0.696918,0.348128,0.344534,0.926117,0.499508,0.62903,0.491266,0.461243,0.516626,0.550138,0.352535,0.988582,0.766565,0.222009,0.519019,0.218482,0.848201,0.510826,0.333427,0.24109,0.962219,0.106958,0.737202,0.793475,0.567576,0.36117,0.398573,0.762314,0.96169,0.862479,0.117762,0.958424,0.555832,0.0429581,0.768337,0.685873,0.92573,0.601874,0.0718787,0.821397,0.724596,0.975508,0.453567,0.743849,0.45073,0.986022,0.493374,0.265787,0.331423,0.252986,0.823566,0.0759597,0.165543,0.115967,0.0102585,0.594099,0.796981,0.838379,0.66042,0.605666,0.809496,0.166322,0.583248,0.382429,0.256263,0.053871,0.0778232,0.271353,0.818304,0.186569,0.717844,0.281207,0.916029,0.2316,0.875115,0.281253,0.147375,0.438237,0.317156,0.240366,0.670253,0.382536,0.263362,0.897938,0.482772,0.289515,0.453314,0.331106,0.583835,0.63369,0.526894,0.0217883,0.00782788,0.198901,0.917436,0.443534,0.154726,0.476087,0.458137,0.285504,0.0135673,0.312239,0.35139,0.722179,0.153422,0.291875,0.854382,0.582892,0.643496,0.174702,0.616748,0.171402,0.653568,0.493626,0.837948,0.650042,0.235312,0.104549,0.296293,0.0744357,0.460466,0.436033,0.134752,0.163933,0.547766,0.655835,0.286062,0.194566,0.642934,0.821646,0.303699,0.626735,0.448787,0.57942,0.125633,0.43251,0.0433027,0.686236,0.889029,0.882088,0.740178,0.667948,0.639937,0.30786,0.868676,0.953584,0.379735,0.611338,0.34212,0.930374,0.280767,0.700745,0.322879,0.00682211,0.831713,0.193866,0.0620303,0.401672,0.641023,0.782483,0.799948,0.16781,0.130501,0.528021,0.967413,0.250584,0.838285,0.47105,0.0970939,0.0653346,0.904652,0.797986,0.455814,0.494242,0.185899,0.696854,0.380494,0.32514,0.462675,0.233412,0.35258,0.205817,0.0625392,0.30797,0.110745,0.717698,0.620553,0.997125,0.639604,0.76499,0.247054,0.148568,0.424164,0.616719,0.489378,0.195714,0.575931,0.314661,0.0944332,0.5188,0.757633,0.7701,0.927729,0.66493,0.581978,0.0601349,0.835953,0.785301,0.320924,0.550965,0.645176,0.281615,0.779207,0.716092,0.0367412,0.515881,0.71724,0.485173,0.736183,0.0251834,0.227837,0.858399,0.974407,0.691952,0.953092,0.356278,0.691101,0.788857,0.331926,0.502229,0.476493,0.665588,0.634862,0.83672,0.867889,0.115375,0.663295,0.249632,0.318124,0.715841,0.76593,0.678319,0.414141,0.204296,0.816286,0.0653513,0.624119,0.433426,0.344086,0.82091,0.941143,0.572595,0.229262,0.0274142,0.697793,0.0368629,0.392238,0.980619,0.740388,0.0915846,0.944236,0.93705,0.428118,0.845765,0.608134,0.491954,0.17588,0.242621,0.119875,0.0181425,0.0334218,0.94453,0.184374,0.0534297,0.528332,0.945574,0.0924753,0.682022,0.166725,0.323141,0.781566,0.0752001,0.813594,0.028191,0.358449,0.0893542,0.547793,0.816779,0.884721,0.725341,0.0580553,0.876176,0.602695,0.270173,0.574236,0.0479492,0.635114,0.917546,0.858002,0.549438,0.157151,0.055661,0.64331,0.614087,0.988875,0.890159,0.878478,0.391929,0.42714,0.6462,0.0583155,0.789386,0.179519,0.218493,0.753903,0.331497,0.464896,0.215784,0.891046,0.470123,0.00517064,0.57229,0.199744,0.407657,0.708478,0.0109209,0.501809,0.972805,0.0355619,0.216436,0.991407,0.798863,0.0480326,0.639202,0.290311,0.410407,0.915739,0.17689,0.0230622,0.944405,0.0413724,0.849126,0.00993145,0.961524,0.271458,0.901566,0.955822,0.0277912,0.881495,0.903393,0.640563,0.167204,0.545874,0.522747,0.507983,0.85262,0.190845,0.674382,0.598227,0.099833,0.709366,0.857081,0.143662,0.749533,0.595392,0.0075956,0.370225,0.148845,0.393041,0.0155252,0.527052,0.263327,0.217965,0.967435,0.391829,0.294265,0.74937,0.732265,0.259951,0.651863,0.441274,0.187837,0.173893,0.691798,0.710323,0.747406,0.7512,0.34709,0.79507,0.160877,0.875744,0.624464,0.604748,0.330335,0.544432,0.649623,0.417604,0.0429381,0.668075,0.761373,0.940216,0.427499,0.835994,0.558919,0.744021,0.655403,0.653631,0.508635,0.860867,0.444396,0.24938,0.553282,0.245767,0.936317,0.0304157,0.221882,0.239938,0.0496212,0.717062,0.479306,0.894504,0.392951,0.976232,0.0437286,0.115423,0.980086,0.387043,0.128015,0.0128756,0.55999,0.193124,0.236658,0.818959,0.0697723,0.451365,0.597689,0.689858,0.0379089,0.865103,0.342715,0.215086,0.0835268,0.443836,0.585468,0.31785,0.00520849,0.7378,0.689659,0.446987,0.539118,0.624069,0.35449,0.704518,0.496891,0.561753,0.194265,0.357984,0.57827,0.532552,0.476212,0.587403,0.611795,0.320874,0.742366,0.988602,0.372885,0.526382,0.119834,0.975608,0.535445,0.131216,0.894555,0.0964483,0.365591,0.0820333,0.355554,0.795491,0.361964,0.793582,0.359387,0.494409,0.53651,0.84022,0.84093,0.990735,0.117758,0.79539,0.366773,0.875579,0.998861,0.207778,0.416295,0.32712,0.89677,0.917692,0.562838,0.861415,0.523353,0.795672,0.523622,0.245718,0.708832,0.289021,0.818208,0.98699,0.696436,0.289093,0.373589,0.795231,0.855296,0.365781,0.224417,0.355747,0.718511,0.160676,0.340837,0.38638,0.108866,0.00683141,0.413212,0.959826,0.880647,0.657875,0.755991,0.59393,0.438243,0.541936,0.234364,0.21723,0.677126,0.692059,0.441079,0.178747,0.353395,0.827448,0.514647,0.44318,0.787153,0.966093,0.436291,0.278605,0.240743,0.222593,0.421624,0.366597,0.320609,0.391664,0.607846,0.109913,0.0891647,0.507231,0.804087,0.422591,0.81766,0.711367,0.453613,0.94847,0.0304735,0.799909,0.0395221,0.750599,0.373015,0.894948,0.955453,0.25622,0.804463,0.302128,0.254272,0.945141,0.185484,0.0857294,0.250597,0.533887,0.180542,0.265959,0.712146,0.480855,0.246592,0.713986,0.10463,0.246952,0.618638,0.961721,0.563249,0.520178,0.307125,0.542811,0.0675997,0.185167,0.945271,0.531294,0.843509,0.591192,0.181044,0.952913,0.909128,0.0566944,0.0099169,0.146073,0.0545656,0.615135,0.166733,0.646242,0.868955,0.0685865,0.0490808,0.612261,0.110835,0.356654,0.803707,0.976874,0.608297,0.0330434,0.209313,0.0108028,0.608269,0.146214,0.151711,0.21521,0.476354,0.12146,0.813832,0.0641648,0.130309,0.00620711,0.527817,0.372959,0.954751,0.0231327,0.68091,0.181908,0.0376751,0.561293,0.111585,0.565296,0.568085,0.79579,0.706864,0.854997,0.40833,0.0821674,0.244049,0.839778,0.622615,0.226674,0.937444,0.165545,0.46553,0.981946,|0.99354,0.189519,0.961834,0.256332,0.172099,0.471239,0.79605,0.0781254,0.988189,0.0266487,0.825676,0.94157,0.537277,0.693444,0.384888,0.050445,0.73931,0.94995,0.342811,0.853462,0.813801,0.945705,0.479218,0.722187,0.872278,0.77996,0.135692,0.29269,0.938956,0.575342,0.778363,0.457951,0.236987,0.783372,0.707035,0.273788,0.660682,0.982137,0.849721,0.82126,0.573636,0.614771,0.283757,0.702356,0.830738,0.486007,0.757338,0.289518,0.954353,0.50502,0.292203,0.685084,0.230364,0.458672,0.715958,0.107528,0.668911,0.121188,0.980771,0.755182,0.0973898,0.672945,0.879586,0.877557,0.546872,0.896594,0.5097,0.876005,0.401626,0.593606,0.0352188,0.997768,0.356597,0.744799,0.485939,0.440349,0.990931,0.577927,0.325471,0.923194,0.423813,0.493816,0.52337,0.119041,0.192259,0.0687633,0.824366,0.329004,0.823903,0.695165,0.172926,0.430546,0.818241,0.615873,0.798026,0.00310022,0.937442,0.223562,0.11086,0.302367,0.0449643,0.585775,0.232756,0.90457,0.172906,0.527552,0.586942,0.718139,0.205596,0.498007,0.601339,0.640771,0.439479,0.464569,0.847448,0.620222,0.490267,0.375615,0.48935,0.86315,0.772819,0.285764,0.144503,0.152375,0.653262,0.141854,0.543182,0.122493,0.470703,0.713253,0.685114,0.556201,0.30968,0.564163,0.53771,0.840987,0.522872,0.29403,0.185523,0.210723,0.736227,0.799808,0.985949,0.476014,0.306632,0.440367,0.405778,0.544014,0.447594,0.911662,0.665096,0.819202,0.661555,0.371301,0.834071,0.615006,0.476326,0.417472,0.126365,0.596881,0.515374,0.531568,0.470699,0.871719,0.655866,0.669079,0.771497,0.0647399,0.322099,0.0272552,0.647837,0.356757,0.433585,0.424665,0.764345,0.561936,0.995579,0.684912,0.594918,0.189946,0.920337,0.947497,0.592495,0.279912,0.589307,0.548356,0.549553,0.217529,0.635981,0.164444,0.674678,0.253923,0.424216,0.589923,0.122016,0.3994,0.917945,0.990462,0.926396,0.817302,0.242058,0.623833,0.253806,0.696181,0.117191,0.127612,0.509627,0.00318098,0.261741,0.771961,0.480131,0.628367,0.027676,0.897851,0.292741,0.963729,0.0815691,0.230525,0.197237,0.563329,0.238793,0.681359,0.955326,0.89845,0.55793,0.676728,0.534863,0.0130426,0.0432741,0.884292,0.0674906,0.772646,0.497254,0.573369,0.766357,0.427388,0.563713,0.447934,0.220202,0.978033,0.288039,0.998071,0.37285,0.0491357,0.224439,0.584587,0.894672,0.48027,0.727634,0.557986,0.703771,0.572635,0.921771,0.12881,0.205569,0.304895,0.219519,0.968553,0.118823,0.0211762,0.181432,0.3937,0.118532,0.36244,0.496247,0.260555,0.1043,0.215719,0.989608,0.975346,0.540359,0.0788324,0.720993,0.725451,0.52505,0.898085,0.750846,0.233063,0.75185,0.348214,0.306854,0.555286,0.926724,0.944314,0.969669,0.791839,0.545922,0.479166,0.539031,0.251579,0.610473,0.117022,0.646142,0.918245,0.873621,0.621557,0.746067,0.880341,0.691917,0.856647,0.446616,0.281927,0.470969,0.344068,0.754509,0.650284,0.775914,0.0468844,0.973787,0.090895,0.449294,0.932982,0.643365,0.0438422,0.323932,0.0778649,0.729515,0.218091,0.227406,0.746902,0.850286,0.140715,0.902399,0.901134,0.526624,0.97594,0.599632,0.393011,0.922672,0.672867,0.19176,0.311559,0.588706,0.230754,0.986267,0.662829,0.887432,0.225755,0.722269,0.454157,0.684677,0.374543,0.846127,0.672872,0.229288,0.712683,0.218132,0.563008,0.560609,0.630462,0.328363,0.831755,0.35608,0.717222,0.342527,0.117087,0.647454,0.839958,0.394431,0.407266,0.980632,0.348422,0.0288625,0.483614,0.245593,0.185933,0.01487,0.715798,0.61623,0.762828,0.406886,0.118897,0.31152,0.93596,0.778702,0.12158,0.0589633,0.610882,0.500276,0.42362,0.991962,0.667302,0.693654,0.367573,0.481862,0.724882,0.19364,0.430172,0.517778,0.454977,0.528562,0.945032,0.481814,0.573444,0.279056,0.292365,0.220453,0.746189,0.476865,0.485661,0.43694,0.0191172,0.483281,0.801886,0.816838,0.915699,0.425759,0.371392,0.504222,0.689686,0.480093,0.711227,0.154234,0.950912,0.736509,0.394344,0.98812,0.228254,0.459106,0.993695,0.167876,0.247431,0.714874,0.0624449,0.806666,0.42914,0.60288,0.628023,0.384378,0.59607,0.655851,0.923054,0.426368,0.492674,0.629257,0.483897,0.115004,0.842672,0.437828,0.190188,0.876865,0.84345,0.937017,0.140383,0.775607,0.69309,0.166128,0.289549,0.430976,0.891152,0.814903,0.200974,0.954544,0.846028,0.421235,0.182951,0.877508,0.299304,0.12878,0.329724,0.349303,0.868681,0.119668,0.829844,0.884424,0.0524955,0.399417,0.926166,0.194145,0.850949,0.338405,0.607361,0.344919,0.498048,0.21244,0.943882,0.560192,0.399836,0.981277,0.80488,0.279139,0.33692,0.762043,0.344624,0.641013,0.825811,0.439873,0.755607,0.859835,0.351705,0.796488,0.42089,0.852333,0.478446,0.652912,0.757133,0.573868,0.0491441,0.6925,0.344237,0.104629,0.623983,0.327836,0.500283,0.719821,0.959405,0.298344,0.190985,0.298584,0.658571,0.231174,0.0923046,0.450625,0.299534,0.892781,0.398331,0.922225,0.549775,0.481027,0.185621,0.310981,0.492191,0.703279,0.726763,0.251627,0.603226,0.987952,0.758549,0.0780581,0.3577,0.42133,0.34288,0.0299405,0.139889,0.738062,0.505877,0.852934,0.642258,0.702688,0.45545,0.766273,0.638986,0.351144,0.442906,0.727227,0.00644737,0.386804,0.0389253,0.160157,0.346924,0.0264874,0.983673,0.340401,0.0727784,0.331888,0.813529,0.323533,0.0789657,0.567507,0.531062,0.2223,0.344814,0.807657,0.774548,0.929692,0.653688,0.172497,0.0155745,0.0701263,0.655339,0.00397319,0.792153,0.0417416,0.197886,0.342452,0.307324,0.167069,0.169004,0.71164,0.311211,0.521438,0.0233417,0.991724,0.442469,0.409635,0.0934547,0.947489,0.201036,0.372029,0.539789,0.201359,0.2643,0.0449325,0.980088,0.817474,0.229428,0.960296,0.0780216,0.597969,0.482233,0.547559,0.119154,0.490161,0.212466,0.895938,0.18768,0.577032,0.0967744,0.080072,0.654819,0.338476,0.348845,0.997962,0.875728,0.969903,0.244966,0.0352335,0.0676417,0.365273,0.539185,0.682959,0.0506095,0.726891,0.991206,0.0566217,0.643686,0.777401,0.829608,0.00998634,0.591913,0.0941694,0.956218,0.478455,0.204891,0.818411,0.473619,0.645958,0.352434,0.566163,0.139313,0.302211,0.0473941,0.492812,0.525487,0.955792,0.381224,0.363802,0.020702,0.545256,0.0899388,0.746926,0.0636291,0.809097,0.00236917,0.998706,0.0994307,0.516692,0.467391,0.875684,0.00039047,0.676942,0.226555,0.629698,0.1243,0.594068,0.877368,0.598171,0.574358,0.0720092,0.494213,0.523183,0.0666177,0.491684,0.577567,0.29135,0.790282,0.953456,0.74728,0.193681,0.670263,0.188726,0.261091,0.712052,0.938752,0.399057,0.882571,0.809331,0.517646,0.31461,0.0561012,0.57292,0.331422,0.349242,0.274489,0.855411,0.564423,0.409939,0.830063,0.0386968,0.681228,0.0575762,0.663201,0.742679,0.635322,0.056101,0.806338,0.426958,0.443829,0.979818,0.207919,0.00612247,0.509579,0.925194,0.991915,0.807945,0.601137,0.211549,0.127598,0.720246,0.512128,0.75819,0.576638,0.0866604,0.0304503,0.570469,0.590126,0.271582,0.0268185,0.928384,0.891511,0.0955752,0.367461,0.151967,0.776003,0.672635,0.541955,0.679251,0.638838,0.745221,0.427233,0.648561,0.576104,0.557497,0.0810255,0.51264,0.09561,0.523719,0.446721,0.989133,0.476131,0.848901,0.303814,0.488634,0.0584651,0.941423,0.297807,0.594242,0.906654,0.138839,0.652047,0.23622,0.188824,0.806782,0.76765,0.693387,0.410949,0.699696,0.185106,0.909937,0.888758,0.267552,0.356769,0.599554,0.846797,0.154806,0.305044,0.790572,0.104394,0.587058,0.0225502,0.932861,0.851287,0.273287,0.793956,0.0487055,0.513962,0.388303,0.508012,0.821831,0.501613,0.785436,0.479372,0.240623,0.0522156,0.0169454,0.0918015,0.209315,0.86624,0.242196,0.886363,0.133086,0.469076,0.33525,0.0500951,0.534546,0.951587,0.995009,0.392729,0.542331,0.395606,0.00993234,0.223777,0.857336,0.57631,0.245912,0.535152,0.1005,0.845889,0.891222,0.893864,0.821463,0.758111,0.700249,0.500556,0.899006,0.483346,0.469002,0.78488,0.596964,0.468628,0.657286,0.400861,0.721525,0.656685,0.444324,0.0161312,0.679487,0.153659,0.365338,0.656698,0.236545,0.401131,0.532636,0.636937,0.0206721,0.423273,0.690963,0.748974,0.987319,0.704759,0.499537,0.565635,0.143104,0.419772,0.0836472,0.465823,0.72919,0.24072,0.55945,0.553539,0.326776,0.587614,0.432886,0.68895,0.418734,0.661036,0.821169,0.719517,0.0687127,0.613779,0.33636,0.60148,0.90367,0.0265007,0.724279,0.634106,0.976908,0.405922,0.0923488,0.582034,0.824665,0.393757,0.77011,0.187877,0.809499,0.672342,0.101919,0.807943,0.145069,0.203807,0.594205,0.946142,0.252192,0.269533,0.144822,0.988211,0.49166,0.334675,0.194516,0.76718,0.0210065,0.219488,0.725958,0.936278,0.0125208,0.843735,0.632338,0.830024,0.167345,0.192328,0.503041,0.800957,0.720545,0.858879,0.272725,0.997069,0.591611,0.467911,0.41575,0.361703,0.500803,0.882862,0.059541,0.153878,0.940285,0.129069,0.621937,0.625547,0.421014,0.562591,0.230789,0.731658,0.811057,0.511268,0.920279,0.0948736,0.487959,0.829863,0.651241,0.434615,0.40477,0.341608,0.154533,0.62933,0.480707,0.428711,0.643077,0.784116,0.284899,0.779771,0.930745,0.426608,0.363315,0.675182,0.320225,0.86894,0.930009,0.870039,0.0214798,0.203344,0.774619,0.752256,0.88085,0.404245,0.518633,0.0740042,0.601549,0.868818,0.0591189,0.380673,0.170999,0.135475,0.344023,0.493381,0.769136,0.482376,0.69954,0.610053,0.157562,0.0151854,0.707121,0.295529,0.998813,0.850414,0.284224,0.0456929,0.620267,0.15063,0.352666,0.793536,0.0895528,0.110435,0.712638,0.703798,0.0241592,0.592391,0.37636,0.418656,0.627121,0.950847,|0.0411982,0.828452,0.187622,0.560647,0.207179,0.869772,0.139556,0.459674,0.379884,0.0556358,0.472439,0.558133,0.0666222,0.349329,0.601929,0.321917,0.368649,0.944862,0.595452,0.625388,0.0185084,0.225898,0.20338,0.330588,0.105299,0.486062,0.809546,0.844132,0.738817,0.47212,0.994564,0.80323,0.0996166,0.693549,0.248984,0.659183,0.466493,0.975719,0.52194,0.80175,0.984299,0.163309,0.831256,0.693057,0.647393,0.161764,0.573645,0.680573,0.795178,0.702767,0.615091,0.582766,0.744158,0.753452,0.997576,0.237989,0.00153416,0.361605,0.345279,0.947734,0.901037,0.846421,0.544924,0.348997,0.422371,0.200625,0.576889,0.895177,0.663125,0.550996,0.952429,0.645505,0.313198,0.739591,0.622909,0.158675,0.293608,0.95822,0.239434,0.636999,0.595099,0.148993,0.471282,0.399015,0.80551,0.0227849,0.733074,0.722779,0.390205,0.394061,0.648038,0.351501,0.179723,0.216072,0.000855327,0.747917,0.799603,0.119456,0.771958,0.580157,0.657869,0.749959,0.742366,0.142241,0.825439,0.200449,0.164542,0.272513,0.930421,0.647153,0.954068,0.295143,0.311717,0.0179328,0.203813,0.0604464,0.61079,0.278599,0.627196,0.1439,0.492074,0.75996,0.417093,0.188208,0.973086,0.994209,0.326495,0.772583,0.484054,0.159294,0.444356,0.999677,0.689624,0.248569,0.526746,0.778862,0.539115,0.61191,0.369448,0.714357,0.114951,0.979565,0.607112,0.473715,0.164367,0.435673,0.741878,0.0258237,0.374114,0.630531,0.0427833,0.184329,0.901958,0.664481,0.740643,0.203553,0.131543,0.765166,0.386327,0.154576,0.93486,0.666224,0.0626988,0.230859,0.501541,0.247253,0.594311,0.726837,0.538028,0.0303768,0.929114,0.432711,0.438479,0.105676,0.148998,0.953967,0.698951,0.644034,0.650918,0.3645,0.559127,0.0203102,0.320731,0.670691,0.735846,0.406757,0.471411,0.711545,0.558119,0.716291,0.551242,0.68967,0.138944,0.91031,0.816521,0.483194,0.850732,0.832316,0.505083,0.784689,0.0462863,0.133209,0.477039,0.392521,0.428207,0.390492,0.628559,0.869662,0.915316,0.830033,0.105204,0.670671,0.356296,0.239775,0.145259,0.292878,0.806074,0.838248,0.198237,0.946983,0.753568,0.388972,0.274178,0.981375,0.699979,0.702788,0.956939,0.185106,0.620586,0.133141,0.616382,0.578692,0.814447,0.945596,0.89634,0.864188,0.289067,0.618275,0.192232,0.112923,0.873588,0.831371,0.867164,0.385028,0.760746,0.109107,0.536558,0.052687,0.817829,0.631697,0.15889,0.482938,0.583073,0.501021,0.654366,0.0361238,0.385628,0.192828,0.596206,0.594903,0.38935,0.401554,0.514169,0.602091,0.326086,0.176656,0.402637,0.703659,0.958492,0.968816,0.971395,0.233198,0.960159,0.616963,0.884511,0.554923,0.185724,0.849787,0.391962,0.259009,0.651106,0.859259,0.778698,0.292636,0.0948128,0.0569262,0.753208,0.402327,0.840319,0.780609,0.967895,0.845205,0.772852,0.888961,0.2439,0.406358,0.788761,0.998706,0.966608,0.649805,0.581562,0.0517196,0.475747,0.0444368,0.589374,0.942612,0.463531,0.909541,0.599118,0.689365,0.947761,0.0935476,0.431825,0.680664,0.305305,0.916274,0.666432,0.88566,0.460496,0.873625,0.835472,0.69778,0.069972,0.597512,0.976522,0.528703,0.692903,0.16485,0.639975,0.420883,0.870739,0.813552,0.294102,0.187561,0.126136,0.0322382,0.539932,0.00979465,0.44162,0.0529221,0.341712,0.717317,0.501226,0.806881,0.760556,0.107609,0.772082,0.121776,0.600805,0.53665,0.723589,0.587601,0.693811,0.28211,0.484197,0.466634,0.661817,0.582573,0.422195,0.816918,0.0299747,0.528348,0.253044,0.341151,0.508236,0.0388997,0.598516,0.517397,0.298864,0.847094,0.512336,0.586218,0.8416,0.601935,0.616165,0.637625,0.778233,0.981426,0.306529,0.894069,0.155831,0.496094,0.27018,0.905263,0.743371,0.135417,0.864991,0.877126,0.420233,0.461083,0.0301477,0.899175,0.193544,0.302951,0.861304,0.118096,0.454579,0.593288,0.518005,0.582422,0.384881,0.304035,0.215058,0.327867,0.849484,0.914695,0.127946,0.0940035,0.593134,0.593511,0.247349,0.067657,0.409049,0.992243,0.207455,0.798655,0.113627,0.231457,0.326424,0.908928,0.407848,0.482067,0.440617,0.142331,0.2161,0.162935,0.858009,0.611784,0.15528,0.0126687,0.455391,0.383006,0.245958,0.483688,0.157429,0.0162297,0.482675,0.177237,0.924017,0.373165,0.547171,0.523199,0.649252,0.541311,0.869609,0.0815002,0.0447543,0.834633,0.290844,0.699964,0.402291,0.378925,0.778981,0.253285,0.932191,0.261249,0.353035,0.660074,0.0497943,0.886647,0.805916,0.485821,0.54954,0.660926,0.56338,0.822673,0.650743,0.99196,0.265541,0.475377,0.0223605,0.692826,0.996249,0.858357,0.38434,0.0418185,0.915226,0.344944,0.97544,0.584956,0.51672,0.217653,0.926997,0.668353,0.909163,0.296582,0.0984402,0.108483,0.460553,0.732637,0.24063,0.0195187,0.0477654,0.868705,0.662768,0.411935,0.571506,0.469048,0.690319,0.882083,0.795141,0.00977004,0.623934,0.0357031,0.0380955,0.428188,0.991943,0.125645,0.576999,0.015203,0.664254,0.125705,0.169512,0.80456,0.634794,0.934194,0.957176,0.998312,0.785285,0.0874386,0.890597,0.338475,0.386307,0.797273,0.886227,0.251758,0.0265399,0.0409324,0.268328,0.0076803,0.905266,0.518637,0.516996,0.534369,0.153265,0.993482,0.692742,0.577774,0.150846,0.791368,0.4077,0.750919,0.844833,0.741399,0.763765,0.373532,0.734213,0.112948,0.191816,0.134905,0.137692,0.720195,0.0361618,0.537429,0.648638,0.978453,0.539821,0.0867203,0.826479,0.599416,0.977976,0.967233,0.884983,0.656368,0.781944,0.030726,0.88446,0.0727066,0.261005,0.6264,0.697709,0.31372,0.806237,0.847072,0.0384778,0.963181,0.32408,0.526236,0.0390948,0.0810788,0.661565,0.522986,0.422148,0.808555,0.536545,0.774882,0.876663,0.762277,0.033917,0.583467,0.278426,0.325637,0.351607,0.888498,0.47017,0.959338,0.698059,0.910788,0.546342,0.817642,0.268467,0.996568,0.399758,0.0157982,0.0745447,0.186191,0.454143,0.887981,0.891343,0.208663,0.506375,0.800425,0.518605,0.549367,0.632684,0.370063,0.452223,0.802419,0.607925,0.466422,0.858452,0.0570582,0.168996,0.35598,0.461714,0.738217,0.522021,0.867403,0.399668,0.77249,0.251647,0.0759759,0.00685871,0.249096,0.90882,0.984108,0.276674,0.341123,0.698969,0.752029,0.474239,0.0234402,0.0994056,0.526754,0.444522,0.937482,0.808686,0.94146,0.903027,0.672765,0.225588,0.993578,0.0975016,0.0835195,0.475949,0.352035,0.660249,0.954042,0.0563188,0.0237627,0.60942,0.803811,0.197505,0.207983,0.914761,0.118375,0.948589,0.400637,0.152374,0.901995,0.329947,0.486926,0.704451,0.309424,0.282799,0.180729,0.553946,0.759005,0.701371,0.891714,0.899874,0.0630987,0.905327,0.666911,0.211294,0.0768942,0.312192,0.569632,0.560513,0.140873,0.183898,0.0331152,0.711615,0.590225,0.244635,0.550878,0.738862,0.923054,0.426428,0.971682,0.339969,0.00956655,0.998008,0.0838468,0.236254,0.494384,0.800993,0.389125,0.695882,0.682777,0.518316,0.755833,0.665801,0.103954,0.779607,0.825735,0.479979,0.739365,0.489438,0.986942,0.468401,0.325864,0.945719,0.44862,0.017922,0.264538,0.535196,0.602361,0.294213,0.0350718,0.599352,0.415577,0.713527,0.866167,0.114954,0.773665,0.815198,0.636127,0.800669,0.66107,0.469297,0.0916968,0.267148,0.436301,0.272164,0.0864889,0.894724,0.539365,0.166381,0.931238,0.401166,0.478618,0.516254,0.804103,0.337684,0.239235,0.0906376,0.601161,0.153755,0.384121,0.829879,0.319592,0.758783,0.0313494,0.185969,0.815983,0.872068,0.384327,0.589172,0.583114,0.901604,0.544683,0.298954,0.190857,0.0621747,0.274444,0.717203,0.0152016,0.126848,0.214305,0.681099,0.0741482,0.60133,0.260037,0.716314,0.750305,0.623014,0.241383,0.243263,0.569661,0.063677,0.491004,0.913965,0.976411,0.387854,0.0151463,0.07421,0.742256,0.00677419,0.909729,0.898983,0.0552796,0.342492,0.618197,0.696662,0.384528,0.610698,0.965002,0.439457,0.576657,0.793013,0.469809,0.451502,0.233771,0.635452,0.676758,0.875012,0.313661,0.00921893,0.787545,0.899323,0.146822,0.392681,0.956861,0.886411,0.284453,0.604227,0.858249,0.211716,0.0446932,0.376932,0.0811362,0.677806,0.167919,0.0620441,0.25419,0.0634857,0.195444,0.123336,0.427037,0.928905,0.69242,0.55588,0.924558,0.672033,0.753669,0.755796,0.240837,0.105951,0.126454,0.909884,0.803465,0.819024,0.142196,0.349512,0.878429,0.276755,0.62844,0.313766,0.578997,0.088655,0.168115,0.37077,0.365174,0.268778,0.478878,0.999423,0.464571,0.966316,0.746149,0.116659,0.794697,0.376273,0.232678,0.268459,0.780087,0.494902,0.77677,0.796505,0.877607,0.308951,0.0706646,0.00892162,0.0477252,0.0545059,0.133908,0.336415,0.436223,0.665277,0.87101,0.0746503,0.0156472,0.231412,0.876956,0.544908,0.301487,0.310705,0.65248,0.87427,0.462899,0.682039,0.810233,0.0635113,0.919268,0.0289512,0.282394,0.858807,0.850716,0.618396,0.6052,0.273064,0.333069,0.850517,0.823206,0.674858,0.876223,0.0895205,0.66458,0.778578,0.226823,0.945735,0.265309,0.0080958,0.389411,0.0252904,0.649816,0.791341,0.75371,0.352444,0.644637,0.632994,0.581968,0.24121,0.392496,0.579522,0.11411,0.260787,0.778715,0.453759,0.450589,0.493016,0.855797,0.651965,0.00201803,0.931705,0.326,0.768613,0.393287,0.189079,0.466653,0.369054,0.721435,0.988749,0.904189,0.144351,0.268463,0.142053,0.761709,0.628768,0.526681,0.341547,0.433147,0.643719,0.201894,0.0802111,0.360796,0.476566,0.96353,0.47282,0.0529377,0.287036,0.728701,0.209748,0.912144,0.153899,0.173316,0.219876,0.310366,0.51899,0.424201,0.896431,0.362206,0.860484,0.681336,0.600837,0.441246,0.436927,0.478048,0.910411,0.199364,0.976101,0.567788,0.274076,0.775604,0.446399,0.850661,0.801423,0.28092,0.27339,0.24918,|0.729543,0.0672885,0.170101,0.688752,0.225212,0.445863,0.497954,0.329626,0.0462398,0.880884,0.245102,0.576076,0.322,0.539755,0.446815,0.832431,0.299519,0.948332,0.547185,0.620747,0.169478,0.209521,0.863678,0.794804,0.145981,0.225295,0.495647,0.503451,0.540151,0.441139,0.890791,0.0360586,0.380652,0.242999,0.446547,0.0530564,0.100037,0.509752,0.164403,0.727091,0.311045,0.994938,0.440579,0.744445,0.0940185,0.463839,0.323444,0.622984,0.137995,0.93913,0.0207761,0.866861,0.516616,0.929,0.0785774,0.348909,0.927393,0.324515,0.672056,0.938934,0.921361,0.895395,0.164882,0.381904,0.203386,0.787011,0.427356,0.516325,0.334217,0.327429,0.521925,0.988501,0.0171893,0.614385,0.464228,0.0354181,0.302737,0.784092,0.247547,0.52252,0.504462,0.950841,0.276603,0.0493521,0.968693,0.596061,0.871096,0.254064,0.513323,0.114898,0.980796,0.775814,0.747131,0.802523,0.223658,0.544909,0.161645,0.513663,0.283752,0.538053,0.255814,0.351476,0.3181,0.850715,0.83134,0.861577,0.942205,0.614392,0.538394,0.195365,0.695033,0.893135,0.05688,0.448522,0.439834,0.377582,0.486893,0.758392,0.680201,0.423933,0.356346,0.332036,0.346608,0.867341,0.884993,0.21774,0.765017,0.125899,0.517465,0.603971,0.567384,0.224199,0.736933,0.608034,0.782122,0.923541,0.897264,0.0040195,0.910401,0.791039,0.167517,0.852625,0.511816,0.882789,0.683192,0.74668,0.295782,0.47228,0.565689,0.100074,0.213502,0.769,0.666952,0.634322,0.854924,0.583932,0.621836,0.37049,0.369561,0.349219,0.0808134,0.561067,0.154203,0.225936,0.191474,0.028767,0.509467,0.539036,0.282535,0.591049,0.512852,0.154009,0.0714306,0.627129,0.931287,0.901669,0.865291,0.631141,0.800667,0.575946,0.82477,0.153474,0.373905,0.729853,0.047947,0.408639,0.443682,0.256278,0.869296,0.4195,0.00934541,0.636119,0.783646,0.121946,0.070759,0.8025,0.593073,0.711116,0.928301,0.015686,0.919609,0.664118,0.586634,0.208936,0.110685,0.0605012,0.559851,0.847308,0.951674,0.0198453,0.333373,0.891895,0.947558,0.0842666,0.417589,0.962827,0.871724,0.106517,0.0161908,0.815987,0.173227,0.609378,0.189396,0.763745,0.579222,0.846991,0.885089,0.418097,0.442625,0.194693,0.514287,0.890472,0.487762,0.23361,0.429689,0.474777,0.986142,0.483048,0.235053,0.301679,0.187953,0.0925656,0.954073,0.161715,0.178068,0.0282788,0.496903,0.451755,0.549309,0.966999,0.678182,0.090003,0.10605,0.962024,0.458596,0.382833,0.87707,0.51321,0.392448,0.0984598,0.374727,0.950418,0.25592,0.687262,0.744817,0.57015,0.545608,0.733385,0.161586,0.420061,0.0552522,0.542947,0.217618,0.764013,0.63696,0.807293,0.282325,0.208441,0.467105,0.693815,0.471344,0.776871,0.699946,0.0987327,0.284876,0.320572,0.619247,0.23448,0.165482,0.397335,0.226332,0.584586,0.177823,0.109932,0.139811,0.2681,0.110153,0.516443,0.442073,0.741494,0.671238,0.387812,0.322115,0.187373,0.193957,0.935094,0.317625,0.92846,0.817075,0.657547,0.0606604,0.884905,0.876394,0.439077,0.682391,0.404606,0.0816426,0.620197,0.719966,0.381637,0.829021,0.893537,0.968252,0.836833,0.357911,0.339962,0.487417,0.187276,0.448028,0.330877,0.803389,0.322256,0.61859,0.569359,0.895687,0.0246415,0.651637,0.346994,0.819275,0.950169,0.200061,0.593371,0.334504,0.972215,0.874441,0.900692,0.783157,0.534797,0.0564752,0.905504,0.0273901,0.251711,0.303763,0.32885,0.149215,0.637718,0.629694,0.833305,0.828654,0.921853,0.333855,0.943069,0.821272,0.814432,0.496639,0.248524,0.233843,0.47576,0.145385,0.778509,0.115377,0.631101,0.910676,0.108198,0.142049,0.141094,0.663608,0.0477167,0.494823,0.4385,0.996939,0.0303429,0.0566246,0.472479,0.0615499,0.964102,0.271573,0.731385,0.613608,0.0336919,0.712889,0.330933,0.322496,0.0153838,0.268361,0.649431,0.90164,0.953319,0.217143,0.115548,0.245995,0.195325,0.751429,0.363531,0.593268,0.170884,0.462781,0.833555,0.0769593,0.5001,0.698946,0.900535,0.291023,0.982606,0.653449,0.193202,0.894957,0.489096,0.837486,0.985491,0.102308,0.125946,0.781996,0.629648,0.148141,0.280209,0.494655,0.0159045,0.347306,0.578254,0.0991624,0.733505,0.334393,0.185064,0.425885,0.765748,0.0340726,0.913941,0.924351,0.790954,0.623109,0.468552,0.941253,0.777036,0.461143,0.207385,0.774364,0.782022,0.653943,0.554855,0.177669,0.542122,0.963269,0.551932,0.742717,0.477286,0.224973,0.15067,0.882815,0.464269,0.0390111,0.903055,0.685412,0.285866,0.294244,0.863963,0.845404,0.923576,0.339634,0.0816492,0.0220338,0.337771,0.456608,0.503141,0.223696,0.893794,0.576039,0.280971,0.725554,0.368984,0.550382,0.734279,0.63308,0.273337,0.927257,0.986505,0.272996,0.777879,0.475928,0.0197125,0.357511,0.424446,0.489253,0.090142,0.517923,0.78676,0.874828,0.872526,0.753727,0.244666,0.869476,0.404392,0.60744,0.823656,0.565359,0.251565,0.171063,0.198541,0.427201,0.0881355,0.37961,0.563545,0.485708,0.341408,0.963243,0.752814,0.641135,0.469229,0.797499,0.31487,0.739463,0.765773,0.430848,0.976921,0.995355,0.575185,0.470404,0.788534,0.559737,0.482921,0.322853,0.679719,0.547213,0.117434,0.054373,0.719814,0.0981187,0.363847,0.434385,0.976614,0.92808,0.985282,0.879326,0.114511,0.632064,0.707871,0.373538,0.468674,0.234246,0.42367,0.92595,0.56251,0.133892,0.599537,0.293876,0.941887,0.163543,0.121248,0.616318,0.281332,0.23632,0.555145,0.566361,0.0127562,0.193263,0.191861,0.248938,0.572025,0.0400861,0.022545,0.0427127,0.614464,0.970316,0.350545,0.488814,0.853767,0.702216,0.32924,0.760041,0.62106,0.905849,0.563141,0.516956,0.9572,0.355186,0.893227,0.65607,0.932774,0.136062,0.378794,0.253946,0.193855,0.0123961,0.244416,0.746234,0.091228,0.448176,0.383611,0.493574,0.646575,0.0750737,0.82764,0.530957,0.932277,0.165422,0.595262,0.834278,0.363812,0.56525,0.108933,0.166258,0.455432,0.463684,0.660899,0.371713,0.953687,0.541032,0.213298,0.162446,0.684062,0.319106,0.558703,0.86538,0.245642,0.30421,0.369712,0.784372,0.877409,0.346989,0.092743,0.570386,0.889898,0.576264,0.291988,0.342752,0.00346279,0.789346,0.0768117,0.997873,0.202383,0.11116,0.989127,0.684593,0.765113,0.257891,0.400467,0.893897,0.112913,0.0173587,0.190596,0.289677,0.0840964,0.944548,0.883012,0.848528,0.782056,0.46297,0.280051,0.619932,0.304673,0.352556,0.169266,0.058022,0.861216,0.255708,0.314709,0.356516,0.987862,0.724647,0.419175,0.282793,0.674229,0.444375,0.979999,0.988358,0.238248,0.576626,0.470285,0.872626,0.785097,0.416092,0.747982,0.159933,0.575212,0.00982904,0.739214,0.279134,0.957998,0.363837,0.545523,0.796932,0.474919,0.945915,0.0155283,0.322297,0.191009,0.971107,0.89325,0.0571001,0.423475,0.495861,0.271628,0.884146,0.217334,0.152166,0.0653954,0.501275,0.791441,0.391988,0.891181,0.0369143,0.187189,0.879369,0.308952,0.39436,0.78778,0.115395,0.161604,0.427406,0.0141827,0.406744,0.723329,0.222865,0.941446,0.925301,0.132682,0.374556,0.229896,0.461857,0.124962,0.782922,0.33393,0.334008,0.0296091,0.220439,0.980202,0.122318,0.34027,0.811352,0.688356,0.675185,0.170498,0.535728,0.276276,0.0305518,0.0552951,0.140501,0.6802,0.342243,0.662479,0.220874,0.966687,0.344357,0.867823,0.0581757,0.620388,0.696497,0.641234,0.250738,0.00729841,0.330258,0.514528,0.631864,0.770243,0.559687,0.153753,0.618147,0.459248,0.16009,0.574694,0.274937,0.680006,0.155507,0.804733,0.0562965,0.734439,0.540651,0.382087,0.289303,0.985218,0.0776664,0.72442,0.685037,0.704092,0.931538,0.0904396,0.560436,0.739528,0.552455,0.770792,0.199766,0.625281,0.708732,0.15599,0.946397,0.833132,0.100746,0.836469,0.0775117,0.916622,0.553985,0.552658,0.851547,0.65746,0.921419,0.353171,0.797086,0.95977,0.380976,0.0497479,0.0352402,0.923376,0.153335,0.901628,0.167703,0.234432,0.848619,0.776137,0.978878,0.797718,0.667404,0.913006,0.868143,0.033122,0.987978,0.581033,0.00699663,0.233546,0.642022,0.548257,0.18927,0.862914,0.0574814,0.485902,0.0127077,0.877255,0.613662,0.627591,0.0303476,0.566742,0.860743,0.552647,0.748776,0.610558,0.944178,0.495424,0.311,0.512693,0.490989,0.180163,0.515142,0.565325,0.0797123,0.551129,0.42109,0.460148,0.227151,0.927085,0.427368,0.787252,0.820899,0.111994,0.624422,0.971587,0.415106,0.366924,0.444731,0.760242,0.0652245,0.367484,0.51303,0.761303,0.335971,0.743467,0.958914,0.889557,0.0792695,0.585925,0.480548,0.0405488,0.685586,0.0396481,0.156027,0.307898,0.103735,0.881303,0.10657,0.272633,0.922239,0.466694,0.0646971,0.56159,0.319698,0.0858201,0.810563,0.377297,0.238971,0.215078,0.898833,0.283526,0.520374,0.0396371,0.945821,0.665621,0.886482,0.180119,0.979778,0.172951,0.311083,0.162624,0.562812,0.512966,0.204449,0.479066,0.625332,0.758384,0.911616,0.710092,0.530043,0.33092,0.299881,0.0742121,0.50993,0.688979,0.490348,0.195029,0.886362,0.119656,0.934906,0.255502,0.883687,0.343163,0.658709,0.68212,0.967816,0.871921,0.944585,0.463431,0.290703,0.215432,0.694486,0.534856,0.347282,0.687607,0.571278,0.34335,0.772867,0.621628,0.687768,0.798988,0.679318,0.953812,0.873785,0.260532,0.508423,0.920567,0.395926,0.662032,0.939236,0.592373,0.13257,0.00967926,0.26856,0.322275,0.867019,0.0147585,0.0633799,0.0553233,0.133076,0.89805,0.651493,0.641342,0.72198,0.670671,0.834527,0.262513,0.0907704,0.750522,0.982306,0.973014,0.627308,0.374844,0.722547,0.488458,0.437861,0.0936133,0.36918,0.315278,0.520345,0.291643,0.117058,0.442918,0.571535,0.28041,0.980648,0.28277,0.188236,0.0123483,0.665234,0.160141,|0.413342,0.677987,0.537119,0.552329,0.639735,0.430812,0.6469,0.28017,0.48533,0.428647,0.0987124,0.947551,0.0056932,0.390139,0.589869,0.272595,0.755347,0.552516,0.3201,0.759752,0.605879,0.433797,0.135094,0.0356135,0.155848,0.825038,0.351089,0.404974,0.890574,0.612743,0.642473,0.412325,0.896151,0.950443,0.984281,0.0677003,0.761144,0.617885,0.252394,0.392408,0.544959,0.76851,0.125938,0.382772,0.888081,0.44778,0.392712,0.178646,0.870656,0.695193,0.699562,0.0960774,0.36739,0.0650607,0.600925,0.219594,0.135642,0.376129,0.573138,0.573621,0.525172,0.828687,0.766451,0.419417,0.234672,0.161701,0.877669,0.958596,0.976259,0.289285,0.144386,0.553286,0.781703,0.636306,0.851536,0.552481,0.852467,0.048507,0.224254,0.56744,0.53073,0.944629,0.360158,0.439273,0.536553,0.0841097,0.0290303,0.822764,0.258971,0.229921,0.09779,0.491152,0.021335,0.595766,0.183473,0.463656,0.661967,0.40861,0.428181,0.481193,0.549106,0.726248,0.276456,0.618657,0.40386,0.024755,0.125667,0.126875,0.730247,0.0527321,0.346481,0.993886,0.0920045,0.323283,0.706273,0.773508,0.942377,0.624279,0.964841,0.803316,0.140262,0.9875,0.690962,0.836815,0.58714,0.435183,0.610454,0.607451,0.674509,0.200878,0.75127,0.689557,0.490107,0.259929,0.169716,0.957587,0.335111,0.418499,0.710129,0.809527,0.666761,0.938552,0.653715,0.151078,0.292622,0.563302,0.889791,0.493172,0.0473735,0.480107,0.153257,0.404513,0.58701,0.334306,0.802484,0.144116,0.469343,0.791444,0.813899,0.471695,0.974486,0.197334,0.276933,0.857644,0.551947,0.443577,0.031028,0.961178,0.098236,0.267834,0.128587,0.620202,0.495539,0.915859,0.670682,0.23381,0.757381,0.318373,0.16258,0.644708,0.677359,0.556562,0.998113,0.718122,0.51794,0.779402,0.954989,0.460056,0.462131,0.285968,0.388811,0.357401,0.548143,0.489686,0.660024,0.483665,0.278055,0.92008,0.180091,0.428511,0.0481182,0.16933,0.990515,0.694648,0.681016,0.899827,0.674034,0.510428,0.544494,0.451895,0.501512,0.30039,0.060389,0.909812,0.987941,0.502232,0.577307,0.456283,0.216054,0.162612,0.0217957,0.141669,0.409752,0.0838848,0.22807,0.945691,0.908934,0.28211,0.129493,0.727399,0.324617,0.81215,0.406338,0.6534,0.892419,0.030818,0.925966,0.863155,0.375906,0.135696,0.819704,0.371767,0.520475,0.595843,0.443373,0.621531,0.868361,0.392847,0.818541,0.0184304,0.466245,0.420159,0.853979,0.607485,0.158122,0.72325,0.189266,0.0393651,0.840319,0.601766,0.139004,0.780152,0.817342,0.845828,0.756494,0.996137,0.431924,0.148377,0.435401,0.864559,0.0450558,0.955651,0.056667,0.736897,0.333653,0.730754,0.267163,0.58022,0.240923,0.522937,0.605631,0.16733,0.241346,0.583787,0.720822,0.102571,0.641706,0.43014,0.935962,0.730149,0.697362,0.965955,0.875316,0.70037,0.246044,0.488496,0.206572,0.955047,0.157173,0.97266,0.736023,0.635746,0.131709,0.126162,0.543761,0.00684935,0.940579,0.396168,0.522561,0.190259,0.743648,0.333341,0.313071,0.351174,0.160363,0.410017,0.0357057,0.646186,0.186472,0.417566,0.230724,0.0668145,0.771788,0.316985,0.556395,0.863768,0.0456266,0.61806,0.0145919,0.274805,0.257208,0.351561,0.886035,0.719764,0.140261,0.926966,0.754443,0.318435,0.304411,0.870739,0.473202,0.505298,0.284588,0.914175,0.225574,0.264319,0.0701715,0.817994,0.0657427,0.0968566,0.365113,0.911379,0.407813,0.155966,0.295171,0.314989,0.915143,0.899145,0.443583,0.0924788,0.94095,0.383176,0.490524,0.948347,0.235315,0.516621,0.571102,0.0791872,0.765368,0.642706,0.8137,0.614482,0.139692,0.0644851,0.408233,0.878284,0.237145,0.191259,0.214356,0.178222,0.370083,0.132692,0.633565,0.559918,0.535684,0.363357,0.759855,0.3356,0.53069,0.368125,0.462855,0.250708,0.849662,0.804492,0.671376,0.625286,0.179676,0.891053,0.140296,0.0831144,0.591863,0.639574,0.153997,0.38951,0.794031,0.785625,0.474018,0.647408,0.0408117,0.34466,0.0154381,0.737375,0.837289,0.783336,0.996788,0.87865,0.564388,0.205339,0.254946,0.507575,0.149646,0.28536,0.10726,0.642641,0.663793,0.155997,0.432313,0.678434,0.714456,0.700087,0.233386,0.400113,0.990574,0.682608,0.819722,0.743349,0.190133,0.161704,0.893621,0.345045,0.427234,0.960189,0.490297,0.274748,0.276735,0.0394566,0.269664,0.853775,0.794127,0.245053,0.827547,0.259466,0.172503,0.90136,0.620303,0.250285,0.377431,0.658696,0.200078,0.263191,0.442719,0.413778,0.164055,0.25209,0.881782,0.971807,0.555118,0.613671,0.483553,0.904536,0.498475,0.49598,0.030748,0.866787,0.821151,0.252493,0.750083,0.314889,0.846078,0.586738,0.076637,0.644755,0.625506,0.0929375,0.861707,0.135536,0.996503,0.866457,0.97315,0.826886,0.199526,0.427171,0.326607,0.399143,0.214941,0.411388,0.668797,0.0603765,0.266528,0.268066,0.668196,0.81582,0.783888,0.199039,0.121401,0.919274,0.931678,0.600846,0.564522,0.39274,0.934505,0.616117,0.161487,0.519126,0.117656,0.000493824,0.168066,0.284196,0.967906,0.480918,0.483155,0.859495,0.554105,0.635219,0.109837,0.662166,0.660518,0.156264,0.681123,0.692842,0.0054028,0.362782,0.185699,0.8047,0.935612,0.402398,0.314793,0.921114,0.00773472,0.0991656,0.852537,0.503593,0.759968,0.566603,0.697909,0.977925,0.904033,0.666764,0.231842,0.762965,0.267942,0.38809,0.8786,0.550163,0.60392,0.768895,0.904643,0.428083,0.908282,0.893053,0.863534,0.787902,0.42667,0.688258,0.329351,0.156174,0.866963,0.283332,0.0325769,0.330505,0.336816,0.13803,0.781831,0.212986,0.171108,0.762626,0.279413,0.722133,0.496124,0.534988,0.781976,0.787398,0.391669,0.535788,0.840007,0.473007,0.881051,0.0496643,0.052694,0.896999,0.0139506,0.11262,0.212451,0.355447,0.862689,0.394109,0.23658,0.540598,0.0532202,0.688975,0.356493,0.605369,0.272999,0.699334,0.156209,0.337609,0.206057,0.288178,0.954911,0.0147285,0.375852,0.10621,0.659666,0.336641,0.405531,0.646545,0.896883,0.900813,0.684267,0.937155,0.754285,0.100765,0.947712,0.69757,0.754484,0.464173,0.474258,0.638511,0.239389,0.313025,0.60901,0.84323,0.612616,0.393702,0.305229,0.433077,0.144563,0.751293,0.421543,0.902827,0.821267,0.564688,0.458984,0.726009,0.524961,0.827563,0.0866913,0.601994,0.500416,0.857039,0.835835,0.78542,0.900928,0.278612,0.571255,0.483688,0.81431,0.69894,0.862003,0.642829,0.958446,0.0213734,0.688144,0.346102,0.631572,0.556374,0.762109,0.739482,0.285994,0.194814,0.973752,0.677225,0.867168,0.221145,0.821425,0.6318,0.639007,0.977545,0.973711,0.397395,0.206576,0.373429,0.371726,0.966992,0.166425,0.244924,0.418391,0.61942,0.870474,0.559416,0.866329,0.809318,0.746626,0.068081,0.228678,0.867211,0.685294,0.613634,5.88894e-05,0.386917,0.209941,0.69964,0.939386,0.869238,0.347832,0.921201,0.255445,0.569133,0.589919,0.854247,0.817943,0.870518,0.281493,0.318186,0.719729,0.77614,0.552855,0.968252,0.873477,0.580853,0.388411,0.782679,0.270136,0.744036,0.603075,0.385403,0.559411,0.679798,0.73963,0.27456,0.977298,0.475962,0.551911,0.727166,0.323068,0.718448,0.857474,0.645922,0.0846531,0.128304,0.992356,0.409556,0.163147,0.158362,0.560187,0.809129,0.703133,0.391132,0.487252,0.608229,0.152515,0.792603,0.921736,0.996112,0.167359,0.412458,0.973868,0.371266,0.33962,0.105606,0.366593,0.590579,0.509864,0.200748,0.97612,0.681523,0.668286,0.26708,0.901298,0.521897,0.79577,0.391486,0.790949,0.887532,0.255807,0.158848,0.602475,0.960101,0.413839,0.837156,0.239518,0.662792,0.429923,0.183555,0.967005,0.187627,0.854505,0.939921,0.645696,0.594642,0.438015,0.741008,0.494534,0.950854,0.668464,0.557411,0.154923,0.624991,0.455834,0.846749,0.968476,0.294385,0.255607,0.298329,0.906526,0.179831,0.491667,0.18283,0.503804,0.993309,0.0677305,0.787953,0.0211791,0.789916,0.883649,0.330421,0.952317,0.903169,0.542313,0.822161,0.395837,0.521137,0.578863,0.341899,0.438076,0.37092,0.000930011,0.253091,0.451528,0.430362,0.828676,0.786594,0.644845,0.463323,0.0728275,0.056078,0.154195,0.62232,0.0382935,0.207884,0.433403,0.779793,0.993021,0.729871,0.25699,0.748099,0.608832,0.713063,0.0549124,0.932959,0.489489,0.706642,0.516537,0.176253,0.463586,0.774423,0.0292582,0.603137,0.443687,0.654525,0.714548,0.210619,0.20581,0.594559,0.614564,0.877229,0.759374,0.430208,0.697569,0.9168,0.364825,0.103901,0.201106,0.42771,0.111827,0.775035,0.553749,0.822875,0.275841,0.763315,0.833599,0.125144,0.437752,0.848358,0.39944,0.24271,0.359833,0.186489,0.137227,0.978699,0.70524,0.503766,0.167491,0.852663,0.818689,0.632291,0.082432,0.244537,0.405984,0.118256,0.847564,0.320894,0.203258,0.981449,0.806106,0.344395,0.204913,0.43441,0.481453,0.14422,0.841661,0.0553461,0.95855,0.560417,0.305191,0.567547,0.364622,0.310265,0.11367,0.203163,0.312791,0.714205,0.730895,0.162095,0.0945666,0.992357,0.343772,0.787644,0.713211,0.186173,0.394958,0.924207,0.611724,0.303588,0.260196,0.132204,0.713283,0.937639,0.248281,0.330269,0.764891,0.789772,0.508609,0.387647,0.834278,0.116452,0.235475,0.431586,0.36107,0.365436,0.685243,0.976817,0.887299,0.504158,0.55259,0.491222,0.999636,0.604223,0.856492,0.658324,0.640036,0.58327,0.640251,0.132712,0.413096,0.772552,0.0548234,0.205659,0.994762,0.735788,0.150846,0.736479,0.26031,0.463859,0.637038,0.238037,0.858807,0.189317,0.649667,0.565427,0.0194373,0.73277,0.958845,0.469426,0.78868,0.21385,0.47946,0.811193,0.669101,0.982518,0.220003,0.212138,0.463304,0.0662526,0.775541,0.524754,0.0367232,0.539757,0.504127,0.14425,|0.756371,0.524296,0.801405,0.974153,0.0483425,0.98874,0.746624,0.0583323,0.205243,0.649123,0.617052,0.677873,0.401116,0.811199,0.868119,0.516935,0.338513,0.555596,0.635255,0.707683,0.317755,0.167303,0.811822,0.914412,0.233509,0.644628,0.177806,0.790727,0.463889,0.854407,0.123999,0.870229,0.940915,0.678617,0.66779,0.117438,0.933575,0.0541914,0.244862,0.988444,0.466179,0.933346,0.867297,0.472597,0.547692,0.493899,0.372219,0.930218,0.337893,0.805575,0.733912,0.785757,0.735522,0.495731,0.324704,0.990701,0.531145,0.0616219,0.628017,0.452066,0.0266708,0.636975,0.760526,0.500837,0.424749,0.11335,0.274779,0.651409,0.115606,0.731799,0.140005,0.049432,0.23339,0.736047,0.196149,0.12006,0.180956,0.82997,0.71725,0.284564,0.872409,0.957549,0.390384,0.241277,0.857046,0.15457,0.165006,0.909863,0.953432,0.595528,0.123848,0.211168,0.574186,0.314425,0.725936,0.242359,0.426158,0.189651,0.0532869,0.272907,0.158342,0.305477,0.0249099,0.230856,0.232502,0.753486,0.776257,0.0900005,0.646097,0.397948,0.711632,0.934604,0.238238,0.643917,0.329331,0.94844,0.43077,0.998233,0.834521,0.502822,0.748078,0.498688,0.811578,0.892039,0.229906,0.577112,0.00188094,0.0464191,0.563417,0.873154,0.601786,0.215627,0.404302,0.223689,0.0609462,0.555333,0.990268,0.45793,0.647058,0.325749,0.938441,0.472299,0.847915,0.28992,0.771762,0.998573,0.914391,0.0756393,0.519622,0.541472,0.621905,0.199401,0.0418299,0.44259,0.0731834,0.219457,0.0141691,0.651223,0.110425,0.331092,0.0895011,0.628832,0.817945,0.862313,0.690613,0.689251,0.639377,0.420403,0.644901,0.3915,0.684858,0.463398,0.82658,0.654604,0.883819,0.353212,0.510278,0.0320384,0.0852147,0.890862,0.955174,0.0750437,0.827209,0.467967,0.818412,0.176684,0.0967737,0.233555,0.0050419,0.423177,0.982293,0.314826,0.326576,0.756622,0.713798,0.559285,0.502681,0.751466,0.813744,0.997416,0.846562,0.242765,0.479036,0.97685,0.264739,0.424294,0.795182,0.617591,0.890742,0.791779,0.157687,0.0403936,0.500736,0.754733,0.973324,0.0113869,0.784809,0.788149,0.486825,0.0340202,0.579528,0.790491,0.5903,0.980462,0.825939,0.0452434,0.597069,0.0523807,0.483089,0.568762,0.778617,0.936232,0.813619,0.984654,0.46855,0.484201,0.989843,0.0391427,0.489445,0.38988,0.716099,0.753469,0.395542,0.675816,0.453773,0.162552,0.579705,0.87959,0.930802,0.703376,0.733481,0.57274,0.786058,0.468293,0.692162,0.575261,0.627581,0.642549,0.975462,0.0564072,0.300896,0.078739,0.294769,0.45514,0.844047,0.556021,0.322843,0.947025,0.563546,0.818331,0.290994,0.451444,0.0522824,0.901652,0.197024,0.780922,0.788247,0.431742,0.657593,0.954761,0.16236,0.292627,0.783372,0.984212,0.0698399,0.525226,0.0848547,0.0443537,0.0765427,0.701644,0.295627,0.54033,0.85355,0.205809,0.678822,0.30721,0.0168079,0.925904,0.660482,0.50217,0.35209,0.923678,0.654541,0.0662088,0.516302,0.207455,0.607283,0.485804,0.637214,0.0440977,0.235625,0.59098,0.219505,0.257209,0.0902254,0.260203,0.84663,0.224636,0.12532,0.0710982,0.328418,0.61444,0.509469,0.673541,0.919858,0.882486,0.677882,0.964947,0.47326,0.503723,0.196624,0.0128096,0.602224,0.71758,0.418152,0.184479,0.562673,0.555111,0.735226,0.526487,0.86985,0.712484,0.248132,0.634269,0.890369,0.241646,0.605292,0.861569,0.92055,0.902828,0.579987,0.944885,0.397417,0.595338,0.302444,0.34777,0.447806,0.585939,0.472334,0.726873,0.304546,0.913072,0.549664,0.385306,0.129312,0.213561,0.748056,0.152187,0.264498,0.396584,0.133644,0.972541,0.475367,0.187324,0.588875,0.0972078,0.167298,0.573042,0.716302,0.831245,0.724057,0.179411,0.886125,0.253263,0.765072,0.920771,0.478883,0.355732,0.719374,0.51458,0.594774,0.30149,0.104051,0.250718,0.18018,0.43014,0.809767,0.749103,0.779993,0.627459,0.771974,0.0703142,0.53475,0.845327,0.0516378,0.332508,0.961098,0.678174,0.874287,0.429626,0.445929,0.574971,0.246448,0.789283,0.204349,0.0272043,0.864515,0.346323,0.70799,0.655611,0.638298,0.820812,0.83221,0.78543,0.69959,0.48377,0.0271347,0.864158,0.398081,0.433646,0.0189022,0.269235,0.428006,0.719992,0.740867,0.670442,0.507915,0.0357931,0.735603,0.0659789,0.466843,0.357952,0.505705,0.676685,0.471109,0.704594,0.36979,0.0586553,0.432833,0.0614551,0.594673,0.67085,0.564082,0.437984,0.835655,0.688652,0.553325,0.722573,0.913483,0.71769,0.32648,0.267273,0.643131,0.999682,0.817348,0.597007,0.901252,0.786228,0.260065,0.470101,0.108161,0.677299,0.717038,0.451291,0.714847,0.773887,0.397585,0.841463,0.857291,0.22079,0.0072307,0.288889,0.340355,0.874346,0.179822,0.742981,0.752695,0.548027,0.719553,0.395955,0.332672,0.00133932,0.340442,0.479864,0.824186,0.403867,0.742692,0.475142,0.518674,0.600036,0.49552,0.714989,0.937741,0.842975,0.594561,0.581074,0.267043,0.665616,0.562129,0.880909,0.0748912,0.897475,0.826223,0.599604,0.647591,0.669218,0.156203,0.344716,0.576287,0.290883,0.876453,0.818164,0.0385525,0.019814,0.245411,0.0574281,0.294743,0.424501,0.0394964,0.29141,0.401297,0.61949,0.517291,0.487347,0.149767,0.0504392,0.335014,0.560366,0.73338,0.0214908,0.454797,0.316007,0.643332,0.294035,0.480502,0.782501,0.962689,0.954934,0.000505984,0.510887,0.204653,0.569368,0.570524,0.904855,0.93285,0.253229,0.799317,0.842213,0.638738,0.56256,0.123,0.389242,0.120887,0.96783,0.98619,0.283934,0.579771,0.936575,0.927999,0.205649,0.116272,0.699107,0.913219,0.159679,0.371699,0.815849,0.885106,0.588925,0.599931,0.620559,0.574419,0.673785,0.957704,0.567319,0.288294,0.360577,0.126685,0.557042,0.958201,0.532771,0.0342969,0.283766,0.0293952,0.0538355,0.679573,0.0738795,0.437302,0.920097,0.906463,0.442548,0.843602,0.934506,0.153311,0.883985,0.680023,0.496875,0.203383,0.601444,0.0982317,0.888834,0.515423,0.113328,0.245261,0.840944,0.806083,0.0153688,0.170575,0.325009,0.229071,0.738166,0.00613517,0.310442,0.650387,0.373272,0.646392,0.66848,0.559533,0.271495,0.0326256,0.452487,0.12147,0.737475,0.255048,0.999324,0.159303,0.722181,0.0447628,0.396901,0.595181,0.133587,0.548073,0.3968,0.709277,0.300718,0.388236,0.276459,0.459389,0.874843,0.0791208,0.32859,0.766769,0.950141,0.353435,0.39938,0.203962,0.328304,0.850314,0.150903,0.119326,0.366175,0.951236,0.434404,0.941707,0.460199,0.321108,0.103622,0.783916,0.0912687,0.530121,0.0563987,0.369261,0.070344,0.766323,0.229405,0.254936,0.753403,0.548881,0.978307,0.434488,0.730218,0.398539,0.691158,0.482958,0.776934,0.672644,0.40508,0.216162,0.323526,0.211372,0.0752974,0.342722,0.672499,0.654134,0.212047,0.404816,0.71299,0.067286,0.539266,0.622863,0.668964,0.287299,0.755208,0.382429,0.443111,0.299165,0.170466,0.574846,0.324414,0.266969,0.331993,0.0782852,0.206184,0.905317,0.644974,0.0164213,0.0500596,0.495798,0.681402,0.87244,0.649672,0.136229,0.153532,0.539756,0.287791,0.196743,0.437293,0.265918,0.79635,0.181031,0.413269,0.0268209,0.652768,0.177338,0.4308,0.824863,0.951497,0.354033,0.763542,0.462232,0.202784,0.145408,0.839225,0.0672935,0.889284,0.42342,0.462207,0.524714,0.153318,0.137255,0.204203,0.29236,0.325633,0.116142,0.339765,0.788178,0.546921,0.909196,0.105558,0.173787,0.836003,0.845578,0.766229,0.497336,0.954665,0.0723104,0.512089,0.631477,0.567193,0.964055,0.587738,0.501899,0.391995,0.984695,0.564813,0.769567,0.596655,0.0205144,0.411213,0.0258285,0.274472,0.139136,0.236403,0.390992,0.151172,0.223348,0.747138,0.141366,0.572515,0.268361,0.585653,0.119866,0.131169,0.50525,0.680652,0.00182128,0.931325,0.260802,0.294551,0.109767,0.183639,0.915705,0.721556,0.690028,0.0084222,0.0533749,0.0267604,0.336196,0.00831169,0.0279507,0.176371,0.8457,0.453936,0.32764,0.225877,0.375419,0.411096,0.405685,0.343035,0.364582,0.0064162,0.722115,0.961901,0.877775,0.891378,0.26277,0.386329,0.29591,0.569958,0.390896,0.963795,0.140382,0.788884,0.813242,0.603552,0.576093,0.445838,0.247035,0.112612,0.33772,0.207111,0.110942,0.751126,0.664481,0.20104,0.422302,0.404576,0.760497,0.0310081,0.765793,0.95905,0.113428,0.139506,0.646031,0.0317988,0.239832,0.447749,0.835187,0.384479,0.53538,0.940276,0.993497,0.942253,0.236418,0.137467,0.839262,0.857944,0.581963,0.706219,0.581984,0.268793,0.961766,0.340604,0.256929,0.441462,0.0941175,0.735663,0.375058,0.980274,0.0164083,0.928939,0.471559,0.406766,0.305278,0.966864,0.536021,0.268405,0.14461,0.584171,0.828638,0.435353,0.529743,0.142901,0.177667,0.687732,0.244527,0.280503,0.469802,0.686393,0.196566,0.720118,0.7558,0.927353,0.337927,0.708861,0.629132,0.583267,0.885356,0.725386,0.926344,0.822478,0.707507,0.0125796,0.518414,0.403534,0.395489,0.566703,0.997413,0.550751,0.354735,0.0533537,0.942855,0.479834,0.567948,0.5564,0.717851,0.782441,0.579076,0.255374,0.704138,0.0380703,0.00791514,0.762129,0.916018,0.645323,0.198452,0.407372,0.632431,0.779363,0.0150296,0.318569,0.77531,0.65112,0.405976,0.598551,0.806642,0.786884,0.287043,0.933871,0.812578,0.0637805,0.891358,0.522883,0.911845,0.791559,0.506258,0.584286,0.985795,0.316658,0.443892,0.65874,0.954162,0.106859,0.647017,0.17144,0.132228,0.0773826,0.0720633,0.877003,0.108941,0.981005,0.993415,0.0213408,0.316461,0.509634,0.986399,0.355067,0.302559,0.502144,0.0291374,0.312356,0.925051,0.466783,0.042542,0.453788,0.683447,0.0686191,0.614644,0.077008,0.768337,0.752478,0.579692,0.98496,0.47758,0.178131,0.454054,0.584117,0.483052,0.792869,0.839016,0.418316,|0.576496,0.972611,0.292257,0.535839,0.418619,0.0566574,0.525933,0.637055,0.143887,0.297782,0.0184473,0.304099,0.689762,0.215917,0.901824,0.0753917,0.967823,0.529396,0.0423589,0.805983,0.571414,0.38475,0.0474802,0.0897668,0.415451,0.829123,0.605702,0.375058,0.0388007,0.408594,0.784455,0.135348,0.122606,0.324114,0.847519,0.821726,0.709797,0.637251,0.402421,0.874623,0.0793211,0.231387,0.0080201,0.374994,0.0356362,0.987555,0.942331,0.357465,0.0357273,0.86308,0.746636,0.0725194,0.622362,0.484398,0.869623,0.760578,0.574396,0.693494,0.234824,0.624848,0.0663503,0.253411,0.418518,0.706058,0.472317,0.547674,0.707437,0.72,0.774333,0.385756,0.469956,0.532911,0.337875,0.682793,0.960261,0.757897,0.126867,0.223576,0.812939,0.361091,0.442524,0.343656,0.710949,0.828999,0.0233636,0.536732,0.529219,0.292122,0.43951,0.826598,0.236866,0.391251,0.591627,0.437166,0.343415,0.720389,0.1147,0.910132,0.418532,0.812788,0.0615222,0.721856,0.607454,0.662209,0.53748,0.718402,0.649213,0.614266,0.524537,0.514307,0.534178,0.179971,0.792192,0.664345,0.241616,0.594092,0.952826,0.0665392,0.0352483,0.135025,0.323272,0.389965,0.687403,0.443225,0.496467,0.880481,0.390351,0.33585,0.34703,0.687448,0.185576,0.0134427,0.355471,0.32408,0.650091,0.906466,0.842307,0.44837,0.830486,0.814431,0.0514352,0.580404,0.0677232,0.00788289,0.714738,0.940571,0.503517,0.357035,0.383395,0.240042,0.651758,0.132657,0.638291,0.947347,0.699471,0.893533,0.198327,0.205693,0.47235,0.912244,0.681241,0.857933,0.58081,0.144989,0.697873,0.812609,0.154573,0.675748,0.580568,0.449981,0.849062,0.823022,0.553266,0.841754,0.457606,0.157684,0.755913,0.0776567,0.0927318,0.738377,0.310468,0.317261,0.729972,0.587663,0.310455,0.789528,0.625676,0.0457113,0.433189,0.824146,0.568343,0.470091,0.495875,0.686532,0.850492,0.853856,0.468005,0.584575,0.962412,0.435133,0.389985,0.902369,0.020092,0.89385,0.0108373,0.792806,0.683186,0.057558,0.885659,0.647153,0.36926,0.195866,0.94988,0.231268,0.0429311,0.297304,0.439751,0.948047,0.0159218,0.890823,0.925236,0.915959,0.972739,0.204501,0.294377,0.466428,0.0121729,0.756197,0.609399,0.0528657,0.509402,0.857953,0.214917,0.660126,0.912426,0.490333,0.0504937,0.719888,0.733156,0.562622,0.0811991,0.802003,0.53519,0.30835,0.232673,0.0733823,0.226242,0.05176,0.0929009,0.729224,0.870637,0.834793,0.348775,0.794575,0.0200796,0.924759,0.562747,0.527905,0.0268626,0.422924,0.865869,0.532825,0.0906692,0.744361,0.467139,0.734075,0.532427,0.422828,0.550403,0.467104,0.164201,0.622243,0.450415,0.0967847,0.323923,0.657482,0.127161,0.757434,0.514385,0.392975,0.796401,0.649906,0.815278,0.0532436,0.638865,0.692678,0.539439,0.640136,0.728433,0.898968,0.369817,0.213946,0.00962991,0.012336,0.310292,0.86564,0.762052,0.385822,0.443685,0.478385,0.127935,0.628736,0.358854,0.689119,0.424389,0.86664,0.593751,0.43665,0.294627,0.570004,0.419114,0.136766,0.320328,0.870488,0.507813,0.52467,0.188163,0.520032,0.0718122,0.598086,0.946323,0.0400376,0.755366,0.517088,0.915661,0.919773,0.606973,0.452136,0.0440766,0.73643,0.00757366,0.0478197,0.524586,0.172908,0.196991,0.126336,0.0129774,0.473491,0.258284,0.0636011,0.033118,0.0252976,0.242248,0.411313,0.375036,0.894175,0.932033,0.447986,0.978872,0.998563,0.0910142,0.0957728,0.684946,0.54823,0.980987,0.66115,0.275433,0.342678,0.0275567,0.629428,0.903241,0.59237,0.0735456,0.255898,0.240948,0.278031,0.423861,0.760762,0.841019,0.929158,0.00708663,0.756773,0.035149,0.995964,0.718896,0.557979,0.904878,0.109747,0.178715,0.0463564,0.70708,0.0720791,0.531063,0.453701,0.23987,0.833466,0.961653,0.796142,0.920509,0.613394,0.26709,0.219758,0.272653,0.953064,0.690058,0.639414,0.0111223,0.662176,0.0844409,0.0922701,0.0320654,0.188222,0.699668,0.196051,0.160281,0.00592762,0.95868,0.761858,0.999809,0.796708,0.713914,0.0505027,0.7562,0.696704,0.906365,0.952074,0.90411,0.491282,0.384689,0.798868,0.64146,0.34095,0.416634,0.987888,0.955234,0.107403,0.818695,0.839895,0.858204,0.387691,0.208046,0.149036,0.347759,0.0803607,0.273927,0.331826,0.859376,0.455704,0.337549,0.174992,0.537033,0.289128,0.557879,0.348752,0.834931,0.198226,0.918901,0.233397,0.0332235,0.214736,0.431923,0.764543,0.264078,0.784771,0.663397,0.197395,0.580343,0.0380238,0.768567,0.42894,0.360379,0.578381,0.798858,0.901367,0.541058,0.649268,0.037675,0.225237,0.0987299,0.634644,0.31628,0.239202,0.682035,0.79743,0.794785,0.593685,0.857928,0.192781,0.127967,0.0296985,0.220458,0.015168,0.0437276,0.340578,0.739903,0.407652,0.0545059,0.975265,0.825259,0.157973,0.0702761,0.304032,0.210172,0.68947,0.690416,0.38374,0.27651,0.707039,0.818289,0.422197,0.234613,0.712868,0.12756,0.391968,0.309063,0.45219,0.463959,0.190801,0.36889,0.923705,0.00209188,0.810128,0.915856,0.857057,0.127362,0.0157707,0.0495112,0.50425,0.877807,0.184791,0.997789,0.702234,0.817941,0.244414,0.4409,0.763151,0.876745,0.950741,0.955933,0.92971,0.953024,0.28655,0.927971,0.734006,0.156618,0.134969,0.178635,0.575194,0.874139,0.870788,0.304125,0.385569,0.473125,0.0435812,0.45782,0.257205,0.0852633,0.507099,0.435226,0.749931,0.969327,0.42679,0.894802,0.920946,0.545506,0.125996,0.9311,0.78507,0.395985,0.108712,0.0191108,0.167082,0.160718,0.280163,0.0133806,0.199501,0.706602,0.280034,0.630626,0.659138,0.0528294,0.918086,0.128959,0.0825379,0.706386,0.0501133,0.685841,0.515418,0.0780284,0.881871,0.876243,0.181732,0.125357,0.122867,0.788645,0.0110916,0.626763,0.314756,0.909303,0.950613,0.549474,0.440063,0.778338,0.330218,0.381701,0.632549,0.491373,0.442307,0.679178,0.0598385,0.692974,0.898556,0.830992,0.851082,0.29039,0.590401,0.791513,0.976003,0.8778,0.45479,0.280501,0.34979,0.892102,0.981782,0.652435,0.864232,0.437586,0.0446351,0.962501,0.245718,0.648975,0.733995,0.159392,0.377973,0.0741783,0.573681,0.865705,0.958465,0.582269,0.468947,0.0340814,0.621172,0.814465,0.6707,0.6077,0.879502,0.994394,0.397827,0.0389241,0.994577,0.304125,0.523026,0.225921,0.679298,0.344701,0.395283,0.118154,0.128999,0.950624,0.558688,0.928848,0.42659,0.743776,0.182941,0.827881,0.784032,0.991926,0.0438633,0.14988,0.474727,0.120371,0.43167,0.946559,0.510847,0.258454,0.65476,0.44929,0.747757,0.581517,0.654504,0.410817,0.369171,0.779603,0.461667,0.309361,0.853981,0.735909,0.745045,0.241618,0.943122,0.863348,0.272037,0.382385,0.0305094,0.656012,0.973582,0.486161,0.985331,0.905082,0.55211,0.477998,0.222893,0.962157,0.888808,0.267021,0.647419,0.13748,0.141998,0.148693,0.985855,0.815774,0.949692,0.564355,0.489076,0.37054,0.784126,0.545805,0.821124,0.719713,0.369399,0.108507,0.851264,0.287221,0.844473,0.898476,0.649863,0.926356,0.540138,0.0528362,0.597029,0.319364,0.0314553,0.734281,0.548621,0.267325,0.00875098,0.101252,0.901149,0.651561,0.639069,0.573843,0.390938,0.388698,0.207721,0.554997,0.161119,0.809468,0.956869,0.275219,0.63013,0.19922,0.720497,0.0371411,0.0184601,0.437569,0.739839,0.217999,0.531269,0.428382,0.101428,0.614403,0.743038,0.270824,0.64935,0.733081,0.730495,0.794611,0.88633,0.621658,0.458535,0.767121,0.484139,0.585691,0.469568,0.956497,0.740913,0.531537,0.880987,0.847841,0.39179,0.302714,0.0745361,0.356315,0.407599,0.674337,0.847549,0.7179,0.665057,0.382883,0.411057,0.651081,0.645669,0.706569,0.0598434,0.879409,0.151912,0.580112,0.467186,0.543562,0.598435,0.430049,0.591711,0.243855,0.526755,0.865229,0.494993,0.106353,0.255822,0.114487,0.126184,0.709295,0.697387,0.0259405,0.534699,0.107745,0.172781,0.585148,0.157905,0.426752,0.563385,0.0278002,0.0965862,0.456117,0.852024,0.824326,0.760949,0.366044,0.503232,0.323872,0.666154,0.850023,0.92379,0.892416,0.525671,0.543837,0.677886,0.0845787,0.755167,0.416887,0.547886,0.834947,0.782339,0.725028,0.598715,0.0501048,0.366943,0.565977,0.0596065,0.871187,0.999513,0.523285,0.59692,0.726506,0.490663,0.235483,0.292522,0.318691,0.72464,0.6835,0.298985,0.48466,0.336711,0.967129,0.0565457,0.968021,0.275847,0.306171,0.723479,0.0481063,0.0876409,0.0524106,0.836238,0.500178,0.105726,0.0111397,0.812193,0.448671,0.0735256,0.928148,0.118474,0.829249,0.146445,0.00861245,0.840695,0.148665,0.479922,0.863351,0.233457,0.920084,0.108794,0.554336,0.335466,0.37144,0.968921,0.0594214,0.594364,0.883981,0.919348,0.373646,0.319916,0.555649,0.763749,0.853473,0.930388,0.521681,0.345541,0.313945,0.845643,0.495293,0.389836,0.707179,0.246165,0.660713,0.0795416,0.716783,0.650359,0.14088,0.119642,0.894789,0.472545,0.68115,0.198313,0.0799438,0.350001,0.284008,0.208978,0.611842,0.357569,0.629322,0.880879,0.533904,0.540978,0.587678,0.358799,0.506594,0.684501,0.261563,0.650112,0.385302,0.999598,0.237297,0.965755,0.451593,0.257104,0.869198,0.852521,0.913596,0.0210686,0.442755,0.303707,0.700599,0.595883,0.144784,0.258595,0.247078,0.456619,0.878939,0.955678,0.00487584,0.67823,0.333599,0.0528334,0.280487,0.0405614,0.842501,0.785164,0.033235,0.217673,0.0982646,0.774917,0.894156,0.444647,0.76821,0.735281,0.121353,0.923347,0.238787,0.707715,0.32253,0.122735,0.750948,0.381123,0.63066,0.48495,0.851969,0.818668,0.23235,0.562443,0.16737,0.697245,0.68578,0.805292,0.58961,0.883024,0.602982,0.496669,0.742886,0.29426,0.150718,0.151149,0.796432,0.851841,0.410265,0.874039,0.586532,0.485721,0.41023,0.982467,0.17936,0.769139,|0.315226,0.531663,0.573395,0.0812268,0.332775,0.016122,0.148181,0.0401002,0.383202,0.426431,0.998078,0.421793,0.576258,0.0735759,0.471542,0.130118,0.244243,0.890405,0.0647969,0.680077,0.130196,0.351729,0.496442,0.292887,0.519168,0.0131427,0.976141,0.986529,0.277669,0.633292,0.16351,0.665861,0.312181,0.831471,0.0378736,0.117778,0.0651483,0.682497,0.901902,0.817198,0.910734,0.272605,0.368456,0.729729,0.768903,0.75708,0.789276,0.854289,0.312999,0.651444,0.777925,0.977577,0.554698,0.956503,0.585764,0.12323,0.972567,0.204437,0.218004,0.617525,0.31862,0.214595,0.946278,0.499994,0.596217,0.258076,0.525528,0.426779,0.677312,0.298542,0.536991,0.683284,0.777906,0.761319,0.742704,0.602359,0.727364,0.506549,0.44669,0.95739,0.893248,0.910405,0.550959,0.658566,0.988808,0.912557,0.8968,0.58361,0.493105,0.496132,0.0668857,0.0778398,0.996289,0.594231,0.396335,0.748377,0.727028,0.300646,0.0421088,0.785455,0.472368,0.132829,0.587252,0.815867,0.0629998,0.437979,0.1231,0.287989,0.507186,0.374722,0.675217,0.128411,0.0981774,0.0880662,0.100134,0.162979,0.54773,0.134769,0.988458,0.653922,0.32032,0.57204,0.603348,0.0546284,0.177588,0.667567,0.902192,0.142826,0.746954,0.413992,0.718501,0.503896,0.436764,0.619897,0.519513,0.657294,0.793358,0.382082,0.918052,0.640079,0.844597,0.54714,0.541824,0.855692,0.365529,0.950405,0.249131,0.193617,0.0137306,0.923266,0.654609,0.662183,0.415657,0.215791,0.161599,0.00738257,0.121002,0.435906,0.268116,0.959145,0.790475,0.69477,0.764593,0.982056,0.0365472,0.84651,0.585422,0.810074,0.755433,0.489428,0.128877,0.555116,0.420429,0.377645,0.790634,0.846307,0.819522,0.925706,0.543228,0.159872,0.504179,0.431965,0.994952,0.139731,0.361452,0.341005,0.728338,0.686328,0.647286,0.105052,0.901264,0.999087,0.505155,0.699695,0.428925,0.0797443,0.0853453,0.434624,0.939819,0.12569,0.0470959,0.537735,0.163144,0.00184661,0.636498,0.266868,0.533704,0.735019,0.318794,0.0455508,0.43825,0.386027,0.409114,0.239747,0.841792,0.0430735,0.421842,0.387172,0.773904,0.988243,0.421329,0.449954,0.949807,0.626849,0.17398,0.51213,0.0721518,0.213527,0.861122,0.368539,0.312307,0.908497,0.477659,0.585562,0.912049,0.896897,0.799092,0.746741,0.0393002,0.918344,0.397813,0.0967465,0.439212,0.593032,0.458796,0.962383,0.678434,0.390911,0.957858,0.282151,0.433166,0.316461,0.186753,0.512764,0.00457209,0.163112,0.485405,0.419173,0.227531,0.306224,0.156214,0.633617,0.334741,0.347667,0.992639,0.0538339,0.940103,0.449931,0.157832,0.896156,0.642939,0.0618951,0.417724,0.166377,0.68143,0.903467,0.994324,0.255364,0.432728,0.834881,0.983136,0.704582,0.90587,0.765449,0.466158,0.898942,0.405996,0.224265,0.0374908,0.0170417,0.215659,0.356271,0.320432,0.295019,0.066498,0.771751,0.587808,0.660824,0.418172,0.72865,0.851051,0.551347,0.894232,0.384027,0.360701,0.582068,0.79436,0.0456796,0.172136,0.0906926,0.155103,0.762064,0.713383,0.564802,0.969682,0.14428,0.985138,0.824823,0.0692816,0.226904,0.800682,0.807084,0.151587,0.000420272,0.771034,0.471659,0.891762,0.996334,0.136614,0.450428,0.299548,0.828629,0.355721,0.813967,0.944515,0.73195,0.997679,0.534616,0.94339,0.358878,0.661263,0.433979,0.0794248,0.107921,0.972983,0.422149,0.953366,0.289472,0.481095,0.0136528,0.0137349,0.902784,0.419808,0.558888,0.053826,0.543744,0.2711,0.663594,0.54853,0.426565,0.76784,0.596254,0.266984,0.822153,0.896034,0.194331,0.593925,0.405085,0.444673,0.278817,0.299029,0.678923,0.0972188,0.250526,0.673395,0.0634666,0.851923,0.817375,0.782231,0.262206,0.463465,0.536167,0.675195,0.572531,0.789283,0.515692,0.2046,0.028199,0.997395,0.143795,0.776685,0.833487,0.0719265,0.69102,0.216503,0.767843,0.303485,0.733924,0.205291,0.992564,0.525879,0.740289,0.795928,0.989405,0.215489,0.783244,0.718179,0.840733,0.423865,0.944529,0.21513,0.0462701,0.926466,0.927673,0.278125,0.928351,0.48656,0.8692,0.10034,0.560074,0.588754,0.268613,0.905932,0.274656,0.0887885,0.665515,0.569957,0.658004,0.302294,0.445071,0.174705,0.762315,0.0479296,0.873858,0.941101,0.130648,0.131006,0.0189202,0.125273,0.206103,0.855407,0.321503,0.849866,0.42246,0.832612,0.277407,0.733095,0.734661,0.829003,0.0610761,0.860888,0.522713,0.126823,0.574498,0.245719,0.258826,0.707072,0.0846074,0.203637,0.915847,0.635556,0.118324,0.735838,0.695414,0.56412,0.922353,0.653659,0.495481,0.205438,0.276525,0.264266,0.205159,0.976718,0.464172,0.52044,0.541209,0.241776,0.0661755,0.110669,0.732331,0.892682,0.0287763,0.524735,0.464433,0.883828,0.668215,0.556957,0.290288,0.4986,0.32696,0.0469278,0.453675,0.301942,0.528647,0.626221,0.735014,0.264276,0.99163,0.895421,0.895772,0.0215156,0.263126,0.318495,0.288975,0.0534422,0.834722,0.952647,0.616723,0.560934,0.319412,0.346073,0.843191,0.53193,0.584632,0.119703,0.474455,0.743701,0.00420761,0.898562,0.514032,0.5469,0.015255,0.217474,0.671655,0.526449,0.93384,0.0593489,0.837455,0.329953,0.405587,0.912274,0.417438,0.423917,0.947739,0.106994,0.629744,0.0448335,0.970197,0.520374,0.365546,0.970893,0.123277,0.350389,0.45453,0.300068,0.476676,0.548319,0.352449,0.684058,0.959159,0.821591,0.592197,0.409867,0.222858,0.888195,0.455816,0.588686,0.457447,0.731414,0.450391,0.0132486,0.634773,0.934639,0.962783,0.658224,0.202093,0.437783,0.195018,0.350823,0.996626,0.506439,0.668228,0.99658,0.584244,0.722192,0.656821,0.106293,0.97298,0.829177,0.545602,0.0927173,0.179173,0.335693,0.873089,0.722853,0.147752,0.400321,0.953063,0.502907,0.77068,0.958481,0.0402463,0.451556,0.703824,0.0835908,0.969741,0.883423,0.672187,0.109963,0.649931,0.0523539,0.457554,0.83839,0.53259,0.368086,0.561146,0.00790191,0.453345,0.740636,0.517061,0.554397,0.200329,0.432162,0.211984,0.0490545,0.772661,0.705763,0.732727,0.187166,0.996778,0.809936,0.251825,0.718133,0.711864,0.943339,0.0597593,0.920891,0.113486,0.552539,0.462361,0.724261,0.993738,0.983339,0.725744,0.224386,0.0323659,0.940904,0.415862,0.96366,0.933743,0.660444,0.321914,0.336123,0.725478,0.426662,0.173604,0.335076,0.474305,0.461351,0.53027,0.844467,0.949322,0.41256,0.138266,0.310433,0.9584,0.718169,0.35318,0.765223,0.229947,0.595481,0.551153,0.720062,0.186758,0.416468,0.633673,0.168404,0.000539482,0.089031,0.350693,0.814852,0.238161,0.963494,0.662445,0.18819,0.573628,0.184813,0.472563,0.366361,0.17059,0.947,0.82717,0.657439,0.25653,0.64503,0.405965,0.218533,0.856639,0.777234,0.489591,0.582408,0.305235,0.386611,0.288307,0.502899,0.545896,0.716796,0.527221,0.659345,0.00482941,0.922485,0.366168,0.361671,0.467403,0.223342,0.900418,0.396606,0.52495,0.991132,0.729261,0.120547,0.0429896,0.91292,0.212318,0.107881,0.851978,0.653882,0.723391,0.842041,0.744179,0.256353,0.0236328,0.470522,0.321284,0.254941,0.934463,0.74528,0.911341,0.144894,0.554763,0.674394,0.40259,0.475579,0.543844,0.364366,0.255072,0.0699558,0.10529,0.130469,0.463046,0.279183,0.137985,0.694518,0.343681,0.174024,0.0144677,0.545578,0.991013,0.294638,0.17399,0.383697,0.322357,0.202317,0.575302,0.391749,0.0204363,0.756959,0.227746,0.58219,0.942296,0.50631,0.507706,0.227751,0.837237,0.765836,0.47026,0.0348587,0.697688,0.839656,0.56974,0.256465,0.291513,0.830826,0.0488682,0.13772,0.855824,0.653839,0.931626,0.178514,0.256831,0.715895,0.351936,0.859833,0.411474,0.824065,0.274573,0.855049,0.174342,0.539438,0.696734,0.665837,0.427768,0.402097,0.95629,0.109901,0.139124,0.700626,0.875645,0.404398,0.864348,0.449497,0.834989,0.813072,0.61621,0.0747625,0.0785567,0.653791,0.910998,0.0434997,0.971748,0.369369,0.130272,0.489528,0.0550962,0.279904,0.465583,0.478439,0.103438,0.474243,0.203406,0.508687,0.17244,0.456199,0.101544,0.471195,0.955176,0.718509,0.742497,0.554252,0.892382,0.611175,0.789823,0.255767,0.857118,0.865189,0.974187,0.223045,0.995193,0.22357,0.291662,0.533176,0.981748,0.421393,0.261493,0.26219,0.410242,0.252111,0.653493,0.128659,0.749389,0.198708,0.467738,0.37757,0.046156,0.673816,0.566426,0.288745,0.237075,0.87104,0.175007,0.983913,0.20267,0.109299,0.368767,0.826287,0.142351,0.999325,0.740068,0.262588,0.152392,0.504688,0.499945,0.910868,0.877544,0.850495,0.884441,0.0550022,0.758169,0.519931,0.427225,0.432839,0.534532,0.393615,0.446137,0.813025,0.0659449,0.509795,0.785731,0.536915,0.607437,0.103892,0.202269,0.402435,0.700686,0.732419,0.0610125,0.431009,0.772179,0.957791,0.677129,0.979987,0.832676,0.356615,0.463007,0.0510746,0.102764,0.857172,0.290888,0.663415,0.152056,0.376408,0.838389,0.552111,0.133639,0.578004,0.837625,0.50671,0.039683,0.659782,0.699654,0.652005,0.552178,0.210847,0.518714,0.797938,0.247892,0.430829,0.94322,0.956276,0.759862,0.43526,0.987996,0.923042,0.456856,0.00400668,0.643706,0.213842,0.766332,0.613893,0.286425,0.31253,0.818217,0.0704826,0.532098,0.936982,0.435251,0.0957624,0.757006,0.75269,0.621716,0.904948,0.121484,0.605899,0.822328,0.92036,0.934116,0.951594,0.181118,0.227695,0.735018,0.947813,0.856527,0.701777,0.0779134,0.226059,0.751454,0.930174,0.0513912,0.09375,0.258119,0.748736,0.322407,0.0787234,0.0997126,0.319065,0.248778,0.639455,0.0150092,0.184818,0.844123,0.318141,0.73431,0.919716,0.730319,0.89396,0.62953,0.211382,0.646209,0.344412,0.707232,0.49657,0.0144212,0.567693,0.281734,0.792297,0.924065,0.870316,0.783881,0.608036,0.632502,|0.174144,0.912682,0.000978112,0.743836,0.450157,0.808024,0.793603,0.719042,0.350627,0.976062,0.549179,0.430655,0.148547,0.472866,0.742012,0.840724,0.146925,0.740611,0.335309,0.330612,0.0275549,0.907959,0.810197,0.0980237,0.140051,0.756647,0.872328,0.646313,0.923682,0.550876,0.870734,0.531884,0.0296686,0.155547,0.50182,0.749921,0.000972927,0.68405,0.432645,0.0979706,0.310015,0.702182,0.142327,0.599536,0.155165,0.898048,0.449729,0.536049,0.556266,0.217329,0.170556,0.163729,0.875678,0.0969924,0.783319,0.59073,0.0586295,0.404221,0.609646,0.0351968,0.48158,0.798782,0.160554,0.309705,0.735558,0.369654,0.291898,0.0594447,0.14221,0.719062,0.314966,0.83361,0.47327,0.8899,0.191265,0.395807,0.460421,0.877343,0.0308378,0.32495,0.562662,0.865501,0.998553,0.994925,0.239344,0.134127,0.476993,0.232942,0.285478,0.355515,0.0389187,0.50731,0.0710897,0.678568,0.643688,0.187701,0.749586,0.655167,0.754227,0.72867,0.462999,0.466879,0.784188,0.375523,0.0105935,0.270557,0.556115,0.432248,0.289367,0.143398,0.529634,0.47836,0.894559,0.204992,0.216553,0.463507,0.893834,0.45264,0.761393,0.36902,0.262797,0.929312,0.99325,0.725444,0.637799,0.294175,0.966358,0.611855,0.856838,0.218586,0.129157,0.89245,0.42592,0.543459,0.590006,0.638047,0.68512,0.155588,0.0518755,0.184742,0.775073,0.912489,0.666929,0.20081,0.18496,0.98856,0.0745424,0.112608,0.284342,0.981435,0.199895,0.263814,0.600816,0.837519,0.715425,0.0520218,0.9676,0.381246,0.700965,0.407363,0.174831,0.289575,0.841244,0.667351,0.236388,0.539329,0.928764,0.82559,0.373034,0.09052,0.482025,0.973085,0.340778,0.184967,0.890391,0.349802,0.352843,0.821955,0.993796,0.336541,0.611397,0.242488,0.645398,0.336605,0.959692,0.0898887,0.744146,0.687668,0.583875,0.896525,0.82971,0.2617,0.110474,0.987658,0.778007,0.309746,0.012907,0.555185,0.155899,0.864915,0.595212,0.771256,0.359308,0.2755,0.990449,0.273067,0.0498087,0.676332,0.541675,0.908865,0.84678,0.237187,0.754302,0.45831,0.461601,0.76752,0.54008,0.127539,0.855175,0.71355,0.901424,0.868028,0.910466,0.213888,0.419329,0.682893,0.494698,0.0117785,0.212056,0.616953,0.105559,0.225896,0.874334,0.901193,0.783885,0.553548,0.460374,0.559051,0.873155,0.344837,0.0630635,0.476488,0.0455388,0.0238588,0.420956,0.96784,0.105585,0.391946,0.204778,0.353227,0.380119,0.371158,0.119847,0.886369,0.98501,0.3134,0.2949,0.119467,0.443731,0.773941,0.831242,0.558236,0.0344357,0.157495,0.128804,0.748241,0.76457,0.593344,0.167225,0.74508,0.878908,0.0749424,0.771776,0.685818,0.139469,0.664874,0.584736,0.755538,0.438354,0.0114515,0.940998,0.373451,0.149922,0.442643,0.622634,0.67666,0.718969,0.750476,0.282083,0.654968,0.468609,0.93559,0.969154,0.637507,0.879503,0.719878,0.851627,0.533233,0.0782039,0.895957,0.136414,0.181629,0.342719,0.987738,0.220935,0.485415,0.791397,0.504288,0.664566,0.529115,0.770749,0.264863,0.468833,0.77292,0.925322,0.866731,0.100599,0.0202247,0.116483,0.477963,0.221075,0.676123,0.99525,0.626086,0.15957,0.0513824,0.660241,0.364231,0.68173,0.867692,0.0396169,0.00074029,0.279333,0.786991,0.735423,0.315337,0.813295,0.448541,0.391781,0.924953,0.0975156,0.00299251,0.811563,0.662523,0.118788,0.774442,0.899262,0.229634,0.170811,0.450197,0.744716,0.490717,0.704648,0.250441,0.320232,0.847431,0.152063,0.982475,0.242617,0.124276,0.622522,0.0887669,0.426739,0.860942,0.60422,0.72748,0.43766,0.0273604,0.592896,0.945275,0.0873736,0.757041,0.00287151,0.652696,0.1601,0.450381,0.835039,0.977942,0.887012,0.805756,0.0938504,0.892355,0.641741,0.674364,0.0366235,0.133473,0.684932,0.353819,0.997246,0.533277,0.463261,0.0983458,0.23177,0.217496,0.898606,0.953034,0.742639,0.278163,0.138768,0.431635,0.385833,0.75731,0.666149,0.203328,0.406577,0.117558,0.751515,0.886254,0.574821,0.517524,0.289167,0.946905,0.924471,0.78422,0.78479,0.609103,0.648643,0.915812,0.261475,0.92625,0.482128,0.882831,0.410923,0.693346,0.252867,0.0202082,0.70781,0.908196,0.704897,0.448452,0.710872,0.278729,0.973194,0.911068,0.65879,0.0759926,0.928268,0.311319,0.829157,0.211777,0.956526,0.681974,0.848589,0.487429,0.0350909,0.52407,0.913427,0.80079,0.755278,0.0122816,0.601551,0.401898,0.00594574,0.0931314,0.710397,0.0291598,0.512314,0.614587,0.739202,0.886893,0.0386455,0.462426,0.0874838,0.502008,0.0521109,0.959483,0.323896,0.781954,0.435653,0.18349,0.989155,0.628193,0.699009,0.58261,0.264563,0.238752,0.116496,0.550151,0.0735741,0.150358,0.520975,0.0282333,0.89492,0.798296,0.208996,0.21767,0.716947,0.547367,0.672933,0.603699,0.860197,0.351548,0.562718,0.168966,0.441372,0.262718,0.0708287,0.7262,0.875168,0.593613,0.0749576,0.181878,0.97278,0.933103,0.513965,0.882628,0.310412,0.969696,0.723466,0.0115283,0.979779,0.0466154,0.268865,0.147553,0.558856,0.526276,0.554586,0.781513,0.528665,0.234842,0.546369,0.410596,0.83403,0.54374,0.0279354,0.450727,0.963715,0.246653,0.250501,0.769709,0.938441,0.584282,0.79789,0.500335,0.414133,0.674288,0.275949,0.285416,0.646033,0.126369,0.562073,0.800077,0.807161,0.513237,0.599563,0.931488,0.874768,0.341337,0.170677,0.281458,0.0543557,0.00120205,0.581252,0.468574,0.870565,0.279884,0.111135,0.866148,0.325033,0.345174,0.230218,0.103858,0.101856,0.161514,0.84215,0.985778,0.687908,0.67038,0.778633,0.895703,0.678815,0.192649,0.378127,0.826718,0.322957,0.896752,0.236851,0.174337,0.882766,0.931261,0.754678,0.861934,0.0975221,0.964212,0.473329,0.10972,0.357002,0.178348,0.824934,0.371335,0.10971,0.245718,0.107217,0.324688,0.594702,0.0458569,0.92754,0.379408,0.883353,0.876079,0.946519,0.280016,0.241024,0.212315,0.659203,0.50358,0.210169,0.295227,0.700105,0.180893,0.105403,0.305921,0.195913,0.494697,0.789984,0.784458,0.351096,0.939096,0.210831,0.14878,0.565726,0.814524,0.560806,0.526108,0.0971074,0.894981,0.733774,0.986012,0.623835,0.83848,0.70338,0.210068,0.662589,0.652659,0.386747,0.718597,0.612317,0.671253,0.571202,0.00727743,0.314997,0.530714,0.981046,0.977128,0.817799,0.734077,0.176601,0.40415,0.821314,0.637429,0.145707,0.374407,0.834797,0.0264865,0.576073,0.518015,0.884227,0.850627,0.249742,0.673964,0.138159,0.809292,0.558858,0.272124,0.502049,0.803059,0.174148,0.703286,0.00659698,0.481215,0.129305,0.0885803,0.123426,0.168953,0.842778,0.233279,0.728786,0.168649,0.975101,0.826083,0.960829,0.324207,0.904617,0.503123,0.45633,0.55015,0.976383,0.625334,0.97579,0.343393,0.27747,0.894374,0.310226,0.492042,0.549665,0.155871,0.114746,0.356928,0.575547,0.852133,0.325525,0.037679,0.513372,0.798934,0.0732211,0.177864,0.232832,0.702614,0.834574,0.220409,0.0826958,0.0453641,0.352867,0.206926,0.470131,0.655739,0.337986,0.412396,0.852029,0.610492,0.0544516,0.843737,0.666574,0.245704,0.699317,0.825235,0.582149,0.605531,0.356864,0.603159,0.655883,0.987069,0.780048,0.189828,0.0586919,0.135931,0.365898,0.286788,0.898945,0.309713,0.573614,0.652535,0.98887,0.358383,0.654056,0.265686,0.293112,0.924735,0.793954,0.786493,0.263431,0.0955399,0.287945,0.474173,0.232569,0.819139,0.264225,0.419888,0.897434,0.198549,0.870376,0.797683,0.660779,0.686115,0.132619,0.910592,0.96539,0.710676,0.651234,0.501611,0.713497,0.535692,0.88696,0.484582,0.118291,0.798757,0.481012,0.850606,0.932671,0.670069,0.397196,0.920901,0.346695,0.915015,0.180023,0.260489,0.16033,0.596123,0.930389,0.192573,0.0620515,0.0918173,0.786439,0.977916,0.0512013,0.995506,0.0807142,0.253869,0.233859,0.140065,0.456914,0.638497,0.0134707,0.699855,0.464918,0.856967,0.294226,0.782862,0.897629,0.67723,0.190086,0.252476,0.693671,0.431202,0.215341,0.301831,0.219151,0.850798,0.31951,0.743424,0.441985,0.813242,0.0760015,0.983136,0.575182,0.477148,0.067387,0.533546,0.804972,0.341258,0.0630275,0.471883,0.319879,0.24781,0.54501,0.366144,0.0822706,0.430387,0.0590669,0.299098,0.944227,0.529411,0.456156,0.72979,0.245155,0.265321,0.627732,0.184479,0.326069,0.865505,0.575311,0.51053,0.193595,0.871469,0.183443,0.649565,0.441001,0.745881,0.856838,0.307028,0.84832,0.67734,0.324626,0.574541,0.754872,0.197734,0.574318,0.929929,0.38708,0.490452,0.635776,0.0612422,0.234693,0.805979,0.475426,0.0757613,0.814655,0.900014,0.647221,0.693134,0.953591,0.0378352,0.397168,0.525362,0.537688,0.301283,0.615168,0.927372,0.382934,0.767699,0.605797,0.271538,0.890459,0.432516,0.846999,0.74848,0.270521,0.0146971,0.706972,0.210888,0.30538,0.320572,0.793665,0.521555,0.886166,0.207285,0.0994917,0.784508,0.619264,0.986321,0.244708,0.904037,0.195441,0.410259,0.797675,0.605794,0.554223,0.231473,0.291599,0.0327024,0.718496,0.784,0.716861,0.844341,0.00970227,0.730098,0.0618339,0.988356,0.14247,0.465936,0.217636,0.876242,0.420552,0.934646,0.953428,0.3617,0.607156,0.394295,0.0888857,0.481544,0.287697,0.178183,0.605093,0.516451,0.435762,0.926054,0.351567,0.688915,0.482411,0.0006935,0.709986,0.313258,0.981302,0.46692,0.560643,0.818544,0.535084,0.706418,0.231222,0.330884,0.350094,0.0766752,0.206277,0.00834906,0.242984,0.886152,0.632698,0.119592,0.855588,0.150496,0.53089,0.676355,0.145072,0.665753,0.418333,0.761084,0.819626,0.0159129,0.218558,0.726664,0.568647,0.224346,0.242791,0.23419,0.964087,0.716222,0.866735,0.346555,0.708623,0.785558,0.677468,0.406407,0.367461,0.104125,0.534755,0.793251,0.277117,0.998962,0.0058586,0.645667,|0.203114,0.846588,0.399858,0.143666,0.677858,0.537378,0.45274,0.623653,0.498219,0.439915,0.130615,0.683468,0.558801,0.788302,0.668883,0.925257,0.713037,0.258407,0.740194,0.608692,0.170161,0.352894,0.91929,0.865535,0.529171,0.412502,0.431102,0.0573885,0.652723,0.642943,0.802991,0.815034,0.284427,0.199734,0.630361,0.161892,0.344247,0.638142,0.369881,0.971325,0.18446,0.412826,0.150494,0.199609,0.522925,0.263136,0.657255,0.112873,0.529791,0.285763,0.935081,0.881383,0.559748,0.55136,0.609537,0.724147,0.381068,0.351632,0.499918,0.801451,0.221905,0.578233,0.790217,0.349155,0.511839,0.403443,0.508136,0.328829,0.903262,0.464762,0.829103,0.311693,0.0434141,0.756284,0.447425,0.0039677,0.809433,0.690523,0.40066,0.320798,0.24405,0.344912,0.882471,0.591863,0.362654,0.270251,0.472633,0.538994,0.181239,0.122343,0.400788,0.261783,0.932039,0.0344911,0.30823,0.358016,0.504865,0.855233,0.586422,0.288399,0.310071,0.12324,0.417231,0.813462,0.0499069,0.0384458,0.378867,0.617388,0.0575251,0.170344,0.784322,0.804317,0.164537,0.0639825,0.626657,0.561923,0.251373,0.000441134,0.208267,0.0231889,0.788498,0.29109,0.918914,0.070855,0.755819,0.251492,0.979672,0.473954,0.299191,0.110502,0.821259,0.721338,0.785226,0.896104,0.717133,0.444826,0.87126,0.0921196,0.116978,0.558016,0.136547,0.335165,0.810995,0.953875,0.20662,0.508851,0.307141,0.428406,0.549702,0.492741,0.799064,0.349558,0.427496,0.9684,0.411852,0.288741,0.42512,0.448291,0.349523,0.574548,0.984225,0.962568,0.873653,0.504633,0.200151,0.311296,0.901584,0.978994,0.0834637,0.672083,0.767948,0.10504,0.992185,0.713663,0.676854,0.945658,0.923626,0.517044,0.540159,0.225646,0.569334,0.0835339,0.621157,0.867654,0.770292,0.890523,0.00827008,0.467457,0.833919,0.720016,0.0790371,0.0455579,0.159884,0.043798,0.879411,0.575813,0.998744,0.677451,0.665903,0.521455,0.104435,0.660059,0.273141,0.869455,0.698668,0.427152,0.489771,0.189433,0.519807,0.71921,0.371,0.217143,0.0407721,0.852638,0.911478,0.139398,0.854677,0.626098,0.277609,0.683964,0.274548,0.216799,0.264855,0.63509,0.65485,0.341028,0.225174,0.440022,0.997592,0.0181361,0.34674,0.815779,0.121363,0.510737,0.639385,0.460794,0.548995,0.633733,0.825837,0.930416,0.292954,0.143395,0.848372,0.264666,0.860678,0.735093,0.928619,0.251933,0.144559,0.783628,0.4887,0.416344,0.719219,0.16445,0.109197,0.627908,0.762475,0.697769,0.702071,0.114504,0.93247,0.554451,0.24493,0.315275,0.915638,0.162702,0.272947,0.472837,0.293548,0.492518,0.0522536,0.442944,0.558599,0.545178,0.292657,0.189747,0.0270914,0.083966,0.386815,0.129182,0.668817,0.712909,0.226177,0.320854,0.173842,0.548844,0.63947,0.211437,0.0748085,0.475828,0.614088,0.973946,0.299567,0.323312,2.41995e-05,0.775134,0.814791,0.378895,0.147761,0.937064,0.338307,0.68234,0.623667,0.497024,0.40514,0.567269,0.868375,0.351555,0.550293,0.635102,0.833573,0.91137,0.608791,0.478226,0.754891,0.523627,0.754112,0.494824,0.825801,0.0470142,0.445514,0.193988,0.286763,0.271178,0.315691,0.197921,0.770963,0.0139243,0.788885,0.773121,0.812842,0.490472,0.180601,0.99661,0.479751,0.172142,0.867195,0.49109,0.868955,0.87469,0.309928,0.141112,0.307648,0.396153,0.0423602,0.919739,0.757195,0.316674,0.602966,0.613935,0.111326,0.683745,0.892592,0.296774,0.480662,0.832118,0.346155,0.386975,0.781407,0.530594,0.815679,0.524343,0.709549,0.0522918,0.846618,0.854417,0.359673,0.617379,0.440629,0.0917595,0.820172,0.507075,0.479363,0.771501,0.164281,0.811744,0.638913,0.146931,0.867909,0.687947,0.628831,0.752733,0.235659,0.0292957,0.0794792,0.921846,0.753594,0.357544,0.581258,0.702352,0.904956,0.161989,0.829093,0.431751,0.0388287,0.509555,0.360757,0.968065,0.212848,0.0801906,0.936486,0.0567159,0.939255,0.238036,0.730695,0.216656,0.710856,0.169542,0.00649494,0.624449,0.619618,0.533877,0.947728,0.511734,0.787374,0.0973171,0.786331,0.753309,0.466877,0.0142635,0.561264,0.845837,0.369387,0.277504,0.0720229,0.0208498,0.590327,0.699486,0.158919,0.156991,0.452803,0.0622137,0.84317,0.976561,0.789678,0.961939,0.513846,0.411646,0.872221,0.0351464,0.402427,0.861111,0.287649,0.0975572,0.0552605,0.27683,0.472369,0.627405,0.708177,0.667984,0.421828,0.649254,0.446311,0.632932,0.761878,0.819661,0.556693,0.663316,0.127971,0.57866,0.178087,0.981877,0.769211,0.146162,0.601708,0.162492,0.0433406,0.122391,0.981522,0.258242,0.344777,0.786792,0.694442,0.58032,0.706977,0.539583,0.587801,0.447141,0.794064,0.531271,0.238564,0.727347,0.60028,0.612067,0.690549,0.217398,0.45894,0.110158,0.451191,0.992485,0.560279,0.916517,0.597949,0.569401,0.772949,0.211952,0.632121,0.202605,0.781579,0.703523,0.196398,0.728732,0.153585,0.933459,0.52598,0.556878,0.457159,0.79432,0.0885295,0.514407,0.570118,0.446629,0.407809,0.998111,0.843563,0.127204,0.365025,0.659904,0.158008,0.494776,0.973593,0.499687,0.183366,0.963209,0.0816124,0.645701,0.683889,0.865442,0.562197,0.125506,0.704078,0.265514,0.214134,0.936978,0.309863,0.732808,0.142447,0.205267,0.712655,0.177844,0.773731,0.477153,0.513207,0.79488,0.420254,0.700347,0.38158,0.961744,0.97693,0.566215,0.274257,0.222337,0.313926,0.657782,0.42962,0.561142,0.815158,0.901802,0.367559,0.813238,0.254473,0.336272,0.96806,0.237595,0.0228053,0.515338,0.550233,0.438369,0.627492,0.301463,0.87687,0.345899,0.306218,0.6539,0.422964,0.898063,0.579495,0.767905,0.782608,0.234895,0.789622,0.275435,0.885764,0.959665,0.666519,0.527641,0.778235,0.642343,0.0843256,0.544812,0.877679,0.21624,0.450128,0.310837,0.869785,0.038096,0.548197,0.834547,0.124775,0.102005,0.647676,0.141938,0.0909125,0.849309,0.41812,0.833204,0.39169,0.993106,0.86493,0.780893,0.983503,0.568292,0.564458,0.302673,0.39728,0.429638,0.104531,0.947584,0.485141,0.4325,0.959141,0.474799,0.687408,0.72912,0.439843,0.947273,0.195933,0.148006,0.498098,0.159401,0.29148,0.14274,0.843682,0.983822,0.958685,0.351696,0.491127,0.0128173,0.244366,0.475889,0.676675,0.438222,0.885778,0.865951,0.0966696,0.88875,0.0613723,0.736807,0.800571,0.298122,0.373166,0.565969,0.643834,0.579262,0.347766,0.0482496,0.911274,0.949742,0.300167,0.216324,0.765658,0.846457,0.850647,0.68089,0.556709,0.344512,0.938419,0.372496,0.957655,0.76681,0.64231,0.855886,0.833293,0.926912,0.1913,0.55364,0.192221,0.174075,0.451337,0.318963,0.780993,0.185696,0.639276,0.633239,0.314431,0.875452,0.895415,0.382082,0.614658,0.166541,0.703327,0.738167,0.13429,0.868569,0.144425,0.804519,0.641497,0.212629,0.617444,0.843693,0.474675,0.088231,0.457548,0.924228,0.188027,0.0540239,0.361601,0.419139,0.643029,0.830532,0.426872,0.0268704,0.766083,0.986948,0.650608,0.644565,0.144154,0.825817,0.719987,0.759036,0.314205,0.453476,0.490994,0.793036,0.658413,0.106495,0.282972,0.53377,0.880466,0.517618,0.439818,0.702548,0.96814,0.934215,0.0187036,0.162689,0.208001,0.599871,0.58818,0.735064,0.301816,0.723638,0.779956,0.837544,0.769109,0.510955,0.124019,0.710428,0.514415,0.00287551,0.949531,0.514086,0.580389,0.752338,0.565043,0.625383,0.647112,0.403445,0.350669,0.309361,0.577384,0.488818,0.73084,0.350688,0.957338,0.38566,0.220999,0.251344,0.948991,0.288534,0.314861,0.132147,0.095292,0.348636,0.928516,0.894172,0.389291,0.760149,0.186884,0.0560778,0.0453125,0.745143,0.912725,0.5874,0.766677,0.782029,0.536071,0.943333,0.8597,0.852602,0.0424251,0.510812,0.926552,0.14789,0.94378,0.457127,0.339679,0.214986,0.825251,0.715087,0.727007,0.568637,0.423406,0.615781,0.822519,0.254121,0.314947,0.00558931,0.754826,0.655477,0.0995939,0.878342,0.788997,0.792283,0.71006,0.213589,0.571101,0.858421,0.264669,0.731096,0.434216,0.187478,0.0847301,0.559988,0.076673,0.567694,0.0687926,0.335046,0.356492,0.761848,0.463886,0.00790697,0.63624,0.400194,0.344315,0.0571378,0.753383,0.600306,0.386287,0.763649,0.102499,0.375966,0.435509,0.923559,0.75576,0.611153,0.971463,0.965634,0.935096,0.798071,0.544407,0.455713,0.442518,0.0669727,0.15915,0.887578,0.310639,0.219089,0.576131,0.565012,0.0856162,0.55367,0.400136,0.55768,0.616659,0.270976,0.445827,0.139709,0.315154,0.28629,0.294374,0.249302,0.558952,0.46699,0.613054,0.732643,0.492553,0.816557,0.020057,0.147021,0.885775,0.649208,0.559867,0.950054,0.0570036,0.401522,0.602921,0.734477,0.287935,0.928439,0.264394,0.537046,0.226614,0.858863,0.771232,0.936313,0.127413,0.723258,0.613212,0.335125,0.571816,0.93548,0.905306,0.974829,0.0259823,0.862724,0.817815,0.0255083,0.13754,0.0297207,0.825105,0.767289,0.479588,0.523767,0.756893,0.156859,0.537578,0.646718,0.108253,0.193997,0.075995,0.15692,0.530026,0.628045,0.561448,0.86326,0.771831,0.94605,0.931686,0.57346,0.0124896,0.661279,0.403238,0.116921,0.482525,0.859483,0.0943776,0.236176,0.901483,0.94971,0.545339,0.18027,0.331193,0.5726,0.927694,0.756802,0.988204,0.729232,0.252558,0.131144,0.395513,0.32238,0.112052,0.261819,0.53479,0.87893,0.0975652,0.340481,0.453168,0.944114,0.126661,0.821643,0.742695,0.980963,0.693201,0.816683,0.908135,0.50002,0.763625,0.540366,0.684207,0.635998,0.72072,0.942584,0.67272,0.056971,0.348644,0.202099,0.620425,0.504015,0.893872,0.18643,0.756916,0.854547,0.231479,0.16202,0.457077,0.344656,0.936125,0.899233,0.814611,0.0529617,0.933008,0.345794,0.280186,0.0320377,0.60294,0.925456,0.145563,0.728901,|0.745936,0.446525,0.19643,0.338634,0.41552,0.0340863,0.0816684,0.592133,0.273243,0.0436716,0.846298,0.0658572,0.0597732,0.54982,0.756761,0.458504,0.940856,0.851808,0.0345784,0.737924,0.960355,0.419163,0.977848,0.132034,0.179283,0.674571,0.616811,0.408964,0.575788,0.0814402,0.441645,0.691645,0.921296,0.37761,0.784649,0.497487,0.683982,0.319723,0.25598,0.287548,0.581176,0.663594,0.177443,0.280362,0.341798,0.432048,0.0335361,0.972339,0.803529,0.591725,0.188367,0.931371,0.805427,0.380714,0.690075,0.785991,0.390427,0.601082,0.555239,0.0336457,0.836916,0.521015,0.367102,0.516241,0.78529,0.572344,0.744994,0.432586,0.920277,0.76012,0.208563,0.874346,0.968229,0.430568,0.254861,0.642074,0.754163,0.361936,0.246493,0.0918808,0.29398,0.259942,0.471962,0.969347,0.826573,0.05319,0.911667,0.117606,0.87111,0.337524,0.727877,0.970753,0.57922,0.638357,0.523435,0.36004,0.431175,0.670842,0.267076,0.202585,0.72404,0.636306,0.177063,0.314409,0.0482544,0.841407,0.248581,0.887778,0.860464,0.546246,0.542184,0.929135,0.35997,0.63603,0.945723,0.202788,0.372079,0.65259,0.993864,0.583619,0.191756,0.986919,0.992135,0.815979,0.820456,0.206625,0.779738,0.622997,0.282902,0.921025,0.536863,0.655081,0.0993516,0.972136,0.313945,0.523799,0.675885,0.783319,0.461412,0.821794,0.674452,0.90766,0.916842,0.525056,0.412732,0.968649,0.690738,0.852811,0.591995,0.991169,0.229328,0.799873,0.372334,0.462209,0.338579,0.490358,0.517855,0.813857,0.766683,0.579581,0.573511,0.896668,0.445068,0.959263,0.265611,0.697058,0.683491,0.906873,0.813939,0.882602,0.955674,0.0478544,0.285865,0.717496,0.484139,0.750275,0.518819,0.942804,0.0575795,0.326569,0.121483,0.957391,0.403727,0.374739,0.477846,0.334175,0.772538,0.430208,0.512247,0.228591,0.174346,0.0336524,0.613649,0.390903,0.318944,0.96162,0.0357378,0.951992,0.460822,0.629263,0.7419,0.221002,0.376868,0.751639,0.516099,0.458755,0.172594,0.15549,0.00399125,0.277935,0.550328,0.647829,0.0748523,0.852416,0.73634,0.21939,0.27303,0.259908,0.275479,0.553149,0.642004,0.13878,0.0344949,0.379803,0.325163,0.580926,0.444861,0.774688,0.378538,0.0848197,0.444103,0.468268,0.773154,0.592134,0.154406,0.807633,0.446854,0.693353,0.159605,0.773689,0.212534,0.301551,0.489966,0.59911,0.696712,0.848514,0.653282,0.547898,0.586983,0.683613,0.147204,0.168174,0.455945,0.36495,0.899418,0.92816,0.53889,0.154777,0.0376189,0.230237,0.543713,0.653227,0.955571,0.718671,0.159602,0.0661871,0.397487,0.66539,0.367379,0.0849934,0.554842,0.159522,0.506556,0.493397,0.954836,0.597523,0.614384,0.62203,0.607538,0.297587,0.647624,0.27255,0.210829,0.985004,0.422316,0.530257,0.11353,0.495474,0.768796,0.271855,0.510195,0.380814,0.287007,0.19143,0.882833,0.681771,0.891906,0.246287,0.434557,0.791338,0.331196,0.906892,0.828713,0.936598,0.671296,0.0758733,0.389072,0.436989,0.0157815,0.0328776,0.793939,0.656238,0.519588,0.193106,0.294534,0.583384,0.682296,0.873061,0.456807,0.614164,0.129817,0.244155,0.700021,0.353119,0.656362,0.765135,0.86497,0.745393,0.37047,0.987557,0.0696329,0.0422373,0.806664,0.710429,0.670426,0.358959,0.878236,0.48169,0.951097,0.759865,0.147156,0.961232,0.0317968,0.988064,0.486094,0.675141,0.443029,0.0858555,0.31215,0.605049,0.565118,0.159973,0.548812,0.83707,0.508578,0.388085,0.801197,0.97906,0.523979,0.235003,0.796206,0.280055,0.398283,0.389065,0.635951,0.6168,0.578159,0.953156,0.301791,0.772879,0.989774,0.429019,0.462855,0.159014,0.434214,0.53806,0.906759,0.958656,0.758009,0.708291,0.581806,0.975918,0.505355,0.261182,0.750639,0.886312,0.118782,0.0397303,0.722006,0.521923,0.226311,0.487007,0.709743,0.634893,0.493218,0.381071,0.226658,0.335175,0.91169,0.935356,0.161568,0.577651,0.956475,0.625732,0.926561,0.19356,0.319116,0.05874,0.241845,0.914795,0.263223,0.652689,0.782854,0.280141,0.687692,0.148936,0.028241,0.720846,0.213141,0.130351,0.341967,0.814645,0.275028,0.0361962,0.655432,0.287225,0.118742,0.300076,0.168994,0.511971,0.735396,0.377538,0.513749,0.436626,0.648056,0.765203,0.677364,0.83755,0.768114,0.127276,0.366631,0.256257,0.853371,0.886699,0.191854,0.849438,0.0820367,0.698871,0.761228,0.367038,0.806631,0.45426,0.789702,0.894015,0.300974,0.614873,0.0348745,0.535323,0.0556519,0.343617,0.0290733,0.648244,0.138084,0.142109,0.108658,0.337653,0.65343,0.704037,0.68531,0.93825,0.37869,0.729961,0.215179,0.0341918,0.399444,0.662782,0.368948,0.436377,0.0659539,0.0906315,0.989756,0.236791,0.936262,0.87587,0.0906712,0.441517,0.895925,0.739497,0.522232,0.0785099,0.884521,0.233785,0.92234,0.727091,0.0627102,0.849687,0.59116,0.58935,0.882726,0.220586,0.367208,0.151195,0.192196,0.955164,0.418192,0.463924,0.60915,0.748947,0.210455,0.166075,0.955926,0.734914,0.658005,0.804114,0.736566,0.0117598,0.0938839,0.586956,0.731387,0.0115712,0.350555,0.862754,0.372626,0.422983,0.384873,0.10131,0.863611,0.961371,0.626682,0.799674,0.102825,0.601953,0.905017,0.671877,0.0863525,0.91377,0.953031,0.826757,0.307145,0.529609,0.193872,0.320892,0.0620211,0.751619,0.756169,0.763523,0.961996,0.806654,0.149515,0.982781,0.103625,0.203595,0.945551,0.293728,0.509467,0.513828,0.0715978,0.0426161,0.838591,0.557093,0.426721,0.978494,0.452373,0.868148,0.499044,0.824101,0.0193273,0.520367,0.383561,0.0794861,0.622171,0.502219,0.0580433,0.9223,0.335186,0.886714,0.0910013,0.275484,0.192462,0.380817,0.496775,0.331159,0.695999,0.298547,0.181709,0.135291,0.241873,0.635358,0.615671,0.706478,0.12115,0.827127,0.0168873,0.0943635,0.235456,0.237069,0.799802,0.0871839,0.828781,0.930622,0.292869,0.414964,0.534338,0.915032,0.728732,0.880066,0.575363,0.115308,0.759231,0.893695,0.88529,0.1576,0.561062,0.796659,0.0866855,0.766219,0.940902,0.152035,0.162296,0.273044,0.246197,0.858477,0.399878,0.0459471,0.199716,0.8037,0.190847,0.532749,0.327586,0.870557,0.139112,0.802182,0.213118,0.855899,0.404249,0.241273,0.169108,0.774295,0.284717,0.356193,0.373586,0.346865,0.727899,0.53212,0.715424,0.54079,0.294487,0.461631,0.0388284,0.0643303,0.94917,0.19806,0.607301,0.487249,0.464244,0.849914,0.583928,0.965983,0.453957,0.119182,0.764287,0.959771,0.157696,0.00252855,0.390372,0.197887,0.0226417,0.604841,0.229792,0.244664,0.468728,0.613128,0.750352,0.225344,0.787653,0.46301,0.285769,0.191811,0.246048,0.715851,0.415017,0.366041,0.188332,0.991587,0.710858,0.583576,0.526555,0.776976,0.366333,0.0839572,0.830213,0.434263,0.0865763,0.533045,0.996292,0.394946,0.622054,0.159945,0.466055,0.97094,0.58805,0.596268,0.953846,0.412828,0.607839,0.119135,0.382908,0.757619,0.2094,0.496174,0.738207,0.883357,0.802809,0.0153064,0.201464,0.635321,0.813272,0.792795,0.0285482,0.741407,0.360008,0.268086,0.224158,0.676611,0.688608,0.654627,0.870196,0.023867,0.607659,0.562851,0.725246,0.315439,0.542123,0.7305,0.0728416,0.0918422,0.763754,0.502179,0.0231726,0.385168,0.636901,0.966256,0.343212,0.957582,0.999206,0.0213056,0.812294,0.396698,0.49693,0.23882,0.797602,0.365309,0.733378,0.306938,0.575659,0.216027,0.0136851,0.666408,0.900495,0.065989,0.735576,0.802242,0.707055,0.46611,0.0560821,0.17758,0.0909652,0.426856,0.897311,0.886498,0.751423,0.249453,0.996099,0.208791,0.228068,0.423916,0.127596,0.0117344,0.01339,0.641531,0.700472,0.7965,0.945796,0.794338,0.575381,0.38252,0.346884,0.400326,0.259683,0.97194,0.195626,0.0410452,0.80423,0.122316,0.559229,0.214106,0.632623,0.590028,0.25354,0.0843711,0.0709684,0.588352,0.530758,0.417003,0.676682,0.665229,0.268767,0.655165,0.192649,0.0417819,0.63981,0.300008,0.691331,0.645741,0.676167,0.977162,0.754364,0.531955,0.542566,0.216682,0.920061,0.0208746,0.316425,0.0955797,0.133819,0.833382,0.714938,0.357045,0.14661,0.773066,0.17004,0.70819,0.829315,0.642474,0.333145,0.501976,0.6474,0.104425,0.787884,0.273065,0.762126,0.81877,0.864403,0.00599229,0.398378,0.0170529,0.201394,0.449112,0.355241,0.456622,0.541665,0.863777,0.723101,0.885154,0.342083,0.510501,0.481508,0.584203,0.332406,0.560754,0.774848,0.893043,0.902384,0.737285,0.825748,0.379851,0.527449,0.152243,0.197858,0.750428,0.00187802,0.400905,0.722457,0.903659,0.712968,0.188307,0.214459,0.71632,0.184425,0.939888,0.558221,0.800291,0.611448,0.776843,0.998672,0.318101,0.669628,0.871278,0.943816,0.956943,0.990309,0.490115,0.58579,0.548975,0.613165,0.712326,0.893088,0.36077,0.0431679,0.379576,0.311664,0.211592,0.675275,0.216642,0.882018,0.0932248,0.821793,0.25268,0.744483,0.197909,0.293666,0.770033,0.428324,0.32657,0.135563,0.328779,0.24194,0.563645,0.569075,0.965459,0.678664,0.554491,0.326392,0.633358,0.152267,0.411105,0.102972,0.64929,0.933457,0.651169,0.194296,0.844704,0.20577,0.941785,0.569994,0.93032,0.283976,0.412437,0.190432,0.893998,0.487594,0.941131,0.827921,0.961535,0.363593,0.438538,0.0900241,0.594723,0.859762,0.940896,0.850312,0.470381,0.108145,0.754873,0.783879,0.518456,0.895515,0.139868,0.548326,0.684253,0.812805,0.563852,0.826682,0.527938,0.990466,0.894489,0.855666,0.901693,0.325,0.37314,0.907626,0.109156,0.401221,0.337399,0.67986,0.295565,0.326516,0.333158,0.686409,0.0694665,0.0586727,0.797584,0.626673,0.400471,0.602324,0.376019,0.467988,0.680303,0.723437,0.885053,0.845085,0.578693,0.284747,0.367478,0.97362,0.84186,0.61736,0.219374,0.792569,0.828555,|0.0423461,0.462241,0.210421,0.322803,0.888523,0.278781,0.779559,0.380564,0.408666,0.51019,0.865271,0.658693,0.677979,0.405325,0.415759,0.126307,0.0645922,0.821968,0.444543,0.422035,0.637526,0.734059,0.977112,0.561796,0.657418,0.934839,0.988395,0.078455,0.458967,0.9015,0.0916662,0.319965,0.853404,0.170716,0.232311,0.705481,0.254819,0.413129,0.923293,0.745553,0.132112,0.0791211,0.872895,0.178805,0.1277,0.175264,0.778079,0.521014,0.13899,0.0511338,0.684132,0.94645,0.626569,0.486462,0.766572,0.0815321,0.987137,0.112844,0.555559,0.385027,0.390364,0.54136,0.119884,0.384667,0.71473,0.227562,0.109174,0.759976,0.658749,0.195584,0.914405,0.451149,0.199709,0.94722,0.287414,0.725086,0.454519,0.814599,0.460546,0.772084,0.395394,0.916042,0.334993,0.773431,0.55495,0.559824,0.866098,0.644472,0.468929,0.245599,0.075484,0.00607932,0.113019,0.871859,0.751835,0.234068,0.450437,0.883508,0.559908,0.852247,0.441639,0.432352,0.968848,0.885681,0.120493,0.606692,0.120011,0.999831,0.382876,0.503695,0.787159,0.940266,0.00816721,0.580053,0.455453,0.145817,0.285868,0.18462,0.208636,0.274946,0.248795,0.24713,0.330572,0.283743,0.098415,0.703824,0.122262,0.89411,0.673181,0.277974,0.873513,0.244663,0.637369,0.870599,0.687347,0.202324,0.83927,0.129036,0.498018,0.696056,0.640642,0.186381,0.126199,0.830523,0.735256,0.719399,0.424603,0.614759,0.50473,0.586212,0.450483,0.648671,0.874537,0.189114,0.142402,0.375944,0.118443,0.613584,0.700104,0.195973,0.947126,0.686698,0.524801,0.71283,0.695789,0.000348747,0.635067,0.594942,0.933011,0.184819,0.241773,0.191692,0.176775,0.632692,0.0295035,0.578578,0.866275,0.999734,0.521648,0.8659,0.740525,0.703232,0.809858,0.723904,0.693127,0.019636,0.0346367,0.363918,0.165383,0.468851,0.0225105,0.207173,0.955253,0.0120126,0.144137,0.121386,0.399817,0.209137,0.364878,0.437302,0.426527,0.673554,0.303753,0.908091,0.448999,0.337365,0.656683,0.366742,0.170834,0.618479,0.35825,0.819751,0.036607,0.00486422,0.0484726,0.112462,0.216896,0.416529,0.345527,0.11349,0.304076,0.825474,0.665984,0.720367,0.706971,0.191262,0.378668,0.978868,0.424329,0.530841,0.894609,0.360577,0.372405,0.396059,0.247451,0.060627,0.145053,0.50027,0.0178229,0.796795,0.583766,0.355788,0.686189,0.792293,0.190574,0.275927,0.0730339,0.171407,0.223356,0.843393,0.303609,0.959415,0.463266,0.836294,0.187372,0.831386,0.862961,0.141159,0.402448,0.133989,0.229401,0.20208,0.358101,0.62287,0.83068,0.852309,0.597574,0.146684,0.201567,0.0810244,0.575312,0.358505,0.668309,0.398404,0.881326,0.167114,0.977936,0.41289,0.425321,0.72894,0.118009,0.0888383,0.871471,0.46228,0.387996,0.138521,0.797259,0.187967,0.326099,0.943828,0.914246,0.569559,0.326863,0.817512,0.364748,0.507222,0.401613,0.0388001,0.783548,0.264124,0.0415561,0.782555,0.241104,0.538637,0.70606,0.0471449,0.127757,0.559849,0.814342,0.553051,0.832401,0.287255,0.576183,0.050679,0.334542,0.346304,0.762595,0.0745245,0.0113136,0.714247,0.0629277,0.527867,0.167277,0.595653,0.584003,0.865848,0.688895,0.176645,0.826321,0.633386,0.371365,0.198018,0.968943,0.32479,0.912027,0.0664731,0.0342223,0.378803,0.0223224,0.439749,0.775646,0.875103,0.484475,0.719212,0.510038,0.397741,0.0846081,0.293242,0.643227,0.858658,0.922213,0.841747,0.120321,0.860653,0.215002,0.821903,0.610476,0.841909,0.625481,0.385037,0.178647,0.388044,0.0893363,0.323706,0.2541,0.771266,0.156894,0.403618,0.670415,0.940364,0.357169,0.424042,0.100848,0.0671973,0.844046,0.0612872,0.326401,0.996983,0.728433,0.316475,0.300451,0.842425,0.51332,0.169451,0.908862,0.570499,0.826631,0.785758,0.980036,0.702241,0.152588,0.598843,0.491459,0.178557,0.158116,0.241905,0.967087,0.104819,0.825502,0.855536,0.76871,0.066735,0.17461,0.51056,0.906025,0.110002,0.662408,0.834,0.56053,0.371336,0.204966,0.859113,0.283691,0.594437,0.202312,0.986013,0.992619,0.249891,0.0421322,0.663947,0.295602,0.717838,0.952447,0.713082,0.500512,0.960921,0.542481,0.269238,0.862363,0.759038,0.800566,0.565837,0.497339,0.951073,0.469585,0.394888,0.0634199,0.673818,0.7968,0.187397,0.647022,0.127966,0.452875,0.448711,0.360184,0.505581,0.777252,0.210543,0.13335,0.505726,0.0977173,0.845284,0.272846,0.898684,0.146809,0.468485,0.545613,0.427509,0.81886,0.437894,0.636025,0.808795,0.67809,0.0594434,0.778697,0.868209,0.614931,0.809271,0.157555,0.264565,0.0478507,0.82144,0.394867,0.700436,0.243463,0.332181,0.302558,0.720622,0.362683,0.352043,0.881436,0.155784,0.880093,0.146295,0.761242,0.636389,0.7749,0.318794,0.131338,0.111949,0.926019,0.591674,0.0583057,0.620669,0.268445,0.461308,0.116923,0.923479,0.290983,0.00308442,0.467728,0.691368,0.931119,0.295214,0.658866,0.972485,0.420024,0.678311,0.379739,0.245915,0.385241,0.0865463,0.692755,0.758172,0.0872248,0.023499,0.95643,0.215259,0.940864,0.342952,0.705341,0.817124,0.647541,0.870456,0.721519,0.17201,0.641541,0.76294,0.384737,0.287861,0.339766,0.884118,0.771959,0.522702,0.767217,0.627415,0.46359,0.396714,0.806149,0.0897431,0.798501,0.598739,0.203042,0.530031,0.59184,0.630498,0.689799,0.665956,0.756298,0.511567,0.412931,0.458161,0.920619,0.284565,0.1915,0.590839,0.97366,0.920683,0.292078,0.9148,0.279687,0.749473,0.0422907,0.58138,0.0868096,0.0115806,0.608139,0.158177,0.940704,0.315501,0.694034,0.862284,0.47998,0.192483,0.444908,0.550251,0.0123853,0.103933,0.221394,0.668586,0.723139,0.604443,0.427291,0.527067,0.18031,0.691268,0.940254,0.821725,0.750437,0.596134,0.192302,0.0128245,0.426836,0.308386,0.46856,0.963265,0.902716,0.824772,0.570952,0.955277,0.748122,0.952376,0.979086,0.2443,0.2566,0.355981,0.588192,0.864338,0.566459,0.988554,0.588192,0.608931,0.0445373,0.614126,0.176582,0.766057,0.2038,0.989763,0.999922,0.829342,0.455327,0.861869,0.432829,0.960258,0.112234,0.0604503,0.609299,0.37266,0.83871,0.827454,0.562778,0.81702,0.285377,0.902664,0.0968322,0.730853,0.00425845,0.604289,0.226411,0.0511448,0.177302,0.431703,0.0938674,0.671596,0.531605,0.526863,0.538438,0.158534,0.905191,0.326724,0.347748,0.0326365,0.0813483,0.604427,0.5439,0.306744,0.231167,0.882231,0.745959,0.0831399,0.366463,0.0276024,0.923322,0.111757,0.80911,0.323239,0.643428,0.770319,0.70285,0.71162,0.417194,0.915851,0.203024,0.921279,0.473236,0.717317,0.86601,0.0305173,0.339543,0.351005,0.733103,0.694397,0.832573,0.18019,0.590942,0.701931,0.971578,0.263144,0.355558,0.394048,0.120183,0.361051,0.439864,0.843331,0.381019,0.285038,0.177745,0.0927448,0.706646,0.555198,0.503527,0.350658,0.494446,0.915639,0.245657,0.959693,0.454479,0.860603,0.306978,0.233764,0.787963,0.768624,0.989844,0.791606,0.118613,0.370087,0.383577,0.632979,0.00538117,0.958724,0.606695,0.777228,0.100271,0.44281,0.738613,0.761815,0.498931,0.252205,0.901658,0.104852,0.455138,0.423382,0.0779234,0.0884483,0.944045,0.107829,0.127126,0.864294,0.0310309,0.545576,0.0324523,0.868637,0.597023,0.0931011,0.00708896,0.934648,0.273682,0.961997,0.854504,0.764574,0.269834,0.00748074,0.41869,0.326208,0.170805,0.723855,0.255724,0.0797161,0.566874,0.947412,0.388858,0.484815,0.992985,0.350849,0.820668,0.482797,0.339161,0.305929,0.841653,0.92645,0.11374,0.611957,0.243765,0.356348,0.158026,0.0127376,0.0981854,0.513299,0.05523,0.727617,0.368872,0.710415,0.720302,0.692813,0.91677,0.123729,0.6311,0.60905,0.802457,0.907651,0.88634,0.215823,0.86946,0.663231,0.0479378,0.502693,0.33778,0.173049,0.610168,0.456155,0.0881169,0.237173,0.975361,0.127159,0.418183,0.840492,0.496967,0.667679,0.698311,0.523693,0.551004,0.67591,0.677352,0.674488,0.859627,0.282174,0.0939071,0.27445,0.332728,0.957177,0.985532,0.524687,0.740469,0.627832,0.952702,0.920172,0.225619,0.0286195,0.429739,0.0860785,0.78169,0.10156,0.630688,0.357365,0.555008,0.56978,0.531621,0.348858,0.752903,0.0907445,0.304637,0.640217,0.487489,0.201857,0.478532,0.548625,0.25015,0.156966,0.917501,0.629033,0.325296,0.284127,0.811173,0.307673,0.280441,0.892134,0.176298,0.718696,0.690601,0.138102,0.875683,0.279213,0.198825,0.620202,0.781208,0.990106,0.0103615,0.169576,0.744607,0.471882,0.176965,0.165367,0.0966997,0.402935,0.314922,0.536454,0.777478,0.896843,0.340187,0.457914,0.540911,0.885532,0.573548,0.689938,0.317436,0.904658,0.82497,0.743943,0.889134,0.291292,0.169256,0.853752,0.734935,0.542366,0.554855,0.190028,0.962895,0.278305,0.337953,0.370315,0.220691,0.25603,0.221964,0.703646,0.728651,0.288078,0.348851,0.13451,0.0503812,0.086695,0.26464,0.504547,0.103732,0.726563,0.994274,0.0958737,0.856976,0.593031,0.438798,0.482742,0.0625478,0.67248,0.397139,0.750844,0.911219,0.524599,0.473192,0.993098,0.974308,0.0836433,0.880567,0.308799,0.523451,0.730915,0.356535,0.334418,0.788151,0.137417,0.0136661,0.25904,0.126048,0.806749,0.142255,0.324307,0.710172,0.630584,0.297209,0.199904,0.867493,0.284499,0.174563,0.0888185,0.211559,0.76231,0.228578,0.264925,0.60514,0.337731,0.348278,0.375585,0.769766,0.996377,0.0887172,0.379088,0.803819,0.922059,0.31665,0.687006,0.284702,0.183713,0.156643,0.677964,0.770889,0.0332767,0.274267,0.701682,0.626847,0.757562,0.601903,0.460568,0.611447,0.978946,0.715515,0.513697,0.212499,0.0241173,0.998454,0.836878,0.965326,0.701498,0.0410571,0.75389,0.753614,0.151312,0.203973,0.992896,0.337752,0.812334,0.877709,0.0433545,|0.179783,0.461424,0.382106,0.0518582,0.454325,0.509281,0.365295,0.683776,0.465332,0.252124,0.33473,0.773915,0.540944,0.0246513,0.923565,0.708847,0.500375,0.787934,0.640538,0.579089,0.806648,0.299225,0.941814,0.343256,0.748631,0.780086,0.30805,0.463926,0.519902,0.474534,0.0285793,0.849999,0.926233,0.987665,0.617901,0.684897,0.36973,0.00511479,0.640709,0.823358,0.423954,0.0883719,0.376929,0.529298,0.14816,0.619898,0.764296,0.758075,0.998503,0.358841,0.529875,0.932066,0.142122,0.712336,0.593796,0.451599,0.675916,0.393408,0.587923,0.0737825,0.152561,0.22242,0.419489,0.38738,0.287618,0.796241,0.397651,0.0306424,0.573818,0.146723,0.39669,0.146441,0.39907,0.260025,0.530399,0.122986,0.350275,0.997873,0.423007,0.878517,0.412282,0.144349,0.170721,0.87784,0.960667,0.717327,0.330691,0.789738,0.0569661,0.451072,0.41619,0.0438097,0.169302,0.139764,0.625478,0.858454,0.809563,0.266702,0.773934,0.259605,0.757354,0.605096,0.659206,0.344221,0.874201,0.623336,0.626324,0.65946,0.104329,0.13038,0.264595,0.792632,0.819909,0.750485,0.742897,0.702311,0.607195,0.722097,0.306732,0.0659673,0.932741,0.514535,0.506842,0.213585,0.649565,0.222243,0.798088,0.725879,0.748832,0.839528,0.115819,0.0542329,0.00832039,0.0976024,0.919035,0.557286,0.261645,0.328685,0.946572,0.685045,0.557269,0.913554,0.197806,0.29902,0.213787,0.458861,0.210858,0.266209,0.290497,0.604058,0.264194,0.364889,0.914727,0.213553,0.442028,0.28603,0.289918,0.917607,0.54997,0.485666,0.0194196,0.467464,0.742523,0.492341,0.93975,0.0559424,0.70162,0.816484,0.0978503,0.681948,0.041679,0.811276,0.559032,0.968319,0.284446,0.0103155,0.537345,0.295879,0.873417,0.908691,0.67494,0.147195,0.810539,0.575098,0.173925,0.921854,0.0549319,0.405538,0.861338,0.230045,0.330564,0.341916,0.908073,0.299116,0.383384,0.502722,0.901369,0.178152,0.93873,0.380504,0.54882,0.982875,0.0720366,0.216988,0.97657,0.229741,0.0924847,0.281636,0.987973,0.0519723,0.680494,0.690907,0.345338,0.403609,0.661208,0.401528,0.402917,0.460379,0.690784,0.2364,0.946104,0.449486,0.864418,0.995333,0.959785,0.74198,0.10511,0.0819077,0.31926,0.617564,0.52393,0.716646,0.0605048,0.972892,0.519254,0.626003,0.604027,0.884787,0.923454,0.716424,0.852824,0.570595,0.564407,0.398923,0.41539,0.0886435,0.062243,0.163433,0.660867,0.40698,0.244892,0.884581,0.386016,0.411855,0.382074,0.30639,0.647076,0.253563,0.724028,0.163094,0.617468,0.438975,0.265682,0.906815,0.772071,0.138235,0.604858,0.280632,0.339103,0.878966,0.724064,0.598291,0.889065,0.198729,0.77883,0.10144,0.236108,0.055574,0.364811,0.247477,0.548544,0.904218,0.560041,0.669034,0.0399897,0.697872,0.556579,0.757165,0.495328,0.426123,0.590807,0.189054,0.247472,0.646644,0.428661,0.386524,0.37918,0.665213,0.835247,0.894883,0.185059,0.993952,0.444104,0.50528,0.561834,0.321162,0.650876,0.0468023,0.884221,0.688589,0.820521,0.495076,0.168082,0.916088,0.929407,0.909309,0.104681,0.690239,0.532594,0.950091,0.614139,0.114104,0.460213,0.380773,0.655261,0.571676,0.416395,0.147434,0.384319,0.148298,0.297187,0.424245,0.540468,0.0202358,0.74368,0.0185857,0.479833,0.244896,0.834351,0.969591,0.788857,0.0280939,0.403439,0.379665,0.172477,0.124191,0.670384,0.925789,0.237309,0.368098,0.87504,0.496204,0.474339,0.910504,0.381634,0.793273,0.940913,0.155371,0.00398117,0.987366,0.66062,0.546765,0.528438,0.486458,0.841955,0.603668,0.795569,0.117228,0.7717,0.101464,0.645137,0.563346,0.737864,0.297394,0.580073,0.0353765,0.575925,0.817598,0.510578,0.333069,0.330358,0.542831,0.453385,0.83303,0.878865,0.566748,0.709363,0.0574056,0.457853,0.512731,0.931611,0.482309,0.931072,0.651706,0.577679,0.694872,0.526846,0.0815479,0.180399,0.260239,0.737321,0.0181444,0.932217,0.553889,0.320945,0.273347,0.283938,0.998666,0.199262,0.328631,0.634836,0.0660003,0.96659,0.22321,0.134433,0.48596,0.995296,0.869719,0.595233,0.319919,0.147352,0.406339,0.115614,0.0269142,0.256997,0.374482,0.34542,0.672713,0.333122,0.404218,0.983049,0.544976,0.582867,0.530718,0.896065,0.309003,0.764716,0.910662,0.221651,0.124118,0.0259783,0.847105,0.234472,0.903794,0.0911077,0.66027,0.787591,0.522963,0.966893,0.563388,0.591201,0.0494788,0.708744,0.0543516,0.168301,0.323964,0.0669013,0.143456,0.361682,0.50872,0.580667,0.607024,0.0287987,0.534575,0.13,0.697544,0.346342,0.544397,0.885369,0.4306,0.2763,0.37444,0.927656,0.268525,0.75076,0.379741,0.680586,0.476012,0.0392179,0.732453,0.3961,0.130743,0.816216,0.526859,0.944301,0.988051,0.742601,0.56938,0.75708,0.677033,0.112545,0.954688,0.655917,0.0176724,0.0659114,0.19102,0.801297,0.691413,0.985007,0.988487,0.411865,0.471566,0.902219,0.0681533,0.940669,0.193062,0.661057,0.373458,0.758926,0.184962,0.933337,0.522858,0.0914717,0.105,0.954287,0.798178,0.329551,0.899717,0.180862,0.441887,0.559028,0.510449,0.59825,0.0491587,0.889755,0.637668,0.482783,0.514853,0.834433,0.341504,0.966899,0.500928,0.967915,0.348164,0.387488,0.555466,0.959764,0.220693,0.0233826,0.440493,0.123332,0.969405,0.709379,0.698743,0.910202,0.481421,0.831575,0.830732,0.0920274,0.851124,0.0184383,0.0411363,0.520905,0.119948,0.888701,0.633867,0.377069,0.925748,0.195329,0.995661,0.359899,0.940965,0.104632,0.0195884,0.983951,0.382559,0.830887,0.794406,0.99657,0.552181,0.773351,0.224056,0.548621,0.823202,0.93925,0.970885,0.30408,0.862565,0.424026,0.54403,0.588346,0.213174,0.55251,0.26853,0.0722547,0.249202,0.171031,0.745762,0.511113,0.797027,0.432907,0.829468,0.130994,0.952088,0.248319,0.835544,0.779293,0.0618429,0.381714,0.728357,0.496182,0.2578,0.30251,0.950961,0.873787,0.54431,0.77672,0.409606,0.124901,0.427927,0.284252,0.775203,0.528954,0.150755,0.473763,0.751359,0.460389,0.384602,0.119727,0.428975,0.0127571,0.054118,0.638773,0.887073,0.790517,0.63514,0.373899,0.62776,0.643976,0.849536,0.121735,0.856922,0.658065,0.494185,0.64408,0.0524931,0.762133,0.913171,0.538381,0.907031,0.747617,0.0971792,0.141528,0.28475,0.875844,0.838932,0.413772,0.554038,0.0141473,0.68746,0.584643,0.978393,0.616711,0.729627,0.4218,0.0135625,0.800148,0.109461,0.456701,0.179717,0.105958,0.344486,0.092577,0.464261,0.0255572,0.140875,0.396049,0.542886,0.226703,0.711052,0.081194,0.131707,0.671552,0.632857,0.794504,0.000424385,0.252898,0.857897,0.402546,0.289412,0.752403,0.837096,0.0486461,0.561035,0.179295,0.498449,0.139204,0.358517,0.362457,0.00211,0.419387,0.484739,0.784896,0.125758,0.552429,0.0441239,0.454543,0.582411,0.282184,0.905556,0.772484,0.0262727,0.469122,0.807157,0.458979,0.688616,0.126826,0.0801562,0.251509,0.0182782,0.190605,0.389612,0.836838,0.674648,0.386721,0.145005,0.094827,0.942233,0.897349,0.278926,0.501632,0.378991,0.749329,0.501615,0.611779,0.043654,0.436206,0.931544,0.881612,0.937717,0.449721,0.614642,0.722064,0.786547,0.607104,0.883088,0.707813,0.460555,0.0518997,0.968005,0.62888,0.332041,0.156302,0.0630306,0.668171,0.420988,0.00149292,0.686737,0.663729,0.592228,0.172818,0.812944,0.17446,0.935742,0.975009,0.375181,0.562194,0.633147,0.190691,0.463783,0.750484,0.774469,0.167199,0.737339,0.660598,0.906047,0.442408,0.701771,0.606103,0.465272,0.432216,0.42274,0.139375,0.469105,0.890138,0.480335,0.232619,0.502846,0.955808,0.6684,0.13076,0.938312,0.360083,0.790399,0.248741,0.929492,0.224859,0.596649,0.0131969,0.292192,0.018701,0.667306,0.139098,0.0824324,0.625476,0.432793,0.692898,0.904033,0.464482,0.886946,0.986275,0.950012,0.33441,0.717091,0.571163,0.982301,0.392742,0.29796,0.0132535,0.847791,0.531427,0.783489,0.306161,0.309345,0.346261,0.393895,0.50381,0.459036,0.30229,0.359905,0.704723,0.657986,0.98163,0.361402,0.265055,0.691085,0.736434,0.646366,0.570401,0.725923,0.62428,0.348713,0.670447,0.949591,0.929615,0.244765,0.639555,0.446148,0.958495,0.631366,0.614089,0.00602835,0.23203,0.215667,0.972258,0.0172256,0.806072,0.34822,0.00772321,0.738887,0.128825,0.990443,0.159561,0.00531816,0.766892,0.720351,0.519766,0.591244,0.234127,0.91738,0.317308,0.596002,0.845176,0.312482,0.759815,0.873841,0.526442,0.603791,0.641229,0.0424227,0.230645,0.966301,0.411465,0.711177,0.333357,0.811431,0.920659,0.323546,0.566544,0.696788,0.148283,0.224345,0.524429,0.982829,0.00160664,0.781653,0.319454,0.850667,0.713328,0.514775,0.0127472,0.935308,0.516338,0.189331,0.364369,0.376677,0.191693,0.175354,0.464736,0.0342132,0.554886,0.245024,0.0980407,0.224153,0.989597,0.169217,0.379078,0.524845,0.629224,0.399544,0.632119,0.409832,0.411592,0.0759783,0.441779,0.921278,0.49787,0.236153,0.355369,0.242028,0.377608,0.290617,0.280855,0.00653696,0.896041,0.00852358,0.547227,0.806514,0.963958,0.625548,0.317087,0.663233,0.674547,0.977112,0.3846,0.644393,0.732739,0.0268055,0.768523,0.241461,0.644232,0.242212,0.47624,0.506405,0.561621,0.700781,0.718209,0.946806,0.0953039,0.376088,0.683215,0.709085,0.972507,0.597628,0.966239,0.206575,0.713441,0.947432,0.165087,0.774999,0.721466,0.577735,0.452628,0.464533,0.954814,0.638162,0.41653,0.222424,0.711548,0.50557,0.486756,0.188866,0.714347,0.552265,0.322415,0.956719,0.578059,0.522356,0.808613,0.137697,0.0818648,0.778984,0.311848,0.232731,0.932589,0.677827,0.0256152,0.733283,0.961486,0.331256,0.221865,0.0925223,0.005041,0.127144,0.522088,0.289395,0.376229,0.581607,0.72201,0.634013,|0.202882,0.808423,0.545145,0.526438,0.559096,0.416231,0.611874,0.185317,0.51946,0.475666,0.709453,0.465228,0.376571,0.778162,0.0957188,0.35848,0.26585,0.637962,0.303649,0.325908,0.726583,0.719541,0.0801495,0.0963609,0.573541,0.325152,0.974368,0.0171142,0.0952355,0.917753,0.948428,0.988,0.856989,0.400481,0.6724,0.460516,0.881357,0.794323,0.457456,0.597273,0.762548,0.954501,0.22781,0.239516,0.679364,0.600808,0.562824,0.229368,0.933015,0.704207,0.813235,0.53,0.767915,0.77185,0.056913,0.600246,0.9252,0.974262,0.194477,0.415153,0.167864,0.503567,0.753669,0.520857,0.438208,0.430792,0.681901,0.427381,0.0947977,0.612676,0.592945,0.879669,0.742472,0.0977265,0.936064,0.806773,0.64023,0.685659,0.213441,0.296276,0.85666,0.458499,0.676255,0.176095,0.690658,0.914302,0.0700377,0.558973,0.662296,0.0932091,0.827498,0.672277,0.631997,0.986293,0.862038,0.39716,0.59146,0.664059,0.51624,0.184406,0.13637,0.994447,0.875232,0.606724,0.30066,0.840735,0.288778,0.878436,0.456704,0.701978,0.26675,0.861475,0.0193725,0.893034,0.445794,0.512248,0.138427,0.686189,0.0470699,0.0460956,0.172549,0.474939,0.265575,0.390744,0.571973,0.539586,0.37467,0.79372,0.258344,0.437153,0.633784,0.346452,0.750099,0.0222295,0.652098,0.04899,0.0235219,0.68827,0.380672,0.120412,0.0371637,0.045269,0.562356,0.846667,0.553557,0.80493,0.471033,0.661258,0.965051,0.883262,0.928795,0.191616,0.403317,0.947416,0.832792,0.51629,0.995644,0.805577,0.412167,0.871345,0.91848,0.334927,0.516623,0.511929,0.76465,0.0775414,0.541972,0.176589,0.15203,0.200396,0.137717,0.237235,0.229884,0.519848,0.129024,0.535618,0.303372,0.297401,0.308692,0.36307,0.904214,0.751566,0.142072,0.0993775,0.761514,0.247486,0.580029,0.383909,0.617914,0.677794,0.631053,0.822216,0.13633,0.296099,0.405181,0.828749,0.275632,0.342049,0.092134,0.74497,0.397087,0.51477,0.975426,0.108458,0.624682,0.522265,0.961034,0.519861,0.506642,0.100414,0.923267,0.878304,0.767255,0.73976,0.561784,0.305358,0.604466,0.0641761,0.0298073,0.815373,0.34414,0.485506,0.954636,0.0347711,0.308506,0.891325,0.373022,0.461096,0.93941,0.8832,0.01993,0.846326,0.616026,0.186604,0.457393,0.554257,0.542969,0.257334,0.140182,0.358405,0.0230486,0.472348,0.982355,0.45877,0.698013,0.962039,0.387251,0.200337,0.301543,0.0188091,0.37872,0.110542,0.536499,0.25252,0.956332,0.189171,0.251096,0.692497,0.493044,0.601099,0.130456,0.653144,0.507965,0.854294,0.115287,0.235166,0.0544806,0.339891,0.356577,0.022021,0.461665,0.0321314,0.2626,0.455261,0.0870212,0.538349,0.426463,0.257411,0.980472,0.107401,0.754629,0.867964,0.813092,0.581418,0.39203,0.231347,0.4615,0.600315,0.953317,0.949385,0.60242,0.365628,0.865047,0.175934,0.784308,0.604467,0.816853,0.828392,0.53386,0.895641,0.946645,0.119084,0.628311,0.322774,0.650389,0.794132,0.816609,0.109835,0.679848,0.257206,0.354543,0.618542,0.598994,0.216276,0.977628,0.43433,0.445333,0.205084,0.502883,0.064586,0.722607,0.512642,0.149365,0.791852,0.956422,0.590047,0.048789,0.320806,0.669872,0.69223,0.0851833,0.42562,0.871747,0.971219,0.898277,0.646843,0.758799,0.00116128,0.287728,0.0225248,0.0494778,0.622492,0.557134,0.501806,0.857378,0.153795,0.241007,0.472188,0.551323,0.46144,0.829095,0.580636,0.749,0.879458,0.894703,0.244906,0.556552,0.820564,0.298886,0.936475,0.0989082,0.017353,0.446997,0.832419,0.789492,0.569396,0.695894,0.524619,0.373081,0.468712,0.87311,0.975269,0.148965,0.91184,0.920113,0.532153,0.790211,0.773973,0.77728,0.47308,0.0694775,0.805557,0.121593,0.782121,0.500076,0.167734,0.349415,0.498262,0.779154,0.863063,0.0808208,0.455774,0.930411,0.0355608,0.14639,0.650685,0.331169,0.695622,0.925259,0.962278,0.433582,0.0319449,0.159447,0.0525151,0.417437,0.665517,0.927761,0.16678,0.727017,0.342392,0.0578707,0.556055,0.0986177,0.716075,0.407739,0.59085,0.756989,0.820194,0.453146,0.70892,0.228494,0.614482,0.866206,0.604307,0.939691,0.71369,0.195987,0.340917,0.287052,0.338947,0.47564,0.222084,0.415593,0.466401,0.0784536,0.932805,0.0813534,0.909584,0.15643,0.638304,0.843419,0.793404,0.60538,0.272517,0.59141,0.0020687,0.500085,0.0994038,0.0630292,0.466517,0.377866,0.47314,0.31471,0.236522,0.669275,0.343382,0.313601,0.815588,0.00876534,0.444183,0.685586,0.764764,0.894416,0.394559,0.644268,0.62889,0.207758,0.0135851,0.95258,0.235569,0.12429,0.400808,0.438565,0.718709,0.416924,0.599318,0.698533,0.927539,0.0201929,0.107367,0.639373,0.714109,0.822056,0.41215,0.58191,0.89846,0.0374266,0.784897,0.614495,0.911685,0.895659,0.145105,0.00877768,0.649259,0.516183,0.0596235,0.751052,0.473151,0.492478,0.732733,0.3319,0.256195,0.872632,0.259068,0.99665,0.550176,0.782699,0.793429,0.83229,0.467281,0.763322,0.493175,0.165559,0.910362,0.237146,0.432351,0.0971106,0.081526,0.369732,0.979053,0.970851,0.741046,0.714336,0.255186,0.246036,0.0653144,0.148125,0.732495,0.261902,0.976745,0.846899,0.494649,0.113942,0.179862,0.657972,0.705292,0.88569,0.610777,0.172923,0.423932,0.384054,0.79,0.10057,0.948768,0.984419,0.454687,0.728036,0.145159,0.518178,0.437621,0.786805,0.256401,0.684053,0.120333,0.75282,0.494115,0.737432,0.0723155,0.057373,0.392066,0.0195891,0.885325,0.950667,0.655981,0.142079,0.498557,0.522562,0.220571,0.492438,0.987432,0.0300633,0.547827,0.157881,0.225916,0.406297,0.163079,0.158867,0.444928,0.856575,0.751917,0.631688,0.444526,0.16911,0.898749,0.418173,0.682797,0.895833,0.54354,0.563123,0.458328,0.131065,0.304179,0.0199147,0.810818,0.305215,0.536532,0.307474,0.225194,0.254389,0.561826,0.413802,0.9336,0.247246,0.619978,0.403547,0.762355,0.918655,0.395186,0.700187,0.0558093,0.203611,0.123012,0.546389,0.338445,0.178988,0.89896,0.929882,0.674033,0.0290781,0.759936,0.173054,0.640342,0.736893,0.645596,0.266296,0.120445,0.224509,0.80868,0.455953,0.845991,0.725981,0.188975,0.226459,0.284957,0.970996,0.512521,0.785531,0.718641,0.0149472,0.384161,0.48245,0.744318,0.517885,0.99642,0.416356,0.896086,0.0891082,0.0793506,0.184854,0.863124,0.738167,0.768164,0.555413,0.618388,0.071489,0.14448,0.129245,0.0829535,0.0373567,0.454258,0.868885,0.797107,0.333114,0.0572316,0.801654,0.316651,0.339984,0.493186,0.25476,0.00706023,0.447316,0.402909,0.276847,0.694342,0.320845,0.599986,0.0646564,0.6801,0.225712,0.439797,0.746202,0.833523,0.0635158,0.406939,0.426509,0.587196,0.465152,0.467582,0.0312158,0.996546,0.895185,0.521035,0.164355,0.902383,0.899374,0.643782,0.173361,0.000949681,0.736041,0.802666,0.180143,0.0656736,0.659714,0.0118604,0.790869,0.208615,0.74396,0.0810872,0.877592,0.770383,0.969466,0.25811,0.16735,0.107331,0.725159,0.797751,0.542141,0.661747,0.424711,0.434318,0.844001,0.121719,0.889065,0.600655,0.430382,0.816856,0.575632,0.323735,0.704812,0.453965,0.834718,0.406172,0.721583,0.407561,0.117949,0.419134,0.758768,0.755487,0.491239,0.794833,0.344995,0.973545,0.678464,0.558352,0.358614,0.332289,0.134985,0.96415,0.189674,0.516133,0.627757,0.381759,0.944241,0.118239,0.9483,0.691533,0.12241,0.724117,0.742362,0.865723,0.575702,0.414824,0.913369,0.44709,0.155077,0.466765,0.728865,0.266525,0.471084,0.898577,0.193645,0.492256,0.716682,0.747046,0.811126,0.00983649,0.473133,0.312678,0.992227,0.934155,0.106881,0.656138,0.924381,0.986887,0.157978,0.691318,0.441964,0.0713868,0.74384,0.419929,0.692746,0.179287,0.642833,0.525217,0.0237697,0.654286,0.119101,0.0935566,0.239791,0.927693,0.76323,0.882479,0.381791,0.902588,0.751056,0.452568,0.543486,0.0752931,0.411909,0.397811,0.308074,0.0680614,0.465704,0.515516,0.260608,0.640878,0.565938,0.606166,0.746964,0.429373,0.880046,0.712327,0.122658,0.699473,0.997705,0.091782,0.982474,0.349385,0.850183,0.934991,0.181265,0.380093,0.833659,0.684895,0.111013,0.756845,0.37377,0.31369,0.924419,0.487281,0.762656,0.785643,0.36064,0.418174,0.224663,0.597612,0.691461,0.745619,0.237835,0.655738,0.709467,0.223005,0.726204,0.0509619,0.985598,0.480831,0.86687,0.338204,0.728188,0.502651,0.424963,0.428681,0.165245,0.898786,0.845539,0.70131,0.950513,0.594543,0.710031,0.80539,0.170414,0.807748,0.213436,0.574378,0.398572,0.614566,0.0689569,0.0819549,0.183659,0.536587,0.107775,0.19828,0.443165,0.809394,0.987183,0.426127,0.725065,0.195814,0.753413,0.877494,0.192871,0.219281,0.608326,0.956739,0.993143,0.349131,0.254665,0.0227839,0.956172,0.591089,0.2079,0.459233,0.80383,0.608074,0.647547,0.766607,0.964262,0.0793176,0.352569,0.137023,0.43354,0.564224,0.375526,0.812554,0.971336,0.335935,0.951546,0.857776,0.690846,0.125251,0.678093,0.219843,0.179068,0.223981,0.747691,0.805044,0.958833,0.19023,0.825025,0.0644626,0.419083,0.296048,0.681945,0.193979,0.983024,0.126925,0.517951,0.311719,0.815964,0.851437,0.868607,0.0924032,0.62901,0.664029,0.630933,0.366081,0.545476,0.789667,0.0135713,0.912747,0.818879,0.184759,0.381293,0.307119,0.181303,0.361749,0.0964366,0.656648,0.961063,0.717786,0.585873,0.667769,0.472092,0.163053,0.525214,0.0741639,0.19476,0.0012874,0.60136,0.180308,0.9611,0.260462,0.813354,0.814622,0.170286,0.257958,0.568035,0.499724,0.810947,0.382345,0.74298,0.499211,0.295988,0.353166,0.135217,0.97112,0.342424,0.753492,0.745206,0.178501,0.022836,0.5393,0.25233,0.355573,0.41322,0.922486,0.131523,0.0205341,0.240254,0.0139215,|0.447339,0.290146,0.148467,0.162949,0.609408,0.951913,0.786276,0.15568,0.713598,0.348375,0.135567,0.855377,0.182826,0.971017,0.314559,0.76856,0.443507,0.592115,0.13142,0.257551,0.935315,0.871963,0.463001,0.245647,0.243449,0.496523,0.494296,0.393744,0.543651,0.203674,0.984698,0.881365,0.615604,0.3449,0.689442,0.257842,0.513153,0.160963,0.829054,0.792086,0.900491,0.0635669,0.332041,0.545807,0.837439,0.423871,0.145279,0.0398352,0.493306,0.55219,0.138014,0.0379629,0.502235,0.898989,0.230533,0.238802,0.205527,0.63953,0.727638,0.207246,0.0930959,0.448372,0.677455,0.0566194,0.21102,0.183614,0.0302118,0.393001,0.339321,0.914612,0.600082,0.755912,0.912674,0.12621,0.553991,0.722882,0.668863,0.906361,0.861022,0.260401,0.768234,0.655303,0.412322,0.756987,0.573953,0.801664,0.330189,0.936752,0.0582165,0.534064,0.791771,0.83052,0.885291,0.469823,0.411204,0.275595,0.63824,0.906963,0.254229,0.0334301,0.936341,0.147588,0.830118,0.921128,0.814874,0.0372364,0.649533,0.641703,0.778267,0.607512,0.317715,0.833367,0.901329,0.687291,0.397644,0.365991,0.97403,0.728769,0.231763,0.193061,0.64254,0.251928,0.99377,0.642848,0.831248,0.675133,0.525314,0.689759,0.146142,0.0959021,0.66973,0.641667,0.423554,0.811876,0.156431,0.898777,0.920044,0.931166,0.0866876,0.612605,0.40855,0.0900862,0.12982,0.0240492,0.149053,0.104961,0.67063,0.81126,0.127105,0.932999,0.807815,0.98374,0.357714,0.823696,0.22949,0.832391,0.518562,0.859472,0.830373,0.800807,0.255046,0.588897,0.166686,0.725822,0.836361,0.577914,0.739867,0.407777,0.142764,0.754621,0.975589,0.746658,0.847544,0.6425,0.452775,0.0270835,0.756252,0.108834,0.233028,0.29007,0.935444,0.303622,0.295015,0.427303,0.0986206,0.471058,0.381099,0.461677,0.577802,0.427237,0.443728,0.674866,0.449527,0.115985,0.838129,0.0270338,0.258813,0.853788,0.429382,0.243389,0.716789,0.392426,0.241787,0.392529,0.156355,0.545397,0.62142,0.955241,0.984559,0.936346,0.774517,0.37453,0.561182,0.157486,0.333213,0.483861,0.757504,0.490625,0.59617,0.75541,0.713642,0.261758,0.430267,0.692532,0.0217495,0.759955,0.0123833,0.808642,0.751526,0.933736,0.331822,0.426069,0.483406,0.560018,0.950895,0.966309,0.76941,0.753065,0.339144,0.0456704,0.253434,0.0013575,0.883081,0.877075,0.641286,0.0464766,0.644348,0.0978898,0.677438,0.403676,0.959154,0.246616,0.980022,0.110239,0.605151,0.88189,0.598037,0.258154,0.749361,0.0721385,0.939518,0.340716,0.882435,0.481444,0.335769,0.113213,0.882313,0.464799,0.5122,0.505434,0.908212,0.823928,0.086558,0.535279,0.914487,0.164423,0.923741,0.451072,0.287134,0.836611,0.828005,0.175156,0.0779027,0.372048,0.760767,0.60538,0.969826,0.0504357,0.300574,0.815559,0.504787,0.337101,0.945235,0.736764,0.485525,0.737578,0.0685092,0.754751,0.696217,0.75581,0.620924,0.798599,0.901062,0.128605,0.148946,0.211153,0.446299,0.834484,0.97657,0.961984,0.709978,0.760838,0.27791,0.947355,0.732575,0.655761,0.97461,0.707099,0.435064,0.89442,0.369444,0.0430784,0.92124,0.13303,0.990091,0.851382,0.657737,0.0167332,0.848239,0.941647,0.223876,0.644285,0.67792,0.271369,0.125725,0.634818,0.298015,0.786315,0.687015,0.738212,0.930365,0.397885,0.556901,0.32513,0.981453,0.452375,0.397493,0.75443,0.831806,0.672037,0.925137,0.358764,0.0602084,0.432965,0.262475,0.882955,0.390951,0.028517,0.916137,0.109929,0.425127,0.611917,0.381863,0.468046,0.141133,0.0140998,0.700753,0.647792,0.959356,0.634013,0.486685,0.0294273,0.392952,0.255415,0.515142,0.0787687,0.168165,0.91278,0.434852,0.632761,0.633815,0.40523,0.256009,0.262347,0.85496,0.979167,0.457603,0.936241,0.0912541,0.763169,0.986952,0.0747349,0.326321,0.707096,0.197054,0.0982398,0.450205,0.890795,0.214675,0.376486,0.555463,0.243646,0.750227,0.673651,0.0724968,0.218505,0.0122899,0.0257267,0.799184,0.694633,0.360314,0.740104,0.238804,0.370905,0.704856,0.179607,0.642358,0.430008,0.815056,0.39556,0.65019,0.690096,0.356514,0.810396,0.825123,0.0610694,0.409817,0.299366,0.235528,0.572136,0.865493,0.999361,0.702554,0.0226596,0.789776,0.237108,0.869614,0.179021,0.378984,0.9917,0.60455,0.134374,0.708795,0.856839,0.757193,0.700581,0.140077,0.880893,0.65264,0.956299,0.954776,0.955453,0.122758,0.282585,0.545202,0.0492455,0.889772,0.448775,0.576744,0.325203,0.782572,0.566292,0.788693,0.673472,0.255584,0.713292,0.863934,0.147869,0.128765,0.453848,0.2143,0.4098,0.251693,0.602407,0.987865,0.192711,0.350882,0.750011,0.0127147,0.106442,0.753685,0.119402,0.942496,0.0929229,0.626884,0.394962,0.123303,0.646829,0.409576,0.302903,0.413294,0.506934,0.82836,0.701502,0.0625657,0.423071,0.164886,0.0233492,0.751322,0.826656,0.0368736,0.435383,0.633792,0.551987,0.892864,0.0944173,0.330859,0.94366,0.0253017,0.386501,0.821591,0.524428,0.652855,0.222178,0.810791,0.750131,0.912555,0.981511,0.274195,0.394244,0.422756,0.874116,0.712083,0.47825,0.447647,0.16679,0.471994,0.913039,0.755099,0.677872,0.762598,0.525156,0.710639,0.541921,0.144985,0.128326,0.241,0.0873551,0.358075,0.555772,0.241072,0.515548,0.0251682,0.98218,0.164913,0.580938,0.654383,0.362799,0.850996,0.908687,0.790181,0.944982,0.279938,0.33059,0.165509,0.268951,0.50364,0.419884,0.473476,0.0531074,0.271614,0.217674,0.775761,0.801833,0.508788,0.361189,0.838214,0.825472,0.778209,0.43347,0.99296,0.789558,0.152636,0.0657679,0.672673,0.348524,0.0239829,0.987637,0.618937,0.802533,0.748064,0.330277,0.57989,0.841324,0.456066,0.528815,0.235515,0.659843,0.795131,0.0628048,0.711346,0.596082,0.315976,0.62718,0.874601,0.835894,0.28636,0.93528,0.533717,0.789158,0.754252,0.361039,0.835076,0.166741,0.473086,0.646669,0.701957,0.801702,0.849744,0.248874,0.0633763,0.124311,0.62261,0.317612,0.768876,0.427893,0.638643,0.197634,0.815077,0.231828,0.76667,0.746191,0.938709,0.362498,0.354956,0.541364,0.457087,0.303885,0.476143,0.280381,0.758885,0.55255,0.903073,0.715903,0.107089,0.901036,0.147757,0.225997,0.894613,0.324844,0.894101,0.242798,0.729512,0.457421,0.345213,0.751344,0.872416,0.802145,0.392173,0.177753,0.863371,0.961991,0.657307,0.000596344,0.0731691,0.767123,0.732702,0.48757,0.461865,0.420284,0.384066,0.367645,0.913036,0.945022,0.348823,0.414501,0.577641,0.781253,0.501839,0.118138,0.139031,0.444843,0.660848,0.22196,0.878757,0.770928,0.239403,0.0544496,0.116101,0.0167908,0.232908,0.526426,0.566937,0.0464866,0.694273,0.343401,0.855407,0.967869,0.719499,0.630987,0.610267,0.00152266,0.0678367,0.254736,0.140951,0.60248,0.0449418,0.797,0.477847,0.446884,0.544487,0.35265,0.497377,0.926312,0.756686,0.415207,0.883853,0.0688487,0.0764076,0.151728,0.252597,0.516977,0.860111,0.282071,0.278996,0.90671,0.997509,0.175286,0.802264,0.804376,0.386052,0.605695,0.143822,0.550623,0.61921,0.933904,0.616373,0.878859,0.708476,0.946116,0.72721,0.732019,0.918062,0.534446,0.912455,0.726418,0.124857,0.224683,0.544555,0.78035,0.738406,0.306084,0.385481,0.365204,0.3551,0.0879136,0.786745,0.369648,0.32703,0.625148,0.605668,0.466548,0.10035,0.0918517,0.676574,0.0753117,0.277717,0.955126,0.685331,0.579234,0.0983276,0.2974,0.747555,0.826363,0.0406029,0.960975,0.0360852,0.0343037,0.74229,0.400763,0.679009,0.588724,0.521847,0.356382,0.701045,0.366423,0.195521,0.188839,0.922665,0.160359,0.276147,0.269283,0.621401,0.908464,0.527463,0.84088,0.959926,0.993621,0.671912,0.877047,0.122927,0.859682,0.741859,0.70759,0.17406,0.635592,0.854344,0.121025,0.527589,0.616928,0.149153,0.331375,0.565752,0.441659,0.37469,0.583607,0.847835,0.892934,0.647495,0.157759,0.897568,0.414126,0.128209,0.0231423,0.823157,0.340986,0.800263,0.418989,0.304264,0.300251,0.0659584,0.35841,0.929294,0.162852,0.631466,0.0213204,0.425424,0.730967,0.956127,0.581966,0.0601678,0.251029,0.942408,0.915069,0.848007,0.359413,0.0401866,0.923492,0.725932,0.644473,0.00750881,0.353669,0.902339,0.868055,0.12472,0.583682,0.688683,0.77173,0.171047,0.0194105,0.0968649,0.0971527,0.728286,0.00504589,0.750726,0.795829,0.50888,0.582617,0.110356,0.327565,0.235251,0.371428,0.934829,0.899737,0.661467,0.264965,0.428355,0.320552,0.336252,0.457515,0.162052,0.849154,0.559293,0.667833,0.222546,0.955041,0.417286,0.974921,0.509423,0.260842,0.818824,0.265508,0.398254,0.565887,0.865228,0.137743,0.251519,0.424377,0.226046,0.998013,0.511824,0.848546,0.399459,0.76812,0.964026,0.660284,0.614616,0.110003,0.00147402,0.448999,0.557347,0.0742918,0.059068,0.816867,0.510273,0.278779,0.184762,0.379472,0.44748,0.901981,0.601722,0.704118,0.935123,0.198975,0.392904,0.10439,0.79931,0.86847,0.229397,0.343992,0.0173995,0.417328,0.0707548,0.971251,0.536649,0.915396,0.258425,0.806303,0.322388,0.449995,0.361471,0.923879,0.743158,0.762844,0.0844358,0.737647,0.487756,0.896481,0.628961,0.0315655,0.201797,0.457388,0.259675,0.679311,0.702944,0.306351,0.179291,0.549904,0.262722,0.230868,0.676138,0.823877,0.349622,0.82318,0.700327,0.204891,0.526785,0.695365,0.990668,0.440779,0.662779,0.0319471,0.613633,0.183059,0.0944641,0.911356,0.758868,0.165533,0.476824,0.147383,0.721033,0.82461,0.192915,0.345987,0.388839,0.237667,0.659984,0.313087,0.244266,0.697982,0.795914,0.804947,0.545342,0.49673,0.362277,0.602478,0.20791,0.490629,0.695674,0.210577,0.0839071,0.999845,0.848698,0.107118,0.100362,0.642652,0.377013,0.171421,0.602474,0.789779,|0.573198,0.644009,0.50773,0.716884,0.139942,0.11882,0.0530015,0.0495265,0.0869279,0.894826,0.159051,0.274302,0.194969,0.832595,0.172788,0.538454,0.35486,0.586999,0.781963,0.847096,0.593488,0.415395,0.831627,0.556826,0.648504,0.537048,0.435098,0.274065,0.97747,0.711822,0.162226,0.860789,0.94089,0.476964,0.221146,0.0473757,0.0217371,0.899154,0.247165,0.119993,0.432192,0.70857,0.597479,0.281983,0.386303,0.417304,0.579103,0.751548,0.792977,0.885243,0.782533,0.217834,0.244528,0.27517,0.381873,0.987207,0.159869,0.622994,0.75953,0.449284,0.804034,0.653745,0.351337,0.908159,0.118657,0.63527,0.803787,0.765106,0.312782,0.79131,0.0436583,0.91293,0.377265,0.709725,0.952244,0.720704,0.519252,0.400447,0.990197,0.820139,0.167467,0.129419,0.695293,0.658166,0.319335,0.486512,0.156612,0.984861,0.835858,0.156466,0.64153,0.691958,0.160948,0.328562,0.367332,0.703207,0.377964,0.770365,0.497053,0.370015,0.648446,0.620573,0.00622886,0.428867,0.14768,0.0783135,0.521397,0.290448,0.0706073,0.860175,0.649853,0.369287,0.0523336,0.472917,0.620589,0.450997,0.0352009,0.104341,0.40735,0.101017,0.970857,0.350812,0.766378,0.109562,0.957994,0.0473904,0.0832161,0.317298,0.326742,0.774772,0.0449142,0.179979,0.0778578,0.917077,0.204647,0.162097,0.232842,0.655154,0.262967,0.529948,0.774952,0.938367,0.0961456,0.765353,0.727925,0.752149,0.88965,0.603053,0.400902,0.100655,0.730947,0.515302,0.121258,0.649934,0.783038,0.6048,0.727377,0.0797331,0.140962,0.0300659,0.664729,0.113492,0.389617,0.601497,0.917349,0.995535,0.0523066,0.866832,0.697826,0.0896702,0.94463,0.212787,0.279703,0.290151,0.614891,0.27019,0.496229,0.336353,0.465978,0.218702,0.503192,0.351048,0.537343,0.187245,0.160617,0.294291,0.56714,0.355324,0.920628,0.220098,0.374327,0.893509,0.233207,0.575775,0.315711,0.617743,0.368183,0.911529,0.56686,0.769859,0.735148,0.22217,0.745583,0.968308,0.573827,0.560638,0.581789,0.0166709,0.501717,0.972239,0.242832,0.344433,0.153432,0.169893,0.773348,0.94175,0.874548,0.628819,0.368095,0.866008,0.448132,0.0507955,0.807778,0.274155,0.322179,0.968964,0.72152,0.278866,0.161275,0.504911,0.745426,0.151568,0.319196,0.543826,0.0467418,0.885555,0.497456,0.291853,0.260485,0.602958,0.782195,0.42724,0.466011,0.732397,0.674833,0.9582,0.143584,0.240961,0.354502,0.869185,0.324963,0.742789,0.318252,0.164126,0.222105,0.599305,0.0634688,0.906526,0.249431,0.187173,0.104669,0.431754,0.969411,0.78615,0.964981,0.845815,0.77642,0.417338,0.824867,0.135726,0.173461,0.228216,0.766435,0.521448,0.124525,0.567417,0.159122,0.902138,0.372475,0.0334172,0.892175,0.855792,0.333413,0.723297,0.651025,0.00164038,0.0702159,0.261301,0.992172,0.802208,0.756961,0.160031,0.588839,0.488784,0.205371,0.276599,0.324969,0.545418,0.98703,0.934609,0.206537,0.371587,0.252094,0.482713,0.349537,0.43753,0.881488,0.506431,0.575903,0.206223,0.221769,0.470981,0.332177,0.643161,0.869054,0.328139,0.927392,0.663854,0.924747,0.642546,0.469874,0.506589,0.631828,0.702667,0.154685,0.36024,0.261258,0.141395,0.616496,0.107073,0.326126,0.886928,0.463887,0.320522,0.432401,0.453137,0.526404,0.630745,0.90701,0.362049,0.606007,0.754633,0.543897,0.745234,0.647664,0.944288,0.834239,0.902679,0.880027,0.842013,0.961706,0.0178109,0.370774,0.455229,0.227844,0.679689,0.784755,0.240174,0.794434,0.061794,0.81464,0.805068,0.394293,0.416658,0.814479,0.0426256,0.700231,0.835146,0.34018,0.0642478,0.0657762,0.340289,0.679466,0.283191,0.542617,0.38204,0.142404,0.793014,0.573792,0.74689,0.741153,0.231177,0.587231,0.538345,0.647651,0.542534,0.180407,0.304695,0.409442,0.0553182,0.291967,0.522592,0.512704,0.00609493,0.619885,0.842401,0.984523,0.0422543,0.719731,0.908711,0.260174,0.374155,0.314185,0.447155,0.54245,0.0797969,0.667735,0.22457,0.451541,0.550693,0.247104,0.767424,0.914494,0.36877,0.648295,0.951819,0.59572,0.873857,0.734327,0.985775,0.582051,0.48114,0.745522,0.395655,0.455608,0.759202,0.458306,0.905221,0.700402,0.66065,0.0237936,0.447607,0.0126718,0.00548124,0.0852804,0.231432,0.455969,0.514812,0.157,0.284011,0.674554,0.773678,0.442767,0.802553,0.343757,0.478453,0.787624,0.340007,0.101382,0.225438,0.486987,0.3961,0.417442,0.574276,0.668924,0.077046,0.279336,0.831191,0.832311,0.0572588,0.0682548,0.0712706,0.71966,0.298929,0.231644,0.241869,0.148758,0.354117,0.448607,0.815156,0.022194,0.60356,0.330732,0.223273,0.0168478,0.72675,0.151848,0.0199901,0.839302,0.345161,0.822782,0.412531,0.243881,0.381058,0.0472069,0.773493,0.731547,0.381842,0.508877,0.165787,0.620917,0.600302,0.308718,0.83337,0.784417,0.0669557,0.592817,0.0774147,0.180564,0.147689,0.942369,0.994883,0.835945,0.575364,0.923357,0.0590755,0.84737,0.667535,0.87722,0.997177,0.0946206,0.548157,0.88512,0.899521,0.496591,0.739266,0.973468,0.315509,0.173414,0.84785,0.249184,0.588899,0.201691,0.613479,0.337482,0.841302,0.603978,0.0797635,0.850919,0.79774,0.491914,0.627864,0.573409,0.29184,0.0188664,0.744059,0.524703,0.648039,0.777112,0.464531,0.832897,0.658679,0.865856,0.239693,0.269632,0.850137,0.319049,0.799304,0.770133,0.396271,0.871191,0.440619,0.509489,0.330983,0.723938,0.301989,0.844017,0.514283,0.677744,0.286884,0.854356,0.922813,0.559901,0.288192,0.554433,0.174381,0.70526,0.657906,0.685558,0.433962,0.829523,0.758197,0.0271505,0.101535,0.396449,0.490003,0.864044,0.114754,0.274215,0.407532,0.699639,0.262739,0.208335,0.0297109,0.819496,0.768036,0.727175,0.768465,0.958631,0.86025,0.891817,0.195915,0.712539,0.154695,0.945171,0.421427,0.101425,0.0222781,0.275672,0.117458,0.0452149,0.820901,0.671827,0.669154,0.430642,0.252725,0.646548,0.115148,0.281214,0.199398,0.670146,0.943639,0.765362,0.18891,0.163529,0.912093,0.797141,0.576399,0.453456,0.30173,0.932012,0.501321,0.0313623,0.69435,0.638438,0.844647,0.651259,0.405646,0.594386,0.0580005,0.330277,0.949882,0.23726,0.714678,0.873699,0.381226,0.528096,0.0663344,0.361564,0.809774,0.718723,0.638102,0.0774951,0.0586583,0.670692,0.293925,0.634082,0.479657,0.166091,0.526876,0.855122,0.719502,0.656946,0.511242,0.246536,0.0264515,0.276371,0.594282,0.688137,0.748323,0.836893,0.735121,0.336516,0.939486,0.926504,0.472268,0.997795,0.728839,0.0579035,0.296215,0.533284,0.791486,0.123329,0.516678,0.638197,0.728152,0.866719,0.91279,0.960599,0.863758,0.152141,0.720633,0.337891,0.0979941,0.506432,0.42286,0.154419,0.875578,0.693095,0.287726,0.92676,0.371698,0.616242,0.38295,0.824258,0.058369,0.619431,0.15671,0.478228,0.0112754,0.289429,0.986211,0.237627,0.62425,0.583362,0.100384,0.726885,0.49354,0.478355,0.156759,0.530992,0.132869,0.94124,0.961936,0.155116,0.944329,0.973631,0.187514,0.56074,0.801464,0.644704,0.259864,0.784651,0.372737,0.253902,0.95258,0.907009,0.546458,0.610995,0.391011,0.836418,0.981326,0.245893,0.28101,0.93215,0.342312,0.240648,0.926492,0.339613,0.967512,0.568394,0.696151,0.401133,0.524531,0.882007,0.365974,0.722638,0.735727,0.804499,0.478911,0.418189,0.166336,0.889257,0.156515,0.0105638,0.144463,0.937008,0.808643,0.153109,0.832716,0.33791,0.695372,0.365222,0.0975994,0.980183,0.906316,0.479552,0.44174,0.168191,0.138003,0.562851,0.943826,0.472408,0.662233,0.571438,0.456395,0.628961,0.76477,0.63148,0.478917,0.678982,0.956706,0.112515,0.41407,0.25831,0.595405,0.771768,0.961865,0.516315,0.946709,0.721277,0.956545,0.750862,0.144864,0.501223,0.503309,0.678797,0.689819,0.0543847,0.6272,0.883632,0.921051,0.328026,0.231469,0.0269295,0.255159,0.172877,0.613378,0.676195,0.505095,0.0474702,0.736942,0.909549,0.892975,0.194361,0.791607,0.36311,0.981139,0.32876,0.378545,0.472545,0.900925,0.833568,0.2253,0.598606,0.870155,0.377681,0.48112,0.76009,0.0857213,0.603728,0.722682,0.454828,0.0784203,0.224241,0.680519,0.15474,0.871663,0.441283,0.132047,0.0557602,0.101963,0.143814,0.928143,0.248211,0.685028,0.140194,0.675633,0.360218,0.668911,0.247957,0.605175,0.685402,0.657675,0.433576,0.237432,0.911955,0.565921,0.671252,0.671773,0.366672,0.973157,0.167431,0.753412,0.936781,0.550084,0.929228,0.749669,0.024766,0.136077,0.803796,0.584194,0.141976,0.9759,0.397089,0.953876,0.0693136,0.72618,0.314421,0.640807,0.75621,0.834953,0.637986,0.21002,0.995965,0.971085,0.109716,0.313624,0.380246,0.0917832,0.100569,0.279416,0.672274,0.357346,0.74297,0.672074,0.758494,0.310475,0.52344,0.406931,0.723245,0.520229,0.205226,0.54277,0.198014,0.0874031,0.607215,0.725633,0.920537,0.239631,0.938777,0.745605,0.813829,0.608966,0.452393,0.802856,0.739361,0.851936,0.170247,0.864643,0.942339,0.770661,0.0933122,0.464837,0.681877,0.41576,0.180548,0.103664,0.684746,0.18911,0.362092,0.817687,0.956094,0.771825,0.779935,0.256964,0.609161,0.268941,0.392595,0.139904,0.410384,0.753744,0.671246,0.297831,0.553413,0.739663,0.126905,0.780307,0.212031,0.777549,0.369608,0.832517,0.305725,0.692562,0.0792736,0.189151,0.889592,0.0235161,0.625277,0.345887,0.423573,0.550351,0.832628,0.20521,0.64674,0.494428,0.0840001,0.342438,0.410859,0.80728,0.669754,0.0545701,0.973722,0.260592,0.687568,0.911641,0.35069,0.205915,0.0227656,0.226893,0.998815,0.0824423,0.668982,0.232449,0.988626,0.684705,0.593804,0.357515,0.674136,0.692628,0.22427,0.742187,0.7311,0.102086,0.603963,0.0489953,0.694736,0.175012,0.925663,0.837413,|0.126708,0.369449,0.194185,0.644592,0.632837,0.555795,0.303347,0.666106,0.87932,0.86026,0.639419,0.0278985,0.654415,0.136976,0.600538,0.488915,0.74972,0.75781,0.164254,0.821974,0.0181127,0.518279,0.605751,0.596797,0.345866,0.897841,0.692396,0.935029,0.444457,0.658991,0.105299,0.201673,0.300135,0.109777,0.197174,0.424891,0.680163,0.315402,0.373845,0.888808,0.536765,0.936292,0.638865,0.696274,0.323428,0.936244,0.703754,0.574347,0.984694,0.78865,0.508096,0.828012,0.443343,0.562931,0.223443,0.436268,0.555519,0.935016,0.521364,0.507257,0.0308057,0.395533,0.965498,0.235932,0.73236,0.853291,0.662181,0.927922,0.214853,0.511517,0.311066,0.140903,0.263841,0.910185,0.316584,0.847829,0.521429,0.710678,0.889515,0.380888,0.758962,0.264151,0.314238,0.876134,0.58291,0.851741,0.280411,0.00471532,0.885025,0.102505,0.465631,0.808612,0.691197,0.970268,0.653697,0.636588,0.666984,0.193758,0.191459,0.616527,0.464705,0.646473,0.51798,0.379707,0.74082,0.316528,0.439798,0.20156,0.331698,0.491049,0.0611586,0.713132,0.767278,0.310016,0.457693,0.0850967,0.119392,0.741738,0.701956,0.28806,0.223094,0.516535,0.796649,0.943865,0.52762,0.924416,0.301197,0.915072,0.0833474,0.588731,0.380847,0.364457,0.697289,0.180961,0.624514,0.477926,0.32748,0.320207,0.498141,0.192462,0.701289,0.208332,0.985399,0.836568,0.169484,0.822146,0.308087,0.317648,0.0217726,0.448036,0.921349,0.495713,0.551981,0.607389,0.0824674,0.962916,0.844583,0.733257,0.200598,0.0589559,0.5866,0.356895,0.35476,0.143098,0.993945,0.694428,0.587818,0.585587,0.0988858,0.724413,0.0106829,0.361842,0.423288,0.883231,0.360804,0.131279,0.22885,0.793315,0.357455,0.0367842,0.310703,0.825668,0.239727,0.895572,0.671904,0.0936198,0.809492,0.00773114,0.96801,0.78539,0.187665,0.174799,0.88477,0.555664,0.200076,0.862663,0.0541803,0.767204,0.271238,0.96532,0.0611938,0.509848,0.095835,0.285455,0.335423,0.465825,0.617034,0.120515,0.22601,0.703356,0.469453,0.641832,0.894669,0.283838,0.925887,0.392284,0.575396,0.893378,0.0904247,0.535107,0.517468,0.475242,0.660782,0.072873,0.384353,0.0967739,0.840885,0.911359,0.882273,0.462873,0.788451,0.244608,0.847191,0.00117594,0.882533,0.773633,0.401307,0.518351,0.468461,0.7404,0.121717,0.454796,0.488518,0.666034,0.456163,0.411855,0.514258,0.634644,0.178367,0.0888853,0.885657,0.810707,0.390167,0.446055,0.305836,0.395534,0.195481,0.967842,0.127853,0.321345,0.659206,0.654163,0.49821,0.725595,0.705791,0.187609,0.945301,0.233307,0.243679,0.205487,0.390027,0.806395,0.616118,0.826856,0.94442,0.363149,0.708859,0.768933,0.657876,0.182415,0.631663,0.797768,0.368592,0.669054,0.0342689,0.201203,0.763279,0.49417,0.760632,0.217737,0.206104,0.943764,0.51602,0.0766945,0.551225,0.360946,0.418003,0.0601303,0.428676,0.546794,0.418297,0.258277,0.339934,0.806964,0.283567,0.376288,0.545661,0.892388,0.900097,0.284629,0.809499,0.947495,0.041668,0.39686,0.985994,0.774089,0.505369,0.962749,0.480113,0.596735,0.08745,0.746469,0.212612,0.562819,0.742614,0.194025,0.625844,0.650103,0.233793,0.715793,0.784918,0.57391,0.507831,0.171956,0.878689,0.717234,0.525514,0.73554,0.928171,0.139983,0.621377,0.383678,0.349298,0.409928,0.0442246,0.223452,0.0557072,0.888879,0.875562,0.752837,0.628764,0.588925,0.838541,0.545107,0.325986,0.265105,0.344071,0.0989492,0.274911,0.403413,0.514136,0.424357,0.675761,0.915506,0.716646,0.942642,0.129394,0.192865,0.364101,0.896959,0.395982,0.147957,0.129229,0.956271,0.854694,0.655943,0.427665,0.388908,0.37557,0.673099,0.842383,0.359958,0.201149,0.584527,0.981801,0.394542,0.0171711,0.662257,0.361015,0.503613,0.462672,0.17353,0.631039,0.646493,0.419793,0.0837562,0.343545,0.97598,0.172827,0.709445,0.797573,0.172203,0.201961,0.0682452,0.46619,0.890918,0.689087,0.1606,0.508133,0.10849,0.819301,0.369392,0.817978,0.889445,0.00427639,0.844748,0.518184,0.438873,0.311928,0.187619,0.517451,0.944401,0.348841,0.787076,0.630555,0.965332,0.625552,0.639323,0.356477,0.228992,0.197565,0.971292,0.742022,0.576474,0.829039,0.595766,0.190135,0.491781,0.778639,0.752292,0.361228,0.427253,0.247723,0.0838769,0.167651,0.954671,0.851603,0.782467,0.676745,0.947849,0.949693,0.190087,0.00962543,0.288953,0.887877,0.500937,0.0646235,0.897884,0.650191,0.277396,0.340696,0.957712,0.951386,0.980229,0.47803,0.314106,0.405227,0.569077,0.155881,0.687966,0.0805709,0.398198,0.651755,0.0694988,0.88588,0.497268,0.62202,0.769511,0.647109,0.581631,0.739712,0.693156,0.392197,0.110432,0.555223,0.347103,0.498546,0.0822296,0.0160661,0.926577,0.972888,0.79324,0.583714,0.612895,0.425918,0.847545,0.654455,0.481856,0.997857,0.832843,0.544143,0.244885,0.991508,0.865109,0.181417,0.407324,0.923674,0.553601,0.759664,0.748956,0.786901,0.992993,0.335029,0.418471,0.960485,0.970038,0.48857,0.0827548,0.658185,0.606368,0.943158,0.776305,0.0680313,0.399959,0.0819212,0.598039,0.13787,0.453763,0.399081,0.521453,0.238662,0.561512,0.784341,0.850554,0.137964,0.159591,0.0768416,0.236904,0.583808,0.94629,0.95129,0.645674,0.627237,0.211539,0.135927,0.885328,0.307984,0.209962,0.59397,0.315762,0.387083,0.792376,0.402336,0.347081,0.76331,0.449814,0.741398,0.320841,0.904112,0.988091,0.585729,0.13932,0.520188,0.498412,0.586232,0.765022,0.968858,0.314375,0.846011,0.438206,0.052909,0.921998,0.96788,0.166913,0.116792,0.858317,0.585147,0.33615,0.978273,0.489324,0.453621,0.774356,0.201444,0.155829,0.577015,0.870008,0.495886,0.622504,0.0455631,0.614094,0.686514,0.730906,0.946085,0.739794,0.764767,0.00957757,0.863728,0.60508,0.454682,0.806109,0.794793,0.695018,0.0144511,0.0118849,0.70931,0.800518,0.00213033,0.0145917,0.965697,0.499248,0.290034,0.648335,0.147635,0.0988858,0.356927,0.244356,0.422388,0.209234,0.876129,0.20519,0.223916,0.0961176,0.849052,0.998168,0.867404,0.968562,0.496865,0.114032,0.532273,0.221443,0.734917,0.522655,0.424621,0.959706,0.301461,0.212654,0.267058,0.958715,0.188848,0.728447,0.120853,0.448127,0.56429,0.270159,0.56326,0.0195321,0.0603669,0.741801,0.0407039,0.241738,0.373071,0.272225,0.563469,0.12065,0.606758,0.394593,0.450626,0.876131,0.112758,0.959717,0.465262,0.426654,0.116728,0.878506,0.536798,0.115778,0.466935,0.35912,0.628496,0.926124,0.56122,0.273336,0.208023,0.72612,0.574281,0.841518,0.0802063,0.51157,0.117296,0.709793,0.395789,0.797853,0.0666124,0.650359,0.495551,0.448109,0.00359821,0.0335664,0.595708,0.246129,0.410268,0.372442,0.861715,0.163024,0.853718,0.466109,0.945445,0.267762,0.415501,0.885547,0.556928,0.0698762,0.150814,0.92985,0.759419,0.271603,0.0181231,0.219734,0.347124,0.203223,0.0593586,0.34167,0.739694,0.72233,0.137297,0.0766392,0.492272,0.836435,0.236753,0.159502,0.212846,0.238967,0.284096,0.575425,0.11983,0.423868,0.143666,0.735261,0.282586,0.155317,0.482027,0.77393,0.0152726,0.641857,0.872305,0.263909,0.0229668,0.424968,0.947248,0.846133,0.0266725,0.861168,0.774967,0.0249132,0.350005,0.0124249,0.682236,0.159686,0.88651,0.363019,0.786706,0.47064,0.651942,0.658292,0.0957881,0.409598,0.442775,0.436543,0.589166,0.702318,0.435657,0.481593,0.206701,0.037522,0.922831,0.232446,0.708108,0.8285,0.359533,0.848142,0.463232,0.872172,0.824738,0.267529,0.916321,0.410598,0.0797862,0.271789,0.992352,0.628974,0.164107,0.107005,0.604212,0.179745,0.0117778,0.690849,0.358919,0.449012,0.276297,0.114301,0.397464,0.30542,0.410474,0.195656,0.0188167,0.477111,0.746978,0.0528827,0.785315,0.157543,0.390255,0.0701582,0.73077,0.0219687,0.389437,0.274357,0.131581,0.609556,0.0623376,0.517617,0.317761,0.311283,0.420377,0.69607,0.275835,0.991758,0.050888,0.249299,0.55448,0.075542,0.345766,0.391392,0.0712214,0.958949,0.684069,0.149918,0.667642,0.00743556,0.265689,0.854179,0.228336,0.846714,0.52077,0.43508,0.838985,0.582497,0.099161,0.67405,0.858456,0.852987,0.641483,0.273968,0.374656,0.698807,0.982515,0.44023,0.00699192,0.465607,0.49851,0.556307,0.71258,0.15714,0.60796,0.90361,0.926188,0.30193,0.827065,0.588736,0.482994,0.264082,0.639017,0.0264488,0.0474948,0.769936,0.997297,0.912516,0.568214,0.861507,0.348705,0.758237,0.46967,0.401847,0.942017,0.306479,0.300367,0.88462,0.553414,0.148919,0.516733,0.831611,0.875724,0.187725,0.219885,0.139325,0.021828,0.0158645,0.371766,0.538875,0.543016,0.779381,0.825754,0.888063,0.484558,0.54104,0.421462,0.611109,0.330105,0.512189,0.188125,0.277552,0.231962,0.906412,0.361776,0.168619,0.753057,0.107145,0.754186,0.0598025,0.692033,0.872948,0.508936,0.8151,0.733844,0.691897,0.661493,0.328971,0.999304,0.613119,0.070425,0.0486639,0.34462,0.749748,0.479534,0.0951661,0.818226,0.421255,0.694649,0.693536,0.808056,0.656487,0.609165,0.322612,0.500692,0.500449,0.378356,0.369374,0.454694,0.995937,0.526942,0.131695,0.801739,0.784358,0.369149,0.202538,0.266745,0.416217,0.630335,0.1394,0.375552,0.956486,0.00969487,0.556525,0.961647,0.989886,0.789974,0.446958,0.0980476,0.652228,0.635469,0.182729,0.822541,0.306383,0.421626,0.133141,0.736672,0.480829,0.363321,0.325172,0.00862449,0.918484,0.788339,0.614421,0.807864,0.890623,0.538874,0.0817403,0.371309,0.768968,0.457144,0.471038,0.487005,0.231214,0.230608,0.651849,0.936936,0.255533,0.58829,0.0521571,0.304171,0.130968,0.0615163,0.0260646,0.428691,0.946231,0.98341,0.48043,0.275975,0.835696,0.099876,0.0912682,|0.977387,0.789547,0.596094,0.162703,0.369107,0.597831,0.338463,0.802071,0.827734,0.163007,0.893673,0.393488,0.846417,0.575568,0.698321,0.811841,0.212668,0.327243,0.480908,0.136598,0.490479,0.337779,0.545084,0.942938,0.745498,0.0283093,0.674489,0.609608,0.144899,0.494165,0.348897,0.388624,0.360628,0.0319818,0.953146,0.804834,0.860058,0.141295,0.162185,0.0802591,0.671287,0.315246,0.0841878,0.617438,0.726481,0.55692,0.540545,0.111715,0.396788,0.325349,0.0278854,0.208735,0.0461838,0.276807,0.71191,0.99224,0.947194,0.467376,0.113069,0.750153,0.662208,0.934665,0.21288,0.508932,0.827497,0.429302,0.404037,0.225083,0.733609,0.750936,0.0970825,0.537916,0.0126458,0.367852,0.871361,0.74997,0.95583,0.512491,0.155693,0.539403,0.847278,0.207509,0.645648,0.765809,0.267015,0.236282,0.246528,0.125559,0.716973,0.996608,0.830924,0.27032,0.610663,0.266459,0.394941,0.991123,0.984613,0.739136,0.160734,0.374139,0.39586,0.939673,0.878548,0.310854,0.0248401,0.680913,0.491605,0.120464,0.167975,0.415714,0.363923,0.637701,0.464081,0.496357,0.762679,0.401411,0.501566,0.849531,0.726789,0.0255991,0.874427,0.418673,0.455331,0.656771,0.412241,0.77917,0.188037,0.803029,0.0456535,0.13047,0.975037,0.350165,0.818895,0.325202,0.0474322,0.803041,0.439724,0.906235,0.40786,0.130008,0.115576,0.277225,0.920664,0.366048,0.272519,0.566113,0.907784,0.3183,0.876186,0.256125,0.715331,0.984377,0.28502,0.573229,0.93672,0.106969,0.03794,0.422109,0.869439,0.608809,0.0121001,0.358764,0.835224,0.510077,0.192711,0.156119,0.515244,0.969474,0.928343,0.63874,0.775405,0.809073,0.55924,0.63802,0.447011,0.638573,0.496936,0.199323,0.595261,0.45383,0.237839,0.8468,0.222916,0.703756,0.56779,0.387294,0.107654,0.376726,0.720409,0.382856,0.511425,0.894773,0.00558794,0.611993,0.152585,0.913468,0.859924,0.122496,0.249438,0.910157,0.364851,0.494986,0.179009,0.994817,0.772867,0.181593,0.197897,0.528117,0.775122,0.588805,0.665461,0.656986,0.788876,0.924497,0.222093,0.658232,0.955777,0.478385,0.568154,0.105462,0.714776,0.0485121,0.323064,0.211385,0.174213,0.234576,0.0727239,0.859427,0.78603,0.606609,0.615863,0.00869387,0.440627,0.964509,0.475476,0.133379,0.667537,0.734696,0.552367,0.775171,0.745706,0.486111,0.364622,0.624493,0.207057,0.0694566,0.613762,0.0884776,0.46571,0.0675768,0.696703,0.367516,0.818869,0.797709,0.199319,0.796321,0.173628,0.199998,0.611353,0.706784,0.682852,0.0838689,0.355931,0.712262,0.9494,0.0204861,0.264702,0.696584,0.600791,0.0100441,0.33176,0.832466,0.863438,0.837545,0.168026,0.084898,0.844965,0.666005,0.619568,0.454853,0.171356,0.516617,0.566595,0.505998,0.427845,0.661187,0.595473,0.359653,0.235699,0.240136,0.314831,0.630001,0.245684,0.682756,0.443462,0.982277,0.961214,0.0769873,0.294349,0.597654,0.940568,0.61971,0.714529,0.616209,0.358256,0.919999,0.798253,0.118963,0.744386,0.447698,0.643364,0.357287,0.991088,0.835413,0.987305,0.447781,0.771654,0.390589,0.562158,0.311839,0.000641644,0.93096,0.13444,0.778296,0.394285,0.685619,0.776383,0.389107,0.575499,0.979756,0.973049,0.511384,0.565836,0.999146,0.456743,0.305862,0.749907,0.596802,0.68862,0.876989,0.337787,0.875169,0.461818,0.158338,0.734351,0.527367,0.634058,0.249664,0.895372,0.285323,0.901605,0.839589,0.121184,0.380716,0.270022,0.915695,0.808294,0.611545,0.168771,0.402888,0.81072,0.702504,0.547482,0.969946,0.450295,0.282814,0.0023219,0.299401,0.107118,0.834574,0.496449,0.0838869,0.543227,0.56778,0.511063,0.149287,0.85218,0.87958,0.75906,0.780571,0.518747,0.646137,0.0776062,0.0775738,0.364869,0.502377,0.908629,0.832364,0.197315,0.82013,0.413795,0.573784,0.983038,0.428487,0.383339,0.420151,0.864847,0.517893,0.20533,0.92622,0.581064,0.560004,0.167145,0.990344,0.628352,0.0485617,0.24472,0.282042,0.744567,0.552016,0.493977,0.108659,0.770999,0.49284,0.0998941,0.708625,0.646961,0.397377,0.910011,0.392242,0.156628,0.846731,0.684377,0.218183,0.383,0.224341,0.200755,0.571065,0.190024,0.942025,0.535646,0.352573,0.321409,0.142951,0.32478,0.88642,0.0849756,0.716261,0.11763,0.879514,0.169351,0.161538,0.00155389,0.537142,0.178346,0.947224,0.303469,0.0773904,0.408383,0.358359,0.408797,0.758875,0.226865,0.0551994,0.521897,0.943281,0.103454,0.642944,0.00125355,0.296152,0.286298,0.281335,8.63671e-05,0.863811,0.409527,0.263809,0.390922,0.335047,0.603997,0.377179,0.948449,0.81878,0.19437,0.365748,0.940565,0.945764,0.817277,0.419477,0.350571,0.953393,0.249354,0.332174,0.627229,0.563894,0.195592,0.518944,0.976726,0.891695,0.520044,0.718232,0.880018,0.78738,0.857965,0.53404,0.558297,0.898156,0.630254,0.561402,0.919877,0.131813,0.233193,0.132421,0.950329,0.392011,0.376198,0.0520008,0.54915,0.970798,0.231931,0.429198,0.804787,0.377312,0.48053,0.272293,0.890711,0.629722,0.240516,0.179947,0.466046,0.385405,0.119713,0.919835,0.0605631,0.0267678,0.980313,0.0878612,0.0554594,0.481251,0.0551077,0.528595,0.0201495,0.6401,0.669819,0.773156,0.239707,0.925595,0.240425,0.582752,0.399626,0.962575,0.823162,0.979802,0.14072,0.170916,0.247242,0.399632,0.406658,0.376706,0.951265,0.506066,0.504336,0.18751,0.7122,0.171483,0.875496,0.184483,0.647439,0.528677,0.164478,0.704423,0.478159,0.0144526,0.577236,0.698329,0.0763329,0.218016,0.473634,0.287703,0.71799,0.31684,0.0465553,0.510171,0.784381,0.884051,0.423903,0.0472347,0.448853,0.806807,0.229708,0.420523,0.421536,0.266784,0.81122,0.585132,0.134661,0.546479,0.446237,0.433822,0.628405,0.877433,0.656804,0.796744,0.145757,0.302795,0.116312,0.923266,0.67793,0.278376,0.14997,0.910664,0.365171,0.446198,0.836489,0.659108,0.0668763,0.512627,0.200118,0.397882,0.0382531,0.708209,0.41986,0.485707,0.162025,0.134524,0.673532,0.360052,0.80805,0.664092,0.899426,0.382197,0.465435,0.765268,0.623811,0.636115,0.37347,0.506974,0.296303,0.359554,0.274749,0.850334,0.194997,0.655438,0.613392,0.992986,0.289097,0.718568,0.835838,0.406618,0.274027,0.356294,0.579028,0.181092,0.316805,0.311038,0.443219,0.851391,0.506466,0.41447,0.550714,0.970346,0.312384,0.749911,0.128946,0.684115,0.257295,0.9784,0.0271174,0.624664,0.799659,0.986181,0.780497,0.0231236,0.499572,0.313939,0.784926,0.722024,0.622611,0.553386,0.389138,0.656918,0.235283,0.855999,0.0791718,0.531976,0.473149,0.267617,0.73987,0.588155,0.296404,0.553687,0.725003,0.983703,0.776463,0.640354,0.0151239,0.901933,0.602331,0.850361,0.955558,0.287645,0.0673906,0.597246,0.812956,0.322601,0.779426,0.335799,0.718168,0.918001,0.489329,0.785754,0.532795,0.557151,0.484178,0.72121,0.774891,0.476633,0.47786,0.784507,0.759899,0.932758,0.0999483,0.489643,0.904358,0.0340438,0.322462,0.331303,0.425706,0.997839,0.191009,0.799794,0.0626926,0.777164,0.662734,0.0435053,0.0574645,0.517766,0.334831,0.0927566,0.971485,0.365006,0.582627,0.526122,0.131094,0.104442,0.950884,0.530357,0.519543,0.279654,0.0484959,0.488347,0.382717,0.266717,0.762929,0.592792,0.903463,0.41933,0.611614,0.781017,0.831439,0.168017,0.465752,0.275743,0.668679,0.774509,0.823692,0.104598,0.156137,0.800996,0.207923,0.278922,0.445936,0.196328,0.454897,0.493175,0.407732,0.718041,0.123739,0.994185,0.969981,0.794241,0.737009,0.0436926,0.984034,0.0256499,0.644048,0.291869,0.922342,0.300346,0.777597,0.066901,0.749166,0.955481,0.934175,0.790028,0.320002,0.21695,0.961275,0.29129,0.441435,0.845903,0.0482225,0.909787,0.538142,0.0161437,0.833599,0.928023,0.32779,0.743487,0.840722,0.497449,0.674197,0.0139815,0.579838,0.632763,0.292731,0.54044,0.982792,0.351246,0.305204,0.722983,0.788923,0.851984,0.105087,0.219528,0.713911,0.691957,0.697434,0.115879,0.405749,0.397918,0.146925,0.126682,0.989119,0.120784,0.752607,0.300699,0.696938,0.416664,0.422657,0.438153,0.595673,0.345317,0.823753,0.0148777,0.541201,0.771602,0.386259,0.20625,0.871911,0.180647,0.0586193,0.756766,0.670468,0.161468,0.531706,0.718046,0.433558,0.431963,0.27772,0.175544,0.984438,0.358526,0.937922,0.405814,0.379407,0.682596,0.977099,0.0762504,0.564961,0.896474,0.109253,0.980012,0.588533,0.591771,0.719843,0.362512,0.632657,0.855793,0.615944,0.923771,0.913684,0.798803,0.712893,0.116541,0.507743,0.852359,0.188481,0.911461,0.208249,0.264012,0.566438,0.386621,0.360276,0.125932,0.73021,0.126995,0.906805,0.959438,0.621339,0.46405,0.802334,0.19353,0.922891,0.68101,0.197555,0.1865,0.427338,0.198872,0.581381,0.820623,0.837152,0.874421,0.257846,0.322841,0.740117,0.0200703,0.0348502,0.534409,0.790574,0.377679,0.943895,0.412019,0.0361561,0.625325,0.577791,0.408209,0.0661324,0.347015,0.14848,0.592379,0.372581,0.0876035,0.386817,0.222822,0.763506,0.408077,0.312368,0.698246,0.301888,0.473213,0.930613,0.671054,0.107265,0.149126,0.187482,0.24144,0.662872,0.629121,0.702183,0.189369,0.847559,0.261324,0.570285,0.788913,0.416858,0.373023,0.686287,0.642011,0.612003,0.445478,0.74972,0.154096,0.147177,0.0613613,0.663363,0.390629,0.844551,0.376671,0.73994,0.0803384,0.472385,0.773036,0.405928,0.272073,0.620823,0.174421,0.374803,0.460851,0.231546,0.427409,0.72468,0.628102,0.492259,0.953898,0.393174,0.843491,0.632225,0.851575,0.729665,0.010933,0.720052,0.619796,0.301738,0.495351,0.803859,0.524679,0.324013,0.532254,0.861364,0.432755,0.0989067,0.583441,0.809987,0.411183,0.962665,0.21267,0.109234,0.0482004,0.072795,0.434298,|0.0534875,0.532779,0.337383,0.977724,0.53263,0.332952,0.0638474,0.620672,0.674509,0.149807,0.687985,0.792132,0.3054,0.17656,0.284023,0.484318,0.438458,0.02911,0.785927,0.188639,0.722796,0.367805,0.120644,0.786617,0.0970498,0.173667,0.0564625,0.237708,0.69246,0.447665,0.929748,0.125674,0.455341,0.989765,0.952647,0.384495,0.505103,0.609146,0.211776,0.704672,0.979992,0.94003,0.0586014,0.79416,0.801401,0.0690416,0.146137,0.72413,0.284052,0.423964,0.454949,0.782036,0.716894,0.53309,0.052583,0.599165,0.0519035,0.61509,0.199312,0.893075,0.342407,0.537007,0.72499,0.237401,0.613203,0.336402,0.445086,0.160948,0.448631,0.699298,0.0789284,0.80778,0.0716983,0.940099,0.16452,0.579958,0.867942,0.425368,0.142671,0.822056,0.623648,0.77564,0.48965,0.490572,0.368762,0.272093,0.331701,0.190197,0.533823,0.641887,0.468044,0.698236,0.634876,0.0113899,0.446169,0.971013,0.0209461,0.592665,0.865402,0.0766158,0.0335965,0.342626,0.876738,0.649472,0.961724,0.475432,0.28539,0.557876,0.69743,0.373351,0.654792,0.612227,0.727772,0.389582,0.615084,0.580574,0.689585,0.114535,0.824483,0.673168,0.958021,0.481935,0.00137055,0.181821,0.129724,0.498045,0.261734,0.197492,0.860417,0.923824,0.0998437,0.392759,0.52176,0.365705,0.219138,0.266804,0.907218,0.812074,0.918688,0.875753,0.281528,0.0772983,0.0782025,0.117105,0.124672,0.942953,0.279411,0.690356,0.228898,0.643182,0.215304,0.26982,0.854514,0.755112,0.0735893,0.159906,0.132649,0.745294,0.273457,0.986399,0.109144,0.948395,0.961138,0.899019,0.774877,0.220583,0.231307,0.238024,0.405733,0.195128,0.967008,0.525301,0.364966,0.945451,0.811117,0.279068,0.138455,0.356906,0.824154,0.94699,0.272836,0.356698,0.859375,0.262507,0.180078,0.114409,0.60019,0.410045,0.105443,0.383264,0.201857,0.579041,0.102482,0.521702,0.742641,0.252056,0.940151,0.160248,0.107507,0.495141,0.916047,0.0820509,0.0161765,0.0998345,0.368239,0.779072,0.123448,0.682986,0.00369406,0.0916034,0.149819,0.487954,0.671178,0.0199222,0.000166535,0.785323,0.486733,0.221023,0.156204,0.0841497,0.240563,0.932931,0.440665,0.739491,0.569366,0.430806,0.0283499,0.180871,0.089738,0.0293676,0.877739,0.446007,0.749482,0.304932,0.252522,0.497836,0.844679,0.932875,0.0932418,0.987022,0.233657,0.806115,0.959488,0.0484131,0.374142,0.18247,0.627733,0.383563,0.0318298,0.580229,0.670112,0.797672,0.364076,0.762564,0.360023,0.0297992,0.616033,0.132709,0.73857,0.0057416,0.147259,0.232717,0.15937,0.113848,0.217578,0.577371,0.769409,0.682066,0.314971,0.7189,0.76224,0.310821,0.282136,0.826041,0.0441114,0.638764,0.595893,0.108503,0.600726,0.131772,0.871495,0.202011,0.144127,0.519489,0.0686265,0.329353,0.514565,0.253606,0.734651,0.0961068,0.196044,0.743963,0.182718,0.165235,0.154066,0.0532798,0.399502,0.204244,0.166198,0.699188,0.180464,0.556607,0.0173289,0.325324,0.24844,0.643971,0.0562754,0.110758,0.611927,0.401155,0.949279,0.0809983,0.707573,0.675398,0.559125,0.896853,0.617665,0.599754,0.972996,0.605158,0.871568,0.343758,0.687109,0.0546046,0.356419,0.527553,0.00788653,0.29937,0.0652036,0.0186779,0.290645,0.0501752,0.00947195,0.261651,0.61324,0.164289,0.991356,0.80118,0.671067,0.327215,0.423403,0.951473,0.250796,0.710578,0.174623,0.346219,0.60958,0.496816,0.361123,0.500421,0.111247,0.856685,0.50873,0.827111,0.160645,0.132298,0.0995941,0.445549,0.246922,0.499799,0.0690767,0.643097,0.862491,0.260114,0.264482,0.739828,0.618119,0.279818,0.11069,0.357896,0.859375,0.341551,0.509612,0.15551,0.889427,0.95546,0.358401,0.800433,0.197371,0.262532,0.269884,0.289617,0.666126,0.255996,0.166928,0.974691,0.0205032,0.102459,0.985812,0.993961,0.229363,0.920146,0.26089,0.342174,0.351,0.597247,0.0443004,0.833194,0.268005,0.663359,0.710407,0.506716,0.560789,0.666668,0.302787,0.941823,0.632175,0.624007,0.293019,0.8271,0.731544,0.925899,0.40042,0.544087,0.657739,0.414458,0.013789,0.207331,0.618394,0.949676,0.996593,0.847814,0.868744,0.983316,0.903742,0.417021,0.679766,0.541212,0.314779,0.821586,0.589189,0.767358,0.911148,0.755042,0.961034,0.807916,0.560348,0.830806,0.18254,0.913477,0.400565,0.356912,0.549433,0.145412,0.094828,0.57741,0.770318,0.903164,0.245933,0.585744,0.421994,0.222024,0.185845,0.0925011,0.55287,0.164267,0.338639,0.128514,0.127632,0.28297,0.967079,0.342625,0.0131195,0.794422,0.915402,0.588406,0.952157,0.981565,0.49358,0.434207,0.412161,0.923252,0.389304,0.674239,0.0492538,0.0841749,0.404529,0.520916,0.0298871,0.113578,0.397757,0.809353,0.288459,0.357805,0.929265,0.678508,0.69649,0.977322,0.201359,0.25279,0.876728,0.594763,0.0296898,0.956142,0.391216,0.100865,0.931242,0.754479,0.516704,0.0653165,0.212525,0.0905874,0.419661,0.855142,0.546115,0.396039,0.0185745,0.850761,0.586291,0.572661,0.602495,0.604225,0.782181,0.406502,0.058248,0.430387,0.475779,0.602387,0.693535,0.289048,0.999475,0.525863,0.100488,0.166891,0.277802,0.804007,0.88845,0.180594,0.897908,0.842303,0.58016,0.564221,0.529176,0.71297,0.372572,0.355345,0.0695121,0.0842701,0.155752,0.402379,0.345433,0.386664,0.417147,0.972265,0.33066,0.674367,0.417439,0.148977,0.829105,0.909814,0.0599021,0.45106,0.44251,0.444413,0.620305,0.896366,0.376662,0.198151,0.512656,0.984268,0.862962,0.706533,0.118756,0.0786031,0.802075,0.799284,0.484806,0.314933,0.465377,0.746177,0.274418,0.38103,0.30213,0.494548,0.652481,0.72016,0.639708,0.202018,0.914066,0.762851,0.279575,0.444505,0.489637,0.120938,0.412657,0.668193,0.642347,0.249319,0.938411,0.361306,0.751408,0.89755,0.364147,0.130012,0.0442185,0.70941,0.366342,0.807559,0.471623,0.396617,0.219897,0.701016,0.426415,0.722887,0.524146,0.420105,0.762904,0.126879,0.977461,0.988598,0.436918,0.665456,0.324932,0.255578,0.198807,0.423904,0.984292,0.475268,0.267557,0.202078,0.868157,0.461648,0.075475,0.829191,0.778968,0.433408,0.421424,0.0588028,0.878652,0.964365,0.512034,0.650036,0.734537,0.746585,0.718776,0.277454,0.0870226,0.998792,0.817717,0.740787,0.18239,0.264511,0.3612,0.824602,0.60063,0.728414,0.343519,0.243735,0.155369,0.984896,0.00333297,0.665968,0.277917,0.902666,0.131866,0.325451,0.470797,0.430287,0.0993268,0.603131,0.194379,0.943768,0.112381,0.731987,0.348442,0.171423,0.52952,0.760775,0.446584,0.723877,0.935683,0.181083,0.618599,0.848456,0.440604,0.540455,0.413548,0.784963,0.694921,0.78663,0.24112,0.583849,0.807649,0.207658,0.469286,0.783882,0.482223,0.675327,0.671246,0.512051,0.523436,0.0342312,0.604339,0.91523,0.990554,0.572215,0.113513,0.835958,0.0453674,0.0569977,0.0498192,0.659307,0.616085,0.586226,0.603912,0.306676,0.436147,0.0675478,0.270805,0.371753,0.233161,0.304515,0.680561,0.530325,0.0942459,0.0200768,0.610684,0.971329,0.774455,0.41539,0.8756,0.124622,0.531316,0.977562,0.981717,0.569148,0.418642,0.177971,0.142679,0.726709,0.531429,0.649016,0.66138,0.61287,0.688266,0.59241,0.143809,0.580643,0.885703,0.249914,0.94765,0.7574,0.694417,0.579545,0.176533,0.382137,0.861613,0.249123,0.0437458,0.286361,0.96486,0.538321,0.219747,0.381614,0.822356,0.541103,0.464743,0.836334,0.55448,0.53572,0.160915,0.989119,0.768966,0.0222488,0.206351,0.00900036,0.820848,0.0535908,0.0087024,0.655056,0.090839,0.590923,0.923124,0.172457,0.47711,0.354409,0.216778,0.981705,0.628117,0.986902,0.484514,0.215879,0.166541,0.808828,0.381901,0.735101,0.354753,0.709966,0.894632,0.623668,0.909013,0.731097,0.362203,0.0772811,0.736098,0.472886,0.185651,0.741056,0.485653,0.226676,0.572279,0.580307,0.123245,0.770748,0.686201,0.803068,0.293748,0.602051,0.165573,0.966855,0.852581,0.592157,0.0770454,0.950865,0.122343,0.31101,0.0774018,0.821929,0.580983,0.964922,0.203097,0.595919,0.0377875,0.492762,0.657644,0.555578,0.444143,0.544664,0.875418,0.528273,0.835289,0.711622,0.331355,0.647021,0.738342,0.988306,0.299323,0.438149,0.540551,0.618408,0.819113,0.21128,0.430452,0.687762,0.437333,0.203078,0.341168,0.290452,0.599256,0.416269,0.732808,0.943682,0.468793,0.875611,0.801657,0.840636,0.931253,0.263959,0.519478,0.251269,0.573552,0.454598,0.597441,0.124706,0.643447,0.334264,0.192125,0.527888,0.845179,0.347517,0.820089,0.88356,0.277614,0.810328,0.108606,0.683899,0.974823,0.681954,0.028503,0.909624,0.654035,0.878499,0.746975,0.626452,0.497982,0.149702,0.938348,0.45513,0.377929,0.696126,0.668363,0.943694,0.982346,0.209997,0.109912,0.751612,0.287722,0.156959,0.228498,0.00466341,0.0779814,0.559499,0.068646,0.329502,0.953081,0.682689,0.833451,0.40105,0.143174,0.821258,0.307192,0.193138,0.425461,0.312339,0.669302,0.00759161,0.558108,0.765743,0.959063,0.794506,0.127834,0.150309,0.177307,0.474309,0.813477,0.568679,0.201122,0.95979,0.907523,0.877667,0.0326911,0.762256,0.419086,0.806216,0.423483,0.293355,0.115309,0.240145,0.0846351,0.645927,0.846427,0.0783019,0.521605,0.323155,0.148004,0.186308,0.380903,0.018472,0.13486,0.353672,0.796928,0.651857,0.563944,0.697223,0.474704,0.371956,0.465222,0.848033,0.308554,0.724348,0.0685445,0.166101,0.778086,0.789122,0.534051,0.0771793,0.101906,0.0319867,0.101825,0.855853,0.675844,0.567642,0.13387,0.091108,0.0205455,0.271205,0.586036,0.577306,0.22286,0.971985,0.942378,0.31164,0.0834683,0.000419199,0.974987,0.0334558,0.0134977,0.385275,0.613721,0.0948134,0.727537,0.127113,0.325208,0.452536,0.850879,0.0177179,0.350152,0.650369,0.381992,0.280076,|0.117485,0.615899,0.925149,0.888243,0.159191,0.560637,0.658101,0.518966,0.173829,0.816519,0.138755,0.674075,0.548448,0.661073,0.498517,0.53806,0.899926,0.852246,0.896372,0.79159,0.587053,0.237418,0.611574,0.151625,0.888903,0.999703,0.308553,0.246976,0.395826,0.676645,0.683176,0.381706,0.538184,0.579972,0.92558,0.162215,0.644535,0.904269,0.0680329,0.0148326,0.405897,0.522903,0.204889,0.486126,0.776562,0.628641,0.695279,0.796705,0.183477,0.00900334,0.629474,0.0189865,0.375172,0.196113,0.675518,0.710081,0.219751,0.179887,0.939613,0.574571,0.459008,0.239188,0.0342754,0.400725,0.387819,0.221734,0.889085,0.246538,0.128863,0.159493,0.165078,0.310015,0.791618,0.713392,0.705176,0.515867,0.730871,0.895691,0.815474,0.339404,0.592893,0.0570922,0.491098,0.989219,0.103309,0.721342,0.223364,0.000895917,0.275659,0.270498,0.865834,0.00867879,0.145807,0.560881,0.88596,0.234897,0.838175,0.752409,0.116233,0.00645703,0.0745989,0.412771,0.523161,0.652449,0.0958481,0.388697,0.870987,0.44575,0.264115,0.609364,0.11493,0.371334,0.676915,0.063196,0.713217,0.96308,0.14793,0.0942744,0.359124,0.685237,0.429497,0.301912,0.883226,0.948295,0.284946,0.786454,0.558905,0.654047,0.611882,0.163011,0.264015,0.140017,0.65994,0.320804,0.243324,0.253739,0.225239,0.0854908,0.892581,0.585724,0.490703,0.62752,0.93079,0.108627,0.516104,0.705674,0.772318,0.00898457,0.849075,0.112554,0.585903,0.304477,0.387327,0.122041,0.0921878,0.384095,0.641639,0.284209,0.701133,0.526783,0.632814,0.731817,0.49338,0.0348231,0.948682,0.909099,0.754277,0.890596,0.995732,0.347973,0.785631,0.00931334,0.140481,0.680244,0.20146,0.808505,0.540159,0.0933921,0.810015,0.00793207,0.96784,0.715286,0.690867,0.740889,0.614139,0.819412,0.0786178,0.472956,0.351172,0.0899505,0.703735,0.462113,0.911261,0.984526,0.802533,0.264567,0.417948,0.199785,0.741532,0.0682865,0.309134,0.923309,0.56403,0.262424,0.165873,0.461532,0.580179,0.692832,0.678071,0.570526,0.703196,0.0194528,0.776729,0.722275,0.0939102,0.134866,0.850229,0.61106,0.643842,0.667453,0.5488,0.937294,0.411279,0.952518,0.857847,0.91717,0.525919,0.61015,0.349252,0.0619662,0.174358,0.686897,0.732432,0.760175,0.620646,0.865993,0.714562,0.604386,0.874798,0.898365,0.978111,0.356084,0.193697,0.150663,0.387388,0.739981,0.162722,0.986291,0.398129,0.816702,0.616671,0.724575,0.765894,0.625915,0.92584,0.399697,0.181541,0.330105,0.774939,0.952709,0.858457,0.409915,0.333282,0.871424,0.738528,0.301967,0.732442,0.999969,0.378088,0.13864,0.780794,0.738591,0.0355546,0.94232,0.482082,0.194812,0.959902,0.14289,0.515086,0.323215,0.240327,0.853763,0.317231,0.134189,0.216042,0.490084,0.11893,0.200203,0.761698,0.00283784,0.763197,0.583155,0.0389004,0.793393,0.26113,0.222485,0.671976,0.169265,0.931389,0.845321,0.293863,0.973136,0.339173,0.907041,0.341009,0.418685,0.419952,0.629167,0.80483,0.00878602,0.0394422,0.306525,0.0528611,0.944704,0.790778,0.734427,0.731939,0.517021,0.0155899,0.603072,0.279665,0.845391,0.258628,0.835967,0.638928,0.507275,0.460712,0.958475,0.527516,0.318953,0.960207,0.3189,0.109859,0.563299,0.830152,0.866489,0.232291,0.794721,0.0547648,0.108862,0.34426,0.0846236,0.0993605,0.30227,0.466496,0.225746,0.704746,0.0287652,0.068655,0.357938,0.401327,0.781961,0.134483,0.00738525,0.00794762,0.306754,0.452925,0.389132,0.437996,0.595812,0.765294,0.44558,0.323218,0.94103,0.850605,0.919535,0.320128,0.824398,0.240808,0.208911,0.891949,0.887895,0.962173,0.641671,0.897481,0.197862,0.550568,0.381305,0.753027,0.326359,0.154566,0.658163,0.258207,0.177737,0.123935,0.630161,0.0775081,0.15693,0.722856,0.852944,0.179095,0.352928,0.255863,0.653072,0.741969,0.252517,0.00215197,0.541355,0.904883,0.494982,0.511019,0.837419,0.235747,0.439824,0.99313,0.220718,0.0163048,0.201493,0.0124301,0.777941,0.1616,0.476918,0.439553,0.398843,0.121834,0.65906,0.729784,0.25862,0.636077,0.75931,0.678412,0.519789,0.813762,0.71082,0.673283,0.659945,0.0672682,0.473192,0.651015,0.603682,0.798573,0.108505,0.195198,0.0420349,0.088783,0.156645,0.22216,0.142326,0.500748,0.573305,0.868341,0.328941,0.0781615,0.031985,0.0444738,0.464182,0.981152,0.762571,0.0321403,0.404182,0.835471,0.680383,0.204894,0.026455,0.154718,0.00174439,0.75688,0.52506,0.173831,0.872134,0.99019,0.127192,0.404334,0.00608283,0.63562,0.263756,0.896682,0.574162,0.689244,0.507021,0.638762,0.289211,0.462229,0.0355272,0.632465,0.57518,0.739552,0.548424,0.408765,0.780354,0.0606014,0.327782,0.702096,0.0906833,0.878225,0.616925,0.437509,0.708144,0.0663452,0.307553,0.597402,0.853846,0.443475,0.0368962,0.901904,0.580714,0.402931,0.399427,0.544576,0.680278,0.884202,0.938251,0.507038,0.794056,0.906783,0.694292,0.643466,0.157913,0.188655,0.672777,0.683211,0.19709,0.0359543,0.783952,0.58432,0.767268,0.760367,0.330696,0.199757,0.617833,0.181676,0.758395,0.195018,0.568353,0.420607,0.928975,0.0828344,0.163868,0.730012,0.177989,0.883017,0.0269986,0.795434,0.0563428,0.226196,0.803039,0.740614,0.67227,0.123902,0.204183,0.766848,0.938672,0.8336,0.770742,0.461918,0.542903,0.263544,0.767853,0.0561554,0.582009,0.656968,0.0103881,0.17649,0.976169,0.229122,0.800504,0.507258,0.58979,0.347331,0.790953,0.528241,0.55995,0.137081,0.677386,0.922415,0.277942,0.933781,0.271926,0.292425,0.0129164,0.718127,0.725002,0.675135,0.587309,0.116446,0.101647,0.00541764,0.987719,0.188018,0.624615,0.0247488,0.955398,0.113366,0.895946,0.790004,0.164153,0.628509,0.937414,0.335857,0.169863,0.543815,0.575611,0.736139,0.0571288,0.989347,0.860156,0.493785,0.63121,0.940249,0.632741,0.109371,0.131561,0.607091,0.957329,0.0280336,0.0246205,0.504822,0.0475786,0.603177,0.0529612,0.779194,0.0353773,0.480227,0.63992,0.176548,0.298322,0.00242627,0.754909,0.323984,0.0618724,0.525028,0.456872,0.1395,0.914966,0.587088,0.188521,0.920544,0.0815279,0.103067,0.951086,0.419426,0.0888527,0.64465,0.488923,0.783953,0.863655,0.743111,0.213495,0.887349,0.93152,0.952127,0.396075,0.24239,0.0356048,0.60101,0.230813,0.0179603,0.747391,0.543969,0.170286,0.449102,0.543243,0.892014,0.543226,0.296174,0.298378,0.236902,0.354078,0.822649,0.736977,0.689909,0.343395,0.299153,0.212789,0.00857526,0.890247,0.767006,0.171198,0.518546,0.426716,0.996033,0.984039,0.5917,0.38066,0.311628,0.338596,0.747463,0.017657,0.369538,0.577694,0.952194,0.368036,0.594627,0.228531,0.692306,0.0276804,0.987379,0.0557463,0.000611365,0.113257,0.706782,0.0156222,0.494083,0.839692,0.691261,0.00737005,0.568372,0.233988,0.830753,0.900995,0.0435431,0.629126,0.626908,0.106095,0.63773,0.43361,0.00349033,0.333421,0.774179,0.569926,0.0106182,0.869621,0.0292417,0.842405,0.801046,0.770045,0.414559,0.299955,0.320765,0.239881,0.374432,0.831962,0.14509,0.00273913,0.896819,0.619094,0.185547,0.021161,0.403245,0.71338,0.637088,0.175726,0.240184,0.209798,0.770192,0.160988,0.817055,0.938305,0.254706,0.794435,0.303984,0.280181,0.578263,0.991146,0.946687,0.845533,0.23283,0.864766,0.0457851,0.354774,0.831554,0.610467,0.862799,0.88556,0.82805,0.419151,0.566742,0.128395,0.931083,0.610992,0.26173,0.0306628,0.0997404,0.576869,0.065788,0.596163,0.977247,0.435193,0.57724,0.0379025,0.680614,0.382089,0.543006,0.0628939,0.402441,0.955791,0.480166,0.767185,0.142855,0.756305,0.144383,0.565436,0.0723589,0.00756711,0.120747,0.48033,0.512838,0.416706,0.973494,0.753902,0.264885,0.355594,0.151165,0.763133,0.384607,0.803739,0.0875762,0.190251,0.180133,0.486896,0.25484,0.624397,0.256072,0.0651429,0.181849,0.263619,0.798863,0.298801,0.565383,0.581614,0.669087,0.857042,0.925683,0.221331,0.587532,0.988034,0.926449,0.0950808,0.503679,0.43697,0.966057,0.302228,0.827335,0.792431,0.769155,0.297858,0.000105619,0.108124,0.317239,0.87079,0.592017,0.326297,0.406153,0.159218,0.0482754,0.119093,0.630953,0.706884,0.171954,0.915097,0.0753188,0.269536,0.254211,0.033913,0.204933,0.458676,0.98428,0.0583009,0.450976,0.537033,0.676604,0.49546,0.616878,0.0394845,0.656632,0.294625,0.642999,0.424424,0.106749,0.275595,0.334708,0.833765,0.276062,0.257389,0.758757,0.423526,0.425832,0.514678,0.873364,0.949467,0.655739,0.169562,0.827828,0.0269265,0.750812,0.837802,0.918534,0.917167,0.324208,0.529884,0.222306,0.853003,0.215013,0.704521,0.34598,0.158955,0.0219671,0.140756,0.123012,0.751398,0.928431,0.224634,0.0935895,0.687768,0.904515,0.561213,0.725773,0.0179807,0.780276,0.274235,0.80461,0.021174,0.343047,0.0535689,0.62084,0.630448,0.167754,0.144526,0.898642,0.166969,0.917628,0.106928,0.827345,0.937782,0.919478,0.14753,0.0240957,0.304965,0.576888,0.38208,0.0990332,0.615631,0.746344,0.34754,0.767914,0.332859,0.847318,0.407172,0.300034,0.459475,0.00906819,0.286103,0.291897,0.67357,0.187519,0.379011,0.595617,0.740134,0.908613,0.349432,0.0208054,0.178399,0.466228,0.629266,0.133851,0.995126,0.733217,0.524235,0.182973,0.751161,0.763342,0.124871,0.884219,0.542186,0.225252,0.409583,0.580987,0.764949,0.730187,0.0917733,0.114539,0.393494,0.349561,0.752782,0.230994,0.914181,0.136496,0.05765,0.323161,0.504407,0.994583,0.47035,0.899195,0.193963,0.00898468,0.554987,0.439505,0.0742046,0.0741961,0.629864,0.672593,0.87785,0.790041,0.468707,0.713927,0.0728767,0.344675,0.638002,0.240386,0.870937,0.499024,0.510941,0.512755,0.704362,0.593413,0.292557,0.838983,0.657823,0.319453,0.351953,|0.919847,0.277281,0.00191903,0.879771,0.836553,0.582312,0.404125,0.14458,0.226038,0.541643,0.276802,0.428349,0.942525,0.512341,0.912902,0.413461,0.0284232,0.701444,0.316286,0.236604,0.527123,0.646024,0.157113,0.203341,0.732244,0.148107,0.502132,0.685837,0.0794688,0.493882,0.0461133,0.860389,0.899357,0.713196,0.0749755,0.396433,0.658216,0.778863,0.123682,0.227493,0.71031,0.110998,0.73465,0.0752766,0.65168,0.838167,0.712064,0.525079,0.560834,0.592558,0.746395,0.57579,0.480129,0.763482,0.629315,0.0473059,0.318188,0.614174,0.21018,0.290333,0.993616,0.516653,0.60859,0.891622,0.580352,0.706982,0.655604,0.806877,0.580698,0.654306,0.182974,0.164362,0.455052,0.489955,0.784043,0.894837,0.777087,0.421022,0.841463,0.851089,0.949636,0.837637,0.973336,0.472198,0.886221,0.0419171,0.47159,0.699731,0.346543,0.909528,0.297261,0.417592,0.234391,0.625323,0.222539,0.574555,0.45623,0.546316,0.498037,0.555922,0.322862,0.301387,0.474036,0.496038,0.58525,0.94929,0.963779,0.689371,0.518721,0.787576,0.00783426,0.491513,0.84339,0.67749,0.721703,0.252232,0.884603,0.180207,0.387742,0.0588102,0.191647,0.739535,0.777839,0.865488,0.392394,0.382613,0.211876,0.320964,0.323324,0.626102,0.251972,0.510289,0.409631,0.404374,0.323046,0.745356,0.617775,0.275676,0.918938,0.60233,0.562607,0.513726,0.716339,0.100825,0.21204,0.451079,0.798545,0.696553,0.677628,0.931365,0.135872,0.740892,0.912636,0.0412771,0.438285,0.236324,0.778443,0.423485,0.762671,0.825147,0.105068,0.282153,0.651789,0.295905,0.2915,0.0497287,0.311421,0.266499,0.38805,0.118551,0.645903,0.844874,0.301369,0.580634,0.411105,0.434091,0.958227,0.225251,0.043622,0.763238,0.626044,0.179987,0.121816,0.822025,0.168564,0.0860033,0.539839,0.674113,0.935032,0.901346,0.0217209,0.811675,0.31614,0.302844,0.919952,0.511979,0.374743,0.377416,0.0821795,0.950527,0.513899,0.569732,0.838445,0.462319,0.640193,0.602262,0.18776,0.0120568,0.326833,0.0469925,0.139472,0.757296,0.0245677,0.710662,0.953274,0.120095,0.50092,0.881777,0.383164,0.385823,0.704379,0.0293484,0.598811,0.566899,0.314645,0.851526,0.808936,0.883094,0.570185,0.872855,0.52994,0.704218,0.68313,0.0554923,0.163487,0.939644,0.233111,0.364671,0.522835,0.668432,0.406268,0.987093,0.293013,0.325441,0.66686,0.510421,0.985224,0.0347905,0.382306,0.402459,0.686751,0.0722618,0.36758,0.286748,0.0861934,0.883055,0.760331,0.735905,0.156466,0.178175,0.780706,0.380962,0.182344,0.390114,0.991419,0.0916631,0.977271,0.192925,0.845405,0.496636,0.790585,0.369716,0.38147,0.942786,0.686053,0.860865,0.911383,0.928967,0.59896,0.714083,0.375167,0.710351,0.303645,0.145277,0.483843,0.726804,0.892895,0.341864,0.728027,0.728826,0.744677,0.232096,0.00821048,0.13899,0.240743,0.0281461,0.917131,0.240035,0.145334,0.82404,0.857477,0.54627,0.212625,0.00485057,0.0348958,0.493447,0.694957,0.275864,0.066812,0.832263,0.0327379,0.994919,0.435319,0.0146797,0.0966281,0.91169,0.3689,0.151443,0.442398,0.215627,0.502962,0.885748,0.174133,0.475431,0.146403,0.744224,0.630146,0.625796,0.257047,0.0724838,0.063581,0.686256,0.341931,0.727285,0.60114,0.990025,0.756635,0.262344,0.477668,0.516106,0.139449,0.306283,0.495676,0.700505,0.0879228,0.0442804,0.283228,0.794916,0.488432,0.791293,0.91448,0.536701,0.0766337,0.268922,0.485068,0.895665,0.130177,0.356631,0.938022,0.0957823,0.718311,0.172162,0.769769,0.559775,0.508679,0.213311,0.502918,0.464429,0.0415427,0.164469,0.703666,0.720689,0.440372,0.658133,0.143122,0.225257,0.750427,0.926678,0.253943,0.258743,0.0443721,0.933911,0.708609,0.2276,0.307501,0.899587,0.308104,0.704434,0.226304,0.548578,0.574089,0.583736,0.756908,0.966328,0.246162,0.958346,0.63273,0.898828,0.63085,0.583444,0.271382,0.696907,0.582476,0.251764,0.536029,0.699994,0.397743,0.365476,0.656748,0.914461,0.249597,0.604713,0.198788,0.647073,0.084698,0.173855,0.35762,0.88123,0.615055,0.447826,0.916552,0.545715,0.733935,0.332771,0.988791,0.844217,0.224736,0.672691,0.558534,0.893846,0.997227,0.935809,0.707187,0.358902,0.565691,0.57146,0.0298532,0.971247,0.533948,0.398919,0.905181,0.304973,0.20115,0.782388,0.241848,0.0779019,0.730167,0.421706,0.0239042,0.677184,0.317191,0.528569,0.223138,0.705524,0.497103,0.0499349,0.284317,0.804503,0.0589226,0.738301,0.643352,0.308684,0.608271,0.115584,0.541704,0.200416,0.827814,0.918327,0.397125,0.0396993,0.713834,0.594581,0.481262,0.169184,0.586345,0.858839,0.457939,0.803502,0.659311,0.0596564,0.989081,0.418799,0.40719,0.224325,0.130186,0.0278005,0.765957,0.853507,0.374139,0.14138,0.072818,0.249097,0.0793419,0.445732,0.933505,0.00516409,0.373366,0.328303,0.81638,0.0792304,0.984988,0.50257,0.911551,0.617491,0.550305,0.71357,0.922578,0.349243,0.0922945,0.585364,0.860858,0.195844,0.318499,0.279096,0.629747,0.944784,0.494058,0.899998,0.143144,0.695578,0.563646,0.790001,0.476149,0.72595,0.19589,0.756203,0.868688,0.0353037,0.79069,0.563009,0.936066,0.712414,0.928535,0.825677,0.252461,0.855718,0.480985,0.303784,0.0686916,0.409191,0.00614822,0.19991,0.873307,0.726334,0.711472,0.448871,0.18786,0.0084812,0.336941,0.68896,0.816085,0.0328606,0.0372926,0.873319,0.139244,0.19085,0.083469,0.861036,0.346813,0.5161,0.00454789,0.752825,0.360306,0.412369,0.17321,0.908826,0.550749,0.978469,0.23665,0.598055,0.545468,0.440813,0.296574,0.784993,0.00464368,0.776085,0.310173,0.68602,0.123969,0.0370963,0.405836,0.513293,0.858789,0.649361,0.504908,0.0571425,0.739962,0.324945,0.433512,0.743563,0.447707,0.0437939,0.46508,0.557554,0.69756,0.0934974,0.755047,0.456853,0.868594,0.646969,0.163746,0.693819,0.82827,0.612053,0.970162,0.610711,0.348723,0.539895,0.766033,0.146923,0.735452,0.325339,0.460639,0.41804,0.246932,0.991699,0.950509,0.196247,0.993623,0.0356013,0.107231,0.644328,0.714338,0.00569075,0.594108,0.0182858,0.724291,0.0824575,0.461681,0.648154,0.847894,0.398352,0.883509,0.134966,0.522094,0.376648,0.932781,0.213743,0.775712,0.393027,0.415555,0.111776,0.591913,0.489866,0.565213,0.755812,0.241687,0.788044,0.707245,0.969664,0.2853,0.231218,0.650783,0.0321695,0.24786,0.902165,0.763595,0.215462,0.902618,0.367897,0.584814,0.463656,0.845637,0.179298,0.0144681,0.502493,0.531286,0.885202,0.360803,0.156251,0.138852,0.842075,0.762284,0.93948,0.376345,0.725742,0.527478,0.409232,0.62465,0.287474,0.4626,0.0107946,0.867338,0.314227,0.117636,0.807204,0.783913,0.406988,0.963498,0.227493,0.735667,0.477875,0.674012,0.259719,0.887931,0.184215,0.525266,0.934399,0.58649,0.462733,0.886097,0.198156,0.141604,0.199097,0.196663,0.851462,0.968362,0.372672,0.0397509,0.213177,0.92105,0.732356,0.0227185,0.398483,0.97143,0.0166126,0.30489,0.715642,0.558987,0.616184,0.4616,0.807115,0.101722,0.0286462,0.754784,0.148584,0.642625,0.320637,0.917828,0.955712,0.755684,0.653045,0.366539,0.342468,0.796471,0.409662,0.166218,0.192054,0.134025,0.243901,0.141022,0.240776,0.562164,0.339692,0.930194,0.698599,0.73102,0.681282,0.541203,0.636887,0.972801,0.094229,0.346004,0.489658,0.365352,0.271815,0.647037,0.809003,0.922669,0.232467,0.873425,0.442625,0.753537,0.674533,0.672128,0.0706253,0.383177,0.962752,0.161258,0.304266,0.574716,0.220962,0.310905,0.479578,0.343258,0.802536,0.900812,0.319417,0.194167,0.766053,0.406063,0.749587,0.63524,0.217646,0.707106,0.270835,0.220737,0.566468,0.186401,0.777455,0.0756922,0.251271,0.0390254,0.21018,0.813579,0.9185,0.131409,0.33525,0.744057,0.750077,0.28913,0.357712,0.624686,0.363539,0.102036,0.95939,0.399229,0.307435,0.467921,0.110717,0.867381,0.496581,0.422376,0.0668367,0.873593,0.903101,0.485674,0.641013,0.591398,0.624699,0.205374,0.290411,0.852039,0.0092572,0.0161628,0.505207,0.746069,0.405545,0.554471,0.538474,0.382024,0.286609,0.516573,0.925253,0.626,0.933087,0.849008,0.798669,0.0813653,0.83588,0.960926,0.742776,0.678852,0.854238,0.166168,0.664384,0.421887,0.17103,0.101899,0.988794,0.430815,0.411804,0.236098,0.891371,0.601524,0.831471,0.685866,0.751215,0.776569,0.44466,0.0131223,0.623745,0.629302,0.028643,0.66599,0.872774,0.978698,0.571551,0.113597,0.650726,0.7981,0.166251,0.173007,0.0145563,0.533213,0.734348,0.654183,0.415506,0.366403,0.0527356,0.168314,0.962072,0.546459,0.762565,0.571931,0.459949,0.598154,0.234102,0.0145044,0.564506,0.970134,0.801901,0.131948,0.827665,0.494208,0.558717,0.651492,0.659629,0.650474,0.475054,0.429882,0.920976,0.895039,0.713924,0.219597,0.293002,0.65669,0.640715,0.832766,0.725418,0.173515,0.115346,0.607267,0.0519097,0.810601,0.217421,0.177092,0.116833,0.702362,0.731422,0.858366,0.952902,0.254717,0.196454,0.834052,0.637679,0.872516,0.00956059,0.946742,0.8826,0.0729864,0.935562,0.162502,0.559343,0.441466,0.277676,0.325029,0.955197,0.0927863,0.926165,0.294107,0.915004,0.980607,0.67692,0.72722,0.86959,0.45445,0.660819,0.919382,0.137973,0.829476,0.00259829,0.366294,0.041803,0.222287,0.598578,0.992246,0.190373,0.368749,0.56943,0.130717,0.344089,0.0586772,0.425664,0.484468,0.758572,0.163268,0.51658,0.454178,0.592897,0.264444,0.903185,0.205814,0.508292,0.29928,0.410169,0.714786,0.764997,0.339963,0.0899163,0.131778,0.0327773,0.879836,0.619605,0.283432,0.597575,0.431594,0.56324,0.733149,0.61494,0.882239,0.501051,0.434101,0.763891,0.350306,0.824269,0.833137,0.895088,0.740734,0.903382,|0.845953,0.763283,0.418186,0.174635,0.767288,0.246507,0.995797,0.497591,0.758591,0.705588,0.387814,0.465607,0.110533,0.087839,0.415192,0.044027,0.39139,0.924702,0.931926,0.979658,0.461723,0.529126,0.424707,0.0491159,0.0743039,0.526194,0.0125811,0.997547,0.65652,0.884988,0.20621,0.478867,0.0850688,0.469839,0.441073,0.628109,0.570918,0.777056,0.18202,0.989043,0.414523,0.998,0.937911,0.621135,0.959147,0.232617,0.0770792,0.198198,0.998015,0.0824856,0.508726,0.264623,0.901721,0.307915,0.0868813,0.630017,0.994098,0.10183,0.290354,0.783238,0.632142,0.135531,0.965272,0.834233,0.929397,0.855253,0.369424,0.92116,0.45329,0.330061,0.508953,0.225052,0.43833,0.675855,0.628466,0.922675,0.49492,0.974099,0.000823498,0.938146,0.193783,0.817065,0.978214,0.389964,0.681136,0.796587,0.142327,0.833562,0.770251,0.533792,0.0337856,0.190343,0.921257,0.239761,0.528367,0.278433,0.106331,0.830047,0.377449,0.665475,0.96052,0.295805,0.950768,0.735127,0.157374,0.574977,0.721313,0.755534,0.242342,0.697886,0.684517,0.16104,0.681173,0.570143,0.114554,0.321542,0.0347907,0.384837,0.232312,0.388814,0.300502,0.700168,0.778625,0.911759,0.186887,0.358391,0.828023,0.306004,0.92587,0.958597,0.220676,0.826149,0.486819,0.443119,0.558551,0.847388,0.793711,0.757069,0.641537,0.924976,0.468858,0.0928142,0.929011,0.43747,0.656991,0.30521,0.860832,0.287191,0.635303,0.689422,0.585131,0.949637,0.0490546,0.363579,0.144787,0.81283,0.724482,0.609069,0.808563,0.366615,0.0799158,0.447558,0.406182,0.23239,0.480602,0.788403,0.00738078,0.768964,0.385243,0.229609,0.378976,0.632674,0.0746451,0.988917,0.508308,0.656865,0.604108,0.095758,0.0401707,0.338656,0.373874,0.709287,0.10063,0.500749,0.917432,0.65431,0.388905,0.217257,0.276586,0.287488,0.230819,0.121593,0.808344,0.218596,0.729266,0.93022,0.971308,0.331979,0.99738,0.0828348,0.839544,0.104535,0.407309,0.920734,0.852727,0.706254,0.762235,0.237503,0.0190839,0.80465,0.639481,0.469845,0.93905,0.774301,0.321952,0.72236,0.914589,0.117791,0.308193,0.674528,0.834086,0.256031,0.912631,0.0674723,0.131196,0.0783646,0.750352,0.147015,0.941493,0.797811,0.629536,0.919714,0.612534,0.270975,0.384042,0.524929,0.873586,0.419055,0.533851,0.967198,0.659657,0.276218,0.20519,0.299021,0.0648303,0.0489143,0.602777,0.674099,0.484739,0.692253,0.960675,0.0241739,0.800534,0.0243713,0.821437,0.423437,0.993586,0.617495,0.580732,0.0211821,0.702886,0.375874,0.938983,0.269271,0.876446,0.398305,0.826555,0.0560079,0.122952,0.423292,0.257868,0.334894,0.898452,0.268542,0.792341,0.169761,0.117835,0.773011,0.711469,0.651504,0.9766,0.63127,0.923743,0.806574,0.793151,0.439644,0.257618,0.473292,0.465541,0.986987,0.0958264,0.487302,0.238609,0.452451,0.012898,0.339289,0.250456,0.390274,0.0983873,0.570354,0.489477,0.766498,0.306146,0.314502,0.535808,0.0550508,0.124036,0.13452,0.130086,0.0445957,0.929137,0.774596,0.439965,0.920684,0.637499,0.665467,0.308683,0.435131,0.970668,0.704105,0.994627,0.487767,0.207222,0.621791,0.415717,0.28442,0.190683,0.37575,0.799677,0.708881,0.59724,0.617332,0.279235,0.169744,0.961051,0.800507,0.962461,0.608298,0.0648444,0.157215,0.64463,0.876746,0.769942,0.559853,0.458549,0.583493,0.852422,0.399302,0.469718,0.260157,0.481831,0.80887,0.271113,0.218291,0.332226,0.229619,0.445868,0.739321,0.611161,0.0536107,0.0887669,0.464813,0.779483,0.935474,0.427883,0.256916,0.110279,0.147108,0.314026,0.790758,0.467353,0.973731,0.925565,0.703435,0.32319,0.740449,0.564272,0.907406,0.325425,0.710792,0.721441,0.166703,0.109977,0.312279,0.135116,0.613051,0.937518,0.36595,0.0263675,0.796273,0.245483,0.760278,0.939192,0.780725,0.869918,0.644861,0.239053,0.683306,0.505769,0.927305,0.825423,0.564018,0.110242,0.655554,0.887309,0.751271,0.214182,0.615576,0.823254,0.984559,0.470382,0.152004,0.935946,0.530971,0.046938,0.8486,0.319056,0.882972,0.459837,0.901328,0.0632799,0.809021,0.477591,0.417209,0.694996,0.188049,0.463965,0.194699,0.957336,0.76309,0.993837,0.481413,0.890639,0.988996,0.0333167,0.042712,0.918476,0.029618,0.474495,0.962866,0.828722,0.885571,0.306992,0.866023,0.540836,0.226272,0.0572522,0.36579,0.733638,0.097833,0.752813,0.125206,0.997394,0.290037,0.918469,0.640636,0.757486,0.210873,0.559936,0.898952,0.0531866,0.980755,0.162556,0.904604,0.286899,0.11225,0.794117,0.593241,0.0165044,0.0832645,0.0487512,0.227135,0.508617,0.677778,0.135017,0.286108,0.735058,0.378658,0.720535,0.426428,0.976379,0.697625,0.373933,0.0541995,0.606946,0.237849,0.114425,0.404413,0.653624,0.391279,0.0583909,0.311807,0.174899,0.157815,0.404054,0.858348,0.557346,0.373901,0.841319,0.767928,0.229063,0.182794,0.626399,0.773789,0.530223,0.0172718,0.738794,0.421654,0.995485,0.921238,0.238675,0.559603,0.660028,0.0837314,0.432513,0.197388,0.338316,0.299025,0.600357,0.270786,0.922112,0.343882,0.310744,0.990637,0.978822,0.190996,0.104653,0.286919,0.740308,0.134804,0.055515,0.693862,0.347067,0.792398,0.851148,0.420157,0.888778,0.795311,0.0508837,0.922015,0.528877,0.0806252,0.771208,0.184041,0.932468,0.236607,0.542484,0.48522,0.715919,0.579596,0.48026,0.452297,0.444594,0.396381,0.0124539,0.82622,0.00428289,0.369954,0.123631,0.844767,0.347469,0.881772,0.00102735,0.767985,0.0823308,0.605904,0.336788,0.248626,0.509946,0.136505,0.777763,0.49016,0.87498,0.787279,0.801838,0.466107,0.689669,0.697974,0.559226,0.632206,0.879376,0.938051,0.603901,0.591774,0.047042,0.0311339,0.184868,0.235922,0.360271,0.738256,0.101864,0.200921,0.0706273,0.0260084,0.885122,0.479745,0.809444,0.374047,0.512769,0.661336,0.125407,0.173862,0.759113,0.621116,0.990597,0.708963,0.529801,0.124966,0.679628,0.306103,0.0200865,0.806999,0.998727,0.337307,0.970909,0.0555925,0.172556,0.792898,0.400236,0.962562,0.0550021,0.563858,0.700515,0.422454,0.0828913,0.775978,0.791399,0.819731,0.0312487,0.746627,0.973366,0.474663,0.999858,0.917563,0.760099,0.419848,0.763815,0.998664,0.830573,0.866664,0.271106,0.907951,0.481055,0.384077,0.287194,0.395464,0.889979,0.113072,0.915738,0.607005,0.429531,0.104685,0.836388,0.634503,0.938943,0.995848,0.0360126,0.719101,0.0876181,0.466376,0.218128,0.775572,0.321517,0.593219,0.112674,0.180479,0.99586,0.209256,0.102217,0.132748,0.678186,0.0299118,0.707314,0.385144,0.890368,0.220698,0.711399,0.0540909,0.193256,0.632465,0.857884,0.945419,0.972129,0.97118,0.380313,0.731113,0.124857,0.695088,0.279136,0.585723,0.3824,0.837415,0.176369,0.116449,0.834125,0.82585,0.133751,0.482989,0.638682,0.55327,0.523758,0.806001,0.674705,0.637889,0.24746,0.663309,0.471074,0.38069,0.727926,0.533989,0.725293,0.0716627,0.805425,0.183014,0.486514,0.143257,0.120419,0.093524,0.203744,0.756314,0.0977619,0.269859,0.630422,0.488223,0.665038,0.392614,0.0163302,0.174069,0.423458,0.074838,0.710367,0.588803,0.500817,0.249425,0.753247,0.347719,0.425885,0.803966,0.948597,0.860815,0.54605,0.326039,0.933359,0.959969,0.642456,0.718469,0.327384,0.534979,0.807426,0.713228,0.174862,0.156443,0.653441,0.390134,0.783059,0.0714176,0.0141835,0.418393,0.851856,0.716264,0.735416,0.746171,0.807905,0.242726,0.627429,0.97038,0.210171,0.355401,0.190462,0.711408,0.828429,0.295215,0.924213,0.0677332,0.21958,0.437872,0.673496,0.746924,0.764091,0.569897,0.234796,0.120528,0.367069,0.285833,0.619329,0.0548981,0.629558,0.305812,0.586031,0.122981,0.972273,0.820938,0.864572,0.252094,0.290342,0.727569,0.792392,0.711762,0.46943,0.71311,0.693822,0.916357,0.152449,0.286116,0.770534,0.0842611,0.362367,0.128089,0.181627,0.903236,0.986109,0.00107795,0.366503,0.876079,0.918734,0.544554,0.193638,0.898883,0.898861,0.389678,0.818829,0.418149,0.421189,0.852493,0.146465,0.298769,0.462375,0.301687,0.157975,0.0508918,0.527103,0.728291,0.701765,0.740685,0.332596,0.491382,0.239422,0.721849,0.0683017,0.636602,0.03646,0.970893,0.862277,0.194584,0.607527,0.200222,0.146981,0.939022,0.645884,0.246982,0.234451,0.4128,0.87626,0.146027,0.799459,0.830798,0.787604,0.601988,0.359254,0.819511,0.390099,0.272244,0.360343,0.0469624,0.610789,0.844236,0.961572,0.488115,0.72075,0.329463,0.95869,0.647218,0.056502,0.954194,0.839612,0.925638,0.714076,0.888187,0.10573,0.281337,0.85445,0.744318,0.160242,0.773389,0.761422,0.288935,0.544434,0.434875,0.848117,0.201389,0.971637,0.537162,0.567763,0.306941,0.606739,0.910771,0.842676,0.0711157,0.686093,0.310207,0.840619,0.83933,0.26915,0.291034,0.308647,0.157207,0.934478,0.502013,0.368504,0.181957,0.793962,0.420938,0.211884,0.480424,0.9194,0.74678,0.366065,0.851534,0.264605,0.678899,0.888594,0.677865,0.46654,0.285917,0.642673,0.980787,0.880753,0.63594,0.471198,0.592554,0.304561,0.384775,0.109429,0.81886,0.243178,0.224325,0.158022,0.115108,0.856893,0.858827,0.208499,0.784726,0.170354,0.194811,0.626133,0.332981,0.493872,0.56991,0.295484,0.408004,0.657952,0.901838,0.237331,0.328532,0.631848,0.447227,0.616413,0.509732,0.666967,0.626512,0.578099,0.743538,0.156785,0.941197,0.24538,0.417608,0.596521,0.695976,0.968723,0.48871,0.402997,0.237944,0.598645,0.0424115,0.366964,0.731933,0.63682,0.733094,0.0530034,0.863141,0.722157,0.721397,0.259264,0.646536,0.0568751,0.194568,0.367803,0.337514,0.820399,0.487279,0.00718093,0.478989,0.400331,0.510031,0.115167,0.336973,0.341366,0.0531546,0.964747,0.694524,|0.286725,0.812885,0.325052,0.0866902,0.646146,0.967151,0.811972,0.452675,0.328733,0.139113,0.431092,0.955466,0.234188,0.723236,0.44918,0.617331,0.520553,0.985086,0.987761,0.65034,0.336895,0.558953,0.362065,0.727591,0.364427,0.383562,0.759578,0.408621,0.481822,0.900391,0.500541,0.751217,0.00075525,0.924412,0.621042,0.941547,0.128072,0.251,0.633723,0.463972,0.463959,0.20795,0.135347,0.0964063,0.991533,0.090161,0.28048,0.967566,0.54391,0.66259,0.954324,0.422657,0.410164,0.123079,0.73519,0.484914,0.506767,0.66899,0.476974,0.460141,0.839298,0.700567,0.111673,0.414863,0.0550944,0.123672,0.93542,0.372059,0.287556,0.0233361,0.562887,0.84625,0.298815,0.39002,0.504572,0.58809,0.59727,0.102251,0.843328,0.530621,0.987096,0.743625,0.17891,0.913979,0.89112,0.783126,0.494251,0.611476,0.915738,0.0896555,0.629985,0.247579,0.78919,0.411499,0.493026,0.479447,0.71019,0.333382,0.671117,0.362062,0.0204858,0.548529,0.0535541,0.385031,0.586067,0.0334588,0.924573,0.737052,0.610125,0.776185,0.552079,0.923192,0.149454,0.596022,0.426367,0.21677,0.705739,0.681413,0.511077,0.770798,0.213817,0.782479,0.932862,0.474055,0.763877,0.6891,0.126982,0.827401,0.276566,0.222502,0.120173,0.238153,0.959513,0.869206,0.621723,0.423715,0.31213,0.49441,0.910942,0.692266,0.231486,0.804712,0.151972,0.970546,0.126427,0.153481,0.503504,0.111146,0.933235,0.864204,0.0770583,0.0121712,0.694446,0.0704432,0.300681,0.966711,0.0992948,0.339082,0.862676,0.662325,0.166944,0.771356,0.45565,0.15716,0.913441,0.727073,0.133312,0.194791,0.639427,0.121344,0.996951,0.572354,0.781747,0.285543,0.734151,0.965199,0.325985,0.530457,0.735293,0.944286,0.87339,0.227801,0.505624,0.744461,0.961318,0.0580583,0.0531125,0.700039,0.311646,0.0481643,0.0864451,0.786927,0.705203,0.71907,0.427511,0.660717,0.562483,0.79329,0.87918,0.913666,0.2229,0.859005,0.582686,0.0633768,0.502182,0.951487,0.430696,0.273123,0.0849037,0.455205,0.750301,0.832884,0.841913,0.248323,0.097241,0.220579,0.313379,0.12941,0.864957,0.610901,0.900246,0.674742,0.0754443,0.920812,0.423441,0.930737,0.0177141,0.374486,0.436412,0.80368,0.458212,0.497087,0.701729,0.984277,0.808162,0.930022,0.184878,0.412208,0.154938,0.390457,0.801355,0.574888,0.522336,0.408319,0.584326,0.245639,0.494915,0.936971,0.627526,0.78105,0.360806,0.839398,0.00802529,0.554881,0.679136,0.709086,0.159231,0.468885,0.633989,0.804804,0.657334,0.952117,0.360628,0.649346,0.37601,0.336815,0.742876,0.262534,0.76395,0.718785,0.440592,0.631867,0.656863,0.419194,0.659627,0.185036,0.766428,0.687789,0.771929,0.309846,0.667698,0.978167,0.686374,0.777089,0.809143,0.182656,0.607184,0.943005,0.238556,0.123893,0.234881,0.270718,0.362486,0.201524,0.796882,0.377416,0.750278,0.167766,0.562801,0.742123,0.286438,0.222396,0.946211,0.658124,0.162156,0.782249,0.962431,0.806117,0.0918138,0.838625,0.788966,0.66569,0.613483,0.699675,0.741211,0.372849,0.0547007,0.96202,0.860469,0.0888878,0.119907,0.939444,0.288574,0.34353,0.308024,0.41651,0.753905,0.230885,0.0381036,0.650735,0.790722,0.392346,0.87407,0.279063,0.593549,0.630511,0.769326,0.268395,0.578623,0.117278,0.244092,0.769674,0.464493,0.879476,0.773236,0.547303,0.0108929,0.237035,0.12053,0.538289,0.300224,0.52801,0.485063,0.311282,0.442603,0.261633,0.22954,0.906344,0.528788,0.665482,0.554406,0.96879,0.592852,0.413384,0.381319,0.696115,0.128592,0.511233,0.876101,0.264989,0.0271421,0.837655,0.275614,0.77571,0.841877,0.455741,0.387816,0.353534,0.296393,0.0533198,0.574964,0.79748,0.635644,0.779637,0.782047,0.967599,0.111392,0.586351,0.591187,0.358525,0.0297313,0.134841,0.00138158,0.944355,0.943239,0.0762352,0.185161,0.0011217,0.427912,0.510232,0.183173,0.730357,0.618641,0.582263,0.407388,0.449299,0.634209,0.217687,0.222765,0.295584,0.501126,0.311709,0.086858,0.647283,0.562782,0.461046,0.0097478,0.848259,0.0227104,0.879168,0.141949,0.96835,0.900085,0.00299758,0.183775,0.786801,0.0330342,0.0877689,0.560725,0.0519732,0.142729,0.503559,0.810238,0.126078,0.542394,0.905924,0.501308,0.445978,0.119028,0.0447758,0.786724,0.593232,0.579458,0.131296,0.10578,0.535232,0.286167,0.246403,0.503688,0.330304,0.995645,0.517842,0.534685,0.405487,0.734109,0.855675,0.309934,0.32693,0.938275,0.987088,0.398733,0.266186,0.714899,0.0290853,0.264275,0.521638,0.162767,0.0939193,0.354249,0.0117472,0.0405019,0.0406966,0.386154,0.545721,0.461529,0.22273,0.512411,0.76758,0.3558,0.122005,0.28958,0.0455036,0.0524659,0.485002,0.196961,0.806463,0.392451,0.0848635,0.416186,0.688073,0.215631,0.331317,0.662016,0.611931,0.451589,0.328841,0.330073,0.45691,0.474078,0.143977,0.155351,0.488288,0.981776,0.852745,0.826802,0.860956,0.18368,0.106072,0.153165,0.947834,0.400815,0.946741,0.749946,0.840088,0.334532,0.830332,0.299656,0.919405,0.970229,0.0487768,0.665048,0.900309,0.673189,0.258665,0.779268,0.643625,0.50799,0.711117,0.77622,0.656941,0.728203,0.655327,0.487082,0.315024,0.356722,0.0518181,0.365361,0.0243052,0.00598013,0.727751,0.101173,0.714785,0.301416,0.613382,0.882745,0.615687,0.729986,0.102152,0.236388,0.211362,0.0988224,0.23347,0.660939,0.250429,0.404806,0.702563,0.920388,0.584835,0.779566,0.112896,0.464987,0.209331,0.506132,0.383563,0.0783079,0.920898,0.0176858,0.127847,0.0514539,0.66902,0.420244,0.042706,0.589202,0.850892,0.179339,0.364214,0.698908,0.0339295,0.895509,0.0538967,0.667878,0.916733,0.187292,0.257467,0.403005,0.431659,0.517383,0.086143,0.819445,0.898534,0.894326,0.900506,0.657323,0.351103,0.429805,0.38635,0.500737,0.170369,0.558406,0.410772,0.671189,0.999239,0.656623,0.210238,0.0846743,0.0463208,0.398771,0.21257,0.643706,0.734917,0.784566,0.972874,0.0318306,0.868339,0.08865,0.502482,0.28633,0.00846273,0.106783,0.576397,0.0768135,0.0317948,0.338545,0.185376,0.34112,0.861069,0.542497,0.884436,0.314393,0.280048,0.134706,0.417599,0.901006,0.237842,0.0457024,0.424822,0.912886,0.239927,0.433073,0.287468,0.475843,0.117641,0.829654,0.703243,0.846722,0.558658,0.319062,0.466518,0.701953,0.854501,0.38743,0.252469,0.56281,0.893092,0.973337,0.0939801,0.922851,0.611258,0.68661,0.659612,0.409537,0.553644,0.58499,0.0551578,0.519646,0.579981,0.0954334,0.575926,0.883927,0.771397,0.963803,0.807027,0.267891,0.0622444,0.00649476,0.704377,0.229119,0.15998,0.83931,0.0875734,0.77529,0.8691,0.698402,0.713073,0.244557,0.0271994,0.0116973,0.413078,0.915186,0.254287,0.208742,0.167398,0.0885682,0.939077,0.343998,0.504157,0.595192,0.87653,0.387981,0.433079,0.0436095,0.0934554,0.660353,0.559298,0.210519,0.952534,0.608671,0.620031,0.975158,0.579207,0.393134,0.598292,0.893534,0.947832,0.974263,0.335945,0.729428,0.617903,0.339375,0.0462547,0.477132,0.963505,0.709601,0.314237,0.0804288,0.362509,0.121603,0.709236,0.844107,0.169213,0.022217,0.895453,0.0662974,0.975903,0.922263,0.834134,0.672927,0.905601,0.403556,0.130992,0.442374,0.063836,0.928573,0.526985,0.180864,0.0920517,0.445814,0.838394,0.638792,0.0729095,0.515841,0.239152,0.617333,0.0854592,0.507605,0.579786,0.0182056,0.459604,0.240394,0.892706,0.910371,0.523971,0.0119625,0.803091,0.00640905,0.830051,0.610505,0.840676,0.548549,0.911171,0.527597,0.216329,0.46504,0.648788,0.917802,0.173159,0.123067,0.547917,0.8527,0.837131,0.171978,0.73187,0.531677,0.680596,0.600519,0.395223,0.831077,0.599001,0.409553,0.780124,0.124973,0.617533,0.511296,0.715826,0.0264173,0.21405,0.106216,0.703744,0.65723,0.0328823,0.400137,0.361062,0.728673,0.450123,0.658324,0.854604,0.712783,0.799447,0.0515085,0.56147,0.100216,0.0126905,0.303819,0.909152,0.947135,0.18415,0.890163,0.150252,0.503923,0.331935,0.0652546,0.296919,0.955079,0.623872,0.6042,0.409929,0.832506,0.702324,0.736715,0.24178,0.484441,0.998786,0.243926,0.241489,0.330986,0.536901,0.994199,0.346695,0.253189,0.550484,0.434925,0.989169,0.760817,0.546727,0.597426,0.252209,0.648136,0.356918,0.179026,0.972711,0.880425,0.54691,0.448503,0.395221,0.397146,0.176343,0.514718,0.749358,0.0344112,0.90158,0.322465,0.44635,0.882896,0.108981,0.469255,0.5288,0.329252,0.84721,0.906403,0.670909,0.786427,0.645305,0.162932,0.306176,0.277898,0.0529032,0.641295,0.893866,0.0985252,0.858131,0.581207,0.8495,0.724628,0.576424,0.00777036,0.176231,0.238199,0.795276,0.565957,0.335119,0.742657,0.180399,0.487584,0.0386844,0.29539,0.984837,0.680904,0.164218,0.729726,0.345036,0.480426,0.283975,0.177827,0.248703,0.0644887,0.658439,0.830651,0.459027,0.802662,0.616035,0.387915,0.821489,0.110613,0.732456,0.0727852,0.507271,0.979138,0.0240007,0.490274,0.0620646,0.698186,0.492758,0.990878,0.776513,0.784616,0.7659,0.467618,0.782838,0.0886562,0.461751,0.716541,0.683225,0.122431,0.768492,0.113328,0.376053,0.349092,0.16882,0.319286,0.726895,0.368452,0.576004,0.324235,0.235072,0.949472,0.297994,0.706292,0.0717837,0.0981779,0.662127,0.602938,0.33335,0.130116,0.979986,0.872861,0.032176,0.674388,0.545995,0.97438,0.0423365,0.0162045,0.148621,0.934049,0.299128,0.859877,0.659912,0.429662,0.642581,0.502258,0.203819,0.163997,0.145608,0.193979,0.602515,0.340388,0.838173,0.980337,0.183123,0.905328,0.200678,0.375206,0.60845,0.513882,0.869154,0.0613971,0.0178618,0.341779,0.375073,0.301928,0.281188,0.581654,0.128818,0.768209,0.988179,0.146944,0.548766,0.910686,0.831981,0.161679,0.288652,|0.220371,0.165177,0.376612,0.991504,0.252122,0.416413,0.498427,0.764835,0.890992,0.526419,0.0491455,0.95946,0.142,0.368478,0.615336,0.0781775,0.089012,0.0614641,0.971146,0.4605,0.733201,0.285698,0.321535,0.730304,0.386235,0.452349,0.246751,0.263625,0.466517,0.0370237,0.273092,0.542747,0.964887,0.997317,0.388875,0.491893,0.703703,0.639445,0.770909,0.483586,0.454973,0.815105,0.830245,0.738082,0.64143,0.0852888,0.128181,0.511238,0.502999,0.554731,0.667976,0.795687,0.313904,0.179957,0.384555,0.497822,0.0261732,0.821278,0.228016,0.99956,0.583332,0.538489,0.339372,0.131421,0.504261,0.378664,0.653671,0.973814,0.638535,0.917026,0.399277,0.147726,0.166702,0.0881191,0.662112,0.9255,0.190902,0.723348,0.116472,0.642776,0.308594,0.051958,0.0383533,0.653291,0.486118,0.529729,0.225782,0.270422,0.244736,0.368231,0.688012,0.936964,0.795018,0.611489,0.673511,0.596861,0.979516,0.715688,0.114196,0.230773,0.152749,0.356858,0.46768,0.704473,0.323477,0.867797,0.40463,0.587938,0.605998,0.911466,0.141231,0.614577,0.377036,0.754386,0.372902,0.736035,0.793957,0.692162,0.256105,0.0201166,0.297987,0.496338,0.312853,0.815389,0.0554502,0.947486,0.490368,0.896147,0.384631,0.157834,0.677471,0.532432,0.197496,0.290907,0.764485,0.194301,0.735816,0.802771,0.0228603,0.453792,0.491296,0.263637,0.467173,0.108753,0.93587,0.499156,0.391367,0.368774,0.0225047,0.102774,0.451943,0.591037,0.428095,0.775122,0.996572,0.279239,0.567798,0.628658,0.659192,0.282097,0.0199788,0.0235779,0.852392,0.830582,0.434224,0.504679,0.555663,0.13728,0.803423,0.366815,0.867346,0.391123,0.0291191,0.559891,0.170503,0.0326418,0.209502,0.230406,0.75384,0.528495,0.735221,0.622386,0.241808,0.579221,0.910856,0.655407,0.837325,0.869494,0.8544,0.854483,0.793382,0.0372518,0.349881,0.305329,0.415313,0.586872,0.403354,0.659828,0.859847,0.132348,0.690276,0.28983,0.950664,0.827083,0.085915,0.786146,0.947512,0.710554,0.991304,0.21835,0.247179,0.477995,0.537905,0.460089,0.473263,0.77864,0.878176,0.105744,0.617621,0.352854,0.0244688,0.129817,0.389978,0.605165,0.879537,0.953259,0.239987,0.657464,0.22001,0.509987,0.757108,0.526785,0.44332,0.565986,0.360184,0.309206,0.987529,0.459965,0.406858,0.438716,0.645472,0.556096,0.196218,0.0403488,0.398215,0.115618,0.862784,0.552403,0.905726,0.238102,0.63222,0.870587,0.596598,0.144641,0.125378,0.81415,0.91339,0.0448647,0.897124,0.326968,0.890587,0.831223,0.580256,0.582324,0.776912,0.85086,0.330162,0.632355,0.617663,0.683304,0.629523,0.464011,0.470999,0.197835,0.953725,0.950507,0.783677,0.403215,0.189091,0.060676,0.151524,0.0612363,0.754781,0.792356,0.245413,0.855552,0.57169,0.360697,0.381755,0.0616699,0.801591,0.434958,0.503287,0.814856,0.629989,0.108877,0.741193,0.367995,0.0676212,0.443176,0.552399,0.280976,0.854036,0.834353,0.13671,0.864985,0.173687,0.933948,0.780828,0.376875,0.645605,0.41066,0.557984,0.708981,0.0719333,0.678239,0.469113,0.379637,0.772072,0.232256,0.917869,0.414628,0.588655,0.802216,0.380298,0.181155,0.448693,0.745638,0.463186,0.383558,0.0456644,0.20596,0.382152,0.646705,0.542773,0.693298,0.195944,0.800474,0.991205,0.263766,0.240756,0.346007,0.746916,0.619054,0.156717,0.976891,0.54359,0.303359,0.388689,0.3212,0.846722,0.21634,0.909351,0.565083,0.434847,0.249576,0.158829,0.895364,0.442589,0.358577,0.583109,0.814229,0.131113,0.780861,0.493379,0.252738,0.530005,0.387485,0.939648,0.260783,0.447668,0.683562,0.368869,0.534016,0.58998,0.504616,0.562442,0.19463,0.76996,0.934002,0.981307,0.190607,0.143923,0.258185,0.716348,0.290405,0.72992,0.353863,0.530714,0.456304,0.568141,0.00524139,0.11544,0.248971,0.0929435,0.63769,0.79574,0.548449,0.845207,0.794653,0.795098,0.731514,0.180808,0.592269,0.345486,0.0323527,0.313202,0.375965,0.868519,0.506557,0.834706,0.20375,0.467052,0.954468,0.162615,0.641509,0.289148,0.239761,0.0874824,0.634739,0.813606,0.962686,0.481873,0.718006,0.142215,0.864735,0.763058,0.637767,0.756267,0.700353,0.389975,0.24434,0.235012,0.405335,0.00647604,0.797063,0.722992,0.449014,0.257881,0.838888,0.783655,0.136732,0.727754,0.806947,0.734207,0.174166,0.290557,0.0480718,0.797776,0.843816,0.35011,0.26728,0.117695,0.598557,0.374119,0.911978,0.439092,0.229875,0.779913,0.934151,0.425543,0.319189,0.588777,0.902167,0.479116,0.382719,0.527455,0.494629,0.652681,0.536894,0.523209,0.22487,0.772972,0.900054,0.184348,0.21401,0.712092,0.347068,0.906246,0.55512,0.389109,0.132845,0.668118,0.516233,0.325749,0.110845,0.328343,0.371848,0.0316538,0.233461,0.672847,0.437685,0.916457,0.614116,0.212745,0.0156202,0.397143,0.846033,0.033502,0.31901,0.328751,0.0950195,0.888064,0.330058,0.314889,0.227727,0.361747,0.555937,0.322181,0.701611,0.884112,0.969877,0.983477,0.262032,0.404183,0.759342,0.84016,0.392048,0.711877,0.587527,0.702917,0.87113,0.760281,0.462843,0.329166,0.306287,0.428102,0.90441,0.879073,0.979962,0.865309,0.844508,0.502388,0.618009,0.635999,0.919925,0.581601,0.170555,0.681468,0.264913,0.937315,0.745645,0.2942,0.936069,0.0823184,0.760961,0.25351,0.0799567,0.537998,0.341265,0.915079,0.16729,0.29577,0.386829,0.705544,0.0637853,0.359545,0.221721,0.424368,0.441246,0.40365,0.865924,0.252548,0.00196737,0.994839,0.349143,0.103853,0.846959,0.501556,0.00470227,0.515943,0.707911,0.339214,0.156885,0.498453,0.246138,0.298783,0.442689,0.986206,0.987699,0.222586,0.608796,0.210086,0.418563,0.62102,0.702214,0.577473,0.378257,0.326353,0.131635,0.146677,0.921155,0.229179,0.504685,0.0261768,0.997788,0.359466,0.214281,0.738952,0.589878,0.952627,0.327768,0.547389,0.777648,0.256774,0.140429,0.907897,0.814019,0.0617049,0.632138,0.676296,0.490212,0.396875,0.0545223,0.381502,0.449122,0.656171,0.297558,0.563431,0.595526,0.679899,0.358975,0.886384,0.789232,0.0701489,0.341524,0.80274,0.718638,0.19754,0.992695,0.721874,0.851428,0.329146,0.634913,0.785249,0.941108,0.791344,0.346755,0.704693,0.962292,0.393671,0.612913,0.371787,0.571522,0.931788,0.981179,0.133549,0.452551,0.897053,0.265921,0.0682039,0.923903,0.15002,0.709811,0.557303,0.862012,0.107793,0.0609924,0.206332,0.137042,0.97172,0.166353,0.148533,0.615459,0.12872,0.86566,0.110694,0.199652,0.0604933,0.180873,0.495113,0.418479,0.401548,0.870936,0.496752,0.193154,0.839929,0.80713,0.300016,0.722561,0.33786,0.141827,0.528086,0.255469,0.103815,0.172489,0.631647,0.638555,0.756035,0.579766,0.215486,0.322397,0.564653,0.935629,0.697373,0.0598801,0.257527,0.779189,0.00682521,0.700535,0.26936,0.332273,0.713511,0.423901,0.137973,0.695356,0.40119,0.435292,0.905036,0.982334,0.438051,0.373792,0.724685,0.214244,0.942892,0.483633,0.244281,0.229515,0.797306,0.812689,0.0107911,0.91181,0.0652412,0.29022,0.223808,0.345668,0.901667,0.373167,0.294377,0.180977,0.94832,0.806411,0.862325,0.570009,0.0417655,0.779093,0.351149,0.503847,0.829742,0.825188,0.711943,0.546997,0.239933,0.177526,0.729798,0.133857,0.697842,0.917501,0.603364,0.401279,0.357838,0.163915,0.600067,0.759202,0.993834,0.114226,0.570353,0.740005,0.0942563,0.533804,0.761844,0.118886,0.286543,0.834064,0.482651,0.710805,0.41264,0.13837,0.839759,0.912715,0.104174,0.964001,0.505946,0.445527,0.359327,0.39015,0.354561,0.229444,0.540335,0.969335,0.856904,0.50321,0.949992,0.340372,0.372501,0.33085,0.247193,0.163402,0.28057,0.19134,0.0488761,0.307622,0.22723,0.356808,0.619093,0.649713,0.211215,0.748501,0.0624603,0.953545,0.105397,0.449709,0.535191,0.749512,0.161597,0.361593,0.612444,0.958802,0.819953,0.31722,0.711168,0.658001,0.105782,0.0417342,0.852139,0.0177223,0.345801,0.309791,0.355576,0.106304,0.195203,0.272643,0.0756189,0.632657,0.470616,0.859244,0.113549,0.375659,0.851126,0.381539,0.327052,0.544522,0.107027,0.598271,0.480772,0.625867,0.840212,0.119439,0.733632,0.289893,0.128259,0.608393,0.216314,0.384536,0.2334,0.506155,0.0581707,0.545602,0.139113,0.792394,0.893604,0.293176,0.359716,0.787965,0.893808,0.0684422,0.900407,0.391091,0.936882,0.459156,0.120552,0.77134,0.330801,0.538479,0.588958,0.0918648,0.175187,0.0921376,0.272763,0.406966,0.115178,0.928474,0.577239,0.330441,0.59745,0.369002,0.340696,0.899763,0.0524085,0.17582,0.699664,0.208479,0.80211,0.769062,0.951008,0.913738,0.237538,0.293162,0.314201,0.799854,0.718655,0.445693,0.551984,0.13904,0.650091,0.473103,0.816153,0.551653,0.90193,0.705273,0.0176346,0.168232,0.776554,0.480273,0.0666509,0.853178,0.899647,0.453657,0.168952,0.662449,0.0996613,0.691425,0.439313,0.218451,0.714222,0.983551,0.611949,0.0372705,0.115522,0.789649,0.115389,0.723009,0.116989,0.454848,0.956436,0.254108,0.0488307,0.461822,0.302688,0.733034,0.678536,0.272761,0.577709,0.571688,0.246891,0.0111248,0.716756,0.067452,0.900808,0.270426,0.213062,0.27544,0.0708736,0.803206,0.976264,0.463419,0.776512,0.528204,0.748492,0.0640444,0.0267721,0.857287,0.480597,0.196239,0.928266,0.82123,0.567165,0.272101,0.175942,0.129509,0.435162,0.990349,0.0154776,0.575335,0.63911,0.378786,0.233412,0.995819,0.309305,0.484717,0.9999,0.180578,0.278201,0.715331,0.654273,0.952362,0.67444,0.617009,0.787077,0.84829,0.675485,0.00379735,0.837544,0.479535,0.585122,0.526054,0.545279,0.775302,0.626677,0.227057,0.755969,0.32446,0.893959,0.463446,0.914543,0.572029,0.820942,0.00654912,0.33624,0.583151,|0.484287,0.952601,0.900975,0.136205,0.558002,0.378248,0.760131,0.759272,0.0911244,0.0881751,0.0752434,0.714659,0.629478,0.652586,0.0285224,0.437309,0.819869,0.736313,0.650358,0.166681,0.86452,0.311337,0.821883,0.014994,0.225427,0.437288,0.123118,0.957701,0.858973,0.184404,0.386763,0.042955,0.991676,0.0467611,0.429733,0.75517,0.0498893,0.853917,0.108587,0.691531,0.401715,0.963664,0.299045,0.874783,0.00475067,0.838423,0.927171,0.653888,0.0961823,0.761328,0.110106,0.258219,0.0452337,0.897581,0.677269,0.895368,0.743558,0.416817,0.631421,0.93229,0.624525,0.791562,0.535921,0.206779,0.18883,0.623829,0.348479,0.552198,0.668491,0.65609,0.0864558,0.321145,0.720909,0.349209,0.38226,0.12525,0.315603,0.399091,0.378881,0.138669,0.584585,0.35341,0.102625,0.0897643,0.870327,0.100186,0.453941,0.462825,0.923272,0.34631,0.00875276,0.351021,0.387864,0.0290198,0.697532,0.757379,0.289372,0.326068,0.347365,0.910685,0.994455,0.770919,0.865824,0.912265,0.24072,0.348108,0.158749,0.67692,0.318156,0.287853,0.331913,0.117674,0.646863,0.964549,0.981279,0.16185,0.394006,0.216112,0.510066,0.354161,0.139753,0.856199,0.889463,0.695364,0.778701,0.519803,0.345794,0.911283,0.593057,0.844448,0.247426,0.34647,0.0946103,0.745863,0.593232,0.723753,0.471681,0.960198,0.502409,0.588625,0.788923,0.32522,0.506645,0.940326,0.304788,0.83007,0.418598,0.429408,0.581544,0.400395,0.139354,0.766652,0.903887,0.436144,0.388352,0.944987,0.479885,0.77071,0.894434,0.561096,0.369016,0.832051,0.202537,0.0953885,0.958975,0.0731129,0.307762,0.788709,0.638008,0.312178,0.536401,0.588852,0.0918486,0.414974,0.929063,0.246144,0.365335,0.852974,0.866121,0.319948,0.05987,0.0870606,0.134439,0.728047,0.430378,0.360575,0.613657,0.989986,0.4393,0.411988,0.395972,0.887518,0.587089,0.896103,0.632498,0.832268,0.760735,0.191674,0.469621,0.053913,0.948803,0.696385,0.35055,0.329514,0.75702,0.248076,0.43504,0.455648,0.610496,0.251753,0.426766,0.147086,0.838168,0.180332,0.608796,0.761187,0.576673,0.393821,0.706627,0.532103,0.629602,0.476296,0.993128,0.915482,0.298644,0.874954,0.144018,0.293799,0.180554,0.165821,0.201726,0.850609,0.649386,0.61847,0.276743,0.317883,0.481877,0.95494,0.270208,0.7716,0.861984,0.758159,0.478136,0.376883,0.648217,0.305905,0.0624301,0.152699,0.00582564,0.994792,0.81739,0.441058,0.60705,0.679152,0.138681,0.702498,0.18293,0.154202,0.6617,0.648082,0.64949,0.386934,0.331527,0.864335,0.470443,0.640159,0.169794,0.364238,0.0623939,0.720625,0.22625,0.879921,0.100565,0.165646,0.0544678,0.130405,0.534855,0.46593,0.174056,0.105506,0.230255,0.229448,0.661944,0.268533,0.33935,0.310576,0.0462036,0.134989,0.815474,0.320079,0.777866,0.533706,0.789849,0.311522,0.107546,0.54433,0.199132,0.470524,0.484176,0.638295,0.824838,0.0514315,0.892763,0.075698,0.917079,0.277439,0.84597,0.748452,0.876346,0.961783,0.127149,0.530798,0.162134,0.0794534,0.913805,0.586978,0.112129,0.668835,0.851577,0.980794,0.434877,0.65254,0.966609,0.234028,0.895672,0.181408,0.444,0.41464,0.127084,0.112816,0.433765,0.359705,0.91665,0.764482,0.163313,0.38312,0.950756,0.778242,0.740727,0.753207,0.601044,0.843449,0.531198,0.320478,0.502226,0.756335,0.326927,0.593701,0.819184,0.757593,0.0245239,0.0942143,0.424875,0.320182,0.079479,0.164503,0.886047,0.904241,0.60288,0.999981,0.496502,0.498152,0.767451,0.387953,0.797297,0.60097,0.346091,0.698489,0.869033,0.797077,0.370652,0.155252,0.512588,0.394209,0.27917,0.550399,0.204991,0.456178,0.116953,0.739077,0.049907,0.859863,0.0774361,0.884795,0.80117,0.342356,0.713726,0.0835235,0.628274,0.377489,0.732537,0.860338,0.523382,0.491,0.695036,0.0171881,0.387542,0.833364,0.530429,0.112488,0.448861,0.620958,0.64799,0.575776,0.9207,0.612247,0.368616,0.668784,0.896588,0.493653,0.121218,0.0788897,0.175313,0.233271,0.609865,0.865177,0.823992,0.953168,0.19408,0.45666,0.2598,0.147353,0.749541,0.164048,0.293845,0.463116,0.921503,0.699322,0.226006,0.813579,0.81834,0.532282,0.851705,0.0264668,0.105885,0.0885379,0.0123342,0.744647,0.980328,0.432788,0.199009,0.0599638,0.417155,0.617631,0.325495,0.0123682,0.813288,0.220321,0.698841,0.454793,0.873981,0.842823,0.901169,0.493375,0.656452,0.998115,0.932972,0.793976,0.989879,0.825643,0.830272,0.39729,0.321259,0.270886,0.190313,0.665199,0.349758,0.181312,0.483382,0.252442,0.216969,0.718934,0.155767,0.470163,0.954182,0.149252,0.727532,0.894538,0.883564,0.280535,0.0255092,0.00215143,0.561278,0.960422,0.720124,0.409888,0.993746,0.55387,0.82378,0.626258,0.59633,0.971565,0.786233,0.370168,0.42542,0.115223,0.30537,0.916715,0.412119,0.971101,0.836756,0.201181,0.300856,0.0515893,0.581106,0.525216,0.52505,0.900655,0.364166,0.502756,0.0109917,0.773002,0.528193,0.29372,0.0989767,0.00919396,0.0719429,0.430555,0.0667719,0.794194,0.950261,0.798484,0.706428,0.994147,0.531693,0.0539743,0.99108,0.668772,0.538235,0.0907029,0.422136,0.339263,0.802973,0.74565,0.531233,0.98352,0.136094,0.62003,0.501964,0.698341,0.701717,0.780836,0.754777,0.43932,0.0386972,0.266719,0.651153,0.881825,0.427607,0.597062,0.109659,0.886322,0.507848,0.495376,0.764432,0.0434405,0.409568,0.649591,0.586771,0.678097,0.394856,0.936377,0.876519,0.8091,0.108299,0.660172,0.817183,0.184529,0.0391622,0.453445,0.412507,0.136847,0.920541,0.563315,0.616392,0.757879,0.785881,0.182502,0.527292,0.406627,0.489274,0.138288,0.583917,0.971864,0.156074,0.093524,0.489372,0.665624,0.49335,0.209945,0.938966,0.321813,0.426459,0.168904,0.0845696,0.182378,0.0108674,0.924094,0.373624,0.450923,0.272179,0.0128615,0.679857,0.710945,0.681115,0.706191,0.544538,0.0121782,0.206181,0.632361,0.889729,0.965982,0.0587555,0.661355,0.1989,0.356929,0.282518,0.746647,0.26294,0.436457,0.379515,0.888235,0.45048,0.201197,0.831993,0.247818,0.571518,0.516808,0.26635,0.500634,0.307681,0.395316,0.537123,0.730916,0.98744,0.933575,0.812011,0.397586,0.569915,0.80317,0.00686449,0.888969,0.774542,0.404529,0.0442279,0.744594,0.962253,0.296558,0.263725,0.828291,0.449262,0.148465,0.149617,0.93296,0.566864,0.921322,0.581491,0.863549,0.692757,0.661558,0.838571,0.48177,0.00765425,0.839355,0.962458,0.908418,0.440493,0.270019,0.0615301,0.991038,0.906471,0.663037,0.359744,0.269605,0.686417,0.67251,0.542603,0.397762,0.799426,0.542013,0.103342,0.68788,0.447042,0.53707,0.809992,0.382547,0.941784,0.477483,0.988835,0.508191,0.510429,0.917709,0.635233,0.00784868,0.629345,0.171063,0.748969,0.653534,0.574418,0.960714,0.028334,0.111355,0.240076,0.375753,0.056979,0.525112,0.0483472,0.882279,0.926851,0.718561,0.0364466,0.241612,0.525587,0.0893735,0.28752,0.456506,0.968952,0.973609,0.285104,0.402747,0.171235,0.387448,0.382409,0.702919,0.936485,0.917105,0.821669,0.238907,0.423718,0.837579,0.909395,0.239386,0.767736,0.976601,0.123108,0.00702006,0.91763,0.270339,0.585749,0.211106,0.482031,0.980109,0.565381,0.0296283,0.193592,0.0539095,0.708032,0.643415,0.266004,0.785343,0.254104,0.0115104,0.367244,0.524704,0.958792,0.219605,0.212492,0.0215663,0.497529,0.389539,0.59624,0.0720786,0.634766,0.668483,0.98531,0.624852,0.958429,0.388781,0.509368,0.0724953,0.289715,0.451093,0.971684,0.647299,0.835101,0.463727,0.356845,0.177657,0.973763,0.684633,0.542738,0.136548,0.163669,0.244062,0.993977,0.882536,0.665933,0.737023,0.390891,0.488529,0.707607,0.406701,0.191241,0.951606,0.430373,0.850418,0.844957,0.542364,0.520787,0.726636,0.387206,0.0930569,0.914063,0.0180874,0.208245,0.824076,0.782698,0.200228,0.28179,0.686354,0.28958,0.754083,0.633919,0.044494,0.329667,0.384805,0.804623,0.719188,0.974479,0.126999,0.925893,0.201351,0.793505,0.765192,0.414688,0.562371,0.186462,0.832641,0.455072,0.0127891,0.842325,0.462334,0.775699,0.0121393,0.577805,0.451772,0.287157,0.707655,0.56631,0.044389,0.335059,0.60577,0.372755,0.575062,0.869978,0.300807,0.685076,0.16001,0.854047,0.732432,0.502457,0.857169,0.398495,0.234937,0.839666,0.46129,0.73761,0.967894,0.831294,0.471786,0.623833,0.565034,0.932608,0.0402237,0.598884,0.46229,0.651836,0.511816,0.259212,0.37803,0.791601,0.249414,0.0794834,0.494246,0.0046398,0.57496,0.338427,0.637194,0.463373,0.613302,0.447848,0.99835,0.79989,0.773617,0.00939631,0.896234,0.589206,0.246358,0.679712,0.495249,0.00399303,0.306527,0.220442,0.584123,0.40241,0.262238,0.00709236,0.515079,0.539751,0.55913,0.661379,0.899443,0.410754,0.949878,0.877054,0.347026,0.311037,0.284271,0.804181,0.0946726,0.558221,0.804265,0.219249,0.306734,0.963257,0.943114,0.579632,0.889011,0.121524,0.553666,0.646779,0.487664,0.956258,0.395078,0.80508,0.475578,0.623752,0.547834,0.455283,0.102597,0.122708,0.982552,0.451593,0.817611,0.903754,0.747172,0.749528,0.869064,0.624199,0.0405946,0.769278,0.905247,0.253339,0.0107937,0.752686,0.19003,0.343115,0.268592,0.602054,0.00280023,0.347013,0.225695,0.0364798,0.859703,0.931029,0.62397,0.284573,0.262083,0.290285,0.358974,0.547495,0.579387,0.0556863,0.387164,0.649757,0.713891,0.994117,0.0551247,0.170286,0.390354,0.863933,0.120864,0.672115,0.732718,0.741872,0.340732,0.205286,0.185196,0.862947,0.997341,0.744381,0.162856,0.793528,0.856644,0.54212,0.0490977,0.259928,0.253829,0.741463,0.232932,0.389009,0.431985,0.637144,0.931906,0.479815,0.934002,0.794184,0.232015,0.0920648,0.268692,|0.650822,0.863759,0.626095,0.632903,0.730057,0.648925,0.993543,0.604522,0.806792,0.50083,0.461795,0.0210627,0.732716,0.914402,0.268708,0.74814,0.631372,0.0378307,0.816053,0.588423,0.776123,0.871619,0.627262,0.583407,0.702287,0.353892,0.259399,0.834484,0.0143828,0.725139,0.256561,0.391085,0.495848,0.855873,0.421587,0.68319,0.166806,0.501343,0.805795,0.911111,0.166029,0.919386,0.428065,0.921963,0.0700129,0.793097,0.168463,0.240134,0.986169,0.684412,0.578617,0.703948,0.293641,0.24007,0.463523,0.189424,0.69812,0.00654107,0.494332,0.304899,0.818687,0.503565,0.0160281,0.577973,0.706327,0.894143,0.587877,0.0113844,0.213891,0.471482,0.75123,0.681132,0.393214,0.12023,0.264929,0.433453,0.530346,0.769792,0.10728,0.204492,0.558485,0.536715,0.66893,0.694635,0.88325,0.504173,0.298504,0.398804,0.00952107,0.750172,0.331023,0.75291,0.543322,0.69588,0.945613,0.200912,0.136785,0.0648084,0.348404,0.245169,0.107835,0.0287167,0.713711,0.696574,0.657631,0.40083,0.802499,0.0311425,0.309482,0.0656098,0.615646,0.536087,0.448718,0.931273,0.140645,0.411106,0.314058,0.808873,0.250261,0.248435,0.0693375,0.889277,0.272918,0.14664,0.37709,0.489191,0.26447,0.00969702,0.345352,0.430008,0.914575,0.291948,0.528475,0.384369,0.997987,0.731136,0.45241,0.328624,0.841004,0.832291,0.951837,0.277797,0.99529,0.118079,0.711851,0.840476,0.630264,0.0838488,0.295229,0.23465,0.328356,0.155604,0.929973,0.0287066,0.202235,0.957144,0.600554,0.990094,0.79685,0.490998,0.610239,0.655685,0.896968,0.727909,0.578147,0.663089,0.750037,0.583502,0.555806,0.486228,0.486328,0.667393,0.00477517,0.247099,0.0263353,0.0584465,0.0696031,0.875033,0.665053,0.783784,0.264292,0.124962,0.211749,0.597457,0.811865,0.346948,0.438674,0.893192,0.635776,0.0936233,0.0483528,0.766388,0.0705394,0.393722,0.692567,0.30151,0.774032,0.633194,0.751199,0.736562,0.168215,0.273567,0.695695,0.476004,0.673039,0.910527,0.283913,0.697094,0.342378,0.299218,0.328889,0.183053,0.0497051,0.406694,0.824243,0.287584,0.945135,0.749758,0.672853,0.440159,0.834655,0.877702,0.264375,0.22994,0.473817,0.337233,0.972102,0.017203,0.578308,0.916314,0.0712331,0.524688,0.38371,0.789037,0.444475,0.221984,0.744662,0.713044,0.918592,0.357822,0.405489,0.363562,0.975262,0.907156,0.435993,0.1821,0.790255,0.338418,0.417328,0.662085,0.982123,0.475565,0.665256,0.724208,0.913607,0.922216,0.511658,0.063511,0.63879,0.667771,0.692414,0.424748,0.532539,0.325611,0.214186,0.805143,0.721176,0.618578,0.119749,0.884483,0.0400201,0.925164,0.336433,0.0573988,0.141485,0.417877,0.550384,0.94611,0.263006,0.0995172,0.556701,0.237111,0.995537,0.404888,0.725626,0.157123,0.850508,0.47801,0.348405,0.14291,0.664972,0.600656,0.532019,0.186777,0.361544,0.787805,0.467155,0.612174,0.219804,0.0767815,0.468451,0.400265,0.809628,0.459824,0.539765,0.420532,0.641901,0.088979,0.386657,0.786318,0.621184,0.190244,0.439072,0.0687573,0.197043,0.511317,0.277839,0.999246,0.76236,0.0522493,0.0756814,0.840221,0.783386,0.131962,0.364801,0.600995,0.288362,0.825614,0.254189,0.248992,0.365854,0.302474,0.973274,0.347485,0.912601,0.486022,0.166789,0.203013,0.610846,0.421268,0.701046,0.855546,0.327787,0.876713,0.414179,0.00224757,0.86842,0.256642,0.281618,0.676252,0.942266,0.11223,0.249617,0.316269,0.708513,0.732892,0.909742,0.163159,0.127821,0.841646,0.0120327,0.164459,0.11215,0.754556,0.833524,0.65233,0.421279,0.10349,0.678881,0.0656131,0.515868,0.277985,0.16366,0.117096,0.397304,0.530466,0.865235,0.328928,0.311424,0.0271031,0.134396,0.488045,0.440771,0.732828,0.414647,0.633923,0.564452,0.630159,0.918304,0.88661,0.217869,0.898188,0.319286,0.603302,0.392815,0.515282,0.887501,0.290402,0.0941591,0.155684,0.594323,0.523962,0.958715,0.681381,0.251336,0.0723771,0.222939,0.238544,0.351574,0.809268,0.205526,0.934695,0.39684,0.325732,0.0619011,0.671913,0.482074,0.379053,0.632584,0.157377,0.809575,0.294908,0.304458,0.244225,0.404648,0.0301489,0.808336,0.793874,0.724245,0.216225,0.86126,0.423635,0.668211,0.2158,0.392253,0.276258,0.756494,0.735003,0.0156894,0.759866,0.312093,0.0484062,0.182502,0.13149,0.466027,0.581454,0.663948,0.387416,0.724535,0.628504,0.268,0.504538,0.62461,0.208076,0.346558,0.600333,0.785784,0.794257,0.726022,0.194025,0.041273,0.699692,0.0861455,0.892526,0.789741,0.920634,0.772832,0.134538,0.241693,0.310843,0.235687,0.498513,0.516356,0.248044,0.0279067,0.732777,0.0731444,0.494685,0.765738,0.413066,0.169349,0.519349,0.439367,0.944608,0.38786,0.953288,0.227344,0.78243,0.833279,0.921679,0.202393,0.153665,0.0414439,0.427331,0.215445,0.906728,0.645474,0.702143,0.330555,0.297966,0.532694,0.517492,0.279268,0.361449,0.493139,0.934943,0.584858,0.460339,0.442307,0.955644,0.893437,0.972342,0.631177,0.0141507,0.747516,0.680659,0.475669,0.939377,0.670995,0.239587,0.296468,0.0355577,0.696397,0.117643,0.747654,0.616092,0.523552,0.536349,0.447356,0.019841,0.877755,0.882707,0.165115,0.213235,0.682404,0.929512,0.263622,0.544706,0.13669,0.17035,0.618399,0.559853,0.990858,0.534762,0.644911,0.780487,0.300816,0.0487999,0.150267,0.800191,0.780328,0.362644,0.622483,0.374236,0.137936,0.535147,0.795319,0.949817,0.0855089,0.0209008,0.807584,0.650908,0.321902,0.713312,0.476911,0.213737,0.138075,0.33152,0.15503,0.144153,0.57505,0.179603,0.460398,0.478625,0.026689,0.932465,0.71062,0.715746,0.258902,0.909604,0.298004,0.4848,0.940431,0.400492,0.746731,0.653876,0.0930572,0.0592366,0.451014,0.664491,0.0286823,0.0884374,0.529537,0.807696,0.204454,0.0161957,0.152714,0.442626,0.0470963,0.986578,0.658574,0.972404,0.0903739,0.635409,0.83578,0.0478805,0.0138742,0.985072,0.651176,0.653561,0.400827,0.668184,0.901398,0.346233,0.530739,0.92042,0.509554,0.355752,0.31314,0.50851,0.318371,0.956173,0.372372,0.703373,0.17147,0.14737,0.446832,0.700375,0.571306,0.544594,0.303289,0.658847,0.586692,0.0777569,0.0197146,0.900878,0.0501297,0.267452,0.267813,0.144464,0.000333428,0.637015,0.730606,0.162721,0.640895,0.515661,0.317401,0.284958,0.776403,0.454042,0.672583,0.187307,0.598728,0.161408,0.781632,0.0969223,0.459254,0.704685,0.192401,0.10707,0.512923,0.00868756,0.506924,0.584959,0.196873,0.984897,0.63898,0.960896,0.364608,0.470417,0.484084,0.054198,0.154832,0.21976,0.607889,0.302262,0.499523,0.484757,0.668281,0.426283,0.500771,0.516373,0.153048,0.170413,0.240133,0.106405,0.0537723,0.670231,0.905182,0.208976,0.501147,0.577626,0.0502789,0.709825,0.157761,0.990589,0.532156,0.618487,0.446249,0.743208,0.0907956,0.233073,0.347592,0.00853646,0.600434,0.316352,0.103232,0.680001,0.109503,0.805723,0.0398683,0.920505,0.444676,0.392257,0.289097,0.265024,0.27738,0.13424,0.649665,0.267228,0.987457,0.926967,0.652794,0.496918,0.521146,0.623578,0.183521,0.810558,0.816109,0.1759,0.921106,0.253648,0.883129,0.202038,0.647199,0.565767,0.679767,0.212942,0.329607,0.286573,0.119979,0.550033,0.452426,0.0428703,0.625333,0.299431,0.240985,0.0351217,0.195976,0.642008,0.569384,0.869658,0.814377,0.393075,0.466493,0.115624,0.527042,0.763393,0.0249364,0.386257,0.873106,0.899911,0.0973918,0.481361,0.350426,0.627699,0.079354,0.466312,0.542644,0.582291,0.522759,0.803041,0.629821,0.23636,0.942567,0.384355,0.0812113,0.90251,0.47361,0.433855,0.549406,0.838593,0.916838,0.475675,0.278524,0.689497,0.45026,0.559755,0.509449,0.812542,0.532276,0.159315,0.911225,0.847029,0.397625,0.624494,0.957602,0.700826,0.0742219,0.722743,0.012174,0.419457,0.463631,0.277002,0.113739,0.98243,0.705422,0.458766,0.149058,0.73327,0.185222,0.948958,0.0612002,0.3188,0.504613,0.252853,0.875062,0.293722,0.745012,0.230382,0.0891589,0.65299,0.247387,0.386191,0.424455,0.492757,0.0759497,0.937631,0.273328,0.82563,0.982559,0.486067,0.742437,0.758051,0.442984,0.364982,0.618239,0.218306,0.833641,0.313537,0.743629,0.274696,0.798603,0.0724336,0.935225,0.913794,0.328312,0.261588,0.846576,0.194083,0.859446,0.291971,0.113331,0.776924,0.678516,0.744683,0.445104,0.0534312,0.146877,0.364878,0.358773,0.983211,0.443262,0.335576,0.68757,0.345346,0.940063,0.0983753,0.701305,0.901147,0.173699,0.373083,0.44617,0.822264,0.390602,0.975577,0.489366,0.286656,0.877981,0.54761,0.292997,0.230736,0.722277,0.257349,0.468164,0.71499,0.0198069,0.450878,0.0320879,0.978076,0.289677,0.689576,0.979982,0.453278,0.204662,0.576117,0.402266,0.612795,0.538479,0.836017,0.56754,0.60419,0.367565,0.605043,0.461154,0.281009,0.719894,0.873587,0.198696,0.454319,0.427942,0.251042,0.914662,0.439588,0.521212,0.749956,0.59457,0.113,0.522933,0.710871,0.448822,0.93118,0.913346,0.800529,0.493724,0.55881,0.4092,0.798088,0.933098,0.985956,0.0367233,0.993327,0.327743,0.861365,0.596167,0.318049,0.993588,0.468571,0.404063,0.633278,0.761629,0.159911,0.797859,0.753569,0.357966,0.0383777,0.332392,0.273574,0.759705,0.486398,0.76616,0.532261,0.716571,0.887176,0.666941,0.972363,0.0872983,0.514788,0.606368,0.797211,0.667961,0.0152842,0.643743,0.895864,0.368664,0.523726,0.0113851,0.554229,0.0116411,0.356227,0.0855444,0.597397,0.150021,0.0438989,0.45239,0.621014,0.00535959,0.653496,0.226155,0.575674,0.84241,0.117811,0.955095,0.777316,0.490773,0.157214,0.329772,0.512217,0.135811,0.11504,0.186103,0.196673,0.0283308,0.64254,0.747461,0.135818,0.857137,0.670217,0.721959,0.860045,|0.0563675,0.940812,0.205746,0.250606,0.268437,0.411951,0.729897,0.733163,0.48703,0.714359,0.198594,0.970174,0.847462,0.777811,0.183633,0.326179,0.106065,0.417161,0.946266,0.282799,0.921957,0.594668,0.490222,0.908951,0.769261,0.0751031,0.965285,0.110463,0.758023,0.653443,0.100698,0.0989003,0.925365,0.768224,0.767688,0.891032,0.318848,0.143288,0.4334,0.284014,0.0350921,0.0195942,0.98282,0.512298,0.271027,0.217983,0.520986,0.312165,0.786307,0.628111,0.60872,0.474599,0.472771,0.00203747,0.75063,0.322469,0.67039,0.283617,0.900873,0.104801,0.0993176,0.510235,0.159334,0.733015,0.214064,0.089609,0.837525,0.60714,0.838421,0.703197,0.689432,0.141007,0.0557055,0.951272,0.436398,0.413336,0.733881,0.462852,0.228853,0.8479,0.467492,0.0552433,0.779597,0.413143,0.89384,0.074127,0.55637,0.984822,0.840403,0.393948,0.332146,0.377947,0.74469,0.410178,0.322043,0.537157,0.806263,0.82151,0.131145,0.0539843,0.0352987,0.939054,0.383401,0.0364766,0.88942,0.162922,0.310621,0.35462,0.162438,0.82808,0.347917,0.807682,0.521307,0.308028,0.750256,0.972146,0.567913,0.943017,0.347048,0.461768,0.828866,0.63212,0.811357,0.49997,0.919739,0.804771,0.689819,0.761066,0.232102,0.221233,0.00976646,0.313393,0.800362,0.50936,0.941009,0.574324,0.678232,0.877256,0.599026,0.405612,0.672529,0.869451,0.25021,0.511769,0.380279,0.889266,0.720883,0.983233,0.415582,0.72894,0.244627,0.145977,0.684734,0.358233,0.669059,0.0281978,0.0653625,0.240684,0.748282,0.175226,0.250754,0.128169,0.238883,0.440505,0.760091,0.0540606,0.0248782,0.414756,0.984227,0.874147,0.0958217,0.667714,0.467887,0.175089,0.145989,0.279208,0.961894,0.970839,0.184665,0.596182,0.986113,0.0887904,0.667361,0.179366,0.88761,0.402354,0.208421,0.0291858,0.0415705,0.422949,0.355426,0.672123,0.249575,0.209364,0.428068,0.40023,0.613347,0.10816,0.761098,0.56976,0.965536,0.769941,0.196644,0.55748,0.599048,0.61358,0.205277,0.364344,0.572083,0.773425,0.787037,0.0815689,0.126752,0.0422396,0.413431,0.48554,0.433268,0.63321,0.240314,0.371386,0.778215,0.473353,0.769322,0.322221,0.650223,0.950178,0.544711,0.0933973,0.354424,0.155742,0.149949,0.0539989,0.854194,0.826906,0.910422,0.427404,0.0936013,0.168143,0.767937,0.562678,0.507684,0.794392,0.460176,0.657068,0.122318,0.663029,0.597302,0.245321,0.936118,0.233391,0.647262,0.199797,0.619093,0.914161,0.714094,0.791502,0.232285,0.608787,0.473177,0.0342124,0.7991,0.81463,0.316086,0.0266207,0.763842,0.211491,0.0391244,0.657886,0.227876,0.939419,0.417777,0.0688655,0.721052,0.861247,0.995384,0.219451,0.853367,0.585499,0.152027,0.264067,0.240768,0.295944,0.429216,0.112152,0.894724,0.230789,0.0953462,0.867085,0.910835,0.401231,0.776272,0.113454,0.785638,0.497237,0.0568938,0.286532,0.0638319,0.154993,0.982022,0.625844,0.352756,0.549709,0.0521135,0.0476846,0.0401937,0.361807,0.480761,0.559156,0.878763,0.0317115,0.175401,0.730972,0.32863,0.986015,0.0508918,0.565303,0.364308,0.0202491,0.901258,0.853475,0.231728,0.986529,0.342227,0.769249,0.648739,0.109134,0.859434,0.574339,0.320999,0.653074,0.853049,0.860363,0.104245,0.467453,0.995733,0.934281,0.644497,0.594684,0.251526,0.649524,0.615155,0.146118,0.425855,0.0935255,0.0620362,0.908819,0.741272,0.408415,0.071004,0.350811,0.640084,0.994137,0.23886,0.441402,0.166606,0.645931,0.568452,0.531616,0.344516,0.769424,0.0355571,0.665183,0.364745,0.0535609,0.147307,0.622538,0.167578,0.0886328,0.703539,0.667103,0.75074,0.759355,0.840801,0.364058,0.873017,0.274042,0.671483,0.0325328,0.153168,0.678665,0.424509,0.393453,0.605597,0.101306,0.893016,0.668565,0.438728,0.241683,0.121105,0.979301,0.997842,0.295469,0.102241,0.633127,0.496286,0.0220821,0.625455,0.962314,0.863867,0.44658,0.233684,0.535509,0.192488,0.648185,0.390885,0.0673766,0.218024,0.322669,0.353341,0.82862,0.363759,0.878546,0.188289,0.856391,0.578991,0.606873,0.52861,0.3277,0.0213244,0.465863,0.554573,0.538056,0.889819,0.673593,0.660691,0.635662,0.204598,0.651711,0.0036909,0.888198,0.77867,0.376653,0.77945,0.946725,0.830853,0.761661,0.928172,0.294897,0.338052,0.039062,0.767737,0.623996,0.0243254,0.324628,0.894899,0.771071,0.212475,0.738752,0.731075,0.581677,0.13415,0.926929,0.4095,0.0141339,0.526185,0.135172,0.65127,0.207049,0.547976,0.982626,0.369729,0.421829,0.814483,0.873896,0.473478,0.0898706,0.875098,0.789276,0.482404,0.365789,0.577968,0.600528,0.487788,0.688652,0.735064,0.976998,0.813154,0.473839,0.314775,0.609923,0.685482,0.24549,0.53312,0.0849586,0.659053,0.80081,0.82226,0.911988,0.892256,0.903662,0.371906,0.432268,0.888855,0.240389,0.734063,0.293083,0.675097,0.61672,0.566551,0.0858818,0.619708,0.973134,0.666867,0.586003,0.998655,0.723779,0.40886,0.765968,0.22917,0.29629,0.760477,0.856198,0.869568,0.183871,0.211023,0.745183,0.973304,0.77894,0.686417,0.822637,0.47963,0.790366,0.678022,0.245336,0.946053,0.868148,0.427598,0.774851,0.668376,0.466729,0.887707,0.0182911,0.0247753,0.138951,0.391343,0.352223,0.484363,0.843038,0.537768,0.753992,0.247445,0.929021,0.511077,0.357213,0.224021,0.687863,0.004893,0.216188,0.252168,0.656486,0.0874097,0.561117,0.926762,0.799068,0.473078,0.399471,0.12113,0.831902,0.577046,0.328285,0.605928,0.898746,0.64838,0.0305498,0.893965,0.653211,0.969367,0.715236,0.488779,0.122844,0.238811,0.169169,0.59476,0.958765,0.484057,0.56199,0.121455,0.580032,0.76469,0.787868,0.804873,0.272338,0.324205,0.45895,0.44391,0.658102,0.0688354,0.392164,0.510348,0.360664,0.503876,0.621567,0.76599,0.0183132,0.772759,0.795068,0.849448,0.68005,0.214364,0.453306,0.610471,0.680139,0.966582,0.744134,0.682125,0.117003,0.703633,0.910785,0.775571,0.259341,0.665182,0.270862,0.922409,0.50988,0.610772,0.831198,0.705583,0.820273,0.00531501,0.658763,0.911514,0.413071,0.377181,0.508696,0.193731,0.8126,0.339667,0.852301,0.930053,0.169671,0.706921,0.90221,0.689027,0.446014,0.705418,0.377764,0.679853,0.572487,0.975467,0.769392,0.626528,0.809507,0.207189,0.03979,0.869517,0.194279,0.713096,0.538333,0.267909,0.679005,0.530297,0.323996,0.248758,0.920502,0.671507,0.160304,0.594665,0.0108961,0.983217,0.759315,0.562006,0.61257,0.630664,0.431981,0.0499998,0.457143,0.808381,0.109039,0.531936,0.945791,0.229181,0.144338,0.46782,0.360166,0.885318,0.834499,0.316204,0.0271814,0.948481,0.776507,0.546974,0.228684,0.968842,0.0272872,0.841022,0.17274,0.622654,0.0494316,0.783921,0.448041,0.919751,0.638596,0.450082,0.348778,0.381996,0.869413,0.210496,0.64947,0.944291,0.247562,0.77969,0.960478,0.211654,0.632646,0.373095,0.817983,0.569604,0.943921,0.70582,0.80712,0.73641,0.368236,0.749492,0.313694,0.301845,0.678044,0.0139225,0.482466,0.231847,0.542966,0.0373061,0.414255,0.774584,0.101709,0.230109,0.65381,0.1125,0.627697,0.279107,0.988114,0.810187,0.185503,0.641129,0.327315,0.555861,0.97613,0.0913341,0.631129,0.540249,0.209366,0.796016,0.92223,0.839423,0.980915,0.364239,0.348317,0.282857,0.587578,0.268998,0.120981,0.873595,0.368905,0.851836,0.993118,0.774433,0.950684,0.280587,0.633223,0.184366,0.844159,0.381474,0.399892,0.484011,0.657344,0.231542,0.335491,0.0508046,0.855604,0.419724,0.388102,0.71113,0.452214,0.682853,0.606005,0.679947,0.0605052,0.836362,0.616885,0.500465,0.0996103,0.473552,0.63046,0.50715,0.974234,0.644788,0.659231,0.99262,0.240662,0.215253,0.0555292,0.745761,0.473183,0.735819,0.166447,0.863822,0.3357,0.0323495,0.126468,0.457772,0.373674,0.87814,0.80356,0.467939,0.509394,0.0796705,0.692733,0.979073,0.522778,0.398019,0.441375,0.980199,0.133817,0.895005,0.80652,0.962699,0.357336,0.660364,0.154453,0.674028,0.718214,0.987848,0.309264,0.794237,0.653158,0.324575,0.0394468,0.989809,0.0821263,0.0697787,0.75459,0.113716,0.883389,0.115779,0.823652,0.853607,0.268634,0.271427,0.62981,0.75923,0.378933,0.940281,0.510961,0.45757,0.205602,0.189399,0.0618565,0.428306,0.321204,0.71319,0.391618,0.0613111,0.898443,0.197979,0.202873,0.981642,0.862862,0.168976,0.400911,0.100431,0.981966,0.592579,0.515339,0.336023,0.937822,0.844105,0.184005,0.52072,0.675832,0.799627,0.51204,0.953093,0.853445,0.817165,0.66662,0.172778,0.216076,0.479356,0.334191,0.957743,0.906145,0.852498,0.736152,0.10186,0.868643,0.243536,0.425618,0.15265,0.160147,0.0125614,0.617377,0.829867,0.894232,0.456301,0.933134,0.443811,0.259896,0.375211,0.204712,0.618294,0.794253,0.769706,0.288345,0.533788,0.216119,0.76497,0.993649,0.999431,0.649403,0.357732,0.85481,0.72308,0.877436,0.294612,0.385548,0.0174614,0.318421,0.532278,0.524289,0.221433,0.216706,0.543769,0.0473537,0.972945,0.680617,0.448657,0.862162,0.880308,0.372816,0.626993,0.59295,0.92105,0.832516,0.763884,0.119203,0.337789,0.969802,0.356748,0.859744,0.770661,0.674769,0.715326,0.140451,0.993131,0.0760704,0.144785,0.829354,0.413486,0.881421,0.483148,0.112119,0.037595,0.893477,0.201954,0.869383,0.624772,0.954455,0.584403,0.946147,0.743397,0.97646,0.591055,0.784975,0.170681,0.0325671,0.214482,0.0180773,0.734571,0.0471195,0.461263,0.203778,0.325742,0.921959,0.904327,0.0602067,0.361089,0.543452,0.338992,0.225799,0.492433,0.734546,0.151172,0.483065,0.752978,0.81607,0.162509,0.715234,0.975315,0.0894699,0.49674,0.774532,0.704968,0.201401,0.818994,0.282982,0.15069,0.167532,0.119462,0.334014,0.326699,0.767033,|0.114195,0.0117755,0.63392,0.0435877,0.549542,0.735317,0.791125,0.0294671,0.0288274,0.791995,0.504082,0.87813,0.806247,0.119554,0.179807,0.829173,0.658216,0.0784299,0.809353,0.786211,0.341005,0.848566,0.723971,0.541531,0.890225,0.657034,0.642556,0.48444,0.541058,0.924199,0.72302,0.288613,0.298158,0.138313,0.101951,0.082884,0.861595,0.431534,0.659682,0.523635,0.565989,0.887148,0.646472,0.721563,0.536803,0.639078,0.529478,0.20418,0.925927,0.175979,0.477174,0.531682,0.319095,0.699271,0.312496,0.296245,0.276942,0.175568,0.168819,0.955855,0.122498,0.796107,0.485481,0.252503,0.291532,0.141798,0.0992524,0.409755,0.647419,0.624784,0.41865,0.829447,0.797187,0.453004,0.0361242,0.689161,0.450919,0.813859,0.334074,0.0913931,0.114077,0.361742,0.380947,0.539246,0.661803,0.758315,0.225266,0.528242,0.0639686,0.383512,0.738875,0.452543,0.712186,0.20978,0.715584,0.110169,0.848183,0.495697,0.414395,0.652841,0.129903,0.736131,0.781974,0.0488921,0.668306,0.560503,0.769673,0.0798661,0.686976,0.429775,0.339523,0.14149,0.279639,0.720981,0.324624,0.0385731,0.802902,0.187059,0.497507,0.625079,0.329795,0.338709,0.420279,0.482526,0.149754,0.589699,0.232172,0.155774,0.0790477,0.527755,0.372821,0.429938,0.766872,0.863325,0.467366,0.365143,0.748291,0.0943877,0.516033,0.267411,0.892711,0.0842395,0.262987,0.935326,0.935068,0.301225,0.448663,0.711069,0.0811377,0.232932,0.560702,0.440911,0.973867,0.542174,0.226983,0.189183,0.521591,0.858662,0.585034,0.199829,0.491415,0.496961,0.552041,0.0436931,0.962341,0.950637,0.924052,0.444593,0.148443,0.382867,0.608089,0.532507,0.456068,0.902281,0.129229,0.559423,0.300006,0.714946,0.0411345,0.677009,0.888474,0.645196,0.452577,0.106365,0.446439,0.317734,0.0174097,0.0644068,0.347541,0.747525,0.210273,0.172426,0.263015,0.246869,0.406744,0.82827,0.970493,0.136708,0.922359,0.551919,0.250229,0.205175,0.861277,0.99118,0.358785,0.313236,0.602786,0.626319,0.855697,0.260836,0.847756,0.590754,0.0678277,0.525347,0.708142,0.0850332,0.650863,0.769173,0.263057,0.278897,0.239189,0.301578,0.483226,0.215162,0.313112,0.0737686,0.279904,0.664236,0.977389,0.0730902,0.0357718,0.578973,0.709885,0.263894,0.323839,0.759303,0.196411,0.65489,0.974709,0.600919,0.543071,0.790447,0.665542,0.12646,0.511227,0.421381,0.890582,0.952108,0.715015,0.145481,0.869149,0.490195,0.58527,0.828249,0.966816,0.119433,0.206203,0.261414,0.47891,0.28465,0.868026,0.220396,0.252617,0.39117,0.792396,0.991788,0.2608,0.552361,0.180152,0.390793,0.103586,0.410742,0.502775,0.0642834,0.899804,0.40263,0.993289,0.544353,0.0419027,0.994193,0.0878082,0.417542,0.421514,0.495946,0.67348,0.825604,0.884099,0.897792,0.369615,0.60484,0.179602,0.431365,0.387814,0.0814174,0.34824,0.794582,0.511014,0.662169,0.680243,0.264026,0.362673,0.13839,0.448081,0.705556,0.168347,0.796506,0.608887,0.653783,0.842407,0.127121,0.797445,0.944729,0.501442,0.29422,0.095439,0.405329,0.910628,0.130727,0.135294,0.974835,0.782273,0.950412,0.760884,0.0980382,0.13155,0.357976,0.213267,0.397304,0.639182,0.78834,0.369135,0.811948,0.189009,0.590936,0.375182,0.0672753,0.600223,0.265083,0.814071,0.136999,0.216123,0.652897,0.804526,0.176564,0.234979,0.251989,0.574336,0.114474,0.189236,0.603581,0.0554878,0.59398,0.604517,0.89416,0.236304,0.747316,0.494663,0.488049,0.351568,0.982494,0.834218,0.650298,0.489583,0.750645,0.164188,0.013467,0.092446,0.111777,0.356414,0.738863,0.351515,0.0311248,0.344966,0.523367,0.823076,0.173378,0.11376,0.412481,0.780331,0.792861,0.390476,0.870739,0.440446,0.544051,0.801585,0.0429209,0.900895,0.190794,0.779402,0.431597,0.178605,0.0620903,0.223223,0.110891,0.844552,0.176642,0.476655,0.683038,0.601992,0.851293,0.567804,0.954325,0.859511,0.488949,0.776898,0.438497,0.990413,0.649973,0.978327,0.33081,0.504242,0.663072,0.678682,0.228688,0.759627,0.881955,0.0314069,0.0295735,0.284378,0.919607,0.328449,0.855907,0.100679,0.916278,0.776682,0.847283,0.510755,0.10326,0.731655,0.211202,0.453503,0.430103,0.850317,0.677052,0.257982,0.469345,0.840679,0.298348,0.59256,0.48394,0.936617,0.29255,0.805456,0.529357,0.00791776,0.219636,0.1976,0.658128,0.201279,0.281641,0.079379,0.980468,0.780173,0.0936035,0.800825,0.412553,0.9319,0.948113,0.29613,0.913291,0.175578,0.56339,0.197889,0.30035,0.584381,0.453833,0.502647,0.639334,0.679938,0.210994,0.792823,0.0531157,0.274916,0.613597,0.865397,0.568854,0.52898,0.28766,0.0671595,0.182955,0.80291,0.0151684,0.915321,0.0878453,0.172622,0.736869,0.889206,0.36878,0.606811,0.577298,0.439084,0.012655,0.637024,0.238634,0.527678,0.471512,0.340766,0.329626,0.918196,0.665497,0.78324,0.384584,0.247992,0.774546,0.753611,0.781888,0.870485,0.272889,0.286204,0.234403,0.781964,0.766737,0.829978,0.723877,0.800817,0.592509,0.436951,0.748813,0.723817,0.552637,0.814376,0.763917,0.813437,0.86219,0.987429,0.747419,0.309516,0.106364,0.152684,0.162781,0.102216,0.820217,0.137482,0.472043,0.478267,0.988439,0.347378,0.221057,0.0204881,0.57762,0.265216,0.107044,0.678744,0.693289,0.692877,0.456433,0.79549,0.091073,0.825871,0.503909,0.360036,0.611611,0.681068,0.840602,0.340572,0.820132,0.354123,0.769634,0.840665,0.938039,0.508942,0.919485,0.207294,0.77515,0.588559,0.488568,0.260526,0.076476,0.685851,0.424308,0.745509,0.873987,0.126334,0.442812,0.330212,0.298655,0.00827253,0.140251,0.689835,0.921966,0.527114,0.640333,0.0965714,0.286462,0.685965,0.369148,0.277249,0.61465,0.183522,0.172048,0.00776923,0.618758,0.0447763,0.271876,0.914055,0.321644,0.818263,0.0224474,0.797081,0.63962,0.394587,0.0449153,0.889135,0.958356,0.538186,0.0197271,0.993599,0.775243,0.582239,0.16754,0.992815,0.839963,0.266501,0.621411,0.0740449,0.608935,0.431207,0.258097,0.545934,0.0372295,0.0768439,0.315098,0.442186,0.0729154,0.2171,0.417362,0.429931,0.113329,0.543268,0.665258,0.428165,0.7275,0.164224,0.98272,0.282444,0.373094,0.680091,0.545517,0.801453,0.530855,0.430374,0.984398,0.875114,0.587965,0.338544,0.540933,0.767406,0.712471,0.587335,0.810777,0.334876,0.351494,0.0552452,0.41593,0.980634,0.541195,0.937199,0.493479,0.573246,0.221322,0.512398,0.129497,0.909339,0.0434245,0.191243,0.146667,0.525042,0.00015372,0.917056,0.426678,0.065221,0.683603,0.935474,0.380621,0.505252,0.249809,0.00301576,0.523105,0.929707,0.20528,0.0670364,0.657897,0.889017,0.546213,0.332987,0.642629,0.673698,0.388715,0.6834,0.753683,0.689837,0.729242,0.127254,0.566411,0.750118,0.546619,0.240217,0.464905,0.622999,0.948928,0.961221,0.91773,0.665956,0.354552,0.0687817,0.823871,0.728752,0.0718662,0.679481,0.620828,0.702138,0.0631605,0.242539,0.371749,0.288973,0.780011,0.371448,0.447631,0.588818,0.945204,0.597302,0.78585,0.919121,0.507323,0.948339,0.886783,0.560785,0.3404,0.598058,0.813998,0.810278,0.524017,0.557014,0.224925,0.0219844,0.728773,0.628956,0.643739,0.393141,0.891719,0.472457,0.063077,0.805344,0.841938,0.547794,0.935364,0.0295436,0.855858,0.432563,0.578662,0.573224,0.370142,0.453856,0.375713,0.821441,0.976071,0.395446,0.567002,0.500952,0.25696,0.692369,0.492872,0.230929,0.313702,0.556904,0.300023,0.755322,0.799255,0.652322,0.626921,0.415968,0.923335,0.286857,0.11803,0.0672156,0.33747,0.761243,0.780803,0.73695,0.289111,0.166463,0.827593,0.184129,0.87243,0.109583,0.437558,0.19397,0.95519,0.779443,0.779858,0.154844,0.492104,0.353793,0.874103,0.508255,0.983334,0.418044,0.993308,0.0572723,0.997934,0.548654,0.49428,0.763789,0.958274,0.536353,0.133093,0.162323,0.156111,0.581121,0.0748204,0.00654662,0.0296212,0.305165,0.151376,0.730081,0.864509,0.144539,0.0079248,0.845419,0.675406,0.736045,0.77433,0.0220677,0.0703595,0.0663757,0.680745,0.0254506,0.774995,0.968254,0.346878,0.133184,0.829185,0.269388,0.769051,0.71509,0.0663293,0.650584,0.308556,0.234515,0.151515,0.588957,0.605424,0.894409,0.18983,0.061784,0.813729,0.020348,0.240823,0.200916,0.483828,0.0217516,0.721968,0.8652,0.0251048,0.500065,0.815172,0.825886,0.620463,0.227013,0.968119,0.929076,0.905311,0.807262,0.379017,0.00959611,0.968117,0.942664,0.580179,0.406889,0.919749,0.978908,0.616871,0.155841,0.478093,0.100627,0.574288,0.134868,0.166305,0.988082,0.330052,0.703625,0.0191794,0.495382,0.486775,0.572066,0.885673,0.924444,0.0773147,0.675611,0.720396,0.0689505,0.260345,0.043944,0.852387,0.43142,0.36072,0.320486,0.969064,0.0787944,0.166967,0.260213,0.689581,0.430736,0.748545,0.0729392,0.678382,0.519161,0.694955,0.907166,0.594835,0.252785,0.686055,0.257189,0.625661,0.842851,0.308807,0.901862,0.106845,0.609326,0.721914,0.934679,0.735135,0.264132,0.313795,0.273853,0.454725,0.401618,0.841089,0.27304,0.237561,0.627054,0.715296,0.12861,0.10288,0.951711,0.874806,0.126957,0.581294,0.895628,0.977226,0.855199,0.680144,0.700991,0.040108,0.980789,0.183686,0.203178,0.29538,0.178539,0.414467,0.410892,0.046478,0.105062,0.935718,0.108253,0.728475,0.370441,0.0246748,0.85441,0.920661,0.590379,0.521839,0.0790003,0.654298,0.845468,0.65506,0.0162372,0.501781,0.523395,0.20606,0.82333,0.326583,0.683066,0.325559,0.397709,0.61864,0.96103,0.0832225,0.59704,0.0289093,0.996317,0.740288,0.127271,0.0968712,0.0655862,0.135778,0.256174,0.297186,0.882502,0.262037,0.446234,0.680789,0.828778,0.484952,0.980026,0.389174,0.967194,0.980377,0.948752,0.424793,|0.55707,0.493726,0.0643526,0.467594,0.394252,0.954047,0.783082,0.953652,0.407239,0.0396734,0.0775726,0.993896,0.791002,0.0497479,0.881839,0.425128,0.350628,0.200848,0.57471,0.955581,0.5633,0.987872,0.408994,0.477534,0.427076,0.102567,0.0480725,0.575567,0.997204,0.922272,0.0343569,0.541145,0.530577,0.776724,0.954959,0.390098,0.539355,0.688921,0.370138,0.0425573,0.377429,0.463038,0.510325,0.24144,0.204163,0.65766,0.649697,0.368782,0.961799,0.949257,0.0603616,0.644177,0.587329,0.750157,0.791186,0.548011,0.0313491,0.983702,0.628831,0.942231,0.993842,0.61436,0.188893,0.181494,0.959602,0.850094,0.381966,0.808344,0.880086,0.155233,0.322183,0.823019,0.342185,0.945853,0.46933,0.0883134,0.788398,0.365759,0.261093,0.124608,0.230448,0.368661,0.582625,0.682429,0.186481,0.991365,0.755374,0.615093,0.193302,0.41013,0.0842091,0.835098,0.756568,0.850786,0.582575,0.313708,0.966029,0.0450019,0.876788,0.0491071,0.760005,0.617037,0.0697488,0.470191,0.57788,0.419985,0.637348,0.562413,0.832958,0.870479,0.682531,0.113043,0.438939,0.0808492,0.345973,0.396543,0.827545,0.935686,0.210449,0.407754,0.426207,0.442454,0.399118,0.010147,0.603112,0.349581,0.968564,0.152755,0.277569,0.354737,0.6042,0.847572,0.721123,0.15037,0.499949,0.45406,0.126635,0.352987,0.807087,0.0322369,0.991323,0.0844832,0.439613,0.584273,0.239511,0.0496178,0.627458,0.189261,0.01788,0.157028,0.747548,0.39135,0.130474,0.56784,0.659198,0.982611,0.713585,0.839435,0.390978,0.383109,0.391924,0.701613,0.501693,0.817018,0.37173,0.446812,0.153537,0.136755,0.0148695,0.121663,0.921179,0.768987,0.895358,0.941477,0.874901,0.06641,0.485985,0.272102,0.793888,0.306606,0.128593,0.92803,0.885571,0.169541,0.48107,0.638782,0.622142,0.89481,0.771702,0.500167,0.415841,0.972118,0.384218,0.508441,0.297859,0.307003,0.0459259,0.827867,0.752745,0.986637,0.472323,0.840935,0.563093,0.988413,0.126382,0.567146,0.585386,0.506659,0.904463,0.189501,0.620295,0.164921,0.573011,0.19095,0.420466,0.44226,0.267388,0.938162,0.133511,0.00336719,0.0730584,0.732498,0.207848,0.40982,0.150761,0.96855,0.362721,0.691758,0.417096,0.462943,0.66756,0.761899,0.957756,0.23213,0.92998,0.362814,0.320897,0.604149,0.460597,0.40438,0.437117,0.911368,0.740762,0.34858,0.717394,0.482274,0.808567,0.95573,0.498301,0.947158,0.199522,0.258891,0.684984,0.2011,0.970467,0.827938,0.198283,0.327357,0.818397,0.513153,0.836105,0.470526,0.113482,0.542505,0.0328273,0.910436,0.370553,0.545596,0.500841,0.986719,0.424588,0.477488,0.0836008,0.621974,0.620832,0.130207,0.543182,0.88436,0.974503,0.541787,0.829663,0.415683,0.865367,0.654168,0.997408,0.991234,0.157065,0.783741,0.177393,0.168231,0.141565,0.595007,0.950604,0.640651,0.214904,0.897901,0.94799,0.55838,0.058622,0.428123,0.870284,0.515074,0.749376,0.851894,0.0494612,0.573583,0.0648598,0.0483299,0.778484,0.621868,0.29946,0.863879,0.697308,0.742438,0.274276,0.824047,0.116291,0.467548,0.283277,0.394188,0.53915,0.509643,0.0383942,0.0971841,0.163733,0.860425,0.917799,0.0813206,0.562163,0.161931,0.904402,0.887893,0.512714,0.0929679,0.711521,0.513801,0.951689,0.631511,0.677278,0.833261,0.292383,0.2871,0.144887,0.734829,0.942624,0.294708,0.00570595,0.385772,0.58906,0.17157,0.683535,0.1019,0.265763,0.311816,0.11682,0.965316,0.178437,0.361582,0.271526,0.708312,0.628545,0.492752,0.266569,0.140305,0.470678,0.966776,0.964961,0.378053,0.726337,0.910603,0.980773,0.51388,0.866556,0.599184,0.425824,0.384324,0.254803,0.520921,0.298728,0.0463744,0.0817163,0.641924,0.360884,0.369654,0.111315,0.631062,0.0197939,0.885631,0.239043,0.291456,0.969959,0.0748771,0.818944,0.374231,0.898794,0.75638,0.818043,0.114968,0.666173,0.214879,0.427528,0.126437,0.0723231,0.806523,0.938698,0.922208,0.521107,0.842308,0.54551,0.806073,0.074132,0.36371,0.625162,0.104159,0.338017,0.680825,0.665227,0.172241,0.962574,0.000296772,0.819192,0.724476,0.345061,0.221597,0.921225,0.239369,0.0354418,0.691776,0.433272,0.722093,0.00317824,0.179144,0.150471,0.973656,0.370127,0.475043,0.927201,0.387826,0.338681,0.492617,0.993407,0.00441629,0.0552924,0.161687,0.0631275,0.444621,0.347932,0.149854,0.498079,0.113442,0.535749,0.112917,0.245981,0.496271,0.782899,0.191195,0.820503,0.231887,0.500236,0.593395,0.865761,0.335305,0.387962,0.942938,0.341541,0.886058,0.338303,0.145398,0.193615,0.00479144,0.294211,0.218005,0.684475,0.996206,0.361893,0.3264,0.13629,0.223627,0.314058,0.885488,0.0974219,0.0726675,0.0127363,0.597432,0.366366,0.597477,0.431965,0.833545,0.810971,0.71737,0.139572,0.883127,0.686063,0.118418,0.967195,0.206709,0.169762,0.0379124,0.573601,0.751676,0.00335211,0.053495,0.949754,0.177832,0.157028,0.736474,0.95681,0.225185,0.439709,0.957567,0.542907,0.396653,0.24915,0.152274,0.112005,0.504291,0.435631,0.662148,0.507118,0.344931,0.0222991,0.536258,0.512054,0.847747,0.233445,0.386713,0.735174,0.567529,0.41912,0.491376,0.0688896,0.57942,0.821198,0.78013,0.956388,0.0402418,0.395348,0.549491,0.0409472,0.638749,0.566288,0.818924,0.571039,0.878473,0.325577,0.870928,0.215341,0.130429,0.0987052,0.370745,0.936949,0.640929,0.810952,0.750992,0.0847439,0.428475,0.668824,0.982944,0.0692817,0.77304,0.668288,0.215786,0.958558,0.907674,0.725612,0.722561,0.157838,0.227619,0.976233,0.415798,0.450538,0.194899,0.931265,0.676909,0.154505,0.0858039,0.59284,0.98893,0.603785,0.942169,0.423039,0.630436,0.45116,0.266146,0.783596,0.181054,0.745827,0.326346,0.947558,0.530941,0.494804,0.401271,0.777378,0.830938,0.587106,0.227571,0.63409,0.311799,0.930468,0.193804,0.48668,0.549545,0.287473,0.482888,0.10841,0.914216,0.613257,0.474386,0.699518,0.428681,0.126712,0.18713,0.823296,0.970491,0.251065,0.825819,0.525809,0.866631,0.823378,0.0878561,0.68903,0.688506,0.0429876,0.0158919,0.910583,0.401472,0.622174,0.721454,0.60701,0.633959,0.741243,0.677949,0.676804,0.134398,0.531842,0.101609,0.393494,0.146384,0.2225,0.894404,0.0148207,0.610064,0.0267651,0.879758,0.951409,0.0676982,0.302876,0.907877,0.754435,0.156776,0.857307,0.420077,0.583264,0.625755,0.725212,0.0705111,0.10529,0.954522,0.522699,0.410275,0.643168,0.841556,0.54774,0.780709,0.287108,0.261186,0.925402,0.0087527,0.707588,0.953616,0.705063,0.565644,0.898217,0.551893,0.814647,0.250836,0.0207615,0.727111,0.601433,0.121503,0.132981,0.632843,0.418561,0.922179,0.243687,0.635021,0.604258,0.0688342,0.17,0.908307,0.536291,0.402854,0.342287,0.925883,0.739604,0.743256,0.794587,0.786909,0.481932,0.715248,0.0792816,0.831522,0.180205,0.817392,0.755995,0.0370243,0.580023,0.613674,0.710687,0.317792,0.813106,0.108107,0.701723,0.70058,0.165826,0.88391,0.849634,0.204761,0.135352,0.965776,0.10994,0.723688,0.661428,0.612767,0.27844,0.744766,0.277131,0.614886,0.662318,0.312334,0.511472,0.592945,0.210085,0.153877,0.422929,0.548937,0.0405545,0.128649,0.562155,0.0534227,0.957246,0.443635,0.462013,0.640628,0.641241,0.903634,0.564365,0.37654,0.99104,0.767629,0.573982,0.276015,0.473722,0.860026,0.0560917,0.514275,0.615196,0.680628,0.418755,0.677118,0.379477,0.298353,0.0202807,0.682974,0.243492,0.0691419,0.361845,0.437162,0.0138856,0.365578,0.148684,0.179393,0.912494,0.766605,0.580372,0.393484,0.708491,0.311156,0.734842,0.624425,0.796286,0.135213,0.0568514,0.111301,0.66637,0.37704,0.45501,0.997071,0.365717,0.325981,0.277141,0.788997,0.743196,0.476714,0.79578,0.149158,0.613388,0.199467,0.112528,0.483249,0.355555,0.350958,0.0879125,0.983585,0.226552,0.758099,0.540956,0.841699,0.518701,0.0755381,0.21461,0.518296,0.819919,0.532111,0.280884,0.539632,0.864922,0.140941,0.0044446,0.933958,0.318842,0.162023,0.293871,0.975363,0.972828,0.0858836,0.915264,0.927711,0.588539,0.800367,0.318341,0.884901,0.483031,0.804276,0.892328,0.699517,0.0380364,0.421746,0.858486,0.389088,0.797097,0.90739,0.169578,0.903373,0.376237,0.652677,0.142246,0.372029,0.322056,0.782536,0.317616,0.680109,0.0376105,0.280638,0.733849,0.476897,0.154479,0.384978,0.624883,0.723809,0.405892,0.776618,0.49367,0.311887,0.504434,0.845417,0.615467,0.375624,0.904122,0.306883,0.735095,0.327093,0.9491,0.245357,0.871786,0.434325,0.561519,0.748486,0.110311,0.327962,0.33051,0.215284,0.845905,0.529793,0.213207,0.39604,0.617772,0.0169818,0.275863,0.452697,0.248525,0.890257,0.816625,0.707945,0.848657,0.996611,0.2975,0.645509,0.997492,0.508073,0.566101,0.297661,0.0278345,0.196361,0.950321,0.0280064,0.0286579,0.623611,0.000721753,0.854763,0.876996,0.221786,0.0251285,0.0508399,0.174066,0.629964,0.497751,0.601114,0.0123174,0.564951,0.96615,0.722922,0.584962,0.367343,0.25264,0.576943,0.27269,0.181967,0.534335,0.756471,0.32959,0.0172642,0.659764,0.482746,0.0470344,0.074121,0.809996,0.24113,0.103833,0.946136,0.259813,0.339972,0.972095,0.798931,0.549193,0.0463699,0.948785,0.702802,0.706113,0.385513,0.0518752,0.41128,0.832598,0.0114043,0.880268,0.632679,0.388919,0.373097,0.396006,0.732121,0.946097,0.960374,0.805971,0.121267,0.677165,0.785353,0.146405,0.288101,0.894158,0.605816,0.20642,0.839708,0.395701,0.727911,0.506553,0.0360093,0.266683,0.633694,0.981303,0.0150025,0.432299,0.277404,0.967317,0.0613275,0.357904,0.0441951,0.786139,0.719692,0.982423,0.0864943,0.117815,0.722054,0.528275,0.128211,0.719135,0.193198,0.0765793,0.122963,0.997718,0.986093,|0.431299,0.00697678,0.875673,0.136361,0.124783,0.295525,0.033873,0.440022,0.278126,0.237907,0.824112,0.583306,0.954003,0.0801197,0.48608,0.902153,0.236542,0.866736,0.44322,0.667302,0.926629,0.923838,0.432585,0.607754,0.836726,0.673002,0.860245,0.400191,0.889112,0.196184,0.26817,0.314942,0.0504654,0.229864,0.293752,0.395922,0.594003,0.754443,0.351524,0.942716,0.165915,0.00317502,0.341029,0.26222,0.579399,0.524755,0.90292,0.796718,0.0884473,0.0960589,0.0200418,0.34148,0.299502,0.778619,0.407754,0.582399,0.320543,0.755539,0.680992,0.625814,0.195556,0.982658,0.330041,0.0591102,0.750206,0.895204,0.943022,0.4515,0.434102,0.513954,0.669085,0.627833,0.35983,0.0318344,0.06328,0.190961,0.763128,0.660921,0.248175,0.139438,0.478794,0.303917,0.225784,0.455073,0.456445,0.553759,0.168058,0.438094,0.061086,0.738074,0.885834,0.761428,0.230651,0.601639,0.0647361,0.809889,0.56759,0.283482,0.0865172,0.867213,0.247288,0.12058,0.971238,0.525101,0.842507,0.907224,0.247661,0.290263,0.0683548,0.684033,0.0461369,0.408509,0.0789925,0.789193,0.480868,0.511,0.0612891,0.923877,0.378292,0.0828985,0.888731,0.996161,0.399324,0.750917,0.330816,0.158546,0.314646,0.757805,0.991449,0.907342,0.72932,0.470619,0.0877742,0.509734,0.918209,0.129653,0.593449,0.0283172,0.467652,0.801135,0.459296,0.606902,0.0573599,0.002231,0.816873,0.43704,0.875505,0.378713,0.605594,0.497692,0.944645,0.28294,0.238616,0.977891,0.62618,0.941088,0.427581,0.410842,0.0759162,0.522099,0.53967,0.528541,0.117206,0.381088,0.983047,0.599667,0.0691213,0.459461,0.18718,0.928919,0.321892,0.784488,0.866726,0.61848,0.166796,0.137362,0.654719,0.885699,0.46374,0.849019,0.993507,0.584513,0.0633098,0.0551923,0.172064,0.519801,0.21992,0.763529,0.0616171,0.459104,0.935079,0.461416,0.085635,0.795896,0.93672,0.485997,0.828303,0.882775,0.791008,0.408153,0.198822,0.920889,0.70788,0.679826,0.214348,0.357238,0.742271,0.282882,0.884856,0.381118,0.13587,0.261515,0.0632542,0.303024,0.447794,0.486035,0.791454,0.345866,0.201895,0.738544,0.403442,0.0736771,0.35743,0.128728,0.617181,0.536852,0.472027,0.281568,0.270486,0.173423,0.321688,0.789314,0.422483,0.597091,0.0261714,0.0386847,0.507593,0.851901,0.640194,0.466856,0.407989,0.465046,0.610004,0.835467,0.0749607,0.444216,0.89031,0.445221,0.417646,0.920898,0.295958,0.745498,0.8528,0.523128,0.206786,0.0932545,0.316416,0.272327,0.731921,0.893098,0.545634,0.727431,0.502551,0.785749,0.681692,0.828139,0.944669,0.151598,0.310342,0.866234,0.949037,0.962506,0.271517,0.308711,0.00532138,0.471305,0.423723,0.711266,0.420427,0.96113,0.11217,0.780718,0.0302044,0.503326,0.853033,0.607957,0.654187,0.730308,0.102641,0.740565,0.907372,0.462344,0.761208,0.542378,0.131665,0.348392,0.549502,0.44556,0.858463,0.611525,0.873532,0.325924,0.0467938,0.674982,0.992275,0.888154,0.873256,0.809424,0.226611,0.0881199,0.208341,0.959194,0.593558,0.875676,0.432108,0.919708,0.335579,0.261108,0.805913,0.343861,0.843583,0.466125,0.629369,0.233064,0.718483,0.44054,0.0854955,0.936972,0.361476,0.166293,0.608926,0.933514,0.860207,0.327785,0.698174,0.938515,0.277609,0.383016,0.36055,0.514706,0.750282,0.305284,0.275641,0.298682,0.423446,0.89632,0.782845,0.591604,0.0534782,0.771474,0.896283,0.615162,0.759498,0.409288,0.658872,0.247675,0.323315,0.55021,0.576957,0.828227,0.759628,0.953189,0.679579,0.109225,0.180019,0.988103,0.20973,0.657067,0.140095,0.252953,0.933033,0.388768,0.36066,0.673473,0.353136,0.701282,0.642213,0.942818,0.405331,0.928414,0.818285,0.512768,0.569989,0.124625,0.482675,0.0371516,0.00105542,0.895151,0.55491,0.353745,0.718683,0.754885,0.912171,0.0563353,0.305949,0.613941,0.507388,0.415067,0.102977,0.266861,0.25666,0.828487,0.782782,0.725752,0.930213,0.5551,0.856654,0.0197477,0.50964,0.108647,0.110059,0.575633,0.435149,0.66857,0.232941,0.386341,0.595892,0.246461,0.954926,0.221034,0.731149,0.354296,0.915228,0.93242,0.147759,0.392525,0.284813,0.0527334,0.434542,0.169825,0.728257,0.882635,0.912143,0.20086,0.488902,0.363859,0.0625281,0.421536,0.456699,0.922524,0.680837,0.718804,0.675574,0.0192905,0.742467,0.186944,0.935389,0.391035,0.516287,0.60337,0.758403,0.382804,0.482624,0.779014,0.783456,0.914735,0.555971,0.647575,0.664106,0.0355877,0.983432,0.0231982,0.206407,0.323038,0.117989,0.488326,0.594756,0.231327,0.0903988,0.289365,0.981287,0.889261,0.281515,0.624059,0.758626,0.478538,0.722185,0.595211,0.383341,0.0415996,0.119508,0.461438,0.786641,0.64473,0.618993,0.642425,0.996205,0.0558377,0.710496,0.160282,0.685748,0.84891,0.81159,0.898009,0.918106,0.919666,0.42813,0.764498,0.644687,0.294212,0.992477,0.4412,0.847029,0.0230982,0.0327666,0.640842,0.88835,0.756669,0.776782,0.720221,0.895299,0.728686,0.626304,0.718385,0.333167,0.245037,0.903311,0.178636,0.53998,0.245369,0.0589476,0.628147,0.62007,0.661135,0.820803,0.520117,0.420195,0.566055,0.370559,0.380638,0.862429,0.493616,0.325136,0.78028,0.0738252,0.105579,0.653032,0.969855,0.972922,0.947911,0.839571,0.824256,0.750331,0.911943,0.643352,0.743191,0.751639,0.046236,0.871121,0.765688,0.995035,0.0211685,0.905967,0.833926,0.0646574,0.529887,0.750993,0.615981,0.323798,0.466575,0.46535,0.597512,0.326524,0.630667,0.832884,0.62762,0.504063,0.237724,0.181961,0.556578,0.779409,0.439624,0.288608,0.104791,0.893656,0.576074,0.434514,0.0436506,0.394258,0.289005,0.200931,0.0345008,0.281651,0.0377545,0.20423,0.236136,0.880119,0.992952,0.662162,0.548325,0.776144,0.472231,0.669218,0.418125,0.747576,0.35465,0.857166,0.762424,0.960583,0.592116,0.411571,0.382781,0.738641,0.806056,0.797922,0.187514,0.0648239,0.347278,0.0115227,0.928026,0.214643,0.560141,0.936932,0.792816,0.772611,0.0690877,0.265066,0.730681,0.677614,0.836622,0.607181,0.959347,0.159849,0.941333,0.202151,0.689038,0.900745,0.043364,0.00327069,0.564194,0.530461,0.362889,0.425564,0.109418,0.938991,0.179878,0.423526,0.972286,0.811314,0.942405,0.691497,0.0339198,0.224331,0.366935,0.020227,0.78522,0.213411,0.39567,0.28978,0.247641,0.460183,0.14297,0.0573329,0.789057,0.523113,0.431316,0.681478,0.567552,0.619227,0.286197,0.882383,0.213629,0.101134,0.903884,0.358694,0.353286,0.434282,0.353083,0.976469,0.912284,0.258858,0.235002,0.247177,0.125856,0.557557,0.99353,0.164325,0.450803,0.0572965,0.148701,0.0812147,0.427685,0.197367,0.0573031,0.512659,0.923077,0.0821909,0.635975,0.630618,0.788941,0.593328,0.906548,0.0452456,0.949939,0.425158,0.559905,0.660614,0.7454,0.955628,0.827586,0.402667,0.27468,0.311306,0.197473,0.7576,0.625775,0.0982371,0.520875,0.25706,0.902528,0.177518,0.232767,0.802851,0.0837539,0.327183,0.0120161,0.848023,0.299839,0.712409,0.768457,0.65811,0.498883,0.861847,0.294037,0.980604,0.566078,0.576786,0.885745,0.885934,0.341955,0.132932,0.71478,0.0141945,0.358128,0.602843,0.827142,0.345256,0.405409,0.800507,0.867488,0.858662,0.894657,0.516264,0.686439,0.872792,0.186534,0.15932,0.770539,0.809343,0.271518,0.149256,0.96006,0.627363,0.0171868,0.950084,0.126859,0.371155,0.319851,0.343399,0.463213,0.974502,0.450149,0.577318,0.452525,0.899795,0.99603,0.425854,0.362175,0.203603,0.311296,0.108504,0.284565,0.458467,0.501298,0.191112,0.892734,0.951494,0.788403,0.391479,0.538924,0.83897,0.29379,0.772809,0.772059,0.0968593,0.473098,0.536691,0.484045,0.203231,0.0712311,0.292509,0.384649,0.276989,0.246684,0.632409,0.464649,0.631814,0.287227,0.971222,0.539142,0.563961,0.929795,0.283543,0.0812892,0.890007,0.749519,0.838236,0.261451,0.50666,0.638054,0.832195,0.409718,0.577245,0.0242211,0.399178,0.229341,0.594887,0.834997,0.715096,0.722376,0.102622,0.718492,0.415864,0.554845,0.160777,0.287523,0.354179,0.756264,0.556721,0.560445,0.0187495,0.557999,0.466558,0.383633,0.760469,0.568386,0.645168,0.552424,0.56387,0.7629,0.270525,0.945667,0.183296,0.534313,0.394781,0.311438,0.192915,0.99495,0.776897,0.00648385,0.137545,0.18984,0.279579,0.482323,0.425402,0.225812,0.824357,0.6675,0.428632,0.750921,0.0394675,0.925875,0.270295,0.316586,0.560915,0.0716696,0.896434,0.267965,0.0530722,0.161257,0.133602,0.695123,0.852705,0.977126,0.152706,0.501529,0.625524,0.787528,0.884042,0.396504,0.245831,0.392273,0.389605,0.0424273,0.654381,0.107628,0.593947,0.330004,0.87595,0.460631,0.280595,0.46945,0.870804,0.266349,0.772666,0.92043,0.691975,0.463042,0.450099,0.676174,0.789493,0.534872,0.238221,0.318057,0.302836,0.420253,0.189612,0.238817,0.00352675,0.940736,0.128014,0.607042,0.342995,0.213726,0.381599,0.920845,0.225842,0.516578,0.593994,0.206843,0.988732,0.262171,0.150512,0.957134,0.732791,0.645447,0.657759,0.215191,0.278231,0.220382,0.660451,0.152383,0.510691,0.528987,0.487756,0.381396,0.313563,0.317428,0.593116,0.508027,0.703713,0.277269,0.223259,0.102197,0.0990785,0.815808,0.694708,0.0301005,0.00773203,0.355273,0.407005,0.75749,0.642667,0.440003,0.766125,0.232029,0.0993123,0.0371794,0.533239,0.088123,0.156335,0.541211,0.19816,0.0591902,0.198521,0.371461,0.0526782,0.336139,0.618477,0.280271,0.816596,0.894558,0.211801,0.599118,0.688601,0.59358,0.810908,0.40212,0.443955,0.415069,0.5636,0.438308,0.562856,0.821843,0.303436,0.82673,0.894508,0.427239,0.599915,0.434327,0.925261,0.933292,0.454815,0.837402,0.723851,0.761991,0.9782,0.919415,0.91723,0.81786,|0.0129551,0.668668,0.496667,0.367655,0.863582,0.636393,0.919928,0.965013,0.963253,0.79123,0.375074,0.362762,0.298761,0.746845,0.996901,0.490901,0.280891,0.302306,0.920725,0.924083,0.446521,0.718479,0.0243036,0.571061,0.266271,0.806587,0.447185,0.748318,0.663795,0.94776,0.820465,0.288871,0.104295,0.320498,0.399622,0.87183,0.348384,0.00471646,0.0790469,0.904329,0.843828,0.875001,0.686772,0.147604,0.417097,0.00357568,0.0857422,0.123081,0.403635,0.543398,0.264658,0.149905,0.525196,0.251393,0.428375,0.838586,0.35053,0.318681,0.393719,0.773367,0.699605,0.824373,0.178748,0.981238,0.822687,0.862098,0.378621,0.996139,0.982671,0.402132,0.520177,0.108865,0.150448,0.93956,0.193301,0.206417,0.823781,0.475032,0.860899,0.439782,0.357107,0.782403,0.196857,0.0932397,0.660885,0.719077,0.877096,0.0910288,0.395722,0.796202,0.704479,0.150028,0.98723,0.243578,0.059773,0.739669,0.504678,0.149327,0.897353,0.602073,0.44054,0.898685,0.318384,0.998639,0.0727172,0.20536,0.595084,0.0964566,0.488488,0.0491152,0.160735,0.885562,0.343197,0.687367,0.821652,0.803301,0.852142,0.576359,0.00947726,0.953381,0.0294155,0.00629783,0.61862,0.876553,0.0874466,0.404355,0.447329,0.570858,0.946615,0.101642,0.609122,0.543066,0.195571,0.848544,0.354,0.687649,0.93104,0.975293,0.444569,0.696662,0.738054,0.492042,0.0285988,0.681795,0.337561,0.952537,0.544977,0.938189,0.0320951,0.959296,0.0922091,0.758247,0.786425,0.293985,0.48688,0.369852,0.804518,0.194582,0.791537,0.527796,0.0323008,0.283237,0.0613487,0.780482,0.673292,0.663238,0.98602,0.621579,0.109918,0.665908,0.644838,0.603435,0.766935,0.394777,0.219828,0.275649,0.590772,0.557727,0.709499,0.789933,0.262351,0.194204,0.873033,0.752967,0.835378,0.0330639,0.777372,0.458106,0.865085,0.68023,0.633358,0.116085,0.00414485,0.683502,0.103886,0.41015,0.599504,0.0803109,0.0945631,0.770666,0.866304,0.501821,0.058521,0.308769,0.863863,0.500237,0.8797,0.0161908,0.135219,0.316374,0.723524,0.481245,0.603506,0.286702,0.755808,0.826753,0.212924,0.153648,0.0628229,0.967489,0.0845467,0.890868,0.710855,0.309942,0.191234,0.864947,0.920123,0.13993,0.045111,0.780746,0.862183,0.77051,0.87942,0.154809,0.680286,0.058387,0.583842,0.464787,0.0248432,0.279134,0.0348849,0.927714,0.0565147,0.0119369,0.832473,0.799995,0.728436,0.835369,0.942584,0.0483039,0.174002,0.728989,0.354553,0.960191,0.516473,0.634268,0.409418,0.475421,0.786274,0.966718,0.928081,0.691646,0.789028,0.19465,0.945147,0.686399,0.604807,0.0249403,0.729371,0.472989,0.41513,0.544832,0.1068,0.954878,0.085493,0.588346,0.504929,0.586773,0.745547,0.75018,0.283784,0.847943,0.893735,0.246459,0.953346,0.146991,0.223966,0.746101,0.0167551,0.331783,0.789717,0.9024,0.986301,0.715418,0.412944,0.0311698,0.281,0.85494,0.606888,0.581241,0.602649,0.463713,0.1628,0.256605,0.185277,0.101636,0.533813,0.205066,0.409438,0.195491,0.24384,0.139857,0.868342,0.012674,0.560282,0.452582,0.047529,0.57354,0.583854,0.753667,0.677969,0.815881,0.420474,0.940114,0.946724,0.153542,0.737568,0.586387,0.931431,0.701014,0.505499,0.248271,0.451794,0.643571,0.273649,0.298567,0.414635,0.24069,0.979889,0.336102,0.36891,0.455778,0.281597,0.175561,0.743346,0.949378,0.0923872,0.93795,0.728789,0.0168471,0.33422,0.589746,0.802601,0.721414,0.0853851,0.892717,0.0324743,0.953223,0.918372,0.747886,0.810834,0.441031,0.973539,0.371588,0.26166,0.242528,0.26304,0.470733,0.984253,0.192364,0.677396,0.423164,0.78303,0.585389,0.480062,0.316004,0.943074,0.115197,0.0203606,0.283618,0.572537,0.879073,0.669678,0.096124,0.930185,0.994506,0.809026,0.794801,0.0569839,0.411314,0.755,0.239353,0.148658,0.102071,0.0203965,0.139782,0.889899,0.372044,0.727367,0.989777,0.169996,0.875798,0.164462,0.601347,0.457481,0.897476,0.929862,0.0179604,0.380807,0.224471,0.411004,0.840968,0.228337,0.90205,0.975015,0.200663,0.364513,0.342966,0.74336,0.659944,0.00900686,0.49304,0.36948,0.727855,0.979318,0.10598,0.471738,0.916355,0.794831,0.307501,0.265377,0.0484744,0.366297,0.32969,0.260201,0.632258,0.00941992,0.29696,0.305048,0.865797,0.896134,0.281526,0.613579,0.554397,0.791363,0.730973,0.0608413,0.109205,0.396627,0.323394,0.713634,0.630132,0.308821,0.293103,0.369633,0.874712,0.859713,0.468821,0.93064,0.0700073,0.0018875,0.576745,0.14974,0.676919,0.916314,0.209347,0.452845,0.147733,0.270802,0.89768,0.252864,0.791135,0.967676,0.862965,0.616179,0.87105,0.163637,0.950959,0.0852789,0.778264,0.514928,0.437821,0.0955272,0.207682,0.354919,0.236931,0.483165,0.409872,0.702936,0.481953,0.890744,0.477836,0.978408,0.999003,0.163216,0.598173,0.460187,0.612177,0.189753,0.88126,0.126214,0.728677,0.144199,0.167423,0.57609,0.735356,0.989166,0.941,0.325275,0.816152,0.706844,0.0498769,0.545805,0.551866,0.448078,0.600267,0.825028,0.344444,0.700063,0.653044,0.0631445,0.0565934,0.57058,0.246122,0.815964,0.323366,0.0312631,0.974132,0.149838,0.26624,0.406814,0.236583,0.4905,0.879559,0.002707,0.405427,0.929493,0.138666,0.223975,0.26408,0.709715,0.821886,0.390539,0.0921001,0.922788,0.370599,0.815579,0.665949,0.548543,0.757779,0.384463,0.0830688,0.178387,0.438015,0.912496,0.235094,0.690786,0.690913,0.803996,0.771535,0.456772,0.127882,0.24093,0.540138,0.0281029,0.864281,0.999118,0.848686,0.567585,0.0705086,0.418806,0.515636,0.479728,0.764438,0.928329,0.990063,0.0645924,0.685176,0.208313,0.404572,0.711454,0.799366,0.818957,0.448178,0.416844,0.799018,0.37624,0.719641,0.605136,0.486606,0.696635,0.304906,0.982581,0.56138,0.0183127,0.593009,0.00012964,0.398364,0.410167,0.860667,0.638001,0.709292,0.769842,0.508057,0.26494,0.878268,0.327984,0.0704655,0.117197,0.774124,0.343358,0.664677,0.792304,0.809298,0.254561,0.390182,0.665694,0.984563,0.871881,0.368539,0.553649,0.161924,0.69544,0.783677,0.568374,0.551334,0.382096,0.277094,0.585892,0.936985,0.944194,0.20704,0.712209,0.641779,0.508231,0.305472,0.915751,0.973989,0.0230899,0.590813,0.385987,0.488414,0.166734,0.337135,0.227285,0.463253,0.425844,0.973569,0.31704,0.892725,0.728481,0.863448,0.561455,0.589506,0.0795395,0.581555,0.67045,0.185614,0.959188,0.394815,0.525848,0.555801,0.628236,0.211883,0.328039,0.564094,0.533903,0.708244,0.527084,0.530916,0.0928808,0.182779,0.282458,0.815941,0.475755,0.89476,0.502999,0.903391,0.393089,0.393953,0.0558807,0.753491,0.0724137,0.156068,0.569004,0.113007,0.457172,0.186656,0.666621,0.835557,0.173959,0.231174,0.911073,0.0457554,0.120039,0.00566894,0.556162,0.310682,0.134001,0.419654,0.0086267,0.81561,0.0412619,0.602462,0.223234,0.56193,0.039758,0.605411,0.960632,0.000201523,0.75814,0.84006,0.0542591,0.69965,0.600795,0.789783,0.491239,0.406664,0.663317,0.811825,0.281628,0.878867,0.587352,0.92591,0.432136,0.469011,0.497201,0.303203,0.896602,0.66763,0.829647,0.678178,0.630785,0.855662,0.572459,0.204677,0.89829,0.531152,0.694682,0.242082,0.660924,0.184578,0.69455,0.198577,0.126758,0.28568,0.122346,0.463961,0.521989,0.329423,0.507686,0.12161,0.774149,0.024995,0.679433,0.486431,0.117052,0.588762,0.670852,0.262165,0.750151,0.920732,0.130153,0.62836,0.173166,0.819002,0.55254,0.500695,0.299487,0.404702,0.713642,0.488139,0.207052,0.555966,0.534145,0.609486,0.209814,0.766462,0.0439345,0.337895,0.894046,0.102701,0.251161,0.0563025,0.82841,0.548748,0.760431,0.96302,0.57541,0.71237,0.889819,0.403978,0.116692,0.895665,0.514494,0.782377,0.0485377,0.96089,0.31905,0.984451,0.577165,0.52262,0.538986,0.083919,0.351084,0.182917,0.262957,0.30214,0.597695,0.785643,0.208264,0.311631,0.805761,0.576903,0.286138,0.519085,0.359127,0.829678,0.988123,0.124164,0.220514,0.16834,0.740877,0.375401,0.37975,0.207722,0.357177,0.300437,0.893478,0.462958,0.583085,0.708232,0.477717,0.733851,0.201183,0.429838,0.0161023,0.801311,0.199444,0.0956366,0.378067,0.231108,0.145352,0.714835,0.661912,0.774677,0.605335,0.652224,0.903715,0.297364,0.0786949,0.938662,0.194431,0.495462,0.567014,0.238676,0.470324,0.0423793,0.633668,0.0195038,0.0356767,0.195918,0.705647,0.820937,0.275477,0.492507,0.524485,0.734495,0.177162,0.344689,0.393051,0.10074,0.958162,0.595339,0.366042,0.411066,0.431909,0.960876,0.718934,0.521411,0.111325,0.779543,0.246714,0.584054,0.732446,0.706447,0.137285,0.678017,0.0389791,0.425201,0.637728,0.834872,0.985763,0.872566,0.74393,0.63369,0.811475,0.999192,0.45386,0.654426,0.707976,0.439937,0.516526,0.0901917,0.969338,0.911539,0.348778,0.242906,0.462401,0.267452,0.504412,0.442737,0.0793925,0.0971462,0.332736,0.626943,0.860748,0.981951,0.830099,0.464075,0.311149,0.98041,0.846533,0.18861,0.210857,0.776714,0.178695,0.826223,0.0944471,0.0969772,0.797021,0.449218,0.1852,0.570647,0.262234,0.0725522,0.645251,0.72527,0.41633,0.969901,0.223222,0.260451,0.158027,0.14677,0.871803,0.523366,0.424287,0.25737,0.633087,0.865382,0.876536,0.373462,0.525247,0.286551,0.407573,0.883142,0.101766,0.572651,0.697915,0.0834062,0.646109,0.70845,0.628522,0.43763,0.269361,0.452156,0.159983,0.934425,3.15905e-05,0.853818,0.390511,0.770577,0.961613,0.487426,0.410635,0.483324,0.294726,0.816292,0.272008,0.310757,0.863105,0.438891,0.136189,0.816534,0.902444,0.268155,0.612418,0.499536,0.14366,0.966425,0.570219,0.731912,0.850817,0.252565,0.440434,0.776524,0.0355469,0.2529,0.574712,0.27598,|0.963493,0.284904,0.310161,0.967791,0.438314,0.323951,0.786056,0.552115,0.925951,0.264125,0.345954,0.530021,0.0943602,0.0632045,0.20529,0.166557,0.913383,0.677106,0.0555579,0.0565618,0.114386,0.633321,0.207755,0.578961,0.101652,0.437845,0.942263,0.699222,0.630353,0.86685,0.442946,0.476993,0.382961,0.149867,0.66722,0.438911,0.596286,0.101014,0.511406,0.14184,0.561204,0.958355,0.0112324,0.418104,0.710451,0.955936,0.501442,0.326825,0.83287,0.877236,0.421073,0.608699,0.316625,0.571824,0.0714458,0.181671,0.29469,0.363665,0.622809,0.253425,0.315012,0.18039,0.279163,0.287452,0.826446,0.0997084,0.498793,0.25642,0.619855,0.167952,0.947076,0.0176795,0.152307,0.0508843,0.308138,0.663308,0.0846299,0.350454,0.471912,0.945041,0.000708282,0.954668,0.307126,0.469569,0.111681,0.236217,0.919666,0.981111,0.641,0.141217,0.370259,0.177538,0.696304,0.483863,0.925754,0.910946,0.215144,0.196924,0.660229,0.714721,0.335359,0.162037,0.780457,0.592069,0.618583,0.558328,0.272787,0.822374,0.310693,0.289658,0.0897695,0.438996,0.975522,0.844763,0.390551,0.055007,0.675055,0.118167,0.0827225,0.947788,0.406422,0.228171,0.532311,0.29198,0.300249,0.268652,0.527662,0.291816,0.62661,0.250534,0.35488,0.495586,0.626771,0.953628,0.378324,0.720932,0.199399,0.607396,0.57945,0.930003,0.815138,0.755159,0.891994,0.929578,0.0394681,0.0823843,0.100097,0.677862,0.428538,0.920899,0.421948,0.537975,0.836623,0.775343,0.219444,0.0835111,0.938166,0.792372,0.721467,0.460495,0.533751,0.355848,0.372391,0.0886508,0.484867,0.0692092,0.71612,0.517304,0.450008,0.403577,0.510907,0.41704,0.916032,0.769251,0.0276939,0.967619,0.499607,0.792019,0.655622,0.572654,0.232017,0.223111,0.294178,0.649189,0.322676,0.926987,0.317448,0.431954,0.510228,0.152436,0.551507,0.00747806,0.8969,0.604698,0.969585,0.887668,0.968861,0.0980704,0.952431,0.527497,0.307116,0.604598,0.433654,0.0768597,0.62601,0.548597,0.302345,0.986079,0.402374,0.839548,0.425032,0.333377,0.534579,0.58426,0.494639,0.807783,0.141067,0.509619,0.0860703,0.342327,0.219156,0.645508,0.472869,0.88166,0.671391,0.467564,0.538885,0.601637,0.281162,0.425676,0.616615,0.253973,0.168095,0.605234,0.107268,0.105535,0.953046,0.230132,0.640234,0.741934,0.789051,0.824946,0.438603,0.959872,0.529139,0.463962,0.711883,0.716908,0.0588313,0.0975385,0.747944,0.516308,0.0129669,0.163315,0.431115,0.535412,0.464982,0.776468,0.605432,0.0604115,0.167041,0.972755,0.31361,0.305482,0.0739263,0.173189,0.234411,0.743216,0.0157229,0.710333,0.567295,0.966628,0.834604,0.226721,0.772912,0.859787,0.305885,0.906833,0.22255,0.312591,0.394911,0.250477,0.536572,0.658859,0.790366,0.429716,0.117613,0.56449,0.20768,0.644568,0.566947,0.280764,0.72125,0.322052,0.669261,0.221005,0.537585,0.0218802,0.6038,0.376206,0.67369,0.0598894,0.597832,0.829494,0.208676,0.896296,0.396074,0.489933,0.0706581,0.700399,0.819043,0.487755,0.41404,0.232058,0.559073,0.951617,0.178101,0.169352,0.833859,0.460257,0.395745,0.104075,0.666823,0.804949,0.178816,0.102871,0.047253,0.306626,0.928687,0.101789,0.0757931,0.453403,0.251098,0.924411,0.274202,0.550224,0.520662,0.097894,0.674261,0.93401,0.475412,0.168941,0.612274,0.125659,0.617126,0.356268,0.971024,0.665126,0.118234,0.980078,0.643228,0.939133,0.909854,0.846428,0.887958,0.573618,0.161439,0.923807,0.560196,0.409951,0.433065,0.981829,0.676121,0.690218,0.802599,0.105544,0.0141657,0.874839,0.35839,0.138335,0.00721788,0.38471,0.446032,0.884479,0.862535,0.316331,0.887768,0.958861,0.750758,0.14885,0.876868,0.485086,0.155541,0.630063,0.668104,0.541909,0.61388,0.622955,0.764701,0.490653,0.979194,0.325516,0.402292,0.928922,0.958525,0.85165,0.139069,0.0654115,0.381607,0.505793,0.054309,0.388038,0.511927,0.620717,0.451515,0.588879,0.192601,0.708374,0.773211,0.404764,0.196502,0.771457,0.370646,0.767768,0.441519,0.385231,0.673818,0.77189,0.784801,0.221404,0.142844,0.818039,0.325531,0.163747,0.449506,0.61565,0.972147,0.207524,0.349513,0.0741678,0.461753,0.352249,0.343996,0.783009,0.321453,0.709044,0.728133,0.213854,0.0963119,0.503881,0.978507,0.779581,0.171801,0.806571,0.788545,0.311465,0.0879119,0.687225,0.837105,0.682822,0.562104,0.44194,0.317094,0.982186,0.678767,0.733083,0.78252,0.901107,0.53711,0.733564,0.0517214,0.901979,0.695721,0.715022,0.050066,0.0343561,0.912943,0.809195,0.70041,0.51948,0.0450827,0.864876,0.647345,0.630877,0.805024,0.379862,0.434335,0.262959,0.742803,0.67625,0.912773,0.4308,0.714937,0.846017,0.203574,0.504266,0.315344,0.197389,0.379454,0.504787,0.989909,0.635864,0.959615,0.603271,0.687061,0.984589,0.722152,0.868012,0.29103,0.102968,0.743554,0.96968,0.0795519,0.244515,0.168385,0.109107,0.518567,0.634304,0.212174,0.0342618,0.196805,0.24619,0.646561,0.0463246,0.323593,0.0813069,0.891998,0.0227257,0.852427,0.906994,0.487552,0.676965,0.219714,0.78404,0.412771,0.537355,0.171706,0.234031,0.490691,0.122767,0.0979791,0.915364,0.117971,0.167432,0.762974,0.42691,0.543161,0.885495,0.152262,0.761554,0.0324907,0.829699,0.695783,0.0114247,0.933791,0.168009,0.403722,0.402744,0.023899,0.367337,0.659645,0.847114,0.967222,0.802924,0.117554,0.382071,0.514288,0.0820548,0.717452,0.0750324,0.895832,0.359447,0.918307,0.0366655,0.6304,0.584463,0.748305,0.506309,0.0146791,0.993492,0.123172,0.0676657,0.570465,0.879092,0.126896,0.282572,0.227253,0.847942,0.811512,0.311838,0.164014,0.841553,0.490005,0.865164,0.817433,0.844241,0.0107874,0.504571,0.594595,0.400157,0.456946,0.66394,0.199261,0.665474,0.368645,0.102086,0.498944,0.275366,0.771224,0.986699,0.526642,0.940549,0.445331,0.0226989,0.958538,0.440932,0.996671,0.268746,0.840595,0.057018,0.310624,0.00451285,0.076461,0.937047,0.838715,0.714742,0.753836,0.115494,0.791063,0.26817,0.169342,0.708746,0.408338,0.711578,0.0157181,0.0864062,0.410684,0.321426,0.301219,0.677467,0.677998,0.128504,0.274704,0.1425,0.578321,0.0484988,0.446009,0.477771,0.272372,0.478632,0.251164,0.340484,0.667763,0.529763,0.237997,0.0676492,0.22258,0.166247,0.870774,0.958856,0.439266,0.0609896,0.694077,0.773674,0.225048,0.984251,0.0594954,0.49899,0.861261,0.865066,0.164116,0.136203,0.496622,0.792879,0.939641,0.327627,0.985269,0.143019,0.384289,0.98271,0.867313,0.534249,0.961752,0.21134,0.444887,0.447157,0.291369,0.451258,0.222253,0.90015,0.969,0.69047,0.325662,0.708196,0.176608,0.0951102,0.324456,0.616033,0.481425,0.329385,0.488144,0.0123918,0.738041,0.509429,0.563604,0.152893,0.151432,0.305218,0.0546249,0.831101,0.177823,0.708219,0.768794,0.182893,0.274769,0.242179,0.941104,0.78223,0.763643,0.841903,0.452736,0.375468,0.942921,0.151413,0.186824,0.647256,0.575108,0.324914,0.950292,0.52323,0.671933,0.0920126,0.300958,0.321826,0.790802,0.979051,0.145101,0.0369986,0.279509,0.523611,0.505774,0.888851,0.811212,0.831817,0.403564,0.127358,0.0383162,0.445791,0.347629,0.437878,0.831671,0.625389,0.204433,0.806434,0.13116,0.452296,0.35705,0.347811,0.361166,0.466528,0.569555,0.609565,0.967749,0.993693,0.256191,0.514902,0.649243,0.0980181,0.729574,0.674508,0.79785,0.523165,0.908264,0.287772,0.676767,0.419559,0.811839,0.102372,0.487128,0.923256,0.586248,0.622174,0.711613,0.699705,0.620263,0.50139,0.653793,0.0328988,0.279966,0.127849,0.893256,0.855461,0.502278,0.261678,0.96634,0.391565,0.397581,0.591926,0.556203,0.434402,0.859384,0.292044,0.748925,0.803541,0.378123,0.87581,0.257536,0.747572,0.729768,0.903822,0.14106,0.698323,0.126499,0.668512,0.418168,0.788973,0.565858,0.345935,0.513344,0.154652,0.694569,0.325524,0.894187,0.797928,0.398421,0.527841,0.409532,0.0102909,0.993759,0.833114,0.426829,0.804794,0.71357,0.522937,0.256938,0.588309,0.736509,0.491492,0.580536,0.730534,0.96234,0.264196,0.44339,0.681754,0.486489,0.855238,0.205376,0.386511,0.323994,0.42714,0.897861,0.335491,0.845179,0.41271,0.256966,0.731807,0.476319,0.60171,0.109191,0.525494,0.133598,0.682365,0.741441,0.377838,0.724715,0.437031,0.394898,0.364482,0.667409,0.300477,0.383204,0.806417,0.964702,0.759938,0.879693,0.827557,0.637755,0.679436,0.387098,0.394374,0.863242,0.705007,0.0217443,0.551254,0.142543,0.934368,0.673438,0.726329,0.0229677,0.895357,0.0653039,0.382022,0.0772706,0.367467,0.472933,0.30172,0.844747,0.545411,0.140631,0.526063,0.285601,0.463477,0.439774,0.875212,0.549005,0.156962,0.105586,0.0643441,0.0622863,0.970918,0.474983,0.688203,0.0163042,0.112393,0.985292,0.0729309,0.19691,0.0148003,0.32139,0.542333,0.945373,0.379678,0.0570976,0.102694,0.241135,0.947353,0.266724,0.454399,0.587831,0.625046,0.764747,0.49854,0.958515,0.330303,0.865521,0.574838,0.20734,0.0205252,0.684844,0.271034,0.223095,0.81404,0.957127,0.867297,0.934462,0.640428,0.106996,0.213566,0.0508333,0.554081,0.251145,0.446158,0.374824,0.71128,0.115133,0.824048,0.121625,0.351536,0.222923,0.746238,0.209978,0.368124,0.345431,0.627581,0.978837,0.258773,0.216723,0.63398,0.246833,0.186967,0.311653,0.788773,0.114362,0.478614,0.966011,0.508518,0.40837,0.258629,0.543413,0.0896693,0.158629,0.876827,0.785196,0.34372,0.397837,0.86769,0.0634843,0.216223,0.460672,0.257353,0.928174,0.133183,0.190431,0.744371,0.376622,0.693718,0.858809,0.541891,0.256957,0.547896,0.267372,0.865588,0.519336,0.358952,0.298111,0.449488,0.373877,0.62777,0.281203,0.637134,|0.438667,0.108605,0.213971,0.792847,0.475303,0.226212,0.306708,0.942169,0.63778,0.906672,0.572754,0.0250316,0.00552976,0.099572,0.533798,0.478454,0.838307,0.65245,0.814088,0.21543,0.795587,0.424053,0.332917,0.997878,0.38747,0.763955,0.112252,0.976313,0.742517,0.257919,0.676862,0.714002,0.796004,0.460261,0.679139,0.493051,0.0878172,0.834396,0.300688,0.568257,0.512863,0.592637,0.783893,0.483375,0.90075,0.233211,0.607743,0.781715,0.396325,0.0493211,0.0180808,0.874699,0.877012,0.729647,0.157469,0.406264,0.179019,0.981311,0.189787,0.495004,0.524261,0.502983,0.174904,0.456724,0.0923594,0.125053,0.206852,0.243729,0.00494617,0.261083,0.490008,0.238772,0.633639,0.430601,0.906759,0.161218,0.455551,0.657221,0.0469322,0.460047,0.596632,0.472179,0.746813,0.282019,0.800943,0.776079,0.831216,0.346114,0.676298,0.263052,0.429221,0.286893,0.221433,0.412573,0.109924,0.268351,0.05348,0.935988,0.0421163,0.429819,0.342531,0.172279,0.138601,0.147806,0.307977,0.927897,0.037099,0.0940787,0.991715,0.992719,0.549148,0.0905221,0.0238133,0.866798,0.471387,0.980743,0.747361,0.244736,0.132036,0.545397,0.00620079,0.824587,0.87236,0.219679,0.0203992,0.192687,0.560292,0.028522,0.0493855,0.41683,0.157911,0.555729,0.151132,0.34724,0.241779,0.839498,0.782308,0.878997,0.83219,0.144037,0.276752,0.0430772,0.45912,0.0010038,0.931405,0.681764,0.24726,0.44779,0.982727,0.217832,0.731439,0.925123,0.794672,0.795405,0.51585,0.365584,0.0696115,0.783524,0.493898,0.0716861,0.483664,0.403987,0.928744,0.50919,0.35912,0.0111144,0.833982,0.765784,0.871581,0.670992,0.428641,0.225441,0.459252,0.806116,0.601557,0.840676,0.608126,0.841227,0.881644,0.731852,0.863605,0.415649,0.908992,0.856681,0.322296,0.145803,0.0707374,0.914657,0.872669,0.290898,0.888291,0.533914,0.85537,0.186199,0.152674,0.891635,0.774125,0.565174,0.745398,0.259962,0.699366,0.0444441,0.945001,0.168462,0.811415,0.0323691,0.817993,0.816481,0.913505,0.781951,0.348024,0.612274,0.83304,0.693583,0.415112,0.691147,0.315361,0.221038,0.700571,0.667065,0.70573,0.319109,0.530107,0.200738,0.99829,0.346842,0.825727,0.0638142,0.734916,0.0158485,0.790063,0.00721818,0.956968,0.542809,0.981873,0.458881,0.945781,0.92009,0.210066,0.405567,0.772101,0.312819,0.46898,0.565687,0.244951,0.793953,0.192582,0.284571,0.603874,0.718576,0.469731,0.149197,0.496873,0.930334,0.546299,0.782961,0.157394,0.829183,0.863045,0.893246,0.238429,0.305296,0.0988036,0.599815,0.148625,0.296289,0.595015,0.129809,0.466845,0.785321,0.918126,0.12977,0.232447,0.0759286,0.600915,0.25794,0.211108,0.942273,0.0588183,0.261983,0.977209,0.0502333,0.480279,0.839644,0.0497155,0.20819,0.638664,0.236382,0.789692,0.367271,0.110832,0.728764,0.299486,0.347542,0.595268,0.318487,0.0637147,0.273857,0.468891,0.621679,0.928072,0.749771,0.408701,0.388682,0.385498,0.560565,0.807033,0.844746,0.644127,0.461098,0.0463134,0.0424641,0.641783,0.480739,0.852569,0.595386,0.386935,0.93458,0.867318,0.0873767,0.505246,0.124656,0.336019,0.866631,0.840525,0.753182,0.538446,0.461259,0.267827,0.957782,0.458802,0.992883,0.515939,0.793345,0.375439,0.535293,0.683213,0.76513,0.791468,0.222895,0.297165,0.59347,0.0753734,0.0840842,0.116306,0.125521,0.0539478,0.44315,0.393867,0.878457,0.95989,0.614925,0.288758,0.633755,0.441828,0.484074,0.0785161,0.755791,0.11537,0.777042,0.0274101,0.253478,0.120571,0.406591,0.181388,0.0662274,0.501741,0.346973,0.423058,0.58928,0.233223,0.107914,0.0430403,0.0520349,0.738142,0.552079,0.60437,0.931033,0.0190955,0.920895,0.782181,0.372564,0.896413,0.995601,0.669202,0.668557,0.609195,0.144812,0.751016,0.169508,0.193352,0.222583,0.455656,0.773561,0.836347,0.555213,0.907171,0.304047,0.211345,0.825097,0.558188,0.151765,0.862984,0.810266,0.557269,0.00741655,0.83722,0.459912,0.74061,0.253655,0.071698,0.410164,0.201989,0.154689,0.0524398,0.29506,0.80615,0.726563,0.077911,0.586394,0.746692,0.754959,0.381094,0.673429,0.746159,0.0818902,0.986509,0.400512,0.66999,0.352864,0.961372,0.710736,0.459976,0.775981,0.973554,0.925795,0.497742,0.804097,0.262119,0.80934,0.386835,0.0676525,0.967975,0.390281,0.934367,0.569586,0.0051837,0.624618,0.00284946,0.222994,0.867853,0.815961,0.842906,0.745823,0.227838,0.399976,0.492358,0.550657,0.841971,0.168189,0.292229,0.160375,0.759446,0.179001,0.722616,0.418595,0.375963,0.295257,0.792162,0.884225,0.627617,0.503731,0.941205,0.163858,0.535165,0.537823,0.980615,0.881858,0.664292,0.307154,0.995118,0.00312912,0.650671,0.639394,0.745247,0.994373,0.42211,0.726486,0.337097,0.770074,0.752783,0.328526,0.94759,0.158202,0.579586,0.55301,0.118311,0.602245,0.746034,0.715649,0.0859379,0.723471,0.37675,0.487659,0.42402,0.760965,0.874917,0.796061,0.421436,0.649692,0.338068,0.0251229,0.0573348,0.810528,0.71777,0.601946,0.978059,0.689946,0.0121995,0.891411,0.908563,0.144569,0.629714,0.167935,0.717409,0.652453,0.136924,0.406178,0.556835,0.874442,0.524015,0.768827,0.0214061,0.711101,0.166843,0.882815,0.0832046,0.327811,0.152046,0.42392,0.771788,0.731463,0.605886,0.927564,0.64339,0.0909519,0.410759,0.0418728,0.625423,0.302021,0.787162,0.149453,0.691983,0.800634,0.368638,0.186877,0.0753602,0.523348,0.638735,0.680542,0.992545,0.00816482,0.223799,0.627709,0.730231,0.389388,0.179258,0.463209,0.511453,0.58525,0.404966,0.722311,0.617548,0.568784,0.408247,0.428484,0.78038,0.0076167,0.760105,0.51353,0.738359,0.273693,0.243663,0.575027,0.446616,0.157769,0.888451,0.113051,0.363869,0.895586,0.95323,0.312466,0.145816,0.548584,0.504407,0.329933,0.746751,0.694845,0.66672,0.800301,0.112101,0.623125,0.488536,0.462794,0.432287,0.578754,0.922175,0.908839,0.912812,0.164552,0.585577,0.156413,0.988793,0.733462,0.120744,0.163535,0.746837,0.0932158,0.957773,0.773418,0.520169,0.992344,0.39581,0.234355,0.965852,0.0262525,0.19553,0.910596,0.021608,0.841477,0.98542,0.944509,0.137085,0.954583,0.633374,0.463331,0.722046,0.7172,0.340894,0.50406,0.720532,0.429929,0.365649,0.72813,0.372538,0.591747,0.207788,0.332023,0.968896,0.843302,0.763512,0.219787,0.786962,0.322174,0.0952827,0.264505,0.928625,0.523396,0.171587,0.936167,0.610852,0.40731,0.207371,0.176615,0.826515,0.13541,0.345447,0.921627,0.368761,0.0827277,0.672859,0.504704,0.996716,0.0515014,0.64268,0.602368,0.911288,0.229854,0.194102,0.767588,0.127022,0.449281,0.588509,0.483004,0.24994,0.390453,0.0852528,0.324234,0.767531,0.541489,0.451698,0.972529,0.601858,0.241865,0.775075,0.234268,0.879572,0.275235,0.465276,0.116609,0.309486,0.0783311,0.556632,0.166542,0.555512,0.184748,0.681558,0.646769,0.868512,0.394287,0.0200493,0.529816,0.910016,0.614288,0.955141,0.648943,0.435973,0.901222,0.225761,0.864451,0.652896,0.730112,0.740534,0.661395,0.364518,0.939878,0.481427,0.846961,0.468378,0.448341,0.0257827,0.393463,0.225281,0.320542,0.834863,0.226326,0.629745,0.109688,0.167848,0.644292,0.369395,0.342291,0.772961,0.672217,0.0768875,0.268276,0.555464,0.204794,0.832442,0.173528,0.898452,0.65112,0.881809,0.936244,0.680484,0.658454,0.182742,0.799423,0.564579,0.97342,0.214277,0.166932,0.469875,0.641591,0.228913,0.50159,0.0472863,0.79218,0.805943,0.749848,0.623342,0.212291,0.0343419,0.335164,0.89617,0.0125905,0.413765,0.527236,0.437164,0.212568,0.759627,0.976001,0.901911,0.140988,0.363295,0.72832,0.975891,0.98457,0.194995,0.141499,0.0924941,0.869392,0.348835,0.23042,0.174638,0.286913,0.90965,0.452641,0.0307623,0.14517,0.157943,0.841541,0.160473,0.703697,0.309063,0.192985,0.860882,0.539977,0.498923,0.840699,0.792151,0.719435,0.807639,0.345532,0.128168,0.859789,0.593124,0.549808,0.420535,0.423472,0.476086,0.854204,0.584848,0.0737031,0.836655,0.357247,0.216626,0.282096,0.882568,0.799902,0.733969,0.0639112,0.110206,0.356376,0.122102,0.306579,0.886808,0.0956072,0.136654,0.688926,0.180591,0.87418,0.831454,0.350201,0.154138,0.865872,0.997502,0.0545343,0.459592,0.424487,0.599741,0.586981,0.967313,0.243174,0.567196,0.332327,0.0404916,0.271071,0.935218,0.545328,0.718119,0.370484,0.177268,0.0282126,0.726023,0.104118,0.542176,0.374812,0.745752,0.471708,0.149452,0.57604,0.606471,0.586257,0.615201,0.453762,0.43908,0.490504,0.736463,0.0591085,0.0454112,0.361798,0.89724,0.854271,0.325856,0.518499,0.159379,0.230115,0.0452883,0.319762,0.98392,0.116534,0.996965,0.0464751,0.83562,0.410791,0.771486,0.726011,0.603069,0.748311,0.902643,0.1975,0.0328854,0.0454723,0.66381,0.743132,0.425767,0.489897,0.64864,0.946396,0.421035,0.412344,0.491149,0.392437,0.339208,0.581731,0.238276,0.0654252,0.631845,0.343639,0.494434,0.3152,0.723004,0.201015,0.503901,0.592351,0.692489,0.60416,0.736225,0.302385,0.350923,0.897119,0.706317,0.332331,0.553513,0.468343,0.683609,0.518195,0.431652,0.0209312,0.251767,0.913596,0.619931,0.24255,0.246448,0.73384,0.711796,0.799826,0.59171,0.388126,0.387664,0.569636,0.94328,0.644824,0.318368,0.488089,0.250242,0.987057,0.316855,0.539585,0.131347,0.921386,0.387823,0.893638,0.604746,0.661297,0.189761,0.619064,0.402318,0.504439,0.603063,0.016019,0.50338,0.0450452,0.877742,0.0209914,0.372329,0.46715,0.876116,0.530646,0.332001,0.111538,0.124707,0.413014,0.512269,0.190505,0.587945,0.486466,0.611651,0.355652,0.386998,0.571019,0.636657,0.103309,0.0350007,0.93471,0.190919,0.851176,0.36007,0.411284,|0.00873023,0.816506,0.98254,0.342959,0.634974,0.900465,0.29103,0.333959,0.147194,0.401627,0.282262,0.164013,0.88185,0.456208,0.13769,0.228791,0.314518,0.931348,0.228421,0.560609,0.826641,0.833306,0.997441,0.984086,0.110078,0.249874,0.132359,0.398292,0.925706,0.892976,0.946818,0.712086,0.880842,0.157465,0.0155984,0.140849,0.469328,0.699814,0.679083,0.0947738,0.670492,0.156314,0.78508,0.618233,0.964476,0.866817,0.519831,0.793588,0.83063,0.251655,0.953608,0.307371,0.774564,0.597049,0.50003,0.0867037,0.986568,0.53222,0.867217,0.86593,0.478822,0.153374,0.342461,0.455521,0.0688689,0.659716,0.810244,0.0799554,0.0280596,0.39299,0.637606,0.414758,0.235353,0.82838,0.641806,0.144457,0.0443732,0.884354,0.314095,0.404157,0.608569,0.60442,0.107216,0.323878,0.829185,0.575201,0.102716,0.261946,0.32394,0.709108,0.376886,0.986127,0.765092,0.109446,0.493885,0.0573089,0.819673,0.62415,0.873484,0.0303983,0.737786,0.340791,0.100421,0.102764,0.401836,0.898211,0.603915,0.367318,0.953403,0.868743,0.614378,0.918731,0.400442,0.187654,0.46518,0.443598,0.241051,0.266686,0.690438,0.996767,0.445738,0.812676,0.238121,0.675508,0.339117,0.875127,0.813565,0.283068,0.918866,0.767866,0.277008,0.83244,0.199114,0.685641,0.893268,0.569521,0.832893,0.49963,0.341911,0.449007,0.900419,0.666841,0.920586,0.324752,0.859477,0.865391,0.696689,0.0382224,0.968308,0.577905,0.037342,0.771825,0.461713,0.826412,0.793989,0.995365,0.993671,0.74251,0.888702,0.644601,0.179786,0.263329,0.0365677,0.286174,0.483947,0.915813,0.629197,0.669572,0.367318,0.537526,0.306706,0.718446,0.282475,0.333265,0.732723,0.377106,0.950527,0.60053,0.0997452,0.872257,0.562043,0.0570574,0.5515,0.328045,0.700108,0.01271,0.71575,0.171048,0.61218,0.109358,0.083984,0.0120289,0.614004,0.685814,0.335584,0.701607,0.181681,0.629588,0.990058,0.864593,0.233648,0.951523,0.979274,0.875508,0.497282,0.767342,0.305403,0.62819,0.956979,0.652696,0.75232,0.707163,0.462205,0.0460159,0.719669,0.930083,0.094984,0.145328,0.015973,0.00489634,0.894187,0.122025,0.509237,0.611324,0.46637,0.966202,0.0285234,0.844792,0.222598,0.0411473,0.0611945,0.0179485,0.688032,0.518214,0.721333,0.776421,0.911884,0.268933,0.110131,0.57435,0.849482,0.00607395,0.457218,0.911118,0.208133,0.829695,0.651956,0.237751,0.0258658,0.648456,0.608905,0.0821012,0.537708,0.0345449,0.399039,0.108971,0.344209,0.183391,0.172131,0.120523,0.578957,0.417322,0.567802,0.559506,0.727695,0.15973,0.168834,0.711944,0.515623,0.938548,0.255359,0.306427,0.526448,0.389771,0.0232706,0.36385,0.924208,0.354849,0.431254,0.963306,0.450346,0.371252,0.62481,0.307888,0.456604,0.400089,0.193836,0.0243628,0.0311697,0.284603,0.350988,0.705675,0.320852,0.00551456,0.594273,0.578314,0.470101,0.820697,0.326161,0.52453,0.140821,0.0035888,0.543677,0.780555,0.973449,0.704786,0.520302,0.762583,0.446954,0.10569,0.687369,0.800701,0.1214,0.274942,0.23178,0.841469,0.846555,0.272685,0.548949,0.788259,0.546927,0.0712173,0.727904,0.29519,0.246143,0.357882,0.661854,0.903945,0.912246,0.631042,0.795577,0.0181742,0.0175506,0.178193,0.677932,0.390603,0.675838,0.0182373,0.862678,0.21315,0.697546,0.7932,0.908744,0.12279,0.064814,0.616018,0.00545919,0.406884,0.365833,0.20592,0.0368925,0.165135,0.38293,0.808801,0.451755,0.694777,0.112039,0.238977,0.62921,0.0728353,0.877764,0.69753,0.287907,0.662939,0.109877,0.412687,0.888751,0.507083,0.22805,0.947102,0.915245,0.984742,0.108544,0.827227,0.540882,0.331123,0.360774,0.121961,0.184833,0.695219,0.106496,0.369911,0.57782,0.408645,0.952467,0.215129,0.604029,0.145182,0.726842,0.988158,0.165859,0.547616,0.59161,0.936244,0.0654936,0.172406,0.486869,0.0296726,0.807848,0.908565,0.153348,0.261655,0.163782,0.107147,0.77721,0.83205,0.934689,0.469087,0.0585461,0.970193,0.816983,0.601756,0.19154,0.472553,0.965829,0.129815,0.060216,0.515527,0.709661,0.929281,0.0369105,0.922213,0.755785,0.333747,0.867401,0.263106,0.898934,0.0903019,0.109256,0.499858,0.300596,0.52716,0.648193,0.92592,0.389214,0.750083,0.11743,0.817064,0.595121,0.501621,0.599578,0.709289,0.558791,0.94432,0.590201,0.220441,0.629447,0.877117,0.850577,0.860465,0.694345,0.488412,0.719103,0.126623,0.535233,0.405813,0.170372,0.138893,0.51012,0.695509,0.86619,0.700119,0.924487,0.68278,0.98614,0.883383,0.383878,0.625717,0.920628,0.531334,0.768199,0.288309,0.151537,0.604859,0.372293,0.296279,0.7508,0.782893,0.296618,0.198444,0.494821,0.638175,0.570237,0.872042,0.896568,0.127177,0.782857,0.0112165,0.384522,0.703476,0.546554,0.0483247,0.942745,0.4484,0.877074,0.310727,0.737903,0.328033,0.327534,0.70949,0.505601,0.421126,0.688846,0.427105,0.789941,0.419241,0.390239,0.738028,0.303891,0.872668,0.784028,0.0193081,0.833419,0.774944,0.127322,0.621341,0.455947,0.947211,0.136802,0.207179,0.703315,0.1234,0.952713,0.112358,0.309382,0.991645,0.943356,0.98799,0.987395,0.0583885,0.495038,0.775051,0.809167,0.510341,0.0240203,0.462499,0.565113,0.382468,0.370622,0.71911,0.632276,0.454644,0.867783,0.182059,0.0604697,0.578435,0.661477,0.234505,0.188926,0.854833,0.158346,0.859438,0.252216,0.999145,0.885559,0.164004,0.236048,0.363549,0.388714,0.858026,0.146557,0.71888,0.942336,0.291376,0.691816,0.940679,0.802659,0.16481,0.792528,0.545822,0.164515,0.205416,0.92969,0.143247,0.579239,0.334358,0.293734,0.198748,0.646914,0.789439,0.26882,0.387349,0.62853,0.953224,0.473286,0.878287,0.940486,0.633225,0.709206,0.0486035,0.581269,0.768368,0.296106,0.028065,0.172473,0.224129,0.326004,0.336732,0.656853,0.478761,0.46606,0.956532,0.684211,0.830641,0.786816,0.128445,0.244344,0.803079,0.924487,0.487165,0.224723,0.123327,0.210206,0.061983,0.428831,0.914633,0.625161,0.740057,0.130027,0.664481,0.233159,0.638449,0.682366,0.817664,0.875392,0.257611,0.463259,0.469741,0.0470094,0.19806,0.48623,0.30943,0.731032,0.410093,0.594176,0.266697,0.576669,0.70211,0.41551,0.96677,0.493029,0.975715,0.802746,0.880348,0.603552,0.88119,0.254524,0.755381,0.0793421,0.119584,0.388793,0.546344,0.603463,0.623786,0.105216,0.222706,0.945407,0.573797,0.922861,0.631682,0.755311,0.556048,0.50006,0.96423,0.0838157,0.272501,0.18787,0.577691,0.897596,0.966546,0.263594,0.972222,0.596897,0.890711,0.214306,0.0557508,0.0303281,0.035376,0.549235,0.849352,0.551001,0.90049,0.525349,0.539784,0.981331,0.914197,0.707119,0.337361,0.89219,0.764933,0.138352,0.353741,0.776894,0.921303,0.617494,0.153739,0.857125,0.96222,0.105646,0.676378,0.719308,0.197745,0.963853,0.730377,0.627316,0.0180783,0.376785,0.13061,0.811161,0.199282,0.104985,0.777152,0.680969,0.474822,0.489178,0.354672,0.944396,0.847153,0.136982,0.568449,0.0547243,0.778002,0.477735,0.563205,0.320587,0.421616,0.276536,0.546192,0.651996,0.574026,0.903392,0.701431,0.6228,0.631223,0.583746,0.849882,0.4251,0.215487,0.647255,0.963207,0.750413,0.686411,0.698503,0.437538,0.889283,0.943705,0.903597,0.0169463,0.367444,0.654879,0.590442,0.851674,0.514278,0.468332,0.498227,0.755277,0.0330497,0.0838954,0.809306,0.737603,0.373357,0.355299,0.823022,0.185643,0.611422,0.571696,0.743427,0.620858,0.348027,0.269678,0.915194,0.916573,0.260247,0.522439,0.199266,0.999589,0.161435,0.584569,0.000633001,0.900798,0.0747434,0.478545,0.289009,0.894435,0.0669634,0.584081,0.950621,0.43823,0.138841,0.685845,0.569874,0.659359,0.840267,0.172237,0.31198,0.140626,0.495892,0.212953,0.46568,0.900677,0.936319,0.846863,0.629245,0.903636,0.214523,0.471569,0.634759,0.0280678,0.820662,0.270749,0.434371,0.778201,0.542338,0.913763,0.201617,0.414214,0.920328,0.330948,0.692759,0.93396,0.0363104,0.932146,0.444705,0.697726,0.355886,0.609451,0.84289,0.156822,0.516553,0.222116,0.371394,0.0735759,0.516148,0.101531,0.699269,0.3598,0.919848,0.02575,0.292618,0.853681,0.952528,0.111607,0.365667,0.0627685,0.772565,0.133399,0.822417,0.374898,0.733727,0.469542,0.115828,0.777908,0.409434,0.738187,0.199064,0.88328,0.575217,0.325357,0.38587,0.944845,0.43281,0.506243,0.247533,0.75797,0.0723552,0.468136,0.450766,0.792706,0.129187,0.159961,0.129573,0.494603,0.369199,0.191838,0.807693,0.236439,0.507564,0.886228,0.303677,0.653156,0.0678204,0.773555,0.165292,0.714232,0.291818,0.62885,0.878443,0.9518,0.922626,0.408865,0.594157,0.798738,0.0725176,0.0549518,0.643114,0.496488,0.770802,0.429967,0.461082,0.711724,0.748369,0.026559,0.88275,0.948637,0.563956,0.221654,0.151424,0.217779,0.935801,0.945086,0.0582318,0.588978,0.353411,0.824687,0.438876,0.0439237,0.743753,0.783403,0.500639,0.63904,0.813361,0.280842,0.631894,0.143138,0.55598,0.783166,0.459484,0.541832,0.635371,0.893771,0.675256,0.782589,0.407176,0.668417,0.357082,0.934518,0.825722,0.772643,0.943017,0.376789,0.319689,0.788244,0.864093,0.425783,0.0564132,0.635333,0.368054,0.780539,0.855675,0.963986,0.604025,0.0513909,0.0905744,0.938252,0.160256,0.820056,0.0363941,0.94501,0.170906,0.524798,0.899077,0.397036,0.636839,0.250498,0.709747,0.696496,0.704182,0.359164,0.156296,0.79395,0.102405,0.711167,0.783711,0.354095,0.669683,0.75133,0.0905833,0.89391,0.0444841,0.470756,0.752283,0.777866,0.827646,0.532856,0.831219,0.363676,0.818803,0.304427,0.941252,0.958173,0.789089,0.00965846,0.905075,0.715301,0.627575,0.246222,0.0539302,0.881272,0.595239,0.416,|0.232899,0.485944,0.622659,0.82686,0.18629,0.168095,0.754733,0.115598,0.790861,0.461575,0.720082,0.150859,0.0997197,0.256563,0.399786,0.817575,0.79134,0.443537,0.035706,0.699943,0.68719,0.326843,0.741823,0.935636,0.377748,0.226562,0.164976,0.672308,0.941527,0.39061,0.319258,0.957791,0.717721,0.376481,0.961467,0.476165,0.921125,0.737145,0.707329,0.183236,0.889491,0.97597,0.647801,0.899172,0.133006,0.620869,0.469759,0.993601,0.691154,0.461318,0.80985,0.689813,0.978894,0.848179,0.332725,0.504516,0.679651,0.638067,0.280166,0.391845,0.950217,0.465882,0.0665362,0.831101,0.832135,0.957945,0.818061,0.853492,0.235374,0.262747,0.309516,0.733913,0.206315,0.718378,0.483514,0.102691,0.411894,0.484678,0.658027,0.550806,0.21479,0.965671,0.749218,0.034569,0.0269674,0.0319288,0.392178,0.78447,0.96523,0.304573,0.0825589,0.801158,0.507145,0.636114,0.453657,0.85354,0.227015,0.57817,0.978261,0.691341,0.312554,0.859037,0.127383,0.353789,0.483151,0.0264987,0.414137,0.0142856,0.205132,0.707785,0.710262,0.849716,0.616977,0.423543,0.160455,0.0483626,0.349187,0.317191,0.977325,0.125591,0.54873,0.471252,0.667854,0.281103,0.674401,0.588535,0.593016,0.135708,0.714535,0.13199,0.0778531,0.273705,0.370688,0.178554,0.424705,0.673118,0.682046,0.301051,0.225547,0.539236,0.388957,0.897043,0.552855,0.923221,0.55294,0.813999,0.315475,0.31424,0.142729,0.0245802,0.0918685,0.858381,0.769356,0.596878,0.380007,0.930065,0.479194,0.964461,0.18096,0.152586,0.831652,0.692097,0.834168,0.184061,0.852945,0.0174782,0.439675,0.930708,0.537525,0.816952,0.789221,0.97569,0.281706,0.242027,0.950908,0.118398,0.0748402,0.0676618,0.569961,0.554874,0.683168,0.369253,0.0392077,0.0344877,0.6038,0.255736,0.105687,0.337475,0.912501,0.493267,0.259983,0.344552,0.68564,0.410012,0.939489,0.672506,0.375368,0.675518,0.403786,0.842352,0.471956,0.865224,0.621621,0.240454,0.87116,0.927013,0.651764,0.0314842,0.758565,0.938525,0.64266,0.0722346,0.980971,0.642492,0.512339,0.786039,0.301158,0.70437,0.115054,0.0159116,0.588557,0.91481,0.828035,0.123425,0.620627,0.97756,0.736662,0.777644,0.729804,0.993225,0.165073,0.586984,0.614762,0.805629,0.947909,0.900762,0.561918,0.583716,0.583034,0.422901,0.458288,0.813634,0.588978,0.120192,0.615019,0.293213,0.366049,0.817378,0.530811,0.785113,0.372659,0.44621,0.775065,0.809033,0.551274,0.178134,0.579126,0.789042,0.0417714,0.491291,0.998404,0.824609,0.68104,0.0676025,0.983155,0.962399,0.846858,0.928063,0.166335,0.319744,0.543745,0.112657,0.990287,0.171811,0.862918,0.385911,0.185974,0.767334,0.019165,0.0954559,0.989696,0.00786752,0.08834,0.881638,0.975094,0.223102,0.991677,0.0943006,0.98124,0.0023874,0.679344,0.342196,0.584066,0.226375,0.252169,0.24477,0.415804,0.490461,0.24534,0.227814,0.0497052,0.5375,0.0466948,0.0507946,0.131577,0.202915,0.996583,0.676315,0.657069,0.350973,0.681442,0.852223,0.00166345,0.876333,0.130635,0.861182,0.216022,0.25721,0.112564,0.547621,0.387942,0.256448,0.984655,0.116919,0.979168,0.996976,0.693712,0.448768,0.607565,0.446231,0.08799,0.549175,0.998875,0.530823,0.291372,0.41411,0.56611,0.575098,0.913038,0.907633,0.841565,0.937489,0.965801,0.772877,0.258887,0.0456164,0.218701,0.85616,0.36419,0.952868,0.561912,0.270889,0.544085,0.20361,0.222847,0.279845,0.220876,0.16276,0.473848,0.762305,0.10718,0.427419,0.434215,0.722128,0.814835,0.352861,0.56338,0.486937,0.56634,0.550211,0.558746,0.734911,0.385475,0.816076,0.705298,0.829441,0.276129,0.0265549,0.17928,0.884601,0.568795,0.682428,0.421939,0.663966,0.239451,0.401418,0.980407,0.484855,0.541192,0.486018,0.848994,0.744545,0.402643,0.680731,0.519599,0.64551,0.20545,0.991144,0.830773,0.843433,0.401778,0.343548,0.40325,0.575392,0.47494,0.497826,0.876029,0.0696184,0.203583,0.873659,0.3286,0.747172,0.23335,0.289403,0.0128053,0.184746,0.565735,0.194196,0.806355,0.601807,0.463513,0.0174568,0.418244,0.438519,0.355143,0.67219,0.760698,0.276386,0.966317,0.937137,0.644436,0.54284,0.376238,0.0466753,0.193529,0.517081,0.638481,0.851176,0.321468,0.370795,0.959601,0.475895,0.873716,0.502886,0.11279,0.895217,0.766567,0.986258,0.46143,0.149554,0.997897,0.00227702,0.541656,0.70081,0.342311,0.1926,0.175229,0.810359,0.194064,0.521677,0.239015,0.726027,0.6713,0.523808,0.322468,0.103784,0.511128,0.270371,0.91896,0.27366,0.482851,0.951333,0.866906,0.486148,0.641972,0.736846,0.270535,0.33178,0.724645,0.687123,0.362904,0.466388,0.642551,0.0979161,0.849635,0.0297518,0.729854,0.267435,0.651655,0.293413,0.581556,0.61531,0.219843,0.535585,0.237572,0.765858,0.762289,0.597794,0.121539,0.866526,0.546551,0.175234,0.0147662,0.60686,0.459316,0.338224,0.0953615,0.41576,0.818842,0.367806,0.537895,0.0935122,0.087689,0.876997,0.810161,0.318437,0.348326,0.980749,0.46555,0.579238,0.0430126,0.699292,0.767795,0.935716,0.411708,0.26662,0.00973231,0.462729,0.298533,0.637111,0.984,0.368243,0.215397,0.214861,0.593641,0.637792,0.374961,0.713536,0.201804,0.689564,0.104205,0.826575,0.370752,0.268295,0.470423,0.528328,0.767022,0.329769,0.834059,0.200246,0.138926,0.445747,0.164249,0.729469,0.155312,0.313352,0.965274,0.701998,0.330102,0.302504,0.754675,0.0873696,0.765742,0.321803,0.555821,0.510645,0.416347,0.968088,0.707464,0.94869,0.489759,0.0945616,0.357404,0.0869946,0.64458,0.327794,0.615451,0.369683,0.41434,0.145184,0.0916948,0.691443,0.415116,0.866987,0.492808,0.816961,0.852836,0.231818,0.12296,0.20886,0.205176,0.148726,0.469389,0.180653,0.13024,0.845042,0.633576,0.299586,0.130332,0.71483,0.327564,0.490978,0.0428049,0.684166,0.689601,0.0565849,0.92575,0.937379,0.668735,0.775393,0.0507346,0.273778,0.0854575,0.50554,0.506166,0.494107,0.913447,0.331039,0.738173,0.660534,0.0235887,0.0935627,0.563495,0.0123375,0.536726,0.509999,0.0443503,0.0473617,0.0127149,0.222934,0.43768,0.734543,0.0842025,0.444601,0.937072,0.211252,0.0829145,0.836522,0.0255994,0.207245,0.60512,0.0931289,0.44426,0.796448,0.434235,0.466046,0.980693,0.509105,0.149794,0.964679,0.666854,0.335748,0.723463,0.500418,0.405035,0.974454,0.145074,0.776425,0.878846,0.44308,0.962224,0.129613,0.140055,0.714609,0.0363806,0.62635,0.0861319,0.48137,0.209583,0.522717,0.902588,0.298068,0.0179607,0.993827,0.490993,0.251894,0.662029,0.758267,0.900794,0.59696,0.272265,0.710062,0.651749,0.192186,0.965385,0.141718,0.745627,0.5412,0.60757,0.673428,0.112257,0.823089,0.212662,0.183033,0.0153464,0.869955,0.265386,0.798614,0.322044,0.128797,0.656877,0.52427,0.368011,0.437822,0.533122,0.793245,0.830445,0.299727,0.698065,0.764364,0.062128,0.923221,0.684706,0.93236,0.68385,0.45419,0.116861,0.834087,0.595167,0.940845,0.483583,0.42932,0.821346,0.571404,0.71869,0.457151,0.547518,0.540694,0.26754,0.332511,0.455603,0.173944,0.743423,0.760679,0.499195,0.0876035,0.321612,0.777202,0.970404,0.573355,0.0909231,0.563426,0.131731,0.587139,0.427841,0.947564,0.0527092,0.157285,0.551039,0.188877,0.626836,0.431692,0.81912,0.0984407,0.21964,0.590732,0.466206,0.13816,0.907318,0.471864,0.200232,0.494948,0.981783,0.541713,0.825595,0.210483,0.313048,0.732947,0.00814557,0.480631,0.643683,0.825869,0.775302,0.26193,0.326947,0.896545,0.40545,0.486925,0.878322,0.861257,0.119787,0.802464,0.692518,0.454985,0.610418,0.730671,0.0345982,0.0455884,0.199051,0.13425,0.547817,0.312769,0.299209,0.679202,0.942214,0.925596,0.059719,0.467548,0.908423,0.435278,0.584326,0.792055,0.519487,0.991403,0.876284,0.556802,0.658127,0.936455,0.787235,0.90716,0.332289,0.936335,0.638606,0.575955,0.581411,0.204826,0.270859,0.382732,0.442856,0.725922,0.18155,0.666316,0.0815574,0.240853,0.513895,0.452823,0.153455,0.89593,0.75071,0.798144,0.282792,0.387605,0.303067,0.0267434,0.800955,0.716723,0.385211,0.170112,0.890017,0.0278776,0.0142192,0.71192,0.0571601,0.305149,0.530184,0.0952995,0.492943,0.587622,0.592341,0.523956,0.742851,0.546716,0.0712683,0.953614,0.547599,0.460389,0.666261,0.00282222,0.635568,0.545023,0.83581,0.236792,0.691416,0.017962,0.143981,0.0301175,0.652826,0.966055,0.183681,0.336629,0.913875,0.034979,0.0761848,0.480228,0.690596,0.475749,0.618648,0.841099,0.163047,0.189198,0.618554,0.941938,0.308426,0.569246,0.488325,0.0857795,0.564819,0.597845,0.812783,0.65723,0.786737,0.438605,0.730563,0.712064,0.958478,0.389977,0.147378,0.76541,0.415828,0.224573,0.641784,0.457249,0.0260257,0.187419,0.101256,0.603774,0.424188,0.961449,0.177283,0.202098,0.952731,0.685031,0.406944,0.702216,0.350559,0.797737,0.656465,0.0300319,0.683126,0.755439,0.188594,0.0715076,0.960347,0.0798004,0.540299,0.945263,0.666152,0.404329,0.825856,0.170488,0.956785,0.714545,0.212766,0.817113,0.122853,0.0568624,0.994572,0.190364,0.936948,0.2216,0.100656,0.944466,0.593699,0.834743,0.333605,0.387946,0.361156,0.338834,0.952572,0.738775,0.73906,0.44798,0.965654,0.938434,0.406261,0.256339,0.864711,0.516843,0.390293,0.521592,0.451421,0.795066,0.0433091,0.309894,0.77339,0.197222,0.488386,0.693664,0.901189,0.971825,0.880405,0.163525,0.485095,0.41494,0.636226,0.413005,0.790581,0.292838,0.00671452,0.894365,0.873664,0.0696956,0.629446,0.846287,0.834286,0.349071,0.68739,0.0713039,0.280176,0.255145,0.00783074,0.134366,0.140416,0.080013,0.870106,0.535311,0.646702,0.352584,0.961971,0.865011,|0.000889361,0.724941,0.577565,0.39335,0.302732,0.678913,0.536507,0.362368,0.579166,0.445458,0.312062,0.847914,0.0898463,0.785792,0.459934,0.942499,0.0359084,0.561533,0.768502,0.534209,0.0979169,0.193607,0.547271,0.19924,0.52928,0.651576,0.0431064,0.994574,0.520991,0.204461,0.483909,0.17905,0.567482,0.565396,0.57127,0.0614746,0.435916,0.578992,0.0148277,0.423424,0.650039,0.437213,0.251277,0.435096,0.20214,0.225628,0.647038,0.227671,0.992101,0.493689,0.195841,0.191818,0.289264,0.113836,0.105885,0.208437,0.870796,0.670263,0.33535,0.0219957,0.785976,0.4776,0.442797,0.427671,0.190616,0.591505,0.170521,0.362613,0.420815,0.514558,0.584157,0.355935,0.391501,0.661522,0.971727,0.696364,0.70181,0.0721072,0.790488,0.2773,0.0776128,0.698427,0.92278,0.111717,0.630217,0.492841,0.175971,0.213805,0.947962,0.0966181,0.0499365,0.529258,0.957711,0.426319,0.885389,0.723924,0.931782,0.933676,0.0969073,0.672568,0.813577,0.604926,0.704277,0.820049,0.620119,0.29192,0.421814,0.843938,0.721429,0.534365,0.996837,0.242319,0.935289,0.989765,0.595314,0.67523,0.974843,0.302429,0.189411,0.899448,0.838481,0.425956,0.807027,0.471708,0.252541,0.714686,0.1267,0.463493,0.479756,0.880132,0.874108,0.509689,0.0921319,0.283828,0.343763,0.520122,0.269127,0.679719,0.972911,0.268256,0.404043,0.419189,0.392819,0.791953,0.847789,0.833705,0.236294,0.583573,0.974285,0.425273,0.774253,0.263408,0.106668,0.753709,0.38035,0.067071,0.080358,0.504672,0.927619,0.712287,0.496199,0.302557,0.853608,0.556422,0.267167,0.805817,0.643252,0.44926,0.288903,0.419655,0.678515,0.59188,0.148156,0.254262,0.76496,0.746272,0.546172,0.184077,0.32067,0.0561875,0.921836,0.731765,0.522349,0.215856,0.529586,0.551263,0.153152,0.385759,0.687267,0.78611,0.883159,0.920761,0.0479169,0.17866,0.132658,0.321913,0.786963,0.404545,0.41863,0.733107,0.814839,0.724421,0.746355,0.404506,0.767895,0.207998,0.642159,0.0928876,0.60214,0.985334,0.881402,0.05612,0.921572,0.975457,0.0010854,0.156169,0.747732,0.5513,0.925494,0.147926,0.211136,0.135766,0.565868,0.657805,0.121888,0.62846,0.656153,0.82752,0.302099,0.418224,0.0277479,0.488989,0.386717,0.762287,0.57511,0.602876,0.839545,0.950355,0.494273,0.821245,0.345327,0.199756,0.100174,0.360822,0.372385,0.847129,0.830439,0.561532,0.700185,0.702038,0.26362,0.564502,0.673692,0.224286,0.958437,0.176047,0.514601,0.226426,0.305411,0.138385,0.0964363,0.0261357,0.0888962,0.17828,0.0909566,0.943245,0.846607,0.207413,0.858883,0.995163,0.704654,0.366737,0.254889,0.275179,0.683174,0.67225,0.795599,0.55796,0.962505,0.959346,0.0880781,0.882809,0.198731,0.560384,0.45118,0.149728,0.701933,0.626782,0.995991,0.701574,0.775123,0.445489,0.563163,0.723373,0.764395,0.395188,0.173198,0.563444,0.673324,0.174714,0.698706,0.894791,0.327656,0.368024,0.120421,0.560513,0.699669,0.255121,0.306172,0.533079,0.972159,0.929,0.693991,0.134296,0.72116,0.907167,0.379336,0.846054,0.0932947,0.0383514,0.255636,0.192052,0.61361,0.481486,0.325561,0.0788912,0.570432,0.32512,0.802255,0.116403,0.024673,0.360325,0.837031,0.252169,0.891792,0.790122,0.856041,0.41458,0.72835,0.831666,0.538016,0.0829822,0.690062,0.131316,0.228921,0.41254,0.130366,0.471445,0.00830692,0.618951,0.0987291,0.871805,0.669382,0.813252,0.0642938,0.882462,0.725721,0.469706,0.167423,0.628901,0.616131,0.75421,0.0550045,0.417683,0.601325,0.448725,0.0993696,0.314889,0.526772,0.0885162,0.933666,0.814758,0.203922,0.256462,0.914593,0.357627,0.704892,0.10898,0.589835,0.525308,0.896846,0.220258,0.436589,0.226857,0.585939,0.908523,0.0256171,0.570903,0.782907,0.496105,0.463376,0.0510401,0.88056,0.576669,0.973303,0.374945,0.133385,0.932405,0.901199,0.576918,0.23108,0.271516,0.0573158,0.789342,0.385535,0.10571,0.0654791,0.667848,0.599507,0.352922,0.255161,0.469325,0.0942934,0.672096,0.838688,0.483687,0.535643,0.143992,0.775234,0.0130337,0.347961,0.196441,0.791242,0.19704,0.83748,0.996175,0.246251,0.673806,0.189329,0.122429,0.14876,0.74481,0.423605,0.980738,0.46079,0.374243,0.0516662,0.645194,0.388982,0.400889,0.940878,0.743083,0.0813848,0.604685,0.832612,0.2443,0.653832,0.0376083,0.508879,0.546152,0.251741,0.328467,0.755844,0.573529,0.231812,0.143812,0.172725,0.0985862,0.423733,0.530465,0.667937,0.0238258,0.143853,0.532372,0.563365,0.81562,0.378347,0.800077,0.64995,0.376233,0.857305,0.667015,0.0660064,0.213037,0.90408,0.0950577,0.938316,0.795763,0.69826,0.968956,0.595424,0.149693,0.926292,0.0118833,0.00843579,0.537423,0.854226,0.205731,0.272605,0.341764,0.948445,0.741195,0.369703,0.177192,0.579316,0.983954,0.752353,0.870485,0.0675375,0.866063,0.949188,0.775923,0.0361152,0.773152,0.644509,0.809584,0.891378,0.0883621,0.844487,0.302538,0.180285,0.633842,0.0622303,0.425545,0.899536,0.460142,0.857839,0.19401,0.72177,0.27942,0.614192,0.464059,0.338705,0.709593,0.457559,0.938355,0.762016,0.967814,0.173046,0.149786,0.00199807,0.766671,0.994861,0.954328,0.821351,0.756151,0.720959,0.777982,0.290673,0.111221,0.721411,0.692025,0.692791,0.800732,0.355513,0.959551,0.802551,0.143918,0.246046,0.577736,0.0303565,0.470068,0.147898,0.20669,0.3223,0.560103,0.449336,0.85888,0.317359,0.279674,0.945271,0.155255,0.969734,0.856002,0.477283,0.716578,0.401237,0.159404,0.268695,0.0780939,0.928526,0.130936,0.581945,0.334571,0.430479,0.471471,0.498563,0.752779,0.921494,0.5033,0.488997,0.291928,0.592171,0.411381,0.0447085,0.318191,0.42049,0.725753,0.46999,0.426002,0.22309,0.248179,0.640604,0.80597,0.254669,0.450974,0.994505,0.28926,0.12383,0.9392,0.177511,0.0260763,0.90408,0.873462,0.659187,0.560621,0.152789,0.897321,0.377166,0.633026,0.373953,0.969349,0.728533,0.1222,0.461827,0.590866,0.573229,0.15682,0.334023,0.433701,0.089659,0.833488,0.869215,0.518875,0.0516702,0.607316,0.123381,0.891832,0.0796164,0.624285,0.843108,0.942455,0.771007,0.3554,0.1165,0.919871,0.164415,0.397263,0.335342,0.187669,0.140901,0.398146,0.0614496,0.568215,0.349172,0.724826,0.120258,0.387719,0.472819,0.012615,0.172111,0.456392,0.826957,0.574799,0.0162716,0.244041,0.0993024,0.815002,0.67876,0.859956,0.205126,0.844089,0.51811,0.31249,0.739148,0.83348,0.0571045,0.89776,0.823616,0.38522,0.243061,0.107083,0.461535,0.249024,0.744185,0.755274,0.930655,0.799866,0.642633,0.791272,0.3994,0.173031,0.460515,0.204821,0.631585,0.0710584,0.792697,0.471109,0.198057,0.221676,0.317345,0.233592,0.247454,0.775969,0.0128509,0.89711,0.987687,0.541741,0.764355,0.887183,0.812508,0.38884,0.298739,0.413476,0.695496,0.462037,0.637367,0.773925,0.384843,0.377336,0.803148,0.210604,0.0649475,0.572483,0.140132,0.540974,0.169663,0.62919,0.577249,0.782138,0.04846,0.739462,0.783526,0.825532,0.408728,0.832312,0.127783,0.570269,0.607443,0.67774,0.845578,0.544578,0.394745,0.662973,0.865172,0.21967,0.852758,0.392798,0.810342,0.589521,0.791615,0.680493,0.257083,0.399838,0.331194,0.998713,0.971128,0.318635,0.458568,0.542716,0.341592,0.266368,0.243019,0.472887,0.449608,0.901535,0.777829,0.656084,0.429355,0.0211971,0.506832,0.393778,0.760532,0.581265,0.89282,0.220776,0.142753,0.758878,0.440374,0.885904,0.735139,0.924012,0.956918,0.826596,0.0504019,0.942222,0.095463,0.741448,0.254571,0.863204,0.22677,0.590279,0.640158,0.168472,0.575567,0.924071,0.953833,0.195393,0.0659862,0.975822,0.191648,0.247452,0.638518,0.182594,0.312016,0.273629,0.818484,0.112571,0.15684,0.312523,0.811535,0.0794415,0.213697,0.997194,0.605958,0.083787,0.783061,0.458216,0.616815,0.464042,0.530886,0.245776,0.17295,0.457572,0.881849,0.0868864,0.592854,0.545445,0.676798,0.0484767,0.531205,0.486829,0.893743,0.901945,0.735719,0.143949,0.449899,0.776363,0.0309831,0.82263,0.0244051,0.417463,0.370702,0.853231,0.652958,0.31988,0.288065,0.416187,0.565242,0.18677,0.983401,0.224814,0.157697,0.0121366,0.128275,0.295252,0.553186,0.61257,0.007146,0.492167,0.844966,0.486555,0.213629,0.44121,0.507743,0.865783,0.597377,0.114124,0.680144,0.930747,0.716384,0.473319,0.648994,0.279437,0.959262,0.340383,0.234508,0.27061,0.755981,0.00441635,0.92513,0.00342309,0.126233,0.220185,0.726755,0.494864,0.10704,0.660251,0.0314775,0.508684,0.0522518,0.301744,0.637845,0.0496073,0.742866,0.244493,0.893243,0.423055,0.330031,0.412851,0.738154,0.779707,0.153794,0.488708,0.725917,0.0960793,0.843106,0.186369,0.791143,0.293552,0.989789,0.884122,0.339105,0.776325,0.558365,0.302795,0.626436,0.820148,0.867531,0.751314,0.486488,0.292521,0.148754,0.418309,0.292184,0.503469,0.142075,0.257273,0.329878,0.03869,0.725792,0.579924,0.0867411,0.145467,0.199259,0.869424,0.241705,0.74294,0.99172,0.629293,0.0963459,0.985347,0.229827,0.35294,0.375742,0.636735,0.544564,0.146746,0.641805,0.358818,0.824299,0.217504,0.489449,0.495454,0.490196,0.762834,0.0345624,0.600538,0.102914,0.541569,0.462772,0.689126,0.522856,0.633213,0.712513,0.567655,0.6727,0.990828,0.546961,0.663812,0.687299,0.256545,0.508449,0.553182,0.816895,0.320524,0.0832173,0.120161,0.287887,0.502389,0.475029,0.825002,0.209546,0.41493,0.569633,0.272492,0.974044,0.28453,0.674203,0.0290138,0.771804,0.501602,0.115517,0.199883,0.45532,0.560993,0.969462,0.343679,0.0916461,0.0464028,0.559436,0.803404,0.767339,0.545903,0.191463,0.659051,0.948553,0.948095,0.639495,0.731801,|0.731681,0.836912,0.449753,0.0859769,0.266177,0.768546,0.551132,0.756101,0.0589334,0.295722,0.0163199,0.203604,0.151341,0.317609,0.897276,0.556424,0.411828,0.434793,0.821942,0.187907,0.587932,0.610797,0.832186,0.696977,0.498641,0.817311,0.708436,0.273382,0.949049,0.30869,0.419976,0.558172,0.678395,0.779366,0.800288,0.54216,0.605138,0.970276,0.754929,0.377563,0.173048,0.0371264,0.795515,0.704059,0.132397,0.820105,0.605052,0.427346,0.0671751,0.67934,0.794249,0.26839,0.573028,0.091765,0.164901,0.974635,0.691445,0.196632,0.0558002,0.47334,0.551331,0.887603,0.269656,0.534069,0.773816,0.321599,0.591588,0.293064,0.719572,0.0621934,0.235429,0.900907,0.906728,0.713431,0.110977,0.0994974,0.0788834,0.111331,0.401034,0.700795,0.496565,0.523272,0.847892,0.854862,0.00823396,0.489535,0.996359,0.40207,0.634034,0.00346899,0.864182,0.74018,0.798654,0.686879,0.238209,0.0539043,0.512807,0.155326,0.804753,0.840658,0.879643,0.111139,0.959063,0.283625,0.762634,0.15445,0.551008,0.151113,0.594741,0.623717,0.283235,0.866467,0.848229,0.672081,0.394499,0.432031,0.286602,0.103401,0.943428,0.791291,0.539743,0.8764,0.0860029,0.526746,0.65253,0.302166,0.206592,0.444321,0.254521,0.768855,0.865359,0.837426,0.37533,0.189161,0.139841,0.461515,0.311469,0.297171,0.419505,0.255369,0.259443,0.0330217,0.806026,0.852738,0.681495,0.449035,0.104221,0.621958,0.881831,0.583575,0.559838,0.24419,0.370726,0.418037,0.310979,0.823078,0.812363,0.844357,0.242461,0.369513,0.36755,0.0840122,0.156518,0.0633128,0.483051,0.773127,0.838274,0.467913,0.542968,0.820236,0.576893,0.115082,0.886294,0.379769,0.22659,0.204993,0.0716699,0.718639,0.407983,0.814352,0.308813,0.929852,0.819278,0.904855,0.641664,0.173316,0.540179,0.300238,0.353648,0.455287,0.427655,0.861469,0.438535,0.0493729,0.571816,0.15848,0.0910389,0.665974,0.652025,0.112867,0.0957063,0.583584,0.195778,0.254196,0.097435,0.845293,0.618251,0.684739,0.337389,0.663836,0.0905179,0.0565954,0.709999,0.409241,0.0463549,0.201022,0.13673,0.544143,0.398773,0.478159,0.912184,0.143562,0.556668,0.694236,0.184192,0.615686,0.234222,0.586444,0.356982,0.803964,0.562838,0.549937,0.147695,0.998687,0.133073,0.787607,0.445509,0.703112,0.0695609,0.729741,0.759982,0.544899,0.263865,0.357166,0.0584388,0.0912346,0.106848,0.762001,0.405101,0.943072,0.196951,0.882836,0.956279,0.789683,0.862354,0.880729,0.328973,0.516223,0.340762,0.98954,0.970213,0.925697,0.565821,0.866342,0.59977,0.33814,0.268074,0.435853,0.272767,0.708613,0.631173,0.663464,0.0256891,0.214538,0.247825,0.132381,0.666083,0.0087285,0.483179,0.520978,0.259434,0.638697,0.3527,0.056742,0.370642,0.699252,0.656264,0.0443758,0.133879,0.707242,0.675958,0.460623,0.673072,0.402351,0.175079,0.383373,0.37091,0.969643,0.459579,0.986478,0.434547,0.611255,0.255253,0.761518,0.900871,0.91715,0.974865,0.691604,0.571491,0.767488,0.985013,0.386848,0.756679,0.729874,0.404057,0.814662,0.648066,0.79102,0.0281493,0.275399,0.607986,0.730351,0.423524,0.337265,0.783622,0.425914,0.259579,0.294124,0.705824,0.76323,0.726479,0.82219,0.87959,0.128575,0.356326,0.476238,0.345778,0.51755,0.940313,0.985689,0.697831,0.623179,0.18176,0.499088,0.346515,0.593901,0.671072,0.23859,0.61326,0.0879617,0.807304,0.746575,0.261495,0.152649,0.8069,0.0838065,0.13934,0.52597,0.523301,0.0558565,0.617589,0.391986,0.119368,0.851117,0.783474,0.380525,0.810954,0.178743,0.397653,0.259202,0.518949,0.13793,0.785057,0.406105,0.779148,0.0842342,0.703109,0.137623,0.222692,0.469398,0.17508,0.84577,0.402647,0.941564,0.119222,0.0834448,0.358136,0.906981,0.59446,0.209949,0.686903,0.640383,0.431803,0.539897,0.915802,0.422058,0.452182,0.344051,0.297916,0.783494,0.0166046,0.034326,0.78684,0.632617,0.0235318,0.898071,0.478178,0.387,0.660248,0.112617,0.171901,0.720854,0.713751,0.737128,0.528038,0.92619,0.781543,0.582653,0.240619,0.566578,0.296571,0.941614,0.637461,0.930236,0.278186,0.559889,0.852853,0.229674,0.338123,0.800879,0.0483652,0.0644009,0.723023,0.931478,0.982391,0.328286,0.205125,0.462764,0.918035,0.363954,0.147711,0.430893,0.337546,0.0493491,0.0451726,0.385248,0.140173,0.969276,0.531507,0.504284,0.0579355,0.462812,0.506664,0.222622,0.951646,0.785418,0.601761,0.0631491,0.641796,0.224795,0.589484,0.991635,0.64819,0.153616,0.526984,0.928873,0.845565,0.429876,0.290717,0.945992,0.636256,0.474774,0.735959,0.344368,0.526409,0.540628,0.0585986,0.877959,0.0139326,0.841873,0.00656843,0.0223321,0.991929,0.0795853,0.531585,0.62921,0.47544,0.192699,0.935427,0.5219,0.756596,0.788426,0.979948,0.139087,0.498253,0.294553,0.988344,0.723533,0.732587,0.00151622,0.101663,0.0993291,0.15042,0.804083,0.967014,0.166767,0.220386,0.256504,0.780928,0.505255,0.666859,0.626378,0.902499,0.556844,0.381335,0.633826,0.92467,0.0524638,0.0203153,0.612238,0.384551,0.116281,0.0066784,0.782415,0.147079,0.225905,0.378454,0.229708,0.914498,0.385059,0.645053,0.136585,0.825332,0.833584,0.315198,0.270023,0.503161,0.272126,0.345222,0.620234,0.517649,0.0399294,0.343706,0.297541,0.927968,0.305251,0.197543,0.667408,0.580916,0.19025,0.0702739,0.195596,0.557524,0.943444,0.716281,0.377645,0.22746,0.856454,0.389316,0.271738,0.0823129,0.533243,0.17498,0.223235,0.670307,0.14491,0.171677,0.228519,0.790514,0.347759,0.891247,0.277558,0.311763,0.947621,0.286898,0.783291,0.892617,0.375925,0.721106,0.82796,0.94285,0.47085,0.621612,0.822783,0.0161872,0.46669,0.850109,0.486124,0.0241659,0.106756,0.539685,0.34565,0.104541,0.0132052,0.365865,0.312422,0.716083,0.579886,0.674288,0.389671,0.970963,0.524275,0.217103,0.2663,0.509335,0.942779,0.639175,0.759213,0.192826,0.541235,0.21697,0.228103,0.919894,0.356354,0.485452,0.487682,0.643582,0.0886567,0.169355,0.374221,0.373483,0.136584,0.73013,0.428515,0.357107,0.441108,0.627293,0.368087,0.570897,0.432525,0.705079,0.41139,0.653911,0.0328343,0.670056,0.228444,0.289096,0.0338008,0.69198,0.909031,0.239864,0.136066,0.00765902,0.818872,0.591971,0.943234,0.385405,0.566225,0.0743091,0.621519,0.969999,0.494407,0.464381,0.121331,0.456171,0.955074,0.580281,0.601083,0.0223577,0.599386,0.5686,0.182352,0.723906,0.945518,0.888272,0.647147,0.398625,0.726281,0.108429,0.342147,0.285103,0.999225,0.690287,0.797799,0.421837,0.722182,0.522103,0.550578,0.0573422,0.736426,0.932488,0.990261,0.986937,0.00575805,0.150472,0.204228,0.899062,0.503081,0.807975,0.863796,0.761315,0.480774,0.201786,0.815297,0.162239,0.712992,0.629507,0.0757346,0.773549,0.840085,0.28021,0.696846,0.0629799,0.00601047,0.811703,0.801062,0.56284,0.0219932,0.11941,0.692101,0.475097,0.522756,0.117148,0.566616,0.994771,0.914726,0.860711,0.121571,0.586316,0.871718,0.0759907,0.286099,0.0574963,0.454425,0.693058,0.51613,0.105007,0.255663,0.107096,0.646176,0.243638,0.0507631,0.238342,0.334299,0.888045,0.91808,0.96648,0.161929,0.103588,0.886706,0.021655,0.358267,0.139848,0.232286,0.75046,0.25441,0.978805,0.771364,0.756596,0.852192,0.454144,0.702288,0.734627,0.417558,0.141246,0.652514,0.0391685,0.929916,0.504461,0.321755,0.0273095,0.132218,0.224503,0.203964,0.636288,0.0914314,0.473791,0.290658,0.41426,0.240364,0.526972,0.180965,0.94053,0.428177,0.579428,0.695166,0.204442,0.892028,0.794569,0.171628,0.627287,0.159663,0.650229,0.0823103,0.731896,0.0852113,0.61319,0.912172,0.363717,0.196347,0.215202,0.172397,0.842472,0.529494,0.415448,0.10691,0.229623,0.842001,0.593395,0.674341,0.685493,0.0401847,0.234463,0.219892,0.921811,0.427455,0.528041,0.879085,0.58572,0.514389,0.816236,0.76093,0.582645,0.084613,0.0382375,0.61527,0.271801,0.806636,0.43923,0.468723,0.783508,0.681845,0.914427,0.45806,0.364184,0.115097,0.174807,0.206898,0.163518,0.719048,0.405467,0.849248,0.126415,0.898306,0.561585,0.966172,0.363796,0.543127,0.391505,0.0642301,0.165987,0.13204,0.710353,0.632911,0.836683,0.221438,0.83736,0.64143,0.103061,0.531575,0.912321,0.961422,0.361719,0.935049,0.0540274,0.160012,0.176741,0.264462,0.414565,0.0305487,0.844403,0.653005,0.00290984,0.477923,0.46514,0.678966,0.418857,0.23943,0.215081,0.76863,0.495084,0.246488,0.771335,0.629297,0.684733,0.82135,0.484853,0.986758,0.108281,0.254968,0.00376171,0.91813,0.0651297,0.185497,0.377776,0.799073,0.890987,0.381516,0.537729,0.345478,0.148042,0.271608,0.936863,0.626312,0.270605,0.682697,0.983134,0.354667,0.305844,0.346154,0.792155,0.296771,0.961648,0.576633,0.653723,0.147224,0.430799,0.76636,0.936073,0.745586,0.106011,0.216602,0.546569,0.583378,0.851139,0.208279,0.780122,0.226646,0.691258,0.844706,0.48736,0.257013,0.95238,0.270769,0.0439353,0.0185297,0.167035,0.704813,0.133638,0.430176,0.879987,0.438479,0.514544,0.202889,0.730573,0.864699,0.0203585,0.428427,0.68092,0.264231,0.570287,0.0956739,0.883019,0.927403,0.131682,0.984282,0.279483,0.26296,0.473823,0.158683,0.390514,0.292794,0.87025,0.692575,0.757538,0.79876,0.617475,0.172582,0.589734,0.881329,0.955636,0.0263015,0.39367,0.147238,0.207381,0.867373,0.602598,0.802297,0.0901543,0.393244,0.834112,0.696879,0.0524525,0.177487,0.703395,0.256452,0.630301,0.539292,0.388398,0.733941,0.00937957,0.656127,0.815827,0.284544,0.999515,0.549769,0.464231,0.901424,0.304055,0.852822,0.614618,0.499878,0.461914,0.51432,0.657013,0.598242,0.240894,0.629331,0.635988,0.0801929,|0.106325,0.108667,0.313517,0.591929,0.870724,0.558634,0.0313843,0.549641,0.0884116,0.330903,0.59607,0.999098,0.97021,0.533655,0.419191,0.65823,0.79476,0.257326,0.676247,0.543616,0.135705,0.456165,0.196916,0.200929,0.010986,0.0396965,0.3847,0.935637,0.846523,0.233283,0.96672,0.117855,0.573613,0.620617,0.0293942,0.0467823,0.305278,0.494863,0.148582,0.321269,0.564813,0.839783,0.422521,0.853159,0.525264,0.876239,0.408997,0.880949,0.768439,0.32483,0.866259,0.72387,0.826209,0.110918,0.641336,0.167469,0.777218,0.608095,0.832699,0.333512,0.326634,0.103797,0.520931,0.298719,0.689029,0.770249,0.988399,0.297436,0.606236,0.587784,0.220699,0.369828,0.171178,0.576282,0.250626,0.315018,0.201093,0.297537,0.881526,0.543471,0.392419,0.782072,0.418268,0.612382,0.269581,0.512211,0.852583,0.431298,0.01668,0.740915,0.0497739,0.514843,0.132545,0.9526,0.755891,0.879893,0.593036,0.970167,0.603203,0.135578,0.666159,0.286851,0.435017,0.48953,0.232572,0.236215,0.0669892,0.889221,0.821545,0.586333,0.199302,0.269313,0.391752,0.878288,0.395602,0.756617,0.790621,0.835459,0.768722,0.999003,0.594622,0.43156,0.537924,0.248114,0.942662,0.918641,0.0590562,0.781046,0.300543,0.925547,0.647011,0.905259,0.996247,0.555588,0.548721,0.0698037,0.553081,0.618643,0.352646,0.357024,0.743854,0.525273,0.00141585,0.452953,0.167096,0.383478,0.72343,0.0261951,0.645103,0.242278,0.573548,0.453394,0.314132,0.654129,0.628951,0.214722,0.985927,0.895082,0.486238,0.317261,0.796142,0.787034,0.469485,0.738455,0.036094,0.734452,0.975071,0.776824,0.939979,0.633446,0.401627,0.418951,0.378319,0.946514,0.533809,0.851548,0.131835,0.9384,0.679149,0.101284,0.698949,0.338211,0.217288,0.449548,0.430665,0.951343,0.607049,0.53726,0.381706,0.34614,0.927711,0.0414079,0.549493,0.878349,0.203124,0.701616,0.861926,0.240929,0.712495,0.0143352,0.721783,0.296884,0.800451,0.611226,0.765543,0.613229,0.324511,0.849684,0.847325,0.370462,0.971461,0.857845,0.568651,0.690691,0.224124,0.985257,0.205004,0.730163,0.230589,0.903274,0.582764,0.0291649,0.49999,0.885703,0.888933,0.676669,0.301162,0.494937,0.31693,0.915624,0.372764,0.659787,0.865304,0.515602,0.738499,0.707111,0.792428,0.607658,0.424309,0.149623,0.0847893,0.0306158,0.800573,0.707355,0.768049,0.360144,0.896732,0.0905053,0.237054,0.393128,0.480577,0.583821,0.207566,0.151852,0.815575,0.0498943,0.309542,0.122064,0.0300306,0.718528,0.756299,0.718799,0.0583658,0.0831464,0.482033,0.347836,0.387806,0.0803319,0.447736,0.940937,0.695851,0.982706,0.0828341,0.0736627,0.0738698,0.980832,0.752311,0.370425,0.946089,0.721106,0.520675,0.132499,0.914109,0.809026,0.384407,0.925305,0.979047,0.996278,0.338836,0.0860726,0.327007,0.0818657,0.627377,0.230601,0.981779,0.720719,0.582121,0.849989,0.120764,0.453754,0.831365,0.155948,0.486688,0.94609,0.0940328,0.71381,0.86745,0.174104,0.256922,0.490457,0.972015,0.925228,0.2459,0.853826,0.803055,0.372019,0.0826881,0.454912,0.659115,0.228577,0.920476,0.800519,0.0124432,0.824178,0.532176,0.102,0.709324,0.086354,0.650132,0.349,0.134648,0.0534772,0.84694,0.685649,0.158895,0.815146,0.391405,0.236998,0.820103,0.567237,0.280211,0.199129,0.111418,0.420506,0.192621,0.465166,0.977139,0.898191,0.479245,0.665654,0.479134,0.791581,0.953453,0.794103,0.589321,0.0570506,0.392455,0.281873,0.652724,0.344429,0.618744,0.527567,0.933858,0.312036,0.486262,0.872525,0.878302,0.31437,0.236432,0.447645,0.744848,0.695456,0.789778,0.718592,0.291648,0.127675,0.502634,0.247238,0.179351,0.141625,0.0894093,0.2087,0.613568,0.606314,0.680969,0.670303,0.0676657,0.127132,0.431406,0.44867,0.394823,0.605565,0.945798,0.508172,0.837737,0.687987,0.268602,0.463138,0.277925,0.796899,0.665999,0.769873,0.207973,0.103813,0.78146,0.83053,0.344585,0.385384,0.984401,0.207319,0.61994,0.619145,0.446278,0.692012,0.128719,0.279257,0.589644,0.000622988,0.622649,0.762382,0.763262,0.267316,0.863595,0.808159,0.172632,0.251093,0.889464,0.221159,0.884559,0.336619,0.63991,0.0863616,0.374157,0.638738,0.566885,0.120579,0.645063,0.694618,0.509139,0.847182,0.437138,0.0332251,0.0699959,0.666375,0.777264,0.252789,0.353815,0.398598,0.0592576,0.586873,0.321828,0.795705,0.926629,0.623868,0.926681,0.427288,0.502747,0.27022,0.5015,0.717715,0.557209,0.489335,0.935902,0.297928,0.699901,0.0901307,0.615204,0.223656,0.374262,0.793366,0.720127,0.664097,0.726084,0.703557,0.588649,0.162248,0.843251,0.160877,0.687765,0.432395,0.0291048,0.667937,0.65655,0.523271,0.0972649,0.00602162,0.77709,0.292284,0.521359,0.141775,0.0556882,0.742163,0.0447125,0.885319,0.0195829,0.770012,0.220096,0.43313,0.490924,0.272925,0.226968,0.92011,0.452463,0.728814,0.763921,0.464383,0.777697,0.696412,0.339595,0.471623,0.737493,0.572133,0.0448362,0.170659,0.806211,0.499387,0.862417,0.813635,0.830425,0.0418646,0.822491,0.481468,0.840383,0.99709,0.188909,0.88639,0.476536,0.868113,0.153263,0.865326,0.277932,0.128595,0.904162,0.166792,0.503711,0.415036,0.74904,0.0868542,0.757078,0.532463,0.581779,0.0355443,0.285336,0.437895,0.76103,0.572785,0.159307,0.895103,0.539036,0.105713,0.474173,0.84306,0.297138,0.841006,0.845055,0.89008,0.335097,0.357094,0.144085,0.00615436,0.68963,0.246471,0.663774,0.776618,0.923226,0.846258,0.364539,0.577397,0.721256,0.336785,0.833804,0.927271,0.869301,0.950363,0.503397,0.980611,0.208334,0.378004,0.417639,0.99196,0.708432,0.701957,0.574506,0.452818,0.964194,0.904686,0.21129,0.859193,0.602021,0.914091,0.740671,0.882734,0.587004,0.165393,0.132709,0.189303,0.363621,0.412358,0.726251,0.0649706,0.802928,0.890729,0.831049,0.0205325,0.959924,0.415345,0.900137,0.145084,0.218073,0.502946,0.526477,0.679679,0.524904,0.664064,0.500832,0.01286,0.594665,0.0615885,0.253402,0.598647,0.741377,0.603586,0.162142,0.591233,0.346998,0.922085,0.971871,0.42713,0.446522,0.225951,0.0964883,0.216257,0.204728,0.752963,0.175025,0.703075,0.569296,0.178331,0.645842,0.582342,0.530427,0.224059,0.540891,0.281238,0.409811,0.30022,0.723528,0.0171574,0.979648,0.471925,0.954875,0.422967,0.967882,0.498388,0.481782,0.846253,0.797014,0.315958,0.333359,0.266821,0.826101,0.222552,0.205623,0.290631,0.193227,0.904196,0.689051,0.714094,0.762277,0.652515,0.695417,0.906763,0.89603,0.781057,0.451356,0.16514,0.0363996,0.882799,0.886666,0.127044,0.201165,0.55056,0.104654,0.491919,0.837828,0.417526,0.504566,0.141568,0.907596,0.361079,0.945849,0.803355,0.438696,0.473492,0.84647,0.427333,0.476779,0.360335,0.64649,0.574097,0.965887,0.821617,0.775437,0.806638,0.789226,0.255694,0.493969,0.357614,0.971374,0.482961,0.095631,0.498526,0.140539,0.467144,0.722116,0.406353,0.0436526,0.035123,0.178611,0.743235,0.848945,0.69624,0.413976,0.693615,0.106731,0.580532,0.0814799,0.0790373,0.428197,0.793236,0.00598389,0.902846,0.424794,0.779993,0.235563,0.378196,0.666127,0.782472,0.649241,0.126129,0.71026,0.607747,0.605265,0.712169,0.695388,0.0547124,0.428682,0.0741539,0.153054,0.798976,0.567649,0.639659,0.239872,0.173237,0.0513162,0.979797,0.0824489,0.196433,0.197589,0.136565,0.410976,0.0953438,0.306866,0.178897,0.890127,0.356349,0.614592,0.827177,0.258369,0.791758,0.601665,0.016468,0.89566,0.624225,0.184909,0.951824,0.371561,0.975539,0.170183,0.542687,0.353441,0.194905,0.629792,0.726144,0.0875946,0.907337,0.908535,0.34477,0.395752,0.362739,0.724683,0.724819,0.743532,0.0779636,0.448938,0.516021,0.0257235,0.484852,0.802173,0.525401,0.832864,0.209495,0.685987,0.466323,0.164444,0.467522,0.963005,0.0438825,0.179644,0.306796,0.658277,0.33554,0.0313665,0.758106,0.479334,0.0954467,0.673938,0.244547,0.115571,0.381944,0.645184,0.693947,0.48513,0.0827004,0.894242,0.817161,0.173828,0.0380216,0.775322,0.168212,0.0797932,0.884496,0.951548,0.185734,0.981239,0.181984,0.238321,0.81752,0.481176,0.304762,0.375651,0.881312,0.195852,0.166431,0.630154,0.847863,0.26984,0.525677,0.381041,0.433676,0.572742,0.269989,0.426982,0.254583,0.4963,0.189901,0.722592,0.496791,0.640032,0.483039,0.351542,0.947362,0.827176,0.246094,0.373602,0.33356,0.824837,0.542326,0.11072,0.186703,0.607118,0.931513,0.918047,0.58796,0.48443,0.169575,0.517845,0.726709,0.756981,0.3471,0.876146,0.666351,0.671731,0.599814,0.0293684,0.229991,0.697944,0.228206,0.0313922,0.293091,0.959795,0.0048095,0.4328,0.442892,0.494145,0.768133,0.469433,0.957892,0.680825,0.00472182,0.25052,0.883638,0.850439,0.610743,0.268303,0.668568,0.194316,0.100832,0.369828,0.41556,0.461775,0.280357,0.423048,0.0733445,0.551399,0.420513,0.264229,0.900724,0.0684765,0.573656,0.219153,0.48555,0.0279794,0.912009,0.15061,0.661048,0.108719,0.137709,0.647379,0.561663,0.968026,0.363964,0.616487,0.336858,0.530094,0.222272,0.446916,0.0931835,0.847215,0.748614,0.263367,0.250361,0.263172,0.281823,0.239747,0.962501,0.540652,0.705389,0.760174,0.699064,0.799146,0.130776,0.318938,0.890949,0.594371,0.803162,0.996046,0.357208,0.398316,0.469799,0.542241,0.587819,0.923983,0.624418,0.554104,0.593418,0.333794,0.87028,0.160184,0.809254,0.801928,0.186319,0.620145,0.72282,0.512695,0.800369,0.532925,0.659303,0.438923,0.97854,0.829724,0.0901714,0.964095,0.396184,0.423941,0.852005,0.558459,0.258748,0.236983,0.209386,0.873515,0.535776,0.839768,0.424841,0.895734,0.63598,0.107712,0.300878,0.923899,0.524286,|0.648757,0.93821,0.393115,0.59458,0.593397,0.683693,0.973508,0.608126,0.375572,0.332393,0.135514,0.880741,0.791939,0.0709727,0.577645,0.284626,0.383983,0.96396,0.458937,0.7621,0.661642,0.277101,0.110897,0.710666,0.876905,0.400998,0.380925,0.825355,0.276982,0.940846,0.990582,0.846406,0.581712,0.0518801,0.883926,0.0477195,0.759391,0.503874,0.812213,0.99103,0.430062,0.978379,0.0214929,0.814511,0.182558,0.959489,0.207291,0.821486,0.542871,0.36358,0.215748,0.706352,0.949366,0.822339,0.0406967,0.872375,0.679526,0.385222,0.27938,0.549197,0.873005,0.25829,0.260419,0.902439,0.493735,0.310128,0.486282,0.0535167,0.0985092,0.516835,0.904361,0.436676,0.602275,0.96645,0.061554,0.114453,0.997191,0.211238,0.00569022,0.0747886,0.206093,0.760498,0.728213,0.887158,0.184657,0.469804,0.0519365,0.254456,0.324855,0.969927,0.86925,0.939016,0.385795,0.994972,0.0321873,0.73728,0.660745,0.30328,0.828863,0.0885183,0.424492,0.118236,0.49145,0.649402,0.561809,0.103046,0.424082,0.925653,0.396192,0.243647,0.523386,0.499043,0.896987,0.309928,0.418879,0.601098,0.283102,0.532686,0.711926,0.794639,0.822338,0.404031,0.430213,0.54195,0.593444,0.320887,0.798713,0.20856,0.788437,0.755835,0.888335,0.861454,0.63973,0.112063,0.889198,0.25417,0.899058,0.0573776,0.522485,0.856459,0.807201,0.460774,0.236463,0.449845,0.879364,0.119615,0.789343,0.734585,0.184246,0.0146132,0.394121,0.0657561,0.590003,0.807139,0.703763,0.609711,0.554192,0.539938,0.705345,0.2871,0.797439,0.361403,0.0976139,0.882015,0.740799,0.0476841,0.900113,0.735868,0.8142,0.907848,0.896316,0.377548,0.621565,0.945185,0.661687,0.0428687,0.179527,0.0146295,0.240568,0.201162,0.231641,0.806383,0.562244,0.685803,0.49893,0.89196,0.75451,0.883564,0.147145,0.209509,0.0398004,0.931649,0.533386,0.662901,0.878165,0.0300301,0.388842,0.163906,0.250778,0.781506,0.10116,0.743736,0.368274,0.390932,0.39324,0.315646,0.832494,0.00300771,0.966118,0.76912,0.125381,0.540059,0.336937,0.0452614,0.777261,0.446949,0.373176,0.26649,0.797441,0.475879,0.192381,0.142961,0.302459,0.574572,0.689623,0.860986,0.357853,0.997993,0.94426,0.253596,0.278014,0.491736,0.45157,0.995761,0.0482329,0.2171,0.822773,0.363519,0.387035,0.882956,0.38237,0.871467,0.139171,0.899488,0.25653,0.365344,0.14281,0.214611,0.523089,0.298529,0.538039,0.661778,0.0658348,0.956264,0.830723,0.487533,0.633349,0.138354,0.459346,0.419985,0.14832,0.346413,0.959956,0.274147,0.366709,0.822604,0.0143375,0.219102,0.365793,0.807373,0.0270523,0.328855,0.220867,0.388755,0.397977,0.587275,0.679812,0.329339,0.0945281,0.831426,0.538591,0.184869,0.502591,0.566811,0.719459,0.339026,0.178235,0.487218,0.183119,0.972837,0.637198,0.662444,0.955003,0.50783,0.199178,0.542113,0.374383,0.731646,0.42431,0.110219,0.411853,0.106377,0.60263,0.909768,0.890106,0.820387,0.307952,0.469548,0.695539,0.420688,0.223315,0.429129,0.964048,0.0180216,0.312791,0.316024,0.465947,0.162561,0.944879,0.267711,0.843441,0.470408,0.979391,0.96042,0.752043,0.710809,0.623173,0.700172,0.721261,0.00957197,0.760862,0.199516,0.710396,0.170466,0.930454,0.332263,0.434647,0.588483,0.660965,0.0697617,0.472206,0.645656,0.180818,0.872104,0.0647816,0.559141,0.157422,0.566067,0.172722,0.00146508,0.582121,0.542932,0.703239,0.815021,0.953081,0.154841,0.0190367,0.106692,0.840402,0.904113,0.736052,0.531451,0.953067,0.346928,0.966969,0.733818,0.669072,0.318897,0.598282,0.495832,0.487849,0.320553,0.831208,0.958528,0.962978,0.250273,0.18775,0.280777,0.136035,0.305051,0.905008,0.421562,0.0402994,0.10501,0.445305,0.855642,0.859363,0.38128,0.517278,0.497699,0.0274274,0.339718,0.065106,0.268795,0.0506777,0.285043,0.88163,0.257466,0.337104,0.00596559,0.0999962,0.466353,0.84506,0.759146,0.570456,0.651305,0.0470521,0.680039,0.466399,0.197273,0.883402,0.675497,0.668633,0.372401,0.0539684,0.767632,0.578754,0.31494,0.294069,0.838209,0.606764,0.0170703,0.617851,0.0104742,0.696327,0.63909,0.946723,0.865049,0.980348,0.699821,0.453601,0.39902,0.0650752,0.412287,0.0454358,0.218756,0.339681,0.887381,0.44039,0.387326,0.311208,0.0262536,0.553957,0.266076,0.868638,0.14097,0.190754,0.968605,0.600882,0.371571,0.717029,0.93272,0.125743,0.39398,0.129116,0.085144,0.511811,0.221848,0.279436,0.00731337,0.166566,0.205584,0.686688,0.120744,0.22159,0.155004,0.912357,0.0449966,0.204627,0.153199,0.732245,0.248544,0.814609,0.300004,0.473431,0.977199,0.410629,0.856821,0.943769,0.167036,0.404458,0.452668,0.480781,0.0753824,0.887205,0.470148,0.513153,0.509463,0.368392,0.395225,0.436812,0.474471,0.620959,0.935616,0.509653,0.484281,0.328928,0.184531,0.765462,0.148894,0.629421,0.65299,0.0223936,0.43066,0.628004,0.460437,0.954348,0.756422,0.235558,0.77652,0.347379,0.655881,0.650537,0.305029,0.9321,0.767367,0.852202,0.373743,0.213003,0.994204,0.353287,0.809622,0.53694,0.832396,0.175483,0.974258,0.342323,0.967846,0.190649,0.11863,0.394382,0.975235,0.767294,0.57898,0.424726,0.165608,0.0251589,0.739199,0.334451,0.969738,0.286618,0.361386,0.834393,0.769679,0.497079,0.096077,0.489483,0.855416,0.93457,0.574676,0.879627,0.128769,0.557847,0.658229,0.517122,0.857763,0.98594,0.5183,0.41849,0.00347322,0.0944181,0.135038,0.404606,0.0528358,0.730515,0.291534,0.304313,0.180179,0.431407,0.265332,0.605437,0.0211083,0.779283,0.496954,0.216508,0.0877891,0.443874,0.116484,0.0309806,0.243085,0.229966,0.654688,0.617393,0.661105,0.947373,0.221343,0.90002,0.151159,0.646436,0.196261,0.916321,0.796537,0.932797,0.895488,0.992822,0.969036,0.0310283,0.852281,0.912373,0.0936287,0.185073,0.359817,0.166767,0.419339,0.734239,0.747921,0.384492,0.521752,0.0582397,0.405984,0.443382,0.0248827,0.53377,0.760623,0.306196,0.159286,0.294493,0.207222,0.115417,0.0210259,0.294292,0.373313,0.591714,0.345049,0.293303,0.200729,0.495525,0.440683,0.837674,0.843618,0.077616,0.406663,0.0137928,0.329747,0.141728,0.612933,0.221097,0.948097,0.982538,0.506978,0.631679,0.100064,0.774999,0.724768,0.939728,0.834417,0.928632,0.139819,0.528686,0.445975,0.227963,0.0315817,0.866542,0.457859,0.293736,0.418563,0.8963,0.237029,0.68233,0.750009,0.368797,0.387875,0.828568,0.946069,0.427223,0.876237,0.846668,0.786539,0.278772,0.424456,0.686265,0.750142,0.933718,0.598948,0.18744,0.427825,0.995483,0.563656,0.617762,0.764282,0.316622,0.801979,0.274641,0.239137,0.420579,0.0221193,0.893343,0.767308,0.345015,0.19393,0.123508,0.155736,0.0308332,0.870597,0.620724,0.00886971,0.658536,0.346832,0.299582,0.209503,0.322033,0.75423,0.498505,0.424952,0.696042,0.860397,0.91242,0.86821,0.212493,0.0713409,0.518612,0.430536,0.916697,0.610124,0.313731,0.244002,0.465117,0.310972,0.728319,0.211351,0.833987,0.08536,0.988931,0.843807,0.562338,0.917636,0.0709273,0.974395,0.25799,0.930328,0.0952942,0.0329208,0.0844803,0.288986,0.15112,0.0462243,0.565914,0.38153,0.875314,0.524355,0.663478,0.887099,0.344474,0.498691,0.599542,0.904159,0.457845,0.59215,0.752401,0.201056,0.365354,0.528443,0.635215,0.38455,0.112076,0.0929711,0.376589,0.793751,0.192183,0.854345,0.861659,0.311528,0.834126,0.802055,0.737064,0.492823,0.902759,0.655487,0.912265,0.971308,0.876828,0.772375,0.708795,0.156385,0.0925649,0.329128,0.244708,0.574108,0.981604,0.812671,0.684033,0.142205,0.676051,0.559934,0.0734798,0.724616,0.606052,0.942174,0.327198,0.00606775,0.0625107,0.406229,0.172766,0.978673,0.0535808,0.951207,0.103462,0.497451,0.60419,0.151404,0.733968,0.0833445,0.716829,0.0145776,0.692805,0.849716,0.894882,0.441564,0.122717,0.748194,0.859408,0.400961,0.330377,0.085317,0.971878,0.0311385,0.0949017,0.588377,0.780829,0.562838,0.399704,0.0909231,0.580777,0.766738,0.412971,0.213955,0.810632,0.360667,0.727483,0.470092,0.962428,0.18855,0.92793,0.513857,0.14601,0.793832,0.831879,0.317044,0.606767,0.564547,0.383172,0.348417,0.104638,0.342014,0.196113,0.346868,0.356176,0.400198,0.501433,0.764176,0.246704,0.232567,0.686028,0.370806,0.96627,0.967748,0.29853,0.376581,0.205264,0.491964,0.753347,0.540968,0.935254,0.775891,0.647178,0.300409,0.567178,0.315802,0.796586,0.965371,0.638474,0.607099,0.169384,0.544479,0.24522,0.690933,0.0459601,0.518168,0.0897756,0.678185,0.859401,0.0958973,0.841099,0.905401,0.343767,0.476164,0.568046,0.187021,0.200747,0.0937285,0.183457,0.441429,0.0764822,0.293949,0.170103,0.536251,0.0247607,0.107896,0.210545,0.081571,0.375022,0.118483,0.91532,0.599025,0.418733,0.400043,0.956376,0.744256,0.274858,0.34121,0.934094,0.788071,0.902236,0.651224,0.0299655,0.799436,0.379843,0.77575,0.233526,0.171411,0.416029,0.431762,0.191108,0.532298,0.781259,0.306038,0.484192,0.0145346,0.588127,0.756639,0.724486,0.853929,0.777871,0.825808,0.35958,0.125214,0.934972,0.641317,0.0380233,0.615509,0.117739,0.840445,0.757724,0.401685,0.443626,0.492571,0.15262,0.108786,0.283408,0.0678818,0.927972,0.504569,0.663655,0.922481,0.953198,0.435973,0.664927,0.000134528,0.10788,0.654074,0.255418,0.0490023,0.114301,0.0896191,0.329827,0.860675,0.0592533,0.327413,0.448741,0.886993,0.335295,0.487808,0.724909,0.748077,0.847801,0.494753,0.69272,0.0708247,0.175453,0.96344,0.382414,0.111819,0.139659,0.461916,0.861868,0.590131,0.736597,0.451327,0.011102,0.917133,0.234092,0.146751,0.516434,0.334042,0.146984,0.347656,0.269046,0.437536,0.144413,0.288984,|0.466163,0.0722144,0.804637,0.505318,0.632991,0.918004,0.914492,0.114534,0.286235,0.963958,0.19473,0.290476,0.950417,0.569108,0.482808,0.220719,0.509364,0.445584,0.462388,0.499937,0.443568,0.955324,0.447443,0.0653591,0.828889,0.942781,0.228569,0.970855,0.62742,0.578227,0.609074,0.405179,0.805372,0.834719,0.854863,0.0897301,0.774477,0.627009,0.0394445,0.534486,0.82166,0.382939,0.392368,0.1626,0.807022,0.461461,0.237888,0.251342,0.495918,0.209293,0.00706387,0.594118,0.0255529,0.568901,0.196595,0.0792022,0.968139,0.771863,0.0385864,0.686101,0.691444,0.556293,0.835364,0.493223,0.502505,0.58744,0.50059,0.0232683,0.219473,0.40686,0.641722,0.218674,0.561992,0.469809,0.582888,0.46782,0.877418,0.486418,0.179051,0.976078,0.17515,0.409428,0.979122,0.339311,0.764745,0.789055,0.540618,0.936345,0.252324,0.533385,0.184021,0.125749,0.586451,0.0141073,0.201393,0.53732,0.348944,0.645148,0.370525,0.478247,0.456274,0.343915,0.249811,0.733174,0.842808,0.195124,0.340024,0.814157,0.654592,0.245198,0.932138,0.120483,0.318172,0.611926,0.000594497,0.0374581,0.853118,0.797854,0.866139,0.0977658,0.729173,0.941918,0.673469,0.205362,0.320235,0.495853,0.506077,0.80525,0.929917,0.934244,0.802543,0.023739,0.747111,0.710046,0.671866,0.239216,0.143165,0.497524,0.507657,0.234806,0.901257,0.685243,0.527277,0.489636,0.8785,0.456985,0.485373,0.948479,0.981531,0.131591,0.970137,0.645101,0.202124,0.434844,0.59469,0.611554,0.588676,0.0854735,0.596138,0.505145,0.336055,0.58413,0.0732248,0.101023,0.691815,0.208524,0.855097,0.689422,0.970151,0.34786,0.723616,0.71106,0.746821,0.023501,0.316105,0.17496,0.174522,0.821429,0.230612,0.289733,0.884502,0.669455,0.890743,0.18923,0.0921986,0.705195,0.00272691,0.0775445,0.00251526,0.982388,0.461302,0.097064,0.361452,0.218126,0.966641,0.846133,0.882466,0.219675,0.188188,0.949489,0.790895,0.389336,0.0962343,0.848218,0.183125,0.770033,0.79234,0.303348,0.427049,0.590296,0.182963,0.67666,0.070649,0.33717,0.290575,0.479241,0.359753,0.872001,0.30944,0.582379,0.0941641,0.0653635,0.967654,0.395501,0.42187,0.604359,0.239669,0.110257,0.0786211,0.121182,0.83062,0.511561,0.525156,0.066412,0.636578,0.500992,0.138457,0.623502,0.720001,0.570433,0.198432,0.236224,0.955577,0.996821,0.483823,0.461982,0.711891,0.320927,0.375945,0.246625,0.757354,0.822985,0.920329,0.0148095,0.377817,0.155249,0.237885,0.66208,0.709997,0.479158,0.576624,0.130642,0.854553,0.726551,0.541549,0.621782,0.502897,0.571745,0.3149,0.416423,0.195539,0.677855,0.0553792,0.891177,0.735549,0.209333,0.181481,0.354864,0.816475,0.545692,0.302367,0.365362,0.980678,0.173176,0.61349,0.288369,0.947294,0.951357,0.272259,0.480335,0.972605,0.170545,0.743868,0.607461,0.0318798,0.89521,0.860364,0.180994,0.975597,0.70686,0.634662,0.131128,0.245685,0.736537,0.37581,0.113276,0.281566,0.0619099,0.395909,0.177784,0.764319,0.748677,0.202623,0.882817,0.267967,0.647758,0.0989428,0.0422955,0.801609,0.0213405,0.516102,0.48421,0.817856,0.160401,0.864041,0.795868,0.342734,0.489705,0.455856,0.899564,0.382198,0.638244,0.337672,0.603025,0.705331,0.740223,0.52405,0.808719,0.550916,0.563641,0.359125,0.878537,0.809,0.339574,0.668787,0.196103,0.164013,0.711721,0.297826,0.637827,0.913596,0.786771,0.812744,0.550532,0.15401,0.810145,0.896568,0.458763,0.926433,0.409464,0.441289,0.965372,0.771192,0.632393,0.705637,0.924321,0.29986,0.961254,0.766323,0.284841,0.8133,0.636624,0.918405,0.729394,0.451983,0.523076,0.105918,0.378973,0.501377,0.108511,0.0774475,0.554738,0.388354,0.92027,0.0413139,0.89191,0.554223,0.552128,0.727876,0.0310073,0.745889,0.855694,0.904893,0.033752,0.302908,0.984163,0.15234,0.773749,0.502646,0.199874,0.474593,0.565806,0.590041,0.703767,0.72388,0.0761325,0.646932,0.937564,0.98899,0.231877,0.104122,0.480606,0.386813,0.0901499,0.159423,0.0695837,0.832934,0.245164,0.260842,0.914849,0.177088,0.844387,0.576679,0.580827,0.641965,0.626479,0.00278002,0.135543,0.331004,0.589248,0.989704,0.0927461,0.27291,0.449036,0.626317,0.386133,0.818172,0.186459,0.793443,0.827506,0.218779,0.384037,0.521727,0.945039,0.889708,0.250585,0.577711,0.448864,0.666751,0.600007,0.429131,0.296529,0.671233,0.404777,0.307206,0.620117,0.815871,0.373118,0.80123,0.535376,0.104184,0.884919,0.980432,0.257215,0.218732,0.0455249,0.942215,0.872028,0.774986,0.599144,0.535595,0.402661,0.0845717,0.76831,0.353056,0.342389,0.271933,0.137455,0.0793344,0.659541,0.137678,0.37074,0.259363,0.475311,0.268201,0.972489,0.87338,0.885092,0.119306,0.264648,0.975645,0.695857,0.356152,0.465903,0.237483,0.37209,0.319906,0.571481,0.798965,0.226136,0.440179,0.961416,0.778389,0.417506,0.62387,0.701245,0.557104,0.848953,0.964363,0.402206,0.75266,0.508341,0.754886,0.317876,0.0508834,0.784798,0.0919569,0.49539,0.0344663,0.305341,0.996284,0.708537,0.166995,0.935154,0.646926,0.211978,0.783844,0.558689,0.495315,0.04021,0.835836,0.253432,0.9979,0.733936,0.169118,0.435932,0.57597,0.141596,0.578901,0.433938,0.878376,0.223181,0.64352,0.482072,0.885897,0.855512,0.0602557,0.262171,0.508876,0.434524,0.126709,0.402497,0.706916,0.00219226,0.472791,0.736319,0.0347424,0.840925,0.386397,0.812493,0.860585,0.456351,0.830822,0.483248,0.0808908,0.754342,0.251934,0.306775,0.0370765,0.151596,0.0733262,0.857454,0.991647,0.346203,0.491557,0.916936,0.474106,0.565315,0.815145,0.511791,0.565173,0.19452,0.553545,0.820409,0.336643,0.792567,0.812721,0.495352,0.384756,0.46538,0.947496,0.819125,0.461029,0.952438,0.387184,0.924415,0.873951,0.857222,0.423315,0.123588,0.335111,0.0635455,0.219114,0.111313,0.788394,0.357646,0.122456,0.559065,0.164156,0.959948,0.30714,0.067938,0.820419,0.490288,0.213645,0.513847,0.898609,0.925184,0.630493,0.916433,0.00902689,0.274201,0.880178,0.455939,0.425831,0.426265,0.368101,0.479494,0.922046,0.529962,0.363758,0.558831,0.787419,0.649531,0.727701,0.226129,0.719183,0.746282,0.415812,0.664901,0.240007,0.800434,0.331572,0.193245,0.455236,0.162191,0.765139,0.00756776,0.494919,0.533176,0.124479,0.894906,0.879895,0.466243,0.406286,0.385911,0.908943,0.862925,0.553068,0.00912368,0.551513,0.0603697,0.399378,0.747085,0.782604,0.248308,0.349743,0.638553,0.750135,0.0118935,0.303275,0.339052,0.441085,0.656948,0.866133,0.591572,0.769245,0.666995,0.603413,0.733904,0.580203,0.300375,0.114855,0.0727472,0.561542,0.0704048,0.819528,0.550903,0.367825,0.68862,0.372928,0.926483,0.946315,0.953585,0.68005,0.687834,0.455384,0.470436,0.701979,0.752417,0.23714,0.588191,0.00513053,0.145786,0.223584,0.269002,0.535593,0.450517,0.235126,0.428983,0.35029,0.43035,0.296046,0.0975407,0.333292,0.725683,0.667488,0.499788,0.214714,0.0440394,0.396856,0.68616,0.0101824,0.495398,0.522149,0.841996,0.00154805,0.673858,0.174213,0.102925,0.628225,0.949627,0.123194,0.063061,0.452481,0.189982,0.820783,0.209585,0.437615,0.107348,0.43989,0.518459,0.780859,0.596531,0.08377,0.247383,0.0702208,0.972229,0.46072,0.470552,0.558888,0.133379,0.410461,0.482734,0.483834,0.116023,0.158959,0.231958,0.930924,0.465016,0.794024,0.751692,0.891086,0.427373,0.792922,0.440948,0.517597,0.619797,0.311654,0.868742,0.835937,0.620099,0.949968,0.939926,0.570952,0.754314,0.348808,0.431499,0.381443,0.932211,0.829251,0.348533,0.0905343,0.82266,0.958295,0.461462,0.172003,0.806911,0.104494,0.142037,0.353826,0.170411,0.246518,0.421657,0.414405,0.663045,0.422625,0.383413,0.749238,0.0217491,0.282216,0.7422,0.814919,0.382201,0.979193,0.79104,0.889639,0.945412,0.330354,0.238902,0.768559,0.895874,0.57065,0.23174,0.126849,0.73351,0.312552,0.630063,0.991719,0.666962,0.019599,0.69328,0.481307,0.172439,0.0932916,0.994292,0.278403,0.637377,0.108993,0.0426599,0.119008,0.745485,0.622078,0.361815,0.637298,0.223164,0.0586292,0.934795,0.0716099,0.0193344,0.180763,0.290184,0.888818,0.385261,0.505025,0.457761,0.909045,0.678137,0.53268,0.643031,0.392561,0.962253,0.357873,0.691887,0.137856,0.622535,0.406985,0.667417,0.464308,0.77065,0.06217,0.632568,0.480874,0.356226,0.438201,0.584612,0.808132,0.0997865,0.0711979,0.84203,0.899572,0.774575,0.0974274,0.218668,0.263172,0.27585,0.462727,0.988187,0.922519,0.872989,0.877432,0.136943,0.807747,0.978298,0.869492,0.978316,0.682278,0.133738,0.969968,0.7495,0.938185,0.904796,0.945167,0.913234,0.898605,0.612883,0.0464428,0.570084,0.870799,0.829516,0.120759,0.574692,0.504997,0.22039,0.365912,0.760168,0.118777,0.576157,0.259821,0.0351207,0.802952,0.188402,0.501941,0.486605,0.653902,0.293102,0.877418,0.849244,0.985798,0.120967,0.345832,0.376664,0.547766,0.173522,0.136027,0.870489,0.978761,0.868319,0.733562,0.099214,0.798992,0.0496573,0.234022,0.848571,0.802199,0.68211,0.693333,0.225301,0.215666,0.632784,0.00155002,0.953935,0.845171,0.773461,0.582443,0.220266,0.756249,0.427943,0.50967,0.471736,0.212712,0.628772,0.0885473,0.607492,0.100545,0.401085,0.432123,0.313141,0.501513,0.102765,0.263601,0.256246,0.581286,0.523177,0.470539,0.94665,0.792811,0.14553,0.657638,0.0672938,0.234009,0.591309,0.586033,0.75589,0.905567,0.543525,0.643503,0.313901,0.38221,0.0573047,0.638002,0.632529,0.781848,0.998842,0.59274,0.387407,0.0312305,0.613211,0.870368,0.999103,0.800664,0.92194,0.055996,0.21638,0.259084,0.0330498,0.801712,0.605987,0.376712,0.313712,|0.612015,0.435611,0.909083,0.394489,0.300179,0.44681,0.00923359,0.625114,0.808818,0.611299,0.994402,0.24995,0.133932,0.97454,0.233923,0.198633,0.0596524,0.50499,0.167107,0.708364,0.528739,0.749004,0.285278,0.296232,0.983724,0.377495,0.333671,0.127809,0.669613,0.679624,0.858255,0.970694,0.123132,0.647235,0.241269,0.766747,0.634558,0.592421,0.331493,0.534918,0.213995,0.454916,0.444675,0.205431,0.186325,0.231277,0.826302,0.394842,0.456437,0.60861,0.690016,0.156058,0.123172,0.678953,0.935993,0.373679,0.08595,0.717756,0.484701,0.315149,0.326799,0.145045,0.265437,0.521175,0.8093,0.572768,0.3997,0.132255,0.732822,0.931786,0.50463,0.138928,0.318862,0.781857,0.0488738,0.8847,0.160365,0.627137,0.241214,0.889309,0.833037,0.88288,0.719014,0.842928,0.55973,0.784836,0.468828,0.882423,0.703327,0.648067,0.0883334,0.774116,0.416099,0.277234,0.891618,0.713838,0.336907,0.274398,0.721366,0.951384,0.686237,0.714996,0.997825,0.427565,0.563292,0.153696,0.534677,0.909748,0.888649,0.0340495,0.914641,0.921576,0.20722,0.121795,0.347422,0.336735,0.451394,0.952098,0.384871,0.784397,0.156698,0.504657,0.325865,0.451462,0.647162,0.957735,0.365627,0.334152,0.298761,0.307825,0.194072,0.188605,0.0588568,0.903973,0.442218,0.959603,0.547745,0.678706,0.735402,0.486193,0.852519,0.504367,0.613703,0.769019,0.852412,0.518694,0.0164513,0.997369,0.40417,0.281856,0.567168,0.515597,0.65645,0.243456,0.397194,0.869741,0.587214,0.584928,0.469066,0.0732396,0.4709,0.684946,0.567635,0.749922,0.490549,0.754313,0.330065,0.477015,0.0858068,0.0466465,0.694385,0.837819,0.959223,0.489589,0.464244,0.0108877,0.206461,0.46787,0.881091,0.359172,0.0255864,0.684981,0.496592,0.402491,0.303316,0.187681,0.618815,0.30678,0.977628,0.0260997,0.810205,0.358096,0.804639,0.196213,0.240902,0.832107,0.323837,0.0636614,0.260035,0.287185,0.320171,0.0286891,0.634839,0.421411,0.0196013,0.299363,0.562958,0.149209,0.256142,0.964332,0.763851,0.89183,0.0630113,0.945875,0.425302,0.90366,0.653821,0.839632,0.996857,0.847148,0.121079,0.819789,0.764007,0.351307,0.795263,0.162383,0.993514,0.65851,0.277492,0.445419,0.65292,0.710232,0.442182,0.720226,0.339765,0.30641,0.740485,0.542949,0.121688,0.651605,0.549468,0.669748,0.714936,0.931795,0.0637837,0.370655,0.957621,0.213928,0.864149,0.431971,0.0634621,0.857826,0.965266,0.249585,0.692809,0.175172,0.78877,0.737209,0.115986,0.943314,0.461394,0.532507,0.315606,0.421657,0.547504,0.682322,0.743327,0.443879,0.567821,0.950681,0.49387,0.59817,0.39861,0.130831,0.689936,0.955106,0.809722,0.93092,0.400672,0.0760732,0.188315,0.099871,0.571136,0.185749,0.650078,0.138657,0.451785,0.97795,0.596153,0.856363,0.634892,0.543564,0.568782,0.0599074,0.548791,0.397036,0.748149,0.434433,0.540739,0.851333,0.781495,0.247254,0.624097,0.213619,0.437841,0.985177,0.217065,0.563399,0.440228,0.881903,0.179894,0.029768,0.161432,0.711041,0.887757,0.50181,0.355683,0.653653,0.981787,0.976976,0.348819,0.609271,0.750141,0.017262,0.366633,0.362907,0.748187,0.00726277,0.728807,0.508431,0.86791,0.456032,0.0429415,0.266079,0.418776,0.737606,0.385858,0.971516,0.0467554,0.41922,0.987378,0.053695,0.918056,0.357168,0.730456,0.382433,0.638305,0.526267,0.333875,0.133311,0.319348,0.787674,0.886572,0.680223,0.544306,0.868395,0.739006,0.867852,0.0799294,0.298589,0.473792,0.798041,0.407399,0.458868,0.400877,0.534035,0.294432,0.888448,0.229676,0.248716,0.894012,0.169575,0.279772,0.961478,0.919454,0.738904,0.02359,0.194048,0.109022,0.35647,0.652473,0.191874,0.318923,0.0213985,0.447592,0.0266986,0.127424,0.437963,0.358667,0.875606,0.436565,0.258614,0.268504,0.647779,0.496146,0.379205,0.294766,0.390997,0.305705,0.345588,0.807116,0.608796,0.449489,0.798784,0.642722,0.890938,0.932806,0.271443,0.0893556,0.404175,0.970795,0.953577,0.26974,0.51009,0.314584,0.892122,0.702477,0.50883,0.85159,0.595821,0.680387,0.485329,0.166323,0.253775,0.917003,0.936709,0.505685,0.800914,0.440358,0.955907,0.168322,0.843359,0.183986,0.862272,0.607265,0.965873,0.142061,0.110543,0.925709,0.959048,0.700852,0.710205,0.0888742,0.747565,0.150488,0.886961,0.18766,0.0391459,0.439822,0.638805,0.695339,0.00466377,0.190934,0.503714,0.626396,0.0309083,0.204024,0.576374,0.697038,0.323059,0.657044,0.471997,0.380335,0.773644,0.392862,0.924499,0.0672368,0.0568033,0.413211,0.848851,0.618745,0.577675,0.790503,0.191644,0.56912,0.87088,0.171885,0.904127,0.599456,0.519446,0.13216,0.477867,0.652217,0.594139,0.863976,0.293766,0.962917,0.386122,0.774058,0.26022,0.373946,0.663337,0.0794328,0.313409,0.901732,0.985391,0.28463,0.31017,0.79447,0.556985,0.626647,0.618922,0.680804,0.228037,0.124833,0.0242287,0.848263,0.968509,0.354524,0.0819715,0.780124,0.260852,0.222538,0.440657,0.774349,0.776624,0.792073,0.166378,0.734249,0.52839,0.411473,0.571738,0.993437,0.752469,0.266162,0.117041,0.261633,0.071578,0.400913,0.769506,0.0982507,0.846692,0.519622,0.860646,0.802026,0.309335,0.219959,0.703588,0.932789,0.435375,0.589165,0.992851,0.494387,0.967851,0.950412,0.631916,0.243259,0.361172,0.478154,0.202448,0.938681,0.690986,0.585015,0.796067,0.0748674,0.949498,0.128978,0.599584,0.420198,0.732446,0.517696,0.208945,0.606973,0.0758263,0.347783,0.296945,0.126297,0.490751,0.936791,0.234487,0.999327,0.281994,0.223836,0.274384,0.312286,0.700362,0.721247,0.348456,0.261126,0.291855,0.288891,0.982627,0.790935,0.752689,0.758029,0.881095,0.866909,0.596047,0.57521,0.748816,0.603055,0.146555,0.11899,0.104723,0.536251,0.495827,0.659083,0.0574524,0.617656,0.198939,0.815875,0.167063,0.133275,0.21741,0.495571,0.394723,0.545028,0.507228,0.995433,0.987574,0.926786,0.932884,0.635599,0.237806,0.267519,0.114317,0.502184,0.702946,0.0103087,0.207543,0.487647,0.593887,0.0475348,0.991806,0.157288,0.448885,0.560075,0.696341,0.618048,0.468928,0.388327,0.585516,0.784555,0.566087,0.747953,0.933257,0.682114,0.815388,0.31359,0.791756,0.618269,0.740965,0.2348,0.2858,0.582192,0.183553,0.356898,0.440495,0.344852,0.972062,0.668169,0.850798,0.940615,0.738011,0.478469,0.66517,0.948076,0.180716,0.681657,0.852224,0.28424,0.238342,0.661958,0.686708,0.194984,0.179483,0.279964,0.179508,0.6418,0.222178,0.578935,0.265629,0.734559,0.796203,0.120205,0.264465,0.720493,0.156647,0.771775,0.552054,0.471371,0.3994,0.646155,0.45462,0.956781,0.821241,0.777696,0.491489,0.894845,0.337618,0.202176,0.960211,0.113868,0.0918126,0.440595,0.472544,0.669122,0.627379,0.633882,0.109816,0.109984,0.769563,0.0792176,0.9688,0.335258,0.125976,0.10953,0.576396,0.127473,0.516575,0.916051,0.537844,0.513632,0.626619,0.023461,0.521764,0.881691,0.0736681,0.333751,0.393652,0.461097,0.0183102,0.347479,0.457644,0.796755,0.852912,0.201585,0.916963,0.918289,0.977127,0.0755327,0.921287,0.0467007,0.631754,0.706912,0.554856,0.465667,0.484614,0.6632,0.0802565,0.485587,0.074796,0.768027,0.168712,0.0702429,0.936493,0.509603,0.226939,0.220077,0.935878,0.517482,0.440088,0.521832,0.59818,0.593781,0.369699,0.245949,0.0623647,0.934854,0.861827,0.376692,0.680337,0.803562,0.273777,0.310478,0.612812,0.397746,0.603044,0.427386,0.62829,0.840909,0.313445,0.86437,0.65164,0.899033,0.328249,0.964297,0.281508,0.717555,0.306718,0.927134,0.581691,0.54596,0.210815,0.333401,0.0445828,0.285848,0.835844,0.744067,0.67747,0.693628,0.872345,0.797761,0.999504,0.750473,0.892927,0.528994,0.276338,0.37533,0.244422,0.298504,0.804974,0.896364,0.698366,0.246658,0.952237,0.145617,0.0744672,0.644611,0.266786,0.194561,0.464373,0.539902,0.275226,0.851339,0.12168,0.494076,0.752582,0.655038,0.153606,0.208114,0.718783,0.28259,0.957665,0.867846,0.151131,0.514975,0.895506,0.442182,0.993757,0.234588,0.594299,0.830094,0.255942,0.0244318,0.0909711,0.597733,0.59659,0.752029,0.443323,0.29659,0.919862,0.95849,0.348578,0.138809,0.0384886,0.867244,0.533427,0.298576,0.666693,0.283976,0.363481,0.816837,0.843539,0.0257056,0.158847,0.101522,0.12538,0.0217033,0.0597607,0.642681,0.667531,0.605306,0.148077,0.593997,0.182894,0.220892,0.553191,0.376604,0.384882,0.861938,0.518406,0.156387,0.688019,0.299118,0.576187,0.342817,0.584297,0.143901,0.824054,0.167783,0.540289,0.118834,0.872208,0.658485,0.405809,0.420184,0.214199,0.132039,0.867043,0.351924,0.841821,0.785463,0.821756,0.975459,0.152538,0.592175,0.643289,0.724987,0.782676,0.357614,0.25431,0.600565,0.8989,0.434214,0.356901,0.0149434,0.228079,0.373896,0.870806,0.371254,0.000844538,0.11092,0.242357,0.405509,0.115711,0.142139,0.678651,0.370768,0.855214,0.761466,0.890511,0.829646,0.544411,0.237057,0.890354,0.760479,0.807109,0.430551,0.979564,0.52127,0.931621,0.0185174,0.160218,0.103663,0.128415,0.410949,0.783555,0.334729,0.809276,0.312795,0.558779,0.187918,0.0515512,0.432403,0.961673,0.38341,0.0695658,0.17042,0.457381,0.473119,0.0200318,0.244746,0.102354,0.833635,0.973346,0.681596,0.550929,0.273973,0.590018,0.504232,0.536128,0.0921635,0.899584,0.373918,0.430929,0.29073,0.384143,0.114508,0.616121,0.338093,0.0711268,0.576531,0.104913,0.739506,0.579931,0.957852,0.343722,0.193098,0.166256,0.89906,0.643112,0.365846,0.922636,0.934172,0.110585,0.465956,0.390604,0.565419,0.265475,0.776934,0.794142,0.0668963,0.471164,0.668331,0.266233,0.595736,0.781941,0.447335,0.994075,|0.812138,0.668274,0.216788,0.57832,0.461133,0.486201,0.986696,0.606689,0.785242,0.30125,0.126748,0.0630358,0.186894,0.0602947,0.983242,0.0800105,0.0491814,0.721797,0.773904,0.713054,0.654382,0.910679,0.587942,0.0400798,0.787104,0.255548,0.294308,0.797829,0.987864,0.00159663,0.410175,0.424041,0.576072,0.865648,0.69186,0.478262,0.842469,0.158556,0.0170364,0.570336,0.843882,0.72229,0.69986,0.750685,0.413829,0.805909,0.0646878,0.880252,0.543241,0.575616,0.314153,0.111364,0.348007,0.173185,0.180774,0.577181,0.902194,0.793362,0.750488,0.382161,0.355079,0.998993,0.642402,0.62042,0.702566,0.373164,0.859211,0.426985,0.705998,0.837585,0.453603,0.205348,0.201039,0.422831,0.939466,0.0842971,0.868223,0.18771,0.933704,0.851661,0.470761,0.809143,0.818112,0.572072,0.953373,0.862147,0.676917,0.00243902,0.866762,0.865101,0.994849,0.416615,0.979599,0.137981,0.893898,0.239993,0.742908,0.422711,0.259175,0.367938,0.403046,0.760959,0.0146747,0.700043,0.818215,0.710651,0.813997,0.612447,0.0597436,0.937834,0.433685,0.823632,0.369325,0.963628,0.327047,0.129644,0.0949086,0.932553,0.676454,0.746092,0.0365772,0.804843,0.241285,0.823567,0.143568,0.327675,0.292388,0.295976,0.822187,0.306725,0.15997,0.439057,0.250533,0.988686,0.968897,0.276246,0.486657,0.821469,0.867159,0.93407,0.27791,0.40988,0.80675,0.37324,0.345395,0.215765,0.235806,0.822227,0.59204,0.249072,0.23784,0.170458,0.453694,0.757646,0.58348,0.371377,0.0344574,0.86281,0.568615,0.133532,0.247762,0.539049,0.0477812,0.145482,0.196126,0.772294,0.460721,0.66654,0.422409,0.476597,0.985549,0.0225335,0.437759,0.288442,0.207377,0.938771,0.113302,0.801239,0.583314,0.565492,0.409158,0.114552,0.486773,0.741288,0.585035,0.0519714,0.10404,0.20775,0.059075,0.978764,0.212658,0.274234,0.31645,0.901738,0.976345,0.00112212,0.496491,0.91207,0.904389,0.631289,0.766922,0.775608,0.741889,0.402741,0.15342,0.0750656,0.723109,0.7756,0.968285,0.0897778,0.304627,0.818882,0.932876,0.562501,0.314892,0.48417,0.781893,0.82603,0.871296,0.819149,0.0106967,0.240832,0.37817,0.100917,0.633395,0.246986,0.507995,0.325011,0.350516,0.886223,0.0337697,0.693603,0.0157859,0.231769,0.00382024,0.335548,0.307759,0.329051,0.482781,0.560619,0.1905,0.539311,0.529543,0.681878,0.456689,0.525696,0.122514,0.910176,0.31515,0.397062,0.253524,0.443031,0.907322,0.0263576,0.995009,0.71685,0.324793,0.376292,0.186087,0.749499,0.0415526,0.42419,0.0404043,0.970005,0.484835,0.91062,0.626948,0.554602,0.0933102,0.785183,0.477025,0.142441,0.063325,0.48327,0.554816,0.223417,0.0123395,0.221411,0.775661,0.756129,0.549977,0.114196,0.501641,0.623314,0.456683,0.0955557,0.297213,0.375219,0.592059,0.896053,0.199764,0.913596,0.28923,0.0295948,0.917019,0.868149,0.427084,0.251016,0.467393,0.46564,0.898428,0.220817,0.503566,0.836749,0.874721,0.280278,0.491736,0.793799,0.989133,0.872698,0.447929,0.247471,0.155201,0.719762,0.581526,0.777762,0.378249,0.202278,0.553725,0.159027,0.44085,0.729558,0.333485,0.775022,0.317931,0.730935,0.201601,0.323512,0.930641,0.953967,0.517426,0.862365,0.408718,0.01187,0.867373,0.190177,0.637858,0.511928,0.541545,0.0660777,0.412923,0.563739,0.950164,0.0844385,0.361556,0.0141588,0.159809,0.0719826,0.288588,0.0442561,0.325612,0.319233,0.998705,0.857297,0.34214,0.915505,0.959145,0.797067,0.269721,0.239287,0.0511308,0.882183,0.250721,0.879642,0.800997,0.522528,0.499124,0.883842,0.892902,0.268888,0.729868,0.120452,0.423313,0.314653,0.910066,0.675773,0.863126,0.766431,0.708879,0.711127,0.61315,0.629807,0.338741,0.811934,0.078425,0.169168,0.124332,0.794827,0.537452,0.932999,0.692894,0.77764,0.306786,0.456521,0.627954,0.890136,0.385859,0.420664,0.805642,0.20693,0.562857,0.821796,0.356088,0.908839,0.570984,0.975802,0.359692,0.911454,0.392449,0.106182,0.26035,0.549498,0.73745,0.492578,0.384184,0.530896,0.0697201,0.135271,0.518466,0.836326,0.114264,0.423998,0.908731,0.822804,0.463418,0.282724,0.762424,0.565081,0.0255359,0.819132,0.150406,0.0256002,0.175923,0.190899,0.687425,0.140826,0.306064,0.29874,0.2236,0.396827,0.920567,0.292943,0.782235,0.990451,0.614757,0.5991,0.905344,0.503042,0.0595042,0.613996,0.332076,0.87333,0.527085,0.0509591,0.338028,0.602114,0.356287,0.817345,0.254851,0.836689,0.208473,0.956329,0.421851,0.420769,0.73205,0.908702,0.372382,0.0449584,0.384974,0.359584,0.956559,0.894963,0.933406,0.804728,0.301786,0.548824,0.895537,0.166937,0.284498,0.115809,0.674746,0.146396,0.485967,0.778067,0.619419,0.855504,0.15926,0.717604,0.531516,0.489247,0.883213,0.247548,0.685688,0.484339,0.252733,0.828238,0.370436,0.332783,0.518106,0.881514,0.140496,0.826459,0.481191,0.504335,0.240017,0.290108,0.747926,0.0941206,0.484344,0.721825,0.750388,0.773658,0.754821,0.88598,0.247522,0.237698,0.119161,0.771115,0.223615,0.283169,0.0844643,0.432845,0.625492,0.975481,0.272348,0.614715,0.690134,0.925957,0.544692,0.397889,0.533719,0.797763,0.355024,0.713105,0.453788,0.513502,0.460668,0.918149,0.113534,0.83575,0.737197,0.816376,0.951474,0.70777,0.439566,0.648952,0.81998,0.00848252,0.734858,0.500863,0.90348,0.733879,0.360151,0.414272,0.38431,0.384018,0.957588,0.158981,0.066337,0.864517,0.195193,0.92801,0.650099,0.666314,0.480754,0.478323,0.258988,0.566455,0.365786,0.376759,0.667033,0.861145,0.519131,0.5211,0.858544,0.336782,0.274991,0.395908,0.590479,0.787899,0.602665,0.397016,0.664491,0.0402765,0.737674,0.319926,0.730542,0.461347,0.0441939,0.428172,0.837053,0.874742,0.463242,0.224198,0.548148,0.55562,0.0670851,0.0150841,0.384627,0.365536,0.50025,0.933016,0.655165,0.662903,0.564498,0.428752,0.544377,0.450449,0.580339,0.647559,0.648525,0.995465,0.233416,0.292493,0.284077,0.912596,0.47681,0.749765,0.131679,0.309448,0.29289,0.642809,0.105845,0.094016,0.646735,0.522767,0.826213,0.161403,0.903062,0.331818,0.610221,0.375202,0.212201,0.921218,0.958662,0.192755,0.783134,0.556097,0.303848,0.732056,0.0225173,0.599616,0.182411,0.0581651,0.912516,0.718133,0.270109,0.760104,0.699356,0.725331,0.71765,0.678757,0.989846,0.457537,0.858303,0.519456,0.183987,0.166753,0.759459,0.532137,0.499424,0.416327,0.686139,0.0470506,0.118994,0.13212,0.0252075,0.900428,0.286546,0.148136,0.228375,0.903322,0.860765,0.900646,0.567017,0.351849,0.816292,0.204659,0.756457,0.0321435,0.883953,0.669176,0.158554,0.714587,0.629821,0.291395,0.258546,0.429427,0.239601,0.598776,0.961529,0.0578495,0.300059,0.178749,0.123744,0.839499,0.177461,0.346801,0.80083,0.75231,0.131628,0.0394345,0.528199,0.754731,0.397845,0.571207,0.417533,0.749944,0.900662,0.118122,0.502659,0.317531,0.219804,0.326798,0.12976,0.761273,0.0550718,0.425976,0.517109,0.543017,0.854813,0.712251,0.778867,0.70612,0.217643,0.0229365,0.408453,0.169915,0.0981004,0.809825,0.931022,0.602786,0.239494,0.800088,0.0244145,0.188421,0.322216,0.248382,0.728236,0.525759,0.275652,0.339598,0.956838,0.300726,0.243496,0.249047,0.0773394,0.349615,0.0887533,0.8164,0.0266337,0.541071,0.791762,0.155362,0.393739,0.0420756,0.636001,0.581524,0.136101,0.88383,0.843944,0.455813,0.0762368,0.866384,0.437812,0.214584,0.237925,0.999166,0.417234,0.0708689,0.759698,0.570881,0.794814,0.0610616,0.2826,0.761087,0.228326,0.710341,0.371752,0.754945,0.914514,0.0230108,0.777871,0.879038,0.831455,0.484878,0.825421,0.150481,0.6989,0.559092,0.0088253,0.72336,0.342812,0.77907,0.119502,0.992017,0.263261,0.748623,0.301051,0.635286,0.54813,0.0231006,0.287273,0.327798,0.693375,0.892999,0.441406,0.381095,0.890488,0.194015,0.826332,0.0532208,0.461571,0.788135,0.857194,0.313859,0.684513,0.435727,0.377577,0.654917,0.0716758,0.941571,0.217101,0.721242,0.598159,0.869203,0.987287,0.155856,0.460913,0.483647,0.836373,0.545306,0.620502,0.300763,0.583675,0.928454,0.104514,0.0660345,0.938228,0.958115,0.624354,0.94114,0.0681524,0.640277,0.158498,0.884098,0.236699,0.729153,0.904014,0.311117,0.0139465,0.0588822,0.770313,0.370532,0.559156,0.333008,0.567539,0.445443,0.997764,0.77366,0.357744,0.849941,0.473781,0.577823,0.751179,0.300622,0.584392,0.815505,0.284785,0.113789,0.911993,0.271809,0.585702,0.72676,0.254226,0.338122,0.16386,0.605564,0.238527,0.56173,0.744269,0.256098,0.119356,0.203925,0.313186,0.154469,0.878594,0.798133,0.557272,0.794997,0.341697,0.188088,0.438884,0.422827,0.107651,0.818996,0.905823,0.33101,0.640604,0.85701,0.887258,0.691433,0.894646,0.290876,0.940497,0.9671,0.963172,0.4342,0.653373,0.568006,0.675723,0.763891,0.525031,0.474522,0.354494,0.222729,0.184933,0.881751,0.844376,0.756273,0.30761,0.052318,0.229092,0.221679,0.46579,0.59384,0.153807,0.150299,0.695375,0.0798074,0.099656,0.926419,0.867911,0.64959,0.46625,0.248191,0.898161,0.575749,0.601297,0.605748,0.369738,0.943011,0.665363,0.48873,0.638206,0.339254,0.646262,0.951111,0.856866,0.743701,0.451987,0.314389,0.100346,0.908431,0.633627,0.81321,0.764587,0.568194,0.651205,0.929029,0.355684,0.630274,0.255231,0.969237,0.791098,0.776689,0.45947,0.380395,0.62111,0.630099,0.36009,0.0482873,0.797213,0.167761,0.363702,0.492896,0.787676,0.763487,0.813402,0.183661,0.324288,0.230002,0.194534,0.0565849,0.107737,0.0232686,0.567353,0.204874,0.752581,0.794716,0.790909,0.137296,0.585132,0.705181,0.63048,0.331968,0.525195,0.629553,0.5182,0.857134,|0.0876733,0.807273,0.337027,0.6741,0.22164,0.543019,0.563071,0.412987,0.571213,0.92925,0.307906,0.470119,0.492509,0.309497,0.443189,0.106489,0.337892,0.771218,0.794315,0.502714,0.798058,0.277004,0.983313,0.661898,0.100019,0.811921,0.857823,0.78214,0.417163,0.18518,0.234484,0.105257,0.791594,0.553234,0.156538,0.478123,0.144343,0.0989478,0.472083,0.553843,0.724406,0.562105,0.793406,0.412941,0.0786837,0.50624,0.344147,0.880748,0.834845,0.123641,0.708819,0.841502,0.262165,0.185213,0.299683,0.231913,0.0641377,0.57285,0.215585,0.569196,0.342189,0.941124,0.462063,0.639125,0.575415,0.068737,0.362797,0.227036,0.518992,0.103065,0.526554,0.111326,0.448418,0.858874,0.654216,0.287458,0.470549,0.638309,0.742076,0.164441,0.104648,0.223854,0.226067,0.916759,0.479344,0.188295,0.0934367,0.360897,0.0245615,0.435291,0.252548,0.562497,0.023115,0.135872,0.375687,0.220413,0.577367,0.132167,0.215631,0.380187,0.783701,0.825255,0.0939513,0.631255,0.77871,0.110719,0.731836,0.182939,0.842689,0.389503,0.910683,0.696198,0.0555069,0.647769,0.302637,0.465867,0.623128,0.405704,0.333061,0.96886,0.438506,0.567306,0.763085,0.20811,0.0419891,0.0032683,0.184201,0.348937,0.205184,0.413591,0.636788,0.574939,0.0804763,0.67148,0.764364,0.415449,0.162365,0.58993,0.579947,0.0820324,0.827773,0.546396,0.076873,0.760833,0.765111,0.512137,0.63259,0.614074,0.975823,0.202814,0.868344,0.799931,0.659008,0.42466,0.878019,0.850498,0.0480993,0.0437152,0.140168,0.0857915,0.392288,0.65145,0.45829,0.115106,0.932788,0.819966,0.48809,0.81468,0.589679,0.42037,0.510623,0.704388,0.57422,0.482339,0.0987961,0.498438,0.617904,0.120592,0.398958,0.301873,0.640899,0.660502,0.0719013,0.905601,0.500941,0.546357,0.174015,0.258635,0.536212,0.0943364,0.872942,0.66593,0.59848,0.972633,0.162511,0.383769,0.0705592,0.966626,0.800514,0.249535,0.515961,0.680625,0.574576,0.577122,0.0966681,0.867652,0.464703,0.924912,0.641003,0.0706811,0.671884,0.496159,0.664141,0.386479,0.0765275,0.304509,0.399205,0.495966,0.711498,0.554743,0.775722,0.769793,0.90396,0.916335,0.547826,0.468017,0.339234,0.549108,0.964319,0.163571,0.484973,0.502656,0.312697,0.230349,0.305323,0.0791067,0.651485,0.216876,0.489151,0.0517535,0.83176,0.352016,0.619695,0.0223408,0.436281,0.140631,0.995197,0.197878,0.263986,0.108161,0.993379,0.429444,0.804844,0.387883,0.763296,0.35985,0.346428,0.617268,0.41186,0.121655,0.76428,0.996338,0.96128,0.763324,0.968184,0.592558,0.0482371,0.0902818,0.732294,0.382095,0.181358,0.218802,0.0848922,0.677425,0.0601822,0.68864,0.406625,0.348996,0.0874865,0.302904,0.0819502,0.822659,0.839103,0.778759,0.737197,0.110369,0.427673,0.612665,0.178355,0.162498,0.0311767,0.203279,0.289911,0.551326,0.990187,0.512915,0.586467,0.546054,0.0986381,0.793834,0.0121475,0.996146,0.931484,0.740559,0.0665318,0.945085,0.212774,0.083452,0.0888175,0.0523524,0.111849,0.70651,0.326698,0.720315,0.419434,0.425359,0.201452,0.446105,0.800146,0.798356,0.718717,0.0483353,0.0839655,0.447974,0.940577,0.0515101,0.951937,0.894744,0.888012,0.92682,0.364495,0.195176,0.42244,0.564967,0.767989,0.871718,0.80664,0.638586,0.814915,0.431133,0.593031,0.586541,0.571104,0.421798,0.716881,0.920997,0.146341,0.677802,0.330053,0.82516,0.324188,0.579374,0.976781,0.693708,0.563366,0.684593,0.209415,0.0762556,0.0647171,0.393203,0.271119,0.667817,0.488754,0.250233,0.207761,0.37669,0.0881839,0.121497,0.698917,0.799519,0.88358,0.288595,0.122508,0.537479,0.383926,0.0761433,0.101525,0.886353,0.172769,0.421297,0.234874,0.412201,0.842185,0.706825,0.807278,0.0612152,0.181088,0.904074,0.484317,0.190917,0.471839,0.94667,0.91468,0.912766,0.206165,0.484913,0.206405,0.433173,0.500282,0.242545,0.163131,0.802454,0.695959,0.85913,0.270595,0.387868,0.444304,0.809439,0.941016,0.938244,0.529037,0.0593795,0.132206,0.866663,0.748954,0.518529,0.151003,0.155392,0.918657,0.473038,0.453658,0.0902866,0.936562,0.623682,0.31042,0.339776,0.211924,0.29894,0.998926,0.671155,0.553457,0.395613,0.403156,0.715509,0.0471188,0.467926,0.383662,0.853248,0.339514,0.321707,0.252337,0.02587,0.695282,0.109474,0.0739466,0.30053,0.562301,0.23138,0.608935,0.288574,0.88662,0.638837,0.106074,0.543284,0.414489,0.14143,0.0789375,0.110314,0.546698,0.609289,0.489747,0.12906,0.428014,0.404872,0.30499,0.371172,0.787652,0.792889,0.875362,0.69731,0.527859,0.227219,0.832339,0.138483,0.203933,0.137533,0.529939,0.642557,0.573276,0.498216,0.397249,0.461403,0.783101,0.300826,0.904753,0.335996,0.174293,0.133174,0.938127,0.13707,0.886711,0.0942295,0.290909,0.425487,0.898815,0.89805,0.73258,0.657613,0.112574,0.0828637,0.113169,0.78373,0.200837,0.323795,0.629575,0.214766,0.932529,0.431339,0.20748,0.198009,0.683042,0.957979,0.377429,0.130383,0.085391,0.264125,0.193895,0.38997,0.425822,0.199752,0.556067,0.346501,0.675505,0.186402,0.529232,0.476566,0.232379,0.116559,0.356301,0.451681,0.927488,0.109766,0.466726,0.54241,0.5318,0.0353795,0.327868,0.395712,0.63074,0.667835,0.152035,0.903189,0.418079,0.219183,0.92758,0.000718236,0.649475,0.554266,0.425158,0.279011,0.591235,0.210278,0.405593,0.26924,0.0751948,0.711736,0.0187219,0.28418,0.335432,0.629003,0.934747,0.110702,0.242703,0.561462,0.40152,0.123809,0.989746,0.586302,0.389049,0.00955909,0.212904,0.476649,0.852118,0.387394,0.0492927,0.222835,0.788523,0.569375,0.616788,0.990856,0.397861,0.894134,0.924296,0.990104,0.451766,0.396865,0.299283,0.286104,0.130509,0.176897,0.235395,0.163894,0.640689,0.0549121,0.20618,0.0350883,0.728246,0.48817,0.0141889,0.87714,0.0898555,0.284,0.0589849,0.498444,0.297575,0.809243,0.900025,0.131388,0.123212,0.507332,0.532608,0.587908,0.942818,0.561294,0.95966,0.256034,0.171598,0.892363,0.0673869,0.440558,0.428627,0.370465,0.0687334,0.303057,0.654386,0.709222,0.442362,0.709083,0.86937,0.821641,0.0765989,0.271453,0.123238,0.638746,0.87037,0.730203,0.688785,0.133262,0.391294,0.167207,0.300013,0.983692,0.208951,0.694154,0.713535,0.441792,0.370966,0.984458,0.723452,0.939255,0.393936,0.837408,0.891386,0.942393,0.0363027,0.00771129,0.0298285,0.998627,0.379961,0.64272,0.622152,0.0248479,0.104213,0.535538,0.0765463,0.914896,0.276203,0.600605,0.700262,0.755453,0.544469,0.443043,0.233059,0.62841,0.483647,0.958696,0.759609,0.184352,0.84321,0.482983,0.323285,0.309813,0.636388,0.13088,0.475814,0.290559,0.120262,0.844385,0.357367,0.0562338,0.696357,0.115785,0.69111,0.699426,0.501847,0.783144,0.706681,0.554216,0.615511,0.973695,0.767355,0.29146,0.90098,0.0160036,0.0989816,0.559654,0.749386,0.353199,0.431704,0.68253,0.0715621,0.781293,0.772029,0.118138,0.589403,0.174884,0.930685,0.892433,0.979709,0.796408,0.713667,0.333235,0.0411642,0.417837,0.785443,0.694606,0.511967,0.170135,0.787153,0.12764,0.0537094,0.999826,0.868516,0.30691,0.689012,0.360268,0.0457922,0.782746,0.588226,0.214138,0.501902,0.716487,0.231093,0.479571,0.678048,0.946784,0.665159,0.62016,0.225505,0.202844,0.0629596,0.0930709,0.84589,0.517861,0.261167,0.882464,0.722617,0.346604,0.0468145,0.835502,0.327737,0.568437,0.284507,0.125044,0.092253,0.047502,0.620911,0.386339,0.973232,0.425238,0.189546,0.522383,0.964346,0.513263,0.571973,0.572945,0.406937,0.91017,0.0268851,0.279926,0.339013,0.5927,0.575792,0.41832,0.867085,0.46221,0.532902,0.630379,0.993865,0.457064,0.749778,0.882537,0.678014,0.0916466,0.497983,0.798128,0.0166203,0.647323,0.834311,0.00699633,0.686125,0.0153965,0.173361,0.00365818,0.695131,0.0421656,0.00913674,0.401789,0.666844,0.0665009,0.00601763,0.760064,0.580955,0.999949,0.956357,0.458504,0.571539,0.644978,0.124004,0.592146,0.556662,0.488911,0.658285,0.368503,0.182247,0.993671,0.486688,0.111691,0.838838,0.333849,0.944325,0.508583,0.957246,0.661596,0.0807042,0.273718,0.690301,0.125987,0.980528,0.850237,0.508018,0.662377,0.521592,0.269113,0.220093,0.328215,0.390774,0.0404353,0.768333,0.109572,0.472046,0.196003,0.182195,0.783516,0.309499,0.604445,0.380083,0.559026,0.344579,0.53745,0.861842,0.336688,0.162439,0.693818,0.775837,0.0851604,0.248033,0.25697,0.222724,0.244048,0.701663,0.770272,0.475369,0.974543,0.0838636,0.875962,0.998261,0.0772848,0.243002,0.915202,0.886845,0.892397,0.736125,0.818267,0.263996,0.936946,0.996709,0.294125,0.932054,0.453509,0.869002,0.391179,0.924524,0.953656,0.0156986,0.474047,0.369443,0.543896,0.785955,0.0301343,0.741118,0.136812,0.861844,0.462019,0.306634,0.890617,0.00260305,0.0570819,0.977178,0.899194,0.733402,0.56606,0.586399,0.595418,0.489632,0.207109,0.653357,0.821217,0.680289,0.160075,0.716076,0.631048,0.951336,0.806697,0.0148966,0.905562,0.844045,0.20595,0.0959764,0.286801,0.183624,0.706379,0.112646,0.33847,0.403416,0.423547,0.891982,0.677284,0.695135,0.154712,0.510209,0.223941,0.526691,0.369663,0.356664,0.358598,0.0521447,0.0484403,0.0948457,0.835039,0.356061,0.839157,0.508857,0.259933,0.432831,0.726449,0.557902,0.759259,0.248152,0.930582,0.497477,0.406263,0.122692,0.205346,0.0882831,0.797386,0.457991,0.948091,0.972458,0.777342,0.685876,0.937548,0.963919,0.106722,0.175896,0.823127,0.560875,0.40541,0.853681,0.132645,0.576184,0.810179,0.346232,0.489848,0.108549,0.533535,0.653464,0.281944,0.325742,0.0326594,0.195032,0.377846,0.553926,0.437286,0.531462,0.845966,0.0179211,0.440882,0.96483,0.685849,|0.732574,0.137225,0.254351,0.0113758,0.749263,0.592043,0.961312,0.657351,0.962056,0.84141,0.00671005,0.281818,0.0194891,0.0295724,0.457604,0.0919642,0.686291,0.0927336,0.0835309,0.47891,0.166573,0.570501,0.505943,0.700112,0.397702,0.912535,0.831216,0.578127,0.346904,0.442172,0.519981,0.222778,0.331597,0.943535,0.498979,0.876779,0.347792,0.140739,0.773223,0.319762,0.175209,0.351439,0.564685,0.303341,0.3558,0.457259,0.65446,0.752423,0.452064,0.705557,0.588969,0.158486,0.903991,0.480801,0.183553,0.463635,0.0696989,0.369263,0.217089,0.887908,0.266983,0.0234806,0.624015,0.157722,0.901045,0.795568,0.949853,0.922045,0.25075,0.810507,0.413125,0.333985,0.618507,0.415413,0.561259,0.327308,0.297599,0.374617,0.627551,0.214492,0.441911,0.0449718,0.685526,0.777945,0.518696,0.0285785,0.682873,0.122122,0.105083,0.377562,0.468242,0.187125,0.360519,0.00641668,0.0434623,0.188749,0.892167,0.930526,0.775654,0.0999755,0.464445,0.120651,0.911389,0.533996,0.115158,0.511821,0.467556,0.204384,0.132207,0.294408,0.478926,0.413484,0.983574,0.908644,0.434922,0.711289,0.708554,0.132955,0.313424,0.261009,0.707185,0.291151,0.68679,0.81536,0.437802,0.534156,0.72989,0.73928,0.410115,0.609554,0.961101,0.194366,0.297546,0.272105,0.63244,0.959555,0.880457,0.2431,0.809946,0.284605,0.253108,0.651388,0.921269,0.493609,0.0787626,0.0885704,0.498489,0.296389,0.605167,0.678617,0.228585,0.85904,0.314765,0.679265,0.390683,0.0735314,0.230499,0.68506,0.454958,0.482583,0.352565,0.94966,0.33666,0.185451,0.104638,0.829238,0.928619,0.999642,0.706998,0.616812,0.905533,0.012741,0.732397,0.625711,0.393788,0.720261,0.77265,0.043601,0.946624,0.427495,0.352506,0.943498,0.411157,0.0895413,0.623433,0.666196,0.265562,0.327192,0.655649,0.768567,0.992536,0.0453542,0.0709541,0.984319,0.702872,0.202138,0.356621,0.106551,0.69566,0.0589852,0.771026,0.170478,0.0398269,0.363867,0.989716,0.0376594,0.0753348,0.0962592,0.46344,0.270291,0.671975,0.483672,0.474655,0.291292,0.0249325,0.212517,0.0898319,0.0372516,0.224819,0.105011,0.528165,0.24808,0.533233,0.635697,0.15505,0.711722,0.813405,0.145268,0.0792292,0.687409,0.122788,0.742766,0.17068,0.655965,0.705242,0.204388,0.81553,0.0185841,0.92965,0.303239,0.658653,0.870319,0.439175,0.175068,0.714072,0.935959,0.140117,0.488719,0.806019,0.642838,0.95841,0.431725,0.590061,0.60472,0.196747,0.105774,0.989829,0.825109,0.918703,0.231237,0.970125,0.148556,0.446526,0.708631,0.0552144,0.324081,0.584573,0.0870509,0.216998,0.624578,0.682759,0.374625,0.232875,0.13128,0.784459,0.678088,0.399926,0.125411,0.288351,0.265847,0.25971,0.617996,0.714656,0.643241,0.245776,0.411979,0.710962,0.493806,0.205301,0.285274,0.00646454,0.432478,0.801684,0.00493711,0.828974,0.420099,0.114391,0.744107,0.265947,0.158082,0.724174,0.273583,0.82358,0.566814,0.168944,0.717665,0.667802,0.497744,0.633592,0.239193,0.949041,0.940122,0.111623,0.434377,0.164769,0.806094,0.269406,0.183896,0.341497,0.0693376,0.924746,0.396506,0.831655,0.364192,0.649186,0.549056,0.0182269,0.365008,0.899646,0.339535,0.0118689,0.0268779,0.801376,0.928499,0.682359,0.0950296,0.385074,0.886319,0.722082,0.277079,0.870391,0.468607,0.701957,0.824888,0.497274,0.558952,0.181542,0.891872,0.540743,0.867469,0.36808,0.0540721,0.564123,0.144651,0.660889,0.856402,0.196211,0.805074,0.593491,0.838969,0.43231,0.0467052,0.876709,0.0739639,0.82553,0.233691,0.384967,0.629702,0.336689,0.121341,0.612898,0.854216,0.289273,0.061018,0.956024,0.580793,0.535832,0.753441,0.909202,0.115902,0.98183,0.137542,0.610322,0.613878,0.287321,0.987362,0.42227,0.899967,0.617592,0.806973,0.160289,0.787312,0.113784,0.424595,0.767582,0.0911308,0.0767077,0.386291,0.828048,0.792237,0.556519,0.353428,0.90152,0.393241,0.612438,0.264882,0.197591,0.314231,0.856167,0.357563,0.288335,0.444125,0.76884,0.574707,0.88006,0.239183,0.261647,0.50674,0.997849,0.241145,0.428307,0.979623,0.172671,0.13689,0.849456,0.03847,0.723836,0.439057,0.764871,0.693403,0.157352,0.218238,0.411668,0.811827,0.734534,0.541773,0.519585,0.346446,0.494495,0.378972,0.995885,0.735446,0.428739,0.937874,0.870875,0.124385,0.0757893,0.644117,0.337675,0.695319,0.675176,0.262258,0.21453,0.481259,0.0109222,0.282384,0.194831,0.557647,0.572486,0.729583,0.656854,0.26281,0.70041,0.297402,0.23007,0.388214,0.201314,0.957211,0.136006,0.929637,0.397875,0.799897,0.98633,0.901387,0.309979,0.757103,0.703956,0.764724,0.527586,0.958976,0.661551,0.991933,0.723642,0.513092,0.431696,0.169428,0.957679,0.972991,0.584687,0.147081,0.104126,0.192132,0.474894,0.154058,0.288819,0.878539,0.871849,0.20981,0.519376,0.865232,0.0743189,0.463008,0.150032,0.880227,0.917615,0.264525,0.473542,0.70561,0.138196,0.268881,0.28735,0.411297,0.796404,0.252265,0.494574,0.414311,0.783003,0.0964793,0.235082,0.855669,0.164364,0.601132,0.0190666,0.591048,0.229692,0.52239,0.0940777,0.13406,0.265078,0.467609,0.427638,0.512656,0.225117,0.156959,0.885198,0.827451,0.375443,0.361951,0.692772,0.215936,0.838939,0.440633,0.138144,0.906232,0.732296,0.020371,0.854385,0.83972,0.448872,0.332824,0.223799,0.808131,0.561044,0.95617,0.237453,0.525516,0.284175,0.438102,0.2542,0.590132,0.840737,0.302935,0.243773,0.693302,0.1101,0.415602,0.885995,0.921411,0.751847,0.684635,0.62869,0.689351,0.55503,0.752527,0.318521,0.565599,0.152814,0.836761,0.0232988,0.731878,0.945854,0.550046,0.797438,0.490593,0.0255208,0.46569,0.691216,0.978866,0.60366,0.8151,0.493195,0.425079,0.179596,0.309275,0.661284,0.885889,0.863516,0.49539,0.156991,0.788734,0.199409,0.498376,0.884765,0.263867,0.813354,0.69394,0.765111,0.163652,0.42795,0.453722,0.554329,0.0659005,0.622514,0.354254,0.91318,0.902507,0.773382,0.753274,0.913793,0.0195892,0.229663,0.195723,0.557221,0.618203,0.584907,0.147315,0.798721,0.317883,0.0917959,0.392829,0.134932,0.355753,0.513157,0.106652,0.974281,0.555366,0.0430778,0.601029,0.340762,0.635261,0.897593,0.267041,0.517636,0.660646,0.0483586,0.0534441,0.130219,0.233013,0.924537,0.869574,0.405947,0.511233,0.0526386,0.272246,0.887942,0.33416,0.382634,0.286877,0.671534,0.753481,0.984894,0.768799,0.184875,0.802358,0.393986,0.778787,0.875849,0.916787,0.591032,0.950714,0.529744,0.922607,0.606109,0.401444,0.116297,0.699547,0.412051,0.870751,0.0881492,0.402218,0.706904,0.786795,0.703473,0.885925,0.467081,0.664337,0.774767,0.773972,0.26318,0.607544,0.178909,0.385188,0.264103,0.406617,0.675392,0.881975,0.0313239,0.230634,0.628405,0.918378,0.31118,0.395952,0.518225,0.530379,0.8162,0.860068,0.56202,0.976279,0.621716,0.771355,0.632122,0.599064,0.592529,0.717654,0.831004,0.643492,0.313802,0.948632,0.0596216,0.270711,0.353485,0.218422,0.320187,0.289375,0.310527,0.491214,0.396499,0.246039,0.354875,0.883005,0.619699,0.638464,0.940143,0.898333,0.12344,0.100947,0.53438,0.206069,0.347838,0.305153,0.130078,0.382537,0.884568,0.171688,0.137561,0.844162,0.113998,0.961837,0.873575,0.358498,0.784092,0.775116,0.4555,0.885495,0.648889,0.778032,0.901385,0.13335,0.44157,0.719453,0.974524,0.0805341,0.198293,0.224461,0.580885,0.6736,0.592124,0.515763,0.940871,0.658225,0.615586,0.257844,0.264207,0.354251,0.86299,0.716669,0.491313,0.120002,0.13086,0.762311,0.0937261,0.785885,0.672305,0.295352,0.807129,0.386558,0.955575,0.0172656,0.163554,0.989112,0.327883,0.794226,0.123317,0.0201653,0.0280314,0.271561,0.70095,0.136174,0.411714,0.463266,0.865067,0.66726,0.148624,0.716348,0.515244,0.359743,0.542365,0.101959,0.378569,0.197028,0.534054,0.215535,0.159438,0.60879,0.934577,0.964824,0.391513,0.420063,0.451251,0.272241,0.733444,0.0280043,0.310123,0.616224,0.0492409,0.505833,0.359197,0.425,0.631402,0.328523,0.0404108,0.396261,0.730476,0.249866,0.443733,0.0706035,0.510253,0.424944,0.780802,0.921794,0.0628912,0.132341,0.216194,0.268877,0.176434,0.288655,0.821227,0.986789,0.192014,0.705721,0.958091,0.0343112,0.280811,0.431234,0.361502,0.470772,0.465893,0.553116,0.823501,0.289001,0.685441,0.769844,0.83798,0.844212,0.194469,0.157944,0.0478011,0.0398182,0.791603,0.742487,0.338484,0.461635,0.34095,0.144158,0.552905,0.386058,0.724273,0.308662,0.00473338,0.177598,0.251003,0.678273,0.696968,0.694324,0.63884,0.653447,0.96955,0.998735,0.440459,0.600694,0.302356,0.885035,0.0421337,0.385587,0.126125,0.679319,0.0770811,0.101422,0.119149,0.159845,0.806846,0.568228,0.372776,0.60943,0.536809,0.442099,0.308649,0.145423,0.576975,0.304152,0.793617,0.44886,0.928484,0.700456,0.111832,0.485406,0.753416,0.0568072,0.234152,0.340781,0.309583,0.271354,0.419931,0.709954,0.704293,0.721456,0.552473,0.841812,0.569512,0.420738,0.517094,0.416986,0.671433,0.0819281,0.0619249,0.755511,0.598101,0.253418,0.0936344,0.826356,0.485495,0.200334,0.530807,0.113159,0.41323,0.106613,0.0489182,0.0740896,0.944477,0.716543,0.936016,0.895261,0.650875,0.832485,0.903093,0.831161,0.333868,0.137888,0.49302,0.665538,0.161217,0.527429,0.999258,0.0750607,0.487084,0.24408,0.76115,0.611889,0.606744,0.109098,0.461586,0.230858,0.772512,0.0987339,0.293957,0.656115,0.767858,0.53146,0.558017,0.917011,0.866106,0.796824,0.0905847,0.785023,0.657706,0.861365,0.182404,0.99075,0.794175,0.722508,0.292273,0.520525,0.617468,0.85616,0.265282,0.706597,0.0315692,0.918134,0.105521,0.75873,|0.816972,0.79002,0.361455,0.941356,0.122471,0.349707,0.0363352,0.738777,0.725617,0.388832,0.423501,0.0352062,0.43566,0.202362,0.334658,0.608323,0.117391,0.38026,0.740214,0.908193,0.7766,0.617973,0.319412,0.616435,0.0398731,0.752676,0.744551,0.257264,0.932222,0.23692,0.0169606,0.981485,0.355473,0.861638,0.442623,0.657188,0.599131,0.107453,0.99953,0.985672,0.322757,0.0265117,0.746867,0.827385,0.391143,0.380031,0.901638,0.159004,0.244689,0.106573,0.80556,0.856801,0.144432,0.49545,0.248397,0.372048,0.0274678,0.620594,0.04554,0.960878,0.125816,0.0257955,0.360867,0.919076,0.863825,0.344559,0.880705,0.461072,0.747652,0.710089,0.655679,0.934419,0.714433,0.758392,0.263355,0.453815,0.0876936,0.245458,0.810889,0.954041,0.616993,0.896437,0.290281,0.581164,0.252879,0.763546,0.648842,0.762863,0.283218,0.714291,0.298661,0.707926,0.153706,0.626603,0.78732,0.269878,0.341534,0.886223,0.257669,0.0472243,0.00372118,0.489501,0.504649,0.51348,0.927662,0.201371,0.749034,0.140169,0.160768,0.0171896,0.19053,0.55492,0.917823,0.683377,0.177985,0.354299,0.36859,0.532887,0.357383,0.503722,0.906566,0.0355745,0.698603,0.66084,0.768063,0.735968,0.872257,0.375848,0.525281,0.949058,0.0494912,0.817972,0.518358,0.936324,0.70871,0.953778,0.563011,0.201497,0.674514,0.515992,0.852507,0.743091,0.150718,0.863662,0.259056,0.265277,0.412653,0.87118,0.965697,0.790457,0.382001,0.481205,0.985074,0.505595,0.204388,0.426529,0.933886,0.95796,0.22275,0.638069,0.699936,0.086951,0.538208,0.288923,0.185383,0.250515,0.424903,0.18356,0.545011,0.763406,0.723432,0.025497,0.763489,0.483933,0.34878,0.842306,0.289512,0.730394,0.92182,0.173633,0.504299,0.268544,0.954232,0.130635,0.205288,0.082919,0.289536,0.469039,0.998967,0.607145,0.45574,0.687428,0.302804,0.414978,0.237646,0.554721,0.871985,0.579881,0.930376,0.993145,0.355325,0.200639,0.0364105,0.625229,0.967897,0.269175,0.3779,0.811521,0.706922,0.829752,0.501505,0.458541,0.278679,0.0203221,0.923665,0.738267,0.784687,0.29011,0.580219,0.810157,0.760405,0.656756,0.986719,0.362791,0.0149633,0.18538,0.913251,0.393847,0.813095,0.818457,0.395879,0.305503,0.170585,0.735085,0.0402077,0.511334,0.905864,0.301629,0.720004,0.0341055,0.171949,0.41977,0.193604,0.808114,0.186693,0.719573,0.593644,0.939766,0.373063,0.634086,0.660028,0.365987,0.815252,0.609545,0.516759,0.155525,0.966424,0.199086,0.932486,0.223356,0.126125,0.489793,0.484716,0.246125,0.548308,0.727187,0.722012,0.145234,0.350114,0.729792,0.152299,0.859235,0.852614,0.687463,0.21759,0.506086,0.984646,0.453288,0.0597438,0.296981,0.392911,0.856783,0.53631,0.534786,0.266503,0.5188,0.78026,0.24013,0.349457,0.255802,0.0349676,0.584409,0.71535,0.572014,0.684624,0.899332,0.3316,0.800695,0.903198,0.814065,0.787253,0.07046,0.18085,0.543979,0.164132,0.962383,0.280606,0.0373107,0.79145,0.625598,0.741273,0.414849,0.777433,0.753455,0.73841,0.542537,0.49939,0.793887,0.274061,0.196727,0.0327905,0.406531,0.0300315,0.115661,0.675381,0.34792,0.861275,0.96817,0.278706,0.903162,0.711209,0.0553446,0.18014,0.975564,0.171222,0.654612,0.315429,0.30611,0.462048,0.931109,0.901106,0.391264,0.236491,0.00586957,0.464293,0.721112,0.293867,0.501698,0.30323,0.642455,0.931235,0.521718,0.140043,0.0354142,0.619717,0.88313,0.926007,0.560512,0.949603,0.413731,0.751661,0.776975,0.814523,0.673459,0.389221,0.607419,0.736475,0.792818,0.378008,0.542397,0.230561,0.234977,0.861984,0.903483,0.467113,0.625821,0.528181,0.183879,0.150958,0.125893,0.873542,0.250324,0.187096,0.130097,0.499213,0.471685,0.91751,0.668858,0.789251,0.98711,0.819358,0.0289091,0.0301515,0.425155,0.232425,0.7438,0.901466,0.330035,0.06834,0.882276,0.186721,0.570658,0.281298,0.57739,0.882413,0.638349,0.862573,0.886976,0.444778,0.963782,0.266156,0.181249,0.848035,0.453547,0.103809,0.588241,0.112561,0.963447,0.745024,0.0586426,0.205682,0.0708416,0.154405,0.431546,0.978771,0.682491,0.445055,0.72251,0.936793,0.889347,0.744887,0.986555,0.721561,0.12501,0.38514,0.484311,0.947311,0.316503,0.843329,0.970203,0.45372,0.766268,0.390514,0.378782,0.739176,0.799066,0.131659,0.727333,0.485555,0.27565,0.210689,0.911936,0.571476,0.821375,0.153861,0.89588,0.0583885,0.390033,0.355167,0.503771,0.0281324,0.0637096,0.40226,0.567509,0.562307,0.00953239,0.859888,0.694027,0.301056,0.738902,0.0419927,0.160118,0.540739,0.0532552,0.240639,0.763558,0.965412,0.576984,0.666303,0.473876,0.814076,0.922161,0.771815,0.409071,0.404832,0.574517,0.990666,0.224183,0.484233,0.919896,0.366193,0.970376,0.949271,0.880405,0.0234542,0.701041,0.237837,0.950583,0.971584,0.839904,0.432863,0.332535,0.818259,0.539548,0.0996751,0.630005,0.627536,0.433476,0.843673,0.534551,0.135459,0.588965,0.679016,0.21774,0.507067,0.2317,0.704901,0.163974,0.947142,0.59091,0.192426,0.0964023,0.59194,0.68026,0.63105,0.916451,0.137497,0.32669,0.353072,0.79483,0.141143,0.370497,0.83043,0.518019,0.190614,0.803699,0.684603,0.574649,0.451315,0.769016,0.445912,0.468679,0.519951,0.721287,0.654036,0.949058,0.63747,0.227489,0.178007,0.642091,0.601045,0.374101,0.932609,0.744947,0.611037,0.827549,0.311736,0.0558506,0.301726,0.555434,0.0145741,0.384399,0.902848,0.877026,0.74677,0.886003,0.676599,0.925598,0.379273,0.931409,0.355852,0.693861,0.433437,0.464624,0.931368,0.925871,0.519423,0.0805308,0.803228,0.219896,0.156476,0.107949,0.45545,0.831407,0.427955,0.450214,0.273174,0.270189,0.0255459,0.186824,0.0730141,0.727421,0.465323,0.77659,0.583218,0.70979,0.115376,0.832841,0.585895,0.260461,0.419032,0.242508,0.846763,0.260753,0.483877,0.947201,0.867195,0.642278,0.690944,0.217421,0.404101,0.242026,0.0688441,0.970932,0.00505835,0.428325,0.28063,0.298907,0.716854,0.287732,0.466346,0.74189,0.794193,0.856016,0.588597,0.746984,0.738422,0.0122703,0.119536,0.482544,0.572757,0.331155,0.88322,0.385023,0.448031,0.0749817,0.965412,0.548833,0.425903,0.956339,0.606981,0.179533,0.0847251,0.295368,0.755337,0.348108,0.424786,0.799902,0.500732,0.97512,0.824225,0.101621,0.668705,0.382621,0.691866,0.592683,0.064742,0.699531,0.806991,0.0502712,0.8149,0.119073,0.827894,0.310153,0.0666927,0.225373,0.211601,0.0121303,0.963989,0.85551,0.928803,0.503232,0.28243,0.898034,0.474433,0.785791,0.0905548,0.940183,0.549654,0.637347,0.880438,0.18193,0.59777,0.955382,0.00109464,0.749377,0.455237,0.541955,0.113062,0.973166,0.582539,0.950584,0.238169,0.638089,0.818281,0.159003,0.753714,0.18752,0.351234,0.961538,0.30138,0.0198678,0.701827,0.64507,0.291144,0.0702028,0.321685,0.934523,0.741011,0.895215,0.689403,0.513573,0.377568,0.39919,0.711988,0.150083,0.506453,0.920685,0.639432,0.969455,0.242815,0.925373,0.187216,0.110953,0.777164,0.960901,0.258942,0.389804,0.762467,0.0473487,0.649992,0.411709,0.51209,0.42928,0.076843,0.988381,0.0373908,0.249928,0.498057,0.336671,0.613413,0.796435,0.904531,0.930873,0.95204,0.549199,0.655754,0.115559,0.947416,0.888265,0.880796,0.0881882,0.383495,0.657503,0.407241,0.15235,0.677004,0.147697,0.529829,0.200787,0.12545,0.853552,0.494428,0.894843,0.6298,0.904073,0.25683,0.998044,0.266961,0.827335,0.927927,0.566089,0.990427,0.786896,0.438592,0.704597,0.688519,0.0569339,0.628432,0.486515,0.521345,0.42242,0.383652,0.453112,0.891077,0.934945,0.766103,0.974692,0.427331,0.00396359,0.879163,0.742854,0.938596,0.152635,0.60222,0.195204,0.394477,0.851792,0.396431,0.334147,0.357686,0.400384,0.667048,0.647233,0.15771,0.488359,0.699854,0.822263,0.0210424,0.0863125,0.977871,0.864686,0.632061,0.301818,0.902627,0.900855,0.800388,0.246352,0.874711,0.834435,0.26339,0.0291634,0.417736,0.0985969,0.913805,0.416947,0.38378,0.412005,0.637465,0.368887,0.210875,0.825135,0.163222,0.482711,0.294144,0.858581,0.266825,0.557991,0.228702,0.532019,0.62304,0.325579,0.821274,0.699591,0.35602,0.752426,0.0360145,0.573685,0.0467178,0.0804728,0.850108,0.57453,0.247357,0.632657,0.8882,0.408672,0.0764863,0.170849,0.975357,0.420215,0.160405,0.818381,0.824075,0.225102,0.774614,0.774038,0.421013,0.943069,0.440457,0.876708,0.175509,0.467742,0.618506,0.659216,0.739546,0.143858,0.398117,0.105075,0.19104,0.98562,0.0846525,0.856335,0.0639856,0.208564,0.779332,0.956209,0.442221,0.19223,0.446661,0.790235,0.83653,0.517163,0.983471,0.274914,0.732542,0.593763,0.0894564,0.650012,0.814786,0.228082,0.222211,0.076826,0.516279,0.215282,0.987781,0.191532,0.282528,0.898501,0.327257,0.462174,0.0142896,0.252218,0.228881,0.570854,0.139957,0.943921,0.653142,0.135452,0.133417,0.929045,0.509409,0.583572,0.680909,0.462808,0.667019,0.481727,0.18629,0.524211,0.683495,0.707604,0.470662,0.10349,0.0709467,0.479422,0.0516702,0.812436,0.184515,0.0333272,0.225034,0.331691,0.98624,0.744344,0.0800941,0.723679,0.972477,0.903005,0.952526,0.39378,0.904571,0.989459,0.54151,0.92275,0.490649,0.357017,0.729976,0.680998,0.155248,0.330432,0.413548,0.772366,0.290776,0.00642461,0.566968,0.480223,0.0630018,0.0334343,0.472925,0.608479,0.0958714,0.361119,0.74227,0.92262,0.792594,0.919448,0.316727,0.970021,0.654324,0.0716897,0.84078,0.862438,0.984846,0.549662,0.565316,0.164576,0.452789,0.340799,0.542719,0.592445,0.957311,0.312581,0.372501,0.624852,0.399728,0.647648,0.771869,0.188189,0.49828,0.861315,0.102376,0.567201,|0.0592732,0.990253,0.453096,0.775213,0.0748098,0.269108,0.806572,0.090225,0.567565,0.0843206,0.640176,0.475993,0.111198,0.780972,0.900821,0.257925,0.814886,0.0625929,0.804934,0.851239,0.225464,0.20427,0.0843707,0.238295,0.120088,0.144501,0.907058,0.245467,0.20517,0.790489,0.921642,0.726343,0.324093,0.688147,0.189764,0.666375,0.767448,0.170102,0.715613,0.438151,0.116017,0.077305,0.8193,0.0779677,0.241427,0.0302463,0.630131,0.732988,0.237391,0.677042,0.960971,0.113631,0.166834,0.109233,0.696856,0.145976,0.942216,0.896584,0.0355937,0.243949,0.425843,0.559836,0.389177,0.60694,0.992711,0.84543,0.803355,0.221551,0.017974,0.0906703,0.27768,0.569339,0.0999825,0.370016,0.0917869,0.406865,0.798326,0.65074,0.705758,0.388173,0.36082,0.895926,0.517016,0.111674,0.732921,0.949284,0.811024,0.172979,0.516281,0.309488,0.96779,0.755523,0.898718,0.206572,0.241488,0.978159,0.19457,0.703778,0.877183,0.565694,0.00737214,0.193726,0.906578,0.154062,0.850878,0.690801,0.869248,0.475368,0.160556,0.137688,0.0930098,0.976506,0.719224,0.223898,0.35778,0.739315,0.361179,0.581574,0.793567,0.0755753,0.57469,0.420685,0.0674285,0.77861,0.451452,0.909471,0.253961,0.345506,0.170366,0.606475,0.342365,0.329538,0.729869,0.860892,0.889491,0.633309,0.938077,0.25439,0.658966,0.548898,0.562277,0.694578,0.343909,0.0478968,0.352905,0.766584,0.0155016,0.426221,0.661363,0.138192,0.525767,0.874514,0.735155,0.947669,0.0699309,0.656533,0.729589,0.132899,0.551518,0.43507,0.772038,0.760993,0.936745,0.357771,0.178624,0.999634,0.319448,0.94845,0.509275,0.955799,0.195882,0.826092,0.595268,0.662887,0.946636,0.899639,0.725077,0.652107,0.903843,0.434209,0.157437,0.860587,0.966858,0.252489,0.130153,0.614298,0.82177,0.692598,0.388667,0.353708,0.799409,0.665665,0.299267,0.0675551,0.220345,0.817875,0.24741,0.656455,0.804356,0.658356,0.638796,0.411978,0.370586,0.269174,0.121861,0.383435,0.919716,0.693177,0.663171,0.319636,0.683325,0.862606,0.739451,0.457372,0.0260001,0.571774,0.767402,0.586662,0.83724,0.334809,0.137486,0.201798,0.331149,0.432586,0.794407,0.966094,0.108541,0.94128,0.106452,0.233878,0.0525509,0.282242,0.474844,0.564015,0.742556,0.602002,0.629667,0.0820203,0.540021,0.112782,0.38813,0.298936,0.639688,0.245744,0.442726,0.0715885,0.532026,0.867375,0.801579,0.746386,0.879237,0.860474,0.205084,0.402619,0.953757,0.756933,0.0856745,0.0556596,0.82105,0.958863,0.420673,0.175249,0.84438,0.39471,0.809215,0.850608,0.00671619,0.0810817,0.630151,0.816007,0.0422186,0.791773,0.10703,0.776103,0.569275,0.438104,0.726232,0.378204,0.706981,0.309878,0.0352355,0.840345,0.931332,0.856375,0.701745,0.858118,0.668116,0.0028314,0.370468,0.762676,0.367576,0.9499,0.108543,0.937817,0.194838,0.914453,0.788024,0.109059,0.639284,0.591671,0.520779,0.103842,0.899791,0.765286,0.208991,0.158648,0.315372,0.741309,0.91603,0.0734087,0.765946,0.496721,0.606781,0.478289,0.845688,0.793708,0.0636696,0.344703,0.15034,0.826718,0.464437,0.308777,0.175755,0.699081,0.533856,0.804791,0.21308,0.413184,0.232262,0.856269,0.830528,0.422892,0.248435,0.686269,0.265598,0.133861,0.51598,0.264299,0.0650483,0.276567,0.0275642,0.729929,0.272689,0.596453,0.120863,0.637218,0.0736924,0.3503,0.339374,0.832821,0.638392,0.286957,0.762567,0.72918,0.233788,0.689174,0.33367,0.849218,0.867894,0.38375,0.924445,0.798436,0.112341,0.433291,0.807933,0.284951,0.0365149,0.490552,0.0624833,0.789332,0.589459,0.586744,0.30037,0.668303,0.310936,0.131397,0.571789,0.353166,0.342674,0.0967976,0.101873,0.852276,0.67318,0.654133,0.945412,0.964083,0.713823,0.132773,0.266141,0.785477,0.260779,0.907344,0.651893,0.283581,0.122705,0.145142,0.660032,0.121887,0.0875367,0.493066,0.0360689,0.840516,0.512431,0.995078,0.922892,0.284929,0.20275,0.355661,0.620898,0.909765,0.68304,0.622162,0.00320452,0.543543,0.830714,0.783375,0.842383,0.0126907,0.728584,0.263747,0.81675,0.623673,0.143089,0.108793,0.374143,0.628852,0.592643,0.919873,0.203415,0.973127,0.408643,0.868212,0.956137,0.673643,0.123557,0.789296,0.417845,0.358184,0.222371,0.752295,0.135507,0.414005,0.92196,0.743181,0.224175,0.364136,0.705811,0.068437,0.733117,0.712832,0.837165,0.0116681,0.534773,0.869884,0.720996,0.688005,0.678993,0.173662,0.424895,0.914169,0.561405,0.553361,0.719028,0.362983,0.888062,0.315395,0.033305,0.673396,0.315712,0.369489,0.332775,0.176796,0.349025,0.779304,0.593882,0.545553,0.828159,0.717607,0.766735,0.232832,0.814533,0.917592,0.0441432,0.174016,0.30571,0.28493,0.142068,0.437509,0.270531,0.800942,0.238421,0.261025,0.796944,0.362699,0.482933,0.794277,0.293869,0.567072,0.675909,0.975908,0.343878,0.410404,0.741085,0.442573,0.284703,0.850295,0.0918254,0.318983,0.858565,0.145049,0.798903,0.208113,0.439111,0.20166,0.878974,0.418802,0.536704,0.383837,0.327383,0.686187,0.538055,0.989153,0.77905,0.361749,0.00963712,0.0552885,0.25704,0.442211,0.602377,0.283758,0.566321,0.510051,0.943647,0.997155,0.372883,0.579551,0.00375092,0.235614,0.0483007,0.334131,0.132755,0.116518,0.326193,0.233903,0.862618,0.572144,0.825495,0.467033,0.351189,0.845972,0.0559994,0.0650539,0.847688,0.820084,0.863389,0.0922751,0.425126,0.995604,0.304495,0.177487,0.833926,0.302127,0.382923,0.734857,0.124761,0.0131657,0.257045,0.107687,0.462233,0.771261,0.00800633,0.268686,0.60295,0.261638,0.433589,0.477706,0.589197,0.0436944,0.89783,0.457485,0.381965,0.985818,0.588941,0.25545,0.563743,0.760985,0.157219,0.467507,0.20018,0.46824,0.333427,0.331631,0.319442,0.268842,0.797941,0.761546,0.449212,0.142219,0.0153438,0.108115,0.675542,0.449838,0.304806,0.252022,0.767693,0.369732,0.710136,0.738808,0.859351,0.605025,0.885267,0.209097,0.501588,0.755989,0.820253,0.527391,0.491375,0.482172,0.281532,0.0179977,0.532525,0.735864,0.888606,0.953718,0.808614,0.203,0.787378,0.392108,0.858553,0.586616,0.668518,0.204529,0.157636,0.56063,0.100313,0.688455,0.0854236,0.245523,0.316637,0.740569,0.0451863,0.787484,0.583885,0.426941,0.390415,0.325478,0.718103,0.95807,0.408692,0.799211,0.235839,0.868209,0.995831,0.615624,0.973731,0.39844,0.20113,0.0560824,0.468497,0.742327,0.611104,0.0823638,0.958825,0.943311,0.628089,0.394694,0.998397,0.241192,0.827263,0.929444,0.999992,0.436828,0.808809,0.923014,0.218488,0.222102,0.195815,0.950979,0.33596,0.861387,0.822865,0.918332,0.316219,0.663378,0.962614,0.256126,0.486569,0.0668383,0.785127,0.425351,0.555301,0.408685,0.011161,0.795577,0.379781,0.469504,0.341082,0.729642,0.934729,0.201451,0.186329,0.0208561,0.67284,0.0131595,0.124219,0.979933,0.234832,0.126075,0.41613,0.474624,0.927161,0.199006,0.539633,0.767402,0.956862,0.82796,0.284178,0.328224,0.145356,0.0558233,0.51683,0.0911093,0.0297026,0.870711,0.890026,0.801652,0.0793977,0.659599,0.60922,0.833362,0.323376,0.548726,0.0751579,0.566873,0.699702,0.693493,0.735724,0.66077,0.34583,0.251075,0.771872,0.902159,0.981785,0.676655,0.61622,0.846413,0.620154,0.0553246,0.455817,0.178898,0.447988,0.253168,0.311472,0.0296084,0.217363,0.322377,0.960608,0.0856752,0.787911,0.677822,0.394813,0.904952,0.463155,0.317291,0.4286,0.315185,0.162586,0.0310153,0.240601,0.0281867,0.313032,0.843988,0.295193,0.52796,0.529559,0.796357,0.23813,0.338679,0.610193,0.69244,0.0610293,0.0447941,0.0618634,0.553124,0.55295,0.846403,0.798812,0.987715,0.738852,0.289538,0.232032,0.700045,0.940353,0.00763643,0.246923,0.104766,0.0661854,0.80251,0.0732919,0.280794,0.167399,0.782385,0.351623,0.0761649,0.340751,0.80785,0.491147,0.939955,0.306439,0.761359,0.904694,0.532221,0.233772,0.506259,0.580702,0.0342171,0.115699,0.0535975,0.671909,0.495589,0.605945,0.480107,0.424087,0.561782,0.419473,0.389342,0.530703,0.0215837,0.367192,0.813449,0.634085,0.931862,0.296277,0.778965,0.226253,0.752513,0.0347279,0.113057,0.0143054,0.486589,0.469575,0.308318,0.0111813,0.374721,0.843895,0.0383962,0.778482,0.429113,0.77806,0.267874,0.123646,0.929578,0.344275,0.706094,0.0975696,0.111772,0.908642,0.482488,0.874054,0.490127,0.24743,0.577941,0.868623,0.337584,0.199971,0.860824,0.654934,0.720113,0.374598,0.574352,0.204815,0.574165,0.262555,0.621249,0.142847,0.916372,0.685382,0.435999,0.767707,0.697149,0.532231,0.471235,0.765713,0.0126128,0.311139,0.760519,0.808267,0.191938,0.543434,0.862889,0.665688,0.846994,0.250919,0.245023,0.722798,0.310212,0.833848,0.417609,0.93361,0.660192,0.331426,0.848523,0.0513024,0.949506,0.781162,0.854218,0.0572817,0.345511,0.685744,0.15175,0.357389,0.626109,0.986898,0.674207,0.338995,0.325837,0.109447,0.219986,0.179626,0.566046,0.954012,0.171866,0.607449,0.762286,0.325838,0.950715,0.130193,0.488155,0.317185,0.283908,0.521484,0.47307,0.938198,0.777242,0.974527,0.489214,0.975177,0.677151,0.0669554,0.413058,0.326037,0.105788,0.548841,0.324339,0.642396,0.886207,0.637371,0.338373,0.0143143,0.959142,0.298419,0.160131,0.608257,0.773411,0.367617,0.301712,0.398145,0.898011,0.453236,0.370884,0.477034,0.0638198,0.683766,0.562765,0.766994,0.795193,0.716977,0.0689435,0.93371,0.424422,0.43533,0.163386,0.772233,0.302975,0.607891,0.844954,0.888798,0.285231,0.990607,0.918139,0.163645,0.0349176,0.424985,0.270077,0.501657,0.939278,0.936684,0.450409,0.423418,0.930268,0.27374,0.00893664,0.817532,0.35103,0.627166,0.319367,0.976556,0.791636,0.731322,0.871211,|0.620588,0.649091,0.155206,0.299022,0.992795,0.579258,0.996765,0.96917,0.927213,0.643994,0.309778,0.234813,0.340088,0.742779,0.412084,0.634979,0.417895,0.636473,0.917173,0.572631,0.10645,0.34548,0.0248473,0.989868,0.0146344,0.656677,0.42073,0.482209,0.346504,0.887942,0.0617482,0.391234,0.664824,0.735915,0.415305,0.503659,0.926445,0.617599,0.786395,0.212062,0.942764,0.619643,0.15838,0.321537,0.88453,0.605698,0.718805,0.973936,0.428018,0.499669,0.446751,0.328222,0.0815836,0.178823,0.460635,0.894246,0.867431,0.409589,0.0300254,0.804203,0.669005,0.227402,0.835642,0.650587,0.547125,0.737462,0.97973,0.660245,0.41116,0.43073,0.30173,0.868138,0.853419,0.764426,0.990438,0.338448,0.362651,0.729794,0.71289,0.328227,0.742006,0.18858,0.520489,0.80378,0.475269,0.227172,0.611283,0.0272986,0.098479,0.496341,0.0945435,0.847553,0.866126,0.372259,0.0774167,0.544872,0.427662,0.376207,0.983076,0.935645,0.078191,0.959282,0.296944,0.788271,0.427816,0.354984,0.755921,0.0713151,0.729351,0.482072,0.0856916,0.186713,0.602926,0.72064,0.126677,0.951141,0.080582,0.925104,0.378854,0.484674,0.885126,0.168274,0.385662,0.934666,0.413559,0.62305,0.619904,0.489481,0.0680565,0.284059,0.700855,0.600908,0.771339,0.46968,0.618509,0.873571,0.984312,0.964472,0.751445,0.0365022,0.213863,0.844411,0.0126584,0.199398,0.971919,0.0126715,0.0664682,0.91071,0.445524,0.53455,0.784642,0.19729,0.484723,0.884773,0.329511,0.749914,0.40171,0.891272,0.0834082,0.233448,0.614395,0.117624,0.121011,0.0973935,0.0377163,0.0644987,0.659671,0.738966,0.402568,0.271291,0.354208,0.33743,0.442842,0.174997,0.135189,0.344317,0.954245,0.576583,0.831723,0.201514,0.995998,0.48245,0.824249,0.89403,0.100927,0.707832,0.629799,0.245932,0.348931,0.529298,0.405138,0.423223,0.538238,0.698482,0.140617,0.970845,0.574617,0.763703,0.601424,0.401454,0.705679,0.549355,0.0510812,0.988808,0.0340863,0.618047,0.711097,0.735155,0.597608,0.722597,0.522216,0.768966,0.51776,0.467236,0.946239,0.386817,0.666431,0.238158,0.035571,0.812009,0.833185,0.455938,0.116279,0.184118,0.313614,0.840465,0.696437,0.783519,0.589218,0.367179,0.543552,0.860604,0.410709,0.7327,0.162742,0.917958,0.156376,0.83509,0.303673,0.90678,0.548722,0.710917,0.790411,0.654111,0.655491,0.5881,0.108528,0.0976736,0.598362,0.50711,0.368451,0.216815,0.0661048,0.703199,0.434922,0.443577,0.05035,0.634264,0.810938,0.169032,0.21776,0.504965,0.989129,0.310088,0.807816,0.257864,0.910544,0.195988,0.513463,0.148352,0.463851,0.870641,0.401225,0.793341,0.587912,0.101443,0.611588,0.533597,0.959785,0.337965,0.43631,0.374752,0.166177,0.306546,0.605308,0.995983,0.0321712,0.973023,0.524036,0.123236,0.989441,0.439125,0.159407,0.54052,0.279961,0.136749,0.165318,0.574127,0.608177,0.531923,0.886829,0.60923,0.808723,0.549926,0.109422,0.856627,0.535227,0.15281,0.69343,0.717435,0.170453,0.701822,0.543898,0.375475,0.282332,0.802909,0.0903108,0.634174,0.778314,0.722433,0.807822,0.988721,0.171454,0.489252,0.341935,0.12564,0.722034,0.67158,0.260915,0.15733,0.723273,0.678281,0.567383,0.132646,0.580748,0.591743,0.300311,0.336097,0.337495,0.250794,0.27163,0.698006,0.210591,0.804437,0.728171,0.801306,0.357679,0.670376,0.146768,0.0139005,0.907105,0.97062,0.250178,0.200866,0.188111,0.230041,0.992243,0.32694,0.0294676,0.245142,0.843403,0.819153,0.669756,0.128812,0.372346,0.608516,0.986186,0.747472,0.399724,0.419668,0.143172,0.874964,0.301425,0.580908,0.369732,0.231205,0.84277,0.659977,0.899001,0.361891,0.356517,0.708599,0.304309,0.856951,0.571515,0.50792,0.521994,0.696725,0.926406,0.52588,0.0147047,0.29285,0.349984,0.313964,0.457368,0.667116,0.519124,0.482891,0.678563,0.12309,0.224893,0.809852,0.798006,0.361829,0.0583621,0.656206,0.64586,0.551432,0.865462,0.440437,0.550787,0.479423,0.576918,0.628447,0.221044,0.530534,0.0687697,0.993409,0.782369,0.783703,0.589048,0.806146,0.841256,0.622332,0.393087,0.524318,0.80878,0.988836,0.757689,0.170154,0.33853,0.314957,0.213847,0.8837,0.360617,0.821561,0.375868,0.825795,0.0730184,0.4114,0.20514,0.967537,0.398787,0.0194264,0.300386,0.242981,0.264244,0.473135,0.881009,0.965098,0.921819,0.913685,0.262219,0.0680413,0.434145,0.722732,0.808932,0.562929,0.14353,0.54907,0.149065,0.899473,0.492704,0.0944268,0.457103,0.737166,0.45547,0.16838,0.447904,0.415254,0.924983,0.816739,0.255443,0.139848,0.291548,0.213944,0.3948,0.444318,0.313332,0.74773,0.915644,0.368107,0.401739,0.345344,0.808622,0.510282,0.15392,0.644584,0.223233,0.461854,0.246894,0.915434,0.764594,0.495275,0.00810045,0.239124,0.953511,0.113526,0.167152,0.715691,0.184177,0.887171,0.653085,0.39079,0.394632,0.485954,0.527474,0.794744,0.784727,0.221429,0.511323,0.449781,0.0592474,0.463095,0.0809767,0.0656034,0.343775,0.497358,0.3849,0.247389,0.557075,0.940678,0.59386,0.552389,0.10166,0.738545,0.777253,0.484618,0.866309,0.0452936,0.558736,0.039249,0.0338924,0.404685,0.907705,0.560117,0.412054,0.709574,0.203183,0.269939,0.547447,0.702815,0.450294,0.103725,0.892956,0.964742,0.823856,0.287826,0.843936,0.294421,0.0705457,0.731463,0.548443,0.521893,0.152523,0.36641,0.381278,0.109415,0.93198,0.130824,0.291231,0.00189257,0.0565673,0.0181133,0.604014,0.229255,0.116456,0.142312,0.73993,0.291513,0.787551,0.435186,0.705386,0.0955797,0.657722,0.361732,0.632724,0.0729727,0.242735,0.999674,0.727249,0.0146183,0.333678,0.511165,0.449256,0.768165,0.352254,0.337538,0.263956,0.528042,0.018357,0.160948,0.0880818,0.458195,0.0991452,0.975015,0.6572,0.388273,0.673942,0.611513,0.464142,0.748485,0.206474,0.934199,0.563364,0.772366,0.634579,0.33221,0.685518,0.0419158,0.582437,0.694531,0.782087,0.859053,0.137746,0.030679,0.407471,0.997062,0.232304,0.249401,0.251704,0.889306,0.493453,0.242615,0.357596,0.576174,0.21357,0.449713,0.484441,0.249679,0.919715,0.149942,0.50148,0.703822,0.890463,0.287905,0.238201,0.261579,0.34192,0.586374,0.609519,0.859565,0.689534,0.00191671,0.777508,0.216327,0.412934,0.38308,0.577433,0.321463,0.146896,0.527843,0.288009,0.757887,0.984122,0.743345,0.0315161,0.985137,0.481142,0.96563,0.950513,0.52558,0.120984,0.968645,0.0228397,0.0838649,0.223138,0.0764002,0.325719,0.099344,0.245403,0.798486,0.186263,0.468468,0.991788,0.747045,0.845766,0.860236,0.923887,0.220423,0.509388,0.643408,0.903349,0.362476,0.886857,0.912133,0.31214,0.34223,0.216344,0.575453,0.875405,0.139206,0.948651,0.642497,0.0536001,0.319514,0.45101,0.0423309,0.956071,0.941586,0.417565,0.729644,0.709814,0.490251,0.153557,0.670046,0.606662,0.127504,0.753415,0.727819,0.229361,0.00121075,0.0733909,0.693343,0.0636598,0.871756,0.000532627,0.580849,0.912992,0.104684,0.92925,0.0778973,0.465476,0.177264,0.432095,0.404028,0.735649,0.689259,0.959764,0.686699,0.884112,0.178542,0.730517,0.440004,0.735179,0.351724,0.888378,0.964851,0.633424,0.246922,0.948893,0.82946,0.0926433,0.331625,0.8978,0.691783,0.639649,0.948382,0.361244,0.140036,0.462343,0.628516,0.477593,0.596122,0.232243,0.548588,0.453163,0.889343,0.512296,0.529384,0.553421,0.910632,0.508765,0.365619,0.182685,0.496264,0.546258,0.0869821,0.343563,0.53972,0.925194,0.83417,0.466783,0.330536,0.153681,0.175574,0.885202,0.709327,0.748146,0.156968,0.482085,0.0283259,0.558044,0.238925,0.9282,0.453894,0.692486,0.986332,0.661832,0.663812,0.678429,0.151394,0.0940841,0.446466,0.795616,0.103046,0.18774,0.887505,0.020467,0.332831,0.398736,0.22809,0.911545,0.238475,0.745349,0.875749,0.416794,0.390069,0.395414,0.628333,0.695531,0.396698,0.635551,0.876067,0.166375,0.236003,0.568787,0.684509,0.270972,0.124143,0.758324,0.179179,0.860834,0.660653,0.609623,0.308919,0.0659277,0.367085,0.385247,0.846381,0.298663,0.887259,0.883851,0.137057,0.246334,0.221918,0.979211,0.0323637,0.0107281,0.598629,0.683413,0.485906,0.904405,0.952183,0.576173,0.972762,0.315478,0.469353,0.0834956,0.834512,0.361118,0.251185,0.131524,0.789967,0.765956,0.626708,0.0190156,0.586727,0.901492,0.953895,0.956546,0.158806,0.807064,0.386779,0.809208,0.831657,0.701502,0.0600471,0.666287,0.878615,0.195494,0.0143656,0.544947,0.242112,0.996708,0.768438,0.382931,0.172564,0.2824,0.148368,0.785283,0.738131,0.950725,0.685614,0.685445,0.265356,0.992773,0.686063,0.298867,0.444882,0.13399,0.356209,0.925428,0.443438,0.691193,0.338097,0.0606951,0.020227,0.522104,0.430167,0.712725,0.981063,0.681757,0.198779,0.598359,0.19739,0.66415,0.296682,0.172131,0.33882,0.164126,0.735164,0.107982,0.244648,0.0296379,0.998152,0.381644,0.275149,0.634569,0.523472,0.490129,0.119042,0.371669,0.880187,0.889647,0.40643,0.839663,0.344189,0.256137,0.166492,0.170754,0.569348,0.350726,0.936493,0.277413,0.4048,0.299861,0.641943,0.268968,0.872409,0.64094,0.665473,0.172781,0.808422,0.78507,0.648189,0.605031,0.730988,0.405901,0.878607,0.220841,0.647312,0.188937,0.563626,0.790726,0.37947,0.183954,0.0498201,0.822457,0.948116,0.212433,0.899354,0.793433,0.698213,0.773268,0.7926,0.389204,0.549971,0.985847,0.2951,0.363894,0.971659,0.807944,0.809745,0.511974,0.984169,0.941118,0.10403,0.977358,0.513685,0.379082,0.269526,0.674622,0.447668,0.624971,0.898655,0.644691,0.852529,0.980766,0.993321,0.405218,0.926549,0.859831,0.293191,0.621413,0.428547,0.800914,0.0788448,0.804756,0.0591547,|0.38107,0.0613036,0.885885,0.358297,0.639415,0.627018,0.654844,0.680824,0.354001,0.849597,0.897454,0.160942,0.670785,0.764349,0.338544,0.200149,0.110791,0.595665,0.926692,0.887235,0.897793,0.902736,0.246377,0.639252,0.868234,0.34008,0.25645,0.84591,0.477548,0.453937,0.341978,0.167892,0.871952,0.911226,0.156153,0.509717,0.869759,0.753309,0.822721,0.576102,0.94465,0.435864,0.273394,0.906143,0.325936,0.0378437,0.803162,0.225913,0.496909,0.81146,0.713103,0.798712,0.917078,0.945392,0.06421,0.601947,0.53764,0.959504,0.0844002,0.590307,0.131255,0.935039,0.224901,0.306152,0.736347,0.54258,0.392305,0.358158,0.664927,0.661948,0.161207,0.690964,0.37229,0.905575,0.751596,0.918837,0.19524,0.385343,0.195831,0.912009,0.117521,0.705641,0.0746832,0.963621,0.49724,0.0783044,0.935282,0.618219,0.284728,0.791774,0.0560755,0.909901,0.169981,0.430536,0.96414,0.238954,0.287372,0.608147,0.483948,0.696173,0.492052,0.472749,0.949966,0.892925,0.546962,0.113158,0.489139,0.780032,0.928154,0.775713,0.935358,0.302989,0.0928755,0.495825,0.568516,0.14531,0.487388,0.987575,0.05305,0.660963,0.752136,0.813421,0.339445,0.854313,0.696239,0.392714,0.794636,0.534931,0.577192,0.04885,0.811034,0.301849,0.451199,0.343017,0.889736,0.548659,0.0474693,0.835127,0.515929,0.472461,0.947473,0.165892,0.1483,0.0978531,0.213557,0.706983,0.816602,0.988286,0.675478,0.6969,0.307106,0.351699,0.603544,0.0144271,0.519971,0.210577,0.450494,0.425507,0.808456,0.940885,0.779296,0.19377,0.0984433,0.533531,0.817476,0.525567,0.551678,0.539098,0.263066,0.40972,0.506168,0.295247,0.524551,0.658416,0.804653,0.903282,0.51701,0.111683,0.0109224,0.0244607,0.764131,0.233874,0.180439,0.212385,0.00902981,0.894388,0.782645,0.186473,0.340457,0.712292,0.109765,0.370489,0.643574,0.538966,0.565898,0.57027,0.915691,0.704254,0.222355,0.837698,0.819315,0.188305,0.875965,0.899037,0.0152124,0.616054,0.522127,0.753631,0.162116,0.0842782,0.438527,0.556678,0.919189,0.0415011,0.244743,0.984042,0.953362,0.282213,0.549053,0.429621,0.619861,0.865939,0.673776,0.290899,0.0140201,0.310155,0.900563,0.97276,0.919353,0.895536,0.770857,0.710263,0.14752,0.645016,0.662961,0.0477728,0.152023,0.124508,0.592471,0.896498,0.0980959,0.281204,0.997437,0.629032,0.240209,0.810531,0.75155,0.568617,0.17274,0.492368,0.871077,0.552777,0.871961,0.999495,0.699493,0.721349,0.147294,0.547459,0.553542,0.402433,0.762898,0.924763,0.302775,0.280997,0.573974,0.433264,0.587003,0.649391,0.0883678,0.404831,0.107709,0.241105,0.54299,0.67777,0.208294,0.305739,0.994504,0.253406,0.996599,0.375738,0.146846,0.0264985,0.056012,0.378405,0.923417,0.286857,0.734232,0.586648,0.233281,0.141168,0.962749,0.417122,0.692693,0.0351416,0.970959,0.498728,0.212061,0.598711,0.934273,0.394634,0.266429,0.320594,0.970781,0.585106,0.968045,0.305917,0.428865,0.674836,0.751601,0.201934,0.145573,0.365539,0.20654,0.999596,0.267152,0.410528,0.779615,0.101087,0.133539,0.501851,0.748281,0.324196,0.945115,0.808456,0.317527,0.322784,0.997594,0.893169,0.313902,0.849823,0.710811,0.0860279,0.738647,0.619987,0.0501688,0.848972,0.424957,0.811098,0.536264,0.440841,0.19655,0.398087,0.901479,0.90924,0.49129,0.93898,0.633447,0.542191,0.241573,0.881702,0.415973,0.383956,0.0844457,0.119113,0.997423,0.222705,0.998916,0.0353987,0.955796,0.918919,0.158118,0.809802,0.620778,0.582449,0.736356,0.356459,0.962849,0.250243,0.72922,0.0822492,0.594623,0.0772744,0.0632542,0.485873,0.935487,0.215382,0.137778,0.288704,0.208246,0.608431,0.385142,0.22041,0.369418,0.243499,0.0371356,0.289327,0.709071,0.853535,0.943685,0.814432,0.225537,0.923196,0.170235,0.203138,0.298868,0.80778,0.327163,0.263202,0.291471,0.723586,0.156628,0.602234,0.655838,0.902405,0.986088,0.121317,0.784056,0.78683,0.793294,0.430504,0.857182,0.331103,0.319931,0.418164,0.0730259,0.975572,0.435887,0.121769,0.932637,0.237328,0.910784,0.60147,0.749773,0.875167,0.323829,0.556981,0.601722,0.342448,0.0880727,0.920651,0.150329,0.668925,0.287787,0.825433,0.614435,0.717683,0.63221,0.64655,0.955937,0.52878,0.694553,0.170459,0.520925,0.16988,0.536869,0.670082,0.531815,0.914349,0.956684,0.250344,0.802829,0.497186,0.0513421,0.435478,0.13434,0.567653,0.520039,0.237998,0.64382,0.952264,0.658999,0.947549,0.0542016,0.552753,0.722491,0.103481,0.186824,0.409266,0.0709261,0.099893,0.836847,0.318455,0.0392281,0.0387303,0.0638762,0.759464,0.280286,0.785211,0.796894,0.111892,0.722887,0.869733,0.989328,0.48349,0.523388,0.0985327,0.458606,0.978857,0.627755,0.439009,0.264032,0.647801,0.471366,0.442154,0.61408,0.475051,0.504598,0.938789,0.400187,0.152872,0.112257,0.0808403,0.77029,0.549797,0.771487,0.742388,0.393963,0.745266,0.401303,0.997366,0.798405,0.205001,0.968925,0.64491,0.8807,0.241041,0.406285,0.168052,0.245611,0.0535248,0.482358,0.173618,0.992486,0.892275,0.980352,0.27887,0.504516,0.72564,0.109626,0.146082,0.169863,0.345416,0.291013,0.123709,0.203212,0.999904,0.718048,0.701475,0.52703,0.96298,0.600762,0.705568,0.3939,0.845284,0.78844,0.710632,0.119712,0.913202,0.456602,0.289733,0.595165,0.254597,0.294766,0.570634,0.0349054,0.778286,0.641196,0.752485,0.543186,0.322648,0.371595,0.4566,0.31829,0.38834,0.810041,0.227591,0.414378,0.129364,0.810385,0.201463,0.627752,0.29905,0.99996,0.595997,0.53806,0.91644,0.870924,0.990404,0.882888,0.774376,0.597969,0.848329,0.81099,0.497154,0.548975,0.935956,0.47395,0.555065,0.382238,0.895361,0.456127,0.247065,0.556115,0.691605,0.775597,0.691078,0.775502,0.648415,0.00542831,0.915463,0.782672,0.250717,0.335859,0.811974,0.658139,0.113556,0.297662,0.951221,0.47028,0.75548,0.531296,0.127331,0.75542,0.0320171,0.737915,0.207469,0.430125,0.926572,0.465303,0.660703,0.795753,0.107687,0.713171,0.999612,0.463759,0.687277,0.29058,0.965928,0.901288,0.0839406,0.566789,0.567551,0.358397,0.105357,0.791191,0.18968,0.242117,0.956059,0.865759,0.0551092,0.532029,0.130587,0.93374,0.0143129,0.516021,0.330407,0.170063,0.331529,0.297485,0.0762643,0.787976,0.494047,0.121534,0.843999,0.522077,0.617599,0.847758,0.885951,0.119754,0.899067,0.491156,0.0728315,0.388752,0.994133,0.461799,0.43888,0.396566,0.0783169,0.315334,0.472402,0.587173,0.561905,0.354975,0.702209,0.187389,0.0866779,0.1189,0.375501,0.963485,0.0987962,0.919713,0.173658,0.937753,0.0177025,0.831955,0.0268611,0.364325,0.344681,0.919344,0.210382,0.0369694,0.275635,0.782788,0.179006,0.507315,0.46472,0.647953,0.238188,0.493905,0.826799,0.390166,0.562488,0.512089,0.932337,0.116631,0.115475,0.927936,0.661243,0.27435,0.526168,0.0626846,0.555107,0.725271,0.696232,0.902263,0.508306,0.553732,0.202695,0.556154,0.427163,0.256556,0.300402,0.958342,0.457479,0.828729,0.812592,0.061088,0.41667,0.61794,0.296314,0.280216,0.821427,0.639018,0.454369,0.0427551,0.0255277,0.666927,0.014697,0.71865,0.548844,0.935853,0.461484,0.169531,0.955479,0.725757,0.298745,0.697779,0.00335288,0.415635,0.580698,0.332095,0.994977,0.0139596,0.361039,0.422431,0.412533,0.73659,0.115885,0.650596,0.414713,0.921489,0.605989,0.378195,0.313125,0.696116,0.11397,0.208101,0.271526,0.874325,0.667563,0.600721,0.014081,0.412841,0.999346,0.375052,0.379373,0.647177,0.882005,0.614014,0.0271408,0.785659,0.0867151,0.216294,0.63538,0.737618,0.589888,0.646394,0.815809,0.577238,0.117346,0.565412,0.219447,0.525481,0.0259604,0.0486456,0.010802,0.251332,0.350205,0.786743,0.494094,0.922948,0.575749,0.205524,0.414344,0.0814843,0.113303,0.783363,0.983143,0.110921,0.85618,0.898073,0.270599,0.729801,0.647812,0.817751,0.578173,0.50445,0.125212,0.58999,0.333142,0.989018,0.622842,0.356409,0.878505,0.974587,0.69912,0.230749,0.757148,0.664828,0.272239,0.816792,0.0687853,0.904819,0.474576,0.642543,0.821013,0.785545,0.129546,0.607467,0.939083,0.312973,0.106086,0.693357,0.0607399,0.521377,0.140593,0.42326,0.340033,0.431427,0.467368,0.708896,0.378001,0.901787,0.593704,0.980929,0.0475014,0.088299,0.734056,0.167858,0.456055,0.641377,0.269022,0.819668,0.528572,0.657304,0.301289,0.754794,0.646053,0.635144,0.0829076,0.86704,0.932472,0.00645041,0.719908,0.44024,0.874605,0.974498,0.31959,0.0339485,0.80333,0.179446,0.235133,0.861994,0.952314,0.500495,0.909461,0.643743,0.269519,0.68927,0.330706,0.531448,0.356302,0.722972,0.448709,0.683202,0.536468,0.889508,0.930557,0.42602,0.342839,0.413128,0.465285,0.696129,0.318276,0.152049,0.181206,0.510537,0.669714,0.301629,0.487484,0.736549,0.26124,0.865944,0.605323,0.453258,0.993937,0.791759,0.33931,0.830881,0.829943,0.998391,0.472337,0.696913,0.0239493,0.971066,0.0525653,0.143985,0.87343,0.589383,0.328883,0.0287726,0.228977,0.834024,0.784567,0.797644,0.899706,0.943022,0.252056,0.368886,0.784288,0.120107,0.536929,0.734397,0.813136,0.0464799,0.822282,0.663715,0.649838,0.218817,0.482305,0.585218,0.872261,0.578382,0.360088,0.814734,0.163363,0.149636,0.300904,0.796468,0.747937,0.196916,0.753173,0.082295,0.857975,0.583252,0.893529,0.796398,0.00469989,0.212192,0.950574,0.27816,0.0844464,0.303372,0.758497,0.317922,0.183824,0.206926,0.464489,0.497619,0.208768,0.146373,0.456349,0.291479,0.457131,0.396059,0.461383,0.323719,0.718278,0.341716,0.774495,0.646424,0.188353,0.145922,0.758602,0.966908,0.762821,0.45164,0.793421,0.991037,0.400002,|0.22382,0.0525494,0.927279,0.704802,0.413564,0.763576,0.0898894,0.241041,0.28093,0.856493,0.0263557,0.205535,0.893237,0.963543,0.243709,0.740482,0.570278,0.92187,0.843755,0.504699,0.588914,0.985763,0.595421,0.449707,0.946509,0.715986,0.914095,0.37648,0.462492,0.687599,0.428385,0.137558,0.230777,0.872034,0.439747,0.619218,0.0169678,0.928005,0.219823,0.2683,0.886101,0.760488,0.543249,0.789896,0.46565,0.652109,0.535583,0.868299,0.397879,0.6045,0.572857,0.508972,0.334932,0.321419,0.596669,0.0392846,0.396643,0.693746,0.745586,0.596168,0.837412,0.637482,0.409375,0.380703,0.658358,0.492068,0.633207,0.210822,0.222986,0.444015,0.34048,0.472351,0.909603,0.399834,0.407296,0.0361804,0.568568,0.892174,0.435447,0.973576,0.0712064,0.866459,0.328358,0.655796,0.254017,0.381281,0.476539,0.174036,0.179785,0.765437,0.841946,0.194197,0.197072,0.139145,0.984901,0.115532,0.164776,0.522881,0.215609,0.746743,0.616975,0.945151,0.959791,0.0818788,0.555734,0.8577,0.188517,0.684854,0.17108,0.783408,0.793621,0.654501,0.0450475,0.0211716,0.951871,0.700103,0.414469,0.626909,0.922261,0.451366,0.751659,0.996904,0.545219,0.284531,0.393875,0.598463,0.644387,0.0246656,0.768551,0.122936,0.337679,0.793,0.967598,0.174404,0.684381,0.545153,0.53648,0.0656782,0.718082,0.957954,0.0805476,0.373437,0.154508,0.850662,0.164294,0.817493,0.705259,0.631654,0.438898,0.114705,0.110168,0.542046,0.649515,0.744827,0.800937,0.857087,0.0109572,0.287287,0.79,0.178124,0.299066,0.311777,0.253612,0.838239,0.365957,0.542206,0.794773,0.863563,0.976639,0.253052,0.735626,0.812661,0.387467,0.763876,0.27188,0.626864,0.847876,0.51363,0.0574844,0.0857558,0.736263,0.476939,0.136538,0.187906,0.946963,0.219265,0.0582127,0.255985,0.569104,0.91564,0.757219,0.228735,0.424499,0.0817136,0.93647,0.108275,0.940038,0.615075,0.820932,0.0936826,0.368406,0.662375,0.698152,0.626076,0.903422,0.0753198,0.562681,0.737293,0.318383,0.502835,0.530767,0.117354,0.878975,0.767349,0.80093,0.386815,0.892356,0.520151,0.34311,0.907309,0.499468,0.549338,0.957578,0.548377,0.597215,0.403096,0.993721,0.68891,0.998071,0.915522,0.330818,0.830627,0.648316,0.222998,0.294388,0.809295,0.00860274,0.0561576,0.237076,0.00123256,0.128677,0.298975,0.136967,0.0964628,0.937675,0.483699,0.033015,0.627366,0.227648,0.35872,0.469141,0.613069,0.885849,0.48292,0.531224,0.335254,0.867957,0.123387,0.682795,0.896181,0.0502206,0.627422,0.462736,0.817653,0.678864,0.313052,0.554417,0.330708,0.496158,0.694726,0.797429,0.939118,0.0934389,0.739157,0.716672,0.398671,0.774851,0.155024,0.191078,0.0003317,0.926207,0.755234,0.352103,0.851403,0.300537,0.285015,0.470785,0.651805,0.90979,0.473416,0.148646,0.0375623,0.812388,0.0519211,0.162276,0.915473,0.462225,0.771689,0.638196,0.714505,0.614161,0.555133,0.541539,0.596214,0.833595,0.940006,0.756768,0.887787,0.170052,0.223251,0.917887,0.128634,0.596738,0.72596,0.222417,0.206277,0.13248,0.707322,0.233791,0.0937566,0.660818,0.601635,0.0483148,0.708675,0.98354,0.13367,0.319447,0.194178,0.439477,0.159717,0.183194,0.0342454,0.245336,0.293278,0.241494,0.668529,0.271347,0.925581,0.242901,0.555846,0.196494,0.0583496,0.670512,0.315381,0.261074,0.982265,0.878279,0.245915,0.277541,0.21978,0.271975,0.434966,0.862757,0.732473,0.0759412,0.263022,0.985089,0.735498,0.0349922,0.403133,0.0921116,0.764869,0.599239,0.886814,0.311694,0.956337,0.467535,0.824356,0.0456741,0.754168,0.638922,0.724765,0.274626,0.872239,0.433062,0.816011,0.953834,0.522907,0.391247,0.749112,0.192688,0.700631,0.905092,0.502804,0.93609,0.37386,0.151703,0.00179064,0.947117,0.325275,0.722154,0.109229,0.84731,0.0120117,0.315537,0.867378,0.324814,0.51304,0.504399,0.744057,0.875995,0.0964035,0.964638,0.791824,0.955816,0.996685,0.847095,0.618772,0.951388,0.497078,0.99162,0.361919,0.884438,0.00392067,0.126401,0.172989,0.176159,0.924288,0.1827,0.228424,0.445469,0.0599649,0.220154,0.269818,0.248173,0.603943,0.276254,0.878025,0.263614,0.276504,0.206816,0.0262563,0.872609,0.690529,0.0298486,0.249494,0.317974,0.892598,0.688324,0.85951,0.340815,0.781096,0.460844,0.366302,0.933895,0.154961,0.370355,0.30534,0.757444,0.768555,0.237184,0.647592,0.945801,0.980358,0.102842,0.232499,0.591646,0.776313,0.452857,0.181026,0.940081,0.439223,0.239214,0.182144,0.207484,0.988467,0.0165163,0.697376,0.538582,0.0955989,0.767192,0.291581,0.329716,0.429063,0.376324,0.387417,0.331738,0.46202,0.465051,0.888611,0.734362,0.759587,0.0441317,0.839919,0.691747,0.637928,0.615995,0.812276,0.725484,0.21241,0.94826,0.523805,0.874212,0.291466,0.998076,0.663925,0.401737,0.841089,0.987255,0.313411,0.422037,0.352089,0.00550407,0.668425,0.488095,0.722118,0.328829,0.3153,0.501066,0.112684,0.429498,0.240635,0.321731,0.0817752,0.902817,0.895066,0.313882,0.870428,0.382083,0.740715,0.311943,0.0628006,0.922929,0.287653,0.664436,0.710414,0.923465,0.583536,0.726592,0.0468838,0.797436,0.011112,0.235707,0.342421,0.890146,0.847377,0.183714,0.119959,0.867739,0.578815,0.455595,0.583341,0.0749422,0.560398,0.148637,0.449246,0.971004,0.537241,0.695041,0.067055,0.0800717,0.453006,0.144643,0.344292,0.711903,0.858398,0.256819,0.753187,0.614098,0.721976,0.165178,0.759928,0.674301,0.809671,0.578084,0.017705,0.677378,0.473481,0.707652,0.499044,0.309239,0.178446,0.347256,0.355726,0.0823544,0.420405,0.778435,0.203128,0.340622,0.404966,0.585893,0.13935,0.0220868,0.696354,0.990478,0.756672,0.186135,0.462427,0.631437,0.0882604,0.760209,0.540171,0.522374,0.99766,0.557906,0.528414,0.989654,0.859873,0.10218,0.770214,0.623388,0.720951,0.483598,0.589521,0.7534,0.867254,0.88161,0.515385,0.483166,0.0621791,0.541313,0.475955,0.42684,0.110465,0.874914,0.108066,0.883819,0.00254261,0.50431,0.204046,0.265204,0.780307,0.0696509,0.638293,0.248364,0.643297,0.54026,0.676824,0.161353,0.453134,0.726643,0.0620487,0.388865,0.478898,0.368556,0.8689,0.560124,0.206246,0.0348733,0.939246,0.928751,0.532695,0.489473,0.470723,0.691406,0.561003,0.167878,0.921685,0.866816,0.97425,0.354743,0.385813,0.146455,0.690558,0.0521692,0.795802,0.706342,0.397938,0.243394,0.197774,0.819421,0.417085,0.870669,0.930585,0.505812,0.642293,0.38015,0.696368,0.596612,0.819537,0.58732,0.762324,0.0285383,0.40065,0.501109,0.835651,0.457837,0.707118,0.480703,0.120319,0.914963,0.910046,0.993766,0.113572,0.188456,0.272781,0.373472,0.862792,0.981603,0.139707,0.597151,0.919855,0.408832,0.090266,0.998645,0.76109,0.499087,0.245315,0.491317,0.95876,0.176087,0.601634,0.863655,0.0209131,0.343255,0.982801,0.694003,0.668175,0.239791,0.980677,0.467472,0.21076,0.364918,0.590629,0.441681,0.334837,0.0866097,0.0601708,0.364242,0.161084,0.656375,0.975328,0.786011,0.636458,0.70945,0.557049,0.393341,0.054509,0.628061,0.170416,0.00663733,0.739579,0.957575,0.836098,0.10067,0.282121,0.54815,0.135376,0.605347,0.66492,0.184479,0.80916,0.59761,0.0924035,0.847735,0.536932,0.45182,0.200438,0.0663567,0.397764,0.495529,0.823332,0.956231,0.402399,0.00987214,0.446177,0.40468,0.893048,0.0238113,0.399656,0.15384,0.832356,0.614354,0.755721,0.441938,0.518861,0.842221,0.264817,0.0410243,0.314651,0.955471,0.998719,0.733945,0.92617,0.976345,0.80225,0.981753,0.999312,0.257019,0.664816,0.29216,0.130405,0.130339,0.231629,0.484519,0.988839,0.948359,0.342896,0.72711,0.649605,0.300206,0.967642,0.366569,0.367337,0.464344,0.263549,0.520181,0.14166,0.0926635,0.377116,0.780296,0.937167,0.463336,0.0179883,0.00241721,0.134248,0.961816,0.115129,0.130912,0.580619,0.802869,0.562413,0.747115,0.8122,0.0399995,0.22526,0.88619,0.970728,0.767964,0.649337,0.470924,0.140876,0.566549,0.659895,0.837623,0.10708,0.109778,0.432123,0.14404,0.993861,0.246476,0.83176,0.410697,0.544932,0.956394,0.28811,0.72249,0.315584,0.102134,0.837717,0.733995,0.408819,0.90744,0.766063,0.0171643,0.190348,0.0832506,0.945012,0.212853,0.0471846,0.9745,0.104152,0.129224,0.137448,0.479115,0.03101,0.808196,0.723839,0.471381,0.726084,0.00632954,0.813525,0.598301,0.553565,0.515712,0.545851,0.564647,0.386351,0.731313,0.0290641,0.647312,0.905717,0.261025,0.877862,0.516808,0.500797,0.354849,0.842258,0.486219,0.165002,0.691788,0.452101,0.599927,0.245839,0.501609,0.0205275,0.152995,0.729662,0.366887,0.0729628,0.168516,0.635731,0.697712,0.882909,0.291837,0.952949,0.498741,0.0832943,0.810204,0.658879,0.245228,0.918664,0.808459,0.122423,0.0266091,0.815785,0.704116,0.465047,0.175348,0.338679,0.116577,0.0986933,0.00291175,0.838932,0.313531,0.709391,0.959767,0.16579,0.427901,0.16572,0.132844,0.31157,0.204493,0.620991,0.429351,0.38035,0.70819,0.831975,0.0703601,0.154126,0.24167,0.936233,0.654493,0.339995,0.772324,0.947684,0.302813,0.841718,0.247589,0.0808592,0.895911,0.923206,0.956815,0.118716,0.178789,0.406274,0.846241,0.737079,0.148221,0.81234,0.267433,0.562111,0.869237,0.983233,0.407163,0.230243,0.983223,0.872554,0.877353,0.38307,0.960116,0.646716,0.197992,0.900653,0.493227,0.675738,0.137114,0.771711,0.992176,0.919768,0.534231,0.215701,0.940355,0.598788,0.367163,0.920705,0.30683,0.643466,0.396771,0.0521667,0.739609,0.702549,0.918673,0.698174,0.689088,0.472006,0.890595,0.43336,0.450719,0.902163,0.264761,0.571646,0.406853,0.050383,0.788054,0.197657,0.856332,0.0265635,0.519631,0.431221,|0.217244,0.959525,0.963366,0.544828,0.0862285,0.389256,0.794605,0.830933,0.32639,0.514834,0.698716,0.319312,0.74395,0.998618,0.755554,0.227928,0.495382,0.849671,0.263551,0.340632,0.936175,0.588236,0.176473,0.105926,0.527109,0.63534,0.627598,0.380042,0.237834,0.248577,0.764277,0.883802,0.562705,0.962101,0.5012,0.344569,0.445226,0.548312,0.373394,0.679475,0.655807,0.618572,0.419879,0.723972,0.711202,0.997548,0.802174,0.0202791,0.864316,0.778863,0.616315,0.323525,0.31834,0.146764,0.29938,0.307988,0.453327,0.949619,0.0503976,0.63506,0.828269,0.934051,0.0233181,0.950616,0.0360626,0.345707,0.245759,0.402765,0.117713,0.0322645,0.667888,0.503739,0.294298,0.665498,0.49092,0.0655966,0.399178,0.885661,0.735875,0.380893,0.103308,0.999782,0.0774394,0.738914,0.773021,0.774673,0.247317,0.0225138,0.801016,0.213783,0.338289,0.553358,0.995329,0.675929,0.935266,0.763189,0.471382,0.521821,0.72748,0.0722228,0.107146,0.288991,0.15374,0.94864,0.202318,0.686556,0.969812,0.447094,0.5186,0.944666,0.0432709,0.554117,0.614799,0.694798,0.997801,0.0962439,0.408097,0.903583,0.913646,0.279246,0.868811,0.721093,0.797299,0.082178,0.964626,0.218681,0.769405,0.847608,0.0995194,0.0569291,0.195273,0.570406,0.325456,0.24011,0.397482,0.942619,0.0260643,0.29806,0.273924,0.353431,0.996953,0.766878,0.359033,0.140457,0.610238,0.551429,0.406887,0.460196,0.530399,0.219494,0.912668,0.856655,0.956818,0.657573,0.199943,0.367923,0.102219,0.08661,0.429906,0.631539,0.0868153,0.585626,0.746503,0.557046,0.61017,0.674087,0.602111,0.347119,0.358854,0.593537,0.521733,0.337293,0.568642,0.57974,0.230817,0.72029,0.434484,0.561723,0.196031,0.897386,0.733471,0.631698,0.121323,0.452664,0.605848,0.0467441,0.694473,0.574158,0.462719,0.410561,0.65041,0.41565,0.400364,0.796367,0.0476075,0.915376,0.444389,0.224932,0.917409,0.986976,0.33396,0.631561,0.980974,0.581832,0.00426215,0.123024,0.483153,0.705647,0.353952,0.0528882,0.423082,0.861957,0.0961255,0.0325714,0.75562,0.916735,0.989016,0.313722,0.299452,0.300577,0.50561,0.00278878,0.954724,0.0441523,0.0733203,0.0880534,0.571088,0.549724,0.619769,0.245042,0.806635,0.945051,0.915,0.458587,0.747872,0.135785,0.208268,0.184429,0.396681,0.102823,0.561527,0.283889,0.438053,0.0241874,0.643336,0.31439,0.904899,0.0828245,0.0330992,0.269577,0.3554,0.325884,0.00588626,0.069596,0.343199,0.731768,0.0637579,0.477413,0.707662,0.592536,0.89363,0.903251,0.205947,0.946413,0.20766,0.682076,0.0820749,0.426011,0.00314951,0.727765,0.0693132,0.783876,0.442473,0.385145,0.768295,0.148672,0.0111758,0.952113,0.980325,0.639104,0.693081,0.314635,0.741189,0.153156,0.72738,0.905519,0.216304,0.223842,0.208577,0.559203,0.48758,0.0682887,0.790217,0.781152,0.685046,0.537525,0.215175,0.028022,0.99487,0.622416,0.250994,0.17964,0.620416,0.589183,0.213809,0.640029,0.600882,0.884292,0.577217,0.294954,0.227383,0.548246,0.144889,0.14412,0.374502,0.204693,0.460675,0.115682,0.915697,0.571023,0.130028,0.255932,0.129119,0.45907,0.340151,0.686093,0.587911,0.216434,0.720488,0.341167,0.155057,0.63237,0.253078,0.847612,0.790405,0.768412,0.910373,0.986394,0.169032,0.00856239,0.658266,0.00962567,0.189003,0.175784,0.250424,0.411274,0.263722,0.00807428,0.00327182,0.52101,0.0153068,0.694135,0.457612,0.901014,0.700644,0.721028,0.923307,0.1446,0.551768,0.180852,0.840461,0.740901,0.0776849,0.919238,0.346058,0.864569,0.318357,0.397253,0.106464,0.384576,0.424717,0.227344,0.845098,0.0270956,0.688664,0.727753,0.881487,0.694426,0.153029,0.27193,0.261633,0.0250785,0.468773,0.963773,0.118373,0.810063,0.241078,0.432451,0.403137,0.700968,0.867496,0.465898,0.914636,0.746759,0.956095,0.442584,0.910856,0.190488,0.415771,0.704571,0.125173,0.761661,0.371082,0.651607,0.952502,0.480812,0.751285,0.318336,0.924646,0.418016,0.608931,0.625961,0.723966,0.664731,0.378977,0.156433,0.18901,0.295739,0.0554133,0.924668,0.427533,0.686982,0.957376,0.413295,0.799897,0.572215,0.264445,0.410743,0.92666,0.330257,0.831539,0.832606,0.485,0.207387,0.512881,0.974898,0.111375,0.00782287,0.69533,0.166845,0.443916,0.166587,0.412344,0.537619,0.48886,0.493652,0.216277,0.584254,0.246107,0.777356,0.645927,0.420476,0.765214,0.865414,0.590925,0.548501,0.259943,0.0901703,0.400088,0.577658,0.668095,0.486323,0.858213,0.735943,0.189732,0.713219,0.853634,0.314322,0.460249,0.678881,0.187532,0.870991,0.893618,0.642956,0.346594,0.893202,0.893905,0.814641,0.678761,0.961507,0.0755396,0.342613,0.864431,0.142025,0.133773,0.507907,0.0521701,0.0245818,0.701998,0.869424,0.605113,0.651262,0.524752,0.549259,0.679522,0.816632,0.457114,0.929982,0.220996,0.64437,0.48877,0.428506,0.455032,0.626963,0.420029,0.677653,0.732055,0.130859,0.447912,0.203231,0.140874,0.139298,0.65063,0.013244,0.739218,0.695062,0.607516,0.992174,0.76396,0.301238,0.0447839,0.462255,0.0176365,0.499323,0.409158,0.587413,0.536864,0.521967,0.993826,0.294991,0.886451,0.391576,0.709929,0.727367,0.190493,0.286682,0.813764,0.358665,0.564996,0.673594,0.359245,0.60279,0.405468,0.892513,0.624481,0.48274,0.230747,0.210895,0.6184,0.0335192,0.929804,0.00681996,0.709143,0.237287,0.122685,0.845843,0.939877,0.946243,0.0498156,0.451086,0.644287,0.0632905,0.991072,0.594255,0.516351,0.56707,0.414303,0.385122,0.207567,0.329556,0.605428,0.263335,0.857252,0.0261459,0.423779,0.34884,0.299013,0.842746,0.404724,0.8569,0.41732,0.377593,0.929801,0.526263,0.335594,0.274247,0.857209,0.950676,0.809602,0.491525,0.868349,0.186977,0.823916,0.376992,0.222085,0.338545,0.270076,0.911349,0.910691,0.0825762,0.48483,0.729417,0.102103,0.43653,0.140597,0.234797,0.644524,0.524036,0.267357,0.813936,0.110086,0.583764,0.315518,0.252715,0.0344056,0.181727,0.199674,0.184259,0.304842,0.471503,0.594625,0.880851,0.0740905,0.881721,0.330152,0.0824759,0.653124,0.781871,0.824108,0.360051,0.697895,0.268054,0.699103,0.741797,0.485707,0.339098,0.663712,0.163341,0.0945486,0.972553,0.757561,0.645371,0.797071,0.262926,0.252912,0.803991,0.816742,0.466938,0.741149,0.118453,0.982029,0.8481,0.16005,0.739075,0.94487,0.6176,0.998032,0.722505,0.329433,0.679697,0.095429,0.529362,0.64891,0.865541,0.720667,0.638026,0.0983713,0.422382,0.694924,0.232036,0.843627,0.888595,0.0512377,0.396748,0.732946,0.76347,0.143159,0.584033,0.0449172,0.254875,0.125254,0.0977651,0.188822,0.941777,0.120329,0.896688,0.21091,0.321228,0.722096,0.739736,0.664101,0.951101,0.639222,0.856675,0.960015,0.521051,0.233713,0.468474,0.057994,0.285728,0.613899,0.158509,0.514905,0.616764,0.361326,0.71137,0.477015,0.802133,0.503587,0.866252,0.396808,0.55936,0.652507,0.750181,0.903641,0.18606,0.482271,0.823822,0.348056,0.540787,0.131086,0.530164,0.836129,0.688953,0.555388,0.89708,0.552148,0.243772,0.979181,0.568832,0.366522,0.850262,0.838071,0.479817,0.552015,0.527087,0.544273,0.118863,0.949648,0.694275,0.915174,0.418767,0.358107,0.354775,0.439538,0.683951,0.793682,0.134486,0.818759,0.29233,0.380972,0.150446,0.15016,0.218419,0.725277,0.276422,0.440825,0.820206,0.848301,0.360321,0.152063,0.400028,0.242651,0.654976,0.972867,0.802371,0.329356,0.840192,0.647547,0.250331,0.876446,0.581954,0.27874,0.953326,0.709735,0.469516,0.538631,0.330001,0.733737,0.215736,0.552099,0.399339,0.559757,0.0199499,0.0522208,0.277423,0.751186,0.103829,0.735995,0.548208,0.397601,0.395204,0.332855,0.047833,0.0688977,0.674134,0.206014,0.791773,0.645064,0.129154,0.166619,0.320508,0.325835,0.495769,0.529996,0.031896,0.155024,0.52415,0.665853,0.666069,0.925206,0.427321,0.0796787,0.175819,0.830201,0.0666337,0.899868,0.449659,0.936067,0.924872,0.68248,0.0340105,0.791556,0.952795,0.302335,0.0921576,0.39465,0.153963,0.879511,0.568057,0.934854,0.868392,0.772886,0.472044,0.406649,0.698678,0.924138,0.0891383,0.812487,0.369044,0.612603,0.467265,0.276322,0.655481,0.951112,0.0106552,0.0520879,0.638056,0.0550047,0.490691,0.0951968,0.600875,0.19642,0.326487,0.645868,0.290413,0.594901,0.83596,0.840556,0.781564,0.769132,0.99798,0.709655,0.330183,0.731658,0.904251,0.858817,0.858651,0.591942,0.212113,0.23757,0.234024,0.531695,0.717872,0.893016,0.773135,0.221626,0.879448,0.880546,0.377029,0.709848,0.465484,0.696072,0.900069,0.686372,0.360607,0.560198,0.225497,0.933363,0.327669,0.00327313,0.349825,0.315755,0.723629,0.830478,0.937298,0.583831,0.246398,0.283529,0.989667,0.949551,0.282352,0.728462,0.311562,0.616623,0.976788,0.256438,0.609266,0.962302,0.741566,0.809873,0.158375,0.00995737,0.597436,0.498989,0.0883479,0.255101,0.176105,0.898089,0.89715,0.265686,0.220519,0.960826,0.677208,0.054584,0.565685,0.151798,0.586486,0.172229,0.301589,0.697567,0.544016,0.401176,0.926742,0.825149,0.685331,0.0503141,0.465303,0.285633,0.107192,0.452158,0.589035,0.31869,0.52961,0.266431,0.416975,0.635196,0.916756,0.119102,0.793941,0.526356,0.192157,0.603958,0.271761,0.28883,0.311367,0.314327,0.149808,0.512217,0.586,0.482595,0.707828,0.124835,0.784008,0.515277,0.33793,0.781091,0.679283,0.614039,0.338195,0.519363,0.963867,0.335988,0.112199,0.886367,0.132153,0.396467,0.0333499,0.47651,0.726913,0.215211,0.623877,0.100123,0.35498,0.0455404,0.412663,0.967266,0.300457,0.923773,0.585049,0.977349,0.0873582,0.654984,0.533383,0.0940807,0.612439,0.584915,0.832957,0.0452041,0.159314,|0.472304,0.277696,0.486216,0.234482,0.0559528,0.234547,0.660951,0.014617,0.34789,0.147193,0.459071,0.112007,0.328911,0.579536,0.58163,0.303416,0.144093,0.379652,0.1781,0.102248,0.438186,0.379535,0.873891,0.0368555,0.44826,0.0360295,0.248882,0.344859,0.829662,0.150986,0.52308,0.736835,0.285756,0.801322,0.415683,0.36298,0.0710249,0.871965,0.154232,0.316766,0.446254,0.809025,0.195608,0.296103,0.0414479,0.898845,0.360019,0.0562442,0.370203,0.449298,0.563295,0.90497,0.386248,0.502388,0.115011,0.477964,0.33725,0.992881,0.498077,0.152324,0.751161,0.357096,0.929832,0.23536,0.480562,0.317227,0.608667,0.539663,0.170947,0.832915,0.592927,0.269528,0.827752,0.395425,0.805858,0.280606,0.259286,0.207512,0.0369241,0.592159,0.481021,0.604628,0.39225,0.031341,0.668259,0.515655,0.21146,0.591345,0.29094,0.726567,0.607328,0.391662,0.16825,0.143932,0.653915,0.870958,0.181086,0.912166,0.271915,0.215745,0.639397,0.7782,0.284894,0.208285,0.189082,0.306835,0.0158058,0.852381,0.152049,0.0446787,0.997279,0.314309,0.651108,0.0898721,0.0612799,0.0714754,0.177676,0.704187,0.620136,0.583909,0.139124,0.699492,0.437323,0.180368,0.0940189,0.443616,0.812675,0.451494,0.79043,0.674691,0.978672,0.981098,0.998628,0.64803,0.475815,0.0874237,0.670973,0.710291,0.84817,0.114434,0.442343,0.421998,0.75799,0.768822,0.818742,0.966669,0.18678,0.35655,0.125071,0.681901,0.390706,0.692695,0.103916,0.425838,0.895197,0.533605,0.603715,0.724296,0.3148,0.773096,0.122492,0.674879,0.467894,0.0741209,0.901494,0.0902321,0.381625,0.550689,0.0121725,0.311706,0.411603,0.481217,0.147524,0.289012,0.744844,0.232061,0.497073,0.292722,0.0341491,0.569613,0.239057,0.812521,0.506949,0.479171,0.24345,0.853518,0.863814,0.381174,0.403977,0.276563,0.271107,0.502608,0.233798,0.117018,0.320128,0.612225,0.829288,0.104579,0.632618,0.293584,0.641658,0.30126,0.744082,0.185757,0.243489,0.338975,0.787284,0.384522,0.842702,0.664808,0.0528222,0.969549,0.214673,0.844013,0.0396469,0.560935,0.0992184,0.497864,0.152858,0.42268,0.7017,0.546561,0.305461,0.311032,0.601031,0.669572,0.949061,0.587295,0.466054,0.265881,0.531642,0.497514,0.251364,0.970095,0.0601511,0.430548,0.352628,0.701225,0.975726,0.970298,0.2702,0.061039,0.640194,0.494074,0.846492,0.635582,0.91482,0.000201762,0.942882,0.279971,0.705736,0.909307,0.0856922,0.775004,0.947363,0.875113,0.0811037,0.350358,0.307562,0.685648,0.512135,0.360681,0.398058,0.575503,0.633513,0.168752,0.345512,0.832131,0.331419,0.515327,0.811174,0.383704,0.755567,0.383136,0.0280439,0.368519,0.96143,0.896279,0.614696,0.900536,0.129445,0.13406,0.828874,0.260122,0.211702,0.0754179,0.136451,0.126265,0.125981,0.147064,0.128186,0.0464735,0.679314,0.44525,0.437618,0.121217,0.984472,0.212165,0.484473,0.370566,0.438961,0.96497,0.68381,0.405947,0.1123,0.955731,0.945638,0.268083,0.631326,0.0523944,0.565553,0.865968,0.45253,0.190793,0.43728,0.614927,0.785188,0.348007,0.0838204,0.139535,0.239535,0.263165,0.490878,0.00374728,0.952334,0.818358,0.382214,0.54537,0.754248,0.859609,0.303093,0.4816,0.510913,0.271215,0.479882,0.869843,0.559964,0.513018,0.784791,0.101786,0.701833,0.252969,0.378697,0.0792691,0.391981,0.584739,0.834664,0.262619,0.31543,0.533427,0.475589,0.628871,0.712273,0.507377,0.205563,0.899014,0.217788,0.801291,0.764359,0.724203,0.271048,0.0674383,0.332021,0.384288,0.735978,0.144949,0.15503,0.971304,0.38858,0.0511625,0.75207,0.046541,0.240273,0.985011,0.792094,0.768246,0.33608,0.964717,0.791847,0.092878,0.0396953,0.89967,0.315848,0.343152,0.803897,0.7223,0.469866,0.148477,0.178032,0.913787,0.112508,0.0880926,0.523991,0.0197636,0.821413,0.529889,0.641951,0.873118,0.392817,0.513061,0.586751,0.392125,0.883987,0.765511,0.333497,0.249631,0.7402,0.61961,0.72645,0.261961,0.105547,0.76325,0.314484,0.501261,0.106243,0.638634,0.36849,0.814136,0.597045,0.275866,0.279629,0.496396,0.243684,0.560941,0.637512,0.103157,0.51791,0.107341,0.726882,0.835847,0.183226,0.765754,0.214971,0.760001,0.921056,0.170765,0.074963,0.98007,0.941952,0.696468,0.415467,0.479901,0.101226,0.0416623,0.83775,0.513074,0.286297,0.228357,0.943188,0.682749,0.13988,0.451064,0.973982,0.377861,0.972122,0.557566,0.172982,0.058812,0.665866,0.768105,0.359568,0.801889,0.965504,0.683245,0.118149,0.242107,0.62288,0.226285,0.916832,0.0519047,0.873931,0.490828,0.507266,0.81451,0.215381,0.849488,0.486618,0.548803,0.856584,0.249094,0.72099,0.386198,0.0356784,0.0943414,0.675389,0.489774,0.797765,0.712895,0.736417,0.101365,0.958193,0.530437,0.455155,0.907802,0.256547,0.938002,0.259074,0.560859,0.125044,0.575574,0.102575,0.012154,0.641038,0.321725,0.0227588,0.540138,0.719353,0.856771,0.716062,0.834461,0.656909,0.920214,0.951625,0.394601,0.747097,0.705558,0.366915,0.20016,0.446591,0.711435,0.186068,0.989469,0.822068,0.887147,0.641233,0.2855,0.957138,0.860109,0.467045,0.644576,0.240104,0.511565,0.330095,0.321676,0.0150169,0.180929,0.200179,0.127466,0.853929,0.60076,0.726767,0.404008,0.426642,0.956445,0.64076,0.760563,0.0632637,0.505497,0.862857,0.809167,0.955856,0.505802,0.277839,0.460247,0.469959,0.438885,0.988829,0.204115,0.848569,0.23843,0.518713,0.379607,0.653334,0.78676,0.541311,0.138784,0.963453,0.119351,0.673063,0.280836,0.62107,0.10299,0.309406,0.476786,0.686325,0.0706458,0.296691,0.0446066,0.454415,0.0787565,0.223541,0.314744,0.137646,0.143655,0.263974,0.260257,0.593034,0.449466,0.709375,0.586811,0.521648,0.400392,0.783464,0.856663,0.187874,0.868864,0.384366,0.783703,0.564259,0.0821214,0.289616,0.454269,0.0520133,0.493773,0.502068,0.0361206,0.353577,0.375822,0.228625,0.841579,0.597582,0.770068,0.814051,0.68875,0.578972,0.0722733,0.393837,0.658818,0.82695,0.0784824,0.953966,0.716824,0.0846603,0.428344,0.69483,0.812597,0.592217,0.900952,0.469208,0.499494,0.844394,0.601809,0.85878,0.0534115,0.628741,0.466287,0.221387,0.0694258,0.924304,0.327608,0.0396572,0.619269,0.350353,0.432467,0.246695,0.418713,0.826488,0.0260052,0.83615,0.4696,0.573006,0.95362,0.0104831,0.387111,0.785382,0.592249,0.900117,0.0646914,0.60955,0.073051,0.574254,0.462615,0.504696,0.723288,0.802222,0.834154,0.0925346,0.856426,0.135319,0.0805708,0.414006,0.831291,0.281958,0.740831,0.164369,0.811739,0.982086,0.28586,0.588757,0.490047,0.374036,0.807271,0.800081,0.00657946,0.439712,0.771459,0.195573,0.766604,0.624786,0.882033,0.681546,0.551285,0.783025,0.928555,0.365456,0.118276,0.527396,0.758649,0.722093,0.143108,0.559747,0.9698,0.661281,0.914588,0.165345,0.960828,0.514846,0.107785,0.561117,0.817259,0.611457,0.931688,0.172694,0.744073,0.861293,0.202303,0.527291,0.0188583,0.445683,0.83145,0.251724,0.190773,0.249032,0.820237,0.497186,0.281385,0.972591,0.512971,0.0477244,0.167404,0.913913,0.427465,0.689073,0.867045,0.706481,0.286199,0.946918,0.419362,0.664744,0.183914,0.868624,0.847701,0.291648,0.835925,0.119433,0.215075,0.9905,0.977709,0.34963,0.509675,0.373542,0.159797,0.0644822,0.917513,0.62142,0.0212818,0.571769,0.305088,0.956318,0.960731,0.211344,0.417984,0.161236,0.424798,0.209503,0.583372,0.673066,0.154812,0.510008,0.402184,0.0236062,0.0263749,0.396823,0.80185,0.638094,0.187994,0.670914,0.0731793,0.957018,0.522791,0.66167,0.324716,0.936041,0.312856,0.0490439,0.717725,0.804233,0.54024,0.512996,0.879409,0.242946,0.388839,0.958697,0.313022,0.0679165,0.272546,0.133027,0.560813,0.646078,0.500911,0.554446,0.754913,0.723324,0.536595,0.467411,0.231605,0.441843,0.931052,0.352007,0.682511,0.419715,0.365253,0.425776,0.396456,0.0511009,0.41525,0.17635,0.833039,0.596215,0.953351,0.541723,0.906327,0.373207,0.539531,0.627518,0.0190488,0.760364,0.942945,0.482518,0.162859,0.3021,0.541747,0.462828,0.337927,0.0819867,0.657156,0.921765,0.504866,0.790795,0.0712829,0.296134,0.116586,0.676679,0.0190849,0.649175,0.549605,0.232433,0.215413,0.49447,0.684168,0.68411,0.472788,0.937663,0.875489,0.967634,0.904722,0.547295,0.308197,0.733291,0.976109,0.0119818,0.853595,0.723019,0.434224,0.694064,0.962491,0.867274,0.146473,0.412138,0.404717,0.761913,0.720501,0.441271,0.413352,0.673482,0.53281,0.797597,0.708593,0.631677,0.463164,0.356171,0.263964,0.0586492,0.791402,0.265313,0.506018,0.618417,0.70818,0.139954,0.357292,0.399566,0.993087,0.71972,0.692537,0.580038,0.879935,0.288449,0.475754,0.00592738,0.930697,0.160857,0.843446,0.0129451,0.381983,0.813635,0.0356227,0.00506884,0.749717,0.394109,0.749718,0.0123339,0.71201,0.855024,0.326051,0.179192,0.557156,0.627248,0.351326,0.819393,0.530549,0.563512,0.268792,0.648719,0.744587,0.239208,0.705661,0.366675,0.56772,0.00843245,0.532923,0.566633,0.821202,0.0865629,0.639494,0.155592,0.533965,0.890928,0.263507,0.11426,0.0425296,0.906482,0.0415459,0.343568,0.504692,0.337648,0.116033,0.17494,0.785055,0.903395,0.670411,0.0758984,0.617226,0.477423,0.814334,0.874842,0.867809,0.650656,0.496353,0.276245,0.652206,0.599495,0.103386,0.74966,0.999083,0.356337,0.304727,0.468424,0.588383,0.125094,0.543159,0.693853,0.808167,0.297467,0.972063,0.991377,0.0741354,0.969075,0.098428,0.105556,0.928793,0.865139,0.922797,0.637061,0.463432,0.169065,0.666725,0.572832,0.134031,0.748498,0.606107,0.0146034,0.537488,0.917925,0.708531,0.37037,0.890764,0.33972,0.770825,0.690102,0.851479,|0.479613,0.223832,0.376771,0.835873,0.295168,0.157828,0.31734,0.397208,0.392081,0.961693,0.909255,0.0490666,0.902956,0.432976,0.829987,0.776932,0.704898,0.615334,0.785126,0.825841,0.613204,0.952912,0.694757,0.2596,0.332426,0.502552,0.324508,0.462099,0.126263,0.513781,0.332312,0.540324,0.871532,0.134165,0.775232,0.912869,0.104349,0.733098,0.436721,0.0645586,0.0695282,0.119563,0.529797,0.21094,0.661966,0.530243,0.368405,0.982789,0.315926,0.957009,0.989993,0.035964,0.683494,0.469284,0.0741931,0.828428,0.13871,0.136102,0.363732,0.539567,0.358721,0.0103095,0.264147,0.738036,0.307794,0.378035,0.233174,0.307527,0.281997,0.429817,0.478793,0.0426312,0.104044,0.406025,0.802728,0.668016,0.0015462,0.0384242,0.379937,0.381306,0.680571,0.564183,0.544515,0.0310557,0.0960043,0.551052,0.244921,0.1264,0.128208,0.810041,0.839348,0.713147,0.549763,0.795117,0.774761,0.091493,0.166224,0.0761013,0.865334,0.972082,0.62315,0.204066,0.0984032,0.88742,0.238901,0.336094,0.710924,0.430786,0.402906,0.858124,0.350081,0.079882,0.237604,0.201222,0.106284,0.4405,0.140797,0.105098,0.335826,0.819612,0.965104,0.604509,0.432126,0.757006,0.315221,0.942668,0.60043,0.573689,0.353517,0.18812,0.121327,0.528022,0.330483,0.103602,0.836608,0.595162,0.332859,0.652536,0.00653195,0.67833,0.459413,0.244663,0.931505,0.373057,0.800595,0.598328,0.429135,0.569683,0.609417,0.183736,0.351871,0.745864,0.445866,0.576573,0.69503,0.389916,0.572904,0.89365,0.211562,0.953513,0.639495,0.323578,0.85396,0.48611,0.850865,0.805972,0.276786,0.646326,0.125082,0.196997,0.73441,0.785413,0.308039,0.371413,0.464555,0.146547,0.364525,0.678063,0.0899672,0.919781,0.624174,0.22169,0.236668,0.575172,0.584969,0.925015,0.154914,0.700539,0.840274,0.358985,0.727915,0.396177,0.0841686,0.749557,0.208996,0.589332,0.0224088,0.989908,0.885754,0.693945,0.607721,0.450113,0.874046,0.0900678,0.0617096,0.0080539,0.752982,0.936098,0.937545,0.973578,0.668958,0.640869,0.0403112,0.416454,0.0826045,0.0698991,0.705761,0.905931,0.715016,0.174978,0.00926745,0.394731,0.160846,0.761538,0.925569,0.216676,0.263453,0.455931,0.102129,0.124152,0.178125,0.790425,0.055843,0.614554,0.669093,0.158736,0.41628,0.679719,0.523279,0.177528,0.632478,0.447985,0.582352,0.777593,0.843299,0.201348,0.562223,0.766671,0.74123,0.281288,0.686913,0.940424,0.536558,0.739514,0.727614,0.530184,0.427989,0.488428,0.330992,0.974674,0.00533366,0.13775,0.56486,0.0729073,0.280506,0.628536,0.951908,0.584993,0.0782642,0.766385,0.567679,0.398099,0.167515,0.177169,0.518657,0.576201,0.342575,0.75289,0.960496,0.374829,0.00760764,0.609218,0.395884,0.173759,0.333722,0.357565,0.377341,0.768889,0.512091,0.526929,0.537508,0.0861592,0.998884,0.747573,0.48362,0.398967,0.146344,0.433843,0.592859,0.0998222,0.516133,0.0472975,0.0342897,0.380698,0.488043,0.710654,0.10481,0.169389,0.327754,0.832099,0.024521,0.767126,0.386887,0.0977392,0.0359101,0.370263,0.297912,0.671082,0.47062,0.70672,0.01604,0.201911,0.161094,0.973228,0.468219,0.0156987,0.957317,0.615602,0.388185,0.997931,0.583354,0.67784,0.974825,0.316029,0.45744,0.240473,0.137995,0.287836,0.092662,0.729371,0.309357,0.69874,0.352739,0.893847,0.108955,0.409452,0.830048,0.455973,0.446078,0.0518631,0.48637,0.0323416,0.588313,0.127778,0.10291,0.0343478,0.971315,0.393275,0.756048,0.592233,0.451973,0.208027,0.535927,0.0760891,0.423969,0.981961,0.780716,0.447383,0.338045,0.536369,0.658124,0.523589,0.439049,0.586504,0.904826,0.560214,0.0968625,0.594657,0.142786,0.750209,0.181028,0.773384,0.524989,0.484062,0.651133,0.602802,0.490188,0.749278,0.85231,0.892059,0.173465,0.519842,0.402662,0.448671,0.375805,0.362929,0.512008,0.734368,0.345494,0.337696,0.721873,0.473334,0.00762326,0.0617723,0.457248,0.140465,0.537504,0.07964,0.519317,0.265426,0.200149,0.438142,0.336036,0.0880215,0.986697,0.411517,0.300716,0.501924,0.489824,0.859402,0.850978,0.550384,0.823178,0.00019604,0.622961,0.677183,0.896285,0.368734,0.756235,0.601899,0.437953,0.650585,0.627539,0.0764476,0.587471,0.19902,0.174894,0.792999,0.800453,0.565978,0.991521,0.374761,0.258893,0.61995,0.601261,0.347933,0.51125,0.24179,0.0649962,0.504237,0.0461057,0.397099,0.141104,0.249552,0.319907,0.579844,0.674658,0.059957,0.234793,0.479108,0.832521,0.614113,0.88936,0.239099,0.694893,0.67137,0.016574,0.784266,0.485113,0.742065,0.617442,0.555661,0.270008,0.400913,0.0744544,0.443623,0.977938,0.0410684,0.504853,0.470637,0.0407412,0.947533,0.749019,0.429858,0.172471,0.527074,0.801874,0.628586,0.0075438,0.570109,0.44304,0.883038,0.445552,0.78732,0.872896,0.759454,0.814381,0.995929,0.243075,0.924513,0.810184,0.805029,0.814375,0.287761,0.545469,0.630337,0.421781,0.0139798,0.785101,0.308208,0.923202,0.0957373,0.239999,0.740674,0.741619,0.658027,0.736141,0.922313,0.400992,0.535867,0.461073,0.0893217,0.485111,0.123475,0.414163,0.0876223,0.739672,0.379413,0.901684,0.425498,0.956175,0.782031,0.9615,0.395555,0.442019,0.508774,0.624744,0.764304,0.420912,0.585367,0.970819,0.995657,0.753793,0.455966,0.770462,0.725448,0.459609,0.243557,0.480364,0.615341,0.360052,0.975132,0.542147,0.469093,0.379598,0.024375,0.275402,0.333559,0.693023,0.281922,0.836582,0.311661,0.287736,0.197397,0.949054,0.252887,0.6731,0.897617,0.437655,0.349184,0.311941,0.532723,0.89432,0.436508,0.823118,0.855483,0.655663,0.43064,0.704861,0.638403,0.0188847,0.268581,0.870218,0.250873,0.206622,0.90016,0.572757,0.260724,0.620794,0.887279,0.159861,0.516225,0.936598,0.976299,0.909017,0.578195,0.0503088,0.499707,0.209537,0.694727,0.0647527,0.517591,0.672841,0.382413,0.467498,0.115951,0.880369,0.690513,0.431742,0.32894,0.720606,0.199661,0.389237,0.36024,0.407482,0.0260055,0.00148034,0.899953,0.157472,0.387429,0.445294,0.754695,0.183083,0.0982977,0.660024,0.404642,0.322668,0.445775,0.00025785,0.0292969,0.661738,0.428353,0.71296,0.289909,0.388427,0.960797,0.910991,0.676216,0.130774,0.897012,0.22384,0.830571,0.802031,0.035212,0.959204,0.638589,0.948895,0.863807,0.0146494,0.41715,0.243553,0.714463,0.551585,0.240526,0.022325,0.782076,0.991278,0.330175,0.763379,0.149614,0.293401,0.258632,0.897561,0.149926,0.480993,0.71935,0.749399,0.156608,0.29949,0.149675,0.673881,0.509076,0.731984,0.190655,0.407576,0.316015,0.19015,0.19134,0.761552,0.581433,0.164043,0.748679,0.963075,0.8062,0.200762,0.054514,0.64551,0.434347,0.209685,0.425145,0.623489,0.0400705,0.366733,0.446642,0.606111,0.4227,0.554458,0.238856,0.794186,0.519353,0.354642,0.694647,0.727872,0.568726,0.692518,0.744908,0.231901,0.52925,0.0953733,0.573508,0.0325014,0.333401,0.67097,0.191132,0.922358,0.934384,0.804157,0.947878,0.904686,0.669259,0.361597,0.493978,0.867836,0.534027,0.681397,0.100993,0.900008,0.794811,0.665588,0.602519,0.412225,0.584908,0.699562,0.670363,0.144329,0.542551,0.864906,0.873354,0.497512,0.710023,0.486801,0.102061,0.117249,0.86461,0.611328,0.224349,0.89543,0.352164,0.881005,0.496587,0.155963,0.934557,0.377743,0.566464,0.11186,0.109994,0.0345616,0.902843,0.545115,0.187365,0.138599,0.931131,0.276588,0.390363,0.451464,0.378223,0.601083,0.855925,0.945896,0.302086,0.774038,0.0234188,0.559511,0.285805,0.91205,0.442717,0.207921,0.872751,0.307345,0.273479,0.505451,0.646342,0.53607,0.190339,0.842759,0.379936,0.77362,0.270884,0.928995,0.0982397,0.177623,0.944788,0.502264,0.840502,0.89666,0.963734,0.785522,0.191131,0.843763,0.119272,0.754269,0.409578,0.531641,0.170886,0.416914,0.127285,0.945969,0.455773,0.475883,0.745459,0.635538,0.756154,0.729953,0.0998387,0.553531,0.641572,0.930229,0.82129,0.554121,0.0326996,0.224527,0.985221,0.950956,0.916018,0.740809,0.56206,0.371744,0.340263,0.535315,0.0593211,0.546463,0.818189,0.795231,0.408794,0.711953,0.31688,0.227609,0.922149,0.92302,0.791072,0.143078,0.872602,0.851291,0.759986,0.556728,0.743212,0.630178,0.183388,0.66645,0.417226,0.0522395,0.857572,0.370424,0.409515,0.840409,0.384212,0.590018,0.0762465,0.675321,0.781271,0.735689,0.969402,0.946081,0.682155,0.0924111,0.55174,0.299636,0.145605,0.0118226,0.0864223,0.539108,0.72679,0.38597,0.918427,0.837242,0.127968,0.149461,0.264358,0.755476,0.182844,0.541362,0.963801,0.0598173,0.438629,0.686727,0.945542,0.799738,0.450889,0.942436,0.0287027,0.0709246,0.123994,0.519736,0.00415045,0.238847,0.139962,0.505228,0.787893,0.596887,0.878546,0.595013,0.0137858,0.116057,0.47453,0.685916,0.0650383,0.514755,0.115081,0.0898542,0.0718785,0.275703,0.191674,0.6636,0.464894,0.195556,0.1386,0.864894,0.531041,0.34293,0.57115,0.357001,0.805048,0.6905,0.818655,0.636352,0.913387,0.263395,0.879668,0.691491,0.571345,0.95528,0.516934,0.679557,0.553996,0.516316,0.613517,0.82221,0.870549,0.426074,0.821852,0.86993,0.185274,0.722365,0.751253,0.180709,0.288708,0.402946,0.449525,0.99422,0.375057,0.496943,0.13575,0.270604,0.662949,0.636112,0.709385,0.311504,0.176655,0.723393,0.391613,0.927176,0.920339,0.352149,0.529212,0.263033,0.18491,0.529779,0.36363,0.226559,0.0165696,0.241989,0.146524,0.123993,0.272244,0.829872,0.370968,0.0762799,0.622072,0.257639,0.221739,0.110131,0.505602,0.512912,0.734929,0.0821282,0.197397,0.66528,0.269461,0.58533,0.431211,0.181485,0.874892,0.0090732,0.847993,0.543918,0.826335,0.182931,0.354704,0.123285,0.356346,|0.245244,0.173329,0.515943,0.90601,0.314179,0.941988,0.0290043,0.945782,0.906012,0.0648656,0.945062,0.476704,0.0571945,0.868789,0.705882,0.194444,0.595191,0.665653,0.880411,0.60509,0.743213,0.333506,0.634262,0.750434,0.371892,0.524496,0.519185,0.865959,0.418047,0.677204,0.18123,0.313372,0.214694,0.537743,0.506091,0.931948,0.902212,0.893819,0.927998,0.919544,0.595677,0.89082,0.508176,0.431769,0.130499,0.995513,0.80332,0.610186,0.233253,0.137308,0.797931,0.938797,0.341714,0.596069,0.781286,0.735571,0.113659,0.446831,0.284256,0.926727,0.970158,0.28499,0.813757,0.0376762,0.0884575,0.289218,0.553437,0.412075,0.122987,0.676363,0.499275,0.928346,0.433167,0.473873,0.426427,0.0238869,0.682737,0.136858,0.273059,0.290097,0.215424,0.572794,0.043419,0.537505,0.2445,0.442793,0.901663,0.739084,0.274499,0.205147,0.708453,0.356739,0.0291246,0.99168,0.112707,0.616797,0.683714,0.875081,0.215639,0.151397,0.53507,0.926834,0.811189,0.906069,0.116057,0.352167,0.126148,0.728791,0.595014,0.179703,0.400037,0.755307,0.190923,0.0546675,0.130074,0.190549,0.343475,0.612042,0.705064,0.091239,0.210148,0.519386,0.178269,0.0139964,0.727047,0.932258,0.486358,0.211059,0.279625,0.848695,0.430468,0.461145,0.790537,0.581602,0.999588,0.653667,0.329813,0.368173,0.251455,0.332631,0.911157,0.0776944,0.633212,0.922352,0.774026,0.483825,0.857267,0.828801,0.657719,0.306189,0.465498,0.184676,0.307447,0.524473,0.936399,0.509558,0.0583516,0.0543748,0.102638,0.482802,0.15251,0.544606,0.745997,0.145588,0.478462,0.044716,0.405932,0.436819,0.0741062,0.295401,0.130492,0.553866,0.211645,0.340875,0.114448,0.833116,0.240458,0.612809,0.761727,0.974645,0.304731,0.525744,0.868347,0.336588,0.0438566,0.498919,0.0015105,0.54657,0.777561,0.98641,0.325614,0.954449,0.253615,0.629244,0.624052,0.0136816,0.89319,0.558425,0.26834,0.194923,0.759376,0.720324,0.224981,0.381088,0.561506,0.0419421,0.402646,0.46971,0.266475,0.714609,0.335839,0.868975,0.313124,0.121933,0.873473,0.822598,0.41819,0.433841,0.757672,0.900438,0.777314,0.333174,0.829495,0.0382902,0.266433,0.209558,0.664151,0.887929,0.757498,0.274705,0.735218,0.576627,0.831241,0.130179,0.277368,0.28428,0.254034,0.865097,0.592093,0.83637,0.199034,0.00469464,0.231925,0.0547038,0.720493,0.879688,0.401883,0.776428,0.762316,0.0879878,0.575818,0.423018,0.997333,0.126548,0.501155,0.98175,0.648807,0.571861,0.45764,0.905896,0.805438,0.215339,0.470628,0.816556,0.427739,0.226028,0.556521,0.339147,0.656621,0.183457,0.518567,0.609888,0.329002,0.678572,0.0176297,0.396183,0.495339,0.750971,0.0700575,0.695586,0.846095,0.462022,0.134669,0.981083,0.281894,0.108761,0.654565,0.036717,0.160529,0.256416,0.717938,0.205478,0.34978,0.0797099,0.956931,0.481179,0.334348,0.975491,0.172516,0.584822,0.867422,0.580655,0.287026,0.327451,0.616032,0.513141,0.0561419,0.886121,0.530014,0.464846,0.243741,0.123543,0.172251,0.693271,0.641976,0.983589,0.804601,0.828844,0.874849,0.657602,0.397394,0.382418,0.550923,0.0588414,0.00608397,0.0742058,0.187542,0.639941,0.104223,0.0140375,0.604486,0.734422,0.190438,0.241461,0.444586,0.868995,0.582471,0.437735,0.668355,0.164065,0.829526,0.709191,0.277363,0.555076,0.992391,0.226177,0.758484,0.137685,0.763552,0.293454,0.72348,0.949102,0.934012,0.612772,0.636914,0.168942,0.654649,0.967792,0.276543,0.359474,0.556277,0.65317,0.647376,0.855453,0.56977,0.195198,0.0146093,0.820665,0.112012,0.509679,0.211551,0.442417,0.901428,0.471567,0.355897,0.481457,0.476418,0.142999,0.229678,0.873127,0.482119,0.366156,0.350369,0.233202,0.00177699,0.549728,0.730425,0.699747,0.619506,0.663269,0.182135,0.0655704,0.836059,0.112592,0.921491,0.673517,0.269662,0.545931,0.886948,0.142639,0.911419,0.549109,0.384357,0.420491,0.205593,0.48388,0.265259,0.636712,0.0494957,0.675211,0.570376,0.107103,0.541257,0.444637,0.421565,0.752741,0.872542,0.639514,0.292833,0.368274,0.778077,0.456559,0.645364,0.685991,0.555754,0.580783,0.696519,0.224282,0.993205,0.871963,0.912564,0.220735,0.948261,0.680954,0.557968,0.368485,0.587608,0.825298,0.379492,0.127543,0.176557,0.877326,0.814138,0.224111,0.250563,0.014361,0.890954,0.416119,0.390306,0.671843,0.78311,0.662131,0.855883,0.672248,0.503412,0.117316,0.60537,0.0252008,0.364686,0.241109,0.141362,0.0860606,0.575624,0.957422,0.570886,0.950797,0.588308,0.246396,0.240387,0.0453027,0.1914,0.160674,0.539966,0.0151387,0.00872809,0.702171,0.537031,0.736582,0.267067,0.862425,0.554163,0.947079,0.749368,0.544153,0.449516,0.674897,0.576645,0.184722,0.18792,0.641936,0.832238,0.981836,0.35835,0.66684,0.417035,0.445434,0.519167,0.294761,0.555022,0.154434,0.219438,0.163661,0.619168,0.508062,0.494638,0.649693,0.733267,0.313558,0.365213,0.339382,0.0378017,0.727072,0.935225,0.679761,0.82121,0.55723,0.539973,0.485439,0.982853,0.615577,0.154986,0.941285,0.0923879,0.940889,0.381575,0.804926,0.120628,0.487308,0.184938,0.388949,0.45192,0.374609,0.326325,0.857407,0.852911,0.487617,0.88518,0.472155,0.131877,0.158014,0.61001,0.749097,0.494025,0.38061,0.929398,0.56995,0.172462,0.75069,0.600019,0.675984,0.720223,0.705783,0.672237,0.677611,0.150599,0.893575,0.530611,0.358015,0.656316,0.333309,0.731833,0.156683,0.951353,0.44646,0.376728,0.338731,0.945222,0.651471,0.600726,0.339045,0.813977,0.326657,0.561407,0.346993,0.488908,0.504029,0.33195,0.532223,0.30238,0.400085,0.356986,0.844369,0.839192,0.153591,0.858588,0.558318,0.852104,0.890796,0.622395,0.878434,0.0934049,0.0331817,0.369046,0.529016,0.553386,0.12053,0.297403,0.323407,0.618273,0.490473,0.221331,0.555,0.154585,0.727782,0.21756,0.828768,0.288542,0.621617,0.557008,0.160824,0.212466,0.910901,0.524552,0.916005,0.829603,0.0948208,0.650266,0.115442,0.0795018,0.805141,0.767138,0.410659,0.908612,0.0836997,0.276839,0.292021,0.317333,0.881274,0.704451,0.599726,0.5873,0.871665,0.0617229,0.936391,0.0451354,0.402031,0.362166,0.693443,0.326048,0.548641,0.361062,0.694198,0.0592659,0.556416,0.706175,0.316431,0.47865,0.424133,0.911743,0.613597,0.105671,0.573825,0.771135,0.707573,0.0851287,0.766773,0.944947,0.474579,0.382928,0.717887,0.838095,0.0477642,0.0785918,0.951555,0.388014,0.767391,0.718622,0.649227,0.80958,0.724441,0.181447,0.370838,0.675689,0.111691,0.125237,0.133611,0.483503,0.176469,0.394772,0.116855,0.678822,0.604229,0.759883,0.478871,0.225696,0.200948,0.706774,0.341186,0.615431,0.384606,0.878939,0.219125,0.319662,0.22936,0.495563,0.582642,0.954494,0.835185,0.535166,0.154513,0.0134839,0.187503,0.203766,0.14139,0.869741,0.952042,0.87647,0.420557,0.853903,0.239088,0.510972,0.328617,0.765716,0.288567,0.875978,0.391143,0.504959,0.872732,0.857732,0.185303,0.348794,0.915013,0.252325,0.114026,0.309251,0.323079,0.488609,0.338996,0.330665,0.623654,0.85824,0.77143,0.0551158,0.0493189,0.560116,0.588815,0.724206,0.293618,0.356407,0.350534,0.498433,0.152073,0.745211,0.631112,0.484368,0.284614,0.405036,0.0764009,0.927259,0.40369,0.56471,0.80129,0.524759,0.244639,0.382044,0.772211,0.787893,0.68967,0.138763,0.0467891,0.918048,0.48631,0.0969187,0.429864,0.670793,0.948586,0.984161,0.805652,0.763117,0.760299,0.129654,0.603167,0.514057,0.367663,0.285946,0.275116,0.214638,0.99219,0.372802,0.176425,0.407712,0.424075,0.675924,0.976084,0.38951,0.73121,0.245427,0.339132,0.541284,0.38637,0.825952,0.638287,0.656996,0.710167,0.613903,0.9052,0.690965,0.833072,0.374025,0.217198,0.473214,0.683355,0.695339,0.366641,0.887463,0.901992,0.702676,0.852172,0.403156,0.763983,0.679927,0.605486,0.287403,0.360782,0.498636,0.521061,0.267542,0.688228,0.674514,0.793618,0.907265,0.723614,0.525133,0.887015,0.687908,0.651631,0.118389,0.59654,0.762105,0.185686,0.480585,0.799812,0.577837,0.618023,0.419531,0.448178,0.355545,0.834774,0.103696,0.993201,0.975608,0.823417,0.260344,0.842717,0.892707,0.477894,0.759096,0.552725,0.527507,0.6566,0.893905,0.388744,0.257816,0.421455,0.331875,0.101317,0.604852,0.896573,0.557334,0.938271,0.638301,0.614946,0.321611,0.66498,0.13066,0.405245,0.760363,0.117201,0.862544,0.666097,0.420294,0.716211,0.069352,0.687283,0.734049,0.920325,0.882213,0.400629,0.897764,0.469816,0.408839,0.0817277,0.871799,0.425906,0.593174,0.733617,0.270253,0.654773,0.897294,0.260233,0.130418,0.189863,0.30023,0.885258,0.218102,0.974776,0.776866,0.120832,0.000222623,0.119024,0.378982,0.718007,0.809828,0.672683,0.689676,0.962821,0.952489,0.268906,0.0808635,0.0120305,0.12642,0.986168,0.760533,0.194754,0.283933,0.158645,0.117707,0.207225,0.664876,0.577738,0.0926317,0.37052,0.0408422,0.499777,0.2987,0.282744,0.926219,0.696253,0.71283,0.360204,0.443302,0.457681,0.791119,0.0264652,0.954391,0.461357,0.0875163,0.0856155,0.367951,0.373861,0.534578,0.774864,0.715922,0.995493,0.782945,0.77683,0.933091,0.0076915,0.151896,0.622149,0.726333,0.959937,0.644519,0.577459,0.972491,0.721322,0.171212,0.965497,0.979974,0.355366,0.491346,0.675723,0.98035,0.0568261,0.251533,0.457496,0.977151,0.474716,0.267902,0.604659,0.438699,0.275082,0.791366,0.0285561,0.0418475,0.92118,0.108803,0.374128,0.0737696,0.658571,0.958197,0.423867,0.296832,0.916059,0.0180457,0.995077,0.662044,0.511199,0.331727,0.108473,0.703057,0.772413,0.202752,0.385713,0.202045,0.988759,0.814883,0.25198,0.36621,0.798618,|0.984344,0.584359,0.57536,0.793423,0.0861064,0.717574,0.500731,0.705228,0.656144,0.435205,0.477593,0.28611,0.260326,0.886894,0.168826,0.535486,0.730675,0.0560694,0.534633,0.477785,0.512176,0.681505,0.324661,0.489159,0.519313,0.714989,0.807192,0.181177,0.955892,0.108768,0.397242,0.642316,0.0332825,0.908062,0.0474659,0.955736,0.724234,0.305869,0.853498,0.289661,0.505817,0.13143,0.708465,0.726804,0.764135,0.263793,0.604866,0.693993,0.078069,0.252931,0.197392,0.691049,0.946182,0.761635,0.20376,0.286338,0.662894,0.627475,0.281267,0.364581,0.282725,0.526723,0.949485,0.163608,0.0483398,0.561126,0.178,0.570158,0.0159135,0.0183893,0.735438,0.898415,0.857379,0.729035,0.489403,0.95442,0.4038,0.608416,0.387095,0.888003,0.973607,0.603218,0.118273,0.89984,0.581288,0.369598,0.330256,0.938311,0.340938,0.78352,0.871688,0.644542,0.278242,0.760812,0.871918,0.741927,0.688904,0.327411,0.929436,0.64669,0.239863,0.102934,0.849847,0.408993,0.289867,0.613649,0.42676,0.145853,0.642768,0.323851,0.222473,0.734213,0.867482,0.399915,0.569132,0.670281,0.815815,0.922438,0.40683,0.692954,0.977339,0.185937,0.379366,0.00995904,0.587707,0.958529,0.312577,0.561152,0.442884,0.309664,0.012356,0.463691,0.677515,0.0688558,0.613948,0.953029,0.774431,0.326538,0.395978,0.509484,0.569303,0.603587,0.669826,0.888627,0.263791,0.541626,0.450938,0.251991,0.0432511,0.0396056,0.120834,0.909933,0.0333062,0.450132,0.593692,0.91848,0.0237156,0.111418,0.118271,0.396408,0.35756,0.199552,0.0607657,0.205146,0.75494,0.79428,0.657001,0.504861,0.190513,0.367303,0.0175734,0.780807,0.502007,0.588186,0.300848,0.867475,0.787379,0.619323,0.700038,0.150704,0.868863,0.0320992,0.219346,0.620537,0.166351,0.718242,0.977904,0.206322,0.181713,0.437558,0.154726,0.442483,0.831473,0.523335,0.614667,0.208764,0.248892,0.0208539,0.639234,0.392918,0.382787,0.748776,0.183658,0.278005,0.421991,0.513867,0.960773,0.793207,0.693184,0.676346,0.546821,0.878299,0.388102,0.50448,0.0071876,0.300155,0.130715,0.657741,0.206043,0.1815,0.669731,0.799062,0.746936,0.0376341,0.14787,0.87265,0.742265,0.217362,0.295412,0.505085,0.274839,0.069795,0.14005,0.157652,0.810492,0.964731,0.0566624,0.354621,0.482612,0.0613071,0.0438425,0.0252808,0.518103,0.507988,0.192148,0.0272606,0.910517,0.191651,0.853961,0.0178094,0.731369,0.619533,0.778827,0.245864,0.660455,0.715704,0.655843,0.266178,0.718641,0.222253,0.0263812,0.0399755,0.222845,0.715452,0.379072,0.000828028,0.164841,0.809698,0.152128,0.88305,0.34723,0.196317,0.438369,0.290655,0.683298,0.796834,0.725327,0.113596,0.401082,0.933264,0.454989,0.000758171,0.800413,0.115994,0.780484,0.312255,0.13628,0.770998,0.0493515,0.0131068,0.411871,0.0401801,0.47571,0.424297,0.380332,0.126294,0.393807,0.471197,0.731319,0.409047,0.295045,0.817229,0.461451,0.680319,0.89923,0.743766,0.327401,0.304951,0.979216,0.129199,0.630186,0.259625,0.632332,0.612682,0.64105,0.533979,0.541189,0.0665796,0.623702,0.344783,0.190841,0.838795,0.331447,0.17101,0.139028,0.0804954,0.546558,0.311,0.272321,0.623189,0.563177,0.0433441,0.124448,0.269118,0.534815,0.980087,0.849171,0.857221,0.289881,0.957606,0.136665,0.577454,0.350713,0.719596,0.377348,0.159141,0.560917,0.433178,0.121976,0.566292,0.175431,0.261575,0.962831,0.383599,0.143144,0.587689,0.660407,0.564283,0.522935,0.288687,0.791091,0.481483,0.633851,0.129224,0.25766,0.618702,0.780498,0.816495,0.572005,0.878661,0.93108,0.335366,0.670097,0.597919,0.425492,0.764104,0.141374,0.529304,0.65752,0.0799628,0.0192562,0.329769,0.976278,0.888521,0.659295,0.196363,0.365396,0.933623,0.31369,0.421276,0.874341,0.528899,0.562583,0.825531,0.275367,0.684739,0.118949,0.409789,0.564577,0.230938,0.379644,0.979493,0.947406,0.345493,0.941837,0.944433,0.744143,0.311942,0.324833,0.705088,0.124629,0.564873,0.324781,0.974733,0.678365,0.461124,0.938989,0.994928,0.571985,0.596691,0.620705,0.792459,0.90468,0.752361,0.801521,0.756907,0.536216,0.927512,0.180597,0.0455282,0.472541,0.807468,0.650565,0.351256,0.651816,0.881553,0.32,0.47647,0.141799,0.721818,0.9516,0.0285575,0.83818,0.708695,0.223035,0.26132,0.873817,0.14344,0.271304,0.120911,0.286255,0.304833,0.141838,0.476289,0.94661,0.591232,0.243446,0.700601,0.700267,0.308537,0.80537,0.893238,0.259671,0.540269,0.380032,0.131004,0.591728,0.270375,0.926387,0.0582279,0.146164,0.53562,0.674134,0.464536,0.0755624,0.223827,0.602948,0.859112,0.40822,0.507212,0.998699,0.41397,0.780168,0.312295,0.143656,0.606161,0.508418,0.454796,0.690533,0.914746,0.0115361,0.997815,0.719922,0.679365,0.390231,0.672438,0.572007,0.61405,0.0727022,0.572959,0.664061,0.00423962,0.449434,0.0905077,0.649349,0.375978,0.869448,0.0161236,0.246271,0.439562,0.209896,0.106746,0.907578,0.449823,0.113057,0.820959,0.743251,0.0139377,0.64782,0.888918,0.703364,0.659182,0.169322,0.554922,0.456583,0.643211,0.719983,0.607666,0.163941,0.351611,0.640047,0.924056,0.406341,0.63444,0.357631,0.358624,0.967872,0.0862095,0.271713,0.888678,0.516644,0.785568,0.917326,0.199199,0.54828,0.30567,0.285372,0.66164,0.95146,0.530971,0.637169,0.64419,0.135198,0.446465,0.116956,0.652684,0.894249,0.537915,0.861379,0.989517,0.530094,0.752321,0.994795,0.94356,0.666747,0.442105,0.285403,0.781201,0.566743,0.619266,0.199464,0.325628,0.490105,0.0595892,0.307803,0.330817,0.207183,0.737043,0.659793,0.0651444,0.129891,0.532586,0.996141,0.66278,0.376226,0.523753,0.587766,0.669185,0.736061,0.641836,0.794388,0.816983,0.474505,0.317928,0.740747,0.030414,0.790505,0.313514,0.554714,0.767803,0.791028,0.388358,0.888119,0.288252,0.470495,0.962978,0.590859,0.827447,0.550397,0.553197,0.755423,0.681371,0.476767,0.144398,0.204012,0.622068,0.529997,0.474347,0.79788,0.370175,0.487907,0.842892,0.80184,0.0709013,0.356841,0.0871807,0.229934,0.0488616,0.729083,0.783497,0.260561,0.191406,0.126752,0.916515,0.37528,0.358106,0.265198,0.316589,0.812562,0.341488,0.309609,0.228657,0.320022,0.527449,0.704814,0.809679,0.79773,0.00387841,0.203915,0.200881,0.386051,0.421754,0.651843,0.202584,0.203305,0.143112,0.483859,0.818201,0.605839,0.784194,0.75579,0.978073,0.689832,0.447749,0.558223,0.104512,0.98121,0.379035,0.834995,0.80193,0.624138,0.552111,0.693113,0.110631,0.831013,0.326226,0.667427,0.229642,0.653812,0.114954,0.576881,0.0210174,0.146126,0.962814,0.637762,0.056528,0.498096,0.29705,0.832884,0.484515,0.0146735,0.0748733,0.125654,0.148267,0.377155,0.701801,0.20366,0.193197,0.198497,0.128483,0.354429,0.235748,0.225589,0.769264,0.154894,0.774364,0.930327,0.128532,0.617676,0.641297,0.0428081,0.991696,0.321432,0.754345,0.118734,0.232332,0.776954,0.829539,0.133608,0.494066,0.0298436,0.588877,0.590091,0.969168,0.453963,0.223298,0.998723,0.475972,0.82395,0.546005,0.763466,0.764051,0.600091,0.472534,0.74079,0.994995,0.992883,0.657672,0.664634,0.77879,0.600167,0.621336,0.845878,0.668071,0.365313,0.583905,0.752382,0.585743,0.380152,0.527262,0.64165,0.0730176,0.214568,0.271881,0.555338,0.269607,0.751651,0.0372906,0.907004,0.0740432,0.991472,0.713847,0.955152,0.47712,0.346394,0.494729,0.550634,0.111307,0.427382,0.298645,0.38375,0.992648,0.540417,0.691484,0.336091,0.448262,0.429942,0.558544,0.585717,0.354507,0.772295,0.806537,0.804967,0.58254,0.192841,0.175974,0.569602,0.828614,0.541642,0.39386,0.762614,0.587693,0.980905,0.716945,0.151053,0.00903916,0.160749,0.727115,0.750324,0.443066,0.530496,0.0894942,0.486656,0.964049,0.673122,0.163925,0.422074,0.765104,0.57688,0.895901,0.658863,0.388635,0.796491,0.477547,0.18728,0.256172,0.644595,0.599161,0.244136,0.0940737,0.924597,0.869654,0.508991,0.387892,0.25531,0.832125,0.407739,0.60376,0.449734,0.778819,0.468481,0.318024,0.906153,0.493492,0.451275,0.363267,0.0142041,0.230067,0.248925,0.725072,0.793442,0.232766,0.429703,0.655222,0.470354,0.974259,0.128083,0.436403,0.0942412,0.0429204,0.18575,0.533556,0.322885,0.983566,0.101673,0.958981,0.587743,0.0536126,0.838466,0.185371,0.109896,0.688226,0.636767,0.0304241,0.683519,0.896191,0.115687,0.864213,0.428677,0.652168,0.528093,0.284364,0.603048,0.354896,0.178423,0.596498,0.102831,0.727895,0.565501,0.683724,0.905113,0.95791,0.473095,0.109083,0.795729,0.300871,0.535654,0.0798806,0.000341952,0.10765,0.149395,0.686749,0.957285,0.949888,0.119876,0.0242115,0.00558829,0.332764,0.558276,0.998507,0.594502,0.587734,0.153435,0.460896,0.992697,0.489626,0.176102,0.835844,0.954934,0.329252,0.314467,0.633349,0.794614,0.494638,0.495024,0.163198,0.337425,0.66109,0.190663,0.583925,0.42818,0.134574,0.594184,0.939089,0.959539,0.519608,0.635882,0.224663,0.780974,0.016525,0.940753,0.527863,0.551654,0.65885,0.362882,0.502276,0.540736,0.471826,0.657766,0.51936,0.0424844,0.963019,0.903095,0.849974,0.723332,0.549825,0.994523,0.422095,0.268805,0.921194,0.839677,0.475931,0.148709,0.428337,0.0957503,0.0154654,0.805716,0.652939,0.192556,0.544895,0.758107,0.156282,0.851089,0.526333,0.0790464,0.0688019,0.922076,0.337536,0.27651,0.605677,0.0513657,0.770322,0.0699849,0.772027,0.0704317,0.204408,0.151985,0.460185,0.119452,0.999291,0.536273,0.857904,0.160574,0.864725,0.642683,0.93656,0.0413377,0.12023,0.170751,0.550272,0.20753,0.0203486,0.141241,0.38539,0.575353,0.78446,0.742713,0.855199,0.582582,0.81134,|0.000250995,0.389793,0.532688,0.109192,0.956477,0.471965,0.964152,0.62564,0.756867,0.899162,0.816963,0.0671089,0.2352,0.442125,0.330365,0.563582,0.792955,0.93447,0.686054,0.691404,0.290612,0.111237,0.315952,0.726784,0.834484,0.710648,0.840465,0.67506,0.265647,0.510111,0.626032,0.458951,0.294596,0.0310495,0.0911673,0.355179,0.836265,0.700281,0.574824,0.328744,0.432711,0.586576,0.466484,0.095468,0.0293446,0.16232,0.0675716,0.552386,0.36848,0.905078,0.124339,0.759316,0.463232,0.969832,0.36415,0.640407,0.781842,0.661993,0.463022,0.116303,0.879871,0.183949,0.471528,0.0500475,0.84932,0.772717,0.28345,0.389365,0.775895,0.0375744,0.115108,0.23001,0.33871,0.599344,0.356806,0.834107,0.313277,0.855349,0.864391,0.349913,0.444377,0.683222,0.423325,0.841734,0.970797,0.426907,0.0661831,0.122372,0.461041,0.144343,0.408464,0.643516,0.754148,0.897677,0.318406,0.175526,0.428001,0.985256,0.0433542,0.149889,0.537004,0.589789,0.0109424,0.701161,0.764412,0.0475207,0.662944,0.689862,0.917914,0.520934,0.111306,0.478078,0.255518,0.98114,0.772412,0.938263,0.9821,0.793024,0.731541,0.48452,0.429064,0.0462307,0.585906,0.11362,0.2986,0.741497,0.403828,0.269085,0.494877,0.189342,0.445141,0.226603,0.73931,0.050387,0.588803,0.544115,0.738267,0.941686,0.724483,0.94036,0.655033,0.0186144,0.143877,0.666166,0.164937,0.27492,0.967206,0.672852,0.784917,0.0254206,0.996258,0.916483,0.62032,0.443281,0.651646,0.302636,0.533383,0.394433,0.316707,0.730568,0.238761,0.30132,0.165315,0.3752,0.0648993,0.434123,0.158635,0.239353,0.221722,0.106778,0.435559,0.701873,0.303522,0.203547,0.316353,0.0434061,0.286044,0.49527,0.0390571,0.155541,0.700478,0.0315232,0.623439,0.138436,0.18811,0.672673,0.22903,0.423695,0.406105,0.445632,0.201667,0.884873,0.76543,0.561977,0.89887,0.244579,0.252891,0.182587,0.64724,0.165279,0.195698,0.70295,0.554722,0.18143,0.126488,0.63101,0.49418,0.283937,0.866615,0.207314,0.824589,0.650267,0.212327,0.774512,0.747073,0.783864,0.969749,0.581595,0.133549,0.669812,0.972777,0.258996,0.206357,0.464598,0.467397,0.139123,0.369852,0.361754,0.00715935,0.851011,0.0448077,0.459552,0.0750078,0.516781,0.790602,0.718618,0.409593,0.204391,0.120482,0.0831947,0.91572,0.226181,0.643172,0.812987,0.948053,0.153728,0.742153,0.395421,0.486173,0.105556,0.442227,0.134461,0.761374,0.232084,0.760398,0.854584,0.535104,0.358019,0.507725,0.628713,0.57279,0.421949,0.527401,0.797153,0.240484,0.0333536,0.423239,0.911193,0.280085,0.205287,0.4836,0.519677,0.375455,0.440951,0.64987,0.735113,0.00328219,0.828615,0.347192,0.811803,0.788917,0.57169,0.175362,0.653186,0.28327,0.684947,0.724844,0.68314,0.851009,0.800915,0.212872,0.889067,0.311074,0.725356,0.389425,0.488644,0.798802,0.260048,0.0578614,0.169333,0.770033,0.613407,0.366708,0.803975,0.287766,0.459538,0.157726,0.290019,0.537368,0.376682,0.85214,0.982259,0.849931,0.665857,0.222647,0.777679,0.317452,0.0402222,0.931046,0.18643,0.396166,0.692339,0.00516242,0.241425,0.284431,0.80134,0.771785,0.0570573,0.0364192,0.490092,0.930951,0.142562,0.59754,0.608715,0.345327,0.62895,0.467045,0.29145,0.251461,0.523666,0.851021,0.684206,0.143799,0.740061,0.0893493,0.454309,0.449874,0.119968,0.321475,0.758848,0.390348,0.830953,0.279023,0.697085,0.336215,0.738799,0.800786,0.96592,0.452791,0.597575,0.869758,0.725123,0.839246,0.59123,0.551542,0.946401,0.354977,0.0404605,0.737061,0.158873,0.516162,0.652598,0.0227948,0.3091,0.105936,0.53528,0.964559,0.25159,0.0182759,0.026341,0.627337,0.349548,0.691487,0.796697,0.382704,0.763536,0.793729,0.96964,0.314757,0.711075,0.888425,0.218894,0.0895227,0.493288,0.0827518,0.471082,0.603599,0.282701,0.895693,0.859088,0.462568,0.151047,0.486041,0.743329,0.283374,0.552466,0.999606,0.57074,0.545732,0.626694,0.365294,0.195843,0.191702,0.850487,0.40834,0.307896,0.448153,0.793054,0.178818,0.402169,0.580595,0.277118,0.252944,0.921467,0.00730556,0.703753,0.504788,0.856043,0.488535,0.516077,0.823758,0.160582,0.520201,0.165532,0.946501,0.858042,0.54924,0.290443,0.768932,0.891096,0.286258,0.626353,0.658656,0.30767,0.79483,0.801133,0.572737,0.746738,0.63689,0.673798,0.418973,0.997003,0.898415,0.120035,0.354637,0.218517,0.480572,0.0811887,0.338829,0.774748,0.273884,0.384954,0.298075,0.0684744,0.374112,0.68165,0.233842,0.483307,0.139629,0.885697,0.272668,0.555113,0.521176,0.533406,0.501134,0.94024,0.232485,0.00996703,0.267411,0.793162,0.498319,0.645639,0.82783,0.240946,0.372944,0.184136,0.541185,0.0652341,0.559148,0.779401,0.415996,0.526665,0.145302,0.761516,0.252789,0.678189,0.0995603,0.0739706,0.0328884,0.981704,0.902998,0.521882,0.702138,0.343219,0.662803,0.649725,0.421353,0.811001,0.985682,0.274535,0.366864,0.827863,0.940359,0.738658,0.867713,0.0592791,0.63565,0.000329077,0.853346,0.282669,0.208811,0.863486,0.904294,0.840616,0.631245,0.721945,0.584596,0.780025,0.556559,0.625211,0.32121,0.824662,0.30998,0.765599,0.352339,0.415909,0.172037,0.139412,0.72974,0.897608,0.126068,0.364422,0.758804,0.690795,0.750535,0.270957,0.148387,0.902728,0.035957,0.522465,0.949888,0.545248,0.672488,0.248926,0.708858,0.380435,0.223569,0.145368,0.998568,0.149001,0.875799,0.935419,0.819017,0.780509,0.580872,0.69706,0.83609,0.600792,0.774497,0.224133,0.634907,0.339299,0.350448,0.320138,0.379051,0.107325,0.808795,0.573361,0.571192,0.431524,0.476057,0.736702,0.465962,0.663175,0.640871,0.832761,0.714641,0.66101,0.23182,0.765568,0.687171,0.380608,0.719297,0.610067,0.939733,0.20502,0.086727,0.0773115,0.697049,0.256204,0.797919,0.486791,0.528178,0.458502,0.230872,0.293135,0.302663,0.867422,0.534244,0.432852,0.524747,0.712238,0.795224,0.0358738,0.119988,0.271039,0.135025,0.648342,0.959743,0.801531,0.736216,0.911864,0.718677,0.431241,0.860449,0.62998,0.367629,0.0749218,0.626363,0.307336,0.0130194,0.42455,0.399636,0.0135903,0.76849,0.622218,0.469839,0.21727,0.425009,0.67568,0.133738,0.471128,0.0414345,0.668167,0.330368,0.850755,0.236823,0.858987,0.71087,0.334153,0.572941,0.71043,0.850523,0.277476,0.316905,0.430496,0.938754,0.571094,0.00720108,0.139105,0.900148,0.281848,0.345419,0.0934848,0.622424,0.932909,0.748652,0.684781,0.178652,0.067537,0.197924,0.574254,0.87656,0.75371,0.471198,0.303449,0.10395,0.445557,0.0862415,0.430286,0.37434,0.778528,0.746206,0.662801,0.0800117,0.447469,0.449528,0.373222,0.182678,0.143872,0.653097,0.662895,0.0898153,0.820943,0.717639,0.948311,0.138207,0.266253,0.0881388,0.832556,0.902213,0.283919,0.275257,0.765683,0.808026,0.9138,0.265988,0.315401,0.807021,0.782536,0.910353,0.630278,0.268656,0.568512,0.515332,0.706306,0.954576,0.703317,0.543539,0.245487,0.0763092,0.0897157,0.668885,0.136561,0.828967,0.666602,0.231381,0.833302,0.601384,0.642172,0.0523314,0.398145,0.26992,0.177333,0.341028,0.0814679,0.705997,0.792375,0.876796,0.574551,0.454366,0.943213,0.369272,0.10475,0.672375,0.827591,0.722676,0.242916,0.564078,0.485725,0.871041,0.600278,0.872606,0.452569,0.369296,0.631206,0.155636,0.0713124,0.777545,0.414325,0.799681,0.807611,0.193359,0.419898,0.338006,0.841825,0.930974,0.437661,0.310061,0.0229127,0.960827,0.828755,0.999279,0.96715,0.970368,0.958013,0.475548,0.99221,0.865162,0.333324,0.876897,0.522223,0.995762,0.694342,0.937907,0.0418062,0.971649,0.2074,0.699158,0.414522,0.485448,0.871579,0.786529,0.560888,0.71524,0.105913,0.666126,0.593542,0.437927,0.778142,0.856436,0.784116,0.676749,0.621681,0.128617,0.711011,0.312149,0.167062,0.54337,0.64312,0.843399,0.284096,0.870894,0.769972,0.561678,0.839267,0.442252,0.769802,0.894127,0.867029,0.763088,0.877354,0.347455,0.540938,0.313875,0.359533,0.398763,0.453223,0.555227,0.685567,0.00788814,0.151961,0.256586,0.458694,0.467869,0.219495,0.456046,0.573169,0.289209,0.972649,0.895945,0.984637,0.610479,0.587495,0.399611,0.684693,0.695935,0.245427,0.0934724,0.653512,0.886876,0.893651,0.459134,0.183773,0.305345,0.353923,0.720003,0.20877,0.592163,0.558426,0.85361,0.716585,0.979271,0.979187,0.564067,0.0397976,0.556115,0.818172,0.412078,0.24892,0.809509,0.957261,0.295856,0.595725,0.796926,0.34706,0.820727,0.256995,0.255148,0.522906,0.965404,0.383605,0.554196,0.981929,0.15411,0.901287,0.891914,0.163106,0.737465,0.317979,0.375253,0.147918,0.60413,0.316425,0.869897,0.340707,0.757445,0.223555,0.119397,0.549926,0.536881,0.336907,0.761751,0.166271,0.327508,0.492922,0.21006,0.379459,0.381847,0.826243,0.432484,0.199848,0.73672,0.980313,0.294559,0.97739,0.178469,0.576617,0.314821,0.0461673,0.974779,0.695644,0.15216,0.34946,0.177048,0.153881,0.0415795,0.157998,0.539003,0.345976,0.727034,0.032365,0.180557,0.109101,0.975661,0.615866,0.520657,0.545226,0.893538,0.0994093,0.422853,0.664067,0.757167,0.984789,0.212927,0.185482,0.0758023,0.0349143,0.244019,0.434569,0.597234,0.367442,0.567132,0.897917,0.803023,0.487577,0.317079,0.999575,0.417739,0.903098,0.193103,0.192124,0.916004,0.611049,0.421163,0.411129,0.444851,0.671127,0.237253,0.469575,0.583421,0.850104,0.177587,0.403697,0.301659,0.163898,0.0892934,0.961829,0.973081,0.54771,0.725755,0.145648,0.929828,0.377073,0.571849,0.469918,0.493412,0.69883,0.928519,0.131797,0.412393,0.376571,0.247968,0.833537,0.0417872,0.645855,0.829183,0.248924,0.723935,0.38629,|0.364851,0.395603,0.554988,0.55802,0.25205,0.698882,0.744828,0.441094,0.417401,0.229623,0.706744,0.320896,0.342042,0.395887,0.649047,0.0997795,0.406962,0.519059,0.926168,0.0256298,0.427959,0.636261,0.684844,0.855361,0.435945,0.469751,0.813827,0.915957,0.283068,0.805356,0.0371902,0.338653,0.0636511,0.870299,0.293813,0.509029,0.657916,0.502713,0.642954,0.263635,0.705817,0.484242,0.581564,0.663871,0.0292423,0.732308,0.671517,0.419638,0.258639,0.503651,0.0634523,0.0529953,0.142146,0.269438,0.630506,0.283156,0.706321,0.178428,0.501967,0.337242,0.797479,0.206213,0.355921,0.795002,0.223915,0.84959,0.711918,0.632316,0.683259,0.203279,0.359471,0.461718,0.843672,0.0990018,0.184862,0.544384,0.41626,0.0460367,0.978722,0.388239,0.824372,0.33387,0.227195,0.728006,0.0528142,0.0290469,0.962687,0.936014,0.562849,0.605965,0.165143,0.430848,0.427142,0.15364,0.0884123,0.930765,0.570143,0.462817,0.560826,0.039282,0.64735,0.767784,0.370184,0.726859,0.529615,0.234761,0.567534,0.715555,0.132453,0.819815,0.0988227,0.50926,0.471715,0.683236,0.230629,0.0795565,0.140904,0.138577,0.728672,0.479178,0.332468,0.0311189,0.477674,0.501421,0.88969,0.303772,0.628121,0.181218,0.56228,0.0729389,0.329706,0.620347,0.522958,0.165111,0.634581,0.600031,0.205859,0.160722,0.655205,0.158985,0.631777,0.0061717,0.851747,0.79771,0.675992,0.245981,0.709498,0.66353,0.997229,0.200378,0.881654,0.525399,0.264067,0.434402,0.447883,0.311472,0.0932885,0.23228,0.663723,0.596012,0.217884,0.660763,0.432879,0.660483,0.775309,0.390658,0.630338,0.314955,0.407751,0.823683,0.901516,0.132612,0.584588,0.124812,0.0930811,0.310932,0.814162,0.399012,0.50138,0.171316,0.980926,0.333882,0.0824718,0.68742,0.453309,0.709309,0.924899,0.769538,0.0851273,0.514265,0.315213,0.491896,0.198661,0.138867,0.690347,0.530021,0.97748,0.689564,0.355483,0.189125,0.0769256,0.581469,0.477116,0.902252,0.0646713,0.916053,0.879252,0.00655186,0.0119513,0.727874,0.854494,0.0351366,0.410559,0.908709,0.202165,0.0517699,0.613768,0.829925,0.279518,0.573143,0.00862825,0.638827,0.273694,0.369296,0.0380072,0.836006,0.269783,0.114739,0.40994,0.0582412,0.329268,0.477327,0.2653,0.902482,0.375251,0.891229,0.482217,0.927211,0.0344859,0.654554,0.139816,0.180979,0.00878054,0.440794,0.0201858,0.409888,0.42327,0.412951,0.19651,0.152134,0.936936,0.998252,0.0382811,0.263862,0.514677,0.798857,0.0207648,0.655156,0.324373,0.61361,0.666856,0.92758,0.0217642,0.95848,0.657032,0.81418,0.0279363,0.0343451,0.631642,0.0389353,0.424875,0.6223,0.583401,0.582159,0.26761,0.0894905,0.782696,0.0856847,0.515951,0.158667,0.0541072,0.714982,0.556891,0.96423,0.147912,0.673399,0.334231,0.169275,0.878803,0.843792,0.541824,0.709257,0.323912,0.287091,0.393669,0.921986,0.321201,0.263312,0.413552,0.848921,0.829405,0.696881,0.013513,0.0901024,0.762335,0.54869,0.539529,0.492847,0.895997,0.817335,0.0840858,0.890431,0.900398,0.945001,0.969298,0.165142,0.61877,0.68967,0.618959,0.791179,0.570727,0.569244,0.00203103,0.639079,0.595707,0.45872,0.204395,0.297043,0.558557,0.747384,0.393531,0.266141,0.37171,0.774366,0.237399,0.118214,0.437766,0.165323,0.110172,0.161524,0.203837,0.760363,0.713171,0.892353,0.189608,0.690487,0.493135,0.0368395,0.869834,0.638761,0.307794,0.632817,0.860818,0.76601,0.0502385,0.452354,0.571856,0.578165,0.953149,0.901656,0.931413,0.108279,0.52702,0.46597,0.717107,0.948289,0.5576,0.248069,0.551382,0.767948,0.572436,0.599922,0.907318,9.57251e-05,0.27762,0.369421,0.886945,0.853791,0.595349,0.890519,0.475399,0.479991,0.0910757,0.372969,0.801213,0.938168,0.535924,0.134859,0.168161,0.295824,0.822261,0.375831,0.0621495,0.447657,0.112748,0.14698,0.601247,0.2474,0.214594,0.15213,0.31374,0.646038,0.82358,0.207794,0.743776,0.24877,0.993999,0.60789,0.160573,0.595639,0.403886,0.0133818,0.951249,0.18815,0.576777,0.399742,0.197082,0.857354,0.664588,0.0439502,0.163548,0.339804,0.98153,0.0424374,0.762001,0.208243,0.208593,0.559811,0.701936,0.0607604,0.641514,0.0207724,0.444361,0.763102,0.0102266,0.366773,0.54895,0.47869,0.346535,0.552139,0.114819,0.796013,0.503049,0.896377,0.245486,0.00860745,0.4806,0.94027,0.530938,0.16992,0.711723,0.696087,0.616771,0.202079,0.133652,0.616711,0.269292,0.911651,0.32498,0.764456,0.66031,0.108956,0.299928,0.573874,0.877481,0.517017,0.85516,0.252202,0.683751,0.639442,0.352626,0.0817841,0.769267,0.853108,0.521616,0.58949,0.387303,0.67192,0.51725,0.689544,0.971985,0.42013,0.762215,0.95472,0.57246,0.807773,0.853463,0.755397,0.845347,0.436538,0.838,0.90108,0.0355794,0.0735231,0.324693,0.988631,0.410299,0.917703,0.501647,0.0453,0.232039,0.589971,0.440695,0.407144,0.824494,0.0991962,0.0471308,0.6673,0.482287,0.0519201,0.245592,0.229479,0.0267594,0.384327,0.877739,0.0661504,0.783883,0.866827,0.31075,0.938762,0.833683,0.67202,0.632711,0.814174,0.440116,0.720304,0.964092,0.801144,0.230821,0.359253,0.320882,0.0915247,0.432964,0.0255,0.356178,0.888333,0.289453,0.930959,0.581846,0.0960157,0.192527,0.666663,0.0626761,0.129503,0.499022,0.170725,0.797932,0.0300495,0.431424,0.171816,0.814542,0.0834891,0.0821999,0.0860293,0.145325,0.937915,0.0240184,0.477037,0.836239,0.365281,0.624906,0.72433,0.535995,0.681528,0.436647,0.337888,0.0852076,0.741445,0.258417,0.866895,0.864294,0.877795,0.703449,0.0239388,0.0810488,0.288438,0.730781,0.0731909,0.359975,0.945215,0.105954,0.741495,0.705142,0.516275,0.373931,0.0916182,0.410715,0.854184,0.351389,0.560548,0.304262,0.819226,0.297331,0.25962,0.691799,0.29447,0.575116,0.477383,0.32157,0.0111918,0.978803,0.85293,0.495539,0.473917,0.750292,0.541902,0.23598,0.211238,0.481508,0.804748,0.882121,0.879899,0.145655,0.16162,0.109709,0.601519,0.382736,0.977432,0.0733508,0.291842,0.548452,0.455886,0.102746,0.846933,0.747501,0.682136,0.87375,0.0137857,0.431037,0.896839,0.503716,0.631477,0.976077,0.151407,0.196644,0.494629,0.0805962,0.594662,0.982625,0.586378,0.248356,0.775599,0.63681,0.926557,0.485949,0.162476,0.258142,0.243393,0.954646,0.827326,0.661967,0.371279,0.0560936,0.600342,0.890538,0.0526935,0.751795,0.431373,0.478613,0.126794,0.635528,0.187637,0.888258,0.340715,0.402089,0.867416,0.75986,0.754135,0.528662,0.758467,0.172827,0.42976,0.156104,0.0406479,0.873263,0.166819,0.225473,0.510651,0.581734,0.426462,0.0770315,0.820917,0.234818,0.790604,0.18475,0.192824,0.182636,0.665003,0.187228,0.845945,0.155993,0.476903,0.299928,0.662545,0.0812817,0.594519,0.042292,0.646557,0.35856,0.556031,0.546801,0.977476,0.941966,0.0411816,0.463447,0.0280013,0.0560228,0.246299,0.0903065,0.74824,0.599237,0.258523,0.21194,0.326203,0.407444,0.0272888,0.356348,0.0951322,0.590336,0.629464,0.941759,0.115685,0.804566,0.0280942,0.905002,0.951691,0.892399,0.629552,0.433331,0.270929,0.563959,0.0567837,0.795814,0.736888,0.249937,0.0358638,0.478392,0.282427,0.343245,0.26699,0.294275,0.568978,0.0404773,0.468535,0.112296,0.985553,0.97559,0.824273,0.382933,0.629134,0.219116,0.144641,0.621043,0.332554,0.325594,0.454712,0.0736341,0.338868,0.183108,0.991444,0.512733,0.470974,0.559714,0.591853,0.883092,0.0853329,0.915564,0.827313,0.173181,0.169156,0.305685,0.486533,0.491368,0.782635,0.366283,0.136909,0.39672,0.594258,0.438918,0.780004,0.0903426,0.37796,0.837578,0.0536622,0.580245,0.103738,0.744928,0.34374,0.237885,0.787667,0.253838,0.689837,0.86682,0.499959,0.808685,0.203036,0.567427,0.345448,0.34363,0.459868,0.805934,0.798985,0.589224,0.680676,0.285506,0.0725402,0.00296015,0.550803,0.912981,0.313853,0.877462,0.409375,0.491203,0.137477,0.199617,0.755617,0.669544,0.11188,0.566504,0.437736,0.221265,0.964641,0.507061,0.259211,0.108296,0.74211,0.133295,0.864274,0.146714,0.851845,0.11832,0.57772,0.284756,0.878387,0.250765,0.268173,0.244047,0.945738,0.0667722,0.294734,0.76008,0.984539,0.0426511,0.694338,0.949345,0.953435,0.22406,0.118743,0.194647,0.500054,0.763776,0.994565,0.632937,0.197686,0.622296,0.168528,0.551045,0.196001,0.676303,0.643511,0.0597216,0.196054,0.244317,0.0713417,0.690924,0.977762,0.481993,0.0795388,0.606028,0.13279,0.786693,0.203636,0.863071,0.448835,0.00553805,0.878055,0.456397,0.871104,0.877701,0.398935,0.506807,0.23855,0.995719,0.643894,0.987575,0.639079,0.4047,0.181214,0.13159,0.867921,0.11966,0.785456,0.0364431,0.393809,0.142006,0.334902,0.92867,0.511782,0.931638,0.479393,0.486227,0.814081,0.435645,0.439462,0.537899,0.158191,0.631915,0.751031,0.220483,0.525967,0.00624651,0.27324,0.936881,0.862968,0.885148,0.197691,0.0759348,0.739706,0.56669,0.347639,0.254612,0.630292,0.944368,0.590587,0.39275,0.00984526,0.722939,0.426332,0.697973,0.463676,0.372565,0.763735,0.732664,0.807488,0.0794892,0.0945395,0.453093,0.84508,0.316936,0.845578,0.0804614,0.400722,0.192209,0.207136,0.57469,0.356035,0.0748503,0.615339,0.0243188,0.8278,0.586765,0.805854,0.899594,0.0463108,0.903716,0.972054,0.0802962,0.709564,0.468325,0.76656,0.449049,0.166847,0.0407866,0.351312,0.141567,0.934033,0.155249,0.72964,0.071015,0.562513,0.240997,0.0839496,0.170666,0.421199,0.915045,0.194439,0.671049,0.238872,0.849067,0.679528,0.254967,0.908058,0.615967,0.170237,0.265261,0.872095,0.238252,0.586265,0.748174,0.0720652,0.239089,0.840481,0.85233,0.850238,0.570786,0.148506,0.275034,0.867348,0.89068,0.231619,|0.570461,0.430935,0.125888,0.402318,0.989838,0.739295,0.998062,0.434687,0.857991,0.857661,0.965196,0.967301,0.189312,0.645292,0.953881,0.332493,0.253305,0.928518,0.842569,0.14352,0.0107575,0.100782,0.1431,0.575155,0.705534,0.754745,0.701363,0.432097,0.790568,0.107814,0.186702,0.558143,0.757267,0.603861,0.431912,0.740211,0.874037,0.335093,0.0372173,0.928719,0.59906,0.633111,0.85525,0.628741,0.644941,0.470577,0.711149,0.774954,0.713819,0.521234,0.722967,0.838589,0.209911,0.195485,0.133085,0.892685,0.306755,0.802027,0.563073,0.901746,0.69555,0.290921,0.426129,0.770845,0.751425,0.033962,0.498288,0.99679,0.537374,0.647803,0.37935,0.983814,0.236317,0.483944,0.884517,0.427202,0.482809,0.630344,0.746082,0.649707,0.590848,0.596704,0.222598,0.254335,0.0622669,0.650585,0.137011,0.9898,0.416876,0.652207,0.601331,0.369481,0.258565,0.650823,0.611081,0.988315,0.109942,0.798767,0.955822,0.773511,0.216292,0.485761,0.823623,0.189751,0.424706,0.920837,0.618533,0.441051,0.150065,0.92064,0.685098,0.608681,0.0752633,0.372936,0.119469,0.817614,0.879958,0.723034,0.165248,0.082551,0.977629,0.922889,0.905879,0.567167,0.631864,0.902342,0.487539,0.0239921,0.718599,0.865058,0.327159,0.983447,0.587091,0.580234,0.905076,0.915014,0.459348,0.0515552,0.320656,0.549295,0.973675,0.615813,0.5432,0.435361,0.493047,0.207309,0.707697,0.326961,0.430015,0.0370317,0.201277,0.891787,0.423253,0.484336,0.810635,0.410211,0.707238,0.578019,0.226962,0.862859,0.460608,0.550125,0.843527,0.288271,0.978298,0.114753,0.134512,0.926506,0.616773,0.504504,0.215105,0.00705367,0.171861,0.294856,0.625048,0.591976,0.686005,0.744643,0.460663,0.782296,0.796409,0.750855,0.0747652,0.929273,0.355174,0.898821,0.094581,0.254251,0.700296,0.734748,0.911333,0.434758,0.0309699,0.609176,0.10145,0.836074,0.691871,0.676026,0.0109526,0.0657331,0.00981575,0.0459657,0.172154,0.365862,0.340943,0.205948,0.799054,0.120652,0.123856,0.665896,0.61465,0.241289,0.96612,0.282557,0.224403,0.39766,0.220194,0.524788,0.22849,0.767517,0.970209,0.944004,0.538277,0.0031805,0.975318,0.965133,0.997069,0.488838,0.518276,0.812736,0.672041,0.514057,0.0843952,0.146087,0.321618,0.310546,0.781903,0.283074,0.25751,0.560694,0.663622,0.997931,0.935483,0.390774,0.926393,0.405581,0.750969,0.235737,0.128285,0.17017,0.582423,0.744589,0.503982,0.870263,0.157356,0.942589,0.405915,0.806956,0.356989,0.652609,0.0381193,0.549642,0.777508,0.201473,0.756109,0.556114,0.0199627,0.104989,0.656737,0.525722,0.124526,0.143752,0.974205,0.838298,0.14129,0.239425,0.359141,0.249626,0.69281,0.893058,0.603892,0.449683,0.267269,0.900573,0.467267,0.0114713,0.83794,0.700294,0.362143,0.85871,0.622977,0.440579,0.40645,0.114804,0.125878,0.425918,0.832664,0.519353,0.618885,0.258606,0.949944,0.656792,0.757605,0.883583,0.744594,0.528884,0.706088,0.233665,0.156068,0.213164,0.149199,0.498394,0.0901589,0.530134,0.515431,0.0191718,0.805416,0.581993,0.894799,0.210492,0.647172,0.590886,0.0650428,0.602042,0.652734,0.237502,0.221229,0.792047,0.427904,0.114468,0.343777,0.304171,0.928064,0.94361,0.924163,0.367876,0.746772,0.361706,0.793617,0.798127,0.252366,0.420556,0.349115,0.960251,0.976706,0.445605,0.82937,0.0789996,0.825506,0.956896,0.533029,0.734818,0.270066,0.449961,0.0611531,0.617553,0.380867,0.508606,0.172957,0.838221,0.174264,0.895987,0.0330073,0.28134,0.576885,0.887629,0.893318,0.893981,0.444195,0.299827,0.470294,0.677118,0.659024,0.874673,0.426933,0.302366,0.885854,0.771973,0.838313,0.216397,0.412773,0.843662,0.0735403,0.352876,0.300295,0.302128,0.0949027,0.811347,0.982981,0.757138,0.951753,0.961148,0.287279,0.150982,0.187833,0.422213,0.513376,0.844297,0.329092,0.275675,0.653691,0.987768,0.613358,0.992377,0.155377,0.43075,0.665448,0.274355,0.966409,0.161079,0.892209,0.606989,0.0353397,0.971145,0.385928,0.572828,0.589902,0.555096,0.812033,0.512563,0.0678465,0.253903,0.825782,0.582363,0.928095,0.777634,0.44025,0.981712,0.0972057,0.404862,0.626486,0.538927,0.407159,0.627829,0.345507,0.817373,0.61393,0.774077,0.166298,0.0909631,0.481089,0.361245,0.64565,0.384907,0.990317,0.667318,0.837863,0.70424,0.579207,0.723648,0.071609,0.570829,0.666678,0.442581,0.63337,0.299756,0.933624,0.325838,0.407058,0.935682,0.653259,0.88904,0.559183,0.989718,0.78158,0.954744,0.715259,0.379934,0.241873,0.964888,0.855842,0.326688,0.0646057,0.708975,0.045426,0.46264,0.930684,0.424999,0.98134,0.804538,0.332654,0.906581,0.593917,0.893159,0.95577,0.522371,0.024217,0.867627,0.109062,0.88322,0.25063,0.135117,0.811297,0.144496,0.271404,0.890786,0.534307,0.215647,0.265233,0.816069,0.593049,0.773493,0.880924,0.219307,0.865994,0.673388,0.595877,0.523795,0.201146,0.95557,0.144157,0.3682,0.89468,0.113903,0.580622,0.343641,0.866823,0.234623,0.373236,0.124641,0.435952,0.540557,0.203745,0.719567,0.240272,0.369366,0.542999,0.52131,0.599882,0.875346,0.721288,0.349933,0.587107,0.696122,0.269,0.566194,0.073558,0.821417,0.791494,0.0484072,0.439313,0.256001,0.283187,0.0257465,0.880992,0.239252,0.874518,0.321514,0.503357,0.932086,0.0459488,0.489401,0.119976,0.917792,0.881084,0.929832,0.366572,0.250595,0.210141,0.6746,0.058479,0.93936,0.643136,0.798924,0.696613,0.877473,0.398484,0.821119,0.388888,0.000436246,0.407315,0.219354,0.408157,0.474168,0.0895514,0.264706,0.835185,0.241733,0.966904,0.0639248,0.532107,0.259845,0.368556,0.397918,0.695734,0.787471,0.112977,0.1208,0.635614,0.345004,0.445576,0.208051,0.271656,0.63255,0.248171,0.223055,0.893939,0.893321,0.919679,0.459632,0.360425,0.847527,0.47024,0.512682,0.61657,0.665584,0.445032,0.674834,0.915121,0.189976,0.551421,0.479838,0.10637,0.714373,0.136704,0.588448,0.73463,0.0818442,0.736618,0.625896,0.686429,0.458204,0.663172,0.158918,0.0892603,0.443822,0.414311,0.550698,0.240877,0.123189,0.982574,0.494069,0.688933,0.606826,0.637478,0.559818,0.018515,0.765256,0.706803,0.862547,0.0466223,0.28872,0.771698,0.28175,0.645166,0.536296,0.0752959,0.669901,0.999781,0.0955487,0.837217,0.262385,0.889366,0.653893,0.225327,0.807429,0.0278779,0.233456,0.137753,0.0157101,0.388062,0.0779436,0.263207,0.862897,0.274917,0.557787,0.368832,0.463275,0.22949,0.468605,0.827045,0.191653,0.762127,0.480672,0.88538,0.521561,0.623885,0.697017,0.507877,0.231518,0.586992,0.678889,0.678878,0.342942,0.0727046,0.369393,0.178925,0.150293,0.946705,0.911101,0.190525,0.877983,0.11206,0.804216,0.950725,0.872757,0.456722,0.165859,0.905557,0.63463,0.718074,0.322107,0.453968,0.748466,0.868887,0.371968,0.645695,0.682743,0.862786,0.932026,0.145632,0.0107799,0.163442,0.254007,0.968056,0.572852,0.487868,0.622243,0.78011,0.844579,0.247998,0.014771,0.471877,0.827551,0.152374,0.562456,0.875758,0.133848,0.769397,0.912049,0.986805,0.0961475,0.593633,0.189612,0.560454,0.71688,0.51738,0.371575,0.419121,0.782353,0.98519,0.694413,0.985412,0.932716,0.692527,0.926027,0.700367,0.191537,0.326027,0.118623,0.120242,0.180829,0.409302,0.0839034,0.851648,0.717776,0.240502,0.00377756,0.251197,0.684893,0.867656,0.386028,0.7783,0.746205,0.640707,0.0593871,0.261313,0.0477086,0.0790055,0.384844,0.935243,0.704069,0.0534614,0.493995,0.686091,0.946544,0.492773,0.11372,0.998541,0.711438,0.467702,0.334515,0.952956,0.49039,0.879966,0.101356,0.902333,0.652185,0.0739336,0.901406,0.980281,0.142569,0.908966,0.642917,0.672312,0.688992,0.265822,0.845454,0.191436,0.0815404,0.733818,0.141077,0.0525244,0.141275,0.320761,0.117049,0.581048,0.92337,0.304684,0.628497,0.540692,0.735678,0.143825,0.627002,0.664622,0.240348,0.401509,0.996047,0.25034,0.985615,0.292093,0.519855,0.832234,0.439925,0.762541,0.879015,0.484858,0.0231167,0.0440462,0.404282,0.230112,0.244424,0.932817,0.873963,0.353608,0.333908,0.864031,0.989768,0.569393,0.372739,0.902641,0.467179,0.437137,0.76926,0.862026,0.0621123,0.351635,0.852984,0.939427,0.252746,0.251451,0.706763,0.112881,0.929978,0.43746,0.908734,0.352364,0.30546,0.497068,0.566383,0.452989,0.433051,0.981247,0.423524,0.996973,0.255222,0.652474,0.0992255,0.615818,0.17519,0.76364,0.731073,0.652937,0.496217,0.0696787,0.643931,0.762244,0.595846,0.382643,0.816824,0.780491,0.142144,0.481454,0.824997,0.284973,0.219454,0.718564,0.961134,0.355657,0.136522,0.200145,0.216611,0.436572,0.910441,0.176708,0.912135,0.214688,0.278353,0.291346,0.775923,0.474528,0.648321,0.901841,0.428255,0.473147,0.208765,0.185491,0.86018,0.627393,0.917832,0.0550544,0.359757,0.3868,0.422442,0.469971,0.851987,0.299449,0.581414,0.614166,0.704563,0.183007,0.527935,0.137096,0.933433,0.146433,0.00887448,0.25662,0.461459,0.702469,0.662507,0.94533,0.0574327,0.00987589,0.765831,0.977769,0.24779,0.565632,0.16017,0.777757,0.0364414,0.755597,0.329601,0.709736,0.518262,0.914696,0.407388,0.69604,0.74557,0.274882,0.173723,0.33668,0.368883,0.83359,0.724784,0.456092,0.932502,0.712057,0.00913888,0.951589,0.416383,0.128017,0.0218723,0.0369238,0.437187,0.616851,0.96252,0.613444,0.333867,0.92794,0.0575209,0.123229,0.725438,0.626923,0.274249,0.941704,0.082303,0.803825,0.828508,0.225154,0.913573,0.569332,0.456482,0.15764,0.0397043,0.757922,0.740983,0.72694,0.0470608,0.969246,0.173444,0.592633,0.973658,0.483098,0.00721419,0.986478,0.767465,0.395968,0.502934,0.718822,0.768644,|0.120063,0.761868,0.689441,0.645389,0.975984,0.424855,0.302493,0.349299,0.586337,0.428319,0.6983,0.105463,0.871389,0.311279,0.971402,0.597317,0.154002,0.128971,0.23261,0.435222,0.744322,0.0451196,0.331919,0.953089,0.998107,0.893183,0.994635,0.610165,0.00445974,0.697943,0.130304,0.492769,0.047183,0.423954,0.868406,0.154699,0.471494,0.626537,0.387753,0.318881,0.27629,0.0391517,0.407037,0.864874,0.558393,0.263203,0.786691,0.236004,0.59083,0.80142,0.431529,0.433477,0.222912,0.324692,0.177782,0.330799,0.396506,0.368483,0.487674,0.092687,0.302775,0.102991,0.666533,0.806988,0.730519,0.580716,0.0173107,0.758571,0.924579,0.316898,0.0879873,0.252284,0.293285,0.212689,0.0554036,0.690918,0.332304,0.452495,0.983483,0.930064,0.832648,0.227452,0.00428843,0.328739,0.225543,0.841914,0.325435,0.12952,0.836268,0.768117,0.578433,0.412679,0.658619,0.97977,0.897741,0.988987,0.614699,0.842811,0.095543,0.277032,0.997967,0.998292,0.830012,0.107572,0.941465,0.345675,0.933518,0.812526,0.842767,0.77174,0.896472,0.149728,0.340271,0.262061,0.138032,0.178274,0.478873,0.0481011,0.721187,0.730626,0.283555,0.149482,0.326932,0.783224,0.315201,0.563325,0.146033,0.88183,0.0481699,0.932595,0.977773,0.148477,0.794466,0.448484,0.125613,0.0953439,0.767469,0.0657887,0.518505,0.554248,0.948516,0.605011,0.581318,0.502659,0.919797,0.285488,0.537203,0.365059,0.656391,0.585984,0.764496,0.467696,0.0713282,0.910564,0.260459,0.680876,0.686466,0.0255359,0.512621,0.215533,0.219405,0.74913,0.376688,0.368677,0.211519,0.556461,0.863471,0.329518,0.3304,0.178297,0.1982,0.0288369,0.0654695,0.106517,0.709832,0.354452,0.820985,0.758725,0.801707,0.899235,0.448417,0.459018,0.733114,0.19622,0.801717,0.336518,0.882736,0.128556,0.0829216,0.267603,0.848233,0.145161,0.391435,0.601485,0.240753,0.741863,0.262007,0.160213,0.773888,0.688276,0.211234,0.278296,0.0696955,0.525192,0.853422,0.506606,0.775643,0.215683,0.599011,0.551723,0.168268,0.444707,0.50298,0.369331,0.139235,0.2939,0.74273,0.0395435,0.91068,0.294202,0.914655,0.591111,0.773155,0.446485,0.514863,0.116409,0.946569,0.420449,0.949445,0.338553,0.116514,0.454383,0.397882,0.393019,0.686223,0.202442,0.0592219,0.220195,0.0973421,0.35854,0.307429,0.598404,0.098132,0.380812,0.604271,0.139625,0.975829,0.549185,0.630258,0.994488,0.474498,0.311646,0.543333,0.759048,0.564893,0.268403,0.451774,0.749659,0.0109855,0.357927,0.598603,0.544403,0.649178,0.1885,0.76378,0.584898,0.983241,0.239058,0.792841,0.058232,0.755024,0.42307,0.490423,0.103158,0.476684,0.508815,0.681415,0.222407,0.365782,0.988281,0.0655748,0.598685,0.757428,0.207174,0.877631,0.630846,0.668292,0.0192903,0.580856,0.507645,0.538159,0.0357794,0.817125,0.0270044,0.625029,0.524462,0.672061,0.420934,0.562077,0.621964,0.613315,0.540074,0.490649,0.270387,0.796038,0.335065,0.881796,0.277899,0.960252,0.817868,0.132169,0.0781668,0.972209,0.344188,0.982847,0.242132,0.977698,0.778858,0.179173,0.683333,0.714631,0.110534,0.747172,0.221153,0.20545,0.105873,0.788047,0.83719,0.787374,0.969467,0.90419,0.254372,0.670565,0.67456,0.130742,0.34367,0.467042,0.00908983,0.244658,0.985611,0.75053,0.138398,0.35094,0.489749,0.726038,0.0848208,0.619521,0.208934,0.215668,0.510207,0.778512,0.378929,0.0228422,0.639192,0.856648,0.161045,0.722069,0.200917,0.569753,0.728096,0.72952,0.544454,0.128798,0.270866,0.0104844,0.682547,0.0346037,0.704733,0.778295,0.927242,0.798013,0.157847,0.181725,0.833063,0.434533,0.304693,0.4691,0.733528,0.864762,0.303911,0.618402,0.303164,0.580716,0.899761,0.363303,0.94727,0.177366,0.711677,0.0136258,0.748951,0.775695,0.265515,0.643644,0.0432855,0.922399,0.0614897,0.955695,0.168748,0.406236,0.622497,0.365436,0.394236,0.943371,0.791466,0.685808,0.846741,0.635989,0.129613,0.535013,0.360063,0.679994,0.629971,0.00456613,0.662427,0.359231,0.469164,0.595425,0.924309,0.22906,0.507982,0.641353,0.535193,0.109763,0.288114,0.0898603,0.497361,0.10437,0.19246,0.562019,0.0845366,0.190429,0.144561,0.474857,0.971208,0.882126,0.391086,0.0236183,0.421733,0.518565,0.522983,0.237701,0.350514,0.76968,0.446687,0.496832,0.561617,0.396848,0.738032,0.28926,0.162759,0.589613,0.598399,0.854447,0.127619,0.370405,0.367307,0.779913,0.468157,0.17597,0.696359,0.399049,0.266595,0.253044,0.385747,0.53514,0.171619,0.927953,0.837327,0.969084,0.366395,0.470079,0.74114,0.833203,0.798601,0.381584,0.369559,0.150867,0.210091,0.934508,0.643274,0.860113,0.104684,0.421785,0.613477,0.658483,0.755532,0.886996,0.57631,0.021196,0.937069,0.231155,0.272107,0.0542864,0.0408143,0.743193,0.941971,0.874896,0.502276,0.393689,0.181688,0.977021,0.28979,0.0941392,0.346422,0.971366,0.447435,0.853563,0.63309,0.519927,0.429802,0.04176,0.396112,0.823121,0.128671,0.490316,0.364332,0.671692,0.268516,0.2006,0.431026,0.501912,0.231986,0.837882,0.176419,0.396344,0.183594,0.670848,0.44635,0.778999,0.345135,0.829807,0.759278,0.355663,0.925061,0.80796,0.107617,0.377421,0.91742,0.63366,0.512136,0.547168,0.987823,0.504288,0.229363,0.481154,0.521371,0.601806,0.972721,0.771887,0.353498,0.728837,0.724451,0.0426016,0.916699,0.0604315,0.960316,0.616647,0.119874,0.879266,0.281552,0.0415592,0.573597,0.166984,0.337443,0.75265,0.468875,0.874775,0.913277,0.272495,0.165495,0.357768,0.712328,0.13509,0.322622,0.520812,0.251998,0.614476,0.823991,0.85748,0.972081,0.198799,0.477614,0.761889,0.631646,0.107354,0.226124,0.0479258,0.967683,0.732747,0.255101,0.114418,0.258137,0.897079,0.77127,0.702373,0.432685,0.384447,0.624769,0.493226,0.497639,0.191348,0.53456,0.00385123,0.0570704,0.402514,0.829976,0.242899,0.820922,0.519787,0.758005,0.29585,0.366697,0.914817,0.724997,0.298624,0.54129,0.683653,0.977864,0.541862,0.877664,0.231402,0.0741109,0.635032,0.934492,0.858932,0.325829,0.507908,0.925484,0.836843,0.811389,0.761145,0.00860065,0.640468,0.551522,0.8708,0.792315,0.369748,0.645584,0.0646976,0.127054,0.362751,0.517598,0.712465,0.814366,0.238649,0.771385,0.299099,0.577057,0.641031,0.38301,0.828495,0.174462,0.608079,0.0947971,0.185768,0.422549,0.0328041,0.877371,0.0350009,0.0846985,0.553207,0.0420294,0.454293,0.507167,0.213942,0.66911,0.91978,0.791064,0.660403,0.061322,0.611955,0.0579045,0.581299,0.6023,0.0979883,0.667648,0.984865,0.137243,0.497957,0.152839,0.533513,0.646812,0.00193632,0.108195,0.0879196,0.2537,0.926542,0.388181,0.492106,0.509093,0.144289,0.696037,0.307311,0.0752773,0.40835,0.758111,0.150616,0.177344,0.480529,0.171724,0.214103,0.133542,0.900232,0.584124,0.332261,0.0962792,0.971668,0.561889,0.104826,0.382471,0.000108838,0.0387586,0.126536,0.769672,0.775555,0.23702,0.547052,0.490447,0.285369,0.801531,0.307995,0.593599,0.999657,0.0719753,0.860683,0.379842,0.574955,0.223514,0.687714,0.553288,0.265365,0.0225046,0.68589,0.744625,0.253621,0.86277,0.153951,0.657128,0.293288,0.48877,0.145574,0.696079,0.573739,0.466126,0.650139,0.340464,0.916025,0.23164,0.113918,0.762683,0.496462,0.721142,0.779169,0.942133,0.986151,0.315509,0.446455,0.791169,0.119924,0.281504,0.386929,0.410612,0.281878,0.275321,0.215193,0.133741,0.138209,0.240314,0.630497,0.186557,0.834489,0.967275,0.236196,0.136579,0.413743,0.11599,0.895577,0.661095,0.0971456,0.483032,0.718553,0.147275,0.707482,0.821084,0.803129,0.167994,0.104116,0.583556,0.278974,0.983426,0.192977,0.513976,0.607701,0.0904984,0.908476,0.47682,0.549829,0.0996897,0.446283,0.350742,0.0810723,0.426299,0.372903,0.371826,0.900539,0.217478,0.598918,0.952523,0.736317,0.942061,0.238363,0.560772,0.698726,0.789712,0.0374904,0.745409,0.750088,0.319325,0.458362,0.149386,0.428962,0.359988,0.358829,0.446889,0.150506,0.379046,0.00519186,0.397202,0.44193,0.855667,0.36873,0.272299,0.16287,0.417884,0.375786,0.948522,0.0552422,0.899447,0.0296994,0.130989,0.082044,0.570785,0.100362,0.414481,0.0656393,0.374005,0.607746,0.850592,0.234635,0.854255,0.191385,0.529155,0.986024,0.987092,0.705937,0.952149,0.0767866,0.828493,0.577378,0.722965,0.479631,0.945985,0.965106,0.904076,0.505652,0.698395,0.226152,0.294449,0.764163,0.46221,0.260235,0.51708,0.438844,0.139936,0.146824,0.417798,0.0713496,0.481594,0.405923,0.0762236,0.310732,0.896771,0.0438976,0.520149,0.350973,0.161086,0.533278,0.557102,0.0987238,0.255019,0.960364,0.478526,0.700788,0.77796,0.909258,0.97572,0.152551,0.9994,0.292004,0.837327,0.991532,0.757168,0.180244,0.622484,0.541151,0.132941,0.473372,0.191303,0.451034,0.442291,0.399972,0.829086,0.986808,0.307326,0.763423,0.566017,0.85505,0.0171751,0.367976,0.946636,0.243368,0.962134,0.00185192,0.375694,0.93328,0.826845,0.609418,0.238621,0.35995,0.237387,0.901258,0.821564,0.787071,0.523327,0.982717,0.460575,0.298335,0.659038,0.148613,0.337924,0.476782,0.116635,0.244224,0.623128,0.98682,0.0185775,0.736274,0.950697,0.738573,0.960201,0.222222,0.887398,0.335813,0.34933,0.842035,0.38624,0.166144,0.504346,0.255141,0.405993,0.975861,0.17812,0.79149,0.114664,0.189505,0.539072,0.197488,0.710138,0.262403,0.972415,0.941888,0.794793,0.0398073,0.516401,0.0629485,0.505226,0.498558,0.513022,0.913921,0.920123,0.473417,0.33425,0.0766935,0.422883,0.0451297,0.878201,0.919758,0.198995,0.728663,0.831843,0.313888,0.699941,0.269413,0.58672,0.551324,0.0121558,0.428885,0.687382,0.649028,0.149228,|0.239789,0.502491,0.569593,0.364601,0.202202,0.685631,0.42535,0.098794,0.348918,0.441505,0.813121,0.86457,0.480012,0.622264,0.293872,0.142821,0.8793,0.657161,0.215616,0.257298,0.067916,0.449219,0.566575,0.893504,0.581233,0.300613,0.756001,0.857316,0.145264,0.409888,0.478723,0.432547,0.0842151,0.194968,0.130857,0.876259,0.378498,0.386446,0.525118,0.0736248,0.61759,0.544905,0.0773352,0.271883,0.680171,0.758582,0.0374286,0.96966,0.807662,0.248345,0.0486221,0.706769,0.753732,0.768314,0.404702,0.44811,0.370683,0.836491,0.911758,0.99711,0.538097,0.553104,0.326389,0.545555,0.727186,0.423027,0.128689,0.716798,0.822249,0.220179,0.652362,0.888418,0.879418,0.789684,0.100132,0.0669149,0.973624,0.658618,0.548756,0.483827,0.690219,0.691854,0.851615,0.621154,0.114359,0.588086,0.254471,0.303545,0.52745,0.786317,0.874779,0.310134,0.598894,0.729438,0.801761,0.794908,0.261024,0.835682,0.0416321,0.906132,0.85972,0.016761,0.370885,0.492441,0.459249,0.150773,0.0316301,0.701798,0.271729,0.269999,0.643647,0.698893,0.00501835,0.00673419,0.363275,0.312789,0.135954,0.684753,0.426574,0.253808,0.38798,0.901588,0.874544,0.222372,0.150132,0.990985,0.708731,0.653477,0.349597,0.539441,0.559731,0.250638,0.295568,0.17902,0.445539,0.35415,0.914586,0.331939,0.407333,0.138879,0.511561,0.901108,0.0133764,0.291195,0.697685,0.736284,0.239579,0.455298,0.564675,0.38319,0.479106,0.736445,0.73724,0.364567,0.54008,0.599322,0.754697,0.792713,0.922118,0.752565,0.0650059,0.405447,0.790671,0.510047,0.579458,0.318808,0.744538,0.596937,0.975361,0.881347,0.118988,0.0508026,0.385198,0.653264,0.949662,0.16438,0.374236,0.928121,0.232649,0.160269,0.211878,0.471743,0.433553,0.00434083,0.412929,0.136215,0.0362682,0.926831,0.975791,0.836227,0.0377284,0.243741,0.401365,0.11863,0.715529,0.646253,0.393253,0.997991,0.9115,0.915338,0.406059,0.890969,0.385184,0.756646,0.165169,0.795766,0.904115,0.386915,0.833362,0.197614,0.726419,0.141552,0.936235,0.276618,0.862217,0.237926,0.899905,0.933025,0.0922474,0.560466,0.813776,0.720631,0.538903,0.443676,0.275409,0.456943,0.983608,0.561305,0.0897907,0.285374,0.524747,0.0830587,0.125872,0.607593,0.212475,0.471283,0.324545,0.818668,0.793225,0.835022,0.389717,0.91594,0.230868,0.749165,0.125942,0.100429,0.447757,0.0485116,0.387298,0.819348,0.43238,0.383696,0.122536,0.730063,0.848363,0.650985,0.487286,0.17595,0.658765,0.209686,0.945839,0.996869,0.892053,0.674974,0.811116,0.121065,0.853761,0.489667,0.85167,0.684235,0.124719,0.346463,0.70299,0.877225,0.613798,0.282079,0.821816,0.89799,0.619511,0.995638,0.664848,0.289924,0.509307,0.755862,0.064914,0.391852,0.573423,0.257613,0.0766272,0.781672,0.385425,0.432561,0.314286,0.489623,0.755208,0.720346,0.402895,0.256343,0.665622,0.776905,0.100228,0.240508,0.622316,0.574162,0.326729,0.179168,0.653279,0.268907,0.889174,0.876057,0.806036,0.74746,0.402116,0.753147,0.717761,0.489486,0.462947,0.283556,0.673715,0.978268,0.636609,0.00979298,0.479302,0.603601,0.605736,0.203177,0.791014,0.353883,0.141451,0.609392,0.792645,0.213707,0.0283464,0.93164,0.216154,0.993317,0.444858,0.676535,0.180353,0.80618,0.802798,0.130307,0.35119,0.301905,0.00052917,0.956919,0.186392,0.663434,0.516007,0.284371,0.950553,0.892102,0.835687,0.231983,0.0797091,0.17512,0.726366,0.900445,0.154471,0.653736,0.520048,0.0862976,0.215536,0.12329,0.526386,0.192885,0.284302,0.760552,0.244723,0.327963,0.641324,0.17988,0.713724,0.546428,0.692161,0.936565,0.533921,0.370651,0.907085,0.515765,0.160639,0.602853,0.0949507,0.40102,0.61208,0.530547,0.863848,0.775588,0.507852,0.625957,0.930096,0.471952,0.607301,0.400434,0.844933,0.856737,0.613061,0.516723,0.047241,0.194493,0.952812,0.231004,0.779554,0.583991,0.14485,0.53022,0.182105,0.61756,0.235112,0.441803,0.450792,0.808859,0.287243,0.590759,0.694097,0.943898,0.683886,0.408673,0.895046,0.606132,0.686298,0.80158,0.222285,0.775687,0.0524889,0.990559,0.555474,0.687588,0.332052,0.960768,0.842978,0.424166,0.0947299,0.914798,0.422148,0.164157,0.117812,0.42072,0.966569,0.0190284,0.702174,0.951806,0.559327,0.547299,0.978378,0.0385929,0.334344,0.438185,0.967047,0.98513,0.492607,0.257891,0.613656,0.728263,0.782579,0.714638,0.343905,0.277049,0.0435218,0.204529,0.445587,0.718125,0.0483258,0.856285,0.533332,0.0723578,0.0854157,0.618124,0.124188,0.701085,0.0714568,0.298422,0.323653,0.747617,0.0131211,0.937665,0.7902,0.674946,0.776501,0.749575,0.65363,0.93254,0.880333,0.329877,0.466726,0.237061,0.0272266,0.0751669,0.752979,0.0849233,0.496528,0.179849,0.827863,0.176739,0.603288,0.813108,0.134655,0.961189,0.381462,0.36073,0.092354,0.240424,0.738277,0.733009,0.664413,0.713459,0.305571,0.744622,0.99312,0.0758355,0.827316,0.316376,0.783959,0.557195,0.967008,0.776236,0.0873017,0.214759,0.800085,0.594766,0.937244,0.508661,0.488002,0.964644,0.305915,0.784481,0.530843,0.752542,0.585263,0.831603,0.888016,0.830087,0.959627,0.389473,0.779886,0.518459,0.912397,0.655652,0.676719,0.935771,0.321952,0.863049,0.210602,0.280014,0.993945,0.825455,0.0366033,0.429939,0.541897,0.198496,0.56632,0.390431,0.0837959,0.909984,0.657525,0.545669,0.0760587,0.797094,0.31493,0.854396,0.802625,0.307252,0.460762,0.240937,0.174446,0.52766,0.189797,0.900948,0.421189,0.505248,0.00190133,0.736666,0.215009,0.0165869,0.437299,0.970843,0.728938,0.106979,0.747526,0.669204,0.327932,0.714265,0.642993,0.207621,0.490027,0.570803,0.588834,0.799012,0.552424,0.162605,0.732534,0.837801,0.0861525,0.231667,0.977162,0.257823,0.843157,0.505659,0.924962,0.734976,0.391986,0.397535,0.728559,0.876314,0.0478442,0.793691,0.253384,0.991033,0.963659,0.57163,0.635901,0.72919,0.122941,0.647113,0.0965306,0.631764,0.715346,0.730927,0.0913208,0.185554,0.835442,0.517053,0.598116,0.989709,0.546053,0.383107,0.322271,0.654855,0.314332,0.955192,0.987945,0.875341,0.966076,0.811786,0.984404,0.875907,0.963448,0.0900226,0.548039,0.880118,0.79404,0.135254,0.584169,0.993859,0.381572,0.313608,0.739315,0.459077,0.161069,0.78302,0.167338,0.0217667,0.480621,0.521779,0.00659424,0.782597,0.349178,0.212856,0.144438,0.66547,0.204875,0.086419,0.986276,0.836531,0.187718,0.897252,0.106675,0.806708,0.321656,0.220327,0.524945,0.993189,0.265232,0.55896,0.993345,0.719636,0.667072,0.213335,0.266149,0.905296,0.110402,0.189976,0.961751,0.513292,0.925956,0.799163,0.661342,0.0684685,0.997275,0.765539,0.0855013,0.766438,0.540949,0.516112,0.485637,0.985358,0.748904,0.671371,0.128761,0.998391,0.275818,0.691101,0.560111,0.682391,0.889951,0.116878,0.774152,0.888255,0.584832,0.330583,0.786143,0.374648,0.701083,0.69743,0.30399,0.498613,0.39863,0.200018,0.835961,0.31247,0.626495,0.330112,0.17159,0.983447,0.343298,0.94329,0.383559,0.489398,0.636008,0.288675,0.498228,0.853256,0.834877,0.104153,0.256255,0.734288,0.485814,0.731962,0.993102,0.225768,0.927883,0.638576,0.60378,0.816883,0.0980967,0.458579,0.587945,0.0388641,0.892402,0.373629,0.0203208,0.129069,0.586205,0.237716,0.0904609,0.816278,0.498871,0.85306,0.908257,0.124885,0.586952,0.881623,0.721375,0.726793,0.823328,0.652093,0.248018,0.252934,0.771917,0.048595,0.343186,0.711576,0.1286,0.82451,0.322627,0.146775,0.337686,0.622006,0.0897897,0.60183,0.488523,0.871842,0.225055,0.339161,0.621971,0.782762,0.624842,0.450713,0.760349,0.430868,0.31679,0.704282,0.436391,0.84848,0.811446,0.662967,0.59821,0.123277,0.466902,0.961508,0.35956,0.826963,0.829742,0.155945,0.458604,0.715405,0.998487,0.408551,0.543106,0.577655,0.0404016,0.667195,0.550897,0.399949,0.794148,0.129522,0.267739,0.881722,0.39732,0.0476352,0.408323,0.962902,0.189657,0.562413,0.0290119,0.776657,0.682207,0.366544,0.675926,0.56686,0.811074,0.139515,0.650783,0.73324,0.142967,0.0191443,0.540955,0.613124,0.328003,0.310524,0.859986,0.0847816,0.552847,0.698149,0.297952,0.678798,0.0745052,0.726772,0.857136,0.0552211,0.656182,0.546941,0.880409,0.58527,0.249256,0.92454,0.425083,0.105574,0.175977,0.552386,0.517763,0.60168,0.0616834,0.0412195,0.468421,0.195654,0.737949,0.576547,0.835657,0.451424,0.425395,0.954752,0.822386,0.572471,0.178832,0.10661,0.62549,0.541337,0.3381,0.0985863,0.0407069,0.513427,0.683963,0.924515,0.685692,0.787846,0.87175,0.403844,0.0362077,0.949943,0.209311,0.0898696,0.693588,0.0870044,0.34217,0.308154,0.617513,0.2438,0.668294,0.73685,0.302187,0.176066,0.854245,0.081624,0.854128,0.59221,0.0396709,0.188398,0.59321,0.72716,0.145932,0.839496,0.544505,0.329248,0.980729,0.6122,0.136073,0.726839,0.275708,0.0912236,0.219053,0.971886,0.972243,0.0885253,0.0892416,0.879757,0.569373,0.71107,0.52662,0.454062,0.149544,0.0910671,0.549338,0.182427,0.396229,0.382428,0.242761,0.566782,0.164955,0.825238,0.238656,0.978508,0.788114,0.196659,0.786195,0.977395,0.0814123,0.791189,0.776641,0.956697,0.490302,0.647601,0.977119,0.74123,0.664175,0.559987,0.116537,0.601642,0.531941,0.819332,0.922313,0.197415,0.0145117,0.646869,0.3009,0.154683,0.180038,0.0793111,0.658774,0.429278,0.519945,0.596266,0.447194,0.212527,0.610543,0.83418,0.430326,0.851093,0.592151,0.917271,0.167858,0.544879,0.897807,0.590608,0.724467,0.714871,0.643111,0.0807441,0.0320653,0.0201827,0.472336,0.293928,0.760489,0.379498,0.00834191,0.633277,0.535674,0.518826,0.61888,0.365699,|0.171068,0.955831,0.320692,0.501725,0.993676,0.112711,0.590625,0.368671,0.035444,0.943222,0.0908335,0.660322,0.988756,0.893437,0.446984,0.678989,0.362236,0.112014,0.410536,0.946732,0.147973,0.642412,0.814361,0.486615,0.194917,0.737184,0.836386,0.853138,0.357195,0.904302,0.114688,0.0477469,0.562405,0.101908,0.676414,0.127676,0.0152751,0.876356,0.548979,0.275355,0.365571,0.592547,0.254818,0.205804,0.99661,0.567449,0.254688,0.36811,0.693785,0.467886,0.997676,0.0849514,0.295829,0.418541,0.291814,0.576499,0.147236,0.240537,0.0892785,0.837677,0.0365126,0.15108,0.0695032,0.494199,0.783068,0.000413656,0.908187,0.119781,0.776077,0.0203511,0.896688,0.208521,0.538455,0.50696,0.268035,0.271212,0.334072,0.767621,0.864567,0.774104,0.152012,0.81218,0.149021,0.639249,0.446313,0.311391,0.446147,0.330946,0.683556,0.779029,0.798658,0.317975,0.859795,0.922527,0.3178,0.71097,0.617864,0.142874,0.794774,0.335525,0.0887792,0.78796,0.664584,0.170486,0.990632,0.154265,0.500321,0.478345,0.183847,0.912647,0.0793098,0.731773,0.41344,0.119664,0.212806,0.199049,0.62644,0.593637,0.470901,0.64256,0.807096,0.679732,0.0259073,0.114562,0.290686,0.523996,0.0417491,0.886001,0.249661,0.275194,0.0762743,0.625751,0.15566,0.626172,0.910665,0.978473,0.134819,0.65452,0.332721,0.391935,0.823099,0.606942,0.601415,0.541719,0.281909,0.296631,0.345968,0.746796,0.673763,0.202697,0.910527,0.481759,0.992292,0.519764,0.641233,0.642154,0.512696,0.968283,0.177671,0.936759,0.0502456,0.60787,0.401902,0.450355,0.113135,0.265038,0.143732,0.414924,0.263785,0.268959,0.687493,0.664866,0.239198,0.394407,0.155296,0.596911,0.184657,0.586101,0.512181,0.5734,0.42262,0.304447,0.380975,0.8825,0.21688,0.403994,0.318281,0.591273,0.197663,0.666117,0.00776017,0.740463,0.905437,0.613548,0.0997885,0.598037,0.721186,0.6652,0.125899,0.185048,0.339791,0.427914,0.522321,0.580497,0.769274,0.425288,0.902505,0.365095,0.267866,0.643896,0.936534,0.648371,0.453032,0.551228,0.681457,0.0759965,0.68461,0.959301,0.570506,0.529739,0.274484,0.0702155,0.641538,0.482616,0.393224,0.761046,0.180073,0.523697,0.703677,0.73612,0.410205,0.596827,0.12662,0.199998,0.642699,0.491329,0.542701,0.137283,0.770262,0.943651,0.303886,0.661482,0.103595,0.0517297,0.580009,0.87502,0.3021,0.750705,0.840949,0.994983,0.885219,0.0900672,0.640383,0.951248,0.425565,0.00159484,0.0097152,0.432269,0.340396,0.908461,0.186914,0.550215,0.695973,0.675209,0.261909,0.620017,0.133692,0.570661,0.605411,0.309688,0.0573371,0.357293,0.604285,0.371649,0.121793,0.433983,0.00829899,0.748251,0.615247,0.0365828,0.389684,0.452192,0.343501,0.0993459,0.12693,0.259238,0.321449,0.450297,0.554562,0.488596,0.745869,0.886009,0.568639,0.331115,0.00688434,0.255057,0.998029,0.403962,0.967328,0.839982,0.195614,0.303777,0.948228,0.134718,0.329922,0.825613,0.0760937,0.566553,0.137506,0.7821,0.733528,0.557925,0.656089,0.0163236,0.0889057,0.659911,0.940998,0.406583,0.992864,0.916005,0.914102,0.435372,0.544551,0.701733,0.676516,0.260386,0.131101,0.456707,0.849381,0.77834,0.772703,0.441059,0.807898,0.867414,0.642304,0.827503,0.163303,0.296073,0.455957,0.727711,0.74693,0.236108,0.939489,0.829222,0.221518,0.484206,0.255067,0.260593,0.579941,0.520812,0.526577,0.103996,0.339617,0.280293,0.826945,0.0812146,0.119352,0.634577,0.237231,0.232481,0.248262,0.243801,0.540468,0.286357,0.0177139,0.717405,0.567222,0.717962,0.0998134,0.0489821,0.685329,0.932189,0.0607249,0.0436021,0.447106,0.787485,0.781513,0.494584,0.628472,0.815677,0.899032,0.399266,0.674343,0.0687153,0.0907975,0.131029,0.59794,0.99432,0.609808,0.995074,0.419415,0.796726,0.330529,0.125743,0.487259,0.899287,0.55012,0.120406,0.0875831,0.323257,0.722881,0.674275,0.977176,0.510191,0.542362,0.860488,0.634905,0.967845,0.885531,0.892107,0.195389,0.704338,0.39369,0.925302,0.784571,0.470459,0.833617,0.797832,0.313716,0.460621,0.880557,0.219362,0.872567,0.51371,0.7091,0.227021,0.727559,0.28442,0.0620183,0.0403441,0.1798,0.610923,0.845348,0.118854,0.506385,0.897369,0.073776,0.653709,0.947404,0.0278317,0.901338,0.878563,0.123662,0.630925,0.0562323,0.330515,0.374389,0.0514013,0.667511,0.210563,0.621416,0.627598,0.214754,0.69699,0.0840634,0.546126,0.539083,0.208072,0.612884,0.102262,0.178839,0.475846,0.130074,0.637182,0.761978,0.147446,0.121709,0.884404,0.765382,0.351707,0.800488,0.932966,0.389578,0.14156,0.990848,0.260343,0.337296,0.647647,0.829724,0.220318,0.0413086,0.302112,0.799078,0.723069,0.0684435,0.731899,0.826511,0.857032,0.201726,0.989821,0.189307,0.330683,0.293663,0.134299,0.0786757,0.173843,0.288159,0.33801,0.368514,0.72894,0.449793,0.757369,0.0795577,0.273104,0.859169,0.658607,0.717941,0.306815,0.935652,0.683458,0.222871,0.120259,0.369694,0.603812,0.488731,0.68459,0.567722,0.610536,0.796705,0.912319,0.137983,0.116967,0.250173,0.423163,0.464303,0.931181,0.663339,0.626952,0.630469,0.723294,0.883301,0.0920144,0.125226,0.291088,0.039122,0.282066,0.636243,0.279313,0.829061,0.161701,0.0235361,0.402547,0.784391,0.879229,0.998569,0.333765,0.820835,0.242598,0.129797,0.474132,0.55069,0.350246,0.0453497,0.873028,0.901765,0.549831,0.653469,0.534311,0.582217,0.534762,0.312023,0.798089,0.563193,0.759724,0.462843,0.629086,0.859588,0.870272,0.0543981,0.211275,0.643049,0.178373,0.569144,0.372159,0.208801,0.127123,0.371583,0.36255,0.443079,0.722042,0.850944,0.701356,0.574348,0.0362251,0.135602,0.623389,0.178026,0.279316,0.778202,0.387066,0.835086,0.233928,0.761219,0.869667,0.221375,0.197776,0.999969,0.369057,0.82036,0.161077,0.645664,0.288836,0.0523,0.690434,0.213689,0.436169,0.405477,0.487112,0.0175159,0.774899,0.638129,0.322429,0.762827,0.274622,0.337421,0.516307,0.933116,0.00731498,0.302502,0.599697,0.155584,0.325193,0.588087,0.530468,0.83588,0.553278,0.597507,0.641042,0.313499,0.950969,0.199662,0.584421,0.81603,0.944242,0.972887,0.554262,0.260886,0.190902,0.353132,0.769325,0.0113934,0.111964,0.763542,0.17235,0.0170273,0.497651,0.5626,0.308276,0.220674,0.41618,0.670786,0.848928,0.378969,0.201268,0.281295,0.747423,0.838545,0.681078,0.367429,0.100063,0.656891,0.518594,0.12772,0.924895,0.488245,0.821099,0.205121,0.793012,0.237803,0.0608392,0.879464,0.509234,0.657508,0.496418,0.373606,0.481213,0.61289,0.491093,0.4455,0.193169,0.485123,0.362903,0.462594,0.627897,0.782789,0.64018,0.719171,0.392852,0.0574548,0.542238,0.28858,0.546165,0.516645,0.629112,0.924643,0.901529,0.11335,0.287164,0.467824,0.487185,0.666351,0.789943,0.651865,0.530088,0.568004,0.921111,0.115936,0.152501,0.821401,0.755242,0.0823931,0.47384,0.386523,0.124565,0.299076,0.330587,0.593676,0.27733,0.571467,0.772213,0.390175,0.392846,0.0353305,0.916552,0.0781361,0.656163,0.311647,0.151913,0.0106326,0.629624,0.88767,0.985896,0.790223,0.44753,0.647527,0.622411,0.431967,0.328536,0.771378,0.643599,0.056538,0.857481,0.882779,0.0339822,0.343242,0.72038,0.590656,0.537053,0.549364,0.896763,0.673956,0.796971,0.568881,0.0359907,0.562069,0.420259,0.18833,0.606831,0.384192,0.669943,0.724933,0.764434,0.0442705,0.983955,0.0129247,0.736241,0.156584,0.585596,0.283952,0.307913,0.571827,0.403934,0.887971,0.584561,0.926213,0.586579,0.968878,0.345368,0.757088,0.156562,0.658111,0.400817,0.415743,0.73872,0.932346,0.948329,0.346422,0.184818,0.749513,0.676715,0.880662,0.496939,0.0341163,0.83993,0.829184,0.631922,0.768927,0.243832,0.443661,0.00565362,0.00899434,0.830693,0.439555,0.433237,0.789571,0.0789769,0.854407,0.216328,0.383599,0.26305,0.166743,0.94087,0.082274,0.095718,0.562595,0.629305,0.839852,0.286615,0.409079,0.358655,0.416185,0.976908,0.233574,0.892463,0.102057,0.344277,0.326795,0.31955,0.310159,0.3095,0.0378334,0.737731,0.627365,0.390099,0.469526,0.689105,0.418492,0.216665,0.283539,0.393765,0.846519,0.0152182,0.346303,0.840556,0.0526901,0.425314,0.329435,0.877199,0.137811,0.536772,0.362323,0.79897,0.542107,0.911041,0.387326,0.677322,0.586742,0.67018,0.54889,0.843733,0.648422,0.810381,0.828029,0.0767614,0.273127,0.564929,0.193735,0.169322,0.769864,0.333368,0.471319,0.66619,0.92787,0.633315,0.484059,0.423531,0.0904323,0.839609,0.341225,0.452826,0.310079,0.799475,0.983159,0.850841,0.109617,0.944472,0.863156,0.273038,0.800565,0.23857,0.17136,0.301312,0.894955,0.658674,0.278314,0.719183,0.12527,0.618711,0.355037,0.227796,0.00815803,0.51688,0.607528,0.339037,0.604746,0.211205,0.0927827,0.0891193,0.221148,0.256251,0.283046,0.049397,0.0697126,0.592113,0.416368,0.284541,0.972035,0.599544,0.998601,0.0729918,0.566066,0.378875,0.993549,0.417637,0.223949,0.141352,0.58038,0.909934,0.611072,0.476652,0.0868684,0.653906,0.867057,0.831268,0.191655,0.0893226,0.200556,0.735381,0.784969,0.708839,0.728943,0.609153,0.656915,0.536551,0.856148,0.695226,0.703283,0.685616,0.975108,0.825205,0.487235,0.477177,0.453193,0.612243,0.814305,0.995727,0.342579,0.11451,0.995602,0.321243,0.211193,0.178982,0.364233,0.0124434,0.585189,0.907762,0.580494,0.63213,0.312748,0.928045,0.160704,0.117354,0.857644,0.205717,0.981506,0.149277,0.489366,0.7365,0.778667,0.820166,0.553282,0.990867,0.53231,0.630262,0.00882047,0.0320688,0.43278,0.431044,0.640195,0.719078,0.250476,0.788329,0.279683,0.635841,0.944524,0.410589,0.29048,0.04049,0.818497,0.455363,|0.291229,0.500892,0.700682,0.494916,0.345837,0.280736,0.373124,0.696843,0.533241,0.961466,0.917318,0.533787,0.682929,0.183975,0.0346284,0.661835,0.0977988,0.0516551,0.218835,0.247253,0.381077,0.63746,0.801628,0.344987,0.230106,0.514176,0.653458,0.415355,0.0284435,0.650029,0.986386,0.865121,0.0832883,0.644886,0.773496,0.477199,0.900994,0.0431341,0.839473,0.759376,0.707911,0.591079,0.343468,0.0187811,0.726544,0.728234,0.604109,0.209161,0.261287,0.705204,0.185054,0.739778,0.197735,0.167568,0.172083,0.109217,0.284769,0.537724,0.102583,0.621983,0.496194,0.619859,0.49297,0.0892198,0.413007,0.964881,0.281328,0.134038,0.26311,0.878186,0.284563,0.107976,0.261007,0.0945359,0.220682,0.547511,0.710159,0.0745423,0.0341355,0.75948,0.985674,0.93862,0.600408,0.497282,0.985455,0.278554,0.862108,0.811503,0.89941,0.0738952,0.70247,0.460015,0.917382,0.941707,0.963273,0.777394,0.915555,0.387629,0.638828,0.102379,0.155838,0.276696,0.972106,0.529419,0.861317,0.868329,0.76004,0.408629,0.579838,0.257156,0.475043,0.913993,0.0327842,0.234347,0.626266,0.21928,0.58989,0.206585,0.0800071,0.189371,0.805304,0.991173,0.758748,0.470222,0.834556,0.612661,0.780623,0.39285,0.0387981,0.306751,0.282654,0.0858728,0.298035,0.113957,0.822501,0.0380099,0.263605,0.860993,0.193933,0.527245,0.378378,0.895818,0.85989,0.916192,0.498521,0.0489611,0.432176,0.938533,0.146026,0.0752269,0.449609,0.639546,0.179931,0.345859,0.131946,0.648952,0.120065,0.986992,0.552071,0.837386,0.716009,0.013475,0.300467,0.50044,0.317376,0.737072,0.661959,0.785666,0.280407,0.276817,0.7509,0.510315,0.398245,0.941178,0.79964,0.834732,0.0358449,0.882834,0.264433,0.170084,0.654193,0.91274,0.631024,0.661806,0.216579,0.0292168,0.231356,0.187429,0.159897,0.37505,0.71162,0.0902865,0.184006,0.433281,0.763084,0.32944,0.11439,0.721464,0.291384,0.153262,0.123544,0.996842,0.833465,0.00765586,0.510616,0.471391,0.742344,0.884735,0.533752,0.309185,0.0518797,0.263286,0.0556467,0.0758502,0.271295,0.251084,0.831196,0.0999515,0.300279,0.328074,0.858999,0.160301,0.563195,0.839864,0.258101,0.846425,0.436134,0.830158,0.492041,0.0343075,0.692373,0.856314,0.639792,0.583437,0.642246,0.441873,0.257516,0.785575,0.50599,0.173028,0.34777,0.00907189,0.380332,0.169977,0.869416,0.871387,0.431836,0.447306,0.358436,0.579492,0.662565,0.924079,0.0478503,0.109624,0.603415,0.607821,0.625509,0.471136,0.692922,0.619994,0.229856,0.163976,0.924522,0.171036,0.0813012,0.863733,0.803634,0.494223,0.0804552,0.333397,0.453209,0.0934508,0.0861176,0.241192,0.201339,0.427364,0.17634,0.853432,0.91544,0.318209,0.519932,0.374906,0.228913,0.663677,0.0116834,0.384237,0.339475,0.127784,0.428401,0.138311,0.476455,0.268768,0.450315,0.873588,0.836907,0.33836,0.172261,0.382462,0.903294,0.631874,0.298186,0.46229,0.152325,0.629947,0.931314,0.4112,0.980303,0.351146,0.0816626,0.834833,0.0135223,0.114685,0.791921,0.325754,0.13543,0.160005,0.152689,0.480105,0.530989,0.968895,0.19232,0.624176,0.69643,0.749973,0.442857,0.317347,0.251438,0.495162,0.745871,0.951999,0.990475,0.733425,0.967411,0.507435,0.912558,0.253401,0.576594,0.178252,0.360897,0.22465,0.695356,0.0513296,0.237785,0.389996,0.454326,0.468994,0.269945,0.826777,0.775798,0.437682,0.711009,0.173076,0.00785685,0.554743,0.232091,0.00425899,0.573826,0.384618,0.893782,0.697961,0.0669529,0.933403,0.0267296,0.68471,0.552478,0.116835,0.331882,0.147857,0.82516,0.754056,0.940891,0.892567,0.508007,0.783286,0.432056,0.369695,0.948604,0.0118201,0.676677,0.777278,0.0482517,0.357158,0.118707,0.995282,0.162127,0.822893,0.17635,0.977733,0.19122,0.427908,0.760093,0.356017,0.10544,0.906129,0.0672138,0.0680325,0.429039,0.586825,0.74793,0.719742,0.389078,0.0542185,0.0442613,0.227259,0.259715,0.379018,0.922389,0.0944194,0.213737,0.8726,0.533033,0.844808,0.457083,0.283248,0.846178,0.720944,0.0239269,0.4792,0.840909,0.422861,0.760745,0.121827,0.373572,0.327232,0.493666,0.411937,0.0178517,0.826089,0.233383,0.850396,0.474152,0.535335,0.941906,0.425324,0.979555,0.83648,0.839315,0.680595,0.521741,0.859706,0.270141,0.787554,0.785611,0.564946,0.936732,0.13109,0.436598,0.4861,0.444302,0.454099,0.0441788,0.713195,0.347402,0.679554,0.697404,0.930321,0.540237,0.499453,0.0744306,0.712215,0.781816,0.518354,0.435226,0.773952,0.406251,0.839803,0.396301,0.996649,0.993895,0.22663,0.592789,0.553197,0.00626057,0.70368,0.870753,0.404714,0.964997,0.851699,0.0470678,0.000494182,0.476723,0.162821,0.176375,0.480115,0.190889,0.924786,0.88679,0.0522109,0.284245,0.294257,0.49508,0.270646,0.39384,0.366205,0.0309539,0.238259,0.399618,0.0323232,0.0910973,0.168044,0.22721,0.581637,0.0324986,0.865167,0.63434,0.368131,0.927616,0.776348,0.229172,0.217374,0.562106,0.830222,0.812408,0.050082,0.817975,0.334436,0.843635,0.202578,0.998325,0.40119,0.959306,0.937772,0.436512,0.0665478,0.74051,0.49666,0.405142,0.55134,0.628688,0.480528,0.445342,0.133595,0.639416,0.714372,0.151503,0.327842,0.785975,0.935432,0.0467501,0.137247,0.0119504,0.484549,0.649349,0.201956,0.942944,0.310858,0.581463,0.120325,0.325224,0.422823,0.73378,0.349608,0.973638,0.638952,0.193997,0.992275,0.0762876,0.390056,0.922633,0.596446,0.552218,0.0127896,0.834146,0.73885,0.886784,0.28338,0.306743,0.0692816,0.204947,0.608412,0.66651,0.309679,0.0821194,0.492242,0.317035,0.106301,0.310172,0.556134,0.649771,0.824234,0.987114,0.133647,0.611656,0.87462,0.0473647,0.328651,0.864594,0.281801,0.553333,0.924426,0.693633,0.1686,0.823263,0.841601,0.171962,0.492273,0.5628,0.830935,0.00453651,0.652314,0.694912,0.862608,0.692217,0.883536,0.572808,0.236487,0.910068,0.701215,0.524029,0.978468,0.554082,0.00591815,0.0038622,0.148629,0.878127,0.351479,0.836177,0.940899,0.113563,0.915285,0.586442,0.00234085,0.567889,0.451466,0.667197,0.360672,0.46201,0.794997,0.25079,0.404605,0.887409,0.0986425,0.0340084,0.973181,0.903977,0.208541,0.750562,0.508539,0.207163,0.967695,0.928593,0.108361,0.608035,0.701902,0.727954,0.473925,0.550747,0.750613,0.0881686,0.122061,0.703009,0.898074,0.582278,0.0722604,0.109232,0.766774,0.419042,0.677784,0.81143,0.5604,0.498652,0.400302,0.167031,0.748711,0.276301,0.478333,0.52193,0.715839,0.213461,0.931341,0.895405,0.509615,0.841733,0.713202,0.400746,0.420154,0.155522,0.742956,0.487198,0.77089,0.0929409,0.812046,0.279827,0.634098,0.249675,0.377508,0.941363,0.358361,0.859365,0.258758,0.805759,0.45973,0.535178,0.0891024,0.578653,0.488802,0.184391,0.294347,0.827319,0.103917,0.690434,0.589165,0.820211,0.503306,0.912715,0.421743,0.0325093,0.204586,0.524454,0.897135,0.567632,0.617665,0.195256,0.401407,0.224632,0.0182824,0.984815,0.579576,0.0333616,0.9871,0.238151,0.282056,0.987316,0.200603,0.497419,0.964949,0.232797,0.76205,0.0614818,0.0678224,0.978938,0.924127,0.318043,0.48741,0.994385,0.686798,0.30538,0.00485224,0.895044,0.35824,0.866328,0.580428,0.994648,0.500924,0.928848,0.237392,0.842441,0.577178,0.759,0.166251,0.203443,0.136466,0.665386,0.0278897,0.613863,0.702007,0.001984,0.493551,0.857937,0.643958,0.99569,0.307996,0.107239,0.354614,0.753159,0.347145,0.106642,0.950304,0.767717,0.413793,0.90939,0.158743,0.819787,0.866284,0.394006,0.578255,0.414788,0.505187,0.70661,0.0383685,0.654351,0.91744,0.780158,0.485566,0.48156,0.182239,0.589527,0.600148,0.969927,0.928344,0.945415,0.344335,0.668477,0.738721,0.160387,0.857202,0.680136,0.796125,0.0629961,0.120278,0.224216,0.594996,0.49399,0.858833,0.703741,0.715406,0.73498,0.377956,0.338302,0.377395,0.915771,0.732357,0.108234,0.347332,0.797216,0.234283,0.382487,0.614908,0.0758845,0.0664388,0.828458,0.982561,0.117455,0.188971,0.416707,0.240222,0.436107,0.740004,0.0122148,0.649261,0.106622,0.0562698,0.438146,0.982259,0.50488,0.846757,0.289764,0.741172,0.806306,0.405744,0.854214,0.813241,0.66765,0.405529,0.423594,0.897797,0.465301,0.67215,0.514175,0.176176,0.0113869,0.0805104,0.898687,0.29048,0.901271,0.80968,0.415403,0.163031,0.55501,0.298455,0.20236,0.0157994,0.267304,0.778027,0.474534,0.366051,0.130351,0.60828,0.979861,0.711074,0.174846,0.979598,0.35827,0.151505,0.867547,0.924907,0.723303,0.346572,0.0667953,0.305865,0.290759,0.23765,0.334188,0.670061,0.853086,0.00904679,0.737885,0.291613,0.113743,0.387517,0.592464,0.740751,0.169501,0.500027,0.417142,0.0883302,0.474225,0.922935,0.581814,0.930258,0.898913,0.870604,0.69171,0.453841,0.138038,0.327769,0.702216,0.348793,0.394735,0.206168,0.50294,0.815452,0.773217,0.536947,0.106232,0.602177,0.675272,0.145267,0.229808,0.714998,0.7288,0.15638,0.409254,0.73038,0.394451,0.576213,0.624289,0.215834,0.986047,0.963191,0.660873,0.808885,0.760774,0.223189,0.752881,0.204012,0.0939649,0.292878,0.282026,0.723969,0.917139,0.356369,0.491033,0.278687,0.373507,0.622763,0.140823,0.532073,0.410614,0.657395,0.604475,0.294383,0.980472,0.575228,0.589189,0.274488,0.047924,0.314348,0.286879,0.854768,0.936264,0.743393,0.939581,0.120769,0.950123,0.441359,0.881299,0.43056,0.800574,0.972392,0.413273,0.983939,0.75915,0.630203,0.555017,0.0379504,0.991506,0.715452,0.248698,0.283901,0.442271,0.0903223,0.447412,0.918965,0.298762,0.601878,0.164783,0.0233927,0.853814,0.0380965,0.547024,0.845595,0.0931463,0.327846,0.16584,0.572361,0.217332,0.639048,0.818694,0.961905,|0.665973,0.352949,0.0932261,0.182616,0.90757,0.578677,0.86814,0.738415,0.170539,0.636617,0.405747,0.956847,0.0103979,0.470263,0.873174,0.359101,0.577532,0.497667,0.852984,0.969377,0.959883,0.200241,0.23361,0.0657699,0.00754863,0.892664,0.857347,0.819348,0.153264,0.763549,0.340399,0.687098,0.261838,0.430396,0.154266,0.752312,0.25063,0.82177,0.376589,0.60717,0.663039,0.360798,0.611475,0.720725,0.353366,0.298374,0.88642,0.539186,0.767049,0.413211,0.251142,0.690663,0.602633,0.822228,0.976022,0.728637,0.945282,0.0274674,0.0929273,0.517725,0.36093,0.498856,0.995476,0.377195,0.918623,0.868348,0.065679,0.274206,0.549844,0.514768,0.402423,0.56989,0.414965,0.783885,0.678412,0.177477,0.912842,0.893277,0.235524,0.44559,0.154362,0.65711,0.00606245,0.500842,0.943857,0.667857,0.968011,0.455628,0.216924,0.602916,0.493608,0.898514,0.0990618,0.939444,0.903475,0.793374,0.0732934,0.831644,0.898809,0.278031,0.311351,0.444106,0.302683,0.26485,0.54382,0.949278,0.716524,0.690261,0.488926,0.231882,0.509382,0.254338,0.21139,0.466608,0.0234928,0.0515328,0.636403,0.050088,0.638654,0.305374,0.542759,0.630919,0.59447,0.351421,0.243015,0.569721,0.613729,0.988826,0.0396316,0.00337076,0.687595,0.138708,0.067115,0.334144,0.853563,0.705868,0.910112,0.496114,0.996015,0.747101,0.850975,0.911763,0.984811,0.0121291,0.236637,0.00387383,0.978015,0.230942,0.177585,0.109223,0.800304,0.63373,0.724889,0.805312,0.59447,0.203718,0.555955,0.36768,0.70266,0.56081,0.78084,0.661713,0.487823,0.814849,0.199774,0.233848,0.780787,0.405546,0.662486,0.529813,0.1102,0.491073,0.874297,0.7294,0.791125,0.147313,0.0976681,0.936022,0.241472,0.745271,0.20559,0.876054,0.815915,0.490374,0.0610777,0.817917,0.119423,0.0301204,0.99208,0.749325,0.27858,0.958079,0.662908,0.756108,0.739333,0.514026,0.35579,0.658513,0.112593,0.1179,0.379689,0.250791,0.832503,0.311827,0.694956,0.497388,0.800277,0.770191,0.34753,0.386979,0.00924414,0.476507,0.493271,0.542149,0.951827,0.00483286,0.439743,0.985181,0.174758,0.318142,0.965455,0.0388171,0.388429,0.740191,0.0380571,0.1425,0.909178,0.0307769,0.350998,0.317316,0.370238,0.79031,0.420288,0.409806,0.167044,0.585079,0.622055,0.85758,0.342322,0.78681,0.889678,0.667772,0.0861674,0.584364,0.44919,0.709211,0.666109,0.445699,0.965763,0.570055,0.741808,0.39902,0.193602,0.569287,0.896912,0.404824,0.351157,0.101597,0.986676,0.442964,0.673578,0.53189,0.990372,0.629153,0.0302089,0.769904,0.110461,0.588803,0.342247,0.582176,0.128711,0.906937,0.468439,0.73434,0.330897,0.15829,0.760695,0.641633,0.507371,0.593454,0.0873312,0.933731,0.671521,0.281975,0.390744,0.127671,0.560359,0.0327753,0.233602,0.59418,0.221613,0.0825302,0.930409,0.208546,0.89296,0.849443,0.654156,0.322293,0.990616,0.221766,0.462206,0.548729,0.463786,0.714887,0.221164,0.689268,0.794908,0.0482361,0.672597,0.29084,0.613926,0.968982,0.876749,0.92848,0.724254,0.419917,0.770751,0.16148,0.809229,0.217709,0.436869,0.90472,0.184271,0.902956,0.498273,0.994217,0.337991,0.156885,0.753765,0.808636,0.851031,0.541371,0.980284,0.0401852,0.881481,0.846217,0.604107,0.0742694,0.83283,0.792931,0.775433,0.893912,0.261144,0.459843,0.248017,0.571323,0.013098,0.931271,0.827693,0.715291,0.305384,0.661383,0.52724,0.1454,0.563548,0.527778,0.436547,0.985277,0.518278,0.800578,0.137053,0.849939,0.287268,0.246095,0.865576,0.104269,0.639381,0.91415,0.416878,0.335638,0.207648,0.0354005,0.382188,0.0428668,0.374349,0.970967,0.242435,0.421946,0.115554,0.271315,0.277875,0.336649,0.141466,0.554343,0.219067,0.485967,0.490729,0.362516,0.623534,0.792109,0.0162409,0.320548,0.952988,0.660099,0.487384,0.961166,0.7915,0.0985204,0.464626,0.89687,0.717207,0.642653,0.214325,0.416155,0.805848,0.00942099,0.0419482,0.650772,0.486576,0.34184,0.481326,0.998158,0.814248,0.236489,0.753404,0.141918,0.946037,0.297822,0.0988725,0.0120238,0.774426,0.771393,0.296682,0.531265,0.548296,0.784813,0.290622,0.880482,0.308206,0.225098,0.386291,0.489225,0.641469,0.966685,0.475579,0.959302,0.455082,0.539673,0.458608,0.933714,0.199744,0.285913,0.341577,0.799913,0.521797,0.0724338,0.663987,0.714506,0.539316,0.373071,0.156506,0.678362,0.525065,0.515242,0.100076,0.252868,0.845847,0.529275,0.97816,0.796125,0.82834,0.868855,0.253577,0.674238,0.716018,0.433026,0.959592,0.553789,0.00824475,0.409536,0.100198,0.556336,0.608088,0.455187,0.819362,0.324993,0.0486641,0.608871,0.812384,0.400855,0.465103,0.728724,0.18906,0.719309,0.987063,0.134731,0.245942,0.277823,0.105227,0.316631,0.820816,0.18094,0.502464,0.0539402,0.671693,0.749611,0.638344,0.0164704,0.623189,0.496002,0.2311,0.719435,0.501201,0.839912,0.283099,0.62886,0.843345,0.880186,0.568074,0.752009,0.920812,0.755421,0.0427917,0.191557,0.787168,0.583625,0.182997,0.061404,0.674648,0.767339,0.262371,0.274968,0.212821,0.375172,0.792595,0.966395,0.530851,0.113825,0.400053,0.432575,0.543865,0.707467,0.211829,0.320819,0.244964,0.470272,0.697551,0.324374,0.0295178,0.612334,0.413696,0.752201,0.281989,0.643914,0.0747221,0.590951,0.182968,0.589792,0.166831,0.328297,0.807213,0.526731,0.577198,0.51215,0.672794,0.1213,0.513205,0.751481,0.280158,0.707601,0.927979,0.21076,0.647763,0.260359,0.571937,0.343189,0.907769,0.0346586,0.709271,0.142979,0.85923,0.840281,0.689619,0.648845,0.252382,0.246998,0.957381,0.201436,0.0583513,0.0228206,0.586159,0.76173,0.33053,0.818977,0.798505,0.883585,0.151362,0.59489,0.198532,0.465136,0.184148,0.374578,0.515517,0.872871,0.565263,0.958823,0.403712,0.746682,0.354276,0.54755,0.0055989,0.744242,0.894327,0.678375,0.69798,0.0219507,0.597606,0.491144,0.983102,0.352883,0.0176468,0.648609,0.514261,0.991587,0.63143,0.217914,0.0629892,0.510736,0.85556,0.0150632,0.943627,0.148596,0.166431,0.344,0.854537,0.305792,0.214752,0.370262,0.458068,0.0642654,0.370759,0.697148,0.274399,0.186466,0.469419,0.891032,0.656335,0.791282,0.615167,0.681178,0.854662,0.156477,0.104257,0.134484,0.683575,0.638901,0.966691,0.643148,0.390602,0.52049,0.680339,0.206142,0.334749,0.616897,0.470975,0.710019,0.809706,0.278185,0.85736,0.953504,0.977702,0.553174,0.256543,0.170234,0.00424945,0.47013,0.863234,0.374984,0.325955,0.161163,0.150398,0.592735,0.00440514,0.10347,0.639286,0.814298,0.124002,0.508912,0.313853,0.410484,0.406747,0.0941173,0.263351,0.952205,0.968547,0.194932,0.491365,0.52541,0.543078,0.214365,0.147834,0.844779,0.924812,0.662939,0.91826,0.245341,0.881478,0.286594,0.837951,0.731355,0.807714,0.84852,0.476421,0.0996215,0.204493,0.776624,0.216183,0.370949,0.444379,0.914166,0.889714,0.299625,0.350033,0.953929,0.264011,0.412525,0.207359,0.46259,0.154329,0.683414,0.132158,0.753275,0.667116,0.849022,0.073908,0.502155,0.33854,0.563279,0.136483,0.0542865,0.736735,0.71332,0.250853,0.785904,0.718438,0.140254,0.292051,0.824258,0.673059,0.555712,0.29779,0.192811,0.64706,0.391145,0.956146,0.730271,0.133475,0.762907,0.601944,0.637211,0.137059,0.752876,0.897965,0.778995,0.628499,0.793471,0.178633,0.290588,0.992891,0.398629,0.55755,0.375977,0.67365,0.764828,0.362465,0.961584,0.754424,0.0284928,0.277126,0.955021,0.980601,0.433927,0.950691,0.150606,0.898813,0.256223,0.279687,0.602525,0.319179,0.951312,0.88878,0.587163,0.30144,0.0683562,0.909419,0.231996,0.919149,0.285895,0.310962,0.032034,0.0743522,0.333421,0.429899,0.138782,0.855031,0.246551,0.416192,0.998557,0.808908,0.23339,0.39205,0.450891,0.5188,0.156192,0.608994,0.702204,0.61248,0.636009,0.163074,0.43105,0.590204,0.312015,0.8024,0.080075,0.640019,0.0220625,0.229048,0.0140768,0.136738,0.490848,0.275179,0.210517,0.810902,0.497961,0.0274369,0.183191,0.842398,0.621447,0.217884,0.929505,0.591699,0.588734,0.511854,0.393044,0.345179,0.5908,0.103707,0.917028,0.0625325,0.27979,0.295348,0.197835,0.32144,0.254417,0.331226,0.637132,0.659479,0.244537,0.633829,0.981461,0.270889,0.942737,0.859754,0.245942,0.66679,0.272331,0.405659,0.555784,0.270315,0.679541,0.269363,0.722183,0.0126176,0.516481,0.696953,0.228572,0.881412,0.275072,0.413102,0.745752,0.703433,0.316242,0.41101,0.237939,0.662313,0.0581588,0.565441,0.391673,0.809903,0.85889,0.382815,0.467467,0.173787,0.490684,0.79118,0.75293,0.357774,0.406184,0.205252,0.744209,0.634481,0.482068,0.808833,0.454525,0.57954,0.0590959,0.627747,0.421433,0.683126,0.472936,0.763332,0.527097,0.926883,0.644759,0.244904,0.766771,0.473848,0.0918906,0.742482,0.305457,0.250745,0.250085,0.634488,0.511636,0.645217,0.651474,0.655446,0.0129556,0.710191,0.241103,0.637584,0.552404,0.384537,0.0542646,0.634993,0.969132,0.287646,0.550033,0.594037,0.0463555,0.323135,0.256225,0.1326,0.143292,0.419353,0.695532,0.971357,0.527888,0.428354,0.775209,0.382343,0.00144804,0.326263,0.166791,0.135232,0.375834,0.991206,0.248041,0.0785335,0.363039,0.822017,0.0154747,0.760731,0.326109,0.231904,0.636105,0.598258,0.550681,0.944406,0.353956,0.0457034,0.57424,0.741711,0.570056,0.918716,0.561901,0.257356,0.73949,0.157538,0.450404,0.559303,0.624544,0.339528,0.13857,0.881605,0.334221,0.868874,0.573661,0.561396,0.896125,0.17408,0.282169,0.844839,0.992136,0.945821,0.140023,0.605251,0.428885,0.245072,0.299468,0.964057,0.876863,0.90899,0.774671,0.234495,0.739329,0.397842,0.91641,0.621791,0.298878,|0.738069,0.273992,0.0744896,0.298494,0.133987,0.229875,0.567468,0.702997,0.502398,0.0179023,0.350674,0.400264,0.372938,0.492815,0.0846717,0.68639,0.0259655,0.461717,0.0708011,0.688836,0.225727,0.210906,0.41244,0.268337,0.270312,0.0922734,0.618254,0.713904,0.611047,0.83906,0.000647426,0.248044,0.470799,0.00331104,0.967586,0.712973,0.970363,0.0292143,0.0198906,0.679972,0.403487,0.420959,0.847151,0.199396,0.815414,0.130464,0.559576,0.689061,0.576161,0.104292,0.670279,0.600586,0.219667,0.36246,0.526986,0.0592228,0.610865,0.163428,0.981833,0.126578,0.245533,0.358656,0.341659,0.12437,0.579777,0.769314,0.645415,0.0705709,0.177158,0.0868781,0.206108,0.527194,0.415114,0.520088,0.535701,0.394042,0.340997,0.882698,0.157811,0.959958,0.372445,0.944752,0.756481,0.67077,0.958746,0.603673,0.436999,0.54557,0.131688,0.804013,0.869741,0.938313,0.270096,0.687103,0.124814,0.178865,0.0494813,0.679641,0.286434,0.453707,0.540638,0.987493,0.640133,0.559111,0.520007,0.693324,0.364294,0.39734,0.176741,0.302881,0.17875,0.34973,0.812683,0.246087,0.505887,0.952191,0.130053,0.519935,0.566844,0.402941,0.351254,0.688814,0.680696,0.913907,0.921868,0.530535,0.544758,0.667601,0.813565,0.787233,0.682955,0.453707,0.0359624,0.718463,0.175745,0.233366,0.124001,0.474688,0.578418,0.863557,0.937671,0.207333,0.750804,0.843571,0.865783,0.57965,0.608517,0.630353,0.141755,0.0814438,0.262116,0.269405,0.327054,0.498603,0.979499,0.497471,0.57473,0.405957,0.250026,0.922882,0.192375,0.675089,0.567391,0.969603,0.285002,0.48746,0.229974,0.668969,0.291026,0.993241,0.706596,0.348262,0.344637,0.519129,0.605312,0.627095,0.346478,0.365297,0.953314,0.473773,0.711025,0.159967,0.320444,0.908707,0.955243,0.282548,0.183952,0.819109,0.271432,0.45871,0.657954,0.714899,0.290398,0.947737,0.980097,0.462979,0.889669,0.0543013,0.57396,0.0303802,0.900432,0.0542422,0.679334,0.737111,0.99731,0.438282,0.381844,0.11938,0.822476,0.063016,0.358847,0.430342,0.967576,0.687628,0.45005,0.642959,0.648057,0.518727,0.465738,0.917811,0.980159,0.469716,0.257907,0.258433,0.882498,0.270666,0.433933,0.599596,0.707287,0.495295,0.0553432,0.22925,0.467328,0.0208935,0.467208,0.791359,0.265928,0.694822,0.917776,0.350004,0.912332,0.140454,0.107435,0.637355,0.412737,0.817623,0.897367,0.621431,0.50901,0.515708,0.275406,0.269621,0.66453,0.734221,0.468613,0.172517,0.881922,0.904201,0.867933,0.0673989,0.217253,0.677516,0.507394,0.564513,0.0358008,0.801315,0.227121,0.756181,0.326661,0.510819,0.525741,0.989232,0.0259365,0.863792,0.451605,0.127499,0.153148,0.745706,0.623036,0.108942,0.0975286,0.778455,0.234665,0.46542,0.260982,0.113847,0.483155,0.95509,0.329207,0.752349,0.874654,0.233181,0.959017,0.653889,0.740716,0.781664,0.990357,0.876289,0.681528,0.795699,0.387112,0.560785,0.657462,0.906926,0.637899,0.737829,0.885084,0.905466,0.106772,0.5583,0.883777,0.362779,0.196843,0.798217,0.896828,0.269159,0.830411,0.496112,0.529875,0.162832,0.3702,0.484638,0.685045,0.00752461,0.837485,0.0460089,0.974062,0.240245,0.408747,0.334909,0.234593,0.872371,0.242168,0.933624,0.682102,0.592205,0.885123,0.64703,0.124239,0.171859,0.968931,0.432705,0.056473,0.937733,0.656932,0.0344664,0.256287,0.0348068,0.962866,0.192151,0.063694,0.818159,0.937117,0.995121,0.195696,0.832433,0.408705,0.373988,0.663155,0.145702,0.853097,0.557882,0.738249,0.592226,0.00439757,0.492123,0.818326,0.472172,0.807509,0.504868,0.487601,0.556679,0.30749,0.279026,0.0623212,0.0220503,0.0333809,0.125437,0.658942,0.977978,0.227465,0.648877,0.638784,0.551037,0.730135,0.99013,0.251605,0.701915,0.837876,0.770352,0.654139,0.828842,0.615527,0.0460694,0.640493,0.418872,0.964369,0.724994,0.396846,0.601362,0.547526,0.207353,0.754685,0.414526,0.833774,0.343635,0.295696,0.316735,0.557114,0.306204,0.70106,0.604525,0.978203,0.349649,0.712368,0.554528,0.798297,0.565317,0.101955,0.676794,0.0224399,0.13015,0.131594,0.105765,0.80769,0.611472,0.373251,0.195373,0.273782,0.457073,0.613409,0.522366,0.298151,0.0710916,0.559107,0.578837,0.412938,0.755607,0.499993,0.613362,0.618801,0.150571,0.234774,0.381069,0.727427,0.358476,0.358703,0.851149,0.348434,0.716174,0.469008,0.769708,0.920369,0.991318,0.246329,0.558182,0.736857,0.228568,0.529466,0.449436,0.709085,0.401559,0.0661893,0.801675,0.497255,0.849987,0.233401,0.489142,0.299929,0.746025,0.496136,0.447082,0.57768,0.923494,0.632151,0.0738624,0.847582,0.105134,0.154729,0.807594,0.0477207,0.478699,0.359224,0.434448,0.637054,0.548563,0.721094,0.762327,0.0745358,0.996038,0.794158,0.826798,0.81436,0.273374,0.844468,0.505277,0.12433,0.960313,0.272965,0.98707,0.636862,0.176983,0.678856,0.968665,0.952119,0.631182,0.749553,0.273459,0.137034,0.531054,0.225797,0.112208,0.49339,0.305622,0.735112,0.062719,0.506672,0.890906,0.724892,0.319094,0.9404,0.934169,0.128574,0.332369,0.306924,0.82237,0.843881,0.745316,0.795904,0.0265979,0.663757,0.596387,0.743954,0.659642,0.849584,0.90878,0.577852,0.602251,0.0713218,0.22971,0.665876,0.13221,0.0605616,0.306059,0.255072,0.230306,0.140996,0.93042,0.1813,0.83406,0.608883,0.619105,0.0251344,0.0538126,0.813388,0.792236,0.245118,0.966955,0.299365,0.580127,0.371748,0.749463,0.914614,0.602067,0.920491,0.732916,0.336265,0.523802,0.801937,0.216093,0.33073,0.958357,0.770006,0.996265,0.597986,0.312034,0.965065,0.105221,0.552287,0.289357,0.631893,0.182753,0.500007,0.476748,0.146333,0.646787,0.72745,0.974704,0.922362,0.473038,0.162983,0.410461,0.000472069,0.487921,0.399525,0.19811,0.562362,0.0498845,0.484931,0.634636,0.51566,0.534069,0.0919739,0.935294,0.817806,0.973636,0.36941,0.717783,0.103316,0.0950881,0.965686,0.241461,0.0635523,0.543653,0.769288,0.318258,0.440484,0.0321265,0.777767,0.0851139,0.690351,0.94179,0.427786,0.139203,0.138282,0.0502918,0.603208,0.955551,0.00448018,0.626484,0.247392,0.0766652,0.405874,0.522864,0.462284,0.058462,0.000146031,0.829269,0.119891,0.807728,0.381426,0.798081,0.542015,0.860776,0.798165,0.419219,0.146432,0.287952,0.697857,0.373227,0.114992,0.539969,0.245781,0.120792,0.374636,0.800305,0.95897,0.558075,0.996368,0.847227,0.440773,0.659886,0.64959,0.656049,0.92052,0.647785,0.884493,0.59516,0.274616,0.98193,0.472492,0.121458,0.336922,0.625027,0.435781,0.76199,0.7688,0.338179,0.506499,0.149945,0.194202,0.626163,0.470625,0.428296,0.118073,0.646697,0.322128,0.458611,0.863994,0.458346,0.408507,0.00219506,0.117005,0.158091,0.806809,0.557818,0.711104,0.700101,0.587603,0.00165951,0.422023,0.927987,0.500521,0.0785233,0.321549,0.310394,0.0338755,0.877987,0.165068,0.751824,0.555262,0.953453,0.855553,0.951122,0.0575747,0.424577,0.854763,0.496257,0.489439,0.81509,0.39767,0.30323,0.6442,0.165102,0.041963,0.600637,0.148448,0.509513,0.0688627,0.807411,0.798002,0.222073,0.636726,0.989615,0.968521,0.8656,0.304547,0.367206,0.721175,0.585511,0.429243,0.65618,0.377733,0.507046,0.58036,0.815876,0.806348,0.109721,0.289476,0.714182,0.134683,0.179095,0.286843,0.823158,0.606774,0.750059,0.108758,0.32535,0.308121,0.352202,0.623613,0.785109,0.0894864,0.0597436,0.200687,0.263868,0.331619,0.779275,0.576407,0.532704,0.359988,0.24366,0.469108,0.511445,0.529568,0.304072,0.743339,0.207812,0.120171,0.77689,0.785493,0.620503,0.740998,0.537139,0.266829,0.708028,0.694304,0.961334,0.894849,0.544052,0.503749,0.57517,0.527349,0.177619,0.814435,0.538851,0.215386,0.0641323,0.492772,0.445524,0.812723,0.572275,0.932775,0.243496,0.716398,0.0792404,0.120546,0.0503062,0.452957,0.720954,0.0706159,0.834011,0.239664,0.298959,0.483211,0.416908,0.734367,0.550505,0.576272,0.97886,0.00710529,0.0557744,0.377176,0.761354,0.0862802,0.475196,0.274783,0.539191,0.26457,0.621174,0.641859,0.439236,0.931755,0.450137,0.27838,0.762291,0.0968879,0.224677,0.772882,0.499286,0.197932,0.126561,0.50328,0.441619,0.449334,0.475586,0.659654,0.240608,0.378766,0.287455,0.188159,0.898848,0.501491,0.109429,0.274894,0.505935,0.660798,0.855841,0.0672396,0.282055,0.615924,0.24707,0.602352,0.856761,0.249399,0.0765834,0.26053,0.637311,0.0813673,0.0522979,0.974277,0.0217865,0.844819,0.55928,0.46515,0.865685,0.733234,0.378325,0.721108,0.995353,0.752896,0.654315,0.459117,0.39164,0.201761,0.395336,0.00767195,0.453507,0.73994,0.594673,0.855421,0.320662,0.194736,0.697537,0.754112,0.494102,0.340588,0.774188,0.273849,0.291124,0.943899,0.384639,0.750754,0.686442,0.919539,0.978364,0.591836,0.0909259,0.797549,0.625254,0.517167,0.414087,0.322249,0.664263,0.178983,0.830513,0.323243,0.50994,0.274896,0.475334,0.591649,0.453644,0.377555,0.162306,0.38582,0.264118,0.276841,0.854672,0.56816,0.0625486,0.796161,0.320403,0.389962,0.391631,0.0851436,0.469879,0.0819767,0.0201482,0.819888,0.655404,0.209562,0.0383925,0.432708,0.993349,0.922217,0.103089,0.311691,0.442951,0.33167,0.761815,0.950477,0.465938,0.687307,0.272021,0.706367,0.574991,0.119072,0.0545154,0.476227,0.824807,0.845701,0.78499,0.773515,0.224537,0.00952262,0.363837,0.166773,0.0102115,0.554325,0.671053,0.668352,0.856854,0.818779,0.958428,0.24623,0.944434,0.718976,0.742391,0.34129,0.57102,0.539847,0.690621,0.366388,0.0559683,0.150025,0.198141,0.646319,0.29007,0.0613491,0.0302026,0.68616,0.533568,0.796791,0.131698,0.546224,0.940094,0.77916,0.42105,0.115011,0.663295,|0.0752653,0.139341,0.927144,0.244004,0.773675,0.185262,0.368511,0.732064,0.367195,0.380543,0.314572,0.246346,0.372702,0.79681,0.197728,0.484527,0.876504,0.322668,0.248791,0.859756,0.0805243,0.0229433,0.435342,0.699034,0.100913,0.536616,0.0907497,0.641739,0.43859,0.283397,0.488659,0.606616,0.740421,0.752159,0.588954,0.994659,0.650948,0.801276,0.296233,0.721933,0.52936,0.979946,0.91012,0.978693,0.52311,0.173152,0.734693,0.347408,0.866603,0.481663,0.0171263,0.198294,0.962932,0.581254,0.647294,0.537331,0.168076,0.950114,0.549477,0.0759353,0.591724,0.7587,0.179262,0.855857,0.765279,0.934244,0.468626,0.442304,0.468214,0.582207,0.175223,0.0275705,0.559506,0.496783,0.559103,0.451515,0.272661,0.836451,0.878135,0.389108,0.256498,0.87877,0.305967,0.298604,0.659141,0.509442,0.163273,0.822801,0.700235,0.354333,0.17815,0.607999,0.0788925,0.724195,0.904114,0.31379,0.793133,0.534618,0.932873,0.833955,0.548523,0.00217456,0.533031,0.953391,0.44754,0.519828,0.895977,0.612041,0.123712,0.898832,0.785262,0.199527,0.0190521,0.998141,0.635228,0.684387,0.214843,0.515046,0.612011,0.0794025,0.0856238,0.0876251,0.891167,0.337188,0.768569,0.112545,0.290179,0.102737,0.917892,0.741678,0.408257,0.913614,0.341667,0.438152,0.825337,0.602983,0.723233,0.397555,0.764515,0.429729,0.842736,0.919138,0.113703,0.911752,0.663249,0.86778,0.631586,0.201795,0.447356,0.22928,0.66874,0.52155,0.996192,0.357277,0.667549,0.817037,0.288183,0.500516,0.175344,0.248647,0.0406126,0.840378,0.995002,0.333026,0.764136,0.492737,0.131697,0.554347,0.784845,0.640726,0.349835,0.996454,0.687937,0.246485,0.913345,0.56,0.458585,0.0627758,0.101665,0.0777441,0.967044,0.964686,0.711591,0.595244,0.41583,0.0201033,0.494347,0.850908,0.480995,0.0614675,0.989622,0.206658,0.417827,0.663094,0.202447,0.999803,0.470116,0.503767,0.836826,0.848414,0.639758,0.914425,0.586633,0.185953,0.0141768,0.827038,0.374312,0.785332,0.531901,0.472655,0.387058,0.503929,0.350059,0.965508,0.65559,0.0235829,0.826741,0.582299,0.8635,0.926874,0.611859,0.441288,0.584825,0.336299,0.329008,0.630723,0.06805,0.388592,0.935967,0.0736862,0.594957,0.614421,0.112817,0.921855,0.819549,0.575374,0.967614,0.41297,0.158526,0.389728,0.429028,0.683918,0.38742,0.28996,0.0875329,0.342656,0.600394,0.0707982,0.222662,0.738932,0.0962736,0.957841,0.244195,0.636744,0.910774,0.846306,0.691124,0.334081,0.828458,0.892373,0.75769,0.348838,0.586444,0.914021,0.277427,0.736373,0.155102,0.129055,0.040677,0.320165,0.0313765,0.171983,0.384265,0.500629,0.306118,0.757862,0.653382,0.00580752,0.369141,0.541014,0.567205,0.227155,0.461173,0.497536,0.872547,0.365258,0.158856,0.202007,0.747411,0.912682,0.975261,0.464168,0.301624,0.358489,0.2201,0.529751,0.816893,0.596144,0.557707,0.966039,0.733358,0.459728,0.691279,0.459,0.520035,0.526202,0.896465,0.00488389,0.609403,0.651998,0.430331,0.168892,0.299862,0.885805,0.736842,0.254119,0.582425,0.605837,0.646165,0.137455,0.154503,0.0210783,0.266592,0.340495,0.725371,0.874988,0.508579,0.954936,0.636932,0.114886,0.30741,0.623512,0.0269564,0.449931,0.385494,0.0667264,0.354951,0.885738,0.327008,0.255792,0.112883,0.889879,0.186645,0.729508,0.455647,0.73798,0.417433,0.62259,0.111985,0.769058,0.250572,0.309655,0.213045,0.185818,0.798537,0.600933,0.841039,0.447375,0.629839,0.941445,0.280387,0.575468,0.22924,0.384341,0.445857,0.170907,0.436494,0.0267615,0.528101,0.789451,0.398512,0.921584,0.0449514,0.736926,0.988397,0.37556,0.824784,0.152004,0.211258,0.71765,0.0210415,0.591255,0.824073,0.995916,0.0675147,0.617999,0.700781,0.348522,0.0457682,0.384571,0.683673,0.0494098,0.735547,0.890734,0.960246,0.471611,0.944666,0.736772,0.369144,0.648667,0.374429,0.909257,0.764456,0.385292,0.959717,0.771768,0.159519,0.251797,0.985576,0.654336,0.667709,0.862205,0.825262,0.842211,0.986635,0.635397,0.767546,0.792717,0.498272,0.727216,0.18153,0.858436,0.0516168,0.708809,0.361691,0.715506,0.823776,0.916989,0.888662,0.625204,0.435265,0.426214,0.306761,0.899196,0.131406,0.930122,0.956037,0.438174,0.523795,0.485447,0.797575,0.0164401,0.321978,0.151627,0.658396,0.96665,0.14481,0.912132,0.247263,0.707459,0.729068,0.322358,0.233432,0.759825,0.0339329,0.900344,0.705788,0.414625,0.573378,0.46242,0.356206,0.767514,0.986862,0.614924,0.0653241,0.658932,0.405366,0.236158,0.154665,0.153783,0.241177,0.445282,0.553015,0.283825,0.270508,0.260953,0.347086,0.190036,0.227396,0.795214,0.675844,0.864983,0.385752,0.521211,0.31925,0.246443,0.637595,0.484335,0.145131,0.204381,0.686776,0.534564,0.177519,0.585511,0.476275,0.224646,0.0538384,0.176553,0.287677,0.350575,0.683754,0.0987785,0.0285177,0.379222,0.358212,0.600749,0.785186,0.0231063,0.718351,0.342303,0.932125,0.814181,0.198255,0.29381,0.257483,0.289384,0.137741,0.710261,0.949408,0.427812,0.888602,0.844375,0.395562,0.391265,0.887515,0.587753,0.731008,0.229069,0.0592086,0.174256,0.504493,0.288432,0.292368,0.093793,0.595002,0.0590911,0.872975,0.703496,0.692403,0.649951,0.0883762,0.0947216,0.327107,0.617342,0.654336,0.862064,0.594424,0.700229,0.12411,0.59884,0.720999,0.335296,0.791727,0.301901,0.256144,0.371767,0.143118,0.33466,0.331585,0.049073,0.0757918,0.334842,0.339083,0.382599,0.783255,0.654596,0.0686601,0.533873,0.541832,0.140952,0.0657381,0.803036,0.666024,0.832288,0.901211,0.606803,0.466825,0.695594,0.165131,0.995299,0.185422,0.540933,0.354276,0.306529,0.552483,0.852773,0.00693476,0.672574,0.108261,0.840889,0.976262,0.362671,0.201351,0.339298,0.153399,0.689224,0.797029,0.368701,0.135769,0.756964,0.979641,0.826144,0.0417032,0.0841371,0.673247,0.483881,0.660271,0.32719,0.317758,0.622945,0.318771,0.635787,0.0616227,0.278918,0.362025,0.777083,0.910288,0.88103,0.155852,0.347501,0.943558,0.660778,0.375834,0.456101,0.591911,0.164262,0.13616,0.71896,0.109871,0.864168,0.180025,0.729261,0.00364178,0.813559,0.539889,0.339496,0.499543,0.120323,0.355558,0.969324,0.34256,0.617252,0.658771,0.139264,0.489679,0.86167,0.793751,0.69292,0.5639,0.469305,0.839853,0.243792,0.53027,0.410927,0.744921,0.719366,0.523114,0.30666,0.155809,0.843212,0.309134,0.539035,0.947765,0.27495,0.99359,0.633252,0.582165,0.688289,0.39387,0.734957,0.12124,0.790059,0.687823,0.331639,0.782127,0.92428,0.861065,0.0461674,0.0684104,0.108929,0.977803,0.527982,0.579983,0.565322,0.0558187,0.999387,0.575908,0.86902,0.245199,0.741575,0.59941,0.00523978,0.584971,0.416796,0.802918,0.685232,0.441636,0.886601,0.97173,0.0852903,0.286824,0.158771,0.927038,0.043607,0.837033,0.121444,0.00301319,0.812109,0.0278609,0.368031,0.259992,0.946398,0.945213,0.810222,0.470448,0.352045,0.00208259,0.223599,0.615788,0.667166,0.389338,0.165755,0.996346,0.858834,0.95094,0.143107,0.281147,0.56912,0.530986,0.255589,0.0753868,0.559908,0.654646,0.104331,0.7677,0.662975,0.884724,0.843257,0.474138,0.451915,0.240887,0.140359,0.312113,0.745582,0.677033,0.740646,0.178962,0.656686,0.208408,0.809974,0.135469,0.880425,0.599482,0.0319961,0.404341,0.517265,0.217542,0.376875,0.0158473,0.850286,0.691114,0.440113,0.526675,0.0112404,0.111984,0.669354,0.899103,0.282324,0.31129,0.580604,0.504727,0.257727,0.163423,0.314825,0.287124,0.445682,0.691172,0.251011,0.668141,0.159302,0.060441,0.658858,0.0823987,0.655367,0.615759,0.743752,0.0896258,0.662592,0.036788,0.845161,0.351669,0.246351,0.103227,0.629907,0.781464,0.282221,0.124231,0.234789,0.492563,0.5982,0.490312,0.894348,0.0656413,0.931456,0.14713,0.911214,0.168473,0.438142,0.595395,0.914012,0.891045,0.158074,0.587294,0.132475,0.759912,0.411034,0.285299,0.0196477,0.998033,0.662129,0.0500898,0.11517,0.852546,0.28896,0.158808,0.0318882,0.830961,0.346148,0.625903,0.672956,0.590063,0.979312,0.342809,0.618073,0.0865343,0.305122,0.441431,0.526117,0.908166,0.357155,0.857233,0.261302,0.996551,0.719472,0.00750864,0.949698,0.623916,0.175664,0.972991,0.681781,0.309647,0.778748,0.256696,0.171115,0.0871054,0.281069,0.508167,0.108294,0.568169,0.818894,0.0533825,0.191835,0.485804,0.626268,0.237746,0.746559,0.664503,0.831767,0.141181,0.793181,0.462646,0.345206,0.907137,0.52076,0.372254,0.286564,0.4462,0.58182,0.605075,0.305325,0.129951,0.490818,0.934526,0.998278,0.843893,0.752281,0.832883,0.222361,0.234109,0.560579,0.103423,0.339018,0.971711,0.301224,0.051892,0.959474,0.89854,0.35157,0.240366,0.482073,0.693999,0.67002,0.185463,0.705964,0.825365,0.702774,0.810579,0.210352,0.386602,0.558857,0.891054,0.51902,0.526145,0.599756,0.624892,0.100005,0.756635,0.881842,0.669816,0.892685,0.953766,0.77138,0.508021,0.341076,0.817571,0.135198,0.622914,0.140118,0.218859,0.920049,0.161359,0.736886,0.560201,0.377136,0.085756,0.892764,0.504286,0.901212,0.836546,0.655625,0.241376,0.0284394,0.455515,0.8345,0.289483,0.555693,0.716337,0.628268,0.0663117,0.436405,0.695998,0.478335,0.077557,0.134189,0.8631,0.021861,0.563653,0.120232,0.31235,0.266416,0.236862,0.333501,0.641661,0.751876,0.300512,0.462015,0.931595,0.934012,0.952612,0.286984,0.543096,0.8566,0.346664,0.0498801,0.724774,0.486113,0.403756,0.0369657,0.165206,0.91272,0.664743,0.572553,0.28366,0.285764,0.777976,0.947255,0.668883,0.271044,0.732029,0.710139,0.552483,0.148402,0.420435,0.0779432,0.272603,0.494199,0.751198,0.408731,0.874007,0.96862,|0.43617,0.616848,0.578057,0.796219,0.0970396,0.32933,0.212176,0.255687,0.791349,0.717272,0.353299,0.900191,0.715214,0.812362,0.455763,0.847431,0.903695,0.804465,0.322566,0.844367,0.933983,0.092682,0.844881,0.319329,0.937364,0.75229,0.824274,0.439654,0.113223,0.0898059,0.654215,0.839383,0.358245,0.750921,0.643214,0.662042,0.0853862,0.780696,0.301028,0.147234,0.0100993,0.595363,0.396646,0.490592,0.680933,0.234761,0.487541,0.5297,0.522078,0.608665,0.915367,0.871246,0.337945,0.714967,0.754751,0.243843,0.355875,0.214659,0.97084,0.61039,0.201274,0.708901,0.642975,0.827071,0.979089,0.635791,0.343632,0.138974,0.193748,0.0598516,0.225573,0.205803,0.300903,0.0144345,0.536793,0.0835327,0.713712,0.378313,0.734755,0.552029,0.0451394,0.166755,0.70513,0.498745,0.756705,0.906156,0.938225,0.0659639,0.720407,0.482576,0.0192693,0.98485,0.404916,0.071876,0.144479,0.670697,0.748556,0.249027,0.758272,0.0372284,0.743891,0.0707045,0.966822,0.152585,0.0287895,0.73125,0.974014,0.886722,0.177708,0.596804,0.753467,0.995581,0.865898,0.0403575,0.859505,0.630613,0.989306,0.0648623,0.406786,0.193202,0.829576,0.415682,0.422995,0.967375,0.50909,0.449786,0.720306,0.0428766,0.562741,0.538853,0.0649096,0.861847,0.704005,0.274116,0.114198,0.597094,0.386625,0.954922,0.701685,0.162152,0.184608,0.0849732,0.0146285,0.786227,0.263167,0.701669,0.359065,0.472005,0.0364133,0.595061,0.146049,0.345281,0.27424,0.3129,0.162633,0.0251821,0.259828,0.484895,0.994012,0.244045,0.296706,0.678371,0.679598,0.0935603,0.787338,0.0235552,0.294358,0.486497,0.624834,0.895259,0.702057,0.63282,0.37572,0.544779,0.569773,0.343207,0.330236,0.596122,0.423488,0.855317,0.254604,0.334812,0.459062,0.641941,0.801274,0.364891,0.476722,0.887987,0.679353,0.0303839,0.731497,0.92241,0.338863,0.601797,0.835118,0.514834,0.139843,0.27369,0.816772,0.565316,0.872867,0.579838,0.586064,0.860302,0.899327,0.751617,0.758979,0.0670678,0.936262,0.549889,0.407272,0.237573,0.898282,0.643448,0.848205,0.836778,0.180913,0.808027,0.235343,0.289493,0.619337,0.841514,0.0583398,0.834094,0.790196,0.36527,0.90988,0.476809,0.898224,0.858359,0.297574,0.56052,0.916927,0.706721,0.264391,0.837653,0.198754,0.736905,0.322509,0.917919,0.112831,0.405666,0.587374,0.646935,0.491262,0.564852,0.0993872,0.91633,0.214246,0.350952,0.638953,0.167952,0.0311747,0.892832,0.160333,0.860487,0.66463,0.303831,0.402399,0.111977,0.0997051,0.455994,0.740376,0.836515,0.0664358,0.976509,0.920406,0.558096,0.599477,0.807829,0.925121,0.388232,0.793116,0.491631,0.757024,0.662078,0.944199,0.899837,0.621774,0.30698,0.074154,0.471525,0.133535,0.135032,0.521039,0.540689,0.306333,0.103288,0.942317,0.148646,0.862517,0.691716,0.522961,0.340606,0.552758,0.592361,0.159821,0.00417483,0.404429,0.664222,0.568557,0.862659,0.728842,0.489949,0.192458,0.300579,0.184019,0.796082,0.712703,0.332368,0.229811,0.0339974,0.412066,0.487324,0.120719,0.74807,0.550395,0.686918,0.945142,0.783624,0.416275,0.877585,0.535913,0.0204164,0.818937,0.481981,0.034156,0.746459,0.575931,0.203499,0.725494,0.136163,0.185449,0.110844,0.00627071,0.251785,0.980737,0.709657,0.490463,0.896033,0.966037,0.0397663,0.360983,0.696167,0.388951,0.138072,0.869282,0.359467,0.549666,0.120641,0.980997,0.150891,0.178337,0.662749,0.569243,0.92285,0.385787,0.0633498,0.181927,0.851521,0.0310231,0.100283,0.373469,0.0649732,0.549326,0.222268,0.268995,0.0050655,0.643676,0.0854822,0.314028,0.348764,0.594735,0.832172,0.503122,0.169614,0.982254,0.889776,0.628928,0.422039,0.151589,0.948275,0.345811,0.591162,0.601046,0.334939,0.928234,0.305897,0.622982,0.763072,0.226304,0.682217,0.798377,0.257108,0.107638,0.15231,0.615803,0.515908,0.526452,0.731791,0.521864,0.993028,0.0143514,0.226321,0.519926,0.823724,0.862721,0.0331887,0.451249,0.0870976,0.205152,0.878339,0.740042,0.865123,0.680124,0.787124,0.942594,0.902149,0.681686,0.565495,0.786353,0.436455,0.416995,0.893933,0.226621,0.420369,0.791442,0.0863911,0.67604,0.310399,0.918314,0.71086,0.745023,0.121392,0.637973,0.291142,0.988259,0.644727,0.897342,0.0656708,0.437081,0.604008,0.409429,0.657866,0.742036,0.310149,0.787636,0.139663,0.140496,0.241095,0.724061,0.661502,0.997691,0.947905,0.844255,0.25105,0.151461,0.526608,0.165735,0.964426,0.960268,0.803325,0.788789,0.937959,0.599774,0.765825,0.165486,0.108406,0.820431,0.966808,0.221852,0.0254167,0.0312641,0.0662556,0.837932,0.380232,0.94179,0.300414,0.254554,0.0292544,0.871024,0.917275,0.243772,0.231259,0.621783,0.649765,0.587585,0.483621,0.786687,0.56678,0.247028,0.762201,0.0704542,0.872943,0.5822,0.158347,0.286677,0.68339,0.265277,0.679863,0.892827,0.138789,0.711208,0.4047,0.42076,0.306449,0.615276,0.263562,0.0523303,0.612185,0.733063,0.214082,0.120629,0.707437,0.87209,0.428435,0.352413,0.00478381,0.868816,0.510563,0.31647,0.408854,0.835526,0.559363,0.707867,0.820699,0.890356,0.142835,0.154726,0.367633,0.784554,0.408961,0.22407,0.881103,0.559283,0.659831,0.285035,0.970078,0.10003,0.393653,0.373711,0.973705,0.682206,0.500389,0.835618,0.477466,0.435187,0.980314,0.854361,0.699542,0.556149,0.922519,0.1969,0.421223,0.289414,0.249517,0.844746,0.133784,0.599315,0.892259,0.86655,0.417375,0.00703758,0.363871,0.998136,0.522053,0.701951,0.795817,0.376488,0.973222,0.747453,0.946851,0.876357,0.202286,0.307801,0.655562,0.748568,0.539166,0.0663255,0.256118,0.211349,0.448495,0.117988,0.931418,0.393456,0.732476,0.46079,0.432515,0.361104,0.12337,0.77102,0.367736,0.938226,0.449486,0.551992,0.67251,0.437487,0.8524,0.6226,0.3662,0.724535,0.919703,0.21876,0.65538,0.116148,0.15596,0.988848,0.216396,0.847865,0.737445,0.888937,0.0661429,0.182071,0.363884,0.908206,0.0390478,0.178432,0.030332,0.595583,0.44293,0.683553,0.333325,0.985123,0.249978,0.698358,0.365076,0.938254,0.390769,0.413141,0.0487662,0.87248,0.218762,0.981409,0.755495,0.797148,0.550363,0.626304,0.192874,0.972929,0.0249329,0.705123,0.79701,0.359464,0.392787,0.568802,0.625692,0.421783,0.249385,0.512832,0.28534,0.726855,0.696947,0.362,0.858128,0.908228,0.672003,0.884437,0.262399,0.447715,0.979251,0.802001,0.0934438,0.167007,0.471732,0.126301,0.542155,0.683596,0.615181,0.111218,0.451956,0.24805,0.953136,0.684031,0.732919,0.568491,0.215666,0.652956,0.0618187,0.626337,0.143934,0.032739,0.848516,0.40426,0.517082,0.117316,0.903378,0.876395,0.397446,0.513422,0.398732,0.310864,0.546066,0.277783,0.0490748,0.639839,0.608152,0.768132,0.726131,0.396441,0.383138,0.25935,0.438096,0.119327,0.241232,0.729773,0.2767,0.292802,0.840485,0.782797,0.89159,0.732147,0.474853,0.406577,0.409761,0.106925,0.976015,0.748953,0.539998,0.533515,0.345304,0.963862,0.217089,0.236886,0.337359,0.0992662,0.524824,0.541,0.867,0.0145851,0.88569,0.586034,0.623344,0.502614,0.974466,0.277257,0.391138,0.49975,0.364219,0.430912,0.0315426,0.624456,0.212458,0.155473,0.80523,0.351429,0.951668,0.261216,0.632175,0.611484,0.319198,0.741791,0.563791,0.122078,0.201788,0.907124,0.192274,0.649712,0.880136,0.611292,0.439333,0.947763,0.0812271,0.308472,0.570149,0.649002,0.0112697,0.224984,0.678201,0.556187,0.0338764,0.770316,0.809713,0.5698,0.188592,0.356082,0.0469275,0.650152,0.992212,0.946209,0.459701,0.942003,0.0467476,0.219619,0.329941,0.196321,0.754295,0.156043,0.639805,0.910821,0.916958,0.493113,0.5642,0.0365019,0.0852133,0.0779713,0.383928,0.18598,0.377726,0.491352,0.609024,0.249689,0.980494,0.0600635,0.624479,0.65781,0.0320129,0.0099569,0.370528,0.812206,0.667263,0.385492,0.335468,0.0571975,0.963005,0.300921,0.251508,0.0612746,0.408552,0.553931,0.369396,0.114324,0.441059,0.8021,0.136586,0.687555,0.607515,0.928826,0.913232,0.38173,0.722589,0.719175,0.921723,0.0765496,0.174413,0.994942,0.569124,0.276815,0.977413,0.826143,0.55828,0.992745,0.275868,0.217621,0.518008,0.997304,0.172261,0.252639,0.647096,0.526882,0.195036,0.450382,0.969374,0.963993,0.845259,0.0077849,0.813959,0.339985,0.0927199,0.561165,0.0976872,0.467424,0.424023,0.948133,0.687377,0.349054,0.259592,0.0189265,0.630073,0.876169,0.922967,0.869738,0.351566,0.998194,0.849613,0.589501,0.935825,0.689765,0.0177574,0.0135853,0.146359,0.186339,0.683857,0.122679,0.89025,0.598754,0.460525,0.626199,0.346184,0.916982,0.973149,0.0364188,0.52059,0.103633,0.656888,0.715055,0.372435,0.168527,0.389278,0.120628,0.437693,0.917571,0.109469,0.987557,0.0184562,0.360394,0.0616139,0.411996,0.951099,0.738989,0.534968,0.75443,0.771516,0.941226,0.137855,0.170634,0.483134,0.427888,0.0920518,0.318966,0.4942,0.325562,0.550316,0.900726,0.619996,0.922948,0.953597,0.919492,0.523041,0.457365,0.635402,0.75464,0.857459,0.299028,0.00274056,0.139392,0.854964,0.55409,0.452775,0.0612462,0.276135,0.93409,0.420431,0.659252,0.102001,0.85714,0.422856,0.733617,0.789575,0.216294,0.925376,0.122375,0.649641,0.752829,0.642016,0.991281,0.620377,0.513382,0.898971,0.142302,0.79995,0.0952058,0.623815,0.395289,0.311606,0.476433,0.777745,0.449569,0.0591461,0.114111,0.498294,0.0527554,0.318217,0.659432,0.922794,0.607157,0.68774,0.661664,0.0172414,0.700035,0.961673,0.458009,0.277061,0.111981,0.545096,0.415719,0.301558,0.722395,0.743188,0.85443,0.0376869,0.558764,0.834911,0.650515,0.302237,0.0984297,0.750799,0.780053,0.179512,0.536948,0.954436,|0.192553,0.411156,0.697335,0.30558,0.773599,0.815533,0.511222,0.918618,0.567826,0.175266,0.394792,0.46694,0.705717,0.98383,0.0947797,0.330773,0.792781,0.523824,0.421731,0.0489313,0.378785,0.948873,0.411293,0.124358,0.988124,0.384337,0.315531,0.346353,0.308286,0.187274,0.0592712,0.923749,0.546755,0.00679588,0.0540711,0.745323,0.150568,0.361571,0.74814,0.326936,0.645952,0.136793,0.814332,0.530462,0.249732,0.205457,0.510829,0.0169083,0.565583,0.593401,0.37278,0.399926,0.658216,0.457422,0.667441,0.0600984,0.244552,0.6347,0.188255,0.221482,0.618776,0.792571,0.990208,0.776183,0.788216,0.529704,0.0386978,0.0825319,0.393816,0.94075,0.259711,0.73062,0.374313,0.561225,0.499752,0.343715,0.267152,0.31574,0.654671,0.635373,0.53376,0.580316,0.932955,0.42453,0.253985,0.286025,0.139454,0.448085,0.572177,0.697197,0.140914,0.0977571,0.48695,0.58794,0.989114,0.41247,0.431443,0.627071,0.156309,0.94603,0.841433,0.0849445,0.408271,0.369233,0.932933,0.243949,0.870539,0.725513,0.700708,0.875993,0.0582003,0.770803,0.58348,0.671816,0.615321,0.654806,0.0699518,0.738376,0.877808,0.937742,0.509012,0.0316102,0.539408,0.991475,0.279631,0.902529,0.418747,0.346456,0.402976,0.33524,0.449999,0.102001,0.762306,0.976939,0.555468,0.238565,0.220742,0.213607,0.00312388,0.956988,0.423242,0.0550089,0.281165,0.850008,0.654051,0.164051,0.41728,0.0910246,0.712369,0.458847,0.756421,0.232314,0.994569,0.384429,0.207178,0.902891,0.67863,0.0105544,0.150271,0.267361,0.855592,0.749381,0.170012,0.328024,0.22896,0.532777,0.0952326,0.185425,0.833056,0.477046,0.0271029,0.228346,0.959737,0.614123,0.209993,0.561183,0.582315,0.931036,0.602173,0.634535,0.512851,0.529332,0.463164,0.547503,0.361248,0.749377,0.943999,0.495992,0.846036,0.225159,0.287185,0.520021,0.0891865,0.864988,0.855952,0.365486,0.44341,0.843955,0.0623903,0.769211,0.558971,0.103359,0.414155,0.873119,0.0989287,0.0745518,0.383189,0.624178,0.341968,0.696188,0.42237,0.0248112,0.364438,0.800739,0.421211,0.626676,0.852339,0.682803,0.549078,0.276668,0.59855,0.200777,0.90672,0.566708,0.335972,0.828964,0.61606,0.238407,0.122875,0.366807,0.944237,0.715745,0.837821,0.184532,0.570204,0.121039,0.441548,0.578585,0.887473,0.559546,0.110205,0.449726,0.823874,0.765093,0.479928,0.677187,0.527209,0.488591,0.760835,0.714047,0.115714,0.325264,0.351105,0.258283,0.797926,0.516624,0.506524,0.811115,0.161384,0.186449,0.527793,0.455928,0.721328,0.494547,0.334959,0.996857,0.941937,0.872082,0.899521,0.736262,0.327074,0.563834,0.75069,0.346166,0.907835,0.807998,0.264634,0.270903,0.767887,0.396708,0.83541,0.73408,0.0845858,0.477022,0.512587,0.797296,0.75151,0.562136,0.691807,0.164241,0.451116,0.00403994,0.344998,0.868277,0.59955,0.0967913,0.953161,0.267802,0.378833,0.831956,0.033061,0.443437,0.834517,0.4477,0.890128,0.492822,0.319849,0.2797,0.796552,0.772272,0.222403,0.805226,0.0544479,0.626276,0.777177,0.59498,0.682172,0.352777,0.72755,0.913548,0.131342,0.929376,0.326445,0.0861627,0.705152,0.395066,0.250286,0.946651,0.307974,0.646112,0.619701,0.809943,0.982969,0.78503,0.717708,0.647817,0.605965,0.962689,0.861754,0.613903,0.792522,0.853355,0.834013,0.161756,0.496598,0.461146,0.635355,0.336172,0.899711,0.662969,0.94667,0.731921,0.954112,0.52101,0.0912272,0.339811,0.00108248,0.561585,0.0610306,0.372668,0.917245,0.260386,0.283991,0.617168,0.722955,0.936231,0.99672,0.051387,0.101518,0.198684,0.531692,0.993734,0.243179,0.658916,0.81298,0.0279964,0.863184,0.562836,0.409342,0.605487,0.361641,0.919689,0.681802,0.141262,0.751974,0.80381,0.829258,0.0399343,0.000620544,0.997202,0.150594,0.820981,0.0842198,0.54463,0.207824,0.928451,0.838111,0.762469,0.394917,0.515366,0.0396395,0.945943,0.0828891,0.3145,0.642031,0.872459,0.945114,0.797907,0.848548,0.959759,0.12861,0.178991,0.509733,0.612536,0.265498,0.987248,0.424327,0.253468,0.115836,0.609936,0.492657,0.475483,0.804926,0.0156966,0.769855,0.164558,0.669017,0.713076,0.365071,0.95408,0.401462,0.437213,0.899255,0.0502121,0.318296,0.959936,0.0149328,0.875951,0.24216,0.90921,0.396863,0.891607,0.262862,0.400662,0.918483,0.29775,0.702948,0.291829,0.249589,0.762408,0.647727,0.298719,0.395165,0.255449,0.135926,0.900438,0.983974,0.367022,0.979305,0.946867,0.434401,0.105916,0.377948,0.478293,0.755257,0.579073,0.625538,0.238823,0.486259,0.237313,0.00329673,0.701442,0.791159,0.672194,0.986002,0.735773,0.230188,0.486044,0.0874969,0.053746,0.287441,0.813609,0.928414,0.0661672,0.76289,0.165045,0.537762,0.0775395,0.861365,0.947167,0.142476,0.947315,0.852371,0.896547,0.434429,0.538752,0.92255,0.932755,0.460658,0.671105,0.384826,0.621202,0.582314,0.599267,0.450938,0.0673935,0.71535,0.820305,0.026445,0.59245,0.703109,0.676356,0.620435,0.383331,0.836223,0.325745,0.633077,0.439027,0.574008,0.815157,0.818596,0.503651,0.777362,0.64251,0.65405,0.865539,0.20524,0.323483,0.471459,0.991681,0.465327,0.2404,0.192807,0.273437,0.927964,0.0622734,0.918015,0.373411,0.913327,0.696912,0.245439,0.258207,0.381739,0.419372,0.719899,0.448117,0.4923,0.190666,0.764454,0.71116,0.750748,0.733594,0.819488,0.109823,0.166806,0.583916,0.132253,0.999744,0.218552,0.760974,0.655846,0.870895,0.262959,0.911988,0.281329,0.228706,0.107061,0.438773,0.335583,0.946405,0.832065,0.751572,0.196438,0.276076,0.475731,0.337334,0.50929,0.933638,0.61527,0.21218,0.127508,0.100886,0.475645,0.364228,0.237787,0.326781,0.549268,0.595866,0.593439,0.911356,0.541941,0.959149,0.726629,0.584826,0.0550703,0.740419,0.255193,0.457057,0.423293,0.0788236,0.533512,0.986952,0.31991,0.163731,0.847811,0.443743,0.0538487,0.740883,0.0267939,0.65599,0.0503338,0.746406,0.441559,0.501898,0.215144,0.638278,0.0710817,0.151243,0.958849,0.982253,0.786413,0.164943,0.0304686,0.148937,0.685208,0.975758,0.172696,0.033692,0.801196,0.0586496,0.782807,0.737519,0.449481,0.987322,0.221822,0.190663,0.883643,0.67993,0.655195,0.326587,0.820722,0.595081,0.729178,0.202963,0.319016,0.327353,0.504273,0.835779,0.198436,0.158831,0.204787,0.724131,0.539743,0.790129,0.989261,0.520165,0.715042,0.347805,0.0192915,0.286626,0.942029,0.473152,0.796102,0.661097,0.448879,0.298805,0.30261,0.216972,0.603337,0.6146,0.224939,0.549476,0.226014,0.728846,0.317955,0.704577,0.388862,0.441003,0.595849,0.516481,0.206075,0.309763,0.176543,0.966628,0.138054,0.0290389,0.195754,0.411475,0.0409459,0.891531,0.52995,0.931743,0.861915,0.732476,0.601316,0.361815,0.297655,0.717875,0.142603,0.497916,0.904409,0.251071,0.0417108,0.00907713,0.734948,0.680054,0.0115141,0.531105,0.983185,0.049207,0.577344,0.276714,0.0940484,0.616296,0.667429,0.0487036,0.660139,0.376332,0.705526,0.0449332,0.97303,0.559011,0.076584,0.890118,0.938806,0.503631,0.159655,0.262795,0.0481656,0.408701,0.536032,0.193256,0.0145526,0.478299,0.586117,0.996578,0.30914,0.921031,0.963121,0.333931,0.750779,0.202405,0.82745,0.0656396,0.0536499,0.50289,0.541018,0.955928,0.313905,0.994118,0.962992,0.632703,0.642607,0.54453,0.0570874,0.117397,0.0761365,0.381982,0.723114,0.132064,0.0882644,0.20777,0.0631672,0.935599,0.215729,0.398712,0.713362,0.468025,0.0713311,0.000429332,0.158872,0.441721,0.42352,0.158494,0.340103,0.826504,0.655494,0.17913,0.663159,0.587974,0.115669,0.418858,0.71348,0.136795,0.715458,0.788702,0.16044,0.24144,0.201619,0.835994,0.42777,0.568352,0.408671,0.21947,0.9264,0.421497,0.870479,0.752278,0.310959,0.882379,0.72983,0.861763,0.427473,0.421664,0.78743,0.872226,0.653485,0.448906,0.313583,0.801435,0.362974,0.196498,0.665538,0.944351,0.600322,0.0211654,0.377034,0.285203,0.819235,0.272936,0.184519,0.682301,0.561098,0.699659,0.858225,0.448397,0.0795534,0.823871,0.622614,0.692179,0.0194329,0.953962,0.80221,0.464072,0.925891,0.717246,0.464641,0.0052104,0.791148,0.310648,0.230485,0.288761,0.308854,0.569211,0.60783,0.170237,0.637406,0.669587,0.641774,0.841507,0.464448,0.163293,0.192055,0.940144,0.122712,0.729288,0.679387,0.445871,0.698455,0.360789,0.148851,0.15679,0.816265,0.741568,0.142251,0.464073,0.965206,0.253001,0.482171,0.881683,0.922611,0.530018,0.938822,0.626204,0.397907,0.544713,0.00363523,0.437038,0.943428,0.192328,0.838274,0.384938,0.0594847,0.326252,0.170541,0.304956,0.453443,0.959665,0.361699,0.401541,0.763004,0.11375,0.963533,0.22114,0.831939,0.312704,0.45629,0.267436,0.841542,0.366824,0.0755268,0.0910408,0.967122,0.558969,0.781168,0.908569,0.98808,0.178265,0.552355,0.528578,0.881742,0.165359,0.365681,0.0860924,0.608358,0.349143,0.191991,0.843169,0.931823,0.635997,0.235651,0.825793,0.357597,0.617516,0.813784,0.342713,0.471543,0.689602,0.0240434,0.878112,0.631631,0.954315,0.0921052,0.0315306,0.650446,0.666806,0.133829,0.969565,0.429004,0.0329541,0.0967077,0.636218,0.700671,0.638049,0.582372,0.148611,0.683411,0.432882,0.456494,0.240972,0.0893482,0.702443,0.359019,0.706486,0.709468,0.669777,0.692299,0.367783,0.823131,0.435035,0.625037,0.64655,0.780847,0.0893301,0.407079,0.00850284,0.788909,0.584191,0.466389,0.317269,0.116951,0.870062,0.190502,0.363349,0.997457,0.0272046,0.500824,0.71447,0.0964744,0.0825869,0.0511319,0.669576,0.96279,0.171792,0.660637,0.439189,0.901772,0.627491,0.863631,0.446865,0.121597,0.534199,0.876333,0.434783,0.901923,0.873573,0.984492,0.95546,0.491499,0.840342,|0.996651,0.370726,0.0618628,0.865645,0.369745,0.647456,0.319925,0.77004,0.83146,0.697209,0.650527,0.747454,0.0625576,0.0091967,0.210406,0.388086,0.499866,0.379492,0.810718,0.562179,0.276664,0.354439,0.666742,0.204558,0.652028,0.157781,0.220867,0.646087,0.547865,0.206056,0.576056,0.805136,0.0963345,0.811708,0.612408,0.133395,0.247199,0.897407,0.53183,0.399474,0.535878,0.59361,0.405705,0.795983,0.732111,0.85951,0.804539,0.151192,0.13351,0.493497,0.200269,0.884842,0.862172,0.241922,0.357701,0.0623856,0.765573,0.785401,0.803208,0.861704,0.315519,0.577921,0.872124,0.172673,0.445876,0.707043,0.0925385,0.443288,0.0603549,0.00495982,0.272272,0.179262,0.663352,0.0325063,0.0637209,0.373013,0.229235,0.971954,0.650923,0.965384,0.332261,0.765268,0.927538,0.841107,0.669616,0.770132,0.0927666,0.390725,0.687533,0.104639,0.586131,0.791947,0.245574,0.828421,0.49049,0.578383,0.492636,0.952813,0.685929,0.048947,0.901036,0.70423,0.288194,0.0604758,0.0568151,0.398186,0.953474,0.255656,0.536939,0.646721,0.520589,0.85729,0.604425,0.00916147,0.591115,0.108103,0.0828468,0.170967,0.879514,0.873226,0.545131,0.358825,0.990404,0.419181,0.0551268,0.12149,0.6962,0.29319,0.8828,0.174941,0.201337,0.501691,0.129083,0.64792,0.377015,0.281767,0.723287,0.7618,0.912151,0.87005,0.305902,0.807705,0.452745,0.025532,0.129357,0.369512,0.477891,0.934568,0.348433,0.236774,0.889037,0.160174,0.493152,0.356367,0.931299,0.447498,0.425727,0.406782,0.201092,0.498997,0.111368,0.151291,0.00330871,0.22412,0.211197,0.689693,0.918798,0.591227,0.950623,0.72841,0.204811,0.0114776,0.997977,0.124807,0.394617,0.759346,0.892003,0.45393,0.667357,0.071892,0.63204,0.544532,0.58749,0.603613,0.640752,0.936996,0.458034,0.169531,0.586431,0.664092,0.470884,0.847261,0.993214,0.985431,0.26459,0.238461,0.289176,0.699262,0.249374,0.0695965,0.950251,0.0687112,0.679818,0.605314,0.0041905,0.0784047,0.154444,0.0315438,0.0763581,0.389615,0.192806,0.71077,0.400259,0.249957,0.275691,0.253588,0.686619,0.603416,0.0154232,0.999473,0.860109,0.8185,0.683246,0.668824,0.202326,0.350056,0.576847,0.0202383,0.463108,0.330753,0.899589,0.910102,0.100089,0.482683,0.642603,0.969469,0.119632,0.537703,0.0579129,0.217651,0.768765,0.17949,0.573687,0.259673,0.736371,0.622387,0.400976,0.442507,0.232427,0.194757,0.837733,0.581225,0.926231,0.409774,0.518791,0.504177,0.0762752,0.617437,0.411736,0.0114529,0.770726,0.444823,0.851077,0.946191,0.0840364,0.0633014,0.345224,0.90706,0.821607,0.628054,0.10464,0.350686,0.322907,0.65129,0.943653,0.790082,0.496753,0.594118,0.543149,0.787293,0.857218,0.190632,0.647302,0.00900722,0.113893,0.464072,0.07404,0.102546,0.287164,0.701806,0.36257,0.575116,0.146968,0.388518,0.304063,0.595426,0.0383922,0.907723,0.786905,0.0279104,0.186403,0.605269,0.625707,0.186941,0.61902,0.114331,0.562892,0.423798,0.431776,0.191683,0.975157,0.161747,0.400176,0.354596,0.225292,0.36733,0.835388,0.552975,0.821589,0.11503,0.273916,0.39968,0.534682,0.976549,0.226081,0.616805,0.778339,0.100987,0.946138,0.54041,0.428978,0.768047,0.334646,0.631303,0.298589,0.792715,0.490418,0.376422,0.832348,0.199541,0.372308,0.320204,0.94914,0.264991,0.42804,0.491464,0.977688,0.923431,0.473992,0.928529,0.931659,0.328724,0.0354847,0.993962,0.96941,0.232018,0.384612,0.414006,0.608719,0.824398,0.124783,0.876874,0.207155,0.96237,0.123137,0.783209,0.552588,0.985938,0.754666,0.515701,0.357035,0.599021,0.824578,0.359455,0.281016,0.1331,0.709014,0.802281,0.852313,0.802567,0.811927,0.109755,0.180689,0.204381,0.992694,0.266207,0.120381,0.287429,0.353893,0.355097,0.239341,0.837968,0.523602,0.896721,0.150902,0.838269,0.393763,0.101906,0.152209,0.230479,0.919757,0.136978,0.0334885,0.751653,0.269863,0.739212,0.359327,0.341219,0.843193,0.515567,0.974723,0.866775,0.499255,0.0214897,0.521924,0.813284,0.561026,0.216949,0.994218,0.668806,0.833092,0.857655,0.0509289,0.24641,0.326452,0.933507,0.148631,0.132329,0.738117,0.837368,0.697934,0.144568,0.816848,0.866465,0.591717,0.875904,0.989945,0.16546,0.595689,0.836643,0.620903,0.515109,0.495397,0.394602,0.919473,0.655631,0.25246,0.182094,0.242734,0.730206,0.131463,0.753965,0.484258,0.63361,0.402788,0.772274,0.765676,0.137545,0.214297,0.224692,0.0209882,0.412593,0.840785,0.723903,0.609662,0.742849,0.54254,0.171607,0.251281,0.40926,0.640701,0.854622,0.782957,0.43871,0.0240157,0.694882,0.347721,0.896307,0.438337,0.378476,0.997385,0.380059,0.0671532,0.443421,0.532165,0.525849,0.699946,0.889193,0.986059,0.730587,0.60388,0.122483,0.877554,0.735004,0.294929,0.602332,0.113411,0.0567572,0.900089,0.0958092,0.131812,0.152525,0.169479,0.423161,0.291372,0.287659,0.78269,0.992643,0.108111,0.84009,0.202884,0.73073,0.945655,0.958344,0.326846,0.490186,0.407668,0.852334,0.881333,0.919,0.206896,0.838463,0.0277951,0.369657,0.800481,0.530774,0.462157,0.219657,0.357806,0.337748,0.262752,0.330035,0.295774,0.739412,0.48904,0.579834,0.797231,0.954007,0.202493,0.388005,0.0164201,0.70732,0.532997,0.758361,0.766769,0.499083,0.600038,0.880558,0.068285,0.580989,0.412646,0.295144,0.114641,0.522244,0.93574,0.963488,0.655342,0.778696,0.853818,0.0996711,0.144883,0.635925,0.182494,0.230584,0.202461,0.384062,0.719822,0.5513,0.279994,0.832987,0.249517,0.158703,0.672792,0.332359,0.521325,0.615751,0.268655,0.067711,0.342274,0.023486,0.120817,0.138812,0.705247,0.194607,0.259668,0.625978,0.643547,0.467306,0.895342,0.777681,0.413459,0.575189,0.702255,0.078168,0.642445,0.207095,0.631455,0.761792,0.640032,0.879482,0.327804,0.143425,0.29552,0.231107,0.437466,0.909804,0.472872,0.548254,0.400941,0.334585,0.760586,0.432617,0.769046,0.764222,0.570727,0.775555,0.329849,0.202906,0.860441,0.988291,0.852389,0.50464,0.777621,0.471668,0.124027,0.00964516,0.98724,0.536172,0.0185562,0.687645,0.279543,0.155872,0.777089,0.500093,0.882173,0.436256,0.575204,0.128332,0.190114,0.295979,0.58787,0.16629,0.882804,0.209755,0.622922,0.941687,0.0547616,0.950219,0.492402,0.83954,0.0296641,0.315256,0.60113,0.725293,0.0112236,0.0120498,0.740003,0.281164,0.301386,0.638278,0.795796,0.822743,0.868496,0.32492,0.580488,0.825769,0.0400803,0.32426,0.655665,0.226592,0.819584,0.0323579,0.816819,0.22658,0.736495,0.401107,0.903334,0.0653237,0.25183,0.308653,0.984373,0.301632,0.0348965,0.703905,0.0462006,0.761202,0.133196,0.489034,0.533249,0.662884,0.796438,0.976509,0.505174,0.752385,0.0810994,0.218082,0.429511,0.845921,0.403649,0.619877,0.0496594,0.00866568,0.918602,0.820414,0.288105,0.190062,0.7406,0.4998,0.639848,0.181912,0.252928,0.548212,0.652455,0.033412,0.30601,0.77829,0.113246,0.905146,0.0359483,0.42252,0.466767,0.663404,0.602537,0.79405,0.753863,0.691261,0.348354,0.840081,0.282753,0.2464,0.494633,0.606037,0.573096,0.679558,0.629558,0.324804,0.685884,0.406279,0.258071,0.559712,0.33204,0.898758,0.901471,0.051165,0.0553291,0.312147,0.766391,0.00115323,0.920795,0.796406,0.565323,0.540407,0.729798,0.732879,0.265337,0.19839,0.980893,0.938692,0.553257,0.976708,0.166248,0.918688,0.508199,0.349724,0.978123,0.392533,0.0830789,0.628212,0.394125,0.0914167,0.102935,0.54282,0.247857,0.887606,0.0961146,0.117538,0.316483,0.950697,0.800555,0.731699,0.427616,0.793827,0.759643,0.282391,0.996435,0.0246608,0.0479913,0.989547,0.339394,0.670733,0.852147,0.515365,0.0348015,0.73183,0.775722,0.798293,0.404602,0.723585,0.154281,0.61603,0.477863,0.698606,0.867222,0.878191,0.202905,0.363073,0.791134,0.311735,0.950676,0.186306,0.312256,0.155649,0.859284,0.599839,0.477449,0.963314,0.203544,0.908505,0.0320029,0.258431,0.381294,0.827454,0.154994,0.766306,0.647153,0.833469,0.733237,0.104598,0.424563,0.0622655,0.380297,0.247238,0.605356,0.312298,0.69483,0.606565,0.63881,0.624746,0.401209,0.947925,0.626332,0.99021,0.415366,0.00381464,0.695959,0.91337,0.40223,0.616639,0.681183,0.840394,0.43317,0.839198,0.882115,0.418948,0.138471,0.299623,0.645279,0.142456,0.982328,0.776985,0.584542,0.385946,0.956216,0.311025,0.43676,0.878687,0.775409,0.648018,0.613587,0.981309,0.406926,0.996758,0.175662,0.485662,0.261018,0.191296,0.875557,0.34979,0.400557,0.0433753,0.201432,0.72684,0.17257,0.308031,0.92775,0.584629,0.261173,0.225424,0.4863,0.909146,0.216044,0.374882,0.448781,0.501432,0.890198,0.0441483,0.642004,0.604241,0.867963,0.776348,0.208622,0.100122,0.752329,0.107921,0.493998,0.878045,0.235024,0.246713,0.0543365,0.0921063,0.10416,0.479754,0.103423,0.964111,0.446505,0.353891,0.191796,0.540201,0.118741,0.561559,0.618895,0.921379,0.00877208,0.738227,0.746401,0.373091,0.240651,0.723015,0.945509,0.158649,0.0687681,0.396949,0.828583,0.147143,0.315323,0.45535,0.129313,0.946263,0.885535,0.149266,0.779498,0.543514,0.0527835,0.788906,0.42118,0.718086,0.733511,0.259554,0.259479,0.774403,0.993544,0.976573,0.2698,0.266836,0.573841,0.252188,0.00813973,0.222085,0.773679,0.220369,0.390679,0.851976,0.721842,0.228657,0.178865,0.12021,0.314513,0.406718,0.0374933,0.149437,0.388938,0.1139,0.673982,0.685506,0.921896,0.889781,0.65604,0.115155,0.370996,0.589038,0.515739,0.8946,0.65477,0.505954,0.676858,0.361566,0.627556,0.817151,0.981804,0.264916,0.532938,0.554563,0.189244,0.903376,0.961893,0.514102,0.751938,0.550703,0.427914,0.490676,|0.125387,0.900921,0.624517,0.698674,0.940498,0.774929,0.285312,0.278307,0.874075,0.4273,0.9663,0.57924,0.0459217,0.242452,0.230234,0.729908,0.814824,0.134642,0.978187,0.57965,0.626948,0.109654,0.0319608,0.82252,0.235397,0.585627,0.625794,0.273924,0.436441,0.965619,0.285549,0.897038,0.0915883,0.949151,0.275656,0.691977,0.61077,0.798936,0.756477,0.0634015,0.979336,0.634929,0.228452,0.488638,0.0683003,0.270979,0.452884,0.74848,0.308838,0.49389,0.360699,0.868618,0.56061,0.632138,0.695878,0.767982,0.876158,0.360758,0.390381,0.752842,0.0505124,0.708643,0.781538,0.812089,0.63717,0.156109,0.926802,0.924255,0.842386,0.93448,0.977724,0.309999,0.0326533,0.127205,0.0364016,0.426947,0.725038,0.901823,0.636543,0.108864,0.621378,0.174556,0.425408,0.542975,0.176575,0.973977,0.268981,0.164456,0.356935,0.530858,0.26777,0.556094,0.915659,0.258425,0.10953,0.0265467,0.52558,0.0629366,0.732938,0.289618,0.914104,0.964903,0.347681,0.215957,0.413471,0.516482,0.5723,0.0822359,0.581981,0.930658,0.205229,0.22686,0.445343,0.712765,0.479833,0.27318,0.0710393,0.798393,0.0545374,0.657206,0.990627,0.44674,0.89117,0.276533,0.402666,0.950203,0.507394,0.85497,0.742054,0.728479,0.445606,0.806774,0.718988,0.661784,0.294617,0.401733,0.59065,0.904563,0.146654,0.626956,0.689317,0.184108,0.765277,0.451784,0.510499,0.996931,0.492638,0.537483,0.212042,0.421781,0.450686,0.100834,0.212142,0.577512,0.783051,0.376175,0.44778,0.681369,0.0116162,0.770599,0.886015,0.788378,0.17535,0.489643,0.897649,0.50813,0.484617,0.192389,0.221169,0.54938,0.638364,0.85933,0.0811276,0.0128649,0.235908,0.812396,0.944338,0.444259,0.286597,0.884702,0.246531,0.858307,0.935284,0.53923,0.353595,0.810462,0.106981,0.875412,0.0336349,0.05678,0.866148,0.698495,0.0922311,0.766993,0.909615,0.93443,0.418696,0.0474051,0.316895,0.790869,0.0260014,0.566319,0.493096,0.361604,0.452406,0.0494642,0.562226,0.921003,0.668934,0.98095,0.258655,0.245151,0.626761,0.992625,0.220334,0.0430013,0.537803,0.862435,0.942946,0.181158,0.410984,0.49117,0.274817,0.579343,0.113746,0.436547,0.0967752,0.732188,0.572092,0.528909,0.827249,0.508484,0.313937,0.297129,0.64675,0.702273,0.999791,0.339983,0.848984,0.675049,0.342025,0.287285,0.901508,0.950644,0.254389,0.89484,0.867506,0.945391,0.364706,0.900231,0.806866,0.510417,0.873857,0.674085,0.946169,0.448032,0.688108,0.740692,0.551168,0.344039,0.0578629,0.922836,0.988903,0.536711,0.826697,0.811579,0.875405,0.215322,0.386025,0.620673,0.32091,0.57362,0.219801,0.403633,0.503678,0.239441,0.365646,0.654059,0.415822,0.578491,0.872582,0.143825,0.338878,0.0408721,0.399353,0.998544,0.252316,0.642328,0.808587,0.215973,0.842685,0.0641142,0.614772,0.836622,0.242982,0.599634,0.851735,0.916865,0.114044,0.869179,0.331553,0.128951,0.777817,0.940235,0.275496,0.341171,0.346366,0.693061,0.728706,0.200105,0.337101,0.586128,0.166479,0.569288,0.227013,0.914546,0.763025,0.508329,0.467973,0.710247,0.661396,0.277677,0.275666,0.476702,0.747216,0.0483984,0.199515,0.741081,0.359545,0.661933,0.753481,0.856433,0.632319,0.759568,0.188345,0.762061,0.128347,0.0352621,0.663754,0.799253,0.0866026,0.63718,0.12553,0.922341,0.351383,0.133894,0.9119,0.71474,0.953824,0.226326,0.293457,0.102709,0.213114,0.226731,0.0342693,0.0544241,0.152915,0.864034,0.909232,0.273612,0.941006,0.404744,0.122006,0.583896,0.365834,0.654501,0.916762,0.306414,0.912628,0.968336,0.681757,0.11751,0.191148,0.841374,0.122332,0.012767,0.58965,0.24414,0.634837,0.0622013,0.18094,0.0387323,0.748931,0.956781,0.247076,0.654379,0.609344,0.496464,0.125629,0.936813,0.061879,0.310755,0.878981,0.147843,0.177617,0.540634,0.951226,0.909693,0.825841,0.98768,0.421434,0.168816,0.261207,0.0319938,0.170553,0.326141,0.483009,0.895903,0.890899,0.70331,0.98022,0.870552,0.723079,0.762532,0.877475,0.674036,0.721786,0.898456,0.603571,0.597885,0.505425,0.488618,0.98986,0.087668,0.848282,0.24594,0.980777,0.385234,0.561274,0.391347,0.987915,0.683759,0.444535,0.753314,0.25365,0.919216,0.655173,0.151849,0.543457,0.0848247,0.60887,0.0992424,0.615548,0.247172,0.289668,0.224043,0.723084,0.655703,0.0810339,0.392387,0.661263,0.456006,0.51472,0.351678,0.560881,0.181629,0.0882124,0.946056,0.535252,0.730495,0.890282,0.631032,0.346747,0.847941,0.168628,0.783808,0.59185,0.858916,0.0361515,0.325767,0.557156,0.461832,0.962969,0.469001,0.000958502,0.635323,0.36034,0.302805,0.69179,0.788442,0.551669,0.269183,0.563721,0.722248,0.889602,0.44794,0.413939,0.411619,0.534285,0.389649,0.109284,0.622243,0.23262,0.0593859,0.319954,0.417922,0.69585,0.503088,0.556089,0.726157,0.497025,0.0435039,0.198129,0.960725,0.475109,0.551572,0.758767,0.570671,0.952153,0.458319,0.14777,0.757195,0.682856,0.664154,0.828693,0.306726,0.287344,0.465472,0.24223,0.775747,0.460656,0.840806,0.379018,0.58457,0.53717,0.31768,0.264164,0.662115,0.792594,0.607639,0.172001,0.685891,0.220419,0.39986,0.99758,0.583396,0.0768226,0.195785,0.644228,0.645835,0.163336,0.128052,0.657147,0.341375,0.476072,0.192266,0.487194,0.61055,0.883542,0.169033,0.0801487,0.620037,0.125425,0.486636,0.488534,0.485139,0.977399,0.0492206,0.160427,0.993293,0.255303,0.555385,0.713654,0.188712,0.00722748,0.865718,0.269006,0.619421,0.723469,0.474012,0.634073,0.525349,0.25237,0.467426,0.554945,0.0254564,0.115035,0.402496,0.477015,0.706262,0.968464,0.582865,0.690013,0.973466,0.379034,0.0439249,0.331095,0.318088,0.35895,0.130316,0.664114,0.395368,0.244331,0.922416,0.980237,0.745683,0.0977967,0.441172,0.157866,0.461807,0.292926,0.977743,0.698597,0.549655,0.911533,0.739406,0.849252,0.223414,0.0846566,0.712564,0.951712,0.212552,0.887814,0.827757,0.37618,0.247363,0.646873,0.197412,0.428166,0.357529,0.686891,0.383052,0.489843,0.162243,0.812885,0.82521,0.0762842,0.749497,0.155866,0.756425,0.140374,0.183442,0.495724,0.347323,0.672336,0.326583,0.665077,0.921849,0.137977,0.223814,0.49529,0.625501,0.507733,0.00945228,0.974641,0.0976756,0.926564,0.521633,0.37194,0.878262,0.97292,0.282753,0.651362,0.0822489,0.92192,0.614354,0.688431,0.783425,0.94412,0.274251,0.707449,0.397765,0.0607172,0.146519,0.775916,0.710768,0.89086,0.693391,0.255572,0.32293,0.0532854,0.346663,0.978988,0.910622,0.187877,0.838722,0.96253,0.201058,0.549193,0.505961,0.322668,0.197738,0.676133,0.777551,0.0376067,0.213972,0.656205,0.353997,0.260844,0.367662,0.313811,0.440658,0.466445,0.446015,0.954068,0.76794,0.105284,0.630871,0.81343,0.640355,0.719747,0.790131,0.43725,0.124772,0.561305,0.48177,0.460565,0.737253,0.285224,0.678494,0.0751571,0.66066,0.120938,0.243487,0.124601,0.438183,0.411427,0.212778,0.957612,0.396094,0.288693,0.624152,0.634955,0.0474721,0.186342,0.970912,0.037336,0.284221,0.741038,0.3387,0.702192,0.689146,0.321159,0.69963,0.136515,0.610641,0.639835,0.560915,0.678008,0.89372,0.496311,0.00763172,0.717769,0.686531,0.301623,0.654918,0.336015,0.445871,0.686233,0.534547,0.806277,0.744347,0.750377,0.656993,0.30962,0.72117,0.648512,0.524658,0.09499,0.952816,0.84564,0.707981,0.984948,0.511274,0.552033,0.871451,0.894317,0.551998,0.433024,0.924116,0.464416,0.701105,0.457868,0.643279,0.320179,0.934015,0.896049,0.76136,0.88491,0.959695,0.929036,0.871692,0.77766,0.1129,0.614139,0.154389,0.488355,0.339834,0.544013,0.264888,0.0565095,0.625719,0.406171,0.179374,0.685315,0.429136,0.247777,0.1218,0.495336,0.629949,0.419572,0.196862,0.965411,0.226209,0.0250959,0.40049,0.770947,0.649579,0.282455,0.387409,0.77615,0.515629,0.217333,0.52523,0.0389714,0.407269,0.815917,0.524666,0.691966,0.678649,0.477925,0.749505,0.583981,0.247836,0.785908,0.47451,0.457929,0.0636094,0.710242,0.0961086,0.411742,0.98603,0.0492631,0.76945,0.0479534,0.177755,0.685757,0.600187,0.00889313,0.585422,0.408853,0.691403,0.036736,0.865984,0.887422,0.910606,0.192288,0.0595354,0.323837,0.842882,0.0814285,0.305436,0.387048,0.0122578,0.906137,0.579829,0.261917,0.00506866,0.768329,0.730072,0.0479844,0.142129,0.034139,0.477511,0.393998,0.594872,0.40742,0.222595,0.797311,0.538043,0.69774,0.204616,0.943181,0.513065,0.729943,0.585879,0.691721,0.606577,0.746162,0.436707,0.749131,0.760095,0.440735,0.509358,0.346272,0.909202,0.144292,0.442057,0.594388,0.321188,0.699576,0.483974,0.94131,0.986371,0.502822,0.115395,0.473791,0.330899,0.0827754,0.313529,0.417808,0.766362,0.75845,0.926984,0.951099,0.657314,0.703983,0.421849,0.877857,0.090816,0.295292,0.298267,0.144884,0.320596,0.403964,0.900698,0.152015,0.85579,0.212307,0.838766,0.588419,0.748163,0.0470759,0.682103,0.315424,0.429137,0.671094,0.211588,0.0294657,0.417672,0.250216,0.284476,0.967154,0.428587,0.208499,0.561077,0.788803,0.0742452,0.447947,0.0150598,0.732779,0.74537,0.286144,0.0322499,0.0614207,0.603496,0.229631,0.147949,0.959215,0.21949,0.726544,0.416338,0.477646,0.289854,0.182428,0.912321,0.117399,0.328281,0.899632,0.529164,0.0540486,0.958235,0.130678,0.682372,0.530394,0.657166,0.316068,0.149281,0.234488,0.894262,0.243137,0.386615,0.975094,0.0799807,0.914521,0.428662,0.933322,0.792833,0.899922,0.839052,0.468055,0.406509,0.260871,0.316012,0.633154,0.314855,0.0391775,0.194963,0.826786,0.564871,0.180363,0.865691,0.861716,0.698244,0.451592,0.210389,0.481479,0.657227,0.699975,0.412977,|0.153411,0.847397,0.765117,0.173969,0.189578,0.540532,0.946258,0.0799599,0.200648,0.173751,0.891925,0.522034,0.946664,0.774042,0.670719,0.0573337,0.482027,0.013605,0.262488,0.0439261,0.129912,0.0657148,0.741358,0.453262,0.132798,0.384364,0.472313,0.72011,0.215528,0.0634543,0.907971,0.00698578,0.902502,0.487052,0.855531,0.334105,0.786738,0.86221,0.255135,0.721547,0.271661,0.349805,0.280259,0.297214,0.636049,0.0831751,0.615135,0.670395,0.492493,0.589991,0.550989,0.895338,0.431035,0.217283,0.692423,0.600684,0.516418,0.796449,0.230229,0.826321,0.645491,0.799129,0.575285,0.0998768,0.156085,0.625092,0.825576,0.820811,0.643683,0.671057,0.512015,0.832217,0.401619,0.414152,0.610576,0.777206,0.130471,0.24111,0.349805,0.0177145,0.156355,0.490915,0.766219,0.98916,0.707769,0.691691,0.7557,0.976445,0.712732,0.880874,0.106061,0.941523,0.309758,0.412803,0.145756,0.590034,0.718085,0.635912,0.214082,0.371231,0.00147289,0.00860339,0.692972,0.41871,0.770179,0.0728227,0.0757927,0.441924,0.827771,0.424013,0.626125,0.837023,0.406939,0.223487,0.521597,0.12493,0.596755,0.507841,0.684876,0.0645357,0.026355,0.470467,0.441047,0.756595,0.402245,0.687932,0.851166,0.455066,0.819227,0.947186,0.933325,0.118157,0.665486,0.966623,0.896574,0.439662,0.0555106,0.706374,0.916412,0.0340285,0.219992,0.492309,0.361829,0.0403607,0.0780579,0.682213,0.86088,0.252287,0.731463,0.213728,0.441911,0.863033,0.843365,0.782309,0.76655,0.352359,0.825613,0.895304,0.959671,0.429703,0.257828,0.873734,0.811302,0.643085,0.788201,0.445617,0.711657,0.746245,0.953653,0.644109,0.146464,0.302662,0.45436,0.724083,0.39581,0.444041,0.96885,0.902459,0.528993,0.874698,0.143775,0.0608266,0.869926,0.921388,0.570591,0.867789,0.136799,0.297389,0.526826,0.929329,0.0538717,0.605387,0.00430334,0.112266,0.806727,0.759433,0.778081,0.191727,0.559641,0.25032,0.0593058,0.351496,0.0431402,0.769786,0.399443,0.805576,0.285739,0.938257,0.230469,0.238009,0.906427,0.0943309,6.96182e-05,0.540298,0.421387,0.451141,0.893589,0.758473,0.271362,0.725112,0.404858,0.94474,0.354581,0.846844,0.41875,0.352316,0.722205,0.0797105,0.623076,0.228008,0.718178,0.0723747,0.514874,0.112757,0.365482,0.208544,0.64426,0.114699,0.762109,0.707854,0.21378,0.677215,0.572867,0.83679,0.441587,0.512778,0.408662,0.230603,0.0654884,0.395905,0.719646,0.0539492,0.24478,0.289383,0.272349,0.301003,0.139056,0.547854,0.328791,0.278313,0.628872,0.101831,0.157124,0.299387,0.565704,0.87099,0.272027,0.79729,0.0397058,0.633615,0.26742,0.00676757,0.0153791,0.899672,0.781554,0.515338,0.272497,0.783123,0.669172,0.0649467,0.171753,0.651341,0.749372,0.143624,0.678426,0.415723,0.608527,0.138625,0.230026,0.902754,0.150674,0.44662,0.601658,0.929889,0.246486,0.407866,0.221427,0.962386,0.000204027,0.861998,0.181525,0.559428,0.863741,0.611928,0.0130005,0.0285224,0.367715,0.747661,0.27109,0.292718,0.642884,0.365675,0.0621455,0.519807,0.215883,0.0782298,0.600609,0.671278,0.613958,0.636591,0.259272,0.410956,0.551555,0.652347,0.37797,0.494138,0.328836,0.124136,0.428393,0.993816,0.341813,0.364531,0.73766,0.372563,0.746464,0.149783,0.0956295,0.126257,0.754494,0.36502,0.123599,0.00915802,0.900683,0.10806,0.587752,0.255592,0.0456158,0.658165,0.340841,0.174335,0.124828,0.30867,0.793373,0.578312,0.0105067,0.0717019,0.86582,0.400505,0.668759,0.642804,0.912648,0.531814,0.479931,0.820172,0.174589,0.50731,0.917616,0.214237,0.99211,0.546012,0.221634,0.89868,0.0775934,0.564631,0.602507,0.588339,0.724224,0.702805,0.888624,0.555173,0.840444,0.06199,0.990249,0.130732,0.691469,0.0714365,0.18821,0.346332,0.183319,0.87,0.798868,0.0732427,0.0113987,0.146676,0.991123,0.0240431,0.172632,0.443431,0.209074,0.245764,0.43088,0.232805,0.377011,0.399018,0.366058,0.652124,0.246343,0.369876,0.118711,0.339283,0.717047,0.500624,0.718234,0.848627,0.334223,0.599981,0.262118,0.969746,0.700607,0.124893,0.351831,0.267153,0.252882,0.526677,0.864467,0.0251905,0.121084,0.410955,0.287901,0.559292,0.775093,0.92334,0.274719,0.127192,0.930397,0.0465069,0.859013,0.855049,0.659433,0.110564,0.721721,0.410263,0.233784,0.0555562,0.629716,0.545861,0.599119,0.0601388,0.686892,0.175935,0.94644,0.284932,0.116573,0.744354,0.373741,0.160193,0.483904,0.257361,0.350061,0.19536,0.632856,0.713956,0.263585,0.533214,0.930586,0.379577,0.134564,0.705545,0.482596,0.00552791,0.240478,0.251923,0.316626,0.701553,0.533051,0.318757,0.954462,0.823965,0.480457,0.611141,0.948926,0.014387,0.896378,0.57892,0.906696,0.394964,0.430582,0.00467324,0.801949,0.928527,0.738139,0.766485,0.116061,0.7747,0.0691838,0.803229,0.911095,0.645583,0.572852,0.194293,0.786426,0.74524,0.945091,0.595478,0.437382,0.196965,0.98852,0.278437,0.618974,0.491008,0.104237,0.940596,0.900961,0.888848,0.0777053,0.165849,0.38787,0.0363169,0.686585,0.805879,0.398847,0.00660098,0.610539,0.51608,0.38324,0.192166,0.972963,0.186058,0.591089,0.0720763,0.36419,0.491559,0.692481,0.667239,0.972119,0.250122,0.496724,0.484201,0.981922,0.886616,0.0504412,0.120363,0.192096,0.755144,0.109665,0.111216,0.0565468,0.354086,0.981273,0.0149122,0.926701,0.734373,0.673884,0.49195,0.873993,0.314688,0.00222141,0.666167,0.915061,0.866287,0.521048,0.0586597,0.864655,0.334853,0.487842,0.801841,0.0989524,0.809054,0.636391,0.624528,0.208233,0.370321,0.892821,0.548386,0.278506,0.412625,0.131974,0.801239,0.611234,0.733593,0.485113,0.891731,0.607442,0.889028,0.761421,0.858014,0.889503,0.671645,0.283447,0.203255,0.187935,0.753758,0.741526,0.466182,0.103731,0.822969,0.604702,0.523644,0.333213,0.810226,0.963416,0.415392,0.807848,0.912433,0.121461,0.591696,0.986021,0.644704,0.780922,0.360015,0.591688,0.0503708,0.0398914,0.461809,0.551727,0.197614,0.892358,0.246809,0.645707,0.402542,0.935902,0.813526,0.396835,0.268006,0.843629,0.0307655,0.849847,0.897778,0.054797,0.401993,0.576118,0.0845027,0.597816,0.866497,0.169931,0.03884,0.259498,0.368996,0.0375426,0.313589,0.401156,0.392983,0.823395,0.33267,0.530547,0.94956,0.257301,0.425113,0.83809,0.565048,0.18721,0.0480242,0.231628,0.109466,0.646106,0.00996864,0.730395,0.45774,0.495631,0.390124,0.574331,0.755563,0.911614,0.308387,0.69151,0.65467,0.735283,0.59905,0.642623,0.152303,0.752358,0.241841,0.931235,0.278288,0.0921128,0.783678,0.00364721,0.341439,0.689214,0.911001,0.3422,0.124826,0.864248,0.0289924,0.734134,0.38878,0.770652,0.488861,0.194876,0.314352,0.320451,0.696424,0.532314,0.637127,0.542011,0.870926,0.846422,0.669659,0.203641,0.711289,0.842113,0.670303,0.450043,0.38045,0.243281,0.0872375,0.377929,0.714988,0.659977,0.805244,0.241546,0.0877662,0.757159,0.759362,0.964768,0.415797,0.185849,0.210195,0.455671,0.274127,0.2398,0.893726,0.418182,0.39145,0.651198,0.538806,0.994682,0.622218,0.843605,0.350908,0.712213,0.656266,0.119016,0.365772,0.638345,0.0716978,0.261515,0.136138,0.275166,0.724024,0.19542,0.330796,0.645716,0.586172,0.316094,0.216371,0.633142,0.787239,0.568715,0.93914,0.00610048,0.0347462,0.437855,0.971298,0.688953,0.877724,0.213424,0.385457,0.523597,0.30534,0.846031,0.233483,0.581506,0.271226,0.995361,0.542857,0.287922,0.644863,0.0806367,0.562703,0.523679,0.93879,0.430368,0.564604,0.177217,0.570396,0.0422863,0.414635,0.836692,0.113627,0.207258,0.109984,0.440344,0.6598,0.623619,0.460027,0.234203,0.157027,0.548117,0.769092,0.158097,0.168875,0.0294272,0.783088,0.0314518,0.795656,0.901409,0.846088,0.0492005,0.28318,0.971523,0.707254,0.0690022,0.25464,0.0102335,0.781195,0.0275925,0.136299,0.00130171,0.302829,0.3221,0.980874,0.505999,0.616111,0.223824,0.296925,0.191097,0.557514,0.0138513,0.386913,0.196729,0.479506,0.86084,0.277613,0.239271,0.579821,0.520922,0.716411,0.38938,0.417938,0.716663,0.0740134,0.260503,0.877382,0.0232168,0.0756359,0.323267,0.133899,0.515182,0.87615,0.891478,0.622688,0.768617,0.356811,0.874891,0.335212,0.383039,0.632877,0.667752,0.723027,0.480805,0.802967,0.385871,0.622671,0.472646,0.374801,0.0628686,0.60115,0.0480016,0.659029,0.825413,0.253352,0.154413,0.349453,0.941507,0.262396,0.960816,0.657494,0.757725,0.628089,0.200659,0.218266,0.112097,0.000606239,0.414976,0.302635,0.521564,0.858387,0.43983,0.734047,0.969622,0.673638,0.0854834,0.54759,0.668807,0.285848,0.557659,0.576028,0.340928,0.31314,0.414407,0.772218,0.813724,0.730924,0.379944,0.366947,0.69403,0.859011,0.299657,0.844111,0.607058,0.825197,0.593611,0.906924,0.0154175,0.708962,0.582357,0.827237,0.623091,0.879461,0.360291,0.901019,0.571435,0.265005,0.33679,0.0319074,0.268938,0.0827541,0.713447,0.447279,0.983745,0.185442,0.883826,0.723127,0.779442,0.2304,0.301626,0.770151,0.860997,0.0685592,0.278445,0.826072,0.150596,0.384513,0.55857,0.739032,0.0203609,0.224318,0.87691,0.105622,0.306177,0.884492,0.855488,0.272136,0.968656,0.0168008,0.99069,0.779054,0.608695,0.839174,0.495818,0.853668,0.3228,0.199545,0.365823,0.759292,0.156748,0.968159,0.456297,0.349593,0.0868091,0.323176,0.662697,0.399889,0.633708,0.0562813,0.672759,0.357188,0.0154407,0.745964,0.0299959,0.112996,0.360898,0.94292,0.442864,0.974237,0.761109,0.103341,0.263758,0.0768121,0.884452,0.937034,0.962364,0.435798,0.703686,0.348693,0.293239,0.899406,0.642852,0.212289,0.546451,0.313385,0.702977,0.975587,0.181803,0.118326,0.529329,0.201139,0.654201,0.0822126,|0.799297,0.512753,0.345724,0.863825,0.796993,0.53549,0.0691669,0.273995,0.757918,0.708727,0.654041,0.311817,0.703612,0.0655743,0.510173,0.729603,0.0244044,0.327248,0.0101342,0.665156,0.278902,0.718894,0.0794499,0.896728,0.462344,0.820249,0.737058,0.0846778,0.128911,0.31491,0.271731,0.281117,0.120502,0.0883802,0.473595,0.15908,0.620879,0.768086,0.00444442,0.061591,0.706189,0.771527,0.144775,0.681406,0.47069,0.296624,0.236881,0.500267,0.228896,0.615308,0.0831465,0.986428,0.24137,0.345204,0.7068,0.347192,0.795383,0.163056,0.531808,0.128595,0.393195,0.263692,0.710769,0.844235,0.437448,0.173369,0.29625,0.404565,0.0224805,0.0129489,0.103052,0.337003,0.941539,0.0549819,0.97136,0.329298,0.998124,0.345597,0.914094,0.800234,0.22546,0.145939,0.0811452,0.677281,0.972501,0.49047,0.731633,0.715931,0.372711,0.608477,0.547046,0.592062,0.79383,0.0798233,0.11697,0.0234156,0.358671,0.642424,0.966391,0.0250296,0.15872,0.527777,0.435697,0.613112,0.960529,0.559528,0.0904427,0.276062,0.134398,0.424842,0.180234,0.25117,0.164467,0.0254597,0.996636,0.99546,0.580539,0.582044,0.482934,0.0467089,0.859376,0.956683,0.694271,0.114691,0.199668,0.0398536,0.715338,0.597962,0.297981,0.589131,0.127305,0.490313,0.703145,0.143006,0.795462,0.928529,0.331315,0.778238,0.600067,0.291855,0.368765,0.869288,0.40187,0.249493,0.997584,0.987831,0.502779,0.324464,0.0981173,0.149047,0.483767,0.682037,0.889806,0.721985,0.667464,0.589012,0.285463,0.72285,0.334412,0.089639,0.525198,0.449366,0.856396,0.853355,0.862688,0.758603,0.996186,0.254726,0.343377,0.882613,0.437341,0.946952,0.924025,0.745294,0.164588,0.71863,0.204028,0.172261,0.240013,0.125434,0.0636541,0.188475,0.778743,0.44992,0.633642,0.576881,0.383655,0.183328,0.563445,0.224541,0.673176,0.546091,0.955392,0.0141171,0.342877,0.0670238,0.504015,0.223138,0.50255,0.515734,0.800125,0.953228,0.02016,0.426928,0.91401,0.848879,0.552892,0.798049,0.832919,0.673139,0.569901,0.581054,0.56441,0.484967,0.256377,0.392094,0.199905,0.814478,0.459786,0.7471,0.139386,0.755124,0.136793,0.85816,0.176572,0.771184,0.766185,0.147623,0.295636,0.742453,0.806618,0.703165,0.512575,0.897249,0.494567,0.222185,0.49008,0.0726154,0.286773,0.91939,0.262315,0.445679,0.0372741,0.691188,0.973174,0.555088,0.982197,0.357157,0.925857,0.29013,0.294452,0.965839,0.596691,0.213446,0.702086,0.809348,0.623445,0.747817,0.0401679,0.984851,0.259322,0.398536,0.626772,0.475926,0.642403,0.694973,0.154943,0.956763,0.827709,0.59596,0.97577,0.92246,0.274071,0.806025,0.776019,0.661693,0.630876,0.960278,0.250963,0.97468,0.27754,0.632432,0.823624,0.10041,0.19342,0.993548,0.463156,0.0331804,0.0233967,0.84002,0.449896,0.534043,0.626083,0.74654,0.129498,0.891425,0.563277,0.23437,0.29402,0.870364,0.064189,0.124769,0.933012,0.209002,0.36803,0.222047,0.185455,0.447105,0.783126,0.607116,0.373969,0.446219,0.646617,0.733798,0.944565,0.206405,0.773748,0.932462,0.863485,0.585559,0.668664,0.986532,0.399155,0.869068,0.388863,0.872447,0.713271,0.262912,0.855596,0.117975,0.810221,0.679068,0.383811,0.702044,0.136035,0.959308,0.606056,0.61015,0.201081,0.834183,0.513842,0.434028,0.306278,0.865591,0.163834,0.779639,0.889674,0.140061,0.615251,0.714558,0.845232,0.265469,0.00303334,0.897333,0.249339,0.915657,0.539312,0.963085,0.164236,0.967564,0.873891,0.381055,0.0367503,0.783569,0.802945,0.87072,0.776171,0.980908,0.815071,0.665917,0.366185,0.442088,0.267985,0.619785,0.506859,0.824793,0.119528,0.806898,0.51959,0.214752,0.730452,0.312609,0.184298,0.185354,0.125508,0.941853,0.210999,0.299332,0.738801,0.0212827,0.185798,0.413373,0.538573,0.822498,0.227258,0.761588,0.977164,0.333223,0.421288,0.0951113,0.782388,0.340531,0.992562,0.765015,0.417521,0.516805,0.75611,0.210638,0.369233,0.967723,0.20405,0.805411,0.0122439,0.48557,0.738501,0.610731,0.415877,0.806748,0.997073,0.902377,0.17599,0.402991,0.1886,0.966284,0.921838,0.0209658,0.540392,0.354504,0.0337207,0.191715,0.362485,0.240555,0.698165,0.865633,0.220331,0.886406,0.839633,0.48641,0.215693,0.984135,0.0906962,0.744973,0.466888,0.900959,0.158266,0.937209,0.890563,0.340584,0.345674,0.242995,0.203924,0.403325,0.517607,0.702146,0.286756,0.160703,0.726339,0.841828,0.819988,0.128618,0.0474569,0.00259429,0.964867,0.387478,0.116478,0.308476,0.412707,0.307075,0.0741717,0.64832,0.106245,0.512519,0.548821,0.27466,0.476698,0.912576,0.883409,0.135926,0.572843,0.776917,0.547674,0.525462,0.418522,0.676215,0.510718,0.402578,0.951286,0.393467,0.690847,0.696814,0.137888,0.189329,0.4525,0.242802,0.637284,0.12153,0.378751,0.320006,0.852975,0.978783,0.680933,0.752248,0.62813,0.151107,0.0865206,0.0247723,0.845561,0.82805,0.331847,0.488858,0.353463,0.00686264,0.248727,0.841005,0.641614,0.000905931,0.768803,0.89522,0.519127,0.00466967,0.651064,0.808254,0.22529,0.228294,0.552176,0.122576,0.302688,0.60593,0.44365,0.491508,0.905164,0.0782483,0.271068,0.832484,0.643084,0.60551,0.779885,0.779754,0.129412,0.793423,0.405841,0.599687,0.376864,0.823748,0.190745,0.920049,0.697697,0.472646,0.422778,0.665531,0.341858,0.367527,0.544714,0.887254,0.383091,0.395958,0.299645,0.0628549,0.555663,0.691738,0.42423,0.122436,0.150065,0.888476,0.059552,0.606575,0.204931,0.269565,0.651029,0.207687,0.1676,0.420027,0.468093,0.614064,0.931739,0.758925,0.0122044,0.713895,0.987857,0.333496,0.110833,0.545856,0.644436,0.786008,0.822602,0.406265,0.407156,0.104736,0.458253,0.772528,0.736109,0.57914,0.548888,0.611727,0.333318,0.593669,0.842735,0.131826,0.823192,0.570777,0.341025,0.85012,0.426016,0.421346,0.312569,0.632738,0.645238,0.460558,0.62959,0.961458,0.903848,0.650721,0.0843713,0.360653,0.0732629,0.375403,0.946319,0.757219,0.515677,0.657508,0.621168,0.147687,0.369512,0.644183,0.660172,0.633186,0.934607,0.33584,0.746244,0.370266,0.0383257,0.911124,0.608786,0.421662,0.0395746,0.385233,0.725027,0.324392,0.893941,0.830103,0.694087,0.884319,0.869263,0.809938,0.841834,0.53819,0.0650462,0.276842,0.812068,0.121906,0.00257552,0.608025,0.557451,0.956851,0.175631,0.233199,0.0651624,0.0223001,0.910952,0.753338,0.495088,0.885022,0.45093,0.869968,0.0998278,0.894394,0.285061,0.130109,0.5274,0.713508,0.900055,0.216769,0.03527,0.615974,0.155873,0.62216,0.557564,0.312313,0.0937803,0.542059,0.198418,0.320425,0.474522,0.527268,0.0851951,0.972251,0.669708,0.0405894,0.126309,0.843829,0.257859,0.776796,0.75082,0.258562,0.252998,0.969943,0.937458,0.891808,0.20266,0.35754,0.504763,0.483851,0.194608,0.259565,0.704257,0.918196,0.809157,0.496446,0.370848,0.741711,0.547549,0.592552,0.75271,0.361087,0.852178,0.879177,0.72253,0.501857,0.0992758,0.170521,0.621297,0.704898,0.50197,0.987744,0.853764,0.695377,0.0278641,0.670974,0.905536,0.00322539,0.275329,0.0849609,0.4209,0.851242,0.00869811,0.670161,0.125422,0.630557,0.248928,0.898909,0.664649,0.860162,0.047169,0.282364,0.796803,0.962532,0.861878,0.520766,0.557858,0.908353,0.490392,0.111225,0.772901,0.354641,0.00918174,0.0124914,0.343355,0.544772,0.267958,0.639813,0.631379,0.620007,0.715824,0.434772,0.178753,0.8572,0.697762,0.288257,0.97377,0.117987,0.70034,0.322842,0.694933,0.73788,0.866662,0.675206,0.925471,0.976752,0.689977,0.795068,0.628819,0.80448,0.547344,0.0304341,0.730247,0.873606,0.867137,0.774496,0.0885909,0.0297737,0.552568,0.208387,0.767668,0.0653321,0.404757,0.4865,0.992731,0.688857,0.0459128,0.633828,0.781969,0.925372,0.952361,0.372381,0.545176,0.341854,0.19097,0.627234,0.517976,0.131179,0.416345,0.209483,0.217503,0.0302098,0.35082,0.33056,0.895916,0.192205,0.0792284,0.220098,0.663473,0.407576,0.982431,0.434028,0.0379224,0.446141,0.343911,0.841499,0.275193,0.0180662,0.448984,0.898776,0.153417,0.419089,0.143505,0.575428,0.856245,0.433539,0.0524324,0.828296,0.164168,0.31392,0.359026,0.618224,0.591789,0.225574,0.817771,0.698209,0.455879,0.96064,0.642439,0.510197,0.580402,0.979427,0.247593,0.680825,0.6154,0.820979,0.488584,0.20625,0.861089,0.0979913,0.519588,0.0448039,0.333736,0.286595,0.868533,0.105529,0.527579,0.365062,0.857818,0.0531283,0.913339,0.695424,0.743037,0.489715,0.885804,0.964833,0.20495,0.947052,0.817517,0.871129,0.0928552,0.211468,0.666264,0.269777,0.271475,0.30447,0.797221,0.354629,0.1126,0.479269,0.75438,0.722274,0.493156,0.339728,0.38729,0.0180262,0.608172,0.338569,0.182134,0.904453,0.565525,0.484634,0.758838,0.28772,0.278669,0.802412,0.58982,0.787961,0.814698,0.187946,0.957816,0.984839,0.973794,0.524322,0.239315,0.688929,0.389993,0.810663,0.912233,0.510451,0.46003,0.369247,0.954467,0.995462,0.942729,0.00939602,0.342687,0.570135,0.971148,0.200057,0.919174,0.321872,0.503859,0.847899,0.882009,0.486441,0.965976,0.507018,0.425738,0.938011,0.803151,0.952255,0.202042,0.631125,0.478064,0.561492,0.376744,0.702407,0.206067,0.513101,0.0923879,0.556449,0.463779,0.532263,0.988993,0.808834,0.230526,0.176828,0.636697,0.116253,0.81595,0.344536,0.888183,0.395996,0.334927,0.297349,0.570843,0.445327,0.696629,0.0350108,0.397638,0.816699,0.850981,0.546473,0.869192,0.63366,0.547708,0.0174282,0.434057,0.995266,0.274526,0.776976,0.424411,0.634362,0.744907,0.359483,0.865186,0.634496,0.709233,0.643388,0.265127,0.215947,0.440249,0.942969,0.924667,0.216014,0.645602,0.828423,|0.192129,0.52185,0.15477,0.282055,0.0748075,0.0521865,0.135204,0.284118,0.594403,0.827173,0.544093,0.0586177,0.603646,0.295655,0.0954553,0.102598,0.639437,0.625569,0.0543759,0.135347,0.820839,0.634257,0.861209,0.429187,0.521463,0.176532,0.160711,0.106629,0.192344,0.315597,0.523086,0.148699,0.904603,0.469058,0.756859,0.352815,1.00136e-05,0.141729,0.222064,0.72715,0.512286,0.617835,0.1775,0.501561,0.0648339,0.575797,0.385838,0.546925,0.802882,0.841113,0.526734,0.409736,0.338998,0.611344,0.598751,0.362795,0.298712,0.274721,0.317257,0.048126,0.670593,0.356402,0.209249,0.399139,0.267009,0.417564,0.758291,0.744265,0.605026,0.811501,0.48303,0.636424,0.770901,0.837387,0.178577,0.63804,0.14836,0.195751,0.217677,0.00201458,0.214555,0.00226444,0.585606,0.220905,0.168819,0.202012,0.714086,0.218158,0.581505,0.0143691,0.22311,0.397329,0.721335,0.051904,0.116504,0.749479,0.843195,0.113375,0.893517,0.741957,0.164811,0.724719,0.922691,0.833861,0.129174,0.0269969,0.461757,0.681043,0.523193,0.535841,0.097793,0.985323,0.394614,0.535182,0.764352,0.49162,0.336961,0.103856,0.594085,0.976682,0.625855,0.199725,0.318079,0.984322,0.555815,0.903258,0.982722,0.137804,0.203241,0.420932,0.0242577,0.865491,0.516796,0.518487,0.0959445,0.231131,0.0370932,0.525511,0.838833,0.919354,0.890088,0.0506995,0.992524,0.717334,0.126391,0.147981,0.69206,0.955721,0.691618,0.464785,0.270551,0.697545,0.0435239,0.677461,0.586029,0.527603,0.358614,0.39597,0.95493,0.791468,0.795235,0.779127,0.0569625,0.510495,0.0212224,0.151756,0.381923,0.636824,0.332809,0.0722939,0.521073,0.564065,0.452573,0.228411,0.411228,0.119361,0.150519,0.934428,0.779652,0.931378,0.649498,0.0339591,0.441608,0.908442,0.24563,0.0901638,0.629734,0.0886586,0.645418,0.0286141,0.729756,0.795064,0.169465,0.888316,0.95318,0.466202,0.848916,0.162977,0.146626,0.4781,0.50111,0.179416,0.25873,0.0317932,0.107836,0.0938727,0.683032,0.818427,0.389908,0.50242,0.216114,0.0796877,0.234644,0.346486,0.923138,0.345953,0.579439,0.380919,0.206579,0.341049,0.561675,0.16234,0.0541335,0.884864,0.667327,0.903992,0.396762,0.787497,0.467416,0.497238,0.44544,0.134922,0.387295,0.0193797,0.207855,0.544743,0.422359,0.727084,0.333056,0.842974,0.165834,0.410091,0.575865,0.87205,0.67189,0.253842,0.430181,0.561461,0.784153,0.257294,0.894012,0.200989,0.144086,0.115247,0.95484,0.68785,0.41118,0.541644,0.433885,0.582629,0.61778,0.376402,0.391782,0.653694,0.603712,0.61318,0.241621,0.169146,0.55807,0.146249,0.798844,0.19581,0.205716,0.779857,0.00564516,0.882527,0.946661,0.188836,0.558562,0.249996,0.674192,0.638839,0.368814,0.459447,0.158458,0.237284,0.957704,0.97434,0.545143,0.19299,0.402772,0.453618,0.474902,0.321896,0.250916,0.0364857,0.643838,0.291699,0.909857,0.875659,0.0725576,0.447571,0.467181,0.846287,0.656867,0.756684,0.06587,0.46521,0.608411,0.326616,0.349537,0.450842,0.491711,0.850921,0.578567,0.212763,0.727293,0.299835,0.373741,0.0613278,0.896087,0.405086,0.467431,0.476846,0.203858,0.974003,0.912411,0.680306,0.385893,0.278143,0.7334,0.405724,0.601122,0.877573,0.956516,0.565896,0.856504,0.924337,0.482316,0.903861,0.365531,0.284764,0.657305,0.336956,0.467621,0.082756,0.0468498,0.0593457,0.03488,0.438012,0.434159,0.707913,0.983335,0.393227,0.754488,0.709041,0.877129,0.620304,0.915576,0.0471041,0.356999,0.457866,0.793072,0.565727,0.289937,0.00707328,0.13487,0.729233,0.152279,0.989236,0.963175,0.730502,0.910248,0.711147,0.384853,0.447209,0.645008,0.703986,0.880454,0.856184,0.0801073,0.46686,0.623467,0.680658,0.15655,0.691707,0.452804,0.966224,0.676815,0.135729,0.513725,0.294064,0.459867,0.607539,0.301537,0.745488,0.0482543,0.264381,0.447152,0.118366,0.483421,0.167533,0.726787,0.347606,0.302568,0.871882,0.730118,0.0907277,0.0688724,0.0569117,0.602342,0.127377,0.983562,0.296209,0.466836,0.414075,0.514546,0.673358,0.144415,0.538224,0.500503,0.777685,0.852484,0.692081,0.877826,0.558481,0.525237,0.00341928,0.959175,0.92628,0.142686,0.659355,0.332915,0.844705,0.472745,0.154007,0.0387248,0.0200471,0.0583162,0.40899,0.00141203,0.86883,0.0037365,0.19966,0.362912,0.652853,0.200791,0.341759,0.93058,0.416056,0.251916,0.199227,0.519789,0.0375902,0.607502,0.394928,0.656215,0.982282,0.157773,0.271612,0.538517,0.351066,0.478234,0.453723,0.739745,0.0653809,0.91139,0.640343,0.214535,0.998477,0.847571,0.478323,0.129464,0.60819,0.219956,0.686735,0.444903,0.22398,0.597538,0.812873,0.193608,0.802482,0.124141,0.41731,0.395318,0.628715,0.380541,0.45809,0.550066,0.343115,0.939074,0.356326,0.555947,0.751144,0.200429,0.467702,0.44293,0.185156,0.26088,0.383306,0.34149,0.512511,0.457367,0.269679,0.874894,0.030988,0.885673,0.315469,0.485524,0.954752,0.0625877,0.813368,0.77498,0.312301,0.198202,0.633864,0.409788,0.794868,0.77229,0.676189,0.275091,0.824838,0.679927,0.296521,0.437283,0.409023,0.95608,0.922286,0.324882,0.247543,0.137428,0.906119,0.987327,0.496874,0.8105,0.545772,0.535382,0.0816308,0.318281,0.660527,0.976399,0.903981,0.952136,0.581733,0.336188,0.379971,0.482238,0.432204,0.998748,0.445266,0.913005,0.440372,0.801709,0.897278,0.292984,0.00505185,0.772077,0.525577,0.922721,0.288818,0.0695847,0.845791,0.892391,0.202695,0.632048,0.857935,0.671397,0.845513,0.365641,0.550085,0.925003,0.236653,0.861897,0.127156,0.0687627,0.461152,0.270629,0.152152,0.735179,0.245143,0.940807,0.15363,0.906218,0.53849,0.39086,0.125141,0.145888,0.833712,0.28449,0.247976,0.411266,0.802717,0.862536,0.519536,0.174609,0.611407,0.586288,0.553474,0.825873,0.355714,0.512636,0.666348,0.100323,0.794193,0.585417,0.696927,0.821288,0.420612,0.353683,0.759411,0.910868,0.248342,0.86196,0.694301,0.971339,0.790128,0.240126,0.761293,0.848254,0.31372,0.046465,0.92464,0.859559,0.912056,0.443706,0.351367,0.160026,0.259515,0.24669,0.850104,0.0126173,0.980152,0.00396413,0.237944,0.416937,0.367954,0.449263,0.917564,0.187516,0.755496,0.660412,0.899877,0.664582,0.513242,0.00265038,0.396873,0.226671,0.137286,0.0103334,0.749447,0.804882,0.952903,0.60688,0.718459,0.507639,0.789232,0.921608,0.712851,0.857656,0.591422,0.205153,0.755011,0.680941,0.0108052,0.337922,0.0618842,0.747063,0.54513,0.0922492,0.633046,0.830779,0.456322,0.962736,0.287537,0.775749,0.82245,0.991685,0.0631499,0.986952,0.967618,0.152702,0.467674,0.0587754,0.536776,0.407782,0.463685,0.212278,0.788379,0.850713,0.104165,0.573278,0.501079,0.402353,0.545724,0.697971,0.261841,0.585845,0.379687,0.042065,0.492199,0.402522,0.287742,0.887123,0.774192,0.692755,0.604409,0.142759,0.742172,0.341934,0.580992,0.603912,0.0340102,0.646021,0.522639,0.971222,0.492622,0.809438,0.496908,0.115198,0.800145,0.130421,0.202153,0.569146,0.47076,0.594016,0.059072,0.0243226,0.333631,0.893624,0.102285,0.317771,0.74864,0.493773,0.857416,0.0212496,0.931207,0.565428,0.106604,0.130967,0.866158,0.87919,0.508766,0.53516,0.794772,0.147991,0.939804,0.427582,0.974614,0.566536,0.739226,0.157463,0.369801,0.518209,0.146979,0.619438,0.355284,0.245379,0.199055,0.374842,0.985251,0.112606,0.832147,0.691418,0.279304,0.542374,0.394805,0.799409,0.54299,0.425964,0.10707,0.269238,0.601454,0.449565,0.434781,0.809291,0.759621,0.828828,0.827304,0.373774,0.222081,0.455868,0.438078,0.310948,0.511305,0.436166,0.801818,0.0260263,0.12666,0.652823,0.339414,0.40684,0.605119,0.817258,0.890498,0.23502,0.667254,0.55863,0.850264,0.964716,0.982147,0.880042,0.525822,0.473124,0.49263,0.145782,0.0271643,0.400722,0.992667,0.775417,0.159794,0.760301,0.704547,0.0930604,0.493044,0.583374,0.22288,0.644274,0.669976,0.543682,0.701295,0.879253,0.0767204,0.803987,0.443889,0.606551,0.463578,0.263203,0.50841,0.237777,0.0204595,0.307039,0.650982,0.659044,0.701629,0.676684,0.438815,0.603978,0.90913,0.902967,0.250699,0.218,0.815069,0.661497,0.451645,0.139593,0.743489,0.173843,0.241549,0.446037,0.27715,0.351008,0.641371,0.416908,0.731266,0.876337,0.434541,0.557247,0.864049,0.643567,0.478866,0.852871,0.545016,0.626432,0.224217,0.0926014,0.690048,0.308405,0.618451,0.659221,0.43482,0.603281,0.0324096,0.832321,0.677768,0.631788,0.392211,0.060522,0.271269,0.153368,0.759546,0.971082,0.825798,0.0481693,0.67851,0.674169,0.712005,0.221383,0.917289,0.57162,0.421387,0.357079,0.41141,0.49379,0.593298,0.20417,0.340521,0.970351,0.609858,0.191465,0.42599,0.470316,0.122026,0.0646215,0.543706,0.179946,0.875402,0.0452434,0.831125,0.34494,0.100573,0.831097,0.937698,0.734931,0.750033,0.00223821,0.306098,0.0859183,0.349871,0.810995,0.0588666,0.952083,0.343699,0.815579,0.493591,0.75147,0.0470593,0.221269,0.44955,0.320404,0.799562,0.445241,0.512072,0.140385,0.202553,0.81118,0.84971,0.259607,0.0860277,0.691449,0.160733,0.0641087,0.288888,0.435278,0.85832,0.789547,0.850484,0.0800202,0.0806279,0.655383,0.897652,0.511615,0.293698,0.15632,0.937375,0.260624,0.679008,0.613458,0.778258,0.948712,0.490613,0.534798,0.375675,0.278201,0.0576475,0.345214,0.689874,0.809671,0.0326322,0.98864,0.339076,0.8,0.684348,0.471445,0.195216,0.109909,0.755125,0.474491,0.264054,0.79706,0.702938,0.135196,0.867363,0.544263,0.101336,0.244737,0.184428,0.835879,0.030538,0.618727,0.895909,0.47566,0.405057,0.928575,0.42333,0.163299,0.202738,0.55124,0.172876,0.319842,0.468552,|0.801265,0.957092,0.654146,0.366298,0.69439,0.654041,0.554331,0.116399,0.063513,0.720159,0.946868,0.0185125,0.995267,0.0216513,0.352593,0.782161,0.513303,0.577646,0.335472,0.294381,0.0447553,0.572514,0.999868,0.563056,0.210514,0.401394,0.848353,0.749271,0.485036,0.876434,0.828593,0.538111,0.348176,0.474759,0.0432958,0.631109,0.0110191,0.457591,0.0190931,0.277371,0.256871,0.175163,0.977454,0.0707245,0.774627,0.064649,0.260277,0.327661,0.933864,0.147534,0.561679,0.707499,0.483126,0.836124,0.576696,0.318912,0.373182,0.969946,0.543275,0.664682,0.813462,0.042538,0.189218,0.555105,0.0923526,0.222169,0.75675,0.793286,0.304325,0.247236,0.524656,0.804849,0.115464,0.282501,0.657853,0.416448,0.978887,0.878286,0.948595,0.298668,0.395901,0.268308,0.270323,0.288414,0.518533,0.0333695,0.15687,0.606126,0.0326377,0.808959,0.0112595,0.506331,0.839396,0.292375,0.505993,0.530725,0.4464,0.453908,0.343969,0.0185793,0.438992,0.710117,0.365131,0.50068,0.928668,0.439554,0.511225,0.411502,0.20967,0.113732,0.738338,0.539518,0.629765,0.0362438,0.535548,0.253071,0.790452,0.862712,0.959248,0.466785,0.0698704,0.920939,0.711385,0.872833,0.0949785,0.512221,0.309171,0.376353,0.708051,0.726546,0.659526,0.815661,0.53103,0.449367,0.573034,0.489313,0.865374,0.146588,0.121411,0.0328003,0.432969,0.997439,0.133574,0.26039,0.892577,0.803357,0.446818,0.436591,0.799639,0.816894,0.253312,0.546973,0.472672,0.0763369,0.536081,0.881341,0.46169,0.28177,0.0139881,0.722868,0.148566,0.354391,0.458091,0.532329,0.434882,0.734914,0.453315,0.702821,0.546427,0.920645,0.582126,0.0650662,0.611347,0.900512,0.773757,0.633317,0.637745,0.104925,0.90358,0.180312,0.341317,0.0447776,0.717214,0.51209,0.985822,0.201289,0.118576,0.334327,0.790892,0.0762773,0.631192,0.111019,0.906115,0.111843,0.128498,0.549036,0.269143,0.683656,0.924733,0.591652,0.645056,0.52131,0.549056,0.433873,0.261497,0.478249,0.611899,0.973877,0.548009,0.220988,0.336885,0.434758,0.401548,0.528399,0.0690009,0.0510708,0.243566,0.245362,0.280542,0.228893,0.824895,0.0344791,0.660274,0.0441565,0.162665,0.275907,0.194986,0.326386,0.00443673,0.182286,0.245745,0.598824,0.726501,0.763102,0.406578,0.0327992,0.927129,0.709527,0.155989,0.796357,0.58072,0.260857,0.083724,0.320703,0.489618,0.16499,0.306543,0.591685,0.389697,0.40536,0.601294,0.202192,0.603558,0.821317,0.368095,0.905474,0.28945,0.149904,0.480317,0.0128233,0.17473,0.0644166,0.357988,0.923889,0.372073,0.888595,0.269421,0.400435,0.152252,0.874922,0.898836,0.448336,0.517151,0.168561,0.175792,0.245846,0.639837,0.666268,0.252203,0.123792,0.907002,0.245878,0.0567864,0.154502,0.156095,0.766666,0.782482,0.481161,0.363032,0.00697064,0.968458,0.726954,0.233237,0.456239,0.716949,0.925157,0.925145,0.702705,0.502225,0.70631,0.989405,0.736241,0.932858,0.77392,0.745498,0.733697,0.0763836,0.223282,0.59068,0.544652,0.0765254,0.908403,0.324351,0.238778,0.976728,0.170312,0.372897,0.962895,0.813449,0.391596,0.445787,0.0159122,0.774873,0.525899,0.642012,0.480659,0.421145,0.276021,0.605843,0.141149,0.971587,0.451334,0.798009,0.144359,0.873019,0.0193453,0.840328,0.28981,0.988361,0.499155,0.591406,0.988608,0.450077,0.228131,0.179492,0.0954148,0.208982,0.611679,0.243014,0.593958,0.138689,0.635955,0.419606,0.0294811,0.666103,0.41765,0.319448,0.0337193,0.563427,0.171726,0.429327,0.448893,0.640421,0.866445,0.201633,0.908038,0.218852,0.473719,0.0307492,0.537082,0.73685,0.434249,0.185123,0.743667,0.753398,0.982154,0.211092,0.335047,0.638326,0.322183,0.697803,0.888925,0.47623,0.49217,0.194809,0.768408,0.064292,0.588183,0.255437,0.312632,0.225141,0.403983,0.247731,0.965983,0.107564,0.293859,0.21979,0.777919,0.505931,0.433133,0.1124,0.0545997,0.314617,0.149963,0.769046,0.758692,0.942216,0.137129,0.298038,0.207643,0.378111,0.321032,0.59801,0.777768,0.200053,0.698746,0.179345,0.862941,0.350861,0.379514,0.263185,0.915966,0.386762,0.939151,0.50015,0.131405,0.921983,0.84365,0.5772,0.7726,0.79996,0.383335,0.00963247,0.0201539,0.96351,0.582919,0.701097,0.697322,0.454164,0.886902,0.243981,0.749927,0.0431349,0.34858,0.366284,0.81296,0.673985,0.681458,0.205825,0.673899,0.825526,0.86276,0.121344,0.393591,0.430858,0.26913,0.797793,0.137809,0.697792,0.976276,0.570247,0.394534,0.838776,0.711773,0.0580189,0.196803,0.16937,0.70401,0.570265,0.567288,0.249998,0.888578,0.243618,0.617495,0.963971,0.156128,0.475767,0.929769,0.311406,0.942944,0.756739,0.604879,0.43419,0.604646,0.644137,0.64999,0.855977,0.339589,0.0550684,0.206434,0.380549,0.608649,0.23312,0.231139,0.855705,0.815172,0.68509,0.465019,0.925878,0.926781,0.645224,0.201845,0.31531,0.157812,0.279653,0.766039,0.437359,0.512271,0.301745,0.728431,0.748173,0.451987,0.61286,0.477039,0.687452,0.58452,0.407029,0.836429,0.682444,0.429422,0.639562,0.329018,0.920947,0.129259,0.251142,0.980684,0.101116,0.0783526,0.0361216,0.478457,0.0730309,0.182034,0.941945,0.961742,0.667269,0.37616,0.647727,0.667594,0.996716,0.301908,0.429947,0.309202,0.698271,0.638008,0.0404456,0.642166,0.35504,0.529309,0.225954,0.384306,0.465311,0.735088,0.423318,0.501927,0.644393,0.171997,0.250159,0.154603,0.935718,0.636824,0.288893,0.230534,0.822345,0.843906,0.142055,0.213895,0.684474,0.609641,0.0564931,0.731316,0.310644,0.191775,0.943626,0.431556,0.246516,0.513631,0.16149,0.912055,0.176641,0.192892,0.549475,0.952824,0.223993,0.66089,0.915817,0.768127,0.0739641,0.823195,0.152636,0.235184,0.742705,0.538072,0.837533,0.583549,0.301993,0.831089,0.249263,0.972935,0.652892,0.682373,0.800842,0.314898,0.190666,0.19393,0.616258,0.868625,0.0269375,0.379844,0.747727,0.852449,0.215661,0.815947,0.005023,0.557926,0.404436,0.500121,0.00142711,0.751347,0.536831,0.831387,0.788974,0.629028,0.276356,0.663136,0.0568705,0.685315,0.460907,0.592871,0.816068,0.306179,0.471617,0.549892,0.360036,0.813806,0.325467,0.909677,0.420759,0.59615,0.684253,0.342056,0.858126,0.811615,0.254527,0.857584,0.191076,0.0709096,0.488614,0.402586,0.593979,0.453245,0.301198,0.658296,0.462398,0.644922,0.902585,0.918749,0.825958,0.0883499,0.699634,0.546683,0.0318986,0.528931,0.446092,0.120067,0.0760615,0.385316,0.98845,0.855145,0.119069,0.0707843,0.918962,0.925387,0.920368,0.0764751,0.953398,0.0504599,0.459407,0.929389,0.620123,0.605504,0.230848,0.698724,0.841839,0.892018,0.964043,0.55773,0.0130704,0.455049,0.901289,0.54118,0.228265,0.963489,0.940039,0.275427,0.743489,0.415265,0.493085,0.420865,0.0145205,0.112933,0.223599,0.286431,0.917521,0.0536682,0.558495,0.551138,0.551848,0.373248,0.769366,0.926515,0.425288,0.670223,0.373409,0.613696,0.285421,0.6522,0.739064,0.433986,0.0851399,0.690686,0.399724,0.998198,0.944174,0.441831,0.698149,0.308336,0.102459,0.825019,0.0979801,0.98179,0.829431,0.265682,0.318594,0.72407,0.254114,0.43081,0.105412,0.162107,0.788975,0.400253,0.690884,0.25351,0.313932,0.76856,0.101482,0.473173,0.60147,0.00950366,0.161722,0.760167,0.0157303,0.260902,0.719056,0.220177,0.379223,0.288673,0.421454,0.899716,0.228983,0.779432,0.470032,0.16118,0.500197,0.964671,0.296669,0.779539,0.250087,0.0800708,0.693348,0.740092,0.629307,0.116816,0.592859,0.684414,0.528881,0.754672,0.496821,0.608077,0.93564,0.0416112,0.368804,0.0567855,0.919011,0.322006,0.848761,0.24732,0.396976,0.403432,0.797806,0.869045,0.668874,0.53735,0.0137814,0.580568,0.0817528,0.770444,0.179904,0.868526,0.160519,0.0486655,0.858428,0.21861,0.187694,0.986721,0.836981,0.0349926,0.441248,0.566163,0.666596,0.235771,0.55758,0.255175,0.878431,0.997496,0.0493007,0.160848,0.554288,0.162184,0.835798,0.266677,0.653281,0.565222,0.131192,0.963743,0.884855,0.697638,0.209721,0.81553,0.14449,0.333034,0.0189956,0.837673,0.694868,0.432722,0.165717,0.871991,0.292263,0.627368,0.637473,0.483983,0.479506,0.112939,0.19995,0.117355,0.662012,0.178926,0.0774826,0.516106,0.417399,0.976797,0.724401,0.735555,0.275534,0.123153,0.384047,0.924499,0.0547543,0.880141,0.785476,0.66978,0.387012,0.099614,0.375286,0.917499,0.474372,0.410384,0.255022,0.20045,0.546412,0.503441,0.615838,0.446099,0.570865,0.70431,0.146744,0.923329,0.910135,0.249446,0.208398,0.430791,0.204213,0.774552,0.213273,0.17368,0.966454,0.0153928,0.271057,0.832772,0.23672,0.148743,0.886632,0.49566,0.606558,0.761337,0.20323,0.560798,0.57097,0.419531,0.584343,0.434887,0.616317,0.709521,0.866397,0.0934343,0.392626,0.328559,0.569123,0.877851,0.166615,0.682717,0.0585037,0.219012,0.79309,0.0459681,0.548358,0.741809,0.701587,0.492927,0.230119,0.758077,0.148375,0.825391,0.721125,0.761145,0.620107,0.502006,0.776851,0.583509,0.599388,0.640937,0.309498,0.819826,0.976525,0.560564,0.829046,0.691881,0.507446,0.168672,0.680072,0.535769,0.732589,0.396688,0.461189,0.689094,0.684961,0.793617,0.349179,0.918147,0.0835353,0.151367,0.724031,0.302797,0.422715,0.46104,0.372431,0.902036,0.161144,0.415669,0.927226,0.263101,0.00635225,0.153196,0.454608,0.700832,0.692425,0.637201,0.627734,0.871493,0.419326,0.937655,0.471233,0.710534,0.621169,0.349633,0.185683,0.0221975,0.973495,0.50539,0.314744,0.27127,0.484263,0.715668,0.705337,0.408979,0.668495,0.997401,0.856103,0.287509,0.879578,0.832818,0.335936,0.554037,0.117793,0.409001,0.444201,0.19021,0.522704,0.0312377,0.0110521,0.493427,|0.823296,0.749865,0.655015,0.235774,0.560022,0.0506243,0.222253,0.537568,0.621722,0.91232,0.247109,0.0509213,0.701426,0.40583,0.497418,0.968928,0.769549,0.882432,0.515824,0.397489,0.842558,0.0542936,0.96539,0.00198686,0.57818,0.429006,0.0614675,0.487177,0.205526,0.136343,0.78919,0.396099,0.626102,0.336333,0.945972,0.660036,0.0698013,0.649459,0.143048,0.96928,0.639457,0.81773,0.830885,0.244171,0.325646,0.566794,0.367954,0.366002,0.414011,0.564743,0.826802,0.354621,0.981613,0.0286211,0.550621,0.003434,0.58624,0.746398,0.0399609,0.609227,0.502581,0.615364,0.833831,0.769716,0.528202,0.588817,0.814006,0.200395,0.697491,0.878827,0.932182,0.859798,0.0397649,0.0797684,0.955583,0.619061,0.668281,0.203262,0.288098,0.344592,0.786011,0.187436,0.81275,0.921274,0.00252223,0.887292,0.145869,0.767561,0.544101,0.97678,0.342838,0.542589,0.903776,0.445358,0.88352,0.451862,0.848691,0.81767,0.38963,0.315557,0.579674,0.38287,0.679716,0.753929,0.719263,0.679144,0.0991129,0.974735,0.915924,0.648551,0.635936,0.0732397,0.612453,0.447046,0.541784,0.97598,0.406117,0.186276,0.804781,0.406928,0.19788,0.431359,0.690831,0.689271,0.27652,0.625389,0.263384,0.286766,0.249783,0.76542,0.148959,0.240636,0.225768,0.432276,0.855066,0.620444,0.0475652,0.593938,0.5972,0.504318,0.900211,0.395219,0.0717471,0.707437,0.476645,0.312122,0.266075,0.654343,0.279383,0.855561,0.417836,0.920543,0.608224,0.715684,0.900828,0.677675,0.856846,0.647574,0.851839,0.274455,0.529652,0.797917,0.466654,0.0540375,0.293954,0.0704794,0.248617,0.617533,0.533181,0.588801,0.128045,0.41092,0.555732,0.371478,0.843953,0.844146,0.263898,0.554721,0.912733,0.373401,0.884497,0.2817,0.721319,0.65647,0.406177,0.825749,0.641342,0.827723,0.460913,0.659208,0.0928696,0.441439,0.202519,0.0961335,0.734801,0.324,0.997949,0.390183,0.772974,0.950209,0.0403609,0.0627569,0.269864,0.109834,0.956353,0.21701,0.392718,0.370137,0.0964976,0.164966,0.171668,0.384792,0.524304,0.249924,0.351546,0.782624,0.668651,0.830381,0.645933,0.0685901,0.398301,0.784754,0.2624,0.437402,0.488833,0.132348,0.218576,0.556044,0.552255,0.250083,0.964265,0.562668,0.795871,0.378056,0.173628,0.334223,0.533108,0.901119,0.0743186,0.345316,0.730564,0.499145,0.646933,0.395926,0.195706,0.435812,0.785008,0.654122,0.820674,0.244456,0.736075,0.328117,0.430557,0.146546,0.919425,0.754618,0.617462,0.142039,0.14894,0.87172,0.0378613,0.6476,0.219371,0.0131086,0.992345,0.735392,0.699498,0.214236,0.203061,0.710667,0.132893,0.386459,0.787602,0.209941,0.179622,0.45403,0.841164,0.570965,0.276591,0.793795,0.381919,0.239,0.771103,0.386289,0.282038,0.719404,0.65907,0.223719,0.465252,0.908996,0.600974,0.675677,0.14902,0.604095,0.313625,0.621683,0.397305,0.840293,0.186308,0.396088,0.100541,0.366842,0.995566,0.881464,0.908546,0.952446,0.44093,0.234722,0.947773,0.907376,0.831675,0.979863,0.317075,0.749981,0.991153,0.484534,0.627283,0.0184442,0.838986,0.259944,0.480077,0.483383,0.523661,0.324232,0.94112,0.380539,0.696495,0.615871,0.871545,0.74912,0.492553,0.327631,0.0124253,0.493738,0.149357,0.181686,0.0585698,0.210773,0.775619,0.508664,0.157633,0.110933,0.0626257,0.680541,0.431865,0.648319,0.272765,0.192618,0.906376,0.598007,0.320174,0.707377,0.931344,0.367163,0.131584,0.72954,0.416264,0.251284,0.791563,0.485541,0.677794,0.397494,0.852107,0.912429,0.400046,0.153729,0.808402,0.371447,0.307273,0.727157,0.835701,0.275131,0.819932,0.349303,0.480486,0.39906,0.349889,0.188451,0.432487,0.169542,0.952725,0.600303,0.50567,0.386278,0.23926,0.870059,0.0224489,0.863541,0.0797014,0.0907902,0.977085,0.609407,0.581529,0.705839,0.513575,0.436264,0.846041,0.889404,0.257835,0.959879,0.450678,0.242419,0.701172,0.535352,0.802982,0.865934,0.331417,0.0439546,0.538886,0.755853,0.0794873,0.277224,0.382268,0.674116,0.949469,0.554897,0.371123,0.73396,0.0162542,0.431881,0.383632,0.238956,0.881918,0.594604,0.117874,0.111608,0.847597,0.0671047,0.263778,0.444336,0.402125,0.440433,0.695856,0.278883,0.123424,0.444779,0.819571,0.232514,0.562673,0.403087,0.740984,0.270676,0.784485,0.876316,0.515568,0.778233,0.261809,0.575737,0.392471,0.293324,0.316595,0.792241,0.054135,0.155356,0.431066,0.821595,0.541903,0.206583,0.796489,0.29093,0.308373,0.818072,0.757857,0.61135,0.807892,0.0306947,0.290762,0.680727,0.669329,0.782781,0.460521,0.0937217,0.719463,0.317471,0.176886,0.604489,0.211873,0.740343,0.26561,0.156391,0.761602,0.517996,0.46893,0.644002,0.338372,0.87438,0.714438,0.573345,0.0805909,0.620287,0.804147,0.874136,0.025803,0.0629577,0.0582136,0.624196,0.302296,0.829836,0.967739,0.755478,0.0789751,0.269953,0.758876,0.311733,0.236668,0.48412,0.371921,0.461427,0.347869,0.586277,0.00215048,0.367572,0.415981,0.469384,0.708754,0.557496,0.165713,0.596078,0.449719,0.682831,0.867985,0.101371,0.115498,0.737843,0.719146,0.152096,0.669098,0.310383,0.912743,0.269449,0.349297,0.551896,0.454829,0.990067,0.384098,0.696324,0.151928,0.363913,0.640157,0.815016,0.232944,0.0989958,0.774335,0.836337,0.357653,0.0388325,0.0843642,0.957535,0.986673,0.524729,0.159958,0.353435,0.0138266,0.414962,0.0991142,0.17732,0.999832,0.87525,0.243019,0.329196,0.264407,0.571838,0.131767,0.534202,0.257687,0.382034,0.461637,0.219316,0.160875,0.324819,0.0794743,0.741683,0.322318,0.979421,0.783348,0.682238,0.763977,0.599859,0.661516,0.200851,0.932657,0.759146,0.124161,0.892255,0.268504,0.374085,0.731015,0.691574,0.960759,0.870034,0.860091,0.540146,0.848608,0.767108,0.378958,0.416313,0.0446891,0.830223,0.162206,0.116485,0.983684,0.54879,0.0168766,0.937328,0.24848,0.426679,0.341804,0.218724,0.81117,0.724985,0.321993,0.859773,0.193943,0.911719,0.569746,0.205487,0.544681,0.53027,0.425797,0.462604,0.630807,0.112429,0.621382,0.224278,0.788176,0.967467,0.320652,0.357474,0.778754,0.587229,0.871197,0.412471,0.890764,0.273447,0.693066,0.493521,0.0597056,0.942065,0.0856376,0.655084,0.392641,0.685766,0.345999,0.18442,0.0819548,0.552172,0.833235,0.66198,0.765756,0.57362,0.146102,0.916141,0.303224,0.802776,0.21691,0.250252,0.962451,0.928093,0.333682,0.95408,0.0140095,0.43752,0.274597,0.0112097,0.751475,0.106101,0.861441,0.788339,0.130278,0.7026,0.867065,0.368382,0.600454,0.0496354,0.877251,0.677313,0.3005,0.34207,0.182394,0.293939,0.820094,0.722205,0.701912,0.744524,0.110069,0.438303,0.523286,0.658598,0.20685,0.70252,0.421446,0.548507,0.286748,0.769497,0.435449,0.428337,0.756904,0.730926,0.616003,0.245065,0.20954,0.145944,0.071677,0.530775,0.689646,0.586309,0.657013,0.685872,0.848683,0.991033,0.472604,0.873724,0.696932,0.173268,0.716856,0.0563954,0.814383,0.223928,0.201351,0.933042,0.309843,0.678606,0.923794,0.380332,0.216459,0.873803,0.853592,0.899817,0.37243,0.306114,0.534867,0.0868249,0.713382,0.769936,0.84788,0.223907,0.461837,0.347661,0.237157,0.469221,0.761236,0.790989,0.00988179,0.706069,0.53214,0.23785,0.0135397,0.101242,0.422388,0.247343,0.923574,0.0364503,0.428477,0.376671,0.47295,0.960852,0.507799,0.290844,0.796089,0.19339,0.839584,0.486671,0.499714,0.0641477,0.724259,0.49425,0.297356,0.291356,0.425832,0.555012,0.557998,0.146426,0.917186,0.135143,0.737542,0.1461,0.993266,0.535333,0.232457,0.907779,0.777024,0.451744,0.973809,0.630445,0.606153,0.146163,0.454382,0.849027,0.279678,0.740068,0.322627,0.12944,0.35532,0.74071,0.544045,0.156393,0.881375,0.1766,0.186135,0.346433,0.977438,0.951551,0.0951172,0.835874,0.0711128,0.0984302,0.191899,0.654312,0.39115,0.042087,0.605286,0.0716612,0.00258964,0.639897,0.674085,0.593867,0.319768,0.469285,0.605077,0.709493,0.52641,0.0962439,0.169566,0.772115,0.0691372,0.785936,0.253381,0.328077,0.567851,0.468624,0.569565,0.16655,0.0934346,0.214402,0.826393,0.927261,0.432607,0.538569,0.917534,0.808768,0.656059,0.54934,0.355974,0.559178,0.158724,0.644659,0.351019,0.953093,0.638823,0.0830351,0.183051,0.899187,0.374134,0.896909,0.825779,0.539579,0.0711691,0.105396,0.306728,0.924753,0.189017,0.844788,0.109213,0.102081,0.280586,0.0825394,0.952194,0.600078,0.170089,0.866093,0.596292,0.790423,0.537945,0.962125,0.434751,0.305597,0.160243,0.281018,0.201441,0.331795,0.166981,0.555831,0.655593,0.330329,0.205571,0.565872,0.156002,0.513137,0.10465,0.411958,0.835527,0.205399,0.599126,0.272426,0.0673356,0.945749,0.553701,0.514578,0.333153,0.786788,0.53652,0.134233,0.918903,0.871899,0.672853,0.150986,0.705629,0.800741,0.175583,0.32078,0.604834,0.532094,0.785315,0.465879,0.0628194,0.157999,0.623723,0.295437,0.705892,0.107029,0.104935,0.884696,0.443616,0.486801,0.8459,0.640801,0.862751,0.488432,0.443033,0.475058,0.687127,0.091585,0.961011,0.230727,0.695525,0.433601,0.79099,0.356628,0.604756,0.801376,0.743401,0.916129,0.0388757,0.642042,0.0400596,0.937835,0.0883942,0.877572,0.277721,0.493905,0.566357,0.735989,0.169586,0.33196,0.49571,0.279059,0.207064,0.312608,0.824806,0.42349,0.11774,0.317648,0.192393,0.452786,0.658925,0.0840646,0.148313,0.589705,0.0419714,0.821687,0.598945,0.180061,0.871753,0.909474,0.135799,0.0439287,0.903027,0.844608,0.474931,0.154939,0.117008,0.265657,0.437264,0.796458,0.179395,0.908535,0.0522426,0.845335,0.206234,0.566291,0.366935,0.15139,0.660725,0.644413,0.410401,0.820486,0.994639,0.280527,0.616851,0.621963,|0.382769,0.613946,0.584675,0.715756,0.698493,0.591999,0.65535,0.099124,0.821542,0.0828119,0.371754,0.582146,0.754198,0.896489,0.42614,0.526702,0.300059,0.71601,0.525667,0.77748,0.763378,0.418404,0.773389,0.287671,0.279119,0.908127,0.69358,0.327283,0.246627,0.620733,0.486436,0.948468,0.720108,0.887767,0.291853,0.623493,0.401444,0.691693,0.855144,0.710483,0.471345,0.157772,0.459814,0.485329,0.184009,0.13733,0.0737818,0.7598,0.235596,0.219994,0.973195,0.670212,0.147078,0.548491,0.383964,0.384709,0.0904458,0.812545,0.785118,0.537911,0.315577,0.495532,0.487698,0.940213,0.298011,0.326131,0.0802425,0.0229331,0.0603372,0.00171274,0.791544,0.621335,0.402534,0.868483,0.763121,0.725858,0.980158,0.590681,0.720833,0.732021,0.573507,0.81559,0.37851,0.0315491,0.941728,0.0640368,0.00123954,0.666135,0.137316,0.563833,0.570782,0.0519512,0.252354,0.0771769,0.200604,0.187825,0.0510867,0.312911,0.455002,0.279595,0.0582262,0.481515,0.492851,0.902826,0.520483,0.720235,0.226602,0.383029,0.0761571,0.167319,0.291165,0.307251,0.0288153,0.702171,0.58373,0.432469,0.388507,0.423094,0.659465,0.43879,0.564303,0.885499,0.776259,0.835073,0.427845,0.437366,0.500469,0.364552,0.941248,0.40862,0.929245,0.253611,0.0683292,0.464532,0.20948,0.483213,0.104821,0.215511,0.938042,0.781161,0.733931,0.579947,0.657489,0.0418371,0.278361,0.89574,0.341715,0.428002,0.119337,0.0447589,0.69647,0.20009,0.95613,0.427462,0.637352,0.310453,0.185873,0.735552,0.619973,0.370871,0.473348,0.996063,0.307302,0.422435,0.184502,0.824816,0.539989,0.319055,0.195353,0.272066,0.516079,0.107894,0.189745,0.420535,0.755097,0.745382,0.786685,0.118324,0.388953,0.0914817,0.240097,0.115541,0.219699,0.3064,0.740649,0.995584,0.694462,0.197715,0.0933326,0.444227,0.135038,0.25963,0.233724,0.762073,0.773787,0.506895,0.549111,0.857239,0.26797,0.296188,0.811967,0.590147,0.383459,0.100031,0.931475,0.551491,0.408659,0.489637,0.732185,0.294084,0.435526,0.508388,0.144688,0.359063,0.471909,0.00890464,0.805192,0.388912,0.199328,0.510619,0.895552,0.417735,0.981917,0.960879,0.0402243,0.100011,0.0230043,0.315293,0.839996,0.259458,0.376782,0.684046,0.815295,0.402648,0.595319,0.863919,0.604532,0.173299,0.160879,0.629167,0.37624,0.599472,0.955615,0.731009,0.0935763,0.81906,0.115427,0.97075,0.040773,0.00717479,0.791769,0.719054,0.875995,0.874468,0.151564,0.567256,0.774657,0.0647237,0.381976,0.787414,0.624964,0.387238,0.144349,0.619141,0.970466,0.520331,0.0403005,0.546872,0.871158,0.848612,0.495636,0.506717,0.93543,0.185865,0.0357012,0.924038,0.155724,0.0933668,0.52988,0.601679,0.985335,0.655456,0.885014,0.703038,0.345322,0.390112,0.931695,0.0216523,0.914077,0.32716,0.735495,0.0342436,0.304833,0.221484,0.79622,0.72444,0.448811,0.378386,0.887579,0.879096,0.252332,0.579364,0.631522,0.312104,0.0584952,0.629554,0.941937,0.358568,0.000330091,0.539657,0.0664467,0.865037,0.952434,0.426975,0.544253,0.52913,0.971712,0.721745,0.516414,0.988385,0.638353,0.81514,0.326966,0.651046,0.340679,0.579807,0.568957,0.696619,0.870975,0.13261,0.454115,0.89005,0.0825405,0.442159,0.692529,0.0863298,0.94543,0.186805,0.273538,0.876661,0.194115,0.737193,0.53666,0.744675,0.0880987,0.927354,0.838754,0.328145,0.776775,0.0384911,0.383027,0.236633,0.196394,0.365908,0.737629,0.452866,0.0573812,0.148025,0.706703,0.336541,0.981447,0.752358,0.655635,0.262437,0.790594,0.899383,0.539104,0.377032,0.292367,0.0959048,0.981395,0.407653,0.431006,0.795854,0.476686,0.952017,0.643255,0.666595,0.523705,0.766252,0.452103,0.503005,0.594972,0.836587,0.303607,0.826465,0.629807,0.509074,0.416753,0.557072,0.39637,0.351161,0.172954,0.405226,0.0323156,0.492342,0.0469058,0.828777,0.320853,0.175985,0.405661,0.371001,0.0590954,0.876927,0.235194,0.899501,0.233103,0.289011,0.935135,0.615889,0.876258,0.956914,0.24923,0.635511,0.777961,0.772548,0.550084,0.80508,0.468078,0.584198,0.864421,0.561434,0.882104,0.486548,0.0936561,0.141426,0.370422,0.944365,0.228125,0.7471,0.680171,0.456895,0.763836,0.77177,0.684305,0.58518,0.994884,0.501664,0.779088,0.504759,0.863466,0.232026,0.970702,0.901593,0.529498,0.15174,0.511975,0.164636,0.446609,0.0167983,0.807383,0.484458,0.918759,0.829503,0.807709,0.69842,0.107297,0.0150142,0.890226,0.61166,0.774162,0.492763,0.134296,0.241512,0.876237,0.449009,0.547348,0.831049,0.359261,0.916144,0.855194,0.185801,0.714051,0.73594,0.75622,0.0208556,0.442915,0.156581,0.22274,0.553462,0.226369,0.598155,0.679652,0.353767,0.32168,0.604482,0.489423,0.412555,0.346983,0.18679,0.856396,0.765102,0.828533,0.864148,0.39915,0.480245,0.538827,0.932636,0.620211,0.386835,0.0363382,0.657121,0.512615,0.403445,0.174753,0.128969,0.306974,0.682564,0.815833,0.753811,0.453832,0.722194,0.0562338,0.169291,0.0092063,0.936309,0.8247,0.516394,0.893817,0.849223,0.812371,0.441082,0.494493,0.988817,0.299315,0.420821,0.15055,0.138502,0.494835,0.854671,0.873932,0.887622,0.219439,0.224828,0.469475,0.938893,0.160127,0.591777,0.0826362,0.833892,0.30522,0.43078,0.22659,0.893204,0.44693,0.145709,0.580009,0.335703,0.968509,0.629961,0.294732,0.543053,0.171354,0.780254,0.12509,0.806799,0.981408,0.534317,0.185058,0.906366,0.418802,0.672646,0.135291,0.659139,0.0792165,0.599571,0.33769,0.66476,0.476624,0.374792,0.185457,0.451721,0.636978,0.116631,0.0920638,0.624759,0.553342,0.282247,0.674698,0.136553,0.0393237,0.971513,0.635742,0.274156,0.623335,0.274117,0.705862,0.320969,0.631787,0.994421,0.118152,0.303229,0.688126,0.410448,0.0654543,0.346817,0.37905,0.00945407,0.267099,0.608567,0.052667,0.941898,0.333789,0.599159,0.287802,0.159953,0.988708,0.830607,0.262477,0.100996,0.119416,0.594387,0.884165,0.0448115,0.734892,0.743627,0.697828,0.124379,0.0974068,0.607516,0.969727,0.299154,0.775937,0.00311357,0.897572,0.350547,0.119313,0.682421,0.25344,0.811117,0.356354,0.589892,0.471817,0.665881,0.585497,0.44334,0.130508,0.223934,0.67688,0.237544,0.848418,0.250914,0.596223,0.414705,0.786342,0.0840918,0.215622,0.633295,0.495602,0.349586,0.0257295,0.468868,0.857215,0.670157,0.225861,0.802307,0.455226,0.706405,0.799805,0.472288,0.883738,0.923727,0.991395,0.209624,0.687141,0.999842,0.672161,0.441304,0.181492,0.939975,0.441656,0.684471,0.0767974,0.654719,0.854163,0.490128,0.73575,0.923572,0.931667,0.597837,0.695672,0.323559,0.418253,0.748688,0.665124,0.713877,0.0228214,0.98148,0.918484,0.76169,0.249965,0.475883,0.52782,0.813911,0.5523,0.220516,0.523696,0.725028,0.404394,0.278623,0.994963,0.894246,0.1295,0.948552,0.459935,0.213643,0.211603,0.062032,0.0849482,0.169486,0.872532,0.917105,0.388493,0.721021,0.882692,0.652556,0.941237,0.161336,0.543567,0.321521,0.0321202,0.566441,0.244314,0.626332,0.20438,0.353084,0.303832,0.878477,0.23991,0.200978,0.686678,0.490638,0.911128,0.525036,0.0212452,0.717743,0.518291,0.358878,0.0493385,0.791242,0.833508,0.113672,0.773188,0.942169,0.372995,0.190575,0.716453,0.525079,0.36968,0.510853,0.529843,0.967229,0.926702,0.910414,0.547564,0.341962,0.140166,0.680763,0.49023,0.204721,0.850513,0.822305,0.334747,0.0611668,0.88289,0.756554,0.713298,0.839708,0.771516,0.831934,0.00773507,0.0474718,0.594566,0.404181,0.284309,0.127898,0.265454,0.337095,0.432895,0.407923,0.932538,0.548753,0.75329,0.597849,0.398541,0.599941,0.0344432,0.520807,0.589288,0.927793,0.354675,0.367371,0.350531,0.271391,0.337674,0.133982,0.732781,0.278242,0.604554,0.464951,0.383838,0.65665,0.439984,0.259993,0.22517,0.0613165,0.073821,0.953546,0.0805202,0.333344,0.87164,0.425441,0.947181,0.968766,0.0870512,0.0602443,0.330974,0.66307,0.470225,0.713883,0.335799,0.0115523,0.126704,0.422374,0.366105,0.0171589,0.95815,0.392531,0.521302,0.445792,0.242125,0.117494,0.35825,0.422579,0.94478,0.181878,0.320781,0.314896,0.638794,0.894352,0.907931,0.50793,0.898671,0.647357,0.202719,0.049168,0.27143,0.0119927,0.479625,0.673299,0.610013,0.800669,0.371671,0.322372,0.848231,0.277389,0.534891,0.429677,0.302383,0.193954,0.752364,0.802075,0.668477,0.393496,0.36711,0.419278,0.839328,0.709567,0.126717,0.769131,0.368554,0.914198,0.115435,0.812766,0.705633,0.44891,0.532257,0.512858,0.410921,0.286059,0.575119,0.68128,0.449435,0.949272,0.873525,0.266941,0.590143,0.338444,0.576275,0.674808,0.316368,0.331757,0.186818,0.620789,0.646604,0.923634,0.340329,0.446959,0.660541,0.482311,0.00140077,0.562481,0.101635,0.0872014,0.469167,0.228628,0.154683,0.196017,0.728598,0.501491,0.110656,0.570579,0.236494,0.0918196,0.713293,0.120183,0.840479,0.505666,0.658722,0.463119,0.0852088,0.743541,0.817416,0.498472,0.530497,0.151965,0.89432,0.30218,0.0282211,0.276296,0.416675,0.640259,0.822198,0.857844,0.057734,0.464645,0.323087,0.347617,0.573507,0.569851,0.351008,0.537127,0.103839,0.377871,0.97999,0.66947,0.74234,0.965845,0.498416,0.320963,0.557747,0.506052,0.52974,0.312319,0.317712,0.645029,0.718357,0.536682,0.233211,0.0747883,0.324537,0.592175,0.616258,0.244535,0.443715,0.880094,0.240894,0.901933,0.819626,0.24992,0.980287,0.162913,0.13071,0.175907,0.391866,0.150449,0.00478584,0.756501,0.934202,0.283257,0.784664,0.859426,0.222427,0.0874108,0.684015,0.169326,0.63067,0.0291442,0.269622,0.723039,0.337773,0.97302,0.342947,0.567352,0.0593522,0.466659,0.904939,0.880282,0.52164,0.840463,|0.12112,0.440019,0.783892,0.576484,0.27133,0.53149,0.623049,0.163349,0.439203,0.491466,0.191273,0.981562,0.75543,0.897851,0.932499,0.171759,0.030921,0.153458,0.085548,0.435778,0.694309,0.757574,0.0261956,0.41539,0.0201963,0.144738,0.342697,0.797784,0.953962,0.0067699,0.862723,0.113441,0.44278,0.231152,0.813699,0.576334,0.0179719,0.683443,0.502074,0.24175,0.51332,0.709532,0.941509,0.262478,0.11737,0.877294,0.378001,0.340197,0.551814,0.707869,0.431893,0.370461,0.28996,0.945976,0.966589,0.694275,0.369801,0.971579,0.287887,0.0838535,0.154672,0.142533,0.107871,0.633392,0.0870693,0.807684,0.98328,0.453836,0.961864,0.445119,0.517717,0.0556105,0.543467,0.363943,0.884102,0.626718,0.830856,0.651975,0.143237,0.298899,0.750102,0.0188487,0.148118,0.654238,0.856371,0.880095,0.424688,0.31535,0.0532957,0.218438,0.0103902,0.858126,0.965047,0.855641,0.191158,0.124793,0.488141,0.186712,0.204219,0.500197,0.878861,0.448059,0.0969536,0.302795,0.78624,0.100393,0.229463,0.508102,0.0192335,0.513716,0.106113,0.169798,0.426933,0.862301,0.486171,0.688384,0.578697,0.344301,0.823718,0.158816,0.890055,0.137224,0.180664,0.0366454,0.356137,0.863315,0.898804,0.221791,0.0850604,0.849681,0.108433,0.653045,0.379749,0.106078,0.56236,0.262736,0.965204,0.957624,0.715362,0.452419,0.581589,0.0879377,0.213217,0.735675,0.293438,0.693471,0.906566,0.1494,0.4044,0.679914,0.973586,0.93353,0.639524,0.329493,0.112253,0.949385,0.851891,0.641918,0.8401,0.825109,0.125569,0.988527,0.873253,0.302977,0.61736,0.566166,0.698774,0.495984,0.317387,0.484281,0.393491,0.077317,0.39883,0.594109,0.887604,0.124908,0.515474,0.991656,0.359648,0.103317,0.167652,0.197407,0.818774,0.330301,0.925308,0.116718,0.153393,0.31142,0.198176,0.844862,0.543921,0.557803,0.933237,0.515725,0.177349,0.885739,0.0213905,0.814499,0.504156,0.375729,0.842839,0.449745,0.782518,0.1176,0.678111,0.251339,0.30418,0.894187,0.547592,0.798246,0.866392,0.864306,0.709362,0.432008,0.766975,0.746232,0.357953,0.5107,0.484479,0.505434,0.275147,0.512591,0.752628,0.782194,0.573268,0.330786,0.853449,0.397598,0.0832428,0.906478,0.542142,0.249573,0.410896,0.674849,0.848922,0.787748,0.962425,0.289128,0.845289,0.168664,0.859768,0.813122,0.634937,0.899563,0.0494183,0.828761,0.169284,0.340521,0.725126,0.4734,0.0400253,0.932256,0.94521,0.977305,0.162038,0.633458,0.681715,0.531206,0.0881574,0.986284,0.903243,0.447624,0.387677,0.294,0.85983,0.0849555,0.0984605,0.676533,0.694339,0.563316,0.451796,0.0616335,0.116675,0.787806,0.638914,0.551187,0.35224,0.537636,0.643573,0.746842,0.82494,0.561507,0.477001,0.66705,0.348187,0.923743,0.133427,0.587981,0.445383,0.78343,0.762817,0.779881,0.792969,0.118719,0.166246,0.948032,0.613759,0.406915,0.191601,0.73428,0.630801,0.766557,0.258207,0.289283,0.261142,0.0444735,0.914138,0.838128,0.659637,0.223772,0.419593,0.031539,0.893507,0.34675,0.039506,0.734222,0.312522,0.0805563,0.798639,0.152365,0.928112,0.401522,0.726434,0.218952,0.189303,0.933525,0.775158,0.104632,0.874521,0.587995,0.69146,0.714517,0.260016,0.898662,0.28161,0.445088,0.645744,0.871114,0.730631,0.113554,0.257864,0.656467,0.408592,0.552433,0.376087,0.0945774,0.356073,0.35389,0.2883,0.959903,0.580861,0.230492,0.889449,0.722077,0.784645,0.0991324,0.705299,0.279518,0.968463,0.158438,0.918949,0.0976266,0.466469,0.00946611,0.303119,0.462303,0.319336,0.191371,0.139838,0.703159,0.896636,0.674195,0.798058,0.656687,0.674501,0.528696,0.61219,0.773417,0.76129,0.00285751,0.453038,0.380433,0.0122278,0.407976,0.920318,0.0191414,0.366389,0.39055,0.865209,0.757352,0.658763,0.149943,0.591453,0.7744,0.988,0.496544,0.48105,0.253789,0.455935,0.737042,0.282532,0.820189,0.227633,0.379211,0.173292,0.354881,0.570833,0.190924,0.679368,0.368097,0.259616,0.451334,0.0721823,0.847672,0.33697,0.396084,0.563821,0.739501,0.917338,0.636565,0.803034,0.45107,0.611404,0.150328,0.506452,0.815836,0.969584,0.433159,0.941441,0.0455347,0.0672303,0.727827,0.122318,0.485023,0.58563,0.212631,0.0703749,0.437826,0.189552,0.809296,0.0278969,0.409651,0.754048,0.945582,0.928885,0.643212,0.236273,0.853018,0.467593,0.991929,0.0260876,0.105536,0.832547,0.125059,0.718679,0.0304068,0.118349,0.787317,0.374907,0.475381,0.310564,0.200566,0.821393,0.459406,0.508672,0.834925,0.766264,0.654778,0.876263,0.225827,0.779444,0.369343,0.998656,0.6561,0.714773,0.459447,0.326287,0.781383,0.831841,0.214351,0.500096,0.654029,0.947183,0.373699,0.0938921,0.0342059,0.548058,0.277377,0.0951251,0.579603,0.559551,0.875165,0.51915,0.124012,0.9717,0.718965,0.182359,0.8729,0.21607,0.450476,0.687539,0.320943,0.150309,0.381408,0.382764,0.1955,0.496517,0.647034,0.803601,0.533034,0.89333,0.643054,0.626131,0.126223,0.0964398,0.248649,0.376002,0.160692,0.873643,0.913038,0.95595,0.83221,0.93736,0.227171,0.968076,0.766053,0.999151,0.451302,0.204034,0.848471,0.405748,0.533726,0.289897,0.725515,0.402179,0.639648,0.135365,0.223907,0.341782,0.893251,0.345706,0.00410205,0.668676,0.424743,0.087492,0.959118,0.951437,0.950245,0.865586,0.425527,0.595187,0.24805,0.143802,0.453033,0.184555,0.137502,0.605981,0.0747094,0.247561,0.000289679,0.319845,0.242295,0.882853,0.582579,0.267833,0.00274873,0.42575,0.0518844,0.583176,0.446668,0.712313,0.596333,0.103555,0.202876,0.126844,0.679486,0.840629,0.917006,0.680001,0.191098,0.92716,0.752241,0.862485,0.114268,0.707451,0.944672,0.620154,0.755933,0.0175006,0.276922,0.125657,0.522322,0.857191,0.601266,0.289496,0.868973,0.693926,0.53691,0.366145,0.826101,0.634674,0.582442,0.342887,0.694231,0.901453,0.352475,0.493899,0.160232,0.693154,0.104015,0.624045,0.624929,0.971532,0.690136,0.444513,0.434191,0.844442,0.802212,0.575339,0.0402473,0.907302,0.962178,0.479893,0.358751,0.941909,0.761701,0.379661,0.940175,0.0546858,0.971384,0.309886,0.287968,0.917718,0.67118,0.068729,0.749354,0.838901,0.963952,0.294428,0.653764,0.760744,0.474928,0.525953,0.0606482,0.650883,0.00763535,0.45835,0.0487832,0.338421,0.814862,0.105193,0.699737,0.683102,0.297423,0.43921,0.47151,0.514351,0.623301,0.492269,0.584659,0.475304,0.512623,0.592481,0.751959,0.755976,0.249225,0.223338,0.235675,0.254966,0.236875,0.472792,0.909475,0.230247,0.110655,0.400249,0.365157,0.158969,0.987365,0.391534,0.521674,0.370365,0.796528,0.813874,0.992077,0.379785,0.501776,0.262883,0.84301,0.811636,0.690205,0.433793,0.146368,0.44991,0.933613,0.0294668,0.483081,0.811533,0.879567,0.196016,0.962118,0.0284346,0.171919,0.233779,0.330701,0.115137,0.821941,0.173246,0.26453,0.64223,0.75691,0.753029,0.169088,0.152794,0.804241,0.0668902,0.86706,0.915251,0.783655,0.323391,0.289591,0.359424,0.954649,0.682911,0.602108,0.482318,0.50864,0.667097,0.527615,0.439836,0.481951,0.780532,0.5237,0.196789,0.181756,0.0105718,0.841852,0.37839,0.316791,0.693601,0.560409,0.866922,0.148568,0.224983,0.759186,0.833091,0.62004,0.689087,0.517595,0.119553,0.885467,0.210763,0.900946,0.310715,0.341096,0.976145,0.443499,0.0781168,0.0615104,0.574642,0.697021,0.541079,0.928495,0.262589,0.661804,0.117277,0.131675,0.199329,0.373498,0.0216063,0.578502,0.64748,0.239414,0.595753,0.69395,0.316221,0.602763,0.960507,0.847873,0.4707,0.150587,0.145074,0.511444,0.82318,0.239572,0.360206,0.628585,0.683027,0.787644,0.191062,0.790209,0.745778,5.26309e-05,0.995182,0.392677,0.133829,0.138792,0.195564,0.232149,0.450753,0.436059,3.95179e-05,0.655847,0.44623,0.774313,0.08438,0.0517423,0.277639,0.674467,0.118781,0.964436,0.777959,0.279755,0.591034,0.614312,0.341445,0.740103,0.375347,0.756103,0.729739,0.557172,0.130788,0.85466,0.562371,0.105145,0.882508,0.575416,0.449628,0.948386,0.524687,0.620337,0.925428,0.488837,0.239227,0.215561,0.377933,0.764738,0.179907,0.414488,0.164529,0.68601,0.917158,0.378536,0.180433,0.4633,0.434562,0.896268,0.598922,0.605511,0.751941,0.141262,0.432416,0.785051,0.101936,0.365204,0.496952,0.772407,0.801213,0.153013,0.675014,0.643933,0.391658,0.266437,0.0465334,0.345483,0.370084,0.740328,0.254083,0.205924,0.0505792,0.325028,0.645138,0.0057826,0.359125,0.660466,0.351992,0.374784,0.124317,0.679241,0.467464,0.679985,0.564457,0.245005,0.949154,0.746215,0.0221977,0.438633,0.0748343,0.876079,0.281973,0.833513,0.360565,0.775017,0.975577,0.758556,0.665047,0.922748,0.764609,0.337655,0.540587,0.739565,0.998399,0.00880367,0.62081,0.328525,0.0670668,0.312527,0.587894,0.869865,0.916524,0.0416706,0.267348,0.443977,0.764061,0.831939,0.439259,0.758243,0.955794,0.512072,0.869593,0.672244,0.254438,0.977224,0.450098,0.0473999,0.520697,0.229679,0.359993,0.246827,0.891105,0.678754,0.560812,0.330106,0.875375,0.182278,0.242126,0.291118,0.66804,0.855983,0.0129302,0.755669,0.927977,0.916592,0.0322473,0.115731,0.598422,0.899157,0.981106,0.844251,0.701384,0.786996,0.760377,0.473981,0.224065,0.530738,0.998003,0.423613,0.554529,0.921704,0.67944,0.257627,0.00580627,0.267689,0.353755,0.0511013,0.894633,0.199963,0.0420704,0.90281,0.184826,0.875804,0.0301728,0.525687,0.347724,0.77383,0.367771,0.938639,0.745076,0.628256,0.805957,0.747082,0.810009,0.815081,0.298002,0.849832,0.65305,0.191851,0.884931,0.386504,0.592788,0.436756,0.582378,0.041114,0.875152,0.435762,0.0907118,0.646858,0.328584,0.216764,0.896564,0.907841,|0.360055,0.793327,0.904916,0.876572,0.976561,0.552359,0.00501114,0.815909,0.577314,0.498975,0.102332,0.0384938,0.423949,0.472604,0.0915243,0.759806,0.830992,0.258162,0.348766,0.860442,0.841264,0.475172,0.927696,0.848172,0.241231,0.377004,0.721443,0.221693,0.811246,0.474228,0.610268,0.321157,0.964148,0.394756,0.566711,0.33818,0.349709,0.72333,0.62929,0.44872,0.918501,0.444512,0.550992,0.381681,0.662369,0.395825,0.729178,0.401687,0.298299,0.727943,0.865636,0.335743,0.304162,0.66949,0.63382,0.554412,0.236286,0.102318,0.96486,0.725643,0.447809,0.0255309,0.354435,0.161618,0.768379,0.21106,0.143319,0.254931,0.863054,0.3757,0.245589,0.0529879,0.427018,0.606226,0.981098,0.0739504,0.242614,0.883631,0.364589,0.318981,0.368618,0.775758,0.139785,0.745226,0.211567,0.345741,0.337666,0.795529,0.0779683,0.564506,0.512523,0.791912,0.735198,0.948067,0.0423353,0.103799,0.0597939,0.271986,0.0457131,0.477443,0.856115,0.832068,0.956612,0.767425,0.796751,0.374134,0.10569,0.0159501,0.847001,0.078346,0.300017,0.410156,0.718318,0.0346797,0.0277316,0.284356,0.997146,0.0356054,0.764557,0.644392,0.977377,0.212701,0.965801,0.563951,0.589996,0.0149441,0.0573317,0.679289,0.249732,0.920503,0.972776,0.437534,0.840371,0.096361,0.0621181,0.681366,0.904938,0.213881,0.0698643,0.308,0.305333,0.998882,0.0252473,0.209297,0.49489,0.93962,0.0746355,0.175896,0.741621,0.326287,0.240774,0.115323,0.0693629,0.0520208,0.169833,0.806141,0.553119,0.580798,0.645177,0.225978,0.596797,0.37865,0.534846,0.079842,0.804263,0.280288,0.9991,0.318132,0.325378,0.438593,0.67987,0.137479,0.874072,0.588221,0.526926,0.284143,0.0387049,0.226508,0.300633,0.868035,0.500611,0.776594,0.823957,0.129496,0.175873,0.363835,0.241372,0.733779,0.81849,0.183368,0.982748,0.14197,0.68376,0.74608,0.861341,0.993957,0.890751,0.153004,0.316679,0.809653,0.326234,0.0931405,0.384193,0.750124,0.255275,0.924206,0.302413,0.82197,0.0372332,0.0704889,0.0327869,0.120331,0.863899,0.153341,0.828741,0.279562,0.928342,0.00505823,0.0611623,0.307534,0.940422,0.686575,0.991197,0.970141,0.0103599,0.232946,0.571972,0.885907,0.379494,0.667209,0.686891,0.630347,0.622896,0.717142,0.36841,0.606068,0.763014,0.696973,0.204686,0.0871952,0.0502809,0.034891,0.195706,0.937108,0.709045,0.371519,0.0776151,0.698389,0.359012,0.667112,0.58787,0.193678,0.75094,0.328381,0.858655,0.0572412,0.188577,0.79564,0.0628288,0.511259,0.880174,0.934862,0.283657,0.707527,0.341069,0.272717,0.371639,0.143834,0.648859,0.0733731,0.715349,0.804689,0.533591,0.738626,0.745905,0.946687,0.81275,0.908188,0.679726,0.03516,0.856894,0.245963,0.1751,0.633567,0.266514,0.32282,0.576643,0.905188,0.729411,0.804118,0.630354,0.809423,0.542816,0.298445,0.233084,0.337443,0.625621,0.956527,0.978834,0.979038,0.523636,0.559946,0.998535,0.387827,0.64318,0.618402,0.355738,0.92351,0.350748,0.613164,0.235121,0.523651,0.842587,0.440928,0.513932,0.22255,0.998579,0.0424258,0.788908,0.628377,0.0227722,0.231584,0.165025,0.756883,0.147082,0.293989,0.0421257,0.361272,0.274931,0.120918,0.234675,0.734154,0.593628,0.109659,0.317137,0.301941,0.036985,0.804445,0.583834,0.743724,0.223664,0.23351,0.0933647,0.834868,0.387768,0.897521,0.0167153,0.972498,0.246048,0.78001,0.142181,0.575842,0.813712,0.638548,0.618253,0.109254,0.0163958,0.431091,0.0290079,0.655924,0.98252,0.661718,0.0449229,0.347805,0.247724,0.0676528,0.642402,0.957053,0.231515,0.488057,0.661748,0.684161,0.112612,0.782941,0.627081,0.266223,0.76209,0.214931,0.304986,0.754221,0.55647,0.937079,0.859588,0.470634,0.064353,0.856259,0.963746,0.53501,0.886235,0.572555,0.57438,0.147397,0.954735,0.40744,0.144175,0.329922,0.863417,0.670162,0.435814,0.23606,0.148405,0.714828,0.546108,0.799666,0.270321,0.0307397,0.352791,0.858749,0.906065,0.49376,0.292201,0.555756,0.021666,0.820365,0.812155,0.419079,0.363116,0.403114,0.652554,0.458997,0.108192,0.725955,0.896307,0.155991,0.730376,0.89898,0.0575878,0.798244,0.907001,0.910212,0.613514,0.12746,0.0294082,0.317562,0.748707,0.407745,0.180223,0.727495,0.360279,0.961831,0.482342,0.754332,0.837936,0.266698,0.686501,0.0598007,0.756693,0.145225,0.286201,0.746484,0.940865,0.33978,0.346348,0.138848,0.0561045,0.270598,0.468892,0.523157,0.757355,0.856213,0.360859,0.649233,0.631131,0.626957,0.567613,0.637453,0.3258,0.453549,0.81434,0.0156056,0.15905,0.758244,0.808097,0.426651,0.537213,0.163108,0.996729,0.912023,0.357889,0.685283,0.131229,0.483361,0.0323888,0.871408,0.987974,0.176069,0.988953,0.61318,0.443317,0.307391,0.948543,0.61836,0.926731,0.59331,0.978128,0.0174538,0.495928,0.0158277,0.964827,0.711694,0.494977,0.145773,0.82791,0.287204,0.586345,0.498954,0.587698,0.377475,0.205733,0.176235,0.918612,0.950295,0.922304,0.721543,0.314933,0.877636,0.0150774,0.595492,0.221056,0.189588,0.538129,0.437886,0.507216,0.819093,0.528046,0.185231,0.158729,0.343926,0.506633,0.973609,0.276217,0.439433,0.555029,0.54149,0.418351,0.0948392,0.477024,0.73343,0.0407453,0.292078,0.672653,0.787458,0.828829,0.867423,0.548364,0.696866,0.757648,0.0974939,0.488884,0.389075,0.655113,0.697089,0.370756,0.798601,0.0302182,0.192948,0.0638485,0.443118,0.121047,0.101927,0.398532,0.375578,0.664337,0.496384,0.188612,0.510545,0.678515,0.242978,0.186862,0.439723,0.221381,0.583896,0.588409,0.400348,0.180208,0.410627,0.805771,0.205246,0.840671,0.658015,0.53686,0.026875,0.433201,0.942103,0.519369,0.657634,0.0185349,0.827981,0.118582,0.377433,0.0345901,0.197548,0.0729105,0.602986,0.0147998,0.398693,0.814004,0.375793,0.168837,0.391614,0.066473,0.85831,0.0728673,0.359807,0.244516,0.275527,0.930332,0.740398,0.972776,0.450993,0.953581,0.584024,0.81106,0.275783,0.70214,0.569623,0.456735,0.305587,0.0692027,0.973298,0.240246,0.761092,0.90058,0.121095,0.232883,0.689448,0.78232,0.983159,0.493186,0.60115,0.975209,0.630233,0.856034,0.464879,0.484413,0.236515,0.205655,0.120851,0.495451,0.206033,0.764501,0.719468,0.529248,0.86487,0.406414,0.931252,0.648805,0.467394,0.610383,0.624148,0.816655,0.299295,0.283276,0.495326,0.966093,0.258904,0.272748,0.93179,0.490901,0.634187,0.157873,0.566421,0.710097,0.183348,0.545029,0.532278,0.608032,0.636099,0.377524,0.584113,0.824474,0.627323,0.3628,0.24416,0.230794,0.556091,0.428385,0.424444,0.32977,0.662426,0.52374,0.0320984,0.00607908,0.677344,0.119439,0.535544,0.155169,0.192408,0.39851,0.534374,0.204069,0.5409,0.325014,0.583198,0.350853,0.874997,0.989254,0.843363,0.169211,0.507696,0.434493,0.248235,0.210949,0.277374,0.64159,0.0134658,0.253865,0.444458,0.796827,0.0587305,0.911309,0.829766,0.573877,0.875609,0.788874,0.976104,0.811037,0.249921,0.678214,0.67454,0.0777097,0.252969,0.75812,0.705655,0.912187,0.147559,0.599462,0.379814,0.152755,0.669357,0.112716,0.437251,0.487689,0.19122,0.329032,0.768297,0.705728,0.450898,0.565952,0.756224,0.123216,0.861893,0.88504,0.530775,0.316171,0.980938,0.770515,0.371949,0.759864,0.822024,0.521636,0.178973,0.472536,0.485069,0.622321,0.352262,0.393376,0.90228,0.340206,0.149377,0.591619,0.865645,0.0350265,0.994166,0.628701,0.562233,0.806757,0.86229,0.828159,0.25924,0.980852,0.0818488,0.191846,0.856977,0.430664,0.0397037,0.0270513,0.837966,0.534165,0.244422,0.503345,0.334337,0.19239,0.408847,0.838839,0.514538,0.735305,0.494619,0.416341,0.437776,0.269386,0.000907302,0.44607,0.495962,0.191171,0.213539,0.157476,0.364795,0.705315,0.242794,0.469839,0.269981,0.459179,0.253591,0.0954925,0.295399,0.922086,0.767148,0.0844758,0.974025,0.531368,0.196916,0.217862,0.540722,0.477295,0.851019,0.848688,0.109454,0.781155,0.110955,0.560067,0.634869,0.213499,0.466979,0.618626,0.95893,0.32553,0.424901,0.168672,0.538522,0.295554,0.533646,0.73164,0.993084,0.0183004,0.90875,0.392497,0.649078,0.268093,0.642262,0.294604,0.743013,0.846835,0.866451,0.497296,0.519859,0.665196,0.706612,0.634649,0.730217,0.777479,0.592658,0.488036,0.504895,0.633559,0.991653,0.741312,0.592858,0.855294,0.0480711,0.0708382,0.240415,0.0444001,0.611816,0.143214,0.540085,0.376932,0.842029,0.676038,0.653019,0.966597,0.773031,0.314968,0.24806,0.216524,0.292439,0.186497,0.646357,0.122424,0.487045,0.0663934,0.569921,0.21429,0.744018,0.437712,0.459139,0.53794,0.286945,0.722821,0.905824,0.689026,0.811727,0.832158,0.645682,0.0646067,0.525859,0.02807,0.272292,0.127375,0.84053,0.458753,0.854996,0.0524409,0.959394,0.75526,0.674205,0.711788,0.207286,0.241778,0.314818,0.910074,0.468706,0.656275,0.507406,0.758529,0.48262,0.868544,0.667058,0.472925,0.223032,0.209932,0.801361,0.0222207,0.0282027,0.0719196,0.223353,0.104522,0.287803,0.93389,0.495777,0.941111,0.359403,0.277228,0.894975,0.208812,0.824538,0.587614,0.923419,0.165202,0.689896,0.700074,0.462556,0.294288,0.89166,0.513384,0.461195,0.0949258,0.912569,0.176602,0.980901,0.989599,0.250696,0.162902,0.577978,0.0785839,0.98198,0.183249,0.634792,0.475343,0.29235,0.8938,0.990269,0.107115,0.616314,0.824922,0.0637335,0.487514,0.139666,0.492486,0.75066,0.0227028,0.511908,0.884051,0.122688,0.775148,0.389566,0.741632,0.792023,0.867909,0.635812,0.888001,0.59502,0.171374,0.26738,0.582267,0.333605,0.46893,0.984865,0.745257,0.701697,0.8507,0.516229,0.973714,0.152583,0.402562,0.430787,0.150449,0.340309,0.0857422,0.660545,|0.500078,0.184831,0.571361,0.0541199,0.893209,0.206594,0.84996,0.5056,0.962809,0.234761,0.995128,0.221621,0.72847,0.949667,0.919365,0.440313,0.444665,0.775853,0.227846,0.291466,0.130024,0.0586729,0.449985,0.948329,0.237916,0.00451398,0.655083,0.132976,0.522513,0.580238,0.905051,0.52992,0.863419,0.703848,0.163026,0.330583,0.249239,0.598828,0.80806,0.0443907,0.964974,0.360627,0.231771,0.560706,0.123135,0.869826,0.40261,0.0420268,0.713847,0.432815,0.832522,0.534375,0.218348,0.5954,0.521663,0.619628,0.417217,0.710646,0.547553,0.895894,0.0584579,0.880856,0.834548,0.44222,0.945209,0.357487,0.0166003,0.488608,0.0190547,0.0366516,0.947824,0.783837,0.376416,0.871988,0.975788,0.55309,0.546845,0.680785,0.00973803,0.0502926,0.340401,0.356641,0.240581,0.345504,0.824379,0.992835,0.767347,0.635031,0.912086,0.80685,0.0407498,0.0321066,0.00216591,0.709978,0.727556,0.940057,0.00110233,0.0144358,0.485119,0.492429,0.465433,0.36551,0.198641,0.685013,0.46458,0.842604,0.314249,0.0682445,0.352848,0.279076,0.656672,0.823156,0.624652,0.142253,0.274445,0.832746,0.0676776,0.18968,0.292247,0.809248,0.471236,0.206149,0.379559,0.802744,0.684593,0.468818,0.0161244,0.968255,0.663958,0.0517989,0.098027,0.510258,0.229167,0.50455,0.271149,0.0652486,0.395586,0.790299,0.695211,0.795697,0.461936,0.550978,0.447958,0.290346,0.289825,0.351916,0.159997,0.518575,0.708534,0.0276388,0.806005,0.802181,0.792799,0.613624,0.231705,0.812512,0.112809,0.84466,0.751872,0.311414,0.985782,0.436995,0.392846,0.376974,0.883373,0.225965,0.155599,0.256417,0.67233,0.380348,0.838104,0.196112,0.24521,0.301454,0.570033,0.136706,0.152341,0.783972,0.619576,0.975409,0.0286354,0.167892,0.323325,0.314863,0.264146,0.202517,0.0707437,0.347602,0.783611,0.622306,0.106894,0.391277,0.214382,0.555222,0.642142,0.582489,0.659471,0.781706,0.902922,0.736604,0.821466,0.570495,0.988591,0.773638,0.140016,0.0854084,0.999254,0.628331,0.590238,0.876564,0.108019,0.555543,0.778273,0.548926,0.98904,0.32704,0.652208,0.781642,0.101081,0.925057,0.65311,0.784877,0.428375,0.00139159,0.794028,0.472654,0.434143,0.929008,0.172374,0.355679,0.535082,0.755338,0.632154,0.172966,0.953447,0.919659,0.587632,0.058142,0.698536,0.288572,0.812613,0.39032,0.0183544,0.87064,0.17217,0.217668,0.513995,0.762783,0.743704,0.657661,0.478847,0.542322,0.147695,0.295391,0.667396,0.144964,0.89145,0.665593,0.273148,0.0513589,0.713354,0.729112,0.261615,0.902947,0.609952,0.0664023,0.558608,0.00284886,0.636686,0.336982,0.648877,0.688366,0.505926,0.0723624,0.91651,0.774945,0.782349,0.192224,0.393249,0.999119,0.6747,0.771799,0.930103,0.333733,0.571802,0.260719,0.674353,0.434957,0.422104,0.356996,0.155502,0.386841,0.924788,0.903807,0.213549,0.206223,0.669354,0.42296,0.458996,0.950122,0.812284,0.332706,0.112886,0.946704,0.834291,0.161254,0.652999,0.657757,0.330543,0.784882,0.890011,0.474256,0.379474,0.754545,0.160471,0.791997,0.449872,0.0249031,0.618616,0.511299,0.771958,0.400183,0.574557,0.0965598,0.283093,0.195041,0.959338,0.523887,0.196443,0.936661,0.627472,0.791026,0.0504672,0.840254,0.229611,0.576773,0.557028,0.837871,0.487516,0.736007,0.501304,0.0341578,0.0748556,0.521556,0.478238,0.287155,0.488374,0.923583,0.693142,0.100653,0.50458,0.982219,0.963783,0.780819,0.539386,0.491194,0.845661,0.958512,0.55543,0.94059,0.473666,0.135801,0.644061,0.242772,0.227507,0.560256,0.956751,0.865274,0.683611,0.313507,0.195029,0.116937,0.195473,0.710948,0.167058,0.877371,0.498739,0.982259,0.619375,0.780775,0.151412,0.112128,0.388092,0.922612,0.630606,0.0106999,0.936611,0.752648,0.391167,0.263333,0.307149,0.953408,0.51061,0.337971,0.0750523,0.0563414,0.0431609,0.548832,0.621833,0.521382,0.0182017,0.563609,0.0736909,0.704835,0.604768,0.0290968,0.483693,0.0603241,0.143414,0.784757,0.756803,0.50343,0.94656,0.542184,0.503958,0.317037,0.0687227,0.315364,0.920333,0.712829,0.815385,0.560309,0.932905,0.739306,0.542053,0.328872,0.48983,0.188335,0.912909,0.974931,0.467127,0.844635,0.176658,0.512293,0.338198,0.14143,0.0793409,0.584194,0.94491,0.62883,0.224675,0.283169,0.988339,0.887338,0.0349672,0.422668,0.410273,0.0987284,0.850899,0.978863,0.585437,0.257199,0.987262,0.216878,0.763084,0.359644,0.10303,0.966955,0.947437,0.125257,0.69659,0.657813,0.870392,0.524404,0.20825,0.187167,0.775823,0.0331214,0.829913,0.530275,0.548222,0.792123,0.711426,0.532732,0.155337,0.37332,0.646758,0.00615966,0.751893,0.0365031,0.170734,0.490869,0.739345,0.314516,0.318721,0.861612,0.297165,0.0630434,0.792256,0.940481,0.0582443,0.623928,0.556176,0.540563,0.28813,0.978202,0.899043,0.957099,0.206645,0.829287,0.837962,0.800924,0.875142,0.547835,0.686817,0.00687623,0.0592045,0.785596,0.825328,0.935219,0.204397,0.934735,0.527925,0.878274,0.479467,0.560425,0.340967,0.376974,0.56584,0.758076,0.128537,0.889821,0.938537,0.785807,0.559167,0.735174,0.18732,0.71502,0.185429,0.323816,0.394821,0.393516,0.927877,0.927627,0.847773,0.804269,0.87581,0.101348,0.0855953,0.471948,0.693122,0.500389,0.595503,0.652613,0.573233,0.0214099,0.965723,0.777022,0.553849,0.81259,0.142757,0.808747,0.798666,0.820893,0.839404,0.107174,0.600059,0.654488,0.4399,0.308836,0.0963932,0.229926,0.0938001,0.833458,0.519817,0.957524,0.524633,0.474371,0.310264,0.38762,0.93013,0.700043,0.32447,0.221122,0.0313748,0.145491,0.446854,0.28485,0.0962569,0.451901,0.427855,0.550868,0.132645,0.101565,0.805372,0.696467,0.197004,0.692347,0.554388,0.614203,0.366959,0.626095,0.140369,0.632049,0.354526,0.437053,0.832958,0.00284725,0.867611,0.401807,0.821593,0.495538,0.548045,0.44921,0.291995,0.451796,0.508301,0.841419,0.078194,0.90957,0.669742,0.571479,0.794869,0.933918,0.796099,0.603746,0.53891,0.00666547,0.749492,0.718988,0.931993,0.458662,0.924153,0.397382,0.1433,0.87707,0.0770296,0.81152,0.378804,0.81633,0.496198,0.650651,0.109464,0.883408,0.378229,0.438613,0.170175,0.463789,0.165924,0.305931,0.22047,0.60685,0.522927,0.546994,0.720066,0.265777,0.0992419,0.10048,0.875478,0.523611,0.014532,0.596594,0.838514,0.451206,0.321387,0.772734,0.119797,0.751322,0.118787,0.761031,0.340967,0.997845,0.797251,0.169913,0.578155,0.184496,0.033085,0.318353,0.364656,0.0568034,0.632854,0.131914,0.0735978,0.252748,0.72624,0.00736797,0.941549,0.214189,0.403106,0.282553,0.543822,0.5252,0.235615,0.734576,0.707825,0.345068,0.748878,0.511299,0.794173,0.472003,0.338522,0.874411,0.0538247,0.365764,0.808439,0.537569,0.708882,0.374179,0.906919,0.426437,0.155392,0.0406125,0.255525,0.932476,0.132994,0.996013,0.368663,0.39537,0.554499,0.362764,0.683526,0.841902,0.129651,0.587754,0.252401,0.124236,0.141484,0.260443,0.932832,0.760732,0.0273308,0.252054,0.834428,0.521501,0.592551,0.0203118,0.608617,0.341986,0.882149,0.495905,0.800032,0.892496,0.619061,0.255203,0.0286673,0.264523,0.476346,0.240386,0.945114,0.619574,0.443954,0.761642,0.150914,0.439494,0.856403,0.200377,0.608819,0.912494,0.514451,0.238637,0.22076,0.999736,0.21641,0.720081,0.930642,0.12468,0.0455887,0.385382,0.175348,0.88618,0.427397,0.358128,0.241787,0.471786,0.965269,0.251248,0.404511,0.95616,0.414936,0.0189724,0.835383,0.528624,0.794122,0.253385,0.0972732,0.927072,0.288238,0.599752,0.194786,0.424647,0.972309,0.888922,0.996458,0.673193,0.611006,0.0918616,0.307692,0.330637,0.0874282,0.348968,0.45648,0.404473,0.385739,0.85132,0.777535,0.103564,0.00307518,0.0988879,0.828156,0.0709088,0.967664,0.504334,0.451204,0.154048,0.491144,0.83686,0.846527,0.23567,0.496197,0.730473,0.525137,0.441849,0.99097,0.726075,0.523156,0.869268,0.759075,0.327713,0.549951,0.775669,0.277806,0.363083,0.642118,0.296137,0.716603,0.739871,0.813629,0.356491,0.441069,0.604458,0.69998,0.238717,0.740554,0.853895,0.497107,0.415613,0.854054,0.846125,0.631942,0.0319542,0.498752,0.034642,0.537963,0.735102,0.554307,0.709187,0.884933,0.452307,0.891545,0.418082,0.738133,0.600084,0.971393,0.325921,0.720571,0.98489,0.718297,0.492684,0.756225,0.815741,0.0845982,0.0319309,0.552435,0.849354,0.668327,0.210338,0.345733,0.675753,0.78906,0.996163,0.400068,0.110357,0.410367,0.954135,0.515498,0.704879,0.812968,0.0839915,0.288256,0.914196,0.838164,0.371832,0.73129,0.433558,0.685793,0.754381,0.39038,0.877133,0.0373789,0.799895,0.938867,0.658313,0.620447,0.188723,0.93179,0.117433,0.858101,0.39978,0.970795,0.267827,0.264699,0.62407,0.932808,0.421254,0.159594,0.858168,0.875858,0.133665,0.877127,0.287266,0.826796,0.275984,0.162959,0.161483,0.529802,0.439761,0.408239,0.950569,0.780281,0.762629,0.097207,0.376213,0.120827,0.495684,0.846516,0.783842,0.791701,0.0452115,0.37146,0.259165,0.840798,0.913008,0.914413,0.300638,0.871801,0.742247,0.520478,0.513325,0.999574,0.906778,0.645386,0.413525,0.498606,0.43137,0.19962,0.553612,0.0734524,0.0355042,0.502372,0.779819,0.769976,0.140351,0.0279156,0.350306,0.518233,0.762754,0.609937,0.936103,0.778349,0.115512,0.68538,0.754287,0.745484,0.460178,0.480679,0.0107871,0.809372,0.792708,0.819097,0.556092,0.31645,0.734804,0.153235,0.308823,0.0104273,0.888827,0.757589,0.930463,0.939498,0.710962,0.672632,0.235548,0.628935,0.0475786,0.152153,0.559004,0.231213,0.0912367,0.712895,0.102156,0.179553,0.269234,0.133871,0.475813,0.488004,0.56095,0.240006,0.369226,0.564032,0.048451,|0.241225,0.536987,0.419138,0.914629,0.0286539,0.482228,0.868304,0.974593,0.739111,0.862872,0.292814,0.916687,0.594179,0.231771,0.590367,0.64977,0.465474,0.915287,0.236502,0.0130758,0.92456,0.96042,0.39858,0.739505,0.750266,0.397067,0.023011,0.627254,0.481507,0.829888,0.0847103,0.161465,0.308347,0.321606,0.258148,0.615118,0.53272,0.592602,0.469208,0.352227,0.713092,0.745253,0.195433,0.223207,0.921658,0.638545,0.667232,0.955391,0.686777,0.829938,0.167412,0.763639,0.0894538,0.241905,0.451352,0.852576,0.88422,0.929458,0.114591,0.506003,0.26714,0.261348,0.30304,0.838763,0.403128,0.145225,0.914743,0.273207,0.0950153,0.621529,0.772136,0.638838,0.906729,0.33604,0.221978,0.844968,0.753216,0.753584,0.760226,0.909205,0.328171,0.904189,0.0156354,0.813397,0.885776,0.551836,0.947017,0.145518,0.347019,0.25355,0.958693,0.824732,0.896757,0.824321,0.313925,0.35671,0.842104,0.388969,0.33214,0.804679,0.0170445,0.451779,0.960462,0.840923,0.0540679,0.870011,0.7159,0.374898,0.0160985,0.221229,0.327237,0.960907,0.429215,0.622337,0.956606,0.811704,0.315885,0.256065,0.742892,0.500882,0.183971,0.563424,0.262717,0.830673,0.789687,0.798254,0.554198,0.0706048,0.167999,0.808122,0.841181,0.62439,0.222795,0.20877,0.304136,0.520377,0.698542,0.177573,0.821996,0.703161,0.274902,0.764478,0.506051,0.654956,0.975443,0.207259,0.05635,0.335056,0.685694,0.562537,0.26698,0.531322,0.671993,0.357021,0.108803,0.391279,0.0763395,0.342554,0.466129,0.755282,0.0267128,0.45792,0.581575,0.207947,0.0286875,0.828417,0.564044,0.491001,0.10749,0.464684,0.426872,0.0913455,0.598961,0.355533,0.33255,0.00123769,0.342163,0.945487,0.738675,0.89827,0.779536,0.293028,0.590675,0.177557,0.636542,0.675023,0.910713,0.525731,0.361391,0.420709,0.0648211,0.107238,0.994628,0.495121,0.462741,0.59299,0.824894,0.782839,0.417101,0.909068,0.534069,0.554657,0.23883,0.370201,0.981814,0.277045,0.326584,0.607308,0.238908,0.933202,0.529399,0.711249,0.378637,0.168151,0.308412,0.789291,0.650888,0.181634,0.489207,0.868687,0.15642,0.110294,0.887055,0.0987577,0.885118,0.0463306,0.286386,0.536938,0.784312,0.0432015,0.479737,0.830912,0.625195,0.114553,0.457125,0.898464,0.31312,0.99768,0.223854,0.640902,0.306278,0.220516,0.209652,0.736416,0.21078,0.630888,0.104526,0.361847,0.873843,0.174794,0.0407292,0.00566471,0.760117,0.782778,0.0795357,0.442558,0.0457378,0.502418,0.0257512,0.0612446,0.895805,0.202625,0.761709,0.255214,0.0889279,0.435018,0.0503235,0.885048,0.0592968,0.802383,0.130446,0.969148,0.149336,0.168499,0.243208,0.223604,0.043098,0.81543,0.332352,0.95192,0.522435,0.540667,0.149182,0.0403809,0.0363763,0.20414,0.0600293,0.80782,0.175609,0.636219,0.316647,0.75021,0.51399,0.0403675,0.0211424,0.895569,0.254297,0.367949,0.890643,0.794248,0.152976,0.631802,0.519648,0.232747,0.404409,0.663418,0.172231,0.527009,0.597157,0.633772,0.690995,0.595919,0.134524,0.804653,0.345129,0.636908,0.916398,0.778605,0.621398,0.666924,0.345794,0.882047,0.351691,0.919545,0.345874,0.504975,0.239983,0.804973,0.992545,0.145036,0.406295,0.332765,0.127963,0.847413,0.850676,0.52513,0.0463888,0.747249,0.945999,0.856478,0.827344,0.185828,0.209577,0.557162,0.708873,0.646673,0.486745,0.0904327,0.469505,0.26286,0.752787,0.506486,0.474848,0.211003,0.40661,0.520183,0.293124,0.911409,0.600812,0.210733,0.52912,0.291684,0.274033,0.275488,0.934594,0.808573,0.115558,0.462257,0.172588,0.193399,0.796326,0.21658,0.474491,0.162208,0.54147,0.918834,0.0119128,0.082419,0.721802,0.875206,0.39286,0.062801,0.985429,0.3141,0.822601,0.627824,0.4439,0.274667,0.799276,0.77098,0.871135,0.00127274,0.890631,0.678584,0.386549,0.680035,0.62515,0.165883,0.824051,0.692902,0.987047,0.441611,0.497777,0.15936,0.908466,0.352169,0.178353,0.421779,0.304791,0.165289,0.437076,0.886998,0.267282,0.054,0.245496,0.378497,0.814494,0.759779,0.507093,0.601451,0.522319,0.107104,0.369479,0.117652,0.920396,0.907371,0.912932,0.119731,0.513444,0.791366,0.735184,0.631845,0.271252,0.898204,0.872103,0.886856,0.401759,0.601525,0.337802,0.869648,0.504717,0.96067,0.425535,0.84613,0.119384,0.812409,0.542084,0.0903656,0.884031,0.869295,0.113242,0.735207,0.285417,0.846778,0.369496,0.138014,0.692394,0.2804,0.648131,0.93056,0.965019,0.87447,0.959977,0.350347,0.550667,0.320895,0.263374,0.00222808,0.207825,0.42677,0.255833,0.487618,0.704306,0.0306099,0.43994,0.994615,0.770662,0.0355561,0.748384,0.521951,0.732279,0.298234,0.184728,0.570746,0.153769,0.904242,0.908419,0.569791,0.949785,0.283925,0.260752,0.429992,0.294348,0.665564,0.680499,0.203795,0.000611901,0.913262,0.638333,0.595406,0.951978,0.164119,0.106761,0.231592,0.724444,0.223084,0.474186,0.115883,0.445998,0.300363,0.142859,0.403652,0.188476,0.717252,0.547567,0.102219,0.846648,0.985472,0.673602,0.968302,0.100755,0.0144214,0.936167,0.136972,0.438054,0.817887,0.633866,0.836343,0.940531,0.51497,0.558745,0.815797,0.847865,0.473488,0.624138,0.666963,0.0882701,0.0654366,0.929419,0.875937,0.879871,0.16558,0.473515,0.957903,0.263793,0.248162,0.47182,0.846063,0.981249,0.322107,0.885223,0.767939,0.190116,0.536654,0.425753,0.348105,0.258455,0.822549,0.406322,0.478425,0.312043,0.700896,0.843396,0.368495,0.525782,0.749986,0.506153,0.0401346,0.656386,0.891007,0.307759,0.485788,0.668229,0.653258,0.191095,0.624328,0.415552,0.209654,0.595435,0.0469935,0.137512,0.0536154,0.0511554,0.0422325,0.233219,0.0408058,0.249342,0.859129,0.304399,0.338467,0.903635,0.276386,0.12474,0.427234,0.251197,0.820653,0.142057,0.921333,0.82533,0.685008,0.639218,0.602163,0.953417,0.129045,0.641891,0.345707,0.712451,0.368375,0.897045,0.905511,0.715394,0.218767,0.536242,0.564137,0.0924527,0.231793,0.315166,0.292983,0.274963,0.00031662,0.446979,0.284714,0.643554,0.896188,0.475403,0.989629,0.969816,0.548852,0.31996,0.0450627,0.621697,0.0695059,0.501119,0.129953,0.58916,0.200358,0.126826,0.184355,0.324468,0.0196173,0.635438,0.0334485,0.084654,0.294397,0.337926,0.966203,0.161307,0.965081,0.612855,0.888019,0.385863,0.261318,0.597713,0.548045,0.635336,0.662587,0.102438,0.809018,0.0375841,0.77094,0.577638,0.440528,0.962041,0.48948,0.722314,0.387549,0.987462,0.113108,0.282941,0.343542,0.135927,0.361007,0.226354,0.250452,0.863525,0.493338,0.379386,0.251748,0.896775,0.335289,0.763926,0.00469738,0.484922,0.0950124,0.797905,0.991903,0.451369,0.463381,0.327692,0.98462,0.134464,0.882606,0.384974,0.496753,0.590102,0.50302,0.278676,0.258391,0.0124062,0.645165,0.623282,0.660918,0.323718,0.796741,0.241501,0.239051,0.498851,0.462816,0.535232,0.0201015,0.525764,0.976074,0.774258,0.855904,0.275479,0.685238,0.0525808,0.154467,0.140269,0.611306,0.488958,0.364475,0.0957511,0.749347,0.0182375,0.786577,0.726619,0.750081,0.0877575,0.935213,0.866007,0.906861,0.669408,0.00725931,0.168877,0.615709,0.346969,0.258133,0.893115,0.834219,0.998056,0.770367,0.435191,0.416749,0.758135,0.834503,0.315143,0.117118,0.463781,0.541044,0.612765,0.0514249,0.300388,0.624708,0.0254178,0.599694,0.25053,0.657133,0.471577,0.378494,0.479815,0.975415,0.99803,0.0632203,0.735092,0.475647,0.784409,0.536798,0.228509,0.837423,0.389798,0.108938,0.00750756,0.616292,0.0968384,0.987366,0.986101,0.644888,0.35822,0.542507,0.0326157,0.232703,0.244102,0.085606,0.812529,0.719849,0.0752894,0.0848365,0.955533,0.395231,0.749147,0.010141,0.235133,0.533477,0.916922,0.82306,0.0997449,0.362186,0.892303,0.938568,0.70281,0.256487,0.0907196,0.662139,0.747223,0.87712,0.050585,0.626358,0.422764,0.0737332,0.617012,0.565904,0.909428,0.481846,0.336336,0.13954,0.31367,0.555375,0.830664,0.955554,0.213183,0.314087,0.280479,0.598335,0.184067,0.976568,0.488959,0.128285,0.65683,0.806313,0.74395,0.0550376,0.711007,0.588012,0.238057,0.0132684,0.86335,0.750419,0.474147,0.735111,0.303859,0.237877,0.189906,0.303566,0.263681,0.0942723,0.260487,0.798085,0.865882,0.780605,0.468864,0.451555,0.445749,0.532283,0.507477,0.847065,0.0185013,0.288919,0.16981,0.973206,0.10228,0.170977,0.874663,0.124288,0.119938,0.318619,0.903861,0.0194143,0.501771,0.00388694,0.494304,0.0455675,0.955882,0.269365,0.646335,0.872731,0.610575,0.809672,0.461815,0.273124,0.221155,0.253903,0.513123,0.925937,0.902438,0.668956,0.0929144,0.980603,0.815237,0.986179,0.260847,0.40349,0.781769,0.934685,0.776406,0.797959,0.636247,0.260856,0.346853,0.700273,0.181283,0.277878,0.957389,0.127652,0.633709,0.113524,0.92538,0.0401493,0.583306,0.498883,0.669156,0.755971,0.485964,0.821208,0.36295,0.217973,0.868219,0.944389,0.303009,0.302906,0.345018,0.0807973,0.246146,0.952705,0.503566,0.189039,0.396048,0.234972,0.472118,0.130176,0.519778,0.494443,0.312769,0.852068,0.612572,0.0699332,0.670222,0.053699,0.628566,0.13778,0.193074,0.85788,0.350412,0.833376,0.344744,0.915835,0.551938,0.696057,0.16493,0.919559,0.907495,0.976913,0.912137,0.241001,0.578329,0.127244,0.806845,0.729031,0.686996,0.561377,0.0341371,0.383531,0.0827057,0.332516,0.736852,0.0850879,0.0803408,0.903936,0.463189,0.928539,0.257331,0.98942,0.742273,0.0387433,0.43033,0.150121,0.906513,0.647057,0.496588,0.6942,0.888543,0.296401,0.56302,0.635286,0.667362,0.378768,0.984428,0.429746,0.577208,0.967914,0.552154,0.0192056,0.771224,0.660766,0.801578,0.346666,0.663647,0.32773,0.55549,0.450272,|0.842314,0.343311,0.188692,0.560569,0.445256,0.62007,0.209031,0.119198,0.107191,0.921436,0.53284,0.0152563,0.505053,0.431068,0.000933588,0.506334,0.392449,0.209541,0.0644921,0.0546606,0.302438,0.522511,0.0440269,0.74947,0.585265,0.0135404,0.0362025,0.474179,0.64681,0.948462,0.937122,0.635606,0.710686,0.445442,0.0393931,0.612964,0.0253508,0.802753,0.519647,0.014048,0.979732,0.464663,0.582986,0.68746,0.563266,0.61914,0.332517,0.239565,0.896559,0.64834,0.71124,0.127063,0.526267,0.498748,0.609381,0.645516,0.507684,0.133866,0.607067,0.640075,0.607605,0.528367,0.54982,0.82892,0.227719,0.945798,0.545888,0.206622,0.729267,0.00319034,0.533175,0.497795,0.545253,0.469024,0.224282,0.0158063,0.234482,0.52359,0.204258,0.398789,0.876298,0.272285,0.595734,0.71119,0.698785,0.0253561,0.0423349,0.777667,0.078751,0.0377311,0.0541307,0.726265,0.115637,0.702434,0.503522,0.388065,0.0584103,0.660874,0.828687,0.967877,0.443835,0.593161,0.165483,0.784805,0.637739,0.580065,0.419758,0.376739,0.810802,0.686376,0.867789,0.303203,0.67986,0.209132,0.553054,0.814831,0.647849,0.985409,0.884823,0.776578,0.0335562,0.133961,0.6114,0.43976,0.559048,0.0667269,0.700355,0.774865,0.0254034,0.23892,0.798282,0.136917,0.281543,0.868477,0.875524,0.185845,0.349428,0.567937,0.494502,0.691091,0.230834,0.0446512,0.0153638,0.67814,0.441431,0.114869,0.388196,0.176648,0.559093,0.895574,0.486238,0.582706,0.533665,0.628091,0.578047,0.523225,0.342995,0.34094,0.71834,0.234234,0.0780669,0.13089,0.443546,0.87997,0.136487,0.685013,0.530085,0.422285,0.771385,0.0341054,0.928568,0.586782,0.664883,0.347697,0.0656466,0.931105,0.402512,0.589815,0.599585,0.124385,0.259626,0.224576,0.423711,0.486894,0.34245,0.5131,0.576135,0.948052,0.949433,0.738825,0.579279,0.0993699,0.667879,0.360163,0.839107,0.498879,0.122644,0.603282,0.867896,0.790889,0.642798,0.216308,0.324651,0.76016,0.75569,0.530857,0.0321726,0.336848,0.954782,0.0419111,0.151937,0.855448,0.933266,0.241062,0.583568,0.342948,0.955905,0.800154,0.637097,0.182819,0.70024,0.815352,0.0984286,0.448364,0.306575,0.978904,0.279584,0.515697,0.418332,0.539696,0.519515,0.306955,0.564807,0.62267,0.531793,0.0727881,0.245366,0.697443,0.584723,0.161915,0.546351,0.190124,0.853685,0.206499,0.639817,0.485943,0.52687,0.696144,0.333407,0.158538,0.0421141,0.596943,0.133124,0.154949,0.482576,0.573266,0.831462,0.489442,0.594612,0.94079,0.633268,0.177924,0.174298,0.340624,0.811177,0.642999,0.550013,0.979675,0.589155,0.449715,0.458574,0.0072999,0.658768,0.593932,0.398567,0.887844,0.0752856,0.261133,0.52989,0.490526,0.0357779,0.877095,0.169021,0.737867,0.629681,0.674566,0.079573,0.651183,0.0493919,0.0931653,0.206596,0.928675,0.322875,0.539098,0.90288,0.226853,0.209043,0.914027,0.111217,0.876592,0.404503,0.718791,0.743411,0.352636,0.987471,0.505789,0.571034,0.274568,0.887804,0.427125,0.251889,0.953482,0.196216,0.173283,0.073252,0.591401,0.6559,0.567537,0.738782,0.836668,0.905376,0.227062,0.424552,0.183573,0.499792,0.76369,0.0526938,0.153204,0.703824,0.649857,0.915956,0.0302206,0.244781,0.16798,0.0267465,0.854644,0.173466,0.242102,0.0851484,0.891026,0.209019,0.902933,0.134058,0.775384,0.641292,0.188206,0.459732,0.943819,0.963627,0.0396405,0.783445,0.684716,0.410469,0.743347,0.451697,0.827884,0.861384,0.931151,0.00536597,0.462744,0.754295,0.874767,0.275797,0.473614,0.748171,0.183151,0.188803,0.962516,0.208626,0.344592,0.699661,0.187953,0.714381,0.256383,0.756545,0.00629842,0.584695,0.984098,0.265736,0.925602,0.58196,0.606561,0.489654,0.597243,0.39642,0.632216,0.0841996,0.399971,0.228789,0.825868,0.240672,0.163849,0.695783,0.312939,0.194512,0.85313,0.821681,0.744108,0.787208,0.171868,0.329286,0.140923,0.522758,0.302839,0.753135,0.56778,0.524695,0.574198,0.405944,0.649859,0.626471,0.361055,0.694937,0.17764,0.21352,0.926748,0.218401,0.572833,0.553838,0.695317,0.131256,0.0324258,0.880444,0.331699,0.0532688,0.700051,0.380251,0.970727,0.701068,0.456496,0.222401,0.0864996,0.797092,0.223706,0.856095,0.551649,0.0906312,0.863456,0.968279,0.7366,0.401948,0.728317,0.914058,0.429786,0.149465,0.434021,0.596392,0.686556,0.407897,0.709776,0.898215,0.420182,0.0836793,0.754235,0.912266,0.0220823,0.891523,0.454859,0.101468,0.628485,0.61663,0.72095,0.966399,0.794956,0.468393,0.577738,0.798363,0.201943,0.0248464,0.572544,0.421883,0.726642,0.261349,0.106054,0.336797,0.346427,0.0519937,0.56808,0.561908,0.592805,0.863529,0.914001,0.491546,0.356425,0.247759,0.623219,0.153641,0.213435,0.695045,0.244026,0.246868,0.662816,0.573186,0.142979,0.766499,0.283187,0.410773,0.0539431,0.30229,0.575038,0.30269,0.0364907,0.723113,0.378002,0.144624,0.312714,0.950467,0.245243,0.498054,0.792318,0.814952,0.556613,0.698738,0.785241,0.636033,0.593266,0.774155,0.341305,0.984788,0.570539,0.416564,0.861266,0.820017,0.847239,0.0943737,0.133909,0.121348,0.430215,0.790083,0.329808,0.8621,0.0535392,0.0883408,0.640435,0.666941,0.516005,0.509179,0.423343,0.422583,0.678568,0.243245,0.333971,0.0958721,0.0533773,0.535451,0.0257293,0.00701112,0.0381482,0.0284681,0.958503,0.790096,0.335383,0.900825,0.886503,0.597662,0.462304,0.15512,0.837156,0.432191,0.244748,0.895334,0.965215,0.0232641,0.429117,0.557088,0.339902,0.46174,0.0627093,0.0971848,0.242567,0.352678,0.181071,0.643457,0.961797,0.524279,0.236725,0.523968,0.555844,0.703891,0.259248,0.602361,0.116225,0.651721,0.239827,0.845395,0.196075,0.249517,0.992585,0.2232,0.140836,0.601133,0.318121,0.71034,0.667833,0.940546,0.678668,0.936967,0.155333,0.724903,0.857882,0.477395,0.255911,0.444201,0.103687,0.735458,0.986568,0.46663,0.241296,0.203477,0.235951,0.0275379,0.57302,0.0621789,0.224644,0.484905,0.360143,0.433844,0.701813,0.40958,0.303608,0.400127,0.477709,0.585526,0.762454,0.614357,0.048561,0.797914,0.651277,0.706133,0.190928,0.4052,0.910124,0.717259,0.369197,0.212798,0.295145,0.0267197,0.0449623,0.282798,0.0569845,0.785663,0.194668,0.408029,0.474892,0.898161,0.117101,0.943312,0.647692,0.400893,0.0446877,0.594632,0.696923,0.240109,0.193781,0.618841,0.262516,0.814641,0.505889,0.710244,0.448646,0.248676,0.869519,0.32005,0.337238,0.343008,0.471004,0.262475,0.536795,0.757867,0.360305,0.721171,0.536305,0.182918,0.537966,0.474811,0.632304,0.707558,0.48412,0.927566,0.54263,0.987763,0.739283,0.270629,0.349954,0.943382,0.0483021,0.0539251,0.856889,0.0462998,0.48944,0.312813,0.745856,0.0657833,0.202397,0.884307,0.389275,0.761889,0.300076,0.371723,0.415638,0.974985,0.7072,0.753985,0.947326,0.632426,0.213611,0.482436,0.44871,3.08156e-05,0.694314,0.755526,0.74491,0.41706,0.422004,0.394353,0.0168182,0.861581,0.642311,0.100395,0.21652,0.74,0.681884,0.828693,0.0697913,0.0431815,0.19767,0.334974,0.721199,0.915515,0.979642,0.907314,0.833136,0.200516,0.163186,0.897138,0.691875,0.0018329,0.979901,0.706506,0.763863,0.405773,0.642072,0.0913332,0.638552,0.898859,0.865529,0.321637,0.91573,0.101169,0.641913,0.194918,0.0985212,0.564865,0.518542,0.979673,0.690615,0.324051,0.829164,0.469021,0.300225,0.644062,0.278861,0.328882,0.535645,0.373155,0.332293,0.478092,0.1038,0.0149057,0.634268,0.062355,0.518532,0.876761,0.339049,0.235534,0.292643,0.733845,0.542033,0.819714,0.836352,0.351452,0.337661,0.940417,0.097838,0.248018,0.41949,0.011568,0.0916548,0.728339,0.838563,0.415875,0.193724,0.112906,0.334556,0.612267,0.256963,0.558812,0.534798,0.759424,0.00315219,0.362089,0.459404,0.92639,0.421344,0.998745,0.72118,0.906812,0.21228,0.630142,0.413801,0.613288,0.831559,0.816342,0.651836,0.713875,0.630969,0.100536,0.0110446,0.287145,0.994093,0.62032,0.340738,0.580537,0.500326,0.639287,0.496349,0.480461,0.960775,0.207301,0.323742,0.752849,0.0133521,0.707478,0.603338,0.740695,0.109807,0.875049,0.609209,0.102196,0.569519,0.3351,0.18565,0.455473,0.141129,0.820057,0.639999,0.0902444,0.533482,0.672695,0.736952,0.904011,0.554251,0.821384,0.357534,0.667837,0.851175,0.448047,0.812051,0.99117,0.995844,0.993912,0.607299,0.889522,0.0992094,0.770791,0.0082323,0.213495,0.114039,0.148888,0.573996,0.851452,0.487288,0.941351,0.47319,0.248523,0.503226,0.951973,0.684775,0.0258132,0.995995,0.228472,0.677599,0.483885,0.868271,0.947955,0.268501,0.045203,0.196861,0.852276,0.0137635,0.106772,0.201721,0.325159,0.852585,0.780471,0.624334,0.719982,0.969973,0.307921,0.0244389,0.951307,0.156074,0.146216,0.891558,0.31341,0.466797,0.189355,0.967199,0.514225,0.188882,0.410917,0.325197,0.0710126,0.281153,0.728594,0.996487,0.434832,0.269891,0.42731,0.154451,0.464078,0.839369,0.25921,0.233003,0.124146,0.698786,0.410196,0.619637,0.855197,0.761739,0.89413,0.440357,0.28775,0.656267,0.467024,0.609454,0.337748,0.409537,0.530082,0.522798,0.410066,0.882273,0.312385,0.0556114,0.350331,0.533651,0.960709,0.595804,0.644442,0.882506,0.323583,0.536547,0.457517,0.0438064,0.867581,0.735951,0.0139449,0.837024,0.846664,0.759219,0.116547,0.385193,0.00997692,0.7655,0.404829,0.745892,0.724913,0.422758,0.996544,0.415744,0.421289,0.681756,0.711066,0.764894,0.790778,0.714395,0.591907,0.119508,0.0506576,0.0107985,0.162637,0.621614,0.780117,0.0639835,0.10803,0.76143,0.873067,0.621768,0.200505,0.884662,0.0528217,0.00940675,0.686725,0.0743013,0.582855,0.850633,0.346627,0.103442,0.440707,0.150457,|0.532766,0.339674,0.377118,0.795244,0.197223,0.524805,0.358465,0.683333,0.0208805,0.334076,0.43561,0.248499,0.0624142,0.412199,0.226546,0.717142,0.510808,0.741575,0.578154,0.5956,0.400971,0.825772,0.427046,0.0590113,0.0263678,0.933836,0.762337,0.977495,0.0819604,0.354612,0.629366,0.629063,0.41792,0.769459,0.144922,0.85505,0.767262,0.981552,0.582035,0.145251,0.0335717,0.0271477,0.0529212,0.714749,0.826295,0.730996,0.442183,0.920808,0.729857,0.74189,0.251644,0.0344525,0.614466,0.365663,0.36836,0.804243,0.398249,0.346893,0.7127,0.975562,0.462539,0.420193,0.42855,0.507974,0.762544,0.8512,0.44244,0.339919,0.703965,0.0832449,0.980574,0.436219,0.271518,0.886603,0.747912,0.0845224,0.818898,0.976948,0.181733,0.100987,0.675749,0.216859,0.945498,0.923108,0.477856,0.104432,0.6166,0.19287,0.338254,0.701637,0.00180107,0.139306,0.251274,0.22008,0.905398,0.974471,0.147819,0.12044,0.540917,0.486396,0.504662,0.84088,0.223545,0.77509,0.526957,0.345229,0.818452,0.0809938,0.433136,0.532185,0.685233,0.63895,0.476772,0.359309,0.332113,0.933017,0.924422,0.457932,0.313082,0.261649,0.315527,0.283643,0.785654,0.0639527,0.272477,0.198147,0.368041,0.376279,0.811606,0.589849,0.820752,0.486863,0.201478,0.90568,0.244204,0.538544,0.951628,0.568477,0.232809,0.206951,0.52401,0.580296,0.97606,0.761349,0.693443,0.511337,0.265138,0.78949,0.919603,0.868402,0.350111,0.527445,0.986644,0.669636,0.0317143,0.87948,0.45418,0.911687,0.0206846,0.0139404,0.876173,0.118138,0.301921,0.0570323,0.360462,0.406132,0.86769,0.523601,0.00279337,0.402857,0.358971,0.749241,0.339591,0.413004,0.480333,0.287607,0.504679,0.678999,0.0231246,0.285419,0.151919,0.160784,0.909872,0.873739,0.705076,0.322104,0.485493,0.265037,0.241803,0.253108,0.496183,0.0520015,0.0195794,0.188639,0.792671,0.331474,0.672921,0.684067,0.341958,0.75584,0.34689,0.691574,0.728971,0.263068,0.965631,0.513601,0.0911908,0.697329,0.764835,0.82396,0.189699,0.234601,0.50427,0.717565,0.408037,0.316943,0.588449,0.254195,0.802302,0.760755,0.327939,0.520109,0.932634,0.300452,0.741613,0.57267,0.285581,0.772098,0.105742,0.14657,0.96126,0.866257,0.904673,0.440445,0.204259,0.0166702,0.652789,0.587655,0.205842,0.356872,0.527518,0.0434921,0.35935,0.902798,0.251713,0.332093,0.474008,0.633667,0.94986,0.712108,0.923674,0.327088,0.821024,0.263092,0.210662,0.522565,0.3348,0.314583,0.404567,0.940714,0.683946,0.169627,0.849913,0.589216,0.972817,0.435109,0.761963,0.116012,0.49289,0.0098964,0.191459,0.51208,0.922542,0.536807,0.615803,0.540669,0.825656,0.560608,0.657692,0.746121,0.187,0.691693,0.999273,0.517496,0.555184,0.680479,0.706733,0.897724,0.726029,0.797561,0.772599,0.413255,0.933354,0.92341,0.745613,0.601583,0.833529,0.74803,0.610966,0.812494,0.436039,0.873248,0.953134,0.142607,0.408884,0.379512,0.847322,0.0640894,0.291571,0.408055,0.983714,0.175267,0.816792,0.776439,0.0823621,0.355273,0.755513,0.400867,0.6613,0.777716,0.117623,0.890091,0.917937,0.32378,0.750091,0.800353,0.478307,0.867428,0.639483,0.639524,0.746352,0.534865,0.690083,0.00503653,0.0943845,0.382502,0.249729,0.314565,0.350967,0.54067,0.822626,0.00801426,0.563851,0.939485,0.0933951,0.583318,0.536278,0.282494,0.696303,0.164665,0.705598,0.37993,0.0371952,0.661172,0.233935,0.534099,0.680306,0.23622,0.0688166,0.130488,0.773666,0.636883,0.398048,0.438618,0.886773,0.537557,0.339908,0.0296084,0.585765,0.956128,0.35235,0.0243233,0.227233,0.950574,0.53639,0.218834,0.843113,0.376926,0.864902,0.958811,0.309038,0.0917073,0.651262,0.157665,0.715875,0.795084,0.568889,0.331632,0.399918,0.24787,0.710478,0.825669,0.834897,0.984423,0.409083,0.577232,0.171073,0.0351789,0.391181,0.293101,0.91383,0.459065,0.702079,0.31777,0.228832,0.704578,0.232967,0.35141,0.44748,0.525246,0.576802,0.869342,0.459532,0.994905,0.907633,0.415951,0.470647,0.0062899,0.734958,0.778784,0.120693,0.134806,0.0276367,0.388731,0.735328,0.817151,0.0379021,0.0132925,0.163786,0.461854,0.828419,0.726554,0.810325,0.296526,0.182031,0.37198,0.422914,0.487596,0.160243,0.450451,0.767869,0.238162,0.374399,0.294996,0.907159,0.678085,0.759124,0.794819,0.784114,0.171442,0.287954,0.443973,0.739268,0.446523,0.816928,0.48262,0.137523,0.245024,0.874645,0.913797,0.490523,0.474445,0.526126,0.108542,0.924157,0.9555,0.182447,0.870406,0.0990552,0.294332,0.299426,0.242103,0.170313,0.438589,0.469145,0.0320207,0.565652,0.103566,0.481662,0.994905,0.487425,0.325249,0.904712,0.79915,0.954806,0.370609,0.107947,0.461779,0.980597,0.669549,0.282705,0.98773,0.190096,0.911666,0.352775,0.487714,0.828328,0.66576,0.783356,0.906678,0.0475951,0.946522,0.853543,0.119437,0.0388799,0.590472,0.215098,0.322078,0.116968,0.528321,0.370775,0.708847,0.352796,0.155567,0.811104,0.93437,0.763694,0.202832,0.412413,0.91522,0.306936,0.949437,0.729206,0.692523,0.12462,0.958335,0.0657923,0.910951,0.909394,0.36434,0.547344,0.0360642,0.158745,0.277237,0.458582,0.163273,0.738291,0.515064,0.780306,0.111784,0.0773506,0.93988,0.264589,0.52169,0.650253,0.743036,0.441603,0.714809,0.357454,0.501069,0.473097,0.469008,0.908558,0.916932,0.696031,0.0749115,0.585142,0.0775532,0.38921,0.988744,0.687012,0.692668,0.610933,0.661576,0.792865,0.823381,0.371362,0.606135,0.095935,0.540485,0.150913,0.937406,0.316243,0.467556,0.201135,0.75858,0.787193,0.335624,0.899747,0.482387,0.544591,0.19142,0.348623,0.890505,0.529935,0.292435,0.990454,0.27761,0.538735,0.344254,0.351622,0.837763,0.270481,0.892297,0.308107,0.352989,0.0974013,0.483505,0.958184,0.985994,0.412966,0.430991,0.802405,0.685733,0.846221,0.756029,0.825581,0.931332,0.863075,0.148125,0.872474,0.0534516,0.313327,0.00204039,0.772967,0.924848,0.225118,0.127329,0.395295,0.160469,0.293725,0.536228,0.314905,0.93202,0.0450726,0.875572,0.207348,0.225613,0.0141178,0.00749922,0.58547,0.108839,0.0941516,0.50805,0.899519,0.22345,0.222521,0.384278,0.502633,0.897741,0.791155,0.349186,0.338597,0.339318,0.770698,0.603011,0.242279,0.0751274,0.753088,0.74297,0.162,0.469245,0.396402,0.20921,0.0920627,0.0493475,0.987531,0.971011,0.836055,0.653752,0.513636,0.851487,0.974453,0.774709,0.450863,0.824612,0.554311,0.0303025,0.966961,0.413322,0.869055,0.0745617,0.178584,0.100913,0.4525,0.553919,0.808062,0.514916,0.99428,0.377899,0.359106,0.562891,0.119227,0.441999,0.120854,0.017981,0.0540722,0.0919711,0.750069,0.0126415,0.770732,0.0373297,0.793643,0.569886,0.752306,0.530172,0.421512,0.67188,0.886114,0.962865,0.901255,0.900775,0.889084,0.781576,0.508251,0.107519,0.349048,0.31447,0.317972,0.982158,0.704832,0.5468,0.696521,0.629207,0.64889,0.095535,0.986221,0.804905,0.155798,0.85658,0.731162,0.77369,0.0341804,0.265746,0.00897312,0.324515,0.593391,0.808564,0.588412,0.662911,0.435155,0.571835,0.0126718,0.538422,0.966654,0.259703,0.111474,0.296415,0.63535,0.619597,0.268785,0.358904,0.737109,0.959943,0.139413,0.569224,0.077552,0.215566,0.154928,0.957835,0.383148,0.0790137,0.310499,0.0254433,0.306303,0.454107,0.039788,0.411309,0.758523,0.73136,0.799287,0.625687,0.292076,0.479761,0.888048,0.935104,0.106308,0.68903,0.816975,0.183794,0.13825,0.377437,0.411857,0.210448,0.67297,0.514991,0.866173,0.316106,0.63502,0.118602,0.465867,0.307959,0.667555,0.824946,0.84238,0.753123,0.959488,0.629014,0.648677,0.813443,0.0904022,0.620866,0.00431991,0.00309861,0.0189931,0.817899,0.981085,0.503407,0.38087,0.0298387,0.0703613,0.888405,0.726529,0.631159,0.659864,0.622984,0.417364,0.373322,0.0620034,0.500457,0.420383,0.131775,0.669242,0.777851,0.686431,0.633112,0.328207,0.369993,0.663317,0.43856,0.258968,0.554047,0.504071,0.261521,0.295287,0.972292,0.992002,0.77846,0.855106,0.438382,0.552426,0.531558,0.840638,0.511451,0.576775,0.0157281,0.551578,0.61391,0.588333,0.322174,0.826992,0.282554,0.0391724,0.846214,0.368908,0.362696,0.236539,0.701794,0.372134,0.863456,0.338864,0.0579473,0.742048,0.72043,0.757876,0.40202,0.294709,0.0221725,0.453362,0.511078,0.28983,0.982946,0.91444,0.378249,0.0961105,0.903184,0.394018,0.405623,0.696951,0.699609,0.746975,0.149822,0.397617,0.928188,0.351854,0.744673,0.805945,0.935728,0.487464,0.71326,0.810256,0.63989,0.820063,0.288663,0.996711,0.296506,0.329129,0.511841,0.192581,0.0386213,0.232891,0.339073,0.555109,0.161951,0.366269,0.157582,0.982539,0.0336878,0.784055,0.221492,0.720386,0.507827,0.198289,0.498118,0.67924,0.135764,0.713522,0.556216,0.66955,0.744972,0.231556,0.591552,0.716295,0.00420511,0.851581,0.259443,0.945588,0.190361,0.199527,0.618315,0.349517,0.508296,0.830734,0.279611,0.501476,0.679492,0.927946,0.400186,0.980068,0.572498,0.847405,0.441869,0.770151,0.639586,0.348407,0.156188,0.919412,0.885989,0.881606,0.0503057,0.366709,0.153024,0.697907,0.0750792,0.981636,0.112896,0.837811,0.077217,0.070457,0.822167,0.696605,0.551011,0.0217575,0.598607,0.78957,0.618023,0.971053,0.999701,0.895616,0.994585,0.339425,0.67491,0.935453,0.440685,0.636074,0.758144,0.112929,0.609768,0.565959,0.390917,0.554124,0.492117,0.179975,0.368242,0.295806,0.904133,0.222291,0.568682,0.668099,0.942611,0.367295,0.14482,0.320577,0.852281,0.405218,0.69306,0.314874,0.859693,0.192163,0.98862,0.847232,0.244076,0.791096,0.217288,0.720464,0.835041,0.0917959,0.1199,0.96963,0.0781658,|0.0394043,0.109908,0.0132825,0.0933327,0.682892,0.569242,0.684559,0.319492,0.80341,0.498158,0.542847,0.399884,0.567505,0.239267,0.277178,0.644643,0.702962,0.913227,0.1668,0.29341,0.512154,0.26253,0.755327,0.285837,0.979148,0.256317,0.0524197,0.80263,0.603848,0.298895,0.572106,0.964639,0.908671,0.199995,0.235209,0.922008,0.742977,0.782731,0.783364,0.0760421,0.326232,0.910655,0.0566965,0.883853,0.628458,0.527144,0.0181856,0.374989,0.356427,0.492944,0.953008,0.787387,0.0446653,0.340006,0.355331,0.745499,0.763567,0.0592796,0.497232,0.797239,0.294525,0.878202,0.922563,0.874402,0.910904,0.15632,0.958226,0.492369,0.479604,0.799602,0.57768,0.579413,0.992117,0.703758,0.522548,0.963282,0.141925,0.720366,0.038685,0.170109,0.55579,0.350629,0.675488,0.190517,0.0364147,0.383374,0.6788,0.961566,0.956956,0.0423652,0.0595282,0.941614,0.464616,0.165056,0.336723,0.491458,0.785459,0.424636,0.961268,0.48573,0.882814,0.0229753,0.129237,0.331017,0.499695,0.283415,0.308909,0.214782,0.854137,0.0777841,0.89701,0.387093,0.569302,0.848958,0.055483,0.440621,0.27292,0.912264,0.711607,0.773284,0.54534,0.409843,0.410058,0.0861078,0.909997,0.134236,0.986238,0.332604,0.411975,0.568349,0.56416,0.751362,0.766792,0.527482,0.348114,0.0172746,0.987949,0.0348986,0.938833,0.139788,0.358012,0.951059,0.741284,0.107265,0.964427,0.732032,0.636684,0.757858,0.460279,0.602168,0.453391,0.593537,0.669146,0.792649,0.347454,0.38316,0.975753,0.700509,0.944427,0.590143,0.019566,0.482444,0.200072,0.197811,0.480296,0.65993,0.00679392,0.758061,0.133474,0.304354,0.341524,0.37812,0.885561,0.30363,0.765816,0.662509,0.428593,0.887615,0.549257,0.410574,0.665291,0.853465,0.442561,0.0762064,0.378292,0.49916,0.600054,0.608039,0.159666,0.609686,0.119901,0.472385,0.0866934,0.267247,0.83869,0.0137339,0.337062,0.294727,0.631479,0.949253,0.552175,0.929602,0.738648,0.837893,0.0460123,0.691779,0.818031,0.639421,0.804849,0.378122,0.206919,0.698448,0.220211,0.170495,0.940383,0.184544,0.866508,0.729388,0.695262,0.717956,0.351102,0.100631,0.870351,0.971639,0.437285,0.882629,0.501195,0.816235,0.744755,0.338378,0.865655,0.940558,0.199288,0.826123,0.665041,0.207972,0.847993,0.3141,0.824803,0.905349,0.0808165,0.694801,0.0942919,0.716775,0.73017,0.309601,0.910401,0.984591,0.114061,0.95091,0.380414,0.582146,0.0283396,0.136472,0.638951,0.597217,0.798618,0.11978,0.496735,0.333291,0.123444,0.858535,0.183243,0.652844,0.0400413,0.353384,0.913249,0.715633,0.214873,0.510922,0.725423,0.947445,0.405705,0.660366,0.317797,0.534492,0.665205,0.117728,0.0679212,0.691673,0.882063,0.356252,0.632282,0.285014,0.158912,0.759381,0.331291,0.206268,0.32393,0.342595,0.368206,0.392382,0.733025,0.448662,0.545043,0.403162,0.45458,0.765085,0.202317,0.219841,0.917068,0.881798,0.675184,0.632632,0.436841,0.0809673,0.757386,0.71071,0.00635052,0.199207,0.938259,0.543887,0.532761,0.66459,0.99724,0.500549,0.733251,0.922733,0.754833,0.447198,0.946859,0.585617,0.645781,0.638389,0.771608,0.95035,0.0102369,0.920556,0.472414,0.272836,0.66556,0.525695,0.144158,0.585547,0.35193,0.965768,0.446433,0.087602,0.313896,0.0268612,0.182046,0.573996,0.177702,0.529142,0.611411,0.999151,0.591919,0.753362,0.89265,0.580149,0.0181227,0.86183,0.382851,0.502375,0.521022,0.498847,0.669532,0.424244,0.466324,0.642011,0.300164,0.0311568,0.316774,0.0515029,0.285906,0.424729,0.133102,0.786026,0.811074,0.954594,0.141523,0.37873,0.631148,0.416,0.312152,0.469326,0.852319,0.255848,0.733904,0.327741,0.259328,0.324115,0.918864,0.359271,0.895563,0.41357,0.510796,0.0965908,0.894645,0.206727,0.774581,0.303742,0.999802,0.0571508,0.879564,0.21268,0.134499,0.653508,0.182536,0.0494009,0.440927,0.194214,0.236136,0.715931,0.0305365,0.42661,0.197009,0.45949,0.259259,0.0872298,0.209394,0.383186,0.272472,0.335,0.982269,0.826112,0.0858148,0.250355,0.0516404,0.464705,0.769757,0.145757,0.21017,0.178628,0.471766,0.860415,0.00458473,0.679863,0.677596,0.403996,0.798515,0.350829,0.678254,0.963753,0.294393,0.704983,0.134175,0.312227,0.249037,0.47978,0.881945,0.689436,0.419432,0.441565,0.0983332,0.577892,0.842366,0.221492,0.271839,0.249429,0.667234,0.225999,0.153657,0.700678,0.573083,0.352458,0.272368,0.55372,0.292286,0.374993,0.690942,0.580477,0.82935,0.415649,0.303855,0.639059,0.133769,0.989734,0.55357,0.401395,0.440077,0.225211,0.638974,0.281117,0.0427091,0.908337,0.643514,0.151686,0.599234,0.645522,0.330832,0.249798,0.132747,0.445257,0.654155,0.166521,0.595535,0.471128,0.771389,0.188963,0.33916,0.855305,0.280374,0.670294,0.662556,0.799372,0.153532,0.826033,0.996632,0.955471,0.0542312,0.350529,0.646551,0.350639,0.393721,0.490899,0.20992,0.21193,0.726858,0.564311,0.55345,0.633873,0.346764,0.0145791,0.393118,0.150451,0.956266,0.580083,0.88079,0.544547,0.687043,0.95807,0.671315,0.913955,0.760864,0.200847,0.0326381,0.0674637,0.0689752,0.342008,0.0811571,0.304415,0.874575,0.317312,0.556669,0.214539,0.225164,0.337505,0.690294,0.151595,0.270134,0.608352,0.600545,0.979097,0.202386,0.755413,0.314781,0.37461,0.2376,0.293182,0.331274,0.514208,0.0472916,0.681595,0.143917,0.563222,0.169689,0.838106,0.781325,0.621325,0.163904,0.205406,0.60205,0.263086,0.766717,0.835562,0.292762,0.219771,0.720021,0.997689,0.43602,0.913481,0.914862,0.51572,0.693965,0.0518585,0.303913,0.156394,0.535649,0.704787,0.617176,0.234482,0.380456,0.632075,0.0764483,0.190784,0.72197,0.413625,0.158333,0.98468,0.276407,0.419388,0.582731,0.341707,0.715697,0.988692,0.250791,0.805585,0.331248,0.399301,0.104372,0.239294,0.778234,0.355503,0.479105,0.0488783,0.0664242,0.484918,0.664853,0.437624,0.321461,0.26597,0.763847,0.171485,0.0536918,0.641613,0.527068,0.977633,0.683493,0.423631,0.496902,0.0245914,0.0592973,0.103705,0.477585,0.253093,0.7462,0.207068,0.205765,0.844801,0.482188,0.995511,0.423815,0.0141323,0.470374,0.176039,0.798925,0.917288,0.653007,0.26219,0.3794,0.706879,0.323634,0.414103,0.310817,0.796996,0.998995,0.330533,0.351541,0.60144,0.254818,0.245781,0.74328,0.199367,0.567046,0.78765,0.355892,0.888974,0.607048,0.699921,0.834761,0.48094,0.983484,0.185706,0.256173,0.497302,0.735557,0.217716,0.334767,0.943771,0.246139,0.710069,0.794173,0.271682,0.48921,0.990791,0.162774,0.809618,0.309778,0.417622,0.244483,0.493485,0.265282,0.246733,0.857288,0.953937,0.857203,0.248799,0.546789,0.7041,0.754166,0.119063,0.205902,0.687312,0.746362,0.627535,0.0146875,0.404777,0.359482,0.0933961,0.2057,0.273819,0.221112,0.262642,0.299688,0.622036,0.963412,0.537364,0.26802,0.310726,0.618205,0.371372,0.676891,0.396,0.016527,0.608838,0.982248,0.862203,0.0116493,0.668979,0.938756,0.202467,0.643584,0.173887,0.998752,0.715961,0.955612,0.755616,0.566514,0.322276,0.836493,0.575979,0.584439,0.799581,0.906591,0.893524,0.466336,0.0666714,0.846615,0.886319,0.655354,0.77661,0.353245,0.148849,0.0576388,0.134034,0.882501,0.630924,0.98768,0.0614465,0.414973,0.282671,0.504593,0.576177,0.0903938,0.312962,0.872285,0.870972,0.733927,0.56498,0.366991,0.411038,0.936738,0.255595,0.388464,0.473433,0.827635,0.430143,0.237631,0.153887,0.248656,0.723913,0.000593603,0.528681,0.466621,0.732668,0.119119,0.596962,0.210611,0.238445,0.0880713,0.960664,0.9683,0.763593,0.741471,0.89141,0.41629,0.0476341,0.264613,0.0913181,0.251363,0.981033,0.403463,0.61224,0.0314168,0.880487,0.352775,0.618182,0.336792,0.574514,0.621645,0.533745,0.344391,0.676498,0.999573,0.236228,0.543914,0.56024,0.0914743,0.483243,0.2835,0.540325,0.311618,0.464957,0.255069,0.554713,0.280264,0.940162,0.869931,0.328368,0.301939,0.838366,0.935728,0.0896425,0.4485,0.559104,0.0954484,0.778326,0.688622,0.838974,0.763395,0.68152,0.75486,0.41679,0.923673,0.722242,0.764978,0.726566,0.894018,0.14855,0.835526,0.0690064,0.52269,0.718334,0.806937,0.852205,0.750187,0.9969,0.571938,0.501811,0.813909,0.348945,0.689629,0.810282,0.939157,0.227752,0.618493,0.876204,0.320904,0.461685,0.721391,0.131498,0.28926,0.695027,0.546527,0.462917,0.670322,0.0294706,0.836434,0.211475,0.887857,0.943058,0.122888,0.855467,0.0751936,0.755225,0.635804,0.690914,0.868977,0.833814,0.525844,0.219008,0.527546,0.578132,0.962512,0.551657,0.519211,0.708721,0.922853,0.871761,0.798812,0.222817,0.621724,0.392546,0.0512064,0.0376095,0.868655,0.00580883,0.0476187,0.285793,0.184173,0.106939,0.705125,0.960455,0.661748,0.0241364,0.803711,0.0951215,0.233377,0.292871,0.516753,0.764154,0.928146,0.571722,0.372087,0.575776,0.922097,0.39897,0.954005,0.462065,0.640895,0.847629,0.47704,0.710768,0.468409,0.188989,0.444818,0.722638,0.445437,0.515613,0.526803,0.982328,0.909914,0.0381731,0.558432,0.679668,0.352463,0.832266,0.249238,0.184768,0.294858,0.720641,0.992769,0.745295,0.0784753,0.926919,0.0701076,0.280472,0.926768,0.648332,0.39578,0.979885,0.266088,0.328092,0.0551659,0.553497,0.0768638,0.570735,0.0394782,0.341231,0.303054,0.667502,0.287188,0.562618,0.368367,0.952266,0.900986,0.133903,0.64575,0.955059,0.683882,0.375748,0.745889,0.456097,0.160907,0.28594,0.832212,0.186918,0.300696,0.195303,0.541348,0.660401,0.870846,0.00870073,0.179851,0.104187,0.180004,0.581021,0.234131,0.582166,0.46709,0.042641,0.115361,0.875628,0.0583246,0.932966,0.416522,0.236148,0.322405,0.567791,|0.344098,0.62289,0.0765678,0.59775,0.911531,0.943643,0.0578143,0.792928,0.769317,0.411637,0.339575,0.439279,0.115439,0.952106,0.13224,0.361836,0.0161073,0.838952,0.300866,0.77071,0.580231,0.630003,0.594167,0.482611,0.718151,0.0953686,0.62128,0.071894,0.149267,0.90655,0.435501,0.621161,0.327794,0.608931,0.11559,0.314653,0.804823,0.81414,0.255577,0.529907,0.358589,0.259364,0.221518,0.544691,0.477959,0.611457,0.171108,0.107914,0.637122,0.685066,0.374363,0.0240591,0.0143059,0.39823,0.112407,0.893603,0.610488,0.898252,0.311277,0.174894,0.344685,0.989492,0.513819,0.684426,0.852008,0.494374,0.0299647,0.188954,0.9023,0.518573,0.58355,0.426027,0.805489,0.106844,0.380933,0.164057,0.096468,0.0902951,0.483659,0.888902,0.142597,0.825728,0.909939,0.493336,0.241607,0.431326,0.806804,0.38046,0.00339854,0.924845,0.869433,0.9646,0.506632,0.223107,0.151806,0.997848,0.270132,0.738412,0.325706,0.317846,0.0195439,0.0869349,0.0420806,0.630443,0.283807,0.781757,0.127901,0.469548,0.783698,0.370812,0.723932,0.252989,0.724582,0.0210724,0.254833,0.901281,0.479817,0.967245,0.217619,0.359615,0.150028,0.837399,0.902308,0.318683,0.617643,0.0953497,0.458974,0.295552,0.776719,0.925815,0.463851,0.393258,0.208841,0.677413,0.759751,0.130112,0.855422,0.5736,0.262638,0.558862,0.210451,0.601855,0.968197,0.128874,0.399422,0.568681,0.634691,0.60057,0.441519,0.116153,0.514804,0.251189,0.655096,0.202747,0.785703,0.39376,0.0213247,0.662832,0.943383,0.56034,0.555584,0.204771,0.35741,0.557383,0.512404,0.00346667,0.0218103,0.537274,0.242725,0.374536,0.782203,0.0598183,0.351394,0.203866,0.361291,0.250891,0.526727,0.949182,0.246157,0.0364037,0.203971,0.110887,0.45541,0.0402576,0.150617,0.562408,0.400492,0.140255,0.160358,0.0480747,0.390977,0.555807,0.838273,0.720682,0.743781,0.492247,0.983473,0.63064,0.969836,0.729712,0.012187,0.527428,0.935863,0.992751,0.855824,0.176831,0.00606668,0.889804,0.609035,0.691783,0.327036,0.165824,0.925276,0.969842,0.338145,0.804489,0.0828566,0.905929,0.677695,0.591341,0.122437,0.541894,0.571713,0.812232,0.754132,0.257738,0.734543,0.616549,0.834449,0.169215,0.823085,0.438409,0.886092,0.439582,0.334206,0.109022,0.62067,0.522513,0.0568937,0.556855,0.0557342,0.292779,0.973092,0.684607,0.421698,0.0677083,0.494784,0.682052,0.216994,0.503355,0.252536,0.431985,0.203553,0.13225,0.973967,0.236512,0.292368,0.907473,0.740394,0.692611,0.18444,0.579491,0.190083,0.891993,0.622296,0.556073,0.428211,0.791773,0.950519,0.506139,0.574381,0.598467,0.624747,0.0184369,0.175533,0.170396,0.40404,0.577235,0.706406,0.760338,0.77209,0.0652689,0.613909,0.291042,0.394729,0.727097,0.613423,0.0178062,0.355169,0.292488,0.302011,0.573686,0.598517,0.393006,0.644872,0.194441,0.265183,0.600997,0.376024,0.952614,0.135038,0.779786,0.554177,0.670632,0.156643,0.932932,0.466564,0.927901,0.831354,0.772537,0.904737,0.908412,0.637697,0.8734,0.825937,0.581224,0.266984,0.357456,0.297775,0.803875,0.908577,0.447673,0.800084,0.740615,0.906445,0.951883,0.597771,0.0236213,0.289573,0.0511236,0.80277,0.0363983,0.884788,0.637406,0.632644,0.874159,0.386233,0.615101,0.747169,0.459256,0.739802,0.828753,0.234039,0.710278,0.319029,0.490425,0.0461957,0.502285,0.272547,0.602713,0.162489,0.966129,0.331118,0.207075,0.110373,0.593505,0.719532,0.68465,0.506738,0.21197,0.391319,0.876045,0.0946586,0.790659,0.567638,0.100405,0.87591,0.802314,0.354606,0.357853,0.223954,0.431253,0.400744,0.799412,0.763038,0.823851,0.557687,0.518446,0.207054,0.22945,0.877963,0.547998,0.081494,0.00483298,0.753359,0.280174,0.636657,0.383843,0.675529,0.164957,0.145301,0.588513,0.512353,0.817515,0.381869,0.27208,0.595656,0.357644,0.717165,0.475275,0.0176118,0.814091,0.629173,0.0267079,0.737423,0.735458,0.213425,0.82095,0.503399,0.585044,0.155439,0.25209,0.629459,0.675704,0.0274481,0.355539,0.970939,0.695344,0.175645,0.662926,0.80994,0.570177,0.224425,0.00616056,0.271021,0.567624,0.471609,0.88261,0.772931,0.0862457,0.553374,0.106864,0.857982,0.510545,0.543576,0.826764,0.668642,0.176708,0.859729,0.865478,0.132665,0.98674,0.969737,0.914217,0.42829,0.0660411,0.531882,0.890982,0.459111,0.248274,0.306345,0.987739,0.32083,0.639208,0.120974,0.210272,0.410845,0.484025,0.58239,0.132772,0.519286,0.659199,0.949195,0.0182287,0.251788,0.459638,0.867466,0.786789,0.0436875,0.616599,0.179823,0.725771,0.586451,0.345657,0.0170379,0.1933,0.728681,0.678418,0.306241,0.102496,0.909775,0.480103,0.301343,0.927895,0.861412,0.799241,0.472565,0.270182,0.172017,0.451895,0.922867,0.482116,0.484146,0.331931,0.0913348,0.257323,0.103562,0.975906,0.761473,0.210626,0.335524,0.612079,0.446102,0.516574,0.573281,0.180268,0.309806,0.170682,0.100257,0.699749,0.594594,0.195345,0.0127749,0.650625,0.855753,0.648754,0.182219,0.984129,0.242401,0.0241061,0.66859,0.408457,0.590725,0.145905,0.669027,0.937663,0.460449,0.0168254,0.553905,0.135178,0.12548,0.564011,0.814202,0.74834,0.306106,0.771517,0.1828,0.190484,0.361394,0.798774,0.102993,0.39953,0.441194,0.352849,0.0305299,0.603598,0.46129,0.636526,0.604297,0.957424,0.959846,0.163496,0.556076,0.992165,0.0352619,0.96876,0.478685,0.325518,0.279288,0.39787,0.148929,0.475944,0.625661,0.0658655,0.703707,0.365322,0.184005,0.84519,0.950153,0.0733747,0.350938,0.722659,0.0638778,0.776247,0.201248,0.813563,0.987769,0.641921,0.306997,0.626017,0.357896,0.940882,0.766075,0.447858,0.827767,0.305581,0.982323,0.118249,0.172641,0.471778,0.906853,0.783564,0.356643,0.894972,0.0574017,0.469865,0.882386,0.17253,0.930897,0.999278,0.463943,0.491491,0.0112139,0.240788,0.910438,0.578457,0.606962,0.467096,0.704971,0.650408,0.0559503,0.530969,0.84964,0.241688,0.721346,0.496783,0.656369,0.44267,0.275128,0.724857,0.136049,0.385849,0.905549,0.50549,0.21777,0.686899,0.129194,0.22087,0.967141,0.971271,0.0246285,0.948235,0.350401,0.274246,0.427945,0.122524,0.266588,0.37789,0.999905,0.913885,0.324816,0.597582,0.784802,0.796658,0.199045,0.333418,0.773834,0.996505,0.316784,0.309498,0.80308,0.760805,0.754253,0.74779,0.490877,0.036796,0.39449,0.648976,0.0840828,0.230025,0.988936,0.831845,0.80648,0.519153,0.172438,0.459755,0.991608,0.353734,0.979662,0.631476,0.583449,0.495207,0.0256544,0.373719,0.567526,0.573166,0.231437,0.523085,0.97036,0.842808,0.285128,0.120325,0.623514,0.461085,0.200561,0.668459,0.321773,0.403431,0.124858,0.892392,0.501821,0.589217,0.218259,0.149731,0.951867,0.783685,0.993851,0.563704,0.0133299,0.400118,0.399784,0.876912,0.688114,0.31732,0.750083,0.107645,0.977561,0.351678,0.00606507,0.496881,0.824932,0.123025,0.865447,0.554627,0.271739,0.631649,0.299102,0.395513,0.972322,0.345445,0.423168,0.160935,0.360833,0.958059,0.442814,0.0498176,0.212209,0.889607,0.298995,0.839037,0.579503,0.980241,0.725028,0.920926,0.753583,0.690208,0.911622,0.449239,0.562995,0.389941,0.324376,0.437542,0.108023,0.251835,0.22279,0.681827,0.320558,0.698724,0.90832,0.725907,0.064109,0.486644,0.963303,0.905763,0.383892,0.176648,0.148964,0.338974,0.265004,0.200068,0.321945,0.861408,0.456956,0.931226,0.0994346,0.958902,0.191968,0.0808595,0.274041,0.676076,0.348129,0.243277,0.405986,0.226643,0.362946,0.998955,0.63547,0.442591,0.747078,0.277144,0.610054,0.652019,0.127982,0.871854,0.623142,0.0228721,0.343679,0.636829,0.143076,0.128902,0.211093,0.0109159,0.722778,0.811932,0.295548,0.0163678,0.195652,0.612457,0.412435,0.620971,0.399718,0.232668,0.0421612,0.0539643,0.631069,0.831201,0.197357,0.651021,0.109995,0.28779,0.828492,0.642266,0.14666,0.26557,0.954943,0.576634,0.266795,0.519306,0.420829,0.525537,0.772425,0.845688,0.868204,0.638462,0.884498,0.529987,0.608362,0.911599,0.61236,0.665016,0.557823,0.566326,0.195527,0.512611,0.546519,0.975763,0.596338,0.104609,0.3283,0.863324,0.599101,0.492873,0.161016,0.163793,0.42563,0.828128,0.455071,0.62104,0.46175,0.933964,0.536095,0.875235,0.577712,0.169742,0.585425,0.623824,0.543076,0.853987,0.256506,0.281401,0.0400407,0.0106664,0.0118586,0.956314,0.224857,0.163609,0.49567,0.693105,0.515743,0.84751,0.0263318,0.473839,0.838922,0.959771,0.0631993,0.559953,0.0396433,0.758699,0.728119,0.542897,0.280766,0.201967,0.192473,0.887912,0.311954,0.435775,0.606182,0.473048,0.250085,0.470191,0.0789742,0.104959,0.531781,0.531674,0.13559,0.0479856,0.117431,0.430693,0.51539,0.384067,0.345161,0.700586,0.0525113,0.458483,0.909042,0.821775,0.278871,0.694026,0.539974,0.183743,0.223535,0.713542,0.398276,0.933532,0.863214,0.0861356,0.618741,0.088782,0.608794,0.123788,0.21258,0.214871,0.545347,0.110554,0.926754,0.515238,0.387418,0.244904,0.470876,0.482048,0.243193,0.99167,0.780102,0.472822,0.922902,0.702347,0.651454,0.474776,0.70307,0.867904,0.434915,0.403197,0.423179,0.619418,0.936409,0.879712,0.742154,0.0431716,0.108559,0.516314,0.768277,0.559075,0.52249,0.622808,0.385244,0.535017,0.671012,0.938407,0.278418,0.765695,0.134915,0.878299,0.0520386,0.352215,0.930289,0.189757,0.124824,0.0888813,0.311301,0.0597935,0.485535,0.131789,0.350385,0.610058,0.436619,0.162268,0.750113,0.976977,0.00497019,0.523669,0.794017,0.68253,0.760373,0.890306,0.148313,0.57144,0.13062,0.784384,0.868547,0.128611,0.175946,0.267607,0.542273,0.890581,0.0887238,0.0714868,0.547142,0.00344115,0.904316,0.0842271,|0.830434,0.842427,0.6946,0.923119,0.362659,0.476576,0.798301,0.450056,0.610807,0.517857,0.92796,0.472331,0.794968,0.466077,0.244368,0.484034,0.9918,0.0321469,0.173573,0.115864,0.539953,0.898649,0.635209,0.912985,0.749831,0.713506,0.997312,0.395399,0.682469,0.536398,0.228819,0.188076,0.57229,0.290246,0.524553,0.956321,0.370474,0.480548,0.50375,0.829775,0.965263,0.791115,0.152625,0.759263,0.818699,0.433691,0.525207,0.152548,0.176972,0.858256,0.117935,0.671156,0.606511,0.256849,0.808555,0.64731,0.993826,0.827861,0.0832496,0.193233,0.408824,0.0477406,0.135225,0.436536,0.165087,0.0870124,0.967938,0.88877,0.575845,0.296958,0.901819,0.347295,0.376604,0.497023,0.41412,0.903691,0.702978,0.224395,0.637044,0.0394607,0.188831,0.436223,0.00224805,0.645102,0.770788,0.844871,0.165571,0.259506,0.0917752,0.221456,0.865452,0.314415,0.382178,0.45567,0.545265,0.618479,0.0314222,0.518434,0.213337,0.0524172,0.0415387,0.296669,0.968779,0.71287,0.928879,0.772074,0.399222,0.0831686,0.10878,0.620863,0.597095,0.888968,0.542138,0.0907432,0.849213,0.169893,0.51099,0.669203,0.786139,0.774063,0.584248,0.74876,0.880964,0.224342,0.735965,0.614,0.10746,0.0967541,0.718171,0.75571,0.202804,0.15344,0.878769,0.42299,0.202714,0.146522,0.369426,0.934698,0.0292091,0.322977,0.924732,0.181075,0.221815,0.335381,0.239552,0.0111036,0.813403,0.312974,0.717744,0.901313,0.868285,0.988841,0.0575722,0.298976,0.155396,0.781907,0.418931,0.00621235,0.763292,0.918455,0.696249,0.442853,0.363663,0.279365,0.777738,0.376212,0.547248,0.645369,0.513556,0.351304,0.00487459,0.84252,0.0222349,0.159782,0.812262,0.636658,0.359793,0.280833,0.996067,0.393396,6.65784e-05,0.451278,0.127347,0.333571,0.986841,0.0719537,0.487924,0.048238,0.259246,0.969765,0.00312382,0.15404,0.48407,0.815478,0.496656,0.36234,0.0660312,0.970074,0.442553,0.34245,0.968504,0.937415,0.682061,0.213179,0.68163,0.150966,0.0754052,0.799059,0.610903,0.417807,0.680462,0.0365348,0.467167,0.521521,0.646987,0.527949,0.376942,0.077674,0.277767,0.0958502,0.271699,0.979726,0.99565,0.644989,0.0174546,0.642313,0.33097,0.0843074,0.083977,0.518412,0.865651,0.607715,0.120079,0.771495,0.472015,0.168341,0.525743,0.800379,0.0389592,0.332705,0.554526,0.608083,0.419777,0.688103,0.0480489,0.742541,0.307337,0.0954143,0.836335,0.394424,0.770059,0.811172,0.434344,0.902208,0.235243,0.540148,0.967173,0.277539,0.109151,0.795359,0.918562,0.467468,0.691531,0.519439,0.78622,0.581457,0.599339,0.19786,0.572152,0.00220191,0.796853,0.155188,0.436722,0.0618958,0.283811,0.634355,0.137916,0.268062,0.125443,0.530322,0.524239,0.800904,0.42214,0.95955,0.663143,0.232509,0.629645,0.66411,0.0951124,0.826498,0.637723,0.897017,0.416742,0.0493234,0.18232,0.57509,0.910513,0.998761,0.669252,0.621623,0.782422,0.18417,0.259745,0.428169,0.874423,0.653845,0.722857,0.550607,0.231788,0.517333,0.299322,0.518544,0.386035,0.843264,0.346836,0.421452,0.631979,0.267541,0.826821,0.481034,0.239428,0.33635,0.859448,0.280378,0.186173,0.343071,0.529798,0.0890286,0.744265,0.0177454,0.490652,0.61379,0.555778,0.0103179,0.701895,0.0668962,0.516408,0.895353,0.342356,0.508035,0.545307,0.734344,0.655071,0.83221,0.372719,0.548068,0.654527,0.701674,0.226999,0.637154,0.98522,0.178192,0.388667,0.770873,0.573715,0.601279,0.0747075,0.671168,0.0150516,0.792043,0.42894,0.578252,0.885605,0.631969,0.505699,0.579498,0.288765,0.518109,0.674562,0.0170493,0.668989,0.690572,0.179576,0.111325,0.12547,0.641601,0.418979,0.140056,0.301891,0.134082,0.756108,0.169757,0.650498,0.372763,0.191746,0.821563,0.856341,0.416665,0.306032,0.339576,0.369458,0.291678,0.119926,0.145616,0.615385,0.638645,0.0512538,0.697512,0.637349,0.910144,0.95143,0.37452,0.738138,0.62473,0.223577,0.986189,0.475548,0.0572156,0.284417,0.372036,0.602673,0.477741,0.181913,0.962778,0.718474,0.6318,0.847198,0.887512,0.656774,0.562056,0.570493,0.180909,0.588149,0.430646,0.0921653,0.794154,0.0976071,0.406785,0.613813,0.0730205,0.483975,0.605048,0.574067,0.336919,0.0654777,0.697066,0.156154,0.952908,0.557084,0.284874,0.263916,0.91178,0.196978,0.704336,0.332562,0.444796,0.822906,0.14239,0.690188,0.565516,0.853852,0.732101,0.131975,0.199342,0.0200829,0.652407,0.485519,0.982084,0.807372,0.52305,0.873449,0.764433,0.213046,0.828404,0.46271,0.871188,0.85939,0.860604,0.671416,0.0542958,0.950651,0.506234,0.191124,0.326704,0.73136,0.9305,0.47735,0.00232172,0.110486,0.849452,0.213609,0.807419,0.968453,0.655764,0.91012,0.20212,0.68391,0.024268,0.739299,0.749664,0.617667,0.066204,0.409239,0.147943,0.850899,0.519458,0.95735,0.0256023,0.235026,0.619966,0.391668,0.751732,0.113282,0.362333,0.338101,0.538645,0.0899449,0.204689,0.14604,0.117177,0.62763,0.447948,0.224659,0.367952,0.0313329,0.394665,0.391064,0.860743,0.778876,0.977815,0.512609,0.659916,0.689549,0.628467,0.116788,0.952061,0.215382,0.228049,0.753684,0.201194,0.886322,0.809496,0.578989,0.628534,0.655,0.82482,0.911795,0.75587,0.464475,0.597717,0.611095,0.203053,0.411487,0.153206,0.975823,0.565448,0.921342,0.977903,0.029768,0.929692,0.00158411,0.134758,0.90749,0.362299,0.533667,0.835341,0.0356173,0.535176,0.0599137,0.458561,0.66634,0.821326,0.103494,0.481104,0.551944,0.554666,0.599317,0.529754,0.322857,0.572267,0.100284,0.556449,0.986887,0.840742,0.544291,0.0248968,0.843919,0.657119,0.987008,0.61697,0.815881,0.535696,0.0999056,0.940977,0.184931,0.246773,0.987161,0.184542,0.75859,0.37089,0.706352,0.914264,0.869617,0.73477,0.477278,0.304031,0.173738,0.110612,0.717229,0.00862068,0.206962,0.695525,0.14002,0.99948,0.441638,0.502052,0.222252,0.301787,0.817035,0.0538957,0.295283,0.541909,0.207868,0.39501,0.995192,0.0165048,0.365086,0.786023,0.250607,0.680211,0.68809,0.569182,0.0550589,0.351258,0.269414,0.222581,0.46965,0.148635,0.91821,0.556564,0.834194,0.482748,0.596713,0.906379,0.463442,0.37469,0.168328,0.742542,0.630303,0.956183,0.945259,0.314695,0.555535,0.437607,0.300967,0.508263,0.24896,0.669342,0.838322,0.607338,0.953065,0.748792,0.615749,0.221599,0.831427,0.363958,0.4341,0.0962517,0.805543,0.980911,0.936382,0.17032,0.0155953,0.428876,0.726351,0.99982,0.982198,0.172691,0.837287,0.305658,0.440689,0.223139,0.152306,0.301321,0.48242,0.86228,0.718821,0.660222,0.35487,0.407723,0.346323,0.603948,0.263819,0.924666,0.873285,0.450655,0.0208634,0.974225,0.635777,0.319722,0.880856,0.400939,0.965689,0.337455,0.211507,0.689258,0.758966,0.780522,0.0531774,0.963651,0.0185108,0.922319,0.117689,0.814024,0.396369,0.680693,0.301762,0.0627952,0.982875,0.502837,0.254009,0.86596,0.480253,0.380622,0.713358,0.742979,0.550065,0.607369,0.461396,0.852934,0.249796,0.57304,0.0230998,0.862741,0.800263,0.0651977,0.975258,0.563628,0.257092,0.445527,0.453227,0.0702497,0.637634,0.937497,0.812363,0.602352,0.381038,0.18614,0.764729,0.0425342,0.718397,0.648943,0.470628,0.923458,0.485767,0.278,0.241612,0.801979,0.80646,0.203322,0.486785,0.0719844,0.944889,0.972446,0.00578666,0.711319,0.269198,0.335242,0.301863,0.320522,0.956681,0.189474,0.0693164,0.21737,0.107385,0.45477,0.807443,0.194753,0.365815,0.333206,0.91917,0.473916,0.272488,0.213937,0.922828,0.789004,0.775175,0.0821016,0.528858,0.750683,0.425476,0.00430423,0.0982172,0.541222,0.042334,0.885025,0.35003,0.18717,0.248101,0.42528,0.894534,0.744629,0.520787,0.651829,0.969203,0.112912,0.995038,0.100759,0.89452,0.154789,0.923094,0.169759,0.184702,0.843067,0.44008,0.2632,0.984794,0.0973746,0.243467,0.972479,0.936867,0.484801,0.8699,0.328039,0.232658,0.220219,0.0460938,0.00476271,0.836284,0.624389,0.519885,0.484778,0.759343,0.362336,0.427154,0.526054,0.241781,0.137529,0.835376,0.121442,0.989278,0.756123,0.695744,0.927015,0.695577,0.524807,0.206285,0.485224,0.294862,0.952843,0.0320243,0.0846242,0.872576,0.404279,0.395876,0.784664,0.772097,0.783222,0.757011,0.282461,0.348852,0.917248,0.865577,0.316789,0.17938,0.579931,0.518233,0.307212,0.365086,0.102153,0.135329,0.374549,0.314316,0.308502,0.268328,0.0631644,0.271837,0.87212,0.50267,0.636853,0.71145,0.360549,0.21137,0.975979,0.910294,0.652033,0.2866,0.694957,0.902351,0.552074,0.809814,0.280745,0.264747,0.82088,0.691867,0.0841019,0.767942,0.844175,0.237688,0.000135899,0.925048,0.89505,0.107555,0.797045,0.86349,0.450038,0.959838,0.824462,0.173411,0.616159,0.206339,0.674129,0.203535,0.385665,0.242173,0.832297,0.663038,0.422953,0.291603,0.821167,0.0985721,0.474123,0.375534,0.861219,0.587055,0.793329,0.49709,0.88704,0.479301,0.0318736,0.180202,0.0217752,0.221827,0.985407,0.235836,0.105052,0.214791,0.577451,0.747391,0.756924,0.823084,0.0679486,0.990044,0.986945,0.36984,0.328781,0.24169,0.360027,0.432912,0.0188718,0.175962,0.797657,0.424301,0.297689,0.468034,0.0114573,0.602708,0.860699,0.567071,0.49977,0.0948404,0.494148,0.782145,0.592868,0.482431,0.573171,0.635725,0.828103,0.957795,0.523709,0.0308425,0.553682,0.840505,0.044029,0.28186,0.570777,0.165764,0.64369,0.371593,0.325794,0.793791,0.675689,0.201979,0.885246,0.942521,0.868444,0.868746,0.832324,0.159792,0.133181,0.0178089,0.0656527,0.619675,0.170513,0.7019,0.700804,0.338482,0.224904,0.367675,0.898901,0.0237299,0.96767,0.232302,0.458889,0.692045,0.346408,0.922016,0.536351,0.590169,0.234109,|0.891876,0.721598,0.858785,0.399386,0.396365,0.0887508,0.353519,0.911714,0.818933,0.756169,0.209373,0.313843,0.533466,0.967555,0.528974,0.361197,0.871649,0.30054,0.596727,0.238665,0.553669,0.491066,0.133729,0.186149,0.199895,0.944472,0.392957,0.442473,0.660686,0.443566,0.0979609,0.184905,0.0550512,0.550114,0.249944,0.624601,0.0744125,0.980711,0.91531,0.783527,0.379617,0.906053,0.421843,0.896259,0.555241,0.427751,0.425572,0.550871,0.622374,0.346005,0.167595,0.909701,0.682093,0.760458,0.600054,0.872068,0.397775,0.208492,0.34051,0.0703816,0.187076,0.190546,0.716313,0.881929,0.10346,0.170379,0.368482,0.864548,0.289181,0.56655,0.0124358,0.399287,0.931858,0.96884,0.315983,0.0206779,0.138844,0.892888,0.311123,0.654041,0.191408,0.753788,0.197387,0.067398,0.646244,0.952355,0.968369,0.599439,0.948324,0.476978,0.771577,0.106743,0.377776,0.36732,0.221108,0.400061,0.146497,0.426873,0.145072,0.0168066,0.0411395,0.477319,0.813156,0.325722,0.18581,0.0766934,0.0954345,0.963357,0.553411,0.432182,0.830585,0.992094,0.589255,0.0174832,0.884304,0.996879,0.467018,0.995073,0.299369,0.0829066,0.566786,0.0934772,0.635454,0.720717,0.492881,0.339339,0.764952,0.849084,0.270139,0.188353,0.294482,0.724988,0.121368,0.256061,0.570218,0.523104,0.0995575,0.111426,0.397705,0.426498,0.986976,0.0311741,0.350729,0.414721,0.313697,0.666487,0.858604,0.281709,0.775297,0.657581,0.694393,0.712141,0.409957,0.121187,0.743535,0.849093,0.678373,0.860558,0.502928,0.13418,0.506558,0.746549,0.101186,0.915402,0.072149,0.124708,0.169444,0.876421,0.551697,0.520457,0.395501,0.32201,0.580468,0.649332,0.423177,0.539042,0.330025,0.948382,0.769325,0.927621,0.982813,0.429408,0.723446,0.0920956,0.157896,0.00636351,0.859788,0.41631,0.673412,0.310553,0.810131,0.572273,0.58128,0.533278,0.43696,0.782709,0.413263,0.651237,0.998896,0.375539,0.457502,0.0763425,0.618513,0.465974,0.158731,0.517078,0.457337,0.94745,0.61317,0.455609,0.173998,0.531756,0.321958,0.52726,0.177588,0.0515681,0.0725122,0.864139,0.449334,0.4958,0.140513,0.62939,0.450891,0.444444,0.184182,0.671217,0.978448,0.853597,0.508284,0.979141,0.0885252,0.143625,0.752265,0.362789,0.458266,0.919193,0.585738,0.279034,0.681508,0.533666,0.577449,0.117016,0.821696,0.394709,0.780268,0.439272,0.929601,0.835031,0.779372,0.457584,0.939751,0.869636,0.794434,0.559332,0.722628,0.255462,0.0228571,0.326017,0.9387,0.40381,0.205339,0.108879,0.35728,0.861465,0.320225,0.767466,0.0137196,0.89435,0.884016,0.347604,0.996406,0.14699,0.0370806,0.944901,0.26114,0.268831,0.591173,0.117494,0.886704,0.344175,0.604586,0.601108,0.871996,0.431798,0.616804,0.99698,0.476481,0.12821,0.0619329,0.554501,0.118796,0.279914,0.58775,0.535945,0.106624,0.930079,0.859683,0.716231,0.893674,0.92167,0.652879,0.0783288,0.929227,0.538408,0.664574,0.578259,0.683157,0.355148,0.271778,0.856319,0.887331,0.421187,0.661586,0.220137,0.803576,0.849843,0.766566,0.750762,0.443076,0.609897,0.338158,0.745402,0.172487,0.381834,0.319752,0.428867,0.790574,0.586133,0.915783,0.726217,0.247874,0.590788,0.253231,0.191471,0.322385,0.220696,0.733865,0.111509,0.547823,0.202256,0.118906,0.154282,0.346542,0.595035,0.834288,0.613593,0.0889735,0.847609,0.0749627,0.46351,0.189185,0.581997,0.740092,0.184361,0.74539,0.405935,0.237191,0.732077,0.668386,0.755598,0.391847,0.976023,0.829981,0.283798,0.515887,0.0207655,0.88561,0.841928,0.3475,0.926108,0.883446,0.96717,0.705323,0.0373675,0.63961,0.276749,0.171907,0.213656,0.123727,0.363608,0.232783,0.878519,0.00618935,0.0483254,0.316561,0.329465,0.247624,0.905893,0.598941,0.0576094,0.932243,0.116232,0.545566,0.454576,0.456863,0.68631,0.471458,0.951188,0.6242,0.714339,0.412494,0.295287,0.152897,0.805427,0.878893,0.175451,0.246058,0.0475345,0.487189,0.745052,0.83538,0.854689,0.679454,0.137964,0.482747,0.45513,0.604781,0.998891,0.24159,0.778411,0.815785,0.0996075,0.559559,0.513894,0.953891,0.081386,0.293461,0.523305,0.616959,0.443074,0.21272,0.620944,0.304756,0.454616,0.808139,0.496122,0.692094,0.275355,0.366108,0.895695,0.113255,0.807708,0.380093,0.247155,0.422872,0.459344,0.56751,0.230246,0.0144562,0.864237,0.19465,0.848225,0.337022,0.898565,0.0228161,0.367844,0.297176,0.454156,0.275706,0.861285,0.0830398,0.77074,0.325262,0.00223255,0.553402,0.826642,0.506531,0.544362,0.156254,0.855072,0.361673,0.333514,0.971301,0.505106,0.177928,0.535556,0.00462914,0.784905,0.0117673,0.722454,0.71834,0.659712,0.74443,0.915926,0.63148,0.629631,0.604741,0.274348,0.837133,0.918506,0.215608,0.632934,0.368951,0.232669,0.088093,0.866012,0.640271,0.561441,0.418039,0.13335,0.244088,0.0998451,0.103454,0.492518,0.615547,0.865124,0.706964,0.116157,0.766335,0.312924,0.564618,0.446053,0.875681,0.216346,0.588586,0.181678,0.729381,0.154708,0.0279303,0.553613,0.0324694,0.716248,0.133399,0.0945517,0.614035,0.194242,0.337123,0.176271,0.279576,0.392318,0.199021,0.680866,0.929545,0.603327,0.77367,0.77707,0.259146,0.32936,0.0677133,0.0582479,0.242581,0.308567,0.710464,0.460266,0.173918,0.649557,0.81484,0.856556,0.309987,0.659545,0.569992,0.492939,0.708108,0.305234,0.000939429,0.676059,0.21266,0.151391,0.939342,0.462306,0.0224842,0.384305,0.137963,0.274093,0.374472,0.765579,0.0262043,0.554583,0.254177,0.422266,0.7929,0.84164,0.510814,0.281746,0.892276,0.478622,0.374662,0.499054,0.0821682,0.568582,0.95449,0.448133,0.577255,0.181621,0.161031,0.55326,0.222004,0.628838,0.526968,0.0855119,0.84027,0.126071,0.567334,0.0860736,0.268385,0.62868,0.325086,0.355472,0.623699,0.485536,0.707977,0.415823,0.673645,0.707647,0.188778,0.187654,0.209542,0.759492,0.72333,0.118443,0.193885,0.397416,0.815316,0.729386,0.853018,0.344329,0.216246,0.392501,0.906033,0.501098,0.964339,0.70078,0.352615,0.245335,0.720114,0.74437,0.915792,0.515518,0.522987,0.514301,0.128093,0.371161,0.978764,0.833951,0.224734,0.364265,0.725469,0.759134,0.881756,0.162036,0.424523,0.237102,0.17791,0.17859,0.111066,0.987519,0.609403,0.496189,0.142387,0.597792,0.743357,0.509286,0.516718,0.463952,0.00955492,0.713652,0.245727,0.181361,0.953686,0.148077,0.972518,0.0293933,0.36614,0.0550485,0.020556,0.372708,0.443753,0.505007,0.248487,0.90216,0.565939,0.860182,0.265254,0.716658,0.107554,0.103085,0.35654,0.427508,0.952721,0.483805,0.710062,0.963425,0.17297,0.933199,0.259515,0.39736,0.209502,0.990699,0.611636,0.826961,0.99656,0.979781,0.684659,0.722402,0.949019,0.620898,0.146872,0.553713,0.0396004,0.657673,0.286835,0.863157,0.0429073,0.907104,0.534621,0.319422,0.038812,0.399508,0.0510291,0.778016,0.787175,0.47878,0.0947253,0.468928,0.94234,0.976564,0.569096,0.978715,0.842554,0.373714,0.138828,0.323751,0.927873,0.694161,0.616137,0.980806,0.347246,0.792082,0.559923,0.869165,0.885741,0.678437,0.451209,0.000237763,0.681781,0.553951,0.0563856,0.820671,0.991487,0.285045,0.66756,0.996485,0.18097,0.836591,0.152312,0.0773015,0.255302,0.215835,0.136131,0.362467,0.797658,0.17516,0.483046,0.24626,0.531285,0.267435,0.427658,0.165055,0.930273,0.578528,0.794863,0.434033,0.569748,0.134522,0.100967,0.558666,0.380165,0.567747,0.00215322,0.258166,0.302271,0.23732,0.41124,0.565028,0.923482,0.0200424,0.980748,0.929958,0.938653,0.302441,0.388712,0.0299922,0.641861,0.0946563,0.244898,0.965763,0.115145,0.374705,0.425027,0.272874,0.724416,0.718042,0.379778,0.173651,0.995622,0.353397,0.625519,0.000915408,0.789203,0.600252,0.488866,0.487941,0.661031,0.0373153,0.148013,0.216675,0.293332,0.188916,0.0521877,0.0707799,0.446763,0.330064,0.238053,0.792437,0.906272,0.523364,0.703485,0.0905254,0.582171,0.491555,0.0238199,0.526907,0.246098,0.925073,0.0197901,0.74501,0.257958,0.796041,0.625623,0.263779,0.984883,0.389834,0.927433,0.636931,0.127355,0.290896,0.817357,0.586264,0.843674,0.796409,0.759032,0.502935,0.341751,0.425385,0.848873,0.250237,0.593633,0.34873,0.776521,0.399159,0.213072,0.77482,0.670789,0.477102,0.398667,0.920461,0.447464,0.886126,0.511444,0.748663,0.990209,0.630775,0.409447,0.861537,0.719536,0.0511715,0.740243,0.957832,0.818188,0.876622,0.73409,0.657147,0.270151,0.987426,0.538124,0.923549,0.747719,0.682307,0.357843,0.239572,0.101507,0.354314,0.467029,0.589638,0.694315,0.145649,0.988866,0.9809,0.387905,0.912082,0.139046,0.413844,0.976649,0.0337977,0.554076,0.390901,0.942305,0.476213,0.0912623,0.848079,0.468845,0.161853,0.324791,0.265385,0.554827,0.502148,0.686861,0.581526,0.383883,0.314064,0.902173,0.141267,0.402157,0.130017,0.143175,0.99685,0.198012,0.0601007,0.726309,0.761358,0.762128,0.207005,0.417417,0.446314,0.569004,0.159649,0.489746,0.750971,0.152345,0.911662,0.145737,0.923577,0.927902,0.647055,0.801277,0.654553,0.348405,0.276044,0.674431,0.855794,0.835157,0.511707,0.172197,0.774845,0.973402,0.591509,0.264422,0.47389,0.218353,0.699435,0.642729,0.632445,0.756031,0.0395679,0.132871,0.658051,0.141386,0.893729,0.404894,0.705307,0.267318,0.492108,0.237381,0.0498425,0.884915,0.568401,0.323518,0.98485,0.0570045,0.421065,0.237363,0.546905,0.420157,0.184688,0.662435,0.431969,0.753158,0.593508,0.169054,0.774318,0.105325,0.169021,0.00665951,0.205187,0.780878,0.39012,0.851431,0.350458,0.986895,0.619552,0.275428,0.0602984,0.216493,0.914375,0.690538,0.0937476,0.460479,0.603593,0.0103676,0.847707,|0.0885876,0.368004,0.812445,0.91867,0.722545,0.123972,0.694584,0.313525,0.32039,0.649671,0.143176,0.37652,0.0258079,0.561372,0.507675,0.752802,0.206999,0.0223401,0.803754,0.475355,0.788205,0.836444,0.129158,0.29799,0.944915,0.196978,0.632314,0.398489,0.975176,0.679015,0.580462,0.319821,0.427199,0.970177,0.159589,0.424966,0.154997,0.556844,0.388629,0.818361,0.790536,0.191413,0.0148816,0.763489,0.876442,0.262594,0.568024,0.463462,0.586065,0.0572715,0.0973624,0.431667,0.131283,0.417454,0.0930204,0.422705,0.236875,0.636816,0.665925,0.863496,0.304772,0.784378,0.891561,0.357205,0.396416,0.582661,0.335476,0.394275,0.813799,0.930801,0.113441,0.326841,0.315402,0.973978,0.0853843,0.487867,0.557468,0.336453,0.0552166,0.846683,0.43094,0.180737,0.154314,0.374138,0.128119,0.679697,0.696023,0.772724,0.866136,0.229515,0.441398,0.783782,0.31092,0.475731,0.1933,0.816589,0.481312,0.611301,0.876099,0.555545,0.569147,0.381367,0.78891,0.882668,0.784599,0.122506,0.920853,0.2626,0.516402,0.217347,0.816724,0.0417123,0.3899,0.900648,0.255078,0.167509,0.934638,0.902612,0.421208,0.331954,0.571269,0.989458,0.453992,0.0386745,0.373938,0.876114,0.744757,0.0033465,0.264689,0.327663,0.274212,0.492978,0.747736,0.899765,0.578868,0.831798,0.805411,0.969239,0.350418,0.639547,0.157846,0.300525,0.00918168,0.915406,0.38911,0.904496,0.585923,0.244398,0.405015,0.261159,0.142111,0.227032,0.42055,0.571117,0.827062,0.300826,0.546489,0.683078,0.680539,0.148981,0.547605,0.924602,0.647763,0.423097,0.412595,0.286102,0.579854,0.663518,0.064121,0.962102,0.870026,0.934142,0.098592,0.895626,0.638547,0.292651,0.776854,0.976925,0.82341,0.98476,0.407539,0.13345,0.294515,0.467171,0.572809,0.632712,0.644433,0.0360485,0.601728,0.939604,0.780202,0.879449,0.691768,0.801881,0.872586,0.330057,0.578621,0.653952,0.35791,0.666162,0.726826,0.175101,0.615094,0.197326,0.752902,0.894323,0.499144,0.910676,0.0453162,0.222262,0.618435,0.118271,0.307037,0.316436,0.79546,0.242498,0.542003,0.143146,0.878955,0.0574181,0.334643,0.685145,0.0197116,0.201784,0.726953,0.0360069,0.136063,0.0345403,0.475775,0.660767,0.323612,0.293571,0.872877,0.37885,0.32341,0.65128,0.948413,0.69853,0.712701,0.894028,0.479696,0.670994,0.72239,0.135644,0.575084,0.822064,0.975381,0.703661,0.816655,0.630668,0.149622,0.998004,0.304037,0.648495,0.199174,0.248343,0.703862,0.641749,0.811982,0.342416,0.994107,0.8773,0.329014,0.101194,0.608247,0.960473,0.926644,0.499085,0.576708,0.434068,0.475445,0.990316,0.241101,0.496977,0.048079,0.134129,0.312224,0.0100048,0.571855,0.555267,0.979136,0.189662,0.0876957,0.608485,0.34556,0.101404,0.0350611,0.934088,0.876947,0.544003,0.11577,0.321226,0.123255,0.0281245,0.832703,0.677092,0.204775,0.277292,0.802069,0.360988,0.876658,0.404407,0.294117,0.457579,0.679436,0.979712,0.369381,0.781056,0.0169297,0.854231,0.821475,0.815002,0.0694329,0.240786,0.912221,0.295027,0.29463,0.109255,0.606722,0.192576,0.717203,0.608557,0.450162,0.534377,0.488014,0.616338,0.334463,0.597319,0.625884,0.311592,0.555905,0.73536,0.559268,0.453493,0.949907,0.455406,0.556664,0.237132,0.475784,0.38921,0.655255,0.862141,0.956362,0.546392,0.29401,0.631535,0.0873455,0.28672,0.864123,0.546757,0.843624,0.194881,0.00164253,0.892573,0.788971,0.652146,0.574339,0.966093,0.365837,0.927275,0.803875,0.842391,0.453264,0.742784,0.29436,0.233544,0.484265,0.927935,0.387738,0.469843,0.846449,0.165997,0.841175,0.0180261,0.293782,0.283631,0.912781,0.536796,0.463947,0.847164,0.711795,0.558996,0.380803,0.714036,0.270425,0.260522,0.774265,0.280808,0.414364,0.531341,0.236975,0.789723,0.642436,0.783873,0.173379,0.482413,0.495595,0.127548,0.25883,0.547586,0.188066,0.818818,0.81841,0.177596,0.121177,0.860644,0.0358419,0.0461016,0.857715,0.951564,0.930128,0.221533,0.70008,0.531918,0.958078,0.967201,0.621728,0.416256,0.366222,0.675896,0.84793,0.712538,0.410666,0.849309,0.175816,0.274764,0.640913,0.835339,0.324053,0.282403,0.617036,0.119522,0.57697,0.897436,0.930719,0.701085,0.0759944,0.834318,0.371531,0.428488,0.953756,0.585176,0.522891,0.626844,0.267545,0.463595,0.790756,0.864702,0.0980911,0.816205,0.0704142,0.776653,0.575609,0.931273,0.087737,0.0112746,0.961844,0.683988,0.850652,0.382083,0.181213,0.415127,0.647463,0.39523,0.00449246,0.270283,0.375514,0.388667,0.717285,0.300159,0.464113,0.902825,0.00309092,0.680916,0.398386,0.777562,0.406817,0.16217,0.558993,0.316558,0.310975,0.602192,0.688015,0.740299,0.121971,0.744654,0.561909,0.0429777,0.429511,0.999438,0.817074,0.869707,0.719854,0.359471,0.739036,0.215045,0.0547774,0.542326,0.904644,0.748544,0.63638,0.76292,0.989218,0.916923,0.467499,0.975722,0.169254,0.0225498,0.341007,0.693989,0.881936,0.321004,0.104242,0.469138,0.155319,0.0671386,0.916767,0.318676,0.643537,0.903997,0.764592,0.137198,0.269506,0.887664,0.565749,0.1177,0.283893,0.551485,0.99198,0.706068,0.0344322,0.81356,0.107747,0.407978,0.476163,0.944281,0.665664,0.0578629,0.19955,0.52844,0.515534,0.680479,0.619202,0.987547,0.504291,0.339172,0.251114,0.525838,0.683536,0.932147,0.207853,0.00383288,0.275572,0.816776,0.964056,0.990099,0.377109,0.588903,0.57099,0.24444,0.725999,0.959487,0.147613,0.300107,0.86189,0.0338981,0.0822948,0.271533,0.755717,0.149524,0.0154567,0.796413,0.321659,0.22954,0.195345,0.531707,0.0365725,0.546858,0.254499,0.384633,0.689113,0.126629,0.310728,0.388451,0.631215,0.409636,0.980863,0.165795,0.521247,0.240192,0.857983,0.525678,0.562005,0.742603,0.404311,0.728104,0.803315,0.0975074,0.283366,0.153994,0.539761,0.754833,0.665237,0.956141,0.181573,0.910858,0.951486,0.727176,0.894152,0.351788,0.39447,0.758349,0.883169,0.533346,0.572311,0.477661,0.917739,0.99474,0.929779,0.0610394,0.0939303,0.370556,0.282152,0.307503,0.357699,0.564833,0.147615,0.888282,0.363296,0.49192,0.511001,0.218237,0.142606,0.936827,0.0663634,0.86684,0.908078,0.725203,0.269372,0.555111,0.934745,0.731217,0.0514854,0.216619,0.441942,0.79434,0.78839,0.917938,0.499704,0.725523,0.0518145,0.673615,0.267533,0.19677,0.808051,0.697287,0.374618,0.18516,0.725808,0.202874,0.315076,0.230939,0.80372,0.508201,0.770179,0.674942,0.490079,0.500991,0.413967,0.674909,0.334996,0.913749,0.214709,0.255421,0.889239,0.777051,0.834005,0.872182,0.574911,0.789336,0.380792,0.128448,0.699405,0.569234,0.518163,0.586038,0.905429,0.209887,0.304032,0.052504,0.255207,0.856657,0.944078,0.533209,0.512772,0.554442,0.324181,0.753014,0.582305,0.89447,0.665303,0.188069,0.254456,0.564021,0.722839,0.606063,0.680604,0.925266,0.256049,0.710656,0.844232,0.889134,0.789681,0.793409,0.724162,0.517747,0.0865694,0.420835,0.380989,0.942471,0.881174,0.516789,0.965049,0.470249,0.234799,0.162182,0.183036,0.231132,0.372147,0.60589,0.369901,0.185659,0.0357559,0.913229,0.868118,0.904532,0.370858,0.096761,0.444751,0.188112,0.507955,0.232889,0.0501449,0.788669,0.717558,0.138259,0.611572,0.623642,0.361438,0.598848,0.556827,0.69891,0.0393832,0.17601,0.580288,0.97555,0.234694,0.648196,0.237846,0.818824,0.585475,0.110803,0.144177,0.735069,0.0474513,0.671847,0.757886,0.993792,0.489174,0.704253,0.176549,0.998255,0.416346,0.209444,0.348841,0.921443,0.541057,0.0492361,0.548163,0.662858,0.459534,0.0276096,0.786956,0.830949,0.775357,0.678772,0.980199,0.563618,0.574543,0.666646,0.699936,0.737689,0.0106507,0.8688,0.158215,0.0200964,0.324129,0.39518,0.347161,0.853129,0.633394,0.430886,0.979641,0.741891,0.463596,0.590069,0.980741,0.954456,0.176739,0.754279,0.306074,0.0357884,0.415318,0.247804,0.155072,0.482977,0.275103,0.297016,0.0241433,0.0569782,0.990044,0.272798,0.305455,0.888528,0.72248,0.207057,0.647608,0.899142,0.655047,0.624627,0.130864,0.4132,0.364441,0.969279,0.0273015,0.611029,0.851447,0.718997,0.886048,0.836161,0.768887,0.136949,0.586174,0.403638,0.577213,0.438831,0.775396,0.250544,0.176301,0.721387,0.459024,0.190825,0.394528,0.933459,0.063988,0.939387,0.278905,0.874467,0.0927293,0.765036,0.345249,0.710946,0.996137,0.529016,0.462692,0.98476,0.847756,0.496627,0.169478,0.980184,0.99292,0.752885,0.775826,0.992913,0.427248,0.107972,0.968514,0.228942,0.108863,0.0159233,0.13084,0.367165,0.0706217,0.808821,0.677346,0.14473,0.910863,0.969977,0.428337,0.526255,0.0533231,0.64229,0.0562167,0.302238,0.661599,0.126391,0.419729,0.781207,0.0398936,0.66388,0.970877,0.107993,0.602315,0.545876,0.0442209,0.51193,0.711963,0.308677,0.970635,0.93707,0.820426,0.78416,0.536925,0.828802,0.801782,0.89678,0.862332,0.708197,0.377645,0.445601,0.2237,0.137726,0.7865,0.392991,0.573815,0.363868,0.109897,0.142361,0.138193,0.670621,0.000171721,0.319446,0.861729,0.0381692,0.143721,0.347188,0.564884,0.18273,0.152842,0.449229,0.409813,0.960265,0.999732,0.578986,0.131899,0.834288,0.324527,0.100592,0.766143,0.856537,0.567933,0.558338,0.256642,0.643775,0.178346,0.576907,0.465134,0.233015,0.0252695,0.801811,0.997558,0.184708,0.378695,0.987109,0.459709,0.758913,0.07488,0.204129,0.620773,0.417415,0.841804,0.736821,0.0694677,0.404503,0.933731,0.249846,0.313538,0.176636,0.645436,0.564439,0.96946,0.897263,0.520733,0.856669,0.254884,0.123942,0.888225,0.790184,0.64393,0.763777,0.673039,0.906684,0.170378,0.261152,0.499559,0.604931,0.769332,0.967019,0.253867,0.262429,|0.112585,0.475761,0.120806,0.446317,0.589908,0.324143,0.0860872,0.030686,0.286288,0.176301,0.584272,0.154101,0.894483,0.110344,0.74908,0.485655,0.144468,0.165315,0.690913,0.344105,0.53528,0.0786896,0.888789,0.839998,0.653783,0.273425,0.792367,0.486675,0.392713,0.34571,0.220375,0.391698,0.536909,0.148879,0.0220671,0.41398,0.22024,0.513084,0.928177,0.847222,0.0952391,0.652331,0.973679,0.939021,0.849962,0.498335,0.753339,0.9486,0.54888,0.940418,0.147272,0.497183,0.41526,0.021614,0.583973,0.238089,0.427361,0.869057,0.796005,0.331802,0.0985165,0.896856,0.974795,0.523215,0.688281,0.0998138,0.999839,0.952665,0.436811,0.85153,0.260998,0.970234,0.671472,0.379118,0.552612,0.0703976,0.5672,0.639617,0.243057,0.98189,0.893604,0.538178,0.505693,0.631584,0.689493,0.915114,0.522945,0.409357,0.0758409,0.581079,0.222691,0.659935,0.253053,0.726818,0.763191,0.19399,0.707858,0.708852,0.085301,0.327817,0.927576,0.0179982,0.10405,0.173204,0.752266,0.843053,0.0624344,0.430822,0.629551,0.0954559,0.299569,0.175912,0.934633,0.895229,0.38132,0.268933,0.94366,0.223528,0.897401,0.348013,0.762056,0.677863,0.251524,0.590084,0.915225,0.311399,0.756833,0.440322,0.741876,0.96074,0.108108,0.195442,0.470359,0.0677831,0.073236,0.374979,0.995189,0.145702,0.107917,0.735866,0.155131,0.0253377,0.896089,0.790489,0.833052,0.7217,0.39405,0.942252,0.917696,0.642259,0.644306,0.173662,0.249067,0.159918,0.206241,0.227916,0.132639,0.152588,0.895199,0.137363,0.149919,0.436523,0.248324,0.911892,0.0127057,0.945416,0.597203,0.364584,0.0427116,0.641394,0.249634,0.407834,0.0774696,0.382971,0.790762,0.888905,0.870247,0.438982,0.274131,0.541106,0.25599,0.0410473,0.744336,0.111829,0.660637,0.0897831,0.0608374,0.600251,0.776958,0.874019,0.445639,0.920166,0.170944,0.702372,0.52075,0.532895,0.790864,0.517007,0.594191,0.99082,0.648634,0.893983,0.83186,0.405137,0.0269944,0.954374,0.104372,0.032247,0.416571,0.935216,0.0601134,0.981383,0.364593,0.893711,0.650777,0.481332,0.185285,0.397946,0.499309,0.657814,0.672906,0.524538,0.666462,0.695247,0.362579,0.494336,0.693181,0.332941,0.333984,0.183085,0.735589,0.266408,0.366659,0.0428573,0.802413,0.532705,0.562707,0.0946918,0.713569,0.589765,0.536725,0.121891,0.555609,0.922125,0.971269,0.589465,0.607017,0.343514,0.2394,0.693559,0.464986,0.659029,0.193111,0.721578,0.937615,0.0526512,0.238453,0.540586,0.328472,0.611326,0.451174,0.918768,0.564529,0.306698,0.736232,0.0850281,0.288072,0.575709,0.681541,0.0195605,0.150686,0.133579,0.778471,0.222402,0.268355,0.638629,0.84715,0.0505798,0.617153,0.21222,0.349221,0.145936,0.0897914,0.43546,0.088933,0.208851,0.804039,0.524517,0.0815364,0.345113,0.590823,0.859805,0.388434,0.390505,0.810451,0.8104,0.411052,0.0675583,0.217216,0.520708,0.743232,0.00692374,0.150928,0.762034,0.123286,0.80331,0.0929999,0.769638,0.580901,0.845003,0.621034,0.956157,0.647882,0.525671,0.0314536,0.244337,0.682864,0.234877,0.839946,0.242024,0.0283337,0.444854,0.431138,0.000522971,0.0493306,0.61095,0.919571,0.590766,0.799666,0.940576,0.865154,0.18147,0.654803,0.271589,0.332,0.463718,0.740483,0.424688,0.425333,0.836183,0.566856,0.890984,0.371599,0.067209,0.807846,0.438353,0.356651,0.393241,0.649636,0.812858,0.0121998,0.524055,0.890919,0.118667,0.448046,0.49023,0.283208,0.115155,0.942324,0.89312,0.213684,0.43852,0.399758,0.150986,0.0536751,0.0295959,0.0748695,0.126788,0.905397,0.466444,0.275427,0.748343,0.136512,0.373267,0.291038,0.766535,0.109813,0.364329,0.91215,0.764905,0.764752,0.544297,0.418165,0.507746,0.961718,0.881144,0.66623,0.2529,0.57121,0.661791,0.379199,0.909586,0.88217,0.352165,0.763935,0.9095,0.0726628,0.889597,0.455596,0.538356,0.314612,0.0631659,0.510191,0.305147,0.478317,0.53932,0.149949,0.285658,0.953435,0.748642,0.954687,0.702321,0.570449,0.915828,0.900541,0.38904,0.596885,0.537759,0.336162,0.75229,0.974595,0.671228,0.10024,0.366503,0.273439,0.391281,0.188799,0.5322,0.424722,0.757388,0.976093,0.563766,0.762596,0.39278,0.0703302,0.0226912,0.758842,0.737779,0.236606,0.220907,0.279131,0.596098,0.946452,0.264784,0.758965,0.0620869,0.767396,0.209917,0.162193,0.259221,0.544663,0.950695,0.691814,0.321109,0.444965,0.598107,0.813253,0.761741,0.955422,0.497434,0.298565,0.107879,0.372256,0.587084,0.497602,0.309187,0.626827,0.0973441,0.464667,0.79001,0.632128,0.994043,0.661266,0.458746,0.973314,0.862782,0.697295,0.524295,0.84816,0.591273,0.644925,0.111308,0.917174,0.683627,0.7581,0.140668,0.471857,0.671921,0.857372,0.0364556,0.0458741,0.844402,0.56659,0.165953,0.728929,0.475722,0.853282,0.640567,0.00657815,0.448385,0.872506,0.376047,0.63628,0.125748,0.952084,0.68465,0.250683,0.164573,0.280128,0.041629,0.387091,0.843026,0.29755,0.215652,0.979123,0.67524,0.375627,0.0701193,0.239315,0.331229,0.157049,0.138162,0.527982,0.35833,0.325737,0.0916161,0.50375,0.982848,0.890202,0.982762,0.460815,0.278216,0.987713,0.0678817,0.722763,0.937068,0.861077,0.889113,0.931824,0.200726,0.134989,0.156146,0.756763,0.14368,0.475533,0.916972,0.925695,0.98305,0.660961,0.926692,0.72332,0.0863667,0.359763,0.522951,0.875988,0.0368277,0.726969,0.334215,0.595086,0.613531,0.783316,0.926196,0.235301,0.0280318,0.378529,0.0688499,0.334661,0.243356,0.0343558,0.079392,0.357477,0.308577,0.469254,0.449973,0.582186,0.684342,0.696029,0.403539,0.162917,0.0541787,0.881623,0.305989,0.488106,0.0826619,0.952505,0.589985,0.867774,0.946591,0.758746,0.30822,0.0306747,0.155182,0.428784,0.27718,0.440023,0.291086,0.558945,0.347233,0.00662124,0.210952,0.738084,0.0758675,0.25576,0.444883,0.970238,0.704385,0.797391,0.737384,0.542046,0.309025,0.0765875,0.941506,0.360229,0.863172,0.454676,0.944209,0.115226,0.379083,0.927768,0.420383,0.788612,0.758958,0.688038,0.913008,0.403814,0.0101505,0.661991,0.476608,0.55671,0.4804,0.441675,0.86317,0.433556,0.602219,0.0991233,0.922503,0.28639,0.908886,0.419328,0.887047,0.743305,0.398428,0.0307322,0.598274,0.777989,0.858668,0.324997,0.498903,0.733483,0.452524,0.888839,0.94314,0.00646728,0.0846155,0.609116,0.658487,0.566354,0.890129,0.601444,0.0866046,0.693581,0.943046,0.459961,0.717938,0.419533,0.507774,0.408951,0.886621,0.580304,0.018066,0.249881,0.732316,0.681908,0.449958,0.055837,0.708482,0.695832,0.211461,0.441546,0.600795,0.961282,0.216231,0.00917614,0.292493,0.746144,0.202072,0.664866,0.801254,0.575556,0.65175,0.485956,0.273522,0.864128,0.767201,0.591696,0.278384,0.255895,0.836228,0.661273,0.211597,0.104076,0.459429,0.513823,0.98529,0.185308,0.135381,0.722783,0.910217,0.091149,0.40124,0.266684,0.114995,0.744765,0.17466,0.438218,0.693171,0.398738,0.601302,0.705103,0.217368,0.000962079,0.964035,0.980786,0.57334,0.300746,0.00490403,0.879811,0.634754,0.0447719,0.0420188,0.684238,0.515068,0.349427,0.791126,0.608136,0.978937,0.354646,0.499642,0.0681867,0.0408554,0.856041,0.802725,0.327285,0.81356,0.724186,0.380186,0.772224,0.170888,0.259812,0.465935,0.078768,0.859542,0.555524,0.222239,0.631287,0.961215,0.264158,0.856238,0.0260927,0.348827,0.0665402,0.818429,0.649627,0.370151,0.542133,0.20756,0.0866595,0.83321,0.386174,0.602663,0.433741,0.740684,0.795536,0.23444,0.189895,0.137785,0.897933,0.346315,0.559709,0.439672,0.315539,0.689096,0.722996,0.45542,0.774173,0.26153,0.515974,0.0433542,0.0905541,0.986893,0.0835407,0.109791,0.191511,0.884404,0.997171,0.108093,0.328006,0.921731,0.567251,0.867792,0.215268,0.220038,0.831734,0.754489,0.395218,0.999054,0.214224,0.913901,0.0490854,0.16805,0.801782,0.759931,0.281462,0.0354698,0.00276333,0.8979,0.264041,0.327595,0.27571,0.92894,0.0554399,0.970529,0.901872,0.0935292,0.21309,0.662665,0.584689,0.857694,0.453803,0.717411,0.0851506,0.79266,0.395634,0.928341,0.651454,0.370703,0.0307927,0.894321,0.447008,0.434611,0.226398,0.144559,0.384827,0.735005,0.306716,0.768499,0.355084,0.659363,0.800382,0.729461,0.39245,0.148463,0.324278,0.669249,0.402928,0.877327,0.906259,0.518315,0.538997,0.153665,0.784453,0.184848,0.695258,0.622581,0.570114,0.284972,0.531142,0.010391,0.184456,0.408283,0.142292,0.266007,0.807968,0.516524,0.851058,0.0431071,0.000718415,0.963,0.682613,0.776987,0.142497,0.630985,0.479881,0.575609,0.446043,0.16286,0.337819,0.513474,0.366908,0.631381,0.60324,0.371513,0.815542,0.124868,0.796829,0.337806,0.936572,0.135157,0.755548,0.572081,0.306612,0.939776,0.585469,0.883882,0.103492,0.902606,0.478984,0.407812,0.00601542,0.572329,0.111853,0.718339,0.555524,0.927615,0.485411,0.0447413,0.726155,0.0294947,0.349744,0.540209,0.296251,0.814103,0.89247,0.0814581,0.762798,0.542625,0.914037,0.0332663,0.607459,0.0488169,0.732382,0.947867,0.979658,0.380442,0.479658,0.00246799,0.122899,0.817361,0.278534,0.818104,0.820683,0.958827,0.38925,0.965532,0.162023,0.205254,0.00613523,0.759232,0.311308,0.430155,0.80192,0.898018,0.296215,0.176264,0.958122,0.840535,0.811791,0.298168,0.562838,0.217697,0.575275,0.830973,0.767924,0.0142654,0.492933,0.01673,0.564738,0.917967,0.569217,0.108225,0.678518,0.667116,0.794169,0.0896377,0.425832,0.51233,0.498938,0.0245365,0.437666,0.121043,0.635309,0.314372,0.72855,0.551474,0.480298,0.292869,0.982781,0.564841,0.608905,0.720103,0.687462,0.285225,0.282976,0.311193,0.16345,0.380199,0.849317,0.120253,0.797131,0.106888,|0.737146,0.264634,0.677087,0.69433,0.411833,0.951013,0.108467,0.485454,0.815751,0.0308985,0.724603,0.225226,0.737724,0.464603,0.796343,0.245895,0.0521971,0.188695,0.116662,0.887623,0.172148,0.999313,0.742969,0.799357,0.258116,0.639271,0.678607,0.0705716,0.483281,0.456334,0.483891,0.600153,0.52581,0.402832,0.980056,0.135784,0.325658,0.144472,0.724035,0.535469,0.62135,0.0387228,0.971102,0.0330356,0.958634,0.644881,0.317918,0.348016,0.563256,0.861262,0.351526,0.943562,0.59175,0.700081,0.985459,0.955097,0.522138,0.938222,0.312221,0.606287,0.720529,0.356531,0.0820627,0.60358,0.426268,0.92759,0.484601,0.674623,0.194821,0.86684,0.550004,0.398599,0.150068,0.744671,0.311993,0.0306354,0.229233,0.193061,0.244832,0.201275,0.229442,0.311591,0.778788,0.305785,0.725188,0.581135,0.122565,0.250148,0.826207,0.0995874,0.592239,0.252327,0.407836,0.480807,0.166542,0.233756,0.0894552,0.861992,0.305531,0.980278,0.200759,0.338253,0.031022,0.654778,0.958713,0.171447,0.626912,0.906898,0.361199,0.00359857,0.174542,0.467198,0.934746,0.0416456,0.750171,0.831556,0.239907,0.996141,0.133119,0.143229,0.922137,0.444685,0.417617,0.49729,0.704846,0.460848,0.494908,0.530501,0.718098,0.294361,0.83556,0.484834,0.624071,0.250468,0.185376,0.527479,0.0870638,0.0419061,0.908212,0.482983,0.644354,0.113123,0.900894,0.175423,0.688182,0.612624,0.972493,0.0811725,0.122168,0.483086,0.649431,0.391874,0.978324,0.676702,0.932416,0.5506,0.169487,0.662142,0.677911,0.354282,0.541239,0.894288,0.200558,0.572706,0.0579104,0.166508,0.191282,0.772413,0.000540376,0.738853,0.678505,0.697139,0.0722057,0.382164,0.0595073,0.088223,0.624991,0.277376,0.914082,0.0979328,0.116128,0.584126,0.28005,0.859923,0.776365,0.782974,0.636368,0.516502,0.558072,0.587436,0.249474,0.802107,0.143342,0.29595,0.610014,0.423563,0.223749,0.578729,0.745513,0.409036,0.282216,0.452431,0.31422,0.341901,0.494591,0.333406,0.599269,0.620051,0.778205,0.383197,0.233272,0.109995,0.0304239,0.403908,0.311788,0.694043,0.631877,0.497583,0.771649,0.7819,0.850794,0.359351,0.315127,0.935605,0.889868,0.57643,0.000350654,0.146146,0.608079,0.179431,0.793441,0.659942,0.527428,0.193231,0.305036,0.17138,0.384548,0.688591,0.0502138,0.456524,0.0395136,0.85789,0.510114,0.0665269,0.364422,0.664013,0.334487,0.989729,0.465993,0.366573,0.340659,0.446791,0.580579,0.668111,0.954233,0.00572133,0.166724,0.789858,0.592577,0.876947,0.217727,0.0784749,0.266908,0.0751494,0.171814,0.148965,0.610133,0.415132,0.982319,0.688777,0.683592,0.54718,0.910204,0.465021,0.75048,0.20521,0.396633,0.841248,0.0682145,0.841895,0.0539588,0.69589,0.963729,0.645226,0.0899139,0.45917,0.495962,0.845805,0.221173,0.654977,0.30738,0.10134,0.36962,0.258211,0.414378,0.653426,0.1854,0.43621,0.332282,0.417543,0.302936,0.964211,0.694758,0.313719,0.335743,0.9605,0.730801,0.244965,0.0527776,0.732206,0.272714,0.112668,0.459225,0.523655,0.195559,0.119996,0.0358403,0.949046,0.168936,0.0491222,0.42423,0.206337,0.38042,0.154809,0.778288,0.56539,0.369443,0.97136,0.104793,0.315574,0.152326,0.993745,0.891974,0.20196,0.981916,0.401174,0.124054,0.352089,0.886763,0.341049,0.0509454,0.932981,0.759679,0.162441,0.0645629,0.882222,0.0933903,0.298733,0.160299,0.312226,0.427774,0.557578,0.204224,0.118214,0.567722,0.053817,0.10962,0.177667,0.675311,0.677016,0.591694,0.755669,0.658633,0.887935,0.221172,0.59326,0.387688,0.218084,0.824939,0.0116799,0.79085,0.414844,0.91965,0.307596,0.17731,0.748756,0.15986,0.861797,0.807803,0.0624173,0.288535,0.86327,0.875538,0.560751,0.669613,0.909528,0.240719,0.0533856,0.264212,0.866668,0.357663,0.602758,0.877898,0.137836,0.0553886,0.483836,0.401131,0.147319,0.626722,0.84947,0.726075,0.558601,0.794492,0.351425,0.88503,0.0523874,0.428106,0.0166584,0.248439,0.434285,0.171745,0.596373,0.663123,0.278232,0.870321,0.164956,0.964559,0.960957,0.0185698,0.609517,0.447276,0.811169,0.242817,0.668578,0.425588,0.358909,0.325714,0.0240578,0.262023,0.165073,0.328592,0.43385,0.656895,0.744396,0.562422,0.656589,0.0492759,0.293665,0.0310096,0.272044,0.937159,0.95617,0.181963,0.559931,0.984134,0.96626,0.801427,0.722044,0.583564,0.46838,0.852652,0.467179,0.68682,0.626612,0.475993,0.718471,0.826403,0.711541,0.445823,0.0437166,0.939022,0.529544,0.0719239,0.453481,0.481574,0.964604,0.0116432,0.194803,0.152719,0.891381,0.328707,0.275336,0.815262,0.793614,0.987379,0.601462,0.612335,0.479907,0.315292,0.381724,0.548793,0.126994,0.494975,0.235608,0.246389,0.421846,0.927167,0.867445,0.498521,0.355258,0.177519,0.92371,0.185508,0.956639,0.459672,0.836067,0.081819,0.200344,0.618868,0.615102,0.326999,0.858421,0.888303,0.401859,0.574452,0.691318,0.359063,0.593283,0.602078,0.456462,0.786267,0.464514,0.0504414,0.483424,0.237875,0.791743,0.359535,0.365369,0.595072,0.0937008,0.0871395,0.611554,0.813867,0.385439,0.80436,0.927683,0.391493,0.562992,0.388128,0.227036,0.327759,0.866549,0.763335,0.930578,0.685692,0.160962,0.171906,0.0764181,0.922746,0.872302,0.244556,0.0227947,0.0988515,0.30386,0.565001,0.706204,0.483132,0.863076,0.280061,0.212633,0.98477,0.0400947,0.650765,0.159447,0.160037,0.658997,0.974511,0.469349,0.697123,0.357773,0.179357,0.757883,0.257541,0.100169,0.713443,0.00869662,0.819061,0.765082,0.0727933,0.123776,0.396606,0.298181,0.23983,0.938686,0.284069,0.735402,0.99405,0.193155,0.557059,0.965186,0.674214,0.267932,0.361967,0.754821,0.903697,0.754569,0.475397,0.943693,0.654419,0.561751,0.0158091,0.271695,0.617911,0.151674,0.871369,0.459856,0.580057,0.70783,0.764864,0.0380073,0.538443,0.631574,0.937391,0.132055,0.799199,0.202256,0.763382,0.67628,0.00542575,0.983302,0.48268,0.834799,0.53488,0.921153,0.583922,0.287027,0.310164,0.955338,0.263246,0.741807,0.37672,0.00640833,0.933707,0.354299,0.106979,0.362112,0.853213,0.968979,0.295614,0.111549,0.488762,0.824728,0.644455,0.816212,0.221322,0.940943,0.228602,0.0366585,0.794275,0.282019,0.801503,0.541843,0.409455,0.573375,0.46673,0.358861,0.609099,0.471785,0.359204,0.832696,0.526156,0.730743,0.228419,0.00177187,0.594102,0.72291,0.422446,0.053603,0.0164335,0.212313,0.480024,0.583137,0.402623,0.674885,0.793018,0.771624,0.671752,0.478106,0.567668,0.179075,0.710383,0.773742,0.369185,0.308411,0.343758,0.0260357,0.698699,0.166293,0.0645643,0.22928,0.894736,0.569715,0.415907,0.205309,0.855029,0.321036,0.660799,0.81666,0.65245,0.25005,0.503393,0.32061,0.0170766,0.105438,0.237742,0.923279,0.54756,0.760387,0.683433,0.592716,0.576765,0.677523,0.346898,0.952592,0.512828,0.891501,0.312798,0.697362,0.507549,0.887492,0.774185,0.718599,0.519577,0.845052,0.962354,0.756427,0.118412,0.888453,0.192837,0.877033,0.84934,0.590526,0.828183,0.619016,0.013846,0.760362,0.310362,0.251128,0.888871,0.474188,0.0437822,0.573363,0.698594,0.737539,0.941282,0.0835416,0.173957,0.220106,0.197742,0.74035,0.117885,0.353973,0.130877,0.788471,0.620405,0.102552,0.654829,0.579873,0.734508,0.359194,0.783656,0.855537,0.372762,0.491657,0.573492,0.626564,0.539416,0.220034,0.0529314,0.513707,0.644817,0.43109,0.417331,0.795808,0.486573,0.147595,0.011726,0.173041,0.22606,0.701079,0.953629,0.212542,0.882843,0.885268,0.510046,0.400439,0.876765,0.127052,0.645878,0.578319,0.228422,0.312225,0.77997,0.177394,0.516976,0.935425,0.682566,0.0340877,0.34495,0.654763,0.336219,0.682813,0.0869213,0.318284,0.639836,0.86189,0.839217,0.399719,0.736981,0.396046,0.345147,0.574037,0.647617,0.0202065,0.4091,0.350614,0.0107894,0.217906,0.315939,0.764719,0.200249,0.220356,0.44041,0.996023,0.439963,0.186051,0.667268,0.0315285,0.0811667,0.137318,0.58951,0.765369,0.12016,0.0781973,0.273637,0.0956806,0.159645,0.114201,0.865121,0.336296,0.383166,0.311426,0.346058,0.472126,0.0364273,0.797378,0.534021,0.396368,0.553871,0.29627,0.518605,0.716809,0.0374808,0.794139,0.690344,0.596479,0.38333,0.0255855,0.802545,0.314456,0.71572,0.54586,0.234536,0.715758,0.0383767,0.518871,0.982473,0.668297,0.6644,0.702834,0.139224,0.79928,0.618794,0.0228781,0.369888,0.898551,0.834581,0.695433,0.20511,0.976763,0.271234,0.363278,0.919523,0.254643,0.133948,0.630396,0.145199,0.360305,0.741131,0.0361759,0.407827,0.782489,0.311579,0.245923,0.743363,0.329394,0.0124587,0.161541,0.819379,0.0192302,0.775953,0.751744,0.667632,0.36665,0.231263,0.2432,0.202094,0.680377,0.186058,0.228546,0.22761,0.0104294,0.418044,0.522489,0.14908,0.340246,0.0164692,0.358333,0.839003,0.29311,0.817878,0.149034,0.0730038,0.112448,0.967394,0.669975,0.870957,0.374706,0.922038,0.205069,0.0466595,0.257781,0.0452145,0.191351,0.717192,0.927348,0.551932,0.946799,0.511997,0.89154,0.880856,0.264485,0.568651,0.0318582,0.113004,0.99131,0.41811,0.0328391,0.388392,0.408252,0.894055,0.576572,0.0298325,0.851753,0.826143,0.384459,0.117728,0.658872,0.0700981,0.20855,0.657959,0.537775,0.0851922,0.298467,0.0831739,0.311634,0.978479,0.944708,0.924741,0.4961,0.885629,0.55448,0.0143725,0.888279,0.700384,0.265648,0.491758,0.654929,0.0912999,0.479879,0.474336,0.192177,0.525371,0.223925,0.976866,0.102955,0.700929,0.520995,0.349701,0.700133,0.575261,0.10352,0.912431,0.0357711,0.947352,0.351066,0.273521,0.870281,0.117332,0.0377283,0.112868,0.0347236,0.902631,0.311708,0.643536,0.461576,0.220782,0.907259,0.273864,0.858898,|0.99547,0.428071,0.746536,0.553688,0.547956,0.324902,0.953495,0.900055,0.597937,0.737436,0.969197,0.26067,0.779167,0.403102,0.906219,0.873498,0.225097,0.38338,0.72277,0.516585,0.00225163,0.0935377,0.903314,0.786677,0.604824,0.967712,0.302991,0.458453,0.511814,0.950941,0.641477,0.57641,0.154142,0.599862,0.811322,0.841799,0.40247,0.0703239,0.574358,0.924347,0.00620288,0.586482,0.974599,0.0191001,0.812907,0.801838,0.640427,0.737684,0.851835,0.803637,0.688186,0.0113031,0.639207,0.279101,0.195576,0.181813,0.999604,0.019442,0.586307,0.56158,0.136562,0.1044,0.658263,0.30733,0.648733,0.993558,0.160486,0.555165,0.557416,0.150706,0.428687,0.108674,0.103315,0.274467,0.107239,0.592586,0.283222,0.994113,0.616051,0.898705,0.115682,0.403754,0.939801,0.856275,0.642339,0.563844,0.584199,0.96848,0.924023,0.368476,0.816942,0.410739,0.203159,0.416838,0.937916,0.815991,0.457359,0.601992,0.247487,0.973031,0.223782,0.0323725,0.550817,0.962373,0.909694,0.362829,0.716562,0.695195,0.402599,0.292537,0.488857,0.603256,0.292289,0.830207,0.589164,0.564226,0.122567,0.217947,0.361454,0.477162,0.851347,0.0354607,0.177572,0.213169,0.876472,0.911991,0.0424466,0.21549,0.400049,0.239041,0.876907,0.250089,0.0608127,0.311079,0.489408,0.0277804,0.871694,0.258437,0.960845,0.0874617,0.862725,0.0492607,0.21542,0.0401376,0.413854,0.265304,0.424648,0.870846,0.94163,0.0210106,0.674072,0.353494,0.677732,0.888796,0.105842,0.315959,0.00176162,0.629226,0.848835,0.834138,0.878891,0.746389,0.859961,0.112957,0.238768,0.0913299,0.358103,0.293484,0.442238,0.994219,0.257893,0.675672,0.117614,0.279065,0.565796,0.148856,0.431381,0.812046,0.29555,0.688537,0.580212,0.150439,0.0947747,0.494029,0.524894,0.785402,0.27296,0.144399,0.623039,0.931748,0.0319192,0.706663,0.683265,0.676315,0.0114495,0.197731,0.87271,0.595418,0.691659,0.208695,0.972032,0.950978,0.0662182,0.848426,0.39491,0.719439,0.202681,0.861601,0.257071,0.676816,0.526887,0.980388,0.447868,0.768184,0.826678,0.836783,0.96622,0.299368,0.51378,0.218166,0.852603,0.332585,0.849338,0.651487,0.918796,0.801818,0.674799,0.499579,0.723129,0.285863,0.466006,0.641287,0.918275,0.0911272,0.0909905,0.0995343,0.611964,0.0152243,0.843392,0.445609,0.0140574,0.683071,0.129957,0.321606,0.43101,0.561904,0.240343,0.60963,0.543852,0.612868,0.145967,0.445499,0.546501,0.866421,0.128828,0.0200106,0.47461,0.624763,0.903365,0.638642,0.314804,0.238869,0.934724,0.390526,0.636164,0.612389,0.294517,0.173213,0.269873,0.801207,0.043338,0.677709,0.278433,0.460889,0.780652,0.604204,0.00715137,0.0966207,0.347624,0.65935,0.729433,0.902155,0.0595794,0.700434,0.558844,0.635119,0.973728,0.325264,0.0201304,0.276672,0.533545,0.0527451,0.130027,0.743177,0.840335,0.476974,0.209635,0.67971,0.90189,0.384315,0.748375,0.63737,0.0383724,0.126048,0.586341,0.0623586,0.528354,0.690463,0.883143,0.916325,0.331366,0.125432,0.992705,0.855679,0.191469,0.885795,0.483031,0.779806,0.941586,0.453009,0.407098,0.112745,0.61762,0.635785,0.0604819,0.837285,0.182971,0.298995,0.514523,0.659302,0.0476658,0.925609,0.642623,0.50578,0.547202,0.562273,0.722721,0.608425,0.208172,0.475444,0.697358,0.315125,0.00306433,0.146917,0.650784,0.805529,0.646981,0.92715,0.59847,0.0918076,0.309452,0.660922,0.991935,0.112857,0.502097,0.0330015,0.893195,0.984575,0.127652,0.359505,0.979622,0.811037,0.78793,0.248995,0.504234,0.623059,0.848448,0.407351,0.0596345,0.63037,0.722233,0.0645802,0.130577,0.606977,0.383646,0.292176,0.286748,0.430867,0.263373,0.832111,0.921888,0.654064,0.732314,0.370252,0.913312,0.550952,0.315483,0.945452,0.648031,0.88829,0.398606,0.735989,0.545024,0.216501,0.705372,0.184834,0.284642,0.110747,0.491508,0.291388,0.485928,0.428268,0.426476,0.203648,0.594037,0.55521,0.230884,0.232616,0.0576077,0.824168,0.227158,0.853264,0.00162441,0.221089,0.623362,0.123209,0.775551,0.735579,0.0750061,0.380722,0.476245,0.187652,0.957117,0.211937,0.431602,0.690547,0.57151,0.409153,0.803455,0.157415,0.514594,0.717711,0.190001,0.673266,0.901061,0.211962,0.849916,0.417598,0.0747484,0.0602907,0.808242,0.918309,0.442051,0.0870639,0.0400316,0.0498316,0.235254,0.199932,0.510135,0.731047,0.640378,0.970052,0.444842,0.92515,0.999649,0.245134,0.752637,0.0316782,0.992433,0.00103354,0.980009,0.474895,0.779456,0.931866,0.403008,0.658375,0.820481,0.435541,0.922474,0.115106,0.392979,0.853034,0.483631,0.473447,0.976197,0.334725,0.649192,0.409809,0.863749,0.972297,0.504448,0.881747,0.966625,0.238273,0.202442,0.728965,0.878198,0.913224,0.487104,0.7717,0.734527,0.959758,0.648037,0.42693,0.76177,0.935486,0.239262,0.613578,0.194041,0.46944,0.878606,0.0404828,0.596024,0.928463,0.323546,0.397495,0.323462,0.266795,0.632059,0.299977,0.259648,0.92491,0.249676,0.935835,0.966398,0.58501,0.179883,0.949823,0.238512,0.420885,0.880684,0.520566,0.787372,0.818088,0.734272,0.356991,0.205644,0.490624,0.165724,0.537031,0.638783,0.713355,0.980293,0.734804,0.230077,0.229691,0.661119,0.270894,0.883186,0.443442,0.243269,0.401258,0.313285,0.286013,0.643318,0.312461,0.132468,0.250313,0.157238,0.63516,0.707322,0.961449,0.762743,0.777494,0.208174,0.47337,0.0510961,0.829587,0.153365,0.613054,0.493517,0.290121,0.0465558,0.982349,0.757708,0.355514,0.367159,0.414442,0.409357,0.373739,0.276134,0.304442,0.993447,0.0110661,0.991653,0.794558,0.372632,0.392009,0.249963,0.511095,0.770778,0.332422,0.217672,0.742177,0.319887,0.779585,0.69004,0.44431,0.213913,0.0131517,0.277889,0.0619018,0.654566,0.451234,0.649406,0.52652,0.538804,0.764669,0.408705,0.603572,0.671541,0.676148,0.271558,0.159758,0.924685,0.298401,0.347744,0.227624,0.93215,0.807658,0.167611,0.27762,0.498904,0.61267,0.902022,0.675637,0.559853,0.922985,0.0913182,0.497917,0.448406,0.825819,0.785061,0.266788,0.493164,0.487255,0.531473,0.596337,0.848923,0.0196695,0.7425,0.782674,0.3455,0.097393,0.113809,0.405245,0.135022,0.951126,0.780367,0.691135,0.772905,0.927269,0.219709,0.290841,0.283249,0.777396,0.0757043,0.151025,0.660898,0.533188,0.447669,0.304835,0.534254,0.86633,0.0735061,0.779361,0.665906,0.555428,0.833552,0.64697,0.224898,0.738604,0.254933,0.675301,0.887084,0.0050962,0.59459,0.0613067,0.468841,0.985164,0.548523,0.702519,0.213481,0.631859,9.64999e-05,0.189878,0.466681,0.499399,0.7918,0.342001,0.16542,0.255635,0.299616,0.0563789,0.81507,0.962607,0.312979,0.201697,0.894822,0.784703,0.494757,0.340045,0.532004,0.71187,0.800399,0.721779,0.0549636,0.683138,0.632737,0.846977,0.949489,0.806369,0.363535,0.290867,0.61939,0.483494,0.24481,0.545062,0.0187781,0.703738,0.402995,0.895177,0.306916,0.188968,0.759897,0.0156348,0.350515,0.256805,0.650619,0.785837,0.383533,0.0475037,0.732938,0.260718,0.867722,0.238424,0.935747,0.554402,0.719608,0.996974,0.455876,0.84129,0.063545,0.59474,0.77857,0.210039,0.883873,0.79731,0.0493786,0.188601,0.670741,0.125614,0.157541,0.880593,0.280068,0.716058,0.140869,0.383367,0.254577,0.273538,0.876177,0.204114,0.991965,0.876707,0.00927716,0.90563,0.953562,0.459261,0.575841,0.978174,0.567516,0.158963,0.4561,0.0250685,0.187045,0.123875,0.496803,0.327497,0.0925673,0.176779,0.380694,0.560406,0.606958,0.467131,0.444226,0.246703,0.806335,0.0734341,0.573555,0.71326,0.280142,0.672017,0.619854,0.249527,0.587672,0.00614488,0.805266,0.655558,0.951412,0.990691,0.650879,0.344782,0.112361,0.536033,0.190377,0.361373,0.00185454,0.17544,0.538106,0.108248,0.1735,0.841368,0.802203,0.80761,0.628984,0.24764,0.0252626,0.516219,0.0230405,0.00751591,0.113104,0.1619,0.760059,0.218617,0.707402,0.218788,0.56542,0.663686,0.767163,0.502947,0.890412,0.289493,0.347498,0.81825,0.197136,0.629003,0.762962,0.0557616,0.19288,0.695105,0.00178671,0.752488,0.154015,0.511681,0.804803,0.319274,0.933044,0.116084,0.55617,0.692852,0.433162,0.0388358,0.604476,0.0603772,0.827921,0.415367,0.483447,0.0998251,0.834152,0.022642,0.887216,0.521299,0.0527053,0.980546,0.0790453,0.517476,0.797477,0.127836,0.669743,0.745874,0.8695,0.0325456,0.283985,0.083215,0.425311,0.409539,0.781538,0.33344,0.452177,0.341545,0.484551,0.116701,0.952434,0.12891,0.815059,0.874966,0.876402,0.307369,0.648305,0.0452445,0.359773,0.507005,0.11732,0.75058,0.568243,0.225379,0.158531,0.791501,0.568195,0.329543,0.713977,0.284,0.368546,0.697866,0.62322,0.281368,0.00943816,0.505287,0.45998,0.981724,0.505632,0.284525,0.67176,0.760146,0.00539625,0.953864,0.996253,0.761954,0.589778,0.506645,0.38194,0.453749,0.404673,0.0972413,0.922504,0.771605,0.617391,0.276026,0.194595,0.855494,0.321875,0.382526,0.401559,0.657986,0.408041,0.143393,0.216736,0.16732,0.48608,0.11465,0.951388,0.874038,0.64877,0.791017,0.124147,0.794914,0.843973,0.386189,0.572112,0.426052,0.520159,0.276263,0.695818,0.791253,0.924968,0.129428,0.470247,0.62901,0.872634,0.485367,0.097251,0.21206,0.834205,0.395365,0.0167022,0.418567,0.131926,0.130798,0.309132,0.577342,0.0584625,0.43627,0.649965,0.589827,0.928355,0.465047,0.284611,0.421022,0.786936,0.02591,0.548504,0.153537,0.882124,0.900522,0.852551,0.665828,0.408221,0.904475,0.364056,0.0886373,0.647172,0.105096,0.757225,0.194444,0.680354,0.326867,0.890461,0.319074,0.817134,0.499666,0.69316,0.144283,0.765775,0.300059,0.533965,0.701134,0.539837,0.490589,0.42773,0.846924,|0.46742,0.527014,0.537908,0.44581,0.561717,0.736638,0.711155,0.984165,0.104203,0.0340223,0.742907,0.677368,0.389199,0.771589,0.34003,0.0157222,0.393755,0.95899,0.157246,0.449217,0.244304,0.826836,0.290077,0.030334,0.0876878,0.585503,0.64934,0.6039,0.554368,0.70225,0.848593,0.665471,0.613338,0.813883,0.0885583,0.921293,0.422567,0.880983,0.645918,0.0936193,0.820917,0.146629,0.705867,0.686564,0.304894,0.961646,0.109134,0.395178,0.937366,0.330944,0.523486,0.826369,0.337749,0.377514,0.604128,0.278776,0.328634,0.222813,0.717422,0.385594,0.311224,0.697811,0.859123,0.268101,0.603029,0.811864,0.599541,0.445106,0.227888,0.0471311,0.767504,0.425204,0.291314,0.902654,0.818145,0.738897,0.320357,0.11257,0.566385,0.159646,0.429948,0.0230535,0.904382,0.36548,0.892142,0.0741388,0.180049,0.816399,0.130747,0.603372,0.814577,0.956929,0.772134,0.336639,0.956634,0.755039,0.347649,0.100212,0.133493,0.654363,0.67795,0.138055,0.953604,0.083729,0.876587,0.479088,0.641536,0.243598,0.275302,0.887702,0.999474,0.515516,0.99807,0.200344,0.643349,0.192914,0.514167,0.944729,0.184073,0.954255,0.428711,0.466428,0.765074,0.81661,0.826371,0.557106,0.0694494,0.825386,0.787686,0.107507,0.0376065,0.36844,0.944687,0.535214,0.915049,0.555651,0.221824,0.472474,0.346728,0.250168,0.964644,0.637235,0.631711,0.770138,0.883869,0.579749,0.197663,0.645718,0.0760538,0.429172,0.833759,0.188922,0.272775,0.516424,0.140307,0.971307,0.56386,0.369244,0.815009,0.866733,0.200472,0.384842,0.683402,0.705898,0.59381,0.119976,0.132955,0.18385,0.401143,0.173621,0.768356,0.295446,0.695117,0.351994,0.193008,0.883105,0.657518,0.32666,0.0305599,0.943879,0.279247,0.463265,0.851518,0.793448,0.153299,0.551784,0.700206,0.136893,0.5815,0.575827,0.467319,0.787639,0.830231,0.872735,0.0184751,0.133974,0.474119,0.928198,0.653272,0.145241,0.970534,0.233573,0.707463,0.403203,0.888375,0.130243,0.913883,0.5812,0.929813,0.0808004,0.43236,0.903079,0.330509,0.294569,0.193337,0.507504,0.321975,0.442606,0.418965,0.0750573,0.675257,0.394739,0.0359303,0.512556,0.43471,0.774088,0.963668,0.732586,0.926119,0.180329,0.737295,0.238832,0.546445,0.964451,0.0721155,0.787889,0.618965,0.935057,0.548223,0.907587,0.744913,0.287826,0.403439,0.142889,0.853526,0.800018,0.267055,0.799123,0.150183,0.539325,0.502256,0.250345,0.148886,0.141532,0.990124,0.483584,0.754871,0.0243476,0.72832,0.911605,0.792187,0.677893,0.943107,0.0729677,0.195645,0.779142,0.678293,0.0183477,0.626893,0.486857,0.501735,0.498028,0.629638,0.765028,0.17158,0.214682,0.227098,0.560899,0.350136,0.0897983,0.320124,0.0829712,0.192106,0.224862,0.747488,0.756273,0.423275,0.624222,0.640817,0.154068,0.545986,0.478305,0.976909,0.130093,0.118351,0.497118,0.563261,0.192627,0.884419,0.280642,0.563572,0.143407,0.501929,0.426005,0.025558,0.851331,0.42914,0.432289,0.10277,0.199072,0.599664,0.535628,0.150577,0.287088,0.930476,0.88382,0.205734,0.271329,0.441492,0.1651,0.310486,0.0678033,0.715829,0.794665,0.353077,0.169133,0.328975,0.75208,0.0545397,0.455742,0.946102,0.534851,0.733084,0.205986,0.35658,0.147253,0.294305,0.171757,0.0662206,0.804132,0.98132,0.675934,0.792364,0.241502,0.0918173,0.349852,0.259404,0.625493,0.000465035,0.890154,0.866876,0.205092,0.895375,0.0189553,0.127366,0.781924,0.699814,0.106462,0.0132501,0.631412,0.086061,0.0791392,0.59534,0.585831,0.810521,0.0572304,0.289382,0.846599,0.875494,0.0302895,0.770947,0.837135,0.443902,0.942658,0.352886,0.138744,0.799517,0.811902,0.86435,0.461964,0.979646,0.131034,0.536518,0.971635,0.510678,0.969299,0.0117521,0.702636,0.0420243,0.605423,0.998867,0.581123,0.968827,0.961801,0.702446,0.742909,0.0315595,0.765627,0.648829,0.893268,0.513991,0.292525,0.671033,0.77182,0.566806,0.159621,0.108201,0.991093,0.330659,0.204331,0.957539,0.981037,0.146784,0.241883,0.0480011,0.948151,0.134367,0.715247,0.693172,0.571247,0.244445,0.96554,0.321743,0.481141,0.725455,0.6616,0.0567712,0.653752,0.350964,0.954128,0.906894,0.686774,0.739049,0.704957,0.129894,0.682074,0.624265,0.272555,0.506175,0.0294653,0.862961,0.679925,0.536136,0.840584,0.571362,0.198887,0.324418,0.288287,0.961675,0.328706,0.742492,0.322196,0.529756,0.999281,0.540646,0.621301,0.447166,0.143213,0.610769,0.335151,0.834228,0.964823,0.454017,0.301189,0.841346,0.483003,0.320156,0.631225,0.603071,0.619705,0.73112,0.123201,0.0644853,0.648218,0.0286192,0.0511144,0.368162,0.312903,0.52039,0.965127,0.674553,0.658363,0.813649,0.171641,0.525386,0.799761,0.610478,0.434246,0.748643,0.671421,0.519509,0.370052,0.00717676,0.323215,0.672665,0.107286,0.0736074,0.0308801,0.44786,0.022592,0.188699,0.826784,0.425157,0.151565,0.947628,0.179084,0.561707,0.469319,0.260572,0.356424,0.203666,0.127227,0.207021,0.586687,0.0835218,0.200346,0.00485998,0.125601,0.00272644,0.834654,0.499605,0.242672,0.425302,0.0909843,0.550952,0.672159,0.86529,0.0449914,0.102583,0.554703,0.264564,0.125326,0.218219,0.988616,0.513725,0.881486,0.2755,0.0511901,0.148533,0.848266,0.75688,0.0706217,0.941037,0.158299,0.603663,0.99181,0.630661,0.624203,0.29533,0.596407,0.444195,0.572894,0.750615,0.601815,0.663879,0.0086816,0.456626,0.277029,0.680383,0.855631,0.849173,0.444078,0.215899,0.54683,0.143648,0.822274,0.0187994,0.897916,0.907703,0.79209,0.855046,0.789707,0.609681,0.699618,0.142246,0.962139,0.660638,0.217973,0.429009,0.550349,0.939623,0.342379,0.94041,0.389112,0.735711,0.0226659,0.68283,0.274161,0.0527864,0.176299,0.0699283,0.182772,0.640663,0.723897,0.310267,0.708006,0.42327,0.945564,0.431559,0.540821,0.474123,0.359339,0.49901,0.632314,0.107416,0.965955,0.208381,0.307861,0.855307,0.154937,0.158963,0.473694,0.47204,0.60492,0.78734,0.00970185,0.477674,0.424728,0.265496,0.32371,0.404991,0.715825,0.121672,0.73475,0.215741,0.626607,0.929054,0.889292,0.506095,0.478292,0.974483,0.690691,0.446353,0.639222,0.935043,0.980977,0.340451,0.413386,0.23747,0.809419,0.477167,0.455228,0.63094,0.622037,0.950985,0.687383,0.528655,0.676724,0.411293,0.676174,0.290076,0.394577,0.255473,0.570311,0.941538,0.84588,0.101693,0.471135,0.322297,0.272966,0.730154,0.759195,0.586258,0.021058,0.0929863,0.179905,0.841439,0.717781,0.137625,0.205351,0.00107199,0.770707,0.264626,0.204504,0.752924,0.583959,0.365063,0.340587,0.239079,0.12125,0.417601,0.990347,0.704626,0.503123,0.658313,0.770761,0.667627,0.9459,0.340983,0.0137987,0.677543,0.124275,0.189818,0.976898,0.856213,0.497944,0.220226,0.25752,0.682482,0.65045,0.758251,0.842414,0.956331,0.828736,0.130909,0.221911,0.72625,0.830109,0.168229,0.345997,0.772633,0.519472,0.871033,0.935605,0.992211,0.0654036,0.475108,0.0968641,0.985366,0.286348,0.329771,0.592029,0.653397,0.611446,0.294553,0.821347,0.385939,0.180555,0.784571,0.518657,0.411956,0.844864,0.116693,0.913919,0.110873,0.680105,0.893705,0.18483,0.632407,0.751265,0.208893,0.723505,0.0453128,0.199471,0.578394,0.396386,0.86734,0.890273,0.754591,0.178616,0.0515451,0.289851,0.912914,0.322734,0.976421,0.653864,0.162455,0.358961,0.890027,0.0102261,0.0927613,0.739014,0.859937,0.586905,0.499994,0.932188,0.366216,0.0410965,0.453764,0.817175,0.405111,0.745385,0.606654,0.743263,0.720903,0.783154,0.611667,0.796014,0.674226,0.786313,0.224189,0.215112,0.0473992,0.320368,0.401017,0.110312,0.247512,0.937519,0.80127,0.20466,0.71198,0.640031,0.756082,0.967182,0.247017,0.386705,0.456652,0.244112,0.871296,0.402045,0.335072,0.486141,0.458823,0.289693,0.0454794,0.160901,0.830967,0.225811,0.543248,0.811465,0.0865899,0.930981,0.00947261,0.636445,0.848591,0.681136,0.937148,0.280434,0.931631,0.624165,0.436708,0.0835741,0.862229,0.417304,0.971587,0.53516,0.936017,0.920739,0.346002,0.679887,0.0355276,0.729565,0.38022,0.995823,0.671423,0.231786,0.813909,0.539254,0.162191,0.0838758,0.405795,0.9183,0.691682,0.128022,0.723353,0.250536,0.696862,0.606008,0.312956,0.724877,0.509768,0.267958,0.33081,0.479308,0.832418,0.855486,0.665015,0.599149,0.420535,0.561691,0.527231,0.285453,0.405937,0.517949,0.546697,0.861976,0.979227,0.145868,0.183543,0.756778,0.065872,0.231986,0.793616,0.547108,0.0505735,0.0545952,0.739952,0.389634,0.90262,0.959668,0.83771,0.125216,0.678581,0.130601,0.625239,0.140498,0.761236,0.391299,0.0285931,0.736769,0.113554,0.210213,0.549558,0.544319,0.869305,0.577233,0.725918,0.514971,0.522521,0.0775985,0.876743,0.347294,0.478045,0.87811,0.938733,0.685717,0.985804,0.79637,0.4281,0.121802,0.0635768,0.31005,0.89255,0.656638,0.537178,0.126039,0.842505,0.189628,0.451852,0.57408,0.799239,0.983015,0.614038,0.646704,0.978714,0.239913,0.622068,0.655107,0.540227,0.542004,0.247904,0.151741,0.336845,0.362469,0.315843,0.908494,0.919459,0.689575,0.5238,0.946408,0.152787,0.432309,0.414173,0.83958,0.953406,0.141339,0.864667,0.428997,0.89233,0.678738,0.414008,0.667779,0.537322,0.0413704,0.904049,0.470435,0.0662256,0.829533,0.128612,0.0763155,0.293512,0.772564,0.549078,0.424107,0.764283,0.852283,0.599653,0.707732,0.807019,0.409539,0.71872,0.930601,0.909922,0.0909055,0.822696,0.614644,0.608663,0.952186,0.0432245,0.594468,0.473492,0.930684,0.347031,0.761549,0.65448,0.563402,0.681124,0.461478,0.0244497,0.283337,0.507706,0.205087,0.124176,0.0182476,0.260912,0.990281,0.307005,0.0539271,0.128704,0.0591453,|0.364048,0.855636,0.350016,0.180156,0.050357,0.254307,0.842254,0.441518,0.960565,0.157839,0.519551,0.782881,0.414041,0.0216705,0.482456,0.482735,0.47345,0.674037,0.21434,0.288721,0.856247,0.330642,0.573559,0.774446,0.183462,0.50486,0.0959496,0.323141,0.218882,0.246167,0.432144,0.763965,0.630736,0.0692651,0.981237,0.936827,0.943727,0.813481,0.432879,0.839537,0.529191,0.991023,0.612928,0.455106,0.564948,0.417859,0.656629,0.0421412,0.322843,0.686258,0.0522982,0.612283,0.125972,0.444571,0.722024,0.941781,0.89708,0.299707,0.565325,0.00103015,0.619389,0.423699,0.475798,0.165473,0.798733,0.502122,0.875374,0.519434,0.492095,0.259621,0.657858,0.0504463,0.331246,0.988574,0.905857,0.88746,0.485003,0.904736,0.743475,0.688898,0.885047,0.647776,0.0235277,0.0822285,0.126375,0.935362,0.73288,0.619648,0.977313,0.674789,0.671343,0.0678571,0.593206,0.177826,0.737666,0.813279,0.286501,0.682365,0.0191992,0.39922,0.209384,0.481101,0.00967962,0.735473,0.70351,0.874217,0.676209,0.765283,0.694354,0.99913,0.681394,0.240504,0.672802,0.441707,0.75252,0.266637,0.441916,0.383474,0.303315,0.790404,0.52999,0.701067,0.271619,0.0812208,0.570754,0.715818,0.49087,0.691734,0.17224,0.694232,0.473227,0.875306,0.857034,0.729815,0.540314,0.780356,0.346861,0.349903,0.120704,0.347934,0.700639,0.982957,0.22343,0.303812,0.121577,0.239212,0.439492,0.60698,0.769456,0.632609,0.0477145,0.892408,0.435312,0.0567668,0.510381,0.901666,0.805552,0.0467321,0.0241585,0.290296,0.913907,0.954673,0.510999,0.122605,0.300578,0.699939,0.334996,0.445398,0.771282,0.57831,0.787071,0.942001,0.563656,0.699103,0.976744,0.480006,0.368956,0.681429,0.0544615,0.945342,0.474293,0.12418,0.357265,0.188617,0.0019384,0.612109,0.78957,0.446432,0.137059,0.00945795,0.0789738,0.0920954,0.271233,0.262023,0.093509,0.820051,0.97691,0.988576,0.997096,0.0789819,0.651833,0.601574,0.504602,0.62291,0.901301,0.15296,0.965423,0.967779,0.626827,0.329555,0.384482,0.116678,0.994911,0.476656,0.165237,0.616566,0.370865,0.639231,0.740132,0.755358,0.498362,0.78057,0.648354,0.372316,0.118464,0.700398,0.938577,0.259912,0.197162,0.833692,0.910224,0.330725,0.299209,0.28307,0.614419,0.213086,0.703784,0.645548,0.107551,0.767437,0.686366,0.257873,0.183102,0.845482,0.259131,0.294388,0.397458,0.924889,0.432884,0.789012,0.0731066,0.0786437,0.591818,0.221839,0.323329,0.424202,0.923956,0.896392,0.884172,0.335127,0.996562,0.512398,0.194782,0.159145,0.17299,0.126029,0.209141,0.0460531,0.266944,0.593351,0.243165,0.703695,0.521839,0.132441,0.471371,0.452201,0.301227,0.731622,0.442087,0.441505,0.0547583,0.743536,0.257677,0.882763,0.904111,0.0398949,0.596471,0.74433,0.527488,0.730652,0.0980964,0.403406,0.718784,0.537687,0.984611,0.0915566,0.935042,0.380847,0.803303,0.0695825,0.186333,0.137104,0.186586,0.507122,0.842991,0.634548,0.391389,0.309044,0.561978,0.687049,0.713303,0.760568,0.827761,0.405815,0.717307,0.344214,0.675969,0.0753959,0.766526,0.173927,0.069773,0.636411,0.544337,0.708924,0.604043,0.82313,0.664229,0.382853,0.459463,0.983557,0.900729,0.792114,0.932208,0.724953,0.781744,0.264128,0.518053,0.289139,0.872759,0.987404,0.855318,0.787228,0.0484604,0.297599,0.592702,0.240583,0.357813,0.455281,0.499758,0.440029,0.951706,0.723554,0.706157,0.0731094,0.796689,0.588109,0.00341451,0.749547,0.128486,0.986313,0.440873,0.412598,0.942347,0.798926,0.629143,0.66264,0.252157,0.988696,0.240449,0.804734,0.917645,0.488999,0.506759,0.101364,0.194229,0.294459,0.541918,0.664585,0.61083,0.368241,0.24664,0.400934,0.321255,0.408631,0.325758,0.794028,0.160562,0.230916,0.313956,0.489743,0.394922,0.555751,0.666657,0.63759,0.742239,0.300623,0.207939,0.14545,0.227,0.669551,0.44452,0.288492,0.2448,0.776071,0.956048,0.54537,0.756295,0.518804,0.621214,0.666274,0.995117,0.337315,0.242141,0.784253,0.791274,0.021504,0.838311,0.787738,0.851425,0.438988,0.682708,0.0453575,0.53863,0.817703,0.385378,0.33904,0.766548,0.132576,0.365824,0.779838,0.452034,0.344598,0.934047,0.913501,0.351839,0.0767705,0.513756,0.165238,0.113241,0.951426,0.147771,0.856365,0.69514,0.244945,0.518535,0.00766891,0.469302,0.667356,0.347384,0.967039,0.0997038,0.0286135,0.931314,0.815343,0.187808,0.0459514,0.842228,0.615101,0.604558,0.736199,0.27144,0.0320069,0.52366,0.467046,0.813322,0.92112,0.695817,0.635464,0.486275,0.144413,0.452992,0.598689,0.804156,0.661353,0.46226,0.961177,0.791554,0.58676,0.233622,0.485948,0.887367,0.824893,0.191765,0.291178,0.97285,0.741161,0.219948,0.229168,0.231328,0.996437,0.789017,0.793308,0.264296,0.360217,0.736469,0.209744,0.0928362,0.981911,0.0444226,0.945973,0.235224,0.532944,0.212657,0.914755,0.205436,0.64104,0.864875,0.375709,0.0897337,0.511251,0.339774,0.0815484,0.0104536,0.0675535,0.341248,0.114943,0.251262,0.275774,0.26455,0.410256,0.809622,0.910986,0.00278598,0.661917,0.292955,0.13846,0.592779,0.554077,0.100831,0.345927,0.277112,0.431797,0.64649,0.9813,0.172534,0.742637,0.783804,0.933518,0.153157,0.501455,0.86685,0.796903,0.531467,0.716515,0.168732,0.293298,0.939047,0.475378,0.355067,0.102455,0.092964,0.383,0.196132,0.970892,0.928918,0.24568,0.84144,0.8757,0.884924,0.641728,0.161283,0.362621,0.520833,0.159459,0.929669,0.393902,0.0251161,0.87058,0.831444,0.331484,0.656295,0.351138,0.0141359,0.141589,0.551382,0.913726,0.377413,0.31386,0.348703,0.265424,0.960166,0.472061,0.818102,0.51255,0.584418,0.186514,0.568288,0.752961,0.575016,0.222144,0.964139,0.378713,0.21276,0.350191,0.700286,0.617646,0.744002,0.203086,0.268211,0.704584,0.868739,0.840741,0.0151159,0.636907,0.488335,0.823922,0.586966,0.197633,0.796818,0.0407977,0.744825,0.155871,0.673723,0.210419,0.940357,0.221911,0.357337,0.349767,0.179941,0.95388,0.459471,0.723396,0.208651,0.146629,0.581436,0.43535,0.490181,0.484793,0.826008,0.52286,0.246341,0.204067,0.250776,0.294321,0.31608,0.974984,0.523037,0.721774,0.500308,0.590859,0.981706,0.228528,0.23265,0.43218,0.281274,0.853211,0.937336,0.821985,0.946967,0.621725,0.563591,0.646411,0.644164,0.402346,0.323436,0.0275927,0.396489,0.106228,0.5115,0.423089,0.896051,0.100123,0.0462934,0.429388,0.287752,0.310528,0.614142,0.999463,0.109662,0.00367367,0.480185,0.138484,0.636537,0.0235447,0.578783,0.0539237,0.987264,0.343867,0.587432,0.206619,0.595837,0.443107,0.169502,0.329584,0.00204825,0.175556,0.447154,0.208705,0.970744,0.132725,0.300811,0.252738,0.216461,0.985898,0.520785,0.105152,0.275332,0.410339,0.827643,0.0458459,0.451262,0.304825,0.150324,0.528616,0.2116,0.686807,0.942629,0.276535,0.688128,0.399173,0.0587737,0.0958008,0.533966,0.603909,0.351304,0.692692,0.786875,0.533947,0.0445642,0.837125,0.0822129,0.642696,0.695402,0.257013,0.397356,0.404694,0.852469,0.907709,0.782696,0.1431,0.839718,0.311162,0.806838,0.145967,0.625039,0.274701,0.386025,0.791824,0.417493,0.216194,0.255754,0.71463,0.439843,0.616983,0.274115,0.304745,0.116562,0.265893,0.308051,0.0680842,0.916719,0.441004,0.526483,0.590006,0.714645,0.0565461,0.955506,0.215886,0.923797,0.536529,0.839051,0.0904629,0.344863,0.48261,0.33037,0.263829,0.23128,0.661908,0.735226,0.710862,0.0848637,0.299048,0.0749182,0.301252,0.849557,0.274629,0.900085,0.372928,0.152111,0.7429,0.874937,0.0952109,0.18849,0.664243,0.933967,0.676825,0.472635,0.349275,0.368238,0.743509,0.349207,0.297585,0.19455,0.328873,0.0848553,0.53008,0.59484,0.464436,0.0149193,0.546381,0.305314,0.486556,0.125169,0.0305817,0.680035,0.720172,0.835777,0.00908309,0.878552,0.0969993,0.582483,0.99469,0.163929,0.503048,0.105224,0.846738,0.135492,0.260726,0.164806,0.0516468,0.455905,0.985697,0.068882,0.981079,0.364339,0.429039,0.865856,0.985656,0.13931,0.526001,0.64601,0.527524,0.0211301,0.279627,0.274441,0.0927342,0.588689,0.284201,0.785501,0.1196,0.718829,0.280426,0.512225,0.818546,0.0508968,0.750726,0.351993,0.300289,0.132708,0.0622255,0.290439,0.444656,0.930248,0.120813,0.547987,0.328339,0.0208182,0.765134,0.98793,0.640833,0.684478,0.399017,0.375723,0.906094,0.759327,0.668863,0.335582,0.267206,0.667949,0.984877,0.854037,0.74188,0.907045,0.64943,0.472984,0.00293273,0.744435,0.50642,0.674535,0.691542,0.29183,0.796738,0.361808,0.941982,0.396823,0.414753,0.860039,0.783109,0.53395,0.245366,0.851209,0.0713232,0.620849,0.501422,0.339424,0.377448,0.018691,0.511309,0.991133,0.706606,0.173012,0.690442,0.0266252,0.91879,0.90971,0.868252,0.127062,0.499384,0.239635,0.486192,0.188427,0.537263,0.436581,0.0046823,0.288677,0.849266,0.449684,0.282659,0.99226,0.58597,0.647086,0.646596,0.660733,0.85566,0.747409,0.649171,0.0760111,0.596207,0.0582281,0.871023,0.618638,0.340872,0.417428,0.393996,0.129915,0.515506,0.376473,0.812604,0.394842,0.276623,0.138697,0.598668,0.351629,0.926341,0.543416,0.970329,0.750841,0.616331,0.114177,0.418556,0.591147,0.292391,0.240817,0.906974,0.560032,0.295615,0.823026,0.495539,0.146642,0.581963,0.983341,0.519746,0.277639,0.33416,0.115005,0.743407,0.551547,0.134601,0.717437,0.474925,0.229024,0.46696,0.31615,0.517941,0.792558,0.708561,0.0779053,0.804653,0.664543,0.330413,0.238007,0.242865,0.387113,0.798681,0.547272,0.418793,0.235124,0.633024,0.300896,0.686016,0.518817,0.207692,0.013603,0.845671,0.954532,0.209698,0.0648848,0.950149,0.380641,0.974662,|0.213036,0.917265,0.359726,0.256604,0.493091,0.286753,0.659126,0.33761,0.281125,0.513029,0.837076,0.828054,0.65171,0.505141,0.0344753,0.821609,0.987923,0.920788,0.267593,0.234069,0.257742,0.91398,0.225284,0.958462,0.897533,0.999667,0.262978,0.255178,0.282136,0.702924,0.7996,0.417703,0.672378,0.927969,0.432761,0.211415,0.556807,0.514458,0.439984,0.98525,0.0449299,0.322185,0.897433,0.305521,0.21558,0.102853,0.0418041,0.291488,0.615028,0.745452,0.402399,0.745491,0.294362,0.0295436,0.859841,0.378023,0.752748,0.13995,0.667076,0.611064,0.872809,0.0474542,0.281468,0.556064,0.497788,0.826971,0.506314,0.0856792,0.580055,0.852986,0.631388,0.508907,0.00291991,0.914981,0.801128,0.231239,0.147065,0.642067,0.633983,0.389432,0.778033,0.89667,0.290626,0.76146,0.157571,0.215505,0.717128,0.880037,0.0745767,0.338746,0.855479,0.332315,0.97477,0.0500031,0.987553,0.86016,0.600242,0.1588,0.531158,0.372402,0.759124,0.0194767,0.531903,0.868571,0.024959,0.311156,0.28007,0.412565,0.472902,0.456101,0.916571,0.940018,0.891384,0.643887,0.659118,0.393027,0.926706,0.255881,0.961147,0.40135,0.524289,0.505621,0.759484,0.348653,0.659014,0.597249,0.731507,0.486306,0.862947,0.312027,0.778825,0.492661,0.48228,0.689284,0.828173,0.792201,0.0602998,0.15439,0.235326,0.0669618,0.182998,0.876867,0.903698,0.21716,0.606875,0.91942,0.661582,0.343008,0.0542029,0.521722,0.829319,0.0202784,0.37512,0.0859215,0.953486,0.728929,0.740949,0.303797,0.509152,0.146768,0.746688,0.650744,0.757377,0.571755,0.336352,0.760649,0.809018,0.801376,0.0744034,0.306185,0.494875,0.58947,0.366396,0.821938,0.297101,0.954933,0.661283,0.928732,0.0367853,0.570344,0.31167,0.194431,0.535719,0.80523,0.250177,0.0193753,0.804127,0.430661,0.0603145,0.734852,0.773111,0.477745,0.165867,0.788464,0.246279,0.481945,0.786962,0.0668607,0.61337,0.0143877,0.512398,0.325929,0.642601,0.277873,0.658919,0.553505,0.357125,0.320624,0.266824,0.884781,0.117952,0.962811,0.0642864,0.436034,0.871,0.537381,0.536802,0.476543,0.698016,0.573669,0.32583,0.854918,0.702344,0.0995979,0.897082,0.926369,0.177303,0.704678,0.601012,0.67849,0.236063,0.011264,0.908708,0.702231,0.447253,0.277039,0.767507,0.0517194,0.482462,0.66716,0.0806157,0.411693,0.052678,0.777014,0.770152,0.973277,0.873757,0.176227,0.33321,0.0916477,0.143596,0.924766,0.60203,0.397904,0.974437,0.162692,0.721079,0.481621,0.660361,0.305282,0.1713,0.300547,0.199328,0.386412,0.234599,0.468295,0.830828,0.900601,0.498984,0.143404,0.384359,0.219565,0.891618,0.842928,0.843345,0.355563,0.804178,0.4767,0.838759,0.687754,0.883509,0.460983,0.178518,0.545662,0.487714,0.328743,0.620482,0.202825,0.680317,0.11026,0.622088,0.618747,0.59898,0.807776,0.909873,0.783746,0.961327,0.258347,0.11408,0.0856027,0.770308,0.338604,0.294681,0.0179361,0.0887706,0.305419,0.443587,0.319806,0.79339,0.791685,0.752727,0.193548,0.67218,0.381644,0.65513,0.0643558,0.425213,0.108009,0.724174,0.18664,0.102821,0.0864038,0.819571,0.284633,0.818178,0.474946,0.875613,0.414241,0.0259101,0.21123,0.576755,0.834263,0.947813,0.422547,0.973116,0.103723,0.439818,0.367424,0.636216,0.951539,0.245605,0.633193,0.823851,0.223174,0.134297,0.386173,0.214503,0.114214,0.314911,0.913876,0.492261,0.250249,0.521811,0.0820409,0.295511,0.0406384,0.132106,0.395701,0.368846,0.131687,0.414153,0.222885,0.774836,0.377226,0.0306584,0.872339,0.576251,0.569604,0.161949,0.00253057,0.56473,0.586749,0.416866,0.950116,0.743382,0.633906,0.101462,0.607755,0.0566867,0.750419,0.951048,0.163615,0.479432,0.702135,0.620675,0.00266725,0.0985535,0.113939,0.567901,0.667908,0.557999,0.0712479,0.853155,0.0166196,0.590634,0.777004,0.0911028,0.892125,0.0847172,0.422813,0.472565,0.622672,0.67781,0.544039,0.374557,0.644083,0.587863,0.297764,0.160642,0.710973,0.224042,0.108335,0.317487,0.720729,0.103252,0.849001,0.318683,0.139228,0.758111,0.0215949,0.10421,0.137849,0.23488,0.0882671,0.0123814,0.454318,0.222973,0.201263,0.127165,0.904635,0.0487065,0.801047,0.622417,0.0254011,0.990791,0.596069,0.234749,0.386047,0.323437,0.214054,0.101863,0.644188,0.0572789,0.894332,0.790094,0.74103,0.44635,0.322887,0.431205,0.49897,0.965684,0.708892,0.379095,0.933509,0.550203,0.974128,0.641837,0.103525,0.457287,0.246559,0.427278,0.503382,0.229491,0.0657336,0.27929,0.595196,0.232886,0.40721,0.186341,0.318496,0.633886,0.358574,0.193698,0.973595,0.388824,0.041885,0.10397,0.366319,0.69399,0.111693,0.487933,0.0950028,0.0112922,0.548659,0.54321,0.874471,0.915488,0.364695,0.531501,0.165155,0.609208,0.863398,0.93072,0.0976762,0.368495,0.704301,0.97134,0.6342,0.984334,0.807871,0.872785,0.0054276,0.584694,0.588142,0.161083,0.349114,0.508586,0.761426,0.823779,0.477991,0.105604,0.116142,0.890358,0.326407,0.223982,0.684464,0.075815,0.265244,0.923036,0.382333,0.154634,0.199833,0.999108,0.41671,0.134468,0.51021,0.431676,0.733149,0.253849,0.370819,0.222021,0.75756,0.25639,0.931054,0.93025,0.408974,0.517014,0.416857,0.980246,0.765858,0.385914,0.576651,0.858096,0.748833,0.523158,0.0198027,0.649475,0.565266,0.897429,0.262113,0.558334,0.0680291,0.449758,0.741138,0.905633,0.0990208,0.388953,0.752638,0.211507,0.0808974,0.845101,0.386438,0.368001,0.319977,0.75222,0.772746,0.485457,0.0385304,0.0174667,0.906447,0.534231,0.664664,0.269458,0.502281,0.32085,0.709135,0.573543,0.257308,0.814258,0.931676,0.0170924,0.933321,0.575436,0.854833,0.166589,0.30973,0.184567,0.880075,0.0148879,0.0870826,0.217233,0.560678,0.59361,0.688388,0.221414,0.265213,0.952781,0.665376,0.264953,0.750003,0.579346,0.900228,0.241495,0.911816,0.226084,0.811142,0.998653,0.237562,0.793396,0.447446,0.390366,0.120265,0.0136554,0.800454,0.135916,0.992807,0.603471,0.923288,0.01524,0.212224,0.363634,0.213421,0.932792,0.693784,0.821549,0.298667,0.38894,0.0265925,0.642205,0.21703,0.17004,0.0758597,0.343318,0.940879,0.554007,0.64749,0.778856,0.326461,0.514982,0.10335,0.0392315,0.627451,0.200106,0.115437,0.747605,0.965561,0.722467,0.797811,0.727782,0.0188252,0.840889,0.723906,0.232393,0.424559,0.870738,0.316669,0.311786,0.825133,0.226191,0.867988,0.502192,0.809966,0.713567,0.189562,0.62698,0.812303,0.708274,0.823262,0.266231,0.187828,0.766891,0.0417208,0.710948,0.377635,0.349066,0.378267,0.934704,0.647184,0.484946,0.0789958,0.658783,0.595179,0.595233,0.204322,0.759369,0.461589,0.429753,0.225435,0.633745,0.213709,0.0658964,0.651022,0.804205,0.25275,0.541087,0.946705,0.21723,0.703097,0.602438,0.175473,0.254726,0.948567,0.716043,0.6126,0.904855,0.926663,0.991243,0.905145,0.731522,0.26275,0.804944,0.482708,0.114333,0.0827026,0.453821,0.286737,0.098918,0.470797,0.62554,0.749626,0.304817,0.131982,0.915729,0.876583,0.253413,0.646089,0.139365,0.357315,0.60133,0.356612,0.765105,0.728283,0.843839,0.649528,0.476158,0.612932,0.902271,0.0975964,0.23367,0.85357,0.270293,0.486737,0.454832,0.227302,0.744018,0.621493,0.0218167,0.560749,0.443352,0.175851,0.171506,0.981938,0.822517,0.269403,0.18507,0.191253,0.191991,0.582408,0.567449,0.532525,0.465495,0.188897,0.683296,0.765528,0.969894,0.504255,0.610295,0.812743,0.769482,0.622576,0.106634,0.224712,0.614043,0.56574,0.302168,0.147439,0.282639,0.261908,0.867547,0.427722,0.811484,0.959515,0.722082,0.683701,0.79777,0.844885,0.381698,0.843788,0.633835,0.456746,0.0353808,0.125574,0.0577464,0.663937,0.313894,0.141198,0.324258,0.704931,0.775089,0.510859,0.909777,0.239461,0.575495,0.243834,0.588633,0.165347,0.859904,0.484052,0.309839,0.609597,0.799291,0.544024,0.793075,0.396138,0.161222,0.382612,0.210964,0.17191,0.477839,0.172726,0.542543,0.225917,0.752422,0.150394,0.56852,0.972646,0.414711,0.0915961,0.671365,0.18423,0.675216,0.0798897,0.488642,0.00782561,0.393288,0.824273,0.0509517,0.678755,0.20574,0.160006,0.27584,0.892518,0.105727,0.653105,0.20161,0.54987,0.392224,0.195777,0.309924,0.034098,0.723388,0.263408,0.425751,0.97154,0.761695,0.60085,0.498721,0.508905,0.729882,0.596549,0.842095,0.758892,0.908109,0.878618,0.469288,0.0295216,0.22059,0.743901,0.716064,0.16767,0.176987,0.817376,0.257417,0.152416,0.415948,0.330651,0.124672,0.570513,0.818478,0.398804,0.338126,0.141137,0.33612,0.696505,0.303209,0.593658,0.14069,0.365635,0.573511,0.322641,0.45122,0.961033,0.499102,0.840952,0.678499,0.429312,0.842623,0.716321,0.304816,0.651001,0.973653,0.398226,0.93559,0.196271,0.493643,0.0705572,0.0372738,0.2668,0.00553447,0.484597,0.552515,0.59976,0.289825,0.00398403,0.71489,0.214108,0.580695,0.732144,0.182633,0.445188,0.84507,0.378161,0.227545,0.0275881,0.61847,0.99477,0.86915,0.537088,0.596106,0.644871,0.241733,0.947985,0.0244241,0.807536,0.535019,0.540309,0.103719,0.218995,0.82231,0.060595,0.42599,0.657087,0.30433,0.213105,0.434607,0.499578,0.819016,0.227488,0.210101,0.895782,0.506711,0.325725,0.212712,0.165335,0.864034,0.613752,0.304986,0.0388436,0.960376,0.154798,0.43679,0.309755,0.021558,0.199551,0.228711,0.194004,0.607612,0.899541,0.422325,0.673822,0.80542,0.351306,0.521669,0.824362,0.656429,0.21453,0.986608,0.487403,0.868655,0.756235,0.641905,0.754775,0.670929,0.862408,0.050967,0.813082,0.781192,0.290192,0.43717,0.989656,0.854013,0.199368,0.531358,0.306086,0.940921,0.977045,0.975026,0.321788,0.839144,0.62999,|0.701017,0.70525,0.953198,0.778346,0.148112,0.51016,0.289429,0.833162,0.948496,0.15403,0.163718,0.711396,0.0719923,0.787302,0.0182921,0.121441,0.420307,0.530344,0.651612,0.272329,0.979325,0.212311,0.0392679,0.145418,0.0127519,0.693375,0.436763,0.995016,0.398703,0.215061,0.63061,0.844728,0.346558,0.326026,0.926405,0.679364,0.667241,0.635974,0.284557,0.431386,0.0669172,0.684618,0.323734,0.177297,0.155434,0.232503,0.382921,0.149986,0.950264,0.965072,0.919036,0.925579,0.0316217,0.172442,0.877341,0.245538,0.583729,0.360954,0.731937,0.474278,0.369442,0.227483,0.27852,0.348477,0.79942,0.424156,0.843808,0.160084,0.140864,0.515861,0.392919,0.235505,0.465299,0.778395,0.217814,0.0435786,0.543115,0.866486,0.976009,0.771984,0.260153,0.96389,0.0288939,0.339001,0.887243,0.0448633,0.893315,0.300105,0.159145,0.565911,0.308757,0.46415,0.555681,0.859408,0.39154,0.116817,0.620054,0.558549,0.580696,0.0956302,0.486109,0.144378,0.0393581,0.373356,0.662189,0.996942,0.630279,0.704774,0.800604,0.687045,0.774224,0.96585,0.238572,0.0236844,0.188243,0.268857,0.626758,0.888332,0.314683,0.0487472,0.822987,0.241078,0.758499,0.482381,0.447126,0.301182,0.368137,0.937906,0.760304,0.041304,0.507995,0.0936309,0.662445,0.515076,0.138677,0.0793022,0.284959,0.608447,0.194057,0.4408,0.107921,0.882362,0.258073,0.380025,0.269971,0.00710905,0.215895,0.996806,0.497792,0.244989,0.368499,0.911064,0.137506,0.90515,0.216004,0.995145,0.104067,0.453636,0.644319,0.132552,0.893345,0.633751,0.759639,0.404746,0.778071,0.518675,0.134164,0.103969,0.821146,0.619229,0.000427485,0.416574,0.51082,0.56948,0.0309205,0.819481,0.954017,0.296582,0.361126,0.0855086,0.342945,0.935237,0.241225,0.568197,0.25003,0.160236,0.517555,0.188847,0.127477,0.56654,0.739863,0.548246,0.391793,0.583038,0.00474906,0.60314,0.486879,0.869681,0.564523,0.577049,0.14328,0.635376,0.396445,0.560577,0.480105,0.143243,0.457788,0.579749,0.757092,0.975642,0.394947,0.836192,0.479879,0.010586,0.108151,0.0583104,0.678202,0.194183,0.00146145,0.345719,0.516493,0.11317,0.58002,0.390975,0.915216,0.443929,0.397996,0.599139,0.49821,0.197791,0.0558586,0.160481,0.0588174,0.841625,0.267982,0.407247,0.387444,0.852056,0.947383,0.187101,0.0800756,0.0161372,0.208067,0.294555,0.0681398,0.474704,0.950749,0.834644,0.539532,0.00958073,0.84079,0.885133,0.680439,0.054422,0.188711,0.778059,0.807519,0.146044,0.513504,0.114134,0.666935,0.94231,0.858706,0.359891,0.275918,0.216867,0.759834,0.0942791,0.427953,0.750837,0.632475,0.629878,0.60456,0.225113,0.857323,0.295784,0.265027,0.0732115,0.941924,0.780498,0.274958,0.662202,0.406864,0.597388,0.573754,0.497306,0.525743,0.236154,0.279269,0.01836,0.977262,0.18772,0.101858,0.992682,0.627676,0.980059,0.66633,0.646376,0.533905,0.758886,0.0158154,0.0445037,0.325008,0.089115,0.775533,0.0271024,0.259461,0.575169,0.612005,0.0405695,0.72941,0.486321,0.143692,0.429612,0.864411,0.952875,0.872708,0.214334,0.87659,0.487616,0.451243,0.726218,0.181269,0.31071,0.120253,0.700252,0.602659,0.0352904,0.765228,0.418061,0.688695,0.116461,0.699811,0.409588,0.481286,0.804157,0.625541,0.811835,0.501115,0.638001,0.888989,0.558761,0.739395,0.341927,0.257149,0.692499,0.459143,0.18111,0.158619,0.640455,0.801777,0.417306,0.358407,0.551126,0.595976,0.860083,0.168828,0.52431,0.12475,0.138209,0.155161,0.222493,0.452715,0.976389,0.563637,0.241786,0.113216,0.214577,0.716966,0.379977,0.798697,0.0985582,0.867066,0.19082,0.897616,0.670014,0.560565,0.340163,0.846443,0.164902,0.420823,0.971546,0.227446,0.429134,0.265321,0.647043,0.135445,0.256628,0.192657,0.759312,0.328161,0.898595,0.855715,0.438784,0.135753,0.712338,0.593172,0.660114,0.574292,0.0610069,0.485526,0.504612,0.845771,0.169867,0.657495,0.115116,0.667638,0.238723,0.666447,0.697583,0.199549,0.376376,0.79317,0.128132,0.433699,0.0948423,0.572862,0.837899,0.43857,0.829017,0.461898,0.319274,0.823284,0.31694,0.35171,0.0408242,0.352605,0.0376233,0.189231,0.95371,0.623288,0.195684,0.263064,0.52555,0.444843,0.266974,0.829297,0.0127503,0.975518,0.260967,0.541002,0.266427,0.0435565,0.430914,0.562797,0.411281,0.449886,0.964152,0.282044,0.490717,0.241134,0.69117,0.762501,0.595336,0.281058,0.536698,0.765427,0.816728,0.702453,0.251117,0.513774,0.158706,0.0986632,0.206747,0.469534,0.638724,0.716937,0.457704,0.780643,0.00934601,0.273275,0.743753,0.843213,0.653495,0.188662,0.700906,0.713164,0.620388,0.313731,0.76646,0.180211,0.447708,0.404844,0.418274,0.221211,0.307507,0.00177038,0.410039,0.415729,0.0937115,0.418725,0.575761,0.050683,0.647859,0.983244,0.453835,0.468045,0.22331,0.951785,0.995047,0.675431,0.583691,0.0293568,0.719367,0.930184,0.726361,0.00379854,0.742219,0.66027,0.339439,0.0727547,0.0159186,0.533537,0.627065,0.803169,0.432443,0.178784,0.115327,0.969132,0.236707,0.809964,0.0444694,0.129038,0.939488,0.430795,0.364571,0.475998,0.466232,0.881928,0.821322,0.514616,0.380112,0.551617,0.942916,0.775766,0.201634,0.750158,0.468097,0.720514,0.0233667,0.410497,0.164656,0.327382,0.216572,0.245367,0.00452721,0.382882,0.411731,0.128825,0.726903,0.354834,0.448997,0.3125,0.626041,0.109791,0.823917,0.0302129,0.972416,0.340422,0.0804434,0.928824,0.408384,0.0247434,0.0630093,0.964015,0.311276,0.582007,0.759595,0.682377,0.259024,0.106024,0.464534,0.47022,0.645646,0.652222,0.427018,0.585825,0.0954382,0.34999,0.53969,0.938307,0.039539,0.716199,0.33059,0.167418,0.948787,0.462821,0.644946,0.553777,0.205096,0.438416,0.0192851,0.757693,0.887757,0.875941,0.616057,0.391979,0.359465,0.990611,0.723847,0.396578,0.0567073,0.365154,0.264454,0.455241,0.0648167,0.0818346,0.630448,0.510507,0.442553,0.902482,0.916795,0.230307,0.701106,0.147346,0.539371,0.594428,0.371629,0.488169,0.0982895,0.048319,0.0688922,0.609895,0.514044,0.378177,0.304847,0.618323,0.228654,0.155109,0.26429,0.491789,0.409066,0.932767,0.263062,0.525938,0.384517,0.887282,0.139992,0.971325,0.22498,0.254506,0.085294,0.89958,0.516593,0.587239,0.174739,0.307734,0.616765,0.839702,0.0626546,0.21602,0.736619,0.339576,0.769367,0.852868,0.342013,0.985307,0.627057,0.153094,0.73762,0.0879571,0.968539,0.115068,0.694774,0.138946,0.84808,0.303283,0.210022,0.959857,0.457896,0.13215,0.148693,0.380168,0.354504,0.339753,0.0830576,0.184445,0.435266,0.489723,0.0149155,0.321253,0.86598,0.0558134,0.573633,0.216865,0.170993,0.932723,0.254449,0.923609,0.553779,0.406528,0.0251642,0.467597,0.651197,0.57616,0.971172,0.187714,0.899309,0.0807393,0.205601,0.555934,0.831863,0.248187,0.0580502,0.100246,0.420936,0.345751,0.393858,0.910561,0.155491,0.938125,0.335396,0.181317,0.0311553,0.930443,0.390055,0.351956,0.647283,0.591294,0.327847,0.366397,0.989763,0.883469,0.207249,0.826879,0.416782,0.187409,0.264814,0.0894125,0.616193,0.86531,0.772104,0.494539,0.279965,0.0548059,0.304482,0.919908,0.399291,0.736463,0.901567,0.116297,0.477114,0.265926,0.183324,0.163381,0.110842,0.903785,0.29743,0.193609,0.0650685,0.374459,0.60806,0.849311,0.14621,0.118653,0.588684,0.283744,0.0417352,0.232858,0.883613,0.75839,0.69628,0.40482,0.50899,0.0850904,0.534707,0.794378,0.026194,0.997865,0.632209,0.870672,0.230069,0.0281658,0.626625,0.00283337,0.331925,0.78564,0.297042,0.251996,0.219985,0.18203,0.553796,0.61374,0.729284,0.328473,0.314795,0.348585,0.936494,0.225266,0.356918,0.0115185,0.944955,0.0420353,0.180579,0.198383,0.695923,0.11848,0.90901,0.765587,0.952246,0.460203,0.113736,0.744349,0.268233,0.528849,0.835314,0.330333,0.118597,0.489433,0.520978,0.952306,0.231695,0.799581,0.555925,0.0727464,0.253214,0.502613,0.593017,0.526871,0.912953,0.87388,0.0188518,0.791198,0.479036,0.234956,0.161745,0.499811,0.687737,0.918981,0.849714,0.309744,0.386296,0.136756,0.474955,0.0223061,0.932892,0.76197,0.769542,0.150906,0.317823,0.111314,0.589866,0.92363,0.726589,0.507505,0.409691,0.437307,0.514261,0.607426,0.403357,0.0365363,0.227157,0.0464898,0.876883,0.921264,0.517976,0.7977,0.285163,0.474494,0.12478,0.151398,0.961374,0.0196674,0.098244,0.00462979,0.08071,0.702342,0.496535,0.568313,0.193564,0.357364,0.532066,0.72554,0.109789,0.540866,0.704208,0.0492928,0.129761,0.653431,0.604513,0.434683,0.754345,0.575424,0.107035,0.297122,0.154089,0.269787,0.89245,0.330169,0.209441,0.343118,0.897955,0.534721,0.650152,0.019227,0.294231,0.0362728,0.856562,0.421435,0.839315,0.678175,0.952635,0.261446,0.377679,0.03315,0.702799,0.464595,0.650465,0.132361,0.187369,0.206282,0.176306,0.431312,0.760861,0.0254872,0.158684,0.161857,0.640996,0.878235,0.524294,0.371741,0.146903,0.210793,0.0332948,0.990865,0.321975,0.965023,0.0855225,0.200724,0.622693,0.637005,0.636689,0.472971,0.595474,0.156823,0.42802,0.953198,0.749686,0.725862,0.23954,0.011121,0.899228,0.8218,0.578834,0.467629,0.846671,0.301324,0.042329,0.27998,0.906456,0.516629,0.178207,0.850641,0.837992,0.705779,0.204893,0.326148,0.575012,0.200257,0.846606,0.955856,0.0990803,0.165407,0.370397,0.431077,0.167108,0.638923,0.894537,0.609486,0.722121,0.479975,0.970101,0.383276,0.8214,0.0823088,0.221845,0.635189,0.745709,0.328315,0.23671,0.563868,0.035779,0.144333,0.53061,0.811229,0.483507,0.837493,0.862956,0.878302,0.576627,0.758359,0.393856,0.744166,0.849696,0.530704,0.623825,0.721295,0.945042,0.211785,0.172661,|0.0687391,0.514757,0.947326,0.0694757,0.351624,0.330346,0.646637,0.500848,0.569224,0.149431,0.989743,0.0339354,0.418936,0.925775,0.0899001,0.423145,0.399676,0.666218,0.0700371,0.232196,0.168496,0.880648,0.441238,0.595453,0.158528,0.0231547,0.907871,0.46644,0.358975,0.17406,0.757173,0.845176,0.268352,0.226698,0.0770528,0.0497583,0.362739,0.0782436,0.16807,0.429209,0.0323981,0.731179,0.26973,0.152475,0.686606,0.00189114,0.977519,0.132207,0.781478,0.391129,0.101895,0.178981,0.0159488,0.285274,0.620145,0.286338,0.75433,0.0103917,0.63946,0.533934,0.806857,0.341719,0.671175,0.112034,0.0608841,0.894059,0.288696,0.67525,0.264912,0.51295,0.941733,0.661264,0.304805,0.780389,0.191036,0.991924,0.241821,0.444955,0.368048,0.524621,0.428866,0.04146,0.111845,0.480498,0.423996,0.176068,0.796283,0.291968,0.467397,0.653156,0.190582,0.88837,0.710794,0.999177,0.23318,0.566916,0.673099,0.164536,0.567235,0.190763,0.737655,0.38826,0.723399,0.507695,0.662395,0.698383,0.440627,0.604719,0.111427,0.55999,0.58264,0.361173,0.305971,0.319403,0.366729,0.0784143,0.768924,0.158861,0.0674057,0.478896,0.757104,0.460976,0.631796,0.876558,0.807531,0.296224,0.87369,0.501948,0.716757,0.142039,0.780497,0.926554,0.27857,0.705573,0.0181804,0.498712,0.489097,0.790324,0.328902,0.606952,0.710596,0.111913,0.137049,0.804135,0.674676,0.0132097,0.766321,0.197023,0.849427,0.646861,0.849258,0.443933,0.376036,0.917406,0.107091,0.860244,0.418892,0.750316,0.099155,0.426086,0.470678,0.501587,0.860174,0.677824,0.655465,0.272346,0.908497,0.548429,0.375485,0.54579,0.20206,0.588564,0.793019,0.323686,0.290974,0.18038,0.742054,0.55734,0.0408268,0.868116,0.619204,0.0689803,0.449589,0.313004,0.469481,0.389992,0.0743875,0.359529,0.00666589,0.902644,0.762911,0.683992,0.511232,0.698365,0.11235,0.305158,0.706099,0.136499,0.268975,0.549546,0.380148,0.978302,0.227706,0.917235,0.246145,0.233866,0.241656,0.660143,0.59059,0.484748,0.488754,0.452035,0.354611,0.326512,0.987909,0.30208,0.174171,0.474717,0.444343,0.765458,0.0703629,0.283024,0.933827,0.0466567,0.896836,0.767869,0.973251,0.913641,0.0146781,0.62255,0.198953,0.527771,0.598959,0.0249547,0.59921,0.333885,0.520479,0.0830289,0.68161,0.327222,0.953625,0.507732,0.116298,0.457201,0.00823724,0.375815,0.0449088,0.501612,0.735607,0.768203,0.508474,0.952694,0.470876,0.0603666,0.116308,0.865967,0.907726,0.536051,0.543907,0.277018,0.91071,0.936694,0.740389,0.393126,0.509575,0.999882,0.228436,0.584475,0.38185,0.0104952,0.985767,0.959723,0.679492,0.935645,0.337481,0.640559,0.184811,0.211621,0.152608,0.509409,0.267944,0.694908,0.031428,0.0901778,0.439655,0.72762,0.628654,0.791679,0.735567,0.288712,0.055735,0.440585,0.455809,0.774282,0.16078,0.65078,0.855435,0.0454102,0.691042,0.994993,0.927764,0.280697,0.471855,0.682255,0.861809,0.806033,0.86362,0.726572,0.539086,0.145675,0.0182634,0.318599,0.999166,0.154054,0.13555,0.652918,0.314398,0.835403,0.807603,0.898725,0.0941074,0.246178,0.297552,0.684239,0.99037,0.660387,0.107054,0.345159,0.790905,0.889839,0.832332,0.379837,0.860573,0.111721,0.896596,0.877328,0.478991,0.0727969,0.472096,0.155286,0.528556,0.0865634,0.144498,0.378216,0.955776,0.992982,0.170337,0.368893,0.291134,0.713137,0.15346,0.652184,0.806611,0.500752,0.889907,0.332249,0.639379,0.459897,0.465381,0.213211,0.393385,0.798364,0.125202,0.629948,0.719431,0.342518,0.486519,0.820377,0.159774,0.815519,0.107316,0.4562,0.274004,0.876627,0.591191,0.626073,0.907255,0.752601,0.656017,0.484282,0.661264,0.219642,0.872829,0.292923,0.851288,0.346662,0.781376,0.942886,0.215821,0.0734705,0.318799,0.346874,0.639122,0.742428,0.400565,0.826125,0.250692,0.269325,0.588767,0.501375,0.310023,0.019363,0.999179,0.00475514,0.828996,0.402431,0.219461,0.942458,0.929049,0.687272,0.694192,0.242295,0.0596321,0.00207669,0.0717983,0.633337,0.83389,0.393734,0.63599,0.597485,0.105081,0.973308,0.725145,0.314985,0.954469,0.92812,0.792905,0.620327,0.612763,0.077906,0.945844,0.212509,0.667671,0.121433,0.252131,0.671684,0.616256,0.685783,0.18597,0.313494,0.183182,0.54104,0.156658,0.84633,0.389758,0.0372401,0.711063,0.207136,0.197969,0.188267,0.756141,0.543521,0.404416,0.520805,0.810934,0.920731,0.546372,0.305116,0.139896,0.691562,0.00597346,0.328274,0.348925,0.640704,0.552045,0.733334,0.513718,0.0588815,0.481998,0.0604092,0.0736563,0.658807,0.884472,0.248402,0.0285864,0.358659,0.685088,0.320903,0.305746,0.734652,0.483237,0.835737,0.908006,0.881946,0.535458,0.967978,0.430209,0.847343,0.0234339,0.936106,0.357928,0.59922,0.564689,0.220236,0.987855,0.340482,0.56881,0.729636,0.906259,0.244267,0.702404,0.0845351,0.738802,0.266261,0.805019,0.051096,0.384268,0.970772,0.0217366,0.403196,0.55006,0.932792,0.911071,0.210454,0.489553,0.0869194,0.105211,0.208294,0.329431,0.316415,0.705868,0.000524402,0.195617,0.304131,0.976395,0.0710385,0.210789,0.0595959,0.824642,0.702555,0.406001,0.439121,0.127604,0.866196,0.77964,0.467563,0.758375,0.785674,0.373046,0.0333385,0.863871,0.93683,0.672928,0.368537,0.667092,0.853034,0.402309,0.871953,0.178572,0.671049,0.453965,0.536402,0.0558437,0.139819,0.429015,0.88358,0.32441,0.546911,0.217514,0.0721633,0.133988,0.538547,0.131026,0.764835,0.453142,0.584181,0.826424,0.630608,0.224128,0.752617,0.352801,0.306838,0.842986,0.480393,0.513751,0.0483635,0.582642,0.347271,0.70395,0.569013,0.516404,0.975041,0.379856,0.0995759,0.499868,0.646864,0.810362,0.687618,0.0199291,0.941368,0.0736572,0.264887,0.371548,0.637516,0.273696,0.268603,0.0273166,0.00616664,0.83787,0.280078,0.839942,0.749105,0.619882,0.19255,0.827404,0.0140609,0.282922,0.338181,0.0782966,0.317191,0.533714,0.190237,0.0175641,0.149622,0.346492,0.311452,0.17929,0.0617313,0.0349534,0.0744,0.583001,0.161786,0.980111,0.670005,0.158926,0.292552,0.145455,0.89398,0.517275,0.444074,0.371187,0.219045,0.176696,0.0255539,0.256828,0.555762,0.454393,0.974791,0.667882,0.579962,0.927169,0.0956277,0.694639,0.806842,0.67251,0.179283,0.656784,0.504938,0.504876,0.459,0.237178,0.789073,0.278097,0.92554,0.142174,0.912117,0.128892,0.216106,0.153394,0.216516,0.711265,0.844939,0.351247,0.0358686,0.774716,0.27938,0.421314,0.626207,0.158724,0.00113028,0.862147,0.178299,0.315026,0.11313,0.0775698,0.840162,0.2885,0.818761,0.256432,0.339725,0.898423,0.0128712,0.940524,0.120598,0.777203,0.381032,0.335742,0.603259,0.161296,0.775668,0.279976,0.0719926,0.493328,0.334734,0.349119,0.28954,0.245375,0.938451,0.927125,0.958722,0.909971,0.43025,0.945194,0.433873,0.00628972,0.0255979,0.527782,0.178611,0.873611,0.489057,0.923275,0.343161,0.972578,0.937522,0.405755,0.141894,0.135,0.0554032,0.739445,0.102166,0.314686,0.938028,0.762294,0.908079,0.656108,0.137973,0.648487,0.45217,0.532218,0.384316,0.325643,0.223855,0.865162,0.621211,0.118843,0.0400651,0.234703,0.63961,0.80968,0.819636,0.117617,0.0440329,0.541453,0.157709,0.878789,0.459885,0.485596,0.923202,0.14225,0.83473,0.684532,0.484858,0.845058,0.9618,0.741266,0.0469207,0.0142507,0.499035,0.569244,0.802121,0.128532,0.663486,0.0814449,0.11087,0.359778,0.198941,0.300204,0.755665,0.515477,0.90714,0.539867,0.717661,0.248393,0.106342,0.352634,0.666667,0.326685,0.740834,0.181757,0.36943,0.303625,0.348047,0.397444,0.611478,0.0633944,0.357717,0.344681,0.687138,0.813919,0.241191,0.102769,0.469186,0.270224,0.274939,0.435497,0.261497,0.231821,0.83138,0.0325663,0.0606885,0.207703,0.971896,0.623468,0.377978,0.9282,0.60949,0.830944,0.941549,0.131256,0.619966,0.543136,0.650688,0.613291,0.684605,0.00542819,0.619042,0.38605,0.44825,0.719964,0.691002,0.704794,0.580749,0.550352,0.36545,0.565333,0.0529954,0.547009,0.847648,0.984513,0.0731164,0.0725167,0.344744,0.347081,0.169576,0.0101854,0.523301,0.9978,0.426478,0.883423,0.986209,0.772114,0.29068,0.853595,0.76594,0.887836,0.647866,0.0230457,0.194862,0.834337,0.730205,0.830006,0.652753,0.752746,0.546925,0.86483,0.66614,0.386732,0.262133,0.510945,0.758837,0.229593,0.485654,0.0893625,0.104487,0.784501,0.769778,0.0356622,0.877236,0.21937,0.327162,0.277573,0.696826,0.179322,0.0380787,0.692162,0.560088,0.667026,0.89055,0.214647,0.982272,0.144563,0.932661,0.863966,0.99882,0.330387,0.916701,0.0727612,0.475327,0.418562,0.383788,0.255368,0.27454,0.703833,0.12348,0.98778,0.193635,0.559526,0.0713192,0.0992045,0.299785,0.680482,0.584809,0.571247,0.172145,0.156634,0.0576341,0.789465,0.132544,0.875604,0.446153,0.875853,0.462233,0.616398,0.339455,0.556665,0.949304,0.260629,0.199342,0.0887408,0.891633,0.711852,0.737903,0.973849,0.527341,0.306501,0.302629,0.989938,0.079973,0.454832,0.966958,0.473094,0.464024,0.876916,0.136207,0.82119,0.282866,0.187135,0.529805,0.0654385,0.0530941,0.0505562,0.262094,0.610786,0.977699,0.219695,0.770373,0.702044,0.200977,0.695541,0.0363264,0.956751,0.53762,0.257471,0.00420445,0.270236,0.0296382,0.142706,0.713267,0.968373,0.589466,0.075646,0.158926,0.858656,0.352154,0.838427,0.730729,0.292826,0.845318,0.714469,0.845365,0.716461,0.179613,0.303585,0.843903,0.0405566,0.830904,0.31525,0.93602,0.786512,0.390284,0.741019,0.29807,0.285436,0.256092,0.0965528,0.0259562,0.473707,0.776664,0.335955,0.507915,0.0120848,0.295208,0.46199,0.584503,0.933746,0.265782,0.86077,0.517533,0.401488,0.540517,|0.090165,0.455404,0.0721352,0.987278,0.956974,0.157995,0.646392,0.709918,0.965605,0.318904,0.928824,0.257534,0.848679,0.516235,0.148041,0.978488,0.919722,0.451199,0.596115,0.908977,0.344257,0.517667,0.416347,0.681732,0.526117,0.804775,0.896672,0.755031,0.784147,0.319416,0.440029,0.418426,0.0657266,0.260023,0.642862,0.489924,0.298903,0.694193,0.611049,0.359983,0.871437,0.623047,0.397516,0.980679,0.738982,0.624783,0.613186,0.739202,0.607728,0.521237,0.581124,0.418531,0.568658,0.47496,0.184535,0.562209,0.780041,0.235849,0.633918,0.242671,0.993296,0.0182183,0.478566,0.909291,0.19212,0.380552,0.240588,0.121967,0.0498996,0.189578,0.00553584,0.464462,0.175797,0.575272,0.593653,0.613533,0.912019,0.605752,0.300363,0.904047,0.869867,0.886965,0.714539,0.00265974,0.85332,0.0236025,0.822971,0.118381,0.892781,0.891247,0.61202,0.967463,0.0282117,0.515484,0.262648,0.214531,0.986862,0.947824,0.675695,0.642181,0.811998,0.394324,0.845523,0.826998,0.514869,0.542649,0.331827,0.13615,0.652967,0.47271,0.493736,0.243411,0.577132,0.864088,0.257477,0.380341,0.746216,0.0194119,0.0326981,0.201099,0.496444,0.739412,0.910622,0.626589,0.585206,0.0968083,0.968744,0.769171,0.970813,0.683794,0.864685,0.164461,0.482357,0.0242708,0.0377323,0.654375,0.947075,0.578154,0.472195,0.428455,0.0723099,0.328727,0.83501,0.328331,0.54111,0.222124,0.986037,0.84571,0.90771,0.928665,0.734487,0.544346,0.647293,0.0332323,0.745145,0.282516,0.477397,0.158214,0.193612,0.10275,0.626823,0.108413,0.84365,0.800629,0.758116,0.630036,0.68209,0.740953,0.34014,0.560299,0.349348,0.64156,0.516198,0.0376595,0.086552,0.888306,0.952704,0.768949,0.537338,0.0449401,0.456785,0.578975,0.675864,0.536643,0.502757,0.406999,0.765962,0.468127,0.734729,0.451388,0.742483,0.978342,0.538742,0.375063,0.0823181,0.617279,0.960568,0.363519,0.145694,0.774958,0.321653,0.126714,0.996741,0.809045,0.264545,0.931437,0.106683,0.655953,0.194756,0.0602907,0.621019,0.251606,0.637478,0.349371,0.049418,0.649896,0.443395,0.713789,0.340944,0.0244638,0.532096,0.789734,0.0582093,0.77137,0.517459,0.284815,0.183179,0.406013,0.491835,0.487391,0.864589,0.42798,0.640018,0.891641,0.651735,0.345663,0.94808,0.649463,0.740791,0.253758,0.301891,0.779581,0.480179,0.386598,0.676927,0.0180119,0.273002,0.648377,0.624851,0.615533,0.71509,0.0269624,0.280506,0.75869,0.999638,0.599358,0.268327,0.722572,0.761381,0.143574,0.582791,0.962527,0.48916,0.529131,0.426583,0.690314,0.931703,0.359999,0.737257,0.407786,0.208388,0.467892,0.305876,0.120335,0.86185,0.00743741,0.14855,0.0121255,0.646625,0.782162,0.0143249,0.0963929,0.930086,0.662276,0.510096,0.648921,0.24959,0.159252,0.0617288,0.725829,0.918757,0.8023,0.308177,0.986177,0.672406,0.875285,0.237124,0.319781,0.409052,0.0305764,0.980805,0.970873,0.669714,0.239465,0.394611,0.609771,0.0336044,0.668904,0.686002,0.0805964,0.698034,0.719874,0.429121,0.379991,0.60285,0.877757,0.595634,0.309428,0.366448,0.581511,0.331925,0.324646,0.153127,0.211654,0.507655,0.126636,0.0537905,0.433666,0.485584,0.735415,0.458854,0.164377,0.629093,0.149198,0.345064,0.817201,0.437362,0.0545074,0.559646,0.782615,0.740816,0.909857,0.91692,0.664309,0.513523,0.705951,0.428096,0.754211,0.305571,0.566006,0.0619903,0.630713,0.730136,0.379149,0.210747,0.0638555,0.295479,0.517311,0.763119,0.969255,0.495834,0.0368632,0.470334,0.685426,0.346808,0.330263,0.471264,0.963274,0.558087,0.680545,0.181816,0.878623,0.923418,0.330759,0.527798,0.559264,0.562651,0.404145,0.62735,0.38234,0.109173,0.387151,0.572479,0.453936,0.901046,0.578919,0.155135,0.493265,0.112468,0.709685,0.867518,0.37903,0.998169,0.24657,0.964676,0.243142,0.766707,0.36454,0.191445,0.625702,0.602912,0.875748,0.114714,0.529724,0.0168438,0.463181,0.127282,0.000193536,0.100365,0.204375,0.0875868,0.672385,0.0309345,0.250701,0.328706,0.110631,0.201886,0.400741,0.706231,0.612426,0.399998,0.147808,0.484916,0.559144,0.627597,0.863518,0.698657,0.963604,0.361549,0.433446,0.750807,0.163728,0.665025,0.07469,0.65842,0.827135,0.735568,0.268407,0.792276,0.180342,0.906346,0.196261,0.0545725,0.585966,0.894144,0.226941,0.314971,0.166059,0.267443,0.190214,0.923407,0.29943,0.791789,0.149919,0.396879,0.627164,0.405394,0.587723,0.253196,0.818727,0.73061,0.808798,0.0610131,0.395242,0.400044,0.231854,0.225187,0.514125,0.805982,0.938091,0.303009,0.407421,0.1066,0.524079,0.0053829,0.23986,0.305906,0.129924,0.0307613,0.507787,0.0797634,0.835923,0.184299,0.979716,0.860333,0.270018,0.805547,0.407563,0.926629,0.999446,0.288615,0.96014,0.667876,0.916262,0.311315,0.294316,0.659027,0.0720238,0.0612594,0.895281,0.321231,0.594046,0.0518538,0.438487,0.79877,0.751557,0.0258374,0.710036,0.907211,0.0668319,0.437185,0.58752,0.721483,0.59725,0.17397,0.177123,0.709817,0.125259,0.241578,0.357849,0.509407,0.612809,0.0958129,0.10746,0.37311,0.383311,0.8565,0.208296,0.551929,0.399736,0.168035,0.483909,0.58096,0.486163,0.552383,0.223039,0.224442,0.392398,0.269779,0.534275,0.269932,0.525848,0.87872,0.756205,0.583852,0.687882,0.598855,0.558889,0.860743,0.338248,0.693685,0.3109,0.987927,0.18897,0.453014,0.685297,0.589031,0.580608,0.167056,0.478875,0.150785,0.585975,0.231695,0.582955,0.347325,0.394113,0.0759472,0.992431,0.753689,0.0949646,0.362874,0.0612617,0.81914,0.775957,0.803981,0.322841,0.959433,0.168478,0.581071,0.954944,0.835922,0.308136,0.494533,0.518309,0.448277,0.989181,0.0627945,0.355475,0.340028,0.704837,0.607576,0.545535,0.313086,0.464843,0.732313,0.780637,0.0659714,0.0261848,0.477538,0.598782,0.0607801,0.401166,0.406242,0.352412,0.0595131,0.971626,0.947799,0.790766,0.92493,0.393127,0.0921559,0.732397,0.4738,0.595634,0.360337,0.97745,0.304402,0.73323,0.161452,0.329294,0.273663,0.660218,0.805562,0.0374889,0.430534,0.911358,0.552568,0.513277,0.864771,0.302912,0.522626,0.77606,0.0839416,0.145579,0.476088,0.0814,0.089479,0.185955,0.272903,0.954636,0.503909,0.896627,0.455945,0.212545,0.650694,0.449725,0.0588035,0.439902,0.375173,0.991003,0.221493,0.287803,0.568276,0.627696,0.766437,0.50013,0.371657,0.180463,0.889384,0.0486033,0.203471,0.978941,0.200682,0.32844,0.325639,0.245538,0.380753,0.862177,0.396562,0.40767,0.869874,0.99417,0.828591,0.223606,0.0810553,0.315435,0.930675,0.668874,0.103727,0.494207,0.767663,0.521024,0.752884,0.455504,0.0362663,0.545975,0.712699,0.0912827,0.518098,0.767628,0.912161,0.740695,0.476904,0.616911,0.923047,0.847086,0.575955,0.693416,0.947128,0.38543,0.85001,0.961938,0.562591,0.9193,0.245256,0.167264,0.976255,0.0620294,0.105922,0.244523,0.0212313,0.183581,0.793134,0.422396,0.583539,0.970286,0.395389,0.93101,0.817376,0.346577,0.160603,0.713431,0.21223,0.127128,0.978329,0.0262031,0.592066,0.419953,0.585517,0.0695315,0.10415,0.359942,0.3212,0.416738,0.209083,0.747812,0.142014,0.793452,0.434091,0.0961701,0.685124,0.85893,0.0647131,0.594942,0.600809,0.188353,0.430545,0.83849,0.46342,0.212626,0.46071,0.967625,0.553162,0.671221,0.623852,0.275791,0.05338,0.140622,0.734417,0.60777,0.242495,0.724566,0.747337,0.0901999,0.127199,0.251817,0.945013,0.205014,0.380212,0.66936,0.614059,0.0327194,0.439447,0.690251,0.538156,0.360402,0.533166,0.0340496,0.329677,0.43674,0.580484,0.174989,0.830353,0.925183,0.833582,0.294514,0.389283,0.362617,0.807823,0.453919,0.115079,0.559774,0.688896,0.339163,0.746684,0.960831,0.290914,0.845876,0.642366,0.644408,0.492077,0.605069,0.269285,0.49569,0.837256,0.663752,0.728122,0.271117,0.692484,0.858441,0.446703,0.338891,0.190143,0.921339,0.349983,0.824896,0.458413,0.624329,0.587645,0.726165,0.186923,0.774441,0.620344,0.196112,0.625606,0.310944,0.686463,0.190327,0.556538,0.0107667,0.521844,0.393883,0.818378,0.668787,0.266548,0.209765,0.754174,0.206959,0.610078,0.421406,0.0590692,0.687863,0.0601688,0.0106478,0.728564,0.272164,0.219659,0.114324,0.830087,0.0100698,0.830282,0.161782,0.933451,0.458313,0.572689,0.916006,0.509235,0.0684573,0.2028,0.441059,0.82048,0.665331,0.357405,0.206383,0.677393,0.607724,0.433117,0.770723,0.381225,0.60336,0.247562,0.218451,0.486034,0.986072,0.682456,0.811597,0.976827,0.740919,0.0844163,0.518266,0.642782,0.910309,0.956501,0.434202,0.8333,0.646837,0.0764252,0.743115,0.92775,0.673822,0.0821239,0.0521464,0.500138,0.634502,0.536103,0.723625,0.417357,0.247858,0.802455,0.234686,0.562476,0.591005,0.237998,0.463504,0.457706,0.491608,0.266899,0.498484,0.919754,0.654811,0.147791,0.570188,0.294548,0.0748793,0.424266,0.484493,0.990699,0.262182,0.41033,0.194597,0.826403,0.809025,0.885931,0.682448,0.85019,0.109756,0.87546,0.58262,0.354716,0.194957,0.783059,0.0513225,0.783933,0.0161191,0.126641,0.0146456,0.131775,0.564706,0.120375,0.550411,0.0435078,0.828465,0.830545,0.76482,0.180185,0.158992,0.802983,0.499414,0.613675,0.893864,0.335654,0.831143,0.334068,0.332673,0.0919475,0.225626,0.00610435,0.764952,0.267101,0.186082,0.219606,0.968426,0.18395,0.220343,0.543837,0.264349,0.361476,0.0184311,0.729482,0.201212,0.366411,0.458668,0.188882,0.652815,0.0258725,0.683457,0.911374,0.567788,0.864653,0.452272,0.751837,0.822756,0.190914,0.80083,0.0263333,0.0360861,0.0558949,0.749469,0.65659,0.473286,0.551239,0.338743,0.181394,0.370722,0.404219,0.572776,0.234949,0.598486,0.685655,0.781547,|0.31475,0.132957,0.957542,0.140132,0.586833,0.476275,0.829727,0.95664,0.392647,0.997338,0.0424554,0.499711,0.378403,0.475003,0.270401,0.294787,0.709092,0.621498,0.279094,0.963365,0.902255,0.043979,0.429569,0.650555,0.930961,0.716733,0.388566,0.204604,0.145838,0.415957,0.210411,0.0853744,0.712776,0.344792,0.173378,0.175889,0.260156,0.973492,0.695002,0.914748,0.0913454,0.949684,0.799375,0.625149,0.8721,0.916058,0.384781,0.493515,0.512557,0.769332,0.739596,0.467365,0.578406,0.201385,0.691086,0.332257,0.736709,0.370738,0.49835,0.644635,0.090431,0.684674,0.278098,0.864549,0.44572,0.909787,0.71237,0.689641,0.00585866,0.0544026,0.693607,0.0278137,0.345148,0.760583,0.901786,0.181764,0.329116,0.972774,0.768021,0.386528,0.662263,0.0271577,0.537979,0.0440746,0.272593,0.155823,0.546691,0.789655,0.48441,0.364196,0.77698,0.472058,0.709273,0.338379,0.0806848,0.0621293,0.250933,0.225268,0.123709,0.0251877,0.443949,0.552114,0.11096,0.14995,0.341762,0.16187,0.331578,0.261231,0.0723086,0.451047,0.958563,0.332359,0.657498,0.639876,0.582792,0.00116324,0.0897982,0.999092,0.818098,0.769996,0.274832,0.742425,0.953564,0.0594243,0.0254154,0.364423,0.355581,0.793624,0.24501,0.450561,0.443237,0.555538,0.32364,0.357516,0.063632,0.851892,0.0792914,0.150605,0.422976,0.925293,0.485678,0.130857,0.980409,0.495689,0.659908,0.743158,0.232027,0.7958,0.548986,0.61526,0.929347,0.556325,0.652778,0.989756,0.0467044,0.0612123,0.290892,0.572929,0.383196,0.922757,0.900368,0.532928,0.107198,0.188267,0.0880753,0.769,0.223068,0.464049,0.154139,0.742876,0.242671,0.0202311,0.890719,0.885116,0.222956,0.427772,0.56749,0.148807,0.667896,0.272354,0.951691,0.51179,0.874324,0.638772,0.260484,0.357812,0.0759647,0.74853,0.501831,0.909924,0.222253,0.0281624,0.481965,0.475096,0.37737,0.821281,0.0519664,0.858523,0.692676,0.379997,0.553363,0.278866,0.700614,0.646808,0.96512,0.723661,0.0335171,0.086976,0.176779,0.927382,0.574575,0.220343,0.798706,0.873216,0.240466,0.973705,0.624513,0.0670003,0.183242,0.0397701,0.271501,0.316414,0.797246,0.20603,0.779092,0.0830429,0.277607,0.624796,0.34814,0.716957,0.0414446,0.587164,0.636513,0.919996,0.916757,0.585501,0.166211,0.525544,0.751259,0.951362,0.231287,0.588549,0.329033,0.735111,0.247324,0.0243171,0.663876,0.206696,0.429468,0.601635,0.723986,0.883021,0.806498,0.00736541,0.821967,0.426087,0.468138,0.321406,0.608148,0.715773,0.801692,0.0601822,0.771379,0.532276,0.648781,0.020579,0.641026,0.41146,0.433394,0.420786,0.44317,0.96255,0.654398,0.00420147,0.434322,0.544163,0.20513,0.415428,0.927669,0.858007,0.910432,0.0147504,0.763068,0.193797,0.314744,0.340541,0.818632,0.880509,0.826417,0.375061,0.538449,0.317232,0.775412,0.445024,0.353661,0.986155,0.417443,0.0365984,0.31431,0.492275,0.124267,0.386641,0.298251,0.284446,0.14701,0.238666,0.899469,0.150517,0.760153,0.108706,0.41545,0.0594925,0.423077,0.962237,0.0422164,0.11464,0.256333,0.301547,0.276345,0.229707,0.310288,0.684683,0.114844,0.108299,0.109102,0.260917,0.382133,0.896141,0.833824,0.891444,0.146069,0.396697,0.328583,0.0457957,0.848914,0.054043,0.332574,0.114296,0.348678,0.222054,0.210169,0.685369,0.65446,0.811774,0.778952,0.34639,0.787987,0.721747,0.749354,0.45818,0.692462,0.0522056,0.354333,0.634722,0.684637,0.603634,0.493333,0.0354881,0.995396,0.95628,0.784102,0.485919,0.566851,0.429129,0.908331,0.676539,0.211367,0.00156629,0.14354,0.142511,0.299192,0.289472,0.570216,0.0290703,0.105064,0.245908,0.753571,0.42046,0.904271,0.739006,0.928306,0.868582,0.927864,0.282703,0.259178,0.650366,0.296753,0.92969,0.87497,0.627082,0.76861,0.00082767,0.0168596,0.460171,0.252842,0.299926,0.878754,0.301016,0.53253,0.999779,0.18789,0.998969,0.99483,0.119908,0.518882,0.0759749,0.142185,0.225518,0.505943,0.620999,0.690081,0.901776,0.931804,0.095839,0.904017,0.15316,0.120776,0.101825,0.935937,0.0679119,0.50641,0.423546,0.828513,0.161584,0.0158958,0.429452,0.368627,0.808217,0.300529,0.724522,0.362992,0.154879,0.478243,0.636152,0.384542,0.891496,0.662086,0.0282767,0.626506,0.112903,0.00909877,0.7066,0.994808,0.631146,0.598347,0.587689,0.541894,0.708533,0.680409,0.783366,0.877823,0.258709,0.347007,0.0448343,0.589018,0.635521,0.338646,0.367537,0.322079,0.280868,0.589694,0.274604,0.608355,0.763941,0.640497,0.796927,0.337482,0.376508,0.61305,0.360037,0.956651,0.181574,0.128172,0.532827,0.557838,0.100454,0.344993,0.705768,0.472889,0.228752,0.018131,0.36824,0.0736427,0.707152,0.382287,0.430086,0.683416,0.114795,0.936277,0.423259,0.719035,0.345128,0.159201,0.402484,0.381372,0.153849,0.767323,0.462715,0.644215,0.0961007,0.499644,0.0241506,0.438354,0.496893,0.837288,0.972105,0.923354,0.360946,0.908542,0.279837,0.486014,0.542974,0.272279,0.905152,0.741878,0.271408,0.888054,0.145958,0.51581,0.840806,0.292312,0.50267,0.805411,0.91299,0.603795,0.32341,0.257767,0.415572,0.609747,0.166892,0.195824,0.811818,0.269179,0.999066,0.988623,0.68695,0.671131,0.545117,0.207923,0.450709,0.792929,0.0620373,0.5997,0.82394,0.563593,0.626543,0.164033,0.0918021,0.89938,0.661379,0.568276,0.94405,0.292529,0.369019,0.452972,0.771617,0.224338,0.144952,0.520625,0.532712,0.44032,0.804005,0.140898,0.121054,0.810849,0.897645,0.0628924,0.444591,0.933651,0.0993043,0.947648,0.180653,0.491768,0.731291,0.760505,0.574155,0.125484,0.757752,0.503819,0.885906,0.649697,0.36768,0.0187868,0.212618,0.700935,0.821029,0.416872,0.09125,0.476627,0.801412,0.246694,0.717885,0.167141,0.516888,0.388615,0.984146,0.394364,0.899274,0.633464,0.860921,0.757465,0.816655,0.898752,0.768521,0.597772,0.976806,0.281117,0.319644,0.174946,0.475654,0.292688,0.242781,0.62772,0.515661,0.950007,0.0118653,0.780592,0.99468,0.677029,0.165387,0.345354,0.212159,0.121791,0.563651,0.272518,0.524274,0.458419,0.630873,0.40527,0.66086,0.415754,0.981739,0.877648,0.27937,0.676203,0.0514319,0.907869,0.29453,0.403451,0.304586,0.892063,0.285797,0.431354,0.747533,0.668352,0.669938,0.414718,0.455136,0.207962,0.0760634,0.862822,0.698795,0.791615,0.647646,0.958805,0.314547,0.600185,0.685117,0.300889,0.854661,0.373055,0.95657,0.243068,0.292109,0.447124,0.625692,0.152163,0.30316,0.742742,0.477105,0.0238237,0.0519081,0.00883508,0.511381,0.271146,0.606094,0.903352,0.211913,0.103374,0.692288,0.259385,0.646135,0.473835,0.446858,0.671165,0.787354,0.54121,0.628233,0.257095,0.064555,0.020187,0.467414,0.933428,0.404378,0.408979,0.0906891,0.876998,0.445026,0.3215,0.549894,0.593557,0.517118,0.226566,0.37864,0.255227,0.0139408,0.565994,0.445267,0.0165119,0.595596,0.742998,0.720467,0.800283,0.7023,0.458782,0.0476101,0.708378,0.0463821,0.535854,0.0336811,0.591232,0.712304,0.281324,0.0924241,0.770514,0.968066,0.537642,0.471519,0.79618,0.705759,0.540445,0.906928,0.616556,0.666568,0.894803,0.829612,0.703555,0.646848,0.020828,0.490738,0.886566,0.645383,0.0899628,0.322908,0.243698,0.734504,0.418666,0.579053,0.331388,0.682553,0.176849,0.30172,0.645516,0.406064,0.458759,0.886709,0.778448,0.232954,0.746178,0.18341,0.584041,0.0525488,0.914392,0.557804,0.235487,0.210807,0.311711,0.396152,0.725515,0.661451,0.136521,0.540066,0.604779,0.883511,0.687924,0.699452,0.17641,0.228007,0.0235313,0.977615,0.170458,0.0670972,0.873457,0.867777,0.403785,0.912341,0.905723,0.539047,0.359377,0.673048,0.267126,0.866619,0.169312,0.158494,0.79312,0.822661,0.779431,0.981009,0.932353,0.213709,0.774038,0.255855,0.453937,0.703927,0.461899,0.12297,0.279134,0.636561,0.558306,0.430063,0.567604,0.301322,0.669817,0.428216,0.395562,0.278957,0.296177,0.689297,0.561809,0.425258,0.389843,0.44109,0.744067,0.976429,0.0409387,0.995098,0.882682,0.96744,0.450185,0.209754,0.803086,0.959792,0.0634313,0.68509,0.805811,0.905697,0.600573,0.593675,0.0170773,0.0447343,0.33511,0.739891,0.902647,0.83495,0.529996,0.083436,0.479971,0.437329,0.651319,0.0425187,0.738593,0.725781,0.457564,0.919597,0.324216,0.625121,0.905292,0.804834,0.873632,0.64389,0.243538,0.0212895,0.735609,0.947651,0.478975,0.461011,0.584608,0.61824,0.675042,0.112099,0.00617641,0.109305,0.985834,0.465091,0.92037,0.711173,0.396032,0.200717,0.713397,0.609473,0.844108,0.830675,0.944776,0.865302,0.274839,0.255898,0.0110563,0.746128,0.328591,0.735608,0.937818,0.687032,0.753303,0.967846,0.675514,0.198308,0.173446,0.315184,0.0973961,0.481239,0.819355,0.0753297,0.11098,0.968545,0.484132,0.0325269,0.509265,0.880198,0.937227,0.887932,0.650279,0.231649,0.406867,0.878091,0.172605,0.974709,0.326391,0.660927,0.154077,0.56525,0.128286,0.435796,0.119636,0.925976,0.164011,0.405822,0.157297,0.885593,0.841933,0.164612,0.980412,0.111164,0.819546,0.183839,0.173604,0.260246,0.597526,0.659589,0.0567903,0.352202,0.230491,0.910644,0.762765,0.86449,0.582292,0.268624,0.714871,0.590491,0.0795598,0.555862,0.753638,0.70475,0.612131,0.395808,0.431969,0.956556,0.253947,0.484169,0.334727,0.448164,0.313734,0.720191,0.479177,0.455454,0.810475,0.935813,0.0523742,0.459547,0.281197,0.909931,0.952969,0.592013,0.68376,0.124283,0.12913,0.915425,0.801462,0.257749,0.00664467,0.230976,0.0330294,0.968487,0.76918,0.810528,0.840847,0.746008,0.8816,0.191371,0.0611544,0.473285,0.0844296,0.246912,0.660718,0.268164,0.0458215,0.852364,0.142011,0.954144,0.0481349,0.352662,|0.727947,0.697846,0.0792509,0.331034,0.633943,0.0524128,0.83778,0.133692,0.216571,0.0958497,0.375622,0.117397,0.747781,0.680561,0.863713,0.322589,0.086861,0.753491,0.466427,0.364609,0.895863,0.224017,0.938616,0.431519,0.160192,0.244226,0.963366,0.689927,0.778056,0.219258,0.799914,0.0885453,0.769759,0.0543631,0.281908,0.931949,0.0178455,0.221753,0.841617,0.660484,0.572528,0.85472,0.711172,0.477853,0.398549,0.860492,0.878152,0.857765,0.600204,0.387237,0.0417786,0.487294,0.602568,0.262249,0.157596,0.76414,0.888187,0.922317,0.546267,0.632833,0.14998,0.469292,0.196831,0.94886,0.118239,0.665079,0.145909,0.301524,0.646404,0.733537,0.450276,0.887866,0.621076,0.663388,0.62877,0.554221,0.627685,0.455319,0.993122,0.475823,0.254544,0.577386,0.159017,0.257261,0.28666,0.854583,0.231627,0.10304,0.221881,0.310525,0.0508329,0.553288,0.575479,0.892039,0.899679,0.0413519,0.205708,0.153483,0.466847,0.45273,0.715639,0.734214,0.42243,0.411121,0.32165,0.131768,0.599475,0.0803999,0.880909,0.694384,0.427249,0.274122,0.898603,0.925294,0.0185134,0.0190716,0.956319,0.216879,0.692628,0.818589,0.554469,0.468442,0.225393,0.90914,0.160988,0.604299,0.254754,0.450212,0.803504,0.878062,0.507811,0.46286,0.62357,0.749588,0.396543,0.271867,0.674595,0.762174,0.980044,0.0608931,0.52133,0.836624,0.283691,0.731603,0.0771521,0.505138,0.395932,0.538805,0.00294966,0.698434,0.865433,0.613031,0.800254,0.954764,0.492735,0.786742,0.717881,0.129314,0.0108445,0.536813,0.532905,0.353221,0.141101,0.922056,0.843421,0.0711071,0.0933644,0.0599071,0.144274,0.401253,0.966909,0.416379,0.446992,0.49804,0.879868,0.342611,0.0514959,0.256613,0.847208,0.148801,0.57575,0.931119,0.603668,0.529265,0.486122,0.464124,0.0139385,0.455225,0.743575,0.626171,0.966445,0.65917,0.139378,0.429184,0.683987,0.965366,0.90299,0.0878146,0.760098,0.056006,0.761315,0.0554187,0.672658,0.0942556,0.317352,0.0918117,0.820491,0.432362,0.560081,0.25519,0.490613,0.0557335,0.800245,0.913452,0.215824,0.297056,0.316916,0.143131,0.914603,0.494642,0.0408108,0.764506,0.498378,0.283771,0.42303,0.849322,0.440382,0.803614,0.327491,0.958321,0.963584,0.062151,0.279511,0.706966,0.872458,0.033089,0.702815,0.187077,0.327826,0.616392,0.757066,0.725637,0.124349,0.594332,0.220893,0.845734,0.566437,0.387366,0.786089,0.0660135,0.50124,0.686542,0.564667,0.269374,0.732149,0.677258,0.0889528,0.143417,0.952542,0.376598,0.991797,0.272379,0.589157,0.621681,0.188857,0.642188,0.550548,0.584126,0.809265,0.623227,0.448637,0.743464,0.56542,0.126111,0.821048,0.410335,0.267189,0.649529,0.395326,0.237949,0.436442,0.0140156,0.910577,0.389406,0.329031,0.5932,0.9044,0.471049,0.0529719,0.110322,0.667013,0.2287,0.116735,0.104315,0.672217,0.460991,0.515294,0.791332,0.76115,0.565018,0.102612,0.496306,0.138707,0.0270671,0.927223,0.568218,0.166363,0.311014,0.494583,0.599487,0.474558,0.23243,0.503355,0.987982,0.293219,0.678219,0.578022,0.436642,0.211295,0.234269,0.205748,0.444646,0.512249,0.274478,0.639615,0.38992,0.159904,0.0447055,0.92475,0.827488,0.3757,0.519938,0.354995,0.0651782,0.25075,0.920525,0.523966,0.0210394,0.207964,0.362984,0.851617,0.605751,0.172464,0.192468,0.493127,0.616216,0.907717,0.946364,0.789546,0.248021,0.416373,0.534744,0.576968,0.160747,0.0980766,0.719467,0.254074,0.49711,0.252837,0.71253,0.610729,0.628261,0.202593,0.965327,0.858345,0.996742,0.361497,0.820893,0.699061,0.724073,0.64386,0.314641,0.205135,0.624016,0.318653,0.482545,0.0576113,0.891854,0.394161,0.306404,0.0727651,0.76505,0.669488,0.565672,0.49982,0.188127,0.469081,0.421758,0.693086,0.130428,0.451669,0.198294,0.875838,0.327938,0.408657,0.408961,0.890915,0.579674,0.579683,0.71512,0.266883,0.714666,0.63983,0.205834,0.0380113,0.587482,0.0904859,0.658282,0.787551,0.582609,0.560517,0.175458,0.283907,0.320581,0.620826,0.969532,0.455915,0.546943,0.86125,0.622692,0.973893,0.00406384,0.105562,0.355246,0.848987,0.663804,0.929164,0.750402,0.83826,0.814278,0.464531,0.288587,0.922322,0.735805,0.265561,0.0683544,0.929678,0.577226,0.473762,0.238508,0.795951,0.772771,0.267389,0.934064,0.0686156,0.0212858,0.258855,0.469228,0.536359,0.475115,0.540652,0.667804,0.767508,0.172013,0.638902,0.0709845,0.106439,0.814554,0.152866,0.140872,0.881165,0.101004,0.887225,0.107062,0.304997,0.622653,0.100387,0.350402,0.00214761,0.867425,0.94485,0.955395,0.115498,0.585258,0.00450283,0.623165,0.0162947,0.424651,0.17783,0.733039,0.92692,0.633585,0.108205,0.887682,0.651313,0.869851,0.869751,0.797505,0.680817,0.849337,0.6797,0.589343,0.542387,0.850292,0.824124,0.796495,0.452236,0.453419,0.00321031,0.0923738,0.610211,0.137207,0.104196,0.00524139,0.0535845,0.471439,0.630685,0.470659,0.702459,0.534764,0.773496,0.797738,0.976068,0.838571,0.715021,0.501785,0.176131,0.145484,0.84318,0.401131,0.169247,0.149457,0.490212,0.220504,0.538389,0.156198,0.591998,0.198077,0.0387204,0.570694,0.0565057,0.216553,0.712314,0.724845,0.490613,0.222934,0.570576,0.19241,0.635975,0.446364,0.391254,0.118108,0.434082,0.318111,0.708777,0.953854,0.946252,0.308797,0.00664127,0.39312,0.814849,0.435397,0.955277,0.447727,0.861382,0.274384,0.415232,0.559929,0.503681,0.646376,0.674812,0.78735,0.717066,0.457463,0.149089,0.218709,0.394035,0.874841,0.467682,0.118644,0.0536619,0.521222,0.0906805,0.206937,0.49465,0.595101,0.180854,0.472361,0.494301,0.342739,0.819821,0.349984,0.99696,0.396024,0.586463,0.0993868,0.142743,0.852346,0.381312,0.427431,0.87413,0.101102,0.368349,0.447104,0.905211,0.604384,0.48942,0.703891,0.251371,0.796144,0.639909,0.645013,0.990155,0.370179,0.410666,0.141346,0.0862899,0.438908,0.468506,0.27145,0.837825,0.736637,0.992396,0.820111,0.0559974,0.870682,0.774828,0.591691,0.960883,0.0714217,0.980741,0.922111,0.672948,0.144342,0.570025,0.932812,0.472194,0.845306,0.952197,0.304103,0.56335,0.0684676,0.559009,0.875641,0.220336,0.0317553,0.973547,0.483289,0.109936,0.568509,0.00944805,0.435205,0.648735,0.919227,0.9287,0.838659,0.242097,0.911873,0.104431,0.878473,0.84931,0.897817,0.23847,0.42512,0.58493,0.771446,0.923171,0.234916,0.715169,0.429889,0.566922,0.544868,0.683109,0.769467,0.914801,0.112319,0.117709,0.528545,0.956188,0.383158,0.567861,0.959191,0.376158,0.0160279,0.0634103,0.721488,0.186928,0.674649,0.431575,0.787878,0.795784,0.331999,0.294151,0.159038,0.709438,0.172563,0.214742,0.795955,0.96306,0.741618,0.163795,0.600468,0.530035,0.594939,0.494989,0.497649,0.830096,0.465963,0.403215,0.81271,0.773225,0.520025,0.558815,0.413281,0.47739,0.792613,0.0150656,0.207175,0.215506,0.935876,0.901789,0.663159,0.7507,0.468527,0.379722,0.846107,0.0761181,0.955668,0.74085,0.999588,0.889882,0.243316,0.667017,0.625719,0.411681,0.913552,0.918992,0.353491,0.717247,0.31049,0.697358,0.294207,0.338277,0.691507,0.803212,0.900697,0.103039,0.14616,0.209529,0.844091,0.933662,0.238628,0.831667,0.701138,0.153423,0.607525,0.901969,0.0851611,0.866667,0.639007,0.209929,0.695495,0.638039,0.358446,0.0262175,0.91757,0.200556,0.371174,0.469326,0.365664,0.580846,0.431479,0.377994,0.532771,0.312731,0.0195754,0.382232,0.422843,0.92325,0.279589,0.448779,0.743031,0.622897,0.338867,0.981364,0.796035,0.467574,0.822904,0.757275,0.785318,0.201912,0.000436306,0.590007,0.6293,0.474663,0.79211,0.681817,0.4401,0.819655,0.945885,0.650464,0.501581,0.320686,0.0427072,0.877936,0.33154,0.0120429,0.888929,0.426414,0.444548,0.838489,0.259747,0.0292644,0.897192,0.24949,0.899572,0.185947,0.938018,0.0534099,0.619705,0.00799406,0.94774,0.52706,0.97942,0.178589,0.227168,0.181792,0.783625,0.109557,0.34222,0.876659,0.364925,0.757991,0.93526,0.916138,0.746641,0.296074,0.303498,0.368623,0.354386,0.201626,0.64973,0.746264,0.0886199,0.103295,0.765669,0.941282,0.32955,0.795042,0.734033,0.636378,0.292185,0.650849,0.470493,0.0534124,0.0721019,0.218021,0.883449,0.508988,0.201368,0.345911,0.219202,0.0778686,0.42452,0.227786,0.768743,0.807331,0.709166,0.640434,0.872052,0.0794141,0.137688,0.00457036,0.266335,0.186541,0.200886,0.323105,0.602309,0.888865,0.425568,0.689875,0.250602,0.0526491,0.551851,0.497587,0.435523,0.356057,0.0143619,0.596422,0.420853,0.956698,0.408524,0.812039,0.19572,0.351122,0.292877,0.559646,0.174412,0.436132,0.0386294,0.118102,0.221019,0.267067,0.00442445,0.626902,0.16699,0.475704,0.147734,0.206816,0.949887,0.834832,0.307752,0.124921,0.720726,0.817405,0.104833,0.117265,0.481066,0.872603,0.531905,0.738595,0.801144,0.415585,0.778112,0.159448,0.880441,0.084889,0.532079,0.852883,0.458123,0.870476,0.697464,0.565209,0.836991,0.778259,0.474506,0.27519,0.674565,0.826118,0.642217,0.0425165,0.667179,0.898384,0.882986,0.230121,0.080043,0.040222,0.472299,0.773766,0.0251641,0.18359,0.522894,0.825837,0.842573,0.85158,0.961918,0.864663,0.924878,0.120156,0.512011,0.872492,0.607095,0.428369,0.318856,0.406452,0.462821,0.781376,0.434112,0.277333,0.229352,0.264181,0.929906,0.519132,0.923975,0.724466,0.29101,0.959246,0.154431,0.662846,0.621374,0.348304,0.236668,0.87036,0.572737,0.231326,0.505219,0.794979,0.445019,0.131295,0.424652,0.824963,0.274782,0.569783,0.485254,0.468692,0.957721,0.759492,0.360241,0.358378,0.486697,0.0516419,0.57147,0.401383,0.407841,0.226748,0.259572,0.178082,0.681663,0.980325,0.308441,|0.0399331,0.371721,0.988913,0.438341,0.394395,0.103061,0.588238,0.319949,0.241567,0.454375,0.695344,0.624352,0.257093,0.119663,0.270502,0.108761,0.849564,0.348723,0.50764,0.466483,0.030753,0.484092,0.200601,0.56778,0.0439656,0.823522,0.229793,0.474056,0.0971854,0.342392,0.634051,0.00899297,0.747645,0.730761,0.132452,0.543378,0.830596,0.856401,0.52234,0.443296,0.176663,0.407894,0.153701,0.433813,0.159592,0.876731,0.235238,0.0841508,0.0350052,0.105056,0.602709,0.701517,0.0956807,0.223672,0.598291,0.0534648,0.0627675,0.22218,0.711385,0.108903,0.487518,0.997564,0.407525,0.664215,0.342762,0.443434,0.00739908,0.663646,0.937386,0.00860065,0.0651516,0.82537,0.627763,0.225484,0.336431,0.317055,0.179542,0.794366,0.244308,0.234216,0.153678,0.138159,0.559336,0.456643,0.979159,0.548373,0.229724,0.409361,0.0248078,0.0464526,0.832189,0.534544,0.555466,0.369758,0.174846,0.586985,0.822085,0.602038,0.74086,0.712071,0.496343,0.555901,0.0501732,0.944739,0.178669,0.885062,0.181618,0.418523,0.0409676,0.892402,0.238187,0.958286,0.966206,0.176671,0.632075,0.746858,0.658921,0.911086,0.7408,0.225579,0.89472,0.671148,0.839221,0.437483,0.923301,0.80195,0.189001,0.686547,0.496933,0.197238,0.627043,0.92273,0.681284,0.308558,0.0245627,0.39676,0.173283,0.508093,0.123363,0.563201,0.816831,0.611389,0.951893,0.849098,0.980897,0.800372,0.60251,0.200471,0.754374,0.0656583,0.724501,0.349413,0.455806,0.662333,0.510352,0.471514,0.126309,0.547103,0.106776,0.00282937,0.593168,0.437315,0.909673,0.988937,0.488659,0.228622,0.272324,0.140846,0.940148,0.151312,0.0711093,0.299516,0.360027,0.283224,0.668006,0.849468,0.934568,0.422496,0.298848,0.00652468,0.858794,0.178525,0.946725,0.745092,0.780332,0.17429,0.271747,0.928087,0.355994,0.233032,0.283859,0.855266,0.854325,0.570556,0.162425,0.01661,0.817017,0.189463,0.0906709,0.61203,0.932931,0.38846,0.720881,0.461147,0.469058,0.922949,0.246467,0.848809,0.95676,0.33903,0.550204,0.293813,0.448067,0.783079,0.391758,0.203073,0.791312,0.414092,0.553037,0.0380394,0.698896,0.321503,0.905665,0.295062,0.465473,0.436431,0.317981,0.163323,0.917858,0.851631,0.217576,0.139675,0.974004,0.466149,0.339551,0.730682,0.222763,0.514567,0.844028,0.591591,0.574777,0.150193,0.231362,0.100324,0.954794,0.0103866,0.441454,0.733887,0.0822681,0.504871,0.671396,0.400112,0.702592,0.452236,0.351207,0.044949,0.375876,0.916282,0.936792,0.948448,0.932031,0.18441,0.924132,0.730734,0.686351,0.829591,0.391193,0.0296465,0.532351,0.925374,0.871647,0.161788,0.402043,0.622827,0.611964,0.0980047,0.218274,0.571925,0.20297,0.877184,0.347038,0.433668,0.77219,0.975295,0.0657471,0.983214,0.0349138,0.11236,0.0647509,0.45856,0.781024,0.846227,0.18867,0.646787,0.450943,0.578057,0.920695,0.0573688,0.351583,0.135303,0.416616,0.302647,0.477351,0.646512,0.0152928,0.632991,0.202149,0.415745,0.575628,0.680573,0.433513,0.897827,0.536068,0.695399,0.310216,0.629482,0.848881,0.760565,0.990821,0.683256,0.0578088,0.748296,0.198118,0.747626,0.883197,0.129794,0.613124,0.335878,0.631499,0.478278,0.219645,0.187905,0.479737,0.0623549,0.335196,0.639287,0.917512,0.0134215,0.904285,0.654762,0.0612723,0.179673,0.14525,0.915882,0.57918,0.894778,0.227584,0.719427,0.827712,0.439218,0.994851,0.502266,0.736906,0.0278084,0.621452,0.872113,0.0790427,0.232827,0.325571,0.228626,0.50204,0.185031,0.837875,0.387674,0.0524285,0.487808,0.21361,0.692142,0.563416,0.483777,0.448251,0.456421,0.786532,0.358174,0.90039,0.404437,0.242349,0.879389,0.345788,0.878416,0.541138,0.0194901,0.0153635,0.00897217,0.0725128,0.20448,0.117053,0.522653,0.483891,0.231188,0.576456,0.542411,0.610251,0.452097,0.789623,0.330492,0.289911,0.857697,0.760428,0.869646,0.0931603,0.533706,0.0450169,0.85077,0.459122,0.0618408,0.933928,0.950933,0.924201,0.703024,0.914279,0.495625,0.781814,0.939487,0.855039,0.0742275,0.902186,0.960885,0.342128,0.105013,0.669661,0.798149,0.159108,0.0609142,0.16192,0.0891752,0.407042,0.544129,0.848351,0.744051,0.82656,0.865764,0.927365,0.810725,0.552763,0.694772,0.167106,0.0179186,0.771352,0.114813,0.464269,0.108472,0.895024,0.807922,0.0128106,0.753148,0.716226,0.76573,0.900245,0.295073,0.925057,0.909421,0.287682,0.350924,0.00410229,0.951247,0.247896,0.92786,0.0985611,0.538992,0.047214,0.91241,0.693427,0.854783,0.559942,0.706547,0.35304,0.607165,0.244385,0.170368,0.171681,0.960277,0.101434,0.96905,0.929138,0.254179,0.372078,0.22034,0.863546,0.987725,0.144017,0.021103,0.777665,0.0941499,0.223503,0.280623,0.598673,0.633666,0.493284,0.829845,0.807468,0.0436702,0.294441,0.790117,0.891476,0.657072,0.772552,0.520258,0.804561,0.213348,0.109921,0.304968,0.903718,0.844265,0.981275,0.136931,0.289479,0.772455,0.169193,0.834275,0.00464082,0.441534,0.761583,0.910171,0.908347,0.518478,0.563198,0.315284,0.19942,0.252538,0.89475,0.346593,0.900612,0.0966623,0.450302,0.840199,0.9084,0.985819,0.364012,0.562281,0.3924,0.0877044,0.981519,0.164137,0.819584,0.0270278,0.108976,0.990736,0.754082,0.962771,0.681581,0.979634,0.632645,0.294422,0.482379,0.729134,0.580682,0.18343,0.898688,0.969262,0.17834,0.968675,0.329818,0.600676,0.0576037,0.65674,0.258695,0.894204,0.977488,0.190572,0.714973,0.913638,0.863838,0.831793,0.676838,0.976886,0.87701,0.37291,0.179529,0.0134152,0.354681,0.00956571,0.0223516,0.278375,0.625678,0.301091,0.497316,0.425627,0.348538,0.548172,0.113558,0.100593,0.671059,0.322488,0.936594,0.555905,0.577603,0.536592,0.157609,0.515359,0.905777,0.350404,0.799385,0.409098,0.0469954,0.402814,0.705503,0.447965,0.868213,0.695981,0.324922,0.335878,0.934087,0.877868,0.215576,0.504352,0.391141,0.756047,0.511141,0.767108,0.735187,0.278952,0.442547,0.92263,0.515662,0.716926,0.541766,0.192994,0.551363,0.370512,0.0975383,0.968847,0.139615,0.221593,0.673368,0.995288,0.960034,0.995087,0.569107,0.557765,0.924913,0.216664,0.882063,0.877045,0.9461,0.494836,0.206778,0.079724,0.327443,0.789388,0.373879,0.469643,0.0124323,0.246607,0.131164,0.734282,0.612037,0.122437,0.316966,0.215855,0.887093,0.433514,0.742607,0.512325,0.942586,0.57368,0.503387,0.772154,0.0913055,0.874722,0.327543,0.774056,0.0235397,0.186736,0.191547,0.0593291,0.0624474,0.307724,0.74604,0.0656061,0.594647,0.710011,0.766631,0.219916,0.21689,0.891296,0.773739,0.678611,0.0597872,0.27354,0.691324,0.523174,0.26267,0.191274,0.614172,0.707679,0.46833,0.849787,0.715653,0.173396,0.96757,0.246097,0.753593,0.916852,0.328996,0.519863,0.685614,0.257377,0.384195,0.53573,0.318681,0.674603,0.283824,0.971214,0.313953,0.933147,0.298516,0.0511542,0.194813,0.949332,0.527072,0.120707,0.212439,0.869426,0.474124,0.291037,0.367506,0.0655066,0.433487,0.214732,0.872456,0.262574,0.117496,0.475622,0.797944,0.182454,0.106754,0.00126898,0.460719,0.496539,0.239377,0.67248,0.532459,0.47803,0.915419,0.809073,0.8384,0.653632,0.649237,0.597948,0.55916,0.190792,0.192945,0.181024,0.678768,0.147766,0.109247,0.791345,0.264743,0.60982,0.503315,0.0592439,0.0979768,0.895607,0.679283,0.711314,0.214048,0.355333,0.0641468,0.609838,0.864545,0.417115,0.413599,0.134119,0.265188,0.283008,0.62563,0.278073,0.347269,0.18829,0.254743,0.991465,0.863708,0.309149,0.947775,0.354266,0.660128,0.161079,0.5235,0.945738,0.743724,0.804681,0.885086,0.543888,0.274567,0.287017,0.78912,0.700136,0.834008,0.894897,0.259928,0.100472,0.0542858,0.005081,0.297651,0.481641,0.801233,0.895274,0.54426,0.227753,0.508227,0.931635,0.75554,0.346302,0.808522,0.513613,0.116141,0.310406,0.743896,0.0566213,0.137481,0.0334671,0.607764,0.23528,0.0558274,0.54754,0.552581,0.342251,0.279703,0.187195,0.253893,0.496355,0.291564,0.365107,0.107536,0.732393,0.945125,0.881854,0.88658,0.832431,0.848736,0.616175,0.735295,0.927401,0.687864,0.912177,0.943049,0.731462,0.04968,0.679288,0.130629,0.191994,0.664552,0.182157,0.533994,0.868998,0.939892,0.719504,0.182793,0.103845,0.476547,0.486328,0.833885,0.379581,0.864445,0.766761,0.880952,0.512945,0.436624,0.703998,0.766335,0.270693,0.553031,0.0441527,0.790125,0.0763932,0.365325,0.965033,0.863489,0.501684,0.294629,0.9251,0.372692,0.361972,0.347206,0.592623,0.551622,0.187371,0.0700209,0.0654375,0.616651,0.473455,0.908189,0.551546,0.494293,0.965465,0.750136,0.64401,0.289411,0.279907,0.466341,0.660353,0.368052,0.202431,0.0836281,0.441413,0.970583,0.605156,0.635832,0.0925473,0.782743,0.387657,0.748957,0.312298,0.395661,0.267602,0.18402,0.193856,0.566073,0.647736,0.737464,0.616831,0.753385,0.623984,0.93733,0.629061,0.604478,0.323862,0.208804,0.118098,0.32259,0.417682,0.84206,0.837119,0.694298,0.346393,0.850171,0.874195,0.287242,0.0348007,0.500524,0.799367,0.847568,0.504864,0.682343,0.42648,0.844948,0.986151,0.0698278,0.782657,0.471,0.313646,0.532073,0.424147,0.743384,0.469605,0.250006,0.916022,0.84419,0.619321,0.998952,0.492492,0.837268,0.719294,0.516573,0.0197713,0.813809,0.600366,0.774182,0.57202,0.889283,0.926388,0.382018,0.67534,0.136124,0.924945,0.0045079,0.789919,0.151377,0.631618,0.63678,0.88771,0.340957,0.783721,0.207375,0.326145,0.791737,0.0852222,0.141123,0.533612,0.0334669,0.206286,0.252575,0.702915,0.910354,0.505009,0.496122,0.0623316,0.767656,0.871571,0.238952,0.653777,0.874893,0.156762,0.0936797,0.468585,0.445085,0.00173056,0.134756,0.34989,|0.023885,0.566589,0.889685,0.725296,0.549482,0.839937,0.409883,0.941807,0.052225,0.488927,0.889158,0.495775,0.959945,0.72378,0.413796,0.0870128,0.452279,0.0121985,0.85129,0.461492,0.452736,0.0275202,0.303203,0.322812,0.679371,0.0933353,0.151249,0.121257,0.774783,0.897313,0.143077,0.140527,0.965653,0.201507,0.64812,0.57533,0.0319623,0.822251,0.826706,0.105088,0.432424,0.366745,0.626136,0.0784497,0.866636,0.0364147,0.22657,0.144672,0.18174,0.362068,0.139053,0.0528127,0.82088,0.362664,0.7164,0.679868,0.887903,0.979325,0.896664,0.267145,0.507547,0.293444,0.118359,0.389251,0.0244563,0.983672,0.963265,0.413856,0.117215,0.191204,0.125004,0.153283,0.157261,0.394306,0.345508,0.354841,0.721712,0.0299132,0.441015,0.654224,0.00976962,0.732791,0.84771,0.780944,0.968193,0.417239,0.546413,0.863026,0.216569,0.11937,0.11059,0.411499,0.74852,0.416437,0.561951,0.272797,0.306318,0.102439,0.574782,0.93392,0.928208,0.360278,0.681357,0.433316,0.15915,0.177241,0.205909,0.235827,0.638465,0.872523,0.60535,0.675992,0.851737,0.135407,0.0133737,0.546819,0.4547,0.70069,0.0192373,0.830956,0.380433,0.21461,0.375792,0.533345,0.922986,0.847008,0.836822,0.470181,0.380013,0.531516,0.690747,0.0375471,0.993682,0.65761,0.131749,0.828505,0.799492,0.037223,0.487114,0.915309,0.219537,0.0453982,0.956134,0.197292,0.993179,0.436035,0.684214,0.757684,0.0233654,0.25898,0.610408,0.856272,0.909353,0.498002,0.266049,0.244928,0.530156,0.814497,0.465952,0.159548,0.150284,0.780285,0.734268,0.61683,0.955158,0.919961,0.377019,0.291693,0.79976,0.717723,0.811477,0.660173,0.322992,0.727343,0.439382,0.062116,0.106246,0.517265,0.0673014,0.897009,0.778324,0.328021,0.609003,0.211856,0.35807,0.299055,0.929729,0.0327569,0.842317,0.852642,0.316947,0.666004,0.5305,0.932763,0.520641,0.129211,0.962317,0.865144,0.15897,0.875888,0.788973,0.921241,0.249895,0.042565,0.466482,0.849106,0.480028,0.482358,0.719776,0.999576,0.552886,0.274875,0.567099,0.969872,0.556335,0.0907612,0.0268722,0.674123,0.102049,0.298763,0.321665,0.240915,0.179341,0.540912,0.773403,0.962228,0.939702,0.336648,0.538438,0.520566,0.465906,0.833229,0.588649,0.440513,0.212901,0.333316,0.303011,0.916171,0.176005,0.12378,0.675858,0.553305,0.537033,0.234249,0.202979,0.65293,0.260896,0.866377,0.235558,0.150171,0.093841,0.794425,0.132694,0.69545,0.878746,0.675012,0.119801,0.2755,0.972033,0.0582691,0.545111,0.0988823,0.136314,0.482725,0.297557,0.272437,0.444779,0.915271,0.663524,0.801259,0.979554,0.505327,0.51977,0.880547,0.0749379,0.115957,0.822751,0.927054,0.926282,0.385204,0.101061,0.458512,0.506025,0.524049,0.738161,0.214082,0.0313848,0.932384,0.0314157,0.219423,0.188832,0.346547,0.808091,0.390685,0.210151,0.292428,0.82968,0.261968,0.848622,0.978659,0.500544,0.803581,0.162766,0.512141,0.345419,0.48745,0.952636,0.814463,0.223612,0.221743,0.53853,0.615072,0.997533,0.108148,0.950453,0.537771,0.268524,0.162453,0.491403,0.808788,0.480987,0.804698,0.832863,0.0324135,0.0300387,0.282575,0.40584,0.849345,0.434401,0.900906,0.488564,0.573736,0.351046,0.670292,0.340852,0.488054,0.730858,0.876117,0.361551,0.0877901,0.655001,0.860549,0.155849,0.528077,0.495765,0.653907,0.426382,0.904926,0.397254,0.975978,0.946781,0.839618,0.617546,0.54356,0.295786,0.834148,0.989312,0.233353,0.793144,0.491028,0.915415,0.797064,0.855152,0.248449,0.0788881,0.851062,0.0255458,0.522261,0.894313,0.633717,0.114418,0.772209,0.403091,0.80961,0.309149,0.840551,0.716378,0.67115,0.826234,0.44106,0.522615,0.766568,0.0475417,0.555506,0.80312,0.0053401,0.632734,0.266572,0.896698,0.840813,0.680896,0.221288,0.131934,0.00452584,0.302499,0.90404,0.549308,0.120683,0.624784,0.614593,0.607783,0.762249,0.262413,0.127376,0.454717,0.975777,0.267522,0.738399,0.121642,0.697023,0.419188,0.761362,0.264668,0.865471,0.846153,0.323277,0.231293,0.448518,0.455414,0.169426,0.147821,0.646323,0.990793,0.871187,0.230989,0.436395,0.854489,0.863212,0.219547,0.0439474,0.732635,0.00225198,0.368219,0.134374,0.657139,0.0875965,0.364682,0.575175,0.35967,0.471031,0.637119,0.463492,0.838138,0.350747,0.365189,0.623378,0.649369,0.296422,0.20087,0.612074,0.370708,0.603362,0.0201573,0.301043,0.537903,0.907498,0.312896,0.415353,0.704795,0.103515,0.649042,0.316891,0.985292,0.786411,0.729305,0.45531,0.589304,0.736176,0.123144,0.884052,0.0352619,0.20475,0.38573,0.154047,0.370005,0.679723,0.881404,0.883979,0.716476,0.636791,0.708276,0.566969,0.20978,0.646557,0.932257,0.371722,0.069548,0.42904,0.28601,0.797008,0.123414,0.744196,0.971467,0.966008,0.572599,0.671013,0.684159,0.247923,0.0304796,0.824003,0.38246,0.829363,0.601943,0.0795111,0.852446,0.297523,0.358717,0.59322,0.736678,0.693252,0.366448,0.0831565,0.836216,0.0527119,0.576632,0.493031,0.747403,0.124257,0.813304,0.550493,0.113536,0.960054,0.260711,0.691492,0.682134,0.242754,0.582222,0.41603,0.535354,0.332546,0.707847,0.867258,0.0809294,0.677498,0.78529,0.837758,0.804172,0.240758,0.456049,0.00167823,0.282313,0.647588,0.0199036,0.243502,0.465832,0.496782,0.45657,0.394567,0.843894,0.899279,0.358226,0.456685,0.273153,0.192903,0.477561,0.148575,0.112391,0.0975139,0.424602,0.651937,0.589754,0.572119,0.912698,0.0486646,0.114873,0.165431,0.992413,0.158037,0.964954,0.676519,0.57384,0.669309,0.873542,0.598554,0.725227,0.490032,0.680698,0.500502,0.917759,0.833167,0.879046,0.506016,0.379735,0.68529,0.626292,0.652914,0.257812,0.618873,0.357619,0.455584,0.998127,0.982306,0.964953,0.508098,0.173334,0.326223,0.552422,0.870632,0.263563,0.534846,0.587008,0.167804,0.513097,0.215326,0.97401,0.860547,0.539296,0.761803,0.324303,0.0892206,0.68663,0.996743,0.00225884,0.343511,0.886809,0.699954,0.992424,0.466723,0.199367,0.838631,0.801539,0.147538,0.864636,0.13827,0.875914,0.3129,0.905838,0.994744,0.206482,0.902323,0.0553507,0.319781,0.0587146,0.257402,0.000707686,0.539949,0.0454909,0.74293,0.250533,0.987479,0.62341,0.532216,0.251028,0.0773255,0.86535,0.397426,0.441805,0.859166,0.526188,0.0453599,0.629536,0.172251,0.647855,0.337493,0.710849,0.108839,0.996756,0.513718,0.0650972,0.888168,0.211093,0.969927,0.451556,0.418112,0.806185,0.628424,0.0602624,0.713921,0.0125947,0.112041,0.985398,0.772887,0.0480802,0.629204,0.860624,0.344346,0.317943,0.463592,0.812223,0.947617,0.316237,0.436738,0.630497,0.924603,0.856889,0.0307995,0.16856,0.92158,0.720188,0.721914,0.133478,0.466071,0.174867,0.89951,0.0180193,0.208919,0.7192,0.0533149,0.110342,0.101279,0.467636,0.602544,0.084897,0.805241,0.944249,0.363389,0.148635,0.0697492,0.69438,0.215081,0.249719,0.401658,0.228536,0.837955,0.0655258,0.0217103,0.462701,0.240497,0.658212,0.339714,0.385742,0.801022,0.865088,0.866593,0.647527,0.857104,0.812414,0.555406,0.753663,0.773896,0.842435,0.596783,0.0955935,0.536991,0.579839,0.102092,0.295643,0.24271,0.651948,0.670055,0.586086,0.951972,0.156179,0.327386,0.0839921,0.365699,0.0598198,0.153488,0.08947,0.0244132,0.00441122,0.784981,0.84748,0.361875,0.876528,0.88532,0.665266,0.276268,0.264757,0.198099,0.6782,0.972348,0.552176,0.491362,0.0913503,0.597313,0.933562,0.620399,0.193516,0.0528716,0.852245,0.936316,0.198075,0.559846,0.904075,0.986538,0.690989,0.231374,0.386922,0.636054,0.726993,0.0719862,0.996668,0.0739977,0.710493,0.897664,0.579596,0.641103,0.942141,0.567918,0.223237,0.504937,0.0285749,0.34204,0.715336,0.0184386,0.692298,0.297879,0.781177,0.121127,0.00618732,0.0174229,0.299936,0.962154,0.540386,0.511451,0.93136,0.398762,0.597049,0.575625,0.815261,0.812424,0.891734,0.951767,0.0500291,0.925643,0.614893,0.1758,0.720713,0.460947,0.593536,0.603536,0.609532,0.84151,0.734915,0.575582,0.614044,0.497316,0.389048,0.095251,0.615079,0.40829,0.000727415,0.243803,0.604287,0.636312,0.1236,0.427142,0.907682,0.420257,0.340211,0.937648,0.696912,0.383708,0.892844,0.342768,0.134423,0.890815,0.0726923,0.440608,0.495576,0.379051,0.26228,0.0220774,0.817016,0.681531,0.653363,0.227692,0.46597,0.310774,0.798617,0.158865,0.270427,0.217533,0.85551,0.0562633,0.877237,0.733771,0.891934,0.0830057,0.868463,0.358995,0.832474,0.931639,0.304786,0.560841,0.105051,0.71029,0.443185,0.264905,0.983841,0.526658,0.15016,0.932355,0.313214,0.119829,0.513856,0.192513,0.235568,0.748083,0.716266,0.0307664,0.614889,0.932465,0.33131,0.541279,0.658394,0.0839457,0.349221,0.127646,0.512175,0.786609,0.766081,0.678134,0.693142,0.930681,0.229556,0.0945557,0.339732,0.105012,0.755853,0.923465,0.881762,0.623913,0.697369,0.543944,0.0447364,0.0617986,0.635985,0.68964,0.997872,0.544967,0.845316,0.172949,0.360579,0.400101,0.433459,0.567386,0.452168,0.539284,0.661823,0.282617,0.601659,0.116863,0.103059,0.644878,0.988664,0.435928,0.0148237,0.498234,0.235937,0.157911,0.982754,0.28218,0.42135,0.801649,0.0731093,0.520456,0.236661,0.299181,0.828283,0.139706,0.664446,0.5027,0.512459,0.743581,0.15694,0.521186,0.300485,0.984146,0.686262,0.417979,0.276059,0.240062,0.0466244,0.307576,0.597632,0.938944,0.735401,0.0893295,0.0741999,0.191139,0.937277,0.589467,0.581189,0.192073,0.410399,0.715998,0.0437621,0.607497,0.735598,0.98169,0.997332,0.621285,0.0992932,0.55727,0.713254,0.232407,0.289706,0.785843,0.532815,0.0294692,0.641568,0.960492,0.948122,0.873513,0.958843,0.199642,0.877703,0.756361,|0.0866327,0.267095,0.0569805,0.120329,0.897251,0.994067,0.518857,0.248778,0.0526069,0.345414,0.672915,0.780101,0.742564,0.0134044,0.872358,0.831162,0.896318,0.914847,0.783079,0.461096,0.8185,0.373049,0.741844,0.276279,0.906491,0.622877,0.574703,0.761361,0.125893,0.583912,0.899364,0.690255,0.587115,0.572137,0.346475,0.535446,0.109216,0.379968,0.42975,0.977921,0.737518,0.25993,0.33894,0.422993,0.5106,0.75275,0.673182,0.0045259,0.191408,0.37003,0.765889,0.857459,0.123063,0.488495,0.623035,0.738997,0.243822,0.897521,0.544577,0.804128,0.582155,0.516522,0.348016,0.250757,0.434689,0.874087,0.0281927,0.0600709,0.476927,0.686389,0.43541,0.205525,0.855124,0.276243,0.190091,0.087468,0.733315,0.115077,0.589886,0.135859,0.383826,0.384571,0.7404,0.0611295,0.876562,0.680536,0.845247,0.909071,0.370288,0.486227,0.433287,0.592769,0.785886,0.419641,0.559048,0.236035,0.547856,0.56915,0.021373,0.539666,0.0624285,0.61769,0.783339,0.778393,0.769708,0.992934,0.208824,0.550382,0.575946,0.214524,0.905185,0.64577,0.401411,0.348733,0.856614,0.533278,0.505657,0.251417,0.864135,0.18929,0.655762,0.847522,0.220613,0.743893,0.0982189,0.347976,0.663938,0.19117,0.0664339,0.296035,0.790833,0.630703,0.880519,0.592608,0.348579,0.893711,0.880359,0.0439742,0.969604,0.470298,0.742897,0.943685,0.529739,0.14062,0.628398,0.502617,0.355939,0.841899,0.675821,0.646881,0.821069,0.00339818,0.703605,0.5549,0.368989,0.670923,0.950953,0.302868,0.586254,0.635453,0.0940864,0.843418,0.878053,0.963902,0.00365931,0.0892164,0.800761,0.799643,0.221784,0.308089,0.379236,0.285821,0.470855,0.611725,0.625062,0.933042,0.679952,0.301298,0.131259,0.79441,0.77687,0.183666,0.726945,0.427741,0.995251,0.940105,0.061163,0.56921,0.832022,0.886142,0.20279,0.854454,0.88541,0.867676,0.391701,0.250503,0.196909,0.216928,0.921733,0.168016,0.660035,0.462483,0.0962434,0.778449,0.959489,0.865178,0.296151,0.688308,0.179478,0.471258,0.253058,0.624607,0.577809,0.657392,0.74146,0.967878,0.549665,0.516759,0.377568,0.774604,0.222746,0.189911,0.442398,0.238746,0.562668,0.857922,0.604648,0.151806,0.968614,0.172991,0.63323,0.644166,0.830844,0.785149,0.478386,0.0906236,0.033688,0.0729773,0.220292,0.792812,0.0801174,0.411906,0.659618,0.824198,0.348613,0.850962,0.323534,0.0131852,0.823011,0.950257,0.41791,0.248367,0.0716978,0.0739894,0.423219,0.73309,0.411672,0.308426,0.691732,0.0667073,0.051751,0.217552,0.0457104,0.780048,0.817505,0.648933,0.241291,0.634017,0.341393,0.19046,0.587906,0.7526,0.851603,0.887091,0.58618,0.571955,0.325743,0.244675,0.664009,0.881603,0.36129,0.90604,0.80251,0.0994055,0.352785,0.139635,0.209928,0.802326,0.987241,0.878109,0.775168,0.370958,0.146607,0.0704957,0.861625,0.238506,0.953227,0.0858021,0.22187,0.616414,0.89687,0.115147,0.112559,0.755252,0.20741,0.193714,0.785911,0.0698882,0.102572,0.451899,0.950783,0.335467,0.369629,0.79879,0.0365608,0.840298,0.183091,0.330392,0.505855,0.58927,0.667428,0.668798,0.424096,0.971606,0.381632,0.785061,0.312885,0.309316,0.388269,0.0726838,0.036946,0.909114,0.586204,0.323719,0.602807,0.644607,0.976142,0.104074,0.659775,0.380369,0.185735,0.673917,0.956533,0.422521,0.0861306,0.955613,0.650473,0.776298,0.0310985,0.0651389,0.52155,0.126334,0.2477,0.856872,0.542743,0.297122,0.26266,0.49063,0.531778,0.0816469,0.764698,0.435954,0.419734,0.822501,0.230254,0.775126,0.0829573,0.177883,0.356468,0.488336,0.156908,0.399691,0.0680379,0.377929,0.919652,0.938559,0.314743,0.164059,0.210702,0.0736387,0.9977,0.648615,0.142802,0.632661,0.230502,0.352722,0.852057,0.332898,0.675993,0.896485,0.571291,0.647834,0.988067,0.858616,0.648238,0.378176,0.0979102,0.430558,0.709344,0.127705,0.732365,0.12922,0.283034,0.682448,0.420218,0.127776,0.937492,0.346764,0.935934,0.0803799,0.648637,0.0942745,0.0522642,0.936498,0.422474,0.265851,0.442205,0.7537,0.283112,0.0152776,0.862119,0.884656,0.190336,0.788752,0.674989,0.553494,0.496388,0.838334,0.155128,0.937657,0.888846,0.207789,0.44814,0.928287,0.763485,0.460889,0.180075,0.871421,0.450017,0.634268,0.352212,0.0491365,0.862601,0.926365,0.0802019,0.293009,0.546655,0.894642,0.680304,0.425841,0.700512,0.522946,0.686397,0.769857,0.130572,0.898458,0.779154,0.88242,0.632669,0.446702,0.295949,0.12438,0.553174,0.288948,0.0343968,0.994305,0.615583,0.0426062,0.942255,0.627363,0.119983,0.21749,0.823458,0.567976,0.953187,0.282277,0.415651,0.230642,0.259701,0.217158,0.87265,0.230877,0.854586,0.430999,0.301628,0.5927,0.30559,0.837906,0.0391654,0.202455,0.43535,0.325384,0.233537,0.440936,0.453112,0.917699,0.0518471,0.325675,0.767167,0.982172,0.0350958,0.751959,0.809129,0.588818,0.387901,0.979059,0.609189,0.0178959,0.98723,0.701092,0.84248,0.827103,0.0974398,0.222994,0.40564,0.669996,0.704152,0.791634,0.597887,0.286808,0.226758,0.209519,0.687228,0.64615,0.361506,0.422931,0.654861,0.67557,0.866431,0.269755,0.642737,0.447391,0.674669,0.817927,0.581068,0.38265,0.0454783,0.58166,0.446156,0.881465,0.632681,0.436163,0.178174,0.402498,0.261773,0.225495,0.296737,0.0436979,0.203312,0.377501,0.169314,0.420962,0.671514,0.751268,0.0809153,0.461536,0.862812,0.739197,0.629575,0.0261717,0.564731,0.0082491,0.99495,0.309069,0.0285568,0.924715,0.268427,0.605081,0.189158,0.835089,0.544061,0.175684,0.878397,0.28349,0.074524,0.982838,0.928382,0.207565,0.818314,0.744259,0.806381,0.841017,0.0384299,0.567242,0.602784,0.287197,0.445635,0.548244,0.00510567,0.534981,0.338849,0.129178,0.247466,0.398856,0.484843,0.311841,0.904419,0.751879,0.301156,0.0487267,0.0461697,0.322099,0.170715,0.542817,0.470492,0.903287,0.841003,0.898925,0.86376,0.548685,0.962151,0.909686,0.359185,0.657659,0.395757,0.79359,0.290955,0.678467,0.369852,0.926888,0.442423,0.395824,0.523243,0.310189,0.905906,0.279783,0.960114,0.210211,0.289854,0.0349202,0.603482,0.299871,0.120966,0.526364,0.87838,0.757027,0.192675,0.640073,0.110411,0.966076,0.455976,0.236357,0.364696,0.632279,0.374263,0.506987,0.305368,0.250326,0.627884,0.180593,0.163477,0.573168,0.738336,0.0485278,0.113579,0.965271,0.338094,0.307045,0.314305,0.526758,0.863129,0.266961,0.119027,0.977651,0.505196,0.298312,0.359354,0.781912,0.50932,0.0598178,0.749441,0.245675,0.48595,0.972763,0.0573323,0.200757,0.0961396,0.637602,0.761427,0.690298,0.566044,0.870185,0.425633,0.285661,0.71754,0.599725,0.180484,0.0260867,0.745784,0.0372805,0.101456,0.630548,0.311836,0.462195,0.787395,0.0483013,0.78841,0.0447897,0.803878,0.46107,0.469874,0.794582,0.271766,0.38356,0.719508,0.916521,0.235975,0.193436,0.137455,0.909184,0.722396,0.718645,0.333006,0.884496,0.212323,0.955698,0.557931,0.124916,0.181001,0.171081,0.838441,0.600088,0.252064,0.0970352,0.57657,0.963707,0.324976,0.701572,0.264991,0.572019,0.743934,0.0417012,0.984858,0.783019,0.244824,0.386237,0.335554,0.868569,0.320821,0.796911,0.951877,0.735331,0.132554,0.999276,0.690619,0.134623,0.159079,0.311448,0.914892,0.46459,0.319202,0.685582,0.0290135,0.107764,0.17078,0.449616,0.181096,0.689319,0.307853,0.248803,0.544526,0.660387,0.742795,0.712619,0.142902,0.0684913,0.244204,0.786532,0.638498,0.584564,0.0271776,0.0430076,0.746543,0.350956,0.48986,0.754596,0.36411,0.79704,0.0654732,0.567415,0.581111,0.561963,0.0273212,0.347471,0.414009,0.333824,0.913546,0.704855,0.226422,0.423217,0.743283,0.251547,0.333754,0.654636,0.982737,0.887497,0.284964,0.545276,0.327514,0.351206,0.820686,0.389311,0.858247,0.890042,0.0970097,0.580334,0.646013,0.459854,0.366837,0.325744,0.125355,0.00572646,0.134365,0.444495,0.574084,0.414566,0.460359,0.487228,0.791373,0.589492,0.0502638,0.0181032,0.288496,0.975007,0.92393,0.185312,0.214873,0.0438338,0.597949,0.571459,0.7422,0.526272,0.76266,0.599075,0.176859,0.03881,0.67913,0.164876,0.327547,0.992588,0.959278,0.329759,0.868603,0.504697,0.548389,0.0863593,0.278016,0.528938,0.213164,0.598504,0.833131,0.181342,0.725861,0.785597,0.0347154,0.690962,0.675251,0.563757,0.935382,0.927674,0.638296,0.995218,0.0366307,0.174811,0.0549217,0.388932,0.415369,0.0196048,0.785089,0.0160687,0.913812,0.84139,0.0506763,0.102963,0.153973,0.445964,0.757691,0.534722,0.406854,0.289379,0.996144,0.798915,0.972835,0.202346,0.490777,0.744454,0.556394,0.764333,0.765899,0.422888,0.00228477,0.359943,0.326613,0.201986,0.683778,0.0318418,0.865636,0.823026,0.623911,0.164863,0.328777,0.237693,0.281127,0.770407,0.417439,0.0829504,0.478697,0.644914,0.939932,0.3952,0.642693,0.576312,0.901303,0.720996,0.140055,0.22815,0.750076,0.0842428,0.394358,0.931497,0.994126,0.483291,0.0669197,0.214158,0.399226,0.937545,0.71851,0.929638,0.340117,0.666003,0.268133,0.897585,0.0228169,0.160453,0.835837,0.77242,0.711009,0.577871,0.0541542,0.20762,0.790473,0.0317109,0.523515,0.25736,0.398413,0.264459,0.650706,0.688003,0.460872,0.170654,0.283517,0.132381,0.498572,0.48948,0.114967,0.262285,0.0789205,0.366977,0.580692,0.221821,0.0244548,0.585889,0.117941,0.960574,0.28356,0.930793,0.765531,0.636524,0.586132,0.273893,0.932125,0.478926,0.170501,0.567726,0.278917,0.00852901,0.491217,0.102017,0.501885,0.494854,0.504768,0.348773,0.288827,0.33929,0.267695,0.213672,0.283586,0.201591,0.178808,0.727839,0.258661,0.70729,0.4143,0.431242,0.0330409,0.115065,0.481095,0.798132,0.754416,0.027178,|0.956864,0.866246,0.573468,0.839474,0.969018,0.957431,0.993544,0.467838,0.649724,0.271234,0.738801,0.384049,0.336779,0.300032,0.361627,0.0547432,0.0901316,0.169458,0.151318,0.197265,0.976105,0.679274,0.330118,0.758791,0.501301,0.326304,0.95104,0.628601,0.226658,0.673878,0.387206,0.963933,0.480635,0.238316,0.108235,0.808802,0.460981,0.13546,0.026503,0.900937,0.779118,0.456544,0.51859,0.416418,0.173999,0.354767,0.837464,0.154916,0.910588,0.0884557,0.346784,0.934036,0.368891,0.630545,0.393447,0.930059,0.0429406,0.81803,0.807233,0.185378,0.085937,0.798803,0.262181,0.896138,0.857469,0.379668,0.76333,0.646782,0.616668,0.0989144,0.994317,0.603129,0.240925,0.952329,0.183722,0.577806,0.611523,0.694789,0.0759983,0.90462,0.0945589,0.927504,0.223398,0.618516,0.555832,0.73577,0.813371,0.164373,0.721817,0.156347,0.481182,0.5778,0.432427,0.334988,0.104813,0.750004,0.855021,0.76295,0.328392,0.384541,0.0716477,0.00606799,0.0820227,0.893417,0.399722,0.479323,0.346284,0.154746,0.814945,0.742693,0.719503,0.313926,0.894066,0.0635688,0.39897,0.873336,0.569886,0.501028,0.669058,0.391306,0.594589,0.991918,0.227275,0.227857,0.778553,0.676376,0.828256,0.705111,0.813667,0.399565,0.485562,0.87313,0.121253,0.477064,0.945908,0.476732,0.118994,0.44125,0.416677,0.838146,0.545522,0.203621,0.702062,0.196184,0.594391,0.508425,0.822822,0.187105,0.799161,0.536205,0.620252,0.581808,0.341183,0.485543,0.447793,0.350231,0.285654,0.225772,0.630086,0.982324,0.819622,0.516867,0.0697254,0.118833,0.146884,0.381426,0.852065,0.584328,0.837878,0.516057,0.65536,0.931858,0.181957,0.437237,0.945911,0.803272,0.792967,0.357091,0.317786,0.712523,0.511055,0.0320778,0.910811,0.678512,0.598608,0.0684416,0.107338,0.0394821,0.881404,0.517703,0.0683646,0.819447,0.24396,0.311413,0.274706,0.777859,0.282844,0.957132,0.340617,0.645314,0.958071,0.067256,0.69587,0.726538,0.154836,0.253123,0.114538,0.919585,0.842363,0.197026,0.493264,0.357681,0.107116,0.622271,0.700258,0.28525,0.444561,0.286885,0.151555,0.35398,0.0485684,0.329864,0.211596,0.324464,0.00695795,0.495089,0.361741,0.707635,0.464308,0.461134,0.0409185,0.660622,0.548999,0.769444,0.326084,0.714848,0.0217578,0.572628,0.411882,0.923603,0.837522,0.145009,0.852737,0.103496,0.260255,0.590873,0.622769,0.715041,0.974741,0.656599,0.858307,0.886745,0.0884387,0.494948,0.00986326,0.41514,0.428392,0.345198,0.202545,0.942697,0.49648,0.277031,0.151416,0.5271,0.957468,0.0414747,0.937947,0.951612,0.359765,0.178979,0.382969,0.609981,0.365882,0.269043,0.271496,0.398172,0.939571,0.417291,0.50688,0.770959,0.738291,0.377221,0.232028,0.953233,0.646286,0.681292,0.255041,0.4241,0.331408,0.684293,0.509159,0.434941,0.974394,0.956976,0.119527,0.25876,0.111058,0.29157,0.0218718,0.809995,0.673114,0.261011,0.404419,0.87144,0.411439,0.954421,0.185759,0.897525,0.988115,0.236653,0.468815,0.281661,0.706059,0.22224,0.243641,0.847617,0.100574,0.266262,0.932921,0.630252,0.744073,0.959767,0.495604,0.475392,0.917841,0.0242201,0.969951,0.128302,0.0186989,0.227381,0.282469,0.112063,0.0865695,0.803471,0.376776,0.789764,0.693597,0.120115,0.655935,0.258218,0.735978,0.268205,0.162069,0.595413,0.952543,0.59396,0.417703,0.435749,0.505719,0.244496,0.0524608,0.935124,0.255267,0.166432,0.597863,0.117692,0.501075,0.483951,0.955486,0.896368,0.0304132,0.719085,0.115508,0.296095,0.0650769,0.214236,0.937619,0.506492,0.885281,0.0371702,0.634992,0.788015,0.0409661,0.820127,0.676804,0.916947,0.346404,0.566111,0.532793,0.893564,0.53426,0.5223,0.360385,0.285582,0.465981,0.370344,0.609241,0.986116,0.471937,0.588108,0.129914,0.127108,0.688918,0.632465,0.405974,0.700608,0.135092,0.729428,0.0413996,0.203488,0.495403,0.577808,0.192412,0.222359,0.585487,0.220479,0.96148,0.252957,0.919362,0.307894,0.222891,0.703696,0.326223,0.714248,0.17593,0.782235,0.939951,0.327944,0.588447,0.507888,0.685419,0.0966406,0.157542,0.0730078,0.15064,0.957404,0.687424,0.68461,0.534527,0.0421571,0.0306615,0.452329,0.572393,0.305181,0.443746,0.437917,0.138528,0.466381,0.882046,0.0664957,0.485072,0.78188,0.868792,0.77619,0.207918,0.956476,0.439439,0.731849,0.432671,0.318725,0.51851,0.10625,0.407988,0.569587,0.125277,0.492853,0.0122219,0.0897179,0.845562,0.241281,0.282931,0.987615,0.715728,0.508748,0.687827,0.420609,0.237484,0.27939,0.455555,0.801339,0.95035,0.0642507,0.614284,0.292959,0.869882,0.494659,0.857925,0.122844,0.607328,0.119553,0.0994186,0.51938,0.472087,0.362407,0.280934,0.716717,0.174195,0.0537995,0.724771,0.775373,0.527092,0.109209,0.668315,0.106188,0.0946656,0.194313,0.363731,0.955707,0.679573,0.549839,0.341332,0.0678284,0.124844,0.585719,0.763305,0.196309,0.645481,0.908083,0.246577,0.118445,0.565452,0.110777,0.701771,0.540112,0.322803,0.779959,0.110459,0.647479,0.0759585,0.228298,0.827887,0.9038,0.732266,0.443324,0.332008,0.38502,0.0329497,0.233238,0.762392,0.890167,0.231921,0.706902,0.900587,0.72618,0.585288,0.479894,0.965296,0.717988,0.813683,0.749357,0.62761,0.659464,0.575258,0.281144,0.365423,0.0553321,0.211062,0.588041,0.157419,0.371376,0.677826,0.148376,0.396332,0.250347,0.208395,0.804544,0.535681,0.429476,0.588059,0.897023,0.0560911,0.232738,0.730386,0.912002,0.117187,0.413458,0.999646,0.685589,0.450638,0.305633,0.988784,0.859329,0.320541,0.0455464,0.487862,0.178129,0.188769,0.631047,0.872398,0.282181,0.361045,0.55601,0.10605,0.919458,0.281687,0.241743,0.157636,0.447529,0.37879,0.0116545,0.995735,0.294162,0.106605,0.645575,0.879085,0.398647,0.00699073,0.612714,0.553515,0.359395,0.643352,0.193555,0.480383,0.29617,0.742844,0.428915,0.966694,0.189352,0.972143,0.702278,0.460182,0.992074,0.463001,0.518269,0.992018,0.124623,0.225773,0.945505,0.0861802,0.484941,0.616203,0.0276737,0.626062,0.179855,0.928571,0.928018,0.289035,0.633689,0.982845,0.746878,0.10407,0.335886,0.357328,0.958368,0.257839,0.8411,0.226755,0.967814,0.707715,0.00856245,0.5902,0.146142,0.959415,0.293628,0.565065,0.630219,0.579463,0.3103,0.117402,0.607493,0.470798,0.734398,0.104806,0.433983,0.295632,0.749743,0.195633,0.815259,0.412337,0.0180106,0.181869,0.652103,0.275747,0.0231306,0.690099,0.431437,0.77839,0.642431,0.248254,0.382796,0.876388,0.91236,0.699911,0.780892,0.995858,0.840842,0.223378,0.491474,0.851589,0.301008,0.25304,0.470534,0.250947,0.86719,0.189634,0.676775,0.812822,0.189085,0.514643,0.203356,0.935651,0.286831,0.498044,0.472952,0.893741,0.947259,0.683703,0.445967,0.831368,0.589434,0.68199,0.940592,0.0963947,0.654872,0.304967,0.0552931,0.587063,0.434868,0.237584,0.56933,0.298568,0.349521,0.138733,0.160381,0.757672,0.193391,0.846912,0.956536,0.661574,0.616064,0.346066,0.523439,0.932761,0.376608,0.885236,0.397924,0.266662,0.499266,0.895586,0.77285,0.824548,0.343024,0.329328,0.880383,0.148215,0.547122,0.909255,0.663069,0.407843,0.537556,0.126539,0.678865,0.698499,0.521634,0.0591887,0.270032,0.18316,0.382398,0.266313,0.317782,0.850005,0.622072,0.234075,0.329177,0.416184,0.78674,0.708648,0.797127,0.69799,0.0712774,0.556402,0.0712319,0.321988,0.148068,0.816183,0.972435,0.263102,0.10749,0.962098,0.0844824,0.832426,0.356705,0.223175,0.538284,0.19092,0.0950817,0.298518,0.467176,0.932566,0.889162,0.606711,0.619288,0.915106,0.0460411,0.973015,0.806785,0.277685,0.726176,0.348196,0.486134,0.727215,0.205124,0.924831,0.59534,0.580188,0.933488,0.0280887,0.329201,0.438204,0.441123,0.042703,0.450264,0.709121,0.879516,0.65632,0.625245,0.686126,0.880587,0.213172,0.551927,0.921586,0.577189,0.706614,0.276034,0.800787,0.942169,0.660104,0.164242,0.248763,0.614615,0.505961,0.0949387,0.62645,0.0977578,0.568288,0.947645,0.651381,0.14737,0.275784,0.396412,0.436595,0.196698,0.99185,0.985183,0.00639117,0.353002,0.888397,0.0681406,0.217121,0.490805,0.111324,0.72887,0.322839,0.7929,0.985972,0.740272,0.315605,0.142377,0.888572,0.778556,0.46356,0.988427,0.503081,0.733676,0.248624,0.629535,0.924274,0.111475,0.562367,0.418389,0.0566335,0.317477,0.730233,0.450141,0.448294,0.578802,0.801659,0.968575,0.910614,0.448742,0.808092,0.379696,0.0574741,0.815095,0.385945,0.647384,0.152835,0.39659,0.840583,0.724247,0.525979,0.841694,0.274556,0.895367,0.287873,0.316267,0.76333,0.521167,0.782011,0.571832,0.465828,0.868444,0.620105,0.585366,0.57926,0.695977,0.482392,0.428708,0.772169,0.940688,0.968965,0.495284,0.0477828,0.267087,0.163985,0.759436,0.390444,0.0194833,0.694928,0.718137,0.707408,0.60857,0.628538,0.563384,0.76027,0.402905,0.446826,0.449253,0.056468,0.149125,0.125084,0.0912517,0.879831,0.987695,0.769622,0.141835,0.0934491,0.294429,0.918969,0.815529,0.841026,0.251994,0.339832,0.776018,0.169896,0.0565634,0.83127,0.00207818,0.912313,0.41911,0.772335,0.0858684,0.0777826,0.491606,0.898422,0.720389,0.319689,0.486296,0.692438,0.614367,0.298963,0.981882,0.11437,0.938412,0.975038,0.768052,0.340938,0.160479,0.231373,0.556687,0.643336,0.774521,0.603105,0.648373,0.0769239,0.0143704,0.900635,0.993428,0.504819,0.0275695,0.151786,0.693378,0.432556,0.0761662,0.0819936,0.491414,0.493949,0.314306,0.647142,0.0949762,0.387627,0.99703,0.223677,0.886683,0.409941,0.836483,0.70926,0.572507,0.00429624,0.461596,0.582801,0.772372,0.147315,0.61535,0.54697,0.180472,0.634063,0.027009,0.0926183,0.347052,|0.205325,0.615325,0.157295,0.996906,0.622505,0.372461,0.0124913,0.777895,0.187008,0.142775,0.12277,0.866219,0.396057,0.89797,0.166027,0.0381618,0.352577,0.786161,0.446606,0.639443,0.11006,0.400169,0.702455,0.185283,0.285175,0.57002,0.108122,0.464896,0.324068,0.258314,0.561628,0.0583532,0.518921,0.854448,0.549584,0.965892,0.78459,0.889395,0.0168999,0.0564454,0.476565,0.647348,0.195426,0.744342,0.523641,0.114647,0.36254,0.401745,0.814013,0.116839,0.593467,0.00336003,0.0817546,0.654302,0.534361,0.18851,0.671371,0.524811,0.79857,0.374077,0.371303,0.985333,0.734763,0.448672,0.980291,0.10895,0.928243,0.274705,0.397592,0.879878,0.794802,0.533374,0.198758,0.285883,0.961371,0.0403751,0.26767,0.414185,0.0277077,0.465907,0.983278,0.821697,0.918238,0.105258,0.379253,0.981963,0.759542,0.972947,0.530048,0.38774,0.486835,0.814229,0.70422,0.860951,0.764906,0.526418,0.614412,0.119933,0.921449,0.86417,0.654573,0.272396,0.60626,0.292696,0.819069,0.204653,0.796949,0.389831,0.51812,0.248217,0.311879,0.173851,0.443672,0.156106,0.616872,0.992662,0.299638,0.0694541,0.978004,0.24747,0.38062,0.437102,0.0102794,0.515995,0.925032,0.523673,0.877473,0.780905,0.575276,0.786736,0.747838,0.20246,0.323609,0.294452,0.126773,0.632315,0.102272,0.332633,0.00584465,0.12652,0.212133,0.228945,0.21202,0.861532,0.675138,0.388277,0.508007,0.987655,0.189393,0.161892,0.887405,0.00503075,0.061058,0.807316,0.834723,0.0016377,0.299474,0.579208,0.942442,0.939699,0.66971,0.179033,0.690657,0.689519,0.688002,0.74985,0.664878,0.36491,0.867091,0.575659,0.548589,0.0277703,0.298995,0.841946,0.531528,0.744819,0.317848,0.574044,0.382189,0.994439,0.613894,0.55497,0.319806,0.217161,0.60127,0.353543,0.428018,0.800296,0.128744,0.127909,0.36499,0.166029,0.803702,0.286609,0.0902884,0.921376,0.0350484,0.0104384,0.098573,0.272398,0.76779,0.416714,0.31294,0.326907,0.234438,0.0526207,0.284001,0.820116,0.680069,0.278201,0.183846,0.371213,0.95218,0.695453,0.35592,0.660098,0.565092,0.301957,0.371561,0.142596,0.331936,0.479255,0.281718,0.0035755,0.219995,0.352184,0.36915,0.630082,0.983258,0.858443,0.35925,0.897195,0.171251,0.765035,0.527931,0.238295,0.94144,0.0479859,0.112546,0.531671,0.231394,0.122618,0.439758,0.606717,0.398656,0.634559,0.655814,0.314223,0.163945,0.0422002,0.12929,0.912353,0.428156,0.666693,0.446565,0.423613,0.501802,0.200724,0.557755,0.628407,0.919049,0.0705668,0.550942,0.193144,0.225465,0.0392901,0.602633,0.62773,0.516132,0.981331,0.163509,0.321163,0.56767,0.191171,0.984568,0.632346,0.535465,0.28859,0.119142,0.121505,0.927394,0.871618,0.765498,0.71163,0.870126,0.993497,0.0499998,0.278803,0.37477,0.293174,0.595715,0.433625,0.510282,0.950077,0.274611,0.73017,0.375267,0.755892,0.0829685,0.886026,0.371382,0.304291,0.278987,0.906709,0.570135,0.399469,0.651115,0.933464,0.540057,0.725261,0.954159,0.190573,0.0762478,0.525271,0.841189,0.94637,0.370706,0.767544,0.618095,0.125981,0.271305,0.0328867,0.433431,0.273449,0.128369,0.376482,0.169512,0.859777,0.557261,0.873419,0.643742,0.325381,0.912997,0.217658,0.852761,0.324123,0.575422,0.921374,0.609822,0.259627,0.866578,0.663668,0.900298,0.244593,0.578731,0.473747,0.258369,0.594962,0.497112,0.63864,0.406715,0.654562,0.696727,0.68486,0.664108,0.658407,0.556141,0.679559,0.529955,0.523428,0.0812364,0.606638,0.142601,0.321958,0.705946,0.951284,0.164312,0.325547,0.574177,0.149548,0.618183,0.726393,0.575724,0.357496,0.0880898,0.726605,0.829907,0.428792,0.961486,0.501105,0.669179,0.371616,0.300717,0.812281,0.928694,0.623586,0.893387,0.287786,0.439223,0.221885,0.254448,0.930335,0.113516,0.154588,0.0829627,0.274763,0.79975,0.481669,0.0146414,0.392193,0.972905,0.622374,0.750785,0.231217,0.523302,0.955342,0.922998,0.859645,0.34979,0.455561,0.457153,0.25895,0.877752,0.975792,0.0844037,0.391138,0.299248,0.174682,0.513834,0.938867,0.984212,0.634528,0.0222999,0.462879,0.63523,0.71678,0.0662518,0.370384,0.344835,0.674981,0.191231,0.990699,0.474122,0.718288,0.446298,0.967995,0.657884,0.636405,0.558721,0.0115696,0.188323,0.798197,0.165776,0.213875,0.610826,0.00936031,0.953021,0.284611,0.12398,0.0581004,0.351966,0.786515,0.341073,0.161603,0.322441,0.70007,0.756757,0.679379,0.562173,0.314043,0.920965,0.685946,0.25748,0.176056,0.497147,0.0113212,0.165823,0.586607,0.991194,0.700269,0.818408,0.6972,0.768979,0.895663,0.335094,0.221043,0.000597537,0.649267,0.971216,0.425423,0.186989,0.191251,0.441842,0.0152957,0.0649123,0.632658,0.0913463,0.853571,0.251965,0.145695,0.618419,0.513908,0.289361,0.479628,0.0555184,0.249603,0.20157,0.718962,0.706999,0.993129,0.593052,0.717358,0.128151,0.390965,0.00406563,0.977532,0.286821,0.803634,0.94931,0.212358,0.313053,0.320823,0.542097,0.566294,0.695734,0.984338,0.450077,0.542562,0.308733,0.85392,0.323075,0.963813,0.724016,0.202179,0.611845,0.350266,0.873958,0.807111,0.0102825,0.682778,0.524509,0.433672,0.920887,0.124573,0.489701,0.360939,0.134646,0.00275683,0.389742,0.803098,0.848132,0.550782,0.847185,0.789865,0.647353,0.39275,0.810474,0.59818,0.781979,0.904076,0.627942,0.433938,0.274194,0.76303,0.494595,0.439054,0.54119,0.924203,0.806298,0.53435,0.374841,0.388805,0.348378,0.760758,0.676392,0.5038,0.710952,0.33294,0.377594,0.626248,0.953227,0.482775,0.322998,0.718577,0.48407,0.35611,0.23328,0.640133,0.42955,0.405417,0.045038,0.043973,0.255045,0.613798,0.422477,0.335472,0.387632,0.769309,0.78741,0.548968,0.918119,0.993753,0.0217125,0.276154,0.870598,0.632048,0.722122,0.940255,0.640818,0.943194,0.578694,0.915716,0.628284,0.277596,0.597697,0.114095,0.267717,0.606455,0.968101,0.922878,0.322194,0.747968,0.360405,0.935834,0.853508,0.523519,0.455244,0.143047,0.01237,0.585619,0.33972,0.307658,0.799044,0.440277,0.923782,0.264185,0.00302088,0.00779349,0.704122,0.276754,0.775032,0.0570026,0.130543,0.487438,0.303276,0.630933,0.767395,0.748119,0.0183609,0.764963,0.625992,0.763762,0.892119,0.717444,0.443228,0.655772,0.348474,0.0388513,0.324393,0.76932,0.674585,0.252732,0.464464,0.201495,0.868076,0.827564,0.465402,0.389351,0.818325,0.080006,0.977662,0.624435,0.108069,0.509053,0.708264,0.252876,0.24921,0.965915,0.602189,0.37239,0.0427015,0.0352331,0.304004,0.428997,0.539955,0.693863,0.784204,0.571006,0.2822,0.700492,0.618464,0.277861,0.614515,0.40947,0.306018,0.751676,0.465029,0.931633,0.960529,0.924902,0.954176,0.970879,0.747701,0.86009,0.253208,0.256784,0.191786,0.888237,0.370201,0.601569,0.154197,0.711121,0.635018,0.632644,0.212701,0.0190735,0.7069,0.467555,0.738264,0.788547,0.943799,0.554018,0.0082944,0.883986,0.036574,0.786269,0.428626,0.239002,0.607215,0.365085,0.260469,0.494042,0.882955,0.520894,0.441807,0.561525,0.143758,0.0572996,0.248151,0.673315,0.950275,0.298684,0.321939,0.512746,0.688472,0.507561,0.270437,0.0792893,0.124267,0.276182,0.555978,0.800615,0.340493,0.555878,0.563196,0.95011,0.599017,0.244479,0.0303852,0.609556,0.779771,0.427949,0.868357,0.385273,0.995504,0.981197,0.172565,0.0596838,0.220065,0.692381,0.527901,0.167141,0.291834,0.642623,0.699562,0.0169479,0.244122,0.674608,0.420506,0.167996,0.863252,0.367118,0.963344,0.408307,0.999587,0.740692,0.32555,0.199647,0.447293,0.78829,0.959453,0.661971,0.222586,0.89509,0.547228,0.864288,0.955922,0.672677,0.440446,0.505143,0.64393,0.887436,0.183751,0.0898399,0.894846,0.0775672,0.318702,0.879071,0.52168,0.94315,0.102228,0.73359,0.43605,0.40596,0.957472,0.989785,0.156871,0.908178,0.993658,0.524985,0.951273,0.243082,0.501599,0.52546,0.94826,0.208801,0.949717,0.101292,0.791909,0.932197,0.674834,0.251783,0.350831,0.469611,0.41587,0.354563,0.821538,0.279521,0.429172,0.882479,0.21743,0.517667,0.144311,0.984485,0.237296,0.122753,0.828864,0.366713,0.0274758,0.619999,0.0742502,0.999914,0.735914,0.841605,0.0688112,0.960109,0.688519,0.301915,0.921764,0.839392,0.118344,0.93237,0.554183,0.281398,0.552327,0.00353223,0.719804,0.63582,0.807844,0.510205,0.226188,0.865448,0.503054,0.418369,0.151589,0.00687903,0.927971,0.802949,0.700612,0.282033,0.10623,0.420397,0.587217,0.639391,0.564472,0.658529,0.957891,0.842431,0.765424,0.221703,0.00320178,0.370381,0.712832,0.599845,0.455829,0.380871,0.466127,0.329822,0.400998,0.752693,0.661793,0.662117,0.778951,0.619443,0.640817,0.205706,0.826805,0.730712,0.547761,0.981441,0.976243,0.854683,0.636749,0.549772,0.457968,0.483711,0.627748,0.742386,0.242474,0.78791,0.604642,0.554089,0.307433,0.465011,0.792099,0.157763,0.0200781,0.419556,0.079502,0.545896,0.934471,0.547787,0.694205,0.201866,0.0479205,0.270475,0.16403,0.681069,0.910737,0.816665,0.307292,0.455416,0.831425,0.507811,0.116611,0.820253,0.67215,0.355319,0.226133,0.888116,0.621689,0.403612,0.603038,0.873097,0.66094,0.168225,0.0199541,0.155475,0.904197,0.0386863,0.0677704,0.607421,0.0923407,0.857442,0.506429,0.178952,0.800289,0.177911,0.888439,0.0485763,0.325797,0.972799,0.486007,0.606739,0.804922,0.266479,0.875435,0.083732,0.230814,0.831464,0.13863,0.699248,0.208262,0.0991474,0.66561,0.686214,0.701508,0.950426,0.122765,0.0151814,0.322528,0.306635,0.905679,0.849866,0.259042,0.117898,0.798877,0.0674794,0.288868,0.973281,0.613719,0.500228,0.127663,0.578446,0.387794,0.29198,0.656719,0.0922595,0.868576,0.112381,|0.777516,0.472796,0.167063,0.517793,0.433614,0.477469,0.621265,0.989262,0.180764,0.104905,0.868887,0.896797,0.593818,0.999536,0.0590839,0.904977,0.222464,0.112213,0.374823,0.95603,0.784409,0.00486332,0.746748,0.64909,0.888794,0.0981241,0.0439238,0.0278991,0.0625358,0.33369,0.655629,0.260838,0.488618,0.493518,0.62001,0.00223356,0.271531,0.977376,0.298303,0.0487349,0.692902,0.844439,0.803584,0.524134,0.0542629,0.488296,0.924836,0.706953,0.0520456,0.434419,0.667915,0.952691,0.71143,0.579424,0.70395,0.764785,0.800839,0.555311,0.4803,0.736675,0.270604,0.971534,0.358517,0.191101,0.251839,0.506848,0.9355,0.753857,0.921681,0.198373,0.669211,0.14314,0.725065,0.24502,0.0943871,0.954034,0.673354,0.824116,0.311693,0.416089,0.257583,0.976876,0.211282,0.288526,0.170034,0.968756,0.13319,0.221102,0.538015,0.973521,0.118604,0.844423,0.611867,0.550632,0.0743601,0.117247,0.455403,0.795605,0.831448,0.332888,0.529373,0.989689,0.418276,0.514738,0.400673,0.58044,0.574602,0.258931,0.983593,0.875728,0.475973,0.440071,0.361037,0.358006,0.793769,0.191597,0.681327,0.789236,0.286393,0.20786,0.752168,0.318093,0.691652,0.196717,0.767071,0.848358,0.182721,0.181697,0.0140674,0.913494,0.121787,0.534448,0.549026,0.487046,0.305737,0.33586,0.456865,0.488224,0.363799,0.103431,0.246473,0.455858,0.302371,0.156097,0.377772,0.658689,0.8776,0.896026,0.329227,0.465271,0.272879,0.347883,0.978475,0.632796,0.57452,0.569584,0.341958,0.154335,0.38012,0.913754,0.94951,0.706675,0.233683,0.0612949,0.695019,0.382617,0.707959,0.185583,0.733292,0.734575,0.355654,0.882279,0.224039,0.343518,0.0783449,0.883644,0.965282,0.5452,0.252378,0.698621,0.46228,0.0079093,0.34995,0.710146,0.989577,0.15407,0.820347,0.470531,0.754139,0.374658,0.236965,0.264418,0.28211,0.125073,0.965594,0.0734367,0.0653672,0.049055,0.416373,0.596351,0.378236,0.82064,0.96765,0.214893,0.100425,0.501758,0.418996,0.300795,0.800626,0.494747,0.850607,0.518595,0.608763,0.918982,0.837479,0.0620784,0.926631,0.0954072,0.020312,0.422953,0.895242,0.901478,0.185888,0.738768,0.356845,0.522391,0.352116,0.0581033,0.338999,0.54272,0.661327,0.0931906,0.999697,0.555361,0.395777,0.117424,0.0849802,0.993921,0.314198,0.143227,0.94575,0.151471,0.532705,0.801415,0.836623,0.474852,0.332201,0.158868,0.433444,0.776609,0.226898,0.574846,0.0418479,0.34959,0.157509,0.757797,0.980452,0.77039,0.326668,0.206224,0.591832,0.367979,0.975995,0.753621,0.898811,0.602545,0.493756,0.00867277,0.398619,0.0599115,0.851452,0.428243,0.317516,0.231019,0.168548,0.719048,0.632586,0.617019,0.429248,0.766273,0.0229225,0.233748,0.239558,0.734064,0.466268,0.344941,0.294574,0.199347,0.856213,0.747185,0.252319,0.20687,0.237797,0.771847,0.105517,0.453003,0.677899,0.716941,0.968221,0.720779,0.90591,0.165644,0.342417,0.241705,0.557374,0.978938,0.676449,0.961124,0.51296,0.530713,0.686537,0.634601,0.864745,0.9944,0.463973,0.920148,0.0803486,0.185811,0.926615,0.306239,0.0299097,0.927934,0.0486236,0.234194,0.755347,0.1627,0.271955,0.897729,0.829548,0.772565,0.519883,0.612266,0.455548,0.0852664,0.336956,0.878127,0.498065,0.287047,0.056771,0.203762,0.204624,0.198195,0.980697,0.644051,0.0488479,0.177382,0.23111,0.515175,0.938509,0.0726754,0.276828,0.812217,0.195586,0.822635,0.406614,0.781932,0.420556,0.211204,0.611538,0.530901,0.316964,0.844801,0.133839,0.554106,0.233749,0.894256,0.753877,0.841838,0.206078,0.263424,0.0354765,0.28014,0.435487,0.0256829,0.631679,0.250695,0.289436,0.39325,0.77231,0.950137,0.931069,0.497886,0.66267,0.722585,0.735297,0.501542,0.711881,0.813572,0.492173,0.17592,0.294846,0.328336,0.285415,0.622096,0.355208,0.28578,0.947721,0.318106,0.714159,0.998462,0.676933,0.795305,0.897421,0.154264,0.977301,0.175877,0.0907328,0.878289,0.0142496,0.819584,0.363835,0.476978,0.186115,0.185626,0.611752,0.96052,0.300515,0.709927,0.943643,0.670034,0.978068,0.858946,0.0445811,0.0616832,0.348054,0.36899,0.175955,0.245645,0.731801,0.872771,0.581659,0.518429,0.639819,0.985683,0.671131,0.727422,0.11006,0.35952,0.346932,0.975517,0.549897,0.223265,0.181873,0.906054,0.649001,0.244368,0.113591,0.939742,0.853853,0.544977,0.454683,0.200646,0.473161,0.650769,0.565238,0.782025,0.70517,0.151519,0.384186,0.309884,0.669655,0.586377,0.0372761,0.349905,0.262441,0.616646,0.671175,0.424404,0.0445963,0.662586,0.460951,0.869988,0.398902,0.290348,0.530582,0.698536,0.912502,0.564536,0.548763,0.936687,0.370571,0.326603,0.977072,0.957107,0.00371957,0.748553,0.0676196,0.656437,0.107492,0.544951,0.932306,0.389914,0.541102,0.466434,0.545857,0.74434,0.539553,0.855823,0.14891,0.950291,0.862609,0.840657,0.841019,0.133856,0.560254,0.236021,0.381968,0.979906,0.902996,0.984647,0.751322,0.544873,0.0514681,0.984552,0.171751,0.201781,0.479481,0.402143,0.172876,0.252032,0.750406,0.763218,0.687614,0.0647827,0.949267,0.794587,0.704902,0.697287,0.556664,0.045265,0.791961,0.200351,0.58065,0.568766,0.42915,0.657321,0.736847,0.191887,0.902022,0.315514,0.453674,0.250387,0.253738,0.75466,0.0606676,0.639321,0.616182,0.359598,0.778822,0.0709837,0.580195,0.0222597,0.672233,0.680947,0.649772,0.946337,0.332778,0.187182,0.25358,0.44851,0.100817,0.684717,0.469508,0.342977,0.689427,0.600522,0.829121,0.00304395,0.738795,0.179907,0.474836,0.848759,0.158484,0.703102,0.331617,0.20987,0.128644,0.246248,0.0647914,0.651271,0.734701,0.122924,0.991856,0.419869,0.877939,0.233127,0.0645953,0.380925,0.550266,0.0207348,0.390242,0.316393,0.153677,0.900572,0.986833,0.525867,0.920683,0.179952,0.182096,0.72833,0.531099,0.849477,0.801398,0.86246,0.687137,0.72933,0.171328,0.863239,0.553741,0.840827,0.0861493,0.38423,0.713877,0.942876,0.469958,0.212592,0.4714,0.666984,0.146348,0.695689,0.502737,0.320394,0.87068,0.641179,0.433735,0.859718,0.273143,0.0820667,0.594925,0.141017,0.814149,0.231074,0.739258,0.164056,0.560988,0.826635,0.360861,0.568491,0.297968,0.551474,0.546154,0.423361,0.0965635,0.322887,0.0883031,0.879936,0.854845,0.899585,0.748884,0.858558,0.68061,0.273221,0.430461,0.930516,0.0497268,0.912198,0.55788,0.0968289,0.408904,0.188606,0.962614,0.756195,0.565517,0.0471882,0.612613,0.742302,0.150968,0.237251,0.734728,0.593486,0.155448,0.653276,0.387383,0.143104,0.604968,0.999556,0.393739,0.840129,0.586832,0.941017,0.41717,0.825644,0.62321,0.194759,0.606395,0.26397,0.636006,0.458043,0.395266,0.882153,0.524579,0.0605676,0.105738,0.118542,0.384213,0.889886,0.746968,0.348583,0.378401,0.40598,0.783046,0.753234,0.377326,0.0778992,0.865229,0.678543,0.89222,0.0581412,0.362125,0.723453,0.211749,0.474148,0.486562,0.546547,0.967829,0.49179,0.773666,0.289946,0.257007,0.566919,0.0787224,0.201205,0.482311,0.363956,0.432489,0.319324,0.217316,0.434405,0.373712,0.633302,0.937683,0.640427,0.781334,0.219697,0.127137,0.681079,0.29177,0.984111,0.103635,0.158054,0.134924,0.111717,0.195272,0.849702,0.544052,0.234039,0.688048,0.760372,0.890068,0.0473135,0.426958,0.296386,0.501871,0.23962,0.462014,0.975463,0.0842703,0.0868087,0.5989,0.746246,0.493846,0.560881,0.0478385,0.604861,0.105094,0.305147,0.450804,0.110364,0.8555,0.235104,0.887155,0.76337,0.970772,0.0491554,0.303985,0.278328,0.612342,0.141491,0.956966,0.173556,0.843944,0.735008,0.635473,0.291369,0.199117,0.57626,0.645392,0.34141,0.994557,0.66121,0.788162,0.827127,0.342073,0.276102,0.711272,0.976949,0.876575,0.926453,0.0913463,0.62101,0.86644,0.863671,0.430119,0.400408,0.577101,0.20251,0.251053,0.560122,0.156488,0.264126,0.250785,0.0878257,0.665482,0.209158,0.218432,0.0160779,0.354386,0.923979,0.404896,0.895859,0.95957,0.165552,0.776223,0.170995,0.773766,0.535555,0.109862,0.931473,0.988955,0.154972,0.947625,0.0249298,0.724775,0.362555,0.568221,0.350817,0.668173,0.0874436,0.232802,0.0958147,0.627214,0.96975,0.409602,0.843986,0.612625,0.880652,0.37688,0.30261,0.433179,0.99709,0.813787,0.564595,0.363274,0.150385,0.965409,0.0356631,0.402813,0.395032,0.520809,0.119054,0.167701,0.0496569,0.884494,0.410525,0.522725,0.446209,0.542917,0.260947,0.931489,0.0727043,0.569137,0.214506,0.262048,0.0794351,0.153696,0.827843,0.963283,0.191586,0.290116,0.739852,0.156719,0.409041,0.0579842,0.760572,0.0785493,0.0238665,0.877407,0.0753123,0.525784,0.917867,0.944187,0.172351,0.88377,0.957564,0.971153,0.426015,0.602685,0.635973,0.120455,0.285502,0.441038,0.552057,0.746616,0.405281,0.557362,0.633324,0.725946,0.345635,0.772092,0.978703,0.0868006,0.647666,0.647756,0.949717,0.949327,0.48776,0.793543,0.891091,0.688585,0.20315,0.284441,0.836504,0.380967,0.0693127,0.14016,0.887829,0.932234,0.888567,0.593691,0.678062,0.0992637,0.451123,0.66039,0.296452,0.132064,0.869203,0.0643966,0.784494,0.64525,0.219287,0.905033,0.137559,0.12398,0.744165,0.569406,0.649984,0.917146,0.868329,0.64439,0.420427,0.504799,0.0300795,0.884172,0.369201,0.924861,0.0182043,0.470908,0.72394,0.426642,0.875357,0.0841352,0.198802,0.0505092,0.35939,0.692842,0.772482,0.780383,0.327545,0.985749,0.442276,0.280613,0.945104,0.606581,0.275536,0.766596,0.802682,0.244849,0.0347078,0.00101745,0.0083223,0.71723,0.0863482,0.396933,0.319908,0.788892,0.6719,0.0534656,0.185005,0.999672,0.347066,0.464293,0.0227114,0.00775349,0.160008,0.164853,0.377774,0.701231,0.486365,0.531689,0.119384,|0.786188,0.977292,0.124237,0.7779,0.346432,0.549704,0.30904,0.0586012,0.498591,0.418369,0.601876,0.598234,0.222683,0.388571,0.28056,0.161247,0.294479,0.288545,0.711722,0.584647,0.139292,0.980811,0.317002,0.81076,0.470319,0.289548,0.24396,0.168434,0.609242,0.228187,0.333313,0.544459,0.975276,0.467893,0.0631204,0.999571,0.324277,0.48905,0.783051,0.795636,0.00119531,0.156301,0.828539,0.941507,0.101431,0.987173,0.482731,0.814119,0.510146,0.791559,0.915988,0.306629,0.907447,0.918207,0.94324,0.566188,0.842164,0.363097,0.0696799,0.111675,0.337871,0.672897,0.555966,0.0764502,0.766824,0.281743,0.853304,0.505049,0.0966224,0.708033,0.10123,0.196931,0.43782,0.762724,0.276119,0.128984,0.134149,0.587425,0.842889,0.00898713,0.68021,0.764619,0.318008,0.0596954,0.585081,0.76061,0.173223,0.659464,0.98483,0.136327,0.527963,0.542692,0.30492,0.192734,0.34653,0.964135,0.28573,0.192113,0.848901,0.613952,0.248086,0.305027,0.0242159,0.294633,0.452205,0.148573,0.897227,0.580182,0.833543,0.441164,0.394173,0.471807,0.901727,0.111842,0.115074,0.289523,0.584786,0.469416,0.899787,0.51247,0.679534,0.504399,0.341978,0.401271,0.85745,0.0965494,0.461182,0.223174,0.714088,0.831245,0.0342654,0.170836,0.428252,0.439543,0.0110388,0.545172,0.102445,0.273869,0.54805,0.258568,0.604474,0.0283668,0.594514,0.307074,0.446485,0.333504,0.496757,0.466321,0.271869,0.0255658,0.634423,0.977309,0.813116,0.54972,0.0458417,0.141227,0.88928,0.82404,0.640289,0.475474,0.463734,0.42331,0.174621,0.59276,0.206566,0.424975,0.13467,0.837757,0.271143,0.66597,0.298178,0.670372,0.528659,0.0516025,0.442382,0.0540889,0.417284,0.211404,0.418221,0.767242,0.747024,0.916156,0.56329,0.33067,0.43221,0.660003,0.472389,0.644704,0.509982,0.132554,0.0653663,0.010755,0.201342,0.21275,0.0355133,0.364419,0.0992982,0.844363,0.43002,0.468321,0.214879,0.181227,0.577657,0.519659,0.679961,0.391404,0.423398,0.0995904,0.354843,0.862288,0.145719,0.27291,0.734913,0.387001,0.128919,0.573211,0.0275243,0.918327,0.0591258,0.988171,0.538223,0.813905,0.331266,0.244576,0.313062,0.217245,0.0845941,0.358907,0.0440211,0.993234,0.883453,0.128973,0.0527235,0.0223253,0.222968,0.0974717,0.670487,0.0422369,0.312194,0.712705,0.152101,0.749851,0.669596,0.418783,0.127081,0.192966,0.230187,0.289905,0.894021,0.418994,0.331537,0.0459343,0.365471,0.154944,0.724197,0.957484,0.27145,0.704704,0.999549,0.538689,0.340874,0.0636976,0.672959,0.778111,0.438038,0.341945,0.279816,0.133258,0.0175116,0.258021,0.582114,0.103139,0.67037,0.405779,0.870237,0.697615,0.333123,0.0637665,0.227004,0.637288,0.632688,0.919091,0.982816,0.938817,0.359416,0.459238,0.263183,0.518013,0.716461,0.817445,0.647615,0.741451,0.722722,0.56202,0.367292,0.238873,0.744201,0.25226,0.679405,0.230618,0.0763828,0.826459,0.0512988,0.0154964,0.452576,0.486476,0.383769,0.415097,0.110245,0.228341,0.714616,0.620754,0.503754,0.344226,0.825471,0.554839,0.714843,0.526487,0.0365933,0.495248,0.671303,0.220486,0.212415,0.17279,0.620809,0.264275,0.769299,0.975531,0.630515,0.745719,0.886368,0.732746,0.423981,0.893982,0.293785,0.517783,0.367356,0.562072,0.456092,0.0823553,0.827647,0.975966,0.0919809,0.449069,0.446713,0.723877,0.71671,0.0774005,0.733201,0.726879,0.159295,0.848344,0.519214,0.0320294,0.265684,0.876296,0.72484,0.235047,0.830731,0.0306912,0.161098,0.510765,0.538683,0.295397,0.1865,0.384666,0.177869,0.286261,0.987901,0.891838,0.115252,0.633728,0.791765,0.589713,0.579769,0.720535,0.676183,0.82357,0.54388,0.234428,0.575138,0.0489716,0.187833,0.564591,0.24741,0.134679,0.7671,0.619877,0.41072,0.269939,0.470924,0.588687,0.201408,0.773042,0.910866,0.252644,0.817037,0.740289,0.618852,0.889231,0.561799,0.244312,0.520861,0.37314,0.950805,0.507955,0.310189,0.50778,0.871183,0.200237,0.336944,0.835511,0.742708,0.473565,0.365295,0.897452,0.822644,0.58374,0.611248,0.790192,0.61072,0.460296,0.649139,0.526535,0.0171363,0.774553,0.479113,0.323434,0.1566,0.0123572,0.775712,0.0279975,0.92504,0.422397,0.171914,0.348531,0.965518,0.602127,0.521628,0.523371,0.466638,0.914933,0.417604,0.246257,0.305337,0.142859,0.303115,0.155691,0.134964,0.440049,0.354587,0.434886,0.835127,0.109924,0.702194,0.239629,0.163089,0.381729,0.0339124,0.0695029,0.1993,0.179018,0.988793,0.60926,0.511703,0.720452,0.916933,0.515287,0.512927,0.419783,0.784496,0.802041,0.311048,0.63127,0.936914,0.338277,0.374602,0.210465,0.176344,0.901188,0.968674,0.557963,0.710146,0.539835,0.953822,0.0897835,0.542743,0.188245,0.00679421,0.176272,0.675194,0.0938193,0.588905,0.0725909,0.361381,0.405582,0.795032,0.302186,0.915445,0.954205,0.86179,0.408615,0.570086,0.783338,0.89657,0.774358,0.24713,0.249467,0.547808,0.091024,0.0808872,0.297969,0.758206,0.947635,0.431978,0.347115,0.696732,0.304982,0.072424,0.312945,0.880139,0.381702,0.759112,0.559847,0.41959,0.976526,0.109817,0.841788,0.407376,0.185162,0.423154,0.224562,0.380142,0.275225,0.379488,0.736594,0.417502,0.387931,0.574563,0.0158786,0.970228,0.185162,0.408774,0.747983,0.192357,0.748481,0.0734223,0.310409,0.845883,0.634668,0.98693,0.825723,0.171295,0.39202,0.0509917,0.268854,0.367935,0.464603,0.938614,0.320967,0.496067,0.592871,0.422166,0.908711,0.250503,0.131529,0.970586,0.0646219,0.926705,0.520609,0.0758469,0.758491,0.624257,0.458704,0.497787,0.898879,0.160508,0.41634,0.387709,0.969448,0.915502,0.270086,0.998955,0.0430121,0.605203,0.861309,0.901592,0.32819,0.375833,0.465904,0.309159,0.668226,0.617903,0.0253944,0.315752,0.419498,0.579408,0.652423,0.0595066,0.0401258,0.366063,0.289116,0.68951,0.860058,0.882154,0.836681,0.808675,0.597358,0.730589,0.794501,0.541098,0.396346,0.643091,0.28775,0.300954,0.534005,0.713424,0.815991,0.0382604,0.500917,0.306897,0.930063,0.527085,0.267122,0.930406,0.788302,0.410245,0.414764,0.250971,0.0971501,0.943382,0.0401347,0.502942,0.660291,0.85615,0.529529,0.436234,0.807103,0.805534,0.787273,0.371309,0.898461,0.107921,0.377207,0.709372,0.83645,0.429827,0.722463,0.982181,0.224631,0.238726,0.551748,0.27209,0.749698,0.637617,0.0736082,0.864779,0.12982,0.767047,0.954531,0.82504,0.523938,0.983283,0.659325,0.606757,0.528776,0.654799,0.107377,0.929214,0.887933,0.760367,0.916001,0.468664,0.900148,0.873121,0.535968,0.388293,0.260816,0.207832,0.934539,0.399043,0.464958,0.645601,0.518366,0.859345,0.728594,0.546124,0.101744,0.332151,0.754044,0.921633,0.708547,0.811559,0.54634,0.948813,0.160708,0.255444,0.565956,0.501315,0.0748257,0.712153,0.605273,0.848091,0.900337,0.154793,0.563228,0.922523,0.45177,0.728871,0.837681,0.875163,0.321628,0.277895,0.376656,0.88507,0.454881,0.709634,0.787241,0.995703,0.746523,0.935403,0.146592,0.230575,0.396828,0.105533,0.825307,0.595622,0.531033,0.819123,0.890755,0.677293,0.281491,0.348776,0.665977,0.720208,0.776028,0.0406392,0.366976,0.905246,0.141705,0.252533,0.344221,0.169575,0.600627,0.797992,0.00666064,0.604726,0.837599,0.393574,0.324638,0.72504,0.0754737,0.927722,0.253415,0.518946,0.484914,0.58935,0.142256,0.597222,0.85044,0.449405,0.663183,0.57679,0.0461429,0.00649428,0.055768,0.257743,0.108054,0.885935,0.565488,0.433058,0.37031,0.908912,0.760183,0.285875,0.936775,0.620774,0.159885,0.367972,0.142058,0.173256,0.986026,0.542287,0.325274,0.440899,0.5692,0.622379,0.0183445,0.0441626,0.910418,0.853421,0.716721,0.193376,0.633402,0.593726,0.849764,0.526623,0.569476,0.716513,0.0434836,0.69071,0.405463,0.862012,0.866721,0.290181,0.417746,0.0398725,0.418613,0.619286,0.962469,0.641534,0.0628464,0.634698,0.950875,0.659867,0.751304,0.209732,0.802625,0.613824,0.386461,0.147998,0.899251,0.567063,0.0295459,0.439639,0.790673,0.149029,0.881513,0.990643,0.423157,0.134918,0.616908,0.295451,0.000398934,0.964826,0.131644,0.474231,0.0322018,0.678183,0.693903,0.032836,0.0662661,0.635687,0.111312,0.168167,0.940976,0.196155,0.962108,0.838795,0.488467,0.54972,0.884459,0.405213,0.96845,0.457395,0.619131,0.268038,0.635127,0.03676,0.611969,0.287403,0.10835,0.541389,0.26216,0.791467,0.211863,0.79294,0.112045,0.239064,0.919528,0.367612,0.659382,0.523804,0.399007,0.0314376,0.663413,0.426854,0.525697,0.808561,0.669427,0.832648,0.654747,0.434139,0.918344,0.961725,0.42587,0.0859018,0.947918,0.946022,0.519901,0.600227,0.274763,0.12003,0.870007,0.376707,0.461694,0.528484,0.0429493,0.17152,0.322829,0.527737,0.830886,0.0124925,0.730382,0.428229,0.217985,0.621781,0.409076,0.946743,0.535896,0.317347,0.642803,0.70094,0.183549,0.70143,0.531135,0.54523,0.101404,0.542334,0.100752,0.581444,0.891126,0.901936,0.482813,0.169371,0.739169,0.383392,0.213326,0.409745,0.744893,0.729069,0.960268,0.719856,0.991818,0.813869,0.900316,0.625327,0.215802,0.517285,0.883569,0.615583,0.152219,0.947375,0.851966,0.681227,0.239228,0.0596068,0.556814,0.270503,0.158407,0.481472,0.661633,0.977754,0.604459,0.596749,0.355176,0.147609,0.360309,0.212194,0.329297,0.769191,0.0713389,0.488424,0.22247,0.481271,0.762682,0.959742,0.948685,0.688141,0.698171,0.690417,0.524357,0.50796,0.778997,0.404289,0.511506,0.735327,0.439071,0.845311,0.325993,0.444577,0.537243,0.799105,0.533499,0.140235,0.992851,0.670833,0.220006,0.0526464,0.558336,0.482948,0.966681,0.415606,0.471695,0.351918,0.158987,0.647539,0.730762,0.132243,0.603363,|0.674708,0.776443,0.866874,0.234497,0.410984,0.044829,0.349918,0.861683,0.976331,0.68756,0.128691,0.307472,0.389639,0.288927,0.522641,0.30115,0.742891,0.909829,0.253528,0.702319,0.459168,0.189778,0.993924,0.684818,0.95118,0.912131,0.301901,0.923089,0.979859,0.511414,0.172121,0.670319,0.559569,0.69189,0.374809,0.666541,0.923529,0.369219,0.856744,0.84843,0.167119,0.961315,0.90611,0.111413,0.20692,0.354466,0.457788,0.243086,0.548902,0.578272,0.979587,0.222774,0.00549042,0.77404,0.135333,0.28467,0.161332,0.40645,0.372039,0.198804,0.0671837,0.612747,0.163019,0.831396,0.198312,0.692679,0.881913,0.731818,0.892922,0.0111423,0.782727,0.81788,0.8612,0.337335,0.00849873,0.507333,0.248051,0.344691,0.873389,0.0995864,0.505614,0.78271,0.151275,0.370845,0.38418,0.531113,0.351327,0.938605,0.386822,0.881593,0.180747,0.604479,0.904706,0.740444,0.819798,0.177161,0.0707967,0.32882,0.437501,0.663329,0.157531,0.351274,0.342975,0.683044,0.868646,0.737844,0.73981,0.303289,0.230906,0.939458,0.260662,0.149593,0.852236,0.834602,0.796399,0.670697,0.616911,0.536028,0.956453,0.963623,0.0146992,0.604684,0.836928,0.707219,0.673514,0.0861048,0.208526,0.0680219,0.217384,0.563688,0.366856,0.598525,0.500563,0.179742,0.596564,0.659688,0.35807,0.300311,0.828889,0.315309,0.772465,0.150995,0.689203,0.59824,0.8582,0.366101,0.288864,0.874109,0.379521,0.330326,0.479638,0.970887,0.228211,0.634884,0.47475,0.407072,0.0553982,0.335447,0.278509,0.126463,0.456176,0.605957,0.0408959,0.996515,0.645847,0.441826,0.487176,0.131633,0.37824,0.354965,0.625952,0.236311,0.132905,0.137407,0.118814,0.483442,0.0641478,0.691583,0.486876,0.0766003,0.603609,0.826773,0.426617,0.645716,0.108771,0.0508402,0.503016,0.743403,0.21158,0.961207,0.234463,0.097351,0.335529,0.425731,0.589916,0.207839,0.53786,0.874762,0.999408,0.419917,0.437162,0.818125,0.137303,0.716825,0.690392,0.20866,0.552291,0.091684,0.44237,0.965515,0.405463,0.382001,0.718567,0.222382,0.966996,0.0729979,0.478411,0.0597034,0.323955,0.555276,0.801886,0.635621,0.230956,0.513785,0.774194,0.00103331,0.256201,0.823308,0.228848,0.703639,0.506798,0.568302,0.880037,0.613327,0.541883,0.804029,0.738984,0.601764,0.036493,0.515454,0.131037,0.642402,0.330327,0.124028,0.995051,0.431417,0.803784,0.36522,0.198813,0.58299,0.449866,0.0851904,0.784444,0.931584,0.227289,0.832102,0.407314,0.431207,0.551605,0.809976,0.583348,0.140982,0.221572,0.742668,0.55011,0.813125,0.347998,0.455589,0.0633566,0.694176,0.973597,0.74793,0.0678631,0.00102007,0.433272,0.465309,0.246101,0.536867,0.940127,0.844227,0.261328,0.832057,0.998048,0.966876,0.980581,0.120349,0.0743691,0.810537,0.61783,0.350938,0.269574,0.98669,0.540417,0.135233,0.0140281,0.244525,0.55891,0.933935,0.121677,0.594317,0.715079,0.167158,0.512579,0.614451,0.723202,0.0997046,0.000700235,0.685361,0.0941552,0.598104,0.980887,0.98193,0.955759,0.530302,0.0751255,0.0141875,0.399895,0.378288,0.642688,0.491659,0.600638,0.383081,0.0981069,0.832417,0.61514,0.476797,0.735789,0.393483,0.375911,0.519819,0.804328,0.747701,0.92945,0.602862,0.2403,0.49849,0.373326,0.390024,0.017623,0.555447,0.608883,0.647505,0.0250303,0.228765,0.312552,0.877171,0.416499,0.937307,0.647791,0.413639,0.0861565,0.478767,0.978805,0.599954,0.214499,0.853075,0.076919,0.389505,0.670241,0.952241,0.906133,0.287156,0.441431,0.0428823,0.703709,0.712734,0.564252,0.0546594,0.245361,0.00210267,0.319917,0.79595,0.751817,0.158205,0.272482,0.498025,0.837173,0.651206,0.210835,0.929054,0.211551,0.420642,0.488823,0.726529,0.0766515,0.546207,0.854185,0.90873,0.846774,0.985162,0.695686,0.961359,0.60046,0.80637,0.0449772,0.703821,0.367447,0.219508,0.942544,0.368145,0.439937,0.968671,0.802056,0.910049,0.972185,0.853385,0.853812,0.295479,0.590431,0.35936,0.576676,0.78398,0.60518,0.906926,0.930155,0.238065,0.663144,0.0117798,0.0650626,0.754242,0.589952,0.333904,0.760799,0.0421659,0.999227,0.286747,0.0958216,0.0825661,0.701844,0.83891,0.561248,0.296437,0.478192,0.0521664,0.0848699,0.190498,0.483359,0.160606,0.84234,0.795881,0.981791,0.912174,0.729549,0.912167,0.0317444,0.814416,0.0405191,0.855457,0.74465,0.855724,0.541239,0.106838,0.681486,0.20337,0.330351,0.357629,0.275452,0.662872,0.168289,0.584397,0.613262,0.0224901,0.54297,0.443767,0.57909,0.952202,0.478395,0.928611,0.328651,0.487825,0.667998,0.67563,0.177873,0.330123,0.795685,0.728057,0.349407,0.181135,0.804597,0.659289,0.99867,0.255629,0.368676,0.138736,0.939561,0.365015,0.597455,0.0578078,0.0507895,0.10646,0.247144,0.542376,0.225215,0.265054,0.483264,0.404979,0.738466,0.144652,0.857047,0.103409,0.727054,0.245788,0.246024,0.442949,0.734604,0.826706,0.506495,0.226941,0.016411,0.758085,0.719839,0.645988,0.67538,0.928327,0.244435,0.370318,0.547507,0.925252,0.0627678,0.0568236,0.0846911,0.950686,0.0846254,0.913553,0.833205,0.285594,0.77561,0.108341,0.559593,0.465493,0.876003,0.509265,0.212119,0.215574,0.78277,0.363617,0.0928681,0.0261341,0.573216,0.386669,0.127106,0.245146,0.835644,0.051407,0.165288,0.595774,0.438094,0.306648,0.959521,0.723508,0.793641,0.516982,0.19132,0.243224,0.711437,0.867929,0.667739,0.794494,0.461909,0.552231,0.878466,0.174871,0.949953,0.942657,0.275035,0.986713,0.907551,0.601114,0.804915,0.591681,0.298738,0.971913,0.847637,0.250297,0.817176,0.126419,0.59533,0.0315751,0.496882,0.245241,0.279825,0.538957,0.0227023,0.0351157,0.0180836,0.7649,0.71569,0.817598,0.851728,0.274413,0.0934646,0.673445,0.68137,0.00821072,0.367626,0.720786,0.123197,0.938443,0.308374,0.271467,0.650817,0.997602,0.686741,0.729114,0.260659,0.209231,0.0735624,0.169995,0.619187,0.457185,0.160729,0.9705,0.463043,0.233368,0.39853,0.057671,0.918357,0.101438,0.588711,0.743986,0.978805,0.842352,0.894187,0.943558,0.220425,0.238688,0.589581,0.22425,0.615289,0.929999,0.475116,0.443825,0.159083,0.00915664,0.155076,0.211884,0.870264,0.789443,0.96329,0.342048,0.487888,0.525497,0.155681,0.795065,0.737046,0.430793,0.28422,0.0531946,0.469983,0.656941,0.0747972,0.960932,0.584691,0.148826,0.816546,0.0884188,0.0600938,0.366915,0.714296,0.974676,0.265503,0.257584,0.99759,0.742591,0.40628,0.248848,0.796595,0.383525,0.911816,0.201356,0.403433,0.278522,0.448335,0.0996792,0.793103,0.287962,0.0693796,0.153334,0.177789,0.860649,0.468587,0.969109,0.673292,0.561154,0.395669,0.689862,0.578214,0.522181,0.0921811,0.866983,0.513763,0.899954,0.813964,0.624736,0.16023,0.382694,0.325976,0.863337,0.107517,0.44563,0.806691,0.0452219,0.905586,0.0911072,0.853776,0.131555,0.945678,0.159821,0.85207,0.85046,0.612928,0.992386,0.72682,0.423485,0.0910369,0.373157,0.248041,0.0578386,0.612697,0.726438,0.785585,0.956496,0.454286,0.830801,0.213155,0.110653,0.947461,0.999675,0.753903,0.836937,0.622452,0.579449,0.376875,0.534159,0.434574,0.34285,0.572484,0.804257,0.0585199,0.707736,0.0299333,0.151545,0.131587,0.341464,0.738533,0.269161,0.895998,0.484075,0.603972,0.980071,0.768036,0.74081,0.788737,0.70053,0.222397,0.0594313,0.74546,0.510403,0.545102,0.724528,0.959548,0.324335,0.256808,0.779257,0.136096,0.889857,0.0766115,0.684889,0.123829,0.850111,0.433822,0.6545,0.797092,0.0957797,0.938803,0.149259,0.871759,0.0873361,0.0647146,0.0237955,0.126577,0.284013,0.385962,0.426497,0.221124,0.913205,0.00461102,0.0791968,0.617592,0.570398,0.742803,0.334974,0.247822,0.704105,0.618483,0.967448,0.961747,0.788413,0.0402575,0.576569,0.345144,0.944091,0.21794,0.319213,0.719785,0.118386,0.965823,0.768715,0.363403,0.0993975,0.507234,0.855769,0.207198,0.533699,0.0318662,0.840287,0.717964,0.823164,0.260225,0.0756498,0.783417,0.105536,0.724591,0.480828,0.437217,0.859017,0.878836,0.654183,0.869442,0.192648,0.290258,0.989464,0.173082,0.192469,0.951875,0.526053,0.472995,0.438168,0.586231,0.0680441,0.269086,0.547206,0.351658,0.4056,0.942785,0.56805,0.495743,0.13276,0.318063,0.312195,0.0801536,0.419103,0.703471,0.33105,0.925911,0.657638,0.335637,0.277002,0.058628,0.17241,0.497996,0.892873,0.149187,0.177295,0.762306,0.354355,0.610125,0.807871,0.315674,0.72784,0.610285,0.41,0.969023,0.873052,0.0511892,0.105231,0.776789,0.0409901,0.774583,0.558312,0.845809,0.567834,0.00164914,0.996255,0.0788059,0.603542,0.745609,0.167841,0.264196,0.897021,0.0784213,0.68583,0.584146,0.349302,0.109414,0.617191,0.23994,0.42592,0.697871,0.244991,0.488494,0.351094,0.987238,0.954538,0.536437,0.988469,0.0231663,0.0376257,0.666266,0.0925893,0.901569,0.923863,0.684956,0.539847,0.561869,0.938348,0.762182,0.282589,0.0037685,0.378724,0.775607,0.0195342,0.221877,0.262851,0.804939,0.807829,0.00956583,0.765551,0.687351,0.67134,0.522277,0.287123,0.95971,0.335453,0.67397,0.606629,0.335285,0.732591,0.871793,0.320819,0.737477,0.58384,0.71027,0.725709,0.219204,0.274378,0.294487,0.881672,0.43486,0.893065,0.813178,0.651486,0.795063,0.642723,0.341154,0.622767,0.934246,0.800065,0.23533,0.531626,0.596553,0.00122195,0.677319,0.503981,0.644545,0.613997,0.424048,0.856914,0.0670891,0.837717,0.150667,0.199767,0.60589,0.660861,0.00479954,0.00718522,0.523235,0.920757,0.859338,0.191904,0.254407,0.487008,0.477056,0.392579,0.310455,0.603208,0.562931,0.637751,0.0769892,0.129233,0.419093,0.0231209,0.483283,0.00710475,0.723775,0.230787,0.499236,0.322483,0.891389,0.662981,|0.0819244,0.36555,0.101081,0.937555,0.482732,0.426791,0.972947,0.749561,0.0693778,0.996319,0.0491946,0.677126,0.983791,0.982888,0.875235,0.991239,0.770137,0.89604,0.423535,0.53766,0.722646,0.511199,0.121634,0.134355,0.658651,0.0317335,0.191575,0.785208,0.480577,0.962334,0.551024,0.889565,0.562286,0.250444,0.808899,0.579971,0.294606,0.733935,0.751343,0.93882,0.383963,0.700925,0.796428,0.0745909,0.00852668,0.813139,0.745177,0.9732,0.9217,0.0349209,0.0328192,0.84675,0.549952,0.915603,0.956506,0.0677978,0.210548,0.59223,0.907356,0.882085,0.373546,0.230492,0.767794,0.795733,0.832942,0.719499,0.42088,0.328187,0.961729,0.164607,0.568012,0.716192,0.566972,0.924197,0.108491,0.391147,0.0448076,0.401857,0.946876,0.0232855,0.115273,0.0591186,0.993798,0.793203,0.507408,0.626534,0.74326,0.45154,0.950237,0.70132,0.468665,0.203599,0.468507,0.271676,0.702149,0.92888,0.777249,0.910393,0.548238,0.897302,0.603806,0.357886,0.0128246,0.522231,0.661063,0.517101,0.564844,0.842213,0.302082,0.975464,0.723613,0.469058,0.16654,0.877036,0.247271,0.662729,0.0999019,0.797385,0.111185,0.380523,0.970114,0.780366,0.546619,0.282806,0.254595,0.0674967,0.751792,0.547347,0.711076,0.596065,0.865295,0.631658,0.228034,0.491058,0.222506,0.881572,0.765511,0.963729,0.138343,0.210288,0.790628,0.636676,0.568444,0.331446,0.501865,0.216428,0.0196221,0.729567,0.78161,0.367518,0.4574,0.176156,0.818703,0.904832,0.662884,0.309685,0.344675,0.590997,0.125618,0.363843,0.918978,0.806211,0.702009,0.260379,0.630504,0.482821,0.0208663,0.543967,0.790856,0.448897,0.538625,0.505223,0.294815,0.0976807,0.593317,0.378392,0.797652,0.659138,0.231685,0.03473,0.303688,0.561309,0.833162,0.0123572,0.822538,0.409851,0.0875571,0.678825,0.915641,0.411008,0.162516,0.00811493,0.591648,0.357085,0.383282,0.00153399,0.961666,0.947417,0.699264,0.711975,0.594859,0.372814,0.735847,0.391632,0.676662,0.983183,0.722206,0.683754,0.834444,0.249586,0.66728,0.42229,0.188598,0.0121124,0.397813,0.273692,0.80072,0.614649,0.909933,0.950871,0.666646,0.53659,0.654072,0.682726,0.586712,0.770508,0.525446,0.0332946,0.447755,0.563151,0.293816,0.0922598,0.985785,0.532653,0.274758,0.207844,0.498479,0.468618,0.587231,0.139253,0.883577,0.304672,0.321329,0.811185,0.4783,0.697883,0.022989,0.13965,0.0541884,0.721277,0.94341,0.50755,0.352659,0.365451,0.620323,0.649095,0.955972,0.217944,0.183577,0.925085,0.245134,0.514749,0.33593,0.00313127,0.97926,0.554633,0.120729,0.698892,0.833534,0.935817,0.738704,0.360132,0.146722,0.0282207,0.717022,0.768671,0.113311,0.832298,0.108207,0.515794,0.593066,0.613195,0.82588,0.649568,0.0645351,0.768668,0.936689,0.237373,0.702492,0.801435,0.222672,0.00679809,0.951409,0.393639,0.833592,0.628004,0.659638,0.03733,0.0824865,0.376868,0.598062,0.735843,0.922865,0.541916,0.731121,0.439058,0.550732,0.189628,0.718207,0.866372,0.649946,0.426493,0.652626,0.856636,0.180903,0.325073,0.0199497,0.704324,0.697848,0.565658,0.273415,0.243587,0.433673,0.615015,0.226104,0.958643,0.919904,0.074299,0.216024,0.48627,0.725812,0.911527,0.0184705,0.481768,0.952947,0.908035,0.703485,0.370409,0.876766,0.344432,0.119704,0.608922,0.578048,0.687263,0.59461,0.270164,0.175794,0.973434,0.865153,0.468656,0.635697,0.832037,0.699375,0.125817,0.538552,0.630245,0.673693,0.899872,0.823192,0.558762,0.766501,0.0889999,0.70771,0.279386,0.907233,0.537332,0.297613,0.423399,0.865457,0.0827271,0.314835,0.800385,0.0696606,0.89537,0.0140936,0.817863,0.848314,0.643097,0.97447,0.0829988,0.376344,0.223989,0.897469,0.962775,0.0612534,0.713716,0.563167,0.254704,0.503635,0.246275,0.658528,0.0581256,0.335283,0.00260842,0.431,0.175381,0.668049,0.799639,0.197474,0.100232,0.548279,0.0149298,0.450962,0.371519,0.247221,0.755245,0.883067,0.880016,0.932564,0.698455,0.497121,0.694274,0.598186,0.400978,0.941446,0.738514,0.784477,0.87389,0.00601387,0.891911,0.0880504,0.0692143,0.615634,0.471656,0.329191,0.574015,0.864758,0.0497517,0.400648,0.893038,0.88105,0.282178,0.594789,0.363903,0.273368,0.197441,0.551554,0.767308,0.778716,0.800789,0.61501,0.119768,0.886534,0.483613,0.0500517,0.687144,0.208269,0.479154,0.664794,0.26252,0.531716,0.436074,0.758007,0.630256,0.670761,0.54176,0.891677,0.0413751,0.762506,0.820657,0.964371,0.919742,0.704091,0.73408,0.916819,0.195719,0.795031,0.835757,0.378764,0.336587,0.0965854,0.417108,0.638659,0.210325,0.744623,0.133659,0.787571,0.488908,0.297326,0.732209,0.833909,0.660885,0.365051,0.122048,0.0787455,0.173655,0.199415,0.0593713,0.501443,0.273935,0.709518,0.422087,0.84857,0.754686,0.12329,0.387644,0.890341,0.455326,0.0716466,0.20119,0.147499,0.289098,0.191227,0.823827,0.961196,0.952461,0.89365,0.0140681,0.906878,0.537631,0.849933,0.920648,0.8021,0.419318,0.466941,0.592249,0.97909,0.305332,0.388837,0.187108,0.547779,0.892442,0.406564,0.589104,0.480112,0.813532,0.0388504,0.912225,0.93966,0.814014,0.978186,0.50509,0.714596,0.495432,0.110014,0.784241,0.845263,0.584006,0.716046,0.662783,0.666803,0.0638875,0.287765,0.535021,0.481133,0.832471,0.196898,0.491962,0.550292,0.76713,0.024165,0.434608,0.363137,0.928051,0.3733,0.891022,0.848556,0.16332,0.212479,0.453441,0.125221,0.296638,0.907203,0.779015,0.0884425,0.105588,0.887431,0.108379,0.689503,0.887734,0.0702938,0.247632,0.881403,0.329092,0.417699,0.211043,0.214789,0.506092,0.79009,0.648892,0.572315,0.466646,0.383992,0.528918,0.568484,0.518077,0.0506342,0.840007,0.297062,0.0294938,0.212893,0.810992,0.308782,0.703798,0.720492,0.420082,0.465294,0.731336,0.910855,0.480606,0.561075,0.628762,0.733698,0.162195,0.334468,0.118254,0.308087,0.768895,0.194135,0.494403,0.976883,0.524119,0.848488,0.720535,0.772698,0.854991,0.883366,0.715654,0.504661,0.398279,0.368872,0.553787,0.262766,0.796502,0.929412,0.904732,0.397034,0.943091,0.146642,0.230511,0.972126,0.74993,0.654648,0.0615869,0.733551,0.71775,0.311746,0.99781,0.691933,0.0480518,0.531529,0.298508,0.247049,0.849633,0.862411,0.476237,0.0566589,0.0512224,0.866038,0.30442,0.905816,0.869453,0.66439,0.199614,0.475296,0.813188,0.900125,0.889844,0.345782,0.562963,0.0186803,0.373986,0.745799,0.900815,0.823229,0.704669,0.296996,0.835311,0.749913,0.265937,0.562153,0.465205,0.786242,0.737834,0.672537,0.393311,0.752629,0.940912,0.363379,0.0617329,0.193644,0.0345341,0.608738,0.00940669,0.174037,0.22537,0.22425,0.878865,0.743897,0.542121,0.971131,0.869479,0.0414712,0.59811,0.406857,0.0468026,0.209703,0.623045,0.466597,0.334287,0.567345,0.437912,0.847638,0.319702,0.903022,0.0217249,0.3011,0.452599,0.803412,0.534694,0.743594,0.804609,0.826965,0.343927,0.352582,0.89506,0.00175261,0.281954,0.583166,0.399481,0.791421,0.84941,0.652328,0.00921339,0.686421,0.342263,0.7342,0.228856,0.131718,0.997556,0.39162,0.352281,0.654044,0.701321,0.742402,0.487209,0.845654,0.282982,0.248696,0.869843,0.130697,0.817193,0.913658,0.81432,0.867146,0.404682,0.738676,0.688488,0.589858,0.945146,0.580036,0.965003,0.207493,0.319508,0.506025,0.724277,0.355768,0.713086,0.266147,0.710375,0.891662,0.796863,0.596395,0.498549,0.437621,0.167652,0.123684,0.692423,0.770411,0.86356,0.853513,0.0977322,0.503692,0.70383,0.4824,0.40491,0.193874,0.206587,0.653704,0.611502,0.628896,0.793196,0.762882,0.192661,0.0325945,0.487316,0.637953,0.72383,0.788707,0.838087,0.529592,0.145806,0.445407,0.504411,0.33558,0.729628,0.0441377,0.641974,0.986086,0.991228,0.812794,0.533306,0.148775,0.477026,0.975479,0.995758,0.349453,0.0256377,0.0779403,0.839088,0.489504,0.0947334,0.387199,0.45662,0.512035,0.969515,0.929123,0.764163,0.0201276,0.996082,0.568706,0.442881,0.186567,0.939114,0.79086,0.540124,0.0645054,0.101058,0.0680228,0.517847,0.889907,0.146962,0.755565,0.597392,0.834285,0.159446,0.687228,0.182795,0.810493,0.234397,0.64151,0.505503,0.317852,0.132818,0.128542,0.611719,0.929878,0.851947,0.126387,0.287783,0.199405,0.986474,0.853522,0.663734,0.128307,0.564039,0.815756,0.537823,0.498853,0.471096,0.698249,0.853147,0.413372,0.887774,0.629389,0.0745798,0.463472,0.603121,0.9,0.399765,0.319497,0.86823,0.53467,0.409362,0.262323,0.292392,0.375677,0.967133,0.432531,0.848268,0.929779,0.834915,0.851683,0.115783,0.890942,0.994564,0.530899,0.765878,0.698699,0.739607,0.357746,0.954974,0.755865,0.406087,0.115394,0.0769154,0.769111,0.663113,0.853574,0.220349,0.802931,0.506473,0.0932817,0.498062,0.625884,0.174267,0.733311,0.6012,0.0476182,0.670538,0.33509,0.0778913,0.508603,0.763169,0.392882,0.230061,0.658618,0.826565,0.553592,0.417176,0.157295,0.932779,0.443582,0.323243,0.443271,0.28062,0.944768,0.122744,0.733744,0.627833,0.0361874,0.289111,0.943359,0.621698,0.436385,0.996765,0.292487,0.863129,0.339487,0.545014,0.33797,0.871318,0.0406788,0.736432,0.565516,0.607715,0.19135,0.143732,0.830379,0.268819,0.589765,0.348438,0.851102,0.348214,0.850546,0.162512,0.0630088,0.733448,0.702065,0.750998,0.423956,0.272507,0.00121474,0.364161,0.123833,0.195653,0.890176,0.169711,0.240758,0.562947,0.605207,0.44417,0.723914,0.261969,0.74093,0.0205951,0.716981,0.628456,0.143351,0.989761,0.981299,0.81583,0.206092,0.775698,0.0264113,0.985499,0.554056,0.958617,0.924298,0.219977,0.925743,0.149895,0.374112,0.885336,0.82843,0.10936,0.767345,0.234713,0.483101,0.64468,|0.199208,0.894808,0.504345,0.0638546,0.483928,0.663089,0.181753,0.702197,0.797797,0.601539,0.441515,0.0996868,0.329476,0.0946611,0.103394,0.0934421,0.989524,0.09876,0.504279,0.20626,0.158266,0.806114,0.761864,0.829985,0.288277,0.597338,0.259494,0.0269144,0.646105,0.489199,0.489843,0.615928,0.217047,0.651849,0.38911,0.189577,0.343692,0.634198,0.221633,0.00740147,0.822168,0.529428,0.0203396,0.369209,0.917376,0.830364,0.834797,0.998865,0.0777489,0.626474,0.0843785,0.579032,0.153425,0.542341,0.920043,0.528399,0.979979,0.0641882,0.480524,0.280649,0.590954,0.273272,0.264989,0.136485,0.812817,0.294494,0.830206,0.326935,0.126714,0.215206,0.385347,0.392263,0.163136,0.393878,0.963993,0.719003,0.158656,0.479383,0.699662,0.87286,0.904335,0.605036,0.708264,0.170749,0.276497,0.286494,0.826081,0.0880455,0.0604208,0.0884988,0.746035,0.114421,0.848257,0.950433,0.551097,0.23264,0.7183,0.625151,0.198525,0.881784,0.72829,0.580519,0.00491011,0.990507,0.200051,0.560693,0.725866,0.87544,0.985639,0.607172,0.693581,0.804397,0.448636,0.283348,0.134973,0.654007,0.408892,0.851172,0.802575,0.430165,0.116445,0.422404,0.167658,0.859672,0.552048,0.91463,0.922807,0.916197,0.524208,0.345373,0.588953,0.223382,0.158268,0.626421,0.453678,0.553683,0.348926,0.872658,0.0650021,0.214415,0.777771,0.254122,0.65813,0.0437477,0.0133026,0.691432,0.390077,0.784622,0.542665,0.774544,0.610303,0.367954,0.649747,0.74129,0.994417,0.0172476,0.549717,0.445473,0.20835,0.745096,0.407268,0.444822,0.299535,0.659843,0.289713,0.882216,0.712288,0.606526,0.307371,0.0430967,0.0416092,0.97973,0.257839,0.609258,0.708916,0.291532,0.429802,0.227979,0.0156857,0.57833,0.679169,0.331331,0.457524,0.999609,0.319205,0.773409,0.901887,0.600684,0.400788,0.153035,0.308038,0.685269,0.608959,0.94275,0.893691,0.183897,0.113049,0.880579,0.80403,0.598963,0.360899,0.996523,0.846896,0.675237,0.953992,0.732512,0.974782,0.519635,0.940983,0.331169,0.667938,0.997455,0.647156,0.853095,0.120136,0.807174,0.68578,0.269043,0.261926,0.613323,0.159344,0.595912,0.716819,0.206212,0.536086,0.399906,0.755242,0.526721,0.678207,0.707228,0.71644,0.303475,0.0793433,0.122741,0.49851,0.161271,0.744758,0.366379,0.0478464,0.419875,0.9732,0.779759,0.374979,0.0313419,0.541185,0.41495,0.998412,0.218485,0.0341246,0.513446,0.588206,0.133041,0.186842,0.782212,0.342424,0.74087,0.261669,0.522497,0.899158,0.63613,0.208328,0.628772,0.650219,0.956245,0.0565969,0.123181,0.22476,0.00655943,0.17756,0.157133,0.21636,0.145602,0.299294,0.324373,0.293402,0.988021,0.433436,0.470991,0.523137,0.710258,0.031571,0.465218,0.553147,0.946501,0.603095,0.122046,0.278457,0.330985,0.166042,0.539257,0.780489,0.769947,0.685534,0.769306,0.220332,0.600486,0.143677,0.0749997,0.762129,0.22824,0.0953367,0.242663,0.0346739,0.668125,0.970839,0.406717,0.0595948,0.404945,0.174546,0.666985,0.241154,0.13018,0.132553,0.298946,0.761405,0.210542,0.348095,0.234955,0.626552,0.543317,0.730226,0.714755,0.570739,0.128184,0.375735,0.668364,0.889023,0.922263,0.443022,0.335166,0.731186,0.0590665,0.130781,0.75928,0.243259,0.171907,0.0318667,0.925183,0.389854,0.0511678,0.7337,0.243613,0.18053,0.730123,0.92844,0.929236,0.401758,0.740114,0.207712,0.986139,0.859551,0.940227,0.0862839,0.10615,0.538512,0.330287,0.465544,0.650577,0.20328,0.0241336,0.558897,0.367701,0.843,0.179042,0.389793,0.300237,0.0475534,0.850164,0.221592,0.0256641,0.142305,0.721824,0.374752,0.687846,0.0183294,0.250584,0.0948637,0.183552,0.357281,0.517008,0.953938,0.0320543,0.0607868,0.535407,0.186009,0.315148,0.679753,0.462919,0.661181,0.801387,0.289358,0.464106,0.408898,0.498134,0.892198,0.628164,0.361498,0.267522,0.549624,0.466137,0.239555,0.679197,0.249906,0.716407,0.764082,0.876622,0.522566,0.842751,0.92968,0.92817,0.615225,0.542281,0.873235,0.223102,0.558241,0.13643,0.452057,0.27173,0.35662,0.254205,0.991572,0.46058,0.457164,0.0714408,0.246265,0.635924,0.1458,0.0374802,0.0749205,0.586142,0.647854,0.682151,0.789012,0.999381,0.326321,0.00439054,0.451643,0.151352,0.0636389,0.488371,0.078231,0.127617,0.538809,0.302693,0.384664,0.476174,0.995785,0.830468,0.817903,0.897654,0.759366,0.869685,0.592441,0.678269,0.470343,0.516357,0.832586,0.687504,0.962759,0.179129,0.338802,0.645267,0.435674,0.589629,0.367856,0.405888,0.493763,0.996284,0.431833,0.430265,0.134064,0.393933,0.018866,0.0821003,0.998564,0.284238,0.772683,0.0838713,0.907585,0.131635,0.806057,0.735294,0.133684,0.665095,0.460868,0.934698,0.701126,0.195495,0.876041,0.172328,0.854253,0.432568,0.188577,0.285609,0.546546,0.4609,0.678148,0.175388,0.376925,0.530791,0.12282,0.485095,0.453551,0.119807,0.582722,0.242668,0.898724,0.920125,0.822955,0.921457,0.586054,0.0369923,0.332829,0.377783,0.348758,0.310161,0.75926,0.475476,0.784807,0.034036,0.990879,0.0892917,0.716625,0.798937,0.981169,0.552517,0.618489,0.368908,0.818075,0.726682,0.352648,0.076848,0.319827,0.145192,0.946064,0.108704,0.954777,0.051162,0.696665,0.514705,0.219945,0.948682,0.152946,0.239346,0.179597,0.800932,0.897368,0.932468,0.44814,0.130879,0.870115,0.71968,0.868535,0.587021,0.520659,0.00937879,0.838577,0.645063,0.613749,0.585912,0.645925,0.734267,0.0343216,0.93159,0.409602,0.800904,0.681278,0.476528,0.561545,0.0426659,0.519844,0.477508,0.72475,0.11946,0.622684,0.464495,0.307315,0.140081,0.618329,0.985,0.046892,0.735518,0.891328,0.475066,0.15741,0.191128,0.730424,0.831282,0.401741,0.722611,0.786917,0.497872,0.958749,0.676956,0.116123,0.551375,0.385983,0.707322,0.451289,0.245605,0.690485,0.972659,0.386776,0.0584934,0.13637,0.0428135,0.4654,0.0454106,0.115376,0.291095,0.921156,0.565917,0.727837,0.159697,0.936255,0.983444,0.133668,0.289025,0.51909,0.609313,0.286481,0.337347,0.96285,0.656545,0.67412,0.3655,0.771903,0.354447,0.171829,0.249038,0.172373,0.280117,0.911895,0.966449,0.991283,0.728499,0.521344,0.68266,0.546987,0.0687566,0.031821,0.0820085,0.747507,0.0427508,0.169413,0.202587,0.127159,0.418092,0.762129,0.821678,0.428663,0.526468,0.91592,0.472741,0.441052,0.447732,0.469117,0.718322,0.339742,0.742382,0.188672,0.974082,0.087209,0.556195,0.0446829,0.0117582,0.0484349,0.200336,0.341427,0.603209,0.494698,0.919131,0.972813,0.754941,0.0776145,0.161716,0.805346,0.138422,0.212913,0.268472,0.68226,0.361829,0.413703,0.151111,0.570581,0.296901,0.0192609,0.659821,0.947384,0.360134,0.0735645,0.313873,0.668985,0.859738,0.0474621,0.861378,0.991307,0.778262,0.593863,0.58134,0.933759,0.4864,0.760286,0.636894,0.816296,0.0902379,0.0910153,0.216015,0.880204,0.247639,0.080609,0.54169,0.978958,0.34773,0.464365,0.16554,0.794712,0.245454,0.0954731,0.736228,0.275692,0.274427,0.108885,0.856472,0.0425904,0.187838,0.28191,0.892997,0.110474,0.594067,0.192728,0.255044,0.834131,0.325625,0.76491,0.27309,0.0870482,0.876913,0.495241,0.513136,0.144872,0.918491,0.644263,0.690465,0.916619,0.62291,0.214786,0.0385273,0.805848,0.83591,0.630487,0.206372,0.0533209,0.0113882,0.929164,0.8322,0.193812,0.869754,0.905992,0.218749,0.264556,0.809414,0.175201,0.208778,0.438204,0.305785,0.415618,0.443538,0.119917,0.219159,0.487314,0.159764,0.0603319,0.767316,0.681219,0.283323,0.927568,0.797132,0.223261,0.49249,0.599903,0.793491,0.801589,0.707311,0.490179,0.17239,0.551716,0.699107,0.725274,0.98924,0.468143,0.492351,0.974083,0.712492,0.963338,0.411815,0.894985,0.943775,0.309516,0.640763,0.102198,0.667698,0.467809,0.093767,0.376987,0.581333,0.266081,0.0158259,0.564176,0.111012,0.918762,0.247411,0.49337,0.668929,0.74795,0.755482,0.837172,0.496457,0.231399,0.36656,0.432412,0.180458,0.361092,0.438739,0.0527516,0.763633,0.136354,0.0779627,0.071072,0.443895,0.354113,0.532505,0.435404,0.266392,0.934962,0.57512,0.112055,0.774717,0.466059,0.1531,0.138949,0.740223,0.726382,0.224393,0.561277,0.35312,0.133924,0.951912,0.675126,0.697984,0.665719,0.769264,0.525961,0.668837,0.954997,0.303113,0.450043,0.778968,0.299475,0.705916,0.912196,0.686701,0.968068,0.291743,0.89572,0.0231989,0.880589,0.533955,0.608439,0.492719,0.363578,0.439217,0.418469,0.526625,0.91215,0.491957,0.529241,0.0684928,0.871251,0.0225444,0.324328,0.097635,0.500253,0.9663,0.0459974,0.237945,0.451228,0.552106,0.168848,0.0673489,0.0627625,0.485688,0.569758,0.0798903,0.950804,0.122714,0.25583,0.376481,0.533271,0.136261,0.950472,0.5232,0.415216,0.164422,0.390567,0.285785,0.460073,0.326689,0.417395,0.20564,0.848,0.354953,0.444371,0.899638,0.694586,0.222712,0.985075,0.536338,0.768641,0.105901,0.51085,0.0492418,0.820373,0.280919,0.797464,0.954944,0.388424,0.779448,0.915087,0.17038,0.631905,0.094837,0.836613,0.909083,0.224868,0.311268,0.757248,0.673793,0.804621,0.981589,0.384171,0.155622,0.171976,0.640395,0.228952,0.708021,0.315016,0.033605,0.282926,0.189506,0.0606682,0.512166,0.152699,0.231643,0.734999,0.803728,0.524125,0.244829,0.0460308,0.135861,0.793913,0.164421,0.402209,0.531975,0.474901,0.44592,0.651036,0.703993,0.876656,0.304142,0.440098,0.55939,0.640383,0.491544,0.567422,0.212304,0.340835,0.29059,0.701407,0.777712,0.20652,0.595253,0.487197,0.940242,0.310794,0.0549232,0.561542,0.583279,0.319918,0.717214,0.652136,0.299645,0.628224,0.0372914,0.471341,0.831044,0.328126,0.828708,0.673275,0.563165,|0.248329,0.653508,0.912094,0.102687,0.0518324,0.916378,0.274001,0.383663,0.0455449,0.423802,0.035589,0.248348,0.876952,0.602202,0.0963355,0.847383,0.849459,0.541981,0.506239,0.20102,0.870764,0.0441644,0.433322,0.477807,0.877715,0.0412357,0.102524,0.546953,0.0927745,0.793336,0.147558,0.204334,0.996087,0.978015,0.72512,0.0554574,0.46967,0.579582,0.358398,0.170911,0.840109,0.895249,0.693204,0.347963,0.297358,0.047605,0.285523,0.82544,0.275027,0.82634,0.68718,0.718821,0.38987,0.167388,0.451216,0.519664,0.791099,0.382022,0.395614,0.430538,0.0777135,0.0427083,0.583093,0.964405,0.137343,0.123667,0.889642,0.546463,0.989422,0.339473,0.86641,0.881139,0.762478,0.93908,0.875879,0.353987,0.147119,0.20002,0.9033,0.715634,0.0507345,0.0782481,0.426479,0.982867,0.660557,0.424462,0.871721,0.775035,0.873144,0.0530472,0.099779,0.819719,0.162843,0.904964,0.557658,0.780068,0.544854,0.446555,0.733119,0.351831,0.53626,0.648301,0.145783,0.984396,0.542561,0.968253,0.357515,0.441843,0.180284,0.458903,0.939417,0.16217,0.336673,0.375296,0.892038,0.167202,0.00909007,0.841955,0.479664,0.323316,0.84834,0.789324,0.801919,0.0832748,0.3275,0.620134,0.113279,0.710699,0.55601,0.897692,0.735253,0.403988,0.0844078,0.752776,0.327569,0.383064,0.895539,0.66469,0.360229,0.157676,0.392292,0.87195,0.095511,0.808326,0.907318,0.292702,0.480136,0.132002,0.0905137,0.825959,0.189553,0.424294,0.124855,0.253958,0.79346,0.68952,0.463705,0.928603,0.512015,0.722622,0.888327,0.52151,0.140807,0.795926,0.313196,0.611957,0.555103,0.644219,0.736449,0.893534,0.472738,0.0916161,0.735305,0.433156,0.31155,0.772103,0.877399,0.989896,0.0484764,0.609933,0.708162,0.0324243,0.953185,0.679307,0.262571,0.972975,0.427483,0.497005,0.487108,0.932221,0.989385,0.129605,0.636039,0.224775,0.665794,0.613933,0.978323,0.919659,0.218685,0.6957,0.0283742,0.69702,0.332705,0.445037,0.1604,0.441775,0.343439,0.450652,0.125218,0.69342,0.343106,0.623311,0.05126,0.905259,0.353857,0.802668,0.155055,0.404773,0.437971,0.501041,0.387511,0.114232,0.478384,0.292579,0.0398866,0.043927,0.466815,0.172265,0.69889,0.290211,0.665462,0.979005,0.413925,0.47725,0.561653,0.0744987,0.55332,0.518682,0.395885,0.778195,0.470715,0.137573,0.999851,0.384952,0.138151,0.66496,0.585527,0.956937,0.74968,0.627637,0.859216,0.451148,0.896736,0.971071,0.965222,0.650212,0.758708,0.291174,0.259449,0.0488802,0.338969,0.836637,0.208313,0.604484,0.311261,0.0807679,0.131665,0.728818,0.583905,0.385368,0.330192,0.362835,0.979109,0.544147,0.918259,0.529222,0.192899,0.809113,0.511779,0.570512,0.91437,0.55092,0.627957,0.187508,0.0297015,0.553268,0.682429,0.502355,0.212291,0.644446,0.0139295,0.0327811,0.0782661,0.559047,0.918498,0.695826,0.16748,0.753074,0.967436,0.586114,0.178892,0.106284,0.469077,0.382364,0.745732,0.831913,0.395757,0.579294,0.490834,0.663621,0.806555,0.148659,0.869705,0.35272,0.042069,0.330624,0.939348,0.119964,0.731552,0.0469067,0.429897,0.845335,0.937224,0.2157,0.247548,0.660535,0.103196,0.153402,0.17439,0.565334,0.314706,0.0144171,0.533606,0.235075,0.370461,0.742191,0.0449187,0.0760008,0.886253,0.189842,0.347012,0.556191,0.596275,0.241013,0.130543,0.11557,0.732395,0.42871,0.897,0.511216,0.933657,0.753579,0.703233,0.709889,0.982704,0.438172,0.450778,0.0365129,0.916844,0.0350572,0.814941,0.658294,0.442814,0.494474,0.500295,0.676026,0.0944238,0.603053,0.817565,0.103882,0.151147,0.999077,0.0776844,0.058835,0.526053,0.741569,0.820537,0.664674,0.649437,0.367634,0.451288,0.152105,0.0443261,0.792492,0.832843,0.994061,0.433045,0.116565,0.384531,0.0848054,0.377018,0.53831,0.273227,0.228754,0.705445,0.165581,0.0480543,0.196284,0.969457,0.616098,0.440865,0.381421,0.690241,0.214919,0.0220526,0.0357942,0.778598,0.550324,0.775173,0.485744,0.44291,0.604838,0.670841,0.0479697,0.512549,0.967432,0.402115,0.435344,0.266416,0.0710013,0.123262,0.301486,0.599163,0.740529,0.72358,0.446951,0.436662,0.96987,0.741479,0.252373,0.0981137,0.822836,0.846086,0.13049,0.74283,0.00912857,0.916374,0.364621,0.734008,0.275925,0.237,0.156918,0.502988,0.418841,0.433016,0.688975,0.458777,0.529303,0.013243,0.635285,0.0262622,0.372157,0.257805,0.137562,0.516925,0.811962,0.947025,0.19523,0.810116,0.60808,0.355053,0.951906,0.899855,0.454954,0.7385,0.447597,0.264812,0.569856,0.593214,0.000240803,0.0624831,0.309338,0.932756,0.729602,0.605679,0.285835,0.343953,0.716795,0.297983,0.615174,0.9182,0.19738,0.755927,0.221024,0.985967,0.187865,0.843123,0.0644431,0.187541,0.000681341,0.32284,0.0685781,0.123176,0.578089,0.922098,0.10122,0.112981,0.197711,0.189069,0.954223,0.111935,0.194409,0.418435,0.407402,0.745386,0.414689,0.586461,0.527965,0.697032,0.973581,0.983172,0.964321,0.337907,0.82454,0.167988,0.0312109,0.629345,0.399613,0.0876285,0.748957,0.824308,0.680181,0.705842,0.584551,0.152393,0.206227,0.760459,0.911345,0.737188,0.667209,0.621925,0.77067,0.265812,0.384995,0.771233,0.907668,0.0548698,0.291988,0.33946,0.84162,0.0442654,0.23623,0.619254,0.480888,0.116525,0.66986,0.821967,0.136363,0.137303,0.494515,0.0190289,0.0332088,0.780014,0.66113,0.565357,0.418429,0.971178,0.902894,0.13881,0.780406,0.003654,0.0907245,0.510816,0.928273,0.852174,0.305793,0.32039,0.873401,0.506899,0.877248,0.318507,0.0608636,0.431403,0.442812,0.0262093,0.592393,0.885768,0.285457,0.321988,0.439408,0.0327303,0.929303,0.190481,0.164141,0.691692,0.102097,0.278179,0.519222,0.806814,0.0108961,0.360304,0.165954,0.127392,0.901511,0.821937,0.539876,0.565767,0.377417,0.112845,0.868171,0.678295,0.291849,0.906445,0.521913,0.979451,0.0604899,0.810548,0.663847,0.249527,0.645964,0.040769,0.207147,0.877277,0.0898191,0.525324,0.132232,0.0830956,0.687047,0.734598,0.940281,0.824559,0.124407,0.918952,0.396794,0.935768,0.492007,0.611352,0.812455,0.328013,0.02665,0.50598,0.224211,0.998968,0.172333,0.0154635,0.87268,0.895979,0.19778,0.386582,0.268124,0.360027,0.207681,0.125052,0.794151,0.522947,0.478954,0.693564,0.912479,0.799598,0.015114,0.607201,0.341181,0.955692,0.1068,0.820168,0.959473,0.278676,0.936264,0.989872,0.321128,0.081207,0.938738,0.260854,0.917084,0.62971,0.49092,0.724906,0.632409,0.326342,0.507192,0.314156,0.7114,0.0163238,0.213498,0.785662,0.514902,0.256619,0.915329,0.910831,0.698935,0.96189,0.364582,0.408542,0.94119,0.844304,0.260228,0.374379,0.359558,0.945183,0.447375,0.410787,0.635442,0.969778,0.191291,0.885844,0.413829,0.483539,0.0729671,0.883347,0.948868,0.200873,0.369429,0.180442,0.651659,0.754715,0.4564,0.449577,0.113501,0.107976,0.0720701,0.249659,0.134523,0.973743,0.00565088,0.0815113,0.820361,0.447066,0.149544,0.631362,0.227448,0.140669,0.278108,0.559026,0.638216,0.804845,0.194615,0.749693,0.133948,0.720658,0.637043,0.112156,0.0269602,0.617839,0.0664595,0.190681,0.617227,0.482774,0.89601,0.797488,0.264141,0.8324,0.53232,0.184028,0.342362,0.597448,0.135615,0.976184,0.977111,0.12344,0.988896,0.93414,0.187089,0.301191,0.732452,0.950588,0.932482,0.711151,0.371136,0.325505,0.922262,0.339059,0.0238628,0.234619,0.257894,0.568293,0.845227,0.094017,0.245861,0.122268,0.120055,0.2439,0.249046,0.155935,0.103325,0.493539,0.532659,0.659627,0.0500621,0.594302,0.182365,0.631823,0.0983557,0.70281,0.559685,0.305927,0.433966,0.147419,0.298831,0.454144,0.00606912,0.324121,0.495004,0.440686,0.91933,0.237765,0.393637,0.359517,0.375569,0.155507,0.556916,0.67889,0.735608,0.890697,0.662733,0.635843,0.0712094,0.52217,0.831219,0.395891,0.72416,0.504806,0.206784,0.557911,0.513344,0.258267,0.739453,0.0312564,0.729103,0.214526,0.238142,0.52058,0.388239,0.710366,0.673302,0.448975,0.169939,0.7584,0.422381,0.343336,0.836842,0.591098,0.521358,0.282126,0.353026,0.259952,0.902665,0.759881,0.613021,0.882192,0.22129,0.432913,0.191528,0.120333,0.632491,0.419325,0.433626,0.298608,0.308309,0.732661,0.581638,0.296153,0.358243,0.0913916,0.0520709,0.849382,0.612161,0.640191,0.794007,0.758321,0.234764,0.977935,0.662289,0.129861,0.546786,0.394285,0.202855,0.193757,0.201837,0.944409,0.946345,0.0720813,0.454564,0.446078,0.391658,0.494958,0.38232,0.454492,0.540995,0.142884,0.498336,0.298463,0.0878787,0.24612,0.769111,0.930987,0.483333,0.625064,0.917286,0.701446,0.273339,0.981934,0.519758,0.666948,0.334115,0.630378,0.813766,0.525253,0.79465,0.308213,0.447121,0.0333983,0.393705,0.959767,0.795166,0.0456687,0.482165,0.691088,0.883118,0.338458,0.165354,0.393853,0.0604884,0.837556,0.718284,0.0507269,0.661127,0.490563,0.858684,0.735952,0.677561,0.841647,0.9716,0.0807645,0.745523,0.42546,0.967453,0.586546,0.760982,0.550248,0.903927,0.489263,0.540833,0.792497,0.0761926,0.600272,0.714929,0.731438,0.330503,0.282954,0.407705,0.227716,0.747031,0.390054,0.0195927,0.565103,0.542036,0.307861,0.646451,0.0428373,0.951672,0.862654,0.527203,0.643628,0.808079,0.824595,0.183232,0.504872,0.25303,0.374118,0.911696,0.874586,0.761361,0.0638901,0.655902,0.233567,0.191494,0.193423,0.667069,0.949174,0.554937,0.0143989,0.330088,0.582695,0.0623879,0.469768,0.0851005,0.518544,0.274414,0.330538,0.744647,0.0872397,0.794847,0.87611,0.506567,0.795952,0.00192785,0.221743,0.394896,0.200558,0.966712,0.704764,0.147949,0.202732,0.0689706,0.23181,0.655623,0.934934,0.647283,0.931755,0.807135,|0.69283,0.0529954,0.288027,0.492526,0.666222,0.698834,0.878183,0.598996,0.633452,0.843389,0.932557,0.204265,0.163045,0.677632,0.990155,0.640384,0.274853,0.0588629,0.0869225,0.744568,0.716977,0.929845,0.971712,0.80531,0.41123,0.224797,0.687757,0.438576,0.687519,0.808505,0.000231087,0.11898,0.95443,0.531285,0.594386,0.489966,0.969031,0.179536,0.323735,0.220306,0.691824,0.348323,0.312268,0.620899,0.223526,0.355343,0.209431,0.611031,0.461232,0.646788,0.190449,0.170099,0.154975,0.630295,0.473859,0.169791,0.305084,0.120941,0.446637,0.612285,0.985028,0.848507,0.111176,0.0574567,0.582827,0.529978,0.229651,0.641072,0.0543956,0.104856,0.128358,0.374933,0.759126,0.879161,0.182254,0.236445,0.0088833,0.648274,0.70588,0.852651,0.197273,0.138031,0.503907,0.394608,0.696815,0.140069,0.163408,0.955799,0.709965,0.197691,0.0555435,0.19736,0.903981,0.865183,0.634643,0.396889,0.0879902,0.348739,0.945195,0.0303536,0.147323,0.325862,0.71753,0.405445,0.674784,0.576806,0.624876,0.655654,0.316308,0.251849,0.856021,0.566718,0.236113,0.920612,0.0486647,0.686549,0.146297,0.400801,0.0946612,0.546578,0.677918,0.342855,0.233552,0.859098,0.0441307,0.115276,0.549715,0.999458,0.293324,0.686416,0.272382,0.747036,0.568316,0.827157,0.3317,0.221781,0.1715,0.133221,0.900551,0.381179,0.0799213,0.0139772,0.247855,0.839614,0.894596,0.102394,0.300667,0.26258,0.686455,0.332303,0.115688,0.11046,0.484652,0.481904,0.374633,0.121799,0.280874,0.0967516,0.342145,0.230522,0.422096,0.65142,0.645709,0.793772,0.0707356,0.315603,0.272392,0.240223,0.567385,0.399063,0.688864,0.15582,0.457604,0.314016,0.86891,0.746659,0.559844,0.611122,0.943226,0.111765,0.820502,0.195086,0.780177,0.204027,0.294386,0.728533,0.70461,0.618175,0.0874193,0.248958,0.300223,0.500882,0.556578,0.9828,0.328463,0.185186,0.411509,0.101635,0.715413,0.713299,0.199843,0.698514,0.464699,0.613269,0.443822,0.735594,0.704256,0.00598866,0.456065,0.870909,0.0342602,0.984448,0.372567,0.0600954,0.0968408,0.747587,0.999865,0.833645,0.433694,0.599209,0.019309,0.42634,0.807878,0.608969,0.325242,0.813412,0.289642,0.834436,0.518041,0.582585,0.623292,0.128307,0.889754,0.500834,0.299331,0.49579,0.512768,0.419847,0.00593507,0.539409,0.861562,0.862934,0.684254,0.291497,0.342952,0.305419,0.0420275,0.0963346,0.154403,0.205444,0.489049,0.46865,0.380849,0.188313,0.89756,0.83654,0.488071,0.535741,0.361729,0.324356,0.31408,0.443741,0.541717,0.274708,0.411936,0.953266,0.546549,0.827239,0.0715153,0.845983,0.512905,0.990456,0.194242,0.645474,0.562971,0.169366,0.17343,0.986009,0.411056,0.181204,0.379668,0.106835,0.0454315,0.0866966,0.41366,0.4868,0.885943,0.645305,0.735342,0.900692,0.41764,0.596795,0.377832,0.112492,0.0362308,0.924272,0.0791788,0.955988,0.543885,0.282423,0.966789,0.957264,0.955669,0.274837,0.260553,0.0203268,0.194775,0.451606,0.182609,0.432264,0.0259563,0.62486,0.174693,0.970536,0.457762,0.309666,0.996481,0.137698,0.0817974,0.500372,0.930121,0.770912,0.942974,0.99016,0.127204,0.28596,0.941238,0.930354,0.350666,0.340414,0.633415,0.0221227,0.761983,0.891367,0.375308,0.336172,0.783008,0.261385,0.116061,0.081221,0.108859,0.142903,0.528234,0.732959,0.477925,0.301426,0.264321,0.795188,0.932419,0.596606,0.244171,0.506342,0.7899,0.114079,0.141185,0.202235,0.15107,0.164938,0.334977,0.660653,0.237105,0.681965,0.754349,0.0267572,0.0956912,0.580365,0.805011,0.421492,0.176389,0.495429,0.0822901,0.0854936,0.891197,0.980458,0.196345,0.86221,0.835677,0.521388,0.825933,0.522451,0.197545,0.0305489,0.411226,0.902782,0.794548,0.872095,0.333109,0.9198,0.79979,0.99963,0.89807,0.563552,0.430072,0.52725,0.150403,0.987802,0.412704,0.735525,0.129515,0.322156,0.0950807,0.529897,0.492957,0.192205,0.0517079,0.939312,0.0310182,0.340459,0.883701,0.577991,0.525659,0.738338,0.0368421,0.135409,0.231753,0.582797,0.525027,0.804907,0.704732,0.673517,0.5009,0.195988,0.727691,0.398479,0.638638,0.35772,0.400709,0.279757,0.891022,0.996732,0.323866,0.757944,0.646588,0.746233,0.10981,0.175567,0.239999,0.934942,0.219643,0.535373,0.631155,0.532038,0.437805,0.0939832,0.287916,0.664789,0.0315763,0.0376727,0.26229,0.95137,0.0848212,0.980256,0.0930812,0.60106,0.32076,0.742336,0.379166,0.943985,0.379998,0.477289,0.646377,0.952194,0.410495,0.372483,0.938094,0.211069,0.741382,0.314961,0.102884,0.176095,0.0108626,0.704988,0.337886,0.419303,0.198252,0.285815,0.0256826,0.726334,0.767757,0.888135,0.147133,0.214122,0.23733,0.451332,0.0500469,0.500772,0.28507,0.642783,0.79233,0.278533,0.354642,0.322223,0.295078,0.867301,0.872883,0.917077,0.811464,0.264793,0.556254,0.0889807,0.417534,0.880953,0.922813,0.878951,0.0641868,0.371814,0.194644,0.216066,0.133869,0.335057,0.832659,0.80887,0.437417,0.375055,0.833459,0.695038,0.566627,0.27889,0.255578,0.0697032,0.288897,0.221376,0.21563,0.0993317,0.0572273,0.597637,0.37855,0.892688,0.951883,0.245923,0.561819,0.709144,0.0176499,0.323562,0.432916,0.209262,0.783609,0.839743,0.180553,0.309765,0.941269,0.213348,0.0514554,0.893307,0.545213,0.643358,0.377577,0.867075,0.057703,0.843517,0.134081,0.32414,0.963126,0.467503,0.69681,0.538737,0.881566,0.404291,0.119274,0.0119187,0.388171,0.599782,0.784414,0.0318586,0.201362,0.885827,0.151902,0.442119,0.0247718,0.294431,0.217629,0.503852,0.286596,0.492993,0.759907,0.777467,0.00265235,0.0982358,0.8729,0.505361,0.474051,0.438503,0.426187,0.135955,0.449084,0.189137,0.485521,0.0747545,0.205714,0.491282,0.55247,0.843939,0.01248,0.138294,0.210846,0.285259,0.850257,0.990685,0.00807869,0.514243,0.675819,0.437892,0.928703,0.415986,0.0242558,0.979508,0.6173,0.457688,0.0923876,0.25238,0.262279,0.227756,0.0612431,0.540365,0.143058,0.60791,0.650512,0.853378,0.67312,0.891668,0.153546,0.766292,0.471098,0.478367,0.113226,0.156637,0.240086,0.0888532,0.518595,0.954837,0.501026,0.0437579,0.629143,0.62368,0.101271,0.11782,0.478385,0.926463,0.621739,0.350287,0.769044,0.716492,0.757536,0.410546,0.882893,0.909848,0.34183,0.465358,0.76696,0.683586,0.865032,0.473621,0.303196,0.128816,0.0126458,0.883797,0.559435,0.564808,0.0573425,0.247412,0.270553,0.549343,0.471063,0.241259,0.0127611,0.649098,0.797109,0.395904,0.448807,0.507164,0.418389,0.0196135,0.100187,0.881203,0.0153503,0.628848,0.853498,0.491361,0.453311,0.0332931,0.664859,0.730423,0.866225,0.938029,0.0701108,0.508834,0.405752,0.468003,0.283484,0.160857,0.484116,0.767541,0.659644,0.11797,0.189333,0.645235,0.451014,0.851344,0.325318,0.532745,0.542724,0.33039,0.368951,0.126108,0.615671,0.331727,0.556299,0.219117,0.516133,0.938681,0.0983569,0.425675,0.487211,0.582697,0.335325,0.970022,0.712236,0.669356,0.569399,0.146948,0.50933,0.00565898,0.438065,0.625942,0.108773,0.108736,0.227531,0.563128,0.19547,0.955785,0.81452,0.500645,0.334981,0.746083,0.352902,0.58143,0.0133086,0.646074,0.0857293,0.968929,0.595971,0.120065,0.586546,0.591902,0.745128,0.483207,0.464807,0.936996,0.844769,0.208636,0.22038,0.716819,0.275745,0.604901,0.6393,0.543191,0.421749,0.388972,0.655892,0.834713,0.706239,0.369308,0.218,0.311683,0.0846888,0.543094,0.551673,0.0898986,0.322942,0.266839,0.0732152,0.467135,0.675508,0.616061,0.626391,0.345294,0.138873,0.855811,0.438075,0.128667,0.814157,0.418745,0.967107,0.528362,0.0358427,0.775969,0.970361,0.253137,0.762847,0.815969,0.668961,0.432436,0.984952,0.580186,0.146659,0.170302,0.253351,0.440409,0.129719,0.291899,0.153859,0.566619,0.307382,0.680815,0.360186,0.462145,0.757122,0.940533,0.414536,0.930222,0.759794,0.140407,0.215359,0.420508,0.0836068,0.797735,0.902899,0.672568,0.241136,0.919414,0.837604,0.938913,0.256417,0.218069,0.848114,0.449257,0.571784,0.827517,0.62962,0.898733,0.990465,0.979793,0.985578,0.111313,0.904942,0.30116,0.867209,0.146967,0.281451,0.523408,0.903918,0.223214,0.997232,0.341903,0.433727,0.0753084,0.25555,0.164326,0.252188,0.278361,0.313581,0.75986,0.983098,0.101744,0.0287392,0.939417,0.094048,0.786325,0.418159,0.546653,0.433744,0.116695,0.69855,0.987399,0.834163,0.243726,0.928654,0.38642,0.15162,0.131873,0.694422,0.671432,0.150648,0.249813,0.384303,0.980963,0.730219,0.599705,0.776638,0.0785248,0.468381,0.737274,0.402348,0.0777266,0.815495,0.680044,0.955674,0.887925,0.29982,0.860432,0.232367,0.180866,0.699364,0.454743,0.959024,0.352101,0.468907,0.70369,0.330273,0.901024,0.754105,0.896654,0.730193,0.117645,0.781776,0.00523627,0.437628,0.374307,0.489556,0.717394,0.0510811,0.0391065,0.666978,0.229654,0.810325,0.871613,0.575608,0.525986,0.306015,0.817305,0.707573,0.875467,0.444432,0.238337,0.409476,0.23157,0.861005,0.169408,0.871473,0.847652,0.478114,0.947978,0.885357,0.550862,0.545106,0.486831,0.272491,0.415845,0.610179,0.286682,0.844218,0.292644,0.379397,0.0242762,0.727973,0.16693,0.769867,0.712524,0.866093,0.837857,0.0196868,0.823302,0.525051,0.178393,0.51125,0.369075,0.66816,0.963345,0.0923393,0.207039,0.243498,0.669245,0.092768,0.568274,0.880588,0.181088,0.62902,0.146454,0.0723869,0.840261,0.502175,0.438065,0.35431,0.290917,0.246839,0.842385,0.401731,0.598241,0.707871,0.459999,0.310284,0.729346,0.331166,0.56894,0.0838138,0.332475,0.992082,0.337181,0.909235,0.559532,0.391359,0.0129309,0.706148,0.795826,0.597553,0.0764877,0.165509,0.488797,0.595384,0.913862,|0.365635,0.515308,0.573526,0.819671,0.728124,0.226296,0.20913,0.69934,0.452911,0.496375,0.316707,0.035008,0.104895,0.792059,0.533564,0.493764,0.0352408,0.0440371,0.610631,0.94408,0.944116,0.218932,0.944493,0.692154,0.406042,0.835456,0.239641,0.42751,0.634335,0.0586519,0.163649,0.151876,0.25701,0.869827,0.722007,0.990733,0.853893,0.924796,0.863766,0.577619,0.17109,0.466187,0.521403,0.777027,0.0731391,0.244209,0.233083,0.651112,0.231768,0.648904,0.552753,0.612015,0.537277,0.498446,0.635468,0.940041,0.442914,0.289557,0.247646,0.104229,0.649616,0.563263,0.808947,0.614581,0.245174,0.850885,0.342447,0.271128,0.570981,0.406793,0.349204,0.283399,0.331851,0.830692,0.670971,0.816548,0.311519,0.293124,0.452511,0.367588,0.319982,0.111648,0.550841,0.231679,0.612862,0.167486,0.440876,0.48617,0.27685,0.189833,0.609227,0.344978,0.445292,0.156226,0.892105,0.248689,0.79973,0.619942,0.194572,0.405557,0.541747,0.984003,0.471233,0.0663962,0.401199,0.658063,0.845612,0.206977,0.0674312,0.947386,0.507739,0.723619,0.812355,0.940161,0.356831,0.0267892,0.907415,0.0800844,0.697017,0.636794,0.93445,0.521855,0.407162,0.398551,0.499501,0.371919,0.18373,0.634885,0.268915,0.614931,0.777803,0.921476,0.835563,0.554168,0.74868,0.288656,0.697281,0.922396,0.111705,0.895779,0.411368,0.843726,0.0107443,0.667365,0.953394,0.0972729,0.017068,0.339428,0.0996057,0.405639,0.0440065,0.78146,0.0482808,0.628691,0.416676,0.933267,0.9563,0.684867,0.627846,0.703614,0.910695,0.675213,0.709892,0.879032,0.406492,0.260278,0.41253,0.0288497,0.795664,0.55061,0.0604608,0.891509,0.35946,0.757205,0.772488,0.446239,0.916453,0.496236,0.108882,0.81504,0.00219756,0.989394,0.169846,0.680968,0.0259796,0.334287,0.933522,0.0495768,0.519387,0.178436,0.131068,0.0604875,0.753399,0.499184,0.207488,0.643444,0.913659,0.791087,0.726975,0.0408026,0.734585,0.905459,0.598649,0.836241,0.163306,0.910568,0.228742,0.174815,0.861064,0.721525,0.482182,0.416861,0.443925,0.276033,0.641789,0.199053,0.073041,0.961947,0.3826,0.960811,0.429421,0.53022,0.783831,0.616371,0.219908,0.044899,0.360717,0.930319,0.117464,0.900742,0.752745,0.614359,0.31109,0.171123,0.174263,0.316446,0.879547,0.31821,0.688526,0.664087,0.418962,0.0376629,0.35592,0.824994,0.193498,0.185089,0.498973,0.622024,0.25231,0.870863,0.885989,0.789683,0.811253,0.62812,0.83717,0.0866604,0.676465,0.12206,0.400916,0.951747,0.89951,0.276457,0.256592,0.196219,0.797175,0.0467834,0.918377,0.305488,0.12975,0.760256,0.314838,0.526479,0.705459,0.731014,0.785592,0.713985,0.768323,0.411152,0.679858,0.783041,0.348367,0.0413749,0.326034,0.979445,0.22016,0.898748,0.672874,0.214412,0.140299,0.410052,0.251937,0.944351,0.495869,0.0156932,0.214915,0.952664,0.721869,0.0991201,0.928912,0.547203,0.0973844,0.61806,0.990811,0.898031,0.920762,0.776389,0.611852,0.153075,0.433132,0.869688,0.489711,0.984049,0.721456,0.332415,0.582335,0.0595689,0.224097,0.110062,0.7631,0.549117,0.9288,0.317541,0.813653,0.36007,0.808788,0.0356683,0.225126,0.0713986,0.510092,0.00837398,0.604625,0.99467,0.431783,0.76154,0.0483446,0.0749184,0.842739,0.213629,0.851924,0.0118641,0.745093,0.656338,0.801384,0.679374,0.294053,0.128766,0.399861,0.0571182,0.0154834,0.97681,0.960799,0.454203,0.660813,0.263506,0.011502,0.142428,0.441706,0.971772,0.915598,0.727547,0.812172,0.72471,0.480408,0.917082,0.243551,0.4995,0.607997,0.79701,0.776938,0.616585,0.404903,0.944555,0.276715,0.140866,0.0464233,0.612671,0.756662,0.918532,0.693144,0.0357631,0.334242,0.58726,0.968925,0.811895,0.0296908,0.131855,0.191204,0.443194,0.285649,0.525604,0.0370979,0.631909,0.448636,0.970666,0.514567,0.700853,0.7627,0.812268,0.0280775,0.945949,0.598026,0.555731,0.141986,0.38818,0.173311,0.555111,0.198995,0.152533,0.232046,0.747894,0.499717,0.942765,0.881452,0.234893,0.266231,0.634139,0.162244,0.12534,0.0242773,0.573666,0.685669,0.926173,0.708448,0.727336,0.47575,0.775767,0.468879,0.82655,0.0783658,0.646472,0.0728432,0.463002,0.254427,0.783627,0.106678,0.591063,0.621346,0.464879,0.925611,0.849927,0.442542,0.458859,0.251551,0.546886,0.60511,0.214931,0.885438,0.754226,0.178454,0.0650364,0.964548,0.325908,0.364078,0.256703,0.711167,0.549474,0.115276,0.277301,0.417715,0.627617,0.603693,0.271841,0.426656,0.599321,0.328474,0.752372,0.677583,0.460969,0.734571,0.115205,0.893542,0.756556,0.716635,0.287111,0.808951,0.879567,0.840245,0.969852,0.682408,0.55819,0.464821,0.438341,0.927102,0.502141,0.458154,0.885787,0.33439,0.99983,0.193344,0.870109,0.574385,0.569339,0.978437,0.496225,0.0873995,0.740235,0.627113,0.773305,0.24648,0.987326,0.965265,0.778885,0.312287,0.438043,0.10983,0.498627,0.351665,0.510299,0.595759,0.412903,0.263362,0.765054,0.772919,0.882126,0.0862713,0.77474,0.352037,0.75831,0.458723,0.112593,0.788161,0.483159,0.136172,0.188338,0.0209488,0.290037,0.163672,0.899903,0.980026,0.437122,0.394756,0.709788,0.563111,0.941099,0.712553,0.180378,0.479086,0.827094,0.857545,0.17152,0.330007,0.884435,0.8934,0.58063,0.189291,0.659106,0.0302058,0.874142,0.174471,0.344636,0.340536,0.591892,0.545595,0.175291,0.609541,0.220056,0.990241,0.754033,0.161296,0.767444,0.230579,0.842949,0.00637865,0.741094,0.396143,0.496536,0.71748,0.753035,0.0761744,0.951297,0.634715,0.0799495,0.84642,0.722133,0.409529,0.0809398,0.335885,0.703801,0.431969,0.832849,0.100174,0.695681,0.801394,0.342156,0.268123,0.478196,0.0388609,0.648762,0.32754,0.78876,0.506115,0.769375,0.686292,0.302221,0.12156,0.958136,0.74636,0.919076,0.72177,0.883329,0.435037,0.103133,0.0397637,0.908078,0.399941,0.323692,0.934606,0.365381,0.129591,0.000630081,0.358073,0.215552,0.39818,0.24606,0.382975,0.571368,0.290118,0.276555,0.322332,0.307296,0.739588,0.553291,0.258775,0.130969,0.88446,0.369877,0.411276,0.612379,0.795307,0.985062,0.646523,0.378873,0.382684,0.905029,0.0549215,0.918156,0.187446,0.62686,0.570827,0.509016,0.184105,0.138549,0.497986,0.00552964,0.360383,0.97161,0.804728,0.66479,0.00515872,0.993979,0.748462,0.646886,0.0556574,0.619858,0.821254,0.968936,0.861716,0.993257,0.180207,0.0379756,0.64669,0.766835,0.363797,0.646513,0.428406,0.586856,0.792695,0.615581,0.339517,0.0580153,0.656188,0.0389619,0.113859,0.497193,0.177031,0.166115,0.709876,0.618179,0.374675,0.049313,0.154054,0.314191,0.370933,0.00720155,0.992112,0.472095,0.137886,0.869872,0.487162,0.429642,0.845779,0.465232,0.19616,0.995664,0.301359,0.463877,0.972069,0.536398,0.869083,0.29071,0.72657,0.970245,0.123137,0.867684,0.608127,0.669469,0.925331,0.588304,0.171923,0.979871,0.288769,0.0163046,0.518338,0.35566,0.342517,0.939302,0.0368601,0.840807,0.520916,0.420237,0.261991,0.0261323,0.621058,0.372435,0.458161,0.699813,0.826471,0.650605,0.255636,0.165286,0.315493,0.526207,0.584932,0.0847,0.423672,0.748047,0.933801,0.313109,0.878602,0.198116,0.0625994,0.992474,0.659547,0.2338,0.667158,0.76093,0.693183,0.610765,0.015933,0.156439,0.116421,0.332875,0.567909,0.892655,0.685437,0.353948,0.0743251,0.147295,0.974496,0.779751,0.00282621,0.910425,0.0502859,0.268949,0.236464,0.84433,0.279787,0.659767,0.558718,0.918364,0.833425,0.276511,0.717308,0.458017,0.96392,0.133161,0.303837,0.921307,0.0504839,0.868915,0.623926,0.863422,0.806033,0.104676,0.965812,0.330138,0.731274,0.370177,0.871029,0.104158,0.594039,0.319119,0.0471555,0.511396,0.582157,0.127461,0.256082,0.211619,0.529935,0.336516,0.149059,0.816501,0.861658,0.539299,0.312558,0.0528995,0.04708,0.913065,0.00812298,0.459141,0.359653,0.37809,0.469674,0.954755,0.941211,0.640697,0.636985,0.139085,0.697185,0.614858,0.724321,0.11903,0.500524,0.0134627,0.892112,0.256808,0.770063,0.736234,0.85376,0.75392,0.489831,0.029263,0.657617,0.00471848,0.791641,0.620366,0.277265,0.483137,0.810316,0.479993,0.229173,0.604534,0.901062,0.312295,0.00804061,0.0863734,0.169597,0.762635,0.765514,0.834649,0.318854,0.942414,0.094821,0.0169294,0.778961,0.0369932,0.17233,0.71325,0.745851,0.210293,0.716715,0.128306,0.439036,0.375357,0.650544,0.84466,0.946122,0.0487903,0.140989,0.547149,0.0160472,0.990647,0.725987,0.513824,0.691503,0.611611,0.294447,0.738949,0.750534,0.557226,0.458847,0.211772,0.111293,0.405971,0.417973,0.621838,0.561585,0.0552042,0.630909,0.803461,0.37614,0.607751,0.648337,0.590889,0.966121,0.837887,0.406067,0.475812,0.681429,0.830039,0.678529,0.411686,0.727157,0.914766,0.838504,0.7328,0.699362,0.32559,0.688318,0.502209,0.521923,0.964965,0.964551,0.465443,0.503983,0.393849,0.490256,0.516811,0.250841,0.597662,0.666206,0.227617,0.00711709,0.398529,0.903167,0.770368,0.0159346,0.914415,0.0204488,0.429476,0.879956,0.764389,0.255449,0.464019,0.545961,0.606209,0.257572,0.760527,0.148915,0.814671,0.349695,0.0319682,0.383437,0.475613,0.611994,0.873765,0.729799,0.0529218,0.672745,0.0267286,0.773008,0.235026,0.793318,0.158028,0.835926,0.135117,0.337712,0.409898,0.686734,0.705337,0.097974,0.696963,0.674938,0.745956,0.166551,0.410621,0.269619,0.688496,0.950183,0.221059,0.689497,0.688906,0.348159,0.818118,0.765479,0.147117,0.194872,0.0899612,0.707682,0.927915,0.568099,0.459561,0.426211,0.474506,0.615547,0.279502,0.0718577,0.771415,0.745875,0.840647,0.910688,0.961726,0.893129,0.616962,0.374531,0.744659,0.711983,0.86911,0.550361,0.740516,|0.845626,0.393856,0.950911,0.892127,0.631344,0.365461,0.785803,0.402944,0.0024398,0.554831,0.20775,0.0246088,0.591864,0.747575,0.220311,0.133275,0.14209,0.755961,0.495146,0.071479,0.0985045,0.913193,0.902889,0.383912,0.130772,0.315826,0.0627549,0.890848,0.815633,0.993867,0.547733,0.23364,0.656897,0.181682,0.8404,0.55595,0.249076,0.587215,0.507033,0.337709,0.503354,0.79191,0.854281,0.46604,0.604275,0.896508,0.720997,0.289236,0.527709,0.524259,0.945208,0.138781,0.129474,0.320563,0.618088,0.381704,0.550088,0.893772,0.940871,0.713669,0.535309,0.977574,0.125193,0.382975,0.719193,0.0408208,0.635428,0.276945,0.788977,0.776554,0.274448,0.391736,0.647267,0.053022,0.786208,0.567739,0.218945,0.332466,0.266608,0.765654,0.125549,0.0267798,0.606148,0.656368,0.611173,0.587804,0.937396,0.627966,0.337491,0.536088,0.663036,0.333957,0.129479,0.329548,0.909346,0.00962639,0.724554,0.987121,0.62284,0.727371,0.630756,0.118032,0.710146,0.252632,0.577369,0.107478,0.690563,0.208744,0.762525,0.541985,0.0797428,0.744012,0.759375,0.0843786,0.0629241,0.555587,0.477947,0.766807,0.152678,0.319102,0.584668,0.515641,0.0837394,0.220914,0.190631,0.0392355,0.761659,0.844246,0.0232844,0.20388,0.677168,0.139542,0.121183,0.293844,0.271373,0.490389,0.493143,0.135153,0.915694,0.675841,0.937394,0.346637,0.21127,0.358409,0.985912,0.898509,0.849371,0.572464,0.675324,0.926292,0.269784,0.608351,0.569121,0.194303,0.95934,0.324845,0.964125,0.344708,0.0973161,0.529045,0.979573,0.529249,0.798418,0.950601,0.395972,0.70072,0.871381,0.966714,0.0708646,0.196276,0.533304,0.872128,0.497178,0.952198,0.202949,0.872442,0.925055,0.467531,0.928207,0.35654,0.5971,0.737529,0.477753,0.701533,0.0459837,0.160115,0.934318,0.0355203,0.310916,0.741152,0.759039,0.103711,0.110843,0.612754,0.617298,0.854589,0.968032,0.498429,0.360164,0.117869,0.162006,0.443878,0.498118,0.40487,0.385316,0.514494,0.654636,0.212397,0.341216,0.320834,0.528772,0.770208,0.856608,0.282417,0.297695,0.712666,0.220626,0.0370227,0.498906,0.256422,0.870436,0.746261,0.53161,0.83322,0.743847,0.131643,0.574334,0.854051,0.239767,0.113073,0.376587,0.570175,0.825317,0.264647,0.394527,0.651449,0.0277463,0.0272202,0.532506,0.736178,0.938313,0.682039,0.188959,0.701374,0.410537,0.110426,0.309888,0.181343,0.0857197,0.243883,0.174013,0.0874351,0.613575,0.274814,0.635988,0.67724,0.8978,0.429812,0.432647,0.453053,0.307402,0.603759,0.283951,0.0116121,0.503588,0.640577,0.055791,0.0330403,0.54168,0.134318,0.76682,0.0252891,0.188367,0.94295,0.717261,0.391759,0.750454,0.430251,0.422609,0.843938,0.562168,0.840687,0.570559,0.394613,0.444947,0.721362,0.828877,0.933082,0.373955,0.631119,0.450315,0.97366,0.180763,0.0486518,0.314999,0.221776,0.251281,0.351702,0.315594,0.36314,0.951922,0.258265,0.930647,0.70271,0.166799,0.0283317,0.482947,0.299924,0.571057,0.729202,0.658165,0.798244,0.767135,0.318316,0.0674866,0.328966,0.191083,0.450651,0.786481,0.90263,0.552892,0.217264,0.387578,0.378293,0.4375,0.992432,0.408834,0.72754,0.979016,0.661302,0.874184,0.408091,0.79031,0.601181,0.753329,0.0877272,0.63765,0.145706,0.110353,0.42336,0.97648,0.169789,0.0370116,0.527044,0.263819,0.155325,0.929907,0.559962,0.733333,0.152316,0.530842,0.491099,0.612286,0.0752937,0.330358,0.783092,0.368434,0.200531,0.0472769,0.0194681,0.00232738,0.919772,0.276834,0.0181752,0.381473,0.858246,0.165866,0.590746,0.502124,0.743171,0.938625,0.789521,0.60632,0.557398,0.155448,0.0683612,0.298209,0.555907,0.351009,0.553679,0.491396,0.970329,0.669219,0.598235,0.71667,0.929694,0.490328,0.56753,0.694289,0.407456,0.00279939,0.775286,0.654004,0.981667,0.594088,0.248421,0.745696,0.661465,0.988624,0.332881,0.0345032,0.45936,0.0144854,0.22648,0.233147,0.724761,0.717877,0.249391,0.755374,0.0388584,0.570507,0.0732797,0.406061,0.391443,0.749413,0.590087,0.122743,0.996346,0.200681,0.841279,0.416454,0.881496,0.882552,0.102388,0.826725,0.243928,0.60225,0.474985,0.759525,0.91575,0.912489,0.699318,0.656046,0.555522,0.0215276,0.316347,0.32504,0.786616,0.185066,0.491943,0.933938,0.940186,0.897422,0.245815,0.36236,0.199744,0.176952,0.512495,0.287133,0.858177,0.233984,0.230545,0.278797,0.467846,0.473984,0.850456,0.849012,0.570509,0.506337,0.646754,0.998686,0.137249,0.492858,0.184399,0.0657459,0.170781,0.0945469,0.654446,0.252556,0.276239,0.503435,0.892092,0.356573,0.249166,0.859036,0.802423,0.997892,0.817148,0.10417,0.496351,0.531134,0.56655,0.106271,0.456291,0.712537,0.359027,0.0813283,0.777913,0.701741,0.173176,0.48522,0.699363,0.324579,0.529919,0.617239,0.977199,0.399908,0.16004,0.085713,0.992673,0.145739,0.990485,0.933448,0.197365,0.912608,0.406057,0.681718,0.209266,0.253227,0.777465,0.986175,0.582524,0.617933,0.987574,0.788664,0.259388,0.0135849,0.0027867,0.989969,0.125776,0.978803,0.811823,0.421368,0.066202,0.929373,0.698036,0.780029,0.357702,0.467058,0.122408,0.0872405,0.891564,0.692514,0.164847,0.168527,0.325948,0.14567,0.0918514,0.832376,0.152253,0.0349294,0.0365196,0.524939,0.520925,0.114571,0.699894,0.895454,0.631881,0.654798,0.464635,0.00598246,0.529719,0.666572,0.147739,0.936496,0.327461,0.874516,0.222608,0.689123,0.748543,0.869199,0.020642,0.399717,0.386448,0.740145,0.309644,0.366296,0.372469,0.877804,0.207787,0.730505,0.386987,0.635522,0.0778553,0.986855,0.21298,0.534027,0.700096,0.687752,0.738499,0.883054,0.860412,0.375661,0.430918,0.124104,0.214961,0.342291,0.133086,0.334232,0.41143,0.565678,0.173474,0.626806,0.963829,0.841155,0.00326276,0.73074,0.941859,0.0426895,0.907706,0.56776,0.791878,0.289321,0.35516,0.33792,0.013849,0.162204,0.630779,0.178971,0.950199,0.490529,0.459569,0.910256,0.590734,0.186859,0.712313,0.260556,0.24731,0.421567,0.610077,0.320583,0.571876,0.173963,0.557802,0.334407,0.645458,0.525434,0.354414,0.249749,0.342664,0.8698,0.660382,0.307708,0.261478,0.598757,0.337644,0.450959,0.888126,0.897032,0.807415,0.440302,0.53501,0.15035,0.725271,0.156925,0.631539,0.103704,0.208174,0.539217,0.163954,0.609698,0.238379,0.884674,0.682862,0.816521,0.935066,0.287185,0.769923,0.888384,0.261804,0.552229,0.230628,0.45243,0.941725,0.981692,0.0386413,0.996274,0.272709,0.763084,0.911667,0.318742,0.126309,0.255579,0.885864,0.872776,0.270925,0.219856,0.881247,0.940441,0.261762,0.694551,0.248099,0.347058,0.609832,0.50396,0.382356,0.645988,0.338789,0.405608,0.529474,0.920545,0.397907,0.874755,0.797951,0.753456,0.220528,0.437292,0.234609,0.293089,0.831924,0.114886,0.153549,0.0813573,0.364511,0.824516,0.340889,0.583501,0.151556,0.336737,0.0446306,0.351531,0.391553,0.109594,0.896816,0.249796,0.235566,0.0774144,0.393632,0.00922579,0.477376,0.242466,0.401085,0.37075,0.971614,0.497303,0.581519,0.528248,0.622091,0.647251,0.256445,0.796127,0.785945,0.801195,0.333162,0.699737,0.0416636,0.457093,0.808054,0.121188,0.796306,0.546591,0.89092,0.0439122,0.219145,0.709806,0.344996,0.0118613,0.849859,0.501152,0.962659,0.84409,0.952849,0.632687,0.910254,0.586496,0.395377,0.997871,0.253221,0.642427,0.965898,0.116515,0.418005,0.671908,0.187625,0.825154,0.882688,0.425719,0.851101,0.514235,0.228254,0.805647,0.386607,0.180466,0.89966,0.577415,0.763337,0.792326,0.193283,0.0291489,0.993449,0.659431,0.438432,0.415843,0.814215,0.196825,0.645495,0.944459,0.0740759,0.452804,0.0517588,0.716666,0.912781,0.727141,0.582554,0.569209,0.220602,0.545919,0.150829,0.656411,0.69006,0.332377,0.415105,0.894391,0.436875,0.430812,0.70514,0.128879,0.0563368,0.575806,0.000978947,0.0177978,0.0267105,0.454409,0.59966,0.495202,0.375435,0.708515,0.0340099,0.0247241,0.775727,0.616501,0.230842,0.334929,0.254049,0.882937,0.672511,0.967022,0.220866,0.729272,0.305955,0.107707,0.0802454,0.40063,0.0734764,0.785788,0.102699,0.52486,0.149611,0.444439,0.411797,0.740828,0.427694,0.0616101,0.630508,0.73996,0.0448718,0.509195,0.427722,0.961904,0.647371,0.66912,0.687326,0.473592,0.0173464,0.871658,0.0683501,0.104199,0.926986,0.232705,0.611575,0.950543,0.00399846,0.958161,0.652887,0.696245,0.635301,0.0975043,0.348145,0.170754,0.375607,0.408856,0.232902,0.183774,0.041135,0.687998,0.669976,0.50371,0.612424,0.57765,0.427234,0.40256,0.127916,0.95162,0.800452,0.0353728,0.0715708,0.704109,0.714225,0.533315,0.67375,0.881024,0.204743,0.139491,0.676162,0.939821,0.801077,0.276755,0.717439,0.972236,0.99028,0.860863,0.543439,0.740122,0.275175,0.632844,0.0129996,0.408737,0.81408,0.147299,0.511201,0.42079,0.0489507,0.825235,0.288603,0.380165,0.241819,0.918451,0.913615,0.553272,0.353581,0.323495,0.446316,0.0880455,0.978185,0.559319,0.198527,0.018163,0.124938,0.467702,0.817975,0.0402536,0.014708,0.188767,0.404979,0.356818,0.464727,0.759039,0.342382,0.838201,0.777192,0.6619,0.318442,0.851201,0.05019,0.943771,0.756658,0.137777,0.13616,0.958862,0.851306,0.551382,0.434757,0.707494,0.111495,0.925365,0.386866,0.509287,0.131372,0.191275,0.92172,0.281582,0.537652,0.00921136,0.582123,0.896393,0.163433,0.278759,0.84111,0.417076,0.00655025,0.220134,0.203558,0.900209,0.170188,0.827487,0.173452,0.260386,0.993335,0.646376,0.416641,0.30877,0.149382,0.110578,0.430508,0.298958,0.242685,0.619676,0.655317,0.881846,0.819973,0.564261,0.660889,0.601471,0.578531,0.479543,0.436017,0.595983,0.516613,0.469391,0.649248,|0.108018,0.215268,0.815433,0.63174,0.742624,0.103661,0.0241892,0.43904,0.00923932,0.845419,0.389709,0.142594,0.335826,0.116434,0.655014,0.173209,0.626442,0.325312,0.195672,0.142002,0.690313,0.884469,0.140851,0.210055,0.549639,0.912018,0.0130779,0.976144,0.206902,0.739911,0.228681,0.00701141,0.615591,0.559398,0.396812,0.346502,0.59841,0.19392,0.60595,0.608916,0.852215,0.74624,0.253222,0.0652981,0.724257,0.789424,0.692094,0.654225,0.0926231,0.280643,0.990729,0.824158,0.82007,0.577896,0.0857965,0.0859178,0.674426,0.555322,0.690543,0.260803,0.0180128,0.565949,0.447193,0.461468,0.299355,0.172564,0.487438,0.0780855,0.301994,0.254685,0.0377002,0.398186,0.852921,0.0893391,0.403709,0.907301,0.493388,0.203563,0.236416,0.215733,0.192205,0.145436,0.91902,0.757095,0.458368,0.840436,0.799181,0.954273,0.64303,0.755769,0.987746,0.559322,0.619307,0.227281,0.655646,0.474899,0.703761,0.819491,0.0284724,0.0246834,0.933706,0.643041,0.750978,0.156885,0.696563,0.751182,0.509975,0.500935,0.141868,0.469292,0.555884,0.915647,0.845717,0.443841,0.135328,0.858979,0.744387,0.213571,0.754995,0.146193,0.235829,0.14766,0.662392,0.629358,0.777832,0.227089,0.178884,0.802373,0.773514,0.332301,0.679247,0.550891,0.460507,0.0475956,0.785638,0.0210052,0.203673,0.912251,0.637113,0.0990037,0.0942158,0.91834,0.170887,0.524841,0.438995,0.195606,0.197981,0.521845,0.316332,0.425426,0.179535,0.633044,0.553105,0.418976,0.294065,0.034245,0.227955,0.830328,0.205233,0.282446,0.614581,0.242074,0.171036,0.998562,0.901586,0.398145,0.292626,0.0644593,0.224312,0.718314,0.147902,0.0925854,0.24568,0.0629979,0.362952,0.593438,0.208706,0.829792,0.473669,0.119116,0.321431,0.94745,0.575378,0.835677,0.00710553,0.161604,0.00467753,0.986823,0.739721,0.687099,0.254255,0.36161,0.56769,0.116931,0.413034,0.107926,0.424241,0.249837,0.833025,0.0666153,0.669939,0.0994735,0.322092,0.0529711,0.758034,0.631162,0.905396,0.480926,0.351076,0.130029,0.805516,0.386428,0.0168176,0.743065,0.270168,0.915274,0.027711,0.932888,0.00931948,0.192177,0.084967,0.174599,0.888381,0.0720111,0.443499,0.923986,0.505738,0.942088,0.336893,0.399725,0.931998,0.951158,0.474969,0.0905773,0.563203,0.210843,0.648244,0.791274,0.309197,0.585759,0.843625,0.327362,0.740249,0.361223,0.760651,0.32322,0.953599,0.880125,0.836156,0.564879,0.702987,0.240254,0.97902,0.364814,0.847659,0.551575,0.524007,0.354377,0.933326,0.217473,0.588608,0.401748,0.978673,0.0278915,0.625686,0.702846,0.520296,0.0745656,0.493899,0.00817364,0.310833,0.930784,0.531257,0.193693,0.0872834,0.573248,0.567003,0.487673,0.249969,0.581609,0.906633,0.388366,0.468899,0.000833213,0.11955,0.404691,0.865135,0.659965,0.221635,0.478883,0.0756658,0.226502,0.630737,0.472412,0.0455892,0.710932,0.0793453,0.536358,0.621636,0.56246,0.811569,0.179599,0.633584,0.519143,0.281455,0.257872,0.793513,0.393366,0.161409,0.786824,0.825894,0.356518,0.96086,0.947509,0.282056,0.117658,0.997663,0.577477,0.72014,0.736787,0.791934,0.945689,0.440283,0.728707,0.275275,0.0768222,0.0831003,0.0586073,0.701685,0.359108,0.0957058,0.787587,0.260931,0.75328,0.0189559,0.31705,0.161272,0.749072,0.00206208,0.119273,0.609621,0.582025,0.276974,0.448525,0.905552,0.426549,0.148319,0.61098,0.924657,0.951499,0.737612,0.288652,0.513086,0.113438,0.322019,0.511138,0.469768,0.5966,0.750022,0.271896,0.337753,0.567466,0.853162,0.128002,0.0693425,0.293815,0.20814,0.051735,0.654947,0.582974,0.76683,0.22031,0.993333,0.267717,0.0205726,0.361349,0.303162,0.913678,0.213021,0.987285,0.718173,0.789969,0.0758283,0.112103,0.215527,0.519113,0.891919,0.158451,0.838054,0.532287,0.579245,0.549486,0.20126,0.963637,0.153995,0.217682,0.51291,0.641075,0.619994,0.607688,0.315301,0.827359,0.296472,0.157801,0.310669,0.424571,0.209749,0.045899,0.444426,0.535568,0.670004,0.404834,0.249192,0.313103,0.692378,0.777103,0.267957,0.431679,0.991758,0.218916,0.398159,0.77259,0.231515,0.341554,0.456978,0.837204,0.0308414,0.214652,0.63658,0.913001,0.981442,0.067454,0.51416,0.416664,0.402734,0.41132,0.904818,0.624526,0.186184,0.400421,0.252138,0.559662,0.799704,0.950583,0.376263,0.23003,0.826615,0.0782391,0.816231,0.663291,0.969276,0.45062,0.551923,0.440848,0.717442,0.995056,0.833266,0.392758,0.195442,0.0580887,0.374151,0.0693799,0.317476,0.0493766,0.301508,0.437497,0.612207,0.639121,0.709448,0.127816,0.591754,0.529315,0.266614,0.385968,0.400152,0.27579,0.015837,0.966043,0.497344,0.992451,0.699308,0.830055,0.0297158,0.995408,0.245912,0.17355,0.450898,0.825719,0.413798,0.486908,0.00788039,0.56175,0.586707,0.154476,0.0798277,0.699905,0.188794,0.644249,0.780182,0.794045,0.211777,0.626678,0.887218,0.324956,0.743148,0.693246,0.207392,0.54037,0.266927,0.538319,0.752031,0.401181,0.51766,0.615182,0.867219,0.112617,0.0300862,0.0773616,0.428611,0.226017,0.387393,0.688209,0.839268,0.332401,0.404459,0.664459,0.0562945,0.0212329,0.595141,0.6962,0.335207,0.0692059,0.0260682,0.84848,0.383335,0.894452,0.435536,0.285675,0.08281,0.810134,0.167062,0.884018,0.801754,0.6118,0.613329,0.862033,0.408839,0.031295,0.364116,0.8684,0.940774,0.593265,0.689606,0.707012,0.688445,0.446193,0.784085,0.576028,0.341046,0.935468,0.632879,0.359419,0.70249,0.114773,0.0971869,0.455445,0.278094,0.984497,0.231003,0.0608009,0.0504941,0.450429,0.718158,0.575591,0.490045,0.569233,0.963579,0.181786,0.0706517,0.29803,0.315691,0.541048,0.562068,0.0831079,0.153632,0.943066,0.262203,0.256254,0.173487,0.269227,0.629544,0.777851,0.0284547,0.519022,0.372275,0.438193,0.81859,0.429922,0.677406,0.284418,0.183594,0.498252,0.439739,0.0390022,0.299537,0.926002,0.261646,0.00346917,0.757339,0.0559158,0.169931,0.255729,0.980874,0.448636,0.978941,0.611455,0.789479,0.54263,0.270637,0.102616,0.426191,0.356685,0.963208,0.96984,0.729912,0.302998,0.219429,0.23144,0.951598,0.592151,0.832754,0.686001,0.170449,0.289588,0.530065,0.769175,0.612972,0.404438,0.645913,0.229719,0.875031,0.11889,0.930934,0.930645,0.512681,0.211612,0.544417,0.806868,0.546778,0.462686,0.274743,0.58547,0.532448,0.491083,0.977976,0.154793,0.65681,0.369674,0.723083,0.212474,0.970586,0.835069,0.985051,0.62064,0.124468,0.838183,0.565372,0.814537,0.349191,0.0392775,0.659492,0.279646,0.645422,0.551627,0.606852,0.949585,0.626431,0.72684,0.0883273,0.424205,0.0663922,0.0714309,0.768851,0.748706,0.738957,0.795406,0.117438,0.198464,0.24552,0.197821,0.905606,0.379239,0.076395,0.869007,0.976564,0.205393,0.504873,0.719953,0.857641,0.836533,0.0419085,0.843329,0.947691,0.965937,0.460502,0.704773,0.556866,0.704476,0.274547,0.0231575,0.23362,0.608835,0.276327,0.953757,0.266882,0.947232,0.612182,0.409834,0.98296,0.798497,0.684104,0.78061,0.965841,0.458077,0.609663,0.468867,0.0526208,0.321968,0.00849456,0.963228,0.353346,0.629319,0.955973,0.243364,0.955898,0.216083,0.482141,0.429444,0.677718,0.598331,0.342524,0.283677,0.16287,0.90771,0.466199,0.434189,0.403301,0.130588,0.873526,0.207087,0.0774207,0.341172,0.468045,0.776213,0.620117,0.277779,0.969437,0.421334,0.76263,0.29751,0.231987,0.622908,0.0317535,0.435872,0.426124,0.142762,0.166702,0.513356,0.703677,0.720699,0.225938,0.103359,0.0784094,0.653053,0.233376,0.345998,0.471139,0.79817,0.814026,0.686151,0.889029,0.945331,0.580363,0.830445,0.126987,0.139692,0.740807,0.355846,0.540054,0.681906,0.0427644,0.422249,0.739513,0.142146,0.308296,0.729957,0.478776,0.778092,0.219594,0.309365,0.510322,0.131111,0.563219,0.352271,0.981672,0.570489,0.798068,0.911976,0.0877223,0.816129,0.0138458,0.348754,0.244808,0.984599,0.266024,0.0337445,0.873151,0.587751,0.401189,0.237243,0.246073,0.0985307,0.692861,0.254333,0.478108,0.250767,0.31418,0.56618,0.780106,0.857423,0.689691,0.330103,0.500223,0.517658,0.498319,0.0618067,0.877279,0.465405,0.745341,0.991583,0.799182,0.773291,0.181726,0.155461,0.520017,0.5861,0.960672,0.504399,0.0211619,0.970652,0.170366,0.566354,0.112812,0.443098,0.0416339,0.560357,0.344618,0.279786,0.750056,0.707907,0.158346,0.710668,0.953632,0.378512,0.495617,0.141684,0.771075,0.787181,0.402904,0.303331,0.431062,0.322315,0.132818,0.261377,0.0202881,0.343462,0.255632,0.891165,0.490196,0.570488,0.317654,0.674354,0.728048,0.763707,0.860349,0.268882,0.301843,0.0326617,0.00161791,0.138204,0.657484,0.740571,0.43119,0.585567,0.470186,0.213297,0.635141,0.736999,0.279218,0.529199,0.428657,0.283667,0.950631,0.645867,0.575844,0.316547,0.833119,0.649403,0.137985,0.616055,0.494016,0.550386,0.231999,0.383705,0.796282,0.968652,0.88717,0.357469,0.00836551,0.217885,0.37294,0.51919,0.010522,0.512204,0.595767,0.227232,0.3657,0.679983,0.53854,0.0923535,0.761727,0.379014,0.572901,0.820439,0.876869,0.841201,0.502143,0.897665,0.741511,0.0235977,0.23066,0.605018,0.607074,0.431635,0.328917,0.71227,0.759475,0.142474,0.231868,0.261875,0.783125,0.583584,0.371834,0.0638734,0.137246,0.480868,0.281592,0.128503,0.769626,0.968793,0.0609511,0.527027,0.949714,0.386573,0.985431,0.975047,0.475044,0.553343,0.368748,0.00749254,0.0656987,0.128937,0.696655,0.558544,0.800107,0.827029,0.659741,0.59612,0.134315,0.971856,0.653896,0.523431,0.461261,0.403808,0.415665,0.955363,0.454977,0.0768499,0.496172,0.549919,0.857493,0.703887,0.263438,0.0429372,0.80453,0.722551,0.0410203,0.980914,0.185757,0.610359,|0.321042,0.122712,0.629039,0.583066,0.991186,0.146161,0.988654,0.125938,0.913912,0.049222,0.0314065,0.00709999,0.450193,0.0916941,0.68518,0.492131,0.826243,0.0959468,0.493404,0.0524997,0.981745,0.297385,0.920022,0.229726,0.778335,0.690711,0.481936,0.105707,0.127462,0.551837,0.468826,0.31645,0.90514,0.520029,0.406288,0.694776,0.192112,0.833682,0.569174,0.912168,0.81933,0.0248587,0.0438802,0.677618,0.879269,0.0921278,0.533306,0.770573,0.249799,0.965235,0.63673,0.226577,0.781478,0.217844,0.8344,0.293508,0.59964,0.979983,0.580265,0.367008,0.711035,0.102746,0.109451,0.0827059,0.226563,0.478157,0.896527,0.405012,0.478428,0.100602,0.960284,0.567706,0.77245,0.770434,0.107774,0.889143,0.992878,0.345768,0.12598,0.00787306,0.0292762,0.692494,0.611673,0.999019,0.456359,0.426702,0.384668,0.148719,0.0093798,0.924422,0.610189,0.787995,0.090951,0.931251,0.496203,0.709925,0.112312,0.528186,0.652376,0.501842,0.24392,0.543838,0.0268122,0.487333,0.592785,0.0951005,0.15406,0.165698,0.86587,0.737041,0.0472311,0.382705,0.59074,0.511408,0.861524,0.721722,0.555793,0.691277,0.209395,0.903755,0.661625,0.0127301,0.34331,0.887454,0.961473,0.749578,0.0760433,0.220667,0.131349,0.35634,0.128231,0.690934,0.398505,0.50827,0.124717,0.049005,0.0311872,0.555073,0.666522,0.019434,0.796351,0.913151,0.0555516,0.472142,0.210427,0.924153,0.425164,0.909226,0.643521,0.281993,0.245163,0.222771,0.694706,0.005481,0.904383,0.413008,0.0244037,0.990753,0.29871,0.880434,0.314735,0.489771,0.0506186,0.850545,0.600178,0.984438,0.497708,0.51926,0.534321,0.832654,0.545897,0.382951,0.240811,0.0809377,0.0193624,0.373131,0.150358,0.212384,0.687603,0.749895,0.929469,0.366455,0.912126,0.623711,0.649327,0.937566,0.470384,0.401557,0.671718,0.224675,0.643505,0.620492,0.842578,0.75894,0.603509,0.481035,0.809104,0.886335,0.512178,0.879966,0.716793,0.653614,0.306698,0.725099,0.211774,0.390931,0.699685,0.813153,0.0277326,0.179556,0.28224,0.865682,0.873879,0.826873,0.950764,0.589287,0.0629966,0.898732,0.571694,0.204755,0.444492,0.652735,0.0105754,0.262551,0.621839,0.12323,0.760427,0.593177,0.65571,0.0199112,0.493502,0.761701,0.201521,0.643295,0.82502,0.690649,0.357438,0.695839,0.676278,0.367233,0.807826,0.652532,0.441917,0.581846,0.96955,0.0236844,0.270304,0.99571,0.98264,0.793292,0.887523,0.463913,0.441316,0.136562,0.957005,0.753206,0.928379,0.396785,0.742436,0.186033,0.763446,0.663193,0.998934,0.314663,0.0730234,0.836986,0.774634,0.733635,0.987053,0.619455,0.910979,0.626065,0.795338,0.418017,0.323795,0.0465814,0.887356,0.437745,0.924757,0.487401,0.579209,0.385169,0.304941,0.204442,0.265706,0.114571,0.00773275,0.234668,0.712862,0.190464,0.627777,0.0361717,0.19803,0.162515,0.332633,0.716642,0.328456,0.806989,0.276907,0.922434,0.489483,0.0558613,0.612311,0.870522,0.97252,0.230822,0.955068,0.0933901,0.288414,0.719389,0.303022,0.611628,0.00716144,0.765407,0.159942,0.707002,0.253718,0.837214,0.494307,0.844568,0.0278383,0.837921,0.0275933,0.577345,0.794984,0.227785,0.0658471,0.348804,0.131954,0.972213,0.228242,0.676896,0.66193,0.383433,0.942324,0.529606,0.542325,0.533594,0.792751,0.493508,0.351019,0.173996,0.439036,0.201452,0.478668,0.516312,0.108856,0.509697,0.896892,0.695074,0.814614,0.108267,0.0113122,0.864006,0.619687,0.261489,0.462227,0.614873,0.442163,0.237364,0.171,0.255883,0.0125533,0.863877,0.426023,0.261654,0.467757,0.383725,0.954738,0.907711,0.871727,0.882003,0.345788,0.742923,0.113987,0.929332,0.946684,0.78973,0.697793,0.806119,0.224248,0.325699,0.194595,0.268334,0.724386,0.311469,0.593345,0.459779,0.786431,0.449755,0.729326,0.987649,0.959047,0.732296,0.0718739,0.854252,0.543023,0.356752,0.728851,0.866494,0.295588,0.313946,0.40712,0.435869,0.796627,0.0319338,0.582329,0.00443739,0.44407,0.755842,0.0925917,0.694392,0.995808,0.0532889,0.00903755,0.241531,0.665421,0.245075,0.434546,0.826514,0.582704,0.36991,0.97774,0.463463,0.603067,0.909874,0.979257,0.784976,0.333879,0.501275,0.214498,0.94253,0.756497,0.861128,0.337448,0.460537,0.584671,0.441502,0.661833,0.996029,0.960033,0.142971,0.122158,0.793107,0.953335,0.214908,0.403156,0.398724,0.75441,0.908125,0.178808,0.725399,0.90132,0.816756,0.170473,0.600904,0.981073,0.939758,0.588136,0.612998,0.161725,0.765689,0.530051,0.773188,0.749687,0.856991,0.210252,0.815561,0.756106,0.728303,0.14318,0.44194,0.665173,0.166592,0.742128,0.732519,0.683289,0.0538586,0.786966,0.469925,0.587432,0.586616,0.927197,0.143266,0.25023,0.682201,0.754024,0.644567,0.253683,0.494537,0.673646,0.23023,0.469831,0.763475,0.429176,0.571663,0.961228,0.252674,0.808018,0.752115,0.834445,0.988453,0.89945,0.799296,0.284227,0.802673,0.847233,0.174608,0.140937,0.223469,0.648617,0.48352,0.175322,0.689457,0.928603,0.242176,0.502996,0.109423,0.957514,0.631963,0.753195,0.35403,0.260329,0.388389,0.830245,0.081508,0.398479,0.836655,0.301844,0.888133,0.710879,0.615117,0.440428,0.78792,0.75442,0.51983,0.00434184,0.0281581,0.223312,0.106836,0.305492,0.729317,0.613072,0.566564,0.736648,0.332199,0.0669245,0.984973,0.113996,0.363041,0.552654,0.585029,0.0838511,0.39038,0.563641,0.492335,0.0832319,0.15031,0.355847,0.936157,0.0416902,0.534347,0.355405,0.912824,0.255359,0.325412,0.233759,0.943139,0.0756223,0.918976,0.623193,0.0423318,0.928841,0.63188,0.083605,0.287344,0.391889,0.414468,0.259529,0.869103,0.0510061,0.995764,0.539733,0.407762,0.0192392,0.00667846,0.601948,0.381049,0.418382,0.957257,0.0145448,0.98641,0.694607,0.71589,0.665108,0.487968,0.0208634,0.985529,0.592557,0.784398,0.00134939,0.106593,0.538712,0.585323,0.324679,0.849436,0.730852,0.236666,0.171507,0.641838,0.193962,0.685568,0.314965,0.577609,0.995031,0.406417,0.0220907,0.0299559,0.20347,0.453929,0.855415,0.247619,0.262236,0.300322,0.945568,0.41081,0.441884,0.724959,0.00360817,0.494532,0.796296,0.308681,0.689423,0.543074,0.861386,0.542603,0.884169,0.13432,0.738879,0.731742,0.0858886,0.112319,0.936265,0.669821,0.489107,0.524599,0.382254,0.927133,0.517618,0.642533,0.785669,0.558263,0.0206461,0.334858,0.206726,0.150146,0.380066,0.158572,0.0410596,0.788116,0.769381,0.352355,0.206428,0.297638,0.191063,0.75451,0.205256,0.425793,0.429632,0.322038,0.129204,0.757527,0.752081,0.225009,0.72991,0.120732,0.841118,0.259029,0.0388592,0.846864,0.0608604,0.414462,0.0107846,0.905033,0.0991736,0.0768177,0.352658,0.142443,0.795898,0.623053,0.740179,0.0142968,0.421988,0.157127,0.240545,0.404537,0.311402,0.320851,0.838087,0.702306,0.624653,0.655944,0.368515,0.990589,0.664716,0.374574,0.554845,0.223165,0.977897,0.162814,0.610852,0.202118,0.967451,0.10065,0.143843,0.696909,0.0723028,0.276114,0.537741,0.749045,0.53205,0.591296,0.572233,0.852272,0.807627,0.521038,0.155548,0.424778,0.847525,0.408971,0.823222,0.842874,0.130947,0.11769,0.173525,0.536182,0.0699002,0.733658,0.741082,0.71352,0.447804,0.450245,0.430683,0.347379,0.94595,0.49617,0.134761,0.0437938,0.662154,0.220809,0.464945,0.596805,0.14146,0.916819,0.945686,0.129789,0.187254,0.845881,0.0979,0.187649,0.227601,0.475684,0.201633,0.178309,0.810688,0.756312,0.517675,0.991694,0.35672,0.764362,0.777987,0.570886,0.328086,0.460062,0.0176476,0.281528,0.188361,0.917306,0.27094,0.434908,0.856394,0.513705,0.957633,0.700811,0.457603,0.2248,0.647959,0.245346,0.990768,0.072979,0.534881,0.307367,0.913107,0.489848,0.16968,0.406968,0.564176,0.795531,0.490522,0.1687,0.809856,0.33846,0.00402391,0.655636,0.731001,0.20516,0.0817112,0.0591279,0.417011,0.449555,0.30073,0.399623,0.109227,0.636429,0.782058,0.0940275,0.849977,0.68426,0.0678949,0.749201,0.08608,0.904859,0.172681,0.937067,0.665177,0.22672,0.278051,0.99319,0.397143,0.0781505,0.379786,0.434202,0.553787,0.530032,0.439966,0.89851,0.306113,0.662305,0.0433388,0.407863,0.241232,0.856189,0.26453,0.798367,0.529678,0.264823,0.53037,0.229201,0.607386,0.260662,0.313585,0.935081,0.316255,0.654642,0.254786,0.728084,0.667886,0.871318,0.0976496,0.132106,0.358787,0.40109,0.671381,0.351922,0.612046,0.177385,0.0541846,0.991887,0.889422,0.92333,0.0980055,0.909876,0.0926045,0.435412,0.666159,0.633793,0.295629,0.836455,0.320503,0.957401,0.992446,0.930291,0.523427,0.39491,0.635045,0.67938,0.552082,0.54691,0.69629,0.818071,0.200986,0.950917,0.872825,0.20011,0.163819,0.0150225,0.0881267,0.325349,0.534338,0.248972,0.976545,0.400629,0.53819,0.280097,0.0542311,0.924453,0.286424,0.645852,0.352429,0.13386,0.864347,0.755268,0.790111,0.596681,0.104597,0.823501,0.547222,0.935414,0.902379,0.683194,0.232361,0.880875,0.912774,0.0829182,0.785909,0.777928,0.839525,0.0477895,0.637485,0.932326,0.80376,0.697839,0.920692,0.0261647,0.262182,0.494885,0.372067,0.290314,0.0418268,0.569634,0.273196,0.585119,0.767221,0.837237,0.485923,0.558433,0.927855,0.488153,0.987984,0.167505,0.254803,0.291364,0.407472,0.788337,0.0824783,0.399056,0.919516,0.801034,0.968689,0.674392,0.79779,0.835509,0.924849,0.703912,0.0625802,0.0249528,0.727459,0.423111,0.564727,0.365719,0.143972,0.0869525,0.680532,0.00663364,0.813937,0.517961,0.549086,0.394967,0.186245,0.254174,0.150978,0.157637,0.523359,0.786717,0.645404,0.804946,0.814471,0.36416,0.889282,0.780734,0.141599,0.00889599,0.085377,0.140808,0.118325,0.371635,0.877786,0.398445,0.428988,0.108762,|0.471832,0.581801,0.692153,0.718345,0.610452,0.125005,0.741856,0.203753,0.723811,0.286331,0.683119,0.716748,0.0988072,0.267865,0.00203121,0.273506,0.988392,0.0531003,0.143289,0.105023,0.0357473,0.722724,0.890266,0.781218,0.856366,0.824535,0.566809,0.670768,0.370933,0.149915,0.844884,0.774948,0.846735,0.766186,0.22334,0.363556,0.575266,0.196136,0.418369,0.713806,0.0182949,0.0626099,0.927825,0.0636651,0.281936,0.370547,0.835027,0.67703,0.159851,0.955382,0.6835,0.0526171,0.660787,0.899463,0.795811,0.440183,0.792361,0.0494204,0.800265,0.953748,0.27257,0.934407,0.650156,0.908621,0.46201,0.677432,0.996709,0.826179,0.543941,0.326383,0.950078,0.769358,0.679052,0.0807997,0.122995,0.443713,0.727092,0.604387,0.254979,0.707547,0.420989,0.282987,0.507111,0.925978,0.432752,0.808303,0.719766,0.961559,0.556763,0.746627,0.461761,0.993139,0.136499,0.00795865,0.564211,0.264893,0.801758,0.234126,0.297256,0.321262,0.822422,0.139357,0.0707577,0.712054,0.306589,0.03057,0.563998,0.253147,0.997285,0.287109,0.511239,0.219581,0.751274,0.681476,0.829406,0.12072,0.0940676,0.00982231,0.155692,0.546908,0.197012,0.0717517,0.753145,0.173447,0.279593,0.67251,0.570673,0.694603,0.89874,0.193327,0.432234,0.116739,0.720374,0.519545,0.0263805,0.712316,0.538334,0.81491,0.8643,0.913389,0.185558,0.407534,0.759365,0.855991,0.537409,0.415843,0.0860848,0.691566,0.929252,0.671389,0.648764,0.742598,0.119263,0.483312,0.286679,0.957528,0.0152193,0.414997,0.352475,0.724649,0.11698,0.826037,0.499464,0.315133,0.00827378,0.406532,0.915824,0.774973,0.879607,0.525364,0.111262,0.47876,0.0165,0.753012,0.591457,0.108338,0.938196,0.155376,0.428891,0.564941,0.696721,0.997326,0.243565,0.350822,0.593674,0.108779,0.00744092,0.141977,0.093024,0.937752,0.735369,0.485027,0.887287,0.784885,0.807528,0.303288,0.807504,0.578229,0.0820426,0.29707,0.444428,0.943976,0.466226,0.461949,0.130418,0.319958,0.0369958,0.318027,0.44128,0.737363,0.616989,0.577237,0.923614,0.610474,0.671175,0.409089,0.276814,0.393712,0.846548,0.643011,0.563322,0.77647,0.962171,0.513831,0.324317,0.232881,0.566616,0.134636,0.18457,0.950789,0.227827,0.325243,0.269529,0.293119,0.17918,0.20428,0.807932,0.0144844,0.128423,0.267054,0.95485,0.00753444,0.869001,0.792159,0.766797,0.366672,0.797924,0.651843,0.27967,0.805872,0.850545,0.590475,0.638319,0.042272,0.623728,0.468483,0.60952,0.679763,0.512856,0.905002,0.618949,0.5166,0.00855106,0.239656,0.0210249,0.713345,0.376151,0.680571,0.183984,0.175311,0.502842,0.689414,0.934439,0.684496,0.353149,0.328131,0.188893,0.621324,0.827723,0.466435,0.476691,0.0637636,0.913423,0.178841,0.598959,0.621675,0.974274,0.528782,0.332375,0.490717,0.218937,0.332727,0.418172,0.224238,0.992905,0.720279,0.202925,0.325868,0.0573942,0.498129,0.301497,0.482373,0.58852,0.196813,0.887236,0.289277,0.0754973,0.791974,0.0330665,0.171995,0.152202,0.323264,0.942991,0.782862,0.291902,0.853054,0.612484,0.348051,0.0312283,0.979851,0.909185,0.836874,0.186433,0.155835,0.91846,0.514406,0.145651,0.222411,0.536509,0.688169,0.181336,0.683225,0.926526,0.901619,0.644624,0.684454,0.300991,0.853835,0.44182,0.863248,0.76122,0.653893,0.868485,0.638905,0.955273,0.425145,0.154807,0.195712,0.291639,0.404569,0.161969,0.505177,0.493539,0.111822,0.122958,0.514108,0.732815,0.207088,0.822144,0.113207,0.897387,0.131051,0.18105,0.453683,0.842676,0.0540033,0.40556,0.908747,0.267445,0.836311,0.523019,0.50634,0.137272,0.375329,0.218751,0.644918,0.308178,0.1564,0.291261,0.674784,0.814587,0.122985,0.185302,0.722051,0.0393106,0.261108,0.4079,0.899898,0.401189,0.257556,0.768044,0.718627,0.334552,0.11934,0.600624,0.931889,0.0853504,0.814312,0.127709,0.722466,0.053082,0.281495,0.637977,0.202287,0.478255,0.0270349,0.984082,0.430735,0.326791,0.752099,0.414936,0.659367,0.884119,0.72021,0.251148,0.317576,0.839365,0.0451071,0.386333,0.937716,0.141035,0.0566074,0.82966,0.735495,0.811542,0.699537,0.920393,0.751284,0.828089,0.700873,0.31424,0.356679,0.666046,0.149079,0.892916,0.516535,0.572412,0.468992,0.0398071,0.98523,0.193477,0.295997,0.199536,0.604618,0.00639379,0.3516,0.644578,0.837529,0.544476,0.104455,0.820743,0.0541053,0.564134,0.786028,0.729297,0.300619,0.409866,0.916176,0.540325,0.795727,0.365603,0.706178,0.290009,0.0745912,0.11572,0.0682659,0.734252,0.968989,0.218351,0.818349,0.60366,0.683761,0.779163,0.72397,0.275374,0.795966,0.267021,0.133475,0.87341,0.245882,0.091666,0.385474,0.782933,0.452283,0.599336,0.58342,0.234655,0.46746,0.22632,0.140682,0.291537,0.491747,0.580241,0.34605,0.833088,0.758471,0.213179,0.890215,0.495739,0.273811,0.976575,0.515818,0.441105,0.811358,0.314041,0.423055,0.813891,0.0872979,0.510621,0.670781,0.148449,0.0712409,0.06501,0.255882,0.025538,0.314065,0.659726,0.324449,0.486161,0.977613,0.40627,0.241022,0.915135,0.877198,0.999104,0.455024,0.829987,0.671048,0.633669,0.828056,0.0166886,0.0590339,0.664195,0.681797,0.502997,0.105856,0.508307,0.537549,0.692614,0.254707,0.820231,0.227187,0.448172,0.773411,0.125238,0.706229,0.669746,0.0077647,0.867736,0.338949,0.207983,0.118513,0.793013,0.0146366,0.554239,0.869948,0.704007,0.770526,0.970203,0.416694,0.471971,0.42432,0.399002,0.319508,0.603776,0.504941,0.121984,0.862654,0.0416635,0.686109,0.478078,0.769663,0.47882,0.18912,0.533944,0.382368,0.692052,0.359683,0.553458,0.957502,0.512566,0.444573,0.352585,0.358045,0.266145,0.0444382,0.13589,0.885853,0.160309,0.484547,0.873183,0.312947,0.406319,0.298107,0.57514,0.556792,0.0636353,0.840421,0.795624,0.56354,0.989793,0.89975,0.728327,0.277804,0.110176,0.333437,0.825734,0.511608,0.0601081,0.0865735,0.248656,0.181506,0.663767,0.360957,0.695427,0.903872,0.69602,0.827387,0.5391,0.370535,0.757747,0.931373,0.170342,0.405388,0.296126,0.60291,0.444162,0.819866,0.846993,0.710533,0.659421,0.746641,0.00578928,0.9682,0.024173,0.767812,0.552997,0.214766,0.184117,0.00237221,0.262322,0.864548,0.551317,0.764117,0.243414,0.40769,0.0157742,0.52233,0.250197,0.493473,0.435209,0.305116,0.634954,0.784407,0.225857,0.582035,0.21621,0.319449,0.809431,0.638577,0.678701,0.926298,0.63536,0.05366,0.338246,0.293224,0.077624,0.564619,0.940363,0.643854,0.496848,0.586348,0.382232,0.280151,0.446664,0.758699,0.707016,0.285311,0.793737,0.047335,0.558371,0.923829,0.862166,0.144961,0.373947,0.0308897,0.502407,0.168762,0.0182893,0.447563,0.234517,0.916914,0.490499,0.575217,0.460552,0.383047,0.728185,0.672565,0.218716,0.499509,0.795111,0.832053,0.978958,0.816293,0.789979,0.164201,0.972133,0.560999,0.137596,0.535281,0.156814,0.895982,0.938969,0.861773,0.479944,0.735746,0.957008,0.439599,0.167825,0.595436,0.400756,0.950106,0.456246,0.86632,0.057259,0.87365,0.229756,0.576082,0.0903862,0.0138269,0.399494,0.707338,0.116455,0.801741,0.768254,0.703123,0.0742605,0.534851,0.579579,0.407275,0.387904,0.778886,0.378722,0.311435,0.47142,0.202189,0.632602,0.484818,0.47452,0.529245,0.799573,0.469178,0.353304,0.986282,0.25147,0.431264,0.423268,0.360448,0.322786,0.210338,0.940191,0.159624,0.263314,0.538632,0.400041,0.970016,0.79932,0.99437,0.939207,0.041889,0.0736346,0.126128,0.746308,0.534053,0.641742,0.699695,0.222374,0.00583357,0.393441,0.690011,0.406412,0.641991,0.21658,0.835446,0.708,0.51239,0.748713,0.529639,0.352058,0.207786,0.433004,0.010433,0.860886,0.653047,0.0442686,0.113369,0.265715,0.085946,0.497655,0.98129,0.582622,0.591744,0.204303,0.913832,0.965152,0.956477,0.983789,0.29408,0.208823,0.54736,0.987192,0.495679,0.128218,0.209683,0.637711,0.606564,0.243358,0.989093,0.506244,0.658852,0.506788,0.053255,0.324817,0.930914,0.288495,0.141889,0.85693,0.728803,0.820338,0.217136,0.761788,0.0199046,0.349813,0.530273,0.793976,0.613261,0.172237,0.879918,0.967113,0.0155717,0.458235,0.44283,0.340742,0.710886,0.335255,0.732355,0.462219,0.207265,0.703716,0.443755,0.888093,0.965577,0.989604,0.944517,0.602826,0.900869,0.756021,0.71837,0.822804,0.598817,0.527281,0.470428,0.650431,0.845034,0.122685,0.995887,0.94412,0.737613,0.18762,0.975298,0.598248,0.799967,0.993197,0.279261,0.810735,0.145159,0.71156,0.68773,0.292781,0.816691,0.773857,0.00266749,0.893689,0.0815336,0.458198,0.89797,0.107949,0.806425,0.189154,0.766105,0.272562,0.32242,0.976713,0.201362,0.451266,0.728304,0.995872,0.46209,0.608168,0.753129,0.226475,0.240561,0.706642,0.341341,0.294588,0.455353,0.731716,0.0925029,0.0103968,0.492395,0.878398,0.626995,0.139681,0.68402,0.299358,0.627966,0.116965,0.908394,0.513773,0.145626,0.408281,0.459927,0.111169,0.972872,0.207228,0.163222,0.00894576,0.957619,0.383403,0.626842,0.708511,0.466835,0.56277,0.0416454,0.770572,0.332808,0.777436,0.942054,0.562609,0.170773,0.724458,0.898065,0.830136,0.212096,0.416506,0.275643,0.133423,0.785605,0.978526,0.211807,0.0847601,0.301729,0.151685,0.0118392,0.805332,0.991186,0.876725,0.0509256,0.033056,0.450615,0.190101,0.204427,0.196164,0.0748229,0.737652,0.94228,0.606919,0.842693,0.729202,0.913127,0.0754049,0.912136,0.079576,0.386578,0.312743,0.759937,0.358424,0.364037,0.104363,0.999331,0.610796,0.372458,0.531091,0.78585,0.124903,0.365886,0.954142,0.63996,0.158424,0.865425,0.941305,0.714544,0.177074,0.129744,0.994649,0.192779,0.679175,0.778375,0.490982,0.167687,|0.120517,0.0136189,0.0750864,0.59075,0.733689,0.134228,0.572437,0.0249904,0.9969,0.427963,0.763774,0.33899,0.098748,0.172831,0.422293,0.71275,0.16352,0.667101,0.824063,0.946358,0.303274,0.105222,0.596181,0.120934,0.301248,0.0702972,0.441231,0.455857,0.318013,0.070455,0.345223,0.617328,0.258336,0.899004,0.0911118,0.996685,0.775374,0.257327,0.230484,0.687845,0.855149,0.544692,0.557001,0.498789,0.236888,0.919152,0.896619,0.40681,0.290313,0.202222,0.253136,0.23214,0.493221,0.470146,0.246384,0.508232,0.355653,0.939809,0.713627,0.736304,0.179228,0.823497,0.758005,0.924833,0.859329,0.151973,0.206127,0.535853,0.701669,0.601344,0.830294,0.949309,0.347036,0.542675,0.904188,0.825026,0.0729613,0.477155,0.481117,0.794296,0.481607,0.346668,0.307127,0.352823,0.063879,0.0799226,0.0568312,0.331881,0.149595,0.950034,0.686468,0.695912,0.167131,0.0832601,0.485223,0.581974,0.382875,0.288954,0.915169,0.961117,0.474208,2.5034e-06,0.620243,0.0839431,0.387254,0.562234,0.172098,0.987722,0.731759,0.495457,0.578882,0.933711,0.977038,0.83877,0.131094,0.256268,0.515084,0.235171,0.187066,0.395113,0.53793,0.861829,0.584272,0.651481,0.73511,0.39151,0.0713429,0.0070132,0.0308266,0.457533,0.560455,0.568619,0.321983,0.814637,0.580994,0.53262,0.0273479,0.469186,0.605082,0.617863,0.487704,0.86864,0.843373,0.413387,0.310552,0.287032,0.16138,0.933593,0.430023,0.330018,0.781671,0.301754,0.00784081,0.0386652,0.709244,0.58456,0.487422,0.747253,0.363121,0.0634776,0.228948,0.819523,0.615366,0.727289,0.721895,0.756282,0.359425,0.30105,0.791623,0.914626,0.249317,0.785295,0.801205,0.528142,0.705275,0.874043,0.778008,0.378971,0.948368,0.240403,0.809202,0.0985821,0.663031,0.314609,0.314289,0.914665,0.299863,0.82927,0.602555,0.0490176,0.0632891,0.438793,0.219875,0.0228652,0.572917,0.940027,0.242156,0.797835,0.618916,0.874524,0.913035,0.0889859,0.560051,0.735113,0.93665,0.511541,0.906979,0.50925,0.665704,0.272535,0.409456,0.98859,0.138416,0.973917,0.403917,0.436287,0.0802899,0.169107,0.460392,0.0376351,0.459331,0.712696,0.643706,0.96842,0.284342,0.127044,0.31062,0.457458,0.929438,0.91172,0.7975,0.4524,0.649443,0.712671,0.24783,0.624765,0.621035,0.341708,0.853051,0.445928,0.931623,0.350215,0.138455,0.0222507,0.072909,0.775511,0.535408,0.961827,0.489463,0.945078,0.0805752,0.354028,0.418552,0.645799,0.256493,0.953053,0.360539,0.109433,0.685324,0.69565,0.292639,0.376247,0.256016,0.18566,0.419296,0.881702,0.873326,0.340857,0.253755,0.0509094,0.761492,0.0814356,0.514121,0.657176,0.763299,0.275139,0.694645,0.464181,0.778974,0.234751,0.139464,0.774811,0.486395,0.192954,0.842564,0.98821,0.614918,0.787849,0.724298,0.808259,0.916518,0.580075,0.669002,0.568641,0.470745,0.397419,0.564724,0.0631729,0.893865,0.253957,0.820165,0.401227,0.919712,0.365752,0.954226,0.865877,0.860089,0.299413,0.618297,0.862132,0.739519,0.922668,0.092311,0.617341,0.364847,0.136486,0.0511591,0.0412834,0.0255758,0.846259,0.666492,0.339363,0.712301,0.424331,0.300361,0.42181,0.236405,0.539125,0.714057,0.418009,0.105834,0.0318975,0.46375,0.60685,0.399928,0.716314,0.464129,0.159102,0.902135,0.0257838,0.914271,0.573175,0.0239778,0.729925,0.227687,0.962556,0.235232,0.457635,0.903423,0.585163,0.924832,0.0376443,0.0780953,0.367137,0.411955,0.348346,0.921651,0.0792287,0.306089,0.560363,0.933797,0.950523,0.848427,0.000845909,0.21252,0.639874,0.735206,0.739954,0.328403,0.193534,0.716862,0.481601,0.760164,0.967502,0.382568,0.138675,0.294737,0.960428,0.512824,0.917206,0.724756,0.130159,0.39222,0.110128,0.538153,0.846751,0.834188,0.407759,0.765425,0.450377,0.191888,0.0616269,0.11805,0.649651,0.99019,0.417609,0.377156,0.801685,0.832272,0.189189,0.103464,0.945215,0.892386,0.84035,0.374144,0.242126,0.176233,0.478345,0.633557,0.94573,0.606864,0.488248,0.373552,0.728888,0.842388,0.434771,0.965678,0.453047,0.553967,0.645091,0.666913,0.605298,0.280138,0.201769,0.911783,0.656872,0.0463009,0.523759,0.296177,0.271595,0.204105,0.329987,0.989797,0.335093,0.519194,0.94392,0.697805,0.677903,0.330529,0.761844,0.717329,0.565738,0.446576,0.783894,0.143989,0.26843,0.607016,0.109634,0.169896,0.598067,0.350184,0.233856,0.462715,0.700601,0.391653,0.173215,0.201883,0.927635,0.563577,0.534815,0.0182196,0.485533,0.355325,0.468182,0.24573,0.286656,0.708731,0.0959334,0.315449,0.67274,0.272402,0.791821,0.402855,0.50589,0.796409,0.409815,0.680412,0.654926,0.178699,0.92976,0.686643,0.384298,0.137626,0.109059,0.0691603,0.547965,0.906585,0.810468,0.784919,0.431006,0.595155,0.707349,0.0569215,0.748831,0.132567,0.0347397,0.605915,0.459449,0.785135,0.999207,0.0465719,0.456858,0.859193,0.334143,0.99324,0.373089,0.535076,0.112855,0.0800981,0.352243,0.297863,0.96473,0.630669,0.268914,0.982231,0.483428,0.591382,0.61552,0.61252,0.331512,0.0588263,0.228468,0.139036,0.491402,0.619141,0.471697,0.197458,0.525548,0.868491,0.318828,0.384416,0.227132,0.882182,0.583831,0.0386846,0.326492,0.835139,0.985348,0.719212,0.552578,0.888348,0.902151,0.474984,0.905481,0.405039,0.231984,0.475201,0.975359,0.294265,0.154476,0.916794,0.869902,0.0517868,0.654594,0.145813,0.114059,0.231261,0.0704569,0.244899,0.0830563,0.736544,0.341243,0.0069837,0.155987,0.0461226,0.423925,0.191387,0.838616,0.43003,0.481294,0.0988232,0.638059,0.608813,0.165272,0.0766352,0.0359551,0.161414,0.840292,0.327968,0.192957,0.226824,0.00655025,0.594212,0.822507,0.60642,0.165455,0.478206,0.467918,0.875435,0.152432,0.428501,0.410101,0.675768,0.117477,0.522999,0.824103,0.156008,0.737274,0.147608,0.971302,0.46534,0.381373,0.855164,0.579267,0.429758,0.574103,0.460893,0.139021,0.0356126,0.513256,0.077762,0.219609,0.518377,0.85083,0.500538,0.913316,0.699092,0.199601,0.0966601,0.105632,0.0330259,0.800099,0.979212,0.946158,0.40558,0.124322,0.00202781,0.283579,0.313181,0.66459,0.840926,0.610793,0.15617,0.862355,0.708304,0.32834,0.0708045,0.809012,0.65921,0.0420068,0.780278,0.434293,0.296491,0.890958,0.878462,0.873151,0.295094,0.768465,0.919305,0.409337,0.610417,0.220522,0.459515,0.33452,0.676727,0.262356,0.225257,0.749495,0.596766,0.834552,0.754438,0.242065,0.497382,0.205893,0.596833,0.723012,0.434138,0.377105,0.385773,0.829858,0.635362,0.099659,0.383968,0.42742,0.390581,0.649887,0.532946,0.09624,0.850926,0.105492,0.972931,0.124177,0.572347,0.919464,0.150272,0.134683,0.168359,0.0551707,0.9361,0.738988,0.191113,0.902703,0.43609,0.753642,0.737531,0.445722,0.594688,0.777989,0.0864932,0.362872,0.669937,0.3821,0.762453,0.559629,0.92249,0.0138595,0.997247,0.0468379,0.189753,0.580123,0.0461631,0.0364379,0.0467619,0.440985,0.286947,0.197702,0.774161,0.387604,0.148173,0.489502,0.255947,0.205363,0.20917,0.534665,0.933326,0.0285813,0.261004,0.543713,0.749342,0.934261,0.874642,0.912703,0.216122,0.754579,0.812824,0.423007,0.389691,0.736462,0.0339689,0.742995,0.118353,0.531381,0.146422,0.187881,0.201839,0.941996,0.433869,0.67164,0.0140137,0.884826,0.0523149,0.0714377,0.775145,0.125839,0.794917,0.106392,0.123226,0.829782,0.564015,0.290196,0.741446,0.110866,0.696838,0.506309,0.511645,0.385499,0.475593,0.067418,0.345146,0.930261,0.909313,0.88165,0.605993,0.497633,0.327571,0.218683,0.679686,0.257557,0.342507,0.783736,0.48036,0.764236,0.951904,0.277335,0.240411,0.00680661,0.990587,0.58792,0.895179,0.734974,0.0377916,0.333188,0.297861,0.684652,0.791567,0.857601,0.249098,0.582896,0.435042,0.132144,0.768711,0.877379,0.315706,0.588375,0.0147358,0.905378,0.15659,0.823024,0.624301,0.649106,0.634269,0.278035,0.555655,0.387576,0.956928,0.950366,0.556594,0.63266,0.0877818,0.713803,0.387575,0.952128,0.534471,0.217975,0.95968,0.867094,0.805048,0.915508,0.448906,0.689004,0.995417,0.645375,0.67466,0.358052,0.371636,0.668571,0.0736048,0.936548,0.0928106,0.0268789,0.697998,0.724449,0.0524154,0.0578067,0.478827,0.274683,0.211932,0.556228,0.592137,0.272371,0.293401,0.171236,0.984481,0.435252,0.876974,0.275438,0.103774,0.877178,0.82798,0.626888,0.652477,0.731719,0.684322,0.528206,0.962697,0.339495,0.188061,0.945562,0.776114,0.833045,0.631251,0.815065,0.187727,0.383542,0.125793,0.387764,0.909223,0.900233,0.0221354,0.65421,0.934785,0.661351,0.180192,0.606575,0.1152,0.306524,0.364798,0.977107,0.24198,0.672933,0.803963,0.267685,0.110133,0.636494,0.252375,0.168952,0.618241,0.313021,0.546735,0.965544,0.540751,0.22867,0.206191,0.249466,0.419057,0.0179489,0.890084,0.429929,0.770445,0.6832,0.789373,0.967298,0.68958,0.471815,0.150993,0.814266,0.0397251,0.668199,0.781354,0.569684,0.32054,0.055859,0.89481,0.880161,0.680093,0.0911452,0.360713,0.806055,0.184719,0.0435374,0.360269,0.451442,0.67142,0.963309,0.851499,0.768042,0.688235,0.139301,0.114314,0.388227,0.685852,0.469587,0.937395,0.260645,0.347089,0.86578,0.371956,0.222309,0.408237,0.660313,0.54193,0.0953622,0.153328,0.283628,0.89002,0.828583,0.138412,0.910396,0.874406,0.751925,0.432796,0.77403,0.356439,0.475855,0.510601,0.241418,0.540124,0.595491,0.644167,0.829501,0.589108,0.863195,0.580571,0.359938,0.767472,0.448766,0.600317,0.300987,0.414825,0.0898112,0.00429749,0.431289,0.737164,0.304803,0.511974,0.353493,0.563578,0.452096,0.572699,0.609619,0.626569,0.15291,0.380888,0.269887,0.736316,0.0694847,0.829513,0.760556,0.38903,0.675959,|0.0031907,0.254698,0.390755,0.332709,0.229153,0.840289,0.604904,0.964735,0.435382,0.0960888,0.980134,0.398611,0.925823,0.747969,0.528627,0.0540028,0.204942,0.198334,0.352748,0.866569,0.160773,0.30744,0.505135,0.547156,0.0858582,0.0406399,0.681353,0.879682,0.313868,0.562296,0.420197,0.231442,0.116689,0.357335,0.66373,0.532818,0.333171,0.124957,0.797237,0.134059,0.798659,0.224886,0.212249,0.818348,0.27919,0.973726,0.954552,0.848969,0.0604242,0.959827,0.887793,0.157006,0.731259,0.0785848,0.698833,0.314407,0.0451953,0.6479,0.161475,0.270843,0.278872,0.613703,0.312291,0.46134,0.234121,0.113819,0.406808,0.220921,0.244267,0.0429028,0.933288,0.563188,0.154396,0.0508257,0.46644,0.666034,0.392379,0.114795,0.32011,0.950545,0.642451,0.874923,0.948232,0.581915,0.750257,0.383015,0.82511,0.792823,0.545178,0.196903,0.783725,0.690811,0.846854,0.434236,0.775704,0.0835091,0.753401,0.296756,0.556993,0.280352,0.508647,0.905741,0.97334,0.89554,0.891857,0.73057,0.359869,0.252721,0.0196568,0.985251,0.269807,0.49181,0.0850493,0.000930905,0.0731165,0.247603,0.213266,0.235318,0.65497,0.88103,0.459736,0.645101,0.297571,0.173968,0.0793045,0.704736,0.795126,0.256385,0.0856705,0.461915,0.658713,0.352679,0.0306829,0.25927,0.663575,0.520052,0.589998,0.278466,0.631543,0.0878073,0.997037,0.279525,0.535841,0.478219,0.813491,0.605512,0.955267,0.353949,0.266286,0.253191,0.291139,0.880736,0.766039,0.990555,0.342514,0.900814,0.698048,0.0795013,0.609244,0.107977,0.925468,0.431105,0.552859,0.769078,0.213018,0.890264,0.126919,0.699184,0.782335,0.838422,0.367924,0.708688,0.0584549,0.48073,0.0196648,0.721498,0.49229,0.564807,0.754038,0.0711696,0.342515,0.260504,0.923353,0.894967,0.866821,0.209843,0.37585,0.105678,0.331805,0.524763,0.356041,0.787975,0.949564,0.025458,0.662349,0.709282,0.603199,0.853161,0.583936,0.429727,0.552958,0.981384,0.497556,0.865822,0.186848,0.778692,0.0113856,0.367136,0.958974,0.959674,0.289743,0.0546811,0.930158,0.135254,0.997141,0.849399,0.26965,0.075891,0.732289,0.442207,0.00514734,0.659455,0.0639945,0.803288,0.0555165,0.671259,0.720383,0.152256,0.0454676,0.163415,0.991645,0.113044,0.128689,0.217246,0.454771,0.259896,0.533843,0.539147,0.889339,0.116612,0.953086,0.668835,0.324487,0.124553,0.738675,0.378826,0.996554,0.191203,0.398199,0.527045,0.402434,0.694918,0.342325,0.768962,0.570991,0.320409,0.954839,0.53694,0.424145,0.223505,0.989321,0.583512,0.573129,0.712568,0.159612,0.691432,0.460685,0.926994,0.172568,0.235595,0.859523,0.199305,0.279219,0.378455,0.150644,0.104794,0.497683,0.842556,0.236568,0.153888,0.75911,0.68252,0.679607,0.22756,0.589721,0.705171,0.346053,0.0735477,0.972739,0.502995,0.210056,0.379999,0.0311537,0.288073,0.743678,0.891638,0.524393,0.237085,0.00660127,0.596383,0.133177,0.360813,0.15332,0.191878,0.257069,0.422899,0.446814,0.940324,0.469226,0.612438,0.272652,0.220357,0.188724,0.55193,0.251095,0.725194,0.610533,0.229345,0.529413,0.264872,0.359241,0.822715,0.640099,0.728289,0.998482,0.971861,0.671649,0.526925,0.244289,0.5304,0.530083,0.327097,0.230849,0.454132,0.780808,0.617756,0.66597,0.988049,0.560942,0.496675,0.904783,0.529975,0.651249,0.677059,0.391943,0.616745,0.34416,0.444024,0.96877,0.66893,0.675431,0.577679,0.26672,0.488762,0.0824106,0.388905,0.235505,0.716576,0.314601,0.758024,0.388104,0.0550789,0.281694,0.853545,0.235489,0.936502,0.459175,0.0286091,0.192573,0.865376,0.765709,0.895043,0.956267,0.350712,0.651923,0.888807,0.904827,0.788057,0.664647,0.583207,0.518062,0.853048,0.986746,0.184562,0.60701,0.634156,0.177598,0.978969,0.628148,0.0226753,0.230914,0.371464,0.454174,0.0636257,0.554688,0.482929,0.929508,0.93311,0.00575167,0.684852,0.821468,0.372806,0.241778,0.411,0.900607,0.831456,0.626819,0.822945,0.35192,0.755741,0.820436,0.652422,0.772488,0.473723,0.921075,0.43984,0.596369,0.229866,0.380496,0.704287,0.899469,0.843749,0.109662,0.460095,0.413766,0.447023,0.696994,0.723059,0.299043,0.367387,0.0608699,0.920943,0.988556,0.835586,0.0588762,0.352739,0.665087,0.717816,0.0446201,0.283902,0.519874,0.970149,0.90212,0.778983,0.599085,0.892668,0.661435,0.596912,0.726244,0.855624,0.70568,0.060704,0.118538,0.168878,0.621475,0.714489,0.838138,0.118817,0.838099,0.830077,0.107467,0.931664,0.873878,0.572731,0.148275,0.625062,0.742872,0.425418,0.135651,0.431817,0.66933,0.897005,0.685601,0.396928,0.212798,0.0112801,0.262875,0.310065,0.778257,0.105759,0.495187,0.162583,0.936497,0.82508,0.821288,0.0947877,0.647359,0.641169,0.786274,0.0498728,0.844235,0.651863,0.920765,0.144957,0.619512,0.4617,0.991862,0.361065,0.926394,0.00276035,0.545942,0.65147,0.167121,0.872447,0.170709,0.508882,0.523228,0.781032,0.454544,0.558973,0.222114,0.166351,0.98643,0.322447,0.767851,0.67479,0.80001,0.0641853,0.977387,0.291902,0.221391,0.778933,0.688993,0.785619,0.43859,0.534587,0.635485,0.443515,0.264905,0.407352,0.145164,0.956286,0.1709,0.467794,0.544139,0.840307,0.531803,0.816368,0.2415,0.364978,0.1574,0.170449,0.679192,0.0845298,0.62861,0.604864,0.242768,0.554831,0.0751767,0.323483,0.431464,0.87761,0.563839,0.605881,0.642057,0.669812,0.59229,0.861572,0.0679442,0.991143,0.603358,0.526654,0.990561,0.48653,0.703084,0.166918,0.755437,0.133285,0.60104,0.775201,0.323728,0.505651,0.941047,0.675074,0.424199,0.234965,0.0459866,0.16654,0.437937,0.809176,0.883655,0.515987,0.106076,0.303057,0.385653,0.633697,0.502147,0.871763,0.503747,0.939906,0.931996,0.704903,0.382842,0.578704,0.838768,0.752385,0.571759,0.680019,0.020929,0.449002,0.907594,0.0301559,0.460773,0.682856,0.391939,0.150715,0.64323,0.368145,0.759948,0.179406,0.924829,0.533486,0.111141,0.911741,0.641507,0.486229,0.458694,0.236562,0.059868,0.133718,0.146609,0.678886,0.551742,0.225271,0.358103,0.363083,0.677132,0.00959808,0.111872,0.0958745,0.568552,0.169648,0.846295,0.373562,0.47945,0.763634,0.397121,0.290602,0.195747,0.0459369,0.653513,0.517012,0.0866191,0.866352,0.466408,0.060235,0.107509,0.052873,0.397089,0.472944,0.648843,0.823277,0.861238,0.102641,0.287981,0.203721,0.0191542,0.509699,0.82625,0.0457057,0.329683,0.483794,0.0944427,0.0236383,0.698138,0.732482,0.226976,0.300476,0.902607,0.87686,0.936373,0.0341542,0.533422,0.597165,0.21587,0.627788,0.845082,0.135848,0.857691,0.993644,0.11038,0.138863,0.616141,0.584963,0.105031,0.729774,0.544337,0.734853,0.439081,0.0890395,0.738669,0.463651,0.709724,0.202284,0.834779,0.134192,0.804816,0.691387,0.274454,0.604017,0.583466,0.556912,0.398307,0.911969,0.247811,0.930602,0.118829,0.214343,0.290691,0.339615,0.299989,0.0253605,0.380574,0.412406,0.245079,0.206285,0.826263,0.845138,0.149756,0.401323,0.728798,0.687611,0.633614,0.172182,0.223801,0.292625,0.144423,0.72763,0.326664,0.973614,0.102201,0.428468,0.298199,0.525136,0.790568,0.534592,0.574528,0.735563,0.0333125,0.263774,0.636875,0.852762,0.531697,0.444327,0.654335,0.427,0.602646,0.46268,0.918054,0.594593,0.647764,0.0166906,0.240556,0.516454,0.635327,0.504822,0.319511,0.879553,0.57247,0.478254,0.481571,0.623615,0.0964097,0.268259,0.490937,0.712784,0.531214,0.761772,0.574351,0.641841,0.591026,0.09579,0.20508,0.329999,0.309675,0.0830626,0.276564,0.211954,0.54927,0.904933,0.196501,0.170475,0.0246889,0.644084,0.476846,0.605483,0.866353,0.21105,0.514325,0.149999,0.81706,0.430476,0.135132,0.173156,0.450394,0.473499,0.343497,0.349934,0.981211,0.141017,0.912676,0.954654,0.981852,0.274784,0.339265,0.00574392,0.492451,0.504701,0.0830381,0.50585,0.340278,0.745453,0.625677,0.696914,0.570494,0.559718,0.863262,0.513034,0.73216,0.293655,0.429352,0.218028,0.586086,0.743597,0.607433,0.893393,0.855855,0.271807,0.192025,0.336125,0.287268,0.440177,0.0927454,0.315408,0.0824435,0.680581,0.842654,0.484143,0.134971,0.922622,0.840978,0.242461,0.97926,0.0463077,0.0410612,0.410898,0.475669,0.422327,0.539523,0.649226,0.0877758,0.375864,0.427409,0.263222,0.143955,0.230916,0.744375,0.216094,0.175005,0.0255176,0.297066,0.383348,0.96103,0.975597,0.504255,0.103642,0.976153,0.414187,0.428158,0.232649,0.773962,0.0308551,0.572842,0.901142,0.961364,0.71457,0.516139,0.04149,0.204131,0.659354,0.202543,0.13864,0.49639,0.856219,0.330715,0.0226429,0.569138,0.939271,0.978598,0.283869,0.390397,0.845872,0.990727,0.409627,0.546853,0.556736,0.735701,0.623456,0.508078,0.369607,0.291894,0.792758,0.005153,0.340481,0.878655,0.148623,0.892896,0.511876,0.841734,0.493502,0.932984,0.277205,0.0463361,0.56428,0.292084,0.520155,0.847911,0.617376,0.687783,0.353469,0.864608,0.0940561,0.822515,0.744416,0.239661,0.290145,0.428179,0.752543,0.35676,0.844774,0.023173,0.332007,0.556954,0.808094,0.238615,0.0621387,0.563964,0.0817736,0.176548,0.38009,0.868187,0.332486,0.714909,0.118203,0.290335,0.455861,0.439648,0.811067,0.23217,0.706005,0.354471,0.836975,0.577309,0.873696,0.0861846,0.807896,0.104084,0.986772,0.452683,0.119295,0.197466,0.738518,0.82567,0.103942,0.911919,0.797573,0.38804,0.804561,0.594425,0.2284,0.568502,0.695595,0.813645,0.622907,0.163632,0.869019,0.0308326,0.534724,0.940091,0.584986,0.537971,0.508036,0.470569,0.934324,0.881161,0.977363,0.0377004,0.767276,0.190014,0.562975,0.456654,0.447937,0.992984,0.687764,0.281273,0.0588297,0.242427,0.432637,0.483729,0.150801,|0.200236,0.267865,0.0683873,0.826028,0.669539,0.781404,0.387142,0.559722,0.827052,0.995025,0.274661,0.591194,0.423043,0.65346,0.721427,0.660227,0.214017,0.390654,0.495368,0.01347,0.168546,0.127454,0.771408,0.903026,0.679199,0.50328,0.956479,0.805082,0.97571,0.00275815,0.875008,0.0723724,0.22727,0.430771,0.273373,0.380632,0.673541,0.62082,0.152204,0.208786,0.106973,0.277045,0.868547,0.0244381,0.172223,0.790667,0.693511,0.0986844,0.858148,0.258282,0.17458,0.764887,0.413722,0.499135,0.988285,0.25004,0.433867,0.253599,0.84795,0.637773,0.892807,0.966374,0.653896,0.381502,0.229986,0.457234,0.616808,0.823675,0.0759345,0.814891,0.666207,0.722128,0.87983,0.635151,0.350761,0.759977,0.917286,0.990726,0.471657,0.628737,0.812096,0.188277,0.381431,0.224405,0.728504,0.581322,0.587478,0.473932,0.307626,0.432435,0.0174314,0.993371,0.989225,0.314117,0.404475,0.0435448,0.017298,0.626161,0.311253,0.767809,0.0314887,0.206842,0.465784,0.881827,0.668881,0.613671,0.371443,0.759586,0.0172493,0.304339,0.787269,0.54253,0.0266021,0.292812,0.581771,0.410602,0.487046,0.253984,0.764563,0.243302,0.424096,0.686024,0.75721,0.899658,0.124239,0.110049,0.900767,0.986421,0.096828,0.381234,0.771542,0.779544,0.322322,0.562606,0.495308,0.984429,0.565511,0.596676,0.973105,0.404673,0.221554,0.913025,0.57883,0.466921,0.613562,0.533363,0.954047,0.578617,0.540255,0.260028,0.954745,0.601167,0.568343,0.0912943,0.537699,0.427218,0.270156,0.556538,0.497249,0.917918,0.351318,0.603059,0.99292,0.82977,0.168116,0.333044,0.376007,0.904432,0.470937,0.308113,0.320994,0.977443,0.246115,0.823268,0.935586,0.528745,0.896955,0.260124,0.0350113,0.901865,0.890166,0.219249,0.450842,0.813016,0.543129,0.365101,0.809781,0.681001,0.73682,0.345194,0.103352,0.638534,0.0715672,0.152309,0.777729,0.0444977,0.0113838,0.269788,0.00877589,0.222772,0.7933,0.898238,0.507864,0.966571,0.236222,0.116483,0.387844,0.601334,0.983366,0.632588,0.109437,0.646594,0.414113,0.131425,0.306201,0.430204,0.621557,0.643191,0.2301,0.164476,0.583445,0.21909,0.460563,0.631864,0.0967624,0.0420347,0.733368,0.0176904,0.115764,0.682274,0.236837,0.230943,0.48123,0.959217,0.674988,0.721934,0.668606,0.568566,0.389728,0.576977,0.211046,0.737286,0.0141666,0.926372,0.756615,0.742352,0.653623,0.545527,0.828983,0.433471,0.26064,0.240732,0.187415,0.32775,0.305213,0.233773,0.864916,0.331816,0.295473,0.841639,0.522183,0.996614,0.861025,0.635303,0.334041,0.189221,0.0402302,0.2,0.278886,0.0881046,0.524339,0.134356,0.73972,0.479171,0.562409,0.77415,0.25921,0.329363,0.850463,0.253649,0.767961,0.97372,0.858071,0.870842,0.980482,0.0237951,0.61499,0.632945,0.253727,0.503562,0.400053,0.869289,0.88383,0.75916,0.384196,0.0392005,0.531332,0.773398,0.710325,0.179379,0.79068,0.661322,0.0212703,0.0857857,0.0265875,0.570774,0.944077,0.674655,0.159757,0.433105,0.128723,0.889155,0.376406,0.868977,0.960566,0.693205,0.78899,0.149061,0.261342,0.428185,0.761436,0.934406,0.951421,0.566744,0.775898,0.438039,0.494727,0.974691,0.906161,0.96126,0.34244,0.143039,0.366543,0.201155,0.0997418,0.177792,0.671851,0.564839,0.590157,0.407872,0.518395,0.976362,0.43373,0.397254,0.28482,0.427519,0.391833,0.683835,0.147632,0.0785207,0.456214,0.477647,0.719401,0.31268,0.975804,0.680402,0.73657,0.572933,0.886707,0.447954,0.889375,0.206193,0.410301,0.222946,0.98948,0.645525,0.00617331,0.747424,0.313013,0.379338,0.683503,0.311018,0.114327,0.255555,0.672605,0.455605,0.074275,0.425067,0.587797,0.882527,0.66189,0.876487,0.208612,0.196073,0.281909,0.938665,0.913231,0.792306,0.86427,0.202533,0.454394,0.34294,0.187861,0.061763,0.0337369,0.275398,0.890339,0.00782996,0.547009,0.792331,0.324001,0.30819,0.490498,0.746776,0.443595,0.0810084,0.774358,0.821457,0.216394,0.760477,0.642884,0.076878,0.24403,0.970692,0.930882,0.404373,0.317229,0.641095,0.762954,0.66358,0.0763411,0.848038,0.813789,0.0553781,0.770731,0.227464,0.0624671,0.369162,0.230449,0.696056,0.938163,0.230784,0.0290592,0.972852,0.514766,0.460182,0.439407,0.891297,0.509694,0.959531,0.776563,0.387134,0.346031,0.667522,0.438343,0.999848,0.489839,0.188038,0.790821,0.270662,0.411164,0.377419,0.355931,0.638601,0.0401317,0.638056,0.766912,0.0607918,0.67906,0.20041,0.967336,0.667402,0.526334,0.723822,0.774282,0.514479,0.481672,0.474885,0.0912499,0.960286,0.535492,0.6631,0.214887,0.317463,0.394971,0.169318,0.125312,0.580654,0.470202,0.383929,0.0610163,0.0494332,0.0639213,0.632936,0.828574,0.013432,0.956844,0.679968,0.593722,0.676118,0.0312427,0.470498,0.395634,0.679502,0.706542,0.944342,0.458807,0.841404,0.0839691,0.156737,0.847535,0.685561,0.810277,0.52984,0.420639,0.729339,0.402525,0.781935,0.167527,0.605017,0.479339,0.068717,0.961583,0.405682,0.458401,0.814409,0.0054267,0.548739,0.194892,0.831742,0.538883,0.497476,0.943715,0.862847,0.23,0.575155,0.605763,0.974891,0.996667,0.0182829,0.0408933,0.11052,0.0416545,0.280884,0.32618,0.203364,0.754661,0.15146,0.667052,0.412383,0.43778,0.35645,0.0393883,0.156179,0.707636,0.20901,0.10144,0.818643,0.144623,0.395803,0.597537,0.102611,0.755657,0.770225,0.0588699,0.0660592,0.135538,0.494069,0.0855353,0.0999655,0.791088,0.970498,0.247993,0.0312788,0.0414925,0.129663,0.74111,0.398655,0.22482,0.920706,0.115734,0.566796,0.758713,0.70746,0.268867,0.915254,0.230061,0.138458,0.131103,0.468316,0.30862,0.424277,0.0949395,0.063038,0.841981,0.728845,0.580306,0.867449,0.624146,0.228455,0.265314,0.205358,0.584741,0.635919,0.079856,0.563941,0.444047,0.939958,0.593603,0.118912,0.0667119,0.748655,0.00958431,0.102152,0.183253,0.177363,0.0133094,0.732335,0.981953,0.809907,0.0698701,0.632704,0.222553,0.0466666,0.164226,0.59051,0.392286,0.57693,0.449205,0.297994,0.526189,0.533015,0.508797,0.542077,0.474664,0.554195,0.204595,0.299378,0.704141,0.592691,0.503863,0.115275,0.52506,0.630347,0.529279,0.532232,0.335816,0.649999,0.960123,0.0210908,0.821837,0.281427,0.363231,0.749042,0.00486463,0.0600877,0.373276,0.644593,0.210395,0.0121955,0.925156,0.871438,0.255597,0.0656227,0.215421,0.0250714,0.94783,0.207507,0.521567,0.310936,0.868354,0.12564,0.674942,0.918955,0.233307,0.638189,0.902268,0.869955,0.784929,0.820776,0.960763,0.806321,0.961643,0.810945,0.08689,0.421989,0.583106,0.5778,0.843623,0.761704,0.159932,0.489065,0.384086,0.412609,0.350616,0.624928,0.420019,0.967045,0.319287,0.266685,0.646385,0.75628,0.876703,0.0125022,0.175614,0.440227,0.239919,0.280975,0.890917,0.149864,0.691412,0.357199,0.489712,0.546194,0.00132376,0.965846,0.0905464,0.748897,0.416526,0.692726,0.47507,0.374433,0.643062,0.391182,0.129562,0.239467,0.148064,0.0413088,0.977337,0.439672,0.667202,0.279707,0.92464,0.70424,0.725557,0.0708032,0.721747,0.829273,0.756058,0.902202,0.958719,0.348268,0.862151,0.962584,0.900806,0.71946,0.345697,0.375687,0.954051,0.512146,0.891405,0.47147,0.00458473,0.407382,0.53837,0.985078,0.968234,0.513593,0.875502,0.581886,0.627252,0.760236,0.612166,0.516936,0.442441,0.974479,0.285359,0.646813,0.326418,0.86281,0.605446,0.136092,0.434359,0.356336,0.399134,0.0548466,0.458603,0.681496,0.223735,0.88755,0.00976443,0.296654,0.275945,0.0475368,0.619249,0.716455,0.46499,0.682651,0.537679,0.590389,0.795852,0.600267,0.025731,0.0224099,0.965495,0.622749,0.32817,0.320275,0.0104872,0.775969,0.0154955,0.783784,0.652523,0.122153,0.512542,0.607629,0.138377,0.086772,0.91818,0.528182,0.23268,0.621845,0.806598,0.85389,0.503697,0.979439,0.627448,0.234475,0.732649,0.147392,0.176651,0.721648,0.764233,0.626258,0.833022,0.930455,0.552609,0.321661,0.737298,0.735034,0.969769,0.272832,0.0614284,0.603805,0.14834,0.499803,0.139962,0.00895375,0.486293,0.844566,0.83032,0.576911,0.58905,0.426903,0.0651822,0.0951054,0.747801,0.732657,0.694473,0.61619,0.342063,0.115605,0.859891,0.044,0.418776,0.0904443,0.884822,0.76046,0.568824,0.392929,0.379841,0.771058,0.68477,0.997015,0.466977,0.500997,0.825377,0.183033,0.252378,0.0987732,0.685948,0.539169,0.889583,0.209436,0.278811,0.012649,0.873896,0.0186272,0.804521,0.564621,0.0823437,0.425794,0.371488,0.526072,0.658677,0.988491,0.398583,0.758512,0.793005,0.114247,0.883088,0.881217,0.4229,0.10761,0.547173,0.181883,0.941595,0.0816514,0.813622,0.836602,0.185331,0.91986,0.874142,0.777401,0.169957,0.668189,0.182735,0.0380374,0.0226129,0.520954,0.95563,0.526918,0.95688,0.269974,0.0332909,0.0499378,0.285899,0.477037,0.473679,0.0975617,0.0575131,0.676266,0.279987,0.0733333,0.659742,0.112538,0.511811,0.591382,0.366997,0.0291512,0.482852,0.663164,0.895449,0.68201,0.645711,0.948339,0.636719,0.848573,0.326406,0.464298,0.796644,0.327027,0.255869,0.579166,0.52938,0.823769,0.806996,0.885784,0.285339,0.461719,0.451365,0.340165,0.73055,0.364106,0.269463,0.995086,0.56147,0.572314,0.601203,0.747558,0.82919,0.496979,0.659799,0.295757,0.571486,0.921616,0.534872,0.421059,0.70679,0.950832,0.299398,0.986086,0.587018,0.66417,0.729569,0.476883,0.750015,0.540547,0.146052,0.75018,0.13623,0.495082,0.0700662,0.565971,0.287326,0.910382,0.666966,0.181033,0.555207,0.552316,0.781609,0.589937,0.158404,0.513623,0.693957,0.829429,0.0128309,0.855858,0.804,0.907038,0.293702,0.27208,0.468192,0.55394,0.339198,0.435499,0.557841,0.522213,0.771054,0.0359527,|0.366825,0.34202,0.648032,0.898814,0.834582,0.641025,0.804002,0.725146,0.362194,0.0942949,0.883226,0.06064,0.882088,0.762399,0.759174,0.276244,0.564713,0.0757856,0.0542141,0.12103,0.410818,0.909862,0.106188,0.405292,0.136169,0.250841,0.18148,0.352977,0.0738372,0.138047,0.28406,0.839999,0.673794,0.722291,0.134225,0.915699,0.510377,0.181201,0.714128,0.5043,0.0634112,0.941515,0.454481,0.662421,0.949363,0.00549263,0.281949,0.724306,0.929205,0.838599,0.31776,0.161379,0.43443,0.170401,0.58948,0.334522,0.381704,0.351744,0.224905,0.994262,0.905557,0.373228,0.320078,0.590184,0.640237,0.113682,0.0615796,0.106911,0.327728,0.596734,0.183065,0.398255,0.443788,0.608979,0.822015,0.228785,0.554001,0.661792,0.0666858,0.733258,0.567169,0.829396,0.0509962,0.130496,0.817475,0.93147,0.415602,0.0739212,0.016913,0.0330986,0.619376,0.50194,0.0817805,0.0203636,0.822718,0.289746,0.264053,0.576912,0.529137,0.181469,0.167285,0.644312,0.337513,0.935822,0.641148,0.41138,0.305769,0.250995,0.994143,0.0844281,0.224398,0.945335,0.948495,0.813662,0.206443,0.9054,0.427744,0.814411,0.585721,0.684679,0.739532,0.606211,0.451781,0.482971,0.821401,0.719227,0.816113,0.185225,0.308099,0.450366,0.71228,0.501923,0.20959,0.642335,0.497017,0.552827,0.341719,0.404803,0.374255,0.339845,0.724757,0.994276,0.957562,0.431686,0.830816,0.119096,0.967758,0.403106,0.142537,0.679376,0.37222,0.851194,0.868198,0.0156657,0.519292,0.700558,0.0820975,0.170559,0.6788,0.745477,0.189039,0.647032,0.0958616,0.840053,0.724229,0.537317,0.450201,0.45662,0.529884,0.0156842,0.0607921,0.265398,0.248647,0.741376,0.497452,0.850395,0.063871,0.819968,0.967974,0.748181,0.660914,0.73002,0.435635,0.157718,0.801213,0.881052,0.967082,0.011649,0.863765,0.218301,0.85328,0.964774,0.357784,0.0728115,0.364455,0.860148,0.770049,0.414091,0.0193597,0.210187,0.602057,0.191855,0.336147,0.0427661,0.595369,0.521836,0.417496,0.0729582,0.75571,0.365934,0.855536,0.68784,0.299533,0.854558,0.292227,0.0123715,0.275067,0.626159,0.559731,0.951143,0.689019,0.109652,0.348323,0.938597,0.941297,0.0401996,0.465582,0.83218,0.901309,0.862443,0.951462,0.489014,0.19253,0.347768,0.765206,0.533807,0.927737,0.719229,0.720277,0.496812,0.374521,0.295752,0.266508,0.819394,0.123772,0.569163,0.224975,0.905799,0.443568,0.853575,0.140934,0.0271512,0.204384,0.772229,0.989419,0.302123,0.515623,0.947233,0.625096,0.778435,0.333389,0.66664,0.805495,0.279528,0.610825,0.634567,0.252089,0.217524,0.889202,0.00726229,0.535965,0.505225,0.286216,0.633119,0.700868,0.435766,0.21338,0.378559,0.219993,0.945617,0.728734,0.732171,0.205515,0.923855,0.174558,0.794195,0.105031,0.332145,0.871741,0.155364,0.0154434,0.379325,0.9934,0.642607,0.903619,0.915306,0.7902,0.864887,0.0560575,0.221651,0.985793,0.162223,0.763501,0.994068,0.875175,0.452536,0.0425303,0.848439,0.682044,0.340715,0.54866,0.642286,0.0909386,0.984936,0.172026,0.827231,0.203693,0.0481322,0.962238,0.585148,0.452391,0.321899,0.643125,0.774294,0.819791,0.824259,0.170404,0.559231,0.0324161,0.707767,0.561252,0.99147,0.525747,0.129666,0.772793,0.281697,0.518513,0.65408,0.722367,0.506551,0.726349,0.421281,0.168156,0.542556,0.997141,0.297928,0.761256,0.295844,0.444395,0.71358,0.315531,0.294981,0.319266,0.86635,0.08315,0.0246011,0.251095,0.716272,0.0130851,0.174814,0.834248,0.096018,0.885858,0.656431,0.618322,0.0143487,0.170341,0.693561,0.486168,0.086589,0.379522,0.511155,0.128944,0.521324,0.358969,0.850384,0.942205,0.932299,0.0571365,0.280097,0.276156,0.646427,0.238315,0.537304,0.774737,0.374605,0.112544,0.86448,0.0930755,0.186746,0.588143,0.563251,0.889104,0.642595,0.31953,0.774642,0.423294,0.221125,0.459098,0.456569,0.990393,0.617204,0.207706,0.0159186,0.0201148,0.610267,0.0904713,0.319722,0.635435,0.799408,0.19728,0.0505643,0.394723,0.892323,0.313361,0.734943,0.303043,0.0935988,0.535908,0.85626,0.242777,0.0545005,0.317698,0.533197,0.808888,0.789418,0.569079,0.989731,0.0332722,0.667278,0.759814,0.35328,0.498895,0.581284,0.191018,0.692287,0.350066,0.940203,0.967235,0.27748,0.741055,0.484951,0.607336,0.77277,0.475756,0.200537,0.0871225,0.535977,0.298106,0.593793,0.150981,0.59022,0.697352,0.346761,0.789132,0.0191039,0.541474,0.0881733,0.977787,0.0116646,0.175884,0.813444,0.720542,0.594227,0.655925,0.00935113,0.0996004,0.0254875,0.575503,0.729962,0.0418392,0.29074,0.974608,0.86285,0.332288,0.019867,0.712226,0.51344,0.955064,0.154926,0.871006,0.110334,0.632608,0.328999,0.184927,0.883897,0.940093,0.618534,0.881691,0.385641,0.975935,0.309123,0.182108,0.111684,0.00561166,0.804489,0.338706,0.841215,0.010374,0.47669,0.509681,0.153814,0.750707,0.739227,0.100084,0.311748,0.549317,0.850187,0.0114353,0.500351,0.686135,0.0408196,0.933553,0.966257,0.300184,0.734015,0.415162,0.446569,0.546463,0.301224,0.382464,0.0771269,0.39686,0.296733,0.389036,0.321918,0.133845,0.215489,0.17822,0.78033,0.333779,0.9033,0.384572,0.237678,0.408572,0.475368,0.237668,0.945136,0.983415,0.145715,0.814447,0.130009,0.998372,0.388107,0.665469,0.577326,0.0977129,0.878337,0.92074,0.72749,0.738862,0.750344,0.698281,0.641307,0.915682,0.937404,0.137117,0.921276,0.970422,0.99325,0.176314,0.0330119,0.440662,0.0338152,0.816696,0.578577,0.862007,0.0260434,0.881649,0.186219,0.937431,0.129189,0.0585406,0.828213,0.31057,0.443407,0.481081,0.280222,0.00567281,0.587215,0.966577,0.850334,0.4824,0.73464,0.462479,0.221088,0.393425,0.223224,0.703429,0.864275,0.831109,0.689927,0.659131,0.837636,0.834713,0.987756,0.717196,0.169483,0.91435,0.515707,0.0634713,0.299786,0.317704,0.895019,0.684347,0.354508,0.395261,0.962576,0.0156215,0.0525697,0.885471,0.393243,0.236011,0.164209,0.380092,0.0942371,0.185154,0.496444,0.892308,0.922095,0.353054,0.430597,0.553476,0.886234,0.983964,0.161388,0.294311,0.580913,0.479604,0.184259,0.60425,0.980068,0.845216,0.245087,0.388451,0.405727,0.314837,0.294405,0.706236,0.281506,0.151444,0.223379,0.84376,0.254543,0.758571,0.186648,0.540206,0.841763,0.758965,0.43851,0.656089,0.165565,0.394063,0.424344,0.763177,0.578421,0.952323,0.7995,0.651177,0.482537,0.951385,0.102187,0.762735,0.685459,0.449139,0.101045,0.1293,0.102831,0.347653,0.66934,0.88027,0.398388,0.897186,0.996382,0.391123,0.861227,0.997123,0.111916,0.325354,0.239365,0.467029,0.325751,0.0631649,0.882728,0.175294,0.953517,0.557444,0.52571,0.727668,0.458185,0.669425,0.358972,0.226527,0.934127,0.408813,0.255088,0.483077,0.395791,0.64986,0.142043,0.0253177,0.57966,0.011766,0.687898,0.24473,0.881782,0.342302,0.00298941,0.728552,0.486359,0.617952,0.802286,0.0528032,0.633209,0.0787613,0.184702,0.0505989,0.629198,0.374034,0.749589,0.351803,0.736291,0.31658,0.1628,0.403653,0.121938,0.0272396,0.264434,0.972519,0.537804,0.859943,0.781798,0.208695,0.18033,0.49791,0.585981,0.373356,0.70019,0.360736,0.96761,0.853273,0.125986,0.676514,0.488968,0.295175,0.942952,0.65622,0.516779,0.358482,0.754071,0.232739,0.680181,0.806679,0.371286,0.688263,0.468632,0.416523,0.444414,0.489999,0.110495,0.307123,0.707573,0.985809,0.0410604,0.306832,0.978583,0.525374,0.731121,0.277181,0.680589,0.229556,0.0761019,0.137049,0.508907,0.847026,0.714319,0.519157,0.679646,0.307418,0.0925474,0.174792,0.958342,0.61945,0.998978,0.806023,0.985942,0.967786,0.768442,0.922441,0.480391,0.294569,0.0874071,0.987932,0.687383,0.117548,0.398444,0.227369,0.52254,0.359407,0.237606,0.556066,0.222734,0.615769,0.416991,0.983425,0.927591,0.792108,0.393463,0.362244,0.291631,0.755669,0.181212,0.643185,0.68784,0.826063,0.0511924,0.315618,0.66121,0.955528,0.905956,0.532582,0.864683,0.328582,0.49025,0.676227,0.139965,0.504738,0.0275592,0.868236,0.550978,0.705882,0.0103883,0.209015,0.882165,0.926167,0.713699,0.971309,0.15127,0.608331,0.825319,0.555544,0.439959,0.879108,0.228507,0.550402,0.0789347,0.464512,0.550813,0.719582,0.286264,0.308512,0.582489,0.863454,0.712646,0.333305,0.173831,0.769104,0.353423,0.895668,0.326536,0.584603,0.935797,0.0600705,0.532009,0.378265,0.883667,0.243704,0.174637,0.601788,0.197622,0.790673,0.309823,0.78955,0.0550569,0.212972,0.178444,0.897737,0.669432,0.67174,0.31936,0.30284,0.408093,0.437764,0.797772,0.0532397,0.0833768,0.983444,0.0573963,0.849798,0.158116,0.459869,0.404929,0.682124,0.319369,0.978163,0.480034,0.0152912,0.193739,0.981422,0.0878959,0.113333,0.594235,0.499083,0.525192,0.53038,0.519309,0.337247,0.0571915,0.891868,0.152562,0.79411,0.606516,0.748205,0.404626,0.351573,0.105138,0.497333,0.466721,0.563461,0.370683,0.723133,0.320753,0.733127,0.0122872,0.112421,0.204495,0.0147055,0.875609,0.96768,0.00573748,0.568961,0.924689,0.280267,0.828076,0.54389,0.940037,0.330368,0.166212,0.567003,0.482621,0.419919,0.216079,0.152478,0.727508,0.724032,0.090484,0.395195,0.986427,0.536296,0.331577,0.395815,0.267276,0.0881028,0.68553,0.0784613,0.423112,0.85849,0.978827,0.429695,0.640701,0.0302469,0.646755,0.690301,0.00270325,0.544626,0.464644,0.871094,0.414444,0.513759,0.547205,0.442359,0.260615,0.0846997,0.914092,0.533101,0.0905591,0.172187,0.910567,0.384329,0.615293,0.169579,0.91393,0.0982829,0.145505,0.00969958,0.0518456,0.40493,0.325032,0.9607,0.870812,0.423281,0.993938,0.636203,0.0589652,0.516128,0.237544,0.92211,0.046489,0.108591,0.863019,|0.291216,0.317735,0.121391,0.463439,0.059797,0.124401,0.499216,0.503081,0.00647426,0.201828,0.0373621,0.113378,0.0283746,0.596553,0.33593,0.665079,0.0926838,0.802934,0.724318,0.688164,0.640138,0.888627,0.453453,0.233704,0.117016,0.0693994,0.304902,0.27649,0.30384,0.475367,0.660245,0.665663,0.625799,0.426814,0.215855,0.640677,0.429806,0.34088,0.772055,0.889517,0.680386,0.958149,0.987302,0.842337,0.490547,0.259236,0.0376152,0.990319,0.517018,0.246983,0.714806,0.957494,0.119628,0.730974,0.0408694,0.67709,0.114829,0.568355,0.0255873,0.15833,0.720969,0.580976,0.133128,0.0279053,0.795834,0.295346,0.10325,0.91268,0.968226,0.735337,0.265307,0.261978,0.0530424,0.0266684,0.175191,0.25289,0.26393,0.340783,0.764016,0.404095,0.645206,0.11905,0.030112,0.751409,0.651312,0.662257,0.697583,0.270993,0.0194176,0.0868191,0.867462,0.946627,0.891688,0.0491924,0.236353,0.0882407,0.353771,0.624891,0.547508,0.128888,0.441345,0.950876,0.285273,0.566561,0.733131,0.956578,0.958665,0.0413154,0.718464,0.296337,0.936185,0.489038,0.292589,0.459337,0.925507,0.64131,0.883827,0.50122,0.724286,0.284107,0.626918,0.226601,0.723364,0.495404,0.911164,0.0547181,0.0559946,0.807123,0.716663,0.337048,0.323815,0.0195816,0.243745,0.889141,0.788856,0.62359,0.982956,0.894225,0.342835,0.683417,0.759513,0.41835,0.800999,0.0342553,0.758732,0.830821,0.105033,0.265191,0.0374005,0.186091,0.540131,0.778514,0.828985,0.169903,0.172155,0.209499,0.122883,0.0548236,0.565495,0.725817,0.788762,0.583286,0.22492,0.907293,0.952684,0.822241,0.601704,0.850432,0.842075,0.163824,0.783139,0.861616,0.667065,0.137453,0.818185,0.876296,0.247924,0.234965,0.858578,0.257398,0.555116,0.0634181,0.411221,0.197372,0.222878,0.000396669,0.489483,0.628962,0.670298,0.504371,0.220912,0.730557,0.976199,0.686488,0.0380182,0.81535,0.412803,0.313953,0.424943,0.106859,0.690147,0.333145,0.888045,0.614674,0.106527,0.616104,0.277903,0.0167496,0.489475,0.3086,0.994074,0.136545,0.505364,0.95992,0.928884,0.456931,0.0279798,0.113206,0.431737,0.369764,0.0503613,0.0134961,0.238973,0.742517,0.475592,0.491298,0.800743,0.379886,0.0719392,0.679857,0.457906,0.750042,0.252186,0.738764,0.479151,0.839518,0.882738,0.436602,0.927483,0.530332,0.674335,0.532123,0.54815,0.394738,0.151531,0.352358,0.777292,0.0489501,0.585388,0.492162,0.771097,0.728232,0.506822,0.219184,0.754876,0.798924,0.125866,0.458043,0.300845,0.664155,0.307042,0.635726,0.0407332,0.79742,0.178284,0.389221,0.823935,0.075253,0.0212021,0.428655,0.663727,0.372161,0.499156,0.828309,0.991002,0.536287,0.160027,0.946517,0.715755,0.725327,0.0023942,0.800763,0.989631,0.553498,0.842619,0.411354,0.196391,0.709018,0.691956,0.101534,0.509696,0.576531,0.0077796,0.456707,0.594305,0.356403,0.8171,0.102284,0.0660397,0.120806,0.130018,0.556571,0.336364,0.269163,0.974047,0.401987,0.876867,0.337389,0.907853,0.253085,0.963994,0.76257,0.907321,0.684614,0.838564,0.686322,0.283511,0.459542,0.0330964,0.994845,0.527321,0.444295,0.385279,0.48559,0.718945,0.950944,0.71442,0.274416,0.0543174,0.252853,0.30858,0.880669,0.534597,0.733728,0.651725,0.816613,0.456253,0.958848,0.972191,0.582614,0.655766,0.961775,0.831662,0.177316,0.694,0.457248,0.290086,0.809192,0.057114,0.635433,0.64063,0.243056,0.376821,0.127977,0.734795,0.624253,0.875128,0.54236,0.439314,0.746355,0.944034,0.436282,0.244104,0.893349,0.0920459,0.19348,0.652126,0.0540842,0.717124,0.876215,0.828501,0.852499,0.815036,0.526042,0.53928,0.265511,0.238511,0.210916,0.718064,0.233017,0.286399,0.721823,0.704433,0.0791664,0.178895,0.64939,0.425079,0.904417,0.158806,0.362133,0.047914,0.42279,0.192624,0.892528,0.336997,0.649443,0.596449,0.219508,0.709499,0.183307,0.0389011,0.341857,0.599334,0.681064,0.630759,0.238195,0.904871,0.782841,0.80808,0.164283,0.391345,0.0297144,0.788075,0.123797,0.736722,0.201756,0.490496,0.436433,0.849721,0.257559,0.539012,0.626141,0.972974,0.918476,0.315594,0.972829,0.895806,0.933433,0.324736,0.581817,0.24681,0.282948,0.0387538,0.737944,0.741852,0.861377,0.942988,0.49296,0.819932,0.7652,0.469199,0.705184,0.333855,0.425005,0.372004,0.122516,0.74729,0.276788,0.679571,0.935707,0.794897,0.471345,0.241124,0.811506,0.668817,0.44001,0.179811,0.589328,0.327967,0.759678,0.218769,0.589132,0.0201587,0.988616,0.222743,0.649135,0.525733,0.796102,0.146561,0.984089,0.66899,0.0465035,0.914875,0.997504,0.667173,0.478285,0.192206,0.0803904,0.239611,0.389249,0.193921,0.351509,0.648339,0.372664,0.305384,0.0433561,0.551767,0.662745,0.190765,0.980945,0.324853,0.803475,0.400274,0.23572,0.558371,0.900415,0.779718,0.0294998,0.0259908,0.0353898,0.918243,0.61836,0.769088,0.658975,0.125775,0.130761,0.231053,0.927541,0.94669,0.88096,0.144583,0.580374,0.645868,0.0722486,0.103806,0.922663,0.00573879,0.413806,0.805629,0.138309,0.0850807,0.464175,0.0630739,0.0984002,0.0528457,0.856988,0.675868,0.922159,0.00252432,0.191492,0.311524,0.161661,0.723032,0.0172154,0.14485,0.550941,0.720334,0.174838,0.86393,0.81729,0.0833607,0.788398,0.670052,0.687271,0.781093,0.218628,0.747835,0.315932,0.929918,0.189791,0.736588,0.324927,0.618433,0.468137,0.115302,0.145609,0.661709,0.155133,0.709321,0.70645,0.614701,0.0331472,0.714978,0.307158,0.76118,0.631832,0.530147,0.858116,0.609119,0.921149,0.0128087,0.176018,0.952588,0.549815,0.744878,0.656024,0.234163,0.73214,0.943207,0.0428987,0.0644388,0.379643,0.733635,0.435373,0.737198,0.564937,0.982764,0.177804,0.0586379,0.31159,0.186371,0.234638,0.235517,0.599518,0.8647,0.919836,0.194927,0.526568,0.138709,0.214344,0.85433,0.957011,0.304779,0.584385,0.549297,0.45454,0.202031,0.736735,0.420377,0.496264,0.548438,0.730678,0.363025,0.923681,0.309636,0.650269,0.550539,0.153213,0.838571,0.855773,0.741978,0.480052,0.400998,0.498239,0.723126,0.665772,0.984568,0.690634,0.287633,0.149635,0.872172,0.614877,0.954583,0.839915,0.910435,0.111292,0.95645,0.926793,0.131295,0.616528,0.446809,0.699634,0.272241,0.780512,0.876265,0.141647,0.054476,0.751556,0.633242,0.651057,0.974307,0.851298,0.686618,0.729921,0.702945,0.337736,0.0101703,0.837536,0.803287,0.0315509,0.516743,0.521954,0.462429,0.0990029,0.567603,0.595793,0.413216,0.136956,0.860961,0.783615,0.403766,0.48427,0.702093,0.802123,0.375577,0.073626,0.790096,0.745917,0.70918,0.469998,0.401779,0.869106,0.541421,0.243576,0.928196,0.0667197,0.594815,0.8514,0.489427,0.542693,0.552541,0.0126791,0.779429,0.342366,0.387576,0.716006,0.755908,0.645181,0.645397,0.667338,0.457014,0.52042,0.316111,0.0714543,0.411714,0.564715,0.0790477,0.249947,0.388998,0.624221,0.970294,0.00474995,0.0465629,0.218147,0.618281,0.355459,0.759083,0.23894,0.457814,0.879567,0.235213,0.614753,0.695129,0.188571,0.116759,0.0989269,0.673236,0.557738,0.686373,0.785997,0.0901248,0.215703,0.642427,0.03875,0.943912,0.803876,0.367697,0.739409,0.438228,0.680625,0.705967,0.521951,0.607321,0.316241,0.80453,0.917105,0.20037,0.805397,0.253104,0.986959,0.524991,0.688891,0.510879,0.509023,0.312336,0.856805,0.636718,0.965944,0.10658,0.137157,0.206092,0.882729,0.101584,0.786629,0.340853,0.0218452,0.982772,0.434082,0.28772,0.406664,0.274582,0.156476,0.902754,0.898094,0.298522,0.826251,0.179674,0.294367,0.283866,0.181065,0.466029,0.333788,0.385645,0.246685,0.592553,0.871491,0.486649,0.145736,0.628308,0.765263,0.793518,0.505936,0.875735,0.42189,0.648131,0.72214,0.269865,0.335742,0.444783,0.691634,0.519354,0.292901,0.295117,0.976607,0.557877,0.147796,0.82135,0.440219,0.0294947,0.935882,0.144412,0.138439,0.114201,0.36558,0.291211,0.876098,0.85449,0.952075,0.912707,0.479144,0.292856,0.757969,0.638341,0.90686,0.970254,0.501765,0.31761,0.690242,0.681372,0.0360935,0.681422,0.649392,0.0976874,0.217789,0.390703,0.797469,0.901836,0.0464166,0.875166,0.040819,0.652628,0.868492,0.30147,0.104053,0.624791,0.537871,0.843801,0.126312,0.138395,0.574054,0.744288,0.482746,0.900602,0.157667,0.197699,0.0442852,0.813529,0.827352,0.593831,0.990727,0.285389,0.475125,0.563076,0.381049,0.571551,0.231618,0.827489,0.836058,0.553313,0.258453,0.937761,0.253914,0.811805,0.938854,0.953029,0.275041,0.260467,0.0768687,0.227363,0.14647,0.491383,0.617839,0.23583,0.443488,0.0858553,0.857481,0.267962,0.418967,0.391998,0.50227,0.0183955,0.965233,0.759697,0.593607,0.0978138,0.497976,0.30677,0.556583,0.814762,0.424376,0.851117,0.18087,0.333605,0.547563,0.496388,0.102526,0.436124,0.639559,0.857641,0.20674,0.544629,0.155787,0.647854,0.728003,0.243965,0.0694606,0.55198,0.969218,0.995875,0.0895684,0.12119,0.430873,0.762573,0.720566,0.578085,0.313189,0.204236,0.199886,0.431358,0.405425,0.175727,0.954638,0.866722,0.656654,0.134155,0.207081,0.302034,0.433697,0.340882,0.433728,0.126179,0.324115,0.376581,0.268943,0.547621,0.337215,0.768432,0.798129,0.160135,0.326959,0.333843,0.340595,0.298848,0.0386497,0.123541,0.452754,0.954176,0.709402,0.410897,0.973928,0.249279,0.768931,0.531483,0.201597,0.75518,0.0914226,0.241837,0.967714,0.406397,0.187164,0.178035,0.781355,0.223884,0.00285131,0.17712,0.12545,0.83571,0.710023,0.448404,0.922534,0.0360629,0.198624,0.903997,0.619044,0.846234,0.715076,0.118249,0.0904187,0.25929,0.604748,0.186889,0.871126,0.942832,0.388992,0.774902,0.56549,0.668994,0.876613,0.488805,0.350661,|0.838551,0.540307,0.175004,0.478723,0.326104,0.0562982,0.34728,0.645703,0.0311772,0.463564,0.523879,0.395405,0.29308,0.675072,0.0711242,0.0611033,0.44576,0.308038,0.84686,0.50322,0.683595,0.635391,0.475329,0.737367,0.637849,0.0866024,0.686273,0.67533,0.424852,0.771698,0.242671,0.171444,0.390265,0.847744,0.336607,0.135553,0.476708,0.186472,0.500962,0.794301,0.0895673,0.804416,0.510006,0.745992,0.956063,0.156329,0.777175,0.290847,0.0236065,0.201105,0.447249,0.262069,0.634671,0.221187,0.858456,0.845984,0.208151,0.127744,0.0088082,0.903042,0.916384,0.840947,0.53266,0.339743,0.4827,0.823806,0.855862,0.503587,0.356433,0.825078,0.565232,0.923686,0.974062,0.697703,0.737255,0.742068,0.609812,0.682701,0.367903,0.652246,0.434466,0.0145406,0.646781,0.933953,0.444814,0.769205,0.171902,0.120487,0.226392,0.760923,0.498773,0.985736,0.355019,0.147207,0.206197,0.99663,0.607066,0.98109,0.39275,0.0713739,0.908395,0.980098,0.797037,0.866197,0.644616,0.0616095,0.852947,0.404204,0.76021,0.077623,0.473166,0.673582,0.976191,0.789405,0.952172,0.596284,0.92579,0.180873,0.73988,0.166041,0.193537,0.184674,0.853687,0.796151,0.0738627,0.467166,0.581946,0.535044,0.73812,0.227847,0.813803,0.0673956,0.12788,0.75461,0.261353,0.370416,0.211909,0.725907,0.258435,0.0210353,0.583427,0.574899,0.717175,0.291897,0.401697,0.00336248,0.376844,0.312829,0.349751,0.755797,0.476087,0.12956,0.859071,0.155072,0.953781,0.898241,0.651287,0.199958,0.615355,0.25948,0.865165,0.451647,0.994376,0.282774,0.572404,0.59893,0.940226,0.00710303,0.121157,0.886919,0.800372,0.897335,0.0235424,0.675103,0.0737685,0.690964,0.184648,0.856372,0.565991,0.680682,0.687523,0.546593,0.287028,0.670127,0.726342,0.149309,0.790528,0.122033,0.167556,0.979162,0.761012,0.273265,0.467424,0.256254,0.258917,0.697894,0.891101,0.0498134,0.922542,0.523433,0.633653,0.714001,0.737129,0.846165,0.96138,0.991089,0.0453161,0.0914221,0.557154,0.161067,0.454391,0.164208,0.233681,0.620129,0.747681,0.324138,0.0951695,0.703922,0.700765,0.0993105,0.859792,0.588532,0.737085,0.474783,0.00735539,0.131806,0.882693,0.485984,0.294334,0.222795,0.180578,0.576689,0.19141,0.40764,0.912765,0.188033,0.853994,0.962339,0.36277,0.607974,0.0587184,0.0333237,0.47281,0.871271,0.130421,0.620423,0.09591,0.937892,0.621807,0.197942,0.249971,0.734542,0.825896,0.637823,0.5303,0.0537033,0.534565,0.059975,0.124545,0.471915,0.969639,0.268697,0.254655,0.0628231,0.526249,0.546801,0.355587,0.821175,0.0949791,0.137573,0.846353,0.694996,0.106934,0.507509,0.032335,0.862491,0.971722,0.961022,0.16968,0.170962,0.552104,0.286265,0.691718,0.0598142,0.304568,0.605969,0.237003,0.0610216,0.0145577,0.559212,0.453936,0.0106423,0.431242,0.840305,0.65736,0.275412,0.124661,0.599528,0.842134,0.254877,0.712409,0.44296,0.988754,0.990316,0.931941,0.927785,0.765719,0.544178,0.324176,0.576447,0.203219,0.353347,0.20608,0.179927,0.56154,0.319951,0.695377,0.515466,0.778822,0.996963,0.611661,0.774983,0.0974481,0.822796,0.772479,0.816877,0.625372,0.080912,0.752482,0.949398,0.803003,0.370151,0.737653,0.771582,0.225257,0.477642,0.00774246,0.493967,0.978635,0.110398,0.0479875,0.88255,0.0399327,0.516457,0.515909,0.0973805,0.0760404,0.210387,0.561498,0.945253,0.934991,0.571582,0.263183,0.469078,0.36633,0.00803953,0.675374,0.551519,0.975958,0.80097,0.352245,0.962899,0.499879,0.219726,0.437267,0.723832,0.285319,0.243169,0.854617,0.116716,0.181826,0.970771,0.462908,0.747498,0.853858,0.703005,0.0167255,0.067865,0.808739,0.0709395,0.162088,0.0501003,0.257361,0.24575,0.273622,0.0442769,0.0811625,0.971618,0.554187,0.776486,0.899859,0.0955586,0.884483,0.815027,0.309517,0.85435,0.038193,0.396405,0.38255,0.780037,0.305939,0.192801,0.492556,0.877305,0.839096,0.218083,0.78389,0.412294,0.640397,0.922322,0.689932,0.828148,0.0194507,0.061304,0.402368,0.820565,0.931358,0.4463,0.297297,0.386482,0.488777,0.950248,0.512498,0.990925,0.703375,0.775331,0.397264,0.386841,0.53973,0.822514,0.0120891,0.528531,0.330282,0.501754,0.161631,0.858741,0.0626262,0.912242,0.430479,0.681668,0.525219,0.684367,0.790341,0.351339,0.669144,0.082724,0.866033,0.754323,0.765956,0.919222,0.295631,0.775755,0.394479,0.987709,0.644053,0.411669,0.0977036,0.183766,0.0969522,0.655142,0.050127,0.974792,0.228151,0.596836,0.482918,0.419211,0.00736648,0.331132,0.521459,0.438355,0.998568,0.592965,0.368497,0.299527,0.0514864,0.0463947,0.919431,0.917798,0.884912,0.71529,0.465757,0.36907,0.0978999,0.0772107,0.0785505,0.117284,0.711977,0.643761,0.0817536,0.706772,0.926387,0.178877,0.384185,0.619016,0.699874,0.102394,0.70942,0.165074,0.743111,0.966059,0.193988,0.22473,0.270309,0.465799,0.737431,0.862463,0.593349,0.486121,0.199872,0.774163,0.110476,0.554208,0.54464,0.460976,0.370926,0.732426,0.154239,0.38579,0.823487,0.0712813,0.644297,0.331243,0.647696,0.480641,0.763205,0.648747,0.714294,0.208629,0.53508,0.122054,0.658143,0.0839682,0.37542,0.532065,0.116922,0.906864,0.486324,0.249299,0.343589,0.635605,0.943293,0.89361,0.647064,0.486149,0.0588911,0.972689,0.907872,0.271341,0.719569,0.370506,0.403262,0.587648,0.125502,0.544315,0.340204,0.295223,0.38033,0.463703,0.318502,0.0173412,0.899404,0.337777,0.247033,0.39119,0.433696,0.542612,0.138068,0.0949196,0.622847,0.0859476,0.38546,0.188339,0.662631,0.310981,0.99483,0.488456,0.418643,0.634863,0.478616,0.881479,0.0877666,0.222829,0.993645,0.155311,0.775539,0.0460603,0.0822639,0.896495,0.200083,0.657013,0.0739454,0.449016,0.543069,0.326849,0.949837,0.642334,0.0881779,0.115625,0.414516,0.839715,0.420425,0.176323,0.620233,0.834892,0.78033,0.396838,0.578007,0.819768,0.392864,0.263364,0.0942565,0.339501,0.224337,0.128362,0.932296,0.752027,0.576205,0.955715,0.195507,0.990199,0.16056,0.794734,0.769751,0.301018,0.49638,0.949141,0.753708,0.210261,0.57298,0.399573,0.821125,0.345763,0.734713,0.324623,0.693982,0.114655,0.336523,0.927845,0.299766,0.903111,0.61515,0.989047,0.234272,0.176167,0.266882,0.310293,0.905374,0.59847,0.456502,0.342337,0.0497311,0.809285,0.0342891,0.174593,0.0132193,0.133672,0.0043962,0.574252,0.809245,0.351302,0.786533,0.270867,0.576719,0.855703,0.26241,0.845242,0.477115,0.298625,0.546148,0.712096,0.974988,0.0614289,0.13074,0.0138929,0.7183,0.49215,0.179697,0.60198,0.934632,0.171007,0.239988,0.875907,0.375934,0.764631,0.863305,0.0992731,0.834534,0.0602885,0.733493,0.334611,0.273758,0.0634074,0.346905,0.122658,0.166333,0.849505,0.221332,0.673618,0.807143,0.698834,0.0210797,0.276903,0.601408,0.818088,0.512757,0.0383716,0.254876,0.533398,0.843195,0.569164,0.606428,0.0951263,0.858389,0.0744586,0.334109,0.707668,0.768264,0.0647384,0.416955,0.823436,0.184897,0.133725,0.499371,0.233389,0.237079,0.161295,0.802599,0.0628603,0.45371,0.902766,0.337957,0.66871,0.0421438,0.773829,0.339418,0.599792,0.974408,0.742173,0.289473,0.300217,0.357745,0.663547,0.857846,0.443228,0.0790074,0.798729,0.548189,0.571958,0.768365,0.261622,0.930066,0.133855,0.345922,0.898057,0.488938,0.420951,0.398177,0.19386,0.77039,0.819961,0.891015,0.687218,0.837386,0.29912,0.767823,0.914022,0.642697,0.725439,0.0258984,0.903937,0.30718,0.907416,0.96565,0.475991,0.702425,0.166102,0.302679,0.373322,0.827736,0.153646,0.541853,0.0798692,0.222716,0.95855,0.753733,0.467831,0.317417,0.946247,0.0553661,0.158695,0.647464,0.0503498,0.163313,0.353224,0.117705,0.665,0.295202,0.732019,0.0144155,0.694816,0.679136,0.54839,0.512831,0.33739,0.560919,0.364818,0.778386,0.73838,0.665237,0.276706,0.496899,0.439458,0.462515,0.222748,0.059284,0.253063,0.561728,0.0810524,0.401573,0.352804,0.372506,0.336805,0.394174,0.0953941,0.0957742,0.388866,0.734108,0.899355,0.475442,0.288314,0.424753,0.0420409,0.209331,0.775331,0.4372,0.946147,0.387049,0.24389,0.337669,0.975119,0.185914,0.210656,0.929955,0.578934,0.0659953,0.428039,0.281244,0.904849,0.722792,0.412861,0.834053,0.5709,0.453586,0.246907,0.15933,0.597741,0.0866929,0.336072,0.0417134,0.594049,0.555685,0.295072,0.966584,0.782724,0.434367,0.935219,0.0201606,0.194247,0.259598,0.678537,0.0658183,0.98052,0.0775916,0.922893,0.537972,0.382189,0.404115,0.0151204,0.488775,0.962343,0.781427,0.950547,0.0299299,0.404327,0.206387,0.522707,0.253631,0.185739,0.952909,0.632594,0.283533,0.38726,0.520208,0.0304041,0.29727,0.702862,0.454303,0.30342,0.0169511,0.0611313,0.460609,0.189994,0.312186,0.593827,0.289357,0.374525,0.263152,0.780922,0.19313,0.143104,0.868914,0.75113,0.715178,0.13545,0.0380342,0.741742,0.714481,0.256136,0.176113,0.674967,0.19644,0.578434,0.698677,0.328201,0.792861,0.309692,0.480334,0.256128,0.723487,0.954067,0.573192,0.929301,0.740995,0.415191,0.876538,0.909336,0.702381,0.422176,0.504219,0.0273805,0.10752,0.194116,0.905227,0.327428,0.0156062,0.871716,0.644269,0.913015,0.174649,0.561592,0.872112,0.279855,0.203751,0.980182,0.762104,0.389038,0.345298,0.0776431,0.257647,0.076823,0.419276,0.900716,0.623603,0.729436,0.659274,0.560975,0.859452,0.652491,0.707433,0.0834297,0.370786,0.750093,0.978555,0.266011,0.917567,0.594373,0.198929,0.149021,0.339107,0.0211582,0.684047,0.459818,0.841393,0.09952,0.653453,0.542963,0.342855,0.905344,0.265981,0.260224,0.461324,0.419808,0.0244591,0.398681,0.99342,0.563765,0.942004,0.810362,0.76307,0.192873,|0.201108,0.126872,0.960479,0.473015,0.981702,0.198678,0.0523297,0.317793,0.628426,0.0587028,0.614893,0.999182,0.0101575,0.188237,0.811712,0.388036,0.851394,0.68251,0.421238,0.70547,0.917945,0.631856,0.308396,0.752036,0.110116,0.0705892,0.050555,0.773494,0.159605,0.37741,0.254478,0.960396,0.670178,0.944728,0.233654,0.272977,0.709943,0.333488,0.111201,0.340542,0.671968,0.013233,0.973376,0.0829089,0.537254,0.00249356,0.186014,0.402334,0.145384,0.611021,0.0293934,0.776165,0.491864,0.111933,0.0742888,0.230636,0.266726,0.621465,0.221512,0.560506,0.593571,0.807232,0.803429,0.106283,0.105857,0.802556,0.260657,0.4605,0.290844,0.320771,0.264289,0.277379,0.622233,0.133709,0.754041,0.369753,0.0635098,0.25684,0.452723,0.709987,0.627446,0.202057,0.178033,0.056528,0.961057,0.445636,0.783766,0.433138,0.61848,0.449189,0.666859,0.308306,0.638588,0.292604,0.632211,0.203226,0.451741,0.690703,0.982775,0.261566,0.929574,0.504794,0.395156,0.231082,0.885131,0.389259,0.836529,0.607995,0.293821,0.108351,0.640912,0.247535,0.168328,0.740448,0.929328,0.918079,0.523992,0.375491,0.829074,0.568417,0.412009,0.840002,0.204508,0.728556,0.36272,0.642288,0.652823,0.598969,0.13282,0.0318524,0.644021,0.397553,0.422084,0.882621,0.181313,0.851604,0.158429,0.850008,0.130266,0.740982,0.717802,0.909565,0.0959879,0.128087,0.455016,0.198943,0.425068,0.86829,0.704527,0.805501,0.927869,0.578456,0.224061,0.933092,0.0436481,0.182536,0.737742,0.474046,0.225887,0.545199,0.84306,0.249424,0.154478,0.581035,0.521333,0.398148,0.941978,0.0607767,0.388849,0.701452,0.61764,0.773078,0.192148,0.498669,0.809596,0.427898,0.138203,0.378864,0.870624,0.330628,0.0775795,0.777163,0.592921,0.973954,0.449417,0.0574417,0.637514,0.883176,0.260853,0.771318,0.0771376,0.447695,0.0701315,0.273259,0.601569,0.590301,0.234862,0.811345,0.113734,0.533026,0.0964626,0.44669,0.684764,0.458371,0.648416,0.210033,0.257488,0.0149046,0.822204,0.186227,0.0818463,0.7121,0.358817,0.801832,0.213093,0.431063,0.933425,0.0801818,0.92965,0.158596,0.953938,0.886426,0.718694,0.0784321,0.707978,0.0982639,0.427364,0.295968,0.805801,0.0913748,0.900523,0.619458,0.324913,0.436517,0.886874,0.838091,0.577769,0.0169839,0.0234029,0.928565,0.681999,0.917535,0.312525,0.396482,0.595013,0.976476,0.739203,0.494284,0.349172,0.344156,0.275773,0.0564716,0.461408,0.749939,0.190434,0.227376,0.134807,0.402694,0.133972,0.170405,0.0633003,0.947965,0.861679,0.29167,0.0349512,0.468066,0.102705,0.941404,0.960806,0.248978,0.407197,0.187697,0.847635,0.894498,0.0148195,0.82427,0.464027,0.831765,0.414459,0.536374,0.671629,0.133328,0.761926,0.0487633,0.208354,0.346703,0.643977,0.429772,0.391832,0.062994,0.513252,0.069397,0.340765,0.593862,0.112029,0.962094,0.228968,0.411471,0.00705248,0.174376,0.674027,0.578986,0.483894,0.428208,0.903562,0.259924,0.94196,0.734942,0.631784,0.874209,0.37943,0.0707685,0.0669352,0.503599,0.997386,0.256553,0.616774,0.660944,0.35363,0.810547,0.780789,0.0289071,0.0845312,0.206773,0.127631,0.509157,0.0638177,0.471831,0.365274,0.144165,0.20154,0.386082,0.285325,0.833838,0.514455,0.050036,0.693624,0.624674,0.666624,0.670279,0.739568,0.547932,0.127541,0.0796264,0.302365,0.729922,0.919552,0.631302,0.513161,0.301119,0.27625,0.250071,0.816608,0.599988,0.184296,0.253103,0.576014,0.785189,0.130993,0.580899,0.309186,0.721772,0.956046,0.756265,0.11472,0.851363,0.0908961,0.49713,0.0475961,0.979175,0.179287,0.972928,0.718868,0.856895,0.92064,0.704183,0.468645,0.830424,0.276449,0.929576,0.0741857,0.629469,0.708399,0.579593,0.194929,0.731418,0.0238782,0.565009,0.688325,0.628989,0.536525,0.985504,0.416348,0.721829,0.143344,0.659997,0.263889,0.0442337,0.000970662,0.32106,0.813471,0.353011,0.0523509,0.507262,0.620449,0.0396997,0.128315,0.963976,0.993125,0.182882,0.101431,0.733992,0.852967,0.694733,0.497566,0.256248,0.212398,0.187134,0.53376,0.00431067,0.765647,0.308885,0.575556,0.619703,0.0813586,0.800554,0.957382,0.910523,0.533782,0.547619,0.625023,0.0346502,0.870346,0.593268,0.658625,0.111828,0.391204,0.853385,0.239787,0.293161,0.169583,0.265999,0.894504,0.526348,0.214188,0.312885,0.652941,0.985053,0.482519,0.582523,0.547041,0.0506251,0.220264,0.595606,0.480206,0.765837,0.0158901,0.484248,0.377077,0.186588,0.459744,0.315908,0.949649,0.871794,0.938682,0.242518,0.680991,0.746835,0.869141,0.928243,0.582581,0.078398,0.467337,0.0781399,0.0651038,0.422467,0.450158,0.362242,0.914937,0.425902,0.552502,0.127236,0.408275,0.903724,0.943794,0.799488,0.85864,0.926826,0.727024,0.792467,0.179959,0.883245,0.479145,0.294222,0.916405,0.998057,0.678294,0.475124,0.0683976,0.638813,0.188349,0.596372,0.387065,0.820547,0.477914,0.810184,0.565399,0.0264785,0.136176,0.999981,0.794572,0.853863,0.412232,0.421131,0.904574,0.487364,0.331987,0.460142,0.797837,0.666016,0.578417,0.105369,0.905809,0.168341,0.859021,0.143596,0.497065,0.673304,0.323699,0.256055,0.941237,0.930858,0.0657117,0.105117,0.600585,0.0257468,0.489686,0.317524,0.131425,0.0815539,0.183733,0.355048,0.27391,0.921792,0.255244,0.228303,0.842882,0.321587,0.582259,0.372505,0.306317,0.123139,0.216917,0.936952,0.273455,0.45741,0.0790952,0.47741,0.986993,0.457204,0.104212,0.460005,0.422643,0.926369,0.279906,0.413275,0.0297598,0.939054,0.684009,0.696736,0.343522,0.0984102,0.690042,0.245622,0.0574766,0.486697,0.351371,0.535112,0.668692,0.088552,0.99178,0.214252,0.514402,0.0262836,0.85386,0.110875,0.792484,0.0149725,0.103165,0.806409,0.938771,0.981279,0.542143,0.359417,0.620921,0.209081,0.587588,0.886314,0.21577,0.839516,0.0504909,0.182179,0.677436,0.505293,0.344835,0.954893,0.295794,0.0869231,0.911844,0.904591,0.671834,0.209851,0.142042,0.229516,0.119483,0.107665,0.489309,0.486617,0.714274,0.710776,0.827875,0.615878,0.381884,0.757981,0.603328,0.874283,0.382549,0.854111,0.521723,0.996356,0.670323,0.105404,0.149948,0.46731,0.357808,0.145904,0.126759,0.13699,0.581486,0.743473,0.554193,0.450478,0.233655,0.501536,0.797696,0.543245,0.496824,0.383546,0.133795,0.287843,0.388315,0.386733,0.249634,0.0493397,0.850681,0.270999,0.688963,0.251882,0.927753,0.816319,0.541025,0.233059,0.0519547,0.314725,0.80821,0.380246,0.397447,0.514341,0.576728,0.266064,0.517624,0.58935,0.293887,0.651884,0.477184,0.467875,0.429584,0.599558,0.218652,0.529642,0.782333,0.262538,0.648508,0.78995,0.59414,0.428747,0.763719,0.209705,0.35064,0.276624,0.694986,0.660048,0.283025,0.733127,0.0152482,0.126337,0.800799,0.188217,0.204091,0.0135616,0.163952,0.383734,0.510968,0.575475,0.352225,0.639649,0.855846,0.0757098,0.775109,0.986818,0.759062,0.603077,0.515544,0.989772,0.451609,0.0303398,0.309727,0.914627,0.896017,0.208846,0.746122,0.199717,0.882044,0.505263,0.160823,0.053366,0.702064,0.489508,0.622697,0.532385,0.158313,0.73462,0.384913,0.228877,0.818222,0.968832,0.390111,0.995083,0.447309,0.916646,0.750642,0.625913,0.368226,0.91158,0.701379,0.978162,0.999306,0.86501,0.959907,0.446743,0.445828,0.689688,0.155797,0.107526,0.273797,0.225101,0.81767,0.0770738,0.587546,0.482923,0.500214,0.655374,0.953228,0.809959,0.166618,0.439501,0.850319,0.318167,0.896075,0.0895135,0.198212,0.994367,0.0467732,0.100922,0.565066,0.254722,0.892103,0.319255,0.568717,0.913721,0.700361,0.192043,0.608966,0.731164,0.554354,0.382373,0.255788,0.906917,0.874476,0.543347,0.290903,0.203778,0.0560637,0.987287,0.111499,0.68883,0.295599,0.514293,0.0944133,0.28034,0.169571,0.874923,0.763309,0.197331,0.999928,0.892178,0.52017,0.461253,0.978921,0.905571,0.257497,0.75247,0.505851,0.975554,0.849893,0.0733769,0.112255,0.0426599,0.97674,0.42942,0.0974185,0.819225,0.389832,0.146467,0.239006,0.0624642,0.303252,0.458862,0.904631,0.744128,0.677971,0.56613,0.109372,0.678504,0.976873,0.628919,0.934676,0.689324,0.234222,0.729358,0.567669,0.248411,0.812765,0.301984,0.510602,0.078931,0.185818,0.750396,0.0149891,0.120589,0.532295,0.640633,0.56622,0.145989,0.233956,0.674801,0.273335,0.674003,0.919728,0.902736,0.954788,0.519807,0.290056,0.555546,0.888376,0.101724,0.575013,0.677213,0.554307,0.740444,0.0123789,0.0316209,0.56876,0.0779042,0.758709,0.700973,0.156969,0.839049,0.288105,0.85298,0.494641,0.86333,0.525234,0.667505,0.976098,0.55662,0.0893102,0.779803,0.742495,0.557263,0.49533,0.16465,0.864606,0.77926,0.983812,0.175732,0.469314,0.698355,0.626244,0.291919,0.934956,0.477977,0.368839,0.00129861,0.498293,0.458357,0.944782,0.821086,0.614394,0.187772,0.713027,0.898316,0.0745686,0.157253,0.50763,0.679688,0.0271626,0.823547,0.550017,0.215909,0.281687,0.651576,0.178404,0.435006,0.419584,0.0651771,0.308684,0.991298,0.060145,0.707715,0.75899,0.610083,0.119736,0.340296,0.792924,0.374688,0.186651,0.363154,0.22671,0.866651,0.0689768,0.571318,0.520085,0.767466,0.904689,0.988758,0.271831,0.384785,0.996232,0.174493,0.0687173,0.00766718,0.253023,0.813155,0.647636,0.439704,0.467041,0.782777,0.117342,0.710424,0.0122102,0.905949,0.0774171,0.545138,0.536075,0.24802,0.0812163,0.511043,0.309212,0.676711,0.942441,0.612973,0.666191,0.00907421,0.341223,0.626416,0.321036,0.0507163,0.201628,0.749268,0.685313,0.0707287,0.0619645,0.647483,0.973656,0.107487,0.765977,0.868555,0.50638,0.37864,0.307475,0.231932,0.502901,0.2568,0.76637,0.699966,0.146757,0.720334,0.983889,0.643811,|0.830919,0.369693,0.801524,0.756399,0.574099,0.579842,0.793572,0.553404,0.55458,0.427462,0.465937,0.537573,0.586919,0.970542,0.631326,0.300869,0.5429,0.561728,0.169604,0.707245,0.156278,0.295275,0.935453,0.138353,0.750358,0.262867,0.765518,0.457809,0.347031,0.127639,0.529041,0.355381,0.523864,0.78812,0.272956,0.863254,0.975123,0.0770261,0.0569948,0.983855,0.146425,0.00132656,0.830122,0.77201,0.535257,0.763349,0.0348852,0.658008,0.299031,0.656629,0.234536,0.484126,0.172372,0.0440126,0.498047,0.0953622,0.576629,0.261878,0.756634,0.633377,0.00760084,0.0571222,0.363563,0.169025,0.498411,0.148726,0.112961,0.789742,0.140802,0.0247251,0.102748,0.275461,0.799201,0.596924,0.714209,0.261027,0.411142,0.467748,0.200705,0.369483,0.612768,0.558903,0.401954,0.237816,0.0387378,0.596401,0.746514,0.784199,0.742017,0.561357,0.161557,0.198563,0.931042,0.891648,0.695268,0.603347,0.488443,0.185004,0.519149,0.650344,0.912437,0.646399,0.959199,0.38042,0.437232,0.521483,0.176575,0.124792,0.219338,0.884236,0.52852,0.953959,0.322579,0.161779,0.889156,0.649483,0.772367,0.857595,0.337171,0.999186,0.534891,0.480827,0.386045,0.624964,0.465126,0.169364,0.475301,0.0417593,0.513524,0.465274,0.674914,0.411469,0.791499,0.16479,0.255975,0.64709,0.897236,0.915888,0.0395995,0.726442,0.814228,0.483431,0.0555732,0.131835,0.801442,0.969996,0.654553,0.129907,0.353653,0.375212,0.416304,0.692577,0.670315,0.877159,0.779552,0.702928,0.732776,0.864723,0.876662,0.234217,0.177569,0.586295,0.542256,0.302662,0.937128,0.0701739,0.390919,0.665874,0.173281,0.285592,0.669475,0.609221,0.950343,0.235397,0.328749,0.818221,0.356605,0.159873,0.519277,0.193327,0.0612006,0.766848,0.118363,0.223314,0.829732,0.621485,0.70583,0.904985,0.690951,0.616926,0.443952,0.488341,0.963211,0.839568,0.411427,0.704369,0.0911877,0.403749,0.0421866,0.442786,0.266005,0.500268,0.639406,0.112065,0.0701566,0.989198,0.359699,0.553008,0.0226853,0.361297,0.674343,0.45391,0.87757,0.685365,0.0902216,0.390258,0.344162,0.180737,0.734771,0.840142,0.0194637,0.480626,0.990336,0.474356,0.666636,0.929547,0.0891808,0.866083,0.492846,0.0958066,0.811913,0.00343281,0.976361,0.252665,0.249961,0.463841,0.973758,0.72542,0.360187,0.0489126,0.620111,0.434888,0.546808,0.0575539,0.715005,0.378183,0.546546,0.57165,0.416975,0.958066,0.717977,0.924739,0.194463,0.402313,0.650944,0.99112,0.596142,0.309131,0.673148,0.399507,0.00218314,0.483581,0.994434,0.47021,0.0960419,0.949641,0.466283,0.0638977,0.0274636,0.817715,0.995069,0.301587,0.204198,0.77812,0.346202,0.295006,0.37839,0.717152,0.137153,0.255287,0.985761,0.59272,0.43242,0.182156,0.25758,0.273507,0.27113,0.173353,0.429852,0.418366,0.617847,0.638478,0.586408,0.267756,0.209791,0.745063,0.746336,0.072117,0.792513,0.351226,0.869434,0.937043,0.783397,0.0978457,0.523762,0.378266,0.907106,0.0736126,0.596072,0.800741,0.682838,0.565162,0.893434,0.0958781,0.349581,0.278231,0.463692,0.520758,0.976547,0.150688,0.577126,0.920481,0.758397,0.394062,0.29125,0.843539,0.266818,0.984311,0.723923,0.794939,0.218859,0.128251,0.0923738,0.0163044,0.480955,0.510485,0.266675,0.315192,0.139138,0.207823,0.200041,0.580258,0.725165,0.63762,0.777165,0.174684,0.611424,0.395695,0.61926,0.777088,0.694598,0.871127,0.611501,0.926122,0.65556,0.263131,0.61312,0.338938,0.898137,0.677807,0.588618,0.880148,0.831908,0.0739934,0.33582,0.441905,0.159538,0.536826,0.0224808,0.682393,0.658565,0.989922,0.489986,0.147078,0.190463,0.29314,0.716351,0.844488,0.00845134,0.47177,0.64567,0.765967,0.465665,0.579284,0.0812903,0.342348,0.132371,0.541098,0.708205,0.272285,0.16973,0.200825,0.155204,0.258833,0.964577,0.942787,0.838787,0.490282,0.990807,0.633741,0.530454,0.46131,0.768378,0.052218,0.101224,0.147413,0.995068,0.93623,0.215349,0.258059,0.0359324,0.0441234,0.458157,0.134472,0.374944,0.165312,0.189013,0.360236,0.709332,0.880402,0.177105,0.402835,0.360612,0.601833,0.813644,0.929991,0.162806,0.809958,0.438233,0.721492,0.788855,0.567201,0.996487,0.920736,0.428299,0.984046,0.286196,0.635921,0.43379,0.531719,0.0197126,0.738613,0.488341,0.933409,0.212456,0.720158,0.356281,0.831298,0.39648,0.48193,0.749036,0.557361,0.11514,0.234301,0.755169,0.491214,0.0781359,0.918529,0.959119,0.262523,0.210159,0.709565,0.563538,0.810767,0.393077,0.918392,0.140162,0.408274,0.980146,0.997131,0.440878,0.976325,0.556922,0.28272,0.836664,0.216212,0.383126,0.225934,0.0333374,0.146913,0.613009,0.367609,0.141523,0.58826,0.00283867,0.461824,0.313583,0.083868,0.743345,0.148699,0.890008,0.15474,0.743777,0.133021,0.558723,0.0377107,0.902685,0.385367,0.757477,0.388388,0.0844783,0.160506,0.674448,0.188613,0.0768012,0.615506,0.375714,0.548554,0.104667,0.657118,0.237617,0.720176,0.972215,0.553038,0.813301,0.627594,0.795974,0.512638,0.312671,0.996264,0.591347,0.434519,0.21818,0.11467,0.611275,0.693495,0.94958,0.458307,0.347072,0.829541,0.74725,0.375522,0.217354,0.653026,0.544987,0.735149,0.161374,0.841614,0.0207198,0.2223,0.0958179,0.805869,0.063912,0.445459,0.672685,0.100653,0.68213,0.215972,0.756202,0.636439,0.261522,0.530606,0.180851,0.0984136,0.761748,0.555606,0.934439,0.0719808,0.0628937,0.881315,0.155789,0.839442,0.866898,0.470647,0.80485,0.865654,0.881788,0.320295,0.146933,0.207032,0.679554,0.856203,0.366733,0.658405,0.605237,0.496725,0.279717,0.345496,0.977663,0.206707,0.865252,0.71271,0.463127,0.395775,0.405187,0.498073,0.5815,0.61668,0.34577,0.106492,0.0650381,0.397461,0.929797,0.715621,0.0192426,0.25574,0.928468,0.094662,0.382986,0.230928,0.832928,0.0669733,0.417871,0.589681,0.110153,0.354013,0.312935,0.53345,0.268967,0.982486,0.75514,0.00334156,0.847227,0.39305,0.442083,0.93991,0.841195,0.784323,0.831494,0.490366,0.51611,0.874753,0.356773,0.144129,0.740935,0.0248572,0.787916,0.45809,0.319354,0.45243,0.752868,0.159038,0.196505,0.162001,0.562885,0.105731,0.411248,0.591541,0.142726,0.981118,0.69781,0.314947,0.647616,0.867657,0.510742,0.773166,0.724661,0.306732,0.451987,0.215475,0.47058,0.876497,0.3635,0.65751,0.659757,0.00330704,0.487215,0.847479,0.689207,0.0193722,0.823226,0.446534,0.738041,0.186108,0.0227849,0.606793,0.0488322,0.166364,0.964201,0.198486,0.211956,0.24503,0.87165,0.918737,0.230371,0.77876,0.86526,0.88074,0.484728,0.607597,0.0201733,0.738321,0.0544469,0.347653,0.880769,0.722121,0.794647,0.35436,0.556246,0.776547,0.108544,0.748541,0.362701,0.632334,0.243372,0.45069,0.22621,0.470703,0.455121,0.722283,0.222583,0.80486,0.287162,0.391245,0.90773,0.90015,0.284539,0.948547,0.0472994,0.378486,0.821143,0.70748,0.205795,0.563074,0.0101646,0.921688,0.90533,0.393321,0.799409,0.102277,0.599182,0.177724,0.414083,0.762626,0.577683,0.274341,0.277978,0.368931,0.860182,0.20025,0.805361,0.9185,0.551802,0.553462,0.875816,0.243087,0.170961,0.0997054,0.300798,0.238366,0.473096,0.481356,0.488966,0.829845,0.605472,0.619183,0.759038,0.902497,0.783085,0.261461,0.805553,0.483605,0.570079,0.563129,0.272567,0.905629,0.588922,0.228832,0.749103,0.405309,0.802112,0.586556,0.0873719,0.799028,0.717684,0.864901,0.944632,0.0321084,0.905966,0.105471,0.786697,0.695859,0.0504375,0.925233,0.845213,0.92844,0.177463,0.488637,0.507103,0.432784,0.435625,0.0180022,0.694293,0.800111,0.0168816,0.441806,0.586327,0.598084,0.375214,0.37061,0.332507,0.419541,0.373984,0.874911,0.149799,0.74557,0.979568,0.335016,0.496454,0.511617,0.303536,0.156115,0.547215,0.0654588,0.0198713,0.392541,0.639458,0.228102,0.618421,0.163261,0.146011,0.780089,0.416379,0.807479,0.565418,0.391928,0.470729,0.41759,0.707465,0.226127,0.38763,0.299237,0.828936,0.903225,0.727899,0.208119,0.572648,0.510451,0.986696,0.0828928,0.00972426,0.512574,0.545616,0.497841,0.376824,0.115907,0.674279,0.788371,0.480818,0.782259,0.0923196,0.494536,0.443494,0.934626,0.574661,0.13698,0.638899,0.658314,0.897635,0.755805,0.578097,0.294447,0.172708,0.337115,0.944859,0.157321,0.554698,0.142791,0.696586,0.732325,0.899386,0.164215,0.657495,0.199138,0.687331,0.00808424,0.24119,0.83791,0.11661,0.0390487,0.502694,0.779294,0.761737,0.309896,0.576304,0.736507,0.502167,0.289371,0.557898,0.47994,0.672658,0.214494,0.47677,0.40277,0.786206,0.0262153,0.0365717,0.829024,0.266192,0.164649,0.31385,0.327654,0.51919,0.204132,0.308182,0.447915,0.257698,0.825016,0.584517,0.441345,0.637816,0.899041,0.628607,0.587044,0.74407,0.39167,0.213478,0.248815,0.618461,0.143353,0.058194,0.536043,0.0530196,0.402489,0.793938,0.517971,0.230896,0.0453427,0.678131,0.304219,0.154453,0.182405,0.749881,0.593515,0.120336,0.98068,0.831281,0.850125,0.648062,0.486085,0.535538,0.977956,0.0455272,0.706006,0.2476,0.0327343,0.839073,0.965827,0.634523,0.102359,0.374218,0.135539,0.0229082,0.617398,0.690093,0.105058,0.968488,0.767587,0.710437,0.607394,0.669973,0.150197,0.982818,0.616911,0.538305,0.816852,0.180963,0.125724,0.965334,0.0927396,0.906338,0.975726,0.75833,0.605201,0.327343,0.750723,0.527819,0.363274,0.397527,0.437908,0.764062,0.142894,0.181997,0.935643,0.638627,0.735082,0.782582,0.508548,0.415761,0.990569,0.0140859,0.291254,0.489088,0.998908,0.493218,0.418067,0.149562,0.743258,0.714643,0.847794,0.865484,0.192959,0.997189,0.415246,0.742225,0.648977,0.748315,0.544405,0.222764,0.342309,|0.0613385,0.499937,0.462241,0.975348,0.227129,0.37558,0.688806,0.757914,0.170671,0.451446,0.463992,0.307729,0.911719,0.781503,0.674235,0.712114,0.0901011,0.760276,0.516289,0.0450801,0.765651,0.24813,0.50636,0.2999,0.755315,0.718201,0.533342,0.154163,0.647051,0.427717,0.849066,0.398097,0.360938,0.410158,0.628044,0.641354,0.90995,0.583903,0.834347,0.251021,0.985883,0.50886,0.228147,0.785686,0.878274,0.779575,0.508341,0.0778857,0.0029552,0.682677,0.235238,0.239161,0.379647,0.150779,0.00876391,0.32625,0.424123,0.942275,0.0443073,0.791703,0.287254,0.486342,0.47422,0.57742,0.175135,0.825098,0.45119,0.962556,0.316862,0.601767,0.60408,0.699856,0.670405,0.706968,0.13562,0.908727,0.370425,0.624,0.993974,0.600959,0.777486,0.609466,0.0336385,0.545699,0.26933,0.136028,0.0372623,0.627581,0.522043,0.778904,0.821816,0.500174,0.396332,0.817602,0.354728,0.642838,0.712321,0.927974,0.890589,0.507181,0.801485,0.0646662,0.339114,0.496917,0.279101,0.66981,0.396771,0.316692,0.727759,0.00258666,0.471573,0.893908,0.0307184,0.182764,0.29729,0.0793688,0.430446,0.662443,0.343018,0.0692216,0.592329,0.920339,0.780155,0.0945792,0.76173,0.344975,0.364946,0.223467,0.512924,0.179534,0.965241,0.290671,0.604029,0.760216,0.839641,0.897349,0.513179,0.860949,0.076848,0.908282,0.829926,0.822831,0.180676,0.578487,0.617673,0.415909,0.118466,0.0120748,0.0985327,0.590283,0.848383,0.979549,0.271037,0.469414,0.431333,0.289575,0.335934,0.647154,0.437445,0.0609666,0.00133568,0.844155,0.863651,0.84278,0.906838,0.77286,0.614849,0.52263,0.163117,0.754184,0.652288,0.39474,0.301711,0.407378,0.778164,0.63027,0.0324684,0.162358,0.852203,0.207319,0.928829,0.37737,0.643539,0.0723469,0.868503,0.997116,0.882488,0.164633,0.89718,0.424541,0.258102,0.548168,0.0675315,0.930272,0.989741,0.877619,0.259341,0.749902,0.314826,0.0205294,0.669376,0.924637,0.260868,0.628577,0.662912,0.821493,0.021238,0.500996,0.388015,0.0117711,0.0828949,0.727977,0.93804,0.175709,0.259989,0.343537,0.441828,0.486839,0.962395,0.176444,0.594125,0.10385,0.672265,0.939577,0.167547,0.95553,0.232459,0.973088,0.557123,0.32998,0.198324,0.519369,0.313548,0.196467,0.710114,0.615058,0.776746,0.142938,0.525835,0.0861874,0.93802,0.909288,0.638108,0.896038,0.327789,0.0246446,0.372452,0.744561,0.806566,0.498328,0.30945,0.932191,0.359063,0.266899,0.606209,0.415397,0.411263,0.701863,0.683719,0.443822,0.0585834,0.919238,0.407358,0.440003,0.547279,0.899666,0.0492374,0.424222,0.217873,0.880059,0.725443,0.19104,0.0674748,0.45929,0.715506,0.0243362,0.0728264,0.451278,0.0311139,0.540483,0.215436,0.345282,0.408133,0.591952,0.51979,0.305079,0.30075,0.390071,0.748933,0.549151,0.344802,0.642979,0.948437,0.452552,0.10595,0.342483,0.71456,0.293417,0.276794,0.411469,0.0550806,0.245014,0.79037,0.496509,0.0740584,0.597426,0.0446305,0.965981,0.685562,0.166236,0.948399,0.448011,0.175933,0.395027,0.408958,0.727761,0.0844367,0.831978,0.504141,0.825602,0.0498312,0.829812,0.901761,0.453408,0.123675,0.840855,0.935005,0.167158,0.277976,0.656778,0.600765,0.105348,0.938441,0.792037,0.84827,0.838234,0.639788,0.565689,0.173682,0.829852,0.230859,0.144609,0.988918,0.527338,0.576296,0.340451,0.620372,0.790782,0.950119,0.0641364,0.479547,0.632928,0.432628,0.313638,0.66185,0.734708,0.233719,0.256607,0.865104,0.649116,0.355007,0.534581,0.878321,0.251769,0.466368,0.567608,0.555929,0.114407,0.181852,0.691394,0.578934,0.766048,0.771556,0.0081777,0.146988,0.0971788,0.285855,0.468841,0.0409463,0.407692,0.447331,0.11031,0.892629,0.125931,0.819166,0.979415,0.356963,0.591881,0.471083,0.129984,0.79405,0.322677,0.993833,0.363186,0.76,0.0286757,0.79341,0.626557,0.891062,0.519561,0.244311,0.889522,0.407774,0.573871,0.580932,0.25309,0.980845,0.966663,0.193752,0.442264,0.00151843,0.67861,0.148322,0.122045,0.28401,0.230912,0.726458,0.770889,0.0584328,0.166661,0.504396,0.815256,0.788956,0.489218,0.992091,0.466163,0.93562,0.993505,0.343359,0.611387,0.174222,0.645629,0.731031,0.201607,0.903644,0.346113,0.379874,0.777146,0.208533,0.950685,0.777951,0.181831,0.413205,0.35909,0.29793,0.898828,0.731707,0.590379,0.483933,0.500083,0.253544,0.0349914,0.611891,0.307549,0.862423,0.711773,0.69648,0.344488,0.0607654,0.67989,0.439867,0.0750991,0.567059,0.56877,0.544309,0.873807,0.283239,0.637884,0.346459,0.00184184,0.359025,0.995925,0.145647,0.197139,0.984607,0.292006,0.959797,0.0333567,0.973333,0.582802,0.867235,0.885225,0.249826,0.159136,0.0159527,0.585349,0.223304,0.572057,0.490045,0.947327,0.847734,0.931253,0.739317,0.37464,0.355162,0.852326,0.322707,0.630478,0.710244,0.162704,0.735684,0.879221,0.969912,0.666257,0.504122,0.461711,0.866576,0.159677,0.383601,0.571827,0.511647,0.949277,0.374689,0.927187,0.660379,0.106399,0.70801,0.883476,0.260061,0.262997,0.528479,0.88749,0.461009,0.105071,0.3002,0.675277,0.946437,0.701044,0.386961,0.975725,0.260535,0.355475,0.185438,0.50062,0.204576,0.590337,0.0790725,0.842051,0.810389,0.668491,0.789254,0.686062,0.812235,0.172386,0.477458,0.721758,0.256761,0.0339575,0.511976,0.809529,0.0324044,0.213205,0.26538,0.22348,0.738252,0.265155,0.944329,0.889146,0.192598,0.0227485,0.333369,0.388561,0.990025,0.776602,0.53012,0.609165,0.883253,0.20774,0.818666,0.534913,0.335323,0.297717,0.597437,0.703707,0.326385,0.401105,0.806241,0.0870637,0.185741,0.847915,0.0408441,0.123379,0.298925,0.680633,0.408557,0.0842969,0.736176,0.0774063,0.682033,0.330051,0.069979,0.940153,0.453882,0.140921,0.0286531,0.146631,0.24229,0.791922,0.692183,0.373829,0.515888,0.288075,0.734477,0.534746,0.513695,0.0902576,0.482003,0.413726,0.619808,0.144709,0.405702,0.28216,0.849483,0.649109,0.941572,0.820397,0.493042,0.73482,0.649284,0.666252,0.640724,0.591203,0.851474,0.314104,0.297182,0.650691,0.955894,0.50134,0.00627398,0.308908,0.789298,0.111545,0.668659,0.12833,0.938633,0.0309304,0.814708,0.219556,0.671657,0.510157,0.774089,0.413303,0.818214,0.711351,0.325718,0.912014,0.151529,0.0322341,0.381868,0.404372,0.487768,0.485329,0.243277,0.985966,0.89182,0.448342,0.658084,0.0807039,0.532301,0.0921001,0.330612,0.545268,0.928816,0.908613,0.705107,0.220107,0.679557,0.580923,0.421791,0.120342,0.545255,0.591316,0.594055,0.391228,0.248038,0.6553,0.999836,0.477497,0.105344,0.50685,0.316772,0.558118,0.206582,0.112598,0.798582,0.985435,0.620723,0.97315,0.46244,0.0521696,0.132159,0.100724,0.128196,0.94272,0.29859,0.134185,0.547196,0.405806,0.762751,0.911813,0.623743,0.915613,0.637083,0.167754,0.412127,0.365719,0.604222,0.526292,0.88561,0.796583,0.562485,0.727448,0.576553,0.586346,0.695336,0.379193,0.0560772,0.558402,0.883647,0.121365,0.83612,0.540399,0.676037,0.666322,0.0868827,0.559914,0.447022,0.0878862,0.13983,0.202346,0.0923393,0.825203,0.13958,0.795501,0.614903,0.0197855,0.662437,0.77464,0.389372,0.507763,0.902945,0.454556,0.946147,0.69873,0.903958,0.784553,0.621561,0.355252,0.559231,0.687572,0.846472,0.501568,0.331425,0.568681,0.397478,0.195046,0.965131,0.391972,0.536793,0.454884,0.104326,0.917927,0.174288,0.390563,0.0265372,0.898106,0.20765,0.458015,0.843395,0.704349,0.517343,0.597071,0.224269,0.470984,0.602428,0.570456,0.758017,0.0511058,0.943583,0.0450786,0.233426,0.935136,0.655072,0.168726,0.37424,0.927038,0.326248,0.328761,0.420341,0.516177,0.136342,0.723098,0.444095,0.0201777,0.985403,0.770613,0.668256,0.0418908,0.942349,0.586674,0.218809,0.156832,0.131502,0.00429785,0.124958,0.862705,0.879347,0.231629,0.905886,0.513056,0.19101,0.509688,0.674416,0.841455,0.783329,0.920622,0.382309,0.732352,0.976102,0.84615,0.5628,0.316599,0.810826,0.975006,0.897994,0.809423,0.948853,0.0473102,0.21853,0.426252,0.547897,0.72145,0.966901,0.391087,0.500634,0.804575,0.611792,0.619151,0.659581,0.918668,0.62488,0.391521,0.399476,0.76567,0.658784,0.121379,0.130043,0.0750981,0.373621,0.439385,0.302421,0.121365,0.663365,0.0862495,0.414856,0.304743,0.092667,0.126426,0.700668,0.102618,0.520085,0.180387,0.619501,0.556825,0.957485,0.582775,0.0580088,0.647858,0.666794,0.281744,0.047264,0.205918,0.0346205,0.636696,0.937843,0.304298,0.950503,0.275043,0.960175,0.0670772,0.932519,0.867332,0.946354,0.438993,0.293588,0.00827521,0.740097,0.31615,0.0350193,0.106009,0.308131,0.819933,0.766421,0.901143,0.638952,0.754391,0.603453,0.292436,0.961838,0.331175,0.276141,0.237111,0.55461,0.879597,0.983444,0.423669,0.98235,0.714238,0.132059,0.877983,0.10556,0.0489991,0.547755,0.257792,0.803792,0.0747274,0.108722,0.660342,0.789057,0.548275,0.874437,0.846218,0.395374,0.67709,0.0996964,0.738536,0.548413,0.059186,0.973524,0.763682,0.639747,0.216296,0.746574,0.357553,0.932058,0.291596,0.839297,0.433916,0.428957,0.0643132,0.659086,0.53172,0.0500186,0.645346,0.655824,0.143054,0.627154,0.432021,0.35441,0.910602,0.0071004,0.0281587,0.199233,0.313854,0.616411,0.696721,0.607698,0.173655,0.933569,0.00250691,0.443419,0.925016,0.424149,0.986714,0.289004,0.761466,0.703386,0.917221,0.373824,0.514362,0.567343,0.97977,0.72152,0.168562,0.474916,0.912874,0.584125,0.156483,0.190804,0.0655466,0.762924,0.898124,0.218215,0.56616,0.74123,0.247463,0.259997,0.922968,0.297463,0.700487,0.67349,0.143901,0.454239,0.536405,0.67345,0.0774712,0.618195,0.255722,0.0511011,0.0851246,|0.494975,0.0495467,0.679617,0.0325719,0.248633,0.813967,0.605717,0.0655046,0.856068,0.863615,0.415393,0.615321,0.487659,0.479984,0.185712,0.407068,0.12812,0.419695,0.430234,0.298409,0.905896,0.364317,0.974689,0.292363,0.298958,0.798976,0.996406,0.317097,0.343466,0.479393,0.243123,0.295713,0.133258,0.0199063,0.974741,0.111515,0.13669,0.628324,0.73183,0.372912,0.896965,0.89669,0.464274,0.899406,0.477635,0.798462,0.315883,0.0625673,0.0327101,0.964755,0.871632,0.0822609,0.694791,0.977627,0.472816,0.721358,0.697874,0.878321,0.609182,0.355965,0.592616,0.583539,0.186997,0.279767,0.22937,0.500898,0.249763,0.505048,0.382297,0.439839,0.327047,0.287827,0.578728,0.890895,0.843105,0.2491,0.616893,0.0307031,0.538474,0.0181863,0.905288,0.379329,0.971353,0.0555626,0.146653,0.750888,0.417823,0.210584,0.552926,0.165729,0.396433,0.634643,0.0272943,0.19238,0.849163,0.425716,0.337734,0.393595,0.986145,0.684853,0.0815492,0.730965,0.655383,0.752763,0.0609933,0.104089,0.86514,0.204947,0.734966,0.389104,0.349447,0.100938,0.582764,0.103679,0.952405,0.26234,0.978615,0.397678,0.840046,0.461491,0.634523,0.567444,0.960764,0.740224,0.843358,0.342796,0.859912,0.155949,0.271835,0.516782,0.824797,0.0162239,0.470731,0.191386,0.620283,0.185322,0.359265,0.613915,0.114278,0.347745,0.884013,0.906159,0.181592,0.933804,0.352031,0.304558,0.919768,0.201067,0.0617808,0.402666,0.621203,0.964792,0.402262,0.236367,0.0950609,0.569183,0.2717,0.0907238,0.179717,0.800565,0.15574,0.103645,0.767361,0.195315,0.84896,0.263472,0.47592,0.627703,0.376906,0.341453,0.952236,0.933066,0.927115,0.89445,0.1127,0.722268,0.651581,0.557966,0.185659,0.265302,0.110327,0.849297,0.133395,0.482763,0.141347,0.878233,0.458283,0.877859,0.0903742,0.892413,0.821434,0.812814,0.791143,0.252939,0.219629,0.150403,0.580605,0.936439,0.265018,0.731179,0.310158,0.476409,0.880276,0.663447,0.166604,0.84175,0.603676,0.328709,0.794222,0.465927,0.100308,0.480229,0.63599,0.509033,0.027769,0.0271373,0.372537,0.091778,0.0458376,0.65636,0.0151978,0.477331,0.128515,0.241124,0.918477,0.243793,0.629272,0.563795,0.208515,0.842365,0.258242,0.0678506,0.00580245,0.10562,0.199407,0.716305,0.464379,0.309157,0.458093,0.689503,0.403573,0.917084,0.921185,0.411555,0.756172,0.334277,0.154401,0.582232,0.862317,0.378187,0.422966,0.779179,0.971559,0.0223597,0.0890597,0.0839004,0.192835,0.83497,0.341748,0.118841,0.144338,0.620212,0.961304,0.0226389,0.108804,0.908001,0.498225,0.641665,0.11104,0.0185927,0.357053,0.0665362,0.919437,0.211946,0.02556,0.556286,0.410751,0.382161,0.206015,0.949331,0.639743,0.56978,0.343784,0.111084,0.0554561,0.599175,0.845823,0.802026,0.650672,0.034734,0.328282,0.782033,0.0072946,0.282233,0.761328,0.801619,0.723005,0.37865,0.729526,0.702763,0.877178,0.162615,0.602726,0.136395,0.656648,0.681965,0.156989,0.71599,0.829384,0.280657,0.886824,0.637229,0.518689,0.236167,0.787868,0.338392,0.0343239,0.201727,0.228671,0.0896851,0.953355,0.731104,0.762345,0.50535,0.166997,0.900461,0.140476,0.0700902,0.237475,0.104255,0.207393,0.265431,0.773283,0.654518,0.347321,0.138044,0.406093,0.549996,0.424957,0.622122,0.491495,0.905831,0.537853,0.863645,0.890897,0.990283,0.773397,0.178334,0.584624,0.331542,0.968231,0.03639,0.31168,0.308503,0.836206,0.918334,0.181468,0.806348,0.949522,0.476273,0.314149,0.286972,0.493267,0.910968,0.836024,0.457211,0.318686,0.349285,0.332885,0.52849,0.620275,0.307817,0.189922,0.675632,0.177317,0.248817,0.64402,0.260211,0.310367,0.101629,0.948813,0.554608,0.147166,0.00184852,0.0832024,0.550495,0.11862,0.895312,0.231521,0.233098,0.642385,0.833134,0.94951,0.65941,0.423986,0.670067,0.182996,0.295813,0.19536,0.314413,0.0263174,0.989914,0.424916,0.873918,0.602407,0.466336,0.961425,0.760576,0.00881642,0.707772,0.0898253,0.0121009,0.48521,0.407663,0.720846,0.123439,0.633284,0.628175,0.234166,0.772336,0.864088,0.382314,0.297008,0.50766,0.026365,0.343194,0.00540406,0.373062,0.106151,0.275053,0.018523,0.274502,0.0243375,0.388479,0.638006,0.00458378,0.610226,0.492948,0.617096,0.0848323,0.36024,0.698584,0.194629,0.757937,0.302992,0.619058,0.821037,0.294863,0.305883,0.13623,0.94157,0.0102521,0.424094,0.838691,0.115304,0.866131,0.643117,0.30783,0.0910161,0.12512,0.761979,0.993476,0.98754,0.456299,0.904584,0.0533704,0.641772,0.308533,0.00862813,0.481453,0.68277,0.894549,0.117067,0.667007,0.730621,0.99414,0.460994,0.720244,0.978224,0.373324,0.621755,0.467929,0.217332,0.760817,0.552986,0.662794,0.833179,0.37176,0.507634,0.712984,0.276746,0.478242,0.0296168,0.449684,0.425905,0.844476,0.182506,0.0729964,0.907584,0.165574,0.805352,0.064487,0.486603,0.848807,0.343323,0.797366,0.815357,0.0408906,0.897396,0.318287,0.950935,0.273834,0.0741683,0.480617,0.535135,0.349553,0.697515,0.463618,0.848916,0.911735,0.0670557,0.564466,0.0474074,0.493688,0.950293,0.968782,0.283781,0.0529485,0.328414,0.0881906,0.845429,0.224431,0.768946,0.382343,0.991042,0.184749,0.922342,0.615372,0.797595,0.107453,0.124272,0.304241,0.497428,0.604035,0.554373,0.728342,0.0178047,0.276907,0.320767,0.945575,0.793387,0.251074,0.598746,0.780881,0.30835,0.0985166,0.85085,0.708778,0.370568,0.915186,0.460629,0.0799046,0.649823,0.383653,0.918991,0.655444,0.0407324,0.358798,0.142905,0.999942,0.816494,0.754958,0.987585,0.838592,0.514628,0.913941,0.464276,0.841356,0.442301,0.99171,0.272811,0.0808666,0.0427184,0.312312,0.864663,0.109045,0.912977,0.234246,0.510328,0.887491,0.403796,0.396147,0.70996,0.0325928,0.410653,0.430341,0.581916,0.41883,0.720778,0.373158,0.694594,0.147058,0.489947,0.848371,0.134518,0.921935,0.544219,0.679416,0.624654,0.790089,0.103491,0.910345,0.523521,0.234812,0.57471,0.402973,0.392093,0.507881,0.141671,0.408734,0.421418,0.816873,0.574897,0.38975,0.310101,0.141632,0.0170733,0.781011,0.447883,0.344391,0.915622,0.865268,0.236946,0.582815,0.418657,0.695413,0.514674,0.425005,0.869715,0.577972,0.827781,0.0853365,0.444099,0.796893,0.35705,0.787841,0.189185,0.824294,0.827512,0.777133,0.977457,0.448061,0.633541,0.557277,0.377291,0.981343,0.378269,0.0585805,0.871743,0.352052,0.184809,0.904986,0.380017,0.573466,0.846884,0.599675,0.356815,0.880355,0.233744,0.32409,0.917502,0.859795,0.193816,0.36473,0.534349,0.79866,0.00839543,0.145377,0.143807,0.47627,0.997054,0.94052,0.826714,0.761581,0.361509,0.536353,0.814694,0.582054,0.404393,0.168311,0.869264,0.701046,0.760935,0.603259,0.73267,0.938381,0.898175,0.973676,0.09308,0.131011,0.556764,0.937222,0.434895,0.825778,0.84993,0.867633,0.428799,0.353188,0.738719,0.214011,0.880215,0.502911,0.0984127,0.349674,0.447975,0.115989,0.767532,0.181063,0.700539,0.0821081,0.721298,0.573016,0.743238,0.0523111,0.694419,0.124214,0.918975,0.695897,0.638397,0.159781,0.240588,0.354441,0.063485,0.697202,0.684207,0.164108,0.100751,0.727418,0.879435,0.698516,0.920281,0.141894,0.471994,0.529511,0.383557,0.220276,0.408322,0.00052321,0.0675896,0.746087,0.433691,0.541212,0.038491,0.11581,0.887909,0.780469,0.743465,0.766987,0.0724415,0.443157,0.07644,0.128235,0.0163822,0.0410538,0.634136,0.601824,0.483389,0.490476,0.394516,0.188511,0.716508,0.508715,0.820221,0.104936,0.329646,0.484269,0.831851,0.0573601,0.128401,0.0374218,0.813429,0.896904,0.915806,0.257726,0.500619,0.54883,0.856744,0.390785,0.492021,0.489233,0.0133359,0.221186,0.94362,0.913606,0.946759,0.919025,0.605781,0.998457,0.832201,0.0376249,0.495978,0.65563,0.314922,0.879179,0.0198908,0.00994128,0.606785,0.199374,0.670331,0.799202,0.307887,0.458675,0.091866,0.80431,0.106977,0.593328,0.18403,0.335289,0.353301,0.27321,0.130886,0.491163,0.338706,0.698258,0.578716,0.703778,0.139672,0.766118,0.92579,0.192892,0.86677,0.434108,0.292949,0.616369,0.39889,0.988574,0.090235,0.870409,0.061667,0.882322,0.44656,0.23641,0.0470091,0.702881,0.269542,0.283957,0.0719488,0.90084,0.753262,0.163479,0.00311351,0.135242,0.458965,0.8397,0.955103,0.881461,0.264102,0.164905,0.467253,0.368081,0.340871,0.129757,0.224867,0.936385,0.00980848,0.859234,0.146726,0.0764595,0.923614,0.917321,0.78712,0.57345,0.899286,0.25838,0.263102,0.903644,0.0501505,0.292084,0.899499,0.577081,0.601812,0.0668857,0.64364,0.942528,0.759413,0.236525,0.58277,0.511126,0.225887,0.488353,0.0480572,0.251256,0.168681,0.758379,0.414779,0.441687,0.524298,0.889391,0.928654,0.782225,0.640065,0.48506,0.210826,0.612433,0.656298,0.356381,0.906694,0.396509,0.108436,0.666848,0.333384,0.680504,0.76273,0.330587,0.0808818,0.943463,0.866566,0.215097,0.407221,0.950247,0.245854,0.963176,0.799721,0.641029,0.608662,0.950081,0.145839,0.654696,0.983406,0.29508,0.0368742,0.148803,0.21694,0.228219,0.585264,0.154617,0.517637,0.940708,0.130164,0.343678,0.559283,0.0045718,0.396471,0.815012,0.79546,0.246754,0.705599,0.615007,0.239757,0.224674,0.904211,0.192046,0.974298,0.948826,0.190288,0.857098,0.368987,0.985638,0.863131,0.505336,0.453127,0.613542,0.557125,0.0968053,0.688066,0.304497,0.419348,0.975825,0.935019,0.691128,0.443325,0.564155,0.436848,0.555877,0.0900083,0.937529,0.422724,0.0192501,0.161459,0.0787886,0.736497,0.0645654,0.0147187,0.0956873,0.351928,0.571017,0.0782284,0.929751,0.304631,0.619722,0.972118,0.922312,0.52498,0.797033,0.472623,0.228064,0.833032,0.137769,0.420425,0.344777,|0.886006,0.124228,0.13573,0.596177,0.566647,0.652608,0.976397,0.816183,0.371306,0.191514,0.666897,0.251174,0.638927,0.204534,0.801954,0.346249,0.660203,0.603626,0.360098,0.898288,0.728433,0.429004,0.195921,0.213946,0.350537,0.0372332,0.324576,0.493985,0.296282,0.398245,0.447153,0.876002,0.0376391,0.497675,0.32809,0.38598,0.16649,0.306434,0.151254,0.553943,0.37803,0.233974,0.0665724,0.204601,0.063479,0.855711,0.0853237,0.870049,0.3118,0.281245,0.745986,0.09219,0.327851,0.392961,0.85974,0.219476,0.92013,0.431149,0.52717,0.198949,0.819595,0.305016,0.177983,0.852537,0.0374232,0.515094,0.361077,0.629173,0.908838,0.19276,0.297131,0.18507,0.481575,0.214298,0.572872,0.47067,0.169426,0.100912,0.467901,0.234107,0.526748,0.512909,0.357131,0.441316,0.597367,0.661373,0.622579,0.648583,0.548626,0.210547,0.976949,0.623494,0.815964,0.730624,0.291758,0.855513,0.9911,0.564763,0.671148,0.67772,0.182386,0.89342,0.45434,0.12495,0.32462,0.38944,0.27109,0.482587,0.263702,0.428762,0.523596,0.513153,0.105301,0.626563,0.61896,0.608613,0.55469,0.114222,0.412322,0.0065223,0.0339099,0.42512,0.522623,0.0226973,0.0685398,0.224244,0.889255,0.185421,0.832666,0.863123,0.0110399,0.984729,0.517933,0.288427,0.524439,0.810156,0.806606,0.596634,0.437596,0.110505,0.717702,0.42186,0.0164514,0.616356,0.871686,0.172062,0.240927,0.480304,0.538721,0.188436,0.267266,0.574662,0.966264,0.487609,0.203601,0.534337,0.33358,0.146163,0.644565,0.233379,0.300782,0.727697,0.781354,0.225066,0.456502,0.25755,0.110831,0.78291,0.736834,0.430582,0.308424,0.906316,0.939702,0.939769,0.627096,0.901493,0.987845,0.738816,0.0462153,0.57354,0.985023,0.427605,0.084709,0.437784,0.831842,0.220643,0.775381,0.61224,0.468107,0.0294219,0.431362,0.965463,0.8841,0.432962,0.630246,0.531372,0.0587004,0.056637,0.700373,0.165996,0.468077,0.169713,0.029627,0.984796,0.884653,0.414639,0.36523,0.411407,0.924991,0.981601,0.309611,0.392082,0.432555,0.564025,0.476439,0.318371,0.120038,0.888499,0.590859,0.844558,0.718686,0.819979,0.486529,0.114015,0.746289,0.847636,0.521122,0.300136,0.866193,0.44945,0.964938,0.828779,0.954715,0.327964,0.743802,0.0973945,0.133555,0.0247054,0.836783,0.148728,0.506746,0.0447927,0.828334,0.505609,0.542584,0.718662,0.596321,0.753722,0.91969,0.401621,0.981494,0.922541,0.703182,0.477639,0.727126,0.923853,0.468047,0.0633824,0.213979,0.109961,0.869094,0.850916,0.277076,0.97976,0.833341,0.977773,0.267593,0.897661,0.896855,0.0665611,0.519474,0.584317,0.333731,0.0247816,0.449947,0.528493,0.974737,0.342022,0.619409,0.66272,0.457986,0.898358,0.506379,0.841863,0.791943,0.123143,0.393555,0.167078,0.135803,0.700622,0.962682,0.314101,0.861229,0.516531,0.164034,0.892702,0.534996,0.898576,0.63209,0.449541,0.552373,0.846468,0.891384,0.828752,0.639616,0.486735,0.497832,0.4456,0.930838,0.262345,0.574489,0.0212692,0.813361,0.764759,0.55391,0.596046,0.742483,0.997207,0.32565,0.830677,0.97141,0.2221,0.0720666,0.474069,0.428837,0.625658,0.374823,0.788984,0.506966,0.556655,0.206918,0.478514,0.681809,0.287063,0.568939,0.24822,0.0466338,0.745808,0.882006,0.152721,0.497356,0.108239,0.451875,0.94167,0.174063,0.377268,0.490874,0.631645,0.830696,0.444935,0.0456919,0.0144451,0.630514,0.239163,0.862709,0.511543,0.500081,0.305805,0.473656,0.406735,0.302676,0.426777,0.785808,0.0353824,0.45916,0.898476,0.30451,0.0198491,0.425162,0.727519,0.160999,0.869163,0.884052,0.861518,0.300435,0.875277,0.994508,0.497215,0.724304,0.459146,0.120487,0.886573,0.825419,0.995476,0.210505,0.0979211,0.665467,0.295718,0.999752,0.883361,0.708567,0.574557,0.914583,0.515196,0.447682,0.628009,0.789867,0.200298,0.928746,0.64583,0.742321,0.312863,0.465712,0.267608,0.817058,0.797495,0.202731,0.35765,0.162026,0.977641,0.984305,0.290578,0.142778,0.68467,0.71251,0.766075,0.598144,0.103846,0.567921,0.370109,0.758764,0.00999457,0.255807,0.943514,0.595149,0.117823,0.43442,0.589963,0.611358,0.0547923,0.841565,0.781864,0.314394,0.911468,0.603943,0.140758,0.21462,0.0162975,0.423331,0.112257,0.113093,0.219727,0.684657,0.894861,0.738463,0.513554,0.969029,0.817301,0.227564,0.579316,0.198205,0.852131,0.550913,0.284069,0.889583,0.470853,0.570095,0.243388,0.783189,0.58744,0.896696,0.240813,0.300274,0.695101,0.741413,0.760373,0.139239,0.141859,0.206779,0.495473,0.970467,0.908025,0.612346,0.565806,0.255262,0.631545,0.22459,0.445579,0.338786,0.187934,0.110214,0.29542,0.823527,0.436966,0.849041,0.504638,0.64759,0.926124,0.388671,0.482187,0.513492,0.143525,0.552184,0.176404,0.566991,0.509073,0.034405,0.591565,0.452698,0.899156,0.977205,0.284996,0.245915,0.510084,0.532404,0.381063,0.3607,0.576336,0.915953,0.998747,0.422033,0.132432,0.179111,0.438738,0.77496,0.622594,0.569762,0.401171,0.0738255,0.0926197,0.398531,0.309115,0.654275,0.855277,0.613958,0.87312,0.439761,0.861482,0.905136,0.59621,0.407374,0.268973,0.257393,0.609302,0.819241,0.891504,0.131072,0.927486,0.643521,0.442101,0.68221,0.272422,0.121434,0.732586,0.86998,0.179887,0.928966,0.0101649,0.708288,0.177859,0.637854,0.479859,0.175592,0.5693,0.28985,0.535805,0.511986,0.153,0.930436,0.268631,0.153328,0.771089,0.359678,0.48872,0.792714,0.19452,0.978527,0.0916762,0.215643,0.558759,0.253736,0.638419,0.0401869,0.750435,0.571057,0.26052,0.986274,0.109292,0.203973,0.310064,0.852924,0.204442,0.223024,0.560182,0.951648,0.227177,0.328178,0.749783,0.882319,0.124474,0.106193,0.407198,0.303923,0.00705862,0.224752,0.192139,0.846458,0.404383,0.938564,0.148269,0.33139,0.538285,0.92524,0.303903,0.828781,0.7596,0.178181,0.0558028,0.899981,0.58848,0.806281,0.207594,0.767371,0.941663,0.738899,0.305885,0.312278,0.650364,0.722867,0.666781,0.203901,0.83395,0.3566,0.527716,0.345847,0.110847,0.621873,0.573699,0.271577,0.99712,0.209256,0.564133,0.618359,0.93792,0.847607,0.988763,0.454437,0.758438,0.442818,0.929155,0.590031,0.482032,0.332131,0.0627347,0.261899,0.460051,0.734686,0.420546,0.789374,0.626827,0.606649,0.384932,0.0779017,0.565662,0.361895,0.480738,0.344176,0.646645,0.0105463,0.741295,0.636391,0.0144491,0.994342,0.995934,0.835939,0.335521,0.724643,0.313356,0.246677,0.145414,0.195203,0.0125561,0.36285,0.997482,0.380625,0.706146,0.806463,0.780408,0.257525,0.387211,0.901742,0.876109,0.220775,0.0467705,0.0767813,0.277592,0.386888,0.283098,0.232493,0.446713,0.278033,0.741667,0.588171,0.384779,0.0301372,0.36148,0.363436,0.558923,0.965806,0.647191,0.904796,0.881487,0.683608,0.600252,0.50739,0.115267,0.0418563,0.894389,0.654407,0.571986,0.410885,0.886618,0.53179,0.731826,0.00604272,0.142264,0.38513,0.192438,0.889402,0.265912,0.352082,0.653244,0.571277,0.266735,0.185328,0.161549,0.815917,0.903417,0.729154,0.215425,0.587793,0.753579,0.221889,0.576347,0.714638,0.607402,0.290398,0.612997,0.88994,0.398225,0.37342,0.258829,0.197113,0.0335851,0.278315,0.253306,0.289878,0.301492,0.386264,0.930563,0.81841,0.364268,0.547752,0.538737,0.366432,0.438954,0.131328,0.763686,0.292723,0.419951,0.204236,0.398313,0.829476,0.95859,0.923504,0.0873529,0.723014,0.360127,0.65009,0.549389,0.212676,0.60011,0.180528,0.167813,0.686704,0.769535,0.215112,0.642141,0.697187,0.180915,0.645264,0.990433,0.640188,0.0320032,0.0395769,0.327743,0.962831,0.809362,0.423273,0.28096,0.937478,0.962026,0.360531,0.129248,0.903541,0.59206,0.848605,0.0255921,0.495903,0.970223,0.700148,0.931491,0.36995,0.479796,0.659407,0.962256,0.204631,0.51648,0.0244526,0.252142,0.995997,0.192922,0.338748,0.485853,0.872924,0.281122,0.315926,0.203123,0.183017,0.821879,0.405597,0.709739,0.388118,0.031635,0.725812,0.310808,0.426018,0.762995,0.660497,0.901296,0.211675,0.0824081,0.432282,0.335241,0.871515,0.700806,0.298543,0.782342,0.739372,0.985613,0.343317,0.543007,0.832191,0.710104,0.129983,0.0473931,0.740817,0.396214,0.503409,0.579003,0.662695,0.768902,0.821503,0.0789671,0.517329,0.288675,0.292683,0.156114,0.804947,0.197449,0.656239,0.25426,0.379226,0.796072,0.57971,0.671447,0.815516,0.719053,0.0703419,0.496341,0.585609,0.226516,0.161937,0.115566,0.0880636,0.817881,0.821053,0.824955,0.903581,0.301186,0.620418,0.350755,0.3451,0.512057,0.981592,0.254089,0.0365326,0.553976,0.167084,0.167525,0.348788,0.395188,0.446772,0.865229,0.798983,0.402673,0.994993,0.335495,0.711342,0.530411,0.460955,0.25952,0.531683,0.962369,0.758247,0.82121,0.0943275,0.62921,0.557852,0.773109,0.52092,0.770528,0.94666,0.175319,0.231846,0.941663,0.584122,0.718374,0.845996,0.808149,0.711351,0.562388,0.9154,0.510768,0.244843,0.826416,0.796081,0.681153,0.217913,0.965013,0.214869,0.0119524,0.393052,0.756542,0.0991633,0.677138,0.736979,0.814327,0.110798,0.152421,0.915843,0.777957,0.508846,0.657708,0.155347,0.373162,0.831051,0.246331,0.727755,0.735956,0.318576,0.00361764,0.0389608,0.0871709,0.252607,0.817681,0.839529,0.646395,0.846978,0.30647,0.217483,0.191732,0.196422,0.35298,0.975983,0.503222,0.362554,0.0162953,0.965253,0.623104,0.341626,0.949466,0.992042,0.670374,0.629885,0.27198,0.911721,0.0893865,0.883811,0.666122,0.50348,0.680979,0.359457,0.126607,0.2487,0.0919738,0.205573,0.917841,0.553647,0.432585,0.347838,0.0894953,0.876146,0.875334,0.115841,0.0985352,0.394249,0.00226903,0.682006,0.733452,|0.820076,0.15516,0.199744,0.489525,0.560674,0.424122,0.819327,0.500601,0.949468,0.319774,0.0911714,0.330179,0.783636,0.0760314,0.646435,0.67071,0.305448,0.0710781,0.682802,0.201618,0.564084,0.371464,0.8766,0.466045,0.0222753,0.105447,0.255712,0.0729082,0.100214,0.998652,0.457995,0.497158,0.504337,0.581193,0.768109,0.460058,0.890071,0.565495,0.489446,0.0141937,0.541758,0.370458,0.151761,0.017157,0.93036,0.519467,0.763926,0.907788,0.279137,0.151095,0.558781,0.239348,0.568266,0.958832,0.329582,0.58005,0.693339,0.875034,0.761223,0.567273,0.135198,0.665447,0.714747,0.87069,0.910929,0.265903,0.796755,0.208252,0.494375,0.131146,0.877155,0.178686,0.555447,0.526799,0.101058,0.540899,0.31345,0.0106509,0.46509,0.0717109,0.950587,0.885425,0.589422,0.874291,0.253677,0.0467438,0.0538443,0.936045,0.31674,0.174961,0.818806,0.447499,0.66406,0.216688,0.186664,0.619778,0.345953,0.0719497,0.543172,0.508479,0.245271,0.0256894,0.339015,0.738481,0.813398,0.402752,0.182317,0.791923,0.751399,0.831455,0.0112515,0.129259,0.207074,0.185295,0.636331,0.422024,0.396811,0.704598,0.759853,0.65301,0.0409877,0.437967,0.571099,0.936184,0.31274,0.94395,0.0967467,0.696573,0.799242,0.790938,0.842617,0.801914,0.583654,0.598107,0.824714,0.943217,0.169915,0.55463,0.876186,0.123718,0.728638,0.336414,0.0258089,0.99658,0.531266,0.128499,0.861426,0.558563,0.983781,0.283615,0.301188,0.755436,0.926166,0.292286,0.543135,0.886496,0.434787,0.500768,0.235752,0.281873,0.439448,0.819265,0.29196,0.706023,0.550456,0.224971,0.815001,0.961658,0.0686038,0.650596,0.0193928,0.138099,0.682095,0.902513,0.967413,0.979146,0.42682,0.910495,0.389726,0.387461,0.466918,0.612921,0.503461,0.233844,0.374323,0.324529,0.630311,0.695209,0.025235,0.509346,0.285146,0.443964,0.90327,0.706196,0.344989,0.693987,0.143787,0.46239,0.261794,0.79336,0.143997,0.918961,0.610669,0.527599,0.0058226,0.0830852,0.517292,0.699872,0.669762,0.252549,0.9355,0.698571,0.68297,0.641408,0.724668,0.312998,0.0977989,0.0575286,0.764086,0.561241,0.000755489,0.523797,0.992125,0.406684,0.480814,0.371748,0.519625,0.0012033,0.835893,0.644105,0.962836,0.665984,0.649909,0.791453,0.645937,0.307609,0.215449,0.165377,0.793124,0.630531,0.293557,0.156068,0.390511,0.783331,0.528116,0.751489,0.585039,0.760244,0.679642,0.38796,0.234578,0.400446,0.221211,0.0932323,0.263519,0.362368,0.114958,0.144288,0.207429,0.286566,0.853359,0.771116,0.0083757,0.353735,0.811504,0.264636,0.790208,0.494552,0.638631,0.491041,0.818818,0.127209,0.692921,0.805889,0.14692,0.365382,0.613737,0.419922,0.924379,0.34403,0.245951,0.0412666,0.808043,0.37946,0.440513,0.798088,0.926114,0.953819,0.00145137,0.0594313,0.524272,0.395475,0.0673727,0.372701,0.553773,0.614108,0.0458141,0.738812,0.473476,0.260262,0.251581,0.78496,0.55474,0.776918,0.0932618,0.157654,0.522727,0.824042,0.118711,0.422242,0.519123,0.697972,0.24848,0.94131,0.0356928,0.265194,0.23128,0.388442,0.735787,0.269942,0.684969,0.265729,0.774172,0.61211,0.0425424,0.0784069,0.185499,0.193171,0.206701,0.410416,0.82268,0.391154,0.187651,0.614706,0.0938985,0.294618,0.00780737,0.0660796,0.247394,0.24445,0.907781,0.137388,0.0364416,0.435401,0.567666,0.88025,0.21115,0.672241,0.354721,0.252154,0.523389,0.523342,0.460467,0.582846,0.371047,0.665302,0.639693,0.154476,0.731979,0.641992,0.746141,0.517444,0.429447,0.48765,0.487744,0.306745,0.636356,0.650989,0.0439252,0.638276,0.909368,0.0477304,0.479605,0.636324,0.553486,0.293574,0.326806,0.254793,0.923206,0.500292,0.977709,0.869962,0.438245,0.195443,0.783489,0.949595,0.747695,0.306089,0.104201,0.854072,0.262389,0.627223,0.00649995,0.938419,0.111579,0.194155,0.512323,0.326654,0.156151,0.503046,0.240598,0.385282,0.149196,0.492462,0.375936,0.462625,0.351603,0.953053,0.743464,0.925901,0.51781,0.23607,0.66912,0.596798,0.2403,0.302503,0.974527,0.243659,0.755275,0.174381,0.344118,0.729613,0.770666,0.892665,0.292239,0.607479,0.738095,0.235168,0.972971,0.857175,0.0583994,0.429451,0.239792,0.870578,0.888896,0.822466,0.730421,0.214744,0.660116,0.566004,0.395368,0.0889493,0.897107,0.54222,0.275323,0.95753,0.388661,0.454601,0.916924,0.223314,0.102237,0.112572,0.31395,0.541228,0.540171,0.630763,0.23985,0.857584,0.263114,0.853533,0.450271,0.163223,0.359791,0.550653,0.94816,0.24538,0.26491,0.832107,0.263565,0.862253,0.346119,0.979327,0.49822,0.718956,0.0101708,0.623974,0.0466347,0.187757,0.00231493,0.631306,0.7651,0.700681,0.0327256,0.29265,0.415179,0.581662,0.0225373,0.196227,0.312315,0.411767,0.093199,0.393039,0.0323758,0.845583,0.880519,0.910013,0.508124,0.93714,0.633757,0.32332,0.0402392,0.680489,0.118714,0.102231,0.823905,0.434357,0.50729,0.724503,0.111812,0.778906,0.606733,0.255208,0.135877,0.506657,0.130814,0.431812,0.415734,0.653704,0.738576,0.913616,0.32814,0.176484,0.202542,0.692307,0.580547,0.885723,0.339624,0.875658,0.933224,0.226926,0.8496,0.0221817,0.237838,0.457424,0.506497,0.0242537,0.0219582,0.815172,0.852121,0.384041,0.934321,0.281094,0.344541,0.134437,0.797221,0.881732,0.845871,0.295725,0.594658,0.384237,0.545834,0.49212,0.27028,0.684331,0.550636,0.229407,0.796807,0.878332,0.430486,0.968187,0.314883,0.547402,0.727535,0.22928,0.398918,0.991265,0.555785,0.91116,0.880132,0.543273,0.184287,0.994659,0.528839,0.873306,0.245302,0.338953,0.154903,0.368563,0.468257,0.691862,0.984966,0.612254,0.858542,0.0710511,0.203512,0.505311,0.459536,0.724905,0.993957,0.824178,0.680546,0.6114,0.0225132,0.783764,0.351739,0.927751,0.722875,0.456611,0.835811,0.602472,0.135587,0.686632,0.468769,0.220328,0.738437,0.0722938,0.727326,0.0290401,0.817993,0.0155591,0.0574237,0.459176,0.877596,0.633482,0.894678,0.71308,0.169254,0.243157,0.494653,0.566022,0.512631,0.49202,0.826062,0.358542,0.776303,0.0345618,0.121845,0.873782,0.440477,0.593107,0.764455,0.849166,0.346204,0.0202235,0.293598,0.0554135,0.875461,0.682179,0.0120486,0.715922,0.220946,0.236104,0.28079,0.174487,0.270752,0.744185,0.406836,0.60853,0.143298,0.0432408,0.942022,0.762377,0.133996,0.201937,0.351712,0.818601,0.931204,0.594595,0.577244,0.503524,0.0458589,0.799819,0.278683,0.397548,0.187002,0.845807,0.0382801,0.554133,0.732254,0.143272,0.822914,0.351036,0.622892,0.56835,0.644844,0.0942622,0.606144,0.268698,0.754507,0.931543,0.946674,0.605774,0.0329847,0.179529,0.879299,0.757582,0.974981,0.435214,0.543496,0.202459,0.222172,0.352075,0.85528,0.59423,0.398352,0.987608,0.984041,0.271703,0.525179,0.577254,0.686298,0.534377,0.452381,0.156554,0.436887,0.0570059,0.498948,0.931462,0.884133,0.753899,0.392206,0.067854,0.777141,0.250256,0.530832,0.553203,0.695291,0.204725,0.704467,0.63044,0.51322,0.605206,0.0770712,0.268265,0.0382054,0.924702,0.981203,0.629622,0.491945,0.191923,0.955656,0.186602,0.104337,0.824472,0.810593,0.714113,0.434633,0.782648,0.72308,0.0411673,0.988062,0.585996,0.967456,0.445746,0.80572,0.151335,0.500666,0.773586,0.890609,0.058912,0.848895,0.33084,0.898925,0.0837914,0.403564,0.486128,0.443945,0.605276,0.670308,0.944833,0.520536,0.774766,0.23305,0.0950295,0.662604,0.0332156,0.855589,0.747773,0.595316,0.729478,0.71054,0.37889,0.11478,0.824475,0.428659,0.61174,0.110081,0.219969,0.950141,0.986724,0.72288,0.20039,0.981221,0.331581,0.71373,0.732614,0.51936,0.618073,0.700483,0.168255,0.232832,0.748372,0.295245,0.216241,0.800708,0.137449,0.873409,0.327006,0.66161,0.864195,0.188375,0.704852,0.945662,0.343505,0.691446,0.66673,0.41234,0.557918,0.193053,0.568977,0.0701971,0.840474,0.283077,0.384159,0.7043,0.0723743,0.283413,0.414957,0.226222,0.255206,0.739177,0.537642,0.843958,0.192263,0.495993,0.854947,0.206153,0.381804,0.340604,0.811636,0.0416988,0.776293,0.887237,0.668401,0.398268,0.00699645,0.262392,0.577001,0.764262,0.234898,0.165563,0.408517,0.784877,0.937049,0.881943,0.579611,0.984345,0.439073,0.981068,0.186518,0.866722,0.27205,0.342336,0.712016,0.470599,0.933133,0.701277,0.345123,0.234079,0.826169,0.16363,0.301678,0.301737,0.984074,0.276,0.293097,0.344316,0.575119,0.00710714,0.323284,0.25067,0.298894,0.527396,0.71725,0.761003,0.0114297,0.640913,0.439843,0.424371,0.733046,0.56019,0.879753,0.256691,0.959869,0.183697,0.766622,0.0756333,0.679051,0.422024,0.160864,0.995849,0.482855,0.885673,0.972428,0.959008,0.843972,0.877725,0.100928,0.334247,0.268676,0.547475,0.0248896,0.308594,0.848343,0.0275373,0.494964,0.173099,0.629729,0.0551772,0.963744,0.720166,0.860311,0.134164,0.294308,0.442279,0.174952,0.0226229,0.228463,0.904473,0.638664,0.44507,0.623891,0.231222,0.338746,0.817032,0.310597,0.401096,0.95324,0.442869,0.138088,0.799464,0.484165,0.00341922,0.503086,0.101196,0.0878604,0.0191026,0.501745,0.071363,0.687142,0.618609,0.412248,0.481976,0.159009,0.895549,0.641184,0.150161,0.631542,0.880903,0.290525,0.840394,0.885021,0.388751,0.619097,0.500029,0.480573,0.137077,0.159168,0.672066,0.344193,0.911234,0.685039,0.476149,0.963216,0.619555,0.31701,0.140324,0.32917,0.668942,0.715803,0.469818,0.0560373,0.264087,0.773476,0.592036,0.427423,0.0423127,0.143502,0.297313,0.317826,0.466437,0.316988,0.651183,0.954723,0.0215113,0.668956,0.501179,0.768692,0.0262631,0.170912,0.283496,0.515993,0.818404,0.171472,0.997817,0.604961,0.833463,0.244808,0.138645,0.643542,|0.995488,0.854979,0.975276,0.00144565,0.913149,0.523914,0.298008,0.445251,0.949005,0.92697,0.296231,0.0398384,0.497201,0.869737,0.385693,0.700504,0.336443,0.789926,0.927952,0.863822,0.264024,0.265814,0.531736,0.119847,0.200226,0.770483,0.634798,0.533132,0.634232,0.224632,0.69873,0.140098,0.648446,0.642415,0.463845,0.448911,0.875246,0.977933,0.117558,0.389538,0.717004,0.874278,0.404547,0.0550264,0.771767,0.902808,0.853004,0.110015,0.732539,0.389215,0.52318,0.05632,0.972474,0.532049,0.453763,0.978006,0.736636,0.620529,0.870023,0.847235,0.573057,0.633636,0.352903,0.967475,0.388198,0.256706,0.928852,0.0631093,0.0993366,0.0553718,0.500214,0.0919142,0.555646,0.649492,0.222104,0.0109307,0.455564,0.862115,0.241088,0.300455,0.743477,0.818588,0.802071,0.835966,0.952088,0.530578,0.431228,0.561228,0.155086,0.351684,0.409525,0.356797,0.465132,0.613745,0.857243,0.927442,0.0486068,0.521336,0.486318,0.098121,0.014015,0.278709,0.384522,0.801821,0.012616,0.0497276,0.50188,0.208086,0.483304,0.942395,0.263343,0.81585,0.142169,0.36076,0.542663,0.301998,0.477006,0.851625,0.189044,0.578555,0.779173,0.729612,0.298311,0.838137,0.253044,0.769182,0.466182,0.3147,0.803423,0.454413,0.861862,0.265574,0.209471,0.280438,0.722849,0.793792,0.33426,0.394833,0.391348,0.374122,0.631776,0.242445,0.431545,0.824534,0.282627,0.955102,0.854743,0.621912,0.412903,0.335488,0.775558,0.145711,0.102073,0.763581,0.183034,0.505863,0.0376417,0.0128448,0.179596,0.615479,0.251503,0.994405,0.996569,0.333074,0.846545,0.662892,0.641287,0.103529,0.976404,0.740049,0.611461,0.584139,0.106522,0.398966,0.220966,0.0215108,0.23578,0.170128,0.722942,0.685012,0.64786,0.843839,0.346385,0.0318777,0.620277,0.967849,0.659158,0.874458,0.856076,0.76994,0.283276,0.835542,0.883663,0.385456,0.197022,0.899224,0.420003,0.647736,0.526225,0.726549,0.365997,0.28652,0.546308,0.39117,0.663732,0.13322,0.372554,0.763625,0.465562,0.171684,0.732995,0.430944,0.498654,0.376009,0.145006,0.876426,0.949901,0.796916,0.14643,0.358525,0.276239,0.700976,0.798784,0.732512,0.655756,0.791292,0.697164,0.203822,0.398363,0.0625001,0.188142,0.428387,0.286916,0.288603,0.200682,0.753771,0.606053,0.168684,0.569603,0.0695632,0.761326,0.985546,0.623058,0.154815,0.336466,0.680297,0.226737,0.246985,0.425911,0.205456,0.435838,0.197399,0.95169,0.0804071,0.224416,0.645708,0.86552,0.000473917,0.604701,0.759199,0.106653,0.956303,0.154275,0.725837,0.445587,0.945856,0.869898,0.486691,0.247492,0.0720873,0.850234,0.904341,0.862621,0.658248,0.236353,0.348196,0.38825,0.316461,0.231148,0.105322,0.796625,0.15418,0.95626,0.00424778,0.165049,0.231882,0.353537,0.118007,0.612085,0.853469,0.805578,0.542277,0.700351,0.417463,0.937481,0.0656173,0.347315,0.515886,0.414783,0.19997,0.546151,0.931796,0.901694,0.379067,0.522675,0.102784,0.80483,0.383942,0.124422,0.75495,0.133275,0.832529,0.809673,0.241943,0.785783,0.956087,0.484754,0.995976,0.646556,0.102924,0.774526,0.53243,0.331784,0.981533,0.409012,0.948383,0.798066,0.0934577,0.427215,0.947245,0.172078,0.429581,0.940057,0.777139,0.534904,0.310681,0.2553,0.436335,0.464475,0.352425,0.966002,0.858865,0.670501,0.0653264,0.843326,0.907822,0.739772,0.843343,0.550843,0.426757,0.882051,0.438377,0.744873,0.204601,0.342569,0.290705,0.697782,0.785564,0.211128,0.691118,0.41432,0.304433,0.349604,0.00930542,0.0780268,0.666819,0.52805,0.110799,0.875381,0.138088,0.346994,0.0165457,0.902223,0.900948,0.22039,0.822038,0.0863016,0.922275,0.443687,0.1535,0.249875,0.685355,0.270185,0.314278,0.300336,0.956213,0.322978,0.539258,0.403681,0.657688,0.320409,0.962243,0.106027,0.214366,0.656079,0.762241,0.161341,0.267485,0.173156,0.520846,0.818434,0.680828,0.901223,0.394611,0.341937,0.0482125,0.622364,0.647069,0.774441,0.0978901,0.259701,0.536929,0.424038,0.366179,0.518639,0.508474,0.373778,0.208407,0.0871715,0.766819,0.292848,0.116371,0.18877,0.0840179,0.207359,0.167332,0.115537,0.651443,0.73348,0.895769,0.318497,0.67781,0.40662,0.362173,0.258851,0.102325,0.0211705,0.866121,0.721771,0.793305,0.176065,0.584154,0.503697,0.213833,0.247806,0.329061,0.187016,0.418092,0.979483,0.607464,0.334988,0.513036,0.321791,0.853427,0.274769,0.889008,0.149452,0.235961,0.897755,0.117864,4.17233e-06,0.798865,0.888583,0.155279,0.843783,0.493945,0.46225,0.876556,0.849988,0.244068,0.90039,0.870521,0.571198,0.174038,0.208475,0.323109,0.257622,0.940655,0.366726,0.122995,0.115222,0.0735857,0.841596,0.406942,0.804464,0.116912,0.441627,0.0716603,0.818964,0.522006,0.768997,0.981017,0.590675,0.657583,0.276642,0.669505,0.710667,0.263044,0.603477,0.463381,0.856854,0.296906,0.845203,0.00246358,0.840229,0.946368,0.901399,0.503075,0.69139,0.510069,0.934269,0.959985,0.628009,0.437092,0.394719,0.34328,0.750745,0.832845,0.377834,0.440076,0.52788,0.809463,0.345893,0.977645,0.74584,0.349245,0.997964,0.215207,0.648919,0.773004,0.715908,0.546487,0.417901,0.648608,0.443684,0.983106,0.29958,0.165348,0.764052,0.441449,0.640589,0.151799,0.874449,0.25474,0.584195,0.35234,0.864932,0.652051,0.838595,0.603702,0.0263755,0.840308,0.898474,0.337644,0.733227,0.641556,0.560592,0.395188,0.750054,0.556347,0.658986,0.719172,0.291355,0.196123,0.433394,0.509951,0.18037,0.332178,0.261949,0.315186,0.0921134,0.547564,0.770028,0.111959,0.399258,0.731833,0.628695,0.281729,0.0994011,0.102988,0.0576987,0.990001,0.565351,0.0840651,0.269071,0.960552,0.81658,0.651799,0.558323,0.301911,0.555257,0.893342,0.583324,0.652325,0.651635,0.273529,0.0331951,0.72287,0.319738,0.0303797,0.38019,0.0762364,0.0868745,0.554026,0.0845858,0.391623,0.965308,0.058103,0.454814,0.975568,0.274232,0.730614,0.294933,0.386586,0.148212,0.333696,0.652787,0.219361,0.286337,0.406527,0.871394,0.965415,0.935191,0.0740588,0.165853,0.673722,0.611568,0.844982,0.717777,0.586842,0.879023,0.631014,0.705841,0.678487,0.720818,0.489928,0.525209,0.59194,0.978639,0.942532,0.460672,0.465763,0.33299,0.352331,0.431257,0.87483,0.154347,0.761198,0.922358,0.62373,0.787022,0.51344,0.0913896,0.860385,0.180361,0.216107,0.0494798,0.632851,0.490926,0.106574,0.20791,0.01865,0.427308,0.775663,0.882004,0.656694,0.362869,0.882152,0.280271,0.960394,0.91906,0.372125,0.908586,0.356755,0.952632,0.922149,0.456893,0.140069,0.126962,0.74974,0.465646,0.893943,0.774508,0.217469,0.065765,0.352094,0.780183,0.330273,0.408862,0.487998,0.731076,0.620979,0.107018,0.393904,0.982014,0.915174,0.844489,0.256749,0.211163,0.933527,0.50015,0.989108,0.688885,0.0965372,0.169105,0.360049,0.981807,0.965098,0.460635,0.641809,0.91411,0.97731,0.213185,0.133459,0.0386209,0.54206,0.00975072,0.434755,0.104389,0.352702,0.578507,0.655932,0.0976863,0.0315309,0.502211,0.964114,0.747279,0.239249,0.58997,0.694737,0.73698,0.665093,0.499096,0.335306,0.325558,0.134396,0.0899292,0.0414076,0.250433,0.300641,0.55721,0.0815575,0.95044,0.411068,0.227654,0.99019,0.269315,0.113506,0.0473955,0.703731,0.215647,0.0473711,0.83073,0.108527,0.945771,0.905006,0.919257,0.310304,0.0874999,0.730932,0.0699417,0.516518,0.858768,0.363032,0.309415,0.00246501,0.644311,0.715621,0.982127,0.517463,0.946823,0.604104,0.592585,0.665123,0.0205786,0.812077,0.968022,0.538267,0.465884,0.971426,0.340728,0.990073,0.605019,0.680699,0.45236,0.625643,0.822751,0.997511,0.239199,0.605975,0.137444,0.0998915,0.505801,0.339286,0.110349,0.44634,0.459001,0.659559,0.732372,0.301314,0.608662,0.300534,0.390392,0.736681,0.915825,0.0530093,0.399319,0.172831,0.827298,0.42811,0.876986,0.0810131,0.16412,0.980049,0.228739,0.486827,0.80273,0.872174,0.164269,0.120627,0.155643,0.879257,0.111057,0.758693,0.866758,0.357013,0.189979,0.298327,0.925353,0.898781,0.140244,0.139118,0.887984,0.439221,0.481788,0.866608,0.189837,0.741789,0.128109,0.804691,0.21388,0.163333,0.710261,0.465761,0.293466,0.0814301,0.19577,0.187379,0.150439,0.214432,0.749126,0.132619,0.134576,0.0105448,0.798086,0.897275,0.456948,0.0591247,0.612526,0.0257634,0.438731,0.549406,0.211324,0.756761,0.104282,0.159309,0.0610261,0.119702,0.316996,0.303753,0.0133445,0.0125265,0.905137,0.817797,0.41304,0.328195,0.299418,0.975392,0.611563,0.564083,0.204187,0.038773,0.26492,0.249184,0.88231,0.844007,0.489439,0.931061,0.115135,0.738209,0.797663,0.685297,0.608558,0.572438,0.712874,0.226664,0.0985548,0.241892,0.589904,0.755054,0.350884,0.907754,0.724954,0.163285,0.174043,0.464257,0.967672,0.788644,0.17452,0.688884,0.105751,0.821636,0.193741,0.724358,0.17213,0.527834,0.487645,0.232563,0.303199,0.153026,0.199301,0.734692,0.503689,0.474756,0.242915,0.83548,0.683132,0.0378294,0.17571,0.172255,0.283517,0.13227,0.950509,0.455158,0.0838477,0.964869,0.493101,0.452476,0.803084,0.314262,0.309286,0.71162,0.0552005,0.577357,0.135778,0.888717,0.613757,0.553888,0.448551,0.742995,0.826307,0.822961,0.236351,0.767047,0.609225,0.447183,0.142174,0.619427,0.610622,0.585574,0.127493,0.627372,0.708467,0.329493,0.0037598,0.460742,0.104474,0.151141,0.796064,0.705804,0.0946565,0.618205,0.845766,0.466334,0.187982,0.432671,0.457884,0.571646,0.381473,0.333146,0.465425,0.533264,0.0483445,0.191169,0.846785,0.179444,0.790026,0.468757,0.258972,0.112726,0.595253,0.553214,0.359433,0.844525,0.994661,0.30628,0.676043,0.0109312,0.510786,0.560572,| diff --git a/test/torchscripts/VQ/columnCodeIndexX.txt b/test/torchscripts/VQ/columnCodeIndexX.txt new file mode 100644 index 00000000..824a39a4 --- /dev/null +++ b/test/torchscripts/VQ/columnCodeIndexX.txt @@ -0,0 +1 @@ +589,955,374,782,316,855,542,877,626,274,586,38,92,751,787,648,587,522,529,136,952,333,32,404,705,459,799,11,366,175,478,116,607,352,157,783,241,651,875,373,551,564,39,76,833,728,348,559,939,385,367,424,584,590,477,532,905,410,33,13,89,931,239,556,925,973,778,28,996,34,942,246,553,537,461,681,976,959,902,768,425,299,207,658,60,979,613,78,519,723,264,51,729,512,95,262,864,102,479,633,415,936,917,962,664,496,893,267,896,588,878,747,660,919,591,470,616,117,908,995,545,172,567,27,68,357,513,291,191,901,533,248,825,345,380,29,619,523,741,203,679,666,320,180,395,982,930,593,923,141,292,378,358,525,568,314,676,361,743,377,693,860,814,254,762,733,731,35,412,829,55,572,18,465,687,892,488,388,81,269,704,599,900,196,636,788,712,772,360,336,261,850,686,155,869,543,549,210,45,255,883,971,331,890,561,324,278,489,865,312,275,20,863,738,429,383,689,446,483,129,700,832,307,594,296,623,93,162,152,40,927,475,401,462,409,177,494,176,390,928,947,907,857,969,498,145,903,912,342,350,540,764,938,354,597,282,885,740,236,329,444,402,563,650,671,859,612,750,980,297,137,895,566,318,434,169,80,862,562,707,108,57,235,552,442,387,109,715,926,393,422,502,301,812,521,673,603,606,310,218,661,107,767,343,365,58,127,967,580,406,622,223,414,66,455,47,793,104,909,888,230,281,953,680,46,480,328,61,528,791,709,922,817,344,581,5,62,621,439,381,140,652,276,219,749,898,416,557,214,711,154,659,653,125,643,212,744,977,413,998,403,657,10,353,75,163,798,73,21,193,48,823,280,41,842,503,266,516,99,149,940,786,611,0,870,306,6,714,460,958,396,702,846,36,773,174,298,801,554,87,840,835,991,84,184,957,954,170,790,797,841,821,272,49,364,602,234,443,270,989,968,9,222,897,695,407,17,550,179,23,876,467,166,437,74,560,362,168,458,640,115,110,934,185,113,268,746,726,853,972,721,146,242,993,920,961,37,570,450,457,363,845,468,776,209,233,263,100,245,682,195,456,690,950,171,683,615,944,453,431,697,119,647,451,732,541,514,601,150,663,197,161,7,463,598,742,691,124,340,198,156,894,867,135,326,63,332,211,800,929,886,655,430,739,899,710,481,656,447,716,831,471,232,763,311,618,50,737,131,182,25,978,548,847,805,379,487,44,187,96,16,398,208,515,802,71,804,770,672,868,244,167,419,781,851,148,369,699,874,585,495,771,694,497,880,803,440,22,221,399,98,534,884,527,472,941,854,630,420,321,482,313,70,614,83,794,94,277,882,505,202,769,966,427,891,608,547,988,757,284,240,101,810,600,538,225,188,452,734,761,432,215,960,186,411,997,796,913,144,114,436,325,216,822,130,305,231,428,813,384,300,426,873,535,713,756,667,238,662,544,308,435,924,620,201,745,992,376,346,8,752,85,105,575,852,946,916,627,294,273,253,227,646,706,730,654,684,289,260,206,999,703,303,670,824,120,90,408,994,665,774,375,397,128,265,486,356,945,192,112,12,524,382,639,849,777,809,371,582,372,727,573,921,574,724,290,949,848,138,121,520,499,717,279,558,139,644,511,688,696,579,285,605,143,856,200,417,970,577,65,228,985,133,718,720,635,19,906,820,91,476,758,708,160,491,735,220,571,368,963,77,765,775,341,86,836,106,454,872,490,669,405,517,14,151,795,827,861,506,317,441,118,199,258,637,518,183,2,983,910,837,858,24,449,43,974,205,595,82,536,649,469,990,4,370,97,142,349,830,719,760,226,31,881,213,500,578,806,79,937,224,287,484,259,72,624,725,933,178,283,617,569,509,678,915,604,400,628,217,134,555,948,753,675,807,871,530,722,918,464,189,153,334,987,668,956,64,466,565,445,304,539,645,625,819,834,123,67,173,164,319,784,26,839,965,111,951,844,335,808,816,132,337,54,932,596,754,674,229,792,818,249,508,748,322,887,1,271,438,879,347,984,355,904,252,69,889,789,309,243,389,843,103,986,190,701,785,576,338,981,629,492,685,935,158,3,418,194,507,42,295,147,975,838,237,59,15,122,181,30,250,632,88,251,501,964,165,759,698,286,288,811,815,526,330,448,421,473,692,392,493,474,634,755,204,504,53,642,339,257,677,327,610,531,386,126,780,546,826,433,423,391,302,247,866,359,631,485,779,911,52,256,510,828,293,641,766,159,394,592,351,583,943,323,315,736,56,638,914,609, diff --git a/test/torchscripts/VQ/rowCodeBookY.txt b/test/torchscripts/VQ/rowCodeBookY.txt new file mode 100644 index 00000000..55573864 --- /dev/null +++ b/test/torchscripts/VQ/rowCodeBookY.txt @@ -0,0 +1 @@ +0.221675,0.52249,0.213867,0.608888,0.862621,0.606601,0.478902,0.873785,0.378823,0.522888,0.504178,0.770183,0.352281,0.694073,0.203219,0.0582913,0.43753,0.464647,0.0406142,0.931628,0.457517,0.543238,0.136036,0.222114,0.110052,0.596008,0.0330322,0.430218,0.608365,0.413411,0.911164,0.561432,0.59824,0.817375,0.300333,0.0436316,0.95871,0.087873,0.363315,0.00623941,0.84715,0.64195,0.3714,0.708382,0.548847,0.648165,0.911471,0.685559,0.359019,0.155371,0.823787,0.688644,0.489274,0.0605854,0.795063,0.925103,0.345431,0.181274,0.120105,0.0299541,0.329515,0.335813,0.943774,0.312884,0.270604,0.11437,0.226033,0.707567,0.974298,0.243622,0.3228,0.83135,0.296738,0.806115,0.102351,0.554434,0.977754,0.296215,0.832598,0.655237,0.165864,0.909402,0.245128,0.649251,0.37402,0.152699,0.316445,0.112985,0.443684,0.85344,0.0869392,0.280668,0.844914,0.625363,0.630488,0.00859982,0.742384,0.00706339,0.565264,0.408563,0.538754,0.687307,0.650875,0.537322,0.842313,0.770496,0.884219,0.69659,0.130116,0.315338,0.887299,0.313703,0.952839,0.608257,0.721467,0.248901,0.606462,0.114165,0.965654,0.199233,0.910467,0.984378,0.696529,0.853431,0.441157,0.441644,0.34145,0.999546,0.552058,0.105062,0.302069,0.13935,0.0761048,0.203923,0.139218,0.175048,0.168193,0.666865,0.144988,0.788886,0.977863,0.0636379,0.64868,0.188125,0.0632333,0.793318,0.83359,0.300541,0.603958,0.111065,0.963954,0.0315508,0.970944,0.489459,0.748068,0.698248,0.946886,0.293603,0.592391,0.654118,0.939085,0.0831674,0.666155,0.9846,0.697692,0.086996,0.0571461,0.933945,0.0960199,0.378565,0.376988,0.205164,0.0446128,0.459745,0.681355,0.563944,0.793322,0.245046,0.419103,0.930688,0.672915,0.751483,0.201954,0.029907,0.27296,0.829453,0.932258,0.710214,0.318117,0.611864,0.124079,0.0363414,0.593425,0.0371355,0.305422,0.801316,0.789058,0.520813,0.599922,0.778781,0.112052,0.664446,0.98167,0.961647,0.282925,0.928864,0.0831158,0.783648,0.0718629,0.856438,0.730825,0.327399,0.622801,0.785256,0.927596,0.85515,0.621899,0.798166,0.377391,0.44333,0.870687,0.956696,0.342638,0.27343,0.768401,0.0299855,0.271318,0.0062719,0.530783,0.976646,0.148709,0.955724,0.954997,0.0188503,0.630143,0.0510221,0.293151,0.140217,0.00969523,0.567132,0.52974,0.0905744,0.578251,0.428369,0.559656,0.136981,0.642667,0.663655,0.564346,0.917178,0.712805,0.491613,0.752829,0.557189,0.645852,0.996473,0.211559,0.870895,0.318011,0.547747,0.304485,0.57255,0.486525,0.0751219,0.438757,0.880727,0.894475,0.270655,0.643628,0.0184515,0.127643,0.237331,0.498289,0.438511,0.306718,0.356517,0.605151,0.405829,0.89517,0.17094,0.569156,0.906347,0.951762,0.497962,0.274432,0.791137,0.0165858,0.757412,0.644519,0.926225,0.063112,0.862185,0.239005,0.400364,0.972377,0.436014,0.975494,0.282907,0.700072,0.410848,0.76996,0.377996,0.793662,0.408085,0.890846,0.933529,0.578353,0.334068,0.411371,0.402211,0.080812,0.668748,0.195659,0.462349,0.708499,0.431249,0.679205,0.0164374,0.522856,0.349622,0.28465,0.34688,0.0217575,0.312989,0.145855,0.445518,0.118226,0.0587384,0.753628,0.714634,0.724068,0.869237,0.112819,0.626194,0.701968,0.0701913,0.712149,0.0497553,0.777648,0.239991,0.260676,0.283971,0.678303,0.169869,0.0546591,0.0364798,0.648687,0.346071,0.696338,0.372153,0.0725154,0.729395,0.627107,0.452094,0.797536,0.927975,0.899476,0.795063,0.0471072,0.388751,0.963461,0.661989,0.978374,0.0662701,0.153906,0.0728045,0.457883,0.846995,0.944273,0.364558,0.739332,0.762652,0.842747,0.420098,0.0682008,0.319849,0.0749446,0.582072,0.651604,0.00309914,0.2698,0.764283,0.70405,0.223308,0.260837,0.252086,0.920886,0.216129,0.4024,0.256642,0.597665,0.820908,0.755567,0.325452,0.291722,0.53617,0.291267,0.96362,0.436184,0.0454318,0.399393,0.64168,0.298848,0.758914,0.568167,0.756031,0.266088,0.0163715,0.904616,0.728984,0.334416,0.00384456,0.738338,0.410905,0.822426,0.706997,0.502944,0.421241,0.00548249,0.659799,0.612131,0.527166,0.255308,0.480597,0.625002,0.174533,0.313822,0.928801,0.981334,0.853539,0.988749,0.220617,0.532055,0.386572,0.703013,0.683878,0.791684,0.320832,0.988993,0.161891,0.687183,0.968564,0.980472,0.687577,0.0848285,0.686701,0.734108,0.522693,0.108218,0.498572,0.472398,0.757882,0.968682,0.253023,0.188937,0.834205,0.46646,0.576738,0.774333,0.364227,0.546291,0.954665,0.964132,0.0575131,0.185394,0.582316,0.923269,0.92678,0.979046,0.765793,0.0603987,0.413366,0.915492,0.0279156,0.349503,0.510489,0.63648,0.15632,0.817711,0.287704,0.753499,0.52075,0.629019,0.645302,0.557898,0.734041,0.175304,0.396122,0.294631,0.79871,0.94428,0.43252,0.432718,0.261301,0.843031,0.403526,0.19111,0.798941,0.950473,0.440119,0.778276,0.366294,0.739141,0.3217,0.577143,0.997021,0.518233,0.69202,0.36609,0.899594,0.972507,0.555655,0.0782188,0.89769,0.716571,0.640513,0.988381,0.257384,0.441497,0.831163,0.688746,0.824197,0.391076,0.224322,0.93235,0.0279142,0.769231,0.901299,0.35704,0.0242668,0.209913,0.851102,0.173419,0.668938,0.378114,0.123147,0.724939,0.518183,0.369935,0.378761,0.162072,0.446027,0.171183,0.294133,0.959557,0.899174,0.464076,0.613425,0.322605,0.836108,0.119497,0.556053,0.443964,0.270963,0.749476,0.598106,0.407954,0.73386,0.166733,0.189236,0.294515,0.100469,0.450285,0.0343326,0.280487,0.346415,0.716554,0.215579,0.51793,0.14031,0.181244,0.373717,0.108145,0.407073,0.247862,0.477646,0.980064,0.0524676,0.847301,0.611478,0.976867,0.955006,0.892375,0.0226864,0.437961,0.865093,0.129645,0.197221,0.981302,0.856983,0.697295,0.808009,0.257471,0.441716,0.147177,0.162748,0.59392,0.577309,0.182925,0.0113606,0.881443,0.425637,0.0643649,0.181038,0.226057,0.870997,0.883861,0.580282,0.311787,0.0524161,0.63203,0.302543,0.0851922,0.328493,0.279257,0.0389608,0.880154,0.0885473,0.931178,0.695664,0.781092,0.786486,0.408973,0.41475,0.47265,0.545681,0.30807,0.625191,0.530628,0.75636,0.315573,0.60676,0.222243,0.983099,0.839306,0.180443,0.268211,0.536829,0.418723,0.864233,0.966665,0.974689,0.477423,0.419091,0.180527,0.135938,0.203751,0.423879,0.0612724,0.736116,0.490125,0.143208,0.40943,0.847944,0.929199,0.169586,0.508857,0.622408,0.392387,0.84327,0.949509,0.337236,0.0720986,0.30786,0.507252,0.330678,0.417529,0.692434,0.572815,0.366474,0.236351,0.78721,0.100825,0.888446,0.554946,0.151178,0.419008,0.445828,0.982818,0.974437,0.545233,0.510647,0.125062,0.704375,0.668506,0.542101,0.486492,0.422715,0.126045,0.362348,0.20883,0.809084,0.475156,0.0088985,0.627733,0.161595,0.430096,0.52194,0.795702,0.672833,0.241085,0.978404,0.578382,0.199561,0.078488,0.432329,0.162902,0.477265,0.748914,0.376115,0.766057,0.467281,0.435247,0.470662,0.574497,0.512741,0.78895,0.114503,0.867239,0.196506,0.782972,0.0549662,0.756135,0.0912994,0.484247,0.0173569,0.688699,0.837268,0.823385,0.82033,0.515148,0.407472,0.284307,0.476865,0.620074,0.712062,0.855535,0.94328,0.940923,0.745866,0.692171,0.0712658,0.932919,0.57184,0.49116,0.85363,0.867511,0.552338,0.781515,0.240817,0.0754605,0.0122971,0.47178,0.582637,0.584144,0.560597,0.0029003,0.282409,0.159526,0.227999,0.318827,0.0209228,0.7871,0.897395,0.368811,0.720442,0.456487,0.824594,0.193639,0.721085,0.25112,0.575668,0.360242,0.304905,0.632367,0.753807,0.958227,0.658057,0.707494,0.87025,0.0660458,0.688559,0.309496,0.343965,0.622665,0.0923407,0.492879,0.64085,0.379107,0.663352,0.299645,0.347348,0.0881028,0.901741,0.759823,0.704704,0.254644,0.226922,0.349853,0.384263,0.802424,0.417278,0.30085,0.605899,0.825415,0.516004,0.50066,0.210685,0.435557,0.077557,0.718597,0.618005,0.260737,0.718389,0.706125,0.152512,0.252127,0.453193,0.72979,0.0971199,0.785313,0.00397801,0.159887,0.535394,0.100346,0.99091,0.848637,0.957035,0.194411,0.812415,0.0873381,0.224065,0.364057,0.288153,0.984291,0.613618,0.334948,0.514713,0.490649,0.277088,0.657283,0.383732,0.245673,0.153328,0.152801,0.782145,0.557782,0.497568,0.30183,0.0232247,0.416206,0.474485,0.0812114,0.32468,0.0557323,0.194801,0.138364,0.0934949,0.782142,0.396135,0.825602,0.00142002,0.389545,0.654035,0.850641,0.885267,0.912137,0.21737,0.291362,0.461312,0.228203,0.339894,0.637098,0.581325,0.977119,0.0249146,0.852093,0.144513,0.483203,0.00792545,0.743867,0.687296,0.365571,0.552855,0.584106,0.381293,0.324833,0.698612,0.211798,0.911845,0.945525,0.371834,0.486183,0.525247,0.557639,0.18751,0.305725,0.307369,0.371504,0.627587,0.525553,0.26216,0.53785,0.151685,0.520842,0.797213,0.5308,0.979245,0.468684,0.525051,0.945818,0.072174,0.211986,0.760731,0.389418,0.490227,0.676303,0.36144,0.777395,0.506185,0.882135,0.0791454,0.884172,0.78165,0.182186,0.987542,0.380872,0.294677,0.959848,0.901814,0.598935,0.827383,0.907348,0.10558,0.13991,0.212712,0.126866,0.315985,0.771664,0.208084,0.847613,0.419303,0.566487,0.480449,0.207993,0.0721079,0.986014,0.61614,0.833569,0.903993,0.611778,0.779045,0.771966,0.346426,0.642115,0.800717,0.112852,0.436198,0.520415,0.936444,0.239397,0.0714416,0.247633,0.083751,0.868803,0.957957,0.241365,0.285297,0.140762,0.472272,0.848149,0.449633,0.608407,0.237698,0.513017,0.730396,0.84272,0.940218,0.900088,0.318938,0.364222,0.0432373,0.951173,0.885862,0.204504,0.357413,0.903122,0.776177,0.732036,0.531433,0.271632,0.658469,0.0923879,0.212515,0.311916,0.373844,0.0448135,0.53054,0.244746,0.26038,|0.358599,0.0274481,0.738436,0.535519,0.883893,0.7969,0.940745,0.653449,0.831248,0.664426,0.40484,0.108696,0.960483,0.930815,0.396275,0.79409,0.806773,0.954138,0.446424,0.629913,0.21352,0.513326,0.730325,0.559021,0.385436,0.814198,0.989357,0.0199982,0.672415,0.108114,0.486727,0.761692,0.0911845,0.456729,0.366377,0.247605,0.0865121,0.551269,0.736509,0.61594,0.658629,0.21213,0.381527,0.82645,0.610173,0.0529315,0.293987,0.893378,0.265498,0.696071,0.397589,0.587601,0.646006,0.864212,0.147412,0.760689,0.441519,0.679515,0.753363,0.0703093,0.667387,0.359231,0.634363,0.515934,0.986697,0.17593,0.034461,0.260371,0.720846,0.173282,0.334223,0.333398,0.891626,0.774575,0.353446,0.800525,0.365295,0.900541,0.338017,0.234385,0.723056,0.128592,0.154473,0.213403,0.879651,0.558241,0.982049,0.114057,0.0561187,0.15701,0.739025,0.481853,0.863004,0.891918,0.139453,0.972485,0.973963,0.513452,0.379457,0.483565,0.367526,0.712368,0.88006,0.0480011,0.157469,0.967709,0.121834,0.0497566,0.562782,0.418756,0.996788,0.47202,0.830758,0.830714,0.114548,0.787864,0.117127,0.13458,0.0128053,0.28401,0.507159,0.083234,0.574769,0.16757,0.713467,0.87846,0.947992,0.0672134,0.491782,0.759627,0.0537405,0.317426,0.249631,0.945088,0.660104,0.309538,0.319811,0.0834663,0.295713,0.855915,0.212995,0.595619,0.0223774,0.404766,0.211662,0.266231,0.385928,0.426144,0.378977,0.379991,0.814636,0.377698,0.00820208,0.0335906,0.592489,0.183445,0.259958,0.216383,0.338255,0.392637,0.857512,0.225082,0.977714,0.904614,0.729447,0.00730461,0.0856711,0.434175,0.548915,0.974357,0.819242,0.189557,0.260792,0.720049,0.164614,0.657739,0.168038,0.17705,0.995557,0.728906,0.0302037,0.440453,0.578991,0.843154,0.472427,0.748723,0.414809,0.838663,0.370239,0.69272,0.61014,0.766559,0.667557,0.452035,0.622486,0.792109,0.135449,0.949121,0.0174447,0.913555,0.787374,0.846153,0.395387,0.00427639,0.95898,0.433824,0.620298,0.73182,0.85503,0.950648,0.763081,0.655244,0.730313,0.477664,0.26602,0.782065,0.687267,0.943893,0.671954,0.919089,0.785477,0.475613,0.20611,0.256951,0.572313,0.686216,0.0267843,0.955695,0.81101,0.880873,0.678365,0.752838,0.222224,0.755618,0.644992,0.0389462,0.562917,0.499398,0.787921,0.40834,0.777961,0.965829,0.0657601,0.620826,0.0488518,0.697725,0.232941,0.0539684,0.509706,0.30574,0.208194,0.0238863,0.680124,0.242962,0.446494,0.927032,0.202312,0.0343437,0.719895,0.432493,0.611606,0.400392,0.187474,0.462486,0.911977,0.873543,0.544038,0.30297,0.512549,0.973326,0.375149,0.046938,0.06266,0.213146,0.182614,0.510674,0.793965,0.870183,0.351581,0.140575,0.100078,0.0706998,0.584704,0.747088,0.410211,0.737759,0.161386,0.628346,0.421565,0.585245,0.529656,0.734769,0.826237,0.232308,0.884998,0.685681,0.204996,0.130949,0.856032,0.544724,0.15623,0.0584952,0.891178,0.891588,0.0514085,0.327554,0.89337,0.328706,0.939469,0.243961,0.796279,0.817723,0.465901,0.0693884,0.69926,0.0282952,0.255953,0.566536,0.838688,0.704856,0.571902,0.223475,0.907633,0.064875,0.593592,0.219508,0.602066,0.295039,0.641368,0.191903,0.646003,0.126401,0.759733,0.889752,0.445994,0.534158,0.556459,0.14936,0.395311,0.141862,0.620713,0.0419866,0.523356,0.178949,0.871689,0.609865,0.710724,0.410303,0.334936,0.577586,0.17266,0.508407,0.870454,0.950589,0.773662,0.833081,0.0917273,0.930155,0.542759,0.2403,0.579757,0.743792,0.153624,0.798881,0.25634,0.303422,0.593114,0.602776,0.0262347,0.37644,0.118072,0.26276,0.847106,0.245626,0.335951,0.0685174,0.989891,0.307986,0.0528274,0.0213251,0.521924,0.507291,0.448024,0.967316,0.676146,0.469721,0.311285,0.300439,0.644682,0.958078,0.965384,0.939318,0.133933,0.627247,0.962474,0.282301,0.049391,0.8919,0.639233,0.311819,0.213836,0.026627,0.736722,0.0563509,0.798835,0.482747,0.982269,0.386809,0.285588,0.185459,0.0489206,0.611915,0.663257,0.731544,0.654025,0.930719,0.959528,0.721347,0.337187,0.930882,0.904017,0.322237,0.34934,0.162615,0.746644,0.888056,0.841321,0.376939,0.213802,0.22033,0.207455,0.00458837,0.515006,0.708963,0.116375,0.310315,0.732971,0.377156,0.946104,0.212734,0.997966,0.039759,0.846178,0.465703,0.211717,0.159149,0.716474,0.163686,0.264061,0.422474,0.187308,0.10237,0.31279,0.497566,0.221044,0.623362,0.54328,0.0782509,0.812599,0.405864,0.955031,0.620137,0.893705,0.257134,0.00545317,0.0311487,0.335564,0.862043,0.807176,0.404251,0.790071,0.166385,0.904697,0.503958,0.00178891,0.138277,0.297544,0.466836,0.473387,0.611544,0.624171,0.163894,0.754997,0.275595,0.068129,0.653959,0.946748,0.331627,0.588161,0.0732015,0.582945,0.336002,0.596152,0.325998,0.434542,0.37734,0.520294,0.501419,0.291567,0.929805,0.508313,0.084698,0.593647,0.0959713,0.668698,0.432563,0.596508,0.49166,0.695,0.576777,0.134433,0.590677,0.467126,0.965315,0.0619011,0.0325115,0.658113,0.365223,0.588438,0.106343,0.750333,0.928122,0.746898,0.418882,0.871021,0.705399,0.914365,0.449725,0.606745,0.927267,0.269011,0.941446,0.890078,0.12378,0.238983,0.519728,0.824735,0.98648,0.561928,0.123674,0.488942,0.566622,0.0863959,0.608209,0.690138,0.355485,0.843537,0.672307,0.0536917,0.27917,0.959819,0.926906,0.615381,0.366359,0.847493,0.645794,0.0107374,0.0154991,0.382429,0.402385,0.321566,0.0151383,0.124502,0.100684,0.906365,0.544001,0.557859,0.929598,0.0674487,0.853529,0.685006,0.0152724,0.687692,0.691954,0.38919,0.877475,0.74876,0.615293,0.726457,0.178316,0.991744,0.631974,0.142535,0.330512,0.30164,0.212092,0.222018,0.981315,0.78479,0.0998551,0.450199,0.287989,0.0717983,0.385973,0.0998941,0.0705179,0.955637,0.921075,0.768248,0.829352,0.595078,0.906519,0.340817,0.142458,0.686714,0.608536,0.168507,0.819429,0.341893,0.892163,0.866242,0.850659,0.870321,0.648739,0.209058,0.71251,0.88097,0.159423,0.391611,0.553259,0.485756,0.101712,0.173514,0.994076,0.220925,0.619277,0.553102,0.978395,0.111802,0.202458,0.598471,0.190746,0.851549,0.889199,0.310143,0.358266,0.363584,0.00497282,0.437548,0.399721,0.670147,0.666134,0.106243,0.170228,0.493895,0.242195,0.402368,0.113329,0.565069,0.100069,0.48867,0.5005,0.720989,0.359482,0.000853121,0.949469,0.748954,0.373755,0.312039,0.650047,0.0888743,0.834085,0.804147,0.910197,0.996434,0.464455,0.00177419,0.36123,0.845286,0.0775694,0.518639,0.954434,0.700615,0.268442,0.809118,0.856167,0.024389,0.253265,0.374944,0.847536,0.514983,0.616603,0.452609,0.984075,0.831043,0.595378,0.799828,0.200053,0.285585,0.536886,0.764767,0.984019,0.463628,0.470034,0.886115,0.251581,0.231355,0.903282,0.970399,0.0989127,0.169907,0.264203,0.0730259,0.710667,0.124419,0.325045,0.812155,0.747289,0.370558,0.810818,0.850954,0.523493,0.241964,0.525001,0.834195,0.455388,0.327534,0.826232,0.898907,0.477297,0.353389,0.835459,0.589459,0.336512,0.810063,0.401294,0.0664521,0.855039,0.446522,0.442722,0.128844,0.00903755,0.425048,0.445967,0.884437,0.105529,0.0921655,0.0524398,0.194198,0.287103,0.44953,0.277103,0.884511,0.841269,0.552663,0.911904,0.65177,0.988006,0.416932,0.791274,0.264753,0.580377,0.0138399,0.0415416,0.180869,0.315273,0.0745643,0.287498,0.992055,0.488967,0.175993,0.464843,0.782318,0.145814,0.253241,0.298025,0.827291,0.067014,0.620336,0.290842,0.513538,0.274256,0.515712,0.279814,0.693977,0.169181,0.71709,0.570922,0.749413,0.528038,0.606601,0.357397,0.566638,0.657374,0.00466198,0.0844037,0.0894009,0.103773,0.265018,0.296683,0.19509,0.998252,0.313361,0.260808,0.626342,0.409888,0.527348,0.209188,0.890257,0.893878,0.652767,0.936866,0.585073,0.278125,0.329928,0.412449,0.470445,0.953631,0.0814322,0.986635,0.292566,0.50356,0.609944,0.347932,0.531679,0.719635,0.230382,0.784571,0.293703,0.238325,0.985885,0.586859,0.361754,0.446574,0.384184,0.0348951,0.113256,0.617785,0.432438,0.761573,0.748629,0.33697,0.503769,0.652326,0.70125,0.0241345,0.458427,0.26128,0.103809,0.201271,0.525542,0.0845731,0.182644,0.842388,0.294518,0.718474,0.205472,0.848262,0.958796,0.977073,0.523659,0.659042,0.352906,0.565762,0.540491,0.690702,0.905898,0.302529,0.891988,0.530978,0.968765,0.558776,0.67849,0.47603,0.433699,0.901647,0.245496,0.800482,0.509393,0.477565,0.909527,0.124465,0.58259,0.414206,0.694097,8.63075e-05,0.351916,0.227725,0.294283,0.053732,0.800847,0.792839,0.935053,0.37562,0.696994,0.407739,0.778621,0.360868,0.448666,0.204349,0.830005,0.692378,0.426024,0.975015,0.241542,0.273557,0.648295,0.412516,0.784338,0.985632,0.376749,0.831067,0.218406,0.251148,0.583524,0.507396,0.0466267,0.902762,0.110709,0.231753,0.610078,0.206417,0.613147,0.753404,0.410253,0.652117,0.718731,0.818716,0.711193,0.541138,0.0124962,0.603209,0.611752,0.686068,0.758539,0.866359,0.215402,0.132287,0.818057,0.0814514,0.811308,0.0783739,0.0724422,0.680256,0.762024,0.103252,0.907401,0.69471,0.787738,0.000927627,0.260812,0.504517,0.998935,0.190655,0.00378567,0.885046,0.241242,0.506791,0.614262,0.927934,0.570237,0.398774,0.340815,0.816926,0.886747,0.394921,0.999781,0.498445,0.749168,0.223461,0.18686,0.369411,0.218557,0.0771999,0.529734,0.77896,0.271362,0.14947,0.845672,0.30899,0.183912,0.468249,0.0420337,0.955674,0.806888,0.887559,0.750052,0.693544,0.0266245,0.128719,0.860389,0.824379,0.328294,0.389488,0.15107,0.140798,0.495288,0.26072,0.74235,0.592589,0.756587,0.78169,0.738501,0.296021,0.798399,0.164807,0.71242,0.287851,0.314584,0.13691,|0.271887,0.117431,0.680939,0.860664,0.54079,0.564988,0.993535,0.238971,0.527456,0.414488,0.580159,0.471535,0.380169,0.905061,0.875072,0.44513,0.123946,0.614448,0.807034,0.560539,0.719982,0.520965,0.324794,0.750952,0.239812,0.247426,0.403353,0.821607,0.725988,0.874547,0.768853,0.654767,0.268574,0.495774,0.727571,0.0216841,0.487342,0.338807,0.49166,0.037554,0.232316,0.239204,0.871622,0.92303,0.222098,0.987811,0.251067,0.238781,0.45629,0.839353,0.683177,0.516848,0.401126,0.997061,0.0503545,0.607936,0.105586,0.202764,0.953951,0.246489,0.68236,0.152551,0.901052,0.653175,0.505228,0.482392,0.415873,0.336115,0.524298,0.0824751,0.69403,0.486205,0.0200781,0.54837,0.0604793,0.091163,0.528484,0.936572,0.2975,0.740859,0.423787,0.599923,0.450692,0.426476,0.914735,0.25583,0.312125,0.215265,0.794794,0.474074,0.98963,0.866451,0.0571988,0.532207,0.0240711,0.0486715,0.0410623,0.353371,0.338187,0.0963405,0.549316,0.340588,0.0770811,0.725918,0.0773103,0.292534,0.725773,0.826613,0.680904,0.234766,0.082432,0.746603,0.992993,0.833848,0.761661,0.136572,0.713181,0.988125,0.147378,0.603453,0.143811,0.141728,0.615885,0.941524,0.914875,0.666465,0.121553,0.152762,0.349625,0.320486,0.979329,0.420296,0.809558,0.801721,0.285123,0.667922,0.113935,0.257835,0.763825,0.497441,0.324722,0.423816,0.929017,0.131709,0.648942,0.406067,0.214688,0.419291,0.583831,0.979538,0.578714,0.431333,0.39743,0.230813,0.142702,0.249484,0.559688,0.8942,0.989696,0.945947,0.162975,0.434761,0.372048,0.68758,0.521892,0.0678893,0.577559,0.448843,0.279081,0.44377,0.122296,0.475355,0.356209,0.258426,0.610104,0.287722,0.455416,0.0771579,0.374736,0.753517,0.417402,0.800276,0.375211,0.973023,0.141605,0.253166,0.54606,0.146473,0.219371,0.471459,0.294246,0.404315,0.601088,0.0031271,0.135216,0.177787,0.198135,0.919456,0.324085,0.295503,0.127413,0.658394,0.889158,0.330105,0.698253,0.0194612,0.495979,0.491301,0.738454,0.486993,0.41061,0.613562,0.805595,0.837689,0.134109,0.623814,0.0502449,0.679175,0.190316,0.799581,0.890752,0.760487,0.951957,0.116007,0.244207,0.527983,0.165748,0.733772,0.940437,0.939253,0.00558829,0.586212,0.559949,0.0448488,0.758693,0.00492495,0.435711,0.539685,0.230686,0.757445,0.340329,0.770802,0.682231,0.475704,0.131285,0.595567,0.691975,0.0247607,0.8192,0.982398,0.940375,0.0298501,0.168527,0.204132,0.55723,0.482666,0.962895,0.341804,0.429539,0.79819,0.269156,0.893896,0.290076,0.585304,0.172013,0.937228,0.400485,0.0272917,0.525253,0.480102,0.649832,0.842676,0.925299,0.0462219,0.83124,0.082979,0.545337,0.15884,0.760249,0.242502,0.494169,0.941996,0.865241,0.78532,0.58029,0.255297,0.85852,0.331613,0.776866,0.0877435,0.855723,0.400194,0.299019,0.595976,0.363789,0.274723,0.486895,0.351582,0.634361,0.989569,0.0268129,0.794276,0.294132,0.686924,0.832437,0.423002,0.210296,0.417357,0.795939,0.460068,0.737657,0.706474,0.453796,0.566507,0.631833,0.656999,0.820125,0.948008,0.843106,0.614616,0.894101,0.510012,0.982539,0.824004,0.886405,0.452093,0.605916,0.302301,0.300654,0.87539,0.63165,0.498741,0.485966,0.608275,0.944528,0.989497,0.877899,0.967192,0.854776,0.924022,0.928694,0.80975,0.861807,0.765612,0.991213,0.00709236,0.526146,0.0220526,0.803526,0.723687,0.280262,0.350823,0.0297284,0.978918,0.179051,0.88672,0.352278,0.23994,0.717137,0.877725,0.164329,0.877347,0.176393,0.592019,0.355552,0.560089,0.906112,0.6781,0.21388,0.428845,0.287797,0.800145,0.532299,0.726543,0.550455,0.530714,0.84921,0.116272,0.875435,0.066671,0.642004,0.253633,0.542028,0.732363,0.834976,0.0982692,0.942864,0.439903,0.807328,0.419729,0.642654,0.0985832,0.0347287,0.418405,0.46954,0.273543,0.722057,0.234882,0.428318,0.572506,0.000146866,0.389086,0.30677,0.00328964,0.208242,0.942305,0.868655,0.969411,0.966819,0.422271,0.30848,0.565445,0.221219,0.35245,0.638538,0.406221,0.405399,0.445026,0.198282,0.182735,0.173446,0.813785,0.38865,0.816153,0.721591,0.466926,0.520361,0.0660655,0.444179,0.165116,0.310705,0.000834346,0.594909,0.322472,0.741677,0.649844,0.967979,0.0978295,0.109122,0.534997,0.294639,0.231013,0.474225,0.750889,0.419863,0.0764419,0.783068,0.685829,0.82506,0.865636,0.0634688,0.255645,0.13395,0.469314,0.0606951,0.00943816,0.186952,0.543363,0.799154,0.396262,0.230696,0.137254,0.508898,0.934327,0.211763,0.30536,0.601003,0.100021,0.197913,0.554296,0.506077,0.104178,0.931128,0.858101,0.525846,0.306167,0.753806,0.970351,0.602756,0.088571,0.559651,0.984945,0.0434231,0.246033,0.926026,0.175947,0.892541,0.808128,0.299661,0.477115,0.934378,0.897236,0.228289,0.946863,0.695654,0.821377,0.981114,0.49159,0.68534,0.534258,0.967834,0.651492,0.4783,0.4272,0.724631,0.386191,0.631822,0.0765229,0.520558,0.92867,0.191693,0.731499,0.302607,0.446601,0.402266,0.093981,0.113898,0.860774,0.894452,0.408265,0.470303,0.956969,0.287536,0.0868344,0.560242,0.278363,0.969017,0.430694,0.379921,0.908612,0.395741,0.769111,0.207588,0.301038,0.935054,0.868529,0.0847496,0.430308,0.0633205,0.37258,0.036427,0.186689,0.0655466,0.891346,0.304503,0.119806,0.260149,0.55578,0.116924,0.944393,0.421382,0.796648,0.562023,0.125879,0.0883912,0.581668,0.971948,0.837992,0.320609,0.163755,0.123694,0.429302,0.241315,0.329647,0.313945,0.60397,0.456535,0.325037,0.507171,0.396698,0.195514,0.815582,0.893088,0.418967,0.968589,0.473791,0.356519,0.527065,0.33293,0.955105,0.425895,0.319626,0.582859,0.549671,0.616171,0.72665,0.423478,0.90545,0.270521,0.285206,0.76874,0.627032,0.559526,0.803069,0.427338,0.986686,0.748548,0.735701,0.870361,0.472907,0.0849094,0.242251,0.444865,0.0136805,0.348485,0.689705,0.449454,0.239794,0.612301,0.767534,0.191595,0.345636,0.202094,0.280221,0.671602,0.994993,0.654022,0.0464428,0.114486,0.682375,0.0559356,0.782823,0.37533,0.430162,0.361711,0.115859,0.617416,0.0894797,0.0967016,0.319014,0.224718,0.805786,0.0638333,0.728899,0.77172,0.919732,0.321678,0.558236,0.961576,0.0202382,0.113762,0.882842,0.288449,0.630169,0.00763965,0.258411,0.454303,0.157817,0.198637,0.615378,0.645981,0.0943046,0.970496,0.887797,0.745477,0.553701,0.369443,0.241935,0.375715,0.0339382,0.52248,0.638442,0.666961,0.694247,0.357386,0.420947,0.756883,0.479227,0.3318,0.36125,0.0985548,0.679775,0.0143528,0.878817,0.695986,0.114578,0.171595,0.482472,0.257698,0.307127,0.196606,0.290792,0.936077,0.837655,0.95581,0.436703,0.974399,0.57097,0.0826548,0.66165,0.137968,0.832219,0.603863,0.172268,0.694444,0.752841,0.722822,0.709091,0.872584,0.497942,0.440568,0.146424,0.889508,0.136951,0.875933,0.376387,0.02807,0.302773,0.0575066,0.507341,0.206856,0.552927,0.379618,0.463756,0.561146,0.737582,0.737855,0.715185,0.543069,0.170039,0.230807,0.211365,0.546129,0.313132,0.839656,0.792772,0.316404,0.970583,0.599937,0.624782,0.744063,0.0881267,0.872849,0.499158,0.885032,0.947443,0.278646,0.771486,0.779406,0.871385,0.236339,0.473822,0.17348,0.0653554,0.193954,0.668369,0.353193,0.0985911,0.384506,0.018691,0.144094,0.165049,0.558257,0.0629579,0.154755,0.503158,0.547033,0.682176,0.80959,0.588415,0.948603,0.191734,0.0918192,0.336569,0.823297,0.49264,0.520646,0.921281,0.269199,0.63175,0.946044,0.72825,0.51507,0.859171,0.84872,0.796254,0.270982,0.18978,0.276755,0.983134,0.521067,0.324869,0.991136,0.625336,0.0810515,0.826805,0.416408,0.874578,0.344484,0.96607,0.0449412,0.57659,0.0152912,0.598177,0.0506756,0.674419,0.025739,0.95256,0.861443,0.766355,0.51785,0.59895,0.716954,0.431009,0.691945,0.662235,0.130919,0.0447075,0.440361,0.89854,0.0488632,0.466837,0.301633,0.234972,0.51053,0.38536,0.989688,0.12527,0.12642,0.476877,0.498654,0.776468,0.106511,0.221506,0.905823,0.451172,0.954145,0.416365,0.71159,0.493426,0.213998,0.764609,0.966941,0.502495,0.583201,0.121135,0.109888,0.832407,0.0894564,0.0559269,0.0568096,0.113827,0.358706,0.618241,0.049888,0.959838,0.981195,0.613338,0.0106361,0.125403,0.158064,0.381265,0.522531,0.545679,0.389304,0.253456,0.900524,0.697659,0.0181964,0.248907,0.418282,0.827608,0.944705,0.903009,0.0362728,0.815252,0.636247,0.793063,0.11144,0.313343,0.546743,0.969939,0.0561982,0.403771,0.617513,0.849015,0.858208,0.479943,0.215333,0.0423512,0.100329,0.766669,0.950617,0.292422,0.569792,0.254665,0.00518018,0.278042,0.241449,0.469802,0.281726,0.635141,0.848114,0.811475,0.242315,0.617345,0.758494,0.546919,0.153314,0.37368,0.650519,0.663371,0.44266,0.995872,0.22541,0.965255,0.531627,0.0228463,0.68593,0.468907,0.756972,0.419863,0.385426,0.627747,0.334339,0.404198,0.389347,0.764695,0.270423,0.939965,0.408444,0.721241,0.602685,0.402878,0.201606,0.038456,0.850872,0.540902,0.264122,0.205514,0.657618,0.204236,0.0946631,0.797391,0.379935,0.842623,0.421562,0.993349,0.482022,0.0587528,0.304379,0.084873,0.32307,0.634902,0.769617,0.265445,0.227963,0.842763,0.707065,0.96987,0.69916,0.456957,0.682085,0.0514868,0.649483,0.657253,0.312107,0.716717,0.295827,0.51539,0.952396,0.865666,0.705833,0.999378,0.822955,0.591628,0.582078,0.752125,0.533979,0.881956,0.13521,0.107852,0.167898,0.0918695,0.542916,0.857445,0.52268,0.3869,0.81614,0.469433,0.310469,0.948893,0.948223,0.506297,0.800962,0.206852,0.502445,0.430858,0.0878198,0.574306,0.0223826,0.742116,0.38729,0.379333,0.0927566,0.315181,0.911175,0.776643,0.592175,0.0783603,|0.643707,0.557823,0.715726,0.851724,0.382757,0.903081,0.888649,0.18927,0.239517,0.715597,0.268703,0.193216,0.402099,0.534106,0.482333,0.619091,0.972045,0.0872187,0.475016,0.180501,0.752849,0.528688,0.942163,0.91294,0.873223,0.932177,0.730874,0.63026,0.714346,0.475303,0.793202,0.636681,0.535164,0.44948,0.914432,0.293443,0.228932,0.148108,0.657286,0.225982,0.387908,0.625881,0.961365,0.761377,0.00906569,0.352021,0.358449,0.585026,0.0194329,0.969721,0.192608,0.0626641,0.679679,0.318366,0.932303,0.12961,0.96234,0.573343,0.248786,0.464794,0.0522768,0.36873,0.0795002,0.303989,0.546463,0.436595,0.358195,0.796995,0.86677,0.298548,0.716663,0.914481,0.273779,0.0405322,0.10585,0.274356,0.134918,0.0851506,0.318341,0.670173,0.177562,0.437497,0.295092,0.0321979,0.373597,0.354113,0.208104,0.81866,0.655233,0.0187909,0.191872,0.0342929,0.489052,0.15644,0.069203,0.0233877,0.389612,0.058925,0.50052,0.440309,0.460478,0.641859,0.0404108,0.0355276,0.627071,0.131395,0.592017,0.518833,0.484441,0.794257,0.828676,0.150389,0.0722216,0.634085,0.464549,0.234233,0.0700912,0.999871,0.282792,0.547897,0.465142,0.147271,0.348877,0.313718,0.0835833,0.6424,0.0616403,0.731583,0.435507,0.133184,0.00598705,0.622606,0.824342,0.182683,0.829667,0.651125,0.0163381,0.249021,0.276186,0.255778,0.956983,0.965059,0.827868,0.0684162,0.138882,0.489831,0.230112,0.977477,0.934854,0.536874,0.778119,0.234175,0.829515,0.937034,0.620673,0.0660807,0.0552288,0.759812,0.669895,0.839116,0.0575151,0.962777,0.191853,0.428281,0.79175,0.73427,0.748724,0.567581,0.539228,0.0566178,0.925454,0.513115,0.988696,0.858456,0.972553,0.835289,0.487877,0.0558717,0.730091,0.645397,0.322184,0.529108,0.113716,0.266524,0.300104,0.884978,0.400412,0.711892,0.29792,0.407963,0.155567,0.939007,0.991851,0.960212,0.986555,0.774987,0.776272,0.377368,0.740148,0.848529,0.463886,0.615079,0.510075,0.228336,0.779838,0.89809,0.0021897,0.647453,0.678651,0.743684,0.685837,0.399379,0.422229,0.411261,0.865169,0.0680952,0.410719,0.629668,0.147703,0.661024,0.886717,0.533044,0.686026,0.190908,0.869959,0.317229,0.0180323,0.201129,0.390028,0.124632,0.468481,0.10041,0.275699,0.668891,0.627805,0.701298,0.941875,0.707126,0.907079,0.00788814,0.242125,0.371394,0.505745,0.201626,0.288016,0.686646,0.0187495,0.962428,0.782015,0.407957,0.472597,0.803861,0.719175,0.130528,0.663558,0.360392,0.78169,0.0658584,0.150498,0.0185319,0.307008,0.244916,0.288595,0.0174584,0.431933,0.826096,0.174041,0.75736,0.591098,0.277979,0.995338,0.527103,0.549621,0.128698,0.0794583,0.0536445,0.90797,0.0852258,0.603384,0.397065,0.810871,0.0333024,0.486956,0.73552,0.275247,0.208252,0.423684,0.397742,0.480585,0.030812,0.0468978,0.376638,0.153773,0.853012,0.726882,0.393873,0.309047,0.878057,0.253988,0.760417,0.0271616,0.812264,0.828943,0.621101,0.547931,0.500095,0.691167,0.521844,0.476395,0.0739212,0.0968177,0.332911,0.801651,0.0720229,0.295771,0.119532,0.166937,0.535147,0.0244051,0.0601678,0.339164,0.679066,0.552426,0.916065,0.773508,0.735638,0.358893,0.112015,0.889264,0.958369,0.53258,0.246476,0.341935,0.555247,0.385424,0.030875,0.999436,0.697141,0.0178724,0.591507,0.343153,0.941366,0.331255,0.768209,0.341643,0.842325,0.0107405,0.955966,0.848645,0.723507,0.526325,0.799411,0.0292861,0.166609,0.71389,0.380667,0.765515,0.290258,0.133175,0.0416988,0.235085,0.966903,0.989073,0.29119,0.607421,0.902384,0.813146,0.977741,0.605879,0.648274,0.392236,0.438343,0.226174,0.673077,0.649754,0.621674,0.54447,0.202632,0.791845,0.751794,0.380297,0.471675,0.638693,0.89891,0.773834,0.665895,0.101247,0.364167,0.137679,0.130864,0.462585,0.900205,0.779182,0.920376,0.40091,0.239952,0.0126663,0.649751,0.91883,0.0361155,0.515824,0.896719,0.681422,0.0543575,0.774913,0.984883,0.763395,0.961817,0.360514,0.717379,0.185571,0.441737,0.647795,0.511493,0.169397,0.322222,0.119813,0.955782,0.947235,0.83032,0.803086,0.777508,0.499086,0.327052,0.864134,0.74471,0.608198,0.651247,0.775234,0.344005,0.376932,0.297943,0.00128931,0.860254,0.0143258,0.457528,0.947163,0.32094,0.041012,0.114538,0.555,0.536733,0.106622,0.1047,0.205534,0.718348,0.584601,0.481856,0.295531,0.7422,0.429971,0.119992,0.138299,0.677971,0.298663,0.00178671,0.310971,0.324391,0.214806,0.827597,0.0949336,0.20005,0.547222,0.65366,0.0961553,0.145178,0.217258,0.00507337,0.581012,0.279763,0.912151,0.818482,0.131167,0.69998,0.283587,0.484246,0.503265,0.307039,0.916994,0.966053,0.352325,0.53743,0.500579,0.115797,0.453281,0.635732,0.944876,0.73721,0.299588,0.41656,0.941033,0.695341,0.388596,0.63545,0.709806,0.574874,0.684093,0.667614,0.955989,0.706645,0.215979,0.382024,0.330749,0.881351,0.523866,0.0312829,0.268764,0.652627,0.867254,0.11832,0.62428,0.19757,0.617107,0.709947,0.982559,0.669662,0.0559536,0.235406,0.166836,0.0878621,0.349328,0.190166,0.778018,0.794792,0.433936,0.348228,0.930248,0.662496,0.424674,0.892608,0.125928,0.889907,0.327194,0.380082,0.426295,0.248389,0.27714,0.371299,0.456115,0.150405,0.199263,0.828803,0.747885,0.736871,0.445191,0.195332,0.840536,0.746531,0.165141,0.946226,0.7451,0.761191,0.619574,0.00888884,0.131623,0.197159,0.761619,0.542982,0.359387,0.950128,0.780159,0.433068,0.228904,0.324596,0.834947,0.266295,0.811761,0.444704,0.7749,0.942384,0.454815,0.615706,0.17004,0.122744,0.387311,0.411742,0.259042,0.0393527,0.501927,0.115225,0.760523,0.855722,0.908786,0.328596,0.674638,0.0882171,0.740297,0.832557,0.0630275,0.746755,0.471512,0.847183,0.0725167,0.563043,0.595673,0.306468,0.669272,0.287268,0.640214,0.0864204,0.65058,0.929827,0.152104,0.828457,0.0621033,0.400203,0.630243,0.753431,0.520128,0.704119,0.114578,0.656703,0.383166,0.0318329,0.843822,0.211675,0.34614,0.119008,0.622053,0.0213323,0.954618,0.694692,0.117176,0.81981,0.713262,0.99767,0.447359,0.0416213,0.77832,0.678019,0.468894,0.374566,0.889234,0.575853,0.0374328,0.685469,0.810472,0.324565,0.398253,0.750201,0.750413,0.103195,0.3021,0.197055,0.384542,0.115137,0.424753,0.900881,0.315571,0.951401,0.166555,0.0688648,0.450019,0.759076,0.491066,0.569565,0.944325,0.297801,0.68956,0.934618,0.511937,0.580768,0.475527,0.157191,0.931353,0.981523,0.91488,0.747528,0.374715,0.80401,0.140244,0.282312,0.897334,0.378033,0.321049,0.436896,0.199296,0.0509152,0.00972426,0.360196,0.850039,0.167978,0.380832,0.995902,0.702638,0.563892,0.203772,0.0189956,0.803506,0.911626,0.877813,0.834004,0.775042,0.00243682,0.251311,0.923189,0.925572,0.241381,0.173142,0.945343,0.986071,0.736903,0.816792,0.508025,0.985921,0.367741,0.295554,0.054562,0.0901859,0.916619,0.672677,0.241255,0.980676,0.482157,0.208532,0.113721,0.683764,0.714128,0.188497,0.298043,0.821597,0.175963,0.237366,0.671954,0.0732585,0.511743,0.00330198,0.848736,0.537524,0.944555,0.191727,0.379786,0.881054,0.214171,0.673723,0.192952,0.936117,0.733969,0.352582,0.725423,0.0493279,0.355064,0.848172,0.104963,0.747851,0.305555,0.760357,0.530388,0.817055,0.64601,0.0205531,0.113264,0.292833,0.19403,0.291196,0.753268,0.732285,0.132307,0.73159,0.856017,0.607515,0.911012,0.0580691,0.862756,0.657669,0.0628247,0.338453,0.247334,0.671741,0.568365,0.944672,0.753561,0.0904498,0.938409,0.914004,0.78298,0.9671,0.654262,0.107707,0.405467,0.891898,0.325092,0.513018,0.339747,0.7304,0.21743,0.86576,0.203915,0.0824158,0.683193,0.310739,0.871513,0.705882,0.548267,0.0843104,0.638438,0.545919,0.324298,0.251856,0.791701,0.171862,0.402951,0.220403,0.611175,0.0326281,0.639407,0.924929,0.508096,0.851421,0.590063,0.97,0.470843,0.611512,0.282539,0.782486,0.871746,0.813572,0.0378334,0.79434,0.0642968,0.95717,0.930046,0.0633129,0.409792,0.836373,0.974873,0.172742,0.0292926,0.782398,0.0370666,0.636669,0.925428,0.715105,0.413448,0.639572,0.775038,0.749239,0.234069,0.210875,0.725594,0.975835,0.498197,0.875291,0.995417,0.033657,0.989278,0.129305,0.681407,0.0972757,0.0123212,0.78989,0.464534,0.91825,0.11592,0.970479,0.0552541,0.0882913,0.617501,0.17992,0.249071,0.568313,0.593867,0.723751,0.909457,0.309744,0.74889,0.74395,0.236675,0.241845,0.796786,0.977293,0.496239,0.835118,0.769722,0.811074,0.95432,0.574646,0.644418,0.756865,0.720701,0.301695,0.500944,0.357501,0.0166987,0.122012,0.181265,0.904056,0.112762,0.620177,0.140382,0.701643,0.689691,0.349243,0.583085,0.98746,0.720805,0.603728,0.621812,0.0324699,0.0412165,0.122392,0.527776,0.264943,0.761788,0.831245,0.312193,0.375158,0.717066,0.951623,0.990465,0.687484,0.167272,0.992425,0.591699,0.570433,0.25248,0.514034,0.150887,0.779811,0.225155,0.422798,0.171674,0.947625,0.287242,0.654713,0.896252,0.145095,0.402899,0.689701,0.858591,0.893733,0.342229,0.787762,0.973809,0.379792,0.675216,0.887158,0.285818,0.412136,0.974392,0.344786,0.476417,0.316322,0.722539,0.468443,0.77573,0.444099,0.516496,0.258801,0.180688,0.998739,0.189688,0.622382,0.460228,0.156352,0.927393,0.958662,0.609981,0.899717,0.931956,0.0341206,0.524173,0.241975,0.792201,0.0156077,0.434532,0.118577,0.137315,0.825711,0.594365,0.0645229,0.0940698,0.0683005,0.484532,0.211023,0.191355,0.928163,0.284439,0.815689,0.0797932,0.280859,0.413765,0.942791,0.596159,0.566882,0.696662,0.202634,0.816784,0.155852,0.249384,0.202773,0.364663,0.448984,0.326947,0.372399,0.374222,0.217752,0.823228,0.234588,0.017511,|0.906147,0.839037,0.48804,0.655486,0.105502,0.443719,0.0571554,0.124962,0.289261,0.107834,0.522716,0.738678,0.854302,0.44069,0.53139,0.335271,0.689312,0.541495,0.0386246,0.427031,0.979642,0.745012,0.458579,0.529171,0.292321,0.791727,0.681072,0.586768,0.3443,0.661699,0.691016,0.949952,0.44207,0.514084,0.274698,0.865209,0.356874,0.742459,0.891511,0.950359,0.908412,0.345928,0.609443,0.483915,0.653946,0.616051,0.859276,0.0679743,0.408701,0.754573,0.925748,0.682345,0.225487,0.422932,0.771695,0.282415,0.523611,0.347051,0.52133,0.947564,0.305006,0.553288,0.358022,0.122058,0.602519,0.77285,0.858809,0.24325,0.159781,0.277248,0.350908,0.346317,0.445906,0.805494,0.289865,0.150137,0.890755,0.0420188,0.312334,0.728842,0.135085,0.280191,0.01148,0.81553,0.583433,0.594067,0.464388,0.0506634,0.333784,0.416222,0.948896,0.814525,0.684934,0.166548,0.421272,0.249076,0.693236,0.0251067,0.0966814,0.192985,0.0412344,0.807411,0.883005,0.518657,0.445023,0.261012,0.71338,0.640654,0.169213,0.0400637,0.27456,0.87574,0.501837,0.833362,0.71368,0.729552,0.946435,0.903417,0.332511,0.202346,0.939006,0.0487299,0.666735,0.215667,0.810921,0.444693,0.121847,0.938146,0.944452,0.813998,0.940586,0.881206,0.138222,0.70525,0.470412,0.712896,0.986581,0.62438,0.539927,0.533582,0.449366,0.726241,0.719839,0.477435,0.428181,0.165286,0.912049,0.821893,0.568832,0.909962,0.587361,0.867855,0.0693161,0.0160807,0.820866,0.342887,0.736751,0.38948,0.759408,0.107712,0.383787,0.20023,0.559512,0.795957,0.940643,0.991479,0.0543772,0.179371,0.74319,0.712143,0.00557345,0.849307,0.642096,0.738257,0.857291,0.726709,0.729287,0.727745,0.762797,0.241378,0.719285,0.273422,0.988114,0.937293,0.836544,0.58528,0.172401,0.134095,0.251709,0.114625,0.675077,0.176054,0.105952,0.00648564,0.271675,0.612367,0.0183047,0.128146,0.27621,0.291753,0.517618,0.773896,0.218186,0.155317,0.958893,0.435678,0.880988,0.542981,0.712022,0.0967985,0.456929,0.995326,0.303229,0.339906,0.211036,0.861423,0.845932,0.932849,0.927043,0.369755,0.32662,0.500917,0.544165,0.598818,0.846966,0.240857,0.916214,0.460593,0.94227,0.204517,0.546005,0.462649,0.974121,0.953038,0.545352,0.51131,0.208706,0.902947,0.551692,0.642172,0.200978,0.574026,0.723289,0.31049,0.852065,0.541916,0.341955,0.930328,0.637053,0.784735,0.131286,0.961623,0.88569,0.966956,0.0392954,0.902874,0.104852,0.264428,0.243086,0.587677,0.49247,0.0702248,0.970169,0.0496322,0.712702,0.897353,0.977958,0.695602,0.637043,0.891751,0.0635985,0.074838,0.518708,0.753511,0.568167,0.848895,0.539771,0.15619,0.933498,0.206185,0.705526,0.485684,0.895436,0.13466,0.731663,0.148365,0.221784,0.945536,0.623654,0.82954,0.295546,0.0662107,0.602831,0.178601,0.153803,0.109537,0.696523,0.748894,0.51279,0.279508,0.259493,0.637448,0.459456,0.79546,0.527302,0.447003,0.233709,0.0695315,0.0582379,0.0134689,0.419777,0.022429,0.385888,0.486933,0.837453,0.00303459,0.606798,0.480891,0.67774,0.946116,0.959215,0.899687,0.662911,0.368307,0.78136,0.124276,0.919525,0.269489,0.706264,0.656952,0.207386,0.170416,0.829084,0.768006,0.0104544,0.532735,0.0599656,0.95781,0.333033,0.397766,0.493897,0.0919471,0.83229,0.916257,0.0327099,0.837579,0.504321,0.828321,0.360952,0.238413,0.305161,0.41646,0.974888,0.333187,0.8483,0.804945,0.121457,0.836937,0.6488,0.191923,0.59271,0.439961,0.413642,0.0602621,0.213908,0.580935,0.551793,0.163694,0.235873,0.825525,0.0589116,0.47235,0.637677,0.683597,0.705631,0.806947,0.762833,0.472406,0.770999,0.277939,0.2464,0.0429783,0.669859,0.403187,0.331969,0.805471,0.360307,0.500634,0.34231,0.60589,0.461791,0.102331,0.2117,0.623325,0.0839013,0.817364,0.377277,0.315408,0.290703,0.443925,0.0942489,0.399023,0.785997,0.349554,0.670013,0.869165,0.322276,0.0128573,0.836403,0.169862,0.864683,0.0231903,0.428732,0.639001,0.339932,0.17523,0.953808,0.133849,0.00152564,0.902202,0.705759,0.193655,0.219797,0.180977,0.93747,0.610013,0.499349,0.446762,0.755644,0.376196,0.0350718,0.776654,0.824102,0.678151,0.35504,0.35193,0.537959,0.43172,0.293977,0.0446224,0.531747,0.641228,0.0678224,0.706505,0.17561,0.180911,0.303738,0.834061,0.153755,0.572019,0.136641,0.993182,0.0921959,0.532385,0.686699,0.996974,0.0998536,0.887841,0.41521,0.218381,0.693612,0.222289,0.378988,0.815684,0.679486,0.273327,0.861402,0.824273,0.641872,0.495109,0.979607,0.19071,0.649548,0.495905,0.0132479,0.489227,0.060345,0.102285,0.00887895,0.244145,0.701287,0.842775,0.252388,0.711673,0.527478,0.311659,0.300869,0.880574,0.55051,0.0674652,0.403242,0.121746,0.978573,0.184673,0.719776,0.506029,0.411036,0.313208,0.689699,0.559855,0.546271,0.955712,0.632921,0.859897,0.170137,0.217836,0.0743977,0.514017,0.000317514,0.270929,0.937717,0.0986047,0.920949,0.861831,0.1759,0.626372,0.589608,0.812812,0.73152,0.389715,0.725162,0.728224,0.902552,0.283086,0.648123,0.192635,0.889073,0.276372,0.559313,0.132886,0.401376,0.997556,0.381655,0.450563,0.734801,0.617425,0.174552,0.973514,0.706227,0.532136,0.371702,0.750355,0.73194,0.000838161,0.463069,0.575767,0.254595,0.509514,0.195084,0.531028,0.378617,0.918705,0.997282,0.906351,0.672099,0.450903,0.797529,0.698276,0.259951,0.738928,0.587984,0.488866,0.803296,0.434837,0.639069,0.841271,0.931477,0.322976,0.989131,0.848129,0.109623,0.328447,0.562851,0.669385,0.811086,0.3387,0.0353761,0.641655,0.928182,0.395981,0.289244,0.733045,0.98115,0.534904,0.27664,0.123045,0.837642,0.923597,0.603159,0.926595,0.18099,0.220607,0.384316,0.315825,0.365006,0.558273,0.356363,0.973614,0.788752,0.946539,0.0564529,0.249323,0.000819981,0.159362,0.454263,0.249555,0.195868,0.863414,0.344453,0.452793,0.303941,0.125061,0.474188,0.377563,0.932296,0.215425,0.578637,0.102925,0.53276,0.618905,0.999064,0.662034,0.806128,0.324827,0.784071,0.448802,0.325287,0.260248,0.4782,0.621049,0.227115,0.229677,0.439585,0.0960174,0.0915543,0.484631,0.394589,0.197328,0.794818,0.453403,0.931706,0.302327,0.167404,0.937309,0.849278,0.603833,0.902766,0.709889,0.213633,0.0748104,0.441349,0.646787,0.102085,0.0730855,0.790972,0.306114,0.12764,0.0104575,0.310669,0.868679,0.884349,0.724978,0.769899,0.678127,0.0560771,0.331891,0.386892,0.402242,0.639329,0.569316,0.694737,0.184386,0.533645,0.919619,0.296732,0.32778,0.529649,0.849087,0.20025,0.0322997,0.264873,0.935124,0.77732,0.700159,0.429434,0.484514,0.306457,0.98179,0.926128,0.829269,0.898659,0.735635,0.232212,0.833046,0.628367,0.247131,0.452738,0.24342,0.0182472,0.561027,0.411107,0.235579,0.296314,0.139781,0.88209,0.7599,0.669357,0.597612,0.158912,0.370854,0.738238,0.650208,0.530843,0.207146,0.595537,0.858853,0.700571,0.778119,0.54141,0.905617,0.654006,0.446737,0.807802,0.86319,0.337963,0.0296365,0.0502818,0.496539,0.337823,0.262321,0.256111,0.408971,0.584617,0.688218,0.357318,0.627065,0.450943,0.448341,0.503159,0.234639,0.827123,0.424074,0.881461,0.106762,0.564016,0.739129,0.842456,0.540635,0.807953,0.1431,0.766616,0.808683,0.442453,0.188725,0.108993,0.527119,0.64858,0.73379,0.00576121,0.93264,0.578538,0.345129,0.394637,0.158154,0.851607,0.982236,0.311448,0.405987,0.51589,0.13547,0.396287,0.531919,0.648158,0.960729,0.900341,0.684427,0.457129,0.822124,0.256445,0.646176,0.478681,0.872717,0.0220734,0.922612,0.531642,0.673315,0.840328,0.625932,0.765789,0.306686,0.0287259,0.668198,0.537804,0.120052,0.411217,0.336739,0.266627,0.645399,0.791458,0.29838,0.0988712,0.464783,0.0346228,0.554763,0.820831,0.0449216,0.119695,0.252531,0.865721,0.255589,0.232645,0.896186,0.381839,0.90342,0.337933,0.259255,0.219238,0.629624,0.894269,0.0905892,0.416542,0.829784,0.168535,0.164337,0.809825,0.679606,0.117867,0.697006,0.567577,0.767971,0.215025,0.481951,0.466706,0.732316,0.882557,0.815776,0.23638,0.864284,0.0473487,0.955942,0.843576,0.803837,0.42289,0.934261,0.349876,0.445527,0.301677,0.84766,0.647113,0.794501,0.0396242,0.911655,0.605932,0.385597,0.241222,0.981728,0.859157,0.679154,0.221157,0.806883,0.81851,0.347379,0.334958,0.608136,0.616193,0.232777,0.935213,0.0398596,0.380501,0.659382,0.604186,0.0723933,0.0238425,0.957104,0.288675,0.24007,0.714979,0.0570009,0.713603,0.720121,0.18361,0.980456,0.19844,0.366479,0.526247,0.453965,0.78848,0.232076,0.871729,0.413269,0.247789,0.963228,0.466019,0.66763,0.550274,0.0514166,0.391011,0.900579,0.167548,0.881502,0.147924,0.75014,0.224766,0.0138269,0.668094,0.231732,0.490534,0.274981,0.833423,0.955785,0.493124,0.810432,0.785811,0.0542865,0.71458,0.762391,0.546028,0.845271,0.667541,0.336235,0.547433,0.453702,0.633302,0.37079,0.85151,0.0441685,0.385763,0.0812784,0.40652,0.188265,0.0165532,0.771879,0.667593,0.609224,0.532335,0.356612,0.571822,0.684671,0.0455438,0.260805,0.581211,0.944358,0.163584,0.366733,0.012963,0.587097,0.413902,0.481029,0.119425,0.331443,0.771943,0.591145,0.054836,0.215018,0.520017,0.600179,0.899412,0.582286,0.420585,0.813358,0.983972,0.781865,0.156473,0.0649592,0.92971,0.868187,0.543054,0.536688,0.993262,0.295342,0.205645,0.770833,0.00997263,0.968499,0.758082,0.604927,0.219583,0.602426,0.259018,0.793236,0.782105,0.772626,0.356197,0.973063,0.794055,0.981046,0.860863,0.341349,0.700043,0.0400677,0.753033,0.908849,0.00322539,0.16761,0.104951,0.3727,0.137952,0.155056,0.977127,0.616531,|0.741682,0.124824,0.412241,0.745122,0.612978,0.649578,0.666991,0.0633799,0.155164,0.207614,0.836894,0.320244,0.0742379,0.854958,0.450148,0.392615,0.274064,0.133281,0.535557,0.907188,0.724913,0.704232,0.0319845,0.42874,0.259468,0.077602,0.68748,0.865145,0.955857,0.846365,0.395503,0.767034,0.759873,0.861257,0.398532,0.179779,0.154077,0.955242,0.601549,0.414086,0.417141,0.574635,0.490323,0.134863,0.7739,0.0844196,0.0497659,0.817532,0.788909,0.185466,0.913486,0.989223,0.111739,0.736093,0.845007,0.167176,0.40837,0.133595,0.695467,0.0798526,0.265185,0.197488,0.155989,0.0397758,0.529779,0.900635,0.643981,0.704841,0.419348,0.867492,0.672759,0.701762,0.696601,0.10789,0.483102,0.559829,0.959742,0.564738,0.146405,0.729392,0.913045,0.22217,0.58585,0.00284803,0.501073,0.651036,0.612553,0.660473,0.772008,0.192274,0.276788,0.717677,0.581671,0.63641,0.918889,0.579946,0.523208,0.890096,0.0890738,0.572875,0.356679,0.166773,0.76115,0.599653,0.630296,0.639092,0.136496,0.796549,0.429662,0.570614,0.0548234,0.266145,0.80404,0.716977,0.457104,0.713002,0.78368,0.56281,0.488386,0.703386,0.173491,0.726071,0.363385,0.154299,0.0686695,0.347883,0.674491,0.763532,0.605196,0.0162372,0.95277,0.982611,0.20392,0.4935,0.495957,0.0481145,0.638596,0.155481,0.873659,0.22272,0.906429,0.575138,0.5628,0.81828,0.267328,0.269619,0.613444,0.126715,0.781091,0.370953,0.0185633,0.301559,0.26248,0.234461,0.662323,0.512916,0.649793,0.044506,0.0330299,0.948309,0.196256,0.63336,0.944192,0.560892,0.754632,0.260999,0.825498,0.687579,0.160789,0.484405,0.109609,0.427557,0.441713,0.167833,0.0188972,0.101906,0.948677,0.892038,0.740653,0.176049,0.190814,0.828146,0.734571,0.672714,0.919093,0.691518,0.711155,0.339944,0.137262,0.956473,0.897296,0.412577,0.943209,0.833925,0.495768,0.645679,0.203964,0.00699866,0.126285,0.517133,0.908135,0.597632,0.236596,0.363321,0.902593,0.570312,0.866521,0.232148,0.376351,0.793398,0.0440426,0.211567,0.711225,0.92105,0.703365,0.915028,0.397949,0.5535,0.838726,0.547728,0.208146,0.564307,0.434679,0.577353,0.137278,0.75552,0.673181,0.255719,0.411368,0.100475,0.922076,0.471689,0.11835,0.247806,0.00781143,0.117575,0.516925,0.233581,0.60536,0.444851,0.240894,0.704182,0.0692329,0.959246,0.973599,0.135104,0.0526782,0.0592533,0.00240815,0.703497,0.296349,0.142509,0.449569,0.81314,0.474046,0.185841,0.31665,0.881756,0.188516,0.624931,0.0973173,0.826173,0.358896,0.459299,0.771357,0.807851,0.715365,0.766375,0.193423,0.371303,0.249999,0.596521,0.443237,0.987936,0.406915,0.925772,0.968227,0.469772,0.244675,0.350488,0.526301,0.277715,0.56549,0.920103,0.728617,0.761629,0.684548,0.90427,0.977151,0.0666184,0.643837,0.047875,0.191075,0.755382,0.0201141,0.518592,0.307264,0.495845,0.376076,0.851714,0.986802,0.280158,0.125511,0.570761,0.962833,0.0767632,0.295277,0.361476,0.383543,0.450076,0.409777,0.303434,0.669738,0.941504,0.494888,0.0362881,0.240561,0.212692,0.0832173,0.758868,0.090039,0.922924,0.112929,0.278577,0.0864557,0.307368,0.662683,0.907787,0.5404,0.714683,0.247964,0.137114,0.999257,0.32719,0.860993,0.0649493,0.134508,0.344273,0.71739,0.403131,0.919451,0.00685436,0.241683,0.964838,0.907189,0.994117,0.284528,0.0485552,0.18691,0.604758,0.936168,0.923523,0.0841041,0.555379,0.588896,0.696285,0.381455,0.424048,0.775451,0.140324,0.47998,0.839252,0.487861,0.570177,0.395485,0.555355,0.590729,0.0746784,0.505886,0.781493,0.833252,0.671346,0.968169,0.408159,0.516404,0.522196,0.264893,0.509928,0.509616,0.100771,0.314513,0.694203,0.428848,0.703194,0.752479,0.10476,0.715354,0.321364,0.370872,0.07488,0.816492,0.331882,0.495963,0.0438839,0.484325,0.69777,0.325973,0.724847,0.850491,0.077284,0.0901105,0.706801,0.241837,0.0553014,0.20307,0.323518,0.900986,0.542281,0.284592,0.880303,0.135479,0.0556286,0.279894,0.581786,0.736929,0.854989,0.00207406,0.429894,0.23504,0.750015,0.0523742,0.562642,0.248382,0.233412,0.184074,0.311244,0.307973,0.398363,0.0481034,0.710787,0.476566,0.387717,0.917939,0.896286,0.959493,0.284125,0.205845,0.521956,0.463183,0.857298,0.00906056,0.0376548,0.881299,0.761636,0.952896,0.0328218,0.142531,0.346623,0.0654005,0.765531,0.213983,0.400046,0.0795394,0.0812163,0.389204,0.284611,0.442164,0.408798,0.758531,0.391342,0.628006,0.011781,0.923155,0.601466,0.303286,0.816773,0.960588,0.412714,0.328443,0.362661,0.783312,0.0194858,0.617401,0.809372,0.0852975,0.285031,0.75173,0.809671,0.146638,0.616111,0.903947,0.39645,0.385757,0.278059,0.628052,0.899078,0.0990539,0.766104,0.187102,0.100116,0.103913,0.740923,0.423784,0.0311486,0.99099,0.594346,0.181913,0.595994,0.881791,0.771454,0.589046,0.163268,0.0695344,0.239657,0.745474,0.334695,0.0519012,0.20551,0.301106,0.155249,0.41653,0.878047,0.797044,0.285189,0.0113851,0.280464,0.592568,0.719467,0.155067,0.463685,0.775019,0.762144,0.601431,0.988077,0.144661,0.31304,0.523206,0.594339,0.471904,0.578181,0.0569773,0.890176,0.971189,0.56294,0.0273001,0.603084,0.734499,0.544034,0.0792707,0.833681,0.351639,0.227297,0.241871,0.698164,0.984729,0.958853,0.318003,0.218876,0.839009,0.0186057,0.296227,0.986296,0.134102,0.0747012,0.680095,0.841971,0.496842,0.668709,0.608269,0.846944,0.096656,0.123021,0.154664,0.657977,0.238787,0.770495,0.463933,0.349329,0.222873,0.96039,0.500348,0.132174,0.855666,0.251506,0.188646,0.316068,0.339755,0.8755,0.714238,0.455594,0.0950116,0.795783,0.305735,0.144941,0.330538,0.769859,0.114267,0.277374,0.632698,0.0203187,0.490419,0.424164,0.292826,0.775231,0.374803,0.0379596,0.78691,0.38804,0.783772,0.986414,0.666614,0.577588,0.530707,0.0037086,0.652363,0.90364,0.969353,0.539627,0.0963998,0.619691,0.462317,0.999922,0.491758,0.713267,0.631849,0.362554,0.650157,0.792811,0.962227,0.806953,0.151135,0.562959,0.615387,0.172466,0.462897,0.794747,0.661325,0.491959,0.371078,0.387886,0.935073,0.661822,0.959591,0.520159,0.878514,0.908185,0.487194,0.628751,0.821354,0.060819,0.898733,0.468184,0.468424,0.559136,0.0970979,0.665818,0.859452,0.750314,0.0502281,0.925708,0.925263,0.856628,0.300678,0.341568,0.885348,0.148313,0.457991,0.418992,0.869195,0.596734,0.434971,0.531498,0.257374,0.0343354,0.6,0.12799,0.503648,0.381815,0.370785,0.144551,0.104474,0.51521,0.0712374,0.0198786,0.215646,0.844309,0.452584,0.802985,0.527819,0.313337,0.468125,0.678359,0.290741,0.62974,0.892188,0.382397,0.706321,0.627734,0.920091,0.723912,0.00905859,0.507211,0.882075,0.867031,0.583291,0.930146,0.899241,0.936476,0.670542,0.247114,0.131406,0.362066,0.796398,0.234035,0.480205,0.721535,0.487514,0.825531,0.427214,0.56597,0.603744,0.276517,0.734269,0.102772,0.409763,0.276838,0.782755,0.851425,0.465059,0.534396,0.384902,0.0841445,0.735402,0.748786,0.844666,0.71299,0.753214,0.0045079,0.518862,0.216361,0.227229,0.727459,0.709364,0.314288,0.651113,0.561581,0.120912,0.189761,0.431405,0.108609,0.0164446,0.286076,0.818887,0.927571,0.195837,0.899621,0.940568,0.725496,0.184758,0.551547,0.277767,0.849529,0.121879,0.684696,0.0915636,0.819747,0.23544,0.331446,0.0649391,0.75931,0.263176,0.663207,0.570029,0.47422,0.62152,0.577175,0.670002,0.518425,0.0189441,0.743343,0.252624,0.877969,0.47197,0.979172,0.971262,0.599571,0.077321,0.238241,0.278759,0.602598,0.618027,0.855884,0.172399,0.790028,0.221383,0.875435,0.0903277,0.161345,0.596289,0.483099,0.91258,0.592252,0.871094,0.363067,0.0718271,0.242756,0.504243,0.961391,0.0677665,0.326487,0.987251,0.122934,0.75259,0.930174,0.69657,0.269366,0.976217,0.588044,0.0483148,0.931595,0.482866,0.886372,0.876375,0.772175,0.32214,0.503748,0.501886,0.580494,0.942524,0.706372,0.638285,0.683838,0.93764,0.692073,0.45947,0.0929272,0.0638845,0.285694,0.14918,0.391347,0.31188,0.0420704,0.293707,0.164233,0.614838,0.0854675,0.038447,0.949767,0.472925,0.441491,0.789683,0.470375,0.0722719,0.540124,0.649622,0.165764,0.0207618,0.69462,0.700044,0.790556,0.0397679,0.899144,0.0813849,0.822577,0.692496,0.066799,0.00639492,0.120787,0.679732,0.26041,0.679268,0.54289,0.587069,0.684041,0.638923,0.119687,0.0803408,0.505114,0.362806,0.465535,0.223088,0.879444,0.842916,0.78523,0.180038,0.54129,0.215588,0.619803,0.893371,0.615111,0.274656,0.227727,0.481006,0.710102,0.698836,0.19476,0.795444,0.701826,0.908724,0.0720633,0.873755,0.475044,0.069128,0.159983,0.769149,0.507775,0.0840001,0.268827,0.0167097,0.913912,0.594131,0.362873,0.39808,0.606919,0.295998,0.616377,0.282057,0.514236,0.168288,0.62902,0.359523,0.862948,0.320659,0.257356,0.299975,0.694521,0.747181,0.300276,0.0395362,0.594171,0.0868257,0.83649,0.780383,0.0171719,0.994638,0.240036,0.216531,0.35983,0.930948,0.84654,0.332293,0.35387,0.874237,0.14698,0.0136397,0.607612,0.317682,0.76046,0.879857,0.992674,0.0832008,0.541864,0.959835,0.0104972,0.650622,0.195961,0.873704,0.522258,0.321655,0.718912,0.519803,0.943455,0.943388,0.023185,0.759776,0.270838,0.293666,0.749256,0.0311792,0.0458332,0.000615954,0.489895,0.711283,0.204872,0.590434,0.03986,0.353687,0.621646,0.167907,0.978479,0.639922,0.291103,0.615974,0.135164,0.000470459,0.53419,0.80982,0.738844,0.764652,0.333794,0.824793,0.341539,0.893582,0.529907,0.964741,0.695969,0.0283634,0.924713,0.636574,0.586977,0.868716,0.0833902,0.334927,0.651551,0.937086,0.96088,0.478826,0.971179,0.29073,0.484002,|0.227534,0.204771,0.74283,0.0931843,0.0795082,0.373719,0.41267,0.561067,0.41809,0.197937,0.650758,0.0522804,0.796564,0.941637,0.113923,0.882747,0.794593,0.629298,0.00248188,0.570355,0.13089,0.442946,0.0470654,0.87967,0.156313,0.925115,0.230415,0.970848,0.977426,0.221329,0.224765,0.933355,0.0713015,0.512306,0.928684,0.550267,0.370118,0.953063,0.531568,0.9517,0.00395155,0.371069,0.733173,0.396678,0.709718,0.285484,0.729299,0.313459,0.749381,0.444434,0.684367,0.710923,0.199535,0.738433,0.875427,0.743023,0.355848,0.09952,0.924316,0.359312,0.387192,0.74913,0.847324,0.109652,0.323578,0.516867,0.718734,0.775942,0.103645,0.365258,0.873734,0.727191,0.85147,0.153666,0.797499,0.318761,0.42331,0.436523,0.701613,0.0996342,0.966693,0.265937,0.250875,0.0476416,0.595617,0.444822,0.467079,0.733643,0.772844,0.318479,0.854695,0.859231,0.844678,0.481382,0.293091,0.240606,0.240503,0.694787,0.196018,0.201305,0.744832,0.675089,0.94966,0.384842,0.0396691,0.186602,0.731817,0.197096,0.771356,0.324863,0.197334,0.759523,0.500741,0.760993,0.167247,0.246735,0.8438,0.6136,0.692097,0.844155,0.269685,0.38948,0.500275,0.886125,0.501771,0.146274,0.0279471,0.204851,0.194504,0.496961,0.329593,0.956825,0.759356,0.504669,0.318262,0.163365,0.103022,0.104024,0.327401,0.256676,0.763766,0.100478,0.563858,0.605657,0.65387,0.675213,0.550125,0.70458,0.585626,0.17948,0.651101,0.49211,0.379246,0.606933,0.940713,0.808366,0.272358,0.966141,0.549351,0.261214,0.080421,0.0819306,0.421715,0.304234,0.28165,0.945077,0.444542,0.0502154,0.215021,0.979486,0.289588,0.452737,0.199225,0.429538,0.179067,0.948395,0.240573,0.677701,0.0421587,0.229666,0.258143,0.514934,0.128169,0.177337,0.359784,0.878806,0.257917,0.780122,0.424235,0.946478,0.176819,0.197623,0.937998,0.19171,0.0581913,0.487707,0.454202,0.206277,0.260685,0.774608,0.962568,0.780285,0.605931,0.356895,0.280976,0.986301,0.341921,0.757163,0.822639,0.457329,0.944356,0.119212,0.847683,0.730645,0.974265,0.729854,0.525745,0.952554,0.4379,0.00241709,0.055926,0.391748,0.345433,0.356061,0.667394,0.63128,0.281722,0.197889,0.954831,0.404785,0.199552,0.554075,0.475532,0.117269,0.790322,0.983718,0.0835794,0.63591,0.0919831,0.30132,0.996063,0.263329,0.988219,0.353221,0.672582,0.735754,0.528541,0.361403,0.774965,0.0349841,0.502751,0.839521,0.678371,0.479375,0.389942,0.352208,0.686698,0.441701,0.0173433,0.815262,0.691097,0.0956622,0.906037,0.110479,0.390005,0.168469,0.00439513,0.3209,0.52151,0.144153,0.786214,0.447558,0.129672,0.105991,0.794374,0.53433,0.0201296,0.775527,0.0974838,0.689993,0.335201,0.561406,0.623818,0.311879,0.818468,0.613062,0.166319,0.00870812,0.544606,0.360666,0.573973,0.514827,0.895102,0.484682,0.846374,0.822907,0.445146,0.92194,0.905677,0.752254,0.414497,0.672868,0.248941,0.595355,0.506211,0.120131,0.567035,0.108413,0.543364,0.603758,0.361505,0.330307,0.986389,0.589919,0.375154,0.54486,0.253702,0.00738811,0.302557,0.588897,0.542967,0.298634,0.118138,0.14844,0.964015,0.318872,0.718868,0.92854,0.251582,0.429797,0.161177,0.311777,0.401567,0.448333,0.982798,0.170647,0.905875,0.992616,0.263621,0.584091,0.585679,0.471124,0.770859,0.912157,0.166776,0.832051,0.791227,0.440132,0.603523,0.178757,0.989507,0.786465,0.424078,0.830454,0.0909447,0.633143,0.188263,0.605957,0.617007,0.819265,0.0914159,0.464349,0.0582865,0.16453,0.97011,0.611526,0.00966036,0.576546,0.063961,0.0258618,0.712155,0.943384,0.691579,0.339522,0.729732,0.540303,0.722105,0.653489,0.910945,0.124924,0.151291,0.426508,0.864039,0.309341,0.399759,0.0273163,0.698795,0.0761688,0.847392,0.924602,0.251597,0.388597,0.35875,0.655742,0.32496,0.1019,0.890341,0.53682,0.627685,0.433122,0.201789,0.0048818,0.583286,0.94757,0.733509,0.746549,0.482444,0.98078,0.239877,0.998801,0.596153,0.129848,0.510256,0.871261,0.135723,0.874189,0.060948,0.456501,0.876169,0.603059,0.532928,0.19264,0.446233,0.0235779,0.902062,0.62096,0.587989,0.204432,0.81357,0.0224192,0.666224,0.378439,0.890586,0.0984587,0.991237,0.0490687,0.814553,0.483118,0.558111,0.711381,0.173301,0.211528,0.013475,0.311553,0.029072,0.536374,0.378369,0.165562,0.613059,0.843418,0.40067,0.182997,0.671144,0.249424,0.117624,0.746389,0.618117,0.87053,0.138465,0.230904,0.985823,0.929735,0.635194,0.172445,0.934826,0.198871,0.228561,0.501334,0.672436,0.7986,0.101381,0.617979,0.859495,0.436995,0.0117732,0.430152,0.169374,0.779127,0.641921,0.39225,0.836752,0.238824,0.660162,0.667632,0.652921,0.57836,0.303828,0.539999,0.417816,0.740507,0.176014,0.89065,0.796659,0.428964,0.644331,0.15109,0.341598,0.172739,0.00985873,0.650255,0.510002,0.282153,0.809236,0.124091,0.353732,0.466074,0.466011,0.159313,0.83235,0.660763,0.467464,0.53273,0.0624884,0.560218,0.655685,0.590639,0.27106,0.668547,0.314051,0.0921169,0.120179,0.422087,0.123959,0.935184,0.821346,0.58906,0.691005,0.678092,0.170605,0.599202,0.884897,0.806211,0.965629,0.535384,0.390157,0.0712053,0.381443,0.773974,0.302256,0.811759,0.29573,0.746039,0.0693048,0.619681,0.208668,0.219396,0.364912,0.831942,0.129968,0.937701,0.238704,0.456346,0.648625,0.417066,0.438519,0.119351,0.737485,0.91774,0.431414,0.814597,0.453091,0.691476,0.202316,0.177289,0.857933,0.613719,0.159676,0.742537,0.776797,0.36447,0.684669,0.170725,0.896668,0.918566,0.00693887,0.788378,0.679353,0.335683,0.22847,0.126736,0.0709066,0.435687,0.659003,0.900324,0.356504,0.83968,0.694507,0.640898,0.289575,0.0520662,0.26886,0.801851,0.501587,0.0408744,0.358764,0.991583,0.747717,0.431105,0.692966,0.75687,0.411721,0.945804,0.325439,0.685901,0.139444,0.145545,0.723312,0.537613,0.0635224,0.257152,0.951661,0.801229,0.894288,0.210787,0.125849,0.727697,0.455891,0.58413,0.0895704,0.751084,0.490066,0.0296178,0.660381,0.381467,0.698712,0.252744,0.364438,0.952087,0.689105,0.879709,0.998312,0.319971,0.328615,0.549001,0.853915,0.380402,0.666218,0.990879,0.380204,0.89965,0.561969,0.798159,0.674879,0.247688,0.940092,0.383044,0.451647,0.636829,0.360191,0.232121,0.397928,0.11889,0.347598,0.592598,0.313033,0.797917,0.65145,0.689678,0.813029,0.934631,0.798928,0.97753,0.352978,0.756517,0.231504,0.597173,0.922775,0.309851,0.862002,0.436714,0.994405,0.447496,0.615523,0.765757,0.534353,0.599867,0.68274,0.24271,0.586295,0.69506,0.44302,0.884078,0.263284,0.507263,0.948538,0.684432,0.735922,0.354391,0.684928,0.630147,0.570286,0.238767,0.876738,0.3523,0.288123,0.99837,0.852021,0.117635,0.301625,0.909518,0.205998,0.572293,0.19377,0.416453,0.998508,0.576266,0.37865,0.630961,0.803256,0.117823,0.577213,0.761935,0.804572,0.245868,0.0484855,0.393486,0.719465,0.730667,0.804356,0.870002,0.347563,0.709666,0.750441,0.584378,0.784351,0.735643,0.697443,0.437315,0.972348,0.612383,0.668648,0.489771,0.00160754,0.772834,0.251962,0.108273,0.795521,0.403987,0.34556,0.634386,0.753477,0.660652,0.577021,0.730032,0.336613,0.893598,0.400628,0.247,0.384998,0.954673,0.987325,0.429727,0.499819,0.863389,0.748628,0.879148,0.255521,0.150251,0.212014,0.349107,0.863003,0.354154,0.960271,0.573744,0.478088,0.414573,0.0838165,0.261693,0.855741,0.475533,0.85173,0.226928,0.428009,0.669098,0.370105,0.589343,0.413214,0.600808,0.529249,0.0840122,0.613689,0.0427251,0.333689,0.132335,0.976524,0.179033,0.0704314,0.026238,0.934563,0.0236355,0.150731,0.347107,0.647032,0.520046,0.946644,0.100079,0.961351,0.442912,0.800705,0.537076,0.771535,0.754087,0.863339,0.69477,0.157443,0.696664,0.395031,0.157262,0.502405,0.840378,0.0310291,0.217056,0.270529,0.853368,0.790872,0.288524,0.279519,0.60787,0.240674,0.835182,0.886379,0.421923,0.591912,0.621562,0.539049,0.33031,0.496557,0.236682,0.16687,0.915225,0.838217,0.988527,0.154924,0.0252505,0.0574729,0.947275,0.773942,0.299078,0.086951,0.529821,0.318946,0.129452,0.102892,0.819523,0.12548,0.442853,0.630373,0.429751,0.95994,0.239804,0.700694,0.0130212,0.185172,0.934486,0.371549,0.52585,0.588705,0.169585,0.867475,0.166237,0.0250537,0.377593,0.65929,0.54676,0.633751,0.155363,0.45792,0.811868,0.663027,0.074945,0.496596,0.647982,0.432741,0.773801,0.405447,0.0713122,0.270303,0.0787362,0.179704,0.808171,0.901464,0.978947,0.511823,0.251563,0.57651,0.334927,0.378005,0.930786,0.330225,0.628832,0.231453,0.242074,0.414962,0.283237,0.543479,0.166638,0.113492,0.31595,0.672346,0.320765,0.491841,0.587752,0.35986,0.826037,0.917739,0.34088,0.911799,0.402459,0.99999,0.65142,0.387818,0.732716,0.682511,0.661713,0.934204,0.934605,0.277898,0.415342,0.782321,0.706645,0.938517,0.404943,0.706675,0.493745,0.348787,0.9294,0.85589,0.114476,0.845344,0.577259,0.731967,0.236611,0.384573,0.96397,0.904261,0.650744,0.340532,0.524308,0.517641,0.298857,0.00867039,0.318561,0.631178,0.122912,0.13817,0.314935,0.38317,0.0451404,0.635037,0.322372,0.0815018,0.762741,0.0423967,0.21174,0.0413041,0.140255,0.147469,0.267187,0.0587075,0.164195,0.336783,0.31614,0.374174,0.948391,0.0923668,0.0395198,0.552419,0.211641,0.563121,0.331267,0.608381,0.210808,0.447503,0.150245,0.339215,0.83388,0.180518,0.582138,0.519999,0.787034,0.861528,0.18996,0.151262,0.983775,0.573801,0.462121,0.641838,0.803998,0.846896,0.0287519,0.727132,0.577394,0.449366,0.362924,0.717357,0.895417,0.419769,0.990844,0.684946,0.124109,|0.647653,0.357853,0.52484,0.484069,0.334116,0.401947,0.266748,0.778509,0.798201,0.180506,0.123202,0.239988,0.318265,0.444895,0.803903,0.901758,0.58181,0.319447,0.500027,0.583394,0.344592,0.645239,0.449089,0.414238,0.662534,0.684405,0.216077,0.197785,0.450229,0.262971,0.659685,0.971367,0.523433,0.743283,0.762257,0.46007,0.589299,0.323044,0.762828,0.135786,0.651069,0.516469,0.813631,0.97043,0.629278,0.953716,0.9243,0.796749,0.198684,0.254604,0.870738,0.974189,0.949047,0.848018,0.644327,0.365524,0.138335,0.393495,0.761836,0.204374,0.000900149,0.927242,0.560092,0.296418,0.536369,0.0371702,0.255047,0.389178,0.52849,0.24356,0.546012,0.124969,0.765122,0.230098,0.621083,0.720413,0.891838,0.466444,0.910603,0.33792,0.843732,0.0942792,0.99899,0.305511,0.145261,0.0256641,0.43058,0.76885,0.922701,0.0760597,0.6716,0.680665,0.437445,0.754794,0.946402,0.588977,0.113787,0.213065,0.488429,0.826462,0.365951,0.504868,0.121341,0.0302895,0.875648,0.0457786,0.208911,0.996616,0.264989,0.759603,0.642706,0.357108,0.438077,0.789332,0.0288032,0.310756,0.92596,0.521178,0.550211,0.691394,0.683586,0.367591,0.794736,0.683365,0.205214,0.0358593,0.0832825,0.005656,0.0369287,0.738863,0.245065,0.621792,0.505668,0.876158,0.774132,0.604461,0.0458967,0.168763,0.928125,0.30224,0.412305,0.538828,0.314674,0.00238752,0.975876,0.616585,0.299827,0.837451,0.384576,0.672747,0.837643,0.979377,0.287666,0.939711,0.405003,0.0283033,0.578971,0.685722,0.29677,0.395556,0.749481,0.87795,0.346966,0.574891,0.936899,0.279013,0.590097,0.661967,0.59071,0.897282,0.639404,0.19543,0.745917,0.494411,0.143911,0.357896,0.033284,0.80674,0.427523,0.91006,0.577858,0.285127,0.667103,0.0390745,0.713757,0.363852,0.33357,0.991048,0.712998,0.491495,0.812047,0.904941,0.033906,0.198966,0.24953,0.594028,0.788456,0.179585,0.529103,0.489098,0.0917595,0.633717,0.57425,0.896959,0.977592,0.624216,0.680512,0.549127,0.532285,0.325758,0.597784,0.0432555,0.00709289,0.849565,0.274929,0.066025,0.0482452,0.876422,0.6346,0.708344,0.66086,0.482921,0.00983143,0.454973,0.573083,0.636339,0.373307,0.117759,0.947938,0.0402027,0.878661,0.285255,0.463982,0.0393072,0.0304143,0.834973,0.752371,0.197914,0.941883,0.158873,0.0959048,0.947102,0.539815,0.724073,0.0327181,0.57065,0.252953,0.495832,0.557844,0.566274,0.313956,0.0352563,0.0854822,0.984944,0.0805889,0.634993,0.940364,0.254108,0.0333593,0.535732,0.0462805,0.478781,0.501715,0.193675,0.961705,0.326195,0.128587,0.292706,0.103882,0.174785,0.884775,0.790758,0.611855,0.987804,0.546458,0.0547629,0.00415111,0.210075,0.322686,0.113711,0.140159,0.463976,0.309531,0.621891,0.216333,0.696015,0.830658,0.482991,0.509679,0.389406,0.183466,0.11802,0.482608,0.195724,0.0584137,0.150063,0.857087,0.510638,0.44928,0.761443,0.168374,0.916433,0.48955,0.548021,0.578821,0.568801,0.681121,0.680545,0.650499,0.441313,0.183416,0.668295,0.708562,0.632219,0.92143,0.994385,0.905226,0.320378,0.0885162,0.634013,0.241402,0.493231,0.956128,0.441402,0.944023,0.531808,0.277991,0.648259,0.429735,0.790675,0.0975684,0.754168,0.473141,0.295437,0.598126,0.943066,0.611358,0.0750269,0.198318,0.832181,0.837292,0.651195,0.512346,0.806983,0.362357,0.797077,0.0993888,0.76548,0.40578,0.563885,0.825728,0.655534,0.879541,0.125112,0.459452,0.504003,0.970636,0.00210267,0.215295,0.638276,0.7313,0.211041,0.680686,0.202288,0.0882114,0.120058,0.782054,0.148879,0.529189,0.968078,0.342536,0.663268,0.0252182,0.788454,0.973656,0.252725,0.595988,0.536353,0.994581,0.715054,0.515701,0.741719,0.724245,0.0148526,0.255967,0.0812307,0.361065,0.627931,0.342573,0.469843,0.90407,0.336585,0.806837,0.560112,0.383187,0.293367,0.994513,0.394121,0.0418758,0.0687172,0.832819,0.184753,0.876215,0.973922,0.105592,0.926108,0.954594,0.472546,0.476189,0.03944,0.783679,0.883847,0.146669,0.644967,0.898784,0.803724,0.00136572,0.735468,0.978052,0.379338,0.142511,0.407317,0.629611,0.260783,0.335876,0.054015,0.918523,0.39427,0.928576,0.972406,0.847094,0.184131,0.262242,0.38242,0.259244,0.0589966,0.177575,0.31148,0.594569,0.373024,0.819248,0.47518,0.754056,0.490531,0.848349,0.299375,0.0378496,0.823884,0.638764,0.488336,0.843097,0.428419,0.339914,0.979175,0.419668,0.63037,0.359028,0.590486,0.496159,0.605719,0.0206594,0.610185,0.515988,0.0171278,0.702815,0.559398,0.5244,0.933173,0.911317,0.585592,0.441287,0.62303,0.508417,0.313507,0.337331,0.970257,0.829473,0.989236,0.630288,0.895393,0.820946,0.247524,0.235299,0.0297337,0.658933,0.671,0.236259,0.903079,0.520389,0.0308963,0.285673,0.474231,0.422835,0.982936,0.0152968,0.688982,0.0957234,0.815867,0.197951,0.974474,0.947589,0.164469,0.986976,0.588926,0.483005,0.205373,0.178688,0.0095616,0.171861,0.767948,0.101464,0.968446,0.407426,0.854067,0.0656131,0.710794,0.401421,0.435704,0.320683,0.253961,0.302523,0.242307,0.460717,0.809641,0.908639,0.598363,0.817088,0.00515616,0.372344,0.823929,0.842556,0.0827271,0.967517,0.544467,0.929011,0.210789,0.97078,0.639811,0.133055,0.158695,0.301956,0.216792,0.959448,0.0605941,0.899602,0.311675,0.0428125,0.596407,0.109589,0.454398,0.419821,0.782503,0.840034,0.294002,0.911637,0.865905,0.182427,0.202134,0.333427,0.750527,0.636194,0.634517,0.817327,0.487369,0.929158,0.496929,0.20073,0.700776,0.131881,0.344372,0.07572,0.432294,0.772879,0.728336,0.74274,0.968336,0.524196,0.772553,0.85438,0.515806,0.405042,0.917272,0.958052,0.889152,0.000654161,0.0506234,0.367382,0.323855,0.945275,0.45306,0.0542381,0.924634,0.815519,0.87645,0.834574,0.182879,0.635431,0.865376,0.0929754,0.240889,0.310731,0.708737,0.892748,0.594599,0.172055,0.441977,0.937155,0.45817,0.653969,0.528719,0.82042,0.30535,0.0116799,0.753675,0.239113,0.727519,0.601633,0.284841,0.160558,0.740925,0.638557,0.984326,0.419506,0.216919,0.61422,0.676601,0.183503,0.836499,0.453027,0.00809103,0.0637404,0.370514,0.0902727,0.464423,0.826075,0.248617,0.374622,0.163659,0.53454,0.339014,0.358276,0.730067,0.0511625,0.180486,0.236992,0.767885,0.116716,0.976131,0.0490808,0.156339,0.388411,0.821805,0.868627,0.631049,0.383101,0.727157,0.799519,0.31537,0.477448,0.77193,0.96513,0.251844,0.402793,0.655891,0.636893,0.582805,0.223304,0.196465,0.0775412,0.567943,0.138088,0.854708,0.448744,0.352865,0.810535,0.691833,0.274162,0.760306,0.682393,0.364267,0.565382,0.717047,0.989362,0.192612,0.0738807,0.623108,0.702027,0.537082,0.978409,0.232772,0.823263,0.570618,0.783191,0.91348,0.0767179,0.187707,0.187411,0.976746,0.575168,0.354179,0.0661787,0.257813,0.0822492,0.359747,0.80023,0.557332,0.488057,0.973714,0.603711,0.944791,0.30643,0.187104,0.250863,0.900817,0.260695,0.341801,0.362841,0.627542,0.239666,0.298519,0.933839,0.561169,0.642583,0.863334,0.716874,0.772418,0.67072,0.483777,0.52733,0.591185,0.245439,0.907711,0.35662,0.869877,0.931975,0.532899,0.531859,0.58928,0.0354033,0.32043,0.95513,0.743072,0.340823,0.707627,0.606776,0.822683,0.607843,0.926722,0.271776,0.804734,0.973958,0.236127,0.825759,0.762583,0.36608,0.867968,0.366831,0.784439,0.415283,0.250495,0.257268,0.589795,0.530066,0.848586,0.542469,0.0416034,0.599181,0.282124,0.540941,0.934677,0.646731,0.41729,0.341652,0.272221,0.981469,0.180392,0.845045,0.146702,0.743171,0.259202,0.0906387,0.2627,0.168788,0.0524872,0.176454,0.149548,0.72951,0.0078243,0.249762,0.941631,0.345157,0.527913,0.086589,0.0293208,0.148707,0.500444,0.394832,0.197634,0.236489,0.534986,0.937339,0.00809127,0.350707,0.278817,0.829386,0.793626,0.307067,0.821284,0.168063,0.789451,0.690195,0.950114,0.9909,0.541211,0.71969,0.0478314,0.0507579,0.0489821,0.789763,0.365042,0.375027,0.188845,0.625898,0.691925,0.268888,0.421146,0.517059,0.734238,0.177025,0.329669,0.161182,0.703159,0.727623,0.213226,0.847479,0.253838,0.595714,0.364693,0.542397,0.320773,0.811116,0.148611,0.189608,0.193534,0.932,0.0170493,0.255776,0.824077,0.508656,0.564877,0.197261,0.458754,0.951572,0.10485,0.112679,0.42905,0.0603203,0.706627,0.624974,0.244844,0.340565,0.203763,0.510298,0.343031,0.379977,0.874837,0.193399,0.346754,0.893484,0.686044,0.463873,0.950453,0.151372,0.297551,0.327963,0.439792,0.438369,0.17199,0.0641077,0.833992,0.633579,0.0881425,0.538776,0.294714,0.727884,0.468712,0.35817,0.12745,0.851262,0.396584,0.476967,0.582974,0.413347,0.192364,0.685608,0.865837,0.0642478,0.203602,0.517391,0.330181,0.786042,0.824751,0.0885298,0.836311,0.91019,0.268096,0.238742,0.0687926,0.319927,0.495429,0.76739,0.959528,0.371907,0.335638,0.768221,0.643702,0.366866,0.0344083,0.469521,0.326596,0.55612,0.690228,0.263424,0.766935,0.099669,0.662505,0.810506,0.882107,0.650893,0.199722,0.181092,0.447355,0.408721,0.0394853,0.723498,0.00253057,0.87035,0.114194,0.384274,0.206846,0.550167,0.624763,0.494989,0.450011,0.714773,0.728528,0.448547,0.276722,0.861672,0.532223,0.654075,0.0864416,0.174307,0.162297,0.989849,0.207405,0.651739,0.227179,0.505469,0.658831,0.535485,0.971824,0.659514,0.235591,0.202369,0.603822,0.318864,0.839281,0.677628,0.693664,0.301747,0.131273,0.140002,0.923695,0.996139,0.389094,0.575664,0.0791607,0.0877959,0.447645,0.970432,0.7694,0.474182,0.136518,0.704681,0.486452,0.573457,0.885317,0.301489,0.299285,0.115107,0.594703,0.665917,0.331965,0.0231772,0.162689,0.45051,0.903866,0.248716,0.0807149,|0.311121,0.610488,0.352053,0.722798,0.0826541,0.590831,0.786988,0.927393,0.675806,0.222119,0.592874,0.326202,0.478101,0.210333,0.901563,0.82401,0.795057,0.502289,0.128901,0.608738,0.507684,0.854335,0.524928,0.621446,0.648316,0.89491,0.286109,0.820179,0.677738,0.502651,0.723607,0.852102,0.712764,0.286397,0.48858,0.377984,0.0678582,0.467288,0.668911,0.713583,0.592804,0.662484,0.500084,0.325754,0.44285,0.92103,0.0811754,0.458338,0.244552,0.366404,0.970907,0.0565457,0.47423,0.702926,0.367108,0.598257,0.29469,0.913867,0.161354,0.983041,0.843505,0.396506,0.448718,0.590292,0.13871,0.0429406,0.876152,0.597898,0.697874,0.124017,0.516418,0.829856,0.205125,0.3043,0.523467,0.582775,0.842164,0.427361,0.0313491,0.0747432,0.58967,0.295838,0.522748,0.233177,0.293326,0.979979,0.942561,0.0844392,0.245564,0.35958,0.331122,0.255273,0.994002,0.764765,0.163302,0.991094,0.674653,0.253326,0.146833,0.712189,0.0195291,0.610865,0.0696989,0.328634,0.514053,0.281513,0.219751,0.0892119,0.506767,0.198935,0.135642,0.696171,0.183994,0.942216,0.301565,0.643929,0.662232,0.637402,0.679651,0.424123,0.604201,0.411209,0.411486,0.703278,0.396717,0.578254,0.181284,0.938075,0.299986,0.276942,0.169652,0.208013,0.0998302,0.0529009,0.883564,0.748385,0.294813,0.460627,0.444687,0.840042,0.283832,0.595615,0.426328,0.0258418,0.529229,0.442914,0.306755,0.701242,0.453327,0.621362,0.027267,0.570858,0.33052,0.438634,0.760825,0.148254,0.739221,0.335859,0.978298,0.297086,0.828085,0.888331,0.648118,0.0273274,0.857252,0.128099,0.817955,0.875761,0.104831,0.56956,0.341312,0.420058,0.886521,0.0485516,0.534502,0.0519035,0.548758,0.0856771,0.938021,0.341219,0.804457,0.565436,0.67039,0.958832,0.869473,0.12771,0.630181,0.370306,0.0664535,0.199607,0.874754,0.385761,0.813557,0.727846,0.412539,0.394908,0.577263,0.118369,0.63457,0.0730836,0.381068,0.887903,0.627552,0.555519,0.644922,0.366756,0.487695,0.0112585,0.583873,0.120602,0.97626,0.818695,0.586605,0.960728,0.643721,0.874176,0.456551,0.926743,0.548206,0.801301,0.267934,0.428106,0.471648,0.983883,0.0825625,0.222858,0.872605,0.536337,0.432492,0.881018,0.662894,0.338197,0.406829,0.585892,0.239586,0.0737873,0.232324,0.877063,0.926116,0.781842,0.0904458,0.986568,0.540598,0.888187,0.103055,0.433313,0.320543,0.679526,0.86763,0.0215256,0.020598,0.220749,0.355875,0.392184,0.817555,0.141016,0.987137,0.895335,0.454939,0.540838,0.0652428,0.451395,0.0531942,0.826398,0.832088,0.511149,0.697302,0.0227388,0.791099,0.42434,0.746129,0.994098,0.221563,0.771229,0.214054,0.570593,0.872634,0.848766,0.644967,0.365603,0.276969,0.574711,0.444991,0.46529,0.233144,0.85241,0.221404,0.868874,0.113659,0.943906,0.30512,0.235414,0.520309,0.734031,0.232248,0.79658,0.0847976,0.0433432,0.121063,0.0850919,0.0992841,0.361698,0.831042,0.542763,0.243753,0.59122,0.515973,0.780041,0.931034,0.5423,0.973858,0.89055,0.568578,0.764364,0.24624,0.709124,0.879634,0.070228,0.870796,0.205527,0.863885,0.266004,0.398249,0.618412,0.200034,0.148068,0.63627,0.594531,0.885256,0.734086,0.115167,0.396643,0.576298,0.346958,0.709757,0.18041,0.95387,0.0524104,0.643536,0.44318,0.386212,0.560215,0.931101,0.724362,0.59152,0.743558,0.906175,0.275345,0.328631,0.425228,0.554129,0.852456,0.00267732,0.463184,0.396568,0.444831,0.663576,0.161332,0.00953525,0.693339,0.522927,0.967762,0.118655,0.870495,0.0935538,0.21762,0.0760686,0.222359,0.14508,0.240484,0.866082,0.441842,0.536453,0.847925,0.960528,0.542903,0.260338,0.876444,0.597394,0.291449,0.765573,0.0339364,0.772509,0.51948,0.483059,0.606956,0.641822,0.755028,0.231684,0.236875,0.165459,0.341774,0.249657,0.970922,0.32076,0.241733,0.62724,0.317466,0.806871,0.176742,0.415236,0.255641,0.114829,0.281315,0.423063,0.397775,0.763567,0.902525,0.241943,0.0248361,0.710296,0.0959585,0.692379,0.85503,0.897515,0.88868,0.106881,0.0517832,0.752965,0.433867,0.736709,0.102826,0.497193,0.0261732,0.214709,0.879398,0.0897241,0.977156,0.0735828,0.940504,0.00153416,0.251434,0.869266,0.145219,0.149789,0.808719,0.847628,0.103199,0.234375,0.564696,0.620095,0.951999,0.284769,0.441714,0.208697,0.0827538,0.363533,0.326612,0.288718,0.243822,0.755439,0.569084,0.634543,0.266726,0.867431,0.999604,0.562275,0.659039,0.949689,0.58187,0.577576,0.616365,0.118103,0.199905,0.461889,0.122144,0.535892,0.607525,0.996079,0.350191,0.152516,0.193746,0.355289,0.417217,0.83509,0.767332,0.873613,0.298712,0.129143,0.17536,0.0521238,0.0730222,0.0512045,0.618231,0.25935,0.560903,0.982348,0.238381,0.472071,0.697737,0.445238,0.267957,0.453395,0.173833,0.976907,0.211805,0.300861,0.866889,0.743465,0.720581,0.72507,0.318188,0.389686,0.569475,0.988564,0.438259,0.452076,0.378767,0.0183342,0.706321,0.675916,0.877904,0.959841,0.746171,0.69812,0.371248,0.61754,0.430696,0.0208599,0.870904,0.499436,0.820827,0.781353,0.304374,0.292669,0.38016,0.062278,0.107031,0.638058,0.853469,0.983664,0.210548,0.358001,0.692646,0.934352,0.279831,0.505976,0.11703,0.393249,0.520116,0.0726371,0.936196,0.583447,0.548292,0.548705,0.7647,0.954477,0.747288,0.586873,0.0887737,0.994497,0.388087,0.976468,0.588051,0.459176,0.132322,0.834991,0.205708,0.785466,0.861664,0.678564,0.540353,0.448101,0.160794,0.574396,0.648655,0.862198,0.597802,0.767758,0.988216,0.0719022,0.209084,0.390427,0.570442,0.552733,0.876158,0.157071,0.0187896,0.786644,0.805832,0.450132,0.265956,0.466196,0.434225,0.776194,0.38893,0.0807087,0.012391,0.0586295,0.756842,0.441008,0.039968,0.75433,0.955583,0.947194,0.701002,0.661238,0.0451953,0.117435,0.357556,0.870913,0.274783,0.641696,0.588731,0.250607,0.68121,0.817657,0.552919,0.824293,0.581809,0.661851,0.470046,0.522138,0.441698,0.752429,0.92013,0.1999,0.968139,0.33607,0.664641,0.946187,0.287533,0.425071,0.841105,0.534999,0.799083,0.100167,0.0527664,0.593293,0.977872,0.402686,0.387724,0.615109,0.740239,0.326267,0.524252,0.360729,0.574425,0.615671,0.333477,0.685465,0.394026,0.33725,0.770576,0.290392,0.0733134,0.208151,0.17697,0.161096,0.9374,0.80404,0.243006,0.514293,0.688893,0.188247,0.58624,0.0641377,0.251918,0.345547,0.958811,0.295959,0.109272,0.0534074,0.884428,0.840047,0.756236,0.56051,0.614476,0.468101,0.860458,0.736636,0.701822,0.248948,0.143779,0.845672,0.207302,0.860998,0.690972,0.576629,0.242955,0.240993,0.958764,0.48657,0.00528419,0.072561,0.884703,0.782538,0.373182,0.609806,0.152968,0.708209,0.28772,0.237007,0.447436,0.51544,0.131925,0.520829,0.962174,0.97782,0.671856,0.816711,0.324412,0.53764,0.699097,0.228157,0.309124,0.236286,0.947141,0.0898887,0.226078,0.862403,0.673422,0.0618733,0.805451,0.910873,0.0525872,0.222541,0.528693,0.97383,0.485641,0.664739,0.833562,0.949053,0.907888,0.565573,0.491505,0.377491,0.0627675,0.531303,0.885146,0.57152,0.59964,0.720658,0.747706,0.927503,0.0901368,0.954348,0.179019,0.517536,0.57055,0.2096,0.598504,0.913068,0.779978,0.7531,0.196189,0.220603,0.344118,0.127284,0.89708,0.771744,0.50362,0.434568,0.598533,0.129068,0.385787,0.238167,0.0672725,0.258771,0.642352,0.806824,0.00914681,0.203179,0.880009,0.967982,0.508271,0.052773,0.111695,0.193574,0.860057,0.746132,0.273719,0.705697,0.424449,0.427559,0.837618,0.372665,0.881841,0.550088,0.691445,0.669406,0.878317,0.0535476,0.293637,0.656962,0.671371,0.432691,0.310653,0.957547,0.871991,0.444776,0.630965,0.381704,0.519606,0.712462,0.836034,0.56574,0.717206,0.966888,0.696081,0.218365,0.685879,0.330568,0.972567,0.362386,0.875195,0.297179,0.992095,0.392584,0.168076,0.24058,0.964822,0.76122,0.00497073,0.83732,0.300561,0.419348,0.147236,0.47952,0.547032,0.379385,0.00538915,0.117581,0.38345,0.902194,0.0242531,0.011685,0.786125,0.592023,0.44444,0.895491,0.369801,0.370128,0.507476,0.248339,0.0446837,0.703333,0.373777,0.0274678,0.580065,0.0832031,0.0287759,0.00381833,0.355653,0.253402,0.993826,0.854132,0.311442,0.290895,0.202537,0.285995,0.405372,0.611534,0.140622,0.848,0.220627,0.735136,0.839025,0.121479,0.50578,0.0206057,0.424752,0.366555,0.912272,0.583729,0.261797,0.88422,0.830129,0.408367,0.381097,0.475595,0.442645,0.652477,0.116232,0.370683,0.765144,0.385401,0.37532,0.541322,0.810201,0.809271,0.779268,0.434438,0.191952,0.767835,0.9252,0.0947533,0.607543,0.819206,0.531145,0.750422,0.674426,0.657375,0.35053,0.328495,0.831884,0.159869,0.192296,0.175404,0.289235,0.00115913,0.291556,0.084372,0.792361,0.149771,0.934263,0.876183,0.565691,0.242424,0.305084,0.0681983,0.913018,0.212882,0.945282,0.357223,0.701979,0.880056,0.357181,0.629056,0.569435,0.8161,0.709857,0.800839,0.0862612,0.645618,0.862626,0.567912,0.831943,0.119932,0.570666,0.712634,0.529846,0.228481,0.806275,0.271439,0.752748,0.846825,0.576641,0.273113,0.902816,0.502578,0.00593567,0.46146,0.998246,0.150185,0.308426,0.805009,0.451623,0.179107,0.268263,0.444217,0.000410199,0.0946561,0.575938,0.642868,0.854038,0.672343,0.0924909,0.285871,0.616624,0.909799,0.465636,0.666246,0.946802,0.126422,0.801396,0.224503,0.620535,0.3666,0.486863,0.0395096,0.290014,0.761616,0.182828,0.949697,0.467297,0.200116,0.733787,0.89788,0.777218,0.0324992,0.768234,0.480458,0.147712,0.543765,0.978586,0.988531,0.822603,0.931937,0.478599,0.548597,0.820771,0.795383,0.311522,0.0222607,0.376406,0.159458,0.697711,0.08595,0.387684,|0.796515,0.0163678,0.864812,0.0236629,0.163233,0.621401,0.258736,0.833132,0.641526,0.807939,0.979301,0.125253,0.142956,0.228875,0.260292,0.717572,0.883572,0.676806,0.376989,0.150652,0.256963,0.497157,0.264456,0.182151,0.687729,0.728457,0.957487,0.58058,0.0913529,0.295777,0.461527,0.400944,0.288553,0.0614734,0.493382,0.677739,0.120641,0.377688,0.0918015,0.926227,0.251964,0.439011,0.245993,0.00918192,0.345167,0.248537,0.00999153,0.603448,0.421497,0.710682,0.0261008,0.958335,0.586232,0.828859,0.302179,0.789962,0.87581,0.0506335,0.808975,0.476114,0.639426,0.47682,0.745124,0.0263677,0.963734,0.933488,0.4178,0.431133,0.919025,0.358194,0.795656,0.716086,0.726434,0.875494,0.00177181,0.866663,0.849764,0.108093,0.149158,0.456759,0.394196,0.82044,0.547549,0.553698,0.634396,0.411815,0.220773,0.269826,0.95435,0.7977,0.68853,0.507847,0.0574219,0.849583,0.885161,0.708502,0.560445,0.678018,0.607881,0.95226,0.569565,0.538851,0.271561,0.386705,0.586608,0.268228,0.803739,0.501843,0.21405,0.435288,0.557411,0.0955567,0.430633,0.104766,0.228152,0.774942,0.0675278,0.604978,0.925596,0.770613,0.194001,0.618679,0.0428945,0.483055,0.875874,0.33647,0.715893,0.729156,0.654974,0.983334,0.130704,0.966668,0.422303,0.282906,0.583973,0.594359,0.0673574,0.985621,0.953693,0.0469492,0.956574,0.68331,0.768277,0.436802,0.736525,0.127461,0.688992,0.0230476,0.674134,0.573504,0.878732,0.990264,0.709754,0.685272,0.180537,0.104893,0.416263,0.807396,0.952919,0.864715,0.823886,0.158894,0.977003,0.83141,0.161074,0.859246,0.373211,0.878573,0.127334,0.0860215,0.19199,0.443327,0.63014,0.384807,0.920152,0.472886,0.706408,0.182768,0.473246,0.615177,0.231736,0.239737,0.3357,0.849404,0.385903,0.20753,0.0809762,0.00446779,0.353384,0.574434,0.116666,0.122239,0.330925,0.221446,0.920634,0.529208,0.911566,0.0648285,0.646257,0.809191,0.457127,0.0184386,0.774236,0.477111,0.106423,0.424693,0.144433,0.943831,0.577514,0.0316077,0.427516,0.833674,0.454425,0.723617,0.788461,0.713097,0.158567,0.536257,0.225835,0.293157,0.604459,0.963403,0.161292,0.750764,0.346806,0.110917,0.855299,0.87528,0.428042,0.727314,0.00903916,0.928814,0.364631,0.343577,0.14114,0.413094,0.933647,0.824079,0.180446,0.105913,0.133982,0.140626,0.598696,0.33154,0.676089,0.557464,0.464649,0.951207,0.832107,0.273212,0.101447,0.576733,0.383928,0.699016,0.903961,0.806791,0.502693,0.461389,0.426577,0.677188,0.392611,0.748388,0.788057,0.0927297,0.830158,0.258696,0.387093,0.631815,0.393637,0.330722,0.0347552,0.727569,0.211342,0.219588,0.409092,0.601437,0.351783,0.214513,0.360546,0.402534,0.739587,0.0742999,0.847796,0.13048,0.499633,0.234879,0.550495,0.129552,0.9052,0.780918,0.454328,0.0122752,0.159661,0.953227,0.908388,0.542769,0.8278,0.0711301,0.963158,0.0140991,0.92212,0.662335,0.622726,0.338044,0.468812,0.226707,0.441724,0.960831,0.418184,0.797382,0.544325,0.456199,0.799701,0.558311,0.708285,0.480056,0.173158,0.955308,0.273629,0.635592,0.98934,0.788265,0.817899,0.60867,0.145389,0.507838,0.880368,0.270812,0.268336,0.179357,0.497439,0.263549,0.259448,0.888071,0.628441,0.208828,0.400608,0.163032,0.142422,0.309495,0.0427947,0.385804,0.443642,0.970413,0.324961,0.850418,0.406782,0.0513999,0.605762,0.0747202,0.576341,0.0737321,0.00696164,0.843279,0.471755,0.0855796,0.257058,0.967448,0.463436,0.137449,0.400431,0.734903,0.206839,0.880259,0.257505,0.383281,0.46741,0.956354,0.38809,0.104574,0.476891,0.748917,0.232519,0.453104,0.638923,0.309084,0.355896,0.477,0.111307,0.632122,0.798293,0.389665,0.359128,0.30421,0.305725,0.835927,0.0877691,0.612399,0.0400086,0.0200964,0.0281903,0.764415,0.905671,0.435852,0.795137,0.99938,0.294833,0.476415,0.230173,0.649075,0.273688,0.218024,0.72214,0.567144,0.261441,0.353397,0.880487,0.36415,0.644501,0.894561,0.938274,0.69313,0.386675,0.149313,0.658018,0.495795,0.6162,0.0309361,0.474851,0.607629,0.822661,0.674765,0.0637859,0.649713,0.699623,0.911571,0.889759,0.179157,0.658478,0.500826,0.0151463,0.298556,0.981571,0.329087,0.421027,0.385983,0.610895,0.0209425,0.333031,0.6903,0.514659,0.0028742,0.857202,0.248529,0.00177175,0.806147,0.0633564,0.765606,0.463984,0.887497,0.0527578,0.715017,0.484849,0.68883,0.103046,0.361373,0.97783,0.817998,0.795939,0.191106,0.347928,0.386024,0.883395,0.508682,0.463935,0.299375,0.415671,0.0397763,0.532971,0.428195,0.0208482,0.713468,0.434226,0.103564,0.180026,0.786183,0.172335,0.667254,0.0887511,0.0397905,0.0996397,0.991811,0.707399,0.858305,0.786066,0.611009,0.109056,0.49438,0.308472,0.274334,0.570056,0.249687,0.527902,0.275501,0.415929,0.201255,0.692458,0.242817,0.566014,0.151925,0.207826,0.9185,0.123056,0.569878,0.278332,0.647901,0.801617,0.0328455,0.598104,0.203036,0.432793,0.984299,0.606517,0.776246,0.624494,0.553523,0.85412,0.15478,0.229735,0.118148,0.0872403,0.612427,0.0113167,0.259542,0.201845,0.385217,0.49042,0.606572,0.838248,0.58656,0.60346,0.729628,0.794704,0.35407,0.411898,0.0607927,0.236414,0.85833,0.452331,0.73687,0.016822,0.974757,0.264603,0.33937,0.0306664,0.897891,0.264019,0.228016,0.710211,0.369247,0.785334,0.690044,0.392404,0.258178,0.0873976,0.202247,0.99604,0.445082,0.31785,0.88591,0.984501,0.316447,0.94071,0.38457,0.494993,0.837128,0.928642,0.660542,0.131545,0.126637,0.238032,0.0655368,0.214106,0.0619217,0.351555,0.429136,0.858638,0.694577,0.022014,0.094997,0.139039,0.209779,0.684652,0.701422,0.181994,0.561855,0.191625,0.646862,0.995506,0.818584,0.933032,0.544392,0.261497,0.56248,0.928023,0.084805,0.292608,0.473499,0.600982,0.304638,0.155875,0.360651,0.916167,0.601668,0.891739,0.544352,0.354972,0.964619,0.0375239,0.024131,0.82248,0.706381,0.86189,0.684054,0.211309,0.59206,0.41262,0.663045,0.00861204,0.334885,0.0191277,0.893249,0.420956,0.461874,0.0600814,0.358713,0.890258,0.956012,0.317617,0.169288,0.649119,0.371837,0.403436,0.862069,0.851631,0.848773,0.252295,0.130809,0.782075,0.181887,0.485339,0.0610638,0.272546,0.60513,0.897483,0.372464,0.665,0.901449,0.512083,0.708089,0.145087,0.808623,0.79882,0.349581,0.135722,0.156393,0.798128,0.216595,0.429567,0.125929,0.263372,0.029966,0.427514,0.939617,0.567603,0.960876,0.919602,0.5042,0.545776,0.50552,0.44634,0.411386,0.179177,0.433547,0.559674,0.536022,0.472701,0.66927,0.74557,0.908446,0.134079,0.628044,0.25127,0.996303,0.489369,0.913985,0.601364,0.770444,0.683344,0.0902579,0.628237,0.845555,0.148669,0.967024,0.183699,0.138415,0.812767,0.803562,0.594819,0.805985,0.536567,0.0952656,0.010802,0.696765,0.108772,0.923398,0.213539,0.0874672,0.380112,0.711698,0.253941,0.372606,0.647895,0.93006,0.967117,0.636952,0.231103,0.558494,0.0397453,0.906236,0.0556458,0.215528,0.630905,0.447684,0.390387,0.523503,0.844206,0.481641,0.233145,0.0530125,0.283854,0.406968,0.242454,0.752562,0.433887,0.51685,0.825753,0.286913,0.497019,0.521099,0.594012,0.773904,0.598785,0.42474,0.433202,0.157992,0.232573,0.520041,0.319054,0.53008,0.709238,0.561923,0.136964,0.292978,0.0285429,0.0573536,0.566035,0.522115,0.692171,0.477165,0.50739,0.818217,0.994883,0.764509,0.605808,0.943342,0.0343527,0.129785,0.808883,0.712128,0.531111,0.0660335,0.852717,0.332272,0.561843,0.0388283,0.328377,0.78198,0.220602,0.10691,0.878644,0.152256,0.554948,0.76352,0.496021,0.0775672,0.425151,0.354532,0.0877451,0.218706,0.520969,0.420932,0.398444,0.827503,0.151919,0.743981,0.490334,0.99885,0.681008,0.185869,0.533303,0.633767,0.658138,0.139124,0.695054,0.317457,0.21553,0.794675,0.495398,0.282221,0.103477,0.612976,0.458568,0.0157521,0.699644,0.443232,0.610586,0.631922,0.675926,0.906782,0.589848,0.29076,0.382276,0.123014,0.992017,0.797986,0.860332,0.0343541,0.0295973,0.813797,0.299611,0.138792,0.799418,0.446102,0.369803,0.864834,0.272645,0.390339,0.195204,0.503688,0.00674796,0.0188018,0.512905,0.857601,0.667044,0.112912,0.384122,0.222958,0.131583,0.330633,0.797243,0.79046,0.971519,0.287295,0.469573,0.756606,0.43753,0.394425,0.525839,0.779101,0.30755,0.857067,0.596738,0.323808,0.695923,0.156844,0.82306,0.166358,0.66916,0.523825,0.993382,0.440329,0.459676,0.643938,0.662967,0.00449765,0.204925,0.447424,0.438343,0.183028,0.44941,0.56162,0.921948,0.624042,0.567626,0.654286,0.939521,0.588545,0.0556971,0.931325,0.606428,0.729957,0.172197,0.782377,0.900696,0.548821,0.503309,0.0846069,0.410157,0.466075,0.489362,0.820916,0.315056,0.113369,0.561508,0.685524,0.0610973,0.0623378,0.665633,0.170302,0.297733,0.267746,0.44209,0.246551,0.555297,0.612726,0.858083,0.0184584,0.211813,0.962347,0.958384,0.310961,0.976949,0.709043,0.168458,0.712221,0.543461,0.318924,0.102078,0.175513,0.220308,0.0684347,0.0751653,0.269013,0.997016,0.141198,0.819441,0.570177,0.359577,0.451025,0.183416,0.056551,0.446224,0.158369,0.9678,0.923061,0.242012,0.926436,0.946581,0.628369,0.00905633,0.0812975,0.120971,0.545592,0.832622,0.310457,0.838336,0.0282214,0.677426,0.287956,0.124052,0.765407,0.513348,0.0628884,0.748151,0.978708,0.818233,0.646753,0.343457,0.490184,0.968374,0.954494,0.0227351,0.797288,0.268531,0.319064,0.254637,0.105425,0.274149,0.516021,0.214365,0.357034,0.800815,0.812705,0.9141,0.531694,0.200482,0.982154,0.80397,0.134224,0.240556,0.797592,0.4865,0.702193,0.823517,0.931282,0.837411,0.880134,0.892927,0.722521,|0.890535,0.729712,0.179497,0.133915,0.397486,0.399734,0.625034,0.015686,0.241704,0.558009,0.864885,0.655475,0.269487,0.964432,0.891212,0.969904,0.658389,0.0192364,0.290857,0.471461,0.790889,0.655629,0.250187,0.293688,0.276237,0.90612,0.0835689,0.335466,0.668474,0.949354,0.959539,0.188308,0.935617,0.472071,0.531978,0.0873302,0.138304,0.931552,0.817302,0.923149,0.694117,0.092949,0.0856016,0.200891,0.84574,0.772516,0.345521,0.860961,0.769211,0.363614,0.928177,0.53471,0.157963,0.811809,0.312341,0.803088,0.527497,0.565981,0.0121241,0.0314394,0.366309,0.688276,0.237713,0.539901,0.693945,0.645314,0.120207,0.94618,0.731179,0.648761,0.25032,0.127088,0.147276,0.882156,0.0359573,0.751352,0.468321,0.99082,0.986637,0.297916,0.436671,0.232738,0.189255,0.526355,0.102669,0.598963,0.72547,0.83466,0.29175,0.307323,0.469447,0.00751472,0.820031,0.0505792,0.575128,0.595227,0.77368,0.2388,0.049238,0.68773,0.419216,0.0303802,0.0589852,0.145241,0.43473,0.521315,0.0682865,0.528534,0.913666,0.685579,0.428511,0.906945,0.0976171,0.658356,0.8046,0.0758138,0.540541,0.851258,0.842352,0.0205294,0.631182,0.288753,0.39099,0.514632,0.891504,0.18406,0.366444,0.536284,0.468601,0.551919,0.981197,0.822053,0.860013,0.568112,0.563663,0.438204,0.0468619,0.639604,0.275034,0.604871,0.945341,0.842948,0.695676,0.0279588,0.146518,0.0408026,0.0657331,0.868898,0.986976,0.245674,0.225551,0.631323,0.145795,0.440184,0.33687,0.205218,0.494529,0.661489,0.65241,0.498316,0.406883,0.515562,0.710199,0.475906,0.013019,0.2404,0.0695809,0.968958,0.932428,0.00664884,0.339743,0.468697,0.611986,0.591768,0.248261,0.495141,0.977196,0.483745,0.9125,0.268747,0.249068,0.173772,0.56976,0.760613,0.0262949,0.857027,0.737572,0.247328,0.0948712,0.726058,0.190525,0.52714,0.234903,0.897821,0.924879,0.46658,0.670539,0.643053,0.714597,0.955095,0.521455,0.875888,0.377501,0.96532,0.179241,0.307009,0.0762046,0.913045,0.0055176,0.689043,0.797726,0.926849,0.911329,0.896331,0.230811,0.312969,0.062993,0.871076,0.826581,0.950634,0.0626059,0.092414,0.72803,0.364838,0.931134,0.304678,0.312162,0.652695,0.964803,0.679712,0.392918,0.115158,0.733017,0.0214479,0.203539,0.188144,0.327425,0.92497,0.59202,0.165279,0.296188,0.864593,0.402827,0.056006,0.644365,0.266444,0.408153,0.781506,0.274881,0.272512,0.21589,0.359215,0.565316,0.343142,0.16246,0.644044,0.437302,0.768062,0.333597,0.553847,0.23091,0.534245,0.996897,0.41784,0.371791,0.243041,0.392135,0.511957,0.6957,0.399178,0.104737,0.0828348,0.694186,0.84247,0.616508,0.576618,0.634568,0.957912,0.313404,0.448457,0.133695,0.826722,0.387203,0.918697,0.980619,0.919897,0.818859,0.922124,0.194923,0.854809,0.200746,0.217357,0.0346084,0.997002,0.936507,0.640744,0.983241,0.915326,0.918392,0.510405,0.577741,0.643114,0.198684,0.209921,0.95385,0.651909,0.0585276,0.774958,0.251379,0.250989,0.123585,0.431687,0.541537,0.0896128,0.363941,0.723161,0.229394,0.645632,0.733107,0.243389,0.107973,0.929214,0.75584,0.861856,0.380532,0.827845,0.800628,0.971596,0.458353,0.679631,0.408264,0.0936826,0.427993,0.146675,0.164114,0.559573,0.355139,0.0439518,0.670751,0.711272,0.325155,0.403923,0.694155,0.103798,0.0549656,0.053913,0.722362,0.744125,0.373158,0.251814,0.515802,0.198132,0.877786,0.597726,0.0929539,0.00985247,0.811423,0.419917,0.166628,0.79336,0.0659124,0.588088,0.681008,0.533942,0.909769,0.32797,0.0154951,0.47868,0.486002,0.114252,0.384472,0.386448,0.725577,0.461701,0.436554,0.447026,0.814466,0.791706,0.719829,0.122848,0.0695965,0.053614,0.855856,0.740481,0.368129,0.604333,0.042293,0.599306,0.033951,0.666162,0.443038,0.827899,0.514485,0.68815,0.639192,0.139445,0.617506,0.600412,0.281503,0.670434,0.7318,0.486205,0.106859,0.908399,0.800673,0.375539,0.949253,0.103322,0.893018,0.207923,0.167146,0.270222,0.811354,0.245546,0.274955,0.289826,0.321948,0.883767,0.0156183,0.222772,0.379997,0.224194,0.679653,0.132348,0.424596,0.131585,0.776764,0.0586157,0.0745953,0.480761,0.784689,0.284005,0.716172,0.58168,0.18869,0.851419,0.450443,0.934866,0.95443,0.0161492,0.954363,0.0619771,0.153262,0.326463,0.412743,0.2375,0.763614,0.718384,0.122915,0.168016,0.688895,0.716459,0.837352,0.533026,0.401454,0.208695,0.666226,0.32154,0.378859,0.957628,0.130596,0.510703,0.763476,0.150455,0.0156792,0.743362,0.0290091,0.200115,0.232753,0.844163,0.911303,0.241117,0.770745,0.736604,0.793184,0.802835,0.18021,0.4781,0.832908,0.782723,0.00351685,0.251656,0.0606533,0.40872,0.337277,0.915197,0.123062,0.642211,0.712623,0.0489915,0.696988,0.705397,0.463587,0.81591,0.635814,0.656363,0.72062,0.613667,0.895355,0.0263252,0.744159,0.950527,0.714576,0.543007,0.431958,0.416423,0.573319,0.0434275,0.478539,0.189125,0.380504,0.989489,0.0777735,0.50364,0.736562,0.13728,0.249916,0.17444,0.222037,0.307759,0.849161,0.304018,0.499708,0.598283,0.768976,0.390974,0.975758,0.770925,0.854428,0.857624,0.0524392,0.711975,0.89839,0.144752,0.35477,0.269968,0.791779,0.0980167,0.474016,0.14387,0.643844,0.606635,0.449162,0.304915,0.913705,0.00696504,0.74715,0.197389,0.114399,0.400169,0.257745,0.868132,0.988296,0.362461,0.0946884,0.977619,0.183953,0.382831,0.869314,0.733494,0.672068,0.240232,0.851345,0.595069,0.435133,0.647783,0.869284,0.589689,0.476553,0.179829,0.0904682,0.7391,0.629263,0.390842,0.509032,0.790869,0.156461,0.650031,0.533808,0.268646,0.713689,0.887388,0.243991,0.706747,0.151681,0.859785,0.234355,0.429222,0.864915,0.593323,0.162999,0.307273,0.549546,0.837867,0.910157,0.590202,0.142557,0.429727,0.474474,0.983597,0.352684,0.147898,0.428926,0.190481,0.7376,0.675591,0.606413,0.620999,0.42156,0.817427,0.621824,0.383649,0.409036,0.705474,0.440426,0.165996,0.364969,0.949489,0.262361,0.63021,0.0568823,0.188141,0.18824,0.0759738,0.116475,0.866357,0.186252,0.191823,0.805785,0.183874,0.93989,0.734138,0.407383,0.625655,0.933536,0.581864,0.722885,0.482954,0.594078,0.665857,0.343206,0.592158,0.293584,0.722431,0.608183,0.883588,0.523433,0.406787,0.265393,0.260084,0.0129361,0.353661,0.890816,0.586035,0.700356,0.950209,0.249535,0.0344732,0.359196,0.919371,0.981451,0.954857,0.709292,0.645836,0.209787,0.291389,0.909323,0.191098,0.368896,0.419581,0.726549,0.407134,0.681456,0.358039,0.505618,0.605484,0.438599,0.518155,0.442786,0.695769,0.659731,0.994468,0.0431936,0.815476,0.0117307,0.656304,0.881226,0.591652,0.594705,0.132142,0.271008,0.711553,0.319861,0.0117068,0.787386,0.099864,0.168258,0.624103,0.351483,0.644342,0.991884,0.497389,0.837698,0.150662,0.246422,0.288815,0.809653,0.487221,0.84604,0.982307,0.716052,0.999574,0.823936,0.317651,0.743141,0.434388,0.685123,0.273371,0.877846,0.827204,0.103847,0.454036,0.549531,0.902743,0.492564,0.0910181,0.984846,0.61203,0.947805,0.347754,0.992379,0.879966,0.937638,0.800034,0.813299,0.0453588,0.566365,0.259962,0.468468,0.728177,0.645097,0.429186,0.461804,0.859258,0.53643,0.509123,0.163523,0.102606,0.755016,0.0789819,0.134389,0.947153,0.192306,0.361232,0.520725,0.0925967,0.137019,0.693102,0.505288,0.668628,0.368846,0.421449,0.583442,0.504024,0.00689089,0.791766,0.75739,0.536097,0.576564,0.569017,0.575742,0.781128,0.318473,0.279895,0.0501377,0.399366,0.918675,0.470452,0.117869,0.112867,0.827802,0.401218,0.466514,0.263046,0.813836,0.272398,0.931105,0.926211,0.895108,0.48178,0.107682,0.572223,0.210187,0.243888,0.73061,0.924262,0.0698426,0.448728,0.823215,0.921882,0.139833,0.982236,0.492362,0.12569,0.401294,0.00871372,0.295239,0.575572,0.296466,0.848414,0.746543,0.218769,0.27967,0.688642,0.383446,0.63376,0.547385,0.185048,0.01248,0.0834205,0.11751,0.653085,0.271691,0.00231844,0.631289,0.00602239,0.178758,0.939482,0.0442725,0.944127,0.746036,0.375729,0.634642,0.295496,0.210831,0.385621,0.00552809,0.741543,0.993145,0.654263,0.985544,0.102935,0.653899,0.874524,0.21091,0.34245,0.940516,0.170567,0.174048,0.138045,0.453579,0.530499,0.206336,0.524662,0.565925,0.81262,0.596609,0.09082,0.687411,0.00226223,0.891599,0.672101,0.1998,0.16751,0.577049,0.326948,0.909068,0.155049,0.313683,0.690551,0.62743,0.194682,0.0247347,0.179103,0.915338,0.689809,0.586633,0.239141,0.280591,0.0495448,0.591502,0.697055,0.71871,0.0827617,0.236527,0.74497,0.247216,0.883659,0.323299,0.997416,0.865117,0.0666153,0.469013,0.770666,0.987925,0.136645,0.769859,0.521579,0.592831,0.610357,0.054193,0.442637,0.293401,0.29707,0.966805,0.666093,0.304075,0.265721,0.692832,0.713299,0.468086,0.531005,0.821804,0.1179,0.288077,0.978032,0.88114,0.0805598,0.427639,0.55365,0.518123,0.69427,0.596351,0.749712,0.833589,0.416391,0.0702902,0.430762,0.142844,0.356916,0.357486,0.905052,0.904293,0.773709,0.0982072,0.0143877,0.420282,0.994954,0.0723836,0.250068,0.256757,0.970812,0.709326,0.796465,0.00146985,0.283166,0.347894,0.483017,0.667661,0.301701,0.327818,0.970184,0.166715,0.983029,0.519368,0.238754,0.641489,0.343805,0.913643,0.178729,0.719422,0.913018,0.24058,0.33759,0.632595,0.429947,0.693678,0.452546,0.49276,0.597125,0.171179,0.275081,0.0445832,0.988112,0.749313,0.00549299,0.363279,0.603164,0.300878,0.0143352,0.373143,0.927989,0.610329,0.251249,0.0459678,0.453061,0.457238,0.108647,0.842166,0.703599,0.0709565,0.0246266,0.515734,0.15474,0.0240085,0.990097,0.791,0.165107,0.287185,0.663533,|0.420212,0.132665,0.539239,0.766788,0.563023,0.20899,0.429727,0.623109,0.964009,0.850155,0.0535812,0.525018,0.0745813,0.311628,0.938038,0.133948,0.520388,0.480102,0.350057,0.0876704,0.401948,0.149801,0.0105788,0.400725,0.0846657,0.639247,0.575009,0.953569,0.0243646,0.169084,0.460037,0.692153,0.608217,0.742409,0.104732,0.0111695,0.635569,0.812396,0.876865,0.778739,0.704477,0.317644,0.397498,0.907667,0.638085,0.577991,0.331375,0.851833,0.396863,0.0844545,0.502227,0.620103,0.722872,0.89375,0.67796,0.244747,0.978507,0.722534,0.210497,0.540853,0.5027,0.237701,0.406447,0.71033,0.991521,0.485072,0.597925,0.241207,0.36024,0.783614,0.721721,0.537195,0.614601,0.237638,0.270288,0.301144,0.466638,0.279131,0.993407,0.377475,0.277218,0.304301,0.933356,0.949698,0.543687,0.078231,0.801848,0.578727,0.406503,0.5383,0.0202299,0.748548,0.623287,0.955899,0.471701,0.815701,0.62465,0.218604,0.567893,0.320153,0.62528,0.618801,0.995885,0.862961,0.573245,0.575791,0.868341,0.133137,0.786724,0.1679,0.427234,0.391399,0.293319,0.135507,0.66125,0.533348,0.591797,0.217563,0.959601,0.777951,0.735078,0.342377,0.582225,0.846571,0.0616843,0.548067,0.654656,0.529462,0.578126,0.936617,0.0165361,0.36233,0.304585,0.0380134,0.0893425,0.985197,0.749619,0.286044,0.0411731,0.379361,0.148695,0.520724,0.193021,0.204943,0.62369,0.442542,0.481089,0.655669,0.443916,0.978567,0.47521,0.295492,0.0256386,0.84345,0.858478,0.161371,0.180112,0.15216,0.0787237,0.739505,0.348315,0.962314,0.225144,0.0324515,0.671192,0.601318,0.467422,0.0773988,0.629589,0.694538,0.466156,0.852088,0.245796,0.0694461,0.0196984,0.400565,0.229918,0.0936536,0.844718,0.609044,0.744309,0.606495,0.767737,0.652646,0.775468,0.0118393,0.395162,0.702226,0.460834,0.391687,0.828582,0.687947,0.0305135,0.627125,0.822255,0.189684,0.142202,0.343711,0.0899693,0.251219,0.402427,0.637119,0.732952,0.361228,0.967434,0.621766,0.314696,0.0469331,0.949276,0.175999,0.222901,0.441114,0.227925,0.16869,0.413814,0.632389,0.527017,0.0793372,0.8446,0.086938,0.330233,0.480427,0.230857,0.751601,0.139682,0.480697,0.73391,0.559509,0.411917,0.197191,0.9516,0.0254875,0.623596,0.0524577,0.0165893,0.126599,0.481818,0.738233,0.700586,0.286258,0.863466,0.599578,0.076838,0.795951,0.101084,0.481734,0.680837,0.311208,0.361762,0.181379,0.574835,0.687077,0.437081,0.849981,0.622027,0.736403,0.647022,0.942634,0.377198,0.35665,0.79711,0.648866,0.875033,0.30847,0.686244,0.517495,0.424132,0.456991,0.237,0.903298,0.250504,0.828722,0.0500752,0.663051,0.991921,0.264541,0.710517,0.0789562,0.163584,0.506315,0.191647,0.81692,0.379088,0.223623,0.345182,0.00288755,0.803765,0.382727,0.176557,0.353293,0.748082,0.34097,0.492123,0.39845,0.772617,0.987856,0.677624,0.27608,0.896401,0.494598,0.666552,0.750578,0.0443501,0.483954,0.465293,0.954747,0.289845,0.906346,0.526444,0.865966,0.675038,0.893607,0.433387,0.112029,0.385151,0.409183,0.38008,0.916638,0.940878,0.60455,0.574208,0.99324,0.767869,0.321369,0.119017,0.440633,0.396031,0.835624,0.309913,0.863043,0.55166,0.340815,0.537817,0.104247,0.293231,0.0340096,0.445588,0.767385,0.504482,0.733557,0.543132,0.801275,0.718064,0.265527,0.164887,0.199009,0.488895,0.257771,0.712564,0.343769,0.228769,0.12078,0.505969,0.191457,0.530046,0.468449,0.846891,0.981791,0.804061,0.395368,0.171141,0.719587,0.680648,0.206691,0.0538052,0.841049,0.10402,0.652654,0.329238,0.0105583,0.243414,0.977139,0.306955,0.206035,0.401014,0.215691,0.591273,0.61441,0.490246,0.0702688,0.620903,0.0860379,0.878438,0.427744,0.811807,0.224585,0.272816,0.534331,0.220952,0.953756,0.922795,0.56698,0.882798,0.893566,0.768561,0.269266,0.57383,0.0197632,0.23305,0.105772,0.769949,0.327138,0.469199,0.162492,0.0738605,0.113255,0.881945,0.0412737,0.631636,0.974885,0.739591,0.0844541,0.637862,0.864873,0.859704,0.537488,0.0294356,0.868144,0.0747467,0.776563,0.00909877,0.0438387,0.706032,0.783655,0.198011,0.944278,0.509715,0.186877,0.784789,0.929871,0.547171,0.300786,0.933093,0.574066,0.498963,0.182434,0.96436,0.475048,0.635524,0.426147,0.339115,0.157292,0.270141,0.164211,0.994781,0.364262,0.887621,0.100219,0.531079,0.352212,0.416838,0.380062,0.656022,0.169583,0.20514,0.808242,0.470029,0.769101,0.56106,0.544571,0.85855,0.883113,0.833551,0.724714,0.711583,0.376291,0.770968,0.259862,0.441531,0.90828,0.892304,0.444082,0.425987,0.224675,0.297327,0.176888,0.418129,0.00141203,0.0523621,0.619851,0.348174,0.478606,0.658182,0.460234,0.688667,0.235501,0.521775,0.389632,0.166639,0.50511,0.439326,0.837903,0.923141,0.434729,0.251085,0.935304,0.244093,0.356655,0.222973,0.941297,0.100234,0.905181,0.0951039,0.935092,0.799902,0.0124632,0.0329115,0.0392182,0.270138,0.114819,0.0259783,0.72562,0.862203,0.436047,0.312093,0.845607,0.287134,0.505628,0.900539,0.8486,0.206628,0.838325,0.91789,0.330762,0.817869,0.799298,0.786145,0.459836,0.531082,0.466893,0.684081,0.61501,0.376388,0.156276,0.410005,0.641445,0.426825,0.471035,0.778276,0.104185,0.868053,0.862801,0.455649,0.84581,0.0148472,0.65876,0.167544,0.923694,0.430709,0.411455,0.955077,0.755833,0.0184075,0.466636,0.908401,0.961133,0.858836,0.990356,0.63369,0.887764,0.116792,0.937733,0.621181,0.42405,0.537033,0.343566,0.370208,0.355504,0.0670921,0.0892614,0.794449,0.494106,0.366631,0.629964,0.315457,0.60887,0.637325,0.092485,0.0412319,0.148849,0.0431367,0.0103574,0.616109,0.442474,0.0953979,0.0333562,0.878088,0.0716138,0.956526,0.948471,0.362187,0.620881,0.183182,0.883346,0.169351,0.811483,0.190531,0.519874,0.725876,0.688132,0.935584,0.14032,0.96585,0.719777,0.922305,0.217936,0.117283,0.437417,0.89286,0.755955,0.23314,0.959804,0.937159,0.818663,0.14157,0.113093,0.933911,0.218779,0.392443,0.481536,0.809166,0.187851,0.668964,0.251803,0.577684,0.984671,0.619644,0.51505,0.490688,0.590249,0.188967,0.188957,0.79772,0.653869,0.825961,0.433137,0.368715,0.232872,0.721289,0.579125,0.275676,0.979906,0.415467,0.126176,0.772626,0.404799,0.525219,0.778681,0.370765,0.486184,0.389729,0.962515,0.0978936,0.965995,0.932391,0.740984,0.252337,0.734325,0.328204,0.04352,0.387729,0.161815,0.706087,0.766025,0.973816,0.143728,0.0884317,0.607001,0.777183,0.0386958,0.176065,0.582993,0.355329,0.398586,0.224151,0.0196124,0.315485,0.11377,0.0197126,0.289351,0.804833,0.475775,0.508931,0.697927,0.151556,0.710795,0.703378,0.243981,0.818743,0.460469,0.185539,0.980676,0.384338,0.295586,0.954178,0.690561,0.971243,0.675367,0.494436,0.499674,0.427477,0.44053,0.694553,0.955572,0.270038,0.117608,0.482342,0.940766,0.655552,0.0144078,0.861104,0.108404,0.402433,0.44803,0.467263,0.311051,0.383012,0.074941,0.98927,0.174863,0.439008,0.391329,0.831853,0.393717,0.876188,0.0279937,0.94248,0.464269,0.693724,0.747162,0.36912,0.960033,0.692747,0.619945,0.513778,0.371948,0.737569,0.386835,0.491237,0.292569,0.0121524,0.626949,0.362418,0.0989523,0.761974,0.831859,0.551089,0.212908,0.484161,0.147771,0.100042,0.622354,0.920018,0.274336,0.013645,0.797924,0.350917,0.32651,0.437088,0.236863,0.639777,0.452306,0.858662,0.837669,0.593166,0.781105,0.439615,0.0644649,0.0213914,0.804842,0.978245,0.882351,0.632668,0.312679,0.0515938,0.385206,0.427298,0.890841,0.933938,0.147711,0.136771,0.832003,0.68612,0.419491,0.32122,0.188323,0.44607,0.274062,0.52458,0.482351,0.400116,0.728017,0.741055,0.911798,0.324138,0.189815,0.543568,0.425773,0.309736,0.493095,0.778802,0.27265,0.201731,0.855407,0.778029,0.0315539,0.493478,0.248933,0.789521,0.797575,0.560785,0.520401,0.855058,0.479603,0.588544,0.303833,0.761131,0.901338,0.710797,0.680725,0.152776,0.469994,0.0144421,0.955876,0.920567,0.825042,0.263893,0.830339,0.486523,0.517761,0.551474,0.0278969,0.851606,0.966071,0.870001,0.902971,0.957592,0.829099,0.45372,0.977985,0.535867,0.650299,0.511253,0.717329,0.801648,0.263916,0.19709,0.886696,0.351793,0.308454,0.837369,0.473102,0.942124,0.260139,0.0132323,0.516157,0.0987061,0.264733,0.816925,0.618592,0.0142353,0.900382,0.479712,0.488383,0.541002,0.0945264,0.504717,0.981025,0.498807,0.936538,0.689068,0.806455,0.271514,0.830989,0.702174,0.302347,0.948066,0.939946,0.779876,0.980979,0.423354,0.190215,0.0835409,0.702951,0.249489,0.843419,0.49723,0.990979,0.0624092,0.466843,0.0518571,0.252138,0.790749,0.896134,0.694676,0.987147,0.674554,0.249177,0.963173,0.21708,0.910615,0.0649676,0.124214,0.193477,0.979283,0.707363,0.312854,0.0398402,0.955474,0.631155,0.181063,0.479743,0.868253,0.199744,0.146292,0.0991347,0.268276,0.219744,0.820398,0.383467,0.727197,0.0877368,0.549897,0.0177323,0.291224,0.549882,0.413327,0.982309,0.541045,0.198994,0.71029,0.712628,0.744163,0.628373,0.446678,0.101863,0.859443,0.803703,0.821796,0.153609,0.826687,0.856927,0.399288,0.656502,0.569382,0.857441,0.396587,0.87744,0.0285245,0.463914,0.354784,0.0856617,0.814927,0.739257,0.44692,0.762276,0.841404,0.115986,0.834154,0.768071,0.791737,0.839222,0.77469,0.32771,0.562309,0.801358,0.088296,0.193869,0.209825,0.677499,0.561014,0.586989,0.83373,0.403958,0.627271,0.587882,0.0349669,0.54187,0.828886,0.437138,0.969583,0.668003,0.900689,0.816714,0.971277,0.150465,0.604084,0.235966,0.33293,0.248798,0.489304,0.504778,0.0906962,0.931091,0.867643,0.307826,0.233837,0.979629,0.700852,0.156565,|0.698705,0.784384,0.471687,0.0913546,0.108694,0.904181,0.320707,0.315278,0.542818,0.786079,0.611409,0.129404,0.775091,0.691087,0.701695,0.556884,0.125335,0.269519,0.507232,0.976993,0.621768,0.905001,0.706107,0.0197197,0.85286,0.839688,0.548149,0.178367,0.947217,0.838505,0.969967,0.500315,0.532386,0.846046,0.68896,0.490973,0.297292,0.925783,0.15063,0.740388,0.209068,0.835687,0.987594,0.588582,0.819567,0.431842,0.805327,0.0904707,0.627491,0.956715,0.365074,0.559153,0.410938,0.184149,0.630333,0.0845432,0.541891,0.0366442,0.789596,0.748555,0.825097,0.198995,0.584746,0.152378,0.269461,0.572507,0.545162,0.0361398,0.929751,0.160468,0.899406,0.504645,0.675824,0.627661,0.482738,0.887547,0.220006,0.564841,0.719692,0.245616,0.879454,0.0191138,0.936156,0.186994,0.235378,0.583279,0.340581,0.727477,0.592068,0.320373,0.405893,0.643319,0.949692,0.421528,0.277095,0.967345,0.582176,0.0406133,0.222247,0.425841,0.497899,0.29007,0.99075,0.461478,0.794706,0.75319,0.638002,0.588684,0.375073,0.120916,0.811193,0.878707,0.636325,0.450409,0.0669565,0.54082,0.178799,0.405338,0.0713039,0.922968,0.523488,0.321713,0.297855,0.291592,0.988278,0.729373,0.516315,0.950265,0.65487,0.297186,0.0708666,0.464637,0.298529,0.0768356,0.688503,0.068606,0.231543,0.518036,0.609886,0.665578,0.0388969,0.934345,0.28295,0.176325,0.901767,0.771415,0.0470608,0.251923,0.300457,0.277169,0.674062,0.972676,0.448452,0.843147,0.759247,0.725315,0.0384874,0.351988,0.690156,0.871498,0.0775713,0.802238,0.403383,0.822038,0.0618318,0.390917,0.668838,0.893541,0.713235,0.779749,0.664238,0.36061,0.639851,0.918237,0.0953242,0.385275,0.961693,0.840568,0.982264,0.226912,0.0362856,0.517137,0.0894699,0.521946,0.697454,0.901115,0.384206,0.928528,0.954821,0.919249,0.885854,0.162733,0.835464,0.472717,0.66704,0.109485,0.564708,0.887386,0.0499376,0.0444933,0.344656,0.232407,0.458394,0.0521571,0.694088,0.793473,0.290124,0.520694,0.918586,0.255094,0.432748,0.0575483,0.852128,0.547275,0.143933,0.346696,0.537231,0.532112,0.0549496,0.0861286,0.871607,0.91991,0.0413778,0.811757,0.287262,0.293432,0.526197,0.626718,0.816595,0.257226,0.12023,0.430635,0.00630063,0.829042,0.522297,0.240429,0.635228,0.876391,0.561286,0.69883,0.0291442,0.304427,0.00813562,0.360241,0.584863,0.0928011,0.427239,0.451327,0.580562,0.798263,0.726411,0.680521,0.743188,0.60842,0.236869,0.994368,0.836878,0.345741,0.279595,0.481742,0.851031,0.721558,0.281453,0.650307,0.935337,0.57172,0.659931,0.35979,0.394896,0.976498,0.33039,0.337514,0.781861,0.0723106,0.339253,0.636361,0.883491,0.265432,0.496749,0.0566923,0.797421,0.44388,0.215917,0.269741,0.0809507,0.186444,0.798595,0.0193315,0.511199,0.478875,0.44777,0.985636,0.954241,0.578084,0.316224,0.149734,0.206329,0.337989,0.820788,0.627733,0.321457,0.700977,0.820472,0.280356,0.922541,0.383948,0.0744717,0.749469,0.53781,0.752283,0.23149,0.224862,0.196366,0.576203,0.04439,0.622314,0.869609,0.0831097,0.343679,0.490629,0.596188,0.40345,0.859693,0.973113,0.0317575,0.325936,0.278404,0.100504,0.00243366,0.185809,0.90802,0.43336,0.792198,0.294865,0.316949,0.408513,0.470789,0.873301,0.764857,0.117432,0.701655,0.680141,0.938252,0.610697,0.735528,0.253829,0.412578,0.0798036,0.52836,0.0206566,0.0647929,0.977801,0.407498,0.720296,0.181344,0.549967,0.533584,0.637751,0.376368,0.768692,0.545978,0.955579,0.814506,0.7574,0.477911,0.600113,0.860818,0.525435,0.654437,0.549683,0.953398,0.746786,0.849817,0.206382,0.526158,0.666839,0.463184,0.76002,0.682808,0.374029,0.817151,0.699953,0.0236892,0.651262,0.468754,0.158407,0.993477,0.335741,0.671709,0.790184,0.222508,0.73256,0.72774,0.254544,0.954064,0.316143,0.0309507,0.32704,0.53219,0.496242,0.405516,0.312335,0.0904187,0.869917,0.577802,0.350458,0.581021,0.217205,0.366423,0.533152,0.336185,0.0978872,0.116733,0.560252,0.210885,0.704143,0.724204,0.0290688,0.578508,0.855858,0.191371,0.847081,0.107077,0.775302,0.23419,0.610259,0.137944,0.793642,0.401095,0.207257,0.478048,0.325886,0.842271,0.376886,0.761352,0.0909472,0.44403,0.522427,0.978633,0.497492,0.651411,0.217175,0.0233927,0.00924563,0.979593,0.113491,0.508143,0.744639,0.812718,0.201591,0.37975,0.530825,0.980149,0.868555,0.852529,0.319074,0.618765,0.125012,0.849794,0.615927,0.626414,0.895506,0.605999,0.564677,0.928194,0.60682,0.471372,0.389092,0.714784,0.672731,0.723904,0.732577,0.337362,0.0912367,0.977419,0.936886,0.332713,0.030538,0.326643,0.473442,0.207529,0.172694,0.157735,0.449472,0.134362,0.456136,0.252309,0.464267,0.852116,0.287792,0.0755487,0.279518,0.89302,0.0180962,0.0135276,0.791339,0.178531,0.980666,0.0348496,0.826537,0.41452,0.56324,0.628266,0.526472,0.175328,0.416013,0.804964,0.0457305,0.223913,0.586265,0.733283,0.842904,0.453608,0.195843,0.512217,0.82412,0.0553942,0.422831,0.585942,0.0442862,0.699606,0.733567,0.391698,0.172154,0.0591074,0.620226,0.154116,0.0750296,0.135079,0.639529,0.0761833,0.958617,0.366237,0.557156,0.657655,0.055415,0.341215,0.732214,0.478492,0.172071,0.480314,0.219993,0.524034,0.494177,0.661316,0.716905,0.874192,0.850011,0.690664,0.74818,0.785191,0.462639,0.401074,0.784351,0.0761283,0.301319,0.421709,0.425022,0.79579,0.513991,0.739112,0.0461318,0.120206,0.142936,0.29426,0.131755,0.0628391,0.51085,0.636481,0.257095,0.283032,0.724185,0.680303,0.287306,0.709254,0.194963,0.394849,0.273443,0.742278,0.178977,0.159194,0.615717,0.648556,0.238887,0.369739,0.156375,0.56736,0.626811,0.346555,0.631837,0.974396,0.865945,0.776664,0.725345,0.532254,0.44473,0.765479,0.767276,0.104873,0.684849,0.69732,0.335024,0.625324,0.0284755,0.842751,0.537443,0.683266,0.997176,0.241064,0.496005,0.841043,0.774544,0.870281,0.691259,0.746666,0.917841,0.432908,0.613211,0.975878,0.465318,0.990478,0.084875,0.126385,0.972467,0.454543,0.923914,0.995092,0.511705,0.396549,0.262075,0.181683,0.584018,0.371956,0.198806,0.752299,0.888223,0.532371,0.812224,0.520952,0.583094,0.991142,0.830625,0.134031,0.752117,0.364725,0.869044,0.905344,0.117239,0.717687,0.126061,0.0354944,0.351136,0.0545478,0.738255,0.93015,0.845335,0.281944,0.32039,0.797357,0.824126,0.750224,0.366997,0.309723,0.579415,0.305966,0.073465,0.567556,0.0995731,0.111706,0.124956,0.468757,0.552602,0.589204,0.488691,0.374512,0.782565,0.140921,0.78785,0.743258,0.278571,0.886645,0.582703,0.982645,0.895792,0.921825,0.922877,0.104801,0.287509,0.401381,0.882088,0.807459,0.125369,0.824503,0.239474,0.473449,0.661227,0.0589364,0.0856276,0.636589,0.726086,0.270034,0.279073,0.718278,0.548637,0.231413,0.772896,0.984865,0.422007,0.636974,0.464306,0.32793,0.954714,0.29302,0.896396,0.853758,0.263376,0.939144,0.888535,0.682789,0.408482,0.548655,0.0952237,0.307253,0.126765,0.53078,0.7726,0.486797,0.0623316,0.914542,0.0908575,0.494698,0.36416,0.549159,0.646442,0.399802,0.71474,0.34035,0.486466,0.511055,0.107423,0.573967,0.167074,0.777606,0.591519,0.851653,0.424441,0.0967109,0.695038,0.492746,0.633024,0.556796,0.836703,0.768555,0.588322,0.130172,0.554366,0.224541,0.302782,0.488205,0.169314,0.568137,0.628733,0.7388,0.300935,0.0715007,0.106556,0.397359,0.930921,0.12811,0.161213,0.85782,0.534592,0.712789,0.373371,0.189117,0.0789418,0.692532,0.780798,0.655317,0.901424,0.520907,0.762274,0.472723,0.547375,0.521855,0.0674794,0.965655,0.406875,0.918764,0.704717,0.977001,0.699153,0.325032,0.706708,0.428413,0.424013,0.586946,0.435262,0.0122933,0.00539994,0.807033,0.760223,0.519478,0.646209,0.341977,0.515181,0.708401,0.575132,0.0893499,0.271044,0.69186,0.953973,0.167122,0.446202,0.0687151,0.061265,0.171777,0.431044,0.587919,0.39022,0.21373,0.0754562,0.671249,0.958255,0.204874,0.569644,0.0869938,0.756735,0.636706,0.975126,0.421892,0.386504,0.158119,0.264941,0.685435,0.109742,0.602044,0.328061,0.592445,0.725283,0.0973506,0.839512,0.180713,0.452096,0.808387,0.224904,0.0972423,0.16761,0.0470314,0.685087,0.863116,0.928972,0.667162,0.164836,0.464213,0.0104184,0.553475,0.493967,0.38464,0.957636,0.0608709,0.043064,0.468297,0.316461,0.862956,0.220721,0.429746,0.0306765,0.896904,0.0913765,0.247347,0.907949,0.191885,0.577613,0.0807441,0.936901,0.957022,0.645368,0.732514,0.985767,0.0335616,0.761252,0.0129442,0.87453,0.452662,0.753492,0.4502,0.355289,0.128795,0.077008,0.147579,0.0768499,0.748917,0.499536,0.221829,0.592588,0.357515,0.0111814,0.401266,0.924069,0.741459,0.568119,0.333292,0.63996,0.151374,0.64636,0.177554,0.652722,0.962218,0.337181,0.339941,0.769416,0.49737,0.428885,0.658535,0.28684,0.829561,0.446656,0.47891,0.162267,0.230359,0.151313,0.185005,0.269217,0.300318,0.0921863,0.33606,0.207846,0.107133,0.77678,0.570927,0.437862,0.247245,0.139745,0.876477,0.290192,0.225392,0.58304,0.906853,0.662704,0.383732,0.692363,0.143718,0.823796,0.907269,0.61802,0.658,0.531693,0.949322,0.086489,0.7494,0.917874,0.263854,0.154181,0.126902,0.338534,0.772036,0.482985,0.369607,0.152562,0.0892394,0.0972689,0.868724,0.432446,0.837184,0.533,0.7999,0.959851,0.285405,0.211651,0.350185,0.827328,0.79784,0.176651,0.558765,0.703589,0.833927,0.733503,0.460248,0.258748,0.42037,0.829647,0.426621,0.560082,0.741027,0.244618,0.792306,0.856784,0.307781,0.755565,0.809191,0.0724714,0.359483,0.0721288,0.830906,0.828679,0.399558,0.316136,0.390604,0.73509,|0.115975,0.37789,0.431493,0.383219,0.325723,0.822336,0.342562,0.0768117,0.613293,0.178632,0.734898,0.461211,0.489784,0.726547,0.194037,0.84702,0.477528,0.291835,0.247963,0.932094,0.0449623,0.855981,0.11908,0.333482,0.677949,0.0258357,0.763202,0.00304812,0.416191,0.573606,0.912555,0.285412,0.766703,0.5707,0.810895,0.11229,0.223834,0.586154,0.352434,0.0391368,0.737399,0.880185,0.258834,0.614595,0.903951,0.719453,0.0102119,0.461944,0.67993,0.982535,0.0500997,0.718354,0.0331064,0.277904,0.723938,0.106951,0.477771,0.0342144,0.183333,0.721913,0.0514101,0.645584,0.83376,0.173702,0.676216,0.967814,0.446345,0.114857,0.425005,0.370763,0.368996,0.526765,0.551115,0.34447,0.113939,0.69779,0.807103,0.908886,0.146384,0.704217,0.236485,0.06802,0.042281,0.169901,0.953089,0.68266,0.785295,0.500135,0.365149,0.300773,0.861337,0.0177635,0.42156,0.122355,0.280489,0.61322,0.531244,0.979758,0.504543,0.871765,0.314684,0.829269,0.601029,0.413386,0.99763,0.366991,0.213495,0.156571,0.239927,0.952024,0.751293,0.734071,0.314812,0.245523,0.178964,0.704685,0.0120221,0.453688,0.836522,0.219556,0.0865349,0.694792,0.0487368,0.199009,0.143083,0.893307,0.191865,0.45972,0.013987,0.545517,0.204606,0.377949,0.864185,0.455509,0.47722,0.348924,0.99869,0.0973163,0.353413,0.472886,0.237797,0.61322,0.159026,0.0838834,0.07782,0.62686,0.765256,0.619893,0.163341,0.0301272,0.556578,0.202417,0.764703,0.833041,0.79017,0.849009,0.355692,0.572761,0.248703,0.189228,0.295415,0.882979,0.248989,0.997723,0.0107622,0.575407,0.447942,0.716207,0.750134,0.624502,0.93757,0.484961,0.63388,0.647982,0.12352,0.998792,0.139394,0.815022,0.975157,0.153521,0.339723,0.512454,0.572487,0.94552,0.735005,0.114444,0.859174,0.448774,0.672241,0.74615,0.614637,0.587101,0.283941,0.80948,0.859161,0.916546,0.380722,0.12915,0.552285,0.191258,0.0128173,0.74293,0.603843,0.958715,0.560344,0.212369,0.0694042,0.628677,0.327781,0.395229,0.55016,0.733547,0.884215,0.80311,0.0764083,0.225511,0.493983,0.50317,0.183137,0.718689,0.652187,0.272732,0.589736,0.748543,0.173154,0.17589,0.428887,0.614727,0.690557,0.748358,0.316589,0.0312548,0.716752,0.0592346,0.486345,0.106681,0.309973,0.225222,0.372468,0.21727,0.223934,0.70211,0.404402,0.483289,0.787189,0.781515,0.972286,0.948097,0.189454,0.582369,6.62208e-05,0.719767,0.192874,0.175395,0.389055,0.197812,0.604289,0.547712,0.0492524,0.861016,0.431794,0.923887,0.0319362,0.822311,0.355917,0.952635,0.36438,0.207447,0.19778,0.394395,0.279299,0.998664,0.821644,0.34652,0.995936,0.737764,0.84168,0.273971,0.520256,0.497871,0.454292,0.533256,0.785204,0.868848,0.872099,0.609543,0.606765,0.0878431,0.693443,0.015292,0.861462,0.193517,0.0477116,0.225856,0.695317,0.90322,0.333317,0.245516,0.024637,0.619883,0.965433,0.494853,0.459616,0.435512,0.747605,0.499888,0.579094,0.185955,0.471816,0.0887823,0.264696,0.857401,0.385863,0.930257,0.451434,0.564792,0.604839,0.994835,0.397263,0.225997,0.441377,0.964096,0.384278,0.0569357,0.161518,0.946453,0.270565,0.365338,0.320027,0.514564,0.974143,0.206246,0.696391,0.219473,0.270289,0.571403,0.0386485,0.88909,0.8266,0.111166,0.341281,0.861815,0.204337,0.560443,0.882455,0.397586,0.0515504,0.475251,0.719975,0.480121,0.425995,0.12509,0.268149,0.609077,0.0548215,0.94079,0.598868,0.789443,0.127258,0.682179,0.836533,0.153201,0.254511,0.593989,0.0835154,0.602524,0.289341,0.852509,0.865946,0.919305,0.356537,0.302741,0.293955,0.925855,0.506669,0.300683,0.604845,0.420481,0.288788,0.963025,0.128332,0.618867,0.340201,0.893074,0.363796,0.790294,0.82161,0.774886,0.480128,0.725203,0.960294,0.477174,0.880891,0.360784,0.55361,0.317523,0.43699,0.625615,0.696624,0.889819,0.0140994,0.0528525,0.926793,0.704606,0.0278366,0.759134,0.917288,0.436949,0.763951,0.197175,0.17634,0.30481,0.786885,0.445655,0.783583,0.594668,0.329962,0.85554,0.839959,0.649999,0.29453,0.859502,0.847026,0.346755,0.689461,0.381236,0.453139,0.556164,0.977759,0.338685,0.341123,0.92251,0.050364,0.531234,0.00107527,0.0236714,0.550895,0.66451,0.517903,0.431014,0.381779,0.50509,0.508539,0.643089,0.11093,0.479486,0.080327,0.172233,0.296989,0.640073,0.300417,0.23048,0.852403,0.13699,0.261579,0.951126,0.467396,0.0327826,0.351475,0.123697,0.473178,0.837372,0.379695,0.56174,0.653166,0.924428,0.784396,0.0982312,0.438862,0.729085,0.530996,0.598176,0.0818782,0.463789,0.820978,0.631374,0.359229,0.917564,0.702985,0.334351,0.620265,0.00617474,0.910831,0.439237,0.219583,0.623747,0.0819041,0.723608,0.254977,0.455789,0.168161,0.265137,0.279109,0.0106392,0.841475,0.0800611,0.0233388,0.43029,0.509452,0.726845,0.550888,0.213743,0.0290337,0.689727,0.0341021,0.875132,0.323546,0.83944,0.131611,0.594662,0.913171,0.0479861,0.624185,0.492023,0.267452,0.253869,0.528162,0.676131,0.546653,0.617213,0.818093,0.954996,0.869021,0.456469,0.375878,0.416734,0.697873,0.209162,0.214173,0.390134,0.229746,0.99781,0.101658,0.102223,0.920358,0.749237,0.587563,0.0895493,0.92436,0.632022,0.841677,0.937126,0.415761,0.361992,0.9202,0.869069,0.377943,0.803069,0.803462,0.459465,0.446589,0.590882,0.979698,0.88304,0.886896,0.743104,0.276834,0.930962,0.547793,0.677735,0.919998,0.584078,0.696289,0.970843,0.397827,0.990592,0.919496,0.162395,0.426021,0.685264,0.842523,0.917486,0.774295,0.00578398,0.0855893,0.921849,0.655207,0.373731,0.491195,0.0751777,0.678507,0.713469,0.455957,0.579352,0.741298,0.958004,0.765512,0.180745,0.671253,0.727869,0.28396,0.131128,0.974791,0.165283,0.406618,0.221732,0.210058,0.290602,0.0835247,0.0516427,0.80563,0.918086,0.320552,0.485829,0.993059,0.884801,0.157821,0.446907,0.184683,0.667125,0.0594886,0.0214866,0.0366585,0.443711,0.956797,0.758438,0.529986,0.746282,0.475723,0.412463,0.567645,0.275277,0.497731,0.411794,0.0156322,0.685869,0.205824,0.273883,0.161006,0.48381,0.750942,0.604545,0.471652,0.708999,0.283984,0.72889,0.610548,0.82609,0.6808,0.955932,0.483657,0.703718,0.0694258,0.441293,0.546151,0.53697,0.927845,0.459122,0.0200603,0.220086,0.153987,0.0747828,0.281503,0.0472122,0.648108,0.942065,0.133262,0.86059,0.273258,0.961039,0.714807,0.0944788,0.555547,0.894055,0.603945,0.304238,0.98114,0.990814,0.263248,0.274562,0.59194,0.293975,0.253908,0.250089,0.834509,0.303303,0.928349,0.250114,0.591541,0.880997,0.226342,0.623468,0.894806,0.85999,0.292175,0.199729,0.761678,0.59615,0.680635,0.203992,0.553844,0.909417,0.166151,0.638803,0.223962,0.549275,0.696311,0.491576,0.867437,0.764854,0.627715,0.450962,0.956059,0.999674,0.681834,0.626903,0.120851,0.758599,0.812472,0.285733,0.978771,0.609106,0.385326,0.225334,0.782724,0.715267,0.588987,0.534008,0.237957,0.319123,0.168154,0.158565,0.356409,0.396128,0.349883,0.687921,0.0646107,0.079724,0.0779752,0.572271,0.317711,0.13432,0.489118,0.220305,0.922766,0.931901,0.737393,0.7172,0.217357,0.516163,0.480401,0.74615,0.991488,0.319075,0.952101,0.156006,0.476277,0.104454,0.406343,0.721774,0.840747,0.0289733,0.522601,0.388941,0.310454,0.956424,0.579592,0.522498,0.11406,0.347194,0.263482,0.971826,0.780102,0.468374,0.0795907,0.295344,0.279826,0.740632,0.699556,0.892302,0.0290056,0.0670277,0.741986,0.554414,0.472426,0.292826,0.24735,0.240587,0.888126,0.0338008,0.10856,0.238204,0.993338,0.160828,0.896635,0.748119,0.645234,0.870918,0.051954,0.7271,0.510384,0.271334,0.294405,0.507833,0.564835,0.160353,0.758816,0.381682,0.443456,0.123344,0.555461,0.735448,0.949939,0.415862,0.0864887,0.282756,0.210919,0.48373,0.260247,0.120323,0.0175076,0.682169,0.171744,0.563709,0.0216755,0.544254,0.397957,0.190902,0.429301,0.763791,0.59306,0.978558,0.466338,0.276768,0.556097,0.659169,0.768365,0.645719,0.251234,0.196272,0.842133,0.963952,0.057056,0.340108,0.202446,0.350991,0.403205,0.792056,0.548833,0.695755,0.333456,0.434718,0.354934,0.809012,0.0869993,0.742542,0.584875,0.542223,0.529904,0.748422,0.262917,0.862442,0.842395,0.368201,0.702742,0.211738,0.942668,0.519361,0.553914,0.241948,0.505121,0.00237894,0.875423,0.527294,0.139992,0.527673,0.184355,0.794056,0.841631,0.838012,0.259775,0.131615,0.352833,0.729896,0.0900226,0.2385,0.776924,0.145816,0.854218,0.401554,0.778129,0.215377,0.775922,0.834326,0.478021,0.718641,0.73306,0.363576,0.847865,0.396901,0.736735,0.404438,0.619535,0.973989,0.575743,0.109586,0.0663344,0.6109,0.0295768,0.49753,0.199869,0.962662,0.126668,0.214766,0.0568717,0.612086,0.251704,0.0964842,0.242016,0.926463,0.524434,0.87282,0.640127,0.791282,0.436674,0.14117,0.617518,0.0366367,0.418839,0.0906597,0.522009,0.658582,0.568491,0.786887,0.454451,0.0752453,0.948882,0.147978,0.539026,0.484646,0.935596,0.149665,0.734161,0.612669,0.221111,0.326461,0.692699,0.105647,0.953469,0.631993,0.208288,0.0746098,0.0535803,0.355879,0.153307,0.415232,0.358528,0.792578,0.422698,0.530367,0.27306,0.283374,0.011083,0.905015,0.568804,0.77777,0.901038,0.12543,0.368162,0.472787,0.226983,0.885359,0.807739,0.0700998,0.494326,0.851955,0.66898,0.899194,0.494727,0.0258695,0.707286,0.442039,0.702775,0.0272741,0.86612,0.291279,0.960896,0.540144,0.0418808,0.178331,0.857656,0.00491107,0.568663,0.92523,0.926428,0.435069,0.106751,0.422265,0.862448,0.435201,0.98704,0.084343,0.324392,0.703732,0.817444,0.619476,0.961627,0.28102,0.815388,0.394523,|0.0243931,0.0887238,0.332049,0.593147,0.599003,0.252321,0.743597,0.980648,0.23288,0.887639,0.59106,0.647677,0.484941,0.202713,0.0797389,0.633837,0.000217021,0.976022,0.274195,0.208334,0.582855,0.329367,0.62958,0.649978,0.344346,0.449067,0.134977,0.941378,0.0418893,0.272706,0.0150813,0.0129665,0.457147,0.200785,0.525678,0.596923,0.760565,0.16368,0.0241592,0.744826,0.104504,0.771029,0.325178,0.336537,0.922319,0.985561,0.986505,0.744166,0.901923,0.976614,0.554069,0.193243,0.395179,0.387835,0.407365,0.781363,0.298111,0.297309,0.855559,0.536616,0.425774,0.551324,0.584399,0.843526,0.543918,0.54697,0.266206,0.570748,0.472623,0.00996947,0.181803,0.687083,0.818246,0.870937,0.317081,0.258007,0.351918,0.16345,0.719135,0.653921,0.816836,0.353334,0.597518,0.644056,0.778241,0.471341,0.610345,0.790383,0.722436,0.896589,0.79801,0.711346,0.870799,0.666297,0.909378,0.240632,0.830909,0.601821,0.0314968,0.96374,0.273693,0.546224,0.265282,0.260912,0.485112,0.620155,0.593413,0.817262,0.146944,0.0035789,0.775541,0.525173,0.987741,0.627166,0.0442594,0.833597,0.320928,0.232796,0.870106,0.67345,0.0180965,0.746241,0.927895,0.962809,0.0165886,0.33311,0.0433226,0.91374,0.382393,0.980026,0.133785,0.765581,0.722451,0.435646,0.690428,0.919336,0.615587,0.243469,0.0656319,0.23194,0.144766,0.437038,0.127376,0.732778,0.41287,0.374531,0.986478,0.907232,0.0940807,0.640128,0.897078,0.77569,0.732675,0.220571,0.273521,0.0245258,0.919452,0.872031,0.229409,0.406192,0.397386,0.330376,0.87179,0.51542,0.539888,0.765321,0.893368,0.804244,0.748168,0.669358,0.204871,0.343821,0.120281,0.322234,0.800501,0.850879,0.568317,0.905297,0.91684,0.80835,0.979177,0.790742,0.15069,0.552677,0.250958,0.167815,0.301525,0.952656,0.762292,0.320124,0.796776,0.992103,0.717342,0.142393,0.65421,0.784055,0.106041,0.230732,0.00454617,0.387573,0.280186,0.948122,0.90939,0.98341,0.431522,0.655708,0.132311,0.248992,0.0372373,0.541096,0.138521,0.651609,0.446288,0.27271,0.100623,0.376163,0.0299102,0.669583,0.369935,0.666682,0.954582,0.353973,0.19878,0.61961,0.0548293,0.55648,0.641026,0.211798,0.73728,0.601976,0.575353,0.286617,0.160486,0.522708,0.841417,0.433845,0.897406,0.41165,0.832275,0.0417872,0.0593522,0.627575,0.675968,0.226748,0.603677,0.0159473,0.723851,0.146984,0.224738,0.435859,0.196653,0.220556,0.0984297,0.780937,0.0294845,0.894391,0.203973,0.582044,0.431218,0.80725,0.731043,0.730145,0.932154,0.247332,0.721703,0.912394,0.46476,0.6704,0.23181,0.589534,0.580641,0.115167,0.0979436,0.16649,0.237114,0.0568643,0.597516,0.693769,0.242681,0.402394,0.0160969,0.705393,0.179764,0.498807,0.526244,0.497031,0.746583,0.643293,0.202045,0.313099,0.881973,0.532241,0.73007,0.958465,0.61508,0.138846,0.708586,0.968744,0.590395,0.275946,0.381384,0.840517,0.116766,0.250836,0.401438,0.416163,0.254231,0.404219,0.0219337,0.455498,0.00234526,0.00818622,0.0198581,0.717036,0.808477,0.139418,0.197117,0.575755,0.191463,0.100362,0.10867,0.759072,0.720464,0.852908,0.383984,0.218627,0.491688,0.564628,0.00645882,0.398906,0.585183,0.788054,0.360363,0.595297,0.167418,0.0247813,0.776638,0.654172,0.49961,0.127242,0.726945,0.188634,0.556965,0.116879,0.477978,0.479815,0.340339,0.681685,0.581121,0.0631174,0.787357,0.436902,0.753781,0.0166392,0.567693,0.73756,0.313663,0.723775,0.358581,0.997817,0.870501,0.767404,0.568345,0.18821,0.495382,0.827289,0.737481,0.536734,0.907945,0.951482,0.0136479,0.0068661,0.799429,0.82085,0.5971,0.8969,0.402976,0.0534152,0.882535,0.849398,0.961893,0.673547,0.402163,0.401332,0.66664,0.73095,0.0607653,0.843458,0.391779,0.499559,0.680393,0.228386,0.291728,0.802887,0.997454,0.85556,0.470203,0.474623,0.123934,0.0385067,0.135689,0.439996,0.774902,0.295294,0.21963,0.690538,0.0583246,0.162255,0.951108,0.0297869,0.873859,0.844565,0.486082,0.68719,0.851078,0.628438,0.427948,0.439724,0.233071,0.339198,0.0458215,0.268234,0.585476,0.914543,0.565479,0.380153,0.997152,0.235243,0.350445,0.729348,0.446399,0.174261,0.375244,0.187199,0.627043,0.685248,0.448388,0.880693,0.379863,0.174568,0.458672,0.863353,0.16584,0.823154,0.775693,0.94529,0.0214139,0.91589,0.539992,0.0330409,0.675516,0.0780555,0.220928,0.76637,0.621413,0.533965,0.879204,0.37752,0.341697,0.098174,0.0533519,0.981156,0.0435454,0.867679,0.144501,0.895557,0.197401,0.971837,0.0683784,0.36051,0.0248794,0.11335,0.253035,0.488004,0.857679,0.178439,0.462926,0.163299,0.850668,0.779522,0.0789869,0.0315349,0.855882,0.962555,0.925644,0.573411,0.496358,0.764907,0.746253,0.971281,0.001212,0.224935,0.968369,0.414264,0.76218,0.0355701,0.798034,0.189194,0.620401,0.512219,0.0610052,0.350306,0.448922,0.947432,0.128308,0.649136,0.281448,0.466558,0.72666,0.570786,0.522088,0.450678,0.724033,0.519794,0.747461,0.824099,0.70684,0.801181,0.722383,0.627843,0.893526,0.611631,0.0312098,0.287719,0.535146,0.414182,0.694129,0.662055,0.539908,0.718491,0.797344,0.82843,0.330328,0.670943,0.427195,0.147291,0.519062,0.440999,0.389271,0.806249,0.422694,0.559212,0.732326,0.235267,0.0181109,0.533786,0.0728451,0.337358,0.716317,0.995564,0.812246,0.0635599,0.615782,0.440706,0.644995,0.684339,0.713733,0.878434,0.622615,0.307955,0.930588,0.590259,0.797532,0.266714,0.586532,0.59569,0.84719,0.766899,0.30788,0.554242,0.0407838,0.0847778,0.97362,0.791839,0.210798,0.451592,0.324398,0.00182104,0.157841,0.277668,0.0079723,0.316146,0.047973,0.947665,0.529139,0.840025,0.635375,0.395758,0.534755,0.711189,0.0482879,0.150655,0.933746,0.117405,0.962665,0.733097,0.18734,0.281273,0.376987,0.677427,0.879771,0.942144,0.653704,0.134125,0.538583,0.574662,0.799088,0.64366,0.786558,0.23795,0.74715,0.660737,0.643536,0.322319,0.449473,0.115841,0.589051,0.259084,0.386764,0.673631,0.817665,0.741997,0.28397,0.933009,0.554673,0.575035,0.587072,0.0483935,0.234312,0.639524,0.204595,0.0927623,0.544273,0.869187,0.883409,0.948416,0.631048,0.289181,0.954027,0.914543,0.472169,0.000216961,0.37037,0.788113,0.0342366,0.217284,0.99342,0.344616,0.564911,0.453915,0.0902684,0.44661,0.0460111,0.244009,0.869148,0.410401,0.531462,0.13444,0.570348,0.19731,0.637276,0.0917699,0.495229,0.699836,0.905019,0.0962742,0.611219,0.375323,0.223433,0.221428,0.994661,0.160833,0.070693,0.428476,0.106889,0.842385,0.695633,0.997774,0.742225,0.882811,0.716549,0.0580051,0.753678,0.706436,0.540377,0.129704,0.518893,0.444201,0.414948,0.806546,0.81639,0.386367,0.755059,0.213798,0.195127,0.229915,0.558017,0.244856,0.900394,0.14009,0.233572,0.760397,0.966908,0.072399,0.412184,0.608663,0.402562,0.0913244,0.00178158,0.558782,0.263777,0.633596,0.0886926,0.688987,0.350699,0.469095,0.729695,0.730303,0.99856,0.624359,0.719244,0.577116,0.23542,0.661066,0.768849,0.880583,0.934173,0.0936797,0.496922,0.187045,0.589612,0.118325,0.542479,0.021177,0.121492,0.521118,0.757448,0.0350007,0.20515,0.491067,0.171816,0.440788,0.825313,0.659702,0.734546,0.91179,0.294572,0.1862,0.68659,0.954532,0.28433,0.443243,0.301637,0.218427,0.482823,0.204635,0.938248,0.149681,0.628873,0.962499,0.912497,0.453762,0.157504,0.320697,0.912591,0.549901,0.188877,0.0253402,0.414081,0.0191752,0.777232,0.353537,0.201137,0.0740542,0.195559,0.781349,0.304469,0.776097,0.479543,0.657013,0.693245,0.989305,0.641522,0.615134,0.348955,0.387794,0.867986,0.488487,0.430366,0.312541,0.636389,0.713519,0.516128,0.312918,0.652592,0.241548,0.593064,0.636509,0.0441707,0.337969,0.203443,0.312168,0.542651,0.792297,0.212542,0.122259,0.236514,0.71544,0.379769,0.272603,0.859159,0.424076,0.430444,0.442105,0.908924,0.259841,0.863546,0.944524,0.729469,0.791745,0.228094,0.948879,0.601468,0.0180188,0.63048,0.591266,0.651222,0.441222,0.124985,0.811812,0.426519,0.0907118,0.766862,0.334382,0.371239,0.541057,0.444966,0.069241,0.771869,0.317088,0.471432,0.824311,0.233663,0.736316,0.06995,0.692045,0.0740336,0.475504,0.629649,0.478527,0.481301,0.772472,0.986846,0.997364,0.329627,0.803141,0.777706,0.669625,0.887963,0.533794,0.578291,0.941333,0.149818,0.263294,0.530704,0.407157,0.801578,0.67344,0.853554,0.0418137,0.541148,0.631079,0.00817788,0.226598,0.00834191,0.941628,0.80612,0.696502,0.546829,0.936401,0.298094,0.78959,0.407105,0.531683,0.502216,0.41322,0.152695,0.233841,0.148368,0.454054,0.117482,0.80453,0.824909,0.440434,0.881003,0.461398,0.603963,0.95125,0.413932,0.00384074,0.794474,0.0847429,0.0784464,0.994649,0.569173,0.129671,0.0925884,0.794856,0.46087,0.597553,0.700973,0.724327,0.523559,0.234495,0.888331,0.428799,0.504552,0.613903,0.0332029,0.341763,0.0211424,0.465423,0.164853,0.757837,0.517519,0.13283,0.469981,0.82993,0.194221,0.0443038,0.586413,0.083118,0.411665,0.0682997,0.911088,0.940921,0.40198,0.0123895,0.300494,0.0949841,0.355248,0.542359,0.98182,0.779218,0.441615,0.124733,0.692214,0.405772,0.508141,0.21081,0.26616,0.351284,0.619979,0.372228,0.453145,0.128614,0.767884,0.957556,0.699595,0.468352,0.026219,0.3589,0.18367,0.686073,0.89669,0.179841,0.848959,0.110316,0.698422,0.723242,0.591828,0.637157,0.622039,0.610608,0.0549062,0.271449,0.374785,0.105162,0.501144,0.895734,0.325267,0.868439,0.816298,0.831261,0.791677,0.756428,0.0551729,0.0883213,0.626413,0.485915,0.151611,0.215633,0.440249,0.0343726,0.903782,0.593976,0.825851,0.363977,0.668331,0.291473,|0.158655,0.758699,0.881691,0.58188,0.198975,0.607449,0.816169,0.585925,0.67225,0.966999,0.720451,0.643725,0.145136,0.650225,0.100973,0.939397,0.860193,0.835471,0.0736055,0.274217,0.684775,0.826695,0.751578,0.412152,0.187253,0.251247,0.926573,0.10052,0.45958,0.163352,0.604567,0.944101,0.2047,0.0559093,0.878101,0.831475,0.346364,0.850428,0.405922,0.785574,0.264845,0.337784,0.0130064,0.302336,0.0274082,0.476473,0.030879,0.575578,0.437038,0.430979,0.613284,0.927859,0.149349,0.832026,0.901438,0.519806,0.726329,0.731313,0.445988,0.292692,0.147834,0.481594,0.857899,0.42329,0.264358,0.39659,0.761425,0.140064,0.292084,0.129699,0.858387,0.234327,0.374874,0.424304,0.169044,0.808615,0.525697,0.963,0.748486,0.765913,0.367211,0.769372,0.778235,0.912877,0.72617,0.0684928,0.720965,0.445049,0.706042,0.389516,0.34105,0.563999,0.433869,0.951149,0.484985,0.973561,0.195682,0.684492,0.23903,0.0542208,0.707856,0.378325,0.308662,0.389634,0.880834,0.959739,0.917167,0.406038,0.893866,0.956884,0.822875,0.39388,0.69985,0.435999,0.428753,0.778299,0.271692,0.786078,0.841099,0.275043,0.552702,0.628643,0.1776,0.950472,0.345547,0.753524,0.487546,0.99595,0.658257,0.166305,0.474676,0.470605,0.906986,0.967843,0.68589,0.575273,0.66649,0.140986,0.346927,0.706716,0.0993853,0.207827,0.852153,0.695093,0.28478,0.738949,0.595846,0.64483,0.879448,0.970678,0.0578306,0.355105,0.517482,0.640986,0.965913,0.277738,0.687132,0.911657,0.0849177,0.364245,0.352346,0.501707,0.314828,0.41003,0.397347,0.709182,0.533823,0.642746,0.455761,0.5515,0.386395,0.799717,0.143282,0.054122,0.844919,0.681954,0.0215158,0.471495,0.3011,0.665056,0.0710909,0.786852,0.334191,0.406394,0.955726,0.254105,0.861418,0.75051,0.240672,0.71514,0.860033,0.819678,0.540817,0.718718,0.226901,0.625887,0.623621,0.745101,0.3396,0.721725,0.816557,0.71029,0.315259,0.148919,0.172779,0.928585,0.935476,0.131909,0.016537,0.870326,0.326506,0.157867,0.42686,0.206066,0.936495,0.0648433,0.156225,0.92866,0.994233,0.509252,0.531126,0.610748,0.839432,0.944024,0.155458,0.886629,0.878466,0.988489,0.140655,0.335517,0.727895,0.770895,0.863083,0.381204,0.425572,0.175391,0.37676,0.178673,0.725815,0.256995,0.512858,0.886228,0.796501,0.0143619,0.898486,0.828767,0.787528,0.518168,0.702431,0.318941,0.465349,0.343183,0.0177574,0.576786,0.210472,0.474832,0.896843,0.462088,0.0167327,0.755757,0.933871,0.0768697,0.840796,0.736536,0.862949,0.422308,0.336821,0.952284,0.540995,0.314466,0.28185,0.888187,0.478487,0.272216,0.249342,0.156425,0.0258579,0.628042,0.322324,0.56814,0.378759,0.719065,0.992253,0.383679,0.326396,0.0260352,0.450429,0.908975,0.400629,0.752478,0.723306,0.0251673,0.329952,0.837147,0.379061,0.628763,0.615358,0.865938,0.331556,0.705523,0.642129,0.318142,0.499776,0.906399,0.219327,0.518376,0.512959,0.740919,0.00386965,0.191294,0.0316493,0.173871,0.00775105,0.63344,0.160537,0.0849554,0.429082,0.131977,0.660251,0.974921,0.384829,0.159419,0.935728,0.431795,0.5,0.739511,0.220757,0.86551,0.937142,0.770745,0.980207,0.842258,0.789387,0.752297,0.025481,0.229565,0.237093,0.0618824,0.403207,0.942252,0.928009,0.231158,0.742025,0.128627,0.821637,0.637194,0.588731,0.850457,0.0934964,0.116816,0.476391,0.261205,0.189973,0.604163,0.518122,0.254364,0.282782,0.0409901,0.238542,0.439843,0.970921,0.674296,0.824343,0.669239,0.158113,0.318913,0.488858,0.189568,0.70441,0.850922,0.716459,0.315549,0.80461,0.513771,0.802005,0.487935,0.911031,0.306312,0.0409727,0.757294,0.34979,0.282801,0.634129,0.792912,0.859499,0.193604,0.199645,0.155035,0.313241,0.228942,0.69976,0.26484,0.902477,0.0665376,0.092708,0.798384,0.931399,0.890926,0.64938,0.261075,0.42418,0.0326546,0.0768687,0.740795,0.516214,0.682307,0.690914,0.293111,0.895356,0.911182,0.578022,0.00608528,0.466491,0.669165,0.236569,0.979699,0.0182731,0.836072,0.515743,0.758512,0.200717,0.252921,0.482775,0.899763,0.610561,0.381496,0.652423,0.265826,0.110759,0.240112,0.77677,0.922435,0.652675,0.702775,0.920568,0.387674,0.869233,0.565557,0.538325,0.897488,0.436025,0.885574,0.346572,0.0161386,0.354677,0.387044,0.454873,0.777396,0.921346,0.534722,0.912181,0.207293,0.740144,0.839049,0.172564,0.307369,0.334366,0.705802,0.961201,0.875404,0.538782,0.837699,0.948756,0.0549979,0.94107,0.222812,0.206262,0.0399913,0.88807,0.380973,0.326812,0.123796,0.218158,0.0839915,0.712169,0.241849,0.822539,0.271269,0.679837,0.272637,0.951919,0.939397,0.372448,0.922746,0.233836,0.36512,0.448698,0.725947,0.414571,0.504638,0.503375,0.109524,0.248027,0.152075,0.183792,0.7717,0.416252,0.0952076,0.507252,0.0840805,0.721635,0.415506,0.540667,0.223873,0.340749,0.106535,0.00851154,0.841333,0.599957,0.871104,0.323546,0.0914223,0.516952,0.682787,0.286656,0.264754,0.780953,0.128316,0.110316,0.103123,0.0863911,0.387833,0.433733,0.170263,0.810216,0.43923,0.154845,0.314968,0.670021,0.261872,0.723087,0.967133,0.133592,0.0250685,0.148034,0.552062,0.808691,0.0336627,0.558986,0.109544,0.816338,0.958052,0.0607426,0.25281,0.399546,0.790681,0.00831085,0.842027,0.275621,0.126939,0.831505,0.736284,0.365735,0.667711,0.810579,0.318659,0.0377609,0.523633,0.541936,0.56366,0.425626,0.857794,0.281962,0.810434,0.233457,0.449091,0.389959,0.463608,0.875794,0.650623,0.994137,0.201479,0.71632,0.798312,0.122236,0.606577,0.261955,0.2519,0.244031,0.104294,0.825489,0.44588,0.157942,0.0200984,0.790361,0.073825,0.0688384,0.57054,0.900014,0.935738,0.0427708,0.112209,0.89055,0.734278,0.911461,0.334889,0.360726,0.04149,0.875302,0.232518,0.912768,0.294105,0.0637811,0.426406,0.505539,0.576719,0.505916,0.285224,0.838275,0.13767,0.172283,0.499853,0.360305,0.554652,0.403127,0.824955,0.856117,0.988187,0.884734,0.53591,0.929317,0.143601,0.0758269,0.139123,0.158546,0.606427,0.876429,0.637063,0.508925,0.152518,0.638423,0.901596,0.754886,0.500157,0.622224,0.126992,0.89793,0.839259,0.640433,0.770526,0.675293,0.503236,0.708593,0.941564,0.55178,0.072263,0.0151204,0.946759,0.793558,0.802964,0.38559,0.684007,0.906372,0.505619,0.370298,0.281018,0.0772848,0.665772,0.665024,0.291701,0.133322,0.723089,0.790588,0.33152,0.0392546,0.397694,0.434997,0.491619,0.686032,0.824093,0.975392,0.474887,0.363978,0.73417,0.927882,0.46661,0.45664,0.564285,0.289371,0.341528,0.485507,0.846068,0.47604,0.183586,0.991054,0.280156,0.334244,0.249446,0.557111,0.912183,0.996743,0.451065,0.908581,0.76105,0.895174,0.793447,0.475478,0.782847,0.807261,0.296453,0.915076,0.0821311,0.31959,0.912122,0.158997,0.0864905,0.646357,0.722583,0.606918,0.838465,0.487001,0.576194,0.622222,0.278763,0.187684,0.572692,0.961479,0.764246,0.43294,0.972725,0.774813,0.669986,0.807609,0.752891,0.17229,0.997016,0.76869,0.187371,0.0237764,0.587523,0.341223,0.836455,0.389981,0.241939,0.107272,0.230786,0.546781,0.490504,0.189055,0.294911,0.337716,0.196846,0.704505,0.632272,0.0994296,0.123492,0.880293,0.296366,0.202718,0.50642,0.5364,0.655906,0.0840461,0.344769,0.359815,0.70665,0.280837,0.0483987,0.293953,0.811433,0.113776,0.253796,0.0639886,0.63821,0.52585,0.172903,0.411724,0.286881,0.318655,0.656727,0.167481,0.587697,0.920727,0.968855,0.818208,0.2805,0.700792,0.322676,0.612424,0.986758,0.85069,0.0477884,0.419637,0.308008,0.933296,0.842431,0.541733,0.49586,0.931723,0.642234,0.799871,0.156599,0.669432,0.415974,0.3598,0.959323,0.273683,0.227658,0.78974,0.673715,0.0967859,0.34886,0.0321286,0.758169,0.619595,0.0740135,0.245022,0.179679,0.779544,0.58182,0.67832,0.456711,0.975453,0.407654,0.424295,0.747304,0.101161,0.839609,0.756039,0.891929,0.377269,0.253533,0.490249,0.627306,0.605564,0.939185,0.95461,0.0283967,0.303303,0.030573,0.328894,0.679241,0.700117,0.608044,0.616751,0.209741,0.112115,0.830216,0.105075,0.309293,0.323011,0.017058,0.735168,0.900233,0.0578635,0.694957,0.248069,0.549605,0.000771999,0.860943,0.292945,0.25803,0.875431,0.966694,0.909381,0.687058,0.561457,0.0943426,0.353554,0.259713,0.464433,0.878578,0.365999,0.399603,0.129761,0.147429,0.809672,0.206828,0.638594,0.597879,0.0719154,0.678899,0.615823,0.56852,0.541337,0.932886,0.436727,0.956171,0.541124,0.0689087,0.742926,0.353633,0.623761,0.268275,0.949948,0.0819549,0.890258,0.611877,0.987028,0.980274,0.906654,0.891165,0.505487,0.960876,0.315239,0.223564,0.72618,0.36847,0.833094,0.390626,0.800345,0.156831,0.922539,0.68773,0.477645,0.581099,0.366318,0.882268,0.714558,0.599705,0.497859,0.393499,0.32837,0.391673,0.983081,0.46723,0.075504,0.543967,0.392438,0.394138,0.769464,0.0828761,0.191586,0.0680583,0.3061,0.124543,0.475103,0.0353251,0.890012,0.251815,0.281509,0.83011,0.764081,0.536113,0.254329,0.570513,0.997352,0.671736,0.75867,0.554624,0.835718,0.915607,0.699902,0.500075,0.960929,0.334619,0.371226,0.823145,0.569429,0.110722,0.0051223,0.359794,0.906354,0.917607,0.45418,0.59014,0.767941,0.409578,0.846878,0.0204352,0.191999,0.292406,0.309858,0.541818,0.932712,0.57343,0.326533,0.296149,0.868853,0.72754,0.740015,0.599734,0.157771,0.311264,0.886431,0.471841,0.316861,0.0195217,0.353335,0.726709,0.0331931,0.855774,0.580749,0.183183,0.182598,0.669031,0.886864,0.235599,0.128042,0.355075,0.240323,0.377014,0.964833,0.576154,0.597402,0.821412,0.643422,0.895956,0.584297,0.773758,|0.678366,0.483659,0.29125,0.0311094,0.0909134,0.450878,0.954523,0.247547,0.727945,0.823977,0.302392,0.0782861,0.082406,0.357855,0.870979,0.137176,0.478678,0.849115,0.214192,0.849223,0.204258,0.410514,0.455977,0.479443,0.251485,0.839621,0.418169,0.0763314,0.128774,0.700007,0.407061,0.30026,0.76072,0.46558,0.771287,0.78314,0.370042,0.245315,0.325471,0.141099,0.115841,0.429898,0.878392,0.187301,0.866855,0.18788,0.402597,0.0444079,0.654671,0.610604,0.250941,0.617339,0.211205,0.476587,0.387733,0.287636,0.471912,0.982009,0.908112,0.539196,0.547889,0.983483,0.430996,0.127131,0.379937,0.0759983,0.302692,0.504015,0.538474,0.877215,0.349805,0.891802,0.526901,0.411578,0.710186,0.925062,0.842889,0.243057,0.261093,0.782317,0.136862,0.398398,0.686658,0.16725,0.141158,0.699662,0.816198,0.797168,0.277161,0.0448151,0.32161,0.940704,0.217591,0.214997,0.545532,0.690142,0.847074,0.850051,0.274416,0.997439,0.068588,0.157811,0.627551,0.566385,0.47038,0.130656,0.815474,0.0554516,0.843328,0.290338,0.224254,0.905465,0.817515,0.705758,0.399749,0.555577,0.603547,0.304905,0.658027,0.993974,0.509948,0.293639,0.543193,0.0477155,0.309334,0.935918,0.0146963,0.599356,0.547369,0.334074,0.764686,0.941294,0.771544,0.235984,0.359492,0.294128,0.254129,0.287201,0.228372,0.982132,0.408695,0.723177,0.302705,0.683847,0.567927,0.452511,0.746082,0.972263,0.735875,0.448333,0.670767,0.810037,0.968879,0.230133,0.170488,0.322782,0.00555301,0.935118,0.162053,0.101542,0.976339,0.0220949,0.514473,0.58027,0.000811458,0.48053,0.201902,0.766468,0.55366,0.507149,0.738191,0.250021,0.960217,0.119442,0.957326,0.142671,0.632461,0.932488,0.696608,0.284802,0.321049,0.535566,0.228853,0.710707,0.0561532,0.106188,0.297519,0.204781,0.230848,0.327224,0.917019,0.280838,0.0380511,0.70266,0.627239,0.636226,0.547676,0.796507,0.815456,0.16042,0.40066,0.441015,0.306159,0.889515,0.848958,0.387863,0.178184,0.00256884,0.941166,0.587498,0.989687,0.435075,0.972074,0.866432,0.330874,0.644966,0.992149,0.0832226,0.382286,0.234773,0.338858,0.884073,0.175383,0.00388402,0.363666,0.705138,0.558375,0.799181,0.56011,0.0554042,0.387095,0.742909,0.259133,0.81833,0.0525448,0.249128,0.287832,0.114948,0.995658,0.864391,0.720833,0.314095,0.995385,0.993122,0.126712,0.860121,0.248175,0.00569022,0.934986,0.669243,0.400134,0.192526,0.734755,0.760673,0.822999,0.916495,0.460546,0.259019,0.308856,0.165735,0.146411,0.173427,0.901243,0.77026,0.228348,0.863859,0.542273,0.821068,0.9033,0.551261,0.0743603,0.000823498,0.602525,0.912095,0.930402,0.240728,0.293484,0.512256,0.404853,0.163531,0.833392,0.8227,0.900162,0.185734,0.00843638,0.216782,0.73005,0.786418,0.273059,0.304132,0.0607436,0.0968133,0.0277767,0.770213,0.190941,0.917959,0.419023,0.145455,0.0676258,0.29772,0.552883,0.169989,0.100782,0.17642,0.822699,0.28763,0.298992,0.300363,0.655534,0.386413,0.0826001,0.423094,0.154544,0.981505,0.976581,0.651794,0.647555,0.562711,0.790488,0.861022,0.171101,0.973087,0.181733,0.441634,0.25469,0.503603,0.372708,0.256181,0.751554,0.468033,0.550389,0.435447,0.646725,0.0928933,0.222893,0.982674,0.576058,0.521836,0.246859,0.0539727,0.42795,0.804693,0.697101,0.7597,0.215997,0.378881,0.582635,0.581306,0.192059,0.955477,0.714789,0.671659,0.0450516,0.01612,0.635934,0.0130726,0.331472,0.873389,0.769178,0.46509,0.536028,0.227332,0.213859,0.759966,0.0502583,0.899562,0.0911851,0.496097,0.393449,0.270599,0.668566,0.807728,0.275087,0.885838,0.59823,0.414154,0.118277,0.641446,0.666192,0.0762696,0.650923,0.689881,0.145729,0.49873,0.374045,0.073938,0.149341,0.292094,0.223971,0.0552166,0.661369,0.102865,0.19834,0.874603,0.247618,0.598484,0.167848,0.420389,0.444107,0.0663918,0.248292,0.615255,0.764016,0.0313576,0.863838,0.311123,0.038685,0.712881,0.155386,0.0467619,0.769062,0.0773662,0.627675,0.849335,0.64201,0.424488,0.280765,0.861155,0.158828,0.471657,0.768021,0.5002,0.857845,0.116472,0.421381,0.705699,0.736105,0.532689,0.45536,0.308125,0.239434,0.336663,0.75333,0.0398215,0.791216,0.367272,0.112327,0.259094,0.866567,0.221293,0.991039,0.491276,0.0341355,0.797336,0.946171,0.0427431,0.432221,0.654996,0.529759,0.589886,0.93164,0.0810943,0.609057,0.452723,0.71289,0.616051,0.406265,0.381492,0.899511,0.797686,0.604387,0.613737,0.351755,0.0548987,0.747752,0.226069,0.386783,0.451438,0.106068,0.258268,0.497662,0.253426,0.0471514,0.00973803,0.235548,0.285256,0.501016,0.217677,0.454619,0.253702,0.77325,0.731189,0.0580871,0.00804055,0.958751,0.292937,0.646426,0.776401,0.864078,0.38996,0.910907,0.069415,0.785754,0.839523,0.791176,0.382396,0.622554,0.467792,0.4998,0.62111,0.140796,0.841463,0.527518,0.677399,0.600927,0.722168,0.00429016,0.107226,0.160301,0.978722,0.423007,0.915978,0.799059,0.309295,0.10728,0.226712,0.570493,0.275266,0.42886,0.44079,0.403132,0.199779,0.446878,0.238756,0.381226,0.768426,0.742889,0.997083,0.950651,0.724028,0.220576,0.946876,0.92842,0.379395,0.40273,0.756491,0.998646,0.201413,0.783486,0.168217,0.629731,0.154834,0.125054,0.0975711,0.329301,0.659092,0.414224,0.55538,0.290499,0.0146526,0.762557,0.458651,0.270963,0.845703,0.1496,0.896898,0.17723,0.810421,0.0145237,0.889578,0.1188,0.729735,0.0652871,0.606214,0.812939,0.00759906,0.228709,0.0897737,0.432831,0.479498,0.732316,0.49793,0.246493,0.65355,0.725478,0.636543,0.223406,0.55109,0.265923,0.959722,0.85612,0.175771,0.178959,0.673599,0.648217,0.864234,0.458189,0.902526,0.0308378,0.712507,0.030335,0.610328,0.368048,0.285013,0.155693,0.169035,0.0732238,0.32011,0.181201,0.202146,0.751575,0.518074,0.64777,0.33529,0.819131,0.223437,0.681789,0.557199,0.843999,0.646718,0.0877581,0.763535,0.244832,0.217582,0.693378,0.467901,0.0870393,0.179051,0.31836,0.74181,0.295301,0.934839,0.447594,0.800473,0.520514,0.680014,0.714018,0.106895,0.255317,0.615605,0.25104,0.973069,0.765017,0.164517,0.805027,0.0323731,0.0170069,0.91052,0.860554,0.698264,0.375042,0.287224,0.0369241,0.22447,0.0213078,0.570334,0.367903,0.470059,0.778328,0.241085,0.0631982,0.334293,0.242444,0.583038,0.826955,0.288098,0.742076,0.202531,0.530586,0.745305,0.504694,0.284628,0.841076,0.596959,0.406452,0.864723,0.1962,0.221402,0.839664,0.314208,0.241088,0.662397,0.0145673,0.357431,0.378216,0.355547,0.476886,0.938508,0.200705,0.436663,0.053392,0.858854,0.987968,0.396197,0.174545,0.386877,0.863883,0.948595,0.134106,0.931782,0.111791,0.0328466,0.755754,0.413625,0.344018,0.917823,0.239861,0.101746,0.620543,0.283086,0.342592,0.430784,0.195831,0.962581,0.830645,0.168835,0.364589,0.683856,0.625929,0.20684,0.381394,0.682326,0.676676,0.866146,0.567043,0.654644,0.620917,0.0774555,0.653473,0.516511,0.415269,0.998882,0.630261,0.0792447,0.409738,0.820048,0.538532,0.244308,0.669109,0.343718,0.488982,0.12598,0.331638,0.857988,0.00657052,0.5431,0.383213,0.0469322,0.712296,0.719606,0.0133491,0.276842,0.605949,0.312426,0.669837,0.841032,0.454246,0.600409,0.365871,0.743475,0.783331,0.536928,0.368671,0.794835,0.854915,0.24457,0.0206203,0.0669578,0.374418,0.912981,0.515835,0.628327,0.691899,0.874308,0.43829,0.524095,0.225815,0.122313,0.460171,0.789167,0.896701,0.696288,0.548209,0.748287,0.707417,0.863803,0.277068,0.544592,0.266608,0.401034,0.326885,0.166474,0.599263,0.840247,0.688014,0.0277077,0.381474,0.371878,0.0294097,0.872851,0.0743461,0.0892282,0.0666858,0.635963,0.215755,0.369848,0.911929,0.00525731,0.129055,0.0773625,0.836921,0.763927,0.0114073,0.44669,0.0496408,0.252003,0.661129,0.372673,0.0701954,0.878135,0.502634,0.0800593,0.0422553,0.20937,0.0788606,0.735186,0.897449,0.864567,0.162296,0.984271,0.645189,0.231482,0.342062,0.830645,0.933704,0.215579,0.389496,0.306235,0.162572,0.422175,0.0155135,0.143237,0.675652,0.150119,0.00751287,0.221719,0.6044,0.0803856,0.810889,0.353137,0.611616,0.004067,0.79928,0.481117,0.005216,0.637044,0.43787,0.662967,0.373601,0.789608,0.399343,0.258595,0.440369,0.0331935,0.612652,0.747128,0.631343,0.578949,0.903556,0.850253,0.261688,0.344204,0.325342,0.180957,0.976009,0.267819,0.760226,0.705923,0.594059,0.137168,0.484557,0.33324,0.452106,0.666506,0.548756,0.428024,0.688104,0.173473,0.585138,0.631656,0.204438,0.685587,0.919863,0.715125,0.346392,0.213441,0.406067,0.0963848,0.308256,0.71725,0.83861,0.236416,0.14661,0.860899,0.736724,0.36064,0.990197,0.818138,0.0618504,0.31098,0.856254,0.412269,0.633884,0.254979,0.574663,0.581925,0.0403592,0.924363,0.374334,0.70588,0.454396,0.745652,0.0982714,0.235524,0.654338,0.393743,0.744786,0.501426,0.572965,0.236357,0.650485,0.83294,0.311693,0.860375,0.500862,0.453343,0.0673465,0.0877898,0.466991,0.266803,0.552963,0.943984,0.160363,0.387588,0.23374,0.633983,0.837027,0.928873,0.207471,0.569757,0.587059,0.0546389,0.293066,0.412063,0.63559,0.598646,0.305829,0.457494,0.141443,0.436292,0.29307,0.573715,0.707105,0.415466,0.401884,0.618005,0.0584005,0.753757,0.774243,0.656943,0.644119,0.090281,0.574724,0.733726,0.209203,0.106142,0.399264,0.284567,0.258967,0.736659,0.439946,0.701269,0.479135,0.840392,0.0500727,0.179633,0.00841391,0.623917,0.481404,0.881526,0.125774,0.940586,0.067991,0.160098,0.641773,0.25655,0.900699,0.516207,0.556111,0.726023,0.563859,0.811965,0.914094,0.586675,0.752255,0.539358,0.171372,0.246585,0.241214,0.529843,|0.990018,0.162268,0.94611,0.628182,0.600341,0.0550489,0.879062,0.262513,0.0455395,0.759141,0.202012,0.332644,0.165052,0.0765205,0.374576,0.387451,0.16588,0.711873,0.638572,0.340933,0.714395,0.00834346,0.415926,0.652538,0.889111,0.820141,0.47622,0.549014,0.541971,0.510601,0.884999,0.0396635,0.840028,0.728429,0.855709,0.758262,0.975187,0.807884,0.482376,0.77906,0.341143,0.940865,0.587005,0.611747,0.258757,0.275823,0.402508,0.142951,0.0272046,0.716671,0.213786,0.871454,0.364632,0.779068,0.162265,0.0917714,0.86769,0.415977,0.183041,0.97293,0.709949,0.505226,0.295154,0.961411,0.370968,0.491414,0.257755,0.0627457,0.937529,0.607731,0.974237,0.509387,0.964156,0.923013,0.53977,0.481615,0.511506,0.51233,0.0360093,0.521335,0.808709,0.785542,0.0793203,0.71821,0.758393,0.212304,0.243238,0.374673,0.297835,0.64191,0.467254,0.907803,0.839542,0.187794,0.191068,0.29241,0.596354,0.139312,0.970454,0.998255,0.0767202,0.944434,0.656115,0.614644,0.661248,0.61108,0.554987,0.242102,0.838173,0.785564,0.238037,0.585767,0.149449,0.844954,0.758811,0.590096,0.846445,0.882703,0.413005,0.912874,0.75748,0.0706561,0.0804406,0.0478809,0.817214,0.402318,0.361877,0.596029,0.70154,0.61864,0.555292,0.836082,0.380888,0.89705,0.323987,0.563584,0.970588,0.527981,0.174229,0.919163,0.759673,0.804162,0.467311,0.932341,0.624642,0.147117,0.082303,0.801736,0.132153,0.359074,0.762203,0.576238,0.457468,0.697246,0.555,0.913903,0.584147,0.0105643,0.798375,0.567868,0.576247,0.905387,0.323062,0.649248,0.303954,0.836874,0.962545,0.0296755,0.929456,0.549274,0.734647,0.807715,0.469123,0.307849,0.158526,0.271205,0.59888,0.00991994,0.804517,0.991151,0.658198,0.907716,0.543452,0.0282913,0.782301,0.698966,0.978491,0.29631,0.0911587,0.997073,0.831527,0.595876,0.349567,0.125113,0.417915,0.0830312,0.496193,0.215196,0.316168,0.968722,0.056971,0.192073,0.111636,0.0817403,0.703753,0.321561,0.447367,0.332622,0.229201,0.720389,0.84949,0.169277,0.168645,0.543759,0.910082,0.555028,0.635927,0.159817,0.855574,0.119425,0.638062,0.405805,0.934831,0.0442236,0.227128,0.0522349,0.72447,0.893097,0.41346,0.260556,0.204408,0.410548,0.27502,0.507697,0.00574172,0.216455,0.116209,0.998499,0.811472,0.163898,0.150449,0.75133,0.140953,0.505219,0.454392,0.795938,0.59358,0.494753,0.51486,0.595941,0.832723,0.52497,0.68774,0.27254,0.402297,0.0557274,0.701682,0.426908,0.812207,0.140977,0.954483,0.691812,0.0438254,0.370511,0.382168,0.900261,0.306919,0.151542,0.0851005,0.143317,0.0513206,0.731933,0.148463,0.0809054,0.816026,0.275857,0.841878,0.674636,0.000533819,0.541564,0.313061,0.153167,0.164364,0.14259,0.167928,0.139969,0.356606,0.0210472,0.92118,0.0101098,0.813858,0.101235,0.562873,0.352899,0.840003,0.41893,0.900601,0.104675,0.756367,0.811547,0.105143,0.87216,0.498151,0.131804,0.37057,0.72613,0.829362,0.683457,0.723331,0.746028,0.1831,0.712119,0.562243,0.661029,0.745665,0.734966,0.549688,0.0210665,0.272492,0.237667,0.526779,0.275031,0.904133,0.589501,0.110189,0.0269945,0.728146,0.182509,0.0255288,0.553823,0.230233,0.920705,0.0274265,0.487055,0.895198,0.670154,0.636899,0.91959,0.315144,0.294363,0.924017,0.433129,0.289195,0.44343,0.322736,0.340732,0.769174,0.876921,0.187313,0.395653,0.929386,0.0624672,0.474673,0.548119,0.88601,0.784174,0.742494,0.00718522,0.259427,0.427423,0.0125144,0.726936,0.750106,0.476614,0.69887,0.649672,0.469292,0.347186,0.892281,0.972288,0.606217,0.925606,0.0740435,0.873,0.536043,0.328336,0.185412,0.752611,0.456638,0.981495,0.889781,0.0369954,0.488684,0.404747,0.018144,0.0621767,0.909683,0.733442,0.372953,0.249846,0.747573,0.0840676,0.826608,0.0228237,0.240393,0.585238,0.268506,0.571164,0.936337,0.590514,0.32835,0.945619,0.12545,0.773626,0.647201,0.431969,0.28594,0.0831652,0.607033,0.706255,0.193562,0.420899,0.370208,0.185513,0.0820565,0.202705,0.262957,0.178243,0.228946,0.910382,0.915425,0.0528073,0.317972,0.952362,0.922976,0.791106,0.843964,0.873147,0.920258,0.322481,0.173316,0.143134,0.00406277,0.728902,0.412151,0.979545,0.799215,0.793835,0.204774,0.277168,0.994882,0.419136,0.0379504,0.335449,0.116315,0.443339,0.162563,0.622919,0.0979777,0.00852901,0.349564,0.0487974,0.264436,0.626416,0.984169,0.665828,0.151281,0.658141,0.514817,0.650285,0.155247,0.561463,0.110925,0.197005,0.669952,0.871195,0.529975,0.973932,0.075334,0.850471,0.761292,0.388263,0.313638,0.888827,0.328964,0.763676,0.567389,0.755125,0.0422528,0.885029,0.064595,0.918822,0.478512,0.421757,0.198591,0.836498,0.241662,0.255868,0.210208,0.0295516,0.555881,0.258359,0.0588098,0.159522,0.0775534,0.428094,0.683114,0.856493,0.588014,0.283674,0.549701,0.410169,0.470749,0.860762,0.773465,0.377428,0.380932,0.251614,0.45437,0.194439,0.956719,0.364296,0.980433,0.895976,0.621014,0.802384,0.132847,0.632544,0.839606,0.0314145,0.0274773,0.999523,0.0931256,0.85085,0.842772,0.498796,0.974519,0.473319,0.616418,0.804438,0.751377,0.0205951,0.39657,0.225578,0.974245,0.68681,0.818519,0.230002,0.174364,0.532952,0.410963,0.899561,0.485404,0.0526541,0.736547,0.127554,0.801551,0.522926,0.983844,0.601001,0.198579,0.635979,0.592009,0.180202,0.757517,0.77122,0.957244,0.883524,0.00620711,0.578283,0.235032,0.675816,0.377476,0.260988,0.818668,0.452226,0.918288,0.00540209,0.210792,0.111305,0.19158,0.518364,0.295565,0.626852,0.389723,0.428662,0.131434,0.0761632,0.309672,0.744429,0.417602,0.835158,0.295678,0.210612,0.345738,0.37696,0.793126,0.189518,0.761084,0.0200307,0.44547,0.054582,0.830904,0.401916,0.843491,0.910411,0.634179,0.869019,0.678944,0.543576,0.164981,0.270692,0.0103688,0.0908054,0.301945,0.839337,0.148736,0.869676,0.455085,0.463294,0.493205,0.216581,0.102955,0.80599,0.337624,0.27198,0.625159,0.543525,0.566561,0.34707,0.0150782,0.316122,0.488263,0.836906,0.0761652,0.711028,0.671594,0.875579,0.0181556,0.899662,0.451756,0.639661,0.836205,0.437473,0.819383,0.157723,0.178306,0.177093,0.984326,0.342367,0.674431,0.385788,0.0741354,0.016335,0.179364,0.742804,0.594373,0.275807,0.0815715,0.452814,0.796734,0.763805,0.461174,0.013001,0.363482,0.0439287,0.823127,0.310706,0.737235,0.749313,0.00495058,0.0978232,0.197685,0.213354,0.807084,0.938348,0.0182078,0.992491,0.724099,0.898697,0.432671,0.683011,0.0770261,0.998796,0.822693,0.1481,0.229339,0.576932,0.735082,0.466441,0.882786,0.53215,0.927481,0.268572,0.48675,0.385972,0.625773,0.0221975,0.566466,0.61686,0.340553,0.28654,0.224018,0.584741,0.58545,0.946767,0.945409,0.747718,0.729268,0.504299,0.75251,0.552222,0.183824,0.450045,0.965126,0.410798,0.389566,0.772326,0.657174,0.303504,0.801413,0.98596,0.624821,0.139606,0.666934,0.093679,0.473604,0.734594,0.213932,0.680869,0.434817,0.367286,0.332496,0.719118,0.136702,0.632153,0.356707,0.326145,0.701145,0.197364,0.0282946,0.517961,0.2012,0.400986,0.598122,0.0171173,0.542596,0.0209914,0.438182,0.498001,0.58553,0.0451655,0.132592,0.868691,0.739367,0.185956,0.841052,0.793463,0.638531,0.708561,0.389877,0.343767,0.0084613,0.9258,0.0537394,0.360232,0.878389,0.916055,0.967573,0.122826,0.531614,0.343047,0.600967,0.491389,0.430026,0.287161,0.0490056,0.674618,0.051291,0.0664962,0.746035,0.985674,0.487632,0.814486,0.49212,0.963266,0.826027,0.946855,0.173452,0.256452,0.773156,0.325477,0.822265,0.535995,0.380753,0.686214,0.178726,0.627189,0.0167328,0.881849,0.395143,0.409059,0.0905591,0.804141,0.312829,0.850538,0.711484,0.868563,0.123231,0.125808,0.173163,0.645947,0.258943,0.248778,0.448586,0.286856,0.46437,0.346315,0.743913,0.486113,0.918655,0.894418,0.232072,0.215312,0.868024,0.573204,0.534227,0.149277,0.548085,0.0462768,0.886823,0.78445,0.758979,0.726185,0.492896,0.432576,0.79302,0.789794,0.157276,0.69647,0.813925,0.938639,0.00775462,0.129848,0.0175167,0.394573,0.574898,0.463482,0.970021,0.212619,0.58973,0.436989,0.22608,0.448766,0.173375,0.868444,0.240571,0.428495,0.560389,0.273301,0.909881,0.545042,0.839246,0.592832,0.68416,0.450144,0.915124,0.0190478,0.677118,0.0689765,0.385269,0.313575,0.489455,0.333042,0.221845,0.522651,0.150121,0.178154,0.853705,0.982148,0.913052,0.249918,0.993521,0.0912482,0.83418,0.114181,0.650331,0.819478,0.32199,0.206922,0.281434,0.653893,0.658566,0.789548,0.776856,0.257958,0.42759,0.770986,0.579377,0.355067,0.324451,0.827029,0.756715,0.483324,0.870173,0.952649,0.911641,0.0844156,0.695595,0.472318,0.0533355,0.939405,0.573271,0.759937,0.0106044,0.166893,0.819602,0.53736,0.643107,0.842385,0.779421,0.196816,0.0658594,0.334221,0.165496,0.620463,0.566027,0.563492,0.703342,0.497552,0.314384,0.586015,0.802682,0.204753,0.725559,0.256502,0.242747,0.10053,0.778275,0.432605,0.12768,0.965807,0.897385,0.425234,0.732072,0.21453,0.204185,0.611155,0.88237,0.311675,0.235427,0.635892,0.380393,0.572664,0.621388,0.264857,0.979307,0.926137,0.445928,0.745603,0.583733,0.354139,0.98062,0.423668,0.387414,0.242668,0.521234,0.897797,0.108602,0.123954,0.488236,0.862612,0.257211,0.678351,0.318762,0.666075,0.271924,0.665297,0.884634,0.600278,0.27266,0.343736,0.387684,0.653673,0.691346,0.400563,0.716972,0.349238,0.936294,0.800369,0.433373,0.468993,0.641306,0.811047,0.994226,0.161538,0.486816,0.906072,0.400657,0.146406,0.311293,0.053799,0.546473,0.432963,0.849368,0.783462,0.272773,0.298724,0.579931,0.111785,|0.281757,0.631476,0.742056,0.619728,0.870576,0.0666614,0.338295,0.419175,0.516147,0.0920247,0.543233,0.143165,0.349745,0.199048,0.445875,0.97718,0.59965,0.61379,0.237992,0.953592,0.360305,0.810419,0.515111,0.208189,0.718834,0.354023,0.975848,0.614621,0.31912,0.267761,0.286562,0.978019,0.0435588,0.50084,0.806069,0.147209,0.85174,0.39739,0.494213,0.0332116,0.332276,0.75591,0.518083,0.637533,0.437256,0.625496,0.855023,0.0512818,0.6146,0.148581,0.657035,0.426972,0.380177,0.438437,0.263829,0.525343,0.98271,0.267527,0.962366,0.352165,0.489572,0.061322,0.651127,0.837812,0.149675,0.382796,0.571607,0.914413,0.32409,0.563214,0.152303,0.631266,0.402751,0.894691,0.0279824,0.735937,0.887933,0.018066,0.953616,0.390997,0.396758,0.384888,0.766136,0.199627,0.378593,0.603209,0.417216,0.939196,0.773994,0.875697,0.414573,0.804285,0.198523,0.729975,0.471456,0.248418,0.209437,0.377432,0.957033,0.555926,0.217905,0.98193,0.950714,0.205351,0.368823,0.909056,0.426716,0.721397,0.771397,0.115191,0.194814,0.39562,0.886763,0.929444,0.449335,0.6263,0.140591,0.917248,0.522717,0.120342,0.57483,0.50263,0.596983,0.0541503,0.494964,0.321139,0.409906,0.0854142,0.890133,0.426678,0.850326,0.210016,0.30402,0.933813,0.117169,0.446503,0.752572,0.973012,0.118222,0.903284,0.580051,0.582849,0.433648,0.185331,0.0629382,0.0580153,0.468605,0.150288,0.232036,0.765789,0.766312,0.481978,0.920978,0.653208,0.457561,0.166521,0.291017,0.659892,0.325437,0.721745,0.679342,0.61545,0.604036,0.867487,0.720705,0.85297,0.587636,0.768538,0.475182,0.428249,0.519595,0.0282016,0.552602,0.140892,0.104508,0.723877,0.955618,0.918643,0.0545972,0.331764,0.0438494,0.747652,0.945791,0.951502,0.660627,0.620091,0.722924,0.400348,0.147255,0.88078,0.556666,0.344856,0.713603,0.11033,0.60605,0.968169,0.665297,0.616866,0.575533,0.412632,0.76681,0.112041,0.62226,0.926124,0.782775,0.447179,0.905696,0.770442,0.150762,0.690882,0.854314,0.339106,0.349705,0.769395,0.268672,0.951252,0.10301,0.984853,0.135245,0.79782,0.383936,0.195747,0.348086,0.330677,0.130241,0.9323,0.840572,0.746773,0.428563,0.302589,0.80193,0.386356,0.523606,0.503783,0.906702,0.176477,0.236777,0.605157,0.0509989,0.067537,0.939975,0.966546,0.739684,0.383158,0.873777,0.792123,0.912284,0.424456,0.256998,0.839725,0.49939,0.404835,0.451956,0.413031,0.867866,0.542281,0.71162,0.451946,0.803599,0.522474,0.109365,0.638648,0.308986,0.190976,0.967951,0.911416,0.00858057,0.619795,0.507192,0.631255,0.529085,0.132748,0.306446,0.48528,0.31909,0.01642,0.741541,0.159752,0.963205,0.92568,0.939784,0.403444,0.614043,0.389477,0.552057,0.109696,0.637919,0.751215,0.724441,0.61407,0.415863,0.96479,0.898427,0.82272,0.898688,0.146032,0.0152317,0.256955,0.742323,0.685451,0.590237,0.887612,0.668336,0.479916,0.589063,0.221283,0.898479,0.40767,0.530868,0.14697,0.79292,0.969379,0.123408,0.270009,0.646964,0.306008,0.996525,0.833389,0.38522,0.118138,0.0553648,0.470272,0.413322,0.200821,0.459646,0.917017,0.172929,0.46779,0.177701,0.462696,0.969181,0.819537,0.870581,0.744535,0.81209,0.80243,0.115517,0.453969,0.184238,0.0388244,0.457211,0.938718,0.15208,0.938554,0.984805,0.991038,0.479554,0.358311,0.985744,0.233297,0.406756,0.924533,0.225465,0.578988,0.744712,0.67243,0.638983,0.201356,0.566087,0.143272,0.279745,0.256579,0.601235,0.232531,0.525556,0.00478345,0.845232,0.58743,0.473328,0.991608,0.0818093,0.633329,0.589229,0.210178,0.640464,0.062924,0.931652,0.502568,0.444177,0.23278,0.226592,0.022187,0.446642,0.990084,0.200561,0.327408,0.423256,0.943036,0.926228,0.674909,0.148736,0.722301,0.180606,0.72532,0.14884,0.370611,0.188854,0.292908,0.828397,0.568583,0.584568,0.325864,0.783615,0.844041,0.82239,0.90216,0.943771,0.968597,0.51589,0.0352166,0.349615,0.698333,0.617458,0.430681,0.0973966,0.398339,0.424379,0.516999,0.513057,0.820776,0.477105,0.931151,0.0153168,0.180873,0.71282,0.724778,0.386969,0.510819,0.14155,0.64586,0.901995,0.164511,0.0865837,0.213825,0.990549,0.93378,0.227559,0.812802,0.194235,0.248588,0.836157,0.0195144,0.931341,0.0840144,0.201812,0.194247,0.387563,0.867585,0.699462,0.0598178,0.0974022,0.66594,0.854409,0.266064,0.099344,0.985164,0.273763,0.611496,0.265357,0.545046,0.745945,0.45702,0.614113,0.847991,0.679051,0.955725,0.315415,0.686468,0.983153,0.0227475,0.67299,0.641904,0.561722,0.0568034,0.0136562,0.558789,0.235213,0.633046,0.523578,0.741195,0.60471,0.639905,0.402073,0.544958,0.897601,0.269316,0.437363,0.0602164,0.15375,0.980026,0.404926,0.588777,0.0299071,0.408673,0.778669,0.500881,0.0784039,0.238594,0.862055,0.145452,0.258795,0.156251,0.520073,0.698489,0.807978,0.440653,0.162621,0.719912,0.0954184,0.758467,0.711052,0.687441,0.728818,0.0633593,0.470417,0.186279,0.192718,0.99959,0.592754,0.778098,0.236964,0.565444,0.580422,0.89072,0.888411,0.354018,0.158585,0.84089,0.480438,0.380538,0.381477,0.265937,0.963893,0.642316,0.682852,0.67421,0.976655,0.0970938,0.865626,0.697579,0.791391,0.128186,0.529119,0.441112,0.723598,0.965701,0.193417,0.961626,0.951371,0.542065,0.938634,0.36113,0.765758,0.192157,0.555795,0.69773,0.723836,0.25004,0.891046,0.742465,0.601722,0.331941,0.860244,0.60583,0.654504,0.771773,0.280555,0.315952,0.705491,0.252712,0.961829,0.633796,0.244664,0.377882,0.380842,0.32293,0.294296,0.104368,0.0307326,0.36559,0.348613,0.440537,0.957885,0.51915,0.58918,0.61993,0.613522,0.199291,0.481215,0.362482,0.0764157,0.0334313,0.00113028,0.877278,0.656918,0.0191404,0.786429,0.87686,0.112925,0.388986,0.668724,0.947429,0.649034,0.752805,0.569146,0.62559,0.266285,0.224314,0.336235,0.0413008,0.951003,0.216896,0.179075,0.372581,0.268524,0.145414,0.866921,0.0118935,0.249567,0.721496,0.866712,0.312267,0.00211447,0.743075,0.570522,0.442902,0.183647,0.109168,0.349318,0.0679903,0.223244,0.182659,0.0199919,0.127618,0.738734,0.227951,0.474667,0.39487,0.269118,0.824095,0.762863,0.567052,0.0805708,0.549968,0.822075,0.272078,0.712096,0.914668,0.437156,0.779873,0.0261578,0.406834,0.421397,0.807927,0.540484,0.7026,0.755453,0.431565,0.970779,0.903411,0.957974,0.832368,0.790989,0.0881743,0.472734,0.428751,0.718251,0.659178,0.254101,0.70843,0.960394,0.371148,0.296922,0.324451,0.582896,0.380859,0.0553941,0.172605,0.198486,0.151447,0.08349,0.578254,0.157973,0.92292,0.334439,0.777325,0.805961,0.0707843,0.54785,0.277055,0.703494,0.924781,0.991887,0.688525,0.0514423,0.708112,0.489185,0.444127,0.217855,0.456124,0.739387,0.492499,0.472402,0.177862,0.0351198,0.207269,0.584113,0.461273,0.7635,0.11965,0.969901,0.17778,0.757628,0.135971,0.774566,0.115009,0.567279,0.145507,0.814933,0.328609,0.48337,0.837959,0.176573,0.399141,0.223397,0.640216,0.514019,0.0656061,0.12639,0.824861,0.520659,0.322038,0.404266,0.296583,0.669926,0.279824,0.298559,0.0827277,0.356428,0.000501573,0.819249,0.389987,0.775537,0.311036,0.728661,0.351182,0.943643,0.408526,0.527762,0.00367367,0.948793,0.00617337,0.473103,0.648951,0.319116,0.573538,0.661972,0.436168,0.0838278,0.436564,0.903504,0.0100997,0.0984516,0.315508,0.389821,0.460039,0.168644,0.701,0.738934,0.460374,0.453607,0.368293,0.797748,0.572128,0.227776,0.109896,0.969967,0.233674,0.911667,0.342147,0.549531,0.421812,0.88827,0.0237126,0.35247,0.37239,0.281001,0.930232,0.121952,0.114052,0.645128,0.823653,0.66934,0.940523,0.395223,0.339612,0.159979,0.637849,0.706896,0.122869,0.971118,0.158566,0.425962,0.350693,0.268919,0.405142,0.369981,0.470161,0.178544,0.734957,0.928103,0.904574,0.0192783,0.786796,0.802281,0.206112,0.809567,0.0608392,0.997835,0.0462491,0.154992,0.761115,0.391996,0.484783,0.148136,0.842935,0.721634,0.999391,0.873029,0.880036,0.46584,0.236875,0.945835,0.0391693,0.0909791,0.622554,0.752372,0.0935256,0.85551,0.740499,0.855006,0.956911,0.298072,0.829858,0.320085,0.305658,0.960751,0.384116,0.684409,0.606525,0.284344,0.171652,0.262743,0.338911,0.232393,0.306778,0.846096,0.0536333,0.0557857,0.907041,0.716316,0.309275,0.376679,0.81926,0.457896,0.0448886,0.343542,0.880847,0.344631,0.57409,0.491016,0.848056,0.830078,0.0496451,0.220327,0.393605,0.208349,0.676886,0.0284708,0.101008,0.217444,0.818874,0.17692,0.797554,0.950716,0.00706023,0.0588428,0.261614,0.97862,0.0563987,0.808321,0.0392775,0.359826,0.530916,0.557704,0.773181,0.296215,0.185606,0.0121474,0.830533,0.770328,0.254311,0.974749,0.643854,0.543855,0.860405,0.620043,0.115582,0.372523,0.507164,0.150788,0.239032,0.296675,0.161163,0.129122,0.498891,0.45136,0.157924,0.0665322,0.000109911,0.211445,0.831408,0.593486,0.62371,0.184138,0.549302,0.599158,0.873617,0.643434,0.659903,0.422381,0.795569,0.144655,0.00134319,0.939649,0.187828,0.690092,0.331204,0.261514,0.92515,0.61541,0.768129,0.650671,0.618851,0.00672352,0.721378,0.246888,0.234754,0.255161,0.353861,0.587589,0.680989,0.411356,0.347399,0.805962,0.0895773,0.830885,0.557072,0.720739,0.578919,0.23565,0.918337,0.945758,0.802461,0.58711,0.83356,0.588358,0.576925,0.411075,0.733252,0.622506,0.92462,0.0313925,0.697036,0.145143,0.17396,0.946894,0.0797291,0.943287,0.652515,0.559573,0.745587,0.89299,0.159496,0.251002,0.150212,0.849925,0.660458,0.53332,0.839563,0.871878,0.664575,0.713508,0.613879,0.537908,0.473717,0.62525,0.352467,0.222178,0.162831,|0.625692,0.938407,0.679442,0.384353,0.329577,0.761053,0.137831,0.662032,0.405752,0.58473,0.927876,0.749882,0.973597,0.873291,0.855254,0.264787,0.741989,0.177675,0.0229469,0.089071,0.837024,0.575134,0.635915,0.145031,0.837023,0.248905,0.675988,0.0965472,0.0601423,0.537593,0.158141,0.600683,0.264816,0.232376,0.898739,0.0691602,0.770468,0.434597,0.870039,0.652205,0.566233,0.028477,0.0167759,0.0884824,0.622794,0.908071,0.157987,0.00203127,0.367783,0.27159,0.18611,0.691705,0.633159,0.305592,0.789754,0.957485,0.63398,0.180871,0.490466,0.282176,0.390507,0.504346,0.984799,0.081663,0.176655,0.160479,0.342063,0.33822,0.985638,0.593994,0.968159,0.43297,0.305954,0.500544,0.348164,0.740018,0.360309,0.298168,0.373097,0.64051,0.884634,0.0656531,0.646867,0.903753,0.753526,0.244829,0.482147,0.447455,0.779467,0.559062,0.182671,0.897187,0.322801,0.403702,0.659859,0.773194,0.304217,0.167022,0.25246,0.498062,0.0852226,0.0545154,0.137888,0.829533,0.151438,0.435688,0.764949,0.267954,0.545995,0.316736,0.604223,0.161691,0.419431,0.898011,0.390705,0.878933,0.710564,0.0645602,0.516843,0.173655,0.162755,0.642295,0.940586,0.128628,0.454523,0.618215,0.128079,0.0394392,0.534363,0.0246748,0.589433,0.479419,0.207128,0.342908,0.459335,0.370615,0.00641322,0.323966,0.0253015,0.588409,0.390702,0.676285,0.419739,0.530067,0.830994,0.409898,0.00913888,0.368928,0.149808,0.855129,0.448022,0.912349,0.139298,0.139163,0.56823,0.438809,0.0854529,0.731555,0.827502,0.480106,0.174997,0.741306,0.42037,0.157106,0.367468,0.921876,0.531463,0.311172,0.562841,0.389605,0.850166,0.920262,0.444985,0.461738,0.362289,0.848033,0.84487,0.530355,0.00655055,0.488101,0.0637655,0.518925,0.946147,0.805121,0.26341,0.30134,0.785616,0.601367,0.36996,0.643857,0.878881,0.436058,0.468196,0.349945,0.592858,0.147728,0.213468,0.386934,0.960672,0.633135,0.340481,0.521186,0.2063,0.652228,0.822906,0.526995,0.889257,0.381763,0.161608,0.164265,0.381912,0.416869,0.730021,0.490369,0.0503036,0.114891,0.966999,0.394692,0.647086,0.189648,0.148782,0.798297,0.628185,0.185127,0.441782,0.679507,0.204853,0.7381,0.347735,0.0456484,0.652939,0.774206,0.791955,0.192859,0.820485,0.272212,0.419435,0.378393,0.937493,0.999575,0.536682,0.94501,0.825027,0.434112,0.0941542,0.686887,0.0371794,0.000134528,0.0938188,0.817155,0.331406,0.718195,0.898971,0.177633,0.210872,0.537721,0.337731,0.402952,0.0384668,0.379215,0.698364,0.103405,0.503973,0.580126,0.940744,0.633802,0.146132,0.636895,0.25303,0.955947,0.719607,0.509732,0.159759,0.19053,0.940574,0.812181,0.286358,0.380536,0.743467,0.534354,0.312392,0.237384,0.339428,0.342217,0.938812,0.311938,0.858201,0.454759,0.965497,0.466956,0.00042057,0.714194,0.580677,0.946675,0.0914718,0.0977167,0.834287,0.273401,0.878686,0.718752,0.32486,0.156711,0.910938,0.397168,0.945236,0.671646,0.806244,0.764952,0.081961,0.0132064,0.42349,0.843113,0.351018,0.526057,0.268636,0.0714848,0.769365,0.660401,0.990828,0.695365,0.114457,0.684625,0.999701,0.408524,0.135415,0.998023,0.404096,0.48606,0.337911,0.690812,0.205466,0.872554,0.841036,0.647207,0.622084,0.869167,0.382465,0.646287,0.309634,0.450194,0.449819,0.518259,0.109187,0.953238,0.836225,0.262083,0.266052,0.971154,0.450498,0.836836,0.899804,0.046084,0.159881,0.26821,0.954442,0.0765148,0.656673,0.800065,0.0686284,0.159168,0.286596,0.504828,0.395312,0.749775,0.440976,0.895113,0.755622,0.857199,0.761966,0.291469,0.737343,0.380508,0.0141391,0.604732,0.21547,0.0965261,0.500394,0.903556,0.561887,0.244287,0.222085,0.641331,0.602788,0.491108,0.096486,0.834341,0.905815,0.489262,0.00397515,0.233015,0.742672,0.113322,0.951497,0.331973,0.162628,0.83229,0.537456,0.0338767,0.820988,0.430467,0.297359,0.767717,0.709402,0.938106,0.323988,0.893729,0.570735,0.785616,0.580982,0.924633,0.160554,0.143752,0.415344,0.0975572,0.508471,0.990633,0.665714,0.320879,0.854692,0.421059,0.484169,0.954856,0.266378,0.272101,0.882854,0.471409,0.602128,0.262576,0.0710339,0.481732,0.761709,0.879384,0.213599,0.439098,0.862088,0.312374,0.0691664,0.686141,0.665449,0.637198,0.113792,0.53829,0.314348,0.41279,0.661149,0.244348,0.66369,0.483673,0.378486,0.366977,0.569201,0.876529,0.102261,0.782777,0.0498201,0.130798,0.289529,0.139408,0.327355,0.369966,0.250618,0.312972,0.868636,0.284015,0.862028,0.287691,0.200004,0.848799,0.799263,0.774679,0.73002,0.968791,0.649128,0.936103,0.480893,0.985949,0.484441,0.778258,0.986057,0.040525,0.626759,0.345953,0.43831,0.0789893,0.723863,0.392223,0.945042,0.791057,0.978238,0.706412,0.0460141,0.209429,0.557021,0.215414,0.356578,0.733569,0.919775,0.315698,0.600618,0.937158,0.0734236,0.190373,0.40428,0.128734,0.879451,0.00964117,0.522311,0.522967,0.501504,0.709564,0.947432,0.10997,0.557831,0.795046,0.514788,0.379368,0.998954,0.860488,0.597988,0.503052,0.98156,0.340512,0.349406,0.145488,0.590728,0.0344338,0.839949,0.975556,0.502518,0.495902,0.48373,0.733448,0.766412,0.456976,0.0773641,0.785708,0.26389,0.880878,0.421399,0.127231,0.666929,0.697153,0.579284,0.756041,0.317326,0.0719933,0.183406,0.488457,0.292182,0.386209,0.0352257,0.651672,0.447397,0.612185,0.0011003,0.77066,0.00496382,0.159908,0.612261,0.0194866,0.180118,0.831705,0.852014,0.739192,0.217673,0.141491,0.279597,0.221667,0.961341,0.182671,0.597248,0.941179,0.139868,0.805927,0.575297,0.328281,0.183541,0.116041,0.187838,0.268397,0.514489,0.527659,0.745952,0.751285,0.186369,0.592941,0.51144,0.820443,0.706418,0.110868,0.79736,0.329608,0.713267,0.320608,0.376671,0.698768,0.942081,0.986772,0.829413,0.690757,0.751843,0.495552,0.781392,0.252331,0.454454,0.200655,0.0889641,0.36567,0.18889,0.547561,0.419721,0.877409,0.944708,0.525542,0.00678009,0.646395,0.390893,0.313141,0.80068,0.961936,0.212654,0.0843396,0.134416,0.154709,0.939102,0.236423,0.761527,0.174768,0.691482,0.494586,0.615365,0.320521,0.219746,0.621807,0.404854,0.503828,0.497666,0.660886,0.795654,0.238908,0.618585,0.026909,0.496353,0.807437,0.153556,0.543574,0.0776431,0.357261,0.586132,0.674765,0.973105,0.716317,0.717795,0.779825,0.364849,0.312608,0.759259,0.034262,0.589503,0.810836,0.56207,0.410921,0.915087,0.00253528,0.00270563,0.0438935,0.237118,0.936339,0.491936,0.343918,0.619427,0.776288,0.411083,0.601187,0.881569,0.308069,0.282369,0.774495,0.125724,0.000556111,0.114361,0.704866,0.458488,0.218018,0.693299,0.90182,0.184658,0.415669,0.522177,0.408356,0.0636926,0.562332,0.882721,0.550163,0.603558,0.764544,0.494386,0.312667,0.453631,0.0128157,0.80554,0.989886,0.300904,0.16716,0.872413,0.677293,0.634792,0.157976,0.814643,0.467835,0.924237,0.87603,0.64498,0.393546,0.997699,0.969405,0.983114,0.761435,0.982114,0.0420855,0.00392151,0.438625,0.0239823,0.0150399,0.219289,0.147087,0.287603,0.600366,0.902252,0.815015,0.915945,0.801034,0.843921,0.555661,0.444898,0.121414,0.623135,0.987057,0.0958521,0.889826,0.296621,0.43967,0.278906,0.2048,0.230959,0.536891,0.729101,0.737785,0.976524,0.495539,0.765391,0.418624,0.464334,0.185641,0.687452,0.617198,0.488605,0.93826,0.422943,0.938748,0.356024,0.659353,0.185322,0.463825,0.00140047,0.654835,0.449101,0.987523,0.327674,0.117309,0.478446,0.0357642,0.020775,0.630461,0.320045,0.946824,0.372939,0.921116,0.131372,0.172582,0.881297,0.752005,0.269518,0.749415,0.718921,0.177911,0.0573633,0.402725,0.0889727,0.241509,0.423117,0.108075,0.978827,0.529521,0.928555,0.212793,0.829622,0.526822,0.0148038,0.836536,0.0147429,0.503854,0.882466,0.181118,0.510949,0.15943,0.382395,0.119739,0.657323,0.120232,0.862384,0.639655,0.754773,0.913424,0.241239,0.713205,0.787189,0.11451,0.0441905,0.344491,0.408484,0.951932,0.612314,0.209437,0.568194,0.866951,0.153852,0.874064,0.0400174,0.457908,0.331687,0.921704,0.605427,0.558802,0.771155,0.114818,0.747493,0.495472,0.330432,0.0426528,0.806767,0.366856,0.0389087,0.910396,0.654571,0.828103,0.730973,0.469315,0.182741,0.836492,0.538887,0.604545,0.913832,0.132927,0.947537,0.0900046,0.836822,0.278716,0.034277,0.415105,0.494445,0.0798855,0.830272,0.43995,0.575012,0.480479,0.729031,0.797981,0.345824,0.37067,0.465357,0.718453,0.668534,0.031487,0.601642,0.184594,0.92969,0.369395,0.178193,0.644542,0.866537,0.745519,0.405368,0.518118,0.314877,0.656648,0.567338,0.394277,0.422256,0.316658,0.218589,0.128503,0.0413872,0.572651,0.49575,0.00190377,0.0235161,0.571382,0.629032,0.610957,0.0427572,0.977088,0.800651,0.0509256,0.516289,0.305487,0.442618,0.601767,0.953188,0.963345,0.844436,0.632582,0.837321,0.550681,0.962876,0.960076,0.228361,0.932935,0.0273439,0.190323,0.284691,0.7264,0.72394,0.0938631,0.241177,0.950423,0.499478,0.83905,0.740795,0.400104,0.305194,0.246896,0.868648,0.480768,0.548448,0.0388436,0.497211,0.514183,0.322673,0.6588,0.749832,0.855899,0.868659,0.541163,0.581366,0.502167,0.849842,0.804916,0.932292,0.455493,0.837241,0.803999,0.233491,0.892713,0.49681,0.750498,0.333427,0.185853,0.612897,0.274529,0.986125,0.0573901,0.778139,0.177422,0.268101,0.947153,0.472753,0.373011,0.456987,0.842156,0.681165,0.868712,0.161387,0.719029,0.00510371,0.547664,0.527403,0.280331,0.103502,0.357208,0.919728,0.954352,0.153248,0.645476,0.895607,0.222195,0.239254,0.153883,0.734321,0.54574,0.265547,0.270555,0.808834,0.696676,0.819828,0.520257,0.778061,0.77373,0.550929,0.987038,|0.057865,0.63064,0.757069,0.120634,0.225386,0.715162,0.634236,0.711116,0.196626,0.91903,0.494557,0.222089,0.872112,0.00411624,0.402721,0.486679,0.553422,0.0122805,0.924722,0.700672,0.603282,0.00470114,0.29296,0.851059,0.0118254,0.867955,0.971403,0.640744,0.48399,0.256024,0.125711,0.00103492,0.747594,0.205204,0.692807,0.757978,0.161096,0.683534,0.990462,0.793199,0.440633,0.751813,0.231526,0.61964,0.889311,0.167801,0.645498,0.616621,0.843955,0.733869,0.39334,0.444005,0.617167,0.274791,0.589875,0.959165,0.0980704,0.424584,0.00478059,0.804416,0.529649,0.160213,0.653296,0.262984,0.989908,0.957132,0.995832,0.839288,0.936439,0.394243,0.191727,0.366646,0.13894,0.888211,0.247136,0.923438,0.844363,0.517007,0.827867,0.986148,0.82485,0.872234,0.207345,0.784928,0.176302,0.880579,0.274085,0.354419,0.829611,0.653906,0.807006,0.453016,0.656062,0.841459,0.379354,0.0920668,0.245691,0.171712,0.516635,0.208453,0.721134,0.0543013,0.106551,0.928198,0.154996,0.764694,0.199785,0.857721,0.79329,0.528568,0.92008,0.0810302,0.110425,0.656455,0.37608,0.935829,0.0767839,0.543945,0.675518,0.749902,0.997929,0.261021,0.530384,0.357301,0.156845,0.289402,0.0130287,0.524911,0.725359,0.136708,0.795449,0.145222,0.581852,0.10404,0.9175,0.488795,0.855797,0.0812194,0.187587,0.37994,0.626489,0.811781,0.560662,0.000263989,0.451068,0.791087,0.676026,0.128952,0.224932,0.957344,0.65526,0.070094,0.844412,0.773496,0.310085,0.317417,0.0336094,0.923195,0.571113,0.620822,0.687256,0.747309,0.112654,0.000604808,0.269858,0.221383,0.146577,0.294569,0.120037,0.39663,0.90263,0.125021,0.0780463,0.987449,0.991547,0.160248,0.38142,0.542055,0.459957,0.975094,0.71303,0.740561,0.10816,0.689175,0.0852855,0.14583,0.650262,0.43306,0.572608,0.751722,0.929891,0.1345,0.00407761,0.488053,0.883684,0.583874,0.00943238,0.478774,0.0494122,0.153857,0.677451,0.865144,0.568923,0.767204,0.647594,0.304758,0.867277,0.511936,0.50079,0.427112,0.927382,0.232239,0.152872,0.84713,0.881619,0.818883,0.87786,0.161062,0.937408,0.814672,0.464744,0.638453,0.242984,0.401626,0.955604,0.61328,0.776691,0.365103,0.847051,0.187705,0.0208539,0.671988,0.660011,0.299889,0.950625,0.104154,0.17279,0.685651,0.240694,0.182587,0.857239,0.629588,0.545172,0.0878146,0.332197,0.773715,0.882775,0.163906,0.551596,0.510234,0.598901,0.902594,0.27369,0.601674,0.651623,0.670515,0.209137,0.376602,0.514736,0.671805,0.876725,0.659657,0.857716,0.577035,0.440302,0.165151,0.143966,0.849511,0.919659,0.357681,0.446115,0.331979,0.357286,0.96854,0.0958697,0.18016,0.590089,0.812109,0.0838468,0.375521,0.482498,0.192319,0.0070715,0.695949,0.420545,0.561412,0.585048,0.906691,0.558425,0.130161,0.0232157,0.0692636,0.181636,0.250948,0.0958,0.50752,0.368499,0.263588,0.309532,0.408888,0.416574,0.185189,0.771759,0.177215,0.82292,0.568374,0.806224,0.363519,0.402616,0.776392,0.225785,0.208211,0.988613,0.252553,0.739179,0.816372,0.637014,0.238207,0.404545,0.853788,0.224158,0.337796,0.684067,0.666402,0.852017,0.169762,0.86829,0.645089,0.494171,0.803979,0.291978,0.615075,0.55658,0.592505,0.701581,0.847831,0.827959,0.477169,0.407194,0.3583,0.728983,0.34675,0.658945,0.995591,0.987848,0.191674,0.861826,0.693187,0.0953482,0.416259,0.405377,0.130072,0.17912,0.159884,0.76715,0.387912,0.587395,0.874762,0.287775,0.46239,0.814222,0.0398447,0.831659,0.128789,0.681626,0.449249,0.452112,0.858727,0.584385,0.346473,0.770396,0.126497,0.802152,0.538854,0.7122,0.28724,0.395133,0.310805,0.255733,0.219866,0.699262,0.175643,0.352793,0.141909,0.488924,0.89056,0.75983,0.246579,0.307,0.653952,0.413594,0.380818,0.498874,0.0020566,0.302792,0.781339,0.701259,0.239909,0.0364318,0.205663,0.203538,0.159175,0.313953,0.88804,0.0121478,0.651237,0.294727,0.0514819,0.104222,0.147989,0.398467,0.75351,0.640434,0.987395,0.156048,0.550829,0.377416,0.28954,0.474393,0.269788,0.858523,0.16873,0.121938,0.659828,0.0561861,0.0122442,0.0652769,0.716251,0.312255,0.797126,0.832316,0.561193,0.552269,0.861339,0.949438,0.299684,0.116933,0.583152,0.625772,0.784827,0.469042,0.163432,0.721464,0.683209,0.984502,0.410723,0.824067,0.554484,0.120657,0.216928,0.169332,0.897296,0.210001,0.811345,0.763703,0.595418,0.114105,0.793368,0.23231,0.230239,0.211394,0.154158,0.419674,0.329888,0.39104,0.0558785,0.742298,0.524205,0.29009,0.632319,0.563754,0.965193,0.271243,0.781706,0.714822,0.594607,0.763398,0.162977,0.24051,0.132804,0.360724,0.969927,0.936863,0.764183,0.744487,0.989639,0.072167,0.203687,0.00749636,0.332654,0.364322,0.721418,0.277822,0.722068,0.54135,0.521851,0.158478,0.343634,0.634215,0.881758,0.653674,0.377416,0.150907,0.314206,0.716667,0.0726671,0.36647,0.559484,0.878119,0.689564,0.178152,0.488371,0.840393,0.302333,0.633194,0.0324811,0.57007,0.544719,0.727421,0.296808,0.112296,0.743556,0.784279,0.767888,0.70131,0.471659,0.438686,0.163749,0.0203183,0.764294,0.00995427,0.947417,0.776834,0.0935659,0.491639,0.54227,0.59065,0.30869,0.351476,0.910426,0.993002,0.391578,0.449952,0.324604,0.77818,0.824407,0.871827,0.615564,0.374835,0.0850988,0.068657,0.355949,0.805321,0.809587,0.64353,0.290392,0.498942,0.695742,0.56509,0.965356,0.630181,0.0165352,0.452296,0.506083,0.584575,0.342207,0.997558,0.519577,0.299567,0.514092,0.936273,0.243908,0.951992,0.320024,0.944382,0.0474051,0.701467,0.418421,0.732026,0.662052,0.578723,0.0616661,0.99065,0.373079,0.743602,0.893819,0.445577,0.274739,0.555185,0.640834,0.0895213,0.418747,0.136499,0.523106,0.122496,0.685707,0.686667,0.853161,0.360869,0.972735,0.652756,0.355345,0.678281,0.598122,0.917225,0.591483,0.841053,0.495753,0.00608259,0.115001,0.211809,0.789247,0.578729,0.955106,0.944496,0.056637,0.141799,0.219675,0.0279987,0.306353,0.853235,0.299375,0.930585,0.287828,0.517282,0.919065,0.368538,0.402905,0.769756,0.248105,0.207758,0.707821,0.0807518,0.43178,0.368981,0.813695,0.346683,0.124403,0.155948,0.482041,0.463265,0.703617,0.104579,0.0331498,0.88082,0.631663,0.0498134,0.301731,0.650325,0.285228,0.223706,0.0249432,0.842888,0.634679,0.39425,0.390183,0.966626,0.86712,0.284936,0.307131,0.942362,0.515097,0.138576,0.563505,0.613641,0.50859,0.486839,0.530521,0.0985287,0.854367,0.647736,0.11811,0.610027,0.943725,0.298471,0.279733,0.536977,0.698508,0.403749,0.300076,0.371084,0.272816,0.624074,0.614255,0.198009,0.308973,0.396026,0.683656,0.623074,0.757022,0.761678,0.1701,0.947738,0.0357835,0.0641195,0.0921654,0.0637887,0.120116,0.798222,0.902575,0.0963554,0.0509026,0.704254,0.631783,0.576868,0.793138,0.153004,0.487707,0.0667631,0.686897,0.813364,0.651643,0.744994,0.896371,0.0982472,0.494253,0.897282,0.365724,0.242258,0.224973,0.234912,0.176103,0.253229,0.0211285,0.676306,0.470044,0.0896445,0.189463,0.232399,0.672785,0.914501,0.886335,0.895977,0.674799,0.121863,0.652931,0.236053,0.565174,0.326972,0.402569,0.0541448,0.276188,0.690016,0.713278,0.653377,0.305174,0.833297,0.848186,0.0381217,0.988576,0.287345,0.393073,0.254047,0.506372,0.277251,0.861929,0.885078,0.230069,0.669417,0.796543,0.633059,0.082481,0.906276,0.490859,0.623818,0.259842,0.834216,0.349694,0.163535,0.669857,0.455596,0.757084,0.390266,0.0724968,0.792335,0.59731,0.602229,0.587481,0.498429,0.665974,0.00759792,0.235759,0.159364,0.131108,0.92261,0.0104384,0.621788,0.679309,0.954753,0.497317,0.705904,0.562679,0.414091,0.596869,0.114505,0.74534,0.835939,0.274258,0.121336,0.616922,0.382944,0.831241,0.123993,0.434624,0.686426,0.342351,0.731803,0.456922,0.160391,0.503767,0.418562,0.125067,0.0279198,0.913893,0.46947,0.270565,0.541735,0.6652,0.210291,0.70316,0.739197,0.539509,0.868589,0.286374,0.91207,0.456455,0.75166,0.35753,0.454288,0.938101,0.686793,0.814499,0.39874,0.929674,0.907216,0.654804,0.48364,0.108615,0.579881,0.462959,0.116872,0.984977,0.369101,0.797835,0.0103408,0.970074,0.958553,0.438462,0.0945136,0.926429,0.374875,0.10306,0.76956,0.0934715,0.813014,0.862523,0.251517,0.0238023,0.00762653,0.686204,0.408335,0.333487,0.555247,0.169019,0.869681,0.646996,0.782839,0.837454,0.522483,0.60883,0.968158,0.126536,0.0120761,0.403382,0.997991,0.745186,0.836868,0.726925,0.454736,0.696849,0.960466,0.348384,0.857828,0.442746,0.385763,0.342049,0.553194,0.305847,0.195227,0.751466,0.990927,0.249837,0.437921,0.0803109,0.180662,0.130507,0.911529,0.0829861,0.77,0.174512,0.182027,0.433922,0.221262,0.578229,0.662375,0.827784,0.171489,0.182299,0.534425,0.101635,0.505979,0.482497,0.195576,0.658513,0.331469,0.962868,0.847419,0.993203,0.562275,0.947033,0.478959,0.141692,0.049055,0.104294,0.678386,0.327054,0.258545,0.633319,0.52806,0.185912,0.974994,0.969296,0.475099,0.611405,0.960945,0.0668607,0.604613,0.0518131,0.62299,0.457477,0.418926,0.848206,0.0966505,0.436197,0.988418,0.329314,0.00869709,0.84712,0.90887,0.281893,0.428671,0.968002,0.512,0.546152,0.257469,0.0662967,0.0845706,0.512904,0.551878,0.364078,0.713769,0.655775,0.550531,0.551492,0.16155,0.0199706,0.0766641,0.980383,0.421439,0.210331,0.86604,0.565243,0.257102,0.766229,0.771056,0.6693,0.888136,0.811868,0.284759,0.240929,0.51841,0.625961,0.22546,0.0455183,0.689451,0.15547,0.599963,0.642492,0.732342,0.0887462,0.328144,0.871071,0.223138,0.579975,0.80781,0.234685,0.278335,0.403587,0.0636614,0.940149,|0.274861,0.0953686,0.250323,0.940462,0.659153,0.642529,0.00149053,0.225295,0.291655,0.564045,0.648952,0.452584,0.741116,0.461038,0.686545,0.595944,0.534217,0.967971,0.815834,0.85342,0.0135404,0.923665,0.910119,0.44928,0.0590317,0.138674,0.242135,0.112081,0.113553,0.840973,0.150049,0.824356,0.45983,0.76771,0.244021,0.322349,0.292917,0.882263,0.77996,0.715837,0.142867,0.920057,0.15657,0.777017,0.570274,0.800931,0.197138,0.998979,0.384337,0.501811,0.246832,0.856629,0.94742,0.472292,0.36332,0.619964,0.437845,0.380646,0.397437,0.65575,0.200357,0.893183,0.590388,0.718311,0.502552,0.326304,0.271891,0.0625682,0.798976,0.370776,0.384364,0.328217,0.894478,0.835073,0.370081,0.0993398,0.289548,0.273425,0.102567,0.481549,0.265379,0.693725,0.0116534,0.872637,0.594771,0.597338,0.33667,0.242994,0.0692413,0.463689,0.206158,0.187002,0.221534,0.0816772,0.0843336,0.734445,0.0617725,0.512132,0.217631,0.560686,0.613097,0.0922734,0.912535,0.585503,0.729983,0.38203,0.999703,0.871458,0.383562,0.883961,0.825038,0.206869,0.314534,0.144501,0.00867009,0.361177,0.297615,0.732933,0.226562,0.718201,0.0808873,0.0346878,0.493153,0.950088,0.499273,0.758158,0.954169,0.485041,0.681485,0.657034,0.0646847,0.236385,0.333132,0.71163,0.367858,0.863965,0.953245,0.739797,0.969733,0.00902748,0.97973,0.0470308,0.585586,0.628381,0.455682,0.835456,0.754745,0.589359,0.63534,0.142974,0.63402,0.339273,0.0956278,0.501094,0.0493296,0.56476,0.963806,0.298728,0.541803,0.696649,0.506458,0.97349,0.344054,0.56607,0.482439,0.720841,0.55867,0.764729,0.486586,0.0660844,0.668953,0.910475,0.343168,0.926001,0.45514,0.173667,0.288403,0.0488973,0.146885,0.800921,0.395469,0.27,0.0751031,0.832425,0.647517,0.0291304,0.708608,0.0864605,0.466444,0.726977,0.257615,0.482654,0.15405,0.902794,0.22154,0.343917,0.97181,0.852642,0.63615,0.754561,0.412502,0.0933353,0.374673,0.897841,0.959806,0.495619,0.0562328,0.9298,0.508272,0.134126,0.358332,0.482101,0.292269,0.0372569,0.414643,0.6838,0.0963231,0.87658,0.965539,0.206235,0.237352,0.602509,0.689287,0.871121,0.030844,0.681045,0.116721,0.584201,0.0244782,0.138224,0.714989,0.775872,0.950399,0.476265,0.165445,0.94317,0.336093,0.62678,0.468144,0.710648,0.908127,0.249874,0.643407,0.244226,0.524432,0.899651,0.673002,0.400998,0.267452,0.369428,0.572102,0.469979,0.75229,0.0126302,0.143888,0.803366,0.934839,0.671071,0.702473,0.161099,0.714896,0.561291,0.419224,0.764496,0.839626,0.284516,0.865104,0.0439207,0.0412357,0.344822,0.464325,0.526194,0.707542,0.450697,0.130646,0.579381,0.248651,0.261567,0.452956,0.834604,0.736027,0.687433,0.617403,0.322011,0.787149,0.30008,0.70978,0.731138,0.524496,0.894375,0.403641,0.371264,0.869409,0.72195,0.232414,0.707477,0.158429,0.172499,0.308377,0.12828,0.229561,0.367941,0.698008,0.0154441,0.115749,0.926471,0.28348,0.804775,0.729994,0.572188,0.261261,0.0741039,0.961248,0.649135,0.96443,0.155935,0.812856,0.288615,0.651576,0.496523,0.175512,0.312213,0.933836,0.306402,0.186935,0.677524,0.465943,0.13301,0.655128,0.392886,0.431347,0.715986,0.476145,0.325864,0.214527,0.495911,0.182533,0.48328,0.748693,0.505622,0.481125,0.412702,0.666892,0.811764,0.0185826,0.437288,0.854462,0.891068,0.996654,0.179198,0.545649,0.687389,0.349492,0.104436,0.998984,0.702407,0.931393,0.912131,0.26336,0.105447,0.438468,0.41621,0.636506,0.464651,0.75493,0.0288173,0.886787,0.489799,0.811139,0.888125,0.103084,0.166712,0.174692,0.621374,0.83585,0.808479,0.455152,0.504688,0.667823,0.510278,0.157781,0.387373,0.85798,0.429345,0.564449,0.00634855,0.516455,0.374713,0.430753,0.196978,0.011014,0.936739,0.40499,0.0160538,0.0904969,0.404764,0.81144,0.238467,0.112079,0.0142447,0.965415,0.480339,0.0693994,0.503861,0.208723,0.944472,0.256317,0.572854,0.29291,0.739955,0.764401,0.85071,0.978422,0.241457,0.692568,0.861547,0.38714,0.912371,0.0455993,0.50328,0.716733,0.53453,0.720506,0.452349,0.0979512,0.334187,0.743373,0.916161,0.468182,0.917725,0.486062,0.287605,0.995781,0.447489,0.00219333,0.743573,0.588871,0.539042,0.686772,0.980776,0.612095,0.783599,0.514176,0.0899112,0.357817,0.305533,0.190161,0.114035,0.838305,0.622877,0.735011,0.15551,0.256699,0.0705892,0.656677,0.967712,0.424848,0.417997,0.412631,0.56245,0.60561,0.593515,0.757386,0.0834806,0.364318,0.829691,0.642722,0.25518,0.674792,0.62207,0.966943,0.748653,0.2945,0.00451398,0.153753,0.20595,0.683429,0.176532,0.717764,0.409145,0.0226881,0.4477,0.597733,0.666045,0.0782472,0.437888,0.800397,0.172907,0.981298,0.070621,0.195472,0.80039,0.716057,0.45142,0.773452,0.451964,0.559474,0.152801,0.48617,0.942904,0.0925354,0.148107,0.16662,0.00752491,0.103294,0.0846732,0.723425,0.100586,0.649972,0.469751,0.780086,0.776473,0.0966225,0.341332,0.353892,0.774715,0.136853,0.504328,0.229057,0.937606,0.590824,0.993998,0.814927,0.11087,0.672417,0.151189,0.718579,0.354084,0.528829,0.902248,0.747907,0.0317335,0.797805,0.107919,0.862851,0.581849,0.0304098,0.963324,0.934737,0.21483,0.449581,0.129494,0.410785,0.213163,0.939021,0.30651,0.477742,0.729774,0.567107,0.700277,0.10116,0.626817,0.676566,0.213713,0.314586,0.226907,0.631167,0.893206,0.984336,0.625733,0.220215,0.0449929,0.349873,0.13203,0.829123,0.941515,0.686204,0.101964,0.753739,0.733271,0.418281,0.975191,0.674571,0.176986,0.500238,0.585627,0.881698,0.0510033,0.435168,0.547183,0.00309289,0.896673,0.584657,0.0863045,0.634195,0.41863,0.334264,0.19175,0.756647,0.228647,0.789777,0.735537,0.0231547,0.141697,0.0283093,0.475293,0.994352,0.0406399,0.0722417,0.393271,0.864087,0.706544,0.662437,0.0965487,0.330452,0.88448,0.546686,0.724256,0.275003,0.347631,0.244465,0.0615858,0.639271,0.758653,0.741555,0.0372332,0.589297,0.942781,0.954162,0.437324,0.121095,0.976273,0.17989,0.131132,0.24367,0.957319,0.583686,0.566805,0.0101458,0.854304,0.733567,0.0112052,0.0335962,0.0626628,0.806346,0.730025,0.97187,0.927126,0.867105,0.387683,0.688292,0.314176,0.0360295,0.739213,0.413236,0.318246,0.0866024,0.335674,0.0528778,0.414252,0.947195,0.528653,0.207028,0.5822,0.215998,0.429006,0.811921,0.629707,0.99725,0.986034,0.153138,0.404831,0.0451463,0.539152,0.0917696,0.674751,0.273178,0.405752,0.437445,0.15111,0.770483,0.206293,0.939652,0.267897,0.889962,0.870862,0.316918,0.0462246,0.262867,0.904093,0.516823,0.0452386,0.888234,0.157191,0.0464614,0.758125,0.126055,0.401394,0.874337,0.79177,0.687947,0.158745,0.320719,0.992961,0.497817,0.360768,0.910534,0.259194,0.183618,0.557494,0.285373,0.67184,0.34008,0.442736,0.51573,0.190049,0.377004,0.961024,0.280731,0.983743,0.422357,0.205996,0.227022,0.982091,0.00414324,0.7524,0.697103,0.962634,0.272625,0.213639,0.747241,0.904942,0.680326,0.620855,0.329811,0.750678,0.319915,0.823522,0.615144,0.371032,0.755138,0.690711,0.69892,0.799493,0.203958,0.439984,0.0117046,0.763955,0.93504,0.0195603,0.710924,0.481275,0.235291,0.901328,0.95259,0.372868,0.548676,0.187554,0.19304,0.50486,0.760053,0.314132,0.994177,0.397442,0.381349,0.40285,0.356015,0.852975,0.217115,0.3293,0.244576,0.26934,0.595426,0.809162,0.7824,0.694871,0.560061,0.098581,0.296393,0.173033,0.00734687,0.69722,0.083482,0.183587,0.765408,0.351623,0.0826439,0.253855,0.315826,0.817311,0.676369,0.517509,0.416379,0.389104,0.801325,0.57002,0.833595,0.770627,0.218402,0.365305,0.476476,0.617215,0.250841,0.593426,0.40982,0.564004,0.744479,0.496528,0.398987,0.690616,0.893559,0.378199,0.0890931,0.0131427,0.619272,0.260395,0.488771,0.79312,0.0367873,0.536616,0.853698,0.130217,0.541296,0.0218068,0.460421,0.739624,0.698997,0.737184,0.221141,0.335907,0.265311,0.681341,0.802276,0.876937,0.255548,0.212412,0.820454,0.884607,0.084997,0.623885,0.842013,0.144738,0.278605,0.527091,0.499784,0.408779,0.828973,0.860983,0.752676,0.557188,0.917276,0.440609,0.625081,0.0702972,0.41356,0.713506,0.558948,0.591835,0.434507,0.296676,0.413073,0.154601,0.625696,0.0609169,0.957092,0.450648,0.758704,0.778848,0.562392,0.199135,0.646767,0.837342,0.643671,0.988827,0.693375,0.0687557,0.397067,0.408245,0.877678,0.0595073,0.656574,0.940656,0.114988,0.858101,0.300613,0.275946,0.949942,0.502708,0.750744,0.502621,0.187116,0.498446,0.374418,0.638326,0.700097,0.325152,0.360377,0.607254,0.324496,0.644628,0.726625,0.912018,0.0563929,0.806587,0.550532,0.272703,0.537048,0.84771,0.0484654,0.624666,0.474531,0.191302,0.795581,0.824535,0.949978,0.710557,0.479775,0.644635,0.402912,0.224797,0.390349,0.750088,0.555556,0.892664,0.235152,0.45312,0.336511,0.569311,0.551217,0.25696,0.407835,0.989257,0.0981241,0.436879,0.543064,0.976502,0.641645,0.595905,0.570058,0.583225,0.990086,0.125415,0.610236,0.939287,0.883494,0.999667,0.594727,0.491375,0.455904,0.588298,0.560474,0.0437151,0.813838,0.762851,0.72535,0.888235,0.171693,0.330519,0.597125,0.992875,0.416369,0.259834,0.630913,0.571113,0.652593,0.180419,0.0862346,0.0895962,0.792528,0.913864,0.200664,0.574572,0.931856,0.189384,0.703288,0.9168,0.325818,0.167007,0.799598,0.260124,0.306397,0.288734,0.97216,0.578081,0.53792,0.471434,0.846401,0.832,0.926355,0.0396965,0.677482,0.446716,0.214856,0.545446,0.100427,0.0952569,0.132506,0.420665,0.651064,0.965334,0.895247,0.150127,0.820249,0.635078,0.421408,0.405703,0.751851,0.0831642,0.377495,0.440155,|0.0687512,0.617643,0.668537,0.624794,0.329356,0.0244263,0.691566,0.884993,0.565798,0.449353,0.48394,0.934869,0.732073,0.958967,0.124569,0.191938,0.613092,0.173651,0.00599831,0.512696,0.559048,0.453165,0.83631,0.592112,0.875335,0.673226,0.128956,0.067397,0.244197,0.646978,0.480618,0.886662,0.469335,0.629496,0.458821,0.42249,0.41419,0.522555,0.653262,0.307912,0.787573,0.361914,0.539398,0.0743154,0.516174,0.374431,0.982755,0.219559,0.279631,0.658843,0.884779,0.485102,0.520988,0.108163,0.0449774,0.986903,0.300249,0.143531,0.922047,0.8453,0.753131,0.315201,0.418329,0.831656,0.315221,0.778553,0.444063,0.938329,0.843358,0.977961,0.402245,0.330573,0.886347,0.741898,0.281641,0.549859,0.85745,0.915225,0.603112,0.273513,0.82989,0.553101,0.14914,0.933417,0.27088,0.552048,0.293785,0.979367,0.227448,0.0759958,0.197671,0.889044,0.574171,0.962775,0.0510288,0.300813,0.800008,0.240239,0.258215,0.45767,0.446569,0.921868,0.437802,0.826371,0.777339,0.934689,0.284946,0.0155542,0.763877,0.998817,0.58714,0.443835,0.968545,0.451452,0.927566,0.0553957,0.319771,0.278406,0.674401,0.76173,0.828446,0.390734,0.869669,0.676747,0.0747336,0.748497,0.974969,0.148091,0.179003,0.149754,0.159158,0.580076,0.945734,0.337645,0.260912,0.74396,0.623637,0.00193143,0.294967,0.701651,0.96173,0.0708432,0.197057,0.103939,0.668089,0.499501,0.631864,0.818483,0.964626,0.211191,0.364346,0.588991,0.0414706,0.0412216,0.763979,0.957223,0.381705,0.325305,0.906576,0.772275,0.691108,0.926324,0.949185,0.966822,0.0124481,0.632505,0.315628,0.548569,0.233213,0.824935,0.541826,0.52983,0.00685328,0.0437092,0.644427,0.129724,0.63476,0.224006,0.686435,0.836758,0.942456,0.218718,0.919739,0.104067,0.506583,0.466576,0.817075,0.219646,0.172351,0.838175,0.374087,0.298325,0.229122,0.77882,0.931918,0.456866,0.377541,0.27809,0.249125,0.942242,0.755819,0.922986,0.488528,0.52762,0.49095,0.502237,0.284352,0.0692098,0.591007,0.673724,0.228241,0.00038451,0.875482,0.815316,0.604005,0.0337593,0.588823,0.265033,0.360412,0.910156,0.0384313,0.938955,0.228353,0.237195,0.413507,0.682447,0.71142,0.224359,0.990831,0.295268,0.587707,0.629712,0.825816,0.312884,0.270392,0.179475,0.0924615,0.570426,0.722442,0.2986,0.427845,0.339117,0.906141,0.160988,0.0422496,0.563257,0.330816,0.593444,0.365092,0.91242,0.340723,0.580581,0.50909,0.739421,0.0124854,0.645204,0.098415,0.729698,0.353245,0.897347,0.535598,0.154922,0.321738,0.0697324,0.202988,0.381567,0.973955,0.848041,0.3275,0.884965,0.74199,0.186887,0.151269,0.485732,0.795224,0.290927,0.383731,0.954607,0.865089,0.194601,0.33357,0.979152,0.15299,0.277187,0.702651,0.941433,0.258658,0.403257,0.727047,0.790749,0.213832,0.611677,0.350957,0.0355297,0.605971,0.677442,0.326146,0.135978,0.254652,0.638298,0.852006,0.495151,0.741,0.71499,0.165145,0.381565,0.451726,0.585206,0.655092,0.940434,0.0273222,0.832783,0.0729329,0.451829,0.557158,0.759464,0.0953988,0.174854,0.252541,0.831248,0.193904,0.823826,0.272477,0.0999981,0.245828,0.906337,0.522169,0.888129,0.968826,0.743027,0.582781,0.393875,0.667469,0.174661,0.534665,0.0601884,0.128799,0.854641,0.814161,0.750437,0.320227,0.590825,0.00307894,0.981297,0.142724,0.778701,0.0389788,0.624265,0.199428,0.0873833,0.723472,0.863157,0.520777,0.458934,0.451026,0.663357,0.155284,0.673514,0.729961,0.31274,0.608974,0.466438,0.885453,0.643849,0.0315886,0.791472,0.322883,0.804647,0.825676,0.545003,0.879134,0.560439,0.0507647,0.27278,0.859504,0.0595272,0.887996,0.994323,0.128565,0.286824,0.0551268,0.727399,0.564193,0.601849,0.544792,0.0305632,0.674217,0.0979213,0.163082,0.373938,0.163902,0.601529,0.556383,0.672278,0.578713,0.632452,0.51576,0.259737,0.759434,0.430257,0.801523,0.536899,0.911164,0.695362,0.921564,0.492881,0.909997,0.18304,0.331738,0.785047,0.112935,0.729542,0.219997,0.839592,0.878901,0.103713,0.996478,0.0995843,0.403141,0.124239,0.0254154,0.0529746,0.144643,0.0554502,0.16822,0.290949,0.530358,0.831483,0.263968,0.831882,0.973086,0.505891,0.746115,0.915882,0.0542645,0.141509,0.744889,0.625755,0.366499,0.513118,0.544002,0.327126,0.834556,0.227104,0.292507,0.719037,0.28907,0.0990535,0.508471,0.0982189,0.07338,0.0590275,0.604169,0.36272,0.413559,0.876472,0.337981,0.863677,0.672142,0.392587,0.802043,0.00185978,0.913493,0.0829449,0.390913,0.0349627,0.164312,0.867015,0.298281,0.870781,0.355203,0.745391,0.096347,0.684593,0.657307,0.981056,0.867283,0.555815,0.0345212,0.0514712,0.658181,0.334038,0.539283,0.693036,0.0286292,0.49556,0.167654,0.330149,0.256369,0.746638,0.740859,0.92748,0.952508,0.516659,0.26924,0.797542,0.982702,0.97166,0.726704,0.0481576,0.769206,0.392394,0.224878,0.968598,0.423434,0.0201951,0.866587,0.680141,0.810944,0.88969,0.649565,0.528152,0.361103,0.826035,0.37709,0.550438,0.402079,0.105876,0.330326,0.897864,0.585208,0.632793,0.913745,0.473542,0.17366,0.391225,0.0451373,0.686551,0.257647,0.455434,0.517714,0.254595,0.819427,0.612753,0.113795,0.12217,0.810002,0.430921,0.784369,0.916519,0.768151,0.839589,0.484257,0.570444,0.373242,0.810402,0.666811,0.378068,0.367929,0.357515,0.323647,0.231138,0.405046,0.890235,0.110527,0.508119,0.987229,0.602879,0.385845,0.619084,0.148759,0.0418639,0.445305,0.288322,0.496467,0.886595,0.99467,0.531531,0.738352,0.724293,0.186928,0.00412965,0.820456,0.519553,0.785647,0.402666,0.862161,0.588926,0.223424,0.982779,0.975838,0.4704,0.912619,0.575455,0.411038,0.767257,0.443816,0.943038,0.637799,0.229554,0.83992,0.910627,0.807531,0.954894,0.412241,0.384321,0.973901,0.0793045,0.451449,0.312131,0.00888938,0.198317,0.885195,0.465546,0.469164,0.362686,0.462773,0.0978372,0.568604,0.935647,0.624538,0.347856,0.704846,0.139963,0.457582,0.0685398,0.22999,0.320235,0.88237,0.531852,0.511141,0.770097,0.326314,0.394498,0.286586,0.314258,0.121998,0.224329,0.236727,0.0712403,0.215066,0.488872,0.555928,0.910022,0.191475,0.554663,0.775913,0.550295,0.204934,0.724073,0.694814,0.0458965,0.0940189,0.36758,0.841554,0.0227244,0.0738627,0.0353305,0.636237,0.801723,0.293449,0.381198,0.00187922,0.149933,0.855092,0.27652,0.0419891,0.907694,0.997742,0.726374,0.0412926,0.826156,0.137626,0.240179,0.712019,0.487116,0.232091,0.966347,0.978875,0.549493,0.253044,0.914036,0.959427,0.972715,0.661102,0.606925,0.44057,0.690572,0.465126,0.911025,0.570454,0.291389,0.351239,0.0978017,0.57461,0.870489,0.636336,0.0949785,0.921571,0.87113,0.817448,0.661796,0.511226,0.3987,0.961848,0.413734,0.165657,0.161459,0.398862,0.66615,0.911873,0.969066,0.696239,0.634034,0.527986,0.179001,0.589996,0.209533,0.337963,0.806552,0.175346,0.306929,0.0180752,0.361064,0.0493518,0.45919,0.351981,0.346924,0.364043,0.776114,0.273083,0.270956,0.906057,0.0099259,0.385901,0.493626,0.670868,0.923301,0.293786,0.945705,0.299483,0.961473,0.890436,0.11876,0.464868,0.957359,0.164275,0.0203992,0.561536,0.402272,0.535462,0.0642607,0.610739,0.798311,0.414249,0.755631,0.4465,0.304423,0.199252,0.570754,0.733615,0.421082,0.757446,0.662794,0.840711,0.419829,0.859003,0.35479,0.056318,0.839895,0.0785406,0.0953959,0.106432,0.190084,0.983459,0.273815,0.85713,0.214247,0.566128,0.33778,0.646108,0.799533,0.509457,0.630599,0.619242,0.31525,0.382298,0.793163,0.190631,0.65253,0.614018,0.506832,0.782198,0.922986,0.0701954,0.925032,0.177254,0.0355071,0.0335206,0.380705,0.339213,0.0465162,0.821401,0.399885,0.182616,0.343646,0.209112,0.108864,0.575608,0.607328,0.703433,0.947282,0.214767,0.177588,0.861292,0.632727,0.443294,0.995758,0.879973,0.768569,0.592452,0.334949,0.160763,0.125161,0.5575,0.297193,0.678631,0.290686,0.720764,0.465668,0.0696286,0.0764066,0.875728,0.0462379,0.143568,0.925493,0.432068,0.828252,0.147914,0.587303,0.197384,0.356137,0.00762421,0.626636,0.908687,0.921066,0.942729,0.769323,0.768063,0.875094,0.223191,0.911135,0.467425,0.73511,0.724372,0.735965,0.265976,0.511681,0.297947,0.619322,0.994028,0.606588,0.588488,0.697251,0.163329,0.513458,0.252409,0.252085,0.799389,0.397654,0.201399,0.89813,0.98724,0.785962,0.447126,0.296192,0.789687,0.537221,0.86564,0.0283681,0.628602,0.927015,0.334554,0.366577,0.150132,0.089104,0.955776,0.615884,0.51491,0.954472,0.229868,0.323254,0.529498,0.818088,0.982617,0.571973,0.368,0.669133,0.345358,0.229906,0.35395,0.777832,0.657889,0.0874466,0.754057,0.387452,0.957994,0.0945555,0.419156,0.86288,0.20143,0.0717583,0.909066,0.279593,0.7951,0.560494,0.263173,0.788973,0.299684,0.0441307,0.363589,0.337921,0.772188,0.243015,0.28237,0.312782,0.898435,0.226699,0.189931,0.82716,0.259002,0.251685,0.767071,0.330163,0.569846,0.492676,0.0552741,0.000339866,0.0369867,0.70232,0.618349,0.871126,0.895817,0.808161,0.415489,0.659014,0.795887,0.515262,0.410513,0.64487,0.350124,0.601106,0.354022,0.936491,0.547639,0.424511,0.628849,0.486796,0.825407,0.8413,0.868875,0.231235,0.320804,0.60295,0.760626,0.79357,0.0267031,0.510331,0.66395,0.476609,0.785446,0.710438,0.727656,0.697262,0.769003,0.594925,0.828428,0.19545,0.566513,0.8066,0.637252,0.814101,0.255791,0.471958,0.605499,0.0731733,0.827102,0.68775,0.0798365,0.942662,0.237255,0.72593,0.182576,0.67918,0.76498,0.272279,0.47921,0.756532,0.980515,0.678735,0.367211,0.515197,0.199668,0.0129271,0.722531,0.199408,0.872031,0.195739,0.647162,0.483898,|0.870673,0.232668,0.249462,0.575133,0.877121,0.987976,0.106917,0.552658,0.416536,0.758853,0.848163,0.605193,0.610838,0.679994,0.739463,0.754005,0.94693,0.71665,0.35893,0.942175,0.459404,0.747288,0.337914,0.950779,0.794414,0.0222375,0.0725522,0.10111,0.206204,0.615353,0.335651,0.588793,0.0207833,0.785258,0.16882,0.1185,0.668652,0.0945257,0.469076,0.527355,0.279402,0.725494,0.582973,0.106087,0.56982,0.417658,0.481683,0.449637,0.861763,0.948774,0.286263,0.642476,0.965361,0.597232,0.524808,0.159647,0.698323,0.122317,0.297522,0.0551006,0.169219,0.426299,0.996803,0.111957,0.409578,0.450264,0.363742,0.131497,0.65563,0.643514,0.707254,0.557272,0.094276,0.0195872,0.657719,0.981583,0.405463,0.220038,0.350958,0.688836,0.19221,0.992176,0.365913,0.812587,0.953066,0.667698,0.460712,0.325913,0.500835,0.650801,0.529663,0.927047,0.152982,0.847166,0.977392,0.866974,0.686441,0.834485,0.442115,0.855532,0.966487,0.572275,0.66726,0.486141,0.848171,0.452599,0.624397,0.27946,0.361062,0.610708,0.294385,0.663957,0.323295,0.782385,0.123275,0.746007,0.981143,0.0692898,0.792055,0.156832,0.0259326,0.486129,0.403925,0.255311,0.609613,0.221738,0.291957,0.397633,0.297192,0.49428,0.346,0.162591,0.991881,0.868235,0.623814,0.81993,0.952503,0.764523,0.986301,0.165406,0.39305,0.881457,0.632355,0.259312,0.291835,0.816501,0.141077,0.299466,0.320508,0.491697,0.165652,0.253923,0.66723,0.751294,0.545954,0.684362,0.152304,0.972487,0.330343,0.861389,0.997376,0.704681,0.196827,0.0554588,0.199645,0.123958,0.068943,0.126845,0.205433,0.134628,0.694909,0.528279,0.950477,0.339192,0.118634,0.580307,0.980697,0.431272,0.561684,0.0956136,0.919376,0.999502,0.80356,0.418426,0.144383,0.306675,0.674193,0.216557,0.381498,0.275229,0.335212,0.223485,0.0993174,0.581687,0.629252,0.474648,0.522986,0.885789,0.28588,0.468,0.568637,0.0174229,0.33141,0.0701582,0.545572,0.450445,0.860903,0.186829,0.614024,0.277775,0.403312,0.661017,0.0259555,0.556426,0.372685,0.552805,0.805673,0.312387,0.780705,0.828205,0.832506,0.80374,0.217692,0.19476,0.105572,0.597156,0.449032,0.425954,0.0108747,0.550061,0.0894942,0.81575,0.710586,0.658931,0.750645,0.886316,0.249509,0.259053,0.25885,0.784116,0.65665,0.846863,0.800179,0.259747,0.264222,0.0787407,0.929795,0.0833445,0.577177,0.140817,0.578352,0.134763,0.980494,0.569027,0.946301,0.651374,0.237173,0.504083,0.150476,0.878188,0.595443,0.599683,0.590874,0.0416846,0.813001,0.727751,0.662108,0.406345,0.735608,0.312847,0.828655,0.916357,0.952801,0.410927,0.563177,0.905061,0.172394,0.149954,0.831698,0.128745,0.65265,0.388609,0.0711041,0.149991,0.754659,0.209288,0.736334,0.486218,0.683355,0.362791,0.178689,0.887209,0.385468,0.484256,0.790189,0.676834,0.238394,0.199831,0.0642816,0.363909,0.335227,0.708304,0.819955,0.575014,0.881253,0.296139,0.983571,0.605069,0.939236,0.360975,0.057955,0.88961,0.425823,0.885855,0.29736,0.253173,0.276468,0.22914,0.0794415,0.331375,0.705282,0.432673,0.888405,0.483858,0.519571,0.599279,0.927877,0.246382,0.355169,0.317891,0.692805,0.937167,0.0724006,0.451558,0.117946,0.106143,0.737808,0.566739,0.700582,0.736583,0.962264,0.420399,0.448517,0.848935,0.24433,0.0930569,0.104437,0.320234,0.678583,0.959014,0.456864,0.924861,0.669485,0.309651,0.772747,0.753149,0.200869,0.944091,0.916144,0.704852,0.879198,0.0984721,0.407604,0.0373788,0.940792,0.434246,0.162452,0.926367,0.89818,0.902138,0.306183,0.177703,0.649895,0.425179,0.931067,0.938681,0.99931,0.22434,0.837921,0.598082,0.698606,0.67676,0.0464364,0.477527,0.908962,0.610136,0.834851,0.869274,0.840254,0.430886,0.337542,0.756848,0.826969,0.970124,0.959169,0.233717,0.294258,0.150455,0.0909137,0.24427,0.34913,0.948697,0.292901,0.359832,0.0721713,0.487941,0.533745,0.127039,0.508073,0.155024,0.717498,0.391098,0.722531,0.421302,0.588395,0.0555648,0.316072,0.726534,0.351657,0.621845,0.255855,0.800839,0.0712366,0.449709,0.835142,0.744972,0.265298,0.956086,0.585581,0.379049,0.0552796,0.951043,0.49382,0.605462,0.118739,0.594287,0.28195,0.176882,0.719147,0.726811,0.0608958,0.250527,0.594996,0.125764,0.357325,0.725275,0.0141281,0.675402,0.00273669,0.389311,0.449847,0.486759,0.287636,0.874923,0.22809,0.841368,0.700899,0.739895,0.543814,0.35096,0.02048,0.00519937,0.751471,0.534794,0.771906,0.667134,0.373035,0.964031,0.625126,0.0824934,0.0354978,0.624049,0.232923,0.504334,0.25428,0.362231,0.997383,0.525822,0.927427,0.753539,0.846836,0.454824,0.0846091,0.141542,0.667936,0.626663,0.489554,0.532676,0.306816,0.150005,0.485619,0.344542,0.413649,0.708198,0.622658,0.13434,0.202949,0.697957,0.227651,0.120288,0.188361,0.357712,0.0170346,0.197111,0.536509,0.234528,0.458553,0.223283,0.435701,0.798985,0.950012,0.924157,0.464105,0.693799,0.419457,0.690042,0.341016,0.023492,0.146676,0.892033,0.351014,0.964945,0.0291851,0.381822,0.730384,0.291661,0.537823,0.331833,0.846451,0.401938,0.622498,0.533306,0.36661,0.70341,0.546716,0.716909,0.0120513,0.963135,0.672846,0.00452626,0.348042,0.719915,0.750456,0.716962,0.044574,0.0501608,0.0137312,0.956824,0.0792794,0.748941,0.214727,0.742576,0.570753,0.739232,0.0844363,0.023378,0.81088,0.15711,0.624069,0.0268785,0.59368,0.970753,0.193982,0.0446919,0.697387,0.788238,0.184791,0.696128,0.271738,0.558363,0.541503,0.424681,0.588352,0.791656,0.167637,0.196862,0.487977,0.491411,0.388155,0.240166,0.984212,0.748587,0.412535,0.578737,0.725426,0.264158,0.854432,0.684834,0.638497,0.37083,0.686313,0.905757,0.971896,0.495846,0.0139815,0.457869,0.951936,0.954654,0.619811,0.36476,0.357679,0.370105,0.297174,0.061967,0.980564,0.167477,0.745575,0.649883,0.241281,0.36307,0.623918,0.91962,0.574037,0.338016,0.307426,0.931491,0.0353113,0.7422,0.464952,0.951323,0.379155,0.0440443,0.994353,0.215139,0.997509,0.0817662,0.835407,0.0936285,0.342886,0.760024,0.590905,0.542577,0.561654,0.181149,0.199645,0.930412,0.205224,0.902524,0.716436,0.499651,0.504912,0.959708,0.754913,0.606125,0.297254,0.867397,0.54839,0.898225,0.0479754,0.501233,0.797286,0.594826,0.884421,0.070397,0.120449,0.951551,0.0153965,0.652476,0.101716,0.575873,0.628527,0.00033325,0.327174,0.838108,0.531772,0.345424,0.348153,0.615841,0.723021,0.268613,0.300534,0.895989,0.273103,0.713574,0.462419,0.954983,0.572284,0.130393,0.156115,0.306564,0.754263,0.950676,0.984471,0.236056,0.724482,0.79482,0.658203,0.21861,0.320544,0.828276,0.543959,0.327903,0.851723,0.109252,0.0351802,0.27728,0.884657,0.440134,0.289451,0.0742229,0.173691,0.400358,0.575749,0.416419,0.309146,0.680186,0.269981,0.476552,0.369459,0.648201,0.203741,0.575191,0.265231,0.503284,0.925125,0.313968,0.839099,0.61938,0.162977,0.0611177,0.672682,0.544084,0.15386,0.510469,0.409308,0.367712,0.794197,0.931635,0.152417,0.619448,0.294542,0.33846,0.724348,0.145665,0.746596,0.157756,0.495375,0.841541,0.810914,0.71287,0.787908,0.934864,0.0986351,0.435181,0.399856,0.0208195,0.347819,0.150181,0.17251,0.486556,0.421086,0.204711,0.632338,0.711233,0.936026,0.543121,0.111327,0.867613,0.015182,0.50458,0.357657,0.0301486,0.230061,0.992915,0.97642,0.13115,0.889589,0.599693,0.256646,0.771224,0.398162,0.325644,0.606334,0.740461,0.340312,0.357668,0.979396,0.952349,0.415105,0.0401847,0.516101,0.696237,0.203596,0.410054,0.53427,0.73359,0.322768,0.434385,0.660346,0.377578,0.49438,0.338542,0.222734,0.862064,0.939991,0.289462,0.704013,0.0293846,0.845917,0.606961,0.20545,0.181115,0.534957,0.834989,0.218909,0.126225,0.589904,0.270417,0.00221765,0.894348,0.499432,0.873946,0.0950391,0.98604,0.32979,0.80541,0.60849,0.830693,0.983384,0.384125,0.895066,0.41117,0.154933,0.106854,0.0231006,0.426784,0.245804,0.129665,0.860141,0.457876,0.656303,0.655847,0.533625,0.0832496,0.543973,0.123397,0.896363,0.153353,0.400384,0.437495,0.588133,0.781029,0.0587531,0.877379,0.696019,0.169759,0.275534,0.793562,0.657726,0.542839,0.0845945,0.290668,0.12962,0.635777,0.382592,0.396994,0.854831,0.84386,0.408618,0.760544,0.509316,0.695647,0.656591,0.644186,0.113736,0.804892,0.256487,0.405718,0.947491,0.550277,0.13708,0.78289,0.379536,0.778877,0.826963,0.873858,0.909282,0.842912,0.847309,0.342112,0.588864,0.90423,0.725474,0.383031,0.56849,0.882479,0.629626,0.923323,0.02144,0.721556,0.503414,0.131111,0.811997,0.52262,0.298604,0.468842,0.921051,0.628226,0.161663,0.142951,0.8078,0.104636,0.814213,0.591744,0.834125,0.740722,0.210194,0.42352,0.0763865,0.566619,0.931165,0.626643,0.105617,0.450891,0.227564,0.497548,0.0737225,0.137874,0.429957,0.988426,0.896835,0.759375,0.863671,0.43447,0.580165,0.519742,0.00677305,0.738577,0.584842,0.0369109,0.562974,0.81113,0.0425257,0.335893,0.120491,0.239461,0.616316,0.275122,0.0369119,0.114467,0.185728,0.790272,0.157674,0.884532,0.50843,0.201766,0.205657,0.516599,0.808828,0.627367,0.0666988,0.0832108,0.928262,0.0694646,0.625941,0.723923,0.562192,0.911726,0.516083,0.199364,0.384427,0.00699574,0.584947,0.469575,0.523111,0.794314,0.680816,0.174608,0.140248,0.00272149,0.280835,0.191298,0.459298,0.508194,0.415438,0.294189,0.270408,0.721726,0.322711,0.209495,0.595568,0.416609,0.205816,0.511019,0.46441,0.268589,0.31329,0.475012,0.504786,0.345602,0.910315,0.414439,0.925372,0.253681,0.743576,0.514773,0.33602,0.643828,0.804974,0.239438,|0.966328,0.889804,0.36842,0.344893,0.280374,0.336043,0.330156,0.847308,0.427954,0.816819,0.503718,0.122482,0.531742,0.163914,0.789533,0.395375,0.0445096,0.714755,0.255302,0.72701,0.336848,0.829087,0.337462,0.905014,0.412866,0.873857,0.62632,0.816543,0.57002,0.0777343,0.39579,0.244679,0.954454,0.0842758,0.892931,0.308701,0.725897,0.350334,0.00318098,0.124436,0.997068,0.293266,0.314483,0.495991,0.633518,0.787488,0.917898,0.455619,0.624178,0.69915,0.4771,0.42729,0.971526,0.209423,0.0419185,0.371964,0.986079,0.954736,0.577069,0.0119794,0.807392,0.215683,0.00218201,0.158258,0.936098,0.919585,0.471916,0.555658,0.328709,0.0713726,0.938257,0.993739,0.909057,0.619306,0.321565,0.187995,0.0995904,0.032247,0.506659,0.792316,0.520259,0.479142,0.00362247,0.882363,0.139554,0.519635,0.104356,0.798718,0.184986,0.0582379,0.963448,0.0124202,0.948138,0.90522,0.671668,0.976595,0.307236,0.910832,0.327523,0.0999695,0.386735,0.11938,0.0962592,0.5812,0.567396,0.466467,0.692832,0.579436,0.273123,0.835917,0.510428,0.979502,0.714954,0.693177,0.501311,0.513556,0.310201,0.024339,0.0314842,0.500996,0.743933,0.408141,0.0493104,0.345233,0.829367,0.113907,0.489145,0.00627631,0.442674,0.626319,0.957428,0.996418,0.26093,0.643107,0.872155,0.650656,0.134252,0.900906,0.870413,0.723051,0.523233,0.776123,0.550665,0.835544,0.552296,0.174815,0.120652,0.22913,0.705647,0.636398,0.670732,0.816843,0.0345019,0.947708,0.709017,0.376943,0.781695,0.0388894,0.264227,0.903173,0.817224,0.0290276,0.955326,0.8695,0.71699,0.757422,0.543278,0.418918,0.739936,0.179069,0.802657,0.676918,0.79948,0.322007,0.662835,0.682986,0.135661,0.10882,0.845607,0.658991,0.954846,0.377913,0.364344,0.66101,0.463461,0.349289,0.348561,0.915916,0.0247307,0.298181,0.945966,0.809153,0.272198,0.41848,0.956446,0.413551,0.916312,0.307589,0.582145,0.654763,0.189433,0.482358,0.90779,0.120515,0.614029,0.250003,0.819713,0.872657,0.454487,0.134427,0.499185,0.98407,0.760917,0.751975,0.591311,0.34217,0.885768,0.567092,0.370792,0.471819,0.969018,0.195994,0.170759,0.825899,0.737083,0.929882,0.242809,0.804863,0.915207,0.182703,0.793207,0.0985862,0.720612,0.784613,0.0520992,0.665107,0.437261,0.543193,0.972374,0.283937,0.489637,0.62819,0.55348,0.432362,0.575344,0.87295,0.282882,0.00300771,0.291199,0.403768,0.494808,0.0707472,0.0670678,0.325945,0.115426,0.16389,0.366742,0.753564,0.0587969,0.230825,0.666398,0.51159,0.853581,0.851529,0.918433,0.898356,0.877215,0.00100899,0.450652,0.939364,0.654058,0.237503,0.222476,0.610617,0.146487,0.212282,0.182362,0.125448,0.303751,0.11759,0.697801,0.693606,0.513926,0.0845684,0.623977,0.160328,0.795162,0.467484,0.46971,0.588245,0.496955,0.634626,0.572845,0.0451694,0.468502,0.798481,0.934928,0.265457,0.00613892,0.997727,0.869117,0.0522547,0.202955,0.725707,0.891577,0.337999,0.322086,0.655953,0.62873,0.200661,0.852696,0.835868,0.675284,0.266182,0.910818,0.343698,0.881807,0.951883,0.0928876,0.955241,0.745742,0.550187,0.697329,0.498471,0.418072,0.756702,0.855307,0.23904,0.796126,0.139658,0.483864,0.737293,0.462212,0.455375,0.0749204,0.696379,0.729283,0.895722,0.121969,0.407894,0.130248,0.163073,0.30567,0.399412,0.671844,0.455648,0.618963,0.709918,0.333887,0.14662,0.141355,0.858038,0.539246,0.124108,0.729607,0.263964,0.289256,0.091684,0.155066,0.699872,0.747781,0.379681,0.230901,0.830312,0.35854,0.226266,0.446003,0.0666662,0.328479,0.59933,0.70742,0.240278,0.859251,0.261945,0.0240449,0.208057,0.831457,0.0460796,0.405599,0.840385,0.0315438,0.704293,0.207812,0.213452,0.755107,0.354953,0.890841,0.917872,0.965899,0.910676,0.812779,0.0426537,0.0501526,0.0192858,0.807499,0.391362,0.553998,0.299586,0.632884,0.683295,0.978402,0.978169,0.0167496,0.780281,0.351678,0.94745,0.639421,0.60389,0.766253,0.496465,0.455984,0.724634,0.35886,0.756859,0.389855,0.0294873,0.821708,0.525046,0.584664,0.601334,0.086976,0.530656,0.837921,0.710554,0.0594147,0.658049,0.183169,0.786002,0.894068,0.518001,0.869662,0.41076,0.441176,0.796568,0.478796,0.842259,0.819297,0.0317144,0.489547,0.590407,0.83289,0.980156,0.884735,0.477147,0.97743,0.571034,0.062748,0.0668066,0.332413,0.688308,0.468838,0.831874,0.148834,0.0149046,0.735155,0.861601,0.678981,0.410728,0.342639,0.439424,0.94171,0.607232,0.284302,0.89928,0.500391,0.353178,0.649759,0.113356,0.342487,0.135584,0.502317,0.760396,0.444864,0.628331,0.480179,0.97428,0.9727,0.818427,0.539222,0.241048,0.641866,0.592447,0.700404,0.0330948,0.756984,0.508286,0.835836,0.879448,0.860546,0.293405,0.237462,0.163574,0.56658,0.852856,0.350605,0.40749,0.148265,0.431853,0.710373,0.0144842,0.740144,0.0120568,0.724217,0.58969,0.826534,0.683855,0.692039,0.269957,0.723364,0.00655186,0.281636,0.254638,0.433058,0.596124,0.697094,0.496104,0.8468,0.975542,0.151413,0.0784807,0.290571,0.239341,0.337891,0.840127,0.770639,0.275308,0.426807,0.85788,0.623044,0.384857,0.777207,0.683754,0.353265,0.861431,0.0135857,0.330254,0.3992,0.277902,0.352077,0.884193,0.887217,0.500081,0.0132243,0.094244,0.652558,0.0731944,0.227506,0.530162,0.0392192,0.340662,0.984155,0.28445,0.0484357,0.565955,0.32397,0.533653,0.659027,0.995481,0.183768,0.210856,0.218754,0.555436,0.267696,0.129593,0.057558,0.812802,0.805218,0.315747,0.705209,0.491208,0.66366,0.575801,0.15549,0.76462,0.435088,0.921003,0.758039,0.0030098,0.783495,0.495923,0.216765,0.0446603,0.886187,0.260371,0.54033,0.290603,0.476675,0.436491,0.676332,0.859809,0.665042,0.24846,0.660143,0.00464016,0.528117,0.328607,0.717041,0.367136,0.130928,0.522211,0.947867,0.972461,0.256876,0.817196,0.659787,0.796254,0.876571,0.0454968,0.168006,0.218995,0.729972,0.534034,0.620051,0.259788,0.389525,0.411407,0.470668,0.303348,0.799955,0.106527,0.0935955,0.0010615,0.759221,0.699562,0.283671,0.611458,0.69678,0.79623,0.841073,0.676197,0.209546,0.4227,0.608699,0.537946,0.830264,0.460937,0.583848,0.75235,0.629291,0.175547,0.965878,0.768938,0.384522,0.301934,0.441752,0.58321,0.0914221,0.485302,0.684402,0.222658,0.171687,0.279252,0.140848,0.10448,0.243255,0.370137,0.924912,0.267018,0.579774,0.614244,0.161136,0.956022,0.282717,0.420128,0.106149,0.652148,0.519648,0.602226,0.512384,0.379478,0.763625,0.634473,0.103183,0.381554,0.716295,0.451619,0.260545,0.779109,0.553008,0.66345,0.767489,0.276719,0.842237,0.202481,0.647224,0.384522,0.405337,0.973877,0.075443,0.988171,0.922479,0.600581,0.788577,0.235085,0.399794,0.273856,0.284365,0.059499,0.669355,0.546938,0.74249,0.905412,0.753631,0.759029,0.371218,0.35656,0.82197,0.0518094,0.131683,0.410222,0.768404,0.328517,0.358414,0.739732,0.925073,0.799938,0.540689,0.214007,0.00667304,0.643426,0.881149,0.278834,0.328605,0.357275,0.512798,0.730739,0.015652,0.848809,0.500173,0.461537,0.0130827,0.813153,0.0237575,0.62388,0.203064,0.11745,0.737298,0.816481,0.815639,0.130574,0.550682,0.656105,0.00758255,0.925746,0.483443,0.067885,0.884119,0.821898,0.408855,0.967779,0.703629,0.331858,0.453788,0.88624,0.881615,0.811857,0.661739,0.068921,0.483101,0.8372,0.826262,0.584831,0.19696,0.461979,0.184873,0.29663,0.152497,0.121213,0.580072,0.544151,0.456237,0.283425,0.8133,0.635584,0.66135,0.231095,0.836786,0.111865,0.212397,0.684739,0.337046,0.884384,0.396887,0.714298,0.526461,0.820116,0.890868,0.645806,0.754926,0.875784,0.30451,0.116552,0.0729582,0.357825,0.636603,0.575958,0.766569,0.899733,0.914963,0.252435,0.311225,0.40267,0.644333,0.735019,0.495798,0.24522,0.39267,0.881284,0.895083,0.785332,0.794533,0.513658,0.670715,0.18229,0.077213,0.252673,0.654974,0.365095,0.147041,0.278746,0.25413,0.828103,0.690666,0.968193,0.7756,0.63618,0.303415,0.979726,0.365185,0.570794,0.208736,0.894187,0.49758,0.344115,0.160696,0.540069,0.209416,0.779898,0.811521,0.320823,0.624999,0.842355,0.576199,0.50925,0.70667,0.799059,0.603854,0.543886,0.809847,0.293415,0.801954,0.368335,0.948584,0.048191,0.258907,0.78212,0.896263,0.57912,0.440879,0.975292,0.766157,0.201753,0.354125,0.411118,0.579749,0.0912687,0.607308,0.552286,0.284529,0.555881,0.343934,0.697034,0.405775,0.554072,0.386915,0.792653,0.760798,0.808252,0.471959,0.667472,0.00323343,0.820935,0.948008,0.455348,0.804842,0.519861,0.960849,0.952781,0.049723,0.617591,0.900287,0.480926,0.833676,0.0161908,0.953045,0.463627,0.0166709,0.270055,0.38492,0.122348,0.672902,0.496775,0.154927,0.318027,0.512394,0.422643,0.423847,0.900885,0.62227,0.00598866,0.675752,0.219893,0.545991,0.770191,0.623521,0.591735,0.113752,0.898079,0.263277,0.139211,0.45699,0.190195,0.300795,0.1823,0.334622,0.130355,0.659726,0.768033,0.492448,0.826704,0.578155,0.47114,0.451178,0.72751,0.15104,0.320624,0.0965301,0.44337,0.223032,0.251157,0.125115,0.432082,0.709173,0.465874,0.257361,0.44432,0.0543435,0.686753,0.268618,0.107801,0.310309,0.064811,0.648467,0.912103,0.82901,0.545427,0.30314,0.436594,0.553671,0.581356,0.237284,0.614058,0.376983,0.733289,0.51191,0.452921,0.873745,0.711002,0.0984722,0.238469,0.248012,0.784189,0.0147036,0.0734979,0.167427,0.937563,0.230763,0.470607,0.725568,0.849684,0.110734,0.308158,0.138737,0.0999377,0.649974,0.0124637,0.960462,0.157279,0.608705,0.77663,0.522253,0.735033,0.798049,0.693907,0.00909537,0.0476059,0.826459,0.67387,0.149209,0.206053,|0.0175147,0.871854,0.711809,0.438034,0.19959,0.0473255,0.645473,0.704092,0.389443,0.989794,0.00153291,0.571862,0.732638,0.398661,0.506305,0.135243,0.693616,0.57314,0.049972,0.524336,0.097838,0.635063,0.0204426,0.699502,0.943145,0.856851,0.245967,0.13561,0.284514,0.851467,0.563269,0.351159,0.501659,0.491522,0.653721,0.146625,0.579537,0.455744,0.793956,0.599024,0.314862,0.142842,0.138294,0.557321,0.199647,0.212659,0.874593,0.250473,0.136795,0.401661,0.778558,0.092031,0.631261,0.952268,0.690575,0.282578,0.261678,0.774929,0.0956928,0.923097,0.209537,0.821084,0.0324822,0.483375,0.190339,0.0460411,0.970619,0.147408,0.257726,0.0985277,0.6598,0.00690538,0.050469,0.834354,0.544741,0.881012,0.325274,0.45542,0.111301,0.241029,0.365789,0.563358,0.766905,0.943184,0.545856,0.707311,0.182146,0.263284,0.0218989,0.699439,0.419457,0.288466,0.553382,0.931606,0.92669,0.209115,0.0201163,0.954521,0.843863,0.993878,0.715072,0.537139,0.295352,0.320368,0.1014,0.181839,0.00756711,0.0542106,0.680596,0.271205,0.183555,0.836087,0.0721602,0.553124,0.837385,0.478944,0.282315,0.201302,0.454985,0.168726,0.0545149,0.688768,0.42871,0.898629,0.460145,0.879342,0.915519,0.438982,0.610619,0.87243,0.908493,0.968925,0.164821,0.208029,0.920177,0.145858,0.870953,0.55791,0.439896,0.599541,0.632073,0.0791178,0.102777,0.0246044,0.0451065,0.104676,0.49039,0.0951747,0.0199499,0.067938,0.0323309,0.931936,0.0483691,0.657278,0.842579,0.553703,0.398604,0.400081,0.1203,0.812093,0.0960191,0.0371214,0.348117,0.881909,0.380992,0.60623,0.350712,0.925608,0.797425,0.355877,0.45462,0.136158,0.803653,0.973337,0.793421,0.808828,0.563749,0.272901,0.629596,0.0153939,0.268777,0.187827,0.974234,0.19705,0.6432,0.215173,0.142817,0.146952,0.244349,0.538816,0.162313,0.661648,0.276166,0.414651,0.280508,0.617464,0.403978,0.842647,0.444601,0.85436,0.5874,0.0739977,0.278774,0.179745,0.295918,0.918414,0.0677223,0.256148,0.0678015,0.541042,0.455697,0.0532052,0.535648,0.591864,0.813331,0.517016,0.156576,0.679864,0.853648,0.995384,0.523079,0.356217,0.164873,0.926137,0.511073,0.733821,0.862683,0.732267,0.383854,0.545349,0.58254,0.86453,0.84575,0.792101,0.225835,0.555578,0.0403682,0.114621,0.794474,0.694342,0.597849,0.894435,0.68138,0.6293,0.185073,0.0135951,0.772059,0.559934,0.322762,0.295355,0.152481,0.225611,0.329941,0.435863,0.00234032,0.989969,0.692813,0.0340772,0.187087,0.620093,0.730826,0.538192,0.272579,0.312485,0.256179,0.568178,0.458424,0.453941,0.559685,0.843416,0.826177,0.285833,0.910796,0.814354,0.0422299,0.964264,0.449924,0.457973,0.688858,0.558951,0.539152,0.0425327,0.993546,0.373506,0.223992,0.62864,0.462147,0.67537,0.976084,0.472251,0.876905,0.266221,0.417862,0.760927,0.675062,0.107178,0.0392982,0.636841,0.590877,0.113147,0.700379,0.239258,0.216287,0.213738,0.63997,0.160711,0.268522,0.925183,0.934158,0.0323891,0.472954,0.589092,0.287505,0.612696,0.446916,0.548716,0.738085,0.0490854,0.168472,0.908464,0.96895,0.541431,0.824946,0.437064,0.641039,0.88769,0.667028,0.830688,0.824799,0.778161,0.683283,0.231629,0.760118,0.161051,0.678575,0.898859,0.183121,0.624192,0.669407,0.648808,0.184415,0.951492,0.910641,0.392643,0.153145,0.244062,0.384381,0.728026,0.976443,0.163895,0.0490918,0.462768,0.0453464,0.160101,0.0238717,0.453659,0.515039,0.426497,0.203032,0.331581,0.771743,0.499512,0.800295,0.80214,0.608772,0.846606,0.522611,0.264297,0.314357,0.938645,0.911899,0.139969,0.393351,0.785958,0.0326891,0.778201,0.953722,0.765473,0.541966,0.986052,0.282391,0.81346,0.0134021,0.734921,0.779275,0.861533,0.827924,0.605312,0.223993,0.830949,0.709648,0.575022,0.0190755,0.32242,0.360304,0.689024,0.342493,0.731509,0.441892,0.460628,0.175551,0.85726,0.246685,0.52345,0.475773,0.0946563,0.763593,0.665236,0.105323,0.00612664,0.336056,0.277846,0.776002,0.572296,0.905176,0.423711,0.814606,0.18959,0.180637,0.0224099,0.867777,0.540141,0.581757,0.340372,0.923217,0.702287,0.733183,0.292326,0.912517,0.400721,0.260037,0.398964,0.415997,0.759766,0.699074,0.619687,0.716841,0.0782135,0.196329,0.696996,0.331319,0.346254,0.485566,0.372347,0.332307,0.480009,0.717731,0.478289,0.231954,0.347471,0.424801,0.0505,0.755459,0.731164,0.238925,0.249527,0.188333,0.0593625,0.158389,0.89799,0.317577,0.0758567,0.233725,0.851739,0.114998,0.943497,0.562594,0.0804191,0.741843,0.0699276,0.868651,0.0596195,0.513705,0.673193,0.980795,0.894084,0.0541698,0.511305,0.308048,0.941507,0.538069,0.0916634,0.847067,0.513207,0.343807,0.8015,0.291649,0.693684,0.254887,0.32462,0.275623,0.933969,0.433156,0.399179,0.721386,0.141813,0.102522,0.908934,0.659519,0.657715,0.525161,0.217646,0.0192662,0.316489,0.997299,0.380602,0.133397,0.395854,0.845437,0.0536622,0.790399,0.240762,0.0606768,0.324054,0.475675,0.625902,0.867315,0.0965127,0.420147,0.866503,0.877642,0.326546,0.69057,0.379418,0.495151,0.388703,0.301287,0.0563411,0.73648,0.985706,0.67918,0.192661,0.157782,0.935555,0.526285,0.317456,0.783869,0.47458,0.121492,0.00154132,0.857229,0.303668,0.518,0.79006,0.453893,0.97188,0.778716,0.160952,0.613475,0.498753,0.710859,0.839013,0.779963,0.733727,0.356365,0.335931,0.419503,0.445562,0.818959,0.925685,0.975034,0.46353,0.65016,0.27771,0.0598434,0.0281306,0.864262,0.95216,0.659887,0.409779,0.199514,0.97254,0.794338,0.972331,0.96273,0.1129,0.424588,0.990351,0.544496,0.54149,0.853022,0.447371,0.682117,0.211526,0.726668,0.720304,0.963926,0.368001,0.915015,0.0494419,0.289905,0.985706,0.611478,0.947689,0.790028,0.115887,0.348554,0.644084,0.154465,0.820626,0.646249,0.306099,0.348726,0.520815,0.0595521,0.906362,0.667825,0.425564,0.192251,0.34606,0.593139,0.540018,0.177394,0.208549,0.612717,0.0320032,0.353799,0.82266,0.7781,0.820083,0.371271,0.00242198,0.874911,0.954577,0.341959,0.560363,0.0901186,0.443248,0.412181,0.98545,0.473219,0.314187,0.422952,0.0142952,0.831142,0.273518,0.660849,0.611019,0.389027,0.340426,0.506505,0.75462,0.312856,0.104728,0.28871,0.252979,0.95855,0.9558,0.0746567,0.159213,0.995545,0.54807,0.260046,0.0336868,0.165992,0.630445,0.41832,0.0803475,0.997308,0.318242,0.716809,0.944242,0.317627,0.76417,0.373628,0.511818,0.474544,0.830849,0.5833,0.632028,0.680699,0.108137,0.174763,0.234951,0.356606,0.740339,0.986528,0.479311,0.800111,0.97701,0.643801,0.641174,0.339715,0.306668,0.345759,0.286579,0.584577,0.322006,0.136545,0.724998,0.527472,0.0710097,0.619243,0.128766,0.634903,0.640219,0.359427,0.761525,0.641537,0.223279,0.800452,0.755848,0.63538,0.856718,0.160916,0.0289102,0.408847,0.656475,0.236162,0.764075,0.54797,0.658664,0.46265,0.865368,0.942723,0.742682,0.250695,0.959197,0.977951,0.866464,0.573822,0.128431,0.427297,0.143568,0.871945,0.238873,0.888661,0.543888,0.478986,0.983248,0.966493,0.700811,0.3857,0.404536,0.603419,0.79779,0.591865,0.140988,0.475752,0.55836,0.790269,0.32531,0.241267,0.099582,0.240759,0.436326,0.683684,0.846829,0.986945,0.664243,0.0596316,0.74011,0.26164,0.251679,0.248369,0.816566,0.0543986,0.779891,0.00262147,0.053548,0.661608,0.212669,0.218052,0.0145462,0.288226,0.502183,0.846476,0.979915,0.241846,0.424756,0.492095,0.562554,0.0360939,0.421971,0.779132,0.0979363,0.164662,0.896911,0.814215,0.0823103,0.109023,0.565267,0.406185,0.974351,0.894398,0.89509,0.899801,0.299922,0.116075,0.91696,0.184756,0.278998,0.998978,0.735163,0.149987,0.820227,0.401434,0.747811,0.327891,0.417693,0.126676,0.591313,0.824392,0.411474,0.83843,0.329098,0.439901,0.259915,0.819689,0.655367,0.143498,0.971037,0.733473,0.304935,0.287483,0.482663,0.245905,0.73872,0.455428,0.347998,0.834149,0.327723,0.488314,0.283679,0.879038,0.652308,0.634792,0.592911,0.807566,0.188526,0.492948,0.239572,0.19623,0.300755,0.954055,0.351529,0.856367,0.569467,0.453112,0.131084,0.0226158,0.744281,0.867978,0.277335,0.345653,0.541222,0.0369279,0.564035,0.760416,0.0711698,0.269719,0.295104,0.0150148,0.645521,0.692829,0.849661,0.113369,0.763779,0.590473,0.910154,0.799367,0.773866,0.285588,0.236068,0.729284,0.258589,0.085606,0.914148,0.931838,0.446838,0.375766,0.155219,0.548902,0.460048,0.339161,0.361068,0.816893,0.442449,0.984744,0.228674,0.348124,0.181049,0.523824,0.799729,0.297342,0.986887,0.27897,0.593964,0.617872,0.151172,0.734709,0.830445,0.274197,0.0563025,0.0268109,0.411133,0.41407,0.944509,0.208336,0.83996,0.674604,0.306663,0.988153,0.835446,0.706759,0.517729,0.829952,0.406331,0.759882,0.528362,0.202375,0.961257,0.98294,0.0683562,0.500361,0.787501,0.142169,0.01144,0.852317,0.749769,0.583607,0.201824,0.291369,0.824359,0.465859,0.666571,0.897202,0.375398,0.444171,0.676656,0.710429,0.732321,0.226588,0.529584,0.0410695,0.683701,0.501038,0.823342,0.0897556,0.271669,0.724474,0.752804,0.857181,0.480874,0.326042,0.728411,0.638055,0.452581,0.298052,0.101329,0.814384,0.0196766,0.760939,0.677261,0.891695,0.372555,0.165848,0.88304,0.322705,0.404095,0.774945,0.884248,0.465239,0.42149,0.370592,0.691922,0.120457,0.285902,0.0391025,0.0896435,0.403373,0.564521,0.338733,0.116694,0.516795,0.278346,0.620947,0.0757499,0.572083,0.726144,0.1185,0.694853,0.575239,0.546034,0.662341,0.123011,0.806326,0.116552,0.544265,0.959995,0.477017,0.0761863,0.0304341,0.921391,0.876352,0.934849,0.70792,0.0394852,0.210815,0.952965,|0.772447,0.949195,0.308746,0.108764,0.0524874,0.791124,0.0837263,0.685412,0.867847,0.540007,0.804158,0.511359,0.624372,0.816869,0.522558,0.606434,0.246449,0.298068,0.54359,0.746702,0.966399,0.831646,0.308137,0.797797,0.838619,0.628925,0.0433201,0.0218807,0.830455,0.525421,0.798998,0.562766,0.259265,0.687938,0.939227,0.141019,0.396496,0.299217,0.119668,0.972257,0.435112,0.492779,0.701401,0.532728,0.749209,0.699938,0.110577,0.954838,0.377948,0.156543,0.681821,0.610457,0.943952,0.471506,0.628905,0.245695,0.695721,0.969648,0.483998,0.604488,0.922816,0.253044,0.0316834,0.142769,0.88936,0.715728,0.729964,0.643376,0.98754,0.818331,0.263585,0.493259,0.844087,0.807491,0.17753,0.547161,0.988793,0.372256,0.387962,0.514334,0.351384,0.5175,0.619375,0.139953,0.126233,0.435674,0.589092,0.165809,0.112035,0.922744,0.903664,0.62048,0.27484,0.764035,0.175309,0.849522,0.648477,0.821869,0.06567,0.970565,0.135349,0.0661893,0.70041,0.454017,0.0822855,0.857378,0.404334,0.349559,0.714899,0.540151,0.164055,0.073775,0.344023,0.719028,0.660667,0.979652,0.104025,0.457452,0.6713,0.567059,0.0464613,0.302445,0.332116,0.95889,0.219773,0.339983,0.546055,0.863117,0.800853,0.197889,0.237051,0.343211,0.706283,0.746993,0.417734,0.306064,0.891931,0.867205,0.503671,0.326544,0.587453,0.359672,0.81703,0.0830474,0.918646,0.426656,0.559183,0.472054,0.858213,0.0958444,0.849439,0.651989,0.10337,0.554025,0.704816,0.653116,0.553357,0.819823,0.744409,0.702282,0.0292851,0.0212866,0.272111,0.773447,0.558655,0.896201,0.419072,0.514154,0.451207,0.278491,0.780475,0.159905,0.993245,0.710895,0.527623,0.0131195,0.585048,0.0477446,0.545186,0.392648,0.864681,0.359513,0.814483,0.537527,0.9123,0.43543,0.350904,0.388353,0.880498,0.599442,0.595839,0.489794,0.896105,0.887194,0.245321,0.829335,0.6682,0.871713,0.93933,0.867482,0.769211,0.985292,0.280897,0.951386,0.5866,0.0173409,0.829388,0.223422,0.0196081,0.990538,0.123611,0.173557,0.379746,0.499967,0.71728,0.47395,0.602717,0.304336,0.975103,0.110881,0.0637608,0.589662,0.748689,0.11525,0.799531,0.292205,0.493637,0.518273,0.0888641,0.560088,0.259671,0.83839,0.80856,0.097447,0.509333,0.206352,0.989983,0.153808,0.0488502,0.298075,0.134296,0.924487,0.657972,0.887225,0.183774,0.387491,0.206407,0.686688,0.0291934,0.323613,0.269592,0.15718,0.788789,0.219902,0.400469,0.729753,0.67809,0.293351,0.37191,0.226543,0.444016,0.200632,0.70505,0.795156,0.45548,0.02533,0.059991,0.0924268,0.899855,0.297657,0.355721,0.162556,0.255611,0.421468,0.234474,0.923379,0.977693,0.368997,0.621987,0.852404,0.476755,0.668892,0.218946,0.277088,0.661435,0.717035,0.894275,0.782214,0.575624,0.432087,0.198442,0.405707,0.687562,0.855252,0.790735,0.399832,0.810424,0.00463623,0.987631,0.080686,0.655663,0.713608,0.173692,0.376086,0.957013,0.402151,0.230033,0.0610131,0.820271,0.269291,0.186917,0.0993245,0.760752,0.79151,0.460455,0.642845,0.633037,0.963638,0.143853,0.788693,0.660707,0.217552,0.526126,0.825702,0.121662,0.151042,0.969344,0.929723,0.515685,0.591281,0.0705631,0.239214,0.398418,0.335604,0.344635,0.174186,0.771015,0.602756,0.108606,0.0217916,0.239437,0.103082,0.699041,0.800756,0.0521696,0.321259,0.465102,0.674033,0.0252093,0.531719,0.629187,0.524203,0.010628,0.677433,0.852033,0.307412,0.934371,0.54297,0.261334,0.359791,0.129535,0.782689,0.185392,0.52642,0.12662,0.152567,0.655722,0.279209,0.172797,0.324121,0.886012,0.403344,0.885955,0.157804,0.258422,0.554401,0.105908,0.293487,0.254911,0.100752,0.840785,0.964039,0.791611,0.920511,0.0538058,0.565084,0.821156,0.916783,0.803772,0.647463,0.472307,0.556836,0.185117,0.0558571,0.0367604,0.198876,0.224392,0.315249,0.117933,0.137341,0.227848,0.5339,0.0201587,0.583187,0.162991,0.325262,0.82935,0.0380616,0.0455685,0.914108,0.0179765,0.860863,0.615982,0.862724,0.554174,0.513315,0.318149,0.981211,0.984773,0.526334,0.608355,0.349376,0.974883,0.588777,0.623097,0.313468,0.395796,0.424768,0.924632,0.542317,0.54954,0.792699,0.773067,0.66395,0.396395,0.942687,0.452104,0.997218,0.49812,0.36833,0.40027,0.681515,0.435226,0.947321,0.863565,0.886302,0.342547,0.278525,0.279408,0.553174,0.969583,0.0693088,0.017619,0.949649,0.492704,0.779456,0.592171,0.604576,0.36437,0.229769,0.872089,0.0316168,0.499307,0.751968,0.870395,0.73496,0.746308,0.0514287,0.181113,0.473869,0.751782,0.0859364,0.334852,0.870392,0.735833,0.997516,0.747628,0.478234,0.508496,0.711633,0.0762267,0.592875,0.436197,0.569622,0.262309,0.585208,0.57356,0.728903,0.312885,0.0126245,0.0984699,0.719799,0.56901,0.741225,0.356078,0.923643,0.915238,0.837415,0.150503,0.155743,0.154366,0.608271,0.0458389,0.782575,0.358569,0.464326,0.817891,0.550044,0.220904,0.299928,0.0287987,0.449683,0.0909125,0.54535,0.0861455,0.640499,0.499097,0.800704,0.869648,0.897395,0.799701,0.414171,0.338465,0.96796,0.799493,0.873568,0.799985,0.456973,0.151141,0.101202,0.107497,0.704091,0.894804,0.239833,0.911414,0.710498,0.878933,0.360063,0.221891,0.601686,0.0837423,0.667278,0.647123,0.0400925,0.698025,0.400632,0.274616,0.559016,0.64305,0.596939,0.577309,0.718147,0.21298,0.21507,0.541297,0.249284,0.885834,0.225412,0.171402,0.391947,0.32687,0.190141,0.807988,0.396123,0.798858,0.85429,0.204526,0.104048,0.342888,0.830126,0.745276,0.175477,0.138084,0.166475,0.273651,0.346747,0.527488,0.694016,0.186623,0.778579,0.770546,0.140751,0.224491,0.0346086,0.468179,0.740171,0.902782,0.738414,0.0874838,0.300842,0.261869,0.461257,0.348925,0.425916,8.63671e-05,0.225477,0.509628,0.873878,0.455277,0.972729,0.970474,0.742869,0.394557,0.723566,0.0421119,0.0848265,0.813053,0.01847,0.530803,0.923948,0.396831,0.0872797,0.0719239,0.98939,0.724867,0.300274,0.368437,0.980432,0.690783,0.804826,0.799783,0.483249,0.821798,0.16209,0.0376011,0.91415,0.30003,0.363509,0.891132,0.89992,0.738892,0.0185949,0.61179,0.909549,0.211506,0.729245,0.826424,0.472355,0.661813,0.494344,0.342836,0.36886,0.965504,0.406942,0.773469,0.160654,0.228151,0.864956,0.56379,0.377844,0.00926489,0.768953,0.975991,0.966752,0.373829,0.757857,0.428014,0.650973,0.945737,0.329871,0.759378,0.0179665,0.51049,0.811792,0.0371412,0.684187,0.813915,0.58244,0.873489,0.188248,0.888583,0.727075,0.290327,0.329725,0.567755,0.480458,0.378755,0.39285,0.563538,0.501435,0.45933,0.0510052,0.533056,0.72535,0.309678,0.970057,0.39782,0.838776,0.719355,0.0279871,0.174901,0.842079,0.545385,0.619877,0.0747737,0.435636,0.999017,0.975739,0.869514,0.215623,0.595102,0.273157,0.0542016,0.198188,0.0522186,0.161936,0.631131,0.430962,0.370553,0.959226,0.136351,0.259985,0.702558,0.156597,0.592117,0.569684,0.633143,0.363055,0.691197,0.0706322,0.513776,0.467471,0.473266,0.267271,0.354402,0.056422,0.214734,0.693427,0.0203618,0.726095,0.573263,0.530051,0.478357,0.769586,0.255323,0.83865,0.129545,0.759446,0.359985,0.51118,0.0971249,0.394224,0.771583,0.643898,0.232934,0.298275,0.140787,0.733702,0.987898,0.52366,0.421086,0.362213,0.420783,0.447592,0.982285,0.732789,0.52296,0.0969331,0.935989,0.0964809,0.447405,0.904017,0.212215,0.779668,0.624868,0.226518,0.595481,0.760096,0.306997,0.308608,0.530791,0.827417,0.298223,0.0467814,0.12581,0.810969,0.990199,0.39195,0.492858,0.64819,0.608921,0.388914,0.195856,0.69899,0.925547,0.25748,0.171857,0.162132,0.909719,0.697018,0.191427,0.486561,0.720542,0.543351,0.383805,0.95346,0.561053,0.69147,0.66392,0.0316747,0.148891,0.722373,0.654264,0.735838,0.361749,0.123145,0.892402,0.734081,0.788568,0.986862,0.636978,0.174303,0.232781,0.442587,0.575052,0.83251,0.0562642,0.130074,0.759587,0.522401,0.680517,0.082951,0.890865,0.716365,0.421851,0.480695,0.630745,0.629622,0.581057,0.790273,0.00625175,0.821393,0.791609,0.0781875,0.33408,0.762896,0.331494,0.0572338,0.40226,0.038499,0.957344,0.734371,0.479192,0.355325,0.119609,0.213046,0.954238,0.378476,0.609035,0.36871,0.0192189,0.622438,0.824305,0.0740181,0.1043,0.26799,0.325505,0.336563,0.654998,0.382056,0.408757,0.232732,0.564809,0.0672994,0.0986632,0.825847,0.959977,0.905873,0.0666199,0.370642,0.907522,0.336541,0.423481,0.457891,0.0483258,0.611749,0.00197601,0.186469,0.854656,0.377168,0.726374,0.139296,0.0425252,0.44639,0.0772933,0.894416,0.408878,0.2063,0.869881,0.643131,0.371633,0.317476,0.849284,0.14974,0.948185,0.497927,0.71966,0.463091,0.671244,0.927721,0.276677,0.438852,0.154361,0.290009,0.165771,0.572104,0.207456,0.563961,0.87388,0.410495,0.65836,0.984807,0.112627,0.253577,0.116629,0.103325,0.494954,0.115139,0.572854,0.170486,0.786793,0.0370362,0.0372761,0.256224,0.350219,0.672383,0.679213,0.724417,0.69216,0.949061,0.107562,0.577115,0.610077,0.752456,0.724473,0.229491,0.318266,0.605048,0.78649,0.282929,0.146781,0.586691,0.46422,0.903344,0.544127,0.538375,0.864649,0.636649,0.235621,0.338707,0.550538,0.545814,0.847383,0.646997,0.19756,0.799708,0.0913841,0.0714,0.585729,0.666385,0.13089,0.993947,0.632609,0.0873314,0.281496,0.0978197,0.498985,0.761761,0.38601,0.178079,0.804717,0.271942,0.349977,0.709743,0.455148,0.824641,0.608637,0.714779,0.279477,0.935902,0.33496,0.388724,0.999344,0.249741,0.616213,0.837322,0.80683,0.838679,0.907264,0.644783,0.176867,0.968563,0.964867,0.971972,0.309762,0.275016,0.127547,0.757041,0.380335,0.649057,|0.243816,0.180268,0.792655,0.642087,0.00958866,0.923748,0.307503,0.251565,0.339694,0.844894,0.674294,0.579523,0.940155,0.285237,0.713106,0.88212,0.908087,0.64015,0.773181,0.192737,0.312714,0.149373,0.726805,0.777359,0.538333,0.315842,0.823445,0.604403,0.827842,0.37346,0.673406,0.691973,0.270813,0.981423,0.338545,0.485689,0.959463,0.843101,0.959405,0.279225,0.130189,0.126418,0.193098,0.210108,0.852547,0.324559,0.368134,0.465505,0.0673935,0.961987,0.120162,0.956495,0.85532,0.352122,0.188853,0.509468,0.109107,0.96989,0.851137,0.32459,0.707166,0.447435,0.341124,0.740422,0.630337,0.196309,0.188454,0.669039,0.797366,0.358968,0.196965,0.143772,0.00205976,0.550202,0.151747,0.806563,0.774358,0.68465,0.736474,0.814593,0.417315,0.990821,0.176545,0.815929,0.159726,0.242668,0.393119,0.19912,0.194571,0.131988,0.606745,0.282776,0.620385,0.119272,0.000951946,0.398103,0.986884,0.993882,0.852102,0.233841,0.730125,0.631182,0.264525,0.179084,0.185439,0.988125,0.694292,0.42856,0.860956,0.92436,0.919274,0.797827,0.460543,0.850295,0.339173,0.291091,0.763827,0.19633,0.338224,0.461711,0.826099,0.758526,0.0868846,0.652767,0.0845178,0.00077033,0.937884,0.574822,0.123672,0.781888,0.39878,0.266077,0.179583,0.192613,0.594276,0.632067,0.159837,0.705914,0.604227,0.206781,0.202219,0.417705,0.825663,0.366266,0.736536,0.498627,0.673388,0.680644,0.677653,0.0554991,0.855723,0.215629,0.625438,0.528288,0.102598,0.717843,0.862403,0.29634,0.697339,0.811116,0.502265,0.0314029,0.273409,0.893537,0.687082,0.116863,0.614759,0.544343,0.208805,0.110469,0.41388,0.948033,0.101427,0.0722172,0.349576,0.396039,0.278603,0.298156,0.407429,0.333444,0.245815,0.290174,0.723779,0.585422,0.199881,0.325565,0.25065,0.113786,0.428972,0.133765,0.0841964,0.633864,0.161402,0.746058,0.439316,0.595273,0.396683,0.0285631,0.912133,0.080354,0.556878,0.297523,0.205909,0.407324,0.854445,0.952074,0.964108,0.828066,0.825605,0.642415,0.344765,0.936544,0.539126,0.749621,0.0179542,0.607453,0.522761,0.497045,0.0627427,0.418448,0.52501,0.936158,0.460896,0.86044,0.224636,0.152184,0.488834,0.00676733,0.386879,0.588219,0.375978,0.377603,0.422073,0.0874135,0.171384,0.492274,0.825106,0.303429,0.93332,0.649725,0.128969,0.419241,0.421009,0.471439,0.348046,0.482694,0.640842,0.460437,0.0807391,0.0218284,0.0738672,0.695668,0.306449,0.190489,0.00352663,0.310137,0.972485,0.15195,0.22339,0.49803,0.769267,0.683686,0.439501,0.903671,0.599195,0.733664,0.877931,0.597757,0.414689,0.722344,0.728732,0.0172718,0.738028,0.331893,0.827476,0.0733033,0.784249,0.465408,0.0860066,0.0600572,0.850568,0.873516,0.00057739,0.387655,0.0640457,0.213517,0.164184,0.120384,0.649693,0.273728,0.0302043,0.267693,0.556276,0.386363,0.390433,0.920616,0.428368,0.371075,0.787604,0.457419,0.113672,0.425292,0.429616,0.881581,0.915615,0.166208,0.286685,0.751557,0.964801,0.189919,0.918361,0.139841,0.250894,0.629179,0.634442,0.554972,0.0887536,0.236668,0.809584,0.0944173,0.801836,0.196232,0.590472,0.157734,0.503044,0.123421,0.922087,0.943786,0.600875,0.914477,0.939704,0.722118,0.340897,0.882295,0.230103,0.967741,0.810375,0.931058,0.4821,0.737136,0.220909,0.554827,0.470095,0.847814,0.0311124,0.525216,0.505927,0.613584,0.832285,0.53231,0.695082,0.375975,0.844311,0.520919,0.00394946,0.187746,0.716037,0.826706,0.0610788,0.434357,0.657232,0.717689,0.252392,0.924283,0.361248,0.562537,0.399023,0.0481582,0.219927,0.0213117,0.10172,0.219968,0.184529,0.339499,0.40683,0.138513,0.357737,0.386721,0.81988,0.799907,0.287659,0.179923,0.967209,0.528323,0.67447,0.910835,0.024659,0.716482,0.705119,0.975722,0.407096,0.560465,0.862729,0.76775,0.543947,0.312182,0.459648,0.529514,0.821462,0.794853,0.174039,0.622393,0.130761,0.896842,0.75182,0.865124,0.490899,0.598174,0.237873,0.196053,0.23712,0.220226,0.376159,0.949627,0.32931,0.894724,0.682769,0.517543,0.109698,0.729339,0.972105,0.551783,0.527996,0.227727,0.90864,0.0953955,0.584519,0.354237,0.153382,0.965958,0.428188,0.693137,0.208558,0.00711638,0.0287001,0.589313,0.786373,0.762064,0.0485895,0.515304,0.856109,0.677023,0.368131,0.516927,0.98739,0.662169,0.984367,0.773271,0.611417,0.979059,0.114571,0.576978,0.66039,0.810184,0.485954,0.397495,0.197689,0.373319,0.0775886,0.32574,0.938832,0.127981,0.105813,0.939274,0.164223,0.667892,0.467821,0.21041,0.42569,0.63379,0.00390702,0.232516,0.15838,0.00687623,0.486544,0.124955,0.402207,0.030988,0.645723,0.388326,0.289809,0.67261,0.11021,0.225525,0.833688,0.609168,0.596097,0.0299546,0.447824,0.0774508,0.733502,0.705178,0.111952,0.27152,0.700161,0.491033,0.197279,0.116998,0.517806,0.55473,0.28784,0.71357,0.747576,0.809296,0.982538,0.390683,0.90643,0.0747532,0.734223,0.0991962,0.193062,0.208745,0.338875,0.981903,0.934943,0.0393248,0.549494,0.364896,0.24421,0.133194,0.65035,0.314182,0.601639,0.255577,0.504643,0.837366,0.12704,0.73309,0.150993,0.901567,0.0685413,0.952461,0.00237763,0.857947,0.248624,0.641009,0.497343,0.867574,0.261785,0.558415,0.223964,0.713689,0.524501,0.172342,0.385952,0.0909966,0.133375,0.359212,0.284668,0.936814,0.0905064,0.894906,0.184669,0.986131,0.964932,0.239483,0.907286,0.025412,0.831713,0.847802,0.822361,0.791011,0.538101,0.0732985,0.45219,0.85199,0.472052,0.716275,0.514838,0.562426,0.540947,0.307189,0.463924,0.506367,0.980881,0.551572,0.0671822,0.450494,0.867593,0.886866,0.837852,0.382962,0.507281,0.517808,0.224278,0.0615061,0.146154,0.986885,0.882628,0.612484,0.38495,0.844293,0.051096,0.198865,0.0520008,0.612256,0.566758,0.508882,0.32869,0.536754,0.121848,0.245336,0.883976,0.543049,0.284699,0.126951,0.511195,0.666444,0.227586,0.527324,0.521698,0.789307,0.691318,0.959851,0.548584,0.381063,0.527511,0.701245,0.266546,0.798648,0.565412,0.402201,0.764838,0.144483,0.337756,0.657549,0.492245,0.981354,0.743738,0.561325,0.829712,0.539878,0.623102,0.0106029,0.494379,0.574478,0.581503,0.0811225,0.198893,0.240125,0.498743,0.78453,0.540138,0.899835,0.927585,0.472451,0.862463,0.000502706,0.910617,0.35422,0.722402,0.682428,0.865775,0.928218,0.147724,0.48412,0.214766,0.256909,0.662461,0.299361,0.772153,0.469788,0.245962,0.408646,0.245775,0.860291,0.477916,0.227987,0.869063,0.792188,0.946368,0.351609,0.174495,0.45427,0.869895,0.286175,0.849981,0.323207,0.615506,0.741131,0.705414,0.0661772,0.364871,0.270094,0.0390074,0.878093,0.0829682,0.766039,0.973513,0.396727,0.125426,0.620894,0.578842,0.74591,0.609422,0.273782,0.583394,0.845547,0.587018,0.412542,0.0396852,0.0483863,0.742388,0.294144,0.182973,0.398657,0.498954,0.181459,0.901939,0.667964,0.472473,0.445908,0.33635,0.167863,0.687337,0.942101,0.371674,0.882384,0.269103,0.844893,0.718567,0.0374138,0.290493,0.863767,0.722179,0.374971,0.149346,0.136931,0.0954219,0.243024,0.989199,0.802673,0.874181,0.465459,0.224614,0.795897,0.912428,0.760965,0.478112,0.84296,0.651631,0.774814,0.44387,0.311005,0.315662,0.121965,0.32543,0.355385,0.283454,0.64104,0.20438,0.515092,0.428429,0.922188,0.229341,0.130187,0.0544376,0.796235,0.936086,0.915709,0.0590283,0.54028,0.467324,0.128385,0.814311,0.334613,0.510166,0.804968,0.988734,0.956158,0.20923,0.470939,0.430422,0.252905,0.743729,0.00440532,0.270025,0.577164,0.406057,0.166767,0.500812,0.204739,0.853427,0.432737,0.514273,0.977532,0.811094,0.46298,0.0508476,0.737761,0.348093,0.566448,0.311748,0.281522,0.417266,0.166882,0.360418,0.355642,0.354326,0.693017,0.677244,0.869281,0.737042,0.834722,0.139041,0.84885,0.625371,0.57097,0.319282,0.600749,0.707506,0.402009,0.902969,0.436695,0.615557,0.29529,0.0387589,0.658607,0.741151,0.820099,0.285878,0.15937,0.159196,0.724873,0.290108,0.789298,0.663222,0.0682742,0.444665,0.5374,0.782933,0.1955,0.674072,0.315055,0.179905,0.996481,0.33113,0.410662,0.630005,0.912449,0.0714156,0.390651,0.536035,0.373089,0.413758,0.538645,0.347657,0.79651,0.0880709,0.595944,0.640691,0.827485,0.669333,0.308861,0.375278,0.511828,0.388857,0.505515,0.701036,0.599167,0.24826,0.98342,0.00378472,0.010454,0.726361,0.548985,0.223084,0.608572,0.600014,0.756829,0.372138,0.42937,0.210315,0.0764514,0.713459,0.108094,0.72409,0.969161,0.0315523,0.349193,0.651459,0.864634,0.580913,0.130707,0.222581,0.550176,0.182452,0.0794823,0.405629,0.581074,0.537084,0.693246,0.84246,0.735356,0.0266615,0.619373,0.0590755,0.20209,0.0952224,0.419751,0.349212,0.277261,0.599141,0.423055,0.0905322,0.871209,0.633836,0.169125,0.421612,0.371814,0.625021,0.548029,0.931213,0.62886,0.700417,0.55348,0.901407,0.205898,0.111351,0.848397,0.138767,0.845221,0.236021,0.979631,0.598818,0.508534,0.569929,0.736408,0.82699,0.0250905,0.518191,0.0692628,0.0971729,0.82108,0.321839,0.349114,0.811813,0.134819,0.985937,0.58353,0.630594,0.122095,0.511776,0.5861,0.423306,0.898314,0.424867,0.571267,0.0339622,0.375787,0.530016,0.0266262,0.220505,0.860655,0.34938,0.189367,0.36266,0.498568,0.651969,0.923963,0.301797,0.876813,0.084978,0.255401,0.474077,0.424448,0.691642,0.419133,0.634008,0.679022,0.145258,0.113668,0.506525,0.822868,0.648841,0.910737,0.434768,0.242401,0.947557,0.464383,0.271394,0.937943,0.671848,0.803673,0.00710875,0.223278,0.201035,0.251797,0.0949617,0.700614,0.934073,0.761843,0.0247723,0.622598,0.503131,0.264021,0.704688,0.0312878,0.0242287,0.373483,|0.83406,0.00606668,0.172572,0.663684,0.886523,0.291594,0.129147,0.559851,0.243871,0.394157,0.188557,0.326382,0.690523,0.301723,0.399752,0.791189,0.0309428,0.0318203,0.532446,0.0237554,0.0321726,0.38063,0.44429,0.727,0.219508,0.00418973,0.288577,0.0945731,0.606399,0.154581,0.00861049,0.68572,0.319079,0.494697,0.324874,0.825773,0.340294,0.937375,0.509627,0.63261,0.542478,0.744736,0.247513,0.990533,0.663529,0.445631,0.136377,0.0544616,0.383189,0.0812928,0.475502,0.578574,0.0884207,0.000130057,0.329893,0.876821,0.302345,0.624963,0.182146,0.689379,0.706454,0.775643,0.144161,0.751235,0.752982,0.114538,0.4058,0.631695,0.603676,0.150806,0.285739,0.317426,0.389434,0.267252,0.707728,0.674499,0.423398,0.104372,0.585386,0.789352,0.284198,0.368266,0.984049,0.0821623,0.481344,0.974782,0.749063,0.62005,0.0518475,0.783833,0.969739,0.294018,0.357526,0.925539,0.846232,0.020516,0.539975,0.306096,0.323869,0.438256,0.17817,0.381844,0.0753348,0.913883,0.674626,0.921669,0.580179,0.12518,0.430696,0.463009,0.674034,0.272152,0.466799,0.919716,0.130867,0.798174,0.25473,0.49142,0.651764,0.021238,0.704503,0.650404,0.0746166,0.0724679,0.820168,0.901059,0.405701,0.0944929,0.465006,0.602786,0.196028,0.478798,0.3178,0.842157,0.0163714,0.691222,0.0172403,0.918245,0.381361,0.220962,0.683413,0.548829,0.327731,0.956689,0.634005,0.228742,0.799054,0.237169,0.483153,0.0167823,0.80405,0.225645,0.116682,0.528463,0.0817762,0.10924,0.898476,0.987405,0.563844,0.939688,0.0284035,0.371122,0.486316,0.361749,0.531746,0.362911,0.389835,0.163037,0.597438,0.186555,0.0199274,0.0676629,0.446814,0.75818,0.783326,0.123448,0.600637,0.57609,0.292247,0.406874,0.656767,0.114729,0.205277,0.200946,0.527566,0.332793,0.721674,0.584697,0.825798,0.344669,0.573407,0.442199,0.198188,0.668641,0.857549,0.631449,0.741853,0.841295,0.0582494,0.230371,0.489771,0.480028,0.256183,0.617034,0.127823,0.523642,0.712235,0.541012,0.638974,0.794199,0.410303,0.321003,0.254647,0.865018,0.20626,0.965843,0.968301,0.105228,0.36047,0.106672,0.803071,0.989181,0.800848,0.225646,0.972311,0.917271,0.17054,0.586116,0.292401,0.643348,0.960773,0.610269,0.570041,0.145588,0.250277,0.279702,0.237376,0.700357,0.361132,0.49418,0.408659,0.305403,0.760274,0.820491,0.368276,0.455903,0.742271,0.832494,0.24247,0.889334,0.241719,0.0949916,0.758979,0.313266,0.835541,0.368493,0.656683,0.647373,0.528021,0.664245,0.197475,0.84461,0.700035,0.908694,0.360972,0.0968266,0.589642,0.879416,0.343439,0.70008,0.0837495,0.762235,0.229949,0.0634355,0.991046,0.200136,0.238174,0.915373,0.121973,0.78414,0.826994,0.0156305,0.284537,0.729113,0.411858,0.461326,0.375608,0.555009,0.402646,0.77633,0.471301,0.65537,0.746131,0.615064,0.442741,0.451583,0.919931,0.496971,0.29194,0.0019508,0.345008,0.787321,0.833619,0.659889,0.671029,0.0704362,0.212093,0.106683,0.255608,0.428667,0.635382,0.161342,0.853734,0.0686884,0.0567115,0.975168,0.906063,0.872634,0.642159,0.62142,0.290148,0.783754,0.0911908,0.427728,0.280577,0.384725,0.634163,0.761525,0.202928,0.678718,0.0515124,0.562681,0.0214186,0.294019,0.273671,0.0719225,0.930482,0.280836,0.088517,0.815885,0.0156893,0.353619,0.328985,0.890862,0.964527,0.43504,0.61557,0.312497,0.552144,0.53219,0.107856,0.125879,0.110594,0.690053,0.780778,0.00639284,0.849053,0.552291,0.0592093,0.517292,0.982405,0.595295,0.282279,0.379915,0.768573,0.562142,0.449877,0.0881951,0.359933,0.263572,0.992648,0.0209314,0.825681,0.450234,0.0680445,0.807871,0.35871,0.233854,0.914631,0.171746,0.154444,0.613986,0.0448866,0.826862,0.835676,0.922166,0.94816,0.860217,0.976987,0.499144,0.48448,0.989381,0.744575,0.625748,0.658527,0.0433965,0.445655,0.734134,0.107976,0.00939876,0.254364,0.367681,0.277903,0.564503,0.29327,0.457337,0.818031,0.492126,0.896254,0.0255004,0.119607,0.218546,0.329286,0.109713,0.999684,0.780493,0.844226,0.216361,0.850807,0.387844,0.0335171,0.59648,0.866117,0.947512,0.0327513,0.0609769,0.54212,0.707166,0.138003,0.394913,0.628559,0.893761,0.27374,0.505182,0.396675,0.538165,0.540893,0.106442,0.164721,0.665481,0.556297,0.417223,0.742344,0.498755,0.651653,0.47264,0.250632,0.603185,0.18554,0.296151,0.783703,0.340375,0.533201,0.257488,0.711097,0.202681,0.681304,0.0654924,0.52364,0.855339,0.330278,0.479318,0.90773,0.743674,0.165463,0.0756898,0.135702,0.916673,0.39735,0.273046,0.248077,0.367514,0.846489,0.999254,0.147987,0.122242,0.390543,0.683032,0.520459,0.0139527,0.187093,0.872761,0.733186,0.0552331,0.613783,0.90614,0.589462,0.817231,0.219191,0.364631,0.857026,0.462393,0.791009,0.0283253,0.859418,0.717979,0.410802,0.779292,0.640881,0.929835,0.286294,0.18776,0.235986,0.31188,0.641627,0.705839,0.574277,0.929059,0.0801674,0.879252,0.0924847,0.952355,0.537991,0.916017,0.283913,0.125357,0.10319,0.659445,0.538971,0.936175,0.861584,0.346975,0.479947,0.411172,0.467931,0.335008,0.18789,0.21839,0.480974,0.569203,0.605461,0.722206,0.199075,0.488462,0.0596906,0.380217,0.585429,0.642803,0.13302,0.762681,0.606093,0.25459,0.976645,0.473395,0.745836,0.0589455,0.272532,0.980304,0.481538,0.746077,0.946094,0.532261,0.577221,0.447255,0.290624,0.583107,0.666684,0.388349,0.593224,0.176111,0.67287,0.0791116,0.993968,0.0332001,0.683186,0.939506,0.749528,0.352046,0.371958,0.150254,0.833992,0.661952,0.172594,0.990195,0.821048,0.562226,0.916435,0.0387086,0.275677,0.444156,0.259468,0.717326,0.372582,0.485763,0.706924,0.165359,0.464559,0.967755,0.0498087,0.967038,0.824067,0.960697,0.241656,0.0941265,0.197897,0.436859,0.460441,0.0113856,0.379182,0.431237,0.954739,0.714823,0.607094,0.30243,0.951863,0.234096,0.280285,0.266077,0.163115,0.864197,0.422195,0.862048,0.599269,0.951367,0.290056,0.36523,0.886726,0.79234,0.485593,0.0119695,0.616667,0.397975,0.426734,0.0822712,0.868293,0.378179,0.221038,0.543942,0.449179,0.816695,0.753757,0.740284,0.859281,0.675192,0.946609,0.862211,0.386806,0.91358,0.23825,0.190731,0.4672,0.122759,0.787284,0.338618,0.0485499,0.818227,0.0453161,0.770885,0.503289,0.278066,0.982785,0.238881,0.818204,0.145016,0.361985,0.392718,0.464703,0.44853,0.167005,0.465805,0.951181,0.753996,0.79641,0.460084,0.840216,0.638117,0.343094,0.922251,0.0722619,0.32502,0.372554,0.151344,0.62595,0.473013,0.938761,0.0851185,0.221109,0.270248,0.359699,0.551147,0.879356,0.861709,0.778787,0.0651909,0.2812,0.197108,0.223806,0.611899,0.379986,0.494496,0.600085,0.684982,0.795264,0.0213929,0.701584,0.292381,0.59963,0.368785,0.920111,0.845716,0.849309,0.232308,0.522127,0.460626,0.120941,0.227345,0.302413,0.353653,0.132916,0.848399,0.720869,0.337729,0.923945,0.117945,0.639444,0.393096,0.804218,0.757708,0.294148,0.00220817,0.541129,0.412275,0.229778,0.43151,0.0557103,0.740608,0.474567,0.246467,0.383071,0.806991,0.919058,0.699685,0.799941,0.259804,0.266847,0.280722,0.493869,0.817993,0.621959,0.772717,0.470142,0.927435,0.763672,0.470437,0.854866,0.291139,0.157857,0.174857,0.428402,0.965423,0.416171,0.882771,0.105429,0.19049,0.599325,0.829408,0.458189,0.8964,0.0327688,0.55405,0.0261442,0.130594,0.098183,0.184104,0.501011,0.391591,0.964714,0.697083,0.144485,0.450818,0.343728,0.472073,0.714058,0.567966,0.80169,0.697742,0.371155,0.401969,0.654636,0.618251,0.95927,0.215054,0.41413,0.990122,0.581265,0.284001,0.0973963,0.727913,0.221247,0.504962,0.102135,0.193129,0.417496,0.374615,0.696094,0.415755,0.466609,0.0664963,0.196396,0.981478,0.803974,0.746294,0.781473,0.533704,0.196219,0.825942,0.757739,0.00211924,0.600418,0.374312,0.267802,0.03433,0.390195,0.206201,0.455743,0.42348,0.817011,0.902505,0.886175,0.361447,0.253457,0.0123571,0.0615242,0.252819,0.723109,0.337672,0.286728,0.975148,0.981576,0.323379,0.969529,0.30418,0.334139,0.438747,0.884298,0.70397,0.689217,0.643409,0.3779,0.186678,0.845775,0.856472,0.468812,0.906979,0.63926,0.0754052,0.599679,0.970501,0.699776,0.626,0.351126,0.950609,0.881095,0.723235,0.980607,0.756856,0.0767717,0.526657,0.588433,0.56194,0.158044,0.594413,0.734627,0.828893,0.457788,0.619254,0.326584,0.766037,0.698971,0.374643,0.780017,0.529984,0.95114,0.157363,0.904115,0.22314,0.141045,0.985989,0.0267034,0.194546,0.80928,0.796492,0.190757,0.54513,0.78643,0.961034,0.492543,0.515386,0.0762168,0.795182,0.0897568,0.905396,0.193165,0.8797,0.490287,0.932524,0.581789,0.966043,0.693515,0.554365,0.60332,0.61079,0.0918959,0.0369958,0.303161,0.577679,0.289959,0.716557,0.898215,0.704256,0.454976,0.955785,0.315062,0.800277,0.250766,0.50244,0.728176,0.10613,0.191275,0.896635,0.439477,0.601374,0.418996,0.436084,0.682882,0.872993,0.552506,0.636642,0.242247,0.656695,0.0476261,0.847379,0.0357304,0.566753,0.990513,0.357125,0.82422,0.339393,0.207459,0.369026,0.0971168,0.555964,0.968038,0.717623,0.0845929,0.796017,0.411063,0.316163,0.416559,0.148143,0.00720733,0.868471,0.194778,0.914725,0.437171,0.488265,0.857519,0.499039,0.553102,0.693956,0.171529,0.904278,0.422787,0.674704,0.629653,0.247225,0.0859231,0.595256,0.623745,0.470276,0.674589,0.0756519,0.548156,0.123475,0.743344,0.327343,0.698619,0.102535,0.712859,0.324511,0.719122,0.863378,0.59417,0.438416,0.80448,0.251356,0.77405,0.343269,0.39333,0.526901,0.031494,0.904923,0.552892,0.0808225,0.933671,0.0476556,0.980741,0.174417,0.562958,0.371292,|0.814563,0.208841,0.253916,0.386857,0.973669,0.229287,0.791169,0.736933,0.765404,0.51357,0.0962964,0.0639893,0.115729,0.476721,0.267482,0.205648,0.87228,0.494512,0.616862,0.476098,0.281543,0.25679,0.165677,0.0821601,0.964826,0.386209,0.878848,0.176905,0.143317,0.721614,0.717359,0.622849,0.0204228,0.239749,0.114588,0.200586,0.109883,0.000872791,0.30968,0.863285,0.0952138,0.647695,0.879951,0.231488,0.285698,0.216006,0.932366,0.220518,0.762306,0.540325,0.593126,0.109289,0.961742,0.627163,0.406715,0.141227,0.626771,0.412814,0.932426,0.362658,0.507827,0.794466,0.170256,0.041107,0.330483,0.121253,0.0988562,0.283071,0.470731,0.690612,0.665486,0.387848,0.0612206,0.684474,0.300995,0.708956,0.428252,0.470359,0.721123,0.643003,0.952059,0.774961,0.967518,0.787396,0.282029,0.158268,0.407168,0.784947,0.182422,0.830171,0.0700973,0.327669,0.0976581,0.346519,0.528238,0.581778,0.223815,0.802933,0.114482,0.670409,0.293271,0.0359624,0.297546,0.944687,0.205732,0.254016,0.65994,0.797733,0.959513,0.415705,0.490107,0.712711,0.785231,0.729869,0.209163,0.235593,0.560668,0.184298,0.370688,0.604029,0.846486,0.677781,0.692705,0.307114,0.349739,0.274373,0.0401904,0.280818,0.852856,0.766872,0.729651,0.169287,0.665497,0.0784662,0.35885,0.0328071,0.144174,0.848671,0.960304,0.421278,0.243344,0.275117,0.667296,0.119031,0.889826,0.835563,0.587091,0.0254877,0.325456,0.784894,0.646926,0.598227,0.7811,0.529723,0.810542,0.313995,0.0822802,0.858973,0.313859,0.116669,0.406558,0.085325,0.641611,0.311803,0.858512,0.957319,0.29519,0.274771,0.0781426,0.622366,0.97532,0.565331,0.693141,0.722475,0.17733,0.52176,0.197278,0.901302,0.162763,0.88688,0.204407,0.0544064,0.800362,0.9741,0.299795,0.671575,0.418212,0.0299697,0.325956,0.500384,0.804223,0.619323,0.314357,0.745313,0.425689,0.155345,0.776677,0.66561,0.682031,0.0535286,0.785226,0.993682,0.35902,0.697289,0.597769,0.908902,0.606164,0.369777,0.0504891,0.31464,0.453775,0.560585,0.0502329,0.657287,0.738957,0.487396,0.887321,0.586222,0.617958,0.913512,0.142862,0.994671,0.861088,0.645351,0.355871,0.488999,0.534894,0.680962,0.555095,0.461908,0.677515,0.317051,0.681001,0.392119,0.826745,0.213381,0.695929,0.504758,0.478188,0.73931,0.0683292,0.199114,0.546218,0.62357,0.807701,0.20826,0.0877742,0.63973,0.0528783,0.989554,0.952669,0.779946,0.704005,0.547607,0.391094,0.491289,0.637369,0.0255085,0.0298553,0.267876,0.197638,0.478059,0.586469,0.596334,0.307327,0.493751,0.87305,0.484206,0.0844078,0.00148594,0.156336,0.486819,0.185439,0.450651,0.738571,0.558059,0.211712,0.461372,0.937187,0.258999,0.995323,0.0944712,0.713753,0.0333361,0.453334,0.281732,0.027117,0.918009,0.790537,0.424834,0.611354,0.172702,0.254928,0.988072,0.380737,0.977119,0.704445,0.115676,0.394409,0.23443,0.988889,0.242756,0.924876,0.755061,0.413928,0.350881,0.684303,0.482357,0.729194,0.240842,0.0919245,0.7181,0.565532,0.848097,0.0701723,0.229779,0.650044,0.676899,0.0921319,0.423554,0.490029,0.793902,0.201478,0.271059,0.821766,0.95724,0.253291,0.937401,0.101553,0.372245,0.82932,0.967598,0.427124,0.398379,0.888144,0.803524,0.360783,0.597116,0.895277,0.0932491,0.08607,0.919344,0.89757,0.0301472,0.0753418,0.0946103,0.0894861,0.57883,0.216006,0.591073,0.633699,0.600437,0.359949,0.209066,0.209961,0.352285,0.102475,0.500563,0.835311,0.583654,0.30638,0.0831711,0.0350208,0.375013,0.709693,0.344291,0.425017,0.274858,0.386906,0.00485933,0.921085,0.508799,0.850851,0.377459,0.440878,0.525524,0.572309,0.739889,0.502372,0.74574,0.129083,0.883557,0.42479,0.310274,0.814329,0.553571,0.941095,0.902756,0.114732,0.747736,0.712231,0.080716,0.935423,0.11955,0.174217,0.987118,0.509465,0.569091,0.35917,0.543778,0.118067,0.782286,0.243745,0.855283,0.885573,0.121368,0.766792,0.730365,0.44044,0.763374,0.606973,0.739131,0.58852,0.0658025,0.0543755,0.517742,0.153654,0.0104669,0.5214,0.322322,0.32364,0.0440468,0.511096,0.197496,0.00341821,0.442782,0.0473114,0.526432,0.15512,0.998041,0.689624,0.912089,0.595211,0.86995,0.691259,0.20664,0.442751,0.335241,0.871227,0.736739,0.684177,0.353731,0.298035,0.103197,0.913588,0.959914,0.381071,0.425802,0.467145,0.880519,0.515103,0.460415,0.545191,0.422084,0.771339,0.0608127,0.297474,0.188039,0.585838,0.513939,0.215476,0.57028,0.991699,0.250882,0.696498,0.773939,0.185886,0.908168,0.306354,0.242182,0.943453,0.139324,0.924374,0.229167,0.382711,0.757951,0.234463,0.516796,0.789637,0.611499,0.208452,0.551958,0.493708,0.157517,0.430776,0.608563,0.960209,0.100437,0.839846,0.609838,0.301118,0.935878,0.0344864,0.313513,0.756013,0.709109,0.264807,0.860143,0.599534,0.975139,0.964694,0.409631,0.0107372,0.134936,0.294424,0.278876,0.0970156,0.908247,0.622341,0.522958,0.00832039,0.00891322,0.173917,0.544108,0.528475,0.93336,0.29543,0.39116,0.374011,0.365833,0.275062,0.147861,0.330017,0.56134,0.497693,0.733846,0.362556,0.342025,0.556175,0.670055,0.512833,0.228034,0.827974,0.88979,0.342462,0.273256,0.731539,0.53312,0.0703893,0.720493,0.43074,0.360623,0.820569,0.706303,0.483588,0.286389,0.570897,0.165494,0.290648,0.144081,0.00337124,0.142153,0.991101,0.976679,0.0452908,0.662975,0.709866,0.150705,0.862581,0.0911877,0.121358,0.388279,0.971478,0.732027,0.355471,0.454563,0.216024,0.00125057,0.242491,0.0688951,0.791095,0.739621,0.0993516,0.897948,0.793787,0.718988,0.843951,0.635189,0.0698659,0.343678,0.708642,0.377705,0.860118,0.594986,0.294677,0.864725,0.510823,0.0888265,0.42592,0.941173,0.672936,0.105375,0.27857,0.281833,0.818895,0.313323,0.652971,0.0306829,0.800984,0.767962,0.144854,0.669626,0.368574,0.970767,0.786436,0.670204,0.0844469,0.571373,0.412358,0.215819,0.248895,0.332071,0.624071,0.0481244,0.314286,0.517933,0.926311,0.747111,0.391687,0.675395,0.488852,0.599349,0.205484,0.356328,0.873,0.573111,0.944813,0.939717,0.253264,0.68795,0.387843,0.478645,0.57193,0.505308,0.491336,0.891297,0.359059,0.38212,0.518568,0.598894,0.637311,0.231457,0.998628,0.139285,0.955825,0.0460991,0.12788,0.680331,0.480684,0.562932,0.930269,0.609332,0.548339,0.108971,0.818174,0.225768,0.0804763,0.935157,0.994542,0.193371,0.502771,0.917901,0.870149,0.800879,0.851438,0.779741,0.309023,0.903877,0.843848,0.53349,0.209471,0.0989412,0.90252,0.971844,0.645569,0.449659,0.968763,0.379009,0.791499,0.585133,0.887577,0.21785,0.313462,0.693622,0.847636,0.666322,0.475411,0.53103,0.949854,0.161465,0.695222,0.687373,0.377946,0.569708,0.21059,0.537694,0.10781,0.294577,0.1869,0.0496067,0.225793,0.161922,0.451199,0.177636,0.382395,0.458257,0.840371,0.673135,0.274245,0.551874,0.281181,0.828015,0.00595587,0.551381,0.197855,0.384408,0.571959,0.660351,0.820999,0.0613259,0.228,0.997551,0.0693758,0.126221,0.60199,0.40407,0.747043,0.681284,0.832726,0.850384,0.532006,0.398505,0.324662,0.519351,0.146466,0.561499,0.902721,0.151132,0.275718,0.68427,0.931801,0.13981,0.339881,0.0726698,0.938248,0.602251,0.922039,0.00698578,0.26323,0.857034,0.316089,0.546994,0.445393,0.846549,0.270339,0.675154,0.647927,0.960109,0.43455,0.531316,0.0443009,0.711912,0.0681307,0.0791254,0.54486,0.7961,0.428894,0.0677379,0.592899,0.265198,0.729058,0.681766,0.496272,0.272849,0.0812132,0.897435,0.0763717,0.809536,0.121183,0.37533,0.559879,0.849903,0.243267,0.630485,0.720104,0.323609,0.236817,0.0673511,0.053077,0.117489,0.583752,0.0980822,0.20959,0.577809,0.186951,0.543632,0.277017,0.501073,0.489089,0.850531,0.335083,0.278334,0.210913,0.436764,0.293277,0.36434,0.512227,0.81721,0.15701,0.341667,0.179594,0.926267,0.829142,0.136038,0.574245,0.325695,0.909102,0.15566,0.824171,0.96236,0.422203,0.115875,0.0948954,0.438904,0.250533,0.259009,0.00178754,0.646642,0.528742,0.564248,0.00396287,0.379749,0.397454,0.0431323,0.0661591,0.234037,0.792007,0.157126,0.518358,0.889749,0.777356,0.738017,0.468488,0.321983,0.458529,0.878769,0.335686,0.509423,0.816953,0.178606,0.327218,0.609605,0.497413,0.686365,0.0709651,0.379348,0.32818,0.734315,0.27292,0.0639045,0.718769,0.523316,0.319911,0.964213,0.662445,0.888267,0.222795,0.117855,0.465191,0.0822744,0.284714,0.481598,0.0188888,0.665875,0.295568,0.701096,0.0718442,0.136146,0.644905,0.69434,0.449841,0.463482,0.000356376,0.168311,0.880673,0.750099,0.391216,0.9417,0.407184,0.404302,0.0482107,0.460507,0.179671,0.195571,0.392203,0.0725498,0.0778578,0.104967,0.222831,0.683607,0.73997,0.399211,0.556886,0.720374,0.419957,0.156103,0.612768,0.0842457,0.0747586,0.568316,0.309549,0.994021,0.645909,0.067115,0.876712,0.233586,0.151496,0.456251,0.666701,0.350258,0.602281,0.0422173,0.549026,0.457112,0.79477,0.151934,0.4048,0.846358,0.842747,0.975297,0.693618,0.247462,0.000557125,0.872421,0.655809,0.48228,0.79509,0.541807,0.619893,0.265241,0.740796,0.082942,0.519424,0.728735,0.298464,0.764673,0.677418,0.923481,0.316082,0.486379,0.485749,0.406005,0.494968,0.749903,0.316693,0.156601,0.131533,0.352641,0.0568128,0.623327,0.55696,0.173615,0.579737,0.641802,0.74633,0.457316,0.323612,0.821814,0.700867,0.786667,0.652183,0.919791,0.0032171,0.94228,0.612727,0.827201,0.245741,0.163868,0.860434,0.996247,0.191338,0.886415,0.372854,0.945453,0.595474,0.526177,0.657387,0.285432,0.826972,0.499016,0.802393,0.662092,0.703145,0.293418,0.661082,0.962319,0.406921,0.0610305,0.0588568,0.862394,|0.427706,0.28779,0.0746962,0.991016,0.0128775,0.545248,0.844985,0.0497479,0.693691,0.646081,0.378382,0.949311,0.147719,0.523584,0.432597,0.0641443,0.442337,0.862639,0.415745,0.571999,0.413801,0.632356,0.564771,0.0234119,0.57398,0.501748,0.305489,0.032044,0.342806,0.112568,0.456544,0.0293529,0.819332,0.0358102,0.930458,0.980196,0.480152,0.352925,0.395606,0.192804,0.921082,0.915683,0.733831,0.726847,0.185211,0.192018,0.104602,0.0474336,0.801435,0.0321533,0.820252,0.14477,0.839479,0.504247,0.845237,0.625313,0.154652,0.112827,0.771459,0.796645,0.199625,0.942061,0.617009,0.824674,0.745459,0.551927,0.898157,0.533731,0.799202,0.260731,0.302829,0.711022,0.936303,0.584597,0.431691,0.849929,0.962469,0.16805,0.0755381,0.122986,0.617221,0.00678563,0.968987,0.955621,0.888215,0.111012,0.444213,0.844391,0.829597,0.0799099,0.706411,0.490195,0.110637,0.494207,0.672269,0.153389,0.149355,0.70621,0.395805,0.351076,0.518338,0.720954,0.197028,0.811465,0.999991,0.953884,0.581614,0.871542,0.56147,0.331425,0.993309,0.479239,0.597883,0.761359,0.363987,0.2528,0.2602,0.419516,0.90716,0.513056,0.255804,0.551749,0.604066,0.736791,0.360144,0.76524,0.26246,0.00190085,0.372651,0.0748204,0.778059,0.0355985,0.283604,0.31065,0.28177,0.396164,0.802057,0.479533,0.117436,0.65727,0.550375,0.521802,0.22005,0.713556,0.611386,0.459141,0.628497,0.210373,0.666069,0.97599,0.488643,0.78975,0.779681,0.363607,0.762116,0.261221,0.773626,0.0433429,0.796232,0.189419,0.170133,0.983955,0.721326,0.714443,0.698335,0.640685,0.736964,0.277815,0.0284087,0.807435,0.0138543,0.0280323,0.81547,0.165009,0.607942,0.966855,0.669916,0.220576,0.980846,0.862098,0.0280007,0.467209,0.441375,0.491334,0.0576813,0.222674,0.952118,0.295535,0.970204,0.736166,0.258667,0.400207,0.111597,0.0599995,0.750694,0.870706,0.958039,0.873574,0.0884506,0.618532,0.655477,0.575625,0.721183,0.517617,0.563745,0.864932,0.402976,0.629627,0.416208,0.886015,0.0989106,0.292738,0.0386032,0.504059,0.210632,0.292174,0.849365,0.767204,0.722359,0.646672,0.623158,0.0388505,0.628755,0.0464879,0.706567,0.0466998,0.873399,0.387364,0.046223,0.247119,0.895901,0.661186,0.44553,0.312618,0.0262424,0.237095,0.283583,0.496275,0.73771,0.64312,0.333344,0.270749,0.384464,0.619705,0.729564,0.115389,0.638054,0.748194,0.895372,0.558125,0.00772083,0.777675,0.667263,0.84242,0.29449,0.526539,0.523693,0.532118,0.161509,0.0725589,0.639433,0.245128,0.644927,0.577424,0.994197,0.164345,0.848648,0.426801,0.72416,0.855453,0.328872,0.903236,0.717516,0.313502,0.000780165,0.113383,0.474467,0.393026,0.293767,0.591416,0.441499,0.50947,0.882956,0.381942,0.583857,0.332562,0.0400963,0.521996,0.763983,0.770469,0.895784,0.577948,0.578308,0.487981,0.0350665,0.525237,0.804231,0.865893,0.208766,0.58318,0.819911,0.575423,0.743011,0.53931,0.760497,0.578442,0.39956,0.858441,0.193061,0.202154,0.308636,0.592223,0.994372,0.884733,0.469236,0.4001,0.208142,0.787743,0.464042,0.157759,0.815132,0.656779,0.500457,0.69949,0.576941,0.641018,0.994772,0.353882,0.112118,0.112041,0.815782,0.580619,0.730255,0.893839,0.86949,0.24258,0.220459,0.866929,0.134911,0.471326,0.353984,0.46789,0.406028,0.520033,0.134256,0.686354,0.837318,0.671107,0.156391,0.0713296,0.0284137,0.686416,0.354118,0.967802,0.229027,0.632474,0.855261,0.0993975,0.810766,0.568977,0.357042,0.992278,0.134161,0.870128,0.848752,0.411076,0.499501,0.0315539,0.863028,0.994444,0.270225,0.384792,0.252918,0.0482662,0.562994,0.748608,0.423654,0.97859,0.968534,0.334328,0.186306,0.14583,0.145632,0.297956,0.994552,0.954571,0.278374,0.113351,0.0816789,0.754279,0.690518,0.240915,0.465956,0.63399,0.511075,0.305746,0.835014,0.818224,0.377402,0.956438,0.950348,0.663521,0.935882,0.678011,0.498512,0.0707799,0.483243,0.624869,0.384089,0.161868,0.143514,0.743893,0.844074,0.0359093,0.534819,0.387494,0.721305,0.445462,0.444156,0.147392,0.430063,0.708763,0.266721,0.31722,0.93676,0.256068,0.910099,0.238234,0.195469,0.618365,0.576657,0.873821,0.315322,0.678663,0.217338,0.371972,0.0304912,0.585004,0.200017,0.527708,0.895923,0.723333,0.377395,0.205528,0.957419,0.271015,0.703315,0.0985175,0.765272,0.325744,0.461945,0.0659049,0.64503,0.905571,0.628333,0.00751591,0.960237,0.408174,0.786533,0.443362,0.85663,0.649851,0.384835,0.338223,0.119112,0.363948,0.135368,0.852047,0.631736,0.142722,0.692627,0.630253,0.819328,0.730473,0.208296,0.822914,0.145624,0.159794,0.258494,0.36269,0.920265,0.285417,0.296911,0.102603,0.667809,0.479878,0.620601,0.483697,0.135592,0.10496,0.714787,0.171667,0.949162,0.351208,0.275633,0.758695,0.432133,0.696748,0.0445,0.372376,0.0363402,0.110717,0.355188,0.90052,0.350212,0.807897,0.353762,0.66778,0.0565825,0.313853,0.847791,0.26524,0.623296,0.0689059,0.73327,0.0927182,0.131618,0.905056,0.849323,0.946822,0.0394807,0.374796,0.685592,0.288259,0.359156,0.0600453,0.873137,0.618117,0.153146,0.0589341,0.773096,0.839088,0.888267,0.354428,0.336281,0.737033,0.24998,0.898705,0.959018,0.548718,0.961685,0.0228647,0.845444,0.0319251,0.346951,0.821165,0.871154,0.45889,0.157506,0.894045,0.675111,0.390933,0.331636,0.943599,0.0982108,0.270573,0.531222,0.665102,0.532552,0.357349,0.659605,0.837242,0.27481,0.665849,0.563385,0.971031,0.00607729,0.507203,0.390786,0.053595,0.785058,0.598072,0.0417819,0.892252,0.0999156,0.387409,0.740866,0.211368,0.849854,0.84029,0.867748,0.503722,0.135184,0.746955,0.510558,0.797739,0.72139,0.290432,0.67723,0.051931,0.24042,0.350175,0.619966,0.422536,0.722983,0.903461,0.793087,0.50585,0.717672,0.482282,0.790422,0.526193,0.124622,0.593328,0.522215,0.554363,0.00967646,0.259239,0.726012,0.824176,0.863098,0.667846,0.764719,0.110322,0.750521,0.252142,0.930752,0.238902,0.906166,0.659887,0.382318,0.506473,0.584774,0.453283,0.550762,0.154809,0.300974,0.401433,0.45079,0.0473555,0.297715,0.509532,0.246404,0.959199,0.645665,0.288759,0.15958,0.0293873,0.253065,0.0150702,0.131712,0.254332,0.682511,0.45959,0.392781,0.861981,0.276706,0.0254325,0.987608,0.599652,0.159087,0.572249,0.555463,0.0216688,0.212056,0.042087,0.0665009,0.145872,0.0645241,0.896626,0.714534,0.341119,0.578215,0.693639,0.827937,0.689383,0.625992,0.460532,0.56422,0.0864028,0.42811,0.0957452,0.261017,0.0167624,0.26708,0.633019,0.147756,0.477526,0.163261,0.499237,0.742019,0.55305,0.150963,0.779657,0.637276,0.333078,0.24059,0.235771,0.656375,0.127879,0.12471,0.445589,0.125148,0.783311,0.580654,0.387856,0.458884,0.505558,0.209337,0.97101,0.998012,0.978674,0.85618,0.912994,0.565105,0.813316,0.974025,0.255451,0.14488,0.623531,0.589542,0.609194,0.165695,0.490769,0.76718,0.868549,0.501744,0.244743,0.810727,0.430456,0.898618,0.624246,0.824268,0.310178,0.506447,0.38302,0.293874,0.0566213,0.0159868,0.703261,0.679525,0.449555,0.454462,0.4294,0.189907,0.574663,0.387087,0.840699,0.915792,0.321323,0.307632,0.628511,0.120673,0.493028,0.250982,0.919116,0.694716,0.939259,0.585766,0.0969993,0.603381,0.758816,0.356396,0.44607,0.938135,0.117748,0.450984,0.0761694,0.889094,0.930028,0.100288,0.620964,0.412086,0.698182,0.213359,0.493027,0.618949,0.174399,0.022445,0.489239,0.786835,0.0245776,0.982374,0.769578,0.122142,0.0125847,0.830385,0.64695,0.000978947,0.514389,0.458395,0.978282,0.0815682,0.650784,0.842922,0.524985,0.354492,0.494232,0.285826,0.664981,0.0316457,0.891004,0.291631,0.622815,0.633685,0.21246,0.372539,0.501869,0.0681565,0.38746,0.875809,0.0282586,0.989756,0.971748,0.542596,0.343554,0.0284959,0.639007,0.398531,0.914012,0.314939,0.398464,0.572691,0.124663,0.00587642,0.719408,0.947364,0.26305,0.415177,0.282563,0.568215,0.427696,0.359631,0.263623,0.194015,0.379864,0.469166,0.891842,0.997258,0.537843,0.790593,0.964436,0.341759,0.252001,0.637672,0.694709,0.561411,0.279783,0.0863125,0.10485,0.851335,0.837635,0.639723,0.649106,0.219437,0.972479,0.184758,0.514421,0.97875,0.72002,0.962188,0.179078,0.965244,0.512911,0.858041,0.824814,0.107727,0.0898204,0.278425,0.429851,0.324689,0.397457,0.498177,0.65274,0.520978,0.635704,0.0737332,0.533424,0.279701,0.68454,0.844168,0.323505,0.677092,0.582015,0.577655,0.964884,0.803507,0.302663,0.308266,0.875983,0.804715,0.503156,0.056954,0.498229,0.363483,0.397811,0.563253,0.145002,0.0671642,0.176371,0.828383,0.816129,0.037888,0.785643,0.314793,0.240872,0.505095,0.468288,0.618699,0.760723,0.180243,0.504298,0.11775,0.54736,0.00884414,0.718801,0.0590985,0.115181,0.320367,0.930222,0.0105051,0.688353,0.250785,0.43105,0.369467,0.843186,0.817209,0.53686,0.487281,0.366308,0.446642,0.700617,0.264126,0.808422,0.66631,0.365662,0.320333,0.181216,0.690354,0.450951,0.710286,0.198031,0.991188,0.337804,0.635626,0.609597,0.978299,0.0556954,0.535102,0.482936,0.671851,0.475545,0.237557,0.0398549,0.0139388,0.212838,0.844557,0.490419,0.90383,0.637751,0.477368,0.455386,0.15777,0.974088,0.775843,0.216537,0.698625,0.964432,0.432203,0.00225955,0.0378876,0.903799,0.957,0.923242,0.774488,0.0207207,0.988175,0.710978,0.691218,0.607412,0.397445,0.0133653,0.78555,0.376998,0.650789,0.653678,0.132051,0.832556,0.422487,0.306796,0.815371,0.0358468,0.498573,0.428411,0.72879,0.618752,0.650582,0.681374,0.100807,0.15832,0.744823,0.0261579,0.131179,0.0179116,0.464505,0.862151,0.664533,0.265422,0.266786,0.565127,|0.824732,0.350385,0.00697821,0.0421739,0.825133,0.312842,0.86878,0.72198,0.431414,0.424274,0.0355206,0.975749,0.802647,0.0337877,0.440057,0.561854,0.0144056,0.267389,0.605968,0.703687,0.711066,0.0647865,0.54724,0.202319,0.782584,0.590797,0.982217,0.118655,0.261891,0.230085,0.953048,0.829211,0.774265,0.457607,0.0875462,0.541725,0.423082,0.164429,0.344023,0.0349079,0.217904,0.76357,0.400463,0.559824,0.24273,0.932696,0.109463,0.62869,0.190502,0.142348,0.841971,0.412213,0.729896,0.200257,0.243432,0.659682,0.785196,0.165703,0.0210367,0.233821,0.560969,0.0398073,0.0906952,0.233244,0.123993,0.432556,0.025947,0.466558,0.436848,0.880106,0.360898,0.577282,0.799708,0.333077,0.131291,0.118423,0.50796,0.794169,0.395701,0.461908,0.948487,0.515156,0.576708,0.692493,0.410102,0.640383,0.535831,0.297646,0.034702,0.147208,0.357806,0.230109,0.148401,0.872744,0.630276,0.801434,0.939829,0.885967,0.62867,0.500585,0.963191,0.818779,0.772512,0.909922,0.120087,0.99336,0.899195,0.491491,0.193979,0.807831,0.26031,0.872454,0.21867,0.772233,0.88854,0.115081,0.155146,0.80877,0.485095,0.72152,0.260467,0.0829473,0.361935,0.237876,0.345132,0.898023,0.420961,0.91752,0.606173,0.683066,0.146193,0.20729,0.31347,0.394536,0.21509,0.949682,0.419218,0.620291,0.0765244,0.118699,0.317045,0.174156,0.195648,0.539738,0.908698,0.348159,0.626923,0.463126,0.335988,0.242781,0.123461,0.262876,0.800932,0.960595,0.450637,0.954174,0.83479,0.305974,0.693987,0.26714,0.198173,0.465073,0.103966,0.94933,0.0656247,0.862648,0.380638,0.918162,0.842643,0.553992,0.972739,0.924253,0.607137,0.263851,0.0993499,0.13387,0.869646,0.683018,0.358432,0.869269,0.214194,0.0569203,0.904327,0.706048,0.686536,0.161503,0.105135,0.932067,0.353537,0.551509,0.951423,0.49732,0.39216,0.0772343,0.337598,0.503647,0.837675,0.150132,0.952163,0.903692,0.72072,0.937277,0.244408,0.807864,0.877607,0.710642,0.215177,0.579444,0.561941,0.00826174,0.971164,0.810984,0.494308,0.173173,0.219921,0.312693,0.295869,0.354974,0.107356,0.553019,0.880166,0.715172,0.671761,0.145109,0.577062,0.938345,0.497824,0.963076,0.217725,0.0378857,0.0699849,0.0354233,0.623769,0.266012,0.0387357,0.988765,0.588464,0.246226,0.594827,0.177587,0.13071,0.783711,0.488099,0.87036,0.102467,0.127437,0.211801,0.724909,0.407521,0.471707,0.795123,0.514113,0.659432,0.277637,0.596411,0.0774425,0.770889,0.144235,0.785929,0.469977,0.333992,0.416232,0.817434,0.199423,0.649839,0.727303,0.978779,0.838339,0.582695,0.697531,0.537654,0.598645,0.661141,0.252108,0.360314,0.896914,0.0926718,0.616904,0.256603,0.619171,0.592219,0.521557,0.680582,0.325839,0.770761,0.518288,0.0951673,0.441871,0.791366,0.148173,0.229657,0.835806,0.380065,0.760033,0.617442,0.0369757,0.462595,0.373357,0.240019,0.502428,0.881235,0.143415,0.329185,0.291463,0.263137,0.879378,0.282209,0.188882,0.442461,0.504831,0.499553,0.0545498,0.529501,0.456736,0.895918,0.562788,0.206388,0.984812,0.209546,0.192915,0.590699,0.93585,0.179975,0.642194,0.646676,0.63774,0.390173,0.460012,0.347194,0.510683,0.0110427,0.940355,0.513762,0.160324,0.246949,0.652829,0.0724186,0.0847168,0.728067,0.899668,0.401183,0.142221,0.283762,0.553324,0.35996,0.672115,0.290158,0.596191,0.839746,0.555543,0.215266,0.945267,0.220286,0.687425,0.795105,0.861759,0.00815517,0.60589,0.583094,0.264087,0.050599,0.319666,0.897876,0.334794,0.0562141,0.221171,0.372263,0.875293,0.367163,0.566988,0.876147,0.233218,0.488634,0.195861,0.899771,0.360274,0.333757,0.0935925,0.872425,0.0374986,0.673982,0.819114,0.736007,0.988969,0.944818,0.0659623,0.0203123,0.170684,0.165954,0.0694677,0.536179,0.978196,0.872181,0.629117,0.906786,0.534846,0.984311,0.769199,0.6359,0.0650403,0.501558,0.888406,0.223884,0.946826,0.280787,0.420157,0.745889,0.805721,0.34121,0.592268,0.367161,0.196815,0.600597,0.541883,0.634322,0.730689,0.553243,0.332948,0.86111,0.0700662,0.68376,0.551907,0.603083,0.278201,0.0930796,0.989718,0.654498,0.699099,0.81473,0.859684,0.209748,0.988109,0.43081,0.0220346,0.197317,0.750989,0.340549,0.355281,0.0234988,0.501552,0.17433,0.461207,0.75915,0.451046,0.413102,0.727891,0.867087,0.474884,0.491371,0.170501,0.678601,0.966412,0.00910538,0.666191,0.807944,0.882124,0.740951,0.0204291,0.834797,0.938606,0.972291,0.802217,0.527003,0.871088,0.588825,0.715724,0.66957,0.615589,0.126379,0.957101,0.669694,0.991125,0.1144,0.153235,0.843989,0.481236,0.0424628,0.471445,0.79452,0.683147,0.530911,0.98235,0.836768,0.8909,0.97236,0.73328,0.737685,0.643971,0.168015,0.225224,0.742012,0.599627,0.154665,0.316978,0.155771,0.726526,0.465706,0.523019,0.572521,0.138652,0.873053,0.205814,0.435238,0.529721,0.104192,0.943035,0.213877,0.810487,0.686583,0.170666,0.714347,0.380002,0.654581,0.765431,0.150021,0.551892,0.322721,0.639177,0.698755,0.918322,0.760415,0.693415,0.269765,0.0492181,0.123848,0.936277,0.514451,0.0960442,0.0562838,0.412124,0.925791,0.723914,0.764101,0.794582,0.267436,0.313566,0.64703,0.817542,0.127932,0.543619,0.370088,0.296671,0.0260777,0.889371,0.23271,0.295907,0.038825,0.0138925,0.38391,0.652084,0.25708,0.517602,0.806263,0.258111,0.417772,0.0788722,0.159226,0.161132,0.813832,0.451145,0.115319,0.488582,0.715759,0.121136,0.63066,0.218077,0.715212,0.588397,0.564644,0.664909,0.0293068,0.936858,0.401221,0.636095,0.30455,0.975094,0.946865,0.872808,0.468534,0.119287,0.546174,0.0710977,0.33854,0.853595,0.358614,0.258734,0.753911,0.0648347,0.145072,0.197306,0.396262,0.208664,0.303585,0.219334,0.492259,0.381841,0.0559244,0.813645,0.832567,0.280054,0.359606,0.29562,0.515126,0.0101749,0.891034,0.312925,0.690624,0.741865,0.21165,0.314797,0.0750563,0.464495,0.525371,0.369916,0.951178,0.992042,0.76374,0.586033,0.586389,0.435261,0.910629,0.17672,0.0670401,0.448708,0.918261,0.92006,0.874179,0.152258,0.41676,0.196239,0.446251,0.00566,0.632089,0.946227,0.0383289,0.230958,0.803568,0.0578852,0.094837,0.308987,0.973697,0.222237,0.297467,0.929097,0.468515,0.412061,0.978555,0.329791,0.177098,0.581361,0.317254,0.995372,0.878716,0.971945,0.154826,0.871753,0.963919,0.325782,0.895861,0.388105,0.144974,0.721041,0.0947506,0.603209,0.960324,0.0358817,0.289599,0.00337994,0.921698,0.521112,0.845766,0.14354,0.512439,0.647958,0.198832,0.558587,0.441456,0.477348,0.181997,0.489807,0.667219,0.755907,0.477922,0.961114,0.493535,0.337265,0.293391,0.621169,0.229714,0.865143,0.675991,0.888889,0.29704,0.352384,0.687015,0.526507,0.614871,0.238911,0.652113,0.73514,0.74202,0.972537,0.303372,0.999858,0.206178,0.645366,0.884051,0.913353,0.179065,0.599095,0.800957,0.322819,0.770174,0.666233,0.608793,0.0496224,0.307867,0.228716,0.52301,0.613239,0.651964,0.782428,0.356158,0.827152,0.679419,0.883994,0.526243,0.340957,0.81879,0.186601,0.91869,0.680532,0.37529,0.657794,0.94211,0.275717,0.573578,0.50338,0.149113,0.878249,0.929433,0.196469,0.999758,0.64553,0.529434,0.0281435,0.945318,0.34739,0.0231704,0.31615,0.891304,0.820618,0.0344892,0.025758,0.707847,0.551836,0.312822,0.00976396,0.689888,0.935965,0.278919,0.653609,0.632396,0.0590918,0.909806,0.585696,0.908218,0.863298,0.795707,0.455982,0.521959,0.958391,0.311684,0.573043,0.418883,0.311353,0.183608,0.843265,0.900209,0.0524525,0.492027,0.0817475,0.876175,0.535678,0.936841,0.208262,0.951392,0.915876,0.340739,0.241138,0.0448306,0.985093,0.0846997,0.271654,0.690748,0.53237,0.680883,0.145795,0.961656,0.599717,0.972961,0.616763,0.121701,0.0787234,0.698221,0.252208,0.149206,0.195488,0.733767,0.346664,0.36188,0.671297,0.855046,0.0194104,0.627222,0.547655,0.521812,0.857644,0.16719,0.61161,0.331212,0.481191,0.862415,0.607171,0.797213,0.83956,0.397258,0.483929,0.831931,0.66305,0.53518,0.347724,0.823279,0.535699,0.6501,0.066825,0.482594,0.394777,0.792594,0.378792,0.843409,0.244471,0.411899,0.580571,0.0505252,0.201979,0.443612,0.43504,0.811361,0.0999998,0.3759,0.00420886,0.0343445,0.573357,0.272445,0.189959,0.456431,0.670752,0.531803,0.279785,0.229616,0.781414,0.746502,0.642035,0.383276,0.522108,0.742273,0.828107,0.0952107,0.526453,0.238438,0.209528,0.772176,0.748719,0.447194,0.602109,0.403255,0.702401,0.103739,0.425465,0.968389,0.889967,0.45442,0.945353,0.770597,0.813354,0.0383809,0.442883,0.718218,0.316461,0.546954,0.696655,0.483157,0.961613,0.322648,0.358843,0.973722,0.837723,0.91446,0.869799,0.693369,0.663202,0.442389,0.079576,0.242261,0.601807,0.237787,0.755076,0.26568,0.35431,0.793348,0.343436,0.997849,0.339528,0.161665,0.0836142,0.22814,0.804602,0.10329,0.276598,0.191489,0.533013,0.606581,0.511664,0.793437,0.554578,0.210347,0.953317,0.0941744,0.514225,0.784911,0.977566,0.873507,0.754348,0.0566515,0.521669,0.0832002,0.502517,0.47069,0.33885,0.91271,0.423701,0.586918,0.686628,0.559803,0.789143,0.810158,0.479588,0.9094,0.471812,0.856249,0.828171,0.42895,0.631556,0.565682,0.468856,0.427688,0.410663,0.960821,0.183164,0.54759,0.302994,0.400995,0.585432,0.740563,0.695603,0.0784562,0.484468,0.808558,0.304274,0.0149302,0.692179,0.590646,0.348843,0.599821,0.68538,0.161011,0.670721,0.270313,0.620145,0.408655,0.901172,0.794956,0.863851,0.879578,0.979832,0.108895,0.17565,0.856689,0.732902,0.312702,0.218556,0.397638,0.366379,0.359214,0.855788,0.0554227,0.378556,0.576531,0.477365,|0.775571,0.877963,0.601348,0.14971,0.302668,0.424994,0.985793,0.996939,0.812185,0.704362,0.319463,0.119771,0.807516,0.344342,0.0424393,0.724212,0.758668,0.143081,0.818655,0.295821,0.58196,0.547323,0.130628,0.309676,0.600434,0.104654,0.831304,0.785915,0.467681,0.0506287,0.6031,0.806333,0.942082,0.0351718,0.705379,0.123272,0.629637,0.941783,0.991962,0.0164363,0.342207,0.348085,0.68744,0.25614,0.450497,0.408533,0.666082,0.509729,0.361641,0.497695,0.666978,0.552748,0.362246,0.938608,0.383184,0.86231,0.876868,0.865484,0.461188,0.509337,0.984731,0.618402,0.41533,0.910801,0.181028,0.53426,0.318726,0.599994,0.948813,0.947868,0.840444,0.280814,0.136646,0.762723,0.031877,0.469625,0.575138,0.764752,0.0817163,0.518663,0.143791,0.539384,0.348995,0.146519,0.918154,0.953938,0.641862,0.451471,0.786912,0.765693,0.453201,0.624541,0.906398,0.605904,0.931465,0.158355,0.255968,0.989586,0.0579044,0.880927,0.175341,0.227465,0.98183,0.979646,0.562503,0.0522395,0.154566,0.119439,0.574964,0.921151,0.370083,0.382466,0.690583,0.101873,0.411389,0.170457,0.248652,0.587875,0.568795,0.447331,0.371666,0.120173,0.719005,0.2583,0.117186,0.522194,0.908629,0.102457,0.356244,0.390476,0.429887,0.482731,0.309736,0.993053,0.243029,0.795901,0.586306,0.410323,0.454456,0.758235,0.739116,0.667199,0.419607,0.0840885,0.919238,0.334242,0.412773,0.0056361,0.261633,0.256463,0.225453,0.315482,0.90324,0.614011,0.518834,0.476841,0.505765,0.823298,0.325766,0.26397,0.578835,0.114089,0.565934,0.890825,0.403723,0.861835,0.44095,0.148323,0.632206,0.599707,0.417579,0.265283,0.876961,0.332981,0.976779,0.269884,0.931226,0.504364,0.919368,0.588139,0.404181,0.74389,0.424509,0.635183,0.386514,0.0922603,0.511325,0.0248528,0.872046,0.275399,0.692824,0.0350364,0.45576,0.346574,0.873989,0.23147,0.195803,0.419723,0.831809,0.585822,0.628831,0.522615,0.981011,0.842383,0.969487,0.802162,0.444508,0.408984,0.193737,0.391807,0.38273,0.559804,0.629751,0.192108,0.539827,0.55794,0.436225,0.617271,0.8046,0.598652,0.440297,0.58138,0.945923,0.0896792,0.847351,0.129464,0.307435,0.781097,0.737701,0.18309,0.0192562,0.984629,0.920518,0.980152,0.616448,0.197857,0.211059,0.814487,0.485551,0.627337,0.452103,0.106496,0.215259,0.0727651,0.809847,0.14225,0.818285,0.905008,0.469674,0.208052,0.105962,0.674312,0.151589,0.173146,0.457257,0.733637,0.300451,0.603386,0.907053,0.207765,0.10732,0.342411,0.803277,0.614424,0.135995,0.143165,0.32577,0.850967,0.451288,0.516724,0.282091,0.721441,0.419234,0.400925,0.341136,0.089819,0.314823,0.0327468,0.646222,0.0526994,0.770132,0.00130969,0.365654,0.985967,0.365518,0.447283,0.965399,0.866173,0.482119,0.767871,0.81552,0.868218,0.717279,0.0330135,0.226687,0.81152,0.422689,0.930128,0.577914,0.93502,0.762029,0.809615,0.510249,0.446287,0.236499,0.76581,0.54303,0.109173,0.456717,0.0883005,0.848585,0.718065,0.837443,0.534394,0.551522,0.850867,0.560042,0.628769,0.896846,0.633815,0.903386,0.336765,0.309038,0.462002,0.641088,0.423396,0.0852947,0.149027,0.183264,0.740713,0.709938,0.192688,0.0385562,0.0311586,0.533613,0.790703,0.563771,0.565323,0.878001,0.2105,0.198342,0.661622,0.3835,0.367706,0.419792,0.049907,0.35334,0.36675,0.97291,0.256889,0.433544,0.3082,0.791774,0.174934,0.81735,0.579096,0.98879,0.211551,0.0508187,0.977709,0.397924,0.57092,0.779886,0.101469,0.284728,0.193156,0.451518,0.427988,0.113839,0.24635,0.0683613,0.616949,0.882725,0.332409,0.558069,0.835626,0.97878,0.0546914,0.63858,0.499288,0.811927,0.0869827,0.736673,0.952687,0.412642,0.615524,0.147677,0.689489,0.764903,0.711795,0.636525,0.785456,0.725663,0.836948,0.862001,0.0197912,0.763967,0.434836,0.064756,0.143412,0.5709,0.8255,0.286399,0.530393,0.0733838,0.232783,0.259328,0.289165,0.0350539,0.882463,0.216956,0.708589,0.195584,0.315285,0.632231,0.903699,0.698744,0.726763,0.381679,0.66189,0.928306,0.949103,0.755163,0.981307,0.0295937,0.980769,0.601859,0.376352,0.0649415,0.297695,0.155831,0.0400881,0.338253,0.667399,0.745662,0.749308,0.473206,0.21538,0.78849,0.959786,0.873688,0.125332,0.0482517,0.917532,0.916626,0.825149,0.399469,0.0461132,0.436911,0.9977,0.505279,0.29377,0.737106,0.0741857,0.356517,0.921888,0.911396,0.322762,0.414289,0.362694,0.220859,0.883242,0.280927,0.962045,0.10813,0.11927,0.819046,0.273716,0.895629,0.323167,0.554715,0.845268,0.318841,0.151412,0.184339,0.00126666,0.864317,0.0801073,0.281744,0.380068,0.809441,0.987322,0.376091,0.312849,0.0561959,0.274423,0.569767,0.108937,0.539855,0.0765842,0.971437,0.556449,0.899717,0.645426,0.592819,0.695595,0.590512,0.994259,0.858505,0.412212,0.599789,0.0443721,0.758344,0.0552392,0.955396,0.666632,0.513529,0.712715,0.454999,0.475399,0.330358,0.0483891,0.500107,0.357014,0.134396,0.693576,0.626499,0.101643,0.847982,0.0461184,0.527994,0.279093,0.732073,0.731664,0.147286,0.572422,0.952927,0.713825,0.940607,0.903303,0.279066,0.376344,0.140746,0.31741,0.356844,0.501067,0.262725,0.0280671,0.961996,0.131738,0.966361,0.614368,0.0682455,0.03144,0.582067,0.170928,0.409034,0.0063231,0.585981,0.661963,0.275421,0.000924945,0.128213,0.383656,0.361746,0.248926,0.376585,0.451765,0.862479,0.215482,0.768796,0.548319,0.425954,0.504914,0.70708,0.96377,0.740358,0.704427,0.715019,0.825939,0.762161,0.301995,0.581806,0.42807,0.658437,0.18094,0.812219,0.699075,0.709143,0.112956,0.140909,0.0681806,0.80358,0.291203,0.587821,0.453585,0.820054,0.666405,0.0938504,0.334584,0.939558,0.554471,0.661264,0.483122,0.518747,0.0154485,0.0355389,0.518062,0.151472,0.396586,0.931533,0.674638,0.873384,0.592398,0.312575,0.728101,0.275292,0.632133,0.955671,0.791009,0.888731,0.400356,0.288535,0.2236,0.763638,0.120487,0.10727,0.0774475,0.989744,0.332293,0.517222,0.442379,0.263833,0.135111,0.435642,0.661293,0.58126,0.765673,0.532988,0.556972,0.29241,0.779038,0.622789,0.389444,0.75494,0.354078,0.849906,0.117845,0.459696,0.627443,0.987453,0.653733,0.0396953,0.00926584,0.269316,0.53026,0.162088,0.581902,0.551726,0.597934,0.481777,0.246779,0.0519779,0.679866,0.0831196,0.952725,0.234874,0.0656934,0.0220253,0.245044,0.347835,0.566302,0.0364812,0.764805,0.462473,0.25242,0.991781,0.344006,0.311204,0.979924,0.249875,0.569398,0.245247,0.67768,0.17598,0.99334,0.748856,0.728038,0.64567,0.775187,0.535476,0.20186,0.329759,0.305661,0.433748,0.824748,0.328521,0.697803,0.395849,0.32477,0.730157,0.242137,0.967932,0.818109,0.0641109,0.141532,0.471267,0.503089,0.805894,0.713836,0.0185636,0.723888,0.385142,0.615637,0.125739,0.643319,0.55647,0.325016,0.93381,0.1634,0.135344,0.510823,0.899993,0.778283,0.901184,0.306135,0.677521,0.030304,0.0210961,0.299319,0.202,0.745391,0.159151,0.643259,0.781898,0.934737,0.32174,0.541138,0.390406,0.260725,0.901825,0.224248,0.0700452,0.898719,0.0996187,0.29967,0.0908547,0.782181,0.340643,0.192838,0.11287,0.000118554,0.654419,0.579156,0.670442,0.330699,0.884423,0.298777,0.0896285,0.24664,0.651067,0.674277,0.384253,0.459704,0.492373,0.243343,0.815931,0.143252,0.900019,0.33386,0.280754,0.981872,0.253363,0.905483,0.430714,0.49352,0.275385,0.21651,0.917123,0.834242,0.835152,0.665833,0.145319,0.103874,0.73503,0.48169,0.920773,0.57207,0.491396,0.17508,0.878472,0.773076,0.384573,0.272658,0.589052,0.669179,0.398755,0.906357,0.526623,0.773777,0.741699,0.433183,0.276156,0.528063,0.705355,0.830285,0.592907,0.305665,0.719137,0.950025,0.439732,0.859291,0.170721,0.463465,0.501402,0.354942,0.154077,0.884241,0.268594,0.0210415,0.890666,0.968592,0.638384,0.39665,0.592909,0.0856654,0.133396,0.899032,0.000800669,0.964155,0.48004,0.447148,0.733416,0.390714,0.61315,0.363877,0.755428,0.662704,0.513465,0.512671,0.393607,0.453038,0.811063,0.973395,0.846025,0.558061,0.599484,0.177717,0.873542,0.554755,0.955202,0.479393,0.774817,0.724756,0.498817,0.756108,0.942285,0.478063,0.317128,0.422083,0.737987,0.214828,0.447588,0.0645416,0.823594,0.70834,0.680728,0.942245,0.212266,0.282758,0.00735044,0.875148,0.975763,0.947784,0.420823,0.384603,0.39286,0.725035,0.0111719,0.904353,0.284857,0.183648,0.545414,0.805052,0.160639,0.502246,0.455283,0.625707,0.953891,0.813486,0.655612,0.613554,0.891743,0.107647,0.0880674,0.0694775,0.138762,0.748724,0.504417,0.724057,0.229635,0.718173,0.533514,0.572537,0.17741,0.436529,0.741153,0.0334144,0.670277,0.876752,0.878357,0.330865,0.272848,0.814587,0.0602427,0.454841,0.256187,0.0432215,0.338798,0.197545,0.992154,0.719946,0.517493,0.277875,0.996464,0.219449,0.370239,0.325131,0.279132,0.247329,0.53217,0.27374,0.931069,0.126456,0.0605001,0.951444,0.489866,0.178616,0.684837,0.204278,0.505163,0.726454,0.194803,0.240091,0.311584,0.951048,0.0140847,0.652029,0.968959,0.294944,0.498738,0.465446,0.191934,0.0981912,0.936236,0.506133,0.4384,0.968745,0.451488,0.00393087,0.413858,0.284741,0.396418,0.553836,0.483369,0.357266,0.517952,0.885099,0.664992,0.328647,0.370537,0.638236,0.304237,0.111405,0.393404,0.867186,0.576301,0.781373,0.482143,0.727032,0.451759,0.523205,0.958832,0.485686,0.925201,0.319688,0.482453,0.351187,0.986336,0.0894093,0.253986,0.0843281,0.213526,0.637995,0.484638,0.932677,0.373745,0.806889,0.525076,0.22108,0.408134,0.480233,0.730452,0.82147,0.383681,0.646026,0.47358,0.472361,0.652473,0.732265,|0.890723,0.267607,0.204348,0.386087,0.277589,0.882003,0.11829,0.442918,0.1537,0.0387365,0.048313,0.806573,0.155409,0.134893,0.209378,0.0637402,0.764901,0.785676,0.0974016,0.294531,0.00940675,0.218727,0.589453,0.099244,0.860632,0.523569,0.508315,0.414796,0.812968,0.626105,0.574813,0.531014,0.695187,0.514326,0.00950921,0.146598,0.573856,0.556884,0.110435,0.618969,0.40697,0.413386,0.849872,0.406897,0.865962,0.541228,0.778183,0.159472,0.534199,0.981841,0.115319,0.212779,0.408292,0.892081,0.613141,0.906806,0.865588,0.225413,0.948363,0.480705,0.415147,0.699941,0.899327,0.487145,0.874892,0.772372,0.824307,0.471383,0.922312,0.472855,0.313385,0.899393,0.462026,0.844105,0.564599,0.595257,0.966681,0.285225,0.722054,0.266806,0.408807,0.752744,0.44732,0.442906,0.0437673,0.299645,0.380892,0.432669,0.761235,0.840723,0.757537,0.924205,0.742891,0.844341,0.423443,0.22422,0.740812,0.686129,0.563258,0.894591,0.837974,0.533568,0.520525,0.205087,0.815641,0.161685,0.510941,0.946665,0.128818,0.441425,0.212138,0.754538,0.676767,0.00893664,0.337886,0.225036,0.133305,0.352231,0.134366,0.143901,0.0217861,0.61044,0.413066,0.631624,0.601403,0.627068,0.719833,0.711493,0.382951,0.680789,0.701715,0.210258,0.409273,0.902626,0.870003,0.684051,0.857296,0.292949,0.260475,0.447565,0.999119,0.194311,0.216705,0.24756,0.12378,0.961726,0.973658,0.738144,0.0873582,0.0786851,0.685918,0.452024,0.302728,0.608583,0.461085,0.8549,0.409873,0.845062,0.343571,0.878198,0.636993,0.555782,0.0403653,0.33665,0.78844,0.810695,0.240333,0.339401,0.255367,0.312519,0.866086,0.519495,0.752611,0.453835,0.0800817,0.127113,0.533066,0.0156825,0.97616,0.188568,0.970637,0.557148,0.201401,0.197707,0.635015,0.545025,0.853351,0.228153,0.0743304,0.0461554,0.379523,0.664827,0.364113,0.504918,0.752935,0.620858,0.748164,0.862742,0.388013,0.313962,0.0529617,0.0294692,0.421874,0.0260646,0.116394,0.984226,0.404859,0.965064,0.64559,0.983745,0.668384,0.207701,0.286251,0.210246,0.900064,0.435501,0.952202,0.881447,0.78197,0.26608,0.868114,0.480158,0.987007,0.5954,0.0553763,0.810743,0.757567,0.291151,0.556909,0.142465,0.0203486,0.932024,0.21451,0.149996,0.0334794,0.393324,0.0238439,0.631192,0.067319,0.376571,0.97302,0.00965846,0.653097,0.57147,0.593093,0.225409,0.933292,0.146751,0.947606,0.657329,0.379588,0.793716,0.834911,0.173393,0.146256,0.776584,0.75389,0.621835,0.957087,0.944284,0.279456,0.324493,0.0680313,0.670357,0.609094,0.11176,0.43129,0.416194,0.147949,0.369552,0.399345,0.478989,0.994698,0.28031,0.237641,0.653017,0.0791367,0.983029,0.885117,0.695314,0.995822,0.10647,0.905394,0.0868747,0.127113,0.763914,0.270194,0.392139,0.772413,0.552816,0.464346,0.84303,0.183057,0.483131,0.51592,0.0258667,0.774001,0.020048,0.587287,0.111482,0.666253,0.628815,0.467502,0.370234,0.543905,0.736735,0.163911,0.338743,0.519294,0.49618,0.0778999,0.844829,0.163052,0.118458,0.560335,0.434302,0.0599563,0.160789,0.803404,0.999845,0.917086,0.932078,0.244076,0.00134057,0.0154785,0.986039,0.352863,0.0317014,0.821184,0.925558,0.586234,0.571646,0.361489,0.701105,0.707074,0.979413,0.340734,0.100727,0.994718,0.491922,0.530565,0.468373,0.990802,0.867103,0.236622,0.431985,0.161992,0.867465,0.508658,0.887071,0.730651,0.351492,0.515331,0.539826,0.532517,0.724793,0.68208,0.0231209,0.282614,0.515993,0.591118,0.473998,0.148705,0.658562,0.02912,0.197363,0.242801,0.577458,0.6376,0.047005,0.491149,0.270109,0.894812,0.933708,0.830935,0.451995,0.986581,0.0973106,0.775861,0.434172,0.554563,0.675024,0.147429,0.858456,0.628972,0.691538,0.598363,0.0311891,0.638832,0.906684,0.0925263,0.150294,0.829403,0.380247,0.24107,0.725283,0.866646,0.739061,0.598657,0.160567,0.909723,0.288849,0.871126,0.684967,0.307742,0.0602984,0.042641,0.275041,0.177097,0.208883,0.442463,0.399602,0.790363,0.135675,0.907636,0.584235,0.246877,0.676384,0.839202,0.27208,0.246912,0.504066,0.0870981,0.32446,0.348863,0.153236,0.93866,0.760892,0.785137,0.065951,0.567788,0.671314,0.587527,0.69729,0.429148,0.758913,0.896905,0.0549717,0.960531,0.87756,0.464694,0.0798445,0.845595,0.739419,0.861398,0.456255,0.083008,0.230978,0.291039,0.70729,0.499519,0.948305,0.918737,0.231932,0.926549,0.144283,0.875021,0.429804,0.625586,0.428325,0.548966,0.573643,0.425873,0.251994,0.718556,0.395557,0.575056,0.77827,0.956295,0.736231,0.667156,0.20636,0.56752,0.269234,0.649073,0.872189,0.484284,0.405057,0.0237169,0.921305,0.55776,0.625646,0.7173,0.964551,0.807053,0.273614,0.289503,0.632709,0.770038,0.260834,0.70175,0.693543,0.484519,0.958604,0.626657,0.878671,0.228834,0.291869,0.342549,0.362639,0.958898,0.501051,0.67682,0.906652,0.359459,0.144186,0.263715,0.925359,0.51776,0.840481,0.0925223,0.0202036,0.927105,0.148586,0.196673,0.890845,0.674497,0.851453,0.158736,0.044573,0.296086,0.258031,0.17963,0.165789,0.683183,0.582628,0.0980155,0.217118,0.304187,0.954395,0.301204,0.149895,0.0951817,0.378999,0.655653,0.709409,0.152193,0.624735,0.849882,0.812672,0.426829,0.276318,0.211241,0.545713,0.43279,0.0727948,0.852853,0.803063,0.727614,0.0464092,0.172641,0.819285,0.015199,0.569229,0.895935,0.849881,0.298546,0.95915,0.0821674,0.661277,0.797989,0.483812,0.440641,0.643976,0.851841,0.713961,0.141078,0.769973,0.508707,0.164082,0.0893055,0.88454,0.578693,0.170592,0.763665,0.865691,0.733064,0.596901,0.625078,0.554104,0.854523,0.728614,0.733903,0.898465,0.677833,0.846595,0.285671,0.453856,0.406407,0.765374,0.408742,0.744056,0.295208,0.819792,0.583441,0.480497,0.428922,0.447937,0.0117795,0.257002,0.541559,0.585829,0.367137,0.969039,0.156332,0.265003,0.991671,0.429004,0.13268,0.00454032,0.698083,0.117683,0.0347236,0.279721,0.236479,0.0894953,0.343087,0.92194,0.99615,0.862029,0.889611,0.278021,0.262474,0.30912,0.86926,0.630425,0.71464,0.231249,0.149634,0.385772,0.00833327,0.49409,0.733862,0.693891,0.867081,0.111814,0.536058,0.0466384,0.0152057,0.629738,0.797476,0.0495186,0.537488,0.757971,0.711169,0.338446,0.419808,0.495745,0.252467,0.974632,0.422366,0.0361519,0.10839,0.187399,0.679524,0.15139,0.377846,0.492591,0.91987,0.550567,0.212513,0.772958,0.402359,0.854035,0.244525,0.933147,0.681236,0.754443,0.873296,0.779863,0.553214,0.556371,0.190366,0.502792,0.803935,0.0310892,0.467268,0.7343,0.192959,0.265986,0.786102,0.730005,0.185723,0.898092,0.290029,0.364905,0.0621553,0.554037,0.586731,0.0870347,0.0446822,0.112122,0.0121888,0.555376,0.541431,0.449495,0.441134,0.324237,0.392714,0.0358376,0.0565273,0.0178545,0.188353,0.55311,0.0628672,0.452679,0.516229,0.66225,0.857298,0.112789,0.685408,0.720883,0.156869,0.065829,0.908093,0.716142,0.219169,0.60966,0.794848,0.48196,0.541328,0.616749,0.104779,0.608354,0.991055,0.307036,0.171039,0.653777,0.306118,0.878202,0.838109,0.00889599,0.966589,0.527996,0.133894,0.15962,0.353521,0.571019,0.285157,0.559824,0.450538,0.867082,0.0120271,0.934917,0.0323032,0.385422,0.918683,0.677499,0.532727,0.207692,0.43814,0.700128,0.941395,0.470604,0.631449,0.269766,0.734619,0.76512,0.820731,0.206394,0.211345,0.969016,0.545279,0.740017,0.326381,0.298828,0.0349342,0.846406,0.50222,0.31089,0.146969,0.221434,0.731702,0.233632,0.0699952,0.526771,0.879831,0.771933,0.660889,0.499878,0.571164,0.472298,0.73873,0.0450726,0.584921,0.500228,0.825983,0.00223643,0.423115,0.0677938,0.72139,0.773498,0.993938,0.238318,0.922836,0.527147,0.671902,0.0661606,0.511517,0.676649,0.574068,0.328521,0.405348,0.0144212,0.995563,0.212477,0.420787,0.629462,0.096531,0.148402,0.153652,0.183233,0.976932,0.32971,0.545595,0.908529,0.747001,0.788329,0.460495,0.0764065,0.185435,0.7142,0.866308,0.498642,0.137296,0.99903,0.265032,0.543742,0.584772,0.746809,0.293034,0.041114,0.22157,0.170363,0.516767,0.385292,0.872236,0.698332,0.624852,0.973842,0.632734,0.66555,0.664489,0.15291,0.579519,0.96767,0.826873,0.133358,0.721128,0.561584,0.85561,0.321888,0.999644,0.218814,0.0895179,0.225386,0.973667,0.00915796,0.313126,0.872263,0.282512,0.0941229,0.0135804,0.442934,0.393856,0.943006,0.0192056,0.167971,0.687591,0.094923,0.98127,0.405759,0.369963,0.886552,0.293928,0.603167,0.80413,0.154491,0.0541924,0.300156,0.514458,0.842513,0.162625,0.856771,0.0308287,0.5393,0.329081,0.681847,0.504624,0.98496,0.599507,0.703887,0.671802,0.731912,0.156158,0.500786,0.742187,0.716595,0.491686,0.792277,0.107412,0.854841,0.028742,0.714544,0.0782804,0.811719,0.863306,0.082644,0.854269,0.0129309,0.91474,0.818724,0.623318,0.876863,0.604684,0.802772,0.864845,0.590797,0.10525,0.272407,0.00626296,0.987475,0.0227114,0.203046,0.436796,0.881012,0.294236,0.32476,0.873604,0.246854,0.0775341,0.0833699,0.147297,0.390456,0.289704,0.199368,0.532453,0.276299,0.285954,0.393364,0.780333,0.903031,0.578886,0.900984,0.105767,0.84083,0.560528,0.782222,0.821153,0.563459,0.479248,0.928241,0.666573,0.313126,0.320563,0.893557,0.97593,0.652043,0.448382,0.188936,0.647172,0.622913,0.548448,0.851418,0.81365,0.206589,0.61432,0.380805,0.778181,0.280373,0.373073,0.28161,0.995008,0.168826,0.488968,0.107114,0.723694,0.542485,0.330297,0.535776,0.416468,0.775374,0.458493,0.422444,0.18669,0.615511,0.18496,0.18795,0.639534,0.797068,0.749898,0.198642,0.643388,0.00697213,0.994759,0.110086,0.650693,0.197682,0.794142,0.0980036,|0.031017,0.876912,0.697332,0.238864,0.786635,0.0677804,0.429299,0.271628,0.531249,0.996071,0.50559,0.275966,0.668539,0.290553,0.803817,0.999207,0.656703,0.508933,0.871269,0.706058,0.7072,0.199361,0.884843,0.638696,0.243066,0.903576,0.0310783,0.331711,0.48498,0.533651,0.0433434,0.111721,0.643858,0.510661,0.400059,0.0579157,0.00717223,0.463409,0.663201,0.973756,0.705425,0.521713,0.58264,0.281916,0.620969,0.112451,0.451751,0.660506,0.251071,0.658347,0.935231,0.176843,0.0359235,0.306844,0.792195,0.908167,0.708219,0.755346,0.311907,0.48301,0.540282,0.133542,0.0439686,0.283338,0.694647,0.940592,0.431705,0.295905,0.937222,0.78418,0.670303,0.720047,0.79699,0.897005,0.298854,0.196009,0.605273,0.459429,0.831522,0.27471,0.463497,0.173309,0.962772,0.267739,0.387263,0.4864,0.347953,0.203084,0.423328,0.855802,0.979648,0.310193,0.426364,0.979787,0.629513,0.392738,0.302945,0.00290024,0.0265484,0.652641,0.616693,0.927987,0.395952,0.842414,0.0253395,0.524127,0.629126,0.0412667,0.0934554,0.312513,0.69964,0.163662,0.834139,0.0208561,0.360891,0.356516,0.674986,0.905513,0.52427,0.915613,0.710908,0.722512,0.274344,0.896008,0.511514,0.0262281,0.314605,0.558777,0.62576,0.91773,0.66415,0.742233,0.254406,0.641083,0.997096,0.376546,0.536346,0.618367,0.629211,0.810023,0.748219,0.619447,0.843662,0.418231,0.342974,0.970245,0.322107,0.130482,0.158509,0.358321,0.540439,0.88868,0.986031,0.176015,0.510213,0.191303,0.202674,0.593581,0.984642,0.183075,0.491335,0.373973,0.0135818,0.683235,0.717829,0.102478,0.848458,0.213529,0.201134,0.532575,0.104916,0.926113,0.320332,0.603868,0.103879,0.659307,0.451737,0.303571,0.281581,0.750067,0.155854,0.560709,0.960478,0.35303,0.438102,0.932303,0.076149,0.859506,0.630584,0.871825,0.685987,0.34142,0.236056,0.681765,0.480903,0.472997,0.165671,0.641152,0.516347,0.336488,0.088231,0.602544,0.872214,0.0698762,0.13712,0.984869,0.425634,0.845452,0.484191,0.234904,0.336382,0.654878,0.0187503,0.904459,0.478036,0.688776,0.844642,0.0762216,0.971073,0.463207,0.402574,0.436109,0.827426,0.520133,0.599834,0.215764,0.0515465,0.890195,0.0436351,0.370995,0.235748,0.783516,0.809931,0.0345532,0.0770791,0.962927,0.980051,0.401393,0.545802,0.283919,0.894246,0.197745,0.13877,0.520025,0.317047,0.704915,0.27468,0.75423,0.647395,0.228865,0.106442,0.952371,0.438096,0.334437,0.508001,0.00259602,0.350658,0.492866,0.0376643,0.473568,0.497838,0.496714,0.800227,0.130463,0.955074,0.636701,0.298099,0.642303,0.369429,0.392138,0.751396,0.806001,0.365835,0.478041,0.759013,0.667338,0.855776,0.92419,0.18921,0.873867,0.872697,0.0960274,0.997475,0.367413,0.921364,0.543906,0.0593306,0.342496,0.187503,0.759403,0.937215,0.601265,0.455771,0.587688,0.495303,0.884969,0.0315083,0.525283,0.319452,0.0834803,0.833619,0.342665,0.690732,0.376904,0.328313,0.0793667,0.385381,0.961938,0.856021,0.239881,0.191924,0.338338,0.311353,0.233021,0.701153,0.651189,0.858264,0.565479,0.38884,0.35265,0.29142,0.420721,0.900775,0.595098,0.791862,0.116437,0.141179,0.804599,0.23022,0.431705,0.863356,0.601634,0.943388,0.836755,0.246385,0.859624,0.358038,0.921074,0.142587,0.835918,0.13937,0.815706,0.780951,0.428687,0.174699,0.111355,0.906224,0.844338,0.431773,0.597868,0.875926,0.543131,0.447757,0.99756,0.765213,0.264713,0.931149,0.0452219,0.533187,0.534377,0.659692,0.756486,0.345037,0.170905,0.775762,0.330593,0.635153,0.51679,0.805529,0.121773,0.881714,0.897869,0.241737,0.766064,0.54861,0.726299,0.327365,0.236421,0.289965,0.110538,0.00866568,0.96268,0.373635,0.924955,0.799298,0.137293,0.760483,0.998711,0.751158,0.188069,0.128008,0.534296,0.0414965,0.794432,0.231064,0.174495,0.719973,0.471322,0.196403,0.589687,0.923985,0.516308,0.52042,0.110993,0.354257,0.863157,0.273819,0.877555,0.116189,0.698662,0.843337,0.817709,0.442459,0.307294,0.977167,0.712049,0.558715,0.590317,0.332629,0.357199,0.517118,0.831138,0.32752,0.332273,0.169911,0.00880188,0.839803,0.520027,0.881455,0.695518,0.00956655,0.238609,0.741663,0.544016,0.484871,0.902911,0.278086,0.442452,0.0988069,0.0247852,0.688996,0.763709,0.589165,0.697693,0.0624459,0.313376,0.197181,0.378264,0.616819,0.794582,0.825091,0.836293,0.797199,0.383734,0.729644,0.806369,0.8443,0.600758,0.950338,0.344021,0.127891,0.961525,0.599716,0.780183,0.998455,0.134336,0.844931,0.693963,0.676099,0.852717,0.327135,0.859448,0.87141,0.0406125,0.61178,0.877219,0.0836606,0.287742,0.539595,0.485762,0.276856,0.369788,0.993616,0.623327,0.272188,0.538468,0.046331,0.792673,0.719459,0.893864,0.397665,0.298755,0.568277,0.305997,0.58695,0.543387,0.0630363,0.38504,0.457857,0.73558,0.870325,0.198156,0.327205,0.6464,0.941444,0.774694,0.876633,0.612235,0.601159,0.977476,0.0262727,0.574244,0.374367,0.266711,0.233073,0.59716,0.35761,0.287805,0.107937,0.00892574,0.442145,0.490825,0.166237,0.041297,0.837982,0.62751,0.813729,0.370616,0.779579,0.522275,0.47214,0.437912,0.841446,0.209161,0.32951,0.308552,0.69645,0.462243,0.207671,0.808197,0.890523,0.570741,0.0051685,0.133222,0.295633,0.635049,0.182082,0.845565,0.348192,0.0304281,0.118431,0.578437,0.144076,0.407104,0.506109,0.440439,0.233825,0.248044,0.640563,0.890966,0.396766,0.81993,0.464626,0.198335,0.949692,0.336162,0.428776,0.802699,0.950543,0.498159,0.781092,0.189393,0.596268,0.256946,0.528482,0.790131,0.125345,0.226633,0.111646,0.797414,0.720338,0.85295,0.188192,0.73098,0.190758,0.709714,0.401712,0.0900691,0.037679,0.40105,0.651424,0.455287,0.43025,0.74085,0.557151,0.674609,0.0998264,0.556912,0.111859,0.0822572,0.447243,0.26837,0.458689,0.46206,0.314638,0.537941,0.696918,0.574792,0.0149049,0.677867,0.360535,0.189925,0.677523,0.668353,0.449513,0.881487,0.533429,0.588191,0.175361,0.24312,0.420665,0.0793685,0.588634,0.460435,0.494586,0.284917,0.681916,0.100683,0.785236,0.219886,0.141741,0.0914656,0.0856625,0.150069,0.181541,0.53064,0.823218,0.442753,0.297913,0.47075,0.0400573,0.552845,0.9698,0.395562,0.266053,0.732749,0.276903,0.401734,0.84224,0.0905219,0.259941,0.160768,0.339547,0.695521,0.952063,0.145944,0.29146,0.188931,0.774625,0.99778,0.052716,0.0702899,0.934041,0.566948,0.599313,0.287893,0.420383,0.0918298,0.796175,0.337234,0.989108,0.487903,0.136447,0.778352,0.713083,0.300735,0.559588,0.461063,0.80486,0.824694,0.224804,0.0536833,0.276068,0.270379,0.434364,0.7824,0.60087,0.286431,0.393045,0.39704,0.647571,0.0160823,0.804233,0.628624,0.337655,0.225863,0.776297,0.509086,0.880263,0.97997,0.463472,0.637563,0.562488,0.731545,0.622017,0.213946,0.248235,0.567206,0.868276,0.869069,0.185664,0.708801,0.12838,0.397547,0.242182,0.735497,0.440263,0.659765,0.703447,0.0484251,0.249847,0.621567,0.130285,0.122834,0.705694,0.046865,0.516568,0.674603,0.657731,0.143226,0.497333,0.655944,0.590868,0.37969,0.333099,0.45482,0.543549,0.0783311,0.692557,0.337574,0.178334,0.106475,0.262141,0.198021,0.553289,0.874427,0.456006,0.824918,0.723287,0.304825,0.00159049,0.946906,0.821322,0.210256,0.691556,0.584821,0.887866,0.425264,0.365864,0.651154,0.176081,0.132381,0.586853,0.767655,0.0033226,0.649786,0.344833,0.0862988,0.95811,0.126104,0.385485,0.0941758,0.161084,0.143723,0.130138,0.637595,0.841865,0.455335,0.153549,0.696846,0.24489,0.750412,0.719193,0.0149167,0.72353,0.711121,0.538107,0.53909,0.122144,0.57657,0.540515,0.199169,0.57966,0.815991,0.535422,0.648615,0.508677,0.236755,0.429421,0.954395,0.770509,0.569819,0.546163,0.366168,0.026294,0.723991,0.672309,0.0186669,0.0501421,0.158771,0.379048,0.419029,0.609184,0.704488,0.923626,0.106154,0.568963,0.789943,0.0923294,0.299472,0.437406,0.29907,0.923874,0.980303,0.0394345,0.376905,0.722826,0.55125,0.476808,0.192606,0.130666,0.171919,0.614762,0.118642,0.0373649,0.251886,0.268706,0.781305,0.0198678,0.883657,0.766397,0.102816,0.0959822,0.3821,0.592713,0.922319,0.15732,0.973952,0.408082,0.0682892,0.912004,0.326131,0.721186,0.99555,0.46335,0.591162,0.532778,0.235075,0.614706,0.0887465,0.539364,0.791565,0.540808,0.0765917,0.831863,0.490937,0.660918,0.708632,0.00552982,0.706347,0.686665,0.668117,0.596858,0.813921,0.691101,0.261962,0.377315,0.251107,0.331134,0.66779,0.485152,0.322243,0.503869,0.0560331,0.103935,0.0656736,0.924981,0.386268,0.73805,0.755208,0.224896,0.843329,0.348056,0.81561,0.279587,0.480154,0.986211,0.169076,0.246283,0.352287,0.617818,0.89653,0.194216,0.832053,0.70616,0.331402,0.433395,0.280658,0.330376,0.33039,0.519367,0.932686,0.226885,0.84852,0.492764,0.847022,0.0375156,0.874036,0.791482,0.603647,0.438119,0.577455,0.753234,0.51726,0.65651,0.685683,0.987601,0.408535,0.0929909,0.861567,0.575389,0.0963799,0.77781,0.521591,0.30074,0.948567,0.116587,0.823873,0.108155,0.513315,0.700774,0.552935,0.579781,0.948634,0.677011,0.73099,0.454684,0.639335,0.803054,0.959015,0.242324,0.785859,0.919618,0.298999,0.724579,0.756286,0.582442,0.928335,0.743533,0.602895,0.895688,0.74416,0.624218,0.969937,0.703165,0.918878,0.37515,0.804402,0.333733,0.905978,0.270417,0.401847,0.0411902,0.690621,0.124766,0.555418,0.395639,0.309223,0.150324,0.821617,0.0217558,0.154404,0.663154,0.316707,0.0781695,0.742453,0.322531,0.815502,0.76928,0.864302,0.653019,0.184262,0.483851,0.900988,0.509171,0.269371,0.619112,0.922707,0.769563,0.902977,|0.665264,0.0461957,0.795653,0.829536,0.382567,0.108083,0.881809,0.783157,0.711148,0.385839,0.251262,0.726774,0.256229,0.0105599,0.194806,0.544739,0.721715,0.301391,0.291562,0.616771,0.459732,0.559957,0.61424,0.0412965,0.245215,0.475003,0.883093,0.4838,0.729876,0.508829,0.0381153,0.417218,0.00535965,0.0171348,0.847289,0.778031,0.32859,0.374433,0.218132,0.92879,0.394632,0.721348,0.321032,0.747775,0.00336933,0.876058,0.346193,0.275192,0.635355,0.881666,0.207811,0.540131,0.950014,0.651386,0.674294,0.802015,0.971024,0.235305,0.963197,0.627426,0.680039,0.619521,0.880613,0.745497,0.830048,0.417703,0.755802,0.929511,0.773397,0.643556,0.0456158,0.475301,0.983025,0.692503,0.42962,0.701088,0.71671,0.356651,0.00570595,0.657047,0.497639,0.135897,0.0630395,0.253214,0.567677,0.401758,0.975513,0.863335,0.580265,0.0175463,0.463334,0.687942,0.325866,0.974288,0.284777,0.253802,0.149974,0.852351,0.196134,0.966139,0.474435,0.256287,0.181542,0.259404,0.0986941,0.643121,0.704746,0.489602,0.0108929,0.609136,0.0701715,0.728392,0.203889,0.0736924,0.560512,0.205668,0.0717192,0.38506,0.218701,0.620372,0.7611,0.0500586,0.846005,0.395784,0.255843,0.403052,0.715814,0.230057,0.680856,0.574336,0.329258,0.422163,0.592358,0.783111,0.571305,0.921394,0.711836,0.174038,0.79519,0.229678,0.329779,0.286107,0.397844,0.44052,0.0379676,0.399861,0.82937,0.778302,0.263722,0.778195,0.199078,0.636171,0.0079276,0.861274,0.811807,0.311576,0.834284,0.0785616,0.597893,0.906362,0.819903,0.644781,0.72374,0.30645,0.031925,0.0226787,0.0523575,0.630956,0.17259,0.905686,0.404621,0.024375,0.923636,0.230805,0.56694,0.60958,0.958249,0.934107,0.244098,0.497616,0.357936,0.472586,0.741272,0.508323,0.476285,0.0768619,0.729072,0.448159,0.475165,0.685302,0.463938,0.634978,0.590883,0.122278,0.577343,0.664586,0.352274,0.410945,0.957147,0.218367,0.757195,0.426382,0.139433,0.0557072,0.871247,0.641441,0.138511,0.346118,0.621212,0.0323302,0.607683,0.0676925,0.122177,0.0257882,0.465922,0.112779,0.818976,0.999714,0.131868,0.450073,0.854783,0.266104,0.864203,0.99046,0.697452,0.584833,0.0312769,0.614444,0.231339,0.05412,0.560917,0.905991,0.216656,0.109848,0.525468,0.730772,0.962558,0.298226,0.884869,0.449874,0.838754,0.00545919,0.604231,0.907717,0.622948,0.319313,0.782845,0.157422,0.407121,0.256896,0.81337,0.0462136,0.869282,0.781487,0.118803,0.679765,0.0846081,0.365001,0.947686,0.942501,0.376934,0.619837,0.984891,0.852727,0.748964,0.0528709,0.357208,0.397911,0.732395,0.984195,0.472981,0.852422,0.37462,0.359046,0.328784,0.425655,0.705304,0.710928,0.184388,0.933184,0.436664,0.893377,0.521465,0.830759,0.674845,0.218003,0.433901,0.520063,0.758484,0.402377,0.431555,0.889564,0.716338,0.0186714,0.167478,0.465488,0.519269,0.873589,0.737898,0.757769,0.296573,0.679669,0.571368,0.681608,0.840509,0.835842,0.224644,0.428096,0.251152,0.297491,0.264601,0.423273,0.943679,0.046063,0.481853,0.00836468,0.184457,0.534303,0.130366,0.397493,0.670579,0.579307,0.536278,0.315208,0.202256,0.719516,0.773519,0.0245405,0.936053,0.655276,0.0358916,0.878279,0.415955,0.162479,0.379869,0.766473,0.184068,0.788143,0.8848,0.562312,0.483864,0.979477,0.631146,0.0348082,0.264768,0.326927,0.0181187,0.554358,0.0650665,0.860557,0.34119,0.924251,0.205108,0.978616,0.060717,0.997993,0.183207,0.416499,0.508328,0.21115,0.27187,0.701575,0.786348,0.970352,0.862115,0.31577,0.873913,0.76397,0.434952,0.300452,0.0741343,0.69917,0.782404,0.927251,0.217571,0.233035,0.652881,0.496509,0.174652,0.776264,0.977688,0.612607,0.131104,0.246017,0.917316,0.0526568,0.696414,0.333275,0.969775,0.0873455,0.0773501,0.760886,0.254171,0.708163,0.683113,0.117979,0.141699,0.549784,0.479793,0.908824,0.785349,0.753558,0.290086,0.719646,0.956522,0.0889735,0.591919,0.189567,0.401776,0.286948,0.559861,0.274789,0.119762,0.244496,0.747922,0.85821,0.171731,0.153269,0.691434,0.391833,0.787987,0.528937,0.513529,0.54359,0.206843,0.986626,0.21508,0.0208423,0.934792,0.379513,0.772082,0.852665,0.388078,0.109728,0.121155,0.049163,0.687088,0.0667938,0.226313,0.863154,0.97463,0.188956,0.269945,0.97508,0.564716,0.117783,0.422731,0.35735,0.725266,0.650473,0.974092,0.830116,0.492087,0.919552,0.357679,0.646981,0.496694,0.308319,0.392972,0.890688,0.126386,0.662498,0.4994,0.826296,0.629964,0.764803,0.783158,0.244303,0.641503,0.643846,0.533094,0.383922,0.846022,0.488374,0.721628,0.402049,0.11423,0.0468498,0.688167,0.855758,0.98818,0.547194,0.041167,0.120448,0.154898,0.117029,0.375343,0.0628728,0.318651,0.171087,0.736014,0.778868,0.775748,0.0891535,0.281492,0.311212,0.628756,0.572517,0.662168,0.144369,0.275523,0.283228,0.687697,0.3908,0.166811,0.734771,0.610364,0.590935,0.474399,0.493135,0.670384,0.481187,0.758172,0.891784,0.86842,0.748554,0.0652905,0.98083,0.952573,0.563072,0.369192,0.128747,0.14085,0.997008,0.180007,0.962543,0.582538,0.419261,0.0513798,0.370737,0.695238,0.175794,0.20897,0.195527,0.886388,0.981143,0.268491,0.895121,0.901443,0.616081,0.363189,0.00903296,0.795215,0.368502,0.957769,0.905255,0.168258,0.855029,0.498543,0.467872,0.553369,0.989821,0.128784,0.64976,0.680362,0.171612,0.870345,0.313863,0.21514,0.037542,0.0050317,0.408045,0.586464,0.243482,0.932033,0.223443,0.808958,0.387518,0.504009,0.00479245,0.546677,0.480714,0.443029,0.539246,0.906307,0.9119,0.537349,0.460852,0.323017,0.120272,0.451186,0.861678,0.363915,0.307842,0.281758,0.405703,0.763607,0.753179,0.899262,0.938422,0.33187,0.984188,0.170337,0.0241389,0.634058,0.0789855,0.420253,0.34416,0.635806,0.776145,0.458018,0.96912,0.93778,0.679328,0.605938,0.379358,0.711081,0.281404,0.134334,0.733168,0.443015,0.464462,0.0933903,0.705547,0.860908,0.490874,0.467047,0.164013,0.273475,0.475486,0.448691,0.815295,0.142737,0.871282,0.326706,0.261752,0.0142258,0.585792,0.574931,0.944432,0.538802,0.853128,0.855786,0.259198,0.98533,0.440696,0.401461,0.726138,0.305539,0.563803,0.980666,0.538483,0.834664,0.650639,0.535863,0.275102,0.0760404,0.351715,0.765919,0.453456,0.0506317,0.416692,0.326873,0.771042,0.717396,0.272765,0.146341,0.912251,0.883852,0.294093,0.150104,0.961809,0.795551,0.296441,0.0455779,0.668457,0.146306,0.804177,0.405779,0.838742,0.739772,0.98865,0.985528,0.990192,0.458057,0.90942,0.342307,0.610273,0.611424,0.852014,0.723577,0.0809627,0.947048,0.655092,0.438947,0.115192,0.272663,0.208982,0.481036,0.754658,0.885202,0.0485817,0.833879,0.306278,0.130058,0.678744,0.531855,0.0921147,0.584135,0.0169739,0.836336,0.764581,0.633447,0.779982,0.14536,0.284724,0.0167153,0.345978,0.974922,0.00320816,0.0959832,0.499737,0.904475,0.361082,0.521141,0.274742,0.996404,0.488608,0.498888,0.522359,0.291751,0.95174,0.669179,0.658715,0.860545,0.57599,0.752396,0.227584,0.814097,0.291479,0.96429,0.108856,0.17417,0.804465,0.931976,0.149623,0.162262,0.0539478,0.556849,0.837542,0.660941,0.932881,0.842568,0.831932,0.641563,0.389915,0.291922,0.837771,0.668465,0.357813,0.709044,0.871331,0.507485,0.586947,0.671328,0.977155,0.806184,0.159995,0.672294,0.915497,0.492991,0.798602,0.237369,0.64504,0.0688227,0.184478,0.707392,0.448975,0.393464,0.043358,0.490033,0.888515,0.188134,0.30444,0.342546,0.69301,0.818868,0.967123,0.929907,0.671072,0.709813,0.516224,0.450783,0.406935,0.626615,0.258369,0.140072,0.436614,0.733576,0.255969,0.389724,0.932054,0.761256,0.00908756,0.921083,0.511257,0.375111,0.948767,0.448678,0.172769,0.729429,0.0643555,0.142927,0.953366,0.513022,0.404265,0.253864,0.793436,0.999744,0.417433,0.29104,0.00747263,0.505058,0.0626267,0.571505,0.0486035,0.315168,0.255067,0.513675,0.958649,0.932952,0.287913,0.857517,0.692943,0.159809,0.111653,0.574253,0.0711516,0.447834,0.626606,0.19031,0.356073,0.779136,0.0550979,0.802701,0.51706,0.349676,0.0269743,0.293867,0.714377,0.735663,0.0515178,0.0381898,0.235232,0.26898,0.654527,0.686515,0.68707,0.10552,0.613722,0.804452,0.704139,0.379164,0.351431,0.772563,0.200477,0.896493,0.992538,0.802267,0.546061,0.238063,0.328712,0.968828,0.866342,0.459143,0.42422,0.486745,0.759315,0.887418,0.656216,0.11776,0.884882,0.459028,0.63104,0.186392,0.770335,0.298384,0.861277,0.302674,0.803675,0.815164,0.159728,0.468693,0.566505,0.564586,0.241007,0.897104,0.935685,0.807863,0.605292,0.0218278,0.148319,0.398011,0.0923872,0.177489,0.405051,0.834239,0.384181,0.2298,0.954283,0.995542,0.111615,0.180078,0.154807,0.846288,0.789697,0.281701,0.195466,0.891388,0.264321,0.101748,0.690751,0.593362,0.013098,0.687246,0.341512,0.570336,0.212748,0.635042,0.0728239,0.410498,0.549956,0.23111,0.773125,0.39301,0.397764,0.0231939,0.470607,0.308185,0.572495,0.763788,0.786611,0.768288,0.225439,0.996875,0.214503,0.935484,0.645098,0.863504,0.524258,0.296342,0.89814,0.751658,0.513695,0.244193,0.0500868,0.570863,0.933751,0.145787,0.924765,0.734291,0.234246,0.61751,0.626042,0.805691,0.75071,0.228215,0.0997815,0.453146,0.295066,0.921649,0.639522,0.47188,0.665831,0.383015,0.865592,0.149272,0.607626,0.841241,0.113249,0.918351,0.450115,0.620087,0.831077,0.349257,0.284375,0.316849,0.700002,0.527671,0.977139,0.587831,0.694305,0.173448,0.140158,0.1916,0.826511,0.392558,0.727797,0.645486,0.0775765,0.0802258,0.462994,0.889674,0.182969,0.438636,0.108852,0.324555,0.667373,0.638305,0.731392,|0.906058,0.655096,0.168156,0.167931,0.88168,0.989126,0.787575,0.666952,0.428563,0.16442,0.256247,0.470255,0.583816,0.174976,0.395274,0.774718,0.331308,0.304708,0.890181,0.0844881,0.533665,0.116716,0.54317,0.482287,0.348374,0.0434734,0.75233,0.832438,0.442204,0.21018,0.23282,0.453726,0.653554,0.996234,0.0538194,0.760051,0.740135,0.721762,0.661555,0.257218,0.10274,0.328312,0.348041,0.239225,0.418577,0.210149,0.339938,0.244186,0.994569,0.962437,0.527485,0.544251,0.075122,0.582256,0.0936191,0.653969,0.836623,0.0276356,0.126503,0.515555,0.0649903,0.0713282,0.878565,0.172984,0.445866,0.341183,0.77433,0.269876,0.402262,0.571854,0.843365,0.347189,0.86646,0.583225,0.00162035,0.458692,0.813116,0.249067,0.130474,0.917053,0.0110995,0.693298,0.695556,0.033004,0.757271,0.649747,0.980926,0.74474,0.0779273,0.922359,0.250317,0.573705,0.950667,0.606923,0.566931,0.139907,0.794376,0.273747,0.0928564,0.316339,0.340246,0.327054,0.314765,0.272775,0.0017603,0.554999,0.387327,0.226603,0.694446,0.595872,0.58701,0.244768,0.204036,0.735155,0.48415,0.07372,0.714754,0.521327,0.769356,0.271037,0.83397,0.508597,0.770179,0.958931,0.42598,0.0148122,0.39154,0.715073,0.963499,0.973867,0.657445,0.815247,0.0877696,0.888063,0.72028,0.929474,0.646009,0.129271,0.118211,0.0174459,0.104526,0.0416339,0.527939,0.428874,0.913033,0.0482808,0.423253,0.860503,0.956818,0.777485,0.806003,0.702893,0.562408,0.896358,0.357857,0.305358,0.985232,0.323435,0.645295,0.760211,0.817928,0.914137,0.578949,0.32455,0.860025,0.53519,0.370414,0.284139,0.0935132,0.237798,0.750082,0.173294,0.879041,0.524481,0.443896,0.854514,0.918039,0.767816,0.525695,0.283401,0.478868,0.567663,0.684734,0.51993,0.561091,0.241613,0.136713,0.616458,0.96082,0.439071,0.360797,0.645465,0.923831,0.994799,0.911934,0.871429,0.183169,0.992463,0.290888,0.535253,0.427496,0.909353,0.596647,0.551981,9.20296e-05,0.770898,0.859751,0.501528,0.751943,0.210366,0.403668,0.420578,0.922172,0.734173,0.116265,0.312298,0.526039,0.0633265,0.195069,0.693945,0.234356,0.242904,0.88015,0.899341,0.512862,0.360142,0.494309,0.952999,0.588919,0.333849,0.0333062,0.204593,0.694043,0.438884,0.0419141,0.0503763,0.237692,0.388274,0.601376,0.62032,0.95613,0.461713,0.941787,0.800254,0.897135,0.115284,0.238616,0.590003,0.456452,0.282148,0.133079,0.127021,0.27424,0.21815,0.0289446,0.217436,0.874537,0.825361,0.75205,0.430755,0.164213,0.474849,0.768547,0.814024,0.724578,0.663064,0.959723,0.42989,0.124855,0.768804,0.215938,0.0490546,0.974769,0.228502,0.92126,0.608014,0.358494,0.846397,0.186324,0.164792,0.641265,0.133476,0.0986359,0.62647,0.710829,0.229772,0.891353,0.261169,0.307447,0.837456,0.58123,0.319614,0.434314,0.316829,0.504904,0.935668,0.411576,0.029366,0.336837,0.648768,0.926842,0.144443,0.920519,0.665363,0.0564283,0.946228,0.567896,0.647293,0.0740237,0.607399,0.184667,0.207159,0.778411,0.612645,0.920286,0.491768,0.753686,0.482557,0.106668,0.357714,0.247076,0.949175,0.986644,0.485403,0.215623,0.651735,0.163712,0.108736,0.0155966,0.432052,0.667587,0.649515,0.880933,0.215654,0.481291,0.907145,0.247624,0.277396,0.368261,0.0254648,0.0369881,0.0670843,0.00317377,0.951062,0.634628,0.903887,0.150287,0.174192,0.430306,0.253477,0.279302,0.535696,0.00493664,0.842875,0.642183,0.900041,0.931008,0.228211,0.396308,0.926166,0.576844,0.311973,0.131493,0.948291,0.977947,0.504103,0.398583,0.991893,0.344177,0.214643,0.969999,0.686106,0.167678,0.366981,0.603885,0.228841,0.923798,0.97314,0.58515,0.678417,0.493152,0.031436,0.119455,0.0944071,0.821635,0.296085,0.558158,0.264947,0.226474,0.42055,0.278408,0.273437,0.741927,0.481673,0.556041,0.820881,0.964515,0.187285,0.560763,0.074289,0.128741,0.951676,0.828985,0.20057,0.88935,0.409957,0.669146,0.547641,0.813053,0.940104,0.850652,0.612527,0.546783,0.189731,0.0878903,0.369461,0.97995,0.448902,0.0426079,0.568343,0.652778,0.668148,0.235999,0.428095,0.102549,0.567554,0.867119,0.421995,0.577404,0.556109,0.901958,0.449332,0.225166,0.0808672,0.0085479,0.131622,0.628806,0.391699,0.112597,0.989733,0.299185,0.431911,0.179931,0.650993,0.464946,0.554289,0.412471,0.973613,0.263564,0.703605,0.370236,0.0608728,0.84966,0.224061,0.484723,0.677732,0.522362,0.813723,0.09531,0.217997,0.230423,0.978724,0.508014,0.433678,0.288136,0.176674,0.122626,0.00264394,0.751856,0.73317,0.334953,0.88425,0.180234,0.792799,0.600833,0.28602,0.731071,0.0435239,0.510965,0.364182,0.513234,0.253093,0.835973,0.727474,0.645998,0.784335,0.364968,0.645545,0.603063,0.637188,0.968175,0.596508,0.592501,0.154386,0.989346,0.345962,0.409014,0.0567139,0.886383,0.725352,0.930015,0.912636,0.304142,0.782202,0.0028674,0.538115,0.868388,0.607654,0.814412,0.264067,0.914727,0.785723,0.828698,0.3295,0.929973,0.078419,0.724233,0.50056,0.0503898,0.757614,0.257477,0.483537,0.0695971,0.42611,0.998771,0.677965,0.887722,0.402985,0.940898,0.52804,0.808604,0.818703,0.650517,0.244003,0.219634,0.248231,0.158945,0.86225,0.382672,0.408652,0.992849,0.437971,0.261758,0.938271,0.957792,0.795616,0.53437,0.398854,0.388761,0.496193,0.947723,0.615699,0.891221,0.566524,0.781272,0.242814,0.573966,0.382966,0.954645,0.227948,0.999612,0.0312589,0.191976,0.481159,0.638291,0.447811,0.721491,0.743076,0.782487,0.280807,0.69969,0.228567,0.372334,0.43804,0.74353,0.212142,0.559727,0.595906,0.696612,0.239335,0.0488915,0.419922,0.31106,0.949431,0.588413,0.224263,0.755012,0.165989,0.600816,0.558923,0.737768,0.98112,0.376036,0.277616,0.28502,0.120952,0.0409203,0.766039,0.265845,0.693943,0.211199,0.607173,0.615807,0.518246,0.0750239,0.564699,0.248152,0.989023,0.926243,0.843857,0.624623,0.758528,0.978324,0.112029,0.547914,0.966264,0.901535,0.202124,0.792161,0.94777,0.675578,0.415175,0.947973,0.55851,0.707247,0.320976,0.510015,0.515048,0.947515,0.550486,0.0242509,0.230671,0.331657,0.842026,0.784096,0.55761,0.489782,0.888888,0.0792231,0.447836,0.307211,0.771275,0.103916,0.675146,0.051391,0.0496194,0.859071,0.37345,0.676494,0.22513,0.754522,0.54304,0.7229,0.926569,0.507451,0.608224,0.659008,0.451711,0.758161,0.737827,0.590507,0.315165,0.846894,0.0317227,0.1223,0.651391,0.676924,0.946073,0.92283,0.695214,0.102073,0.684579,0.0235382,0.982784,0.643205,0.657679,0.0822031,0.315044,0.670315,0.492732,0.0834277,0.0952175,0.760014,0.111137,0.389368,0.966723,0.0607488,0.472672,0.037401,0.00805908,0.420213,0.0951506,0.23631,0.236336,0.675189,0.686635,0.786974,0.913813,0.847555,0.264951,0.478469,0.794777,0.603544,0.341935,0.730925,0.518767,0.0693629,0.375826,0.945419,0.899437,0.896335,0.310782,0.404968,0.330742,0.578166,0.53157,0.198542,0.307889,0.61392,0.255334,0.872633,0.920805,0.916794,0.227473,0.115245,0.253422,0.959738,0.455806,0.425981,0.216688,0.308664,0.694706,0.506061,0.656664,0.383235,0.662628,0.515463,0.794672,0.434946,0.618338,0.480869,0.0748399,0.665309,0.763545,0.16708,0.868701,0.337023,0.539572,0.310031,0.435312,0.897979,0.263973,0.644524,0.883618,0.879415,0.363153,0.384562,0.88379,0.677958,0.456471,0.157797,0.874018,0.659887,0.770911,0.0203392,0.968698,0.136265,0.092932,0.805943,0.27515,0.481643,0.218961,0.359345,0.574371,0.616398,0.0630112,0.518908,0.192414,0.569121,0.370726,0.503637,0.275278,0.59465,0.556936,0.397539,0.061058,0.190597,0.0734483,0.884218,0.420883,0.863948,0.367158,0.868198,0.854839,0.168758,0.207803,0.866543,0.893046,0.293165,0.528938,0.54025,0.762709,0.562528,0.415657,0.270008,0.135655,0.555725,0.803394,0.233849,0.996192,0.630989,0.177276,0.459707,0.732771,0.460314,0.647554,0.586349,0.992292,0.0227038,0.576392,0.836497,0.761728,0.494096,0.751077,0.453694,0.712155,0.903178,0.100212,0.89031,0.116188,0.612904,0.639524,0.0866867,0.186627,0.71278,0.00786573,0.956549,0.324537,0.985074,0.290371,0.978055,0.00939929,0.151877,0.00784081,0.673858,0.0575722,0.885207,0.399456,0.70303,0.641174,0.291024,0.201241,0.806772,0.700227,0.0674096,0.394467,0.237487,0.169481,0.602283,0.669238,0.293302,0.324155,0.923193,0.903457,0.137506,0.40548,0.671993,0.441327,0.176298,0.600588,0.442485,0.682775,0.796015,0.731036,0.73724,0.996652,0.580476,0.908558,0.565029,0.110229,0.0586188,0.212556,0.124071,0.546757,0.422417,0.403317,0.880321,0.893975,0.126902,0.0418299,0.874875,0.553105,0.563717,0.786425,0.31813,0.214049,0.121258,0.0703573,0.318994,0.766801,0.0615351,0.402336,0.0784824,0.119263,0.633672,0.561099,0.401011,0.631045,0.437873,0.484652,0.479616,0.117016,0.951966,0.724889,0.225277,0.567038,0.984666,0.575347,0.555575,0.790405,0.216631,0.244941,0.978475,0.482944,0.311184,0.942721,0.0415255,0.530318,0.272604,0.329383,0.0201235,0.828191,0.082926,0.201039,0.88365,0.37512,0.133577,0.376971,0.817373,0.10322,0.632894,0.369992,0.385655,0.338594,0.953843,0.776076,0.0844128,0.150142,0.627169,0.430733,0.64548,0.511565,0.686108,0.584973,0.0022257,0.24818,0.708853,0.136491,0.639687,0.233114,0.424678,0.368072,0.709655,0.226002,0.0157598,0.687392,0.216222,0.102578,0.0237566,0.22167,0.259126,0.354144,0.568626,0.0448013,0.391883,0.0493617,0.0245476,0.937125,0.635847,0.314132,0.804965,0.555452,0.787038,0.987867,0.692828,0.469761,0.0992069,0.0565484,0.764578,0.531546,0.207178,0.263597,0.889806,0.844159,0.626031,0.604395,0.359253,0.324284,0.65645,0.489471,|0.124572,0.426027,0.466116,0.652802,0.207989,0.962503,0.764668,0.988501,0.362557,0.523595,0.381623,0.651149,0.079351,0.578273,0.496365,0.685974,0.42061,0.247251,0.165723,0.283634,0.497795,0.0193115,0.226766,0.273072,0.314808,0.125095,0.964671,0.737369,0.88622,0.897534,0.701797,0.554575,0.0964364,0.395018,0.419817,0.329029,0.292398,0.30557,0.997768,0.716213,0.848215,0.282271,0.902846,0.523902,0.038419,0.326005,0.544518,0.42897,0.73062,0.741751,0.242221,0.7384,0.895006,0.97716,0.158406,0.798568,0.0176795,0.202928,0.996762,0.0553792,0.66478,0.252284,0.791482,0.215333,0.0426312,0.603129,0.736777,0.760721,0.287827,0.633904,0.832217,0.545037,0.608895,0.416347,0.594032,0.0081653,0.196931,0.970234,0.823019,0.678151,0.0302135,0.259888,0.373135,0.414646,0.589036,0.392263,0.958085,0.745625,0.364,0.690195,0.618915,0.73364,0.477035,0.0934136,0.391011,0.845155,0.682399,0.339458,0.0384642,0.191848,0.733045,0.527194,0.333985,0.425204,0.038895,0.659099,0.310015,0.055321,0.84625,0.241022,0.553286,0.608198,0.93203,0.569339,0.331941,0.877268,0.119427,0.930495,0.733913,0.699856,0.0765716,0.258244,0.923198,0.678709,0.00127435,0.426439,0.892467,0.853252,0.15242,0.829447,0.780496,0.0125121,0.103864,0.962432,0.673583,0.303484,0.32788,0.319044,0.5887,0.439997,0.644243,0.456138,0.229938,0.664864,0.774956,0.283399,0.983814,0.204456,0.503739,0.426147,0.399604,0.0533636,0.238349,0.129736,0.713917,0.831021,0.922109,0.227731,0.00725949,0.497894,0.200298,0.726217,0.639747,0.243706,0.996249,0.595591,0.230668,0.755499,0.502503,0.713823,0.311864,0.524423,0.842734,0.756003,0.428139,0.80778,0.509018,0.309824,0.0888628,0.274089,0.330384,0.901992,0.141007,0.19388,0.704522,0.6794,0.874621,0.992638,0.299117,0.598368,0.0842535,0.338659,0.308751,0.917772,0.314046,0.69694,0.517914,0.492547,0.0635064,0.941585,0.311693,0.153283,0.392033,0.140903,0.77438,0.017457,0.717599,0.586431,0.51421,0.541104,0.147864,0.598144,0.858009,0.820347,0.854693,0.780708,0.451522,0.0941169,0.624069,0.19285,0.29519,0.660642,0.604799,0.727886,0.648849,0.493723,0.815717,0.192971,0.623269,0.924119,0.898415,0.963535,0.482523,0.485639,0.910046,0.836151,0.898334,0.300858,0.209665,0.23001,0.621335,0.414758,0.683903,0.887866,0.211681,0.0734404,0.627833,0.436676,0.214153,0.586726,0.0102456,0.0637314,0.205803,0.939111,0.525015,0.107422,0.451149,0.137362,0.992729,0.12203,0.495664,0.744418,0.473486,0.464772,0.756505,0.898349,0.499872,0.89941,0.881139,0.979188,0.877243,0.225052,0.147703,0.13878,0.933431,0.225208,0.952363,0.282159,0.422683,0.297066,0.111904,0.0361965,0.577354,0.432747,0.290444,0.684044,0.755318,0.879483,0.928346,0.666781,0.965573,0.826555,0.461472,0.157838,0.367118,0.335495,0.155232,0.589976,0.301133,0.101033,0.774298,0.292732,0.944724,0.274936,0.067306,0.594234,0.699122,0.464462,0.768764,0.118145,0.691996,0.846583,0.74351,0.947946,0.541675,0.243984,0.526796,0.315758,0.355935,0.755912,0.583698,0.851071,0.436219,0.132328,0.0910454,0.565518,0.85692,0.682033,0.469571,0.652751,0.924231,0.472351,0.934711,0.653852,0.874717,0.708606,0.26382,0.154515,0.695791,0.16626,0.129997,0.649339,0.757236,0.438436,0.952781,0.321145,0.773906,0.184676,0.279035,0.0178365,0.258083,0.274913,0.584357,0.116848,0.518125,0.895996,0.651996,0.81788,0.0665653,0.178686,0.713038,0.0715573,0.842098,0.401693,0.881537,0.896242,0.945563,0.627835,0.198523,0.121888,0.396202,0.0238543,0.370082,0.0782678,0.568307,0.80796,0.998193,0.450923,0.488946,0.633201,0.179262,0.763886,0.639867,0.144188,0.0576217,0.618684,0.498817,0.205049,0.176413,0.326841,0.678,0.126416,0.893027,0.337898,0.229059,0.987715,0.106525,0.51796,0.278537,0.745631,0.209009,0.384915,0.261978,0.731527,0.788665,0.399287,0.579413,0.939529,0.218196,0.261689,0.984788,0.00619835,0.842369,0.36439,0.181642,0.949812,0.980208,0.690235,0.72812,0.722128,0.0278137,0.869961,0.144376,0.147726,0.217577,0.929739,0.202375,0.694615,0.804056,0.528748,0.645505,0.808678,0.952135,0.778241,0.676939,0.0999511,0.596441,0.145029,0.939665,0.391994,0.676968,0.127047,0.107976,0.865932,0.405778,0.406605,0.110204,0.113721,0.238283,0.205525,0.0830439,0.864946,0.969488,0.277379,0.868138,0.108674,0.78161,0.780861,0.211656,0.983851,0.237326,0.400154,0.164285,0.388271,0.722076,0.712911,0.89683,0.0742315,0.473196,0.588727,0.999381,0.90174,0.362505,0.783837,0.825526,0.902346,0.986411,0.636424,0.36996,0.577414,0.265999,0.0688951,0.0255941,0.694158,0.56752,0.304496,0.990745,0.310676,0.193089,0.449643,0.740827,0.661442,0.3356,0.075896,0.144169,0.291975,0.369977,0.0293894,0.655633,0.229576,0.431715,0.164362,0.553425,0.531215,0.341561,0.143478,0.0603,0.135459,0.638567,0.461718,0.146441,0.0539082,0.72523,0.598221,0.681132,0.996313,0.894657,0.180261,0.0603571,0.719399,0.87504,0.95134,0.790073,0.245278,0.242976,0.137724,0.403962,0.799029,0.800657,0.259113,0.21342,0.716192,0.144403,0.772847,0.294636,0.195703,0.0298774,0.151769,0.20031,0.584274,0.327811,0.748146,0.740559,0.247079,0.501041,0.588643,0.289544,0.494423,0.095972,0.746984,0.00865382,0.103045,0.983744,0.737992,0.585925,0.300385,0.00989324,0.0989433,0.644576,0.159915,0.298177,0.3274,0.640014,0.720754,0.532911,0.5555,0.0955034,0.515755,0.341708,0.187629,0.96107,0.00164115,0.874346,0.689529,0.172253,0.309999,0.868859,0.66796,0.138704,0.622528,0.467551,0.478691,0.0565999,0.040561,0.914561,0.429389,0.785465,0.516217,0.83361,0.15915,0.149518,0.744303,0.661264,0.164604,0.537916,0.309859,0.0375754,0.563188,0.442001,0.21398,0.73863,0.728553,0.709701,0.194934,0.241564,0.485079,0.432263,0.482408,0.116409,0.478815,0.497808,0.165411,0.398599,0.642866,0.352385,0.18507,0.187155,0.218674,0.566949,0.173976,0.803186,0.731048,0.00548911,0.508507,0.454853,0.423032,0.422929,0.434522,0.691401,0.683029,0.78073,0.997411,0.421685,0.997808,0.750022,0.572462,0.0184261,0.894243,0.764747,0.102638,0.996001,0.585843,0.269528,0.761034,0.57581,0.883866,0.923686,0.916834,0.1602,0.32922,0.156853,0.640768,0.0702402,0.805606,0.89701,0.859798,0.111326,0.867455,0.783939,0.768672,0.777352,0.633516,0.161507,0.150678,0.846395,0.597528,0.540103,0.902015,0.0165185,0.454166,0.0919142,0.311427,0.0307913,0.165298,0.462041,0.408341,0.987361,0.960431,0.275461,0.308272,0.896139,0.470769,0.976381,0.948204,0.418815,0.478551,0.705658,0.804849,0.334377,0.202493,0.694231,0.112215,0.499862,0.754424,0.613293,0.620843,0.403882,0.717088,0.12123,0.545447,0.621106,0.860327,0.690964,0.611659,0.942442,0.890431,0.0529879,0.797822,0.395101,0.593706,0.018349,0.0422875,0.925843,0.566208,0.449036,0.429734,0.974132,0.323503,0.121225,0.432224,0.568307,0.0391148,0.993417,0.810437,0.445044,0.202541,0.53713,0.82537,0.0753501,0.90254,0.382314,0.567706,0.160712,0.0829273,0.339291,0.372513,0.715895,0.238772,0.442124,0.512598,0.89235,0.740883,0.584066,0.0552183,0.12573,0.556284,0.500676,0.472883,0.942526,0.0504463,0.169264,0.354762,0.297234,0.592073,0.0620279,0.549874,0.448178,0.990315,0.549043,0.972461,0.592404,0.000902414,0.493696,0.153937,0.0318299,0.740599,0.736037,0.535796,0.711868,0.432176,0.370106,0.587994,0.912593,0.930856,0.730173,0.963025,0.160553,0.335194,0.391736,0.900907,0.779388,0.394872,0.798312,0.521949,0.047833,0.533374,0.706856,0.532818,0.710882,0.811583,0.32779,0.376657,0.398255,0.855304,0.779824,0.502315,0.332138,0.116226,0.0952284,0.0455586,0.395774,0.994736,0.63763,0.683284,0.641279,0.694887,0.971564,0.819725,0.752245,0.0275705,0.260083,0.0729322,0.240968,0.391541,0.0656087,0.530394,0.433322,0.208521,0.369577,0.0439957,0.505431,0.102893,0.0323038,0.495884,0.205348,0.256591,0.454613,0.0641093,0.550575,0.0128412,0.338699,0.0556105,0.414433,0.194767,0.354172,0.720972,0.611967,0.747226,0.934419,0.652067,0.733141,0.333035,0.000461042,0.949309,0.0820955,0.347295,0.789664,0.653471,0.936,0.596007,0.227217,0.0438275,0.32384,0.198441,0.390325,0.409671,0.224829,0.653992,0.444614,0.595468,0.0221329,0.972833,0.854493,0.180111,0.235505,0.452161,0.638838,0.453968,0.652701,0.476615,0.0534942,0.556483,0.185651,0.321986,0.888418,0.657716,0.712071,0.694652,0.477279,0.590773,0.80551,0.754562,0.65858,0.344219,0.0714906,0.879669,0.120382,0.568288,0.261307,0.049432,0.748488,0.398186,0.490645,0.108865,0.372857,0.777209,0.91293,0.354816,0.676707,0.146264,0.901493,0.833172,0.49924,0.769358,0.0299901,0.862911,0.368604,0.21665,0.553992,0.374933,0.670696,0.214809,0.491428,0.56989,0.25305,0.613519,0.697897,0.421336,0.591364,0.298633,0.492446,0.112057,0.14314,0.443329,0.0772406,0.401414,0.105073,0.756122,0.61084,0.819274,0.657018,0.376189,0.107909,0.913779,0.763009,0.508907,0.344107,0.0225625,0.482864,0.0140268,0.626505,0.441962,0.0436267,0.751753,0.520081,0.356919,0.803321,0.712288,0.770123,0.149702,0.452778,0.780168,0.759981,0.760092,0.654221,0.837934,0.502745,0.95267,0.787741,0.586227,0.965989,0.847562,0.154026,0.25225,0.508989,0.33726,0.994907,0.731684,0.691411,0.911709,0.739998,0.264538,0.315164,0.290118,0.526606,0.488772,0.547174,0.711378,0.900725,0.369828,0.212204,0.614937,0.0661697,0.804803,0.809605,0.0298766,0.519982,0.320681,0.563889,0.824224,0.0690483,0.205978,0.337003,0.547681,0.607918,0.532894,0.630892,0.0247764,0.138928,0.538855,|0.138813,0.383892,0.789176,0.709825,0.752243,0.867487,0.577004,0.0581757,0.0445433,0.405249,0.0369317,0.14767,0.540362,0.521583,0.90278,0.401558,0.521523,0.983015,0.857331,0.710515,0.979673,0.293856,0.396836,0.0500953,0.87251,0.341774,0.706094,0.368126,0.997662,0.189919,0.305121,0.625877,0.678935,0.275695,0.786043,0.672447,0.0897744,0.95336,0.941423,0.779719,0.79215,0.910878,0.0414335,0.0104339,0.678592,0.356656,0.797659,0.845084,0.0570874,0.970698,0.165738,0.163241,0.454318,0.875833,0.76926,0.39037,0.256191,0.153023,0.554367,0.22474,0.719461,0.986151,0.763204,0.576108,0.11186,0.416184,0.335547,0.620196,0.887909,0.0127071,0.688953,0.739444,0.0725459,0.580905,0.789874,0.695093,0.518946,0.631287,0.0560917,0.543342,0.586844,0.996202,0.880165,0.458836,0.660076,0.929164,0.628873,0.153021,0.717238,0.201081,0.888949,0.697538,0.870306,0.732715,0.602883,0.732964,0.4753,0.275916,0.764114,0.0723807,0.205685,0.606774,0.648889,0.976421,0.603236,0.878819,0.82805,0.448513,0.507605,0.914587,0.167359,0.517303,0.248771,0.217363,0.899364,0.298667,0.512317,0.543136,0.21964,0.397478,0.342744,0.292045,0.746383,0.218877,0.710812,0.638523,0.540232,0.58749,0.7879,0.821441,0.665539,0.998347,0.0291828,0.490303,0.832293,0.645433,0.833832,0.508339,0.485093,0.366091,0.220014,0.167644,0.14509,0.589661,0.81467,0.685437,0.851648,0.863837,0.725277,0.0171538,0.929844,0.624462,0.888598,0.293972,0.609821,0.610362,0.945833,0.662572,0.820195,0.497019,0.0911362,0.014743,0.747343,0.370464,0.448092,0.475769,0.453443,0.50163,0.0341869,0.615994,0.281567,0.0494058,0.481664,0.630062,0.743877,0.822356,0.944006,0.812005,0.337252,0.646795,0.538085,0.15625,0.774433,0.297307,0.162791,0.937673,0.500007,0.623994,0.327626,0.487407,0.513035,0.0435842,0.312709,0.663438,0.53213,0.726119,0.252761,0.0602216,0.699753,0.971988,0.565043,0.876528,0.577956,0.0957881,0.0180119,0.834221,0.416034,0.934997,0.790104,0.060317,0.85067,0.996745,0.977823,0.787012,0.523462,0.199811,0.422829,0.70563,0.842963,0.585439,0.129493,0.9811,0.592119,0.667821,0.899904,0.746884,0.440279,0.205153,0.885262,0.460285,0.555338,0.266721,0.869744,0.443138,0.616392,0.390381,0.609806,0.655533,0.208568,0.369296,0.547564,0.498227,0.477018,0.0262175,0.482787,0.164241,0.950084,0.112076,0.988019,0.96292,0.816511,0.746786,0.907124,0.893566,0.443111,0.51653,0.170805,0.634765,0.485821,0.338541,0.321471,0.0185065,0.104034,0.0580276,0.291642,0.742965,0.0416189,0.673388,0.950588,0.823841,0.553659,0.783059,0.233692,0.124265,0.558488,0.875781,0.34299,0.831025,0.741927,0.224779,0.160411,0.10388,0.543649,0.0916862,0.940351,0.469625,0.26985,0.602697,0.382044,0.46647,0.801604,0.150791,0.238098,0.0852402,0.622405,0.570237,0.276115,0.977339,0.297688,0.280418,0.529841,0.744849,0.678629,0.170816,0.560168,0.072407,0.103454,0.623852,0.880458,0.654881,0.634721,0.290576,0.926569,0.141945,0.186096,0.657389,0.112425,0.199901,0.449608,0.676574,0.642838,0.0210646,0.306303,0.288368,0.285427,0.165797,0.189389,0.275012,0.152549,0.3341,0.0236814,0.00987214,0.370758,0.0509122,0.987523,0.0177814,0.72048,0.471064,0.29331,0.911601,0.216106,0.536155,0.111771,0.453016,0.40383,0.958792,0.335458,0.153104,0.0190201,0.346936,0.13496,0.542259,0.557055,0.501258,0.441176,0.487544,0.614978,0.222397,0.138771,0.403564,0.075134,0.844201,0.645674,0.265101,0.113912,0.0905779,0.320507,0.943397,0.284676,0.912862,0.564508,0.269121,0.238686,0.114319,0.868011,0.186042,0.347356,0.295957,0.860353,0.0366471,0.265337,0.853962,0.442296,0.303238,0.38384,0.840275,0.412778,0.143724,0.102627,0.580288,0.276191,0.941902,0.578006,0.340542,0.996813,0.847117,0.284677,0.225473,0.196794,0.488074,0.937405,0.137508,0.312336,0.371452,0.788077,0.531285,0.0903938,0.553769,0.139632,0.79214,0.350118,0.684653,0.303694,0.135705,0.490837,0.119021,0.393308,0.890308,0.687256,0.442441,0.458759,0.0852639,0.0564691,0.993834,0.575396,0.656516,0.182987,0.433058,0.253044,0.561209,0.337684,0.613702,0.510835,0.936746,0.586427,0.0809319,0.124688,0.480649,0.184249,0.804769,0.111065,0.194811,0.613863,0.341758,0.273524,0.335176,0.186799,0.35569,0.192106,0.17078,0.445387,0.294174,0.862179,0.273797,0.232243,0.00927716,0.974959,0.973438,0.491089,0.635028,0.0253736,0.105475,0.170022,0.633503,0.362746,0.477299,0.800972,0.0947567,0.92676,0.777027,0.306246,0.446156,0.905515,0.930642,0.238831,0.33887,0.168918,0.619438,0.872805,0.860721,0.821166,0.841571,0.958166,0.274408,0.434692,0.971514,0.405079,0.83753,0.660592,0.705876,0.887476,0.0512136,0.372801,0.748878,0.750488,0.695208,0.554541,0.625515,0.113267,0.966318,0.13585,0.365352,0.276388,0.688097,0.141047,0.424497,0.611757,0.263344,0.647179,0.325594,0.975009,0.503854,0.154513,0.178777,0.466493,0.868447,0.625266,0.108218,0.584678,0.120817,0.234001,0.528879,0.689581,0.575133,0.522662,0.430282,0.597443,0.900494,0.287898,0.683797,0.200861,0.506025,0.301573,0.241694,0.712584,0.894109,0.475434,0.225968,0.591945,0.905849,0.240961,0.831362,0.481109,0.482482,0.949245,0.115734,0.10262,0.282583,0.0788587,0.60045,0.279944,0.831236,0.297719,0.255365,0.491159,0.20957,0.0954795,0.191053,0.558919,0.635964,0.331697,0.655711,0.716588,0.451738,0.733081,0.0943956,0.572862,0.452936,0.78917,0.248097,0.834585,0.247875,0.575659,0.888316,0.0781,0.30962,0.900077,0.0862479,0.399571,0.408404,0.342375,0.322172,0.796923,0.957117,0.454061,0.226122,0.0801855,0.451075,0.232569,0.911575,0.629226,0.353264,0.741266,0.0884135,0.823692,0.074401,0.180017,0.635327,0.420403,0.537355,0.259637,0.0684265,0.234541,0.0201967,0.140953,0.554141,0.144723,0.123827,0.0757338,0.18238,0.303318,0.766942,0.573492,0.0747175,0.932378,0.366432,0.941604,0.483834,0.532271,0.801873,0.78561,0.413541,0.403041,0.434627,0.228583,0.562883,0.313953,0.789815,0.793385,0.45763,0.350273,0.718403,0.251097,0.532834,0.665872,0.915465,0.693816,0.282469,0.127088,0.576835,0.0796633,0.204489,0.62142,0.546236,0.737472,0.852277,0.488938,0.613516,0.504264,0.575075,0.580864,0.329911,0.759493,0.435596,0.577077,0.47295,0.261167,0.368485,0.556495,0.157408,0.784603,0.53924,0.638139,0.827004,0.152883,0.748544,0.482597,0.182816,0.208945,0.613675,0.945771,0.906768,0.0216182,0.122012,0.463339,0.21691,0.511106,0.0799564,0.272567,0.443589,0.459102,0.604251,0.364144,0.809575,0.842247,0.984744,0.487671,0.379223,0.112887,0.867797,0.778084,0.743796,0.371115,0.706494,0.333318,0.0850272,0.68549,0.670509,0.899027,0.815438,0.748899,0.620674,0.422431,0.477942,0.163701,0.0750305,0.622321,0.895215,0.858131,0.942072,0.959808,0.879381,0.522998,0.893967,0.174751,0.418275,0.767223,0.494134,0.211377,0.508689,0.0187787,0.185709,0.368908,0.343412,0.407426,0.0488095,0.211607,0.679283,0.453745,0.774884,0.911194,0.945686,0.0832021,0.60251,0.287704,0.891507,0.913454,0.680484,0.932003,0.534685,0.263846,0.610611,0.899295,0.684962,0.77183,0.86072,0.977695,0.499509,0.376056,0.714645,0.0966135,0.299196,0.848469,0.186907,0.337295,0.036629,0.918524,0.928676,0.138876,0.157516,0.885535,0.732472,0.656923,0.541872,0.247239,0.824657,0.626456,0.293222,0.38524,0.525106,0.875807,0.275712,0.515428,0.474027,0.938077,0.0732265,0.235091,0.0538362,0.586496,0.141246,0.856415,0.214052,0.372226,0.195786,0.760045,0.995504,0.278552,0.516256,0.334304,0.0248967,0.346938,0.798597,0.688263,0.560661,0.266836,0.554178,0.0566622,0.759443,0.39682,0.646965,0.568164,0.406549,0.375149,0.391749,0.264604,0.845955,0.150356,0.628849,0.411402,0.404341,0.518623,0.638878,0.901282,0.421859,0.609367,0.93606,0.952685,0.562069,0.144099,0.773076,0.656944,0.899291,0.229814,0.828598,0.393739,0.197107,0.833018,0.230731,0.509636,0.733432,0.109281,0.976145,0.525434,0.964147,0.732495,0.066458,0.0829387,0.41204,0.407241,0.0208969,0.612862,0.171752,0.96855,0.794917,0.19121,0.00578666,0.314945,0.141606,0.776213,0.951543,0.578534,0.718008,0.759779,0.191107,0.851683,0.817054,0.448314,0.168646,0.768111,0.898892,0.993344,0.749466,0.374893,0.272807,0.118653,0.624929,0.0254178,0.205849,0.221092,0.684592,0.763193,0.569138,0.142641,0.544407,0.0904609,0.330425,0.754689,0.475329,0.751075,0.78895,0.743717,0.533805,0.313472,0.769671,0.723117,0.9483,0.516502,0.187317,0.521843,0.788178,0.279801,0.620117,0.707609,0.679433,0.254439,0.587303,0.0105638,0.599938,0.622821,0.659959,0.0569322,0.549382,0.00349098,0.25147,0.377521,0.9617,0.110423,0.584634,0.813228,0.6393,0.497457,0.793944,0.533046,0.628499,0.420835,0.458299,0.16802,0.780778,0.0266603,0.515921,0.320241,0.654281,0.462014,0.634094,0.686501,0.940917,0.362656,0.726844,0.0535769,0.257527,0.295716,0.441526,0.382782,0.335799,0.492526,0.18507,0.0758287,0.749766,0.867334,0.912584,0.463765,0.319894,0.737049,0.0905334,0.381793,0.427975,0.407924,0.665954,0.660777,0.61143,0.990858,0.00302899,0.338785,0.554388,0.854141,0.606085,0.5642,0.961936,0.537623,0.704991,0.282457,0.826387,0.416768,0.381152,0.919172,0.382057,0.637599,0.912691,0.420758,0.719018,0.716419,0.273322,0.512216,0.576423,0.310891,0.0832825,0.851281,0.7729,0.104853,0.0513162,0.9461,0.331124,0.13683,0.285448,0.529693,0.0262778,0.394464,0.726571,0.577065,0.39676,0.675181,0.0915728,0.00918174,0.0164129,0.616732,0.198409,0.764462,0.76687,0.593781,0.865844,|0.46924,0.0431716,0.976847,0.262906,0.996163,0.232439,0.72358,0.621628,0.69745,0.12277,0.39569,0.130832,0.561806,0.689557,0.210656,0.254662,0.0599126,0.714935,0.847605,0.936583,0.595804,0.478606,0.53663,0.869822,0.182234,0.0293152,0.0314103,0.168439,0.713076,0.445956,0.736272,0.151492,0.797952,0.211267,0.880543,0.861059,0.951594,0.435115,0.784116,0.256492,0.934344,0.834117,0.558466,0.86264,0.441693,0.931175,0.932015,0.364144,0.432882,0.557315,0.189332,0.0269113,0.0915014,0.43146,0.619077,0.203012,0.351536,0.670272,0.975205,0.607649,0.15461,0.950697,0.682107,0.205677,0.449525,0.486296,0.659158,0.227224,0.615007,0.0699309,0.779054,0.816596,0.78134,0.627031,0.361979,0.74106,0.556814,0.759232,0.702802,0.501274,0.867195,0.0774,0.893166,0.732407,0.945118,0.033605,0.426823,0.976373,0.291333,0.921953,0.196048,0.513144,0.801891,0.435012,0.950095,0.341825,0.756924,0.915409,0.190378,0.0915554,0.507898,0.442951,0.0740896,0.428997,0.801063,0.772331,0.524235,0.753139,0.0717837,0.401884,0.431586,0.485675,0.133403,0.338373,0.286195,0.959623,0.663453,0.0883272,0.338834,0.432021,0.663117,0.350777,0.000884473,0.515866,0.588938,0.833779,0.474911,0.893639,0.146974,0.29538,0.616813,0.852681,0.514547,0.941052,0.996494,0.60292,0.738864,0.35436,0.627408,0.29744,0.0267438,0.545666,0.298373,0.173483,0.731109,0.0529218,0.74557,0.663565,0.916756,0.288744,0.647442,0.782643,0.290069,0.716637,0.394415,0.455604,0.461809,0.350582,0.521089,0.0358121,0.876553,0.749502,0.408728,0.672504,0.8215,0.0925584,0.447349,0.00566256,0.67527,0.290395,0.919846,0.101172,0.358531,0.0624,0.689601,0.018472,0.80322,0.928374,0.00600576,0.844524,0.0573221,0.289664,0.881421,0.709307,0.414886,0.656582,0.720538,0.838496,0.367924,0.513738,0.0964015,0.320987,0.0328269,0.519915,0.960141,0.902111,0.24742,0.0826334,0.145617,0.0948276,0.729232,0.520456,0.810566,0.1394,0.865077,0.494204,0.562656,0.82373,0.741339,0.210146,0.218604,0.509895,0.815446,0.345647,0.866645,0.97726,0.956271,0.147169,0.245018,0.475265,0.11331,0.33642,0.997022,0.754803,0.861295,0.419064,0.00116158,0.483418,0.0828679,0.738212,0.422095,0.498611,0.0808969,0.346487,0.789325,0.0616882,0.778484,0.12929,0.699802,0.0349143,0.965845,0.780539,0.649355,0.924878,0.837584,0.0793229,0.0301005,0.108786,0.972025,0.467072,0.358806,0.465055,0.789575,0.131453,0.818229,0.049024,0.199904,0.50588,0.649057,0.340708,0.258266,0.00630558,0.706234,0.461042,0.912279,0.566096,0.250186,0.692988,0.646451,0.826599,0.519573,0.56991,0.619189,0.817908,0.911038,0.219062,0.622424,0.316949,0.643368,0.165404,0.125067,0.884673,0.0186394,0.900503,0.195336,0.184206,0.267443,0.249292,0.0076915,0.17989,0.689122,0.840505,0.833598,0.187612,0.656648,0.859457,0.702486,0.830918,0.0636632,0.389659,0.660411,0.192331,0.797675,0.449741,0.708847,0.804098,0.460717,0.499414,0.949786,0.118616,0.631666,0.336611,0.847817,0.967138,0.282284,0.0198907,0.342984,0.897,0.600538,0.549904,0.615488,0.794761,0.077217,0.3789,0.209327,0.019195,0.411842,0.553074,0.843477,0.151299,0.532061,0.737079,0.0311021,0.472607,0.760913,0.928217,0.932652,0.218677,0.546814,0.144049,0.949428,0.927567,0.36906,0.203116,0.0695783,0.268592,0.000730693,0.481438,0.782035,0.246559,0.708548,0.586297,0.0324404,0.72834,0.528106,0.406925,0.935999,0.881672,0.170103,0.631542,0.552139,0.415107,0.0436807,0.460206,0.536598,0.566034,0.426533,0.794415,0.695869,0.654333,0.920632,0.198171,0.866524,0.823449,0.617099,0.404298,0.227663,0.295959,0.377574,0.996093,0.259554,0.58089,0.880537,0.941949,0.562452,0.115205,0.772485,0.463902,0.409419,0.100592,0.407797,0.433798,0.453993,0.559804,0.179774,0.104792,0.646087,0.935117,0.238675,0.237618,0.0126866,0.735,0.798129,0.33234,0.883726,0.47389,0.280472,0.859067,0.0404859,0.864111,0.487679,0.63131,0.503573,0.503817,0.0504417,0.185965,0.101126,0.533476,0.00744402,0.572314,0.590491,0.980514,0.032942,0.528204,0.6548,0.793527,0.104782,0.579382,0.574988,0.949583,0.393287,0.506525,0.88351,0.498207,0.0920431,0.372034,0.62213,0.00239003,0.547573,0.016373,0.113978,0.623407,0.532073,0.472278,0.783696,0.61746,0.952641,0.578543,0.104069,0.688003,0.518553,0.822185,0.360488,0.384785,0.730988,0.62901,0.120024,0.0392948,0.69142,0.298074,0.951159,0.998507,0.339891,0.793569,0.465989,0.750321,0.617427,0.0572398,0.597968,0.143224,0.261041,0.205655,0.982677,0.0355042,0.045716,0.673052,0.681449,0.0806279,0.568247,0.0913537,0.826676,0.0702948,0.716793,0.518513,0.611271,0.604812,0.909788,0.536682,0.231353,0.702108,0.0997537,0.765614,0.650645,0.53357,0.881514,0.407318,0.600347,0.916241,0.536044,0.890108,0.377596,0.660819,0.176056,0.966048,0.567219,0.625031,0.410588,0.355104,0.625821,0.615339,0.946806,0.463823,0.782513,0.201265,0.273574,0.705861,0.386261,0.716294,0.81688,0.339725,0.863134,0.948648,0.360678,0.932939,0.234835,0.927536,0.513117,0.902528,0.736359,0.468572,0.0221414,0.143732,0.743971,0.414896,0.425746,0.300641,0.436112,0.523775,0.491831,0.365949,0.173339,0.623764,0.131164,0.0303514,0.226362,0.646933,0.435388,0.37073,0.109023,0.406043,0.790048,0.15319,0.635859,0.206605,0.0369127,0.0189059,0.52813,0.887319,0.0566944,0.105657,0.193959,0.982412,0.672536,0.353772,0.955678,0.837034,0.337024,0.321723,0.421469,0.609887,0.830269,0.260476,0.594723,0.659744,0.90837,0.147949,0.277034,0.972288,0.391321,0.550931,0.232727,0.541927,0.378615,0.354466,0.640091,0.0503358,0.229287,0.523107,0.688915,0.615097,0.555504,0.383299,0.200977,0.717478,0.642011,0.00641936,0.709038,0.811067,0.0310816,0.563739,0.13051,0.378984,0.252521,0.374403,0.364674,0.841699,0.362891,0.746149,0.195825,0.841606,0.258686,0.82421,0.658872,0.888387,0.311435,0.246331,0.295838,0.427943,0.522427,0.120492,0.63705,0.643466,0.967427,0.992229,0.5696,0.573395,0.869338,0.521837,0.789618,0.167011,0.430544,0.341327,0.392151,0.662499,0.260599,0.330996,0.755083,0.725933,0.787444,0.547717,0.996154,0.989763,0.785055,0.791194,0.198093,0.798915,0.913015,0.950968,0.876616,0.017252,0.0587091,0.145354,0.506917,0.139709,0.921423,0.877572,0.0484403,0.583263,0.380095,0.0568587,0.830107,0.266864,0.603144,0.185818,0.349656,0.183144,0.224357,0.330873,0.860144,0.999336,0.553888,0.348803,0.0587916,0.0189492,0.604988,0.282304,0.0956956,0.344761,0.767587,0.0814524,0.863265,0.327,0.415141,0.224791,0.873522,0.577514,0.565358,0.918147,0.519375,0.208539,0.227089,0.012054,0.737757,0.616703,0.12525,0.738272,0.621551,0.336172,0.952223,0.101245,0.961253,0.528138,0.649838,0.675068,0.737373,0.242302,0.912569,0.313253,0.71517,0.345629,0.299666,0.097163,0.991351,0.876717,0.0427211,0.932903,0.741713,0.860137,0.473939,0.998412,0.556696,0.750641,0.305784,0.321889,0.689882,0.0670742,0.724543,0.916022,0.805084,0.559775,0.886482,0.488153,0.459129,0.682677,0.386778,0.708282,0.699709,0.799826,0.283375,0.822789,0.580177,0.703323,0.49518,0.323838,0.793147,0.0247253,0.210478,0.990287,0.33397,0.616331,0.516086,0.224924,0.362204,0.350702,0.108638,0.169527,0.736507,0.343233,0.819405,0.893447,0.55196,0.105887,0.817874,0.209392,0.225651,0.464645,0.663458,0.311312,0.423852,0.404602,0.963959,0.490906,0.812196,0.936145,0.509021,0.414231,0.366894,0.409363,0.13616,0.26296,0.889557,0.568251,0.4662,0.308385,0.999666,0.155475,0.736716,0.986492,0.766541,0.850634,0.631797,0.132123,0.986427,0.6604,0.806978,0.579661,0.532772,0.832785,0.383037,0.81861,0.648326,0.921098,0.296974,0.757006,0.329328,0.31659,0.482514,0.0979657,0.919044,0.628268,0.0402621,0.765462,0.536058,0.442643,0.991722,0.907658,0.197927,0.685616,0.909574,0.990939,0.263413,0.446606,0.671911,0.134123,0.951111,0.0677502,0.734727,0.737253,0.939444,0.469503,0.732456,0.844251,0.243734,0.889778,0.80789,0.215394,0.471841,0.523561,0.39378,0.309333,0.682528,0.51734,0.858669,0.222309,0.0988612,0.860699,0.435315,0.401183,0.0794519,0.44532,0.56116,0.189751,0.449751,0.362519,0.799972,0.901101,0.783319,0.933474,0.577831,0.0576667,0.829549,0.670528,0.202273,0.110879,0.042329,0.502319,0.696057,0.65399,0.162523,0.174821,0.775803,0.279724,0.720353,0.100976,0.791189,0.413146,0.731857,0.651957,0.555775,0.223233,0.127333,0.157626,0.722176,0.403915,0.29134,0.789667,0.169215,0.703739,0.037221,0.933871,0.938268,0.142474,0.908171,0.25737,0.612068,0.907498,0.780307,0.676333,0.436081,0.591247,0.271834,0.00386518,0.676721,0.785605,0.416045,0.771897,0.479576,0.522043,0.815939,0.712524,0.106095,0.566879,0.499624,0.248041,0.690058,0.197703,0.558378,0.262535,0.829679,0.143569,0.176384,0.753445,0.868329,0.686976,0.960529,0.343662,0.915002,0.580443,0.648865,0.712351,0.432981,0.0992329,0.462685,0.554307,0.986193,0.227488,0.734524,0.192187,0.824447,0.727462,0.825548,0.897206,0.818796,0.830251,0.301266,0.6692,0.866043,0.358752,0.246821,0.859072,0.651218,0.362394,0.147766,0.382372,0.766823,0.12914,0.744053,0.101497,0.350093,0.865366,0.0324227,0.674042,0.872011,0.451749,0.961422,0.686247,0.030857,0.801939,0.811272,0.512033,0.820383,0.62114,0.195493,0.645603,0.064208,0.72817,0.176736,0.140741,0.816316,0.705389,0.653729,0.833458,0.495277,0.0289821,0.871493,0.204805,0.380218,0.72675,0.914889,0.163961,0.854511,0.568183,0.561492,0.547674,0.284388,0.853698,0.392316,0.497067,0.0695658,0.77541,|0.132514,0.905549,0.0506455,0.602697,0.438842,0.917912,0.858013,0.86538,0.335542,0.771194,0.250929,0.206087,0.938454,0.646027,0.368027,0.438514,0.196584,0.336671,0.0111732,0.767907,0.585526,0.0506669,0.813253,0.812832,0.0958974,0.422054,0.537626,0.339647,0.187624,0.616593,0.350553,0.334327,0.901705,0.350909,0.873671,0.246882,0.0054906,0.276249,0.726891,0.621148,0.681235,0.58492,0.690848,0.580359,0.912456,0.616285,0.826352,0.528568,0.0304686,0.00877631,0.371277,0.529596,0.725732,0.0580246,0.668678,0.971906,0.408338,0.407093,0.573982,0.907053,0.671678,0.635032,0.461612,0.604004,0.183083,0.626062,0.232163,0.569161,0.574897,0.869976,0.396835,0.430363,0.223479,0.559674,0.960655,0.966213,0.527085,0.688038,0.0429876,0.421147,0.561016,0.201094,0.488728,0.13928,0.865781,0.96285,0.406133,0.975944,0.749291,0.349666,0.142493,0.499087,0.140094,0.486215,0.811726,0.586239,0.074522,0.90404,0.49431,0.450503,0.556204,0.427786,0.557221,0.121672,0.931598,0.937797,0.1395,0.169932,0.338545,0.655838,0.947712,0.394331,0.343007,0.888606,0.688984,0.982529,0.983004,0.0697243,0.563495,0.851474,0.833187,0.735444,0.194673,0.0226236,0.706358,0.296232,0.40743,0.772136,0.673648,0.442186,0.973736,0.898532,0.159919,0.245084,0.705162,0.632783,0.532399,0.281164,0.237513,0.154872,0.11879,0.543209,0.348177,0.560921,0.368018,0.258775,0.663172,0.637967,0.0740905,0.0805884,0.3822,0.12697,0.669141,0.890656,0.185061,0.882505,0.0972526,0.787598,0.793545,0.590836,0.424723,0.194738,0.267468,0.457104,0.608445,0.0664096,0.645506,0.751344,0.291404,0.59427,0.174146,0.555425,0.97709,0.200702,0.231159,0.075475,0.619974,0.858376,0.13887,0.455892,0.87794,0.179704,0.377181,0.317592,0.389201,0.158104,0.634369,0.641562,0.138138,0.448846,0.329712,0.395207,0.014121,0.826845,0.24865,0.00506794,0.779139,0.0629328,0.26676,0.103001,0.687408,0.864636,0.243542,0.849052,0.832798,0.68666,0.294118,0.744198,0.338926,0.593244,0.45743,0.788108,0.464341,0.00258565,0.822908,0.869073,0.428714,0.569744,0.835952,0.316901,0.14111,0.557956,0.0901647,0.984966,0.179668,0.236163,0.361014,0.0577027,0.543516,0.141548,0.80184,0.109111,0.209661,0.889875,0.200179,0.544059,0.756762,0.231711,0.211218,0.718677,0.775937,0.682366,0.780061,0.672948,0.660276,0.900758,0.159849,0.591714,0.535309,0.984629,0.51553,0.506209,0.985123,0.476923,0.300173,0.690654,0.432829,0.940354,0.44427,0.479535,0.466699,0.241329,0.198482,0.253901,0.305385,0.153492,0.73018,0.674907,0.918952,0.603914,0.412377,0.700515,0.059001,0.387666,0.826586,0.585321,0.63257,0.0679825,0.67718,0.604913,0.951437,0.696003,0.350716,0.947348,0.377914,0.410084,0.319478,0.809083,0.908612,0.906269,0.948734,0.648939,0.25693,0.296788,0.672215,0.155996,0.0531279,0.182882,0.573946,0.496725,0.346332,0.99668,0.234755,0.0697516,0.951846,0.77843,0.256052,0.805562,0.232891,0.59627,0.145306,0.957472,0.231699,0.261012,0.502971,0.544039,0.147311,0.548791,0.869215,0.938709,0.0095951,0.391413,0.314905,0.370155,0.892039,0.597044,0.240572,0.904808,0.0446795,0.380507,0.711051,0.0696509,0.434566,0.661149,0.358678,0.977957,0.558044,0.272359,0.136496,0.237125,0.499117,0.542563,0.956218,0.731456,0.441249,0.45048,0.671336,0.217147,0.0720263,0.168732,0.142823,0.63677,0.894076,0.454202,0.381432,0.57158,0.370402,0.894187,0.899461,0.826062,0.356845,0.524847,0.554657,0.353613,0.277582,0.587017,0.551716,0.39845,0.604906,0.226802,0.00171965,0.0299596,0.59396,0.383211,0.652231,0.413047,0.402721,0.799331,0.924668,0.661766,0.777621,0.919101,0.0475684,0.0209212,0.153911,0.690924,0.604106,0.291848,0.997126,0.282152,0.789385,0.694878,0.694163,0.322285,0.769847,0.638254,0.59572,0.478471,0.0766822,0.527924,0.936716,0.429929,0.400998,0.937169,0.877632,0.352615,0.0592973,0.554892,0.319753,0.540991,0.874846,0.486563,0.297737,0.781754,0.34725,0.478011,0.784821,0.578722,0.958917,0.508797,0.121791,0.776507,0.204917,0.886384,0.0636307,0.164727,0.755129,0.919229,0.916247,0.744411,0.168996,0.578036,0.646396,0.778457,0.124747,0.132945,0.526991,0.183979,0.962807,0.55165,0.294172,0.666113,0.567889,0.600527,0.714943,0.291069,0.335209,0.61568,0.0908391,0.523243,0.493572,0.223321,0.517671,0.381884,0.493453,0.785061,0.545951,0.206233,0.261395,0.288033,0.858927,0.130403,0.509664,0.587385,0.00939071,0.831915,0.130698,0.767043,0.358515,0.989655,0.535913,0.69448,0.419603,0.924153,0.748759,0.203225,0.98118,0.859559,0.746308,0.690941,0.798296,0.724591,0.0729913,0.712422,0.0885732,0.136416,0.707001,0.437604,0.69194,0.310418,0.910229,0.226415,0.846695,0.878917,0.434766,0.891774,0.712842,0.75316,0.939676,0.351522,0.130083,0.714338,0.918905,0.903029,0.989907,0.534877,0.397962,0.87818,0.229034,0.102746,0.638773,0.201249,0.522847,0.706993,0.372372,0.83835,0.83385,0.500542,0.794071,0.759936,0.69926,0.874738,0.683001,0.593288,0.122595,0.470429,0.911176,0.365124,0.694177,0.613839,0.465151,0.262766,0.0739866,0.323324,0.449276,0.317121,0.872079,0.48497,0.568814,0.386075,0.275791,0.963815,0.17378,0.493482,0.13028,0.955571,0.589971,0.946397,0.650026,0.361451,0.425441,0.805721,0.411868,0.576775,0.00385046,0.272294,0.408694,0.103652,0.94453,0.835719,0.244051,0.796876,0.42858,0.798388,0.159392,0.924253,0.966426,0.656073,0.282834,0.226989,0.686472,0.406493,0.399878,0.698827,0.0352377,0.489843,0.769877,0.30476,0.940173,0.946558,0.954457,0.31684,0.0847113,0.497529,0.493577,0.969731,0.576052,0.0972756,0.560806,0.00359994,0.731906,0.875416,0.980111,0.0320182,0.623811,0.221626,0.896585,0.551742,0.594481,0.901579,0.669715,0.847254,0.524055,0.231106,0.986932,0.679434,0.145274,0.785891,0.739279,0.24468,0.934088,0.16163,0.933707,0.746077,0.744413,0.3566,0.524036,0.880178,0.518928,0.321664,0.0173324,0.596893,0.113335,0.870817,0.57959,0.0563364,0.767342,0.274555,0.379666,0.855903,0.845411,0.892884,0.885751,0.491113,0.0688339,0.486886,0.829005,0.249247,0.185247,0.42718,0.639081,0.713173,0.0846603,0.6582,0.88427,0.895282,0.769751,0.271034,0.192211,0.731173,0.0498644,0.825155,0.481924,0.491794,0.322014,0.621382,0.0687334,0.140975,0.597076,0.636388,0.854503,0.597395,0.732492,0.0821236,0.658302,0.639513,0.0249718,0.320557,0.24854,0.192422,0.935191,0.387966,0.046095,0.403028,0.501175,0.01824,0.342074,0.537075,0.356773,0.309884,0.774225,0.360817,0.133608,0.0500126,0.550684,0.582726,0.213976,0.276356,0.0901911,0.363219,0.620019,0.33028,0.222307,0.371688,0.402881,0.873666,0.243235,0.909705,0.0880916,0.00808239,0.667622,0.815043,0.713171,0.605716,0.334936,0.366003,0.90058,0.223197,0.620258,0.450303,0.596789,0.893688,0.51378,0.744972,0.140044,0.568531,0.519497,0.169983,0.79917,0.803749,0.249257,0.0818104,0.140893,0.361896,0.55958,0.431489,0.771073,0.139615,0.637399,0.306004,0.985607,0.262236,0.800773,0.730436,0.0667063,0.614853,0.879342,0.39581,0.444629,0.337661,0.455998,0.28367,0.950137,0.771716,0.199025,0.432159,0.469618,0.115007,0.0845894,0.208651,0.0428522,0.203118,0.0477905,0.372265,0.552406,0.361744,0.110147,0.401083,0.336698,0.460646,0.588778,0.828142,0.910775,0.000369549,0.880821,0.162103,0.396205,0.639156,0.584333,0.982628,0.358292,0.0292302,0.328104,0.565638,0.113321,0.611752,0.599262,0.373951,0.173963,0.73013,0.0391285,0.970564,0.72614,0.0461684,0.62198,0.799044,0.445977,0.264026,0.931437,0.211334,0.542046,0.511074,0.553476,0.185698,0.0186647,0.747715,0.339074,0.47805,0.8527,0.865301,0.888366,0.45678,0.215475,0.718133,0.181592,0.23218,0.0593953,0.726439,0.82787,0.375834,0.0484151,0.838947,0.697193,0.305496,0.89039,0.377161,0.925524,0.588087,0.646132,0.627587,0.61806,0.407414,0.179661,0.577554,0.105845,0.318666,0.424769,0.356344,0.581491,0.395486,0.241867,0.479893,0.115625,0.785782,0.674798,0.854507,0.555844,0.581825,0.794193,0.298231,0.0777236,0.93159,0.78034,0.979212,0.997349,0.0550589,0.691569,0.935717,0.720174,0.673343,0.342696,0.856639,0.92436,0.60259,0.794585,0.893297,0.269696,0.698683,0.654038,0.265802,0.652479,0.725468,0.126186,0.947403,0.609895,0.324945,0.643554,0.863169,0.815077,0.625526,0.063707,0.557336,0.735915,0.310813,0.598116,0.426232,0.890136,0.83399,0.291134,0.959588,0.0650588,0.978662,0.636923,0.415981,0.152259,0.736893,0.491113,0.470099,0.0486317,0.650387,0.136084,0.963208,0.86635,0.69544,0.67563,0.986021,0.0313623,0.701989,0.366632,0.788117,0.42789,0.865663,0.660976,0.170342,0.574162,0.952571,0.598215,0.752121,0.770937,0.471098,0.195955,0.39774,0.398231,0.166431,0.167931,0.572313,0.348491,0.333027,0.232306,0.194978,0.0781853,0.721175,0.87068,0.192493,0.847834,0.252087,0.463866,0.57655,0.574957,0.453278,0.0612875,0.760312,0.850039,0.154249,0.374617,0.932792,0.355529,0.396598,0.289357,0.290537,0.507247,0.662107,0.968409,0.422249,0.174101,0.695837,0.319861,0.0830981,0.604403,0.308719,0.560642,0.802786,0.784416,0.209686,0.630345,0.843101,0.673284,0.99624,0.0757561,0.91937,0.433583,0.219428,0.809757,0.933767,0.119715,0.769834,0.358728,0.179731,0.486093,0.888239,0.194795,0.236851,0.47783,0.550058,0.734419,0.0477753,0.35992,0.877917,0.510341,0.162142,0.314827,0.16778,0.178144,0.760261,0.9068,0.163873,0.665993,0.444835,0.294572,0.0368887,0.369297,0.402642,0.369512,0.744497,0.830224,0.456462,0.637432,0.570561,0.0475348,0.441477,|0.884194,0.743781,0.996139,0.150487,0.209632,0.0659428,0.626259,0.070759,0.501134,0.453014,0.706385,0.517752,0.0461615,0.668951,0.423299,0.610414,0.968903,0.593531,0.0308712,0.618539,0.839107,0.74027,0.0334913,0.770734,0.109468,0.0856225,0.168164,0.195976,0.750821,0.893131,0.765694,0.345614,0.755848,0.864239,0.464792,0.953157,0.270519,0.932849,0.122016,0.74855,0.276721,0.875841,0.186494,0.644119,0.18269,0.447297,0.396602,0.750958,0.855952,0.0690216,0.00267285,0.602092,0.344828,0.689497,0.129056,0.308889,0.969585,0.198194,0.750147,0.625216,0.0995597,0.240753,0.844915,0.85082,0.208996,0.274706,0.0199854,0.27608,0.219629,0.373886,0.806727,0.0515531,0.312484,0.684535,0.437381,0.365749,0.0355133,0.52075,0.297859,0.04099,0.833933,0.335826,0.226973,0.988279,0.592587,0.893691,0.778202,0.81328,0.254155,0.151832,0.730396,0.496353,0.391249,0.12655,0.746329,0.0220064,0.579678,0.403042,0.322076,0.562085,0.432287,0.980097,0.702872,0.0184751,0.539574,0.421864,0.802533,0.817904,0.427511,0.22334,0.660024,0.761134,0.76931,0.220345,0.0874919,0.944328,0.368136,0.214017,0.939489,0.989741,0.826268,0.422599,0.528546,0.636578,0.190321,0.158022,0.576322,0.843834,0.549404,0.406744,0.0412476,0.214674,0.463758,0.3968,0.488367,0.765794,0.0118715,0.46014,0.180744,0.459036,0.278744,0.851804,0.931878,0.911492,0.306654,0.207488,0.10145,0.908016,0.0476075,0.567573,0.618218,0.345662,0.923974,0.454225,0.579647,0.720029,0.64684,0.486881,0.220224,0.760729,0.361501,0.208925,0.0518166,0.91972,0.310214,0.255739,0.421854,0.0431753,0.316333,0.485809,0.243377,0.770001,0.392867,0.285858,0.977565,0.742641,0.701138,0.976912,0.119231,0.601321,0.116628,0.928674,0.428068,0.819369,0.389298,0.160759,0.994391,0.812533,0.17109,0.901155,0.607873,0.775,0.701721,0.203006,0.538392,0.725719,0.165536,0.394863,0.692638,0.431705,0.879411,0.520641,0.425407,0.200076,0.130738,0.613047,0.919863,0.988864,0.6139,0.72223,0.600075,0.865536,0.414333,0.619834,0.137621,0.240906,0.312904,0.871478,0.867774,0.62948,0.599936,0.464876,0.888325,0.241372,0.249221,0.954792,0.283752,0.728957,0.859951,0.515041,0.614667,0.85365,0.147662,0.00398558,0.21998,0.218118,0.563367,0.355167,0.478956,0.89887,0.773787,0.335584,0.913616,0.683987,0.39486,0.138393,0.93672,0.878165,0.760681,0.400395,0.549977,0.0899746,0.835118,0.300694,0.572699,0.86332,0.144137,0.398107,0.177507,0.118652,0.227314,0.319359,0.26266,0.449826,0.382742,0.957781,0.970547,0.536364,0.665794,0.470891,0.922722,0.729266,0.587047,0.0407254,0.849342,0.223567,0.132034,0.107591,0.40665,0.215288,0.407761,0.759337,0.94611,0.124371,0.10761,0.133552,0.703265,0.590117,0.624052,0.630497,0.499724,0.870062,0.802372,0.102078,0.724826,0.673914,0.654497,0.350398,0.580341,0.801837,0.857698,0.429825,0.0270694,0.631338,0.771449,0.58433,0.821072,0.0823181,0.557511,0.406009,0.578358,0.189157,0.593615,0.875298,0.0480672,0.0741272,0.758532,0.439263,0.132658,0.838129,0.816959,0.880059,0.792671,0.146527,0.396883,0.657271,0.932369,0.963941,0.436134,0.572234,0.916613,0.93647,0.823449,0.127023,0.52832,0.988265,0.323249,0.565994,0.933719,0.897753,0.756024,0.463216,0.774043,0.861735,0.348552,0.632498,0.550437,0.982408,0.826812,0.907089,0.0165814,0.870488,0.310691,0.638309,0.180034,0.170302,0.667156,0.589916,0.495452,0.344989,0.972345,0.809407,0.585923,0.677322,0.957347,0.512798,0.764575,0.0489916,0.772462,0.768955,0.850452,0.127337,0.512338,0.867681,0.252499,0.130266,0.176276,0.590747,0.559743,0.625164,0.26459,0.706949,0.21442,0.805244,0.0619598,0.170137,0.0515905,0.0503542,0.524789,0.872586,0.838487,0.375462,0.225093,0.988462,0.817538,0.121412,0.14273,0.118728,0.864098,0.279112,0.784689,0.807964,0.0380182,0.193419,0.918409,0.43696,0.83869,0.0369232,0.456408,0.183684,0.715947,0.38377,0.378593,0.397759,0.247049,0.916422,0.318747,0.682666,0.182139,0.777729,0.37737,0.795652,0.516831,0.415313,0.502554,0.648669,0.531861,0.0573905,0.0617664,0.616567,0.816521,0.583405,0.12481,0.179882,0.962274,0.881644,0.0741999,0.136862,0.183349,0.258343,0.0385121,0.634604,0.763084,0.777773,0.27329,0.532346,0.541012,0.411881,0.104693,0.391701,0.859542,0.793532,0.727223,0.601569,0.140617,0.0114495,0.0281075,0.574204,0.027192,0.688496,0.400442,0.65927,0.393369,0.463346,0.68078,0.616817,0.100761,0.00458044,0.639557,0.0216676,0.941161,0.941073,0.461899,0.642142,0.328956,0.0383551,0.150361,0.95318,0.664669,0.346994,0.916408,0.683952,0.978009,0.11777,0.394501,0.413113,0.258443,0.344106,0.0897742,0.593403,0.168991,0.0420492,0.295164,0.784875,0.818417,0.811078,0.774347,0.279702,0.647987,0.334977,0.512583,0.919952,0.941812,0.996836,0.95342,0.242242,0.478405,0.020633,0.851122,0.690347,0.383384,0.676682,0.669243,0.311743,0.692567,0.567571,0.43038,0.832815,0.23133,0.121369,0.813975,0.631692,0.740403,0.484001,0.407899,0.749601,0.660255,0.663997,0.91912,0.473087,0.598286,0.383282,0.57768,0.927324,0.688602,0.249276,0.365309,0.7862,0.814318,0.473325,0.99329,0.2648,0.958984,0.50701,0.487105,0.121733,0.628695,0.360519,0.337003,0.488296,0.315347,0.694971,0.79456,0.657464,0.902192,0.117599,0.0354574,0.773732,0.564276,0.432498,0.273082,0.815847,0.111261,0.928089,0.850492,0.495241,0.205122,0.749186,0.0809418,0.071346,0.506665,0.821881,0.318944,0.844718,0.44478,0.909615,0.840384,0.574452,0.490007,0.658115,0.160972,0.78545,0.474996,0.856654,0.660564,0.346854,0.0802247,0.910227,0.778007,0.284605,0.372493,0.756133,0.11235,0.295397,0.152585,0.656145,0.841516,0.662349,0.302194,0.0115998,0.982576,0.0218567,0.658842,0.946744,0.740797,0.623955,0.922527,0.26169,0.815918,0.524739,0.0788422,0.719355,0.610014,0.735942,0.0121311,0.630246,0.194613,0.966641,0.976342,0.704938,0.342226,0.130174,0.477265,0.589975,0.415786,0.45756,0.938696,0.872866,0.969975,0.692829,0.850246,0.640035,0.944355,0.400911,0.147034,0.493822,0.260574,0.94381,0.339032,0.91339,0.904855,0.688595,0.320128,0.288285,0.439035,0.646076,0.258917,0.444891,0.663952,0.315229,0.947126,0.677131,0.568685,0.24223,0.865794,0.734801,0.162511,0.668292,0.0913368,0.256187,0.197377,0.569669,0.45989,0.586904,0.659889,0.244238,0.270617,0.90612,0.164097,0.451189,0.197022,0.642911,0.253246,0.897265,0.755404,0.0556087,0.540804,0.0217057,0.411427,0.607234,0.488567,0.594537,0.533239,0.717085,0.0427535,0.0519991,0.279677,0.128498,0.404488,0.0789814,0.184621,0.176984,0.517876,0.564634,0.472641,0.731012,0.907959,0.188542,0.736075,0.930383,0.431133,0.0695541,0.565898,0.168075,0.67951,0.271439,0.861341,0.157421,0.344754,0.894235,0.136931,0.809248,0.69607,0.620663,0.97037,0.886327,0.0389908,0.311186,0.885846,0.170478,0.0134838,0.746755,0.881651,0.712198,0.892832,0.612123,0.304447,0.162425,0.157038,0.104842,0.452563,0.603509,0.851903,0.900834,0.160726,0.294638,0.947046,0.152674,0.00874001,0.272805,0.47999,0.318327,0.00521415,0.0222067,0.471794,0.603877,0.140843,0.404407,0.466851,0.093509,0.405638,0.0501052,0.567829,0.331787,0.346634,0.426215,0.931313,0.607786,0.103541,0.875651,0.470012,0.449644,0.2493,0.755625,0.910134,0.355597,0.790339,0.542449,0.973161,0.681188,0.423563,0.582479,0.211829,0.472773,0.857868,0.165796,0.310039,0.0860459,0.617298,0.571816,0.137771,0.661456,0.424864,0.550958,0.304904,0.0902884,0.246719,0.485403,0.893024,0.680434,0.695336,0.727412,0.364455,0.968103,0.361925,0.647627,0.0525149,0.228001,0.00141472,0.0945669,0.942008,0.33849,0.787371,0.428925,0.990254,0.985342,0.719724,0.370722,0.00159842,0.202447,0.858765,0.0404431,0.707168,0.968477,0.849189,0.91328,0.911634,0.0997885,0.156072,0.276616,0.937024,0.21654,0.558879,0.18382,0.976345,0.130538,0.139834,0.82482,0.105025,0.703795,0.529572,0.177349,0.00674695,0.989907,0.648991,0.362582,0.20001,0.137445,0.237646,0.630583,0.337131,0.0225469,0.295938,0.572917,0.988143,0.496656,0.812556,0.881475,0.700963,0.1473,0.249134,0.0766276,0.963962,0.00415587,0.0771556,0.954219,0.366791,0.0150626,0.639848,0.796657,0.894638,0.734337,0.559972,0.82594,0.00474906,0.928652,0.462741,0.00433791,0.956179,0.653815,0.88015,0.395911,0.925518,0.910049,0.715529,0.753869,0.734436,0.65473,0.915624,0.52308,0.338065,0.422011,0.736175,0.0819969,0.98648,0.405181,0.416135,0.522663,0.920523,0.713798,0.67164,0.413034,0.132687,0.103886,0.360923,0.148535,0.315711,0.0883734,0.120811,0.404646,0.386313,0.0481709,0.385283,0.807528,0.274146,0.766035,0.75795,0.31575,0.336737,0.328463,0.268435,0.918879,0.180538,0.739333,0.474362,0.696649,0.303743,0.963688,0.900519,0.126624,0.0468426,0.680351,0.965594,0.99199,0.00565952,0.203549,0.598881,0.638009,0.182822,0.0627497,0.0776798,0.0962276,0.304294,0.120727,0.7988,0.246279,0.611278,0.153187,0.270844,0.978805,0.462619,0.747008,0.0450553,0.674162,0.626638,0.250339,0.258286,0.98336,0.379103,0.654432,0.226355,0.887538,0.93017,0.0493363,0.576451,0.80802,0.712869,0.413589,0.0113693,0.250843,0.684712,0.240745,0.997583,0.435773,0.0659066,0.722803,0.772385,0.103932,0.975568,0.747309,0.813598,0.754421,0.808881,0.278654,0.0402843,0.574307,0.808417,0.263819,0.261966,0.203124,0.449808,0.477326,0.779764,0.872186,0.587855,0.661647,0.694825,0.441712,0.530253,0.413845,0.468316,0.957333,0.342877,0.71387,0.934499,0.740366,0.268756,0.469453,0.240902,0.425045,|0.948757,0.922902,0.478172,0.517995,0.508006,0.00848657,0.209522,0.967816,0.538487,0.0453574,0.42034,0.967995,0.812744,0.231885,0.353973,0.591736,0.512955,0.249167,0.238668,0.505853,0.467024,0.0610277,0.737241,0.759529,0.0022434,0.727879,0.0259852,0.447742,0.0589966,0.607996,0.518764,0.89846,0.0600587,0.0678567,0.333161,0.697014,0.716343,0.0561663,0.920279,0.811771,0.14475,0.334633,0.790773,0.978562,0.561733,0.825779,0.590272,0.661615,0.650446,0.158684,0.126954,0.338005,0.650951,0.97682,0.866813,0.205299,0.934462,0.513521,0.478063,0.195849,0.136908,0.982717,0.667418,0.187221,0.516316,0.169896,0.59747,0.108774,0.585264,0.155041,0.55857,0.771283,0.850261,0.965729,0.98414,0.973454,0.813869,0.479658,0.0470344,0.0497416,0.101583,0.365194,0.668932,0.687717,0.0443749,0.224868,0.278541,0.457202,0.21233,0.265802,0.222421,0.366459,0.616792,0.409732,0.998525,0.562799,0.101132,0.984767,0.272998,0.11049,0.581245,0.0851436,0.0619249,0.315843,0.930851,0.690452,0.187519,0.138516,0.113328,0.00101233,0.260196,0.781669,0.944328,0.974527,0.594207,0.0500534,0.978353,0.560518,0.122853,0.932058,0.691525,0.00672656,0.476627,0.419657,0.1847,0.776503,0.0741571,0.289247,0.0977805,0.951711,0.147157,0.681826,0.526539,0.460196,0.0728724,0.366918,0.639694,0.127765,0.668709,0.161423,0.755869,0.861811,0.66503,0.0140043,0.122369,0.545961,0.977769,0.220767,0.825149,0.523912,0.609511,0.410523,0.952365,0.858499,0.699487,0.259247,0.681148,0.606769,0.251864,0.152657,0.902471,0.230888,0.150105,0.163759,0.830993,0.50942,0.74069,0.0708439,0.156057,0.137431,0.379528,0.849206,0.610004,0.506604,0.446311,0.423483,0.677728,0.557666,0.551243,0.177845,0.854381,0.754735,0.337789,0.662484,0.596584,0.788598,0.280742,0.953463,0.64723,0.829762,0.698063,0.783823,0.447476,0.871213,0.89957,0.177083,0.519488,0.98736,0.00266272,0.839382,0.482525,0.103059,0.0637222,0.378356,0.390044,0.0570739,0.832763,0.7585,0.139084,0.874135,0.386097,0.715188,0.812602,0.395937,0.401589,0.200015,0.792784,0.918824,0.803834,0.0889747,0.53012,0.0483178,0.838558,0.387106,0.304567,0.572298,0.625061,0.22418,0.75402,0.324032,0.362882,0.201977,0.368291,0.747955,0.642881,0.402864,0.331957,0.253014,0.865029,0.975661,0.057734,0.357082,0.765689,0.230121,0.458389,0.0578832,0.487756,0.35958,0.77914,0.294905,0.000139475,0.14608,0.139392,0.129564,0.568904,0.941034,0.356535,0.28288,0.819068,0.374115,0.827296,0.993523,0.897443,0.369037,0.851105,0.341579,0.490948,0.677667,0.600272,0.186923,0.596806,0.243178,0.445615,0.0182683,0.298049,0.293363,0.842265,0.952141,0.591864,0.0845852,0.390182,0.90934,0.258725,0.544096,0.34648,0.57043,0.0174858,0.43887,0.954391,0.924371,0.127568,0.380571,0.741527,0.1979,0.649418,0.511483,0.954827,0.693003,0.0314164,0.123733,0.0326199,0.374915,0.572449,0.271433,0.945504,0.544748,0.49766,0.126641,0.861606,0.94975,0.0678625,0.624058,0.583065,0.454286,0.86288,0.674115,0.802603,0.743658,0.375742,0.0844358,0.619771,0.452642,0.348407,0.553428,0.0202221,0.937984,0.88046,0.635886,0.196081,0.541328,0.865895,0.772324,0.339472,0.831231,0.379306,0.717228,0.981036,0.324307,0.308522,0.200768,0.67943,0.85373,0.85373,0.244992,0.0480608,0.903754,0.243798,0.647802,0.923991,0.391103,0.661226,0.491543,0.262,0.848945,0.0652483,0.257427,0.517384,0.67397,0.0178608,0.101196,0.720152,0.813966,0.732124,0.698063,0.519492,0.83592,0.452924,0.194087,0.318955,0.572971,0.482944,0.2125,0.251691,0.65381,0.278223,0.30204,0.394318,0.1849,0.401413,0.686526,0.315323,0.356209,0.987824,0.222538,0.936451,0.513711,2.08616e-05,0.751773,0.539641,0.143721,0.437617,0.942861,0.523726,0.289603,0.483186,0.690951,0.379321,0.879411,0.478997,0.53639,0.242607,0.340922,0.134155,0.345103,0.230318,0.801277,0.558432,0.839172,0.59734,0.0127293,0.385933,0.96623,0.796207,0.47126,0.00427657,0.907727,0.0600465,0.990336,0.75651,0.52938,0.173604,0.838695,0.73418,0.246891,0.356784,0.765648,0.232798,0.409855,0.554539,0.0401845,0.579522,0.466879,0.0609829,0.600337,0.324883,0.339677,0.03381,0.872389,0.096878,0.311929,0.957165,0.675603,0.752881,0.558118,0.706962,0.765919,0.211323,0.313464,0.207004,0.835837,0.669881,0.557032,0.582475,0.792924,0.277413,0.124147,0.0228985,0.88469,0.317684,0.308135,0.872214,0.624756,0.491973,0.307273,0.23763,0.100439,0.555691,0.693987,0.00936168,0.402196,0.555607,0.951623,0.306894,0.871801,0.0386783,0.355208,0.446948,0.81118,0.597902,0.156723,0.870658,0.853484,0.500581,0.212927,0.55106,0.223495,0.0693576,0.389638,0.860326,0.935951,0.550122,0.325201,0.569049,0.549357,0.63736,0.809721,0.959601,0.807846,0.433785,0.376614,0.206956,0.441466,0.827552,0.132274,0.777485,0.316548,0.226264,0.829058,0.19276,0.0794892,0.3846,0.255731,0.163858,0.0656437,0.596167,0.526132,0.0950719,0.0902969,0.46174,0.0075292,0.286253,0.484601,0.787224,0.530337,0.138161,0.204973,0.681532,0.738452,0.46983,0.771913,0.90152,0.436385,0.0250438,0.785654,0.146161,0.000998735,0.57078,0.199194,0.0850112,0.390519,0.641604,0.188518,0.655134,0.709702,0.45461,0.39914,0.903875,0.862349,0.817046,0.647655,0.101582,0.471979,0.0631858,0.886702,0.92865,0.732921,0.0502095,0.477567,0.563249,0.834859,0.383408,0.548553,0.879076,0.745218,0.869198,0.412715,0.826227,0.315467,0.634234,0.189142,0.486152,0.909658,0.569994,0.545452,0.642567,0.208499,0.915499,0.732032,0.625845,0.549384,0.482251,0.0281361,0.379188,0.375632,0.534415,0.711602,0.614753,0.692749,0.953428,0.403184,0.437755,0.331828,0.82119,0.867826,0.187482,0.865162,0.33145,0.238615,0.541386,0.495108,0.269877,0.857477,0.311922,0.692659,0.0698046,0.02227,0.103024,0.626696,0.285364,0.137361,0.866993,0.0964162,0.113004,0.507249,0.769574,0.0991633,0.100348,0.802199,0.688648,0.992618,0.963566,0.637318,0.0698017,0.269515,0.296406,0.755041,0.383377,0.352268,0.91611,0.251212,0.351888,0.858621,0.832051,0.628168,0.334369,0.218665,0.33084,0.549735,0.0291126,0.906084,0.295489,0.573413,0.155592,0.478874,0.907665,0.931037,0.876538,0.465029,0.35512,0.78222,0.0698292,0.250157,0.559885,0.984816,0.43956,0.695525,0.403416,0.605435,0.138013,0.0867233,0.200418,0.538598,0.883842,0.471491,0.692632,0.505289,0.797211,0.657598,0.726643,0.948491,0.0838477,0.640666,0.903838,0.484364,0.152398,0.265411,0.112297,0.168188,0.2476,0.691921,0.121657,0.00441486,0.946379,0.0835266,0.0570108,0.90324,0.246812,0.829046,0.48693,0.208156,0.321766,0.869972,0.219935,0.65258,0.0144007,0.93801,0.73204,0.948878,0.210721,0.834886,0.457173,0.673245,0.797644,0.742571,0.660522,0.149014,0.208812,0.19235,0.395438,0.135144,0.883685,0.704461,0.290247,0.840318,0.876029,0.490452,0.482802,0.0923917,0.194027,0.392259,0.330257,0.61005,0.882263,0.298808,0.269477,0.798662,0.687232,0.682343,0.399396,0.000191569,0.449389,0.262182,0.917333,0.430407,0.667389,0.466696,0.822554,0.553513,0.569912,0.706006,0.394002,0.109036,0.354406,0.503904,0.708564,0.962583,0.428702,0.54715,0.433306,0.129915,0.703822,0.407153,0.625811,0.547488,0.724019,0.495891,0.456349,0.875483,0.58028,0.38965,0.329609,0.728339,0.245746,0.356297,0.893011,0.908506,0.540948,0.373396,0.529109,0.0188915,0.105287,0.793216,0.572058,0.655194,0.783936,0.448617,0.154361,0.606076,0.356818,0.730573,0.0609579,0.809063,0.000432134,0.152746,0.112467,0.116611,0.636865,0.624429,0.472869,0.193142,0.457648,0.634425,0.54389,0.655528,0.35801,0.459322,0.3678,0.141361,0.123327,0.935832,0.227512,0.0901729,0.834464,0.00400668,0.200939,0.624557,0.860393,0.607008,0.536371,0.085756,0.730447,0.693504,0.92941,0.770118,0.116914,0.398014,0.444317,0.191655,0.0614006,0.57008,0.987395,0.532725,0.337653,0.517669,0.46625,0.248135,0.868572,0.961603,0.709951,0.833962,0.459077,0.242126,0.631619,0.805845,0.2894,0.17946,0.557256,0.591192,0.0516702,0.0585108,0.706273,0.764845,0.72016,0.851499,0.367051,0.36984,0.718751,0.941815,0.72304,0.556244,0.291575,0.15146,0.189741,0.621464,0.0520141,0.483791,0.639595,0.5471,0.599364,0.710291,0.812693,0.470914,0.999301,0.771388,0.156823,0.409132,0.612572,0.881315,0.119812,0.465857,0.398672,0.4396,0.775908,0.912015,0.396229,0.789594,0.321036,0.0956889,0.843892,0.361684,0.424059,0.315999,0.731397,0.751671,0.180456,0.983024,0.688705,0.582636,0.817333,0.198452,0.276785,0.876869,0.048362,0.262234,0.397357,0.590519,0.779935,0.570652,0.319346,0.585027,0.0685545,0.919799,0.312318,0.770572,0.265111,0.937746,0.566987,0.752882,0.818718,0.545106,0.755124,0.77658,0.335469,0.419353,0.00221431,0.216188,0.129392,0.054221,0.737364,0.919539,0.867518,0.651832,0.132064,0.734941,0.794032,0.426996,0.477826,0.633917,0.181644,0.418403,0.99132,0.911806,0.432725,0.627945,0.834844,0.535019,0.0654275,0.596529,0.528503,0.653576,0.555257,0.350258,0.456599,0.0422466,0.234174,0.341621,0.545985,0.0907784,0.756111,0.42454,0.725916,0.280109,0.510457,0.0382908,0.443333,0.80105,0.299712,0.0789872,0.307883,0.544021,0.162491,0.159848,0.169159,0.127973,0.75446,0.558759,0.13958,0.437873,0.542059,0.0369152,0.789179,0.645038,0.0274833,0.54654,0.134438,0.240773,0.788515,0.134104,0.611188,0.530094,0.850707,0.852925,0.924383,0.471449,0.862989,0.779086,0.128617,0.431451,0.603294,0.00279385,0.978507,0.968867,0.503859,0.949513,0.705289,0.28887,0.218674,0.389944,0.103663,0.101429,|0.101513,0.692611,0.20527,0.384956,0.168055,0.63171,0.526578,0.0984598,0.362834,0.589113,0.0565117,0.244961,0.34673,0.633763,0.72023,0.186911,0.811887,0.0237045,0.1197,0.947044,0.94079,0.00487101,0.517557,0.539356,0.109755,0.227632,0.713418,0.877593,0.82338,0.222551,0.980576,0.364008,0.768373,0.00621396,0.677958,0.357991,0.457865,0.209218,0.0211762,0.720665,0.568231,0.199748,0.336847,0.756088,0.409585,0.546322,0.204928,0.388817,0.186449,0.867008,0.333977,0.756447,0.48352,0.0700142,0.696218,0.736696,0.0604115,0.519376,0.95251,0.556561,0.286717,0.357927,0.967914,0.0693282,0.974674,0.942697,0.773968,0.818599,0.118841,0.169789,0.278313,0.0737273,0.979788,0.854353,0.101061,0.646346,0.538689,0.611326,0.513153,0.176419,0.486596,0.209784,0.104292,0.384191,0.511614,0.63613,0.494168,0.62992,0.877506,0.021194,0.248298,0.801361,0.391817,0.604922,0.684877,0.732215,0.77899,0.0578051,0.348137,0.118981,0.761,0.0673989,0.231237,0.911605,0.215589,0.293181,0.952709,0.408116,0.804804,0.226236,0.601766,0.939823,0.652954,0.958863,0.364538,0.615386,0.0170367,0.995201,0.491291,0.443822,0.727533,0.970379,0.821866,0.240582,0.291227,0.153509,0.406717,0.210116,0.421087,0.28465,0.262913,0.207014,0.745068,0.798232,0.24939,0.288917,0.470046,0.143456,0.28348,0.484253,0.235909,0.0509239,0.903977,0.305923,0.815256,0.951747,0.652609,0.960747,0.592536,0.30516,0.295801,0.502222,0.118099,0.0204133,0.727555,0.693983,0.498492,0.88388,0.150015,0.648521,0.91618,0.499013,0.245182,0.776021,0.668871,0.631804,0.567087,0.0726872,0.361221,0.824931,0.987037,0.746427,0.00305927,0.654709,0.321222,0.0057416,0.888998,0.795423,0.650024,0.65496,0.341004,0.71614,0.0342124,0.470802,0.388898,0.862424,0.170471,0.158011,0.705102,0.26647,0.308219,0.882844,0.418293,0.631281,0.182202,0.976813,0.379635,0.125695,0.459493,0.574752,0.114504,0.0582691,0.382279,0.321345,0.925859,0.953209,0.289836,0.285069,0.212451,0.23388,0.0185812,0.561937,0.618597,0.146632,0.649861,0.0217824,0.576655,0.936273,0.623653,0.537488,0.774809,0.138071,0.880022,0.664718,0.64452,0.508393,0.374905,0.88622,0.703834,0.202893,0.222253,0.533749,0.559764,0.902053,0.443622,0.0721795,0.772292,0.0765754,0.645533,0.628713,0.787414,0.120523,0.237356,0.376598,0.0935303,0.422098,0.893098,0.419985,0.807665,0.212301,0.919226,0.469887,0.111977,0.45618,0.379075,0.776692,0.133989,0.0479758,0.244576,0.0211303,0.13079,0.892511,0.274867,0.54772,0.870485,0.412091,0.833044,0.419774,0.0488802,0.256883,0.410829,0.0211821,0.19498,0.128999,0.755757,0.894409,0.712917,0.733422,0.717262,0.00309861,0.891127,0.527615,0.835152,0.985035,0.905008,0.655333,0.595629,0.122557,0.905896,0.154652,0.818127,0.759416,0.127455,0.296178,0.955402,0.788616,0.704664,0.353042,0.302059,0.454254,0.414066,0.964704,0.959235,0.898346,0.714433,0.257832,0.286747,0.143574,0.603375,0.898406,0.807772,0.444721,0.781082,0.0954033,0.480106,0.250961,0.405092,0.222678,0.138385,0.0721385,0.736969,0.198819,0.940714,0.244156,0.279231,0.702891,0.724676,0.0423208,0.840984,0.606142,0.522843,0.896181,0.423861,0.184279,0.586975,0.16991,0.780854,0.818001,0.0793088,0.278445,0.365141,0.0555596,0.196274,0.907566,0.884182,0.648082,0.980168,0.375992,0.153726,0.078781,0.473952,0.3487,0.517898,0.623656,0.476233,0.0935649,0.427927,0.809976,0.88426,0.286566,0.234771,0.300476,0.583335,0.617768,0.210088,0.692661,0.251501,0.996895,0.500851,0.172597,0.617377,0.364256,0.49644,0.664905,0.0523092,0.391789,0.515697,0.53601,0.992442,0.659412,0.0114529,0.473,0.992135,0.434739,0.0639436,0.967949,0.384092,0.469635,0.215907,0.342416,0.000169873,0.495407,0.811082,0.41535,0.184963,0.637812,0.744873,0.122152,0.0913282,0.371084,0.264728,0.270157,0.664155,0.850473,0.538791,0.40381,0.333291,0.811769,0.240603,0.253239,0.0285206,0.781701,0.620683,0.73074,0.184631,0.0498952,0.230461,0.564894,0.514104,0.841639,0.715773,0.806364,0.44722,0.326968,0.163449,0.813242,0.771989,0.795196,0.846271,0.528389,0.594903,0.8456,0.828651,0.956053,0.348694,0.193217,0.891602,0.560638,0.881381,0.736238,0.996884,0.975839,0.619994,0.656648,0.863782,0.997985,0.181914,0.862317,0.798949,0.0667073,0.0547035,0.327845,0.451984,0.170405,0.169032,0.638642,0.106043,0.885662,0.56633,0.627999,0.320989,0.381396,0.178812,0.890502,0.179999,0.164425,0.680528,0.770186,0.229297,0.850983,0.77137,0.0264455,0.506481,0.0513589,0.910079,0.597388,0.645643,0.582629,0.907997,0.256982,0.107088,0.913822,0.838563,0.767657,0.849492,0.878878,0.410525,0.246901,0.187153,0.972492,0.0105473,0.167302,0.81388,0.691397,0.548069,0.556026,0.00685138,0.224216,0.624106,0.303418,0.79792,0.178175,0.0635809,0.512282,0.36833,0.786958,0.116171,0.38978,0.319989,0.61361,0.163094,0.0688881,0.0553972,0.511725,0.667771,0.49797,0.434249,0.455076,0.655385,0.188982,0.276269,0.293336,0.992127,0.91664,0.932122,0.467658,0.748181,0.612528,0.0797547,0.361638,0.118407,0.925085,0.428002,0.857752,0.196808,0.417086,0.189869,0.657661,0.243314,0.875672,0.220758,0.453832,0.436083,0.467071,0.929738,0.134105,0.510931,0.320432,0.17776,0.969636,0.550791,0.539276,0.290682,0.413343,0.638729,0.621071,0.822348,0.970663,0.176548,0.263622,0.0348986,0.0898447,0.136026,0.482718,0.422924,0.576633,0.665959,0.936363,0.990844,0.913273,0.030637,0.921743,0.230237,0.312753,0.825079,0.344039,0.573494,0.965448,0.138981,0.668988,0.229179,0.0235943,0.837552,0.892527,0.953994,0.401489,0.14252,0.904394,0.773941,0.381673,0.734777,0.901569,0.277018,0.569488,0.706784,0.0915574,0.903521,0.223505,0.564072,0.684569,0.738333,0.0394534,0.519563,0.555814,0.482241,0.01353,0.819626,0.0134808,0.139739,0.812618,0.11937,0.0380261,0.876947,0.577984,0.639587,0.109961,0.499961,0.479158,0.145572,0.104217,0.93355,0.16447,0.251643,0.342313,0.854532,0.250608,0.19215,0.385039,0.426863,0.735585,0.828766,0.710841,0.555128,0.143709,0.845941,0.361867,0.0483533,0.93023,0.21064,0.817849,0.909629,0.280193,0.685648,0.760425,0.328554,0.916314,0.471915,0.759343,0.0839556,0.460623,0.62845,0.888272,0.498126,0.475033,0.549848,0.87172,0.121655,0.950175,0.262403,0.442461,0.624241,0.166897,0.305601,0.264154,0.493211,0.383326,0.329257,0.620749,0.427231,0.700399,0.759199,0.587685,0.932354,0.231402,0.541333,0.124216,0.847931,0.115272,0.399507,0.619096,0.840629,0.826791,0.148554,0.93811,0.546065,0.928363,0.921564,0.0128233,0.0490851,0.826731,0.834031,0.774615,0.209615,0.472262,0.658864,0.785852,0.947598,0.622065,0.177441,0.733487,0.690868,0.963149,0.402433,0.0793125,0.584356,0.676941,0.511259,0.29101,0.1634,0.815187,0.0848293,0.147106,0.836419,0.583245,0.0127767,0.10214,0.790889,0.81105,0.999743,0.594563,0.389157,0.561614,0.589489,0.668601,0.984776,0.253794,0.273456,0.948448,0.778727,0.00780815,0.451021,0.186033,0.704963,0.00423938,0.65645,0.344482,0.0867063,0.893246,0.211422,0.2394,0.0765803,0.457153,0.469032,0.476326,0.975479,0.616437,0.1866,0.733262,0.799063,0.335127,0.334367,0.825876,0.0338453,0.126776,0.718626,0.495219,0.252631,0.550783,0.933037,0.47211,0.934384,0.394167,0.231172,0.348896,0.998022,0.982624,0.36115,0.462922,0.950807,0.898618,0.236528,0.235168,0.806465,0.372293,0.0649294,0.25561,0.702591,0.487589,0.453053,0.98954,0.976163,0.680397,0.505902,0.902948,0.549606,0.628407,0.197374,0.724051,0.362436,0.78378,0.483319,0.562902,0.778435,0.190534,0.288781,0.653152,0.872998,0.509664,0.949825,0.852918,0.271565,0.11343,0.411169,0.306224,0.117598,0.267842,0.863894,0.755613,0.754076,0.892373,0.959503,0.175077,0.0163336,0.816706,0.126084,0.00571501,0.752383,0.908461,0.335296,0.191983,0.103622,0.171143,0.98537,0.510562,0.749499,0.647397,0.229061,0.238661,0.421275,0.934951,0.104902,0.986284,0.611978,0.379066,0.295694,0.155947,0.334246,0.904953,0.223356,0.567223,0.527817,0.240783,0.755171,0.69565,0.977442,0.795359,0.586656,0.914486,0.198435,0.443938,0.510774,0.467514,0.488803,0.933721,0.857349,0.0240777,0.0670438,0.237091,0.399748,0.141867,0.97727,0.807884,0.0154873,0.225869,0.114134,0.864411,0.0612446,0.0170762,0.930563,0.220583,0.424056,0.0518967,0.563968,0.94599,0.209686,0.812365,0.501377,0.580722,0.146382,0.735148,0.535971,0.163165,0.021621,0.239133,0.237885,0.601099,0.160533,0.320623,0.243822,0.0564072,0.814994,0.217473,0.367615,0.966718,0.562341,0.179348,0.187173,0.636692,0.910515,0.581033,0.249834,0.614048,0.461313,0.905002,0.372966,0.577204,0.219301,0.683559,0.314378,0.324356,0.254162,0.973177,0.0455338,0.442964,0.664549,0.475527,0.606243,0.147615,0.852954,0.451193,0.320669,0.562839,0.206224,0.924042,0.944493,0.650424,0.906658,0.473168,0.461763,0.000363052,0.693525,0.984802,0.131667,0.644308,0.258975,0.305282,0.109327,0.354306,0.366719,0.183184,0.163848,0.352907,0.0119984,0.244936,0.601704,0.921887,0.191938,0.276376,0.838297,0.598711,0.35009,0.192659,0.825461,0.0646318,0.106338,0.372482,0.0876983,0.29668,0.659969,0.539897,0.983191,0.171154,0.193107,0.755843,0.416713,0.393496,0.357202,0.825285,0.329345,0.835978,0.0534618,0.390624,0.899297,0.940148,0.477901,0.281911,0.0969266,0.509893,0.0120038,0.718528,0.570928,0.651943,0.319072,0.652717,0.272044,0.524338,0.419551,0.533652,0.959636,0.585981,0.204139,0.601008,0.984851,0.570477,0.785524,0.546043,0.72543,0.249189,0.943314,0.129336,|0.661715,0.160358,0.465942,0.138415,0.753913,0.304429,0.588186,0.869296,0.779437,0.742355,0.916939,0.144904,0.493271,0.133605,0.594232,0.869933,0.949631,0.851922,0.959061,0.490723,0.949433,0.43921,0.975508,0.847101,0.316558,0.669641,0.533116,0.136279,0.163615,0.568633,0.119551,0.868868,0.496078,0.24343,0.851807,0.360121,0.150121,0.90547,0.635981,0.630063,0.73172,0.625689,0.46657,0.791502,0.812132,0.4158,0.901443,0.292035,0.846036,0.67561,0.0563723,0.465216,0.522918,0.418005,0.0445348,0.4693,0.510228,0.365903,0.118233,0.660285,0.897687,0.0829216,0.709684,0.550645,0.840274,0.881404,0.754315,0.211647,0.0903742,0.641907,0.526826,0.773696,0.253823,0.433171,0.261517,0.808229,0.509982,0.776958,0.771702,0.493321,0.681931,0.0272367,0.101,0.791817,0.205235,0.400788,0.524786,0.877922,0.489441,0.110492,0.0895919,0.759277,0.613282,0.924157,0.150473,0.597228,0.548153,0.649832,0.450445,0.42507,0.735218,0.271432,0.655649,0.5815,0.233681,0.425059,0.351172,0.341503,0.311646,0.0304096,0.462131,0.715708,0.467392,0.388667,0.039998,0.516431,0.0669129,0.187234,0.912501,0.89718,0.393543,0.626203,0.712638,0.0813622,0.777183,0.662204,0.719637,0.785046,0.82459,0.347541,0.869516,0.241986,0.841081,0.06399,0.233293,0.871666,0.384574,0.966193,0.413056,0.240246,0.788218,0.184834,0.503717,0.339992,0.173743,0.519387,0.700296,0.432171,0.462719,0.525007,0.319187,0.609491,0.729923,0.316756,0.924691,0.13226,0.10528,0.8558,0.598709,0.986501,0.517821,0.986519,0.87738,0.772437,0.611037,0.804927,0.980144,0.190154,0.456723,0.62561,0.437936,0.982796,0.677749,0.122558,0.412585,0.105443,0.745908,0.703721,0.734537,0.291798,0.849482,0.694603,0.0415705,0.321565,0.453555,0.318001,0.471913,0.193983,0.0356542,0.472338,0.0884488,0.312498,0.516578,0.0608711,0.246468,0.755247,0.0969477,0.211673,0.400229,0.393577,0.833919,0.842317,0.319344,0.96801,0.232228,0.871477,0.401353,0.431979,0.226147,0.303165,0.839896,0.124056,0.907338,0.931289,0.699054,0.342111,0.573528,0.213613,0.145497,0.747256,0.14825,0.497834,0.693441,0.0594751,0.841678,0.751021,0.599662,0.83559,0.129493,0.527661,0.181713,0.0558301,0.45951,0.996999,0.168028,0.253597,0.322599,0.743082,0.219285,0.406105,0.0933326,0.61218,0.659919,0.743575,0.765702,0.851104,0.0616171,0.147145,0.954002,0.342651,0.878505,0.285892,0.679353,0.477711,0.873096,0.843521,0.165383,0.579925,0.348595,0.668199,0.0999143,0.235535,0.98735,0.722703,0.689144,0.572907,0.57653,0.0706658,0.487108,0.263696,0.847693,0.276586,0.70026,0.59137,0.431577,0.726124,0.564069,0.88561,0.935531,0.423772,0.483815,0.409008,0.295242,0.475181,0.546406,0.964243,0.880168,0.48601,0.777561,0.65738,0.909563,0.35338,0.083479,0.0303654,0.875968,0.116675,0.539884,0.493601,0.929761,0.527979,0.198704,0.584351,0.510456,0.524574,0.779337,0.490415,0.190241,0.734729,0.0411867,0.902916,0.806503,0.139536,0.444464,0.428446,0.666092,0.830468,0.282736,0.578734,0.687267,0.577802,0.942261,0.239789,0.241803,0.142566,0.725624,0.73911,0.104211,0.493033,0.0943915,0.730129,0.615054,0.569104,0.138156,0.075617,0.502796,0.711118,0.45589,0.165587,0.136046,0.269239,0.933403,0.0355467,0.753231,0.952397,0.124956,0.4393,0.184414,0.0878816,0.158568,0.74349,0.834229,0.906181,0.976184,0.353789,0.120976,0.725967,0.87167,0.21158,0.699599,0.025235,0.968042,0.265513,0.970145,0.640804,0.697911,0.489345,0.0213423,0.750506,0.275566,0.584848,0.865987,0.0531473,0.74062,0.622567,0.940438,0.765879,0.80212,0.37899,0.706503,0.858324,0.586431,0.335554,0.111371,0.786866,0.690555,0.456287,0.0880778,0.344444,0.686384,0.601728,0.444519,0.17004,0.0851164,0.596085,0.532328,0.213467,0.887954,0.0895311,0.0812654,0.218973,0.0214451,0.571119,0.670298,0.732722,0.899881,0.673412,0.159666,0.151354,0.313712,0.00753337,0.618997,0.837381,0.960319,0.0484285,0.301318,0.137947,0.997153,0.784043,0.594998,0.73682,0.501831,0.407529,0.113669,0.8544,0.747624,0.0288708,0.0152571,0.722486,0.138808,0.149138,0.558119,0.574524,0.931349,0.97502,0.829927,0.867048,0.166572,0.662977,0.584851,0.072212,0.530869,0.803584,0.159897,0.0567965,0.169583,0.695932,0.637409,0.585298,0.920176,0.832022,0.904741,0.085528,0.567108,0.260853,0.348931,0.623039,0.499467,0.248024,0.585397,0.938832,0.176132,0.181295,0.105733,0.571845,0.628533,0.923883,0.847691,0.359708,0.575441,0.0652385,0.0653616,0.643047,0.0219842,0.783611,0.829598,0.715746,0.153375,0.645418,0.675213,0.577808,0.0520326,0.0169811,0.174032,0.000596702,0.029071,0.576792,0.375288,0.301672,0.753017,0.132499,0.176658,0.0189377,0.679819,0.387745,0.178075,0.574849,0.312324,0.850277,0.831754,0.000167847,0.79301,0.935032,0.699531,0.543774,0.129472,0.247356,0.715504,0.302405,0.972348,0.0851273,0.861338,0.39603,0.427175,0.427477,0.635776,0.112971,0.806172,0.862825,0.864241,0.397972,0.516121,0.740761,0.30126,0.602726,0.822715,0.595728,0.885681,0.412143,0.231455,0.28671,0.488608,0.915641,0.102017,0.861451,0.179471,0.248138,0.853894,0.176895,0.636492,0.78458,0.226628,0.821676,0.0187097,0.799795,0.194821,0.877178,0.756588,0.520598,0.823011,0.168234,0.129608,0.899087,0.356853,0.610401,0.747327,0.222991,0.280212,0.515634,0.773582,0.623923,0.0216656,0.147139,0.750021,0.252832,0.433189,0.901488,0.550223,0.615744,0.56579,0.00106329,0.363539,0.511656,0.512247,0.447756,0.652297,0.0336349,0.340745,0.100487,0.690547,0.716415,0.704071,0.369408,0.929474,0.800645,0.915697,0.219038,0.932266,0.975981,0.583875,0.504966,0.492758,0.00134534,0.00666589,0.520496,0.720409,0.709701,0.346502,0.331805,0.938547,0.242839,0.24261,0.0305462,0.668498,0.71746,0.520956,0.588302,0.853165,0.194443,0.682274,0.961101,0.861572,0.542306,0.558072,0.348397,0.635378,0.468107,0.865784,0.00251526,0.188613,0.893933,0.340636,0.195745,0.815877,0.811447,0.52432,0.877429,0.965444,0.0412598,0.157184,0.224054,0.778621,0.260196,0.872607,0.236108,0.752439,0.803931,0.200658,0.972171,0.987178,0.463328,0.128739,0.866285,0.403977,0.133074,0.324916,0.346157,0.167556,0.690884,0.912715,0.102215,0.495003,0.853676,0.177496,0.197695,0.70463,0.460913,0.536212,0.0227907,0.607167,0.946471,0.701196,0.285089,0.994503,0.12322,0.546659,0.719425,0.284242,0.600745,0.776805,0.485413,0.856076,0.420117,0.611037,0.204546,0.731347,0.735979,0.583308,0.976577,0.690951,0.507875,0.0558502,0.659948,0.416604,0.695246,0.815352,0.96992,0.749694,0.790892,0.456623,0.265338,0.99723,0.345502,0.130558,0.610613,0.229411,0.712464,0.126302,0.32555,0.4627,0.262106,0.471059,0.889312,0.340457,0.303277,0.199951,0.222842,0.81849,0.0460362,0.898376,0.52262,0.277294,0.486475,0.466887,0.519842,0.601499,0.680847,0.0752108,0.961871,0.955962,0.858249,0.9046,0.733301,0.487466,0.699536,0.676305,0.655157,0.542025,0.355994,0.213861,0.614096,0.220645,0.671718,0.123457,0.670221,0.886862,0.944626,0.181923,0.872669,0.0134367,0.326554,0.449457,0.896699,0.417458,0.246647,0.798535,0.171187,0.887466,0.718389,0.115621,0.137059,0.161636,0.120019,0.112897,0.571941,0.415985,0.212746,0.0178329,0.914813,0.311443,0.513223,0.767886,0.546661,0.621595,0.981283,0.542783,0.137029,0.501776,0.373139,0.755157,0.657808,0.656755,0.242689,0.425253,0.692246,0.332526,0.434201,0.8879,0.554416,0.310916,0.353648,0.0348223,0.515504,0.444564,0.454269,0.431554,0.128744,0.910824,0.703802,0.628017,0.233672,0.54774,0.671127,0.863765,0.979606,0.854468,0.925453,0.0374864,0.379305,0.479073,0.630641,0.662756,0.423234,0.440332,0.647286,0.929407,0.0507869,0.670464,0.636249,0.111408,0.480995,0.652744,0.410337,0.0806296,0.900311,0.157998,0.990678,0.308165,0.197663,0.15933,0.816082,0.536659,0.829761,0.661719,0.444678,0.059075,0.682796,0.360954,0.627769,0.759125,0.287103,0.612755,0.198176,0.297932,0.415709,0.822922,0.43824,0.330995,0.584214,0.998967,0.558622,0.073341,0.548872,0.62786,0.602555,0.798636,0.259246,0.262727,0.417008,0.221433,0.0436652,0.763734,0.235729,0.970039,0.427435,0.406102,0.811559,0.668573,0.409865,0.446434,0.105046,0.0779698,0.462514,0.170815,0.685502,0.127477,0.89096,0.361391,0.83282,0.855111,0.617276,0.818574,0.544086,0.131941,0.38145,0.975791,0.263313,0.14736,0.868146,0.615184,0.480544,0.0189633,0.29415,0.617352,0.729624,0.37216,0.617914,0.242003,0.0499814,0.143314,0.0050419,0.817662,0.739721,0.26941,0.865085,0.313966,0.293538,0.920628,0.0651736,0.899765,0.321609,0.805404,0.360519,0.941561,0.093024,0.362738,0.266765,0.615526,0.484906,0.386899,0.0874193,0.568993,0.0560644,0.979836,0.99208,0.544293,0.572922,0.0888391,0.639758,0.628911,0.529885,0.861199,0.368565,0.754139,0.986746,0.0167896,0.830844,0.181428,0.124948,0.765966,0.982674,0.896871,0.705167,0.543575,0.691416,0.102561,0.0603145,0.784401,0.893822,0.709731,0.439293,0.828707,0.516248,0.163466,0.0670234,0.750637,0.572244,0.129231,0.507385,0.751469,0.00404018,0.244407,0.709819,0.70951,0.0235161,0.131852,0.831636,0.998792,0.733864,0.792922,0.850378,0.956033,0.271837,0.273708,0.754314,0.943045,0.822869,0.13249,0.722949,0.616323,0.941455,0.565212,0.317897,0.698535,0.730604,0.869065,0.282636,0.325497,0.221388,0.695146,0.381706,0.655809,0.858971,0.0465719,0.47253,0.683355,0.178517,0.538387,0.551041,0.903461,0.203097,0.952781,0.542741,0.563445,0.0441055,0.184392,0.474584,0.323036,0.20127,0.977628,0.847856,|0.500122,0.642266,0.771124,0.273017,0.527499,0.651781,0.301368,0.923376,0.754111,0.440161,0.505559,0.440165,0.916748,0.140119,0.515773,0.815853,0.842412,0.838056,0.184133,0.00845683,0.831559,0.896997,0.560898,0.0611001,0.309628,0.492002,0.496172,0.691126,0.86461,0.718172,0.835664,0.849206,0.467992,0.338847,0.638125,0.00185722,0.496351,0.309823,0.223777,0.316511,0.834851,0.721864,0.987601,0.302071,0.472099,0.10728,0.221137,0.00187379,0.196498,0.000601172,0.559416,0.759345,0.373958,0.932871,0.0525432,0.123504,0.325524,0.949011,0.538278,0.871046,0.269261,0.560772,0.982849,0.922068,0.756154,0.577189,0.472136,0.54648,0.458675,0.187459,0.980874,0.77419,0.383366,0.504452,0.968158,0.499189,0.0628464,0.759931,0.518296,0.157663,0.963946,0.157183,0.0622291,0.228141,0.895758,0.247411,0.229507,0.542258,0.457181,0.341886,0.0407839,0.0808505,0.94711,0.854081,0.803651,0.57225,0.889644,0.261821,0.394233,0.796918,0.124832,0.834011,0.215535,0.930981,0.824337,0.608885,0.857042,0.999314,0.0126905,0.469964,0.787953,0.519903,0.598975,0.532221,0.0512019,0.330664,0.161514,0.753627,0.936335,0.509688,0.0112752,0.491575,0.0324486,0.402912,0.428859,0.97524,0.809431,0.35535,0.589345,0.0296212,0.781886,0.793658,0.12985,0.318447,0.577545,0.605019,0.731818,0.412953,0.783495,0.422505,0.366896,0.203499,0.945414,0.306046,0.550852,0.37809,0.735678,0.813773,0.427321,0.370398,0.894056,0.586677,0.311941,0.697563,0.43752,0.562316,0.749986,0.85383,0.389135,0.305983,0.862424,0.343072,0.792035,0.80377,0.0569727,0.0581573,0.260485,0.0309236,0.246404,0.167752,0.561768,0.96772,0.815272,0.980155,0.693146,0.592157,0.28115,0.100257,0.213073,0.277562,0.867761,0.497586,0.133817,0.0141807,0.784976,0.904061,0.102764,0.270836,0.826549,0.493618,0.22598,0.518666,0.844925,0.896096,0.89283,0.269981,0.456108,0.0475478,0.81019,0.0681267,0.878342,0.812424,0.620708,0.311283,0.66689,0.375753,0.0703571,0.685001,0.147914,0.918252,0.456643,0.675359,0.899509,0.206668,0.779672,0.101925,0.18163,0.959733,0.463581,0.440077,0.270524,0.389253,0.124849,0.771196,0.575543,0.654179,0.329207,0.231873,0.35567,0.405588,0.388635,0.830356,0.735013,0.000204802,0.277304,0.454467,0.682287,0.367352,0.600011,0.284096,0.425441,0.778201,0.525143,0.94774,0.181029,0.620249,0.409718,0.400961,0.521231,0.3103,0.361046,0.678888,0.335468,0.635193,0.950884,0.200676,0.67591,0.305361,0.940491,0.293631,0.331958,0.906597,0.0602029,0.399492,0.0602105,0.093177,0.0717869,0.863756,0.206784,0.38902,0.987912,0.00107795,0.00515193,0.0407492,0.694528,0.29537,0.560832,0.221531,0.923231,0.242102,0.972671,0.501789,0.210394,0.47752,0.64576,0.711112,0.603413,0.0309108,0.605486,0.524379,0.55019,0.384477,0.249009,0.866141,0.901969,0.979643,0.459832,0.242376,0.313139,0.744695,0.829311,0.637125,0.728471,0.458928,0.553625,0.157318,0.132233,0.338891,0.960516,0.114668,0.272064,0.203381,0.690808,0.560811,0.240795,0.734931,0.230457,0.260047,0.245776,0.414126,0.411053,0.685724,0.131775,0.828209,0.55052,0.960952,0.893868,0.78152,0.223975,0.440466,0.481639,0.562413,0.784799,0.604886,0.406169,0.832235,0.432516,0.307513,0.445784,0.916471,0.669697,0.937533,0.889945,0.181124,0.740576,0.754083,0.839032,0.13622,0.447358,0.936911,0.398945,0.657286,0.609362,0.752754,0.514679,0.48315,0.425729,0.855769,0.127068,0.840474,0.516601,0.524897,0.219279,0.194877,0.938186,0.19941,0.998544,0.615967,0.228574,0.635485,0.256798,0.839543,0.464185,0.74137,0.970225,0.705225,0.803453,0.767885,0.768431,0.579771,0.155649,0.442215,0.949884,0.170008,0.522054,0.148109,0.0816779,0.528159,0.681018,0.0357884,0.749964,0.694118,0.762098,0.211133,0.179186,0.541648,0.353966,0.532368,0.283285,0.524934,0.0700611,0.782317,0.138439,0.845535,0.0094285,0.330064,0.540325,0.112868,0.174507,0.919895,0.916312,0.290509,0.633811,0.166868,0.495996,0.636545,0.155728,0.78741,0.233989,0.721648,0.301322,0.954881,0.449175,0.658001,0.814416,0.288729,0.149732,0.0395486,0.967227,0.990656,0.469809,0.0506439,0.755972,0.134238,0.977315,0.932288,0.896481,0.227776,0.970429,0.0686494,0.480149,0.172644,0.732357,0.124235,0.436153,0.662195,0.415589,0.0814592,0.561037,0.00572646,0.200938,0.603034,0.658734,0.75247,0.396698,0.1619,0.954026,0.227112,0.139689,0.235763,0.308259,0.883097,0.166845,0.934301,0.927031,0.952997,0.869229,0.834413,0.411754,0.336464,0.863209,0.178978,0.0347708,0.441849,0.790446,0.895355,0.0266268,0.704547,0.384143,0.90554,0.0455949,0.110014,0.0730119,0.627266,0.0533262,0.00797099,0.297416,0.949573,0.805205,0.673436,0.81352,0.270066,0.546519,0.891277,0.894335,0.471461,0.809515,0.484645,0.284381,0.148076,0.287543,0.496581,0.70886,0.694035,0.796908,0.296436,0.740008,0.0161298,0.34406,0.409375,0.783489,0.189114,0.462026,0.175945,0.948958,0.70221,0.964815,0.094291,0.859455,0.867327,0.0355902,0.25732,0.449481,0.818778,0.717256,0.976707,0.99763,0.692293,0.715761,0.309717,0.186145,0.0947334,0.688998,0.886007,0.483566,0.223607,0.83005,0.460898,0.349553,0.776169,0.0562329,0.936461,0.878697,0.556679,0.574754,0.316041,0.337465,0.493291,0.809436,0.982474,0.606027,0.877887,0.862866,0.322156,0.658906,0.96589,0.719347,0.320548,0.587403,0.0777147,0.443712,0.674277,0.552739,0.947911,0.0965862,0.449052,0.321465,0.232598,0.490888,0.0538772,0.952082,0.484489,0.300008,0.700232,0.0020889,0.515629,0.621578,0.293134,0.554868,0.060523,0.833977,0.362701,0.934689,0.492878,0.446223,0.289368,0.105171,0.12858,0.252476,0.961192,0.473722,0.860651,0.650688,0.333328,0.851984,0.709772,0.749226,0.745453,0.967508,0.628008,0.338305,0.3947,0.915285,0.801723,0.472163,0.788114,0.609707,0.355263,0.186294,0.317224,0.0653547,0.0191522,0.220356,0.943153,0.05246,0.192922,0.648312,0.895874,0.807908,0.803979,0.700173,0.857085,0.979838,0.71775,0.723585,0.693172,0.396972,0.791837,0.793594,0.710861,0.059374,0.31644,0.110434,0.591866,0.440531,0.915755,0.3078,0.937802,0.914903,0.440471,0.0690992,0.190268,0.365253,0.0789558,0.415923,0.303739,0.439458,0.530448,0.367624,0.678347,0.754423,0.790435,0.983513,0.689211,0.920427,0.0716612,0.760064,0.422221,0.444046,0.494955,0.562716,0.387143,0.837221,0.131476,0.182003,0.730207,0.460029,0.587848,0.279877,0.107653,0.0810131,0.465838,0.777487,0.817808,0.677695,0.188547,0.407836,0.774778,0.780089,0.847524,0.279607,0.509125,0.424205,0.956665,0.347481,0.203768,0.351261,0.255175,0.692356,0.0830158,0.624583,0.224301,0.188232,0.765704,0.574424,0.667942,0.553122,0.648445,0.408159,0.438211,0.584158,0.102683,0.270599,0.0212098,0.30805,0.815674,0.196916,0.434119,0.518351,0.0731041,0.423034,0.287164,0.767576,0.207724,0.0280979,0.150749,0.217783,0.139791,0.67789,0.244471,0.875274,0.0444622,0.491121,0.535911,0.402186,0.224904,0.214242,0.0334671,0.361587,0.6668,0.678018,0.399623,0.810407,0.844585,0.46105,0.451793,0.175588,0.719435,0.0394352,0.46978,0.346852,0.0443279,0.0526567,0.00416875,0.505497,0.526833,0.0354489,0.918664,0.818934,0.99469,0.103464,0.304744,0.9614,0.158417,0.912516,0.764777,0.538126,0.336634,0.872846,0.830909,0.213063,0.782273,0.311189,0.59519,0.705494,0.969169,0.97414,0.00719112,0.123219,0.565405,0.950475,0.604509,0.274132,0.959296,0.409225,0.935037,0.775496,0.910937,0.0267105,0.76093,0.333126,0.780804,0.0282568,0.285507,0.575095,0.243082,0.240034,0.839785,0.697967,0.747693,0.921897,0.554421,0.181212,0.543858,0.274802,0.0727201,0.727643,0.477237,0.988497,0.0947046,0.434023,0.969155,0.344303,0.130272,0.750934,0.59278,0.62177,0.104892,0.540693,0.158074,0.655173,0.618286,0.638002,0.671123,0.724328,0.718745,0.204128,0.94087,0.0607526,0.826115,0.922546,0.571943,0.244003,0.721792,0.0532208,0.762555,0.721806,0.145737,0.879988,0.298896,0.807775,0.279755,0.705457,0.415004,0.100691,0.0816689,0.612697,0.719081,0.864686,0.190966,0.844307,0.370422,0.704673,0.278035,0.942531,0.484801,0.495135,0.792832,0.67,0.751834,0.936743,0.90378,0.295853,0.933931,0.496456,0.818039,0.661242,0.221802,0.603763,0.935412,0.928228,0.816976,0.237728,0.67373,0.231695,0.244575,0.565904,0.855388,0.808218,0.0668744,0.923442,0.103083,0.668168,0.299906,0.667195,0.66164,0.618092,0.574532,0.150889,0.70527,0.512548,0.174672,0.47143,0.473979,0.0255294,0.0680614,0.681494,0.385565,0.584549,0.453936,0.795555,0.348754,0.90699,0.311631,0.197945,0.635111,0.736942,0.2934,0.459793,0.60481,0.795767,0.365511,0.469004,0.495679,0.746789,0.412064,0.0691876,0.586198,0.824054,0.140407,0.506747,0.724561,0.172451,0.312015,0.188836,0.760476,0.0850589,0.218662,0.875139,0.396677,0.676317,0.964678,0.0878257,0.231183,0.810531,0.699753,0.432419,0.730919,0.738151,0.838021,0.153865,0.843545,0.309848,0.525326,0.604439,0.544024,0.425073,0.871081,0.948051,0.974766,0.9721,0.362158,0.376484,0.0511243,0.095122,0.364215,0.0769038,0.0203984,0.725251,0.0456904,0.943118,0.0824363,0.790177,0.234197,0.450989,0.39531,0.951804,0.63585,0.152124,0.532574,0.00374925,0.629247,0.188641,0.456661,0.25374,0.790392,0.670532,0.160051,0.0123543,0.744744,0.765511,0.740867,0.70866,0.185462,0.284291,0.747514,0.176184,0.411211,0.746917,0.33554,0.543066,0.661428,0.174229,0.755054,0.417379,0.165235,0.789067,0.870387,0.0905741,0.225038,0.540586,0.638086,0.209483,0.83397,0.862645,0.675393,0.872937,0.995651,0.464373,0.215467,|0.900545,0.747169,0.389773,0.132446,0.620888,0.547695,0.0919732,0.819275,0.780236,0.425134,0.885243,0.402206,0.769696,0.182791,0.994651,0.701384,0.703243,0.613694,0.979225,0.0477037,0.0851484,0.895263,0.201322,0.758487,0.939056,0.789649,0.939795,0.448127,0.998358,0.0424768,0.0559617,0.478889,0.146832,0.806723,0.48725,0.430286,0.0874954,0.995503,0.722269,0.147396,0.525495,0.661517,0.00698513,0.519596,0.748928,0.611305,0.350526,0.780855,0.861754,0.0734431,0.821632,0.12622,0.928077,0.770583,0.91766,0.433333,0.674261,0.0601355,0.497987,0.223632,0.000655711,0.244658,0.60981,0.224348,0.092662,0.655935,0.644108,0.632105,0.424957,0.325353,0.754494,0.334557,0.926216,0.339869,0.612481,0.976373,0.456092,0.425333,0.677278,0.476721,0.126061,0.155218,0.679903,0.435713,0.0147789,0.389854,0.54245,0.532651,0.54494,0.909666,0.699938,0.348477,0.519568,0.388493,0.972898,0.341232,0.00159073,0.60854,0.479887,0.838562,0.0685547,0.124239,0.722082,0.0662206,0.802782,0.764111,0.0547648,0.175515,0.578623,0.591444,0.304411,0.978374,0.944246,0.0650483,0.517242,0.653734,0.444134,0.453558,0.913038,0.173682,0.134881,0.550757,0.733766,0.28098,0.107128,0.649153,0.385504,0.744218,0.2591,0.814071,0.0682397,0.376583,0.430075,0.567344,0.0855727,0.860955,0.453388,0.239021,0.899609,0.59666,0.362896,0.296744,0.344673,0.826554,0.58161,0.851924,0.793617,0.962572,0.169032,0.365831,0.545197,0.40131,0.62417,0.282631,0.519298,0.970242,0.734027,0.838555,0.81372,0.045247,0.0900844,0.745739,0.791392,0.816938,0.253174,0.498204,0.275505,0.0753121,0.339439,0.0158823,0.0253015,0.884506,0.378603,0.820748,0.339564,0.671067,0.193798,0.416166,0.507638,0.746776,0.574914,0.780517,0.251526,0.841815,0.148628,0.901492,0.248905,0.642848,0.981509,0.200644,0.233016,0.0516306,0.824706,0.345112,0.521359,0.35415,0.886036,0.157841,0.369647,0.652313,0.868955,0.361551,0.66234,0.928171,0.489248,0.986437,0.773832,0.323203,0.966085,0.576603,0.753395,0.636747,0.138003,0.721833,0.752897,0.67167,0.947392,0.23818,0.0869521,0.770723,0.927017,0.972705,0.238113,0.410683,0.977191,0.587984,0.60951,0.279246,0.00279564,0.162799,0.289881,0.154796,0.458007,0.228895,0.504523,0.0674182,0.154602,0.674249,0.775231,0.251461,0.273538,0.862678,0.340685,0.207964,0.257378,0.653798,0.36055,0.660965,0.155096,0.632165,0.682647,0.664013,0.490463,0.961165,0.701054,0.556457,0.0223224,0.633414,0.996851,0.795165,0.803713,0.511542,0.160111,0.369867,0.542396,0.695827,0.091424,0.888033,0.886253,0.995174,0.731914,0.0648444,0.817881,0.116238,0.96776,0.282437,0.876665,0.715785,0.862403,0.0110285,0.272829,0.402286,0.396171,0.544111,0.274731,0.583895,0.75494,0.429798,0.668355,0.37502,0.0783513,0.0800903,0.121967,0.854908,0.131328,0.674682,0.0207829,0.46831,0.655883,0.847666,0.362536,0.434685,0.318793,0.295865,0.314013,0.113981,0.0303873,0.559646,0.22712,0.637295,0.943113,0.13404,0.430866,0.111705,0.429598,0.866187,0.383568,0.330266,0.72835,0.687015,0.766046,0.523308,0.350967,0.0384266,0.201833,0.618778,0.71731,0.740612,0.657611,0.190333,0.694906,0.242901,0.0848003,0.467667,0.301584,0.163768,0.0549132,0.739339,0.695319,0.381602,0.733864,0.745198,0.845938,0.982823,0.394609,0.740727,0.360404,0.458512,0.494332,0.284175,0.00551099,0.793576,0.0406334,0.636321,0.762659,0.607591,0.925089,0.017623,0.04158,0.247394,0.981216,0.729157,0.693106,0.912454,0.866725,0.384647,0.0460002,0.41363,0.721699,0.0615567,0.714885,0.201128,0.289116,0.319998,0.774016,0.683491,0.134546,0.372836,0.425848,0.710094,0.832348,0.638702,0.341429,0.289963,0.35138,0.815811,0.822538,0.095199,0.196436,0.475784,0.685593,0.921863,0.260872,0.231881,0.188568,0.839198,0.193941,0.528874,0.145116,0.8983,0.778378,0.887686,0.972191,0.371218,0.449398,0.547823,0.313896,0.269894,0.714894,0.643595,0.743167,0.530682,0.168443,0.869403,0.0216655,0.715455,0.765148,0.215374,0.883618,0.590157,0.348678,0.345037,0.264368,0.991205,0.225677,0.148721,0.964199,0.697728,0.272186,0.0689523,0.44162,0.349673,0.500739,0.190233,0.304978,0.899463,0.866366,0.212952,0.915415,0.296037,0.739727,0.939286,0.360897,0.810309,0.484575,0.540014,0.0229653,0.0833645,0.542575,0.659775,0.680225,0.622317,0.65159,0.666624,0.337495,0.208172,0.157452,0.469987,0.527381,0.345305,0.733923,0.832891,0.858626,0.38006,0.292681,0.406398,0.288194,0.373462,0.872736,0.415501,0.0201526,0.757827,0.275404,0.487516,0.150005,0.08021,0.709108,0.482316,0.87896,0.00279135,0.287993,0.600694,0.379468,0.763033,0.125936,0.00167334,0.122786,0.609581,0.181423,0.369749,0.382992,0.825441,0.695768,0.954232,0.0305894,0.224453,0.889974,0.748235,0.171391,0.844341,0.27948,0.477668,0.450606,0.185536,0.00712103,0.145647,0.0185788,0.293315,0.573969,0.110172,0.834351,0.615408,0.715935,0.00965536,0.610846,0.462066,0.802966,0.606762,0.0644688,0.662134,0.43663,0.989047,0.455221,0.764351,0.24654,0.542529,0.514238,0.0547292,0.433469,0.138603,0.0544615,0.876766,0.638449,0.75187,0.546041,0.495913,0.977683,0.00742728,0.651394,0.261141,0.780761,0.709268,0.387506,0.148736,0.356203,0.359613,0.331208,0.869328,0.385297,0.702913,0.954132,0.0663268,0.668013,0.713354,0.716574,0.166954,0.691099,0.944528,0.618434,0.248817,0.963819,0.818659,0.0256953,0.0678812,0.258284,0.74929,0.924643,0.0831399,0.985511,0.686844,0.259441,0.0956045,0.951097,0.493097,0.730554,0.663754,0.017971,0.995452,0.479144,0.704615,0.919747,0.787914,0.709435,0.253093,0.367698,0.110953,0.319296,0.51432,0.391781,0.451232,0.253467,0.759618,0.472096,0.392227,0.68862,0.111963,0.596936,0.560942,0.433458,0.550681,0.322596,0.646624,0.390074,0.840979,0.305931,0.921646,0.649098,0.819904,0.37097,0.697941,0.148775,0.899472,0.886763,0.0594601,0.476874,0.882006,0.0897753,0.550916,0.822044,0.733787,0.917655,0.63337,0.588145,0.524791,0.0992189,0.970801,0.292959,0.49558,0.406304,0.611646,0.0319057,0.968716,0.695466,0.685093,0.170104,0.0216631,0.600891,0.383372,0.741611,0.854487,0.84237,0.524814,0.784791,0.789652,0.0958122,0.563202,0.978635,0.63928,0.861972,0.98674,0.754682,0.103065,0.660256,0.860786,0.397282,0.775619,0.814915,0.232114,0.995038,0.351218,0.596661,0.0251016,0.511401,0.205056,0.721343,0.0796432,0.991524,0.139722,0.313911,0.348573,0.464475,0.783887,0.321541,0.32961,0.80613,0.743157,0.908659,0.972292,0.139138,0.862263,0.207035,0.740151,0.429786,0.601335,0.739575,0.241373,0.255332,0.988361,0.502615,0.427627,0.903693,0.0199789,0.663875,0.729366,0.710404,0.635752,0.02722,0.156653,0.0291266,0.715959,0.25081,0.985777,0.536264,0.603321,0.0543481,0.65553,0.583834,0.463149,0.352571,0.0504374,0.00147706,0.984436,0.979556,0.872908,0.919382,0.178765,0.468299,0.936111,0.965308,0.564266,0.832065,0.253207,0.681206,0.849289,0.2467,0.096893,0.319752,0.904285,0.875683,0.50855,0.0328068,0.792751,0.0587713,0.805301,0.867849,0.240617,0.85368,0.791468,0.410565,0.412582,0.960012,0.222398,0.269423,0.551132,0.427074,0.512375,0.71921,0.61282,0.228597,0.872759,0.53604,0.363088,0.421433,0.24187,0.291486,0.0635322,0.4058,0.125552,0.29307,0.606201,0.573924,0.437051,0.0130513,0.144159,0.311682,0.123401,0.590553,0.682538,0.0537254,0.318027,0.951794,0.804282,0.166112,0.909494,0.591327,0.768399,0.29368,0.687956,0.110353,0.940313,0.235011,0.896014,0.162753,0.701154,0.454167,0.609822,0.853752,0.0980961,0.991128,0.16203,0.988322,0.0807539,0.722367,0.343431,0.996684,0.000346363,0.758278,0.849665,0.265908,0.356505,0.946699,0.336094,0.686661,0.94339,0.109706,0.45234,0.67237,0.683919,0.18015,0.327008,0.521502,0.366392,0.667083,0.440379,0.721776,0.779712,0.908651,0.455957,0.138714,0.0563411,0.530961,0.814419,0.0828897,0.56343,0.541545,0.722431,0.52819,0.0176564,0.150404,0.230863,0.692302,0.730631,0.93752,0.816956,0.146438,0.276726,0.858902,0.798595,0.462048,0.882044,0.439661,0.746292,0.317085,0.902135,0.159295,0.342356,0.308022,0.635876,0.867701,0.85221,0.87835,0.287431,0.391818,0.74505,0.783106,0.764777,0.188694,0.619794,0.0527588,0.0956826,0.734325,0.0880791,0.988818,0.797289,0.501115,0.345598,0.945999,0.709189,0.347692,0.465999,0.753667,0.82763,0.850204,0.462211,0.180353,0.561462,0.859591,0.353798,0.102321,0.135744,0.515688,0.381234,0.863271,0.19954,0.839102,0.287728,0.545716,0.773654,0.737999,0.735226,0.559845,0.00206208,0.633634,0.979889,0.0476246,0.196469,0.90701,0.165331,0.822677,0.925755,0.475203,0.837661,0.204896,0.44182,0.992638,0.0222397,0.922483,0.330753,0.130431,0.116061,0.769172,0.608148,0.933486,0.83283,0.927019,0.898693,0.802325,0.659752,0.961107,0.750025,0.851839,0.285833,0.056771,0.0447665,0.989185,0.684777,0.254672,0.211961,0.0982518,0.929136,0.495623,0.194819,0.725379,0.937998,0.134732,0.636216,0.682021,0.638232,0.267491,0.552828,0.625562,0.0222232,0.914055,0.353979,0.283379,0.684744,0.486094,0.732581,0.631234,0.616873,0.731167,0.455277,0.229155,0.681535,0.191691,0.822172,0.300253,0.399154,0.643281,0.500197,0.174169,0.470006,0.749647,0.939481,0.970021,0.229497,0.210363,0.965722,0.0734599,0.330495,0.614954,0.32929,0.435811,0.283465,0.622754,0.965922,0.992612,0.835099,0.378213,0.820103,0.662404,0.166631,0.409168,0.0125329,0.909859,0.71558,0.947773,0.312877,0.229337,0.498222,0.434211,0.490408,0.201081,0.912338,0.858998,0.625404,0.187441,0.0983045,0.0467554,0.446367,|0.517159,0.506139,0.49546,0.178677,0.926213,0.629946,0.125046,0.420061,0.228069,0.892942,0.414973,0.136937,0.202633,0.167827,0.629325,0.439584,0.111401,0.092634,0.256431,0.221329,0.449715,0.56282,0.769972,0.926496,0.759858,0.548726,0.283081,0.635136,0.531735,0.587639,0.718074,0.337763,0.491819,0.652444,0.3241,0.860545,0.380553,0.906352,0.975346,0.688787,0.515865,0.639202,0.635533,0.260125,0.855021,0.848305,0.368197,0.531428,0.736262,0.0337818,0.0732706,0.193337,0.830286,0.443963,0.909907,0.854342,0.710333,0.529601,0.881318,0.782953,0.240733,0.058232,0.0607277,0.190237,0.766385,0.178979,0.509682,0.51855,0.0185927,0.645338,0.633615,0.709626,0.656601,0.424867,0.519151,0.354362,0.258021,0.0195605,0.986719,0.383487,0.0322028,0.350334,0.709682,0.500741,0.665492,0.157133,0.16389,0.201293,0.00400084,0.345287,0.420473,0.93494,0.883192,0.382809,0.621421,0.580535,0.759941,0.940933,0.327855,0.282254,0.810853,0.510819,0.624578,0.486857,0.0912807,0.16679,0.13864,0.480336,0.718785,0.195728,0.864559,0.851499,0.844719,0.816007,0.247365,0.369117,0.137379,0.0509673,0.319744,0.880059,0.973875,0.441367,0.347644,0.155819,0.640449,0.606649,0.0295961,0.865158,0.697781,0.390793,0.134321,0.430902,0.392341,0.916808,0.211088,0.297738,0.765476,0.172129,0.880176,0.349987,0.999138,0.292399,0.400987,0.907252,0.67834,0.760256,0.525722,0.231821,0.727765,0.15157,0.677906,0.409982,0.803023,0.395611,0.872567,0.148113,0.765578,0.506577,0.351258,0.648327,0.115542,0.199079,0.134047,0.194768,0.744402,0.61922,0.179502,0.756072,0.27516,0.916802,0.871478,0.565017,0.376827,0.412423,0.99592,0.7189,0.284286,0.638253,0.077476,0.876196,0.801232,0.0271349,0.939419,0.407264,0.858061,0.795154,0.960328,0.400746,0.446548,0.603131,0.833428,0.209829,0.178186,0.0889499,0.202672,0.87732,0.65272,0.417174,0.545209,0.028019,0.492518,0.801259,0.210799,0.205487,0.185768,0.126426,0.970299,0.286547,0.932622,0.641946,0.297273,0.924663,0.311462,0.203052,0.578279,0.465351,0.554188,0.940573,0.558649,0.67502,0.482801,0.273559,0.42207,0.729113,0.57362,0.430452,0.701945,0.565167,0.246543,0.546161,0.88305,0.460652,0.718073,0.00441796,0.817948,0.775509,0.190581,0.64649,0.464293,0.205287,0.848612,0.938548,0.500194,0.623227,0.837723,0.668469,0.866234,0.807373,0.57429,0.491177,0.827344,0.421292,0.807829,0.345282,0.297767,0.704982,0.0810244,0.48497,0.0873667,0.363359,0.259678,0.864217,0.33632,0.440724,0.682667,0.973741,0.581834,0.979479,0.385368,0.942374,0.909728,0.423292,0.833125,0.872934,0.695662,0.434637,0.203084,0.391487,0.716685,0.903247,0.323961,0.644331,0.637128,0.175903,0.478703,0.547537,0.493306,0.93869,0.183457,0.594559,0.340611,0.543596,0.327176,0.756786,0.890572,0.467819,0.589489,0.914505,0.811834,0.221948,0.241387,0.793118,0.435692,0.0634708,0.815606,0.907071,0.924877,0.407786,0.698589,0.15692,0.0879786,0.679919,0.136889,0.984849,0.724883,0.0989597,0.724203,0.21818,0.995163,0.505434,0.262683,0.115827,0.0098964,0.503408,0.310444,0.66607,0.492859,0.16325,0.466677,0.328367,0.707729,0.694726,0.479626,0.0884669,0.11269,0.87867,0.807957,0.456725,0.127969,0.731015,0.619063,0.070034,0.996236,0.891966,0.310346,0.720625,0.372851,0.418696,0.590269,0.858033,0.452082,0.00917917,0.795357,0.764149,0.996119,0.347842,0.0329468,0.694176,0.316674,0.491041,0.743813,0.553423,0.125375,0.388706,0.337413,0.533055,0.260039,0.467736,0.820305,0.719028,0.710455,0.415169,0.148729,0.815215,0.0954185,0.740772,0.60038,0.815534,0.144014,0.684467,0.628054,0.839996,0.0785825,0.409007,0.639086,0.971966,0.725928,0.617209,0.911671,0.434068,0.229753,0.864756,0.654714,0.929152,0.906719,0.665782,0.167418,0.380062,0.0475997,0.790034,0.406128,0.614267,0.428655,0.559759,0.202668,0.347604,0.510922,0.151628,0.506548,0.262212,0.573336,0.0334367,0.143613,0.808816,0.676531,0.0392888,0.473517,0.16505,0.217552,0.0881046,0.420786,0.346297,0.62465,0.683304,0.631465,0.262023,0.563871,0.196856,0.860782,0.580883,0.968816,0.642382,0.164045,0.361983,0.769657,0.268229,0.957364,0.814231,0.215409,0.894126,0.747722,0.0387956,0.333397,0.56509,0.0387614,0.640746,0.852387,0.904961,0.542284,0.19046,0.313328,0.280258,0.174708,0.248978,0.148352,0.801207,0.133214,0.630873,0.4273,0.805076,0.484311,0.592342,0.140421,0.117774,0.208287,0.808798,0.160351,0.382411,0.11566,0.677487,0.348857,0.648897,0.410333,0.336982,0.0369406,0.37998,0.0178263,0.146249,0.765435,0.827539,0.221176,0.270971,0.817733,0.734498,0.705836,0.409932,0.886276,0.13375,0.860605,0.55754,0.285273,0.740381,0.247656,0.307161,0.482961,0.275935,0.270954,0.564717,0.590722,0.792194,0.840244,0.496636,0.417006,0.930684,0.470871,0.217403,0.673265,0.467649,0.141787,0.0389353,0.878966,0.815742,0.887289,0.82196,0.884483,0.697236,0.172908,0.453844,0.657336,0.076684,0.275473,0.568701,0.518911,0.185784,0.687419,0.841155,0.269242,0.446517,0.0733511,0.210711,0.281967,0.935817,0.681062,0.676749,0.529528,0.960698,0.90004,0.369362,0.264808,0.440351,0.810026,0.791973,0.116554,0.0688584,0.0940238,0.815635,0.865037,0.959696,0.611895,0.668096,0.783927,0.769404,0.243107,0.231551,0.278142,0.908633,0.571685,0.506427,0.405353,0.182423,0.751868,0.049314,0.7246,0.77451,0.467104,0.828765,0.730969,0.924159,0.371485,0.683139,0.765982,0.669629,0.0849934,0.75841,0.659412,0.620673,0.245484,0.0271645,0.117443,0.191399,0.206335,0.154588,0.66399,0.142811,0.113087,0.725953,0.897525,0.437997,0.74508,0.0599277,0.725783,0.229554,0.0104952,0.741942,0.0100441,0.414781,0.264435,0.235595,0.401415,0.0256528,0.758909,0.791866,0.282685,0.494728,0.844299,0.285077,0.217805,0.445021,0.437301,0.29534,0.797922,0.942997,0.688777,0.848323,0.417471,0.0665611,0.0347082,0.416423,0.792121,0.790547,0.281578,0.656544,0.60232,0.476175,0.318235,0.126597,0.682916,0.694919,0.185914,0.0324996,0.743417,0.110208,0.704076,0.955813,0.0424876,0.750981,0.24513,0.484411,0.523505,0.5524,0.458548,0.1301,0.515327,0.54294,0.354868,0.102869,0.137573,0.257999,0.0426348,0.893231,0.0882777,0.999669,0.827832,0.454319,0.437559,0.710667,0.382095,0.168097,0.647347,0.832755,0.221782,0.762023,0.607788,0.754426,0.665225,0.624541,0.616784,0.836591,0.147758,0.889959,0.0720873,0.195723,0.36193,0.903031,0.0784658,0.0865577,0.370732,0.277213,0.817715,0.344113,0.478657,0.103077,0.456995,0.81968,0.512341,0.737543,0.122778,0.874922,0.333219,0.132345,0.382004,0.0394897,0.820428,0.909695,0.686479,0.983343,0.487659,0.534577,0.656768,0.603861,0.700599,0.968567,0.404831,0.441521,0.048456,0.70254,0.0733731,0.621669,0.534287,0.22652,0.969431,0.968568,0.644529,0.708474,0.400492,0.609001,0.00539404,0.0464165,0.132156,0.658511,0.259309,0.706904,0.905988,0.482861,0.537143,0.767773,0.528783,0.925374,0.442242,0.0406098,0.940752,0.619455,0.760515,0.91779,0.607051,0.733876,0.0932894,0.785321,0.942055,0.984019,0.71504,0.266964,0.00519884,0.812306,0.371214,0.0687181,0.558677,0.317191,0.590697,0.593351,0.656332,0.419664,0.554738,0.912362,0.521379,0.947472,0.0755504,0.357068,0.890499,0.25557,0.501746,0.974695,0.837184,0.820317,0.594578,0.882127,0.202893,0.0212883,0.429121,0.448123,0.624019,0.364779,0.812684,0.99162,0.149134,0.354961,0.340633,0.543791,0.134318,0.708613,0.185152,0.751323,0.134407,0.785601,0.0666934,0.981331,0.355161,0.526869,0.699716,0.113837,0.419594,0.79152,0.00726229,0.8782,0.578253,0.512262,0.234162,0.901664,0.341643,0.971429,0.212717,0.878469,0.89501,0.896156,0.743251,0.108289,0.397959,0.482179,0.459976,0.320165,0.40516,0.928616,0.293624,0.384322,0.657854,0.851436,0.110447,0.309688,0.217938,0.147657,0.344895,0.204359,0.412748,0.729902,0.785183,0.683291,0.141752,0.618178,0.331948,0.370933,0.391127,0.563316,0.105765,0.826199,0.89651,0.259474,0.65379,0.540747,0.729792,0.0362569,0.595996,0.709963,0.590696,0.0509094,0.439993,0.00220191,0.767046,0.290087,0.495358,0.795481,0.510399,0.551239,0.521388,0.511225,0.90877,0.28042,0.604986,0.216859,0.0216046,0.902999,0.498829,0.905117,0.905258,0.613611,0.750837,0.568301,0.802383,0.570526,0.699421,0.334234,0.267176,0.112465,0.557827,0.02542,0.684235,0.681479,0.0435418,0.53369,0.301162,0.993586,0.281391,0.647882,0.259187,0.953753,0.361725,0.022021,0.105855,0.008187,0.05062,0.818331,0.862771,0.00817364,0.710421,0.472989,0.682459,0.148628,0.135726,0.469277,0.441873,0.269025,0.546239,0.637612,0.0410277,0.175311,0.234473,0.788003,0.402298,0.0838932,0.989136,0.845983,0.0677712,0.96503,0.371101,0.582176,0.560859,0.404695,0.633477,0.703791,0.687147,0.686153,0.874928,0.834041,0.0599115,0.982349,0.374271,0.699758,0.662666,0.297218,0.043442,0.636506,0.955524,0.987278,0.988152,0.139337,0.850412,0.143404,0.0332136,0.17447,0.0438876,0.526845,0.509146,0.667302,0.772977,0.221935,0.97739,0.418509,0.0818368,0.479043,0.239139,0.499496,0.411451,0.177129,0.620403,0.515119,0.351614,0.156961,0.0267418,0.715191,0.212466,0.943315,0.53102,0.88617,0.483154,0.48472,0.839909,0.869886,0.257009,0.302466,0.922928,0.371306,0.502492,0.743797,0.525674,0.516502,0.36786,0.960068,0.79043,0.546852,0.0243445,0.940937,0.0433464,0.0166811,0.39451,0.783524,0.525769,0.994502,0.162951,0.306558,0.598829,0.937823,0.911528,0.755003,0.59596,0.159124,0.828844,0.76337,0.260191,0.254812,0.950681,0.755779,|0.803003,0.262638,0.991007,0.0975806,0.942966,0.565164,0.726933,0.910401,0.898249,0.402982,0.0647584,0.304433,0.20837,0.822252,0.355163,0.369826,0.744155,0.540487,0.818813,0.732854,0.494502,0.657479,0.1551,0.919174,0.858714,0.441536,0.241833,0.0499225,0.332837,0.756067,0.49804,0.839708,0.670293,0.767335,0.79635,0.610609,0.85281,0.256385,0.185523,0.086798,0.575438,0.0215026,0.753017,0.831594,0.282914,0.489672,0.500591,0.0179891,0.00312388,0.800712,0.343538,0.00351429,0.594868,0.652947,0.774098,0.516906,0.57945,0.246734,0.989188,0.385532,0.7386,0.518505,0.0692184,0.157681,0.00653195,0.416677,0.758861,0.917884,0.114278,0.781493,0.916412,0.95492,0.679881,0.602198,0.422233,0.167273,0.54805,0.107917,0.807087,0.848676,0.1005,0.165196,0.707479,0.222204,0.746705,0.0650021,0.265689,0.186994,0.120022,0.63191,0.880798,0.73239,0.236641,0.90474,0.695709,0.292692,0.337848,0.101822,0.6882,0.976435,0.250228,0.578418,0.809946,0.346728,0.0888321,0.355061,0.892581,0.777109,0.910942,0.401516,0.710129,0.354747,0.804199,0.658966,0.802941,0.655856,0.635066,0.42488,0.225547,0.076848,0.607842,0.621938,0.621502,0.117158,0.422847,0.336671,0.551003,0.71533,0.60832,0.516033,0.0546371,0.144414,0.303511,0.14263,0.792241,0.450091,0.936442,0.915103,0.676485,0.249239,0.56764,0.256956,0.892624,0.465041,0.125345,0.111705,0.320656,0.0082956,0.273924,0.194116,0.759207,0.399454,0.778166,0.886531,0.831454,0.495777,0.771338,0.852439,0.280554,0.862085,0.440594,0.527824,0.716303,0.238011,0.746153,0.826323,0.472146,0.0942368,0.572886,0.332004,0.330543,0.530064,0.145668,0.69476,0.647799,0.918688,0.0783384,0.368791,0.7704,0.290668,0.218135,0.512766,0.599026,0.120079,0.188153,0.145798,0.365345,0.896685,0.528665,0.595425,0.152696,0.369507,0.26261,0.219105,0.663016,0.170252,0.340267,0.0627497,0.0584006,0.294768,0.116978,0.487114,0.479217,0.498141,0.878109,0.381316,0.148122,0.00962019,0.833938,0.554709,0.208644,0.808546,0.747735,0.292173,0.796796,0.84972,0.969414,0.404792,0.544351,0.0423356,0.955078,0.9078,0.543464,0.392712,0.0112748,0.954253,0.281205,0.497374,0.38306,0.077213,0.395978,0.782127,0.691987,0.418232,0.166903,0.748759,0.768329,0.143307,0.646575,0.724483,0.938042,0.341911,0.120562,0.980044,0.832501,0.932601,0.467652,0.522485,0.486967,0.461907,0.682088,0.560295,0.701685,0.955102,0.20838,0.386885,0.498018,0.0918176,0.899616,0.59928,0.74011,0.452138,0.948923,0.704937,0.154439,0.400186,0.995969,0.273811,0.360229,0.351513,0.42799,0.641537,0.194013,0.393171,0.882104,0.914695,0.163489,0.50263,0.278157,0.687879,0.704832,0.485781,0.623555,0.467312,0.698485,0.0389332,0.0419874,0.76223,0.251455,0.30865,0.485877,0.582087,0.418116,0.8167,0.894405,0.0765582,0.700753,0.305388,0.604416,0.718991,0.288057,0.378002,0.224695,0.0650738,0.0463622,0.613405,0.98789,0.472195,0.889077,0.436359,0.342303,0.776766,0.719528,0.817464,0.350477,0.36011,0.683467,0.683325,0.972911,0.0866876,0.371207,0.797992,0.232809,0.878232,0.474934,0.790169,0.96474,0.948014,0.44356,0.497265,0.222834,0.718082,0.00567615,0.546111,0.640523,0.572483,0.881891,0.293433,0.886088,0.24049,0.925498,0.339156,0.439574,0.668728,0.875148,0.502409,0.567266,0.508686,0.9411,0.960844,0.721863,0.974865,0.487349,0.192955,0.61959,0.836738,0.265198,0.828889,0.477134,0.876186,0.167365,0.626552,0.446107,0.78411,0.0302265,0.259222,0.65145,0.184212,0.0829927,0.782483,0.345451,0.298935,0.891091,0.749646,0.107377,0.517153,0.427648,0.253804,0.628513,0.774696,0.912151,0.346043,0.717485,0.730761,0.456546,0.852832,0.604606,0.629023,0.992026,0.350418,0.726373,0.229071,0.0286627,0.0750264,0.334704,0.452982,0.0919316,0.523772,0.0209335,0.558738,0.510749,0.0356501,0.342835,0.396069,0.0251905,0.397705,0.938833,0.200352,0.243801,0.463463,0.708111,0.648503,0.519421,0.676589,0.0788307,0.382362,0.428116,0.0242648,0.610396,0.973105,0.422976,0.705881,0.97731,0.0228603,0.842004,0.965487,0.952911,0.192082,0.786569,0.254859,0.369448,0.192336,0.17078,0.733656,0.574733,0.546259,0.571974,0.278046,0.909023,0.329409,0.328486,0.51964,0.193933,0.15853,0.296997,0.269145,0.928624,0.110366,0.058482,0.969604,0.0084976,0.0283752,0.76961,0.130266,0.751445,0.960845,0.653102,0.494996,0.734165,0.576753,0.685385,0.068829,0.836318,0.799994,0.424614,0.964607,0.306383,0.647468,0.445944,0.73434,0.273708,0.450964,0.617381,0.695211,0.97896,0.739769,0.750452,0.838833,0.72937,0.321551,0.617191,0.755594,0.024586,0.21517,0.109162,0.815033,0.590384,0.662422,0.336255,0.478527,0.484252,0.698727,0.154241,0.125358,0.297307,0.375442,0.919925,0.375929,0.909158,0.9446,0.565358,0.918938,0.154752,0.429852,0.0772386,0.443468,0.0900273,0.783589,0.376275,0.655205,0.946572,0.0801961,0.729151,0.821322,0.841004,0.253075,0.962587,0.232669,0.907253,0.943753,0.374896,0.938168,0.124687,0.937845,0.869663,0.22732,0.014386,0.37612,0.613094,0.819328,0.720982,0.138343,0.510342,0.560465,0.591145,0.33595,0.173475,0.781709,0.00710011,0.286597,0.40554,0.6463,0.999931,0.492659,0.827602,0.662347,0.377835,0.394116,0.98683,0.900047,0.076006,0.205029,0.963697,0.953838,0.588437,0.547455,0.633761,0.989153,0.0688199,0.746804,0.949675,0.68338,0.483653,0.65052,0.830486,0.366259,0.342086,0.937505,0.27649,0.924556,0.986621,0.932421,0.461412,0.166587,0.441798,0.146654,0.0372364,0.654513,0.567388,0.453588,0.437447,0.141809,0.562702,0.291371,0.730284,0.462232,0.668694,0.353455,0.0518755,0.527472,0.951837,0.680571,0.328902,0.535609,0.40786,0.388566,0.428777,0.631543,0.220817,0.928349,0.235192,0.000979006,0.876885,0.704166,0.532184,0.690471,0.127084,0.67252,0.803927,0.298078,0.267521,0.133324,0.908212,0.9608,0.944572,0.437596,0.730138,0.507657,0.683022,0.54969,0.881662,0.458571,0.407126,0.905414,0.538666,0.570584,0.740411,0.947062,0.652289,0.959642,0.887977,0.894933,0.537671,0.0675018,0.126778,0.0112255,0.439443,0.26777,0.865228,0.214703,0.70473,0.643245,0.84817,0.569128,0.537415,0.715918,0.258435,0.870271,0.858144,0.853069,0.896514,0.742682,0.74412,0.171793,0.656243,0.5972,0.579947,0.281029,0.383736,0.743179,0.043871,0.0971094,0.560309,0.715989,0.23367,0.43102,0.5456,0.636757,0.495798,0.160934,0.391348,0.508166,0.971163,0.761759,0.62502,0.0338381,0.666464,0.605416,0.0395995,0.151779,0.143288,0.422519,0.845783,0.686348,0.0861043,0.660795,0.974156,0.121411,0.86213,0.760696,0.972651,0.243584,0.532797,0.794886,0.683607,0.55735,0.804436,0.3751,0.246863,0.240266,0.544896,0.982693,0.515929,0.85477,0.329192,0.138841,0.0698643,0.289478,0.139795,0.98898,0.276752,0.30272,0.485229,0.580952,0.200111,0.311302,0.0503811,0.367653,0.859637,0.441136,0.892442,0.96317,0.0102373,0.957229,0.0925307,0.92801,0.634977,0.123363,0.849568,0.355119,0.315905,0.666522,0.0426894,0.255179,0.913261,0.107237,0.953731,0.83219,0.660356,0.331896,0.545313,0.90804,0.868161,0.66391,0.568274,0.320934,0.268885,0.421325,0.579982,0.120704,0.401569,0.141513,0.653834,0.544633,0.544329,0.982761,0.641586,0.141059,0.780515,0.161356,0.676586,0.324011,0.981538,0.210267,0.732684,0.36149,0.584945,0.955026,0.328616,0.141924,0.395147,0.120357,0.0829065,0.458544,0.138215,0.478556,0.0519835,0.935084,0.915694,0.419505,0.0859399,0.72329,0.654781,0.443466,0.235509,0.00584465,0.647602,0.434949,0.821467,0.0584061,0.622122,0.936387,0.374255,0.338036,0.235466,0.140598,0.0457526,0.63871,0.249331,0.898419,0.646562,0.216533,0.604311,0.918052,0.462648,0.268462,0.0116722,0.720144,0.812344,0.764515,0.940382,0.345919,0.63684,0.5327,0.43673,0.86762,0.570835,0.332721,0.588951,0.525483,0.770924,0.700925,0.57561,0.575972,0.867159,0.904872,0.610308,0.150953,0.0226568,0.105665,0.737858,0.715362,0.0881149,0.0334608,0.90336,0.344843,0.731182,0.644298,0.674514,0.354188,0.0963843,0.946446,0.17723,0.605082,0.112923,0.0292091,0.923521,0.515538,0.454186,0.7507,0.931311,0.382379,0.686038,0.239062,0.506594,0.618209,0.608554,0.792181,0.313249,0.82973,0.300725,0.360833,0.564032,0.489762,0.194057,0.438182,0.821996,0.0997088,0.831095,0.589098,0.0728389,0.372475,0.598168,0.484127,0.407333,0.415756,0.213876,0.348538,0.398572,0.951659,0.618754,0.395533,0.475671,0.589201,0.244511,0.380672,0.980339,0.760509,0.170891,0.647058,0.472655,0.637113,0.0303064,0.444569,0.0395931,0.0927241,0.262967,0.32001,0.412682,0.880886,0.957768,0.0238867,0.209467,0.8643,0.735587,0.54382,0.906882,0.222949,0.795638,0.900551,0.061258,0.247303,0.143117,0.996015,0.456666,0.278319,0.781589,0.200076,0.652696,0.306567,0.549919,0.435043,0.363799,0.258393,0.373344,0.807575,0.0704297,0.998753,0.745016,0.407692,0.885552,0.840584,0.712389,0.386868,0.0481194,0.235326,0.130013,0.16774,0.872953,0.669943,0.0337605,0.123874,0.39843,0.0471244,0.133471,0.274941,0.631091,0.469476,0.62342,0.74112,0.495554,0.932152,0.82492,0.347385,0.550197,0.713137,0.559041,0.429042,0.177152,0.977104,0.416702,0.285655,0.870478,0.628254,0.237946,0.585808,0.856525,0.550965,0.106357,0.732794,0.610442,0.920841,0.564257,0.556412,0.988883,0.00732309,0.966135,0.114907,0.510564,0.352646,0.393321,0.652779,0.347057,0.741829,0.166162,0.43658,0.0181323,0.709668,0.128887,0.607531,0.0191119,0.429555,0.600067,0.552687,0.317252,0.379713,0.046707,0.720972,0.735402,0.7062,|0.692324,0.21197,0.985183,0.617821,0.0288163,0.424145,0.418031,0.921853,0.104164,0.55976,0.524179,0.471112,0.762783,0.0962032,0.30656,0.932098,0.153372,0.241461,0.15157,0.728831,0.462744,0.553196,0.59484,0.0980588,0.631261,0.427993,0.126925,0.375848,0.840172,0.433837,0.0419358,0.742634,0.316742,0.18729,0.717259,0.805276,0.847479,0.502117,0.407266,0.699666,0.401895,0.80012,0.015319,0.603888,0.0474187,0.438278,0.488813,0.0466912,0.372668,0.0604002,0.708757,0.313113,0.595554,0.51788,0.332087,0.104438,0.409951,0.115616,0.259825,0.0302176,0.200092,0.728096,0.125428,0.109248,0.592233,0.896368,0.0311826,0.753039,0.476273,0.232928,0.642804,0.405733,0.568794,0.893574,0.507086,0.783087,0.0306912,0.89312,0.708312,0.271276,0.464408,0.314321,0.862463,0.425929,0.70543,0.0241336,0.659645,0.2134,0.093521,0.226445,0.651058,0.988666,0.766599,0.390447,0.78248,0.180811,0.892562,0.00783366,0.540959,0.839789,0.751841,0.145702,0.838969,0.631412,0.776027,0.184418,0.595812,0.355896,0.665482,0.656679,0.0924788,0.710521,0.547349,0.38375,0.522386,0.873359,0.544795,0.172969,0.762305,0.649116,0.552015,0.742446,0.0935825,0.845362,0.68882,0.115991,0.147855,0.647259,0.455115,0.982494,0.374152,0.291993,0.980655,0.51021,0.190038,0.835766,0.40066,0.70991,0.823038,0.145846,0.513209,0.299102,0.213484,0.177052,0.748161,0.727547,0.838221,0.912335,0.180852,0.173006,0.361417,0.841493,0.927485,0.947006,0.606589,0.601799,0.922539,0.191764,0.863967,0.498227,0.426991,0.891841,0.963114,0.516545,0.530879,0.0779554,0.630757,0.922242,0.83249,0.0808997,0.941449,0.367975,0.269207,0.706946,0.515823,0.499799,0.942497,0.620337,0.989837,0.4931,0.377609,0.750487,0.769424,0.00659704,0.711718,0.121817,0.0194317,0.00334394,0.603496,0.526623,0.318744,0.655812,0.669478,0.262224,0.716138,0.988798,0.292325,0.18892,0.993261,0.265951,0.530594,0.491028,0.688333,0.403413,0.221977,0.155738,0.994133,0.419489,0.309989,0.176539,0.943214,0.67882,0.200952,0.970716,0.302057,0.49928,0.629688,0.499179,0.376893,0.48959,0.750928,0.573312,0.730249,0.800187,0.620439,0.864874,0.998476,0.721534,0.827078,0.881483,0.288687,0.680856,0.571321,0.981943,0.194004,0.849943,0.885162,0.832651,0.401252,0.597575,0.336541,0.0728353,0.767681,0.71253,0.556918,0.788911,0.828227,0.904113,0.451566,0.792401,0.725948,0.190014,0.851521,0.448449,0.503124,0.820607,0.385037,0.0886647,0.970236,0.557131,0.153139,0.75178,0.249875,0.133674,0.93026,0.126325,0.833239,0.941381,0.0350572,0.16208,0.64083,0.0536107,0.454828,0.412354,0.879339,0.936387,0.483652,0.898318,0.417017,0.593509,0.829284,0.232953,0.385778,0.176146,0.735699,0.825007,0.466787,0.54971,0.359474,0.829313,0.208753,0.0877439,0.125527,0.351895,0.880687,0.88265,0.375583,0.924762,0.412491,0.218513,0.837882,0.651021,0.661048,0.208894,0.639763,0.357739,0.368656,0.969255,0.394389,0.670006,0.17735,0.486055,0.359179,0.47329,0.256766,0.188016,0.0956129,0.658139,0.628901,0.109929,0.862745,0.169085,0.130488,0.265508,0.507505,0.404303,0.782152,0.805866,0.261957,0.0160846,0.544078,0.403133,0.730764,0.177599,0.760119,0.0346596,0.24019,0.216738,0.369711,0.946033,0.645032,0.487613,0.381321,0.627176,0.290773,0.999981,0.604003,0.513402,0.326911,0.363286,0.379436,0.625172,0.677125,0.5798,0.770578,0.97553,0.315475,0.952241,0.327473,0.641992,0.406354,0.210731,0.935945,0.906631,0.936014,0.275036,0.379503,0.969797,0.784965,0.425185,0.369366,0.802949,0.260754,0.247906,0.171522,0.788004,0.83765,0.0823279,0.183185,0.414848,0.824398,0.338382,0.239457,0.884486,0.917186,0.946779,0.325362,0.575161,0.897536,0.927275,0.214314,0.612788,0.303643,0.362393,0.412473,0.0271903,0.402496,0.879733,0.669629,0.565398,0.117672,0.229888,0.746355,0.447679,0.257339,0.755598,0.642011,0.72191,0.640512,0.278544,0.232328,0.151173,0.159628,0.0761473,0.0867823,0.645446,0.89436,0.730601,0.102005,0.447954,0.95628,0.140885,0.182271,0.358577,0.629705,0.267268,0.225166,0.380564,0.554079,0.24955,0.816918,0.815855,0.496746,0.0609162,0.674889,0.650655,0.525455,0.989847,0.0507308,0.44936,0.68707,0.664146,0.697961,0.990375,0.856899,0.807951,0.371213,0.753094,0.883236,0.0816469,0.75028,0.377895,0.306669,0.580899,0.245142,0.359505,0.500661,0.186825,0.0914181,0.428446,0.904399,0.0432291,0.536832,0.46938,0.828671,0.936189,0.745447,0.0133061,0.134347,0.32481,0.801603,0.463538,0.902582,0.94059,0.982866,0.15897,0.890338,0.0471041,0.907612,0.876326,0.673732,0.985283,0.844795,0.133944,0.66455,0.444394,0.216011,0.27577,0.188723,0.713036,0.293595,0.775589,0.723073,0.603716,0.546964,0.811447,0.178616,0.214199,0.758,0.427133,0.951878,0.0957823,0.569775,0.895758,0.190699,0.402159,0.576862,0.0628845,0.253767,0.901656,0.987366,0.121843,0.20741,0.865546,0.841646,0.210297,0.732225,0.125022,0.783109,0.431206,0.418133,0.399008,0.52849,0.164268,0.0957467,0.971968,0.899753,0.656743,0.96159,0.846061,0.578688,0.558762,0.443169,0.781578,0.194684,0.640208,0.0945864,0.871683,0.979022,0.67106,0.386848,0.308306,0.0789073,0.448804,0.235236,0.422022,0.660516,0.0226833,0.223578,0.937291,0.503058,0.483703,0.720827,0.988188,0.494276,0.586564,0.235791,0.681518,0.516626,0.829833,0.320855,0.432192,0.130653,0.796581,0.629428,0.0486958,0.810931,0.12883,0.128213,0.965951,0.573166,0.0569831,0.235003,0.13433,0.715869,0.273612,0.172378,0.120947,0.662102,0.555122,0.973369,0.749896,0.909193,0.881905,0.196404,0.83862,0.558107,0.720514,0.124276,0.739065,0.240116,0.392091,0.213211,0.0614808,0.402888,0.193019,0.256431,0.758024,0.360221,0.852975,0.657819,0.322743,0.38074,0.948805,0.0561979,0.744252,0.884463,0.963497,0.903187,0.935938,0.761233,0.352063,0.677016,0.972317,0.268696,0.406735,0.977655,0.409464,0.944464,0.765521,0.280092,0.434845,0.637129,0.425747,0.549533,0.525819,0.924378,0.79054,0.875184,0.502555,0.305468,0.938678,0.223764,0.996034,0.616825,0.877357,0.418896,0.202298,0.753873,0.300381,0.575992,0.860844,0.724203,0.313307,0.69559,0.93061,0.80097,0.923434,0.741958,0.862889,0.761922,0.691953,0.557918,0.0323577,0.102174,0.485541,0.393203,0.0114834,0.340028,0.890243,0.562012,0.461083,0.821142,0.841094,0.39187,0.464498,0.390383,0.986023,0.989801,0.577684,0.691118,0.282476,0.347802,0.298328,0.876328,0.558327,0.0630124,0.428128,0.677807,0.924593,0.73707,0.940722,0.503534,0.0583558,0.37159,0.861263,0.592337,0.171726,0.542875,0.469281,0.560452,0.403947,0.616224,0.249364,0.0910346,0.331646,0.5695,0.466381,0.468229,0.255826,0.269473,0.245499,0.918919,0.748028,0.997547,0.773483,0.655924,0.37982,0.000462294,0.31659,0.0499735,0.82113,0.134559,0.450474,0.431679,0.768568,0.902956,0.863991,0.201928,0.0562997,0.482946,0.897014,0.110367,0.507714,0.289176,0.721025,0.760812,0.228626,0.809036,0.65718,0.190375,0.237364,0.772159,0.153664,0.00792438,0.916877,0.312277,0.777042,0.908696,0.774559,0.238968,0.101327,0.29228,0.0827371,0.766589,0.398546,0.704679,0.119547,0.896556,0.986313,0.801597,0.85886,0.0232743,0.843551,0.81141,0.413439,0.940611,0.651263,0.12455,0.895691,0.578941,0.164304,0.815083,0.908801,0.355845,0.213042,0.396327,0.52147,0.176249,0.893129,0.026936,0.210244,0.708577,0.635747,0.430961,0.371321,0.383684,0.17933,0.0194681,0.0558565,0.325839,0.49393,0.48186,0.654837,0.358658,0.523428,0.49775,0.887367,0.712763,0.784169,0.394041,0.623404,0.174814,0.897235,0.884573,0.17087,0.698091,0.407796,0.64784,0.7136,0.949215,0.252973,0.530748,0.426565,0.885911,0.854537,0.565793,0.41464,0.691619,0.941445,0.166287,0.802819,0.0918661,0.675869,0.739173,0.107297,0.409749,0.232481,0.493317,0.62426,0.686294,0.957057,0.649243,0.806853,0.239287,0.991436,0.0893086,0.0106722,0.00787038,0.743088,0.447657,0.158438,0.561663,0.805613,0.10359,0.872575,0.896362,0.71619,0.413731,0.477228,0.056067,0.314647,0.793398,0.560363,0.516093,0.792043,0.290842,0.629964,0.668912,0.262567,0.302715,0.1152,0.953552,0.38873,0.0703764,0.647469,0.620818,0.775144,0.768525,0.925475,0.0808171,0.262357,0.825215,0.762958,0.138209,0.826592,0.210733,0.178596,0.129435,0.388004,0.456354,0.814343,0.783253,0.435455,0.653736,0.908217,0.42414,0.510126,0.73184,0.59978,0.306415,0.442125,0.505696,0.0610832,0.687204,0.936475,0.887806,0.119507,0.537082,0.726873,0.431074,0.271896,0.715065,0.747886,0.98588,0.89684,0.061794,0.883358,0.976518,0.529248,0.609982,0.457385,0.793476,0.113207,0.0561115,0.401708,0.562212,0.603532,0.764219,0.660653,0.400145,0.856502,0.755838,0.800578,0.319431,0.15424,0.401442,0.999802,0.0185165,0.700911,0.515758,0.582475,0.530901,0.842005,0.263814,0.649149,0.460526,0.97234,0.324206,0.725155,0.0754718,0.00459659,0.78857,0.392461,0.196738,0.131687,0.67203,0.88454,0.95869,0.154875,0.0141374,0.959824,0.558458,0.0808501,0.895921,0.116957,0.584811,0.611323,0.970626,0.532178,0.686728,0.785074,0.87318,0.456655,0.642901,0.00868821,0.276705,0.425393,0.314444,0.902904,0.508207,0.0244533,0.421224,0.0676234,0.520856,0.30796,0.33591,0.52343,0.805641,0.314695,0.0528041,0.824502,0.85301,0.912052,0.201068,0.077595,0.430622,0.200799,0.591623,0.344429,0.0341018,0.294552,0.526438,0.580668,0.580382,0.0936564,0.535576,0.192006,0.863187,0.188539,0.591466,0.846712,0.967564,0.625451,0.56752,0.945346,0.969629,0.823722,0.298589,0.520091,|0.506955,0.734543,0.020934,0.0288967,0.786094,0.0713663,0.200123,0.885089,0.141275,0.737284,0.648508,0.543024,0.0883909,0.952329,0.528275,0.407651,0.330811,0.165309,0.0573803,0.58155,0.279584,0.360271,0.326859,0.432917,0.924455,0.469607,0.735696,0.200926,0.433087,0.0578324,0.43715,0.620413,0.596412,0.961855,0.599298,0.426363,0.379898,0.332137,0.534863,0.564841,0.736769,0.470439,0.388573,0.337649,0.820393,0.69848,0.517199,0.598503,0.61606,0.0760325,0.373032,0.134704,0.376857,0.578647,0.794152,0.275232,0.538885,0.955049,0.0085752,0.0799755,0.105384,0.946569,0.00960183,0.0246096,0.263453,0.361741,0.484183,0.221537,0.629272,0.146355,0.722205,0.916827,0.880116,0.470001,0.509412,0.798377,0.0845941,0.693181,0.362721,0.939743,0.225983,0.510976,0.779356,0.814091,0.149687,0.755242,0.957932,0.331568,0.547524,0.0552389,0.0448927,0.621679,0.511675,0.280548,0.119058,0.709014,0.176591,0.7426,0.398189,0.77521,0.790933,0.433933,0.813405,0.963668,0.230118,0.422405,0.525919,0.153817,0.0177141,0.54721,0.908934,0.62848,0.379416,0.108541,0.204428,0.502069,0.83506,0.418192,0.736662,0.232459,0.192498,0.58872,0.765948,0.366732,0.725345,0.604393,0.728355,0.925307,0.418757,0.279904,0.891581,0.918318,0.774034,0.925264,0.827312,0.521137,0.736703,0.225808,0.252802,0.598609,0.102633,0.476011,0.00754833,0.608958,0.971079,0.360717,0.997069,0.492199,0.571088,0.36312,0.462886,0.098317,0.219617,0.340169,0.212857,0.109956,0.520764,0.514051,0.80469,0.0888945,0.127926,0.461266,0.743881,0.215129,0.235969,0.547128,0.120427,0.480036,0.959723,0.0140474,0.173074,0.709774,0.116332,0.987203,0.817194,0.0283499,0.770964,0.191191,0.0744041,0.609986,0.570296,0.941987,0.544711,0.0787805,0.832159,0.814301,0.689211,0.891895,0.394803,0.109979,0.869429,0.773487,0.401634,0.671196,0.173537,0.503911,0.321369,0.175449,0.379117,0.157439,0.225174,0.939702,0.643475,0.840885,0.549567,0.887812,0.647098,0.355552,0.271154,0.224383,0.459917,0.45786,0.969573,0.175212,0.256862,0.674725,0.00356865,0.644392,0.546655,0.915758,0.248206,0.815988,0.918854,0.421771,0.236242,0.172644,0.587146,0.246679,0.00647807,0.832959,0.742265,0.668527,0.78249,0.419462,0.0349563,0.543968,0.147783,0.0880294,0.419864,0.369852,0.0230043,0.0285234,0.404742,0.440382,0.01269,0.525029,0.472027,0.357853,0.983232,0.806392,0.0672849,0.156996,0.90988,0.783466,0.873783,0.250723,0.378668,0.491819,0.0355396,0.514121,0.526944,0.920219,0.0248141,0.363935,0.0254353,0.482271,0.735534,0.565721,0.466815,0.257842,0.215259,0.750352,0.274721,0.539948,0.846447,0.295313,0.296543,0.812315,0.1061,0.413805,0.599976,0.343079,0.411088,0.145048,0.0997245,0.133253,0.76171,0.637024,0.664151,0.0260105,0.305808,0.663106,0.7395,0.562168,0.521087,0.64533,0.176118,0.762329,0.424211,0.621837,0.919534,0.267407,0.788803,0.426621,0.990618,0.21118,0.623973,0.183179,0.888743,0.00218475,0.838122,0.598024,0.470708,0.116329,0.876731,0.497878,0.562594,0.313521,0.656153,0.0123833,0.624435,0.163716,0.285581,0.575275,0.657628,0.0825559,0.690137,0.0838661,0.656484,0.207389,0.9413,0.993721,0.829665,0.572469,0.566345,0.257384,0.125181,0.502701,0.506046,0.937463,0.85092,0.222189,0.209967,0.297606,0.320776,0.144018,0.00755757,0.431528,0.410174,0.284942,0.571463,0.592145,0.2224,0.845389,0.0377584,0.714546,0.573514,0.256201,0.837027,0.519625,0.248605,0.500773,0.926333,0.99435,0.895899,0.430963,0.565915,0.751981,0.849948,0.765104,0.701674,0.358248,0.529639,0.602501,0.596581,0.690803,0.77678,0.936701,0.0967364,0.854263,0.576847,0.570316,0.986893,0.444228,0.806706,0.634859,0.8518,0.253842,0.565377,0.136063,0.542796,0.766852,0.895427,0.230749,0.428347,0.0502507,0.500639,0.993538,0.708582,0.43333,0.353086,0.704016,0.800743,0.157777,0.152929,0.978448,0.501195,0.905485,0.691179,0.931531,0.956175,0.0436503,0.17173,0.418733,0.701114,0.167995,0.92169,0.815553,0.155331,0.733368,0.277607,0.983064,0.533822,0.239987,0.278872,0.763504,0.935117,0.549659,0.588199,0.996571,0.956939,0.661821,0.71521,0.615816,0.14524,0.25385,0.906591,0.31429,0.0253191,0.699432,0.559705,0.505731,0.436134,0.365021,0.689227,0.195099,0.220505,0.337012,0.429742,0.604648,0.640354,0.933555,0.398211,0.427364,0.696437,0.674799,0.206632,0.274498,0.00266945,0.791374,0.648493,0.658987,0.757813,0.736088,0.0595627,0.829772,0.139705,0.121133,0.145901,0.0623052,0.281797,0.690038,0.148293,0.434143,0.0507936,0.407833,0.447303,0.396762,0.0415331,0.42367,0.995369,0.1445,0.427414,0.0721629,0.565471,0.300241,0.681314,0.938903,0.744612,0.521759,0.499285,0.813381,0.427745,0.122987,0.399048,0.54046,0.327279,0.0421721,0.154143,0.857315,0.448707,0.808936,0.674672,0.277867,0.613439,0.433243,0.114889,0.403567,0.221126,0.269783,0.10511,0.734792,0.742418,0.472748,0.972102,0.0292845,0.177061,0.420511,0.455035,0.228969,0.27107,0.243699,0.564141,0.767473,0.543769,0.615451,0.753992,0.138779,0.717094,0.310384,0.586947,0.525446,0.669775,0.377425,0.0942876,0.332261,0.280923,0.328233,0.442332,0.97129,0.252997,0.316641,0.209492,0.517665,0.705278,0.450059,0.778298,0.185691,0.598354,0.359999,0.250613,0.0535261,0.786733,0.385047,0.178864,0.313777,0.635385,0.914571,0.83518,0.583999,0.411195,0.857492,0.932819,0.841569,0.0121729,0.899874,0.143674,0.272864,0.0358127,0.487196,0.594246,0.874849,0.444861,0.051462,0.705266,0.0967752,0.673745,0.387986,0.623857,0.02879,0.750464,0.486776,0.217825,0.413787,0.35789,0.390151,0.616352,0.278882,0.494698,0.574716,0.244136,0.957984,0.973251,0.141947,0.0727239,0.83195,0.0258711,0.720383,0.63727,0.402547,0.321124,0.76739,0.409973,0.416742,0.266765,0.539613,0.55874,0.71678,0.779251,0.360895,0.732769,0.0121776,0.000350654,0.139004,0.0169508,0.521122,0.0980119,0.239669,0.951656,0.673997,0.76313,0.434096,0.187204,0.775604,0.861947,0.786867,0.204226,0.99275,0.417542,0.543309,0.764062,0.814381,0.226,0.712725,0.121021,0.36357,0.304334,0.597243,0.801351,0.450317,0.512573,0.092164,0.949061,0.499863,0.361654,0.776995,0.882693,0.44541,0.309302,0.388872,0.83487,0.49912,0.789641,0.501931,0.199108,0.218576,0.339234,0.597467,0.111345,0.0317852,0.474449,0.914937,0.0278971,0.821242,0.709541,0.108154,0.306161,0.986747,0.416197,0.00120562,0.697164,0.00777024,0.368014,0.860143,0.366743,0.515721,0.236876,0.598376,0.0891808,0.648793,0.292771,0.211246,0.839754,0.718224,0.167071,0.216287,0.459575,0.194986,0.185517,0.201585,0.411819,0.435057,0.647384,0.315198,0.557817,0.971179,0.486107,0.188455,0.828911,0.223373,0.200325,0.110117,0.900563,0.814729,0.416037,0.188258,0.571972,0.561435,0.405752,0.889189,0.433636,0.0136225,0.868519,0.518196,0.113432,0.726316,0.985919,0.146841,0.312387,0.52018,0.0261278,0.411557,0.867835,0.191727,0.320004,0.552346,0.300021,0.317981,0.209843,0.455952,0.316481,0.760427,0.177929,0.283641,0.870122,0.05996,0.651732,0.825727,0.518519,0.53655,0.0693653,0.432801,0.646529,0.512577,0.175393,0.539306,0.972834,0.231727,0.821159,0.938577,0.645529,0.59757,0.74463,0.951596,0.789297,0.619839,0.511777,0.214531,0.495996,0.299991,0.319154,0.587435,0.308054,0.53498,0.57362,0.999102,0.493104,0.28406,0.0760069,0.541964,0.545975,0.436274,0.348616,0.62869,0.973717,0.917216,0.145028,0.437607,0.574334,0.234222,0.39952,0.049986,0.0219732,0.40835,0.846937,0.36915,0.179374,0.943022,0.130543,0.292392,0.859572,0.218538,0.465582,0.130428,0.051824,0.805127,0.534898,0.537843,0.907653,0.743353,0.746389,0.854936,0.554357,0.0721518,0.867792,0.360422,0.651902,0.229073,0.175998,0.06805,0.753764,0.757479,0.90281,0.880112,0.220174,0.817272,0.717036,0.180073,0.410952,0.0948344,0.457465,0.600682,0.0173932,0.449553,0.507995,0.120403,0.348604,0.507469,0.86891,0.873036,0.716265,0.853449,0.821102,0.345217,0.401708,0.464123,0.672697,0.731066,0.913251,0.719071,0.303458,0.955414,0.549853,0.31062,0.935462,0.33097,0.572854,0.513755,0.137505,0.349958,0.48311,0.777646,0.272756,0.793931,0.0913214,0.676842,0.313647,0.918577,0.738643,0.69482,0.507919,0.0499513,0.040571,0.376001,0.397996,0.766854,0.286386,0.389837,0.998352,0.264992,0.110956,0.24914,0.753334,0.12241,0.983608,0.521459,0.553788,0.138225,0.498045,0.122822,0.382277,0.818609,0.927109,0.298887,0.603728,0.373022,0.348481,0.807091,0.40275,0.597069,0.32838,0.505738,0.187441,0.920123,0.619587,0.778711,0.72152,0.67947,0.844647,0.97049,0.986171,0.951903,0.907595,0.566616,0.674531,0.389808,0.766221,0.778798,0.848551,0.289642,0.719387,0.369155,0.236029,0.909178,0.216866,0.263051,0.819861,0.644246,0.472098,0.992758,0.722527,0.127214,0.352116,0.808863,0.420277,0.0913826,0.201961,0.992294,0.614356,0.144725,0.323549,0.659111,0.818314,0.497138,0.179136,0.177303,0.0774885,0.423663,0.886604,0.0874913,0.197839,0.245422,0.762316,0.57438,0.791908,0.197035,0.375055,0.895989,0.747605,0.143436,0.646099,0.120115,0.647479,0.769739,0.553543,0.988657,0.690749,0.846033,0.435355,0.39218,0.752241,0.986873,0.716611,0.902723,0.920158,0.878688,0.811174,0.472893,0.984468,0.823497,0.848384,0.375325,0.455015,0.488084,0.781834,0.696716,0.958355,0.382732,0.790305,0.301162,0.883864,0.515227,0.288642,0.301175,0.592858,0.00660962,0.222466,0.574018,0.240481,0.858499,0.477546,0.179958,0.766185,0.0571906,0.523131,0.221752,0.488129,0.78572,0.993514,0.535893,|0.334355,0.874159,0.0164914,0.668511,0.0912975,0.794992,0.0294253,0.0246415,0.181243,0.637371,0.451127,0.0327565,0.704705,0.990812,0.797456,0.666691,0.773812,0.0419962,0.6044,0.0430081,0.854644,0.651866,0.944422,0.0689899,0.867167,0.0439216,0.598199,0.484157,0.531761,0.345609,0.55807,0.298398,0.295444,0.284182,0.735527,0.288539,0.303832,0.140756,0.662829,0.54157,0.939573,0.16035,0.875945,0.249581,0.713161,0.330211,0.648557,0.366576,0.647817,0.629072,0.201492,0.368845,0.275894,0.32617,0.971374,0.0397604,0.550224,0.517267,0.763521,0.580208,0.927076,0.34367,0.659538,0.638234,0.240473,0.789764,0.863368,0.972729,0.138044,0.466797,0.149783,0.834907,0.584665,0.331502,0.726621,0.66751,0.517783,0.463718,0.513801,0.0232534,0.931901,0.12214,0.747741,0.966353,0.248566,0.171907,0.760295,0.593978,0.694196,0.136931,0.232042,0.591291,0.844312,0.681569,0.255268,0.961786,0.324564,0.260802,0.647716,0.0275821,0.088209,0.592205,0.0950296,0.147253,0.926631,0.389806,0.866489,0.55923,0.630511,0.994641,0.926966,0.216396,0.0868784,0.133861,0.142077,0.0529237,0.568743,0.483747,0.41411,0.838234,0.835344,0.974567,0.331518,0.23333,0.708454,0.23335,0.368841,0.50126,0.113779,0.0672753,0.988814,0.237597,0.576521,0.596885,0.416601,0.172378,0.9307,0.388303,0.53236,0.929227,0.558871,0.800796,0.623407,0.642223,0.0236257,0.0749184,0.367876,0.407485,0.768412,0.133085,0.544902,0.148838,0.253428,0.190189,0.762458,0.996548,0.726457,0.153704,0.41857,0.715713,0.269096,0.796407,0.429892,0.783021,0.33699,0.905474,0.147089,0.0134458,0.434319,0.547978,0.197359,0.48485,0.619601,0.06343,0.856282,0.164289,0.760321,0.887262,0.241987,0.144915,0.666403,0.659539,0.934281,0.580453,0.891535,0.0900047,0.986451,0.912674,0.972074,0.123995,0.270083,0.556188,0.805812,0.42947,0.900512,0.752161,0.943398,0.557831,0.305121,0.844489,0.172142,0.488054,0.056154,0.717234,0.00368249,0.423733,0.452948,0.858532,0.505397,0.699095,0.0886826,0.683912,0.331129,0.0478355,0.28229,0.428163,0.0786151,0.925595,0.716109,0.581302,0.950294,0.799793,0.498411,0.288559,0.354114,0.16948,0.644272,0.588865,0.150613,0.779389,0.980087,0.714246,0.769644,0.419224,0.726044,0.108321,0.71775,0.145022,0.328336,0.62895,0.0863298,0.390603,0.752167,0.920525,0.77656,0.743219,0.938515,0.332263,0.752411,0.518751,0.196056,0.597116,0.251785,0.224633,0.824804,0.826153,0.0664731,0.906224,0.353616,0.0610789,0.469421,0.377266,0.976854,0.606707,0.127979,0.246295,0.917722,0.715672,0.742191,0.852453,0.140488,0.800507,0.0567908,0.189205,0.188752,0.857085,0.602427,0.408017,0.601913,0.102079,0.327006,0.925308,0.163142,0.250833,0.973913,0.316133,0.245248,0.70434,0.868995,0.976553,0.256591,0.450578,0.40503,0.49231,0.953985,0.19313,0.248351,0.923246,0.853453,0.712549,0.566606,0.0539606,0.231063,0.857234,0.619583,0.850645,0.554585,0.817201,0.683421,0.64774,0.183577,0.302381,0.849477,0.764988,0.79451,0.871505,0.513345,0.789064,0.790122,0.634818,0.619581,0.705291,0.382502,0.719656,0.912254,0.794714,0.605071,0.627745,0.245876,0.12493,0.6566,0.668529,0.0647892,0.88234,0.475773,0.456386,0.30514,0.500448,0.628817,0.317415,0.579919,0.439273,0.0352135,0.12198,0.145246,0.38312,0.575416,0.38466,0.262682,0.421779,0.75327,0.617201,0.169885,0.707487,0.0923045,0.531395,0.719481,0.49849,0.325328,0.294618,0.61744,0.0445108,0.799028,0.8113,0.797408,0.880708,0.559623,0.423731,0.295846,0.462961,0.429167,0.50327,0.898262,0.577689,0.00589043,0.885457,0.124646,0.735558,0.388422,0.511994,0.792715,0.0159452,0.559582,0.331268,0.940261,0.833061,0.445869,0.942367,0.78326,0.455406,0.52251,0.390213,0.902899,0.239423,0.893661,0.573657,0.82924,0.796515,0.305897,0.295401,0.655759,0.26057,0.816613,0.544714,0.24393,0.220696,0.965768,0.904207,0.229289,0.876293,0.202068,0.0892859,0.492234,0.451268,0.615839,0.173191,0.499127,0.741164,0.718772,0.177792,0.054043,0.874776,0.823516,0.693298,0.00649911,0.808335,0.0341452,0.471485,0.320372,0.545109,0.0322382,0.209935,0.771206,0.154347,0.749708,0.795898,0.411479,0.400317,0.775295,0.393819,0.0344055,0.395275,0.253401,0.367507,0.0206667,0.475443,0.432168,0.0325249,0.579463,0.644607,0.822526,0.395301,0.721225,0.050036,0.591743,0.562273,0.428799,0.971404,0.774813,0.133762,0.65722,0.248702,0.483443,0.0711858,0.494341,0.656605,0.880191,0.181645,0.29699,0.0460294,0.780038,0.338828,0.373449,0.576773,0.41136,0.096506,0.809949,0.565896,0.170762,0.12889,0.276534,0.0425457,0.672772,0.842475,0.466288,0.405887,0.784759,0.526596,0.723028,0.833749,0.0579552,0.78003,0.577333,0.623824,0.957274,0.13282,0.679007,0.314979,0.0854735,0.695746,0.444094,0.990025,0.197567,0.536715,0.323456,0.450624,0.622576,0.385209,0.0517427,0.118214,0.0185857,0.71204,0.370802,0.471621,0.486022,0.0100845,0.808353,0.847648,0.588724,0.232973,0.508366,0.631223,0.860147,0.973464,0.667776,0.00173521,0.0830334,0.935835,0.821329,0.238474,0.210539,0.908035,0.0616125,0.127772,0.918872,0.767566,0.334126,0.52221,0.0986466,0.0665579,0.909428,0.650188,0.88835,0.26636,0.558288,0.173373,0.166256,0.689841,0.621996,0.826778,0.401259,0.101765,0.708595,0.209165,0.0722554,0.49122,0.660516,0.111226,0.170601,0.954407,0.447557,0.758577,0.945503,0.392653,0.126336,0.810793,0.282726,0.436261,0.112813,0.507082,0.0450084,0.58376,0.358959,0.614073,0.177651,0.762061,0.574074,0.892991,0.433573,0.676101,0.213878,0.47558,0.945423,0.850761,0.503862,0.0944861,0.252731,0.988593,0.315337,0.71385,0.122242,0.138838,0.877328,0.0122069,0.305862,0.910561,0.844137,0.617756,0.792317,0.156087,0.459227,0.858576,0.479885,0.759432,0.301828,0.331456,0.297152,0.463677,0.045638,0.85727,0.882706,0.0997278,0.401174,0.935272,0.223027,0.24822,0.932327,0.740223,0.0507678,0.412465,0.744315,0.795879,0.458388,0.0153484,0.362324,0.0522994,0.171546,0.328549,0.564993,0.528076,0.647924,0.333438,0.713458,0.557131,0.471957,0.146104,0.779518,0.753799,0.765668,0.686894,0.570946,0.407076,0.869843,0.0643835,0.124897,0.918182,0.477642,0.899919,0.798345,0.330883,0.147728,0.323816,0.965859,0.229425,0.63339,0.181686,0.871718,0.203924,0.57415,0.750028,0.715091,0.772963,0.908035,0.671127,0.144095,0.409073,0.97061,0.566521,0.987732,0.937708,0.310681,0.886002,0.216641,0.545172,0.326581,0.637494,0.753654,0.0184578,0.510485,0.926898,0.0441514,0.817752,0.484017,0.685723,0.920602,0.345222,0.375326,0.0193453,0.230743,0.480936,0.788278,0.250022,0.741152,0.055166,0.114498,0.585042,0.748851,0.46719,0.38818,0.712563,0.0473015,0.0673349,0.848972,0.988065,0.793315,0.352968,0.301941,0.970491,0.846685,0.691653,0.1884,0.572119,0.0154282,0.808456,0.169141,0.716231,0.761324,0.364584,0.262826,0.620676,0.556341,0.257666,0.793814,0.769998,0.821543,0.343781,0.674885,0.639287,0.556365,0.74545,0.520842,0.529606,0.00229579,0.490196,0.477437,0.574003,0.481672,0.535293,0.895049,0.501477,0.815453,0.919331,0.971023,0.6067,0.0509744,0.111362,0.958979,0.120408,0.236081,0.264128,0.376144,0.130435,0.144349,0.425596,0.381034,0.704032,0.260258,0.937339,0.998021,0.682283,0.631184,0.701007,0.828714,0.975124,0.311593,0.938758,0.261082,0.901023,0.49675,0.0389439,0.28321,0.500714,0.734554,0.237469,0.302401,0.616323,0.616317,0.0663541,0.0877272,0.476238,0.621558,0.648921,0.11946,0.628471,0.345742,0.324123,0.88846,0.19952,0.125675,0.484145,0.0385729,0.867597,0.281697,0.290398,0.703624,0.777963,0.339123,0.200023,0.394989,0.449464,0.57096,0.519765,0.716524,0.73195,0.457279,0.8852,0.490096,0.666786,0.47805,0.0667264,0.613759,0.905254,0.942447,0.101148,0.149158,0.647432,0.190924,0.827503,0.263345,0.694854,0.983387,0.224365,0.0437499,0.332819,0.190177,0.921435,0.283821,0.653346,0.370744,0.027748,0.626483,0.445088,0.657664,0.583372,0.0353869,0.499615,0.92423,0.756049,0.654612,0.627553,0.685312,0.534319,0.882649,0.716314,0.00679141,0.0668962,0.765241,0.267127,0.699052,0.0317202,0.669027,0.319171,0.263023,0.63278,0.511211,0.954499,0.649485,0.691114,0.122144,0.808568,0.909299,0.747905,0.301102,0.127954,0.804157,0.0598629,0.52513,0.383676,0.268486,0.171563,0.406976,0.190122,0.603688,0.0336873,0.993317,0.716579,0.0618283,0.559389,0.325664,0.0667458,0.306675,0.0518371,0.194875,0.00450218,0.592544,0.646843,0.186202,0.416193,0.325426,0.184479,0.192248,0.31705,0.020325,0.298567,0.130052,0.521948,0.453137,0.477908,0.549724,0.450378,0.558985,0.148726,0.758309,0.684454,0.559745,0.0822746,0.333113,0.689168,0.793941,0.336172,0.649631,0.290263,0.127884,0.846217,0.708709,0.776795,0.438466,0.966515,0.828796,0.522901,0.745374,0.878021,0.878127,0.686512,0.0868224,0.0375865,0.804046,0.659448,0.33102,0.741681,0.350558,0.568724,0.302098,0.980168,0.970502,0.103723,0.231779,0.242453,0.888181,0.76399,0.0770053,0.434384,0.20357,0.613579,0.378576,0.689422,0.54681,0.177305,0.0754235,0.856482,0.537762,0.290281,0.432287,0.347556,0.19577,0.287125,0.0936189,0.961979,0.855922,0.0554983,0.131865,0.0567893,0.209846,0.058056,0.415058,0.149836,0.515657,0.701601,0.452589,0.440217,0.658949,0.455629,0.661182,0.34556,0.935586,0.151298,0.822749,0.850833,0.0899385,0.815146,0.384563,0.960131,0.176672,0.303891,0.0162524,0.311306,0.624178,0.80408,0.569087,0.529655,0.140328,0.156021,0.959308,0.0626209,0.968197,0.62864,0.689078,0.366171,0.737606,0.569709,|0.0443683,0.753359,0.836636,0.243674,0.668921,0.899069,0.828446,0.0615499,0.513349,0.699608,0.236126,0.132267,0.97023,0.0660406,0.867216,0.0679141,0.371825,0.0977294,0.747742,0.147968,0.39642,0.930684,0.532238,0.910647,0.827179,0.678852,0.350382,0.520082,0.810096,0.75478,0.183933,0.890831,0.940034,0.185798,0.154309,0.276153,0.762268,0.881479,0.481862,0.771002,0.736246,0.659922,0.352773,0.0157686,0.753404,0.674269,0.554596,0.35121,0.751974,0.207494,0.843777,0.549978,0.0433157,0.204516,0.654608,0.436003,0.668104,0.228942,0.138312,0.790074,0.269937,0.363303,0.118647,0.00196946,0.651133,0.465981,0.412555,0.24554,0.0832024,0.453496,0.691469,0.334904,0.935174,0.781301,0.751662,0.985665,0.24741,0.961718,0.111315,0.221146,0.316258,0.913352,0.814005,0.806004,0.89927,0.186009,0.0531799,0.820368,0.658724,0.840941,0.717076,0.0718611,0.387627,0.380226,0.84545,0.183858,0.568305,0.890441,0.312232,0.725601,0.829707,0.730135,0.287321,0.510678,0.0948408,0.409039,0.123935,0.784813,0.782047,0.545852,0.535684,0.125856,0.609162,0.945412,0.551067,0.39624,0.579045,0.799173,0.239451,0.819166,0.179506,0.304708,0.646484,0.818452,0.840687,0.546215,0.228542,0.118846,0.800902,0.801585,0.308501,0.597357,0.0922711,0.217217,0.190009,0.794458,0.375414,0.264089,0.284322,0.0210161,0.225054,0.178403,0.388221,0.0365557,0.824636,0.0296908,0.300295,0.195503,0.118373,0.0398982,0.847753,0.355619,0.294933,0.70303,0.411497,0.528838,0.000292122,0.591506,0.241775,0.416949,0.776386,0.73994,0.658505,0.601144,0.0465617,0.0164968,0.803476,0.0503211,0.835192,0.78528,0.23311,0.256105,0.112668,0.452283,0.379581,0.166928,0.235529,0.561774,0.179901,0.459196,0.235877,0.613545,0.893016,0.461386,0.0617625,0.0519022,0.261773,0.603877,0.947227,0.0771302,0.788305,0.754123,0.0541442,0.663138,0.73552,0.972644,0.532023,0.130881,0.0830818,0.491157,0.0794792,0.80312,0.315408,0.981801,0.703636,0.44696,0.135971,0.348617,0.342518,0.202522,0.669593,0.0097689,0.830943,0.452726,0.984484,0.691864,0.87556,0.416683,0.0353595,0.830433,0.334894,0.63056,0.495909,0.0587057,0.831647,0.754952,0.285398,0.583505,0.643418,0.231087,0.659295,0.241786,0.389437,0.264906,0.612152,0.373449,0.882678,0.731169,0.412993,0.382704,0.303607,0.952467,0.992839,0.49982,0.562814,0.877469,0.482675,0.445305,0.102792,0.834214,0.471144,0.103926,0.601046,0.0574046,0.272918,0.652633,0.908862,0.0756314,0.0732268,0.674953,0.574094,0.407657,0.821337,0.355031,0.147812,0.0270479,0.330515,0.401202,0.832843,0.638559,0.950498,0.135116,0.734828,0.214949,0.602198,0.430413,0.164209,0.0914036,0.700795,0.621842,0.413461,0.722402,0.272612,0.524537,0.464743,0.596071,0.600587,0.796601,0.00177699,0.359956,0.571817,0.901581,0.570169,0.0094496,0.24375,0.638636,0.490558,0.435996,0.0910133,0.666449,0.642879,0.176994,0.504257,0.369373,0.80572,0.833281,0.565562,0.901046,0.876288,0.596405,0.465062,0.534955,0.493792,0.583023,0.616702,0.250368,0.260623,0.377167,0.585939,0.85496,0.315555,0.641197,0.715875,0.607921,0.867062,0.967573,0.0855184,0.427122,0.158606,0.331145,0.695176,0.93609,0.351664,0.67494,0.759943,0.319216,0.849257,0.738104,0.523599,0.646118,0.895366,0.0843655,0.28518,0.452098,0.87822,0.80117,0.00451118,0.614803,0.414753,0.401544,0.284884,0.489889,0.761609,0.852439,0.251692,0.969934,0.573793,0.0766515,0.238013,0.783489,0.304856,0.992842,0.0553358,0.823672,0.804495,0.902991,0.668054,0.401914,0.360012,0.477718,0.0945836,0.310758,0.599988,0.618726,0.920502,0.996392,0.228135,0.619972,0.549896,0.807687,0.992694,0.777037,0.28451,0.187053,0.416604,0.671269,0.0709241,0.153534,0.376292,0.270425,0.749387,0.43134,0.323358,0.59332,0.983095,0.79448,0.364467,0.613391,0.670906,0.920029,0.673408,0.632336,0.178895,0.162915,0.813186,0.316561,0.895563,0.268992,0.224515,0.610952,0.106117,0.427135,0.938613,0.244466,8.34465e-05,0.623292,0.193564,0.877664,0.0992847,0.281909,0.259178,0.145291,0.862641,0.716348,0.657983,0.214407,0.221878,0.452457,0.62848,0.52369,0.743371,0.638857,0.302557,0.94337,0.00732183,0.421619,0.199046,0.484966,0.483783,0.0609807,0.261495,0.270903,0.162127,0.177569,0.218887,0.308421,0.936633,0.635702,0.863842,0.230502,0.867482,0.423648,0.41089,0.194929,0.571515,0.913312,0.167958,0.81401,0.193288,0.455895,0.350788,0.48855,0.00703961,0.0502965,0.0682219,0.939406,0.997893,0.109927,0.522049,0.546591,0.384937,0.291986,0.794485,0.630606,0.69942,0.65661,0.331734,0.15655,0.860458,0.254402,0.792267,0.330331,0.408891,0.685799,0.201148,0.149786,0.269943,0.962889,0.645933,0.447125,0.16685,0.179929,0.493657,0.33903,0.129922,0.56092,0.788907,0.0123937,0.573074,0.106872,0.840759,0.307501,0.664063,0.240746,0.565895,0.288164,0.797813,0.790461,0.123639,0.801213,0.878865,0.809098,0.836595,0.53568,0.414647,0.396021,0.149655,0.64244,0.10782,0.761222,0.671859,0.476186,0.00850588,0.619065,0.629495,0.874429,0.44138,0.219395,0.127663,0.966794,0.27588,0.0612534,0.342129,0.257793,0.556817,0.129738,0.470124,0.775783,0.0976601,0.986874,0.433938,0.101919,0.830659,0.731278,0.127122,0.639767,0.356319,0.532849,0.429819,0.407905,0.0568818,0.244765,0.665911,0.460706,0.833799,0.295291,0.252691,0.313276,0.0429581,0.967686,0.832001,0.345383,0.952259,0.771589,0.23987,0.0781332,0.494581,0.520806,0.289721,0.0350951,0.662792,0.785719,0.750639,0.0475391,0.654643,0.247076,0.355801,0.567758,0.0581266,0.231641,0.580833,0.0661957,0.896543,0.913116,0.474288,0.580477,0.45427,0.365136,0.0366235,0.080135,0.468999,0.945653,0.851288,0.84239,0.364869,0.448288,0.888603,0.60701,0.48743,0.221441,0.771827,0.794828,0.832507,0.724985,0.329768,0.854571,0.109282,0.369803,0.92062,0.237172,0.51259,0.309768,0.669613,0.0946485,0.124333,0.210505,0.190291,0.0413139,0.759614,0.419101,0.582941,0.481801,0.490633,0.637328,0.467897,0.375258,0.312717,0.591059,0.712878,0.0764825,0.432758,0.777913,0.729138,0.17574,0.600391,0.34646,0.166118,0.215181,0.0109563,0.797829,0.946478,0.0299916,0.803897,0.589042,0.0551866,0.992146,0.273622,0.314617,0.661925,0.621915,0.796078,0.0841106,0.633215,0.929573,0.941168,0.23926,0.807278,0.10955,0.427392,0.767471,0.719267,0.664301,0.922689,0.504181,0.714306,0.843468,0.13364,0.640024,0.862452,0.221635,0.300336,0.986763,0.702822,0.953354,0.767129,0.656341,0.609265,0.364799,0.0812903,0.802317,0.833213,0.103966,0.412561,0.519118,0.0899228,0.678658,0.564584,0.194809,0.760914,0.391534,0.0582467,0.51074,0.655776,0.932559,0.4555,0.286429,0.46717,0.340762,0.0459604,0.884686,0.288055,0.743754,0.0371356,0.0200337,0.91686,0.63167,0.064353,0.258773,0.39294,0.259755,0.162451,0.342587,0.982708,0.0565552,0.7131,0.0250104,0.306885,0.646408,0.682995,0.17194,0.132538,0.325126,0.22929,0.905312,0.973535,0.412779,0.987047,0.0725128,0.666922,0.980086,0.705338,0.724386,0.330459,0.849284,0.122321,0.433829,0.950033,0.669202,0.201001,0.110339,0.89214,0.144132,0.280046,0.534925,0.792707,0.457297,0.586738,0.78441,0.780271,0.325758,0.475595,0.627239,0.732045,0.860409,0.71541,0.104847,0.973218,0.583146,0.60849,0.30614,0.841875,0.0196091,0.539849,0.24844,0.567517,0.458277,0.847328,0.637511,0.240598,0.387305,0.256037,0.427772,0.835844,0.200222,0.53208,0.0251867,0.127086,0.590316,0.71667,0.119222,0.604589,0.942643,0.41739,0.24311,0.662358,0.928694,0.0555841,0.511698,0.531857,0.770349,0.147555,0.0238715,0.774737,0.382238,0.242511,0.687623,0.219981,0.655041,0.802765,0.30428,0.627652,0.517057,0.782654,0.789283,0.757848,0.26773,0.878852,0.723152,0.544385,0.0675147,0.483679,0.986974,0.778381,0.552624,0.323406,0.848231,0.845017,0.0907975,0.0936653,0.330769,0.245988,0.551045,0.732914,0.771709,0.078425,0.355373,0.618339,0.899021,0.52552,0.361229,0.191242,0.920318,0.890527,0.851665,0.574013,0.22252,0.677083,0.352642,0.499213,0.0133966,0.0731502,0.64551,0.23741,0.538153,0.483433,0.191746,0.357669,0.368054,0.800713,0.52576,0.535767,0.263193,0.228492,0.858094,0.686711,0.078303,0.606287,0.32986,0.26681,0.948184,0.998554,0.634083,0.86841,0.768633,0.265321,0.163718,0.822601,0.690235,0.135147,0.656369,0.864602,0.475298,0.14443,0.0825496,0.61208,0.796374,0.304801,0.786114,0.397235,0.919185,0.273238,0.228267,0.651721,0.576535,0.0975158,0.500076,0.157331,0.466988,0.0775425,0.765072,0.153885,0.215527,0.526176,0.930185,0.928987,0.379128,0.647651,0.0381924,0.703303,0.461036,0.0901076,0.324124,0.0513446,0.0393106,0.274075,0.0326811,0.372549,0.348753,0.902446,0.794548,0.5102,0.094354,0.359554,0.219067,0.391616,0.590927,0.127349,0.778262,0.567814,0.177161,0.321918,0.435457,0.735297,0.507391,0.765243,0.056034,0.572575,0.536192,0.314733,0.944834,0.573155,0.633542,0.158614,0.679153,0.959567,0.620675,0.955847,0.215548,0.298713,0.0363839,0.370717,0.221817,0.680324,0.116917,0.981881,0.706315,0.306462,0.887126,0.0303026,0.581052,0.63258,0.271425,0.936483,0.994418,0.909572,0.219771,0.340858,0.556164,0.373053,0.435064,0.450092,0.623782,0.826569,0.493973,0.96408,0.187333,0.850723,0.647703,0.836831,0.95209,0.657537,0.365378,0.582192,0.194756,0.514004,0.536315,0.168233,0.706756,0.900524,0.680969,0.187217,0.454579,0.712091,0.202561,0.427189,0.264877,0.758127,0.255876,0.796116,0.113741,0.954311,0.739175,0.125508,0.835124,0.307594,0.900199,0.915847,0.901435,0.447592,0.971492,|0.121066,0.31732,0.833423,0.828914,0.0444353,0.617082,0.624654,0.217334,0.490825,0.402505,0.813425,0.554239,0.455223,0.363455,0.380295,0.174953,0.566411,0.297711,0.581607,0.914387,0.947326,0.829862,0.0397274,0.716818,0.818527,0.318185,0.0996616,0.538821,0.538058,0.517173,0.758561,0.301067,0.100172,0.779223,0.282185,0.552995,0.524159,0.786103,0.635322,0.196963,0.138888,0.86083,0.00472969,0.54052,0.769821,0.851929,0.309534,0.440582,0.00907713,0.808213,0.813357,0.442729,0.948668,0.650026,0.759326,0.209712,0.182893,0.625483,0.589611,0.675185,0.092443,0.584124,0.897162,0.253233,0.568726,0.654872,0.905539,0.974946,0.825778,0.121531,0.38045,0.210101,0.643217,0.0304108,0.757538,0.12167,0.900337,0.98529,0.817392,0.912167,0.632953,0.507165,0.673804,0.575757,0.0651827,0.636894,0.589376,0.0822367,0.577871,0.70265,0.82149,0.707354,0.921203,0.468682,0.91502,0.329267,0.112978,0.078749,0.84615,0.287422,0.735358,0.0785233,0.530379,0.828736,0.754917,0.877476,0.106095,0.654142,0.559298,0.68041,0.869238,0.660492,0.981059,0.0131595,0.645814,0.630493,0.828266,0.410266,0.437822,0.167754,0.713431,0.680165,0.93873,0.6888,0.395544,0.191444,0.88788,0.273583,0.380196,0.354552,0.76999,0.864463,0.229957,0.661784,0.682388,0.475644,0.67249,0.987723,0.397539,0.713778,0.356793,0.668938,0.977158,0.0357421,0.0226778,0.867684,0.748466,0.916669,0.616764,0.213628,0.376905,0.343936,0.159847,0.225309,0.178371,0.93501,0.0889255,0.165685,0.886992,0.123997,0.790367,0.842455,0.917762,0.5663,0.405962,0.573118,0.450089,0.573864,0.307985,0.537923,0.0988861,0.87721,0.385019,0.692589,0.182134,0.586226,0.183794,0.953577,0.11458,0.320344,0.303041,0.476091,0.632646,0.403112,0.169186,0.292829,0.333457,0.78327,0.353008,0.74235,0.781669,0.755714,0.405221,0.939224,0.704339,0.0601562,0.714783,0.129546,0.38157,0.606791,0.924228,0.805241,0.770714,0.92985,0.754142,0.0501456,0.0333787,0.254594,0.7521,0.851878,0.257968,0.68532,0.572044,0.125089,0.848294,0.960918,0.89928,0.961832,0.0549278,0.37459,0.215625,0.749657,0.602537,0.696326,0.968905,0.340608,0.606133,0.653371,0.0749222,0.099969,0.769264,0.524597,0.926282,0.84802,0.511577,0.0369244,0.197016,0.132196,0.22195,0.765683,0.948552,0.730377,0.292001,0.413281,0.263959,0.817894,0.197473,0.424952,0.797723,0.14972,0.162191,0.642408,0.241232,0.641788,0.620596,0.901105,0.915639,0.673651,0.442848,0.927379,0.196475,0.880841,0.989953,0.854152,0.859939,0.188255,0.588157,0.229335,0.651659,0.921002,0.678961,0.637889,0.0935113,0.932101,0.940577,0.635083,0.249173,0.411961,0.779665,0.581407,0.172073,0.978731,0.288306,0.120986,0.866817,0.559478,0.0528798,0.98264,0.14139,0.986028,0.667518,0.378027,0.857496,0.852039,0.85862,0.151074,0.00175291,0.498122,0.413753,0.446482,0.419161,0.283453,0.228317,0.378723,0.898525,0.275827,0.387897,0.9193,0.370735,0.482018,0.762237,0.730628,0.0826551,0.934399,0.688669,0.0529613,0.769473,0.709938,0.413476,0.926312,0.561104,0.544821,0.781576,0.444676,0.521178,0.344175,0.963977,0.449453,0.950078,0.07576,0.853693,0.0209131,0.720665,0.788135,0.350977,0.474888,0.0598497,0.3467,0.705947,0.25203,0.185442,0.804141,0.393806,0.0468789,0.21354,0.375753,0.382234,0.455445,0.565668,0.931768,0.291402,0.286811,0.567816,0.55951,0.0718425,0.41318,0.627755,0.0911072,0.544065,0.156554,0.386243,0.850997,0.413903,0.0903817,0.633763,0.0184011,0.709949,0.289578,0.135331,0.108471,0.391136,0.186124,0.912904,0.237073,0.511632,0.0735487,0.0302262,0.867485,0.797055,0.280799,0.820414,0.830354,0.3324,0.613597,0.617148,0.405158,0.771964,0.0850663,0.638503,0.564021,0.488231,0.760973,0.283619,0.786934,0.203152,0.0152467,0.162938,0.976542,0.364254,0.167852,0.601331,0.521398,0.0714543,0.155865,0.665497,0.907104,0.262642,0.707021,0.380946,0.117019,0.525559,0.286811,0.509042,0.111697,0.0185373,0.915515,0.603083,0.939074,0.526838,0.546194,0.37864,0.86778,0.912692,0.423901,0.409463,0.856262,0.0909436,0.291461,0.674706,0.515114,0.0838468,0.00435305,0.0153713,0.561516,0.68953,0.677592,0.467535,0.282142,0.994661,0.305911,0.829307,0.962178,0.503306,0.277865,0.82981,0.719846,0.0497655,0.111592,0.550085,0.38356,0.585241,0.0244568,0.0473071,0.575475,0.490251,0.290867,0.832031,0.653476,0.920205,0.311053,0.0648122,0.13598,0.441658,0.597208,0.0819646,0.0932149,0.905998,0.591564,0.992989,0.877776,0.136628,0.419879,0.465766,0.932476,0.405704,0.8604,0.283385,0.774192,0.679173,0.202232,0.828638,0.173009,0.712439,0.529406,0.552982,0.489309,0.134014,0.788537,0.382408,0.124798,0.574287,0.926921,0.966415,0.377544,0.171716,0.0273125,0.480814,0.894913,0.828444,0.830965,0.428064,0.199097,0.461169,0.937138,0.0817845,0.302829,0.401655,0.1902,0.338298,0.0411816,0.807157,0.980872,0.496034,0.419472,0.00853646,0.282406,0.248903,0.882454,0.443289,0.365471,0.755832,0.86448,0.279155,0.959142,0.439176,0.260715,0.00154853,0.262301,0.265095,0.795617,0.501513,0.319702,0.708714,0.711965,0.310329,0.252929,0.167289,0.00904357,0.28949,0.743532,0.0429428,0.170078,0.397101,0.744851,0.252447,0.0403231,0.587492,0.0493916,0.521907,0.901008,0.132008,0.146076,0.470373,0.303105,0.587979,0.828675,0.0914965,0.382149,0.545874,0.234853,0.7522,0.906638,0.813065,0.649487,0.489076,0.635024,0.552844,0.886268,0.102504,0.0905191,0.520053,0.801115,0.412828,0.467492,0.832413,0.124772,0.834326,0.770836,0.944921,0.596047,0.198342,0.176374,0.384523,0.912932,0.997126,0.950099,0.09737,0.941552,0.798934,0.0928548,0.939327,0.318619,0.433873,0.869032,0.72121,0.857715,0.759236,0.911969,0.27727,0.406258,0.296732,0.819638,0.567719,0.854601,0.0586954,0.102447,0.856554,0.240971,0.654769,0.481859,0.397361,0.767872,0.952592,0.435082,0.327,0.600252,0.699421,0.145786,0.924288,0.904371,0.586227,0.793071,0.153615,0.614175,0.226287,0.870552,0.47475,0.830467,0.789967,0.534314,0.179506,0.133552,0.00164241,0.432079,0.784411,0.366553,0.647526,0.126637,0.843205,0.0660535,0.770046,0.990198,0.914588,0.125506,0.571377,0.72772,0.818088,0.370363,0.988689,0.167362,0.188322,0.810962,0.136462,0.343457,0.178321,0.530775,0.0160036,0.529946,0.189493,0.783602,0.889674,0.883487,0.0683933,0.789607,0.610261,0.705885,0.194947,0.84759,0.538193,0.780932,0.0965372,0.439764,0.362653,0.676556,0.156598,0.891912,0.416232,0.241214,0.391245,0.903029,0.643088,0.394651,0.400567,0.436864,0.544793,0.0757858,0.144659,0.0536682,0.495633,0.525416,0.555866,0.543759,0.00921404,0.946376,0.885211,0.395624,0.987349,0.232451,0.624908,0.972164,0.256566,0.31016,0.932337,0.361986,0.659682,0.31509,0.277374,0.919209,0.497944,0.530324,0.932267,0.0545847,0.875743,0.808659,0.227433,0.979825,0.947131,0.113225,0.360181,0.270034,0.965243,0.399224,0.742236,0.88337,0.593831,0.821888,0.977327,0.971214,0.271796,0.757168,0.125737,0.990589,0.592857,0.0305053,0.172424,0.17289,0.831101,0.166542,0.633806,0.442154,0.057479,0.474059,0.536683,0.624441,0.488788,0.731683,0.671304,0.0599391,0.328529,0.528616,0.601191,0.393549,0.742907,0.338615,0.383349,0.30236,0.652727,0.00176209,0.806854,0.643594,0.175957,0.161343,0.454616,0.442809,0.633834,0.138129,0.413582,0.957047,0.644594,0.867804,0.317459,0.721887,0.680166,0.858875,0.101326,0.681537,0.798508,0.896294,0.364511,0.00601047,0.870678,0.686244,0.503859,0.471456,0.618636,0.632644,0.714875,0.121366,0.459699,0.825798,0.24215,0.992112,0.687898,0.538689,0.801521,0.686225,0.930391,0.546689,0.578601,0.212284,0.905542,0.754153,0.0173994,0.467403,0.420212,0.232921,0.500428,0.965276,0.730799,0.043607,0.336813,0.0852877,0.511516,0.998489,0.341431,0.452571,0.615745,0.530088,0.252654,0.394996,0.401906,0.954043,0.50656,0.770734,0.754731,0.22758,0.188652,0.996727,0.14076,0.479263,0.534301,0.330701,0.0402425,0.874901,0.741208,0.32977,0.931382,0.111077,0.64507,0.552033,0.422103,0.266664,0.0686087,0.559629,0.516005,0.814024,0.324813,0.83731,0.139691,0.493405,0.988363,0.30975,0.315249,0.773494,0.816239,0.542983,0.91354,0.0911725,0.964097,0.626318,0.669482,0.684884,0.0468774,0.0511097,0.0580502,0.967238,0.796741,0.949228,0.057817,0.346113,0.932152,0.900611,0.0394316,0.756323,0.682391,0.198995,0.120285,0.114099,0.54397,0.0232924,0.27104,0.343973,0.829693,0.47792,0.0271658,0.0118604,0.686735,0.728069,0.97243,0.443111,0.116095,0.965937,0.736643,0.602462,0.774239,0.693842,0.62425,0.464149,0.412518,0.601571,0.36629,0.878039,0.307825,0.816293,0.251601,0.719133,0.293537,0.588094,0.297355,0.126108,0.728923,0.748214,0.426893,0.0996215,0.667568,0.793611,0.957889,0.362493,0.424301,0.696913,0.792049,0.975224,0.0778992,0.492517,0.311655,0.768955,0.326786,0.565993,0.309564,0.867472,0.920626,0.889428,0.280319,0.361303,0.549715,0.6126,0.993058,0.269587,0.611151,0.152617,0.266728,0.656477,0.678884,0.635123,0.40139,0.824584,0.46672,0.149723,0.155008,0.420295,0.869132,0.943922,0.122129,0.809168,0.358919,0.714678,0.0315223,0.839238,0.757478,0.265343,0.690069,0.986449,0.132836,0.112316,0.491578,0.339339,0.840154,0.996523,0.74892,0.971177,0.962573,0.407897,0.413329,0.871064,0.125133,0.066896,0.963345,0.528588,0.826899,0.806638,0.346826,0.378673,0.339709,0.423733,0.859797,0.111526,0.274995,0.414935,0.229235,0.890014,0.728023,0.980531,0.259565,0.635909,0.210016,0.878703,0.937072,0.225373,0.9688,0.688689,|0.679714,0.5736,0.523964,0.399351,0.460516,0.585544,0.529448,0.0040195,0.0222119,0.443511,0.484447,0.950386,0.246802,0.0713928,0.321814,0.72502,0.091386,0.770257,0.337732,0.530997,0.567937,0.457867,0.917245,0.809896,0.0989253,0.691474,0.37751,0.481728,0.482097,0.244254,0.410845,0.11972,0.191545,0.320709,0.930812,0.358758,0.95792,0.517965,0.29403,0.878779,0.899663,0.51097,0.655116,0.391804,0.593788,0.268301,0.892114,0.0146693,0.213607,0.528204,0.280721,0.353205,0.152341,0.292566,0.980643,0.36245,0.607396,0.971165,0.725223,0.136713,0.629865,0.0657887,0.0639804,0.636169,0.652536,0.44125,0.940209,0.14678,0.613915,0.494265,0.706374,0.422454,0.615031,0.825014,0.298648,0.262594,0.273869,0.145702,0.352987,0.0180443,0.0199313,0.704138,0.218543,0.443636,0.425921,0.872658,0.331686,0.216829,0.463888,0.0946171,0.000432253,0.585598,0.127763,0.731306,0.198784,0.557288,0.561354,0.513965,0.478307,0.0344514,0.935472,0.474688,0.2431,0.472474,0.411993,0.213573,0.0854908,0.473078,0.49441,0.357609,0.418499,0.0441844,0.637722,0.25439,0.453705,0.00252843,0.228537,0.595125,0.301051,0.860949,0.146722,0.123852,0.791202,0.520741,0.61351,0.567418,0.215078,0.662677,0.428551,0.0943877,0.493484,0.237798,0.66744,0.263086,0.0920842,0.872592,0.374551,0.06551,0.117401,0.694171,0.364188,0.243108,0.147371,0.482256,0.258412,0.922396,0.0515552,0.00679272,0.29806,0.123348,0.652397,0.22229,0.149951,0.210274,0.7954,0.0690026,0.456,0.225452,0.967675,0.116241,0.333428,0.272295,0.0989916,0.000262797,0.583591,0.594869,0.143879,0.790171,0.272572,0.357497,0.508355,0.912937,0.861548,0.68331,0.0348405,0.812074,0.505705,0.540031,0.537207,0.416732,0.552142,0.454459,0.877256,0.640212,0.533788,0.043915,0.95115,0.0968162,0.954342,0.983473,0.793347,0.153992,0.611515,0.781147,0.296847,0.234874,0.0335624,0.57829,0.47952,0.141588,0.0921196,0.037223,0.619556,0.320207,0.334542,0.73182,0.842038,0.39497,0.502711,0.249061,0.670709,0.377681,0.957245,0.276496,0.6724,0.0490516,0.493233,0.278752,0.126902,0.272625,0.966977,0.157594,0.367563,0.0409082,0.46278,0.406324,0.456923,0.729002,0.673691,0.646332,0.326538,0.165094,0.969211,0.745366,0.224597,0.108423,0.771271,0.652476,0.563343,0.941686,0.215511,0.49963,0.736019,0.762174,0.13584,0.165845,0.0283172,0.0573776,0.70708,0.879607,0.563724,0.741596,0.954922,0.477955,0.939212,0.484295,0.129036,0.0104934,0.278736,0.4255,0.731074,0.246834,0.272621,0.488576,0.663209,0.205839,0.260529,0.353404,0.66469,0.956426,0.891343,0.757069,0.571952,0.146924,0.328165,0.33842,0.175665,0.149396,0.30449,0.946669,0.884351,0.830245,0.772697,0.625511,0.0701444,0.36062,0.177711,0.0550972,0.368173,0.329799,0.774087,0.430643,0.562221,0.338668,0.220019,0.789551,0.448449,0.496624,0.451129,0.00849104,0.180324,0.996607,0.0611675,0.439923,0.752988,0.581183,0.662955,0.578154,0.00858665,0.724105,0.869797,0.897652,0.229933,0.00970286,0.0287016,0.0885924,0.309691,0.243537,0.679719,0.931166,0.667277,0.859622,0.568477,0.873655,0.887706,0.969062,0.91857,0.0800924,0.189182,0.830648,0.90658,0.0656782,0.0874414,0.261636,0.0162385,0.699446,0.280041,0.463717,0.902524,0.66862,0.618371,0.223609,0.0503745,0.828247,0.0185994,0.960198,0.814317,0.921136,0.262519,0.959585,0.942077,0.868071,0.00594622,0.788372,0.376754,0.326401,0.959196,0.300311,0.923323,0.55463,0.930685,0.988416,0.365702,0.283196,0.673732,0.0305095,0.0484246,0.100907,0.483648,0.586141,0.866334,0.073204,0.226244,0.397368,0.310765,0.935436,0.062897,0.353198,0.879413,0.212216,0.7618,0.94284,0.0697718,0.823244,0.84292,0.224611,0.619127,0.704139,0.638303,0.969239,0.219821,0.447419,0.309025,0.834637,0.567075,0.659088,0.815115,0.458922,0.562793,0.941507,0.218195,0.209379,0.894225,0.909732,0.645493,0.111426,0.0348986,0.392645,0.0385033,0.188487,0.0966675,0.77631,0.0529358,0.250093,0.331358,0.0351481,0.175114,0.796087,0.0553568,0.596676,0.150605,0.0613232,0.804394,0.802771,0.168943,0.697055,0.94109,0.34377,0.714654,0.408516,0.61191,0.808572,0.151268,0.022864,0.475426,0.0922697,0.856204,0.693247,0.630552,0.232425,0.607426,0.239624,0.860993,0.670987,0.554774,0.649802,0.925331,0.276722,0.766862,0.0439742,0.677965,0.978232,0.696827,0.850008,0.964472,0.258437,0.61625,0.354546,0.255592,0.177531,0.11231,0.658728,0.564771,0.164273,0.0765861,0.600743,0.828201,0.889109,0.823113,0.117372,0.225446,0.16678,0.852374,0.790299,0.241763,0.848408,0.820077,0.525511,0.178094,0.206911,0.790891,0.194937,0.546829,0.884684,0.881558,0.890307,0.138499,0.0315997,0.739343,0.00809711,0.600412,0.665834,0.936679,0.731863,0.778017,0.378914,0.54821,0.161366,0.771287,0.474231,0.864496,0.275676,0.224091,0.973787,0.04689,0.477683,0.230938,0.454026,0.344631,0.160722,0.328685,0.345025,0.0390137,0.37934,0.328624,0.99315,0.627665,0.656925,0.152164,0.801907,0.860209,0.674363,0.447837,0.0395466,0.801161,0.481691,0.799391,0.506525,0.874267,0.345758,0.075556,0.963729,0.817538,0.3369,0.980662,0.441863,0.346998,0.9705,0.633308,0.344907,0.977391,0.808262,0.184332,0.0172246,0.33253,0.359437,0.106975,0.400806,0.716494,0.889591,0.294507,0.883204,0.0431793,0.37194,0.665286,0.949833,0.0184866,0.216824,0.578744,0.0524909,0.571366,0.69855,0.238939,0.449444,0.44837,0.112729,0.282169,0.614738,0.904201,0.771331,0.451894,0.198882,0.783319,0.431803,0.883806,0.904563,0.0148723,0.572635,0.56229,0.339704,0.570954,0.865247,0.306439,0.272163,0.622574,0.554808,0.98447,0.765679,0.155588,0.965123,0.702836,0.388277,0.790324,0.861734,0.906235,0.904968,0.920023,0.278466,0.190407,0.272328,0.623499,0.691665,0.18914,0.658926,0.381614,0.0654206,0.911071,0.655761,0.28626,0.940925,0.0226571,0.254432,0.0419061,0.067646,0.640337,0.596634,0.882972,0.497524,0.914741,0.010672,0.113599,0.490795,0.155405,0.191202,0.681947,0.167874,0.691162,0.92274,0.383384,0.613727,0.411863,0.786047,0.268363,0.356547,0.903791,0.824849,0.526258,0.422104,0.846108,0.824444,0.258269,0.633068,0.710291,0.373344,0.896347,0.944497,0.725907,0.737838,0.465662,0.472997,0.35369,0.0219747,0.375639,0.387705,0.780678,0.593938,0.58993,0.667399,0.739717,0.112276,0.551266,0.664378,0.782547,0.37503,0.230684,0.246033,0.271999,0.238803,0.290671,0.380989,0.394833,0.349299,0.874816,0.400226,0.535416,0.388295,0.735173,0.920405,0.915888,0.541871,0.626803,0.0834646,0.948596,0.491556,0.318745,0.44147,0.738091,0.146588,0.236893,0.868709,0.689995,0.377453,0.55033,0.325353,0.358243,0.265177,0.710699,0.773405,0.990435,0.173343,0.794406,0.459629,0.835127,0.815073,0.0783644,0.0545447,0.213881,0.204521,0.515499,0.272313,0.209639,0.131458,0.516597,0.110165,0.979939,0.492848,0.72877,0.341171,0.0200439,0.936341,0.442145,0.740572,0.429976,0.913371,0.448082,0.959731,0.172571,0.508093,0.285539,0.861934,0.622783,0.555073,0.551793,0.75353,0.452282,0.0910122,0.35733,0.878997,0.989201,0.157936,0.566595,0.521371,0.361096,0.67605,0.754093,0.382798,0.88434,0.985094,0.506505,0.349903,0.0934294,0.0745897,0.296674,0.1038,0.385256,0.323402,0.957323,0.70608,0.0441867,0.647805,0.931537,0.201309,0.93142,0.678629,0.89652,0.15463,0.333665,0.0800719,0.124255,0.428048,0.887782,0.51133,0.679469,0.397715,0.410876,0.328354,0.308398,0.303941,0.135153,0.297171,0.65467,0.380876,0.649753,0.134202,0.737338,0.332633,0.629778,0.594481,0.265711,0.960163,0.906663,0.903045,0.404803,0.156158,0.216512,0.0776621,0.599302,0.486389,0.13222,0.316795,0.389402,0.199814,0.425839,0.382082,0.982587,0.9113,0.194971,0.0297177,0.290115,0.397555,0.786132,0.371476,0.339149,0.43866,0.959093,0.652771,0.946985,0.65452,0.249409,0.826855,0.577538,0.954657,0.0200729,0.571403,0.821469,0.708748,0.445014,0.412002,0.321144,0.357111,0.804065,0.957624,0.978098,0.962299,0.737524,0.276662,0.805551,0.933621,0.201497,0.927109,0.679356,0.519536,0.146391,0.469186,0.436227,0.934698,0.253001,0.309769,0.796797,0.670088,0.669231,0.83324,0.9971,0.640908,0.319906,0.377606,0.695298,0.134727,0.834599,0.592549,0.358297,0.42506,0.506252,0.88679,0.608447,0.429668,0.177573,0.927884,0.00297719,0.797425,0.569181,0.615089,0.424402,0.758945,0.331939,0.656852,0.115447,0.93722,0.80456,0.400671,0.0561751,0.705227,0.109388,0.0997238,0.474319,0.68827,0.690028,0.178157,0.953454,0.45793,0.962769,0.912251,0.0955111,0.975293,0.872543,0.14225,0.655154,0.096275,0.767921,0.849972,0.238818,0.83536,0.586534,0.81491,0.565835,0.663748,0.174254,0.699974,0.0355484,0.133221,0.763598,0.594183,0.932938,0.496114,0.103422,0.354166,0.568456,0.337133,0.0166139,0.987448,0.520136,0.863318,0.488224,0.907648,0.40986,0.62986,0.157544,0.734356,0.376937,0.416079,0.698557,0.0938957,0.316287,0.812899,0.923257,0.15439,0.527086,0.519293,0.705373,0.751936,0.186134,0.614586,0.372674,0.664562,0.940019,0.958811,0.415929,0.863792,0.741944,0.176434,0.362413,0.313797,0.908164,0.26486,0.330112,0.603369,0.77981,0.678139,0.0124156,0.257333,0.699224,0.091974,0.636455,0.130632,0.510297,0.185444,0.0966911,0.343367,0.886756,0.198291,0.52003,0.516313,0.239837,0.886509,0.577776,0.715791,0.512427,0.47106,0.199468,0.618643,0.276506,0.0856676,0.401212,0.383254,0.862482,0.061994,0.418516,0.818491,0.72635,0.463363,0.714168,0.262274,0.778238,0.863849,0.63249,0.571956,0.498928,0.597117,0.678706,0.216899,|0.260609,0.619418,0.517101,0.0874094,0.314417,0.969102,0.184571,0.687607,0.947083,0.730516,0.96329,0.216769,0.154051,0.39437,0.751623,0.480014,0.199541,0.269008,0.244435,0.904941,0.0556114,0.723565,0.912126,0.667087,0.492015,0.0491592,0.279234,0.689675,0.478848,0.441534,0.116362,0.468802,0.390556,0.381095,0.222729,0.563776,0.821133,0.0305523,0.62933,0.268016,0.105925,0.362494,0.842972,0.0201598,0.888285,0.433814,0.351561,0.547499,0.638049,0.361898,0.790328,0.887832,0.261274,0.317882,0.35134,0.824933,0.71128,0.805151,0.216366,0.19681,0.596136,0.623128,0.350549,0.985887,0.751253,0.491606,0.256862,0.115522,0.815012,0.972859,0.272136,0.65568,0.569158,0.121982,0.225241,0.65051,0.851966,0.965532,0.798931,0.855511,0.628546,0.0788712,0.996589,0.684241,0.29254,0.640395,0.240306,0.0461549,0.907054,0.720721,0.596319,0.0383811,0.482107,0.846373,0.017229,0.117507,0.18009,0.288558,0.604519,0.475437,0.4573,0.993349,0.113159,0.83958,0.559535,0.981378,0.629266,0.782683,0.235072,0.446778,0.387647,0.0147496,0.240022,0.324339,0.346555,0.181933,0.512699,0.183468,0.834743,0.645346,0.286336,0.74812,0.315361,0.393248,0.00793576,0.925654,0.844725,0.470308,0.467935,0.040108,0.377999,0.938605,0.393463,0.245747,0.11867,0.919854,0.413239,0.967295,0.959764,0.798426,0.0780853,0.5819,0.36073,0.711754,0.750133,0.475613,0.518262,0.938889,0.52961,0.981358,0.409932,0.197056,0.534862,0.104758,0.443273,0.535954,0.81246,0.0297925,0.0795805,0.261463,0.0390096,0.608441,0.992441,0.102842,0.0873986,0.846615,0.356143,0.0267491,0.160023,0.309629,0.285774,0.00270277,0.783,0.56257,0.0156468,0.323155,0.346075,0.738367,0.0534745,0.65586,0.784395,0.455768,0.0760704,0.48553,0.994683,0.930175,0.550149,0.658583,0.540151,0.23313,0.432741,0.168876,0.346645,0.358761,0.350702,0.601238,0.549384,0.96485,0.290741,0.17868,0.5726,0.28218,0.67127,0.202538,0.550276,0.937028,0.640311,0.163676,0.235882,0.747287,0.232384,0.528494,0.0733061,0.811008,0.909118,0.157068,0.7905,0.213209,0.692286,0.957091,0.656192,0.446127,0.086069,0.954005,0.553577,0.214217,0.13765,0.17875,0.703987,0.320882,0.849974,0.240494,0.398677,0.64833,0.480473,0.0716947,0.418529,0.964465,0.647692,0.984789,0.377871,0.425783,0.682522,0.842573,0.839238,0.137235,0.102197,0.401685,0.686262,0.769594,0.503064,0.162613,0.102001,0.118643,0.634584,0.0419623,0.324307,0.709433,0.882555,0.866018,0.672679,0.133931,0.135873,0.75451,0.581919,0.514348,0.562211,0.993049,0.0195927,0.104336,0.422826,0.194811,0.934118,0.668241,0.607163,0.736119,0.211711,0.346082,0.927777,0.654967,0.392439,0.917575,0.43987,0.676588,0.390295,0.419506,0.229471,0.685003,0.995493,0.854116,0.756848,0.44437,0.891123,0.922525,0.731449,0.798523,0.0581411,0.828034,0.976963,0.446662,0.174321,0.896678,0.529639,0.738723,0.658663,0.0329776,0.195612,0.76482,0.499941,0.472926,0.759976,0.441642,0.304935,0.445298,0.584625,0.044036,0.24926,0.704753,0.495454,0.679311,0.045925,0.716193,0.0750792,0.243623,0.92319,0.424873,0.889026,0.79873,0.0932646,0.0215797,0.915185,0.118716,0.971774,0.547725,0.300838,0.120607,0.00698304,0.540183,0.961289,0.327404,0.79001,0.694147,0.0935101,0.698686,0.638752,0.0107937,0.0751733,0.29108,0.744252,0.2802,0.294581,0.753157,0.947477,0.792065,0.64077,0.402632,0.301022,0.725709,0.379769,0.159009,0.961367,0.390719,0.938844,0.055039,0.373195,0.464953,0.257024,0.564634,0.0175239,0.671866,0.0276923,0.315919,0.632054,0.211773,0.327379,0.320281,0.198584,0.790634,0.862484,0.548938,0.788906,0.458152,0.844725,0.88559,0.707665,0.146192,0.329062,0.0471538,0.951826,0.578986,0.731173,0.100789,0.689034,0.457521,0.675182,0.772639,0.241213,0.168838,0.556566,0.606476,0.632365,0.329325,0.268943,0.570892,0.605971,0.774845,0.745295,0.198537,0.387405,0.650368,0.637664,0.972384,0.880799,0.854052,0.724384,0.177315,0.263139,0.773516,0.274952,0.364106,0.86449,0.504434,0.401411,0.803206,0.0524729,0.77438,0.637007,0.453284,0.487577,0.260524,0.00201803,0.045318,0.6742,0.434994,0.306194,0.0611498,0.575898,0.650474,0.664722,0.426576,0.344357,0.269373,0.278687,0.130118,0.609416,0.806002,0.109646,0.491292,0.809826,0.25736,0.156147,0.981078,0.525183,0.767466,0.808422,0.791253,0.932513,0.277104,0.595676,0.897718,0.854813,0.763226,0.595248,0.491594,0.698585,0.7156,0.943704,0.98843,0.222839,0.265712,0.960887,0.805755,0.0713649,0.43137,0.570962,0.904202,0.784594,0.85832,0.711013,0.653685,0.640402,0.0262455,0.568033,0.288958,0.14919,0.586739,0.373984,0.521438,0.124985,0.444525,0.880566,0.659202,0.265087,0.430258,0.699922,0.682092,0.727359,0.537277,0.502884,0.849223,0.833054,0.67692,0.884932,0.466975,0.0851141,0.118644,0.701202,0.671341,0.990568,0.207136,0.506405,0.78065,0.705673,0.763064,0.753569,0.299856,0.0376847,0.27353,0.369413,0.899931,0.837836,0.894987,0.518432,0.202143,0.924725,0.431973,0.861861,0.463126,0.458032,0.545832,0.925037,0.736432,0.793539,0.857559,0.269136,0.420574,0.0554518,0.604322,0.342602,0.189061,0.915632,0.86368,0.0313536,0.428218,0.053774,0.318293,0.494053,0.769189,0.720539,0.504351,0.429987,0.696117,0.640833,0.358768,0.326646,0.584695,0.642535,0.698918,0.591192,0.993496,0.924218,0.216144,0.524508,0.726432,0.258595,0.23065,0.519985,0.885485,0.819803,0.267589,0.880728,0.112842,0.961535,0.715869,0.999196,0.0322499,0.390586,0.241028,0.645995,0.82425,0.648862,0.504163,0.441277,0.41207,0.828291,0.930501,0.503795,0.200099,0.516451,0.495808,0.563157,0.798394,0.977699,0.642931,0.788913,0.516434,0.097244,0.118203,0.202825,0.710798,0.670398,0.248385,0.0793673,0.88551,0.902394,0.189486,0.435677,0.831545,0.0328609,0.72392,0.987231,0.395508,0.851753,0.750435,0.0954161,0.657708,0.351118,0.773461,0.568094,0.693611,0.164466,0.802329,0.641924,0.649925,0.157514,0.202896,0.850386,0.668939,0.518399,0.424965,0.644295,0.572318,0.915862,0.565839,0.495167,0.771671,0.204925,0.323313,0.540183,0.80683,0.146004,0.28814,0.504692,0.542241,0.55972,0.617419,0.327428,0.102224,0.518234,0.557643,0.782804,0.212282,0.550858,0.125351,0.683953,0.642042,0.369663,0.361282,0.714205,0.340755,0.0714995,0.482762,0.937299,0.133376,0.147908,0.838621,0.26665,0.74879,0.393142,0.10223,0.577357,0.41649,0.495802,0.685135,0.420393,0.65378,0.157609,0.698344,0.617398,0.370549,0.880524,0.770782,0.22187,0.260004,0.94038,0.0741343,0.662427,0.689094,0.751061,0.18568,0.261687,0.421405,0.238469,0.644497,0.348926,0.584534,0.529648,0.491088,0.973315,0.555805,0.437879,0.976447,0.813136,0.0783646,0.0477731,0.763941,0.89166,0.116063,0.528237,0.561749,0.783978,0.69794,0.223984,0.343061,0.376178,0.0220807,0.149078,0.0145143,0.906625,0.74305,0.106101,0.934648,0.803924,0.000809252,0.59817,0.647456,0.808525,0.424147,0.680858,0.565933,0.0881665,0.837237,0.577792,0.490471,0.812153,0.0695856,0.214842,0.24255,0.966335,0.275908,0.171338,0.0316157,0.599644,0.237758,0.286608,0.190552,0.285804,0.406541,0.802359,0.926341,0.227791,0.71149,0.153718,0.0788203,0.209932,0.824609,0.923851,0.234504,0.385308,0.559676,0.627302,0.91012,0.252991,0.383708,0.952761,0.716323,0.10359,0.751818,0.896534,0.777865,0.795641,0.268278,0.337572,0.0239481,0.412926,0.326074,0.985533,0.968904,0.05019,0.927403,0.524574,0.653826,0.41036,0.417663,0.377806,0.873097,0.252225,0.0895662,0.566584,0.163778,0.0959436,0.620227,0.727508,0.367049,0.466482,0.868496,0.111188,0.509682,0.935303,0.938294,0.912741,0.293241,0.895988,0.532098,0.244455,0.923119,0.515778,0.0711701,0.528901,0.8345,0.842769,0.926963,0.284806,0.886851,0.0113293,0.094834,0.536642,0.536551,0.491929,0.664448,0.999658,0.164822,0.187974,0.0525293,0.48873,0.780578,0.538083,0.920274,0.818465,0.170268,0.857982,0.115731,0.205889,0.968659,0.748783,0.702279,0.60595,0.4203,0.723679,0.291375,0.477125,0.878729,0.861675,0.260645,0.814427,0.297689,0.972813,0.51918,0.279003,0.656162,0.934982,0.944978,0.0572808,0.910973,0.0718794,0.830699,0.10488,0.371496,0.280381,0.379726,0.286932,0.854666,0.356653,0.637838,0.578834,0.752602,0.833376,0.348496,0.288157,0.700395,0.997142,0.856875,0.62313,0.597278,0.196659,0.223574,0.136538,0.760464,0.737939,0.676962,0.283963,0.396992,0.358745,0.99588,0.181319,0.664029,0.0968816,0.280689,0.521229,0.598551,0.840327,0.431635,0.634451,0.14677,0.146357,0.433851,0.297831,0.513445,0.0629287,0.588395,0.625212,0.261333,0.731404,0.212096,0.19676,0.436628,0.351223,0.955122,0.126084,0.0242762,0.742031,0.0475445,0.782438,0.166791,0.165405,0.359176,0.219396,0.771834,0.188773,0.90934,0.580725,0.650296,0.744165,0.0319638,0.386099,0.858908,0.561784,0.357335,0.150285,0.777133,0.771314,0.399087,0.128163,0.498519,0.073281,0.213105,0.69089,0.878685,0.793002,0.703838,0.362821,0.265315,0.197583,0.888271,0.3461,0.913933,0.698692,0.600445,0.289687,0.725409,0.275338,0.0719869,0.373415,0.0121723,0.192988,0.331791,0.948384,0.263756,0.427693,0.522912,0.149162,0.809762,0.814136,0.320019,0.122348,0.0493146,0.795324,0.141575,0.136763,0.84199,0.355195,0.492504,0.631566,0.97991,0.617907,0.971316,0.962566,0.459593,0.455546,0.281823,0.241978,0.925277,0.483648,0.475622,0.352337,0.857507,0.157868,0.199972,0.470041,0.384801,0.680998,0.539072,0.952255,0.56032,0.956189,0.759814,0.457755,0.399308,0.0515512,0.470908,|0.849866,0.472565,0.932835,0.656028,0.384814,0.962273,0.276667,0.272996,0.758911,0.847218,0.890698,0.0607803,0.290757,0.51491,0.420467,0.745949,0.36457,0.48184,0.283807,0.464585,0.153641,0.53552,0.0088644,0.180329,0.94463,0.725359,0.424943,0.619172,0.833403,0.794297,0.946515,0.805353,0.940071,0.497656,0.170751,0.749394,0.75283,0.53188,0.439873,0.505179,0.0687569,0.780817,0.570881,0.0393507,0.899466,0.762962,0.31156,0.74065,0.537762,0.754663,0.423825,0.406721,0.696867,0.808476,0.108366,0.44158,0.315344,0.160303,0.421062,0.0647048,0.905917,0.886996,0.97512,0.60741,0.801874,0.174195,0.0904661,0.983423,0.833179,0.683048,0.430582,0.34242,0.880997,0.0808588,0.685664,0.660201,0.542743,0.471857,0.431965,0.0852146,0.0286393,0.0173317,0.441481,0.974108,0.556439,0.701126,0.590818,0.949669,0.777039,0.564165,0.40505,0.926146,0.624515,0.0670982,0.127852,0.741779,0.671006,0.725084,0.800743,0.65891,0.455047,0.721094,0.957679,0.610478,0.0614485,0.748464,0.437509,0.530195,0.392451,0.479183,0.996503,0.428378,0.0264293,0.142068,0.601573,0.86135,0.597829,0.239966,0.729854,0.223304,0.909696,0.893337,0.766288,0.27212,0.996771,0.559464,0.910293,0.461117,0.241323,0.889206,0.896116,0.964635,0.655909,0.457418,0.0263072,0.324424,0.0795144,0.247534,0.390112,0.0710685,0.556955,0.420816,0.950445,0.443547,0.600897,0.33439,0.024217,0.424718,0.0521701,0.434041,0.797397,0.957003,0.712763,0.130102,0.282712,0.188515,0.169634,0.610581,0.348672,0.656744,0.846083,0.0440409,0.414493,0.68031,0.647981,0.487104,0.207701,0.853077,0.910053,0.903541,0.90533,0.981338,0.784116,0.389845,0.10107,0.69649,0.242326,0.268234,0.266647,0.58756,0.342857,0.91166,0.82226,0.561311,0.897291,0.0152285,0.317849,0.148591,0.0724407,0.308968,0.374868,0.800905,0.646975,0.0722899,0.953796,0.239508,0.797339,0.532157,0.813853,0.58861,0.45894,0.069548,0.841736,0.498546,0.667664,0.419053,0.285554,0.817313,0.298211,0.598979,0.610005,0.222487,0.0251126,0.991219,0.784736,0.636136,0.863862,0.611509,0.535728,0.238163,0.415086,0.175768,0.96079,0.597108,0.670621,0.176976,0.12722,0.639061,0.355708,0.0419724,0.508418,0.620741,0.994509,0.850083,0.519589,0.342703,0.678211,0.105262,0.146626,0.541185,0.489423,0.782857,0.158817,0.869751,0.0708116,0.284211,0.996205,0.513153,0.44115,0.631697,0.954425,0.8117,0.587585,0.078723,0.490099,0.044866,0.7749,0.655318,0.0170951,0.157811,0.297035,0.409084,0.723416,0.777005,0.419718,0.522192,0.29049,0.469012,0.843123,0.317545,0.807846,0.114425,0.681447,0.236179,0.904243,0.213157,0.64399,0.385587,0.404407,0.385133,0.915266,0.983029,0.214899,0.290486,0.967363,0.793818,0.113232,0.908263,0.576645,0.222595,0.657591,0.449609,0.744328,0.299253,0.0368702,0.821294,0.0974729,0.247338,0.564053,0.661034,0.796132,0.549278,0.658339,0.347906,0.772074,0.316334,0.535931,0.805547,0.848341,0.458152,0.226728,0.636107,0.117509,0.336463,0.426768,0.790751,0.505578,0.622207,0.854226,0.123303,0.239916,0.337893,0.107947,0.992615,0.672651,0.634776,0.95978,0.588559,0.682501,0.780054,0.657491,0.615995,0.319876,0.705497,0.557129,0.709158,0.98357,0.842506,0.969624,0.478658,0.162922,0.907712,0.668022,0.114781,0.402286,0.993746,0.439606,0.968901,0.245656,0.435898,0.165427,0.139685,0.0949922,0.382725,0.943608,0.676688,0.426372,0.597455,0.153864,0.0225373,0.206913,0.764128,0.829715,0.975316,0.701846,0.838421,0.87891,0.182414,0.236258,0.870239,0.679727,0.232031,0.0244877,0.135849,0.892608,0.819933,0.225718,0.28167,0.087443,0.0214772,0.699946,0.98863,0.103815,0.90799,0.843644,0.836784,0.687528,0.221937,0.729311,0.561909,0.159053,0.737929,0.537593,0.36562,0.661452,0.750781,0.436841,0.235881,0.576121,0.166003,0.885116,0.512268,0.551767,0.940817,0.836866,0.604741,0.595535,0.76878,0.0897433,0.0903861,0.309978,0.843904,0.268974,0.093248,0.626058,0.517313,0.268401,0.585216,0.263781,0.956844,0.683416,0.99541,0.0442988,0.328343,0.224923,0.992319,0.790266,0.657433,0.745835,0.818849,0.0984402,0.103907,0.491174,0.0516024,0.122793,0.864729,0.865864,0.459206,0.879027,0.385818,0.681354,0.753253,0.88679,0.480792,0.621298,0.130273,0.752771,0.160146,0.3302,0.30559,0.0229573,0.802497,0.866897,0.85864,0.15392,0.878198,0.864477,0.0730817,0.568487,0.512749,0.531931,0.983161,0.853968,0.0906137,0.00334918,0.0888901,0.379552,0.645923,0.102364,0.78892,0.410824,0.783338,0.756925,0.297165,0.445555,0.546233,0.618472,0.380541,0.427282,0.843003,0.299915,0.70338,0.125847,0.812737,0.548784,0.850414,0.156107,0.11791,0.26654,0.710979,0.672952,0.243113,0.403199,0.755983,0.770097,0.43094,0.924043,0.0174753,0.819006,0.262401,0.108989,0.765957,0.194095,0.260047,0.965621,0.326193,0.880391,0.0965918,0.100389,0.853463,0.742601,0.607465,0.701208,0.0901933,0.227344,0.753451,0.395737,0.361427,0.484162,0.213443,0.501125,0.865487,0.651137,0.611535,0.809546,0.858551,0.283921,0.566686,0.883423,0.242001,0.555773,0.199415,0.411278,0.367296,0.519515,0.851759,0.637075,0.233107,0.922502,0.42721,0.271209,0.982387,0.394709,0.26441,0.229423,0.992996,0.664925,0.30785,0.930027,0.94974,0.471692,0.580272,0.902566,0.631354,0.622406,0.10816,0.466538,0.677958,0.43251,0.988814,0.897552,0.305296,0.527408,0.10732,0.0545059,0.179495,0.793232,0.959491,0.791407,0.422287,0.686705,0.863115,0.895925,0.978891,0.701785,0.413939,0.709918,0.422133,0.901724,0.854398,0.476979,0.555162,0.94956,0.343197,0.596235,0.49255,0.760562,0.361092,0.716947,0.464964,0.231367,0.655257,0.430209,0.83206,0.976726,0.16472,0.238558,0.647359,0.896065,0.72425,0.947153,0.516011,0.543917,0.408921,0.967475,0.491346,0.0757841,0.629209,0.488311,0.0161552,0.733342,0.311383,0.927167,0.488385,0.0582798,0.64759,0.822631,0.87338,0.280538,0.434856,0.398209,0.0268981,0.969909,0.228156,0.923392,0.782099,0.24916,0.950911,0.736266,0.409126,0.839995,0.867613,0.603709,0.341489,0.688161,0.429594,0.311325,0.0167991,0.450254,0.213405,0.244304,0.744732,0.797765,0.788879,0.778315,0.972833,0.711977,0.11641,0.681335,0.664056,0.456884,0.443537,0.169688,0.310751,0.385182,0.714438,0.174293,0.457853,0.985518,0.838901,0.487882,0.584244,0.313382,0.94855,0.94667,0.355594,0.183414,0.418807,0.49214,0.483783,0.441627,0.434862,0.319578,0.0883546,0.62837,0.695709,0.0867015,0.926798,0.313583,0.188616,0.342376,0.202941,0.713999,0.0481982,0.565735,0.0552819,0.240124,0.855977,0.269497,0.303395,0.227447,0.0429837,0.742214,0.942386,0.941807,0.143175,0.221012,0.54375,0.813201,0.264541,0.149232,0.143293,0.458606,0.688431,0.801529,0.12377,0.988953,0.343111,0.319606,0.525647,0.156918,0.84542,0.559784,0.836914,0.906815,0.0546461,0.524616,0.408273,0.251417,0.145802,0.718663,0.0441037,0.975526,0.0887641,0.327742,0.436178,0.415726,0.598673,0.429312,0.795012,0.574969,0.754024,0.56719,0.176444,0.47757,0.308413,0.387731,0.42211,0.810059,0.936174,0.86221,0.115268,0.219933,0.443061,0.428898,0.0380046,0.65152,0.166331,0.936334,0.219948,0.578811,0.963223,0.866816,0.837012,0.5392,0.653551,0.510014,0.286044,0.357358,0.205204,0.944752,0.73497,0.324337,0.837835,0.476586,0.227047,0.607621,0.0100979,0.498058,0.619648,0.3868,0.261456,0.325696,0.730235,0.551136,0.526999,0.566444,0.830168,0.0813283,0.47544,0.222821,0.534229,0.0742502,0.882741,0.664469,0.0913463,0.506558,0.119836,0.106622,0.612359,0.705768,0.634965,0.940093,0.976979,0.844161,0.399822,0.264989,0.101141,0.936448,0.997684,0.608341,0.461292,0.469896,0.556957,0.585296,0.376095,0.349024,0.956306,0.928508,0.637595,0.664838,0.455835,0.213119,0.54698,0.331822,0.551939,0.0843993,0.826511,0.405777,0.0590563,0.893454,0.586226,0.91178,0.101772,0.15926,0.139533,0.238529,0.712887,0.681834,0.313292,0.748788,0.548058,0.150632,0.507455,0.0456208,0.48553,0.0632967,0.333711,0.990666,0.326398,0.853323,0.354351,0.0328225,0.906585,0.642429,0.68391,0.700389,0.317983,0.352802,0.500266,0.402095,0.279878,0.657795,0.620552,0.542101,0.775867,0.587969,0.140038,0.179039,0.683453,0.948275,0.10022,0.317528,0.0332707,0.00177038,0.133542,0.908419,0.287409,0.274933,0.32567,0.128349,0.0470368,0.870345,0.171802,0.0272266,0.423921,0.737813,0.128242,0.432842,0.232185,0.728481,0.856416,0.576397,0.442952,0.534908,0.0374266,0.978066,0.585438,0.97819,0.752695,0.908351,0.450898,0.533823,0.483165,0.341651,0.599505,0.731547,0.837575,0.578064,0.359166,0.842681,0.0227044,0.625402,0.234655,0.0432046,0.730922,0.338266,0.489945,0.397303,0.28507,0.511417,0.989508,0.914378,0.245942,0.860905,0.180216,0.0404975,0.645645,0.438983,0.304819,0.549107,0.570315,0.0676196,0.627224,0.439934,0.564532,0.686581,0.368217,0.203813,0.556753,0.729397,0.699289,0.770367,0.575657,0.0495024,0.915488,0.900587,0.650279,0.383638,0.559211,0.023207,0.653788,0.4641,0.829694,0.873305,0.271504,0.863982,0.968008,0.587159,0.836305,0.94602,0.745651,0.457846,0.490169,0.989705,0.690032,0.451128,0.0379444,0.0733267,0.73945,0.360893,0.673804,0.0513775,0.284383,0.998985,0.0944513,0.598276,0.526609,0.490346,0.233443,0.528677,0.815734,0.218584,0.618026,0.999506,0.660102,0.273101,0.516836,0.797297,0.77709,0.473149,0.313394,0.227031,0.778749,0.456805,0.0953422,0.768288,0.545053,0.387035,0.953646,0.831089,0.578452,0.951286,0.983241,0.623388,0.239037,0.861314,0.352611,0.962917,0.643808,|0.817244,0.559075,0.280308,0.404283,0.525711,0.770636,0.6433,0.953812,0.00422257,0.904766,0.0589464,0.367691,0.927927,0.0111443,0.935054,0.940807,0.895878,0.635207,0.773274,0.517532,0.536547,0.97081,0.947372,0.99057,0.945989,0.721275,0.706172,0.561061,0.133746,0.739291,0.403307,0.944789,0.0519044,0.794757,0.987615,0.672495,0.80335,0.477672,0.426608,0.870362,0.188698,0.00200886,0.688347,0.799263,0.0385811,0.179039,0.191646,0.308197,0.702443,0.252679,0.163039,0.384543,0.641104,0.723987,0.692437,0.822884,0.368124,0.617109,0.529716,0.866565,0.51126,0.887398,0.23244,0.156065,0.13575,0.981882,0.88124,0.629301,0.192046,0.20391,0.853668,0.705038,0.741224,0.491772,0.883072,0.441989,0.661633,0.898018,0.41128,0.384205,0.681562,0.77117,0.696362,0.0380877,0.153003,0.512166,0.93952,0.189493,0.999777,0.355444,0.920338,0.0178935,0.31084,0.977464,0.552354,0.601032,0.583317,0.908731,0.0473872,0.186724,0.508709,0.465938,0.895261,0.667779,0.973171,0.200077,0.124871,0.880121,0.33335,0.222324,0.976817,0.573046,0.0261919,0.160131,0.477084,0.90929,0.801453,0.942325,0.44798,0.0281587,0.698716,0.363245,0.821474,0.123669,0.0751376,0.462672,0.131846,0.464073,0.848128,0.046478,0.508874,0.112887,0.132955,0.882357,0.335955,0.521562,0.208606,0.839921,0.450767,0.896343,0.276066,0.141194,0.615342,0.957636,0.902581,0.235026,0.368883,0.0709212,0.192157,0.240619,0.482686,0.377144,0.965297,0.907827,0.365456,0.393748,0.0786063,0.446487,0.907945,0.970169,0.336845,0.991742,0.820005,0.0876018,0.49961,0.593115,0.333584,0.476511,0.870918,0.544276,0.398041,0.688809,0.4245,0.247813,0.548211,0.651857,0.333814,0.81441,0.679991,0.508094,0.430136,0.220264,0.893477,0.579874,0.286437,0.497162,0.0732244,0.26878,0.408309,0.454515,0.209701,0.199751,0.865541,0.331831,0.181756,0.909558,0.916131,0.0419613,0.702792,0.0732414,0.32238,0.139706,0.0955982,0.556525,0.306199,0.755693,0.0383263,0.794948,0.144041,0.31714,0.743067,0.138821,0.804179,0.7748,0.366622,0.903758,0.605083,0.822875,0.321176,0.22232,0.716831,0.635839,0.672068,0.596844,0.47566,0.187125,0.563363,0.65157,0.144131,0.515708,0.475931,0.744796,0.596084,0.509599,0.982293,0.461055,0.48135,0.577449,0.760332,0.367442,0.506052,0.0513909,0.963613,0.607095,0.900742,0.63202,0.75749,0.504569,0.963058,0.502442,0.873351,0.908983,0.649641,0.691512,0.975149,0.155883,0.0888185,0.970297,0.121524,0.518647,0.218583,0.978867,0.235379,0.211231,0.473864,0.291829,0.364349,0.91418,0.527203,0.679079,0.552818,0.901838,0.525571,0.934014,0.90538,0.186625,0.695882,0.876859,0.275451,0.405773,0.811748,0.737458,0.699512,0.574205,0.63667,0.507702,0.152024,0.48233,0.959937,0.13144,0.990957,0.7298,0.966961,0.0540216,0.575628,0.397715,0.728375,0.0701755,0.513005,0.371154,0.939799,0.864967,0.656273,0.657144,0.176866,0.743487,0.777787,0.831143,0.515861,0.550689,0.986991,0.879879,0.819947,0.76812,0.0856957,0.911856,0.318343,0.748959,0.689126,0.823877,0.688419,0.698867,0.551011,0.796139,0.54328,0.609194,0.843048,0.498681,0.42786,0.168804,0.544913,0.562111,0.542018,0.00883842,0.918647,0.423909,0.0341018,0.103568,0.768238,0.722227,0.558759,0.262925,0.844374,0.977775,0.704748,0.225695,0.121053,0.666547,0.662799,0.954209,0.0890193,0.933066,0.0947375,0.429945,0.0279425,0.552509,0.141248,0.651486,0.0500315,0.885021,0.626543,0.499328,0.0651518,0.18651,0.367147,0.955323,0.317864,0.289697,0.0447711,0.310199,0.354487,0.192357,0.185625,0.0491875,0.117261,0.446387,0.65442,0.951569,0.967784,0.760903,0.976573,0.424951,0.712728,0.0737438,0.45107,0.938773,0.394073,0.0851113,0.346186,0.558338,0.270193,0.422343,0.770971,0.52303,0.712236,0.485166,0.135276,0.114756,0.758789,0.926014,0.296788,0.820557,0.340595,0.385843,0.00809276,0.632445,0.979885,0.146269,0.378664,0.933751,0.529444,0.829399,0.233719,0.547209,0.0132541,0.286239,0.489612,0.279989,0.173719,0.496979,0.70475,0.47305,0.437183,0.857287,0.812249,0.342263,0.620308,0.833621,0.581715,0.613226,0.721435,0.26991,0.927932,0.712632,0.357779,0.626335,0.893505,0.877766,0.509054,0.522606,0.126097,0.71743,0.294383,0.182012,0.251085,0.396522,0.714531,0.584172,0.532895,0.132381,0.870151,0.629626,0.232462,0.00766718,0.647312,0.21206,0.635966,0.553703,0.232584,0.062199,0.563232,0.21167,0.0188934,0.00419396,0.300808,0.0734597,0.852076,0.30329,0.198168,0.531615,0.439939,0.405163,0.0180246,0.140351,0.709393,0.00930548,0.32053,0.293698,0.65165,0.671872,0.431418,0.710522,0.953789,0.354051,0.672113,0.130474,0.635526,0.484362,0.0227805,0.776271,0.511498,0.530935,0.782099,0.314683,0.713608,0.463718,0.983739,0.898965,0.0517957,0.375696,0.248777,0.00259829,0.10119,0.105175,0.291363,0.308483,0.959764,0.0840865,0.440902,0.805854,0.709085,0.357663,0.581494,0.278989,0.532261,0.345626,0.531497,0.833102,0.653441,0.18782,0.872574,0.389372,0.0393087,0.408552,0.788052,0.755764,0.694554,0.59906,0.606772,0.988856,0.0440233,0.348438,0.0102944,0.814823,0.219384,0.837801,0.87381,0.383606,0.185127,0.734992,0.722271,0.747385,0.783643,0.429662,0.22367,0.54155,0.116639,0.737231,0.788946,0.0976297,0.654272,0.874146,0.0063684,0.993389,0.790653,0.90814,0.717196,0.87508,0.615135,0.272288,0.864659,0.646512,0.515375,0.0106304,0.0528334,0.755202,0.353922,0.365077,0.224442,0.679333,0.920342,0.496611,0.470381,0.0385407,0.215269,0.416338,0.995981,0.188343,0.601428,0.788107,0.85888,0.716837,0.622871,0.313181,0.603329,0.661715,0.0615345,0.663307,0.313258,0.233426,0.405903,0.844684,0.53762,0.100643,0.154096,0.395196,0.81547,0.836975,0.0363501,0.573088,0.529624,0.943918,0.91606,0.589713,0.617855,0.483384,0.354358,0.82826,0.0385994,0.212133,0.180083,0.0032987,0.537775,0.816281,0.247566,0.00361764,0.831086,0.628772,0.958953,0.707245,0.510001,0.778537,0.976135,0.890491,0.63745,0.14837,0.914174,0.142922,0.491587,0.596836,0.749728,0.400423,0.499111,0.187699,0.0522732,0.757871,0.727185,0.787441,0.139294,0.769732,0.736228,0.289308,0.617226,0.0989702,0.584714,0.927109,0.279855,0.979231,0.240742,0.37791,0.34017,0.508579,0.483313,0.887224,0.858789,0.735989,0.839157,0.861333,0.993883,0.0271025,0.592774,0.293231,0.482484,0.730399,0.162122,0.030775,0.128154,0.59056,0.12398,0.967215,0.822961,0.930193,0.0721214,0.896889,0.912247,0.916363,0.292171,0.569181,0.150197,0.46471,0.366432,0.262033,0.1718,0.0670967,0.997137,0.159138,0.346419,0.302797,0.569553,0.586885,0.852319,0.767344,0.52261,0.499431,0.557966,0.94186,0.277732,0.31124,0.533316,0.584036,0.822874,0.966496,0.872261,0.370606,0.76188,0.652315,0.250696,0.193864,0.84302,0.883334,0.936635,0.518537,0.650722,0.952515,0.711113,0.155501,0.167539,0.207823,0.695967,0.37755,0.129959,0.775592,0.68036,0.399348,0.03689,0.575014,0.0412884,0.492492,0.178473,0.858128,0.839219,0.291364,0.586904,0.916657,0.324515,0.448007,0.833967,0.569636,0.0814872,0.483329,0.978034,0.00185061,0.274785,0.237239,0.121948,0.415815,0.316541,0.198602,0.28532,0.292391,0.453157,0.567622,0.386167,0.0238662,0.304087,0.608986,0.485268,0.0599691,0.724313,0.0961047,0.0545926,0.704822,0.85536,0.00894606,0.553842,0.793382,0.56698,0.99389,0.240743,0.0652348,0.31703,0.745692,0.608898,0.735719,0.416862,0.399982,0.758225,0.514174,0.434757,0.292794,0.160013,0.177342,0.466897,0.386918,0.0337845,0.607421,0.735171,0.193964,0.939959,0.292214,0.737169,0.426899,0.267276,0.314534,0.30922,0.000797749,0.0594329,0.282108,0.175734,0.685157,0.522721,0.0845492,0.185928,0.121484,0.598273,0.164508,0.332877,0.406132,0.602562,0.478335,0.465989,0.493193,0.642391,0.568199,0.408951,0.728296,0.247846,0.477177,0.53552,0.202622,0.176529,0.101512,0.611853,0.310366,0.314389,0.724224,0.589182,0.398787,0.68912,0.171225,0.884275,0.473981,0.698629,0.393868,0.293731,0.441848,0.383576,0.358578,0.92275,0.770114,0.65011,0.451738,0.304799,0.0953622,0.483584,0.494148,0.449587,0.118386,0.925272,0.55796,0.85834,0.0613167,0.125253,0.692252,0.637346,0.530653,0.713246,0.794148,0.495856,0.241515,0.464634,0.985026,0.544673,0.518232,0.178207,0.0731861,0.976913,0.125986,0.334236,0.092376,0.206322,0.248563,0.514734,0.0119978,0.647601,0.0633149,0.153001,0.359623,0.550726,0.747007,0.781807,0.0767545,0.942867,0.332662,0.286888,0.184759,0.462654,0.056116,0.490598,0.522883,0.0934757,0.583584,0.651634,0.373462,0.571022,0.79617,0.832517,0.815693,0.359373,0.447329,0.130654,0.934063,0.252162,0.301729,0.333438,0.114912,0.0465601,0.33525,0.0383648,0.823302,0.018884,0.644948,0.144195,0.0154747,0.0834842,0.531698,0.813122,0.312466,0.881595,0.322342,0.239882,0.0904931,0.0300795,0.245461,0.655277,0.44936,0.0406979,0.316764,0.332659,0.0281678,0.0107023,0.336069,0.436377,0.25253,0.495681,0.325725,0.289044,0.484734,0.294632,0.888323,0.475254,0.709064,0.533187,0.548913,0.14822,0.0875984,0.286752,0.62305,0.709991,0.107528,0.688072,0.0368826,0.536477,0.391582,0.0287624,0.642389,0.960334,0.949926,0.774969,0.986353,0.923637,0.744019,0.839717,0.428154,0.80315,0.637002,0.490894,0.392952,0.658581,0.079251,0.550654,0.066013,0.909567,0.908664,0.528217,0.263563,0.827873,0.658397,0.416651,0.130776,0.363041,0.442344,0.0732523,0.809571,0.885001,0.813495,0.969973,0.218434,0.821834,0.215264,0.391387,0.105023,0.513101,0.755153,0.261043,0.664897,0.91483,0.18202,0.0200318,0.243919,|0.253387,0.459111,0.417105,0.185144,0.371024,0.1335,0.00774974,0.653943,0.139711,0.113246,0.405604,0.661714,0.784622,0.10487,0.728893,0.999673,0.0657302,0.580979,0.458302,0.863735,0.407897,0.117527,0.418664,0.704589,0.582065,0.0345487,0.14625,0.511939,0.913997,0.945151,0.201522,0.185895,0.302492,0.395814,0.618769,0.543699,0.978002,0.194675,0.430976,0.513283,0.366898,0.45714,0.765689,0.0551588,0.153218,0.51387,0.560122,0.23543,0.249589,0.83861,0.778234,0.270781,0.524015,0.946488,0.404468,0.447553,0.837105,0.690579,0.313549,0.440857,0.375722,0.28926,0.819694,0.621208,0.0649962,0.432671,0.386418,0.512436,0.305883,0.4696,0.686892,0.338383,0.156911,0.771341,0.286835,0.236852,0.134964,0.162193,0.498079,0.667008,0.8323,0.948944,0.675065,0.662642,0.337568,0.817903,0.871293,0.253246,0.609763,0.752114,0.325635,0.103821,0.664087,0.032881,0.613763,0.528926,0.799931,0.241099,0.680566,0.414754,0.835227,0.348434,0.337675,0.961675,0.688678,0.000231743,0.0321403,0.902516,0.503688,0.298066,0.794127,0.374377,0.17987,0.733117,0.0192465,0.40567,0.860655,0.143824,0.46143,0.483933,0.352911,0.776747,0.917147,0.996619,0.596719,0.772419,0.341107,0.952635,0.935137,0.201279,0.0778626,0.57205,0.352531,0.671574,0.366989,0.172861,0.864592,0.0996458,0.24381,0.359326,0.614275,0.188823,0.887012,0.180098,0.458468,0.178454,0.579207,0.933673,0.246107,0.538545,0.4877,0.434238,0.361567,0.417284,0.197221,0.364055,0.781837,0.728684,0.674823,0.636203,0.523695,0.395867,0.399117,0.619195,0.282526,0.0171075,0.0482718,0.342895,0.478058,0.263996,0.730396,0.110793,0.22507,0.167352,0.761706,0.245933,0.814561,0.617542,0.748468,0.331249,0.66322,0.0549833,0.731075,0.257169,0.941521,0.240012,0.480831,0.622558,0.290283,0.794412,0.368963,0.533448,0.848175,0.877654,0.916326,0.809198,0.380191,0.908744,0.518419,0.525275,0.708177,0.20087,0.199454,0.676745,0.523383,0.319319,0.78779,0.7733,0.199609,0.28298,0.305328,0.919014,0.830923,0.443655,0.414687,0.45809,0.950883,0.0306566,0.611761,0.649963,0.928262,0.408966,0.566584,0.352685,0.890337,0.170529,0.999459,0.913563,0.470988,0.925811,0.271304,0.970414,0.955999,0.850767,0.121647,0.443889,0.0157401,0.428878,0.285685,0.63689,0.446609,0.850577,0.953824,0.536359,0.730557,0.84577,0.516287,0.600882,0.765862,0.596403,0.936625,0.44308,0.140496,0.44022,0.652182,0.0541775,0.13335,0.958431,0.586075,0.227287,0.0391085,0.284648,0.485823,0.643298,0.821999,0.935291,0.380592,0.188074,0.013243,0.25574,0.48264,0.733638,0.964742,0.942042,0.535012,0.157577,0.126484,0.220684,0.600635,0.803909,0.011511,0.80826,0.840184,0.210085,0.952861,0.500979,0.945436,0.920114,0.390306,0.673617,0.356654,0.687869,0.807633,0.179647,0.986919,0.609249,0.307138,0.128521,0.771479,0.43899,0.278537,0.0336467,0.734125,0.718195,0.512053,0.841631,0.122883,0.267443,0.588794,0.361761,0.44615,0.184305,0.277418,0.150778,0.0291955,0.29032,0.284435,0.630772,0.508879,0.65264,0.716083,0.622175,0.784114,0.552932,0.515007,0.734804,0.55971,0.343509,0.791332,0.90379,0.218455,0.757444,0.343751,0.328319,0.714305,0.0843511,0.841438,0.180752,0.306098,0.690297,0.421534,0.824528,0.978699,0.186909,0.294436,0.698841,0.835032,0.375256,0.334255,0.828524,0.314917,0.00610751,0.353385,0.775379,0.186168,0.289118,0.687199,0.74465,0.180713,0.916924,0.174483,0.359976,0.208314,0.0576055,0.445945,0.872684,0.544321,0.231497,0.695421,0.588585,0.0524881,0.984475,0.148345,0.875808,0.67639,0.846886,0.0939372,0.772083,0.921014,0.871689,0.242734,0.687372,0.498303,0.621889,0.864362,0.399564,0.921511,0.0506405,0.897668,0.0980911,0.771435,0.541762,0.92217,0.159983,0.643871,0.538548,0.542665,0.187702,0.787965,0.0363875,0.710411,0.143556,0.679571,0.906126,0.0838249,0.0144562,0.271839,0.83095,0.0497645,0.79324,0.470645,0.343696,0.976642,0.795342,0.669036,0.081495,0.549982,0.401751,0.00196111,0.790821,0.680409,0.914173,0.538293,0.797776,0.12034,0.604902,0.36989,0.43658,0.260785,0.730738,0.290844,0.0204983,0.110121,0.484974,0.823574,0.830393,0.643289,0.568375,0.711339,0.716838,0.259912,0.270624,0.444302,0.800908,0.177456,0.126154,0.7367,0.122461,0.117884,0.680304,0.833757,0.019621,0.187725,0.482519,0.881009,0.510135,0.524795,0.126887,0.75704,0.400869,0.894933,0.208802,0.162956,0.0132295,0.141645,0.648881,0.0612085,0.176715,0.284723,0.862018,0.877937,0.928835,0.329608,0.850899,0.898521,0.770936,0.221115,0.93058,0.522593,0.105513,0.114229,0.652652,0.300828,0.417673,0.460458,0.978526,0.384895,0.12835,0.693677,0.534283,0.0174304,0.0652177,0.394686,0.934132,0.0304937,0.632026,0.146834,0.314138,0.359208,0.144723,0.588372,0.0239042,0.489941,0.110306,0.826532,0.774699,0.198102,0.174543,0.75109,0.530938,0.966893,0.845037,0.779916,0.45956,0.724535,0.702749,0.695749,0.140079,0.0196472,0.452524,0.152828,0.351425,0.92726,0.643423,0.189174,0.378437,0.350141,0.775717,0.164274,0.956694,0.237419,0.664794,0.80558,0.385266,0.172388,0.670781,0.489546,0.407142,0.430922,0.415001,0.0449166,0.990989,0.465806,0.9034,0.234032,0.233697,0.507607,0.326199,0.957887,0.450638,0.284307,0.35099,0.98433,0.853463,0.409169,0.65778,0.523229,0.610162,0.476087,0.459268,0.26621,0.0603536,0.682829,0.812225,0.0332235,0.0300987,0.969359,0.0182083,0.1195,0.614546,0.84485,0.735493,0.761228,0.562935,0.879255,0.0810339,0.170947,0.00124407,0.474809,0.831227,0.0961602,0.0866066,0.769134,0.677252,0.476319,0.0314214,0.869458,0.507394,0.755278,0.665502,0.851598,0.0896033,0.197969,0.0961066,0.408383,0.0840023,0.33117,0.726244,0.90435,0.326321,0.545657,0.138372,0.49491,0.856829,0.689302,0.0763391,0.290989,0.784983,0.368316,0.878302,0.115298,0.683512,0.583564,0.900343,0.772371,0.227564,0.53966,0.666751,0.619393,0.758289,0.735348,0.0176452,0.751672,0.547245,0.143087,0.211853,0.341341,0.679067,0.221366,0.989239,0.211257,0.796884,0.122834,0.0707005,0.735808,0.511813,0.31563,0.35275,0.222587,0.978655,0.149028,0.15073,0.943188,0.556853,0.299368,0.145026,0.765956,0.229764,0.346652,0.09535,0.274096,0.104088,0.982479,0.822969,0.931423,0.392471,0.608935,0.448201,0.219011,0.76123,0.052611,0.184259,0.872332,0.483233,0.820829,0.176164,0.644845,0.814187,0.05655,0.775016,0.979483,0.621498,0.0171162,0.398649,0.335989,0.272243,0.310793,0.519298,0.39648,0.516803,0.757811,0.41406,0.89392,0.0563753,0.438151,0.557487,0.885139,0.205825,0.207541,0.106104,0.591768,0.539984,0.668905,0.0757635,0.277226,0.126525,0.972016,0.981559,0.774298,0.118561,0.834199,0.620259,0.956684,0.428603,0.80265,0.49148,0.286201,0.269988,0.0264574,0.582508,0.715766,0.550272,0.251607,0.873136,0.0777298,0.882101,0.205864,0.831129,0.718776,0.114327,0.225243,0.242519,0.414063,0.223145,0.0897323,0.443474,0.430391,0.900245,0.123133,0.033338,0.653492,0.75441,0.751251,0.747796,0.0379485,0.15614,0.562402,0.00284946,0.944569,0.0122301,0.386941,0.372716,0.192779,0.936404,0.302745,0.480274,0.878597,0.836383,0.238627,0.347384,0.373541,0.112,0.289094,0.102647,0.723707,0.886516,0.468868,0.121547,0.889824,0.761982,0.934429,0.78504,0.838569,0.145258,0.404725,0.933282,0.114585,0.5801,0.0828239,0.195088,0.480085,0.89127,0.148115,0.452361,0.409475,0.0832761,0.290008,0.0731487,0.287133,0.531507,0.233529,0.261681,0.368939,0.770496,0.981745,0.12398,0.313911,0.841019,0.560001,0.0101369,0.212303,0.941145,0.298106,0.80537,0.752856,0.105242,0.503046,0.038483,0.0459092,0.995522,0.69676,0.181451,0.00881374,0.829003,0.698559,0.658011,0.507215,0.248187,0.966604,0.247263,0.397037,0.250823,0.0399687,0.236356,0.0490814,0.71135,0.345221,0.667511,0.880342,0.915811,0.657001,0.455613,0.535302,0.652328,0.0595042,0.965532,0.997966,0.143688,0.619337,0.0504768,0.629935,0.467593,0.637512,0.377663,0.607591,0.0646853,0.139555,0.561481,0.485555,0.123139,0.871114,0.101659,0.236117,0.169896,0.504059,0.690188,0.704021,0.288719,0.00929868,0.353957,0.0716986,0.02327,0.551475,0.251318,0.00169206,0.128083,0.905135,0.351241,0.749684,0.402581,0.664944,0.473923,0.957497,0.482994,0.282044,0.610411,0.884031,0.85919,0.374816,0.932282,0.254129,0.132418,0.466782,0.214227,0.967047,0.923972,0.203731,0.405423,0.157616,0.562266,0.681685,0.715177,0.248384,0.168662,0.453464,0.0630292,0.62595,0.228006,0.0573998,0.432833,0.727106,0.816231,0.824006,0.396627,0.371575,0.214721,0.101382,0.866638,0.722517,0.439845,0.857637,0.602274,0.0888311,0.544476,0.058023,0.119182,0.221572,0.848031,0.565018,0.26229,0.920203,0.555209,0.713062,0.539316,0.761849,0.498021,0.850274,0.313412,0.271803,0.402606,0.711127,0.966779,0.853853,0.681977,0.326019,0.835478,0.356046,0.355197,0.25822,0.245082,0.55743,0.63143,0.645424,0.641109,0.39713,0.431205,0.486237,0.179959,0.386765,0.815311,0.511194,0.615341,0.450808,0.379807,0.988809,0.298793,0.909805,0.616896,0.890085,0.946431,0.860672,0.339942,0.730155,0.842875,0.519596,0.971496,0.309181,0.265915,0.31609,0.0459465,0.272323,0.396478,0.620902,0.639473,0.631233,0.645688,0.26766,0.316085,0.183354,0.123226,0.121871,0.641257,0.0528158,0.505153,0.512091,0.904006,0.127077,0.0137581,0.0228763,0.0592576,0.096846,0.481907,0.8688,0.483,0.117699,0.0355698,0.00547522,0.553373,0.735578,0.55924,0.502266,0.022487,0.345674,0.410376,0.943159,0.56798,0.921547,0.586111,0.439822,0.414045,|0.0656588,0.477959,0.378007,0.970382,0.60518,0.0632303,0.904842,0.0940185,0.320166,0.673359,0.242549,0.511505,0.655589,0.230093,0.318437,0.353538,0.163754,0.162886,0.346823,0.354358,0.563266,0.856912,0.253207,0.797317,0.319288,0.526377,0.449833,0.564258,0.582869,0.557556,0.70351,0.487227,0.944544,0.830593,0.00862145,0.824368,0.732187,0.373156,0.830738,0.838047,0.140057,0.335523,0.40504,0.912822,0.269649,0.99003,0.407867,0.0227183,0.249732,0.174451,0.155418,0.592876,0.997718,0.876395,0.114755,0.697578,0.710451,0.0873834,0.411734,0.114196,0.691913,0.558393,0.825157,0.699749,0.661966,0.173999,0.353204,0.986034,0.477635,0.514239,0.636049,0.939447,0.409237,0.838233,0.791362,0.933528,0.101431,0.849962,0.204163,0.186491,0.159297,0.722791,0.795613,0.308265,0.825036,0.917376,0.518507,0.244822,0.726128,0.94839,0.520909,0.377886,0.0913401,0.515463,0.267972,0.294181,0.156285,0.798055,0.0192359,0.345366,0.933166,0.815414,0.3558,0.304894,0.0320123,0.895688,0.776562,0.954629,0.991533,0.834791,0.888081,0.164496,0.594675,0.241427,0.0379982,0.495313,0.181515,0.415786,0.133006,0.878274,0.805961,0.76464,0.289131,0.19071,0.783984,0.17608,0.528213,0.27729,0.938673,0.536803,0.397262,0.366552,0.810359,0.684119,0.231589,0.212205,0.329573,0.511605,0.95616,0.653567,0.0370257,0.983331,0.251183,0.7434,0.157933,0.0731391,0.644941,0.286048,0.711202,0.0516277,0.778993,0.900722,0.887004,0.639258,0.953254,0.733675,0.0504993,0.257225,0.129506,0.704512,0.911459,0.902547,0.949857,0.939171,0.563105,0.704793,0.471318,0.278406,0.640777,0.113066,0.0229893,0.297368,0.673695,0.709328,0.740571,0.801401,0.97976,0.57128,0.447675,0.298966,0.738145,0.318382,0.271027,0.860092,0.921435,0.028788,0.273271,0.186096,0.85794,0.764345,0.4552,0.979301,0.427419,0.906885,0.786218,0.76819,0.840621,0.254926,0.411678,0.142567,0.522925,0.866636,0.759871,0.323428,0.907983,0.813799,0.432817,0.0707527,0.0635812,0.6507,0.571594,0.760812,0.782775,0.467033,0.839216,0.527227,0.270375,0.133978,0.405327,0.311829,0.743748,0.99885,0.99479,0.614006,0.961556,0.143173,0.261987,0.937576,0.892983,0.432234,0.764135,0.578187,0.0728789,0.24415,0.625686,0.964586,0.957415,0.334547,0.248896,0.0293446,0.184009,0.964476,0.562438,0.398549,0.271235,0.107577,0.579399,0.182558,0.745769,0.496228,0.629138,0.104536,0.680933,0.175447,0.251483,0.607532,0.1277,0.347368,0.851534,0.0813525,0.33756,0.564766,0.616105,0.485525,0.877232,0.68037,0.155032,0.620366,0.297358,0.790123,0.375073,0.959147,0.96888,0.5665,0.834184,0.646282,0.951108,0.545279,0.691567,0.980095,0.935145,0.537362,0.271933,0.992148,0.123112,0.300133,0.524827,0.690764,0.130499,0.348476,0.811683,0.117188,0.0880393,0.873402,0.991479,0.545371,0.79573,0.0377308,0.610116,0.0283977,0.425147,0.595014,0.20806,0.777766,0.735032,0.908327,0.360393,0.738982,0.757188,0.425824,0.331053,0.130139,0.0783997,0.618784,0.772137,0.849762,0.502895,0.632794,0.20214,0.837439,0.824365,0.949124,0.826295,0.650321,0.355736,0.420774,0.206915,0.752335,0.387166,0.382076,0.479671,0.46565,0.653455,0.731583,0.0611776,0.212954,0.623401,0.016849,0.242848,0.247904,0.878204,0.892969,0.881093,0.886082,0.851914,0.00475067,0.397725,0.194498,0.123211,0.261178,0.775971,0.199832,0.545557,0.764443,0.976553,0.807429,0.0313913,0.20692,0.49531,0.93036,0.889937,0.118654,0.486416,0.246834,0.518886,0.72697,0.528169,0.267231,0.2794,0.915136,0.924793,0.565441,0.00395173,0.595717,0.396655,0.688397,0.987398,0.0601038,0.1753,0.966233,0.732111,0.106324,0.47457,0.184546,0.615408,0.970339,0.889596,0.715297,0.0663818,0.876442,0.72813,0.511049,0.258873,0.836232,0.468538,0.267582,0.349463,0.788691,0.257701,0.0213927,0.85009,0.767794,0.490547,0.182403,0.181977,0.555241,0.628458,0.46978,0.142107,0.943007,0.516615,0.00645471,0.401177,0.233956,0.901048,0.588629,0.553913,0.192666,0.595871,0.172223,0.8721,0.26048,0.288592,0.64143,0.182003,0.589668,0.904557,0.70791,0.161159,0.833527,0.647393,0.234459,0.627966,0.603415,0.492429,0.717351,0.415909,0.733941,0.814662,0.418017,0.431089,0.806283,0.726544,0.603015,0.485176,0.431983,0.736277,0.717038,0.297018,0.5106,0.993088,0.28766,0.50956,0.537254,0.88453,0.812907,0.0336062,0.498385,0.231131,0.600881,0.335147,0.313159,0.332435,0.802157,0.847324,0.935301,0.335159,0.224284,0.653604,0.337555,0.236703,0.711948,0.129596,0.123135,0.925915,0.396582,0.250448,0.0648339,0.209635,0.950639,0.707969,0.36823,0.997478,0.645871,0.710029,0.858744,0.961766,0.787008,0.941477,0.270238,0.154291,0.475901,0.585886,0.0102518,0.271314,0.864532,0.892478,0.881195,0.409409,0.929694,0.131668,0.65168,0.221313,0.0380674,0.0440009,0.577944,0.185519,0.51903,0.883623,0.0292423,0.14816,0.147305,0.792736,0.956449,0.0700129,0.795092,0.869325,0.910429,0.13951,0.0359552,0.125065,0.409949,0.176707,0.176601,0.61988,0.884584,0.33572,0.42658,0.741622,0.529846,0.974718,0.00852668,0.104144,0.217015,0.44861,0.164048,0.528422,0.365465,0.116252,0.813839,0.932056,0.792044,0.900272,0.4088,0.98357,0.510472,0.324355,0.818576,0.67751,0.133435,0.660872,0.831902,0.473415,0.819421,0.828732,0.311459,0.850292,0.917055,0.640538,0.170794,0.112426,0.361867,0.146565,0.480208,0.0356362,0.267564,0.392444,0.744221,0.29521,0.108092,0.0856969,0.712375,0.341798,0.389435,0.658516,0.0683003,0.314526,0.930537,0.0618405,0.994112,0.609079,0.0869532,0.357704,0.473389,0.765201,0.384218,0.639576,0.636039,0.155165,0.28621,0.458072,0.182456,0.686606,0.174716,0.726481,0.23388,0.768909,0.27919,0.872083,0.688909,0.190281,0.302334,0.0544441,0.119322,0.299225,0.528576,0.839559,0.0203424,0.905543,0.390673,0.747848,0.754859,0.958634,0.346804,0.652105,0.063479,0.560423,0.807022,0.0932219,0.235618,0.439887,0.978898,0.668501,0.988011,0.225431,0.420969,0.323428,0.588907,0.832743,0.55151,0.9056,0.829749,0.741811,0.457953,0.395856,0.650791,0.10859,0.199974,0.00575238,0.817397,0.484424,0.775835,0.0414479,0.553436,0.0364689,0.771163,0.956063,0.405586,0.670181,0.118057,0.723702,0.315435,0.574346,0.672275,0.17771,0.325646,0.0786837,0.646754,0.234822,0.955938,0.111229,0.248017,0.768209,0.172671,0.383966,0.477414,0.977445,0.116563,0.926535,0.675171,0.771767,0.193312,0.639359,0.880934,0.699736,0.363942,0.864333,0.0634719,0.535257,0.33886,0.984354,0.970072,0.323777,0.28784,0.761941,0.625148,0.334503,0.774627,0.147462,0.518484,0.237985,0.877017,0.0302325,0.900674,0.00402743,0.404682,0.232153,0.0894418,0.611511,0.0911785,0.549251,0.327181,0.325936,0.629591,0.980542,0.972042,0.662369,0.0724953,0.608744,0.878059,0.830483,0.713604,0.822245,0.778516,0.0660244,0.282647,0.998012,0.377296,0.275081,0.864086,0.664803,0.420647,0.0335308,0.23065,0.318854,0.419322,0.239644,0.159592,0.109653,0.539822,0.573892,0.879269,0.776182,0.990155,0.427464,0.897088,0.627029,0.90075,0.138529,0.544399,0.0831861,0.577426,0.128161,0.0519164,0.571085,0.192345,0.432672,0.963226,0.246123,0.564948,0.0827205,0.0508954,0.594651,0.921548,0.292877,0.775555,0.844312,0.441814,0.378974,0.341445,0.53241,0.784869,0.664676,0.47903,0.370808,0.118272,0.530818,0.0329763,0.696946,0.763734,0.153972,0.383141,0.835713,0.475187,0.131799,0.662424,0.969497,0.758501,0.604275,0.132397,0.86432,0.342383,0.0233268,0.865807,0.946656,0.523641,0.847666,0.571598,0.631877,0.178152,0.0641841,0.260817,0.949363,0.768221,0.397628,0.224008,0.477084,0.312824,0.110436,0.475313,0.267122,0.979699,0.543635,0.768903,0.384158,0.307945,0.74136,0.521894,0.995681,0.52311,0.976187,0.675879,0.00614619,0.490111,0.581587,0.217452,0.464921,0.99661,0.613185,0.674363,0.868459,0.389759,0.590017,0.922799,0.413829,0.464081,0.31372,0.589567,0.760188,0.274888,0.778463,0.11737,0.202313,0.431712,0.879746,0.118938,0.445803,0.103616,0.391143,0.297048,0.771032,0.845583,0.354436,0.236888,0.0368635,0.818699,0.822544,0.463494,0.370425,0.105061,0.830828,0.847861,0.108694,0.842859,0.140916,0.419046,0.956398,0.0340627,0.738546,0.456771,0.716128,0.252555,0.596696,0.571978,0.155434,0.386742,0.921658,0.85499,0.817353,0.118903,0.1283,0.550526,0.763773,0.991119,0.680171,0.713975,0.359656,0.663818,0.553848,0.293823,0.905136,0.143176,0.982094,0.992207,0.826772,0.679364,0.671656,0.873691,0.135941,0.547692,0.205769,0.724257,0.401067,0.417097,0.00503695,0.965503,0.386303,0.682391,0.0405815,0.754296,0.368395,0.722046,0.550982,0.281936,0.407438,0.133499,0.791989,0.428955,0.385945,0.223526,0.983047,0.199407,0.47672,0.353366,0.058318,0.966661,0.390944,0.930318,0.487706,0.886001,0.0784085,0.409589,0.0542629,0.987235,0.231704,0.389457,0.458868,0.277421,0.2908,0.305257,0.647129,0.643232,0.391543,0.0387813,0.501883,0.21558,0.119706,0.582559,0.443339,0.315194,0.709658,0.456686,0.305441,0.465807,0.376305,0.507806,0.487635,0.680607,0.0377852,0.676741,0.613822,0.38266,0.844188,0.990586,0.448842,0.48504,0.99116,0.758728,0.0301247,0.972136,0.793085,0.581493,0.244192,0.622931,0.00313979,0.228088,0.212232,0.761199,0.421531,0.770975,0.757343,0.173256,0.258773,0.340515,0.393534,0.337896,0.171215,0.464361,0.565048,0.525264,0.816874,0.626723,0.0348908,0.494706,0.343102,0.38434,0.0768205,0.71288,0.847248,0.794208,0.080361,0.42077,0.47069,0.360276,0.92906,0.42564,0.481156,0.567239,0.186325,0.677569,|0.0771155,0.826764,0.838021,0.069546,0.458736,0.89853,0.60278,0.765748,0.161823,0.368862,0.363283,0.698264,0.879554,0.295002,0.0255823,0.084366,0.50007,0.980576,0.226186,0.525196,0.551649,0.456492,0.463608,0.917478,0.300225,0.510916,0.974464,0.984454,0.242803,0.4296,0.514922,0.0380415,0.882887,0.959246,0.61493,0.91226,0.145921,0.622889,0.483897,0.957709,0.771613,0.410601,0.650136,0.725569,0.799201,0.423498,0.0159057,0.208048,0.959936,0.12296,0.160073,0.0195265,0.712867,0.0801703,0.434134,0.803578,0.709044,0.730749,0.918508,0.108007,0.0917641,0.391086,0.537568,0.921412,0.19902,0.437917,0.169938,0.122381,0.00458378,0.0762942,0.0465069,0.423121,0.517909,0.93982,0.132997,0.0561764,0.348531,0.0226912,0.475043,0.179107,0.0756262,0.0755223,0.180943,0.721345,0.513047,0.00439054,0.6395,0.880175,0.85304,0.483981,0.389227,0.39173,0.457186,0.391849,0.268404,0.657191,0.315858,0.203926,0.21124,0.205991,0.478869,0.578837,0.541773,0.682074,0.0699525,0.244808,0.156645,0.512072,0.905924,0.599002,0.743349,0.403089,0.351022,0.789296,0.757676,0.775603,0.647461,0.82209,0.517081,0.346113,0.535642,0.19319,0.0333005,0.510094,0.625454,0.500429,0.199698,0.469679,0.504959,0.469345,0.377654,0.15303,0.722806,0.803522,0.612879,0.304189,0.531282,0.608795,0.898089,0.444349,0.0870441,0.391184,0.988937,0.673631,0.461022,0.591063,0.817373,0.215384,0.974898,0.400976,0.798302,0.611294,0.42929,0.382467,0.371984,0.325163,0.0182669,0.598346,0.848591,0.12925,0.152297,0.35785,0.0388145,0.606303,0.239774,0.458664,0.425796,0.719758,0.445794,0.0474074,0.633774,0.104522,0.722576,0.190455,0.710419,0.807916,0.81687,0.505862,0.578446,0.671831,0.54317,0.514968,0.761661,0.174149,0.203092,0.331503,0.785903,0.733169,0.166781,0.981997,0.498798,0.0471144,0.870655,0.0419345,0.744678,0.294675,0.386837,0.106045,0.0984322,0.0647835,0.961939,0.0875965,0.394761,0.595766,0.4888,0.874568,0.0155268,0.653798,0.171341,0.00476211,0.618721,0.322257,0.421381,0.373347,0.622922,0.168272,0.595792,0.920031,0.996042,0.921242,0.962067,0.398364,0.346108,0.732092,0.778722,0.82275,0.330129,0.6797,0.855921,0.473873,0.881553,0.294287,0.469222,0.596482,0.999285,0.809504,0.0705761,0.775974,0.668498,0.858042,0.58518,0.750083,0.373597,0.0683544,0.173632,0.1037,0.363859,0.218756,0.169187,0.843425,0.390052,0.882557,0.291142,0.341432,0.372598,0.382523,0.394888,0.0783346,0.188223,0.817657,0.769829,0.270347,0.466497,0.600853,0.997319,0.94822,0.267797,0.541036,0.00912857,0.0423404,0.0267728,0.042712,0.539779,0.692589,0.757895,0.763183,0.462217,0.783171,0.184075,0.680977,0.81075,0.331289,0.734041,0.927724,0.293633,0.262188,0.835608,0.996612,0.368485,0.222645,0.262652,0.988009,0.901699,0.151184,0.736089,0.866512,0.585486,0.158043,0.0529044,0.875923,0.291768,0.877754,0.137099,0.199774,0.325504,0.554468,0.871688,0.827135,0.671986,0.792486,0.539475,0.0508735,0.7815,0.178726,0.373961,0.812034,0.214335,0.808507,0.374243,0.237108,0.190628,0.0661963,0.37198,0.934443,0.0377375,0.659361,0.707864,0.806586,0.557464,0.138188,0.958971,0.249494,0.228613,0.34288,0.333651,0.993908,0.517843,0.0391011,0.832328,0.587402,0.680882,0.704919,0.175523,0.275795,0.604455,0.0885379,0.200508,0.34846,0.615281,0.305612,0.052527,0.713126,0.513788,0.535193,0.1181,0.0500892,0.436915,0.190498,0.904087,0.822466,0.786616,0.0748114,0.739637,0.880884,0.170269,0.910018,0.487012,0.462319,0.0624828,0.167061,0.668253,0.178291,0.163769,0.861956,0.0979127,0.524008,0.532273,0.776864,0.240948,0.507699,0.875904,0.228675,0.803603,0.26178,0.583571,0.896719,0.0488655,0.876987,0.405504,0.701085,0.157023,0.773506,0.593251,0.420197,0.0679988,0.279001,0.367704,0.96757,0.594585,0.135718,0.73198,0.561432,0.861377,0.436966,0.620713,0.496122,0.704983,0.641898,0.184691,0.101136,0.0110375,0.427005,0.758062,0.738255,0.0986946,0.656971,0.825903,0.690449,0.0431887,0.460182,0.891496,0.990503,0.516747,0.797063,0.969472,0.0408159,0.496016,0.705811,0.331532,0.589088,0.0162297,0.254335,0.413993,0.284419,0.971059,0.140798,0.457835,0.496265,0.468282,0.0349208,0.254048,0.294666,0.83648,0.834723,0.611715,0.844704,0.760029,0.276974,0.17541,0.460889,0.450571,0.302254,0.856765,0.111828,0.821561,0.211962,0.695138,0.209344,0.702491,0.295606,0.896974,0.00261563,0.909092,0.808304,0.684157,0.0343646,0.607768,0.936487,0.498348,0.429007,0.0289007,0.372499,0.237528,0.14143,0.0612835,0.219923,0.96969,0.154007,0.106454,0.838055,0.658535,0.126875,0.578504,0.72546,0.833311,0.264146,0.854109,0.0317979,0.866453,0.365497,0.263009,0.978284,0.178957,0.931404,0.61641,0.339059,0.549358,0.0136529,0.559732,0.299464,0.00120407,0.57146,0.804877,0.79508,0.0194109,0.189766,0.127666,0.300517,0.289783,0.366773,0.309003,0.725711,0.923565,0.592753,0.276258,0.533988,0.51792,0.284858,0.936958,0.00769758,0.405452,0.427261,0.973834,0.473704,0.450954,0.880179,0.784681,0.768537,0.716735,0.515746,0.184497,0.197441,0.84761,0.0542212,0.579839,0.480418,0.809214,0.949471,0.728133,0.544361,0.555403,0.420244,0.0827894,0.483461,0.867059,0.32476,0.0471417,0.361758,0.531319,0.886715,0.662426,0.770706,0.171507,0.377614,0.155728,0.400003,0.765637,0.941771,0.482772,0.150666,0.22695,0.817666,0.00660181,0.848482,0.331826,0.420672,0.198373,0.777561,0.525363,0.109017,0.780203,0.0629069,0.765203,0.591999,0.209679,0.919216,0.344631,0.718435,0.025224,0.495299,0.959934,0.218967,0.203242,0.471723,0.730068,0.698632,0.0723705,0.253154,0.0759926,0.735334,0.388595,0.25063,0.671684,0.619553,0.88642,0.21563,0.389598,0.352739,0.447361,0.703689,0.0419106,0.831425,0.226794,0.983612,0.289059,0.27593,0.178049,0.795766,0.287188,0.773412,0.802813,0.822832,0.656589,0.755768,0.515337,0.140758,0.486462,0.386133,0.094405,0.320312,0.055059,0.90927,0.082093,0.0773359,0.924604,0.864061,0.584566,0.0736974,0.827841,0.659279,0.0319695,0.68567,0.44918,0.367778,0.940812,0.254997,0.689694,0.957345,0.181811,0.881285,0.753758,0.0304934,0.170765,0.155619,0.85192,0.300782,0.858741,0.00238234,0.723329,0.89469,0.573244,0.293385,0.103269,0.0504549,0.558877,0.444779,0.467926,0.234517,0.953121,0.0379724,0.242616,0.13595,0.595905,0.916193,0.969136,0.630772,0.646527,0.751284,0.0242814,0.707591,0.102325,0.465663,0.0468116,0.696065,0.841298,0.422391,0.0440509,0.547894,0.984046,0.572792,0.464847,0.370778,0.669563,0.958898,0.873377,0.388985,0.581223,0.582919,0.989425,0.37056,0.378462,0.308198,0.205949,0.931288,0.602475,0.205167,0.859291,0.230872,0.220753,0.837671,0.453812,0.704383,0.717683,0.468542,0.387824,0.681528,0.407745,0.88357,0.553551,0.414813,0.24327,0.649042,0.792107,0.193405,0.690944,0.0103015,0.574552,0.415833,0.935491,0.244345,0.256177,0.6704,0.628409,0.998529,0.785161,0.00813287,0.489339,0.694772,0.940182,0.395032,0.468004,0.460537,0.314824,0.4011,0.111193,0.340909,0.989733,0.925795,0.737406,0.658167,0.970666,0.362686,0.580858,0.765724,0.210429,0.796093,0.948545,0.37444,0.746657,0.0767705,0.187937,0.216493,0.325201,0.823168,0.74052,0.791645,0.729823,0.947976,0.543653,0.670856,0.985445,0.760312,0.0223677,0.631812,0.0274969,0.432047,0.170707,0.106724,0.744212,0.978704,0.966683,0.735853,0.38821,0.359102,0.700433,0.578402,0.75487,0.889313,0.316347,0.328286,0.737217,0.986728,0.539317,0.678461,0.494713,0.967995,0.165561,0.673365,0.250675,0.207261,0.0787675,0.871877,0.692287,0.641458,0.334957,0.257557,0.359919,0.225739,0.171631,0.091776,0.118297,0.540288,0.601542,0.130648,0.958862,0.0798866,0.978831,0.702194,0.0322888,0.930122,0.949831,0.0848348,0.343458,0.363914,0.552362,0.512609,0.323114,0.897369,0.377076,0.748827,0.155249,0.964606,0.471995,0.919923,0.140826,0.177788,0.472804,0.279534,0.651082,0.560925,0.153465,0.212631,0.0490097,0.664902,0.901837,0.255893,0.641276,0.185662,0.484311,0.443397,0.0826709,0.0684311,0.916403,0.94392,0.127983,0.697066,0.732434,0.418907,0.301185,0.69909,0.679246,0.863968,0.256768,0.90336,0.335433,0.207533,0.451266,0.595203,0.809795,0.57827,0.402013,0.83144,0.410292,0.305315,0.266974,0.52533,0.886856,0.410625,0.0305369,0.488616,0.832819,0.85821,0.676709,0.942836,0.164157,0.750813,0.550957,0.333856,0.937846,0.616385,0.0416756,0.221346,0.136878,0.456272,0.199601,0.932805,0.486294,0.720537,0.45573,0.670442,0.297118,0.41132,0.053014,0.632258,0.609795,0.20316,0.231432,0.604948,0.595505,0.462462,0.436258,0.902806,0.178316,0.516535,0.483205,0.825032,0.42245,0.199511,0.0631571,0.175567,0.433842,0.651637,0.776186,0.959302,0.806323,0.527935,0.902469,0.764959,0.715197,0.979649,0.189052,0.907313,0.727422,0.770025,0.765087,0.801575,0.231292,0.476686,0.840916,0.755692,0.51212,0.522878,0.708356,0.319346,0.943024,0.596069,0.358567,0.50927,0.131559,0.359918,0.939319,0.727206,0.90101,0.476244,0.0862543,0.0197452,0.990133,0.996369,0.440178,0.440808,0.324569,0.152345,0.336186,0.834386,0.98643,0.174477,0.868675,0.098707,0.750896,0.735842,0.791636,0.945571,0.0311759,0.00517517,0.00903177,0.897911,0.157332,0.808993,0.0183294,0.675047,0.660258,0.536365,0.949921,0.118931,0.839386,0.941779,0.340638,0.125573,0.709425,0.120579,0.63322,0.538616,0.855033,0.705354,0.190696,0.22957,0.388194,0.470203,0.809155,0.767494,0.148367,0.709683,0.886406,0.25443,0.958824,0.146442,0.90419,0.413088,0.965873,0.926597,|0.441224,0.740394,0.39975,0.989749,0.514415,0.449894,0.111625,0.392448,0.408552,0.596839,0.372868,0.142081,0.549779,0.0356622,0.99985,0.508907,0.929221,0.847235,0.258105,0.405272,0.594612,0.1652,0.106019,0.439389,0.212643,0.0488572,0.429875,0.168666,0.756251,0.0839034,0.907117,0.822626,0.501814,0.0428333,0.290518,0.159469,0.326196,0.201535,0.118823,0.275326,0.522073,0.131341,0.598023,0.844778,0.945673,0.771028,0.483151,0.141105,0.161384,0.265257,0.751033,0.966596,0.688193,0.46057,0.456254,0.0315361,0.605432,0.544998,0.544678,0.401849,0.550441,0.0109855,0.19821,0.479998,0.330992,0.202545,0.611572,0.109226,0.341748,0.444729,0.328791,0.232875,0.221177,0.606311,0.216283,0.9279,0.999549,0.328472,0.818397,0.916065,0.548471,0.758331,0.330239,0.476977,0.50721,0.899158,0.700259,0.388423,0.420948,0.603555,0.304377,0.0815108,0.298296,0.564223,0.969398,0.681944,0.9953,0.879962,0.211677,0.869436,0.517531,0.867933,0.918703,0.72832,0.426869,0.842099,0.774939,0.0362819,0.633989,0.160309,0.840319,0.125117,0.788811,0.82105,0.944294,0.609572,0.177396,0.986056,0.0417714,0.683719,0.095959,0.573187,0.645631,0.797275,0.816116,0.190805,0.275004,0.741468,0.242353,0.47891,0.702534,0.606867,0.601089,0.832889,0.320196,0.524526,0.837339,0.16973,0.493607,0.000202596,0.3387,0.353855,0.500713,0.92167,0.856309,0.400916,0.356989,0.33661,0.707662,0.794173,0.737285,0.975072,0.0963806,0.474837,0.722434,0.57811,0.729624,0.295297,0.808055,0.320824,0.947807,0.365307,0.34534,0.00844806,0.522235,0.514637,0.128502,0.178819,0.341756,0.0723527,0.259541,0.251395,0.457391,0.11457,0.0355572,0.73857,0.0346435,0.719927,0.370378,0.996908,0.593349,0.726942,0.473177,0.560111,0.770941,0.992962,0.0871153,0.237921,0.21739,0.449628,0.831311,0.142721,0.919341,0.886924,0.525806,0.473902,0.149108,0.481281,0.467725,0.83737,0.702071,0.972033,0.47431,0.127853,0.578891,0.794321,0.645471,0.028281,0.189968,0.526201,0.909151,0.966121,0.549825,0.981308,0.565417,0.467194,0.169626,0.729815,0.355969,0.61526,0.0129179,0.466772,0.857295,0.817532,0.397854,0.26655,0.429304,0.523101,0.740585,0.663486,0.718641,0.0358339,0.616419,0.0751513,0.161474,0.291744,0.446177,0.923222,0.24203,0.507725,0.381976,0.172131,0.306171,0.952542,0.766072,0.0936975,0.731921,0.459346,0.305051,0.109199,0.125674,0.723998,0.402399,0.947318,0.652384,0.979547,0.402448,0.788687,0.221983,0.279181,0.537252,0.375261,0.88445,0.220626,0.387653,0.270948,0.587693,0.955985,0.259449,0.279827,0.818288,0.580732,0.435975,0.185972,0.062597,0.4773,0.0105181,0.182676,0.912512,0.0487322,0.948722,0.843623,0.588377,0.114806,0.866246,0.770977,0.95862,0.729773,0.45764,0.827225,0.243637,0.902783,0.00358623,0.852921,0.550206,0.308927,0.589759,0.886562,0.545479,0.645414,0.447212,0.399736,0.460343,0.00647658,0.628223,0.757311,0.714923,0.761381,0.492146,0.479918,0.610315,0.907515,0.305608,0.0920234,0.931872,0.175952,0.245728,0.409102,0.305411,0.749361,0.269322,0.0280802,0.404567,0.196366,0.808179,0.39801,0.0657648,0.879881,0.159996,0.806538,0.268652,0.682795,0.0240282,0.0649309,0.896028,0.258793,0.109128,0.485134,0.0467995,0.377226,0.669423,0.494221,0.828596,0.730525,0.269289,0.6617,0.163436,0.261945,0.47405,0.630495,0.661398,0.902042,0.94737,0.0680886,0.0473749,0.136197,0.899094,0.551605,0.383759,0.207429,0.599929,0.737817,0.543246,0.731771,0.570116,0.200295,0.282638,0.889873,0.824259,0.738211,0.695474,0.631472,0.860902,0.557159,0.734121,0.871797,0.657085,0.205425,0.930725,0.70268,0.411736,0.102217,0.125049,0.165494,0.224474,0.628383,0.0552548,0.496968,0.92546,0.811982,0.690254,0.547302,0.114948,0.101429,0.999964,0.300505,0.655387,0.982044,0.941946,0.0466204,0.759906,0.175047,0.300845,0.207191,0.670461,0.9387,0.496735,0.239625,0.699167,0.0723829,0.276144,0.658404,0.848818,0.0796433,0.825901,0.575605,0.0404059,0.158632,0.0447611,0.295473,0.608148,0.0144897,0.99939,0.897124,0.303692,0.218654,0.977888,0.804439,0.700619,0.0785159,0.596206,0.0335918,0.240687,0.0563194,0.181132,0.659432,0.313597,0.000324011,0.0646104,0.409271,0.763133,0.575514,0.692922,0.124486,0.0131652,0.476195,0.977055,0.626423,0.859537,0.691732,0.75576,0.810623,0.935106,0.133972,0.810938,0.903365,0.400182,0.149543,0.626909,0.261065,0.595185,0.0361685,0.252202,0.625354,0.372085,0.918895,0.000515759,0.909206,0.0948895,0.14374,0.30151,0.995804,0.326238,0.273148,0.479819,0.253418,0.661056,0.433885,0.976464,0.299988,0.866309,0.198454,0.378277,0.560503,0.542562,0.0111813,0.451819,0.386991,0.000807583,0.399288,0.0771072,0.96822,0.669681,0.74249,0.868883,0.882741,0.601671,0.221872,0.432224,0.914754,0.309531,0.156466,0.642467,0.645284,0.0524504,0.302024,0.166893,0.612878,0.456339,0.324373,0.724028,0.474699,0.341847,0.511243,0.63879,0.676258,0.269782,0.622924,0.787023,0.999486,0.240851,0.739982,0.517456,0.446279,0.760682,0.54335,0.432891,0.341978,0.89805,0.768167,0.578226,0.183577,0.335213,0.389184,0.789596,0.282978,0.817227,0.638907,0.812491,0.688321,0.764198,0.911064,0.856002,0.745097,0.0647085,0.0419888,0.769849,0.770221,0.236129,0.952435,0.772215,0.544974,0.331702,0.906567,0.748944,0.681238,0.589146,0.139491,0.0744396,0.270119,0.135489,0.686374,0.315936,0.856217,0.0268626,0.0912436,0.878947,0.203748,0.797725,0.427864,0.457456,0.831331,0.0376189,0.573221,0.582597,0.551168,0.619706,0.0114805,0.493834,0.355769,0.34033,0.918705,0.499333,0.581011,0.347665,0.83206,0.789053,0.406726,0.443731,0.633293,0.549097,0.201605,0.543907,0.74046,0.611353,0.476608,0.0799497,0.424145,0.675916,0.0247642,0.822484,0.286583,0.76007,0.497818,0.440021,0.423303,0.154856,0.375539,0.660796,0.315604,0.751579,0.0969663,0.592577,0.0652567,0.690553,0.213979,0.774467,0.709997,0.95112,0.833808,0.932783,0.762035,0.0620664,0.0551655,0.488308,0.33867,0.382037,0.400221,0.751629,0.805169,0.87873,0.831461,0.831576,0.876158,0.850167,0.977003,0.79795,0.832103,0.825443,0.254386,0.663251,0.658805,0.307562,0.199108,0.369772,0.487187,0.124545,0.886238,0.884764,0.950819,0.9415,0.0132353,0.250038,0.420337,0.141135,0.14894,0.41186,0.747926,0.783525,0.121453,0.52185,0.224224,0.0574082,0.522433,0.50983,0.91252,0.554156,0.633584,0.760046,0.301921,0.604701,0.392479,0.578596,0.115287,0.0784602,0.336979,0.251444,0.892399,0.673148,0.551112,0.727984,0.324705,0.424846,0.159571,0.357166,0.0633552,0.803936,0.480317,0.838404,0.0414758,0.92095,0.878977,0.763489,0.440142,0.218009,0.265523,0.341176,0.975422,0.0386528,0.0870301,0.437512,0.633107,0.553542,0.0270355,0.0466214,0.552113,0.0628288,0.746691,0.795472,0.993486,0.720276,0.000760198,0.802216,0.925577,0.800084,0.197884,0.73116,0.313527,0.826272,0.952374,0.855735,0.705903,0.293987,0.831127,0.311891,0.64291,0.841856,0.936792,0.499262,0.347983,0.0912532,0.742436,0.961552,0.57929,0.648129,0.252413,0.17564,0.863045,0.636757,0.104357,0.727496,0.501656,0.268223,0.0355052,0.0909001,0.687265,0.480031,0.0623932,0.968216,0.884172,0.996849,0.527036,0.757614,0.0239624,0.555737,0.277939,0.634982,0.51547,0.346582,0.539484,0.647589,0.758905,0.705491,0.0798029,0.78363,0.315028,0.0943657,0.0293769,0.0676566,0.693262,0.467663,0.189247,0.717859,0.801329,0.239662,0.0536717,0.824886,0.488684,0.432647,0.340762,0.736888,0.676713,0.465193,0.217576,0.914773,0.557755,0.121978,0.96165,0.092398,0.319502,0.923362,0.525472,0.625096,0.92728,0.847838,0.960002,0.955809,0.314495,0.246052,0.0579314,0.144098,0.0257352,0.726619,0.227531,0.313314,0.810509,0.305431,0.642307,0.325811,0.828458,0.15256,0.551128,0.145453,0.182941,0.11801,0.497938,0.831548,0.340396,0.217497,0.323725,0.83286,0.152247,0.929375,0.503721,0.186087,5.78165e-05,0.0692879,0.90466,0.0923674,0.079998,0.876064,0.0881574,0.0986366,0.266877,0.203351,0.061568,0.845399,0.196341,0.932486,0.846009,0.362505,0.126911,0.313328,0.685324,0.0405456,0.109151,0.541771,0.279098,0.0555149,0.592897,0.240787,0.492086,0.0150472,0.109177,0.010116,0.595065,0.420176,0.0811948,0.277618,0.670975,0.186755,0.194873,0.22488,0.170783,0.513504,0.538555,0.0257512,0.344948,0.955619,0.543052,0.053746,0.809117,0.488196,0.570213,0.658765,0.723673,0.62239,0.222624,0.466645,0.266378,0.134007,0.226531,0.163771,0.0597991,0.850063,0.493044,0.331989,0.425855,0.180009,0.975462,0.275823,0.933326,0.710783,0.786274,0.423053,0.888739,0.249431,0.304585,0.325989,0.0495149,0.745864,0.362106,0.314873,0.512856,0.644925,0.0772135,0.357793,0.420208,0.191326,0.361729,0.913046,0.449686,0.889863,0.986676,0.038138,0.0610013,0.167803,0.706504,0.634146,0.323247,0.999908,0.977327,0.326668,0.489152,0.742849,0.923156,0.909542,0.183686,0.493232,0.160493,0.961886,0.328408,0.228794,0.865302,0.698568,0.660361,0.346869,0.906319,0.358076,0.643903,0.0178828,0.511965,0.16277,0.00718749,0.0554606,0.480027,0.803275,0.787137,0.309126,0.510341,0.0587519,0.0576932,0.23686,0.312046,0.860524,0.1174,0.882567,0.229985,0.971993,0.0655798,0.891554,0.3379,0.870322,0.00565165,0.860949,0.1368,0.845133,0.768839,0.679406,0.0449949,0.0606127,0.51037,0.925517,0.265271,0.156624,0.845439,0.953134,0.793036,0.447153,0.0300306,0.054697,0.838205,0.997332,0.643645,0.595087,0.323058,0.917845,0.0444713,0.667589,0.371316,0.189327,0.951579,0.0401679,0.0172253,0.135153,0.514233,0.379558,0.190348,0.115986,0.0359998,|0.454544,0.838952,0.464274,0.278333,0.415828,0.889614,0.259461,0.948332,0.138097,0.693381,0.476338,0.241368,0.424082,0.527422,0.35477,0.750083,0.718902,0.538582,0.0688321,0.628526,0.209541,0.447021,0.428499,0.861414,0.387428,0.524267,0.0475136,0.15677,0.63918,0.401906,0.34073,0.0419086,0.82154,0.526899,0.797246,0.11126,0.102297,0.715568,0.94995,0.750761,0.497023,0.405122,0.742191,0.0818213,0.295881,0.710642,0.954989,0.65654,0.523824,0.952522,0.123316,0.749929,0.834283,0.325511,0.514133,0.455085,0.677106,0.327534,0.148531,0.336815,0.800127,0.128971,0.870092,0.707523,0.615334,0.169458,0.707779,0.0926856,0.419695,0.88527,0.013605,0.410611,0.236112,0.360249,0.548388,0.589661,0.288545,0.165315,0.200848,0.961852,0.823113,0.416493,0.439757,0.0716701,0.0994082,0.09876,0.738156,0.779896,0.206474,0.131119,0.922213,0.0984653,0.758083,0.762462,0.552668,0.799888,0.734722,0.661994,0.398383,0.758807,0.762286,0.461717,0.0927336,0.95899,0.196507,0.129963,0.852246,0.232359,0.985086,0.143535,0.552516,0.169306,0.176921,0.0625929,0.157366,0.455347,0.772697,0.808333,0.443537,0.760276,0.347195,0.521901,0.915858,0.909884,0.535513,0.163631,0.183744,0.41627,0.471169,0.0784299,0.821726,0.937971,0.0575877,0.928664,0.847016,0.478257,0.626671,0.329991,0.892392,0.159645,0.472295,0.865984,0.495015,0.522387,0.18022,0.0440371,0.928518,0.565216,0.849671,0.522519,0.748755,0.960814,0.152148,0.18606,0.311117,0.0527248,0.0715488,0.658193,0.983156,0.893549,0.878708,0.601729,0.833623,0.840577,0.332093,0.566235,0.427892,0.0829195,0.228747,0.84072,0.664195,0.121938,0.424377,0.684037,0.505264,0.02911,0.174644,0.158936,0.0288408,0.751993,0.126969,0.835299,0.417161,0.477135,0.358428,0.377848,0.228267,0.0253433,0.715874,0.949565,0.117652,0.425496,0.436995,0.853101,0.596141,0.824999,0.818749,0.0907828,0.133218,0.389537,0.258407,0.0121985,0.159327,0.75781,0.941769,0.981479,0.89096,0.484213,0.872943,0.851172,0.749134,0.0518382,0.909069,0.102254,0.978969,0.552882,0.836087,0.132781,0.193649,0.7034,0.559766,0.314575,0.584538,0.0639089,0.147135,0.649965,0.746926,0.184391,0.102868,0.586005,0.0560694,0.141283,0.309644,0.165645,0.736253,0.155788,0.848281,0.263723,0.645841,0.93447,0.71601,0.931348,0.932171,0.753491,0.578624,0.455039,0.866736,0.96396,0.460946,0.0331795,0.09514,0.0618307,0.804465,0.354509,0.452999,0.673222,0.821968,0.436133,0.413573,0.454055,0.9715,0.743971,0.0380313,0.0852615,0.568311,0.637937,0.154868,0.174461,0.541981,0.389725,0.196587,0.924702,0.436765,0.888346,0.963134,0.691344,0.395162,0.394062,0.125817,0.227558,0.238028,0.636257,0.846327,0.503114,0.920069,0.0772557,0.521602,0.0643427,0.665653,0.526763,0.338025,0.428578,0.355852,0.524626,0.12232,0.154148,0.966687,0.459944,0.144748,0.29824,0.9164,0.791001,0.245245,0.585466,0.711539,0.444944,0.803567,0.451199,0.100264,0.945026,0.101195,0.0627521,0.251249,0.848142,0.912337,0.0226793,0.318808,0.341703,0.561533,0.592115,0.0589195,0.29843,0.741575,0.0643918,0.486464,0.486198,0.366912,0.958412,0.746051,0.929928,0.331121,0.92187,0.802703,0.62307,0.580939,0.0655431,0.822606,0.156353,0.0988063,0.587405,0.814,0.247003,0.757011,0.679369,0.492988,0.736313,0.657386,0.607407,0.563251,0.11286,0.606913,0.847974,0.152308,0.237156,0.444846,0.594352,0.437407,0.909829,0.34569,0.0710781,0.881126,0.195719,0.61795,0.420408,0.811036,0.339145,0.863087,0.091773,0.446074,0.0390189,0.887542,0.0848812,0.635361,0.110099,0.11797,0.385893,0.72656,0.800927,0.000686824,0.723812,0.379492,0.209944,0.543891,0.362235,0.551919,0.979009,0.862619,0.887006,0.880626,0.0223401,0.163733,0.67406,0.584983,0.373585,0.0363212,0.0541748,0.183855,0.646389,0.771408,0.3886,0.314295,0.704231,0.802934,0.36994,0.949327,0.30054,0.913227,0.213203,0.944545,0.224153,0.901403,0.239105,0.677601,0.140023,0.315361,0.511159,0.519113,0.729443,0.669301,0.390654,0.621498,0.85859,0.38051,0.0614641,0.397251,0.890323,0.135408,0.187083,0.98833,0.822175,0.944862,0.850919,0.323953,0.102544,0.425199,0.467212,0.374523,0.513996,0.162933,0.530334,0.612567,0.501036,0.0516551,0.992913,0.436478,0.61061,0.352677,0.0305234,0.414447,0.914847,0.180871,0.805907,0.290969,0.68251,0.636473,0.38338,0.610491,0.308393,0.65595,0.904183,0.232824,0.427655,0.109813,0.961966,0.0709187,0.212065,0.405446,0.917022,0.493357,0.486739,0.334895,0.33658,0.962099,0.775853,0.967139,0.296718,0.169387,0.625569,0.197083,0.975412,0.704667,0.449254,0.445491,0.603998,0.225252,0.498913,0.483139,0.328999,0.0720515,0.222895,0.644495,0.195938,0.302583,0.916869,0.195425,0.343718,0.940984,0.149393,0.768753,0.0413781,0.386851,0.701444,0.417606,0.884598,0.0401995,0.97051,0.50428,0.584559,0.872949,0.519059,0.787934,0.408871,0.607541,0.364256,0.0378307,0.667125,0.96595,0.967526,0.361671,0.566025,0.657429,0.0616975,0.837435,0.0250669,0.105191,0.412165,0.250963,0.945513,0.00489461,0.646492,0.797968,0.89604,0.169359,0.605102,0.998691,0.194105,0.580385,0.762208,0.261688,0.531068,0.255498,0.998955,0.57024,0.0193603,0.80507,0.566087,0.0879552,0.333692,0.101319,0.952871,0.118907,0.746338,0.296468,0.273032,0.935045,0.0028438,0.492856,0.540302,0.761362,0.776005,0.782456,0.863168,0.815333,0.950785,0.529396,0.91871,0.0133106,0.9496,0.441272,0.932573,0.511534,0.463638,0.851808,0.565451,0.578393,0.134642,0.874212,0.679177,0.0767401,0.572373,0.343438,0.898726,0.539048,0.606964,0.825381,0.360003,0.845169,0.945838,0.740611,0.534044,0.98179,0.966852,0.666218,0.411586,0.327243,0.17698,0.0987716,0.198334,0.593137,0.152301,0.814358,0.828175,0.328674,0.519888,0.853969,0.393177,0.464039,0.0961151,0.178214,0.601231,0.98189,0.7002,0.188695,0.786919,0.0182136,0.603626,0.925671,0.445584,0.565514,0.770365,0.265424,0.244824,0.127309,0.259055,0.646589,0.20551,0.979313,0.546656,0.0171325,0.964362,0.426487,0.499769,0.489885,0.914369,0.0920177,0.524423,0.0187058,0.474635,0.395382,0.908923,0.821311,0.729668,0.379652,0.500685,0.0465518,0.744271,0.308038,0.679346,0.130088,0.441658,0.442728,0.860525,0.471652,0.748876,0.493503,0.882432,0.771218,0.0510136,0.379691,0.442532,0.67476,0.206454,0.450724,0.954062,0.765088,0.0348876,0.992933,0.0854545,0.3305,0.130249,0.789926,0.982618,0.178726,0.926609,0.641795,0.845729,0.170265,0.691061,0.561728,0.414883,0.289519,0.365561,0.483993,0.0876402,0.375496,0.965931,0.590099,0.577646,0.644213,0.241476,0.046927,0.682615,0.196054,0.181883,0.749414,0.40951,0.130064,0.291953,0.591477,0.00204474,0.531231,0.689763,0.595665,0.144979,0.355817,0.160651,0.258162,0.467406,0.26725,0.698886,0.372915,0.00976557,0.68936,0.0656139,0.0113727,0.597662,0.198425,0.706622,0.559427,0.808186,0.184286,0.627328,0.275366,0.855609,0.225164,0.908814,0.955635,0.348723,0.459321,0.329167,0.176903,0.0959468,0.733863,0.414006,0.567751,0.856803,0.278293,0.65245,0.267359,0.448653,0.34972,0.694652,0.434887,0.411791,0.874712,0.235926,0.900303,0.0242363,0.181564,0.674037,0.0762995,0.45848,0.151,0.492535,0.176332,0.592274,0.489128,0.422466,0.148204,0.256599,0.391363,0.698129,0.642113,0.448339,0.40716,0.576933,0.0174266,0.863028,0.669056,0.236928,0.424137,0.507153,0.753408,0.516891,0.144635,0.00864172,0.101259,0.158707,0.755961,0.434793,0.470035,0.0467184,0.345743,0.0936683,0.735648,0.786161,0.0290549,0.759653,0.544244,0.269803,0.0612049,0.207075,0.0757856,0.751891,0.142533,0.999321,0.951608,0.617002,0.970907,0.196884,0.620669,0.590951,0.11157,0.890405,0.137821,0.586151,0.218313,0.509887,0.870648,0.322668,0.879964,0.401767,0.562425,0.926107,0.47672,0.202534,0.0121362,0.112014,0.607752,0.590661,0.142386,0.151765,0.942486,0.697132,0.721797,0.738497,0.604613,0.977056,0.634729,0.672311,0.170211,0.153458,0.47084,0.180366,0.948295,0.882869,0.51112,0.666843,0.38026,0.870097,0.832605,0.238692,0.878793,0.667101,0.637934,0.0321469,0.794208,0.269084,0.0855281,0.267513,0.16185,0.0262902,0.217766,0.0071978,0.264498,0.67009,0.63356,0.972863,0.844378,0.912712,0.159947,0.918337,0.0784562,0.46734,0.530344,0.108782,0.915287,0.573212,0.87881,0.617843,0.23087,0.882811,0.236789,0.509138,0.657161,0.541364,0.169404,0.361266,0.876669,0.996298,0.980208,0.965132,0.0355585,0.116882,0.0499623,0.637962,0.130709,0.929216,0.419279,0.555596,0.467602,0.325312,0.574,0.302306,0.562832,0.87035,0.586999,0.296363,0.32908,0.658881,0.410556,0.216928,0.437411,0.0531003,0.116509,0.824204,0.172221,0.494082,0.515825,0.0588629,0.448265,0.126709,0.376808,0.497667,0.0190985,0.768444,0.231087,0.79898,0.407173,0.29486,0.477325,0.276429,0.112213,0.601031,0.010412,0.343711,0.742532,0.0480136,0.361973,0.766543,0.627771,0.374712,0.0481046,0.973395,0.790815,0.920788,0.257709,0.0948833,0.505684,0.96772,0.530372,0.0789979,0.0880471,0.370926,0.345131,0.283304,0.0787396,0.690068,0.24436,0.419368,0.994288,0.00311232,0.505407,0.248233,0.848299,0.225484,0.908935,0.934745,0.978685,0.654769,0.172259,0.734666,0.976997,0.236302,0.456009,0.207503,0.347988,0.36404,0.386911,0.271896,0.596321,0.104382,0.80445,0.827733,0.163458,0.426012,0.178065,0.854456,0.738301,0.257326,0.0122953,0.944977,0.168828,0.408103,0.88806,0.699327,0.770878,0.499422,0.770734,0.931139,0.797108,0.694432,0.327248,0.728853,0.173719,0.960468,0.258217,0.667554,0.50499,0.901913,|0.804452,0.576634,0.446222,0.613773,0.55418,0.367868,0.590104,0.234432,0.919756,0.658316,0.233776,0.243743,0.199675,0.398474,0.188515,0.335247,0.152526,0.947207,0.91288,0.885678,0.630969,0.283779,0.703248,0.536196,0.0146745,0.520719,0.978468,0.441918,0.355097,0.991888,0.774758,0.647008,0.349896,0.836991,0.213954,0.864564,0.508294,0.627192,0.535152,0.495911,0.422535,0.113139,0.647617,0.556704,0.936537,0.575345,0.761087,0.563339,0.0211654,0.287322,0.0768518,0.424637,0.215765,0.57402,0.333219,0.272459,0.527841,0.194508,0.63641,0.564504,0.477882,0.745409,0.673007,0.203408,0.641572,0.942169,0.800681,0.359958,0.593328,0.495002,0.296925,0.668371,0.260399,0.203101,0.541779,0.47461,0.751304,0.8979,0.539632,0.569119,0.35739,0.340129,0.32407,0.466,0.841921,0.755482,0.521233,0.764244,0.334114,0.0811816,0.900346,0.0142467,0.161611,0.793421,0.738025,0.961653,0.670937,0.0350231,0.720446,0.476048,0.644439,0.416908,0.964824,0.681136,0.550633,0.41948,0.988034,0.483481,0.18415,0.380481,0.330421,0.442865,0.0446467,0.0342171,0.336651,0.943103,0.743982,0.809934,0.204826,0.920622,0.660904,0.662414,0.163723,0.260226,0.328627,0.0174025,0.473268,0.610394,0.0978855,0.864509,0.904947,0.789415,0.639213,0.687545,0.931816,0.999066,0.891165,0.970543,0.10144,0.901626,0.336742,0.699835,0.0710909,0.564712,0.399217,0.640697,0.240348,0.884238,0.0666337,0.519191,0.802188,0.219168,0.973477,0.720321,0.801907,0.465125,0.854824,0.000189722,0.00344872,0.022091,0.275254,0.117649,0.761425,0.876587,0.157334,0.450253,0.339723,0.922563,0.922651,0.231648,0.962037,0.373226,0.471299,0.242992,0.763315,0.31101,0.256328,0.838989,0.376464,0.687622,0.582795,0.628641,0.357336,0.992442,0.086899,0.645788,0.0057404,0.0537735,0.151246,0.208616,0.211827,0.782402,0.129006,0.729569,0.426238,0.0468788,0.159168,0.478747,0.618731,0.981934,0.213589,0.925643,0.0408969,0.991758,0.742233,0.472014,0.876124,0.256147,0.30867,0.764954,0.0128127,0.703545,0.685349,0.646709,0.430323,0.291421,0.166855,0.774899,0.988578,0.840952,0.535887,0.873316,0.268903,0.625823,0.800714,0.441818,0.319788,0.692918,0.667565,0.864033,0.256172,0.142745,0.0755762,0.456436,0.249087,0.60365,0.523408,0.551158,0.385547,0.839267,0.0602443,0.414214,0.242627,0.227168,0.106227,0.332691,0.229341,0.0311385,0.372875,0.715325,0.520627,0.156506,0.251508,0.111043,0.842532,0.0131582,0.282174,0.103986,0.88371,0.0796009,0.937559,0.927644,0.238481,0.465009,0.580852,0.593432,0.0140148,0.73964,0.739453,0.785034,0.0472907,0.544554,0.424634,0.398186,0.140296,0.680816,0.156068,0.791118,0.131002,0.462608,0.877388,0.347646,0.921373,0.330597,0.997718,0.488983,0.728899,0.109094,0.521061,0.754942,0.544564,0.142757,0.36466,0.673826,0.733683,0.10246,0.595911,0.402308,0.306353,0.577408,0.99376,0.612984,0.857644,0.211473,0.516385,0.378846,0.995299,0.824896,0.221931,0.128256,0.728757,0.47664,0.897255,0.537615,0.134642,0.829191,0.840929,0.877633,0.0868864,0.340986,0.649734,0.371674,0.633112,0.771215,0.815543,0.182618,0.47562,0.416191,0.194275,0.429845,0.979558,0.22526,0.721943,0.92074,0.151324,0.290811,0.997851,0.422931,0.331498,0.629244,0.96215,0.121416,0.386352,0.135524,0.921019,0.384805,0.163868,0.983078,0.0235311,0.75267,0.510911,0.936704,0.294716,0.818053,0.187005,0.556314,0.0277811,0.840287,0.302634,0.0723743,0.787789,0.172649,0.742592,0.955362,0.934681,0.0899713,0.197323,0.89418,0.359089,0.109982,0.274568,0.41581,0.0066033,0.276866,0.381461,0.116452,0.15679,0.238605,0.183038,0.52962,0.963314,0.602911,0.477669,0.510681,0.779249,0.0676296,0.842049,0.898848,0.0504534,0.482977,0.253186,0.276709,0.416398,0.367918,0.0460083,0.0772982,0.852087,0.649469,0.903068,0.86723,0.610089,0.219744,0.876098,0.691348,0.301003,0.523364,0.554713,0.652059,0.715273,0.940847,0.15882,0.398054,0.917339,0.501104,0.674074,0.483644,0.639491,0.42803,0.394367,0.930455,0.278957,0.203816,0.294855,0.0177223,0.218186,0.533365,0.568095,0.433907,0.00315171,0.661532,0.676758,0.451229,0.784082,0.740192,0.429857,0.967933,0.412232,0.132735,0.953447,0.653742,0.207158,0.44311,0.234283,0.436686,0.330082,0.363365,0.449112,0.244822,0.790952,0.414566,0.0965873,0.919791,0.206105,0.0733769,0.236003,0.218788,0.257914,0.800943,0.288421,0.924563,0.446786,0.0403712,0.742076,0.678294,0.114838,0.8213,0.133114,0.168364,0.323156,0.561668,0.685597,0.248115,0.646111,0.869268,0.660918,0.626469,0.375186,0.22288,0.15138,0.984322,0.217832,0.156559,0.898758,0.286295,0.304008,0.428214,0.404353,0.134656,0.230091,0.887771,0.71748,0.778242,0.107483,0.943328,0.913697,0.873112,0.159987,0.094304,0.504212,0.810981,0.45567,0.903101,0.330616,0.868517,0.514144,0.680214,0.22754,0.306684,0.107794,0.755617,0.393895,0.627094,0.0724783,0.538445,0.252853,0.299606,0.873722,0.548585,0.426069,0.889703,0.688397,0.912137,0.110056,0.791181,0.136526,0.305778,0.361935,0.521977,0.843464,0.933594,0.732162,0.969515,0.331521,0.238917,0.849051,0.156206,0.271174,0.857071,0.578433,0.614028,0.470813,0.514181,0.871081,0.754999,0.862774,0.000872374,0.419945,0.657679,0.542525,0.474356,0.706936,0.031928,0.386661,0.43898,0.453328,0.89486,0.658489,0.759871,0.988602,0.396331,0.815499,0.985079,0.958898,0.501558,0.760949,0.698204,0.463923,0.695292,0.0300099,0.510494,0.145422,0.405216,0.977162,0.540461,0.385665,0.407269,0.372968,0.524436,0.264704,0.434401,0.245748,0.465549,0.955522,0.71135,0.906139,0.273454,0.724987,0.44868,0.301831,0.546944,0.677247,0.698043,0.619042,0.484149,0.691957,0.925934,0.47301,0.559718,0.252702,0.249657,0.291884,0.0246137,0.599646,0.000186682,0.530346,0.235947,0.355886,0.414883,0.124636,0.0363443,0.447151,0.502564,0.186051,0.774423,0.685567,0.281122,0.980279,0.73351,0.314599,0.441248,0.518652,0.326992,0.129132,0.88045,0.431657,0.543138,0.0298784,0.99693,0.313702,0.824905,0.966329,0.646114,0.916425,0.145295,0.558787,0.311033,0.188445,0.962895,0.142953,0.0242269,0.698149,0.910498,0.41525,0.699378,0.721506,0.105399,0.253063,0.00666147,0.71095,0.0330206,0.379904,0.553474,0.363217,0.79111,0.52031,0.593867,0.458504,0.467666,0.72404,0.97007,0.639753,0.0657906,0.793486,0.835573,0.00318736,0.284437,0.571219,0.312142,0.198802,0.132607,0.486827,0.427791,0.382898,0.535884,0.879377,0.18601,0.640737,0.661974,0.391928,0.45654,0.904713,0.979077,0.808924,0.496944,0.131125,0.190371,0.0194012,0.160848,0.565882,0.299406,0.979834,0.439667,0.909378,0.720164,0.749263,0.905663,0.702892,0.100875,0.146354,0.30244,0.626896,0.116754,0.578173,0.988659,0.254824,0.185805,0.851019,0.618269,0.759538,0.279718,0.816026,0.0411728,0.322511,0.871112,0.191157,0.590955,0.333167,0.29832,0.830246,0.590584,0.298238,0.0555714,0.716918,0.950523,0.40972,0.850789,0.773802,0.54754,0.869503,0.138928,0.875971,0.0940275,0.0799107,0.23193,0.900644,0.928017,0.464405,0.859789,0.0793766,0.211089,0.63105,0.504749,0.0916541,0.134526,0.611453,0.309248,0.593995,0.0245661,0.299433,0.846738,0.821992,0.734846,0.109036,0.443865,0.558416,0.999784,0.28517,0.54464,0.141225,0.0783709,0.425959,0.288198,0.140873,0.296528,0.706372,0.583108,0.188687,0.207961,0.116933,0.427385,0.0066399,0.364799,0.350347,0.0271295,0.52767,0.154168,0.886787,0.462277,0.375435,0.61527,0.018715,0.846839,0.656065,0.655541,0.0944071,0.208801,0.775014,0.852423,0.104172,0.346814,0.435057,0.494689,0.0511924,0.0136628,0.137595,0.191138,0.63911,0.217898,0.928458,0.16755,0.53689,0.877367,0.588675,0.465583,0.454482,0.799913,0.205799,0.00066179,0.0904877,0.411034,0.0895318,0.356666,0.988626,0.71517,0.189189,0.00544339,0.379697,0.629305,0.0453129,0.434498,0.240103,0.203906,0.625245,0.234023,0.313859,0.601524,0.955826,0.5211,0.521014,0.966812,0.886082,0.740103,0.176084,0.706253,0.624736,0.0626162,0.425599,0.803205,0.900855,0.207367,0.855904,0.907747,0.311784,0.950366,0.0268898,0.220219,0.558872,0.56842,0.00551766,0.0830827,0.437826,0.241699,0.0295728,0.167813,0.650899,0.749973,0.200914,0.532507,0.792353,0.658469,0.837208,0.860516,0.469424,0.0315266,0.253214,0.26951,0.13954,0.497619,0.637562,0.826091,0.0672517,0.0960317,0.581263,0.741505,0.129522,0.910215,0.355605,0.774683,0.299305,0.329424,0.997518,0.386656,0.435305,0.0935569,0.751333,0.640878,0.332709,0.924271,0.30278,0.411096,0.130586,0.0337445,0.594395,0.519085,0.622353,0.396116,0.791607,0.168262,0.402304,0.41432,0.70762,0.945151,0.710412,0.606564,0.754546,0.645655,0.421208,0.566625,0.984752,0.797735,0.155243,0.186023,0.448341,0.0220625,0.0154596,0.0167009,0.0651422,0.765804,0.695369,0.16351,0.377158,0.530595,0.0160779,0.203046,0.616782,0.491113,0.432438,0.0936686,0.628038,0.503719,0.652511,0.826097,0.0609986,0.217928,0.157155,0.382612,0.0277421,0.795956,0.449103,0.593606,0.0142176,0.54298,0.743914,0.446399,0.0992911,0.142662,0.765586,0.618654,0.136381,0.512496,0.850842,0.104655,0.964325,0.0812524,0.965937,0.306486,0.30441,0.496382,0.378235,0.155936,0.00997227,0.908963,0.399914,0.49504,0.478746,0.569019,0.17493,0.720611,0.894694,0.873092,0.350237,0.897661,0.138988,0.821132,0.0524454,0.42007,0.283414,0.686733,0.204973,0.0954467,0.649543,0.422821,0.897409,0.796604,0.948129,0.472026,0.666995,0.104516,0.930956,0.995541,0.960193,0.99019,0.33056,0.406243,0.144875,0.228593,0.482697,0.145738,0.12168,0.49898,|0.118033,0.503355,0.969764,0.0886491,0.958576,0.546943,0.705694,0.966999,0.730893,0.17797,0.913036,0.350009,0.892613,0.768629,0.900065,0.0270446,0.519346,0.465237,0.31033,0.361371,0.158538,0.397156,0.183317,0.463412,0.500148,0.401327,0.368462,0.427071,0.258593,0.920269,0.0774045,0.561943,0.00110507,0.433906,0.769228,0.886349,0.530661,0.130311,0.557986,0.96113,0.240549,0.683655,0.92761,0.486483,0.876047,0.930873,0.111433,0.827899,0.714047,0.40817,0.253352,0.49665,0.11683,0.376277,0.375437,0.577928,0.0975385,0.259722,0.842345,0.596177,0.837853,0.994488,0.354157,0.104537,0.281288,0.656599,0.327618,0.106123,0.378187,0.781558,0.395905,0.48003,0.705014,0.18365,0.999899,0.374263,0.418994,0.693559,0.947158,0.0104787,0.373845,0.865757,0.254034,0.47797,0.248565,0.513446,0.802031,0.276615,0.697715,0.106506,0.76798,0.370742,0.0575676,0.0409896,0.779931,0.641351,0.538015,0.926509,0.624211,0.152407,0.26255,0.515708,0.642838,0.539325,0.717418,0.995046,0.816702,0.0833861,0.78105,0.503102,0.0184304,0.34033,0.139654,0.746386,0.567085,0.899345,0.291129,0.367251,0.785113,0.498328,0.913466,0.261714,0.678359,0.794929,0.438603,0.0885545,0.969576,0.384251,0.920232,0.145481,0.889697,0.729534,0.867434,0.0746445,0.601055,0.848674,0.439084,0.426256,0.57731,0.717356,0.897837,0.664798,0.589408,0.880209,0.740365,0.870863,0.17017,0.85211,0.269577,0.54362,0.450268,0.908836,0.74826,0.950724,0.726926,0.514018,0.439179,0.604011,0.0115117,0.188514,0.377338,0.687955,0.171266,0.214046,0.0594635,0.147827,0.0539147,0.202097,0.264736,0.191968,0.972238,0.0518579,0.494417,0.76371,0.646546,0.580229,0.126,0.936198,0.020508,0.469538,0.76411,0.0486323,0.233391,0.923526,0.836375,0.874071,0.312932,0.873294,0.985739,0.375013,0.721583,0.588886,0.29549,0.103374,0.842936,0.495807,0.701956,0.597116,0.708187,0.900337,0.783628,0.150171,0.134934,0.0888853,0.106738,0.967899,0.479123,0.843128,0.442926,0.0323796,0.34899,0.727091,0.836357,0.415299,0.720117,0.0851979,0.811236,0.26457,0.97409,0.560652,0.734931,0.49877,0.0745924,0.591925,0.316066,0.338408,0.310902,0.369766,0.00829774,0.472669,0.0178094,0.472658,0.648758,0.359877,0.346691,0.680945,0.328437,0.574597,0.166181,0.105556,0.00717479,0.648456,0.0900771,0.0660135,0.573379,0.294787,0.920898,0.298529,0.69964,0.435176,0.427439,0.115978,0.350952,0.89587,0.718979,0.896305,0.843393,0.90794,0.163402,0.0414557,0.92064,0.522906,0.667479,0.565196,0.472827,0.0201406,0.594977,0.51579,0.627637,0.122516,0.976688,0.692253,0.0938767,0.477953,0.218425,0.116665,0.496062,0.905087,0.360288,0.669938,0.134129,0.972466,0.270101,0.580514,0.0956961,0.951224,0.0727352,0.70656,0.0879878,0.341404,0.405209,0.899879,0.231777,0.717552,0.980536,0.0585332,0.532446,0.371824,0.539138,0.228286,0.142917,0.73622,0.777831,0.191084,0.708574,0.531298,0.384443,0.615533,0.668562,0.82295,0.366073,0.15318,0.0847046,0.0475134,0.740891,0.593695,0.181274,0.954809,0.702038,0.403676,0.137767,0.392307,0.712108,0.584904,0.487973,0.229951,0.483486,0.426296,0.278057,0.335384,0.681365,0.35872,0.613756,0.506991,0.209826,0.0105778,0.310843,0.146978,0.680573,0.657526,0.530419,0.0816875,0.594133,0.702178,0.160469,0.994792,0.922342,0.304233,0.551462,0.744734,0.331258,0.831727,0.0918658,0.982855,0.496135,0.0229606,0.941168,0.58299,0.306209,0.38796,0.782249,0.487659,0.37485,0.0719503,0.312247,0.0594082,0.489308,0.0885861,0.837119,0.131552,0.895115,0.737799,0.914217,0.459313,0.887597,0.0250341,0.401193,0.424055,0.0885673,0.0382707,0.194757,0.675263,0.118593,0.297223,0.472563,0.598105,0.492334,0.211483,0.195437,0.630668,0.154083,0.970495,0.974394,0.203363,0.489348,0.694443,0.659755,0.64805,0.648972,0.949357,0.853432,0.937258,0.492162,0.995862,0.465231,0.457584,0.95091,0.650756,0.431446,0.216015,0.894372,0.369401,0.846131,0.231664,0.677648,0.802626,0.690488,0.812977,0.0463099,0.433471,0.601635,0.709828,0.987294,0.238102,0.193779,0.757986,0.278924,0.582259,0.727004,0.433672,0.631697,0.54638,0.669004,0.0470929,0.175062,0.968026,0.520716,0.965077,0.455312,0.896529,0.549497,0.136849,0.579492,0.899665,0.499126,0.872465,0.672665,0.0624896,0.805365,0.950257,0.622016,0.783981,0.852263,0.344156,0.50711,0.612868,0.149105,0.879384,0.332962,0.698415,0.881208,0.78905,0.36623,0.959708,0.368634,0.648299,0.164938,0.596916,0.0990949,0.365777,0.680046,0.406861,0.311965,0.657661,0.572065,0.352568,0.784335,0.257294,0.938448,0.229249,0.0331023,0.819987,0.585057,0.996035,0.00825173,0.773196,0.536483,0.237229,0.318212,0.942571,0.170856,0.973515,0.793719,0.109055,0.333949,0.0791935,0.768632,0.0488769,0.0973272,0.546213,0.220672,0.402459,0.72835,0.906524,0.723871,0.932861,0.195055,0.150048,0.918925,0.152134,0.40698,0.408928,0.631546,0.41594,0.662085,0.734369,0.743495,0.221021,0.476616,0.405556,0.941225,0.83157,0.277757,0.179954,0.0370942,0.708643,0.577372,0.73318,0.411471,0.84188,0.181533,0.721277,0.914883,0.850574,0.131561,0.342455,0.381259,0.128011,0.441608,0.243267,0.0866027,0.0738279,0.439546,0.865912,0.424698,0.800752,0.684727,0.731717,0.876475,0.0972335,0.807394,0.826445,0.0700542,0.0868577,0.353121,0.462193,0.856423,0.182418,0.99945,0.426889,0.630584,0.877345,0.492661,0.856965,0.729224,0.127246,0.692123,0.262212,0.20149,0.193263,0.0782799,0.0703921,0.683613,0.222545,0.00201422,0.900231,0.867814,0.818601,0.0225525,0.62626,0.686887,0.437754,0.439815,0.988151,0.179804,0.339326,0.940715,0.216829,0.353227,0.640577,0.316572,0.200931,0.768203,0.668984,0.0675768,0.325467,0.551643,0.527045,0.11288,0.416982,0.0366886,0.880747,0.502651,0.190171,0.451278,0.43961,0.0238162,0.980005,0.0159217,0.588721,0.421898,0.64233,0.366573,0.550447,0.0856581,0.401621,0.37992,0.246625,0.807194,0.489409,0.0882491,0.947249,0.700147,0.23153,0.426976,0.976496,0.482717,0.736011,0.0588297,0.18709,0.784021,0.689665,0.731223,0.767847,0.530186,0.949398,0.181602,0.23914,0.793063,0.365264,0.197139,0.279492,0.279971,0.244232,0.789827,0.723389,0.197942,0.105481,0.698541,0.511758,0.955061,0.563985,0.99803,0.772809,0.901862,0.244456,0.108161,0.0802563,0.149426,0.965044,0.162679,0.863438,0.51131,0.0541598,0.720245,0.619852,0.205637,0.402281,0.0190779,0.201106,0.205456,0.0356387,0.942699,0.352025,0.950445,0.222606,0.360269,0.981334,0.958066,0.113676,0.556268,0.212356,0.311327,0.325243,0.384015,0.818402,0.189542,0.40536,0.51505,0.180467,0.662565,0.653713,0.0702246,0.311298,0.943046,0.753993,0.508457,0.264104,0.976077,0.400847,0.862148,0.995829,0.492368,0.743591,0.600837,0.697881,0.667112,0.756122,0.170653,0.49271,0.751255,0.396105,0.00749272,0.617455,0.828746,0.142384,0.222018,0.108137,0.983775,0.711825,0.253395,0.321137,0.0352649,0.339025,0.199325,0.676167,0.166088,0.504871,0.0567812,0.446437,0.14934,0.793292,0.563312,0.812751,0.421021,0.189929,0.773183,0.718576,0.798536,0.868102,0.303971,0.645907,0.217021,0.00513762,0.786917,0.347855,0.0716991,0.892715,0.0445727,0.789012,0.0804569,0.415144,0.962819,0.499305,0.583518,0.821515,0.242751,0.468165,0.0936503,0.570004,0.926998,0.98483,0.795497,0.047096,0.0175667,0.803239,0.867205,0.261951,0.247186,0.80198,0.593318,0.22703,0.885919,0.523543,0.308127,0.680025,0.771342,0.425214,0.243883,0.943072,0.775451,0.146511,0.240281,0.696659,0.289053,0.0422002,0.342976,0.825195,0.938453,0.318268,0.976027,0.311167,0.853575,0.565076,0.5867,0.69951,0.58305,0.446297,0.701277,0.169857,0.466325,0.780418,0.0565074,0.282151,0.334988,0.892972,0.917773,0.645379,0.24574,0.738932,0.884328,0.844048,0.893351,0.269122,0.124226,0.141017,0.0597311,0.994983,0.167796,0.162735,0.570428,0.887272,0.950682,0.598774,0.397062,0.191447,0.355942,0.551491,0.257084,0.768335,0.606993,0.4734,0.723934,0.281389,0.0858061,0.158142,0.366159,0.724969,0.634086,0.578907,0.554716,0.42672,0.891876,0.945078,0.959337,0.394424,0.489717,0.229292,0.0870653,0.679331,0.922555,0.270487,0.62772,0.794987,0.0112033,0.0119857,0.379443,0.588499,0.713648,0.683024,0.570308,0.439384,0.429765,0.680955,0.00958073,0.537372,0.174794,0.204536,0.717858,0.870213,0.433152,0.559662,0.825093,0.685801,0.819348,0.423743,0.960918,0.597076,0.0360228,0.706212,0.85574,0.359307,0.714527,0.556957,0.756055,0.0188091,0.792084,0.796019,0.620295,0.703376,0.460285,0.564879,0.670605,0.0483039,0.116226,0.77839,0.869185,0.937271,0.858591,0.544353,0.83431,0.17004,0.673763,0.805872,0.347715,0.154446,0.00169438,0.525728,0.108314,0.205444,0.413099,0.0907024,0.675901,0.570055,0.280695,0.931397,0.806793,0.00486875,0.789841,0.912264,0.877141,0.224306,0.776609,0.724249,0.873606,0.951688,0.140608,0.561224,0.00360048,0.732565,0.527174,0.277292,0.666668,0.034871,0.581597,0.0916477,0.27815,0.539724,0.588837,0.0969744,0.716373,0.951543,0.451669,0.729938,0.935429,0.612954,0.402233,0.402519,0.867728,0.98232,0.0792873,0.271738,0.136256,0.0242779,0.502832,0.683519,0.266008,0.67349,0.149349,0.394937,0.0614132,0.380803,0.61277,0.302168,0.0279957,0.244043,0.409583,0.278041,0.644305,0.622644,0.55789,0.353393,0.808605,0.749033,0.0520989,0.230029,0.152073,0.379264,0.654944,0.393128,0.192049,0.532682,0.691034,0.206951,0.506346,0.20464,0.768994,0.341778,0.107557,0.763382,0.223211,0.345098,0.29013,0.89077,0.767523,0.515994,0.72488,0.279937,0.431971,0.0887399,|0.517565,0.972322,0.350067,0.628363,0.0603617,0.0714476,0.55405,0.427406,0.82826,0.354006,0.0827416,0.279109,0.951055,0.865349,0.539959,0.970588,0.814815,0.333444,0.535826,0.763805,0.100395,0.517436,0.609386,0.31871,0.982275,0.803354,0.85324,0.35973,0.892487,0.355603,0.110136,0.728694,0.345743,0.709697,0.96207,0.230669,0.235995,0.290884,0.720246,0.320961,0.892209,0.571698,0.206679,0.600453,0.259248,0.942491,0.669706,0.629781,0.705526,0.807357,0.738478,0.350733,0.0900072,0.264067,0.219051,0.957261,0.950292,0.788278,0.352661,0.646593,0.372873,0.285369,0.131729,0.597231,0.904686,0.661574,0.36841,0.0964214,0.700539,0.848363,0.455671,0.595366,0.262006,0.572594,0.926027,0.0624823,0.995703,0.705103,0.135352,0.904837,0.284192,0.549004,0.308683,0.896396,0.592285,0.0954731,0.0962835,0.737305,0.531992,0.558209,0.414162,0.379532,0.133185,0.936234,0.121353,0.717444,0.78434,0.0413909,0.516413,0.768802,0.453876,0.489439,0.0596216,0.985366,0.0766363,0.263688,0.320765,0.553382,0.339375,0.856415,0.873477,0.202033,0.3449,0.145356,0.369081,0.143029,0.822197,0.597277,0.595167,0.883647,0.0999709,0.745065,0.362764,0.06208,0.40759,0.469058,0.567105,0.605385,0.339128,0.588818,0.673145,0.788517,0.47261,0.245717,0.908116,0.0456131,0.898756,0.501261,0.336012,0.835582,0.113438,0.118672,0.747593,0.297702,0.254208,0.520916,0.78011,0.107508,0.348056,0.414497,0.422096,0.76384,0.249288,0.464188,0.739954,0.174828,0.476329,0.91231,0.964137,0.489271,0.303246,0.0457278,0.0740106,0.875254,0.95978,0.734788,0.974476,0.16888,0.861476,0.832086,0.60582,0.214036,0.413044,0.488195,0.446257,0.774455,0.0438237,0.435585,0.965106,0.233969,0.578855,0.993568,0.231847,0.0983386,0.83651,0.102285,0.711106,0.90131,0.340377,0.760214,0.312139,0.134114,0.143296,0.651895,0.322226,0.079462,0.68884,0.351715,0.915944,0.983146,0.719987,0.658212,0.250404,0.236753,0.705573,0.421834,0.841739,0.569853,0.567699,0.575664,0.952445,0.162059,0.69034,0.786634,0.991009,0.878152,0.0875865,0.585477,0.866461,0.855557,0.03231,0.13431,0.940806,0.131881,0.341227,0.552935,0.50879,0.321143,0.245018,0.0925646,0.133608,0.18291,0.286259,0.871519,0.75897,0.572523,0.687864,0.676181,0.243737,0.543539,0.543567,0.136982,0.621554,0.74085,0.553818,0.613327,0.712409,0.728319,0.342814,0.513678,0.616261,0.804793,0.533515,0.93769,0.896763,0.50399,0.00538117,0.892917,0.436224,0.27897,0.67513,0.206554,0.567875,0.879664,0.640875,0.462918,0.125787,0.951278,0.631362,0.351168,0.917909,0.203744,0.917718,0.513594,0.439292,0.802019,0.836914,0.85819,0.188421,0.536193,0.0642857,0.690372,0.071967,0.908083,0.0616217,0.203086,0.0862272,0.368756,0.857732,0.931438,0.158139,0.398709,0.146814,0.093013,0.577788,0.870113,0.333266,0.761589,0.355581,0.0187038,0.389545,0.729577,0.458057,0.693497,0.138748,0.796624,0.887695,0.817376,0.485899,0.967261,0.220803,0.881464,0.0749364,0.00659317,0.331818,0.157153,0.416489,0.195044,0.577249,0.802264,0.517966,0.857754,0.155798,0.542692,0.949988,0.882625,0.856352,0.948287,0.334083,0.342163,0.180998,0.364242,0.0363843,0.245498,0.706359,0.761603,0.553875,0.744562,0.725389,0.417931,0.025066,0.364669,0.476147,0.0019995,0.39012,0.285104,0.26702,0.444367,0.614521,0.329274,0.388558,0.521061,0.294887,0.116291,0.393352,0.72428,0.664883,0.612697,0.588455,0.704467,0.28561,0.254481,0.557614,0.642016,0.699344,0.646244,0.0474112,0.819901,0.440105,0.196335,0.261815,0.958311,0.26369,0.724215,0.735156,0.799754,0.172271,0.608083,0.769222,0.896903,0.0359483,0.162473,0.731379,0.0131946,0.126649,0.771107,0.934285,0.651939,0.883312,0.380989,0.888912,0.36313,0.783488,0.892861,0.5054,0.66564,0.77297,0.53815,0.423669,0.179749,0.542219,0.436977,0.457814,0.101571,0.432558,0.842554,0.0116493,0.112168,0.897501,0.255832,0.321985,0.994668,0.433512,0.187559,0.621611,0.371418,0.851832,0.649395,0.116777,0.977337,0.535854,0.799281,0.51729,0.797306,0.448371,0.296275,0.559713,0.448478,0.186993,0.596638,0.489438,0.748113,0.416139,0.423864,0.432364,0.795228,0.382482,0.366229,0.333959,0.61966,0.326911,0.746383,0.0333616,0.404158,0.406661,0.931469,0.0317089,0.315541,0.136767,0.181001,0.487597,0.874,0.468394,0.896017,0.912992,0.650619,0.108682,0.978879,0.445421,0.752087,0.99195,0.597195,0.0617961,0.224198,0.666968,0.800691,0.85653,0.966918,0.138578,0.884161,0.492961,0.0827503,0.514088,0.932832,0.78554,0.0275997,0.874179,0.115198,0.686852,0.366414,0.408874,0.400653,0.827062,0.151936,0.727909,0.641158,0.337891,0.558491,0.78835,0.815092,0.337732,0.918916,0.763842,0.010126,0.322703,0.257702,0.386486,0.396051,0.363689,0.421914,0.396949,0.558987,0.147502,0.614274,0.0357285,0.217156,0.0751691,0.258585,0.0529761,0.590336,0.897349,0.867281,0.265901,0.532264,0.649665,0.692093,0.78843,0.950431,0.995417,0.535301,0.50754,0.57603,0.586415,0.395228,0.00887889,0.87858,0.735247,0.515393,0.0538464,0.804866,0.379266,0.583166,0.028637,0.68246,0.547685,0.107918,0.447935,0.640928,0.745699,0.32703,0.882537,0.77153,0.891289,0.299032,0.804266,0.346987,0.0964754,0.151007,0.40679,0.3844,0.610909,0.569915,0.71521,0.84479,0.297803,0.310454,0.561137,0.657186,0.148845,0.105963,0.288434,0.910781,0.258771,0.72985,0.0528362,0.475781,0.829396,0.957516,0.0903736,0.493039,0.87946,0.690186,0.0285482,0.758987,0.742011,0.957612,0.916957,0.95489,0.938425,0.384514,0.441156,0.474935,0.240718,0.285004,0.839664,0.585132,0.687006,0.439321,0.852029,0.2353,0.761681,0.0229982,0.739445,0.81823,0.191009,0.475466,0.483378,0.149756,0.0323985,0.896984,0.765839,0.531665,0.411659,0.809435,0.680747,0.0719027,0.721734,0.355338,0.209319,0.311683,0.396462,0.983625,0.192837,0.512262,0.849266,0.889402,0.406455,0.214714,0.0219105,0.57316,0.704363,0.394223,0.815005,0.48916,0.0578954,0.450233,0.0372283,0.813839,0.0400717,0.906802,0.873195,0.576128,0.775396,0.312203,0.292633,0.0564944,0.333493,0.236462,0.521303,0.914376,0.0389384,0.903465,0.445683,0.787728,0.528552,0.0188038,0.416955,0.26425,0.738061,0.196443,0.189776,0.918812,0.25188,0.572156,0.867882,0.201351,0.979709,0.934955,0.363558,0.0215847,0.300492,0.470749,0.985294,0.594461,0.728923,0.144642,0.955445,0.877435,0.936614,0.00541258,0.104389,0.449838,0.124885,0.839361,0.66972,0.817358,0.377207,0.418908,0.799409,0.30873,0.934065,0.884016,0.518582,0.864737,0.189306,0.042141,0.215757,0.0851399,0.0278384,0.35543,0.249167,0.843573,0.527724,0.00606602,0.711737,0.863524,0.0821237,0.52603,0.584715,0.118842,0.657755,0.11937,0.556154,0.81713,0.580175,0.383046,0.678214,0.873209,0.739084,0.173844,0.932025,0.150498,0.857399,0.124752,0.468824,0.868487,0.35335,0.910639,0.371345,0.596933,0.349905,0.297218,0.80806,0.729538,0.553036,0.500138,0.920465,0.433487,0.739685,0.301466,0.550236,0.537741,0.217212,0.275179,0.289247,0.984183,0.442985,0.225761,0.185888,0.855574,0.383197,0.92063,0.0679997,0.407636,0.411393,0.591367,0.0732245,0.311823,0.21197,0.0445642,0.560118,0.570759,0.444621,0.670461,0.918578,0.760845,0.785663,0.187555,0.891084,0.516561,0.566625,0.129147,0.628274,0.608668,0.764846,0.313092,0.678693,0.757389,0.269795,0.77927,0.65109,0.0667935,0.709707,0.877526,0.781023,0.99728,0.543671,0.964787,0.00922579,0.586316,0.927445,0.824589,0.526276,0.27367,0.00599027,0.607215,0.514137,0.953255,0.602283,0.806496,0.553714,0.842166,0.374034,0.215543,0.49639,0.0178843,0.585919,0.618291,0.188007,0.371486,0.757688,0.395734,0.314488,0.842041,0.869225,0.693863,0.171235,0.116298,0.369055,0.615788,0.925923,0.0450373,0.80611,0.0810124,0.78917,0.531326,0.781719,0.571467,0.881174,0.443075,0.318622,0.578606,0.877202,0.0244219,0.517109,0.967072,0.519412,0.325896,0.102609,0.097397,0.772797,0.323391,0.366555,0.0466862,0.125712,0.267871,0.778084,0.0468611,0.639432,0.652644,0.741388,0.604935,0.156185,0.148173,0.553547,0.461396,0.389075,0.784462,0.443123,0.103925,0.831797,0.227932,0.375661,0.0527129,0.546596,0.166436,0.0940675,0.402473,0.199293,0.860795,0.822981,0.248832,0.366854,0.531173,0.591294,0.691161,0.140269,0.34727,0.39731,0.382376,0.0592241,0.903141,0.247953,0.828265,0.835961,0.781107,0.943627,0.46222,0.57543,0.440947,0.463637,0.625928,0.752325,0.298212,0.616624,0.424711,0.316264,0.893248,0.383695,0.87244,0.819981,0.98296,0.165936,0.663317,0.110061,0.28732,0.56074,0.151119,0.602454,0.220029,0.345458,0.100167,0.495469,0.167825,0.141034,0.727427,0.49295,0.129036,0.661248,0.569399,0.42298,0.499895,0.786959,0.154329,0.453514,0.351501,0.72576,0.354512,0.552783,0.980077,0.438717,0.139468,0.257007,0.650806,0.916718,0.162962,0.0913302,0.856198,0.00406241,0.0858825,0.258873,0.0148315,0.919692,0.0912945,0.0211129,0.62554,0.956474,0.159178,0.97857,0.00135458,0.471897,0.887875,0.536232,0.120446,0.850398,0.726873,0.537968,0.823586,0.450358,0.726112,0.199793,0.837606,0.168347,0.929653,0.174416,0.393172,0.256208,0.439786,0.343273,0.000374019,0.47335,0.779009,0.0417038,0.703127,0.0150884,0.743102,0.182955,0.293568,0.0963207,0.339939,0.987378,0.963363,0.762191,0.898803,0.0251279,0.0286735,0.346546,0.444988,0.893611,0.178611,0.642459,0.3916,0.0284934,0.196935,0.845235,0.588191,0.955014,0.719994,0.00115061,0.490308,0.295354,0.619088,0.0992758,0.0892317,0.509848,0.407392,0.0699894,0.571109,0.333751,0.126542,|0.274279,0.601855,0.161717,0.355499,0.965566,0.947068,0.404483,0.852625,0.574506,0.0403527,0.217879,0.0860621,0.511676,0.362931,0.481084,0.199049,0.444439,0.198755,0.23351,0.83495,0.0446512,0.519171,0.4754,0.798296,0.27773,0.764411,0.189281,0.949423,0.943401,0.323762,0.468649,0.570121,0.642109,0.00180066,0.568337,0.669724,0.985814,0.650736,0.799808,0.700949,0.147269,0.281343,0.012027,0.859766,0.123545,0.157744,0.98468,0.512754,0.0550089,0.525531,0.313042,0.837122,0.82451,0.562679,0.0907046,0.119602,0.755159,0.0872535,0.0178084,0.352767,0.452898,0.605011,0.646834,0.43465,0.244663,0.203621,0.837468,0.78096,0.906159,0.326575,0.492309,0.314835,0.698694,0.945658,0.16283,0.115904,0.0283668,0.0253377,0.0844832,0.672376,0.796067,0.0463981,0.764648,0.437482,0.532419,0.254122,0.735283,0.683752,0.0985821,0.793487,0.674841,0.0891442,0.849102,0.231758,0.857838,0.610117,0.233354,0.439225,0.397594,0.255798,0.223616,0.207333,0.651388,0.637235,0.874908,0.418986,0.62752,0.078802,0.804712,0.788102,0.938552,0.801438,0.284144,0.694578,0.901732,0.642966,0.57783,0.681447,0.897043,0.822831,0.49009,0.813999,0.0398757,0.764844,0.0298514,0.272826,0.687794,0.095906,0.12384,0.0842395,0.617211,0.898005,0.713617,0.525926,0.0792122,0.0905079,0.542515,0.980743,0.771273,0.994087,0.104278,0.486069,0.22227,0.535986,0.376598,0.843726,0.615813,0.421019,0.766878,0.375722,0.287816,0.496833,0.630591,0.644432,0.332931,0.681655,0.261877,0.499395,0.169263,0.639322,0.85849,0.389182,0.929369,0.160153,0.238073,0.594189,0.809667,0.0410905,0.746793,0.896745,0.139486,0.475908,0.702926,0.653409,0.26622,0.0772983,0.5734,0.227661,0.979234,0.104023,0.323562,0.629525,0.869451,0.88686,0.43597,0.907895,0.259663,0.752865,0.262199,0.144616,0.937546,0.454864,0.339286,0.586357,0.23331,0.613556,0.507557,0.829702,0.438814,0.555535,0.335165,0.0453982,0.919217,0.208332,0.300921,0.953936,0.598617,0.545582,0.213157,0.040625,0.32903,0.745155,0.352512,0.482728,0.870781,0.183228,0.658051,0.716226,0.20826,0.877564,0.15284,0.731931,0.130313,0.942753,0.937076,0.952831,0.655348,0.293839,0.301416,0.747323,0.603587,0.128633,0.482614,0.35842,0.00994354,0.0630224,0.387376,0.798054,0.217994,0.0186144,0.579947,0.666841,0.791758,0.836624,0.122225,0.155645,0.606902,0.460774,0.226624,0.556532,0.252636,0.823164,0.0849732,0.289484,0.371491,0.240667,0.186381,0.548994,0.985832,0.933318,0.93539,0.803796,0.655634,0.077207,0.0324814,0.901308,0.969628,0.163123,0.87195,0.61672,0.251589,0.0928142,0.972962,0.456489,0.722554,0.138701,0.122102,0.440748,0.14108,0.763446,0.383346,0.202081,0.556731,0.0146158,0.767004,0.317253,0.549106,0.816429,0.0776944,0.633719,0.0867491,0.424547,0.795502,0.801315,0.0449331,0.527143,0.112479,0.94658,0.252997,0.832939,0.963495,0.373693,0.458768,0.516593,0.258501,0.852725,0.98347,0.328727,0.831781,0.159838,0.118321,0.884652,0.93598,0.84248,0.56933,0.964931,0.284571,0.239511,0.419189,0.0900862,0.716311,0.301351,0.580296,0.702765,0.424041,0.989123,0.568539,0.514677,0.800911,0.405537,0.25189,0.373437,0.372316,0.43276,0.511727,0.667241,0.274979,0.302308,0.30812,0.0795791,0.623116,0.320591,0.335019,0.978515,0.191841,0.32522,0.807641,0.184421,0.146799,0.518031,0.486688,0.198312,0.86466,0.416865,0.942646,0.288325,0.693792,0.150995,0.723539,0.336414,0.387708,0.519275,0.084977,0.0950782,0.709946,0.66684,0.6386,0.77949,0.134475,0.644025,0.28923,0.921984,0.324498,0.758301,0.700622,0.24878,0.644898,0.846646,0.742449,0.213964,0.807705,0.0754549,0.164214,0.77599,0.66537,0.736802,0.605356,0.172239,0.370838,0.300525,0.559533,0.785949,0.695295,0.616168,0.82232,0.979862,0.178458,0.150646,0.680058,0.0900943,0.0764369,0.610622,0.41835,0.796043,0.247576,0.0311741,0.951059,0.0512974,0.735052,0.581987,0.364392,0.983479,0.291956,0.76105,0.116718,0.684811,0.208001,0.477223,0.903417,0.913025,0.130857,0.854243,0.675253,0.263637,0.869668,0.289039,0.496942,0.940735,0.179526,0.985525,0.979565,0.566456,0.156117,0.627486,0.37016,0.220575,0.308144,0.019034,0.247172,0.726891,0.345923,0.413611,0.895818,0.0701529,0.431319,0.0102484,0.950224,0.487453,0.852882,0.943685,0.37515,0.565567,0.187799,0.909565,0.844411,0.0492607,0.48278,0.77228,0.323262,0.770252,0.411734,0.13122,0.683891,0.850403,0.23967,0.716281,0.88728,0.429975,0.404111,0.34315,0.337598,0.824305,0.222239,0.550978,0.628871,0.469489,0.209611,0.0506995,0.795221,0.367139,0.342405,0.0859241,0.745079,0.843864,0.932962,0.179185,0.131008,0.102425,0.118479,0.798964,0.16602,0.24513,0.361001,0.92211,0.707658,0.988317,0.831862,0.0951486,0.593725,0.521217,0.19399,0.513726,0.490108,0.304425,0.252177,0.391996,0.913896,0.90543,0.671829,0.0061717,0.913554,0.230244,0.342692,0.953637,0.277797,0.571674,0.60234,0.0636015,0.22953,0.412207,0.185674,0.513241,0.71673,0.543193,0.0699603,0.752031,0.916057,0.41877,0.697611,0.381844,0.717207,0.636676,0.302719,0.310381,0.450411,0.545728,0.417201,0.0466521,0.177135,0.0722564,0.903541,0.431954,0.521229,0.274341,0.187303,0.0701085,0.693742,0.857858,0.412354,0.184015,0.819713,0.181949,0.250812,0.55835,0.0305154,0.41144,0.758559,0.162478,0.535685,0.988005,0.710059,0.315656,0.543842,0.698854,0.580404,0.278736,0.416113,0.291018,0.410501,0.457428,0.351116,0.207727,0.90766,0.980001,0.634999,0.184108,0.145458,0.886906,0.502019,0.901295,0.765647,0.356635,0.137554,0.983167,0.472659,0.414013,0.304744,0.726604,0.912489,0.232675,0.599708,0.83812,0.111913,0.889574,0.277225,0.716891,0.477224,0.279525,0.212862,0.360102,0.546041,0.674792,0.779845,0.441089,0.729462,0.533804,0.432607,0.674753,0.4272,0.887229,0.709045,0.17528,0.113123,0.534968,0.813935,0.42186,0.344553,0.685243,0.189807,0.74064,0.559554,0.116287,0.895081,0.431437,0.0149983,0.117592,0.263815,0.419713,0.944866,0.345263,0.530599,0.663689,0.663001,0.896178,0.78449,0.187128,0.06343,0.08736,0.197327,0.41792,0.602951,0.378593,0.421998,0.707721,0.87268,0.867635,0.574899,0.729425,0.262389,0.430534,0.0900133,0.941188,0.624272,0.078983,0.565748,0.395219,0.546396,0.1439,0.611392,0.636573,0.485832,0.759782,0.976452,0.99579,0.372541,0.506567,0.901729,0.34108,0.133415,0.137566,0.242445,0.246552,0.687819,0.024089,0.627045,0.464968,0.404364,0.145828,0.483431,0.395088,0.187802,0.795474,0.473483,0.624175,0.0852348,0.102024,0.457103,0.997439,0.958211,0.657499,0.971545,0.992836,0.840283,0.318751,0.900974,0.87874,0.232834,0.432435,0.655419,0.0406079,0.211682,0.574105,0.165892,0.979524,0.732464,0.654383,0.998882,0.987626,0.56947,0.397911,0.902324,0.882968,0.0641193,0.0719875,0.911576,0.552884,0.141055,0.0620606,0.199419,0.669813,0.0409081,0.536181,0.172812,0.531621,0.850622,0.962115,0.347461,0.611389,0.185994,0.49723,0.0468283,0.913151,0.614746,0.146027,0.393871,0.627573,0.623005,0.0430772,0.68071,0.598161,0.529834,0.425147,0.707111,0.527742,0.387835,0.0405247,0.617239,0.862521,0.513151,0.982957,0.479027,0.68575,0.988423,0.278357,0.00436777,0.463193,0.700493,0.2136,0.401759,0.438857,0.261455,0.751496,0.721922,0.641313,0.146046,0.227335,0.723292,0.0459191,0.140041,0.776477,0.919236,0.39277,0.889055,0.357115,0.659462,0.74646,0.612302,0.392601,0.346637,0.0330217,0.518919,0.360463,0.4555,0.699667,0.295121,0.228945,0.0904496,0.938408,0.617119,0.964759,0.429151,0.370865,0.994276,0.145119,0.895357,0.789161,0.0393436,0.39038,0.952874,0.358183,0.893597,0.536409,0.738327,0.54714,0.521767,0.424917,0.799438,0.441025,0.646675,0.919138,0.477047,0.399271,0.96209,0.964158,0.625828,0.59095,0.0467821,0.606942,0.761961,0.307983,0.327772,0.38384,0.129687,0.587537,0.40988,0.916056,0.0565155,0.893527,0.297228,0.653023,0.552877,0.0879377,0.504553,0.830648,0.682763,0.0935013,0.100202,0.103645,0.743091,0.971639,0.902748,0.704931,0.0803983,0.86864,0.0329468,0.181075,0.320964,0.212584,0.746179,0.956143,0.79418,0.10474,0.696229,0.982062,0.0340258,0.680458,0.993074,0.0752947,0.687515,0.176418,0.73421,0.00632852,0.155269,0.798857,0.882362,0.964945,0.764478,0.650287,0.537685,0.642268,0.117675,0.870193,0.401752,0.539258,0.901108,0.0697154,0.205954,0.519424,0.717886,0.700012,0.546717,0.850022,0.535481,0.107504,0.897767,0.045269,0.996886,0.851209,0.0190263,0.472299,0.795514,0.91834,0.320491,0.492042,0.768192,0.791095,0.938367,0.311567,0.449362,0.945283,0.997403,0.925411,0.373806,0.407534,0.177257,0.781307,0.483188,0.621741,0.385706,0.0139772,0.114628,0.462359,0.123311,0.911763,0.302976,0.59403,0.249061,0.178091,0.590913,0.459905,0.978669,0.511464,0.455858,0.66698,0.963862,0.235049,0.932443,0.713064,0.234636,0.804091,0.274632,0.319492,0.225364,0.162924,0.65334,0.876867,0.834065,0.688381,0.327104,0.332593,0.852351,0.126545,0.506423,0.155762,0.0221058,0.248531,0.225324,0.146195,0.347641,0.289919,0.242289,0.838645,0.860224,0.390623,0.701733,0.102996,0.0850147,0.713049,0.0287652,0.87613,0.700255,0.586111,0.238818,0.871125,0.946102,0.812577,0.885493,0.0753331,0.282011,0.694735,0.821652,0.737693,0.265551,0.597727,0.0656939,0.207715,0.234746,0.77276,0.774423,0.525273,0.0666898,0.580118,0.664883,0.939935,0.538952,0.828341,0.618194,0.870111,0.609101,0.339279,0.403958,0.372547,0.869288,0.992762,0.0284042,0.291886,0.0892816,0.956989,0.504367,0.534156,|0.813746,0.0861356,0.854201,0.91562,0.619857,0.65843,0.71034,0.758384,0.606721,0.17426,0.756056,0.770674,0.846474,0.804627,0.46778,0.820673,0.657564,0.570843,0.0402963,0.963786,0.996487,0.0667651,0.423097,0.312328,0.796511,0.467781,0.0347877,0.489574,0.25984,0.527075,0.00923961,0.68256,0.401228,0.917561,0.643199,0.189689,0.520201,0.195684,0.997069,0.585188,0.590233,0.549888,0.86889,0.569072,0.629963,0.482176,0.123819,0.471111,0.349143,0.19612,0.968939,0.702712,0.561609,0.748525,0.13661,0.204767,0.947353,0.945569,0.241751,0.043888,0.128882,0.566017,0.346457,0.124429,0.1386,0.402905,0.623617,0.692416,0.943463,0.562562,0.0319074,0.0164022,0.124389,0.690132,0.801711,0.979954,0.531135,0.0447413,0.629964,0.944076,0.07251,0.180277,0.418721,0.332364,0.189856,0.222712,0.721756,0.933131,0.0820894,0.474666,0.444709,0.458546,0.95094,0.946517,0.540907,0.500712,0.170083,0.648205,0.87819,0.92041,0.828132,0.830513,0.485406,0.126039,0.533801,0.629395,0.14753,0.395493,0.507271,0.829821,0.567547,0.922999,0.747193,0.325837,0.188985,0.101453,0.660265,0.454892,0.797737,0.0747274,0.268657,0.49491,0.671265,0.978546,0.519938,0.822843,0.316734,0.592207,0.451117,0.308807,0.410624,0.226481,0.861872,0.814512,0.198024,0.492605,0.775708,0.634929,0.35358,0.0479709,0.863612,0.100653,0.416214,0.0886287,0.211302,0.393849,0.851987,0.401424,0.0883479,0.37097,0.76088,0.157774,0.682433,0.0121201,0.876036,0.243445,0.0445595,0.586407,0.840949,0.00673729,0.836257,0.0308535,0.080345,0.946287,0.933114,0.130609,0.578329,0.453464,0.715193,0.663712,0.752444,0.0928096,0.172195,0.886541,0.254005,0.00759161,0.0547033,0.314088,0.898987,0.50993,0.395695,0.169849,0.318421,0.322494,0.995324,0.658987,0.856834,0.0855951,0.240877,0.610238,0.936175,0.916532,0.573579,0.468647,0.113218,0.706966,0.219258,0.323752,0.630768,0.346135,0.156859,0.543944,0.945617,0.328971,0.456496,0.658501,0.298765,0.24041,0.306552,0.709391,0.0304784,0.914682,0.452843,0.646283,0.285392,0.804991,0.528851,0.996224,0.699727,0.27285,0.554377,0.298505,0.916956,0.847874,0.139314,0.963517,0.91375,0.136563,0.169264,0.56685,0.163198,0.251076,0.375611,0.511344,0.840175,0.0905622,0.889618,0.549243,0.479819,0.97739,0.120183,0.0439237,0.108506,0.880441,0.521839,0.56293,0.920845,0.799436,0.556353,0.802272,0.551106,0.306482,0.483134,0.730628,0.831885,0.463759,0.0958737,0.40307,0.592935,0.879792,0.66433,0.443315,0.194486,0.465614,0.03951,0.211072,0.424294,0.35909,0.661127,0.552746,0.10716,0.74678,0.423186,0.460089,0.788981,0.151173,0.369045,0.256132,0.273593,0.878134,0.139066,0.178409,0.780451,0.543085,0.411646,0.0787507,0.0906633,0.226533,0.158645,0.995877,0.0437767,0.962229,0.161534,0.714835,0.910303,0.922142,0.936184,0.684334,0.0485803,0.956956,0.82522,0.694571,0.357902,0.519432,0.987082,0.175961,0.456828,0.484493,0.698536,0.705256,0.752307,0.552898,0.684033,0.719418,0.830509,0.981482,0.474968,0.883714,0.503469,0.10439,0.298194,0.429385,0.259443,0.834777,0.617609,0.417195,0.675132,0.461966,0.244516,0.943581,0.426876,0.709391,0.708853,0.0214834,0.247783,0.737315,0.273225,0.769655,0.510527,0.852294,0.975826,0.731743,0.759471,0.579245,0.29092,0.943114,0.0269474,0.757616,0.558328,0.422699,0.0141049,0.466987,0.39963,0.869142,0.173448,0.396626,0.469996,0.938348,0.911061,0.174952,0.954788,0.404997,0.855138,0.757179,0.908507,0.758107,0.620245,0.640323,0.962765,0.0761173,0.0207662,0.636254,0.731369,0.830837,0.820791,0.240342,0.794718,0.199515,0.918567,0.231652,0.353891,0.645819,0.833806,0.890695,0.16454,0.480667,0.118718,0.00369722,0.374344,0.89678,0.383205,0.858282,0.734605,0.883414,0.921237,0.0230864,0.612005,0.469893,0.463482,0.0665084,0.978713,0.246204,0.0694606,0.350103,0.367153,0.99685,0.575776,0.671918,0.614574,0.515459,0.498545,0.568603,0.239164,0.453449,0.703565,0.253391,0.947101,0.572402,0.220248,0.112538,0.974709,0.454284,0.874406,0.983551,0.36533,0.979818,0.945384,0.999865,0.277448,0.39248,0.876223,0.422089,0.445254,0.296517,0.223533,0.768419,0.0915191,0.0926105,0.416082,0.806454,0.310669,0.150383,0.602177,0.0537201,0.459473,0.491538,0.32232,0.502843,0.893414,0.22815,0.0942894,0.376417,0.792781,0.679688,0.998152,0.771605,0.0618406,0.835514,0.981336,0.281685,0.40242,0.985903,0.850763,0.523633,0.387468,0.313655,0.950227,0.51127,0.9257,0.881455,0.635594,0.251604,0.361633,0.439761,0.47172,0.540233,0.704607,0.306098,0.0638346,0.150476,0.277929,0.516151,0.557108,0.271064,0.90498,0.54278,0.258148,0.617917,0.668415,0.918675,0.353795,0.614128,0.386975,0.0654078,0.0433797,0.219541,0.475783,0.0499898,0.399274,0.851,0.795201,0.217421,0.290101,0.848768,0.428277,0.703622,0.765275,0.69014,0.365156,0.197691,0.921278,0.216109,0.364042,0.769257,0.749956,0.729276,0.816067,0.00439346,0.395301,0.112094,0.0588613,0.994646,0.806074,0.618441,0.820485,0.695084,0.792131,0.111247,0.973939,0.996751,0.402871,0.230061,0.585955,0.406125,0.103637,0.405017,0.184654,0.514004,0.854525,0.551634,0.281808,0.276241,0.629839,0.978004,0.480685,0.0315539,0.884809,0.123593,0.503483,0.605487,0.305336,0.739508,0.822938,0.160784,0.254536,0.932634,0.174076,0.277214,0.25622,0.477631,0.659481,0.985569,0.961942,0.247756,0.208978,0.295485,0.717284,0.631038,0.274075,0.449777,0.874383,0.56522,0.328779,0.349221,0.770197,0.900698,0.998185,0.39216,0.167928,0.34919,0.620446,0.241184,0.326936,0.235295,0.14716,0.836955,0.31891,0.0274888,0.605794,0.0930645,0.576646,0.254045,0.949304,0.422178,0.408209,0.403259,0.247761,0.520155,0.463969,0.76503,0.794063,0.4926,0.639516,0.366871,0.0961722,0.229806,0.115219,0.823844,0.481771,0.270895,0.101261,0.9412,0.669975,0.698165,0.745433,0.941663,0.320657,0.293102,0.918312,0.165205,0.429776,0.290606,0.243432,0.541835,0.171655,0.959156,0.352235,0.743797,0.82847,0.891335,0.813961,0.50028,0.269801,0.835364,0.927227,0.846528,0.247299,0.626417,0.733925,0.756561,0.732621,0.0515605,0.557156,0.565322,0.196968,0.18162,0.741742,0.0542391,0.972257,0.696572,0.294934,0.0346416,0.131997,0.678459,0.0786523,0.157999,0.207109,0.0200262,0.870431,0.105798,0.0919509,0.248637,0.101894,0.705653,0.34355,0.0492552,0.846898,0.953058,0.453941,0.722239,0.527834,0.114008,0.773889,0.669492,0.716214,0.222538,0.698209,0.566873,0.517971,0.315618,0.0565851,0.637517,0.884819,0.581928,0.775081,0.893124,0.127838,0.741809,0.538673,0.497008,0.987405,0.145963,0.728691,0.946817,0.0135201,0.350617,0.625143,0.078356,0.929556,0.713005,0.291621,0.627486,0.993937,0.730344,0.468077,0.266163,0.48262,0.176685,0.10666,0.0476013,0.751165,0.0900264,0.202658,0.104772,0.649449,0.599407,0.176149,0.7771,0.685294,0.883801,0.87122,0.693879,0.455372,0.515267,0.0826544,0.302802,0.75,0.629061,0.947324,0.485973,0.874032,0.823501,0.852963,0.710763,0.88933,0.452261,0.781732,0.581731,0.747433,0.0334477,0.559301,0.413348,0.385077,0.203113,0.908803,0.287739,0.557763,0.718909,0.353167,0.849266,0.105862,0.477828,0.659648,0.396842,0.0115796,0.0432451,0.187747,0.0582253,0.420406,0.630698,0.908752,0.0858539,0.446254,0.260526,0.920437,0.0407721,0.312824,0.199983,0.0139355,0.184848,0.311038,0.908257,0.790888,0.696431,0.984799,0.470054,0.359008,0.655619,0.241819,0.208279,0.759074,0.661914,0.829042,0.620727,0.899581,0.157763,0.337773,0.58301,0.216451,0.430118,0.0250347,0.334115,0.105138,0.654589,0.474722,0.753247,0.343065,0.208912,0.456744,0.737369,0.192914,0.848223,0.487526,0.837625,0.623267,0.681781,0.0746919,0.908446,0.185069,0.100005,0.410194,0.564536,0.778376,0.0850032,0.468271,0.415569,0.0996709,0.284541,0.58302,0.984725,0.39222,0.389765,0.036938,0.636924,0.222729,0.0981715,0.215683,0.0597705,0.429393,0.0887946,0.665399,0.758243,0.807017,0.781778,0.415519,0.237177,0.212889,0.0422963,0.943921,0.218978,0.261812,0.69809,0.318114,0.814266,0.321234,0.793329,0.114197,0.778072,0.750448,0.879798,0.695412,0.859796,0.745409,0.979728,0.0608659,0.419809,0.317864,0.520617,0.102945,0.252893,0.873881,0.822509,0.686561,0.570169,0.158684,0.859481,0.217973,0.963678,0.122632,0.652488,0.407741,0.190673,0.942586,0.834912,0.6122,0.973685,0.84093,0.179569,0.158062,0.438891,0.93486,0.190258,0.188991,0.526749,0.0809737,0.335935,0.621913,0.790683,0.424608,0.566703,0.495877,0.968652,0.594208,0.626943,0.65066,0.252459,0.802856,0.959571,0.877382,0.232181,0.507133,0.417565,0.817743,0.627966,0.319019,0.198159,0.860538,0.370092,0.334572,0.871613,0.627531,0.423367,0.418911,0.651474,0.216528,0.0515802,0.749513,0.917997,0.658938,0.730381,0.0403722,0.238676,0.48776,0.114663,0.751838,0.374412,0.930516,0.232683,0.586689,0.0463605,0.1071,0.313295,0.0466688,0.798403,0.532361,0.214108,0.16466,0.558299,0.779474,0.493882,0.620901,0.1268,0.519396,0.883269,0.0119064,0.652435,0.325791,0.980321,0.762091,0.0178251,0.696353,0.544073,0.91667,0.313457,0.104491,0.762358,0.116655,0.457579,0.706518,0.0426153,0.137432,0.596108,0.482181,0.501131,0.664133,0.191261,0.235809,0.443168,0.777504,0.510758,0.0751253,0.274835,0.416795,0.239571,0.758682,0.586899,0.434387,0.00906807,0.460438,0.420513,0.745814,0.71331,0.167849,0.958826,0.991275,0.050929,0.604494,0.229035,0.383413,0.140659,0.32327,0.782715,0.524322,0.515531,0.331541,0.920452,0.680973,0.120547,0.115711,0.0485601,|0.569858,0.39823,0.119224,0.107971,0.56443,0.980238,0.425994,0.929,0.889835,0.500222,0.299962,0.839154,0.411218,0.753825,0.959083,0.0957038,0.649179,0.958542,0.319681,0.995582,0.498748,0.38867,0.390125,0.958659,0.858402,0.499835,0.694659,0.167114,0.758457,0.515189,0.791497,0.525773,0.637201,0.058251,0.681475,0.182676,0.89173,0.570544,0.458672,0.191073,0.401022,0.0859349,0.55564,0.709479,0.786707,0.260678,0.0298166,0.821329,0.457422,0.416001,0.84379,0.0940645,0.312753,0.20387,0.580782,0.386066,0.571824,0.0252704,0.516328,0.254889,0.288393,0.324692,0.272238,0.740662,0.469284,0.630545,0.952713,0.571996,0.977627,0.0990646,0.217283,0.886436,0.396165,0.301369,0.462289,0.58584,0.918207,0.021614,0.750157,0.323242,0.415346,0.215701,0.423218,0.98038,0.370044,0.542341,0.354366,0.878134,0.258481,0.128781,0.492864,0.70349,0.417065,0.0292773,0.439906,0.6728,0.115376,0.254732,0.75867,0.560527,0.411261,0.36246,0.480801,0.377514,0.399708,0.6591,0.196113,0.447996,0.123079,0.779799,0.0650607,0.621836,0.828694,0.109233,0.936586,0.487727,0.989615,0.814717,0.848179,0.150779,0.105555,0.822179,0.178727,0.596643,0.971715,0.65534,0.117536,0.557252,0.313389,0.699271,0.223069,0.498868,0.302906,0.35497,0.145293,0.449423,0.600057,0.231115,0.965451,0.580217,0.929959,0.625244,0.703739,0.715048,0.910701,0.498446,0.195485,0.211404,0.146764,0.0350451,0.0928408,0.394967,0.537369,0.233775,0.633355,0.158995,0.961648,0.918592,0.459481,0.928672,0.532683,0.271702,0.415478,0.11118,0.76022,0.561018,0.829191,0.236159,0.909243,0.688585,0.532261,0.778203,0.461934,0.636379,0.61737,0.53309,0.489055,0.0292106,0.446652,0.128328,0.726677,0.388915,0.00203747,0.854092,0.842257,0.588734,0.475809,0.413515,0.363836,0.576538,0.42934,0.565944,0.8404,0.384435,0.0922843,0.376708,0.85915,0.825518,0.639054,0.256055,0.55136,0.362664,0.377245,0.562931,0.279794,0.43739,0.0518459,0.810261,0.596375,0.440916,0.318487,0.224319,0.179593,0.346861,0.881085,0.482257,0.457942,0.243155,0.277851,0.721743,0.00815737,0.0256137,0.658753,0.301969,0.0840033,0.739878,0.168671,0.335122,0.59076,0.979724,0.761635,0.820298,0.055652,0.805044,0.731232,0.11373,0.975677,0.974084,0.320291,0.969832,0.548491,0.597049,0.167649,0.262249,0.440846,0.362752,0.778619,0.822339,0.31985,0.200143,0.00971591,0.308766,0.714967,0.9335,0.659759,0.0676221,0.486462,0.577367,0.164078,0.0711774,0.437056,0.805369,0.341536,0.674452,0.382079,0.5654,0.857526,0.51046,0.167388,0.262755,0.956149,0.307915,0.689071,0.0599978,0.721542,0.284911,0.343601,0.676715,0.98961,0.567645,0.46745,0.282522,0.640117,0.780829,0.300449,0.0636193,0.323824,0.590911,0.596069,0.605136,0.215751,0.55812,0.450557,0.776736,0.49004,0.630548,0.362956,0.405617,0.343155,0.892149,0.82545,0.431888,0.766143,0.00410563,0.480286,0.979223,0.135939,0.47496,0.412241,0.143271,0.917274,0.182227,0.590014,0.257973,0.83968,0.245937,0.99834,0.900441,0.113836,0.898989,0.404428,0.359096,0.365663,0.529047,0.0884978,0.353491,0.486352,0.471256,0.396592,0.993002,0.221345,0.321419,0.0194389,0.839064,0.509329,0.0131016,0.0270194,0.515111,0.380741,0.471621,0.756214,0.418442,0.716512,0.106437,0.993069,0.897581,0.039601,0.93732,0.443601,0.429506,0.304192,0.403103,0.574585,0.192085,0.533896,0.540555,0.657396,0.77404,0.365773,0.958832,0.0777925,0.988651,0.518399,0.390935,0.732313,0.12021,0.729384,0.692423,0.119327,0.0716397,0.980315,0.724996,0.639342,0.811581,0.919317,0.745852,0.370805,0.343094,0.27926,0.534241,0.241922,0.0603973,0.266675,0.0600954,0.0660485,0.747065,0.640885,0.671452,0.893654,0.417454,0.470861,0.339468,0.300607,0.43865,0.965599,0.280947,0.714609,0.0119821,0.704105,0.925035,0.642103,0.852949,0.730974,0.994192,0.953812,0.760458,0.340006,0.698672,0.030656,0.183168,0.244519,0.728872,0.971881,0.856574,0.513388,0.499861,0.353004,0.843649,0.781226,0.499135,0.201385,0.868459,0.775597,0.179957,0.414126,0.182291,0.259933,0.426027,0.339798,0.591932,0.753452,0.586837,0.999125,0.989037,0.648257,0.338453,0.187302,0.193911,0.860911,0.93783,0.531981,0.357245,0.167568,0.709458,0.515205,0.890096,0.0820357,0.938047,0.262306,0.488495,0.0863007,0.866034,0.989541,0.111933,0.178823,0.279101,0.0903582,0.19848,0.705928,0.227426,0.444307,0.123575,0.2214,0.46395,0.0493075,0.145007,0.283569,0.0550923,0.462658,0.954679,0.228747,0.905059,0.3988,0.5954,0.835098,0.299725,0.36436,0.611344,0.127146,0.595832,0.774141,0.214743,0.536653,0.865015,0.996533,0.805716,0.924804,0.730714,0.263522,0.61211,0.163508,0.226435,0.285148,0.88309,0.318257,0.7309,0.273903,0.736403,0.0936939,0.786879,0.360834,0.763482,0.437116,0.719338,0.878865,0.657985,0.859569,0.801683,0.770313,0.269438,0.712336,0.59291,0.176359,0.705947,0.24007,0.578832,0.413753,0.91128,0.87849,0.500434,0.940683,0.401239,0.399106,0.30193,0.536424,0.832107,0.069703,0.224815,0.482576,0.0250808,0.884754,0.915603,0.182731,0.446923,0.991046,0.546632,0.0112957,0.409293,0.962268,0.656894,0.393849,0.380682,0.73572,0.0662428,0.188902,0.32336,0.829471,0.879978,0.172194,0.612934,0.370853,0.702151,0.279088,0.332227,0.108551,0.185419,0.452353,0.0302027,0.999005,0.292692,0.878439,0.440776,0.823463,0.104914,0.484398,0.490836,0.332097,0.0663988,0.65229,0.565254,0.202039,0.466838,0.380714,0.157838,0.557652,0.632138,0.589069,0.450146,0.395909,0.454568,0.19312,0.412686,0.337591,0.475225,0.92627,0.152337,0.110551,0.469253,0.0969924,0.223715,0.646655,0.0830374,0.285274,0.0257475,0.276807,0.675466,0.00424564,0.0785848,0.401061,0.12556,0.218778,0.916901,0.908513,0.851249,0.590085,0.969042,0.075671,0.179887,0.936979,0.974644,0.800215,0.28974,0.700081,0.346983,0.7988,0.392961,0.0282446,0.568901,0.407737,0.576541,0.808274,0.315654,0.760965,0.342077,0.411191,0.760469,0.00412184,0.826412,0.409983,0.681868,0.459723,0.470597,0.763932,0.430863,0.519654,0.238185,0.513848,0.930015,0.973906,0.751212,0.119772,0.214848,0.502388,0.161534,0.522091,0.0422956,0.221187,0.465641,0.798918,0.724211,0.353527,0.667573,0.545726,0.329547,0.207161,0.0286211,0.185213,0.03316,0.2446,0.202085,0.828616,0.911651,0.224071,0.713677,0.604662,0.00416178,0.423635,0.933744,0.538377,0.222149,0.532049,0.786505,0.214442,0.978142,0.0637444,0.365957,0.91961,0.454377,0.0440126,0.37247,0.792017,0.271156,0.886471,0.69844,0.37829,0.784403,0.759708,0.836124,0.121608,0.950885,0.926271,0.0313395,0.422232,0.92609,0.690603,0.790647,0.767212,0.778482,0.414733,0.510485,0.273345,0.903388,0.945392,0.511322,0.60997,0.409565,0.66949,0.00838381,0.60081,0.308914,0.486926,0.0134296,0.658927,0.850704,0.295785,0.562426,0.937746,0.697685,0.455856,0.930315,0.378677,0.834942,0.935442,0.64343,0.480162,0.819624,0.371609,0.223672,0.41795,0.40833,0.974241,0.217844,0.669313,0.886777,0.836485,0.209121,0.198779,0.729647,0.96749,0.168931,0.115199,0.564432,0.718864,0.646272,6.68764e-05,0.217549,0.431954,0.249775,0.990995,0.444571,0.359373,0.759603,0.0797122,0.186633,0.301218,0.0428272,0.0539147,0.44998,0.516327,0.0337815,0.350415,0.947032,0.83923,0.278208,0.548626,0.670223,0.562577,0.626718,0.548566,0.346228,0.783167,0.584835,0.666789,0.0760766,0.0422079,0.150182,0.739609,0.585126,0.320563,0.091765,0.443956,0.235077,0.704702,0.629367,0.318079,0.654302,0.737413,0.365253,0.311352,0.840841,0.0359564,0.42121,0.170401,0.492028,0.767882,0.687149,0.330544,0.868137,0.70007,0.529446,0.56291,0.649264,0.0799748,0.956503,0.0629793,0.0463887,0.622487,0.98701,0.767154,0.581254,0.927362,0.168896,0.189154,0.298014,0.375133,0.299878,0.321308,0.418541,0.923082,0.433785,0.674231,0.797836,0.109224,0.836238,0.173185,0.907288,0.186076,0.243715,0.567735,0.896376,0.72755,0.945976,0.976925,0.206285,0.57042,0.385572,0.542666,0.283197,0.49545,0.340006,0.56161,0.364422,0.573429,0.470146,0.938169,0.256849,0.249301,0.959331,0.673029,0.545709,0.849408,0.237185,0.482448,0.601272,0.660977,0.261232,0.846583,0.0171279,0.369647,0.871974,0.399039,0.13737,0.470396,0.580249,0.172442,0.82672,0.241905,0.847208,0.262836,0.12065,0.0767468,0.13892,0.595709,0.370916,0.768314,0.0258777,0.199137,0.365109,0.876656,0.32375,0.833948,0.0526494,0.756954,0.711347,0.811985,0.77185,0.553066,0.00610751,0.221865,0.495731,0.0243056,0.577896,0.00796962,0.251393,0.0452926,0.817395,0.27517,0.290262,0.214852,0.0828108,0.284848,0.321848,0.867952,0.899463,0.361189,0.807317,0.475005,0.927906,0.248336,0.630295,0.500343,0.827648,0.815735,0.822228,0.156185,0.21628,0.457093,0.610752,0.509284,0.930251,0.533291,0.996137,0.579424,0.0132958,0.330532,0.0395061,0.0386508,0.651509,0.68793,0.586104,0.305467,0.122869,0.488329,0.622135,0.278495,0.0295436,0.402031,0.827133,0.501665,0.233306,0.980097,0.737798,0.489655,0.864348,0.771043,0.744389,0.40189,0.0655622,0.423484,0.921165,0.333488,0.903243,0.77351,0.698269,0.704691,0.706393,0.699978,0.250692,0.202122,0.378053,0.353654,0.661609,0.375837,0.419018,0.500927,0.951485,0.0171457,0.173255,0.617275,0.708973,0.198535,0.627972,0.111407,0.640616,0.132888,0.115117,0.747017,0.430372,0.526607,0.110918,0.895922,0.063346,0.688299,0.789912,0.770984,0.952832,0.286045,0.84339,0.0356537,0.587494,0.34597,0.408578,0.345204,0.0170634,0.265912,0.206575,0.705845,0.661277,0.678953,0.0639715,|0.568175,0.931226,0.358957,0.940625,0.793279,0.042321,0.0974867,0.770243,0.216403,0.0686694,0.618497,0.588811,0.180648,0.772037,0.83986,0.235479,0.0218942,0.287936,0.0732985,0.666824,0.535645,0.648226,0.404065,0.109989,0.949463,0.46398,0.803145,0.298239,0.771071,0.224132,0.897089,0.270207,0.054459,0.662813,0.0216023,0.581637,0.908782,0.163572,0.76765,0.76112,0.661162,0.428281,0.396354,0.722989,0.101084,0.625903,0.527943,0.658078,0.935599,0.268051,0.727692,0.416602,0.909754,0.928095,0.538832,0.539103,0.287772,0.119952,0.907447,0.388181,0.939546,0.275321,0.188354,0.748153,0.390363,0.148068,0.569308,0.616403,0.0410538,0.464154,0.271226,0.872191,0.379186,0.962192,0.127163,0.179912,0.0461429,0.370151,0.682974,0.552521,0.236323,0.928176,0.518122,0.307826,0.336031,0.208778,0.783272,0.332379,0.608549,0.91869,0.950866,0.435341,0.116736,0.0815768,0.795402,0.0556017,0.493413,0.958439,0.677452,0.597037,0.648561,0.0597436,0.224461,0.586905,0.71954,0.859035,0.576869,0.581808,0.803091,0.00241458,0.200748,0.548595,0.225259,0.317291,0.626444,0.191289,0.963629,0.848186,0.541713,0.390563,0.692558,0.694043,0.127617,0.0551723,0.521888,0.0361352,0.0432103,0.484063,0.529048,0.313702,0.0201253,0.221607,0.221916,0.935169,0.175826,0.36131,0.850612,0.743782,0.044818,0.670919,0.621666,0.553294,0.200492,0.769819,0.392217,0.268949,0.746205,0.761017,0.654976,0.595838,0.118876,0.551613,0.377057,0.316813,0.659995,0.221382,0.930317,0.707474,0.19223,0.416458,0.415358,0.574286,0.754084,0.807236,0.650788,0.470888,0.496779,0.927286,0.680899,0.025528,0.186999,0.322981,0.998135,0.292058,0.413806,0.0222488,0.281189,0.916418,0.322834,0.585974,0.0976298,0.122891,0.657344,0.152807,0.508279,0.00352871,0.864161,0.592759,0.996457,0.389199,0.996891,0.985222,0.0736813,0.122926,0.216988,0.50768,0.0584923,0.609472,0.124664,0.572315,0.350688,0.491362,0.426014,0.037522,0.572418,0.156616,0.4596,0.364383,0.267082,0.654971,0.492468,0.576091,0.895885,0.396912,0.0288951,0.0350969,0.461964,0.186635,0.120682,0.293795,0.0199383,0.301416,0.977534,0.709919,0.0122777,0.110279,0.0738125,0.750547,0.118328,0.947727,0.47712,0.323366,0.941577,0.576285,0.0642968,0.522876,0.0227314,0.554157,0.0520576,0.419898,0.0611668,0.185643,0.459745,0.532771,0.900494,0.572727,0.452525,0.802055,0.146939,0.357832,0.455902,0.373258,0.570149,0.915211,0.408247,0.638161,0.350849,0.409339,0.434718,0.305204,0.661579,0.0706101,0.326583,0.469356,0.959825,0.38649,0.588565,0.825268,0.257894,0.0348286,0.208808,0.242726,0.116264,0.57627,0.554339,0.0983377,0.435358,0.809943,0.927934,0.383163,0.313215,0.113072,0.698643,0.566971,0.494291,0.473426,0.145421,0.780645,0.429864,0.357472,0.38232,0.211977,0.579221,0.73262,0.212435,0.399342,0.307811,0.174414,0.148091,0.215379,0.290661,0.153754,0.48239,0.172176,0.216961,0.297865,0.532049,0.0901999,0.33058,0.944919,0.900976,0.34907,0.91186,0.427679,0.553771,0.241699,0.929051,0.659107,0.581265,0.826363,0.106707,0.874353,0.479761,0.278216,0.278402,0.70238,0.517047,0.125717,0.450277,0.156989,0.0388454,0.755721,0.80005,0.343047,0.142296,0.607408,0.55082,0.787822,0.58508,0.273323,0.317404,0.756051,0.963793,0.694817,0.461373,0.668483,0.690997,0.975711,0.964104,0.992875,0.0489898,0.633931,0.291057,0.971254,0.556453,0.202518,0.698418,0.779257,0.883502,0.0950295,0.525678,0.142817,0.502017,0.863302,0.733929,0.383527,0.904058,0.684314,0.661589,0.751993,0.580837,0.787802,0.192018,0.713263,0.706218,0.582877,0.109994,0.207239,0.122839,0.628728,0.349724,0.652988,0.513534,0.590971,0.680836,0.435181,0.453389,0.494539,0.0782883,0.735069,0.808248,0.479862,0.395006,0.467951,0.750837,0.24975,0.331133,0.682855,0.803107,0.606015,0.0679052,0.484414,0.786629,0.98971,0.261315,0.134522,0.255595,0.599417,0.232912,0.202817,0.338732,0.386469,0.000625551,0.842687,0.402735,0.0743591,0.254656,0.0275471,0.419388,0.356336,0.557804,0.606272,0.314169,0.834064,0.760879,0.480945,0.398704,0.85142,0.21091,0.0752797,0.0313494,0.86732,0.320503,0.564097,0.174175,0.472434,0.489173,0.46307,0.00223607,0.0432788,0.964743,0.663988,0.354614,0.587801,0.567769,0.652499,0.313678,0.218142,0.502814,0.712619,0.904994,0.87819,0.935005,0.809959,0.365619,0.0250685,0.525947,0.634162,0.614597,0.248883,0.876999,0.391912,0.626617,0.52233,0.258832,0.795559,0.777636,0.391116,0.13295,0.05595,0.646892,0.6499,0.18966,0.471786,0.538324,0.367221,0.107864,0.279304,0.665721,0.795709,0.0589153,0.910194,0.496656,0.185131,0.0545242,0.257738,0.0183637,0.530575,0.439486,0.732077,0.0372232,0.908108,0.784961,0.857596,0.160282,0.25294,0.547406,0.825743,0.933865,0.873927,0.990523,0.674533,0.835539,0.103806,0.311522,0.550041,0.84085,0.465229,0.0326167,0.591853,0.737339,0.951758,0.497707,0.32715,0.481361,0.970153,0.917183,0.965467,0.72079,0.963082,0.359567,0.765857,0.629365,0.151709,0.632471,0.403543,0.143341,0.986266,0.601381,0.367577,0.456145,0.498549,0.420755,0.410444,0.0985883,0.84765,0.637962,0.297428,0.684727,0.330474,0.658312,0.325846,0.961566,0.127046,0.59055,0.453971,0.876432,0.642029,0.988035,0.299303,0.841642,0.987654,0.286602,0.947871,0.0508316,0.980395,0.879268,0.00324827,0.245767,0.658746,0.028011,0.423466,0.744581,0.0880837,0.469568,0.524962,0.87959,0.645676,0.272065,0.508089,0.791592,0.66336,0.46611,0.284599,0.648003,0.511274,0.178684,0.392219,0.232335,0.772262,0.960608,0.668433,0.918033,0.937663,0.271625,0.740811,0.400001,0.924329,0.686115,0.562806,0.600671,0.94169,0.11087,0.36608,0.493175,0.76792,0.686664,0.268259,0.686586,0.916487,0.874089,0.994746,0.588218,0.44876,0.230329,0.629357,0.288244,0.350614,0.813237,0.224961,0.179012,0.524585,0.795808,0.997348,0.225914,0.95859,0.0396824,0.427373,0.498504,0.957558,0.750527,0.539827,0.599631,0.439558,0.5113,0.607065,0.665672,0.843881,0.695807,0.658803,0.176599,0.23238,0.280338,0.956919,0.711482,0.954963,0.240929,0.971584,0.361323,0.102493,0.704328,0.432101,0.424798,0.347791,0.0933774,0.922515,0.29912,0.508343,0.972619,0.886471,0.573205,0.941364,0.127073,0.759412,0.738683,0.0641477,0.125044,0.956715,0.97101,0.834808,0.712145,0.567984,0.865561,0.417332,0.664416,0.324328,0.271831,0.619462,0.417339,0.293981,0.363032,0.0186547,0.25202,0.534259,0.300036,0.635886,0.7439,0.411073,0.799028,0.646733,0.140848,0.723937,0.0888043,0.3124,0.802149,0.656949,0.196549,0.964671,0.281999,0.563617,0.145068,0.534039,0.0319397,0.763104,0.856676,0.0159346,0.653447,0.801427,0.611131,0.795069,0.720336,0.254507,0.313125,0.936809,0.574498,0.616304,0.994166,0.327584,0.603248,0.483259,0.266825,0.759649,0.0817943,0.579765,0.485175,0.756175,0.316087,0.654198,0.58257,0.827576,0.751155,0.167575,0.765448,0.907541,0.131007,0.97618,0.651767,0.134119,0.580394,0.746033,0.759587,0.178309,0.827431,0.0239709,0.888708,0.496501,0.428434,0.641591,0.55433,0.523827,0.283353,0.731289,0.0550967,0.33349,0.151661,0.886741,0.0424628,0.827656,0.715425,0.48261,0.837579,0.850128,0.46878,0.458307,0.215519,0.350284,0.877108,0.730143,0.0204504,0.609798,0.224083,0.684277,0.784122,0.248302,0.932499,0.0164639,0.623633,0.909635,0.915919,0.982924,0.488379,0.64381,0.324214,0.74654,0.976767,0.868952,0.119861,0.730887,0.187625,0.203964,0.657405,0.0968887,0.28713,0.217378,0.365671,0.642623,0.878054,0.163283,0.630172,0.104917,0.00442797,0.51163,0.0410604,0.810901,0.490042,0.333456,0.704675,0.0200619,0.208255,0.811046,0.954497,0.00127143,0.437542,0.837237,0.609505,0.307841,0.931867,0.0418475,0.856824,0.0112404,0.245561,0.479168,0.00882274,0.558874,0.0476038,0.388329,0.866291,0.983955,0.995078,0.708595,0.988295,0.692277,0.567765,0.973422,0.866384,0.560656,0.359767,0.0738811,0.940452,0.823599,0.233818,0.661804,0.271571,0.396402,0.770354,0.836959,0.0114163,0.350971,0.894843,0.0647804,0.796089,0.971961,0.924207,0.506309,0.377065,0.21737,0.760014,0.85868,0.944232,0.680867,0.378042,0.97082,0.311303,0.147911,0.0215843,0.833677,0.0325661,0.733084,0.720419,0.794825,0.0285348,0.274228,0.388394,0.365379,0.50899,0.998898,0.0632203,0.865482,0.950917,0.472736,0.119963,0.315541,0.806667,0.411426,0.726793,0.481551,0.381491,0.941999,0.549979,0.810905,0.694131,0.487991,0.800634,0.258162,0.861548,0.44709,0.492345,0.581043,0.142445,0.954665,0.10771,0.435872,0.913449,0.62836,0.979012,0.78949,0.0975994,0.1385,0.94978,0.172548,0.893986,0.698102,0.546971,0.538632,0.298109,0.0879155,0.320156,0.513082,0.241724,0.311683,0.243911,0.924075,0.19455,0.764828,0.279882,0.866169,0.577238,0.854769,0.446169,0.329397,0.353842,0.600016,0.604861,0.0931169,0.850537,0.290645,0.780044,0.871117,0.647509,0.119357,0.286308,0.516144,0.0997313,0.505009,0.286313,0.765528,0.368047,0.403227,0.663681,0.165989,0.224874,0.652852,0.257486,0.0878816,0.720401,0.584763,0.396233,0.946648,0.256995,6.31809e-06,0.752452,0.767731,0.184,0.785474,0.255055,0.381508,0.870913,0.117042,0.329556,0.184776,0.66554,0.707347,0.754207,0.906325,0.51045,0.646371,0.199768,0.926037,0.0645731,0.137491,0.632443,0.600322,0.617008,0.909508,0.179584,0.814155,0.957358,0.375416,0.284228,0.178897,0.317939,0.48114,0.785134,0.445314,0.326739,0.154352,0.416612,0.831422,0.697889,0.000979602,0.350179,0.370602,0.434772,0.225359,0.68878,0.472673,0.788329,0.00518405,0.273777,0.00114888,|0.701149,0.659199,0.742808,0.407372,0.481516,0.883508,0.648597,0.903055,0.612606,0.472631,0.664798,0.167229,0.632567,0.212198,0.492449,0.548121,0.630259,0.608601,0.763997,0.78188,0.72095,0.295604,0.51161,0.482078,0.0111925,0.0263345,0.0701779,0.575305,0.0588862,0.5682,0.426877,0.585497,0.194138,0.103726,0.269211,0.337054,0.61788,0.325455,0.868681,0.267038,0.143637,0.342981,0.558855,0.593178,0.482898,0.00464648,0.997798,0.0964947,0.105916,0.0142555,0.622971,0.772588,0.67254,0.798987,0.296531,0.76402,0.901979,0.650887,0.414046,0.0265313,0.377488,0.266595,0.563804,0.909049,0.614113,0.987615,0.603684,0.764997,0.993476,0.63941,0.713956,0.112496,0.0415716,0.133748,0.084578,0.567958,0.179018,0.107879,0.335305,0.569935,0.372893,0.20773,0.886398,0.309965,0.0451598,0.645267,0.158385,0.942178,0.826964,0.993204,0.901812,0.525109,0.764127,0.760405,0.28777,0.592167,0.470013,0.596083,0.39308,0.470054,0.287418,0.401559,0.26281,0.964823,0.0297064,0.651806,0.127192,0.0406868,0.266186,0.221747,0.413778,0.734178,0.270563,0.553361,0.0146785,0.691973,0.97279,0.723965,0.726027,0.0750991,0.319507,0.139498,0.402845,0.575186,0.303037,0.808335,0.488045,0.958228,0.642176,0.56339,0.819514,0.394787,0.786804,0.450011,0.688556,0.603541,0.665423,0.544474,0.92935,0.830361,0.17839,0.697733,0.310267,0.146025,0.593946,0.271841,0.88904,0.306634,0.486323,0.0391344,0.394425,0.814939,0.73287,0.247336,0.430015,0.195664,0.620309,0.952068,0.312466,0.101981,0.767866,0.286031,0.766315,0.462922,0.36325,0.205688,0.265112,0.316804,0.166616,0.786391,0.686054,0.322234,0.482264,0.63205,0.653212,0.342625,0.596659,0.0367168,0.756198,0.508387,0.0966558,0.476412,0.421829,0.187513,0.470389,0.534183,0.763556,0.759664,0.815353,0.410631,0.318574,0.73011,0.819903,0.170163,0.767911,0.801677,0.601544,0.607114,0.617662,0.0425441,0.981877,0.316891,0.946477,0.957712,0.665694,0.982519,0.437809,0.292025,0.279988,0.279531,0.91719,0.907347,0.335203,0.100747,0.203245,0.203109,0.475502,0.160858,0.0376749,0.31217,0.608932,0.516491,0.920846,0.769478,0.0429672,0.832578,0.550296,0.715641,0.429213,0.960504,0.893238,0.965057,0.0252295,0.157936,0.0169543,0.012437,0.978201,0.994547,0.660979,0.384954,0.492763,0.700119,0.491557,0.101004,0.21767,0.414886,0.0231982,0.205584,0.86205,0.173435,0.343918,0.737806,0.803325,0.338468,0.50327,0.0859088,0.808795,0.970351,0.106663,0.986709,0.973339,0.660413,0.251721,0.995863,0.869521,0.139843,0.817945,0.516287,0.951906,0.299853,0.543572,0.980755,0.939565,0.931328,0.109456,0.494488,0.459614,0.696946,0.362163,0.827916,0.399303,0.724803,0.0726342,0.85629,0.279073,0.182692,0.769636,0.55748,0.0860606,0.062893,0.979048,0.31746,0.009224,0.806153,0.202067,0.798844,0.271864,0.42422,0.986586,0.604495,0.602926,0.450356,0.473846,0.576215,0.017464,0.514558,0.132847,0.808798,0.323638,0.168431,0.198693,0.665946,0.875981,0.576476,0.0806968,0.522234,0.669748,0.360012,0.0238258,0.566292,0.389528,0.816974,0.474445,0.991212,0.411132,0.0469032,0.0531101,0.363503,0.339434,0.991722,0.596022,0.439223,0.983436,0.171658,0.278446,0.12118,0.988832,0.115374,0.925691,0.0536174,0.918804,0.0970978,0.135668,0.266157,0.664088,0.39729,0.502375,0.898598,0.911242,0.328708,0.13375,0.688656,0.35019,0.756309,0.0413557,0.0998441,0.36196,0.0224901,0.97845,0.163223,0.709112,0.662699,0.230891,0.471057,0.374108,0.0660164,0.374254,0.0272106,0.436676,0.887524,0.540707,0.474368,0.898825,0.156329,0.814373,0.856051,0.766538,0.689285,0.525293,0.520709,0.412593,0.661561,0.953299,0.38617,0.784552,0.731522,0.713161,0.860172,0.681489,0.415127,0.0997559,0.592944,0.854617,0.227191,0.359235,0.322802,0.460876,0.674329,0.933155,0.706499,0.408706,0.719926,0.589132,0.131035,0.656793,0.77074,0.580477,0.559883,0.432412,0.482661,0.481814,0.167749,0.298517,0.40932,0.680134,0.162833,0.692763,0.270934,0.139813,0.667402,0.274604,0.300773,0.219744,0.319189,0.16135,0.00738603,0.958706,0.201412,0.0376353,0.997198,0.485821,0.413426,0.193154,0.676375,0.280119,0.556658,0.553135,0.403881,0.734677,0.733533,0.466193,0.351484,0.518354,0.579199,0.180215,0.551492,0.70044,0.902738,0.490223,0.12438,0.337763,0.389323,0.811313,0.315908,0.899473,0.474895,0.537952,0.423244,0.119715,0.121562,0.221492,0.60026,0.228999,0.535676,0.702466,0.359069,0.57362,0.788063,0.643346,0.570932,0.920741,0.196212,0.338123,0.657813,0.450582,0.919075,0.789317,0.351066,0.23382,0.377995,0.383785,0.109359,0.303241,0.679274,0.456392,0.324078,0.651497,0.282365,0.0409355,0.986419,0.762892,0.0241689,0.678002,0.147363,0.174539,0.728265,0.0518641,0.56419,0.954997,0.736737,0.00354141,0.308684,0.284028,0.195634,0.386284,0.992031,0.277141,0.172659,0.894389,0.108956,0.607024,0.620921,0.978019,0.00440723,0.699692,0.983609,0.422291,0.637322,0.741664,0.40897,0.845866,0.331001,0.568772,0.796188,0.829759,0.0928419,0.276216,0.132361,0.79542,0.645577,0.727039,0.919742,0.367277,0.57866,0.48903,0.496388,0.918018,0.782733,0.656241,0.382793,0.532158,0.846739,0.823644,0.0159379,0.150858,0.421137,0.429606,0.956577,0.39235,0.116896,0.386429,0.0662109,0.959041,0.910886,0.269519,0.383045,0.874862,0.864249,0.616748,0.527562,0.256489,0.560815,0.712586,0.326359,0.578381,0.243321,0.729524,0.496226,0.41962,0.874671,0.536678,0.806432,0.648244,0.20624,0.187281,0.631032,0.561194,0.372626,0.211807,0.640063,0.0421693,0.200399,0.202192,0.948173,0.955649,0.227799,0.377729,0.508976,0.462426,0.549739,0.689795,0.290135,0.328274,0.875107,0.281335,0.711892,0.0842722,0.931664,0.446954,0.142091,0.198042,0.229724,0.628865,0.155961,0.553403,0.121862,0.500813,0.315692,0.973484,0.727974,0.832604,0.85618,0.529544,0.0564618,0.173915,0.240813,0.849122,0.884919,0.680396,0.728038,0.876873,0.9013,0.995438,0.174039,0.103843,0.8506,0.769493,0.324104,0.800366,0.434909,0.877111,0.183589,0.523344,0.473407,0.0923269,0.697961,0.270481,0.71712,0.949549,0.257945,0.197351,0.903532,0.801889,0.266753,0.0873298,0.863322,0.974792,0.677476,0.394853,0.402588,0.226204,0.00575387,0.664502,0.835825,0.450437,0.818072,0.12906,0.815634,0.380781,0.260749,0.628239,0.467917,0.745066,0.157328,0.986169,0.595384,0.126284,0.00695109,0.174292,0.0714372,0.798865,0.889744,0.72433,0.544038,0.146972,0.45442,0.175033,0.0564566,0.709565,0.636063,0.461731,0.299623,0.565684,0.827448,0.139634,0.836139,0.819296,0.394534,0.834774,0.345466,0.235663,0.2171,0.745492,0.212356,0.810499,0.239745,0.191709,0.780762,0.271271,0.923867,0.0351012,0.21596,0.947549,0.685287,0.21459,0.28597,0.649233,0.0137717,0.716167,0.896201,0.488084,0.8752,0.482566,0.142006,0.781921,0.702123,0.328813,0.756774,0.773838,0.696305,0.233043,0.0525215,0.6537,0.195261,0.637797,0.320042,0.389069,0.91241,0.536821,0.373042,0.498203,0.765689,0.760762,0.411542,0.178221,0.6151,0.757989,0.160375,0.909074,0.153907,0.790525,0.0944374,0.0515736,0.771902,0.822506,0.246173,0.751503,0.702449,0.733141,0.0320069,0.138512,0.0915227,0.333843,0.165581,0.823405,0.162667,0.623441,0.12537,0.495845,0.782173,0.697799,0.905284,0.325502,0.173081,0.38694,0.0998338,0.98386,0.246981,0.358563,0.0454979,0.326551,0.629809,0.797821,0.149171,0.712896,0.145442,0.820318,0.563284,0.137249,0.991635,0.653062,0.332357,0.572698,0.756341,0.888098,0.685946,0.291284,0.575657,0.318419,0.75261,0.134737,0.795345,0.813444,0.496785,0.157324,0.784825,0.353071,0.613634,0.921213,0.234147,0.785955,0.291666,0.0942473,0.118324,0.911375,0.170518,0.0275558,0.914499,0.772543,0.767514,0.729526,0.0541127,0.595611,0.763303,0.543159,0.037389,0.713483,0.475846,0.976246,0.343673,0.0655056,0.338704,0.843526,0.797437,0.956329,0.305951,0.807164,0.132867,0.34066,0.789503,0.976598,0.200566,0.245943,0.826572,0.73287,0.502178,0.486974,0.37784,0.0637096,0.614973,0.0220711,0.319009,0.840945,0.485533,0.0029791,0.764433,0.217277,0.788623,0.0377094,0.806528,0.00190604,0.625333,0.644112,0.657165,0.914592,0.275219,0.449146,0.0921176,0.442254,0.266652,0.879,0.104435,0.900343,0.718786,0.158706,0.553717,0.87447,0.597042,0.51812,0.861292,0.300871,0.420703,0.185804,0.853961,0.718125,0.535027,0.0776517,0.383747,0.968814,0.575559,0.343476,0.652295,0.54502,0.5837,0.311298,0.764764,0.0649396,0.495058,0.015432,0.267273,0.0783974,0.0693799,0.462841,0.576745,0.875966,0.263033,0.0712706,0.136224,0.0340587,0.938124,0.952584,0.233549,0.212803,0.706178,0.208696,0.808123,0.770516,0.686414,0.431878,0.952194,0.775499,0.67906,0.145966,0.868855,0.152607,0.893019,0.816348,0.675771,0.0945573,0.416046,0.913125,0.921797,0.586377,0.646024,0.352334,0.295177,0.72768,0.951824,0.989375,0.673751,0.767454,0.202259,0.727507,0.556602,0.612862,0.503382,0.839087,0.349349,0.2211,0.276973,0.355613,0.104746,0.682578,0.433113,0.313728,0.881243,0.274931,0.936416,0.909196,0.169881,0.019181,0.565375,0.418039,0.781376,0.520293,0.250193,0.0598073,0.230399,0.926451,0.100107,0.404595,0.735143,0.567302,0.862078,0.0839295,0.170672,0.702236,0.267521,0.72049,0.000926137,0.621099,0.98508,0.722234,0.98594,0.484874,0.133416,0.726523,0.829412,0.115186,0.489335,0.340069,0.281383,0.852954,0.837061,0.231664,0.318337,0.863258,0.169065,0.684303,0.325002,0.492753,0.222366,0.00259429,0.580447,0.209117,0.456364,0.27277,0.0634624,0.471997,0.993114,|0.868843,0.868547,0.283681,0.290215,0.405182,0.452093,0.389484,0.520345,0.477867,0.579048,0.796208,0.520693,0.34927,0.105756,0.709997,0.159645,0.94889,0.27493,0.674843,0.114684,0.200505,0.258812,0.339551,0.555075,0.124366,0.854595,0.291569,0.0609677,0.916989,0.754345,0.144233,0.108644,0.0226008,0.774897,0.513144,0.992765,0.402583,0.201782,0.352666,0.419563,0.00355852,0.678479,0.480775,0.754116,0.300071,0.998993,0.67545,0.0211978,0.863631,0.630922,0.48303,0.446359,0.938206,0.518819,0.440346,0.560121,0.256957,0.76435,0.453829,0.443313,0.375596,0.728663,0.0469133,0.887464,0.58533,0.00429624,0.0564089,0.269205,0.304631,0.503124,0.642852,0.986288,0.769661,0.883574,0.842263,0.203582,0.0526464,0.608905,0.982423,0.705667,0.82456,0.540781,0.916593,0.674511,0.656044,0.319918,0.323128,0.726541,0.0292118,0.149835,0.876837,0.15303,0.846294,0.795684,0.997354,0.776557,0.842116,0.917876,0.963482,0.324721,0.884827,0.0613491,0.794175,0.0244497,0.330081,0.149849,0.240386,0.323853,0.301928,0.0477582,0.669101,0.0410374,0.937862,0.423418,0.911135,0.816136,0.611636,0.158733,0.280176,0.297463,0.862327,0.71906,0.964796,0.812995,0.240721,0.625495,0.621,0.534384,0.449717,0.882502,0.223849,0.636956,0.668714,0.365425,0.752665,0.83944,0.714538,0.0988313,0.573976,0.702941,0.447201,0.791152,0.264974,0.188433,0.87445,0.745875,0.969246,0.698739,0.923773,0.974296,0.496172,0.157508,0.978723,0.316767,0.667424,0.232306,0.18154,0.436212,0.0690724,0.417426,0.844781,0.973737,0.588438,0.179364,0.0787839,0.0588134,0.61652,0.943972,0.906685,0.159595,0.149803,0.551497,0.468355,0.694577,0.172828,0.613721,0.819166,0.524862,0.73416,0.101881,0.252662,0.0524332,0.49674,0.100628,0.739273,0.138156,0.287675,0.617685,0.558565,0.400848,0.20193,0.450455,0.881432,0.148082,0.563394,0.655361,0.392083,0.847702,0.871956,0.390725,0.936125,0.289706,0.772893,0.304171,0.609761,0.837166,0.814462,0.35619,0.0524283,0.0494007,0.123797,0.49881,0.177316,0.196801,0.344227,0.304572,0.920424,0.977625,0.24522,0.154313,0.817709,0.473079,0.0788913,0.571488,0.622967,0.120106,0.0758318,0.158647,0.314236,0.446645,0.170751,0.528016,0.97859,0.686843,0.1134,0.158746,0.0541024,0.233563,0.502257,0.928519,0.269622,0.941252,0.043664,0.358378,0.614372,0.0664867,0.599915,0.011102,0.057376,0.0160581,0.585857,0.349572,0.85443,0.456635,0.657422,0.333314,0.965326,0.298516,0.179096,0.0845875,0.429244,0.693739,0.624256,0.11949,0.983389,0.837602,0.0456587,0.35365,0.200558,0.560235,0.185447,0.820399,0.466976,0.10275,0.253775,0.195674,0.363155,0.041769,0.130233,0.373004,0.11259,0.732287,0.289501,0.281073,0.532721,0.560204,0.0507327,0.317296,0.331727,0.542351,0.74601,0.970257,0.947491,0.223021,0.54569,0.201861,0.326296,0.793094,0.0540173,0.0418934,0.329946,0.491149,0.0538012,0.0180891,0.974254,0.575205,0.898269,0.65659,0.735232,0.0406629,0.273796,0.764298,0.171988,0.507351,0.664137,0.37029,0.627346,0.283942,0.0916461,0.695674,0.399635,0.972058,0.192163,0.722449,0.65112,0.0667511,0.865638,0.849701,0.82102,0.496977,0.639254,0.450719,0.843643,0.398446,0.887465,0.182913,0.443097,0.129116,0.84427,0.694629,0.340249,0.829005,0.166778,0.476153,0.341279,0.741463,0.18669,0.360964,0.873917,0.269942,0.926396,0.0865371,0.723526,0.356941,0.0160469,0.804436,0.543034,0.0769892,0.651894,0.0262631,0.813016,0.0567814,0.225396,0.481025,0.394352,0.819817,0.705861,0.499457,0.7289,0.717583,0.70958,0.335995,0.145677,0.625964,0.0119975,0.175446,0.531707,0.0797358,0.969935,0.135085,0.981804,0.699846,0.40378,0.378232,0.435693,0.522495,0.306377,0.135627,0.665797,0.64393,0.453974,0.0543543,0.846109,0.183287,0.271995,0.912984,0.815677,0.419751,0.70229,0.271368,0.673634,0.222465,0.25929,0.870477,0.860511,0.986895,0.234131,0.273953,0.141991,0.885365,0.307191,0.30827,0.295607,0.162396,0.086498,0.955519,0.077078,0.832127,0.105416,0.804,0.0611544,0.472621,0.517319,0.626677,0.112919,0.521206,0.850413,0.583297,0.75746,0.858598,0.910411,0.806369,0.0975465,0.932133,0.294054,0.136456,0.131771,0.697251,0.554855,0.120876,0.557262,0.0510221,0.853814,0.306852,0.956502,0.394667,0.512795,0.879589,0.692341,0.178808,0.281188,0.851549,0.676032,0.50638,0.980766,0.817134,0.701533,0.246296,0.574975,0.413515,0.826882,0.123859,0.947901,0.910738,0.68633,0.801776,0.126439,0.0954397,0.746949,0.660976,0.589002,0.93268,0.912979,0.712895,0.197813,0.650948,0.678641,0.618727,0.0506164,0.398456,0.335239,0.153871,0.957987,0.03309,0.269409,0.276638,0.0997228,0.297643,0.683766,0.836026,0.440418,0.924071,0.485407,0.0449957,0.58087,0.227986,0.0783831,0.396159,0.0535258,0.844267,0.769198,0.733149,0.981829,0.977965,0.115438,0.351538,0.493415,0.15749,0.0325145,0.748174,0.961486,0.961543,0.112523,0.218838,0.135811,0.942675,0.697792,0.184883,0.15867,0.752292,0.531614,0.451287,0.551021,0.202627,0.0491168,0.0503944,0.00350386,0.0255505,0.655177,0.870049,0.0207468,0.924298,0.637741,0.425978,0.763134,0.443445,0.831505,0.591516,0.110015,0.910099,0.331535,0.679758,0.197396,0.80928,0.554285,0.94625,0.740189,0.0526809,0.701084,0.69729,0.474389,0.211592,0.0158216,0.315706,0.295718,0.511125,0.0334787,0.674787,0.706864,0.387509,0.0651639,0.887779,0.0695256,0.753715,0.150718,0.830893,0.211949,0.614871,0.135788,0.690735,0.737571,0.163911,0.723437,0.366008,0.24655,0.826786,0.449701,0.69009,0.959538,0.240277,0.234851,0.186511,0.00532693,0.53919,0.796643,0.127874,0.0544834,0.0297624,0.708623,0.287894,0.910808,0.12493,0.335955,0.111868,0.861364,0.184866,0.330952,0.190014,0.597502,0.955453,0.333608,0.321115,0.83723,0.970226,0.41678,0.607898,0.0779607,0.00686574,0.552076,0.0590745,0.390712,0.360245,0.117332,0.9716,0.585453,0.553647,0.535333,0.870368,0.817396,0.378924,0.471318,0.738557,0.692354,0.0492275,0.142448,0.811992,0.18998,0.824804,0.0881169,0.88481,0.435333,0.0459059,0.777747,0.977997,0.611623,0.978921,0.0232652,0.250769,0.125462,0.54355,0.0645084,0.169371,0.748498,0.183518,0.713179,0.960699,0.265981,0.408916,0.820044,0.332704,0.846044,0.586079,0.961427,0.718438,0.0401488,0.206234,0.325742,0.117386,0.962375,0.445141,0.513856,0.0247656,0.324825,0.362286,0.928645,0.232303,0.197881,0.910154,0.211364,0.130029,0.258972,0.163599,0.190955,0.0619212,0.681514,0.703208,0.288551,0.167605,0.714643,0.877068,0.589645,0.954882,0.864619,0.749895,0.767871,0.152676,0.996357,0.879578,0.319855,0.111288,0.794257,0.79659,0.498886,0.170746,0.643539,0.452787,0.840063,0.368656,0.371743,0.210756,0.663643,0.892315,0.341716,0.0557505,0.883161,0.913685,0.745257,0.493619,0.221932,0.00133234,0.878282,0.943772,0.0387614,0.70779,0.357579,0.280939,0.0812698,0.14968,0.782082,0.760706,0.218214,0.553803,0.315083,0.939175,0.878959,0.940324,0.538713,0.767656,0.641478,0.952608,0.69403,0.889282,0.414882,0.939281,0.568752,0.606252,0.158418,0.611651,0.830577,0.745492,0.786297,0.620648,0.845023,0.071617,0.134915,0.703053,0.901819,0.939238,0.500315,0.300896,0.726695,0.906027,0.999181,0.019641,0.297693,0.725056,0.324386,0.218358,0.190368,0.816109,0.371484,0.961392,0.92892,0.538873,0.67926,0.651718,0.84064,0.960878,0.250276,0.0063861,0.85983,0.216881,0.900625,0.162909,0.851047,0.796138,0.489492,0.614888,0.881846,0.304055,0.726506,0.0769086,0.99455,0.644296,0.169119,0.288868,0.562893,0.283235,0.593467,0.893407,0.971227,0.84726,0.9607,0.789715,0.68154,0.105002,0.994842,0.889618,0.219718,0.998087,0.590669,0.429896,0.304766,0.344412,0.00683165,0.721777,0.587553,0.386925,0.832661,0.732029,0.505602,0.106512,0.116276,0.60946,0.54836,0.926273,0.732744,0.640195,0.745619,0.17035,0.325353,0.757016,0.0748466,0.4277,0.752581,0.173009,0.0421813,0.42165,0.729879,0.284928,0.185092,0.592788,0.683544,0.236302,0.088523,0.432648,0.162789,0.628763,0.957311,0.609971,0.560152,0.349472,0.0298004,0.572699,0.754611,0.367675,0.369838,0.65834,0.0585887,0.473195,0.362372,0.807154,0.0283132,0.375059,0.892413,0.258135,0.12899,0.952417,0.984118,0.548077,0.973933,0.709533,0.952259,0.491428,0.878302,0.288093,0.577208,0.37796,0.96096,0.279395,0.572523,0.125989,0.679554,0.131119,0.0320653,0.494165,0.342537,0.639644,0.349901,0.407685,0.531786,0.0132445,0.795562,0.658874,0.351759,0.745206,0.394212,0.669522,0.770366,0.768337,0.428333,0.496172,0.874002,0.14366,0.0050661,0.331013,0.674136,0.110082,0.195985,0.317215,0.741048,0.510785,0.0836622,0.158424,0.524331,0.626598,0.604468,0.386258,0.993812,0.909235,0.744764,0.231329,0.88639,0.245072,0.897676,0.841439,0.0555118,0.622998,0.775712,0.0181509,0.666016,0.49697,0.999672,0.198726,0.215431,0.41365,0.0826604,0.162566,0.990778,0.560013,0.786115,0.108099,0.806918,0.732896,0.101279,0.43717,0.52984,0.699656,0.354309,0.0451612,0.764762,0.640099,0.329081,0.879566,0.173006,0.987252,0.481092,0.0666798,0.446493,0.109764,0.394083,0.874294,0.815803,0.644045,0.880928,0.0301389,0.886463,0.203209,0.718357,0.448969,0.339503,0.0434922,0.0231375,0.800818,0.334369,0.674907,0.103557,0.102865,0.235644,0.803409,0.110092,0.799082,0.895297,0.532226,0.410818,0.605994,0.749402,0.994347,0.743174,0.236983,0.18132,0.882489,0.787413,0.134744,0.107053,0.863118,0.108951,0.117242,0.609419,0.538118,0.732125,0.201004,0.865186,0.81329,0.932592,0.605788,0.480922,0.285719,0.565419,0.366012,|0.212797,0.482611,0.770784,0.49374,0.3935,0.383604,0.538244,0.794804,0.98377,0.847435,0.454042,0.0459095,0.506924,0.338413,0.116753,0.147131,0.167146,0.197345,0.0421668,0.700668,0.74947,0.686077,0.0327463,0.851623,0.350401,0.040977,0.70959,0.501539,0.969535,0.355956,0.0407948,0.607106,0.248662,0.890968,0.542032,0.30155,0.419675,0.868749,0.722187,0.745313,0.418118,0.0499921,0.635579,0.889769,0.228932,0.197652,0.433012,0.69273,0.124358,0.445175,0.748882,0.533158,0.770886,0.533299,0.253058,0.522696,0.578961,0.294904,0.65297,0.603493,0.356003,0.953089,0.364085,0.114287,0.2596,0.758791,0.800009,0.456658,0.292363,0.740675,0.453262,0.371602,0.501372,0.300793,0.529689,0.749654,0.81076,0.839998,0.477534,0.578904,0.857665,0.920694,0.833334,0.20373,0.923023,0.829985,0.196785,0.254706,0.42014,0.242915,0.897014,0.0664515,0.424368,0.614211,0.136845,0.903905,0.46729,0.81667,0.288545,0.0220232,0.0272922,0.268337,0.700112,0.030334,0.726188,0.625002,0.151625,0.855776,0.727591,0.172636,0.0356135,0.765732,0.492551,0.238295,0.291808,0.936155,0.798392,0.48191,0.935636,0.2999,0.520458,0.512729,0.839874,0.19987,0.955833,0.980866,0.109543,0.859679,0.0700836,0.541531,0.857583,0.698744,0.647705,0.30903,0.59189,0.969467,0.447423,0.698137,0.358017,0.29891,0.842776,0.218446,0.128984,0.324508,0.140296,0.692154,0.575155,0.675821,0.105926,0.943845,0.0839362,0.629926,0.975624,0.582809,0.0252076,0.533511,0.451575,0.763766,0.494891,0.270977,0.915295,0.457251,0.176596,0.899913,0.829484,0.0565665,0.749217,0.293317,0.923315,0.500678,0.990121,0.42667,0.645769,0.660619,0.950813,0.786617,0.478322,0.27496,0.37054,0.40195,0.432832,0.836541,0.908951,0.481438,0.469896,0.0755798,0.884572,0.959513,0.255573,0.444636,0.638584,0.633885,0.170768,0.505841,0.764316,0.716042,0.949001,0.822223,0.852235,0.822201,0.865535,0.322812,0.37302,0.596797,0.313836,0.489302,0.923649,0.199534,0.775648,0.463716,0.915063,0.216857,0.805295,0.269239,0.528662,0.982572,0.0670305,0.614347,0.0752149,0.440331,0.246012,0.730848,0.999522,0.687464,0.751111,0.832653,0.456391,0.890804,0.710008,0.367738,0.489159,0.716777,0.980516,0.686505,0.776932,0.274346,0.4228,0.197943,0.984321,0.726784,0.287671,0.984086,0.519323,0.431519,0.244618,0.490175,0.607754,0.710666,0.468936,0.837222,0.559925,0.806016,0.319329,0.705366,0.820124,0.380156,0.561796,0.0114095,0.327478,0.872143,0.826291,0.955995,0.269197,0.437532,0.597053,0.287134,0.778089,0.489895,0.477807,0.55052,0.329495,0.0491159,0.662074,0.434832,0.185404,0.632812,0.99922,0.695365,0.156455,0.839784,0.45778,0.572289,0.208777,0.197959,0.620987,0.95812,0.858148,0.354114,0.750434,0.770431,0.68269,0.321316,0.779746,0.873121,0.0337901,0.524977,0.924564,0.495876,0.203694,0.0534921,0.197591,0.089112,0.241223,0.948828,0.0172541,0.262966,0.0981814,0.681732,0.40067,0.444349,0.260176,0.668128,0.0612721,0.248592,0.880997,0.178597,0.974599,0.758139,0.19924,0.245647,0.220073,0.701457,0.0590113,0.311356,0.59018,0.411708,0.182794,0.0689515,0.859551,0.64762,0.43557,0.449707,0.27771,0.177846,0.592373,0.151776,0.157041,0.646798,0.0867752,0.556944,0.614492,0.741514,0.000230908,0.357425,0.599905,0.014994,0.215845,0.726688,0.366857,0.617531,0.752786,0.743647,0.375414,0.0333004,0.64225,0.644247,0.794489,0.684818,0.0305422,0.466045,0.955408,0.481508,0.557292,0.407106,0.844943,0.676455,0.430484,0.568811,0.59645,0.487521,0.151356,0.834621,0.63042,0.502436,0.11634,0.921949,0.394303,0.0224432,0.410423,0.551054,0.204558,0.178485,0.987516,0.137209,0.991117,0.825398,0.847446,0.596245,0.685016,0.29799,0.454742,0.679847,0.113747,0.822066,0.647696,0.585088,0.526702,0.955337,0.40981,0.578268,0.424448,0.0962604,0.233704,0.70108,0.939705,0.186149,0.285837,0.0636665,0.377929,0.456853,0.703932,0.951641,0.57851,0.490432,0.0247554,0.191848,0.0581979,0.705056,0.889135,0.903026,0.650555,0.766596,0.808878,0.730304,0.670414,0.355467,0.612569,0.215703,0.568536,0.373123,0.330588,0.106833,0.385373,0.752957,0.597942,0.45259,0.726816,0.806509,0.839274,0.908291,0.918882,0.501129,0.344987,0.552299,0.183039,0.375203,0.77192,0.462315,0.49564,0.276279,0.571221,0.721679,0.746206,0.752036,0.989868,0.786677,0.813619,0.851458,0.00583923,0.0610469,0.11018,0.994715,0.68334,0.142798,0.0882344,0.981644,0.236819,0.429976,0.97592,0.250533,0.89351,0.732912,0.596816,0.948329,0.94702,0.317012,0.461427,0.429187,0.966781,0.469682,0.91164,0.776844,0.498915,0.478767,0.401608,0.521838,0.11322,0.27388,0.59369,0.690628,0.566038,0.636299,0.029379,0.671119,0.590771,0.144852,0.452526,0.296399,0.991356,0.657098,0.975471,0.203341,0.812665,0.902718,0.790245,0.0249313,0.264195,0.442343,0.802203,0.855361,0.343256,0.372646,0.30935,0.250819,0.583407,0.587678,0.610174,0.451209,0.45251,0.85952,0.943599,0.399116,0.769781,0.855981,0.514312,0.428707,0.864357,0.19713,0.89207,0.135333,0.488788,0.134355,0.7264,0.89374,0.0926688,0.502054,0.309234,0.151207,0.454921,0.956616,0.498041,0.401508,0.311161,0.734506,0.737051,0.915957,0.911014,0.874587,0.158224,0.395408,0.324617,0.663799,0.31295,0.835913,0.586459,0.900414,0.827756,0.0473986,0.895103,0.937798,0.0481138,0.0250331,0.877729,0.452507,0.0897668,0.926395,0.0958326,0.607685,0.63971,0.81263,0.560799,0.524983,0.132034,0.461907,0.21331,0.82252,0.946348,0.286805,0.0740359,0.415698,0.461533,0.0991126,0.0654336,0.895939,0.370919,0.124967,0.670706,0.609553,0.0980237,0.574455,0.193769,0.527283,0.595453,0.679356,0.942938,0.960231,0.187555,0.547156,0.63978,0.165947,0.0218159,0.983281,0.4063,0.825399,0.513646,0.283781,0.0838989,0.377688,0.549319,0.108423,0.223522,0.637492,0.799357,0.083767,0.20249,0.213946,0.722133,0.0653591,0.271188,0.791168,0.387495,0.273249,0.211749,0.70124,0.142724,0.0895225,0.0407156,0.682797,0.160751,0.115183,0.652943,0.975097,0.161412,0.85872,0.45149,0.245952,0.155158,0.622334,0.465379,0.413561,0.495369,0.261577,0.0368555,0.0331245,0.851559,0.423975,0.737367,0.0841338,0.230098,0.0212572,0.122623,0.0369419,0.632845,0.431046,0.7466,0.00198686,0.661898,0.0954311,0.739395,0.584586,0.95926,0.691814,0.721533,0.109462,0.634733,0.194456,0.537342,0.98764,0.701449,0.364606,0.119847,0.759154,0.714941,0.922877,0.414009,0.499845,0.0653963,0.760766,0.138353,0.728863,0.541935,0.433243,0.506484,0.869313,0.722625,0.847977,0.893219,0.563056,0.794063,0.771616,0.400056,0.0670153,0.349011,0.316588,0.150703,0.435294,0.381372,0.0925229,0.647619,0.163048,0.111903,0.904895,0.639252,0.977623,0.852529,0.10741,0.848172,0.92118,0.582406,0.187942,0.735174,0.88153,0.148887,0.291881,0.765263,0.978201,0.314691,0.976993,0.805221,0.986956,0.971195,0.648635,0.0997909,0.748329,0.417851,0.542366,0.664118,0.56778,0.889639,0.00441855,0.816677,0.229726,0.719686,0.312534,0.679705,0.963875,0.346717,0.997878,0.825891,0.743381,0.297129,0.968447,0.578922,0.734179,0.305295,0.410621,0.738393,0.278316,0.436238,0.774446,0.291641,0.972319,0.739195,0.806265,0.321102,0.0212817,0.149415,0.12318,0.609584,0.878908,0.150461,0.224147,0.749112,0.947534,0.683178,0.201579,0.645218,0.559112,0.626774,0.00883812,0.56215,0.413899,0.840511,0.0940463,0.0262021,0.0488496,0.994128,0.750118,0.383912,0.696977,0.837448,0.762403,0.474663,0.12618,0.94517,0.185283,0.963231,0.0783076,0.759185,0.0020951,0.458477,0.938159,0.405292,0.678726,0.415379,0.0911189,0.148009,0.296032,0.77627,0.261286,0.995204,0.341473,0.0547473,0.292887,0.84609,0.25253,0.742842,0.738705,0.883655,0.699034,0.471764,0.0899058,0.289446,0.665894,0.400275,0.980168,0.319311,0.486615,0.167575,0.115548,0.508297,0.376665,0.814577,0.536793,0.0400798,0.634766,0.411077,0.0790955,0.584298,0.459764,0.548792,0.41539,0.690252,0.818972,0.568945,0.00626343,0.767311,0.417719,0.616435,0.925932,0.520253,0.588089,0.627604,0.120934,0.504913,0.912985,0.584232,0.397396,0.439862,0.286863,0.0871023,0.38765,0.229734,0.430064,0.866133,0.192088,0.231771,0.68609,0.97096,0.0345485,0.444012,0.559174,0.28143,0.265965,0.145418,0.776669,0.739505,0.488894,0.0605153,0.383529,0.885674,0.939607,0.669947,0.398551,0.893504,0.327748,0.411564,0.978705,0.556862,0.151778,0.230475,0.941447,0.373216,0.834185,0.835079,0.0963609,0.560649,0.192777,0.543253,0.914412,0.845897,0.210055,0.126876,0.571061,0.749867,0.266711,0.556826,0.775123,0.987317,0.328193,0.812907,0.616319,0.84735,0.781218,0.515501,0.707871,0.865837,0.511074,0.823274,0.80531,0.0451078,0.0557434,0.215566,0.0657699,0.413266,0.372064,0.906677,0.364718,0.5546,0.59605,0.245393,0.160469,0.64909,0.241364,0.290112,0.638203,0.321483,0.486349,0.7626,0.538118,0.611576,0.235012,0.450664,0.62238,0.350846,0.958462,0.00473148,0.769604,0.510484,0.637122,0.217055,0.297711,0.393784,0.336401,0.908058,0.018469,0.863483,0.112747,0.983817,0.0949506,0.815116,0.32015,0.785855,0.360347,0.505337,0.332794,0.429898,0.0980731,0.564762,0.0611469,0.0264007,0.496882,0.362523,0.40257,0.94518,0.525524,0.0702593,0.859359,0.627894,0.518193,0.514714,0.0824094,0.398099,0.686473,0.606892,0.191262,0.0953062,0.813469,0.774084,0.200929,0.994682,0.443291,0.469104,0.122209,0.848724,0.974917,0.420124,0.247798,0.616744,0.071004,0.712224,0.0263728,0.896728,0.621987,0.0754831,0.577514,0.720039,0.482533,0.296232,0.491251,|0.434947,0.309498,0.352997,0.813444,0.544785,0.436914,0.291307,0.190596,0.0643705,0.763011,0.195256,0.998351,0.973784,0.0574781,0.716835,0.109218,0.124034,0.048273,0.444864,0.929937,0.0446877,0.419101,0.498842,0.639327,0.00243074,0.743073,0.203507,0.721859,0.0921149,0.829594,0.0438492,0.51763,0.753119,0.160575,0.918995,0.97681,0.606811,0.405973,0.0899388,0.935327,0.921394,0.465437,0.843282,0.534703,0.502903,0.712468,0.173029,0.636044,0.158831,0.324653,0.286912,0.351453,0.732662,0.867326,0.755601,0.666896,0.958856,0.0713032,0.917693,0.117255,0.952963,0.38301,0.81265,0.350145,0.41715,0.607493,0.630215,0.339814,0.777133,0.205481,0.565048,0.8628,0.356933,0.287248,0.630499,0.72232,0.224631,0.452524,0.156776,0.310561,0.761856,0.181226,0.406655,0.771863,0.066976,0.821678,0.954471,0.347633,0.767513,0.725034,0.460823,0.211956,0.225133,0.0517666,0.308438,0.105403,0.592743,0.623544,0.00281119,0.680361,0.195931,0.373227,0.869574,0.676174,0.248421,0.866508,0.170286,0.506374,0.854501,0.744962,0.857039,0.906817,0.0522195,0.799211,0.870984,0.786961,0.246425,0.643273,0.964679,0.404372,0.859666,0.667101,0.912064,0.775304,0.256064,0.783722,0.819481,0.911153,0.308171,0.810777,0.106907,0.531441,0.373487,0.0605977,0.199061,0.790335,0.593585,0.12416,0.689464,0.36788,0.784977,0.432145,0.908675,0.0113074,0.526793,0.993979,0.0955487,0.930154,0.118453,0.731486,0.0414433,0.734619,0.401096,0.516052,0.134317,0.76402,0.0250758,0.91359,0.782641,0.432334,0.438304,0.729667,0.647623,0.681018,0.882775,0.785672,0.907624,0.355247,0.61765,0.182474,0.523744,0.553228,0.403456,0.928892,0.105815,0.984896,0.315835,0.490865,0.305651,0.413776,0.623281,0.687087,0.679005,0.763874,0.471682,0.113042,0.973978,0.118867,0.116332,0.00694853,0.680634,0.768262,0.264443,0.755279,0.253681,0.963344,0.918363,0.363385,0.701994,0.0468067,0.298122,0.0453599,0.152881,0.241738,0.535013,0.701453,0.992075,0.941701,0.740268,0.870922,0.455478,0.295334,0.622025,0.385782,0.941563,0.947304,0.105694,0.21156,0.299316,0.0745953,0.373383,0.924604,0.605572,0.897412,0.32282,0.341317,0.259324,0.266627,0.26326,0.171314,0.200881,0.710446,0.545759,0.0752736,0.928135,0.389187,0.956564,0.720157,0.761294,0.334153,0.349586,0.119584,0.746379,0.878473,0.254301,0.54313,0.247641,0.445975,0.57495,0.850888,0.568272,0.198676,0.28534,0.759908,0.702508,0.428011,0.326724,0.949918,0.47905,0.741359,0.920243,0.00939918,0.773266,0.249197,0.154035,0.130016,0.795052,0.125654,0.015114,0.0191144,0.77443,0.607005,0.399102,0.371995,0.2965,0.408583,0.730781,0.510186,0.520453,0.25201,0.0736117,0.626599,0.528562,0.214522,0.586467,0.273519,0.387665,0.827506,0.613597,0.194868,0.317741,0.46925,0.698674,0.271748,0.942038,0.837741,0.292143,0.994766,0.714604,0.55406,0.572382,0.304563,0.0911857,0.263627,0.293457,0.961715,0.760036,0.991003,0.13671,0.42728,0.257772,0.577936,0.567631,0.930397,0.160705,0.707011,0.947746,0.877563,0.012615,0.177753,0.265547,0.34203,0.74297,0.593948,0.217109,0.74498,0.344612,0.93599,0.838469,0.633587,0.535451,0.97425,0.834266,0.0690036,0.185227,0.26403,0.471916,0.688388,0.412186,0.193702,0.429883,0.843516,0.883831,0.789971,0.248274,0.828291,0.809605,0.578917,0.118743,0.750678,0.800072,0.86893,0.402541,0.0679964,0.163108,0.225607,0.557311,0.656941,0.158492,0.0432408,0.493457,0.287437,0.568188,0.756171,0.830384,0.157669,0.442476,0.508284,0.140086,0.120847,0.682646,0.413811,0.829627,0.204831,0.97873,0.979916,0.408265,0.300885,0.22829,0.480939,0.83954,0.998026,0.697743,0.203203,0.371474,0.509106,0.889982,0.94649,0.706991,0.725523,0.969237,0.844817,0.323955,0.30455,0.825195,0.427819,0.368904,0.822839,0.319665,0.658058,0.989254,0.247747,0.651057,0.626242,0.358201,0.597792,0.60144,0.13102,0.66096,0.512894,0.749301,0.630991,0.684237,0.559519,0.143367,0.0148059,0.336467,0.478747,0.491379,0.0121955,0.0760634,0.907388,0.932263,0.265921,0.902378,0.785466,0.133985,0.696445,0.592203,0.0952647,0.672765,0.951084,0.742977,0.651314,0.823172,0.40445,0.471977,0.191231,0.0233947,0.415707,0.389257,0.839857,0.122061,0.144419,0.571489,0.889389,0.688773,0.555319,0.944816,0.180593,0.555426,0.34556,0.162861,0.287843,0.321463,0.533188,0.929509,0.131057,0.967604,0.789673,0.530008,0.877565,0.45445,0.412638,0.652752,0.387324,0.0101515,0.253638,0.0780423,0.096672,0.378542,0.760698,0.852207,0.523611,0.976425,0.411263,0.363607,0.749447,0.409805,0.28283,0.885243,0.870396,0.147549,0.108934,0.73022,0.249777,0.114371,0.740198,0.212573,0.159717,0.846139,0.205207,0.497228,0.170336,0.444013,0.058126,0.18568,0.354942,0.116818,0.0156444,0.288429,0.969664,0.185034,0.947425,0.196522,0.601409,0.972412,0.535294,0.0685602,0.827326,0.68746,0.507767,0.0593517,0.257768,0.454042,0.849233,0.548673,0.255629,0.743551,0.832002,0.0502178,0.870313,0.708589,0.531104,0.225314,0.352156,0.966735,0.725201,0.992999,0.0362,0.537124,0.30442,0.930997,0.0553239,0.413428,0.977467,0.60161,0.0181938,0.111759,0.100695,0.496667,0.187324,0.960628,0.993258,0.283678,0.435965,0.827874,0.238571,0.139631,0.505106,0.43508,0.017732,0.986987,0.87196,0.340328,0.0720799,0.247738,0.0446141,0.858002,0.375684,0.837367,0.08832,0.242575,0.292883,0.558688,0.290891,0.994297,0.171554,0.91252,0.593202,0.913004,0.178081,0.0643303,0.110423,0.656856,0.878262,0.845839,0.504257,0.620529,0.871914,0.758546,0.0563762,0.317586,0.492649,0.333788,0.0144466,0.80444,0.443564,0.637429,0.620815,0.389464,0.0187969,0.459,0.710468,0.970346,0.679372,0.494351,0.472944,0.108853,0.100974,0.453819,0.908239,0.821785,0.383525,0.27312,0.360723,0.481414,0.716131,0.571898,0.201257,0.812212,0.655412,0.832696,0.571101,0.342932,0.626827,0.875305,0.533176,0.877494,0.370836,0.203976,0.247253,0.236205,0.558964,0.480836,0.244095,0.479365,0.479148,0.902855,0.447942,0.228349,0.209381,0.0214256,0.631511,0.642745,0.841052,0.570121,0.509917,0.495829,0.936016,0.202831,0.060173,0.4696,0.997194,0.748324,0.44697,0.342337,0.561896,0.242774,0.796127,0.446958,0.326523,0.610962,0.847092,0.0634894,0.57362,0.939255,0.107138,0.350685,0.933115,0.360536,0.149811,0.968087,0.797721,0.727486,0.328092,0.821084,0.87506,0.309311,0.192161,0.62373,0.452556,0.335567,0.991438,0.504771,0.301551,0.598448,0.671401,0.215475,0.661325,0.971578,0.290328,0.398303,0.973898,0.720413,0.730852,0.1444,0.453245,0.510291,0.797149,0.736341,0.571184,0.464671,0.388798,0.978328,0.896467,0.151803,0.761482,0.318439,0.776456,0.628125,0.704742,0.0762643,0.0252352,0.295183,0.995926,0.624148,0.0549125,0.752635,0.883395,0.00234336,0.535491,0.703117,0.116613,0.727267,0.960488,0.411052,0.508254,0.267667,0.151892,0.765165,0.754641,0.861621,0.870018,0.602828,0.562065,0.15895,0.215855,0.28951,0.935082,0.155394,0.642533,0.75576,0.883647,0.779781,0.909595,0.941884,0.843302,0.557241,0.324538,0.578971,0.954937,0.980332,0.831611,0.0697248,0.0605919,0.598495,0.679751,0.601076,0.621725,0.776995,0.507796,0.534813,0.801255,0.960743,0.277833,0.795737,0.954219,0.149275,0.446031,0.857202,0.240832,0.855795,0.465446,0.962086,0.801828,0.277675,0.961717,0.95007,0.377316,0.577048,0.736099,0.403836,0.373152,0.294658,0.0379812,0.204135,0.470235,0.163954,0.621519,0.527196,0.851446,0.675349,0.514476,0.0177491,0.76932,0.17967,0.516671,0.589355,0.252098,0.00565743,0.686124,0.43851,0.276325,0.0567461,0.0465471,0.238015,0.307014,0.500089,0.733045,0.486224,0.0719384,0.23478,0.53027,0.020795,0.245234,0.107053,0.93169,0.202025,0.469305,0.2439,0.939665,0.0747405,0.627276,0.105898,0.873943,0.0698888,0.41618,0.651511,0.441747,0.316602,0.64926,0.745321,0.497574,0.725331,0.270521,0.885214,0.356099,0.72457,0.554386,0.0104154,0.814862,0.618127,0.303853,0.721291,0.380488,0.301403,0.303184,0.97512,0.330089,0.907027,0.539466,0.233292,0.409337,0.718635,0.607338,0.588922,0.246494,0.801367,0.627371,0.560558,0.412697,0.563364,0.572024,0.723817,0.44503,0.0625797,0.0416245,0.437528,0.196877,0.576926,0.20785,0.288383,0.778218,0.0626546,0.682094,0.888019,0.759369,0.0257072,0.918618,0.312376,0.263719,0.354596,0.663794,0.78302,0.728501,0.0775757,0.555391,0.262789,0.799211,0.549749,0.34489,0.81743,0.760986,0.707928,0.863124,0.74072,0.577767,0.12125,0.32859,0.0381007,0.462686,0.128099,0.892725,0.917619,0.672946,0.526876,0.102479,0.0555951,0.646479,0.0296788,0.0162036,0.201195,0.493473,0.372756,0.0376479,0.472936,0.839163,0.813987,0.683586,0.837516,0.631512,0.138155,0.52049,0.968606,0.432956,0.9825,0.419081,0.289904,0.0531034,0.137844,0.678865,0.858558,0.868814,0.886104,0.528545,0.310279,0.784007,0.97477,0.61855,0.74501,0.640401,0.64217,0.601291,0.899882,0.0188252,0.141401,0.968416,0.373536,0.479944,0.031679,0.168895,0.485387,0.610895,0.254419,0.604326,0.780825,0.65267,0.140139,0.898943,0.358224,0.292127,0.938841,0.767309,0.907308,0.247864,0.927096,0.281021,0.726962,0.577611,0.492408,0.435459,0.688589,0.910368,0.887131,0.0590728,0.964263,0.241172,0.137764,0.272254,0.964006,0.227231,0.745516,0.375938,0.657723,0.0175129,0.351019,0.572817,0.521482,0.471925,0.521504,0.150334,0.00108296,0.00393659,0.93389,0.3931,0.172299,0.971057,0.408111,0.693707,0.711818,0.474477,0.121906,0.200125,0.237233,0.27347,0.246183,0.91248,0.972062,0.985516,|0.242157,0.251189,0.187776,0.161235,0.834456,0.375498,0.568677,0.769,0.835433,0.881973,0.0852023,0.305966,0.638875,0.489799,0.825855,0.27325,0.681637,0.788427,0.673423,0.21379,0.582706,0.340221,0.758196,0.596594,0.3938,0.954701,0.526513,0.668865,0.547324,0.948838,0.976065,0.952725,0.403712,0.994019,0.448226,0.702905,0.589993,0.104167,0.819202,0.39321,0.747208,0.010316,0.400257,0.929996,0.948593,0.591541,0.897927,0.251343,0.232314,0.547691,0.692532,0.693705,0.878708,0.516774,0.802542,0.401195,0.537975,0.131774,0.343532,0.100636,0.623537,0.467696,0.778101,0.440723,0.745864,0.581808,0.303896,0.131383,0.964792,0.288811,0.863033,0.802294,0.202895,0.187453,0.306823,0.771276,0.977309,0.173662,0.39135,0.243217,0.561801,0.990248,0.577987,0.608974,0.272898,0.367954,0.474328,0.255562,0.480078,0.0373858,0.270801,0.725109,0.586996,0.46015,0.317341,0.899799,0.205015,0.592005,0.931189,0.397488,0.00270689,0.269405,0.85904,0.188922,0.599292,0.887901,0.304477,0.318543,0.0121712,0.125026,0.404513,0.780805,0.324702,0.874514,0.694218,0.10469,0.875259,0.172856,0.858381,0.979549,0.781835,0.877424,0.770568,0.667618,0.390391,0.862329,0.0750329,0.596064,0.0277982,0.440911,0.0938053,0.929152,0.603105,0.522159,0.668419,0.17083,0.794963,0.51355,0.123689,0.207207,0.828598,0.492182,0.135153,0.602282,0.883251,0.78146,0.891787,0.777164,0.856655,0.160226,0.902371,0.657062,0.866339,0.89787,0.00201529,0.400208,0.429588,0.560401,0.732014,0.648586,0.429191,0.788416,0.598383,0.0460932,0.500955,0.652068,0.341877,0.484849,0.421786,0.677484,0.39331,0.231766,0.467336,0.359774,0.702501,0.26982,0.271287,0.449341,0.529736,0.675887,0.408309,0.635169,0.145977,0.433476,0.728762,0.541068,0.345847,0.108169,0.967959,0.781172,0.781798,0.307569,0.291428,0.491595,0.133249,0.312473,0.585615,0.577169,0.123718,0.0660381,0.349558,0.856272,0.952925,0.495713,0.51828,0.225173,0.533208,0.0879987,0.619134,0.891359,0.303937,0.981301,0.412897,0.477577,0.838878,0.533574,0.626088,0.159854,0.563928,0.187752,0.308686,0.588399,0.72607,0.900838,0.419527,0.2122,0.870628,0.802275,0.349825,0.941987,0.909933,0.883736,0.740961,0.257571,0.420671,0.180111,0.925089,0.890099,0.151268,0.916483,0.20009,0.771825,0.688808,0.613031,0.847872,0.193231,0.28294,0.0657561,0.29419,0.849452,0.439271,0.671571,0.345281,0.260996,0.0232871,0.788881,0.648671,0.524647,0.514089,0.239695,0.0579874,0.810428,0.84543,0.0913326,0.947916,0.0128765,0.764523,0.165148,0.424294,0.409872,0.540916,0.949637,0.495347,0.620082,0.892721,0.099504,0.595381,0.319171,0.897335,0.0999029,0.348836,0.281457,0.848477,0.305084,0.136316,0.0790714,0.132338,0.936468,0.184676,0.264426,0.388606,0.894958,0.155009,0.105141,0.456398,0.0570143,0.537654,0.675779,0.715055,0.0416435,0.26454,0.981073,0.402872,0.278553,0.892702,0.945501,0.755015,0.544346,0.340434,0.59238,0.918103,0.216505,0.942848,0.98825,0.993256,0.846673,0.928539,0.146549,0.263408,0.98374,0.0952309,0.0328724,0.527445,0.274534,0.213399,0.939141,0.678311,0.393647,0.171777,0.296613,0.153371,0.542046,0.921473,0.679616,0.0819957,0.697731,0.651146,0.93702,0.711638,0.155316,0.276349,0.659362,0.000950038,0.0272176,0.147007,0.766652,0.26258,0.92439,0.123021,0.231577,0.20743,0.281176,0.196696,0.96166,0.816612,0.700535,0.0169867,0.970887,0.2585,0.755436,0.303138,0.863958,0.790193,0.689078,0.66257,0.451463,0.773338,0.11573,0.66311,0.56152,0.215904,0.13626,0.503888,0.680476,0.50589,0.99284,0.777518,0.487193,0.211328,0.475994,0.160174,0.621752,0.604194,0.947863,0.398643,0.763001,0.152756,0.258953,0.519887,0.227032,0.822905,0.174728,0.662155,0.0777043,0.290301,0.446505,0.982363,0.072212,0.230987,0.0820944,0.201089,0.570293,0.778514,0.450451,0.37802,0.712141,0.593537,0.610483,0.48035,0.937825,0.917617,0.707817,0.30377,0.21856,0.442779,0.259459,0.226154,0.395895,0.882492,0.601167,0.556325,0.135733,0.81441,0.591037,0.4051,0.527184,0.813384,0.271776,0.829632,0.218157,0.184329,0.639707,0.394861,0.732099,0.421414,0.355107,0.663634,0.923513,0.860237,0.0995906,0.985003,0.0788735,0.639546,0.0805304,0.231158,0.611161,0.405434,0.606386,0.895991,0.00339818,0.530095,0.661401,0.266273,0.578456,0.19729,0.353494,0.146282,0.510858,0.590502,0.851775,0.70785,0.712694,0.094611,0.135745,0.518252,0.763443,0.66899,0.366767,0.955861,0.204513,0.313687,0.89345,0.095145,0.802181,0.0707766,0.24606,0.677742,0.697545,0.284065,0.423647,0.220676,0.36324,0.853594,0.84822,0.91718,0.599205,0.784999,0.105172,0.541171,0.771003,0.0151411,0.33179,0.499264,0.863313,0.71468,0.222224,0.943083,0.45728,0.29296,0.691993,0.0831236,0.740892,0.735588,0.480978,0.992215,0.685633,0.49305,0.633981,0.163152,0.525399,0.364889,0.239781,0.252292,0.534602,0.155604,0.00560141,0.906214,0.302265,0.969279,0.416951,0.42057,0.946822,0.985752,0.598476,0.247682,0.93717,0.971069,0.993275,0.368692,0.766795,0.429085,0.176156,0.515131,0.220648,0.586374,0.110473,0.59142,0.297116,0.082081,0.843867,0.564052,0.726278,0.50874,0.440635,0.530407,0.658516,0.229848,0.273525,0.327973,0.313688,0.382994,0.344058,0.475388,0.0258768,0.978857,0.376252,0.530661,0.694262,0.0884774,0.891127,0.862353,0.510024,0.09895,0.227462,0.132657,0.865485,0.838062,0.958846,0.439041,0.576694,0.205674,0.441288,0.799873,0.704265,0.782702,0.100834,0.933926,0.0344707,0.489273,0.898479,0.380869,0.821138,0.937198,0.198452,0.773936,0.307191,0.97594,0.762406,0.263814,0.557929,0.0764323,0.269564,0.443933,0.665405,0.984377,0.97581,0.25952,0.880736,0.86286,0.27597,0.0193338,0.435107,0.429155,0.791845,0.220721,0.726179,0.693459,0.248391,0.444897,0.116235,0.957024,0.36739,0.391874,0.514299,0.502212,0.574662,0.688585,0.645101,0.530037,0.595788,0.104816,0.872984,0.134426,0.580898,0.622322,0.660032,0.334674,0.839516,0.747209,0.0482051,0.877085,0.539289,0.459845,0.209566,0.974844,0.957583,0.187315,0.638111,0.595052,0.566183,0.375045,0.852167,0.692695,0.225938,0.597711,0.771364,0.12956,0.783961,0.40634,0.0340253,0.792895,0.768807,0.324034,0.62764,0.928873,0.920543,0.799931,0.19769,0.400333,0.651246,0.407104,0.455294,0.351667,0.229877,0.776105,0.159462,0.53285,0.613211,0.67189,0.30587,0.145711,0.123424,0.993391,0.113494,0.521281,0.85488,0.0768818,0.542814,0.692577,0.268657,0.220009,0.691546,0.411134,0.0141627,0.737479,0.452291,0.365004,0.546973,0.807154,0.882174,0.651198,0.373825,0.395738,0.936786,0.992172,0.409194,0.605273,0.749706,0.952511,0.442932,0.637223,0.163868,0.351699,0.255093,0.858541,0.184241,0.115323,0.829556,0.466455,0.162116,0.427031,0.562681,0.815794,0.963945,0.674828,0.325349,0.578983,0.791044,0.435864,0.0584882,0.338882,0.808691,0.524797,0.522817,0.565429,0.550017,0.883995,0.349413,0.05174,0.408657,0.695772,0.222771,0.00265104,0.0965749,0.488624,0.328792,0.266349,0.925123,0.764711,0.131745,0.779396,0.824732,0.572954,0.108308,0.297977,0.941413,0.0195492,0.569968,0.729385,0.892408,0.809984,0.505168,0.175042,0.1033,0.998995,0.163766,0.117605,0.00860459,0.246713,0.645604,0.203957,0.54499,0.324852,0.76613,0.499413,0.35113,0.576232,0.62466,0.798908,0.599106,0.248465,0.382086,0.697859,0.774645,0.135823,0.813944,0.618185,0.679721,0.608351,0.24419,0.181333,0.308015,0.16158,0.998702,0.0184864,0.00503075,0.0207691,0.926721,0.559048,0.69075,0.653534,0.120774,0.851194,0.00062114,0.0413219,0.433839,0.50696,0.498441,0.164553,0.308856,0.865421,0.672497,0.418975,0.662183,0.0300234,0.394189,0.223837,0.856215,0.141301,0.52155,0.196276,0.266612,0.130506,0.631859,0.707921,0.913832,0.40372,0.481759,0.587237,0.23385,0.928397,0.522886,0.449188,0.015679,0.170458,0.270126,0.781887,0.251711,0.294757,0.968234,0.134538,0.93353,0.953324,0.353302,0.176918,0.148618,0.233564,0.0529127,0.481205,0.889882,0.966384,0.2829,0.268162,0.301754,0.827606,0.988841,0.864615,0.757932,0.478642,0.0851231,0.770111,0.891845,0.311935,0.219825,0.65941,0.00633794,0.708227,0.764338,0.42811,0.651954,0.731543,0.987465,0.0439874,0.401744,0.911064,0.805036,0.531322,0.368027,0.289513,0.274187,0.538485,0.0196739,0.192496,0.0189662,0.736445,0.474909,0.220302,0.418913,0.525412,0.165276,0.912194,0.709953,0.351178,0.398486,0.757839,0.191616,0.8132,0.530658,0.872234,0.199401,0.479645,0.633044,0.75006,0.758247,0.0633759,0.145404,0.515302,0.0498928,0.953859,0.588992,0.539047,0.959979,0.209419,0.742598,0.494603,0.7838,0.158638,0.174731,0.276514,0.11046,0.497385,0.722429,0.740022,0.63373,0.781864,0.893981,0.602115,0.251254,0.0308499,0.393251,0.474261,0.623213,0.347883,0.734913,0.955531,0.202766,0.799736,0.576162,0.46692,0.179222,0.352989,0.314667,0.273521,0.229392,0.704319,0.0202784,0.132691,0.118035,0.889878,0.29168,0.856347,0.716,0.949656,0.875147,0.13164,0.661189,0.294673,0.428516,0.825107,0.801107,0.609044,0.294763,0.250129,0.438314,0.672555,0.280669,0.822615,0.785222,0.750872,0.534356,0.294042,0.684111,0.300681,0.645781,0.8825,0.670477,0.869674,0.21707,0.749567,0.377109,0.0414268,0.0121883,0.635926,0.809629,0.992646,0.324038,0.659572,0.974543,0.680695,0.453394,0.308452,0.221433,0.571108,0.525029,0.600395,0.459772,0.940103,0.816765,0.881117,0.728503,0.330362,0.170492,0.682037,0.256524,0.60887,0.36612,0.583605,0.791886,0.515597,0.417226,|0.913781,0.554627,0.212195,0.764267,0.963767,0.86048,0.151038,0.308952,0.909376,0.510127,0.920976,0.269168,0.254021,0.104699,0.344693,0.0535001,0.021238,0.989806,0.58705,0.0260305,0.422004,0.907472,0.124171,0.280704,0.678541,0.792049,0.00433689,0.335836,0.179996,0.75795,0.891808,0.926065,0.197407,0.162986,0.873629,0.0494459,0.597799,0.612495,0.991915,0.921355,0.890473,0.0641325,0.837266,0.879966,0.549988,0.370055,0.0132454,0.561635,0.616296,0.835403,0.296076,0.549784,0.65158,0.715115,0.349275,0.0950991,0.151413,0.391822,0.87349,0.275499,0.695234,0.769672,0.245154,0.520344,0.191132,0.160381,0.887359,0.430281,0.349674,0.241778,0.759362,0.870038,0.061688,0.69916,0.409823,0.975441,0.376656,0.17466,0.70058,0.594955,0.0129748,0.00868851,0.601265,0.461597,0.580712,0.34773,0.209758,0.475055,0.740439,0.817358,0.632487,0.720865,0.281297,0.361917,0.497891,0.527557,0.701774,0.907498,0.742495,0.797391,0.320282,0.951122,0.717654,0.935605,0.644631,0.455755,0.842405,0.927491,0.947832,0.446586,0.318186,0.956028,0.679831,0.767402,0.747382,0.587655,0.057101,0.958961,0.93236,0.586346,0.186637,0.500823,0.22141,0.571995,0.573082,0.39386,0.333518,0.674583,0.00912297,0.371749,0.147495,0.528811,0.918125,0.155138,0.784152,0.406421,0.953513,0.172499,0.463678,0.658921,0.365084,0.920562,0.226605,0.616748,0.77682,0.35566,0.254007,0.0627204,0.750181,0.841382,0.0158918,0.783379,0.0355538,0.0203492,0.262362,0.830297,0.302735,0.777951,0.162485,0.179885,0.143413,0.032598,0.369956,0.220333,0.499316,0.577736,0.574374,0.00887954,0.262116,0.646421,0.0992416,0.637783,0.182458,0.117724,0.739708,0.530325,0.904913,0.319202,0.241357,0.296021,0.630893,0.45133,0.313694,0.51567,0.275181,0.841727,0.989235,0.137319,0.378766,0.260341,0.55561,0.543058,0.993514,0.647712,0.693496,0.666796,0.550864,0.00339419,0.302836,0.774129,0.986948,0.837955,0.990598,0.72233,0.162015,0.209071,0.294579,0.907506,0.819755,0.729574,0.695482,0.778419,0.290032,0.364613,0.384453,0.523246,0.827828,0.0574123,0.895087,0.281962,0.550882,0.873806,0.0594585,0.576311,0.525407,0.282845,0.0471771,0.656823,0.411681,0.426532,0.754345,0.539687,0.465478,0.232189,0.79345,0.814255,0.226108,0.592394,0.252691,0.568512,0.721021,0.474822,0.304498,0.468527,0.0802867,0.26934,0.0837539,0.610124,0.570281,0.871883,0.736921,0.173058,0.409761,0.259988,0.930842,0.364718,0.791606,0.312745,0.688218,0.413846,0.213487,0.179377,0.697283,0.407234,0.744409,0.405929,0.124268,0.205292,0.00565088,0.351959,0.22375,0.183014,0.803307,0.513071,0.41131,0.168979,0.111902,0.215849,0.0922357,0.317919,0.355778,0.579217,0.686401,0.45859,0.517467,0.517884,0.855895,0.535808,0.288567,0.639811,0.795874,0.138378,0.309794,0.97976,0.383381,0.243263,0.546012,0.655626,0.837951,0.90828,0.678845,0.539808,0.811972,0.216378,0.589722,0.17977,0.729202,0.422396,0.491463,0.167697,0.775027,0.783649,0.682769,0.24453,0.0359328,0.930087,0.721236,0.659786,0.572483,0.282071,0.78399,0.563835,0.629207,0.489827,0.86012,0.183004,0.792548,0.90316,0.117385,0.820351,0.857247,0.590629,0.71227,0.267225,0.885785,0.980007,0.191816,0.411487,0.861099,0.298152,0.530739,0.53853,0.807624,0.910936,0.749257,0.0893735,0.772187,0.805367,0.73989,0.13157,0.00798512,0.155792,0.504223,0.615487,0.762996,0.828294,0.747652,0.423485,0.837399,0.250256,0.495372,0.32698,0.412446,0.475305,0.122347,0.777634,0.314947,0.754108,0.647992,0.503406,0.693289,0.960369,0.0699605,0.145759,0.355238,0.0200815,0.545412,0.199629,0.197163,0.531509,0.033412,0.51776,0.922338,0.878777,0.956059,0.389177,0.720932,0.0207632,0.457534,0.793409,0.629478,0.733084,0.649231,0.151564,0.808888,0.53938,0.550614,0.514012,0.885065,0.283796,0.385767,0.746661,0.218147,0.917875,0.344785,0.468928,0.396,0.490363,0.374214,0.776798,0.279929,0.780311,0.335664,0.184134,0.869361,0.861318,0.185389,0.233754,0.302718,0.391182,0.7023,0.422518,0.423057,0.214244,0.267014,0.513524,0.405152,0.493085,0.985617,0.388717,0.103954,0.532517,0.0413768,0.336556,0.535356,0.0227347,0.77721,0.530329,0.646981,0.353562,0.706978,0.799187,0.401407,0.612889,0.653576,0.0763441,0.541219,0.480824,0.633511,0.884496,0.892228,0.636132,0.579047,0.989772,0.693343,0.188968,0.35298,0.487844,0.150825,0.989873,0.132691,0.228632,0.640541,0.979146,0.565409,0.963029,0.206653,0.741892,0.52248,0.293141,0.4522,0.151381,0.159378,0.587754,0.890172,0.967702,0.61154,0.522639,0.0162516,0.42445,0.92831,0.856661,0.365534,0.083632,0.316246,0.134469,0.282412,0.319486,0.500783,0.897909,0.150669,0.782284,0.317158,0.500798,0.162556,0.782307,0.420504,0.622485,0.579802,0.107254,0.315713,0.398483,0.46831,0.78935,0.847433,0.502633,0.0633513,0.961379,0.58389,0.326203,0.674648,0.213635,0.775546,0.154809,0.392257,0.996966,0.881617,0.125209,0.898441,0.795884,0.909035,0.859056,0.495984,0.462057,0.937522,0.600196,0.379582,0.951984,0.506969,0.640641,0.610091,0.343927,0.0320168,0.582745,0.646068,0.431253,0.0203966,0.719754,0.631913,0.198013,0.755633,0.494821,0.194011,0.479064,0.7227,0.85602,0.934683,0.0757756,0.0539013,0.477155,0.484702,0.847714,0.212283,0.97793,0.45114,0.703649,0.592279,0.0195273,0.143662,0.247054,0.464619,0.58099,0.348233,0.166748,0.844473,0.620646,0.335277,0.146993,0.920155,0.30789,0.71714,0.449463,0.0153064,0.733085,0.379524,0.243487,0.586367,0.417538,0.461373,0.278538,0.710441,0.856089,0.0341386,0.35668,0.622049,0.95163,0.351858,0.105025,0.206926,0.752188,0.468774,0.038681,0.937522,0.362239,0.0340438,0.820925,0.587191,0.412406,0.479122,0.958052,0.730738,0.830579,0.644139,0.212583,0.599825,0.189654,0.301665,0.844749,0.803689,0.620229,0.925461,0.125489,0.845052,0.146961,0.0624535,0.731826,0.726595,0.0975407,0.0715551,0.285649,0.102563,0.290305,0.325098,0.729992,0.0380923,0.902907,0.469435,0.663139,0.448383,0.458727,0.918411,0.7514,0.272723,0.0459875,0.678656,0.328599,0.230346,0.10412,0.35187,0.121006,0.645983,0.0883505,0.744073,0.255604,0.340251,0.828902,0.0744586,0.195489,0.613025,0.252211,0.609421,0.516211,0.798289,0.81633,0.642149,0.173268,0.118138,0.911526,0.387118,0.848126,0.911676,0.238582,0.0829314,0.379238,0.203399,0.754662,0.937556,0.548782,0.567426,0.765161,0.133459,0.701003,0.144307,0.627553,0.323035,0.596217,0.136697,0.229656,0.563074,0.330216,0.4589,0.0606773,0.175482,0.342523,0.502105,0.826831,0.464245,0.613696,0.0922109,0.540408,0.557733,0.212264,0.424724,0.923297,0.0855683,0.750354,0.263045,0.56603,0.478813,0.0359662,0.710803,0.439338,0.696232,0.736575,0.621084,0.936377,0.875609,0.801339,0.201095,0.348648,0.940752,0.910076,0.701454,0.723031,0.284367,0.478634,0.257403,0.68484,0.586028,0.040046,0.757883,0.688691,0.742154,0.806086,0.85649,0.478184,0.486812,0.869426,0.475261,0.76971,0.597292,0.10065,0.29726,0.705328,0.83221,0.272944,0.926148,0.614288,0.763577,0.326672,0.952676,0.704407,0.733514,0.595626,0.465093,0.541434,0.80479,0.313254,0.373895,0.603909,0.318721,0.106848,0.304847,0.276933,0.331241,0.40474,0.860196,0.587173,0.00361222,0.0073818,0.269211,0.684469,0.824368,0.100818,0.386175,0.450801,0.209681,0.555955,0.434065,0.62651,0.248463,0.492471,0.19659,0.366772,0.518444,0.0854885,0.12955,0.756235,0.896816,0.566616,0.680962,0.339955,0.931413,0.958134,0.53029,0.883986,0.616168,0.139279,0.911989,0.352986,0.480072,0.174569,0.633209,0.862944,0.694335,0.975074,0.107952,0.0894959,0.229749,0.993455,0.506538,0.840438,0.913984,0.212318,0.147876,0.471878,0.981051,0.748089,0.754494,0.810222,0.991888,0.0245205,0.886482,0.717726,0.721639,0.547534,0.707761,0.124565,0.75408,0.0527998,0.28484,0.254472,0.853026,0.0433953,0.326798,0.913095,0.123098,0.799783,0.114129,0.725881,0.268728,0.804241,0.336899,0.115089,0.788913,0.321981,0.381104,0.486479,0.39919,0.195718,0.129997,0.281758,0.369825,0.440985,0.00702512,0.380622,0.96988,0.313583,0.0506534,0.233002,0.560873,0.758923,0.387483,0.713363,0.576362,0.636792,0.705444,0.858425,0.751299,0.746997,0.401203,0.955957,0.945254,0.712866,0.0311553,0.227308,0.855904,0.305479,0.0858968,0.964061,0.0937623,0.28147,0.640451,0.727219,0.69743,0.734165,0.889398,0.359327,0.125085,0.464193,0.24563,0.688602,0.125104,0.972595,0.200019,0.107331,0.117228,0.103019,0.785432,0.644974,0.482025,0.953757,0.452518,0.69965,0.54432,0.243132,0.961936,0.899025,0.982755,0.562249,0.947601,0.00860131,0.583263,0.861773,0.148647,0.222047,0.794069,0.605198,0.800774,0.582697,0.340799,0.686642,0.0042159,0.953929,0.802702,0.273082,0.921741,0.140458,0.342238,0.332778,0.296006,0.0845152,0.546547,0.540567,0.406546,0.969517,0.405939,0.0307285,0.00299591,0.394199,0.620859,0.821606,0.872764,0.0825895,0.223195,0.0827026,0.415922,0.152828,0.316038,0.478335,0.573807,0.61056,0.405584,0.200062,0.885854,0.891938,0.911142,0.777463,0.959831,0.126498,0.207568,0.0192042,0.87031,0.289773,0.623722,0.567114,0.256488,0.467344,0.550008,0.216032,0.361828,0.932174,0.816341,0.288445,0.45464,0.572107,0.042632,0.953324,0.957487,0.712674,0.299708,0.547429,0.48639,0.973403,0.304164,0.666063,0.647659,0.434872,0.551803,0.467144,0.921875,0.0792326,0.288303,0.338818,0.912012,0.0315924,0.546065,0.501216,0.190493,0.772656,0.447237,0.900479,0.361087,0.175594,0.255729,0.563589,0.504374,0.498132,0.626619,0.0219971,|0.461592,0.608794,0.369966,0.590473,0.432734,0.151198,0.76586,0.530043,0.0692873,0.816316,0.582683,0.435276,0.257029,0.721073,0.808172,0.405766,0.786262,0.436855,0.507256,0.0192361,0.42731,0.236146,0.938187,0.224941,0.622141,0.946898,0.482498,0.795083,0.458766,0.401029,0.313068,0.695038,0.170314,0.240129,0.0225525,0.820151,0.210633,0.507574,0.41575,0.862004,0.735703,0.539641,0.0670291,0.087023,0.592818,0.196578,0.413675,0.636019,0.931823,0.726522,0.234504,0.180791,0.267994,0.829729,0.123365,0.964857,0.587831,0.713748,0.812594,0.638169,0.92068,0.367976,0.378075,0.778321,0.34293,0.056468,0.733291,0.946263,0.407221,0.287137,0.713447,0.404762,0.00742942,0.766462,0.746958,0.725172,0.542334,0.349744,0.0123174,0.0769159,0.0460219,0.198294,0.0972069,0.81055,0.580394,0.768641,0.152333,0.466105,0.929776,0.621761,0.80869,0.0772566,0.698486,0.16782,0.319341,0.485237,0.0592493,0.402753,0.159999,0.457805,0.264737,0.274896,0.234152,0.451852,0.82717,0.375555,0.576888,0.623033,0.490274,0.153951,0.11367,0.643621,0.0963486,0.179626,0.843037,0.310849,0.136413,0.339558,0.683126,0.789057,0.30925,0.465416,0.422594,0.692143,0.336302,0.351983,0.48485,0.994346,0.346389,0.609326,0.0127776,0.108034,0.228996,0.724244,0.94758,0.385724,0.0940461,0.372346,0.902903,0.395942,0.366465,0.04013,0.269508,0.270811,0.213129,0.250841,0.614166,0.756376,0.898089,0.424352,0.186691,0.137589,0.611612,0.128087,0.0384092,0.531296,0.92371,0.249851,0.580391,0.960112,0.531809,0.312454,0.772039,0.0606927,0.267764,0.53011,0.747154,0.114063,0.5813,0.483364,0.891827,0.595374,0.995686,0.314699,0.701609,0.959063,0.538468,0.883644,0.161312,0.0290187,0.741432,0.549052,0.221433,0.528994,0.339123,0.402325,0.269112,0.146145,0.757711,0.402736,0.0150039,0.524534,0.467781,0.995015,0.888545,0.705485,0.0629805,0.321473,0.974221,0.424342,0.108253,0.635985,0.485542,0.070425,0.0446463,0.914077,0.810903,0.213389,0.486997,0.0495651,0.703908,0.689063,0.296556,0.816523,0.0434049,0.759583,0.500608,0.18941,0.442867,0.250566,0.0518281,0.119169,0.0599545,0.62696,0.965342,0.0215157,0.796235,0.301993,0.520236,0.527937,0.190663,0.160289,0.595985,0.896385,0.00105023,0.639748,0.00577289,0.813507,0.0728645,0.314821,0.658722,0.500639,0.91462,0.852883,0.425522,0.576362,0.593994,0.233526,0.234809,0.22825,0.361238,0.471312,0.318966,0.324182,0.335951,0.75864,0.438798,0.616518,0.290805,0.935133,0.948771,0.412168,0.79792,0.517378,0.965061,0.724858,0.390918,0.289234,0.735952,0.16828,0.632699,0.264605,0.732462,0.473241,0.0495706,0.347974,0.797967,0.33305,0.248959,0.72567,0.810191,0.49089,0.00915658,0.458367,0.355585,0.390073,0.359869,0.110715,0.664876,0.0845676,0.996691,0.37719,0.80185,0.914262,0.845744,0.959037,0.729749,0.46531,0.653769,0.309715,0.923507,0.439296,0.446304,0.330673,0.116937,0.802704,0.88093,0.41033,0.555029,0.099628,0.627533,0.769609,0.58856,0.311705,0.262426,0.720445,0.562343,0.397636,0.329878,0.229397,0.566672,0.875283,0.199527,0.195888,0.190781,0.880703,0.856074,0.208414,0.279657,0.0589999,0.993686,0.427901,0.723451,0.0327435,0.91229,0.45299,0.227619,0.452645,0.458739,0.117839,0.228535,0.246549,0.11177,0.790955,0.0894151,0.121524,0.0724533,0.891067,0.656582,0.154386,0.0436078,0.999814,0.41889,0.679352,0.670625,0.217564,0.830383,0.0037685,0.287999,0.904473,0.152817,0.122523,0.745024,0.464813,0.729356,0.0885237,0.559002,0.389427,0.322688,0.161897,0.189788,0.948147,0.372879,0.664555,0.777522,0.244081,0.0484688,0.761019,0.721587,0.662268,0.118741,0.695515,0.984108,0.639182,0.0175541,0.16771,0.922104,0.494549,0.0466419,0.377645,0.333952,0.39706,0.318761,0.871946,0.955686,0.339957,0.0200006,0.848971,0.160251,0.533349,0.727438,0.559945,0.995875,0.261375,0.81255,0.726309,0.954005,0.628131,0.00282216,0.894191,0.961185,0.498077,0.187457,0.756142,0.790435,0.350896,0.872749,0.218598,0.546104,0.366997,0.154077,0.481837,0.718488,0.115522,0.39987,0.501503,0.827413,0.961844,0.760843,0.2998,0.778578,0.264897,0.939315,0.162511,0.695144,0.617446,0.374477,0.550968,0.74711,0.784799,0.252867,0.287633,0.229808,0.817347,0.206163,0.389672,0.00122911,0.990059,0.975501,0.394358,0.492929,0.984893,0.760235,0.550017,0.634569,0.194595,0.788458,0.757824,0.201251,0.599974,0.233279,0.0603303,0.0406862,0.895697,0.208125,0.299124,0.205384,0.477033,0.384309,0.32262,0.311269,0.192693,0.868145,0.780281,0.0805475,0.202856,0.534516,0.810995,0.525102,0.85169,0.491226,0.461166,0.044726,0.64002,0.672114,0.819781,0.858367,0.853937,0.93844,0.445557,0.540297,0.420248,0.74439,0.488864,0.580228,0.396055,0.268682,0.644892,0.830376,0.654853,0.997942,0.702362,0.0355781,0.849611,0.828517,0.265677,0.651585,0.574298,0.411439,0.56669,0.355369,0.311209,0.812051,0.662683,0.522933,0.569614,0.443629,0.13526,0.799817,0.499495,0.781677,0.0917701,0.799315,0.705098,0.196022,0.15454,0.50387,0.593754,0.401135,0.752191,0.567745,0.553592,0.761931,0.505878,0.298113,0.535426,0.955485,0.739228,0.531715,0.884246,0.801871,0.490536,0.994631,0.530317,0.383552,0.992614,0.938717,0.876019,0.249627,0.652195,0.694095,0.229487,0.173399,0.514551,0.873638,0.324814,0.742879,0.0273827,0.254272,0.373308,0.921202,0.998106,0.165705,0.659677,0.629322,0.456446,0.316704,0.169341,0.31527,0.799376,0.516726,0.634699,0.569075,0.244661,0.700103,0.212307,0.784143,0.158031,0.98927,0.746748,0.73946,0.71827,0.0907485,0.0641913,0.172378,0.180766,0.288146,0.572003,0.291599,0.239318,0.902754,0.0924968,0.0887408,0.669331,0.14848,0.536733,0.600168,0.687783,0.810569,0.569791,0.630634,0.965994,0.863504,0.335225,0.065305,0.328619,0.230063,0.511715,0.554076,0.509335,0.669813,0.902459,0.922038,0.409417,0.26052,0.845996,0.353859,0.985798,0.64065,0.972582,0.381542,0.61347,0.4645,0.00922579,0.35506,0.0650481,0.284478,0.334651,0.90884,0.882616,0.200583,0.85275,0.392364,0.88103,0.0365822,0.0692599,0.896044,0.849337,0.237422,0.817197,0.972288,0.333577,0.819393,0.370715,0.157901,0.956302,0.176113,0.785234,0.114105,0.596071,0.0519737,0.427237,0.267872,0.0898513,0.874523,0.705892,0.680289,0.335348,0.909199,0.289356,0.94808,0.0539601,0.871198,0.840955,0.460227,0.627845,0.528287,0.459305,0.359354,0.00306404,0.303199,0.114402,0.0187798,0.275391,0.97749,0.871411,0.436718,0.222524,0.678131,0.330478,0.929352,0.216635,0.0529463,0.98127,0.159607,0.661073,0.491301,0.230119,0.0987203,0.132239,0.311334,0.503427,0.469392,0.590759,0.801283,0.451838,0.804774,0.813244,0.903386,0.887946,0.741643,0.37098,0.830881,0.869936,0.0623718,0.460497,0.472925,0.453508,0.804437,0.879794,0.333194,0.859957,0.907628,0.96231,0.113852,0.306306,0.486783,0.243349,0.543814,0.681179,0.730067,0.694772,0.955951,0.336073,0.534082,0.81788,0.560097,0.208804,0.0597419,0.884168,0.179624,0.902379,0.341527,0.545187,0.579754,0.511136,0.833268,0.631845,0.878731,0.596594,0.812306,0.808021,0.314234,0.73876,0.182626,0.391024,0.288722,0.515823,0.233318,0.99226,0.555785,0.83291,0.0111626,0.678685,0.509963,0.248745,0.53262,0.66967,0.0184928,0.47867,0.533645,0.639054,0.643122,0.542401,0.67658,0.0499485,0.53732,0.535669,0.26277,0.713704,0.746763,0.406866,0.549582,0.697606,0.497517,0.847482,0.251448,0.0145914,0.553272,0.691258,0.908119,0.318713,0.744537,0.905853,0.360922,0.079502,0.942352,0.570462,0.413184,0.681057,0.094166,0.466522,0.563461,0.803861,0.959326,0.920717,0.237918,0.242858,0.0640764,0.291317,0.620447,0.752745,0.143345,0.659782,0.773178,0.836195,0.174492,0.505608,0.305152,0.669816,0.659607,0.883518,0.773049,0.594137,0.287016,0.839822,0.715178,0.998601,0.214364,0.377458,0.697617,0.793665,0.0942158,0.217454,0.844376,0.269668,0.639527,0.802619,0.427453,0.850968,0.585269,0.869593,0.232344,0.540386,0.796517,0.932829,0.589681,0.516722,0.133417,0.986641,0.183931,0.365975,0.104259,0.781354,0.247644,0.479301,0.848128,0.810388,0.42416,0.670975,0.223671,0.398815,0.046441,0.833237,0.276593,0.408601,0.279646,0.65004,0.735753,0.492522,0.329024,0.737867,0.0388646,0.628078,0.878235,0.43741,0.303009,0.728303,0.642558,0.314834,0.695199,0.0608515,0.705277,0.344652,0.275708,0.128686,0.0696827,0.276017,0.659503,0.0905142,0.442876,0.0551484,0.230167,0.112624,0.633204,0.690846,0.562694,0.528215,0.119733,0.354735,0.137606,0.00836551,0.985275,0.830099,0.754829,0.47896,0.170247,0.173089,0.364787,0.146308,0.241887,0.272714,0.668646,0.513773,0.140833,0.265283,0.503659,0.128254,0.0865709,0.306015,0.250998,0.406313,0.0257799,0.710191,0.817889,0.740158,0.0134771,0.0384447,0.293322,0.964821,0.0660754,0.275549,0.688585,0.294392,0.978201,0.00428581,0.812623,0.788832,0.463608,0.388208,0.712459,0.929037,0.703784,0.261107,0.186662,0.182633,0.837266,0.669381,0.653422,0.681118,0.343148,0.0296434,0.865779,0.805835,0.514463,0.425495,0.076095,0.864515,0.156384,0.405785,0.840675,0.970796,0.400095,0.0640736,0.0128052,0.858768,0.0171273,0.853233,0.826339,0.0744632,0.831089,0.196279,0.499777,0.200856,0.130552,0.819782,0.849845,0.812307,0.835976,0.799103,0.0960524,0.435327,0.535114,0.818791,0.812761,0.542371,0.291582,0.397577,0.529976,0.0684765,0.14225,0.0568036,0.704459,0.577236,0.710198,0.448596,0.589173,0.770366,0.214474,0.0833395,0.458442,0.202214,0.389993,0.775713,0.23056,0.517749,0.440785,0.817302,0.370768,0.620691,|0.34766,0.302011,0.704111,0.856846,0.173995,0.316001,0.00299853,0.226332,0.559781,0.301668,0.841692,0.580154,0.96324,0.807318,0.402465,0.0555351,0.211448,0.154276,0.377894,0.637599,0.206596,0.606994,0.896714,0.419016,0.797542,0.474557,0.699761,0.92801,0.188498,0.989122,0.980861,0.729175,0.468182,0.533893,0.703024,0.294108,0.98022,0.0774174,0.610473,0.628798,0.527511,0.981159,0.680838,0.206995,0.154116,0.85301,0.0976212,0.472681,0.451116,0.927759,0.297584,0.597983,0.210247,0.975809,0.748539,0.700904,0.566947,0.756116,0.874119,0.573513,0.285634,0.538159,0.0852624,0.0719424,0.537508,0.509159,0.0280223,0.953131,0.328282,0.630349,0.150674,0.940431,0.830156,0.0870827,0.253295,0.614602,0.647615,0.590823,0.141565,0.324415,0.255579,0.815394,0.0873398,0.712846,0.605958,0.780489,0.393858,0.382924,0.989884,0.0431672,0.936814,0.0919622,0.88254,0.120817,0.592484,0.979528,0.222741,0.827106,0.617259,0.043566,0.31909,0.874654,0.00646454,0.545986,0.437698,0.513344,0.763197,0.660893,0.234881,0.0220209,0.697362,0.830715,0.767118,0.367576,0.152769,0.603005,0.0357085,0.426813,0.679344,0.344802,0.486289,0.00471765,0.74296,0.955652,0.235989,0.827552,0.0549509,0.85526,0.0770553,0.179602,0.132756,0.80334,0.184647,0.29057,0.875669,0.453616,0.958443,0.0793241,0.531754,0.662244,0.431499,0.456719,0.594478,0.429872,0.808951,0.251937,0.622977,0.791445,0.48758,0.323982,0.0621031,0.45139,0.566603,0.243503,0.166141,0.796622,0.64997,0.126204,0.344672,0.546378,0.73087,0.842462,0.504968,0.490602,0.610536,0.663301,0.889866,0.667636,0.512563,0.971879,0.905311,0.0167799,0.718649,0.756351,0.135723,0.196044,0.109346,0.785715,0.710811,0.347587,0.361456,0.154379,0.776272,0.8783,0.49878,0.0494135,0.603856,0.31568,0.202582,0.773908,0.620488,0.127418,0.549026,0.197327,0.058941,0.103833,0.0774958,0.32626,0.592104,0.844549,0.614088,0.188832,0.19278,0.206104,0.57019,0.707233,0.326265,0.940005,0.180649,0.993425,0.873675,0.961839,0.250125,0.250073,0.0886373,0.492504,0.700334,0.11359,0.113722,0.695061,0.834992,0.480356,0.133418,0.481068,0.846653,0.525324,0.0135379,0.551667,0.116725,0.730819,0.411871,0.916258,0.598032,0.699276,0.731427,0.895714,0.520292,0.524338,0.678774,0.212872,0.735495,0.350988,0.154616,0.667013,0.676625,0.157024,0.907372,0.637198,0.223932,0.660418,0.475122,0.586505,0.862517,0.108988,0.506752,0.445006,0.914246,0.0479843,0.953899,0.677157,0.243151,0.135165,0.619161,0.967311,0.787302,0.0705734,0.0638629,0.313337,0.0139295,0.103685,0.152302,0.0958264,0.957202,0.17422,0.832436,0.528048,0.0119908,0.0790061,0.199199,0.49251,0.533473,0.932699,0.401261,0.12111,0.334576,0.347739,0.118713,0.108712,0.717938,0.204017,0.571783,0.0119085,0.748637,0.308607,0.869054,0.245146,0.542768,0.209781,0.841916,0.294902,0.282012,0.706946,0.168929,0.250482,0.293252,0.829245,0.441398,0.918757,0.86178,0.149738,0.725573,0.342641,0.580017,0.170924,0.496822,0.408487,0.292161,0.454691,0.775123,0.504787,0.971157,0.131746,0.772599,0.903229,0.957376,0.931703,0.927806,0.387882,0.918204,0.0535667,0.988332,0.148646,0.183634,0.389988,0.992507,0.12724,0.541049,0.0728877,0.661753,0.928536,0.192562,0.746562,0.308414,0.175534,0.938505,0.777866,0.0468228,0.999765,0.779425,0.772406,0.175148,0.848468,0.216469,0.554144,0.22996,0.506132,0.0930191,0.269574,0.919111,0.524272,0.663562,0.552122,0.386004,0.0352628,0.724963,0.143075,0.743396,0.979422,0.209576,0.972776,0.720265,0.971266,0.742467,0.78965,0.716017,0.971731,0.401305,0.252315,0.619768,0.675214,0.36257,0.576589,0.0305752,0.705664,0.228453,0.615293,0.56027,0.372156,0.201471,0.11577,0.218756,0.48604,0.0342835,0.242641,0.801733,0.818082,0.400534,0.0368628,0.605981,0.18035,0.568461,0.740486,0.509696,0.182123,0.0218751,0.118796,0.368206,0.0944514,0.33553,0.0999082,0.113838,0.648907,0.111291,0.327441,0.0288968,0.113344,0.338246,0.937226,0.779866,0.400053,0.538449,0.897063,0.782092,0.801591,0.11231,0.549848,0.305581,0.142199,0.935009,0.126489,0.967895,0.118625,0.68209,0.935396,0.798658,0.604628,0.885609,0.0479566,0.695152,0.462972,0.435716,0.810354,0.476455,0.932392,0.402589,0.548499,0.702185,0.735035,0.689929,0.775168,0.0506603,0.647163,0.293319,0.513252,0.989441,0.533545,0.592104,0.626166,0.507806,0.901885,0.801491,0.689381,0.468687,0.737965,0.995164,0.911784,0.120565,0.878826,0.570745,0.0722135,0.99789,0.698514,0.474477,0.155502,0.496929,0.890326,0.431369,0.402772,0.257224,0.0222747,0.703258,0.3711,0.585287,0.606745,0.574833,0.544579,0.938995,0.369423,0.0794608,0.123265,0.327274,0.364114,0.270764,0.373054,0.067423,0.735513,0.987755,0.838056,0.112167,0.060991,0.316191,0.744677,0.262034,0.684768,0.767741,0.589973,0.957428,0.843283,0.0919781,0.541824,0.590807,0.474624,0.13754,0.920829,0.664972,0.843799,0.182398,0.630485,0.572505,0.918428,0.060303,0.556132,0.225105,0.526575,0.824909,0.0651317,0.0737603,0.404257,0.453474,0.448747,0.0374197,0.222672,0.943411,0.694347,0.246781,0.0881319,0.637467,0.415731,0.802747,0.439394,0.66007,0.463391,0.541606,0.0770265,0.599499,0.11502,0.712108,0.642904,0.445263,0.1342,0.760107,0.4526,0.305673,0.94008,0.713305,0.421595,0.604934,0.820589,0.100497,0.0601095,0.787272,0.711865,0.693043,0.819763,0.369817,0.068129,0.102149,0.375663,0.30591,0.360492,0.77066,0.71572,0.510195,0.714631,0.0437362,0.842685,0.795742,0.247298,0.810218,0.8145,0.795836,0.695754,0.99722,0.623099,0.499805,0.13032,0.721169,0.959195,0.468609,0.326799,0.0502881,0.272744,0.055735,0.107871,0.314831,0.819839,0.185163,0.210056,0.632906,0.523605,0.294311,0.217832,0.675106,0.86452,0.610478,0.160108,0.295861,0.581322,0.241311,0.0766298,0.323099,0.00428355,0.30738,0.437147,0.449576,0.962682,0.107387,0.972605,0.026211,0.551797,0.292359,0.346314,0.548429,0.961621,0.106479,0.383927,0.59972,0.923548,0.195318,0.780187,0.593753,0.436756,0.128199,0.490467,0.747488,0.489543,0.711929,0.842472,0.446773,0.137638,0.178191,0.843807,0.128186,0.496678,0.259779,0.10183,0.453936,0.469474,0.105062,0.639309,0.8804,0.0572117,0.302871,0.464871,0.0828515,0.600974,0.0311767,0.0425988,0.498731,0.386795,0.468225,0.0160575,0.800432,0.494126,0.363441,0.984279,0.456357,0.890217,0.414261,0.702682,0.805578,0.498914,0.545023,0.143399,0.220996,0.0583559,0.108717,0.071766,0.617847,0.546106,0.0938692,0.463453,0.0512364,0.479763,0.946166,0.77966,0.377651,0.968458,0.601334,0.289765,0.951534,0.610909,0.23355,0.842928,0.996629,0.0513582,0.730514,0.900405,0.206343,0.769306,0.0784466,0.465392,0.962749,0.0654176,0.670122,0.0345826,0.630354,0.0164664,0.885826,0.069117,0.347044,0.794851,0.129674,0.118289,0.473053,0.0930686,0.772695,0.019187,0.0708821,0.76381,0.0339451,0.0657108,0.471095,0.741631,0.304312,0.234364,0.0866846,0.781024,0.217113,0.855541,0.0761806,0.627777,0.740389,0.946203,0.614809,0.4759,0.139773,0.110832,0.540248,0.265458,0.919849,0.582838,0.00325769,0.00574023,0.1838,0.555941,0.320771,0.501753,0.890318,0.0980964,0.766545,0.503399,0.371862,0.161157,0.672884,0.0343954,0.827229,0.813107,0.557319,0.685057,0.85284,0.15633,0.306442,0.610488,0.0372608,0.33795,0.520952,0.911217,0.329248,0.152491,0.84589,0.663779,0.119575,0.26818,0.661885,0.637219,0.460608,0.252726,0.450315,0.675958,0.927415,0.31934,0.54853,0.188605,0.478869,0.595715,0.614296,0.0285339,0.25796,0.788834,0.35024,0.250142,0.0154434,0.360299,0.974722,0.201269,0.599186,0.498698,0.734729,0.432629,0.339073,0.289181,0.152869,0.215659,0.623619,0.870095,0.0503485,0.605619,0.919641,0.975261,0.10531,0.482348,0.0704038,0.866425,0.180802,0.681892,0.849686,0.745869,0.948541,0.248198,0.107758,0.709138,0.207805,0.598103,0.199764,0.59607,0.491217,0.0820401,0.932022,0.32252,0.218201,0.762817,0.502827,0.643785,0.758259,0.769514,0.515212,0.0459458,0.0349676,0.447703,0.612014,0.532702,0.563533,0.916518,0.338475,0.637723,0.423985,0.897702,0.569754,0.226378,0.868519,0.83296,0.23508,0.0717502,0.770205,0.359691,0.584909,0.928026,0.677908,0.790273,0.675592,0.406194,0.443626,0.543206,0.977262,0.131473,0.316647,0.090326,0.366046,0.940915,0.237593,0.966999,0.491277,0.644918,0.385425,0.89613,0.170057,0.323467,0.182422,0.38684,0.260181,0.67225,0.797756,0.465366,0.187853,0.60242,0.0375407,0.599039,0.445403,0.295627,0.363433,0.0756658,0.0644491,0.789717,0.671908,0.882614,0.756961,0.0874218,0.288369,0.00236899,0.291509,0.766646,0.263003,0.218937,0.618383,0.0132691,0.868624,0.102621,0.245719,0.41764,0.187973,0.791606,0.126431,0.221613,0.751221,0.378343,0.597092,0.751103,0.0297689,0.801197,0.440473,0.663247,0.252319,0.229303,0.556121,0.367419,0.410433,0.803615,0.0636345,0.503891,0.87467,0.802309,0.117672,0.935643,0.120268,0.622088,0.259732,0.763721,0.757302,0.621718,0.24382,0.7806,0.830611,0.418186,0.76899,0.376869,0.401152,0.758353,0.289515,0.715411,0.920075,0.18958,0.485128,0.191033,0.307489,0.727874,0.780896,0.18271,0.439709,0.7827,0.362167,0.6213,0.695898,0.123389,0.7209,0.724776,0.0638479,0.0463398,0.737453,0.397387,0.59219,0.0483385,0.247374,0.918082,0.716465,0.625772,0.0852276,0.405969,0.889912,0.327007,0.114332,0.551341,0.657813,0.423161,0.792217,0.332805,0.330788,0.461619,0.891325,0.606492,0.229043,0.440426,0.449896,0.661132,0.066014,0.0793242,0.737561,0.0852852,0.634892,0.0801449,|0.369284,0.805489,0.851029,0.835297,0.275915,0.203406,0.887183,0.0171893,0.791383,0.222235,0.44369,0.0562832,0.954391,0.169734,0.356048,0.238806,0.150515,0.917357,0.560833,0.332554,0.545253,0.69127,0.501091,0.931711,0.922615,0.429605,0.563853,0.703669,0.061915,0.929423,0.130222,0.721819,0.988108,0.897545,0.537775,0.0412732,0.767594,0.391644,0.356597,0.813468,0.718612,0.591586,0.0212805,0.97563,0.957819,0.896349,0.828179,0.038789,0.374313,0.653315,0.118621,0.254116,0.200743,0.689871,0.296243,0.992269,0.152307,0.509247,0.396431,0.528838,0.230124,0.293285,0.569778,0.977162,0.104044,0.240925,0.164525,0.818425,0.578728,0.234625,0.401619,0.806937,0.64122,0.575874,0.503749,0.270186,0.43782,0.671472,0.342185,0.353352,0.104971,0.532608,0.120211,0.744863,0.884613,0.163136,0.353595,0.419779,0.0604111,0.179909,0.35111,0.481526,0.814485,0.289727,0.474101,0.0366883,0.576516,0.683457,0.878725,0.0286844,0.259993,0.415114,0.618507,0.291314,0.685284,0.787218,0.791618,0.2945,0.298815,0.204587,0.781703,0.110813,0.637126,0.0999825,0.856057,0.0163023,0.412971,0.375514,0.206315,0.670405,0.0565062,0.641377,0.587859,0.747535,0.160811,0.955855,0.357868,0.64083,0.469148,0.797187,0.103093,0.0558859,0.131333,0.561105,0.934859,0.632215,0.834356,0.374576,0.817088,0.23179,0.225669,0.00511736,0.160958,0.0795736,0.165157,0.331851,0.236317,0.324808,0.294298,0.780462,0.973523,0.49024,0.830707,0.348985,0.354321,0.779557,0.208995,0.109277,0.952242,0.759187,0.879716,0.199744,0.473292,0.574574,0.767303,0.221446,0.282451,0.5029,0.716376,0.865968,0.583196,0.247696,0.609089,0.544662,0.342697,0.0716983,0.526667,0.574751,0.3942,0.80778,0.200696,0.796306,0.0557055,0.237311,0.237961,0.570177,0.184144,0.947732,0.548876,0.226578,0.0969962,0.843181,0.982742,0.226249,0.773359,0.607943,0.216948,0.718234,0.69066,0.658801,0.0434141,0.157261,0.230909,0.263841,0.118843,0.161157,0.0257513,0.841344,0.367969,0.475826,0.205305,0.164968,0.148395,0.912307,0.346449,0.474789,0.0337263,0.322422,0.927043,0.903335,0.231966,0.754767,0.678561,0.101382,0.0144973,0.448229,0.917519,0.468834,0.446145,0.333274,0.857379,0.708721,0.611204,0.824769,0.6569,0.788397,0.491929,0.131621,0.952569,0.33871,0.402534,0.235353,0.35904,0.621076,0.821242,0.626573,0.35983,0.602275,0.747331,0.0269333,0.481093,0.570205,0.300903,0.523533,0.0702356,0.135527,0.199709,0.67406,0.616016,0.653417,0.714172,0.602053,0.132167,0.919666,0.735756,0.768183,0.049423,0.473441,0.762478,0.505362,0.0972775,0.43833,0.870633,0.16136,0.512391,0.108099,0.317857,0.170342,0.676356,0.130324,0.0860709,0.0442413,0.0235865,0.342885,0.670549,0.424122,0.908825,0.908114,0.433167,0.563625,0.362902,0.850896,0.366033,0.668205,0.0533488,0.569727,0.409591,0.796403,0.754979,0.334632,0.967672,0.988375,0.87742,0.922083,0.726509,0.0545743,0.917425,0.175797,0.42645,0.684359,0.464351,0.990869,0.270515,0.88858,0.231114,0.722569,0.287337,0.871611,0.391501,0.912674,0.182459,0.329388,0.271518,0.262964,0.196125,0.773616,0.686481,0.243936,0.347986,0.116188,0.189771,0.909603,0.535647,0.275084,0.977647,0.471077,0.716404,0.527993,0.193454,0.521866,0.65763,0.766827,0.480375,0.180656,0.0475654,0.720909,0.705243,0.480001,0.810174,0.839067,0.354971,0.215346,0.372111,0.632601,0.641797,0.0507337,0.243551,0.8612,0.0795585,0.555447,0.259122,0.29259,0.216723,0.866203,0.695731,0.428593,0.984586,0.290343,0.990476,0.447066,0.671375,0.938765,0.243866,0.635038,0.661708,0.369636,0.716258,0.959261,0.496363,0.486515,0.663352,0.708996,0.806521,0.232306,0.572579,0.472806,0.96851,0.667468,0.518712,0.315402,0.566945,0.231707,0.373425,0.636524,0.871985,0.27328,0.246282,0.878564,0.628551,0.909179,0.67481,0.662766,0.0530424,0.604309,0.0160116,0.931858,0.992117,0.332297,0.0104665,0.80262,0.859924,0.541543,0.456992,0.420886,0.243991,0.450009,0.747237,0.697409,0.857479,0.87983,0.345148,0.42751,0.696665,0.166702,0.86577,0.926848,0.141544,0.413963,0.394378,0.0818836,0.313198,0.594546,0.685956,0.355186,0.0461733,0.957547,0.802859,0.00257581,0.190801,0.43106,0.313945,0.990842,0.261007,0.174565,0.889142,0.707674,0.681231,0.666018,0.264669,0.855124,0.429424,0.71652,0.178681,0.622233,0.853419,0.103315,0.875644,0.181536,0.75059,0.0357547,0.40044,0.0857719,0.991733,0.99298,0.152378,0.543059,0.866384,0.506713,0.42915,0.847157,0.701194,0.476691,0.889935,0.376416,0.757863,0.392348,0.154411,0.770901,0.720154,0.800943,0.803695,0.311525,0.729023,0.672017,0.683476,0.420496,0.679119,0.247365,0.865937,0.989262,0.183065,0.491506,0.738907,0.892916,0.0737362,0.521274,0.726166,0.856929,0.897809,0.562135,0.25971,0.455052,0.289803,0.124072,0.661475,0.739646,0.415841,0.599114,0.696348,0.843672,0.39907,0.330359,0.355956,0.92081,0.393214,0.181977,0.805479,0.471232,0.893912,0.338792,0.0741132,0.61254,0.97744,0.674937,0.400851,0.664738,0.0241168,0.0275546,0.362328,0.401834,0.978288,0.566972,0.8454,0.846388,0.370064,0.201395,0.463425,0.20499,0.224651,0.540393,0.913632,0.773595,0.567561,0.221767,0.897189,0.791076,0.680552,0.350471,0.63702,0.476719,0.199032,0.687287,0.874283,0.748955,0.799078,0.855707,0.645673,0.707877,0.956202,0.44191,0.94977,0.386828,0.120366,0.79256,0.337875,0.244956,0.245903,0.0686029,0.388524,0.336097,0.571777,0.931136,0.968229,0.476849,0.920014,0.0326533,0.765611,0.0187978,0.337561,0.406587,0.736291,0.0855553,0.472518,0.233732,0.675287,0.451383,0.24786,0.337802,0.47327,0.62795,0.21414,0.818964,0.304805,0.178569,0.0126458,0.518937,0.000576794,0.154396,0.708703,0.66241,0.103213,0.434279,0.344463,0.428544,0.114683,0.381595,0.068868,0.884403,0.380055,0.592592,0.0274482,0.690206,0.150068,0.221698,0.334676,0.481575,0.632937,0.561992,0.560518,0.735978,0.987607,0.331869,0.178633,0.372048,0.10797,0.2153,0.903743,0.289557,0.752192,0.139115,0.111254,0.163224,0.886588,0.59274,0.985718,0.212607,0.702543,0.506847,0.502359,0.80689,0.328565,0.618841,0.827752,0.349117,0.354697,0.946475,0.974062,0.150424,0.989256,0.398001,0.445189,0.343125,0.387326,0.989595,0.925613,0.0397649,0.448418,0.641091,0.403053,0.0707343,0.598826,0.967933,0.270557,0.624005,0.0259668,0.675032,0.559146,0.838263,0.08321,0.111907,0.555646,0.183134,0.310823,0.338913,0.782721,0.203816,0.341681,0.0577673,0.799201,0.39607,0.0795072,0.857954,0.793364,0.472497,0.863401,0.280148,0.000162244,0.115464,0.642847,0.621058,0.441094,0.0803459,0.443212,0.341035,0.284037,0.687949,0.763674,0.835585,0.995286,0.618965,0.354941,0.771022,0.37229,0.179161,0.470682,0.702375,0.427018,0.0610387,0.873826,0.230566,0.29103,0.0349812,0.251451,0.130621,0.102882,0.96393,0.34748,0.251642,0.978232,0.0162105,0.712492,0.726287,0.179803,0.147482,0.963018,0.312748,0.438683,0.627763,0.708151,0.486928,0.12562,0.77245,0.93684,0.889796,0.392943,0.162016,0.0649135,0.633639,0.0894706,0.550534,0.117772,0.331374,0.866869,0.582314,0.265104,0.489911,0.787471,0.290302,0.897058,0.331246,0.735499,0.255764,0.573865,0.182947,0.313219,0.531101,0.923796,0.988803,0.361804,0.154645,0.972427,0.778241,0.956257,0.656155,0.82947,0.514734,0.344183,0.328094,0.0975566,0.298122,0.325936,0.330687,0.991837,0.505192,0.106973,0.882945,0.673922,0.761594,0.647267,0.906728,0.381482,0.217186,0.699612,0.502243,0.942469,0.198758,0.57003,0.216911,0.825221,0.484492,0.943412,0.686353,0.443788,0.150697,0.475863,0.373723,0.866802,0.0252194,0.116315,0.669433,0.915626,0.980705,0.594373,0.777906,0.321065,0.176838,0.137222,0.700227,0.699583,0.559506,0.732538,0.0298006,0.46028,0.104874,0.405037,0.196839,0.880619,0.538455,0.783601,0.25169,0.21932,0.322699,0.324886,0.287436,0.201039,0.4393,0.42924,0.185987,0.60719,0.505513,0.302871,0.543467,0.957625,0.321373,0.326,0.625899,0.781112,0.224976,0.714433,0.38387,0.305755,0.964084,0.823863,0.347036,0.186534,0.376604,0.409932,0.768663,0.976706,0.831845,0.182171,0.168632,0.861775,0.0614104,0.123649,0.128418,0.206972,0.670854,0.231646,0.147282,0.18114,0.23951,0.743944,0.896934,0.465299,0.307129,0.906729,0.532917,0.932552,0.273549,0.637467,0.207615,0.847507,0.591084,0.879418,0.865416,0.661778,0.291279,0.200656,0.809591,0.378341,0.275158,0.26947,0.255526,0.465362,0.742472,0.835008,0.465616,0.329045,0.23339,0.901867,0.852921,0.306184,0.150448,0.230267,0.876592,0.377265,0.699282,0.609027,0.681015,0.393551,0.289712,0.341668,0.679052,0.126122,0.981096,0.482376,0.299667,0.051911,0.759126,0.909828,0.507594,0.236083,0.414965,0.305201,0.045527,0.995215,0.691186,0.548775,0.693906,0.544824,0.622044,0.725065,0.863085,0.465391,0.342881,0.454129,0.32428,0.0991709,0.713319,0.654409,0.550001,0.815308,0.818613,0.226645,0.00291991,0.636065,0.166516,0.38361,0.683036,0.28447,0.0954865,0.205368,0.103427,0.288389,0.632475,0.0978369,0.45824,0.960915,0.741618,0.557812,0.0923866,0.364619,0.656742,0.671012,0.0700139,0.287831,0.954552,0.507792,0.6718,0.831321,0.938331,0.626165,0.277056,0.667271,0.81534,0.0929883,0.184496,0.470198,0.42239,0.785577,0.0755111,0.346853,0.0727538,0.14147,0.434317,0.252268,0.276271,0.395569,0.171178,0.738947,0.153042,0.604472,0.423388,0.332043,0.0861219,0.941717,0.817869,0.669202,0.316819,0.926378,0.434188,0.941539,0.209581,0.404431,0.249963,0.0186979,0.184539,0.318862,0.215717,|0.258688,0.975906,0.535532,0.861826,0.403099,0.767716,0.33935,0.872526,0.584104,0.631155,0.342833,0.235724,0.812001,0.453126,0.27366,0.62298,0.214735,0.651228,0.400255,0.716047,0.0539431,0.246756,0.477919,0.277022,0.88282,0.862723,0.270053,0.921092,0.788476,0.980152,0.257556,0.635305,0.369732,0.64449,0.0492278,0.720209,0.314083,0.455442,0.0491441,0.826598,0.384508,0.148833,0.0717109,0.543925,0.258365,0.019572,0.759158,0.126932,0.932755,0.521421,0.876122,0.0138487,0.21498,0.353922,0.365054,0.123058,0.868012,0.404492,0.82961,0.717295,0.738762,0.502276,0.703771,0.289268,0.995929,0.955707,0.00930482,0.179759,0.0729964,0.499504,0.645583,0.706882,0.990319,0.756766,0.574378,0.295573,0.302186,0.640567,0.0379124,0.00575346,0.298442,0.655593,0.446022,0.905304,0.401252,0.175388,0.217445,0.317788,0.511746,0.0705142,0.209286,0.876203,0.176654,0.739077,0.918209,0.762825,0.350436,0.781249,0.709604,0.322038,0.0730284,0.960313,0.20981,0.0308801,0.967147,0.515346,0.399427,0.797389,0.45691,0.288069,0.0603765,0.551544,0.448893,0.567072,0.412983,0.196509,0.326887,0.670091,0.597794,0.630478,0.238308,0.865124,0.820056,0.783004,0.375296,0.972132,0.255697,0.454205,0.209533,0.329626,0.898754,0.676999,0.450731,0.576123,0.729835,0.587509,0.396398,0.00571674,0.461866,0.374807,0.803525,0.722954,0.611083,0.0863659,0.823146,0.773305,0.215647,0.498399,0.929982,0.292465,0.887341,0.73566,0.45656,0.582943,0.578961,0.976606,0.126096,0.844419,0.206187,0.504354,0.50637,0.701637,0.219663,0.0343333,0.842413,0.510565,0.217286,0.44296,0.262605,0.754043,0.480079,0.950984,0.0105371,0.950868,0.927385,0.754479,0.0277105,0.399253,0.939457,0.486974,0.575164,0.336712,0.61672,0.277785,0.127444,0.207868,0.165318,0.844951,0.791299,0.438965,0.416255,0.894646,0.846024,0.304306,0.717797,0.88223,0.122483,0.585584,0.787089,0.412748,0.202605,0.247923,0.662476,0.481856,0.774901,0.247091,0.183636,0.533137,0.303672,0.136666,0.216046,0.452225,0.521606,0.156095,0.156036,0.45328,0.0749053,0.388084,0.258853,0.93466,0.991167,0.0148874,0.0127541,0.756588,0.873837,0.855956,0.124558,0.433764,0.679806,0.685063,0.61405,0.824871,0.435722,0.624468,0.239555,0.298514,0.551781,0.488787,0.932105,0.0739706,0.932636,0.328033,0.70984,0.453419,0.815073,0.137295,0.764498,0.184531,0.774739,0.613802,0.315515,0.835724,0.68339,0.29979,0.800682,0.0944887,0.923479,0.861226,0.139945,0.4451,0.296957,0.948648,0.201545,0.625937,0.835394,0.189196,0.174476,0.505191,0.197711,0.381335,0.766085,0.373901,0.230975,0.707484,0.323422,0.268504,0.807726,0.480651,0.311772,0.807635,0.0476862,0.97771,0.866858,0.233524,0.334556,0.366209,0.373025,0.720202,0.294761,0.26476,0.891129,0.874168,0.877616,0.683721,0.27594,0.141101,0.981968,0.764126,0.763994,0.825715,0.184324,0.715895,0.0514801,0.274862,0.547222,0.967471,0.301817,0.0720238,0.254857,0.865353,0.0858532,0.332156,0.100097,0.197607,0.407414,0.308352,0.392782,0.233994,0.870485,0.0233492,0.372488,0.926289,0.66576,0.927866,0.840508,0.428469,0.993565,0.316483,0.582908,0.49062,0.657606,0.841089,0.395258,0.963111,0.0103234,0.552271,0.825262,0.980843,0.300473,0.387202,0.864365,0.581694,0.507737,0.803565,0.754327,0.916715,0.432321,0.837737,0.597754,0.0807149,0.236492,0.514242,0.908793,0.226144,0.932657,0.799772,0.423115,0.144652,0.0980846,0.93714,0.265011,0.651899,0.475131,0.303049,0.385331,0.674544,0.983274,0.352484,0.275879,0.219388,0.00757641,0.242456,0.750765,0.910434,0.025404,0.539118,0.457031,0.436224,0.576947,0.47848,0.0567572,0.314765,0.882312,0.494933,0.0844857,0.629654,0.0875487,0.536585,0.425301,0.542326,0.304919,0.194106,0.603612,0.962959,0.60539,0.61763,0.18272,0.844312,0.161692,0.79209,0.747514,0.890334,0.0294998,0.703473,0.785287,0.561441,0.826033,0.891122,0.765605,0.64554,0.551629,0.95452,0.550236,0.30562,0.961316,0.937372,0.377987,0.92576,0.382483,0.841404,0.462715,0.794472,0.319017,0.846033,0.471356,0.21286,0.928312,0.20787,0.353787,0.589112,0.469048,0.19762,0.749667,0.0902619,0.0408062,0.715115,0.156423,0.183157,0.0766893,0.163155,0.83235,0.870919,0.0323232,0.110489,0.868663,0.98358,0.316395,0.473174,0.115505,0.325675,0.751483,0.307387,0.708866,0.475124,0.113526,0.613578,0.164093,0.240635,0.685063,0.135281,0.959607,0.820531,0.525456,0.799072,0.919247,0.476902,0.340595,0.62604,0.898614,0.81647,0.0411639,0.502102,0.0109363,0.957099,0.182488,0.648536,0.75517,0.185156,0.116958,0.744633,0.809991,0.203512,0.935589,0.830696,0.797943,0.967001,0.77919,0.538968,0.768045,0.345303,0.900229,0.816538,0.122329,0.440284,0.322186,0.207909,0.68559,0.731143,0.352423,0.320652,0.977877,0.328303,0.369075,0.125355,0.713073,0.784235,0.0860708,0.730071,0.157075,0.917703,0.691413,0.539877,0.926086,0.249822,0.702143,0.7685,0.799984,0.198892,0.928978,0.672088,0.404882,0.396847,0.823217,0.955466,0.310767,0.681399,0.139758,0.41301,0.461478,0.905745,0.381881,0.455326,0.537031,0.735729,0.708064,0.182243,0.555399,0.799581,0.0895118,0.215548,0.0680008,0.374474,0.87614,0.341854,0.691313,0.326939,0.331289,0.209817,0.00821435,0.511458,0.578953,0.249061,0.252387,0.987617,0.726587,0.909157,0.374617,0.520507,0.379735,0.805437,0.816413,0.234996,0.614559,0.381472,0.707039,0.206678,0.548223,0.100134,0.509311,0.928177,0.500828,0.322782,0.58935,0.738658,0.354636,0.503088,0.734571,0.816087,0.397756,0.664463,0.94202,0.0525378,0.406085,0.0879232,0.744341,0.427364,0.306714,0.739009,0.7262,0.266987,0.935214,0.0399482,0.729636,0.672987,0.561402,0.411887,0.28526,0.361065,0.162382,0.273148,0.0880044,0.786086,0.424323,0.628756,0.684344,0.147712,0.284793,0.841673,0.655539,0.188363,0.447905,0.902481,0.200344,0.228794,0.43734,0.591565,0.450439,0.571481,0.825538,0.359349,0.919489,0.915323,0.197814,0.912822,0.0533282,0.197979,0.517084,0.406364,0.10668,0.762944,0.132538,0.532983,0.211921,0.911462,0.312572,0.944326,0.479426,0.392066,0.26671,0.298328,0.507326,0.371605,0.560859,0.82602,0.231733,0.445305,0.165074,0.61807,0.335247,0.678326,0.43992,0.556535,0.193163,0.345797,0.0710741,0.829836,0.657613,0.947084,0.998774,0.563526,0.823199,0.183586,0.100156,0.123529,0.862592,0.564462,0.654873,0.0257975,0.408214,0.212844,0.263044,0.0907556,0.0467703,0.642815,0.727882,0.767705,0.540821,0.353352,0.385367,0.877754,0.386584,0.597523,0.431794,0.157051,0.362578,0.647828,0.942344,0.465019,0.049666,0.637545,0.364973,0.927909,0.678104,0.825031,0.929863,0.887346,0.734284,0.58885,0.0498745,0.82461,0.472116,0.396624,0.938789,0.304103,0.723964,0.932758,0.0158277,0.961862,0.259915,0.392913,0.839075,0.68754,0.983247,0.98122,0.172837,0.417029,0.835682,0.318578,0.466156,0.230553,0.246451,0.884689,0.183688,0.247851,0.184395,0.454962,0.681412,0.520258,0.132798,0.340427,0.770028,0.252674,0.0630981,0.0130708,0.213153,0.853573,0.983752,0.602245,0.942073,0.879892,0.829913,0.971829,0.0870389,0.791717,0.218248,0.894611,0.740497,0.1228,0.238275,0.981911,0.891039,0.468929,0.755075,0.773985,0.888618,0.561322,0.840129,0.833051,0.492971,0.482611,0.383372,0.416581,0.603153,0.0875548,0.137304,0.107458,0.262468,0.481876,0.39277,0.310297,0.235805,0.933925,0.793156,0.633447,0.869314,0.988897,0.666403,0.246868,0.16004,0.723533,0.628321,0.383394,0.0711359,0.279902,0.750308,0.718962,0.617313,0.766145,0.984219,0.435848,0.563131,0.473143,0.841215,0.925235,0.0852863,0.938362,0.824157,0.896893,0.604858,0.653668,0.690118,0.453259,0.282978,0.99163,0.0846795,0.0326564,0.741228,0.657306,0.909556,0.176553,0.739697,0.365753,0.804483,0.878991,0.990159,0.658823,0.885616,0.33801,0.203394,0.87219,0.774027,0.734391,0.464001,0.873285,0.332783,0.739529,0.810449,0.895009,0.639694,0.310903,0.700878,0.8729,0.345026,0.647328,0.869039,0.730744,0.220527,0.00723177,0.950583,0.7995,0.897603,0.320193,0.771851,0.459449,0.545447,0.0256023,0.328399,0.459587,0.359482,0.0861667,0.313648,0.218446,0.75646,0.444842,0.3859,0.651985,0.566043,0.223511,0.00947082,0.363782,0.676281,0.465999,0.816807,0.799409,0.22331,0.309102,0.913262,0.308304,0.331447,0.863226,0.708031,0.958017,0.612039,0.744895,0.961189,0.610041,0.517685,0.0276365,0.418039,0.38111,0.268765,0.623267,0.146675,0.212318,0.0438111,0.473151,0.695563,0.31667,0.687327,0.475142,0.594942,0.644249,0.860707,0.612177,0.893926,0.253283,0.0774147,0.348432,0.356892,0.925523,0.302407,0.247587,0.867445,0.890215,0.287815,0.728112,0.321681,0.29038,0.425511,0.264793,0.801428,0.178955,0.85307,0.0164704,0.513937,0.258758,0.347461,0.844472,0.848026,0.973626,0.395687,0.163361,0.855823,0.443594,0.745753,0.300572,0.733933,0.804091,0.179975,0.134084,0.661544,0.679434,0.287944,0.913459,0.184814,0.6342,0.587552,0.976641,0.585701,0.15788,0.338109,0.0120723,0.728794,0.972618,0.981895,0.0113314,0.880591,0.104738,0.303524,0.928184,0.971988,0.735439,0.669876,0.012915,0.286885,0.0288509,0.464201,0.190682,0.972013,0.291427,0.517476,0.0751646,0.67269,0.0833143,0.307745,0.968794,0.939302,0.637166,0.716521,0.763448,0.277593,0.937477,0.963639,0.375596,0.252531,0.53556,0.918208,0.58528,0.20452,0.43313,0.806806,0.315075,0.553431,0.235478,0.264808,0.399619,0.297965,0.643458,0.227624,0.0498678,0.973295,0.703335,0.320006,0.0599698,0.455459,0.976495,0.0361416,0.690564,0.31017,0.174516,|0.866074,0.976977,0.328213,0.186502,0.756153,0.983965,0.371563,0.750522,0.996664,0.110482,0.388096,0.757918,0.143387,0.973777,0.0834539,0.848548,0.402811,0.0733771,0.734647,0.543032,0.119508,0.312995,0.0795777,0.123372,0.244593,0.734509,0.260687,0.943501,0.486468,0.878904,0.0770373,0.261862,0.22086,0.49647,0.687735,0.206429,0.927469,0.603912,0.610053,0.136742,0.887983,0.819802,0.351724,0.755839,0.0776776,0.551817,0.782837,0.435289,0.71447,0.415051,0.0562929,0.868696,0.633168,0.670129,0.267383,0.908054,0.216223,0.227959,0.179268,0.269685,0.213103,0.513022,0.258942,0.848347,0.622072,0.314306,0.876704,0.998358,0.0192501,0.756024,0.103341,0.778792,0.175632,0.13607,0.729271,0.230449,0.439071,0.0245365,0.633694,0.754572,0.882401,0.0386965,0.626548,0.385482,0.949098,0.29059,0.685092,0.947147,0.757571,0.130215,0.0394112,0.345609,0.942293,0.844804,0.762752,0.285246,0.805131,0.147296,0.99138,0.512886,0.515924,0.742391,0.53146,0.952186,0.409292,0.257963,0.0742046,0.467777,0.183123,0.298074,0.189317,0.124367,0.471833,0.285231,0.139173,0.453742,0.263373,0.548849,0.292838,0.156483,0.49501,0.822043,0.797745,0.237847,0.79454,0.88537,0.226076,0.761094,0.650889,0.0832225,0.454031,0.773388,0.563955,0.76342,0.15728,0.654895,0.402334,0.277878,0.313947,0.759894,0.236976,0.175841,0.689368,0.235806,0.463631,0.0899612,0.828508,0.529319,0.0333499,0.123637,0.533441,0.59279,0.105903,0.715699,0.326416,0.696322,0.595526,0.428544,0.696045,0.889319,0.912414,0.470295,0.069634,0.506025,0.083554,0.473604,0.0459961,0.402986,0.68449,0.381244,0.684668,0.723389,0.108422,0.106633,0.642927,0.577306,0.790568,0.330503,0.567084,0.348327,0.964774,0.480646,0.225799,0.722783,0.313046,0.302958,0.516524,0.811907,0.921243,0.653031,0.409862,0.677756,0.465742,0.352032,0.670782,0.34051,0.189978,0.11437,0.55957,0.967772,0.202099,0.715998,0.0896617,0.768968,0.52878,0.870636,0.659138,0.500156,0.914049,0.532284,0.536608,0.0703878,0.882477,0.956679,0.860628,0.404613,0.783318,0.679128,0.662388,0.311072,0.699571,0.148508,0.443233,0.572159,0.287838,0.667849,0.416131,0.277532,0.573105,0.845027,0.460185,0.981347,0.0121501,0.643839,0.358831,0.723447,0.416265,0.262789,0.832506,0.961829,0.756501,0.89391,0.158555,0.445019,0.0440651,0.24143,0.40212,0.0708247,0.38824,0.644984,0.462784,0.0998624,0.0172414,0.186694,0.817404,0.521946,0.757562,0.437029,0.531235,0.819752,0.291691,0.23663,0.49778,0.32555,0.717388,0.114514,0.808703,0.147804,0.274414,0.615842,0.936406,0.733094,0.778375,0.536658,0.686102,0.356523,0.818667,0.693786,0.301306,0.699166,0.535515,0.703543,0.870395,0.956429,0.16153,0.635714,0.736388,0.999909,0.374128,0.167249,0.163825,0.732276,0.70381,0.571971,0.937051,0.84357,0.364286,0.276241,0.363976,0.544088,0.565727,0.179953,0.539991,0.178946,0.0785334,0.140049,0.425748,0.567788,0.897101,0.978305,0.107726,0.0722656,0.396657,0.579852,0.238561,0.191449,0.0567877,0.321468,0.28453,0.313087,0.453386,0.297642,0.568682,0.222934,0.0580476,0.424313,0.974261,0.0009951,0.707011,0.349683,0.555634,0.643466,0.87257,0.56409,0.0521113,0.0660436,0.662343,0.506811,0.316519,0.687845,0.26231,0.518935,0.612615,0.0916973,0.726023,0.185196,0.454652,0.29673,0.214184,0.943264,0.777662,0.950007,0.647474,0.33384,0.00869501,0.565918,0.856603,0.920757,0.472794,0.143502,0.0956025,0.0691101,0.417737,0.865728,0.00565594,0.89757,0.0679402,0.838572,0.716539,0.159785,0.589996,0.596709,0.921601,0.860988,0.327028,0.0802675,0.401353,0.479529,0.080838,0.40546,0.115155,0.609784,0.637062,0.724115,0.205104,0.634045,0.212003,0.49075,0.533903,0.176636,0.269979,0.565324,0.721823,0.08492,0.979771,0.196324,0.11967,0.750633,0.336325,0.285254,0.054463,0.336295,0.710023,0.711921,0.575362,0.593508,0.186918,0.286207,0.423825,0.895815,0.297142,0.558274,0.304806,0.119324,0.350398,0.0147158,0.47862,0.24482,0.00758797,0.181033,0.257749,0.626542,0.670622,0.617009,0.75516,0.976711,0.91574,0.372588,0.0141928,0.194133,0.310366,0.938484,0.196958,0.0394228,0.565718,0.283173,0.143642,0.60472,0.924783,0.134474,0.423893,0.534874,0.715452,0.87045,0.496675,0.544511,0.901125,0.994009,0.702207,0.102017,0.575563,0.267416,0.879715,0.0507163,0.10403,0.904475,0.210064,0.0674608,0.65438,0.0411254,0.778453,0.696752,0.269536,0.739474,0.60216,0.474273,0.373207,0.821595,0.694746,0.982564,0.876657,0.474225,0.46828,0.930463,0.037649,0.293781,0.639447,0.264054,0.934051,0.493262,0.488782,0.445331,0.562327,0.11622,0.700306,0.272005,0.539939,0.338026,0.872857,0.276422,0.883552,0.183847,0.607199,0.533675,0.857375,0.951449,0.988057,0.66366,0.0155913,0.720836,0.806332,0.764997,0.0249603,0.134949,0.918681,0.764889,0.582324,0.431113,0.108416,0.238872,0.522356,0.38304,0.672525,0.582723,0.653496,0.924583,0.554051,0.0808388,0.924414,0.516744,0.781232,0.441647,0.865342,0.329159,0.383613,0.733952,0.920681,0.254818,0.7133,0.352898,0.085608,0.628456,0.265321,0.217342,0.0901424,0.441952,0.28961,0.207361,0.163197,0.985851,0.347368,0.627573,0.979209,0.272054,0.905393,0.967436,0.649889,0.85729,0.360549,0.925588,0.66861,0.465192,0.780255,0.521389,0.681018,0.214918,0.821376,0.827086,0.372959,0.349509,0.96164,0.802354,0.202964,0.458949,0.562443,0.233184,0.160565,0.70852,0.49011,0.477304,0.394639,0.844192,0.333158,0.193372,0.310783,0.792833,0.785592,0.683062,0.0839477,0.946028,0.139019,0.0911359,0.522833,0.319541,0.901742,0.602528,0.574026,0.277642,0.0159129,0.372969,0.225795,0.639929,0.93602,0.162363,0.851575,0.940495,0.0302416,0.534724,0.477811,0.176337,0.170058,0.0413244,0.109102,0.660662,0.698869,0.802064,0.747162,0.62938,0.0382355,0.947225,0.540466,0.618231,0.520995,0.883487,0.923107,0.0893865,0.292251,0.313901,0.192189,0.748479,0.718316,0.979554,0.0828957,0.243242,0.482412,0.651374,0.628893,0.18782,0.526273,0.143589,0.91309,0.356736,0.0235667,0.807021,0.882146,0.426933,0.731942,0.90284,0.819019,0.38829,0.519644,0.0109462,0.098428,0.496583,0.894551,0.665557,0.149021,0.0681282,0.694947,0.313717,0.804013,0.055968,0.485858,0.196586,0.770273,0.844608,0.40541,0.255113,0.366247,0.304031,0.463453,0.773845,0.611451,0.224582,0.640394,0.350323,0.405556,0.11444,0.0658044,0.866425,0.571646,0.393001,0.115955,0.432951,0.724028,0.297561,0.581894,0.995754,0.508548,0.776329,0.30945,0.619204,0.903666,0.780202,0.294894,0.117983,0.0805187,0.50539,0.340091,0.949176,0.624159,0.422778,0.968209,0.353436,0.753932,0.238988,0.0638995,0.439176,0.898187,0.276154,0.733186,0.155868,0.464489,0.0111681,0.670421,0.702169,0.792023,0.0872113,0.420013,0.980683,0.0222315,0.273605,0.196154,0.0131665,0.110531,0.848339,0.743335,0.216051,0.678221,0.8155,0.378971,0.249701,0.549067,0.6087,0.198967,0.57464,0.825049,0.0852222,0.708094,0.990682,0.219822,0.394967,0.552821,0.192447,0.0155544,0.314483,0.119588,0.46715,0.59986,0.028941,0.449305,0.730087,0.781123,0.916288,0.346314,0.72406,0.0634059,0.138151,0.134573,0.804653,0.634211,0.19834,0.461793,0.832203,0.402291,0.465311,0.00833529,0.285537,0.761713,0.767016,0.365519,0.836069,0.783024,0.968434,0.940182,0.503786,0.196919,0.348867,0.757253,0.658847,0.752115,0.486352,0.968376,0.203054,0.244377,0.41155,0.136572,0.473325,0.993335,0.539292,0.536795,0.841112,0.954855,0.915118,0.35275,0.950426,0.0318474,0.00959027,0.952386,0.72982,0.0195056,0.503247,0.910567,0.405614,0.149345,0.608824,0.0526488,0.0140269,0.589191,0.934803,0.0904058,0.582928,0.11856,0.0150092,0.967056,0.200855,0.276819,0.16875,0.192376,0.0369657,0.366675,0.265761,0.0565199,0.11568,0.0521024,0.960701,0.110287,0.7365,0.055028,0.813814,0.832027,0.216147,0.17168,0.644686,0.763487,0.319826,0.59462,0.10525,0.794029,0.654711,0.481156,0.628256,0.95182,0.475171,0.366355,0.48946,0.346937,0.687086,0.0716897,0.582133,0.18864,0.246209,0.0477536,0.300987,0.00642818,0.832324,0.841304,0.892746,0.969999,0.941667,0.438154,0.65125,0.0167285,0.351873,0.548239,0.507042,0.531962,0.770192,0.51549,0.404262,0.0247668,0.356191,0.658443,0.600282,0.745709,0.235424,0.647057,0.683497,0.781699,0.894286,0.988233,0.0420592,0.225166,0.789294,0.851093,0.770585,0.816675,0.209207,0.789358,0.529707,0.00757241,0.120918,0.292072,0.722866,0.0296029,0.499724,0.751168,0.836048,0.0873623,0.502144,0.507469,0.59612,0.260775,0.816292,0.284791,0.641567,0.205915,0.76868,0.661697,0.420381,0.901891,0.766028,0.497986,0.364037,0.636935,0.676988,0.167156,0.894844,0.931699,0.598241,0.859641,0.313221,0.686695,0.573661,0.627505,0.23068,0.150392,0.279322,0.0327933,0.0921488,0.279745,0.485562,0.0347078,0.161467,0.326697,0.370495,0.736336,0.291434,0.739159,0.733008,0.96173,0.961884,0.265934,0.988527,0.57001,0.487403,0.986866,0.497071,0.953746,0.19844,0.877531,0.313139,0.0257334,0.80514,0.81884,0.422496,0.754284,0.0583717,0.777284,0.184661,0.36208,0.194996,0.171832,0.978615,0.474774,0.494235,0.703535,0.682895,0.268241,0.620818,0.569383,0.296469,0.349106,0.494842,0.159025,0.282984,0.337868,0.261834,0.108401,0.741317,0.278313,0.790746,0.974495,0.136307,0.080562,0.509037,0.755983,0.930717,0.542266,0.659303,0.574252,0.503326,0.666212,0.925879,0.567162,0.273405,0.234308,0.509857,0.13092,0.0908238,0.00342882,0.475953,0.63366,0.379657,0.302356,0.0942535,0.341554,0.567903,0.343722,0.754787,|0.981897,0.109995,0.177649,0.186498,0.707763,0.0909577,0.147768,0.380976,0.171477,0.736827,0.61554,0.598754,0.11238,0.0195798,0.327013,0.377025,0.189901,0.37087,0.981902,0.556797,0.630142,0.696543,0.0483927,0.572572,0.569898,0.496372,0.175089,0.588423,0.974085,0.485251,0.183388,0.901971,0.71013,0.0939565,0.357585,0.596296,0.562516,0.826342,0.542331,0.485058,0.156166,0.110819,0.30274,0.211142,0.133592,0.725896,0.973466,0.707099,0.313583,0.453169,0.479126,0.945088,0.894496,0.126814,0.91427,0.568521,0.513344,0.743054,0.527994,0.194187,0.211314,0.736317,0.0417472,0.223235,0.475883,0.213172,0.737071,0.175088,0.670331,0.250499,0.00130171,0.962531,0.661136,0.538516,0.818149,0.541877,0.619286,0.0490854,0.518701,0.801457,0.530663,0.866258,0.815863,0.643303,0.692268,0.564176,0.911363,0.508284,0.0660582,0.26778,0.182653,0.589278,0.927325,0.30021,0.907814,0.434053,0.696945,0.103341,0.0113204,0.545993,0.338845,0.452957,0.378569,0.543248,0.671644,0.413213,0.565383,0.700697,0.0515085,0.531031,0.503804,0.368647,0.0315502,0.306439,0.145874,0.073456,0.81931,0.642429,0.787235,0.905886,0.000607133,0.889625,0.574285,0.167319,0.352345,0.8566,0.827634,0.257827,0.446506,0.581121,0.815722,0.654243,0.0924199,0.598811,0.378721,0.628349,0.400523,0.396912,0.134515,0.78437,0.616938,0.916446,0.388047,0.828467,0.420392,0.00812298,0.304684,0.590715,0.665853,0.144962,0.579237,0.335825,0.874213,0.0844523,0.971816,0.119662,0.871276,0.352778,0.157796,0.898737,0.449429,0.684114,0.688166,0.377885,0.451497,0.534139,0.33661,0.38338,0.198725,0.315025,0.507133,0.636721,0.816787,0.100768,0.810462,0.165573,0.616849,0.203995,0.874013,0.831346,0.0079096,0.0203018,0.398019,0.707192,0.153276,0.313605,0.0924608,0.566667,0.0659069,0.737422,0.688268,0.220499,0.766175,0.701302,0.57542,0.32672,0.912484,0.875674,0.32025,0.082839,0.754826,0.597049,0.304782,0.0623376,0.590809,0.763551,0.741273,0.313829,0.131685,0.172751,0.937048,0.0448905,0.594128,0.769395,0.374218,0.578741,0.93163,0.982799,0.672741,0.949026,0.0276533,0.0050481,0.645597,0.508082,0.277305,0.0285166,0.516024,0.993517,0.777685,0.485244,0.57688,0.0868923,0.678248,0.825536,0.76591,0.525596,0.962008,0.0430355,0.875208,0.54337,0.0805202,0.820662,0.62952,0.0534099,0.035718,0.0435755,0.50666,0.122717,0.726377,0.680554,0.787212,0.562348,0.812206,0.978786,0.831304,0.53801,0.698311,0.184874,0.0571082,0.424294,0.939313,0.325775,0.136209,0.903174,0.950423,0.0606181,0.607312,0.360431,0.395891,0.693401,0.225006,0.181627,0.888266,0.411745,0.701035,0.866618,0.445105,0.439452,0.859975,0.323541,0.21235,0.85355,0.934114,0.508499,0.103572,0.365178,0.934051,0.132957,0.403156,0.778696,0.931932,0.820732,0.657954,0.0200366,0.933284,0.995728,0.607349,0.802687,0.462095,0.733278,0.338211,0.153942,0.343061,0.411259,0.993939,0.166319,0.71462,0.692484,0.543664,0.915621,0.0605795,0.0743225,0.274427,0.599555,0.796903,0.908032,0.823458,0.134929,0.616815,0.647495,0.430879,0.771184,0.0620034,0.311622,0.856709,0.941881,0.801456,0.511299,0.609792,0.0855375,0.65433,0.130912,0.0346764,0.664799,0.298689,0.785943,0.0589556,0.441081,0.647274,0.0926424,0.262246,0.71201,0.232502,0.208553,0.341776,0.28179,0.608736,0.805937,0.988282,0.34105,0.211563,0.972774,0.02366,0.276069,0.133375,0.327351,0.530233,0.363403,0.565849,0.193053,0.0831246,0.523851,0.315394,0.903648,0.691001,0.434221,0.0996675,0.434134,0.390235,0.88041,0.00935221,0.521792,0.0012719,0.980436,0.811287,0.0449664,0.229339,0.839521,0.524509,0.401807,0.950676,0.316024,0.0146492,0.214449,0.433341,0.475335,0.251047,0.058034,0.760843,0.176739,0.897437,0.716535,0.336457,0.26141,0.513947,0.0359799,0.11384,0.898075,0.589952,0.33852,0.451427,0.908501,0.0294947,0.252087,0.902,0.0521877,0.0914743,0.641705,0.392902,0.559639,0.780644,0.363574,0.338177,0.780977,0.0596215,0.207158,0.504214,0.197666,0.74128,0.732649,0.558306,0.264577,0.180334,0.819953,0.875587,0.657579,0.661965,0.834638,0.71172,0.250804,0.439457,0.0166765,0.809732,0.185941,0.0968361,0.945522,0.486513,0.704759,0.114203,0.810221,0.77361,0.882734,0.338302,0.497241,0.03413,0.25486,0.65972,0.589845,0.464623,0.366837,0.0807559,0.412252,0.487325,0.978921,0.395414,0.0230405,0.65468,0.588106,0.548711,0.242656,0.721426,0.746889,0.26322,0.579996,0.350247,0.735411,0.991494,0.584153,0.478955,0.751716,0.270244,0.629624,0.698133,0.496197,0.812025,0.650889,0.110738,0.775417,0.164729,0.389919,0.168461,0.332515,0.248003,0.548982,0.430086,0.429057,0.840427,0.938892,0.341234,0.837047,0.279967,0.765442,0.815871,0.358987,0.0340339,0.10101,0.271999,0.666147,0.831647,0.719641,0.419897,0.467921,0.794102,0.198604,0.514826,0.00581521,0.41727,0.78476,0.84394,0.912981,0.0132535,0.625528,0.691879,0.652048,0.149058,0.290139,0.787496,0.496455,0.536392,0.48144,0.854695,0.297735,0.102459,0.901179,0.952127,0.0731534,0.395187,0.684056,0.295808,0.844998,0.0229924,0.0779403,0.0886831,0.610035,0.98806,0.51113,0.983284,0.0298737,0.0436063,0.11435,0.371561,0.723099,0.692601,0.865916,0.912355,0.338883,0.80866,0.757131,0.956204,0.907402,0.28165,0.388185,0.168147,0.50808,0.777722,0.448509,0.797412,0.913862,0.57827,0.431157,0.544133,0.805928,0.970422,0.843091,0.426752,0.0991713,0.660613,0.566657,0.173588,0.51391,0.888331,0.455323,0.192649,0.331737,0.144272,0.282455,0.00361878,0.142798,0.972336,0.400155,0.448133,0.495116,0.409148,0.806659,0.920574,0.259513,0.622616,0.203116,0.897629,0.62521,0.563867,0.968286,0.131256,0.906275,0.305204,0.735231,0.24439,0.0830381,0.462725,0.909326,0.0823197,0.149487,0.179717,0.631532,0.831626,0.692977,0.935566,0.933991,0.39597,0.593888,0.628649,0.734154,0.315939,0.940965,0.0634792,0.0244526,0.826447,0.330354,0.0156041,0.925238,0.956502,0.638023,0.790011,0.528759,0.421694,0.475375,0.146041,0.63941,0.366645,0.596257,0.771021,0.915438,0.811429,0.140141,0.872423,0.708248,0.393352,0.853275,0.323445,0.298279,0.947511,0.387492,0.352007,0.611021,0.00853211,0.736892,0.665237,0.406228,0.493254,0.846937,0.732795,0.519975,0.813408,0.119713,0.20637,0.39115,0.666844,0.826073,0.69403,0.284109,0.700667,0.300452,0.485155,0.891006,0.664102,0.856757,0.899693,0.330895,0.366948,0.721574,0.827298,0.828624,0.326917,0.309337,0.99759,0.620004,0.279907,0.926345,0.618421,0.0203513,0.563731,0.791326,0.137839,0.709695,0.671435,0.177622,0.459741,0.666596,0.361733,0.488921,0.504416,0.802656,0.432835,0.599251,0.666146,0.830466,0.840249,0.74531,0.0961141,0.907522,0.704551,0.368223,0.110921,0.755685,0.211712,0.359587,0.0844758,0.0221882,0.779597,0.51967,0.245996,0.85653,0.773227,0.483385,0.0383071,0.96348,0.984489,0.839523,0.962127,0.639943,0.191317,0.177177,0.846967,0.614457,0.475922,0.103743,0.0805541,0.743896,0.339602,0.619874,0.904694,0.417011,0.410071,0.169585,0.39522,0.628426,0.0689463,0.498923,0.168922,0.762905,0.149731,0.735123,0.0613511,0.149774,0.387051,0.543782,0.990495,0.194672,0.0250639,0.878552,0.789253,0.315225,0.839417,0.855861,0.579821,0.391763,0.299451,0.876824,0.912406,0.681726,0.627125,0.641337,0.446331,0.815558,0.886356,0.31777,0.591798,0.783933,0.181317,0.488859,0.661622,0.238789,0.527144,0.287717,0.263303,0.551751,0.725257,0.373317,0.575806,0.58572,0.245043,0.942919,0.710403,0.163303,0.696983,0.993658,0.324076,0.831994,0.784631,0.14876,0.912691,0.291134,0.362244,0.879301,0.537129,0.190223,0.122568,0.29036,0.432061,0.876059,0.0301991,0.240696,0.16811,0.0434997,0.888478,0.62352,0.150971,0.193402,0.93782,0.595395,0.828131,0.704466,0.394911,0.299293,0.842105,0.730336,0.157644,0.383599,0.745659,0.166786,0.0474544,0.673662,0.963912,0.513377,0.890488,0.535664,0.032845,0.39649,0.230909,0.419908,0.327877,0.118781,0.00373316,0.692159,0.887764,0.830408,0.676912,0.202762,0.0210424,0.743092,0.611197,0.759662,0.301533,0.624301,0.326171,0.243467,0.495202,0.0397562,0.603388,0.57035,0.554381,0.0505418,0.245816,0.0134206,0.259143,0.799211,0.563036,0.700364,0.798606,0.722021,0.398731,0.959884,0.922609,0.421227,0.489433,0.650038,0.422764,0.227736,0.185813,0.720493,0.319841,0.795425,0.850426,0.633226,0.543106,0.210558,0.311001,0.189945,0.114448,0.414273,0.302987,0.783464,0.332575,0.817532,0.0643558,0.411909,0.833441,0.797654,0.800277,0.0279507,0.941507,0.0877223,0.117148,0.597695,0.974213,0.500627,0.676195,0.676581,0.388143,0.329207,0.25427,0.0999047,0.804913,0.208823,0.136854,0.0616065,0.25535,0.0386646,0.44399,0.414536,0.447855,0.474718,0.0359963,0.163074,0.899917,0.042013,0.55961,0.340558,0.792866,0.545965,0.268927,0.29622,0.156488,0.0170454,0.344666,0.205762,0.314594,0.822511,0.108046,0.254449,0.277744,0.908411,0.367885,0.91126,0.547594,0.309839,0.876591,0.284503,0.342012,0.788961,0.476983,0.491399,0.419698,0.543251,0.45249,0.0118409,0.917273,0.522676,0.857858,0.41439,0.807024,0.433835,0.206675,0.0825281,0.917254,0.765636,0.200453,0.494517,0.390186,0.438924,0.441327,0.999202,0.81437,0.639027,0.255295,0.342989,0.97973,0.378671,0.641945,0.142399,0.666133,0.233689,0.554993,0.696747,0.103907,0.685881,0.424173,0.255556,0.435125,0.179644,0.133129,0.736846,0.869345,0.386368,0.822908,0.856133,0.110105,0.957781,0.820837,0.269212,0.322143,0.30105,0.517976,0.106433,0.224217,0.822113,0.209621,0.896673,0.644611,0.0432563,|0.983434,0.012187,0.355876,0.0994407,0.383514,0.00532931,0.0729781,0.919609,0.72156,0.779161,0.719376,0.484195,0.53059,0.0590425,0.0503251,0.628748,0.378876,0.149872,0.228037,0.692766,0.642798,0.979267,0.963538,0.539812,0.648527,0.418321,0.437384,0.328393,0.655198,0.433945,0.378575,0.884425,0.196366,0.243921,0.79486,0.00887179,0.410225,0.702768,0.242058,0.56891,0.942245,0.533611,0.163606,0.49173,0.802717,0.853546,0.4017,0.939432,0.558971,0.246858,0.848904,0.532346,0.9501,0.544107,0.108871,0.707465,0.307116,0.131261,0.388172,0.00609684,0.0540263,0.211234,0.550056,0.532709,0.607721,0.958071,0.303069,0.86152,0.310158,0.228508,0.0593058,0.610847,0.305416,0.62138,0.712629,0.641367,0.214879,0.648634,0.472323,0.159197,0.8579,0.788152,0.966912,0.592824,0.0911863,0.360899,0.522045,0.659259,0.0733284,0.149762,0.976092,0.692246,0.0265867,0.342817,0.877027,0.442505,0.171817,0.28743,0.354215,0.0385065,0.130494,0.900432,0.771026,0.970534,0.0402849,0.141862,0.309134,0.739592,0.2229,0.735169,0.0481182,0.253491,0.446948,0.638796,0.665699,0.480841,0.530659,0.192905,0.471956,0.669376,0.318445,0.770493,0.767968,0.346187,0.127383,0.112774,0.0170059,0.686906,0.18079,0.250229,0.123626,0.544267,0.0577313,0.523326,0.804098,0.316415,0.612333,0.843136,0.851514,0.172236,0.37115,0.448084,0.284808,0.693562,0.321865,0.734585,0.00981575,0.645974,0.33396,0.00457454,0.33252,0.21544,0.991187,0.108363,0.711682,0.641085,0.178611,0.290857,0.688851,0.270778,0.785856,0.869347,0.784911,0.134174,0.979888,0.879196,0.209607,0.453763,0.247265,0.462621,0.0543537,0.844395,0.780071,0.247634,0.627916,0.916047,0.529029,0.174007,0.0664036,0.441928,0.524098,0.457403,0.965536,0.696378,0.952171,0.170631,0.183472,0.107016,0.870685,0.315799,0.0302032,0.759481,0.31413,0.126489,0.672298,0.557896,0.804842,0.799489,0.538605,0.390647,0.104435,0.788973,0.313837,0.0611938,0.613491,0.316706,0.412114,0.59013,0.774805,0.122926,0.733157,0.97465,0.211171,0.410018,0.262629,0.145467,0.0686446,0.123098,0.663085,0.15899,0.93429,0.71363,0.374526,0.453307,0.239624,0.141913,0.208737,0.802178,0.0867864,0.942544,0.382787,0.942152,0.381816,0.0129075,0.374617,0.228337,0.474197,0.094106,0.659443,0.195698,0.811967,0.233648,0.0417952,0.761315,0.141766,0.271604,0.198822,0.10116,0.00250071,0.884966,0.739263,0.400649,0.872867,0.90772,0.738199,0.528167,0.426527,0.00831759,0.893208,0.60606,0.0889817,0.734373,0.383466,0.145042,0.540672,0.310744,0.190263,0.0199102,0.0283742,0.666995,0.531989,0.839544,0.830717,0.618955,0.00414526,0.40119,0.308683,0.423796,0.481955,0.75031,0.780254,0.27541,0.713164,0.569654,0.213266,0.890304,0.548957,0.456571,0.759376,0.910727,0.575466,0.831082,0.803297,0.401582,0.492665,0.900965,0.492246,0.539113,0.750439,0.0804603,0.0597848,0.0511252,0.0241038,0.423073,0.226969,0.165285,0.759064,0.321653,0.0572476,0.48063,0.177539,0.51521,0.792302,0.272688,0.688298,0.600497,0.660499,0.557725,0.814839,0.716789,0.26728,0.125075,0.34689,0.732446,0.840454,0.0703756,0.256176,0.77193,0.306219,0.241549,0.955502,0.368406,0.557898,0.0379466,0.189668,0.55306,0.755198,0.471508,0.902363,0.38505,0.461432,0.27496,0.0124548,0.400634,0.315793,0.948803,0.244592,0.287219,0.627049,0.750493,0.469151,0.482802,0.0659651,0.783604,0.603225,0.374873,0.567126,0.437162,0.574295,0.143997,0.0846247,0.960786,0.564058,0.927776,0.943618,0.66553,0.438569,0.141396,0.818563,0.570149,0.822675,0.729753,0.541453,0.432859,0.768629,0.708159,0.794052,0.302733,0.959867,0.173432,0.950251,0.690248,0.251027,0.517084,0.259219,0.315177,0.110657,0.602304,0.0744227,0.726826,0.611751,0.851492,0.0349901,0.587083,0.348117,0.15068,0.293777,0.0633529,0.080188,0.854424,0.109564,0.0580885,0.690147,0.557394,0.586371,0.457502,0.552175,0.664277,0.962844,0.492731,0.261368,0.418458,0.712462,0.466913,0.931367,0.418004,0.403844,0.944667,0.525931,0.7933,0.553363,0.610079,0.308736,0.690276,0.593588,0.616899,0.566612,0.786297,0.767998,0.153208,0.0462863,0.194374,0.878458,0.101127,0.249699,0.311526,0.445491,0.245985,0.973797,0.745114,0.559745,0.667559,0.123544,0.793747,0.365599,0.119124,0.173998,0.87396,0.271186,0.660035,0.74443,0.621053,0.649044,0.0964626,0.705679,0.972032,0.438442,0.84802,0.753057,0.0885352,0.817339,0.221269,0.86893,0.409886,0.402313,0.957658,0.542238,0.696817,0.69581,0.874085,0.792441,0.150938,0.869042,0.821466,0.718377,0.0855498,0.231662,0.50111,0.223925,0.81885,0.70013,0.27591,0.753084,0.896995,0.201329,0.789954,0.295739,0.237658,0.736187,0.702159,0.789563,0.757027,0.297611,0.60784,0.827356,0.238573,0.363241,0.00780404,0.889899,0.303071,0.549326,0.513899,0.0134135,0.352739,0.907829,0.200848,0.737091,0.676064,0.209447,0.0769256,0.54882,0.467178,0.508031,0.55927,0.168215,0.154079,0.375261,0.707021,0.236847,0.139935,0.591408,0.0182306,0.652215,0.773161,0.813902,0.145896,0.699898,0.483199,0.968446,0.357565,0.0480304,0.594859,0.803073,0.586718,0.192534,0.246971,0.543082,0.683343,0.00313318,0.632596,0.510265,0.626419,0.307123,0.634086,0.445747,0.416311,0.0169366,0.606737,0.396459,0.661322,0.308819,0.671276,0.637955,0.739108,0.137852,0.422331,0.725467,0.108901,0.258654,0.458958,0.514378,0.824587,0.490882,0.617648,0.389985,0.557148,0.235775,0.347748,0.361325,0.370333,0.127807,0.722203,0.7419,0.596012,0.270277,0.0260014,0.985206,0.443008,0.65602,0.275781,0.0717849,0.921119,0.664465,0.121611,0.131317,0.894399,0.671063,0.113823,0.595212,0.518756,0.947338,0.244785,0.380148,0.0414903,0.364851,0.997087,0.972526,0.552958,0.0287996,0.537182,0.817004,0.981727,0.2152,0.605984,0.292395,0.935149,0.686033,0.785724,0.831286,0.976763,0.712555,0.144577,0.282216,0.714292,0.320707,0.468077,0.949123,0.790895,0.968256,0.549177,0.136321,0.81705,0.288677,0.768186,0.584307,0.715367,0.424921,0.326672,0.850708,0.23647,0.0412438,0.713746,0.71302,0.568218,0.985753,0.257969,0.670251,0.472428,0.948238,0.00850934,0.222551,0.813418,0.641658,0.609469,0.52139,0.893653,0.633653,0.108016,0.267322,0.401826,0.946321,0.169925,0.85083,0.302224,0.220173,0.0403609,0.515961,0.953357,0.130931,0.436592,0.288119,0.918035,0.790797,0.572853,0.749738,0.965768,0.166025,0.275272,0.388342,0.473006,0.365997,0.815374,0.703787,0.375805,0.487734,0.109735,0.793131,0.978662,0.266005,0.738926,0.0362644,0.35013,0.829816,0.357112,0.948694,0.559754,0.363124,0.645056,0.115114,0.00207192,0.27202,0.385132,0.233493,0.689728,0.185957,0.0142829,0.57814,0.718627,0.254956,0.304379,0.0569668,0.440324,0.819315,0.00517309,0.860821,0.163682,0.326234,0.567689,0.479288,0.433813,0.540566,0.260721,0.156764,0.161492,0.820069,0.908377,0.624982,0.468649,0.58852,0.783421,0.217725,0.602251,0.272338,0.678045,0.645599,0.750908,0.786206,0.932931,0.0222839,0.791921,0.03028,0.716793,0.291346,0.0580528,0.595913,0.262006,0.883031,0.699366,0.496516,0.171331,0.621169,0.911691,0.775681,0.0966873,0.925521,0.770188,0.772644,0.881358,0.662284,0.651833,0.365061,0.145954,0.824024,0.215042,0.593702,0.972915,0.672932,0.868476,0.787403,0.59316,0.052583,0.420097,0.477462,0.117359,0.321148,0.877458,0.0640444,0.406846,0.541739,0.320801,0.00765103,0.16029,0.38683,0.32717,0.882939,0.000580013,0.524773,0.685104,0.162006,0.0957063,0.507488,0.539373,0.281473,0.606439,0.752683,0.76779,0.692523,0.631859,0.0674513,0.313615,0.692037,0.802544,0.602057,0.347541,0.450198,0.449337,0.915107,0.0353889,0.672043,0.678265,0.862908,0.134486,0.523938,0.0470959,0.841911,0.117229,0.519836,0.260554,0.616445,0.639758,0.122869,0.427401,0.729717,0.324936,0.272327,0.537877,0.259679,0.339791,0.114086,0.26587,0.170359,0.579667,0.648945,0.546128,0.766922,0.305946,0.207551,0.00883061,0.525527,0.675612,0.712109,0.842839,0.8359,0.542741,0.827265,0.160218,0.169327,0.589926,0.355325,0.499192,0.374393,0.437084,0.0323386,0.913035,0.986272,0.968504,0.175949,0.0451902,0.236949,0.624849,0.109061,0.772663,0.461405,0.822508,0.056687,0.649875,0.0106161,0.750179,0.0252901,0.642664,0.888141,0.397504,0.446686,0.764368,0.14328,0.865047,0.534069,0.998743,0.816071,0.591749,0.080041,0.347364,0.0767687,0.309228,0.406059,0.798363,0.560387,0.138074,0.868418,0.238076,0.185655,0.215133,0.215536,0.444352,0.9919,0.397087,0.383354,0.212433,0.231281,0.846562,0.583842,0.669939,0.0871036,0.866304,0.0652667,0.358419,0.735148,0.613488,0.153657,0.395536,0.201058,0.797252,0.57582,0.444428,0.763148,0.546007,0.0345908,0.993321,0.351793,0.199843,0.376577,0.753649,0.491657,0.379689,0.899804,0.96121,0.27881,0.98739,0.893544,0.78188,0.331867,0.114361,0.378236,0.715159,0.518727,0.0931719,0.146757,0.310187,0.819557,0.504957,0.455615,0.105891,0.335259,0.332287,0.0788031,0.512398,0.328739,0.404511,0.869313,0.0205421,0.991486,0.398365,0.751999,0.00103849,0.561836,0.371025,0.843967,0.161578,0.376645,0.995296,0.321723,0.397504,0.879512,0.0284458,0.572671,0.056134,0.794727,0.078206,0.240925,0.17846,0.682986,0.907997,0.294661,0.0652496,0.277828,0.274349,0.80441,0.569533,0.398149,0.308295,0.740708,0.0848293,0.758147,0.470482,0.525539,0.906222,0.898222,0.59024,0.981693,0.721783,0.150056,0.795615,0.906314,0.292075,0.0128875,0.866457,0.897741,0.438538,0.966099,0.70184,0.0660715,0.765598,0.800125,0.181683,0.834909,0.889726,0.226368,0.797072,0.320171,0.0915533,|0.357546,0.254833,0.83473,0.514402,0.193425,0.110019,0.236047,0.439834,0.29963,0.356326,0.00522834,0.69747,0.33293,0.0757384,0.245385,0.479513,0.103466,0.323435,0.466089,0.460681,0.553054,0.63033,0.61942,0.733551,0.807765,0.263133,0.19369,0.738344,0.561936,0.625928,0.70478,0.358166,0.623926,0.686123,0.329828,0.721581,0.852083,0.631181,0.847448,0.256502,0.420104,0.687318,0.944079,0.870764,0.701563,0.453909,0.530642,0.0649577,0.615321,0.174933,0.931906,0.0105321,0.770806,0.54746,0.380813,0.445365,0.390551,0.646584,0.341871,0.896893,0.151593,0.138032,0.558096,0.126049,0.106284,0.39897,0.0231809,0.868827,0.952405,0.713378,0.521597,0.505002,0.778264,0.966286,0.110556,0.465833,0.115074,0.38132,0.345973,0.931505,0.0572251,0.00746298,0.0204198,0.542157,0.938938,0.134973,0.166719,0.591573,0.875317,0.606249,0.991713,0.758835,0.365296,0.0932885,0.356762,0.648054,0.242256,0.648551,0.441906,0.679976,0.659014,0.505887,0.434922,0.643349,0.13092,0.855054,0.713217,0.662928,0.426367,0.479405,0.706273,0.752275,0.555459,0.35778,0.802379,0.377608,0.320476,0.083182,0.160455,0.29729,0.014494,0.108468,0.972468,0.286204,0.535261,0.565261,0.103578,0.87698,0.545553,0.324624,0.992194,0.639276,0.457241,0.120845,0.014877,0.0935135,0.241895,0.620262,0.799806,0.510714,0.394452,0.217397,0.273382,0.109631,0.271388,0.356831,0.119469,0.410149,0.997801,0.155827,0.0926046,0.0168013,0.804431,0.128464,0.440958,0.230907,0.0536217,0.0794458,0.809591,0.287751,0.0752901,0.637508,0.590353,0.96709,0.0047695,0.35025,0.38194,0.402911,0.834637,0.146783,0.966283,0.034355,0.164207,0.0361235,0.654571,0.615084,0.29583,0.250785,0.205802,0.35173,0.407575,0.456841,0.750256,0.191421,0.160094,0.45734,0.216812,0.0305735,0.453903,0.408764,0.859164,0.493416,0.612515,0.0815794,0.775035,0.0500466,0.754102,0.566986,0.415631,0.131763,0.626657,0.0133737,0.149468,0.457693,0.959662,0.269993,0.435238,0.383541,0.575086,0.948154,0.925363,0.123208,0.741807,0.247708,0.416203,0.973666,0.834313,0.65048,0.655996,0.735435,0.412563,0.161485,0.732069,0.146943,0.0537239,0.844273,0.0985069,0.972639,0.286053,0.459685,0.569132,0.956236,0.284046,0.490253,0.765532,0.826898,0.833346,0.101246,0.909933,0.772412,0.58373,0.46518,0.53477,0.0185134,0.0553146,0.79887,0.480868,0.418879,0.179062,0.871342,0.334853,0.733293,0.859505,0.321608,0.328272,0.638073,0.455453,0.107624,0.945815,0.167801,0.745475,0.830177,0.921411,0.0269974,0.80599,0.118515,0.592117,0.617323,0.892038,0.304594,0.965847,0.114554,0.64973,0.456408,0.0857948,0.31344,0.889962,0.672945,0.983059,0.814686,0.780688,0.817798,0.707064,0.920304,0.788684,0.312493,0.825671,0.114893,0.130074,0.561682,0.617836,0.265608,0.145507,0.67325,0.768532,0.372508,0.0170515,0.0656334,0.639773,0.854616,0.519452,0.87556,0.142963,0.960959,0.678068,0.720864,0.35377,0.257477,0.0497522,0.618207,0.145662,0.709022,0.291289,0.941949,0.389962,0.644704,0.777743,0.0662102,0.595314,0.397644,0.528402,0.729839,0.332113,0.548672,0.638965,0.732894,0.344609,0.00291866,0.531252,0.560819,0.236233,0.951871,0.757292,0.493972,0.777873,0.507769,0.173258,0.868401,0.716882,0.170184,0.958422,0.385553,0.591513,0.508236,0.564517,0.981279,0.451022,0.398868,0.729585,0.36283,0.153693,0.16435,0.795609,0.808526,0.40179,0.447114,0.198762,0.796399,0.732615,0.636331,0.396873,0.74146,0.954561,0.95818,0.259252,0.860848,0.484177,0.822805,0.952736,0.168537,0.302438,0.340514,0.457351,0.428863,0.039237,0.42422,0.113231,0.580169,0.114485,0.103802,0.591115,0.510498,0.0959117,0.502879,0.974119,0.135475,0.776369,0.505085,0.359062,0.255078,0.754318,0.361103,0.279433,0.0992718,0.530694,0.419873,0.950073,0.858134,0.225852,0.382077,0.708388,0.486895,0.925507,0.00784051,0.512011,0.884304,0.055483,0.871115,0.81178,0.711764,0.890817,0.932101,0.421085,0.65064,0.854592,0.34254,0.409846,0.128354,0.84086,0.581771,0.582792,0.851214,0.199549,0.372902,0.670828,0.0196789,0.64138,0.659672,0.478283,0.0725833,0.203813,0.658787,0.824532,0.615336,0.0984223,0.973058,0.340464,0.976293,0.239736,0.514434,0.193207,0.90107,0.626266,0.782967,0.550399,0.686215,0.0764112,0.976218,0.208846,0.856614,0.752799,0.113021,0.102983,0.929328,0.126677,0.589164,0.46448,0.37705,0.957791,0.580721,0.214473,0.963081,0.0459211,0.40997,0.313248,0.269166,0.289426,0.0296246,0.742999,0.0578862,0.747758,0.580321,0.628161,0.274445,0.341378,0.283077,0.0142538,0.764352,0.658639,0.780213,0.605959,0.685347,0.452865,0.439142,0.76642,0.674954,0.135368,0.402181,0.337159,0.818059,0.672719,0.276598,0.558447,0.860402,0.737771,0.7713,0.354274,0.75345,0.674235,0.31513,0.708948,0.721703,0.428109,0.0556015,0.69985,0.301775,0.676477,0.103605,0.40523,0.230629,0.742897,0.279806,0.306525,0.200617,0.140645,0.553218,0.320978,0.205989,0.575639,0.957596,0.399707,0.917485,0.114337,0.0987213,0.467824,0.966157,0.590256,0.397783,0.939724,0.246562,0.127434,0.247271,0.233807,0.617809,0.712436,0.0426791,0.332399,0.992516,0.194387,0.324763,0.915899,0.869094,0.125237,0.0764993,0.106257,0.784891,0.254612,0.329959,0.260157,0.634585,0.960986,0.738744,0.424284,0.0936149,0.492225,0.219588,0.221307,0.0331274,0.872238,0.0327246,0.00654012,0.39389,0.152058,0.440863,0.241616,0.861014,0.478572,0.370216,0.646714,0.664148,0.800729,0.851798,0.945723,0.496412,0.00538623,0.479833,0.758781,0.849973,0.446806,0.766069,0.382074,0.560669,0.855232,0.549298,0.649164,0.548001,0.410298,0.705955,0.216553,0.393404,0.288768,0.126804,0.366729,0.644524,0.762679,0.393727,0.0425859,0.0731165,0.933694,0.371813,0.0683864,0.867939,0.307312,0.838676,0.965933,0.591726,0.287073,0.232489,0.657327,0.124046,0.638152,0.51178,0.750171,0.774193,0.459458,0.61896,0.667188,0.000594497,0.270042,0.666319,0.481093,0.46531,0.33006,0.298292,0.0193185,0.300707,0.691317,0.289692,0.679519,0.54215,0.803648,0.383628,0.817656,0.0950983,0.132177,0.762599,0.247531,0.973724,0.528741,0.174506,0.471454,0.797935,0.0612799,0.947612,0.296758,0.244915,0.952172,0.425982,0.358615,0.885138,0.539576,0.257223,0.425623,0.52538,0.355405,0.541784,0.302637,0.296663,0.157314,0.0131032,0.625633,0.877658,0.458418,0.452739,0.82527,0.895809,0.483958,0.447983,0.554607,0.833795,0.542663,0.744447,0.323504,0.436752,0.904469,0.381572,0.553182,0.915414,0.889156,0.279499,0.337039,0.127615,0.47291,0.732271,0.182904,0.197398,0.904669,0.535548,0.972346,0.929014,0.776081,0.374864,0.534852,0.0556,0.584437,0.787635,0.967692,0.902215,0.989371,0.570615,0.956281,0.664151,0.568516,0.0629239,0.917631,0.104431,0.0277316,0.0542149,0.865993,0.676646,0.693452,0.616347,0.115917,0.844189,0.916114,0.898444,0.117907,0.887684,0.754442,0.456526,0.572894,0.816993,0.275906,0.0569558,0.519954,0.552682,0.117063,0.632075,0.286081,0.534054,0.627104,0.861524,0.318543,0.342676,0.141947,0.894327,0.955669,0.471387,0.847376,0.596774,0.909951,0.0693097,0.588565,0.913467,0.867129,0.201687,0.629999,0.187001,0.121267,0.75252,0.685119,0.766039,0.645941,0.881244,0.213861,0.0570243,0.865684,0.777961,0.563235,0.697937,0.211544,0.94289,0.726458,0.204017,0.252095,0.048319,0.506485,0.678575,0.0192975,0.483068,0.215998,0.207772,0.71962,0.746164,0.11923,0.821912,0.813007,0.951538,0.0629241,0.394499,0.844503,0.125252,0.0494905,0.965921,0.850113,0.616872,0.420564,0.871159,0.59243,0.820097,0.711833,0.995546,0.206443,0.276226,0.33466,0.0359335,0.106678,0.779902,0.719591,0.0661861,0.313947,0.0146473,0.407397,0.100134,0.241913,0.6322,0.242517,0.0436606,0.372753,0.635228,0.417389,0.480988,0.0329111,0.967684,0.580884,0.227241,0.495592,0.212806,0.116006,0.264834,0.750091,0.142208,0.744856,0.16097,0.327047,0.264848,0.194737,0.2954,0.413888,0.658436,0.64272,0.486171,0.139474,0.0697894,0.550635,0.0509667,0.772473,0.790363,0.177985,0.0491176,0.549124,0.808161,0.201808,0.131094,0.0833448,0.849213,0.502255,0.732778,0.364744,0.91099,0.418199,0.505917,0.178232,0.451825,0.870459,0.432718,0.767324,0.157567,0.382822,0.00944316,0.103787,0.821057,0.241834,0.483452,0.188243,0.890767,0.956606,0.233521,0.426762,0.806303,0.324239,0.541792,0.472387,0.926593,0.363275,0.528394,0.156631,0.147835,0.0844735,0.380471,0.856824,0.599331,0.654899,0.505926,0.172401,0.445794,0.995904,0.892625,0.193018,0.329331,0.876275,0.135328,0.129409,0.821652,0.172789,0.666215,0.620589,0.812648,0.737359,0.861058,0.175388,0.681009,0.981711,0.829406,0.922869,0.664496,0.13145,0.165822,0.638234,0.0486647,0.220408,0.983687,0.392284,0.0234928,0.0677546,0.361288,0.821822,0.991706,0.333022,0.623835,0.45113,0.0547341,0.793769,0.234633,0.205803,0.809239,0.333439,0.317608,0.764792,0.0644047,0.206753,0.238855,0.881434,0.9294,0.750045,0.659118,0.30542,0.122505,0.685087,0.202007,0.68582,0.647967,0.015219,0.0739626,0.842765,0.870116,0.4612,0.828492,0.860533,0.663387,0.459734,0.885286,0.199874,0.279004,0.755015,0.220024,0.143743,0.716141,0.676209,0.239708,0.932799,0.489825,0.648145,0.598355,0.221575,0.632839,0.331537,0.165443,0.808833,0.84948,0.814995,0.407699,0.371356,0.00458318,0.0531735,0.911058,0.29755,0.197825,0.483545,0.395602,0.421143,0.675019,0.945095,0.221805,0.137851,0.174172,0.85154,0.346096,0.400891,0.410276,0.0905144,0.913129,0.996636,0.32293,0.141022,0.558977,0.371973,0.130223,0.347422,0.663517,|0.520725,0.486644,0.162268,0.363165,0.998575,0.167436,0.14022,0.966687,0.370778,0.730799,0.59252,0.128869,0.049327,0.553996,0.717284,0.24879,0.0508898,0.58713,0.522822,0.486213,0.0985212,0.34143,0.214496,0.0555673,0.869595,0.990377,0.75225,0.798033,0.713701,0.431833,0.623163,0.944052,0.0443282,0.546939,0.569243,0.462885,0.837875,0.646405,0.303814,0.985414,0.141041,0.980223,0.715675,0.985357,0.32041,0.462936,0.963504,0.906099,0.632703,0.625351,0.0298766,0.186029,0.246379,0.386386,0.869818,0.282111,0.609565,0.634139,0.885723,0.148858,0.995911,0.721142,0.34827,0.892591,0.934557,0.622072,0.512479,0.526753,0.541212,0.06405,0.0347462,0.0179654,0.225138,0.844988,0.419361,0.151546,0.0754737,0.859542,0.276015,0.406983,0.340197,0.775468,0.479957,0.313354,0.294757,0.206372,0.548359,0.0643917,0.543591,0.538016,0.664824,0.181726,0.374674,0.518701,0.755086,0.198078,0.100049,0.317001,0.439754,0.053739,0.313775,0.179095,0.775116,0.289851,0.971808,0.370522,0.610467,0.0681386,0.239152,0.371457,0.792603,0.25961,0.309533,0.253168,0.911104,0.512475,0.685963,0.583987,0.431692,0.501568,0.488914,0.0638202,0.224843,0.938667,0.927628,0.71255,0.813826,0.70713,0.108991,0.370142,0.426303,0.530582,0.526993,0.551157,0.614701,0.0856071,0.675807,0.193788,0.882042,0.558375,0.780284,0.978924,0.806904,0.743434,0.630955,0.332875,0.180829,0.825347,0.150446,0.264096,0.0783568,0.376631,0.0588941,0.468772,0.660998,0.984443,0.510948,0.840643,0.256462,0.540767,0.861068,0.451616,0.384762,0.0252176,0.257607,0.155029,0.11147,0.421776,0.316862,0.288827,0.474548,0.83688,0.010276,0.429424,0.46609,0.538321,0.939865,0.0950712,0.368222,0.381617,0.15543,0.749618,0.368905,0.230592,0.508585,0.531009,0.0408965,0.852119,0.398163,0.215339,0.276245,0.573026,0.00620127,0.892107,0.544521,0.44528,0.467995,0.903018,0.458084,0.274208,0.514086,0.784981,0.29132,0.47064,0.821737,0.996393,0.744516,0.906512,0.477747,0.717033,0.301375,0.641593,0.152242,0.989001,0.117521,0.756223,0.92387,0.827844,0.187068,0.36875,0.493968,0.896737,0.144686,0.165756,0.618656,0.338387,0.508119,0.963373,0.818756,0.929053,0.0730176,0.94678,0.265246,0.708192,0.00659865,0.00421482,0.358256,0.842238,0.0784132,0.600278,0.967229,0.851674,0.959544,0.695495,0.926863,0.525724,0.96006,0.528443,0.938253,0.930032,0.768327,0.618426,0.563791,0.556985,0.877785,0.862721,0.00748074,0.0364823,0.562461,0.67685,0.617173,0.282611,0.130432,0.601547,0.223025,0.890775,0.851932,0.924515,0.187089,0.0769343,0.256577,0.156443,0.682744,0.554256,0.867038,0.45811,0.805897,0.911514,0.765882,0.487806,0.773946,0.109781,0.215236,0.422733,0.00516754,0.618085,0.432856,0.723193,0.80129,0.759785,0.903364,0.639774,0.283303,0.379289,0.800306,0.836233,0.00689518,0.436679,0.74215,0.664115,0.357167,0.701376,0.577054,0.482078,0.534971,0.246792,0.692051,0.967625,0.0322856,0.233048,0.0369391,0.437939,0.409108,0.272466,0.726846,0.315754,0.310141,0.449572,0.266368,0.466548,0.140753,0.976161,0.0790137,0.96615,0.420077,0.271691,0.951843,0.536614,0.483898,0.198814,0.154632,0.823332,0.0741348,0.176453,0.203718,0.867686,0.535858,0.450742,0.78255,0.395262,0.368979,0.0883067,0.639578,0.958954,0.171424,0.0115104,0.00481308,0.711376,0.947684,0.458574,0.565583,0.180911,0.0291231,0.817676,0.598804,0.588299,0.128316,0.74081,0.0375245,0.33084,0.323156,0.352723,0.717941,0.55426,0.139319,0.34743,0.236758,0.981444,0.615756,0.940343,0.164651,0.692531,0.289882,0.662179,0.751249,0.499412,0.697351,0.608577,0.926646,0.147461,0.540407,0.955284,0.377928,0.061635,0.954104,0.539446,0.144924,0.609466,0.527595,0.69891,0.204323,0.841601,0.95903,0.793362,0.0955906,0.432839,0.528956,0.397076,0.41478,0.371348,0.790456,0.953359,0.688891,0.856711,0.136568,0.17516,0.282671,0.699224,0.000820279,0.527379,0.527848,0.906812,0.756538,0.790722,0.598141,0.762053,0.765985,0.0844861,0.203393,0.760236,0.30172,0.949248,0.49572,0.163915,0.129306,0.916281,0.528164,0.118336,0.587582,0.113124,0.478618,0.962191,0.771864,0.721861,0.224433,0.31677,0.829252,0.758675,0.601487,0.755288,0.538679,0.708213,0.136466,0.793999,0.678945,0.183332,0.374654,0.501708,0.0826083,0.685582,0.07361,0.266778,0.577106,0.689688,0.628516,0.204114,0.27087,0.552904,0.94452,0.033859,0.564815,0.469095,0.319938,0.548374,0.282153,0.875477,0.18425,0.556113,0.756315,0.626127,0.645999,0.567819,0.104433,0.999736,0.294135,0.470011,0.754284,0.369801,0.570862,0.910582,0.109159,0.675136,0.258172,0.77951,0.962762,0.428592,0.0202822,0.971486,0.972044,0.0461709,0.708107,0.601694,0.294896,0.52885,0.823584,0.957039,0.890519,0.0374818,0.496672,0.425975,0.618793,0.094229,0.0176339,0.414838,0.503271,0.685635,0.479705,0.788305,0.35065,0.144641,0.812944,0.397061,0.196318,0.941486,0.869658,0.355219,0.385027,0.49809,0.623316,0.694049,0.0749868,0.27162,0.52564,0.421372,0.453997,0.53768,0.91234,0.644474,0.301792,0.222642,0.289011,0.965003,0.19045,0.185386,0.671823,0.945219,0.523949,0.449479,0.423833,0.546181,0.300918,0.691239,0.803676,0.703394,0.793336,0.787162,0.396365,0.851182,0.209447,0.555934,0.519257,0.825358,0.975159,0.00445789,0.764912,0.547097,0.0113043,0.207657,0.940216,0.706893,0.493615,0.0937131,0.478155,0.674972,0.743038,0.394541,0.746441,0.0209631,0.9142,0.342291,0.378316,0.632005,0.365309,0.568675,0.63127,0.744347,0.839628,0.505354,0.223252,0.751372,0.702512,0.107509,0.969829,0.110723,0.791691,0.905352,0.360547,0.274401,0.0955399,0.318175,0.230493,0.630372,0.484858,0.265572,0.275743,0.354823,0.973905,0.0166906,0.963315,0.367127,0.130616,0.0354568,0.659289,0.0467175,0.882035,0.822733,0.401696,0.00904995,0.986034,0.963582,0.263912,0.66253,0.855537,0.820938,0.889374,0.364268,0.808025,0.133379,0.397614,0.865749,0.126087,0.483457,0.527636,0.46623,0.190705,0.553374,0.887818,0.457468,0.75213,0.58509,0.0673447,0.582309,0.249706,0.265475,0.301353,0.99993,0.599652,0.496154,0.784967,0.499612,0.04917,0.173365,0.159797,0.716836,0.471314,0.605582,0.133855,0.49692,0.445357,0.20634,0.736636,0.607202,0.393482,0.967085,0.918782,0.0364503,0.0930709,0.75026,0.371419,0.432477,0.575029,0.703891,0.829377,0.235262,0.852071,0.974354,0.552337,0.0719538,0.395923,0.133185,0.0473711,0.781882,0.773092,0.067524,0.681628,0.673508,0.138367,0.810393,0.483605,0.742824,0.990818,0.528837,0.973437,0.216532,0.119061,0.351177,0.145392,0.260902,0.081751,0.970477,0.421932,0.747757,0.274311,0.362253,0.725612,0.818319,0.102892,0.621779,0.0461053,0.333823,0.229859,0.238635,0.994977,0.498711,0.771697,0.191812,0.178973,0.423401,0.376555,0.931518,0.83245,0.64921,0.196777,0.463574,0.175907,0.27993,0.904783,0.839934,0.863583,0.532922,0.973217,0.898519,0.324372,0.673416,0.398462,0.429462,0.877869,0.0592439,0.477422,0.954835,0.399771,0.596805,0.537585,0.877312,0.21892,0.253298,0.81855,0.65112,0.946666,0.842105,0.859594,0.0211008,0.395585,0.548386,0.656113,0.00216115,0.757326,0.995929,0.777134,0.441004,0.502069,0.494501,0.115949,0.388366,0.73769,0.70673,0.965736,0.513782,0.86389,0.88804,0.35874,0.675892,0.251947,0.583337,0.807907,0.188171,0.223812,0.00488186,0.611037,0.440077,0.166345,0.559729,0.863836,0.272546,0.914647,0.00491953,0.165246,0.148873,0.952849,0.702288,0.559793,0.427216,0.678631,0.0828947,0.5571,0.427949,0.695978,0.809779,0.211299,0.0236455,0.697784,0.737822,0.680181,0.462384,0.375009,0.605084,0.227313,0.226209,0.060329,0.375005,0.579427,0.0108059,0.255032,0.322357,0.617855,0.026246,0.871374,0.173995,0.121614,0.880425,0.932226,0.544245,0.919833,0.697726,0.174351,0.0100172,0.849574,0.796971,0.226421,0.996211,0.486691,0.388593,0.23023,0.0916332,0.541071,0.865559,0.832463,0.366763,0.557171,0.980401,0.196465,0.900946,0.227567,0.180427,0.800755,0.535167,0.0249294,0.274813,0.0881882,0.235934,0.662966,0.345842,0.0415385,0.0714377,0.469238,0.0719844,0.097316,0.731195,0.467536,0.464766,0.605085,0.237591,0.801878,0.942246,0.310948,0.636533,0.972478,0.750561,0.0139835,0.47328,0.256756,0.131374,0.980722,0.216585,0.60806,0.973189,0.0514249,0.225959,0.772088,0.140347,0.465744,0.385387,0.425776,0.188878,0.129069,0.658467,0.303296,0.291682,0.293224,0.0792311,0.758963,0.372946,0.100797,0.361917,0.580184,0.381759,0.879562,0.732142,0.316203,0.325633,0.694291,0.341172,0.937361,0.12161,0.329217,0.412159,0.166336,0.363256,0.268103,0.486703,0.414289,0.978846,0.657973,0.469178,0.67741,0.801937,0.0392025,0.346874,0.501285,0.716819,0.661503,0.64911,0.744301,0.752876,0.181218,0.595333,0.248045,0.69301,0.548018,0.519087,0.773002,0.0482656,0.296386,0.413418,0.875741,0.119384,0.604331,0.837216,0.0695327,0.621028,0.373649,0.450222,0.643081,0.609459,0.28681,0.981938,0.28745,0.471103,0.638646,0.416028,0.580998,0.978364,0.45737,0.417346,0.763888,0.700066,0.223877,0.19341,0.976083,0.451733,0.0154285,0.0403232,0.110379,0.591251,0.257927,0.003124,0.405063,0.05972,0.791096,0.481954,0.928835,0.00695825,0.00733787,0.698135,0.539691,0.372258,0.312403,0.228092,0.647792,0.144332,0.129718,0.635789,0.197127,0.395163,0.389303,0.438326,0.348834,0.499995,0.530192,0.639659,0.42312,0.823264,0.815939,0.5382,0.905698,0.592339,0.173256,0.554025,0.646025,0.462444,0.536341,0.312448,0.111225,0.326083,0.553734,0.661767,0.00569743,0.920684,0.440088,0.101662,|0.82327,0.255577,0.529686,0.199332,0.0818503,0.709323,0.475121,0.164403,0.822085,0.83889,0.938417,0.978931,0.988931,0.385432,0.618622,0.961299,0.290377,0.688829,0.661215,0.789294,0.519647,0.343248,0.991677,0.713426,0.957685,0.528213,0.452867,0.610012,0.808486,0.872154,0.652322,0.478154,0.79959,0.516305,0.949555,0.864306,0.486153,0.963167,0.849721,0.501843,0.184419,0.389218,0.346405,0.885847,0.160723,0.406013,0.91637,0.299842,0.74814,0.397609,0.872496,0.39642,0.919656,0.721386,0.931024,0.41227,0.511406,0.0369514,0.852043,0.91477,0.373402,0.387753,0.980205,0.0229131,0.436721,0.026503,0.586393,0.628719,0.73183,0.139968,0.255135,0.855317,0.221476,0.888513,0.0214434,0.338724,0.783051,0.928177,0.370138,0.971505,0.197146,0.329706,0.818937,0.56758,0.00316352,0.221633,0.927408,0.601961,0.0299917,0.517112,0.584635,0.143793,0.599183,0.587125,0.359454,0.213293,0.791859,0.0411745,0.0866466,0.313762,0.230919,0.0198906,0.773223,0.645918,0.884206,0.936977,0.0680329,0.803008,0.633723,0.74062,0.252394,0.380727,0.641584,0.715613,0.156842,0.560673,0.768133,0.97753,0.707329,0.834347,0.179422,0.0396251,0.999623,0.291456,0.863642,0.801854,0.142842,0.013145,0.386554,0.659682,0.600524,0.963265,0.273364,0.882427,0.559965,0.686042,0.619919,0.394167,0.0772181,0.628329,0.185963,0.503366,0.34331,0.256769,0.307037,0.863766,0.0372173,0.0305947,0.373394,0.194575,0.336777,0.39289,0.423156,0.854922,0.0488836,0.658212,0.36856,0.523209,0.18436,0.147436,0.359793,0.0742365,0.691346,0.380125,0.859724,0.453738,0.502845,0.424589,0.538261,0.959226,0.405629,0.647118,0.215504,0.969477,0.928745,0.211776,0.514084,0.334845,0.453811,0.56246,0.975922,0.28027,0.4334,0.828595,0.349537,0.570154,0.88493,0.531714,0.323317,0.444327,0.932075,0.259414,0.566012,0.216004,0.0773667,0.626238,0.563392,0.36097,0.545718,0.590379,0.369881,0.826706,0.2796,0.373845,0.841653,0.873175,0.969217,0.475619,0.557032,0.515187,0.897864,0.692193,0.103248,0.488956,0.356057,0.104303,0.93802,0.991576,0.944753,0.523911,0.797016,0.959693,0.615539,0.348837,0.597003,0.757608,0.833603,0.00923961,0.337961,0.745945,0.853498,0.367045,0.343197,0.168908,0.680545,0.233304,0.00227505,0.711977,0.331324,0.574824,0.855144,0.679083,0.426597,0.841617,0.294715,0.230698,0.351524,0.812213,0.90828,0.650893,0.362785,0.942344,0.301028,0.738038,0.0347641,0.0243818,0.923293,0.496729,0.231868,0.641854,0.368159,0.257741,0.17198,0.946059,0.775917,0.951769,0.831408,0.920315,0.358398,0.23833,0.124974,0.18202,0.0358448,0.603376,0.861362,0.402609,0.81219,0.571395,0.964267,0.123857,0.492759,0.227926,0.403219,0.432138,0.112722,0.0069803,0.351587,0.464641,0.927998,0.251623,0.98641,0.38432,0.114545,0.293921,0.375849,0.714224,0.48436,0.254288,0.962214,0.941394,0.780562,0.756082,0.663488,0.647246,0.666419,0.946134,0.84319,0.611049,0.709655,0.625855,0.827975,0.48208,0.690988,0.465156,0.978283,0.2254,0.830591,0.880276,0.0148277,0.829054,0.518243,0.85735,0.582035,0.765035,0.558463,0.187282,0.948033,0.796635,0.855781,0.717164,0.201748,0.219823,0.281998,0.137009,0.127088,0.132104,0.997112,0.103155,0.943169,0.764182,0.241028,0.0874145,0.549183,0.610819,0.492673,0.108587,0.67121,0.993129,0.401634,0.738709,0.760991,0.669813,0.989092,0.207693,0.854121,0.571808,0.236044,0.856744,0.472412,0.489446,0.286916,0.73281,0.779891,0.435625,0.119304,0.592066,0.51596,0.809106,0.0581932,0.11117,0.615374,0.500361,0.937782,0.146067,0.990078,0.248453,0.67988,0.14635,0.360763,0.594161,0.53183,0.123828,0.700566,0.616982,0.494755,0.171999,0.727511,0.181118,0.868986,0.388629,0.687431,0.954984,0.157872,0.0130154,0.0130721,0.850825,0.185765,0.118528,0.761204,0.868745,0.311071,0.232426,0.772055,0.840484,0.887303,0.91531,0.783364,0.545529,0.647662,0.449085,0.998051,0.768769,0.502019,0.395387,0.46896,0.225708,0.842484,0.879265,0.606955,0.152204,0.695002,0.920735,0.656814,0.770909,0.654041,0.472516,0.931978,0.388957,0.00796539,0.543404,0.52194,0.120383,0.350909,0.0872682,0.869992,0.056509,0.714929,0.669206,0.919156,0.813695,0.584303,0.90713,0.839473,0.435118,0.979119,0.802455,0.393945,0.957737,0.40081,0.42975,0.212679,0.485934,0.476968,0.111201,0.786395,0.574358,0.360083,0.376293,0.571228,0.621869,0.0687599,0.167935,0.388394,0.191349,0.159756,0.422768,0.238823,0.865125,0.325543,0.776196,0.619279,0.55346,0.150454,0.80806,0.910412,0.0931411,0.954581,0.222064,0.680566,0.0908955,0.819176,0.114533,0.601941,0.569681,0.71303,0.214013,0.672786,0.254753,0.994535,0.73218,0.809273,0.164499,0.145653,0.17478,0.675127,0.79512,0.325373,0.264861,0.199336,0.412776,0.606108,0.123682,0.097587,0.270388,0.567465,0.843303,0.912838,0.472897,0.772447,0.642954,0.640709,0.551109,0.93647,0.198582,0.805795,0.985792,0.39324,0.740819,0.258625,0.725597,0.852946,0.400283,0.65535,0.216472,0.578702,0.170071,0.972676,0.494978,0.923634,0.98662,0.750394,0.751343,0.87899,0.424565,0.316613,0.0504675,0.433021,0.588462,0.622963,0.95578,0.0116943,0.731483,0.938772,0.33154,0.875801,0.556917,0.444873,0.694923,0.0855144,0.487032,0.0474141,0.636116,0.343939,0.161155,0.661844,0.423112,0.483615,0.124393,0.888926,0.425881,0.210673,0.194789,0.387851,0.279348,0.402421,0.984156,0.458656,0.832711,0.620791,0.700253,0.569838,0.764742,0.25598,0.658377,0.744345,0.756477,0.976303,0.418601,0.0451385,0.469487,0.884625,0.452053,0.661194,0.0245554,0.783547,0.995473,0.580141,0.554234,0.432645,0.842366,0.278149,0.841834,0.16807,0.693647,0.162185,0.517558,0.930782,0.797237,0.352018,0.706216,0.117426,0.278619,0.135908,0.372167,0.783146,0.830578,0.604462,0.298203,0.250774,0.503552,0.471076,0.0894166,0.724035,0.428129,0.0293261,0.151254,0.868559,0.0394445,0.451616,0.578774,0.122095,0.159984,0.356247,0.612191,0.691425,0.993008,0.126129,0.366948,0.247468,0.763897,0.263106,0.908928,0.501898,0.828361,0.834551,0.258861,0.20162,0.985529,0.651416,0.153943,0.879288,0.731981,0.154232,0.806348,0.437076,0.714008,0.500962,0.754517,0.194422,0.770217,0.659873,0.706686,0.156561,0.15916,0.62778,0.143048,0.472083,0.00493878,0.908666,0.645277,0.219636,0.452783,0.269973,0.646892,0.855544,0.910767,0.618691,0.435708,0.604338,0.110377,0.117558,0.900457,0.434334,0.332429,0.852917,0.112777,0.250528,0.536646,0.0569948,0.893494,0.0383751,0.973726,0.0361379,0.183379,0.536911,0.555288,0.968557,0.0190931,0.496363,0.581637,0.366063,0.320884,0.654052,0.891052,0.538656,0.310198,0.945617,0.116941,0.344781,0.355965,0.547256,0.855097,0.822721,0.823897,0.903138,0.202312,0.62929,0.249026,0.236906,0.439189,0.371782,0.354332,0.452781,0.433256,0.359608,0.556581,0.770045,0.84521,0.826377,0.507423,0.984619,0.551084,0.0207646,0.89073,0.904453,0.796288,0.555081,0.52234,0.862278,0.9413,0.174543,0.569174,0.285695,0.880782,0.398732,0.859822,0.747458,0.300688,0.0424484,0.880152,0.0335079,0.449305,0.201078,0.677953,0.00191087,0.492748,0.383843,0.908584,0.377678,0.432879,0.597551,0.440713,0.505821,0.580444,0.641047,0.279321,0.0202284,0.158349,0.3932,0.158336,0.759051,0.914639,0.00899297,0.942565,0.667727,0.44021,0.767342,0.319746,0.778263,0.396159,0.163259,0.485567,0.284885,0.24165,0.253896,0.797017,0.82203,0.147253,0.507033,0.754929,0.544199,0.809754,0.684304,0.480465,0.0963198,0.0168999,0.400465,0.575179,0.178786,0.822315,0.197271,0.848324,0.714128,0.677472,0.187273,0.510054,0.991729,0.806076,0.486545,0.482199,0.868302,0.656795,0.75054,0.901902,0.529917,0.557968,0.784887,0.318423,0.42861,0.296233,0.0538148,0.803842,0.386472,0.0374582,0.341813,0.414573,0.685485,0.548979,0.783499,0.882175,0.806059,0.56982,0.157141,0.485461,0.0170364,0.555571,0.604316,0.432612,0.0758917,0.324481,0.807664,0.502074,0.992983,0.584653,0.406045,0.0492609,0.787596,0.962427,0.99953,0.646857,0.510784,0.318789,0.0232038,0.230484,0.842403,0.50375,0.705368,0.668402,0.602083,0.932076,0.942574,0.58393,0.0285453,0.385526,0.291618,0.867267,0.530111,0.0732068,0.720022,0.670421,0.709274,0.153908,0.199427,0.0930015,0.284557,0.504833,0.469208,0.882619,0.535333,0.590871,0.0545449,0.505163,0.813737,0.00332755,0.525118,0.843331,0.396975,0.865868,0.427816,0.427591,0.469938,0.584052,0.395579,0.889215,0.787832,0.457456,0.480896,0.0247291,0.776131,0.244862,0.548006,0.60595,0.427793,0.0790469,0.371948,0.391337,0.247165,0.199719,0.48818,0.402813,0.907175,0.335685,0.677156,0.418369,0.472019,0.694425,0.226474,0.524063,0.0184821,0.323735,0.955812,0.439558,0.120381,0.376589,0.885714,0.646616,0.511583,0.800833,0.96952,0.688338,0.441063,0.148117,0.298303,0.0477028,0.74223,0.676096,0.45448,0.396725,0.435103,0.123336,0.53744,0.157567,0.510016,0.174538,0.99541,0.439984,0.378149,0.614228,0.809339,0.318197,0.43674,0.439448,0.508288,0.59936,0.167941,0.5943,0.155499,0.0954616,0.000958264,0.395021,0.799313,0.183285,0.874318,0.143929,0.0238892,0.175477,0.611566,0.385275,0.138598,0.749423,0.0551323,0.204276,0.897938,0.214159,0.41542,0.769322,0.0329686,0.76627,0.891579,0.293555,0.410261,0.615693,0.235486,0.858779,0.0568203,0.813092,0.263299,0.0556011,0.864927,0.148582,0.855453,0.718368,0.843641,0.555466,0.093077,0.307818,0.10929,0.121255,0.823707,0.246791,0.807702,0.280109,0.00444442,0.118781,0.297301,0.832845,0.626341,0.371956,0.331493,0.829089,|0.627339,0.695344,0.655564,0.915983,0.610865,0.624923,0.245036,0.489096,0.807268,0.153955,0.357939,0.842925,0.925661,0.80155,0.746272,0.718308,0.998621,0.881345,0.754358,0.118015,0.572833,0.515525,0.912204,0.547888,0.77089,0.769599,0.877128,0.0201964,0.946133,0.795048,0.724095,0.606695,0.93934,0.805119,0.643882,0.779868,0.190395,0.0617825,0.228254,0.864858,0.0930539,0.584317,0.226312,0.297324,0.309501,0.909663,0.949614,0.0411544,0.253468,0.625746,0.613923,0.35745,0.577929,0.757926,0.465365,0.255891,0.77189,0.411603,0.120858,0.73913,0.148356,0.924309,0.323499,0.0954434,0.501924,0.327944,0.572975,0.229692,0.628175,0.890137,0.969746,0.502634,0.387544,0.113915,0.936271,0.933651,0.58374,0.537759,0.172241,0.33112,0.8674,0.741253,0.208294,0.168529,0.937133,0.27173,0.896466,0.81428,0.734316,0.270008,0.694257,0.281971,0.863627,0.891789,0.621415,0.764861,0.722831,0.0181559,0.018102,0.804921,0.0748823,0.565317,0.50674,0.715247,0.460437,0.965348,0.25862,0.508576,0.848259,0.948488,0.205339,0.219966,0.0539582,0.0126907,0.212347,0.257048,0.0327486,0.775982,0.194196,0.770889,0.305646,0.436921,0.0102571,0.835763,0.101879,0.778583,0.174775,0.422014,0.882812,0.0295735,0.549535,0.302724,0.846768,0.999882,0.963307,0.62483,0.52798,0.0748007,0.794656,0.495052,0.901638,0.980279,0.0589746,0.188065,0.913033,0.12534,0.555096,0.0874418,0.295739,0.582909,0.607575,0.827064,0.755265,0.513808,0.987408,0.450084,0.608215,0.727747,0.971065,0.655762,0.655428,0.299097,0.965457,0.576387,0.938806,0.53173,0.0310279,0.42657,0.227783,0.768731,0.184971,0.461726,0.504126,0.903045,0.372491,0.207331,0.528894,0.034945,0.289956,0.887609,0.587987,0.285548,0.3277,0.594494,0.93872,0.270095,0.835542,0.313727,0.453663,0.0512118,0.902193,0.417627,0.223824,0.290924,0.134227,0.653638,0.250556,0.734295,0.81106,0.825727,0.753309,0.448518,0.963183,0.438873,0.690475,0.923706,0.980455,0.294525,0.836503,0.413244,0.189704,0.950689,0.0883608,0.509215,0.10042,0.713673,0.157793,0.122695,0.725653,0.883356,0.737498,0.803584,0.1314,0.926886,0.106637,0.156739,0.0475996,0.261919,0.58165,0.0374737,0.994928,0.91654,0.653916,0.467896,0.455601,0.19936,0.320936,0.974414,0.670387,0.793054,0.80508,0.515527,0.783671,0.546943,0.0533586,0.0926775,0.246461,0.31494,0.929681,0.632816,0.817953,0.853798,0.902149,0.217266,0.534951,0.828055,0.249891,0.104255,0.848219,0.577856,0.384019,0.501069,0.527114,0.349622,0.301413,0.204611,0.821193,0.620674,0.435344,0.747861,0.283104,0.882972,0.636017,0.14473,0.398096,0.61493,0.714624,0.329157,0.965325,0.397008,0.465666,0.543242,0.0573698,0.407104,0.191736,0.551813,0.656592,0.694688,0.639514,0.657675,0.535316,0.759958,0.456907,0.699666,0.365464,0.63506,0.882289,0.738864,0.99154,0.214313,0.672661,0.572008,0.239425,0.474044,0.162354,0.945102,0.847589,0.400741,0.490721,0.649331,0.0941865,0.953639,0.297574,0.778285,0.436513,0.330908,0.104117,0.521428,0.143992,0.430008,0.258926,0.564743,0.0062899,0.432843,0.147733,0.229724,0.419181,0.219137,0.545781,0.796968,0.523546,0.924288,0.0238349,0.842554,0.231798,0.25078,0.681386,0.570306,0.521329,0.936365,0.599713,0.533932,0.82567,0.272742,0.0680116,0.953168,0.577125,0.375377,0.589255,0.671435,0.87148,0.683791,0.20771,0.00990367,0.629546,0.874417,0.381976,0.0117798,0.219874,0.243659,0.212094,0.170452,0.34977,0.960952,0.817843,0.137188,0.534369,0.838114,0.735038,0.530924,0.451979,0.120602,0.247806,0.720119,0.21369,0.287454,0.104137,0.478576,0.468177,0.109015,0.216949,0.379659,0.841778,0.677176,0.0153255,0.395026,0.876863,0.296575,0.250283,0.416256,0.564648,0.492951,0.372857,0.290884,0.665729,0.704182,0.874166,0.545663,0.789288,0.730849,0.367734,0.540497,0.436433,0.949474,0.404778,0.998891,0.250355,0.177883,0.699837,0.741277,0.901274,0.352023,0.826682,0.402399,0.959286,0.0689892,0.909922,0.364256,0.0334244,0.641095,0.101825,0.0070743,0.345957,0.239761,0.197539,0.629462,0.649968,0.295498,0.297038,0.185789,0.231457,0.864792,0.0398986,0.376497,0.139539,0.71964,0.563845,0.59475,0.856221,0.73611,0.10825,0.370153,0.4792,0.431245,0.332363,0.565332,0.0627149,0.141895,0.967475,0.7537,0.89794,0.568338,0.924418,0.187134,0.993409,0.735579,0.247703,0.875261,0.98452,0.560594,0.204747,0.561943,0.821372,0.317343,0.395883,0.319131,0.549219,0.890822,0.199662,0.952882,0.384001,0.659421,0.00834143,0.315364,0.389738,0.342917,0.304426,0.673358,0.633529,0.223118,0.0268172,0.623858,0.92957,0.598871,0.85561,0.58874,0.0375604,0.485205,0.261056,0.107928,0.656565,0.834196,0.0120268,0.483687,0.325903,0.834211,0.461874,0.848671,0.689612,0.118815,0.902767,0.88123,0.282733,0.13733,0.203061,0.334434,0.693524,0.448767,0.878995,0.857354,0.869719,0.916177,0.569037,0.411204,0.379053,0.217857,0.891342,0.19992,0.95314,0.400818,0.8623,0.40353,0.647772,0.446072,0.897593,0.295471,0.465758,0.174306,0.538668,0.315829,0.597796,0.87389,0.0414925,0.340562,0.12642,0.775854,0.204053,0.349144,0.268218,0.776853,0.0384369,0.649796,0.775721,0.938121,0.855045,0.815517,0.081858,0.186081,0.603539,0.149593,0.272715,0.418569,0.574842,0.172958,0.0982581,0.655058,0.720333,0.911011,0.0778232,0.896782,0.238088,0.7466,0.567532,0.903066,0.491282,0.971685,0.617159,0.119731,0.671766,0.223602,0.369987,0.441746,0.720846,0.660837,0.112692,0.898456,0.867137,0.168527,0.937236,0.370883,0.332108,0.260436,0.606655,0.556758,0.197081,0.994411,0.0954539,0.0126446,0.915812,0.0709479,0.0916724,0.388116,0.393734,0.290238,0.397377,0.754829,0.401739,0.229866,0.588224,0.334305,0.754671,0.985048,0.0281926,0.880774,0.384527,0.803406,0.944394,0.463245,0.32455,0.679006,0.294749,0.771949,0.960957,0.035767,0.65779,0.103846,0.459684,0.245164,0.233183,0.849944,0.560478,0.350477,0.497485,0.855836,0.654135,0.306597,0.756062,0.255094,0.136399,0.836785,0.225451,0.706226,0.966844,0.886652,0.191898,0.243407,0.388518,0.268579,0.711081,0.113396,0.557694,0.216023,0.814136,0.517678,0.289471,0.92357,0.4463,0.896181,0.640693,0.0166625,0.864602,0.0191835,0.139202,0.336332,0.602971,0.73396,0.155392,0.647723,0.814747,0.285991,0.930902,0.405072,0.458913,0.135825,0.787959,0.458094,0.679031,0.142331,0.960271,0.297171,0.208407,0.969225,0.256159,0.986004,0.122461,0.452704,0.639726,0.642745,0.360236,0.130182,0.932508,0.212745,0.402243,0.446886,0.592704,0.0190536,0.0189153,0.862941,0.442278,0.630379,0.594301,0.331805,0.135312,0.73241,0.432024,0.580003,0.306164,0.498282,0.941544,0.116657,0.990084,0.140783,0.121769,0.989983,0.350926,0.240162,0.403114,0.387732,0.747538,0.846022,0.0386384,0.968902,0.0607669,0.701486,0.195704,0.592949,0.793692,0.466216,0.361258,0.979301,0.606059,0.73389,0.130047,0.826194,0.784385,0.483725,0.628737,0.960885,0.675191,0.381738,0.973033,0.245075,0.858281,0.780023,0.702364,0.127819,0.675242,0.726563,0.577713,0.652383,0.392455,0.117566,0.73299,0.232328,0.538015,0.634439,0.225409,0.935777,0.929224,0.787738,0.698096,0.0734132,0.490445,0.564327,0.507059,0.486147,0.697326,0.792214,0.765393,0.122664,0.763611,0.998496,0.449133,0.290505,0.282063,0.32939,0.197494,0.626176,0.590804,0.753551,0.604849,0.96693,0.615362,0.898009,0.395024,0.926061,0.811877,0.424463,0.996346,0.582653,0.782105,0.256608,0.815062,0.646965,0.618429,0.174682,0.320321,0.518578,0.335468,0.880671,0.559585,0.605791,0.0935988,0.356518,0.142326,0.799945,0.66425,0.463794,0.51615,0.732446,0.734708,0.56793,0.156246,0.8692,0.478829,0.499152,0.16409,0.379245,0.592047,0.792717,0.295506,0.238732,0.808657,0.554508,0.0683843,0.240627,0.891723,0.797832,0.423864,0.731464,0.683423,0.943641,0.433915,0.606504,0.135271,0.691077,0.873119,0.390441,0.64396,0.830222,0.873207,0.739501,0.259428,0.624751,0.938941,0.95734,0.151166,0.363167,0.963447,0.243543,0.093389,0.888373,0.429662,0.453047,0.297604,0.887512,0.767615,0.704304,0.704397,0.57688,0.0420836,0.566746,0.0212873,0.696724,0.17333,0.834889,0.0336716,0.713806,0.395995,0.694006,0.0577224,0.275067,0.715522,0.131106,0.837899,0.483484,0.759779,0.352854,0.300992,0.590243,0.496278,0.450831,0.528207,0.720469,0.408673,0.811475,0.332828,0.602166,0.612695,0.376597,0.0200557,0.277167,0.357571,0.589369,0.872312,0.820194,0.807024,0.254567,0.970578,0.346323,0.585461,0.431679,0.159685,0.342966,0.992973,0.504434,0.873857,0.696362,0.0368037,0.862039,0.493644,0.587795,0.418011,0.0451071,0.0621995,0.956284,0.639579,0.591386,0.272632,0.804907,0.778972,0.642818,0.985201,0.297822,0.495789,0.168875,0.750971,0.501789,0.192761,0.722053,0.58212,0.495509,0.709927,0.692349,0.802246,0.233603,0.612783,0.628215,0.530623,0.456285,0.992578,0.821945,0.187802,0.229794,0.916249,0.139228,0.469798,0.745924,0.332852,0.769673,0.111835,0.692241,0.901253,0.173855,0.320112,0.0698877,0.912526,0.977168,0.881864,0.298109,0.451056,0.807015,0.0395581,0.936062,0.613433,0.476804,0.695651,0.310708,0.488279,0.641987,0.144861,0.59732,0.953707,0.232327,0.224889,0.840954,0.274072,0.691313,0.757698,0.917885,0.369101,0.954627,0.226153,0.773993,0.544014,0.330162,0.455039,0.576717,0.595011,0.000622988,0.172897,0.119572,0.102381,0.902063,0.636081,0.820648,0.415637,0.991574,0.588538,0.488159,0.45186,0.754245,0.806748,0.339851,0.889182,0.501556,0.0783356,0.592009,0.50883,0.766142,|0.589467,0.163496,0.725613,0.580543,0.486059,0.788145,0.7011,0.56251,0.55978,0.865778,0.904217,0.421922,0.722638,0.229433,0.654406,0.197574,0.719615,0.909093,0.803337,0.0250472,0.335383,0.869654,0.270064,0.236926,0.568593,0.310882,0.382645,0.943416,0.135444,0.531849,0.379353,0.676171,0.997711,0.0526993,0.481842,0.210055,0.930556,0.171838,0.983673,0.402796,0.283894,0.0552802,0.540708,0.311861,0.135861,0.923013,0.254169,0.496663,0.733594,0.585328,0.435048,0.413808,0.423255,0.73052,0.322799,0.570679,0.847114,0.858658,0.970894,0.788424,0.646011,0.724451,0.881726,0.772077,0.975132,0.148376,0.49332,0.757966,0.251074,0.838578,0.734373,0.855382,0.759359,0.513711,0.36045,0.887412,0.825723,0.0863667,0.640929,0.751211,0.179851,0.674014,0.19461,0.170621,0.378242,0.71968,0.218569,0.944045,0.0870343,0.701765,0.975351,0.387308,0.0438232,0.615477,0.759044,0.880453,0.023764,0.965759,0.679218,0.324466,0.942211,0.619105,0.808131,0.572894,0.943263,0.218536,0.0103881,0.764482,0.23347,0.774274,0.38809,0.820563,0.799048,0.0650539,0.422303,0.20585,0.989631,0.189845,0.445747,0.213205,0.166385,0.588007,0.52352,0.470244,0.648219,0.467526,0.109712,0.0178959,0.675142,0.611611,0.282344,0.348716,0.0289795,0.950059,0.712143,0.571877,0.774005,0.414517,0.0119645,0.387644,0.489211,0.694896,0.363932,0.848319,0.441817,0.591892,0.489401,0.189855,0.00681996,0.937046,0.574647,0.324984,0.903935,0.993799,0.593974,0.91861,0.844667,0.258782,0.652754,0.992936,0.489999,0.678854,0.272465,0.128853,0.0341563,0.565413,0.8207,0.686172,0.144243,0.782567,0.403716,0.814995,0.762197,0.178972,0.236276,0.45106,0.326629,0.675678,0.43325,0.837725,0.85186,0.519439,0.561117,0.954811,0.61538,0.219191,0.172084,0.192958,0.589321,0.542409,0.387062,0.272575,0.167437,0.155892,0.131127,0.999057,0.413031,0.4416,0.351515,0.694635,0.222337,0.456685,0.243988,0.792376,0.837141,0.949884,0.516405,0.147239,0.756273,0.951342,0.156447,0.777732,0.907674,0.167164,0.265994,0.428583,0.0103952,0.841747,0.294123,0.52526,0.671742,0.324446,0.455069,0.979638,0.476009,0.43302,0.388235,0.128305,0.464626,0.681905,0.64419,0.455901,0.929061,0.635706,0.821378,0.673639,0.36314,0.748678,0.373864,0.545248,0.543053,0.859438,0.554248,0.435397,0.132266,0.934145,0.0211685,0.128769,0.401398,0.285922,0.800944,0.107566,0.922519,0.790819,0.582773,0.541883,0.458161,0.0599135,0.63733,0.319587,0.809859,0.433109,0.516101,0.211919,0.149551,0.558564,0.989089,0.789307,0.0332088,0.816912,0.987528,0.452297,0.417764,0.973104,0.791465,0.703179,0.86729,0.79999,0.344264,0.924733,0.284784,0.794282,0.795309,0.376875,0.731944,0.244832,0.600774,0.105145,0.705783,0.77436,0.397038,0.137993,0.341495,0.390993,0.960379,0.63389,0.308562,0.863659,0.780982,0.270197,0.133741,0.318253,0.179491,0.731217,0.891018,0.519677,0.297145,0.3109,0.130875,0.0740068,0.661521,0.0539027,0.724359,0.248378,0.427585,0.544975,0.114193,0.329377,0.470068,0.944982,0.92729,0.744793,0.469008,0.506706,0.154635,0.879715,0.82506,0.0846317,0.989205,0.424053,0.726162,0.453006,0.176279,0.673726,0.83315,0.64968,0.873278,0.458795,0.912766,0.903985,0.938353,0.125715,0.578854,0.323335,0.670448,0.886322,0.0542697,0.136248,0.400658,0.684348,0.226784,0.355548,0.111618,0.131819,0.501951,0.29728,0.461101,0.516982,0.937993,0.49212,0.824907,0.412885,0.0360126,0.527497,0.665355,0.951866,0.576678,0.316489,0.481604,0.351123,0.143745,0.326218,0.0304987,0.677876,0.732903,0.521584,0.637962,0.775017,0.775437,0.568591,0.295144,0.562836,0.585268,0.517829,0.191417,0.122764,0.543063,0.467297,0.161828,0.00383288,0.908506,0.556413,0.124771,0.421335,0.145277,0.499826,0.209866,0.161053,0.404502,0.227122,0.545725,0.510194,0.324927,0.464599,0.0175356,0.492939,0.514208,0.741824,0.832134,0.36199,0.477098,0.402444,0.67565,0.63066,0.561654,0.791655,0.25778,0.30931,0.0874503,0.102611,0.94405,0.770109,0.465861,0.16729,0.490826,0.382151,0.728045,0.121738,0.478932,0.806237,0.720195,0.227477,0.994175,0.271716,0.169555,0.818906,0.332829,0.519946,0.606309,0.563375,0.232242,0.318448,0.349608,0.0517394,0.833953,0.367546,0.332792,0.563401,0.630045,0.420962,0.35079,0.361457,0.227314,0.123139,0.731463,0.961449,0.839909,0.217443,0.967143,0.0291926,0.432733,0.101312,0.778533,0.538126,0.896948,0.00845468,0.792846,0.599688,0.321492,0.369303,0.946217,0.686762,0.866055,0.808747,0.348892,0.616936,0.209712,0.440372,0.837606,0.505494,0.425921,0.4085,0.225157,0.0557194,0.256232,0.605016,0.426567,0.697292,0.923838,0.14466,0.581091,0.231207,0.897138,0.735644,0.980696,0.120546,0.00126529,0.628769,0.737255,0.27124,0.256309,0.0328606,0.493285,0.769148,0.909496,0.498444,0.621294,0.248836,0.315557,0.0834891,0.0411363,0.571059,0.199981,0.239824,0.362644,0.0365231,0.400462,0.394129,0.0173844,0.813627,0.429765,0.395923,0.654346,0.727137,0.996542,0.826334,0.763263,0.66118,0.719677,0.171037,0.0675502,0.434608,0.677005,0.944011,0.65947,0.287178,0.970347,0.149148,0.117031,0.553544,0.494805,0.204898,0.782504,0.246226,0.34316,0.727921,0.259892,0.15831,0.882268,0.62909,0.65121,0.785055,0.908554,0.64126,0.799195,0.815095,0.8358,0.649723,0.757633,0.777271,0.111183,0.0192947,0.0980774,0.992164,0.42679,0.0265775,0.763311,0.516109,0.606721,0.302354,0.856726,0.464854,0.203595,0.0378308,0.789721,0.620037,0.0421366,0.730302,0.688485,0.306438,0.00608295,0.280479,0.24134,0.181028,0.632482,0.655328,0.505641,0.311844,0.00120205,0.179634,0.282173,0.343294,0.536402,0.426543,0.18751,0.100439,0.135887,0.87761,0.00493616,0.98439,0.00832087,0.226166,0.192229,0.107549,0.615081,0.0315881,0.793266,0.63868,0.199119,0.996884,0.0169469,0.914764,0.0400947,0.654064,0.242603,0.479859,0.101977,0.402497,0.203399,0.147252,0.584536,0.262239,0.831876,0.726148,0.345151,0.927959,0.484628,0.972286,0.323816,0.179519,0.767638,0.845366,0.355112,0.115203,0.567162,0.489792,0.969976,0.228991,0.56069,0.785181,0.621197,0.3543,0.505802,0.707186,0.860169,0.408505,0.587648,0.798995,0.163207,0.444701,0.962978,0.729302,0.343686,0.937518,0.490007,0.353435,0.210278,0.663335,0.603039,0.797895,0.421427,0.877255,0.336188,0.493151,0.360954,0.883527,0.18129,0.728012,0.459626,0.00314611,0.840308,0.710105,0.268468,0.389634,0.00661337,0.574709,0.490277,0.785056,0.530606,0.515263,0.586563,0.886397,0.915755,0.76512,0.820136,0.605946,0.0722305,0.735088,0.712214,0.397463,0.992153,0.0738942,0.878431,0.187519,0.780523,0.650626,0.890765,0.287618,0.512247,0.772207,0.971566,0.0936716,0.254597,0.731306,0.334731,0.549538,0.697089,0.734057,0.566261,0.530339,0.85234,0.913493,0.278234,0.528845,0.60192,0.767013,0.885018,0.657874,0.325927,0.436211,0.438058,0.291361,0.773746,0.738858,0.113347,0.468643,0.298262,0.968675,0.657237,0.891818,0.733595,0.585029,0.95212,0.836917,0.300931,0.47161,0.663317,0.149453,0.319124,0.984215,0.511641,0.536021,0.841464,0.0673634,0.115595,0.284675,0.831822,0.88707,0.475914,0.383,0.0739008,0.234674,0.150881,0.503057,0.474363,0.365553,0.87108,0.349934,0.547392,0.0321253,0.885071,0.814508,0.956627,0.989391,0.215125,0.931285,0.127205,0.630396,0.35793,0.181334,0.893648,0.36595,0.717654,0.609759,0.488565,0.351398,0.945043,0.340676,0.529719,0.195596,0.588248,0.872296,0.860441,0.04481,0.38802,0.433938,0.0154063,0.730452,0.383872,0.761405,0.185088,0.527507,0.750344,0.129197,0.665533,0.792306,0.931882,0.512931,0.834073,0.99532,0.541207,0.322717,0.264412,0.592197,0.344728,0.73306,0.93825,0.333113,0.109866,0.335296,0.993385,0.0347182,0.0220418,0.778375,0.755521,0.259934,0.735846,0.350246,0.807169,0.0795853,0.800304,0.122169,0.708366,0.047091,0.733879,0.370649,0.0604861,0.616091,0.543297,0.0310332,0.476529,0.24805,0.874787,0.301872,0.539468,0.856033,0.150871,0.581613,0.374101,0.816459,0.634414,0.724565,0.387747,0.869902,0.0773863,0.134758,0.504723,0.126076,0.970062,0.462227,0.330712,0.788306,0.234667,0.263839,0.967594,0.390389,0.291848,0.419437,0.486917,0.271208,0.516564,0.67611,0.741631,0.531346,0.448997,0.970662,0.767939,0.323353,0.91307,0.707062,0.360916,0.262088,0.224328,0.967284,0.390431,0.905182,0.541551,0.397267,0.184063,0.478208,0.0508859,0.188699,0.447953,0.189806,0.813463,0.256401,0.123216,0.312746,0.424895,0.569368,0.484176,0.593265,0.855114,0.0830688,0.815667,0.985401,0.440619,0.0634367,0.661916,0.484207,0.662194,0.600303,0.624604,0.118513,0.324738,0.895261,0.713185,0.329188,0.53001,0.32414,0.133756,0.311077,0.847167,0.526731,0.391938,0.650919,0.106015,0.939157,0.413731,0.591518,0.56564,0.195904,0.0222597,0.568115,0.341631,0.758201,0.549882,0.643466,0.859831,0.657559,0.554821,0.727387,0.194078,0.539096,0.574701,0.0680291,0.984047,0.873377,0.866322,0.828947,0.987543,0.228953,0.629188,0.652536,0.10151,0.754441,0.66379,0.601393,0.632786,0.341916,0.595602,0.159002,0.491534,0.300154,0.480049,0.52183,0.827369,0.224435,0.188344,0.311724,0.142862,0.317955,0.623382,0.248676,0.661895,0.909937,0.767943,0.3075,0.83793,0.317696,0.333157,0.033547,0.295442,0.697929,0.909722,0.425102,0.533751,0.765165,0.903249,0.84306,0.342497,0.550298,0.604936,0.8296,0.234492,0.448861,0.417148,0.416906,0.660059,0.900282,0.262656,0.580223,0.367527,0.651737,0.625288,0.330546,0.121406,0.0630462,0.690986,0.319861,|0.91014,0.493336,0.0596431,0.434201,0.65464,0.0107207,0.444481,0.0493521,0.6977,0.873416,0.898326,0.820613,0.581381,0.0907857,0.232707,0.904083,0.725559,0.61382,0.310223,0.0594496,0.71119,0.0890468,0.9318,0.443158,0.0811933,0.336078,0.497552,0.0811825,0.549684,0.251079,0.86411,0.395475,0.382424,0.66683,0.118965,0.716848,0.683136,0.015043,0.119041,0.538622,0.585972,0.708775,0.583014,0.89101,0.505118,0.442383,0.129446,0.840046,0.42453,0.553027,0.364907,0.405464,0.570631,0.293283,0.81258,0.713506,0.469569,0.126206,0.361303,0.51884,0.566875,0.328739,0.832671,0.764623,0.0310557,0.618516,0.049054,0.211301,0.0555626,0.826029,0.98916,0.0617245,0.157015,0.728864,0.786857,0.693202,0.0596954,0.631584,0.682429,0.731633,0.60152,0.325369,0.310612,0.662317,0.820665,0.170749,0.906108,0.582107,0.584794,0.301896,0.82348,0.463639,0.682664,0.622833,0.662474,0.730043,0.94069,0.515643,0.277313,0.841194,0.0126497,0.67077,0.777945,0.36548,0.47439,0.126301,0.989219,0.801806,0.913979,0.354776,0.439273,0.971152,0.407364,0.111674,0.385796,0.653469,0.84197,0.0344566,0.034569,0.545699,0.464329,0.292014,0.708969,0.928103,0.408332,0.540514,0.359454,0.408349,0.294347,0.539246,0.299776,0.170165,0.379447,0.926212,0.792233,0.933591,0.525989,0.998715,0.58037,0.903719,0.773137,0.12756,0.429643,0.907971,0.493342,0.231679,0.254335,0.981466,0.738914,0.694971,0.969579,0.596185,0.538529,0.165521,0.722062,0.397544,0.808549,0.802444,0.618149,0.647366,0.406938,0.653708,0.663592,0.277466,0.0378568,0.634748,0.727581,0.272638,0.256868,0.0956727,0.415662,0.811758,0.534858,0.761619,0.802336,0.490572,0.78433,0.498538,0.167571,0.160214,0.899639,0.823422,0.413143,0.888791,0.406912,0.0608612,0.614605,0.930465,0.52697,0.548413,0.503509,0.700903,0.989608,0.680844,0.877319,0.287718,0.787283,0.119594,0.258775,0.250882,0.591863,0.780944,0.466207,0.876134,0.0152587,0.868795,0.170279,0.947453,0.00149447,0.317974,0.478202,0.156281,0.7169,0.611025,0.582836,0.644325,0.21852,0.579585,0.628254,0.801226,0.0423273,0.998747,0.659301,0.493187,0.207242,0.344724,0.209952,0.537403,0.523665,0.396245,0.89984,0.337642,0.620402,0.765346,0.865731,0.256209,0.425232,0.928838,0.903371,0.841734,0.0315491,0.323878,0.748854,0.257261,0.23739,0.361295,0.455073,0.887158,0.357525,0.325504,0.42164,0.644144,0.498745,0.410768,0.505701,0.91174,0.773431,0.724397,0.843865,0.524172,0.370246,0.60901,0.123947,0.275432,0.903757,0.751696,0.710068,0.484704,0.982867,0.112279,0.237883,0.389964,0.712979,0.201238,0.503965,0.154572,0.62475,0.883417,0.739522,0.244958,0.13928,0.868896,0.132181,0.969204,0.437594,0.0980943,0.10895,0.935728,0.537505,0.873396,0.561181,0.663474,0.955439,0.0595678,0.787994,0.684385,0.49985,0.997969,0.499108,0.0474254,0.413053,0.510908,0.641385,0.460774,0.91837,0.520657,0.604107,0.00265974,0.460827,0.868392,0.675916,0.0308585,0.998626,0.924977,0.735211,0.797154,0.34895,0.957203,0.111717,0.756987,0.943799,0.232902,0.923108,0.00785315,0.553564,0.469866,0.169224,0.248308,0.671622,0.946763,0.811152,0.655796,0.950162,0.474684,0.560414,0.485733,0.914797,0.922835,0.241427,0.734273,0.631343,0.0272547,0.520333,0.318643,0.725485,0.0897643,0.367595,0.197947,0.624761,0.0410902,0.717044,0.408052,0.918181,0.977338,0.795019,0.765853,0.620556,0.370845,0.423113,0.874291,0.273647,0.371368,0.899503,0.284087,0.0336403,0.366403,0.932678,0.616902,0.648253,0.917406,0.354933,0.43829,0.96857,0.477182,0.88687,0.350645,0.288499,0.579324,0.773788,0.95783,0.841107,0.00413984,0.823504,0.983771,0.172542,0.727958,0.0466704,0.0653343,0.121411,0.374138,0.22673,0.939952,0.208592,0.990326,0.181661,0.931445,0.282469,0.22312,0.398917,0.161997,0.317883,0.00700402,0.751409,0.11325,0.242059,0.067398,0.190517,0.871107,0.117221,0.945264,0.23541,0.564157,0.532737,0.0594056,0.519004,0.715744,0.51226,0.940482,0.306291,0.224405,0.0440746,0.875614,0.549817,0.653291,0.844539,0.13846,0.978308,0.00430381,0.221408,0.413862,0.399015,0.758885,0.974172,0.383802,0.705798,0.741264,0.13486,0.857041,0.589778,0.613893,0.783762,0.254198,0.497282,0.128042,0.464718,0.166207,0.890021,0.354293,0.886132,0.0611295,0.98009,0.15775,0.664909,0.056528,0.80378,0.856275,0.0490959,0.0677542,0.789149,0.136256,0.986452,0.24274,0.447226,0.589791,0.601224,0.240969,0.837486,0.825029,0.814353,0.345293,0.939197,0.159338,0.953001,0.345504,0.556624,0.0853611,0.99048,0.220905,0.56174,0.216885,0.0836354,0.0605733,0.599382,0.839988,0.270674,0.93043,0.227839,0.857317,0.136189,0.306659,0.147362,0.309208,0.0232328,0.0719725,0.322861,0.55719,0.835082,0.738499,0.640024,0.730578,0.372349,0.472198,0.116147,0.334327,0.0586203,0.257019,0.0563754,0.0449345,0.554979,0.728006,0.87784,0.275815,0.527419,0.216284,0.694635,0.130884,0.728897,0.962266,0.403544,0.192836,0.804073,0.987359,0.0334529,0.220208,0.653648,0.510869,0.526722,0.355328,0.552355,0.157626,0.352145,0.793203,0.620855,0.529644,0.516545,0.250573,0.0928478,0.119031,0.351084,0.506788,0.352966,0.359245,0.165021,0.0248829,0.563939,0.195919,0.694236,0.686133,0.121242,0.121982,0.348479,0.355394,0.325793,0.397455,0.889411,0.592265,0.225397,0.801453,0.892054,0.901417,0.493602,0.351199,0.434775,0.980006,0.828999,0.429851,0.228104,0.1146,0.671182,0.445886,0.181771,0.168238,0.969347,0.227843,0.884935,0.542975,0.503332,0.00871813,0.856777,0.181638,0.0131952,0.117356,0.594494,0.211652,0.890277,0.0380441,0.630696,0.769284,0.994925,0.545767,0.725753,0.398856,0.480498,0.48278,0.765809,0.665133,0.099776,0.581915,0.279644,0.418676,0.271661,0.394313,0.0245601,0.676568,0.205777,0.691928,0.628027,0.508491,0.852044,0.0633413,0.496547,0.528857,0.305785,0.874743,0.94928,0.441316,0.271807,0.339311,0.319289,0.676039,0.124562,0.364134,0.00626624,0.333408,0.314281,0.301713,0.830929,0.200549,0.272289,0.456548,0.593956,0.403239,0.661251,0.120455,0.915813,0.416353,0.923075,0.256999,0.21553,0.267174,0.698987,0.757233,0.031341,0.544339,0.638788,0.241183,0.933953,0.0728892,0.351612,0.825344,0.735286,0.911875,0.518083,0.0401059,0.292953,0.921274,0.916759,0.874117,0.526959,0.819897,0.632966,0.436533,0.43274,0.805909,0.635202,0.42217,0.0157179,0.0373617,0.735979,0.612805,0.835966,0.270773,0.841616,0.880558,0.621762,0.460427,0.0049867,0.73687,0.237816,0.677764,0.823645,0.118001,0.425847,0.0570475,0.191819,0.19502,0.500308,0.288414,0.920273,0.00258213,0.0635399,0.378502,0.191575,0.443826,0.383973,0.444166,0.28548,0.61248,0.291735,0.812462,0.809837,0.92527,0.963621,0.471844,0.681078,0.990016,0.745226,0.315223,0.420379,0.613105,0.590921,0.52717,0.555879,0.570936,0.914018,0.50595,0.468417,0.249622,0.909914,0.815275,0.387841,0.551177,0.986676,0.648797,0.414163,0.912192,0.470388,0.456643,0.335797,0.331295,0.923728,0.999019,0.392919,0.747505,0.699525,0.798035,0.234506,0.282019,0.94548,0.602128,0.187974,0.62319,0.871357,0.870683,0.656942,0.142885,0.484383,0.620145,0.252516,0.0822285,0.898203,0.600354,0.845982,0.355978,0.897194,0.664029,0.426273,0.571753,0.138067,0.443465,0.722363,0.0926014,0.377467,0.040606,0.114207,0.604196,0.29589,0.00546449,0.852839,0.555248,0.708096,0.0659124,0.663871,0.112625,0.25045,0.224871,0.960984,0.387744,0.656368,0.854862,0.0528642,0.153321,0.693657,0.959323,0.781829,0.105258,0.313582,0.348926,0.785764,0.668884,0.119195,0.0115363,0.130496,0.0288305,0.429894,0.162414,0.529391,0.190118,0.614336,0.164545,0.291695,0.785394,0.915721,0.658566,0.470003,0.0905771,0.492279,0.90015,0.584887,0.298604,0.191515,0.0720527,0.120502,0.479292,0.837838,0.379982,0.3481,0.639249,0.473673,0.72117,0.56489,0.329269,0.31583,0.850629,0.572072,0.360066,0.336732,0.550117,0.247228,0.0549038,0.981026,0.654238,0.548345,0.130075,0.872664,0.871062,0.47857,0.254317,0.581164,0.745535,0.784114,0.0155979,0.714659,0.352823,0.702239,0.645102,0.871908,0.996265,0.035819,0.0311689,0.150718,0.500178,0.564134,0.940986,0.963215,0.0547659,0.25274,0.992799,0.65373,0.600772,0.460032,0.58988,0.990598,0.422037,0.339001,0.202656,0.813397,0.618788,0.250138,0.58149,0.932469,0.0867859,0.903378,0.45786,0.621154,0.510454,0.648341,0.273656,0.386373,0.108958,0.795371,0.403019,0.648181,0.804617,0.680347,0.176095,0.890254,0.590916,0.926209,0.241277,0.978013,0.757095,0.00813919,0.0932397,0.326356,0.249202,0.658166,0.909944,0.178622,0.59228,0.911694,0.956034,0.701128,0.925978,0.329559,0.0134467,0.138075,0.0225587,0.142857,0.394608,0.895317,0.551449,0.88398,0.500842,0.270174,0.892696,0.634735,0.387599,0.0323184,0.990782,0.849603,0.742571,0.288526,0.816726,0.00586474,0.766586,0.563603,0.0617875,0.39193,0.0630306,0.140803,0.310672,0.720921,0.596473,0.538198,0.76146,0.949833,0.423195,0.542067,0.298397,0.747596,0.291941,0.0417401,0.211354,0.683852,0.201825,0.670085,0.23499,0.632466,0.0189131,0.0756206,0.83104,0.346235,0.291698,0.173421,0.0021171,0.397172,0.833424,0.537503,0.949194,0.703589,0.27709,0.839662,0.958816,0.107041,0.176775,0.122986,0.928791,0.343625,0.571116,0.699613,0.152403,0.5765,0.640274,0.921923,0.504513,0.293441,0.637194,0.472331,0.612382,0.924999,0.443227,0.793193,0.657885,0.344075,0.692332,0.184603,0.0841235,0.312663,0.0761731,0.407225,0.0506144,0.677281,0.796126,0.390583,0.604134,0.973828,0.319608,0.842928,0.710737,|0.600316,0.577712,0.658545,0.249138,0.687159,0.719436,0.138227,0.0797123,0.929229,0.275565,0.950945,0.521686,0.661778,0.760742,0.258216,0.207869,0.272664,0.713305,0.222152,0.685296,0.821384,0.65926,0.0851564,0.0502317,0.184011,0.632566,0.220413,0.731347,0.382298,0.779377,0.127961,0.227033,0.0665625,0.208786,0.943666,0.181199,0.222633,0.155644,0.143104,0.172893,0.873197,0.0289097,0.086952,0.4957,0.607647,0.755766,0.193705,0.351763,0.192055,0.490888,0.29117,0.794645,0.0114962,0.43252,0.232448,0.63665,0.741441,0.273048,0.000171065,0.713342,0.183931,0.986024,0.421553,0.17977,0.370424,0.503081,0.369672,0.175315,0.458965,0.0708568,0.385871,0.157682,0.793801,0.607399,0.335393,0.262006,0.405213,0.324278,0.0376105,0.201086,0.573451,0.616219,0.560403,0.651221,0.494757,0.525961,0.518122,0.676378,0.894332,0.0672123,0.674399,0.00772125,0.360025,0.0964535,0.134567,0.569354,0.124209,0.501359,0.575594,0.251074,0.0612786,0.501491,0.280811,0.33081,0.542002,0.334531,0.616878,0.0776974,0.448503,0.373055,0.516537,0.123877,0.451333,0.344275,0.413722,0.0884486,0.613519,0.673007,0.0712683,0.663365,0.439217,0.949008,0.653015,0.276364,0.268761,0.159777,0.920754,0.712594,0.979383,0.8652,0.108136,0.160619,0.989908,0.988385,0.508133,0.300871,0.99889,0.550053,0.876752,0.676532,0.830161,0.343983,0.457385,0.345271,0.357734,0.094821,0.112881,0.828785,0.19642,0.985543,0.0767453,0.929142,0.0650138,0.483669,0.0573201,0.204989,0.122482,0.0120162,0.711139,0.292404,0.0609426,0.233572,0.399838,0.533629,0.200897,0.861238,0.168433,0.273633,0.738555,0.283931,0.219567,0.246968,0.90459,0.797313,0.905042,0.468793,0.542231,0.637328,0.119422,0.179119,0.167415,0.565562,0.197979,0.996608,0.136853,0.152788,0.678671,0.0227343,0.951527,0.216497,0.0677891,0.0813383,0.333686,0.773805,0.268476,0.763765,0.892057,0.833425,0.628099,0.71631,0.442518,0.26228,0.82368,0.60796,0.722421,0.346614,0.923558,0.449157,0.244271,0.0437407,0.974943,0.647478,0.957401,0.640178,0.579872,0.795248,0.433889,0.783478,0.0978459,0.382649,0.424893,0.240712,0.510247,0.98423,0.69507,0.938737,0.934844,0.81304,0.514551,0.963281,0.322885,0.780918,0.356701,0.0352607,0.563821,0.750817,0.45298,0.0477144,0.515278,0.459134,0.371671,0.409434,0.695459,0.0778686,0.0367832,0.622271,0.279579,0.686028,0.00308603,0.452797,0.193097,0.18939,0.963993,0.290636,0.6075,0.0403445,0.811173,0.712873,0.932162,0.417882,0.452039,0.344512,0.157672,0.808521,0.979631,0.408175,0.114203,0.0163217,0.0913916,0.676098,0.466298,0.87626,0.445477,0.897453,0.815651,0.322354,0.2654,0.13983,0.266852,0.59181,0.885698,0.141295,0.0108598,0.986775,0.0459159,0.196977,0.196258,0.0614581,0.257816,0.486155,0.682288,0.401499,0.294488,0.670286,0.682144,0.260866,0.553757,0.18864,0.388273,0.402561,0.915275,0.579946,0.3931,0.121973,0.520922,0.791119,0.343197,0.933451,0.226867,0.844927,0.5671,0.185825,0.383657,0.664925,0.530994,0.733366,0.75709,0.582825,0.213629,0.728286,0.562085,0.462556,0.742048,0.368423,0.110208,0.409332,0.789268,0.171442,0.902494,0.764895,0.455817,0.129224,0.577404,0.226362,0.279035,0.891437,0.937441,0.790003,0.704954,0.18878,0.0351005,0.250887,0.571331,0.283751,0.131773,0.398495,0.818922,0.11944,0.931498,0.961265,0.542341,0.667682,0.884118,0.93538,0.0597902,0.0436184,0.994629,0.703471,0.909982,0.342336,0.927925,0.051879,0.506846,0.883396,0.185953,0.298654,0.204024,0.0925179,0.096531,0.797209,0.0162511,0.425593,0.984041,0.67649,0.973812,0.772025,0.515152,0.569263,0.342531,0.69054,0.882115,0.972349,0.442493,0.605048,0.541321,0.718106,0.167619,0.485249,0.0308482,0.394528,0.524136,0.104145,0.416526,0.576183,0.264392,0.770087,0.574213,0.640747,0.351616,0.355927,0.902828,0.997038,0.900602,0.309587,0.382283,0.670789,0.689629,0.173312,0.832631,0.966148,0.351829,0.0251305,0.368019,0.2914,0.628257,0.248811,0.861834,0.0621583,0.347131,0.68477,0.457564,0.328088,0.0238744,0.359716,0.75843,0.553914,0.635123,0.663233,0.161533,0.95066,0.819024,0.925219,0.39151,0.334357,0.772358,0.149899,0.605211,0.695105,0.849834,0.878654,0.49375,0.0733752,0.898687,0.196063,0.841606,0.610767,0.369898,0.271876,0.724087,0.725861,0.77373,0.615292,0.904383,0.56622,0.131524,0.0527053,0.511994,0.268392,0.248799,0.425571,0.579391,0.519653,0.520241,0.799254,0.639439,0.329091,0.808986,0.75933,0.700084,0.258761,0.777749,0.586535,0.102177,0.971393,0.187136,0.588554,0.361905,0.416908,0.434964,0.960864,0.123846,0.621511,0.762408,0.0169242,0.727547,0.887538,0.869319,0.56865,0.0634385,0.163297,0.554362,0.58792,0.242178,0.727348,0.537379,0.935058,0.991356,0.704021,0.772951,0.809623,0.401439,0.236098,0.0998768,0.68322,0.381869,0.509568,0.368898,0.739696,0.625117,0.632937,0.159561,0.381934,0.868734,0.365468,0.113331,0.0938422,0.478075,0.30173,0.241031,0.771062,0.102725,0.199225,0.296227,0.814899,0.988559,0.701398,0.162771,0.841171,0.352953,0.0411854,0.502805,0.853522,0.0436912,0.944461,0.0710759,0.837755,0.973568,0.108116,0.770387,0.892197,0.344589,0.717939,0.253131,0.281885,0.667697,0.744177,0.0837476,0.478995,0.0406441,0.800733,0.212457,0.808371,0.739527,0.549273,0.705401,0.404911,0.913575,0.43937,0.708832,0.580213,0.764757,0.530725,0.58897,0.569859,0.967129,0.834372,0.264893,0.50664,0.973353,0.88664,0.85939,0.593761,0.723101,0.592215,0.878956,0.387048,0.707557,0.170852,0.469335,0.766228,0.0767646,0.300385,0.106474,0.303866,0.414225,0.704771,0.548197,0.11892,0.193595,0.122806,0.791744,0.664921,0.752746,0.813563,0.937922,0.132193,0.860928,0.427409,0.61806,0.405327,0.0258101,0.15621,0.585244,0.682168,0.570887,0.00803983,0.394605,0.792226,0.458649,0.138038,0.811593,0.474965,0.234536,0.227454,0.206071,0.821503,0.845239,0.357873,0.166734,0.981571,0.246405,0.555702,0.637855,0.402315,0.0171826,0.305258,0.529906,0.133492,0.973023,0.0497345,0.683815,0.391089,0.691189,0.493549,0.519972,0.565981,0.20911,0.127019,0.932134,0.612354,0.600849,0.788465,0.937663,0.580419,0.390353,0.563166,0.453586,0.361537,0.642257,0.150091,0.887467,0.643635,0.747435,0.480619,0.443751,0.374134,0.182195,0.608036,0.17221,0.510972,0.492839,0.154121,0.551431,0.845779,0.66596,0.482319,0.71737,0.323276,0.945075,0.869778,0.134576,0.642574,0.948361,0.301806,0.0760975,0.405226,0.113294,0.499733,0.172708,0.390336,0.334366,0.42498,0.738117,0.677509,0.614005,0.00670975,0.739034,0.275534,0.110353,0.69362,0.571848,0.999411,0.403933,0.596643,0.217562,0.546155,0.168101,0.262441,0.850513,0.750974,0.819199,0.457647,0.901787,0.579945,0.698545,0.297414,0.488036,0.121543,0.870891,0.379496,0.52198,0.906627,0.605952,0.00595492,0.615568,0.925689,0.258052,0.958237,0.120454,0.308618,0.342611,0.5603,0.234895,0.0905991,0.504875,0.468388,0.503429,0.833885,0.561928,0.84283,0.353111,0.316255,0.176106,0.198259,0.75217,0.479558,0.150745,0.967313,0.406802,0.811108,0.724208,0.732473,0.0311162,0.685444,0.233696,0.84429,0.727026,0.538934,0.395308,0.930248,0.239631,0.248468,0.277634,0.292479,0.210107,0.256468,0.407871,0.363881,0.710463,0.813992,0.740865,0.138587,0.201463,0.0821375,0.944359,0.366944,0.0206643,0.96395,0.275614,0.42791,0.0749215,0.890569,0.50376,0.0211562,0.171666,0.773909,0.0540447,0.593845,0.473592,0.361719,0.406703,0.552622,0.895344,0.80895,0.62508,0.554183,0.319273,0.63119,0.25754,0.457668,0.199439,0.635154,0.863454,0.0881553,0.212405,0.73002,0.584366,0.188483,0.697364,0.644821,0.918391,0.75286,0.454451,0.37757,0.931031,0.0873522,0.746347,0.193056,0.0624484,0.256696,0.246792,0.4924,0.57691,0.126245,0.976686,0.206485,0.894678,0.542107,0.0762977,0.609292,0.0375371,0.45218,0.948947,0.413326,0.770313,0.10194,0.632737,0.122723,0.610284,0.683006,0.218963,0.101936,0.796064,0.67419,0.616816,0.502806,0.546807,0.125228,0.247357,0.99897,0.597984,0.719084,0.655994,0.984481,0.118227,0.865577,0.456215,0.267604,0.271114,0.69713,0.0797966,0.0604439,0.455772,0.0130458,0.127241,0.917149,0.336172,0.945519,0.464369,0.486354,0.928113,0.60565,0.726605,0.984006,0.0464898,0.826602,0.445749,0.710208,0.394897,0.602236,0.669737,0.097692,0.637034,0.856365,0.880409,0.515756,0.189342,0.28643,0.386619,0.713526,0.153284,0.360576,0.372575,0.763154,0.500906,0.726204,0.513344,0.272471,0.764383,0.646031,0.479216,0.112812,0.0918949,0.194431,0.227876,0.150791,0.685402,0.403604,0.969802,0.439852,0.848966,0.137506,0.834616,0.989604,0.396888,0.148338,0.82799,0.581814,0.413294,0.983098,0.753945,0.220957,0.201217,0.859754,0.297542,0.318819,0.821409,0.820396,0.146929,0.546982,0.449283,0.753061,0.363274,0.49697,0.158826,0.588512,0.796127,0.624606,0.66692,0.990244,0.355241,0.81899,0.385505,0.373076,0.397595,0.425751,0.357544,0.368873,0.661885,0.469685,0.963152,0.814537,0.00733113,0.420626,0.0441856,0.00589538,0.740981,0.00455743,0.376182,0.255268,0.974394,0.069743,0.629241,0.25396,0.859003,0.37662,0.0653748,0.297319,0.809394,0.567155,0.471823,0.986965,0.188332,0.347701,0.742439,0.17397,0.634644,0.303457,0.865247,0.0804099,0.351279,0.503389,0.905629,0.198821,0.580064,0.511791,0.962339,0.31493,0.0138714,0.426982,0.519735,0.454142,0.866513,0.186576,0.657511,0.385034,0.393265,0.313671,0.0902172,0.774804,0.123969,0.205787,0.580402,0.229868,0.789407,0.682337,0.591415,0.937295,0.816837,0.299785,|0.975174,0.32083,0.799214,0.0891834,0.89452,0.509043,0.733062,0.963269,0.441974,0.12452,0.652762,0.0522077,0.146565,0.0321188,0.091841,0.99114,0.921711,0.663824,0.726592,0.172005,0.0836793,0.23837,0.996777,0.499397,0.945146,0.742595,0.995227,0.0448385,0.891209,0.875361,0.41722,0.114832,0.012778,0.195997,0.143428,0.0440921,0.31478,0.690207,0.954544,0.0737811,0.301595,0.299808,0.678519,0.93639,0.584678,0.264974,0.465636,0.658605,0.395165,0.183147,0.608441,0.757011,0.450358,0.518019,0.57428,0.333554,0.317094,0.302372,0.643441,0.28061,0.165146,0.854447,0.565255,0.522098,0.141104,0.407988,0.499329,0.751522,0.424094,0.975981,0.116573,0.0694429,0.983739,0.83173,0.0358991,0.678486,0.835127,0.691814,0.245981,0.24828,0.199373,0.0607519,0.579988,0.147135,0.254665,0.592441,0.940699,0.190994,0.994131,0.856618,0.439197,0.68867,0.759726,0.240476,0.144891,0.663221,0.555652,0.781195,0.248927,0.301875,0.35093,0.920369,0.21453,0.529756,0.795723,0.803128,0.204894,0.526445,0.534685,0.0128023,0.172503,0.846014,0.0691707,0.534773,0.182232,0.261412,0.43697,0.496731,0.541656,0.611891,0.30436,0.376891,0.0113693,0.102139,0.657456,0.301096,0.259789,0.504527,0.491235,0.780173,0.322528,0.461527,0.338672,0.378752,0.659469,0.948635,0.1834,0.406682,0.463082,0.55437,0.0580794,0.0272204,0.9808,0.211866,0.644618,0.364078,0.666678,0.109065,0.765214,0.505112,0.528712,0.291524,0.521317,0.308058,0.423311,0.23856,0.0245561,0.75144,0.303425,0.156207,0.528439,0.447501,0.0196857,0.607282,0.0810831,0.368762,0.505785,0.127094,0.439773,0.885893,0.925102,0.313938,0.437828,0.873895,0.381114,0.185845,0.937737,0.943032,0.97203,0.440268,0.166788,0.968017,0.4095,0.71361,0.904786,0.0614778,0.672385,0.927925,0.714597,0.0461369,0.642876,0.3925,0.0147008,0.740135,0.11075,0.155015,0.669688,0.0850927,0.931621,0.050182,0.446311,0.0201573,0.708596,0.00962543,0.477861,0.686354,0.935038,0.825657,0.0889493,0.546474,0.103845,0.216802,0.806218,0.20506,0.95455,0.938641,0.5728,0.402697,0.0588406,0.231504,0.650968,0.823659,0.773881,0.821883,0.362487,0.58183,0.247746,0.410351,0.787083,0.00196189,0.141838,0.569627,0.209684,0.125387,0.294009,0.0252707,0.157675,0.156398,0.952706,0.898415,0.918759,0.719103,0.0361319,0.767508,0.385001,0.485791,0.482624,0.125743,0.816871,0.968791,0.592637,0.8016,0.997691,0.214397,0.913071,0.667549,0.272846,0.863454,0.146313,0.746787,0.362131,0.636426,0.460262,0.281688,0.127011,0.539827,0.818417,0.665483,0.257805,0.262971,0.152603,0.997394,0.864299,0.792872,0.500479,0.541762,0.782773,0.796157,0.256941,0.271207,0.234548,0.736509,0.705643,0.24189,0.487794,0.0246334,0.870297,0.729913,0.855883,0.27989,0.000166237,0.161944,0.16555,0.0177404,0.484113,0.0690415,0.59588,0.877936,0.544557,0.789567,0.88326,0.752944,0.258586,0.633331,0.889554,0.419797,0.290474,0.791789,0.935784,0.923822,0.145943,0.0522094,0.815658,0.779972,0.34672,0.876877,0.280838,0.945358,0.755844,0.122758,0.439674,0.068029,0.739268,0.740588,0.101374,0.504574,0.854631,0.112425,0.414686,0.456757,0.0548924,0.945801,0.449816,0.373098,0.268668,0.967996,0.173792,0.313188,0.619931,0.502793,0.0452093,0.358,0.867266,0.0225148,0.783572,0.901169,0.995158,0.484075,0.772149,0.872033,0.149044,0.850442,0.506865,0.725731,0.060659,0.522088,0.583629,0.681486,0.865535,0.31395,0.577164,0.168709,0.814616,0.268875,0.144453,0.0962808,0.567076,0.261182,0.840579,0.56014,0.793066,0.380006,0.141994,0.970407,0.00878811,0.653697,0.811529,0.241209,0.299605,0.829874,0.484258,0.234955,0.286358,0.998578,0.237257,0.783413,0.26568,0.965212,0.793153,0.575609,0.963527,0.584146,0.849604,0.685867,0.457655,0.677001,0.106231,0.940021,0.0547817,0.557747,0.0207456,0.429066,0.241124,0.130598,0.125818,0.337022,0.153657,0.921034,0.982412,0.641435,0.782779,0.408741,0.951547,0.827471,0.251012,0.00216037,0.907776,0.42706,0.123276,0.355931,0.347007,0.152398,0.675159,0.117695,0.307424,0.299548,0.462474,0.81193,0.197685,0.458376,0.778981,0.947925,0.408902,0.168763,0.260569,0.29607,0.79781,0.206757,0.357135,0.200436,0.231447,0.60398,0.347402,0.838219,0.67795,0.959782,0.504701,0.897462,0.40208,0.686397,0.189275,0.483584,0.103401,0.220264,0.262219,0.444842,0.617704,0.893207,0.590636,0.359657,0.267331,0.957768,0.440102,0.926144,0.510808,0.60334,0.139117,0.114224,0.0471993,0.564247,0.770545,0.910258,0.529024,0.987262,0.620979,0.708525,0.412948,0.519789,0.631894,0.974214,0.190144,0.196275,0.536493,0.940927,0.988992,0.829883,0.827993,0.607278,0.404579,0.996747,0.976378,0.760867,0.452478,0.0848089,0.00415123,0.696706,0.383087,0.250142,0.18185,0.193681,0.383197,0.223138,0.398148,0.19058,0.0775219,0.148065,0.322318,0.0856768,0.0496885,0.616771,0.708744,0.272042,0.0338964,0.329002,0.62461,0.570192,0.138569,0.0508229,0.0124534,0.630432,0.310485,0.164088,0.125887,0.240797,0.135944,0.832011,0.0521394,0.209825,0.462024,0.282647,0.549738,0.758007,0.0318521,0.167895,0.602899,0.687949,0.478723,0.858905,0.605371,0.100633,0.424512,0.460575,0.143201,0.366971,0.4674,0.970088,0.878291,0.623555,0.33109,0.0112797,0.382832,0.493461,0.859072,0.775797,0.973071,0.142383,0.503393,0.919369,0.312239,0.00904292,0.828417,0.775629,0.227691,0.177621,0.264078,0.206404,0.0312068,0.396732,0.484771,0.755959,0.650577,0.251112,0.789702,0.487651,0.686328,0.51472,0.646969,0.226936,0.716854,0.316848,0.207963,0.209345,0.723078,0.0908123,0.735911,0.925979,0.318207,0.911151,0.00594574,0.5842,0.418933,0.688153,0.404416,0.149329,0.226865,0.157982,0.723785,0.118538,0.50417,0.747821,0.646698,0.214927,0.272536,0.0923554,0.949176,0.332558,0.00201118,0.65883,0.542309,0.486997,0.415725,0.854499,0.68682,0.169291,0.624118,0.550913,0.879373,0.671233,0.958465,0.764553,0.482985,0.754966,0.748548,0.418352,0.567331,0.0732761,0.0414997,0.921843,0.767358,0.532929,0.899306,0.480063,0.816953,0.900679,0.718481,0.572462,0.763696,0.368222,0.894287,0.153869,0.976648,0.024454,0.973982,0.328337,0.289953,0.152612,0.394479,0.574558,0.28341,0.983631,0.726428,0.468833,0.485567,0.829016,0.328626,0.054135,0.106074,0.84918,0.845487,0.026744,0.227325,0.302359,0.258539,0.988812,0.233022,0.649576,0.600031,0.407937,0.182522,0.590978,0.321791,0.313415,0.208084,0.580662,0.944791,0.980618,0.887317,0.520639,0.11514,0.936759,0.877914,0.779126,0.210506,0.747914,0.111825,0.950786,0.230242,0.121344,0.547434,0.467247,0.18686,0.704999,0.996218,0.133918,0.316722,0.0213469,0.478415,0.853897,0.563475,0.365085,0.181977,0.0328597,0.0513421,0.149613,0.856061,0.143022,0.346348,0.935732,0.00118053,0.273606,0.200761,0.633497,0.471915,0.727756,0.726141,0.511247,0.746047,0.202372,0.399904,0.140364,0.189892,0.74483,0.618262,0.466295,0.0780887,0.224381,0.993191,0.287682,0.87116,0.476028,0.276145,0.90132,0.451821,0.370971,0.653049,0.770132,0.703185,0.842906,0.697777,0.280834,0.457797,0.441488,0.428972,0.109233,0.707142,0.17255,0.771319,0.665138,0.991149,0.931314,0.110803,0.364318,0.773316,0.678205,0.537341,0.965966,0.528029,0.299528,0.867792,0.681537,0.779451,0.203119,0.221309,0.397512,0.659057,0.645847,0.977976,0.146077,0.915952,0.716461,0.890237,0.446918,0.70714,0.781999,0.385152,0.230246,0.663561,0.132106,0.278797,0.506664,0.994077,0.907155,0.526158,0.584879,0.0761805,0.341073,0.059625,0.914707,0.0639054,0.260722,0.0920705,0.422177,0.697352,0.226758,0.332665,0.984799,0.841338,0.364444,0.646513,0.283243,0.977076,0.452322,0.526227,0.126823,0.572559,0.603396,0.431261,0.354789,0.116614,0.233432,0.759827,0.405351,0.18958,0.794825,0.44642,0.338493,0.619056,0.214754,0.115527,0.223311,0.436602,0.260439,0.616065,0.441175,0.527085,0.17093,0.0625939,0.318421,0.738779,0.140715,0.150976,0.832547,0.919475,0.632563,0.336281,0.507772,0.777837,0.783649,0.571476,0.709179,0.274791,0.544298,0.338508,0.462715,0.568435,0.131975,0.081568,0.206917,0.955608,0.338457,0.280399,0.194308,0.369921,0.649072,0.0154578,0.732428,0.877321,0.584798,0.752943,0.688372,0.549295,0.0738951,0.212582,0.647002,0.762501,0.016996,0.285417,0.446488,0.805048,0.741318,0.176198,0.763338,0.994891,0.489138,0.613656,0.78032,0.907365,0.900232,0.382938,0.249773,0.0721874,0.589194,0.997751,0.116154,0.985294,0.31471,0.558709,0.804928,0.270162,0.564082,0.402675,0.551923,0.651436,0.308821,0.383828,0.0453862,0.417442,0.0717561,0.489288,0.290242,0.912933,0.935237,0.867634,0.564134,0.519594,0.233782,0.0855311,0.0335184,0.273552,0.0930812,0.710348,0.401163,0.899836,0.525065,0.864087,0.721967,0.115891,0.835951,0.246649,0.640836,0.923676,0.733747,0.473161,0.118396,0.447343,0.380184,0.482005,0.628051,0.151889,0.921728,0.471014,0.52031,0.787267,0.0964127,0.559177,0.379095,0.571432,0.228035,0.368719,0.106814,0.830082,0.467163,0.147142,0.845153,0.131368,0.479612,0.208922,0.261652,0.712803,0.744023,0.29173,0.339505,0.762362,0.148179,0.82317,0.435177,0.108387,0.357751,0.794004,0.352893,0.380701,0.927444,0.298644,0.706726,0.430022,0.882812,0.630897,0.345715,0.211372,0.909569,0.732782,0.14479,0.948271,0.660477,0.677992,0.798536,0.786699,0.314032,0.495372,0.926629,0.282123,0.337196,0.621931,0.812689,0.644179,0.722855,0.372014,0.409488,0.881094,0.469029,0.702057,0.613098,0.517607,0.308376,0.497359,0.689784,0.789497,0.25516,0.190934,0.300358,|0.488151,0.353734,0.204047,0.165458,0.394641,0.130579,0.54313,0.987862,0.834015,0.148581,0.849661,0.724142,0.2125,0.602205,0.012127,0.64902,0.74783,0.837043,0.065882,0.819192,0.536795,0.618014,0.845706,0.537826,0.0400055,0.0527544,0.891632,0.716113,0.493311,0.247419,0.916101,0.564848,0.864968,0.624383,0.616041,0.88558,0.380899,0.34911,0.574358,0.800128,0.866807,0.0374894,0.116406,0.690018,0.659861,0.105515,0.309709,0.3336,0.216972,0.52431,0.579475,0.556423,0.233746,0.448261,0.751408,0.6574,0.143019,0.279374,0.0427415,0.452921,0.529423,0.791064,0.97805,0.277578,0.156608,0.642431,0.457872,0.289077,0.880355,0.8964,0.59905,0.856772,0.668908,0.654196,0.751595,0.746026,0.107377,0.886621,0.0087527,0.780142,0.708681,0.922543,0.658366,0.269013,0.648728,0.200336,0.957523,0.0590653,0.021426,0.20266,0.1171,0.12851,0.550181,0.231898,0.873624,0.301226,0.246747,0.14084,0.0892268,0.950447,0.591614,0.59516,0.916787,0.717781,0.656315,0.504119,0.171198,0.791249,0.575926,0.760061,0.739482,0.419008,0.982922,0.241192,0.279097,0.0174953,0.240439,0.914575,0.48137,0.580923,0.786254,0.881178,0.0888029,0.629016,0.538948,0.807706,0.3282,0.24716,0.611808,0.00015372,0.91814,0.61676,0.421677,0.948319,0.69622,0.981301,0.184883,0.344433,0.481533,0.360611,0.878639,0.28369,0.611586,0.383264,0.73257,0.615581,0.463275,0.3642,0.422382,0.391485,0.332229,0.631116,0.513795,0.229273,0.52175,0.838515,0.963096,0.189249,0.725389,0.00311548,0.798518,0.236254,0.572867,0.461725,0.0124798,0.701539,0.158979,0.820981,0.812918,0.191663,0.292595,0.428504,0.221883,0.788494,0.0316471,0.760775,0.0203478,0.101092,0.834533,0.0153666,0.392879,0.638374,0.109039,0.816457,0.429528,0.654071,0.145963,0.400482,0.326001,0.112236,0.972925,0.601112,0.152918,0.603742,0.586804,0.00665444,0.825115,0.988558,0.613153,0.453131,0.372496,0.713921,0.217577,0.35912,0.207582,0.356548,0.791976,0.482584,0.878991,0.715157,0.227124,0.907797,0.493858,0.808533,0.224116,0.536644,0.408184,0.745129,0.947205,0.365539,0.340282,0.90827,0.871131,0.428581,0.442573,0.999625,0.404056,0.502465,0.399582,0.876169,0.379035,0.718751,0.0330629,0.673186,0.196115,0.289038,0.0927833,0.219743,0.678926,0.684781,0.441304,0.577691,0.862772,0.528545,0.812575,0.0121823,0.353083,0.786539,0.0873007,0.0484781,0.0195462,0.268937,0.615181,0.503286,0.723522,0.615919,0.770319,0.7216,0.622815,0.741594,0.22728,0.163658,0.0259598,0.886646,0.398283,0.241548,0.212169,0.690222,0.632409,0.138843,0.993806,0.209256,0.332679,0.511992,0.997229,0.812605,0.826617,0.662746,0.753573,0.517991,0.899145,0.145548,0.0879606,0.253055,0.263396,0.867445,0.589916,0.247684,0.649227,0.503802,0.437787,0.210384,0.64314,0.445406,0.394915,0.816717,0.428801,0.275357,0.58048,0.777677,0.622762,0.0824913,0.366694,0.665964,0.879139,0.879777,0.58848,0.862177,0.273042,0.866921,0.664547,0.752352,0.506062,0.483894,0.716205,0.278217,0.890157,0.791331,0.89776,0.781253,0.904264,0.416866,0.0303025,0.258951,0.661393,0.36051,0.516153,0.0795098,0.72218,0.923964,0.655757,0.696368,0.369583,0.585221,0.030416,0.616901,0.178183,0.998426,0.642476,0.612098,0.323443,0.691383,0.77699,0.578887,0.399735,0.270019,0.753836,0.751465,0.0182938,0.0959586,0.258979,0.847819,0.619428,0.0822983,0.621502,0.872568,0.152899,0.383525,0.699967,0.554133,0.761748,0.738612,0.261449,0.532487,0.134223,0.0684054,0.39522,0.362426,0.459757,0.348556,0.29888,0.688231,0.834128,0.468086,0.872578,0.223042,0.750681,0.304479,0.278953,0.640301,0.32426,0.711644,0.841825,0.0366493,0.90553,0.922433,0.843361,0.506363,0.678788,0.500991,0.721335,0.161876,0.322676,0.217917,0.0823982,0.836522,0.283307,0.93169,0.803329,0.23357,0.00234914,0.743026,0.136956,0.670395,0.935932,0.505007,0.217716,0.261025,0.897501,0.561955,0.989071,0.913947,0.588597,0.493694,0.174746,0.655078,0.775628,0.303051,0.622026,0.869955,0.30316,0.64208,0.503037,0.199652,0.0328634,0.320632,0.0832894,0.946644,0.619457,0.357707,0.400637,0.539848,0.459873,0.745765,0.734454,0.520975,0.0295982,0.509922,0.0412025,0.742868,0.73197,0.361019,0.715839,0.753475,0.585613,0.363433,0.753922,0.0367348,0.867152,0.781912,0.981274,0.981072,0.150316,0.514341,0.0764002,0.0613067,0.497379,0.139532,0.386059,0.777205,0.566352,0.260395,0.159584,0.706553,0.163193,0.441006,0.30342,0.895613,0.790804,0.057807,0.564516,0.0228044,0.313565,0.318353,0.687704,0.61872,0.514847,0.54513,0.741012,0.512387,0.320351,0.634181,0.873242,0.867562,0.261019,0.676892,0.241585,0.0555472,0.415812,0.956191,0.566779,0.549699,0.85988,0.835639,0.277625,0.373034,0.239115,0.742467,0.43077,0.912944,0.874291,0.885202,0.942862,0.919374,0.33591,0.690311,0.806733,0.220966,0.863347,0.754135,0.542886,0.262849,0.261866,0.381343,0.960896,0.264907,0.9692,0.528975,0.793232,0.357316,0.429782,0.397399,0.933983,0.181559,0.32067,0.182607,0.219698,0.566264,0.890865,0.598664,0.226863,0.835311,0.0115977,0.329734,0.554594,0.7416,0.0218391,0.182043,0.882027,0.694711,0.333861,0.407431,0.352912,0.344168,0.80232,0.858007,0.99562,0.97932,0.288262,0.0521401,0.412054,0.123323,0.00757742,0.518205,0.727628,0.180506,0.0220624,0.458321,0.464896,0.362662,0.488281,0.890106,0.908007,0.100874,0.747757,0.622229,0.993039,0.787903,0.541124,0.878595,0.771402,0.808337,0.604841,0.881064,0.728889,0.693391,0.164936,0.569263,0.516642,0.254996,0.802436,0.852583,0.0503405,0.427613,0.754333,0.0716245,0.279068,0.581934,0.703286,0.372841,0.907628,0.333285,0.626207,0.406299,0.553386,0.948981,0.725986,0.300476,0.969209,0.037172,0.00170434,0.983267,0.19865,0.743815,0.673493,0.234306,0.00145847,0.00969112,0.194667,0.674449,0.788943,0.805911,0.478106,0.811212,0.970687,0.313356,0.775763,0.638553,0.429117,0.241835,0.0605444,0.334117,0.979169,0.942318,0.528275,0.999973,0.25587,0.623784,0.698642,0.605572,0.0158535,0.790633,0.45657,0.213557,0.664907,0.351564,0.211488,0.660366,0.277694,0.018603,0.274155,0.182758,0.856426,0.187025,0.586889,0.615228,0.298625,0.078109,0.402213,0.989866,0.0450252,0.0612398,0.548185,0.884069,0.500614,0.788339,0.600605,0.0585054,0.0239403,0.899605,0.83635,0.0687732,0.61948,0.812394,0.860529,0.604901,0.44817,0.42138,0.135346,0.60247,0.882152,0.595171,0.459808,0.0166814,0.946919,0.175661,0.919275,0.977844,0.166364,0.578852,0.938899,0.189927,0.724702,0.250874,0.202556,0.919684,0.572427,0.855145,0.1684,0.999783,0.555482,0.542971,0.13866,0.739831,0.938348,0.707761,0.904897,0.99627,0.950856,0.262543,0.187097,0.486075,0.0783169,0.0165198,0.14917,0.649435,0.636099,0.407662,0.991169,0.454159,0.996719,0.942122,0.137749,0.253237,0.0371665,0.702104,0.039158,0.74198,0.31483,0.0261303,0.645901,0.474515,0.879979,0.780953,0.998459,0.680042,0.605305,0.307724,0.234808,0.504305,0.901164,0.425793,0.998915,0.801294,0.932526,0.785219,0.29,0.921627,0.0725042,0.74046,0.374196,0.752099,0.277556,0.977191,0.38899,0.611618,0.645698,0.653328,0.210783,0.999463,0.864259,0.881995,0.92626,0.450116,0.0502122,0.0255819,0.0475954,0.333343,0.777978,0.346402,0.496645,0.198067,0.942269,0.11585,0.343997,0.710098,0.721168,0.884273,0.171844,0.16892,0.197045,0.763657,0.345874,0.371587,0.374846,0.959592,0.619573,0.0915224,0.272709,0.726281,0.427884,0.423087,0.715953,0.251397,0.834393,0.965915,0.256753,0.364889,0.324345,0.348946,0.174678,0.729032,0.102831,0.743713,0.994298,0.891503,0.190638,0.407262,0.847184,0.313102,0.915562,0.449329,0.548663,0.000539482,0.22975,0.561172,0.81476,0.498847,0.865981,0.688289,0.343125,0.374711,0.594254,0.987957,0.920819,0.766012,0.12238,0.793012,0.711164,0.371327,0.944674,0.559857,0.60731,0.277254,0.900428,0.486765,0.460696,0.748882,0.910951,0.736865,0.470404,0.235675,0.0619518,0.229026,0.420049,0.672889,0.121747,0.340391,0.0121303,0.562864,0.399394,0.992188,0.301285,0.377105,0.753322,0.172691,0.490461,0.0082708,0.175752,0.0757251,0.918451,0.160042,0.492712,0.532202,0.237795,0.916646,0.860893,0.342921,0.145903,0.309051,0.414453,0.403538,0.444596,0.878549,0.210022,0.145933,0.113108,0.824869,0.159851,0.161283,0.704538,0.956786,0.253348,0.56529,0.806708,0.594622,0.865818,0.0716405,0.841595,0.0955372,0.0860589,0.470517,0.517612,0.942633,0.110592,0.493186,0.0917546,0.758221,0.561222,0.0912687,0.913172,0.814537,0.930438,0.708244,0.076718,0.464409,0.728839,0.406631,0.341234,0.880544,0.307135,0.264743,0.529743,0.564619,0.661113,0.929301,0.933818,0.922017,0.62141,0.395904,0.264038,0.120664,0.00488591,0.374984,0.245729,0.989,0.329252,0.828096,0.205028,0.0352892,0.85241,0.170049,0.237251,0.899941,0.00126845,0.225266,0.21995,0.745312,0.737429,0.367036,0.916956,0.0400338,0.518651,0.893805,0.800597,0.823262,0.608342,0.961059,0.336142,0.730264,0.319889,0.405592,0.831303,0.16786,0.69983,0.21747,0.298168,0.550047,0.276914,0.783519,0.285836,0.148586,0.336997,0.094607,0.535303,0.522029,0.109895,0.0219545,0.474401,0.431945,0.346558,0.833753,0.0530771,0.202926,0.0102343,0.939669,0.128066,0.332902,0.0264706,0.419235,0.194757,0.503547,0.106734,0.943796,0.638208,0.723455,0.857791,0.963732,0.30418,0.714094,0.161604,0.734971,0.59808,0.696336,0.90743,0.220433,0.90338,0.850142,0.116168,0.0496414,0.735959,0.869762,0.130109,0.798125,0.747795,0.649907,0.521373,0.404514,0.179508,0.845495,|0.0217913,0.25209,0.413678,0.643969,0.791122,0.286047,0.384945,0.900535,0.860556,0.140043,0.733729,0.469134,0.155897,0.42707,0.732009,0.0810804,0.173022,0.0208546,0.380805,0.288107,0.361055,0.12999,0.383732,0.993333,0.47743,0.0909489,0.158448,0.0900305,0.0718824,0.846733,0.820648,0.368867,0.694909,0.368754,0.14973,0.964827,0.658561,0.262813,0.711227,0.0979361,0.514039,0.86609,0.763622,0.416176,0.275586,0.407762,0.06232,0.778647,0.178991,0.35552,0.0573199,0.704031,0.669477,0.763395,0.722893,0.572258,0.771457,0.906047,0.534565,0.349043,0.86258,0.629971,0.266164,0.493663,0.438142,0.703696,0.877645,0.352929,0.0121009,0.947016,0.500624,0.117271,0.334656,0.93278,0.173926,0.647241,0.835511,0.702321,0.36371,0.916287,0.341394,0.273137,0.272041,0.163107,0.0444575,0.542281,0.58121,0.512602,0.478637,0.369575,0.715598,0.833865,0.666608,0.580198,0.0874064,0.263195,0.287812,0.754017,0.982557,0.520824,0.165913,0.604525,0.444125,0.981037,0.588978,0.898998,0.476918,0.111284,0.311709,0.779003,0.737375,0.49804,0.277692,0.622162,0.139643,0.2477,0.944176,0.618724,0.747172,0.67861,0.430543,0.2661,0.197635,0.762767,0.894068,0.15644,0.752407,0.350976,0.794396,0.663072,0.317853,0.377369,0.992438,0.721101,0.175927,0.0348213,0.0253864,0.366469,0.481141,0.192366,0.712997,0.689889,0.68781,0.88711,0.260766,0.942765,0.606989,0.450736,0.625961,0.472018,0.703784,0.715069,0.176227,0.163383,0.599904,0.581207,0.470087,0.313557,0.0891247,0.276705,0.957859,0.245371,0.369598,0.438488,0.479884,0.681234,0.107254,0.144576,0.561927,0.553365,0.129162,0.508764,0.633832,0.825331,0.22897,0.925899,0.396751,0.41248,0.475767,0.514462,0.650875,0.40821,0.878546,0.342688,0.690665,0.332863,0.589894,0.871877,0.494378,0.312127,0.540401,0.247312,0.62481,0.955701,0.283941,0.271756,0.277792,0.355956,0.0506163,0.0330925,0.533877,0.761362,0.510952,0.369392,0.889476,0.50902,0.160722,0.844113,0.00722384,0.294241,0.158387,0.183205,0.263831,0.727541,0.380211,0.739618,0.479481,0.240413,0.213602,0.49046,0.355287,0.500748,0.560478,0.582677,0.88063,0.364981,0.859729,0.619871,0.027488,0.591604,0.564873,0.296515,0.68931,0.985853,0.963668,0.491538,0.0222497,0.870121,0.180586,0.195843,0.956914,0.601756,0.966829,0.175458,0.831926,0.463078,0.575633,0.675497,0.0692216,0.542826,0.290178,0.590937,0.878339,0.738674,0.196259,0.969817,0.859113,0.660283,0.0112515,0.876621,0.888971,0.0146958,0.259166,0.575218,0.270976,0.189418,0.579922,0.242693,0.604838,0.166485,0.511406,0.152004,0.639058,0.476565,0.305226,0.194825,0.862116,0.422231,0.207333,0.161441,0.399175,0.786462,0.229798,0.226027,0.870064,0.69218,0.375393,0.164121,0.107103,0.424583,0.214714,0.990766,0.839521,0.809495,0.748103,0.70629,0.713692,0.495093,0.378849,0.930786,0.702693,0.77131,0.955909,0.496252,0.442727,0.823953,0.658607,0.672385,0.637197,0.98592,0.031436,0.0132331,0.391876,0.261539,0.909617,0.85075,0.727618,0.929552,0.469325,0.740104,0.065467,0.0188687,0.869342,0.160234,0.572026,0.686825,0.603379,0.136172,0.796939,0.728487,0.566917,0.361919,0.749906,0.884544,0.623107,0.077679,0.504568,0.138888,0.279428,0.70653,0.57666,0.547311,0.60511,0.648438,0.255775,0.0788897,0.536404,0.586004,0.861155,0.347487,0.942922,0.597931,0.597774,0.088626,0.638746,0.0569575,0.849892,0.78398,0.879863,0.23607,0.704967,0.581585,0.890077,0.192166,0.826549,0.870931,0.604273,0.836889,0.153212,0.612647,0.703522,0.811719,0.622743,0.673078,0.798723,0.884658,0.76319,0.3474,0.427389,0.461687,0.866775,0.120023,0.566728,0.537021,0.15978,0.342889,0.102986,0.823061,0.540109,0.221533,0.443282,0.269606,0.404093,0.837678,0.841652,0.31751,0.333478,0.772151,0.94897,0.848687,0.00298089,0.549006,0.0297144,0.540836,0.103255,0.854689,0.383186,0.71787,0.137601,0.882619,0.384234,0.318949,0.51176,0.225639,0.821625,0.972242,0.750384,0.0571812,0.0180368,0.076878,0.901776,0.577806,0.30242,0.20375,0.259625,0.762517,0.985084,0.401731,0.344604,0.816173,0.067657,0.878793,0.572563,0.351478,0.694532,0.409161,0.408995,0.117882,0.245376,0.774092,0.634541,0.647633,0.844808,0.730509,0.297046,0.219422,0.723309,0.661745,0.730941,0.0942745,0.901077,0.640765,0.360341,0.733992,0.479423,0.853264,0.123802,0.777461,0.0147691,0.65218,0.406075,0.628374,0.0739691,0.841873,0.499704,0.363704,0.301426,0.723067,0.208423,0.105522,0.978834,0.845849,0.0912138,0.50343,0.432686,0.504658,0.308905,0.127377,0.949379,0.916171,0.158605,0.0212978,0.829577,0.813903,0.0727068,0.364781,0.836514,0.607375,0.563126,0.0816696,0.240398,0.203638,0.186282,0.0264076,0.464404,0.661317,0.939931,0.295101,0.861317,0.370151,0.513255,0.604713,0.987653,0.96346,0.994004,0.629813,0.58512,0.206695,0.182927,0.0133818,0.0660003,0.569914,0.0252134,0.0732374,0.934695,0.614159,0.440386,0.0192934,0.176871,0.184898,0.210212,0.0860218,0.230171,0.104381,0.530503,0.712906,0.0730479,0.329835,0.0485688,0.225868,0.734571,0.694274,0.228071,0.964831,0.546026,0.371588,0.907537,0.910484,0.0568696,0.155219,0.181509,0.46856,0.966648,0.930151,0.522358,0.529565,0.8967,0.422901,0.257721,0.704987,0.046958,0.304105,0.572505,0.0853182,0.770528,0.253381,0.419655,0.134779,0.809496,0.983369,0.0610263,0.356206,0.445873,0.220504,0.0505027,0.95328,0.828861,0.207131,0.597503,0.787899,0.173197,0.552606,0.652689,0.0886706,0.631891,0.870552,0.581996,0.443663,0.334832,0.480675,0.383512,0.00633007,0.0510667,0.652112,0.144133,0.524233,0.118417,0.992929,0.946905,0.36584,0.0580449,0.74883,0.242295,0.956591,0.108659,0.17698,0.359633,0.652422,0.835743,0.214673,0.656702,0.250539,0.0484867,0.978644,0.970408,0.134123,0.280917,0.00527185,0.523567,0.187311,0.905017,0.499868,0.596373,0.531263,0.921142,0.290578,0.0449319,0.480606,0.854435,0.714498,0.43434,0.139302,0.790893,0.0586583,0.504057,0.304289,0.921119,0.955811,0.494876,0.0209765,0.28072,0.941509,0.885888,0.0568393,0.369553,0.928234,0.211634,0.220798,0.24297,0.761251,0.353971,0.492593,0.76325,0.933829,0.293595,0.757951,0.828148,0.00558835,0.227047,0.442534,0.20232,0.529338,0.528414,0.0655674,0.277746,0.277224,0.0593795,0.933384,0.843721,0.2436,0.719365,0.834675,0.937169,0.687315,0.697538,0.00516397,0.793995,0.687531,0.112977,0.176582,0.536929,0.0813759,0.485751,0.427646,0.227867,0.163539,0.0904752,0.601359,0.0441234,0.388106,0.895182,0.562384,0.098749,0.911382,0.351718,0.80705,0.626951,0.321032,0.502499,0.158739,0.518002,0.496518,0.286478,0.019986,0.651197,0.547785,0.0487038,0.749427,0.679753,0.537009,0.0425178,0.269038,0.331103,0.567162,0.290935,0.684024,0.555756,0.38737,0.483936,0.969771,0.845897,0.73328,0.92549,0.109182,0.281028,0.600948,0.5287,0.629336,0.56204,0.0369297,0.375023,0.0813646,0.179556,0.029336,0.669619,0.194218,0.879827,0.495625,0.591527,0.542882,0.72886,0.694392,0.130817,0.439375,0.734199,0.697376,0.181874,0.410164,0.38579,0.939997,0.756784,0.164076,0.921703,0.233244,0.718676,0.568357,0.00157148,0.0410267,0.154079,0.337315,0.130695,0.0599852,0.91231,0.686878,0.30933,0.333799,0.609658,0.856497,0.300227,0.145571,0.0724775,0.310259,0.0743169,0.819748,0.642782,0.499053,0.96458,0.543281,0.418909,0.673102,0.66327,0.0214117,0.244805,0.659137,0.204142,0.99189,0.705268,0.00600082,0.0732797,0.720854,0.565762,0.871613,0.156111,0.0404707,0.339471,0.25895,0.330692,0.908314,0.0977939,0.48222,0.798538,0.820275,0.0505643,0.329303,0.175731,0.791027,0.885896,0.0980558,0.177055,0.180889,0.97144,0.508517,0.683119,0.0462701,0.625086,0.544599,0.624211,0.273172,0.336201,0.862205,0.429203,0.605825,0.88151,0.663544,0.449333,0.0495407,0.223205,0.704338,0.101641,0.873479,0.139535,0.413472,0.474235,0.43093,0.549498,0.458951,0.36058,0.805751,0.0557348,0.763957,0.266048,0.451334,0.0151604,0.744781,0.548924,0.00657463,0.510677,0.737985,0.181249,0.767446,0.73267,0.121592,0.864728,0.488248,0.0358728,0.477741,0.338605,0.799847,0.955659,0.415722,0.444169,0.155707,0.517238,0.767114,0.214064,0.669747,0.157825,0.489394,0.361702,0.281063,0.197543,0.566654,0.0843065,0.340187,0.376376,0.602311,0.886998,0.841468,0.768112,0.239398,0.727686,0.636091,0.0650978,0.148137,0.808859,0.146784,0.933572,0.895613,0.107774,0.617581,0.639905,0.336305,0.0527686,0.335783,0.00418538,0.556055,0.895988,0.360064,0.42345,0.574971,0.619136,0.404834,0.860023,0.840968,0.575711,0.161466,0.767424,0.0711973,0.982963,0.970072,0.675086,0.159422,0.480799,0.659367,0.0930719,0.0764219,0.17641,0.177441,0.60729,0.738338,0.443182,0.975247,0.823919,0.998158,0.481163,0.715382,0.782928,0.40093,0.739967,0.0300841,0.1919,0.688372,0.476978,0.304727,0.403156,0.423488,0.427591,0.515061,0.2141,0.324158,0.893923,0.388623,0.060223,0.983565,0.554154,0.108335,0.0546328,0.97397,0.107274,0.285119,0.0662976,0.857141,0.68275,0.936094,0.514351,0.461284,0.520803,0.525112,0.266627,0.267416,0.821397,0.0405033,0.353262,0.6642,0.197984,0.0311102,0.150168,0.76214,0.0613983,0.559998,0.332097,0.432223,0.225761,0.745176,0.213179,0.859959,0.471719,0.561609,0.88915,0.943777,0.807589,0.625912,0.915848,0.337825,0.970013,0.651367,0.841924,0.991287,0.808079,0.619145,0.0134629,0.255439,0.693995,0.00544804,0.242053,0.0236557,0.951172,0.817132,0.0746598,0.465684,0.22232,0.84094,0.805411,0.397841,0.833456,0.189468,0.979345,0.509958,0.953577,0.407755,|0.975864,0.782203,0.00513268,0.95488,0.666759,0.0641314,0.144859,0.512852,0.420511,0.165687,0.83704,0.544426,0.142178,0.591075,0.222234,0.14556,0.888915,0.240425,0.760375,0.763051,0.928568,0.192175,0.377679,0.405463,0.587162,0.579463,0.588922,0.136926,0.82755,0.98719,0.780369,0.491747,0.278834,0.257354,0.782752,0.14823,0.716244,0.0150602,0.647837,0.526452,0.601419,0.290558,0.349409,0.423966,0.110659,0.0530403,0.606338,0.170988,0.0271029,0.747545,0.307773,0.609945,0.162888,0.242,0.465109,0.667984,0.510907,0.369904,0.0356143,0.158777,0.980729,0.1982,0.0271737,0.825252,0.73441,0.65536,0.574947,0.424624,0.952236,0.647986,0.146464,0.646127,0.942966,0.371831,0.558873,0.730714,0.298178,0.249634,0.921179,0.803737,0.485477,0.51875,0.488535,0.367978,0.834954,0.0416092,0.690792,0.468772,0.344914,0.795827,0.507627,0.0217651,0.364599,0.159442,0.43658,0.0813909,0.396675,0.6651,0.843604,0.72698,0.0845775,0.706596,0.905533,0.768356,0.587372,0.877433,0.785631,0.301347,0.996951,0.906974,0.128587,0.51955,0.896269,0.195882,0.798097,0.351384,0.944954,0.130685,0.789221,0.652288,0.908661,0.738723,0.390898,0.211954,0.244108,0.752098,0.246196,0.428642,0.809351,0.608089,0.522878,0.187,0.177654,0.46913,0.505535,0.1129,0.590927,0.248352,0.605835,0.0049122,0.434102,0.67475,0.214184,0.471046,0.955343,0.0604608,0.215105,0.228003,0.521733,0.529826,0.630294,0.548733,0.533885,0.382003,0.932989,0.834689,0.898441,0.663907,0.443874,0.540371,0.651191,0.663563,0.742284,0.187202,0.405402,0.885371,0.391048,0.42714,0.341973,0.9871,0.323011,0.694958,0.946792,0.153674,0.222231,0.967008,0.544209,0.784493,0.223575,0.609558,0.72699,0.286653,0.0958217,0.281066,0.725914,0.607611,0.125897,0.764353,0.478341,0.150522,0.858631,0.338951,0.58962,0.952979,0.948007,0.594328,0.183769,0.84907,0.338859,0.719523,0.767948,0.811477,0.145866,0.0106829,0.868566,0.096861,0.0745021,0.732352,0.594627,0.326884,0.730054,0.182635,0.517644,0.221285,0.57386,0.34631,0.8508,0.761532,0.757414,0.629672,0.380438,0.634305,0.740317,0.0673628,0.00909179,0.896665,0.224845,0.489564,0.715277,0.612145,0.0175734,0.883708,0.09939,0.245698,0.134116,0.123624,0.750034,0.471277,0.634999,0.435559,0.516079,0.306706,0.911619,0.966909,0.970437,0.373312,0.321892,0.896316,0.145423,0.682289,0.495829,0.623418,0.702057,0.666415,0.947691,0.819372,0.241773,0.588978,0.721965,0.0949737,0.0783854,0.963753,0.49321,0.0198779,0.859808,0.0953403,0.991265,0.970431,0.472738,0.00476915,0.720988,0.378976,0.650379,0.776803,0.0931266,0.960821,0.362018,0.490574,0.85158,0.12304,0.511465,0.976857,0.783376,0.293527,0.55631,0.401711,0.675199,0.493431,0.130492,0.307086,0.92802,0.859713,0.994251,0.0154733,0.387364,0.677823,0.481335,0.955137,0.0811618,0.363727,0.803028,0.665638,0.424755,0.843556,0.538981,0.0804171,0.468293,0.349348,0.901055,0.201284,0.348978,0.257795,0.195336,0.767285,0.808732,0.169757,0.818047,0.666778,0.678515,0.975589,0.836405,0.0433053,0.358971,0.681518,0.562002,0.0872406,0.237892,0.00854373,0.033235,0.104313,0.353338,0.735626,0.503622,0.40588,0.140862,0.78188,0.537733,0.132343,0.0309887,0.472077,0.290421,0.373691,0.634097,0.179452,0.169034,0.536401,0.463897,0.77173,0.67539,0.375161,0.475987,0.0259868,0.674987,0.919586,0.551522,0.222692,0.0152017,0.625952,0.744157,0.0193928,0.885843,0.242569,0.00162822,0.721231,0.578294,0.0467289,0.448167,0.770703,0.131908,0.757078,0.849298,0.184649,0.743795,0.082448,0.243084,0.00956643,0.557012,0.522036,0.163385,0.635773,0.204811,0.816009,0.972083,0.302674,0.349123,0.862552,0.173005,0.177727,0.904535,0.870026,0.488967,0.143361,0.054671,0.546716,0.693001,0.945183,0.894655,0.900559,0.340801,0.0765755,0.579648,0.577493,0.783139,0.501224,0.472181,0.395501,0.341524,0.236475,0.41054,0.690109,0.525551,0.226158,0.388388,0.595336,0.199891,0.970156,0.101542,0.410697,0.764473,0.320994,0.242671,0.88049,0.0696271,0.867346,0.513513,0.903207,0.765755,0.477189,0.478612,0.387402,0.929114,0.175649,0.99619,0.619648,0.208478,0.205547,0.571173,0.926802,0.231887,0.427048,0.92416,0.0918205,0.7509,0.739043,0.400707,0.736874,0.741116,0.390693,0.0958533,0.379236,0.184525,0.957715,0.222287,0.61764,0.354208,0.257893,0.162908,0.747869,0.727766,0.709229,0.425578,0.0620058,0.636715,0.113711,0.413952,0.0333458,0.908175,0.399824,0.738664,0.308595,0.065083,0.587175,0.777861,0.838104,0.928092,0.957449,0.656727,0.521073,0.729246,0.560474,0.365308,0.797402,0.192098,0.591697,0.293511,0.0962867,0.32398,0.766172,0.751935,0.186244,0.436039,0.985187,0.318117,0.716313,0.698451,0.837168,0.426134,0.059087,0.662578,0.860021,0.884972,0.645903,0.753108,0.436556,0.332004,0.698873,0.466082,0.746539,0.152973,0.901516,0.041679,0.69726,0.599603,0.690817,0.486328,0.0281379,0.186736,0.615353,0.44367,0.369759,0.857382,0.506471,0.110656,0.695527,0.915602,0.941841,0.0401693,0.541635,0.591012,0.999582,0.874657,0.538625,0.46772,0.925641,0.561539,0.390126,0.198114,0.67356,0.0300645,0.0835956,0.690036,0.624347,0.766157,0.583664,0.467932,0.583913,0.230694,0.819667,0.0549206,0.0702725,0.862864,0.375981,0.690695,0.908362,0.403465,0.623076,0.950806,0.397441,0.47491,0.644098,0.217742,0.626849,0.809752,0.250172,0.849062,0.980005,0.00168127,0.868341,0.157556,0.750841,0.564766,0.162155,0.955674,0.826735,0.621011,0.638364,0.11191,0.0125515,0.222662,0.137145,0.262041,0.547556,0.433712,0.189652,0.617624,0.942903,0.645425,0.909872,0.482025,0.573734,0.251581,0.232851,0.20206,0.967341,0.775405,0.724743,0.676973,0.367924,0.0354257,0.16936,0.595628,0.279711,0.0159984,0.624553,0.592112,0.766884,0.911218,0.2892,0.676127,0.608471,0.249644,0.216531,0.678505,0.389159,0.73262,0.308424,0.881075,0.723616,0.373058,0.632737,0.867748,0.522947,0.258144,0.296205,0.332039,0.811173,0.893672,0.266032,0.269616,0.37424,0.140597,0.984111,0.390638,0.458915,0.935697,0.669297,0.0605251,0.977719,0.590378,0.237312,0.596936,0.832283,0.411603,0.657874,0.295521,0.426412,0.800372,0.334487,0.760539,0.154452,0.761513,0.558564,0.40163,0.21266,0.245278,0.128045,0.510623,0.927758,0.912174,0.840044,0.56291,0.0890504,0.933435,0.065643,0.975497,0.0626937,0.328904,0.0741622,0.968685,0.628154,0.611461,0.764375,0.656018,0.534725,0.20435,0.922871,0.297812,0.556255,0.669475,0.828849,0.87243,0.564505,0.856179,0.250072,0.146775,0.346041,0.110506,0.582126,0.09641,0.507481,0.0901784,0.415804,0.317179,0.141821,0.77822,0.223385,0.296201,0.35595,0.346721,0.946175,0.648436,0.838925,0.506168,0.118323,0.922072,0.698697,0.67987,0.713333,0.876599,0.70374,0.111942,0.578004,0.552119,0.15369,0.75092,0.0815467,0.766114,0.874948,0.865139,0.769502,0.545355,0.631367,0.528338,0.117847,0.306839,0.8502,0.659108,0.0711093,0.0416244,0.729646,0.0180347,0.545897,0.412872,0.879178,0.83698,0.651473,0.78397,0.428641,0.826293,0.113408,0.283663,0.677736,0.450467,0.978314,0.947438,0.909741,0.107159,0.7719,0.0718488,0.787071,0.361387,0.210274,0.590181,0.932929,0.636493,0.501392,0.767974,0.413148,0.924993,0.58711,0.151864,0.772553,0.352611,0.00901616,0.460666,0.0429745,0.387084,0.752992,0.927451,0.283387,0.49861,0.839176,0.0403637,0.0838968,0.72742,0.503554,0.801091,0.746201,0.533304,0.576893,0.867296,0.815397,0.71648,0.535688,0.173438,0.548589,0.284301,0.987404,0.574394,0.570012,0.53486,0.641511,0.0607921,0.063006,0.914066,0.595533,0.391816,0.585398,0.0636812,0.807802,0.0776545,0.683919,0.331251,0.128877,0.0747299,0.582942,0.208188,0.615431,0.378319,0.349835,0.965141,0.442236,0.503335,0.988831,0.682658,0.310818,0.289729,0.687493,0.43104,0.932382,0.64611,0.786622,0.768797,0.690627,0.985549,0.029546,0.230204,0.712365,0.364006,0.738296,0.355501,0.393491,0.48142,0.433111,0.526448,0.998125,0.638965,0.27001,0.723432,0.301331,0.379158,0.37231,0.731903,0.249317,0.16518,0.00487459,0.547189,0.5228,0.555029,0.816993,0.505884,0.542401,0.0292531,0.409709,0.460682,0.716762,0.191174,0.996857,0.235355,0.64917,0.847827,0.2904,0.597777,0.732217,0.000427485,0.8856,0.426872,0.537453,0.422976,0.346494,0.979216,0.277705,0.216496,0.0642732,0.118988,0.850456,0.538682,0.561842,0.813148,0.475426,0.956257,0.0726212,0.226426,0.218669,0.292015,0.137717,0.13574,0.733089,0.460282,0.684858,0.453213,0.147902,0.0456648,0.644838,0.497518,0.423706,0.94463,0.685032,0.258312,0.885671,0.973611,0.215079,0.400044,0.111262,0.434898,0.372419,0.912252,0.711259,0.785983,0.688864,0.937297,0.820076,0.280856,0.1102,0.306193,0.342333,0.267835,0.4491,0.24708,0.514541,0.833968,0.310194,0.355654,0.0220156,0.505443,0.774166,0.00184476,0.845443,0.645083,0.195436,0.208239,0.230055,0.412826,0.786207,0.189838,0.494875,0.798084,0.150341,0.125311,0.283487,0.715141,0.593022,0.527009,0.58098,0.486734,0.445712,0.406018,0.899761,0.777846,0.0108256,0.172983,0.750593,0.0311337,0.62734,0.888242,0.369229,0.0425297,0.192101,0.353871,0.22634,0.506953,0.468579,0.175152,0.229423,0.264678,0.202989,0.777736,0.228063,0.728804,0.106167,0.652934,0.830162,0.119321,0.226454,0.541755,0.179102,0.0357518,0.423259,0.31909,0.401627,0.495251,0.801017,0.856081,0.950191,0.744654,0.29756,0.528802,0.768972,0.214247,0.231732,0.643041,0.718403,0.437341,0.988155,0.663308,0.730031,0.402606,0.579187,0.694385,0.445385,|0.700711,0.203971,0.579624,0.770418,0.797346,0.811941,0.593096,0.82477,0.35587,0.0200977,0.237851,0.270463,0.39633,0.695018,0.237659,0.94115,0.121929,0.577118,0.507776,0.372277,0.259626,0.31255,0.961988,0.554639,0.440443,0.933649,0.32425,0.826784,0.094225,0.929158,0.7193,0.130248,0.679972,0.0405266,0.986192,0.144997,0.532553,0.0611059,0.920337,0.719187,0.740733,0.231597,0.738048,0.636415,0.380447,0.618406,0.100352,0.527257,0.512851,0.496844,0.0757011,0.966391,0.440795,0.723755,0.135377,0.285609,0.232017,0.892231,0.28098,0.0114581,0.127137,0.448417,0.821753,0.69142,0.624174,0.511055,0.0994545,0.736062,0.110327,0.225634,0.143775,0.266266,0.879953,0.962909,0.822142,0.790616,0.747024,0.25599,0.128593,0.952119,0.595837,0.293317,0.508666,0.148968,0.91406,0.679169,0.505829,0.139489,0.801029,0.521635,0.274787,0.0701752,0.568465,0.16697,0.710781,0.464709,0.992007,0.0296868,0.608735,0.807625,0.345663,0.711025,0.352506,0.279247,0.107876,0.67624,0.96784,0.248289,0.87339,0.182641,0.677359,0.317533,0.952643,0.157437,0.0192748,0.00703883,0.353701,0.862929,0.683168,0.928829,0.194818,0.202024,0.206758,0.483972,0.322341,0.763861,0.543299,0.241075,0.210168,0.888474,0.514927,0.943564,0.621527,0.506989,0.628996,0.67014,0.959044,0.489686,0.819189,0.173783,0.171378,0.385935,0.82825,0.434951,0.972124,0.00219756,0.796409,0.323989,0.733471,0.0897083,0.136162,0.150759,0.469818,0.165077,0.802736,0.92592,0.546279,0.594883,0.729934,0.685905,0.427096,0.216932,0.450383,0.305909,0.708685,0.246931,0.751929,0.630949,0.980153,0.353889,0.297387,0.996766,0.721453,0.267989,0.820728,0.272836,0.180535,0.872571,0.561807,0.680076,0.0760247,0.291068,0.986113,0.869885,0.86305,0.462002,0.538214,0.451225,0.171304,0.293155,0.776082,0.711583,0.944196,0.114614,0.670757,0.189219,0.370883,0.252743,0.626685,0.62216,0.569334,0.778324,0.854984,0.310703,0.820652,0.860452,0.783204,0.711512,0.906848,0.805302,0.599967,0.531673,0.867044,0.685865,0.198039,0.620314,0.8128,0.0847891,0.765826,0.915542,0.916303,0.315657,0.581697,0.0683466,0.636779,0.363002,0.205454,0.199495,0.295404,0.688052,0.868863,0.673922,0.210651,0.22166,0.216309,0.930237,0.953339,0.113228,0.15933,0.700478,0.240097,0.562043,0.769868,0.57575,0.0574596,0.322136,0.993507,0.231641,0.857601,0.786871,0.969219,0.674248,0.254604,0.574865,0.0718184,0.296164,0.740525,0.262146,0.945492,0.602256,0.83603,0.928922,0.371119,0.0391952,0.535002,0.651879,0.0498071,0.901228,0.708162,0.233717,0.533541,0.373874,0.88595,0.70716,0.539225,0.0157002,0.923118,0.500866,0.631607,0.0158113,0.294088,0.561856,0.047528,0.363891,0.935398,0.158735,0.886943,0.890043,0.304731,0.737499,0.790677,0.0868039,0.799162,0.0376139,0.900341,0.489339,0.574304,0.244501,0.965083,0.258047,0.403421,0.942854,0.441529,0.543915,0.520943,0.355777,0.974458,0.456785,0.394636,0.698793,0.288687,0.48023,0.510138,0.171404,0.0583602,0.410875,0.384234,0.650836,0.921836,0.935444,0.38046,0.595866,0.151919,0.201322,0.583684,0.274102,0.451159,0.480808,0.60277,0.880195,0.200769,0.736263,0.0750503,0.750646,0.637646,0.361985,0.141314,0.810423,0.481806,0.66632,0.165062,0.762694,0.653875,0.588857,0.739749,0.05987,0.962763,0.134066,0.95126,0.478784,0.644581,0.325693,0.00134671,0.844012,0.505816,0.945939,0.111295,0.603609,0.932831,0.466918,0.144973,0.999141,0.507977,0.494839,0.96265,0.786158,0.469358,0.0993503,0.272623,0.327196,0.32423,0.288629,0.783937,0.386937,0.289927,0.416761,0.551826,0.325204,0.790359,0.168757,0.63204,0.856272,0.576687,0.987191,0.910097,0.0662404,0.815691,0.990439,0.856785,0.407539,0.785863,0.368728,0.25575,0.197359,0.489634,0.214216,0.931297,0.195278,0.0861362,0.486657,0.128386,0.262064,0.555116,0.451554,0.147393,0.982813,0.665291,0.473876,0.683792,0.41875,0.918948,0.726296,0.298027,0.697879,0.139243,0.881369,0.175142,0.0520716,0.164414,0.890166,0.951691,0.266037,0.956307,0.735221,0.721523,0.546361,0.90108,0.218159,0.979811,0.774567,0.559127,0.529014,0.495285,0.456515,0.0608907,0.3091,0.476414,0.864068,0.331617,0.723294,0.162445,0.0134703,0.654193,0.842653,0.998343,0.117545,0.429664,0.0984151,0.221871,0.77687,0.326343,0.85177,0.177222,0.0775795,0.995998,0.580212,0.304577,0.063387,0.115291,0.177349,0.503164,0.774837,0.0498704,0.46935,0.78386,0.582053,0.899268,0.888175,0.499307,0.485209,0.651494,0.446347,0.225284,0.0286354,0.169314,0.300511,0.958328,0.649498,0.702911,0.10695,0.512929,0.737239,0.93889,0.186692,0.0904654,0.213627,0.807312,0.818082,0.469211,0.447903,0.43749,0.7218,0.538247,0.737959,0.756038,0.103507,0.953208,0.39315,0.805877,0.0210901,0.136465,0.626044,0.825368,0.100163,0.350428,0.113514,0.28299,0.884845,0.792995,0.980926,0.67494,0.45283,0.94656,0.583843,0.264292,0.104365,0.236232,0.0264344,0.774808,0.943045,0.513787,0.976621,0.435942,0.943967,0.892924,0.95791,0.704192,0.0239201,0.860654,0.657361,0.273796,0.303688,0.502897,0.177712,0.985187,0.00325966,0.0662137,0.0913941,0.331323,0.648901,0.493352,0.101957,0.618336,0.606708,0.767677,0.196844,0.126371,0.258777,0.0800303,0.987863,0.807131,0.846679,0.512176,0.882055,0.718605,0.508023,0.310548,0.736857,0.0665326,0.709077,0.998907,0.289089,0.860277,0.497238,0.310468,0.958273,0.65606,0.288623,0.0786557,0.948122,0.350065,0.51081,0.121483,0.825664,0.210266,0.246531,0.852595,0.632184,0.704718,0.480314,0.00231785,0.768329,0.168424,0.661842,0.130862,0.420092,0.645802,0.797469,0.611397,0.132238,0.516517,0.132283,0.619204,0.615903,0.237839,0.239247,0.943891,0.342515,0.277129,0.362247,0.869455,0.8474,0.482056,0.894744,0.536825,0.213648,0.764954,0.540259,0.967818,0.789311,0.915085,0.216466,0.116128,0.0666382,0.298579,0.985023,0.293626,0.884502,0.587143,0.0750352,0.743326,0.834634,0.988248,0.205753,0.558316,0.821031,0.808935,0.0238288,0.187981,0.750191,0.289669,0.714594,0.0238487,0.917165,0.514754,0.597424,0.406667,0.834528,0.00908178,0.355784,0.782064,0.285746,0.239057,0.720147,0.818133,0.848938,0.687523,0.530039,0.129767,0.449462,0.28758,0.0624759,0.39687,0.934186,0.298262,0.884497,0.640899,0.748827,0.210281,0.520533,0.456229,0.719004,0.122686,0.0826049,0.700973,0.268472,0.256056,0.998414,0.0437865,0.307327,0.64786,0.963744,0.000292182,0.023637,0.445408,0.272811,0.0677599,0.856905,0.0612006,0.0939152,0.120369,0.425596,0.999806,0.861477,0.449836,0.167015,0.200542,0.341317,0.635478,0.729286,0.695144,0.625886,0.372944,0.962788,0.333187,0.978629,0.493176,0.340289,0.670732,0.388663,0.0667272,0.144398,0.764131,0.384133,0.0449129,0.0215223,0.500611,0.369525,0.081677,0.628095,0.56606,0.832565,0.888625,0.245377,0.777668,0.427634,0.661413,0.144981,0.841215,0.450604,0.798075,0.958928,0.675258,0.433598,0.877012,0.0662516,0.407477,0.858794,0.402577,0.0820913,0.567673,0.929469,0.390566,0.526435,0.289338,0.0249181,0.63962,0.863605,0.790013,0.257979,0.291838,0.310169,0.847532,0.974624,0.241471,0.276667,0.998452,0.887003,0.602579,0.474293,0.809762,0.893056,0.253744,0.271788,0.722134,0.304771,0.122947,0.972908,0.361097,0.827629,0.473319,0.942404,0.000580728,0.144266,0.826706,0.0458985,0.0475453,0.488363,0.630378,0.930362,0.964877,0.565111,0.626196,0.641625,0.769488,0.22679,0.856612,0.713651,0.5971,0.308813,0.183463,0.739515,0.54755,0.60511,0.994326,0.613894,0.278284,0.0389129,0.31554,0.553321,0.862803,0.615318,0.660914,0.831331,0.783275,0.105534,0.843435,0.107951,0.996715,0.500788,0.311453,0.506156,0.851213,0.504179,0.907146,0.403253,0.880951,0.275856,0.305218,0.967044,0.31375,0.94115,0.443725,0.10139,0.331655,0.929888,0.28027,0.42262,0.152847,0.56537,0.447489,0.0271671,0.547072,0.642842,0.409158,0.976281,0.508046,0.820214,0.848031,0.239705,0.446911,0.167652,0.133425,0.595047,0.138446,0.26179,0.171475,0.380359,0.504299,0.583484,0.248785,0.505077,0.808382,0.809202,0.24019,6.65784e-05,0.635896,0.600103,0.45716,0.907348,0.44532,0.53046,0.598992,0.722503,0.638591,0.397214,0.19257,0.664403,0.83669,0.487509,0.662058,0.0689248,0.769375,0.740337,0.342945,0.741714,0.779536,0.703853,0.302563,0.717891,0.390689,0.0230844,0.240451,0.268421,0.211878,0.959146,0.888422,0.406165,0.0829424,0.694094,0.717084,0.945541,0.373292,0.0257969,0.084523,0.904214,0.726314,0.913243,0.0301201,0.955174,0.490775,0.321431,0.636039,0.262351,0.617085,0.151806,0.503192,0.467163,0.876819,0.642094,0.983972,0.895187,0.667411,0.696721,0.728739,0.853968,0.16185,0.182762,0.465073,0.820502,0.535544,0.921658,0.0825819,0.20559,0.181287,0.670392,0.947081,0.580275,0.258714,0.0785679,0.356129,0.222918,0.46228,0.419262,0.510293,0.878393,0.786568,0.0904418,0.53923,0.666743,0.65388,0.162872,0.525122,0.953768,0.43993,0.31167,0.215388,0.0877548,0.395311,0.0142689,0.631323,0.114918,0.224115,0.0264399,0.765579,0.0604553,0.205263,0.464384,0.930816,0.132552,0.29613,0.297871,0.611585,0.722812,0.42079,0.590804,0.0660234,0.986086,0.684136,0.146281,0.807619,0.554511,0.666937,0.754626,0.359819,0.415462,0.880614,0.960136,0.224798,0.242861,0.622478,0.813542,0.144939,0.566132,0.672466,0.373554,0.0307997,0.91925,0.519278,0.698949,0.204383,0.401636,0.279252,0.066725,0.905321,0.752554,0.474827,0.12445,0.564689,0.667119,0.188951,0.649254,0.0636541,0.417778,0.134953,0.739933,0.216644,0.488286,0.0255864,0.0445344,|0.64984,0.984129,0.376492,0.916166,0.599738,0.511781,0.0528207,0.469229,0.145615,0.253629,0.210923,0.630689,0.0416515,0.0465729,0.389728,0.343992,0.402828,0.881262,0.71396,0.833364,0.341305,0.259719,0.438701,0.500483,0.247696,0.829668,0.643731,0.865246,0.720202,0.785579,0.859105,0.104768,0.666506,0.381918,0.526451,0.0573488,0.0145829,0.747233,0.549775,0.287768,0.408015,0.0553761,0.215322,0.275699,0.848083,0.716314,0.604531,0.767195,0.439027,0.468864,0.87548,0.0728052,0.69617,0.247619,0.0339107,0.920793,0.0227257,0.148561,0.529031,0.359766,0.264206,0.268516,0.529439,0.86518,0.922313,0.647479,0.371114,0.480823,0.463618,0.245458,0.0363169,0.432575,0.208644,0.512,0.802995,0.281085,0.304982,0.0701193,0.662148,0.838268,0.865958,0.639603,0.164612,0.931021,0.335293,0.475476,0.0580019,0.910029,0.515617,0.252255,0.078716,0.692089,0.652048,0.677294,0.827616,0.344677,0.836996,0.584523,0.0414051,0.475946,0.304423,0.890906,0.0964793,0.125601,0.117954,0.825945,0.330696,0.236815,0.919405,0.91443,0.284196,0.0623698,0.585917,0.383837,0.624526,0.678026,0.44889,0.957572,0.980749,0.883476,0.868941,0.453532,0.583637,0.745386,0.359256,0.0223698,0.389699,0.555615,0.541777,0.748813,0.436645,0.296966,0.202265,0.415841,0.856379,0.206296,0.949993,0.577673,0.191613,0.134312,0.50965,0.686591,0.689233,0.420713,0.152516,0.75831,0.234623,0.779424,0.992174,0.949661,0.472373,0.542888,0.334245,0.217579,0.513631,0.346693,0.455778,0.595486,0.117612,0.524517,0.546352,0.703339,0.130486,0.477062,0.787653,0.819364,0.220162,0.914975,0.681493,0.0230454,0.73477,0.658911,0.388363,0.685771,0.544326,0.602387,0.606467,0.724808,0.0339635,0.979309,0.265705,0.212114,0.77894,0.0911732,0.852923,0.677429,0.602789,0.0147256,0.468887,0.856774,0.553178,0.010639,0.497032,0.810683,0.01072,0.717632,0.180901,0.0527918,0.055829,0.834738,0.659904,0.124257,0.655866,0.0827548,0.978145,0.358631,0.963742,0.48831,0.494248,0.890752,0.575711,0.768042,0.552356,0.896604,0.82384,0.075952,0.132974,0.266476,0.92346,0.0520436,0.694519,0.147527,0.272651,0.394279,0.825401,0.783901,0.0234831,0.539865,0.289265,0.654727,0.0139377,0.75192,0.428959,0.544579,0.41018,0.61139,0.330929,0.940332,0.8718,0.000329077,0.516394,0.947211,0.686093,0.145484,0.787245,0.848653,0.178636,0.373743,0.602944,0.589511,0.586981,0.0477776,0.00478381,0.993718,0.45214,0.00712281,0.215259,0.685819,0.871604,0.207373,0.69887,0.439659,0.812342,0.183403,0.487327,0.576649,0.996722,0.784342,0.399613,0.770574,0.409571,0.299025,0.90455,0.744957,0.858898,0.919363,0.515363,0.370632,0.54314,0.211648,0.754225,0.103209,0.777105,0.0568134,0.0160856,0.36571,0.858707,0.0627165,0.485439,0.645838,0.069291,0.721922,0.0180402,0.576714,0.575249,0.521201,0.492186,0.144879,0.17564,0.417561,0.510123,0.613055,0.812766,0.563335,0.674297,0.111978,0.934152,0.125259,0.82217,0.216782,0.453154,0.486099,0.315061,0.216646,0.888175,0.525011,0.250372,0.131891,0.19401,0.981511,0.366815,0.960604,0.202832,0.415873,0.988899,0.247346,0.903466,0.136184,0.861067,0.0702187,0.681949,0.870428,0.67483,0.480929,0.572379,0.808182,0.0091325,0.792888,0.136557,0.839332,0.624928,0.232621,0.170558,0.601892,0.287295,0.430555,0.0371731,0.631412,0.967685,0.0848365,0.300179,0.276534,0.579515,0.26438,0.129104,0.239323,0.588183,0.925252,0.567996,0.653704,0.671323,0.382629,0.729012,0.596998,0.988911,0.879579,0.626132,0.712892,0.166946,0.0121171,0.707043,0.0484638,0.582543,0.33574,0.458458,0.103339,0.785962,0.507073,0.617009,0.938094,0.852334,0.733201,0.285529,0.750012,0.85612,0.254208,0.687716,0.365227,0.659499,0.318676,0.816857,0.287461,0.538485,0.761402,0.453527,0.0565526,0.451592,0.26363,0.994314,0.764048,0.80434,0.0765873,0.413806,0.307659,0.185455,0.154708,0.580083,0.114024,0.143953,0.471415,0.647191,0.239771,0.389125,0.998908,0.613852,0.520008,0.0333456,0.717279,0.163191,0.548739,0.145958,0.922932,0.357871,0.392048,0.594875,0.57004,0.0246536,0.800457,0.399399,0.677295,0.998312,0.800444,0.618263,0.437735,0.277176,0.0740702,0.69425,0.0115647,0.59732,0.0748408,0.0561479,0.141539,0.202578,0.0166429,0.626091,0.669969,0.944653,0.957169,0.746903,0.791634,0.560552,0.905046,0.0736685,0.460142,0.497358,0.949823,0.897887,0.642219,0.803333,0.293522,0.938388,0.967503,0.511388,0.849718,0.0447291,0.796999,0.228753,0.666728,0.13108,0.901726,0.85103,0.765269,0.352134,0.376974,0.943669,0.318017,0.392421,0.794868,0.961839,0.248135,0.133374,0.603002,0.0441609,0.879595,0.50064,0.724753,0.964143,0.479992,0.867977,0.183967,0.522921,0.551579,0.141276,0.410988,0.9388,0.674877,0.924322,0.078675,0.122493,0.341409,0.701726,0.899998,0.149486,0.381662,0.873975,0.372371,0.685136,0.515449,0.46921,0.866827,0.899717,0.614743,0.621394,0.0767183,0.939377,0.412978,0.591415,0.936841,0.72872,0.962641,0.297958,0.642282,0.536862,0.978347,0.021078,0.63115,0.596663,0.439195,0.256184,0.815547,0.0845388,0.305332,0.343518,0.761086,0.327514,0.977857,0.0397928,0.540145,0.00943184,0.629715,0.749028,0.226014,0.640498,0.366701,0.548288,0.74313,0.597026,0.173058,0.208754,0.376757,0.6408,0.165812,0.842053,0.428429,0.477558,0.652605,0.119246,0.687417,0.838285,0.363656,0.193793,0.101052,0.865773,0.279965,0.50425,0.328207,0.395715,0.571607,0.970154,0.869705,0.564434,0.867216,0.586956,0.295521,0.301589,0.465472,0.964866,0.250988,0.0290223,0.285846,0.43108,0.870631,0.131689,0.204682,0.231803,0.534487,0.0339785,0.965011,0.781513,0.153882,0.447296,0.934138,0.208294,0.766481,0.179947,0.488483,0.325109,0.0641853,0.186435,0.429442,0.264877,0.171022,0.453793,0.544576,0.554304,0.372704,0.75053,0.449092,0.0996909,0.256166,0.0255878,0.952414,0.365369,0.755333,0.610279,0.401171,0.668408,0.49539,0.714508,0.00486851,0.0312195,0.314083,0.707238,0.590399,0.377575,0.767411,0.102471,0.683207,0.00420052,0.18494,0.209173,0.873339,0.24747,0.542204,0.044961,0.478561,0.000987649,0.409992,0.910884,0.19935,0.764854,0.172647,0.20016,0.0826163,0.402507,0.876384,0.38579,0.013976,0.717037,0.144979,0.339286,0.668598,0.795828,0.852723,0.83598,0.596078,0.38997,0.0639481,0.569986,0.528449,0.429269,0.479028,0.887429,0.613741,0.843997,0.163686,0.404572,0.306411,0.0103526,0.308502,0.832845,0.968559,0.477834,0.565051,0.914352,0.913118,0.615733,0.660532,0.512638,0.851283,0.216229,0.78456,0.247586,0.314304,0.766584,0.582374,0.832455,0.836429,0.854006,0.495729,0.808665,0.926422,0.924789,0.259352,0.594009,0.136824,0.239484,0.662826,0.356699,0.644713,0.632297,0.246594,0.168052,0.869706,0.498637,0.0436433,0.595492,0.603676,0.11377,0.223524,0.96722,0.651724,0.54389,0.140952,0.480006,0.52285,0.614763,0.955337,0.503235,0.794032,0.0708513,0.452219,0.144155,0.773747,0.795602,0.521146,0.079544,0.315284,0.240366,0.588464,0.398272,0.109423,0.237827,0.594895,0.724078,0.144685,0.897828,0.689946,0.212623,0.790434,0.594009,0.606027,0.0448871,0.8488,0.598144,0.618968,0.717377,0.752213,0.408197,0.275774,0.778041,0.505399,0.487673,0.878452,0.507375,0.80784,0.213491,0.0165593,0.755792,0.602009,0.084331,0.799207,0.026335,0.3755,0.224001,0.91245,0.553939,0.944087,0.159167,0.955891,0.878287,0.0407554,0.860249,0.624275,0.909422,0.824858,0.249161,0.389629,0.0027867,0.0524638,0.461103,0.643105,0.958834,0.434736,0.0746419,0.542562,0.495308,0.695654,0.593472,0.961142,0.477848,0.724546,0.446569,0.139001,0.288308,0.909104,0.815689,0.756746,0.865757,0.710762,0.873044,0.170703,0.0717996,0.00420761,0.842539,0.719361,0.788336,0.359533,0.239179,0.710261,0.964092,0.334882,0.700117,0.137116,0.830081,0.712,0.0451775,0.610536,0.12632,0.0714021,0.846275,0.123601,0.0173817,0.206242,0.771115,0.831803,0.234183,0.995568,0.163784,0.296884,0.560139,0.160692,0.984519,0.836877,0.794032,0.995733,0.133152,0.00448078,0.163974,0.234826,0.141908,0.483103,0.256708,0.61552,0.369681,0.860743,0.950302,0.829828,0.140037,0.23235,0.212884,0.0354272,0.447711,0.230398,0.00488573,0.277414,0.94903,0.774365,0.281991,0.302047,0.693523,0.849386,0.36956,0.624438,0.115327,0.0835537,0.985472,0.73227,0.662352,0.149911,0.135181,0.380135,0.645554,0.021014,0.214759,0.92739,0.103226,0.0575956,0.00267678,0.783829,0.447689,0.387461,0.272503,0.699934,0.84409,0.081526,0.561064,0.239815,0.871353,0.344716,0.634601,0.0773616,0.344604,0.344444,0.328565,0.936641,0.315509,0.336153,0.739473,0.91165,0.848492,0.459665,0.164456,0.324449,0.0765138,0.48821,0.877173,0.745975,0.706112,0.27889,0.284408,0.709339,0.562677,0.061404,0.86544,0.916604,0.715195,0.252272,0.739817,0.141221,0.992727,0.0360892,0.402143,0.361305,0.0887828,0.12442,0.879001,0.328116,0.810089,0.8042,0.372974,0.245697,0.332614,0.301094,0.474389,0.265244,0.749195,0.734284,0.157747,0.102944,0.859826,0.0227969,0.22873,0.252239,0.0542718,0.83057,0.8314,0.987727,0.360787,0.0622031,0.174685,0.789654,0.886221,0.611306,0.5936,0.14815,0.569195,0.522697,0.260928,0.842537,0.841802,0.213854,0.305928,0.585738,0.475511,0.187379,0.219521,0.4523,0.232872,0.912069,0.245971,0.463953,0.618243,0.505545,0.763753,0.493557,0.558414,0.429938,0.185676,0.813635,0.430211,0.364834,0.944021,0.885482,0.982071,0.738308,0.153605,0.461103,0.97182,0.846683,0.917619,0.950777,0.89522,0.337259,0.846144,0.376953,0.0296515,0.932567,0.166378,0.132965,|0.535909,0.172438,0.993214,0.228687,0.765485,0.974278,0.363167,0.255708,0.781759,0.140852,0.650436,0.293559,0.984355,0.721441,0.158084,0.781968,0.502762,0.770893,0.63481,0.495906,0.343008,0.0369309,0.211215,0.23699,0.886268,0.652096,0.474618,0.811852,0.120244,0.753083,0.989416,0.494227,0.847138,0.140822,0.769797,0.626846,0.611636,0.205344,0.594068,0.351171,0.213172,0.150919,0.622108,0.87421,0.220943,0.0872042,0.850592,0.0292842,0.448879,0.924965,0.349987,0.413552,0.398546,0.561999,0.0325819,0.113273,0.939641,0.602752,0.678387,0.398259,0.441671,0.213942,0.55385,0.586829,0.480993,0.690099,0.216063,0.749866,0.846884,0.0432978,0.69151,0.383096,0.0573434,0.718924,0.190345,0.339366,0.606757,0.419533,0.287108,0.349485,0.620244,0.387374,0.476288,0.53489,0.636703,0.0446829,0.620276,0.964661,0.360939,0.264059,0.888404,0.654756,0.536401,0.0876191,0.965268,0.300396,0.736201,0.0989468,0.874126,0.71313,0.795006,0.92052,0.393986,0.0929863,0.77161,0.848759,0.00857526,0.216781,0.519646,0.838614,0.631572,0.185733,0.201555,0.628089,0.245831,0.278244,0.147785,0.820283,0.0363806,0.705107,0.349975,0.0882092,0.648273,0.750896,0.388149,0.694134,0.565634,0.0618157,0.957676,0.191243,0.604348,0.19779,0.592402,0.569526,0.514768,0.671327,0.441669,0.112406,0.948689,0.688586,0.872891,0.104708,0.968528,0.663529,0.838536,0.428406,0.274917,0.120898,0.720667,0.528452,0.115225,0.457404,0.301567,0.980569,0.383663,0.569888,0.819733,0.271194,0.352785,0.725817,0.373434,0.0786928,0.55936,0.988228,0.628253,0.844709,0.899706,0.175186,0.841138,0.108862,0.355688,0.38281,0.218486,0.719093,0.316611,0.348442,0.892158,0.871109,0.801672,0.495547,0.181516,0.554481,0.0499998,0.0501491,0.559749,0.388939,0.274904,0.122943,0.121861,0.78914,0.371,0.284753,0.434281,0.326506,0.0679037,0.866683,0.589786,0.395663,0.889808,0.0881164,0.556709,0.806185,0.403914,0.536798,0.44343,0.287232,0.487187,0.220881,0.578142,0.224824,0.725141,0.32014,0.419859,0.869376,0.676604,0.591658,0.565472,0.538511,0.39039,0.380886,0.990474,0.929827,0.0917999,0.487441,0.29692,0.502212,0.936267,0.0580505,0.0915415,0.872022,0.558223,0.893018,0.478069,0.545576,0.124183,0.983216,0.556439,0.496347,0.144133,0.622424,0.687141,0.0838157,0.999574,0.914801,0.72292,0.401405,0.358694,0.427223,0.806244,0.966551,0.785726,0.8649,0.126301,0.519046,0.345883,0.775464,0.80911,0.106654,0.239268,0.239778,0.113165,0.413458,0.742727,0.318102,0.775997,0.317192,0.454981,0.804202,0.62971,0.0301815,0.0263971,0.112674,0.347227,0.494858,0.657915,0.881306,0.940599,0.369932,0.176422,0.670175,0.4029,0.0845787,0.848433,0.186092,0.430903,0.342143,0.673644,0.225089,0.388014,0.265974,0.543537,0.757169,0.283343,0.852065,0.657201,0.948263,0.986574,0.895177,0.104892,0.757941,0.821145,0.249804,0.370532,0.384029,0.193255,0.209219,0.707023,0.325639,0.905702,0.856911,0.340462,0.148999,0.363175,0.0823533,0.584573,0.236137,0.475949,0.96354,0.739148,0.348823,0.0848055,0.0661551,0.450863,0.128502,0.124412,0.424782,0.270883,0.34258,0.449964,0.574348,0.353316,0.505812,0.470788,0.342426,0.944634,0.293877,0.313752,0.0316584,0.802656,0.282594,0.00137943,0.458265,0.438518,0.104145,0.0244055,0.962458,0.319609,0.36682,0.632811,0.969329,0.676251,0.245275,0.976708,0.294155,0.254728,0.916704,0.962245,0.40628,0.335698,0.187002,0.826234,0.372138,0.164767,0.0116041,0.486396,0.221416,0.716564,0.393058,0.342731,0.393862,0.450393,0.533631,0.264673,0.430723,0.63045,0.875327,0.971178,0.502047,0.329071,0.274321,0.580488,0.703341,0.162801,0.202552,0.282305,0.116327,0.565975,0.525111,0.331502,0.770179,0.679955,0.46617,0.779405,0.829463,0.0877226,0.37601,0.245067,0.58092,0.492822,0.578048,0.306526,0.687498,0.567603,0.874439,0.46406,0.020556,0.256173,0.78581,0.779487,0.300804,0.162917,0.834911,0.515568,0.388248,0.249994,0.880148,0.709322,0.327556,0.509574,0.233307,0.447124,0.67966,0.166727,0.12872,0.193534,0.0328943,0.713119,0.0201502,0.815289,0.452803,0.914761,0.161739,0.477769,0.302035,0.203503,0.593473,0.467315,0.884304,0.828876,0.313966,0.509653,0.10222,0.276301,0.03267,0.812253,0.133478,0.852582,0.413874,0.291152,0.505196,0.140892,0.893323,0.780522,0.80821,0.0228397,0.887084,0.949336,0.120198,0.593204,0.712413,0.843145,0.928115,0.852886,0.143601,0.570076,0.555354,0.67355,0.454037,0.10741,0.903637,0.0160584,0.929794,0.911105,0.578155,0.217384,0.913774,0.339218,0.337922,0.495768,0.272236,0.830359,0.321234,0.0460275,0.508998,0.874362,0.998097,0.863628,0.414428,0.872065,0.805539,0.0192195,0.282351,0.941728,0.591731,0.0263973,0.0805443,0.122801,0.743707,0.976447,0.939901,0.715352,0.0144681,0.587926,0.903809,0.876488,0.249068,0.672683,0.573889,0.244385,0.402089,0.0255572,0.00310636,0.747672,0.505645,0.196873,0.170988,0.700361,0.234441,0.976682,0.592579,0.826865,0.534492,0.584987,0.832374,0.105103,0.578878,0.818242,0.403959,0.585862,0.395423,0.322368,0.823229,0.436482,0.243397,0.267855,0.818944,0.395423,0.210811,0.701491,0.896059,0.00874078,0.825904,0.777261,0.817014,0.907238,0.532707,0.994867,0.853329,0.953068,0.349644,0.547448,0.351046,0.950035,0.657428,0.127478,0.954937,0.933749,0.7101,0.218493,0.342793,0.00219208,0.583736,0.558344,0.502837,0.258454,0.608409,0.80288,0.265606,0.00322843,0.868846,0.519235,0.643392,0.390372,0.054151,0.0884733,0.775916,0.774567,0.431474,0.099668,0.596564,0.546299,0.658501,0.887612,0.581927,0.0398061,0.315386,0.54443,0.030625,0.502049,0.446436,0.635765,0.934007,0.774716,0.36635,0.784926,0.517287,0.530845,0.698138,0.138061,0.878152,0.55853,0.168131,0.584519,0.507909,0.516195,0.148017,0.704205,0.492008,0.419263,0.0735002,0.334614,0.921663,0.793018,0.113321,0.844636,0.835939,0.822103,0.782604,0.814886,0.97988,0.338992,0.157477,0.449861,0.808361,0.265833,0.600822,0.242682,0.335016,0.496726,0.376396,0.27082,0.145864,0.834873,0.463273,0.0114508,0.432575,0.433829,0.929989,0.191675,0.917058,0.11517,0.36287,0.802222,0.389562,0.454591,0.809049,0.26241,0.244484,0.76519,0.576729,0.383125,0.0610806,0.798245,0.100528,0.506512,0.751475,0.0765463,0.782437,0.237889,0.203165,0.955395,0.610241,0.655332,0.756907,0.942456,0.625343,0.0942994,0.000823557,0.366688,0.904183,0.882004,0.403587,0.803174,0.70625,0.9292,0.240103,0.652989,0.468374,0.0227849,0.0872498,0.704157,0.682468,0.292157,0.159142,0.709154,0.93211,0.777888,0.0760615,0.761045,0.319558,0.207507,0.712624,0.905435,0.891614,0.684138,0.00302094,0.932911,0.0128572,0.134875,0.641802,0.679167,0.975712,0.461799,0.877923,0.186259,0.653236,0.545029,0.939818,0.769653,0.0353983,0.377928,0.46105,0.703153,0.824146,0.0328329,0.236491,0.94274,0.664181,0.328869,0.376821,0.231171,0.236931,0.0970784,0.254713,0.408282,0.00474417,0.554861,0.191547,0.480112,0.082144,0.110621,0.191063,0.80996,0.291468,0.834552,0.746067,0.565939,0.826515,0.270766,0.0266471,0.957078,0.475937,0.437127,0.449891,0.016576,0.176011,0.28608,0.915563,0.702066,0.287752,0.221937,0.537737,0.839078,0.739288,0.0816633,0.31537,0.710955,0.23498,0.15093,0.680131,0.33119,0.026934,0.815839,0.477597,0.394227,0.447208,0.277899,0.980087,0.440994,0.914217,0.0184458,0.18627,0.554787,0.901943,0.0459809,0.0973203,0.133834,0.0584051,0.981692,0.888272,0.516489,0.844405,0.667376,0.900706,0.913412,0.708264,0.768323,0.333089,0.279815,0.487519,0.140351,0.877564,0.449139,0.453087,0.824724,0.893808,0.412559,0.143197,0.248131,0.33993,0.19125,0.301725,0.825075,0.416468,0.99173,0.710742,0.0518507,0.718442,0.510567,0.99359,0.24887,0.674312,0.947573,0.379536,0.263998,0.323369,0.308171,0.488245,0.0447432,0.223609,0.619328,0.39698,0.627969,0.219518,0.118994,0.901236,0.00848466,0.0548908,0.928525,0.63307,0.992718,0.755976,0.582591,0.425627,0.828376,0.966859,0.19201,0.790217,0.0666927,0.905467,0.413237,0.409289,0.502966,0.596833,0.179864,0.726351,0.482919,0.187678,0.763885,0.379651,0.801109,0.142971,0.604664,0.461885,0.688673,0.503289,0.110746,0.784938,0.39265,0.301724,0.429108,0.234865,0.25613,0.691757,0.138946,0.355585,0.722314,0.287371,0.657523,0.963355,0.826863,0.0717778,0.993991,0.345423,0.187718,0.867287,0.522717,0.0297492,0.730962,0.827665,0.88009,0.553264,0.917091,0.468672,0.0869874,0.801654,0.113008,0.716307,0.482676,0.321108,0.473872,0.124468,0.478033,0.328039,0.321868,0.216345,0.926504,0.627147,0.226526,0.22766,0.736528,0.960535,0.259455,0.338246,0.664546,0.0557986,0.703107,0.180868,0.919066,0.0127611,0.967537,0.0297604,0.251385,0.00424945,0.702514,0.984151,0.1691,0.93619,0.433682,0.506757,0.557993,0.765488,0.612613,0.218287,0.384344,0.274715,0.723192,0.566332,0.883327,0.598973,0.378975,0.232674,0.936597,0.753415,0.8204,0.62698,0.910509,0.272454,0.234106,0.769194,0.916615,0.968971,0.844105,0.294448,0.401005,0.0279244,0.406362,0.909654,0.803897,0.0707266,0.064416,0.9874,0.970128,0.288349,0.644402,0.0384184,0.824534,0.949149,0.731977,0.14696,0.900711,0.715803,0.482877,0.357586,0.46124,0.948663,0.746666,0.437155,0.501466,0.572923,0.261587,0.213935,0.91663,0.787819,0.286375,0.538279,0.00434577,0.186292,0.71699,0.193227,0.637452,0.376287,0.255685,0.236932,0.0134556,0.452094,0.740581,0.757512,0.0132154,0.352776,0.8334,0.476853,0.0998278,0.414205,0.817139,0.224312,0.339082,0.221584,0.194984,0.259362,|0.627824,0.890982,0.882576,0.718328,0.307453,0.641637,0.233986,0.782022,0.852406,0.71807,0.363373,0.160669,0.937757,0.30414,0.597028,0.211705,0.840447,0.748522,0.519505,0.749161,0.686556,0.384233,0.530052,0.712518,0.24815,0.356088,0.131123,0.287067,0.459411,0.809849,0.29516,0.792279,0.615612,0.417767,0.10292,0.706286,0.906858,0.369998,0.289549,0.293543,0.206933,0.921955,0.245073,0.844047,0.176929,0.872851,0.149026,0.465145,0.291829,0.108719,0.0681435,0.66409,0.442404,0.0174098,0.869847,0.870706,0.687225,0.708084,0.40225,0.130971,0.955054,0.738032,0.762611,0.98866,0.24179,0.731849,0.794515,0.442692,0.294863,0.0809822,0.0601388,0.26486,0.800283,0.376158,0.0179222,0.393871,0.155691,0.209917,0.149854,0.750615,0.849792,0.331631,0.726402,0.0711564,0.135033,0.830468,0.123465,0.0427806,0.783136,0.705752,0.13754,0.0551295,0.885234,0.7472,0.210932,0.65503,0.151738,0.993516,0.1295,0.609388,0.450487,0.851149,0.644117,0.288287,0.191288,0.462278,0.762571,0.450379,0.246403,0.369543,0.853775,0.479969,0.955322,0.068437,0.602361,0.601796,0.520063,0.752763,0.986258,0.590379,0.0851905,0.376956,0.953284,0.432838,0.951991,0.346027,0.0815682,0.490294,0.848013,0.658128,0.752165,0.408988,0.87055,0.693574,0.379779,0.305315,0.548767,0.257947,0.494648,0.464511,0.869269,0.00987726,0.907775,0.0872601,0.640912,0.754226,0.70424,0.167414,0.584254,0.798703,0.598467,0.797524,0.44399,0.159422,0.839468,0.766265,0.644844,0.238014,0.114376,0.592169,0.717207,0.42875,0.122949,0.924847,0.822578,0.416266,0.190091,0.457252,0.903842,0.94369,0.604278,0.772581,0.872821,0.0485444,0.346883,0.903164,0.606165,0.0903111,0.473542,0.738441,0.164602,0.661867,0.738752,0.213692,0.664852,0.54292,0.406135,0.329836,0.876864,0.693286,0.131229,0.704384,0.680802,0.0948614,0.178063,0.0706034,0.247263,0.304352,0.396422,0.73924,0.627405,0.296422,0.749053,0.782467,0.584431,0.639262,0.0734954,0.841083,0.883306,0.619332,0.635806,0.318966,0.309154,0.307525,0.355623,0.56907,0.0687363,0.0834643,0.626115,0.801461,0.633558,0.355933,0.0463541,0.774614,0.122194,0.891416,0.0446858,0.17712,0.144242,0.481191,0.14344,0.803054,0.772064,0.576682,0.934844,0.572951,0.867437,0.640123,0.209573,0.746738,0.164636,0.877117,0.684328,0.469228,0.255739,0.90548,0.391035,0.968605,0.543456,0.273863,0.196296,0.78663,0.139663,0.847973,0.500376,0.857625,0.210543,0.995031,0.823869,0.503711,0.84486,0.121536,0.250662,0.857356,0.145639,0.971146,0.847078,0.390462,0.529303,0.776564,0.624163,0.36579,0.646166,0.428923,0.566556,0.6064,0.587969,0.801619,0.723587,0.991987,0.116003,0.352542,0.0506181,0.874462,0.368625,0.913964,0.158263,0.994409,0.416119,0.896877,0.55827,0.685301,0.321664,0.92909,0.462449,0.655888,0.934395,0.583516,0.0744749,0.534849,0.243911,0.744161,0.100771,0.75743,0.720388,0.0981076,0.687084,0.166059,0.896152,0.387374,0.711673,0.0360755,0.576438,0.752806,0.386688,0.817468,0.467987,0.533471,0.0376083,0.880893,0.501254,0.169024,0.794819,0.436251,0.431743,0.84586,0.168829,0.493507,0.794233,0.261849,0.0451712,0.30534,0.381553,0.50293,0.12938,0.926076,0.96663,0.80087,0.159423,0.851757,0.81518,0.553293,0.774872,0.954995,0.312845,0.220321,0.885047,0.668904,0.24016,0.419906,0.334067,0.536217,0.711529,0.752706,0.386127,0.038517,0.220306,0.855457,0.316964,0.454601,0.677598,0.118936,0.0766893,0.694272,0.536224,0.442904,0.063334,0.222521,0.0607402,0.383468,0.857128,0.257115,0.775788,0.769929,0.919973,0.574669,0.974092,0.987465,0.494411,0.152132,0.182094,0.54191,0.478777,0.874047,0.287537,0.543057,0.358709,0.00772065,0.598542,0.864702,0.587887,0.951814,0.381743,0.0163798,0.581131,0.370161,0.983,0.650152,0.173346,0.529238,0.349813,0.0296772,0.276788,0.935887,0.0228969,0.230246,0.221492,0.519038,0.014668,0.0838575,0.36197,0.760633,0.691491,0.908044,0.130437,0.366283,0.164399,0.290018,0.575851,0.188038,0.708533,0.371771,0.413834,0.0480718,0.29777,0.00465816,0.248676,0.397782,0.400724,0.304226,0.834633,0.930697,0.0223763,0.600742,0.592536,0.614972,0.331285,0.841572,0.519793,0.332636,0.530939,0.572387,0.4861,0.317767,0.930146,0.214616,0.105696,0.443859,0.294997,0.894642,0.782809,0.833244,0.896927,0.985053,0.473135,0.199932,0.72568,0.599591,0.276099,0.327622,0.499815,0.262232,0.698138,0.263022,0.831351,0.764829,0.0166605,0.0198824,0.818969,0.000328779,0.106739,0.432031,0.33341,0.0987284,0.163053,0.885415,0.296567,0.341759,0.517212,0.492533,0.812752,0.34964,0.672195,0.139447,0.662006,0.393731,0.583512,0.940674,0.621746,0.438292,0.489873,0.512397,0.298882,0.17469,0.764262,0.951499,0.698374,0.2123,0.989509,0.523753,0.260907,0.421706,0.349712,0.768137,0.742592,0.55008,0.581222,0.424055,0.12168,0.94027,0.522963,0.628018,0.137952,0.0507119,0.387416,0.732506,0.138052,0.77351,0.233232,0.90532,0.0251051,0.0133179,0.315733,0.452926,0.817611,0.732762,0.635622,0.833551,0.230343,0.493399,0.469228,0.479154,0.659939,0.132314,0.483821,0.827564,0.55775,0.794634,0.204604,0.762124,0.496692,0.116106,0.771903,0.817133,0.660793,0.388191,0.156569,0.23594,0.591785,0.0432373,0.319151,0.552802,0.47725,0.72218,0.0684533,0.373661,0.753831,0.307251,0.154726,0.153118,0.848531,0.558012,0.392545,0.171927,0.233397,0.289867,0.886908,0.262548,0.000397086,0.643751,0.0133539,0.926949,0.698871,0.871981,0.422141,0.655703,0.117733,0.611312,0.318571,0.280493,0.389393,0.279675,0.116243,0.170554,0.906751,0.098095,0.0591859,0.186419,0.80079,0.43341,0.861196,0.142503,0.207136,0.484547,0.0773904,0.954026,0.774753,0.596912,0.756467,0.608025,0.516197,0.753338,0.00342083,0.961336,0.251342,0.835514,0.906841,0.839501,0.361687,0.219626,0.267009,0.384474,0.722044,0.533906,0.569303,0.817301,0.353259,0.448864,0.401054,0.488299,0.383168,0.498236,0.32953,0.105652,0.0295473,0.62184,0.953488,0.865237,0.732515,0.72906,0.90905,0.061936,0.120438,0.758075,0.162956,0.99632,0.90913,0.553954,0.112167,0.935721,0.588538,0.981868,0.228357,0.207322,0.0743384,0.292093,0.754323,0.225203,0.640824,0.918921,0.287185,0.956746,0.437038,0.119239,0.430881,0.575737,0.23138,0.592721,0.394621,0.863826,0.194252,0.255006,0.983203,0.897317,0.419064,0.981179,0.866273,0.971111,0.0180161,0.0921719,0.418092,0.932303,0.969145,0.987086,0.018512,0.922765,0.486907,0.331587,0.831298,0.560472,0.25259,0.767788,0.420445,0.875503,0.391069,0.99411,0.275276,0.681458,0.840035,0.76636,0.0898181,0.739803,0.333158,0.305659,0.284646,0.45276,0.328985,0.67896,0.0859194,0.120965,0.271182,0.170751,0.914349,0.587208,0.138537,0.746019,0.145225,0.737681,0.950942,0.96161,0.0183098,0.71098,0.951368,0.582141,0.478655,0.462227,0.00935942,0.429713,0.767257,0.0715134,0.289284,0.626225,0.891483,0.537426,0.550551,0.531625,0.145341,0.76573,0.437351,0.351339,0.941986,0.398724,0.328764,0.234024,0.742205,0.929219,0.649397,0.624618,0.918742,0.55411,0.765411,0.883301,0.908375,0.515136,0.703097,0.611873,0.0645837,0.712548,0.493668,0.667356,0.748218,0.246015,0.433856,0.0133424,0.800484,0.477927,0.00528365,0.841151,0.304492,0.588942,0.0613267,0.182451,0.679677,0.710213,0.913834,0.943515,0.0395489,0.3209,0.964941,0.0203795,0.453477,0.182265,0.597424,0.381983,0.354919,0.147993,0.611067,0.925569,0.512495,0.969276,0.502685,0.704792,0.473178,0.732388,0.458111,0.284611,0.47995,0.880407,0.821323,0.469738,0.570728,0.521016,0.535977,0.869301,0.502052,0.372217,0.779086,0.623957,0.368602,0.541278,0.822091,0.6482,0.784557,0.734661,0.516252,0.508292,0.74143,0.318164,0.735747,0.912132,0.0927274,0.256495,0.551146,0.633057,0.899223,0.24851,0.76856,0.0514013,0.571808,0.216842,0.382644,0.867194,0.884967,0.389566,0.503042,0.817921,0.299189,0.405786,0.908917,0.661411,0.505299,0.853018,0.479183,0.585492,0.538772,0.665556,0.864479,0.433201,0.727333,0.733825,0.276478,0.701155,0.99225,0.109634,0.931607,0.14239,0.117428,0.260107,0.486567,0.989328,0.187212,0.838947,0.525105,0.382529,0.704534,0.575805,0.981775,0.895527,0.0567674,0.359212,0.130217,0.932304,0.771658,0.547969,0.964152,0.245121,0.0903656,0.36572,0.272897,0.763617,0.84075,0.783875,0.146235,0.460612,0.438185,0.382363,0.680933,0.485947,0.335085,0.927058,0.889537,0.185239,0.361159,0.0649311,0.204592,0.0994038,0.852604,0.0748157,0.477438,0.0586553,0.623637,0.0782391,0.528489,0.109205,0.678973,0.0241271,0.340007,0.325036,0.968968,0.460174,0.83289,0.502563,0.963111,0.837529,0.116359,0.891753,0.843932,0.535786,0.984043,0.0376727,0.805337,0.550816,0.834247,0.714506,0.0796455,0.852694,0.903259,0.593421,0.769044,0.302806,0.6267,0.375981,0.939742,0.96276,0.884086,0.910955,0.936951,0.0907556,0.798964,0.919365,0.33,0.551644,0.975923,0.68718,0.698904,0.322887,0.669539,0.286989,0.843546,0.302406,0.582721,0.976715,0.963383,0.270347,0.117312,0.593208,0.325175,0.764906,0.679528,0.40118,0.563843,0.445701,0.987421,0.219589,0.811577,0.430134,0.0068717,0.469809,0.855415,0.391708,0.618729,0.474856,0.334798,0.811113,0.452931,0.331383,0.143398,0.495864,0.632952,0.0665967,0.0617081,0.0741245,0.855507,0.583068,0.771036,0.514525,0.755974,0.228457,0.928948,0.398598,0.733554,0.76226,0.456022,0.885971,0.834524,0.496745,0.720419,0.295674,0.597232,0.168578,0.154483,0.684595,0.340584,0.0811501,0.354734,0.606148,0.277911,0.115651,0.0391459,0.0040139,|0.814691,0.350938,0.784077,0.813029,0.118704,0.375974,0.115987,0.0427127,0.960452,0.35159,0.877929,0.0104513,0.576242,0.139754,0.0195565,0.537409,0.656182,0.439887,0.166263,0.381363,0.352678,0.0458916,0.976091,0.408438,0.0945399,0.309187,0.0295773,0.515117,0.0692362,0.498518,0.274218,0.466096,0.990083,0.223929,0.967664,0.863875,0.465383,0.64138,0.00397319,0.0281032,0.0503539,0.56193,0.679059,0.115647,0.563982,0.160796,0.965425,0.791665,0.832065,0.520563,0.604042,0.377336,0.385627,0.703821,0.248487,0.530893,0.123172,0.708472,0.244803,0.724752,0.246024,0.357768,0.967007,0.0797306,0.311941,0.988784,0.482681,0.221918,0.816494,0.640039,0.208233,0.0822719,0.909245,0.862139,0.362595,0.976998,0.0758469,0.357477,0.450538,0.599799,0.866234,0.092173,0.187564,0.790615,0.00883925,0.519844,0.315372,0.0281043,0.28148,0.360049,0.981902,0.522095,0.590959,0.183521,0.319428,0.996867,0.191851,0.518399,0.15851,0.483858,0.98144,0.33073,0.62869,0.855046,0.135639,0.510738,0.718127,0.784507,0.420244,0.60496,0.336816,0.431067,0.721822,0.00800633,0.819361,0.800585,0.98945,0.682662,0.489759,0.335323,0.820378,0.748203,0.960399,0.50227,0.15511,0.052622,0.739077,0.47593,0.788752,0.745509,0.806637,0.718041,0.759368,0.942863,0.188548,0.983514,0.635973,0.379685,0.464833,0.260232,0.464675,0.679864,0.18746,0.848296,0.939246,0.634715,0.407315,0.0718648,0.605428,0.471023,0.383643,0.732513,0.660781,0.920847,0.592353,0.273524,0.583072,0.363715,0.47738,0.747709,0.563724,0.504413,0.347747,0.560721,0.480224,0.140896,0.103558,0.368286,0.760311,0.520319,0.315086,0.982737,0.694306,0.400075,0.66792,0.274418,0.734071,0.402831,0.807981,0.760488,0.788899,0.269498,0.238811,0.798519,0.860188,0.682455,0.0258127,0.38754,0.733977,0.0785164,0.607291,0.372576,0.374983,0.48025,0.40298,0.37837,0.813473,0.192955,0.315928,0.152956,0.87687,0.57384,0.289831,0.052909,0.497084,0.00877249,0.398751,0.554169,0.262695,0.196715,0.00653476,0.935186,0.112431,0.0894812,0.776386,0.859132,0.272133,0.976601,0.846395,0.235197,0.657531,0.394155,0.154163,0.221139,0.696056,0.391797,0.919217,0.0862473,0.979182,0.525519,0.199464,0.13318,0.0656868,0.861424,0.0324401,0.251903,0.484947,0.925974,0.65067,0.634907,0.185457,0.164515,0.124876,0.0536619,0.0444933,0.660131,0.779409,0.605437,0.735572,0.597057,0.556171,0.800446,0.747453,0.953063,0.681675,0.473473,0.694034,0.584807,0.654321,0.261751,0.506194,0.456176,0.247345,0.867526,0.349169,0.542807,0.147931,0.311717,0.318507,0.851583,0.0637181,0.777763,0.033684,0.258337,0.690581,0.369014,0.710893,0.171054,0.533618,0.142723,0.418453,0.230892,0.118628,0.795265,0.493568,0.036244,0.0304627,0.811441,0.813977,0.0315173,0.686613,0.440215,0.533687,0.28135,0.2307,0.964334,0.238009,0.99343,0.981324,0.575382,0.767061,0.323165,0.250582,0.837004,0.279716,0.967802,0.100958,0.362874,0.595434,0.046058,0.289759,0.666117,0.498842,0.362934,0.0953963,0.951944,0.305633,0.263632,0.928526,0.99296,0.131562,0.198729,0.150913,0.332393,0.14489,0.627291,0.94223,0.43858,0.273296,0.36995,0.0996529,0.309239,0.655538,0.409389,0.360962,0.80135,0.392719,0.8681,0.123292,0.36735,0.120573,0.331898,0.367094,0.203598,0.786667,0.412507,0.938515,0.0347362,0.909291,0.520126,0.914443,0.725361,0.842446,0.156886,0.552323,0.917938,0.0696135,0.298738,0.710149,0.184287,0.44556,0.108669,0.0152061,0.341159,0.409899,0.482973,0.32548,0.23246,0.520054,0.722741,0.447951,0.169895,0.0969748,0.246054,0.26075,0.650518,0.618777,0.133593,0.0278051,0.628942,0.249517,0.66685,0.46089,0.407599,0.975184,0.43297,0.0244523,0.0411112,0.455303,0.0154567,0.318124,0.0406303,0.727694,0.899688,0.219901,0.325933,0.443588,0.757336,0.692502,0.154528,0.0983164,0.509323,0.0128087,0.569437,0.952041,0.7929,0.43602,0.926612,0.464583,0.419604,0.0405529,0.635045,0.445766,0.121695,0.960885,0.177697,0.605897,0.925119,0.547645,0.115734,0.947648,0.339068,0.38651,0.515943,0.576208,0.419804,0.408693,0.694804,0.455397,0.936709,0.697709,0.753454,0.707948,0.690624,0.72994,0.9921,0.779213,0.478438,0.620624,0.106572,0.643765,0.819144,0.66651,0.596284,0.869714,0.709346,0.693762,0.989049,0.170981,0.544061,0.192331,0.820951,0.353369,0.343522,0.787551,0.276134,0.765987,0.0180489,0.236922,0.178178,0.600903,0.645739,0.0726227,0.937236,0.995138,0.126782,0.42969,0.249771,0.163192,0.636967,0.10976,0.953682,0.735318,0.93013,0.322973,0.18968,0.666874,0.925003,0.466664,0.166828,0.664227,0.954584,0.0528471,0.727254,0.233261,0.162157,0.205529,0.188466,0.824463,0.133669,0.736997,0.58538,0.877959,0.185215,0.304397,0.341108,0.527447,0.220495,0.254538,0.247955,0.161956,0.545468,0.289027,0.100378,0.812344,0.901713,0.0519201,0.998888,0.760647,0.864294,0.773351,0.10145,0.856955,0.28588,0.57505,0.560139,0.766733,0.00233763,0.434948,0.55972,0.486912,0.0914936,0.753082,0.0159869,0.86318,0.944199,0.506697,0.0233291,0.970304,0.664508,0.894442,0.0702938,0.500565,0.77396,0.821079,0.470791,0.546071,0.844043,0.866745,0.824316,0.81723,0.842902,0.29619,0.307679,0.296283,0.844329,0.369723,0.138392,0.843441,0.774046,0.239765,0.0958743,0.108981,0.430944,0.119804,0.31357,0.24679,0.864439,0.0251834,0.263497,0.56796,0.604629,0.362506,0.551253,0.0528294,0.690365,0.82863,0.21884,0.524914,0.104277,0.739299,0.732703,0.622171,0.248261,0.947487,0.634073,0.436486,0.858997,0.336326,0.130723,0.994595,0.975991,0.485488,0.955094,0.853798,0.668111,0.883361,0.786676,0.678815,0.696516,0.0550525,0.855861,0.352801,0.298002,0.0465553,0.848318,0.726096,0.323728,0.00811201,0.740128,0.0204468,0.0762635,0.551076,0.0486061,0.00579733,0.433353,0.860081,0.431101,0.576532,0.399064,0.275096,0.730384,0.396606,0.292591,0.655866,0.253736,0.703351,0.0733262,0.666919,0.459299,0.335408,0.342563,0.948794,0.290035,0.992882,0.107124,0.736084,0.223709,0.35352,0.383545,0.44817,0.574546,0.284385,0.241783,0.542897,0.696758,0.145883,0.452879,0.745892,0.905975,0.736557,0.838064,0.62107,0.982123,0.0712229,0.625619,0.38546,0.192792,0.676268,0.254433,0.868027,0.917264,0.784219,0.040433,0.342878,0.0794743,0.212904,0.915986,0.625638,0.768601,0.629044,0.4913,0.622919,0.986214,0.249967,0.684086,0.34021,0.73049,0.492596,0.183357,0.0921134,0.7156,0.272392,0.308366,0.828691,0.742994,0.849179,0.765496,0.679554,0.47747,0.127296,0.398001,0.916064,0.838292,0.438068,0.536579,0.808685,0.310644,0.266757,0.795933,0.846064,0.578804,0.499479,0.844108,0.364311,0.94008,0.119212,0.670781,0.408807,0.44842,0.143061,0.744366,0.627752,0.492961,0.24006,0.505901,0.221381,0.255674,0.858998,0.98648,0.61556,0.23748,0.703272,0.232171,0.527763,0.165337,0.562199,0.0951475,0.40145,0.844161,0.117813,0.0301388,0.090549,0.501774,0.914941,0.36802,0.515061,0.354681,0.30675,0.0923567,0.615482,0.623193,0.360324,0.190962,0.053095,0.670118,0.768121,0.404966,0.192324,0.970159,0.680235,0.147336,0.0409691,0.313824,0.445343,0.656191,0.127861,0.869178,0.179738,0.656295,0.142221,0.128034,0.457604,0.197035,0.127437,0.142703,0.858823,0.213953,0.144565,0.695238,0.444885,0.241608,0.283475,0.0573127,0.898846,0.102143,0.422136,0.542319,0.473624,0.104772,0.48602,0.288356,0.576355,0.0588656,0.717096,0.0722706,0.936966,0.903092,0.730505,0.891247,0.161172,0.699159,0.0983332,0.817195,0.121896,0.953227,0.188647,0.261271,0.0830343,0.922601,0.268731,0.260127,0.937431,0.42186,0.341197,0.896565,0.00250113,0.894258,0.850519,0.0501699,0.278673,0.629248,0.901298,0.506439,0.0910862,0.632818,0.675202,0.687889,0.346426,0.0657381,0.138036,0.846961,0.901367,0.684492,0.466278,0.909904,0.827192,0.643049,0.719734,0.208558,0.0546761,0.0663391,0.991164,0.588772,0.667033,0.129455,0.398379,0.637859,0.823632,0.720272,0.203427,0.712313,0.356392,0.23157,0.546201,0.187951,0.919249,0.761101,0.355852,0.296553,0.743371,0.934041,0.178596,0.0988232,0.909805,0.100284,0.979326,0.863675,0.354081,0.359565,0.785237,0.0207516,0.540874,0.828386,0.298717,0.186056,0.687982,0.420021,0.199763,0.857299,0.291428,0.155592,0.470684,0.867986,0.106024,0.107172,0.307759,0.754222,0.392907,0.340588,0.51202,0.474413,0.522442,0.71638,0.00190133,0.125625,0.417366,0.933536,0.848767,0.153745,0.409793,0.105931,0.204143,0.0622281,0.29322,0.0300633,0.133932,0.967016,0.806449,0.116272,0.95198,0.0504941,0.491256,0.418806,0.756477,0.478299,0.829523,0.164997,0.0625218,0.344263,0.314033,0.123156,0.949715,0.478078,0.0197768,0.610016,0.855882,0.714101,0.669031,0.217629,0.949779,0.537235,0.92009,0.85923,0.196264,0.617999,0.147794,0.795337,0.523498,0.0867386,0.120182,0.196255,0.474836,0.88586,0.299573,0.824439,0.950005,0.391444,0.3956,0.54327,0.00285602,0.0713034,0.849044,0.848575,0.0185826,0.534231,0.877441,0.358104,0.829011,0.419275,0.873113,0.685202,0.466349,0.599829,0.963878,0.497069,0.59087,0.0892336,0.57273,0.438048,0.627347,0.684741,0.584245,0.508726,0.190259,0.75539,0.693698,0.120566,0.595818,0.37154,0.501748,0.948646,0.996699,0.623307,0.756248,0.284814,0.386892,0.129568,0.779322,0.922736,0.625445,0.769426,0.781246,0.377485,0.99847,0.961007,0.223692,0.610015,0.406056,0.833804,0.632497,0.48483,0.638917,0.899858,0.929722,0.155775,0.79662,0.636826,0.169295,0.927,0.801754,0.886724,0.1676,0.612079,0.442094,0.986743,0.730761,0.472866,0.999327,0.344626,|0.0183501,0.88261,0.157566,0.67358,0.220918,0.70935,0.544532,0.0159045,0.99628,0.713976,0.0688553,0.767527,0.581831,0.820623,0.669521,0.879821,0.242663,0.862038,0.335232,0.576161,0.970727,0.715736,0.0919173,0.587752,0.231401,0.240416,0.247357,0.153172,0.217671,0.123847,0.11167,0.1444,0.334989,0.157457,0.773143,0.370268,0.279002,0.532958,0.628023,0.279971,0.934082,0.889439,0.132027,0.815562,0.624095,0.501938,0.254525,0.377757,0.713076,0.527402,0.98652,0.573,0.878436,0.37792,0.0249957,0.532253,0.207524,0.664418,0.277352,0.3938,0.398489,0.19246,0.169353,0.800573,0.368734,0.68461,0.740275,0.458197,0.373062,0.869172,0.410955,0.243968,0.775573,0.0545712,0.92667,0.281023,0.323434,0.5322,0.691776,0.66814,0.485357,0.883901,0.295675,0.711995,0.446798,0.0374802,0.0165998,0.859103,0.226782,0.278007,0.347875,0.773747,0.481774,0.648992,0.762679,0.319009,0.0696895,0.970763,0.52268,0.880336,0.99504,0.195373,0.439057,0.653752,0.412891,0.189324,0.473192,0.65503,0.0877689,0.110882,0.678434,0.436456,0.74716,0.919873,0.725368,0.922435,0.701041,0.492224,0.276386,0.993505,0.545473,0.237252,0.639824,0.920447,0.897947,0.339518,0.764496,0.582148,0.310348,0.10326,0.446975,0.995882,0.459952,0.558734,0.842512,0.752613,0.0531345,0.299819,0.294822,0.0459241,0.86593,0.768485,0.0334778,0.0386233,0.629731,0.82655,0.981712,0.105039,0.410743,0.529723,0.693914,0.362048,0.322901,0.74731,0.356387,0.970773,0.33515,0.0783592,0.681161,0.68756,0.929842,0.129447,0.927744,0.899833,0.798767,0.514672,0.875823,0.810261,0.0557646,0.507339,0.759609,0.970738,0.968417,0.0240741,0.85695,0.541212,0.846135,0.302473,0.456843,0.306072,0.92245,0.633763,0.651711,0.797193,0.622928,0.156384,0.873903,0.562966,0.842782,0.698287,0.495977,0.0684618,0.713478,0.117996,0.60296,0.66404,0.900919,0.541158,0.948666,0.554475,0.699486,0.863212,0.294317,0.639323,0.523976,0.940796,0.780728,0.969363,0.62581,0.671743,0.563076,0.350878,0.379782,0.604087,0.194048,0.307604,0.830531,0.379945,0.430602,0.811727,0.0880845,0.610736,0.0669108,0.5025,0.067603,0.744342,0.22466,0.896934,0.311687,0.633053,0.927512,0.246472,0.707253,0.402242,0.133567,0.148349,0.0384092,0.316029,0.682813,0.856043,0.944365,0.0903019,0.635907,0.750402,0.102964,0.343894,0.0527334,0.865049,0.0157264,0.312291,0.849476,0.9392,0.0863911,0.0564077,0.63318,0.274735,0.269238,0.40274,0.0059014,0.154083,0.724278,0.993815,0.476491,0.839848,0.0846156,0.961217,0.109566,0.198899,0.96987,0.873603,0.502268,0.194699,0.814389,0.778667,0.0132778,0.105927,0.843492,0.864507,0.289291,0.599644,0.71461,0.778334,0.611115,0.0181992,0.962116,0.446035,0.144141,0.824898,0.224282,0.032132,0.46121,0.601684,0.140719,0.526533,0.955273,0.272722,0.849757,0.524443,0.79739,0.0500904,0.422532,0.667289,0.417253,0.0488278,0.621249,0.761116,0.606016,0.963604,0.920478,0.0240179,0.438935,0.805947,0.734677,0.820822,0.735017,0.909606,0.0273265,0.373431,0.673806,0.299366,0.818856,0.174708,0.0132925,0.453811,0.354805,0.396747,0.22393,0.957995,0.147165,0.324705,0.525846,0.878025,0.641414,0.300078,0.877924,0.788483,0.51119,0.0882523,0.479237,0.217413,0.338047,0.636842,0.229306,0.0637299,0.371972,0.699322,0.0314198,0.859404,0.106117,0.883358,0.0975802,0.692553,0.000532687,0.906421,0.0498191,0.352282,0.634088,0.0825661,0.638781,0.235168,0.324358,0.626069,0.606274,0.81338,0.109913,0.791183,0.392967,0.927567,0.184256,0.0979722,0.353172,0.0286704,0.752303,0.676552,0.28205,0.0462968,0.733332,0.4431,0.117204,0.346961,0.132329,0.696333,0.026048,0.66041,0.915179,0.0732411,0.960673,0.783861,0.0501001,0.835339,0.758843,0.300507,0.142192,0.359708,0.43026,0.698054,0.571737,0.943653,0.670933,0.555898,0.717314,0.944956,0.933433,0.246796,0.187123,0.523305,0.679863,0.714087,0.112718,0.376292,0.177544,0.0779732,0.417365,0.117942,0.128401,0.0144411,0.926567,0.492918,0.761256,0.369162,0.808217,0.065905,0.312764,0.637767,0.886116,0.911209,0.803267,0.770825,0.809145,0.218851,0.611784,0.0503843,0.615503,0.0315174,0.161184,0.128183,0.025673,0.689404,0.599104,0.525586,0.933971,0.687671,0.826089,0.905414,0.281874,0.454275,0.842057,0.603927,0.212972,0.838334,0.351893,0.640964,0.664353,0.910523,0.988836,0.409153,0.642673,0.0189581,0.0172237,0.615549,0.925782,0.774916,0.621832,0.638722,0.61387,0.0143377,0.575497,0.170559,0.543589,0.317911,0.346854,0.122786,0.900577,0.188335,0.128173,0.20418,0.276084,0.00341928,0.785704,0.0252377,0.494937,0.0853468,0.826434,0.927317,0.293853,0.419142,0.712224,0.697607,0.143421,0.972693,0.687285,0.95666,0.806506,0.931303,0.132839,0.772123,0.0189659,0.981593,0.901427,0.877923,0.406695,0.672691,0.730837,0.295279,0.275099,0.744312,0.695455,0.570746,0.310604,0.559811,0.672713,0.195389,0.4078,0.365207,0.793874,0.191052,0.094061,0.644793,0.824601,0.108076,0.11011,0.327418,0.318121,0.620825,0.721659,0.886751,0.471962,0.120221,0.359486,0.950455,0.384799,0.0497517,0.888023,0.0679255,0.211202,0.520999,0.644396,0.0680097,0.391565,0.165049,0.0121659,0.297124,0.364588,0.132224,0.248375,0.12382,0.509706,0.0365883,0.923819,0.743882,0.689475,0.94639,0.0728754,0.93742,0.185372,0.534444,0.421321,0.24091,0.147375,0.718846,0.469424,0.447114,0.263814,0.546498,0.839895,0.0562423,0.257158,0.354383,0.416664,0.598004,0.547411,0.779067,0.300076,0.044771,0.0799888,0.385234,0.0980261,0.447793,0.328861,0.996477,0.985344,0.784048,0.310191,0.351905,0.445564,0.713081,0.353662,0.43804,0.908196,0.531005,0.349911,0.26686,0.620327,0.366045,0.571065,0.217918,0.0612242,0.723059,0.935031,0.97935,0.622147,0.195273,0.113305,0.705331,0.533359,0.161361,0.154976,0.883145,0.683008,0.646628,0.836845,0.496619,0.0240578,0.401443,0.380942,0.589963,0.557796,0.135543,0.314375,0.154317,0.909422,0.256623,0.572463,0.578734,0.726591,0.755018,0.865717,0.851424,0.332622,0.33418,0.99602,0.584443,0.687147,0.209549,0.347526,0.265817,0.343063,0.499309,0.656859,0.808499,0.0449996,0.860564,0.107341,0.121906,0.864917,0.950709,0.386841,0.716235,0.832581,0.924858,0.943949,0.637475,0.501691,0.118746,0.361053,0.0671047,0.29894,0.640351,0.227802,0.629041,0.826914,0.514696,0.276098,0.93621,0.697131,0.6905,0.368639,0.747236,0.280336,0.725152,0.651443,0.031984,0.784709,0.228442,0.934626,0.0456217,0.415062,0.54687,0.809958,0.746144,0.0796853,0.884777,0.719757,0.6447,0.530397,0.26313,0.177841,0.84365,0.0625094,0.3336,0.103932,0.5658,0.900548,0.964805,0.0126255,0.300436,0.22772,0.440098,0.96113,0.407001,0.881648,0.65365,0.342448,0.117831,0.0214794,0.572019,0.798244,0.95647,0.718852,0.587863,0.848204,0.622531,0.760201,0.86738,0.0926051,0.523592,0.0835438,0.491024,0.101672,0.419332,0.174266,0.416961,0.438291,0.145372,0.132637,0.408587,0.0227194,0.544129,0.292786,0.884073,0.749369,0.784976,0.579022,0.610844,0.737604,0.730471,0.262873,0.400512,0.579503,0.924391,0.49051,0.93713,0.615526,0.504794,0.901159,0.555973,0.911319,0.959854,0.436261,0.132576,0.207808,0.850696,0.0363955,0.829826,0.804997,0.364778,0.346389,0.203818,0.0114821,0.148985,0.0297548,0.910062,0.24312,0.116485,0.887931,0.07103,0.989213,0.381234,0.0913804,0.52482,0.461172,0.0308012,0.957114,0.483344,0.629239,0.896507,0.726613,0.992757,0.474985,0.229674,0.278748,0.527074,0.732186,0.34437,0.386181,0.370384,0.642802,0.155552,0.936443,0.410664,0.480824,0.439798,0.989731,0.0775205,0.361107,0.364695,0.742332,0.0924357,0.555759,0.183504,0.714374,0.439021,0.794699,0.658004,0.193674,0.722527,0.446318,0.754261,0.247483,0.916989,0.0011012,0.693605,0.109976,0.219618,0.199963,0.0171395,0.262261,0.28442,0.749013,0.79673,0.781259,0.808739,0.0698782,0.00115067,0.565081,0.558593,0.80033,0.228557,0.387761,0.358289,0.807244,0.433159,0.984754,0.863181,0.677528,0.969871,0.984091,0.655833,0.72251,0.424451,0.920561,0.889022,0.175852,0.523759,0.546657,0.406785,0.27097,0.592176,0.263193,0.805832,0.258987,0.699295,0.934791,0.663216,0.148551,0.0208259,0.612805,0.411775,0.654354,0.371748,0.601393,0.268,0.731438,0.439364,0.0376233,0.126129,0.119731,0.896523,0.330489,0.85859,0.440634,0.976437,0.496281,0.769754,0.687588,0.699236,0.22308,0.892671,0.497119,0.360064,0.56205,0.830732,0.384303,0.000701547,0.796817,0.340917,0.220682,0.572987,0.256002,0.864158,0.730574,0.214652,0.130913,0.916355,0.61925,0.975897,0.905221,0.173005,0.745666,0.469655,0.379714,0.514724,0.576538,0.751284,0.996859,0.192801,0.0406703,0.430351,0.189536,0.279757,0.195243,0.011739,0.805597,0.880482,0.914315,0.397568,0.648518,0.715652,0.891625,0.777071,0.383348,0.217303,0.245645,0.224489,0.672596,0.223729,0.852913,0.899865,0.833084,0.170208,0.986291,0.294058,0.137508,0.495054,0.143949,0.201263,0.518067,0.204108,0.512456,0.68263,0.0725818,0.742943,0.137116,0.485681,0.760008,0.297047,0.676444,0.360128,0.726848,0.460065,0.171019,0.222296,0.480008,0.802679,0.94629,0.199531,0.33562,0.00921428,0.601877,0.306906,0.130577,0.654901,0.344137,0.299567,0.825455,0.225821,0.599778,0.0590704,0.667697,0.389539,0.661141,0.854578,0.631725,0.185217,0.778298,0.779834,0.397444,0.729945,0.159303,0.221159,0.293768,0.598268,0.507188,0.656682,0.178316,0.0835407,0.426845,0.877857,0.709622,0.64737,0.735443,0.406648,0.354504,0.869876,0.298459,0.722802,0.440623,0.414298,0.800914,0.636871,|0.714889,0.539974,0.163555,0.833382,0.742875,0.978394,0.816667,0.311083,0.346875,0.266704,0.254552,0.449946,0.142832,0.425501,0.521707,0.263935,0.600757,0.818037,0.647968,0.304572,0.514225,0.956836,0.130675,0.0679489,0.288693,0.910719,0.371761,0.519114,0.0977785,0.726529,0.642972,0.890014,0.290907,0.508386,0.916271,0.938287,0.69448,0.527255,0.167345,0.350834,0.987429,0.194893,0.703262,0.870692,0.436102,0.782511,0.700764,0.0700036,0.552355,0.158926,0.158219,0.701483,0.658809,0.910958,0.610687,0.813607,0.32139,0.127381,0.738936,0.781192,0.908313,0.451034,0.638559,0.17527,0.0898542,0.694928,0.286861,0.365019,0.108436,0.0865604,0.623091,0.124907,0.314027,0.858094,0.141057,0.344705,0.946743,0.00601542,0.000721753,0.59309,0.647954,0.506237,0.0119396,0.252925,0.311447,0.417395,0.828636,0.281547,0.669315,0.255215,0.536387,0.132593,0.457927,0.0854118,0.53394,0.494978,0.768227,0.47882,0.726196,0.805064,0.0332818,0.797549,0.576975,0.4281,0.394909,0.395306,0.898642,0.297429,0.802662,0.404635,0.481453,0.00793809,0.589367,0.685744,0.395994,0.856359,0.00926536,0.530788,0.177283,0.132059,0.231958,0.685688,0.0397006,0.210978,0.257751,0.448831,0.567588,0.166435,0.543462,0.907166,0.265036,0.634709,0.13338,0.973971,0.798193,0.147872,0.691882,0.473653,0.0178012,0.251063,0.655677,0.716248,0.938253,0.508191,0.565509,0.688318,0.627393,0.0638067,0.962302,0.587097,0.275113,0.345546,0.0526611,0.728861,0.338643,0.644264,0.00976455,0.892223,0.461887,0.939919,0.715091,0.5626,0.797666,0.812134,0.152764,0.394042,0.824766,0.98326,0.780614,0.776654,0.683367,0.137354,0.988974,0.157774,0.777113,0.143174,0.542455,0.635825,0.744785,0.591336,0.0768373,0.0135058,0.357732,0.760624,0.955955,0.155135,0.723374,0.250711,0.645222,0.213577,0.858264,0.799608,0.889511,0.516479,0.162798,0.903927,0.364832,0.735099,0.625051,0.31686,0.13754,0.339732,0.892652,0.692033,0.807953,0.504684,0.763918,0.869525,0.090994,0.861434,0.0263814,0.422616,0.748286,0.491213,0.571146,0.564905,0.660898,0.658696,0.455395,0.886593,0.724557,0.929132,0.636426,0.190936,0.200202,0.264953,0.888215,0.32599,0.467509,0.302161,0.954934,0.267647,0.432153,0.920834,0.0325746,0.760858,0.759952,0.374166,0.849663,0.381847,0.728598,0.935801,0.485933,0.872603,0.930026,0.314639,0.00352675,0.274858,0.286523,0.615346,0.623471,0.679957,0.738989,0.999359,0.929316,0.557331,0.0503812,0.0761116,0.541918,0.925342,0.975441,0.221111,0.225986,0.657157,0.153157,0.280695,0.73464,0.944628,0.338458,0.377832,0.148975,0.368504,0.91533,0.90369,0.307724,0.48402,0.89511,0.921252,0.95025,0.2418,0.368522,0.948833,0.0697397,0.49401,0.0269825,0.96342,0.0464562,0.662114,0.0808635,0.0116578,0.428658,0.463343,0.787416,0.843458,0.254235,0.1126,0.209838,0.833762,0.534122,0.378614,0.228665,0.0125961,0.649821,0.405132,0.0531541,0.655814,0.926994,0.919754,0.2785,0.0471101,0.787171,0.597632,0.933546,0.889337,0.0982206,0.120824,0.813749,0.465052,0.867531,0.44748,0.242576,0.0527008,0.66955,0.918368,0.257975,0.609466,0.595342,0.908907,0.126765,0.601445,0.283085,0.175348,0.628083,0.396388,0.84506,0.62254,0.120229,0.171268,0.913786,0.335064,0.315413,0.955149,0.581745,0.590534,0.942353,0.804181,0.232618,0.413446,0.0989536,0.274259,0.319431,0.615465,0.408141,0.695255,0.30146,0.496558,0.650604,0.666266,0.169726,0.0551772,0.281867,0.920254,0.591226,0.39048,0.903189,0.757063,0.279158,0.0559181,0.382959,0.140669,0.222596,0.498921,0.35341,0.418043,0.741433,0.517971,0.633412,0.401234,0.40408,0.000421524,0.0543365,0.0727612,0.346854,0.701228,0.908256,0.286439,0.094657,0.650065,0.981091,0.970635,0.194316,0.665012,0.827123,0.813852,0.910649,0.580857,0.322604,0.758748,0.0606854,0.154459,0.407149,0.271159,0.857641,0.841644,0.0237374,0.383883,0.233377,0.622957,0.608803,0.627136,0.0438796,0.50564,0.572303,0.276151,0.849426,0.148798,0.538555,0.197064,0.204082,0.473679,0.937227,0.95028,0.208521,0.168952,0.616509,0.463438,0.403773,0.215269,0.299225,0.459775,0.618396,0.513638,0.976887,0.953948,0.17296,0.359818,0.164652,0.670479,0.386751,0.467637,0.0355943,0.822475,0.394735,0.103593,0.321719,0.127433,0.389415,0.218123,0.347438,0.939932,0.124738,0.552409,0.796461,0.614394,0.172131,0.589778,0.987283,0.840374,0.162317,0.897418,0.711608,0.403396,0.478468,0.547511,0.0133488,0.857746,0.129348,0.775166,0.334674,0.776331,0.132945,0.937172,0.939108,0.877127,0.533766,0.84471,0.808684,0.34494,0.779563,0.133634,0.886712,0.322598,0.58276,0.185518,0.970884,0.185334,0.453312,0.906814,0.144289,0.739264,0.0579123,0.0439814,0.321308,0.102718,0.942546,0.425245,0.369933,0.770886,0.00260878,0.18553,0.307816,0.832766,0.127338,0.827702,0.996469,0.717538,0.927912,0.812506,0.953682,0.220483,0.629224,0.970982,0.883371,0.277137,0.198696,0.953059,0.221251,0.222106,0.227567,0.31106,0.644655,0.454357,0.784828,0.797895,0.802521,0.582297,0.924049,0.116381,0.0297641,0.620942,0.745245,0.0476182,0.78647,0.668485,0.716491,0.824066,0.0303322,0.677972,0.60858,0.866228,0.0653488,0.105228,0.539558,0.030279,0.777311,0.766484,0.373442,0.936352,0.655624,0.817329,0.173199,0.626379,0.55418,0.692323,0.302845,0.96542,0.384831,0.925229,0.0304735,0.113485,0.663519,0.989014,0.715536,0.397374,0.894789,0.816936,0.262298,0.396299,0.935652,0.824755,0.770687,0.767927,0.744483,0.789091,0.337961,0.877857,0.599671,0.144793,0.823398,0.459802,0.113919,0.278183,0.466633,0.320043,0.265324,0.928251,0.780449,0.500222,0.619264,0.670278,0.205617,0.356277,0.875604,0.274421,0.790574,0.776327,0.136686,0.841734,0.180849,0.749638,0.970261,0.848049,0.853995,0.144432,0.0529319,0.454213,0.776096,0.689266,0.0139517,0.681565,0.208686,0.164371,0.839003,0.00843221,0.135796,0.557852,0.293649,0.259821,0.135097,0.0445022,0.896824,0.38655,0.973572,0.246695,0.20776,0.384089,0.154738,0.542613,0.128805,0.54429,0.218275,0.0790026,0.280702,0.400237,0.399495,0.13756,0.913337,0.439016,0.886146,0.294437,0.732636,0.498561,0.394109,0.950909,0.157959,0.455248,0.19313,0.732579,0.0128175,0.597554,0.717089,0.0931278,0.923143,0.374366,0.53669,0.175583,0.977178,0.395793,0.778939,0.248512,0.00620264,0.726877,0.352547,0.674919,0.2451,0.952311,0.0319412,0.940444,0.653081,0.2238,0.17452,0.843436,0.391772,0.76849,0.31256,0.404001,0.637366,0.189233,0.618461,0.0486336,0.422213,0.124991,0.329331,0.0719019,0.478451,0.657672,0.571449,0.166615,0.857226,0.383516,0.35332,0.702767,0.602761,0.308325,0.166505,0.741553,0.596121,0.0246098,0.256038,0.170735,0.568971,0.632283,0.301629,0.413517,0.347507,0.187712,0.241778,0.688014,0.101147,0.4947,0.900991,0.119435,0.135906,0.631396,0.858649,0.753678,0.561823,0.194518,0.103421,0.885651,0.923359,0.423423,0.0562295,0.534644,0.0482224,0.325505,0.979413,0.566073,0.409466,0.596003,0.958092,0.352429,0.92474,0.860341,0.55922,0.424004,0.491342,0.64864,0.742512,0.0145239,0.34847,0.788647,0.602329,0.0541599,0.181286,0.456789,0.227533,0.0231224,0.564795,0.239635,0.234044,0.18801,0.865119,0.712439,0.151566,0.739979,0.131354,0.47129,0.231348,0.510918,0.257541,0.4996,0.689389,0.491198,0.738506,0.778097,0.347206,0.884671,0.535832,0.944629,0.463552,0.657985,0.862891,0.270608,0.0457197,0.00329286,0.352146,0.94966,0.147299,0.936073,0.512131,0.331959,0.617036,0.213075,0.419719,0.242474,0.701959,0.681803,0.0379681,0.199553,0.547792,0.158017,0.891868,0.136374,0.129464,0.765558,0.216565,0.480298,0.646718,0.905353,0.19903,0.457286,0.350422,0.663415,0.336665,0.115203,0.326371,0.461387,0.37679,0.386602,0.197625,0.00819188,0.373733,0.821962,0.515646,0.641534,0.999797,0.221148,0.757505,0.590003,0.914685,0.966469,0.402282,0.386282,0.653373,0.921565,0.739331,0.0812265,0.240246,0.886811,0.178344,0.916524,0.203193,0.736709,0.581937,0.463868,0.960645,0.929115,0.327257,0.663701,0.961818,0.174857,0.697486,0.770445,0.236121,0.291603,0.55317,0.181834,0.914892,0.353626,0.463758,0.165007,0.958568,0.211977,0.630489,0.510487,0.350729,0.0914786,0.828268,0.316603,0.0248886,0.758193,0.719763,0.35623,0.132361,0.335335,0.583306,0.443645,0.138775,0.856735,0.870866,0.539378,0.67142,0.463669,0.59321,0.426468,0.435048,0.797734,0.226634,0.210376,0.775384,0.976085,0.953385,0.860206,0.501991,0.352569,0.151589,0.867361,0.868408,0.926344,0.245127,0.137985,0.2849,0.462401,0.701453,0.121212,0.920537,0.315927,0.644465,0.819138,0.433992,0.863509,0.0730336,0.0103968,0.487107,0.814714,0.346613,0.575973,0.945556,0.489556,0.315552,0.832992,0.919094,0.742482,0.16921,0.808571,0.623065,0.807483,0.153546,0.95884,0.436789,0.466053,0.772092,0.970427,0.417134,0.807851,0.797166,0.465562,0.873203,0.558927,0.31668,0.795953,0.445235,0.176005,0.764816,0.00553447,0.142052,0.202657,0.17479,0.997314,0.253729,0.828346,0.482527,0.321308,0.929834,0.582941,0.802825,0.759511,0.364362,0.224916,0.739834,0.226877,0.792964,0.999544,0.393431,0.869622,0.453902,0.464112,0.261894,0.3434,0.561343,0.882345,0.573828,0.79904,0.52613,0.937351,0.462813,0.820418,0.904274,0.776794,0.925462,0.198582,0.652003,0.184683,0.912391,0.573053,0.837349,0.06595,0.578439,0.369828,0.293605,0.67542,0.520109,0.798163,0.219432,0.567036,0.335227,0.338719,0.580377,0.783826,0.836143,0.398854,0.58982,0.2214,0.708481,0.959333,0.0557658,0.348889,0.373896,0.522071,|0.567794,0.223535,0.834345,0.303907,0.432085,0.517561,0.380006,0.562812,0.623556,0.921658,0.678953,0.970155,0.617546,0.955121,0.834321,0.18853,0.191977,0.777804,0.919751,0.133626,0.410917,0.452618,0.141908,0.598955,0.514573,0.592511,0.830727,0.720051,0.571191,0.729161,0.536543,0.802029,0.0102105,0.193587,0.336508,0.620501,0.218343,0.231484,0.503041,0.266537,0.28352,0.447285,0.697884,0.353689,0.647051,0.959769,0.588091,0.653772,0.881742,0.375626,0.870901,0.428839,0.521848,0.704655,0.0702922,0.737507,0.945373,0.945164,0.321795,0.83999,0.184079,0.399972,0.34292,0.612402,0.275703,0.707408,0.767378,0.541523,0.333384,0.670548,0.360291,0.540338,0.50982,0.822223,0.619671,0.0854903,0.317347,0.111853,0.876996,0.456596,0.787279,0.752525,0.353548,0.24747,0.357285,0.848,0.0767031,0.968934,0.0343118,0.238674,0.845056,0.267819,0.297257,0.0655618,0.82069,0.911739,0.446749,0.197777,0.083068,0.0245441,0.630872,0.517167,0.793617,0.0635768,0.446964,0.516209,0.917628,0.8117,0.387915,0.800706,0.841661,0.723662,0.0483536,0.357389,0.12254,0.0819864,0.339742,0.464025,0.952731,0.10556,0.303137,0.410644,0.575797,0.262535,0.00278294,0.104376,0.920601,0.268782,0.911997,0.252785,0.683533,0.253821,0.374489,0.61123,0.563805,0.771292,0.201193,0.908654,0.494012,0.367485,0.762659,0.177731,0.283282,0.151899,0.78523,0.521923,0.0550544,0.398532,0.809873,0.103898,0.206873,0.665021,0.445156,0.51027,0.680674,0.047363,0.722031,0.19098,0.629118,0.586215,0.737198,0.204051,0.321512,0.764267,0.717392,0.295713,0.624916,0.0350743,0.332773,0.149415,0.201876,0.833935,0.761604,0.16143,0.182708,0.307192,0.882192,0.0356429,0.555234,0.812101,0.34973,0.200617,0.72308,0.205162,0.615233,0.380441,0.506025,0.151125,0.00920039,0.69396,0.542005,0.675244,0.0593415,0.729094,0.375229,0.682103,0.585298,0.290439,0.592938,0.0105443,0.825105,0.755853,0.396477,0.508936,0.650912,0.796867,0.0185825,0.693906,0.581563,0.60093,0.0610879,0.141205,0.555934,0.39599,0.876099,0.0323292,0.420263,0.622396,0.657375,0.304038,0.38033,0.502403,0.371462,0.0540145,0.57736,0.765651,0.866774,0.413288,0.083891,0.436273,0.314467,0.0411009,0.280244,0.263778,0.425039,0.562693,0.392928,0.240407,0.680081,0.432484,0.110656,0.0582318,0.193651,0.738595,0.732137,0.0878627,0.128014,0.934094,0.199089,0.5703,0.931625,0.63389,0.75443,0.162094,0.952167,0.064648,0.26464,0.921033,0.801647,0.446578,0.0707361,0.111858,0.848787,0.513949,0.765391,0.826329,0.940364,0.757188,0.393853,0.33882,0.941595,0.793962,0.732302,0.702341,0.439658,0.670226,0.482756,0.766363,0.836536,0.726306,0.458541,0.762418,0.721201,0.201777,0.740955,0.783636,0.865117,0.314425,0.12642,0.248277,0.549787,0.770872,0.434557,0.199502,0.661404,0.452037,0.00586015,0.20154,0.284003,0.396101,0.049161,0.71295,0.76482,0.446353,0.0402082,0.0832302,0.717092,0.147791,0.929485,0.659673,0.772922,0.62783,0.743514,0.536897,0.990243,0.381834,0.0151038,0.595516,0.486488,0.601722,0.922204,0.593766,0.231556,0.936108,0.307598,0.902893,0.21936,0.914505,0.93142,0.746939,0.0291658,0.116577,0.82037,0.273025,0.766344,0.799583,0.144996,0.834774,0.744859,0.32499,0.00219774,0.154087,0.604865,0.474036,0.000169396,0.558221,0.403026,0.819831,0.991726,0.329313,0.683726,0.0125511,0.743856,0.459147,0.653976,0.651359,0.50411,0.901569,0.797732,0.720166,0.0817918,0.461781,0.63684,0.324649,0.165389,0.0387399,0.0391115,0.749243,0.50662,0.697968,0.631507,0.248933,0.201774,0.672794,0.788565,0.500535,0.0175814,0.992997,0.309899,0.851737,0.10416,0.15698,0.968231,0.481745,0.773243,0.522202,0.00543779,0.0396013,0.491327,0.820426,0.750304,0.411091,0.0265204,0.233621,0.399609,0.963902,0.82504,0.684816,0.553798,0.795519,0.0663289,0.768991,0.544629,0.696746,0.788143,0.902173,0.516753,0.804681,0.437211,0.159405,0.792986,0.984987,0.840255,0.406032,0.41691,0.0313083,0.848964,0.860236,0.657586,0.0575131,0.650279,0.327801,0.819213,0.0996613,0.983764,0.629764,0.675391,0.719329,0.148738,0.650243,0.273064,0.549349,0.443404,0.846406,0.809763,0.680222,0.139292,0.666033,0.551371,0.944318,0.122894,0.598304,0.50294,0.00194651,0.779928,0.453468,0.207544,0.810787,0.772423,0.642693,0.907111,0.931252,0.82435,0.713027,0.164126,0.38194,0.594991,0.184022,0.770842,0.00617844,0.835054,0.605283,0.179789,0.863773,0.911028,0.771384,0.823542,0.890573,0.713326,0.34029,0.416974,0.0783607,0.816725,0.826796,0.195528,0.355885,0.304875,0.831097,0.135257,0.12309,0.37252,0.897639,0.938894,0.980556,0.432152,0.581677,0.526351,0.933534,0.6798,0.853568,0.849044,0.196253,0.5631,0.905426,0.766475,0.683897,0.180152,0.392181,0.490843,0.850362,0.0981007,0.173515,0.827801,0.312917,0.104021,0.786216,0.623579,0.356408,0.404112,0.00624651,0.632119,0.453946,0.861606,0.791921,0.427942,0.222064,0.612019,0.398497,0.0466298,0.718051,0.925725,0.237794,0.547827,0.365119,0.0284976,0.981197,0.0230186,0.753208,0.105331,0.134615,0.5353,0.33509,0.169974,0.495161,0.287278,0.183423,0.127896,0.405347,0.871605,0.394934,0.984459,0.74636,0.714845,0.159441,0.997198,0.209678,0.435555,0.666751,0.142666,0.630404,0.944748,0.485286,0.600635,0.318237,0.311253,0.149452,0.713245,0.962404,0.0395221,0.446614,0.0541116,0.849118,0.453426,0.671153,0.68115,0.641193,0.755179,0.544614,0.0911518,0.877392,0.417773,0.756752,0.293666,0.966694,0.320192,0.295292,0.260887,0.490582,0.433007,0.0610337,0.398741,0.974398,0.800702,0.478439,0.339143,0.806352,0.230886,0.699963,0.244708,0.778004,0.764379,0.866091,0.875853,0.851145,0.943895,0.00623411,0.724119,0.932984,0.678929,0.863895,0.235557,0.277954,0.508231,0.579028,0.71137,0.933122,0.962587,0.0979426,0.503464,0.123873,0.693264,0.132037,0.817878,0.35356,0.39639,0.52092,0.0891707,0.802952,0.912076,0.846513,0.651904,0.836939,0.739141,0.87961,0.632269,0.901017,0.420404,0.165957,0.20148,0.539002,0.595934,0.00868171,0.0513735,0.017204,0.673,0.0216717,0.291112,0.145764,0.994899,0.10293,0.131415,0.336346,0.0123339,0.352142,0.153439,0.402657,0.868914,0.835064,0.415526,0.156237,0.0014227,0.842678,0.0129757,0.897903,0.902946,0.604834,0.733402,0.412439,0.903106,0.270805,0.256864,0.243336,0.511954,0.878469,0.0360759,0.528143,0.918575,0.272006,0.31263,0.186411,0.105751,0.663289,0.794082,0.40471,0.434476,0.768403,0.277189,0.694163,0.058194,0.0612128,0.994246,0.982627,0.443963,0.711013,0.256082,0.525903,0.044741,0.0585037,0.949235,0.694961,0.978752,0.205752,0.910449,0.458207,0.805196,0.18897,0.634824,0.972789,0.74397,0.723431,0.186814,0.0721306,0.736549,0.649081,0.0190423,0.448018,0.910074,0.804033,0.284803,0.255687,0.66644,0.229733,0.653154,0.426221,0.496751,0.734253,0.336503,0.696579,0.501072,0.337809,0.749589,0.734182,0.284633,0.381552,0.971248,0.291923,0.0988026,0.737464,0.127574,0.850515,0.175322,0.864347,0.309997,0.93522,0.0218542,0.970197,0.568416,0.421035,0.203629,0.554683,0.314779,0.691466,0.464189,0.181373,0.260263,0.820354,0.373576,0.0186295,0.74634,0.188427,0.535913,0.713804,0.948328,0.548463,0.384516,0.817948,0.067943,0.848376,0.330448,0.670578,0.995602,0.0940837,0.672916,0.377778,0.611833,0.753787,0.138634,0.457468,0.493627,0.147531,0.71096,0.814728,0.72249,0.680282,0.982944,0.599348,0.151328,0.793235,0.42079,0.106011,0.593498,0.139985,0.365291,0.484831,0.621748,0.604642,0.97812,0.511446,0.923909,0.780727,0.998409,0.112188,0.79411,0.432141,0.99879,0.750307,0.737033,0.278569,0.470642,0.973247,0.228625,0.642786,0.726619,0.376408,0.479367,0.736661,0.917,0.905347,0.91234,0.891054,0.391172,0.301245,0.968353,0.594361,0.663183,0.0501051,0.379395,0.283046,0.780739,0.342728,0.602602,0.679637,0.208264,0.364107,0.675723,0.786238,0.476826,0.13849,0.650537,0.953396,0.110247,0.267348,0.682426,0.611585,0.733934,0.863306,0.993683,0.570581,0.0142896,0.926094,0.891493,0.841237,0.531446,0.789373,0.104518,0.0985721,0.153849,0.465411,0.581044,0.842341,0.141419,0.0840027,0.654328,0.0216596,0.593884,0.481034,0.646839,0.270499,0.495041,0.147122,0.46958,0.0320343,0.105936,0.212793,0.206282,0.554418,0.669156,0.379938,0.471391,0.337935,0.212247,0.53471,0.216814,0.531303,0.145932,0.290596,0.304757,0.792054,0.789327,0.594945,0.073648,0.487522,0.991217,0.382307,0.89511,0.43354,0.25962,0.295633,0.569745,0.707507,0.270898,0.494016,0.887762,0.504412,0.808169,0.754443,0.938777,0.170465,0.685224,0.141675,0.423337,0.908837,0.50066,0.878398,0.737364,0.236285,0.476111,0.798457,0.472199,0.0510811,0.35665,0.528185,0.734767,0.250745,0.261457,0.286622,0.161424,0.0966291,0.108783,0.90977,0.33876,0.941278,0.0868006,0.354979,0.349254,0.244155,0.861462,0.938211,0.813134,0.207078,0.52433,0.308068,0.934181,0.339004,0.0140898,0.552515,0.796252,0.195136,0.889534,0.128377,0.0560455,0.174694,0.698588,0.425432,0.29723,0.0640056,0.481291,0.576679,0.0253095,0.474812,0.149149,0.427173,0.327542,0.722351,0.680783,0.0295675,0.807651,0.38174,0.595011,0.100999,0.834484,0.304292,0.589663,0.141751,0.623002,0.816364,0.310212,0.731009,0.896792,0.681293,0.570934,0.431261,0.31413,0.00402606,0.14087,0.723787,0.384337,0.808098,0.103925,0.461775,0.705905,0.257948,0.0790699,0.370078,0.816319,0.862005,0.981157,0.540194,0.882338,0.545767,0.680561,0.430823,0.814698,0.408669,0.465304,0.940625,0.470157,0.675683,0.371254,0.789695,|0.805171,0.0421612,0.64517,0.312764,0.228544,0.428544,0.832831,0.851547,0.431346,0.0705839,0.508771,0.171543,0.205002,0.155172,0.297123,0.635792,0.84659,0.0432929,0.0847401,0.291652,0.92639,0.707032,0.788493,0.421492,0.431402,0.0872624,0.11851,0.73022,0.929323,0.43873,0.755865,0.592277,0.354857,0.627368,0.468695,0.970063,0.123388,0.176938,0.33525,0.0284215,0.660855,0.96113,0.168816,0.486735,0.882734,0.415242,0.335444,0.102956,0.427473,0.370814,0.634827,0.100895,0.748258,0.0521336,0.352412,0.758669,0.126499,0.987808,0.535622,0.785838,0.108144,0.372903,0.85152,0.976573,0.531641,0.709121,0.473383,0.850619,0.314922,0.405979,0.0690022,0.975294,0.526314,0.0762658,0.167748,0.496884,0.862012,0.831734,0.0879125,0.344062,0.852556,0.791137,0.139807,0.692985,0.146514,0.467809,0.349589,0.798495,0.673759,0.035454,0.473976,0.136221,0.80299,0.916236,0.599379,0.92919,0.122717,0.828448,0.990872,0.0680266,0.548553,0.932775,0.148624,0.458823,0.0398255,0.886157,0.256072,0.842958,0.728673,0.0130098,0.255607,0.455301,0.130179,0.351623,0.86498,0.935901,0.511195,0.926509,0.519487,0.131502,0.0526864,0.807113,0.0274075,0.80609,0.698709,0.380152,0.805539,0.0707524,0.123114,0.763789,0.206707,0.865726,0.501094,0.798916,0.114236,0.402909,0.914139,0.219978,0.80891,0.391682,0.180475,0.451915,0.575896,0.890707,0.665988,0.861658,0.0525244,0.582127,0.325835,0.106055,0.0268636,0.304565,0.536893,0.972498,0.430552,0.316045,0.616841,0.287882,0.239855,0.348441,0.985867,0.154081,0.279524,0.0964987,0.614555,0.734446,0.386207,0.496182,0.292998,0.18524,0.275201,0.414393,0.251058,0.713283,0.25554,0.123245,0.731965,0.843226,0.100807,0.86232,0.717084,0.903443,0.467939,0.162398,0.28663,0.514207,0.780819,0.15087,0.591635,0.587803,0.516111,0.206133,0.0981236,0.573415,0.0751771,0.055797,0.449408,0.477811,0.742514,0.47585,0.423406,0.299936,0.568207,0.73077,0.207337,0.353422,0.951546,0.832717,0.321677,0.75743,0.59093,0.690786,0.388844,0.666603,0.964438,0.442848,0.713983,0.0349533,0.633048,0.798525,0.489271,0.828757,0.946275,0.0108979,0.354959,0.388271,0.0357514,0.406587,0.4816,0.343765,0.486656,0.968585,0.49175,0.093928,0.916316,0.482225,0.58534,0.806062,0.867666,0.676749,0.439984,0.629245,0.87838,0.0292644,0.287826,0.567503,0.283543,0.716829,0.431362,0.998345,0.887573,0.572648,0.0600635,0.903984,0.265586,0.253927,0.975361,0.0736308,0.568511,0.0981722,0.110205,0.628393,0.943587,0.484104,0.170649,0.734517,0.742553,0.514222,0.890697,0.127374,0.579795,0.152449,0.389222,0.700686,0.775018,0.443254,0.768166,0.622813,0.84297,0.332907,0.58799,0.300824,0.833756,0.99136,0.0699662,0.827139,0.0516471,0.294055,0.695339,0.689972,0.292106,0.280696,0.289137,0.2109,0.277584,0.996112,0.907063,0.759954,0.0809973,0.246846,0.591138,0.581254,0.259736,0.841129,0.591157,0.407477,0.546236,0.269285,0.752748,0.914626,0.528226,0.596791,0.18834,0.0194161,0.345274,0.756298,0.221326,0.0690317,0.213697,0.565752,0.449837,0.0206253,0.726529,0.632808,0.0175903,0.546519,0.392755,0.919521,0.895887,0.0909778,0.790556,0.463336,0.475421,0.41812,0.535349,0.885816,0.83635,0.978361,0.282935,0.8927,0.95727,0.507411,0.615792,0.129893,0.90067,0.914063,0.408467,0.184985,0.7052,0.19517,0.832749,0.945633,0.659164,0.394883,0.209064,0.531233,0.905066,0.21794,0.111499,0.945662,0.525367,0.496846,0.0478551,0.314326,0.450437,0.358072,0.95887,0.353867,0.4593,0.242357,0.748598,0.0892887,0.21911,0.112723,0.416489,0.503477,0.491471,0.622189,0.395443,0.215896,0.867222,0.954457,0.567242,0.996148,0.788265,0.637896,0.629731,0.293357,0.748285,0.979641,0.957595,0.934688,0.454727,0.854636,0.412618,0.891676,0.655496,0.390824,0.483342,0.868114,0.0131661,0.464789,0.295117,0.929944,0.392009,0.661031,0.344391,0.0107189,0.462351,0.851863,0.00830835,0.488068,0.517468,0.0186639,0.570145,0.486512,0.0715143,0.247518,0.623705,0.806598,0.453937,0.428198,0.556477,0.535191,0.698018,0.132239,0.879809,0.509025,0.370945,0.598269,0.342492,0.81364,0.422039,0.411178,0.820966,0.0934091,0.558979,0.988688,0.987444,0.296254,0.856315,0.0619149,0.49399,0.453699,0.441724,0.151051,0.170914,0.57049,0.375314,0.858247,0.71644,0.052922,0.233264,0.763309,0.911545,0.802203,0.334047,0.811837,0.900367,0.344372,0.370015,0.658037,0.509664,0.258216,0.608738,0.154836,0.195947,0.277712,0.413902,0.387261,0.687827,0.50606,0.286644,0.451204,0.610435,0.577053,0.466825,0.473124,0.698193,0.213128,0.86582,0.585326,0.0678335,0.430613,0.569389,0.00241923,0.0169971,0.38159,0.503828,0.0509784,0.532101,0.936815,0.16298,0.682472,0.451059,0.378171,0.349171,0.517719,0.61187,0.373684,0.0450453,0.624686,0.228296,0.0199422,0.554785,0.0535787,0.681434,0.706787,0.247897,0.589224,0.33441,0.912994,0.375227,0.984313,0.463631,0.0685453,0.838311,0.299584,0.657022,0.342673,0.585871,0.216154,0.141901,0.543749,0.757941,0.361388,0.169599,0.598487,0.109653,0.131537,0.190413,0.148775,0.849441,0.0304304,0.252462,0.112272,0.0350692,0.744385,0.74951,0.796188,0.406396,0.126522,0.593229,0.856715,0.831635,0.630551,0.667579,0.434346,0.88664,0.643659,0.836548,0.74917,0.529819,0.804482,0.662001,0.823641,0.686323,0.0890123,0.35449,0.159286,0.443945,0.0256482,0.597741,0.752351,0.0259405,0.282253,0.990369,0.414502,0.283689,0.656609,0.30597,0.093074,0.530758,0.782063,0.436685,0.965411,0.286961,0.325677,0.173832,0.600899,0.825354,0.628278,0.965689,0.277844,0.568094,0.151543,0.500431,0.53689,0.0134707,0.685348,0.549063,0.180372,0.623468,0.495144,0.579838,0.427165,0.185581,0.981852,0.834125,0.876673,0.470787,0.924572,0.0115057,0.287603,0.840905,0.195961,0.809239,0.166948,0.139628,0.564625,0.540098,0.446576,0.647617,0.778088,0.912479,0.36995,0.631848,0.814919,0.0641543,0.192462,0.611638,0.399027,0.0205107,0.862208,0.701521,0.712126,0.0440796,0.780242,0.978832,0.457393,0.010875,0.0997373,0.410406,0.202222,0.183689,0.377174,0.996012,0.10902,0.250683,0.983787,0.672838,0.432323,0.723324,0.471538,0.720328,0.724804,0.512831,0.928644,0.354617,0.506094,0.836868,0.0744219,0.139968,0.993267,0.294606,0.0951172,0.173361,0.754514,0.0899501,0.972623,0.480846,0.498013,0.712659,0.283522,0.160573,0.129767,0.235554,0.51066,0.287872,0.780144,0.390392,0.865749,0.773272,0.718798,0.000897706,0.578479,0.215099,0.317589,0.547215,0.261892,0.184311,0.627357,0.894837,0.304263,0.569189,0.474864,0.044498,0.187694,0.245774,0.603458,0.369122,0.548542,0.631451,0.631238,0.319017,0.337294,0.0526132,0.256361,0.143406,0.613113,0.236868,0.314836,0.205524,0.913409,0.254679,0.492791,0.459179,0.338471,0.573696,0.644855,0.587245,0.378297,0.641999,0.0615749,0.548962,0.865656,0.501708,0.750611,0.829678,0.693412,0.792318,0.599876,0.832482,0.175542,0.735284,0.996278,0.732009,0.75554,0.0962221,0.905376,0.932652,0.00402391,0.519132,0.570643,0.393916,0.508541,0.260339,0.160473,0.984241,0.179474,0.633917,0.701344,0.806825,0.389803,0.234718,0.471729,0.251663,0.67122,0.300912,0.125169,0.0243441,0.169728,0.807551,0.0757022,0.611957,0.744071,0.90002,0.190827,0.659549,0.784775,0.417535,0.141673,0.0113066,0.816429,0.471387,0.45848,0.268666,0.532603,0.891235,0.920451,0.176143,0.915266,0.0182742,0.618541,0.287799,0.372981,0.0328352,0.67556,0.894391,0.234463,0.110757,0.379971,0.439138,0.531445,0.415853,0.43605,0.720139,0.789019,0.548726,0.781624,0.147124,0.416937,0.615769,0.189182,0.653304,0.0564238,0.212325,0.993494,0.00605786,0.0338961,0.051515,0.687128,0.942948,0.813072,0.0628975,0.0509154,0.465422,0.716839,0.471132,0.0656413,0.373287,0.808328,0.526567,0.30602,0.252788,0.755207,0.112622,0.439555,0.733818,0.52566,0.0848112,0.745322,0.885011,0.0148293,0.287273,0.722463,0.806644,0.374311,0.326625,0.393665,0.379199,0.44623,0.0793268,0.176015,0.025973,0.934734,0.658566,0.954514,0.667048,0.800823,0.872404,0.960502,0.351434,0.315706,0.561008,0.184702,0.565928,0.922436,0.788946,0.826319,0.39074,0.52303,0.178783,0.895441,0.968089,0.921708,0.427888,0.117162,0.474647,0.669702,0.0818164,0.0539361,0.65746,0.915007,0.744349,0.844165,0.0907196,0.465806,0.493711,0.865426,0.81357,0.724406,0.781748,0.401832,0.829742,0.432244,0.535364,0.83347,0.694862,0.605069,0.396554,0.876229,0.819777,0.620063,0.372386,0.381791,0.121677,0.432053,0.40188,0.690028,0.27956,0.563219,0.860649,0.538986,0.973474,0.0199167,0.328026,0.0376486,0.117324,0.0035345,0.907169,0.880091,0.971483,0.204303,0.625738,0.475991,0.971141,0.290769,0.219252,0.307382,0.0819586,0.381875,0.403161,0.5188,0.438068,0.852198,0.371601,0.714174,0.0418264,0.611043,0.391901,0.999916,0.430119,0.650096,0.969087,0.675146,0.17184,0.427789,0.823126,0.888958,0.690561,0.424692,0.255499,0.0843686,0.142232,0.575495,0.0322765,0.727507,0.289909,0.555308,0.522308,0.654169,0.556133,0.962915,0.511745,0.3111,0.730138,0.912677,0.849845,0.142465,0.689307,0.879311,0.525256,0.102576,0.630986,0.374563,0.433928,0.99483,0.15881,0.204648,0.642963,0.818072,0.531158,0.853288,0.356754,0.46945,0.521372,0.901429,0.235578,0.52076,0.972332,0.123443,0.345408,0.848601,0.366191,0.0838501,0.599957,0.884955,0.940782,0.685987,0.99785,0.620189,0.820952,0.273423,0.501473,0.697924,0.799875,0.251055,0.730625,0.146492,0.615247,0.27065,0.952361,0.0326331,0.916122,0.524985,0.0646413,0.0114347,0.896364,0.23137,|0.963042,0.183743,0.69859,0.137402,0.166462,0.53462,0.407991,0.162624,0.663177,0.307575,0.456161,0.193867,0.285063,0.503664,0.838007,0.94151,0.00468034,0.164426,0.302775,0.479068,0.188882,0.9201,0.287306,0.634889,0.159823,0.470574,0.231175,0.56994,0.911657,0.356212,0.356413,0.818642,0.227612,0.90662,0.850001,0.411267,0.23663,0.0458458,0.192328,0.290203,0.237624,0.134924,0.254118,0.0713238,0.31629,0.303694,0.370533,0.868583,0.528578,0.137898,0.810488,0.415189,0.102697,0.25799,0.263697,0.255011,0.542333,0.196141,0.26691,0.335483,0.683447,0.442291,0.980045,0.649614,0.0718785,0.718137,0.805772,0.731554,0.666848,0.0578219,0.879461,0.373147,0.181962,0.841287,0.0665464,0.557425,0.535896,0.572329,0.854763,0.000540912,0.12408,0.145907,0.375669,0.0710666,0.00936282,0.20564,0.280845,0.603818,0.767773,0.512672,0.278931,0.709112,0.227275,0.0705905,0.202996,0.719269,0.766446,0.929738,0.21663,0.578581,0.688306,0.625254,0.304152,0.121802,0.870856,0.63929,0.166969,0.769494,0.616035,0.345867,0.14422,0.635446,0.501048,0.15175,0.276614,0.321121,0.483302,0.982805,0.202098,0.877983,0.737981,0.189434,0.97599,0.48353,0.982441,0.641664,0.409557,0.333527,0.876906,0.594835,0.763005,0.328998,0.933382,0.706003,0.280681,0.696161,0.670684,0.814571,0.543864,0.29495,0.85696,0.0942242,0.97904,0.88506,0.558033,0.502209,0.917832,0.440069,0.741566,0.795119,0.845862,0.570214,0.992581,0.979323,0.110937,0.43726,0.0921941,0.667992,0.515141,0.0793487,0.528587,0.472181,0.14105,0.275855,0.367235,0.969398,0.663836,0.0172622,0.8702,0.855922,0.569752,0.6533,0.309829,0.106679,0.777885,0.821258,0.980958,0.170061,0.599868,0.368654,0.144447,0.366957,0.85481,0.172698,0.829022,0.98129,0.689129,0.945527,0.942427,0.714498,0.0485203,0.12208,0.334472,0.404329,0.433219,0.0286929,0.207246,0.27214,0.452239,0.817539,0.0297207,0.105012,0.00838965,0.872948,0.469789,0.423147,0.350994,0.194021,0.49814,0.21028,0.971544,0.656061,0.23326,0.070388,0.548942,0.825973,0.962329,0.715383,0.0544615,0.908949,0.955311,0.811794,0.0743079,0.51011,0.633579,0.889162,0.990833,0.953852,0.937671,0.751994,0.329252,0.805066,0.868574,0.737979,0.471255,0.955409,0.496742,0.780698,0.112231,0.826243,0.501491,0.945086,0.861129,0.531905,0.72748,0.318907,0.940736,0.34121,0.300401,0.07506,0.463218,0.108327,0.534968,0.962471,0.0797682,0.465063,0.086695,0.53021,0.780909,0.307296,0.816564,0.934873,0.963859,0.151979,0.891577,0.132467,0.245617,0.298803,0.165354,0.763057,0.0255366,0.181957,0.681645,0.129133,0.823335,0.698945,0.679265,0.143937,0.806821,0.286642,0.907308,0.676812,0.0236551,0.878328,0.681258,0.596789,0.5282,0.927197,0.0120305,0.219728,0.0913504,0.788695,0.390925,0.458961,0.411357,0.45548,0.027068,0.78389,0.691335,0.100814,0.686163,0.262012,0.917493,0.300535,0.100606,0.556871,0.844613,0.654811,0.340259,0.604429,0.952921,0.247201,0.546202,0.867567,0.112176,0.635065,0.625986,0.477221,0.751314,0.901981,0.64064,0.562871,0.744972,0.26232,0.206027,0.669119,0.968913,0.252379,0.887791,0.415172,0.506562,0.338679,0.288675,0.859579,0.514795,0.514485,0.960817,0.690903,0.658126,0.772535,0.402706,0.882311,0.476817,0.294198,0.839247,0.0946726,0.504313,0.319393,0.625196,0.136055,0.841583,0.319498,0.0360885,0.513883,0.644849,0.0950662,0.71352,0.0925893,0.171285,0.963744,0.400881,0.368786,0.442813,0.46108,0.168764,0.136757,0.201596,0.790741,0.734088,0.0577398,0.399432,0.0272921,0.668757,0.354335,0.75202,0.965125,0.650212,0.33214,0.517353,0.683203,0.0921063,0.48032,0.0529119,0.279948,0.944433,0.00439197,0.962917,0.490476,0.110753,0.93707,0.0246662,0.882136,0.605075,0.513994,0.911039,0.31192,0.335777,0.107992,0.601329,0.326065,0.0994329,0.74146,0.20674,0.579267,0.509096,0.314064,0.292871,0.563241,0.492287,0.903101,0.737667,0.766274,0.0479836,0.199255,0.122256,0.857733,0.425756,0.372298,0.952107,0.0975617,0.887932,0.649122,0.750419,0.662449,0.664973,0.665361,0.0615574,0.834562,0.139635,0.342223,0.6052,0.497761,0.278582,0.181527,0.154584,0.027034,0.710443,0.79975,0.265242,0.030966,0.610079,0.891423,0.206168,0.535575,0.723423,0.881419,0.209349,0.331103,0.416358,0.3952,0.850589,0.50098,0.485956,0.187772,0.33882,0.506645,0.822369,0.925625,0.494157,0.344315,0.120792,0.509564,0.679091,0.613324,0.360501,0.308903,0.26501,0.0029133,0.54337,0.483603,0.712709,0.570619,0.018173,0.287266,0.909137,0.565951,0.858626,0.100573,0.735335,0.265932,0.999719,0.549339,0.811023,0.775607,0.328863,0.14478,0.308233,0.85134,0.342063,0.226118,0.103655,0.721166,0.815095,0.500532,0.695448,0.932482,0.281286,0.85899,0.7434,0.180771,0.155629,0.725418,0.9798,0.35634,0.804814,0.783681,0.920492,0.0707797,0.0742388,0.525967,0.399544,0.0754872,0.331344,0.976798,0.454319,0.258123,0.00684935,0.526481,0.74887,0.0406957,0.0603437,0.464752,0.606912,0.880491,0.497885,0.227352,0.187121,0.463897,0.24122,0.628904,0.768627,0.670538,0.0828604,0.205048,0.614511,0.580433,0.10791,0.322016,0.918522,0.779342,0.0757685,0.742974,0.323682,0.109275,0.980375,0.653894,0.692855,0.994854,0.497839,0.449192,0.572538,0.962996,0.204794,0.403212,0.0698837,0.554335,0.81515,0.658158,0.799909,0.439704,0.92612,0.228,0.908706,0.297768,0.472545,0.45278,0.614325,0.740856,0.434772,0.0190665,0.704248,0.623146,0.197909,0.87636,0.0337644,0.090816,0.0375314,0.638163,0.0852351,0.361133,0.6003,0.116799,0.679381,0.563166,0.37326,0.45489,0.884052,0.495802,0.986321,0.0335237,0.883775,0.976142,0.446153,0.512995,0.377679,0.10636,0.297162,0.493502,0.545405,0.4259,0.821298,0.0304212,0.047543,0.732455,0.146176,0.43623,0.553468,0.561613,0.297542,0.428523,0.445454,0.942583,0.29311,0.522608,0.75224,0.773109,0.198499,0.0351207,0.838165,0.054327,0.967178,0.953617,0.295995,0.279226,0.466762,0.404567,0.367797,0.636476,0.844098,0.61435,0.45792,0.336484,0.70387,0.513938,0.347907,0.0101517,0.921048,0.806836,0.882724,0.354731,0.728936,0.793321,0.749718,0.559268,0.567657,0.883208,0.143104,0.611321,0.638759,0.190519,0.455002,0.973007,0.66363,0.895836,0.905535,0.32078,0.899194,0.30459,0.977936,0.67947,0.300873,0.645701,0.161295,0.412544,0.496922,0.340151,0.848165,0.245731,0.0989968,0.527458,0.688884,0.261504,0.705441,0.586651,0.77861,0.826755,0.273156,0.440517,0.143353,0.385024,0.43228,0.365852,0.0632619,0.334092,0.514725,0.0265479,0.641073,0.682717,0.860966,0.0455835,0.250386,0.552058,0.883413,0.258131,0.0611406,0.948747,0.165231,0.793056,0.783751,0.821506,0.660068,0.207322,0.487484,0.0269807,0.435696,0.482548,0.314818,0.0644984,0.827077,0.670579,0.0624961,0.467548,0.787821,0.0748162,0.403199,0.529955,0.0296921,0.156933,0.0037446,0.259905,0.793893,0.814748,0.0406042,0.342098,0.599691,0.500151,0.288322,0.647736,0.352682,0.497945,0.433674,0.13386,0.362011,0.288315,0.858072,0.717338,0.413211,0.946396,0.624308,0.873072,0.893395,0.739799,0.656911,0.480883,0.836565,0.294153,0.957588,0.0913067,0.0456203,0.486192,0.706159,0.539888,0.397977,0.348307,0.793607,0.890064,0.44759,0.308639,0.915888,0.308608,0.285406,0.100212,0.279709,0.795569,0.28647,0.598039,0.118657,0.435967,0.980985,0.596087,0.613926,0.208298,0.285042,0.279727,0.128108,0.739301,0.232485,0.684766,0.511201,0.745586,0.15288,0.116457,0.878615,0.388013,0.729188,0.78791,0.575722,0.00115645,0.91651,0.297713,0.38609,0.478973,0.152562,0.724575,0.104644,0.284003,0.783924,0.601665,0.501001,0.792178,0.88572,0.531576,0.300105,0.152056,0.153007,0.0474131,0.985039,0.875915,0.409274,0.558857,0.918213,0.588378,0.11677,0.713366,0.72781,0.660618,0.605207,0.256251,0.664283,0.716893,0.421715,0.572753,0.860605,0.00501508,0.568006,0.861732,0.102967,0.13187,0.0312763,0.299713,0.93015,0.0416706,0.551558,0.430094,0.173343,0.847361,0.505992,0.178858,0.462174,0.673899,0.285601,0.101751,0.803003,0.6832,0.578217,0.821167,0.572932,0.497307,0.940436,0.386435,0.841152,0.0137414,0.934842,0.0351133,0.557515,0.0164425,0.266843,0.556492,0.213729,0.00603545,0.157248,0.0844467,0.423538,0.299641,0.187369,0.0857127,0.498883,0.0158133,0.828541,0.600946,0.359874,0.66686,0.667241,0.118744,0.72716,0.147323,0.422861,0.887788,0.753646,0.666658,0.760955,0.769659,0.639069,0.620047,0.19004,0.137023,0.368403,0.925557,0.999405,0.822478,0.981292,0.616055,0.817266,0.267452,0.120229,0.91365,0.239631,0.302821,0.510437,0.971841,0.713751,0.810129,0.345955,0.492395,0.462549,0.40636,0.6319,0.208089,0.523716,0.717394,0.649252,0.347851,0.879015,0.305457,0.752805,0.603461,0.507948,0.421928,0.0338695,0.344078,0.279601,0.51159,0.978703,0.607188,0.359728,0.126202,0.414102,0.394156,0.260025,0.524206,0.396926,0.57878,0.874832,0.280006,0.208999,0.484597,0.47075,0.153791,0.656561,0.208854,0.835795,0.567219,0.900908,0.135765,0.247436,0.878177,0.141131,0.892599,0.583401,0.163665,0.94426,0.670591,0.399617,0.580912,0.560251,0.729036,0.2058,0.458444,0.71673,0.0236973,0.572663,0.918031,0.163997,0.969872,0.210031,0.783626,0.107251,0.046266,0.627364,0.412434,0.109829,0.813002,0.431008,0.55584,0.370418,0.768138,0.465506,0.844195,0.21614,0.41556,0.0823748,0.476729,0.861226,0.57584,0.172419,0.0638342,0.172141,0.501399,0.241626,0.83531,0.0421798,0.619429,0.787961,0.706486,0.819907,0.27584,0.185039,0.857075,0.870806,0.976458,|0.506638,0.513819,0.335788,0.35359,0.962149,0.381425,0.230747,0.164882,0.181197,0.662624,0.553932,0.532992,0.28421,0.0621843,0.0468465,0.227461,0.748377,0.659909,0.898946,0.103564,0.54982,0.346071,0.972712,0.0327405,0.692693,0.674948,0.0943234,0.306344,0.762782,0.549513,0.453325,0.80449,0.544182,0.837334,0.477508,0.106907,0.602028,0.425977,0.879586,0.259659,0.728984,0.0530387,0.835047,0.366512,0.253702,0.775699,0.411634,0.698888,0.990208,0.584354,0.503144,0.327879,0.497966,0.956257,0.90423,0.704447,0.279163,0.627248,0.272328,0.876486,0.196968,0.666533,0.875188,0.723408,0.264147,0.262181,0.901084,0.487063,0.186997,0.595102,0.575285,0.32525,0.528317,0.982459,0.181877,0.608273,0.555966,0.974795,0.188893,0.983196,0.146872,0.106679,0.441135,0.545639,0.766376,0.264989,0.95449,0.999522,0.745069,0.588244,0.51149,0.124442,0.383174,0.43309,0.442239,0.928769,0.665318,0.501417,0.4316,0.999493,0.961742,0.341659,0.624015,0.859123,0.151785,0.694855,0.0342754,0.579144,0.111673,0.31909,0.766451,0.256072,0.640891,0.389177,0.160636,0.329174,0.468435,0.526019,0.0665362,0.47422,0.880661,0.326896,0.827991,0.655365,0.725109,0.726267,0.398701,0.493736,0.320115,0.485481,0.472968,0.0331466,0.212862,0.348568,0.449557,0.258951,0.93721,0.146545,0.039225,0.574198,0.944786,0.0606662,0.79629,0.662386,0.0316305,0.808947,0.426129,0.22409,0.0233181,0.0683706,0.154973,0.94544,0.717514,0.614314,0.0947594,0.320989,0.83383,0.678475,0.676306,0.757276,0.708203,0.459906,0.0240182,0.204865,0.579682,0.638282,0.640296,0.942423,0.537552,0.0637417,0.699034,0.160423,0.993248,0.686172,0.486644,0.72499,0.555601,0.0751923,0.933176,0.723366,0.320755,0.0201493,0.159334,0.0690207,0.705239,0.592479,0.368718,0.953779,0.850923,0.812446,0.265567,0.644047,0.85599,0.428081,0.00801504,0.0810229,0.992773,0.429185,0.0776908,0.986179,0.790217,0.118359,0.925019,0.965498,0.546402,0.0623768,0.992894,0.07728,0.522737,0.212844,0.450899,0.18036,0.617198,0.261689,0.981512,0.00145018,0.456679,0.194883,0.481988,0.285887,0.856875,0.186845,0.149434,0.514982,0.302299,0.174747,0.551184,0.317719,0.125825,0.232369,0.949485,0.69789,0.851885,0.470168,0.468281,0.885702,0.805898,0.14844,0.504463,0.471528,0.487698,0.342461,0.17269,0.196831,0.288123,0.472237,0.330041,0.260419,0.426829,0.341541,0.990782,0.252707,0.642975,0.755082,0.138429,0.799734,0.119884,0.490301,0.445356,0.329706,0.968691,0.693887,0.818746,0.944332,0.959569,0.707036,0.230055,0.280456,0.583093,0.676043,0.485304,0.965272,0.48126,0.409037,0.9849,0.744152,0.980273,0.372648,0.267946,0.0277413,0.692075,0.150902,0.75144,0.319072,0.275661,0.339029,0.543142,0.794756,0.813757,0.532583,0.985794,0.193233,0.230588,0.502768,0.325469,0.496512,0.732546,0.366981,0.830718,0.778283,0.261253,0.937892,0.48542,0.515964,0.12929,0.0725372,0.461475,0.478566,0.359001,0.946709,0.0217899,0.952295,0.714295,0.484607,0.476703,0.554522,0.576527,0.653915,0.442797,0.677455,0.771102,0.714236,0.42855,0.388551,0.156675,0.0916104,0.654385,0.268398,0.998472,0.466426,0.774866,0.409375,0.0373374,0.324322,0.0721689,0.209091,0.247021,0.435126,0.101819,0.0393701,0.811786,0.449204,0.0218191,0.289864,0.60762,0.535921,0.498796,0.420077,0.339783,0.399792,0.988966,0.468588,0.205332,0.29954,0.805605,0.668573,0.490044,0.163019,0.0214899,0.714747,0.916283,0.165494,0.0143552,0.761112,0.397229,0.775349,0.326783,0.680293,0.737932,0.435404,0.528118,0.426017,0.288147,0.638553,0.394199,0.80127,0.178553,0.0308445,0.381689,0.976581,0.872124,0.103788,0.861027,0.0162383,0.189292,0.891038,0.402107,0.125375,0.11369,0.891561,0.247004,0.476605,0.775142,0.619371,0.414245,0.315572,0.524257,0.672161,0.458377,0.392255,0.136964,0.624072,0.133128,0.413192,0.642504,0.716313,0.922563,0.981555,0.377168,0.951189,0.111963,0.11755,0.491623,0.0479423,0.868073,0.0889048,0.85976,0.194457,0.300928,0.653896,0.278098,0.0891277,0.309502,0.339372,0.222937,0.821701,0.425945,0.831485,0.752045,0.174187,0.544924,0.829658,0.729268,0.383285,0.713515,0.0908946,0.935375,0.749461,0.674563,0.644987,0.260944,0.569944,0.49297,0.46053,0.499884,0.59152,0.907932,0.645495,0.223398,0.348016,0.055725,0.0467079,0.232821,0.803429,0.835642,0.658263,0.527007,0.0220101,0.939365,0.898213,0.918554,0.449367,0.596865,0.12252,0.742016,0.710985,0.337819,0.13857,0.375699,0.741225,0.102303,0.154991,0.450441,0.834548,0.222923,0.443144,0.267138,0.209249,0.0168563,0.587252,0.924209,0.0156517,0.656278,0.570957,0.582512,0.929588,0.427362,0.956372,0.267592,0.520168,0.290431,0.655084,0.752649,0.418828,0.256154,0.646161,0.709855,0.099482,0.663899,0.00174624,0.348443,0.60859,0.831579,0.939597,0.820282,0.340215,0.646936,0.955764,0.179669,0.355921,0.419489,0.537929,0.142872,0.715335,0.0160281,0.11957,0.760918,0.141773,0.846258,0.405687,0.123477,0.428307,0.387341,0.580627,0.975026,0.454826,0.412244,0.781021,0.540791,0.878102,0.187701,0.767794,0.191921,0.0545899,0.642146,0.746126,0.847616,0.359818,0.820462,0.755658,0.196799,0.608431,0.871663,0.934282,0.943583,0.359874,0.524818,0.67193,0.281274,0.446328,0.639542,0.66532,0.139248,0.526186,0.368859,0.733872,0.705971,0.575742,0.26523,0.690445,0.575809,0.271314,0.700555,0.309912,0.418518,0.833347,0.0432965,0.273933,0.685264,0.646111,0.959714,0.284984,0.367102,0.33975,0.647918,0.781538,0.357964,0.958134,0.436159,0.370124,0.654513,0.533634,0.151469,0.967927,0.400527,0.95235,0.970027,0.504107,0.160554,0.859892,0.267315,0.246475,0.671175,0.129184,0.21288,0.650539,0.902578,0.312291,0.365987,0.789476,0.387702,0.130377,0.836972,0.0456114,0.761617,0.0160096,0.613159,0.064751,0.259816,0.50105,0.612206,0.0158702,0.0820627,0.823315,0.0191224,0.177983,0.568885,0.835364,0.0277745,0.00515258,0.673799,0.801087,0.959711,0.0752458,0.563446,0.245001,0.0789385,0.159625,0.186127,0.197533,0.890171,0.248743,0.111661,0.14815,0.681525,0.713942,0.316216,0.0761703,0.942849,0.738951,0.231518,0.888338,0.929832,0.597797,0.3489,0.564051,0.53266,0.196079,0.196843,0.659702,0.612052,0.38079,0.483383,0.233715,0.35088,0.833831,0.462063,0.126642,0.860792,0.269205,0.521931,0.657612,0.6269,0.9711,0.784952,0.271855,0.17072,0.422124,0.841309,0.599872,0.352903,0.205981,0.371866,0.299438,0.25863,0.321115,0.855198,0.106943,0.363563,0.317036,0.890281,0.414067,0.900639,0.106605,0.0113137,0.874797,0.717431,0.189218,0.242103,0.572477,0.382368,0.982181,0.507742,0.658134,0.395081,0.917512,0.643376,0.862177,0.599115,0.635009,0.150024,0.713916,0.224901,0.669432,0.075414,0.50243,0.354435,0.218759,0.393797,0.782821,0.430209,0.361005,0.0608259,0.848139,0.419838,0.22301,0.254219,0.166946,0.181586,0.438228,0.93968,0.34548,0.267812,0.369258,0.833298,0.942685,0.208842,0.407525,0.32042,0.882537,0.0111087,0.109451,0.0696784,0.327381,0.251333,0.485403,0.414027,0.174904,0.302297,0.322011,0.313368,0.224156,0.914616,0.694205,0.27573,0.646981,0.606698,0.502038,0.85566,0.475798,0.308525,0.76219,0.467879,0.0197595,0.707627,0.712798,0.540351,0.50046,0.402698,0.638683,0.906364,0.241698,0.22909,0.515216,0.841877,0.33379,0.834668,0.591325,0.361396,0.324601,0.890866,0.343447,0.940004,0.325085,0.225337,0.400361,0.0386561,0.14705,0.125193,0.269656,0.702658,0.654203,0.862397,0.0661367,0.112757,0.734763,0.454792,0.0713567,0.73976,0.957305,0.631875,0.940589,0.320078,0.370304,0.462891,0.434297,0.339811,0.397286,0.716991,0.874675,0.846181,0.124619,0.379786,0.946278,0.967113,0.356071,0.981843,0.601944,0.859916,0.179262,0.460277,0.18938,0.604687,0.706697,0.56822,0.922067,0.934253,0.0695032,0.452773,0.283607,0.0731122,0.529426,0.0655816,0.202178,0.642402,0.764031,0.653724,0.799558,0.937766,0.204297,0.867306,0.107871,0.810359,0.34677,0.943465,0.824217,0.476079,0.0706418,0.360867,0.425758,0.225202,0.479151,0.00694776,0.758005,0.130098,0.135225,0.562206,0.298692,0.636073,0.283187,0.165961,0.891191,0.956698,0.30737,0.996774,0.805206,0.591199,0.0545048,0.137327,0.692973,0.973109,0.250714,0.138009,0.33064,0.27852,0.327562,0.30304,0.555726,0.0310345,0.846872,0.0812091,0.657595,0.235489,0.0484415,0.326389,0.584762,0.62578,0.543783,0.890785,0.891204,0.679068,0.196688,0.447169,0.719197,0.291075,0.753669,0.700242,0.180626,0.0738374,0.760526,0.987652,0.447193,0.255788,0.178748,0.699545,0.528445,0.351337,0.464446,0.395219,0.262264,0.805624,0.634652,0.0422466,0.650156,0.667822,0.664963,0.69907,0.548614,0.368865,0.111176,0.908684,0.962249,0.820023,0.995476,0.0810475,0.224721,0.485717,0.824871,0.372059,0.874994,0.616779,0.505462,0.358517,0.713495,0.926782,0.877397,0.316506,0.593607,0.178802,0.57773,0.217843,0.293575,0.743808,0.245959,0.713287,0.281468,0.0530485,0.470312,0.145359,0.647911,0.119602,0.578819,0.947761,0.600139,0.969195,0.759287,0.788231,0.447379,0.586264,0.802246,0.499346,0.355123,0.420531,0.432758,0.233273,0.979925,0.185221,0.823405,0.895901,0.523486,0.945703,0.792465,0.745858,0.00201243,0.349773,0.0366109,0.714677,0.975156,0.422931,0.898333,0.219526,0.332119,0.328494,0.045912,0.815078,0.686377,0.765939,0.201044,0.738637,0.520931,0.106992,0.0830249,0.952632,0.217555,0.196532,0.456039,0.920516,0.388677,0.774877,0.244596,0.917825,0.089977,0.710769,0.868513,0.433048,0.685393,0.42908,0.0113401,0.265437,0.364586,|0.0464746,0.693105,0.414474,0.661506,0.190616,0.339235,0.0296337,0.760242,0.141242,0.268331,0.642955,0.894549,0.131624,0.60833,0.188305,0.563296,0.166977,0.81422,0.880956,0.74117,0.114039,0.0984403,0.389979,0.132341,0.0598158,0.457884,0.8159,0.723176,0.529853,0.20821,0.119236,0.185255,0.686718,0.823948,0.703963,0.0907926,0.746411,0.996231,0.719517,0.669585,0.893593,0.273386,0.682841,0.59575,0.891191,0.141848,0.0158171,0.193116,0.253001,0.190619,0.982291,0.303324,0.936714,0.908273,0.816849,0.126544,0.679436,0.51084,0.368231,0.763744,0.796735,0.294449,0.459906,0.865347,0.145605,0.968575,0.497796,0.843887,0.0764595,0.457474,0.657494,0.0123216,0.871953,0.53519,0.0793266,0.669392,0.112045,0.010391,0.375624,0.676161,0.256292,0.961264,0.125142,0.418255,0.426581,0.533955,0.889919,0.450167,0.486988,0.668459,0.369653,0.783716,0.787584,0.980337,0.123254,0.827994,0.712748,0.657613,0.301353,0.926029,0.0688574,0.637311,0.0398182,0.145868,0.366496,0.251708,0.514678,0.593866,0.84721,0.761146,0.430208,0.755024,0.765291,0.720113,0.450881,0.00449914,0.674884,0.196941,0.966055,0.647858,0.826376,0.191078,0.227021,0.175695,0.73867,0.615777,0.00984991,0.871751,0.908797,0.580179,0.740038,0.54643,0.0894691,0.153677,0.165946,0.431764,0.0923359,0.533625,0.458862,0.00853622,0.975801,0.675064,0.203852,0.509457,0.972872,0.0487903,0.0992255,0.013075,0.858651,0.270748,0.0374109,0.476074,0.384591,0.651774,0.698177,0.853173,0.971961,0.88491,0.705463,0.166481,0.45857,0.467195,0.42429,0.404471,0.800656,0.110957,0.525082,0.314988,0.967617,0.92114,0.381557,0.27822,0.424534,0.748006,0.510783,0.527888,0.956369,0.795526,0.363263,0.50165,0.33779,0.661409,0.675832,0.182893,0.314933,0.100271,0.158156,0.142175,0.0147764,0.374679,0.761304,0.325704,0.751423,0.585249,0.401475,0.190346,0.588706,0.797642,0.430375,0.254634,0.139709,0.733771,0.948394,0.861507,0.0680044,0.3505,0.0803266,0.640811,0.602409,0.991709,0.763126,0.559018,0.835488,0.214538,0.285113,0.665064,0.465741,0.0751137,0.770864,0.652819,0.279251,0.616833,0.549287,0.750083,0.533549,0.74414,0.689366,0.252546,0.664161,0.20486,0.864213,0.86963,0.93673,0.276297,0.89741,0.473722,0.593714,0.382387,0.741796,0.818172,0.709567,0.792706,0.578033,0.602309,0.0881842,0.933778,0.267965,0.315802,0.790839,0.681205,0.499353,0.711784,0.630073,0.844897,0.227565,0.517759,0.169576,0.929439,0.0899821,0.949969,0.420848,0.800996,0.802418,0.743372,0.165399,0.804608,0.90477,0.521348,0.201837,0.432976,0.2615,0.488115,0.458178,0.214908,0.35779,0.786892,0.756761,0.692032,0.788196,0.167249,0.0780516,0.748633,0.863233,0.202406,0.401068,0.00623912,0.131939,0.6443,0.117201,0.181921,0.582755,0.812585,0.976198,0.589999,0.352874,0.240042,0.404188,0.0842719,0.489273,0.47439,0.183418,0.564646,0.500883,0.0423812,0.555641,0.764681,0.0791266,0.770723,0.871847,0.951886,0.851063,0.679851,0.555264,0.0599332,0.867183,0.454843,0.178037,0.471738,0.27061,0.320552,0.636829,0.0473904,0.405623,0.648502,0.804785,0.0473028,0.263598,0.161143,0.465005,0.683428,0.884597,0.386351,0.627843,0.643722,0.85403,0.700962,0.259221,0.370759,0.212088,0.452817,0.417325,0.660644,0.566267,0.524749,0.922155,0.511816,0.566807,0.71865,0.579159,0.9581,0.798526,0.0866179,0.503177,0.149219,0.27497,0.361881,0.581646,0.807871,0.764236,0.575119,0.0322205,0.876382,0.342574,0.180824,0.705782,0.446431,0.874576,0.944696,0.278977,0.683138,0.927154,0.138196,0.960885,0.587471,0.385977,0.353712,0.890175,0.442317,0.601209,0.989167,0.648018,0.233612,0.149099,0.487145,0.29567,0.809734,0.902571,0.773451,0.30703,0.496627,0.440577,0.284984,0.142141,0.47405,0.742446,0.59572,0.82619,0.915144,0.981998,0.671945,0.446156,0.134099,0.836058,0.988608,0.314297,0.957832,0.0294706,0.0878922,0.331274,0.697569,0.648376,0.992381,0.416787,0.571114,0.974657,0.393817,0.684144,0.0841043,0.27547,0.0186272,0.61824,0.474292,0.856597,0.0921376,0.615389,0.0642502,0.794287,0.00396556,0.0357414,0.773922,0.464571,0.679476,0.934073,0.172903,0.911229,0.124282,0.670998,0.969156,0.022191,0.258299,0.720184,0.170488,0.60828,0.292495,0.895103,0.376429,0.0810443,0.363543,0.452441,0.0196048,0.0299382,0.113916,0.269695,0.677213,0.0600471,0.33344,0.933477,0.0960131,0.878376,0.156848,0.0150653,0.790584,0.736846,0.705867,0.776955,0.798624,0.0720601,0.569646,0.138623,0.338185,0.811335,0.409238,0.155367,0.675753,0.771061,0.287132,0.131891,0.618451,0.466382,0.849901,0.926373,0.162297,0.176405,0.898755,0.514759,0.843531,0.396585,0.677737,0.591773,0.424561,0.893683,0.861815,0.46204,0.0315911,0.834055,0.18023,0.736625,0.0276236,0.940175,0.0193985,0.760925,0.571551,0.974502,0.902125,0.000602841,0.212807,0.838703,0.548948,0.558918,0.0795388,0.603791,0.945869,0.952521,0.571078,0.0983753,0.447765,0.810801,0.141921,0.985723,0.994845,0.947152,0.272762,0.0456576,0.370118,0.8747,0.184184,0.972165,0.072723,0.305709,0.703495,0.888792,0.603121,0.280994,0.362346,0.617459,0.93296,0.0703784,0.961903,0.558663,0.88786,0.446892,0.877748,0.936627,0.981762,0.415245,0.272503,0.873847,0.532264,0.575214,0.183731,0.804637,0.772543,0.320218,0.670045,0.662288,0.796921,0.978619,0.680468,0.38638,0.686678,0.391577,0.874005,0.22945,0.483101,0.0735256,0.523936,0.0839632,0.348854,0.628172,0.830367,0.0244384,0.479923,0.152243,0.163781,0.815995,0.222595,0.25414,0.17349,0.810497,0.943991,0.422671,0.251621,0.493324,0.333435,0.0525573,0.0426008,0.0118338,0.0305454,0.929929,0.758361,0.573501,0.783868,0.877236,0.569528,0.855793,0.10767,0.491831,0.414187,0.245717,0.98999,0.285252,0.59878,0.892803,0.643419,0.196206,0.558952,0.978645,0.690156,0.285033,0.215498,0.912608,0.973336,0.695433,0.171064,0.414126,0.719053,0.000995815,0.0997865,0.738793,0.338296,0.399223,0.149752,0.222972,0.882153,0.201052,0.247131,0.974159,0.117683,0.525617,0.642253,0.972147,0.305489,0.235524,0.106744,0.633928,0.130294,0.993054,0.376478,0.212591,0.900217,0.956367,0.963238,0.146473,0.913769,0.133578,0.379093,0.194247,0.138366,0.381005,0.311888,0.893229,0.628973,0.137452,0.260907,0.116138,0.600078,0.25697,0.119513,0.899987,0.904949,0.751916,0.382634,0.480937,0.101993,0.958085,0.426365,0.974174,0.450187,0.556376,0.90194,0.119702,0.280106,0.682749,0.0150827,0.0963776,0.780028,0.060603,0.615646,0.83791,0.462162,0.400005,0.444594,0.441834,0.0928836,0.0879565,0.489551,0.871079,0.20045,0.811348,0.823008,0.527598,0.0946711,0.340961,0.944381,0.772554,0.570923,0.107072,0.711587,0.0420644,0.583669,0.0340076,0.151779,0.646053,0.218286,0.428267,0.538891,0.842029,0.706911,0.748077,0.0322974,0.0519335,0.327274,0.283268,0.909088,0.247281,0.590299,0.380336,0.784675,0.638305,0.284203,0.750766,0.758249,0.828337,0.809955,0.374803,0.40121,0.424323,0.965033,0.134811,0.220525,0.111361,0.991887,0.770059,0.873024,0.22573,0.761547,0.707376,0.374812,0.675426,0.105944,0.795988,0.911085,0.339616,0.112413,0.782155,0.026619,0.560678,0.284297,0.663148,0.267206,0.4409,0.201392,0.655458,0.161844,0.414753,0.146883,0.174556,0.43565,0.1498,0.107294,0.166934,0.25765,0.504262,0.20543,0.684616,0.0240723,0.371104,0.763412,0.439067,0.940743,0.552278,0.683458,0.267811,0.481287,0.852989,0.428877,0.390235,0.171362,0.348145,0.23943,0.656821,0.120028,0.430932,0.238217,0.7684,0.802949,0.450869,0.574176,0.794669,0.649021,0.726661,0.832292,0.174637,0.1153,0.242084,0.52109,0.27675,0.0750535,0.294568,0.0264887,0.608837,0.989511,0.833233,0.740068,0.302851,0.251748,0.877406,0.717669,0.735864,0.831767,0.30786,0.254029,0.767104,0.0644473,0.412249,0.543407,0.731716,0.169322,0.677111,0.878955,0.191134,0.234738,0.555929,0.952691,0.815505,0.639867,0.397006,0.990966,0.0638486,0.351795,0.488375,0.205924,0.389214,0.657617,0.847041,0.377908,0.592851,0.48895,0.943069,0.571347,0.842917,0.566569,0.541881,0.945562,0.425268,0.87212,0.917262,0.969302,0.389807,0.995342,0.885501,0.425292,0.438163,0.306814,0.812219,0.404079,0.987298,0.319531,0.783693,0.98105,0.0213987,0.880954,0.00711399,0.38288,0.496535,0.173824,0.0194143,0.35902,0.0992382,0.689522,0.638016,0.549065,0.383283,0.183961,0.576547,0.264698,0.301839,0.48045,0.980406,0.846204,0.64861,0.736805,0.458485,0.497886,0.535259,0.594543,0.66415,0.130396,0.684123,0.706219,0.438738,0.787181,0.716709,0.734495,0.510781,0.965069,0.749669,0.400244,0.679744,0.199428,0.30198,0.573095,0.825448,0.737613,0.47267,0.546717,0.924104,0.363109,0.544174,0.38642,0.435963,0.876662,0.329048,0.275072,0.654002,0.944846,0.842356,0.594351,0.883764,0.290811,0.42166,0.726677,0.260947,0.77421,0.677388,0.683125,0.590879,0.547098,0.816536,0.00979149,0.774233,0.492617,0.425965,0.58735,0.811742,0.743901,0.927822,0.676909,0.826847,0.366889,0.195837,0.946175,0.278079,0.831262,0.311185,0.0412777,0.675079,0.324783,0.795169,0.34744,0.782159,0.288068,0.363811,0.0622738,0.0287355,0.0633878,0.136662,0.131283,0.344985,0.236472,0.197409,0.794316,0.376656,0.167881,0.664323,0.167057,0.587865,0.370679,0.52386,0.21636,0.36701,0.206708,0.799345,0.202112,0.0308771,0.950693,0.530779,0.214426,0.223924,0.542326,0.903018,0.207329,0.91784,0.513561,0.813274,0.347039,0.470644,0.975792,0.626574,0.781952,0.0965652,0.827165,0.105529,0.2021,0.0354887,0.490302,0.760963,0.479022,0.553191,0.498507,|0.180007,0.750083,0.197379,0.634216,0.965422,0.797896,0.378888,0.152166,0.331761,0.446657,0.76767,0.207178,0.545878,0.626318,0.959911,0.328631,0.228661,0.170549,0.0351582,0.127353,0.632426,0.043593,0.76012,0.92412,0.33248,0.206636,0.615474,0.940341,0.841351,0.67606,0.626469,0.739053,0.824636,0.0537009,0.576927,0.608806,0.517021,0.839476,0.056101,0.718019,0.426875,0.0567918,0.62698,0.120708,0.346326,0.816083,0.947574,0.103707,0.734948,0.244,0.399134,0.0861245,0.87903,0.557843,0.302791,0.340677,0.274769,0.694076,0.709246,0.632273,0.667131,0.332261,0.129454,0.291787,0.692518,0.304967,0.951182,0.302952,0.84993,0.71385,0.243281,0.447115,0.169532,0.290087,0.76755,0.485108,0.154793,0.185308,0.755995,0.233633,0.80042,0.793292,0.177703,0.363837,0.807492,0.816296,0.648535,0.439406,0.831783,0.463801,0.457456,0.513583,0.228742,0.320758,0.417689,0.825673,0.094669,0.573281,0.293961,0.711392,0.287424,0.321549,0.8162,0.130909,0.695362,0.866179,0.63773,0.0316301,0.210519,0.918823,0.347832,0.243956,0.831056,0.124219,0.218284,0.692367,0.812605,0.588904,0.533122,0.412127,0.782736,0.745683,0.526953,0.998625,0.84938,0.436664,0.35429,0.765119,0.586405,0.0687817,0.989758,0.906953,0.934832,0.377557,0.62901,0.821542,0.324363,0.999195,0.887797,0.0502191,0.225165,0.380599,0.590162,0.728188,0.536489,0.608127,0.868887,0.358667,0.361326,0.161853,0.836998,0.553885,0.382456,0.0303138,0.309025,0.888315,0.039439,0.242809,0.701335,0.0357186,0.600751,0.251866,0.61514,0.509549,0.431692,0.0282515,0.235799,0.679843,0.539551,0.848154,0.0932171,0.960298,0.784726,0.509047,0.698698,0.603912,0.838293,0.753793,0.195984,0.611156,0.854879,0.847186,0.373095,0.31395,0.774523,0.783054,0.365051,0.501356,0.893359,0.0544748,0.740149,0.405655,0.704559,0.456209,0.303914,0.49162,0.542939,0.558926,0.0977476,0.416862,0.188027,0.944249,0.53364,0.759419,0.796767,0.675895,0.0806797,0.494741,0.17217,0.254373,0.413019,0.495265,0.214311,0.319956,0.393207,0.09262,0.185223,0.218111,0.780489,0.370054,0.337777,0.654232,0.609168,0.403531,0.659165,0.72907,0.529177,0.454197,0.900895,0.353204,0.154894,0.555024,0.456556,0.908383,0.940662,0.846723,0.785141,0.0954412,0.230944,0.808026,0.459935,0.627316,0.816507,0.47739,0.661082,0.270864,0.7576,0.696042,0.950894,0.979306,0.663436,0.526142,0.729773,0.224813,0.842655,0.00335157,0.245657,0.0365798,0.473698,0.0585824,0.269354,0.354402,0.886411,0.343769,0.17723,0.777858,0.730731,0.863849,0.754715,0.570916,0.976331,0.24746,0.170395,0.811868,0.190106,0.163979,0.730509,0.411979,0.908875,0.778167,0.587886,0.569881,0.938385,0.61051,0.0972458,0.188846,0.367283,0.681303,0.869741,0.239823,0.392542,0.92938,0.864167,0.745062,0.56378,0.544374,0.406922,0.223871,0.111765,0.438721,0.434572,0.679222,0.77814,0.904979,0.964125,0.240522,0.368343,0.245256,0.00851369,0.415556,0.31352,0.629379,0.503295,0.111274,0.351602,0.609512,0.961928,0.458786,0.695496,0.756686,0.325489,0.369393,0.508251,0.935481,0.496064,0.99718,0.879213,0.756004,0.692345,0.2687,0.300248,0.343255,0.316581,0.667016,0.0986083,0.851569,0.122904,0.765366,0.223774,0.769493,0.198446,0.582343,0.221264,0.213927,0.694496,0.056979,0.51844,0.351675,0.257238,0.292793,0.757432,0.0710714,0.718981,0.444087,0.986965,0.454534,0.35866,0.853776,0.739769,0.436887,0.792883,0.155434,0.829113,0.966892,0.827814,0.842365,0.271006,0.769901,0.788166,0.566875,0.800246,0.0463787,0.686708,0.297345,0.760999,0.0596648,0.657444,0.933332,0.998923,0.269857,0.288105,0.934926,0.921618,0.921105,0.207673,0.256594,0.487159,0.0050078,0.0384642,0.722839,0.290514,0.649823,0.934077,0.557612,0.806022,0.665467,0.129699,0.858308,0.914308,0.890268,0.225361,0.739558,0.411714,0.0327837,0.015393,0.534621,0.299688,0.12759,0.713835,0.691256,0.824017,0.843238,0.0921602,0.363981,0.408674,0.264511,0.463961,0.24259,0.283834,0.00132376,0.255227,0.816238,0.627024,0.137973,0.582674,0.643894,0.889715,0.672135,0.683118,0.882682,0.236254,0.715547,0.34255,0.514255,0.0907134,0.193087,0.798764,0.360611,0.435148,0.854131,0.850843,0.0760037,0.912715,0.609233,0.140952,0.984536,0.0775514,0.892234,0.143869,0.719508,0.119773,0.928783,0.71805,0.352225,0.153557,0.61939,0.126841,0.463117,0.977724,0.810561,0.0679541,0.30515,0.484753,0.955539,0.709106,0.414993,0.609183,0.689359,0.473001,0.653591,0.728909,0.167981,0.371247,0.132994,0.298678,0.162562,0.0566119,0.692755,0.353864,0.165448,0.0764745,0.668338,0.289851,0.00085777,0.0568922,0.146184,0.70073,0.538703,0.809888,0.278507,0.547267,0.85089,0.443991,0.0226698,0.155858,0.240277,0.551485,0.779688,0.959549,0.493994,0.962377,0.196663,0.118053,0.76507,0.093687,0.781797,0.606918,0.959339,0.0537087,0.463447,0.458979,0.32243,0.539352,0.591424,0.600434,0.93137,0.128383,0.700333,0.00755954,0.0581551,0.869876,0.76074,0.878446,0.932359,0.676798,0.941827,0.847917,0.521512,0.292612,0.753744,0.317879,0.903022,0.474938,0.197759,0.226142,0.481714,0.630825,0.359171,0.115807,0.218701,0.601686,0.357808,0.534689,0.660439,0.935738,0.571489,0.660308,0.776854,0.455567,0.853983,0.315512,0.765176,0.138957,0.238908,0.835972,0.0557247,0.742918,0.0294474,0.522747,0.394661,0.353794,0.0236933,0.198916,0.138519,0.37054,0.179694,0.103432,0.538258,0.0377805,0.845123,0.17728,0.0335891,0.607839,0.990781,0.359037,0.561305,0.620649,0.724905,0.863489,0.969263,0.729617,0.723279,0.492902,0.106543,0.891565,0.462207,0.0197868,0.468847,0.0732211,0.0353344,0.978752,0.365797,0.00628972,0.710751,0.774891,0.238715,0.240534,0.247811,0.579967,0.698296,0.79948,0.11862,0.977219,0.221364,0.72031,0.0684019,0.636067,0.0273702,0.291719,0.345137,0.650397,0.671117,0.512828,0.855914,0.0291233,0.50739,0.543266,0.223584,0.150752,0.601922,0.0914023,0.131222,0.687617,0.32106,0.292033,0.856201,0.160849,0.715207,0.836907,0.637709,0.983493,0.464077,0.857302,0.113678,0.922786,0.824838,0.0854701,0.503903,0.985665,0.44097,0.939413,0.642324,0.165345,0.385124,0.506641,0.766721,0.512757,0.588851,0.16526,0.0537955,0.528575,0.0775752,0.602581,0.12301,0.903727,0.689646,0.0989816,0.917156,0.366122,0.132889,0.562894,0.0615368,0.0889292,0.289951,0.574631,0.395522,0.701346,0.187813,0.90672,0.399586,0.169105,0.645556,0.103406,0.561173,0.28822,0.193399,0.382782,0.509938,0.90773,0.441338,0.936047,0.682419,0.129601,0.606275,0.977529,0.690125,0.441961,0.558495,0.95369,0.11836,0.973388,0.849768,0.592656,0.92304,0.505388,0.932282,0.253853,0.65511,0.606698,0.924965,0.933618,0.872477,0.116631,5.60284e-05,0.646637,0.376962,0.64159,0.180747,0.127703,0.232796,0.604216,0.609637,0.0837812,0.0526702,0.403337,0.797151,0.498039,0.604738,0.312637,0.291984,0.561756,0.502618,0.660263,0.640214,0.190664,0.946132,0.389122,0.313953,0.180279,0.523135,0.685569,0.664716,0.817931,0.259829,0.507752,0.45963,0.706074,0.555512,0.127073,0.740428,0.46169,0.563448,0.950417,0.848368,0.174135,0.577704,0.634875,0.557109,0.458113,0.2116,0.114732,0.113803,0.568704,0.34746,0.452055,0.178219,0.0195276,0.877556,0.409186,0.875166,0.439671,0.302258,0.0113525,0.564954,0.383154,0.965505,0.685422,0.0654813,0.436929,0.496222,0.883085,0.451536,0.998419,0.0600361,0.123661,0.901519,0.116529,0.854377,0.824516,0.811703,0.568154,0.459681,0.160579,0.78618,0.639465,0.212701,0.610379,0.126729,0.878899,0.416185,0.348916,0.525148,0.24473,0.369915,0.330743,0.957206,0.435705,0.769701,0.229146,0.79341,0.532504,0.129852,0.907182,0.223342,0.449343,0.651302,0.554812,0.596105,0.82948,0.837033,0.287246,0.563733,0.48281,0.940147,0.0152407,0.581211,0.900686,0.568004,0.408965,0.880584,0.487207,0.231759,0.313959,0.494407,0.397845,0.300172,0.174189,0.971765,0.374899,0.30313,0.0192012,0.115137,0.98698,0.132658,0.489084,0.258519,0.786756,0.883602,0.291144,0.678932,0.237908,0.354364,0.0389417,0.92249,0.234836,0.396369,0.90931,0.42828,0.330897,0.231852,0.630386,0.771882,0.586673,0.844531,0.25668,0.601536,0.268805,0.836259,0.935019,0.161486,0.471574,0.814839,0.817528,0.215911,0.100246,0.416015,0.241501,0.832934,0.450977,0.242758,0.0922128,0.538152,0.0867743,0.986716,0.889951,0.614684,0.738872,0.625942,0.816276,0.187508,0.971591,0.598511,0.227791,0.551539,0.0544168,0.790869,0.391682,0.583336,0.858081,0.299165,0.821534,0.460502,0.890308,0.223234,0.718355,0.346016,0.583362,0.161622,0.702975,0.325353,0.629886,0.357983,0.217709,0.789979,0.840437,0.487149,0.371984,0.598293,0.520893,0.615671,0.35824,0.645777,0.547822,0.204493,0.165202,0.910244,0.0706193,0.157625,0.436436,0.749627,0.269244,0.418846,0.865229,0.666106,0.738021,0.164366,0.104853,0.0496089,0.96761,0.71867,0.34551,0.0566292,0.92141,0.520579,0.381654,0.904855,0.283362,0.654458,0.639273,0.448525,0.258152,0.0873178,0.867683,0.684673,0.0771529,0.234118,0.0640913,0.987731,0.140382,0.808893,0.780663,0.255117,0.0285934,0.0545326,0.627068,0.0933536,0.272877,0.300212,0.754552,0.135357,0.912376,0.456152,0.393306,0.026857,0.32325,0.477215,0.143043,0.599502,0.267232,0.543968,0.945633,0.341063,0.738489,0.12858,0.67285,0.792131,0.23924,0.944525,0.952475,0.789226,0.424364,0.948114,0.365893,0.83216,0.0983775,0.58564,0.0849131,0.832796,0.0192789,0.795817,0.345083,0.836537,0.704257,0.86893,0.106262,0.388689,0.515981,0.124,0.335258,0.894353,|0.599536,0.867904,0.247768,0.323147,0.315443,0.43928,0.485262,0.215432,0.858218,0.977904,0.598795,0.527015,0.0502691,0.464182,0.359039,0.28174,0.631612,0.409156,0.254502,0.536905,0.522798,0.238103,0.836702,0.870971,0.746822,0.906808,0.725837,0.343417,0.0470647,0.186507,0.483171,0.677974,0.250655,0.684752,0.288079,0.709303,0.999945,0.486645,0.434615,0.367451,0.524487,0.711817,0.341079,0.294673,0.892744,0.187323,0.354411,0.0598519,0.0329541,0.413808,0.98637,0.836558,0.091269,0.0563328,0.120651,0.507792,0.554081,0.861228,0.88181,0.622807,0.644519,0.337924,0.505503,0.21808,0.821852,0.41911,0.396844,0.0622895,0.343678,0.0103329,0.105622,0.59139,0.589362,0.96724,0.708277,0.668865,0.883569,0.818104,0.946136,0.220139,0.726637,0.917548,0.229228,0.366017,0.714198,0.981589,0.913698,0.506859,0.297031,0.630268,0.938137,0.885098,0.588401,0.130982,0.19827,0.126759,0.257666,0.840854,0.372645,0.760257,0.663697,0.655404,0.826356,0.946408,0.00391358,0.186714,0.349432,0.8322,0.726895,0.708446,0.330269,0.260501,0.468095,0.413058,0.165103,0.470695,0.292663,0.599165,0.2216,0.0643132,0.827914,0.116487,0.288587,0.942585,0.176116,0.464166,0.157551,0.317457,0.895987,0.977226,0.278026,0.155517,0.667258,0.441303,0.800307,0.322314,0.0329733,0.273055,0.331287,0.184125,0.0777274,0.410177,0.258959,0.00509876,0.229432,0.814671,0.0364414,0.254821,0.107192,0.378587,0.703347,0.338052,0.510528,0.977149,0.947952,0.415188,0.313886,0.380354,0.150291,0.326283,0.342898,0.573623,0.486139,0.860361,0.0654206,0.891578,0.620441,0.700264,0.773763,0.425718,0.248254,0.46639,0.562502,0.933143,0.00143915,0.645927,0.664239,0.984951,0.387027,0.494909,0.85454,0.525859,0.674769,0.907806,0.26048,0.490097,0.286543,0.561354,0.343699,0.493543,0.860453,0.471509,0.519639,0.857427,0.3507,0.980109,0.874083,0.439584,0.187452,0.520996,0.94971,0.498234,0.381207,0.131695,0.368584,0.933044,0.12385,0.795022,0.918572,0.476398,0.278895,0.638653,0.718125,0.887016,0.153435,0.428542,0.69399,0.779102,0.597357,0.734477,0.787723,0.716524,0.326619,0.778163,0.359416,0.063522,0.799249,0.408085,0.547122,0.424078,0.51936,0.322771,0.626633,0.656775,0.88187,0.15331,0.619494,0.591134,0.660172,0.0994093,0.569851,0.376789,0.949,0.0251641,0.308409,0.377912,0.508027,0.615509,0.487419,0.749781,0.90975,0.0978457,0.276135,0.969807,0.948111,0.030919,0.25904,0.431442,0.12508,0.974468,0.564884,0.650197,0.815256,0.578203,0.660407,0.590333,0.951269,0.56912,0.407705,0.0555135,0.785215,0.858827,0.279628,0.347838,0.0213345,0.0552472,0.325843,0.510968,0.394503,0.70226,0.963411,0.295111,0.595925,0.113492,0.532654,0.701866,0.29198,0.344421,0.373861,0.306595,0.0924456,0.561307,0.10122,0.51006,0.189999,0.382819,0.602103,0.494858,0.761708,0.606002,0.980593,0.924715,0.324059,0.481638,0.244925,0.32477,0.156142,0.550411,0.442868,0.829445,0.956401,0.549631,0.543858,0.263571,0.653947,0.620006,0.606687,0.782927,0.358818,0.0315655,0.201248,0.0506089,0.0503057,0.113647,0.236471,0.306208,0.992604,0.785941,0.507899,0.0918872,0.772905,0.0808592,0.0734664,0.709011,0.857541,0.450741,0.0662537,0.97563,0.368246,0.520721,0.993798,0.192628,0.311069,0.931384,0.250796,0.0405946,0.230415,0.453357,0.511382,0.489557,0.382827,0.582689,0.682778,0.066743,0.680263,0.00667,0.287337,0.320819,0.654915,0.687142,0.855332,0.977876,0.344231,0.600641,0.847755,0.941712,0.787172,0.0267846,0.979372,0.0995721,0.84187,0.842795,0.99657,0.386988,0.927027,0.936556,0.843673,0.930661,0.730514,0.697841,0.149266,0.985994,0.527602,0.312392,0.245303,0.684851,0.0483838,0.2835,0.226914,0.449229,0.970696,0.780122,0.835884,0.398214,0.40226,0.181809,0.262498,0.223711,0.28877,0.837482,0.537143,0.226994,0.433728,0.605486,0.593775,0.855794,0.184768,0.905646,0.517767,0.327095,0.873575,0.260473,0.597983,0.566451,0.356119,0.558396,0.41008,0.922485,0.0528872,0.461719,0.352202,0.695567,0.466209,0.270426,0.847919,0.559905,0.205194,0.0132659,0.718563,0.106405,0.450589,0.571108,0.357288,0.135876,0.19197,0.684664,0.65571,0.437064,0.698398,0.410899,0.88196,0.71162,0.723969,0.715894,0.634321,0.563466,0.392181,0.464718,0.323182,0.20762,0.678942,0.690628,0.435519,0.866651,0.872409,0.426052,0.401813,0.437586,0.942212,0.458132,0.49707,0.1788,0.565751,0.178662,0.0379062,0.288693,0.779612,0.287656,0.818541,0.32563,0.462108,0.302313,0.167175,0.906778,0.650621,0.214246,0.120749,0.160733,0.142774,0.842706,0.491881,0.553585,0.725723,0.708342,0.837219,0.688049,0.35795,0.643426,0.892279,0.480896,0.584372,0.659334,0.612099,0.807799,0.249292,0.751966,0.0518478,0.923922,0.74013,0.807657,0.0127099,0.926165,0.739517,0.737201,0.174275,0.120706,0.422916,0.586443,0.712804,0.845578,0.241461,0.149039,0.952017,0.469541,0.633278,0.537272,0.942839,0.6324,0.0229102,0.577973,0.274647,0.524625,0.417384,0.920017,0.343095,0.505972,0.154646,0.0544043,0.430011,0.550523,0.660035,0.545014,0.562626,0.32532,0.252888,0.662921,0.707072,0.88475,0.614182,0.470641,0.380299,0.658808,0.874441,0.1864,0.531834,0.885837,0.12545,0.883592,0.944472,0.31713,0.412181,0.376979,0.510706,0.143699,0.760572,0.490234,0.488311,0.0423599,0.185167,0.303514,0.745021,0.159825,0.871051,0.152151,0.303707,0.424002,0.399598,0.124924,0.949568,0.557369,0.95662,0.130516,0.893998,0.752283,0.495131,0.0150598,0.378949,0.777772,0.774763,0.672209,0.645308,0.391151,0.365095,0.246523,0.189902,0.0941759,0.935271,0.619314,0.481544,0.529558,0.065487,0.46134,0.0530941,0.210837,0.189369,0.363967,0.609497,0.38009,0.390986,0.0754241,0.0832765,0.869151,0.511107,0.753334,0.326778,0.822265,0.822257,0.452067,0.683882,0.149498,0.512083,0.571367,0.408252,0.760308,0.0357167,0.152421,0.56306,0.632784,0.925162,0.663496,0.104162,0.259749,0.497988,0.897186,0.288442,0.665622,0.239061,0.967924,0.610044,0.552361,0.28399,0.719042,0.468275,0.982768,0.618253,0.942553,0.853723,0.20586,0.20286,0.165775,0.913676,0.726437,0.0425296,0.0876963,0.358223,0.994616,0.0273805,0.761834,0.820176,0.598764,0.546399,0.263896,0.282407,0.0977362,0.0482258,0.801376,0.154712,0.212375,0.85905,0.359839,0.985524,0.0871745,0.683616,0.155154,0.62971,0.54045,0.174489,0.222348,0.0473712,0.74027,0.314262,0.667165,0.524033,0.82242,0.902779,0.00413209,0.180811,0.914798,0.102359,0.225625,0.168206,0.038267,0.382529,0.378879,0.473756,0.53436,0.0125547,0.535769,0.0790796,0.0620483,0.792451,0.240146,0.0779251,0.132933,0.724841,0.427452,0.754798,0.776432,0.68694,0.590418,0.298987,0.960934,0.784288,0.622208,0.3707,0.519914,0.689896,0.704338,0.0133736,0.263921,0.628811,0.310658,0.81844,0.354101,0.502352,0.748498,0.0999206,0.476474,0.235311,0.188386,0.591011,0.611272,0.791705,0.707982,0.805895,0.882287,0.882802,0.782657,0.960235,0.642064,0.665904,0.569634,0.898169,0.606318,0.503769,0.793035,0.7637,0.0209312,0.750538,0.369259,0.360451,0.724812,0.728006,0.876364,0.987579,0.574437,0.283467,0.367765,0.701696,0.276623,0.348241,0.205922,0.799346,0.233303,0.33801,0.463697,0.836495,0.193796,0.412944,0.876329,0.493869,0.0427789,0.905914,0.45177,0.395543,0.528868,0.0069294,0.953422,0.481573,0.0836273,0.517042,0.478464,0.658221,0.656283,0.414489,0.933024,0.788414,0.55592,0.777192,0.264231,0.539575,0.0984383,0.284213,0.654186,0.692016,0.888116,0.141639,0.887474,0.872335,0.175481,0.191823,0.620445,0.482621,0.725059,0.596911,0.900947,0.243543,0.40397,0.526873,0.389311,0.670864,0.846378,0.374228,0.286425,0.740957,0.973523,0.175444,0.810382,0.415289,0.655625,0.17058,0.17111,0.2444,0.994108,0.812657,0.0619574,0.0812819,0.708839,0.470457,0.953804,0.571255,0.448629,0.905975,0.0756561,0.605748,0.822316,0.31971,0.422393,0.00642705,0.357282,0.632925,0.755669,0.0751476,0.500705,0.895374,0.848135,0.139049,0.273712,0.331691,0.82839,0.2365,0.0349342,0.739925,0.388227,0.543243,0.0188718,0.657501,0.942864,0.521321,0.525563,0.326165,0.421094,0.654899,0.556498,0.611944,0.833143,0.623986,0.289017,0.629815,0.600008,0.780471,0.759867,0.0920717,0.40291,0.23954,0.901502,0.13778,0.770135,0.767095,0.615258,0.119125,0.312819,0.299468,0.427545,0.825238,0.0712337,0.95996,0.330968,0.175234,0.682742,0.756379,0.844826,0.548634,0.421234,0.703642,0.851437,0.638822,0.717501,0.626675,0.318569,0.063347,0.0235977,0.0412628,0.969901,0.826825,0.448218,0.139904,0.445078,0.168602,0.660568,0.888851,0.0239161,0.637149,0.170773,0.54975,0.433576,0.992621,0.940791,0.994207,0.286682,0.400555,0.0370467,0.0160567,0.775209,0.501421,0.452363,0.946049,0.359749,0.739562,0.470075,0.18567,0.197011,0.219287,0.948327,0.138298,0.511401,0.977866,0.328954,0.625419,0.26247,0.606224,0.258551,0.969198,0.500941,0.86192,0.060595,0.632705,0.0380948,0.443078,0.861983,0.788226,0.835725,0.408402,0.298793,0.565677,0.0351388,0.235952,0.780515,0.638829,0.653001,0.503063,0.861068,0.223428,0.263265,0.948766,0.0799056,0.823125,0.353832,0.047493,0.786259,0.987714,0.907822,0.726669,0.466336,0.00232244,0.525169,0.402374,0.750882,0.964478,0.297723,0.931202,0.692238,0.813632,0.979486,0.99782,0.976675,0.644199,0.137305,0.00743854,0.748614,0.815013,0.689733,0.408543,0.71641,0.0637926,0.852382,0.876666,0.170033,0.108116,0.611819,0.744482,0.872569,0.507018,0.225248,0.180147,0.781022,0.869119,0.762804,0.809276,0.258308,|0.00289309,0.523085,0.00575018,0.856124,0.641206,0.747669,0.149858,0.470285,0.190292,0.573801,0.0834275,0.251894,0.856166,0.188699,0.581905,0.932047,0.321082,0.106216,0.480993,0.363455,0.48412,0.599675,0.0593353,0.895639,0.413543,0.944391,0.775796,0.612369,0.434077,0.130336,0.565815,0.259794,0.60925,0.911192,0.469053,0.125448,0.50476,0.428518,0.74728,0.583371,0.380507,0.495372,0.356326,0.295054,0.573107,0.0769071,0.438214,0.0394155,0.441003,0.49443,0.713948,0.156052,0.0632998,0.191356,0.914454,0.0482029,0.451258,0.917218,0.342282,0.760069,0.659339,0.137243,0.948655,0.899148,0.19134,0.491474,0.5107,0.522337,0.145377,0.536449,0.341439,0.44407,0.598834,0.120003,0.717808,0.685677,0.260816,0.211461,0.727111,0.41996,0.782287,0.776671,0.3539,0.98552,0.290025,0.138422,0.874133,0.781375,0.0793976,0.45006,0.941025,0.764346,0.648374,0.42586,0.275368,0.324867,0.196378,0.406587,0.979681,0.701629,0.637826,0.338179,0.870751,0.340587,0.91542,0.0354353,0.017657,0.937178,0.15998,0.423033,0.977545,0.859201,0.387884,0.950979,0.92181,0.178383,0.156668,0.617401,0.758267,0.477497,0.22057,0.29623,0.0214926,0.286802,0.24516,0.799623,0.643298,0.48006,0.907796,0.523105,0.0746214,0.722946,0.923609,0.918126,0.166809,0.709933,0.755062,0.0859632,0.54542,0.41059,0.692013,0.95354,0.288682,0.42053,0.0750408,0.618179,0.697017,0.719935,0.584033,0.757615,0.705178,0.649749,0.391566,0.269014,0.393107,0.811817,0.0760214,0.794035,0.929209,0.2167,0.58802,0.447379,0.996359,0.833165,0.97562,0.125864,0.753561,0.7063,0.616816,0.465126,0.5521,0.974648,0.0522162,0.827678,0.820118,0.784963,0.987443,0.125766,0.318421,0.989059,0.3907,0.85619,0.0271814,0.740312,0.748226,0.465787,0.184159,0.0725856,0.261388,0.649086,0.827491,0.11158,0.925652,0.0438541,0.0373595,0.788694,0.163719,0.584717,0.626986,0.640398,0.174075,0.463592,0.228726,0.51157,0.988519,0.805722,0.186375,0.410608,0.0840372,0.898103,0.166233,0.971504,0.370505,0.255637,0.832871,0.613212,0.984414,0.525354,0.263448,0.987477,0.772025,0.164537,0.744914,0.595676,0.707033,0.119927,0.625773,0.956678,0.451258,0.553252,0.229642,0.632157,0.319303,0.222676,0.185254,0.587388,0.706049,0.951045,0.794295,0.445557,0.923572,0.035376,0.281295,0.674649,0.985677,0.383885,0.450803,0.563656,0.294186,0.422919,0.137112,0.62734,0.0618187,0.992601,0.474397,0.178465,0.0305173,0.827285,0.393562,0.137251,0.35296,0.452105,0.461861,0.249562,0.124431,0.416102,0.353424,0.0385624,0.915329,0.875653,0.983709,0.0540909,0.00804067,0.108378,0.458576,0.998023,0.0206696,0.611802,0.133089,0.249873,0.430316,0.253467,0.781713,0.174586,0.261901,0.315066,0.647502,0.985389,0.176469,0.418308,0.417192,0.0338115,0.607505,0.0624123,0.510386,0.0705287,0.964315,0.263694,0.845302,0.0377129,0.198093,0.644536,0.0664437,0.0456337,0.669407,0.335539,0.528551,0.668874,0.531911,0.116306,0.813571,0.548199,0.856907,0.877481,0.623574,0.425257,0.432754,0.261882,0.799866,0.0544496,0.161377,0.255988,0.514916,0.104514,0.196923,0.203218,0.285435,0.49592,0.505544,0.576972,0.537439,0.707118,0.418692,0.970707,0.380742,0.0304336,0.767745,0.600182,0.914568,0.577818,0.241284,0.238322,0.987299,0.181002,0.113819,0.397762,0.194434,0.567437,0.527811,0.791426,0.161711,0.605631,0.270321,0.444799,0.511824,0.687279,0.0154176,0.153334,0.154817,0.268698,0.938151,0.736577,0.513681,0.844037,0.638699,0.0988643,0.317396,0.987351,0.613608,0.879244,0.65488,0.319196,0.662626,0.30739,0.76636,0.758884,0.683188,0.43914,0.133255,0.27118,0.0653237,0.425027,0.431174,0.350552,0.115471,0.600948,0.501897,0.955492,0.429128,0.872182,0.427042,0.999084,0.338751,0.0514641,0.168652,0.862356,0.364746,0.549155,0.468945,0.206393,0.128622,0.0161744,0.745917,0.442313,0.340211,0.427508,0.809618,0.0434133,0.166388,0.919806,0.451035,0.203755,0.39378,0.207443,0.417296,0.822584,0.660847,0.37264,0.15696,0.5778,0.211913,0.0914357,0.166867,0.80713,0.241794,0.613538,0.247208,0.204411,0.887794,0.179116,0.759005,0.513097,0.492056,0.151345,0.0774454,0.329904,0.0847713,0.073227,0.0226527,0.0131367,0.48221,0.77928,0.742956,0.129402,0.076663,0.500022,0.694509,0.153305,0.431921,0.637602,0.346244,0.266894,0.508443,0.599558,0.860236,0.499399,0.785848,0.643788,0.268586,0.47303,0.967707,0.162432,0.965662,0.113669,0.110436,0.409862,0.208162,0.64549,0.483937,0.0620871,0.516056,0.357099,0.895778,0.214189,0.774125,0.470416,0.224142,0.0631499,0.587432,0.293253,0.266166,0.213629,0.999483,0.833534,0.203365,0.281756,0.523742,0.348529,0.508368,0.228717,0.090876,0.634485,0.954129,0.306465,0.477379,0.276109,0.062719,0.480121,0.332165,0.550839,0.587132,0.409232,0.882985,0.567149,0.748498,0.217616,0.845886,0.405817,0.188846,0.510651,0.857897,0.130297,0.323621,0.424851,0.484757,0.586661,0.861581,0.0875877,0.118079,0.00227243,0.105266,0.979411,0.499761,0.486132,0.730532,0.295761,0.895236,0.934655,0.772632,0.51939,0.969136,0.940912,0.0694068,0.266507,0.787815,0.84723,0.319024,0.771903,0.347431,0.0858621,0.228423,0.311051,0.891286,0.978914,0.514525,0.419134,0.309887,0.719055,0.412266,0.388024,0.862392,0.502922,0.614374,0.66344,0.0201407,0.798082,0.942623,0.262394,0.501809,0.00779927,0.442659,0.262431,0.748278,0.752819,0.745045,0.308355,0.0721785,0.177437,0.300144,0.234811,0.556541,0.68722,0.191811,0.911804,0.439433,0.201058,0.303976,0.28747,0.85852,0.286959,0.114262,0.415446,0.323288,0.935417,0.854779,0.692342,0.788116,0.52737,0.168649,0.977926,0.146835,0.368267,0.818761,0.126496,0.588155,0.459382,0.7552,0.135848,0.431688,0.926055,0.358032,0.535341,0.235354,0.571853,0.530842,0.88411,0.0627875,0.83235,0.673658,0.716269,0.0589555,0.441039,0.166293,0.0757405,0.363271,0.780408,0.239839,0.666995,0.15234,0.133696,0.193716,0.92575,0.16029,0.142651,0.302007,0.369975,0.600477,0.349216,0.0101637,0.801348,0.747069,0.887514,0.507316,0.57451,0.160006,0.557078,0.774802,0.302563,0.885,0.871909,0.706045,0.649924,0.28586,0.690899,0.968291,0.992208,0.60198,0.819554,0.150986,0.21592,0.321377,0.270405,0.151585,0.457244,0.525768,0.34207,0.184352,0.207895,0.651784,0.0446376,0.406376,0.0889809,0.545894,0.058426,0.744922,0.874422,0.979726,0.557515,0.737031,0.590958,0.140069,0.496532,0.0599238,0.299955,0.723744,0.695804,0.75645,0.850594,0.88074,0.161682,0.690653,0.551504,0.195508,0.379661,0.778812,0.111895,0.285686,0.929389,0.834338,0.657351,0.169699,0.376492,0.143655,0.0125557,0.818281,0.833563,0.36008,0.0857685,0.298864,0.19389,0.3292,0.0480973,0.375501,0.207459,0.871567,0.897052,0.424444,0.898234,0.853408,0.0243939,0.743508,0.412261,0.0489083,0.481586,0.662209,0.0889792,0.994904,0.258383,0.985881,0.729846,0.0678622,0.876961,0.366104,0.0317426,0.438511,0.671464,0.803275,0.678611,0.837353,0.695542,0.896329,0.259029,0.817493,0.82703,0.758993,0.762621,0.7066,0.229854,0.339187,0.742125,0.306862,0.906416,0.51056,0.586125,0.824059,0.255849,0.871198,0.426274,0.964545,0.343867,0.741995,0.664789,0.499628,0.39323,0.114146,0.90959,0.422421,0.255326,0.468836,0.306294,0.84542,0.362883,0.576345,0.78131,0.527302,0.67458,0.466927,0.342784,0.992364,0.737039,0.71375,0.481391,0.264915,0.207488,0.584131,0.737346,0.841474,0.479983,0.881247,0.550578,0.83072,0.165132,0.906134,0.361582,0.99873,0.571006,0.913062,0.169844,0.061165,0.574112,0.0208958,0.875059,0.111916,0.563465,0.289572,0.404795,0.866019,0.819902,0.346726,0.412566,0.613285,0.594606,0.551077,0.472563,0.437657,0.873172,0.110951,0.0803859,0.378745,0.0461674,0.972719,0.293509,0.994676,0.142382,0.0359643,0.383333,0.91979,0.491093,0.502668,0.903096,0.711288,0.436802,0.562747,0.276607,0.204659,0.108948,0.790902,0.162138,0.27185,0.622812,0.758057,0.987365,0.0872523,0.667087,0.5766,0.506643,0.826932,0.818653,0.940183,0.402806,0.0479699,0.854519,0.371194,0.09624,0.0379155,0.660222,0.950394,0.333005,0.0159817,0.509225,0.973168,0.245264,0.0123802,0.142082,0.76037,0.38021,0.193387,0.172334,0.235738,0.745924,0.961323,0.901587,0.100991,0.174387,0.435266,0.358218,0.251748,0.639928,0.728065,0.890485,0.608298,0.350613,0.447096,0.221446,0.213335,0.363588,0.873986,0.426892,0.643119,0.688306,0.785759,0.282753,0.734832,0.52307,0.122704,0.6801,0.0397408,0.238315,0.969997,0.978307,0.0687057,0.72684,0.80321,0.903391,0.0884487,0.621356,0.91279,0.83876,0.788239,0.444286,0.475903,0.73681,0.155523,0.285311,0.731719,0.378868,0.189751,0.955712,0.427932,0.491361,0.645954,0.571575,0.148093,0.508912,0.919749,0.183756,0.939196,0.369472,0.955644,0.620812,0.278495,0.752545,0.840129,0.657887,0.580027,0.436176,0.114482,0.572165,0.895562,0.873423,0.674554,0.112073,0.209185,0.0885087,0.949037,0.647184,0.583542,0.65219,0.45472,0.328037,0.849778,0.389191,0.907646,0.856087,0.942856,0.507889,0.916914,0.589548,0.599011,0.476237,0.993011,0.342571,0.427867,0.420888,0.820473,0.623971,0.138685,0.84067,0.16017,0.224045,0.211955,0.793477,0.467499,0.206459,0.193711,0.167625,0.412472,0.891794,0.0839537,0.434447,0.481052,0.614623,0.0675551,0.452501,0.124849,0.404707,0.652453,0.538029,0.0133365,0.882799,0.203224,0.744136,0.477096,0.0329563,0.612058,0.282375,0.146388,0.110146,0.879401,0.87903,0.182171,0.481961,0.312313,0.241831,0.159079,0.376495,0.00185788,0.329959,0.156647,0.384256,|0.552857,0.608931,0.0131868,0.497454,0.906404,0.537289,0.943262,0.242999,0.33419,0.781015,0.00861955,0.551874,0.721845,0.662878,0.577856,0.828664,0.978866,0.399127,0.626494,0.844264,0.445442,0.877133,0.907579,0.804001,0.585567,0.910256,0.878998,0.254348,0.302181,0.778181,0.820036,0.106984,0.243635,0.363179,0.541766,0.358806,0.884045,0.141385,0.783372,0.877117,0.103837,0.424482,0.913384,0.438185,0.522108,0.948673,0.703706,0.738983,0.00679588,0.96106,0.84791,0.56506,0.713482,0.0517723,0.309211,0.58121,0.149867,0.499675,0.578301,0.52032,0.621211,0.423954,0.437717,0.172406,0.134165,0.238316,0.900749,0.466277,0.0199063,0.243345,0.487052,0.844832,0.90292,0.50637,0.887344,0.00707197,0.467893,0.148879,0.776724,0.371665,0.639775,0.641546,0.512893,0.752482,0.604876,0.651849,0.565512,0.81499,0.75453,0.452982,0.0669344,0.497481,0.733313,0.385124,0.807558,0.981126,0.678561,0.569182,0.549652,0.515629,0.494124,0.00331104,0.943535,0.813883,0.12356,0.840369,0.579972,0.898191,0.924412,0.655386,0.950443,0.915794,0.84913,0.688147,0.895348,0.998535,0.610718,0.483758,0.376481,0.410158,0.586158,0.420084,0.386186,0.235449,0.171843,0.12722,0.917186,0.441832,0.620076,0.138313,0.970706,0.366896,0.243691,0.817633,0.819175,0.163167,0.816896,0.669274,0.331337,0.55215,0.604665,0.150813,0.457498,0.439432,0.165947,0.869827,0.603861,0.919533,0.962101,0.805829,0.837553,0.256838,0.498178,0.473936,0.653498,0.606554,0.541316,0.151073,0.366809,0.142887,0.138267,0.235494,0.947054,0.150647,0.734097,0.0474977,0.400746,0.459761,0.825497,0.206394,0.658582,0.259767,0.53824,0.489357,0.108083,0.989765,0.164192,0.0512299,0.497329,0.726027,0.965535,0.886368,0.768224,0.588521,0.981215,0.979018,0.0947736,0.916264,0.566328,0.81559,0.671321,0.457428,0.453521,0.507414,0.31006,0.31366,0.156993,0.868966,0.354903,0.781902,0.199734,0.201507,0.855261,0.109777,0.379138,0.947983,0.481011,0.66544,0.585735,0.871535,0.668643,0.394138,0.594807,0.434786,0.206811,0.743435,0.893089,0.207033,0.878585,0.263554,0.196284,0.438179,0.445227,0.118654,0.609747,0.427573,0.452225,0.453653,0.437165,0.643693,0.908062,0.63259,0.59313,0.79654,0.0320508,0.339057,0.86049,0.541625,0.213767,0.0310495,0.887767,0.157465,0.190722,0.0543631,0.250523,0.0947502,0.229864,0.0518801,0.919019,0.960714,0.104468,0.115444,0.750921,0.407556,0.456031,0.549799,0.170716,0.74688,0.380641,0.62796,0.195673,0.876728,0.117205,0.397192,0.205243,0.120947,0.0318614,0.300712,0.978015,0.628687,0.0201115,0.469839,0.880687,0.865118,0.324074,0.948789,0.201125,0.297102,0.950062,0.157339,0.36409,0.665748,0.233029,0.728708,0.00197506,0.0997513,0.75188,0.72497,0.537743,0.636595,0.275053,0.61789,0.948379,0.324355,0.82327,0.834418,0.217931,0.491364,0.99983,0.956278,0.505152,0.389413,0.239034,0.902482,0.448833,0.597891,0.651702,0.260023,0.915919,0.394292,0.503793,0.746171,0.337813,0.0958824,0.416467,0.694623,0.238139,0.971879,0.565396,0.3449,0.683784,0.160431,0.769459,0.240438,0.208329,0.308352,0.0963796,0.170111,0.819145,0.911699,0.741182,0.872034,0.270203,0.894602,0.516068,0.267081,0.37549,0.754975,0.475901,0.108137,0.998913,0.609473,0.668599,0.94445,0.55834,0.0467611,0.85801,0.583459,0.177375,0.519809,0.0177534,0.141875,0.397566,0.938558,0.579128,0.809599,0.364814,0.69189,0.518692,0.581193,0.423242,0.585616,0.498855,0.37168,0.118639,0.868156,0.59604,0.0193056,0.664338,0.264736,0.200706,0.0557841,0.795688,0.623029,0.988619,0.812698,0.0642828,0.739054,0.280652,0.903471,0.811708,0.0250204,0.895174,0.102914,0.592607,0.767286,0.304501,0.404114,0.676598,0.970177,0.279073,0.171089,0.725693,0.93477,0.544349,0.617667,0.184441,0.703521,0.637636,0.654475,0.117173,0.0356081,0.426814,0.625388,0.168465,0.550114,0.199995,0.0150989,0.492656,0.513213,0.491294,0.385238,0.839395,0.814203,0.203962,0.919653,0.0717741,0.916331,0.283383,0.430771,0.344792,0.48312,0.311783,0.997317,0.225674,0.233698,0.532431,0.473375,0.951462,0.90598,0.693549,0.17375,0.460364,0.181148,0.0362242,0.954057,0.871379,0.753415,0.607315,0.00422555,0.76743,0.0490055,0.644886,0.748289,0.288828,0.603332,0.999358,0.443931,0.109281,0.572137,0.473143,0.719341,0.580367,0.944728,0.735915,0.599862,0.514345,0.613987,0.0847631,0.367531,0.395192,0.166862,0.77202,0.640358,0.46522,0.654996,0.361148,0.0553545,0.867707,0.0487524,0.366352,0.781063,0.583007,0.703848,0.704905,0.484017,0.054499,0.469058,0.172981,0.244977,0.322571,0.124696,0.250751,0.229383,0.63619,0.142705,0.8894,0.424601,0.814034,0.713902,0.863,0.601981,0.12307,0.17109,0.0545466,0.0865144,0.778137,0.819364,0.311579,0.207927,0.801711,0.713196,0.607755,0.55607,0.158276,0.149869,0.65303,0.104317,0.515523,0.870299,0.987665,0.598156,0.306336,0.578617,0.855873,0.396401,0.292737,0.833849,0.887966,0.560644,0.521942,0.856556,0.147262,0.0856587,0.149768,0.490674,0.621135,0.92223,0.298894,0.244946,0.342839,0.250444,0.608397,0.270535,0.853107,0.0457791,0.567415,0.0920002,0.907472,0.00144529,0.300017,0.490666,0.625333,0.870562,0.501111,0.0645658,0.726839,0.884227,0.0592755,0.659477,0.776175,0.420555,0.426087,0.440886,0.220322,0.478931,0.0178249,0.603572,0.26664,0.454816,0.62791,0.0273809,0.216247,0.102348,0.324114,0.430791,0.365563,0.804456,0.406839,0.257545,0.154152,0.933811,0.37761,0.355867,0.587412,0.949151,0.642387,0.61878,0.433533,0.794862,0.403948,0.0813313,0.0414596,0.00170588,0.103458,0.453811,0.688887,0.450108,0.155547,0.978916,0.161337,0.0698707,0.226698,0.685409,0.0319818,0.0634487,0.154003,0.357335,0.382595,0.292239,0.628475,0.214742,0.455658,0.366271,0.271928,0.144822,0.410612,0.513755,0.0629124,0.799519,0.0826519,0.506615,0.402832,0.195287,0.927316,0.497675,0.797426,0.834719,0.424232,0.98507,0.775744,0.484613,0.934393,0.113819,0.0773844,0.844487,0.377173,0.0967155,0.882936,0.81161,0.129628,0.0754418,0.703662,0.699252,0.989477,0.565322,0.1809,0.0878519,0.0370579,0.608113,0.792111,0.607774,0.801322,0.330992,0.570662,0.781718,0.847744,0.210187,0.0624797,0.871052,0.978122,0.513809,0.946799,0.511938,0.33811,0.336333,0.553234,0.695929,0.605253,0.162898,0.20405,0.718959,0.303459,0.960608,0.0364851,0.269766,0.100097,0.590245,0.959379,0.630377,0.642415,0.355977,0.323383,0.38112,0.376581,0.555281,0.728781,0.601895,0.78812,0.202801,0.52293,0.962816,0.616515,0.0581448,0.671849,0.16138,0.91091,0.474759,0.87755,0.459035,0.595137,0.347159,0.0994551,0.770562,0.00625896,0.265842,0.252624,0.652403,0.401712,0.821721,0.399668,0.869059,0.911226,0.895442,0.290639,0.254722,0.394756,0.740302,0.916652,0.424064,0.651781,0.776353,0.843182,0.457919,0.271381,0.0989679,0.994694,0.420322,0.469512,0.200572,0.4246,0.0853261,0.472734,0.204319,0.69225,0.273472,0.718709,0.730761,0.206706,0.701668,0.876875,0.520029,0.653946,0.0925996,0.831823,0.327961,0.465891,0.460261,0.628165,0.464534,0.158296,0.549782,0.864985,0.284292,0.243306,0.616953,0.773386,0.730806,0.454269,0.0692651,0.917997,0.764486,0.923847,0.199401,0.101575,0.350726,0.230673,0.900253,0.222703,0.394219,0.149308,0.839087,0.508391,0.769754,0.323013,0.0901318,0.434784,0.877808,0.466044,0.320038,0.605303,0.945678,0.454701,0.114904,0.786817,0.00597447,0.928726,0.747759,0.181682,0.779366,7.12872e-05,0.604577,0.290493,0.477904,0.369133,0.854448,0.775121,0.017199,0.792412,0.680858,0.205777,0.0452165,0.722291,0.239194,0.481858,0.694162,0.885832,0.661295,0.44434,0.269603,0.98137,0.28803,0.166856,0.831471,0.467997,0.00549734,0.352757,0.625926,0.660725,0.752159,0.200101,0.619892,0.512977,0.243552,0.112764,0.483686,0.772941,0.101908,0.205708,0.733896,0.944892,0.525723,0.0164821,0.928334,0.865648,0.919128,0.478593,0.459101,0.524812,0.152839,0.386569,0.231152,0.21942,0.156921,0.516477,0.618594,0.54798,0.533072,0.861638,0.140637,0.257796,0.697781,0.56399,0.899004,0.837536,0.290246,0.15367,0.19171,0.605593,0.555733,0.795666,0.89243,0.993382,0.949517,0.305784,0.112093,0.556024,0.0810369,0.512798,0.129332,0.446345,0.248424,0.702028,0.120828,0.326026,0.172965,0.321606,0.164742,0.251871,0.879566,0.0489519,0.17645,0.985125,0.309302,0.194968,0.555773,0.917834,0.609738,0.479297,0.852545,0.777199,0.290123,0.00533038,0.591148,0.054322,0.400481,0.788996,0.988883,0.088974,0.678617,0.238981,0.559398,0.371554,0.320498,0.137702,0.781561,0.476964,0.251789,0.373339,0.0487707,0.631475,0.290369,0.393912,0.766186,0.433296,0.131604,0.318659,0.524268,0.229539,0.531285,0.421972,0.85794,0.250704,0.430396,0.348435,0.246221,0.405157,0.633999,0.524576,0.16911,0.439422,0.711039,0.493518,0.158411,0.706764,0.483202,0.242661,0.636535,0.0939315,0.235867,0.299993,0.281791,0.247765,0.887552,0.599141,0.927969,0.180487,0.341306,0.45303,0.155274,0.715477,0.176698,0.882597,0.63512,0.834964,0.93309,0.443275,0.131587,0.972719,0.143452,0.523494,0.398976,0.935344,0.625077,0.309646,0.712891,0.788486,0.897921,0.679751,0.0938859,0.781101,0.92153,0.243095,0.947157,0.938575,0.179268,0.442611,0.0289865,0.495454,0.789619,0.781479,0.351937,0.857398,0.894836,0.271791,0.281095,0.0834506,0.533754,0.130028,0.620617,0.00507116,0.00190526,0.986419,0.602137,0.455843,0.59893,0.260993,0.978609,0.239847,0.0447539,0.656226,0.394827,0.0883802,0.892407,0.322457,0.466464,0.619387,0.892652,0.647235,0.0847601,|0.542172,0.317846,0.892991,0.256643,0.659996,0.0016306,0.997478,0.538053,0.0233861,0.71545,0.0168349,0.170618,0.718675,0.75769,0.546231,0.694769,0.422736,0.487571,0.976557,0.325517,0.967877,0.106393,0.791538,0.946775,0.47068,0.978661,0.985799,0.109733,0.859305,0.888327,0.797797,0.850634,0.338751,0.480731,0.559017,0.41942,0.561599,0.612001,0.302367,0.0143528,0.0418546,0.458445,0.215466,0.412814,0.518945,0.00184757,0.393596,0.667388,0.94603,0.3005,0.735441,0.946969,0.427316,0.28528,0.827865,0.975205,0.714721,0.337603,0.420276,0.455253,0.858542,0.277032,0.622036,0.797081,0.972082,0.384541,0.390573,0.351268,0.684853,0.672321,0.371231,0.373443,0.312091,0.771577,0.326998,0.150602,0.613952,0.327817,0.0491071,0.163619,0.378943,0.448795,0.357579,0.592662,0.603979,0.881784,0.120643,0.358849,0.410763,0.131695,0.448695,0.0252996,0.634051,0.209961,0.97576,0.640257,0.333094,0.191519,0.97705,0.122321,0.69103,0.453707,0.0999755,0.654363,0.335825,0.479269,0.00645703,0.774022,0.362062,0.606671,0.481193,0.26258,0.715388,0.565694,0.0710002,0.259065,0.316203,0.630539,0.691341,0.507181,0.573497,0.0473647,0.204067,0.475788,0.555423,0.0973725,0.189821,0.910653,0.400713,0.652841,0.489942,0.763954,0.975187,0.371066,0.260257,0.0211434,0.37424,0.498384,0.468588,0.848603,0.543968,0.641229,0.51861,0.396144,0.653874,0.405557,0.773511,0.29969,0.0722228,0.0173936,0.347353,0.873331,0.445526,0.902529,0.367093,0.135305,0.171605,0.211398,0.693368,0.78328,0.980691,0.155949,0.509876,0.719822,0.80305,0.558386,0.0840352,0.180415,0.488222,0.442605,0.477641,0.657843,0.157316,0.959425,0.556921,0.0766158,0.250926,0.165003,0.605246,0.877318,0.24056,0.776669,0.0539843,0.728862,0.249865,0.126337,0.844287,0.34378,0.0876286,0.442575,0.641955,0.743361,0.0120261,0.826219,0.355831,0.152435,0.0939657,0.763,0.138471,0.359878,0.288399,0.93392,0.0980287,0.616527,0.444743,0.173184,0.082972,0.423513,0.731916,0.99781,0.60134,0.0692368,0.292171,0.464511,0.806043,0.800763,0.446676,0.834735,0.497689,0.612491,0.611363,0.475649,0.954986,0.784922,0.268358,0.0823682,0.356113,0.228979,0.999435,0.468724,0.64669,0.113847,0.656774,0.92059,0.0551329,0.93884,0.205397,0.247593,0.0443885,0.149889,0.279595,0.0303983,0.0741955,0.45273,0.4494,0.910383,0.867213,0.0885183,0.897278,0.261128,0.533236,0.68858,0.0372284,0.423001,0.217587,0.0868354,0.852247,0.369119,0.613156,0.2874,0.0311649,0.961442,0.456521,0.436539,0.12554,0.59186,0.487394,0.105774,0.351831,0.381743,0.921229,0.665475,0.936603,0.0954512,0.96546,0.405931,0.883375,0.780957,0.597968,0.68499,0.989537,0.0418333,0.256175,0.499717,0.745829,0.775003,0.201205,0.821704,0.151397,0.201893,0.921998,0.588036,0.025326,0.500409,0.718391,0.157723,0.099021,0.705766,0.0869861,0.326169,0.293583,0.503724,0.316322,0.292854,0.0746508,0.378629,0.319707,0.642181,0.188309,0.616806,0.725609,0.0915764,0.226393,0.515524,0.508901,0.2276,0.925676,0.595829,0.672568,0.0334301,0.110161,0.71918,0.486396,0.398625,0.175008,0.722054,0.309093,0.0329714,0.800365,0.564189,0.955771,0.746743,0.1446,0.433063,0.44607,0.837648,0.0710936,0.967246,0.865393,0.425902,0.679618,0.813388,0.990573,0.476657,0.10779,0.910685,0.656292,0.541237,0.721373,0.314245,0.772777,0.318214,0.904622,0.238009,0.732691,0.300844,0.854494,0.663329,0.150909,0.508479,0.42306,0.19166,0.131562,0.638509,0.868692,0.275589,0.0177531,0.89046,0.728618,0.580015,0.354987,0.63825,0.417035,0.0599433,0.0347461,0.460183,0.953907,0.600768,0.344749,0.0858835,0.048947,0.356112,0.88904,0.264219,0.042731,0.415381,0.641485,0.202822,0.489721,0.555545,0.219743,0.579042,0.822315,0.0308228,0.717377,0.516626,0.572123,0.860611,0.599341,0.822608,0.430787,0.812726,0.128888,0.939001,0.343953,0.0168066,0.48573,0.750795,0.365358,0.626079,0.670921,0.984586,0.426638,0.330964,0.703453,0.638657,0.935023,0.512785,0.00959229,0.767809,0.0251877,0.22368,0.196808,0.230773,0.551151,0.297271,0.572164,0.911764,0.209604,0.410031,0.580157,0.533636,0.0607116,0.331682,0.916633,0.654668,0.474804,0.454921,0.755688,0.153989,0.0862846,0.40578,0.102379,0.4429,0.473614,0.578504,0.953576,0.815507,0.966676,0.539666,0.613186,0.875814,0.730456,0.261566,0.935645,0.973031,0.692092,0.652738,0.763092,0.0452272,0.626821,0.570997,0.152225,0.526353,0.35289,0.0536941,0.446506,0.184589,0.705164,0.99812,0.443796,0.505352,0.253783,0.492429,0.488329,0.358654,0.982998,0.741957,0.777585,0.997821,0.266714,0.656064,0.80454,0.588288,0.628334,0.384024,0.54699,0.479406,0.79989,0.999289,0.831995,0.177363,0.572485,0.83154,0.421534,0.139151,0.198784,0.906698,0.173911,0.319982,0.230544,0.555922,0.999384,0.0628604,0.851315,0.249269,0.37637,0.0791493,0.620063,0.039282,0.259605,0.240596,0.414923,0.565154,0.245169,0.813635,0.452941,0.260178,0.369897,0.511768,0.460027,0.39921,0.612686,0.63201,0.771562,0.249285,0.341728,0.280575,0.0424583,0.668606,0.557039,0.897302,0.402568,0.419762,0.999016,0.305436,0.143652,0.574238,0.468286,0.103829,0.538668,0.273792,0.203363,0.158062,0.328045,0.0884238,0.650159,0.930324,0.977117,0.158324,0.800152,0.644451,0.702759,0.309828,0.511742,0.389193,0.681932,0.251405,0.659708,0.323355,0.266749,0.967264,0.754367,0.260663,0.812788,0.1654,0.787073,0.397132,0.588714,0.46343,0.399597,0.627595,0.202585,0.991656,0.514183,0.289618,0.574123,0.108862,0.188193,0.0721648,0.435299,0.198042,0.587285,0.3152,0.614718,0.47725,0.262473,0.0442891,0.72867,0.48735,0.282826,0.29423,0.190763,0.87453,0.374139,0.586772,0.87447,0.280352,0.425089,0.384827,0.880276,0.8043,0.180994,0.738668,0.787745,0.986627,0.170613,0.145482,0.326589,0.269549,0.413817,0.64302,0.980278,0.68418,0.830517,0.67772,0.978689,0.478247,0.836563,0.932794,0.319413,0.260189,0.893788,0.38218,0.743932,0.100504,0.0133341,0.377019,0.791669,0.836852,0.0144156,0.676101,0.864439,0.609117,0.496793,0.401237,0.614284,0.997692,0.541542,0.863481,0.416835,0.767585,0.215745,0.421051,0.795481,0.0213699,0.0713739,0.987891,0.219206,0.145564,0.224564,0.674316,0.590566,0.0104538,0.00602424,0.315557,0.380187,0.997118,0.582886,0.403455,0.0886936,0.0307082,0.577484,0.426976,0.992569,0.0782665,0.677421,0.876491,0.310453,0.9877,0.098121,0.609904,0.936286,0.275628,0.0391051,0.630947,0.00349545,0.153321,0.650344,0.183027,0.579935,0.783828,0.686556,0.194552,0.013719,0.642826,0.856813,0.0185793,0.23963,0.66772,0.549705,0.103038,0.829894,0.874602,0.142235,0.0411261,0.89617,0.190618,0.494006,0.759094,0.892866,0.0254241,0.696173,0.4231,0.847891,0.787957,0.477443,0.336468,0.333719,0.553125,0.972028,0.991912,0.479298,0.952088,0.985776,0.974104,0.782018,0.122652,0.348764,0.982934,0.167047,0.625452,0.192364,0.217845,0.290326,0.140468,0.358527,0.712071,0.947358,0.716318,0.748912,0.501842,0.253833,0.973705,0.842844,0.670787,0.818659,0.429819,0.074935,0.316738,0.214506,0.707409,0.197628,0.478103,0.32833,0.159375,0.0500395,0.316738,0.86686,0.39922,0.600916,0.547063,0.281769,0.559092,0.886011,0.181117,0.715408,0.647711,0.0700833,0.0771233,0.925348,0.764937,0.235969,0.826326,0.46241,0.304154,0.0369852,0.245565,0.785991,0.168728,0.00181925,0.625045,0.0435511,0.96456,0.527207,0.731359,0.790632,0.572972,0.727371,0.840658,0.36007,0.169871,0.258569,0.753038,0.194295,0.86417,0.289322,0.931069,0.408926,0.312195,0.144598,0.913265,0.181469,0.576579,0.192862,0.479607,0.675778,0.443742,0.101095,0.389456,0.58285,0.994242,0.235513,0.785455,0.904783,0.0351582,0.0934392,0.327179,0.970029,0.833955,0.317645,0.562526,0.635839,0.154473,0.548645,0.186455,0.276072,0.335525,0.750112,0.686704,0.297465,0.808326,0.822083,0.655274,0.367938,0.661984,0.373144,0.526085,0.172429,0.718541,0.0927714,0.500197,0.588926,0.26995,0.620142,0.968872,0.34737,0.171267,0.0472243,0.769624,0.0200543,0.402571,0.0999869,0.961117,0.21513,0.0524172,0.325325,0.93691,0.889452,0.681141,0.251891,0.333507,0.110643,0.682914,0.679333,0.201449,0.175338,0.935504,0.287696,0.13815,0.809956,0.516407,0.0178518,0.666707,0.0956302,0.963604,0.804679,0.338006,0.331046,0.421465,0.73577,0.997127,0.201145,0.247254,0.906132,0.821988,0.254128,0.940202,0.746675,0.22067,0.317856,0.633398,0.700036,0.257476,0.739918,0.184406,0.821561,0.150793,0.520425,0.272907,0.598841,0.0246834,0.640521,0.602073,0.276888,0.515151,0.370015,0.678161,0.741475,0.754964,0.500677,0.635996,0.00613886,0.321262,0.653002,0.403886,0.302777,0.0716816,0.225378,0.0303536,0.656393,0.495729,0.587923,0.278031,0.960055,0.527818,0.336303,0.595608,0.962702,0.187884,0.771957,0.209356,0.332888,0.025956,0.339185,0.107208,0.900381,0.460235,0.827065,0.208575,0.523713,0.432999,0.894551,0.294754,0.415051,0.372402,0.589732,0.588674,0.286416,0.623452,0.919049,0.494737,0.115123,0.384196,0.788794,0.0164711,0.269835,0.809174,0.0647801,0.491064,0.477118,0.0174981,0.267794,0.407248,0.093954,0.283093,0.151825,0.739238,0.761804,0.349307,0.0981186,0.462864,0.535658,0.526542,0.769811,0.586408,0.105335,0.376243,0.130214,0.0416219,0.177354,0.835173,0.572475,0.684348,0.146214,0.308369,0.410268,0.961855,0.702436,0.135578,0.074347,0.900799,0.634717,0.0475677,0.983289,0.575847,0.890144,0.464931,0.72481,0.185871,0.357641,0.284405,0.0250296,0.939605,0.526412,0.2496,0.716502,0.549074,0.951384,0.440916,|0.0689986,0.169215,0.192654,0.0362566,0.262774,0.740277,0.0124023,0.194693,0.649015,0.577545,0.217555,0.175096,0.588635,0.652072,0.403739,0.998585,0.402187,0.501108,0.604704,0.0521504,0.539696,0.937332,0.658422,0.216888,0.369617,0.639216,0.270038,0.625777,0.839102,0.150963,0.34705,0.132995,0.0883195,0.667766,0.59787,0.596999,0.873629,0.882761,0.884292,0.882288,0.611801,0.982533,0.0936576,0.426281,0.835405,0.625062,0.928954,0.0747725,0.366807,0.837636,0.229636,0.672452,0.282709,0.277133,0.848129,0.844561,0.425676,0.853446,0.249518,0.406965,0.946327,0.338553,0.931087,0.678644,0.124152,0.461134,0.649652,0.0218413,0.842365,0.746405,0.228008,0.843346,0.247679,0.707132,0.364451,0.173753,0.993234,0.183085,0.462943,0.629693,0.980987,0.787723,0.981326,0.705899,0.0812913,0.707228,0.354606,0.383574,0.645725,0.9417,0.775733,0.684463,0.513166,0.432027,0.761967,0.36805,0.708652,0.575865,0.483231,0.85643,0.971302,0.495295,0.687409,0.180329,0.360267,0.603089,0.0619662,0.299486,0.80368,0.985963,0.727399,0.100654,0.113544,0.233878,0.787414,0.872493,0.671194,0.330862,0.993225,0.32998,0.945958,0.742871,0.346767,0.57006,0.719682,0.212555,0.952161,0.562575,0.92291,0.0730902,0.938574,0.817519,0.28337,0.552162,0.755961,0.290304,0.758333,0.0564144,0.674307,0.492038,0.52113,0.951306,0.543995,0.63672,0.683201,0.900742,0.812736,0.0734562,0.245042,0.00829536,0.340579,0.316293,0.0378482,0.243164,0.967683,0.853217,0.985329,0.365286,0.325772,0.437846,0.184287,0.761776,0.976146,0.862018,0.843567,0.38715,0.243026,0.54991,0.875076,0.0102584,0.52482,0.0857173,0.789836,0.385706,0.206222,0.0293676,0.228249,0.264375,0.23481,0.155053,0.464612,0.399642,0.155742,0.849756,0.856019,0.182554,0.501467,0.68129,0.314464,0.488593,0.658826,0.759185,0.584267,0.618957,0.55504,0.720929,0.901987,0.388531,0.948394,0.331635,0.0181361,0.520566,0.345455,0.462873,0.895603,0.753254,0.00597274,0.474532,0.956517,0.827265,0.094667,0.00607872,0.71426,0.688702,0.898367,0.636682,0.0971875,0.369983,0.485741,0.13868,0.758011,0.378953,0.463197,0.722105,0.279814,0.0268939,0.391865,0.0724978,0.577016,0.564348,0.505085,0.770383,0.994871,0.606234,0.524768,0.193922,0.783664,0.396016,0.775991,0.851011,0.259458,0.0411473,0.611781,0.958321,0.717399,0.151672,0.173423,0.253596,0.928979,0.616637,0.68342,0.386726,0.858359,0.121656,0.0610436,0.0369002,0.530841,0.374178,0.598265,0.338715,0.622121,0.102747,0.92272,0.942614,0.596077,0.426205,0.656428,0.941436,0.290211,0.751369,0.838294,0.797811,0.476668,0.816808,0.158581,0.94601,0.144401,0.832337,0.509086,0.62656,0.963117,0.0522972,0.453741,0.264852,0.694578,0.492006,0.346328,0.970924,0.274705,0.956027,0.0171564,0.935239,0.343809,0.427124,0.851218,0.1829,0.0874171,0.539912,0.35813,0.0852488,0.89831,0.926198,0.55838,0.486259,0.548371,0.19116,0.351312,0.487391,0.0813115,0.62376,0.73997,0.49698,0.0630274,0.621579,0.950612,0.868036,0.288188,0.198517,0.418224,0.933736,0.552327,0.776645,0.14657,0.864712,0.823366,0.908673,0.626427,0.39981,0.448611,0.662278,0.8466,0.915522,0.130448,0.756324,0.0429003,0.229825,0.600668,0.394361,0.837675,0.937795,0.259597,0.556985,0.226905,0.607761,0.962328,0.165821,0.651487,0.331391,0.253134,0.469739,0.425743,0.588584,0.996867,0.0374088,0.0927677,0.229514,0.462432,0.703639,0.397032,0.644105,0.830587,0.733479,0.414935,0.314253,0.700907,0.954645,0.665783,0.803406,0.146626,0.329456,0.975775,0.659124,0.766821,0.271058,0.0267701,0.0826212,0.124399,0.475532,0.714632,0.607351,0.330753,0.659851,0.611668,0.594278,0.0273605,0.0969677,0.902039,0.852257,0.259829,0.660767,0.661868,0.390342,0.980718,0.378207,0.519512,0.589308,0.691269,0.895373,0.49873,0.791486,0.300684,0.562022,0.679857,0.136415,0.92451,0.979141,0.338378,0.453746,0.709217,0.0563577,0.471831,0.148327,0.959029,0.298486,0.226731,0.888321,0.170002,0.89347,0.857812,0.682274,0.716957,0.755491,0.707116,0.509987,0.620214,0.501483,0.762408,0.202589,0.308626,0.733169,0.133141,0.478825,0.165728,0.213655,0.574182,0.0939801,0.0501254,0.186187,0.838582,0.811588,0.188305,0.909867,0.0343075,0.346197,0.79444,0.630111,0.21671,0.458697,0.580447,0.172991,0.632845,0.507332,0.532316,0.0913748,0.367179,0.285863,0.0262163,0.20866,0.52874,0.683488,0.204373,0.215267,0.287035,0.795919,0.309579,0.943687,0.342445,0.0693725,0.624146,0.00173843,0.261132,0.405379,0.215541,0.355679,0.49195,0.584921,0.790154,0.497238,0.370493,0.471074,0.850508,0.876347,0.487803,0.641313,0.933261,0.39241,0.813802,0.670855,0.127945,0.331398,0.0509225,0.216813,0.493233,0.700777,0.429269,0.0340424,0.124307,0.748929,0.738146,0.602833,0.570233,0.872855,0.740293,0.526153,0.00257897,0.310605,0.507261,0.79368,0.870566,0.0582412,0.617564,0.853483,0.803996,0.653844,0.916314,0.140742,0.188559,0.185906,0.112539,0.142476,0.718324,0.745623,0.208453,0.656661,0.469016,0.724552,0.822639,0.131328,0.29254,0.999364,0.962196,0.563151,0.637101,0.00469142,0.76515,0.0899486,0.28064,0.576098,0.594525,0.823622,0.35122,0.511905,0.654214,0.61154,0.146041,0.371213,0.875217,0.462725,0.765698,0.932645,0.587163,0.599782,0.379366,0.591988,0.4492,0.164395,0.454812,0.978438,0.984926,0.647166,0.881123,0.276302,0.366745,0.298711,0.0528657,0.227478,0.403218,0.435531,0.566524,0.241169,0.202742,0.599987,0.0848197,0.229653,0.0659428,0.528909,0.486835,0.692174,0.00305694,0.145551,0.659069,0.126024,0.597319,0.597294,0.676867,0.735786,0.0668413,0.45602,0.616953,0.695113,0.642435,0.814628,0.62255,0.0997186,0.606609,0.654703,0.334486,0.163415,0.180495,0.196446,0.557894,0.422519,0.594919,0.356755,0.746427,0.455499,0.983613,0.143473,0.960106,0.13461,0.424607,0.880618,0.179431,0.418513,0.676586,0.44945,0.768065,0.121182,0.580845,0.316649,0.0465816,0.673432,0.645671,0.665843,0.59206,0.545481,0.575699,0.10674,0.123733,0.231182,0.647164,0.734304,0.845624,0.705866,0.193569,0.393093,0.944315,0.30285,0.457036,0.629886,0.735833,0.192678,0.265881,0.025581,0.0362005,0.337242,0.222795,0.126988,0.940051,0.125953,0.403136,0.791593,0.227673,0.628888,0.812288,0.250083,0.163571,0.837049,0.00554025,0.315108,0.994902,0.183283,0.0130152,0.182341,0.201585,0.226865,0.835175,0.259663,0.0107704,0.139696,0.0625001,0.306337,0.479741,0.350452,0.688828,0.670531,0.0930256,0.51235,0.0958066,0.905906,0.0423617,0.779854,0.730968,0.624174,0.871011,0.790084,0.360039,0.182286,0.00901514,0.979797,0.491616,0.731579,0.631077,0.474158,0.943496,0.704831,0.860879,0.0353929,0.187504,0.765518,0.98555,0.679035,0.895536,0.460248,0.569296,0.991953,0.667209,0.497197,0.154291,0.519978,0.285592,0.237752,0.800708,0.723137,0.0894891,0.579156,0.512737,0.346665,0.719773,0.372187,0.943801,0.34109,0.95725,0.762727,0.763249,0.511116,0.0646937,0.851631,0.212928,0.44332,0.0157943,0.0199112,0.821407,0.557167,0.274678,0.483583,0.108312,0.0158485,0.298373,0.250369,0.152804,0.0705627,0.377145,0.509467,0.247097,0.465637,0.243184,0.891033,0.585545,0.833692,0.116797,0.323984,0.268408,0.801344,0.746503,0.909673,0.366497,0.672997,0.609965,0.186292,0.927156,0.584983,0.659481,0.327435,0.18804,0.729681,0.703995,0.483664,0.510337,0.0167686,0.970685,0.443545,0.416105,0.187656,0.084154,0.252357,0.826297,0.625355,0.113073,0.803964,0.170061,0.801896,0.653695,0.19688,0.992468,0.858443,0.628646,0.0929673,0.138636,0.352031,0.366121,0.8394,0.862443,0.175598,0.17714,0.250992,0.10105,0.151362,0.904667,0.818456,0.892995,0.255086,0.161073,0.368539,0.317449,0.236201,0.743918,0.688305,0.255639,0.0736862,0.469452,0.274985,0.27898,0.754058,0.319198,0.765703,0.8691,0.73612,0.120622,0.584716,0.207019,0.50688,0.201739,0.2576,0.886223,0.119547,0.710212,0.072701,0.440309,0.367198,0.797753,0.906478,0.623067,0.653305,0.21269,0.908507,0.236124,0.423183,0.818457,0.769928,0.860288,0.765225,0.922423,0.91172,0.419342,0.518412,0.758413,0.361039,0.693951,0.532582,0.132326,0.0911457,0.424425,0.491136,0.163451,0.420318,0.745809,0.745493,0.594511,0.527305,0.654038,0.889095,0.195535,0.586568,0.197791,0.849638,0.0432015,0.0511839,0.210459,0.409754,0.920921,0.257694,0.919724,0.266913,0.285374,0.486623,0.29171,0.00603586,0.943799,0.323364,0.419159,0.127011,0.765703,0.625695,0.62809,0.8832,0.295144,0.768112,0.545999,0.568762,0.30294,0.399725,0.695969,0.780746,0.828464,0.222329,0.504911,0.276316,0.0563223,0.0714609,0.467324,0.0195885,0.58148,0.950789,0.142152,0.580002,0.607816,0.702361,0.736161,0.582585,0.309605,0.47722,0.996494,0.317316,0.168234,0.724908,0.0685309,0.414496,0.78404,0.093412,0.18128,0.0310367,0.54272,0.266109,0.376042,0.338146,0.562177,0.42812,0.0281371,0.178887,0.111985,0.125441,0.16139,0.170015,0.868085,0.67849,0.569024,0.355879,0.118581,0.576068,0.428171,0.157059,0.733201,0.246188,0.538898,0.831285,0.706376,0.542596,0.921884,0.0342135,0.633493,0.242964,0.945009,0.860127,0.937956,0.521414,0.203735,0.789767,0.231761,0.670851,0.662087,0.18246,0.73974,0.164302,0.913463,0.952154,0.757105,0.843002,0.792093,0.206113,0.386696,0.324674,0.429687,0.416419,0.664648,0.974958,0.255344,0.281408,0.370422,0.915624,0.917877,0.846767,0.976353,0.480617,0.518682,0.00756758,0.276042,0.299384,0.0520561,0.509582,0.400557,0.97243,0.742453,0.188046,0.820242,0.704836,0.73052,0.624339,0.445419,0.714562,|0.19957,0.335524,0.762622,0.0642757,0.656516,0.554121,0.0711111,0.869476,0.822004,0.36784,0.540553,0.240536,0.220538,0.790643,0.874823,0.886037,0.679784,0.81574,0.236239,0.797127,0.30269,0.736322,0.481386,0.759639,0.780506,0.656899,0.98925,0.676864,0.450886,0.618707,0.424329,0.555305,0.630832,0.338184,0.335854,0.802691,0.393358,0.292002,0.104629,0.258837,0.395936,0.962354,0.645819,0.0481356,0.820474,0.941927,0.675918,0.884973,0.384826,0.700742,0.202875,0.0536557,0.298981,0.815783,0.417297,0.825215,0.743554,0.593424,0.450359,0.618539,0.532089,0.977021,0.176419,0.681928,0.810184,0.341332,0.679214,0.103752,0.805352,0.0736839,0.786426,0.471685,0.164484,0.954241,0.795394,0.911993,0.86179,0.872506,0.00335211,0.652882,0.0780588,0.97543,0.232217,0.31555,0.331949,0.12282,0.236542,0.341452,0.341462,0.385259,0.58206,0.879979,0.866681,0.525851,0.727813,0.803419,0.575163,0.537759,0.158479,0.25999,0.624379,0.636862,0.0743189,0.188699,0.957632,0.754473,0.884202,0.267284,0.155351,0.0976834,0.668196,0.638995,0.436525,0.343878,0.0607961,0.311336,0.86817,0.801967,0.546551,0.735684,0.701142,0.598174,0.877973,0.320373,0.0392491,0.649089,0.0456643,0.615393,0.444722,0.78324,0.553152,0.739136,0.534784,0.00260341,0.253588,0.635785,0.543071,0.559693,0.462428,0.10713,0.262984,0.696607,0.54714,0.74113,0.424072,0.965265,0.593049,0.56942,0.48877,0.22911,0.9406,0.105561,0.915443,0.990835,0.693525,0.795627,0.0950859,0.451423,0.15502,0.767661,0.482503,0.181112,0.797231,0.617999,0.260124,0.164127,0.289286,0.638235,0.689984,0.7181,0.959849,0.897572,0.162125,0.386742,0.757863,0.212525,0.149211,0.0380159,0.483468,0.597902,0.371545,0.0919036,0.619708,0.933248,0.595278,0.856977,0.21269,0.758134,0.872808,0.200874,0.982829,0.572544,0.99031,0.00513244,0.339629,0.638808,0.991199,0.113379,0.421169,0.185132,0.196398,0.38246,0.0750235,0.544143,0.748907,0.71817,0.741914,0.623008,0.604598,0.651138,0.117175,0.0197875,0.563838,0.226667,0.206791,0.708611,0.550875,0.695181,0.774939,0.388517,0.778604,0.394193,0.414347,0.463075,0.992037,0.15064,0.543787,0.358791,0.766373,0.270116,0.664061,0.286898,0.603301,0.157293,0.0453722,0.110556,0.817969,0.477286,0.995208,0.902998,0.0363382,0.505601,0.821104,0.610211,0.662305,0.217987,0.992477,0.629421,0.427063,0.910312,0.392689,0.450713,0.892827,0.190402,0.66215,0.146049,0.467728,0.210131,0.982754,0.505022,0.77498,0.951284,0.932186,0.101496,0.373501,0.534013,0.798745,0.801196,0.111935,0.0194104,0.900306,0.229063,0.869456,0.678713,0.452757,0.213969,0.7578,0.792688,0.072235,0.0783893,0.390851,0.974089,0.105513,0.00063467,0.708473,0.149846,0.545051,0.65335,0.219438,0.191558,0.461635,0.287702,0.252987,0.465243,0.714913,0.128282,0.793872,0.637444,0.435116,0.482279,0.45056,0.743865,0.677032,0.569291,0.0565578,0.0717548,0.564493,0.321231,0.599991,0.331182,0.438274,0.766376,0.838796,0.16036,0.330284,0.918342,0.046095,0.259537,0.949188,0.0368736,0.232906,0.943054,0.0475951,0.0132394,0.801329,0.291287,0.510204,0.23845,0.914613,0.095753,0.344147,0.422037,0.714774,0.493009,0.967701,0.494371,0.991799,0.411911,0.114703,0.236239,0.961175,0.188898,0.835063,0.393712,0.163936,0.836756,0.2798,0.48501,0.708072,0.102213,0.372428,0.690042,0.0833765,0.940122,0.293362,0.252286,0.481457,0.727054,0.644121,0.0402392,0.156681,0.47115,0.775818,0.667947,0.273898,0.146863,0.841577,0.170387,0.0183979,0.346757,0.893743,0.846061,0.190886,0.655138,0.592929,0.121692,0.471244,0.877635,0.650809,0.936814,0.131812,0.436162,0.0481021,0.914116,0.374288,0.515875,0.613232,0.272496,0.607421,0.63638,0.44769,0.827537,0.1275,0.574377,0.528847,0.672855,0.650739,0.267294,0.548464,0.483367,0.747916,0.436984,0.918243,0.273097,0.954821,0.244088,0.0542312,0.150969,0.535881,0.402139,0.184013,0.326062,0.776725,0.246958,0.306034,0.853361,0.164997,0.405227,0.449327,0.847535,0.499644,0.163728,0.839009,0.328751,0.647345,0.436598,0.635471,0.260556,0.31985,0.365956,0.795141,0.829258,0.662212,0.757167,0.631154,0.615458,0.382828,0.178628,0.649427,0.145684,0.0493069,0.836893,0.22721,0.0844812,0.239749,0.70499,0.633199,0.368372,0.865718,0.0350958,0.0982333,0.0079385,0.969465,0.188349,0.184177,0.878606,0.294782,0.447763,0.14596,0.343919,0.336963,0.897994,0.790766,0.817806,0.0923045,0.53789,0.279994,0.994413,0.349441,0.563653,0.560756,0.706962,0.643443,0.837962,0.622429,0.359705,0.462506,0.34149,0.888954,0.528147,0.169891,0.0770444,0.485627,0.0309066,0.348587,0.439093,0.775254,0.743756,0.206161,0.434017,0.720303,0.701742,0.683804,0.616326,0.638678,0.226011,0.557355,0.10225,0.0294371,0.804795,0.479259,0.984988,0.806612,0.613308,0.23749,0.770826,0.347313,0.584262,0.77316,0.232039,0.411865,0.0466538,0.737445,0.287296,0.532694,0.350912,0.0419457,0.539175,0.905197,0.523278,0.154086,0.260754,0.797579,0.559729,0.0373381,0.774285,0.112019,0.00862938,0.550085,0.800198,0.0239825,0.147499,0.10123,0.00759739,0.384979,0.250439,0.568826,0.563885,0.932493,0.340569,0.741456,0.792973,0.257887,0.627276,0.696793,0.538007,0.757892,0.273078,0.0514458,0.710571,0.0863785,0.617357,0.256007,0.41562,0.0265307,0.743637,0.0278353,0.536005,0.930374,0.609575,0.882072,0.360949,0.264068,0.022526,0.234613,0.236066,0.469825,0.634058,0.250848,0.929698,0.195102,0.135544,0.367208,0.306351,0.975398,0.497025,0.0752818,0.186089,0.116985,0.188853,0.962365,0.0928532,0.281325,0.521362,0.0831273,0.902622,0.289577,0.249166,0.0749576,0.304655,0.909181,0.786217,0.702404,0.624831,0.233193,0.936956,0.388288,0.545942,0.238294,0.904956,0.771871,0.417847,0.135632,0.45557,0.526625,0.518934,0.320812,0.0753088,0.33615,0.060666,0.638994,0.570247,0.326999,0.811471,0.139541,0.977205,0.783085,0.440179,0.746993,0.0963736,0.583908,0.97078,0.146699,0.166475,0.511157,0.185958,0.385771,0.604101,0.274426,0.149138,0.434995,0.357579,0.4211,0.923585,0.597989,0.86895,0.856312,0.174877,0.218961,0.867068,0.867505,0.991454,0.102575,0.33975,0.136876,0.304291,0.193988,0.528321,0.781669,0.998955,0.884388,0.0674376,0.851811,0.749154,0.239688,0.0789751,0.113169,0.715222,0.817747,0.459686,0.564429,0.725709,0.975384,0.585748,0.0188911,0.314137,0.225241,0.361344,0.333058,0.204601,0.856854,0.953849,0.250886,0.8792,0.417776,0.196141,0.164423,0.547066,0.0844783,0.955964,0.243223,0.467749,0.549583,0.798849,0.168547,0.0287732,0.299372,0.645224,0.814054,0.403403,0.653889,0.637678,0.866747,0.110587,0.096793,0.09049,0.983771,0.777176,0.227719,0.396813,0.0794797,0.454812,0.112257,0.630769,0.816823,0.428351,0.494977,0.531575,0.964977,0.24879,0.73133,0.619309,0.348677,0.989084,0.444816,0.955121,0.471568,0.817178,0.651025,0.542047,0.258512,0.858829,0.103632,0.739961,0.225061,0.0503912,0.509446,0.109921,0.403058,0.716716,0.814875,0.834445,0.614376,0.260083,0.264884,0.410297,0.564352,0.0859379,0.8636,0.974041,0.0827612,0.904414,0.692083,0.703854,0.536367,0.897487,0.335683,0.632721,0.721355,0.235224,0.912546,0.698772,0.542303,0.101442,0.283102,0.709655,0.203765,0.790897,0.495903,0.784602,0.0424039,0.875594,0.800928,0.467762,0.107455,0.0880051,0.134102,0.208539,0.878338,0.390432,0.0341558,0.712741,0.10085,0.385781,0.529323,0.312506,0.504433,0.421501,0.145739,0.101663,0.115495,0.524221,0.194374,0.868993,0.773244,0.593052,0.550832,0.319902,0.285604,0.929754,0.531316,0.801755,0.509681,0.469766,0.487283,0.810929,0.520289,0.393394,0.949136,0.599905,0.177548,0.167037,0.0403693,0.0215156,0.991862,0.387908,0.28326,0.0435726,0.750034,0.683754,0.877078,0.430164,0.845861,0.190808,0.942379,0.210469,0.303674,0.449793,0.0689633,0.0393595,0.968646,0.857853,0.456192,0.218791,0.140496,0.941116,0.836078,0.166019,0.345801,0.962239,0.70271,0.687539,0.969762,0.814083,0.645064,0.323873,0.938712,0.124127,0.432863,0.303154,0.556002,0.994773,0.622237,0.0465719,0.440826,0.391668,0.527893,0.486375,0.181966,0.933095,0.357759,0.605579,0.0590302,0.930362,0.4866,0.297387,0.679325,0.301583,0.984781,0.409381,0.86886,0.998992,0.200594,0.24717,0.675431,0.766232,0.951978,0.875592,0.900711,0.104046,0.327046,0.0468458,0.102824,0.738481,0.092354,0.81369,0.891215,0.978875,0.844038,0.630522,0.0547264,0.0806956,0.829869,0.134082,0.393536,0.3319,0.4267,0.347594,0.325484,0.49552,0.912207,0.211777,0.448695,0.126214,0.592195,0.610012,0.942369,0.396113,0.0696099,0.958019,0.510262,0.13374,0.980278,0.976575,0.761564,0.668648,0.371313,0.666611,0.395645,0.417534,0.164876,0.656594,0.228693,0.2311,0.340686,0.328666,0.0534371,0.501837,0.333569,0.872479,0.258827,0.952868,0.862609,0.256417,0.522115,0.694273,0.420162,0.113752,0.965819,0.906212,0.235151,0.889335,0.486894,0.644033,0.0302336,0.872785,0.931329,0.215685,0.311397,0.338814,0.300077,0.20195,0.607194,0.212691,0.433924,0.0491415,0.556977,0.102121,0.51962,0.342069,0.890019,0.35128,0.479123,0.226484,0.505798,0.962701,0.0395315,0.672991,0.184111,0.144679,0.155555,0.833738,0.653011,0.276086,0.617219,0.271692,0.0381635,0.285182,0.981041,0.504419,0.816306,0.130279,0.800374,0.514495,0.950616,0.793166,0.533939,0.56252,0.0690057,0.226968,0.902886,0.42902,0.509559,0.611869,0.964256,0.0800062,0.827176,0.531163,0.0345584,0.432047,0.164792,0.530787,0.680933,0.54406,0.625693,0.272186,0.559429,0.391973,0.626647,0.682529,|0.797134,0.536095,0.509506,0.548503,0.336823,0.421244,0.640561,0.515142,0.936803,0.293728,0.348681,0.572001,0.655766,0.360367,0.468308,0.161137,0.330885,0.333873,0.0605122,0.956862,0.904011,0.839534,0.783358,0.964481,0.103563,0.777902,0.632501,0.754174,0.692586,0.519272,0.22189,0.818564,0.484835,0.562186,0.805188,0.477561,0.958335,0.0484254,0.499537,0.729865,0.829024,0.623869,0.249161,0.915722,0.677108,0.363651,0.789105,0.00753272,0.464448,0.62687,0.14252,0.629647,0.114935,0.365668,0.778019,0.457576,0.133598,0.733756,0.794258,0.607625,0.615294,0.191385,0.361027,0.688299,0.0522395,0.46356,0.329039,0.272816,0.00311351,0.851768,0.480805,0.72744,0.762084,0.855256,0.595914,0.723902,0.54972,0.39245,0.317616,0.291205,0.456778,0.369844,0.169855,0.370168,0.995616,0.665719,0.803206,0.611651,0.706635,0.199399,0.917892,0.760619,0.271813,0.243477,0.676876,0.111879,0.278894,0.0264015,0.202756,0.182365,0.114602,0.188159,0.958091,0.509768,0.907552,0.023427,0.676604,0.982794,0.880425,0.0399632,0.489489,0.403938,0.423315,0.123646,0.286474,0.152604,0.283979,0.759903,0.742851,0.302421,0.734697,0.0617846,0.0695539,0.657056,0.844836,0.028255,0.163553,0.397612,0.397334,0.0217516,0.715936,0.658705,0.122832,0.810794,0.782525,0.620112,0.891463,0.926964,0.433691,0.0459965,0.261168,0.273115,0.523784,0.578384,0.952517,0.318854,0.251451,0.421722,0.0951968,0.852511,0.844791,0.596871,0.304977,0.97031,0.89163,0.888311,0.728968,0.48939,0.0257927,0.513992,0.0841612,0.225593,0.460723,0.572762,0.262993,0.00221229,0.587311,0.994167,0.478952,0.444584,0.699235,0.0873052,0.895529,0.901191,0.972522,0.732808,0.95158,0.979996,0.33759,0.858588,0.67813,0.965824,0.0613111,0.768675,0.716579,0.655863,0.681515,0.393169,0.456508,0.941851,0.315838,0.827191,0.904712,0.622912,0.220417,0.16286,0.724049,0.379425,0.132964,0.888249,0.544407,0.495576,0.248499,0.71258,0.657048,0.416452,0.866861,0.425779,0.346257,0.899493,0.391442,0.47175,0.364256,0.811318,0.462456,0.290168,0.426327,0.822218,0.376732,0.432127,0.733873,0.244676,0.994087,0.943979,0.944757,0.599637,0.582787,0.560124,0.966725,0.0952232,0.18575,0.321907,0.931665,0.642157,0.674891,0.364223,0.428133,0.433045,0.418574,0.886876,0.610013,0.115828,0.691903,0.345911,0.840244,0.667306,0.137545,0.246704,0.842587,0.25384,0.0162022,0.209307,0.450382,0.160896,0.33555,0.727318,0.325296,0.0488523,0.161816,0.315539,0.283576,0.0104418,0.689649,0.171611,0.164758,0.782166,0.00129008,0.992432,0.296153,0.728338,0.501876,0.234451,0.511075,0.0833681,0.92182,0.830194,0.955087,0.957491,0.699202,0.0305281,0.985285,0.173968,0.50167,0.931631,0.854822,0.175314,0.391234,0.0858964,0.893905,0.61195,0.787469,0.292194,0.834597,0.0100355,0.760746,0.529955,0.308437,0.0449017,0.15638,0.939397,0.89125,0.8496,0.422603,0.0478138,0.582541,0.515014,0.158756,0.830282,0.0162995,0.641081,0.613395,0.922265,0.761239,0.310595,0.969986,0.132751,0.419213,0.318714,0.844966,0.0968649,0.249565,0.506812,0.338864,0.999122,0.302425,0.54975,0.35763,0.426638,0.607705,0.900141,0.518028,0.9745,0.508587,0.737016,0.624164,0.395726,0.926222,0.690455,0.0459632,0.662198,0.187212,0.473372,0.313958,0.745238,0.814799,0.502457,0.471796,0.342864,0.704469,0.604066,0.730551,0.562167,0.596965,0.795789,0.581138,0.781125,0.896514,0.0801536,0.862585,0.866722,0.249907,0.64348,0.951628,0.1027,0.897767,0.209123,0.588748,0.462892,0.871371,0.688988,0.797046,0.157099,0.88209,0.547751,0.854483,0.188042,0.0649815,0.184092,0.128661,0.70175,0.43317,0.685286,0.0516772,0.681795,0.785507,0.359339,0.955476,0.746253,0.675892,0.459024,0.53467,0.410775,0.259222,0.217491,0.14636,0.919091,0.704726,0.0313412,0.995177,0.875023,0.43423,0.826764,0.744288,0.147924,0.736952,0.213072,0.813909,0.899692,0.637052,0.895345,0.989016,0.155692,0.67164,0.999967,0.957996,0.419638,0.999858,0.890584,0.328132,0.379841,0.738593,0.440097,0.999596,0.893604,0.700367,0.190038,0.358509,0.793866,0.718467,0.288275,0.909884,0.29109,0.566401,0.483149,0.139108,0.433585,0.564759,0.277421,0.462042,0.758255,0.125323,0.563842,0.0113869,0.354608,0.796981,0.0643151,0.621688,0.618997,0.773202,0.833131,0.0380363,0.914686,0.349166,0.532295,0.361118,0.887216,0.160762,0.259007,0.532729,0.248854,0.117244,0.346998,0.624988,0.609541,0.646754,0.192669,0.584001,0.94511,0.260077,0.898766,0.798425,0.820765,0.840248,0.738133,0.317985,0.0198197,0.467318,0.351008,0.460242,0.15124,0.999293,0.138344,0.270459,0.824368,0.383579,0.861636,0.861694,0.195007,0.198525,0.616758,0.447182,0.553287,0.511435,0.22482,0.951315,0.471169,0.136905,0.369355,0.764605,0.567769,0.633922,0.430815,0.845741,0.108246,0.192798,0.0998,0.331266,0.938286,0.369351,0.763776,0.128825,0.731111,0.399407,0.834629,0.859446,0.124756,0.900544,0.787439,0.559338,0.907994,0.692974,0.510101,0.0866908,0.432416,0.303824,0.698629,0.682062,0.428159,0.193658,0.0961621,0.507487,0.199405,0.142262,0.43395,0.946094,0.0269869,0.780396,0.328897,0.201839,0.636428,0.787569,0.392272,0.957184,0.388915,0.523628,0.785791,0.661493,0.502574,0.187019,0.769315,0.127097,0.278893,0.460056,0.299794,0.480834,0.358756,0.61492,0.637468,0.523622,0.103075,0.613259,0.810892,0.203164,0.610637,0.48466,0.644769,0.0384181,0.501492,0.0868351,0.7241,0.929174,0.456326,0.541665,0.786913,0.990328,0.0814285,0.490762,0.949264,0.874106,0.535241,0.135602,0.570818,0.706011,0.851348,0.996924,0.367257,0.353549,0.925075,0.575311,0.616894,0.116664,0.0246155,0.830006,0.594301,0.984438,0.633187,0.659995,0.0877758,0.495168,0.00945032,0.439942,0.930959,0.638091,0.541695,0.829015,0.832695,0.723787,0.765421,0.117296,0.963716,0.825054,0.612589,0.71572,0.995201,0.940305,0.662695,0.798798,0.392561,0.25217,0.160564,0.42967,0.304377,0.255146,0.692383,0.967605,0.171729,0.0173019,0.813707,0.0394577,0.949713,0.0496731,0.775324,0.753072,0.471582,0.44036,0.698434,0.108545,0.743717,0.441746,0.661292,0.203477,0.831619,0.68411,0.0645775,0.484779,0.992343,0.834053,0.52749,0.929599,0.0305695,0.21335,0.0187995,0.667661,0.873061,0.583139,0.183051,0.472046,0.162513,0.984759,0.165867,0.685149,0.178596,0.548334,0.296389,0.704798,0.765408,0.667772,0.41757,0.83026,0.537569,0.749126,0.0462448,0.213867,0.524623,0.126509,0.0610735,0.197057,0.337619,0.578097,0.167783,0.498667,0.491318,0.135572,0.0661936,0.805897,0.213919,0.23761,0.724401,0.310268,0.153719,0.403854,0.0366414,0.336821,0.399298,0.662646,0.997134,0.201805,0.386338,0.289578,0.434588,0.685795,0.780538,0.708896,0.435478,0.786406,0.00853127,0.777479,0.304352,0.119997,0.816552,0.332215,0.0711358,0.320407,0.285057,0.678918,0.766679,0.688193,0.950552,0.122467,0.155497,0.0968021,0.724932,0.0417061,0.250565,0.450424,0.582998,0.843579,0.476547,0.92655,0.233714,0.113195,0.313585,0.12556,0.0550601,0.27134,0.165636,0.472251,0.599741,0.363602,0.97674,0.244238,0.183612,0.0881295,0.486523,0.987162,0.19265,0.208757,0.734547,0.21597,0.290439,0.685421,0.458491,0.915467,0.356628,0.586445,0.328627,0.469378,0.144192,0.756732,0.0218818,0.285627,0.811725,0.959335,0.166981,0.219628,0.618403,0.619347,0.826605,0.771193,0.399197,0.271151,0.541759,0.219309,0.74708,0.379522,0.92753,0.472413,0.855135,0.66912,0.912321,0.670004,0.860176,0.797968,0.829446,0.38598,0.118344,0.450935,0.777592,0.965488,0.87012,0.365341,0.668473,0.308512,0.749909,0.4907,0.342594,0.596473,0.677695,0.83645,0.512725,0.642965,0.489918,0.529088,0.198708,0.174705,0.333569,0.592629,0.446458,0.295789,0.309647,0.736093,0.161471,0.631258,0.498391,0.0849771,0.385169,0.0672975,0.362323,0.275183,0.341466,0.807167,0.298172,0.0222933,0.398665,0.0139465,0.876616,0.412097,0.648112,0.762801,0.597955,0.917364,0.432416,0.399085,0.242666,0.633643,0.537483,0.480887,0.416057,0.850108,0.0620468,0.377736,0.544466,0.791735,0.293401,0.760169,0.348852,0.152985,0.0788013,0.747753,0.173159,0.0580341,0.185819,0.271937,0.332487,0.51354,0.867405,0.968481,0.391877,0.645054,0.967688,0.271337,0.914384,0.731718,0.0112892,0.0365363,0.603696,0.468864,0.353383,0.888679,0.267685,0.773186,0.917372,0.402035,0.203939,0.656182,0.0590404,0.63966,0.838848,0.346354,0.664391,0.557529,0.266141,0.544985,0.533297,0.0892702,0.709467,0.0159923,0.462014,0.275818,0.113428,0.788911,0.170366,0.96553,0.0786949,0.336758,0.388372,0.247957,0.648906,0.440517,0.562055,0.953755,0.861745,0.562721,0.888093,0.705579,0.41162,0.670255,0.42821,0.113435,0.313581,0.759611,0.775099,0.372626,0.270889,0.604512,0.47683,0.718896,0.583236,0.194561,0.0630305,0.97939,0.0711024,0.813787,0.0904925,0.692757,0.760848,0.959313,0.976236,0.071286,0.238139,0.830044,0.287149,0.466863,0.713038,0.831941,0.723388,0.319388,0.966569,0.00850499,0.261086,0.509361,0.272649,0.419029,0.789325,0.595036,0.807804,0.165629,0.099792,0.79994,0.955781,0.140294,0.213911,0.344149,0.634994,0.216268,0.640917,0.414749,0.198548,0.121811,0.176002,0.430011,0.959907,0.579834,0.13565,0.0404216,0.679275,0.489073,0.966006,0.91012,0.216709,0.836316,0.877487,0.144048,0.305741,0.141183,0.577555,0.658862,0.54305,0.22938,0.572742,0.132203,0.768845,0.963162,0.86967,0.935144,0.264761,0.386348,0.0409279,0.816799,0.774646,0.322826,0.0513123,0.642439,0.929889,0.411914,0.0694761,0.535316,0.110824,0.283976,0.137836,|0.716455,0.791773,0.57861,0.462839,0.643404,0.0485268,0.109894,0.733385,0.182965,0.527728,0.218999,0.567175,0.0748418,0.231534,0.327738,0.654165,0.893037,0.0738636,0.247155,0.953632,0.979675,0.908686,0.696626,0.888329,0.765333,0.34488,0.559591,0.552652,0.991336,0.452246,0.380374,0.973293,0.51116,0.870701,0.98986,0.994824,0.512283,0.0636401,0.215719,0.809331,0.805664,0.49291,0.338097,0.366008,0.519193,0.680022,0.527947,0.383049,0.872082,0.149015,0.406712,0.739928,0.975418,0.134194,0.138442,0.0934783,0.743216,0.577542,0.295873,0.223307,0.750369,0.239058,0.0971248,0.66347,0.584993,0.951612,0.0372438,0.614792,0.641665,0.316567,0.79729,0.634987,0.00849199,0.0536528,0.36892,0.917411,0.133258,0.575709,0.545596,0.721213,0.511493,0.0359212,0.99048,0.897624,0.00757027,0.00655943,0.784812,0.624251,0.916172,0.504756,0.572214,0.585149,0.0764014,0.0342265,0.597739,0.129356,0.923849,0.952386,0.83059,0.362664,0.212567,0.756181,0.0870509,0.0183477,0.26847,0.961027,0.999969,0.115585,0.262534,0.978572,0.148377,0.354699,0.256009,0.0810817,0.722122,0.775063,0.129957,0.708016,0.928063,0.424222,0.786472,0.467714,0.264523,0.26698,0.956608,0.578446,0.462718,0.990605,0.839305,0.552361,0.261162,0.814187,0.0901508,0.5703,0.49793,0.532349,0.509799,0.537671,0.842675,0.386473,0.91352,0.517535,0.248855,0.575292,0.658636,0.305488,0.104989,0.710388,0.426011,0.211227,0.852597,0.378337,0.785934,0.74185,0.550157,0.313148,0.441321,0.18151,0.0335509,0.914499,0.806417,0.297836,0.673093,0.716202,0.754662,0.408167,0.486953,0.981721,0.486981,0.952735,0.708141,0.23987,0.0252663,0.0560151,0.300748,0.682066,0.522378,0.420797,0.355211,0.80706,0.0645136,0.822493,0.657886,0.554338,0.246036,0.77185,0.6772,0.424541,0.794845,0.576513,0.649962,0.976678,0.760914,0.568613,0.000522673,0.481743,0.977752,0.51939,0.107513,0.495349,0.472837,0.915271,0.0743977,0.233307,0.965408,0.0113125,0.296875,0.894234,0.660625,0.698959,0.463428,0.932653,0.0684499,0.630872,0.166073,0.157903,0.605115,0.701737,0.388152,0.37993,0.325452,0.185079,0.565747,0.178932,0.644851,0.135189,0.9068,0.822499,0.926722,0.0907741,0.809698,0.326709,0.408458,0.994092,0.120732,0.468434,0.360392,0.447145,0.24551,0.911193,0.546872,0.711944,0.625726,0.584126,0.393557,0.0997031,0.151598,0.219102,0.581814,0.0822755,0.349242,0.273444,0.558096,0.198103,0.869217,0.432156,0.146684,0.518002,0.214517,0.510215,0.157714,0.756173,0.353454,0.984713,0.855199,0.937318,0.950533,0.0978196,0.728818,0.882678,0.470371,0.0560079,0.183324,0.598012,0.00671637,0.255147,0.760786,0.614578,0.779225,0.661947,0.0277784,0.539388,0.761034,0.968147,0.269613,0.76286,0.42228,0.945521,0.339147,0.811988,0.369911,0.469695,0.00576115,0.793041,0.470745,0.743224,0.336138,0.710255,0.777516,0.38411,0.73803,0.0823968,0.74854,0.19173,0.622931,0.231178,0.976645,0.359999,0.797538,0.570408,0.169934,0.776043,0.558617,0.520318,0.1173,0.936925,0.196766,0.508914,0.207413,0.464799,0.28755,0.998629,0.116012,0.0680143,0.724302,0.920996,0.0573731,0.93651,0.898505,0.348873,0.685323,0.330708,0.545743,0.0999641,0.485284,0.0974573,0.651716,0.0755686,0.411783,0.284938,0.216236,0.829195,0.61127,0.0658327,0.375408,0.364238,0.599044,0.700856,0.172355,0.768512,0.881317,0.700589,0.421837,0.204251,0.274432,0.0299457,0.717175,0.455589,0.320308,0.494552,0.938194,0.279208,0.182898,0.972946,0.925727,0.551375,0.471168,0.741588,0.464528,0.113664,0.259915,0.346665,0.335793,0.15721,0.879651,0.0860559,0.463602,0.463853,0.386338,0.351125,0.90706,0.832506,0.475334,0.890556,0.429104,0.216217,0.171912,0.894177,0.389479,0.499085,0.930949,0.909914,0.479346,0.897828,0.750396,0.827078,0.637683,0.0515128,0.511062,0.910322,0.298172,0.499486,0.075253,0.456548,0.212696,0.89435,0.715633,0.935027,0.700508,0.25916,0.580024,0.982392,0.736194,0.154693,0.143787,0.922414,0.958444,0.774373,0.988729,0.2,0.41146,0.792232,0.753698,0.632355,0.723885,0.821395,0.218859,0.926483,0.241652,0.718669,0.703659,0.646738,0.803732,0.890409,0.958945,0.979082,0.937404,0.161181,0.725705,0.717449,0.811011,0.101985,0.494223,0.250728,0.895327,0.057856,0.155087,0.977995,0.741169,0.634017,0.921566,0.957008,0.0573029,0.941404,0.195988,0.173213,0.644245,0.320186,0.186543,0.542854,0.384475,0.240097,0.795558,0.768912,0.342192,0.325123,0.810529,0.350447,0.892486,0.173331,0.595491,0.772901,0.240031,0.00284886,0.714911,0.601678,0.0151027,0.169146,0.768141,0.185831,0.617263,0.757248,0.559325,0.115595,0.343226,0.787769,0.319791,0.511947,0.407724,0.117591,0.635609,0.759217,0.756106,0.294916,0.00881809,0.243136,0.640039,0.541644,0.807417,0.225659,0.166982,0.192925,0.765711,0.959885,0.553283,0.244605,0.63831,0.0485682,0.965906,0.0343451,0.280632,0.822402,0.821389,0.313903,0.618578,0.833556,0.219703,0.0270007,0.0130744,0.49898,0.821238,0.916601,0.281794,0.846994,0.0961997,0.586537,0.265623,0.123497,0.254064,0.87521,0.101746,0.698892,0.336066,0.697049,0.860304,0.624105,0.950085,0.857547,0.523116,0.279717,0.329327,0.200154,0.510241,0.708267,0.31366,0.86067,0.182454,0.504838,0.771284,0.699742,0.469439,0.894521,0.235665,0.191152,0.965877,0.0166362,0.434971,0.824953,0.476182,0.342353,0.744482,0.916217,0.665584,0.534732,0.422828,0.137824,0.353638,0.985829,0.181742,0.929089,0.731393,0.910502,0.66539,0.557255,0.790834,0.215322,0.597433,0.307166,0.988081,0.582974,0.979816,0.170184,0.100764,0.167262,0.201593,0.389342,0.189902,0.0525408,0.593344,0.573489,0.585416,0.437875,0.584475,0.329305,0.696584,0.339544,0.761658,0.926994,0.143966,0.272401,0.32034,0.758583,0.911705,0.73585,0.478318,0.427477,0.14698,0.457245,0.0476568,0.353925,0.550803,0.282981,0.415132,0.514915,0.268992,0.897661,0.24443,0.571745,0.63659,0.320297,0.402715,0.784706,0.201754,0.845669,0.354437,0.948563,0.796424,0.727925,0.607917,0.0433303,0.740628,0.344423,0.0641035,0.854753,0.0754606,0.174526,0.548233,0.716544,0.136269,0.456178,0.827467,0.342399,0.832131,0.151378,0.870353,0.339631,0.821175,0.149926,0.676949,0.0300784,0.654781,0.926563,0.516221,0.00219363,0.722748,0.214236,0.0902818,0.767508,0.960881,0.936816,0.647325,0.216653,0.492122,0.422582,0.453857,0.0270607,0.990347,0.515499,0.190304,0.329607,0.486691,0.69061,0.621845,0.205202,0.536797,0.0730094,0.613466,0.235478,0.0638977,0.288684,0.808203,0.16705,0.440608,0.629073,0.681428,0.306033,0.274645,0.400435,0.116342,0.357963,0.243063,0.901617,0.657334,0.919502,0.381147,0.292873,0.932273,0.32474,0.850118,0.990874,0.722818,0.452211,0.649391,0.137082,0.116607,0.933866,0.143834,0.612285,0.400991,0.703148,0.553593,0.704013,0.71123,0.259205,0.516497,0.239666,0.328096,0.973785,0.928019,0.836813,0.442761,0.658388,0.452916,0.402396,0.716772,0.100043,0.309803,0.0296465,0.951081,0.483843,0.0465745,0.733635,0.290698,0.738379,0.7515,0.856863,0.00371104,0.129809,0.531216,0.348347,0.98257,0.25404,0.0568034,0.451054,0.37623,0.469923,0.714862,0.241347,0.827819,0.0460531,0.030679,0.878108,0.978955,0.405666,0.107466,0.420637,0.721593,0.845402,0.709866,0.959343,0.953267,0.900908,0.140152,0.365409,0.789648,0.426253,0.710661,0.279385,0.612613,0.245766,0.358495,0.203158,0.793133,0.542302,0.257304,0.645087,0.151946,0.744633,0.0330403,0.435853,0.828012,0.80701,0.824419,0.375578,0.770692,0.62773,0.198867,0.0592542,0.360326,0.978116,0.983745,0.529034,0.217524,0.576932,0.583025,0.975898,0.533348,0.0186054,0.728301,0.572301,0.424774,0.234442,0.100407,0.449931,0.163017,0.686248,0.90516,0.350967,0.973492,0.129055,0.799045,0.69337,0.400283,0.759313,0.526124,0.0565121,0.780007,0.570661,0.485116,0.153546,0.0604056,0.649432,0.38278,0.739482,0.554602,0.251534,0.972784,0.199883,0.808037,0.405165,0.534811,0.676533,0.949453,0.400507,0.804229,0.849593,0.6318,0.415077,0.145234,0.0972707,0.206831,0.564383,0.148498,0.340857,0.622284,0.19786,0.49138,0.617921,0.260166,0.038696,0.542879,0.566719,0.305947,0.0487517,0.0195361,0.540013,0.65897,0.281558,0.27007,0.126339,0.670015,0.647072,0.063467,0.347492,0.0942791,0.48445,0.885048,0.105435,0.0744733,0.95522,0.935204,0.159611,0.128147,0.0437956,0.489667,0.956676,0.398991,0.0968779,0.528384,0.402541,0.471206,0.591074,0.680013,0.761508,0.725707,0.339891,0.273112,0.316917,0.361016,0.947025,0.0890329,0.0745656,0.657432,0.0249403,0.487533,0.509135,0.417338,0.233367,0.0492037,0.0172438,0.230131,0.40764,0.334499,0.680571,0.951994,0.0346279,0.815905,0.09363,0.988629,0.827239,0.194254,0.850573,0.083192,0.588803,0.0914636,0.183154,0.508533,0.312267,0.768881,0.394843,0.704812,0.966103,0.00867277,0.400216,0.251697,0.881159,0.560944,0.181669,0.134714,0.0599132,0.914305,0.514246,0.680944,0.404207,0.599775,0.900601,0.845187,0.482181,0.425901,0.35005,0.0584733,0.0125474,0.82278,0.30587,0.859239,0.583119,0.61578,0.84658,0.523598,0.504914,0.484512,0.188632,0.13828,0.399009,0.492385,0.957431,0.141988,0.967481,0.517187,0.521338,0.402851,0.312279,0.0466532,0.38703,0.722965,0.960553,0.740334,0.539656,0.679925,0.260929,0.408868,0.636054,0.113349,0.0887163,0.328452,0.268978,0.108799,0.805677,0.216925,0.0803319,0.855323,0.450694,0.720456,0.976157,0.513088,0.0285523,0.383875,0.701328,0.775984,0.251904,0.10728,0.805661,0.956763,0.833097,0.789115,0.85258,0.856022,0.0314931,0.443879,0.710691,|0.997511,0.088782,0.300957,0.284218,0.257993,0.450044,0.0667868,0.710092,0.486651,0.311962,0.806731,0.197853,0.197793,0.351977,0.518963,0.468623,0.304193,0.0264394,0.538614,0.163983,0.269891,0.353063,0.604315,0.994796,0.309855,0.14877,0.866773,0.303203,0.753648,0.98329,0.955499,0.0375059,0.962974,0.0352566,0.447419,0.975723,0.322997,0.851647,0.467911,0.392695,0.620205,0.389502,0.463483,0.855112,0.0721453,0.433323,0.114556,0.622701,0.843169,0.890513,0.49219,0.127167,0.34837,0.371161,0.408801,0.986581,0.454399,0.245917,0.621913,0.953144,0.0120854,0.0171751,0.40174,0.714821,0.531041,0.449253,0.128687,0.594514,0.215097,0.0880479,0.0827541,0.530164,0.756821,0.916633,0.159685,0.0589239,0.101404,0.0294947,0.601114,0.13694,0.483237,0.401964,0.921849,0.756568,0.898834,0.536338,0.406073,0.00306875,0.285259,0.203886,0.707464,0.451394,0.444473,0.861954,0.691307,0.576358,0.190821,0.626213,0.84678,0.223399,0.315776,0.50994,0.0568072,0.189628,0.594475,0.249193,0.304965,0.202575,0.0240007,0.537138,0.310265,0.296784,0.705341,0.219986,0.932024,0.769155,0.974021,0.463824,0.0300319,0.660342,0.0913339,0.668693,0.798788,0.71205,0.847117,0.12262,0.367048,0.903435,0.728137,0.106845,0.304141,0.781178,0.060909,0.589477,0.662674,0.919255,0.261205,0.522144,0.702509,0.901353,0.597792,0.558991,0.766422,0.0882223,0.613898,0.516811,0.581414,0.864172,0.176105,0.415277,0.713198,0.317142,0.0112225,0.791391,0.449398,0.279624,0.539529,0.0114388,0.83494,0.253301,0.601534,0.566703,0.863844,0.848289,0.615043,0.668937,0.708553,0.628382,0.759295,0.281989,0.642484,0.413854,0.46405,0.165457,0.811915,0.765743,0.962171,0.0549618,0.0473922,0.524172,0.513154,0.762736,0.524289,0.735974,0.640643,0.987554,0.906389,0.0417581,0.816179,0.482102,0.207582,0.377287,0.433375,0.991027,0.536159,0.212384,0.0319546,0.715076,0.243758,0.41692,0.646718,0.0617986,0.0958361,0.613119,0.308354,0.624279,0.146261,0.591639,0.604635,0.115087,0.724181,0.795337,0.523286,0.767299,0.861134,0.102036,0.752877,0.444163,0.152805,0.282936,0.824311,0.5808,0.444758,0.727403,0.739238,0.0113577,0.59864,0.776191,0.522818,0.194077,0.66109,0.467748,0.218935,0.210133,0.00355649,0.648206,0.0393262,0.537484,0.524362,0.576617,0.505666,0.783403,0.568037,0.532079,0.753992,0.77082,0.516578,0.77575,0.32501,0.179873,0.0406415,0.770729,0.0920518,0.878839,0.675638,0.487475,0.593031,0.594313,0.655427,0.577103,0.0049569,0.883223,0.81136,0.823666,0.336479,0.767431,0.952338,0.503158,0.858684,0.302515,0.857977,0.851534,0.406139,0.417034,0.0849016,0.602544,0.432651,0.438999,0.142956,0.573743,0.469277,0.391062,0.202391,0.388033,0.112649,0.598301,0.238682,0.313346,0.207225,0.501332,0.125355,0.123951,0.0448797,0.114999,0.355556,0.72783,0.127437,0.119491,0.129001,0.561292,0.650601,0.623766,0.0627963,0.816633,0.912413,0.234565,0.73695,0.262182,0.34573,0.921208,0.230078,0.519349,0.371488,0.831225,0.353671,0.935215,0.953769,0.737817,0.257273,0.86847,0.749782,0.173687,0.190361,0.949261,0.655019,0.494384,0.829555,0.641094,0.324461,0.290766,0.210296,0.16579,0.388714,0.794755,0.680721,0.907681,0.428203,0.144329,0.48873,0.811557,0.553932,0.881624,0.0632347,0.976671,0.119088,0.889011,0.083443,0.052448,0.733275,0.0024991,0.122602,0.378325,0.802647,0.322549,0.721824,0.027716,0.800957,0.282589,0.736144,0.228463,0.548515,0.518134,0.65082,0.467061,0.48265,0.641337,0.658318,0.551513,0.153773,0.151658,0.359367,0.166453,0.364321,0.264642,0.00734061,0.513631,0.379231,0.834386,0.922953,0.768247,0.540201,0.555892,0.899214,0.582411,0.862321,0.129338,0.585479,0.543165,0.658766,0.708197,0.998839,0.710968,0.891089,0.707436,0.237373,0.273201,0.955087,0.509077,0.519428,0.719991,0.294736,0.748069,0.969218,0.495357,0.410697,0.0601007,0.39897,0.742545,0.549905,0.105522,0.903816,0.688444,0.851393,0.726939,0.703299,0.604447,0.244318,0.116961,0.39432,0.591382,0.660927,0.136096,0.997401,0.0372705,0.302419,0.340449,0.14908,0.393376,0.235034,0.434828,0.66458,0.657673,0.431318,0.622674,0.430821,0.672281,0.477859,0.0919147,0.609423,0.617656,0.283343,0.841728,0.145267,0.868361,0.286336,0.4299,0.236636,0.505653,0.528059,0.0842428,0.602732,0.359382,0.075615,0.823547,0.275149,0.276026,0.238061,0.912314,0.217131,0.133706,0.928126,0.638709,0.882654,0.609408,0.343199,0.080483,0.842344,0.575928,0.310783,0.578297,0.190668,0.74921,0.47719,0.950569,0.224171,0.719135,0.867271,0.349871,0.510954,0.282031,0.0442129,0.756009,0.861651,0.739176,0.816129,0.895032,0.948136,0.277868,0.544072,0.363703,0.19821,0.830665,0.690217,0.501271,0.272759,0.69564,0.42884,0.181433,0.298827,0.373923,0.272172,0.116833,0.997161,0.902597,0.943446,0.611633,0.848642,0.877564,0.824185,0.739706,0.236153,0.920665,0.43585,0.813429,0.113,0.431792,0.582369,0.288207,0.178501,0.519078,0.489256,0.947499,0.481825,0.915437,0.409689,0.554685,0.818165,0.418184,0.49481,0.860616,0.999403,0.826565,0.169512,0.3981,0.302529,0.82116,0.10177,0.72792,0.945887,0.892921,0.0794308,0.1091,0.865974,0.900839,0.645851,0.00916833,0.624205,0.164149,0.700558,0.901054,0.214534,0.875361,0.481916,0.880336,0.369708,0.881534,0.64563,0.893762,0.302128,0.0327497,0.701804,0.593955,0.567395,0.684701,0.357569,0.985203,0.426411,0.957642,0.249559,0.744522,0.164184,0.80777,0.563645,0.74749,0.28936,0.85579,0.714155,0.359446,0.687223,0.0544254,0.865485,0.435527,0.816415,0.143372,0.882827,0.0846272,0.734426,0.544579,0.231473,0.38912,0.326956,0.596757,0.199342,0.83386,0.347015,0.0259703,0.114327,0.617376,0.340313,0.282835,0.00178581,0.827537,0.56796,0.301367,0.682432,0.745662,0.931581,0.0591832,0.698456,0.954384,0.636571,0.031841,0.374706,0.40705,0.884823,0.718374,0.214267,0.849244,0.473972,0.00467086,0.827122,0.283738,0.24229,0.98547,0.810558,0.705474,0.994238,0.0802945,0.721691,0.783,0.165519,0.6376,0.896932,0.632372,0.00943601,0.811091,0.714335,0.220506,0.225163,0.99375,0.640824,0.289696,0.351326,0.367302,0.613097,0.377387,0.256136,0.542228,0.417686,0.801684,0.615299,0.376915,0.967982,0.115496,0.677271,0.295437,0.821217,0.00261569,0.879812,0.622499,0.181373,0.743173,0.995018,0.802305,0.291073,0.0428393,0.760561,0.154306,0.263826,0.98486,0.232563,0.45084,0.434295,0.660006,0.506575,0.187879,0.908623,0.11276,0.0453427,0.6609,0.727919,0.434176,0.669252,0.659391,0.713081,0.642983,0.445888,0.492927,0.30497,0.348098,0.5333,0.625394,0.968853,0.485365,0.330872,0.754432,0.428547,0.319667,0.647654,0.0854405,0.616882,0.892622,0.33931,0.383801,0.350849,0.182631,0.667058,0.444309,0.636873,0.339636,0.709511,0.0351968,0.51447,0.172892,0.62204,0.324217,0.180319,0.99521,0.7289,0.551157,0.156327,0.239863,0.450433,0.931252,0.650068,0.942554,0.916902,0.323862,0.400929,0.755139,0.150629,0.935414,0.224405,0.95878,0.247917,0.544657,0.728578,0.0654252,0.0374339,0.671256,0.639238,0.545323,0.626289,0.603332,0.594702,0.944955,0.992032,0.10866,0.545987,0.282659,0.477423,0.512996,0.246029,0.684442,0.668323,0.252289,0.169817,0.00943232,0.288433,0.2459,0.344973,0.178173,0.0559486,0.123474,0.820567,0.264019,0.475682,0.303183,0.804113,0.0266489,0.342835,0.119826,0.301894,0.178494,0.0604567,0.881201,0.45709,0.88497,0.913615,0.226646,0.968634,0.95958,0.527529,0.821901,0.105941,0.419556,0.532314,0.98659,0.153696,0.408225,0.854652,0.873219,0.466721,0.499086,0.963347,0.96335,0.702688,0.179117,0.103171,0.39286,0.233636,0.440989,0.257729,0.039683,0.320023,0.374639,0.423589,0.654395,0.553764,0.881842,0.829682,0.873985,0.867872,0.618328,0.306166,0.779333,0.243658,0.599544,0.495798,0.445022,0.814697,0.272276,0.820844,0.933119,0.881751,0.941235,0.657444,0.499606,0.981226,0.583508,0.593283,0.512072,0.570278,0.76123,0.470169,0.0454024,0.890395,0.680742,0.135452,0.00180155,0.419041,0.527949,0.623739,0.668199,0.286795,0.88704,0.798921,0.404845,0.00493562,0.98689,0.968584,0.554737,0.121687,0.644292,0.896266,0.768924,0.263757,0.676265,0.0591533,0.128159,0.568476,0.872979,0.0788854,0.691728,0.640996,0.716559,0.944389,0.755516,0.854689,0.392672,0.695175,0.47782,0.143926,0.94041,0.726839,0.815977,0.45144,0.387437,0.754209,0.966269,0.439573,0.728115,0.844615,0.230951,0.89843,0.857776,0.776352,0.55051,0.740076,0.550751,0.34339,0.357469,0.921976,0.981951,0.35946,0.123887,0.851936,0.58353,0.647951,0.941624,0.618018,0.159451,0.389137,0.908394,0.257303,0.758542,0.00422096,0.820563,0.00416684,0.525986,0.0167624,0.445241,0.311171,0.0129556,0.517319,0.589334,0.266424,0.680064,0.831396,0.347038,0.395043,0.510722,0.891091,0.668043,0.189711,0.887534,0.126378,0.344831,0.0119067,0.354709,0.310229,0.527884,0.182378,0.810678,0.385934,0.732144,0.64073,0.563284,0.88863,0.659611,0.948304,0.858605,0.221444,0.349377,0.716217,0.0877539,0.485131,0.133564,0.432716,0.463985,0.249462,0.824095,0.855445,0.122211,0.327814,0.474168,0.93015,0.874281,0.617911,0.370813,0.879253,0.437086,0.518616,0.391156,0.272031,0.382256,0.129733,0.811526,0.455017,0.27871,0.0340406,0.37368,0.992635,0.326564,0.876201,0.449901,0.438091,0.856884,0.150162,0.900724,0.220131,0.970854,0.522567,0.184609,0.885467,0.0347473,0.647475,0.819645,0.370692,0.439769,0.609529,0.55265,0.688929,0.483783,0.170697,0.663913,0.595832,0.693087,0.678651,0.70465,|0.999559,0.688114,0.843802,0.223406,0.536427,0.836373,0.266572,0.884146,0.432634,0.847256,0.366567,0.127888,0.919708,0.0122836,0.639766,0.126033,0.0300941,0.716836,0.238549,0.973488,0.753985,0.545312,0.0896124,0.530372,0.178578,0.07235,0.9279,0.599184,0.719119,0.617647,0.321085,0.765209,0.137848,0.118005,0.922111,0.527892,0.534538,0.504299,0.742679,0.562709,0.454631,0.87726,0.403351,0.0256342,0.0362555,0.891392,0.786508,0.22308,0.0417108,0.196879,0.0884211,0.987662,0.079506,0.0115532,0.849372,0.56624,0.768794,0.429282,0.997758,0.937465,0.961715,0.900232,0.14576,0.329134,0.727872,0.0963947,0.661704,0.692992,0.434895,0.433015,0.450043,0.212249,0.150215,0.0326319,0.131275,0.69097,0.848091,0.513823,0.180205,0.30435,0.168701,0.537609,0.149617,0.556311,0.095883,0.760286,0.565194,0.919919,0.780465,0.592021,0.69206,0.00284904,0.561468,0.56955,0.110375,0.931291,0.800157,0.608235,0.495928,0.597958,0.0628291,0.500521,0.518225,0.956331,0.402251,0.118473,0.626908,0.562347,0.660353,0.417982,0.939386,0.194898,0.37543,0.67284,0.0442557,0.280197,0.92961,0.606552,0.368011,0.637083,0.242831,0.617856,0.010293,0.9209,0.975193,0.61351,0.195665,0.429743,0.657713,0.665956,0.714891,0.500182,0.743475,0.14319,0.582543,0.4749,0.805363,0.668949,0.419037,0.936645,0.220694,0.994502,0.763315,0.336902,0.938115,0.123137,0.453968,0.598203,0.514905,0.0885185,0.962992,0.771708,0.462842,0.691677,0.938783,0.948013,0.0176059,0.329007,0.399706,0.451176,0.229536,0.759923,0.54195,0.0622836,0.483565,0.0348396,0.644762,0.960172,0.0457663,0.262676,0.914291,0.861379,0.278457,0.00758165,0.149833,0.616085,0.597148,0.40261,0.817231,0.141716,0.951218,0.965602,0.211654,0.698953,0.642157,0.340788,0.47078,0.110169,0.418896,0.176726,0.12871,0.579802,0.233083,0.66174,0.383456,0.929443,0.827287,0.453152,0.227878,0.0984967,0.457548,0.084897,0.0664684,0.150814,0.82932,0.477354,0.857413,0.964803,0.0979762,0.400221,0.853611,0.750881,0.609457,0.129039,0.0280674,0.350426,0.43231,0.212865,0.00691819,0.5017,0.897179,0.0914177,0.0765819,0.144133,0.542723,0.114216,0.24005,0.625769,0.166427,0.610815,0.225589,0.336346,0.248883,0.958085,0.186362,0.400986,0.747264,0.941507,0.867776,0.275257,0.1295,0.963853,0.081275,0.558815,0.43023,0.281818,0.311306,0.498505,0.000977874,0.953172,0.426598,0.067799,0.119327,0.246546,0.850932,0.782196,0.494446,0.521801,0.957489,0.319713,0.801404,0.658642,0.03929,0.711215,0.470767,0.381767,0.711625,0.589589,0.180442,0.666029,0.291959,0.674705,0.497578,0.429175,0.787824,0.104895,0.634534,0.111925,0.232074,0.173641,0.922405,0.292908,0.9997,0.535871,0.989523,0.440569,0.855278,0.228105,0.203766,0.400288,0.994318,0.256087,0.0507543,0.681747,0.577408,0.439086,0.597435,0.46146,0.412319,0.587467,0.924459,0.329802,0.962563,0.358901,0.356025,0.398563,0.872809,0.562591,0.119525,0.299893,0.310924,0.201901,0.247276,0.193766,0.997271,0.0321786,0.935214,0.365265,0.298739,0.497377,0.414474,0.0792935,0.889084,0.00159156,0.685514,0.516889,0.629934,0.863764,0.897326,0.298286,0.69865,0.863655,0.658398,0.48446,0.861441,0.794981,0.776162,0.169055,0.794342,0.699881,0.690112,0.131804,0.986797,0.984573,0.706631,0.240076,0.836799,0.401065,0.250426,0.414426,0.0808676,0.475066,0.0497196,0.463139,0.495428,0.653116,0.542243,0.905586,0.574641,0.452381,0.696399,0.866351,0.758086,0.82592,0.0723751,0.43511,0.107726,0.0554768,0.843834,0.450881,0.601591,0.735139,0.646771,0.380187,0.22491,0.706645,0.941533,0.524765,0.26254,0.475142,0.918602,0.994024,0.930975,0.99034,0.840576,0.23818,0.0443864,0.591074,0.817348,0.254456,0.425171,0.611349,0.0410151,0.157477,0.12121,0.261254,0.781184,0.352787,0.796718,0.200123,0.291251,0.713171,0.316111,0.527158,0.0801792,0.0429073,0.221112,0.697362,0.644715,0.672442,0.88779,0.179518,0.753104,0.985249,0.192306,0.980465,0.976724,0.0106139,0.0406318,0.489712,0.226566,0.336739,0.691773,0.713511,0.0117755,0.346885,0.0961195,0.331574,0.0823232,0.348117,0.998008,0.534832,0.789879,0.187771,0.37348,0.0247856,0.0356102,0.27248,0.772288,0.488272,0.537872,0.419011,0.820211,0.553965,0.831549,0.422047,0.722726,0.583078,0.984647,0.271766,0.0337067,0.0618626,0.965905,0.510968,0.709814,0.363535,0.262646,0.508663,0.676352,0.265626,0.441184,0.849771,0.710645,0.122226,0.670171,0.362962,0.883209,0.815316,0.172034,0.250805,0.290246,0.621998,0.64592,0.255525,0.770312,0.0333441,0.233542,0.887123,0.0462383,0.407868,0.865576,0.539964,0.502822,0.579714,0.281222,0.40203,0.713721,0.699041,0.78485,0.523419,0.936933,0.00492483,0.139041,0.295885,0.556354,0.956368,0.270103,0.922115,0.123108,0.167475,0.354075,0.141604,0.0676585,0.151731,0.136097,0.258823,0.37127,0.346112,0.294881,0.941966,0.469122,0.222143,0.805529,0.327104,0.347592,0.218297,0.229084,0.65079,0.971973,0.0337605,0.169885,0.367981,0.0299444,0.563106,0.676046,0.388658,0.604159,0.0756647,0.0868825,0.020687,0.300017,0.847638,0.0245869,0.716492,0.267844,0.564587,0.470556,0.550127,0.309518,0.13746,0.475224,0.188554,0.237889,0.763408,0.185955,0.404797,0.13574,0.69422,0.472466,0.974832,0.791487,0.227477,0.474913,0.876526,0.826677,0.100172,0.162088,0.407415,0.167204,0.336056,0.608012,0.974557,0.7639,0.484863,0.564355,0.473727,0.393009,0.129562,0.0885989,0.456195,0.355426,0.540354,0.953846,0.670774,0.785758,0.43725,0.804648,0.669638,0.181843,0.738815,0.193071,0.306725,0.439492,0.984392,0.396256,0.723068,0.820172,0.917131,0.513372,0.623374,0.596537,0.0386969,0.945194,0.357012,0.484178,0.0990095,0.0804152,0.398307,0.781499,0.444736,0.658626,0.823083,0.400657,0.702124,0.283113,0.497656,0.562195,0.155644,0.636432,0.710633,0.172614,0.918834,0.346898,0.315345,0.903226,0.683608,0.333795,0.00513053,0.412404,0.982551,0.508464,0.507998,0.814955,0.388616,0.0945687,0.0600687,0.0905865,0.590703,0.0988012,0.922821,0.659421,0.904903,0.889204,0.511293,0.617203,0.0658891,0.744745,0.617202,0.610494,0.507082,0.426427,0.0257145,0.661281,0.130191,0.144158,0.490063,0.601408,0.27261,0.767134,0.26328,0.178705,0.254301,0.341973,0.594812,0.554506,0.071677,0.90098,0.28991,0.874187,0.981296,0.460703,0.174306,0.249244,0.645677,0.827045,0.321755,0.154198,0.528453,0.279326,0.363777,0.688885,0.385986,0.939546,0.22807,0.707462,0.480018,0.209203,0.886243,0.287162,0.304614,0.393743,0.506943,0.770129,0.500811,0.713237,0.324693,0.323702,0.917521,0.965097,0.75588,0.804943,0.67873,0.129223,0.0608247,0.723117,0.573042,0.593896,0.27463,0.251656,0.475049,0.958,0.379599,0.512089,0.957178,0.955807,0.10982,0.210949,0.520206,0.584442,0.239927,0.163306,0.625035,0.896039,0.136934,0.968671,0.572568,0.435265,0.575381,0.410681,0.664331,0.506366,0.935159,0.939037,0.61699,0.814848,0.410562,0.396058,0.283824,0.416911,0.377109,0.502677,0.368515,0.834846,0.680384,0.154224,0.142898,0.803345,0.556632,0.0192961,0.477911,0.52169,0.331689,0.902851,0.228706,0.802817,0.782096,0.363879,0.911635,0.281834,0.150324,0.0623077,0.236955,0.748551,0.0424763,0.494056,0.234144,0.740617,0.483414,0.0405169,0.484253,0.369911,0.829523,0.39924,0.679889,0.814592,0.905073,0.870783,0.35325,0.0188839,0.495213,0.715885,0.341061,0.0441434,0.428068,0.252703,0.53008,0.976778,0.702212,0.0813573,0.0629799,0.0457014,0.845584,0.0284185,0.725798,0.180806,0.635018,0.508953,0.0231327,0.811309,0.183898,0.0853755,0.135942,0.011766,0.457181,0.474823,0.756176,0.705925,0.126405,0.0788044,0.780371,0.945623,0.269613,0.809212,0.361671,0.506009,0.547985,0.496006,0.21034,0.708826,0.927038,0.226696,0.419097,0.949673,0.130691,0.0524568,0.864546,0.334648,0.651865,0.547099,0.714844,0.779092,0.652509,0.850039,0.319177,0.528199,0.123166,0.156494,0.68676,0.013518,0.488494,0.95254,0.233779,0.407807,0.00686854,0.425611,0.595394,0.151069,0.738135,0.701827,0.14713,0.983595,0.973275,0.35153,0.762453,0.863372,0.117689,0.295972,0.376819,0.738661,0.900975,0.780202,0.694875,0.506535,0.756613,0.493956,0.575045,0.968393,0.796733,0.452111,0.0580025,0.144468,0.286159,0.643472,0.930366,0.248187,0.1384,0.323718,0.164714,0.733644,0.649556,0.57557,0.796171,0.926344,0.0267406,0.560111,0.359612,0.686468,0.781391,0.327872,0.0614193,0.614636,0.12069,0.506077,0.732855,0.211558,0.659714,0.43257,0.616549,0.711016,0.382429,0.527327,0.947691,0.272678,0.0412619,0.853633,0.488845,0.237627,0.995787,0.568208,0.767283,0.577923,0.126864,0.118116,0.978958,0.140785,0.369124,0.722018,0.270405,0.417708,0.368951,0.4107,0.720135,0.471062,0.476421,0.136054,0.67314,0.863662,0.897568,0.0566448,0.110853,0.883777,0.269595,0.377326,0.636063,0.00432497,0.840855,0.304076,0.566984,0.189362,0.413282,0.58941,0.803295,0.743405,0.988438,0.155429,0.716043,0.495653,0.0580899,0.824657,0.114351,0.916615,0.514501,0.667737,0.594555,0.246702,0.951697,0.331505,0.668478,0.669261,0.857359,0.285083,0.117829,0.663389,0.996145,0.835503,0.92815,0.960251,0.0281745,0.78096,0.336226,0.57061,0.416651,0.479897,0.741396,0.169242,0.690134,0.899861,0.334223,0.831244,0.309594,0.4162,0.927397,0.0115896,0.236981,0.326177,0.128666,0.385844,0.366648,0.284401,0.775437,0.124997,0.309059,0.842794,0.693745,0.40832,0.797047,0.14251,0.92849,0.886354,0.580969,0.167013,0.398304,0.194608,0.887343,0.677378,0.721524,0.299833,0.682207,0.0792176,0.975286,|0.619219,0.902308,0.572299,0.25691,0.350025,0.37569,0.857715,0.346608,0.676202,0.402534,0.489824,0.885423,0.0551261,0.969883,0.00302511,0.0407356,0.54442,0.367353,0.816915,0.608099,0.6114,0.562984,0.0652128,0.287501,0.341616,0.632303,0.905559,0.237421,0.287412,0.794567,0.307425,0.653257,0.4687,0.766236,0.945327,0.769651,0.155073,0.923551,0.144503,0.0741401,0.707465,0.933237,0.176996,0.134038,0.224954,0.841224,0.609274,0.203749,0.539408,0.756604,0.0512514,0.555577,0.700177,0.507067,0.934279,0.47903,0.532311,0.176585,0.639152,0.509159,0.792157,0.326932,0.0601291,0.448017,0.432126,0.227275,0.68587,0.737597,0.960764,0.0570146,0.441047,0.476559,0.327158,0.599463,0.437022,0.765343,0.341978,0.251524,0.399118,0.827689,0.0647299,0.0547613,0.102051,0.839223,0.37615,0.167658,0.433772,0.528263,0.236842,0.847591,0.851086,0.551844,0.0847179,0.0715137,0.397114,0.522514,0.854006,0.870757,0.291075,0.12869,0.910222,0.680696,0.68679,0.765074,0.331809,0.0259253,0.883226,0.902893,0.932862,0.160539,0.690962,0.198057,0.389524,0.0674285,0.015902,0.412876,0.928894,0.571446,0.667854,0.780155,0.206132,0.487348,0.807268,0.55038,0.407065,0.0106423,0.653347,0.587768,0.974454,0.420279,0.676811,0.191033,0.0172775,0.326472,0.452761,0.43605,0.761644,0.43782,0.318443,0.665007,0.145514,0.17166,0.152059,0.490307,0.527723,0.407162,0.905879,0.266273,0.797299,0.895271,0.0656143,0.245153,0.686456,0.822151,0.7563,0.714969,0.940072,0.564741,0.917966,0.322031,0.114495,0.00118595,0.0726975,0.532536,0.727,0.867271,0.755174,0.499189,0.431524,0.403515,0.547263,0.495983,0.166821,0.927412,0.999218,0.00137055,0.869681,0.991243,0.119958,0.436643,0.0351076,0.356013,0.811357,0.303282,0.633036,0.341108,0.285658,0.45124,0.657806,0.294903,0.0859457,0.623656,0.446271,0.436886,0.470541,0.108629,0.244187,0.909171,0.484202,0.462509,0.918914,0.375792,0.263749,0.796649,0.466048,0.0264313,0.0948215,0.833486,0.990138,0.304123,0.116926,0.986104,0.101959,0.437098,0.401706,0.0850077,0.42294,0.637774,0.19021,0.686429,0.121919,0.627074,0.994975,0.350242,0.352182,0.17604,0.419658,0.375737,0.735473,0.231712,0.379366,0.645532,0.899459,0.43541,0.453965,0.852651,0.0118868,0.685085,0.170025,0.585906,0.776259,0.238121,0.480679,0.225393,0.76854,0.616375,0.399324,0.430213,0.30538,0.570064,0.411498,0.285806,0.422995,0.322311,0.60894,0.665888,0.330572,0.834822,0.711262,0.960532,0.756858,0.0217713,0.663936,0.828695,0.517683,0.611128,0.385165,0.638251,0.801919,0.0457544,0.339846,0.778625,0.158992,0.953259,0.716922,0.570317,0.152124,0.255159,0.132383,0.87382,0.768381,0.279239,0.553253,0.753742,0.175812,0.0897741,0.906988,0.317135,0.178269,0.843037,0.4291,0.84861,0.377793,0.362548,0.962684,0.282983,0.503179,0.453676,0.912434,0.371402,0.0737517,0.174478,0.00331032,0.423977,0.764632,0.109414,0.453557,0.910622,0.457171,0.767936,0.0825494,0.0413617,0.402606,0.427609,0.711809,0.468773,0.200451,0.42197,0.807027,0.99377,0.906285,0.108419,0.785654,0.812352,0.33732,0.303349,0.992047,0.526789,0.500163,0.0552894,0.862995,0.545219,0.311434,0.908482,0.857903,0.768047,0.0753691,0.256524,0.131197,0.297391,0.423701,0.181466,0.860935,0.0356563,0.553775,0.889463,0.297969,0.586455,0.486983,0.175052,0.295465,0.224289,0.644833,0.427453,0.433413,0.115002,0.590727,0.836928,0.524939,0.571099,0.00737983,0.842725,0.585216,0.706866,0.126628,0.69999,0.97843,0.357768,0.97584,0.0246659,0.808436,0.369376,0.963608,0.477743,0.0550383,0.20429,0.215257,0.287439,0.939462,0.902814,0.990404,0.55276,0.948748,0.76314,0.0993604,0.00405771,0.595248,0.623617,0.935179,0.453992,0.629865,0.660187,0.239716,0.786672,0.0823178,0.904497,0.484911,0.859905,0.299094,0.723653,0.0498367,0.129834,0.723364,0.741886,0.857732,0.635454,0.410058,0.531474,0.158458,0.175789,0.223632,0.186324,0.0820376,0.50295,0.608615,0.0783101,0.770704,0.293356,0.0476676,0.75721,0.953564,0.682744,0.893449,0.312853,0.715427,0.16587,0.869899,0.159333,0.463608,0.649144,0.417093,0.047501,0.471138,0.108894,0.65607,0.441906,0.0588537,0.0880587,0.819228,0.70305,0.264953,0.641158,0.758748,0.530984,0.330403,0.269267,0.487989,0.685659,0.67382,0.220613,0.689004,0.24092,0.128158,0.204508,0.385662,0.177572,0.232625,0.347762,0.197061,0.651285,0.339656,0.596285,0.580481,0.42408,0.330433,0.574906,0.917225,0.188223,0.952326,0.259279,0.861457,0.716537,0.1401,0.379559,0.652669,0.103187,0.372692,0.318079,0.725433,0.554636,0.279129,0.0726103,0.667898,0.992193,0.712302,0.221118,0.629329,0.0460118,0.724883,0.424766,0.587874,0.777805,0.606922,0.117718,0.803154,0.410626,0.372899,0.640157,0.0271246,0.875725,0.0105439,0.777839,0.0126393,0.324194,0.095168,0.217669,0.446246,0.695192,0.144864,0.477674,0.506842,0.126015,0.816913,0.145306,0.272918,0.554369,0.366687,0.406407,0.241513,0.51106,0.0886568,0.720241,0.679948,0.300493,0.466876,0.975184,0.192734,0.250563,0.0518743,0.880537,0.829586,0.546619,0.428437,0.350674,0.0404264,0.398451,0.604742,0.771017,0.0885563,0.756797,0.831904,0.471114,0.562077,0.80065,0.0878908,0.594434,0.19317,0.00350946,0.127096,0.299364,0.806275,0.826083,0.810607,0.781865,0.277977,0.565103,0.947267,0.900337,0.0463206,0.187359,0.764314,0.446804,0.972952,0.417906,0.687403,0.547709,0.337933,0.163677,0.703258,0.101616,0.964892,0.862173,0.992135,0.55334,0.737173,0.89117,0.314076,0.784627,0.450106,0.225091,0.936028,0.721074,0.725742,0.638364,0.36817,0.347827,0.652456,0.0800157,0.99325,0.230129,0.468831,0.234402,0.631796,0.201552,0.455331,0.997561,0.51109,0.297571,0.961051,0.299156,0.848187,0.708693,0.647911,0.511031,0.0582545,0.489934,0.27846,0.0977125,0.726025,0.700133,0.114311,0.55139,0.417617,0.237291,0.732528,0.522623,0.145538,0.673469,0.170038,0.18482,0.74501,0.471345,0.153554,0.481545,0.345359,0.80569,0.119137,0.499988,0.00397199,0.457226,0.277402,0.596197,0.557489,0.270279,0.81922,0.215987,0.302833,0.0574182,0.110702,0.538388,0.63407,0.249514,0.437323,0.234768,0.43395,0.291102,0.853687,0.952956,0.848947,0.016688,0.232028,0.641136,0.2858,0.442082,0.566135,0.690831,0.763085,0.617582,0.473469,0.608661,0.373819,0.263402,0.497247,0.156873,0.180329,0.780011,0.358304,0.741525,0.937271,0.343278,0.298311,0.336658,0.0537784,0.400775,0.80071,0.186683,0.229207,0.540317,0.386045,0.449873,0.725769,0.36808,0.454069,0.463917,0.193272,0.707433,0.855524,0.711385,0.374791,0.723636,0.750025,0.287296,0.204364,0.305276,0.683779,0.270307,0.803325,0.745226,0.158566,0.931043,0.547469,0.117782,0.339445,0.996473,0.330608,0.787013,0.965801,0.2426,0.387529,0.600598,0.389577,0.965149,0.606725,0.153643,0.41255,0.892462,0.847596,0.266292,0.617728,0.593124,0.913638,0.686252,0.270602,0.364106,0.833982,0.568817,0.717741,0.839221,0.0165563,0.0933042,0.583768,0.34331,0.308666,0.814911,0.263163,0.133348,0.661177,0.87236,0.859571,0.987329,0.858763,0.387846,0.885589,0.0939872,0.296815,0.306918,0.926139,0.543032,0.20152,0.271619,0.650202,0.668,0.887638,0.434664,0.606143,0.694258,0.35113,0.323704,0.619059,0.467537,0.0210955,0.68818,0.937073,0.668493,0.484477,0.667677,0.293767,0.0707723,0.876772,0.0552966,0.883161,0.502757,0.0726041,0.921053,0.0649939,0.151195,0.0496897,0.324213,0.0837394,0.0860029,0.800799,0.459289,0.474646,0.545035,0.875983,0.0102794,0.235403,0.412696,0.868774,0.0147806,0.608046,0.795967,0.451781,0.694019,0.0996028,0.557554,0.012625,0.00208461,0.0824208,0.455313,0.820655,0.767844,0.110665,0.603348,0.179832,0.634474,0.691611,0.499312,0.861586,0.891167,0.996212,0.318987,0.441063,0.846486,0.947421,0.777255,0.755288,0.0259073,0.0503567,0.589059,0.41497,0.154455,0.890581,0.0741141,0.241285,0.456109,0.0324548,0.900815,0.897254,0.285571,0.906941,0.180664,0.261996,0.606693,0.377494,0.840361,0.148658,0.50307,0.698603,0.556684,0.327258,0.82586,0.40221,0.584272,0.203336,0.880964,0.662238,0.302005,0.374772,0.00876331,0.0212243,0.901846,0.322061,0.528156,0.812869,0.976884,0.437456,0.835285,0.476971,0.365137,0.00138199,0.19061,0.512507,0.503096,0.758499,0.505686,0.262717,0.757458,0.33995,0.382861,0.117246,0.0680698,0.812046,0.202934,0.874544,0.044113,0.877904,0.189953,0.311786,0.766618,0.102216,0.571792,0.608051,0.885821,0.741955,0.265575,0.485176,0.780586,0.653033,0.811578,0.479433,0.662392,0.0381984,0.61862,0.492688,0.223398,0.766378,0.784461,0.121914,0.761495,0.344726,0.106566,0.193055,0.753145,0.559466,0.00445759,0.187022,0.827859,0.282614,0.233552,0.430883,0.487867,0.983609,0.59447,0.0623111,0.45798,0.932048,0.700961,0.252315,0.183314,0.238128,0.228213,0.691652,0.455844,0.598488,0.432318,0.889638,0.390609,0.984078,0.352111,0.165542,0.7418,0.741001,0.368354,0.157699,0.759484,0.646824,0.96101,0.841472,0.441892,0.520482,0.874665,0.105771,0.975529,0.482076,0.052007,0.578417,0.591726,0.733543,0.674164,0.783728,0.44868,0.207371,0.836032,0.766596,0.302771,0.217598,0.273378,0.643062,0.870715,0.76507,0.985464,0.193349,0.901268,0.550516,0.949419,0.425306,0.741929,0.546399,0.164464,0.754854,0.360166,0.39977,0.0863987,0.176021,0.156811,0.727245,0.402412,0.45531,0.537924,0.227535,0.199707,0.974995,0.750392,0.226685,0.572359,0.949475,0.325829,0.89941,0.26838,0.453531,0.803054,0.694271,0.404382,0.312298,0.483327,0.628962,0.835189,0.325865,0.514403,|0.0837206,0.785703,0.0787441,0.72614,0.619039,0.443482,0.584825,0.854924,0.646161,0.361075,0.609006,0.571449,0.736508,0.265247,0.195796,0.824469,0.967503,0.193246,0.20849,0.275331,0.578047,0.522782,0.0647807,0.459769,0.507738,0.420741,0.89328,0.985409,0.191666,0.29347,0.966965,0.94095,0.428006,0.215371,0.648757,0.327184,0.0804828,0.806903,0.834071,0.0858576,0.807327,0.51534,0.769781,0.364593,0.0705071,0.868494,0.389221,0.0971622,0.207178,0.5914,0.938825,0.156944,0.405609,0.816645,0.115871,0.147007,0.219444,0.909853,0.815818,0.385404,0.142597,0.260459,0.270402,0.421301,0.69503,0.447793,0.659329,0.470364,0.0950609,0.535337,0.76655,0.144378,0.337751,0.519253,0.816667,0.730717,0.0458417,0.206241,0.659198,0.68743,0.630897,0.103475,0.741446,0.526505,0.674242,0.994417,0.771679,0.801064,0.450884,0.945811,0.0672771,0.367383,0.52763,0.74961,0.0157336,0.726225,0.97443,0.418248,0.643034,0.504931,0.52469,0.979499,0.390683,0.140307,0.396395,0.278438,0.0921878,0.680565,0.300681,0.537983,0.802484,0.259462,0.542108,0.0699309,0.303582,0.719087,0.170263,0.578306,0.380007,0.431333,0.716338,0.608007,0.31262,0.308774,0.771299,0.675766,0.595417,0.166695,0.277891,0.226983,0.998749,0.940757,0.177385,0.703275,0.837178,0.79708,0.0476862,0.807739,0.449803,0.951995,0.48026,0.219953,0.343588,0.502204,0.878367,0.416676,0.810635,0.417594,0.199943,0.891816,0.475332,0.955831,0.27828,0.556476,0.282813,0.0175959,0.754854,0.214603,0.660027,0.275649,0.342796,0.131161,0.46861,0.859982,0.150745,0.412359,0.714236,0.808692,0.48885,0.99792,0.865567,0.288088,0.0354059,0.113648,0.742744,0.0735893,0.536089,0.865896,0.498442,0.548476,0.12899,0.196922,0.669059,0.484192,0.282177,0.152037,0.535861,0.219964,0.117864,0.807298,0.785413,0.460156,0.994204,0.702726,0.683804,0.830881,0.98828,0.0635627,0.104964,0.154344,0.411852,0.266049,0.847691,0.0824674,0.250549,0.0399122,0.786865,0.0428758,0.314706,0.654311,0.508366,0.0435615,0.34727,0.593774,0.655355,0.449709,0.298042,0.43094,0.853353,0.237764,0.524908,0.924123,0.225703,0.189126,0.882261,0.0460216,0.544687,0.241385,0.132206,0.286629,0.593692,0.339471,0.69342,0.015796,0.90446,0.873145,0.962886,0.802749,0.0577344,0.651646,0.637352,0.793989,0.637788,0.492735,0.750857,0.913973,0.62618,0.703763,0.0994079,0.503927,0.533127,0.768867,0.162633,0.201004,0.0999821,0.610816,0.142402,0.713313,0.208208,0.458942,0.902103,0.673993,0.964436,0.954879,0.909237,0.635967,0.837961,0.884318,0.79346,0.363304,0.617136,0.144787,0.559212,0.369239,0.483623,0.790723,0.947709,0.733246,0.290149,0.258195,0.404388,0.988555,0.660599,0.867337,0.880991,0.28028,0.130288,0.562916,0.936399,0.0450343,0.250858,0.616392,0.707533,0.422474,0.787764,0.727911,0.51089,0.983621,0.110664,0.768303,0.725261,0.771608,0.814278,0.833104,0.903069,0.849843,0.588941,0.745145,0.756729,0.355833,0.634579,0.117977,0.248548,0.395008,0.111284,0.0794651,0.109653,0.22137,0.38035,0.22949,0.562752,0.359559,0.0317143,0.323066,0.684936,0.865486,0.180776,0.502227,0.190491,0.716833,0.0250185,0.800937,0.602206,0.874261,0.553962,0.534203,0.880041,0.188775,0.0671619,0.428401,0.0656403,0.87665,0.482039,0.57286,0.739307,0.388352,0.92377,0.62233,0.236238,0.542298,0.238628,0.261129,0.426925,0.77742,0.667453,0.19695,0.233582,0.47475,0.722167,0.543135,0.204862,0.753922,0.798332,0.142175,0.616261,0.114572,0.88217,0.277941,0.736512,0.30575,0.401487,0.794872,0.169334,0.334337,0.858567,0.511604,0.125855,0.741291,0.495041,0.316156,0.931299,0.133531,0.393426,0.0478493,0.508921,0.700159,0.690241,0.592598,0.631717,0.827062,0.443466,0.0405095,0.0639619,0.752612,0.0552786,0.575402,0.270041,0.506799,0.96703,0.642951,0.498311,0.888714,0.172155,0.451311,0.0218354,0.743535,0.347454,0.0310829,0.558506,0.498249,0.911676,0.180783,0.297281,0.870712,0.340035,0.757563,0.968235,0.50432,0.0280397,0.537699,0.0467044,0.327188,0.610292,0.996572,0.979918,0.889789,0.0896851,0.258478,0.629273,0.173609,0.740643,0.818791,0.492137,0.567452,0.329449,0.622973,0.514377,0.0564114,0.195938,0.938941,0.431177,0.345616,0.131946,0.137256,0.472328,0.728119,0.301499,0.587615,0.703081,0.368989,0.996832,0.30927,0.814199,0.0436481,0.329511,0.105842,0.851535,0.362859,0.418693,0.670752,0.659295,0.955541,0.723228,0.892414,0.830737,0.382855,0.222493,0.883703,0.555933,0.756001,0.30462,0.98029,0.0509387,0.231705,0.497436,0.020439,0.528113,0.586029,0.576224,0.224304,0.110206,0.387409,0.369231,0.285873,6.00815e-05,0.741347,0.441903,0.307603,0.701682,0.61189,0.769149,0.0879082,0.0429507,0.994367,0.14833,0.621276,0.798177,0.130585,0.536511,0.340429,0.273743,0.438285,0.496999,0.407318,0.963987,0.798598,0.37451,0.423436,0.669292,0.447883,0.442028,0.760464,0.795805,0.0183648,0.202235,0.460513,0.0797346,0.543343,0.758909,0.94595,0.508723,0.202823,0.468738,0.700985,0.399228,0.280893,0.9114,0.349122,0.345996,0.971918,0.61188,0.662884,0.222547,0.725356,0.245283,0.133859,0.557244,0.318592,0.603824,0.294646,0.789655,0.275792,0.959582,0.794028,0.141838,0.898699,0.164042,0.973992,0.212801,0.041294,0.872428,0.218438,0.391076,0.567429,0.5606,0.583325,0.691503,0.420692,0.0343603,0.724861,0.437317,0.633448,0.0717257,0.745216,0.699471,0.71287,0.0239161,0.352893,0.937583,0.665313,0.389179,0.751233,0.338579,0.0226918,0.32261,0.783051,0.657998,0.949565,0.892523,0.74777,0.845133,0.485896,0.909218,0.545048,0.883941,0.371335,0.484768,0.801127,0.715425,0.674235,0.611173,0.459158,0.107091,0.754894,0.93672,0.596639,0.882385,0.342514,0.385142,0.602035,0.027786,0.807866,0.410668,0.166523,0.488444,0.305043,0.272562,0.115056,0.941339,0.320611,0.501468,0.461243,0.932416,0.767725,0.406846,0.203601,0.145549,0.59469,0.483633,0.502071,0.926252,0.105492,0.708579,0.631236,0.479062,0.0904731,0.876275,0.789592,0.105239,0.670063,0.913731,0.778017,0.16283,0.160812,0.0793523,0.270664,0.511002,0.0241316,0.882234,0.591377,0.986654,0.525875,0.895197,0.381967,0.0588704,0.39309,0.953781,0.183204,0.0201109,0.254042,0.521164,0.553685,0.0647736,0.124543,0.50479,0.900828,0.878019,0.347555,0.258404,0.21762,0.454093,0.292717,0.393731,0.372615,0.534426,0.855287,0.271806,0.382667,0.63,0.231326,0.183034,0.77187,0.382448,0.0740321,0.77866,0.978147,0.743956,0.933578,0.779552,0.0755156,0.545547,0.948018,0.977756,0.681922,0.713774,0.763786,0.0718002,0.536081,0.657014,0.59953,0.659456,0.555125,0.965253,0.22824,0.618809,0.814543,0.853755,0.70235,0.838212,0.354496,0.528281,0.11662,0.519971,0.353639,0.826797,0.863989,0.169833,0.624475,0.982274,0.872389,0.538624,0.476967,0.78245,0.706338,0.560765,0.323142,0.812087,0.212746,0.580527,0.225314,0.798799,0.414813,0.907742,0.612005,0.658902,0.513575,0.134725,0.510352,0.518864,0.0204095,0.172052,0.904383,0.130964,0.818192,0.672327,0.779739,0.828785,0.51585,0.448599,0.0807446,0.0717698,0.333205,0.542037,0.0893172,0.715915,0.0652255,0.785031,0.358751,0.651893,0.510381,0.236014,0.996559,0.299729,0.526186,0.121566,0.154824,0.946625,0.472718,0.204495,0.644177,0.624348,0.905732,0.587246,0.752308,0.375911,0.783342,0.113641,0.121651,0.530976,0.433693,0.94686,0.0478898,0.540552,0.101904,0.613263,0.505969,0.386567,0.318447,0.95934,0.310979,0.640888,0.79777,0.283694,0.982767,0.410257,0.834723,0.676866,0.0454391,0.158061,0.119428,0.53079,0.96605,0.519292,0.306972,0.377184,0.140145,0.859114,0.396447,0.229283,0.129002,0.655689,0.803717,0.933209,0.161599,0.236644,0.967959,0.697157,0.366995,0.0413899,0.667549,0.12995,0.301921,0.352886,0.528427,0.114204,0.857823,0.266223,0.641233,0.407465,0.921791,0.370823,0.397427,0.232954,0.10977,0.58348,0.727734,0.879647,0.840452,0.157254,0.339542,0.999115,0.112253,0.241208,0.567857,0.900872,0.172691,0.355946,0.265074,0.204388,0.827945,0.347708,0.746877,0.551688,0.709244,0.700612,0.155396,0.228564,0.158102,0.01042,0.573721,0.608325,0.389582,0.19841,0.793907,0.161736,0.91972,0.013367,0.483963,0.130548,0.663569,0.245588,0.249019,0.23285,0.92096,0.216004,0.557294,0.108803,0.506001,0.298437,0.334019,0.75624,0.859208,0.0572677,0.243611,0.54008,0.318764,0.108851,0.984216,0.675002,0.544625,0.930722,0.68289,0.704193,0.503679,0.000303149,0.832792,0.147751,0.529343,0.35643,0.0731834,0.968094,0.294065,0.970951,0.48688,0.875848,0.982342,0.783038,0.682446,0.374463,0.111196,0.902392,0.749947,0.689108,0.286679,0.943496,0.683503,0.43559,0.929961,0.938879,0.374633,0.613191,0.137528,0.463014,0.59447,0.199019,0.523767,0.586557,0.0183696,0.378239,0.232728,0.741608,0.297126,0.57452,0.0181046,0.112675,0.555045,0.359033,0.556362,0.921923,0.129849,0.689591,0.554775,0.220069,0.392923,0.0808281,0.953486,0.742214,0.403095,0.176274,0.468214,0.563132,0.962312,0.470882,0.230592,0.69076,0.39083,0.784877,0.50498,0.3915,0.54453,0.389948,0.756387,0.187484,0.0800014,0.738887,0.278604,0.200269,0.870371,0.900339,0.572866,0.57892,0.714094,0.764542,0.390507,0.393554,0.624664,0.0296466,0.140293,0.198106,0.456286,0.732418,0.659849,0.369762,0.606716,0.684038,0.217325,0.995726,0.658205,0.0323396,0.628951,0.919564,0.49042,0.00892323,0.628614,0.714601,0.558426,0.439699,0.990413,0.654133,0.892153,0.876109,0.171155,0.667464,0.478922,0.483066,0.109387,0.837174,0.202093,0.397194,0.981869,|0.940868,0.97036,0.247367,0.0213975,0.664858,0.359352,0.522619,0.872626,0.502389,0.413305,0.854338,0.336329,0.0568909,0.455301,0.686175,0.580479,0.881375,0.645646,0.0251309,0.657367,0.927566,0.338183,0.104494,0.475911,0.881883,0.333128,0.562102,0.69659,0.4935,0.960439,0.810197,0.569209,0.14955,0.162413,0.933335,0.214784,0.30983,0.157981,0.193681,0.84463,0.516022,0.453196,0.428371,0.214386,0.84355,0.336978,0.49923,0.122216,0.595849,0.874661,0.312637,0.22356,0.663168,0.537668,0.734315,0.444941,0.222253,0.189013,0.443056,0.319449,0.0967194,0.497957,0.387322,0.703784,0.761552,0.851589,0.842217,0.0603648,0.143807,0.184133,0.689214,0.547304,0.532844,0.897689,0.322102,0.411436,0.207832,0.441546,0.601433,0.258161,0.378341,0.373416,0.738363,0.315224,0.416768,0.212913,0.120467,0.526298,0.813234,0.770116,0.241696,0.579603,0.15819,0.158325,0.65381,0.333905,0.614525,0.678082,0.864082,0.668727,0.126885,0.506499,0.0881492,0.239079,0.852159,0.701009,0.369538,0.66725,0.83931,0.875545,0.973711,0.635355,0.57442,0.33596,0.918199,0.418286,0.484214,0.694089,0.900794,0.105344,0.710473,0.785724,0.49763,0.0245783,0.626281,0.438545,0.633135,0.19738,0.522633,0.929707,0.378891,0.226419,0.855008,0.0326439,0.430078,0.158404,0.831323,0.198576,0.343079,0.84556,0.262725,0.993082,0.148549,0.186445,0.948404,0.374675,0.507877,0.452821,0.0449172,0.296059,0.283431,0.34503,0.35554,0.402375,0.717424,0.406405,0.165702,0.759671,0.136182,0.351225,0.581051,0.17782,0.896256,0.218381,0.18549,0.445717,0.517992,0.178745,0.750413,0.481303,0.137847,0.527016,0.290835,0.72426,0.502228,0.694921,0.16261,0.3408,0.0101732,0.538666,0.030103,0.771717,0.948481,0.156973,0.74368,0.668108,0.639985,0.112999,0.765272,0.0293437,0.976817,0.180428,0.645769,0.229185,0.265825,0.393542,0.738643,0.14846,0.617217,0.84562,0.451337,0.812223,0.305125,0.117296,0.798341,0.665712,0.677502,0.929052,0.836241,0.344703,0.705638,0.38604,0.131189,0.719929,0.157734,0.121547,0.750659,0.810408,0.440697,0.169035,0.000585318,0.312166,0.118543,0.591652,0.102594,0.793804,0.552636,0.0783166,0.720703,0.275939,0.653812,0.493193,0.341981,0.490161,0.979393,0.99213,0.698553,0.900506,0.923452,0.0862415,0.931667,0.549235,0.539535,0.431575,0.355506,0.559707,0.0572965,0.617762,0.429029,0.820882,0.983566,0.508461,0.626337,0.679631,0.937613,0.296659,0.339543,0.827621,0.669593,0.111718,0.55456,0.357096,0.352593,0.951607,0.333073,0.916297,0.263384,0.828111,0.910831,0.0788996,0.820783,0.193256,0.946013,0.299895,0.399496,0.881605,0.714463,0.514132,0.230969,0.141072,0.444395,0.711962,0.78535,0.500341,0.114776,0.341764,0.112881,0.541683,0.394772,0.283112,0.405057,0.932499,0.104738,0.750979,0.914805,0.612798,0.00457686,0.902076,0.582962,0.35005,0.69447,0.780656,0.219202,0.757652,0.128297,0.32268,0.271218,0.103727,0.226363,0.537506,0.663843,0.21321,0.00339454,0.40731,0.0277137,0.171687,0.582678,0.844833,0.642633,0.116101,0.0841317,0.659187,0.99428,0.444718,0.0396829,0.453416,0.493958,0.98271,0.939354,0.421227,0.941042,0.480703,0.463539,0.825215,0.288412,0.177084,0.58531,0.688141,0.33493,0.0134053,0.203467,0.538046,0.409378,0.665833,0.371449,0.799426,0.848374,0.288157,0.494912,0.39269,0.712387,0.659779,0.986838,0.471005,0.678037,0.042704,0.012933,0.177789,0.195479,0.754507,0.651272,0.138687,0.458253,0.686682,0.513633,0.0981525,0.389445,0.110586,0.289915,0.514058,0.221189,0.437629,0.37122,0.165664,0.212259,0.0859548,0.180029,0.506733,0.400633,0.83795,0.25183,0.858391,0.643648,0.498385,0.182793,0.0383096,0.707524,0.292316,0.327456,0.574911,0.159276,0.0303698,0.780163,0.383152,0.237889,0.329959,0.343148,0.689445,0.842759,0.398683,0.0722034,0.885514,0.70918,0.0600012,0.426693,0.952721,0.309778,0.54127,0.957644,0.650398,0.262627,0.514488,0.321702,0.813125,0.115451,0.762154,0.366641,0.143269,0.685427,0.843623,0.103374,0.962152,0.851524,0.300016,0.785104,0.221184,0.275543,0.963072,0.849197,0.844144,0.701371,0.396768,0.469453,0.664737,0.687818,0.370357,0.0852146,0.489385,0.770253,0.65872,0.909591,0.818767,0.487198,0.88554,0.615871,0.085126,0.70008,0.613344,0.161479,0.761427,0.792509,0.23938,0.167132,0.218652,0.923887,0.7918,0.932503,0.825012,0.953399,0.769033,0.77259,0.184486,0.660605,0.839686,0.67671,0.403051,0.815812,0.103865,0.0191835,0.610444,0.907836,0.887555,0.565574,0.403106,0.473003,0.710551,0.0022245,0.986952,0.0935554,0.236938,0.697686,0.976176,0.134372,0.7262,0.00874734,0.439412,0.227152,0.331878,0.966415,0.0513203,0.0151043,0.452642,0.726711,0.546292,0.949695,0.503453,0.835524,0.0624858,0.325993,0.108842,0.365917,0.62465,0.730787,0.680833,0.250266,0.291406,0.373591,0.239751,0.0360347,0.581734,0.402546,0.824824,0.0981531,0.494151,0.668281,0.972803,0.358951,0.148583,0.121604,0.696695,0.116212,0.746339,0.154,0.917236,0.28254,0.97875,0.254726,0.0383747,0.164727,0.421966,0.686886,0.363379,0.302483,0.612506,0.366694,0.0964199,0.436316,0.12861,0.280028,0.715828,0.88978,0.492572,0.280152,0.398398,0.639579,0.922511,0.22082,0.695087,0.57298,0.166603,0.328596,0.940798,0.070313,0.46246,0.826067,0.0488067,0.164062,0.310395,0.972805,0.103107,0.175636,0.688543,0.327679,0.885452,0.241618,0.378351,0.909228,0.697322,0.467746,0.708396,0.897626,0.520325,0.246048,0.673715,0.835098,0.549193,0.825822,0.277429,0.663305,0.247294,0.44252,0.344801,0.788038,0.92164,0.483139,0.111367,0.252166,0.0450577,0.975101,0.529734,0.0310932,0.851619,0.256432,0.110436,0.296404,0.181037,0.996829,0.857691,0.647666,0.554229,0.685711,0.90108,0.276923,0.724131,0.375589,0.314952,0.363235,0.0436188,0.179918,0.0737826,0.466653,0.857492,0.0645643,0.843284,0.535601,0.257525,0.451023,0.603413,0.735656,0.220197,0.612074,0.572575,0.0420066,0.0354717,0.254833,0.729774,0.686435,0.13286,0.702137,0.717526,0.767641,0.525931,0.380917,0.320008,0.535895,0.325591,0.599485,0.728212,0.28449,0.229044,0.822535,0.895128,0.588757,0.88413,0.631412,0.937177,0.934632,0.667005,0.600014,0.902759,0.957679,0.189437,0.46795,0.727114,0.367346,0.182394,0.84321,0.887373,0.465146,0.0250444,0.402749,0.408249,0.751581,0.540392,0.95616,0.340789,0.737175,0.904239,0.927822,0.398698,0.126962,0.189646,0.466054,0.758358,0.39417,0.344513,0.34373,0.425037,0.484728,0.916748,0.967878,0.357525,0.464111,0.9392,0.839216,0.365587,0.430817,0.620123,0.856782,0.598846,0.895294,0.0594691,0.505461,0.00552434,0.275532,0.937161,0.388956,0.0097664,0.865167,0.982676,0.389071,0.0281539,0.963485,0.0693054,0.322537,0.552197,0.32977,0.685072,0.057623,0.914069,0.595153,0.504133,0.472243,0.700606,0.0355288,0.95686,0.559363,0.0477961,0.538464,0.844785,0.235264,0.998841,0.659886,0.433043,0.662267,0.527894,0.891525,0.0597872,0.475119,0.646217,0.0441684,0.0388592,0.764551,0.506628,0.445016,0.0132151,0.911673,0.194102,0.0236025,0.823339,0.595147,0.156604,0.351706,0.454413,0.28992,0.858476,0.0858836,0.519792,0.354516,0.587432,0.853541,0.0291029,0.920453,0.909833,0.740898,0.348271,0.985239,0.23829,0.527298,0.985605,0.102269,0.20064,0.445536,0.323293,0.047052,0.769696,0.0626473,0.810462,0.243256,0.791736,0.277799,0.226998,0.283851,0.12808,0.135418,0.894022,0.431985,0.292039,0.940441,0.0573422,0.446893,0.345738,0.506035,0.766029,0.991593,0.2822,0.242723,0.0937915,0.317735,0.315938,0.754126,0.268332,0.325354,0.265508,0.431369,0.813403,0.776057,0.563518,0.358545,0.589451,0.705013,0.695078,0.817241,0.366361,0.0975527,0.00102341,0.550655,0.660564,0.373917,0.0684104,0.580574,0.142531,0.410385,0.105385,0.52541,0.440205,0.874637,0.4455,0.323185,0.571302,0.712955,0.26347,0.509734,0.479815,0.756457,0.0351034,0.170231,0.799416,0.281318,0.852796,0.536822,0.391534,0.0491347,0.916439,0.118259,0.619477,0.441764,0.591717,0.549654,0.345661,0.573368,0.0380215,0.27657,0.850926,0.661675,0.35487,0.368844,0.24448,0.748863,0.132153,0.263328,0.735322,0.418974,0.421349,0.318235,0.307379,0.101984,0.0036459,0.429128,0.768857,0.462894,0.792839,0.772607,0.722597,0.489723,0.61106,0.896775,0.66303,0.937542,0.255724,0.81487,0.225189,0.913895,0.403746,0.266149,0.228375,0.361227,0.472882,0.62665,0.673115,0.652626,0.354529,0.322609,0.750094,0.136226,0.225712,0.341671,0.0398394,0.338651,0.434488,0.597593,0.0883273,0.701182,0.393089,0.0148576,0.579742,0.960599,0.833899,0.174087,0.184188,0.74619,0.0934585,0.486162,0.793737,0.60168,0.134492,0.566338,0.122249,0.345554,0.453311,0.343576,0.762673,0.751498,0.313853,0.906179,0.539699,0.0276679,0.846604,0.329662,0.290712,0.282831,0.638819,0.586832,0.499752,0.920387,0.497171,0.145861,0.122354,0.00542682,0.675454,0.725819,0.391952,0.707938,0.401636,0.84907,0.484946,0.795818,0.894029,0.813947,0.8564,0.636198,0.889378,0.34004,0.517601,0.187033,0.264751,0.164264,0.769439,0.901307,0.369334,0.663743,0.818431,0.0395746,0.528213,0.72517,0.67883,0.685421,0.497026,0.679423,0.787713,0.315496,0.763454,0.207471,0.824403,0.538791,0.214929,0.138002,0.444612,0.455559,0.570239,0.107033,0.868745,0.368562,0.0949462,0.710926,0.496914,0.440173,0.677514,0.556859,0.886666,0.352269,0.744245,0.513548,0.232707,0.833967,0.113675,0.913549,0.875598,0.438307,0.0120023,0.381,0.573348,0.0937803,0.53196,0.577102,0.0218695,0.336443,0.501701,0.771775,0.98966,|0.533584,0.800084,0.16136,0.534105,0.798871,0.503447,0.200252,0.968252,0.430215,0.231265,0.155533,0.229336,0.158015,0.579432,0.0728253,0.898858,0.553365,0.648155,0.340132,0.901401,0.424552,0.143644,0.489687,0.709935,0.365683,0.056555,0.851028,0.695354,0.344592,0.565285,0.905461,0.739783,0.478521,0.781912,0.314264,0.66884,0.160371,0.370655,0.902399,0.513018,0.0199863,0.852476,0.444643,0.388173,0.579802,0.0606591,0.876476,0.634183,0.326445,0.235738,0.401101,0.542212,0.0287278,0.882747,0.225377,0.68423,0.666823,0.268089,0.34629,0.058114,0.3587,0.747172,0.0288306,0.303257,0.161094,0.495604,0.120918,0.512919,0.762345,0.74015,0.551555,0.45575,0.612622,0.66061,0.445936,0.608338,0.212415,0.431138,0.0383942,0.514087,0.271094,0.522404,0.417916,0.602641,0.297221,0.570739,0.2543,0.113081,0.145282,0.829705,0.701071,0.946334,0.835337,0.875936,0.671665,0.47972,0.686346,0.661449,0.413599,0.808908,0.687047,0.685045,0.831655,0.715829,0.218851,0.866509,0.258628,0.0423517,0.288574,0.871154,0.771788,0.17645,0.297526,0.175755,0.312002,0.580365,0.956355,0.713092,0.984655,0.901761,0.971115,0.87853,0.830911,0.0460204,0.112437,0.382214,0.300246,0.910948,0.865912,0.760884,0.556739,0.986806,0.635087,0.320404,0.751318,0.251215,0.0803297,0.856072,0.90571,0.0607746,0.892416,0.303319,0.58171,0.989555,0.820926,0.813653,0.0650428,0.771327,0.129119,0.151035,0.857406,0.377759,0.728189,0.365796,0.114566,0.832398,0.0510847,0.758407,0.503873,0.929031,0.0194132,0.340331,0.422693,0.689925,0.180987,0.670212,0.152244,0.922933,0.702196,0.643032,0.348509,0.668741,0.0506557,0.734613,0.105088,0.687109,0.273783,0.223195,0.0892269,0.906584,0.315369,0.7771,0.342227,0.0694128,0.025944,0.72772,0.0733376,0.510979,0.362557,0.278613,0.416253,0.882171,0.404916,0.411819,0.567767,0.985904,0.338175,0.105624,0.689235,0.661901,0.286763,0.832863,0.00104243,0.212612,0.523275,0.108744,0.201471,0.38634,0.559114,0.381568,0.693675,0.0866058,0.379666,0.915835,0.48955,0.720135,0.0818279,0.799723,0.698637,0.281601,0.875326,0.275373,0.639874,0.434144,0.979309,0.226308,0.86371,0.888937,0.582334,0.509366,0.331447,0.699784,0.431137,0.431596,0.439399,0.551106,0.212315,0.564805,0.859886,0.00516242,0.326966,0.727904,0.303701,0.512249,0.411085,0.823293,0.629369,0.979391,0.518319,0.0713773,0.862539,0.401114,0.535913,0.200947,0.774024,0.606079,0.167277,0.427904,0.32707,0.499689,0.0074451,0.846471,0.985537,0.756915,0.399873,0.87148,0.264626,0.681504,0.937224,0.472741,0.864999,0.207222,0.475917,0.899691,0.720036,0.5548,0.458981,0.131095,0.522864,0.15309,0.332963,0.670103,0.857208,0.739399,0.599225,0.0544127,0.609422,0.789321,0.550923,0.0586011,0.475352,0.700157,0.114376,0.231917,0.0886907,0.129523,0.454608,0.290318,0.236375,0.101609,0.614826,0.0781121,0.717943,0.0298878,0.733251,0.0784988,0.956788,0.153127,0.439629,0.700235,0.913802,0.756519,0.391492,0.0299621,0.536935,0.613424,0.263068,0.501693,0.61361,0.92124,0.436681,0.277463,0.917937,0.18002,0.414507,0.523305,0.0157763,0.0989807,0.566822,0.681506,0.474889,0.0483148,0.129105,0.0131172,0.996429,0.0471515,0.0595298,0.5472,0.935281,0.268191,0.589152,0.691833,0.410412,0.0220445,0.192313,0.966609,0.851573,0.394898,0.708922,0.903766,0.939102,0.106438,0.140009,0.483665,0.782512,0.292003,0.660518,0.0981069,0.190375,0.774172,0.663723,0.34693,0.876104,0.261028,0.0170931,0.444112,0.188154,0.760211,0.353979,0.822772,0.190459,0.0339606,0.881206,0.612081,0.371676,0.134872,0.36233,0.0594019,0.341807,0.67885,0.534682,0.351879,0.572097,0.107443,0.317258,0.392397,0.804842,0.784341,0.120837,0.450162,0.322894,0.765969,0.846751,0.743226,0.0896016,0.567726,0.880157,0.497784,0.813742,0.644122,0.558297,0.780754,0.385279,0.0513788,0.976966,0.172487,0.645781,0.602613,0.78335,0.375053,0.49888,0.0049324,0.300487,0.926824,0.968835,0.0585526,0.114009,0.407047,0.910871,0.951421,0.114844,0.468472,0.644702,0.588655,0.659512,0.0882583,0.726633,0.491365,0.0493663,0.917387,0.069972,0.387605,0.240825,0.0729366,0.982856,0.859253,0.782012,0.560693,0.431678,0.106195,0.0139199,0.0428642,0.69643,0.807855,0.579973,0.941823,0.932418,0.666362,0.813305,0.424096,0.338076,0.569811,0.451119,0.0845312,0.171454,0.61762,0.543834,0.572984,0.3579,0.833016,0.218445,0.7173,0.481838,0.734137,0.247979,0.116294,0.567047,0.61011,0.840345,0.576572,0.159953,0.362479,0.673395,0.574557,0.936467,0.120213,0.484669,0.467431,0.0531927,0.706861,0.073517,0.0390695,0.0578078,0.427514,0.811071,0.0622228,0.910682,0.33645,0.0584013,0.929082,0.844928,0.63668,0.361024,0.0399071,0.200688,0.529313,0.573225,0.73296,0.984123,0.865734,0.869132,0.174133,0.880793,0.475349,0.946318,0.17713,0.527031,0.805546,0.744812,0.00203103,0.460213,0.36259,0.161511,0.95698,0.783386,0.11041,0.0880212,0.0348371,0.241916,0.510643,0.697794,0.927458,0.0804921,0.18517,0.451198,0.805529,0.846946,0.950246,0.583749,0.711136,0.437541,0.433673,0.71322,0.218951,0.671236,0.527066,0.17703,0.27658,0.135719,0.213276,0.381016,0.340747,0.598502,0.26702,0.3234,0.150055,0.113192,0.189044,0.794843,0.247685,0.962476,0.866562,0.80267,0.897911,0.319264,0.522818,0.30799,0.598397,0.249566,0.930922,0.46867,0.75541,0.832563,0.744164,0.755366,0.918394,0.0675391,0.998806,0.0998504,0.107342,0.089533,0.754488,0.700021,0.813543,0.903905,0.275666,0.56028,0.960984,0.935922,0.871122,0.367266,0.588456,0.804995,0.433838,0.66397,0.567085,0.673634,0.0140643,0.99525,0.135334,0.480388,0.698823,0.297552,0.556158,0.13444,0.898154,0.619128,0.640099,0.140282,0.569701,0.36599,0.240365,0.759002,0.727716,0.586322,0.215116,0.628746,0.139064,0.76972,0.720032,0.509634,0.435687,0.38042,0.332349,0.397652,0.0720666,0.140545,0.817856,0.655956,0.959127,0.0415477,0.855277,0.882022,0.0870324,0.162499,0.738267,0.0282372,0.921944,0.88794,0.685326,0.439038,0.659445,0.243225,0.879573,0.572666,0.469762,0.616749,0.144421,0.823506,0.752466,0.599863,0.0270587,0.490878,0.0969275,0.983429,0.560409,0.0974481,0.0577902,0.278471,0.234596,0.135559,0.867865,0.418259,0.19333,0.487787,0.523661,0.0839655,0.568549,0.53889,0.280484,0.228125,0.572508,0.928299,0.10694,0.877598,0.185734,0.102695,0.0510492,0.607192,0.669411,0.331784,0.934669,0.310566,0.859136,0.763512,0.755542,0.309357,0.239775,0.758397,0.583227,0.835182,0.108438,0.210573,0.166892,0.149115,0.693649,0.000771523,0.774873,0.197383,0.656459,0.29477,0.161447,0.690063,0.583452,0.102499,0.530195,0.383654,0.707249,0.744368,0.428386,0.866744,0.725733,0.945115,0.0132264,0.989927,0.240611,0.165025,0.234753,0.745874,0.000721991,0.237951,0.620353,0.583559,0.149681,0.534014,0.352462,0.213443,0.590361,0.769035,0.197058,0.59982,0.641719,0.892655,0.0735533,0.939428,0.916573,0.336869,0.198118,0.132683,0.817837,0.113314,0.0275933,0.787467,0.883416,0.0260041,0.473227,0.753922,0.336019,0.370327,0.267506,0.187356,0.657802,0.702517,0.73959,0.117936,0.491252,0.560983,0.884515,0.51749,0.544337,0.991844,0.526389,0.948428,0.46363,0.0285172,0.834757,0.593601,0.555658,0.228852,0.565119,0.703421,0.34517,0.866691,0.888887,0.664982,0.139196,0.480777,0.357006,0.320377,0.55042,0.796146,0.452454,0.403811,0.41587,0.179213,0.187659,0.463767,0.843894,0.387578,0.423524,0.352667,0.853831,0.205222,0.130747,0.728481,0.433431,0.626077,0.792857,0.0466551,0.728132,0.502098,0.809923,0.643125,0.507771,0.95715,0.607254,0.831831,0.767353,0.824447,0.901318,0.913192,0.668863,0.160283,0.151587,0.438228,0.484904,0.356109,0.829851,0.91453,0.266592,0.136215,0.636427,0.563796,0.43583,0.875203,0.503775,0.0866042,0.544551,0.789778,0.166972,0.835121,0.179059,0.689811,0.383166,0.333485,0.123404,0.349295,0.0529444,0.113031,0.437778,0.244409,0.726434,0.854011,0.827183,0.528817,0.451492,0.635906,0.497834,0.0300315,0.449497,0.248469,0.0226535,0.964028,0.712301,0.462102,0.859448,0.118078,0.777043,0.334281,0.792225,0.38703,0.833766,0.163915,0.173734,0.281412,0.963737,0.0528531,0.487294,0.853736,0.154194,0.53199,0.219719,0.245513,0.00481284,0.181269,0.190984,0.351691,0.164151,0.905908,0.700102,0.905955,0.585434,0.636567,0.859647,0.479302,0.0845438,0.00507915,0.476237,0.113798,0.988949,0.0235316,0.221011,0.947066,0.588481,0.724361,0.149365,0.289185,0.106251,0.856429,0.509469,0.858363,0.440283,0.928466,0.420474,0.902825,0.157423,0.631828,0.191352,0.496146,0.620103,0.384383,0.389968,0.930025,0.186433,0.224203,0.475382,0.587915,0.960306,0.876549,0.942974,0.344944,0.0834913,0.325443,0.184271,0.749457,0.0692058,0.769305,0.740581,0.770097,0.557662,0.451311,0.0476513,0.0486236,0.0662986,0.132826,0.798975,0.0233135,0.891795,0.467537,0.824736,0.254269,0.0673095,0.189111,0.15429,0.790257,0.819571,0.227136,0.0164304,0.577215,0.161885,0.129622,0.777945,0.797106,0.526433,0.521735,0.324796,0.650482,0.811339,0.534893,0.0575736,0.287139,0.23655,0.597887,0.358332,0.828812,0.144309,0.201964,0.38192,0.0163014,0.664706,0.362542,0.316407,0.114931,0.730827,0.126426,0.892203,0.462135,0.0110515,0.453871,0.721527,0.354272,0.950994,0.148492,0.415079,0.401011,0.594611,0.0221046,0.526118,0.416733,0.0124432,0.161742,0.710811,0.816028,0.834602,0.132778,0.59637,0.0647326,0.816649,0.00192803,0.252548,0.579598,0.0305014,0.399155,0.795741,0.742272,0.697589,0.227888,0.624729,0.750141,0.389135,|0.120141,0.492247,0.086992,0.452142,0.568211,0.732832,0.136317,0.8025,0.340198,0.164352,0.200055,0.598267,0.558574,0.0196881,0.964769,0.774272,0.0346885,0.214833,0.565418,0.942822,0.498879,0.823907,0.528594,0.224893,0.752256,0.16591,0.309711,0.4046,0.125343,0.679637,0.178712,0.266021,0.264206,0.0449094,0.223589,0.642865,0.9748,0.685984,0.3994,0.457862,0.862621,0.158691,0.236475,0.741108,0.141962,0.906591,0.662258,0.0571584,0.365486,0.132964,0.955128,0.62715,0.185416,0.546712,0.628542,0.977552,0.887668,0.321522,0.553462,0.765855,0.563525,0.741863,0.902509,0.450555,0.589332,0.777859,0.869271,0.490236,0.150403,0.767945,0.759433,0.528056,0.389527,0.525118,0.259576,0.304945,0.364419,0.532895,0.307003,0.0786481,0.803426,0.788826,0.860779,0.653346,0.531909,0.183897,0.309205,0.278229,0.901897,0.263551,0.184112,0.600091,0.652942,0.511997,0.73906,0.197691,0.380659,0.481128,0.944626,0.700513,0.565746,0.462979,0.202138,0.133974,0.484676,0.977219,0.264567,0.329861,0.660717,0.144695,0.483665,0.939514,0.273845,0.817875,0.78125,0.146076,0.844182,0.922874,0.672506,0.877619,0.351159,0.788957,0.0118944,0.0222956,0.379757,0.426959,0.266338,0.0349697,0.196548,0.82827,0.263389,0.545875,0.679599,0.669621,0.697454,0.253066,0.713438,0.769817,0.54066,0.459507,0.220719,0.305449,0.102331,0.328754,0.828591,0.643444,0.836074,0.61015,0.915376,0.571903,0.787592,0.731995,0.394992,0.889959,0.560231,0.561387,0.904909,0.563205,0.292392,0.52023,0.0417243,0.921114,0.377104,0.756761,0.706667,0.249199,0.300075,0.184675,0.0513087,0.76688,0.846348,0.894529,0.0712582,0.824692,0.0969254,0.252056,0.112115,0.471474,0.400997,0.196572,0.904185,0.926201,0.40023,0.265515,0.534331,0.37693,0.0323596,0.274479,0.879154,0.106913,0.4358,0.437565,0.270741,0.764474,0.803014,0.61858,0.898247,0.306414,0.244348,0.546865,0.575813,0.129211,0.285768,0.862663,0.0203214,0.446723,0.530105,0.867313,0.216773,0.0597173,0.217489,0.589252,0.650667,0.896041,0.179978,0.605629,0.768728,0.0414338,0.0215216,0.120611,0.538973,0.403498,0.232969,0.118211,0.203713,0.94236,0.738015,0.742861,0.477364,0.58876,0.208764,0.448554,0.293408,0.0386914,0.158723,0.798885,0.426374,0.788691,0.621782,0.244579,0.506895,0.701607,0.130303,0.965366,0.237887,0.889538,0.485997,0.0300301,0.0794123,0.816099,0.319516,0.371354,0.514834,0.0768215,0.642742,0.0761663,0.121386,0.545692,0.655341,0.882085,0.825078,0.0873279,0.628122,0.405543,0.380254,0.318445,0.254785,0.0494562,0.613933,0.068397,0.589926,0.93022,0.187997,0.868422,0.996217,0.637685,0.897173,0.239279,0.871091,0.00710762,0.277031,0.24224,0.801918,0.709717,0.182089,0.756812,0.290124,0.233316,0.0136816,0.728525,0.0377206,0.743799,0.265874,0.634182,0.401091,0.866178,0.870135,0.231874,0.0960395,0.16384,0.918383,0.65379,0.44235,0.35906,0.911313,0.331291,0.587192,0.617279,0.731468,0.475049,0.192703,0.490759,0.568869,0.098528,0.941536,0.290894,0.404185,0.529436,0.321913,0.0270338,0.415672,0.0272871,0.331474,0.722421,0.29566,0.162837,0.802734,0.529338,0.844224,0.669481,0.165565,0.108275,0.160386,0.950588,0.254294,0.963328,0.285346,0.840745,0.235128,0.162763,0.564675,0.563275,0.755422,0.283369,0.169855,0.832268,0.40056,0.271921,0.0687838,0.0495769,0.631021,0.277346,0.684597,0.513742,0.220885,0.239999,0.314741,0.207839,0.76761,0.693987,0.368549,0.163984,0.103872,0.459099,0.60974,0.467616,0.531061,0.814179,0.147865,0.226549,0.51279,0.150307,0.151235,0.603842,0.859597,0.985909,0.914564,0.727106,0.542297,0.792945,0.238461,0.812571,0.136399,0.803826,0.889498,0.324556,0.332113,0.494262,0.241161,0.330057,0.65606,0.881531,0.830753,0.044385,0.738728,0.135065,0.0118313,0.266523,0.138505,0.435674,0.154129,0.494462,0.81535,0.518615,0.127151,0.782709,0.0137339,0.627962,0.807873,0.781273,0.570672,0.725199,0.889604,0.97363,0.0452246,0.156422,0.607866,0.05721,0.582991,0.0444977,0.821281,0.222333,0.901364,0.586872,0.839771,0.257624,0.218036,0.42271,0.902696,0.293856,0.483194,0.60402,0.708708,0.327747,0.778045,0.306335,0.861893,0.584227,0.348612,0.445507,0.647449,0.42408,0.32944,0.459551,0.500734,0.881281,0.446343,0.374021,0.846074,0.250503,0.939577,0.105993,0.968045,0.590301,0.970845,0.197731,0.0910252,0.184097,0.102936,0.345355,0.287799,0.743851,0.638754,0.409279,0.731737,0.308949,0.854953,0.131019,0.855027,0.728877,0.799652,0.843529,0.153701,0.582489,0.467899,0.104325,0.94744,0.466202,0.0695227,0.82178,0.137492,0.407515,0.594359,0.10319,0.728892,0.180347,0.754063,0.262173,0.955613,0.899805,0.583673,0.837011,0.28676,0.48139,0.751827,0.332414,0.21475,0.637303,0.0182537,0.3264,0.772341,0.511979,0.292795,0.184868,0.345788,0.277191,0.0733285,0.848583,0.456565,0.530021,0.502722,0.654013,0.1689,0.645691,0.30151,0.388155,0.929363,0.379441,0.472454,0.892173,0.436791,0.450517,0.0171057,0.997567,0.76484,0.931698,0.609785,0.970428,0.576512,0.673565,0.403927,0.00153399,0.466496,0.103022,0.508789,0.945989,0.417761,0.388266,0.211729,0.79226,0.80128,0.673784,0.878229,0.653657,0.071785,0.331635,0.608963,0.607915,0.73702,0.22796,0.219206,0.762564,0.249935,0.725664,0.885254,0.72304,0.384641,0.478498,0.740241,0.5318,0.304565,0.331225,0.0551695,0.696062,0.853856,0.557166,0.217769,0.965715,0.156808,0.957634,0.640443,0.0858029,0.96162,0.97343,0.29697,0.93443,0.194385,0.997243,0.548019,0.285822,0.285775,0.0407519,0.116582,0.461869,0.000281692,0.196594,0.711698,0.458159,0.309746,0.194437,0.390096,0.505133,0.305158,0.0568692,0.913468,0.462863,0.900816,0.709282,0.811264,0.245756,0.634083,0.64752,0.69418,0.243317,0.446276,0.134724,0.200208,0.262225,0.0454894,0.948726,0.861383,0.0367865,0.423563,0.657268,0.816743,0.531372,0.355885,0.846133,0.422722,0.844979,0.262936,0.336237,0.520217,0.46833,0.559199,0.309509,0.397802,0.9242,0.893158,0.176846,0.823384,0.0316469,0.47408,0.340508,0.0116247,0.561417,0.141359,0.811577,0.105929,0.537932,0.411039,0.154836,0.612225,0.173989,0.357107,0.616839,0.697894,0.175533,0.586315,0.247072,0.961461,0.0201147,0.789195,0.990218,0.896165,0.324,0.383769,0.244791,0.0123838,0.269707,0.00579548,0.744119,0.718454,0.53795,0.675479,0.239287,0.383173,0.981977,0.424048,0.409914,0.899224,0.0127648,0.747792,0.729527,0.40507,0.546264,0.635383,0.385591,0.704369,0.975182,0.701011,0.997449,0.784897,0.948438,0.894346,0.798449,0.63149,0.549036,0.829443,0.936386,0.0383192,0.542203,0.290041,0.138369,0.338767,0.944859,0.164699,0.0642334,0.949181,0.384508,0.226546,0.187786,0.57027,0.0152001,0.427938,0.952335,0.993957,0.898552,0.152898,0.334749,0.748966,0.735976,0.157626,0.479917,0.460604,0.0897344,0.115819,0.747287,0.790792,0.725023,0.138575,0.346167,0.266012,0.639482,0.221789,0.454404,0.104707,0.01661,0.692328,0.0203163,0.661783,0.481035,0.692165,0.253132,0.137062,0.552344,0.589576,0.891635,0.0737566,0.514112,0.630041,0.80135,0.326625,0.362902,0.679047,0.745482,0.731003,0.00289428,0.679658,0.820051,0.438136,0.944301,0.340282,0.128969,0.346519,0.553042,0.257609,0.402103,0.0963874,0.819681,0.603953,0.171154,0.987743,0.268937,0.92811,0.634994,0.617252,0.171071,0.54862,0.748219,0.0266626,0.524367,0.454426,0.773219,0.167736,0.206155,0.292081,0.905737,0.854589,0.15848,0.0704847,0.2064,0.717912,0.794049,0.504462,0.921376,0.886006,0.605686,0.867679,0.379671,0.725709,0.716898,0.860148,0.206586,0.520053,0.389499,0.930873,0.0282893,0.633898,0.429201,0.847743,0.343591,0.0590241,0.0797443,0.287054,0.194508,0.128201,0.523559,0.477704,0.999803,0.674506,0.273568,0.15125,0.0449785,0.583345,0.57373,0.936095,0.598037,0.986843,0.0655568,0.0727669,0.0288554,0.856484,0.990948,0.00112212,0.750416,0.368886,0.0274399,0.875977,0.516365,0.661612,0.885739,0.0327163,0.165237,0.913803,0.336707,0.352777,0.977225,0.554721,0.357972,0.514496,0.873622,0.432682,0.940027,0.658297,0.36234,0.158864,0.799403,0.680511,0.0188189,0.810146,0.958105,0.710247,0.883615,0.417931,0.00345647,0.596563,0.811272,0.84655,0.163614,0.587964,0.980693,0.920965,0.474701,0.60314,0.729861,0.59299,0.00287175,0.553992,0.731945,0.859797,0.88498,0.720921,0.197221,0.646253,0.162018,0.952624,0.746635,0.779615,0.0637228,0.0041557,0.283076,0.915742,0.813157,0.88141,0.828749,0.451699,0.770417,0.046322,0.559285,0.24183,0.107926,0.295865,0.41015,0.165013,0.0690877,0.617743,0.399403,0.88714,0.410513,0.970241,0.756266,0.250428,0.303288,0.411688,0.0391157,0.813825,0.0462884,0.656183,0.185186,0.9988,0.221677,0.980251,0.514026,0.750288,0.238554,0.584736,0.23212,0.555633,0.570883,0.0649191,0.185327,0.0734367,0.0468348,0.23482,0.616178,0.505446,0.889372,0.280895,0.32184,0.603644,0.297296,0.962835,0.729429,0.909727,0.481945,0.719053,0.156614,0.154129,0.713208,0.41899,0.215779,0.681599,0.273636,0.868037,0.0848058,0.261614,0.397289,0.635758,0.475777,0.129306,0.783366,0.630289,0.827737,0.333712,0.592837,0.33131,0.811969,0.163941,0.594641,0.107111,0.539259,0.185856,0.192754,0.297944,0.906992,0.0251585,0.159279,0.91252,0.319208,0.823357,0.0705402,0.737662,0.987767,0.926965,0.273932,0.309172,0.237266,0.960912,0.701616,0.304952,0.0649946,0.339246,0.57006,0.0381756,0.390137,0.587867,0.176978,0.0513463,0.318211,0.989783,0.0940778,0.0670238,0.497221,0.733092,0.949943,0.702988,0.574748,0.832107,0.874168,|0.52568,0.828753,0.567833,0.720566,0.43052,0.895131,0.951567,0.593371,0.779154,0.478995,0.704077,0.825876,0.0601013,0.652955,0.121312,0.627236,0.61154,0.047112,0.586399,0.307817,0.902933,0.0126095,0.834229,0.578797,0.151367,0.510831,0.348011,0.412583,0.542974,0.391778,0.161946,0.168092,0.723437,0.537927,0.840735,0.304591,0.531739,0.00464767,0.374543,0.620508,0.787445,0.481699,0.163899,0.166878,0.0479206,0.351496,0.925693,0.415412,0.853355,0.097334,0.34968,0.145424,0.40878,0.272398,0.0343122,0.81497,0.168941,0.391303,0.477034,0.232851,0.361953,0.138398,0.339792,0.962689,0.69874,0.268205,0.421568,0.0343834,0.905831,0.93594,0.00915802,0.919318,0.0956604,0.907164,0.411994,0.344894,0.975966,0.890984,0.2871,0.758422,0.32815,0.734544,0.333372,0.83366,0.334877,0.243613,0.631526,0.517764,0.733874,0.807799,0.722971,0.661479,0.80813,0.00509268,0.219987,0.488852,0.733015,0.989969,0.735971,0.818648,0.34454,0.432705,0.468607,0.675934,0.592281,0.810977,0.0846236,0.547835,0.769674,0.325767,0.505298,0.506455,0.12727,0.729929,0.524646,0.722378,0.415952,0.997689,0.937489,0.144609,0.974845,0.610054,0.982101,0.453231,0.933792,0.584852,0.7145,0.473685,0.463942,0.652897,0.936187,0.124599,0.669231,0.440174,0.974474,0.0397648,0.708335,0.580748,0.156827,0.403521,0.410957,0.570114,0.148218,0.101616,0.953832,0.656338,0.420556,0.752871,0.00962567,0.990885,0.769911,0.496767,0.536284,0.511187,0.0689192,0.00109899,0.973049,0.808664,0.0730034,0.167805,0.358175,0.532763,0.754165,0.724677,0.90832,0.260205,0.442645,0.358888,0.417766,0.640259,0.614764,0.133151,0.802031,0.70253,0.00992912,0.951473,0.198752,0.532197,0.297368,0.114063,0.516605,0.756886,0.146118,0.328584,0.134189,0.18104,0.493147,0.733024,0.303827,0.32743,0.559123,0.0545225,0.0766833,0.155858,0.163227,0.309295,0.336823,0.17907,0.97918,0.756734,0.141112,0.860549,0.116756,0.383678,0.290434,0.631861,0.679575,0.670569,0.433915,0.0214383,0.665114,0.264723,0.923827,0.541277,0.402005,0.711413,0.118874,0.645916,0.281908,0.7331,0.145546,0.691614,0.939089,0.484359,0.971835,0.741485,0.771112,0.75541,0.82173,0.416034,0.577454,0.471154,0.83986,0.533214,0.875958,0.412803,0.493428,0.223879,0.665522,0.684206,0.737193,0.7932,0.136547,0.605751,0.401323,0.987123,0.305284,0.645656,0.247092,0.457152,0.0675302,0.229353,0.0397663,0.885866,0.2653,0.130904,0.875103,0.507956,0.50556,0.1731,0.907923,0.606308,0.658546,0.180094,0.745055,0.143561,0.704185,0.798494,0.556191,0.803518,0.0854297,0.876746,0.0610021,0.268267,0.204826,0.721428,0.935674,0.71132,0.956105,0.615978,0.224015,0.148958,0.990454,0.445364,0.668911,0.381589,0.706889,0.913363,0.709191,0.119187,0.297021,0.498061,0.509122,0.412182,0.345766,0.472293,0.399304,0.355367,0.0967467,0.215986,0.776506,0.514526,0.0238069,0.435946,0.0293322,0.182973,0.272177,0.909857,0.406553,0.869614,0.655432,0.522046,0.10979,0.403322,0.28085,0.589148,0.610036,0.974447,0.0829822,0.397885,0.546481,0.885912,0.00801426,0.512946,0.815156,0.524554,0.730017,0.287943,0.477579,0.423437,0.313899,0.0583496,0.381184,0.454318,0.0852537,0.798706,0.292324,0.283824,0.649901,0.562558,0.215118,0.809103,0.347126,0.539635,0.0572582,0.843449,0.411037,0.61635,0.5445,0.556158,0.304843,0.70461,0.0527755,0.300074,0.779946,0.881839,0.119004,0.647505,0.494293,0.137388,0.766806,0.602463,0.0057928,0.869231,0.509085,0.906095,0.000297964,0.579489,0.647599,0.20024,0.851107,0.427109,0.5611,0.556458,0.989079,0.821372,0.485828,0.765078,0.715338,0.614813,0.320204,0.802472,0.539346,0.932526,0.909656,0.289717,0.028471,0.790687,0.936769,0.862141,0.0569492,0.40817,0.872009,0.399723,0.736418,0.651279,0.0221614,0.794123,0.8938,0.376884,0.356501,0.693386,0.961775,0.375119,0.158554,0.154282,0.573996,0.0722526,0.217406,0.666726,0.552925,0.165431,0.981662,0.52542,0.87995,0.654601,0.0623058,0.977103,0.102275,0.976362,0.685369,0.945142,0.228078,0.346007,0.548678,0.285713,0.215665,0.699666,0.804781,0.999569,0.717317,0.217276,0.554029,0.599817,0.37073,0.883173,0.619303,0.276866,0.0657024,0.536129,0.328059,0.7421,0.0513296,0.152037,0.795823,0.0289234,0.676174,0.127142,0.306942,0.673917,0.198898,0.860975,0.505919,0.547932,0.698006,0.315125,0.695161,0.773858,0.99623,0.269146,0.704897,0.348692,0.786822,0.246774,0.680386,0.129128,0.860715,0.0341361,0.269679,0.481653,0.526686,0.261451,0.553366,0.0341578,0.710164,0.205591,0.252985,0.284764,0.459982,0.859729,0.17643,0.928773,0.612237,0.907486,0.759194,0.427283,0.969369,0.427929,0.718101,0.465649,0.63124,0.526692,0.547944,0.45763,0.873272,0.148994,0.893523,0.45439,0.672009,0.61354,0.958332,0.306283,0.356454,0.747613,0.625123,0.248043,0.616489,0.789583,0.0157566,0.760363,0.0280939,0.411663,0.513067,0.2473,0.855546,0.0693052,0.70934,0.752144,0.30393,0.705338,0.164941,0.676359,0.0686551,0.877436,0.301984,0.67293,0.0201837,0.329573,0.347136,0.341424,0.910458,0.608922,0.818615,0.161251,0.33641,0.602699,0.506325,0.803145,0.266844,0.243015,0.612092,0.433587,0.608862,0.514404,0.872475,0.501458,0.708956,0.60551,0.336602,0.422836,0.935655,0.867,0.275732,0.591624,0.048916,0.254514,0.706684,0.180587,0.469592,0.689688,0.394003,0.121043,0.876106,0.578803,0.0252976,0.716901,0.414642,0.691109,0.752747,0.563919,0.310004,0.800514,0.961232,0.353834,0.848719,0.63718,0.428957,0.571401,0.213165,0.24435,0.992154,0.749892,0.290893,0.93975,0.309733,0.94424,0.752804,0.950587,0.00299251,0.167461,0.81183,0.689958,0.0865634,0.427961,0.875169,0.811277,0.556264,0.529975,0.186052,0.940112,0.774696,0.569533,0.973248,0.281274,0.570557,0.0765517,0.345035,0.965688,0.833485,0.228465,0.316328,0.102763,0.932981,0.125852,0.0668335,0.108239,0.0822966,0.878537,0.0420094,0.782837,0.129749,0.283171,0.033485,0.247573,0.0827904,0.632614,0.270648,0.437504,0.761006,0.703626,0.238762,0.467555,0.628433,0.984413,0.886806,0.410664,0.873842,0.0955085,0.862584,0.675449,0.332627,0.00354379,0.252969,0.769575,0.827304,0.748816,0.88255,0.54938,0.913078,0.775585,0.0641658,0.897922,0.906761,0.149457,0.940428,0.110933,0.586541,0.405528,0.538462,0.114958,0.914004,0.333366,0.137439,0.283993,0.819622,0.684323,0.799318,0.973439,0.908385,0.657879,0.858865,0.57043,0.37657,0.721916,0.18969,0.834616,0.767459,0.227745,0.580258,0.424166,0.683697,0.756462,0.31978,0.411115,0.847502,0.0734899,0.702682,0.988608,0.313612,0.295013,0.604642,0.891617,0.351937,0.639577,0.979913,0.198979,0.976779,0.616313,0.200957,0.204209,0.115872,0.564239,0.398087,0.21842,0.698663,0.225418,0.23351,0.829014,0.865965,0.0270983,0.507925,0.606661,0.285135,0.396997,0.572237,0.275975,0.311318,0.909579,0.715652,0.46284,0.574555,0.654369,0.310183,0.661526,0.343353,0.414467,0.443783,0.179673,0.15591,0.264953,0.523354,0.173996,0.388234,0.173824,0.635297,0.184449,0.932228,0.59347,0.670993,0.291639,0.919198,0.578856,0.0073604,0.893063,0.584031,0.549165,0.175354,0.844145,0.443486,0.787228,0.0390665,0.55719,0.832489,0.086432,0.6295,0.554046,0.445655,0.666185,0.718311,0.76715,0.665258,0.794306,0.620194,0.694013,0.925593,0.940634,0.334044,0.272552,0.37792,0.600581,0.563398,0.39326,0.0481287,0.297908,0.411761,0.886055,0.382343,0.34538,0.169789,0.623179,0.274275,0.277458,0.872503,0.561087,0.852568,0.663668,0.645066,0.714676,0.0484894,0.617483,0.122287,0.808398,0.421281,0.880792,0.239114,0.316626,0.658082,0.0130822,0.97082,0.49769,0.392647,0.719213,0.745359,0.433979,0.39743,0.964156,0.66958,0.176529,0.243541,0.889879,0.200243,0.326346,0.577322,0.978801,0.235329,0.00505435,0.819405,0.236108,0.0340829,0.879493,0.771866,0.651113,0.892264,0.165313,0.563739,0.283496,0.0452886,0.983082,0.595286,0.858404,0.531416,0.656467,0.314898,0.348735,0.378804,0.120088,0.366987,0.401724,0.391264,0.264286,0.944194,0.861445,0.383055,0.573175,0.954564,0.734344,0.961632,0.403246,0.315602,0.317981,0.383142,0.665318,0.873918,0.182976,0.994474,0.579329,0.610067,0.56739,0.906517,0.912123,0.726551,0.912822,0.915759,0.675038,0.558761,0.0526821,0.185828,0.691097,0.00498241,0.841945,0.0426711,0.577982,0.473714,0.415151,0.130307,0.399159,0.0438543,0.285765,0.849274,0.0466918,0.658405,0.812289,0.811676,0.479682,0.218302,0.622492,0.189428,0.0664615,0.640141,0.712484,0.276403,0.582025,0.936843,0.455778,0.551875,0.00799513,0.754633,0.40733,0.42956,0.37153,0.763982,0.315973,0.440766,0.653893,0.700551,0.266216,0.428912,0.412869,0.726704,0.142903,0.215708,0.73897,0.625061,0.893912,0.0122261,0.216062,0.999778,0.530622,0.816778,0.159861,0.732052,0.0261875,0.198195,0.498435,0.0403585,0.628451,0.179614,0.22667,0.118225,0.255065,0.251083,0.509122,0.917021,0.0587327,0.989339,0.633193,0.643459,0.567627,0.73817,0.172288,0.458557,0.751342,0.924565,0.215258,0.215185,0.0303257,0.781976,0.964022,0.529546,0.174764,0.205925,0.857398,0.864508,0.51472,0.90378,0.881315,0.80106,0.709876,0.39037,0.728769,0.228818,0.234155,0.378323,0.793546,0.866547,0.830635,0.866584,0.584154,0.0777047,0.0975132,0.427339,0.101127,0.882972,0.654047,0.461053,0.830794,0.894749,0.558551,0.640834,0.199129,0.173484,0.691567,0.0673672,0.478553,0.491176,0.77917,0.406271,0.379887,0.444134,0.343819,0.568947,0.660023,0.434028,0.454367,0.441068,0.15325,0.8667,0.275236,0.053695,0.346019,|0.777719,0.837399,0.43736,0.226835,0.987456,0.418351,0.671282,0.332036,0.209521,0.0924321,0.149757,0.841763,0.19648,0.133099,0.123326,0.895926,0.805335,0.593562,0.488053,0.868385,0.133961,0.858512,0.882303,0.595381,0.350534,0.472839,0.0425611,0.148238,0.633864,0.299827,0.302132,0.309396,0.38468,0.831808,0.0907876,0.714434,0.493931,0.344318,0.285764,0.776466,0.292415,0.104227,0.034783,0.444512,0.736828,0.330474,0.963821,0.327278,0.0316102,0.926721,0.629578,0.125492,0.53351,0.0598859,0.724933,0.428876,0.228171,0.540364,0.13844,0.704656,0.28326,0.149482,0.14102,0.0821511,0.604509,0.991918,0.238764,0.962226,0.567444,0.582322,0.470467,0.809022,0.672729,0.144772,0.438736,0.851858,0.504399,0.677863,0.442454,0.369463,0.198514,0.17479,0.579674,0.603551,0.78779,0.422404,0.226848,0.383868,0.606177,0.859974,0.37408,0.211914,0.666737,0.102476,0.567848,0.170296,0.598343,0.680766,0.758867,0.416855,0.0599756,0.688814,0.291151,0.466428,0.258949,0.71358,0.301912,0.726413,0.782479,0.0530198,0.9875,0.0317506,0.206954,0.420685,0.120223,0.492533,0.742843,0.577113,0.471252,0.920339,0.104136,0.0539368,0.00167525,0.789063,0.474561,0.800073,0.370509,0.990148,0.640369,0.338709,0.358789,0.181985,0.751672,0.687265,0.87313,0.733765,0.643341,0.422606,0.133201,0.823663,0.341747,0.114463,0.997,0.703853,0.481091,0.521855,0.922889,0.234465,0.721093,0.181796,0.896778,0.394777,0.963038,0.43011,0.244293,0.699882,0.624364,0.0545915,0.310802,0.560755,0.891995,0.667329,0.803229,0.447881,0.599718,0.34508,0.257562,0.348912,0.74411,0.0810881,0.369906,0.403227,0.182103,0.930282,0.502778,0.481935,0.68067,0.0529066,0.660359,0.467607,0.859745,0.463454,0.63212,0.758887,0.897557,0.708356,0.924229,0.942511,0.543929,0.563023,0.865243,0.443996,0.454367,0.858852,0.735087,0.74839,0.26052,0.461251,0.73662,0.525959,0.29109,0.21461,0.486079,0.516535,0.845772,0.350114,0.184609,0.464857,0.942062,0.595064,0.870406,0.15885,0.564263,0.0717145,0.703758,0.321506,0.273861,0.990425,0.254311,0.427116,0.527286,0.768817,0.212233,0.556433,0.546999,0.539415,0.192839,0.679686,0.863245,0.53586,0.185937,0.308427,0.323658,0.323199,0.875066,0.203255,0.678557,0.614623,0.846948,0.0462307,0.885499,0.812676,0.255689,0.468442,0.165873,0.00173938,0.996161,0.404031,0.546688,0.742692,0.431678,0.75388,0.415682,0.300802,0.790553,0.601831,0.24713,0.186114,0.920879,0.815059,0.511416,0.199986,0.243048,0.446353,0.39107,0.697236,0.511019,0.0605022,0.789324,0.179753,0.0267961,0.700168,0.851391,0.182854,0.721534,0.313318,0.839291,0.657552,0.619608,0.654437,0.0437021,0.180258,0.342189,0.679011,0.165548,0.821327,0.518814,0.418433,0.519386,0.401969,0.447477,0.940311,0.19229,0.753787,0.996312,0.354265,0.268244,0.194836,0.0511001,0.0301045,0.483742,0.266392,0.205697,0.50223,0.824534,0.210363,0.133799,0.739412,0.216722,0.438601,0.272113,0.59499,0.812369,0.112398,0.933112,0.0589526,0.455242,0.650031,0.425956,0.251928,0.656378,0.66235,0.283643,0.886424,0.883248,0.0715315,0.465823,0.13781,0.709318,0.045723,0.755883,0.996904,0.136275,0.156857,0.397174,0.868582,0.167587,0.47506,0.758613,0.875811,0.428321,0.487623,0.915515,0.116282,0.709452,0.856199,0.501313,0.191032,0.539651,0.79634,0.244232,0.52912,0.887557,0.343477,0.645242,0.710831,0.0813272,0.604684,0.678839,0.437967,0.707853,0.849242,0.11001,0.7231,0.234537,0.856212,0.643194,0.128043,0.45222,0.664878,0.00704068,0.0677326,0.343207,0.202123,0.092122,0.017535,0.252275,0.800951,0.204346,0.220772,0.358825,0.797302,0.65531,0.728569,0.307355,0.39766,0.655964,0.189424,0.818067,0.989458,0.570688,0.900124,0.411773,0.730281,0.984419,0.362074,0.451772,0.315124,0.841098,0.765651,0.749694,0.979103,0.226601,0.321251,0.727722,0.0934772,0.409843,0.18504,0.675124,0.167625,0.948989,0.953269,0.42195,0.487661,0.73982,0.0723346,0.419364,0.372532,0.172931,0.686024,0.742425,0.0330917,0.505224,0.496338,0.0641779,0.952936,0.904287,0.887373,0.660409,0.618146,0.75996,0.646656,0.483274,0.469433,0.0799266,0.717572,0.20528,0.511318,0.428447,0.994658,0.263829,0.510252,0.991173,0.176963,0.898643,0.372621,0.284535,0.0653279,0.715858,0.847522,0.285002,0.21695,0.0320572,0.840002,0.168274,0.0354607,0.37628,0.345142,0.0242279,0.203827,0.909291,0.997406,0.834611,0.307713,0.698512,0.735371,0.929759,0.552404,0.784862,0.383796,0.420057,0.15133,0.796771,0.206149,0.889265,0.344587,0.291836,0.199725,0.446944,0.182368,0.182316,0.333415,0.551791,0.19777,0.726841,0.0157087,0.174782,0.998641,0.927527,0.790129,0.0526211,0.0454168,0.433516,0.637157,0.387684,0.563628,0.445426,0.779379,0.39985,0.485054,0.85645,0.739535,0.780308,0.343246,0.387688,0.776918,0.644699,0.669929,0.327645,0.0311189,0.514535,0.867738,0.969613,0.396329,0.889277,0.751037,0.141391,0.994174,0.315524,0.93008,0.219405,0.139781,0.147965,0.980274,0.283572,0.0600926,0.62586,0.355255,0.302668,0.298174,0.481193,0.780366,0.374244,0.320278,0.575916,0.420968,0.605962,0.869815,0.0738617,0.322466,0.690316,0.962283,0.322726,0.554973,0.71721,0.556007,0.297791,0.577626,0.523047,0.127026,0.621335,0.420019,0.967414,0.999793,0.639112,0.684687,0.930293,0.509317,0.328904,0.934872,0.98223,0.164721,0.728338,0.621257,0.389965,0.726012,0.918114,0.63775,0.932447,0.167943,0.670238,0.176268,0.986919,0.492395,0.846066,0.44674,0.5871,0.216992,0.802638,0.333585,0.0152625,0.0986159,0.357809,0.867726,0.162057,0.995269,0.246875,0.786532,0.929312,0.710446,0.963487,0.806024,0.460976,0.613747,0.418673,0.173851,0.146,0.645101,0.314447,0.33254,0.809403,0.15646,0.950756,0.183009,0.0526714,0.395891,0.961222,0.337843,0.323913,0.0661633,0.835166,0.487128,0.444685,0.80411,0.31607,0.42512,0.895693,0.941918,0.977815,0.381266,0.726879,0.196163,0.858438,0.780987,0.384324,0.342857,0.899455,0.543678,0.43652,0.915732,0.719675,0.323075,0.903079,0.154357,0.833686,0.788776,0.860443,0.0837774,0.0457082,0.200367,0.853693,0.860416,0.699492,0.499189,0.98844,0.780723,0.184674,0.886078,0.203067,0.912141,0.500206,0.374436,0.932017,0.844211,0.263702,0.431359,0.567306,0.940245,0.629669,0.278583,0.117696,0.882091,0.0303576,0.671513,0.685695,0.766388,0.179498,0.682531,0.17156,0.734254,0.729612,0.485747,0.635842,0.56667,0.409751,0.837646,0.827185,0.089685,0.480827,0.0857481,0.919479,0.977244,0.0388549,0.986146,0.222522,0.268202,0.329218,0.920939,0.659465,0.463504,0.0744928,0.258567,0.843974,0.815708,0.134247,0.931221,0.667828,0.633929,0.163046,0.84388,0.757037,0.871972,0.813421,0.801337,0.640666,0.130702,0.212701,0.380249,0.711326,0.957177,0.945962,0.414398,0.862515,0.995469,0.360978,0.438415,0.798931,0.33749,0.455717,0.0340377,0.846148,0.517899,0.857656,0.942493,0.190591,0.186591,0.779999,0.671148,0.573676,0.335218,0.0996671,0.0127301,0.510101,0.27109,0.629416,0.410711,0.110932,0.824587,0.502744,0.88294,0.659186,0.221401,0.464098,0.437388,0.825733,0.698292,0.260531,0.637016,0.290105,0.701067,0.146276,0.420238,0.9387,0.942474,0.733978,0.639969,0.787018,0.0535535,0.29934,0.970578,0.560421,0.524259,0.601318,0.871389,0.294951,0.678451,0.46941,0.896902,0.196299,0.175611,0.874302,0.0842447,0.219654,0.236791,0.594793,0.940019,0.320633,0.737676,0.515641,0.8764,0.212802,0.23553,0.702633,0.494446,0.34431,0.437102,0.947528,0.896593,0.245645,0.0638856,0.0180866,0.718362,0.606211,0.442199,0.288242,0.917695,0.511977,0.917239,0.746989,0.974217,0.926099,0.600503,0.421042,0.57204,0.136335,0.219583,0.619869,0.599004,0.179873,0.0876251,0.945247,0.218912,0.457604,0.914346,0.924195,0.11502,0.918726,0.679732,0.727824,0.133439,0.280889,0.783677,0.200886,0.469351,0.804843,0.54033,0.380101,0.265361,0.177199,0.7867,0.0321525,0.137224,0.729275,0.275305,0.373897,0.690845,0.47983,0.849674,0.0355745,0.0964193,0.0218849,0.319349,0.65775,0.861829,0.221282,0.74876,0.398169,0.730136,0.98682,0.626548,0.991894,0.807085,0.0519822,0.462669,0.640144,0.031586,0.542319,0.457329,0.556048,0.666332,0.874289,0.103936,0.323442,0.464762,0.241078,0.0950536,0.563424,0.192888,0.231374,0.1948,0.94021,0.914782,0.266352,0.216161,0.901588,0.166383,0.0689511,0.21252,0.218665,0.651852,0.516082,0.288962,0.926201,0.389479,0.320799,0.474939,0.966713,0.468834,0.201317,0.498688,0.647553,0.14766,0.324727,0.00629783,0.535725,0.344395,0.350812,0.98675,0.597245,0.724601,0.899821,0.911722,0.393476,0.0717517,0.827627,0.0642961,0.206149,0.843568,0.945021,0.342855,0.036036,0.0428877,0.734782,0.630919,0.743699,0.87794,0.249869,0.340844,0.621426,0.983373,0.897671,0.373107,0.318093,0.157142,0.756873,0.278746,0.512651,0.0837941,0.711397,0.258104,0.241328,0.569218,0.662611,0.893564,0.859244,0.505621,0.256358,0.591516,0.66926,0.438033,0.775521,0.984503,0.257326,0.690292,0.440952,0.648835,0.850834,0.380634,0.227215,0.676933,0.74081,0.838384,0.2728,0.186548,0.927291,0.951716,0.201391,0.295752,0.558543,0.226027,0.214175,0.816619,0.916435,0.954041,0.341603,0.796744,0.545812,0.276479,0.12593,0.542624,0.690306,0.157034,0.990635,0.635562,0.747377,0.166535,0.596317,0.0237942,0.862031,0.43156,0.266544,0.24849,0.941076,0.957757,0.310851,0.477985,0.674839,0.0724617,0.238897,0.921185,0.514165,0.667383,0.956683,0.073245,0.903051,0.677194,0.0927465,0.0243977,0.504657,0.960048,|0.975292,0.191968,0.0303397,0.0721306,0.234308,0.271031,0.75068,0.618147,0.770691,0.494034,0.974492,0.291721,0.457964,0.206586,0.811349,0.789855,0.689605,0.392884,0.921119,0.561231,0.478092,0.530527,0.392965,0.51359,0.719879,0.34953,0.619411,0.13135,0.749991,0.586377,0.283664,0.890709,0.99348,0.0275008,0.608583,0.509198,0.550792,0.847533,0.699696,0.783215,0.895066,0.010113,0.963154,0.883703,0.0984718,0.928037,0.531716,0.840422,0.713362,0.0124502,0.335968,0.262657,0.263541,0.303925,0.823473,0.771413,0.811839,0.299918,0.0898173,0.0704295,0.182416,0.138209,0.0857553,0.095144,0.601083,0.263102,0.391235,0.808574,0.483389,0.628738,0.287922,0.296803,0.82542,0.115524,0.103616,0.189456,0.257743,0.0866595,0.361845,0.855353,0.153422,0.591701,0.231283,0.659651,0.592849,0.415618,0.666451,0.183914,0.540561,0.135502,0.255047,0.146153,0.109777,0.0938714,0.939275,0.739169,0.138483,0.959164,0.421415,0.490489,0.377076,0.331619,0.592124,0.366216,0.966025,0.87703,0.977247,0.152956,0.610505,0.0523,0.668286,0.948689,0.19912,0.162586,0.83268,0.274693,0.0841353,0.151067,0.313048,0.20765,0.278334,0.187916,0.389151,0.400461,0.444985,0.0285504,0.998075,0.106768,0.297732,0.755322,0.0778846,0.423114,0.405498,0.872773,0.479222,0.127509,0.265202,0.741802,0.969198,0.0485533,0.174152,0.905099,0.418631,0.316558,0.83492,0.279787,0.261313,0.859701,0.329356,0.427687,0.308532,0.715225,0.602899,0.152192,0.449649,0.280102,0.155819,0.295388,0.03095,0.0305149,0.407396,0.863342,0.610412,0.38208,0.564948,0.368576,0.273759,0.658876,0.305388,0.78169,0.0858287,0.269552,0.3457,0.925901,0.490293,0.820848,0.405937,0.119341,0.960272,0.717643,0.777655,0.424044,0.0508046,0.395411,0.0689834,0.619243,0.996045,0.386676,0.966376,0.0400292,0.38696,0.891125,0.655761,0.0266182,0.599168,0.141527,0.0684481,0.990687,0.835388,0.0632203,0.220999,0.933562,0.158955,0.708108,0.228361,0.697716,0.639305,0.807541,0.96527,0.863547,0.915416,0.568158,0.971808,0.0854461,0.253583,0.921169,0.0267347,0.593291,0.359242,0.919029,0.577586,0.546604,0.689666,0.765468,0.935622,0.842623,0.448754,0.727725,0.693274,0.359238,0.550634,0.0347312,0.586209,0.614646,0.425263,0.976435,0.216774,0.494826,0.135031,0.930974,0.713298,0.743427,0.750124,0.382232,0.0891874,0.65416,0.425854,0.902759,0.0522568,0.065429,0.382625,0.488942,0.224984,0.740489,0.393334,0.174727,0.339161,0.236582,0.636729,0.91643,0.867203,0.81906,0.806884,0.0260792,0.621714,0.245914,0.0620514,0.864453,0.094017,0.168173,0.808835,0.210171,0.912567,0.967795,0.820476,0.16816,0.0630064,0.652183,0.151019,0.0751869,0.636213,0.626232,0.721741,0.0432998,0.48326,0.381069,0.222549,0.108156,0.984161,0.409607,0.112501,0.779669,0.505122,0.997341,0.0273743,0.263012,0.11858,0.377015,0.145894,0.973546,0.953418,0.813619,0.800125,0.625016,0.737312,0.494981,0.92968,0.945013,0.0391912,0.294147,0.697261,0.254154,0.342965,0.521898,0.0607824,0.393829,0.737718,0.198913,0.142753,0.0360852,0.884659,0.271916,0.106308,0.0320993,0.735135,0.118319,0.925476,0.815409,0.0240551,0.741644,0.961496,0.842221,0.862584,0.941438,0.16918,0.491611,0.481299,0.419744,0.496434,0.661795,0.355151,0.75622,0.901092,0.260975,0.985538,0.958429,0.384291,0.27336,0.00428468,0.123978,0.492922,0.877184,0.340305,0.88885,0.319911,0.619767,0.409833,0.0766115,0.668238,0.855589,0.143779,0.161943,0.676816,0.197681,0.761492,0.977558,0.748942,0.673942,0.486681,0.2724,0.269602,0.474253,0.737356,0.29612,0.84692,0.53586,0.279423,0.655403,0.603798,0.129216,0.0830789,0.150925,0.563161,0.234128,0.787973,0.473375,0.440555,0.63713,0.965271,0.757886,0.572447,0.432314,0.72759,0.476479,0.691538,0.0308266,0.690297,0.912123,0.0662485,0.848288,0.464696,0.136247,0.982772,0.107965,0.0575501,0.380165,0.827635,0.695486,0.72922,0.774199,0.77272,0.657373,0.570281,0.968979,0.601853,0.496432,0.994845,0.656018,0.177024,0.458603,0.311711,0.242099,0.505756,0.41264,0.224452,0.93832,0.444568,0.660582,0.561925,0.333772,0.872068,0.00565475,0.346594,0.845292,0.830897,0.714329,0.449019,0.376633,0.167372,0.134432,0.953629,0.987704,0.106642,0.455271,0.179504,0.306949,0.442036,0.766525,0.200146,0.244204,0.896485,0.112876,0.98312,0.850319,0.546258,0.496803,0.573788,0.752999,0.288897,0.735713,0.894597,0.170695,0.979247,0.0580012,0.475564,0.0797992,0.149908,0.302413,0.686222,0.0268169,0.351099,0.710387,0.585851,0.404511,0.437761,0.903637,0.25487,0.799409,0.724196,0.961763,0.550998,0.67079,0.0652452,0.0587238,0.98574,0.226799,0.681742,0.0767726,0.941178,0.977425,0.411037,0.715108,0.48184,0.534152,0.968785,0.604568,0.962309,0.247671,0.433556,0.958291,0.323808,0.383177,0.241564,0.591636,0.495481,0.516906,0.522895,0.783544,0.883764,0.915564,0.442408,0.903348,0.456558,0.770994,0.079354,0.189502,0.0956235,0.0725169,0.646824,0.906468,0.0131776,0.332761,0.0567348,0.0771414,0.717003,0.566481,0.297984,0.744622,0.762897,0.497933,0.9066,0.123684,0.118544,0.556035,0.514394,0.528215,0.0418096,0.336128,0.893666,0.72642,0.902684,0.69154,0.158404,0.810847,0.624967,0.44867,0.428139,0.424885,0.11956,0.5335,0.920089,0.406749,0.95789,0.840707,0.576188,0.163713,0.0817891,0.734404,0.221882,0.541338,0.276183,0.534797,0.752189,0.415296,0.531537,0.449528,0.678164,0.155149,0.673334,0.42007,0.431152,0.399053,0.0909652,0.862243,0.0687984,0.894317,0.298101,0.0792627,0.749218,0.399761,0.446163,0.164769,0.399208,0.591582,0.557498,0.352809,0.685667,0.0560957,0.96539,0.658757,0.25547,0.653195,0.300204,0.169653,0.123739,0.731825,0.687476,0.531214,0.168081,0.17385,0.153368,0.61948,0.527136,0.645851,0.50999,0.781273,0.717451,0.911732,0.333596,0.719775,0.681965,0.93462,0.011726,0.0784162,0.678049,0.723014,0.490942,0.517597,0.00258505,0.576086,0.00950968,0.204003,0.142563,0.0559633,0.537364,0.528464,0.709864,0.625019,0.444001,0.711595,0.340126,0.177577,0.386486,0.979308,0.327135,0.680408,0.993496,0.0655892,0.20266,0.267724,0.466179,0.824412,0.673066,0.42151,0.822461,0.675289,0.642697,0.0623931,0.306431,0.71848,0.674418,0.519117,0.906495,0.723577,0.399859,0.297356,0.620911,0.286961,0.563156,0.405274,0.42489,0.422481,0.115978,0.240206,0.477402,0.393447,0.0942799,0.376924,0.0609574,0.724691,0.644311,0.342257,0.339428,0.184559,0.834674,0.387179,0.823507,0.179385,0.944632,0.799752,0.595544,0.635731,0.144605,0.893857,0.231926,0.0054388,0.94361,0.250087,0.609907,0.291521,0.86058,0.838493,0.294331,0.316883,0.81302,0.983343,0.700412,0.606934,0.253168,0.843525,0.485418,0.595207,0.208101,0.767509,0.28577,0.609963,0.806757,0.181364,0.0445879,0.964215,0.445971,0.996606,0.233861,0.224019,0.0494206,0.529294,0.561928,0.599374,0.554513,0.430027,0.482857,0.951273,0.288984,0.371569,0.579378,0.254201,0.402867,0.62563,0.0278606,0.939966,0.998879,0.517675,0.948142,0.393117,0.460213,0.923955,0.25724,0.0472863,0.275509,0.266918,0.307624,0.933243,0.110546,0.723087,0.266055,0.103345,0.818106,0.425057,0.922598,0.23128,0.60526,0.718622,0.330352,0.0692756,0.415877,0.31556,0.406686,0.182892,0.936433,0.338665,0.597885,0.530768,0.162377,0.650751,0.635904,0.586685,0.655895,0.426439,0.112369,0.131584,0.557973,0.221455,0.605586,0.240479,0.0696872,0.0357804,0.497275,0.21443,0.425719,0.473791,0.960742,0.99629,0.975844,0.0283363,0.517287,0.244122,0.312426,0.785597,0.635641,0.1141,0.562293,0.700802,0.525374,0.861702,0.638453,0.0154508,0.801587,0.483655,0.566129,0.184276,0.948555,0.854386,0.491491,0.0348587,0.475359,0.67784,0.0603421,0.559119,0.806646,0.899103,0.746086,0.799202,0.824264,0.00666076,0.861992,0.747963,0.0983692,0.156584,0.499385,0.754776,0.480404,0.989348,0.0900376,0.582973,0.237925,0.0663541,0.537966,0.467754,0.654915,0.92622,0.801988,0.199329,0.488456,0.853199,0.136496,0.302485,0.0520315,0.683149,0.25683,0.9481,0.853057,0.267544,0.648353,0.475593,0.0528371,0.807443,0.659618,0.0838104,0.386035,0.544058,0.326878,0.11309,0.570666,0.808007,0.810283,0.633029,0.253637,0.0864816,0.0463092,0.911993,0.670005,0.923094,0.343107,0.0615972,0.794378,0.585079,0.784409,0.90504,0.891319,0.780967,0.780817,0.660661,0.603734,0.00237226,0.248018,0.902773,0.61669,0.130753,0.382722,0.931356,0.829336,0.995343,0.601366,0.704638,0.449532,0.728865,0.442277,0.813476,0.957451,0.631477,0.219398,0.166702,0.599253,0.55254,0.769983,0.467491,0.479552,0.401121,0.689027,0.984706,0.352252,0.215036,0.602551,0.79932,0.105006,0.736491,0.997051,0.356848,0.724477,0.551673,0.62617,0.355977,0.892999,0.754424,0.935341,0.995575,0.982823,0.813099,0.480853,0.474002,0.523535,0.881815,0.450804,0.550107,0.160568,0.584294,0.445226,0.730704,0.600385,0.0108331,0.177576,0.0858248,0.565421,0.595843,0.929151,0.610295,0.51953,0.481366,0.267455,0.763799,0.533275,0.433664,0.992498,0.257803,0.276942,0.100002,0.678916,0.985232,0.0631312,0.749517,0.562626,0.830326,0.976842,0.840538,0.239414,0.867618,0.973275,0.0321321,0.372767,0.866253,0.0880567,0.0169958,0.99114,0.306319,0.0761422,0.924007,0.661559,0.225554,0.453176,0.40802,0.681563,0.469931,0.334662,0.65741,0.594447,0.938732,0.739212,0.681868,0.895841,0.614592,0.414705,0.0956381,0.93743,0.506736,0.39746,0.450876,0.67706,0.174967,0.803889,0.445207,0.15561,0.837906,0.697762,0.174549,0.450927,0.12394,0.307391,0.441121,0.397746,0.0188012,|0.919519,0.150028,0.0131061,0.354181,0.850097,0.23519,0.678983,0.356346,0.362924,0.651563,0.177508,0.534051,0.262815,0.232316,0.742652,0.625195,0.0411938,0.508771,0.509391,0.185375,0.0335562,0.156878,0.395331,0.617484,0.616413,0.68817,0.489026,0.132965,0.994826,0.793261,0.623708,0.466483,0.2273,0.407977,0.295619,0.838911,0.848538,0.449347,0.772819,0.997538,0.0265898,0.288094,0.230854,0.191183,0.608015,0.0045324,0.551736,0.608098,0.509012,0.422567,0.849421,0.959487,0.690849,0.574067,0.730373,0.241091,0.406422,0.634296,0.156855,0.673953,0.211676,0.283555,0.81913,0.517926,0.965104,0.594589,0.702467,0.716469,0.634523,0.0130826,0.026355,0.997815,0.528155,0.329357,0.79602,0.643194,0.679534,0.762056,0.426207,0.365063,0.432104,0.799931,0.785504,0.455461,0.398019,0.116445,0.0111793,0.218637,0.00362533,0.72492,0.699216,0.527045,0.827029,0.841083,0.478195,0.57854,0.341749,0.286697,0.223908,0.66849,0.502456,0.351254,0.707185,0.428711,0.938618,0.823865,0.429497,0.904017,0.213817,0.0435336,0.140262,0.902367,0.697881,0.57469,0.644235,0.654765,0.944279,0.149027,0.54873,0.592329,0.040528,0.0724284,0.0178553,0.955038,0.553603,0.266565,0.589576,0.792381,0.137401,0.329795,0.335015,0.92464,0.257141,0.666427,0.298717,0.412188,0.336526,0.721622,0.387603,0.960546,0.590356,0.223,0.606784,0.843878,0.74895,0.93445,0.977629,0.124157,0.868811,0.148243,0.114371,0.263467,0.716781,0.248529,0.228967,0.10603,0.656294,0.171111,0.867863,0.569464,0.805221,0.496188,0.325766,0.183163,0.88613,0.67014,0.864883,0.204298,0.402203,0.983729,0.0609697,0.481037,0.544523,0.873678,0.764812,0.958021,0.48293,0.939564,0.962477,0.383751,0.409108,0.444736,0.828866,0.7414,0.333948,0.0356195,0.793065,0.796681,0.195453,0.723278,0.179652,0.301501,0.386632,0.41757,0.111933,0.941364,0.991258,0.448131,0.972914,0.835434,0.788498,0.380433,0.874134,0.223094,0.165913,0.564244,0.386462,0.735013,0.551361,0.842934,0.753469,0.0778713,0.0745465,0.289214,0.149641,0.860969,0.10398,0.0408881,0.812837,0.146511,0.416303,0.135846,0.550511,0.601045,0.205936,0.142092,0.579016,0.927834,0.229852,0.182008,0.977339,0.382412,0.777058,0.481843,0.793591,0.808499,0.253994,0.29571,0.263959,0.429064,0.564303,0.445738,0.611447,0.554469,0.759669,0.787012,0.888731,0.822338,0.405819,0.891917,0.129335,0.48699,0.829576,0.698251,0.0705692,0.0692624,0.248795,0.659859,0.108967,0.118567,0.0388993,0.482699,0.273213,0.520778,0.15332,0.922267,0.559438,0.805004,0.84834,0.499535,0.280075,0.300502,0.587863,0.754947,0.847658,0.572076,0.824858,0.351666,0.694917,0.884856,0.482994,0.823338,0.317192,0.230614,0.380423,0.604265,0.958504,0.987524,0.210148,0.33735,0.064683,0.105807,0.0334463,0.693896,0.162459,0.492096,0.235223,0.403332,0.678177,0.986708,0.920708,0.749171,0.87844,0.0674977,0.548089,0.0247717,0.492021,0.496444,0.0203356,0.399466,0.0822175,0.88393,0.598624,0.907865,0.180722,0.143687,0.515225,0.0375383,0.838481,0.64254,0.139042,0.541348,0.315527,0.0423352,0.569069,0.864502,0.635789,0.686633,0.431517,0.93588,0.525173,0.751659,0.50216,0.361458,0.92949,0.712607,0.207728,0.576777,0.901399,0.678064,0.23804,0.0164315,0.0513369,0.681822,0.0653359,0.139753,0.628671,0.134284,0.326862,0.960845,0.27459,0.256841,0.645579,0.16572,0.503139,0.390322,0.935867,0.0146992,0.140427,0.0409877,0.409445,0.150715,0.173244,0.26241,0.249984,0.429674,0.0925997,0.695056,0.906539,0.321168,0.606754,0.504783,0.354678,0.0455224,0.425463,0.496767,0.926348,0.243965,0.125755,0.515917,0.545131,0.162136,0.088303,0.409427,0.638067,0.0776379,0.00101984,0.725679,0.272496,0.571269,0.423788,0.425918,0.447108,0.451109,0.397075,0.769371,0.448509,0.994173,0.329174,0.91094,0.46124,0.459859,0.626918,0.462488,0.919894,0.566786,0.54534,0.795687,0.356217,0.538353,0.494882,0.312078,0.263829,0.934412,0.795901,0.949649,0.315723,0.113883,0.709944,0.424096,0.274832,0.74911,0.610204,0.297987,0.466444,0.457388,0.651755,0.453856,0.140963,0.824654,0.492074,0.810127,0.0737867,0.556868,0.712017,0.44708,0.381607,0.0701664,0.331115,0.164458,0.0713474,0.0461593,0.805304,0.491821,0.156837,0.156489,0.134861,0.749975,0.575735,0.655762,0.172046,0.927252,0.426203,0.412009,0.885126,0.851347,0.82498,0.428577,0.0664017,0.577706,0.500987,0.905869,0.886085,0.312171,0.0123016,0.965052,0.424337,0.654093,0.760101,0.688793,0.246214,0.736805,0.205723,0.471236,0.903151,0.0219753,0.809677,0.625855,0.402448,0.312754,0.851497,0.648428,0.712851,0.338145,0.283076,0.123688,0.743037,0.202707,0.632913,0.154125,0.744718,0.448255,0.214353,0.876022,0.555753,0.938856,0.932532,0.542605,0.820195,0.888684,0.300758,0.191647,0.258199,0.67252,0.992074,0.179916,0.342259,0.269651,0.323489,0.332468,0.932741,0.695501,0.0591258,0.902605,0.0693375,0.184531,0.888397,0.835709,0.704043,0.457735,0.145702,0.251086,0.206268,0.65763,0.156238,0.760265,0.329213,0.895303,0.985257,0.259087,0.503852,0.970114,0.528605,0.339696,0.0371469,0.166601,0.615064,0.793534,0.866898,0.483401,0.752513,0.556471,0.342586,0.129329,0.137186,0.965867,0.838184,0.200186,0.924235,0.812485,0.540276,0.283343,0.275891,0.753058,0.405459,0.0355134,0.519963,0.981248,0.512083,0.193799,0.144916,0.573667,0.3136,0.782231,0.323272,0.33965,0.205727,0.219051,0.907167,0.56313,0.963189,0.945989,0.191756,0.410065,0.236832,0.990627,0.616887,0.0390173,0.51878,0.878857,0.191404,0.407306,0.106726,0.348237,0.2911,0.997946,0.581696,0.823587,0.262797,0.241845,0.0763413,0.386654,0.757104,0.423243,0.874427,0.217401,0.241168,0.459736,0.582724,0.851139,0.90639,0.912633,0.786714,0.574987,0.990324,0.650642,0.7588,0.247786,0.242389,0.582157,0.0475038,0.277864,0.922137,0.571066,0.00249749,0.0339099,0.507764,0.729173,0.0295483,0.905256,0.280674,0.467625,0.272816,0.833882,0.510665,0.300356,0.728893,0.0801374,0.260734,0.551211,0.687239,0.996269,0.298353,0.351403,0.847446,0.277415,0.277094,0.790886,0.123325,0.866114,0.673924,0.124278,0.139124,0.0709201,0.250873,0.450713,0.193537,0.92129,0.321846,0.0893739,0.0408261,0.0837816,0.0673825,0.492778,0.336019,0.19788,0.438506,0.710854,0.368968,0.919553,0.52292,0.353293,0.430279,0.218552,0.649064,0.681675,0.573128,0.454704,0.245143,0.688187,0.779173,0.495799,0.180108,0.438197,0.0637282,0.17292,0.974541,0.922787,0.534891,0.587252,0.36884,0.915384,0.407708,0.0367985,0.751104,0.422538,0.0613546,0.0698704,0.64609,0.299474,0.341583,0.00365287,0.682711,0.301682,0.923667,0.677075,0.282787,0.577672,0.29584,0.991236,0.155058,0.0677816,0.752136,0.172462,0.258868,0.812616,0.977377,0.803644,0.01385,0.859202,0.643413,0.197538,0.447823,0.405374,0.393753,0.403546,0.519004,0.946671,0.117134,0.193028,0.21996,0.497996,0.673876,0.849686,0.0181904,0.253479,0.569417,0.89472,0.589427,0.672275,0.774346,0.661625,0.939686,0.535593,0.944693,0.932516,0.443501,0.00620079,0.0400097,0.102077,0.191713,0.80151,0.578751,0.763786,0.00126326,0.923239,0.423852,0.340949,0.600289,0.52999,0.92003,0.406442,0.249773,0.448479,0.549334,0.966151,0.65187,0.505098,0.552459,0.198832,0.78604,0.49138,0.27828,0.324119,0.0545252,0.741174,0.657904,0.746343,0.738743,0.571958,0.253523,0.254592,0.690637,0.676004,0.44152,0.692592,0.0994852,0.541604,0.584668,0.539743,0.145304,0.686232,0.371749,0.477189,0.146333,0.38062,0.593156,0.974123,0.869506,0.509453,0.658868,0.268542,0.739532,0.242508,0.496197,0.855656,0.325954,0.122081,0.378839,0.71251,0.804199,0.388975,0.154538,0.32032,0.349412,0.381443,0.327221,0.715965,0.55543,0.0856238,0.297298,0.537272,0.835181,0.808447,0.516408,0.119002,0.701554,0.807096,0.54013,0.889746,0.440715,0.255548,0.344774,0.0833889,0.0365772,0.518478,0.356199,0.395289,0.266754,0.404066,0.569302,0.890055,0.867176,0.845467,0.801424,0.332956,0.861407,0.869812,0.906566,0.920605,0.984898,0.347327,0.326101,0.53793,0.00228518,0.584248,0.91791,0.622667,0.117032,0.186965,0.220458,0.966368,0.588315,0.478625,0.667703,0.0088625,0.616623,0.496821,0.0387627,0.782408,0.625254,0.570543,0.570931,0.893301,0.822987,0.0753316,0.183971,0.202033,0.0153782,0.668389,0.958383,0.483498,0.641162,0.81526,0.38798,0.472788,0.684249,0.756415,0.865733,0.986805,0.747395,0.48691,0.594825,0.883467,0.323216,0.172549,0.760328,0.585391,0.803525,0.748078,0.77768,0.235829,0.829631,0.0294155,0.812321,0.17457,0.970857,0.159567,0.440004,0.83332,0.526464,0.051796,0.102668,0.197012,0.0263772,0.199082,0.616039,0.212183,0.222981,0.677918,0.671066,0.443503,0.123793,0.542759,0.408661,0.570444,0.484895,0.423516,0.747671,0.751657,0.503233,0.718545,0.752168,0.25314,0.537962,0.934111,0.336827,0.79209,0.663515,0.851335,0.298017,0.593043,0.398857,0.981431,0.959208,0.524289,0.125735,0.548566,0.92111,0.582127,0.608741,0.513509,0.501564,0.448908,0.891671,0.811618,0.695775,0.836714,0.101609,0.137221,0.68712,0.89667,0.583221,0.894763,0.395205,0.738499,0.85309,0.427187,0.904127,0.548922,0.431338,0.992893,0.220061,0.717091,0.960034,0.142623,0.891585,0.452802,0.685539,0.934399,0.160306,0.926743,0.685451,0.888752,0.745672,0.956665,0.471002,0.634592,0.68949,0.594622,0.775238,0.247555,0.929321,0.0534978,0.32581,0.953437,0.443119,0.617478,0.604244,0.114844,0.1904,0.124164,0.859376,0.0567202,0.506095,0.58885,0.57703,0.948491,0.156698,0.186294,|0.951327,0.081494,0.249725,0.0356681,0.314223,0.332081,0.746871,0.0566246,0.0464451,0.206377,0.607471,0.696154,0.32422,0.922212,0.0199383,0.877495,0.771664,0.658468,0.58285,0.0423465,0.489654,0.71028,0.052043,0.565386,0.974763,0.540381,0.807436,0.324304,0.143802,0.323868,0.84079,0.861924,0.0848959,0.592559,0.587888,0.845714,0.81252,0.649125,0.693654,0.434095,0.280154,0.539319,0.638678,0.732539,0.83915,0.955937,0.527142,0.425022,0.681802,0.467561,0.534641,0.643356,0.927105,0.254286,0.416905,0.471636,0.155541,0.834236,0.0941736,0.402195,0.922701,0.580716,0.365944,0.387864,0.524989,0.360385,0.832372,0.120763,0.147166,0.0444645,0.990249,0.206743,0.0536948,0.281371,0.420216,0.781965,0.187833,0.418165,0.360884,0.246721,0.837334,0.824619,0.169134,0.612353,0.797358,0.0607868,0.89341,0.104159,0.860453,0.964183,0.158534,0.0773256,0.0326999,0.124638,0.508154,0.358078,0.0200096,0.990496,0.620415,0.763876,0.278414,0.638784,0.610322,0.536518,0.762044,0.214816,0.258207,0.0210457,0.635644,0.535073,0.633565,0.732449,0.277314,0.67318,0.420597,0.936874,0.277044,0.193649,0.421939,0.892629,0.481075,0.955867,0.89365,0.688583,0.0966901,0.356622,0.954203,0.235459,0.345843,0.440446,0.484699,0.372575,0.134729,0.529769,0.209659,0.0100642,0.116872,0.385888,0.557141,0.0902854,0.107397,0.801362,0.512871,0.0544813,0.329837,0.968925,0.0735403,0.200187,0.468773,0.456977,0.187693,0.580739,0.589733,0.106466,0.833736,0.699337,0.883541,0.543056,0.608716,0.898243,0.980667,0.0762595,0.691284,0.912399,0.109267,0.497543,0.891938,0.942132,0.535445,0.862434,0.00301206,0.500857,0.543005,0.827124,0.401437,0.666126,0.337393,0.725154,0.756058,0.435325,0.0407726,0.234567,0.605597,0.627482,0.954245,0.693638,0.705066,0.808288,0.73437,0.795958,0.472995,0.879928,0.671824,0.522979,0.0316168,0.13912,0.255232,0.969624,0.51822,0.207153,0.235659,0.0475417,0.260063,0.201149,0.284983,0.377719,0.569995,0.90132,0.328259,0.0355212,0.0538878,0.308362,0.758054,0.0187683,0.423872,0.0379087,0.391232,0.179772,0.550347,0.156004,0.935744,0.925793,0.276824,0.736508,0.296616,0.111112,0.397375,0.669684,0.231888,0.908798,0.976278,0.775078,0.166993,0.461961,0.0159112,0.929501,0.799899,0.359652,0.576267,0.691487,0.594972,0.57782,0.918384,0.669488,0.891561,0.635269,0.569989,0.0402994,0.825508,0.52172,0.667029,0.950176,0.345811,0.327741,0.137023,0.364065,0.51332,0.107936,0.342037,0.963058,0.655964,0.110831,0.76944,0.136998,0.482389,0.160423,0.658991,0.153511,0.0443261,0.216006,0.748137,0.109977,0.533208,0.751743,0.949508,0.684116,0.936808,0.937479,0.300923,0.614838,0.295683,0.729305,0.282912,0.219105,0.9596,0.567995,0.432964,0.877066,0.350369,0.870639,0.376843,0.334103,0.716573,0.958121,0.66947,0.653761,0.711816,0.931013,0.886763,0.11968,0.899176,0.357224,0.975797,0.632736,0.275746,0.468958,0.000711501,0.572479,0.897676,0.374396,0.277951,0.910571,0.269639,0.494972,0.17249,0.84406,0.842671,0.36625,0.436589,0.256009,0.698,0.212456,0.651262,0.0695731,0.818884,0.229846,0.9817,0.963282,0.544391,0.740354,0.281885,0.905092,0.781325,0.101253,0.0867139,0.506489,0.266614,0.53948,0.685547,0.475143,0.468611,0.766702,0.851486,0.815509,0.990411,0.0774361,0.810878,0.0239205,0.474802,0.722865,0.418365,0.225635,0.747664,0.662227,0.0654361,0.501275,0.789633,0.488823,0.402268,0.438245,0.480686,0.872777,0.333913,0.392398,0.628708,0.233077,0.0541787,0.886746,0.883363,0.010517,0.97128,0.915307,0.0719308,0.424284,0.932916,0.890306,0.972631,0.239788,0.490671,0.518002,0.180689,0.44924,0.398194,0.337208,0.447193,0.904069,0.452823,0.988315,0.598235,0.380803,0.485188,0.366611,0.553438,0.931764,0.680313,0.98023,0.0727838,0.0794692,0.694693,0.579491,0.41855,0.864251,0.704433,0.877968,0.95623,0.00618935,0.918864,0.55543,0.840977,0.950296,0.9607,0.227127,0.43927,0.655749,0.614463,0.701798,0.590597,0.535739,0.432743,0.208612,0.927864,0.584605,0.403071,0.143923,0.797672,0.544361,0.184493,0.562596,0.116921,0.925366,0.27018,0.0206934,0.471673,0.93409,0.164688,0.2456,0.516021,0.283189,0.896408,0.404947,0.311273,0.773573,0.118707,0.565208,0.139209,0.840134,0.0136628,0.118723,0.193106,0.142802,0.284219,0.0475507,0.97304,0.708399,0.304309,0.732314,0.647435,0.241865,0.317687,0.588525,0.771144,0.304932,0.732024,0.427522,0.893822,0.0928694,0.606085,0.610495,0.50193,0.737569,0.475602,0.172312,0.859476,0.388092,0.300095,0.710722,0.591088,0.623467,0.486847,0.370325,0.330089,0.0620176,0.952571,0.52453,0.135302,0.623105,0.220801,0.157292,0.101098,0.733159,0.266266,0.951215,0.768074,0.467098,0.918631,0.635377,0.0412147,0.602054,0.648386,0.326316,0.39623,0.708609,0.382615,0.107415,0.088192,0.264025,0.505587,0.939773,0.393893,0.0910757,0.453385,0.488494,0.300487,0.208462,0.440771,0.35205,0.0707068,0.484647,0.577146,0.997268,0.556086,0.0562662,0.515483,0.649831,0.205964,0.73942,0.547215,0.846472,0.433222,0.264082,0.113753,0.897469,0.135238,0.969996,0.354875,0.813976,0.256024,0.756906,0.864267,0.803716,0.178991,0.232037,0.850052,0.853981,0.645255,0.249541,0.254542,0.628236,0.68742,0.0687101,0.978465,0.909568,0.933911,0.671844,0.409995,0.734598,0.907025,0.675478,0.958424,0.212188,0.622885,0.956928,0.684677,0.980278,0.531063,0.352552,0.262874,0.903925,0.36802,0.0786038,0.306866,0.178721,0.505355,0.782663,0.0345882,0.748931,0.657724,0.217779,0.129037,0.208061,0.686593,0.515539,0.375307,0.595792,0.64382,0.328999,0.239008,0.138878,0.641741,0.680881,0.159531,0.388436,0.872829,0.357075,0.0776062,0.692411,0.588956,0.986746,0.891635,0.492179,0.329787,0.540951,0.846246,0.0448306,0.85796,0.633128,0.919975,0.969288,0.635517,0.0456027,0.140457,0.11994,0.875538,0.0364436,0.0787068,0.825419,0.00173551,0.388354,0.799874,0.923865,0.275911,0.268482,0.571885,0.394898,0.777911,0.606098,0.041787,0.594593,0.297787,0.780115,0.860031,0.0685193,0.727132,0.587836,0.0761347,0.216489,0.0279896,0.225077,0.138786,0.298319,0.793872,0.339663,0.315848,0.909909,0.372314,0.078084,0.257361,0.0173416,0.506209,0.22318,0.900286,0.627096,0.0386046,0.830116,0.316987,0.50567,0.842185,0.727215,0.424311,0.925711,0.0948014,0.448686,0.374414,0.272267,0.367296,0.731194,0.904855,0.0628106,0.335156,0.846832,0.270185,0.994136,0.511371,0.935823,0.280357,0.715442,0.229671,0.752668,0.465665,0.028873,0.0306939,0.784345,0.302137,0.959752,0.853565,0.977621,0.415343,0.47623,0.0207677,0.594836,0.825327,0.497122,0.599127,0.651127,0.246398,0.591334,0.0951165,0.438137,0.898909,0.911956,0.301468,0.375601,0.369418,0.914919,0.35753,0.778454,0.859588,0.00101143,0.068572,0.831366,0.724165,0.95121,0.339766,0.147361,0.657899,0.442839,0.836595,0.433147,0.224471,0.374778,0.675355,0.329832,0.943678,0.561524,0.200024,0.612964,0.734559,0.0153635,0.433298,0.319986,0.577765,0.194595,0.893676,0.552812,0.298811,0.0659614,0.799917,0.896413,0.410914,0.955512,0.310086,0.438055,0.552917,0.762216,0.530135,0.654216,0.514394,0.656848,0.491288,0.321255,0.875832,0.519292,0.232038,0.188039,0.920412,0.849712,0.932926,0.301797,0.229984,0.175536,0.41097,0.825049,0.0182313,0.759485,0.352715,0.941514,0.517536,0.129988,0.764623,0.703536,0.83386,0.98132,0.899565,0.812858,0.0744373,0.379374,0.43692,0.802396,0.669219,0.402647,0.68101,0.402689,0.101982,0.41437,0.330623,0.300717,0.0243415,0.916608,0.339104,0.343265,0.917138,0.844009,0.238315,0.532842,0.201231,0.469707,0.358036,0.247503,0.154572,0.45459,0.955777,0.473144,0.401697,0.675195,0.826317,0.897187,0.646477,0.423111,0.134887,0.824073,0.814254,0.705301,0.16175,0.142172,0.905294,0.604634,0.586986,0.674343,0.343889,0.327191,0.156576,0.075328,0.831203,0.726147,0.338741,0.338867,0.217328,0.0290859,0.893854,0.565119,0.798071,0.0122278,0.0755902,0.812973,0.152093,0.00261885,0.212379,0.256853,0.187096,0.229315,0.372893,0.0991049,0.276976,0.39222,0.104745,0.650498,0.938705,0.479471,0.823957,0.726891,0.859277,0.97633,0.892022,0.820031,0.961156,0.782618,0.0663734,0.744111,0.713163,0.168602,0.993041,0.800139,0.785859,0.176213,0.227446,0.288176,0.985429,0.821367,0.26574,0.270292,0.725074,0.228574,0.277968,0.244712,0.0949507,0.750611,0.0459865,0.1839,0.291848,0.433722,0.525293,0.318683,0.344044,0.988914,0.0523562,0.121593,0.119764,0.0446553,0.37341,0.886125,0.642948,0.0758283,0.46127,0.669678,0.737614,0.0708741,0.587231,0.573479,0.643075,0.463194,0.827348,0.230242,0.409949,0.185302,0.646034,0.301723,0.286588,0.0521276,0.738698,0.411226,0.917728,0.0217336,0.473404,0.141466,0.832479,0.444035,0.112646,0.00863498,0.282913,0.524903,0.677459,0.989086,0.66267,0.795372,0.134804,0.213978,0.762119,0.575293,0.54573,0.418146,0.158532,0.28044,0.0498115,0.0475389,0.189116,0.479432,0.539291,0.674002,0.0363654,0.481094,0.203971,0.582252,0.87328,0.684859,0.579576,0.736017,0.524615,0.931163,0.722824,0.118723,0.953504,0.690348,0.603762,0.0858135,0.686883,0.0644456,0.561908,0.765265,0.0549424,0.0716274,0.283829,0.827295,0.181208,0.408154,0.9846,0.594504,0.0915074,0.373284,0.0678539,0.350508,0.0814909,0.662419,0.234092,0.913647,0.310545,0.737808,0.596292,0.844528,0.584943,0.613568,0.66015,0.977332,0.416905,0.962897,0.319719,0.119507,0.248321,0.740942,0.00400972,0.376389,0.700175,0.461952,0.184298,0.852308,0.338065,0.127959,0.170768,0.887503,0.318923,0.820444,|0.58736,0.231437,0.696102,0.238903,0.840997,0.19034,0.274909,0.576626,0.982341,0.238477,0.181649,0.906895,0.179376,0.232145,0.79748,0.68476,0.394526,0.781951,0.321779,0.0273335,0.707558,0.0321631,0.0809851,0.911263,0.393501,0.241618,0.183802,0.760264,0.891874,0.895224,0.242908,0.930955,0.492738,0.523946,0.974819,0.195986,0.239232,0.00593591,0.953456,0.911204,0.331379,0.00673813,0.590369,0.916443,0.46319,0.0272231,0.805109,0.2819,0.388862,0.241635,0.353417,0.215915,0.422344,0.136277,0.104683,0.258644,0.291369,0.668046,0.203993,0.623281,0.704194,0.984865,0.528379,0.795588,0.19015,0.223378,0.432919,0.185663,0.00839543,0.045529,0.00364721,0.878532,0.263028,0.69216,0.573831,0.623777,0.388293,0.695832,0.0207615,0.0282952,0.796541,0.573141,0.17999,0.634819,0.783387,0.805346,0.568982,0.294514,0.299946,0.319118,0.173935,0.978832,0.392427,0.363956,0.361724,0.642233,0.666789,0.536364,0.709652,0.543918,0.83134,0.7688,0.412051,0.365063,0.685768,0.496035,0.747463,0.0455735,0.229119,0.973585,0.639007,0.458338,0.0800897,0.195815,0.686322,0.118492,0.0145351,0.0174412,0.662029,0.999836,0.73042,0.412291,0.479562,0.721037,0.728231,0.409121,0.224991,0.69109,0.952796,0.00301576,0.94156,0.68142,0.138784,0.137877,0.56827,0.929229,0.559877,0.656754,0.470868,0.740106,0.112781,0.489857,0.348836,0.933449,0.267398,0.709876,0.623885,0.364735,0.143159,0.554977,0.546583,0.532813,0.251382,0.666809,0.8138,0.091425,0.807786,0.629234,0.686379,0.602051,0.762643,0.759881,0.805757,0.681639,0.315852,0.813375,0.409428,0.19231,0.13176,0.0510764,0.928173,0.103437,0.837254,0.853114,0.868629,0.413548,0.381548,0.832035,0.787434,0.416044,0.145059,0.311141,0.316204,0.564559,0.557094,0.55165,0.594275,0.196026,0.724027,0.402955,0.363553,0.297253,0.247237,0.556665,0.345876,0.207918,0.656887,0.614921,0.769376,0.140134,0.192221,0.317943,0.602765,0.0802063,0.554725,0.933097,0.455633,0.5547,0.345138,0.421103,0.80178,0.957515,0.786285,0.722394,0.109484,0.657876,0.752065,0.0114565,0.208967,0.841205,0.0370313,0.543503,0.277304,0.0584935,0.0222359,0.0118198,0.263827,0.710983,0.170404,0.772589,0.667427,0.455895,0.58594,0.43441,0.740828,0.637384,0.685069,0.697742,0.108804,0.10395,0.73575,0.0303281,0.259301,0.186928,0.876143,0.0930861,0.164325,0.995483,0.487397,0.454488,0.0356476,0.0135698,0.652956,0.205518,0.109692,0.0736958,0.86601,0.991256,0.559244,0.673767,0.628953,0.366164,0.15577,0.199077,0.108277,0.498723,0.880697,0.580654,0.256619,0.222717,0.590193,0.711399,0.680191,0.807269,0.602742,0.116454,0.985386,0.899521,0.731673,0.598172,0.179249,0.666677,0.636055,0.546684,0.855647,0.637029,0.55841,0.151278,0.483503,0.0391787,0.362004,0.341404,0.621854,0.880866,0.618566,0.445487,0.0788204,0.8454,0.404892,0.286085,0.837487,0.576346,0.831199,0.39552,0.848439,0.288498,0.512331,0.930675,0.76683,0.244009,0.970962,0.551284,0.720059,0.0577171,0.793663,0.334385,0.143659,0.0299599,0.930655,0.239403,0.0223248,0.862344,0.808062,0.820011,0.186077,0.442182,0.966119,0.836405,0.962509,0.182541,0.657587,0.457837,0.731921,0.855531,0.836479,0.345573,0.979874,0.23225,0.641842,0.967771,0.798917,0.430168,0.85613,0.88606,0.670857,0.542603,0.421255,0.07137,0.645414,0.358681,0.326528,0.0745962,0.880911,0.342209,0.737385,0.462178,0.886316,0.0693796,0.665527,0.606144,0.378789,0.537983,0.805401,0.55945,0.159488,0.222339,0.549284,0.350944,0.653105,0.64486,0.363271,0.343582,0.684853,0.984041,0.540346,0.0812057,0.0827659,0.0436456,0.308613,0.596269,0.903334,0.915277,0.429843,0.0584053,0.649448,0.174933,0.0803242,0.459018,0.786615,0.834005,0.297835,0.333301,0.546421,0.847709,0.742726,0.564253,0.0985476,0.382523,0.683003,0.535461,0.398134,0.630675,0.790096,0.673553,0.350791,0.35654,0.162774,0.485085,0.296567,0.971054,0.551412,0.368079,0.352204,0.639695,0.382968,0.76169,0.812703,0.1084,0.270066,0.583106,0.903352,0.772356,0.826748,0.839929,0.762375,0.864302,0.482847,0.0709424,0.570364,0.695335,0.553946,0.506319,0.00734663,0.530124,0.428457,0.278945,0.40361,0.165164,0.834252,0.470088,0.188149,0.215556,0.155522,0.430908,0.0254384,0.817844,0.566027,0.7906,0.919184,0.0961396,0.518877,0.123538,0.980224,0.429584,0.845766,0.466681,0.975391,0.111806,0.98828,0.805744,0.435162,0.700954,0.107867,0.942689,0.623482,0.727927,0.227724,0.482212,0.850738,0.342716,0.876963,0.676385,0.389649,0.941549,0.862295,0.867706,0.0445972,0.991685,0.74356,0.535792,0.356206,0.218846,0.290885,0.458711,0.139359,0.214227,0.53324,0.332794,0.385521,0.362436,0.782402,0.347502,0.478507,0.43207,0.791909,0.0284687,0.797241,0.648471,0.812218,0.599657,0.318879,0.527478,0.0088706,0.724813,0.714496,0.447804,0.937551,0.314386,0.506904,0.225473,0.252898,0.624042,0.333742,0.964483,0.499523,0.603493,0.848698,0.41347,0.0766453,0.480795,0.957201,0.914357,0.10608,0.367695,0.239442,0.770371,0.919276,0.0224454,0.826941,0.652055,0.254665,0.752629,0.00727558,0.0478165,0.559774,0.491017,0.443746,0.665425,0.590037,0.856928,0.497789,0.431127,0.312228,0.625623,0.110135,0.36193,0.228252,0.528748,0.965856,0.101745,0.873624,0.715819,0.407578,0.0360469,0.00454313,0.83524,0.258121,0.254156,0.0109209,0.280739,0.532855,0.63767,0.91983,0.384985,0.735909,0.455889,0.842113,0.459501,0.283397,0.299003,0.256675,0.650929,0.285769,0.782952,0.830284,0.96253,0.715382,0.000721395,0.881761,0.356557,0.466463,0.577765,0.403181,0.548356,0.0631268,0.667717,0.463647,0.766299,0.728786,0.10604,0.310036,0.850268,0.2885,0.462718,0.73987,0.0528436,0.877325,0.845082,0.77295,0.591379,0.28884,0.0299909,0.971116,0.512599,0.96317,0.582629,0.588056,0.712349,0.980362,0.459451,0.150519,0.158112,0.698699,0.912834,0.318322,0.806463,0.113034,0.769245,0.394968,0.680438,0.153248,0.105644,0.378826,0.528782,0.67997,0.393346,0.0037064,0.738731,0.388312,0.280513,0.388265,0.85141,0.39694,0.198863,0.953735,0.879125,0.790962,0.516705,0.646084,0.6722,0.28894,0.424879,0.982086,0.889448,0.698086,0.874109,0.179697,0.596906,0.149038,0.24238,0.942405,0.513544,0.528232,0.864086,0.709226,0.3005,0.759609,0.00155538,0.925852,0.775687,0.538625,0.580097,0.881595,0.176296,0.751622,0.890706,0.799136,0.542928,0.331573,0.00475347,0.456893,0.809328,0.0337839,0.85098,0.0926295,0.0144734,0.940203,0.626478,0.86526,0.514062,0.235059,0.267216,0.0705725,0.887574,0.332857,0.552891,0.00943869,0.459407,0.92678,0.989602,0.29518,0.632522,0.0926877,0.424841,0.844598,0.870706,0.128302,0.806901,0.115353,0.590441,0.900883,0.773574,0.1189,0.782054,0.514959,0.240658,0.428385,0.448944,0.718499,0.129955,0.949306,0.148991,0.181545,0.18367,0.713147,0.264575,0.00849646,0.890448,0.707202,0.21885,0.437371,0.794681,0.282527,0.833732,0.330453,0.625756,0.56587,0.773739,0.554729,0.0408424,0.370721,0.841118,0.482208,0.664801,0.820838,0.791557,0.827615,0.911288,0.377697,0.22193,0.0544779,0.816072,0.0929585,0.2031,0.504449,0.177685,0.43499,0.457859,0.973969,0.987264,0.667865,0.329844,0.48515,0.368379,0.746783,0.579627,0.828786,0.520531,0.242465,0.986379,0.539156,0.707241,0.298066,0.795513,0.547727,0.333332,0.121896,0.404194,0.117268,0.0618981,0.921982,0.187741,0.521876,0.630632,0.769863,0.654883,0.25621,0.589127,0.219856,0.522103,0.556747,0.550755,0.693947,0.804949,0.022948,0.784204,0.564334,0.476175,0.780847,0.992149,0.392165,0.0885359,0.997123,0.859156,0.839361,0.450489,0.0919234,0.863105,0.597383,0.813226,0.21946,0.677622,0.606728,0.184813,0.538419,0.928706,0.112916,0.858542,0.0218953,0.861065,0.180593,0.0690526,0.557476,0.66625,0.981181,0.52891,0.304416,0.61289,0.478859,0.926133,0.473029,0.570464,0.320896,0.168842,0.816292,0.386441,0.278671,0.851382,0.542019,0.32691,0.960572,0.158969,0.634683,0.973525,0.205738,0.564561,0.166148,0.761842,0.0905548,0.341258,0.776524,0.218991,0.938261,0.532946,0.956792,0.718821,0.508235,0.748994,0.529223,0.650338,0.00895774,0.0501804,0.447572,0.109535,0.959676,0.466515,0.0856451,0.490535,0.561186,0.768007,0.43224,0.0440731,0.532918,0.465236,0.184445,0.2428,0.379386,0.949931,0.536864,0.958172,0.0567517,0.878717,0.758172,0.70662,0.667072,0.330919,0.629883,0.176518,0.841779,0.694726,0.801255,0.112268,0.237022,0.554099,0.234354,0.0646564,0.618236,0.496332,0.0572866,0.548881,0.364892,0.626431,0.297614,0.502999,0.335551,0.786695,0.866719,0.707146,0.351506,0.360902,0.890032,0.867183,0.169056,0.707016,0.927971,0.907795,0.725422,0.794228,0.0209641,0.853498,0.912954,0.969103,0.0944328,0.124002,0.0707574,0.321302,0.546809,0.0474327,0.714201,0.466173,0.207779,0.989695,0.393739,0.0813805,0.0735119,0.598889,0.152625,0.542172,0.36259,0.244764,0.520641,0.448996,0.966852,0.179467,0.943006,0.934704,0.926385,0.130291,0.977892,0.956018,0.556138,0.7317,0.497188,0.0638039,0.549826,0.891656,0.427027,0.0223386,0.0917263,0.447637,0.594441,0.686787,0.547709,0.215582,0.583335,0.776951,0.544914,0.499525,0.50572,0.188031,0.526248,0.833731,0.447107,0.142933,0.934428,0.239197,0.899826,0.425001,0.924952,0.448842,0.966433,0.702175,0.193242,0.845129,0.761624,0.667754,0.0602038,0.664316,0.883151,0.0363996,0.872358,0.301365,0.677128,0.28165,0.609873,0.140145,0.0915409,0.137771,0.180647,0.0988296,0.974475,0.0397524,0.557564,0.573918,0.05317,0.340092,0.92649,0.733273,0.720493,0.559256,|0.318494,0.110554,0.719064,0.752462,0.51379,0.0111238,0.415521,0.688979,0.873589,0.0599017,0.0653755,0.196734,0.669369,0.544951,0.6535,0.650045,0.68096,0.643823,0.915548,0.180317,0.233003,0.15966,0.693453,0.378829,0.895768,0.200336,0.135528,0.83279,0.163843,0.412708,0.402312,0.397488,0.345919,0.236986,0.797937,0.4428,0.0491154,0.250117,0.153878,0.552412,0.397418,0.766301,0.571364,0.477944,0.482993,0.901831,0.245577,0.745189,0.617516,0.468849,0.452348,0.32531,0.800377,0.00364935,0.812272,0.91337,0.330303,0.59493,0.797789,0.665146,0.364025,0.375694,0.861371,0.91925,0.818655,0.987695,0.854362,0.325615,0.641029,0.0163755,0.723127,0.705679,0.928761,0.561165,0.856913,0.163206,0.482813,0.0814581,0.367343,0.400503,0.151296,0.929023,0.597156,0.355989,0.819224,0.280919,0.398009,0.602487,0.373755,0.607443,0.872822,0.935609,0.655385,0.990235,0.894877,0.342237,0.0723979,0.520116,0.204273,0.135459,0.883246,0.162306,0.709954,0.646704,0.271583,0.74123,0.34754,0.388518,0.776513,0.0172926,0.162095,0.904325,0.550007,0.762286,0.852045,0.911539,0.179197,0.632509,0.0798004,0.67709,0.924201,0.793978,0.703616,0.029214,0.625454,0.434398,0.759373,0.439104,0.715391,0.313795,0.944567,0.657608,0.453837,0.894859,0.445951,0.131558,0.833892,0.82146,0.00599551,0.311446,0.497392,0.513062,0.568077,0.979619,0.577828,0.398529,0.933433,0.480333,0.677208,0.935547,0.754897,0.279768,0.287357,0.86153,0.443041,0.0123587,0.313785,0.141786,0.799989,0.0487157,0.363099,0.363135,0.923294,0.0662454,0.593267,0.612756,0.718711,0.383431,0.407641,0.647144,0.301954,0.402723,0.0918549,0.000426471,0.00067234,0.474309,0.668104,0.362704,0.57167,0.0223551,0.73015,0.774401,0.680617,0.690616,0.311365,0.871731,0.425756,0.756874,0.550217,0.634564,0.0414288,0.518508,0.213004,0.960433,0.799388,0.325611,0.683192,0.645494,0.121187,0.590024,0.628045,0.172949,0.943606,0.0951661,0.141073,0.191452,0.451285,0.920869,0.333505,0.115441,0.38664,0.252393,0.589537,0.841097,0.944732,0.42753,0.558313,0.540808,0.31539,0.874518,0.795764,0.117389,0.940881,0.129499,0.510733,0.187666,0.248713,0.294772,0.253972,0.533855,0.939089,0.0116259,0.186335,0.846508,0.189603,0.831137,0.717816,0.582328,0.772147,0.34946,0.498472,0.143138,0.306574,0.836991,0.0835837,0.607841,0.957134,0.532298,0.861827,0.774431,0.506954,0.794976,0.619996,0.709485,0.354445,0.662013,0.750844,0.0357171,0.150074,0.998029,0.404853,0.661216,0.157029,0.602294,0.638806,0.892619,0.884788,0.996573,0.745523,0.51607,0.750221,0.285917,0.0791783,0.0833485,0.566806,0.706044,0.746983,0.460727,0.827055,0.151118,0.404063,0.663703,0.384504,0.123444,0.879794,0.873329,0.929608,0.735492,0.499777,0.388488,0.962248,0.925138,0.580718,0.551758,0.602421,0.603086,0.157058,0.911364,0.165445,0.830956,0.951535,0.505051,0.749946,0.822655,0.352751,0.856655,0.699688,0.682448,0.97504,0.511467,0.87754,0.391583,0.752733,0.0774426,0.755995,0.844232,0.199029,0.59918,0.145467,0.971251,0.315798,0.148383,0.279611,0.491927,0.61058,0.453673,0.304043,0.617255,0.919256,0.721727,0.123632,0.620991,0.674786,0.758394,0.483897,0.214273,0.909668,0.983719,0.496387,0.598625,0.656344,0.620724,0.294312,0.643169,0.476174,0.395078,0.688306,0.688532,0.934179,0.104211,0.635243,0.849212,0.555882,0.661116,0.587792,0.738333,0.37373,0.262851,0.552272,0.338746,0.211507,0.987108,0.206759,0.821489,0.46122,0.602588,0.845957,0.0832747,0.206547,0.511295,0.190459,0.468272,0.66864,0.576601,0.366855,0.416065,0.90382,0.0243836,0.083048,0.454254,0.738227,0.0751235,0.0516851,0.883165,0.595141,0.836535,0.381279,0.712647,0.15875,0.392991,0.0665058,0.247394,0.993258,0.880405,0.756427,0.305457,0.101324,0.870269,0.238738,0.394532,0.944825,0.262637,0.720566,0.408054,0.492906,0.446314,0.710768,0.665397,0.0118825,0.478339,0.539704,0.748643,0.823353,0.23799,0.998711,0.930568,0.453491,0.433018,0.607672,0.68201,0.925976,0.375967,0.737452,0.454848,0.0456413,0.998961,0.347185,0.105387,0.0986074,0.410566,0.389411,0.0861668,0.1783,0.238239,0.602931,0.337889,0.135388,0.626068,0.00338858,0.793689,0.575815,0.474565,0.73038,0.537843,0.952927,0.784125,0.595742,0.897455,0.636043,0.214158,0.64924,0.442831,0.119044,0.435006,0.880187,0.657986,0.764591,0.277708,0.651662,0.849576,0.811592,0.757678,0.401379,0.412679,0.555572,0.452069,0.935426,0.383104,0.27401,0.651121,0.275638,0.993453,0.923808,0.495684,0.531812,0.746479,0.471506,0.493591,0.365836,0.808751,0.307666,0.0650422,0.25459,0.198472,0.925019,0.290528,0.772334,0.422209,0.459579,0.0601185,0.573134,0.790901,0.254158,0.928167,0.116492,0.643397,0.503005,0.178576,0.73012,0.494793,0.339524,0.196454,0.581592,0.0739393,0.36742,0.774992,0.579756,0.966196,0.680574,0.590587,0.00653696,0.789886,0.232793,0.0266199,0.800529,0.321236,0.955462,0.526983,0.695676,0.935005,0.0691381,0.97664,0.422666,0.694542,0.498973,0.556104,0.557184,0.755394,0.935974,0.920163,0.668,0.323243,0.167256,0.133101,0.962329,0.879988,0.0436969,0.0816149,0.361822,0.259061,0.648626,0.626898,0.20208,0.142045,0.479099,0.377068,0.225704,0.641727,0.0321187,0.0305578,0.312519,0.438487,0.591657,0.959995,0.08762,0.888626,0.501696,0.853728,0.533887,0.615123,0.153438,0.0508644,0.975305,0.681526,0.358799,0.812025,0.130705,0.341471,0.288161,0.151505,0.515668,0.484543,0.633358,0.0503554,0.72925,0.682103,0.883997,0.0283909,0.142194,0.0302345,0.968324,0.573927,0.834698,0.106974,0.702391,0.320286,0.77529,0.0332216,0.844341,0.34503,0.993659,0.283211,0.527341,0.266517,0.222822,0.986848,0.554469,0.744416,0.760112,0.416225,0.127365,0.58436,0.831599,0.0237195,0.405453,0.97094,0.751425,0.591509,0.0849679,0.157475,0.481016,0.111136,0.191351,0.677713,0.512851,0.510768,0.639061,0.173522,0.269832,0.589207,0.630409,0.875524,0.6634,0.199321,0.2031,0.849793,0.881666,0.434092,0.532978,0.226851,0.997895,0.110545,0.823188,0.872312,0.374278,0.444955,0.4727,0.823399,0.0692794,0.736902,0.829461,0.276314,0.744587,0.256788,0.480861,0.562716,0.328201,0.823156,0.553917,0.408629,0.402259,0.239895,0.613079,0.28114,0.422732,0.486801,0.806697,0.219464,0.683497,0.602097,0.256302,0.584768,0.435442,0.0843046,0.655897,0.260922,0.487158,0.728627,0.293415,0.97676,0.474756,0.866527,0.938007,0.716158,0.320954,0.0726727,0.307066,0.229227,0.593515,0.926359,0.410591,0.568733,0.0718495,0.131845,0.10952,0.361769,0.472873,0.761145,0.288764,0.378525,0.801459,0.668287,0.44714,0.290757,0.566584,0.865985,0.232249,0.0504643,0.238949,0.829474,0.82623,0.727564,0.0239493,0.866087,0.308846,0.713638,0.0282027,0.000925958,0.420954,0.369777,0.181612,0.142022,0.160204,0.114112,0.655102,0.0307521,0.793103,0.648982,0.845737,0.00550264,0.668468,0.408468,0.526737,0.188,0.146812,0.791882,0.831064,0.837119,0.195825,0.227121,0.163228,0.0829182,0.328602,0.552304,0.405976,0.888546,0.0808344,0.201015,0.458612,0.919444,0.620396,0.817203,0.362804,0.485862,0.528739,0.699822,0.521319,0.739073,0.091038,0.85566,0.994281,0.47684,0.424985,0.70639,0.55251,0.918304,0.347022,0.77336,0.33925,0.0512835,0.218646,0.873604,0.0285498,0.866361,0.891855,0.710617,0.341406,0.918996,0.678213,0.164472,0.6205,0.878849,0.387031,0.707734,0.14397,0.751454,0.791274,0.848384,0.978185,0.270769,0.3322,0.0181159,0.627775,0.165758,0.850377,0.201866,0.4872,0.889583,0.181824,0.0305999,0.414581,0.716245,0.0122872,0.786189,0.879079,0.845137,0.260127,0.68613,0.322695,0.0596392,0.93165,0.286421,0.615681,0.518714,0.668755,0.960818,0.801628,0.324409,0.710718,0.341076,0.653151,0.688768,0.590384,0.681561,0.606643,0.544601,0.935783,0.417637,0.736409,0.0598926,0.984589,0.0238199,0.923428,0.229418,0.221679,0.0335503,0.299321,0.217326,0.301403,0.0528986,0.322124,0.0473999,0.836701,0.174192,0.652619,0.949478,0.161999,0.587573,0.462808,0.405818,0.174499,0.170543,0.140701,0.880161,0.110063,0.985407,0.469794,0.666081,0.698388,0.0518061,0.61513,0.232454,0.84096,0.103232,0.64134,0.259228,0.620219,0.64288,0.0750965,0.0986049,0.173451,0.190634,0.409648,0.508986,0.0332948,0.858656,0.952705,0.595822,0.576343,0.369259,0.336391,0.171963,0.866351,0.881946,0.0885253,0.514962,0.106503,0.543863,0.172025,0.745441,0.339531,0.00894994,0.354462,0.960683,0.626233,0.223981,0.696747,0.13181,0.605008,0.5564,0.182352,0.512204,0.431185,0.18861,0.198189,0.429507,0.464837,0.488551,0.330391,0.375344,0.418789,0.613115,0.489848,0.972872,0.509859,0.0647668,0.798239,0.381115,0.50678,0.238337,0.28168,0.751177,0.891078,0.0542646,0.955804,0.92338,0.394528,0.337593,0.560687,0.103901,0.0245893,0.543812,0.0693127,0.277444,0.930144,0.164713,0.0361063,0.0779815,0.302957,0.300496,0.277327,0.916329,0.916197,0.0826022,0.484264,0.0275881,0.899124,0.354804,0.344505,0.837785,0.998948,0.839655,0.565327,0.28899,0.567901,0.146743,0.438253,0.623802,0.282154,0.586,0.996877,0.162309,0.548411,0.970779,0.286155,0.818597,0.38414,0.361319,0.33073,0.997422,0.796163,0.152039,0.0746477,0.685279,0.885469,0.575436,0.66398,0.0181097,0.982927,0.184502,0.398102,0.849331,0.334218,0.162656,0.375035,0.642194,0.676773,0.00849468,0.685172,0.912009,0.955045,0.999368,0.342923,0.641621,0.726341,0.307808,0.922074,0.551638,0.94608,0.350429,0.637919,0.202297,0.369247,0.352427,0.481186,0.985324,0.651801,0.722916,0.544411,0.417165,|0.0509825,0.796658,0.0654629,0.38665,0.728127,0.360616,0.464839,0.765113,0.961502,0.72707,0.982673,0.269401,0.475788,0.0411654,0.685532,0.708141,0.0670685,0.203533,0.382946,0.847086,0.474892,0.878929,0.291517,0.923982,0.380752,0.713424,0.279643,0.399237,0.152446,0.564648,0.803502,0.239167,0.160984,0.887348,0.645408,0.764107,0.496762,0.156978,0.525487,0.761352,0.838676,0.942354,0.946593,0.540557,0.180202,0.253117,0.790626,0.990335,0.202963,0.887021,0.395181,0.0285659,0.76813,0.535245,0.708649,0.8767,0.529763,0.0258929,0.526816,0.0472569,0.366354,0.814366,0.98165,0.921662,0.035212,0.293628,0.680652,0.979243,0.796893,0.442949,0.33267,0.0145104,0.0344126,0.630664,0.810531,0.346691,0.377207,0.598274,0.879758,0.739155,0.91885,0.189273,0.583654,0.362977,0.180591,0.0427508,0.436787,0.630979,0.0854952,0.437249,0.741724,0.0705409,0.799451,0.633931,0.275843,0.252303,0.542491,0.0965976,0.675454,0.39839,0.842555,0.860776,0.660646,0.622037,0.91418,0.584252,0.0356048,0.707252,0.703243,0.0824893,0.726009,0.934712,0.59784,0.426941,0.598402,0.0826863,0.671941,0.561922,0.796448,0.711351,0.94509,0.861571,0.0426989,0.381828,0.558059,0.998177,0.46108,0.926341,0.92259,0.587965,0.3621,0.613305,0.295202,0.353848,0.808609,0.126133,0.251442,0.434611,0.603076,0.0528523,0.858591,0.558758,0.71348,0.556264,0.403606,0.00552964,0.28175,0.620378,0.262926,0.534116,0.837054,0.112014,0.204817,0.367876,0.749081,0.284141,0.963826,0.550666,0.878333,0.662881,0.292985,0.505279,0.235799,0.990856,0.709454,0.4635,0.412228,0.741485,0.651814,0.491889,0.985682,0.604973,0.0904398,0.152449,0.745575,0.824602,0.854001,0.278114,0.203049,0.924696,0.687119,0.556037,0.03979,0.239013,0.906563,0.199344,0.931226,0.891959,0.274442,0.13235,0.815211,0.303318,0.115725,0.4759,0.14858,0.891052,0.617394,0.882315,0.755315,0.661768,0.865951,0.0773255,0.657361,0.270159,0.345854,0.21257,0.384187,0.854251,0.183245,0.185537,0.841518,0.516686,0.227085,0.569437,0.526781,0.0542267,0.909794,0.298251,0.880944,0.23375,0.723305,0.508038,0.71312,0.652875,0.994228,0.845726,0.0482545,0.534869,0.40055,0.857925,0.527449,0.356008,0.106725,0.558815,0.196576,0.558921,0.676109,0.785201,0.13048,0.668167,0.414705,0.880348,0.0438982,0.919227,0.755292,0.389686,0.366935,0.724768,0.211925,0.357023,0.767286,0.0986839,0.392787,0.449361,0.817743,0.404207,0.671596,0.581045,0.123102,0.000307798,0.973296,0.21134,0.736753,0.0104417,0.307822,0.388727,0.475198,0.0681559,0.794151,0.473576,0.0105326,0.384077,0.440234,0.670459,0.857523,0.0535158,0.533009,0.0405332,0.986981,0.85422,0.51685,0.635862,0.176325,0.499266,0.613878,0.0637568,0.160421,0.354964,0.556416,0.773637,0.202034,0.32138,0.0676402,0.700595,0.878358,0.934098,0.307948,0.466818,0.476469,0.689663,0.268132,0.521628,0.835049,0.773349,0.423779,0.644311,0.277439,0.212545,0.726634,0.151075,0.426018,0.675731,0.442837,0.524285,0.359424,0.147073,0.724245,0.869396,0.568215,0.457421,0.0919513,0.326867,0.339318,0.520968,0.26287,0.49437,0.771394,0.830127,0.418157,0.256433,0.431909,0.470723,0.919263,0.374838,0.980818,0.766684,0.753955,0.192111,0.202171,0.596378,0.625599,0.428076,0.857406,0.888889,0.0513825,0.404529,0.098926,0.0656177,0.779722,0.00912875,0.776113,0.78684,0.774188,0.773433,0.906536,0.542191,0.351904,0.795065,0.708931,0.174487,0.0657946,0.753594,0.553642,0.878336,0.917331,0.302921,0.776824,0.828233,0.919709,0.273372,0.0731269,0.576648,0.816348,0.195766,0.93008,0.449751,0.162722,0.224489,0.0576015,0.15191,0.209755,0.123973,0.777014,0.815265,0.815934,0.899821,0.931007,0.173456,0.598058,0.216619,0.127259,0.129905,0.695704,0.532684,0.794731,0.223465,0.849262,0.768665,0.90111,0.121182,0.238937,0.871795,0.780512,0.107238,0.691645,0.17859,0.414103,0.439806,0.0948543,0.767905,0.706948,0.421267,0.474659,0.258914,0.907367,0.819072,0.162208,0.769472,0.44826,0.749042,0.747533,0.206202,0.368874,0.571522,0.395846,0.630144,0.225471,0.633633,0.0630772,0.174974,0.526754,0.122209,0.382569,0.965602,0.0950506,0.689779,0.0920143,0.918954,0.400101,0.274841,0.598772,0.0832954,0.701902,0.237093,0.000509202,0.417495,0.604453,0.0681063,0.276737,0.632279,0.108502,0.088286,0.511641,0.501536,0.00191671,0.290841,0.909499,0.605083,0.518529,0.628783,0.690663,0.319848,0.15846,0.35118,0.85797,0.950786,0.151187,0.602545,0.802851,0.689222,0.598271,0.38512,0.919768,0.546994,0.309369,0.973497,0.975496,0.513242,0.106562,0.808414,0.284217,0.804301,0.597445,0.350727,0.437468,0.270924,0.139307,0.829024,0.969151,0.872657,0.571317,0.650909,0.703522,0.861359,0.816855,0.921071,0.283822,0.670421,0.411525,0.0126455,0.0621964,0.489866,0.506956,0.331623,0.30432,0.989754,0.854872,0.8461,0.219953,0.926557,0.28475,0.771724,0.487004,0.167318,0.162721,0.921981,0.514421,0.352481,0.509782,0.123865,0.870655,0.779322,0.414413,0.75822,0.430493,0.933382,0.574525,0.356163,0.647477,0.000718713,0.0901666,0.849633,0.754462,0.899714,0.681545,0.660074,0.161249,0.91437,0.544476,0.31657,0.955477,0.598214,0.914161,0.208908,0.981535,0.702798,0.526325,0.967333,0.874097,0.544776,0.413124,0.208684,0.424485,0.860167,0.325984,0.580495,0.691049,0.58116,0.602695,0.880413,0.604013,0.38485,0.108222,0.359948,0.679298,0.954703,0.618524,0.737392,0.0491256,0.116166,0.637878,0.593538,0.53212,0.255419,0.456639,0.00945228,0.0701367,0.242634,0.147825,0.305509,0.839287,0.760314,0.115689,0.418548,0.62696,0.141477,0.74021,0.448742,0.977128,0.908823,0.831354,0.661543,0.806842,0.439043,0.311038,0.899506,0.24084,0.866352,0.429036,0.257345,0.821552,0.285525,0.748783,0.51805,0.842744,0.571238,0.259512,0.439361,0.381623,0.215711,0.202748,0.0769681,0.573375,0.186224,0.12939,0.0627347,0.0254236,0.193245,0.67974,0.230298,0.602201,0.599522,0.774435,0.0372843,0.291053,0.316542,0.244152,0.803871,0.927853,0.545369,0.277798,0.0606736,0.068967,0.602079,0.103679,0.673885,0.0405633,0.482073,0.531115,0.0887606,0.620231,0.199437,0.432467,0.777237,0.451034,0.16026,0.176167,0.602921,0.385623,0.560399,0.230171,0.614958,0.720822,0.263669,0.491258,0.18442,0.694154,0.0394852,0.295612,0.290012,0.483423,0.696375,0.206804,0.999876,0.916962,0.276389,0.851235,0.0445115,0.419177,0.693172,0.352331,0.452501,0.66449,0.302877,0.737809,0.368913,0.372131,0.838446,0.867657,0.0911726,0.793345,0.561679,0.385127,0.16818,0.942699,0.485466,0.698462,0.857584,0.267082,0.180094,0.460363,0.583691,0.319644,0.878111,0.137315,0.722521,0.482093,0.314109,0.727987,0.230446,0.468664,0.921524,0.0143129,0.0839032,0.756892,0.967968,0.86487,0.357842,0.445388,0.263507,0.046931,0.878025,0.793625,0.436867,0.967393,0.245693,0.746356,0.548334,0.0777389,0.435564,0.880549,0.639954,0.24495,0.949642,0.941951,0.926705,0.957898,0.246607,0.978875,0.212732,0.914469,0.669821,0.928937,0.62618,0.915671,0.140822,0.963735,0.72813,0.684167,0.100348,0.473506,0.625956,0.0801145,0.885529,0.417155,0.327397,0.493222,0.429318,0.638728,0.43218,0.184498,0.311273,0.312538,0.541061,0.254257,0.120871,0.647758,0.638011,0.490658,0.791642,0.280706,0.0753313,0.2206,0.388463,0.252724,0.503183,0.418764,0.424123,0.0336493,0.491356,0.903268,0.134405,0.632399,0.649746,0.422374,0.945568,0.913684,0.216901,0.725271,0.818872,0.930508,0.0883662,0.0515295,0.536258,0.156357,0.717444,0.436653,0.456861,0.543704,0.728055,0.217388,0.835419,0.254543,0.21282,0.900287,0.593865,0.229651,0.314605,0.829418,0.783976,0.707966,0.913347,0.378906,0.725478,0.395926,0.735134,0.584438,0.202988,0.595874,0.139264,0.278364,0.118532,0.882707,0.410503,0.776818,0.82563,0.0562473,0.17235,0.463947,0.829966,0.973142,0.0633371,0.86843,0.669278,0.0581651,0.127291,0.25977,0.0403507,0.703395,0.227429,0.266239,0.0606482,0.939781,0.28796,0.0528615,0.455601,0.376609,0.813885,0.295368,0.194814,0.958576,0.235265,0.155762,0.890958,0.925161,0.437607,0.645928,0.563122,0.693749,0.022994,0.4469,0.826704,0.963435,0.00593394,0.49423,0.662827,0.439767,0.874479,0.334724,0.594406,0.353173,0.0851674,0.806638,0.235042,0.516593,0.00795358,0.294397,0.142117,0.645453,0.0261982,0.611459,0.108554,0.338254,0.149547,0.993859,0.592662,0.271309,0.700354,0.709377,0.758678,0.465071,0.629356,0.702344,0.643987,0.848987,0.99642,0.646755,0.75479,0.309443,0.300718,0.11094,0.930645,0.855383,0.337135,0.459071,0.859531,0.0586583,0.0107638,0.342063,0.35604,0.996623,0.841945,0.131977,0.764117,0.344834,0.704752,0.668837,0.818142,0.507589,0.410546,0.439443,0.984995,0.49534,0.134484,0.0769981,0.0509937,0.642278,0.859235,0.424261,0.538949,0.00671053,0.278611,0.322887,0.743062,0.0238332,0.334583,0.963176,0.745725,0.56791,0.268365,0.10301,0.645553,0.55883,0.0632349,0.840502,0.115437,0.54642,0.487416,0.255108,0.209662,0.196992,0.826998,0.220162,0.417317,0.297046,0.785589,0.558784,0.566575,0.203377,0.912718,0.0619092,0.685641,0.977076,0.811582,0.986557,0.522631,0.807222,0.334694,0.79767,0.435025,0.241159,0.371314,0.0906773,0.125482,0.835979,0.861813,0.0954936,0.219837,0.767363,0.695032,0.178383,0.749794,0.166528,0.22547,0.629511,0.0360548,0.286592,0.214045,0.863416,0.281238,0.0579698,0.819804,0.663169,0.432786,0.68455,0.443787,0.603859,0.649209,0.69335,0.241437,0.304667,0.928056,0.809938,0.208754,0.529817,0.849183,0.0075435,0.956713,0.2858,0.506273,|0.878067,0.869433,0.692495,0.571872,0.911105,0.45634,0.947437,0.980796,0.499665,0.633806,0.830704,0.557853,0.448664,0.0965506,0.291626,0.441057,0.914454,0.981692,0.87523,0.54342,0.0541307,0.248895,0.148821,0.537483,0.328941,0.0620964,0.55315,0.128756,0.328693,0.663327,0.970594,0.245835,0.631789,0.853215,0.145276,0.949585,0.161888,0.722467,0.172926,0.583229,0.494835,0.883972,0.984015,0.799572,0.774489,0.321194,0.575698,0.371208,0.140914,0.912167,0.768788,0.263169,0.36866,0.731138,0.382413,0.337113,0.370259,0.985116,0.0502517,0.15558,0.684104,0.578433,0.988216,0.316354,0.839348,0.481182,0.276571,0.322295,0.396433,0.3572,0.106061,0.253346,0.334678,0.987041,0.400626,0.969876,0.527963,0.222691,0.0842091,0.177698,0.549259,0.850937,0.52688,0.602147,0.618059,0.746035,0.0828009,0.829485,0.282226,0.731254,0.791478,0.00790703,0.10525,0.825357,0.375145,0.451196,0.332549,0.961606,0.0921731,0.38089,0.793364,0.869741,0.468242,0.814577,0.967987,0.0108761,0.865834,0.844229,0.629985,0.855861,0.09779,0.876008,0.436496,0.96779,0.523022,0.901947,0.916742,0.729945,0.0825589,0.821816,0.347747,0.016005,0.166627,0.881882,0.803843,0.85643,0.0419321,0.714432,0.618324,0.738875,0.728745,0.355559,0.749029,0.773847,0.907209,0.720791,0.532549,0.276939,0.409648,0.858581,0.583629,0.374133,0.350285,0.401191,0.0126517,0.609227,0.601331,0.0503283,0.338289,0.773086,0.310278,0.418263,0.587399,0.507466,0.517768,0.335136,0.542363,0.394814,0.0655178,0.484763,0.858878,0.282,0.702424,0.733711,0.21198,0.470813,0.700521,0.749838,0.179043,0.0582846,0.93366,0.191496,0.721891,0.508683,0.0425549,0.468044,0.412969,0.891809,0.53782,0.745275,0.56553,0.709985,0.332146,0.471196,0.856397,0.942136,0.311262,0.0546632,0.807391,0.0886338,0.946538,0.804974,0.183958,0.331205,0.881886,0.471958,0.942347,0.396218,0.828906,0.391617,0.400788,0.11059,0.42872,0.465631,0.00923127,0.596779,0.60441,0.645762,0.902837,0.512318,0.673284,0.68677,0.692544,0.233332,0.374105,0.805592,0.0505006,0.591314,0.917775,0.196103,0.526924,0.164349,0.964714,0.296173,0.315448,0.924698,0.816702,0.573172,0.0653033,0.453619,0.871688,0.904533,0.206266,0.356213,0.257285,0.202949,0.411855,0.10811,0.0170526,0.408464,0.570782,0.376886,0.880092,0.0508329,0.580793,0.480458,0.885834,0.86925,0.128015,0.378125,0.803866,0.255377,0.0192693,0.129965,0.947332,0.313149,0.075484,0.806339,0.545478,0.514983,0.92644,0.11947,0.62619,0.489118,0.959601,0.397902,0.150439,0.0631616,0.099779,0.357425,0.302681,0.0337856,0.119096,0.873798,0.959742,0.514124,0.172559,0.831179,0.0339826,0.152946,0.572287,0.848575,0.211899,0.808302,0.509532,0.0699623,0.225037,0.893896,0.708453,0.539104,0.253441,0.417282,0.756929,0.0562713,0.909931,0.991345,0.0415087,0.564719,0.962082,0.433084,0.0840313,0.295699,0.644216,0.30699,0.966158,0.782427,0.996323,0.61202,0.756005,0.394568,0.91814,0.381059,0.322048,0.450022,0.842577,0.986909,0.670307,0.548776,0.0499365,0.791771,0.573113,0.694503,0.00180107,0.33112,0.876788,0.837245,0.723318,0.328063,0.559275,0.538869,0.826851,0.841946,0.37764,0.395753,0.280719,0.134734,0.316218,0.322157,0.894952,0.57183,0.388921,0.963391,0.311396,0.672393,0.497038,0.00875276,0.778444,0.485632,0.549416,0.858215,0.592083,0.0890649,0.0520512,0.186984,0.816116,0.597632,0.804687,0.180747,0.635531,0.818806,0.569027,0.00145602,0.737708,0.799249,0.637311,0.787332,0.932272,0.325277,0.689672,0.4636,0.286247,0.909795,0.805355,0.384147,0.903542,0.86728,0.967341,0.262172,0.749094,0.145494,0.586131,0.27609,0.196062,0.471817,0.60431,0.0968504,0.619657,0.307942,0.731831,0.441398,0.272886,0.918011,0.632935,0.645058,0.914985,0.68841,0.701,0.0610454,0.257049,0.286748,0.259677,0.774958,0.867462,0.515917,0.945958,0.771577,0.0595282,0.989092,0.102135,0.210816,0.183727,0.977682,0.888117,0.377408,0.829159,0.453947,0.0981779,0.655937,0.830888,0.0174314,0.77698,0.311576,0.948933,0.688012,0.700185,0.317962,0.806784,0.788033,0.576357,0.859749,0.648038,0.738099,0.103949,0.868896,0.759405,0.748022,0.715383,0.514993,0.388014,0.271517,0.578551,0.231305,0.70247,0.921854,0.407919,0.788234,0.782579,0.974792,0.0460169,0.433287,0.587986,0.252717,0.439606,0.666859,0.0945435,0.816942,0.224122,0.482964,0.822707,0.587127,0.924664,0.46116,0.972308,0.741996,0.314088,0.513081,0.154456,0.662653,0.929086,0.976854,0.831028,0.100741,0.675753,0.0407498,0.812059,0.397715,0.286128,0.22311,0.052865,0.0350151,0.0446314,0.0588883,0.749817,0.440547,0.468977,0.356939,0.946241,0.163281,0.852979,0.552416,0.513644,0.0216714,0.191674,0.398452,0.912818,0.264595,0.504101,0.0674348,0.712421,0.117469,0.56924,0.297261,0.750631,0.106328,0.496351,0.615275,0.545021,0.316693,0.72141,0.165143,0.41619,0.248659,0.267671,0.440938,0.331023,0.0377212,0.395649,0.728752,0.622022,0.977992,0.170189,0.536042,0.426032,0.524241,0.774522,0.0961412,0.197516,0.00166589,0.000569999,0.571128,0.970152,0.468665,0.119366,0.104142,0.48738,0.995278,0.951647,0.845857,0.272297,0.0766516,0.971428,0.392093,0.837974,0.540049,0.857636,0.1671,0.863379,0.444037,0.539897,0.469814,0.0124547,0.213072,0.960876,0.0369434,0.477716,0.067301,0.872151,0.933594,0.0835665,0.564877,0.0148779,0.691068,0.94457,0.642419,0.236866,0.598754,0.295384,0.535004,0.39637,0.851388,0.506165,0.986574,0.727877,0.600169,0.527274,0.26777,0.764329,0.300252,0.113258,0.374902,0.608234,0.492206,0.270428,0.545589,0.497979,0.699773,0.26531,0.122089,0.0389187,0.764505,0.96275,0.116221,0.190582,0.665952,0.830924,0.0386986,0.726421,0.783725,0.605737,0.472331,0.549487,0.225497,0.234166,0.0343754,0.920712,0.858958,0.659529,0.924835,0.943588,0.85164,0.724535,0.771093,0.592239,0.597117,0.817655,0.976949,0.872298,0.184021,0.786254,0.265294,0.673289,0.248344,0.409751,0.749409,0.0571597,0.416899,0.610743,0.894766,0.783712,0.570678,0.877419,0.0376683,0.0128607,0.0887534,0.881054,0.805998,0.0970781,0.117216,0.659599,0.25733,0.262004,0.107988,0.607328,0.727685,0.21959,0.170588,0.498773,0.695884,0.168542,0.37081,0.994755,0.514722,0.514634,0.881544,0.267071,0.342838,0.252548,0.552386,0.147817,0.689774,0.0115257,0.155716,0.104698,0.833746,0.132375,0.0289671,0.293602,0.91169,0.703606,0.377634,0.409525,0.335122,0.687237,0.184017,0.503074,0.0545933,0.0908877,0.608154,0.161557,0.739899,0.0242576,0.234314,0.59884,0.264332,0.971314,0.146728,0.135347,0.0112595,0.757525,0.595676,0.499023,0.797535,0.156792,0.435367,0.0996066,0.238256,0.75695,0.771715,0.479409,0.892813,0.349606,0.585758,0.0560755,0.418414,0.224654,0.111185,0.512523,0.308051,0.46139,0.719398,0.519274,0.266107,0.966197,0.540239,0.474415,0.646699,0.124769,0.0642259,0.639508,0.205283,0.814831,0.769221,0.983811,0.891136,0.235263,0.55436,0.888205,0.832189,0.649591,0.0397555,0.56642,0.610189,0.105912,0.458714,0.240866,0.440884,0.194907,0.429221,0.0443957,0.680829,0.955512,0.937111,0.887925,0.933227,0.0204527,0.843491,0.741022,0.754618,0.297532,0.671343,0.922409,0.345668,0.214184,0.683279,0.694664,0.712878,0.0873823,0.55608,0.119032,0.710752,0.545049,0.0641174,0.151702,0.911734,0.819634,0.784668,0.145939,0.843097,0.755013,0.278206,0.313905,0.469937,0.35324,0.193222,0.845419,0.800026,0.310382,0.314894,0.663036,0.864182,0.0721738,0.508528,0.905215,0.668827,0.0917057,0.486835,0.387117,0.0734223,0.751158,0.775066,0.210122,0.231222,0.619376,0.91764,0.203806,0.0480364,0.237838,0.456707,0.184574,0.219667,0.048188,0.92974,0.607291,0.0668857,0.996063,0.34183,0.550322,0.789868,0.973955,0.17815,0.478801,0.119106,0.610611,0.790449,0.600292,0.0905269,0.0782592,0.798658,0.365118,0.108099,0.228259,0.866275,0.543747,0.310359,0.994849,0.463121,0.737208,0.295872,0.439256,0.0534477,0.887185,0.0103902,0.0761138,0.389691,0.442263,0.165752,0.737563,0.519125,0.298661,0.99467,0.0595549,0.776187,0.0332513,0.686468,0.209729,0.865452,0.719269,0.531859,0.31203,0.769301,0.259217,0.260385,0.860335,0.340608,0.226889,0.919924,0.690738,0.335967,0.0143329,0.669408,0.642478,0.683933,0.425614,0.711451,0.308757,0.396523,0.958693,0.944998,0.510123,0.582122,0.35681,0.854834,0.632511,0.495266,0.874779,0.413435,0.867841,0.64328,0.838353,0.831347,0.584128,0.30902,0.179073,0.463163,0.189382,0.827498,0.225674,0.841295,0.708766,0.123848,0.592776,0.987746,0.277453,0.704479,0.139531,0.253114,0.64153,0.78812,0.076211,0.927172,0.950839,0.704319,0.855661,0.461761,0.180004,0.254771,0.111359,0.111793,0.143565,0.0555435,0.300829,0.716539,0.79902,0.493608,0.72979,0.111443,0.984374,0.515751,0.767994,0.933151,0.66927,0.00901538,0.118604,0.232682,0.127201,0.875654,0.884741,0.18729,0.28188,0.67794,0.481343,0.472107,0.98517,0.321955,0.952672,0.855479,0.730944,0.00450224,0.579912,0.488264,0.717356,0.649117,0.85056,0.816499,0.791079,0.556021,0.327367,0.332347,0.856181,0.692055,0.793999,0.0771537,0.929531,0.313518,0.671167,0.738307,0.936309,0.239169,0.756675,0.520684,0.519255,0.966162,0.317508,0.2146,0.840307,0.621526,0.735182,0.711863,0.726551,0.744445,0.410857,0.312628,0.999224,0.357381,0.297927,0.995937,0.868253,0.047245,0.568625,0.0497739,0.43468,0.805388,0.660966,0.249676,0.0113847,0.0683408,0.392009,0.385303,0.258586,0.333536,0.914625,0.624388,0.547046,0.322978,0.558186,0.782266,0.885665,0.450173,0.0883334,0.449878,|0.870482,0.211093,0.095929,0.670571,0.265951,0.945133,0.118504,0.199766,0.0928367,0.617447,0.544879,0.998982,0.398651,0.716412,0.326988,0.655188,0.258081,0.767007,0.273997,0.788061,0.415875,0.0874009,0.043046,0.597827,0.812902,0.704616,0.276582,0.939082,0.665601,0.721098,0.240615,0.150836,0.169544,0.789716,0.432788,0.595313,0.764153,0.57404,0.785436,0.51119,0.206383,0.298472,0.153437,0.110322,0.60129,0.493972,0.243758,0.363244,0.42777,0.112877,0.325226,0.63157,0.506817,0.951281,0.232326,0.878761,0.859384,0.523641,0.318998,0.407227,0.444526,0.192977,0.543588,0.527123,0.177623,0.727215,0.079549,0.35866,0.0133359,0.942015,0.158097,0.467491,0.853605,0.514824,0.362915,0.159103,0.853421,0.0835407,0.277141,0.0927952,0.120576,0.507308,0.950533,0.860765,0.696732,0.468143,0.657968,0.622544,0.494441,0.0393981,0.0464811,0.406918,0.598619,0.880536,0.224332,0.540873,0.935278,0.162928,0.364864,0.282988,0.0604571,0.503749,0.327883,0.71198,0.152447,0.610681,0.264885,0.868792,0.124973,0.150373,0.438015,0.830592,0.470591,0.232032,0.199956,0.339801,0.204734,0.0871447,0.547817,0.136342,0.563034,0.234307,0.0112863,0.202056,0.164834,0.902644,0.729176,0.666929,0.823801,0.154844,0.459282,0.788076,0.87671,0.329316,0.52902,0.762501,0.30773,0.508379,0.210138,0.84944,0.91009,0.870786,0.319445,0.665459,0.518716,0.594039,0.980281,0.146634,0.397601,0.00476509,0.439312,0.0467609,0.0891008,0.785582,0.67838,0.452491,0.873287,0.294113,0.626578,0.188834,0.530617,0.387142,0.950696,0.425493,0.738925,0.325742,0.179068,0.077508,0.97279,0.252339,0.942271,0.903768,0.23973,0.0804228,0.255554,0.909013,0.341657,0.423522,0.620683,0.184812,0.793968,0.761761,0.745761,0.284816,0.919608,0.111847,0.794291,0.502022,0.454745,0.779313,0.850572,0.141415,0.907458,0.121824,0.688068,0.60339,0.259737,0.62998,0.453384,0.472767,0.0424251,0.223237,0.446551,0.397464,0.569735,0.0585968,0.292034,0.557993,0.33628,0.67385,0.280464,0.69476,0.674245,0.333407,0.31265,0.470285,0.89274,0.915093,0.494106,0.182288,0.886706,0.152176,0.574826,0.94678,0.540836,0.764064,0.623228,0.088949,0.716601,0.0563442,0.762614,0.150586,0.6594,0.79041,0.570293,0.565063,0.778248,0.736376,0.855342,0.485448,0.354675,0.569874,0.272854,0.650464,0.857217,0.975023,0.292509,0.0625107,0.310463,0.584332,0.188298,0.510393,0.493113,0.171431,0.38927,0.764443,0.88634,0.74985,0.172957,0.651466,0.521984,0.260453,0.695578,0.160223,0.549338,0.205074,0.397283,0.659188,0.324121,0.243988,0.99819,0.972273,0.69148,0.318265,0.500415,0.919869,0.521379,0.683159,0.143896,0.489456,0.528868,0.182024,0.383094,0.887265,0.0367984,0.52181,0.634761,0.340081,0.825952,0.281282,0.0792054,0.788876,0.251254,0.618868,0.397244,0.287407,0.776472,0.345315,0.878948,0.295498,0.748546,0.397343,0.968065,0.752048,0.339296,0.815104,0.889565,0.115079,0.241272,0.931182,0.362325,0.627497,0.0547777,0.355497,0.636159,0.294486,0.854295,0.898568,0.191648,0.122927,0.0862076,0.179932,0.0904022,0.47467,0.0111451,0.580382,0.567906,0.869807,0.597495,0.160102,0.322247,0.300206,0.355819,0.237026,0.345914,0.756099,0.703173,0.642706,0.170259,0.847121,0.959074,0.357615,0.870056,0.612242,0.287158,0.707607,0.401592,0.922259,0.264053,0.0837137,0.587985,0.620102,0.761815,0.582474,0.715354,0.41425,0.432574,0.742803,0.64148,0.232832,0.902785,0.879045,0.136735,0.657539,0.878255,0.184439,0.706347,0.899727,0.185102,0.224436,0.569169,0.24786,0.201111,0.126503,0.512386,0.89511,0.181357,0.647936,0.406482,0.108695,0.852147,0.279614,0.353253,0.119708,0.6426,0.0985352,0.915287,0.982212,0.23088,0.699936,0.488021,0.963873,0.0296903,0.104616,0.496481,0.0520748,0.201338,0.748562,0.736533,0.485143,0.38149,0.732911,0.793518,0.340334,0.966243,0.724416,0.251363,0.023598,0.859706,0.11382,0.362609,0.680666,0.651959,0.176995,0.15873,0.521086,0.968745,0.197394,0.899706,0.0154955,0.267126,0.0830778,0.0960829,0.0488761,0.138595,0.874335,0.539725,0.709582,0.661069,0.0686177,0.063677,0.0189561,0.0935361,0.542758,0.818738,0.423235,0.335034,0.0489148,0.256614,0.120258,0.186001,0.833348,0.945415,0.141644,0.665477,0.212121,0.215928,0.565211,0.25361,0.743283,0.737947,0.445075,0.215765,0.290903,0.678429,0.650879,0.62346,0.983968,0.097276,0.75082,0.454078,0.348004,0.534591,0.140927,0.857688,0.516765,0.348773,0.172329,0.194201,0.957848,0.254783,0.0138594,0.749664,0.45648,0.0292156,0.0492725,0.0956007,0.40684,0.958977,0.0517412,0.328626,0.00124305,0.420772,0.941213,0.355133,0.788859,0.675265,0.947011,0.0427382,0.0209219,0.8132,0.860919,0.683401,0.313445,0.754114,0.851241,0.503552,0.61437,0.819953,0.448204,0.77214,0.0756922,0.602325,0.685425,0.754358,0.121483,0.53298,0.751395,0.0494513,0.253838,0.018701,0.596706,0.651524,0.0833248,0.532276,0.461452,0.313131,0.32498,0.520766,0.724342,0.830334,0.330672,0.547339,0.174249,0.26246,0.1544,0.861217,0.934726,0.337838,0.92221,0.731787,0.529592,0.747183,0.322552,0.210103,0.724341,0.304035,0.922818,0.951162,0.904453,0.465682,0.258266,0.340966,0.0977571,0.763631,0.657355,0.794768,0.630232,0.878869,0.970417,0.399711,0.261435,0.484606,0.191524,0.4969,0.68007,0.90708,0.630061,0.342715,0.844055,0.872627,0.405781,0.602236,0.864062,0.430049,0.0904442,0.699332,0.769446,0.0214341,0.186256,0.416894,0.613329,0.195626,0.327615,0.700551,0.0565095,0.807706,0.892312,0.569524,0.700107,0.69681,0.272038,0.787321,0.347601,0.117268,0.152907,0.501285,0.49871,0.0620515,0.433071,0.0639134,0.9898,0.102769,0.473439,0.0482225,0.613149,0.393982,0.81706,0.698861,0.479365,0.579429,0.547872,0.248465,0.946668,0.482504,0.366988,0.466756,0.816503,0.801366,0.475983,0.756693,0.826923,0.336219,0.496867,0.869924,0.937478,0.557314,0.353826,0.702133,0.433776,0.986681,0.471559,0.0856465,0.341356,0.467283,0.520889,0.163704,0.467844,0.598871,0.609211,0.566123,0.300045,0.315183,0.922502,0.941417,0.231847,0.148194,0.851522,0.775608,0.562799,0.633321,0.258194,0.242946,0.0316594,0.00264728,0.696847,0.647464,0.128477,0.960246,0.774261,0.511146,0.323743,0.61787,0.112435,0.825239,0.322627,0.749778,0.415661,0.955196,0.31701,0.806043,0.725541,0.925351,0.0378875,0.895757,0.294762,0.977493,0.320425,0.428785,0.883902,0.137444,0.543445,0.892028,0.483974,0.0999644,0.998026,0.703089,0.735575,0.332507,0.862118,0.297513,0.306293,0.647259,0.538162,0.792405,0.972926,0.356175,0.668874,0.890247,0.772522,0.898458,0.377106,0.85948,0.69314,0.0198373,0.393706,0.619719,0.634021,0.403999,0.912167,0.274053,0.35614,0.565412,0.185453,0.636113,0.369468,0.269386,0.0560912,0.881372,0.921945,0.576845,0.654947,0.860901,0.124908,0.130115,0.919745,0.670816,0.574459,0.116828,0.373619,0.599039,0.916427,0.879763,0.959131,0.574388,0.809911,0.558002,0.259928,0.346146,0.0184535,0.959107,0.534881,0.467094,0.867097,0.766266,0.557957,0.751024,0.0924941,0.881963,0.930603,0.0932733,0.637543,0.455766,0.562544,0.756153,0.109172,0.22303,0.258885,0.247006,0.349207,0.330617,0.131741,0.722878,0.303452,0.409199,0.397849,0.146485,0.619468,0.102726,0.948514,0.0385049,0.112671,0.965938,0.950227,0.66948,0.704199,0.996244,0.617984,0.924178,0.994485,0.0316256,0.726286,0.533841,0.865602,0.959998,0.348555,0.752615,0.721112,0.716666,0.215202,0.742041,0.753929,0.111129,0.729431,0.0560412,0.64393,0.708273,0.816846,0.458572,0.612172,0.358834,0.830467,0.294569,0.397166,0.81632,0.527249,0.774472,0.979191,0.692901,0.618747,0.723901,0.61266,0.294214,0.665837,0.462172,0.360665,0.510629,0.237578,0.0606143,0.351669,0.372492,0.562293,0.465686,0.280716,0.294174,0.540645,0.727573,0.880662,0.651923,0.085041,0.695737,0.150088,0.958361,0.487701,0.0088253,0.331268,0.90511,0.507989,0.861636,0.0236472,0.444535,0.745778,0.798071,0.571978,0.456084,0.00989264,0.837568,0.0313346,0.879163,0.697846,0.149307,0.994299,0.615785,0.0377916,0.246854,0.894534,0.320775,0.704728,0.891547,0.0746641,0.250318,0.150065,0.548063,0.730037,0.438054,0.373994,0.623502,0.81527,0.957203,0.88451,0.857305,0.381624,0.331495,0.832446,0.0115185,0.907122,0.749147,0.00465834,0.266055,0.367476,0.427663,0.22918,0.373025,0.978408,0.31679,0.969139,0.269859,0.550281,0.353524,0.463466,0.651604,0.752056,0.902163,0.378269,0.56986,0.692746,0.197836,0.93226,0.652914,0.119866,0.193299,0.0427644,0.15216,0.889819,0.470066,0.839595,0.721277,0.373874,0.365051,0.403508,0.379843,0.913123,0.577407,0.433004,0.713859,0.0249774,0.854744,0.321357,0.913894,0.668961,0.93208,0.752497,0.992942,0.0743522,0.0474097,0.365649,0.799328,0.458886,0.133474,0.939729,0.784196,0.508612,0.788162,0.0165486,0.771844,0.786672,0.2435,0.0475643,0.685022,0.632542,0.980594,0.846746,0.124228,0.423744,0.694242,0.0353808,0.390947,0.294872,0.982482,0.699542,0.847425,0.116864,0.656493,0.0190948,0.0917678,0.83202,0.0814239,0.0308628,0.45813,0.965663,0.754159,0.863894,0.556129,0.761549,0.348626,0.795887,0.419475,0.652834,0.0629492,0.424327,0.0999168,0.811544,0.944698,0.177492,0.483108,0.108417,0.376082,0.607818,0.116436,0.286099,0.013862,0.714223,0.251751,0.889207,0.276251,0.205625,0.48286,0.304672,0.256086,0.724683,0.185534,0.0561695,0.693118,0.263295,0.894775,0.602307,0.380903,0.475668,0.0127664,0.19883,0.622386,0.560406,0.552568,0.244254,0.427113,0.547272,0.0603462,0.9697,0.693628,0.227779,|0.202676,0.638462,0.491782,0.481776,0.912265,0.0927297,0.294521,0.033122,0.954758,0.464105,0.99274,0.733415,0.4263,0.279293,0.894188,0.368177,0.205085,0.638048,0.918981,0.901251,0.500326,0.216827,0.619044,0.478645,0.315025,0.763142,0.65497,0.182842,0.867949,0.252165,0.134532,0.560813,0.280887,0.559694,0.800783,0.527639,0.731158,0.0879891,0.500556,0.699028,0.0557772,0.475633,0.192458,0.700111,0.178861,0.997939,0.991693,0.324484,0.699659,0.924746,0.273529,0.426058,0.457981,0.839069,0.446043,0.986659,0.522937,0.83284,0.546991,0.5786,0.518655,0.446889,0.542532,0.200509,0.916018,0.0977578,0.728973,0.369591,0.698258,0.972644,0.277613,0.234518,0.775515,0.717957,0.000689924,0.422951,0.0295459,0.0935292,0.975363,0.109619,0.676306,0.975546,0.73456,0.509661,0.714048,0.438739,0.151933,0.894204,0.667045,0.829261,0.102849,0.402283,0.420955,0.943404,0.0955936,0.0539635,0.550389,0.851503,0.245856,0.674071,0.186272,0.761354,0.616224,0.417304,0.0777636,0.921193,0.792431,0.833846,0.623872,0.139229,0.341899,0.648159,0.837738,0.561782,0.431804,0.772281,0.415596,0.669182,0.240853,0.975006,0.411207,0.685246,0.0525893,0.732093,0.580684,0.754085,0.371031,0.67969,0.494204,0.0703595,0.422447,0.0829026,0.486099,0.585197,0.525727,0.483543,0.150555,0.642324,0.702429,0.661335,0.600875,0.00803924,0.773327,0.82009,0.129103,0.0134627,0.439925,0.0388796,0.952795,0.319008,0.89751,0.0898809,0.908521,0.263427,0.687793,0.941882,0.536527,0.531115,0.492274,0.452264,0.948306,0.915345,0.701006,0.16119,0.722567,0.28441,0.975574,0.238408,0.965387,0.972016,0.683621,0.115679,0.00307715,0.433062,0.0506242,0.492762,0.602081,0.99932,0.055612,0.110353,0.022145,0.0505793,0.653158,0.767977,0.340071,0.798619,0.127,0.86192,0.43985,0.980267,0.240017,0.566932,0.205774,0.354271,0.748653,0.298214,0.607392,0.0402701,0.776073,0.633419,0.559988,0.84151,0.33167,0.958949,0.380559,0.169364,0.790121,0.526387,0.816248,0.107319,0.967942,0.0205697,0.846562,0.65456,0.600983,0.119921,0.231735,0.332689,0.264643,0.0525914,0.789297,0.221173,0.317154,0.52833,0.25105,0.00930417,0.886422,0.61451,0.787983,0.231329,0.387892,0.323499,0.215427,0.561464,0.564931,0.0596175,0.309135,0.0486345,0.0232624,0.540938,0.422374,0.697726,0.343768,0.93526,0.631144,0.355605,0.554845,0.766738,0.153867,0.44898,0.0391348,0.0885175,0.136586,0.613952,0.654332,0.655902,0.627832,0.795867,0.292411,0.36198,0.309039,0.90465,0.364702,0.239482,0.189625,0.52882,0.394361,0.447636,0.673302,0.91851,0.368568,0.852493,0.48365,0.330082,0.194236,0.171763,0.607273,0.535079,0.589157,0.651781,0.249158,0.394929,0.063201,0.579529,0.285584,0.574327,0.669339,0.333715,0.887015,0.307854,0.132659,0.676324,0.7394,0.253646,0.456613,0.729112,0.987385,0.62592,0.308305,0.712712,0.999252,0.890618,0.0703828,0.498232,0.905118,0.603806,0.893103,0.196112,0.963881,0.31241,0.25728,0.834597,0.115296,0.984451,0.847841,0.98231,0.482985,0.349817,0.901945,0.162852,0.0734046,0.509616,0.261521,0.84622,0.778878,0.0434803,0.827431,0.528143,0.405701,0.705239,0.384946,0.659895,0.634897,0.0526873,0.469736,0.738778,0.302365,0.744686,0.656761,0.490473,0.340362,0.727387,0.954339,0.709961,0.719448,0.765192,0.13894,0.698816,0.516892,0.869088,0.870794,0.764846,0.284596,0.830663,0.513494,0.058216,0.13735,0.480828,0.575965,0.192263,0.852553,0.63906,0.887132,0.0184613,0.862859,0.909218,0.9498,0.808083,0.0665849,0.718894,0.779097,0.789899,0.542445,0.430714,0.581285,0.516312,0.376093,0.332421,0.54719,0.643113,0.766306,0.834288,0.477191,0.532893,0.687948,0.0615678,0.19868,0.0976637,0.716919,0.888528,0.361629,0.725123,0.274908,0.0970852,0.640362,0.0337311,0.60846,0.892817,0.289898,0.11386,0.431082,0.932224,0.90686,0.601415,0.235341,0.925073,0.0896425,0.350264,0.0756837,0.444941,0.280233,0.1522,0.247807,0.720832,0.445642,0.802508,0.544525,0.609925,0.57386,0.603805,0.976429,0.205771,0.370278,0.632657,0.42075,0.69969,0.924576,0.701553,0.162492,0.0664325,0.956861,0.0647818,0.860774,0.520053,0.678499,0.243215,0.764673,0.17934,0.146788,0.730358,0.99547,0.214356,0.188971,0.659655,0.852889,0.825085,0.901661,0.0513031,0.41851,0.975007,0.425731,0.709946,0.589033,0.146467,0.660653,0.81825,0.554982,0.799529,0.566397,0.117708,0.495114,0.188249,0.782137,0.954675,0.954363,0.747996,0.210493,0.78249,0.518122,0.0176712,0.754741,0.126994,0.786036,0.296137,0.436513,0.371829,0.513218,0.443889,0.401869,0.1024,0.584275,0.339704,0.433691,0.398874,0.453394,0.335258,0.0582582,0.950607,0.648471,0.883615,0.795442,0.519701,0.666213,0.882098,0.347639,0.422949,0.387724,0.293428,0.201066,0.157586,0.861309,0.0092572,0.977978,0.489592,0.177144,0.053504,0.34768,0.147483,0.180985,0.259211,0.361402,0.120275,0.656113,0.200975,0.386191,0.216938,0.294766,0.700255,0.116843,0.674378,0.913306,0.301366,0.817034,0.924819,0.970549,0.329767,0.0867819,0.941891,0.136609,0.156376,0.815138,0.939114,0.854499,0.706163,0.249124,0.888069,0.619214,0.946229,0.325137,0.0794951,0.641877,0.762361,0.538718,0.148721,0.042496,0.548517,0.164254,0.72121,0.227182,0.172964,0.120206,0.692202,0.948133,0.126162,0.903205,0.975363,0.0740755,0.796303,0.0964483,0.413097,0.684808,0.850272,0.652177,0.963304,0.525671,0.623952,0.251271,0.480671,0.878407,0.535212,0.472939,0.172241,0.0955797,0.37702,0.315309,0.247836,0.241756,0.689033,0.352889,0.0981373,0.510864,0.280575,0.456123,0.810732,0.619906,0.158983,0.977248,0.957397,0.983136,0.421483,0.409873,0.977521,0.36545,0.426118,0.120784,0.584064,0.167065,0.743597,0.865764,0.190023,0.133497,0.913786,0.803795,0.393704,0.371068,0.845368,0.0446842,0.431842,0.560722,0.572752,0.634675,0.868588,0.0781973,0.960472,0.714022,0.031635,0.247356,0.172439,0.863227,0.415139,0.445832,0.240903,0.533457,0.677245,0.53115,0.395742,0.761824,0.417032,0.101364,0.943159,0.0888181,0.371035,0.0117729,0.139956,0.369857,0.625341,0.389206,0.0717051,0.799131,0.390461,0.201335,0.20069,0.539531,0.994654,0.54524,0.185344,0.0953941,0.127596,0.673967,0.782047,0.0687671,0.966368,0.204107,0.538298,0.485705,0.772115,0.368503,0.894522,0.818881,0.608246,0.123819,0.284819,0.591505,0.808549,0.0832555,0.639767,0.697421,0.798937,0.716546,0.211849,0.758693,0.946798,0.893832,0.46138,0.0969536,0.986046,0.931351,0.164593,0.903225,0.782395,0.0407922,0.938566,0.331614,0.523138,0.307631,0.624376,0.452726,0.963743,0.907764,0.636891,0.0556394,0.288903,0.245247,0.32346,0.0203611,0.0788025,0.572804,0.173637,0.0558853,0.737022,0.539403,0.0835209,0.878505,0.209463,0.67467,0.514652,0.466979,0.663296,0.822065,0.65642,0.592197,0.647955,0.262626,0.524138,0.791847,0.650038,0.0662334,0.252677,0.0592355,0.411966,0.821032,0.397518,0.949806,0.3678,0.674028,0.578386,0.494682,0.365107,0.888463,0.0809886,0.745528,0.937067,0.163368,0.661604,0.951408,0.852175,0.621435,0.0737031,0.581932,0.774641,0.370589,0.611091,0.0524077,0.614087,0.404349,0.70148,0.868379,0.0268818,0.987733,0.981079,0.915366,0.405631,0.423879,0.713516,0.550447,0.876928,0.6757,0.502228,0.474608,0.283492,0.278772,0.446926,0.855912,0.899235,0.298124,0.79754,0.694117,0.650951,0.628105,0.654127,0.729664,0.618318,0.851166,0.170236,0.172117,0.867488,0.87305,0.199962,0.254049,0.45806,0.980455,0.474968,0.492675,0.441305,0.507697,0.469611,0.891313,0.342136,0.406533,0.688474,0.901944,0.516042,0.49025,0.522595,0.264599,0.716464,0.285561,0.147421,0.983894,0.0681249,0.103466,0.322552,0.833986,0.101544,0.980097,0.924762,0.704167,0.75276,0.258825,0.28896,0.275629,0.938795,0.141718,0.686906,0.766803,0.564444,0.55644,0.892463,0.204392,0.10677,0.175362,0.599132,0.759607,0.680885,0.721242,0.0397366,0.0252396,0.29039,0.145086,0.388434,0.914317,0.105145,0.924526,0.686594,0.739512,0.0234186,0.251116,0.793987,0.0985969,0.190988,0.555326,0.857728,0.293397,0.217975,0.214599,0.362336,0.389919,0.209089,0.425111,0.670679,0.947558,0.215214,0.492976,0.0118988,0.16616,0.948653,0.484477,0.839057,0.297711,0.905335,0.23687,0.747366,0.0279937,0.214612,0.479036,0.75133,0.598335,0.540568,0.831947,0.866643,0.00427181,0.837353,0.144668,0.843129,0.562413,0.604131,0.63477,0.844806,0.932491,0.779838,0.1379,0.0218358,0.233759,0.704899,0.469055,0.699473,0.429537,0.139794,0.86749,0.891378,0.0473936,0.254333,0.930728,0.375401,0.732328,0.657407,0.2253,0.238888,0.00641608,0.317275,0.378517,0.834189,0.56846,0.930914,0.0782949,0.49964,0.834533,0.400145,0.931646,0.218069,0.056107,0.00973064,0.199479,0.497961,0.362817,0.955624,0.674051,0.378316,0.819919,0.878717,0.139014,0.113984,0.170995,0.966104,0.0647664,0.468259,0.395181,0.189246,0.169832,0.50418,0.397535,0.860311,0.72525,0.0146563,0.7915,0.150394,0.387072,0.564428,0.833651,0.541183,0.909839,0.926926,0.360364,0.181015,0.21675,0.829124,0.204151,0.117472,0.254381,0.989125,0.977112,0.831066,0.685296,0.317975,0.733405,0.0711508,0.218934,0.513968,0.098834,0.749805,0.936463,0.0961767,0.225592,0.745133,0.408107,0.0688266,0.970113,0.836112,0.850781,0.134868,0.627583,0.950925,0.908146,0.370283,0.080036,0.285673,0.947186,0.56378,0.36591,0.0827004,0.195818,0.800067,0.872748,0.823421,0.723504,0.0416007,0.815956,0.0708694,0.595604,0.578113,0.186077,0.730191,0.434028,0.0861423,0.283702,0.365238,0.728741,0.133323,0.957665,0.323124,|0.845067,0.634691,0.0735536,0.630031,0.764493,0.56465,0.648573,0.295782,0.912369,0.281528,0.49667,0.369248,0.844704,0.392347,0.862701,0.365933,0.547697,0.758379,0.183931,0.270176,0.388196,0.197777,0.468067,0.243235,0.503732,0.0460829,0.645251,0.194326,0.419969,0.952428,0.525644,0.0753261,0.48244,0.99623,0.210698,0.708932,0.901351,0.346435,0.405778,0.847858,0.694957,0.716278,0.764624,0.780353,0.673599,0.645537,0.487462,0.220616,0.41728,0.874917,0.741478,0.314877,0.415655,0.353977,0.574285,0.105816,0.100097,0.863686,0.430365,0.061574,0.759266,0.537203,0.320564,0.470008,0.429135,0.822822,0.207824,0.9888,0.919768,0.350397,0.86088,0.461405,0.122163,0.984546,0.539619,0.0791603,0.496757,0.39405,0.627458,0.228545,0.997652,0.064081,0.506073,0.0974422,0.0483518,0.390077,0.983802,0.919479,0.358609,0.0767331,0.65137,0.691051,0.948558,0.382894,0.969949,0.551708,0.87605,0.282753,0.457402,0.32971,0.675035,0.608517,0.498489,0.197663,0.975037,0.702537,0.772318,0.984105,0.503504,0.627973,0.889791,0.480026,0.721529,0.0155016,0.847322,0.261185,0.915074,0.233673,0.315475,0.118466,0.316771,0.556184,0.786519,0.153171,0.615787,0.131835,0.793266,0.0666586,0.223279,0.448663,0.43009,0.0520388,0.363016,0.745345,0.726705,0.792586,0.345979,0.588392,0.0428358,0.163669,0.603788,0.0818374,0.717956,0.527906,0.28994,0.017068,0.707697,0.584718,0.406887,0.901894,0.131459,0.169229,0.796655,0.687639,0.470348,0.988466,0.449102,0.414618,0.374622,0.530941,0.973443,0.10371,0.319779,0.518388,0.646128,0.149607,0.287502,0.932565,0.53059,0.637814,0.856046,0.0990911,0.900747,0.793537,0.138852,0.279411,0.622999,0.0972164,0.478389,0.236016,0.974893,0.942891,0.720883,0.168887,0.557898,0.0533347,0.0211943,0.763963,0.58948,0.677389,0.595935,0.198638,0.0260842,0.909654,0.443335,0.372748,0.220606,0.668596,0.786746,0.298129,0.307141,0.684214,0.666416,0.308087,0.832933,0.842204,0.328265,0.152709,0.785451,0.741219,0.95379,0.898515,0.439543,0.44669,0.586491,0.710416,0.586856,0.0354041,0.583929,0.0351134,0.0522105,0.986633,0.876839,0.928049,0.769155,0.135268,0.555808,0.882029,0.0416839,0.0188147,0.450938,0.170169,0.783955,0.733687,0.744552,0.263378,0.871728,0.166755,0.614424,0.967206,0.341715,0.696689,0.0614241,0.395932,0.8508,0.795332,0.875505,0.789343,0.772195,0.149589,0.653447,0.0297731,0.359065,0.0435846,0.588941,0.129275,0.424603,0.0733438,0.0898419,0.861026,0.370044,0.0697965,0.816997,0.0726048,0.971259,0.985712,0.727686,0.199697,0.480136,0.870075,0.295107,0.860832,0.205102,0.153447,0.401478,0.459768,0.549077,0.493285,0.880264,0.496777,0.0805972,0.988811,0.955276,0.790545,0.889838,0.885125,0.683087,0.114875,0.857267,0.0405664,0.709956,0.209918,0.992465,0.0900909,0.416597,0.827341,0.750467,0.68078,0.344176,0.510846,0.340719,0.0317375,0.696602,0.733611,0.801994,0.203382,0.202761,0.986037,0.302968,0.112893,0.369583,0.0712283,0.936905,0.886838,0.82622,0.777149,0.384219,0.928935,0.236294,0.67063,0.940121,0.952263,0.265138,0.544114,0.483234,0.655694,0.268589,0.859075,0.75746,0.22434,0.687109,0.705259,0.089535,0.557844,0.451935,0.89889,0.604294,0.0998458,0.53376,0.352359,0.995045,0.669101,0.909083,0.383229,0.0359842,0.418598,0.0607633,0.073948,0.221826,0.539138,0.811184,0.51033,0.989384,0.815168,0.558122,0.282541,0.141908,0.288864,0.981484,0.861426,0.468757,0.34135,0.852956,0.00947559,0.94254,0.975873,0.899515,0.882775,0.502647,0.894042,0.208131,0.865333,0.110614,0.163897,0.359771,0.846552,0.347574,0.0568729,0.613246,0.785987,0.477891,0.223103,0.392635,0.859692,0.689957,0.658951,0.812812,0.0985373,0.298271,0.585923,0.859507,0.0261506,0.68482,0.615698,0.592932,0.659919,0.725284,0.465856,0.988411,0.329413,0.342924,0.452068,0.105033,0.776453,0.196788,0.858604,0.636684,0.026243,0.859498,0.220952,0.82813,0.0900964,0.119528,0.370042,0.263458,0.244317,0.0264296,0.657516,0.801283,0.954047,0.232027,0.223889,0.854745,0.391367,0.429146,0.224281,0.779664,0.62494,0.817698,0.61982,0.741878,0.625053,0.899231,0.245671,0.999719,0.632694,0.027247,0.855767,0.566669,0.861598,0.373068,0.380044,0.432176,0.638373,0.209792,0.272964,0.0128616,0.327499,0.818738,0.355939,0.39979,0.839465,0.243974,0.425068,0.0664682,0.424648,0.788954,0.0425923,0.22833,0.907401,0.984546,0.307316,0.707029,0.0366822,0.711642,0.15776,0.440389,0.500944,0.60475,0.355953,0.331573,0.126121,0.357679,0.159997,0.16533,0.216668,0.0737592,0.69206,0.611483,0.397024,0.352387,0.827069,0.22076,0.409942,0.0913868,0.372158,0.358708,0.197578,0.291346,0.38998,0.935912,0.46906,0.874552,0.713285,0.965599,0.939514,0.685166,0.256516,0.917686,0.806682,0.849228,0.798545,0.770328,0.385282,0.296732,0.26775,0.339747,0.567972,0.454742,0.709498,0.210858,0.869471,0.93696,0.840892,0.630264,0.0518293,0.381265,0.674511,0.461044,0.952804,0.827295,0.287212,0.0269869,0.908226,0.979594,0.0134982,0.463122,0.0983617,0.957967,0.997429,0.0486284,0.0196221,0.841984,0.863103,0.407778,0.237836,0.143408,0.104995,0.87854,0.0454127,0.21403,0.816004,0.552218,0.329304,0.92882,0.886036,0.987566,0.654267,0.210252,0.337635,0.821477,0.689099,0.815943,0.759591,0.231453,0.475361,0.56858,0.72859,0.0855147,0.416754,0.444323,0.914672,0.104812,0.945444,0.503517,0.966716,0.688305,0.925362,0.597352,0.0925426,0.439859,0.317863,0.690738,0.0354651,0.522106,0.492638,0.814734,0.71633,0.1388,0.868623,0.436192,0.394541,0.742963,0.663738,0.659148,0.252612,0.40283,0.334304,0.0745424,0.904191,0.792178,0.250182,0.766321,0.129383,0.907784,0.35024,0.992704,0.955267,0.103777,0.532922,0.141661,0.431045,0.00155818,0.142862,0.325362,0.719677,0.0981416,0.403642,0.795487,0.886466,0.299138,0.692448,0.972493,0.559275,0.208964,0.240927,0.688535,0.485373,0.797843,0.763258,0.957705,0.506394,0.00465107,0.135815,0.683194,0.426314,0.792006,0.448786,0.701207,0.463702,0.346,0.0947642,0.505106,0.28549,0.103368,0.892411,0.791438,0.572258,0.553686,0.237188,0.297791,0.301601,0.18678,0.541431,0.0446068,0.039198,0.376844,0.735741,0.579305,0.834198,0.490878,0.880411,0.953271,0.0177686,0.888621,0.266075,0.63259,0.516431,0.0856004,0.139843,0.797746,0.711402,0.649639,0.554013,0.880164,0.799624,0.721167,0.0164636,0.0700061,0.611769,0.854743,0.658286,0.437802,0.772101,0.835226,0.1492,0.662137,0.395822,0.654553,0.642833,0.590298,0.285881,0.190347,0.299137,0.984719,0.555847,0.534587,0.446818,0.634713,0.900097,0.546076,0.33147,0.885314,0.912545,0.525008,0.716103,0.245178,0.182298,0.372792,0.181424,0.702097,0.0154943,0.816602,0.210322,0.746489,0.174967,0.0746355,0.0694941,0.534219,0.606891,0.930171,0.773706,0.723819,0.763987,0.302878,0.53441,0.511018,0.930604,0.524424,0.835412,0.805227,0.493206,0.0335652,0.492409,0.653386,0.851667,0.883148,0.60251,0.652398,0.235963,0.962628,0.425164,0.253021,0.150298,0.422778,0.547096,0.225034,0.24726,0.893044,0.467747,0.592929,0.710375,0.529591,0.382401,0.0936464,0.105402,0.423295,0.763219,0.773021,0.439492,0.557952,0.988904,0.641617,0.416769,0.0316184,0.191227,0.204568,0.650337,0.386346,0.497641,0.288419,0.573537,0.684034,0.402631,0.913663,0.454833,0.520248,0.0317024,0.11208,0.567768,0.953269,0.593313,0.102214,0.922428,0.445756,0.988615,0.753568,0.28865,0.849371,0.104221,0.418767,0.206841,0.248385,0.0118667,0.989649,0.508007,0.567372,0.125961,0.046084,0.277938,0.453405,0.100479,0.967758,0.512943,0.544122,0.479448,0.91989,0.480737,0.71626,0.059379,0.86359,0.580723,0.284734,0.249131,0.605473,0.823303,0.792865,0.542086,0.196799,0.631586,0.566529,0.399189,0.713999,0.50967,0.171157,0.614383,0.536165,0.345968,0.599936,0.682537,0.671952,0.870373,0.198816,0.237856,0.235806,0.564816,0.495497,0.293393,0.863248,0.625794,0.515334,0.906566,0.718618,0.0619385,0.993354,0.0742804,0.762798,0.700736,0.412653,0.39983,0.0813565,0.295483,0.397036,0.16138,0.0647703,0.813403,0.10899,0.0997722,0.786757,0.0851472,0.639475,0.100126,0.166276,0.551789,0.484084,0.635436,0.333997,0.014251,0.0152785,0.290322,0.0403962,0.93395,0.516185,0.29645,0.215895,0.332552,0.05635,0.918845,0.253947,0.455834,0.662635,0.606902,0.715335,0.340571,0.239579,0.660665,0.0339286,0.336805,0.92687,0.890157,0.183377,0.888473,0.60442,0.29916,0.449687,0.471033,0.991769,0.491865,0.139253,0.914391,0.312776,0.197981,0.924919,0.544977,0.00306356,0.879609,0.88965,0.713392,0.659244,0.0509099,0.974088,0.730611,0.643348,0.0860848,0.896308,0.290368,0.723792,0.70539,0.711683,0.300667,0.0459211,0.315045,0.532697,0.978015,0.305242,0.0157834,0.198886,0.839884,0.354704,0.756965,0.639847,0.580257,0.8776,0.0462738,0.129063,0.850378,0.261147,0.714738,0.731902,0.76629,0.965804,0.877494,0.370052,0.69372,0.622137,0.661582,0.374038,0.28711,0.710502,0.927129,0.647123,0.376008,0.681169,0.911622,0.158348,0.476898,0.585272,0.0571333,0.251127,0.0526851,0.204368,0.997518,0.0725538,0.633507,0.961178,0.0244455,0.495475,0.468564,0.88899,0.384492,0.00464165,0.923004,0.0447431,0.654257,0.595405,0.138236,0.829718,0.20017,0.930218,0.737783,0.474659,0.518604,0.951447,0.967896,0.739739,0.97496,0.399808,0.105868,0.22321,0.72343,0.980232,0.423091,0.819508,0.123437,0.219984,0.160853,0.0672325,0.832317,0.249192,0.00905526,0.470088,0.143077,0.502779,0.911023,0.224348,0.710646,0.945517,0.498725,0.0164513,0.837019,|0.323964,0.909939,0.528678,0.180605,0.173002,0.20575,0.196687,0.276603,0.17687,0.379003,0.263886,0.175262,0.806092,0.0210622,0.55765,0.289156,0.741219,0.803398,0.581177,0.435704,0.595734,0.543363,0.121286,0.826435,0.329869,0.502369,0.809138,0.244218,0.349388,0.635413,0.555813,0.414431,0.356868,0.571462,0.335596,0.448354,0.263988,0.952965,0.52337,0.0803001,0.996455,0.482829,0.929713,0.436497,0.470786,0.122644,0.701902,0.131213,0.932955,0.222287,0.339857,0.0142002,0.167462,0.480006,0.760674,0.145751,0.307126,0.29587,0.31389,0.0583856,0.954035,0.00428843,0.0908526,0.975223,0.544515,0.223398,0.28551,0.62812,0.971353,0.504268,0.766219,0.60701,0.374584,0.386777,0.792395,0.515647,0.318008,0.505693,0.582625,0.821843,0.998371,0.193854,0.524846,0.42054,0.23757,0.708264,0.206082,0.026211,0.133712,0.495644,0.892538,0.463588,0.579487,0.663427,0.0757017,0.509136,0.481179,0.285443,0.695538,0.335684,0.749404,0.756481,0.685526,0.904382,0.068622,0.609152,0.491098,0.458713,0.17891,0.711644,0.360158,0.562012,0.711761,0.517016,0.35786,0.729296,0.249422,0.230079,0.749218,0.0336385,0.119289,0.534797,0.408813,0.232369,0.186318,0.305215,0.66265,0.624331,0.542628,0.380947,0.693639,0.979805,0.181476,0.839019,0.00189197,0.67195,0.584839,0.322554,0.927256,0.327551,0.156569,0.0192834,0.198225,0.568094,0.297344,0.550841,0.222598,0.881221,0.0774394,0.397153,0.722405,0.148948,0.537623,0.415298,0.569527,0.405529,0.284059,0.243333,0.752592,0.0470214,0.839107,0.559636,0.0293335,0.032946,0.91807,0.819919,0.678281,0.536868,0.162205,0.947831,0.802689,0.165395,0.854007,0.111603,0.820358,0.48965,0.447591,0.951867,0.479185,0.603945,0.111696,0.086667,0.779597,0.896456,0.050903,0.712164,0.847655,0.586414,0.384038,0.911158,0.117197,0.269643,0.0604903,0.236002,0.82489,0.289142,0.660811,0.994288,0.0768335,0.792929,0.882471,0.84771,0.52139,0.314238,0.481648,0.326849,0.345496,0.373583,0.846385,0.837778,0.485648,0.997804,0.956513,0.738113,0.716609,0.30795,0.519996,0.639012,0.174473,0.632887,0.41609,0.673908,0.575092,0.554153,0.329586,0.74581,0.886909,0.212674,0.338978,0.883457,0.118273,0.196937,0.541806,0.451108,0.210229,0.319589,0.475505,0.125551,0.805574,0.423325,0.37851,0.107216,0.940096,0.159017,0.515932,0.321484,0.225784,0.728213,0.399656,0.512442,0.675262,0.0101322,0.70513,0.0771868,0.929466,0.148154,0.334993,0.204536,0.0653589,0.621193,0.0357728,0.903181,0.285247,0.974855,0.398873,0.517157,0.161225,0.699846,0.426479,0.630627,0.764299,0.978214,0.983257,0.314334,0.836136,0.224568,0.396456,0.907126,0.157072,0.408287,0.914585,0.076009,0.892681,0.115195,0.24037,0.0420535,0.608922,0.12144,0.043419,0.546698,0.133166,0.498416,0.281705,0.476129,0.792402,0.49831,0.335731,0.631667,0.510544,0.569679,0.94039,0.533072,0.220617,0.443228,0.451055,0.431844,0.745732,0.714539,0.179477,0.351298,0.371452,0.763861,0.353147,0.411112,0.657689,0.203361,0.0963975,0.3632,0.92278,0.412322,0.466204,0.730317,0.945498,0.503103,0.447876,0.266898,0.623853,0.629174,0.431268,0.480067,0.16803,0.328358,0.678764,0.00445175,0.939599,0.252395,0.392642,0.551887,0.536609,0.356535,0.317147,0.584508,0.717809,0.770061,0.934252,0.102625,0.487606,0.546059,0.749757,0.342474,0.294303,0.997196,0.977463,0.937148,0.301327,0.403937,0.314416,0.151275,0.97185,0.589422,0.765877,0.19918,0.69896,0.424489,0.120732,0.653073,0.341222,0.164701,0.969157,0.66137,0.553761,0.509701,0.210163,0.301953,0.787795,0.324068,0.876007,0.453783,0.308019,0.370052,0.927538,0.0423185,0.197086,0.300106,0.16511,0.567386,0.988066,0.290651,0.672768,0.154314,0.758723,0.776071,0.506541,0.0123696,0.79088,0.0475205,0.831531,0.00486034,0.638838,0.770061,0.478262,0.205339,0.030112,0.279084,0.676158,0.197387,0.675488,0.415459,0.379979,0.302543,0.538759,0.690842,0.76778,0.0786869,0.0690463,0.797549,0.0736638,0.0737116,0.801227,0.381431,0.537979,0.750302,0.656998,0.0383533,0.279272,0.899962,0.38289,0.0400903,0.18591,0.224407,0.471282,0.753195,0.912107,0.23154,0.220894,0.699278,0.237825,0.465309,0.478174,0.516406,0.670119,0.0157415,0.600408,0.200014,0.101799,0.432241,0.825518,0.119841,0.611896,0.7404,0.35854,0.569468,0.024096,0.178033,0.520489,0.939801,0.651542,0.205163,0.40973,0.784378,0.106339,0.883632,0.379193,0.19294,0.793978,0.57761,0.994624,0.595362,0.815665,0.765379,0.620776,0.230012,0.758406,0.240581,0.697804,0.266429,0.738827,0.585606,0.166007,0.0494747,0.871029,0.248933,0.722033,0.946747,0.174383,0.0388358,0.550995,0.584011,0.26256,0.845255,0.702589,0.611822,0.222603,0.135667,0.420354,0.843553,0.621571,0.520797,0.788798,0.686356,0.920595,0.973336,0.496528,0.587294,0.33024,0.058934,0.407601,0.97748,0.729928,0.227195,0.170721,0.156101,0.946545,0.13645,0.66893,0.210551,0.368565,0.670175,0.949634,0.152165,0.612993,0.681532,0.138453,0.582578,0.953323,0.939915,0.505051,0.712949,0.299617,0.723669,0.409886,0.993798,0.67818,0.814684,0.569555,0.867828,0.684363,0.224308,0.166333,0.230316,0.431836,0.113665,0.0968859,0.434774,0.648187,0.585809,0.640533,0.198492,0.821183,0.273111,0.943144,0.303957,0.302108,0.691017,0.141915,0.155518,0.0486031,0.912679,0.109273,0.545962,0.78176,0.73841,0.0144728,0.144157,0.710949,0.501326,0.859574,0.941784,0.694265,0.354943,0.919717,0.800027,0.471962,0.872027,0.0175422,0.425408,0.0286542,0.948543,0.350046,0.878643,0.906885,0.185625,0.745896,0.871142,0.774741,0.195325,0.334668,0.720435,0.998553,0.00410092,0.305916,0.452638,0.111845,0.425413,0.645648,0.967642,0.477298,0.948232,0.302661,0.744452,0.592162,0.0405655,0.129286,0.770116,0.939584,0.181255,0.363798,0.120678,0.760804,0.506371,0.431414,0.0524483,0.778788,0.330164,0.77061,0.357131,0.380178,0.979122,0.722276,0.82374,0.609525,0.105234,0.934007,0.241542,0.0435064,0.188673,0.911259,0.886772,0.352259,0.819883,0.42312,0.530267,0.37618,0.0881081,0.988054,0.317489,0.323297,0.745614,0.499923,0.733031,0.0269784,0.269946,0.39225,0.124225,0.611637,0.94545,0.646781,0.65621,0.699652,0.701982,0.0930042,0.629332,0.591278,0.0776665,0.59195,0.81275,0.226067,0.532817,0.29608,0.295131,0.785511,0.0489112,0.674695,0.247524,0.29463,0.134264,0.270999,0.0818805,0.494645,0.638751,0.802071,0.325493,0.0168999,0.0543767,0.8766,0.135569,0.217864,0.0610149,0.401954,0.09474,0.578495,0.141403,0.550903,0.299953,0.0735577,0.121504,0.336178,0.270323,0.448139,0.033175,0.127553,0.882678,0.11866,0.719233,0.845538,0.940605,0.63309,0.877823,0.350555,0.516333,0.863161,0.841906,0.0746832,0.381225,0.996121,0.730119,0.139785,0.892415,0.788579,0.39986,0.898108,0.580654,0.0253813,0.423109,0.054336,0.338482,0.987251,0.289291,0.199039,0.150278,0.240316,0.806349,0.507942,0.26127,0.764623,0.738672,0.966433,0.559336,0.713942,0.575403,0.918438,0.611673,0.663692,0.83524,0.165388,0.919479,0.276563,0.746813,0.882374,0.937474,0.301602,0.466942,0.962743,0.854341,0.555158,0.795546,0.897668,0.303242,0.2188,0.0235277,0.722117,0.820619,0.348703,0.337222,0.140896,0.791836,0.199804,0.56171,0.199766,0.0823042,0.970144,0.0507467,0.199195,0.695608,0.620678,0.967938,0.628787,0.135667,0.0642721,0.266306,0.205109,0.769273,0.0203431,0.051945,0.0677585,0.188015,0.545507,0.158656,0.606148,0.847892,0.152466,0.158879,0.7717,0.13089,0.129991,0.918238,0.693014,0.735725,0.980524,0.963996,0.369694,0.990762,0.0509962,0.470306,0.175441,0.748901,0.770822,0.372946,0.786366,0.8678,0.66235,0.375175,0.208101,0.550959,0.64169,0.882131,0.868237,0.871361,0.688152,0.305967,0.144371,0.69003,0.923491,0.534392,0.0167454,0.406052,0.502514,0.149021,0.654566,0.807842,0.570877,0.153634,0.294822,0.264426,0.818112,0.604966,0.363341,0.70713,0.0185488,0.711379,0.0344335,0.148118,0.561737,0.812865,0.476747,0.37918,0.097392,0.374645,0.290281,0.233694,0.493225,0.876831,0.339566,0.307127,0.77432,0.00224805,0.113075,0.916984,0.93219,0.71644,0.431608,0.885628,0.984819,0.27129,0.97873,0.0801468,0.676884,0.950126,0.978689,0.860941,0.992653,0.260649,0.71997,0.932428,0.0288939,0.272063,0.0156354,0.418155,0.531692,0.999638,0.0826259,0.754212,0.0837488,0.000830054,0.851615,0.581755,0.219226,0.521251,0.315465,0.0849605,0.0426209,0.0074178,0.419063,0.377835,0.606862,0.676255,0.939231,0.0275424,0.994939,0.390384,0.176512,0.91902,0.590179,0.196857,0.943103,0.319072,0.695293,0.407016,0.758599,0.409062,0.874765,0.0634984,0.331261,0.507111,0.560609,0.079592,0.35633,0.766048,0.414216,0.503907,0.734256,0.175873,0.190509,0.00606245,0.821632,0.361585,0.9064,0.800377,0.413986,0.455401,0.718571,0.442865,0.211282,0.277642,0.75468,0.755442,0.264592,0.606774,0.145758,0.483102,0.993311,0.0715672,0.83454,0.442472,0.867515,0.290626,0.699545,0.828213,0.444228,0.668124,0.484286,0.622786,0.3341,0.929213,0.805489,0.623937,0.34086,0.225029,0.0750166,0.203724,0.775763,0.911115,0.761029,0.966487,0.679404,0.208869,0.608635,0.418886,0.348123,0.949411,0.752919,0.803257,0.140277,0.259959,0.570782,0.860647,0.20783,0.603231,0.276361,0.335104,0.0232874,0.388654,0.649058,0.505109,0.876677,0.494385,0.315979,0.441445,0.443217,0.418268,0.0749738,0.607892,0.782894,0.426549,0.29794,0.346888,0.8947,0.935156,0.337173,0.313166,0.224008,0.817229,0.0811452,0.67741,0.949025,0.345535,0.0420775,0.311269,0.719014,0.431336,|0.507958,0.110887,0.740705,0.142681,0.544673,0.562852,0.400935,0.153474,0.850463,0.670666,0.0135012,0.639107,0.566087,0.384422,0.86658,0.293801,0.0107132,0.82773,0.234123,0.29609,0.224576,0.476503,0.517646,0.669694,0.909815,0.809682,0.49915,0.484249,0.412008,0.0747963,0.786134,0.69874,0.868477,0.517595,0.262944,0.575232,0.121962,0.554221,0.947497,0.41449,0.393688,0.479289,0.489903,0.0436428,0.673038,0.508181,0.876122,0.371758,0.529332,0.245585,0.431615,0.492595,0.773478,0.383673,0.858862,0.322501,0.223111,0.584041,0.939066,0.072682,0.286077,0.459018,0.730039,0.372651,0.22169,0.0320778,0.0694596,0.0554832,0.849297,0.0639378,0.0608266,0.149503,0.968914,0.466296,0.418611,0.378694,0.916156,0.0410473,0.92803,0.425022,0.837716,0.333935,0.0284814,0.0111098,0.782485,0.331331,0.797628,0.470141,0.657355,0.736856,0.222255,0.126911,0.973974,0.527791,0.581552,0.6617,0.260483,0.059696,0.129956,0.697279,0.331103,0.159967,0.943498,0.463265,0.487757,0.300914,0.715286,0.883472,0.227801,0.674132,0.556562,0.222345,0.360839,0.860587,0.0773195,0.0483235,0.833,0.320715,0.369253,0.37737,0.459639,0.415702,0.329934,0.968227,0.339373,0.239454,0.482784,0.0948497,0.742617,0.645196,0.923167,0.0776696,0.216029,0.345617,0.362529,0.438585,0.174354,0.477435,0.856622,0.306972,0.728172,0.20933,0.0174325,0.733364,0.551126,0.989394,0.750855,0.238521,0.631698,0.603566,0.436582,0.873393,0.623192,0.00580567,0.985851,0.833929,0.405041,0.405702,0.1708,0.0419799,0.166174,0.430146,0.566045,0.911766,0.43652,0.835519,0.821634,0.563169,0.342063,0.982579,0.897425,0.570447,0.168326,0.78004,0.362232,0.356698,0.0921574,0.26526,0.607308,0.925328,0.486068,0.0430996,0.0887904,0.126799,0.865562,0.538424,0.716982,0.55849,0.611396,0.116351,0.257098,0.385134,0.484719,0.625567,0.591986,0.243828,0.522632,0.795869,0.78607,0.318594,0.0835339,0.328021,0.971504,0.825668,0.412278,0.248776,0.325434,0.0280692,0.702996,0.0180879,0.119921,0.197713,0.597161,0.175484,0.850173,0.499966,0.365506,0.176832,0.166651,0.246131,0.718808,0.269474,0.495233,0.375284,0.967768,0.396067,0.827426,0.413473,0.772732,0.714035,0.0320992,0.585014,0.250265,0.724379,0.467344,0.731268,0.0824673,0.18698,0.508766,0.0315232,0.115541,0.0570574,0.617871,0.931119,0.490645,0.784483,0.584513,0.806383,0.163025,0.56088,0.0759418,0.385439,0.334812,0.10091,0.851016,0.73467,0.703232,0.420522,0.130256,0.365765,0.212788,0.00433677,0.0911406,0.123706,0.95756,0.25583,0.199065,0.251545,0.0324243,0.172006,0.48851,0.709287,0.436763,0.445812,0.777694,0.107364,0.679074,0.839945,0.269052,0.51865,0.41712,0.703839,0.682331,0.213791,0.576328,0.652097,0.729529,0.0932471,0.525744,0.543067,0.603402,0.748366,0.712538,0.900443,0.981006,0.634471,0.341519,0.0164671,0.790174,0.549481,0.499327,0.707141,0.659964,0.117921,0.709583,0.0974277,0.50213,0.578975,0.698088,0.670257,0.871878,0.0593998,0.805882,0.66373,0.949557,0.211395,0.31629,0.436707,0.731765,0.303622,0.764648,0.236456,0.160784,0.768388,0.770043,0.586232,0.205708,0.950137,0.72868,0.561369,0.434717,0.476939,0.602434,0.163835,0.241645,0.436111,0.993347,0.875435,0.0555409,0.391349,0.17104,0.588673,0.886585,0.710573,0.184031,0.0870606,0.745181,0.910873,0.851249,0.795373,0.597344,0.518564,0.627104,0.0234011,0.241659,0.380653,0.477986,0.826773,0.198124,0.612921,0.654972,0.513642,0.95036,0.655535,0.183293,0.970909,0.644397,0.480973,0.0345279,0.282653,0.260931,0.540664,0.749231,0.230779,0.080169,0.844459,0.644995,0.690288,0.458271,0.0517331,0.544532,0.0108181,0.569404,0.489536,0.241638,0.872637,0.512517,0.642343,0.53786,0.13345,0.780107,0.524487,0.899747,0.371308,0.10921,0.632891,0.0644956,0.797264,0.904176,0.770696,0.78536,0.529036,0.0634181,0.0329866,0.253951,0.429408,0.853465,0.661366,0.0978885,0.84968,0.215135,0.232092,0.598496,0.0307595,0.146073,0.835049,0.969808,0.981595,0.614563,0.219249,0.51179,0.0635223,0.962672,0.622386,0.299684,0.088106,0.984826,0.874962,0.175068,0.680023,0.0203102,0.654158,0.478674,0.166507,0.52619,0.35582,0.604829,0.780546,0.836804,0.577773,0.0517997,0.431263,0.91274,0.0975977,0.0968236,0.134371,0.247048,0.128313,0.983189,0.183666,0.138222,0.430988,0.547626,0.777163,0.48245,0.150439,0.250471,0.567222,0.298746,0.369268,0.533683,0.0702263,0.870719,0.639878,0.699755,0.224883,0.521861,0.266236,0.67144,0.786089,0.187202,0.380029,0.306831,0.167892,0.977973,0.663441,0.781169,0.0339591,0.135879,0.828932,0.506499,0.420711,0.179556,0.667599,0.0987399,0.233127,0.914599,0.315492,0.297156,0.567821,0.486168,0.469996,0.741283,0.221264,0.789891,0.0938459,0.335271,0.844522,0.318709,0.895246,0.0499119,0.179987,0.222122,0.251626,0.966269,0.417337,0.186699,0.834142,0.875718,0.333882,0.147195,0.11463,0.728579,0.509107,0.124962,0.0809092,0.958086,0.438973,0.31065,0.685476,0.117095,0.498724,0.0319219,0.76057,0.43221,0.748163,0.287552,0.423505,0.99796,0.889055,0.935057,0.561309,0.79923,0.75988,0.188225,0.951944,0.295611,0.109707,0.543993,0.46626,0.266555,0.338344,0.32847,0.996275,0.0710532,0.347651,0.556559,0.575302,0.553225,0.89308,0.0531359,0.0100172,0.230244,0.066178,0.352269,0.00656182,0.165389,0.576603,0.910242,0.698958,0.258648,0.275491,0.357535,0.311983,0.317261,0.237262,0.493853,0.99,0.21147,0.128945,0.064971,0.342797,0.957391,0.205696,0.191597,0.858307,0.331035,0.692632,0.203874,0.64188,0.669452,0.338503,0.435961,0.680022,0.228242,0.907501,0.195247,0.320028,0.242488,0.612434,0.271969,0.691163,0.0689803,0.475109,0.8468,0.916904,0.633926,0.260504,0.947158,0.0801414,0.0607304,0.491158,0.899455,0.469434,0.971307,0.198105,0.293688,0.264615,0.239588,0.317532,0.988188,0.0417311,0.584126,0.707986,0.97524,0.427605,0.837132,0.669455,0.915886,0.298892,0.856977,0.240328,0.523452,0.885168,0.121244,0.955752,0.716639,0.389373,0.59954,0.770863,0.519899,0.561987,0.508243,0.853116,0.740525,0.182698,0.745809,0.726053,0.106436,0.453712,0.109732,0.594615,0.812521,0.621896,0.150499,0.0467651,0.546593,0.157496,0.365125,0.778092,0.477502,0.299982,0.0857502,0.0164408,0.937897,0.2817,0.660502,0.567949,0.289746,0.903661,0.00303143,0.371479,0.00486028,0.17884,0.921538,0.664717,0.917037,0.788205,0.329316,0.155946,0.843839,0.146183,0.29613,0.115255,0.206288,0.595148,0.688682,0.470869,0.766848,0.450805,0.150884,0.296665,0.356024,0.321424,0.272056,0.693393,0.369615,0.0447776,0.93603,0.0895424,0.165227,0.42912,0.849285,0.434927,0.887692,0.622767,0.861164,0.0949642,0.222676,0.672374,0.099836,0.939793,0.233874,0.293544,0.0341573,0.882859,0.776594,0.256132,0.287426,0.560357,0.163599,0.788427,0.985333,0.953913,0.706136,0.80246,0.0919179,0.178126,0.405871,0.873958,0.467174,0.662019,0.855608,0.995652,0.717066,0.509234,0.0126674,0.178525,0.42599,0.343494,0.532946,0.366455,0.0810419,0.450045,0.531166,0.873964,0.141779,0.415649,0.341845,0.722619,0.336652,0.134193,0.324298,0.403588,0.715131,0.506826,0.61634,0.738791,0.478925,0.12418,0.274804,0.639587,0.950293,0.306094,0.285508,0.264342,0.895005,0.576146,0.193261,0.798956,0.56457,0.727971,0.692331,0.444891,0.000397146,0.18036,0.366664,0.255398,0.266271,0.00195026,0.326229,0.199784,0.146386,0.265434,0.244832,0.947427,0.748645,0.702451,0.737529,0.929852,0.00800943,0.351328,0.659397,0.639638,0.0566726,0.55497,0.627036,0.299281,0.390315,0.0276397,0.925923,0.816133,0.73002,0.1002,0.541003,0.145891,0.217936,0.516235,0.661509,0.812935,0.534591,0.0190884,0.934847,0.431965,0.166172,0.227898,0.795917,0.946616,0.443208,0.964686,0.844564,0.896675,0.132583,0.954684,0.391394,0.442901,0.253626,0.304447,0.229924,0.058605,0.547086,0.194048,0.69442,0.407257,0.114552,0.493634,0.0380521,0.588214,0.0892635,0.291773,0.110677,0.197407,0.520133,0.743618,0.717495,0.911307,0.811071,0.76997,0.268544,0.603692,0.963977,0.293942,0.593205,0.0985821,0.510486,0.451278,0.309335,0.782788,0.624528,0.475122,0.629407,0.895879,0.245403,0.981402,0.235474,0.20922,0.604007,0.282087,0.750237,0.619243,0.0359136,0.54819,0.515388,0.524225,0.935237,0.107927,0.293028,0.594616,0.127268,0.598172,0.16896,0.743692,0.366992,0.125821,0.471743,0.575519,0.664709,0.582198,0.664563,0.811695,0.909789,0.111487,0.805244,0.383861,0.879086,0.751566,0.00937289,0.202481,0.53723,0.0750437,0.00620419,0.94745,0.104145,0.194204,0.807138,0.705829,0.351048,0.336639,0.935827,0.730694,0.523154,0.245077,0.728921,0.997326,0.791037,0.9321,0.738158,0.442968,0.543848,0.195086,0.198035,0.144534,0.219337,0.876054,0.080201,0.104696,0.0903226,0.880067,0.377762,0.67827,0.286948,0.804978,0.0079093,0.547566,0.475953,0.683851,0.163638,0.605194,0.3884,0.267649,0.371265,0.552508,0.701685,0.0765712,0.970507,0.194431,0.927379,0.629646,0.788757,0.239784,0.852862,0.0289319,0.203508,0.412153,0.644234,0.24377,0.00787538,0.936147,0.344079,0.602061,0.580922,0.423001,0.488941,0.625662,0.762556,0.224799,0.121848,0.920067,0.867081,0.891496,0.0695083,0.828154,0.541595,0.878287,0.000350237,0.16161,0.976696,0.0242931,0.485558,0.327509,0.895573,0.604503,0.181311,0.756171,0.998883,0.386379,0.976637,0.13789,0.277103,0.338211,0.16299,0.342112,0.517138,0.333721,0.356847,0.342675,0.0381123,0.567635,0.080878,0.96078,0.178386,0.592865,0.188475,0.339909,0.343979,0.910389,0.821883,0.407076,0.684981,0.518858,|0.89074,0.825728,0.977169,0.956363,0.555899,0.629895,0.275554,0.950841,0.123152,0.862098,0.456921,0.792282,0.00856334,0.929972,0.940136,0.601719,0.936486,0.974144,0.660892,0.0244646,0.272285,0.736113,0.271337,0.898181,0.805144,0.444586,0.0397304,0.905021,0.858621,0.326451,0.0701974,0.952913,0.585535,0.444164,0.115356,0.89135,0.184088,0.697025,0.493816,0.835821,0.748437,0.538347,0.361722,0.715904,0.376927,0.320289,0.483148,0.848911,0.580316,0.00372231,0.268212,0.495888,0.878691,0.941262,0.972262,0.522339,0.954668,0.0511943,0.286518,0.953345,0.810254,0.227452,0.73085,0.305583,0.564183,0.927504,0.30039,0.41617,0.379329,0.881791,0.490915,0.763695,0.755092,0.245758,0.00237322,0.0261039,0.764619,0.538178,0.368661,0.514944,0.698792,0.494907,0.0410761,0.883777,0.370467,0.605036,0.436207,0.0867567,0.723891,0.921455,0.122271,0.526444,0.4787,0.472984,0.856376,0.607522,0.323138,0.836058,0.953118,0.0429336,0.532754,0.944752,0.0449718,0.0230535,0.810329,0.567876,0.0570922,0.857742,0.743625,0.603099,0.944629,0.0961768,0.0339173,0.895926,0.849602,0.823306,0.926981,0.131408,0.965671,0.609466,0.890392,0.597872,0.116854,0.488093,0.198244,0.649014,0.799265,0.8289,0.372127,0.361742,0.679344,0.0874027,0.062813,0.0716342,0.834722,0.558228,0.0752087,0.370942,0.666209,0.465884,0.958173,0.764954,0.0655018,0.955939,0.222104,0.111648,0.596704,0.91111,0.999782,0.0109769,0.407546,0.562155,0.215565,0.687834,0.365643,0.467434,0.187006,0.276899,0.125685,0.471577,0.0843785,0.38509,0.162058,0.283632,0.515152,0.355665,0.844949,0.251767,0.191086,0.47251,0.142282,0.739364,0.799668,0.733677,0.196147,0.77564,0.738547,0.596021,0.286445,0.553121,0.193714,0.799192,0.0552433,0.575634,0.886842,0.456282,0.510954,0.43004,0.0358856,0.317304,0.889672,0.079268,0.867033,0.228574,0.354605,0.130685,0.396928,0.294191,0.58689,0.513231,0.344912,0.732791,0.76003,0.264151,0.788896,0.849643,0.194429,0.191499,0.586971,0.383126,0.581876,0.6955,0.0331796,0.239407,0.192292,0.179883,0.322759,0.852248,0.695984,0.548381,0.150034,0.599366,0.803634,0.657637,0.964038,0.2538,0.88418,0.0959303,0.73751,0.164385,0.603218,0.294143,0.27474,0.833447,0.532825,0.835744,0.822689,0.846425,0.356111,0.683222,0.81559,0.60442,0.838692,0.577386,0.842769,0.187313,0.303917,0.760498,0.524956,0.227115,0.707291,0.152556,0.166755,0.739185,0.607021,0.0758918,0.916042,0.793075,0.647925,0.851595,0.387412,0.102441,0.44199,0.600399,0.516467,0.430571,0.850118,0.255002,0.0782481,0.177596,0.419385,0.817065,0.567583,0.762693,0.150157,0.370677,0.178055,0.161786,0.560177,0.641013,0.40869,0.882562,0.295144,0.221604,0.818268,0.130723,0.93169,0.324249,0.572794,0.456939,0.764778,0.316515,0.0857884,0.190414,0.808541,0.0445583,0.70424,0.799631,0.630117,0.159518,0.14305,0.114923,0.506747,0.469614,0.913714,0.153315,0.483448,0.886965,0.569853,0.438995,0.73687,0.283187,0.788945,0.921744,0.527389,0.895723,0.664655,0.741414,0.698427,0.655303,0.548792,0.0872635,0.216859,0.0563984,0.67834,0.0716999,0.332688,0.801721,0.180954,0.038907,0.0606391,0.866459,0.360678,0.0998264,0.35192,0.24567,0.371802,0.478278,0.163043,0.0934685,0.0809234,0.288958,0.341976,0.551186,0.362258,0.35341,0.573588,0.346514,0.23144,0.388393,0.944653,0.0403445,0.0686768,0.114374,0.326069,0.055334,0.770622,0.78271,0.825411,0.885425,0.801005,0.71226,0.984012,0.0291342,0.748461,0.311171,0.769023,0.787871,0.0397934,0.547991,0.854106,0.258551,0.781742,0.345966,0.246921,0.687938,0.493935,0.229369,0.570296,0.468801,0.765268,0.541147,0.205262,0.678608,0.9379,0.297033,0.836145,0.251932,0.68116,0.180737,0.786894,0.476956,0.568587,0.189008,0.849635,0.245664,0.509759,0.670967,0.558437,0.396913,0.602856,0.252161,0.11905,0.47615,0.754136,0.753788,0.350629,0.362537,0.265906,0.492406,0.474342,0.850793,0.14862,0.440834,0.599062,0.678084,0.585374,0.362087,0.618167,0.188277,0.0271577,0.699528,0.578896,0.051958,0.212271,0.485896,0.492206,0.0952929,0.644011,0.266936,0.148993,0.863767,0.865385,0.242435,0.721207,0.178719,0.142561,0.860109,0.180982,0.0657951,0.292747,0.200497,0.93862,0.483266,0.215242,0.642115,0.035418,0.589396,0.576502,0.384571,0.523179,0.164235,0.860173,0.202057,0.18858,0.403754,0.989733,0.489996,0.388779,0.374965,0.569503,0.588708,0.827962,0.544609,0.704759,0.697475,0.558371,0.388755,0.369542,0.860906,0.426471,0.080754,0.13449,0.356641,0.916395,0.432548,0.248612,0.00226444,0.428536,0.558573,0.589424,0.934005,0.614116,0.321234,0.245149,0.465032,0.659157,0.92266,0.693216,0.832096,0.208128,0.330409,0.514681,0.833179,0.252192,0.697414,0.019851,0.694565,0.158022,0.109031,0.501984,0.837637,0.931887,0.119363,0.753993,0.24192,0.861095,0.299367,0.917073,0.33387,0.144349,0.609187,0.368542,0.0997838,0.536715,0.307589,0.0491875,0.0966792,0.00688505,0.551554,0.67057,0.391698,0.592005,0.174854,0.132569,0.292063,0.158414,0.668875,0.665696,0.311294,0.665611,0.0591186,0.322081,0.371552,0.527099,0.518509,0.569734,0.70752,0.878104,0.0205835,0.363056,0.145545,0.943815,0.742461,0.358033,0.977631,0.881885,0.0313125,0.792741,0.809259,0.470096,0.824891,0.398134,0.316896,0.294095,0.48227,0.28084,0.0841753,0.61005,0.532735,0.57054,0.0869393,0.0198278,0.284737,0.343656,0.846895,0.597441,0.430086,0.477962,0.470519,0.0897157,0.57913,0.259942,0.877485,0.269598,0.174556,0.510066,0.252701,0.490895,0.565477,0.417586,0.0591012,0.876297,0.420446,0.290175,0.229812,0.831567,0.423927,0.865501,0.438924,0.511277,0.824954,0.04146,0.0984772,0.207509,0.537806,0.00677538,0.874923,0.228302,0.489218,0.0915387,0.98488,0.869714,0.104421,0.322643,0.954111,0.185378,0.640461,0.956504,0.0273436,0.146108,0.416619,0.311591,0.128749,0.477021,0.512909,0.903948,0.409428,0.290308,0.411111,0.0668032,0.837551,0.85642,0.84136,0.899504,0.977132,0.924543,0.0152382,0.64198,0.194572,0.655733,0.23115,0.396765,0.102204,0.247735,0.32092,0.408483,0.230389,0.521443,0.131978,0.67719,0.582645,0.604628,0.23952,0.779159,0.776605,0.0145406,0.74222,0.696554,0.929371,0.445456,0.534982,0.528886,0.816278,0.533305,0.187436,0.223854,0.519414,0.923415,0.239158,0.411068,0.94569,0.953978,0.647368,0.373512,0.808826,0.541738,0.342359,0.63166,0.379553,0.818588,0.197901,0.844024,0.0870007,0.00962299,0.335099,0.545457,0.226774,0.558903,0.924587,0.793572,0.426054,0.46169,0.339229,0.236654,0.780175,0.283981,0.268308,0.890146,0.378965,0.262026,0.312414,0.667645,0.0331364,0.0103068,0.81534,0.946151,0.497634,0.435127,0.300614,0.186052,0.4996,0.705641,0.800231,0.907778,0.313895,0.775758,0.337114,0.651495,0.303718,0.954698,0.574512,0.416566,0.726514,0.141782,0.805441,0.763782,0.288521,0.36361,0.768376,0.370599,0.824161,0.545735,0.257646,0.0259452,0.924957,0.0467338,0.138159,0.336141,0.217592,0.724485,0.692494,0.0404237,0.261888,0.359924,0.907921,0.297321,0.472179,0.930286,0.994183,0.334677,0.0483227,0.771638,0.817662,0.783604,0.885145,0.320475,0.227749,0.819988,0.647776,0.343333,0.859622,0.475822,0.0931643,0.884377,0.595078,0.614159,0.546965,0.620319,0.885063,0.81008,0.608381,0.935586,0.957687,0.694336,0.195397,0.452658,0.286186,0.929699,0.788406,0.310078,0.417809,0.463798,0.81068,0.0626405,0.0947999,0.0862413,0.336227,0.0267798,0.523272,0.330505,0.279778,0.155317,0.824638,0.325581,0.821697,0.249931,0.436752,0.295642,0.946848,0.409907,0.768274,0.829396,0.664697,0.424233,0.505237,0.0318234,0.375406,0.753124,0.274795,0.644382,0.056281,0.858242,0.910405,0.790155,0.204527,0.0325286,0.373411,0.373558,0.87877,0.124613,0.657015,0.998549,0.907131,0.841976,0.367994,0.584395,0.81218,0.572501,0.500727,0.99614,0.237147,0.0550359,0.458731,0.809143,0.915516,0.573119,0.8601,0.794517,0.126776,0.633888,0.0188487,0.274853,0.239079,0.533282,0.897832,0.325395,0.118331,0.896437,0.397312,0.259947,0.968682,0.589594,0.346668,0.452488,0.436223,0.515066,0.942997,0.862467,0.560209,0.875185,0.175878,0.929781,0.795446,0.494969,0.881591,0.798784,0.928044,0.28122,0.437188,0.0279608,0.923322,0.360701,0.674589,0.96389,0.686582,0.904189,0.929668,0.595671,0.562868,0.0708709,0.703435,0.472859,0.919054,0.691854,0.746008,0.79125,0.246223,0.119473,0.632334,0.350311,0.913455,0.633611,0.634916,0.522472,0.458499,0.565842,0.653185,0.634534,0.957549,0.186423,0.145436,0.229001,0.782403,0.147017,0.523103,0.129419,0.347861,0.0310839,0.672813,0.50681,0.0847656,0.0266938,0.282987,0.511295,0.147165,0.550873,0.812401,0.756071,0.138031,0.537432,0.0421206,0.606275,0.65711,0.509184,0.0560618,0.00370538,0.205736,0.536052,0.745466,0.0616646,0.127592,0.976876,0.346674,0.373489,0.0360213,0.714154,0.13599,0.17277,0.866392,0.0805317,0.996409,0.291803,0.243415,0.186949,0.89667,0.399321,0.787347,0.627917,0.430334,0.621943,0.336795,0.442746,0.6356,0.502693,0.421664,0.111214,0.270502,0.295244,0.665966,0.802017,0.767697,0.838233,0.385325,0.701575,0.128426,0.767081,0.636344,0.821841,0.0695941,0.116741,0.204709,0.454598,0.576427,0.80285,0.982134,0.245569,0.292443,0.531449,0.161466,0.825853,0.534977,0.199276,0.187405,0.27364,0.693238,0.565453,0.70675,0.962134,0.782072,0.739567,0.972158,0.415221,0.445759,0.283328,0.594122,0.506779,0.933267,0.325483,0.77429,0.964624,0.20975,0.145939,0.807404,0.113476,0.493995,0.531504,0.107246,0.88288,0.951609,|0.333512,0.285128,0.465504,0.48509,0.913842,0.268082,0.896792,0.416092,0.641671,0.029332,0.0854397,0.377432,0.96825,0.317632,0.404282,0.372725,0.00953215,0.429172,0.157892,0.390215,0.987763,0.216541,0.724348,0.05305,0.126586,0.0364656,0.42235,0.0186681,0.366684,0.789065,0.546171,0.668686,0.801545,0.961422,0.402294,0.807099,0.0562907,0.513732,0.188726,0.424181,0.397155,0.524035,0.516257,0.450902,0.990926,0.188506,0.611206,0.728795,0.206075,0.787745,0.320905,0.977629,0.489558,0.922829,0.973919,0.14031,0.969,0.790708,0.13718,0.372002,0.647203,0.533513,0.673615,0.479283,0.164043,0.25304,0.745545,0.304052,0.997054,0.929765,0.3422,0.0171646,0.104355,0.366988,0.283853,0.503641,0.399043,0.961282,0.132981,0.563198,0.694294,0.603164,0.838034,0.845346,0.419773,0.68226,0.884854,0.039468,0.405358,0.106858,0.692961,0.683526,0.549092,0.737413,0.502019,0.784689,0.979899,0.88925,0.577022,0.903825,0.117085,0.194202,0.706904,0.417601,0.289918,0.304131,0.952194,0.605417,0.77529,0.402883,0.206576,0.665486,0.878798,0.822865,0.114243,0.0380968,0.625526,0.970974,0.272265,0.316772,0.0409137,0.0359331,0.551775,0.84454,0.321975,0.968215,0.729852,0.505754,0.989846,0.0670364,0.688106,0.334269,0.188054,0.998364,0.0398261,0.11125,0.443993,0.816776,0.804985,0.230038,0.176673,0.296632,0.0923504,0.986473,0.0760347,0.154054,0.586992,0.588304,0.125254,0.862568,0.74638,0.655396,0.849486,0.960544,0.41859,0.996345,0.504125,0.631918,0.25698,0.524618,0.727666,0.240414,0.199264,0.865038,0.905585,0.66179,0.27897,0.321505,0.398873,0.170994,0.349886,0.693113,0.72702,0.916001,0.594719,0.24112,0.782679,0.481375,0.147572,0.412253,0.209026,0.421611,0.546974,0.818158,0.287439,0.972784,0.27931,0.639071,0.826488,0.840736,0.237158,0.42521,0.401632,0.561643,0.555958,0.690448,0.300002,0.817991,0.197842,0.174298,0.780993,0.316237,0.919768,0.395789,0.515823,0.746268,0.127609,0.482642,0.898537,0.200838,0.0822595,0.62226,0.286783,0.0465623,0.617708,0.3709,0.425141,0.63635,0.721586,0.888471,0.496856,0.565089,0.806049,0.80986,0.549392,0.533655,0.818087,0.518325,0.579432,0.909575,0.576881,0.953236,0.576514,0.771759,0.172668,0.287766,0.206817,0.0965357,0.73132,0.37434,0.695672,0.551001,0.256715,0.795784,0.522844,0.315288,0.0812147,0.316622,0.561222,0.721134,0.940392,0.945475,0.032739,0.69677,0.367405,0.681683,0.733103,0.862076,0.849214,0.860096,0.314594,0.575542,0.636789,0.667237,0.941301,0.25566,0.120957,0.320776,0.96189,0.218756,0.504373,0.857884,0.771666,0.931928,0.752087,0.322801,0.480078,0.519401,0.959244,0.401519,0.897507,0.540883,0.41105,0.839519,0.246043,0.982648,0.193166,0.120208,0.678822,0.891308,0.338429,0.407779,0.0663904,0.329839,0.36699,0.50555,0.53336,0.683498,0.360735,0.200305,0.950231,0.193814,0.842299,0.188506,0.354165,0.0399555,0.622018,0.767663,0.0962841,0.092361,0.0255179,0.484463,0.886692,0.629572,0.206132,0.790395,0.187275,0.669085,0.3994,0.232908,0.315529,0.443133,0.359106,0.226644,0.857818,0.348678,0.746177,0.285008,0.27239,0.586936,0.813137,0.914963,0.67597,0.367744,0.67369,0.22853,0.190456,0.36544,0.356851,0.790182,0.148015,0.0833188,0.227554,0.0395707,0.909218,0.103342,0.895192,0.466379,0.208515,0.454858,0.313392,0.989781,0.59303,0.946476,0.0159379,0.974111,0.246901,0.468587,0.393903,0.946674,0.663648,0.287537,0.0041858,0.802857,0.361889,0.146038,0.0578018,0.567203,0.727656,0.957035,0.447781,0.857976,0.765574,0.824395,0.472989,0.287021,0.0838741,0.602042,0.0956785,0.00412136,0.984373,0.264664,0.100541,0.622363,0.060471,0.745936,0.167785,0.546541,0.360698,0.380792,0.940551,0.973012,0.984183,0.861048,0.240625,0.536984,0.695127,0.4148,0.0782951,0.794571,0.448198,0.738409,0.401779,0.991007,0.138533,0.710062,0.244483,0.638749,0.360019,0.465036,0.469268,0.993616,0.271538,0.158601,0.0779518,0.806308,0.0297648,0.828633,0.438604,0.159932,0.259385,0.784152,0.914483,0.33786,0.0842474,0.391695,0.964347,0.230494,0.143238,0.01535,0.899874,0.657623,0.872991,0.302522,0.670154,0.693881,0.732246,0.71022,0.387958,0.910648,0.854874,0.260501,0.0929409,0.624851,0.260604,0.284668,0.850365,0.435758,0.265767,0.566044,0.784311,0.979065,0.108641,0.782333,0.509388,0.16542,0.377591,0.593467,0.550059,0.747327,0.430824,0.798285,0.101504,0.739714,0.127593,0.421581,0.129531,0.808365,0.63102,0.518916,0.0384302,0.217633,0.648871,0.543822,0.0927669,0.120252,0.363294,0.152702,0.215649,0.049826,0.286051,0.834182,0.998887,0.984564,0.55304,0.714813,0.0961925,0.432357,0.316095,0.21949,0.0354818,0.0350498,0.402692,0.992342,0.579315,0.50831,0.223678,0.197759,0.151489,0.292098,0.854486,0.4626,0.770914,0.348509,0.913885,0.703062,0.401105,0.290813,0.610062,0.0770315,0.752403,0.42414,0.610006,0.842288,0.500771,0.249347,0.166144,0.473002,0.523105,0.414838,0.765318,0.248385,0.761687,0.121851,0.770259,0.84127,0.53779,0.772602,0.913882,0.227686,0.749651,0.193644,0.278925,0.74105,0.537689,0.561109,0.0326965,0.211489,0.809452,0.190801,0.852315,0.121965,0.062028,0.316454,0.565502,0.849863,0.0135682,0.400739,0.391335,0.0571448,0.303225,0.493961,0.348033,0.712515,0.275469,0.810587,0.595963,0.57252,0.216436,0.204045,0.533865,0.802602,0.612171,0.639293,0.863348,0.847019,0.924408,0.770789,0.598092,0.511799,0.641777,0.558268,0.415017,0.422058,0.917552,0.322668,0.509681,0.837848,0.806012,0.321484,0.2411,0.489471,0.89821,0.182263,0.559853,0.628159,0.604278,0.481707,0.960829,0.474489,0.826611,0.472949,0.898423,0.219928,0.725003,0.837984,0.391588,0.11038,0.266044,0.959232,0.294476,0.530732,0.271548,0.460221,0.440246,0.0288491,0.228398,0.886656,0.168069,0.358284,0.998924,0.713298,0.894736,0.81224,0.431014,0.901742,0.870813,0.580203,0.494702,0.890352,0.936794,0.290895,0.428553,0.224784,0.763256,0.827045,0.0707082,0.0669988,0.415455,0.725212,0.460457,0.302619,0.847155,0.14581,0.116806,0.871853,0.313715,0.96051,0.307616,0.191404,0.106915,0.729567,0.374036,0.959483,0.00656348,0.962726,0.239988,0.604333,0.323368,0.510065,0.715352,0.105668,0.149702,0.373811,0.66088,0.820094,0.323285,0.00768119,0.846759,0.0167486,0.899269,0.585115,0.643382,0.74399,0.763525,0.00513077,0.724867,0.610144,0.661727,0.158301,0.465646,0.843925,0.388355,0.148761,0.313758,0.223349,0.627539,0.925495,0.0201733,0.869221,0.123043,0.844219,0.340307,0.298115,0.278579,0.666873,0.14541,0.230848,0.547202,0.941645,0.0730278,0.328024,0.0681685,0.338421,0.22662,0.998737,0.524831,0.862733,0.0755029,0.689807,0.05672,0.411702,0.919713,0.0820943,0.220743,0.0269262,0.52374,0.86262,0.856368,0.48493,0.28372,0.527104,0.724462,0.87106,0.370995,0.37377,0.130854,0.991029,0.62842,0.020911,0.883784,0.591259,0.0523461,0.49046,0.454637,0.133241,0.378731,0.691324,0.115767,0.728109,0.852629,0.0608604,0.713637,0.0433719,0.233472,0.682286,0.200144,0.127022,0.989913,0.107261,0.0668098,0.0500812,0.111119,0.702881,0.532866,0.411524,0.151811,0.765149,0.0365012,0.595837,0.0207394,0.427981,0.304361,0.00489026,0.160877,0.560746,0.385634,0.604213,0.200001,0.0198259,0.301734,0.153796,0.557387,0.948668,0.95507,0.589068,0.0193502,0.136279,0.920775,0.590115,0.976793,0.951301,0.447634,0.907441,0.242942,0.169675,0.957742,0.977216,0.694551,0.932488,0.554913,0.783507,0.444337,0.117866,0.671508,0.618464,0.610293,0.0464932,0.0918055,0.000752509,0.155106,0.462712,0.467029,0.813915,0.380876,0.584563,0.255526,0.486429,0.523328,0.99808,0.34499,0.700043,0.283026,0.947,0.940667,0.326147,0.108576,0.666291,0.0688123,0.977803,0.0525534,0.245154,0.286439,0.845565,0.322138,0.0262254,0.0480225,0.485123,0.704177,0.115279,0.435902,0.204822,0.973226,0.0100187,0.883953,0.410253,0.478846,0.270563,0.619429,0.271167,0.310097,0.370365,0.115522,0.629072,0.628843,0.76497,0.329791,0.683332,0.880438,0.600541,0.622682,0.51403,0.800812,0.972931,0.878984,0.346323,0.622177,0.458926,0.0245445,0.196948,0.583309,0.674644,0.770172,0.523417,0.885229,0.775509,0.832196,0.455276,0.654453,0.239512,0.767419,0.867063,0.612154,0.875506,0.321253,0.0693139,0.763926,0.148225,0.587888,0.827929,0.885342,0.198789,0.883156,0.123976,0.110402,0.101454,0.531921,0.395077,0.386328,0.364501,0.394121,0.799167,0.916124,0.386068,0.131396,0.746202,0.720863,0.265454,0.109969,0.398539,0.198002,0.0663922,0.197858,0.0558807,0.567098,0.050031,0.152141,0.746019,0.281835,0.587224,0.66934,0.384019,0.8095,0.558371,0.920419,0.0800282,0.629583,0.00882006,0.150525,0.664859,0.0141088,0.288006,0.799161,0.406747,0.78458,0.289753,0.21009,0.419577,0.359448,0.252353,0.863183,0.735409,0.41717,0.5638,0.987741,0.290495,0.910884,0.0729914,0.260334,0.109575,0.113814,0.118996,0.186552,0.652107,0.633025,0.658783,0.908916,0.47754,0.246265,0.272709,0.48073,0.0857841,0.503233,0.872169,0.331717,0.852243,0.948404,0.180089,0.784231,0.893537,0.456103,0.978071,0.0629786,0.66048,0.194986,0.312589,0.552662,0.587955,0.809122,0.0930919,0.535793,0.385334,0.115647,0.139466,0.807458,0.925724,0.644913,0.960005,0.162076,0.643077,0.0420288,0.991331,0.270468,0.998302,0.838182,0.528612,0.271568,0.207197,0.799678,0.201165,0.36023,0.206897,0.0236198,0.00820619,0.029026,0.915103,0.80393,0.17131,0.597987,0.311197,0.996824,0.345442,0.198418,0.107539,0.54252,0.234472,0.743753,0.823074,0.471371,0.500577,|0.881787,0.17253,0.708252,0.290066,0.0781369,0.844697,0.709882,0.383611,0.570916,0.524563,0.818517,0.0747602,0.668566,0.286541,0.687313,0.611252,0.696728,0.0569912,0.312702,0.42132,0.155333,0.543193,0.570728,0.135839,0.431812,0.714985,0.119857,0.365509,0.202112,0.948282,0.33035,0.485151,0.82847,0.635052,0.369156,0.0808893,0.787968,0.207331,0.0780216,0.725608,0.265507,0.0106589,0.0928773,0.410807,0.949379,0.805422,0.185284,0.386952,0.457057,0.0647264,0.596741,0.964051,0.712986,0.259519,0.267143,0.680589,0.275366,0.89574,0.00775498,0.892408,0.837288,0.624769,0.105789,0.0859472,0.499707,0.612714,0.197303,0.842946,0.41883,0.199908,0.523644,0.00791752,0.54497,0.153578,0.12454,0.328627,0.652423,0.347233,0.311799,0.0828757,0.266295,0.619392,0.102452,0.0252883,0.0678168,0.707322,0.914467,0.719743,0.138667,0.311869,0.621473,0.599653,0.730434,0.0993918,0.941635,0.957673,0.153721,0.0407394,0.226834,0.285237,0.784948,0.0498845,0.49539,0.945564,0.156154,0.736289,0.63121,0.645302,0.170369,0.205006,0.540598,0.63279,0.777465,0.142219,0.189273,0.0582691,0.969534,0.712488,0.299586,0.791922,0.416748,0.388178,0.755602,0.0942002,0.417382,0.678635,0.663402,0.905189,0.687634,0.0224474,0.311135,0.119305,0.363173,0.352733,0.66321,0.501881,0.040482,0.0825185,0.0398845,0.483387,0.514406,0.911298,0.349319,0.262008,0.733786,0.919076,0.893321,0.674032,0.911349,0.601923,0.4484,0.332893,0.167658,0.21273,0.00636071,0.062431,0.751215,0.264269,0.754522,0.381441,0.118345,0.723839,0.286303,0.970501,0.25533,0.669957,0.713335,0.664906,0.0951628,0.321471,0.549604,0.977979,0.794241,0.5863,0.400581,0.807559,0.79223,0.125194,0.79911,0.967287,0.511391,0.344327,0.68005,0.458283,0.632122,0.929433,0.499953,0.56723,0.125251,0.83595,0.468511,0.743101,0.0568849,0.756407,0.648837,0.826993,0.090663,0.417076,0.610119,0.122552,0.834547,0.870632,0.899405,0.60508,0.805954,0.488916,0.573736,0.793254,0.501986,0.574448,0.735063,0.17303,0.247756,0.0175707,0.227988,0.894914,0.215582,0.772426,0.725391,0.137607,0.885709,0.154757,0.38471,0.00625736,0.831497,0.661582,0.636976,0.679017,0.346997,0.557116,0.313514,0.119066,0.467782,0.0397057,0.229621,0.642031,0.283639,0.456255,0.507072,0.0773115,0.00945407,0.336732,0.512437,0.703891,0.384634,0.69406,0.762424,0.852281,0.629196,0.15434,0.553955,0.362173,0.8524,0.195366,0.486179,0.757872,0.824772,0.710669,0.000548542,0.673786,0.52651,0.232551,0.63173,0.285509,0.974794,0.437442,0.0834007,0.22607,0.377417,0.444227,0.455043,0.374047,0.0551904,0.80148,0.906761,0.893258,0.125415,0.889401,0.859923,0.620439,0.998745,0.865983,0.032597,0.943637,0.0150282,0.579822,0.699431,0.0891875,0.323407,0.122092,0.573841,0.810842,0.240331,0.59647,0.349998,0.1959,0.10968,0.930551,0.899172,0.91516,0.867261,0.718409,0.720976,0.746766,0.465762,0.383834,0.213496,0.0261848,0.523013,0.675088,0.482954,0.989363,0.318485,0.275751,0.258028,0.810935,0.285477,0.829419,0.28926,0.93528,0.645686,0.422563,0.483505,0.903166,0.526226,0.226226,0.575831,0.808905,0.0882285,0.158452,0.841686,0.859873,0.171391,0.0838698,0.499723,0.889245,0.711971,0.32409,0.384312,0.0906666,0.655332,0.816247,0.731042,0.905564,0.636985,0.924094,0.355331,0.236678,0.0164817,0.427815,0.483243,0.810104,0.588695,0.63998,0.702354,0.727785,0.103098,0.938443,0.170241,0.456611,0.25679,0.488787,0.130815,0.386603,0.837009,0.932094,0.345402,0.0448002,0.91219,0.360568,0.918151,0.00170201,0.301184,0.311242,0.759731,0.336607,0.808949,0.320329,0.914073,0.407255,0.761792,0.155451,0.135504,0.831934,0.611492,0.462504,0.954262,0.243033,0.559086,0.0975074,0.843192,0.349604,0.849849,0.914602,0.7155,0.971287,0.876219,0.40648,0.954417,0.415276,0.821067,0.936241,0.526568,0.405377,0.831845,0.355472,0.805585,0.592095,0.0633194,0.576591,0.736144,0.488873,0.641313,0.979482,0.379519,0.451928,0.297359,0.618669,0.078167,0.939958,0.899274,0.486614,0.649378,0.214281,0.469891,0.711603,0.751777,0.585626,0.308143,0.998737,0.910788,0.288214,0.91465,0.679178,0.9725,0.250365,0.716613,0.187793,0.73615,0.812177,0.704573,0.397675,0.830935,0.476784,0.766284,0.995097,0.318474,0.649883,0.600838,0.751879,0.818827,0.869312,0.754868,0.886314,0.388273,0.764669,0.777035,0.832573,0.802658,0.676214,0.462171,0.434479,0.881886,0.330119,0.898018,0.284539,0.832826,0.120244,0.853697,0.794605,0.90935,0.716127,0.843122,0.00284725,0.54414,0.53929,0.57434,0.553474,0.0801975,0.0367227,0.637138,0.24761,0.173727,0.955944,0.649776,0.146877,0.706118,0.0742632,0.396446,0.500505,0.779407,0.388397,0.969173,0.220803,0.303159,0.948621,0.380737,0.0339739,0.899649,0.942745,0.524196,0.456853,0.0420113,0.860271,0.40289,0.184533,0.753639,0.953391,0.86776,0.477383,0.0618429,0.0232231,0.307163,0.0305122,0.442626,0.198781,0.834231,0.60084,0.928594,0.411805,0.204433,0.98168,0.857177,0.0242806,0.177519,0.459379,0.658154,0.335632,0.781438,0.0206741,0.693267,0.731336,0.342142,0.984536,0.889173,0.60201,0.18293,0.682386,0.523624,0.794919,0.516709,0.963115,0.0839604,0.361554,0.0996828,0.526985,0.259327,0.471483,0.197766,0.580023,0.00458378,0.42696,0.322308,0.788088,0.928391,0.931447,0.353683,0.578353,0.624119,0.585119,0.162347,0.489339,0.50183,0.292681,0.442307,0.327524,0.217395,0.689722,0.896361,0.0423636,0.390554,0.567804,0.0871839,0.160077,0.158582,0.441172,0.93846,0.372379,0.69471,0.774227,0.204119,0.214771,0.511731,0.00843638,0.204323,0.260939,0.482728,0.768632,0.379408,0.35957,0.972459,0.108189,0.00616664,0.484163,0.278376,0.236316,0.38287,0.680019,0.503525,0.490347,0.474626,0.557465,0.373359,0.443906,0.626395,0.739359,0.745739,0.99215,0.564115,0.270961,0.288625,0.749227,0.70783,0.39246,0.12105,0.404383,0.851831,0.857222,0.166084,0.23024,0.602216,0.56358,0.927627,0.40258,0.427139,0.143214,0.768363,0.664666,0.393671,0.494372,0.825579,0.60211,0.560674,0.447422,0.709392,0.519227,0.456683,0.178795,0.628427,0.372564,0.975437,0.56325,0.783703,0.0760359,0.47975,0.348045,0.115625,0.876918,0.722957,0.0525848,0.779669,0.293,0.788084,0.376554,0.162826,0.830223,0.48817,0.87257,0.0425518,0.256588,0.815834,0.296271,0.239848,0.28868,0.263658,0.906844,0.34382,0.247917,0.929472,0.308404,0.72287,0.373041,0.468664,0.0543938,0.723866,0.796734,0.0819293,0.953438,0.094662,0.579624,0.16926,0.595119,0.542545,0.378091,0.205724,0.153025,0.333428,0.972935,0.224077,0.0846944,0.11803,0.671259,0.383178,0.819001,0.841935,0.0658638,0.278545,0.776906,0.99101,0.993179,0.1991,0.519258,0.648415,0.270208,0.754208,0.296173,0.375793,0.120133,0.059458,0.585243,0.426987,0.933415,0.378658,0.34747,0.985804,0.319957,0.871876,0.183946,0.928175,0.0642348,0.088532,0.47582,0.681312,0.389476,0.183879,0.968697,0.434815,0.447965,0.76903,0.461383,0.825485,0.985529,0.636423,0.77588,0.776664,0.168487,0.0336426,0.694845,0.268812,0.586682,0.935309,0.38354,0.940534,0.22798,0.297096,0.855649,0.170326,0.766526,0.637154,0.203086,0.529211,0.739106,0.82131,0.86366,0.560425,0.762049,0.73115,0.347144,0.845279,0.461927,0.693196,0.391098,0.611091,0.419177,0.404707,0.635922,0.00341511,0.774696,0.89728,0.880798,0.60304,0.661577,0.537077,0.47844,0.848166,0.919419,0.436035,0.468664,0.941859,0.579886,0.579862,0.833641,0.116582,0.958303,0.321182,0.940255,0.518126,0.462093,0.191847,0.222354,0.624472,0.362093,0.169483,0.100418,0.90039,0.794858,0.378655,0.223363,0.0022521,0.379288,0.227222,0.0216558,0.982263,0.672187,0.327662,0.532916,0.586582,0.949996,0.375803,0.368701,0.825382,0.831498,0.640162,0.980813,0.220512,0.288218,0.854087,0.369057,0.631538,0.684796,0.196805,0.450284,0.0721114,0.0877841,0.0150841,0.126852,0.253786,0.508684,0.00442511,0.391228,0.867861,0.53691,0.335419,0.147154,0.683834,0.14354,0.64601,0.178697,0.832841,0.31169,0.288223,0.524634,0.852064,0.737274,0.573613,0.110612,0.596934,0.0219628,0.191161,0.761611,0.369256,0.90737,0.295858,0.540404,0.794532,0.441157,0.957034,0.880118,0.284008,0.594456,0.313557,0.655441,0.934414,0.478612,0.359465,0.421784,0.921333,0.451351,0.381055,0.790758,0.235178,0.559332,0.194105,0.633991,0.505659,0.901078,0.61511,0.89494,0.291366,0.115144,0.816353,0.383563,0.27442,0.0426698,0.879788,0.225194,0.838502,0.702345,0.143275,0.920097,0.657634,0.429922,0.909634,0.398364,0.378923,0.375081,0.0222781,0.25281,0.730377,0.337366,0.432006,0.485824,0.265319,0.840421,0.853275,0.510304,0.477187,0.703416,0.809771,0.990685,0.6645,0.301376,0.830355,0.746682,0.0255539,0.691228,0.173571,0.751107,0.631298,0.351662,0.925052,0.965336,0.179952,0.588981,0.792687,0.435522,0.119989,0.454503,0.981178,0.912913,0.778621,0.69231,0.361285,0.203157,0.372073,0.665376,0.480603,0.338507,0.560375,0.518028,0.870639,0.0609973,0.133722,0.591763,0.226515,0.263462,0.214252,0.37942,0.719573,0.668757,0.998689,0.51454,0.376404,0.327886,0.984775,0.375136,0.154109,0.109177,0.199294,0.223009,0.277034,0.857593,0.604094,0.248451,0.70541,0.47386,0.236119,0.283961,0.296748,0.821064,0.635386,0.322685,0.146218,0.469992,0.547549,0.84161,0.291854,0.816208,0.553186,0.412358,0.680324,0.0792428,0.758127,0.685956,0.824393,0.150721,0.949164,0.737213,0.0946315,0.809556,0.469835,0.304926,0.131826,0.564506,0.547743,0.904444,0.0779347,0.195402,0.0574524,0.986295,|0.0752701,0.0267079,0.295606,0.537169,0.194679,0.312469,0.0214457,0.363531,0.998412,0.114482,0.147117,0.71301,0.743342,0.504398,0.430774,0.524527,0.109366,0.0620871,0.224366,0.803392,0.302839,0.0951347,0.479941,0.571515,0.223948,0.509202,0.807166,0.16556,0.0686265,0.418747,0.629033,0.847775,0.378842,0.0303432,0.113109,0.433293,0.138408,0.76007,0.801886,0.45871,0.716204,0.0701382,0.34768,0.283203,0.517015,0.962183,0.159894,0.331116,0.3145,0.0457522,0.521897,0.249698,0.587706,0.198627,0.507001,0.709252,0.620717,0.381774,0.772483,0.431733,0.750665,0.791466,0.853555,0.210995,0.0617723,0.222359,0.535811,0.749205,0.873918,0.877782,0.399018,0.063273,0.0578984,0.520679,0.779935,0.206132,0.37314,0.305147,0.806523,0.935165,0.62441,0.595936,0.432704,0.192055,0.771267,0.716407,0.72444,0.12619,0.9441,0.701478,0.0859489,0.923381,0.344669,0.370882,0.939466,0.52549,0.486472,0.457928,0.646726,0.356685,0.137268,0.414526,0.393241,0.77182,0.443053,0.793632,0.439824,0.780592,0.582263,0.618042,0.38951,0.715747,0.660736,0.995078,0.894668,0.740563,0.6213,0.230608,0.575392,0.573871,0.149275,0.708264,0.986828,0.799305,0.53252,0.75995,0.454016,0.0619391,0.95464,0.488949,0.299154,0.216223,0.234118,0.248399,0.619388,0.388342,0.386916,0.0589315,0.620009,0.649507,0.506473,0.262348,0.389389,0.684569,0.0284438,0.38818,0.992377,0.285732,0.651607,0.565166,0.0727746,0.860562,0.121643,0.362529,0.366055,0.156606,0.926012,0.135303,0.868027,0.842057,0.206225,0.516336,0.237917,0.367525,0.379426,0.250338,0.108722,0.755726,0.934745,0.38845,0.240606,0.686681,0.201176,0.638554,0.623197,0.666668,0.123551,0.753868,0.836924,0.540653,0.0292155,0.85659,0.648185,0.642532,0.697841,0.913239,0.709526,0.576543,0.982072,0.565007,0.135935,0.424483,0.532977,0.238095,0.583897,0.759342,0.019369,0.838883,0.324334,0.836744,0.238036,0.127376,0.870932,0.0682452,0.709318,0.052088,0.230314,0.104527,0.897369,0.925256,0.991246,0.000441432,0.666261,0.184208,0.0536125,0.124747,0.516707,0.10676,0.402932,0.0118927,0.743281,0.738281,0.217079,0.296017,0.60334,0.666636,0.535808,0.868108,0.0369123,0.416478,0.345493,0.750815,0.350223,0.0971459,0.0904225,0.490869,0.779833,0.499734,0.245596,0.743329,0.876927,0.107147,0.981086,0.205834,0.404861,0.961759,0.725752,0.759146,0.194081,0.93048,0.0719965,0.517412,0.226321,0.661099,0.896794,0.0823779,0.51056,0.674588,0.464461,0.192026,0.0746601,0.889329,0.37801,0.365962,0.391152,0.854294,0.66163,0.986353,0.214919,0.107345,0.680906,0.655554,0.163156,0.136194,0.71648,0.352074,0.692706,0.708829,0.306355,0.354478,0.0229771,0.142969,0.285836,0.156229,0.355109,0.780709,0.281891,0.17101,0.420491,0.678511,0.230633,0.145328,0.13667,0.870795,0.617798,0.804424,0.675474,0.58539,0.789706,0.990857,0.694707,0.228058,0.939773,0.597775,0.665114,0.337941,0.0406426,0.529724,0.587169,0.634996,0.367485,0.923612,0.0178016,0.85273,0.958992,0.330815,0.273117,0.287519,0.789342,0.673651,0.680433,0.998117,0.31777,0.739788,0.0314288,0.61392,0.446993,0.406879,0.0519072,0.236008,0.696978,0.791824,0.337343,0.220276,0.455782,0.0163826,0.246545,0.391401,0.895637,0.311701,0.118966,0.544226,0.383971,0.39446,0.10672,0.575776,0.575582,0.764611,0.0610737,0.943456,0.846669,0.13477,0.248214,0.957341,0.280184,0.247831,0.764506,0.910049,0.597239,0.492462,0.0317789,0.419738,0.699194,0.951828,0.0762327,0.424034,0.706974,0.439899,0.281315,0.733144,0.318411,0.375382,0.963389,0.574718,0.871085,0.55719,0.845784,0.286401,0.534534,0.409196,0.751653,0.960274,0.0104834,0.192432,0.291879,0.410254,0.177609,0.72147,0.00504184,0.177596,0.368274,0.926688,0.836578,0.907351,0.530362,0.132153,0.785831,0.437634,0.144573,0.579664,0.917122,0.709205,0.681064,0.0727924,0.73242,0.805427,0.715931,0.0589873,0.663336,0.480289,0.022506,0.0671523,0.833574,0.671991,0.148662,0.284599,0.205581,0.285673,0.322542,0.746776,0.119908,0.357962,0.0546635,0.592269,0.177272,0.680542,0.293361,0.563257,0.202916,0.742383,0.327867,0.698084,0.513884,0.136914,0.969332,0.707338,0.323459,0.752026,0.621373,0.887233,0.00795239,0.846065,0.227259,0.768495,0.338052,0.242979,0.492474,0.976082,0.326487,0.682448,0.738858,0.424013,0.349278,0.507262,0.361829,0.203648,0.182913,0.969804,0.304017,0.606659,0.810916,0.857556,0.413089,0.641183,0.854985,0.9135,0.15723,0.944184,0.91816,0.907537,0.471085,0.199902,0.562248,0.704835,0.788277,0.314541,0.747327,0.347606,0.917003,0.573648,0.495799,0.986982,0.987045,0.925765,0.626099,0.0497927,0.960119,0.017905,0.742767,0.445968,0.0171464,0.15652,0.504726,0.979053,0.0236465,0.414623,0.0271956,0.950458,0.370515,0.495291,0.895605,0.251764,0.591904,0.153962,0.616827,0.350881,0.74804,0.84844,0.659941,0.207794,0.553889,0.137454,0.308796,0.951087,0.681381,0.602584,0.140603,0.0471153,0.284713,0.375664,0.931236,0.782881,0.479384,0.945697,0.20673,0.273337,0.119475,0.550781,0.491689,0.108816,0.368295,0.371519,0.242541,0.0312057,0.363404,0.393421,0.633993,0.216492,0.556225,0.625183,0.238454,0.676088,0.906853,0.851022,0.991594,0.143112,0.864787,0.365489,0.880382,0.052892,0.0450479,0.985442,0.104646,0.969464,0.479474,0.825733,0.944502,0.539496,0.165543,0.346075,0.820955,0.202924,0.504364,0.248262,0.196051,0.279388,0.587305,0.96798,0.279327,0.848868,0.770718,0.788861,0.625732,0.505548,0.790462,0.0319938,0.206481,0.886821,0.568172,0.337186,0.990712,0.922951,0.0827262,0.0680903,0.88217,0.0640928,0.824382,0.92114,0.203328,0.132028,0.553132,0.107326,0.00475514,0.349867,0.990344,0.417718,0.823516,0.411,0.743376,0.367293,0.64963,0.356768,0.994493,0.545177,0.226778,0.435709,0.178057,0.30849,0.117889,0.219741,0.254862,0.74302,0.351425,0.842455,0.641339,0.267608,0.378382,0.703767,0.161385,0.563425,0.46773,0.810413,0.718566,0.166133,0.98313,0.31883,0.916598,0.381327,0.407024,0.944211,0.515149,0.72239,0.547518,0.680705,0.443207,0.106806,0.565525,0.0627919,0.473392,0.447578,0.414352,0.390664,0.765511,0.620364,0.681219,0.9748,0.877305,0.92743,0.085963,0.214141,0.980207,0.995112,0.500748,0.833937,0.524506,0.535352,0.85913,0.652797,0.48375,0.853789,0.706335,0.902621,0.394564,0.989075,0.183672,0.426627,0.20119,0.708282,0.715439,0.167384,0.394611,0.4726,0.701627,0.949871,0.46223,0.275181,0.815331,0.472908,0.052218,0.549666,0.766713,0.742663,0.170781,0.259644,0.325926,0.33717,0.569228,0.149963,0.294627,0.17063,0.421391,0.122248,0.452954,0.359133,0.301902,0.823863,0.642994,0.290864,0.438069,0.802909,0.714807,0.0699546,0.902405,0.772333,0.529905,0.851357,0.799666,0.253777,0.251791,0.0923985,0.360053,0.293456,0.424087,0.842119,0.229102,0.693046,0.369921,0.636263,0.110424,0.925033,0.0284313,0.347227,0.11305,0.336124,0.2322,0.986419,0.875404,0.85077,0.197061,0.256122,0.745011,0.435869,0.68022,0.699091,0.865417,0.941851,0.0161548,0.810266,0.080249,0.0784082,0.961433,0.931409,0.788699,0.695309,0.106367,0.266001,0.280691,0.841678,0.665738,0.776071,0.377003,0.97119,0.111219,0.693126,0.525351,0.924111,0.0613344,0.412931,0.661975,0.20807,0.655076,0.532156,0.177066,0.932266,0.0214138,0.0156445,0.630862,0.798138,0.750253,0.393183,0.570178,0.948776,0.951891,0.873544,0.513518,0.071261,0.142142,0.942348,0.22648,0.632617,0.391086,0.595131,0.370278,0.930013,0.44363,0.231217,0.0295781,0.59359,0.331327,0.0662846,0.36585,0.826713,0.0159186,0.646775,0.198698,0.59639,0.645642,0.500548,0.776258,0.436898,0.150663,0.961786,0.378042,0.989405,0.736426,0.414637,0.968435,0.0378608,0.811406,0.385292,0.432737,0.538984,0.620575,0.509814,0.483573,0.173527,0.685653,0.510191,0.0478917,0.796066,0.0554249,0.255353,0.895739,0.62126,0.908839,0.235152,0.755722,0.884983,0.643629,0.758651,0.634591,0.379211,0.808315,0.814531,0.570652,0.613347,0.946286,0.200255,0.57739,0.340824,0.615129,0.0321173,0.1003,0.84035,0.0701791,0.62473,0.814484,0.581672,0.824807,0.064682,0.349899,0.623804,0.727221,0.312256,0.581991,0.205138,0.679573,0.654396,0.493126,0.506152,0.315801,0.77012,0.179407,0.508428,0.169867,0.741435,0.15936,0.703094,0.538291,0.244939,0.333656,0.723876,0.0251461,0.811997,0.583991,0.28813,0.588554,0.252335,0.41925,0.740362,0.0588341,0.870856,0.269561,0.977747,0.379123,0.0525151,0.831274,0.533854,0.67249,0.845327,0.849741,0.157801,0.936057,0.601347,0.428744,0.893458,0.447155,0.0457693,0.0376662,0.315002,0.600026,0.32941,0.111452,0.202287,0.408805,0.496675,0.509514,0.172883,0.64571,0.192205,0.677032,0.3394,0.273907,0.416155,0.0422658,0.621,0.00311148,0.973253,0.189829,0.561999,0.615465,0.822269,0.154264,0.699722,0.537968,0.517651,0.682219,0.833232,0.866986,0.161998,0.858994,0.917761,0.0186489,0.37807,0.0071736,0.544039,0.968962,0.752998,0.979163,0.538708,0.28918,0.121213,0.391546,0.305966,0.09999,0.139138,0.562742,0.876979,0.439623,0.942719,0.486672,0.0531666,0.5376,0.417449,0.245602,0.553922,0.548903,0.535467,0.223,0.547046,0.212842,0.239377,0.472941,0.70009,0.252821,0.458406,0.299967,0.932387,0.470402,0.184752,0.946394,0.657003,0.224123,0.988477,0.48524,0.962546,0.355612,0.36806,0.476889,0.103813,0.504004,0.686817,0.569775,0.587649,0.371024,0.808462,0.166178,0.554393,0.257108,0.999139,0.786591,0.912143,0.765015,0.684346,0.730787,0.733468,0.5008,0.899461,0.798784,0.321628,|0.948787,0.969842,0.74929,0.613217,0.111668,0.146707,0.836055,0.0842666,0.614253,0.454501,0.155053,0.818928,0.719299,0.283873,0.84091,0.687922,0.0372443,0.838376,0.0814888,0.446738,0.241062,0.594622,0.45262,0.696371,0.514894,0.29016,0.651117,0.897782,0.56108,0.570144,0.346325,0.974206,0.919516,0.945027,0.617073,0.177479,0.517106,0.849918,0.897851,0.475088,0.556941,0.609818,0.238434,0.459547,0.211365,0.318807,0.53313,0.327443,0.800739,0.403572,0.553549,0.839833,0.347955,0.552604,0.251965,0.779929,0.58426,0.965717,0.119211,0.468142,0.555139,0.369331,0.561257,0.198626,0.416454,0.622271,0.534861,0.833518,0.509033,0.326646,0.540298,0.0129237,0.637984,0.167607,0.0542926,0.985846,0.387001,0.893711,0.19095,0.271546,0.946291,0.635638,0.690364,0.699592,0.145737,0.853095,0.852179,0.543181,0.717142,0.962582,0.737516,0.815397,0.665355,0.927812,0.999328,0.789327,0.481646,0.747228,0.649164,0.770094,0.797957,0.687628,0.291292,0.294569,0.930692,0.613641,0.722275,0.689361,0.248323,0.471676,0.909812,0.785022,0.326106,0.457372,0.60293,0.508533,0.193787,0.863613,0.642492,0.175709,0.941881,0.745212,0.0942117,0.578692,0.213822,0.7658,0.49385,0.226306,0.0523098,0.525347,0.256353,0.828248,0.159917,0.765669,0.252527,0.262813,0.397278,0.797784,0.775794,0.391609,0.826143,0.906437,0.239693,0.813978,0.528943,0.276033,0.282557,0.655042,0.0325714,0.747823,0.456342,0.199875,0.942152,0.411846,0.777315,0.517742,0.618283,0.611598,0.376321,0.298506,0.170119,0.0853637,0.953597,0.389113,0.835111,0.525588,0.636114,0.0430216,0.415325,0.499484,0.995147,0.157838,0.688251,0.369202,0.61286,0.0199222,0.716769,0.0470525,0.526209,0.978657,0.973405,0.230486,0.0422396,0.417992,0.60396,0.913603,0.835726,0.178939,0.0622374,0.258048,0.648194,0.0925571,0.846811,0.307647,0.134709,0.0442557,0.295414,0.0665396,0.484712,0.249199,0.852638,0.969872,0.6444,0.283838,0.300315,0.618122,0.806514,0.0956445,0.731229,0.810337,0.3193,0.319279,0.418032,0.989957,0.0327297,0.73111,0.309017,0.625374,0.241818,0.971163,0.720047,0.962566,0.177568,0.955889,0.653159,0.198011,0.660224,0.584922,0.418439,0.981598,0.50448,0.163026,0.645525,0.873281,0.733392,0.570063,0.859791,0.06339,0.952466,0.774512,0.359063,0.0460159,0.20201,0.913452,0.037782,0.330319,0.303024,0.0452614,0.986948,0.632044,0.854229,0.871566,0.643448,0.917787,0.958057,0.223799,0.00486422,0.99054,0.428485,0.783986,0.724752,0.923305,0.565641,0.317748,0.344568,0.741001,0.418826,0.162634,0.905259,0.921691,0.915713,0.774301,0.779514,0.106566,0.0968192,0.136111,0.644476,0.0627178,0.199801,0.611543,0.452982,0.825345,0.79702,0.11639,0.856561,0.930223,0.458293,0.406556,0.121933,0.264683,0.818453,0.910511,0.800899,0.483487,0.555117,0.351475,0.0225485,0.235224,0.96228,0.228378,0.139617,0.507255,0.431363,0.697209,0.0316978,0.263138,0.225437,0.349371,0.68267,0.570176,0.36316,0.870098,0.0166748,0.9791,0.854219,0.448263,0.0806832,0.0945641,0.975457,0.157486,0.876999,0.322315,0.717565,0.686141,0.567583,0.108892,0.0474347,0.0173904,0.793554,0.637152,0.198073,0.767349,0.430385,0.310903,0.669641,0.24982,0.405312,0.725803,0.437133,0.205704,0.43421,0.827623,0.407111,0.412485,0.393321,0.180332,0.264892,0.47028,0.542593,0.538884,0.119449,0.933832,0.940495,0.106358,0.534526,0.308721,0.891886,0.222382,0.618783,0.641408,0.950685,0.0588315,0.0108305,0.682959,0.590766,0.835378,0.983448,0.497694,0.950951,0.203524,0.353953,0.161793,0.518337,0.657227,0.56024,0.654894,0.943759,0.900953,0.930226,0.768068,0.249957,0.194283,0.758958,0.500139,0.739085,0.753257,0.703882,0.966265,0.117067,0.316436,0.121714,0.758465,0.311638,0.42788,0.366928,0.949013,0.464279,0.101942,0.251724,0.351912,0.34299,0.805308,0.95992,0.133725,0.510965,0.52726,0.170495,0.685103,0.63917,0.755221,0.255032,0.0972216,0.736541,0.387342,0.863839,0.802191,0.344532,0.745651,0.647595,0.131425,0.873216,0.527675,0.652868,0.460089,0.190335,0.581725,0.688785,0.947926,0.708622,0.590574,0.239775,0.504854,0.427616,0.946828,0.131532,0.80088,0.285479,0.653557,0.931743,0.28352,0.158395,0.354333,0.0758502,0.680082,0.793224,0.96169,0.509704,0.479565,0.775582,0.657392,0.178735,0.318936,0.360527,0.801832,0.467236,0.768184,0.844954,0.540971,0.343443,0.821537,0.51341,0.473657,0.309568,0.69216,0.624408,0.104278,0.167965,0.183399,0.531563,0.349445,0.365891,0.461296,0.672275,0.548926,0.20653,0.333966,0.929251,0.346486,0.0193543,0.556617,0.605051,0.036082,0.838325,0.169982,0.966436,0.982591,0.271271,0.21787,0.900602,0.163925,0.212551,0.140913,0.616736,0.307955,0.18146,0.879535,0.277236,0.248894,0.255667,0.773878,0.0211617,0.710662,0.696244,0.788983,0.456798,0.239388,0.778919,0.916106,0.213342,0.908709,0.403609,0.282134,0.175124,0.502087,0.406694,0.969741,0.217607,0.0571874,0.466226,0.80195,0.563572,0.817322,0.0746898,0.435244,0.887223,0.856193,0.56892,0.712718,0.375368,0.948305,0.992472,0.0121124,0.0346142,0.657033,0.444495,0.206065,0.74709,0.154017,0.787782,0.93522,0.506645,0.2225,0.78518,0.379781,0.943866,0.792858,0.0150228,0.0312204,0.0385919,0.999299,0.819157,0.252603,0.398344,0.941116,0.906283,0.0848141,0.303127,0.285847,0.244949,0.465637,0.864034,0.96715,0.200908,0.00265992,0.231268,0.81524,0.931132,0.0921111,0.678868,0.342746,0.0637125,0.416282,0.852416,0.452946,0.413351,0.992625,0.666142,0.230205,0.26456,0.766775,0.794848,0.0375268,0.282451,0.434723,0.998767,0.091266,0.07718,0.205675,0.45831,0.755999,0.91716,0.949957,0.326512,0.0111449,0.924497,0.0975859,0.579649,0.135254,0.748773,0.852344,0.880367,0.221205,0.382459,0.721858,0.496323,0.559319,0.725645,0.468959,0.770802,0.122782,0.0433471,0.175945,0.403908,0.328832,0.000591993,0.564025,0.180166,0.33717,0.627629,0.499952,0.177518,0.57454,0.98092,0.0712559,0.704967,0.0154471,0.807712,0.426963,0.795264,0.625436,0.847966,0.350516,0.298071,0.0633335,0.658376,0.409909,0.66903,0.13058,0.652594,0.52929,0.758397,0.393559,0.844013,0.936281,0.558603,0.138196,0.620129,0.92495,0.20158,0.24604,0.9288,0.269532,0.905067,0.406747,0.832525,0.249924,0.386479,0.855697,0.240615,0.808174,0.849678,0.575437,0.183882,0.794659,0.607164,0.441413,0.178198,0.376989,0.397844,0.973274,0.376009,0.395038,0.259193,0.925187,0.960638,0.660943,0.87797,0.315661,0.685365,0.185156,0.88958,0.475025,0.738086,0.210844,0.489415,0.883646,0.0301355,0.528399,0.70574,0.863173,0.239489,0.190216,0.628818,0.256487,0.281152,0.623986,0.529225,0.881144,0.0410248,0.483261,0.857758,0.0208215,0.0415011,0.357056,0.322776,0.160798,0.153341,0.839174,0.331861,0.639518,0.739719,0.854235,0.980243,0.934909,0.94702,0.254671,0.897215,0.528154,0.187534,0.298036,0.170006,0.0640945,0.772725,0.793734,0.777065,0.197414,0.86766,0.783079,0.292681,0.834066,0.0637985,0.826873,0.702618,0.154379,0.456267,0.243742,0.300146,0.693583,0.291919,0.357835,0.307965,0.397287,0.17061,0.490477,0.509344,0.250419,0.0627632,0.418587,0.393635,0.476656,0.766794,0.0578669,0.606034,0.871923,0.405739,0.810704,0.794774,0.358056,0.939951,0.580039,0.505123,0.0847389,0.0354339,0.415093,0.757888,0.328218,0.989367,0.145548,0.119045,0.199807,0.964017,0.233317,0.5659,0.372968,0.806846,0.141148,0.408914,0.517677,0.282417,0.409241,0.918752,0.813769,0.739638,0.550582,0.703934,0.695453,0.810303,0.827788,0.0757419,0.511486,0.602719,0.0216628,0.854558,0.589139,0.535134,0.138905,0.513141,0.553881,0.721329,0.677284,0.751911,0.187161,0.545132,0.239747,0.749172,0.412866,0.387248,0.268039,0.204165,0.965508,0.855381,0.905069,0.078257,0.749235,0.811282,0.191598,0.580702,0.551228,0.716325,0.199158,0.954088,0.966239,0.493219,0.844699,0.562501,0.775793,0.154135,0.864056,0.0244015,0.389285,0.344926,0.432008,0.256621,0.591438,0.938506,0.524457,0.153831,0.450892,0.0203221,0.492555,0.38029,0.852036,0.191798,0.973917,0.4165,0.521521,0.492504,0.428871,0.0184782,0.932604,0.629854,0.215562,0.411327,0.888385,0.312205,0.714995,0.893048,0.55616,0.490243,0.672612,0.322711,0.915945,0.105494,0.993008,0.010586,0.419255,0.168151,0.515161,0.11403,0.908004,0.679435,0.889075,0.61771,0.420257,0.276618,0.357758,0.340476,0.59142,0.753233,0.43469,0.26412,0.204891,0.173673,0.0748313,0.392002,0.73976,0.454914,0.00638103,0.883,0.754733,0.665234,0.743065,0.338222,0.286702,0.0554296,0.368984,0.169893,0.163037,0.265406,0.625004,0.193338,0.475677,0.384721,0.610474,0.762672,0.627311,0.710326,0.429346,0.942789,0.0600954,0.581556,0.733927,0.112405,0.542149,0.645275,0.623272,0.281023,0.353345,0.757364,0.622229,0.192985,0.182042,0.918982,0.734503,0.579339,0.722574,0.729118,0.162242,0.203938,0.389367,0.896654,0.691168,0.689699,0.542346,0.430303,0.436034,0.371396,0.746961,0.16084,0.945147,0.952575,0.294509,0.391649,0.853929,0.700449,0.279731,0.954943,0.000752032,0.774768,0.371386,0.558634,0.602852,0.273673,0.396748,0.153814,0.394396,0.0222684,0.475204,0.39839,0.926173,0.843248,0.995358,0.516417,0.788573,0.178276,0.0458161,0.443599,0.799604,0.137167,0.191825,0.398262,0.176931,0.470997,0.186235,0.659233,0.0916291,0.040854,0.328389,0.342886,0.690691,0.026621,0.311592,0.001764,0.77369,0.51906,0.68141,0.825651,0.460015,0.666643,0.462576,0.945459,0.0672216,0.484967,0.970749,0.943337,0.72385,0.347247,0.683028,0.945875,0.203687,|0.475367,0.725028,0.0740464,0.310525,0.800524,0.959027,0.566811,0.334008,0.848824,0.0922093,0.855117,0.429379,0.7201,0.908979,0.84317,0.577217,0.0485657,0.983377,0.841732,0.195624,0.200516,0.399134,0.939528,0.181715,0.598512,0.315339,0.789368,0.137007,0.142148,0.415372,0.249697,0.569551,0.497311,0.0290666,0.0101579,0.673813,0.184798,0.657624,0.151967,0.646201,0.270377,0.4285,0.32595,0.917965,0.536773,0.620314,0.205448,0.321479,0.0145526,0.925418,0.278064,0.157582,0.193494,0.553634,0.469494,0.442349,0.811212,0.122684,0.0978446,0.884197,0.702752,0.68589,0.295721,0.510184,0.699562,0.329328,0.0342118,0.176103,0.063485,0.870262,0.119016,0.607337,0.626218,0.3901,0.309601,0.313793,0.348776,0.349427,0.210085,0.756678,0.104931,0.885594,0.0978252,0.472938,0.0313802,0.834131,0.088793,0.377796,0.237168,0.0325187,0.819861,0.778535,0.0707639,0.159801,0.516602,0.933913,0.947325,0.0679635,0.134239,0.367805,0.162265,0.636726,0.940143,0.116693,0.702778,0.826285,0.240184,0.366322,0.0662974,0.0174742,0.551911,0.85994,0.963561,0.0751579,0.710298,0.8627,0.052471,0.101401,0.743423,0.13958,0.472722,0.551939,0.836739,0.0261724,0.316201,0.450566,0.121175,0.185627,0.0775499,0.557014,0.370278,0.216009,0.635088,0.00841898,0.635252,0.399331,0.179215,0.528855,0.320851,0.673162,0.658372,0.428547,0.646557,0.714206,0.638179,0.584932,0.593633,0.653209,0.838071,0.765295,0.540718,0.35649,0.882832,0.843608,0.636733,0.713724,0.0487853,0.579058,0.603153,0.921074,0.465341,0.113762,0.7959,0.576031,0.935946,0.779738,0.953896,0.551522,0.99998,0.238661,0.819568,0.3773,0.72153,0.990119,0.851045,0.66138,0.539547,0.813818,0.734295,0.549891,0.805233,0.828087,0.641129,0.203557,0.122758,0.917375,0.310973,0.555719,0.0994633,0.664178,0.775197,0.589932,0.770977,0.631446,0.083062,0.644009,0.525345,0.229242,0.779901,0.581439,0.96814,0.0955935,0.0505489,0.0152726,0.705178,0.605704,0.107403,0.70261,0.718422,0.740129,0.672241,0.808847,0.690579,0.248242,0.179424,0.236728,0.853427,0.315307,0.268427,0.303657,0.60562,0.735787,0.817125,0.0172821,0.218099,0.319839,0.910897,0.643587,0.242576,0.472242,0.600091,0.605905,0.854454,0.0589659,0.422606,0.785832,0.0258339,0.755249,0.624185,0.26992,0.911128,0.6228,0.574743,0.338277,0.281257,0.812976,0.0141945,0.0844803,0.00442958,0.397058,0.886944,0.0975656,0.502614,0.713145,0.210889,0.600785,0.0779234,0.756726,0.606022,0.696823,0.495796,0.815739,0.221638,0.263706,0.330937,0.269299,0.311977,0.298016,0.617839,0.0651562,0.856148,0.500817,0.23751,0.845637,0.622854,0.308396,0.793634,0.605396,0.540835,0.0991629,0.263455,0.462866,0.991063,0.91159,0.202171,0.860142,0.38557,0.692858,0.0551158,0.867779,0.688307,0.0255143,0.683313,0.337963,0.742574,0.332108,0.391963,0.438476,0.566417,0.353012,0.966314,0.297657,0.542382,0.334128,0.214359,0.331004,0.0986142,0.3212,0.661141,0.117794,0.253795,0.836447,0.665462,0.202653,0.888404,0.0324659,0.0692979,0.841061,0.394745,0.918062,0.301555,0.586814,0.0126718,0.246988,0.945598,0.197638,0.172535,0.491448,0.583543,0.163866,0.195815,0.957575,0.439174,0.903738,0.355945,0.503411,0.948771,0.322238,0.746102,0.434967,0.835157,0.599414,0.527287,0.384164,0.457346,0.767736,0.90309,0.433469,0.846722,0.876826,0.135078,0.60814,0.254477,0.328498,0.0859752,0.307199,0.866925,0.376875,0.448849,0.104337,0.606419,0.373271,0.941344,0.38474,0.512488,0.383347,0.863809,0.866854,0.98564,0.257046,0.615571,0.100187,0.114875,0.857754,0.982727,0.507799,0.905934,0.600724,0.894896,0.458857,0.573096,0.901439,0.670036,0.410713,0.757463,0.848801,0.872688,0.609176,0.549688,0.0357559,0.0703701,0.887429,0.564164,0.0597289,0.614238,0.831788,0.33041,0.808016,0.120154,0.238313,0.378757,0.0693194,0.642427,0.638321,0.884683,0.451209,0.584439,0.869806,0.301707,0.676386,0.0661639,0.420923,0.556543,0.475218,0.814438,0.699921,0.854909,0.0507368,0.37904,0.862151,0.616556,0.102957,0.710832,0.862325,0.300714,0.637094,0.975084,0.121443,0.896441,0.929277,0.713527,0.944867,0.842057,0.900979,0.643789,0.100269,0.562952,0.448043,0.882666,0.912168,0.864868,0.438343,0.318043,0.258086,0.582908,0.0384375,0.255608,0.631353,0.246737,0.984858,0.0769219,0.0276285,0.296392,0.384913,0.730517,0.063545,0.54954,0.121881,0.16693,0.152577,0.15529,0.901364,0.68924,0.69919,0.849276,0.734267,0.472775,0.0468521,0.255155,0.391514,0.00163728,0.601694,0.662707,0.619061,0.157392,0.044949,0.409806,0.493773,0.56356,0.262285,0.407121,0.796416,0.590039,0.498467,0.872811,0.549217,0.227796,0.346854,0.118376,0.650689,0.489188,0.497395,0.599469,0.802804,0.672289,0.253492,0.414874,0.862067,0.459245,0.829063,0.110123,0.366539,0.643055,0.583878,0.404392,0.910767,0.688555,0.522588,0.91801,0.795814,0.722064,0.0120231,0.932176,0.4371,0.883129,0.335613,0.191851,0.398961,0.628667,0.777719,0.13781,0.946156,0.267109,0.81378,0.581182,0.866246,0.262006,0.565773,0.150978,0.677567,0.804735,0.654044,0.226108,0.767034,0.288707,0.529591,0.600185,0.842128,0.205408,0.392607,0.564462,0.985101,0.527768,0.736075,0.97849,0.313626,0.602063,0.59546,0.748664,0.925576,0.848614,0.959541,0.448938,0.943749,0.525892,0.820344,0.646168,0.242217,0.187837,0.299173,0.120232,0.522511,0.190416,0.937421,0.388698,0.200188,0.592111,0.248224,0.95957,0.0612438,0.719266,0.963954,0.542123,0.340854,0.939169,0.321159,0.906492,0.0249446,0.516747,0.747985,0.481864,0.463341,0.817678,0.825993,0.0206811,0.685809,0.269113,0.738661,0.780048,0.656271,0.417946,0.936549,0.865162,0.023323,0.131094,0.19257,0.155468,0.298199,0.726375,0.403754,0.880086,0.0705265,0.863781,0.00831932,0.993115,0.353923,0.895014,0.176143,0.904703,0.777568,0.825731,0.429569,0.698594,0.0793119,0.596142,0.221889,0.881807,0.123194,0.809339,0.197285,0.695174,0.70298,0.900994,0.556241,0.210399,0.141978,0.333825,0.0424064,0.0478336,0.678959,0.595855,0.13891,0.941705,0.301529,0.835956,0.0697126,0.117038,0.54764,0.0041244,0.144,0.207741,0.847675,0.689073,0.990365,0.52134,0.814522,0.0421438,0.899317,0.0287536,0.624934,0.376134,0.363033,0.933272,0.601149,0.760972,0.713382,0.868516,0.115119,0.99955,0.74438,0.0873173,0.389542,0.987027,0.347275,0.22306,0.0816315,0.73802,0.0587983,0.909471,0.998616,0.499096,0.689473,0.345641,0.900022,0.483431,0.676616,0.674859,0.458557,0.551802,0.613434,0.925533,0.479657,0.362521,0.55097,0.309633,0.956429,0.343123,0.318594,0.174549,0.710642,0.227183,0.775956,0.837851,0.858519,0.584368,0.644786,0.352223,0.236722,0.535342,0.052147,0.165129,0.552672,0.639018,0.993421,0.906244,0.101196,0.487689,0.194277,0.817927,0.702768,0.877077,0.852898,0.422884,0.509405,0.115879,0.456588,0.992101,0.611223,0.101894,0.45451,0.159655,0.456661,0.698533,0.23991,0.447162,0.368945,0.732198,0.532459,0.904833,0.168455,0.638184,0.130947,0.269678,0.83534,0.369375,0.972287,0.938264,0.225281,0.532392,0.159148,0.15463,0.411717,0.314506,0.417489,0.916053,0.91451,0.255042,0.728697,0.481093,0.806838,0.307192,0.209831,0.387735,0.980689,0.889347,0.558756,0.331784,0.367247,0.825472,0.0697877,0.373687,0.161748,0.188665,0.91871,0.874536,0.733819,0.542609,0.583354,0.688807,0.173792,0.371494,0.796108,0.687374,0.415922,0.496681,0.188118,0.951325,0.0634071,0.801195,0.238342,0.434391,0.43913,0.462846,0.4461,0.00011766,0.321939,0.412225,0.864277,0.450474,0.382945,0.530712,0.219906,0.208695,0.641588,0.482824,0.0191683,0.136967,0.905603,0.672477,0.335897,0.780681,0.251798,0.260004,0.475579,0.385561,0.16624,0.99704,0.984085,0.846554,0.654646,0.706425,0.63983,0.91928,0.601738,0.828035,0.785515,0.808421,0.790223,0.00810492,0.48412,0.491509,0.236499,0.0373813,0.0242047,0.239494,0.00572562,0.554392,0.12552,0.494871,0.357575,0.140766,0.196789,0.648218,0.551953,0.675103,0.080741,0.764884,0.760791,0.51209,0.328233,0.760434,0.0580918,0.863939,0.216122,0.889151,0.637634,0.0432523,0.421173,0.786642,0.451667,0.466474,0.231301,0.199194,0.459326,0.473206,0.652674,0.594381,0.537644,0.525436,0.35606,0.882472,0.608217,0.572663,0.220451,0.494539,0.0671916,0.669408,0.410471,0.346356,0.56894,0.975829,0.213038,0.532228,0.454661,0.834877,0.354361,0.790733,0.972605,0.755061,0.921066,0.200616,0.632083,0.344417,0.890647,0.720514,0.721583,0.507407,0.785718,0.790581,0.177338,0.583297,0.955973,0.267475,0.630785,0.274512,0.516546,0.245893,0.0574562,0.0345941,0.123273,0.011288,0.70954,0.406116,0.116455,0.698036,0.976923,0.332331,0.361919,0.0250489,0.334981,0.794871,0.336036,0.699671,0.250853,0.549952,0.51399,0.40503,0.959996,0.772238,0.201105,0.363433,0.0922282,0.781334,0.902858,0.981072,0.365167,0.245338,0.667037,0.705209,0.12847,0.120942,0.595308,0.305476,0.876554,0.811832,0.843839,0.241506,0.168342,0.0402108,0.248902,0.27242,0.182699,0.594557,0.882289,0.22761,0.338443,0.154724,0.607598,0.217407,0.648458,0.700472,0.823524,0.357447,0.244655,0.395772,0.735104,0.526216,0.927951,0.945517,0.713635,0.690208,0.230487,0.066523,0.323867,0.115988,0.987575,0.98157,0.834547,0.526619,0.694837,0.350884,0.476541,0.991378,0.409143,0.907588,0.856609,0.406469,0.947753,0.346417,0.424794,0.0772499,0.494411,0.454678,0.539345,0.234349,0.908429,0.633514,0.920731,0.586241,0.0355702,0.00831902,0.814347,0.4209,0.613069,0.0815371,0.254668,0.737369,0.708031,0.0467007,0.512097,|0.246887,0.118249,0.797736,0.362479,0.145665,0.774311,0.750671,0.932774,0.0902508,0.22884,0.95445,0.541172,0.00173169,0.874138,0.0591218,0.192271,0.275287,0.109609,0.325521,0.846112,0.992585,0.581022,0.0427104,0.248184,0.164154,0.888081,0.991345,0.776308,0.815654,0.786073,0.651789,0.913466,0.324291,0.483511,0.918883,0.120227,0.628532,0.834112,0.201036,0.608283,0.308444,0.492619,0.418299,0.189823,0.25403,0.838534,0.432067,0.486341,0.595866,0.496491,0.0222228,0.98755,0.112677,0.745165,0.368679,0.95075,0.504571,0.804429,0.832919,0.669305,0.837779,0.967683,0.689662,0.00776231,0.260724,0.447529,0.607953,0.991998,0.234246,0.749376,0.671645,0.295586,0.746149,0.578745,0.69435,0.152991,0.32819,0.946591,0.326346,0.827526,0.64571,0.79206,0.388878,0.490991,0.471298,0.831282,0.114121,0.646618,0.0320565,0.290658,0.17176,0.873813,0.147197,0.279335,0.0497568,0.263027,0.0434448,0.511259,0.964746,0.449667,0.257514,0.974704,0.978866,0.274161,0.524289,0.325131,0.937414,0.972347,0.086143,0.797528,0.0496643,0.389366,0.227248,0.467507,0.0763753,0.821764,0.933336,0.342414,0.231818,0.0774063,0.580598,0.195031,0.18696,0.720594,0.919688,0.682218,0.105956,0.637599,0.404847,0.61465,0.633808,0.730441,0.369901,0.665306,0.125583,0.743952,0.132132,0.588574,0.191355,0.384798,0.587336,0.441651,0.939344,0.866973,0.763741,0.648762,0.1208,0.805211,0.950676,0.0934147,0.486335,0.918664,0.637356,0.200542,0.063896,0.315223,0.368419,0.816682,0.698727,0.539431,0.598058,0.422253,0.231325,0.483579,0.160244,0.848733,0.00236326,0.361122,0.669266,0.807885,0.0555475,0.502641,0.350949,0.604006,0.690504,0.249319,0.530052,0.185152,0.538055,0.158441,0.608537,0.730607,0.392164,0.0445342,0.681235,0.651063,0.990131,0.207418,0.346102,0.544366,0.880257,0.659625,0.582305,0.399051,0.358798,0.932007,0.855603,0.867656,0.10407,0.279956,0.642343,0.618873,0.339335,0.622504,0.739647,0.139588,0.382003,0.311836,0.904275,0.453836,0.115778,0.435861,0.161259,0.00754803,0.462212,0.347893,0.460373,0.552289,0.70405,0.550808,0.950629,0.25181,0.963192,0.887442,0.299496,0.0308308,0.683577,0.755388,0.808133,0.0881329,0.669185,0.803872,0.504561,0.146668,0.255725,0.339499,0.422035,0.298305,0.126714,0.66101,0.320969,0.633225,0.284572,0.852346,0.182091,0.254515,0.992952,0.151159,0.589723,0.652534,0.260032,0.778323,0.432515,0.901353,0.477292,0.247549,0.821725,0.633156,0.505721,0.98972,0.926856,0.2903,0.635178,0.438428,0.727322,0.189343,0.517625,0.459501,0.519222,0.364489,0.162211,0.235922,0.738663,0.174592,0.53042,0.431505,0.354772,0.811375,0.031343,0.510544,0.59104,0.354843,0.28782,0.248472,0.991632,0.0205687,0.791795,0.627298,0.890796,0.317199,0.799113,0.866333,0.350742,0.299744,0.133904,0.781111,0.293083,0.376759,0.186175,0.290811,0.209233,0.388874,0.165665,0.0937393,0.523617,0.715065,0.50767,0.355475,0.756648,0.276398,0.223742,0.23973,0.188486,0.741165,0.590595,0.059963,0.0396128,0.691808,0.725753,0.659843,0.0158488,0.593954,0.27761,0.338636,0.758591,0.138255,0.136353,0.0749123,0.117275,0.375153,0.723621,0.462427,0.67653,0.694129,0.304302,0.644088,0.443144,0.129704,0.891073,0.299135,0.819389,0.651058,0.764191,0.910484,0.00937074,0.665624,0.254872,0.0205548,0.373748,0.724322,0.567973,0.386554,0.610523,0.901511,0.289629,0.393631,0.54709,0.817598,0.418103,0.724905,0.664946,0.872243,0.800523,0.00331426,0.644894,0.159882,0.448784,0.657951,0.996694,0.107632,0.606239,0.551099,0.985981,0.183618,0.850193,0.354702,0.88369,0.54263,0.390784,0.432378,0.467306,0.289791,0.713142,0.33512,0.617649,0.967146,0.415641,0.307494,0.14661,0.165795,0.918585,0.709953,0.0346186,0.808696,0.915212,0.841345,0.581254,0.579538,0.68226,0.664132,0.868041,0.728742,0.177804,0.00249302,0.365364,0.628838,0.413625,0.421378,0.983236,0.609003,0.553217,0.55185,0.591871,0.498187,0.970781,0.179565,0.825906,0.268903,0.120854,0.867449,0.09125,0.889559,0.73939,0.378257,0.932927,0.350191,0.868734,0.261282,0.57259,0.569627,0.762277,0.927516,0.426653,0.123348,0.933876,0.68251,0.927674,0.0804589,0.179566,0.956383,0.00191694,0.397776,0.281801,0.127341,0.614161,0.549139,0.349801,0.411954,0.368137,0.548244,0.46507,0.052499,0.878446,0.0149725,0.337538,0.44431,0.266801,0.803442,0.322264,0.632579,0.126058,0.190993,0.48311,0.373896,0.779048,0.996733,0.778856,0.315781,0.145383,0.54566,0.479899,0.521591,0.748744,0.692347,0.00232142,0.939515,0.810744,0.833712,0.144726,0.756254,0.62921,0.718323,0.399413,0.775968,0.475911,0.933022,0.431943,0.777211,0.860563,0.152198,0.833236,0.275383,0.283552,0.531058,0.177944,0.695211,0.723257,0.456565,0.181144,0.262603,0.0925958,0.324945,0.441029,0.867277,0.875829,0.549067,0.406912,0.0727283,0.667785,0.854184,0.745762,0.483561,0.276554,0.722329,0.0592366,0.29982,0.365819,0.504297,0.0456415,0.00949699,0.339777,0.464416,0.103086,0.121791,0.834654,0.758794,0.443167,0.864602,0.870125,0.608222,0.469348,0.840007,0.125446,0.0321707,0.0802605,0.867843,0.889777,0.916091,0.568264,0.0630892,0.410704,0.440013,0.525116,0.0273079,0.58718,0.982005,0.648052,0.742247,0.457865,0.114255,0.673474,0.779425,0.616712,0.191871,0.989076,0.40733,0.332755,0.939489,0.663295,0.117958,0.343136,0.0465997,0.772993,0.491331,0.314756,0.644727,0.154579,0.359255,0.943233,0.551317,0.139973,0.45154,0.635358,0.312953,0.308635,0.318088,0.919091,0.805885,0.453981,0.811255,0.0763183,0.400564,0.604866,0.9874,0.0127574,0.40276,0.311581,0.0172525,0.178348,0.35833,0.568209,0.46384,0.687618,0.566871,0.433822,0.56178,0.436509,0.871763,0.777037,0.344266,0.4105,0.586727,0.714661,0.00934374,0.61746,0.613995,0.27602,0.19328,0.377738,0.726367,0.226035,0.976771,0.943693,0.52438,0.524594,0.749783,0.534253,0.495352,0.993696,0.952042,0.897737,0.512721,0.451635,0.573046,0.828071,0.866446,0.885545,0.872733,0.623913,0.195824,0.434201,0.367913,0.181729,0.272814,0.340778,0.808524,0.33856,0.555066,0.459671,0.0711139,0.449366,0.984948,0.449466,0.322289,0.246937,0.780422,0.896495,0.278601,0.465073,0.780137,0.373964,0.315221,0.992531,0.680784,0.650589,0.691574,0.286104,0.475641,0.863131,0.237781,0.270681,0.639691,0.954203,0.579928,0.0932003,0.85145,0.293118,0.601492,0.0770122,0.582705,0.651799,0.0183339,0.707165,0.404615,0.222391,0.320586,0.854106,0.034182,0.61668,0.24798,0.461387,0.165578,0.0129876,0.495713,0.933897,0.887742,0.287693,0.823195,0.490676,0.96584,0.987306,0.416504,0.93286,0.475316,0.129479,0.469129,0.822354,0.401637,0.030353,0.863506,0.26014,0.753777,0.555065,0.87277,0.108087,0.973132,0.827981,0.917715,0.794948,0.252714,0.578941,0.992482,0.0265349,0.753279,0.473589,0.321978,0.132127,0.743622,0.750292,0.90043,0.00964767,0.773416,0.790826,0.667123,0.024284,0.818083,0.809722,0.536592,0.362146,0.863356,0.678423,0.381049,0.0639608,0.684675,0.626256,0.894008,0.309418,0.113051,0.774616,0.765275,0.954312,0.671493,0.2302,0.207777,0.017621,0.421851,0.273375,0.753721,0.599443,0.752961,0.23083,0.285428,0.927618,0.165476,0.364231,0.131242,0.653229,0.423617,0.191418,0.0795109,0.258886,0.125492,0.366507,0.417756,0.650198,0.00576103,0.582521,0.7421,0.112246,0.303726,0.90169,0.779311,0.159601,0.635662,0.768905,0.599472,0.292564,0.0228397,0.133086,0.486124,0.374854,0.93483,0.0137918,0.116544,0.728922,0.769309,0.197137,0.00359887,0.223536,0.915752,0.0334047,0.230348,0.223224,0.969165,0.435529,0.872432,0.880175,0.0961972,0.934384,0.0451766,0.329909,0.585653,0.477263,0.953063,0.288121,0.832935,0.693988,0.487198,0.0958444,0.672574,0.124147,0.281282,0.0123561,0.535634,0.654572,0.345624,0.751142,0.279316,0.676815,0.377925,0.127033,0.278968,0.929464,0.256887,0.461347,0.181253,0.240453,0.867867,0.308019,0.381714,0.544886,0.755933,0.492872,0.341479,0.464556,0.721862,0.487051,0.209711,0.270189,0.244768,0.911759,0.746067,0.90842,0.467918,0.59472,0.184542,0.82606,0.5502,0.923793,0.807105,0.242506,0.462616,0.467559,0.644499,0.641743,0.932607,0.599414,0.834562,0.165547,0.89338,0.41693,0.330398,0.597481,0.872606,0.644946,0.144565,0.859129,0.943735,0.322967,0.576263,0.513599,0.1126,0.874658,0.810706,0.799012,0.826621,0.485311,0.0939854,0.367053,0.605798,0.715535,0.839935,0.551764,0.508225,0.580584,0.54354,0.264931,0.512506,0.100791,0.557042,0.744214,0.256254,0.455992,0.719641,0.357675,0.10015,0.768465,0.178934,0.663089,0.6647,0.859167,0.372293,0.536119,0.885853,0.719316,0.654444,0.62076,0.554792,0.656509,0.0747545,0.411384,0.722613,0.329666,0.59489,0.305294,0.518517,0.74716,0.959182,0.514431,0.834142,0.165253,0.263097,0.380925,0.129001,0.583824,0.974766,0.755415,0.448408,0.706749,0.793831,0.935784,0.779095,0.520986,0.800794,0.352369,0.880075,0.766033,0.214522,0.0128382,0.477305,0.343277,0.0100603,0.20631,0.891426,0.391936,0.774206,0.83083,0.74177,0.0690135,0.00792301,0.113956,0.320403,0.582386,0.809772,0.516943,0.0239658,0.0781075,0.384627,0.626369,0.424574,0.370997,0.900298,0.329774,0.307096,0.376793,0.953011,0.512909,0.585355,0.376378,0.82745,0.177628,0.373022,0.147852,0.957819,0.292902,0.120002,0.739039,0.958706,0.372917,0.859193,0.926862,0.440994,0.386764,0.705885,0.561064,0.0843504,0.737639,0.922253,0.591065,0.898692,0.764567,0.574184,0.104736,0.125171,0.0957393,0.0478049,0.259971,0.301652,0.596047,0.00649017,|0.959943,0.473048,0.555832,0.655574,0.102261,0.0307738,0.471856,0.272633,0.148474,0.261179,0.489522,0.261148,0.399174,0.978529,0.192625,0.993857,0.871692,0.745048,0.798403,0.017045,0.196861,0.526089,0.222456,0.21988,0.429111,0.85315,0.761202,0.777959,0.829726,0.0388041,0.465999,0.0723293,0.227554,0.062555,0.239905,0.363547,0.944603,0.904387,0.807943,0.650182,0.185876,0.221392,0.378619,0.113835,0.429624,0.104049,0.138629,0.698726,0.959665,0.544843,0.0468287,0.0783385,0.599061,0.728359,0.532682,0.430232,0.545411,0.0663744,0.540895,0.139401,0.624563,0.557102,0.504589,0.551702,0.450889,0.521167,0.0357158,0.131851,0.511126,0.439421,0.576028,0.52307,0.219203,0.213923,0.778878,0.435875,0.947918,0.513474,0.0169818,0.646468,0.947746,0.0784785,0.798951,0.0592105,0.452079,0.552106,0.881904,0.961452,0.791937,0.569009,0.0789199,0.988826,0.839469,0.669901,0.473604,0.442085,0.811642,0.351343,0.507855,0.553101,0.473514,0.453507,0.998735,0.391299,0.432417,0.76598,0.140756,0.884362,0.795276,0.674535,0.186489,0.33344,0.91872,0.191938,0.714222,0.335102,0.676796,0.816617,0.597845,0.31615,0.0613575,0.569782,0.494683,0.931112,0.53979,0.734144,0.843568,0.742685,0.783602,0.0773147,0.261726,0.793424,0.628051,0.776723,0.957618,0.0890468,0.0185057,0.15211,0.355673,0.786347,0.573099,0.849678,0.544755,0.413814,0.169421,0.0552042,0.961134,0.87165,0.225497,0.406499,0.00479436,0.359728,0.218088,0.638369,0.238064,0.257322,0.156995,0.37068,0.94954,0.558643,0.922752,0.55324,0.0964571,0.89952,0.032822,0.279604,0.935596,0.0724315,0.018025,0.119818,0.118345,0.993303,0.062063,0.329454,0.0628231,0.45513,0.471667,0.965627,0.00956178,0.43506,0.651418,0.911275,0.160147,0.687876,0.515609,0.243466,0.0463695,0.496041,0.755968,0.527688,0.115278,0.0678046,0.288518,0.0149653,0.74232,0.899719,0.0728536,0.207809,0.825809,0.302039,0.734477,0.192513,0.0203636,0.538875,0.479063,0.710279,0.416342,0.182486,0.279872,0.669442,0.422852,0.220724,0.649049,0.516342,0.619715,0.937944,0.258697,0.216389,0.870245,0.649961,0.753904,0.74719,0.0811741,0.54429,0.63471,0.0156217,0.323525,0.0669755,0.116029,0.00208575,0.0798806,0.929531,0.936042,0.900317,0.513992,0.8019,0.353823,0.218672,0.476567,0.163106,0.338444,0.9518,0.601333,0.174412,0.307774,0.311392,0.330004,0.187021,0.620349,0.24065,0.722068,0.622014,0.346184,0.952966,0.0290185,0.624758,0.743943,0.0703063,0.787606,0.672372,0.612606,0.18833,0.176981,0.767792,0.0937253,0.0612481,0.367358,0.276344,0.917286,0.784005,0.245105,0.434875,0.884571,0.452667,0.433431,0.288712,0.3856,0.549554,0.39994,0.729546,0.417407,0.383674,0.730436,0.310548,0.85189,0.998053,0.963385,0.49666,0.654773,0.154244,0.412284,0.228415,0.246102,0.953364,0.376763,0.770339,0.293508,0.433819,0.318371,0.916587,0.902547,0.78878,0.181943,0.261306,0.553467,0.36851,0.970696,0.743115,0.19967,0.675571,0.942511,0.136824,0.282246,0.530105,0.186169,0.0195671,0.87304,0.90743,0.423055,0.424377,0.970005,0.0302932,0.511841,0.562325,0.91993,0.511148,0.984851,0.75684,0.256651,0.460725,0.724312,0.729662,0.530491,0.95224,0.808223,0.836741,0.849946,0.213342,0.95642,0.821175,0.184112,0.575802,0.446707,0.66338,0.491358,0.246358,0.866228,0.372101,0.101833,0.78296,0.993343,0.772353,0.637693,0.789621,0.370228,0.513173,0.288351,0.167841,0.546293,0.679051,0.900651,0.0482946,0.788702,0.436336,0.139908,0.599329,0.319582,0.307577,0.808925,0.350599,0.0163594,0.823134,0.529076,0.991775,0.921314,0.349474,0.501467,0.242363,0.621956,0.467127,0.225424,0.75561,0.710214,0.847331,0.199529,0.973864,0.923699,0.836042,0.263032,0.969977,0.822686,0.973684,0.990363,0.626745,0.607483,0.728605,0.791692,0.0691547,0.444894,0.31181,0.365671,0.60105,0.418967,0.600927,0.94016,0.9809,0.708721,0.167859,0.777505,0.860887,0.226605,0.538792,0.333156,0.232961,0.0620498,0.256306,0.75773,0.34579,0.372132,0.0816514,0.746128,0.979267,0.606724,0.293162,0.0560552,0.64711,0.231029,0.0507941,0.41582,0.0558674,0.436223,0.909853,0.627422,0.00220215,0.925968,0.633609,0.173988,0.840738,0.648923,0.185327,0.603766,0.225399,0.291613,0.383059,0.782035,0.0301717,0.445536,0.657895,0.139931,0.764333,0.830999,0.411854,0.602257,0.779803,0.686063,0.791501,0.740553,0.583286,0.434696,0.403954,0.24593,0.538508,0.194784,0.106882,0.520462,0.46539,0.730329,0.131569,0.278967,0.0583836,0.256471,0.246442,0.422031,0.877133,0.685068,0.864866,0.361473,0.917289,0.0279538,0.696508,0.543695,0.58379,0.496803,0.352575,0.733384,0.383387,0.858654,0.823275,0.984916,0.0289691,0.309816,0.449041,0.877974,0.76287,0.410594,0.0603356,0.402783,0.350384,0.462138,0.922207,0.407306,0.234102,0.561845,0.281004,0.869135,0.682697,0.871468,0.367471,0.824131,0.181214,0.850667,0.375975,0.565998,0.376661,0.450878,0.677105,0.431322,0.338932,0.30111,0.373399,0.789605,0.642392,0.51152,0.307667,0.688368,0.273027,0.577948,0.83864,0.782326,0.841652,0.0677882,0.765878,0.344825,0.174806,0.19925,0.803223,0.915646,0.685085,0.601683,0.406084,0.960243,0.502193,0.877537,0.460632,0.221294,0.182641,0.209789,0.617822,0.341894,0.537097,0.900386,0.621308,0.221904,0.909137,0.327699,0.846443,0.726642,0.646352,0.44318,0.664735,0.804512,0.632734,0.594174,0.827544,0.919348,0.32815,0.00641304,0.2977,0.641256,0.784153,0.0574724,0.69029,0.871278,0.0055902,0.87193,0.442057,0.0234779,0.319011,0.446913,0.106052,0.596343,0.465744,0.0608069,0.519932,0.372615,0.628415,0.330822,0.669637,0.927372,0.261831,0.0782973,0.195328,0.475327,0.753902,0.959438,0.791656,0.495814,0.939271,0.866032,0.544352,0.494855,0.987658,0.711501,0.860077,0.149681,0.357692,0.154084,0.769963,0.159867,0.0906571,0.907824,0.761825,0.161541,0.910622,0.338967,0.553976,0.546127,0.133738,0.534028,0.503701,0.543765,0.40756,0.109727,0.420033,0.345168,0.445378,0.955498,0.224826,0.342755,0.501459,0.622787,0.0521351,0.786216,0.439862,0.895959,0.275473,0.232768,0.800476,0.164044,0.300796,0.329768,0.508226,0.70818,0.734305,0.805489,0.655423,0.185739,0.930144,0.538088,0.586566,0.981619,0.126392,0.988828,0.110262,0.210955,0.513137,0.294125,0.250491,0.520898,0.577598,0.778619,0.262857,0.992117,0.292566,0.803103,0.595935,0.924513,0.545485,0.519634,0.556073,0.931061,0.510066,0.4212,0.496415,0.858715,0.241527,0.551026,0.309144,0.829024,0.230023,0.168346,0.342093,0.907633,0.0978267,0.667484,0.0873458,0.0982595,0.832772,0.935621,0.381103,0.985639,0.201893,0.464304,0.187911,0.736935,0.586486,0.924775,0.5676,0.515811,0.18237,0.187704,0.578562,0.269519,0.917904,0.0378298,0.665659,0.286945,0.581723,0.487894,0.477759,0.691614,0.920293,0.0624527,0.785486,0.881791,0.266589,0.0522696,0.401482,0.24738,0.0374404,0.584009,0.161589,0.942969,0.552573,0.963344,0.337299,0.772392,0.64401,0.999641,0.493178,0.733289,0.54691,0.862886,0.789174,0.58573,0.19053,0.954347,0.230115,0.189627,0.572123,0.871571,0.180153,0.4618,0.204217,0.539549,0.403818,0.00205332,0.708136,0.441474,0.783109,0.460334,0.432611,0.951627,0.719001,0.704824,0.945817,0.937621,0.0929943,0.0104663,0.240877,0.53656,0.861597,0.36741,0.332805,0.860159,0.727767,0.570504,0.759598,0.346716,0.587717,0.757486,0.194924,0.731278,0.540445,0.821687,0.502897,0.00280493,0.824243,0.714225,0.381516,0.090059,0.113157,0.15433,0.309926,0.236511,0.329822,0.649767,0.690428,0.777279,0.675444,0.642723,0.130273,0.0573963,0.89965,0.504836,0.892681,0.244084,0.504715,0.354197,0.89488,0.320051,0.458961,0.987615,0.785731,0.241866,0.795907,0.13354,0.490629,0.844849,0.222361,0.564607,0.456813,0.359477,0.885819,0.576695,0.384411,0.830039,0.273038,0.310962,0.890524,0.0959666,0.353885,0.481389,0.894224,0.798133,0.889578,0.853862,0.23574,0.615587,0.404801,0.119403,0.876079,0.944247,0.184259,0.0216336,0.64387,0.468652,0.787219,0.19223,0.717636,0.0521162,0.621513,0.900543,0.977107,0.573913,0.844175,0.191639,0.952374,0.944841,0.576477,0.644494,0.365185,0.462072,0.237497,0.537233,0.239655,0.683371,0.181524,0.991125,0.0930013,0.22137,0.72185,0.208818,0.284646,0.89245,0.136729,0.980603,0.866691,0.190045,0.385154,0.38801,0.430308,0.914805,0.00481898,0.403844,0.779545,0.380816,0.308666,0.620818,0.736405,0.108298,0.785996,0.723632,0.207983,0.415967,0.195814,0.466884,0.460096,0.734864,0.584171,0.996881,0.0326617,0.435449,0.678017,0.578152,0.441677,0.313624,0.0131239,0.646669,0.41686,0.62445,0.52896,0.211371,0.806425,0.707834,0.789264,0.375247,0.515701,0.73338,0.887925,0.257027,0.467662,0.557585,0.406184,0.398418,0.502064,0.781889,0.402019,0.536801,0.553893,0.983669,0.750393,0.0753123,0.345108,0.932709,0.285324,0.386041,0.566491,0.315794,0.462063,0.115529,0.680425,0.477775,0.740674,0.676702,0.365635,0.685881,0.876894,0.136593,0.386687,0.457899,0.534763,0.608616,0.179083,0.985188,0.233075,0.296741,0.854887,0.0386308,0.116353,0.756283,0.415959,0.499717,0.0254489,0.377867,0.407472,0.770388,0.35075,0.727434,0.865279,0.948725,0.849794,0.262976,0.807763,0.553355,0.467021,0.120314,0.939235,0.561741,0.542553,0.0253851,0.344647,0.76324,0.466799,0.71601,0.289086,0.611106,0.218375,0.987551,0.228206,0.77199,0.00619608,0.255242,0.764552,0.36118,0.0228907,0.0847389,0.804444,0.505025,0.142727,0.00860447,0.222528,0.30447,0.928157,0.520433,0.61933,0.859951,0.823961,0.214199,0.794881,|0.0896173,0.244904,0.319832,0.0411514,0.419883,0.178732,0.76943,0.119656,0.0902714,0.408899,0.881473,0.983527,0.176664,0.652114,0.952485,0.124169,0.0759406,0.00992495,0.761931,0.634508,0.619637,0.206432,0.876231,0.893607,0.878005,0.344245,0.461767,0.541067,0.13418,0.492049,0.914379,0.474107,0.951131,0.311328,0.746815,0.0884584,0.0369253,0.458644,0.625547,0.837468,0.755001,0.946489,0.121843,0.232457,0.5815,0.635521,0.237102,0.141757,0.689602,0.674569,0.840881,0.37235,0.628036,0.374707,0.669477,0.313526,0.0205252,0.409749,0.95359,0.724559,0.82509,0.238621,0.492903,0.0303874,0.879668,0.294429,0.709175,0.807478,0.654696,0.851415,0.770151,0.0213667,0.604503,0.266871,0.513052,0.507287,0.213326,0.0332663,0.181967,0.526765,0.0197973,0.556607,0.674088,0.0867985,0.0178791,0.779448,0.601082,0.20469,0.721357,0.259622,0.536824,0.011699,0.88401,0.39382,0.0538937,0.883906,0.826967,0.783897,0.044826,0.492127,0.973761,0.854672,0.841812,0.655107,0.197407,0.966402,0.407172,0.390735,0.782838,0.022791,0.787644,0.544601,0.907,0.488155,0.672459,0.817891,0.632714,0.579694,0.404329,0.059186,0.94125,0.99676,0.915149,0.466237,0.0222151,0.308004,0.765803,0.771834,0.270449,0.841089,0.816253,0.28973,0.58839,0.541807,0.677456,0.57095,0.370452,0.000604033,0.011201,0.89366,0.569548,0.801113,0.704371,0.581685,0.7757,0.914415,0.461459,0.244099,0.586486,0.670809,0.826688,0.743624,0.839269,0.965146,0.644236,0.0585173,0.173665,0.2607,0.300892,0.924653,0.760126,0.823831,0.764705,0.331816,0.861881,0.191665,0.533171,0.347328,0.385725,0.585867,0.0279378,0.833504,0.6997,1.07884e-05,0.317124,0.95979,0.956452,0.260825,0.287787,0.596333,0.688456,0.30863,0.372816,0.539568,0.843889,0.708416,0.867018,0.747522,0.627709,0.127499,0.996526,0.0162401,0.541042,0.611124,0.545764,0.180927,0.0134708,0.157401,0.445503,0.598706,0.94605,0.567386,0.486125,0.693536,0.0693947,0.602056,0.905267,0.756955,0.209697,0.979524,0.284333,0.145746,0.986635,0.0592495,0.417142,0.972675,0.80183,0.921977,0.323814,0.937255,0.884165,0.209288,0.959016,0.763542,0.593033,0.567427,0.0699371,0.428622,0.404937,0.779127,0.224663,0.776333,0.701667,0.926557,0.116076,0.947681,0.253488,0.133402,0.997134,0.157998,0.30218,0.541832,0.319292,0.674565,0.361657,0.828254,0.215191,0.0145346,0.828679,0.398896,0.938535,0.906047,0.523041,0.468426,0.718152,0.618616,0.993098,0.692151,0.71301,0.787671,0.205638,0.49368,0.92602,0.819652,0.841667,0.56539,0.378985,0.349698,0.760982,0.899913,0.0804982,0.63594,0.423104,0.36577,0.818587,0.93022,0.384651,0.827852,0.529197,0.320724,0.445399,0.951511,0.485385,0.0287409,0.604118,0.307438,0.428582,0.941526,0.696253,0.748864,0.295738,0.255776,0.824758,0.772094,0.964411,0.708271,0.407344,0.160077,0.15949,0.214271,0.396199,0.220852,0.239533,0.915572,0.0290047,0.794176,0.359082,0.58262,0.00964838,0.620927,0.684597,0.754728,0.377618,0.533769,0.980294,0.872509,0.119786,0.0756741,0.74294,0.806303,0.692494,0.00567257,0.400186,0.12189,0.40751,0.561234,0.647047,0.461773,0.910029,0.486865,0.511641,0.831975,0.266727,0.0228283,0.180137,0.486771,0.786756,0.723108,0.0801987,0.434218,0.528776,0.511915,0.892222,0.982134,0.922557,0.547834,0.589611,0.635328,0.252559,0.54549,0.748022,0.0511112,0.780654,0.900174,0.162078,0.309822,0.967923,0.765551,0.411071,0.95324,0.489737,0.99456,0.612017,0.194959,0.47702,0.748456,0.736936,0.359687,0.197807,0.785783,0.694445,0.503085,0.166004,0.807966,0.259556,0.440624,0.962779,0.0273296,0.129087,0.872974,0.723015,0.162916,0.505536,0.380793,0.528534,0.0518315,0.415066,0.393891,0.623547,0.142361,0.435487,0.080385,0.711992,0.432844,0.0563965,0.13482,0.129932,0.128032,0.623744,0.0808156,0.339709,0.89199,0.199886,0.776725,0.24701,0.750971,0.722638,0.608423,0.587716,0.885297,0.514956,0.778481,0.0725499,0.250463,0.760812,0.451726,0.431885,0.445656,0.129002,0.848573,0.885593,0.948754,0.879021,0.461822,0.700065,0.101903,0.228918,0.850666,0.00258803,0.619153,0.75371,0.278176,0.0407352,0.740889,0.488005,0.97809,0.443591,0.978321,0.0379095,0.14581,0.623033,0.970804,0.215834,0.0168196,0.0101271,0.109946,0.162468,0.0335552,0.80587,0.929638,0.784059,0.792313,0.854925,0.991298,0.344189,0.16732,0.0833681,0.540862,0.360143,0.406907,0.0170756,0.110299,0.643595,0.808677,0.818854,0.237502,0.308962,0.792547,0.232508,0.810784,0.860771,0.114217,0.245274,0.0452115,0.525508,0.80938,0.634261,0.44955,0.578174,0.791389,0.512222,0.120268,0.0510908,0.56573,0.242926,0.834679,0.557872,0.00455719,0.323439,0.328639,0.656757,0.0793496,0.736007,0.173204,0.978126,0.724281,0.645531,0.812468,0.0293453,0.921061,0.362559,0.00956059,0.864175,0.194102,0.491677,0.0792199,0.391175,0.33891,0.802668,0.426332,0.806514,0.56517,0.691749,0.71236,0.798088,0.466475,0.625708,0.673038,0.136388,0.511173,0.556815,0.565707,0.105966,0.171544,0.119509,0.0353471,0.630552,0.480771,0.622883,0.740451,0.878991,0.122744,0.225511,0.782889,0.0980428,0.637784,0.559567,0.912663,0.857043,0.687243,0.137389,0.0637583,0.266622,0.390067,0.830737,0.229499,0.591871,0.752585,0.0676883,0.599581,0.585167,0.438591,0.036445,0.842458,0.616047,0.710236,0.290748,0.423133,0.480855,0.380196,0.0313988,0.602123,0.492837,0.554225,0.650112,0.110828,0.484828,0.79287,0.959855,0.938131,0.881037,0.914611,0.64929,0.711734,0.189421,0.211588,0.254007,0.181439,0.473606,0.487017,0.111251,0.87882,0.154808,0.0617732,0.885794,0.111599,0.999393,0.775187,0.988356,0.600862,0.581404,0.799876,0.079973,0.507415,0.698246,0.152369,0.85427,0.752543,0.63772,0.952878,0.214109,0.606059,0.206822,0.317393,0.832781,0.411344,0.376619,0.862605,0.322908,0.0439937,0.24292,0.819992,0.946799,0.143152,0.460329,0.681153,0.8512,0.868319,0.343934,0.405244,0.837348,0.715655,0.760322,0.505341,0.383429,0.226928,0.721009,0.438395,0.514272,0.897292,0.154251,0.82431,0.138929,0.647459,0.283518,0.16485,0.930233,0.722629,0.0861449,0.608917,0.385848,0.135139,0.56772,0.909401,0.653031,0.777964,0.256128,0.272565,0.390082,0.498991,0.221364,0.755532,0.958805,0.300527,0.0415996,0.488432,0.20595,0.551608,0.375282,0.409836,0.613365,0.527785,0.82925,0.104021,0.0372521,0.468352,0.885095,0.890568,0.980283,0.0201065,0.0378294,0.00952256,0.43011,0.23935,0.898663,0.643664,0.534222,0.956988,0.850125,0.856446,0.678266,0.676807,0.468772,0.804016,0.0296564,0.693599,0.344761,0.583509,0.254762,0.319424,0.248254,0.244478,0.678177,0.89476,0.592396,0.462181,0.874048,0.124602,0.383422,0.273411,0.950621,0.316165,0.87343,0.714738,0.585401,0.918136,0.287803,0.542781,0.187267,0.597406,0.594388,0.983599,0.280085,0.330135,0.583154,0.966431,0.124831,0.229043,0.407191,0.00795627,0.918566,0.0998393,0.0698004,0.379134,0.151495,0.0731815,0.979778,0.874195,0.670463,0.556189,0.338015,0.0477895,0.956944,0.977755,0.854804,0.492362,0.931849,0.60416,0.398395,0.971927,0.824362,0.905603,0.527233,0.148313,0.253909,0.679678,0.594715,0.166458,0.563458,0.596207,0.935454,0.385892,0.846934,0.330918,0.714771,0.272074,0.231023,0.0691963,0.246811,0.76925,0.746382,0.211875,0.659819,0.818017,0.00448072,0.499222,0.340094,0.452317,0.00345486,0.245729,0.345276,0.848568,0.082249,0.539887,0.547564,0.324963,0.3087,0.643269,0.124938,0.704813,0.298648,0.175572,0.0396727,0.587612,0.792094,0.681069,0.525118,0.966192,0.775641,0.512324,0.839518,0.0931316,0.875609,0.59839,0.0859157,0.11841,0.833882,0.397195,0.387623,0.261881,0.945349,0.777674,0.932536,0.94322,0.767406,0.748582,0.976159,0.862267,0.913207,0.140118,0.677249,0.0977601,0.178149,0.00666976,0.875725,0.329129,0.921014,0.909934,0.491979,0.805594,0.163563,0.713258,0.576349,0.208684,0.150299,0.663038,0.107742,0.442385,0.210053,0.667863,0.226961,0.246827,0.95845,0.819377,0.661043,0.0693935,0.0292185,0.165364,0.524211,0.155876,0.426955,0.657395,0.141188,0.806055,0.762763,0.577451,0.714445,0.758773,0.630274,0.875515,0.520564,0.0838092,0.622265,0.337274,0.287133,0.520623,0.468718,0.381512,0.227344,0.816018,0.605491,0.884848,0.842856,0.383633,0.0855225,0.487309,0.234972,0.366545,0.295544,0.683455,0.651812,0.652923,0.130598,0.780813,0.71107,0.418815,0.36788,0.923269,0.436296,0.51958,0.22991,0.00558031,0.72328,0.586665,0.974858,0.19023,0.779608,0.26238,0.451809,0.255374,0.0123872,0.679983,0.793692,0.826223,0.785333,0.0767556,0.103664,0.984436,0.241135,0.885774,0.531927,0.770376,0.311866,0.957619,0.110178,0.102264,0.269236,0.174226,0.657451,0.169408,0.892311,0.680436,0.94333,0.550033,0.671274,0.92745,0.469107,0.454269,0.595247,0.940231,0.93251,0.62773,0.888567,0.478313,0.73788,0.441774,0.625057,0.599051,0.236023,0.736822,0.963855,0.159174,0.748374,0.20284,0.276375,0.537088,0.726216,0.834813,0.35757,0.95141,0.818893,0.691476,0.377306,0.476306,0.999387,0.481244,0.358704,0.818585,0.922745,0.525384,0.582153,0.817179,0.476353,0.514079,0.731731,0.954399,0.940745,0.0954825,0.364341,0.397386,0.444557,0.590876,0.150423,0.963552,0.350371,0.153732,0.960773,0.208027,0.918659,0.682726,0.319356,0.62056,0.694068,0.730303,0.525754,0.48422,0.291599,0.341269,0.76502,0.137709,0.844328,0.531153,0.292744,0.555531,0.274473,0.675725,0.65215,0.00078541,0.174975,0.207043,0.899608,0.662656,0.00939602,0.967524,0.408019,0.828605,0.635796,0.562926,0.807109,0.564139,|0.833957,0.470876,0.602476,0.559168,0.394417,0.562982,0.908212,0.934906,0.426154,0.150903,0.326075,0.5453,0.356931,0.144698,0.425663,0.826303,0.0340924,0.702035,0.521446,0.0885413,0.855197,0.0509185,0.646926,0.0201932,0.494258,0.564159,0.356096,0.4091,0.0358464,0.142054,0.409106,0.33417,0.918281,0.875483,0.902304,0.453643,0.679868,0.807299,0.421014,0.251304,0.963324,0.1548,0.78866,0.923395,0.0102212,0.816708,0.667004,0.217276,0.0240434,0.585626,0.797487,0.0123364,0.410802,0.248379,0.741396,0.458439,0.684844,0.330306,0.647451,0.798077,0.93126,0.35995,0.23745,0.886699,0.691491,0.918969,0.405599,0.946409,0.983406,0.629367,0.860997,0.347479,0.388831,0.417959,0.518123,0.545553,0.409745,0.607459,0.534335,0.55514,0.948055,0.217864,0.515449,0.327987,0.721197,0.915087,0.482821,0.565996,0.441413,0.331191,0.653516,0.812061,0.0349242,0.250658,0.417655,0.464024,0.72909,0.717171,0.411308,0.282765,0.523853,0.56816,0.569512,0.540227,0.541232,0.629542,0.300034,0.0951601,0.0886562,0.473108,0.713211,0.455357,0.0199985,0.317185,0.813914,0.676714,0.5929,0.193747,0.825856,0.973524,0.127086,0.319944,0.749059,0.0309278,0.987057,0.479128,0.625566,0.181419,0.391465,0.27304,0.491724,0.802876,0.880673,0.385808,0.322768,0.335766,0.997607,0.388369,0.171472,0.460584,0.111846,0.345826,0.187597,0.422106,0.320063,0.0204488,0.702469,0.60383,0.172229,0.991537,0.414036,0.968507,0.0704179,0.124067,0.851702,0.769525,0.645659,0.014815,0.426625,0.593479,0.602069,0.43514,0.456611,0.225471,0.0240376,0.340525,0.399032,0.0330803,0.39964,0.104051,0.790649,0.277658,0.476273,0.251485,0.83836,0.907523,0.0460406,0.794663,0.309591,0.102392,0.431805,0.438329,0.626993,0.607004,0.652414,0.411481,0.215687,0.322424,0.965456,0.707601,0.415894,0.511578,0.199079,0.0934526,0.448825,0.132376,0.574244,0.391691,0.428706,0.375202,0.931686,0.452168,0.564652,0.808056,0.854507,0.0989506,0.617825,0.547882,0.0734599,0.0375385,0.699621,0.790403,0.235894,0.835292,0.995053,0.728991,0.537486,0.273012,0.10652,0.940375,0.0508205,0.799671,0.345216,0.0626094,0.211081,0.358327,0.557662,0.972034,0.900606,0.299822,0.780974,0.400515,0.540906,0.646624,0.656165,0.165793,0.868979,0.553991,0.144218,0.539003,0.0282211,0.635371,0.915596,0.826118,0.651182,0.858929,0.278231,0.588127,0.11434,0.743577,0.0352817,0.536803,0.457365,0.916336,0.10746,0.15052,0.974308,0.461717,0.269467,0.744084,0.601692,0.449161,0.400065,0.232289,0.329309,0.849978,0.073878,0.171755,0.550248,0.790586,0.36716,0.471198,0.653353,0.756145,0.283156,0.791124,0.833364,0.99099,0.638195,0.496769,0.720562,0.330867,0.0106617,0.592801,0.462385,0.316379,0.901593,0.331748,0.71283,0.459689,0.251444,0.868683,0.539824,0.559071,0.0332341,0.226359,0.335295,0.476799,0.554751,0.845531,0.575568,0.224247,0.312794,0.43651,0.604445,0.238425,0.610095,0.354716,0.316963,0.240561,0.13592,0.615894,0.281767,0.0323996,0.661004,0.16771,0.792674,0.427998,0.99172,0.322388,0.91475,0.417053,0.980068,0.17391,0.648997,0.14324,0.604294,0.0649868,0.375658,0.686063,0.312184,0.0703601,0.397481,0.999042,0.309688,0.53528,0.552975,0.116325,0.838891,0.718255,0.547809,0.538468,0.644783,0.421916,0.843396,0.455283,0.879398,0.102392,0.677268,0.940708,0.991756,0.570402,0.317424,0.166752,0.113082,0.613064,0.782282,0.687351,0.0623863,0.442869,0.525539,0.280588,0.4837,0.906583,0.421723,0.861479,0.545521,0.23136,0.849846,0.638047,0.484897,0.427703,0.939716,0.546557,0.172084,0.350797,0.0138443,0.830088,0.264831,0.177216,0.945509,0.304987,0.91025,0.810377,0.824505,0.711029,0.461942,0.48533,0.907957,0.138193,0.525936,0.944093,0.288794,0.698457,0.242583,0.71294,0.769187,0.818494,0.00628281,0.503462,0.228122,0.201134,0.431358,0.524199,0.791375,0.152345,0.445437,0.277224,0.135128,0.8575,0.256575,0.19335,0.985105,0.0227432,0.367267,0.106725,0.10631,0.226569,0.741188,0.326406,0.841933,0.821607,0.969236,0.302688,0.126959,0.572109,0.386037,0.800296,0.730845,0.682364,0.352444,0.328044,0.601121,0.2116,0.653072,0.940348,0.141645,0.214863,0.139904,0.104205,0.583583,0.335545,0.986047,0.391286,0.0590879,0.999333,0.552323,0.597726,0.592142,0.340117,0.46917,0.250085,0.748794,0.060145,0.256137,0.48608,0.972393,0.362229,0.618368,0.199843,0.732496,0.521726,0.428656,0.168558,0.990222,0.293159,0.161525,0.126738,0.993929,0.465235,0.0889137,0.357653,0.1239,0.37146,0.171327,0.145669,0.328772,0.320404,0.219674,0.247048,0.948985,0.194496,0.0424982,0.746117,0.236498,0.717418,0.751073,0.740192,0.752908,0.104005,0.336027,0.720561,0.314251,0.336532,0.355116,0.616391,0.0667179,0.699797,0.0274159,0.873426,0.218233,0.946742,0.265541,0.284526,0.657536,0.659321,0.305407,0.1867,0.164481,0.697973,0.963958,0.374185,0.842442,0.0246055,0.933098,0.535891,0.760804,0.308354,0.518995,0.168229,0.320006,0.685678,0.0551605,0.181939,0.064165,0.00954163,0.0532376,0.924474,0.289994,0.944184,0.726931,0.733744,0.655466,0.874432,0.874454,0.458413,0.58574,0.93768,0.283656,0.199707,0.0661539,0.382473,0.721811,0.494387,0.324494,0.696489,0.197079,0.935832,0.338655,0.895098,0.0676811,0.981928,0.240198,0.141228,0.478518,0.0735785,0.204065,0.00785339,0.246592,0.433206,0.0877894,0.46357,0.748554,0.290627,0.385302,0.957595,0.31371,0.556618,0.315433,0.219913,0.868342,0.792815,0.933457,0.460424,0.786387,0.0294657,0.053454,0.753647,0.261425,0.876079,0.540324,0.487731,0.510798,0.766318,0.809285,0.183002,0.959345,0.92222,0.14247,0.527164,0.222548,0.634252,0.454832,0.229592,0.301888,0.320395,0.778323,0.35676,0.545203,0.244745,0.0452856,0.701645,0.348297,0.35956,0.332832,0.636138,0.924674,0.49453,0.212231,0.522107,0.886962,0.810293,0.511997,0.365876,0.942696,0.217913,0.624405,0.733562,0.460247,0.305271,0.27915,0.706556,0.701079,0.56007,0.199299,0.752568,0.498091,0.886338,0.917205,0.963395,0.107314,0.587321,0.814086,0.663751,0.177933,0.392738,0.727494,0.937821,0.507235,0.339383,0.553899,0.662556,0.00843245,0.167818,0.211604,0.823127,0.723487,0.480696,0.479208,0.498195,0.666605,0.500694,0.263046,0.173331,0.491093,0.443033,0.0959764,0.407034,0.834939,0.460111,0.39575,0.931601,0.795049,0.799234,0.61976,0.788168,0.941976,0.883297,0.57545,0.0215065,0.17571,0.0367179,0.847507,0.215851,0.825751,0.0480453,0.31657,0.631028,0.648062,0.169304,0.892775,0.551008,0.890999,0.242912,0.611691,0.813496,0.258825,0.599388,0.984413,0.629333,0.227207,0.54488,0.437765,0.653355,0.639304,0.128772,0.192328,0.267517,0.0568206,0.603036,0.216913,0.153412,0.589383,0.398583,0.716234,0.839218,0.93389,0.976117,0.458418,0.568078,0.191472,0.613874,0.474756,0.26537,0.839355,0.286451,0.811157,0.61361,0.826455,0.481151,0.245615,0.364806,0.728218,0.280685,0.0509972,0.620986,0.285247,0.287242,0.641126,0.236153,0.750479,0.637485,0.701063,0.789259,0.283515,0.258664,0.707289,0.736225,0.808456,0.819919,0.83837,0.463902,0.448812,0.349165,0.924844,0.566486,0.769557,0.104946,0.568714,0.0582281,0.419814,0.965302,0.0920244,0.052237,0.551441,0.442415,0.668853,0.909108,0.0244987,0.503832,0.745632,0.515153,0.936015,0.995928,0.987532,0.906454,0.0986952,0.534023,0.144269,0.799925,0.643463,0.545691,0.888034,0.977404,0.239511,0.370385,0.29403,0.488153,0.467702,0.133638,0.750094,0.579068,0.777155,0.232564,0.851674,0.910737,0.667409,0.188001,0.500739,0.282537,0.436181,0.367109,0.96768,0.489945,0.781074,0.726679,0.262547,0.651391,0.524641,0.0957294,0.208789,0.116275,0.265773,0.956276,0.893266,0.0676211,0.324947,0.901734,0.280577,0.218859,0.762332,0.556272,0.838794,0.124095,0.332413,0.876189,0.357679,0.611072,0.747525,0.533095,0.533446,0.811025,0.981434,0.366414,0.695375,0.933005,0.00063926,0.822085,0.179645,0.921325,0.403339,0.891105,0.549607,0.0733622,0.484813,0.146852,0.234585,0.282062,0.683495,0.320614,0.407155,0.915191,0.121083,0.184719,0.153325,0.747391,0.0336428,0.986054,0.602286,0.0818002,0.0301983,0.494237,0.211931,0.995407,0.468535,0.191754,0.920546,0.699308,0.254229,0.658092,0.209168,0.621996,0.758468,0.742928,0.200724,0.0318303,0.472118,0.32335,0.251534,0.334622,0.438268,0.753564,0.516593,0.766873,0.52662,0.607901,0.53863,0.0590484,0.645251,0.469117,0.108653,0.983908,0.69448,0.716763,0.348878,0.825025,0.30908,0.483222,0.550288,0.704138,0.526233,0.53854,0.474603,0.0944471,0.610952,0.892132,0.684746,0.591807,0.827413,0.106702,0.405061,0.119828,0.699751,0.383403,0.755875,0.365195,0.139716,0.9889,0.840585,0.871473,0.214719,0.718662,0.724135,0.594037,0.0747148,0.0670986,0.571824,0.368293,0.437034,0.521877,0.704871,0.0540661,0.593691,0.154257,0.111021,0.55034,0.00476873,0.808848,0.292188,0.872054,0.677941,0.321627,0.782878,0.236069,0.866835,0.596106,0.740819,0.386795,0.995217,0.725367,0.808087,0.459475,0.274798,0.320304,0.574539,0.236807,0.590059,0.985082,0.843001,0.390179,0.927713,0.621233,0.926974,0.270855,0.191783,0.779069,0.494093,0.151554,0.394945,0.10236,0.1266,0.797182,0.529076,0.798176,0.988467,0.0130929,0.664365,0.198575,0.331634,0.95663,0.396771,0.207926,0.0304746,0.85918,0.214708,0.428213,0.882696,0.447662,0.195678,0.647379,0.000532508,0.828822,0.768812,0.250488,0.521726,0.669264,0.837922,0.223913,0.747454,0.803209,0.418373,0.542427,0.342687,0.846264,0.390026,0.249925,0.178092,0.544666,0.430551,0.993027,|0.541149,0.391319,0.2121,0.827664,0.434109,0.164876,0.0663618,0.333855,0.985222,0.05626,0.154254,0.699806,0.346024,0.870295,0.659271,0.249522,0.0313268,0.269585,0.127632,0.983852,0.754295,0.638989,0.171264,0.812115,0.687477,0.766395,0.0127413,0.307756,0.798656,0.408801,0.0695223,0.113963,0.857975,0.144283,0.928039,0.0077613,0.232468,0.0394307,0.980632,0.527971,0.0159343,0.495841,0.155942,0.42488,0.00219619,0.279753,0.581476,0.910489,0.917245,0.0538557,0.0845073,0.562233,0.755373,0.778674,0.139425,0.968279,0.433065,0.17183,0.00811177,0.304847,0.587578,0.72952,0.828784,0.19679,0.451973,0.0304132,0.209735,0.819341,0.314149,0.920405,0.912648,0.0479777,0.221049,0.946555,0.18963,0.525095,0.161098,0.213684,0.628545,0.165685,0.677372,0.326333,0.328519,0.489354,0.572064,0.558897,0.49601,0.815396,0.8748,0.698342,0.506738,0.262948,0.383666,0.934778,0.445474,0.786617,0.505126,0.79463,0.321191,0.881947,0.807386,0.853097,0.43231,0.086061,0.543395,0.139871,0.765294,0.511395,0.554406,0.402058,0.94095,0.661521,0.575078,0.924445,0.463289,0.279573,0.835643,0.651628,0.10718,0.355007,0.373855,0.62638,0.433181,0.169734,0.722686,0.531971,0.965703,0.874412,0.844474,0.834218,0.86903,0.749581,0.236515,0.556912,0.179479,0.577899,0.913729,0.540496,0.0687699,0.57892,0.0566493,0.486477,0.204833,0.402564,0.35121,0.812172,0.174264,0.246454,0.840461,0.401278,0.057797,0.794368,0.976941,0.4703,0.590455,0.0244013,0.543415,0.762784,0.779047,0.613684,0.309529,0.470878,0.0623991,0.0230742,0.00024128,0.841341,0.19814,0.741207,0.806113,0.297853,0.312664,0.635116,0.609711,0.838895,0.707916,0.0690767,0.766727,0.538375,0.574598,0.96492,0.973251,0.827425,0.0355571,0.257577,0.987013,0.0703793,0.29513,0.799298,0.908303,0.191531,0.723466,0.970842,0.424632,0.0258532,0.736501,0.0183232,0.330407,0.859258,0.390258,0.651086,0.815679,0.915415,0.211322,0.514136,0.900534,0.772805,0.553643,0.0551403,0.448307,0.0846381,0.755844,0.931088,0.000152528,0.267165,0.568089,0.362544,0.43522,0.641507,0.698888,0.431357,0.258133,0.412716,0.29246,0.685257,0.865486,0.121543,0.887798,0.895995,0.850833,0.0448996,0.791091,0.359393,0.739431,0.226778,0.695136,0.573601,0.260701,0.266201,0.416152,0.869758,0.981447,0.877764,0.330291,0.610729,0.0642481,0.229577,0.759628,0.736052,0.96352,0.326828,0.941369,0.9323,0.0310231,0.790389,0.813285,0.0403222,0.178647,0.549276,0.0278102,0.755214,0.0649239,0.29423,0.0972181,0.952413,0.156591,0.148467,0.936173,0.00866938,0.814941,0.2383,0.277559,0.0887669,0.592183,0.642353,0.7119,0.264099,0.446709,0.356618,0.622877,0.0134702,0.33182,0.0248899,0.735729,0.342919,0.873331,0.908174,0.252697,0.8199,0.556277,0.447767,0.497595,0.834765,0.946469,0.511423,0.139614,0.114688,0.392764,0.280721,0.807229,0.630505,0.891944,0.823514,0.750658,0.521118,0.962143,0.236649,0.409068,0.495834,0.501601,0.441417,0.320878,0.958284,0.45282,0.269796,0.425347,0.394708,0.313584,0.355883,0.616131,0.425127,0.65687,0.447507,0.773666,0.649459,0.117698,0.483112,0.952754,0.841974,0.520637,0.0164127,0.75262,0.0921116,0.571745,0.141093,0.323893,0.131603,0.351971,0.324177,0.577208,0.493329,0.564766,0.258293,0.0648491,0.973707,0.535272,0.496502,0.498582,0.190933,0.970251,0.335751,0.307726,0.621901,0.363583,0.865195,0.886204,0.497735,0.427444,0.906133,0.833541,0.746141,0.470471,0.892753,0.401128,0.666841,0.49443,0.447114,0.897318,0.987321,0.137384,0.281644,0.355734,0.444297,0.0368478,0.254198,0.52741,0.744573,0.0363914,0.627374,0.152524,0.342453,0.124783,0.630931,0.480865,0.280608,0.98111,0.584036,0.778125,0.518873,0.601425,0.803875,0.94135,0.634627,0.163139,0.252541,0.895846,0.816589,0.606436,0.554917,0.239063,0.0496776,0.543793,0.188739,0.944034,0.680088,0.598365,0.391847,0.300164,0.0471978,0.389866,0.684487,0.943921,0.762328,0.984753,0.365565,0.0637603,0.440693,0.684895,0.808348,0.281868,0.889375,0.784102,0.709271,0.620497,0.583109,0.610647,0.979346,0.181997,0.0375584,0.637409,0.178913,0.0299747,0.446316,0.575864,0.336406,0.0425108,0.0932148,0.884757,0.293881,0.33971,0.269229,0.895589,0.970172,0.0669529,0.907013,0.1665,0.909588,0.327215,0.817903,0.821667,0.764698,0.454094,0.0261678,0.086746,0.309186,0.843403,0.979622,0.263515,0.443739,0.469725,0.310969,0.411313,0.911599,0.573696,0.616314,0.104119,0.808077,0.145972,0.249705,0.248377,0.927726,0.441267,0.435394,0.268087,0.473666,0.537107,0.105716,0.978164,0.356999,0.425933,0.87668,0.650895,0.329455,0.343679,0.335624,0.256037,0.126219,0.938259,0.0886461,0.507256,0.671187,0.86211,0.3372,0.00629365,0.497996,0.68511,0.902754,0.212826,0.0542843,0.502763,0.324964,0.0659411,0.718311,0.893713,0.430907,0.9187,0.865624,0.665056,0.474845,0.722863,0.931413,0.66062,0.507173,0.829866,0.79969,0.0120327,0.231342,0.92812,0.926806,0.519726,0.528824,0.0196065,0.66626,0.241846,0.970798,0.231874,0.0357433,0.411508,0.270964,0.483991,0.604522,0.0414492,0.766501,0.712648,0.415505,0.751424,0.627044,0.847375,0.64846,0.29968,0.214786,0.429468,0.617944,0.0626854,0.260219,0.706042,0.338806,0.157026,0.254659,0.827751,0.946424,0.407924,0.76632,0.287786,0.57754,0.0714238,0.757323,0.819885,0.478705,0.550138,0.372719,0.613587,0.433068,0.721079,0.202121,0.903241,0.233175,0.762322,0.914326,0.700325,0.18263,0.313662,0.534769,0.796206,0.674774,0.786512,0.941006,0.661847,0.782986,0.177226,0.851775,0.512161,0.240516,0.410169,0.281516,0.565623,0.877383,0.125013,0.695951,0.622522,0.818521,0.588861,0.804856,0.393385,0.333049,0.81072,0.953756,0.581434,0.388104,0.936418,0.583655,0.123292,0.546982,0.276623,0.462381,0.206092,0.452523,0.755835,0.716389,0.641208,0.518569,0.636036,0.24021,0.591694,0.586668,0.634747,0.302676,0.811746,0.441289,0.41451,0.224457,0.90963,0.269008,0.533343,0.546225,0.0015685,0.0412237,0.935616,0.753351,0.126448,0.248778,0.0831921,0.575206,0.445995,0.799684,0.640567,0.734963,0.166264,0.993444,0.886757,0.134294,0.744718,0.722443,0.271048,0.138089,0.00524342,0.859973,0.352245,0.174875,0.0323296,0.609359,0.286771,0.584789,0.424972,0.351591,0.0231913,0.677794,0.271119,0.155852,0.461295,0.481358,0.112308,0.0378105,0.470231,0.505154,0.409218,0.374472,0.0826209,0.0485916,0.366816,0.0288283,0.41432,0.563039,0.0270884,0.567145,0.224968,0.692207,0.850719,0.988485,0.588618,0.236646,0.53182,0.431205,0.967852,0.91797,0.0269263,0.0768138,0.545066,0.429327,0.447296,0.472174,0.0771077,0.392677,0.0764459,0.168087,0.990219,0.215497,0.142811,0.273382,0.624496,0.180902,0.613887,0.886621,0.158118,0.478331,0.340649,0.255368,0.98252,0.415762,0.555871,0.842559,0.288418,0.588819,0.807768,0.533014,0.29257,0.244653,0.373665,0.11275,0.283458,0.448321,0.52911,0.871855,0.609503,0.280203,0.203101,0.987359,0.409661,0.50204,0.558331,0.211282,0.117763,0.171,0.966765,0.839863,0.104876,0.56881,0.640948,0.0274101,0.706006,0.534546,0.493555,0.598428,0.135183,0.237988,0.515578,0.103143,0.515464,0.451129,0.943616,0.440873,0.966462,0.201173,0.23291,0.149337,0.042954,0.192818,0.241866,0.500656,0.216331,0.150404,0.721638,0.0347589,0.980752,0.07942,0.586099,0.987193,0.970569,0.307413,0.851431,0.813415,0.919656,0.261894,0.770343,0.896107,0.464687,0.42512,0.458726,0.115404,0.00232738,0.617589,0.886052,0.574552,0.479589,0.995332,0.963987,0.0812364,0.828907,0.638361,0.764356,0.0500929,0.081369,0.427225,0.834248,0.42261,0.796583,0.543833,0.887115,0.564745,0.931925,0.809544,0.511877,0.39264,0.726482,0.76784,0.562959,0.980263,0.289216,0.251846,0.72743,0.280387,0.376024,0.270332,0.0437923,0.447159,0.455687,0.274366,0.848084,0.248262,0.456659,0.70785,0.60685,0.51514,0.816535,0.216561,0.0511308,0.240471,0.111373,0.0970433,0.853103,0.615294,0.00863963,0.918949,0.80506,0.303474,0.940356,0.285535,0.695061,0.625748,0.751661,0.775083,0.516661,0.387238,0.710256,0.933797,0.756968,0.42894,0.483659,0.836253,0.488803,0.192017,0.912677,0.679482,0.121208,0.192107,0.258239,0.215491,0.286426,0.465642,0.679816,0.0350309,0.00833052,0.263999,0.816552,0.0899687,0.155161,0.0543897,0.52912,0.617568,0.650683,0.279716,0.840656,0.849573,0.964007,0.816896,0.520048,0.774258,0.329458,0.0986919,0.662839,0.425901,0.972826,0.624113,0.42731,0.0293772,0.239248,0.0989082,0.962581,0.498788,0.839771,0.304546,0.000186682,0.337753,0.39157,0.810834,0.582324,0.193642,0.81464,0.882739,0.278816,0.985079,0.986423,0.506301,0.153822,0.897387,0.928612,0.182475,0.379969,0.486225,0.821868,0.237105,0.295645,0.319055,0.913975,0.137053,0.949225,0.575246,0.738593,0.909647,0.24659,0.319491,0.988339,0.784846,0.316964,0.658526,0.387994,0.811183,0.170485,0.339408,0.90571,0.0966544,0.0166152,0.555045,0.522369,0.0909523,0.721445,0.414153,0.422933,0.613334,0.609552,0.658105,0.764671,0.07597,0.539461,0.39163,0.0579634,0.27511,0.426392,0.195657,0.717189,0.418815,0.448581,0.640671,0.924492,0.167337,0.50823,0.560226,0.690241,0.251435,0.325167,0.582691,0.585102,0.168174,0.0453355,0.13907,0.907744,0.0653022,0.599047,0.088522,0.691458,0.737456,0.760089,0.381352,0.0294492,0.412789,0.0611981,0.624295,0.206087,0.521682,0.926077,0.618744,0.242168,0.754158,0.645795,0.478704,0.175274,0.0735376,0.744528,0.589308,0.586452,0.81064,0.537238,0.921496,0.873891,0.839267,0.632407,0.226779,0.299917,0.188415,0.473792,0.280141,|0.0263486,0.149731,0.152709,0.0680988,0.677111,0.182496,0.500735,0.0155283,0.60263,0.952777,0.766417,0.383336,0.499635,0.435898,0.281395,0.505127,0.819559,0.98537,0.931046,0.19718,0.202397,0.573932,0.0929439,0.664212,0.664946,0.404277,0.893887,0.161755,0.520447,0.680069,0.312282,0.00683486,0.926791,0.29247,0.665081,0.227022,0.745831,0.791122,0.274489,0.395315,0.839456,0.538373,0.0135057,0.867877,0.591628,0.974531,0.202553,0.397572,0.732476,0.825628,0.227456,0.123769,0.481768,0.259016,0.942745,0.608184,0.509429,0.90301,0.312559,0.277423,0.463129,0.0752773,0.749146,0.293592,0.446642,0.472952,0.980218,0.648145,0.603259,0.198254,0.637127,0.0330005,0.126399,0.859838,0.881817,0.939039,0.54634,0.767201,0.925883,0.203718,0.480311,0.68119,0.152914,0.365077,0.417472,0.859738,0.590809,0.495781,0.506299,0.525837,0.496935,0.430864,0.505117,0.881803,0.934973,0.682074,0.0566439,0.0154685,0.613589,0.240378,0.713251,0.158091,0.406617,0.976898,0.189052,0.473342,0.839692,0.981515,0.939077,0.424674,0.068081,0.604625,0.456472,0.795577,0.0395464,0.577905,0.196033,0.64336,0.183033,0.94272,0.337699,0.135644,0.731417,0.957134,0.186345,0.562628,0.154385,0.253961,0.493803,0.566411,0.638103,0.811214,0.00403392,0.442073,0.855313,0.098347,0.563107,0.83924,0.508262,0.910071,0.765773,0.151627,0.0758229,0.539748,0.321102,0.995664,0.804216,0.728646,0.856675,0.883998,0.0913673,0.0945951,0.0711673,0.368341,0.407958,0.00166678,0.127405,0.0630662,0.344989,0.138903,0.212377,0.968693,0.943755,0.239913,0.0275614,0.753523,0.227759,0.3523,0.351636,0.361451,0.920289,0.495375,0.640268,0.763132,0.479196,0.91523,0.977519,0.0415704,0.679753,0.556168,0.356901,0.391924,0.348778,0.0412634,0.722447,0.691063,0.172951,0.445066,0.961133,0.174925,0.153924,0.216369,0.80862,0.447427,0.290171,0.818738,0.0237186,0.136091,0.350016,0.993784,0.868569,0.89951,0.393005,0.163024,0.718071,0.982234,0.968484,0.669984,0.596068,0.579324,0.300558,0.704755,0.519472,0.0409258,0.497269,0.682076,0.846112,0.776886,0.950789,0.83211,0.888196,0.223956,0.243824,0.796808,0.23922,0.247493,0.1152,0.85434,0.609624,0.0573117,0.148267,0.925786,0.512377,0.914077,0.526978,0.906921,0.169988,0.110231,0.0623991,0.820943,0.813911,0.921303,0.130826,0.594939,0.705544,0.385047,0.949939,0.870597,0.0908815,0.807702,0.783081,0.690117,0.0490748,0.772817,0.627578,0.324266,0.843331,0.674663,0.697811,0.165635,0.651096,0.82593,0.114015,0.34154,0.277206,0.0727028,0.093089,0.836942,0.191291,0.00817788,0.246533,0.116449,0.768664,0.552373,0.728065,0.213973,0.995828,0.272362,0.286109,0.225071,0.896506,0.11737,0.127394,0.830263,0.920741,0.0551004,0.757979,0.697578,0.22936,0.726887,0.849013,0.600281,0.580953,0.150027,0.104342,0.0409213,0.610506,0.22209,0.589643,0.582502,0.151839,0.597451,0.252156,0.263475,0.384853,0.720388,0.117451,0.616911,0.0144393,0.962211,0.521842,0.521944,0.251175,0.827835,0.638085,0.713892,0.350661,0.476847,0.775969,0.254736,0.517951,0.157014,0.569886,0.123415,0.759849,0.348324,0.285719,0.181679,0.210019,0.556823,0.0646318,0.090266,0.794453,0.16134,0.255221,0.623542,0.978235,0.226961,0.441558,0.683417,0.723005,0.907709,0.0858479,0.991612,0.724355,0.00784868,0.805194,0.388776,0.926113,0.674683,0.0677564,0.35829,0.281824,0.268165,0.974376,0.518606,0.59443,0.624736,0.583263,0.59423,0.593267,0.58209,0.962077,0.117777,0.988623,0.367096,0.976824,0.544619,0.813516,0.910242,0.00146168,0.91191,0.543016,0.863071,0.462755,0.741922,0.0462038,0.0815606,0.297175,0.768679,0.752385,0.613782,0.671606,0.840572,0.728188,0.509405,0.663006,0.0563174,0.333092,0.533209,0.088038,0.154718,0.0711603,0.319379,0.378883,0.50613,0.294739,0.483796,0.403351,0.217667,0.603691,0.166009,0.342366,0.398666,0.725519,0.722402,0.687312,0.752388,0.320879,0.851223,0.17411,0.390014,0.496523,0.640097,0.51363,0.0217636,0.769382,0.988398,0.358003,0.0125022,0.404378,0.1769,0.504693,0.935629,0.768684,0.202782,0.969173,0.759089,0.97181,0.422268,0.590225,0.986919,0.120998,0.217403,0.761633,0.0821026,0.562782,0.851338,0.341302,0.882416,0.378724,0.759378,0.0891024,0.379428,0.265669,0.538181,0.237002,0.580096,0.612868,0.462195,0.853323,0.251296,0.953299,0.733127,0.642497,0.71187,0.258325,0.505317,0.931341,0.966613,0.428147,0.363478,0.700453,0.0181289,0.266578,0.22318,0.701051,0.367423,0.221797,0.550998,0.755457,0.053279,0.492275,0.365764,0.394713,0.244677,0.987275,0.545724,0.0417905,0.970632,0.299011,0.393127,0.724567,0.35658,0.787995,0.26192,0.407422,0.195429,0.86129,0.269018,0.857567,0.982037,0.612078,0.589549,0.890531,0.648795,0.976627,0.413838,0.627514,0.1743,0.625442,0.259719,0.427601,0.356823,0.783896,0.800087,0.682587,0.613949,0.0829933,0.662545,0.125758,0.378582,0.208366,0.641684,0.709825,0.472914,0.595695,0.370731,0.86617,0.0492312,0.734831,0.764086,0.411602,0.27763,0.27001,0.811395,0.163655,0.0762926,0.445104,0.420723,0.158543,0.59811,0.110481,0.429843,0.988007,0.387831,0.740485,0.221127,0.966769,0.994837,0.66677,0.638629,0.00280029,0.820816,0.261374,0.0437629,0.951829,0.146896,0.824155,0.829399,0.973541,0.99499,0.337949,0.153374,0.998686,0.920538,0.0916523,0.700433,0.00993145,0.699341,0.849946,0.178887,0.651663,0.892097,0.888808,0.861114,0.737488,0.299582,0.980191,0.645618,0.24256,0.109118,0.533045,0.242399,0.523178,0.446015,0.12287,0.0848758,0.997364,0.658392,0.90229,0.581192,0.816651,0.168638,0.264945,0.408768,0.10861,0.20319,0.492042,0.59319,0.830154,0.770239,0.334734,0.101818,0.322601,0.0598466,0.198524,0.202284,0.0420004,0.857477,0.561949,0.638314,0.893167,0.187818,0.951947,0.369776,0.302962,0.445453,0.0690067,0.588097,0.698476,0.929836,0.105438,0.757684,0.168448,0.384779,0.556471,0.953585,0.424272,0.364927,0.346945,0.756495,0.407773,0.334673,0.297747,0.0514321,0.029296,0.408744,0.739695,0.588838,0.720097,0.953547,0.741132,0.927218,0.451546,0.554484,0.541461,0.0653191,0.445083,0.691792,0.532063,0.894275,0.928555,0.618518,0.423592,0.781554,0.122658,0.773891,0.148112,0.552112,0.347695,0.184966,0.329704,0.0546581,0.10075,0.769497,0.699426,0.561367,0.0439823,0.922415,0.600558,0.424877,0.30454,0.166803,0.560894,0.867887,0.2875,0.242249,0.788707,0.974922,0.393904,0.497966,0.0271956,0.756204,0.923099,0.868736,0.320594,0.156953,0.632334,0.324874,0.0785115,0.735123,0.744994,0.71077,0.0165067,0.103618,0.390817,0.275427,0.97123,0.903671,0.745495,0.0236169,0.290592,0.311,0.538068,0.820761,0.585699,0.816909,0.685936,0.943664,0.0928474,0.581592,0.179006,0.943029,0.309389,0.947326,0.583198,0.423001,0.303868,0.0274432,0.743776,0.835141,0.154561,0.0849825,0.1172,0.753673,0.597512,0.48077,0.476165,0.138664,0.843032,0.301725,0.372698,0.677595,0.800649,0.702107,0.768643,0.916852,0.275518,0.288232,0.786482,0.157127,0.64479,0.846964,0.136201,0.287763,0.929122,0.241865,0.013541,0.240309,0.625433,0.978566,0.9099,0.54134,0.974618,0.375099,0.985439,0.0174441,0.545984,0.985898,0.343433,0.975409,0.0766503,0.13588,0.155706,0.523918,0.213801,0.0383927,0.990917,0.729838,0.130392,0.590705,0.113258,0.740542,0.47943,0.78056,0.428801,0.48621,0.308639,0.0821392,0.304706,0.67861,0.356663,0.761066,0.6846,0.86009,0.251738,0.298057,0.797951,0.815297,0.289674,0.467789,0.151396,0.973222,0.632998,0.86009,0.145144,0.529792,0.870593,0.417631,0.259479,0.404156,0.934127,0.931189,0.648215,0.619075,0.675659,0.853239,0.584345,0.160897,0.476301,0.144152,0.121653,0.288307,0.0171334,0.317018,0.988608,0.621967,0.814857,0.416796,0.560427,0.762022,0.0714459,0.578922,0.13106,0.498729,0.348893,0.629112,0.417693,0.344881,0.177429,0.214693,0.0564871,0.320104,0.178749,0.507015,0.704429,0.905672,0.309052,0.907416,0.733855,0.933613,0.316458,0.2217,0.441658,0.977749,0.862472,0.0268404,0.638089,0.264665,0.791841,0.884347,0.10536,0.753642,0.86609,0.337455,0.301235,0.881146,0.441553,0.722669,0.0341942,0.938795,0.735893,0.378639,0.643039,0.0759189,0.180561,0.896595,0.0489882,0.340424,0.178494,0.675889,0.352985,0.349721,0.651197,0.431105,0.496753,0.959974,0.632644,0.747497,0.382577,0.1695,0.664555,0.880081,0.516112,0.618051,0.721046,0.642124,0.720631,0.538579,0.539176,0.0177258,0.902427,0.0965247,0.59532,0.902383,0.547891,0.038805,0.594871,0.212047,0.783862,0.869007,0.57596,0.0457554,0.972847,0.77975,0.38295,0.964688,0.323098,0.121461,0.886694,0.656402,0.465001,0.575217,0.564114,0.987291,0.0196296,0.517206,0.687126,0.11797,0.898085,0.452975,0.626839,0.662939,0.374658,0.338927,0.0148127,0.448317,0.690818,0.263342,0.41742,0.554604,0.118542,0.162463,0.0623295,0.701967,0.220524,0.668656,0.326149,0.919957,0.265323,0.404876,0.805932,0.306605,0.466404,0.25275,0.0159887,0.313303,0.133493,0.556327,0.255473,0.228387,0.857638,0.293854,0.823321,0.824348,0.620385,0.537098,0.071869,0.432894,0.496808,0.869924,0.616578,0.252828,0.754263,0.434399,0.890947,0.178991,0.725997,0.552943,0.577303,0.191566,0.183461,0.6816,0.45863,0.677233,0.88265,0.357975,0.0131219,0.966905,0.347829,0.171664,0.712246,0.408856,0.956985,0.16327,0.53383,0.240102,0.232073,0.473492,0.184878,0.300108,0.649786,0.629363,0.503552,0.960058,0.166416,0.190247,0.96052,0.861977,0.706728,0.560476,0.258562,0.155119,0.665534,0.709146,0.00511307,0.989191,0.0918126,0.806959,|0.833248,0.637122,0.648596,0.561841,0.25678,0.53766,0.265904,0.137995,0.622983,0.23496,0.417074,0.420311,0.473492,0.154128,0.543974,0.506408,0.299508,0.775832,0.975745,0.322927,0.896559,0.364099,0.523926,0.92624,0.899654,0.279338,0.263158,0.247823,0.732772,0.580271,0.877751,0.235712,0.232505,0.839111,0.534894,0.418026,0.380851,0.857562,0.954353,0.31093,0.277199,0.64163,0.913127,0.328938,0.436338,0.333208,0.0713115,0.321112,0.565583,0.542571,0.986601,0.829842,0.955847,0.400516,0.888268,0.146023,0.83287,0.704964,0.691284,0.845066,0.941043,0.59083,0.561662,0.968257,0.315926,0.910588,0.373206,0.22684,0.0327101,0.2963,0.492493,0.237846,0.2468,0.268924,0.681014,0.766723,0.510146,0.54888,0.961799,0.50552,0.766689,0.904242,0.991757,0.00855839,0.00716746,0.0777489,0.505643,0.423537,0.447363,0.396305,0.203278,0.0441972,0.437638,0.0167239,0.99512,0.336671,0.687538,0.775439,0.398405,0.145223,0.49936,0.576161,0.452064,0.937366,0.082404,0.916977,0.183477,0.308194,0.54391,0.8537,0.870656,0.912636,0.0177187,0.237391,0.81961,0.38352,0.262501,0.431508,0.691154,0.0029552,0.42847,0.194634,0.345229,0.505773,0.201859,0.239943,0.973307,0.68552,0.0611952,0.925927,0.467962,0.441135,0.886505,0.206762,0.939107,0.0619404,0.394786,0.956379,0.833136,0.799192,0.0238379,0.282203,0.786116,0.977721,0.265016,0.231768,0.713819,0.380319,0.864316,0.687402,0.63026,0.537825,0.355652,0.421501,0.0321874,0.488937,0.562522,0.0940135,0.722384,0.4847,0.893236,0.00795215,0.924144,0.0375043,0.604735,0.309069,0.0667616,0.150021,0.975387,0.19168,0.342245,0.619249,0.195095,0.791198,0.0212767,0.284052,0.30033,0.0373068,0.525188,0.75223,0.48105,0.670733,0.786307,0.321101,0.203277,0.822812,0.320543,0.278788,0.0633349,0.984933,0.939748,0.582484,0.319322,0.2375,0.438711,0.385725,0.690448,0.495796,0.486476,0.973729,0.529791,0.18174,0.540032,0.984694,0.770827,0.239076,0.47744,0.866572,0.37547,0.366536,0.128416,0.853837,0.658181,0.263784,0.721322,0.927519,0.887396,0.213985,0.927143,0.364173,0.630996,0.245945,0.136696,0.37916,0.573941,0.429372,0.748959,0.102299,0.86394,0.194054,0.078069,0.83069,0.0884743,0.834585,0.847996,0.291161,0.937733,0.775173,0.926095,0.36848,0.235596,0.83063,0.205642,0.600204,0.450769,0.830661,0.0884473,0.542871,0.557363,0.784965,0.424812,0.0833762,0.522078,0.896928,0.222524,0.37985,0.13899,0.472501,0.169307,0.166446,0.0688876,0.835695,0.401505,0.403316,0.00720459,0.665604,0.33661,0.259572,0.275027,0.588558,0.317155,0.998015,0.831353,0.0775545,0.514565,0.966312,0.790057,0.15463,0.676443,0.10056,0.104609,0.296986,0.861903,0.132031,0.310564,0.74969,0.739661,0.719206,0.233253,0.797662,0.808758,0.787117,0.617218,0.432472,0.703408,0.684078,0.665905,0.418378,0.220513,0.253619,0.98903,0.903186,0.205746,0.351039,0.754666,0.796025,0.902556,0.607728,0.109768,0.85941,0.19077,0.886955,0.892944,0.139334,0.945627,0.227463,0.596021,0.571354,0.992101,0.493306,0.100923,0.0544472,0.729857,0.113799,0.123063,0.306809,0.451401,0.873003,0.682951,0.53403,0.185524,0.397879,0.535965,0.366963,0.847411,0.0783719,0.706101,0.814248,0.783787,0.993722,0.0159075,0.127599,0.473216,0.861225,0.873174,0.0961823,0.530877,0.647416,0.195176,0.0422691,0.010901,0.27866,0.198725,0.518249,0.610404,0.879313,0.626005,0.548902,0.322691,0.279137,0.0388879,0.644857,0.094207,0.00807041,0.328025,0.279497,0.507166,0.703482,0.278184,0.952337,0.032338,0.282408,0.878549,0.280453,0.815421,0.61604,0.766058,0.977786,0.141202,0.243322,0.13351,0.0256183,0.53361,0.680936,0.637875,0.814569,0.0114726,0.286434,0.802488,0.586065,0.637943,0.420464,0.0370611,0.637917,0.877773,0.452496,0.779701,0.925989,0.300251,0.0972503,0.133055,0.0248258,0.517018,0.301712,0.980373,0.622374,0.356427,0.188061,0.279792,0.519642,0.613094,0.772103,0.555553,0.909284,0.120118,0.936694,0.222635,0.392958,0.130402,0.858148,0.512557,0.377237,0.612339,0.502999,0.857201,0.138252,0.726332,0.802111,0.223261,0.995485,0.795178,0.274275,0.621074,0.564475,0.640579,0.155039,0.159892,0.143066,0.950756,0.317301,0.0842413,0.705491,0.261287,0.851679,0.930351,0.135404,0.755881,0.303066,0.598677,0.191408,0.570551,0.256875,0.796462,0.145384,0.428018,0.851835,0.503824,0.246224,0.499436,0.311002,0.790057,0.886209,0.51845,0.487658,0.131677,0.629631,0.361908,0.873254,0.708129,0.0722985,0.701684,0.939328,0.502679,0.713847,0.209696,0.765717,0.908676,0.802882,0.607975,0.59605,0.415325,0.801058,0.310948,0.7667,0.28275,0.752827,0.817679,0.470069,0.493427,0.383157,0.448542,0.754345,0.703566,0.469452,0.423568,0.194582,0.831934,0.303752,0.610492,0.613546,0.62394,0.560834,0.172589,0.678526,0.796872,0.909978,0.0910785,0.170332,0.790048,0.258639,0.998503,0.960289,0.617294,0.124622,0.986169,0.0413853,0.487177,0.698022,0.137827,0.697253,0.778484,0.779303,0.0293944,0.9156,0.592781,0.88387,0.212951,0.511054,0.0537696,0.742418,0.178636,0.9217,0.825969,0.563995,0.598956,0.826918,0.128006,0.533907,0.954337,0.966759,0.233756,0.074609,0.645907,0.88464,0.806729,0.485886,0.341295,0.721953,0.694205,0.266156,0.461756,0.503705,0.287689,0.754759,0.596066,0.191281,0.794285,0.937121,0.725023,0.620138,0.765663,0.662585,0.474918,0.588295,0.0357273,0.383897,0.905663,0.942375,0.734899,0.31028,0.460642,0.163042,0.803529,0.634866,0.773657,0.308838,0.750042,0.190024,0.951772,0.203108,0.125017,0.235231,0.463166,0.115064,0.748661,0.59827,0.62729,0.990853,0.556266,0.417653,0.634502,0.92506,0.781478,0.163652,0.396788,0.90754,0.195286,0.0604242,0.00872546,0.15124,0.0455401,0.648304,0.658525,0.228901,0.895276,0.118558,0.780431,0.120184,0.449713,0.888173,0.643484,0.661862,0.563256,0.449476,0.0490409,0.3118,0.508151,0.495918,0.850174,0.0991521,0.786507,0.8103,0.754057,0.315454,0.58729,0.258318,0.168296,0.559866,0.956741,0.726726,0.348928,0.481661,0.976097,0.355192,0.666552,0.97431,0.962813,0.819986,0.199317,0.909314,0.317715,0.136984,0.370203,0.315948,0.52709,0.722953,0.0236065,0.36085,0.672999,0.57731,0.77763,0.0657253,0.280067,0.990764,0.482441,0.414011,0.834845,0.522052,0.394689,0.45704,0.337198,0.545115,0.887232,0.801812,0.504638,0.152078,0.632454,0.655696,0.551702,0.370246,0.732539,0.691007,0.463173,0.705464,0.515719,0.444305,0.206696,0.935597,0.299031,0.187787,0.283963,0.942743,0.0701436,0.558393,0.17406,0.261667,0.427885,0.933864,0.328211,0.0614257,0.399494,0.474645,0.370955,0.138304,0.686611,0.224791,0.868134,0.751274,0.0210401,0.624307,0.689958,0.269478,0.496909,0.118473,0.437405,0.876207,0.298299,0.513078,0.642347,0.200991,0.747308,0.243157,0.836699,0.0741107,0.398332,0.00106704,0.318047,0.882767,0.49304,0.291306,0.0430676,0.133082,0.948146,0.984038,0.909269,0.307674,0.221893,0.0350052,0.712359,0.113672,0.933186,0.249799,0.776012,0.0400923,0.174211,0.0213482,0.384808,0.396325,0.269558,0.356022,0.822756,0.888388,0.681237,0.311254,0.700364,0.0953128,0.585145,0.360942,0.0707251,0.322843,0.457326,0.778653,0.578402,0.872374,0.572924,0.330724,0.908628,0.862518,0.691873,0.494008,0.543991,0.59868,0.914951,0.487612,0.856958,0.567298,0.828934,0.00436813,0.120184,0.834359,0.62779,0.656068,0.942537,0.159252,0.464663,0.629212,0.532533,0.307438,0.527709,0.0671751,0.222466,0.160399,0.913943,0.173826,0.626643,0.814013,0.812169,0.0540503,0.129841,0.678214,0.334472,0.387516,0.929205,0.663269,0.750996,0.156754,0.782567,0.95365,0.726979,0.151801,0.382839,0.383328,0.785587,0.312999,0.600173,0.654812,0.933006,0.439611,0.16646,0.866603,0.708566,0.453798,0.742995,0.738945,0.850375,0.869357,0.582246,0.693785,0.278496,0.44647,0.342481,0.541842,0.0208893,0.811507,0.543241,0.0247404,0.0783029,0.336235,0.738012,0.864307,0.528905,0.551814,0.775462,0.176365,0.520306,0.355714,0.954372,0.497619,0.244689,0.225614,0.180848,0.14106,0.0185535,0.290313,0.996566,0.176972,0.117468,0.342628,0.21166,0.540405,0.476107,0.451706,0.191935,0.0176308,0.357789,0.817133,0.592999,0.374651,0.427904,0.72816,0.962477,0.891989,0.667636,0.799737,0.950264,0.246945,0.686777,0.934032,0.540328,0.319916,0.0332439,0.665762,0.537208,0.474197,0.807662,0.987618,0.43031,0.958147,0.96708,0.742127,0.528563,0.74028,0.260251,0.0897461,0.219344,0.933015,0.511995,0.378966,0.449317,0.337893,0.242444,0.0926231,0.252668,0.403635,0.274069,0.394244,0.792977,0.531395,0.96352,0.513128,0.317731,0.963875,0.804268,0.159851,0.280925,0.359431,0.746807,0.196986,0.034833,0.461232,0.239641,0.158272,0.581743,0.767049,0.48005,0.44679,0.813515,0.158388,0.0673818,0.399454,0.682169,0.786549,0.0520456,0.837257,0.492771,0.895121,0.416096,0.222398,0.962079,0.55722,0.108214,0.582898,0.709364,0.471242,0.465345,0.615028,0.0509425,0.405541,0.0680656,0.59026,0.0300677,0.47811,0.026013,0.103845,0.191369,0.45544,0.281068,0.184222,0.300304,0.261162,0.716999,0.868612,0.880002,0.385828,0.806786,0.131199,0.688154,0.117517,0.311478,0.388256,0.702477,0.376752,0.834249,0.982586,0.66801,0.559839,0.759205,0.0460519,0.0778905,0.312063,0.148454,0.685209,0.226479,0.691481,0.62884,0.154302,0.911092,0.419875,0.765979,0.768439,0.378013,0.792289,0.982402,0.365072,0.702197,0.793994,0.22639,0.722067,0.819471,0.347665,0.271107,0.419843,0.228896,0.737123,0.353205,0.19941,0.82108,0.112999,0.456437,0.0291197,|0.0349215,0.108023,0.439913,0.888055,0.244081,0.488432,0.748998,0.535728,0.328966,0.578294,0.168439,0.284426,0.381581,0.465645,0.906732,0.371344,0.350143,0.597848,0.769122,0.443287,0.0913332,0.129294,0.204983,0.221527,0.649587,0.435455,0.737049,0.111605,0.302796,0.438194,0.912723,0.0897323,0.494016,0.34406,0.285423,0.570159,0.311485,0.0355145,0.557497,0.471362,0.28833,0.206791,0.548264,0.98578,0.460835,0.217139,0.686424,0.344931,0.82745,0.804646,0.900892,0.806221,0.397202,0.127688,0.218788,0.389462,0.204433,0.898116,0.107587,0.723483,0.0365301,0.573739,0.398701,0.331463,0.117249,0.698499,0.219527,0.594419,0.471994,0.489562,0.645716,0.335251,0.148274,0.0349641,0.0807197,0.228071,0.169575,0.327285,0.462013,0.611133,0.0553575,0.575299,0.397995,0.939505,0.310397,0.644263,0.922326,0.15748,0.893741,0.412194,0.651955,0.0784819,0.0431356,0.220574,0.426558,0.322946,0.114888,0.891164,0.430579,0.529573,0.796255,0.377733,0.884568,0.0453128,0.16687,0.160081,0.578263,0.503661,0.928573,0.767675,0.163147,0.880985,0.716186,0.981785,0.307975,0.665253,0.166894,0.481479,0.131731,0.946147,0.369185,0.0130345,0.795559,0.883405,0.367184,0.0300843,0.691127,0.655292,0.593794,0.805344,0.153995,0.197676,0.00781864,0.145704,0.65175,0.539855,0.474829,0.66907,0.524254,0.618886,0.400802,0.862221,0.552814,0.465248,0.155142,0.659547,0.985412,0.68373,0.358107,0.804008,0.716767,0.278017,0.484762,0.855266,0.667852,0.0835608,0.402944,0.504609,0.0602401,0.392149,0.258483,0.581264,0.086244,0.0242567,0.586909,0.456635,0.989569,0.143129,0.434502,0.655918,0.0107251,0.731675,0.347888,0.132078,0.562369,0.694417,0.88092,0.627028,0.682159,0.69293,0.558282,0.619226,0.839423,0.65315,0.366819,0.524494,0.94323,0.0332565,0.587442,0.0858734,0.851379,0.435929,0.312777,0.161332,0.586513,0.339077,0.615108,0.0733739,0.809518,0.420211,0.779956,0.156179,0.507394,0.774967,0.506951,0.878313,0.896998,0.5661,0.899212,0.519404,0.789366,0.857524,0.494304,0.590093,0.976458,0.325408,0.579005,0.570131,0.239261,0.569011,0.490969,0.109929,0.575657,0.177151,0.905981,0.983757,0.78734,0.429417,0.724556,0.652294,0.845878,0.794271,0.757879,0.751394,0.152653,0.959127,0.545199,0.839931,0.759422,0.369272,0.773188,0.698503,0.672333,0.831667,0.95412,0.857591,0.516264,0.344474,0.904101,0.533485,0.921424,0.141026,0.155473,0.957886,0.33782,0.381311,0.597023,0.483066,0.876167,0.590192,0.971013,0.801984,0.667708,0.882216,0.554743,0.71241,0.169716,0.435623,0.184028,0.26787,0.130043,0.933359,0.379194,0.464633,0.770461,0.288303,0.362139,0.64351,0.995987,0.342851,0.724518,0.445782,0.401343,0.458832,0.860727,0.975707,0.323557,0.987601,0.745211,0.00415188,0.0485815,0.741106,0.449793,0.279233,0.298872,0.143984,0.141602,0.411543,0.455778,0.107656,0.82711,0.559249,0.81705,0.220736,0.169159,0.942559,0.454827,0.0647131,0.608783,0.740782,0.385401,0.893789,0.667154,0.552514,0.929613,0.483324,0.67648,0.585928,0.257083,0.385481,0.306252,0.449309,0.737109,0.678245,0.773973,0.830217,0.0899851,0.054931,0.522556,0.202386,0.168288,0.59761,0.269603,0.284869,0.75841,0.565634,0.25838,0.915142,0.952521,0.182656,0.697278,0.876145,0.860779,0.147089,0.693328,0.565381,0.0164109,0.744811,0.236479,0.863158,0.704374,0.677664,0.776335,0.0188699,0.320006,0.174883,0.170123,0.131587,0.24179,0.967456,0.534302,0.82931,0.144442,0.948626,0.90152,0.469518,0.610653,0.193482,0.298812,0.744429,0.504675,0.564377,0.920959,0.447113,0.061944,0.393674,0.068041,0.917525,0.791189,0.630654,0.901471,0.977877,0.675387,0.495875,0.509731,0.866434,0.300487,0.950938,0.667339,0.0501449,0.452005,0.0849743,0.617314,0.37078,0.077342,0.613664,0.355031,0.100837,0.11102,0.232659,0.209914,0.627155,0.607321,0.289153,0.0234902,0.18097,0.353245,0.354924,0.215723,0.324059,0.395212,0.830886,0.450779,0.54803,0.955841,0.82001,0.263024,0.637875,0.807271,0.00458473,0.0899628,0.835503,0.865347,0.239933,0.057175,0.143063,0.99509,0.425727,0.83046,0.506662,0.267148,0.359067,0.279723,0.721499,0.996117,0.510099,0.215929,0.614538,0.511681,0.132979,0.831303,0.151375,0.994648,0.820576,0.208046,0.778246,0.0903372,0.454515,0.0593672,0.132554,0.184693,0.171211,0.54893,0.368226,0.0926433,0.157541,0.788965,0.0237859,0.178809,0.865895,0.847116,0.861572,0.654315,0.303087,0.844419,0.199361,0.494961,0.0890403,0.0034861,0.616746,0.194957,0.624023,0.344159,0.150914,0.865845,0.748132,0.553036,0.53516,0.087241,0.455472,0.210535,0.765444,0.0433766,0.892398,0.502992,0.501957,0.417769,0.810573,0.51961,0.702815,0.61523,0.133352,0.790675,0.37343,0.401478,0.239084,0.878971,0.749127,0.414122,0.766064,0.228215,0.562164,0.565117,0.967588,0.309815,0.559227,0.251324,0.949415,0.739594,0.0404773,0.156302,0.536629,0.681272,0.378512,0.452426,0.51545,0.825913,0.475182,0.307586,0.524986,0.709208,0.631291,0.626631,0.411709,0.545914,0.687746,0.928945,0.88311,0.596709,0.734183,0.809156,0.913658,0.0742492,0.549083,0.822014,0.220087,0.257409,0.358224,0.770209,0.92025,0.150068,0.779211,0.999123,0.617801,0.572772,0.301986,0.918559,0.830163,0.964497,0.1293,0.268642,0.197177,0.292933,0.715735,0.986321,0.893124,0.547805,0.442382,0.624464,0.772391,0.582841,0.113679,0.52841,0.205673,0.0371411,0.0853513,0.527644,0.351819,0.88356,0.751878,0.874231,0.672363,0.343212,0.405846,0.283266,0.717769,0.81638,0.462286,0.622107,0.682741,0.00911397,0.830499,0.932669,0.94455,0.595225,0.0867031,0.141384,0.514305,0.98887,0.830311,0.98185,0.163406,0.541453,0.0993205,0.762929,0.931873,0.109823,0.531697,0.652847,0.409043,0.0647067,0.715802,0.435812,0.274864,0.467273,0.217041,0.972394,0.963788,0.834489,0.302965,0.515762,0.857718,0.130877,0.620692,0.473463,0.197113,0.820755,0.780859,0.974187,0.740501,0.257589,0.587561,0.120936,0.725269,0.0918476,0.82645,0.168971,0.442543,0.793711,0.848533,0.0870627,0.563937,0.199559,0.422017,0.488741,0.146492,0.378655,0.606168,0.104666,0.626224,0.588927,0.412559,0.291648,0.8076,0.909007,0.441739,0.857846,0.175609,0.982709,0.880219,0.0760438,0.489614,0.736189,0.786991,0.582405,0.00988179,0.231093,0.85025,0.579833,0.4394,0.540232,0.989204,0.199984,0.582954,0.116064,0.281371,0.0732096,0.598518,0.554972,0.331636,0.95044,0.0480307,0.62493,0.189279,0.0460026,0.572464,0.68961,0.222044,0.488966,0.31452,0.327022,0.0146616,0.291115,0.333746,0.436098,0.92105,0.56723,0.313932,0.964959,0.433609,0.467681,0.194701,0.203282,0.658767,0.716838,0.438119,0.858782,0.610956,0.0676328,0.126087,0.164027,0.850242,0.169531,0.802111,0.871289,0.214612,0.88504,0.797531,0.322284,0.199698,0.171818,0.127794,0.285574,0.63173,0.636837,0.918092,0.220068,0.998388,0.237184,0.514249,0.112079,0.931213,0.0594898,0.144153,0.507492,0.901202,0.494871,0.192945,0.706493,0.198015,0.956119,0.430683,0.326848,0.275182,0.883193,0.288217,0.23856,0.772961,0.0469013,0.917012,0.457311,0.720378,0.521233,0.480725,0.515905,0.350865,0.45779,0.422109,0.756837,0.439843,0.321477,0.694473,0.314301,0.223667,0.990635,0.792868,0.904134,0.987591,0.197523,0.739893,0.972331,0.0187842,0.448466,0.221197,0.220116,0.585906,0.260642,0.98678,0.184077,0.131729,0.399471,0.398316,0.170185,0.498345,0.772177,0.64216,0.0481908,0.00817287,0.0439122,0.139848,0.403698,0.0659447,0.0288802,0.0781438,0.458682,0.340493,0.315541,0.836101,0.177996,0.77548,0.112128,0.693233,0.676514,0.788826,0.68797,0.74849,0.458893,0.318393,0.269345,0.7209,0.888336,0.353731,0.0605649,0.694518,0.882495,0.00790989,0.539097,0.983123,0.475897,0.312113,0.155535,0.683946,0.212902,0.274629,0.611763,0.351632,0.678722,0.882779,0.76436,0.973155,0.986402,0.565653,0.463623,0.404833,0.956838,0.887239,0.406927,0.505532,0.758835,0.602634,0.981108,0.224983,0.257211,0.453738,0.739428,0.525315,0.887406,0.505655,0.904531,0.76711,0.594901,0.578784,0.0136552,0.146422,0.919264,0.470628,0.227182,0.337564,0.500186,0.942644,0.316986,0.872038,0.92725,0.302194,0.277254,0.330232,0.15371,0.259568,0.660066,0.34821,0.717165,0.60779,0.104209,0.452258,0.265926,0.995286,0.435191,0.114533,0.45422,0.948496,0.318355,0.466126,0.438098,0.134435,0.60378,0.400179,0.0355709,0.230066,0.0322628,0.227127,0.0398512,0.940135,0.962888,0.0460466,0.10737,0.678464,0.974579,0.65697,0.781388,0.0672935,0.527711,0.16287,0.250743,0.69455,0.398512,0.696631,0.401133,0.838461,0.52375,0.915132,0.252292,0.269853,0.659377,0.378722,0.862443,0.561153,0.717997,0.978448,0.531593,0.586546,0.312626,0.0441718,0.878526,0.64706,0.782436,0.433718,0.983356,0.0554236,0.25593,0.872362,0.882814,0.640099,0.195272,0.0543722,0.769135,0.300594,0.381021,0.521378,0.570306,0.563513,0.266001,0.363132,0.740583,0.0298364,0.960425,0.454832,0.0765646,0.632354,0.937273,0.763622,0.135519,0.432673,0.81648,0.574833,0.00570792,0.519958,0.849452,0.585018,0.648594,0.303443,0.0577763,0.167738,0.180298,0.428693,0.311559,0.107556,0.403721,0.859611,0.81472,0.0203594,0.00438911,0.0506118,0.490928,0.681918,0.492687,0.189294,0.0536062,0.302301,0.274694,0.739559,0.622182,0.587733,0.208513,0.575399,0.47496,0.168124,0.302237,0.006392,0.428836,0.605265,0.392814,0.254608,0.411472,0.902152,0.0385948,0.260747,0.505337,0.315485,0.323574,0.518751,0.353104,0.0203625,0.047169,0.434864,0.248232,0.273965,0.86891,0.030265,0.768027,0.852898,|0.409041,0.360833,0.758394,0.0705247,0.54305,0.8697,0.799411,0.222865,0.559037,0.41677,0.314111,0.653481,0.618738,0.94975,0.295439,0.982626,0.195321,0.431452,0.593867,0.828729,0.828693,0.946293,0.354501,0.845303,0.467479,0.803165,0.739936,0.0803775,0.109034,0.0853815,0.452585,0.647793,0.767894,0.595634,0.382544,0.745005,0.615745,0.363745,0.0866604,0.712691,0.513514,0.725588,0.909414,0.130974,0.967284,0.438895,0.764186,0.826746,0.076584,0.737408,0.445467,0.901785,0.621291,0.715031,0.61388,0.204815,0.300958,0.929067,0.841466,0.411142,0.107588,0.999657,0.624429,0.4283,0.867836,0.932761,0.317946,0.417529,0.743238,0.114422,0.418182,0.044625,0.0426553,0.209985,0.374875,0.800056,0.230575,0.980786,0.661428,0.411336,0.505893,0.648896,0.588657,0.0943042,0.619853,0.108885,0.179633,0.563429,0.109373,0.475717,0.986913,0.382076,0.252286,0.917994,0.660263,0.746306,0.568179,0.76744,0.765916,0.580571,0.637936,0.6442,0.320187,0.653397,0.687387,0.540079,0.14509,0.510371,0.709601,0.608468,0.270136,0.360653,0.413488,0.0297026,0.378621,0.0802532,0.984122,0.203995,0.821346,0.676037,0.998234,0.413896,0.182668,0.517223,0.903037,0.276271,0.595082,0.133664,0.982486,0.919121,0.934196,0.495321,0.556302,0.184824,0.973479,0.227155,0.243062,0.1169,0.550231,0.252705,0.753605,0.366593,0.343018,0.346172,0.252678,0.621058,0.471877,0.206635,0.836129,0.480206,0.391947,0.172281,0.903786,0.897893,0.275073,0.497061,0.989477,0.0551735,0.866893,0.974838,0.637539,0.063012,0.484352,0.385612,0.868254,0.247665,0.982596,0.246593,0.299258,0.616087,0.120649,0.813977,0.847798,0.851513,0.861324,0.531316,0.420174,0.254821,0.351857,0.246401,0.0109566,0.423706,0.774584,0.290086,0.888531,0.929807,0.462906,0.230779,0.316144,0.75903,0.686805,0.0401411,0.312835,0.513581,0.511098,0.584639,0.730151,0.823749,0.173181,0.133687,0.490994,0.865088,0.634169,0.284096,0.808094,0.929407,0.179695,0.0202846,0.596498,0.147901,0.557963,0.356477,0.250392,0.215082,0.606498,0.108279,0.38597,0.87983,0.890339,0.728147,0.785838,0.966012,0.405061,0.373858,0.893296,0.976755,0.336633,0.50129,0.381702,0.660906,0.590091,0.825326,0.579721,0.247861,0.710351,0.589629,0.349847,0.107341,0.868156,0.668885,0.244314,0.477735,0.0640126,0.667017,0.875613,0.435074,0.861847,0.988931,0.0426325,0.00724429,0.942373,0.847237,0.236886,0.402483,0.760387,0.240479,0.100271,0.651444,0.745805,0.746145,0.562525,0.229605,0.950023,0.270842,0.115321,0.361353,0.834651,0.72866,0.559026,0.195516,0.933457,0.630422,0.62653,0.381769,0.581385,0.320141,0.623593,0.722304,0.713648,0.221883,0.0653294,0.74035,0.964531,0.252983,0.130405,0.0996953,0.140833,0.169656,0.252325,0.0673078,0.0341202,0.5261,0.958067,0.114906,0.836785,0.0322826,0.441462,0.612671,0.39032,0.53254,0.599219,0.483834,0.666677,0.221868,0.306564,0.110029,0.196052,0.21223,0.276459,0.12111,0.127664,0.0621729,0.270687,0.382699,0.875921,0.035291,0.946085,0.589852,0.783526,0.143822,0.458534,0.739198,0.0341804,0.0938456,0.591703,0.457318,0.541547,0.531312,0.954395,0.558519,0.848635,0.786011,0.940124,0.350839,0.365326,0.923555,0.660918,0.94916,0.845472,0.20238,0.435815,0.32242,0.371329,0.869352,0.889675,0.382409,0.565353,0.151251,0.203833,0.553266,0.084169,0.703244,0.45703,0.914579,0.151407,0.6776,0.559837,0.454286,0.488062,0.0770712,0.357892,0.52512,0.569639,0.142978,0.578633,0.0631987,0.0568713,0.737461,0.209952,0.796024,0.637309,0.688315,0.131274,0.613367,0.817818,0.661776,0.620227,0.599954,0.601403,0.781406,0.602537,0.971873,0.00671905,0.177945,0.0868094,0.147136,0.172699,0.20372,0.183875,0.965049,0.198751,0.379305,0.712928,0.586035,0.753319,0.951391,0.700239,0.405663,0.799929,0.238707,0.159763,0.276615,0.695129,0.90029,0.783135,0.927873,0.643584,0.51777,0.0963081,0.607059,0.826038,0.578518,0.361065,0.3682,0.070222,0.665912,0.474497,0.906628,0.615057,0.92464,0.281324,0.715721,0.102908,0.0652412,0.95393,0.524935,0.695786,0.913196,0.862948,0.648711,0.945719,0.679734,0.984598,0.569259,0.440529,0.65328,0.956697,0.273953,0.894669,0.746282,0.979502,0.535393,0.987316,0.137409,0.564517,0.362088,0.950822,0.649099,0.257387,0.252064,0.888949,0.725532,0.0124905,0.882044,0.465476,0.732938,0.430175,0.506558,0.36973,0.276632,0.3472,0.821656,0.987587,0.877978,0.211156,0.889545,0.768748,0.631513,0.336715,0.811466,0.295604,0.868222,0.00786555,0.834428,0.236872,0.813448,0.308764,0.569146,0.721373,0.394263,0.203778,0.283305,0.962416,0.942406,0.941941,0.116218,0.0285719,0.421849,0.857418,0.221219,0.761754,0.635548,0.537703,0.282637,0.713626,0.391924,0.273703,0.611775,0.917856,0.80589,0.86545,0.101722,0.503402,0.761535,0.829907,0.163375,0.51284,0.912081,0.49658,0.804566,0.749329,0.348438,0.0746759,0.891492,0.652794,0.375575,0.546655,0.115192,0.0227272,0.319022,0.987444,0.686064,0.823709,0.883915,0.55085,0.462136,0.73352,0.655962,0.385543,0.326191,0.335822,0.652328,0.483592,0.715126,0.922313,0.0721234,0.760681,0.502039,0.211982,0.475516,0.753045,0.555624,0.457125,0.784918,0.503581,0.788525,0.234837,0.859823,0.933445,0.0123087,0.579287,0.359264,0.839002,0.261861,0.524691,0.378272,0.842393,0.927046,0.263327,0.630643,0.621105,0.246072,0.574871,0.01687,0.734281,0.448428,0.179345,0.0166495,0.705425,0.901752,0.580384,0.809032,0.224158,0.994412,0.25046,0.634955,0.655887,0.555221,0.0195006,0.955808,0.101786,0.381414,0.99516,0.935882,0.130344,0.911838,0.237487,0.633359,0.666574,0.194268,0.107759,0.655751,0.762294,0.153985,0.662734,0.857849,0.920614,0.633614,0.628666,0.911849,0.31543,0.171447,0.678339,0.553603,0.980749,0.811545,0.253443,0.339371,0.641407,0.775414,0.666647,0.479387,0.828183,0.189364,0.705635,0.571277,0.754954,0.0101824,0.363376,0.821811,0.433556,0.0804392,0.675348,0.580895,0.339135,0.0813297,0.158559,0.237714,0.0293275,0.444971,0.495865,0.796539,0.0825296,0.910003,0.935196,0.0311281,0.257381,0.916192,0.661516,0.416294,0.121276,0.0910483,0.249032,0.39722,0.272362,0.484336,0.499371,0.0461314,0.832486,0.99639,0.472745,0.110809,0.212731,0.0261328,0.828342,0.923794,0.0411642,0.450454,0.0398669,0.349501,0.884622,0.448614,0.920707,0.551398,0.389996,0.238574,0.997163,0.968928,0.947468,0.404297,0.0976863,0.81445,0.73518,0.0417329,0.164682,0.881317,0.0802369,0.251356,0.414083,0.654333,0.962713,0.341485,0.239938,0.547486,0.411051,0.81879,0.0100387,0.944174,0.241318,0.348495,0.365681,0.757011,0.543002,0.997491,0.148619,0.951748,0.886366,0.355639,0.0442184,0.881748,0.451373,0.0276728,0.958342,0.00398391,0.931991,0.309357,0.75812,0.856288,0.0181695,0.263948,0.393414,0.327843,0.616653,0.615916,0.783197,0.0664665,0.299928,0.152887,0.483017,0.714428,0.31358,0.619479,0.409721,0.612585,0.159462,0.775291,0.0227155,0.117496,0.669397,0.0353872,0.991036,0.572233,0.434007,0.690055,0.06315,0.171389,0.550496,0.740534,0.546089,0.157663,0.992505,0.131856,0.21433,0.617488,0.878817,0.991842,0.331621,0.282911,0.462515,0.695402,0.255695,0.0438886,0.407987,0.0630616,0.741936,0.932277,0.636913,0.239759,0.0761946,0.594438,0.458482,0.676236,0.283401,0.586293,0.402908,0.916161,0.0949675,0.0657606,0.898021,0.466043,0.101472,0.229505,0.021096,0.808931,0.452813,0.381465,0.0584651,0.346777,0.37075,0.0574963,0.376676,0.929724,0.33669,0.714677,0.676208,0.882955,0.779353,0.204337,0.628501,0.239908,0.688011,0.898244,0.31658,0.0795783,0.266209,0.890015,0.0504154,0.708049,0.528089,0.590773,0.0767073,0.98248,0.986153,0.470522,0.259732,0.709145,0.141865,0.947068,0.00492799,0.996346,0.750866,0.205951,0.291687,0.216015,0.786964,0.734087,0.295049,0.0353305,0.504017,0.357792,0.453296,0.445208,0.527239,0.976749,0.778867,0.180434,0.769487,0.833659,0.829,0.568232,0.290753,0.682911,0.186004,0.163592,0.334178,0.908786,0.599495,0.385844,0.187216,0.585872,0.501913,0.722455,0.61192,0.20917,0.268312,0.0230998,0.739971,0.229058,0.725091,0.123172,0.720676,0.971222,0.526763,0.0783111,0.592446,0.962168,0.490368,0.528731,0.478208,0.909301,0.188406,0.928804,0.361665,0.398257,0.883469,0.248477,0.0957511,0.446238,0.730342,0.0379012,0.623468,0.366701,0.0181829,0.462173,0.17159,0.208864,0.355765,0.125208,0.0912027,0.809838,0.348799,0.862185,0.8063,0.955856,0.194227,0.889065,0.244694,0.17534,0.0382746,0.539756,0.537679,0.965841,0.0359833,0.587352,0.808325,0.628794,0.784651,0.519433,0.21575,0.404181,0.612444,0.908987,0.783945,0.456246,0.398515,0.0070588,0.331497,0.494998,0.708411,0.438065,0.68792,0.869353,0.27792,0.667116,0.20505,0.480384,0.371264,0.15799,0.182049,0.526488,0.972596,0.149596,0.482311,0.509807,0.721627,0.103119,0.752527,0.727039,0.975113,0.932894,0.90875,0.798831,0.169824,0.545942,0.527831,0.915729,0.846218,0.114515,0.603492,0.449257,0.911373,0.897033,0.378974,0.121322,0.129641,0.0757071,0.403669,0.36675,0.52236,0.728652,0.541042,0.201275,0.256037,0.247058,0.0717584,0.249334,0.539494,0.29354,0.0613244,0.774858,0.794085,0.32771,0.257992,0.620535,0.844184,0.59418,0.548505,0.740683,0.199164,0.149205,0.904797,0.909746,0.798554,0.607063,0.676861,0.0803816,0.590461,0.509116,0.812793,0.413976,0.33958,0.786107,0.258094,0.499621,0.972876,0.110314,0.00588483,0.943559,0.922264,0.927222,0.816912,0.851703,0.50197,0.111038,0.784417,0.130979,0.312356,0.858634,0.347479,0.618548,|0.752871,0.740615,0.550436,0.456541,0.25584,0.971465,0.91264,0.836833,0.339789,0.836207,0.465445,0.853414,0.433859,0.553154,0.477338,0.36838,0.329826,0.613829,0.105169,0.360396,0.183573,0.272149,0.74832,0.190433,0.565244,0.641011,0.0303978,0.51289,0.198717,0.0413166,0.592681,0.856659,0.982567,0.212879,0.800156,0.0102007,0.859672,0.160885,0.901134,0.21408,0.173252,0.567242,0.501144,0.484908,0.170776,0.560752,0.174145,0.993132,0.0861627,0.799951,0.626763,0.228389,0.819266,0.00668609,0.326141,0.989435,0.804949,0.240485,0.734229,0.557282,0.279075,0.221153,0.834754,0.974359,0.973228,0.475392,0.703192,0.363424,0.50535,0.763684,0.652347,0.752864,0.970747,0.966307,0.0206581,0.626709,0.17279,0.000522971,0.0971841,0.826094,0.167165,0.700541,0.178416,0.719244,0.508595,0.128184,0.671895,0.950778,0.372386,0.896086,0.234086,0.5293,0.333601,0.796788,0.500532,0.268636,0.153989,0.176776,0.0870335,0.328721,0.553978,0.00752461,0.364192,0.794665,0.764061,0.658537,0.835967,0.764407,0.34353,0.415091,0.316985,0.6623,0.421068,0.699081,0.046553,0.257994,0.0123712,0.0611852,0.116919,0.453408,0.0294674,0.578486,0.66883,0.966462,0.621249,0.411759,0.161586,0.371966,0.017132,0.0980382,0.286124,0.899395,0.15777,0.0583106,0.752712,0.114687,0.13131,0.621551,0.132457,0.134518,0.225777,0.403801,0.130311,0.150399,0.304771,0.36007,0.602042,0.686231,0.45907,0.356738,0.596348,0.945316,0.680746,0.00224656,0.0151945,0.413334,0.720084,0.167983,0.513258,0.253538,0.815005,0.640211,0.0209903,0.646858,0.236245,0.616637,0.744538,0.580666,0.786651,0.334257,0.0293236,0.940209,0.94973,0.693834,0.920305,0.0546046,0.508388,0.239926,0.0826439,0.0515447,0.225926,0.494231,0.769249,0.621688,0.266413,0.678263,0.45382,0.713591,0.411761,0.48289,0.976595,0.768483,0.866296,0.0452648,0.447179,0.10381,0.511352,0.730622,0.0653191,0.4618,0.271178,0.0324135,0.0756012,0.562819,0.258215,0.440001,0.527393,0.495412,0.592418,0.665004,0.714015,0.344201,0.163219,0.523564,0.0729009,0.477218,0.773876,0.0591157,0.653677,0.00667721,0.83831,0.344705,0.717123,0.652537,0.491952,0.250427,0.17214,0.977938,0.544562,0.130863,0.17101,0.556453,0.751885,0.0687268,0.871742,0.643479,0.387656,0.913428,0.478858,0.241425,0.651046,0.29519,0.45923,0.274478,0.962957,0.508688,0.233064,0.96042,0.820032,0.934076,0.680512,0.595719,0.0204164,0.681353,0.86388,0.677562,0.595653,0.202196,0.822528,0.139342,0.757071,0.482759,0.397855,0.266469,0.140941,0.611428,0.605927,0.743913,0.2157,0.343481,0.288652,0.621791,0.210094,0.0478545,0.639981,0.152473,0.129312,0.389598,0.63323,0.96406,0.651396,0.210142,0.829078,0.974151,0.487327,0.00756001,0.0268134,0.918991,0.0588414,0.644303,0.300592,0.692646,0.995971,0.852195,0.993938,0.0731913,0.953359,0.771221,0.22136,0.245959,0.396038,0.483746,0.871024,0.612443,0.266587,0.31998,0.963907,0.211654,0.231158,0.608019,0.732069,0.0702185,0.0518725,0.131584,0.103554,0.299678,0.762013,0.941416,0.481486,0.13303,0.386897,0.896072,0.32378,0.579709,0.603813,0.731608,0.675733,0.0699195,0.569441,0.315573,0.425435,0.708675,0.0183597,0.288016,0.0140791,0.520252,0.255253,0.404295,0.20965,0.73049,0.508694,0.990119,0.897977,0.510726,0.0279876,0.234028,0.72502,0.874791,0.528779,0.881354,0.540746,0.749835,0.713745,0.1611,0.0422089,0.34727,0.435435,0.832417,0.906768,0.61211,0.231812,0.885204,0.232003,0.72439,0.0208737,0.500268,0.13677,0.800094,0.216012,0.25147,0.607593,0.223104,0.12355,0.300192,0.650476,0.701856,0.633349,0.789799,0.613698,0.21134,0.976549,0.897353,0.858619,0.51945,0.143273,0.257158,0.650782,0.290208,0.100133,0.534377,0.725862,0.492847,0.566148,0.19546,0.536768,0.964596,0.610199,0.682832,0.256011,0.142961,0.383827,0.63342,0.48559,0.146709,0.826061,0.381834,0.638389,0.520737,0.0762061,0.184827,0.407068,0.361901,0.549034,0.0633003,0.458703,0.265625,0.894424,0.905263,0.691775,0.566744,0.108299,0.145732,0.65639,0.802216,0.607091,0.852436,0.788345,0.465881,0.644409,0.612652,0.597512,0.244236,0.250106,0.398739,0.759673,0.904317,0.259115,0.953509,0.728068,0.686211,0.0126117,0.100589,0.749973,0.418556,0.179996,0.205282,0.925743,0.513398,0.624437,0.971606,0.322808,0.446421,0.62997,0.206773,0.489252,0.635785,0.140703,0.594588,0.154319,0.332008,0.593773,0.459763,0.759999,0.58761,0.639272,0.2891,0.0388122,0.780009,0.894951,0.131704,0.906878,0.389561,0.593043,0.0965598,0.835491,0.212986,0.916288,0.476846,0.442349,0.837137,0.945677,0.420164,0.639341,0.794003,0.639292,0.945954,0.847814,0.106337,0.268058,0.545045,0.878116,0.424375,0.732338,0.409622,0.229427,0.324726,0.220679,0.178675,0.106736,0.321674,0.629353,0.475431,0.13674,0.384441,0.595658,0.122743,0.970937,0.877161,0.570713,0.639079,0.380773,0.242705,0.0456124,0.26026,0.131962,0.104784,0.656977,0.759566,0.749603,0.999545,0.0817282,0.311663,0.497297,0.33119,0.769936,0.594698,0.34164,0.870684,0.363167,0.79519,0.474538,0.615015,0.240487,0.790807,0.578576,0.683761,0.194932,0.169932,0.201394,0.903616,0.906729,0.960546,0.983703,0.590875,0.54296,0.630553,0.425894,0.372081,0.690239,0.935611,0.518565,0.810193,0.481668,0.833162,0.360103,0.740442,0.837464,0.262381,0.0863987,0.73157,0.476307,0.335843,0.219266,0.211308,0.517088,0.314512,0.0468004,0.85814,0.187779,0.213085,0.759119,0.185949,0.353119,0.940981,0.489089,0.476702,0.91926,0.403844,0.160479,0.453766,0.840245,0.62425,0.637194,0.0327714,0.299832,0.967166,0.423623,0.395336,0.626086,0.810579,0.52607,0.968981,0.684239,0.722131,0.778296,0.837081,0.931183,0.728289,0.457533,0.931373,0.357198,0.226976,0.350997,0.116239,0.138595,0.982535,0.939125,0.374948,0.968017,0.370355,0.425281,0.966719,0.154809,0.130113,0.852356,0.474069,0.217306,0.160401,0.833284,0.0484192,0.524843,0.0644513,0.590635,0.856603,0.948037,0.634172,0.758682,0.840545,0.310264,0.400751,0.0237168,0.283375,0.387499,0.644308,0.782921,0.957491,0.525088,0.504967,0.369537,0.536375,0.568351,0.247048,0.00374728,0.266638,0.258623,0.150584,0.822796,0.874158,0.861839,0.354399,0.129923,0.847588,0.830588,0.707438,0.37738,0.324232,0.447974,0.16296,0.467103,0.391901,0.522419,0.154589,0.38136,0.530197,0.625408,0.228728,0.857485,0.698445,0.856281,0.732442,0.981533,0.265095,0.438202,0.1844,0.723446,0.762328,0.566443,0.40682,0.394062,0.959719,0.258266,0.251083,0.213316,0.580628,0.125704,0.877776,0.782203,0.525899,0.717622,0.449567,0.00383765,0.728098,0.816449,0.0690934,0.213317,0.242492,0.686957,0.463933,0.676005,0.96383,0.38915,0.288265,0.808456,0.932351,0.0795899,0.776407,0.756883,0.58118,0.566095,0.176609,0.304496,0.0455466,0.300627,0.960387,0.185654,0.348851,0.723843,0.180029,0.548642,0.91162,0.248269,0.0939685,0.0691748,0.390682,0.97955,0.805602,0.534406,0.747626,0.523606,0.0245878,0.789428,0.577345,0.650151,0.99359,0.184072,0.444292,0.250367,0.866631,0.443125,0.884107,0.977813,0.216769,0.0801672,0.0106292,0.721445,0.412177,0.960638,0.0960144,0.105514,0.708924,0.485551,0.676765,0.977763,0.0416701,0.501125,0.490597,0.496703,0.280089,0.672914,0.465586,0.308631,0.396017,0.0738461,0.36337,0.995747,0.190604,0.185542,0.230611,0.241177,0.522009,0.0939656,0.54292,0.205013,0.281781,0.922834,0.88152,0.640238,0.40963,0.378293,0.337265,0.502867,0.723717,0.242554,0.252249,0.548753,0.273449,0.518953,0.354596,0.800278,0.489775,0.909514,0.524228,0.774294,0.0330713,0.759006,0.0962601,0.75925,0.451076,0.864852,0.872571,0.100509,0.220513,0.700853,0.000420272,0.100688,0.0671318,0.729167,0.361773,0.603289,0.340495,0.308034,0.448623,0.390326,0.444654,0.321034,0.775774,0.484213,0.701733,0.788055,0.0265028,0.490445,0.858725,0.675651,0.402461,0.775022,0.108674,0.0668606,0.0252053,0.295408,0.298811,0.266504,0.218952,0.79703,0.351148,0.0453002,0.191396,0.650628,0.567146,0.115661,0.696259,0.766328,0.129216,0.408187,0.424331,0.930742,0.280378,0.930545,0.200387,0.205142,0.546731,0.088833,0.494974,0.97957,0.997969,0.66788,0.937864,0.341899,0.920453,0.275081,0.105572,0.252945,0.900562,0.881403,0.744817,0.31071,0.079932,0.919545,0.334527,0.210548,0.688708,0.644179,0.516372,0.822136,0.552736,0.603601,0.694859,0.987403,0.469991,0.0199595,0.679218,0.996436,0.84609,0.612536,0.492527,0.885297,0.791852,0.961242,0.309252,0.623164,0.673541,0.643295,0.728707,0.833537,0.940114,0.73904,0.885839,0.702667,0.193281,0.810163,0.137071,0.639288,0.101536,0.608146,0.155835,0.926274,0.0931855,0.504644,0.0239161,0.820513,0.99016,0.93985,0.568557,0.0264578,0.902956,0.239904,0.829489,0.469934,0.223912,0.311044,0.935727,0.237995,0.301106,0.234194,0.566448,0.317523,0.483705,0.342813,0.0468561,0.331238,0.776704,0.367487,0.930424,0.165652,0.27055,0.435858,0.284633,0.847132,0.76235,0.102143,0.120034,0.647045,0.0256323,0.977169,0.395565,0.281604,0.194681,0.315692,0.495694,0.825276,0.805419,0.636691,0.732888,0.49483,0.0635151,0.0197341,0.195397,0.794775,0.977626,0.425406,0.087059,0.306286,0.960944,0.301761,0.298015,0.463329,0.541218,0.627078,0.226603,0.644505,0.157382,0.910669,0.499688,0.673688,0.799071,0.657684,0.975804,0.174296,0.871638,0.950462,0.824178,0.904152,0.205325,0.708043,0.595535,0.0721884,0.108108,0.502949,0.0695132,0.286895,0.507594,0.406264,0.466874,0.869068,0.0846833,0.0527094,0.461171,0.216444,0.0831012,0.017262,0.9168,|0.585222,0.636657,0.897395,0.317876,0.133541,0.918618,0.0478876,0.271573,0.725368,0.55355,0.883724,0.21283,0.449239,0.111838,0.0346644,0.354042,0.316183,0.691197,0.302559,0.716027,0.0841996,0.427337,0.789748,0.161716,0.97344,0.117539,0.872709,0.490284,0.248858,0.760678,0.886014,0.654974,0.930818,0.225629,0.953148,0.404114,0.148402,0.468904,0.19364,0.525499,0.596512,0.480128,0.463164,0.979606,0.219659,0.776852,0.284461,0.451398,0.829258,0.917224,0.366674,0.173612,0.643198,0.720496,0.303873,0.133808,0.61388,0.755674,0.617612,0.384198,0.11944,0.177366,0.511375,0.353186,0.490188,0.609241,0.84339,0.769014,0.11862,0.142047,0.18821,0.174342,0.459644,0.420208,0.297043,0.557146,0.7671,0.66623,0.0197939,0.942674,0.619782,0.865363,0.159605,0.72102,0.438315,0.679753,0.721067,0.633258,0.345844,0.365276,0.424135,0.897072,0.455708,0.666832,0.610529,0.0233039,0.688251,0.116758,0.901994,0.299358,0.175221,0.251605,0.42227,0.0117521,0.921062,0.122163,0.0775081,0.153937,0.111392,0.0721411,0.759855,0.890743,0.177483,0.713823,0.852062,0.830818,0.952836,0.760545,0.980407,0.356963,0.407081,0.14859,0.56313,0.370566,0.264518,0.589322,0.310151,0.00625521,0.686407,0.900895,0.551316,0.754923,0.896525,0.647683,0.312322,0.180749,0.49648,0.818134,0.602256,0.822629,0.758987,0.35046,0.556054,0.613927,0.15617,0.191204,0.0949027,0.901092,0.241078,0.851287,0.399729,0.360448,0.722124,0.998927,0.315666,0.324882,0.0659608,0.541138,0.208093,0.0647584,0.293349,0.65779,0.664199,0.476583,0.856821,0.530417,0.924047,0.35976,0.578123,0.795635,0.42023,0.986708,0.114401,0.827126,0.572744,0.0205032,0.329665,0.0890393,0.187225,0.950998,0.0746558,0.94725,0.438728,0.799991,0.692499,0.467385,0.156675,0.358742,0.400175,0.643115,0.95561,0.875649,0.299698,0.415898,0.382054,0.799296,0.385292,0.947765,0.213638,0.800971,0.753594,0.632734,0.665136,0.0171711,0.0462583,0.796663,0.787874,0.610501,0.847847,0.439756,0.43534,0.531896,0.437527,0.682008,0.0708303,0.396975,0.0631581,0.361248,0.764135,0.508475,0.771412,0.904608,0.491438,0.635203,0.397158,0.146002,0.755733,0.528152,0.474398,0.903275,0.365396,0.215311,0.138878,0.776122,0.0690755,0.738718,0.882796,0.935939,0.508858,0.793729,0.629807,0.604029,0.57153,0.469081,0.124884,0.459819,0.00105542,0.859363,0.246498,0.395779,0.221346,0.436278,0.928234,0.820679,0.173772,0.55369,0.826631,0.011732,0.453658,0.911707,0.311321,0.0960569,0.405036,0.523216,0.934641,0.449682,0.298032,0.446408,0.433045,0.489049,0.0597081,0.937518,0.744523,0.204883,0.180369,0.772061,0.395977,0.0840755,0.492877,0.291005,0.411545,0.615494,0.923321,0.213931,0.665256,0.946039,0.0466086,0.169833,0.730425,0.940214,0.70135,0.324261,0.730149,0.229489,0.943127,0.160466,0.173465,0.0189397,0.987845,0.720711,0.0498807,0.131071,0.842736,0.649982,0.496452,0.437125,0.018324,0.155135,0.17456,0.144951,0.0143805,0.803875,0.0453011,0.626666,0.40024,0.273137,0.0863853,0.967997,0.0256171,0.457603,0.0279599,0.372437,0.568889,0.0898729,0.0111306,0.284788,0.154654,0.000751138,0.197242,0.270621,0.183926,0.151703,0.535424,0.982279,0.315214,0.97166,0.129719,0.956127,0.224466,0.0414698,0.759378,0.0196314,0.0476236,0.51801,0.15495,0.713726,0.359604,0.979642,0.566147,0.09637,0.402101,0.0389026,0.0785783,0.910837,0.851477,0.271818,0.813729,0.854185,0.497357,0.747695,0.418207,0.448849,0.0249604,0.55882,0.197151,0.178236,0.669129,0.439051,0.351806,0.965583,0.0779273,0.0209021,0.669434,0.475733,0.901419,0.616384,0.253129,0.501397,0.728193,0.364704,0.120381,0.367359,0.267901,0.605641,0.124722,0.0227103,0.450868,0.00211519,0.910263,0.774265,0.999868,0.258773,0.745632,0.365069,0.398323,0.387423,0.901802,0.801488,0.731988,0.973409,0.755196,0.885476,0.425079,0.959695,0.174939,0.247624,0.510796,0.389532,0.425866,0.289959,0.175108,0.382084,0.265647,0.806521,0.37595,0.213353,0.255753,0.408174,0.879471,0.913231,0.296753,0.295027,0.677389,0.72992,0.133731,0.944349,0.809266,0.445677,0.323709,0.751028,0.864991,0.475588,0.828923,0.181916,0.561682,0.424432,0.827284,0.668865,0.303842,0.509255,0.933052,0.906926,0.17635,0.821521,0.889459,0.0953063,0.177648,0.438031,0.508226,0.852057,0.891488,0.383947,0.14223,0.0238782,0.521994,0.315483,0.100839,0.0989693,0.963601,0.892061,0.779748,0.193286,0.314583,0.0681748,0.941989,0.114274,0.0768346,0.791409,0.284298,0.378955,0.313404,0.565872,0.307364,0.936611,0.890295,0.38638,0.530587,0.452804,0.239634,0.797415,0.242053,0.85298,0.390453,0.152042,0.810824,0.665816,0.00156558,0.428287,0.266729,0.954216,0.248932,0.556325,0.813094,0.0643663,0.40124,0.144724,0.692881,0.176051,0.00794822,0.118048,0.0456063,0.308104,0.297783,0.521889,0.432296,0.670845,0.163935,0.439573,0.796637,0.535924,0.709363,0.681269,0.680783,0.726935,0.564452,0.616136,0.564097,0.888139,0.947675,0.574543,0.636906,0.42659,0.945766,0.69621,0.309058,0.227896,0.764157,0.0437716,0.432848,0.925394,0.318549,0.563167,0.575917,0.612123,0.750151,0.387837,0.43596,0.193812,0.561031,0.973143,0.569241,0.902881,0.50572,0.20072,0.588975,0.188353,0.633125,0.950675,0.543031,0.17654,0.106617,0.645175,0.0700399,0.18414,0.856432,0.0585944,0.0713988,0.838329,0.685873,0.919578,0.224546,0.101622,0.869508,0.592692,0.961653,0.706583,0.37803,0.624269,0.873118,0.631809,0.556309,0.178806,0.118782,0.35632,0.690407,0.609344,0.12593,0.00708359,0.838882,0.563675,0.656227,0.345226,0.499698,0.795587,0.521852,0.197717,0.269792,0.0731199,0.684932,0.670577,0.893862,0.463038,0.781376,0.857484,0.908629,0.436474,0.54634,0.177598,0.380321,0.682871,0.344655,0.216661,0.740471,0.540987,0.636315,0.87294,0.0303808,0.171861,0.716458,0.671818,0.539248,0.0685443,0.240719,0.641992,0.665683,0.665467,0.335258,0.554223,0.288362,0.945874,0.285512,0.377903,0.962926,0.249518,0.607255,0.67725,0.763683,0.595247,0.133376,0.563227,0.287912,0.663989,0.625676,0.439944,0.152382,0.00254595,0.638794,0.349985,0.371895,0.242547,0.982612,0.916081,0.469866,0.0816243,0.539735,0.316705,0.0811625,0.0404053,0.518033,0.996247,0.578245,0.106318,0.768933,0.779597,0.150248,0.0224489,0.181088,0.741855,0.523755,0.146677,0.917421,0.346632,0.616286,0.244798,0.99766,0.121509,0.42008,0.128711,0.70868,0.080488,0.322978,0.454509,0.872212,0.917193,0.456086,0.73613,0.802075,0.513929,0.132371,0.580851,0.505619,0.596049,0.309347,0.675211,0.399335,0.79215,0.943762,0.064292,0.752729,0.715642,0.866696,0.448427,0.961908,0.568595,0.516242,0.74454,0.662169,0.245461,0.0403209,0.256098,0.663442,0.0150191,0.709071,0.858516,0.086129,0.341959,0.963746,0.581826,0.22221,0.479336,0.808977,0.855152,0.660639,0.4084,0.344054,0.566885,0.795939,0.736094,0.892134,0.265772,0.960188,0.95902,0.49036,0.135222,0.541716,0.801091,0.234413,0.117053,0.843998,0.510829,0.408552,0.593345,0.92526,0.461114,0.806552,0.51544,0.243171,0.609195,0.20354,0.88267,0.0561305,0.923526,0.480216,0.951281,0.604139,0.858164,0.877161,0.104326,0.840036,0.160562,0.744208,0.138839,0.969414,0.0466103,0.74098,0.513891,0.783414,0.135431,0.950264,0.556813,0.864148,0.135747,0.250887,0.18657,0.65722,0.0364172,0.35942,0.812118,0.740124,0.162975,0.175667,0.866246,0.437048,0.433694,0.337917,0.567739,0.975136,0.836599,0.490328,0.358136,0.299413,0.445487,0.235123,0.466558,0.77777,0.893387,0.68545,0.872097,0.578563,0.770424,0.452685,0.225444,0.112544,0.0159756,0.515067,0.946306,0.828687,0.0888285,0.973713,0.21422,0.62658,0.10198,0.345636,0.2046,0.943682,0.206834,0.666704,0.623699,0.188948,0.700781,0.964654,0.502599,0.26758,0.373415,0.647101,0.188944,0.0387263,0.59794,0.823238,0.404456,0.930375,0.434069,0.592486,0.276817,0.124332,0.035564,0.471578,0.457415,0.107951,0.581993,0.774494,0.366389,0.391412,0.0919752,0.177072,0.292578,0.227247,0.387511,0.91751,0.112791,0.951401,0.447917,0.939111,0.834188,0.158713,0.856341,0.816462,0.431742,0.217309,0.654313,0.258067,0.667742,0.314924,0.882165,0.17116,0.263165,0.873899,0.556951,0.927071,0.161713,0.130345,0.302012,0.864977,0.210563,0.135445,0.980231,0.4439,0.781418,0.186423,0.15453,0.648275,0.0607978,0.501226,0.0564981,0.863848,0.963198,0.723673,0.916245,0.0758712,0.77822,0.119722,0.436331,0.582718,0.376644,0.141922,0.349415,0.760875,0.124192,0.370991,0.478883,0.986778,0.891919,0.427485,0.809026,0.957692,0.197424,0.180407,0.342095,0.867293,0.317161,0.466058,0.507874,0.202608,0.4079,0.0662526,0.238716,0.396603,0.706111,0.765417,0.333109,0.0421482,0.588898,0.440077,0.490729,0.894144,0.034797,0.877245,0.857383,0.0290744,0.103591,0.205604,0.742436,0.711881,0.832537,0.278369,0.603468,0.000464499,0.197478,0.838469,0.273011,0.76033,0.618949,0.492678,0.356706,0.113245,0.0985535,0.668231,0.354315,0.448345,0.65429,0.226043,0.427058,0.033769,0.834317,0.386817,0.899224,0.379464,0.431252,0.891527,0.324139,0.981934,0.100705,0.471072,0.622015,0.550404,0.960179,0.746804,0.0413605,0.457936,0.400234,0.474649,0.661194,0.406082,0.243012,0.708343,0.923048,0.121851,0.965544,0.662099,0.503088,0.0268278,0.140415,0.70281,0.559219,0.699119,0.799501,0.0740488,0.86706,0.383787,0.0676657,0.371039,0.78755,0.798184,0.325408,0.0987959,0.612277,0.246648,0.0397683,0.827676,0.428564,0.990149,0.988332,0.210999,0.168535,0.749964,0.212019,0.527862,0.954437,0.127424,0.17298,|0.111532,0.14666,0.914481,0.0967164,0.707045,0.627027,0.417927,0.153335,0.0584068,0.973509,0.0419831,0.183858,0.955022,0.235442,0.543071,0.963308,0.466511,0.270143,0.479544,0.92259,0.816342,0.331053,0.273379,0.761209,0.605835,0.853215,0.191776,0.31886,0.105531,0.581052,0.226221,0.862318,0.79909,0.565776,0.563512,0.951262,0.114709,0.175986,0.857336,0.253243,0.0214762,0.205921,0.966784,0.197233,0.520706,0.554793,0.389014,0.421387,0.665538,0.562526,0.471012,0.613976,0.930904,0.952151,0.086158,0.566269,0.894187,0.801073,0.627702,0.692099,0.558763,0.698726,0.61409,0.749872,0.729953,0.706614,0.662343,0.588427,0.091866,0.889147,0.505999,0.524852,0.72407,0.618905,0.0494816,0.69252,0.634698,0.281462,0.819919,0.874368,0.254668,0.624902,0.209247,0.185471,0.311584,0.49337,0.114132,0.836406,0.342311,0.834801,0.120949,0.682393,0.0021717,0.50606,0.359056,0.188598,0.68299,0.546096,0.362887,0.415142,0.420768,0.239664,0.159438,0.00947261,0.730337,0.111453,0.925683,0.665132,0.303819,0.154873,0.0211791,0.112393,0.0863465,0.233772,0.999245,0.435777,0.292221,0.960488,0.638606,0.674416,0.0928043,0.973082,0.545916,0.724698,0.132134,0.855493,0.843344,0.472636,0.437841,0.305165,0.923641,0.25316,0.646681,0.424142,0.39037,0.853897,0.720347,0.905497,0.141198,0.645519,0.0329545,0.680169,0.4618,0.978884,0.815691,0.469674,0.143825,0.80876,0.0796787,0.580024,0.500415,0.974614,0.18741,0.0839365,0.0923287,0.0358592,0.0018453,0.0067246,0.258624,0.776845,0.302502,0.835093,0.858024,0.363926,0.659383,0.185781,0.189309,0.733495,0.622159,0.0558915,0.156993,0.822032,0.255555,0.115267,0.840706,0.0770454,0.785849,0.350534,0.851917,0.0302448,0.0686646,0.0743315,0.895005,0.492439,0.807036,0.32439,0.145624,0.843698,0.416014,0.631417,0.556907,0.537663,0.94661,0.578981,0.710719,0.746621,0.392475,0.519562,0.48924,0.9694,0.788997,0.891734,0.387871,0.420377,0.680187,0.317075,0.34789,0.0242748,0.428329,0.481734,0.591571,0.268551,0.122925,0.495486,0.29283,0.531697,0.44593,0.726334,0.82529,0.0847411,0.69939,0.83752,0.152488,0.807095,0.0596188,0.962711,0.909657,0.107967,0.00434464,0.557393,0.796491,0.225093,0.762982,0.558103,0.560156,0.346326,0.64862,0.752175,0.478223,0.870894,0.947181,0.542338,0.680051,0.52706,0.74516,0.868684,0.577245,0.330377,0.383601,0.127856,0.123193,0.872971,0.0571975,0.512647,0.812312,0.350607,0.677352,0.0432265,0.162799,0.760597,0.436464,0.902812,0.671595,0.743688,0.159812,0.441466,0.571332,0.184798,0.557911,0.921679,0.222892,0.366503,0.0975292,0.706663,0.675861,0.382185,0.00801802,0.198624,0.441168,0.885432,0.569854,0.78955,0.805288,0.509186,0.179903,0.802412,0.45442,0.583388,0.287403,0.308085,0.181303,0.0103912,0.767744,0.367562,0.901938,0.571735,0.735754,0.984112,0.0595731,0.895787,0.544846,0.901309,0.180676,0.0660605,0.919011,0.00789797,0.576849,0.190143,0.893247,0.989758,0.318948,0.361589,0.54965,0.126797,0.256051,0.211864,0.459756,0.111537,0.17295,0.128209,0.869766,0.330465,0.669242,0.291466,0.691807,0.960236,0.896329,0.789651,0.692479,0.643518,0.0590093,0.747115,0.802667,0.33308,0.883593,0.254345,0.400206,0.102932,0.991793,0.542422,0.0911405,0.00432336,0.0140335,0.31227,0.241454,0.633919,0.992614,0.326506,0.91865,0.0241226,0.981595,0.938713,0.256704,0.212793,0.520777,0.290259,0.455103,0.207198,0.386197,0.283077,0.711716,0.030148,0.725935,0.544255,0.391503,0.354876,0.20723,0.682223,0.861065,0.399314,0.516987,0.136679,0.742727,0.389547,0.643748,0.497423,0.786741,0.378176,0.75632,0.959131,0.859284,0.925701,0.825701,0.936502,0.912917,0.530625,0.0822495,0.196588,0.266348,0.415318,0.637172,0.198818,0.981995,0.978902,0.18674,0.871877,0.583242,0.697566,0.692104,0.798658,0.538148,0.266005,0.114201,0.511142,0.612122,0.238053,0.311618,0.664288,0.852888,0.315494,0.189347,0.326508,0.1403,0.329897,0.533109,0.586638,0.671547,0.378565,0.525141,0.764233,0.669817,0.0453684,0.420906,0.105782,0.135104,0.267207,0.67763,0.0143607,0.228702,0.827963,0.451502,0.422111,0.919863,0.890173,0.310032,0.862929,0.952785,0.0552343,0.438993,0.0240571,0.101556,0.777116,0.108234,0.0735118,0.66967,0.723678,0.911287,0.834581,0.750202,0.134365,0.222186,0.609142,0.0101576,0.505851,0.635551,0.760059,0.535904,0.266329,0.246608,0.429522,0.832728,0.207182,0.121233,0.423053,0.936669,0.608208,0.189588,0.641385,0.217515,0.697266,0.851939,0.679196,0.24619,0.99097,0.354276,0.89876,0.408362,0.0930604,0.597665,0.0506948,0.982752,0.0303127,0.369169,0.837271,0.735687,0.936425,0.908294,0.663813,0.908459,0.467753,0.875929,0.532696,0.642048,0.775528,0.821263,0.686339,0.274092,0.104229,0.98591,0.345001,0.882407,0.422376,0.0679581,0.731156,0.947547,0.349746,0.730895,0.518738,0.374199,0.491203,0.306161,0.373742,0.0083819,0.213276,0.0612002,0.753603,0.509902,0.618964,0.827455,0.983396,0.280446,0.889789,0.0926659,0.665672,0.584893,0.95328,0.23047,0.85724,0.389451,0.786901,0.219014,0.387199,0.851957,0.747183,0.543938,0.433962,0.131491,0.70635,0.323687,0.802471,0.0708325,0.236327,0.0966558,0.293064,0.222016,0.43288,0.730289,0.89451,0.606422,0.0417596,0.545821,0.0811051,0.976387,0.613247,0.506102,0.0127921,0.178803,0.773913,0.611795,0.000522912,0.667516,0.58978,0.0740117,0.74684,0.456117,0.185181,0.00110036,0.56271,0.132971,0.0334514,0.366385,0.231907,0.691331,0.172383,0.869774,0.217333,0.411734,0.154708,0.21388,0.337187,0.177176,0.468284,0.867688,0.0386109,0.7392,0.743863,0.200452,0.427621,0.693671,0.993497,0.344468,0.548838,0.613291,0.466271,0.105087,0.594794,0.107902,0.625677,0.616691,0.720484,0.798113,0.296235,0.251015,0.799261,0.868775,0.259631,0.829451,0.112981,0.588427,0.519009,0.784953,0.607701,0.44041,0.172617,0.043099,0.338748,0.528402,0.57065,0.96056,0.405359,0.539631,0.474895,0.228584,0.0305175,0.285888,0.00809395,0.223323,0.991716,0.137684,0.816283,0.694917,0.611744,0.207867,0.0650281,0.227114,0.525838,0.0136066,0.166823,0.367424,0.253346,0.936872,0.533588,0.425776,0.126242,0.838281,0.525247,0.462515,0.151797,0.92586,0.321057,0.890449,0.619987,0.0540833,0.0888277,0.105381,0.00258964,0.580955,0.651089,0.930875,0.879592,0.653995,0.0661396,0.193901,0.545682,0.929539,0.612929,0.942181,0.293409,0.909502,0.622138,0.16412,0.886822,0.899161,0.205811,0.0319151,0.297102,0.937746,0.539414,0.416379,0.801337,0.702986,0.799072,0.31087,0.264083,0.404471,0.0957966,0.40898,0.878431,0.0483183,0.491108,0.954362,0.872595,0.596864,0.397589,0.0361543,0.331957,0.0535079,0.0190123,0.777327,0.322242,0.724422,0.980709,0.729801,0.748423,0.191361,0.955507,0.217862,0.180296,0.03038,0.718943,0.926102,0.651047,0.790995,0.64401,0.884553,0.143024,0.872737,0.438849,0.0908046,0.393074,0.385614,0.745955,0.360602,0.15183,0.134274,0.679694,0.935782,0.607764,0.77871,0.806064,0.655508,0.109227,0.691905,0.918772,0.374816,0.0263415,0.663542,0.807639,0.759273,0.549546,0.780542,0.984732,0.0501882,0.816693,0.873887,0.697278,0.300564,0.103522,0.158075,0.163929,0.700949,0.437205,0.833224,0.975054,0.376198,0.451734,0.378425,0.995389,0.596737,0.670356,0.931149,0.164444,0.502396,0.92698,0.116202,0.231978,0.840348,0.981435,0.132409,0.179401,0.269877,0.477251,0.423789,0.442605,0.170275,0.818576,0.579196,0.801528,0.454409,0.582645,0.588257,0.341177,0.251882,0.458949,0.0800563,0.501599,0.133205,0.465879,0.891618,0.952529,0.73829,0.833914,0.643185,0.0683064,0.312542,0.515002,0.614091,0.544102,0.494996,0.87506,0.367554,0.776323,0.163349,0.489528,0.681555,0.137337,0.272714,0.103026,0.833653,0.587294,0.838252,0.920915,0.750587,0.18541,0.752452,0.843754,0.114133,0.082274,0.581073,0.386884,0.875484,0.522689,0.202591,0.367324,0.461571,0.372146,0.700248,0.88651,0.91085,0.85199,0.622697,0.591034,0.114597,0.776539,0.866178,0.840384,0.124332,0.613847,0.632061,0.395317,0.453788,0.336412,0.964201,0.555655,0.804112,0.8699,0.696693,0.285533,0.836582,0.395489,0.912158,0.0928798,0.334371,0.209132,0.56998,0.584153,0.496342,0.954117,0.638324,0.191509,0.457776,0.158265,0.47362,0.866749,0.799581,0.416473,0.909428,0.128779,0.835935,0.527884,0.0715774,0.403859,0.166564,0.683244,0.550897,0.853807,0.119875,0.575165,0.810736,0.349333,0.375395,0.313912,0.368516,0.865886,0.975107,0.465704,0.679632,0.453477,0.903276,0.32764,0.135482,0.244808,0.0211911,0.805761,0.843133,0.581666,0.909549,0.345735,0.306038,0.317176,0.445677,0.479673,0.435668,0.128218,0.716641,0.545759,0.483204,0.153895,0.974049,0.215359,0.844247,0.183323,0.582229,0.8024,0.174548,0.56207,0.955344,0.473009,0.573292,0.986306,0.303743,0.187541,0.665482,0.562554,0.742763,0.207118,0.735388,0.245566,0.0696504,0.760196,0.801152,0.949176,0.479318,0.619202,0.269494,0.793075,0.0945669,0.956604,0.715249,0.593487,0.867923,0.782707,0.63173,0.780198,0.0979666,0.566988,0.190956,0.912008,0.182985,0.834413,0.424842,0.259982,0.768491,0.520775,0.970116,0.404265,0.829227,0.315165,0.180189,0.60947,0.851334,0.441087,0.381323,0.193963,0.588408,0.709111,0.408562,0.755681,0.0336102,0.29198,0.794223,0.770701,0.269947,0.70448,0.187281,0.705633,0.65457,0.203119,0.186579,0.0313665,0.874702,0.32816,0.150239,0.434866,0.822933,0.604405,0.177051,0.987403,0.550504,0.487907,0.350617,0.774141,0.217503,0.748047,0.150664,0.229649,0.166856,0.22873,0.539902,0.517628,|0.59486,0.475944,0.0324656,0.89651,0.0478255,0.196972,0.0515897,0.555145,0.761055,0.255082,0.0609277,0.897796,0.561285,0.110023,0.835558,0.807035,0.0129691,0.855483,0.682185,0.175172,0.965215,0.109168,0.858269,0.475012,0.307265,0.408911,0.171909,0.874521,0.192544,0.977945,0.0126734,0.409463,0.323024,0.410693,0.377516,0.580075,0.201542,0.842617,0.344814,0.596479,0.29114,0.675188,0.045595,0.0213247,0.931551,0.77728,0.0905425,0.388926,0.870895,0.57348,0.601961,0.588516,0.959212,0.635352,0.388026,0.445877,0.359447,0.618854,0.660365,0.826973,0.293956,0.573597,0.0657109,0.842867,0.311661,0.232738,0.110758,0.278875,0.0799046,0.50165,0.0586597,0.612951,0.63056,0.697664,0.779253,0.467534,0.592871,0.926196,0.215786,0.477237,0.357016,0.37284,0.0590068,0.802621,0.237187,0.734267,0.87034,0.836406,0.899191,0.449201,0.677893,0.905173,0.692289,0.0741943,0.897796,0.771991,0.679541,0.820675,0.408514,0.686639,0.172773,0.749463,0.302935,0.444078,0.0961755,0.777704,0.55995,0.816445,0.209331,0.239275,0.787902,0.317857,0.551615,0.302127,0.777395,0.341216,0.465289,0.881532,0.0873696,0.388561,0.364596,0.499934,0.316321,0.506815,0.96474,0.971386,0.76578,0.164389,0.544431,0.919485,0.893836,0.159433,0.469568,0.353547,0.361011,0.807648,0.381771,0.884199,0.384358,0.531095,0.748721,0.242778,0.995837,0.916258,0.527712,0.842949,0.93936,0.509256,0.0632905,0.0148306,0.763174,0.873343,0.912061,0.745935,0.34856,0.35761,0.173037,0.0444131,0.805076,0.00624722,0.0203271,0.909512,0.916853,0.523512,0.0200455,0.445554,0.950673,0.85867,0.913127,0.0060541,0.768049,0.047183,0.0916204,0.177453,0.325519,0.706533,0.932626,0.265958,0.883364,0.247862,0.98226,0.190243,0.898746,0.560425,0.755859,0.268765,0.176411,0.576254,0.711467,0.490143,0.0204934,0.441605,0.181688,0.0662972,0.568015,0.657461,0.641622,0.763261,0.764757,0.301736,0.336272,0.572119,0.711681,0.13932,0.734782,0.454049,0.958833,0.768416,0.9094,0.0834563,0.0503718,0.125642,0.460636,0.755508,0.843263,0.280323,0.497201,0.868814,0.166949,0.230072,0.236421,0.979699,0.473812,0.473666,0.141668,0.850709,0.215124,0.543722,0.0783005,0.368422,0.752321,0.563854,0.691898,0.939104,0.265918,0.880518,0.387846,0.393537,0.00694174,0.935419,0.672646,0.71888,0.885239,0.78735,0.159041,0.319425,0.597512,0.135038,0.420758,0.922086,0.756622,0.627049,0.417375,0.325642,0.493283,0.659532,0.749473,0.959381,0.220048,0.676779,0.543127,0.613364,0.569538,0.630201,0.383168,0.137295,0.675558,0.0216931,0.0907245,0.28887,0.725443,0.881772,0.292821,0.271836,0.222424,0.246558,0.783168,0.843549,0.973246,0.798836,0.109434,0.991568,0.472158,0.505618,0.398061,0.339842,0.352457,0.934674,0.156683,0.564612,0.0115621,0.0209594,0.0866584,0.331858,0.750792,0.509948,0.680224,0.353917,0.0590653,0.297593,0.345327,0.333061,0.759544,0.0644981,0.118836,0.70188,0.675339,0.585975,0.619044,0.659156,0.518031,0.481108,0.954676,0.484557,0.422311,0.827446,0.904169,0.786945,0.155255,0.217674,0.741606,0.149867,0.692668,0.524501,0.370725,0.39485,0.868703,0.422807,0.94378,0.529854,0.530759,0.759928,0.781871,0.606194,0.24614,0.0912898,0.552838,0.000772357,0.447989,0.752553,0.409682,0.499507,0.678762,0.490527,0.400887,0.936377,0.692769,0.86691,0.262984,0.673953,0.0657499,0.581381,0.273363,0.214099,0.499422,0.905678,0.243345,0.174871,0.884594,0.547402,0.626098,0.873939,0.25662,0.724052,0.403144,0.748278,0.843532,0.113248,0.542409,0.782291,0.422009,0.363413,0.134768,0.00656712,0.623886,0.730749,0.286301,0.916479,0.53043,0.889428,0.635925,0.656711,0.135372,0.858876,0.024913,0.971088,0.331168,0.149262,0.442634,0.959487,0.765756,0.184993,0.409491,0.719756,0.134492,0.0971345,0.710428,0.933334,0.204032,0.329705,0.906916,0.791909,0.0331472,0.179281,0.145162,0.384305,0.205406,0.242806,0.0816962,0.702879,0.743619,0.113217,0.368356,0.714013,0.518207,0.608147,0.534689,0.834561,0.227984,0.970498,0.804005,0.370108,0.126773,0.865924,0.591577,0.118995,0.200301,0.395582,0.664101,0.888976,0.967233,0.44355,0.202091,0.307665,0.662671,0.913237,0.584352,0.225568,0.25482,0.532375,0.779328,0.275783,0.0127896,0.476847,0.635247,0.0852089,0.923748,0.288173,0.673241,0.0082491,0.191168,0.773391,0.871668,0.460005,0.00189257,0.290121,0.943593,0.504797,0.398249,0.0932271,0.0115338,0.8974,0.312796,0.223643,0.727392,0.680521,0.144018,0.218613,0.992761,0.0455073,0.188302,0.654132,0.858883,0.229926,0.219215,0.352998,0.055871,0.845791,0.0089398,0.575828,0.991697,0.803077,0.990443,0.955019,0.528518,0.74166,0.0483037,0.350432,0.141947,0.515825,0.624812,0.0366881,0.218897,0.581792,0.958131,0.252244,0.560296,0.769582,0.717725,0.331623,0.0778555,0.752825,0.498557,0.348841,0.892165,0.100596,0.0120262,0.291249,0.145577,0.72433,0.940965,0.720433,0.879154,0.893892,0.650908,0.819623,0.727166,0.873853,0.344209,0.826999,0.899264,0.759049,0.386527,0.0494263,0.410648,0.912131,0.217806,0.678815,0.521053,0.613756,0.98481,0.296638,0.131485,0.476606,0.0343837,0.792543,0.120294,0.498825,0.751626,0.815917,0.591849,0.164393,0.751015,0.401627,0.458934,0.301911,0.3265,0.856943,0.888612,0.37402,0.55065,0.319353,0.876571,0.571869,0.800456,0.412345,0.306256,0.393948,0.645176,0.859755,0.802536,0.215976,0.17521,0.765664,0.167082,0.28394,0.322686,0.886417,0.40258,0.823635,0.46861,0.438749,0.978494,0.821385,0.0410559,0.555385,0.135075,0.993256,0.16085,0.938455,0.841946,0.906008,0.216923,0.578045,0.659729,0.32319,0.916171,0.413266,0.103858,0.518013,0.63668,0.878919,0.538547,0.6595,0.0144526,0.180279,0.540725,0.526654,0.338413,0.725803,0.55783,0.24431,0.652935,0.965007,0.463274,0.340046,0.0685659,0.57895,0.962672,0.365759,0.598177,0.257611,0.757883,0.606921,0.828364,0.771089,0.444445,0.456351,0.850942,0.337113,0.52738,0.270758,0.992159,0.313314,0.779452,0.685582,0.256425,0.805447,0.0611479,0.797151,0.251589,0.0760684,0.376079,0.140167,0.674711,0.731243,0.0196568,0.436364,0.422827,0.545278,0.534827,0.611274,0.379607,0.35418,0.917838,0.747867,0.337777,0.396903,0.995703,0.390452,0.511375,0.413838,0.473286,0.191515,0.878425,0.571838,0.110702,0.537967,0.0974404,0.430791,0.753031,0.498906,0.653239,0.338352,0.854623,0.733805,0.208254,0.851501,0.749164,0.288368,0.719172,0.973086,0.104377,0.811806,0.687246,0.791172,0.527015,0.472415,0.839442,0.900801,0.0802011,0.904882,0.0215982,0.630913,0.702897,0.195315,0.679932,0.230534,0.567339,0.455058,0.109133,0.557824,0.961026,0.158473,0.887398,0.597681,0.214713,0.499297,0.303447,0.477425,0.468622,0.725955,0.4566,0.379523,0.450853,0.235419,0.375578,0.670237,0.0292972,0.683726,0.16889,0.121455,0.979934,0.0288837,0.852778,0.892202,0.503569,0.962762,0.898752,0.0673615,0.98587,0.934619,0.00250006,0.632626,0.670941,0.367658,0.784652,0.913638,0.907328,0.0973095,0.708512,0.534347,0.570268,0.0823653,0.887821,0.618347,0.789071,0.00816482,0.317253,0.975823,0.141549,0.941226,0.405828,0.760892,0.51024,0.431059,0.472275,0.903477,0.192287,0.362621,0.045729,0.626883,0.985442,0.00256741,0.678133,0.0352061,0.54697,0.709582,0.823334,0.42126,0.0136698,0.205137,0.979078,0.656125,0.804493,0.740438,0.31938,0.457669,0.128463,0.772398,0.184296,0.0349714,0.314752,0.651548,0.528345,0.566907,0.335819,0.374756,0.020642,0.533243,0.783074,0.409948,0.161611,0.294281,0.95054,0.388805,0.449516,0.84691,0.946692,0.0627709,0.345557,0.0508242,0.0330119,0.77374,0.87464,0.39049,0.373365,0.767443,0.525784,0.44114,0.736833,0.655434,0.378505,0.634773,0.631872,0.646831,0.176345,0.569963,0.68156,0.334842,0.956593,0.262141,0.695401,0.556942,0.74297,0.903369,0.796753,0.798089,0.500899,0.0802653,0.9562,0.702647,0.260446,0.826684,0.92801,0.278313,0.96204,0.51493,0.341509,0.700363,0.501297,0.242295,0.344672,0.61595,0.335185,0.289717,0.0727995,0.256149,0.384399,0.617171,0.707692,0.531192,0.562004,0.341243,0.306427,0.821326,0.225571,0.755777,0.98844,0.252242,0.0873372,0.392973,0.314402,0.0747212,0.117027,0.0569153,0.787493,0.740544,0.477101,0.65591,0.559903,0.823347,0.109,0.825107,0.408384,0.892401,0.700896,0.385235,0.286696,0.572274,0.000167251,0.833578,0.724503,0.561764,0.307252,0.0909165,0.663217,0.815825,0.662941,0.278396,0.739707,0.238534,0.987195,0.160458,0.534469,0.885325,0.618383,0.636838,0.32661,0.389242,0.40836,0.359419,0.101058,0.127882,0.203783,0.383408,0.922813,0.0280422,0.536252,0.768962,0.170004,0.294722,0.876102,0.42432,0.724431,0.695601,0.872953,0.305182,0.0349401,0.599782,0.682643,0.754907,0.531471,0.21076,0.50804,0.766185,0.0810221,0.625788,0.368433,0.0749581,0.486342,0.0985967,0.684717,0.68009,0.96742,0.643778,0.676806,0.537291,0.905156,0.753751,0.576555,0.145548,0.486812,0.413471,0.745465,0.386438,0.808527,0.417639,0.327034,0.420131,0.746648,0.628105,0.468605,0.180192,0.599482,0.0171494,0.0829955,0.85324,0.858423,0.281924,0.407066,0.506153,0.156732,0.211592,0.83175,0.594138,0.902525,0.621541,0.151429,0.510521,0.415035,0.756118,0.893131,0.330166,0.956035,0.403994,0.350315,0.179402,0.52686,0.664188,0.482372,0.989164,0.49561,0.472905,0.344734,0.378016,0.609817,0.771914,0.253581,0.246471,0.641778,0.0662659,0.078786,0.754514,0.191958,0.4425,0.86925,0.324213,0.863308,0.873309,0.182606,0.253959,0.122436,0.0556977,0.0298703,0.922346,0.645828,0.482684,0.208945,0.563954,|0.570049,0.765695,0.104185,0.996089,0.550121,0.0274619,0.122031,0.592373,0.681595,0.110566,0.352665,0.948428,0.329969,0.761753,0.623746,0.970874,0.722577,0.806166,0.560824,0.191569,0.759219,0.192453,0.0797746,0.767004,0.339559,0.940135,0.787103,0.934185,0.694148,0.466102,0.0696134,0.348692,0.257961,0.690514,0.156991,0.0592554,0.590302,0.0988625,0.203344,0.734259,0.272225,0.650369,0.764686,0.673636,0.903384,0.589174,0.0521641,0.587523,0.435035,0.128822,0.3159,0.645121,0.122241,0.143442,0.48023,0.0238493,0.186967,0.571883,0.453199,0.348401,0.767955,0.405993,0.160202,0.802498,0.391613,0.556687,0.188379,0.122479,0.505336,0.851728,0.349593,0.918118,0.0743676,0.0325626,0.701072,0.0174958,0.329297,0.217697,0.732121,0.53049,0.84379,0.448134,0.16862,0.684946,0.597473,0.135861,0.518836,0.182764,0.700996,0.0409595,0.424659,0.657422,0.610578,0.854631,0.20901,0.0962381,0.541186,0.913715,0.448892,0.245165,0.343571,0.824807,0.665538,0.0763155,0.558354,0.121023,0.0917733,0.440445,0.0423365,0.884107,0.658324,0.573196,0.762074,0.370884,0.102451,0.463056,0.662443,0.769906,0.521592,0.00250691,0.527381,0.574572,0.237536,0.756712,0.852754,0.344547,0.548562,0.248803,0.462188,0.920661,0.789438,0.908015,0.422175,0.303847,0.0755044,0.352116,0.602014,0.0932284,0.519483,0.197842,0.97656,0.0654583,0.232823,0.422972,0.43341,0.705337,0.416383,0.861106,0.586,0.252354,0.585297,0.414592,0.922358,0.026915,0.496459,0.39268,0.090054,0.16841,0.164479,0.532731,0.0361634,0.0775569,0.768135,0.689714,0.398601,0.036227,0.259822,0.0160337,0.732951,0.330405,0.997982,0.190091,0.214518,0.663674,0.854497,0.724348,0.0519088,0.13836,0.0860655,0.601242,0.481533,0.22991,0.97646,0.554538,0.28202,0.947932,0.269597,0.666028,0.403997,0.278474,0.746296,0.0452831,0.0483184,0.695497,0.218818,0.139596,0.117698,0.838763,0.91484,0.727884,0.944114,0.984146,0.0201423,0.182729,0.140178,0.339374,0.292117,0.899757,0.724277,0.335242,0.520542,0.97419,0.420069,0.24626,0.174553,0.781704,0.812099,0.0889652,0.398691,0.801194,0.388144,0.907886,0.535462,0.355364,0.497076,0.296382,0.795381,0.939438,0.167479,0.470809,0.544895,0.404213,0.851297,0.833142,0.166599,0.167287,0.160931,0.249346,0.903223,0.903098,0.0747883,0.524798,0.605761,0.229352,0.660568,0.805864,0.088123,0.654074,0.270822,0.613469,0.419233,0.945712,0.79995,0.615658,0.163389,0.201475,0.375585,0.548772,0.0526394,0.299877,0.592933,0.846408,0.427454,0.573517,0.571975,0.957564,0.0861029,0.102854,0.911696,0.908459,0.782534,0.626512,0.185674,0.0417209,0.808183,0.98536,0.177387,0.358875,0.0845286,0.767729,0.01497,0.741349,0.377595,0.871037,0.0525357,0.716819,0.474011,0.143705,0.355366,0.385108,0.034433,0.522792,0.0973167,0.348256,0.70805,0.0528243,0.775321,0.244574,0.975289,0.925197,0.568155,0.0295722,0.729125,0.0902925,0.255906,0.565643,0.877033,0.186082,0.112158,0.745517,0.944851,0.228251,0.307297,0.938459,0.960275,0.291189,0.558933,0.348681,0.663812,0.440779,0.523543,0.195451,0.994585,0.812656,0.123292,0.560798,0.399945,0.989306,0.857369,0.446649,0.55596,0.38307,0.435322,0.299402,0.603477,0.275655,0.897589,0.239067,0.484403,0.323173,0.62819,0.730821,0.00608653,0.491014,0.287078,0.358974,0.677247,0.515662,0.0745904,0.828979,0.0440939,0.336515,0.320559,0.134686,0.910566,0.725486,0.101988,0.531626,0.125635,0.344193,0.619899,0.0746203,0.663129,0.346219,0.44853,0.745072,0.340389,0.480048,0.191092,0.642955,0.545631,0.530578,0.813481,0.907878,0.893948,0.822562,0.647541,0.978328,0.195319,0.77708,0.220369,0.586837,0.238949,0.190062,0.0642602,0.215055,0.387592,0.451128,0.245331,0.801811,0.867293,0.352276,0.8747,0.446457,0.604071,0.771386,0.898456,0.0271968,0.636476,0.40892,0.141837,0.501956,0.973928,0.54192,0.695627,0.705307,0.341231,0.463229,0.329546,0.382863,0.0113965,0.205468,0.388438,0.877541,0.537321,0.547461,0.941046,0.683845,0.0954857,0.950832,0.448164,0.0344475,0.78503,0.129509,0.540862,0.529864,0.493736,0.685048,0.610862,0.809047,0.526681,0.892363,0.203428,0.799266,0.65494,0.0504533,0.272262,0.812409,0.0372474,0.564485,0.693884,0.420585,0.854768,0.603494,0.947549,0.705721,0.620706,0.654135,0.507339,0.221821,0.0543221,0.0169637,0.89532,0.710424,0.948116,0.577342,0.0382414,0.961559,0.590941,0.504884,0.882993,0.936381,0.452899,0.237589,0.103476,0.549467,0.478994,0.878157,0.748649,0.534147,0.985364,0.292378,0.704912,0.115512,0.650485,0.0928329,0.678572,0.490613,0.0986148,0.660355,0.776637,0.545106,0.472032,0.747235,0.419,0.499875,0.917557,0.193405,0.182156,0.751838,0.56977,0.467822,0.0551691,0.298469,0.465178,0.934286,0.0681769,0.546549,0.149686,0.871486,0.371783,0.56943,0.647781,0.870878,0.991375,0.835516,0.168028,0.838692,0.826635,0.76656,0.774999,0.318711,0.084078,0.91052,0.797211,0.794496,0.249201,0.477773,0.0898665,0.853915,0.65917,0.0618827,0.533062,0.79232,0.0923662,0.281235,0.480865,0.823737,0.0508116,0.492551,0.85154,0.750998,0.574842,0.517417,0.771088,0.627409,0.113891,0.654606,0.766024,0.451225,0.975041,0.0600157,0.474319,0.634959,0.396137,0.942847,0.263094,0.469418,0.199364,0.315178,0.619917,0.598312,0.870706,0.18174,0.48006,0.893584,0.861185,0.272231,0.356654,0.390786,0.131074,0.755405,0.133393,0.960497,0.774917,0.987422,0.479684,0.615374,0.518149,0.0865436,0.748589,0.302688,0.684253,0.0609307,0.755445,0.529164,0.787624,0.834694,0.59139,0.685406,0.0917138,0.299517,0.701174,0.0128275,0.153487,0.975139,0.160322,0.131066,0.330884,0.958307,0.650285,0.199536,0.589466,0.387306,0.0803384,0.787081,0.434201,0.119295,0.202639,0.777247,0.480042,0.83801,0.513719,0.597349,0.687056,0.587625,0.0793193,0.607924,0.343533,0.0684696,0.454562,0.907792,0.4961,0.700687,0.368851,0.30647,0.533081,0.102765,0.971058,0.0697892,0.616287,0.805858,0.893398,0.605307,0.812254,0.73086,0.498434,0.27013,0.327101,0.568168,0.119056,0.898502,0.696349,0.472046,0.390868,0.487182,0.748234,0.760518,0.270347,0.305838,0.940048,0.283344,0.652206,0.307515,0.440826,0.809911,0.076823,0.747995,0.313694,0.894674,0.54207,0.998709,0.00200808,0.504686,0.830455,0.42349,0.930582,0.393415,0.205253,0.214308,0.679467,0.0812354,0.834557,0.315874,0.109111,0.628987,0.740057,0.435236,0.330357,0.10023,0.585574,0.810595,0.00454295,0.218968,0.437343,0.72733,0.652069,0.511632,0.0927396,0.441141,0.957384,0.395381,0.88326,0.228824,0.381256,0.260822,0.997154,0.263101,0.984649,0.856294,0.539157,0.856721,0.542701,0.24172,0.602426,0.770353,0.353193,0.406791,0.199364,0.6508,0.838338,0.733083,0.747937,0.402034,0.246459,0.27509,0.29235,0.338108,0.850427,0.231736,0.979769,0.652268,0.861687,0.273489,0.194691,0.901686,0.60104,0.229859,0.929796,0.56647,0.900993,0.159675,0.910882,0.803743,0.86627,0.758849,0.897429,0.57202,0.0870025,0.530225,0.417391,0.674392,0.039227,0.975929,0.382526,0.730346,0.0636775,0.539585,0.698751,0.696755,0.828486,0.491449,0.512843,0.897677,0.989252,0.985176,0.915666,0.261972,0.888425,0.581963,0.399411,0.66806,0.304606,0.238764,0.991373,0.309181,0.302235,0.777133,0.263015,0.000887752,0.61509,0.254245,0.670168,0.577671,0.119923,0.276102,0.610099,0.422168,0.187772,0.899248,0.431605,0.759532,0.656722,0.371988,0.979619,0.842991,0.0110665,0.664867,0.92172,0.881329,0.40093,0.0567348,0.709265,0.20832,0.860229,0.0485763,0.272323,0.346271,0.581772,0.955834,0.312517,0.293217,0.640701,0.390474,0.0135593,0.852111,0.479053,0.02152,0.718122,0.871665,0.464638,0.724317,0.105028,0.735018,0.715639,0.356054,0.490358,0.344493,0.232488,0.266416,0.0573938,0.959486,0.352728,0.354857,0.371173,0.61255,0.363255,0.321243,0.708987,0.481917,0.0289963,0.814828,0.621225,0.210125,0.929029,0.473346,0.624381,0.922016,0.116671,0.0480118,0.944355,0.257627,0.445699,0.546845,0.353827,0.895172,0.114275,0.877224,0.772366,0.797603,0.584946,0.41917,0.0607657,0.751925,0.3298,0.523709,0.628974,0.813756,0.852003,0.567281,0.750649,0.818501,0.771028,0.937871,0.931232,0.0464364,0.479356,0.658805,0.680811,0.779397,0.296235,0.282192,0.255463,0.0323257,0.846606,0.614855,0.561377,0.880709,0.237165,0.278877,0.750162,0.312036,0.495749,0.202282,0.819332,0.880259,0.497486,0.0985449,0.539543,0.0825397,0.210106,0.849038,0.229241,0.690826,0.96252,0.717786,0.655619,0.923217,0.310654,0.65874,0.817158,0.968793,0.156688,0.0834062,0.998659,0.829689,0.345887,0.82695,0.532155,0.220706,0.93669,0.639917,0.420873,0.450615,0.981664,0.881445,0.698797,0.991033,0.00598735,0.207039,0.459198,0.399446,0.716062,0.353956,0.996185,0.944092,0.596243,0.913933,0.0752923,0.164262,0.395656,0.0380554,0.875357,0.611613,0.847104,0.859431,0.545054,0.554403,0.726598,0.871976,0.277532,0.294044,0.151215,0.176019,0.0550125,0.154798,0.106368,0.241603,0.32665,0.670968,0.570957,0.0921742,0.860808,0.82762,0.433257,0.152219,0.922491,0.286563,0.96436,0.32551,0.962724,0.00216508,0.682773,0.153951,0.811273,0.0448977,0.8367,0.949084,0.191427,0.286753,0.814046,0.0742288,0.941372,0.75602,0.832092,0.436186,0.780957,0.865495,0.749963,0.229599,0.352095,0.242759,0.913081,0.57402,0.925029,0.493304,0.70604,0.878988,0.252511,0.469799,0.722692,0.988583,0.885412,0.73036,0.414183,0.797016,0.218001,0.0169421,0.41667,0.159653,0.721341,0.508402,0.176828,0.0482014,0.573668,0.680678,0.0150929,0.802867,0.590018,0.210857,|0.370372,0.604297,0.730102,0.368911,0.359721,0.0993409,0.0527627,0.234246,0.0362585,0.859127,0.359296,0.525213,0.195782,0.143836,0.714723,0.0759035,0.515798,0.979319,0.369646,0.746707,0.0284681,0.425061,0.609281,0.164131,0.405476,0.254866,0.631169,0.54128,0.403325,0.12628,0.852697,0.982587,0.380963,0.70177,0.817406,0.959898,0.100179,0.713961,0.160157,0.280586,0.0207406,0.851951,0.0970688,0.659014,0.640311,0.537893,0.316195,0.286005,0.764454,0.98184,0.738439,0.347036,0.809943,0.151983,0.520343,0.685988,0.023899,0.236676,0.731699,0.417685,0.242109,0.771887,0.615719,0.574566,0.480364,0.157419,0.708783,0.586349,0.320767,0.778686,0.981273,0.0457541,0.624329,0.524097,0.379669,0.553137,0.845883,0.660961,0.0987052,0.845623,0.192101,0.612446,0.314156,0.858841,0.808677,0.44814,0.352565,0.362063,0.131407,0.234572,0.849302,0.760239,0.521358,0.483482,0.504962,0.919531,0.684428,0.958768,0.269844,0.316819,0.798139,0.1813,0.448872,0.29533,0.432085,0.56757,0.0561554,0.730471,0.236388,0.0782877,0.231842,0.82006,0.438086,0.351189,0.391152,0.638305,0.412747,0.0635733,0.834059,0.511976,0.253573,0.910008,0.957513,0.977497,0.555562,0.772245,0.790726,0.218277,0.628315,0.825871,0.588142,0.537616,0.654621,0.889103,0.833576,0.474242,0.231133,0.454318,0.0361182,0.488748,0.000705361,0.530441,0.333682,0.763438,0.122336,0.174471,0.503357,0.734165,0.6184,0.445287,0.510506,0.794529,0.499351,0.230272,0.856409,0.918549,0.268177,0.259464,0.137997,0.856591,0.950371,0.284875,0.36687,0.482289,0.118768,0.508644,0.749943,0.543673,0.109395,0.449603,0.838222,0.0223791,0.880674,0.234918,0.905228,0.829105,0.553416,0.910162,0.959661,0.812453,0.644857,0.163704,0.252168,0.13971,0.874038,0.951788,0.0632975,0.0237059,0.654465,0.576015,0.247388,0.698783,0.16082,0.785775,0.25136,0.602119,0.596079,0.799455,0.342525,0.0239108,0.97693,0.843894,0.289955,0.59397,0.00411224,0.137514,0.85811,0.499591,0.925422,0.36941,0.156473,0.174546,0.964263,0.746755,0.28034,0.106083,0.0549197,0.390403,0.569593,0.0913271,0.920646,0.889451,0.781886,0.711173,0.940489,0.726708,0.0737931,0.66232,0.890053,0.117424,0.95146,0.445506,0.590669,0.923852,0.9984,0.164977,0.118363,0.988849,0.989673,0.035957,0.968509,0.188926,0.953384,0.00664127,0.721241,0.503631,0.871121,0.93457,0.126419,0.731321,0.696397,0.793535,0.854361,0.182669,0.0249239,0.872433,0.756298,0.00985205,0.282746,0.103287,0.20989,0.751462,0.416817,0.958661,0.859716,0.156851,0.394556,0.598132,0.137303,0.911638,0.328911,0.715919,0.801726,0.94265,0.236785,0.686408,0.94128,0.451949,0.19025,0.910941,0.603941,0.177855,0.901647,0.272548,0.897343,0.697943,0.237476,0.631397,0.600019,0.376189,0.69155,0.818192,0.0894158,0.405276,0.148004,0.380526,0.724879,0.92085,0.278335,0.191919,0.981918,0.72814,0.227344,0.56267,0.945315,0.759276,0.591836,0.860743,0.701601,0.980998,0.768982,0.967384,0.98948,0.0336886,0.955159,0.125106,0.481054,0.254784,0.246046,0.850996,0.359616,0.489454,0.357454,0.785325,0.0203881,0.31587,0.559402,0.429452,0.78804,0.542409,0.541404,0.695041,0.0514901,0.714565,0.0268303,0.77034,0.441466,0.418086,0.855814,0.751977,0.120334,0.480798,0.920875,0.123228,0.0553629,0.427607,0.919213,0.30956,0.803199,0.643181,0.204066,0.500509,0.775657,0.00738508,0.456159,0.966558,0.593097,0.959521,0.275683,0.594658,0.656234,0.468115,0.638999,0.993869,0.39903,0.802549,0.0467113,0.807881,0.998382,0.684431,0.183539,0.198299,0.0617774,0.208577,0.0484241,0.602758,0.583409,0.285247,0.692031,0.458483,0.068285,0.874856,0.986614,0.532512,0.0780901,0.326756,0.939898,0.357885,0.875433,0.683536,0.567977,0.963225,0.200805,0.672809,0.818159,0.282903,0.206966,0.180592,0.470663,0.615498,0.394585,0.858547,0.929918,0.0408925,0.190179,0.309987,0.2376,0.381371,0.491562,0.209982,0.695698,0.439295,0.623042,0.570148,0.741629,0.204015,0.479358,0.391614,0.343947,0.144623,0.89938,0.232909,0.0307993,0.537998,0.368657,0.936095,0.40207,0.0784169,0.263466,0.707532,0.191816,0.0373138,0.447251,0.454609,0.191149,0.346285,0.94844,0.421753,0.265826,0.759433,0.706022,0.870926,0.325224,0.756238,0.11315,0.0349613,0.486265,0.371659,0.884432,0.203312,0.909268,0.0196438,0.124243,0.582259,0.843936,0.157238,0.782259,0.262385,0.121116,0.877079,0.566409,0.0808184,0.282682,0.500676,0.035691,0.633385,0.934113,0.579904,0.746368,0.986691,0.0460885,0.98832,0.737479,0.553849,0.0656883,0.865873,0.993223,0.998748,0.310017,0.831113,0.517899,0.872791,0.435688,0.148467,0.0137588,0.740074,0.907524,0.811332,0.468878,0.84361,0.631343,0.771531,0.469254,0.363871,0.186796,0.384348,0.120625,0.301217,0.737241,0.648261,0.00449425,0.336941,0.216076,0.811134,0.803133,0.290963,0.91168,0.261766,0.635397,0.431424,0.0920274,0.0198631,0.733277,0.0130346,0.150267,0.448886,0.0270978,0.592187,0.666223,0.681497,0.875959,0.284966,0.908567,0.846357,0.14216,0.994821,0.919117,0.922384,0.406939,0.605061,0.0297304,0.550292,0.413504,0.121207,0.342,0.915591,0.130598,0.566013,0.969295,0.563314,0.756397,0.888479,0.582235,0.671133,0.467822,0.938557,0.523709,0.977693,0.474531,0.291251,0.130767,0.91319,0.0812107,0.923207,0.726565,0.935595,0.500556,0.138464,0.314661,0.512877,0.833946,0.754201,0.409092,0.875138,0.435226,0.953951,0.679614,0.691354,0.365897,0.205559,0.955328,0.102209,0.149515,0.292135,0.736148,0.883542,0.315529,0.320528,0.0339162,0.244269,0.984723,0.450166,0.178883,0.934878,0.620096,0.599032,0.98279,0.519174,0.170677,0.776407,0.465529,0.0239563,0.178572,0.751137,0.951265,0.404167,0.71324,0.0751767,0.0216981,0.188967,0.00801444,0.503607,0.195205,0.0405724,0.565459,0.349572,0.988056,0.353497,0.884277,0.149972,0.42864,0.390766,0.280061,0.596532,0.608685,0.708288,0.330173,0.508876,0.924453,0.115408,0.921712,0.0816849,0.0570849,0.415637,0.409456,0.494267,0.734435,0.471885,0.86415,0.387918,0.585076,0.402229,0.5717,0.316547,0.303544,0.919832,0.0350393,0.60433,0.708218,0.512448,0.721586,0.177333,0.862857,0.416439,0.404699,0.483214,0.719569,0.475407,0.842349,0.286527,0.103533,0.702466,0.353153,0.0450687,0.436095,0.986673,0.425158,0.682786,0.0433056,0.327155,0.173722,0.564506,0.352612,0.352087,0.442144,0.692336,0.173709,0.0737114,0.769847,0.419932,0.838595,0.807225,0.175435,0.779513,0.981623,0.631561,0.880327,0.159847,0.756202,0.766181,0.273649,0.000254333,0.925555,0.889965,0.32099,0.0902579,0.62222,0.225954,0.727103,0.0354788,0.0235066,0.381793,0.159965,0.73677,0.0143355,0.109839,0.433667,0.663175,0.262346,0.374441,0.624185,0.102965,0.456602,0.227609,0.415979,0.800471,0.488884,0.331767,0.84736,0.14232,0.287342,0.575337,0.679129,0.884649,0.60811,0.32454,0.688478,0.643575,0.5499,0.536126,0.421277,0.81276,0.668088,0.0419461,0.893353,0.842414,0.424625,0.898688,0.0304514,0.642238,0.545059,0.113996,0.901476,0.627398,0.68598,0.455177,0.626198,0.625423,0.400074,0.286308,0.965512,0.944803,0.0410577,0.993813,0.14038,0.279499,0.0923893,0.258236,0.237084,0.355067,0.182491,0.509876,0.625268,0.801377,0.518056,0.0985715,0.839844,0.689911,0.0249831,0.658783,0.964968,0.785905,0.269016,0.340017,0.662843,0.0439506,0.750243,0.815884,0.0551505,0.894858,0.393359,0.248267,0.908621,0.685356,0.304893,0.411437,0.712248,0.51667,0.654798,0.580916,0.743601,0.604792,0.704098,0.410866,0.935493,0.781979,0.252128,0.30528,0.3117,0.273687,0.938829,0.216256,0.92074,0.249475,0.8528,0.47613,0.56149,0.616971,0.317326,0.979976,0.544382,0.918456,0.232647,0.684058,0.663132,0.811671,0.84044,0.708076,0.409741,0.12411,0.57613,0.0624309,0.0188032,0.958483,0.771664,0.142532,0.747748,0.129797,0.809785,0.109375,0.493642,0.900487,0.301603,0.984643,0.734858,0.841116,0.149777,0.645586,0.778372,0.318722,0.596783,0.865586,0.137343,0.533494,0.0305744,0.0995888,0.00506151,0.592212,0.178007,0.223584,0.786194,0.42843,0.894822,0.294265,0.292131,0.029768,0.242669,0.643684,0.159183,0.958699,0.757948,0.608216,0.405668,0.941298,0.612211,0.154091,0.302464,0.421152,0.860119,0.568893,0.298973,0.362396,0.962849,0.0608078,0.128825,0.750557,0.981249,0.494575,0.599256,0.559752,0.192765,0.0196971,0.845114,0.305054,0.541897,0.61164,0.00199801,0.38211,0.763216,0.0712622,0.315773,0.356068,0.32405,0.231134,0.40198,0.518178,0.966226,0.240724,0.643906,0.000505984,0.57852,0.364116,0.88332,0.548543,0.982467,0.762787,0.770133,0.0923086,0.41591,0.901169,0.30658,0.733044,0.673811,0.867736,0.392289,0.45831,0.449255,0.0777736,0.33396,0.057703,0.0474229,0.53764,0.213154,0.166831,0.0798028,0.542623,0.00390351,0.979203,0.0826219,0.537237,0.773998,0.86691,0.778822,0.15952,0.543205,0.585569,0.327149,0.610582,0.850038,0.196305,0.679336,0.402452,0.225368,0.144566,0.939664,0.897429,0.836258,0.917106,0.995426,0.395587,0.967814,0.449287,0.0552768,0.0885634,0.66143,0.18942,0.87693,0.53041,0.927762,0.984553,0.843026,0.244883,0.319769,0.759263,0.841638,0.4443,0.967688,0.0572845,0.531359,0.219853,0.263716,0.746606,0.143737,0.615782,0.675436,0.896372,0.965703,0.897188,0.443314,0.361851,0.20335,0.826458,0.40526,0.0675343,0.951925,0.721219,0.958818,0.652208,0.970398,0.539036,0.690923,0.00892365,0.0560292,0.781208,0.972864,0.467283,0.89844,0.662748,0.981228,0.595183,0.302984,0.729328,0.422778,0.458945,0.750505,0.373033,0.667478,0.149895,0.478154,0.281706,|0.512647,0.558862,0.372337,0.0731742,0.760696,0.947212,0.127344,0.791039,0.159005,0.800486,0.626929,0.531169,0.321346,0.160283,0.155712,0.842086,0.823137,0.95789,0.58779,0.99962,0.691091,0.780152,0.811684,0.98366,0.748898,0.762083,0.62511,0.419086,0.137267,0.146197,0.81451,0.363585,0.134863,0.136606,0.708576,0.557181,0.228896,0.0990453,0.210723,0.555513,0.27529,0.892514,0.594914,0.0760361,0.919806,0.0784596,0.684908,0.393173,0.956988,0.221907,0.651097,0.595404,0.905997,0.684728,0.517058,0.81725,0.930003,0.169718,0.696849,0.504968,0.498029,0.554248,0.671145,0.090898,0.67833,0.838146,0.335105,0.281333,0.347745,0.211146,0.0340285,0.346392,0.63777,0.673685,0.701505,0.231536,0.258568,0.735866,0.0322369,0.841925,0.0352342,0.677086,0.559832,0.0768969,0.187998,0.214415,0.770998,0.307829,0.70448,0.575609,0.784842,0.351587,0.926745,0.696415,0.389796,0.253285,0.155808,0.73278,0.911355,0.28637,0.592029,0.863557,0.284605,0.250168,0.795439,0.952425,0.585724,0.173132,0.692266,0.130224,0.809527,0.619446,0.907631,0.548898,0.551214,0.992727,0.868604,0.38976,0.539236,0.908282,0.181974,0.32632,0.257565,0.369195,0.469891,0.660962,0.586773,0.883921,0.900725,0.267411,0.676058,0.129824,0.516339,0.0947579,0.976243,0.153873,0.547815,0.972551,0.356324,0.909621,0.775263,0.394336,0.886194,0.315167,0.0117142,0.895779,0.549295,0.631217,0.353431,0.335246,0.439691,0.758127,0.796466,0.954083,0.152033,0.208871,0.0392125,0.749965,0.315572,0.217018,0.591087,0.189852,0.89559,0.702417,0.475108,0.158986,0.503616,0.0808151,0.322794,0.748618,0.615457,0.486819,0.201857,0.0180188,0.353178,0.875753,0.717492,0.974975,0.458496,0.388661,0.35641,0.892158,0.405612,0.67351,0.0849301,0.183219,0.962035,0.295085,0.792453,0.976263,0.104859,0.578599,0.232426,0.583556,0.197906,0.567823,0.221698,0.136267,0.0605456,0.635292,0.558016,0.915309,0.346315,0.192462,0.378946,0.466653,0.813446,0.448654,0.377445,0.461114,0.658074,0.0897961,0.426735,0.421804,0.926051,0.597742,0.558445,0.950275,0.438247,0.361047,0.307842,0.490753,0.849725,0.407029,0.502826,0.901488,0.877215,0.00973642,0.803461,0.0678693,0.509484,0.75011,0.18525,0.170067,0.513293,0.63276,0.630442,0.190487,0.801596,0.94036,0.781161,0.449007,0.231245,0.0608931,0.0457174,0.26422,0.801135,0.856459,0.900582,0.86104,0.0998586,0.254001,0.162152,0.496228,0.95129,0.460671,0.696056,0.422742,0.77083,0.332929,0.596173,0.653267,0.267871,0.251252,0.0766323,0.819028,0.615257,0.384933,0.157676,0.796851,0.219752,0.924976,0.467128,0.78712,0.649629,0.187525,0.382327,0.927417,0.492181,0.459977,0.304319,0.86618,0.58591,0.890068,0.462107,0.192761,0.300862,0.708193,0.332631,0.708644,0.216133,0.159919,0.364128,0.132416,0.465897,0.583825,0.475637,0.862556,0.101494,0.365544,0.233249,0.855075,0.204539,0.268603,0.779543,0.398948,0.696915,0.428455,0.172523,0.883975,0.648957,0.162344,0.450495,0.582192,0.844256,0.73798,0.833127,0.696795,0.268256,0.612605,0.800792,0.832397,0.206951,0.282578,0.0175721,0.97029,0.189713,0.0195985,0.162994,0.870764,0.452207,0.957954,0.373169,0.844574,0.241034,0.520246,0.692603,0.604193,0.00514758,0.43983,0.183668,0.868786,0.904175,0.607416,0.757062,0.588625,0.769031,0.785455,0.332626,0.785171,0.198828,0.0702306,0.0657514,0.336451,0.0143008,0.0215154,0.486138,0.315309,0.0521515,0.123718,0.901733,0.862014,0.904791,0.909941,0.605461,0.0848764,0.0916008,0.349566,0.531182,0.219177,0.795414,0.750393,0.135714,0.494827,0.675048,0.493778,0.722069,0.977583,0.9769,0.910194,0.87005,0.87247,0.400486,0.200787,0.419617,0.474785,0.479607,0.639651,0.959491,0.639547,0.988453,0.689864,0.345947,0.636835,0.282593,0.82789,0.209671,0.300633,0.974839,0.511526,0.900871,0.839295,0.683417,0.603445,0.996512,0.426498,0.139788,0.397827,0.98189,0.996481,0.934477,0.0142987,0.775754,0.283901,0.943873,0.920753,0.736945,0.940142,0.596923,0.404673,0.925293,0.235148,0.375166,0.453792,0.916376,0.192585,0.114979,0.936418,0.310217,0.562549,0.714357,0.74316,0.321859,0.953562,0.048479,0.658314,0.589194,0.75661,0.6499,0.175888,0.969807,0.798051,0.527245,0.660373,0.439103,0.555991,0.7587,0.565895,0.170145,0.470298,0.266083,0.926614,0.773844,0.740982,0.0365022,0.0874617,0.198604,0.677319,0.0471596,0.197672,0.0626777,0.668045,0.250874,0.396105,0.224326,0.57448,0.499395,0.586179,0.950834,0.532879,0.533072,0.112773,0.768311,0.795697,0.666084,0.826904,0.196151,0.919354,0.682751,0.284218,0.84126,0.371462,0.119432,0.0725628,0.712897,0.0375064,0.866143,0.440761,0.495584,0.768603,0.0120797,0.900715,0.0314191,0.474801,0.280071,0.0670289,0.439539,0.0482609,0.215017,0.617426,0.800586,0.60233,0.445421,0.424294,0.283905,0.263914,0.966045,0.329685,0.641338,0.158985,0.685045,0.0702073,0.0617306,0.533647,0.832291,0.330401,0.00303024,0.200794,0.513258,0.819053,0.556835,0.886786,0.29515,0.726958,0.984007,0.164778,0.173125,0.977782,0.048412,0.605402,0.0444592,0.210288,0.40746,0.51544,0.388035,0.352146,0.00655824,0.429884,0.798636,0.652852,0.665296,0.904588,0.941937,0.370204,0.451982,0.13006,0.327493,0.556462,0.886751,0.460214,0.868202,0.667845,0.0352743,0.766007,0.540638,0.671286,0.226895,0.643418,0.774553,0.346258,0.789469,0.455189,0.242748,0.203551,0.814431,0.474444,0.228875,0.673631,0.45708,0.789028,0.455096,0.299117,0.821794,0.317492,0.933759,0.626956,0.798812,0.854523,0.2167,0.927099,0.919458,0.282055,0.207869,0.838623,0.271412,0.203057,0.484532,0.0762925,0.184742,0.937603,0.900092,0.324575,0.606952,0.618089,0.130008,0.386855,0.902532,0.0878073,0.492192,0.323902,0.781662,0.858695,0.319156,0.554841,0.506734,0.351393,0.57499,0.574296,0.198059,0.573177,0.268542,0.970373,0.482983,0.826951,0.538065,0.110505,0.527428,0.234806,0.0734969,0.000927627,0.941069,0.628701,0.835872,0.415887,0.400249,0.176637,0.395606,0.0896443,0.406385,0.32943,0.594885,0.817629,0.354281,0.292108,0.956897,0.44001,0.626748,0.00619477,0.0987256,0.470499,0.538677,0.426202,0.114434,0.46612,0.0437288,0.750101,0.0210353,0.405121,0.619216,0.809454,0.357514,0.3313,0.374008,0.511481,0.127904,0.504318,0.0820324,0.573402,0.589105,0.663501,0.162215,0.825086,0.39251,0.916499,0.848875,0.46031,0.368666,0.00728714,0.148968,0.441392,0.374122,0.93499,0.12392,0.563746,0.0402524,0.728859,0.328679,0.636618,0.726442,0.365973,0.168819,0.750592,0.814475,0.0423594,0.804969,0.539164,0.840785,0.0328003,0.278855,0.446638,0.898725,0.675241,0.250924,0.124947,0.0724218,0.535053,0.989515,0.5371,0.576372,0.961831,0.899257,0.133801,0.472461,0.740167,0.822959,0.634371,0.308,0.0217472,0.878248,0.183972,0.116577,0.876105,0.832999,0.907094,0.342668,0.524697,0.0593068,0.804169,0.677405,0.667957,0.851696,0.922518,0.440946,0.920835,0.25862,0.425842,0.424726,0.563201,0.0257322,0.649505,0.170329,0.019434,0.679933,0.66889,0.86524,0.633989,0.676534,0.144037,0.0882689,0.0335655,0.578657,0.969037,0.345866,0.759449,0.682896,0.91069,0.945899,0.647558,0.4347,0.347934,0.572906,0.53581,0.536864,0.934366,0.511206,0.634404,0.129204,0.774342,0.655735,0.804587,0.0544312,0.396532,0.138103,0.737918,0.0432906,0.698611,0.459699,0.546601,0.387007,0.161733,0.930376,0.179196,0.693982,0.753404,0.515838,0.356184,0.403813,0.256918,0.675841,0.255369,0.356725,0.675755,0.357722,0.0839251,0.751268,0.12652,0.284691,0.895216,0.489899,0.749355,0.569869,0.742059,0.339845,0.0402733,0.425361,0.55443,0.298178,0.240675,0.623567,0.701388,0.15109,0.0414512,0.826562,0.640079,0.701316,0.239612,0.46788,0.19201,0.609951,0.429729,0.74905,0.396426,0.860133,0.477046,0.139469,0.228977,0.922378,0.391935,0.657957,0.366296,0.475943,0.644462,0.200136,0.759147,0.93407,0.143843,0.426226,0.360841,0.435584,0.467581,0.841031,0.452419,0.543213,0.242963,0.575231,0.131407,0.733419,0.578159,0.515992,0.31763,0.744657,0.154071,0.850784,0.617863,0.0838573,0.322977,0.456538,0.186149,0.717617,0.26748,0.711185,0.584803,0.356805,0.553947,0.786412,0.325556,0.931569,0.904178,0.852933,0.0265515,0.846504,0.538302,0.118312,0.639613,0.4408,0.566836,0.703161,0.173561,0.62131,0.670854,0.844838,0.319779,0.399319,0.49914,0.138879,0.788197,0.473987,0.0151352,0.495571,0.943705,0.623368,0.463272,0.758092,0.360309,0.766635,0.120412,0.556173,0.500375,0.212007,0.325749,0.0199361,0.0990037,0.923953,0.696662,0.804443,0.668936,0.529948,0.959775,0.211346,0.874379,0.819076,0.839959,0.260849,0.913389,0.734653,0.982911,0.356744,0.806481,0.113485,0.381179,0.949784,0.78593,0.439188,0.747101,0.341766,0.0863198,0.865158,0.940837,0.253911,0.706726,0.691321,0.813279,0.103431,0.633322,0.644901,0.145759,0.619295,0.477568,0.527294,0.868351,0.698403,0.614958,0.74675,0.700761,0.314378,0.0669618,0.22412,0.998976,0.809942,0.50251,0.105548,0.892775,0.648039,0.682575,0.12202,0.723682,0.0662189,0.211675,0.149465,0.467198,0.912023,0.558768,0.217347,0.954515,0.533478,0.216866,0.667019,0.152452,0.758427,0.00167561,0.808856,0.65168,0.189076,0.204112,0.906031,0.351562,0.464551,0.0761682,0.890796,0.204374,0.293461,0.104116,0.482306,0.470826,0.82895,0.400713,0.698284,0.52084,0.515581,0.357024,0.542224,0.935064,0.912903,0.825426,0.634506,0.746585,0.210384,0.736389,0.83939,0.97154,0.328041,0.14135,0.291855,0.626616,0.7168,0.482206,0.328743,0.136208,0.486193,0.226122,|0.581709,0.62104,0.371878,0.82629,0.887863,0.654699,0.832858,0.512693,0.315842,0.195811,0.20478,0.814335,0.12344,0.0033927,0.96309,0.695709,0.0772084,0.407143,0.044125,0.299993,0.533482,0.13412,0.120431,0.476082,0.844625,0.74558,0.811642,0.204216,0.679727,0.437788,0.489162,0.796242,0.0032118,0.966435,0.627341,0.876485,0.244868,0.620959,0.748974,0.311874,0.979902,0.421783,0.141684,0.692273,0.587153,0.441919,0.440419,0.815444,0.669587,0.889711,0.652515,0.0244523,0.238628,0.636065,0.0605285,0.884314,0.60171,0.66157,0.739952,0.0970361,0.673791,0.850592,0.247959,0.0222068,0.183388,0.142377,0.159588,0.753921,0.90084,0.925364,0.632877,0.178929,0.990683,0.301308,0.551405,0.589211,0.962108,0.659363,0.372029,0.310958,0.482639,0.10854,0.55514,0.217143,0.355909,0.951912,0.63987,0.458661,0.931644,0.560801,0.123823,0.971261,0.620478,0.080494,0.600605,0.106793,0.155947,0.963608,0.282641,0.218912,0.25054,0.240608,0.986789,0.606008,0.67496,0.182432,0.0583009,0.539942,0.356918,0.520012,0.713063,0.280537,0.683889,0.429113,0.958994,0.630292,0.736645,0.688387,0.587622,0.0750981,0.281236,0.254589,0.958904,0.869305,0.708904,0.118082,0.169629,0.437373,0.887502,0.240823,0.0943617,0.156287,0.506504,0.274754,0.280664,0.934626,0.302253,0.871612,0.568653,0.493666,0.500093,0.306015,0.895506,0.545121,0.851614,0.762635,0.852984,0.786252,0.638056,0.933531,0.738822,0.763252,0.909364,0.279968,0.598337,0.65798,0.4831,0.825384,0.339164,0.854944,0.52248,0.198313,0.026924,0.941295,0.753252,0.278219,0.625886,0.176001,0.874223,0.0417787,0.0999993,0.0662663,0.603618,0.869531,0.733348,0.290452,0.698754,0.306435,0.103797,0.891395,0.625688,0.322593,0.321204,0.0850991,0.747178,0.85179,0.804003,0.620933,0.881642,0.556148,0.664161,0.144895,0.576582,0.966081,0.152288,0.751063,0.730824,0.235088,0.387227,0.718284,0.965634,0.890815,0.0273977,0.465607,0.432669,0.177232,0.641106,0.226212,0.140475,0.394371,0.1989,0.196342,0.531176,0.641426,0.91105,0.601626,0.0314041,0.328831,0.539228,0.300977,0.771621,0.7381,0.668222,0.226802,0.528152,0.955345,0.44064,0.434284,0.472709,0.998174,0.436403,0.183034,0.464698,0.496019,0.771433,0.911136,0.69856,0.635651,0.811238,0.245427,0.0119927,0.374898,0.599298,0.883449,0.289577,0.58812,0.99495,0.400198,0.920289,0.941155,0.806188,0.0113402,0.647096,0.319453,0.66705,0.801692,0.156966,0.66378,0.367518,0.727826,0.674783,0.0721846,0.22725,0.410003,0.673933,0.762044,0.518055,0.0488466,0.308309,0.444169,0.766564,0.939022,0.0309519,0.842545,0.665152,0.486305,0.314433,0.926723,0.365264,0.991034,0.112754,0.0822796,0.755152,0.523458,0.70588,0.131372,0.97071,0.942378,0.552725,0.69907,0.00525528,0.582946,0.542185,0.940418,0.485987,0.529294,0.358665,0.838823,0.431517,0.00982505,0.303589,0.880087,0.772183,0.865507,0.695515,0.95602,0.480039,0.114324,0.698029,0.296118,0.358426,0.504293,0.729938,0.927798,0.597677,0.927119,0.970641,0.693148,0.61257,0.77173,0.0296274,0.816207,0.701794,0.176901,0.0692619,0.959849,0.848866,0.457344,0.188705,0.93978,0.502874,0.945012,0.742683,0.480359,0.0585086,0.988885,0.66077,0.0435257,0.534942,0.953474,0.407434,0.681229,0.237409,0.709937,0.804399,0.16001,0.704688,0.779712,0.295202,0.175435,0.469829,0.645823,0.0394055,0.39547,0.197712,0.722138,0.852015,0.13276,0.504671,0.439073,0.416185,0.609827,0.881362,0.920072,0.680601,0.372429,0.377421,0.407252,0.954308,0.727274,0.279301,0.396475,0.976711,0.604537,0.149863,0.717972,0.148194,0.510628,0.958502,0.652645,0.616639,0.781585,0.902178,0.784274,0.0914353,0.357444,0.878628,0.556907,0.478922,0.250544,0.528744,0.791215,0.283279,0.937807,0.380672,0.0869297,0.15873,0.510195,0.928937,0.718855,0.590236,0.115678,0.126312,0.0886563,0.940449,0.34873,0.9969,0.262508,0.628248,0.626683,0.425183,0.145673,0.366581,0.906391,0.219843,0.668361,0.980215,0.660955,0.11413,0.76046,0.437329,0.565735,0.210416,0.545602,0.805891,0.286918,0.365807,0.789031,0.432889,0.195923,0.240837,0.0945297,0.602137,0.487052,0.639229,0.253163,0.248891,0.553303,0.242379,0.0526741,0.904105,0.860992,0.67215,0.879776,0.528744,0.45307,0.857104,0.288823,0.184209,0.528938,0.276665,0.807424,0.33205,0.750396,0.469353,0.0998251,0.716841,0.560401,0.1023,0.654286,0.748219,0.942514,0.657133,0.223711,0.336859,0.29919,0.640957,0.478799,0.436583,0.510563,0.0360705,0.460847,0.31172,0.452307,0.453625,0.719567,0.241487,0.241549,0.924555,0.20777,0.396596,0.995346,0.021323,0.903992,0.452311,0.909453,0.143554,0.895269,0.919781,0.611054,0.414068,0.31107,0.233865,0.569294,0.964222,0.263499,0.043937,0.632854,0.897575,0.881208,0.226163,0.17103,0.766072,0.456336,0.846337,0.76866,0.926434,0.207645,0.256554,0.118743,0.34822,0.0486088,0.535785,0.678824,0.261588,0.179963,0.368132,0.978547,0.478128,0.192305,0.220237,0.274718,0.971263,0.926998,0.423359,0.548002,0.349974,0.116653,0.0928212,0.169981,0.542729,0.851947,0.528489,0.27615,0.431371,0.771157,0.461366,0.931484,0.996328,0.0680126,0.432258,0.423156,0.419689,0.319404,0.59176,0.521878,0.544351,0.621495,0.646006,0.376575,0.601339,0.416134,0.355111,0.477455,0.56239,0.689073,0.299303,0.84825,0.861415,0.796732,0.794784,0.3478,0.404888,0.7489,0.72464,0.695606,0.288253,0.841268,0.519923,0.153673,0.993955,0.436832,0.449112,0.440014,0.532636,0.0595354,0.0707399,0.745734,0.577153,0.966423,0.577649,0.433729,0.299033,0.176358,0.752993,0.600568,0.701345,0.797338,0.184479,0.663609,0.907398,0.511937,0.194862,0.939852,0.431963,0.0509588,0.983915,0.422327,0.971979,0.517241,0.204076,0.51014,0.76592,0.980147,0.179895,0.54844,0.973887,0.734003,0.655021,0.538124,0.808342,0.790734,0.0255855,0.778715,0.534778,0.396214,0.487431,0.678137,0.164835,0.746494,0.0876432,0.100287,0.951809,0.808977,0.606582,0.564807,0.832257,0.282742,0.775014,0.848206,0.376666,0.611516,0.455093,0.914953,0.18081,0.441711,0.0788901,0.866049,0.978821,0.0137225,0.201071,0.675398,0.215413,0.644093,0.221516,0.848222,0.904849,0.652523,0.785149,0.0410907,0.573511,0.684559,0.22562,0.67032,0.821831,0.953093,0.0404353,0.178568,0.0748968,0.634799,0.047251,0.0028258,0.75354,0.978511,0.0498536,0.208149,0.190582,0.238422,0.0708197,0.28313,0.187379,0.660825,0.249453,0.124158,0.279142,0.532996,0.609663,0.148151,0.658314,0.15964,0.496086,0.859098,0.153647,0.891751,0.129225,0.45945,0.108733,0.516106,0.58464,0.318764,0.185405,0.249605,0.591921,0.588238,0.728757,0.385691,0.523344,0.0515478,0.977437,0.841467,0.665501,0.655783,0.340033,0.168982,0.283157,0.336244,0.706612,0.665048,0.682934,0.793841,0.907659,0.791324,0.697479,0.072435,0.821911,0.57327,0.0513414,0.777988,0.241958,0.283383,0.338297,0.0540427,0.607048,0.602899,0.532057,0.519952,0.960509,0.719504,0.737397,0.990595,0.944542,0.229201,0.847976,0.036877,0.878279,0.990459,0.613417,0.0545343,0.0134656,0.891157,0.125542,0.190311,0.0758609,0.0360565,0.748493,0.435528,0.24912,0.97431,0.977564,0.300289,0.813547,0.964113,0.813361,0.975145,0.278416,0.806733,0.595527,0.446547,0.988716,0.159442,0.76334,0.190304,0.72615,0.990515,0.125397,0.211762,0.672399,0.918443,0.0115787,0.769458,0.378409,0.674282,0.869771,0.0686752,0.549256,0.318152,0.127651,0.761735,0.427722,0.64143,0.788309,0.262724,0.23963,0.802111,0.359175,0.301915,0.697941,0.853692,0.732014,0.798895,0.0810071,0.371842,0.550813,0.471555,0.463205,0.519827,0.179641,0.286401,0.401515,0.284057,0.953598,0.462419,0.177637,0.653493,0.112831,0.232268,0.123381,0.624638,0.456149,0.175664,0.895319,0.421043,0.61855,0.645462,0.582562,0.558178,0.401948,0.877199,0.953279,0.850668,0.351064,0.078644,0.212548,0.245044,0.729153,0.901029,0.0158526,0.832273,0.340101,0.879142,0.140815,0.605511,0.411686,0.703417,0.939411,0.878462,0.702097,0.180458,0.573685,0.255717,0.165723,0.377723,0.683645,0.556228,0.261593,0.783222,0.512871,0.694642,0.159134,0.810885,0.128109,0.598529,0.611847,0.305146,0.638536,0.934124,0.954588,0.895131,0.460757,0.12211,0.695858,0.58033,0.526982,0.0524417,0.514261,0.217196,0.798085,0.680925,0.731422,0.1623,0.761726,0.258883,0.210996,0.452884,0.726772,0.00450975,0.593833,0.543136,0.815893,0.589489,0.979477,0.353107,0.519484,0.745617,0.69361,0.745619,0.517819,0.20928,0.442367,0.0310081,0.26332,0.504399,0.541126,0.652224,0.622372,0.268123,0.675633,0.0482439,0.741084,0.234066,0.874354,0.195489,0.141585,0.207265,0.409293,0.0411435,0.956328,0.342245,0.648598,0.164326,0.58941,0.0600545,0.916411,0.244537,0.921535,0.198416,0.0204314,0.180473,0.392179,0.561662,0.174857,0.912815,0.30261,0.242678,0.0684215,0.550544,0.21845,0.661874,0.980183,0.624208,0.568791,0.549725,0.679357,0.113373,0.0356181,0.195777,0.854632,0.0389238,0.637095,0.39136,0.977306,0.821018,0.824548,0.879363,0.983756,0.261095,0.598117,0.0484983,0.589609,0.809947,0.357336,0.622374,0.0263794,0.966296,0.878904,0.401639,0.147945,0.307946,0.142584,0.272469,0.316789,0.666155,0.870641,0.811815,0.568386,0.510867,0.073859,0.487755,0.206722,0.95896,0.909493,0.588087,0.716663,0.5717,0.983068,0.950169,0.0629749,0.660545,0.758994,0.525677,0.509678,0.710615,0.722975,0.309166,0.654251,0.586184,0.291253,0.409079,0.346514,0.656141,0.5439,0.691403,0.698209,0.691994,0.351785,0.375469,0.530017,0.0660843,0.533427,0.914693,|0.897741,0.0598183,0.752499,0.192485,0.292295,0.296584,0.4669,0.154009,0.187869,0.299156,0.863042,0.0161918,0.972582,0.109864,0.886099,0.179138,0.997832,0.888753,0.819516,0.711598,0.586782,0.940265,0.861871,0.371784,0.782241,0.499224,0.61511,0.167284,0.788117,0.222561,0.528285,0.735584,0.362143,0.819161,0.583513,0.104502,0.773237,0.417634,0.356757,0.252173,0.385734,0.264547,0.506521,0.409202,0.740696,0.833917,0.862767,0.802017,0.228346,0.256916,0.851652,0.93381,0.539091,0.950681,0.800428,0.114123,0.41704,0.140823,0.152656,0.777309,0.163383,0.0288369,0.944451,0.986095,0.785413,0.931858,0.384377,0.384117,0.933066,0.566539,0.302662,0.473629,0.235974,0.20227,0.804408,0.452232,0.670372,0.407834,0.768987,0.0443937,0.342279,0.139888,0.53925,0.904309,0.647876,0.97973,0.290515,0.925467,0.0402008,0.166669,0.905436,0.980038,0.823412,0.0415177,0.472942,0.108573,0.340507,0.0562424,0.305416,0.108325,0.336466,0.348262,0.012741,0.295446,0.196524,0.24826,0.00931334,0.394578,0.572354,0.7958,0.620202,0.356788,0.151621,0.826092,0.981599,0.359324,0.689425,0.00632584,0.97569,0.39474,0.906744,0.275491,0.455862,0.10561,0.893253,0.800119,0.277674,0.352742,0.599844,0.532507,0.917031,0.182296,0.736507,0.448346,0.987089,0.27137,0.759187,0.0192435,0.254443,0.331842,0.853778,0.671834,0.745908,0.590801,0.820248,0.891509,0.00705367,0.885271,0.337293,0.702427,0.303913,0.284048,0.118728,0.916569,0.790976,0.254941,0.657469,0.246173,0.577908,0.266471,0.773214,0.87654,0.671824,0.799268,0.777328,0.80137,0.728122,0.558949,0.510632,0.741638,0.566854,0.323511,0.992552,0.744714,0.987049,0.525301,0.176635,0.849205,0.770218,0.824662,0.898086,0.237736,0.667714,0.669916,0.804382,0.749469,0.874876,0.422732,0.465558,0.251596,0.459516,0.345763,0.636082,0.64847,0.695109,0.617247,0.706436,0.897364,0.453284,0.427493,0.10504,0.660173,0.348021,0.361842,0.180702,0.0752108,0.146729,0.437145,0.130613,0.688209,0.452047,0.373658,0.717128,0.579755,0.540291,0.677955,0.571507,0.278719,0.968399,0.996854,0.401172,0.260558,0.193975,0.493846,0.113151,0.00852805,0.685311,0.735312,0.737285,0.309301,0.780807,0.948943,0.154494,0.304404,0.873785,0.654849,0.146278,0.0319124,0.488478,0.701873,0.107894,0.718446,0.336608,0.416379,0.752957,0.615166,0.784488,0.377548,0.0918998,0.575106,0.292016,0.201602,0.63282,0.0621855,0.112546,0.167064,0.191692,0.1525,0.945389,0.457482,0.927877,0.345392,0.871813,0.320907,0.878405,0.380518,0.714166,0.755039,0.0916161,0.48669,0.16147,0.632674,0.0808169,0.135219,0.0817444,0.690113,0.118064,0.0826465,0.413308,0.620786,0.673824,0.372717,0.786043,0.940639,0.641156,0.838039,0.180225,0.352217,0.553866,0.186094,0.771033,0.400037,0.250063,0.780489,0.0681799,0.641062,0.625499,0.184498,0.842928,0.533307,0.558738,0.216187,0.948755,0.796497,0.151757,0.659426,0.531471,0.64156,0.164795,0.859451,0.99058,0.175153,0.439367,0.0797768,0.384976,0.6342,0.648029,0.348582,0.59188,0.746658,0.433421,0.0834625,0.749241,0.196333,0.73204,0.922285,0.793224,0.453096,0.27295,0.963322,0.991857,0.812661,0.784842,0.574688,0.847002,0.801186,0.872386,0.962408,0.636311,0.371345,0.280361,0.905537,0.423437,0.200635,0.174545,0.588852,0.120096,0.630697,0.311191,0.201584,0.121288,0.364331,0.553409,0.420905,0.870328,0.698956,0.159121,0.236311,0.288227,0.138099,0.611014,0.835327,0.776793,0.189535,0.566354,0.156465,0.553369,0.614891,0.989884,0.719125,0.953675,0.605078,0.10822,0.252063,0.501179,0.470972,0.627186,0.158318,0.651958,0.129617,0.0114776,0.64925,0.319557,0.483322,0.169935,0.76365,0.698789,0.0815963,0.023074,0.934142,0.888228,0.328661,0.607805,0.194644,0.349725,0.245781,0.452029,0.547134,0.336267,0.0921485,0.535285,0.156946,0.861616,0.686465,0.0761392,0.32201,0.37812,0.921219,0.487978,0.61272,0.219299,0.0167178,0.0250974,0.407145,0.395621,0.776279,0.987262,0.880213,0.904003,0.977443,0.0202311,0.653738,0.61415,0.391123,0.475911,0.193958,0.852855,0.301577,0.400513,0.60774,0.432711,0.407976,0.121918,0.538036,0.134496,0.647959,0.898725,0.0331756,0.0474872,0.856491,0.095495,0.87019,0.510315,0.53073,0.389945,0.455653,0.477831,0.209336,0.122237,0.285821,0.537414,0.948739,0.596955,0.773078,0.33743,0.675672,0.828256,0.876282,0.509564,0.852421,0.319838,0.490149,0.257546,0.310448,0.0847682,0.117156,0.968165,0.857687,0.782035,0.90836,0.0602724,0.151585,0.108016,0.196112,0.375862,0.764243,0.0886092,0.564065,0.332834,0.803083,0.886641,0.938751,0.670998,0.464297,0.239536,0.0372192,0.196358,0.762454,0.287122,0.701492,0.544245,0.808782,0.131698,0.954128,0.283486,0.161885,0.478617,0.400581,0.843148,0.946963,0.761787,0.844874,0.521722,0.601559,0.912264,0.227083,0.229756,0.532851,0.6885,0.132612,0.811276,0.480439,0.305597,0.0326325,0.667393,0.421019,0.969068,0.583161,0.392682,0.906076,0.279401,0.786592,0.186071,0.979292,0.357107,0.53854,0.327313,0.846637,0.542027,0.316247,0.682561,0.505223,0.202312,0.133815,0.757077,0.218869,0.776728,0.495199,0.230673,0.294854,0.801669,0.276032,0.160511,0.150369,0.201994,0.0545753,0.618712,0.602549,0.448454,0.331481,0.677536,0.110395,0.598105,0.685145,0.217988,0.477538,0.112488,0.275187,0.341372,0.654407,0.937994,0.728684,0.207608,0.449169,0.823022,0.380726,0.0981098,0.860063,0.251005,0.748288,0.706326,0.505677,0.0478544,0.0570461,0.28413,0.85933,0.706249,0.0137467,0.953051,0.0271228,0.83415,0.379436,0.295789,0.744458,0.171891,0.767445,0.730934,0.815874,0.973085,0.84462,0.0706482,0.0124624,0.588564,0.270419,0.809073,0.31573,0.625569,0.708688,0.860975,0.568465,0.248339,0.721618,0.236418,0.858777,0.193905,0.571991,0.273743,0.0313528,0.486148,0.58958,0.294926,0.232883,0.697139,0.188051,0.29731,0.906316,0.539916,0.71106,0.21825,0.197887,0.570363,0.0279734,0.381189,0.362793,0.983038,0.689361,0.0651162,0.368467,0.353937,0.71672,0.895951,0.268336,0.145582,0.0694558,0.910154,0.653584,0.720629,0.590625,0.227333,0.282833,0.466926,0.159288,0.481217,0.860078,0.584668,0.223793,0.897335,0.500622,0.580633,0.705292,0.76137,0.918347,0.33519,0.732085,0.8735,0.41092,0.704388,0.925005,0.507402,0.368795,0.907927,0.945287,0.514337,0.572505,0.388918,0.843657,0.613916,0.449567,0.271878,0.88464,0.584139,0.315673,0.299053,0.763239,0.885584,0.67596,0.547054,0.575438,0.609221,0.7294,0.104417,0.534738,0.626673,0.807849,0.217741,0.244779,0.591283,0.0650662,0.386469,0.0261987,0.146401,0.780419,0.739955,0.394212,0.755622,0.667996,0.590458,0.628014,0.0200244,0.637053,0.822857,0.219602,0.295247,0.466608,0.746786,0.175125,0.137479,0.423754,0.336598,0.190948,0.758841,0.0874078,0.121488,0.393776,0.616086,0.790803,0.762034,0.676526,0.925564,0.125613,0.383997,0.300365,0.263611,0.527385,0.0487934,0.0678794,0.154914,0.299516,0.630474,0.516357,0.865356,0.382951,0.496533,0.684037,0.109407,0.296419,0.635809,0.225441,0.851974,0.503546,0.423863,0.462527,0.690625,0.370329,0.00656915,0.190775,0.133843,0.213295,0.702907,0.942001,0.689092,0.899204,0.136634,0.547207,0.575528,0.101296,0.665759,0.457555,0.103178,0.738527,0.644372,0.153279,0.878983,0.134071,0.405924,0.495754,0.702557,0.902916,0.289914,0.221972,0.490173,0.800905,0.497866,0.267435,0.604811,0.854767,0.129471,0.766778,0.872128,0.115082,0.852969,0.457948,0.641049,0.0171806,0.325119,0.0277703,0.72091,0.685908,0.975741,0.220396,0.757713,0.305717,0.265398,0.151028,0.153849,0.968189,0.278263,0.360797,0.295319,0.174736,0.745904,0.798548,0.989872,0.555116,0.548886,0.691747,0.83925,0.460122,0.89064,0.996454,0.606838,0.00138289,0.0208261,0.0410784,0.947286,0.937607,0.0885256,0.664866,0.366812,0.945896,0.599826,0.536321,0.935066,0.257018,0.0225335,0.812594,0.166515,0.401404,0.866718,0.717998,0.0663661,0.077317,0.627692,0.715277,0.203559,0.667314,0.554523,0.13268,0.025497,0.397691,0.0546405,0.382329,0.389172,0.785295,0.702854,0.84252,0.816471,0.200473,0.684728,0.634467,0.47553,0.306156,0.830581,0.777031,0.0387969,0.645399,0.91016,0.180601,0.227257,0.422838,0.906835,0.289954,0.887229,0.791914,0.416574,0.281012,0.0913455,0.938757,0.925989,0.246839,0.595673,0.821625,0.891695,0.762791,0.0508026,0.842277,0.513265,0.802298,0.995066,0.982137,0.708699,0.434145,0.81183,0.878443,0.434768,0.237235,0.878744,0.582309,0.264644,0.463398,0.074443,0.0925854,0.12133,0.603435,0.482749,0.206465,0.212787,0.51514,0.217863,0.0904934,0.0991507,0.231758,0.641607,0.47876,0.667793,0.633593,0.459962,0.883592,0.359347,0.15582,0.0924984,0.456187,0.970736,0.491073,0.295334,0.92788,0.0364511,0.638715,0.276676,0.796761,0.353055,0.336367,0.882279,0.710771,0.0942976,0.0764587,0.727247,0.426113,0.973901,0.971858,0.541888,0.0636131,0.803062,0.61496,0.36013,0.58947,0.0462162,0.274267,0.548475,0.726457,0.028484,0.350001,0.939862,0.708058,0.593086,0.442483,0.161861,0.721538,0.416234,0.448457,0.918753,0.830539,0.320044,0.317274,0.042473,0.326058,0.519327,0.855745,0.221315,0.966711,0.783763,0.45371,0.235315,0.0324796,0.865109,0.497605,0.876568,0.238444,0.757164,0.632262,0.449954,0.211921,0.700287,0.127235,0.278041,0.99532,0.473454,0.340955,0.451744,0.418951,0.214017,0.429262,0.923872,0.0739053,0.919325,0.659646,0.69482,0.0864786,0.135836,0.975366,0.72791,0.239569,0.946952,0.43258,0.320945,0.821951,0.414681,0.0475931,0.837819,0.631319,|0.969381,0.0210724,0.448287,0.7714,0.837564,0.636279,0.517855,0.448522,0.630167,0.276541,0.210625,0.0484939,0.240721,0.807284,0.740958,0.274498,0.976786,0.943522,0.733818,0.86979,0.209132,0.878351,0.808092,0.999716,0.35894,0.837844,0.244573,0.641502,0.151789,0.890002,0.036062,0.303376,0.593424,0.993638,0.20288,0.450636,0.528913,0.151732,0.464569,0.117238,0.505904,0.612784,0.00710338,0.774658,0.0505651,0.167073,0.442107,0.13989,0.671816,0.520086,0.373071,0.66193,0.196014,0.152924,0.85207,0.397157,0.844763,0.200483,0.0758571,0.451885,0.941062,0.262061,0.596838,0.47364,0.201222,0.0635688,0.825827,0.816616,0.103679,0.0885267,0.223487,0.919556,0.0701261,0.358971,0.980389,0.461903,0.111842,0.895229,0.0808492,0.0432984,0.172864,0.83431,0.156387,0.340058,0.624684,0.283348,0.407684,0.750761,0.875464,0.70225,0.385966,0.584538,0.73782,0.777406,0.790973,0.483764,0.867383,0.442132,0.915298,0.0823623,0.528141,0.246087,0.908644,0.200344,0.770762,0.202427,0.063196,0.131321,0.596022,0.794096,0.323283,0.806608,0.857027,0.223898,0.9595,0.485311,0.114341,0.408873,0.423543,0.182764,0.24827,0.769186,0.346394,0.0760497,0.298561,0.275778,0.753291,0.748959,0.632891,0.720981,0.923671,0.919031,0.609032,0.586258,0.927252,0.737106,0.151757,0.864315,0.0350336,0.875191,0.465226,0.708541,0.816107,0.73499,0.377977,0.940161,0.372936,0.826565,0.694798,0.580727,0.0440934,0.391415,0.229356,0.833061,0.677664,0.913184,0.649077,0.110205,0.135837,0.938645,0.564507,0.568176,0.229243,0.697569,0.307721,0.923664,0.135288,0.710263,0.5811,0.388052,0.103741,0.807081,0.733183,0.191731,0.187476,0.389582,0.948745,0.00130719,0.110463,0.829242,0.663009,0.888017,0.308028,0.866144,0.0187757,0.412617,0.171505,0.357871,0.138497,0.579929,0.0148054,0.459894,0.922092,0.297096,0.576464,0.988366,0.343485,0.906574,0.983379,0.217948,0.0639825,0.135407,0.992912,0.310016,0.678456,0.998054,0.652946,0.858858,0.809659,0.198909,0.829118,0.982381,0.730123,0.17721,0.945227,0.876053,0.681228,0.130685,0.13041,0.0696588,0.557699,0.282369,0.404476,0.735184,0.766017,0.618544,0.423509,0.151893,0.516223,0.669573,0.399915,0.859988,0.107031,0.388853,0.418559,0.457842,0.839983,0.945363,0.218447,0.98114,0.702171,0.187654,0.814333,0.925294,0.147043,0.609759,0.789193,0.309928,0.609311,0.411477,0.881119,0.0962735,0.0403575,0.419321,0.790937,0.593029,0.580053,0.18987,0.600061,0.60137,0.292225,0.15921,0.723514,0.648901,0.533187,0.539101,0.694118,0.588025,0.375296,0.970357,0.340891,0.570143,0.923027,0.825541,0.233992,0.261295,0.99451,0.743662,0.705389,0.119364,0.308975,0.458225,0.0104492,0.37216,0.201165,0.0186309,0.436527,0.140985,0.0546675,0.511615,0.945633,0.426691,0.317114,0.758861,0.270977,0.110214,0.597779,0.32742,0.0634657,0.497767,0.15448,0.000848234,0.0790958,0.0302043,0.302319,0.167069,0.805413,0.864088,0.269285,0.397367,0.950281,0.772948,0.903208,0.889054,0.339604,0.307748,0.0687633,0.757268,0.989765,0.687291,0.818715,0.0202339,0.359309,0.506002,0.852722,0.86195,0.998001,0.606967,0.491154,0.0276667,0.0119815,0.0211716,0.810664,0.514102,0.0915595,0.0528291,0.766355,0.876474,0.540443,0.632774,0.533823,0.715729,0.118825,0.560498,0.0670688,0.964549,0.476221,0.508536,0.381805,0.443364,0.759042,0.34079,0.610801,0.649779,0.647595,0.876344,0.381164,0.834602,0.322637,0.185295,0.613797,0.816142,0.69885,0.0691156,0.0758411,0.224201,0.166409,0.135412,0.697263,0.689964,0.597448,0.55937,0.254842,0.840028,0.717415,0.496413,0.826517,0.715989,0.627026,0.7004,0.00916147,0.741064,0.202477,0.0984842,0.72492,0.966936,0.252065,0.401104,0.833715,0.900648,0.03774,0.631305,0.879438,0.89622,0.0388902,0.11798,0.200918,0.917313,0.514831,0.867065,0.850164,0.993878,0.459337,0.652258,0.909708,0.0174832,0.848958,0.59009,0.700995,0.886846,0.148034,0.563647,0.100935,0.942125,0.400987,0.906202,0.709676,0.172839,0.387614,0.292812,0.639876,0.224809,0.382208,0.754386,0.767906,0.624678,0.781738,0.182987,0.178348,0.605237,0.0179328,0.650069,0.328294,0.233938,0.351581,0.504375,0.177577,0.796667,0.253808,0.472979,0.151249,0.37022,0.234347,0.395486,0.593976,0.543863,0.939273,0.297688,0.0592643,0.348733,0.592683,0.172012,0.932882,0.740448,0.72064,0.830207,0.443928,0.639457,0.603731,0.353242,0.297653,0.600389,0.959029,0.134561,0.658499,0.184799,0.490742,0.0676274,0.889997,0.99319,0.36418,0.594817,0.144194,0.142253,0.486011,0.841152,0.226195,0.535182,0.826258,0.226396,0.399784,0.286254,0.32474,0.756233,0.226468,0.0920792,0.681114,0.430352,0.701038,0.26163,0.970311,0.213976,0.0285842,0.114626,0.144395,0.210856,0.267726,0.0298576,0.144533,0.588694,0.514012,0.67749,0.963877,0.714206,0.687423,0.912873,0.776549,0.737415,0.317817,0.683236,0.750485,0.423037,0.541056,0.790501,0.931273,0.838756,0.993019,0.530602,0.591586,0.519615,0.0871099,0.400694,0.93444,0.413947,0.639621,0.0879851,0.86268,0.909829,0.34785,0.759171,0.41855,0.877036,0.637136,0.541616,0.642341,0.15283,0.873416,0.0802848,0.146737,0.226834,0.566376,0.067009,0.846044,0.0149794,0.968857,0.841729,0.964213,0.600217,0.263918,0.114946,0.988682,0.526533,0.391485,0.930202,0.598413,0.195183,0.328921,0.620056,0.698225,0.285612,0.683268,0.0967311,0.183396,0.0984681,0.664345,0.688255,0.251043,0.193436,0.910029,0.849146,0.892241,0.052559,0.63603,0.522331,0.160376,0.712765,0.0286511,0.121463,0.878447,0.523941,0.640345,0.454832,0.795761,0.94021,0.570764,0.325018,0.570804,0.109769,0.204992,0.955676,0.0162229,0.123055,0.319403,0.831019,0.496357,0.63937,0.0858448,0.000930905,0.561807,0.012685,0.496882,0.00568157,0.651378,0.310529,0.905751,0.620217,0.550797,0.201867,0.273488,0.350164,0.637774,0.234409,0.0416456,0.0784033,0.847771,0.626563,0.338337,0.611926,0.00408447,0.462841,0.646503,0.741942,0.35204,0.587253,0.87486,0.704289,0.798299,0.752162,0.206578,0.495263,0.17462,0.570843,0.193086,0.0823244,0.940206,0.472971,0.19335,0.410755,0.796267,0.43982,0.404338,0.947349,0.0898721,0.93123,0.323716,0.322095,0.789405,0.817484,0.985579,0.61099,0.891778,0.97677,0.349561,0.506165,0.572679,0.447046,0.647769,0.904298,0.238865,0.920006,0.80273,0.411753,0.387651,0.757244,0.932021,0.549365,0.101825,0.835227,0.698389,0.035626,0.36076,0.740925,0.0929656,0.961779,0.312979,0.476669,0.925936,0.122595,0.161779,0.834414,0.258573,0.303853,0.72961,0.457448,0.33734,0.40439,0.615649,0.0362438,0.458422,0.0630097,0.44883,0.75589,0.237094,0.706722,0.469165,0.321586,0.803235,0.916574,0.767321,0.121827,0.186965,0.814497,0.495825,0.610602,0.478653,0.346678,0.0346797,0.216303,0.623303,0.988878,0.30094,0.993501,0.766658,0.154363,0.34477,0.983979,0.669251,0.784337,0.679175,0.0937037,0.661541,0.270342,0.906832,0.261812,0.878646,0.0712875,0.187122,0.176671,0.522842,0.957642,0.983355,0.511408,0.71132,0.640316,0.739354,0.212557,0.788198,0.866798,0.383225,0.259545,0.63315,0.397215,0.282638,0.963029,0.827022,0.208897,0.341784,0.332547,0.285759,0.441707,0.29537,0.97949,0.480771,0.766075,0.252374,0.105197,0.921656,0.635577,0.310478,0.850335,0.266114,0.104273,0.272248,0.373564,0.295556,0.153809,0.724809,0.193061,0.76875,0.884785,0.743025,0.695097,0.364038,0.663962,0.397772,0.108202,0.528284,0.79423,0.0843786,0.672081,0.831786,0.363632,0.302799,0.283235,0.428576,0.156106,0.447322,0.844396,0.250574,0.723849,0.144375,0.029097,0.813662,0.350197,0.861729,0.589032,0.955061,0.40604,0.132053,0.358585,0.906587,0.0310276,0.783607,0.0880662,0.254993,0.51619,0.136583,0.527224,0.419938,0.998141,0.712675,0.396734,0.443783,0.388846,0.299822,0.253917,0.711345,0.119664,0.0796673,0.690352,0.660601,0.884586,0.0166192,0.620479,0.963628,0.415269,0.293161,0.826971,0.977969,0.0232447,0.797253,0.862301,0.627352,0.994368,0.00345838,0.707375,0.532261,0.472862,0.683377,0.829651,0.394718,0.171327,0.711522,0.83877,0.7149,0.0907432,0.868505,0.323214,0.480972,0.0412014,0.28888,0.0687561,0.045454,0.0465263,0.62342,0.0694349,0.286271,0.0414425,0.575919,0.445378,0.339464,0.440954,0.0304679,0.944786,0.0236844,0.81887,0.622337,0.91944,0.83469,0.284464,0.143273,0.274349,0.0148709,0.172236,0.00673419,0.421261,0.757601,0.917549,0.0725191,0.784802,0.696126,0.280959,0.125138,0.0675294,0.947251,0.893034,0.767424,0.93839,0.232124,0.643917,0.75117,0.443841,0.391353,0.687367,0.965273,0.326563,0.472917,0.943926,0.987013,0.931754,0.248321,0.404214,0.582037,0.681476,0.382927,0.0264812,0.212295,0.0160112,0.207527,0.920612,0.675045,0.0438237,0.718788,0.466608,0.569933,0.478669,0.691704,0.701692,0.737298,0.377335,0.220413,0.388128,0.358006,0.449505,0.571284,0.435027,0.0197583,0.925874,0.161938,0.848053,0.436296,0.831645,0.651414,0.518793,0.140594,0.643887,0.15221,0.65893,0.998822,0.775126,0.36462,0.0579689,0.0273973,0.67577,0.268377,0.759924,0.334506,0.724654,0.367975,0.39744,0.208431,0.97062,0.867888,0.0640417,0.0950422,0.407979,0.923657,0.66621,0.855729,0.895744,0.988982,0.87142,0.704974,0.496018,0.984841,0.634149,0.764391,0.0646458,0.915465,0.307732,0.261875,0.312319,0.380681,0.514201,0.465924,0.865886,0.266712,0.276665,0.871974,0.878288,0.881827,0.53219,0.043349,0.265354,0.900634,0.814196,0.358988,0.551121,0.575718,0.976304,0.122423,0.862244,0.0254597,0.577582,0.502051,0.941817,0.208548,0.193084,0.121795,0.393572,|0.0299773,0.431985,0.83508,0.532277,0.1254,0.268669,0.723149,0.090003,0.931269,0.950167,0.969382,0.303184,0.338709,0.9234,0.923471,0.365362,0.475512,0.847359,0.236075,0.50725,0.596943,0.815428,0.730509,0.176267,0.578993,0.0384485,0.0703502,0.606861,0.140188,0.665439,0.653179,0.582449,0.956994,0.506147,0.728266,0.560542,0.344732,0.857863,0.572635,0.0596638,0.536853,0.0843544,0.841014,0.31568,0.377714,0.929869,0.729271,0.169878,0.325264,0.228144,0.928507,0.405657,0.174359,0.805961,0.0118568,0.121144,0.516308,0.95626,0.584625,0.828112,0.207926,0.311646,0.695917,0.144652,0.940424,0.886745,0.872168,0.118056,0.779179,0.210625,0.0539492,0.682244,0.442789,0.934167,0.427379,0.292226,0.0459343,0.659029,0.258891,0.446688,0.0501777,0.608441,0.800751,0.0288076,0.502249,0.133041,0.64512,0.846288,0.666043,0.424009,0.347245,0.452383,0.818129,0.323695,0.999358,0.75095,0.414801,0.35524,0.902965,0.884058,0.479255,0.269621,0.431725,0.250345,0.895872,0.200072,0.724575,0.443578,0.839398,0.980264,0.420159,0.0239118,0.560692,0.860474,0.111052,0.586044,0.197177,0.0132435,0.44621,0.932191,0.868762,0.181408,0.0564591,0.465261,0.257021,0.384243,0.995687,0.677539,0.425421,0.490195,0.459813,0.299855,0.0715123,0.627168,0.85922,0.738248,0.769123,0.673845,0.989651,0.272555,0.563738,0.760972,0.745395,0.793365,0.829291,0.789683,0.744589,0.111032,0.325884,0.075733,0.890849,0.701928,0.539576,0.0939545,0.670493,0.31456,0.800346,0.657711,0.245031,0.762224,0.130216,0.713312,0.304613,0.779999,0.733309,0.94834,0.0589672,0.509962,0.677148,0.21491,0.504207,0.199989,0.409268,0.499245,0.608664,0.797672,0.899267,0.257366,0.468313,0.829216,0.973868,0.28807,0.199797,0.138982,0.537473,0.0173951,0.0683122,0.308032,0.396928,0.831084,0.537632,0.208147,0.514509,0.941738,0.889553,0.389415,0.685299,0.654279,0.0272145,0.022346,0.416344,0.794425,0.457357,0.810707,0.465123,0.729257,0.418244,0.624039,0.620553,0.151708,0.421198,0.352395,0.456516,0.365032,0.723005,0.593768,0.764106,0.476048,0.305856,0.465944,0.73124,0.285333,0.521257,0.396682,0.779758,0.483573,0.533129,0.974181,0.203262,0.00680059,0.619533,0.283772,0.446631,0.448546,0.226663,0.900596,0.65019,0.92972,0.370135,0.134461,0.719054,0.0821012,0.950648,0.686542,0.89036,0.068935,0.745498,0.661778,0.752069,0.108208,0.185979,0.808093,0.167952,0.983275,0.207691,0.482657,0.959415,0.472521,0.683424,0.915878,0.110139,0.266175,0.0679747,0.0544355,0.784244,0.344789,0.297566,0.746151,0.451148,0.755119,0.170766,0.0241739,0.496277,0.0399266,0.707487,0.764911,0.907414,0.448622,0.179748,0.582983,0.744378,0.927829,0.876712,0.69145,0.246555,0.301125,0.584682,0.720056,0.423018,0.987274,0.17505,0.521827,0.8392,0.0512013,0.196802,0.305483,0.719814,0.0639854,0.036595,0.126657,0.627084,0.0198908,0.710838,0.798096,0.238702,0.381285,0.810008,0.0269624,0.100619,0.0406836,0.398926,0.306346,0.924177,0.340354,0.243517,0.152871,0.824303,0.849289,0.564502,0.246616,0.00238442,0.357682,0.327088,0.150921,0.265268,0.646243,0.949295,0.626356,0.731952,0.380223,0.788233,0.613069,0.586461,0.290298,0.751384,0.105238,0.841912,0.162752,0.981925,0.963888,0.1582,0.359248,0.600114,0.850293,0.681679,0.441058,0.401415,0.568572,0.435518,0.772441,0.679302,0.862842,0.317792,0.642422,0.816981,0.328738,0.502465,0.0851904,0.183036,0.400446,0.885478,0.846307,0.268458,0.623254,0.897625,0.517567,0.467253,0.370734,0.053537,0.260686,0.0671689,0.12229,0.909987,0.722581,0.0223734,0.981739,0.146574,0.879622,0.440799,0.0824457,0.581225,0.44927,0.187987,0.125899,0.464044,0.324255,0.211217,0.588261,0.703098,0.998004,0.0183023,0.765149,0.58826,0.385337,0.85498,0.0862005,0.84591,0.709096,0.674069,0.148956,0.0709107,0.829816,0.728232,0.206615,0.450016,0.869636,0.582146,0.377205,0.16975,0.872903,0.806682,0.814605,0.220306,0.119139,0.747334,0.268127,0.753756,0.732699,0.365161,0.240732,0.883021,0.850912,0.664296,0.870587,0.347695,0.380022,0.559018,0.668028,0.494528,0.960134,0.482938,0.529473,0.248121,0.73738,0.428322,0.721903,0.389422,0.64009,0.585975,0.448392,0.538584,0.76431,0.924079,0.996733,0.0911502,0.858447,0.577012,0.000610054,0.235025,0.248367,0.77583,0.0545174,0.672762,0.0564716,0.216815,0.445499,0.446354,0.30299,0.411789,0.794269,0.974215,0.410795,0.984545,0.974548,0.606057,0.367568,0.770402,0.771115,0.166443,0.693667,0.27999,0.00326377,0.200958,0.542322,0.932588,0.50983,0.294471,0.200989,0.33532,0.919871,0.0568983,0.168948,0.906541,0.336278,0.54858,0.995073,0.754826,0.971877,0.587657,0.0295884,0.833751,0.65145,0.394835,0.204534,0.0987246,0.480466,0.87511,0.794742,0.177253,0.286652,0.746575,0.0722618,0.151335,0.044214,0.510624,0.643462,0.00470495,0.82303,0.642218,0.998252,0.884581,0.57552,0.180553,0.419105,0.475565,0.635116,0.242092,0.957042,0.64966,0.68918,0.959219,0.0279837,0.0506859,0.587606,0.27821,0.0358631,0.696037,0.847384,0.730944,0.758183,0.89409,0.50755,0.462977,0.142273,0.325418,0.435113,0.223703,0.161972,0.247407,0.745763,0.626756,0.26992,0.214551,0.573103,0.405052,0.903123,0.00902861,0.420294,0.036157,0.0618483,0.980394,0.179162,0.0696488,0.764091,0.227211,0.305214,0.740334,0.0640533,0.202149,0.522835,0.962745,0.305596,0.233084,0.703737,0.834793,0.688368,0.373519,0.859203,0.762379,0.0197299,0.372921,0.830603,0.168174,0.407573,0.989506,0.510417,0.663511,0.905144,0.100407,0.0592451,0.679482,0.507305,0.299323,0.803252,0.187469,0.207981,0.75114,0.111543,0.371158,0.119169,0.0789005,0.730238,0.952694,0.947697,0.367516,0.461109,0.701986,0.694918,0.404621,0.409478,0.729457,0.76331,0.748211,0.781359,0.275981,0.401022,0.456099,0.363488,0.289992,0.0971374,0.980497,0.24729,0.446791,0.0218519,0.18241,0.922541,0.533257,0.822985,0.790824,0.886995,0.351353,0.0596166,0.925287,0.340603,0.0884317,0.0445289,0.661698,0.105412,0.810673,0.797827,0.966442,0.611822,0.206046,0.326479,0.444372,0.502486,0.825981,0.101126,0.275029,0.264225,0.242694,0.76767,0.909307,0.356269,0.0819638,0.0734177,0.734542,0.51466,0.292806,0.204766,0.0821567,0.695701,0.075086,0.269628,0.0731803,0.328117,0.429444,0.55949,0.970202,0.638305,0.269775,0.0773628,0.833367,0.542688,0.209829,0.701129,0.217875,0.543006,0.429916,0.113258,0.197399,0.208009,0.772679,0.99942,0.499555,0.768311,0.992049,0.326798,0.924739,0.948114,0.228587,0.107983,0.0403008,0.847661,0.899744,0.674589,0.59655,0.202192,0.382091,0.232523,0.444817,0.365235,0.56622,0.0183493,0.695502,0.0108258,0.86701,0.790266,0.188683,0.221032,0.524236,0.220798,0.552777,0.849057,0.321586,0.714504,0.193678,0.160902,0.171049,0.0232064,0.675256,0.249238,0.0108973,0.986662,0.0323251,0.43476,0.112277,0.3623,0.00213397,0.837333,0.36953,0.235062,0.997193,0.0420543,0.907435,0.951464,0.402986,0.400112,0.316376,0.634596,0.21602,0.463913,0.944963,0.435173,0.660393,0.0871272,0.911793,0.149197,0.724296,0.773893,0.274078,0.215631,0.805439,0.962929,0.125713,0.0728435,0.451584,0.473385,0.487061,0.0786437,0.0849053,0.39891,0.860036,0.566272,0.701879,0.142944,0.671199,0.530956,0.722431,0.638924,0.466542,0.128883,0.48593,0.260646,0.449861,0.81317,0.342413,0.14917,0.685155,0.953081,0.429217,0.632723,0.877936,0.721838,0.392259,0.0696199,0.069473,0.675554,0.0874351,0.882836,0.584844,0.205805,0.553404,0.463334,0.198957,0.912353,0.782675,0.336811,0.808539,0.716939,0.338039,0.0150205,0.0271512,0.93223,0.256737,0.570896,0.123152,0.641536,0.391961,0.709412,0.198844,0.831761,0.343668,0.316461,0.681855,0.781933,0.86343,0.834496,0.704409,0.957841,0.170906,0.423785,0.852778,0.800259,0.487894,0.488686,0.446666,0.0900672,0.331469,0.0184572,0.933717,0.770746,0.472149,0.698456,0.443031,0.596612,0.689971,0.679193,0.87963,0.44087,0.063693,0.932256,0.934563,0.996652,0.0722181,0.442577,0.166363,0.510501,0.365987,0.743669,0.181262,0.305889,0.294504,0.354028,0.393208,0.811172,0.502036,0.0667762,0.1983,0.569012,0.00164664,0.152796,0.426279,0.664954,0.671145,0.843581,0.0894777,0.105139,0.144399,0.739835,0.129053,0.123729,0.778446,0.104884,0.885133,0.784735,0.00566471,0.0874938,0.480737,0.260374,0.54367,0.191679,0.0101097,0.825253,0.383696,0.28543,0.581258,0.450248,0.733141,0.493143,0.805966,0.666548,0.331843,0.600195,0.192383,0.110542,0.791875,0.126108,0.33978,0.57274,0.27474,0.240254,0.607441,0.728989,0.250635,0.249333,0.742789,0.840818,0.681781,0.504913,0.443732,0.549608,0.550431,0.590475,0.154195,0.380322,0.393778,0.862486,0.0606868,0.46865,0.0276881,0.900274,0.491541,0.39902,0.985388,0.28089,0.524756,0.819419,0.243245,0.494003,0.172463,0.0261347,0.574846,0.305112,0.299002,0.874687,0.507722,0.946822,0.663119,0.62431,0.592779,0.822061,0.824612,0.953411,0.219446,0.924766,0.601496,0.993288,0.55155,0.423112,0.789307,0.926897,0.0487459,0.125628,0.74177,0.284737,0.766715,0.642254,0.419823,0.397244,0.250615,0.52155,0.913848,0.27987,0.14861,0.713318,0.00740713,0.280249,0.55224,0.537939,0.701645,0.935667,0.301628,0.474751,0.93659,0.939456,0.784254,0.755907,0.974543,0.502322,0.276623,0.735263,0.736389,0.164907,0.516153,0.909195,0.367769,0.65756,0.803002,0.583821,0.669901,0.96566,0.515871,0.861349,0.679095,0.886146,0.557985,0.076434,0.748962,0.503886,0.756476,0.836883,0.965839,0.186549,0.976562,0.847505,0.752839,0.860333,0.857826,0.172418,|0.700116,0.156643,0.0394262,0.299156,0.35783,0.174065,0.11904,0.193957,0.802345,0.557885,0.847099,0.0812274,0.861678,0.140457,0.256942,0.0293309,0.28475,0.289934,0.991573,0.401894,0.987471,0.901814,0.960176,0.869236,0.712844,0.333538,0.730651,0.871677,0.63872,0.783887,0.309231,0.941015,0.392306,0.981036,0.46917,0.218124,0.950308,0.938945,0.754509,0.307063,0.286022,0.352011,0.843031,0.73424,0.577312,0.345561,0.0120776,0.34527,0.890128,0.743027,0.558018,0.46097,0.893369,0.370859,0.579378,0.661514,0.208676,0.252123,0.404366,0.170089,0.770305,0.796038,0.772627,0.457241,0.488043,0.411439,0.864488,0.705243,0.656648,0.295882,0.0130005,0.917757,0.511159,0.755072,0.117387,0.543101,0.452576,0.123286,0.0494612,0.100459,0.863813,0.642859,0.469195,0.272035,0.134001,0.970839,0.0917261,0.749585,0.319541,0.0494295,0.792954,0.388832,0.0423589,0.0229783,0.589069,0.670947,0.238152,0.220486,0.290804,0.298602,0.386679,0.637899,0.168944,0.025558,0.821972,0.281798,0.341009,0.537062,0.162156,0.637007,0.543761,0.72797,0.386108,0.208991,0.377608,0.201009,0.728031,0.81914,0.131577,0.0740584,0.0106879,0.811237,0.148133,0.524857,0.511296,0.754817,0.941181,0.411359,0.0931271,0.168347,0.356768,0.546677,0.0182758,0.229692,0.975575,0.40402,0.378643,0.642934,0.0923985,0.853693,0.084556,0.733175,0.676817,0.37066,0.235789,0.920762,0.744594,0.321645,0.213809,0.478497,0.815299,0.0957005,0.537304,0.370843,0.356734,0.282186,0.531398,0.903778,0.595218,0.244487,0.921944,0.0251668,0.775746,0.684191,0.632639,0.908168,0.811888,0.464721,0.748702,0.494721,0.404947,0.615196,0.450413,0.902528,0.610803,0.24844,0.613854,0.712663,0.0950126,0.0634431,0.410805,0.221844,0.0401937,0.905765,0.00242931,0.808951,0.130679,0.241817,0.618011,0.812131,0.553481,0.831784,0.127076,0.715921,0.104753,0.365107,0.244394,0.586532,0.309307,0.22848,0.40514,0.345419,0.0675345,0.283567,0.176479,0.151982,0.845336,0.959434,0.640902,0.687895,0.651936,0.260081,0.252836,0.554386,0.051167,0.348801,0.551744,0.306565,0.0890873,0.644331,0.245135,0.787265,0.972303,0.321608,0.381596,0.606995,0.611982,0.505703,0.116837,0.562637,0.89923,0.239909,0.0664972,0.706405,0.690242,0.535654,0.256038,0.427908,0.00994545,0.287766,0.0584952,0.973449,0.119743,0.927223,0.785609,0.0338658,0.992275,0.890106,0.73945,0.101876,0.810437,0.677987,0.192458,0.812274,0.166936,0.378227,0.70606,0.109083,0.11266,0.214637,0.684529,0.906914,0.723436,0.633331,0.271036,0.789893,0.087283,0.672267,0.745732,0.718039,0.192728,0.535808,0.106692,0.542506,0.23946,0.719471,0.603051,0.0713224,0.26783,0.911203,0.889269,0.0867417,0.356658,0.318285,0.564131,0.134564,0.295401,0.0944456,0.616032,0.00952959,0.0824032,0.500256,0.173496,0.40598,0.0618722,0.457445,0.923662,0.566351,0.837874,0.735012,0.209912,0.735795,0.971143,0.823217,0.394473,0.279562,0.0241035,0.394611,0.687262,0.210407,0.716907,0.818635,0.233489,0.710159,0.935025,0.285421,0.517242,0.83401,0.120421,0.148946,0.540995,0.73751,0.408884,0.585085,0.523935,0.755041,0.0863571,0.0126303,0.162841,0.32633,0.411312,0.833595,0.220584,0.760316,0.748116,0.83906,0.231023,0.397585,0.0740263,0.283758,0.776366,0.763874,0.89596,0.684356,0.679889,0.917079,0.636575,0.0128657,0.772543,0.529703,0.402292,0.0990563,0.761718,0.334099,0.179292,0.887197,0.361504,0.723202,0.98262,0.0932618,0.492747,0.74222,0.525524,0.367306,0.194487,0.890887,0.508981,0.601001,0.359569,0.214438,0.866278,0.952267,0.112309,0.169167,0.00386542,0.323312,0.354762,0.153984,0.569551,0.199555,0.61902,0.568139,0.219542,0.856271,0.783681,0.639088,0.750173,0.8028,0.469175,0.679436,0.331255,0.277642,0.742334,0.931806,0.115221,0.231888,0.580372,0.520001,0.489508,0.763074,0.350263,0.00055927,0.974047,0.150301,0.610063,0.664574,0.436841,0.990721,0.160278,0.861728,0.493372,0.851877,0.180008,0.542341,0.485687,0.191392,0.728369,0.00784326,0.645558,0.0265875,0.14701,0.679042,0.654569,0.13671,0.403665,0.253793,0.392918,0.474137,0.714156,0.187104,0.589374,0.133262,0.56209,0.614426,0.93985,0.682141,0.0981053,0.939672,0.671029,0.702455,0.173864,0.0591527,0.931314,0.85877,0.400605,0.873877,0.567518,0.544665,0.721951,0.20741,0.622667,0.126771,0.516172,0.903562,0.109422,0.586341,0.703942,0.676841,0.634558,0.60074,0.517712,0.232309,0.795448,0.463537,0.870793,0.00610685,0.411727,0.351925,0.549867,0.0321618,0.60428,0.365273,0.617425,0.834291,0.947848,0.763736,0.675184,0.656867,0.939272,0.516567,0.679155,0.406251,0.753692,0.216072,0.0339931,0.620981,0.928397,0.939112,0.804063,0.144281,0.845244,0.641743,0.930319,0.912568,0.668511,0.471778,0.495914,0.196412,0.577866,0.0449244,0.407228,0.0348958,0.290313,0.403781,0.36725,0.407205,0.334304,0.965313,0.989238,0.762335,0.561834,0.217491,0.0418917,0.189717,0.539765,0.481289,0.115063,0.530994,0.722391,0.179805,0.599823,0.895922,0.951075,0.931303,0.681043,0.952791,0.262171,0.853241,0.813837,0.0362267,0.299518,0.731121,0.248901,0.0295315,0.521179,0.455785,0.838865,0.833777,0.594466,0.0170896,0.888872,0.610744,0.747285,0.946304,0.769423,0.995199,0.488215,0.927986,0.408869,0.986625,0.137638,0.689058,0.676671,0.4336,0.632131,0.67627,0.651664,0.470176,0.935572,0.341285,0.0396411,0.432958,0.032259,0.144914,0.424389,0.548911,0.856436,0.310344,0.338256,0.204485,0.860562,0.359077,0.671296,0.303803,0.111956,0.275496,0.000184357,0.203206,0.412396,0.742433,0.567861,0.523161,0.358821,0.237142,0.390189,0.857234,0.604717,0.0106974,0.220935,0.358985,0.63912,0.703177,0.861809,0.730458,0.358256,0.109812,0.819983,0.257069,0.953978,0.503605,0.415753,0.769058,0.823061,0.148866,0.368704,0.582319,0.138719,0.740504,0.825656,0.508978,0.0324221,0.927389,0.335743,0.619567,0.953873,0.639616,0.157647,0.37581,0.266223,0.407022,0.356031,0.354487,0.336716,0.193878,0.229995,0.808897,0.773872,0.672188,0.0651557,0.935215,0.943108,0.150247,0.877976,0.666652,0.895727,0.106813,0.628775,0.0430013,0.209019,0.759063,0.799348,0.0478713,0.1123,0.626179,0.127895,0.97285,0.931941,0.176499,0.213374,0.570333,0.0733705,0.0131455,0.606592,0.831653,0.331021,0.908546,0.0665318,0.164861,0.219007,0.477558,0.515162,0.731696,0.302334,0.719804,0.865,0.472147,0.0213004,0.0177969,0.842557,0.825303,0.522675,0.170802,0.109442,0.39343,0.389723,0.328873,0.388757,0.875158,0.523762,0.921538,0.189643,0.540605,0.785851,0.116238,0.132904,0.637248,0.075142,0.745498,0.74699,0.0902477,0.0765952,0.074286,0.39821,0.972348,0.202656,0.10319,0.929008,0.0410194,0.177785,0.966581,0.988202,0.368404,0.968045,0.477459,0.366114,0.994848,0.64318,0.598044,0.575718,0.997195,0.5693,0.630275,0.595823,0.418494,0.02942,0.591119,0.048506,0.374143,0.463951,0.865673,0.132833,0.371067,0.068212,0.673063,0.692939,0.181363,0.598489,0.0152928,0.926722,0.827057,0.109177,0.97252,0.291791,0.0671293,0.154508,0.251759,0.650876,0.385498,0.626652,0.340233,0.725749,0.528998,0.0772371,0.928939,0.317379,0.35619,0.104651,0.958505,0.587491,0.842991,0.730352,0.187304,0.123274,0.444589,0.0321875,0.319368,0.30809,0.849653,0.110094,0.0854364,0.265568,0.857141,0.18017,0.124014,0.0981678,0.935427,0.925338,0.595501,0.862192,0.779817,0.352714,0.022725,0.980988,0.454715,0.740966,0.785922,0.12716,0.568742,0.166799,0.900871,0.296037,0.315514,0.666395,0.120293,0.39999,0.570135,0.108883,0.29684,0.573616,0.315536,0.394532,0.657347,0.875175,0.712337,0.533163,0.332479,0.968988,0.783977,0.510563,0.725848,0.672532,0.192343,0.629123,0.360701,0.967187,0.879041,0.0193624,0.733488,0.889372,0.520035,0.890056,0.608782,0.111952,0.854643,0.0640413,0.599104,0.408469,0.329922,0.718425,0.740361,0.572008,0.693805,0.386875,0.315216,0.874721,0.952195,0.152093,0.372844,0.807243,0.829569,0.874038,0.261142,0.672523,0.201195,0.232839,0.623648,0.0744778,0.210792,0.164132,0.722272,0.626385,0.823879,0.448224,0.954226,0.222436,0.874423,0.568439,0.418222,0.578888,0.25622,0.750051,0.0652137,0.539823,0.54218,0.264049,0.93001,0.491432,0.618334,0.696902,0.345277,0.68598,0.423655,0.766692,0.521699,0.775533,0.554144,0.404409,0.289998,0.525541,0.829444,0.450276,0.928846,0.442143,0.548476,0.326729,0.798048,0.786267,0.765369,0.83138,0.238551,0.78106,0.923589,0.722504,0.776474,0.338016,0.650389,0.704043,0.187272,0.744218,0.516302,0.647896,0.281455,0.306698,0.185277,0.295385,0.469043,0.349537,0.293285,0.354582,0.334143,0.841554,0.194946,0.463452,0.887236,0.284096,0.445513,0.778469,0.0194796,0.887539,0.260553,0.655369,0.665042,0.655833,0.221164,0.813354,0.529185,0.717941,0.254618,0.885208,0.00649428,0.772776,0.530643,0.557374,0.0205923,0.567181,0.573824,0.485146,0.264147,0.133393,0.186377,0.621451,0.404484,0.290692,0.728094,0.94776,0.0887706,0.402342,0.0986331,0.490857,0.616634,0.782193,0.590956,0.155556,0.619303,0.402019,0.288223,0.973323,0.891342,0.781989,0.443981,0.377784,0.985015,0.938567,0.673958,0.571123,0.39579,0.946009,0.966582,0.257392,0.0304744,0.411053,0.499208,0.0086844,0.496975,0.542112,0.473308,0.937532,0.920411,0.542044,0.36057,0.702982,0.592933,0.755529,0.789473,0.0834664,0.34611,0.529767,0.938432,0.783845,0.0940328,0.514234,0.758649,0.642926,0.988684,0.0869007,0.0354165,0.595922,0.374909,0.329351,0.955606,0.525243,0.934609,0.36803,0.453232,0.387987,0.819759,0.643171,0.0558402,0.437841,0.319448,|0.962579,0.838273,0.695626,0.766731,0.348302,0.642639,0.968119,0.783646,0.738959,0.881079,0.106773,0.740694,0.415819,0.03207,0.754526,0.637883,0.695356,0.595703,0.0735465,0.623716,0.667879,0.0817759,0.705761,0.351601,0.109484,0.908951,0.0949054,0.859963,0.0653778,0.556931,0.634261,0.995945,0.018407,0.124235,0.278181,0.637361,0.692374,0.0979981,0.424216,0.501869,0.4782,0.521639,0.285791,0.299063,0.093828,0.0985241,0.188487,0.546252,0.0891865,0.794765,0.0583596,0.70464,0.511036,0.315042,0.513784,0.0833932,0.8969,0.248917,0.345464,0.145682,0.189169,0.391435,0.853289,0.794303,0.0841686,0.24396,0.647485,0.463545,0.791143,0.382074,0.00430334,0.603942,0.319044,0.144432,0.568713,0.463338,0.201342,0.170944,0.384218,0.84353,0.0135262,0.925774,0.119154,0.313762,0.774944,0.608959,0.349571,0.695901,0.438161,0.455618,0.228322,0.739709,0.887449,0.0268018,0.0851011,0.922301,0.0644218,0.570973,0.220884,0.840901,0.781689,0.290398,0.0709541,0.830231,0.0541899,0.822874,0.911261,0.199273,0.705203,0.103505,0.548143,0.657793,0.129673,0.299267,0.356478,0.650685,0.393123,0.592029,0.68564,0.0675315,0.289626,0.0586292,0.122857,0.658192,0.257869,0.576666,0.335358,0.167966,0.155879,0.263015,0.215665,0.200667,0.437944,0.859755,0.391526,0.769998,0.752616,0.560086,0.608647,0.589919,0.856625,0.946418,0.324046,0.975377,0.395517,0.753399,0.0309699,0.722231,0.400364,0.726167,0.328284,0.0574791,0.571913,0.202873,0.191626,0.275666,0.995148,0.41233,0.731378,0.736275,0.235204,0.348281,0.825673,0.962912,0.21361,0.469326,0.693854,0.208657,0.746945,0.718899,0.00541407,0.138204,0.615493,0.618529,0.61633,0.102482,0.770903,0.226916,0.335933,0.221468,0.456967,0.56097,0.249575,0.164145,0.919002,0.240788,0.413247,0.944681,0.369259,0.27838,0.184897,0.799145,0.174317,0.725944,0.990459,0.0150081,0.172001,0.331254,0.869802,0.181976,0.159884,0.5305,0.158646,0.88477,0.658301,0.155013,0.742429,0.882912,0.249223,0.433841,0.929784,0.489248,0.722026,0.462957,0.853653,0.314374,0.535038,0.237499,0.464949,0.372752,0.0810599,0.420229,0.264123,0.243304,0.855971,0.273221,0.672682,0.363409,0.320702,0.30287,0.831473,0.264961,0.648907,0.754413,0.384603,0.187839,0.0829317,0.515605,0.121901,0.76543,0.233724,0.614004,0.778087,0.139378,0.413018,0.225889,0.085635,0.533386,0.965598,0.587044,0.781142,0.947007,0.338863,0.967193,0.0635818,0.898955,0.955253,0.000161588,0.402645,0.1271,0.766447,0.637151,0.833764,0.703323,0.264754,0.808597,0.852858,0.0872397,0.636039,0.388783,0.593781,0.808344,0.257051,0.355631,0.0551016,0.561602,0.0830003,0.643077,0.589877,0.907909,0.115999,0.604282,0.18561,0.909513,0.297561,0.270733,0.943576,0.0485139,0.253615,0.322769,0.837395,0.794846,0.804281,0.287307,0.667577,0.0443997,0.993127,0.965241,0.453065,0.0837719,0.969829,0.151936,0.174765,0.386002,0.115699,0.680081,0.231079,0.538742,0.180164,0.0310805,0.511832,0.384673,0.416846,0.499692,0.920659,0.00382245,0.0465996,0.181988,0.0479169,0.449527,0.151452,0.0488212,0.0195794,0.301352,0.599444,0.508686,0.480369,0.250202,0.0628797,0.941837,0.690283,0.424499,0.185978,0.263004,0.344487,0.302203,0.230674,0.687172,0.663837,0.7566,0.0853391,0.397636,0.962001,0.428429,0.600278,0.587089,0.150843,0.310234,0.373397,0.763337,0.246214,0.697113,0.478992,0.722065,0.14608,0.145457,0.815017,0.335529,0.92491,0.90327,0.806236,0.718697,0.86925,0.678429,0.0263884,0.597725,0.938245,0.175717,0.644159,0.345295,0.478923,0.830197,0.412641,0.760606,0.072337,0.701577,0.606383,0.877426,0.174662,0.142918,0.993214,0.377873,0.418831,0.866361,0.121112,0.0427731,0.881148,0.887351,0.0435441,0.691768,0.397598,0.244342,0.586486,0.495825,0.847595,0.231293,0.712027,0.870553,0.467592,0.555645,0.466539,0.0962758,0.976199,0.434138,0.927557,0.58128,0.0866934,0.891963,0.908849,0.110868,0.0172864,0.251788,0.525609,0.94625,0.740995,0.188338,0.761793,0.23852,0.14096,0.0715672,0.481965,0.291164,0.567961,0.349881,0.227749,0.0830779,0.909076,0.962887,0.335178,0.481047,0.138944,0.242531,0.249961,0.662403,0.747196,0.160334,0.990902,0.147082,0.266921,0.597555,0.931727,0.987586,0.184006,0.649802,0.478217,0.924703,0.928875,0.810706,0.835175,0.88541,0.842905,0.596083,0.271002,0.0701315,0.538238,0.683265,0.973216,0.331076,0.979058,0.928823,0.0307598,0.0215769,0.117697,0.457432,0.365162,0.424559,0.181177,0.153109,0.67462,0.492162,0.497764,0.108848,0.708063,0.214382,0.0922826,0.853863,0.833902,0.169465,0.948456,0.68148,0.663085,0.968011,0.730212,0.72834,0.171301,0.117148,0.895253,0.996173,0.437224,0.092415,0.18518,0.360641,0.782152,0.232943,0.452833,0.361377,0.677132,0.941345,0.952553,0.369306,0.422363,0.31614,0.493687,0.574381,0.278294,0.449748,0.349786,0.418631,0.935393,0.198661,0.908073,0.406325,0.0883064,0.32501,0.0705394,0.506755,0.0985255,0.340288,0.904077,0.265274,0.238494,0.551934,0.99293,0.827502,0.603284,0.288965,0.655455,0.179251,0.27279,0.392863,0.505482,0.591648,0.610874,0.0371588,0.942205,0.315589,0.484243,0.935094,0.151956,0.0610246,0.961217,0.144536,0.730093,0.544363,0.470446,0.139776,0.741883,0.601026,0.490365,0.725321,0.875829,0.0531224,0.719215,0.199016,0.27751,0.173566,0.409529,0.769059,0.130697,0.828875,0.73914,0.219275,0.00805831,0.34934,0.495875,0.388675,0.436459,0.901095,0.119119,0.196714,0.167408,0.787152,0.613649,0.720518,0.36356,0.0922311,0.171232,0.249707,0.462172,0.0424096,0.152343,0.587781,0.101501,0.763592,0.0672879,0.0336772,0.961711,0.975852,0.110474,0.693075,0.446788,0.97917,0.511232,0.246419,0.00558794,0.418753,0.161752,0.949564,0.930115,0.533222,0.168262,0.817618,0.130961,0.397966,0.900575,0.559354,0.865033,0.828738,0.340252,0.563935,0.585023,0.0724062,0.143342,0.367445,0.740623,0.8841,0.881327,0.361452,0.86334,0.509515,0.221855,0.150394,0.600509,0.367455,0.854788,0.325375,0.99672,0.189947,0.862426,0.127275,0.138867,0.55054,0.593029,0.129252,0.544644,0.639071,0.115101,0.605863,0.843192,0.328023,0.215839,0.483954,0.233798,0.223515,0.728548,0.193686,0.467424,0.105197,0.926361,0.751616,0.971349,0.746117,0.740815,0.627243,0.478227,0.202519,0.59848,0.185535,0.851114,0.15921,0.868407,0.0665967,0.880958,0.271873,0.854764,0.819225,0.421791,0.660932,0.223626,0.452879,0.883663,0.107218,0.0714666,0.184453,0.0946002,0.720255,0.582077,0.806914,0.963211,0.11148,0.683739,0.414732,0.846409,0.958917,0.0136048,0.188076,0.334293,0.906115,0.622945,0.247685,0.960288,0.570575,0.749581,0.935899,0.128117,0.219564,0.697462,0.845441,0.105512,0.748423,0.535991,0.807196,0.643574,0.931097,0.521831,0.639597,0.68376,0.296262,0.388398,0.515522,0.774878,0.379407,0.736023,0.167925,0.490508,0.373803,0.0378929,0.122102,0.0301263,0.502676,0.381533,0.526504,0.17364,0.00670791,0.0864163,0.410101,0.0779507,0.854325,0.594431,0.226,0.808436,0.842578,0.930347,0.28095,0.114303,0.256916,0.759141,0.85537,0.291639,0.959153,0.93681,0.322944,0.252504,0.491632,0.950763,0.478189,0.835586,0.867699,0.813579,0.271233,0.458031,0.0689793,0.281335,0.817054,0.212444,0.942855,0.424195,0.035113,0.634593,0.871838,0.740665,0.540779,0.307743,0.751423,0.615856,0.22667,0.51788,0.463491,0.0327856,0.116553,0.387236,0.452881,0.533767,0.395219,0.274775,0.790385,0.556194,0.721599,0.110843,0.438535,0.194254,0.00302929,0.688717,0.930445,0.692545,0.803702,0.200153,0.909722,0.304378,0.582727,0.00278097,0.0311058,0.357784,0.911905,0.235599,0.0105018,0.421473,0.648727,0.563819,0.41321,0.945537,0.0397744,0.991095,0.505155,0.272132,0.319036,0.668448,0.96038,0.88124,0.417827,0.794672,0.595589,0.0376989,0.722624,0.173735,0.931296,0.85151,0.905437,0.159995,0.171624,0.183995,0.496101,0.428713,0.862503,0.31645,0.62979,0.188057,0.394722,0.102306,0.70225,0.654004,0.933237,0.329236,0.316387,0.234661,0.550978,0.706401,0.467754,0.302804,0.575676,0.451769,0.73168,0.788777,0.219875,0.594229,0.48407,0.635157,0.308006,0.459552,0.282897,0.312872,0.536274,0.163985,0.985918,0.239117,0.459945,0.968458,0.22926,0.666996,0.929693,0.780689,0.473421,0.619368,0.0966263,0.391793,0.0692282,0.994628,0.248981,0.835756,0.00394726,0.935082,0.256877,0.606263,0.441783,0.401365,0.836578,0.510052,0.127758,0.294587,0.919759,0.88334,0.931821,0.819775,0.26362,0.988848,0.13633,0.14776,0.903791,0.986969,0.326576,0.952366,0.56769,0.80545,0.00414485,0.933708,0.792665,0.233207,0.395925,0.463743,0.867624,0.0642018,0.772618,0.885988,0.887287,0.811047,0.016526,0.430011,0.620294,0.918455,0.556578,0.637958,0.543315,0.835174,0.662908,0.00683481,0.927457,0.117291,0.461121,0.320694,0.117909,0.477756,0.658775,0.28211,0.18178,0.244082,0.350241,0.145598,0.906863,0.67355,0.71895,0.198656,0.989002,0.0990299,0.0900043,0.593561,0.165867,0.0378125,0.615458,0.213721,0.994666,0.205607,0.617243,0.820415,0.97718,0.00550574,0.493192,0.459592,0.110538,0.616042,0.212994,0.997055,0.386099,0.926629,0.420874,0.99211,0.769816,0.392667,0.290426,0.620274,0.953477,0.98102,0.72759,0.673948,0.920364,0.254482,0.754079,0.636684,0.918369,0.512985,0.649049,0.625909,0.377063,0.203752,0.178662,0.992717,0.228767,0.493325,0.592432,0.678609,0.549493,0.691691,0.340367,0.163136,0.319585,0.230137,0.467104,0.479726,0.18575,0.421429,0.145924,0.93526,0.409946,0.955392,0.408405,0.753111,0.578707,0.619633,0.468715,0.804639,0.667054,|0.221677,0.648976,0.0216306,0.703001,0.811393,0.272996,0.105027,0.280051,0.948303,0.0515141,0.318636,0.238873,0.515271,0.545651,0.768385,0.36593,0.895221,0.109104,0.809489,0.423797,0.505889,0.87989,0.553723,0.678037,0.45459,0.415234,0.0302772,0.694363,0.45476,0.0655872,0.627674,0.812762,0.421041,0.981577,0.151448,0.910408,0.253287,0.850186,0.467391,0.186174,0.880451,0.721874,0.502437,0.887659,0.958131,0.6867,0.599564,0.0223697,0.347805,0.70287,0.718862,0.204353,0.231192,0.947845,0.156279,0.670805,0.49899,0.16468,0.548077,0.527883,0.0269768,0.877371,0.296104,0.00230777,0.330175,0.815259,0.863653,0.182362,0.0585805,0.778685,0.45774,0.52992,0.484171,0.716167,0.753635,0.366165,0.12982,0.890129,0.954522,0.607965,0.764518,0.734811,0.165519,0.0934126,0.57419,0.718322,0.970783,0.12009,0.310737,0.705267,0.727326,0.915613,0.144103,0.807477,0.906139,0.445972,0.970061,0.641066,0.584546,0.833424,0.0746779,0.558075,0.286877,0.471135,0.680581,0.964324,0.354078,0.337329,0.611258,0.726129,0.69894,0.423903,0.876476,0.0560824,0.110535,0.485881,0.601281,0.306901,0.776425,0.0807039,0.541351,0.968767,0.278605,0.593118,0.729251,0.663459,0.251895,0.115252,0.730586,0.493479,0.17303,0.811581,0.054708,0.131307,0.447771,0.927359,0.497253,0.105729,0.456836,0.424527,0.0346241,0.534585,0.43048,0.146421,0.517765,0.993257,0.233456,0.899759,0.722505,0.250619,0.784888,0.585115,0.179048,0.300185,0.0148636,0.81448,0.33195,0.907803,0.385493,0.86722,0.683637,0.942871,0.447097,0.424876,0.794468,0.28548,0.939077,0.519816,0.417512,0.0695049,0.366683,0.729045,0.0899762,0.251735,0.780311,0.430287,0.649826,0.482792,0.312867,0.814907,0.03049,0.189764,0.0108961,0.656782,0.872654,0.217477,0.674838,0.420822,0.871845,0.743487,0.0703719,0.855615,0.597789,0.239199,0.281807,0.466117,0.370883,0.214033,0.272798,0.196537,0.949742,0.513718,0.715042,0.876131,0.429014,0.0563744,0.0242488,0.703579,0.385571,0.437459,0.504574,0.288294,0.621048,0.887315,0.909742,0.603767,0.234295,0.0322685,0.218252,0.624395,0.861312,0.516959,0.877811,0.0940531,0.237741,0.589674,0.308389,0.533152,0.299549,0.123621,0.818201,0.7467,0.307493,0.279097,0.328149,0.444561,0.680561,0.666901,0.224919,0.571094,0.706405,0.573797,0.959328,0.234916,0.739527,0.490546,0.567552,0.237029,0.111717,0.0415379,0.153749,0.75257,0.262399,0.886368,0.749819,0.996249,0.882231,0.29454,0.488525,0.967171,0.288549,0.328397,0.578899,0.66217,0.670325,0.219223,0.135779,0.425006,0.936264,0.246799,0.203778,0.719101,0.87395,0.170503,0.746961,0.187224,0.406428,0.825823,0.0377617,0.705184,0.227705,0.545195,0.634461,0.456331,0.220493,0.205791,0.260719,0.016556,0.474579,0.82218,0.672299,0.161456,0.450053,0.170051,0.503879,0.792672,0.482327,0.388972,0.166741,0.0549659,0.881852,0.865573,0.81289,0.330889,0.898098,0.455692,0.447436,0.180463,0.866416,0.449861,0.617918,0.802112,0.37139,0.689682,0.798354,0.0782475,0.749444,0.855504,0.815002,0.48757,0.827164,0.701321,0.971011,0.662193,0.027217,0.375531,0.673604,0.0750543,0.630622,0.379883,0.831372,0.397938,0.427418,0.322773,0.372674,0.317517,0.0640403,0.510549,0.147684,0.952983,0.754695,0.834444,0.557811,0.740801,0.186572,0.863549,0.994466,0.557325,0.594175,0.652255,0.694232,0.929836,0.258071,0.767127,0.764937,0.48429,0.728109,0.366915,0.764141,0.594595,0.540603,0.162736,0.263175,0.823832,0.240438,0.772748,0.455483,0.671689,0.261689,0.586283,0.848795,0.902363,0.552136,0.283981,0.322079,0.549431,0.947472,0.307303,0.236828,0.639941,0.281164,0.501297,0.846278,0.65536,0.919077,0.415156,0.62993,0.690471,0.823507,0.18516,0.643009,0.45872,0.249204,0.866651,0.102382,0.243032,0.698395,0.900684,0.270373,0.348544,0.4625,0.786115,0.837536,0.785423,0.557501,0.181361,0.888974,0.149814,0.847141,0.522454,0.334163,0.259778,0.924679,0.659368,0.613934,0.945455,0.341181,0.336462,0.646039,0.207507,0.685117,0.32539,0.37098,0.0609924,0.0623388,0.792079,0.505208,0.236508,0.169733,0.748974,0.954042,0.509528,0.875584,0.0929881,0.433303,0.184931,0.56973,0.619881,0.886757,0.677995,0.277818,0.796343,0.677784,0.732423,0.591683,0.93948,0.0685313,0.641304,0.979482,0.307045,0.424531,0.471718,0.795677,0.251882,0.985137,0.555428,0.199083,0.750946,0.998276,0.903034,0.164384,0.0562276,0.433628,0.17087,0.701279,0.217772,0.992135,0.132867,0.534019,0.927372,0.747605,0.445634,0.0441025,0.751322,0.498702,0.397314,0.974772,0.712851,0.00574458,0.181008,0.284924,0.753809,0.979073,0.434403,0.235387,0.917672,0.805372,0.933533,0.791437,0.299643,0.303087,0.0199602,0.18657,0.563925,0.887012,0.883286,0.766023,0.11682,0.989456,0.650554,0.132099,0.215462,0.795431,0.974625,0.0489174,0.83061,0.0824583,0.0502615,0.716228,0.431373,0.109461,0.514763,0.73641,0.116442,0.704685,0.772417,0.121608,0.19155,0.957338,0.0380754,0.253965,0.0761215,0.894558,0.576134,0.940045,0.760517,0.0950006,0.698185,0.712296,0.347417,0.709093,0.889844,0.575677,0.91686,0.0178365,0.211287,0.298618,0.806366,0.995668,0.6142,0.566283,0.694965,0.511944,0.924878,0.810907,0.0513898,0.173444,0.188034,0.123715,0.186274,0.128616,0.767704,0.68872,0.497095,0.406689,0.930449,0.64015,0.316193,0.878478,0.724811,0.261714,0.0949665,0.337198,0.451927,0.0438633,0.549652,0.593502,0.784485,0.751396,0.80509,0.253802,0.960495,0.965983,0.316719,0.908145,0.783425,0.258058,0.739004,0.596099,0.398496,0.156722,0.444717,0.108061,0.406379,0.0216711,0.923553,0.181621,0.46791,0.850627,0.65885,0.605654,0.925563,0.216106,0.62298,0.624664,0.551425,0.0101519,0.509699,0.761688,0.0761549,0.560181,0.939089,0.328295,0.41027,0.98559,0.474959,0.689857,0.984552,0.804593,0.72694,0.201898,0.0714183,0.053603,0.670525,0.13945,0.646645,0.886572,0.862925,0.264414,0.641912,0.776376,0.045009,0.745373,0.615813,0.0146863,0.916231,0.683043,0.316586,0.206282,0.675124,0.0955064,0.443316,0.934075,0.160474,0.846887,0.000530005,0.514553,0.302307,0.00676292,0.163464,0.14341,0.171542,0.0646914,0.0737238,0.102768,0.16514,0.574252,0.0952968,0.933776,0.657603,0.224075,0.587526,0.00816184,0.848709,0.393979,0.928093,0.998627,0.872937,0.922022,0.545639,0.220687,0.476484,0.0801889,0.480713,0.0433756,0.739976,0.666596,0.0708641,0.936901,0.403298,0.632851,0.923613,0.429435,0.773506,0.228766,0.662876,0.481012,0.673296,0.847479,0.459001,0.813755,0.104032,0.57639,0.915077,0.516891,0.27631,0.624392,0.0883499,0.242303,0.795426,0.955669,0.348125,0.0937827,0.96134,0.343176,0.613356,0.101147,0.514826,0.293587,0.572838,0.130526,0.774957,0.885951,0.199938,0.722162,0.851665,0.93179,0.71065,0.163576,0.804526,0.392116,0.515236,0.516496,0.976717,0.458554,0.688138,0.573748,0.565602,0.0474002,0.941655,0.147208,0.930506,0.845525,0.162932,0.565796,0.776415,0.464984,0.772154,0.439907,0.317485,0.00835812,0.158572,0.577823,0.674632,0.737946,0.393001,0.962986,0.523396,0.531169,0.410455,0.389257,0.947034,0.525966,0.673304,0.283314,0.652681,0.296044,0.816898,0.65894,0.106228,0.334229,0.0973332,0.597314,0.171585,0.414207,0.479694,0.885651,0.807589,0.338426,0.244527,0.0989637,0.43932,0.253288,0.148371,0.17593,0.405152,0.131173,0.829468,0.486764,0.987062,0.482729,0.320979,0.822809,0.568849,0.700589,0.788394,0.816695,0.558747,0.769923,0.601083,0.453905,0.315779,0.0230658,0.813238,0.937455,0.389351,0.866249,0.439239,0.248564,0.120641,0.513022,0.530981,0.7995,0.943201,0.181923,0.211799,0.649447,0.147417,0.338802,0.060513,0.35073,0.610022,0.96588,0.35318,0.818917,0.847957,0.0296485,0.407997,0.502592,0.30666,0.0988325,0.0582915,0.387342,0.503472,0.567399,0.128186,0.600595,0.681078,0.136537,0.463184,0.0371802,0.613324,0.366969,0.273771,0.166753,0.787203,0.730176,0.765525,0.681318,0.510142,0.556747,0.623301,0.137565,0.637917,0.37183,0.35897,0.464324,0.446619,0.699531,0.517263,0.527969,0.532248,0.841736,0.749495,0.872603,0.0962517,0.79719,0.468973,0.477033,0.142342,0.235367,0.119102,0.363204,0.826417,0.676763,0.5707,0.994336,0.735231,0.123911,0.213916,0.402801,0.956715,0.726115,0.384577,0.627057,0.984106,0.809018,0.829762,0.835028,0.639471,0.957624,0.509567,0.191607,0.407229,0.212856,0.00869596,0.898493,0.0735857,0.376163,0.713165,0.880367,0.509292,0.888465,0.987439,0.301193,0.0829535,0.825645,0.358639,0.555875,0.150903,0.459033,0.369674,0.866759,0.185614,0.60945,0.887472,0.594282,0.497248,0.301176,0.146953,0.00133187,0.975852,0.702459,0.319449,0.707061,0.972093,0.821483,0.214717,0.894445,0.564808,0.157442,0.945328,0.971295,0.278185,0.487045,0.512211,0.282675,0.523449,0.453327,0.0562213,0.235533,0.965307,0.0968289,0.497639,0.48439,0.921211,0.908316,0.540496,0.139132,0.613004,0.656128,0.644688,0.756391,0.328257,0.117009,0.825133,0.365675,0.507655,0.60418,0.349701,0.496701,0.621844,0.943317,0.346431,0.710674,0.017462,0.913363,0.127206,0.452349,0.936204,0.330938,0.925557,0.727256,0.554327,0.21145,0.387338,0.551352,0.0409742,0.212484,0.824676,0.104544,0.214944,0.348043,0.663051,0.741686,0.7379,0.550049,0.910913,0.329032,0.788848,0.0390332,0.663954,0.346013,0.138969,0.820471,0.140034,0.198113,0.0945561,0.920581,0.315958,0.455641,0.822729,0.0335634,0.360301,0.776814,0.260901,0.788988,0.566319,0.519526,0.866481,0.532223,0.86595,0.0223001,0.0514036,0.32279,0.687942,0.918747,0.414768,0.180716,0.599111,|0.968128,0.338145,0.224933,0.963711,0.458418,0.475043,0.19742,0.417589,0.415154,0.669666,0.0974152,0.0719016,0.641761,0.524636,0.781404,0.726249,0.737483,0.706714,0.747981,0.119609,0.583568,0.0629839,0.933722,0.399292,0.923917,0.570431,0.863325,0.948401,0.366118,0.0658078,0.109996,0.110021,0.776276,0.955628,0.39051,0.790178,0.383532,0.000434339,0.292741,0.187364,0.98134,0.417133,0.918812,0.0397013,0.961271,0.512397,0.765925,0.926453,0.421211,0.410192,0.529075,0.434056,0.118979,0.953391,0.794976,0.792578,0.494639,0.092416,0.664435,0.844592,0.0813259,0.139235,0.694311,0.417923,0.0826045,0.700258,0.767163,0.0853015,0.027769,0.76565,0.421387,0.654443,0.0135452,0.401031,0.669227,0.0256112,0.128919,0.650777,0.420466,0.945573,0.281801,0.741579,0.291023,0.303313,0.833324,0.120136,0.959964,0.750455,0.143604,0.765972,0.681181,0.330643,0.01115,0.216745,0.472916,0.253708,0.538219,0.356809,0.940653,0.0242029,0.793525,0.45005,0.0249325,0.193337,0.079627,0.363667,0.0939102,0.623863,0.097241,0.850346,0.987941,0.485736,0.0272459,0.0260001,0.308891,0.183563,0.46982,0.450904,0.512339,0.259989,0.473603,0.444554,0.766241,0.876362,0.110476,0.77893,0.0236642,0.843036,0.836932,0.708142,0.348706,0.608443,0.437782,0.762603,0.145108,0.922853,0.947715,0.721488,0.650608,0.220015,0.489257,0.123278,0.718177,0.124714,0.615678,0.641789,0.224403,0.542851,0.75562,0.334086,0.921584,0.909132,0.653714,0.971927,0.526144,0.639989,0.989286,0.294011,0.104481,0.247872,0.606034,0.988909,0.438343,0.931108,0.997769,0.761658,0.576698,0.525795,0.230045,0.477857,0.346124,0.4368,0.814415,0.333888,0.119314,0.000166535,0.0551622,0.204745,0.671616,0.276384,0.732912,0.410068,0.413431,0.0803565,0.476276,0.779777,0.0356752,0.447751,0.0577317,0.423589,0.20256,0.550471,0.576283,0.217317,0.78893,0.227949,0.544004,0.153933,0.482563,0.498319,0.911478,0.556335,0.17402,0.925887,0.061133,0.681313,0.0447044,0.955905,0.219473,0.355573,0.168157,0.334748,0.451512,0.631089,0.644262,0.962406,0.358458,0.0247505,0.895582,0.777445,0.463103,0.962789,0.889994,0.380049,0.864928,0.166175,0.644096,0.104514,0.924202,0.0789887,0.0071876,0.278782,0.108554,0.851012,0.287584,0.102815,0.823889,0.047901,0.827766,0.747073,0.471909,0.719669,0.555229,0.215824,0.739647,0.693023,0.447794,0.777261,0.14743,0.584106,0.975529,0.283252,0.848205,0.897271,0.174025,0.723418,0.0484726,0.921154,0.656133,0.36076,0.442392,0.521698,0.85073,0.69363,0.561138,0.343397,0.611641,0.22187,0.353857,0.489989,0.316773,0.321952,0.527283,0.50309,0.874322,0.459642,0.210917,0.571093,0.611192,0.290831,0.152696,0.249784,0.899146,0.248737,0.00721228,0.945465,0.926507,0.144542,0.873473,0.599216,0.955875,0.754428,0.348594,0.121066,0.722582,0.0252005,0.545563,0.735756,0.62257,0.513944,0.0484176,0.90838,0.206493,0.119274,0.272926,0.0387534,0.771298,0.049418,0.0320897,0.24311,0.0172119,0.488793,0.100904,0.501682,0.107489,0.0557529,0.0712588,0.59867,0.0010854,0.333213,0.733602,0.467206,0.408037,0.638532,0.0276293,0.045745,0.380542,0.657951,0.99163,0.358896,0.656125,0.80093,0.489233,0.357519,0.282747,0.668869,0.44793,0.813545,0.762192,0.721871,0.379716,0.432896,0.0938429,0.748107,0.345633,0.608796,0.0747352,0.361889,0.349569,0.450808,0.868786,0.97051,0.834405,0.324287,0.0273685,0.344948,0.75392,0.966996,0.505083,0.724668,0.97908,0.813987,0.819942,0.641271,0.150986,0.411696,0.309264,0.412085,0.786409,0.050653,0.111466,0.0463213,0.776788,0.754722,0.167851,0.300417,0.428846,0.805204,0.940161,0.0695054,0.275691,0.761482,0.408081,0.189363,0.5177,0.616242,0.659535,0.0530687,0.33356,0.79546,0.418589,0.122268,0.405442,0.728571,0.126694,0.750545,0.0710859,0.311066,0.326028,0.603729,0.480684,0.953677,0.928884,0.993923,0.674008,0.177588,0.940383,0.685438,0.585663,0.0676611,0.123914,0.051524,0.383576,0.451384,0.287559,0.35589,0.080604,0.923353,0.377149,0.306201,0.240466,0.95013,0.315916,0.473263,0.180775,0.886237,0.360208,0.52002,0.764845,0.56199,0.145259,0.512372,0.582975,0.20463,0.0688429,0.459495,0.657184,0.795924,0.725109,0.0969655,0.734522,0.495108,0.271295,0.657052,0.36191,0.326022,0.230957,0.818044,0.710669,0.74146,0.855352,0.0969223,0.219411,0.213093,0.946239,0.826678,0.725488,0.259914,0.512797,0.735931,0.117882,0.400383,0.207767,0.482931,0.0638129,0.649639,0.747137,0.556822,0.979012,0.532002,0.994932,0.115858,0.407658,0.98904,0.592537,0.261993,0.157098,0.923138,0.455824,0.394711,0.507362,0.058844,0.57979,0.274915,0.370695,0.299256,0.246342,0.799202,0.0552834,0.28691,0.0519366,0.572086,0.696256,0.0813455,0.735755,0.171948,0.011553,0.371922,0.96104,0.485673,0.277209,0.953274,0.175658,0.0906131,0.912469,0.939988,0.849928,0.986311,0.498284,0.202165,0.661208,0.0939196,0.355738,0.785199,0.824243,0.59216,0.247337,0.774176,0.679699,0.962631,0.87083,0.572922,0.439789,0.00360316,0.538811,0.110518,0.365388,0.58119,0.671217,0.285762,0.255561,0.397813,0.867641,0.421101,0.98698,0.550981,0.549897,0.7458,0.860567,0.116311,0.346722,0.154303,0.975034,0.218801,0.229851,0.992326,0.467407,0.91423,0.262912,0.180077,0.858498,0.109994,0.37828,0.852442,0.379742,0.833371,0.38604,0.788037,0.498027,0.0914395,0.379169,0.651041,0.88438,0.0439852,0.0429311,0.595239,0.857619,0.316941,0.957563,0.252195,0.189226,0.205749,0.73634,0.357113,0.678121,0.220334,0.432144,0.850105,0.273457,0.090205,0.717116,0.172344,0.714448,0.185647,0.544688,0.789534,0.874943,0.682205,0.461601,0.633693,0.650975,0.210024,0.987909,0.510009,0.222093,0.240669,0.337817,0.997141,0.0679523,0.163209,0.750482,0.427686,0.343661,0.589477,0.576707,0.714298,0.276244,0.965989,0.605004,0.187713,0.922533,0.166879,0.311788,0.424552,0.0313083,0.476439,0.654712,0.290575,0.88678,0.810583,0.617098,0.401361,0.939461,0.627544,0.427366,0.920659,0.584082,0.887097,0.86178,0.59696,0.147001,0.950963,0.522545,0.0332711,0.0165649,0.188897,0.5884,0.291116,0.887397,0.1187,0.0806268,0.558911,0.0396469,0.163457,0.115944,0.313501,0.747681,0.229546,0.890453,0.843153,0.54751,0.365301,0.327688,0.601428,0.160134,0.351546,0.0765275,0.183283,0.751962,0.521576,0.887375,0.00158685,0.590092,0.494566,0.428739,0.329075,0.291185,0.384938,0.500621,0.571988,0.145006,0.0746593,0.148225,0.419911,0.681518,0.811659,0.680859,0.935458,0.0902216,0.501532,0.845155,0.854093,0.802357,0.298653,0.182508,0.30438,0.172345,0.0690009,0.533179,0.0358279,0.0870769,0.894418,0.214494,0.750077,0.713909,0.707312,0.595373,0.395535,0.735865,0.641222,0.918906,0.516742,0.244743,0.323885,0.660906,0.877042,0.828741,0.339829,0.381598,0.785628,0.242603,0.0483438,0.272085,0.09231,0.255897,0.94987,0.683498,0.81295,0.0354733,0.871886,0.729086,0.195492,0.488371,0.759992,0.793769,0.611467,0.978018,0.391758,0.956214,0.0178507,0.955196,0.950764,0.107241,0.651329,0.912379,0.131805,0.807688,0.415112,0.281514,0.7012,0.699877,0.684716,0.636669,0.646778,0.685146,0.839582,0.749195,0.364007,0.258509,0.165237,0.724057,0.546064,0.619546,0.27326,0.0754564,0.486381,0.386554,0.994954,0.130899,0.907337,0.438638,0.250229,0.834385,0.664546,0.142683,0.108597,0.649324,0.651168,0.664462,0.393613,0.760643,0.435959,0.322968,0.119602,0.303405,0.203022,0.737313,0.000837862,0.297695,0.0463549,0.589425,0.876266,0.502219,0.832626,0.314274,0.35592,0.66157,0.844803,0.472568,0.445917,0.401232,0.552412,0.292227,0.889983,0.228018,0.147945,0.91946,0.760464,0.986913,0.293191,0.0955164,0.562287,0.487145,0.841792,0.179489,0.55912,0.849211,0.842969,0.812886,0.65559,0.297446,0.180534,0.0373723,0.411031,0.242338,0.543115,0.285727,0.681457,0.630265,0.569511,0.307803,0.467879,0.866197,0.819801,0.314892,0.610574,0.413457,0.615659,0.424874,0.178956,0.195783,0.766975,0.52816,0.21596,0.556369,0.372842,0.763017,0.702873,0.923665,0.909926,0.800501,0.860433,0.378455,0.403917,0.0123729,0.646987,0.654664,0.513785,0.953841,0.927972,0.155503,0.0118968,0.638203,0.640872,0.72917,0.987629,0.943189,0.472663,0.540991,0.198418,0.680909,0.772236,0.0225888,0.754808,0.108151,0.700453,0.308412,0.902341,0.340966,0.0285064,0.667845,0.398433,0.441972,0.974529,0.862217,0.520787,0.833816,0.862573,0.155166,0.239887,0.173391,0.329644,0.454669,0.509194,0.292431,0.561784,0.202951,0.83212,0.49413,0.973324,0.7694,0.270168,0.0742305,0.755808,0.341251,0.238188,0.773348,0.731868,0.261201,0.128864,0.509311,0.902533,0.824247,0.671175,0.915493,0.698168,0.578991,0.603909,0.317375,0.0968408,0.572773,0.931019,0.654271,0.951827,0.517201,0.826056,0.136453,0.0315655,0.664769,0.657011,0.594993,0.62556,0.837479,0.259457,0.30773,0.0112594,0.287427,0.0292915,0.209818,0.469945,0.0370718,0.394917,0.728622,0.257365,0.424334,0.871,0.409733,0.165163,0.552495,0.339171,0.964748,0.515844,0.0450212,0.204988,0.674783,0.252578,0.812844,0.826975,0.899797,0.495067,0.0969718,0.0705861,0.854196,0.741988,0.799535,0.796359,0.484092,0.201006,0.861789,0.890718,0.493864,0.626998,0.869857,0.183609,0.513272,0.959721,0.24312,0.611488,0.339678,0.00645185,0.918128,0.394873,0.883029,0.767032,0.407565,0.0258808,0.693249,0.0275742,0.44057,0.224124,0.790293,0.0804371,0.264498,0.183253,0.0632988,0.880391,0.423824,0.495205,0.100786,0.127543,0.753011,0.0477621,0.256377,0.779859,0.618715,0.161591,0.627743,0.0571279,0.425302,0.801539,|0.984288,0.735458,0.372224,0.471685,0.701452,0.712336,0.662267,0.170884,0.107588,0.802665,0.28657,0.803359,0.373126,0.835349,0.15391,0.358007,0.690838,0.636482,0.397474,0.809003,0.56778,0.375524,0.59491,0.738648,0.846699,0.637728,0.8403,0.623509,0.352966,0.348947,0.790155,0.549145,0.0404558,0.487266,0.78888,0.0256623,0.581326,0.0303922,0.915699,0.757462,0.282179,0.684074,0.354441,0.107283,0.160198,0.743744,0.829391,0.42399,0.872459,0.184179,0.454744,0.961446,0.292327,0.200189,0.355535,0.755621,0.588879,0.751303,0.641097,0.966479,0.735359,0.846741,0.0463847,0.682892,0.140465,0.220479,0.587012,0.490154,0.466336,0.753071,0.652124,0.164927,0.432134,0.467356,0.229696,0.0615541,0.507955,0.53932,0.922208,0.0374483,0.557251,0.615764,0.169819,0.335642,0.86187,0.876622,0.842906,0.690086,0.239654,0.268402,0.919279,0.480959,0.8523,0.128751,0.674228,0.908803,0.925214,0.979271,0.967395,0.578041,0.337259,0.343635,0.264882,0.159621,0.431755,0.927123,0.220718,0.680201,0.449299,0.21507,0.785625,0.0195794,0.408544,0.284929,0.945037,0.592554,0.602764,0.769619,0.497826,0.25309,0.235288,0.237258,0.167502,0.962533,0.218319,0.905652,0.70531,0.684163,0.943521,0.438497,0.0673219,0.674783,0.242856,0.547182,0.371954,0.27057,0.36985,0.987251,0.87409,0.979106,0.678833,0.827206,0.734687,0.625167,0.319847,0.555111,0.43075,0.600944,0.480812,0.711897,0.146781,0.173356,0.766532,0.171743,0.305058,0.862517,0.766182,0.870927,0.629546,0.764907,0.934354,0.538134,0.290616,0.398376,0.0490588,0.489455,0.556137,0.367169,0.118672,0.231157,0.150936,0.261589,0.925221,0.583615,0.941217,0.941823,0.752727,0.985537,0.0528275,0.377339,0.728671,0.995283,0.0673766,0.0552354,0.611909,0.398275,0.0290589,0.394446,0.669953,0.10572,0.988463,0.23756,0.891022,0.932048,0.687682,0.740894,0.649277,0.210631,0.0689735,0.688056,0.216656,0.975777,0.727778,0.890918,0.788068,0.752832,0.122156,0.302626,0.458682,0.431029,0.976745,0.590963,0.296785,0.0648175,0.555564,0.49421,0.149931,0.0087347,0.670918,0.946269,0.0552351,0.0242829,0.95288,0.570268,0.0168849,0.690881,0.906764,0.942384,0.435546,0.141308,0.944433,0.500763,0.977774,0.538549,0.47161,0.448397,0.475738,0.952465,0.503743,0.552466,0.899501,0.83205,0.771538,0.587482,0.703706,0.918045,0.5551,0.651305,0.238829,0.359337,0.682059,0.459475,0.823724,0.490251,0.250726,0.816341,0.110002,0.77836,0.0226858,0.601246,0.327407,0.172199,0.401924,0.551291,0.986384,0.609068,0.589849,0.461009,0.0357942,0.867443,0.612518,0.751271,0.16028,0.272747,0.335842,0.503791,0.624606,0.811839,0.262147,0.247978,0.116899,0.301545,0.807362,0.422803,0.91906,0.0991423,0.946493,0.940669,0.48388,0.442911,0.974446,0.665637,0.105546,0.18851,0.311725,0.94324,0.534037,0.168999,0.365808,0.0869373,0.00478524,0.387427,0.598568,0.321134,0.00903434,0.955085,0.0153723,0.463181,0.388494,0.818489,0.71998,0.814071,0.694986,0.294576,0.562659,0.363467,0.81329,0.53936,0.10571,0.218505,0.394087,0.0806529,0.704578,0.543904,0.80406,0.344283,0.920135,0.876717,0.202479,0.114531,0.866042,0.996685,0.840094,0.24428,0.405795,0.63656,0.121035,0.0210694,0.809214,0.61623,0.5753,0.0565698,0.254917,0.907917,0.0807849,0.612247,0.823551,0.188927,0.428489,0.869617,0.895598,0.604851,0.690047,0.363903,0.889097,0.373418,0.503275,0.853385,0.384241,0.462625,0.735706,0.203923,0.890689,0.169161,0.560565,0.0623294,0.952133,0.230692,0.432263,0.342206,0.771585,0.089018,0.836445,0.34492,0.235541,0.948522,0.940638,0.0985261,0.127584,0.881224,0.739212,0.848581,0.993507,0.763607,0.0572277,0.132268,0.544453,0.812071,0.579194,0.860644,0.829983,0.525303,0.164718,0.773662,0.867729,0.588147,0.489969,0.263639,0.0150515,0.846187,0.838613,0.566349,0.238195,0.869213,0.0916826,0.175451,0.42661,0.333936,0.459658,0.244224,0.92279,0.577777,0.906139,0.137262,0.993294,0.975672,0.764921,0.838647,0.58189,0.0810084,0.0759749,0.992681,0.316427,0.0323527,0.285007,0.127725,0.890261,0.0601303,0.327364,0.145152,0.914695,0.621729,0.864425,0.0628988,0.266907,0.016141,0.74044,0.148676,0.972866,0.214088,0.583468,0.918034,0.379018,0.28862,0.0716542,0.793509,0.545739,0.719965,0.101381,0.127776,0.467049,0.916675,0.045486,0.0396997,0.656206,0.55521,0.799528,0.743355,0.47931,0.936279,0.96594,0.280388,0.669299,0.928824,0.39001,0.362205,0.6577,0.0362348,0.838784,0.637513,0.799575,0.764961,0.920066,0.0290968,0.334538,0.637476,0.557544,0.871882,0.367896,0.335173,0.961746,0.0385866,0.500513,0.302802,0.124851,0.0704616,0.391297,0.0243274,0.391151,0.797938,0.548584,0.849268,0.304955,0.425659,0.33053,0.844672,0.210231,0.234286,0.550913,0.170308,0.473779,0.699994,0.682907,0.784289,0.120035,0.265377,0.090214,0.311651,0.00711149,0.24877,0.273347,0.0680192,0.054309,0.2158,0.0723771,0.491152,0.490089,0.370395,0.466499,0.539388,0.53185,0.253349,0.210994,0.83299,0.469938,0.0196133,0.153119,0.482395,0.333985,0.326702,0.9159,0.755245,0.922381,0.316254,0.803479,0.339628,0.238544,0.294538,0.425394,0.384959,0.649461,0.565916,0.443118,0.52157,0.987484,0.35341,0.671031,0.610886,0.015728,0.528154,0.2487,0.854694,0.793628,0.731372,0.866395,0.807057,0.0107373,0.248483,0.0102585,0.294593,0.324004,0.546175,0.394203,0.441072,0.00592762,0.314222,0.238079,0.0658442,0.403664,0.164881,0.960659,0.444141,0.19356,0.840016,0.326663,0.326141,0.585485,0.254528,0.0879295,0.506151,0.815793,0.164068,0.492726,0.686601,0.128294,0.748165,0.743638,0.216695,0.117558,0.429166,0.850429,0.867906,0.402431,0.871194,0.0485617,0.898282,0.898941,0.831456,0.948754,0.910538,0.0902401,0.176721,0.367535,0.503228,0.923369,0.0444881,0.0153416,0.54182,0.00256652,0.646111,0.0243417,0.254881,0.0523874,0.312642,0.256493,0.797495,0.684849,0.0761325,0.51789,0.019426,0.619209,0.331898,0.0348732,0.947678,0.606062,0.76443,0.763645,0.213138,0.430078,0.891796,0.363822,0.788265,0.258044,0.970642,0.993086,0.713511,0.839727,0.356582,0.788064,0.462793,0.251986,0.494757,0.249631,0.404784,0.744452,0.354733,0.218083,0.0720884,0.904087,0.1115,0.616967,0.394049,0.639149,0.602469,0.736399,0.865934,0.387868,0.336182,0.83382,0.53725,0.242741,0.984356,0.881215,0.614979,0.933071,0.602144,0.814418,0.234052,0.492615,0.767762,0.0482125,0.901523,0.699899,0.135545,0.970875,0.754216,0.154144,0.563677,0.147413,0.548287,0.994755,0.112892,0.357115,0.53193,0.712038,0.937826,0.958731,0.758692,0.932165,0.467199,0.865404,0.857584,0.446916,0.400176,0.805596,0.837604,0.398388,0.518481,0.453414,0.241871,0.527588,0.65985,0.121317,0.860851,0.209459,0.958875,0.0307397,0.243893,0.471876,0.151447,0.569833,0.288101,0.726864,0.575591,0.385691,0.842991,0.436274,0.0959229,0.037202,0.332161,0.799966,0.466533,0.883465,0.236132,0.588308,0.873642,0.812174,0.0618408,0.339118,0.925542,0.595306,0.0319338,0.626988,0.301136,0.759939,0.134579,0.809581,0.00741655,0.103582,0.545286,0.957522,0.956331,0.182674,0.110501,0.967587,0.28043,0.287488,0.400734,0.292487,0.54537,0.861866,0.171103,0.555798,0.862801,0.826037,0.37559,0.480897,0.900847,0.391672,0.380526,0.928374,0.344528,0.620299,0.680264,0.491554,0.39832,0.322747,0.575298,0.822725,0.290768,0.0245773,0.858308,0.750706,0.0941438,0.475937,0.240891,0.291978,0.967587,0.724761,0.898071,0.730143,0.765658,0.107796,0.97753,0.963229,0.955342,0.796242,0.351535,0.419323,0.287671,0.477302,0.119194,0.610267,0.750745,0.597462,0.329509,0.959679,0.290588,0.724355,0.413369,0.519719,0.317924,0.474727,0.783244,0.145763,0.406116,0.931848,0.348277,0.267273,0.771768,0.352151,0.810399,0.444708,0.455402,0.648645,0.999353,0.270631,0.860488,0.384735,0.538719,0.907681,0.039547,0.676403,0.327378,0.975802,0.98922,0.594327,0.315244,0.393488,0.273417,0.0948437,0.354881,0.87065,0.686098,0.904144,0.139918,0.61753,0.932185,0.638349,0.539364,0.934526,0.797487,0.837097,0.242126,0.689365,0.986189,0.883501,0.989289,0.671524,0.896983,0.735504,0.387829,0.569184,0.180476,0.827679,0.194323,0.481798,0.507182,0.63083,0.169501,0.789692,0.479008,0.671019,0.935496,0.115116,0.216576,0.352169,0.844834,0.7404,0.221603,0.0327547,0.875218,0.30856,0.752374,0.53022,0.0588785,0.866039,0.698567,0.0400439,0.0277417,0.385544,0.543754,0.615357,0.141508,0.696631,0.665517,0.637368,0.32325,0.669151,0.332508,0.456031,0.424571,0.236403,0.897476,0.785044,0.125367,0.0797969,0.536539,0.479864,0.674399,0.630083,0.255748,0.945066,0.0270349,0.771051,0.818181,0.649077,0.633741,0.904368,0.939312,0.158491,0.37272,0.838303,0.00942099,0.983411,0.201997,0.453011,0.335282,0.0995297,0.349907,0.400932,0.426913,0.175877,0.580471,0.15487,0.0521761,0.511911,0.905901,0.626769,0.166141,0.325239,0.815881,0.588832,0.0296261,0.0315043,0.644083,0.249129,0.670092,0.0256788,0.0339835,0.195288,0.665404,0.938859,0.422031,0.255988,0.0810679,0.981751,0.883857,0.702899,0.199467,0.456326,0.601254,0.209808,0.828904,0.84624,0.112984,0.778423,0.0324994,0.920015,0.397772,0.714066,0.388501,0.754876,0.50358,0.360523,0.820687,0.424098,0.616103,0.619267,0.936402,0.409534,0.506073,0.372448,0.564823,0.253437,0.903083,0.26865,0.714492,0.88207,0.83053,0.466678,0.624245,0.380353,0.233331,0.776535,0.915816,0.60745,0.398135,0.671556,0.988062,0.788889,0.842152,0.516805,0.482011,0.308154,0.538934,0.522372,0.357198,0.890938,0.252036,|0.759558,0.164957,0.777231,0.161804,0.204979,0.892125,0.0506967,0.0336919,0.187491,0.4447,0.29652,0.424616,0.899446,0.444064,0.183448,0.693097,0.30552,0.233611,0.821328,0.0781636,0.825868,0.2251,0.718789,0.23871,0.313336,0.895316,0.292753,0.577659,0.242336,0.536395,0.930227,0.519565,0.403824,0.112441,0.890651,0.134331,0.961007,0.635778,0.454977,0.0585028,0.525276,0.387384,0.5471,0.435363,0.461539,0.75878,0.196929,0.198506,0.997202,0.812002,0.653862,0.353387,0.31046,0.0395084,0.670036,0.758098,0.490653,0.78347,0.718555,0.573019,0.567453,0.748951,0.692881,0.293795,0.892059,0.588108,0.821256,0.497721,0.233098,0.119894,0.87,0.491567,0.136149,0.0140853,0.23175,0.183621,0.269939,0.661791,0.291456,0.58671,0.869953,0.134171,0.628638,0.308385,0.753403,0.801387,0.0731655,0.536275,0.73105,0.195952,0.449522,0.400082,0.0259503,0.376602,0.102673,0.666174,0.809258,0.999543,0.664889,0.856216,0.175565,0.770352,0.806973,0.605423,0.562517,0.142626,0.852944,0.323448,0.358525,0.574871,0.368125,0.0310491,0.547551,0.785477,0.797514,0.0980307,0.626397,0.827699,0.486018,0.129984,0.483344,0.737864,0.241281,0.975569,0.997773,0.120721,0.719621,0.243659,0.212974,0.431597,0.451255,0.548108,0.874677,0.895222,0.139981,0.503194,0.821591,0.226742,0.232547,0.631917,0.245015,0.210837,0.335131,0.928064,0.337174,0.525604,0.757138,0.525357,0.700968,0.735826,0.924103,0.249424,0.75145,0.565367,0.70868,0.884906,0.0644259,0.34938,0.858182,0.819999,0.946069,0.340369,0.690748,0.894681,0.656886,0.236478,0.583615,0.96199,0.797198,0.95987,0.337338,0.701181,0.944966,0.398093,0.853894,0.993961,0.303771,0.487134,0.419488,0.597476,0.242641,0.139198,0.979301,0.654007,0.149202,0.972968,0.181623,0.969961,0.677815,0.55231,0.0657727,0.510596,0.174107,0.92734,0.452505,0.537293,0.187534,0.132873,0.434323,0.105306,0.702352,0.840813,0.893427,0.503613,0.21114,0.0431475,0.0943193,0.491407,0.0920066,0.184846,0.508344,0.542624,0.707529,0.05391,0.203688,0.885269,0.393306,0.79466,0.597587,0.0155881,0.29403,0.780567,0.0649168,0.125277,0.150554,0.802915,0.0545329,0.978015,0.0649639,0.0111908,0.421276,0.770792,0.412797,0.315517,0.0265649,0.206494,0.755143,0.513218,0.992478,0.711075,0.557072,0.988158,0.906448,0.130428,0.1178,0.935024,0.353745,0.497699,0.831803,0.110577,0.125238,0.413368,0.763072,0.109165,0.383628,0.121884,0.702241,0.991802,0.776425,0.081055,0.977303,0.733387,0.132016,0.0359892,0.401747,0.368832,0.267823,0.257424,0.0848054,0.817993,0.832123,0.796273,0.80568,0.938331,0.515559,0.635033,0.206477,0.697389,0.585007,0.857891,0.536682,0.0179055,0.156139,0.214126,0.280394,0.80494,0.452423,0.501,0.663269,0.799354,0.837778,0.277105,0.316246,0.218265,0.601169,0.93431,0.767774,0.224083,0.358928,0.453884,0.325521,0.974739,0.632326,0.421427,0.438434,0.0549887,0.63894,0.709685,0.239287,0.548719,0.0978345,0.972667,0.4148,0.717147,0.346336,0.479939,0.503602,0.885981,0.496105,0.763169,0.291274,0.207291,0.24787,0.15443,0.682386,0.224999,0.860939,0.227266,0.724259,0.273692,0.600572,0.325275,0.972876,0.645065,0.907998,0.766891,0.174393,0.589445,0.640443,0.0605447,0.000439405,0.970101,0.582869,0.654243,0.533962,0.377489,0.96851,0.827647,0.752865,0.21551,0.0352316,0.247106,0.722288,0.685479,0.924219,0.137843,0.415526,0.985162,0.687464,0.854072,0.760963,0.614382,0.0506163,0.384107,0.481579,0.0310361,0.813147,0.976173,0.872031,0.884826,0.116268,0.819494,0.375415,0.504964,0.436478,0.60736,0.704382,0.115382,0.5473,0.879757,0.355097,0.686391,0.730663,0.737029,0.408847,0.675699,0.38334,0.00921446,0.20012,0.531341,0.424328,0.292424,0.759303,0.0241975,0.797592,0.455247,0.796608,0.292892,0.454815,0.265368,0.586019,0.498719,0.362133,0.506989,0.566352,0.0576094,0.206727,0.999518,0.469864,0.864014,0.351533,0.742475,0.438659,0.943185,0.989731,0.548233,0.153565,0.696892,0.879353,0.202533,0.627082,0.353357,0.768304,0.456304,0.276313,0.40292,0.379904,0.527719,0.771973,0.976511,0.461083,0.809348,0.672196,0.642491,0.137935,0.53641,0.42713,0.174757,0.114012,0.621364,0.625035,0.776723,0.427908,0.725748,0.00994235,0.582401,0.258492,0.265215,0.17273,0.896485,0.547913,0.308187,0.113398,0.628989,0.52588,0.88829,0.172322,0.3572,0.999588,0.989906,0.883625,0.218425,0.737172,0.637423,0.0418835,0.49131,0.485347,0.733569,0.230444,0.152795,0.322208,0.466281,0.577808,0.263333,0.591922,0.990606,0.127434,0.135729,0.164396,0.28677,0.847679,0.0232226,0.128342,0.480134,0.0170252,0.824994,0.171887,0.0890795,0.654274,0.299891,0.815448,0.78803,0.604781,0.837009,0.241248,0.528552,0.739789,0.165888,0.689116,0.300191,0.791844,0.548578,0.283553,0.523877,0.435361,0.485741,0.61753,0.95509,0.680905,0.295824,0.512731,0.940253,0.693543,0.695264,0.88661,0.443746,0.254532,0.402802,0.0845305,0.253057,0.254615,0.507635,0.69086,0.119035,0.683402,0.266752,0.423828,0.956033,0.153258,0.442792,0.358534,0.246275,0.805732,0.466228,0.850594,0.976177,0.570377,0.369285,0.173346,0.458287,0.905762,0.0947955,0.273297,0.376957,0.220417,0.653996,0.403134,0.914697,0.688041,0.567912,0.405451,0.330983,0.60396,0.678872,0.260762,0.925217,0.367377,0.350197,0.0718787,0.145227,0.143669,0.0882966,0.64654,0.654305,0.613394,0.572098,0.165838,0.0916805,0.0103129,0.198066,0.96529,0.0538885,0.521923,0.499874,0.946423,0.936813,0.974094,0.678407,0.421615,0.568477,0.573429,0.259651,0.227363,0.306503,0.231893,0.680865,0.794609,0.142203,0.533277,0.231827,0.698826,0.393019,0.0734705,0.746386,0.82013,0.333578,0.929352,0.0226753,0.0759475,0.942901,0.910897,0.763202,0.472445,0.922977,0.608106,0.71959,0.257315,0.148525,0.402263,0.493497,0.887307,0.547485,0.866668,0.32294,0.579793,0.883361,0.399195,0.0310073,0.769142,0.227351,0.160597,0.224071,0.704037,0.77609,0.472681,0.837487,0.745936,0.00892878,0.933679,0.695969,0.99867,0.269657,0.850672,0.692549,0.636324,0.692332,0.260149,0.842751,0.32632,0.323337,0.45659,0.147202,0.913787,0.98182,0.401646,0.4481,0.776486,0.946514,0.282358,0.467398,0.886161,0.701083,0.274398,0.0832493,0.0777106,0.0907902,0.190917,0.353969,0.400303,0.567138,0.456786,0.467742,0.141878,0.142239,0.972183,0.699533,0.788764,0.506888,0.683608,0.608522,0.657688,0.508743,0.777448,0.882983,0.526502,0.812383,0.519259,0.529621,0.272285,0.133018,0.305887,0.0332024,0.579494,0.140089,0.793244,0.0456169,0.0948672,0.312632,0.891096,0.392583,0.841536,0.392036,0.967259,0.0664363,0.22184,0.413143,0.69073,0.809433,0.833871,0.0318397,0.825564,0.760779,0.814432,0.598694,0.587092,0.04477,0.572555,0.808768,0.00406921,0.143918,0.723734,0.950223,0.387715,0.217423,0.236298,0.791126,0.65479,0.0118529,0.421254,0.776534,0.377594,0.425485,0.0923163,0.64135,0.352002,0.799748,0.261328,0.231188,0.177685,0.628415,0.558728,0.449755,0.894547,0.267562,0.718013,0.911067,0.421354,0.169508,0.448155,0.80798,0.522884,0.141319,0.538939,0.69838,0.880849,0.422052,0.657599,0.134188,0.857477,0.489743,0.29904,0.747327,0.465391,0.273449,0.0685766,0.0798469,0.790101,0.601511,0.839492,0.592511,0.650159,0.795308,0.0247629,0.95591,0.573078,0.480585,0.381677,0.0825971,0.444195,0.636621,0.88199,0.0163347,0.850416,0.264125,0.929727,0.627264,0.414998,0.318789,0.407456,0.209949,0.906352,0.811702,0.750975,0.797825,0.848338,0.221885,0.281603,0.386042,0.613561,0.760774,0.824226,0.858079,0.186746,0.921883,0.0973376,0.806996,0.801053,0.434938,0.0291699,0.383834,0.292308,0.74034,0.935117,0.143795,0.486235,0.777084,0.81127,0.793345,0.982276,0.384571,0.835176,0.540246,0.960685,0.671436,0.0523479,0.587932,0.035107,0.995074,0.652169,0.224912,0.643671,0.861758,0.260426,0.700851,0.932999,0.169103,0.716368,0.682468,0.765647,0.33162,0.378503,0.757352,0.272823,0.470533,0.335769,0.70426,0.556349,0.633864,0.98711,0.35515,0.601309,0.79745,0.269235,0.450377,0.211123,0.339576,0.463381,0.145525,0.0840345,0.155272,0.181318,0.858589,0.235169,0.0134026,0.828457,0.811876,0.56147,0.82881,0.373195,0.463087,0.92824,0.756321,0.925197,0.143141,0.759312,0.556066,0.77098,0.343969,0.742361,0.677286,0.258005,0.904296,0.563254,0.857609,0.625957,0.381951,0.675013,0.0999748,0.961411,0.530595,0.972226,0.46656,0.50986,0.0460931,0.637428,0.863063,0.0909439,0.139625,0.471543,0.51458,0.0251567,0.532287,0.609697,0.411314,0.421076,0.366981,0.0553182,0.493788,0.22691,0.0965614,0.0646347,0.604021,0.103418,0.257556,0.605347,0.147349,0.372303,0.828139,0.754205,0.99963,0.159936,0.730964,0.750024,0.792109,0.737619,0.811516,0.383178,0.205508,0.238028,0.143908,0.751225,0.628073,0.17592,0.138388,0.196772,0.519599,0.42723,0.863233,0.488449,0.54059,0.670192,0.636026,0.595504,0.586859,0.541435,0.667908,0.0969917,0.00989449,0.688981,0.709921,0.089962,0.163886,0.232543,0.138431,0.139507,0.0108289,0.217567,0.503899,0.512459,0.851702,0.377894,0.880955,0.414216,0.794319,0.662606,0.969092,0.625478,0.766851,0.888512,0.356377,0.389051,0.56592,0.609272,0.916176,0.421475,0.464524,0.376701,0.757193,0.727278,0.472351,0.0525227,0.717105,0.668523,0.364142,0.898737,0.608254,0.383951,0.4497,0.982749,0.44867,0.901588,0.606648,0.70644,0.942581,0.663513,0.599225,0.944965,0.674035,0.131603,0.411067,0.308407,0.99264,0.0212827,0.98797,0.802586,0.0658676,0.00541961,0.317168,0.875606,0.256878,|0.393187,0.598517,0.20461,0.78231,0.852101,0.994205,0.617847,0.177823,0.0272003,0.939405,0.96447,0.448065,0.971171,0.972697,0.999858,0.662097,0.778771,0.0712625,0.25436,0.854653,0.322875,0.245432,0.340708,0.753241,0.677706,0.304972,0.176058,0.310354,0.0514234,0.537008,0.8048,0.573749,0.936538,0.467761,0.536753,0.285462,0.668474,0.904408,0.646142,0.378532,0.696958,0.546914,0.546952,0.737693,0.202736,0.338345,0.307543,0.685748,0.344998,0.384253,0.177055,0.928352,0.521036,0.28744,0.528967,0.291489,0.72125,0.849868,0.189597,0.286545,0.328306,0.817125,0.698923,0.98565,0.998884,0.974394,0.744527,0.469416,0.0072946,0.817223,0.601658,0.817614,0.187092,0.86908,0.645273,0.79011,0.722722,0.388434,0.950604,0.284388,0.419176,0.208966,0.924621,0.0614542,0.705319,0.685534,0.704247,0.0560758,0.0074138,0.439763,0.419179,0.815683,0.447217,0.415907,0.50013,0.419681,0.0397016,0.795586,0.214827,0.839136,0.816066,0.959017,0.801684,0.976909,0.0716605,0.652026,0.0389004,0.827569,0.362486,0.649935,0.875316,0.197335,0.961587,0.108543,0.938676,0.426306,0.879915,0.0391918,0.584066,0.948437,0.0292871,0.547556,0.627943,0.936424,0.889562,0.398983,0.715019,0.200947,0.78746,0.387814,0.689858,0.738917,0.566604,0.934934,0.94603,0.730335,0.822576,0.473753,0.694383,0.506914,0.812816,0.0383418,0.387093,0.65744,0.0313126,0.495869,0.40645,0.236163,0.790217,0.189164,0.283562,0.49894,0.567825,0.788754,0.466413,0.816458,0.844475,0.83568,0.423886,0.00841284,0.748179,0.894037,0.128885,0.0318106,0.194383,0.346347,0.933747,0.142789,0.00688905,0.390164,0.0835748,0.485414,0.10362,0.0962384,0.943483,0.182718,0.304569,0.125179,0.997931,0.624601,0.360184,0.56797,0.785638,0.0510429,0.57773,0.077634,0.628728,0.165286,0.0327686,0.295069,0.959631,0.758559,0.111367,0.368181,0.858628,0.496069,0.971283,0.664509,0.789508,0.363257,0.299567,0.808091,0.651299,0.51602,0.0750006,0.522483,0.228153,0.00235373,0.0425872,0.0367973,0.292604,0.0460162,0.60548,0.602534,0.0359948,0.13189,0.279647,0.882155,0.828424,0.202475,0.918676,0.527075,0.752735,0.199452,0.0355877,0.401339,0.849469,0.798029,0.125947,0.816706,0.47571,0.42635,0.783744,0.618436,0.402781,0.334302,0.584416,0.600274,0.948182,0.311074,0.304833,0.320852,0.24936,0.116735,0.729783,0.998212,0.761208,0.955003,0.841314,0.979467,0.024814,0.714723,0.522961,0.957179,0.759344,0.49693,0.326863,0.126762,0.528651,0.988582,0.834196,0.525371,0.758754,0.779441,0.901568,0.901562,0.206322,0.380484,0.0782661,0.709903,0.977261,0.238609,0.852946,0.559745,0.0406659,0.242135,0.463773,0.143166,0.542032,0.727277,0.793742,0.509997,0.46968,0.561721,0.274872,0.191388,0.434486,0.953202,0.34978,0.568193,0.692097,0.474377,0.252125,0.225024,0.447272,0.0777786,0.783418,0.0400194,0.413309,0.629249,0.500269,0.883144,0.153699,0.837153,0.144303,0.198798,0.282058,0.308177,0.966577,0.640335,0.353584,0.254733,0.301515,0.258821,0.34359,0.739714,0.0598301,0.947801,0.563163,0.945235,0.748918,0.42952,0.933354,0.100621,0.069686,0.917383,0.123742,0.176469,0.24624,0.0726689,0.426628,0.812388,0.0890879,0.974933,0.472277,0.68006,0.0999865,0.103398,0.411261,0.158222,0.814206,0.610027,0.71279,0.599844,0.551869,0.789849,0.468404,0.117623,0.904467,0.850295,0.681248,0.536764,0.241664,0.482607,0.981155,0.0110043,0.202593,0.540417,0.701441,0.0673727,0.602117,0.678364,0.794963,0.0792051,0.490716,0.970704,0.257184,0.0151745,0.0553417,0.881434,0.704203,0.768356,0.275736,0.489401,0.587377,0.445801,0.147863,0.859344,0.258677,0.210238,0.146968,0.493859,0.16215,0.195359,0.789775,0.366573,0.601619,0.978052,0.55322,0.123255,0.380232,0.00544095,0.302634,0.557494,0.388405,0.261597,0.600193,0.633819,0.323846,0.577326,0.696847,0.0268429,0.0077796,0.891608,0.0949396,0.58775,0.733025,0.708542,0.0770695,0.528474,0.520856,0.359069,0.75875,0.202612,0.988344,0.464674,0.690175,0.581368,0.475338,0.88383,0.775412,0.113979,0.645174,0.503287,0.372099,0.0339683,0.660543,0.521679,0.390836,0.24826,0.772852,0.575075,0.263367,0.106892,0.62773,0.304261,0.430706,0.847148,0.669386,0.792246,0.85382,0.396914,0.450315,0.628263,0.62183,0.0432231,0.420521,0.953029,0.913732,0.146607,0.635108,0.413057,0.132422,0.340765,0.159407,0.130027,0.852549,0.968181,0.858816,0.964488,0.124391,0.0555038,0.185855,0.769739,0.505548,0.569414,0.682201,0.128497,0.307885,0.747096,0.873514,0.371784,0.58735,0.924788,0.254189,0.473695,0.452195,0.474902,0.739736,0.000741601,0.992566,0.103121,0.638971,0.85629,0.27795,0.113338,0.00447327,0.519451,0.0881895,0.888686,0.460736,0.0805072,0.509869,0.832574,0.20705,0.616123,0.896975,0.73961,0.694952,0.135016,0.672004,0.00821048,0.713715,0.513679,0.880219,0.611619,0.48248,0.437104,0.185091,0.323912,0.247472,0.433835,0.204576,0.341398,0.532019,0.671001,0.131511,0.586477,0.123242,0.637445,0.334835,0.248897,0.335672,0.841294,0.87651,0.699338,0.8992,0.861116,0.444902,0.322645,0.227884,0.951409,0.895169,0.262533,0.69172,0.254487,0.922294,0.219972,0.612606,0.728566,0.228249,0.985972,0.710465,0.933355,0.407339,0.247961,0.636122,0.406028,0.605517,0.528186,0.619793,0.120503,0.304632,0.0713153,0.44703,0.612871,0.793774,0.0499004,0.851836,0.899595,0.742967,0.282796,0.567338,0.173839,0.00962991,0.742014,0.139157,0.504152,0.800472,0.739636,0.135654,0.0144604,0.287007,0.508403,0.104698,0.614772,0.30841,0.100239,0.345999,0.792648,0.947252,0.626571,0.732049,0.494123,0.851769,0.195342,0.53948,0.25167,0.969154,0.633624,0.864734,0.182792,0.455809,0.168938,0.245684,0.385006,0.643757,0.0311537,0.633878,0.0345296,0.0901042,0.494151,0.196564,0.0248183,0.363006,0.552133,0.99044,0.168083,0.699458,0.618448,0.837977,0.92486,0.36962,0.628302,0.748533,0.861229,0.436141,0.743868,0.0401713,0.495659,0.127854,0.200538,0.0168729,0.343811,0.0873585,0.782312,0.396517,0.874469,0.486194,0.492489,0.893681,0.503837,0.127115,0.6078,0.261791,0.0241159,0.69533,0.430589,0.597446,0.75928,0.381736,0.667995,0.679314,0.0735562,0.713327,0.499687,0.431242,0.715986,0.294675,0.0682861,0.104282,0.613048,0.137845,0.837861,0.590946,0.14902,0.289911,0.119176,0.173016,0.197923,0.437176,0.604993,0.869063,0.22322,0.646877,0.992899,0.309614,0.0460898,0.958035,0.916704,0.700351,0.868073,0.671277,0.115483,0.58814,0.215479,0.579831,0.724086,0.586408,0.673202,0.770194,0.670717,0.275197,0.676975,0.059589,0.688295,0.189126,0.233237,0.684775,0.871243,0.0650368,0.996634,0.867364,0.885742,0.764989,0.254185,0.957975,0.834608,0.661367,0.0115608,0.244602,0.103464,0.692693,0.259411,0.445136,0.737112,0.542816,0.765861,0.380791,0.479761,0.558276,0.658417,0.16375,0.151758,0.0946193,0.821307,0.67786,0.440327,0.754295,0.10194,0.919606,0.69384,0.954134,0.723352,0.843626,0.793941,0.0450783,0.18867,0.270895,0.383887,0.823161,0.19803,0.448314,0.326851,0.637209,0.455339,0.222758,0.299486,0.939107,0.214364,0.423482,0.129249,0.0679247,0.67609,0.708096,0.382663,0.934709,0.663096,0.771462,0.718784,0.753376,0.917879,0.196521,0.690707,0.0655486,0.658391,0.715026,0.699835,0.804924,0.285074,0.115065,0.780496,0.455141,0.680182,0.938157,0.668291,0.2748,0.741003,0.919702,0.145819,0.0374956,0.731116,0.74168,0.647795,0.641934,0.651627,0.366902,0.0147541,0.180763,0.673072,0.227407,0.702371,0.139383,0.987604,0.93807,0.510282,0.948217,0.0564453,0.278318,0.543252,0.32655,0.942495,0.9934,0.0533247,0.22071,0.0438617,0.934617,0.78349,0.0338787,0.106158,0.819295,0.156118,0.526961,0.320432,0.792533,0.520335,0.42637,0.497656,0.433188,0.301624,0.407885,0.989335,0.0686318,0.262047,0.103689,0.642283,0.445508,0.568639,0.417182,0.385518,0.0520993,0.43305,0.430021,0.809922,0.28923,0.119196,0.872714,0.00314206,0.281067,0.00525266,0.16381,0.792969,0.916569,0.496627,0.323099,0.673919,0.728154,0.591,0.71535,0.493361,0.978874,0.939281,0.710529,0.669002,0.814695,0.416742,0.323252,0.722382,0.328218,0.724191,0.611614,0.381925,0.615292,0.728786,0.503066,0.426591,0.564517,0.37861,0.726858,0.0229229,0.926861,0.973286,0.173324,0.0622242,0.101858,0.49172,0.51399,0.678475,0.633911,0.578179,0.649309,0.537183,0.235868,0.0219244,0.314286,0.34605,0.718452,0.778674,0.170194,0.701318,0.237707,0.769107,0.327159,0.750372,0.274372,0.865047,0.0150481,0.650615,0.739911,0.85355,0.0935328,0.630737,0.287573,0.986301,0.0541129,0.882809,0.588839,0.768706,0.134912,0.0982055,0.411655,0.557452,0.583939,0.418172,0.304903,0.37633,0.718708,0.21844,0.020719,0.377832,0.453579,0.442685,0.093659,0.930409,0.938832,0.945466,0.417913,0.0019334,0.361499,0.0831237,0.497638,0.950247,0.237797,0.256981,0.561937,0.716392,0.720294,0.221703,0.090099,0.975549,0.742746,0.89384,0.188527,0.659338,0.962025,0.59898,0.984196,0.380045,0.114679,0.622342,0.652074,0.272455,0.0313987,0.798493,0.713609,0.265053,0.117798,0.995681,0.0288092,0.409821,0.911642,0.960802,0.468764,0.279399,0.607938,0.65551,0.41106,0.797589,0.236095,0.835171,0.600396,0.659292,0.759707,0.144149,0.242957,0.931804,0.281581,0.735687,0.303566,0.839912,0.948199,0.826286,0.0630739,0.115634,0.684479,0.206311,0.260264,0.811263,0.0275863,0.627377,0.258511,0.56481,0.462104,0.889504,0.143855,0.382025,0.484667,0.527776,0.824331,0.163315,0.485554,0.750962,0.626083,0.792442,0.960935,0.978772,0.578513,0.79013,0.568782,0.240821,|0.336468,0.979662,0.934373,0.179942,0.391679,0.0911416,0.861821,0.724647,0.877949,0.450199,0.123923,0.91108,0.576376,0.291103,0.751103,0.413464,0.430622,0.631868,0.664271,0.354366,0.757867,0.0039472,0.370967,0.532783,0.570588,0.494017,0.817748,0.26851,0.802653,0.452004,0.971245,0.368306,0.609381,0.122399,0.519488,0.930459,0.396542,0.329288,0.0720092,0.306124,0.948013,0.241997,0.575021,0.591831,0.265134,0.576793,0.852806,0.560536,0.603337,0.748842,0.185508,0.216835,0.955089,0.951673,0.21392,0.311351,0.384289,0.904253,0.416679,0.910789,0.77403,0.660403,0.975108,0.108716,0.29949,0.248254,0.624576,0.426385,0.233744,0.5654,0.642623,0.623048,0.628655,0.180678,0.0702467,0.890181,0.929214,0.580304,0.707588,0.484109,0.785327,0.430144,0.344729,0.840314,0.0719513,0.341427,0.394794,0.911758,0.906878,0.306468,0.247935,0.743113,0.765099,0.455425,0.680658,0.994251,0.823208,0.535826,0.574972,0.327081,0.678334,0.274616,0.591032,0.137625,0.161799,0.30367,0.518546,0.949899,0.883927,0.419844,0.285994,0.471215,0.375008,0.827263,0.57565,0.075941,0.58524,0.411727,0.209583,0.421791,0.482954,0.698236,0.526859,0.272544,0.122319,0.837488,0.727682,0.5649,0.75821,0.917056,0.218928,0.245342,0.684007,0.916599,0.567467,0.690083,0.0180355,0.364213,0.0293981,0.551355,0.476498,0.0635716,0.250833,0.672302,0.649509,0.339517,0.22949,0.133328,0.694924,0.717637,0.0711873,0.521698,0.395748,0.146184,0.620316,0.234923,0.869738,0.234519,0.708304,0.849358,0.65935,0.303387,0.0649633,0.18822,0.58222,0.058171,0.417251,0.677474,0.821385,0.314717,0.532892,0.429733,0.375092,0.336547,0.278765,0.446584,0.536534,0.955131,0.388235,0.807503,0.471611,0.642523,0.531936,0.588605,0.197467,0.60217,0.700239,0.993598,0.926006,0.0571508,0.441696,0.0199604,0.234497,0.508392,0.884884,0.15947,0.331427,0.752697,0.45502,0.952305,0.957655,0.0125947,0.0364347,0.628496,0.0562329,0.293867,0.0208382,0.375843,0.660486,0.317179,0.725367,0.324906,0.948337,0.545311,0.510514,0.226017,0.123708,0.566958,0.974769,0.306575,0.479357,0.541275,0.130508,0.300641,0.168739,0.783235,0.0661628,0.0950281,0.795465,0.279696,0.834995,0.898445,0.296047,0.623164,0.327729,0.921933,0.312982,0.015561,0.563069,0.178652,0.181492,0.897596,0.75587,0.956188,0.890817,0.935134,0.976469,0.278772,0.288008,0.0386024,0.311054,0.923576,0.111218,0.0650353,0.692057,0.480641,0.70285,0.938521,0.588418,0.567861,0.426617,0.167364,0.681294,0.980376,0.841019,0.986546,0.473092,0.822227,0.326342,0.0800097,0.925138,0.102217,0.542956,0.119246,0.613346,0.781954,0.366651,0.896801,0.831885,0.715937,0.680571,0.747258,0.267111,0.659424,0.742921,0.109606,0.00163579,0.510504,0.80958,0.667005,0.609186,0.037056,0.762842,0.162492,0.964182,0.79049,0.325671,0.586575,0.286304,0.159322,0.670582,0.412222,0.485959,0.146439,0.860648,0.453386,0.70996,0.396562,0.522243,0.457196,0.872387,0.971009,0.31253,0.453923,0.597979,0.674877,0.064176,0.00527406,0.823616,0.501839,0.690749,0.503887,0.966961,0.169391,0.0583411,0.208971,0.940923,0.418943,0.481725,0.517053,0.561898,0.596612,0.909187,0.924789,0.0345293,0.693687,0.105011,0.332865,0.389363,0.427391,0.7529,0.964396,0.662924,0.845883,0.699775,0.0615301,0.340691,0.0125998,0.647797,0.738629,0.602332,0.6761,0.925271,0.604345,0.190555,0.757633,0.304935,0.911816,0.537448,0.732254,0.0659932,0.768647,0.288643,0.660055,0.605869,0.941557,0.781531,0.619167,0.850709,0.49081,0.557164,0.675766,0.776095,0.248609,0.697501,0.876926,0.437122,0.855715,0.505333,0.326301,0.655665,0.819863,0.190531,0.713672,0.888877,0.391274,0.572937,0.585946,0.263362,0.413967,0.696752,0.607139,0.798772,0.917672,0.277693,0.931196,0.762906,0.391883,0.970408,0.713785,0.638113,0.899257,0.860961,0.776617,0.385159,0.248487,0.334767,0.733597,0.19171,0.17312,0.158528,0.0379692,0.322457,0.480482,0.283967,0.13344,0.258058,0.243571,0.897485,0.784929,0.742742,0.0650331,0.336506,0.0604933,0.570056,0.649977,0.18834,0.35844,0.556592,0.0435618,0.152374,0.367555,0.565028,0.552511,0.645463,0.922914,0.0640975,0.713361,0.352218,0.441343,0.892039,0.181837,0.213461,0.169221,0.302475,0.347125,0.601309,0.923106,0.152504,0.50932,0.064886,0.0262053,0.0603546,0.576728,0.325719,0.468841,0.848542,0.168818,0.962049,0.533137,0.116745,0.295353,0.581705,0.476369,0.358729,0.927199,0.428822,0.854461,0.912279,0.00839239,0.477889,0.952258,0.931602,0.364656,0.983284,0.261436,0.910011,0.0922492,0.638704,0.126837,0.176534,0.0599285,0.394136,0.748468,0.657835,0.472923,0.0684507,0.56481,0.195856,0.915295,0.358031,0.400863,0.180331,0.868119,0.337278,0.394529,0.844771,0.0890313,0.646143,0.883351,0.661963,0.360803,0.613436,0.310072,0.292353,0.15397,0.465404,0.942416,0.944064,0.528662,0.226703,0.945538,0.362868,0.923142,0.364608,0.819815,0.389961,0.410935,0.0860621,0.90074,0.442953,0.788969,0.659915,0.0580605,0.403587,0.711653,0.984555,0.186655,0.86567,0.593296,0.428726,0.749913,0.603021,0.25985,0.383186,0.249104,0.464756,0.360201,0.320144,0.31055,0.699627,0.600736,0.0526554,0.879478,0.478372,0.467114,0.896319,0.698546,0.752433,0.448405,0.12303,0.805077,0.877785,0.861667,0.957438,0.410784,0.431729,0.20283,0.215784,0.672988,0.785284,0.849557,0.517405,0.471842,0.581517,0.714485,0.122999,0.303003,0.862704,0.726602,0.767141,0.434463,0.229792,0.275509,0.749529,0.255572,0.623366,0.357802,0.206061,0.681668,0.202391,0.295539,0.58009,0.622279,0.63663,0.189024,0.897217,0.362728,0.00659698,0.204938,0.17031,0.777263,0.158724,0.347954,0.389138,0.276984,0.480053,0.902607,0.284409,0.558227,0.516992,0.882466,0.191569,0.789967,0.17759,0.688703,0.0632665,0.449024,0.821194,0.925054,0.538891,0.694803,0.567668,0.117131,0.411937,0.246677,0.250893,0.750135,0.203983,0.397985,0.831707,0.817048,0.313746,0.805424,0.133905,0.0382768,0.752683,0.486209,0.15468,0.381865,0.492291,0.338909,0.0946479,0.530551,0.315046,0.386524,0.29359,0.909987,0.180176,0.411701,0.41939,0.281241,0.135319,0.496512,0.843376,0.725157,0.546148,0.590113,0.800898,0.127361,0.779021,0.95995,0.581021,0.0929286,0.840074,0.130278,0.700262,0.98325,0.757683,0.872891,0.652923,0.838728,0.0350013,0.149479,0.33964,0.344439,0.590933,0.0838705,0.558875,0.739276,0.280271,0.120299,0.970486,0.706727,0.71759,0.300821,0.716076,0.543952,0.964201,0.629595,0.636082,0.670622,0.936647,0.522617,0.224217,0.131317,0.743825,0.119069,0.567509,0.354485,0.433463,0.0515902,0.520412,0.53847,0.699074,0.912335,0.396107,0.353433,0.236006,0.297004,0.477076,0.690183,0.315334,0.769101,0.282547,0.0696527,0.377524,0.898572,0.00692296,0.877871,0.373509,0.902213,0.261159,0.611598,0.937085,0.771721,0.0847654,0.985534,0.658697,0.411365,0.632418,0.506014,0.0430894,0.406906,0.673026,0.930729,0.278082,0.74604,0.5509,0.11265,0.196948,0.429632,0.937591,0.00509614,0.066753,0.615425,0.569372,0.368761,0.185667,0.402399,0.64074,0.714978,0.792489,0.8772,0.309257,0.710592,0.368337,0.11216,0.17056,0.109662,0.781944,0.947059,0.880913,0.0295737,0.576787,0.359607,0.658975,0.43002,0.450601,0.0556664,0.595315,0.578537,0.829781,0.402373,0.581608,0.355224,0.959958,0.684252,0.779145,0.441877,0.623783,0.114169,0.291719,0.959534,0.469141,0.170393,0.908511,0.867113,0.763084,0.108429,0.0863479,0.643156,0.127791,0.996966,0.276119,0.602189,0.768018,0.196108,0.738648,0.41801,0.868026,0.694864,0.347653,0.650246,0.121494,0.11862,0.947054,0.516336,0.155056,0.178439,0.393885,0.64833,0.835701,0.089031,0.76397,0.00568587,0.290278,0.933479,0.625329,0.39387,0.446319,0.367225,0.673646,0.722572,0.318928,0.839802,0.217425,0.237803,0.336232,0.616164,0.711142,0.892169,0.0267754,0.772317,0.286546,0.180664,0.481575,0.90174,0.409995,0.314581,0.854721,0.254966,0.448238,0.994196,0.704006,0.467618,0.420654,0.0339515,0.963989,0.236265,0.503653,0.589284,0.969583,0.385773,0.699894,0.837287,0.0759507,0.597655,0.622869,0.581552,0.831139,0.552958,0.944676,0.623374,0.010354,0.69271,0.938652,0.3548,0.292386,0.902014,0.816244,0.471609,0.131109,0.837646,0.959857,0.13123,0.282941,0.0579534,0.457568,0.285697,0.436063,0.810436,0.449907,0.579448,0.321656,0.072103,0.733752,0.634733,0.774098,0.179373,0.666115,0.71438,0.171785,0.885557,0.788743,0.25476,0.382141,0.448171,0.0267783,0.530121,0.559087,0.349191,0.468678,0.527084,0.637105,0.54851,0.0579035,0.0425137,0.831237,0.813969,0.536414,0.139437,0.492114,0.940363,0.0942624,0.819097,0.943696,0.725495,0.303289,0.448807,0.193002,0.824027,0.485281,0.325955,0.302524,0.580409,0.589619,0.139539,0.372458,0.538151,0.350074,0.367721,0.734728,0.529899,0.163817,0.00702119,0.865742,0.540384,0.559696,0.723138,0.881381,0.866547,0.580941,0.272001,0.132705,0.266231,0.865823,0.102735,0.433814,0.144446,0.216769,0.171348,0.602534,0.521216,0.166214,0.593099,0.289002,0.197978,0.185182,0.325429,0.563252,0.194644,0.668603,0.792546,0.675093,0.939246,0.0897671,0.483916,0.763099,0.511038,0.733893,0.510227,0.863459,0.620846,0.581436,0.186063,0.921124,0.490304,0.68069,0.559401,0.119115,0.43805,0.888069,0.482252,0.508768,0.28155,0.583535,0.552113,0.387538,0.762277,0.586912,0.868763,0.640811,0.801355,0.575055,0.484604,0.877547,0.111748,0.840735,0.0871998,0.292819,0.567399,0.5274,0.576631,0.160221,0.268735,0.511162,0.529938,0.6418,0.684585,|0.846578,0.754253,0.933251,0.31133,0.104475,0.827908,0.278563,0.944548,0.383416,0.345514,0.46719,0.507044,0.282462,0.705264,0.584994,0.408288,0.986714,0.894408,0.194048,0.454702,0.240109,0.182325,0.786531,0.745146,0.179433,0.794524,0.143385,0.376556,0.443978,0.753788,0.423084,0.338016,0.416292,0.894956,0.794077,0.00792098,0.249082,0.343099,0.809097,0.503764,0.762264,0.493037,0.167501,0.429656,0.0262424,0.978006,0.473731,0.540046,0.539743,0.834044,0.792833,0.527205,0.807457,0.526887,0.807108,0.676416,0.694077,0.635342,0.0632997,0.250708,0.185866,0.608079,0.208301,0.0243792,0.551585,0.104806,0.951859,0.408717,0.633541,0.783113,0.231628,0.22651,0.883572,0.513543,0.550591,0.977207,0.27209,0.00646728,0.583264,0.362587,0.692028,0.426278,0.871307,0.0422362,0.791332,0.91592,0.288029,0.695,0.688923,0.62655,0.580578,0.884937,0.632127,0.694508,0.60449,0.0166676,0.845552,0.272324,0.419743,0.278532,0.167765,0.245781,0.0526386,0.255473,0.34727,0.361334,0.892014,0.34626,0.56281,0.556158,0.900928,0.66974,0.126837,0.995831,0.626305,0.627774,0.827942,0.0263239,0.723463,0.243277,0.691088,0.0283563,0.8495,0.576713,0.741778,0.347088,0.413818,0.745698,0.87616,0.0552452,0.912442,0.438283,0.427812,0.228788,0.527688,0.720763,0.485949,0.806165,0.308327,0.0986665,0.473163,0.521399,0.766324,0.690338,0.305182,0.0556574,0.889366,0.338358,0.16005,0.121407,0.553597,0.514505,0.533396,0.735439,0.617531,0.943844,0.312379,0.197112,0.0437858,0.208387,0.253679,0.960038,0.438334,0.0561894,0.935363,0.832994,0.911871,0.476573,0.536876,0.586117,0.563859,0.599537,0.0199037,0.511418,0.379637,0.277917,0.0820582,0.494842,0.496957,0.761775,0.883252,0.621103,0.248758,0.63362,0.766506,0.509538,0.0714961,0.955886,0.269574,0.208119,0.884826,0.822527,0.303654,0.90683,0.717585,0.169223,0.908995,0.609107,0.921363,0.227278,0.643834,0.647855,0.821841,0.563469,0.185929,0.66785,0.314824,0.281939,0.839875,0.547617,0.25065,0.487975,0.934186,0.416817,0.81297,0.625184,0.925704,0.175215,0.807889,0.0302165,0.346497,0.943143,0.182626,0.800431,0.98572,0.770742,0.495531,0.0388794,0.323855,0.458498,0.651843,0.620663,0.475999,0.186602,0.232565,0.163342,0.450409,0.247148,0.669432,0.850523,0.857215,0.603463,0.105313,0.23847,0.105957,0.382095,0.0573329,0.866542,0.575472,0.148885,0.773658,0.787769,0.362,0.595952,0.374807,0.621597,0.0813483,0.0355085,0.71915,0.292924,0.780041,0.386664,0.324087,0.738786,0.92132,0.501168,0.0968807,0.225104,0.955692,0.558651,0.870253,0.836388,0.711515,0.181215,0.775726,0.574002,0.917027,0.804009,0.521213,0.312667,0.866032,0.18701,0.961156,0.565201,0.434672,0.818992,0.29815,0.497468,0.771135,0.00487608,0.66766,0.666155,0.270976,0.842277,0.595149,0.718801,0.764666,0.943056,0.524417,0.464375,0.395899,0.38608,0.0347655,0.822251,0.0782755,0.436442,0.316319,0.568276,0.232126,0.141862,0.403455,0.94533,0.38125,0.0126178,0.772732,0.494509,0.770264,0.0950723,0.826957,0.657307,0.0255547,0.613461,0.396402,0.655752,0.887739,0.0593278,0.11405,0.206828,0.608862,0.351622,0.73079,0.146455,0.279641,0.477049,0.825063,0.222054,0.0951952,0.564294,0.0530813,0.884167,0.0900087,0.247237,0.910255,0.034331,0.848255,0.149617,0.597401,0.258858,0.594171,0.839655,0.277641,0.838437,0.616737,0.935955,0.948147,0.648245,0.137057,0.584691,0.225528,0.133996,0.00632751,0.234155,0.47608,0.683088,0.729787,0.721728,0.334081,0.486222,0.0888596,0.944383,0.235023,0.0491096,0.508369,0.343195,0.383324,0.917711,0.389189,0.848914,0.390997,0.134743,0.60113,0.381532,0.84045,0.44313,0.165459,0.695115,0.897913,0.474339,0.321056,0.267533,0.684712,0.914855,0.966324,0.594913,0.516283,0.449422,0.35867,0.409835,0.857654,0.813469,0.63651,0.429392,0.686618,0.0289087,0.0975746,0.516718,0.74328,0.0419296,0.191503,0.911634,0.323759,0.192096,0.839262,0.0448325,0.723077,0.47509,0.792021,0.838247,0.527576,0.255597,0.791615,0.0511019,0.880472,0.15002,0.781315,0.404282,0.214523,0.861003,0.787231,0.696745,0.0975016,0.313361,0.0126866,0.73136,0.78527,0.411337,0.245102,0.380701,0.169001,0.696571,0.980406,0.983084,0.582278,0.829664,0.0569937,0.446429,0.74846,0.0206951,0.190783,0.738336,0.43193,0.956948,0.159385,0.249634,0.288009,0.534254,0.209213,0.20637,0.233133,0.881805,0.866821,0.0282559,0.776233,0.685539,0.549139,0.349304,0.962123,0.23455,0.708061,0.218244,0.710076,0.79342,0.49227,0.838514,0.789289,0.954197,0.129313,0.60688,0.84644,0.971463,0.762491,0.130216,0.901651,0.487745,0.992271,0.361154,0.893509,0.177012,0.194962,0.82321,0.220126,0.646477,0.868419,0.776999,0.0661757,0.974217,0.285708,0.828974,0.791753,0.589014,0.487359,0.650783,0.216287,0.766206,0.45622,0.624583,0.0506274,0.76938,0.98076,0.0560936,0.616711,0.984374,0.664847,0.0906396,0.598728,0.04991,0.230014,0.679869,0.0809053,0.19251,0.0122138,0.438723,0.610683,0.276663,0.709687,0.961091,0.142829,0.962097,0.87526,0.0338817,0.42817,0.66439,0.942477,0.254341,0.569869,0.181699,0.522746,0.960416,0.187022,0.945719,0.0214376,0.727805,0.608478,0.766649,0.328399,0.27487,0.554843,0.706881,0.569463,0.020541,0.54329,0.456627,0.384614,0.579899,0.670673,0.930853,0.988421,0.710695,0.055661,0.480989,0.00582474,0.293705,0.157534,0.0186237,0.743776,0.876929,0.991541,0.0648854,0.266348,0.13868,0.847246,0.175424,0.607301,0.379901,0.854011,0.651362,0.739795,0.994058,0.475117,0.901095,0.33056,0.978186,0.61087,0.526411,0.608827,0.287497,0.762485,0.0737942,0.834797,0.428087,0.305281,0.664986,0.278097,0.133975,0.128946,0.711796,0.257767,0.861238,0.825406,0.936996,0.492989,0.667667,0.466793,0.0735896,0.793204,0.908897,0.906167,0.405095,0.200461,0.938648,0.706414,0.695544,0.228419,0.887671,0.891932,0.0779017,0.844084,0.879895,0.668101,0.760423,0.0531502,0.893155,0.0994953,0.241034,0.939231,0.327111,0.726754,0.480476,0.186573,0.0858808,0.775347,0.0141909,0.807375,0.716095,0.565339,0.364558,0.145371,0.872306,0.40288,0.615669,0.919637,0.503522,0.0104831,0.546956,0.567271,0.546225,0.0342891,0.336089,0.809364,0.456692,0.599955,0.0954888,0.415642,0.724113,0.455052,0.303224,0.891386,0.798966,0.483419,0.931619,0.427541,0.0229284,0.0565829,0.482645,0.845575,0.344898,0.419669,0.000852585,0.126475,0.425366,0.0913896,0.986466,0.924248,0.783809,0.302682,0.34623,0.937858,0.520458,0.3635,0.588624,0.209887,0.408933,0.58201,0.61098,0.397547,0.0553403,0.501506,0.462398,0.247599,0.193082,0.153167,0.977005,0.899797,0.314286,0.840699,0.303625,0.739386,0.172473,0.608453,0.508633,0.129,0.727197,0.121534,0.731961,0.221256,0.197803,0.283276,0.54499,0.13202,0.261514,0.289474,0.564979,0.393324,0.862636,0.220736,0.77911,0.355841,0.757542,0.126951,0.536479,0.964062,0.356823,0.842995,0.166388,0.281426,0.470593,0.242018,0.742607,0.0295263,0.807228,0.874886,0.0206461,0.951892,0.950019,0.667753,0.991597,0.578705,0.786962,0.575119,0.650628,0.43055,0.934636,0.673776,0.299067,0.764107,0.887506,0.75437,0.748283,0.537613,0.644164,0.163934,0.328192,0.688117,0.14581,0.266912,0.776619,0.118139,0.512679,0.910858,0.339285,0.649846,0.609261,0.243207,0.251132,0.114169,0.542699,0.774071,0.0656794,0.473408,0.0307138,0.270778,0.466817,0.00628901,0.283732,0.165513,0.557035,0.684909,0.720743,0.884674,0.464381,0.177868,0.576904,0.236084,0.744741,0.0544569,0.464464,0.465297,0.0980502,0.895291,0.551894,0.345341,0.607289,0.394063,0.687985,0.145186,0.900858,0.898803,0.931047,0.216701,0.0872882,0.453785,0.41559,0.797907,0.41256,0.210037,0.214453,0.550475,0.4071,0.758085,0.53027,0.914479,0.764451,0.719144,0.804037,0.654694,0.607446,0.539299,0.378969,0.0145565,0.0334972,0.370933,0.730556,0.894273,0.199929,0.989846,0.617282,0.781248,0.554945,0.889027,0.00773102,0.0156115,0.683102,0.330597,0.349509,0.0356941,0.176984,0.249406,0.448596,0.668705,0.0167817,0.461675,0.305884,0.0184547,0.459515,0.697037,0.615749,0.348712,0.46475,0.828273,0.305881,0.481906,0.948988,0.0151243,0.753182,0.839907,0.406703,0.616434,0.452282,0.12817,0.811743,0.0271966,0.234731,0.899843,0.559271,0.339576,0.615785,0.597713,0.167676,0.748055,0.0736665,0.38058,0.913736,0.400932,0.642745,0.480621,0.533661,0.493108,0.519873,0.963224,0.607534,0.542575,0.0646312,0.86128,0.363996,0.347314,0.555413,0.808186,0.591204,0.605703,0.353435,0.37759,0.532448,0.790787,0.561455,0.795008,0.367224,0.656946,0.770441,0.678246,0.786155,0.0882812,0.263126,0.358951,0.634954,0.0713558,0.510017,0.448704,0.458172,0.744981,0.303196,0.139111,0.45824,0.751708,0.334749,0.604122,0.710743,0.818658,0.324615,0.844585,0.831251,0.26772,0.615606,0.430461,0.695262,0.860741,0.955806,0.628847,0.698477,0.353498,0.606434,0.715507,0.305319,0.477784,0.935599,0.481905,0.232393,0.342715,0.177785,0.774356,0.161597,0.648656,0.705182,0.896741,0.968735,0.329635,0.85828,0.0324213,0.204156,0.496749,0.633914,0.813034,0.831906,0.557299,0.547332,0.307478,0.16899,0.116042,0.604048,0.0803946,0.336404,0.425198,0.787065,0.0275899,0.938924,0.242256,0.577589,0.0740764,0.73306,0.586316,0.633116,0.233278,0.654522,0.282584,0.870297,0.739346,0.19655,0.467234,0.63332,0.943255,0.967882,0.0302498,0.780423,0.0255197,0.2716,0.511505,0.365778,0.0139891,0.338881,0.0536126,0.974309,0.476966,0.636348,0.557451,0.0276324,0.605147,0.235536,0.0811433,0.901618,0.940615,0.253933,|0.783187,0.271739,0.990778,0.330227,0.636213,0.976455,0.595722,0.39436,0.397212,0.521399,0.896375,0.366662,0.0528474,0.977234,0.742417,0.950335,0.544114,0.156872,0.162163,0.00277615,0.394353,0.170179,0.723419,0.686684,0.116882,0.454962,0.966884,0.175413,0.655358,0.651713,0.824977,0.544123,0.397436,0.643087,0.23392,0.640004,0.64195,0.5916,0.807945,0.542774,0.210515,0.319604,0.777387,0.527055,0.376176,0.0195388,0.446256,0.780628,0.667429,0.391143,0.282363,0.218562,0.355892,0.146861,0.144985,0.942102,0.186824,0.166736,0.931661,0.556514,0.491836,0.775555,0.0499045,0.666207,0.922358,0.757672,0.642107,0.0905501,0.447975,0.44825,0.964768,0.136295,0.588219,0.344685,0.767584,0.410977,0.88507,0.438218,0.165826,0.344017,0.912472,0.00915551,0.517187,0.0552974,0.117215,0.464365,0.319345,0.0819145,0.40867,0.462905,0.905718,0.544518,0.715389,0.691079,0.835944,0.408113,0.634434,0.708721,0.421813,0.148842,0.924108,0.0575747,0.831004,0.992211,0.755768,0.517652,0.801046,0.680759,0.974263,0.405543,0.719729,0.0272597,0.897661,0.956862,0.0213922,0.978299,0.552052,0.505178,0.68385,0.695336,0.71765,0.942622,0.652191,0.786643,0.743271,0.974633,0.783566,0.214434,0.0337602,0.288973,0.813603,0.547827,0.496256,0.470666,0.882539,0.749328,0.946903,0.6217,0.0142143,0.220606,0.0197714,0.734016,0.159964,0.56866,0.60923,0.342517,0.968056,0.3305,0.903641,0.736033,0.267444,0.696329,0.214144,0.548925,0.201994,0.799628,0.739839,0.143861,0.193574,0.596298,0.973968,0.851049,0.340313,0.715804,0.515745,0.516238,0.570448,0.479154,0.458063,0.582207,0.640315,0.259582,0.781914,0.844156,0.457653,0.0942459,0.638619,0.703474,0.810155,0.262595,0.697302,0.330163,0.301845,0.304019,0.505686,0.951249,0.943044,0.0640895,0.35723,0.0713497,0.895899,0.65218,0.823824,0.80403,0.589914,0.701246,0.380842,0.780793,0.512836,0.484362,0.650608,0.0655258,0.568664,0.137297,0.884556,0.03166,0.141011,0.557482,0.761085,0.70682,0.575477,0.538538,0.457951,0.388733,0.308174,0.635846,0.0278113,0.626216,0.15966,0.007056,0.795521,0.23708,0.115468,0.607363,0.73494,0.576435,0.927386,0.707636,0.500302,0.963718,0.118734,0.608659,0.894879,0.81213,0.634912,0.753778,0.757201,0.164706,0.903058,0.515332,0.882692,0.489178,0.961257,0.379722,0.820553,0.0188105,0.327183,0.313731,0.885127,0.072326,0.778617,0.269479,0.106925,0.956812,0.869431,0.18954,0.118613,0.843408,0.402573,0.373874,0.164461,0.100884,0.946204,0.487161,0.277362,0.968373,0.479391,0.429536,0.0815113,0.336064,0.203145,0.486514,0.304504,0.413554,0.94244,0.381226,0.776318,0.633313,0.386625,0.638181,0.287535,0.305724,0.608917,0.102324,0.927866,0.115308,0.551563,0.993357,0.875978,0.0768093,0.639414,0.190911,0.281711,0.179467,0.328682,0.765143,0.316173,0.492576,0.0706192,0.951713,0.611223,0.201326,0.425949,0.480066,0.597904,0.385227,0.690132,0.583539,0.957479,0.216284,0.685388,0.411935,0.835334,0.814917,0.583422,0.478502,0.604579,0.238985,0.140132,0.278996,0.888666,0.591446,0.64889,0.252768,0.351475,0.914027,0.0553746,0.198933,0.0861579,0.944089,0.219824,0.441681,0.591749,0.473199,0.0202946,0.0407403,0.920786,0.248805,0.641742,0.94585,0.770062,0.173853,0.123119,0.0927128,0.960651,0.28752,0.849127,0.682427,0.423654,0.185528,0.291941,0.822654,0.387318,0.71512,0.233062,0.874916,0.419273,0.0910369,0.7972,0.530832,0.97261,0.0971329,0.144422,0.671049,0.775043,0.662451,0.712403,0.0856895,0.634431,0.244808,0.643967,0.444295,0.330052,0.9645,0.195746,0.897873,0.444927,0.180129,0.11899,0.912972,0.30601,0.437204,0.52831,0.505777,0.295942,0.923063,0.312006,0.657771,0.400849,0.724162,0.45526,0.0309942,0.781017,0.244345,0.151175,0.719605,0.984249,0.299965,0.102731,0.292214,0.577321,0.576975,0.618281,0.224649,0.837111,0.94234,0.016527,0.836182,0.914052,0.505181,0.128117,0.436803,0.979496,0.352184,0.42394,0.759133,0.148189,0.556722,0.523901,0.129562,0.458782,0.494096,0.0586436,0.942892,0.348713,0.258282,0.875299,0.732141,0.648029,0.38855,0.779607,0.918785,0.182326,0.304191,0.944391,0.579911,0.909669,0.679584,0.243302,0.9211,0.843151,0.99255,0.224632,0.328113,0.712099,0.143658,0.449271,0.920886,0.112163,0.212323,0.940975,0.403678,0.78059,0.451609,0.0636598,0.759897,0.661425,0.257424,0.0285946,0.198694,0.245711,0.588144,0.683501,0.541366,0.530573,0.169384,0.397914,0.593791,0.752391,0.995942,0.276362,0.910874,0.464536,0.252401,0.80664,0.56315,0.441903,0.971222,0.256819,0.721476,0.57826,0.553082,0.800597,0.888556,0.686517,0.114163,0.990848,0.0907177,0.903117,0.765215,0.651978,0.836703,0.424956,0.294031,0.580337,0.915387,0.844581,0.105624,0.506297,0.950944,0.925799,0.97143,0.937827,0.720658,0.903515,0.859724,0.602799,0.0919766,0.26229,0.407444,0.386721,0.441541,0.188731,0.0616508,0.289097,0.17307,0.168585,0.601823,0.726837,0.796011,0.53673,0.761267,0.756347,0.351162,0.681865,0.467785,0.333619,0.566568,0.833314,0.381648,0.526483,0.352582,0.365427,0.799174,0.808746,0.697228,0.506016,0.00788987,0.575088,0.650454,0.0763313,0.972217,0.323423,0.602696,0.588234,0.141764,0.279787,0.425446,0.423514,0.139726,0.190237,0.245004,0.10937,0.0674954,0.387911,0.5107,0.176816,0.158814,0.749533,0.245403,0.872104,0.0304883,0.0759133,0.322695,0.898476,0.414842,0.0102294,0.86014,0.457321,0.533533,0.385557,0.345809,0.201464,0.0100577,0.667515,0.124601,0.474965,0.618258,0.846003,0.453081,0.236555,0.434249,0.0787396,0.982579,0.469828,0.510906,0.413904,0.611836,0.470131,0.0116467,0.398199,0.533345,0.405755,0.91659,0.322462,0.722251,0.70059,0.245079,0.853895,0.359838,0.546249,0.19909,0.499415,0.0274401,0.498203,0.0590191,0.348906,0.278646,0.570921,0.826218,0.0630202,0.770547,0.962354,0.273476,0.452058,0.00604272,0.407938,0.333292,0.424435,0.525103,0.933671,0.911523,0.495278,0.914384,0.487893,0.0877646,0.932315,0.699102,0.91328,0.515125,0.700925,0.390342,0.0111401,0.202918,0.516815,0.684703,0.500785,0.1441,0.987279,0.105221,0.0796626,0.217654,0.861293,0.429402,0.889796,0.837911,0.334109,0.584905,0.818993,0.37094,0.866832,0.230239,0.215886,0.12264,0.231675,0.716856,0.589403,0.897629,0.862666,0.404136,0.161528,0.687624,0.895591,0.268186,0.795735,0.874378,0.410971,0.931721,0.0451531,0.363114,0.0386209,0.269714,0.324726,0.70967,0.250779,0.0688151,0.995171,0.408836,0.0101646,0.0697173,0.61764,0.595737,0.17137,0.00795346,0.0631587,0.142923,0.876184,0.285421,0.129084,0.664418,0.407664,0.444757,0.569936,0.413411,0.333929,0.885952,0.707007,0.621929,0.861313,0.838644,0.778581,0.540558,0.902263,0.971351,0.354486,0.943268,0.788874,0.422776,0.998962,0.349907,0.632472,0.811738,0.921998,0.138455,0.371186,0.742992,0.750197,0.779382,0.429563,0.85537,0.974477,0.987222,0.963669,0.426022,0.466823,0.208298,0.187586,0.474124,0.64803,0.400745,0.379702,0.143843,0.765793,0.23143,0.85966,0.157757,0.315907,0.955141,0.921455,0.57593,0.505049,0.501837,0.540392,0.8162,0.0845544,0.648555,0.674214,0.272416,0.289718,0.351304,0.144261,0.677378,0.0429249,0.388208,0.566161,0.543554,0.90076,0.765426,0.0964327,0.619603,0.947874,0.907043,0.890717,0.703458,0.515241,0.0898482,0.466898,0.698114,0.404142,0.0160836,0.79257,0.920159,0.299411,0.675718,0.989293,0.0792201,0.180603,0.395321,0.249796,0.994771,0.0718977,0.0119224,0.29695,0.166811,0.462877,0.036574,0.94394,0.558724,0.970175,0.000530899,0.262936,0.693516,0.0787613,0.441743,0.00859952,0.270225,0.379703,0.0103453,0.441006,0.237941,0.460377,0.301304,0.214167,0.107881,0.920007,0.547064,0.207258,0.526002,0.190308,0.470448,0.721192,0.656876,0.51845,0.872747,0.817652,0.234856,0.530984,0.299076,0.0385814,0.076171,0.940841,0.632164,0.700028,0.254714,0.12976,0.565963,0.0726861,0.394055,0.162417,0.259554,0.195911,0.0668902,0.796392,0.488316,0.18513,0.629045,0.481855,0.337529,0.711988,0.433502,0.633314,0.184727,0.507945,0.286947,0.193152,0.713358,0.413144,0.467253,0.59323,0.347343,0.945942,0.686522,0.702949,0.0310196,0.179024,0.235975,0.976879,0.827344,0.265185,0.434382,0.710691,0.375471,0.894019,0.0699102,0.930443,0.48377,0.275479,0.366079,0.174847,0.944939,0.208456,0.0817622,0.827763,0.516796,0.30399,0.764694,0.429137,0.661204,0.68336,0.350577,0.477517,0.850301,0.307909,0.511298,0.554738,0.725159,0.872085,0.858375,0.281383,0.0164213,0.763717,0.266882,0.60766,0.600795,0.234492,0.193649,0.155116,0.739714,0.181435,0.71112,0.197318,0.638578,0.238755,0.479944,0.70539,0.295943,0.727391,0.546249,0.981415,0.335325,0.969388,0.908102,0.291671,0.264011,0.782095,0.32399,0.717595,0.865622,0.528011,0.69476,0.709645,0.442459,0.967829,0.945813,0.40431,0.345423,0.923445,0.346347,0.534281,0.533602,0.00779295,0.898312,0.701717,0.870052,0.476014,0.453821,0.178477,0.433129,0.930593,0.790476,0.618479,0.134373,0.227124,0.791693,0.127989,0.316507,0.18574,0.320415,0.64515,0.939802,0.970717,0.89079,0.436583,0.832715,0.728482,0.200929,0.174381,0.51993,0.856625,0.909659,0.752714,0.941117,0.740605,0.27444,0.126052,0.310702,0.997382,0.484176,0.676403,0.724758,0.476808,0.802275,0.257601,0.946148,0.157961,0.574452,0.762767,0.388409,0.0846887,0.722116,0.532015,0.298762,0.646047,0.128479,0.00613374,0.813465,0.976341,0.566297,0.641284,0.2889,0.372211,0.755503,0.852178,0.324656,0.460399,0.517478,0.347575,0.402562,0.023461,0.0597634,|0.829904,0.480103,0.662947,0.185977,0.946852,0.95397,0.115866,0.734279,0.108433,0.0560195,0.241904,0.856923,0.929144,0.338759,0.626852,0.552083,0.257755,0.255706,0.452725,0.672875,0.914001,0.192851,0.94725,0.583121,0.741511,0.544957,0.43211,0.210716,0.637505,0.753424,0.786001,0.679594,0.763412,0.788069,0.671713,0.598989,0.121119,0.770533,0.33692,0.571973,0.961972,0.937682,0.286812,0.321101,0.31877,0.0969648,0.993621,0.211262,0.813609,0.32817,0.943083,0.274682,0.0947174,0.205761,0.0657427,0.803569,0.4308,0.584518,0.0784198,0.381438,0.494252,0.104684,0.639848,0.88574,0.947533,0.51938,0.888013,0.527874,0.467929,0.999823,0.014387,0.726695,0.685286,0.763353,0.222279,0.698751,0.557963,0.111308,0.0726675,0.0539132,0.0206649,0.511849,0.603853,0.572582,0.715068,0.735294,0.000309587,0.984978,0.571717,0.148457,0.985622,0.48587,0.841637,0.677682,0.296576,0.500268,0.188791,0.485852,0.483289,0.0767661,0.0441703,0.478699,0.991933,0.658363,0.768416,0.421789,0.327782,0.0684452,0.0455036,0.475074,0.644755,0.423018,0.783127,0.917592,0.801259,0.0656517,0.662959,0.984437,0.466388,0.885225,0.557506,0.091424,0.699362,0.94474,0.491009,0.480704,0.503709,0.162372,0.187474,0.0151684,0.580681,0.228434,0.111787,0.1182,0.0568193,0.370612,0.815505,0.491523,0.839252,0.877295,0.143501,0.479665,0.0133884,0.661856,0.664852,0.438341,0.906581,0.991033,0.342613,0.604115,0.467602,0.0405558,0.738861,0.147415,0.760561,0.125531,0.887654,0.77071,0.267959,0.927676,0.00889069,0.367386,0.876897,0.20145,0.440658,0.847322,0.133111,0.628078,0.133921,0.616765,0.276184,0.93224,0.540648,0.903984,0.462176,0.809353,0.604749,0.883271,0.188535,0.931466,0.532836,0.55099,0.24549,0.0672269,0.411779,0.0726069,0.886827,0.665735,0.375876,0.365141,0.279816,0.622756,0.675597,0.576988,0.0179094,0.851315,0.667981,0.159556,0.716385,0.734084,0.727347,0.566969,0.534536,0.693156,0.996937,0.0580046,0.36615,0.659391,0.869428,0.453449,0.117391,0.596779,0.550139,0.945452,0.353062,0.814447,0.0579112,0.394704,0.0929308,0.0732399,0.801425,0.883951,0.462563,0.470451,0.933525,0.735989,0.744316,0.046995,0.665334,0.724033,0.41397,0.301011,0.798351,0.779574,0.0274178,0.739016,0.00329912,0.650752,0.772241,0.645639,0.598155,0.638175,0.00923783,0.633585,0.559787,0.450223,0.461438,0.452668,0.733966,0.505713,0.922613,0.964836,0.917275,0.912602,0.818108,0.38553,0.155784,0.0997352,0.34431,0.277277,0.0419396,0.754439,0.750297,0.412285,0.669607,0.0084188,0.502842,0.33126,0.19738,0.531343,0.195367,0.697625,0.425477,0.160239,0.419871,0.42366,0.0685981,0.201234,0.636903,0.419858,0.773337,0.924915,0.0743501,0.0305178,0.727684,0.460179,0.603024,0.857898,0.947079,0.204327,0.0532527,0.334959,0.388744,0.672763,0.991445,0.197245,0.080406,0.155214,0.0681482,0.584315,0.403955,0.754497,0.80194,0.69147,0.472227,0.651129,0.486801,0.835923,0.565465,0.690124,0.95124,0.728338,0.843033,0.0774896,0.99805,0.877799,0.853994,0.392316,0.149693,0.119402,0.383176,0.0944808,0.325249,0.971154,0.966651,0.131327,0.300659,0.245599,0.123527,0.58161,0.780199,0.759587,0.30927,0.83613,0.322566,0.183092,0.70924,0.592119,0.335477,0.654256,0.911615,0.715937,0.141823,0.287355,0.928044,0.00215143,0.904079,0.547637,0.497932,0.510164,0.69846,0.597034,0.347096,0.435773,0.608524,0.3688,0.968808,0.255629,0.875924,0.700681,0.530534,0.860998,0.73233,0.947182,0.208339,0.0805159,0.981805,0.0808612,0.720708,0.92234,0.586052,0.660533,0.259885,0.743239,0.424098,0.295497,0.333722,0.17387,0.735883,0.382389,0.380059,0.49237,0.803983,0.740877,0.874317,0.484008,0.549154,0.421645,0.70365,0.602192,0.533305,0.0169033,0.272871,0.956451,0.503949,0.908004,0.683566,0.312854,0.114863,0.343949,0.103794,0.832589,0.351509,0.0688329,0.831613,0.659712,0.249798,0.212392,0.603243,0.852685,0.587859,0.19052,0.0474972,0.0594239,0.583203,0.904138,0.547795,0.286267,0.784951,0.0494332,0.36824,0.0971075,0.760822,0.132845,0.963912,0.971327,0.586017,0.516603,0.889623,0.431788,0.217653,0.600222,0.774127,0.366936,0.410165,0.59738,0.976723,0.250001,0.303734,0.10824,0.657597,0.876733,0.162821,0.153738,0.470871,0.0727827,0.964639,0.106113,0.638541,0.230877,0.986193,0.665884,0.158872,0.127236,0.368107,0.881747,0.270626,0.0627705,0.287075,0.438684,0.0125932,0.511904,0.63943,0.81538,0.387213,0.561773,0.7274,0.143938,0.322986,0.341923,0.189066,0.575131,0.731986,0.490869,0.379285,0.571297,0.504319,0.802482,0.429619,0.207781,0.150326,0.948933,0.559381,0.983122,0.983603,0.766948,0.380521,0.121272,0.318739,0.27373,0.871746,0.494266,0.192102,0.748747,0.572181,0.226309,0.501001,0.671087,0.745448,0.766518,0.310773,0.418799,0.451966,0.359872,0.223392,0.98955,0.0631894,0.614167,0.854037,0.42013,0.130743,0.966469,0.0706022,0.693071,0.519349,0.153325,0.485411,0.368196,0.881859,0.103604,0.910551,0.356044,0.559351,0.878124,0.306504,0.845727,0.680045,0.0438604,0.393124,0.572137,0.715966,0.660885,0.14934,0.947531,0.650897,0.370794,0.956354,0.540121,0.589251,0.840277,0.505663,0.98481,0.0742667,0.642658,0.826562,0.651605,0.912442,0.725248,0.0773982,0.382416,0.601359,0.250405,0.515281,0.377697,0.997881,0.290527,0.541386,0.308053,0.303699,0.699918,0.178167,0.636087,0.785017,0.833063,0.015168,0.477647,0.556438,0.97928,0.45752,0.193014,0.0863951,0.950374,0.236791,0.840201,0.218192,0.269183,0.501156,0.479692,0.878943,0.691648,0.211689,0.520484,0.625123,0.276913,0.640912,0.00933558,0.718339,0.942143,0.0282333,0.350895,0.539863,0.135906,0.835737,0.226442,0.332174,0.158062,0.992257,0.162583,0.034807,0.940628,0.782022,0.551892,0.304361,0.374183,0.0983449,0.715969,0.447902,0.75648,0.86475,0.787931,0.695834,0.693612,0.126994,0.480549,0.987254,0.29542,0.640194,0.37074,0.170417,0.966782,0.268872,0.0445424,0.45757,0.298927,0.93618,0.503666,0.269543,0.95568,0.0266418,0.856347,0.0994323,0.835171,0.794368,0.344172,0.470367,0.757048,0.920059,0.487178,0.430318,0.313964,0.275391,0.327161,0.386198,0.521267,0.603524,0.0161664,0.36907,0.93732,0.756621,0.36038,0.0780842,0.0549026,0.200908,0.712294,0.0706095,0.517996,0.461403,0.157281,0.405269,0.0430021,0.186912,0.813633,0.374048,0.780086,0.504482,0.0855834,0.602077,0.545146,0.986234,0.33283,0.0735857,0.155,0.859557,0.0442147,0.486031,0.572979,0.189655,0.420876,0.367609,0.383959,0.163861,0.512501,0.295638,0.53902,0.122656,0.513172,0.429019,0.604879,0.104886,0.116837,0.690783,0.601476,0.653371,0.762654,0.652253,0.828613,0.965183,0.826222,0.319922,0.721937,0.622173,0.586567,0.869733,0.357547,0.995061,0.143569,0.483361,0.81525,0.00736386,0.40889,0.625186,0.896194,0.568787,0.711853,0.10555,0.667081,0.0549853,0.36976,0.339423,0.183664,0.238924,0.137083,0.364908,0.510317,0.171169,0.292296,0.40027,0.021103,0.736172,0.646109,0.821154,0.586616,0.742161,0.362418,0.431087,0.21446,0.0440032,0.00312912,0.27774,0.978154,0.565489,0.0206623,0.133766,0.922588,0.333291,0.619555,0.914149,0.500523,0.313397,0.824893,0.386942,0.95774,0.0199957,0.441307,0.989229,0.422389,0.825504,0.560237,0.509603,0.681557,0.0704841,0.312804,0.659796,0.911632,0.173795,0.52491,0.757416,0.110607,0.30862,0.318971,0.499305,0.319234,0.795511,0.751982,0.788033,0.542364,0.514889,0.328464,0.56655,0.0223321,0.369975,0.597074,0.0205618,0.578718,0.196054,0.191251,0.731316,0.730625,0.652101,0.975133,0.773087,0.63483,0.110334,0.84244,0.215958,0.95563,0.421074,0.254335,0.2748,0.954814,0.263712,0.609707,0.519456,0.0287763,0.537943,0.980062,0.135597,0.121945,0.960259,0.864983,0.32612,0.67268,0.284538,0.937447,0.0611246,0.565503,0.953502,0.302112,0.79305,0.911618,0.806806,0.99806,0.91595,0.424277,0.146396,0.80126,0.437656,0.0575162,0.825764,0.0360367,0.718852,0.654029,0.414528,0.297594,0.363071,0.745469,0.87421,0.715803,0.922161,0.839065,0.62922,0.999238,0.727945,0.384298,0.325951,0.807419,0.995668,0.358327,0.301609,0.919089,0.102931,0.852238,0.50401,0.694621,0.603807,0.028281,0.29424,0.300564,0.303178,0.243731,0.306405,0.265143,0.788579,0.633769,0.447708,0.895426,0.298234,0.983575,0.15866,0.941662,0.960178,0.580308,0.385819,0.409067,0.93254,0.54511,0.661249,0.193847,0.904146,0.558096,0.637037,0.37787,0.798029,0.491291,0.625704,0.714109,0.646271,0.552816,0.288396,0.288889,0.915682,0.830055,0.281725,0.437821,0.800039,0.943231,0.412531,0.21726,0.965757,0.482278,0.883624,0.399362,0.594497,0.385474,0.475013,0.652569,0.0474387,0.738997,0.45051,0.214122,0.647895,0.499275,0.0817598,0.728724,0.747099,0.771241,0.157214,0.228695,0.0469258,0.731218,0.0307985,0.622445,0.326603,0.339753,0.869662,0.516561,0.95008,0.66826,0.81969,0.185613,0.234463,0.118156,0.743403,0.113033,0.385047,0.0950028,0.163616,0.8658,0.315013,0.967926,0.265755,0.544203,0.369701,0.219383,0.0589266,0.738075,0.833097,0.586755,0.860027,0.446024,0.559149,0.732379,0.671106,0.656056,0.277193,0.612565,0.445745,0.240036,0.804622,0.452168,0.227949,0.213536,0.870708,0.644155,0.175767,0.260637,0.042836,0.101528,0.447182,0.850204,0.263106,0.513829,0.435215,0.496026,0.289613,0.870404,0.26981,0.903147,0.753937,0.667937,0.158718,0.878176,0.111225,0.506693,0.325074,0.996161,0.37641,0.531873,0.46498,0.293812,0.538077,0.533986,0.525462,0.536892,0.0276771,0.676787,0.847896,0.187427,0.477867,0.0198085,|0.806762,0.698724,0.999467,0.284245,0.527407,0.410879,0.0812745,0.6802,0.817236,0.743468,0.704974,0.872981,0.652103,0.833288,0.0228743,0.398846,0.684771,0.643861,0.957182,0.526951,0.91573,0.41357,0.126726,0.354367,0.57732,0.304868,0.709178,0.992107,0.752405,0.289061,0.905088,0.16962,0.341489,0.347517,0.0623096,0.487181,0.11761,0.422494,0.446721,0.767576,0.960322,0.927519,0.853839,0.815733,0.997362,0.658742,0.357211,0.916086,0.955928,0.0226519,0.0281312,0.896516,0.523427,0.729621,0.162359,0.0977411,0.347811,0.084277,0.2494,0.948739,0.838839,0.23164,0.829907,0.353149,0.352164,0.382398,0.734997,0.612823,0.00052321,0.281333,0.787239,0.92892,0.903244,0.761933,0.0414394,0.452307,0.837599,0.170888,0.37654,0.945768,0.778318,0.60596,0.446445,0.988717,0.509157,0.0385273,0.599098,0.441465,0.777991,0.462778,0.415667,0.912282,0.562239,0.941649,0.971793,0.249044,0.972214,0.758615,0.123702,0.251752,0.121012,0.109721,0.961837,0.890273,0.48091,0.924779,0.864766,0.853628,0.838394,0.766988,0.391132,0.784241,0.558717,0.0553246,0.306065,0.273672,0.140309,0.718763,0.157285,0.355252,0.361157,0.978669,0.513523,0.317766,0.370946,0.75145,0.637635,0.321728,0.26786,0.855858,0.0303788,0.511019,0.320495,0.654525,0.628138,0.907962,0.973028,0.447627,0.971842,0.319922,0.826191,0.349406,0.720266,0.181676,0.859689,0.610765,0.191537,0.632869,0.134486,0.960359,0.0409878,0.657377,0.308173,0.706427,0.0768051,0.189,0.90034,0.102588,0.0264966,0.218591,0.95498,0.431246,0.472718,0.537134,0.840089,0.9029,0.23043,0.547702,0.814923,0.474309,0.584981,0.44058,0.408389,0.0947244,0.273015,0.249123,0.542909,0.174383,0.010194,0.925153,0.456545,0.397254,0.587578,0.946888,0.958244,0.980973,0.548085,0.621909,0.264039,0.765373,0.389994,0.187416,0.751959,0.723539,0.111068,0.33968,0.937974,0.335041,0.217607,0.869631,0.710428,0.153488,0.969734,0.159686,0.442834,0.736672,0.0341845,0.659713,0.240304,0.701626,0.917781,0.951259,0.691698,0.426767,0.90346,0.9114,0.796556,0.762688,0.870034,0.43714,0.594144,0.00736308,0.963425,0.169685,0.888362,0.153376,0.920912,0.827709,0.832444,0.282326,0.585743,0.381109,0.355972,0.152794,0.65532,0.0653425,0.505828,0.0817097,0.929429,0.242916,0.525079,0.0169463,0.708467,0.0851611,0.741826,0.689365,0.770539,0.59215,0.333924,0.916484,0.95527,0.97373,0.632175,0.406726,0.311658,0.334167,0.961997,0.695742,0.534882,0.435313,0.384749,0.0760161,0.523677,0.841793,0.662144,0.851667,0.355392,0.950363,0.977111,0.201205,0.097089,0.534979,0.493449,0.97779,0.402207,0.636701,0.800951,0.415905,0.245615,0.650103,0.260615,0.306379,0.283913,0.148924,0.222654,0.805188,0.253462,0.273334,0.0764009,0.574575,0.433523,0.939431,0.181708,0.825946,0.774277,0.217976,0.392057,0.434698,0.708204,0.823967,0.126844,0.346989,0.10952,0.586528,0.0545401,0.513988,0.972846,0.83849,0.477285,0.510244,0.874327,0.516188,0.598824,0.0857704,0.128091,0.95972,0.922901,0.249172,0.318635,0.369648,0.41409,0.19973,0.215566,0.505303,0.196793,0.311148,0.841971,0.673418,0.127187,0.808374,0.988044,0.200438,0.252262,0.136681,0.737289,0.0128597,0.977974,0.2831,0.470974,0.410038,0.539715,0.158578,0.877647,0.353613,0.856919,0.643415,0.544138,0.0240929,0.968481,0.0671922,0.880878,0.219943,0.507049,0.270146,0.121866,0.408013,0.251487,0.484075,0.958281,0.773586,0.454534,0.847804,0.735141,0.972779,0.404844,0.132626,0.799145,0.462319,0.774998,0.727879,0.0978501,0.386629,0.444161,0.764933,0.477407,0.188599,0.0276209,0.810102,0.0625373,0.659245,0.00115323,0.146187,0.733833,0.050694,0.974583,0.779772,0.218434,0.287397,0.586405,0.623642,0.529189,0.932144,0.804205,0.827903,0.28047,0.0315392,0.236751,0.152553,0.505257,0.24368,0.51294,0.936407,0.805397,0.1469,0.325959,0.215835,0.630924,0.0381165,0.898917,0.434191,0.0217013,0.249271,0.0943857,0.083178,0.142699,0.306756,0.0950413,0.506124,0.133899,0.513593,0.579053,0.506072,0.0168211,0.917501,0.953543,0.611255,0.932845,0.0332831,0.83012,0.913886,0.539365,0.718481,0.671179,0.97973,0.150905,0.126117,0.56694,0.790801,0.951558,0.375837,0.677727,0.83571,0.577178,0.388047,0.00670505,0.319294,0.397484,0.0248988,0.628426,0.311448,0.861929,0.295613,0.473118,0.86501,0.948382,0.383367,0.229846,0.0850115,0.772918,0.697848,0.0614415,0.368347,0.281294,0.138826,0.282201,0.0993975,0.603489,0.570361,0.318751,0.0798522,0.564238,0.253486,0.907019,0.912494,0.0966809,0.669026,0.764376,0.974614,0.0812567,0.661483,0.568676,0.00126356,0.958275,0.570576,0.626938,0.0227962,0.994726,0.8505,0.0135678,0.466585,0.740399,0.156946,0.260474,0.424351,0.44275,0.682535,0.471706,0.0671541,0.560751,0.952536,0.0886903,0.681282,0.644494,0.524173,0.259312,0.50499,0.889519,0.212887,0.552457,0.824273,0.686737,0.424906,0.115072,0.745931,0.0351217,0.976894,0.208311,0.884818,0.426953,0.801017,0.117769,0.318059,0.456927,0.333838,0.849223,0.543412,0.222351,0.537474,0.520613,0.0877358,0.000951588,0.688488,0.385571,0.322141,0.365185,0.432734,0.283735,0.0336351,0.319262,0.963578,0.909469,0.961249,0.393184,0.403932,0.331515,0.538942,0.919,0.86398,0.679462,0.491961,0.408691,0.505267,0.565693,0.460088,0.551828,0.566582,0.167354,0.294312,0.417604,0.824802,0.403704,0.206674,0.611391,0.621981,0.531269,0.0917331,0.0996658,0.861126,0.191758,0.127167,0.635704,0.208851,0.396698,0.546217,0.598103,0.445871,0.297397,0.627943,0.0696121,0.640411,0.259873,0.547634,0.764433,0.363129,0.522121,0.375052,0.672419,0.847192,0.924735,0.0740108,0.426445,0.159369,0.923202,0.816513,0.781017,0.331237,0.558715,0.46268,0.071655,0.352885,0.100948,0.692019,0.00813925,0.622567,0.872349,0.821612,0.840712,0.534144,0.0669775,0.639343,0.907704,0.211671,0.579873,0.625454,0.734715,0.301492,0.951028,0.972229,0.73421,0.671174,0.858626,0.0778378,0.370731,0.215692,0.598405,0.717209,0.069508,0.828508,0.730158,0.480292,0.328696,0.516254,0.591832,0.545105,0.452863,0.376737,0.522648,0.477598,0.520967,0.473999,0.276116,0.839782,0.977709,0.906603,0.952422,0.074131,0.571958,0.756202,0.610055,0.735703,0.837967,0.126823,0.626052,0.391653,0.0746078,0.101242,0.62016,0.307139,0.0266672,0.284733,0.0745756,0.812981,0.918504,0.978421,0.29287,0.801729,0.978114,0.164765,0.744865,0.116741,0.113506,0.846809,0.714074,0.563846,0.178052,0.505519,0.41678,0.93973,0.902497,0.855162,0.148084,0.810083,0.474652,0.348357,0.818115,0.840441,0.539781,0.00950366,0.250419,0.885421,0.661661,0.000971258,0.446048,0.691133,0.143852,0.511042,0.777622,0.132393,0.573354,0.704552,0.974429,0.290219,0.00335288,0.608019,0.998853,0.37483,0.371949,0.708519,0.312251,0.263093,0.158323,0.495348,0.619955,0.956804,0.534438,0.411871,0.479161,0.0879503,0.712826,0.0131757,0.411295,0.679322,0.0367489,0.960423,0.330423,0.142669,0.77389,0.791345,0.676731,0.985327,0.581284,0.0437938,0.0638418,0.506512,0.0353299,0.0461797,0.180432,0.204794,0.902936,0.11637,0.243505,0.534909,0.421136,0.291859,0.922214,0.600624,0.0625772,0.877017,0.163295,0.265893,0.800228,0.0135543,0.985619,0.896796,0.167873,0.556541,0.951531,0.626912,0.0195886,0.236208,0.86245,0.846171,0.94317,0.722787,0.741462,0.356772,0.384505,0.127193,0.642477,0.0274602,0.145919,0.561635,0.057081,0.885434,0.466935,0.320974,0.517755,0.0908006,0.849859,0.771364,0.778851,0.446199,0.495635,0.971152,0.188197,0.244479,0.88164,0.280474,0.251398,0.879903,0.613626,0.43057,0.516779,0.33288,0.515941,0.713644,0.408756,0.0904103,0.0241898,0.0582451,0.97727,0.452497,0.481138,0.991013,0.364487,0.244099,0.724487,0.623364,0.0638338,0.656686,0.740524,0.175309,0.248326,0.22228,0.853158,0.356472,0.179542,0.537053,0.0819759,0.275765,0.20254,0.919526,0.825744,0.930306,0.349615,0.0441802,0.770613,0.310883,0.409901,0.366718,0.298537,0.517595,0.497209,0.272486,0.412077,0.624694,0.858079,0.553306,0.115559,0.552606,0.820714,0.398612,0.634304,0.67164,0.830671,0.801979,0.827307,0.592361,0.308923,0.663017,0.540284,0.28152,0.22992,0.263243,0.847346,0.274985,0.700571,0.256112,0.666695,0.387751,0.118269,0.116027,0.194431,0.899975,0.29743,0.492282,0.117118,0.341667,0.985036,0.380628,0.224641,0.148103,0.832837,0.692002,0.0388641,0.216616,0.893591,0.790555,0.287965,0.416689,0.7015,0.0833142,0.332587,0.676192,0.0869859,0.96415,0.994671,0.686376,0.243546,0.153318,0.00101936,0.130588,0.861975,0.463961,0.466148,0.120606,0.735727,0.299704,0.74044,0.193938,0.77974,0.117432,0.812527,0.484818,0.549159,0.715432,0.0737168,0.425422,0.762261,0.936996,0.902924,0.642289,0.82645,0.762907,0.52028,0.295155,0.0981759,0.337433,0.835053,0.946817,0.878142,0.529149,0.760372,0.0536712,0.753024,0.781056,0.510902,0.872428,0.487517,0.105493,0.248292,0.809432,0.550629,0.126761,0.0486463,0.560749,0.798018,0.316534,0.433889,0.979687,0.391493,0.44316,0.87174,0.808996,0.26216,0.397086,0.256469,0.199319,0.130475,0.374851,0.370054,0.305602,0.190542,0.137613,0.928768,0.128075,0.860291,0.987529,0.484904,0.785772,0.838036,0.407182,0.748321,0.664742,0.932241,0.479463,0.75373,0.467696,0.941572,0.000479937,0.165087,0.579849,0.814105,0.47593,0.387654,0.0826431,0.431627,0.41486,0.0815606,0.0741539,0.954218,0.628223,0.482912,0.539247,0.891196,0.379995,0.282201,0.2639,0.800654,0.928494,0.697839,0.0591977,0.520766,0.596618,0.140808,0.7749,0.096833,0.186421,0.226939,0.395152,|0.978474,0.668642,0.77281,0.0149907,0.377161,0.373095,0.163867,0.0340726,0.43589,0.0621452,0.174963,0.319325,0.025744,0.0145891,0.435656,0.398987,0.700536,0.333096,0.2369,0.152721,0.0906312,0.525675,0.225007,0.976354,0.666918,0.196821,0.624951,0.199815,0.120385,0.505956,0.822578,0.454921,0.509271,0.227952,0.917585,0.304554,0.500848,0.241155,0.115004,0.725226,0.957459,0.114432,0.368226,0.972619,0.358361,0.954246,0.859774,0.361573,0.0149328,0.122242,0.797301,0.299224,0.0280252,0.206444,0.587063,0.835435,0.728133,0.258829,0.310553,0.14949,0.245055,0.0236183,0.9439,0.47088,0.174894,0.138528,0.650303,0.0691869,0.610226,0.614299,0.859013,0.379073,0.912546,0.32386,0.953348,0.632018,0.965518,0.758842,0.927201,0.477155,0.225632,0.524614,0.934469,0.99524,0.845423,0.451643,0.851128,0.68889,0.373921,0.304226,0.884566,0.112724,0.950276,0.439931,0.575575,0.489786,0.713422,0.788523,0.768442,0.251293,0.650134,0.412938,0.519585,0.624265,0.147912,0.216004,0.22216,0.911185,0.501308,0.0365672,0.190133,0.667418,0.0225824,0.417845,0.138803,0.695358,0.959435,0.439241,0.638481,0.379874,0.63323,0.0609124,0.953205,0.224315,0.376168,0.165005,0.314906,0.997909,0.751114,0.840679,0.258741,0.992056,0.00131381,0.447886,0.0221349,0.553093,0.953745,0.0823501,0.529488,0.47275,0.412099,0.600803,0.680101,0.376307,0.979348,0.621346,0.61393,0.913331,0.111375,0.851389,0.444688,0.959848,0.964352,0.0194974,0.653642,0.406711,0.233497,0.692927,0.291698,0.250657,0.403253,0.663307,0.712824,0.811104,0.946764,0.267967,0.954927,0.509682,0.494057,0.848912,0.64193,0.395125,0.518378,0.938263,0.490981,0.560348,0.160623,0.621098,0.435268,0.445686,0.0898324,0.425352,0.928172,0.593983,0.51516,0.457306,0.154104,0.119342,0.0637392,0.455694,0.403831,0.377662,0.472791,0.644065,0.579409,0.597573,0.174452,0.303586,0.138731,0.788902,0.513846,0.364682,0.723293,0.190135,0.883737,0.585823,0.0417427,0.930602,0.832119,0.146826,0.0272494,0.709806,0.913685,0.930928,0.337281,0.182438,0.46308,0.801718,0.0382658,0.583765,0.927204,0.287301,0.482331,0.317948,0.446102,0.216873,0.801469,0.583151,0.317013,0.0304302,0.32,0.0438401,0.415116,0.460118,0.781504,0.393462,0.305306,0.623897,0.281214,0.54924,0.994884,0.11743,0.736486,0.929678,0.872458,0.641807,0.0625281,0.339681,0.290895,0.585845,0.924726,0.398468,0.988259,0.0829462,0.554358,0.401173,0.0634199,0.200231,0.206938,0.740731,0.446491,0.86537,0.741331,0.417314,0.952173,0.208046,0.601914,0.587129,0.916374,0.043589,0.394996,0.918476,0.271657,0.972628,0.961861,0.73951,0.766294,0.194073,0.123922,0.814519,0.625771,0.0706221,0.915704,0.876904,0.284357,0.879776,0.674292,0.268869,0.587608,0.0119747,0.532931,0.755495,0.672569,0.859391,0.161514,0.77318,0.0907537,0.604712,0.628196,0.860188,0.543927,0.076771,0.077271,0.656355,0.156003,0.863431,0.739088,0.735568,0.265333,0.63195,0.263505,0.936065,0.676013,0.414976,0.976782,0.902994,0.772767,0.324015,0.0516662,0.869614,0.122186,0.058819,0.422914,0.720995,0.455983,0.459718,0.970199,0.829082,0.427158,0.41949,0.278843,0.317974,0.60316,0.738723,0.118325,0.580466,0.640499,0.821734,0.879935,0.936872,0.0764365,0.827247,0.145662,0.260449,0.658525,0.0123342,0.626181,0.942801,0.992296,0.862959,0.130468,0.0656135,0.554506,0.00920874,0.608018,0.663737,0.803371,0.483359,0.797961,0.730421,0.839636,0.74754,0.479147,0.906038,0.456865,0.578088,0.832511,0.797942,0.467549,0.765606,0.795085,0.51165,0.684423,0.527228,0.95385,0.678702,0.634109,0.248729,0.144408,0.853792,0.989945,0.875847,0.590278,0.704091,0.601707,0.741374,0.157254,0.0184464,0.562193,0.0759944,0.231515,0.510472,0.235945,0.385794,0.596882,0.904991,0.876374,0.698391,0.827172,0.397359,0.807175,0.0173989,0.942988,0.907486,0.749247,0.692094,0.134175,0.532574,0.810768,0.830038,0.336556,0.309153,0.965953,0.58162,0.940504,0.424639,0.760182,0.917062,0.769544,0.439407,0.662086,0.655174,0.845377,0.722992,0.971921,0.971281,0.0260295,0.899676,0.52176,0.664964,0.482675,0.737025,0.19744,0.790932,0.988783,0.0681267,0.785348,0.954423,0.0501772,0.347029,0.52217,0.5819,0.839315,0.421966,0.35633,0.172267,0.34052,0.699657,0.798738,0.180075,0.873044,0.8867,0.248524,0.391204,0.375868,0.849916,0.480414,0.727607,0.494871,0.938478,0.914492,0.55674,0.639358,0.793035,0.112496,0.432813,0.923757,0.870074,0.6395,0.602596,0.435812,0.494935,0.390449,0.0793409,0.530778,0.969272,0.153253,0.0387248,0.0321658,0.5388,0.265572,0.290428,0.42793,0.663256,0.756212,0.488674,0.911923,0.159813,0.812013,0.985042,0.930314,0.825263,0.663863,0.563777,0.334071,0.913245,0.109429,0.758308,0.921602,0.3385,0.709627,0.0298532,0.69139,0.232159,0.527694,0.938947,0.511361,0.121265,0.940032,0.54895,0.764716,0.716278,0.72243,0.383124,0.756494,0.83405,0.242728,0.736278,0.782864,0.661011,0.47504,0.733272,0.288925,0.445009,0.784897,0.525457,0.40094,0.0607079,0.132038,0.426161,0.836718,0.551554,0.783091,0.507742,0.0198306,0.68328,0.680527,0.112573,0.716567,0.933365,0.422659,0.698075,0.79672,0.534386,0.565449,0.680972,0.926926,0.328119,0.949653,0.405328,0.0331134,0.460841,0.168476,0.335848,0.0418691,0.462556,0.960037,0.583938,0.289515,0.858067,0.922605,0.0701467,0.296645,0.134225,0.859376,0.272806,0.605564,0.889122,0.883254,0.273554,0.210309,0.986303,0.677364,0.117227,0.671908,0.655173,0.0771931,0.816689,0.822124,0.60168,0.91014,0.462501,0.975615,0.361432,0.881453,0.762241,0.688271,0.906816,0.928268,0.684339,0.823111,0.826465,0.616256,0.828607,0.0849756,0.686776,0.840175,0.665087,0.844803,0.590898,0.783271,0.911132,0.604823,0.210843,0.329802,0.0343077,0.0283059,0.303163,0.0167246,0.156243,0.905581,0.18808,0.0492759,0.375157,0.396092,0.21462,0.472422,0.818172,0.336113,0.945639,0.602214,0.691956,0.17103,0.870769,0.268021,0.728925,0.614464,0.526667,0.919693,0.520344,0.183552,0.469156,0.641054,0.261639,0.355638,0.30043,0.792637,0.500386,0.686363,0.0765329,0.183365,0.391541,0.074963,0.871653,0.348172,0.67001,0.0626262,0.142726,0.621324,0.0609992,0.559719,0.450041,0.159013,0.518274,0.653887,0.819571,0.383662,0.574802,0.556673,0.588797,0.481899,0.19062,0.683869,0.450935,0.962632,0.319162,0.184338,0.759358,0.856171,0.0177621,0.0211705,0.0970885,0.94818,0.0661547,0.0801607,0.280264,0.765804,0.801481,0.286196,0.219847,0.121209,0.235042,0.839699,0.235882,0.934902,0.487985,0.554765,0.701097,0.887955,0.489564,0.0571191,0.458134,0.685291,0.269025,0.960116,0.913062,0.690887,0.512996,0.380249,0.694934,0.489982,0.703505,0.63221,0.295255,0.503818,0.20016,0.180223,0.740872,0.151627,0.046207,0.0641075,0.154849,0.46713,0.948641,0.153567,0.27727,0.752391,0.668243,0.0769676,0.464165,0.944946,0.28539,0.439005,0.961788,0.80781,0.491549,0.226007,0.167106,0.475348,0.250852,0.426625,0.584671,0.431058,0.966942,0.630665,0.277677,0.585191,0.497742,0.120798,0.0973482,0.432866,0.926145,0.272336,0.53423,0.347795,0.703783,0.540326,0.668114,0.151882,0.513756,0.524769,0.864953,0.0339213,0.137646,0.733318,0.375951,0.910604,0.505253,0.347525,0.338838,0.348446,0.863186,0.573243,0.729472,0.895123,0.922777,0.554927,0.471595,0.229367,0.140973,0.181425,0.235549,0.667213,0.945285,0.679997,0.565823,0.407806,0.878984,0.32504,0.205125,0.483559,0.550756,0.374981,0.0457249,0.986971,0.657884,0.10306,0.128019,0.711185,0.395516,0.307745,0.609862,0.350066,0.579692,0.987181,0.851345,0.149706,0.541562,0.335741,0.0312899,0.96667,0.582518,0.785329,0.131006,0.829161,0.460457,0.390487,0.837897,0.795524,0.956037,0.1373,0.585124,0.310924,0.667112,0.352065,0.505299,0.855608,0.073776,0.696203,0.795312,0.0264306,0.961822,0.522569,0.0222088,0.306064,0.903605,0.757419,0.788956,0.870161,0.713033,0.474167,0.0703749,0.991492,0.0397685,0.908095,0.325025,0.241414,0.165733,0.947311,0.851354,0.858839,0.767087,0.116767,0.697805,0.894485,0.156154,0.0504562,0.825486,0.910758,0.813826,0.482235,0.539474,0.812397,0.84662,0.573896,0.264916,0.525208,0.647351,0.852117,0.770533,0.70087,0.225607,0.140863,0.249885,0.829297,0.091339,0.401759,0.264774,0.63383,0.172366,0.953162,0.0790133,0.838205,0.99665,0.117812,0.177151,0.449886,0.728134,0.701495,0.48502,0.375165,0.362217,0.729325,0.99203,0.990088,0.0813534,0.100876,0.195947,0.977107,0.507915,0.798252,0.904818,0.784199,0.00941992,0.318636,0.664168,0.455969,0.814366,0.547682,0.152903,0.526364,0.242301,0.544475,0.572412,0.55243,0.232698,0.94462,0.856085,0.423643,0.239999,0.993181,0.521679,0.0559314,0.455082,0.884028,0.414435,0.359336,0.563104,0.669665,0.939145,0.171476,0.671586,0.11006,0.35885,0.0508776,0.423278,0.0408084,0.748171,0.146427,0.236444,0.353779,0.780613,0.925675,0.0908902,0.186392,0.234749,0.657922,0.468489,0.978269,0.844677,0.609454,0.223564,0.751331,0.947042,0.693105,0.384008,0.701059,0.554074,0.93702,0.746832,0.535924,0.327036,0.551934,0.672128,0.605278,0.287381,0.114365,0.306692,0.188733,0.640327,0.738866,0.461404,0.17059,0.223394,0.169025,0.454877,0.473933,0.443039,0.662938,0.289164,0.0780908,0.212612,0.296123,0.280174,0.237788,0.748414,0.652977,0.302006,0.971779,0.645063,0.49222,0.136041,0.406568,0.332262,0.904881,0.241867,0.775526,0.108713,0.182319,0.362526,0.466392,0.835667,0.839633,0.0918543,0.271693,0.156545,0.922417,0.547737,0.142061,0.8892,|0.539436,0.831201,0.699405,0.959366,0.0454512,0.806702,0.846984,0.353171,0.251164,0.112899,0.945655,0.3533,0.135718,0.396459,0.812282,0.671324,0.315531,0.529084,0.125622,0.929958,0.72118,0.471057,0.545515,0.693597,0.657209,0.463773,0.918931,0.536789,0.457756,0.523397,0.201499,0.368148,0.126375,0.71445,0.734877,0.460645,0.628673,0.461951,0.951587,0.71732,0.0504193,0.392759,0.617339,0.784249,0.352456,0.179629,0.704364,0.869643,0.872226,0.628828,0.467254,0.542019,0.45739,0.956927,0.517025,0.811678,0.788973,0.69912,0.210857,0.362047,0.963577,0.217478,0.932981,0.562468,0.127285,0.625245,0.873475,0.57823,0.00994128,0.137948,0.781195,0.239441,0.124998,0.983387,0.330528,0.691329,0.417746,0.999054,0.758099,0.423254,0.350824,0.701139,0.481917,0.5441,0.202381,0.581333,0.569268,0.700467,0.581868,0.226712,0.00377947,0.817742,0.921679,0.128822,0.602105,0.702291,0.132098,0.340984,0.757021,0.320413,0.609745,0.0792404,0.359743,0.160901,0.615489,0.516592,0.263619,0.582146,0.854604,0.267282,0.179831,0.349362,0.517985,0.80785,0.0836822,0.0589893,0.531789,0.716744,0.556802,0.862705,0.608718,0.550788,0.139038,0.994815,0.0620548,0.732218,0.415544,0.804726,0.049284,0.133093,0.751424,0.521045,0.415313,0.181235,0.576184,0.953539,0.204098,0.0927098,0.576237,0.523697,0.544087,0.704405,0.00605345,0.465791,0.0344915,0.0528995,0.117049,0.198642,0.031896,0.538628,0.151186,0.78236,0.515097,0.844131,0.451139,0.54042,0.3762,0.934192,0.794027,0.657005,0.136769,0.02643,0.755586,0.883993,0.110593,0.882647,0.489319,0.802906,0.437252,0.157121,0.606171,0.289068,0.51357,0.86969,0.990016,0.803068,0.288799,0.161667,0.157862,0.580674,0.560774,0.618635,0.692733,0.408662,0.89592,0.406963,0.632386,0.137594,0.0640058,0.237204,0.534981,0.154655,0.790028,0.452857,0.255702,0.327303,0.459597,0.0686346,0.138959,0.114719,0.254121,0.511451,0.962148,0.274357,0.50473,0.732828,0.961538,0.586194,0.272913,0.613635,0.480117,0.642228,0.899005,0.252088,0.958849,0.27892,0.0426632,0.0713363,0.220941,0.978511,0.331386,0.15881,0.13244,0.588105,0.845012,0.720237,0.428179,0.167781,0.0601167,0.861884,0.163925,0.532228,0.656964,0.649778,0.414511,0.275895,0.857695,0.908333,0.336021,0.711011,0.0613165,0.471569,0.494936,0.899572,0.936073,0.974939,0.749519,0.849716,0.866545,0.19012,0.106307,0.832966,0.0320129,0.265203,0.404459,0.668007,0.840492,0.811031,0.0319768,0.344266,0.165223,0.656761,0.515955,0.719849,0.468812,0.973039,0.478914,0.334954,0.0712094,0.0146899,0.959826,0.0842611,0.342004,0.960652,0.219004,0.860154,0.661764,0.114173,0.380397,0.801022,0.462337,0.0377986,0.673346,0.238343,0.0480457,0.886341,0.923065,0.680344,0.901992,0.657813,0.326191,0.199315,0.703656,0.670483,0.569867,0.338945,0.315753,0.21986,0.164604,0.1074,0.324325,0.923758,0.545395,0.838336,0.917882,0.0465552,0.410023,0.663752,0.350032,0.72427,0.466297,0.972517,0.93885,0.318686,0.989645,0.0624043,0.376869,0.30413,0.083787,0.583607,0.444086,0.76654,0.622984,0.337599,0.00211602,0.989839,0.53755,0.284513,0.45911,0.34073,0.628847,0.134248,0.352355,0.13313,0.504622,0.450121,0.376139,0.576075,0.538368,0.673182,0.736744,0.467308,0.366807,0.662274,0.353748,0.824076,0.108143,0.979662,0.0796424,0.323599,0.650458,0.777684,0.807529,0.0869787,0.213028,0.275934,0.0749624,0.118386,0.44778,0.66673,0.282857,0.195783,0.998548,0.872567,0.163008,0.245601,0.292689,0.792555,0.267378,0.990142,0.595089,0.473426,0.274708,0.937121,0.779467,0.492506,0.689807,0.392841,0.0350619,0.186851,0.363073,0.731799,0.353663,0.0597475,0.0885363,0.253522,0.525115,0.959854,0.329913,0.590069,0.542328,0.381728,0.59551,0.944853,0.551529,0.231588,0.982768,0.32809,0.524458,0.156975,0.22053,0.348489,0.147796,0.0682628,0.675082,0.216675,0.236228,0.738876,0.922874,0.443853,0.706853,0.0539459,0.697662,0.056906,0.525814,0.354574,0.830376,0.290718,0.652688,0.979439,0.12297,0.701423,0.665063,0.361593,0.713893,0.149271,0.477176,0.426369,0.753724,0.605041,0.384528,0.522732,0.490257,0.450826,0.597146,0.137222,0.950907,0.220257,0.767636,0.356993,0.0513718,0.889308,0.715406,0.147404,0.608761,0.950599,0.973399,0.461653,0.00429273,0.580334,0.659245,0.0313766,0.981232,0.892178,0.875749,0.24764,0.566899,0.785305,0.910405,0.850127,0.285979,0.00232363,0.868203,0.104251,0.981289,0.529046,0.765593,0.819667,0.693654,0.343245,0.919955,0.436517,0.527794,0.83686,0.527247,0.913456,0.907526,0.0271643,0.528914,0.42359,0.924287,0.60221,0.700151,0.295453,0.0776985,0.713412,0.437836,0.129606,0.44196,0.391859,0.162441,0.748849,0.648866,0.309065,0.624619,0.165207,0.795252,0.778532,0.41731,0.101757,0.75312,0.95939,0.602521,0.0174592,0.145751,0.739712,0.505089,0.388021,0.120688,0.0725402,0.982301,0.0423446,0.404439,0.0588297,0.98243,0.425903,0.108123,0.794651,0.69909,0.96308,0.43906,0.198213,0.194488,0.299482,0.146568,0.549524,0.699449,0.333424,0.326009,0.468522,0.683098,0.995758,0.917401,0.776409,0.434847,0.843067,0.772653,0.309954,0.294749,0.351719,0.10795,0.127087,0.78458,0.760847,0.977376,0.606502,0.587406,0.621823,0.622144,0.229966,0.971528,0.164733,0.969664,0.494964,0.660899,0.0292861,0.646293,0.764846,0.561753,0.501187,0.889454,0.799456,0.9616,0.0303902,0.172781,0.578047,0.87908,0.0127175,0.791334,0.424137,0.988252,0.254769,0.665229,0.653629,0.0591863,0.40049,0.233551,0.983535,0.582941,0.755217,0.824873,0.733079,0.271927,0.579205,0.556968,0.566861,0.949212,0.645824,0.856967,0.8634,0.837638,0.23499,0.60949,0.120867,0.54044,0.323003,0.219774,0.00574392,0.264571,0.553878,0.970819,0.900332,0.404282,0.748061,0.917633,0.164736,0.420555,0.21494,0.586037,0.0407031,0.472089,0.338442,0.350614,0.26907,0.388486,0.962256,0.543709,0.79104,0.905084,0.992382,0.327671,0.68927,0.393767,0.768426,0.440051,0.00317472,0.250556,0.7962,0.177984,0.269368,0.566852,0.382635,0.546033,0.931457,0.620455,0.705013,0.0124153,0.900612,0.365992,0.594155,0.899186,0.369351,0.231605,0.328268,0.989329,0.0328703,0.364818,0.153759,0.0111842,0.557551,0.743334,0.12462,0.564839,0.65764,0.287061,0.0984302,0.0421656,0.684483,0.807153,0.891447,0.840817,0.364669,0.765905,0.177548,0.0619922,0.375804,0.529752,0.979789,0.849634,0.938232,0.0530093,0.238443,0.7256,0.153604,0.0673169,0.639365,0.906287,0.809834,0.392541,0.257797,0.472295,0.975818,0.206997,0.811541,0.994676,0.0149948,0.627251,0.0349926,0.220888,0.529207,0.254836,0.116141,0.776045,0.0207475,0.695074,0.174621,0.529857,0.95542,0.31547,0.416094,0.869565,0.447794,0.113303,0.168287,0.61929,0.178825,0.295399,0.86625,0.0758185,0.358209,0.572806,0.359091,0.423284,0.943744,0.469471,0.707052,0.0715138,0.86044,0.18249,0.978248,0.773861,0.402252,0.210109,0.88188,0.509185,0.879192,0.0268,0.513613,0.203989,0.133161,0.0973681,0.20516,0.671835,0.302029,0.211102,0.94123,0.440037,0.192985,0.943843,0.47715,0.189219,0.936656,0.952117,0.662969,0.523719,0.72362,0.976812,0.867255,0.9179,0.720172,0.800284,0.368201,0.876758,0.675955,0.868563,0.607559,0.0161698,0.127243,0.992318,0.795302,0.901033,0.56587,0.0257814,0.313786,0.395783,0.476793,0.657465,0.606945,0.749741,0.530624,0.432421,0.255298,0.200543,0.225965,0.314705,0.196357,0.629276,0.900873,0.70514,0.427455,0.970446,0.293861,0.086596,0.879903,0.22679,0.989785,0.904287,0.916083,0.37043,0.413778,0.673843,0.779074,0.927591,0.082979,0.195559,0.847319,0.0595278,0.378017,0.794915,0.195805,0.372864,0.973665,0.859375,0.0785567,0.967696,0.0206316,0.811188,0.0823131,0.146818,0.911214,0.345263,0.463123,0.832839,0.819556,0.573401,0.0442374,0.777431,0.0789769,0.395997,0.683658,0.690366,0.78465,0.959746,0.45331,0.892999,0.869073,0.0283675,0.863487,0.0177655,0.607411,0.884871,0.0517423,0.73576,0.848637,0.859518,0.888165,0.186497,0.928584,0.488359,0.72949,0.896107,0.933089,0.0122538,0.905378,0.540616,0.2632,0.756015,0.963162,0.644073,0.913351,0.223695,0.757531,0.933942,0.681231,0.784845,0.795577,0.471727,0.802964,0.919886,0.40185,0.0737814,0.0887075,0.576405,0.778557,0.835314,0.0439662,0.87712,0.343824,0.251127,0.139961,0.735534,0.794741,0.0767633,0.275786,0.715405,0.711779,0.323877,0.307367,0.0290692,0.245136,0.763626,0.997143,0.380787,0.980828,0.0659723,0.452568,0.932352,0.411389,0.337354,0.0267604,0.768544,0.570489,0.574568,0.182917,0.0664085,0.632114,0.255159,0.0465327,0.163432,0.120281,0.870918,0.397669,0.213501,0.956477,0.36785,0.675698,0.814559,0.167543,0.299193,0.462145,0.389432,0.0919685,0.334847,0.702204,0.0784997,0.450604,0.681296,0.0802283,0.681445,0.421046,0.737487,0.894347,0.20251,0.141268,0.706323,0.664012,0.564497,0.872291,0.434921,0.802701,0.70526,0.553848,0.519988,0.313427,0.925101,0.165347,0.577043,0.171126,0.407495,0.0547138,0.890101,0.407087,0.658036,0.288684,0.253834,0.218079,0.860068,0.322689,0.964203,0.573504,0.688389,0.115143,0.138224,0.545872,0.370067,0.444889,0.379578,0.347693,0.720649,0.218529,0.875317,0.356989,0.428226,0.471004,0.631232,0.492071,0.753911,0.460446,0.212119,0.742534,0.331062,0.567918,0.153952,0.727603,0.908523,0.936937,0.534201,0.37011,0.670679,0.467522,0.666487,0.611872,0.880731,0.352349,0.199396,0.510187,0.0812246,0.445346,0.228895,0.325098,0.0551606,0.306307,0.341854,0.794448,0.316791,0.490252,0.528958,0.374556,0.952237,0.148226,|0.620893,0.799241,0.440629,0.995065,0.464803,0.287852,0.687215,0.986505,0.0977707,0.124046,0.948664,0.918964,0.349625,0.979888,0.0725657,0.462136,0.227392,0.208389,0.686887,0.315329,0.623219,0.184028,0.214113,0.429075,0.0367744,0.292725,0.239006,0.744058,0.585715,0.853874,0.0708786,0.157016,0.521159,0.401495,0.468349,0.525113,0.623012,0.264999,0.825811,0.968554,0.0210604,0.016353,0.54704,0.756834,0.698241,0.583892,0.809355,0.157078,0.165045,0.954724,0.0807009,0.952674,0.370924,0.480369,0.895757,0.245087,0.504266,0.861423,0.940385,0.336825,0.0486298,0.755532,0.0371612,0.286665,0.527074,0.716717,0.0376123,0.46958,0.662794,0.71699,0.394964,0.4514,0.046766,0.421718,0.240542,0.538214,0.0897835,0.140668,0.597477,0.8369,0.119075,0.833468,0.896536,0.976251,0.0656568,0.934698,0.748917,0.337579,0.436046,0.376574,0.411214,0.246587,0.220213,0.302662,0.837749,0.951781,0.133363,0.538004,0.721476,0.998331,0.66449,0.548563,0.169428,0.799761,0.07141,0.285793,0.616925,0.097916,0.806463,0.340287,0.135536,0.265395,0.625705,0.28493,0.600201,0.739913,0.895548,0.917501,0.0297518,0.585349,0.766255,0.212215,0.723506,0.121693,0.511697,0.326728,0.522755,0.650707,0.714772,0.736869,0.104539,0.347615,0.0340438,0.117258,0.556282,0.792227,0.201781,0.953154,0.0637519,0.0912671,0.0831383,0.609161,0.727699,0.138913,0.637688,0.885787,0.522371,0.547858,0.507907,0.666798,0.575668,0.800946,0.114442,0.985756,0.988271,0.147319,0.987387,0.995182,0.639973,0.238265,0.142589,0.0786545,0.233932,0.847232,0.293878,0.0295233,0.690165,0.153099,0.453567,0.746273,0.0956891,0.296814,0.023725,0.438256,0.245527,0.678508,0.99705,0.758303,0.783783,0.386878,0.296089,0.909432,0.80081,0.255476,0.633281,0.793023,0.879503,0.838259,0.509947,0.79696,0.205944,0.681271,0.472396,0.211251,0.948778,0.768846,0.529075,0.438491,0.782501,0.177249,0.217398,0.371722,0.226608,0.347103,0.952676,0.943124,0.83828,0.909827,0.78056,0.797794,0.240459,0.924306,0.346358,0.107806,0.341464,0.67958,0.198054,0.41948,0.407689,0.588477,0.669853,0.826175,0.469675,0.666699,0.515495,0.899492,0.0327274,0.39119,0.609714,0.235165,0.606161,0.0109887,0.19465,0.0908038,0.255411,0.547911,0.707718,0.00622243,0.0698639,0.184136,0.604482,0.127177,0.496639,0.869851,0.552589,0.570605,0.642425,0.470148,0.133464,0.368967,0.248539,0.593533,0.649765,0.0830921,0.00741267,0.510661,0.636389,0.0457833,0.758344,0.352214,0.272267,0.0168317,0.520944,0.362061,0.160256,0.827557,0.881274,0.884526,0.187865,0.479768,0.7721,0.237849,0.700958,0.647214,0.993259,0.32064,0.609642,0.810232,0.0777328,0.66346,0.873783,0.230375,0.879466,0.539822,0.690657,0.896063,0.815427,0.0470177,0.674897,0.0792073,0.30249,0.660347,0.932991,0.50342,0.454229,0.659087,0.782935,0.529678,0.139171,0.028485,0.633611,0.62558,0.410795,0.405355,0.494864,0.206805,0.513667,0.270018,0.585163,0.393079,0.278423,0.598487,0.51981,0.236971,0.642781,0.69786,0.00445724,0.0302072,0.537423,0.394962,0.375329,0.276458,0.370609,0.636178,0.963643,0.969185,0.697569,0.186367,0.567387,0.609119,0.654879,0.637928,0.23781,0.203331,0.810637,0.62576,0.293268,0.301364,0.719844,0.24366,0.689709,0.968194,0.869606,0.824235,0.632709,0.409888,0.588143,0.97603,0.376363,0.713008,0.0204838,0.560434,0.0561487,0.895878,0.734983,0.514188,0.950231,0.365015,0.417125,0.581662,0.838153,0.477006,0.818155,0.770474,0.728514,0.185152,0.388678,0.202703,0.159693,0.349132,0.823184,0.94244,0.199052,0.734158,0.882136,0.282426,0.347273,0.561529,0.0149053,0.132405,0.525849,0.659088,0.522652,0.465119,0.657619,0.68928,0.870681,0.117387,0.764534,0.744654,0.0852926,0.248931,0.828897,0.783372,0.606491,0.753002,0.180055,0.475775,0.179433,0.621166,0.28622,0.210013,0.0433561,0.201438,0.921709,0.629631,0.166521,0.938552,0.813384,0.578689,0.609921,0.089996,0.345879,0.993121,0.939154,0.501612,0.880879,0.295394,0.729225,0.013432,0.430086,0.319478,0.204626,0.110845,0.485669,0.115309,0.753547,0.278639,0.65111,0.650465,0.296582,0.340475,0.0953449,0.111771,0.147226,0.63509,0.421755,0.93712,0.263815,0.888054,0.150937,0.216158,0.924786,0.783387,0.670038,0.728736,0.586193,0.565934,0.152858,0.5927,0.648865,0.330286,0.569014,0.799488,0.510282,0.728965,0.894677,0.936531,0.243415,0.923571,0.525007,0.322153,0.309003,0.925226,0.309863,0.669773,0.474779,0.0400127,0.00582528,0.820124,0.00791872,0.389692,0.900773,0.861612,0.710094,0.294511,0.710605,0.628715,0.916875,0.520037,0.00835049,0.657426,0.661481,0.436039,0.570798,0.499116,0.246707,0.791235,0.626665,0.407375,0.236482,0.70473,0.32003,0.0570514,0.306508,0.86569,0.212,0.081016,0.849178,0.354752,0.816411,0.0278005,0.0711623,0.225164,0.153092,0.0369717,0.320598,0.789224,0.858922,0.807773,0.988051,0.243271,0.173694,0.0638306,0.953288,0.462071,0.669185,0.451902,0.76706,0.527555,0.876288,0.729358,0.720222,0.844045,0.104966,0.364518,0.768517,0.96848,0.681266,0.0740989,0.88751,0.173655,0.417797,0.869762,0.170097,0.0790893,0.0304681,0.462721,0.792123,0.538313,0.0098083,0.41677,0.540133,0.722733,0.973825,0.0910358,0.192478,0.679526,0.639381,0.134757,0.893215,0.196291,0.0813469,0.748112,0.796427,0.747326,0.973835,0.658837,0.125633,0.0587191,0.054992,0.494409,0.633605,0.855143,0.407652,0.673458,0.141072,0.178891,0.569827,0.767352,0.345671,0.546135,0.441517,0.728512,0.846002,0.44794,0.820813,0.544746,0.569897,0.0662684,0.258918,0.351611,0.883732,0.620001,0.23401,0.0988492,0.811836,0.986817,0.21767,0.306812,0.45852,0.918878,0.967978,0.772728,0.518944,0.440211,0.342625,0.0947877,0.438792,0.912815,0.260757,0.673133,0.817431,0.416488,0.628804,0.242955,0.802615,0.173431,0.783258,0.593403,0.222361,0.600109,0.421846,0.604846,0.133587,0.504638,0.646548,0.972489,0.814158,0.326532,0.335023,0.128622,0.864835,0.985189,0.936009,0.00520223,0.213033,0.113042,0.890535,0.71851,0.366423,0.0791281,0.484158,0.201602,0.474135,0.0762209,0.606578,0.288072,0.917601,0.354927,0.220845,0.418161,0.489774,0.752525,0.624383,0.0310989,0.117284,0.702918,0.976242,0.000816286,0.666646,0.102803,0.123281,0.598231,0.261041,0.87438,0.335996,0.403382,0.243039,0.291504,0.898965,0.639921,0.0839642,0.234771,0.378358,0.720633,0.824123,0.442557,0.9855,0.0480592,0.116912,0.781444,0.14417,0.674252,0.731884,0.880045,0.895875,0.902147,0.461824,0.13354,0.107991,0.111756,0.370016,0.10682,0.527923,0.898867,0.637396,0.64999,0.310741,0.401941,0.567506,0.249296,0.122719,0.0308908,0.939576,0.796815,0.551308,0.45943,0.741513,0.0305582,0.872534,0.0136008,0.0985327,0.851826,0.128618,0.34127,0.176069,0.480494,0.408707,0.341838,0.397864,0.690955,0.0175015,0.3678,0.884394,0.167705,0.455576,0.299929,0.993424,0.358861,0.947804,0.0450048,0.296247,0.930275,0.157948,0.601947,0.468861,0.280623,0.708933,0.816898,0.738515,0.682201,0.938028,0.768432,0.230761,0.596379,0.281727,0.994373,0.584421,0.359141,0.100296,0.806183,0.163253,0.309606,0.205514,0.407805,0.778071,0.822765,0.854635,0.741161,0.99018,0.62981,0.816714,0.907433,0.914148,0.454176,0.933453,0.304881,0.436776,0.450471,0.764762,0.488373,0.035463,0.615196,0.761403,0.21094,0.358896,0.601921,0.110304,0.353969,0.95118,0.559157,0.665009,0.714012,0.796797,0.68016,0.13721,0.631452,0.359027,0.62921,0.425469,0.717351,0.745809,0.953482,0.236405,0.632658,0.739906,0.0790745,0.123461,0.400536,0.621657,0.494735,0.883897,0.382262,0.111976,0.712909,0.53124,0.319341,0.00749826,0.239339,0.863383,0.674487,0.786566,0.668215,0.532885,0.51235,0.483573,0.87235,0.31069,0.246443,0.402973,0.233888,0.719707,0.744138,0.0176998,0.916956,0.255757,0.731899,0.404314,0.991276,0.0968313,0.913578,0.331029,0.941136,0.855504,0.0714747,0.183782,0.865866,0.76155,0.790542,0.524595,0.0342059,0.808357,0.418263,0.761976,0.260073,0.31929,0.661093,0.574517,0.447886,0.841995,0.02689,0.914664,0.547965,0.0853969,0.20212,0.933277,0.651431,0.204151,0.872142,0.036862,0.818358,0.921566,0.919955,0.494972,0.995243,0.95858,0.609258,0.99517,0.310574,0.362293,0.137077,0.840988,0.046158,0.307507,0.905328,0.904242,0.442554,0.272264,0.330387,0.640726,0.978456,0.0723186,0.0444147,0.237061,0.428978,0.253089,0.70559,0.801017,0.827226,0.461144,0.180015,0.365301,0.502235,0.438748,0.89846,0.470859,0.252556,0.931066,0.742981,0.821395,0.17355,0.957027,0.236931,0.436125,0.514632,0.773493,0.74087,0.943117,0.0466239,0.31419,0.690174,0.113872,0.58342,0.40053,0.572915,0.409498,0.877631,0.097872,0.500772,0.620293,0.737099,0.0782323,0.134731,0.137768,0.880065,0.513562,0.579211,0.366461,0.532603,0.797292,0.696269,0.748553,0.262516,0.999465,0.0823386,0.757485,0.234976,0.11307,0.193031,0.00965106,0.725925,0.860387,0.112333,0.397717,0.874471,0.736077,0.714047,0.327792,0.233825,0.905988,0.247254,0.672311,0.491106,0.486423,0.896902,0.238763,0.868446,0.904732,0.0249277,0.871919,0.677061,0.372962,0.0104603,0.918412,0.885172,0.914123,0.566351,0.758594,0.519407,0.301642,7.82013e-05,0.929984,0.970168,0.980587,0.917728,0.864118,0.860318,0.22165,0.853103,0.18436,0.188961,0.0463172,0.995923,0.615299,0.467249,0.495403,0.538204,0.208004,0.00602162,0.815191,0.791119,0.942415,0.836071,0.805252,0.0592462,0.219377,0.770441,0.935304,0.931216,0.993729,0.868155,0.402578,0.145249,0.587335,0.909062,0.51489,0.78849,0.293766,0.968285,|0.932904,0.463943,0.776037,0.583407,0.248412,0.864824,0.630167,0.0750737,0.588984,0.176054,0.175399,0.925896,0.985793,0.977134,0.627783,0.966969,0.671426,0.882147,0.627117,0.419883,0.477395,0.3856,0.0915534,0.955889,0.77011,0.636293,0.226033,0.776035,0.258898,0.827397,0.439422,0.762119,0.150868,0.790013,0.752948,0.448513,0.429772,0.111346,0.547559,0.855967,0.719459,0.27971,0.313827,0.830363,0.0942746,0.79115,0.230043,0.026449,0.533512,0.547718,0.128237,0.439489,0.376292,0.149082,0.369047,0.0219983,0.526642,0.210889,0.409719,0.548657,0.567425,0.191348,0.65156,0.794427,0.0647527,0.643352,0.857763,0.820591,0.694594,0.947489,0.963416,0.615213,0.12432,0.8458,0.454781,0.953528,0.366063,0.738084,0.48668,0.714514,0.94395,0.512854,0.760412,0.554051,0.311392,0.690485,0.311462,0.221614,0.874732,0.955053,0.627351,0.672752,0.886621,0.754091,0.488695,0.185535,0.957876,0.0353062,0.885322,0.626657,0.328145,0.51566,0.199409,0.474123,0.541373,0.141752,0.109371,0.329616,0.671189,0.290907,0.356493,0.275795,0.0195852,0.675542,0.100822,0.344272,0.704956,0.694394,0.327564,0.515888,0.924159,0.594406,0.260171,0.244878,0.200786,0.569676,0.321642,0.844132,0.508146,0.394587,0.584788,0.634696,0.979067,0.864678,0.358865,0.308172,0.949512,0.623714,0.724501,0.885181,0.506325,0.420244,0.23459,0.127215,0.0531513,0.435037,0.360425,0.116862,0.48483,0.445786,0.100578,0.560841,0.177104,0.7952,0.578934,0.241907,0.910166,0.363383,0.661936,0.756026,0.459423,0.901663,0.443599,0.398674,0.491847,0.222743,0.218417,0.81759,0.194255,0.957615,0.104734,0.31635,0.485374,0.304854,0.567107,0.219897,0.721473,0.0853796,0.339635,0.253431,0.000133336,0.216682,0.610471,0.536533,0.993707,0.512768,0.72844,0.486469,0.238177,0.81225,0.381897,0.576387,0.00206304,0.53945,0.0717135,0.106428,0.435548,0.730359,0.847506,0.0116459,0.647676,0.587008,0.895721,0.794793,0.349291,0.352711,0.505102,0.515946,0.96997,0.45921,0.37369,0.12148,0.670469,0.393421,0.315464,0.751496,0.484549,0.162278,0.176802,0.360497,0.16124,0.411999,0.377554,0.228295,0.145417,0.621299,0.69275,0.841398,0.300674,0.601909,0.791028,0.760202,0.263702,0.664653,0.726808,0.763854,0.782687,0.376694,0.4175,0.797919,0.052667,0.46606,0.38209,0.639909,0.200109,0.154215,0.411571,0.185073,0.41781,0.869731,0.341653,0.68521,0.724535,0.920953,0.00314993,0.29597,0.748122,0.43167,0.872819,0.933227,0.417992,0.605088,0.560436,0.546301,0.882454,0.585199,0.232614,0.803037,0.678295,0.987975,0.538354,0.125407,0.643026,0.000367284,0.152663,0.970886,0.197693,0.539017,0.49912,0.478469,0.878777,0.324314,0.0146534,0.30712,0.076834,0.227746,0.0339516,0.839024,0.221331,0.935026,0.502137,0.780693,0.702894,0.716017,0.753971,0.720032,0.356268,0.77428,0.201824,0.571952,0.905724,0.0190687,0.170023,0.744959,0.603138,0.4256,0.497176,0.0607801,0.708619,0.689256,0.272837,0.0639777,0.616204,0.786447,0.606191,0.49495,0.60038,0.798427,0.177511,0.754252,0.628767,0.966425,0.412966,0.745753,0.989085,0.00384849,0.654331,0.149972,0.688557,0.853383,0.231352,0.623388,0.888143,0.00598705,0.968741,0.780364,0.392894,0.261247,0.0532384,0.661922,0.571093,0.625429,0.472115,0.164538,0.532755,0.272179,0.0321155,0.0147046,0.163553,0.58851,0.996993,0.493922,0.16729,0.395939,0.119546,0.0897459,0.39961,0.650817,0.693552,0.135587,0.046959,0.815439,0.156795,0.902647,0.736262,0.196313,0.621197,0.958458,0.926761,0.453188,0.475456,0.221694,0.99161,0.349076,0.628868,0.0115559,0.186989,0.755046,0.264555,0.766375,0.327804,0.226597,0.447659,0.708035,0.158469,0.599397,0.354251,0.585652,0.872297,0.539761,0.86876,0.9696,0.282729,0.459513,0.473113,0.192692,0.617095,0.583076,0.433004,0.602479,0.198613,0.875105,0.85433,0.524204,0.321249,0.707977,0.104372,0.356291,0.221321,0.0859194,0.735025,0.209704,0.807706,0.764006,0.174237,0.724058,0.657454,0.022131,0.654923,0.0667119,0.757465,0.168243,0.0900978,0.952627,0.337226,0.557345,0.2452,0.170481,0.451351,0.0839137,0.268467,0.6285,0.268801,0.978996,0.190587,0.964514,0.794884,0.485737,0.683873,0.10515,0.42991,0.579036,0.694912,0.416036,0.390041,0.568875,0.914462,0.403661,0.53536,0.0461697,0.709858,0.120083,0.644646,0.0504909,0.464142,0.671541,0.364174,0.0691125,0.732356,0.0722924,0.618729,0.146639,0.33123,0.898711,0.127788,0.953354,0.9761,0.868007,0.575427,0.0156629,0.160609,0.111936,0.0189911,0.821593,0.490714,0.0438268,0.083512,0.512636,0.13374,0.535621,0.180299,0.800534,0.0362123,0.535083,0.961183,0.0351194,0.330021,0.40665,0.148318,0.918101,0.0812854,0.117169,0.87763,0.347885,0.272881,0.284136,0.790247,0.409358,0.114747,0.59334,0.0196998,0.163746,0.635176,0.0453079,0.369534,0.642555,0.972377,0.249271,0.00805068,0.978803,0.496182,0.997559,0.423791,0.126445,0.658574,0.210727,0.140444,0.180475,0.242524,0.50146,0.847979,0.53553,0.742303,0.0980526,0.462208,0.790927,0.441409,0.515046,0.441453,0.0782163,0.26419,0.561075,0.194735,0.842068,0.818034,0.12992,0.597084,0.188127,0.688442,0.682178,0.738123,0.953337,0.842402,0.264606,0.281654,0.820937,0.530044,0.312376,0.301763,0.172852,0.241292,0.735322,0.0443475,0.466926,0.853163,0.86444,0.678758,0.564281,0.82091,0.714449,0.700495,0.941254,0.993216,0.307612,0.692974,0.968705,0.989346,0.274569,0.699489,0.124776,0.0310465,0.585274,0.292869,0.379758,0.171127,0.292926,0.0293754,0.208218,0.711539,0.391318,0.745286,0.838499,0.512043,0.522794,0.98552,0.0435134,0.900158,0.267869,0.946519,0.700803,0.598286,0.692543,0.839942,0.0559445,0.365171,0.490381,0.21892,0.907594,0.475393,0.18162,0.88503,0.634361,0.849765,0.809282,0.440813,0.517431,0.236571,0.49345,0.749504,0.972331,0.970887,0.610518,0.538443,0.408534,0.521042,0.33139,0.658789,0.335111,0.161487,0.326258,0.73495,0.165299,0.876152,0.820535,0.433731,0.325041,0.614986,0.62127,0.535377,0.536414,0.476716,0.685844,0.279877,0.0257925,0.0578318,0.866421,0.890275,0.319627,0.346962,0.457998,0.35177,0.470815,0.289616,0.25134,0.859377,0.578659,0.420425,0.493295,0.483021,0.556372,0.20246,0.86731,0.299973,0.353041,0.798491,0.983684,0.0898555,0.256175,0.977571,0.905537,0.390222,0.877586,0.559996,0.65631,0.0148311,0.0280908,0.0231183,0.316671,0.596791,0.780566,0.38019,0.720976,0.925513,0.298909,0.829338,0.633752,0.65488,0.94187,0.832928,0.575398,0.462923,0.140315,0.615526,0.745992,0.125925,0.466986,0.466757,0.800842,0.662522,0.618299,0.542823,0.74168,0.0505199,0.441918,0.429164,0.322636,0.244883,0.389677,0.733436,0.194997,0.630944,0.0775059,0.782672,0.112488,0.208793,0.276614,0.066473,0.712524,0.434764,0.99992,0.872906,0.80758,0.829801,0.750879,0.0848185,0.00514036,0.507464,0.477509,0.215419,0.914542,0.0205713,0.245176,0.843794,0.278977,0.368526,0.899901,0.702761,0.324922,0.199567,0.103239,0.162374,0.00134939,0.661926,0.93882,0.608332,0.114578,0.978276,0.112101,0.218435,0.70261,0.133606,0.504679,0.345035,0.381569,0.982911,0.454807,0.575653,0.135438,0.52004,0.868739,0.106974,0.112215,0.994795,0.556039,0.950077,0.713028,0.928932,0.593638,0.99993,0.463055,0.697667,0.151338,0.807368,0.903739,0.0811113,0.0885518,0.969793,0.140778,0.371607,0.0914488,0.954096,0.294584,0.99384,0.778402,0.405477,0.677516,0.847221,0.48402,0.56776,0.970963,0.167219,0.579964,0.707897,0.779005,0.0779087,0.578694,0.460616,0.148029,0.417687,0.237012,0.998159,0.0176901,0.0634713,0.792887,0.332611,0.715767,0.34563,0.402723,0.546571,0.148554,0.49433,0.180902,0.796697,0.0523539,0.00205326,0.965809,0.880524,0.323524,0.0555819,0.979641,0.302558,0.681849,0.540233,0.300144,0.905927,0.895383,0.464855,0.645664,0.925929,0.100496,0.692539,0.00669712,0.1973,0.263245,0.50025,0.873109,0.392218,0.244342,0.338131,0.145913,0.743947,0.634674,0.57024,0.403225,0.794946,0.658778,0.576349,0.851132,0.419032,0.270979,0.076317,0.599946,0.717028,0.46534,0.465465,0.206962,0.567322,0.497881,0.579082,0.677844,0.347578,0.00417042,0.99156,0.28677,0.842262,0.940776,0.688497,0.803956,0.962706,0.896269,0.603986,0.437979,0.147868,0.177944,0.396578,0.0463318,0.639218,0.630308,0.981314,0.673852,0.462805,0.490588,0.201389,0.190974,0.391986,0.819002,0.105409,0.416432,0.11393,0.0576812,0.540568,0.231685,0.498561,0.437994,0.334587,0.413802,0.720724,0.671249,0.48106,0.843602,0.718342,0.183594,0.403038,0.638001,0.766395,0.905489,0.0452149,0.0238386,0.0747052,0.156829,0.219812,0.334602,0.618047,0.989793,0.613551,0.859353,0.181842,0.847161,0.230522,0.675819,0.548529,0.162332,0.00539988,0.0055989,0.841609,0.194166,0.705877,0.922227,0.590687,0.119355,0.799047,0.665657,0.531099,0.331412,0.353072,0.327914,0.25074,0.166113,0.573909,0.15411,0.950929,0.928272,0.565436,0.583875,0.0991534,0.579346,0.460389,0.665697,0.91921,0.0915747,0.899095,0.785172,0.876856,0.0586303,0.0497317,0.119628,0.642267,0.0358968,0.765975,0.601275,0.455644,0.194198,0.738616,0.123254,0.0173336,0.849857,0.915642,0.225108,0.145581,0.650335,0.220665,0.863843,0.459475,0.405453,0.203691,0.432182,0.990759,0.4596,0.674815,0.539546,0.143268,0.0908509,0.571481,0.727522,0.225944,0.616586,0.8538,0.0283282,0.945154,0.802928,0.304172,0.389809,0.889528,0.74413,0.772638,0.504765,0.191469,0.0803924,0.292509,0.87918,0.727786,0.589426,0.341025,0.209278,0.411188,0.298838,0.458805,0.860187,0.815875,0.932615,|0.531435,0.598467,0.236834,0.340734,0.665509,0.331619,0.208849,0.542947,0.296838,0.0217937,0.052211,0.462327,0.571741,0.227655,0.946711,0.0708583,0.224666,0.0480018,0.817981,0.241859,0.0072999,0.125186,0.471356,0.17553,0.763601,0.907362,0.0024808,0.0945409,0.906573,0.120674,0.545584,0.0892992,0.27876,0.210045,0.581789,0.227303,0.682841,0.646995,0.0788324,0.194239,0.249966,0.1943,0.0743746,0.311263,0.093799,0.795249,0.62346,0.714075,0.563834,0.994175,0.739766,0.219141,0.758114,0.396678,0.209013,0.000317216,0.966628,0.223458,0.552277,0.389085,0.186694,0.42307,0.946817,0.20385,0.398099,0.609981,0.0888625,0.0979292,0.0665362,0.971911,0.00676757,0.544296,0.204568,0.0675237,0.783793,0.302498,0.103139,0.133579,0.477488,0.0595841,0.598407,0.89282,0.0512536,0.868998,0.922269,0.145602,0.344217,0.633389,0.817978,0.464134,0.866363,0.81978,0.770967,0.784947,0.16922,0.951127,0.980468,0.589493,0.50927,0.656146,0.871981,0.989232,0.374625,0.498028,0.379248,0.532645,0.738591,0.255897,0.631867,0.233327,0.955651,0.470962,0.868245,0.791773,0.552306,0.72044,0.609707,0.729422,0.112657,0.19104,0.824434,0.842863,0.077161,0.55691,0.536274,0.507939,0.362719,0.934603,0.59506,0.410742,0.552527,0.461441,0.746586,0.604649,0.168103,0.983293,0.113547,0.753426,0.736177,0.42521,0.660637,0.399111,0.386998,0.30235,0.38708,0.526479,0.143752,0.0792297,0.783876,0.856026,0.251309,0.653908,0.925267,0.0418419,0.54459,0.806091,0.34074,0.0199605,0.0133214,0.757467,0.0146345,0.364106,0.926503,0.0483683,0.750324,0.381584,0.21055,0.268899,0.453468,0.958895,0.144121,0.572924,0.767787,0.743792,0.632395,0.310821,0.613717,0.517492,0.826765,0.890886,0.809802,0.376005,0.0688655,0.447612,0.97762,0.593596,0.27745,0.545497,0.98779,0.088167,0.404081,0.0685286,0.404153,0.285746,0.378818,0.421148,0.735873,0.418773,0.870105,0.607878,0.442944,0.505327,0.797922,0.806395,0.0335208,0.252965,0.728957,0.0358426,0.602692,0.0785914,0.316669,0.505132,0.0645045,0.346757,0.250259,0.235489,0.657516,0.114577,0.430764,0.340111,0.148149,0.26913,0.589412,0.872192,0.0764126,0.800679,0.359739,0.456084,0.476663,0.0987608,0.196317,0.810877,0.965852,0.535547,0.341834,0.92806,0.214169,0.670206,0.890496,0.519677,0.506717,0.306427,0.683264,0.743464,0.20727,0.566381,0.962506,0.328855,0.698843,0.884843,0.877374,0.246079,0.388232,0.623255,0.0207393,0.22078,0.358505,0.639409,0.603791,0.557719,0.109673,0.169502,0.391063,0.485784,0.0782519,0.225035,0.0447148,0.309132,0.362835,0.457756,0.72192,0.334894,0.444579,0.627474,0.319691,0.709543,0.482799,0.486708,0.808187,0.87649,0.254301,0.906763,0.0889912,0.221384,0.415016,0.181261,0.441849,0.519945,0.609888,0.102313,0.680504,0.113393,0.524018,0.25746,0.679209,0.296122,0.140697,0.979411,0.737075,0.0634199,0.806459,0.651423,0.476318,0.71048,0.250131,0.729301,0.84439,0.467892,0.226615,0.080504,0.495253,0.339677,0.559347,0.291924,0.245957,0.551601,0.567839,0.636663,0.366737,0.823928,0.656463,0.283179,0.51208,0.805861,0.185923,0.504172,0.711803,0.667519,0.447369,0.715714,0.864833,0.939118,0.104638,0.0152955,0.862795,0.397473,0.70706,0.265351,0.456047,0.592719,0.247922,0.0804511,0.187903,0.695553,0.338536,0.879921,0.985677,0.375353,0.277536,0.130547,0.175017,0.0687043,0.308841,0.5351,0.901208,0.544387,0.973845,0.74793,0.748148,0.127209,0.281391,0.0710287,0.475283,0.0282254,0.382289,0.956219,0.293344,0.570575,0.672156,0.513046,0.326071,0.992976,0.924488,0.741713,0.409859,0.25597,0.913875,0.53526,0.499527,0.651569,0.350686,0.781963,0.621879,0.145224,0.0336921,0.980697,0.842358,0.162311,0.0306535,0.990316,0.281595,0.376469,0.829027,0.749073,0.315612,0.91963,0.935643,0.769571,0.989893,0.690211,0.786584,0.112531,0.372161,0.00859487,0.243157,0.14699,0.947445,0.363937,0.452519,0.579215,0.694824,0.801671,0.890265,0.172011,0.839014,0.583072,0.0848071,0.430426,0.505236,0.134356,0.96255,0.812172,0.679941,0.464011,0.506254,0.267217,0.329366,0.458127,0.440728,0.107891,0.233198,0.596262,0.924246,0.363935,0.404622,0.0379156,0.538937,0.224961,0.863406,0.090799,0.0492923,0.750415,0.0934508,0.284398,0.287313,0.36276,0.0954489,0.66226,0.0721595,0.7526,0.034265,0.746257,0.186157,0.187697,0.870641,0.677709,0.658776,0.822304,0.143087,0.496521,0.446912,0.677451,0.0888996,0.675509,0.84468,0.108506,0.0316793,0.421629,0.11863,0.570907,0.97593,0.843203,0.704087,0.688366,0.765004,0.397322,0.555698,0.19581,0.882383,0.976167,0.47352,0.114825,0.424653,0.332652,0.645226,0.0805833,0.0237359,0.325147,0.520878,0.121046,0.457037,0.63517,0.431682,0.134972,0.232191,0.38658,0.270442,0.842798,0.622888,0.864037,0.0191934,0.369716,0.164151,0.284846,0.528339,0.719616,0.196021,0.949742,0.293864,0.6223,0.598291,0.246737,0.0773754,0.517951,0.925164,0.874969,0.27753,0.486989,0.116778,0.366715,0.15051,0.755197,0.676212,0.890939,0.447197,0.868761,0.43912,0.665535,0.627694,0.547061,0.302365,0.360132,0.48946,0.32181,0.357765,0.219053,0.226203,0.143721,0.529294,0.635187,0.568353,0.60819,0.26893,0.492195,0.242645,0.219405,0.617673,0.872349,0.765637,0.613089,0.0265943,0.810946,0.626918,0.719675,0.220996,0.102684,0.179393,0.509889,0.189879,0.268963,0.444671,0.146445,0.941005,0.631458,0.622243,0.6933,0.931035,0.765024,0.333703,0.937666,0.139696,0.630348,0.159522,0.398336,0.619531,0.57362,0.782397,0.280235,0.463025,0.0681241,0.686735,0.908775,0.138522,0.930829,0.403238,0.63001,0.188938,0.57409,0.0749424,0.273374,0.68894,0.67052,0.959723,0.0969173,0.832466,0.638736,0.44433,0.199305,0.812185,0.966608,0.125683,0.635307,0.923145,0.875303,0.528143,0.399374,0.314682,0.0338204,0.659263,0.355485,0.421962,0.950244,0.54718,0.905254,0.264039,0.584317,0.700168,0.677855,0.476271,0.532297,0.599607,0.517275,0.813782,0.552225,0.363407,0.373823,0.369531,0.0212219,0.894439,0.352826,0.331844,0.377856,0.399035,0.376562,0.438642,0.450872,0.489752,0.813234,0.868188,0.395339,0.423189,0.250776,0.383704,0.190769,0.455491,0.611383,0.694996,0.343493,0.897627,0.0992257,0.589375,0.364461,0.673024,0.871112,0.848535,0.386459,0.218802,0.927972,0.549541,0.366928,0.389259,0.860497,0.78456,0.858459,0.432722,0.215697,0.147793,0.0677851,0.754102,0.924712,0.904341,0.82022,0.553301,0.0835686,0.807866,0.692992,0.202031,0.927141,0.301587,0.343875,0.338679,0.12663,0.814126,0.150042,0.349,0.785578,0.76494,0.448336,0.454753,0.314559,0.821426,0.966618,0.316117,0.0384465,0.557302,0.299217,0.706144,0.659612,0.653248,0.561854,0.766905,0.641011,0.241105,0.946904,0.598245,0.134292,0.804689,0.160571,0.579293,0.80173,0.222116,0.87706,0.240914,0.203526,0.77484,0.0356485,0.521902,0.0863311,0.0852956,0.533264,0.885382,0.768904,0.911672,0.214327,0.95187,0.724988,0.972114,0.161788,0.92094,0.400954,0.794404,0.626065,0.179903,0.577436,0.100243,0.336509,0.45303,0.12977,0.260645,0.935824,0.781854,0.719658,0.0952415,0.732563,0.197259,0.400945,0.756548,0.11839,0.853398,0.703695,0.675044,0.168027,0.0669079,0.161693,0.955599,0.189601,0.224433,0.315324,0.974832,0.512311,0.47112,0.591749,0.424975,0.944166,0.493186,0.167329,0.177563,0.656556,0.108162,0.187172,0.639675,0.393632,0.0245965,0.617131,0.102153,0.595875,0.621196,0.916847,0.0252891,0.663464,0.957923,0.129201,0.692336,0.276812,0.342966,0.321163,0.804598,0.783958,0.554104,0.711242,0.795451,0.678161,0.505225,0.129136,0.121479,0.123415,0.612952,0.51875,0.893486,0.588029,0.479316,0.535018,0.975182,0.0618951,0.51881,0.263796,0.464486,0.964689,0.282012,0.171983,0.00154984,0.453154,0.734432,0.010735,0.9227,0.208232,0.488648,0.357293,0.676967,0.259232,0.757066,0.0436746,0.860137,0.666233,0.142441,0.12489,0.224493,0.00102443,0.786883,0.597896,0.979796,0.0616335,0.486935,0.459358,0.729853,0.918037,0.12953,0.00660634,0.859235,0.923406,0.188135,0.689894,0.437685,0.0814356,0.106008,0.155188,0.106971,0.965502,0.859832,0.256695,0.856248,0.919744,0.191852,0.627896,0.474012,0.955225,0.235313,0.203492,0.0792444,0.474717,0.619065,0.0388864,0.0113501,0.139992,0.629878,0.623626,0.969148,0.263621,0.558987,0.789801,0.677284,0.456224,0.542609,0.547817,0.346463,0.555091,0.0895765,0.920732,0.0575399,0.235137,0.511249,0.232717,0.112313,0.541982,0.421846,0.0321314,0.292597,0.794083,0.827666,0.451444,0.0577171,0.930784,0.281094,0.544832,0.186421,0.36818,0.228216,0.0117314,0.478871,0.106444,0.590591,0.854507,0.895862,0.689414,0.00458038,0.886658,0.581506,0.0436193,0.0938143,0.990456,0.484901,0.146192,0.0855346,0.906937,0.74541,0.493687,0.555029,0.285315,0.967246,0.035781,0.208808,0.570448,0.428243,0.447388,0.565677,0.878778,0.296261,0.0599092,0.948527,0.239819,0.45277,0.857194,0.613017,0.0838709,0.217777,0.219565,0.45224,0.189432,0.0889472,0.340099,0.392619,0.22863,0.640494,0.946888,0.493903,0.720166,0.175821,0.437943,0.837151,0.70637,0.604895,0.849278,0.249581,0.0569348,0.0830534,0.348763,0.894575,0.551351,0.105349,0.0519451,0.531198,0.745045,0.420726,0.259396,0.735545,0.229503,0.775104,0.616534,0.502587,0.147528,0.175119,0.553625,0.353793,0.186829,0.805042,0.219315,0.341606,0.0455874,0.453592,0.982706,0.961931,0.124275,0.457228,0.161466,0.255507,0.0881301,0.208083,0.807433,0.356323,0.763462,0.112666,0.228174,0.92246,0.310125,0.647111,0.478355,0.0267293,0.607757,0.59817,0.309327,|0.222391,0.171108,0.507076,0.716153,0.875125,0.551715,0.591222,0.323444,0.165223,0.673314,0.0742936,0.182751,0.941556,0.407988,0.860667,0.161066,0.283167,0.165873,0.773206,0.00251967,0.332517,0.456502,0.818202,0.513077,0.137125,0.149878,0.934436,0.156807,0.407951,0.949501,0.0065183,0.396567,0.947881,0.985763,0.267214,0.263122,0.0134516,0.482526,0.757338,0.828007,0.209724,0.0818538,0.467062,0.61607,0.669336,0.919918,0.26586,0.881107,0.510829,0.591807,0.157771,0.522581,0.47673,0.46718,0.710823,0.446615,0.501442,0.637657,0.976966,0.22594,0.958295,0.786691,0.837009,0.671807,0.368405,0.837464,0.670732,0.592527,0.315883,0.57079,0.615135,0.395891,0.119098,0.403387,0.935234,0.532925,0.482731,0.753339,0.649697,0.202019,0.662011,0.127321,0.377564,0.791234,0.156761,0.834797,0.117629,0.532852,0.956723,0.0972292,0.981297,0.188142,0.744142,0.0836477,0.610384,0.386162,0.553014,0.228837,0.941043,0.954645,0.624839,0.559576,0.65446,0.109134,0.667984,0.0218789,0.695279,0.859812,0.28048,0.970489,0.392712,0.120443,0.666904,0.630131,0.228892,0.271831,0.907595,0.65648,0.469759,0.508341,0.017237,0.0761617,0.544035,0.859925,0.319012,0.584734,0.20702,0.921778,0.889841,0.529478,0.31161,0.641616,0.504529,0.338625,0.74714,0.205977,0.998689,0.30068,0.873331,0.521051,0.207003,0.360148,0.385097,0.867041,0.578996,0.233083,0.711149,0.0456421,0.802174,0.164105,0.833403,0.554166,0.197823,0.513994,0.266336,0.665146,0.753825,0.833071,0.545926,0.237702,0.628498,0.443272,0.422121,0.83428,0.113711,0.231276,0.109724,0.330071,0.268485,0.263275,0.447281,0.627024,0.0532399,0.239644,0.781847,0.146137,0.320268,0.856144,0.446244,0.830383,0.657788,0.693344,0.520986,0.290954,0.195027,0.596802,0.185891,0.17688,0.704237,0.465214,0.987245,0.440678,0.357233,0.957643,0.333475,0.741378,0.670123,0.103491,0.7123,0.784237,0.657255,0.22657,0.35736,0.703754,0.824132,0.719287,0.484384,0.851016,0.797997,0.377124,0.836983,0.012927,0.334051,0.365885,0.0082469,0.0802674,0.826824,0.271533,0.563229,0.419801,0.458907,0.00247687,0.82156,0.361745,0.144344,0.518405,0.945278,0.158818,0.791947,0.684215,0.604866,0.103859,0.478864,0.512911,0.462349,0.949614,0.748403,0.942407,0.997438,0.0675716,0.0737818,0.519831,0.13876,0.878152,0.431735,0.239725,0.90292,0.207291,0.0498466,0.851638,0.34321,0.410901,0.487541,0.535896,0.702367,0.956773,0.778079,0.385245,0.569758,0.272477,0.78705,0.711868,0.00855953,0.0453951,0.121669,0.769607,0.195982,0.0675927,0.285523,0.340028,0.0281095,0.0770792,0.696931,0.996933,0.470926,0.44668,0.429712,0.776841,0.693441,0.0549173,0.382672,0.765142,0.00220084,0.23475,0.0504541,0.60664,0.72632,0.375234,0.80332,0.824213,0.807397,0.704635,0.230034,0.122335,0.041795,0.696723,0.601695,0.600389,0.687148,0.878315,0.143248,0.410797,0.697964,0.619335,0.720349,0.338812,0.687293,0.613186,0.153011,0.670758,0.557189,0.078631,0.729013,0.776302,0.623699,0.848021,0.606094,0.892253,0.647038,0.145279,0.796689,0.687427,0.442183,0.663239,0.600237,0.579624,0.422616,0.980412,0.801954,0.533946,0.677258,0.535583,0.323768,0.124944,0.978703,0.987935,0.952881,0.873833,0.925411,0.728003,0.218017,0.584874,0.98813,0.528902,0.270956,0.927171,0.384577,0.292161,0.387592,0.0554796,0.487836,0.281436,0.867778,0.0643929,0.792309,0.765194,0.454181,0.457788,0.215573,0.763926,0.559453,0.538077,0.66952,0.236269,0.744594,0.744343,0.222834,0.056711,0.399244,0.851707,0.605964,0.78893,0.24623,0.303062,0.365575,0.761491,0.118996,0.136809,0.275511,0.964047,0.804539,0.0273052,0.153662,0.378033,0.989114,0.0610254,0.664752,0.711558,0.131368,0.568024,0.34887,0.60412,0.0824025,0.579239,0.989384,0.445437,0.233354,0.833951,0.95911,0.925786,0.568482,0.857404,0.0376152,0.311937,0.541674,0.425572,0.0181856,0.491186,0.0101081,0.635201,0.048017,0.192755,0.0593265,0.230527,0.78926,0.829688,0.123533,0.46977,0.845459,0.693511,0.384781,0.727922,0.833438,0.128181,0.57205,0.0531706,0.41713,0.611099,0.171815,0.649002,0.573645,0.781157,0.54872,0.319784,0.194287,0.850788,0.0257899,0.767661,0.325145,0.316393,0.612971,0.0667056,0.604109,0.714601,0.16807,0.013932,0.166064,0.84655,0.275677,0.673182,0.709163,0.617315,0.343614,0.186014,0.718805,0.640427,0.183523,0.418183,0.217171,0.443091,0.0988116,0.775568,0.0197392,0.780267,0.415163,0.800023,0.00689125,0.225585,0.255441,0.691434,0.38042,0.807165,0.904325,0.40261,0.841605,0.733346,0.242358,0.385838,0.0564241,0.182025,0.810438,0.602737,0.855856,0.466293,0.93922,0.785748,0.464923,0.411106,0.757016,0.194234,0.923431,0.372079,0.592243,0.117953,0.402861,0.625711,0.629336,0.706055,0.99569,0.678775,0.322382,0.712064,0.971891,0.849676,0.644161,0.235328,0.31354,0.681338,0.465,0.671517,0.764296,0.588212,0.581992,0.335028,0.168463,0.574537,0.195446,0.316635,0.285411,0.339902,0.330036,0.804325,0.499588,0.431092,0.780607,0.638026,0.851193,0.216898,0.741218,0.0576575,0.78749,0.745177,0.870664,0.865618,0.895645,0.177612,0.313823,0.190437,0.150018,0.290033,0.553473,0.600403,0.76128,0.59106,0.203965,0.771653,0.371048,0.0693558,0.365672,0.0894054,0.195613,0.115372,0.909995,0.478302,0.97761,0.459569,0.0487749,0.882948,0.543508,0.22979,0.712697,0.479203,0.30691,0.884221,0.942331,0.113582,0.664316,0.940599,0.037286,0.805442,0.32367,0.612514,0.0335361,0.114824,0.709884,0.452884,0.854658,0.102455,0.299516,0.522612,0.526184,0.643183,0.596064,0.418125,0.734799,0.938679,0.86604,0.024235,0.449729,0.363757,0.861651,0.0874783,0.977519,0.591049,0.540545,0.332006,0.159613,0.954552,0.831452,0.258467,0.234812,0.794732,0.688918,0.306915,0.12299,0.155723,0.634033,0.733346,0.380129,0.60906,0.657704,0.5189,0.317918,0.484716,0.581181,0.0853237,0.230654,0.237888,0.583494,0.429445,0.168093,0.620267,0.493919,0.974165,0.654822,0.375537,0.475373,0.320161,0.186859,0.63505,0.103231,0.455541,0.889042,0.970863,0.183619,0.930066,0.752371,0.364311,0.948764,0.777455,0.390727,0.653117,0.360019,0.142086,0.442447,0.139628,0.777175,0.722461,0.77208,0.35875,0.209602,0.469758,0.644575,0.213412,0.305076,0.367954,0.344147,0.36262,0.663315,0.226437,0.236191,0.537468,0.113742,0.75856,0.114384,0.155917,0.472022,0.234309,0.555247,0.0891974,0.853004,0.504772,0.738045,0.189846,0.534576,0.455405,0.0704678,0.27645,0.0348852,0.580549,0.611827,0.668832,0.402622,0.43053,0.905682,0.0623142,0.0612644,0.260277,0.0384592,0.375285,0.830462,0.473144,0.443114,0.0101333,0.37491,0.482246,0.118812,0.752252,0.984601,0.149541,0.702469,0.413104,0.803162,0.634386,0.752473,0.338486,0.729178,0.607114,0.0992111,0.359596,0.583459,0.730285,0.0604109,0.813077,0.0193529,0.0502691,0.41959,0.486724,0.0946568,0.228769,0.174975,0.47115,0.868706,0.972859,0.249129,0.798518,0.809202,0.235238,0.886474,0.398224,0.891641,0.533306,0.477684,0.0686369,0.060519,0.435141,0.425759,0.607743,0.945186,0.256171,0.189347,0.411646,0.281321,0.16067,0.0981932,0.514911,0.0518739,0.610884,0.67999,0.656629,0.897918,0.575427,0.744807,0.617884,0.645696,0.232542,0.601236,0.874691,0.169829,0.0949851,0.896848,0.207513,0.968039,0.661612,0.090844,0.252539,0.328496,0.185565,0.0294213,0.250739,0.723231,0.804149,0.962477,0.0397186,0.884276,0.387327,0.0115363,0.616014,0.720997,0.605052,0.792131,0.210295,0.489887,0.737384,0.80301,0.36254,0.602932,0.0846842,0.506514,0.123777,0.16614,0.728765,0.281949,0.704602,0.114157,0.864617,0.979593,0.426104,0.586527,0.0840338,0.457729,0.966684,0.457462,0.789276,0.00674921,0.450781,0.738634,0.707713,0.419962,0.734693,0.494273,0.916414,0.68879,0.632126,0.447208,0.957325,0.0636141,0.254688,0.446714,0.378982,0.469516,0.728389,0.83752,0.951634,0.0646878,0.24813,0.180622,0.963707,0.283079,0.0484961,0.56782,0.378001,0.319809,0.292239,0.424993,0.363542,0.977914,0.677728,0.901638,0.382801,0.084306,0.176127,0.591712,0.896619,0.341196,0.525207,0.934221,0.462355,0.29265,0.194474,0.341015,0.165378,0.0377048,0.863365,0.640523,0.920781,0.286002,0.194403,0.947397,0.314436,0.85662,0.635018,0.527959,0.625253,0.382921,0.00782663,0.667232,0.714537,0.554462,0.0587059,0.473698,0.438998,0.12321,0.170161,0.0374286,0.832277,0.5211,0.735903,0.259286,0.120193,0.9343,0.0765669,0.0423421,0.321311,0.956137,0.562824,0.0559371,0.219283,0.173083,0.372219,0.482516,0.692094,0.574153,0.0857422,0.493263,0.842219,0.579103,0.672294,0.494463,0.650158,0.467931,0.734967,0.21957,0.835027,0.0783298,0.147757,0.625526,0.5487,0.97922,0.209431,0.609366,0.902526,0.167056,0.88642,0.0222358,0.778543,0.162257,0.706659,0.578444,0.767836,0.64451,0.839431,0.924836,0.307932,0.100538,0.550961,0.121508,0.0545924,0.649343,0.327917,0.774249,0.189657,0.383753,0.50502,0.0227501,0.0418041,0.452175,0.848547,0.7495,0.200489,0.248594,0.921708,0.320812,0.743986,0.591161,0.116533,0.892523,0.947044,0.411467,0.735525,0.241671,0.313648,0.86694,0.201412,0.353246,0.693462,0.711916,0.100252,0.278515,0.876092,0.826535,0.248181,0.217622,0.644,0.964356,0.00138217,0.416873,0.329942,0.989218,0.165124,0.622101,0.362799,0.0118908,0.802374,0.477908,0.0528085,0.469269,0.159012,0.290665,0.408997,0.728417,0.338249,0.232756,0.840692,0.616381,0.666319,0.767135,0.0943108,0.593563,0.919399,0.870868,0.829267,0.236881,0.754352,0.759149,0.205066,0.61934,0.362138,0.826302,0.449505,|0.610798,0.39787,0.0506892,0.439598,0.212014,0.108604,0.180918,0.281332,0.272868,0.236568,0.184289,0.442103,0.829812,0.233265,0.348717,0.76369,0.874992,0.59153,0.0674859,0.936912,0.244748,0.855995,0.0160822,0.0192414,0.228279,0.524056,0.978502,0.300954,0.0375264,0.19473,0.663198,0.615466,0.068335,0.587302,0.574426,0.545159,0.677745,0.397254,0.531062,0.180215,0.290032,0.866172,0.886652,0.311816,0.734648,0.273572,0.476861,0.120435,0.760974,0.0755127,0.518632,0.215733,0.251579,0.356912,0.691509,0.510332,0.0750324,0.132914,0.183633,0.709218,0.69216,0.281552,0.245153,0.548899,0.281922,0.897023,0.526946,0.845016,0.915186,0.288231,0.866287,0.787331,0.193307,0.434451,0.872248,0.762612,0.320967,0.613531,0.77304,0.601298,0.74528,0.619752,0.707143,0.595682,0.327371,0.585912,0.00435519,0.388831,0.729303,0.704022,0.067714,0.578105,0.169526,0.788025,0.696744,0.52428,0.999012,0.483344,0.532545,0.525205,0.507727,0.580127,0.590132,0.855631,0.782303,0.278243,0.790953,0.795777,0.112896,0.75545,0.893053,0.948568,0.138973,0.177487,0.572851,0.135749,0.59772,0.0265895,0.302504,0.0227485,0.525513,0.156499,0.482873,0.837449,0.0263984,0.246479,0.608817,0.131279,0.52685,0.938039,0.511879,0.931129,0.376211,0.846141,0.665956,0.486084,0.874991,0.0160474,0.331709,0.562038,0.826122,0.540203,0.442845,0.717482,0.194112,0.767444,0.6746,0.428506,0.451086,0.999286,0.201204,0.970613,0.213196,0.8086,0.859364,0.986947,0.591238,0.749329,0.150518,0.255547,0.521136,0.460134,0.332588,0.157747,0.598199,0.959791,0.565869,0.0754408,0.929723,0.0965158,0.485102,0.711154,0.640713,0.244216,0.1274,0.984268,0.890952,0.779509,0.0420932,0.288763,0.0495662,0.911421,0.328285,0.380366,0.91277,0.332774,0.30108,0.226038,0.980144,0.545643,0.254605,0.214276,0.44318,0.120381,0.353481,0.159982,0.835908,0.389934,0.582786,0.833333,0.813238,0.651937,0.559967,0.988091,0.128388,0.736486,0.651465,0.0964069,0.0426326,0.66989,0.890586,0.543375,0.816763,0.41905,0.6032,0.0692598,0.406797,0.877281,0.698748,0.0537915,0.518521,0.738306,0.30414,0.168482,0.84636,0.0271919,0.256196,0.150568,0.929706,0.417125,0.989517,0.355047,0.919134,0.301439,0.337449,0.799767,0.723338,0.91068,0.112269,0.149001,0.906366,0.858026,0.42019,0.646376,0.485207,0.0844299,0.466575,0.00347322,0.883331,0.818346,0.138529,0.767318,0.892259,0.136658,0.164043,0.688105,0.9148,0.28986,0.352642,0.190796,0.211513,0.441168,0.0518081,0.302794,0.992038,0.00521612,0.567453,0.812301,0.780406,0.281111,0.571415,0.844767,0.0906702,0.179032,0.504809,0.914298,0.841551,0.346237,0.182777,0.129174,0.192786,0.182364,0.164647,0.215534,0.0676609,0.565859,0.797742,0.316397,0.333309,0.721903,0.518487,0.737199,0.51366,0.930019,0.295637,0.50628,0.889236,0.230818,0.295529,0.318856,0.0122617,0.17751,0.0151092,0.584252,0.62048,0.0863096,0.259261,0.478875,0.97852,0.240494,0.4284,0.112285,0.617077,0.570619,0.511369,0.221026,0.601143,0.991167,0.279674,0.0531074,0.381726,0.759243,0.988744,0.34318,0.205964,0.556475,0.630567,0.904101,0.129212,0.962721,0.306092,0.721976,0.802852,0.393496,0.134956,0.422229,0.287546,0.525524,0.62063,0.431705,0.651518,0.220367,0.277424,0.322806,0.589026,0.678097,0.342198,0.380283,0.788384,0.448311,0.8711,0.210463,0.0138586,0.177938,0.191903,0.449561,0.327624,0.552231,0.282558,0.968187,0.861378,0.919955,0.802173,0.876687,0.942453,0.0249203,0.957789,0.629444,0.068509,0.740365,0.974457,0.855812,0.296467,0.400519,0.343192,0.556512,0.447991,0.186192,0.0444872,0.520068,0.0996711,0.987856,0.0715969,0.37598,0.0532588,0.596081,0.473588,0.925062,0.857363,0.24444,0.78041,0.784169,0.305257,0.329427,0.231181,0.832809,0.0469863,0.623474,0.720591,0.842733,0.526367,0.322685,0.70645,0.578291,0.209613,0.462306,0.621325,0.57203,0.998612,0.856382,0.859281,0.625194,0.767105,0.687594,0.806473,0.779975,0.800877,0.570006,0.886058,0.0999655,0.532712,0.465047,0.541894,0.441246,0.913342,0.820831,0.648367,0.39762,0.14295,0.422241,0.599416,0.216468,0.58315,0.195085,0.975997,0.180747,0.875751,0.497579,0.692641,0.988146,0.567388,0.285839,0.596446,0.864682,0.4029,0.510351,0.250169,0.917372,0.829953,0.0261717,0.464219,0.277944,0.336735,0.457204,0.130824,0.613054,0.571155,0.342795,0.235939,0.610482,0.779341,0.0833435,0.375021,0.44458,0.565887,0.827644,0.424808,0.386516,0.243727,0.486516,0.0857041,0.804162,0.364145,0.308836,0.615822,0.507297,0.266503,0.288818,0.212124,0.269467,0.852781,0.517176,0.794175,0.894711,0.803913,0.453353,0.699738,0.23919,0.561016,0.277254,0.572287,0.215519,0.823013,0.473858,0.907048,0.748701,0.0954093,0.424276,0.0649195,0.0599558,0.641013,0.5161,0.219025,0.752469,0.320374,0.132101,0.804215,0.296361,0.985854,0.365281,0.995661,0.747087,0.993334,0.660403,0.0209008,0.494069,0.921087,0.374366,0.225169,0.197103,0.159591,0.939237,0.792413,0.798599,0.265707,0.706455,0.924267,0.957043,0.868113,0.359686,0.520217,0.453441,0.507171,0.209531,0.738189,0.848775,0.217269,0.0429429,0.227425,0.493978,0.274113,0.778728,0.0502964,0.578122,0.273459,0.751463,0.882948,0.72085,0.573575,0.136125,0.0143408,0.642498,0.0654736,0.494204,0.656885,0.875774,0.26308,0.637492,0.320924,0.95798,0.0116355,0.200666,0.164601,0.443569,0.108712,0.901015,0.0987425,0.228738,0.426069,0.774906,0.922503,0.429239,0.557093,0.355717,0.326205,0.993293,0.467599,0.985714,0.550554,0.611253,0.666279,0.340356,0.66617,0.980064,0.987727,0.249446,0.0503479,0.52893,0.345174,0.701524,0.759352,0.245687,0.0721633,0.300804,0.704423,0.168677,0.1766,0.991143,0.597909,0.419403,0.660586,0.534674,0.945225,0.569959,0.817157,0.77746,0.926902,0.548651,0.345788,0.947695,0.442633,0.908162,0.357773,0.356969,0.250298,0.268631,0.546926,0.812493,0.34205,0.351681,0.94612,0.633182,0.137312,0.298642,0.161459,0.467165,0.595292,0.512787,0.0882892,0.394345,0.797706,0.682779,0.243845,0.30293,0.748131,0.0694356,0.794977,0.96017,0.932213,0.471076,0.585928,0.219201,0.23843,0.186011,0.0917227,0.218347,0.0173412,0.302276,0.624665,0.95707,0.369771,0.115659,0.0636418,0.921373,0.316642,0.329196,0.629003,0.320577,0.752268,0.455529,0.636635,0.749663,0.217735,0.441816,0.0384394,0.697225,0.0144755,0.163286,0.32439,0.782489,0.556347,0.0531494,0.580975,0.389709,0.397179,0.647109,0.844151,0.845059,0.881315,0.697503,0.247985,0.360812,0.45726,0.676422,0.558095,0.99793,0.31079,0.636824,0.464435,0.183378,0.150745,0.00359911,0.357056,0.892589,0.655866,0.614472,0.599735,0.759985,0.473442,0.199797,0.24876,0.209912,0.322648,0.261836,0.695306,0.788054,0.101927,0.881816,0.912167,0.940875,0.16883,0.932296,0.675365,0.584047,0.860471,0.669519,0.615509,0.788981,0.0120758,0.373512,0.940432,0.909928,0.452893,0.326173,0.961742,0.822228,0.0666887,0.190572,0.828002,0.745696,0.442385,0.936157,0.712657,0.363164,0.208774,0.45838,0.407946,0.680542,0.812305,0.393183,0.993192,0.356224,0.479934,0.0547386,0.939713,0.609429,0.658775,0.88234,0.436719,0.641728,0.78531,0.685717,0.286716,0.214861,0.317379,0.804091,0.910655,0.891691,0.457714,0.595539,0.472766,0.168929,0.420783,0.72631,0.508022,0.49057,0.519459,0.0774761,0.541702,0.374908,0.844934,0.404203,0.202372,0.69859,0.131704,0.0290565,0.238782,0.341853,0.748543,0.271738,0.594727,0.820215,0.438906,0.0294018,0.0204347,0.53435,0.518151,0.839221,0.693778,0.886265,0.516125,0.980746,0.99325,0.451084,0.73869,0.12207,0.333307,0.728687,0.374763,0.11463,0.758543,0.889901,0.42959,0.450391,0.556469,0.633076,0.805285,0.900064,0.344241,0.049073,0.20027,0.20187,0.810621,0.397801,0.516044,0.290605,0.0231069,0.534762,0.398007,0.731407,0.639932,0.108833,0.592195,0.0225438,0.864517,0.282377,0.384043,0.0654796,0.360099,0.482796,0.956274,0.000289679,0.867404,0.933345,0.142954,0.421719,0.217987,0.767532,0.555434,0.0192789,0.547136,0.0583779,0.126865,0.0830563,0.712939,0.458561,0.395962,0.441688,0.0230522,0.184106,0.626364,0.263541,0.677607,0.237743,0.0765364,0.559278,0.433188,0.998798,0.476765,0.731667,0.13055,0.997893,0.486932,0.901955,0.0804434,0.39336,0.478425,0.929519,0.414577,0.320944,0.833722,0.562118,0.831756,0.549535,0.854396,0.543101,0.806045,0.417686,0.49876,0.104029,0.954387,0.457589,0.344513,0.91667,0.239802,0.392066,0.328983,0.624907,0.169239,0.56256,0.42925,0.935468,0.927466,0.771535,0.614913,0.851075,0.286884,0.696612,0.848549,0.565814,0.508468,0.0513818,0.478761,0.416694,0.326644,0.0802463,0.97627,0.676911,0.725403,0.0119187,0.542743,0.693426,0.782277,0.707601,0.339467,0.967585,0.647789,0.407293,0.0271397,0.68069,0.664317,0.552632,0.44851,0.603966,0.780707,0.120962,0.221577,0.826175,0.258529,0.428974,0.508626,0.687134,0.944332,0.597335,0.947228,0.0808974,0.00581551,0.221111,0.239477,0.435448,0.436455,0.738205,0.0235413,0.137255,0.0249589,0.0979384,0.0449166,0.0704364,0.468718,0.694181,0.940788,0.102421,0.586416,0.865449,0.974707,0.441365,0.99746,0.516272,0.732753,0.298658,0.594249,0.704201,0.741923,0.424492,0.082046,0.20455,0.122707,0.190028,0.559364,0.846879,0.57384,0.800075,0.270062,0.205332,0.748948,0.973776,0.418644,0.146075,0.0833541,0.00615436,0.17561,0.238995,0.557986,0.894744,0.169136,0.773973,0.676116,0.898579,0.848238,0.514165,0.136389,0.895304,0.691738,0.159404,0.707771,0.762255,0.23132,0.063232,0.732446,0.913397,|0.257772,0.525537,0.760122,0.818382,0.751421,0.48266,0.558413,0.797718,0.744043,0.674958,0.707645,0.807048,0.704639,0.514898,0.949418,0.191516,0.627359,0.503716,0.00407189,0.5563,0.994093,0.650508,0.782825,0.214189,0.120849,0.241133,0.614914,0.1099,0.416113,0.384471,0.1826,0.935494,0.266593,0.0245006,0.121504,0.531532,0.0855759,0.723384,0.893864,0.545374,0.707529,0.798927,0.862558,0.238011,0.185314,0.331639,0.807485,0.120467,0.272936,0.218701,0.287331,0.836754,0.156733,0.0473208,0.886685,0.586616,0.833114,0.536331,0.0104881,0.883239,0.227018,0.149386,0.176672,0.188148,0.0326996,0.614615,0.563492,0.858953,0.27321,0.987925,0.386913,0.561515,0.361324,0.458717,0.518174,0.568291,0.386461,0.92894,0.933958,0.357291,0.0799087,0.536001,0.362053,0.0707134,0.596799,0.36656,0.954099,0.999806,0.684166,0.501622,0.248926,0.196239,0.197329,0.367794,0.804511,0.636374,0.168082,0.215833,0.0897295,0.292795,0.879149,0.97886,0.272241,0.624165,0.30304,0.859422,0.43697,0.919446,0.331935,0.999546,0.822161,0.314467,0.0252686,0.495589,0.0598623,0.00603926,0.635975,0.709681,0.725922,0.84615,0.959149,0.160985,0.819795,0.932706,0.0395804,0.89946,0.0491968,0.46469,0.0304379,0.675406,0.656457,0.921281,0.875436,0.152928,0.358647,0.534895,0.385755,0.281877,0.892003,0.81522,0.562911,0.43104,0.542113,0.671049,0.949983,0.614858,0.985615,0.0109591,0.924872,0.771715,0.792882,0.338981,0.520705,0.313539,0.772162,0.172017,0.982483,0.870541,0.910709,0.735825,0.769845,0.749718,0.565416,0.532643,0.692711,0.408368,0.299691,0.252774,0.741892,0.0385746,0.372702,0.77126,0.862936,0.827537,0.995995,0.964922,0.541442,0.5353,0.0834239,0.580389,0.868561,0.506964,0.718214,0.86751,0.467861,0.402932,0.982515,0.0719761,0.375207,0.700013,0.298375,0.900022,0.87248,0.527963,0.607914,0.700393,0.771098,0.501722,0.678006,0.0930454,0.731096,0.460947,0.347944,0.075542,0.546544,0.661064,0.602058,0.246122,0.369932,0.963413,0.687616,0.748861,0.228371,0.995476,0.906577,0.948769,0.973031,0.684413,0.269109,0.803167,0.802944,0.716971,0.498749,0.85844,0.609129,0.28081,0.548465,0.482588,0.953515,0.834086,0.0940737,0.381639,0.286181,0.579622,0.353689,0.557672,0.0818506,0.989901,0.279025,0.867029,0.713883,0.93396,0.684478,0.34222,0.165635,0.364568,0.722376,0.562838,0.337619,0.398449,0.825164,0.520735,0.369396,0.920164,0.910008,0.364674,0.957177,0.672177,0.251419,0.179445,0.782655,0.685398,0.296456,0.677916,0.34527,0.502678,0.777562,0.549258,0.238142,0.801538,0.299904,0.389678,0.31628,0.479084,0.436693,0.7107,0.657663,0.0642766,0.113811,0.890887,0.308063,0.869556,0.62132,0.761564,0.736595,0.766517,0.710384,0.536564,0.793618,0.759368,0.626901,0.352824,0.7632,0.7116,0.0924875,0.765013,0.764072,0.666686,0.422696,0.447422,0.612455,0.771004,0.508572,0.497911,0.58701,0.35068,0.237387,0.726165,0.23818,0.737251,0.302388,0.772609,0.404327,0.699045,0.0619597,0.18291,0.410942,0.125178,0.0484767,0.300251,0.262881,0.542105,0.43856,0.672501,0.891463,0.848063,0.858272,0.797926,0.191544,0.59939,0.662026,0.649337,0.871048,0.0593773,0.0394437,0.437227,0.540119,0.803104,0.776035,0.053544,0.346367,0.643535,0.757016,0.305795,0.499197,0.126999,0.0352775,0.61524,0.105497,0.746514,0.111102,0.120984,0.443513,0.483503,0.348891,0.945994,0.45373,0.0756498,0.786095,0.255206,0.441123,0.77758,0.68075,0.268836,0.0572037,0.138772,0.951389,0.610771,0.598576,0.00693536,0.528585,0.465417,0.395473,0.448209,0.057502,0.335299,0.543963,0.365669,0.429885,0.989612,0.258431,0.964806,0.331564,0.79982,0.11473,0.102614,0.433592,0.00758404,0.840748,0.0569782,0.108981,0.829452,0.293417,0.616815,0.28135,0.455208,0.830302,0.55332,0.880669,0.755919,0.749671,0.110439,0.479144,0.618911,0.76511,0.491555,0.328368,0.461166,0.0462542,0.073122,0.206632,0.00811994,0.0508328,0.409942,0.31553,0.995193,0.0555897,0.524681,0.169444,0.735034,0.425258,0.46846,0.699326,0.106304,0.134512,0.781712,0.829896,0.670386,0.460925,0.508202,0.787545,0.694703,0.598963,0.231041,0.766217,0.482926,0.460927,0.878584,0.687923,0.637131,0.758177,0.478404,0.0664388,0.0371391,0.207323,0.754254,0.0380464,0.576551,0.653193,0.589492,0.805616,0.887093,0.513247,0.42942,0.124143,0.502947,0.834584,0.242768,0.921833,0.119645,0.148362,0.396923,0.392604,0.699395,0.911473,0.646612,0.596859,0.342564,0.558674,0.68756,0.902627,0.687291,0.0430554,0.775669,0.582951,0.103152,0.934606,0.701295,0.683538,0.863809,0.118456,0.392456,0.500045,0.712378,0.251655,0.0914896,0.632311,0.00401586,0.73349,0.861395,0.614487,0.506305,0.88644,0.916576,0.772675,0.441428,0.454831,0.0935924,0.129356,0.0715205,0.0827638,0.624699,0.780593,0.16844,0.0327313,0.947554,0.488288,0.443453,0.875649,0.437736,0.359905,0.685077,0.0905421,0.46048,0.230382,0.481876,0.58285,0.819262,0.943005,0.787379,0.038318,0.74629,0.120762,0.373513,0.730651,0.365082,0.890204,0.0220287,0.12374,0.0111693,0.530645,0.996082,0.218367,0.774795,0.628532,0.10247,0.445578,0.215684,0.0624937,0.289237,0.710506,0.361669,0.5491,0.949019,0.184229,0.285979,0.528797,0.498572,0.887876,0.199699,0.68487,0.645989,0.247771,0.853325,0.579713,0.998468,0.817993,0.123971,0.975608,0.74187,0.929761,0.577496,0.634344,0.154242,0.666154,0.334364,0.847783,0.0580636,0.319402,0.0288956,0.75926,0.126029,0.216682,0.695378,0.0563846,0.678649,0.461244,0.259694,0.967408,0.284331,0.213427,0.997231,0.551544,0.475888,0.396119,0.987954,0.172326,0.868863,0.743424,0.0652433,0.944594,0.373183,0.691002,0.947902,0.397918,0.40269,0.901105,0.293655,0.975246,0.66015,0.780779,0.0880184,0.819641,0.45137,0.0878485,0.662515,0.973171,0.369336,0.554412,0.180909,0.755449,0.55594,0.137318,0.0852593,0.641089,0.821879,0.000602782,0.666962,0.915076,0.045765,0.330932,0.893203,0.57164,0.399488,0.172688,0.506831,0.0927645,0.258145,0.921322,0.563579,0.85157,0.0273669,0.717504,0.0972775,0.103038,0.137096,0.952296,0.996061,0.219835,0.259349,0.337846,0.631031,0.953351,0.823476,0.359098,0.549422,0.352804,0.838999,0.106488,0.744344,0.412532,0.418284,0.458732,0.729457,0.508274,0.709493,0.592146,0.502966,0.0516642,0.33757,0.291288,0.196879,0.19686,0.137701,0.924904,0.497471,0.0167375,0.228782,0.608306,0.524127,0.120627,0.799965,0.476552,0.894247,0.188771,0.366395,0.486643,0.362772,0.226127,0.124341,0.453048,0.70898,0.964069,0.620092,0.122779,0.0351369,0.216421,0.266677,0.130546,0.901432,0.46412,0.497152,0.305351,0.605124,0.38223,0.356884,0.422053,0.170494,0.395761,0.486789,0.688728,0.359203,0.333142,0.957221,0.157557,0.251826,0.110955,0.252417,0.951052,0.412471,0.138483,0.271691,0.988509,0.222286,0.198043,0.541958,0.334006,0.613883,0.198729,0.819358,0.766151,0.871031,0.378544,0.347548,0.512043,0.854483,0.441491,0.187195,0.310396,0.979512,0.14833,0.749201,0.199557,0.148683,0.687582,0.785258,0.848765,0.423472,0.907393,0.66624,0.0027768,0.591172,0.593589,0.317591,0.750073,0.977195,0.62884,0.489359,0.356837,0.0516468,0.408799,0.398751,0.862138,0.32998,0.648228,0.252161,0.878326,0.183641,0.923396,0.356627,0.505336,0.0227891,0.458735,0.379127,0.391982,0.111171,0.247133,0.685353,0.627091,0.942215,0.199847,0.329745,0.223702,0.451574,0.806705,0.296829,0.880389,0.472604,0.775727,0.468723,0.294313,0.206836,0.64601,0.964942,0.36107,0.932197,0.158486,0.896352,0.803905,0.523611,0.26147,0.432914,0.905956,0.9589,0.945574,0.689283,0.580482,0.41858,0.481185,0.982355,0.62754,0.557973,0.821338,0.203406,0.698779,0.508637,0.521511,0.140053,0.60099,0.662129,0.229393,0.866077,0.509839,0.28861,0.346721,0.520816,0.389359,0.358655,0.950468,0.996549,0.216513,0.943564,0.170218,0.15642,0.654917,0.0607027,0.609013,0.0915897,0.577307,0.216373,0.375877,0.557172,0.520658,0.492659,0.302472,0.283376,0.482781,0.931951,0.834435,0.187414,0.208644,0.559365,0.549413,0.713803,0.174437,0.624389,0.909215,0.281018,0.46332,0.129635,0.605659,0.257277,0.0508764,0.521613,0.760518,0.595051,0.202541,0.578261,0.659345,0.892923,0.873205,0.949752,0.544667,0.211674,0.912953,0.676346,0.955554,0.683049,0.164059,0.972928,0.860325,0.395794,0.14205,0.167172,0.0476352,0.747981,0.193905,0.690038,0.110088,0.202258,0.813975,0.113804,0.776679,0.636839,0.41575,0.429373,0.774078,0.754257,0.407198,0.0064162,0.21192,0.237243,0.984402,0.124164,0.88204,0.663306,0.378545,0.196698,0.748804,0.25984,0.580177,0.290613,0.381066,0.658852,0.065053,0.879657,0.192535,0.556124,0.344135,0.919414,0.484944,0.146078,0.214729,0.490848,0.961846,0.202488,0.00572258,0.632747,0.23916,0.0433789,0.487293,0.462499,0.895859,0.565749,0.560611,0.689598,0.299659,0.679638,0.307301,0.156859,0.764801,0.13852,0.571591,0.272983,0.0739647,0.172726,0.882566,0.5161,0.625794,0.728398,0.328722,0.479562,0.598171,0.425056,0.29289,0.416424,0.960829,0.213797,0.1804,0.877544,0.169234,0.353793,0.647973,0.880596,0.156863,0.645321,0.0881839,0.789171,0.231183,0.52478,0.536633,0.0285065,0.450898,0.375143,0.787036,0.204558,0.123697,0.587433,0.787143,0.191359,0.767967,0.934408,0.593076,0.257067,0.192307,0.128516,0.595756,0.157078,0.0504689,0.381944,0.369783,0.207937,0.711062,0.140093,0.806927,0.793996,0.415101,0.685275,0.653151,0.0476804,0.291406,0.855348,0.220098,0.128037,0.0603113,0.898288,0.313035,0.394501,0.153606,0.72308,|0.653297,0.519286,0.854261,0.369592,0.926326,0.0271888,0.182544,0.0390111,0.456164,0.300248,0.575621,0.94697,0.0594031,0.587408,0.212677,0.576481,0.370486,0.333315,0.908767,0.338081,0.61663,0.348492,0.699507,0.754135,0.716233,0.0496663,0.571648,0.815402,0.886821,0.0802097,0.00800341,0.243654,0.416335,0.59327,0.797216,0.268012,0.396345,0.243709,0.349303,0.305539,0.071763,0.564158,0.0815811,0.598961,0.155624,0.874721,0.296131,0.490158,0.434401,0.517821,0.802334,0.0489827,0.30465,0.631486,0.583552,0.776866,0.0517214,0.053756,0.25208,0.680437,0.956379,0.399049,0.573678,0.837033,0.832521,0.282931,0.545207,0.716674,0.761979,0.50544,0.632856,0.175544,0.150417,0.00269043,0.253196,0.389935,0.1993,0.298565,0.865761,0.110779,0.719808,0.390147,0.925273,0.486313,0.952079,0.338802,0.822365,0.840106,0.521628,0.156054,0.561423,0.788064,0.850424,0.593434,0.344742,0.910165,0.93501,0.29577,0.814575,0.989583,0.168689,0.709085,0.656854,0.834228,0.899975,0.722989,0.99019,0.0129768,0.398733,0.183081,0.442719,0.647233,0.0236594,0.561405,0.648673,0.571926,0.948663,0.827926,0.239015,0.439867,0.323205,0.126774,0.132995,0.232943,0.140732,0.537453,0.895981,0.461233,0.146706,0.175578,0.440188,0.954936,0.25738,0.185649,0.38982,0.420792,0.0642034,0.0228016,0.611289,0.726311,0.0169926,0.881611,0.802425,0.706031,0.573029,0.603693,0.653259,0.757021,0.668095,0.122866,0.604375,0.591708,0.40794,0.234651,0.948813,0.820741,0.825446,0.917722,0.735566,0.123909,0.989459,0.443576,0.111334,0.285922,0.264628,0.966565,0.10746,0.995678,0.645759,0.492931,0.143697,0.328978,0.00230831,0.661169,0.231825,0.967079,0.732685,0.982246,0.276349,0.62587,0.766686,0.791058,0.369729,0.458694,0.39384,0.402068,0.193899,0.186967,0.285963,0.988437,0.684492,0.896367,0.792101,0.280919,0.392495,0.521679,0.384672,0.0968171,0.292541,0.408328,0.178087,0.649042,0.504489,0.340696,0.465195,0.793469,0.156757,0.990071,0.0245212,0.209743,0.184853,0.825482,0.622248,0.657619,0.149846,0.269217,0.445998,0.0949906,0.124242,0.726553,0.949565,0.426263,0.925137,0.384058,0.528537,0.654591,0.889741,0.76737,0.870186,0.985186,0.80537,0.305544,0.858284,0.422301,0.352801,0.919396,0.773631,0.467378,0.270285,0.273884,0.774162,0.86619,0.204786,0.881165,0.313612,0.372059,0.983432,0.166566,0.853638,0.763171,0.928402,0.409269,0.960268,0.383158,0.438491,0.601664,0.636025,0.811473,0.678143,0.928109,0.076367,0.388143,0.0735968,0.678504,0.258234,0.285093,0.502153,0.216567,0.355053,0.970417,0.288399,0.0531866,0.904152,0.983432,0.984497,0.26703,0.119664,0.36282,0.544282,0.72914,0.0220404,0.27518,0.740066,0.7251,0.445835,0.541838,0.0235962,0.605921,0.141362,0.512942,0.579598,0.533455,0.670948,0.632777,0.105044,0.131877,0.477854,0.781801,0.325611,0.408376,0.149959,0.274388,0.405033,0.412088,0.336421,0.657801,0.612454,0.73061,0.0457574,0.184244,0.805395,0.898064,0.374131,0.866923,0.99532,0.990197,0.556807,0.178676,0.667937,0.782572,0.371462,0.709741,0.490523,0.334163,0.0293763,0.907814,0.689592,0.332532,0.501833,0.570042,0.0910606,0.940081,0.0499474,0.243008,0.428629,0.250371,0.98567,0.298238,0.520432,0.443816,0.33833,0.693866,0.868469,0.756016,0.732053,0.830272,0.694232,0.0354041,0.562397,0.682917,0.738885,0.158442,0.796144,0.686829,0.385802,0.710293,0.918999,0.613262,0.764154,0.450271,0.200976,0.599122,0.599792,0.639629,0.374346,0.537826,0.243396,0.884291,0.578892,0.636921,0.000276506,0.770109,0.151249,0.26706,0.339069,0.375845,0.289583,0.055132,0.919362,0.905492,0.0209882,0.947295,0.836805,0.541329,0.607294,0.847411,0.284754,0.151138,0.453472,0.181213,0.206789,0.225967,0.407651,0.677535,0.0300714,0.458407,0.888414,0.511564,0.0130986,0.626006,0.00584793,0.0769396,0.218769,0.769089,0.832226,0.0830398,0.690942,0.168181,0.460283,0.473397,0.795673,0.0811877,0.945992,0.985868,0.280891,0.702893,0.438869,0.888546,0.441976,0.967336,0.589694,0.315972,0.24169,0.425543,0.54163,0.1799,0.501866,0.345845,0.451153,0.82185,0.805916,0.535054,0.0770499,0.753323,0.993652,0.397487,0.561,0.750229,0.685212,0.274219,0.824537,0.452006,0.781816,0.567526,0.337899,0.410839,0.981779,0.686877,0.706497,0.295949,0.803107,0.968936,0.647039,0.459744,0.149065,0.980009,0.34656,0.759761,0.257751,0.905639,0.771867,0.509559,0.941851,0.410983,0.960935,0.353337,0.622033,0.215444,0.887177,0.17249,0.877719,0.256265,0.880038,0.69659,0.446348,0.958899,0.0013898,0.538517,0.273595,0.300093,0.285771,0.291816,0.820151,0.986932,0.224655,0.0704838,0.926727,0.543514,0.967471,0.126694,0.660665,0.233862,0.987713,0.779194,0.995405,0.542773,0.229827,0.509844,0.0333775,0.832398,0.625368,0.643352,0.278753,0.954661,0.338142,0.44423,0.579237,0.00825286,0.478195,0.66031,0.580667,0.487876,0.918839,0.173312,0.041273,0.878339,0.113377,0.290412,0.703059,0.929128,0.811382,0.487672,0.0565485,0.580646,0.658602,0.467912,0.539415,0.0758557,0.574784,0.388067,0.705959,0.964371,0.63543,0.838798,0.0948511,0.218579,0.225556,0.355009,0.587384,0.0367591,0.908915,0.376708,0.622648,0.523965,0.516652,0.605633,0.299872,0.660401,0.0258418,0.345579,0.256881,0.581352,0.22522,0.575206,0.733369,0.246852,0.997804,0.900478,0.174702,0.646571,0.597682,0.280656,0.133913,0.93826,0.360379,0.833592,0.216785,0.517368,0.819969,0.0279752,0.0757321,0.61446,0.0290733,0.758432,0.780117,0.890282,0.219627,0.672344,0.637545,0.904846,0.794755,0.254997,0.28663,0.0165008,0.0839702,0.128163,0.889602,0.664841,0.0386455,0.963575,0.878246,0.0309439,0.00597346,0.903839,0.286298,0.838241,0.505723,0.107467,0.826772,0.326704,0.627248,0.110231,0.359253,0.763471,0.10165,0.919789,0.818831,0.183596,0.601497,0.328886,0.313271,0.580381,0.939022,0.653411,0.532173,0.896696,0.64205,0.104184,0.604386,0.556307,0.925758,0.654019,0.322912,0.721473,0.811998,0.37242,0.81599,0.955358,0.0192848,0.303142,0.28991,0.593546,0.331118,0.450811,0.466123,0.436106,0.78479,0.154105,0.023879,0.860199,0.274737,0.67144,0.359568,0.52146,0.252062,0.201653,0.050127,0.864618,0.342624,0.73933,0.0685075,0.649939,0.936933,0.380066,0.217936,0.308373,0.489747,0.143287,0.877178,0.206723,0.19102,0.799979,0.289819,0.631451,0.21766,0.964551,0.957772,0.445516,0.649076,0.89886,4.17233e-06,0.398966,0.707539,0.0526135,0.0776438,0.193674,0.91039,0.644939,0.210159,0.952266,0.110976,0.135031,0.333793,0.656546,0.571701,0.493704,0.650125,0.570247,0.236033,0.0362196,0.861468,0.325438,0.242537,0.0549016,0.979791,0.185179,0.445445,0.784734,0.10873,0.5365,0.704741,0.079956,0.658999,0.687073,0.730436,0.93469,0.360859,0.963063,0.331722,0.257697,0.704169,0.926732,0.802428,0.69018,0.674879,0.816518,0.638669,0.56485,0.116171,0.649875,0.605435,0.095884,0.633264,0.748386,0.108241,0.725124,0.0708396,0.047214,0.838695,0.636388,0.204186,0.161725,0.719932,0.788368,0.368323,0.692254,0.420111,0.292229,0.408338,0.834276,0.0488799,0.299022,0.146671,0.580582,0.33942,0.365694,0.147942,0.432395,0.888054,0.27144,0.864381,0.335912,0.260731,0.566575,0.107246,0.318026,0.635537,0.379168,0.212711,0.451673,0.449846,0.688996,0.156051,0.694651,0.318363,0.395919,0.694504,0.910082,0.365844,0.912641,0.766508,0.302729,0.469769,0.35823,0.653208,0.0134824,0.0990334,0.330669,0.998686,0.589484,0.144376,0.861618,0.389424,0.363967,0.827779,0.920965,0.979909,0.803418,0.594872,0.706886,0.466865,0.2352,0.175884,0.968344,0.0577061,0.0527064,0.4214,0.734057,0.634486,0.178436,0.293796,0.677197,0.566858,0.635556,0.534459,0.38804,0.0559298,0.882533,0.62914,0.356206,0.597241,0.718493,0.679696,0.619798,0.220966,0.158291,0.610199,0.178839,0.0156252,0.0869915,0.460196,0.176141,0.728557,0.11399,0.208473,0.480718,0.997445,0.65023,0.0446189,0.346666,0.900523,0.310564,0.103178,0.992738,0.685653,0.344213,0.985025,0.670806,0.0281324,0.613883,0.275512,0.0586751,0.314732,0.0182196,0.554769,0.873449,0.101149,0.822217,0.700721,0.47394,0.953236,0.68867,0.702585,0.100413,0.5715,0.269026,0.866982,0.942793,0.153615,0.83461,0.0905043,0.451609,0.791384,0.521825,0.513774,0.696286,0.965019,0.931187,0.3578,0.898948,0.108976,0.196008,0.417867,0.107597,0.445587,0.64215,0.488614,0.198625,0.40827,0.811846,0.128124,0.197054,0.761436,0.351909,0.783993,0.685586,0.448038,0.969718,0.382238,0.32648,0.309697,0.374151,0.552638,0.0018875,0.785666,0.200412,0.0682548,0.435543,0.846637,0.155215,0.989779,0.539677,0.719226,0.365603,0.0122032,0.101116,0.233533,0.490063,0.201145,0.646377,0.137682,0.065163,0.907946,0.82834,0.36262,0.731452,0.607562,0.283853,0.469324,0.787379,0.625505,0.0360942,0.669655,0.114942,0.142843,0.398608,0.695758,0.189378,0.902404,0.383116,0.237975,0.816104,0.785524,0.813314,0.455528,0.427278,0.3939,0.881093,0.158685,0.793594,0.344961,0.853714,0.870448,0.247781,0.809098,0.886134,0.779827,0.662866,0.713054,0.641259,0.36558,0.0253977,0.68305,0.158276,0.401364,0.424455,0.141232,0.963632,0.784825,0.953421,0.791585,0.112163,0.0321703,0.797292,0.53272,0.617085,0.478449,0.129791,0.909018,0.363409,0.152345,0.815506,0.788063,0.032232,0.52876,0.946505,0.591169,0.932391,0.282853,0.557209,0.698633,0.389819,0.752895,0.713457,0.616477,0.494923,0.980416,0.0474068,0.971893,0.685427,0.383536,0.649013,0.0474569,0.402196,0.710012,0.101891,0.545385,0.572962,0.657044,0.677013,|0.566694,0.374363,0.910252,0.312111,0.995539,0.937081,0.651905,0.0207761,0.488003,0.733011,0.345721,0.574764,0.387331,0.786448,0.776203,0.905575,0.620698,0.928652,0.587466,0.289037,0.71124,0.960414,0.327951,0.197814,0.757583,0.869104,0.862985,0.0869532,0.842668,0.620857,0.252608,0.205611,0.493169,0.401395,0.659534,0.388253,0.38355,0.97706,0.292203,0.25698,0.941848,0.687598,0.253625,0.688235,0.317252,0.431771,0.582903,0.261809,0.37278,0.147294,0.780593,0.180695,0.444776,0.345036,0.505518,0.481954,0.421073,0.944828,0.561231,0.655917,0.866798,0.431529,0.0549098,0.430689,0.989993,0.346784,0.745402,0.67893,0.871632,0.981783,0.550989,0.094444,0.738606,0.227342,0.441324,0.348309,0.915988,0.147272,0.0603616,0.957475,0.523272,0.0023852,0.664323,0.321944,0.141519,0.0843785,0.258639,0.387694,0.211928,0.852877,0.109115,0.323323,0.660945,0.347994,0.959994,0.565094,0.118848,0.451484,0.849101,0.750389,0.213491,0.670279,0.588969,0.523486,0.131226,0.329478,0.629474,0.975098,0.954324,0.936959,0.699562,0.69879,0.191658,0.960971,0.886411,0.471698,0.866036,0.93145,0.80985,0.235238,0.0266848,0.932093,0.343522,0.447419,0.888478,0.787895,0.597431,0.795257,0.162093,0.477174,0.569509,0.617711,0.0627016,0.161118,0.357985,0.0585061,0.355953,0.120251,0.337649,0.294187,0.687769,0.309926,0.825103,0.769729,0.942982,0.552753,0.722967,0.813432,0.616315,0.492179,0.308671,0.972077,0.10674,0.0477673,0.113671,0.535786,0.0942216,0.583347,0.100757,0.140891,0.0267123,0.988585,0.246049,0.081969,0.542298,0.0390025,0.767839,0.563502,0.226632,0.0509071,0.083595,0.922388,0.969509,0.538489,0.639901,0.454949,0.696452,0.955836,0.337184,0.802518,0.462678,0.0286339,0.60872,0.425119,0.466422,0.800465,0.589867,0.920052,0.171157,0.755007,0.815757,0.678164,0.771494,0.101357,0.784746,0.893455,0.453418,0.815177,0.661435,0.278071,0.935081,0.139053,0.468731,0.508096,0.0295823,0.00421572,0.0139034,0.949125,0.635859,0.896851,0.44964,0.151862,0.534639,0.74391,0.681248,0.141592,0.8972,0.981806,0.872437,0.564944,0.637414,0.495272,0.78081,0.239891,0.470311,0.392993,0.544405,0.680365,0.0609593,0.334446,0.197392,0.0468797,0.0468976,0.627284,0.656232,0.7995,0.826725,0.168058,0.916414,0.124339,0.973195,0.953608,0.241142,0.0417786,0.793812,0.273825,0.0200418,0.215748,0.0050208,0.2039,0.167617,0.607183,0.915367,0.611661,0.909556,0.0097512,0.684132,0.630606,0.269923,0.0668857,0.304318,0.95613,0.806889,0.0533655,0.564294,0.980088,0.835642,0.428305,0.68718,0.519931,0.312658,0.508726,0.783134,0.918533,0.88025,0.835959,0.35488,0.730803,0.553445,0.780905,0.928692,0.366555,0.177789,0.201995,0.90946,0.54827,0.948491,0.790119,0.797931,0.555899,0.0531133,0.34439,0.193287,0.065829,0.414968,0.669562,0.0821747,0.658336,0.530812,0.307278,0.275276,0.359106,0.221576,0.218702,0.938214,0.329336,0.0656679,0.581124,0.927307,0.777379,0.673694,0.472464,0.753184,0.708271,0.00734466,0.0418947,0.641489,0.96812,0.195841,0.138014,0.145492,0.627861,0.251644,0.373856,0.338114,0.696195,0.357637,0.78118,0.748612,0.374424,0.186353,0.572857,0.923975,0.636377,0.278891,0.677586,0.107869,0.654711,0.903457,0.638118,0.488322,0.723966,0.293599,0.456331,0.632901,0.110106,0.735633,0.686379,0.728681,0.0377018,0.500705,0.504875,0.221814,0.955774,0.76975,0.114852,0.0794721,0.979587,0.921927,0.558781,0.579828,0.925377,0.904958,0.689827,0.22554,0.302768,0.0889314,0.897349,0.867148,0.462277,0.804747,0.301418,0.686638,0.00448537,0.000178635,0.874973,0.35346,0.410887,0.888542,0.285534,0.200269,0.419914,0.170453,0.238848,0.735651,0.614989,0.163657,0.433687,0.739396,0.0973624,0.362722,0.27327,0.578577,0.310526,0.392742,0.0871136,0.875488,0.435651,0.44898,0.114613,0.169053,0.218377,0.714806,0.497481,0.875066,0.167595,0.953008,0.0372351,0.515421,0.176968,0.286025,0.663778,0.7952,0.0303285,0.949591,0.76398,0.982021,0.660411,0.523885,0.17458,0.739596,0.727555,0.305764,0.667976,0.653205,0.146847,0.139555,0.751646,0.789545,0.55604,0.615091,0.572731,0.771133,0.618011,0.310721,0.741064,0.196484,0.217133,0.598299,0.656368,0.168233,0.912487,0.185054,0.803135,0.334221,0.383964,0.854664,0.559872,0.536435,0.765889,0.904724,0.953807,0.706266,0.0293934,0.446751,0.688186,0.595643,0.386471,0.281495,0.27059,0.658394,0.404539,0.122728,0.847289,0.0946447,0.687796,0.872256,0.331509,0.393498,0.31396,0.704528,0.812165,0.452873,0.832522,0.293524,0.662755,0.664307,0.526734,0.428667,0.0862807,0.15801,0.918234,0.501097,0.534367,0.628975,0.0670018,0.970173,0.82244,0.18484,0.418703,0.192756,0.264315,0.25609,0.448497,0.169832,0.981627,0.979168,0.206587,0.751183,0.798245,0.895105,0.746395,0.183285,0.190267,0.683817,0.0146099,0.531803,0.652285,0.870631,0.0634523,0.529875,0.376824,0.517384,0.631615,0.578617,0.625516,0.420617,0.449108,0.0868769,0.774063,0.0819564,0.856631,0.658577,0.382339,0.863326,0.493821,0.363701,0.799489,0.0506898,0.36894,0.0458962,0.0328192,0.931752,0.206962,0.596675,0.0272947,0.785107,0.930395,0.859701,0.00514805,0.883175,0.0486596,0.120051,0.907704,0.0798199,0.706551,0.829574,0.682864,0.590125,0.853986,0.626375,0.164802,0.236115,0.712043,0.85441,0.265316,0.0473968,0.497307,0.30829,0.300165,0.787838,0.513731,0.787372,0.117148,0.746636,0.249878,0.167152,0.974993,0.763253,0.284393,0.814886,0.789686,0.188367,0.562366,0.27461,0.360699,0.353914,0.380664,0.40886,0.834495,0.445358,0.0465282,0.607338,0.269087,0.00420445,0.706632,0.2144,0.957075,0.170556,0.28736,0.90583,0.943194,0.101895,0.632809,0.0278854,0.563609,0.320862,0.887793,0.675238,0.465823,0.998608,0.472108,0.136719,0.880731,0.695706,0.638768,0.771567,0.172878,0.606755,0.375784,0.531352,0.409217,0.351526,0.274167,0.210173,0.745986,0.829944,0.00706387,0.780575,0.210175,0.122769,0.783387,0.555862,0.303437,0.666518,0.701126,0.897705,0.109728,0.020506,0.561044,0.823191,0.151959,0.369106,0.0429323,0.33691,0.0442846,0.427922,0.136713,0.320165,0.321448,0.311336,0.572061,0.563295,0.69438,0.689122,0.55846,0.447249,0.450518,0.80992,0.353078,0.127456,0.988164,0.38725,0.263228,0.501942,0.826802,0.708819,0.0247168,0.539461,0.880153,0.330802,0.851538,0.158695,0.719238,0.150454,0.485169,0.185333,0.00785172,0.0479903,0.507698,0.52318,0.847195,0.351904,0.544107,0.15165,0.889091,0.725682,0.571118,0.234536,0.401542,0.515862,0.395314,0.869885,0.0121934,0.353177,0.849497,0.944999,0.561679,0.170247,0.768361,0.661172,0.673258,0.0233698,0.292399,0.780003,0.291497,0.271088,0.254988,0.266383,0.130701,0.552628,0.14189,0.713103,0.222057,0.690241,0.363143,0.865636,0.0457415,0.467385,0.111124,0.20115,0.104168,0.0436426,0.860741,0.508375,0.80919,0.685245,0.706176,0.353514,0.262206,0.270357,0.751582,0.903697,0.863654,0.0617874,0.956078,0.110496,0.602709,0.0666632,0.51166,0.757005,0.63673,0.463664,0.993309,0.686858,0.309337,0.972289,0.0180808,0.239197,0.887538,0.47055,0.828241,0.226983,0.856792,0.0139206,0.160794,0.348832,0.753946,0.347041,0.0522982,0.412542,0.581272,0.324503,0.952266,0.335959,0.957709,0.496113,0.605682,0.0416411,0.459234,0.625014,0.37377,0.848452,0.69399,0.918289,0.294724,0.669501,0.964213,0.237685,0.16549,0.428893,0.416275,0.951676,0.956536,0.0190121,0.750181,0.427507,0.296468,0.945208,0.794249,0.0275323,0.692129,0.0476384,0.375294,0.0263289,0.593467,0.441998,0.629699,0.487157,0.697395,0.67443,0.0530895,0.31776,0.148586,0.099595,0.51347,0.0242278,0.188279,0.464047,0.93041,0.485363,0.691148,0.27519,0.777925,0.984098,0.928949,0.494089,0.0274677,0.180052,0.0171263,0.515843,0.576375,0.522201,0.248658,0.769623,0.736006,0.363284,0.997676,0.811168,0.470101,0.885822,0.920675,0.911986,0.566467,0.314153,0.236439,0.990696,0.269102,0.929035,0.0140224,0.3739,0.431893,0.267156,0.565082,0.774764,0.298895,0.229197,0.402533,0.80556,0.865315,0.173843,0.814818,0.51185,0.253136,0.604706,0.117935,0.0518486,0.849498,0.105998,0.235599,0.576822,0.761703,0.674127,0.97788,0.660671,0.930275,0.230195,0.442577,0.197074,0.116089,0.00441092,0.611405,0.316297,0.331456,0.919036,0.619893,0.167412,0.439496,0.63655,0.303123,0.0783224,0.33284,0.232315,0.731642,0.0486221,0.960419,0.878311,0.869099,0.19243,0.0998839,0.444935,0.16909,0.806848,0.768411,0.249647,0.813235,0.0100105,0.0378147,0.703068,0.733912,0.784956,0.990729,0.822419,0.264658,0.787853,0.362359,0.782533,0.488322,0.808205,0.616783,0.0231982,0.436801,0.319181,0.6835,0.248027,0.45535,0.71071,0.431021,0.907149,0.190449,0.73595,0.410072,0.822808,0.251142,0.978657,0.979888,0.325507,0.318907,0.399187,0.904056,0.882132,0.448764,0.667915,0.489557,0.268931,0.0830708,0.991165,0.126315,0.644031,0.0200477,0.509863,0.753082,0.903716,0.0530246,0.283327,0.402399,0.508744,0.286126,0.854237,0.2174,0.616853,0.282211,0.7667,0.547171,0.298888,0.856155,0.39492,0.37901,0.382375,0.507661,0.82987,0.262786,0.651821,0.209312,0.446074,0.570231,0.156551,0.274453,0.511756,0.138745,0.488954,0.576542,0.560728,0.0717497,0.590997,0.84305,0.859193,0.0858592,0.0810902,0.513172,0.623537,0.605447,0.433613,0.749956,0.498729,0.140872,0.457994,0.151144,0.424526,0.866259,0.932206,0.913986,0.0339987,0.820295,0.140883,0.9451,0.373257,0.638898,0.0360162,0.930541,0.596984,0.60487,0.0831465,0.7934,0.705118,0.0690172,0.000970006,0.903604,0.690016,0.720481,|0.827711,0.988936,0.62579,0.237366,0.205671,0.135687,0.241911,0.352556,0.154859,0.455103,0.783511,0.378233,0.853387,0.00105101,0.187156,0.483868,0.484066,0.283488,0.0851064,0.362674,0.248676,0.544603,0.832718,0.475699,0.871185,0.607407,0.726161,0.47951,0.978469,0.286832,0.0892743,0.562502,0.683326,0.673521,0.487481,0.866264,0.818742,0.224485,0.676942,0.720794,0.838257,0.45244,0.0210538,0.0358772,0.550135,0.0274318,0.336933,0.430826,0.942029,0.00458539,0.30045,0.519437,0.234268,0.905522,0.569946,0.944536,0.164116,0.0759831,0.709844,0.484273,0.338352,0.553207,0.914905,0.904625,0.293401,0.181869,0.539459,0.164533,0.184809,0.67909,0.574331,0.656937,0.644842,0.234855,0.316304,0.821447,0.82504,0.693581,0.643168,0.967787,0.931745,0.872751,0.940047,0.990031,0.715397,0.188672,0.555568,0.567291,0.443492,0.896284,0.357458,0.516355,0.79646,0.856714,0.209269,0.258561,0.362604,0.412212,0.684592,0.659393,0.534545,0.440773,0.984894,0.730154,0.950945,0.225644,0.689909,0.340395,0.409537,0.246974,0.958446,0.0184191,0.0209309,0.611104,0.714882,0.00278825,0.364052,0.0307009,0.962224,0.330612,0.000779033,0.698311,0.0198008,0.19178,0.498025,0.145505,0.358251,0.407603,0.108016,0.512398,0.552066,0.626521,0.279015,0.448084,0.721612,0.753306,0.914795,0.450806,0.848777,0.0703045,0.134908,0.669682,0.978571,0.275743,0.106539,0.64669,0.388062,0.315542,0.095429,0.577919,0.804887,0.212271,0.527782,0.185617,0.737788,0.795727,0.251818,0.00293356,0.301619,0.418491,0.430158,0.92369,0.665398,0.98446,0.293865,0.209268,0.221038,0.139811,0.52683,0.172525,0.201955,0.837176,0.218007,0.231874,0.0432715,0.194379,0.281616,0.511633,0.862788,0.397492,0.267518,0.153482,0.562006,0.0382752,0.392277,0.258301,0.616021,0.526569,0.277048,0.546084,0.120076,0.278677,0.243506,0.520575,0.306969,0.959268,0.332746,0.923353,0.725278,0.17277,0.765658,0.211093,0.990892,0.465262,0.134406,0.51339,0.258988,0.599246,0.0261009,0.870666,0.509786,0.559741,0.985914,0.0971847,0.64944,0.527631,0.948324,0.275444,0.625008,0.0872937,0.587692,0.0485023,0.168676,0.321068,0.970015,0.791377,0.100832,0.686909,0.54033,0.894262,0.75579,0.175613,0.623469,0.194172,0.806961,0.573562,0.462251,0.804994,0.88233,0.900148,0.883738,0.755311,0.824002,0.566922,0.333301,0.376777,0.882383,0.368797,0.0157941,0.801357,0.917888,0.675002,0.802001,0.638327,0.179635,0.557779,0.366463,0.476123,0.242475,0.0783967,0.748966,0.987476,0.0294416,0.419139,0.533187,0.580488,0.415268,0.69272,0.081207,0.518581,0.648363,0.218128,0.933217,0.00821602,0.819384,0.698766,0.254854,0.153709,0.945327,0.909803,0.189109,0.648802,0.654895,0.894022,0.893766,0.578246,0.919901,0.000667632,0.838095,0.849244,0.550034,0.688587,0.639047,0.0920661,0.779172,0.854089,0.10893,0.799015,0.987183,0.0674047,0.823101,0.460362,0.813472,0.808352,0.95313,0.11422,0.260247,0.203471,0.958868,0.0459869,0.2356,0.23462,0.836103,0.048321,0.218245,0.329494,0.0865355,0.550669,0.205126,0.384066,0.729543,0.893909,0.513636,0.247709,0.446696,0.488209,0.945961,0.291538,0.645652,0.567782,0.0903326,0.819421,0.668572,0.82957,0.933469,0.0424482,0.803067,0.123027,0.187846,0.418932,0.00895101,0.823595,0.428421,0.663897,0.551459,0.838571,0.936571,0.311534,0.327582,0.0698673,0.684613,0.120615,0.552717,0.162889,0.370705,0.327707,0.653012,0.265503,0.956491,0.0458589,0.963286,0.197769,0.369478,0.0579448,0.586606,0.972724,0.100897,0.179159,0.858025,0.496155,0.765146,0.0550677,0.598359,0.0280007,0.287605,0.853282,0.122181,0.756506,0.0236718,0.871235,0.795796,0.384859,0.710844,0.700479,0.667139,0.271655,0.613462,0.0491596,0.560983,0.315076,0.288789,0.480002,0.167225,0.568413,0.801454,0.262871,0.36857,0.0339646,0.681446,0.950293,0.764334,0.578653,0.516743,0.471609,0.464575,0.972518,0.834761,0.47021,0.97913,0.382369,0.0703998,0.126055,0.792537,0.727676,0.567726,0.506831,0.963227,0.480948,0.162342,0.868354,0.373055,0.713526,0.123515,0.97172,0.122495,0.0490917,0.336155,0.0554082,0.365102,0.772418,0.60942,0.76015,0.80604,0.489815,0.938579,0.702677,0.0305789,0.0407518,0.277748,0.430067,0.939336,0.68017,0.498652,0.638214,0.34569,0.767178,0.618502,0.872592,0.193086,0.863129,0.206873,0.213987,0.595149,0.541025,0.950513,0.224898,0.0248854,0.356652,0.345438,0.513844,0.956442,0.775729,0.0370269,0.280831,0.79273,0.73446,0.156201,0.258418,0.567886,0.0835342,0.824749,0.408807,0.901862,0.340967,0.791971,0.419326,0.164905,0.205153,0.925924,0.883044,0.453064,0.994774,0.818605,0.300187,0.769427,0.265822,0.342225,0.516275,0.872098,0.846561,0.536814,0.134796,0.0195939,0.248589,0.351455,0.321279,0.859927,0.123432,0.702548,0.328259,0.77158,0.584814,0.137276,0.154626,0.812402,0.332596,0.134774,0.33749,0.0238112,0.635528,0.105958,0.336181,0.0572915,0.343897,0.512923,0.925074,0.077051,0.131688,0.137691,0.41801,0.459086,0.0548137,0.807691,0.3771,0.67892,0.379703,0.802055,0.847051,0.853898,0.612339,0.837793,0.0186803,0.784714,0.612566,0.919024,0.455395,0.913676,0.367261,0.175151,0.273434,0.300471,0.605263,0.445072,0.593845,0.19365,0.722265,0.106808,0.0662652,0.0896561,0.892182,0.767258,0.96049,0.80218,0.000304163,0.0776024,0.970422,0.208097,0.232171,0.6462,0.0331542,0.953183,0.469675,0.812397,0.549066,0.120371,0.359552,0.271752,0.394114,0.318674,0.0155455,0.68309,0.0395511,0.764287,0.704026,0.477108,0.707449,0.763775,0.184268,0.641572,0.826668,0.471162,0.918912,0.954613,0.0480678,0.00190377,0.735554,0.755059,0.374348,0.138159,0.522885,0.255474,0.876358,0.711265,0.636995,0.780497,0.943597,0.647877,0.329683,0.751292,0.736115,0.0584702,0.817721,0.0566156,0.958618,0.806569,0.120221,0.932184,0.225818,0.466043,0.961474,0.585503,0.690397,0.480024,0.306045,0.746318,0.636391,0.135215,0.551513,0.440916,0.529827,0.97792,0.909461,0.979805,0.309032,0.712977,0.764717,0.332824,0.822191,0.72796,0.625942,0.936851,0.32121,0.0399403,0.70387,0.535695,0.442693,0.318654,0.736654,0.590023,0.196753,0.398673,0.0912452,0.574254,0.264882,0.141398,0.254837,0.786533,0.330375,0.647483,0.993633,0.150221,0.0536484,0.2221,0.541545,0.777827,0.0140095,0.622152,0.576585,0.496926,0.343885,0.407418,0.833206,0.921537,0.792132,0.257767,0.907128,0.247169,0.653123,0.0433542,0.205693,0.20791,0.644988,0.138023,0.685189,0.526493,0.422939,0.854362,0.190969,0.823226,0.847296,0.0324233,0.724023,0.655442,0.147316,0.916369,0.534279,0.493864,0.0318986,0.48715,0.933199,0.518411,0.519802,0.898031,0.164701,0.0170929,0.526928,0.98029,0.117181,0.77492,0.683423,0.603169,0.798717,0.491156,0.993557,0.687359,0.683011,0.157873,0.231529,0.317078,0.86025,0.286379,0.161994,0.344749,0.817185,0.393403,0.328505,0.127094,0.0763237,0.732549,0.723805,0.616855,0.045274,0.375255,0.591706,0.267169,0.216139,0.348248,0.327543,0.877919,0.497599,0.109657,0.769381,0.892278,0.429488,0.262765,0.840914,0.728514,0.610852,0.209272,0.447305,0.743904,0.3451,0.576504,0.854649,0.507476,0.358654,0.442751,0.0679253,0.247273,0.896051,0.266261,0.626837,0.110324,0.130888,0.515712,0.503235,0.586676,0.18374,0.560228,0.0439448,0.365444,0.880453,0.0802468,0.866888,0.233843,0.359602,0.509679,0.290403,0.885037,0.966287,0.0681776,0.800767,0.162054,0.282439,0.0763372,0.718216,0.268713,0.553287,0.552229,0.5686,0.217009,0.279839,0.22646,0.835196,0.380244,0.977662,0.684487,0.90987,0.401693,0.191887,0.639985,0.377058,0.951385,0.454256,0.194776,0.477538,0.261939,0.434614,0.907747,0.874052,0.322263,0.00224209,0.0611326,0.595481,0.627573,0.11422,0.359075,0.237818,0.172523,0.309134,0.152151,0.855202,0.810422,0.169095,0.934167,0.210957,0.86755,0.656891,0.641578,0.598876,0.381803,0.850734,0.231479,0.197858,0.499424,0.251061,0.631009,0.445014,0.4096,0.304623,0.299877,0.475304,0.246394,0.569204,0.479708,0.0362507,0.034925,0.957246,0.8149,0.798174,0.89871,0.9342,0.676899,0.754438,0.908107,0.936382,0.0551605,0.38405,0.856105,0.328665,0.982528,0.97144,0.814854,0.447131,0.748902,0.407593,0.871321,0.617898,0.52388,0.539145,0.299409,0.0308682,0.22438,0.834362,0.0879571,0.0761658,0.577638,0.52243,0.277679,0.345748,0.799555,0.714001,0.673956,0.35361,0.204875,0.378749,0.382917,0.708255,0.339406,0.705874,0.673087,0.697858,0.483453,0.508848,0.192199,0.868885,0.739905,0.608892,0.725389,0.951236,0.233227,0.970586,0.771393,0.525848,0.15307,0.15283,0.836893,0.24147,0.49146,0.36385,0.323624,0.580375,0.192041,0.678701,0.345769,0.0705606,0.742856,0.830813,0.622955,0.270553,0.062577,0.69655,0.626906,0.977702,0.170398,0.231122,0.46539,0.403157,0.638607,0.740135,0.533768,0.0786808,0.962614,0.391892,0.680027,0.336531,0.943151,0.89829,0.0654278,0.132112,0.190194,0.437546,0.376009,0.822682,0.0371056,0.502192,0.0493203,0.889427,0.638065,0.890912,0.931523,0.373357,0.810672,0.823489,0.378489,0.294623,0.25309,0.15396,0.966725,0.0149839,0.257124,0.944936,0.209093,0.234066,0.72801,0.528945,0.511776,0.794723,0.920288,0.93847,0.670631,0.241504,0.588962,0.632697,0.0586072,0.406986,0.0116829,0.923666,0.8007,0.106936,0.649252,0.291169,0.662131,0.723382,0.973167,0.769519,0.481082,0.784392,0.579435,0.826101,0.77668,0.045339,0.269867,0.443241,0.386193,0.314394,0.969093,0.5669,0.435095,0.658145,0.535553,0.799565,0.495088,0.667704,0.896336,0.768061,0.15616,0.318151,0.28424,0.19856,|0.310944,0.541894,0.845867,0.303334,0.947361,0.626418,0.0461902,0.609378,0.901701,0.704622,0.563025,0.555778,0.093005,0.812034,0.0372503,0.711553,0.174899,0.459832,0.0994674,0.864446,0.815352,0.354084,0.610827,0.621344,0.0479621,0.805029,0.26183,0.569816,0.918737,0.966419,0.521227,0.986159,0.0115176,0.21502,0.194977,0.347298,0.268727,0.376881,0.681359,0.376304,0.191778,0.94303,0.023828,0.473793,0.307006,0.804429,0.969246,0.220425,0.200777,0.500216,0.942537,0.848146,0.194972,0.437727,0.449067,0.835702,0.645508,0.862783,0.893153,0.0952916,0.906307,0.591111,0.315851,0.881946,0.394731,0.329864,0.386,0.562537,0.477331,0.507876,0.94474,0.253768,0.653042,0.755522,0.829006,0.0540536,0.813905,0.524538,0.732498,0.0372193,0.0945962,0.212713,0.319934,0.302325,0.054615,0.595912,0.215718,0.735071,0.469836,0.670033,0.985097,0.713138,0.55853,0.46922,0.467318,0.492683,0.344918,0.659837,0.826157,0.487626,0.402581,0.469716,0.24808,0.394739,0.278867,0.633842,0.937294,0.394991,0.674742,0.726641,0.141669,0.867453,0.614307,0.201798,0.88333,0.123299,0.190556,0.933134,0.91481,0.10385,0.0882361,0.281082,0.865713,0.0484493,0.319792,0.181565,0.95449,0.3875,0.19442,0.301578,0.0485495,0.741644,0.692283,0.177899,0.362568,0.759377,0.779764,0.146486,0.363594,0.317032,0.499719,0.901723,0.803727,0.517927,0.23756,0.53022,0.944004,0.932998,0.00278878,0.640341,0.774548,0.189189,0.653347,0.457112,0.369446,0.26803,0.205335,0.696641,0.326882,0.924331,0.710626,0.611984,0.876306,0.92751,0.0760426,0.751653,0.648406,0.734823,0.75998,0.415838,0.216659,0.0870632,0.811942,0.86977,0.0593465,0.932931,0.665771,0.948042,0.12456,0.085397,0.443572,0.982822,0.473353,0.424311,0.803839,0.478342,0.657676,0.349026,0.987529,0.653081,0.832459,0.61224,0.876953,0.0523961,0.811423,0.820819,0.69051,0.65065,0.716095,0.591934,0.216799,0.240915,0.60452,0.475242,0.251166,0.877747,0.295608,0.256256,0.588143,0.245146,0.144163,0.0894057,0.180061,0.722184,0.18728,0.0699816,0.0409601,0.387946,0.629249,0.127675,0.734951,0.177182,0.515768,0.533701,0.950517,0.569688,0.128513,0.683895,0.6048,0.283937,0.799062,0.406931,0.712501,0.975321,0.875483,0.909386,0.473665,0.212737,0.540681,0.258996,0.417735,0.122025,0.257885,0.764506,0.605605,0.0738827,0.0736771,0.142961,0.728286,0.940526,0.656993,0.82154,0.841514,0.352612,0.274481,0.174742,0.825474,0.933517,0.811987,0.954783,0.522288,0.879538,0.834884,0.797647,0.518513,0.948442,0.102016,0.191938,0.114232,0.0228081,0.244946,0.256031,0.833059,0.874936,0.986581,0.280974,0.360216,0.228944,0.847334,0.846818,0.201872,0.978423,0.368906,0.830264,0.0932577,0.218839,0.872679,0.312497,0.333174,0.538948,0.899441,0.131031,0.675773,0.520173,0.177161,0.151895,0.174961,0.740419,0.537612,0.464804,0.811439,0.592175,0.170003,0.26248,0.497075,0.739075,0.4798,0.789734,0.717009,0.920716,0.337643,0.931811,0.487099,0.793652,0.409885,0.721443,0.0261923,0.931206,0.135766,0.261758,0.70491,0.308324,0.520109,0.376521,0.993847,0.0433573,0.847064,0.435684,0.667714,0.778,0.0856085,0.549338,0.254609,0.34545,0.764817,0.240944,0.160955,0.717849,0.292124,0.372608,0.868009,0.887559,0.917427,0.900358,0.357915,0.476296,0.346842,0.771616,0.518995,0.859883,0.557604,0.0297847,0.394094,0.74591,0.482733,0.446909,0.304208,0.635621,0.78251,0.523797,0.0343138,0.488365,0.405455,0.793206,0.776245,0.840743,0.48892,0.00936675,0.507779,0.594402,0.328862,0.501775,0.820255,0.801157,0.00220692,0.808609,0.520019,0.809645,0.0575955,0.57795,0.8185,0.120342,0.0467041,0.781641,0.535065,0.468418,0.640362,0.0244874,0.0690829,0.685145,0.748977,0.290908,0.886695,0.758725,0.962048,0.421853,0.397519,0.0679224,0.000651181,0.826367,0.61494,0.371689,0.0134961,0.161799,0.974124,0.62939,0.100631,0.789984,0.481723,0.928667,0.952146,0.365311,0.531962,0.878914,0.40498,0.462259,0.0184258,0.503254,0.429944,0.21909,0.316414,0.322944,0.546048,0.129817,0.529385,0.259638,0.427757,0.981762,0.781418,0.0993187,0.388972,0.455497,0.99336,0.875691,0.433123,0.362095,0.651961,0.813193,0.671632,0.102779,0.941555,0.541601,0.160301,0.160743,0.551923,0.673832,0.949765,0.204577,0.995525,0.189911,0.801881,0.517294,0.336074,0.886426,0.455938,0.332585,0.471871,0.90575,0.977883,0.0338037,0.428366,0.0276712,0.71239,0.466919,0.22248,0.891906,0.979584,0.380139,0.628846,0.449141,0.403682,0.254832,0.715344,0.784877,0.194981,0.609604,0.555031,0.16234,0.80507,0.581702,0.00699216,0.116703,0.445462,0.0854358,0.748065,0.25629,0.608002,0.782165,0.765562,0.277916,0.898081,0.667879,0.268269,0.973041,0.398809,0.367055,0.447647,0.853673,0.961672,0.285331,0.926347,0.0293484,0.256825,0.287953,0.567958,0.0748199,0.320283,0.558364,0.0439323,0.638827,0.449486,0.618337,0.00304514,0.0623914,0.877702,0.392588,0.858649,0.109796,0.803986,0.631395,0.442911,0.821037,0.151231,0.646329,0.578709,0.0413382,0.554227,0.652907,0.5162,0.649135,0.182057,0.53659,0.168842,0.332783,0.73903,0.33294,0.450451,0.442496,0.281475,0.829427,0.317017,0.32321,0.174473,0.35757,0.0334919,0.195669,0.907914,0.577157,0.678373,0.182987,0.373775,0.392124,0.132113,0.651615,0.616031,0.181073,0.0265002,0.434753,0.193713,0.389636,0.0848843,0.69396,0.28867,0.374021,0.915959,0.585045,0.429674,0.433628,0.615799,0.916898,0.350326,0.778848,0.13878,0.686111,0.234701,0.49117,0.339024,0.98914,0.585714,0.694767,0.822746,0.330297,0.0322941,0.513139,0.331206,0.827363,0.418574,0.0513347,0.868028,0.994595,0.5229,0.310159,0.283024,0.149128,0.0485121,0.0920087,0.96759,0.659455,0.555233,0.0394658,0.678322,0.38392,0.774799,0.476139,0.160432,0.891213,0.661781,0.99689,0.424384,0.464239,0.13934,0.654676,0.359351,0.20444,0.00920814,0.819979,0.807811,0.0653635,0.122792,0.448691,0.0554442,0.615537,0.903123,0.695165,0.592992,0.805198,0.742779,0.0954155,0.368251,0.57684,0.5391,0.131922,0.877294,0.260788,0.0225459,0.447956,0.388426,0.116207,0.0143539,0.559062,0.318905,0.819633,0.546561,0.388744,0.190823,0.333783,0.588532,0.396926,0.174473,0.656237,0.822101,0.543054,0.548103,0.776253,0.612932,0.784754,0.769793,0.489389,0.375489,0.294196,0.733209,0.378787,0.744645,0.959555,0.0893903,0.168462,0.405775,0.288501,0.781223,0.761073,0.700976,0.809712,0.562804,0.0174508,0.20272,0.760037,0.712177,0.00861633,0.480626,0.80698,0.817722,0.753415,0.228513,0.407908,0.207811,0.228323,0.968074,0.0344791,0.88988,0.0794752,0.893591,0.081188,0.0746171,0.0677298,0.910949,0.423061,0.846457,0.903694,0.0831478,0.177633,0.896679,0.780834,0.865939,0.983632,0.727162,0.301876,0.686575,0.427624,0.300808,0.305815,0.511122,0.254391,0.578258,0.815184,0.176488,0.441266,0.230036,0.923829,0.713771,0.828333,0.249544,0.267124,0.781638,0.714472,0.40402,0.573895,0.971713,0.321503,0.88877,0.785659,0.332631,0.652735,0.0782014,0.985046,0.613273,0.427289,0.865352,0.319109,0.711713,0.0775406,0.542125,0.998708,0.163889,0.81476,0.327242,0.88992,0.994852,0.236347,0.40238,0.78057,0.928661,0.276926,0.257065,0.24577,0.289484,0.87218,0.439519,0.457804,0.170054,0.548804,0.90809,0.962525,0.0215788,0.14819,0.344245,0.492401,0.228168,0.0814878,0.829027,0.868849,0.268676,0.703654,0.913125,0.208501,0.273401,0.985548,0.366377,0.304932,0.746261,0.143562,0.427246,0.246762,0.282764,0.225709,0.996534,0.479255,0.707658,0.868622,0.671702,0.848559,0.219167,0.673498,0.109652,0.563604,0.649539,0.504692,0.712524,0.662085,0.249998,0.298041,0.112665,0.798765,0.268446,0.449954,0.617417,0.753593,0.91301,0.0936915,0.508741,0.441288,0.840513,0.630209,0.785231,0.501385,0.219158,0.904593,0.590884,0.0702155,0.72498,0.29571,0.431299,0.172579,0.290672,0.472113,0.240832,0.972338,0.190328,0.274525,0.35897,0.274227,0.696761,0.512591,0.844892,0.263162,0.216406,0.289582,0.313249,0.606936,0.656756,0.0687743,0.881321,0.0124313,0.870189,0.712696,0.490764,0.979726,0.449207,0.665169,0.945928,0.384007,0.708611,0.836042,0.625746,0.216435,0.677916,0.873726,0.801778,0.65256,0.0203878,0.413723,0.506829,0.462319,0.788599,0.93229,0.11317,0.348637,0.110294,0.757765,0.688558,0.701441,0.807213,0.116109,0.557611,0.779855,0.720631,0.604555,0.612459,0.077611,0.277534,0.623628,0.443539,0.167226,0.00768977,0.504255,0.0878868,0.485506,0.738971,0.600916,0.113119,0.790491,0.156519,0.174599,0.224887,0.890868,0.985841,0.9447,0.0507955,0.236065,0.556525,0.0220659,0.951873,0.804045,0.726607,0.77647,0.716605,0.479973,0.210707,0.431689,0.6222,0.42634,0.569144,0.883602,0.471701,0.0388171,0.0790825,0.13724,0.138482,0.674002,0.0603673,0.948419,0.0692696,0.632998,0.901478,0.753807,0.838129,0.0556602,0.0456933,0.519658,0.382953,0.679147,0.493139,0.235064,0.636737,0.329104,0.707973,0.854918,0.348036,0.59384,0.273965,0.261317,0.340435,0.917913,0.231388,0.77621,0.129303,0.599301,0.281194,0.398381,0.31681,0.44373,0.718084,0.973779,0.385701,0.833592,0.0274818,0.677432,0.460455,0.265985,0.425798,0.597817,0.94801,0.16734,0.200442,0.266785,0.32233,0.313851,0.756999,0.0484458,0.85411,0.577918,0.768427,0.577444,0.910691,0.786319,0.0578735,0.273921,0.0928408,0.166108,0.588332,0.0291649,0.0199367,0.553612,0.728908,0.300612,0.517841,0.799577,0.362881,0.84024,0.203758,0.978687,0.695034,0.773631,0.755124,0.89132,0.00751287,0.946186,0.177857,0.223016,0.819789,0.733808,|0.711225,0.13224,0.561107,0.274576,0.671502,0.460153,0.856323,0.446815,0.639359,0.16329,0.0669225,0.4613,0.0372059,0.543166,0.196885,0.171142,0.0566778,0.0989227,0.05841,0.422397,0.000933588,0.765922,0.306399,0.467559,0.15066,0.882915,0.734816,0.931957,0.167982,0.516143,0.772537,0.613114,0.633191,0.12832,0.765457,0.138659,0.673726,0.287896,0.384888,0.540969,0.756412,0.131775,0.56968,0.182634,0.00117159,0.381837,0.950063,0.0908719,0.0947797,0.583903,0.21619,0.445801,0.154693,0.958824,0.919176,0.220376,0.20529,0.330348,0.87744,0.411493,0.715698,0.971402,0.649697,0.937469,0.829987,0.361627,0.139159,0.764969,0.185712,0.483551,0.670719,0.881169,0.871604,0.507995,0.692962,0.894223,0.28056,0.74908,0.881839,0.0406818,0.523413,0.526299,0.540493,0.397831,0.0816846,0.103394,0.991484,0.287726,0.964066,0.455148,0.315608,0.547089,0.423167,0.102378,0.21021,0.220971,0.397392,0.776126,0.798566,0.499577,0.686374,0.0846717,0.457604,0.34003,0.147887,0.715571,0.498517,0.37555,0.44918,0.0150407,0.589869,0.504515,0.681281,0.900821,0.842722,0.279573,0.927712,0.280439,0.399786,0.674235,0.348788,0.986752,0.489781,0.675145,0.846448,0.901878,0.928407,0.131624,0.886942,0.179807,0.245086,0.259449,0.724405,0.481713,0.531893,0.748191,0.557045,0.428417,0.960217,0.718874,0.310232,0.76156,0.0379824,0.894994,0.571489,0.533564,0.953881,0.828005,0.755554,0.204023,0.152111,0.0154288,0.886613,0.843251,0.103617,0.926252,0.58645,0.725379,0.432615,0.325948,0.893639,0.821869,0.550185,0.874862,0.299225,0.474588,0.754746,0.227356,0.808472,0.266318,0.894762,0.876935,0.495817,0.229958,0.316389,0.284023,0.846876,0.966716,0.976301,0.531481,0.0150137,0.794591,0.183633,0.305277,0.337399,0.554274,0.0245566,0.344862,0.244578,0.867291,0.846099,0.240439,0.0543222,0.163887,0.457668,0.552609,0.207172,0.471649,0.504556,0.0989572,0.668883,0.413796,0.42945,0.600538,0.772291,0.585971,0.682823,0.485301,0.231448,0.646602,0.795737,0.177416,0.208077,0.336529,0.688189,0.508579,0.26572,0.0477291,0.419926,0.576164,0.505422,0.575723,0.38763,0.298376,0.347001,0.0625097,0.944292,0.864199,0.618328,0.938535,0.168826,0.259314,0.383853,0.453576,0.646301,0.676591,0.341674,0.982751,0.642743,0.330365,0.42614,0.13769,0.0540053,0.863713,0.024789,0.0228336,0.48608,0.577645,0.707287,0.675203,0.571568,0.250109,0.455763,0.554382,0.454772,0.748684,0.415759,0.053268,0.565377,0.437786,0.209783,0.92066,0.624533,0.535036,0.191823,0.50028,0.620201,0.489236,0.0963355,0.218167,0.135198,0.415192,0.830394,0.75915,0.803873,0.108307,0.681103,0.456405,0.998728,0.0676621,0.244265,0.855479,0.731039,0.628567,0.567648,0.45362,0.92456,0.411271,0.705882,0.276951,0.575915,0.154262,0.738829,0.0713648,0.716683,0.351528,0.474256,0.687487,0.189648,0.134525,0.100139,0.738258,0.828425,0.624453,0.251367,0.674991,0.800997,0.148041,0.217827,0.225638,0.870516,0.573212,0.996174,0.0416691,0.644066,0.147332,0.85987,0.915852,0.459934,0.314559,0.997249,0.896887,0.226546,0.530311,0.0270948,0.346069,0.375296,0.353543,0.00409651,0.330897,0.217618,0.243709,0.483883,0.676525,0.81971,0.345245,0.155132,0.747896,0.337545,0.416363,0.334802,0.257079,0.872089,0.561743,0.566124,0.0285224,0.00862575,0.0759878,0.702695,0.755941,0.8964,0.664785,0.743444,0.0802156,0.48145,0.123953,0.0067929,0.522641,0.604674,0.646435,0.0611247,0.17217,0.109744,0.714799,0.0884882,0.910372,0.66196,0.534878,0.719179,0.0661309,0.536773,0.157972,0.412694,0.00754732,0.731649,0.0537894,0.189183,0.404292,0.682882,0.40824,0.210406,0.638995,0.922369,0.99651,0.0755698,0.821109,0.734299,0.976001,0.0533121,0.507675,0.980734,0.97931,0.158852,0.47745,0.167985,0.88124,0.694423,0.20238,0.490298,0.362742,0.46121,0.335793,0.33593,0.750276,0.156613,0.528974,0.277178,0.698349,0.35121,0.50416,0.290573,0.653478,0.556697,0.0269819,0.612865,0.0594267,0.014617,0.27432,0.735401,0.721427,0.270401,0.345271,0.488316,0.615336,0.776649,0.135816,0.38887,0.228823,0.229518,0.877155,0.601929,0.87656,0.729637,0.248033,0.0254093,0.159065,0.613732,0.992165,0.716967,0.0816037,0.0442227,0.704107,0.0346284,0.790716,0.760846,0.330128,0.178592,0.278763,0.660857,0.872358,0.236468,0.55513,0.575328,0.811712,0.412084,0.906219,0.0911919,0.237604,0.817315,0.547097,0.480239,0.363929,0.998071,0.503557,0.483288,0.598405,0.0429237,0.880874,0.635924,0.86583,0.785854,0.80338,0.190856,0.919365,0.721699,0.401664,0.122551,0.0954553,0.250088,0.999335,0.598654,0.686962,0.718566,0.66368,0.676487,0.400703,0.742376,0.695382,0.451814,0.426109,0.233336,0.142815,0.100216,0.322702,0.832878,0.0523052,0.96366,0.0930836,0.687323,0.615325,0.581207,0.912902,0.579276,0.881086,0.747248,0.572346,0.0194969,0.755128,0.488634,0.649047,0.923565,0.268998,0.439843,0.729285,0.268708,0.985254,0.659384,0.496506,0.877512,0.0722452,0.813391,0.0936601,0.717642,0.601531,0.7307,0.215675,0.573356,0.85817,0.968841,0.504046,0.503918,0.875235,0.179962,0.45717,0.975523,0.813435,0.289034,0.513349,0.0100845,0.754037,0.398591,0.334309,0.733321,0.18493,0.245367,0.759072,0.0835589,0.0489922,0.176275,0.749151,0.721475,0.869337,0.694087,0.968141,0.48043,0.0484593,0.803155,0.481895,0.584241,0.661272,0.466916,0.239445,0.735576,0.108806,0.901824,0.256854,0.509966,0.209432,0.43865,0.82105,0.389695,0.236064,0.756761,0.176951,0.727396,0.230234,0.41692,0.825335,0.281687,0.0935572,0.523395,0.20958,0.339222,0.355682,0.0220645,0.545305,0.456829,0.838683,0.742012,0.0181991,0.840809,0.376581,0.0899001,0.639101,0.698321,0.0906004,0.0615087,0.528627,0.462557,0.874856,0.095561,0.339198,0.539845,0.369675,0.552788,0.937384,0.731175,0.00891256,0.58757,0.962383,0.54608,0.820194,0.796343,0.0723803,0.496067,0.801954,0.997203,0.482808,0.711347,0.0947577,0.0676687,0.967665,0.968378,0.901625,0.170859,0.916496,0.0502636,0.462961,0.128624,0.311635,0.870466,0.173551,0.21624,0.623189,0.150922,0.540315,0.384679,0.412568,0.111638,0.845147,0.548515,0.558493,0.58163,0.386307,0.003304,0.725865,0.0711242,0.212317,0.0229711,0.0407897,0.733227,0.211326,0.0385965,0.286531,0.14931,0.497418,0.443189,0.95422,0.654168,0.750809,0.112474,0.0464643,0.921983,0.246083,0.161654,0.0214891,0.970133,0.161968,0.245538,0.740511,0.385693,0.708891,0.913031,0.823071,0.518935,0.918263,0.164826,0.782682,0.631326,0.175927,0.791221,0.884824,0.750194,0.583366,0.462416,0.811521,0.16343,0.352593,0.495389,0.752428,0.443728,0.126409,0.900021,0.786575,0.575723,0.937866,0.30089,0.425302,0.93924,0.0901139,0.805062,0.740514,0.338544,0.643418,0.825789,0.628794,0.0915243,0.632835,0.953558,0.297894,0.592502,0.687337,0.689011,0.651469,0.274777,0.528644,0.986885,0.110245,0.501498,0.741124,0.809457,0.641332,0.0639496,0.923509,0.614496,0.240895,0.382973,0.270502,0.754686,0.220358,0.287481,0.68518,0.523635,0.378095,0.453001,0.0359114,0.966794,0.533798,0.466766,0.0988892,0.87883,0.723742,0.893237,0.696567,0.328628,0.362432,0.559519,0.261223,0.597812,0.482456,0.194744,0.0492061,0.0421956,0.752693,0.789637,0.655181,0.597543,0.0159574,0.883625,0.699836,0.83248,0.0220353,0.966644,0.550336,0.175133,0.54314,0.140782,0.672504,0.0136973,0.682074,0.641927,0.461089,0.354271,0.362436,0.576677,0.360894,0.763014,0.307384,0.220311,0.897276,0.6883,0.357351,0.968476,0.702905,0.997376,0.166027,0.151781,0.354495,0.877137,0.328203,0.281882,0.41476,0.759174,0.191182,0.403855,0.0277103,0.597382,0.417594,0.831418,0.934423,0.69187,0.625499,0.424874,0.471542,0.973138,0.0246884,0.339793,0.920157,0.688842,0.197728,0.475475,0.538932,0.836024,0.0553982,0.509845,0.178031,0.760345,0.446984,0.424239,0.701372,0.792815,0.670278,0.0104781,0.250745,0.983242,0.342704,0.992985,0.796563,0.905178,0.571794,0.0906438,0.932499,0.643461,0.815088,0.088559,0.0854341,0.606902,0.072833,0.334658,0.157917,0.222629,0.84607,0.0112612,0.422293,0.207781,0.244368,0.821417,0.213769,0.191415,0.347308,0.44751,0.31928,0.614448,0.748391,0.201654,0.227019,0.7534,0.109503,0.566756,0.996397,0.017257,0.722358,0.860232,0.652586,0.0182921,0.146763,0.590367,0.949394,0.534786,0.71562,0.711576,0.961073,0.32282,0.998151,0.293872,0.667001,0.4502,0.344803,0.701355,0.242198,0.547387,0.66211,0.802031,0.449899,0.361496,0.0957188,0.664951,0.556791,0.16111,0.868119,0.0401201,0.655014,0.951712,0.996901,0.188124,0.626962,0.172788,0.0970326,0.943885,0.0575277,0.75241,0.528904,0.985428,0.00203121,0.831272,0.0187443,0.965789,0.0146443,0.588302,0.990155,0.883248,0.350873,0.803675,0.873174,0.50488,0.231956,0.0722544,0.155195,0.494799,0.702491,0.0362573,0.717634,0.0590839,0.567204,0.905177,0.607429,0.256439,0.833867,0.0224544,0.199968,0.399391,0.0695204,0.493591,0.162383,0.147342,0.0344753,0.0863008,0.283075,0.689299,0.163098,0.692739,0.342977,0.766634,0.143777,0.0737978,0.382553,0.179183,0.628225,0.354598,0.8223,0.381763,0.139307,0.0999538,0.493162,0.989424,0.601456,0.993979,0.297989,0.396743,0.426044,0.328495,0.792273,0.246468,0.844093,0.240298,0.71599,0.629409,0.230623,0.408121,0.442793,0.836798,0.39066,0.519645,0.951062,0.90857,0.307061,0.190686,0.862522,0.114816,0.419191,0.651542,0.121715,0.977981,0.529696,0.170849,0.247494,0.577582,0.769937,0.760352,0.245359,0.021306,0.607223,0.510173,0.575116,0.441066,0.567303,0.401827,0.55024,0.233923,0.409644,|0.0329998,0.609035,0.114588,0.0327771,0.802874,0.818295,0.903879,0.951674,0.755965,0.971323,0.212287,0.718884,0.952006,0.508046,0.234271,0.63936,0.227368,0.864199,0.408789,0.255753,0.954782,0.982927,0.707803,0.794768,0.715625,0.448917,0.903284,0.262114,0.332769,0.414107,0.748801,0.236059,0.813929,0.280906,0.522808,0.543756,0.0674538,0.468642,0.261741,0.511014,0.737206,0.397718,0.931579,0.275576,0.722584,0.0119308,0.191859,0.572255,0.341968,0.393781,0.854546,0.102514,0.691693,0.826709,0.320239,0.501764,0.402374,0.0728804,0.865628,0.500191,0.458447,0.599011,0.332695,0.21359,0.937545,0.842363,0.587572,0.15964,0.794222,0.683808,0.230469,0.768546,0.986352,0.27346,0.200198,0.674542,0.354843,0.416571,0.904463,0.521707,0.104928,0.150931,0.131164,0.502723,0.816787,0.940983,0.98432,0.770823,0.316466,0.950579,0.529551,0.806924,0.363457,0.298591,0.805551,0.914842,0.24893,0.324816,0.444297,0.67462,0.518424,0.822476,0.46344,0.929813,0.173694,0.381536,0.678071,0.446094,0.0849037,0.345002,0.544494,0.324843,0.796404,0.663171,0.280006,0.115516,0.0958408,0.811433,0.758565,0.388015,0.443258,0.948906,0.460012,0.616269,0.887082,0.387839,0.440525,0.61561,0.219636,0.855697,0.35658,0.479625,0.0494384,0.062339,0.841589,0.324238,0.447559,0.980307,0.560116,0.0651969,0.150339,0.20643,0.0392627,0.79981,0.769049,0.861064,0.123856,0.617321,0.353952,0.899717,0.71101,0.48916,0.514072,0.754696,0.618524,0.636193,0.393807,0.774521,0.527297,0.671069,0.398888,0.482928,0.0631743,0.826933,0.641653,0.435526,0.715534,0.0735885,0.640756,0.793237,0.636303,0.00911438,0.582978,0.124518,0.118945,0.00369406,0.29655,0.929864,0.557562,0.750667,0.89108,0.194755,0.572083,0.766645,0.89797,0.668436,0.990597,0.0891885,0.0858831,0.361138,0.439314,0.454895,0.576873,0.379695,0.167451,0.0639446,0.409689,0.220051,0.729221,0.73601,0.519807,0.719776,0.969245,0.22601,0.572517,0.595459,0.137213,0.974966,0.336022,0.372054,0.254067,0.990282,0.642816,0.115965,0.809588,0.503148,0.41434,0.022581,0.073055,0.678427,0.997283,0.524811,0.375249,0.108494,0.211721,0.12673,0.362658,0.917586,0.275842,0.336305,0.693184,0.658699,0.0685265,0.363451,0.256699,0.807217,0.452736,0.652489,0.245216,0.866615,0.732185,0.956979,0.312289,0.560081,0.806854,0.317224,0.884856,0.966118,0.660171,0.798921,0.35705,0.456734,0.936262,0.136461,0.0866849,0.370804,0.170834,0.613415,0.709395,0.0970712,0.357906,0.800767,0.56877,0.865553,0.126557,0.834201,0.955489,0.179558,0.125218,0.941172,0.787532,0.0190839,0.784096,0.781539,0.10333,0.234586,0.393469,0.636186,0.669878,0.773088,0.475335,0.391073,0.301445,0.276693,0.816302,0.571429,0.702581,0.706737,0.266475,0.469458,0.095226,0.570218,0.635675,0.358356,0.110268,0.400406,0.302433,0.0866135,0.459171,0.550181,0.344802,0.811422,0.0429317,0.185874,0.324113,0.180182,0.432315,0.194756,0.75303,0.923062,0.878416,0.269334,0.581881,0.551873,0.257433,0.247606,0.0515288,0.875448,0.60214,0.984559,0.61185,0.237196,0.764835,0.418205,0.18778,0.986679,0.303575,0.92664,0.991967,0.339393,0.30237,0.318383,0.90447,0.663536,0.331219,0.757237,0.952893,0.909643,0.253857,0.528544,0.761324,0.693173,0.4237,0.42505,0.155961,0.610496,0.210818,0.523188,0.240043,0.495392,0.289039,0.377999,0.520683,0.459434,0.463174,0.55201,0.743331,0.44237,0.501441,0.669762,0.831358,0.0196424,0.180246,0.380872,0.22894,0.388157,0.972369,0.249882,0.247026,0.907535,0.485947,0.654168,0.547543,0.248453,0.256042,0.243864,0.82061,0.148891,0.973983,0.341942,0.0763581,0.509702,0.425751,0.290525,0.948252,0.79116,0.152026,0.33322,0.0116547,0.0453162,0.0626065,0.405007,0.559596,0.782983,0.965684,0.16526,0.571162,0.758857,0.634344,0.668067,0.815982,0.984214,0.489475,0.343952,0.850505,0.61317,0.804849,0.764787,0.941833,0.707412,0.306859,0.404347,0.524624,0.853418,0.591349,0.86555,0.96792,0.647383,0.723527,0.983366,0.176779,0.100104,0.0840685,0.991304,0.688739,0.515528,0.184946,0.673339,0.737279,0.59008,0.915316,0.903445,0.9487,0.26025,0.566102,0.671698,0.0720078,0.156058,0.659369,0.161179,0.916193,0.445805,0.533752,0.729598,0.152226,0.144105,0.880355,0.746567,0.50315,0.179478,0.145561,0.445786,0.157788,0.822204,0.597608,0.257071,0.97333,0.983433,0.721818,0.272372,0.0484986,0.725847,0.513029,0.0907844,0.603315,0.135793,0.583098,0.930055,0.574462,0.79819,0.519653,0.176037,0.589256,0.590238,0.425436,0.181392,0.468403,0.389908,0.995561,0.772391,0.956486,0.857909,0.461529,0.404991,0.205056,0.431466,0.294204,0.649695,0.0452636,0.742406,0.0595342,0.222287,0.0568087,0.268543,0.934675,0.873238,0.0035376,0.351227,0.918156,0.259491,0.451475,0.326833,0.627887,0.754722,0.0980372,0.305434,0.0850697,0.389969,0.890791,0.0119513,0.987973,0.249621,0.223361,0.957482,0.342378,0.166948,0.315175,0.191978,0.00891739,0.0999774,0.661919,0.783208,0.931046,0.768233,0.0692586,0.611017,0.505098,0.514827,0.810239,0.860462,0.527493,0.834444,0.0208926,0.567776,0.932642,0.745424,0.636764,0.605276,0.865824,0.090672,0.263063,0.255619,0.690206,0.115982,0.637018,0.577173,0.577719,0.495147,0.518814,0.406531,0.333732,0.367651,0.296603,0.193686,0.0209012,0.0230391,0.196605,0.743738,0.143117,0.481241,0.993882,0.737719,0.951511,0.84165,0.885659,0.705732,0.565007,0.930402,0.602052,0.18847,0.0400805,0.208388,0.00399125,0.0214382,0.163126,0.668934,0.269154,0.483114,0.227245,0.833909,0.110323,0.439131,0.350956,0.606146,0.34367,0.200414,0.16914,0.354343,0.541675,0.172822,0.718722,0.456651,0.59059,0.205851,0.775122,0.710988,0.0223963,0.958974,0.143828,0.379417,0.155873,0.232524,0.250614,0.353351,0.115399,0.558945,0.20681,0.850617,0.375388,0.693677,0.543171,0.178309,0.778205,0.699857,0.329197,0.924991,0.357127,0.427049,0.488565,0.714034,0.570828,0.671487,0.137757,0.448727,0.490145,0.150563,0.976669,0.143129,0.886534,0.959618,0.936687,0.67026,0.740653,0.558208,0.522456,0.851757,0.734124,0.188719,0.726892,0.776329,0.0988548,0.391926,0.842702,0.544266,0.95555,0.045621,0.557154,0.425707,0.0346155,0.90726,0.977036,0.99774,0.139682,0.91608,0.48429,0.0964976,0.641003,0.875199,0.0328429,0.508904,0.698893,0.0577189,0.28395,0.99624,0.653618,0.217025,0.966372,0.436708,0.808998,0.25221,0.465562,0.816916,0.223195,0.185573,0.472152,0.248564,0.489966,0.447769,0.0226853,0.510304,0.603072,0.137148,0.620821,0.186899,0.180055,0.576483,0.613611,0.548009,0.687982,0.897475,0.597596,0.699199,0.377064,0.576847,0.388008,0.769151,0.764879,0.887783,0.650933,0.489812,0.166697,0.04448,0.162116,0.993615,0.670155,0.248514,0.0372332,0.818791,0.976448,0.0800799,0.487524,0.0588314,0.698035,0.877962,0.662894,0.0886879,0.573265,0.419015,0.861723,0.720159,0.258915,0.0691831,0.283827,0.422955,0.89652,0.635354,0.0523878,0.95676,0.375583,0.82031,0.945355,0.0277326,0.463746,0.997325,0.294964,0.218713,0.402122,0.913505,0.283698,0.489082,0.791523,0.161281,0.286089,0.990723,0.635579,0.971765,0.218262,0.677919,0.9839,0.626827,0.81402,0.354644,0.127744,0.427773,0.488365,0.368544,0.977169,0.974146,0.356977,0.493097,0.529646,0.608753,0.909002,0.212025,0.140657,0.376589,0.708087,0.173357,0.663638,0.176143,0.878223,0.711456,0.257166,0.327585,0.799073,0.380424,0.157915,0.056631,0.341216,0.337389,0.304463,0.130086,0.331924,0.699187,0.317048,0.680069,0.407875,0.452767,0.853774,0.920261,0.0490932,0.0357192,0.75571,0.910386,0.00553918,0.596871,0.776612,0.0129968,0.23107,0.732691,0.443227,0.831173,0.152116,0.318794,0.590374,0.598351,0.496257,0.785837,0.0723388,0.531901,0.90467,0.44604,0.0531462,0.955992,0.894317,0.732687,0.290542,0.267866,0.33936,0.979277,0.0145607,0.225334,0.566984,0.149751,0.968285,0.767953,0.83978,0.671452,0.242106,0.764207,0.79958,0.547592,0.491631,0.025857,0.431956,0.939935,0.474964,0.329081,0.706922,0.624515,0.816674,0.370803,0.521459,0.665704,0.611583,0.610903,0.678102,0.340276,0.0514835,0.825894,0.0113238,0.306359,0.951158,0.739431,0.144812,0.806421,0.804228,0.0611116,0.300839,0.801498,0.452831,0.0299143,0.7858,0.0813061,0.757092,0.144695,0.238908,0.827457,0.437229,0.744877,0.585274,0.895172,0.307531,0.582685,0.833362,0.378062,0.641728,0.131247,0.188338,0.965826,0.472186,0.615353,0.498751,0.189979,0.941748,0.506642,0.318805,0.757507,0.77877,0.890742,0.830855,0.351076,0.796257,0.135219,0.630352,0.751486,0.501717,0.342598,0.144271,0.476426,0.227271,0.914357,0.924489,0.44128,0.145014,0.101266,0.499764,0.176745,0.686644,0.456065,0.10835,0.0768496,0.179832,0.34753,0.629537,0.0702827,0.973805,0.543873,0.2151,0.583054,0.840469,0.923875,0.800626,0.987666,0.366598,0.717579,0.798091,0.776044,0.533969,0.215644,0.317836,0.770427,0.0769449,0.741527,0.67452,0.266824,0.0439118,0.539411,0.398218,0.549963,0.0732794,0.665926,0.645617,0.743392,0.0186399,0.18131,0.242742,0.70702,0.94815,0.226129,0.19661,0.0969617,0.703689,0.0852904,0.530564,0.927189,0.0592511,0.703784,0.375549,0.794557,0.594511,0.307994,0.84647,0.211779,0.0323961,0.0216826,0.46883,0.172089,0.90817,0.291016,0.328999,0.987752,0.779542,0.111612,0.446997,0.85134,0.747774,0.916201,0.443867,0.847325,0.626351,0.350265,0.734675,0.573702,0.485003,0.487352,0.373584,0.793756,0.939237,0.302536,0.722222,0.84509,0.832919,0.900237,0.901062,0.779859,0.566978,0.918606,0.256142,0.895634,|0.579642,0.234039,0.947399,0.420463,0.968135,0.41471,0.334534,0.334504,0.722448,0.869351,0.446905,0.18783,0.980464,0.381283,0.570411,0.674164,0.271465,0.532484,0.170812,0.141928,0.134058,0.649388,0.450445,0.582948,0.658476,0.594697,0.886613,0.126304,0.860966,0.158195,0.796708,0.546736,0.781424,0.858675,0.134866,0.851525,0.958301,0.78278,0.846127,0.667194,0.414004,0.104905,0.0325146,0.491462,0.468178,0.588809,0.00657219,0.498893,0.834013,0.0290546,0.745127,0.00638831,0.376368,0.323174,0.43581,0.146469,0.612274,0.687734,0.356131,0.543796,0.965031,0.35094,0.977482,0.55978,0.352739,0.162069,0.147891,0.150561,0.537853,0.0998998,0.900683,0.664049,0.466799,0.0485386,0.481568,0.519361,0.0919809,0.371599,0.144887,0.946923,0.635452,0.774836,0.145069,0.826044,0.750227,0.18053,0.255799,0.615687,0.0941991,0.445224,0.805342,0.44416,0.492974,0.699509,0.189553,0.152239,0.687887,0.770715,0.373154,0.0822152,0.212918,0.056473,0.701957,0.792364,0.0820817,0.087677,0.0993605,0.142963,0.464493,0.117917,0.284588,0.214176,0.950903,0.272689,0.217276,0.82501,0.876903,0.592564,0.965801,0.988918,0.172827,0.0209938,0.756214,0.191779,0.518621,0.840489,0.725784,0.273309,0.352884,0.804526,0.53178,0.599313,0.223554,0.235817,0.529073,0.138958,0.44173,0.228271,0.548786,0.762176,0.510737,0.23559,0.190436,0.255359,0.463749,0.801384,0.349115,0.782138,0.189003,0.84251,0.961422,0.424946,0.942346,0.0688695,0.0461215,0.22606,0.878744,0.187094,0.456664,0.16957,0.450699,0.200584,0.192376,0.459484,0.326364,0.433094,0.739082,0.164741,0.169246,0.990002,0.0500606,0.216221,0.0377976,0.115626,0.174566,0.250796,0.639437,0.572484,0.349713,0.0458703,0.0213166,0.127209,0.425855,0.0294421,0.269779,0.559991,0.991385,0.98989,0.212403,0.3143,0.178947,0.402893,0.809211,0.907951,0.228528,0.450773,0.327365,0.120049,0.13536,0.677201,0.307648,0.155849,0.682699,0.349298,0.765986,0.449855,0.779206,0.585015,0.545387,0.710531,0.278379,0.685426,0.832841,0.254592,0.275251,0.978853,0.339418,0.672311,0.516275,0.544879,0.632049,0.664694,0.0678045,0.744672,0.773125,0.519586,0.316972,0.107795,0.126715,0.341952,0.350713,0.342497,0.0830044,0.807753,0.201384,0.187169,0.221294,0.430617,0.10348,0.143799,0.53666,0.908744,0.224393,0.172464,0.731741,0.492689,0.275641,0.180818,0.225279,0.195663,0.0932738,0.745949,0.360983,0.502951,0.173498,0.0543185,0.484475,0.758788,0.0379089,0.24833,0.890239,0.13353,0.127953,0.161061,0.11507,0.603458,0.18361,0.990371,0.596275,0.210057,0.534323,0.769942,0.858321,0.87277,0.265371,0.166098,0.432581,0.609778,0.674442,0.50824,0.4977,0.2661,0.631909,0.0143982,0.592584,0.491422,0.446908,0.915118,0.277363,0.959307,0.885291,0.810915,0.775747,0.557373,0.00991917,0.200159,0.0700895,0.918137,0.836862,0.112656,0.0654479,0.0979648,0.955346,0.654835,0.990402,0.343694,0.31422,0.91692,0.980604,0.381327,0.711014,0.905169,0.829332,0.664356,0.667144,0.600977,0.521033,0.287095,0.690062,0.556901,0.52838,0.23411,0.563851,0.678497,0.423986,0.0714012,0.224475,0.522152,0.952513,0.297835,0.352954,0.670512,0.769989,0.648084,0.333921,0.0775586,0.781256,0.27055,0.333156,0.244647,0.283173,0.853469,0.852311,0.150341,0.375236,0.531198,0.831706,0.575717,0.868151,0.324697,0.394123,0.303689,0.499501,0.74561,0.0528624,0.390842,0.98653,0.0250303,0.865408,0.0364416,0.182284,0.986858,0.040144,0.458708,0.813344,0.420995,0.570193,0.616136,0.671706,0.82939,0.192384,0.48639,0.282922,0.327602,0.147306,0.445982,0.751206,0.325081,0.546763,0.463103,0.94914,0.475285,0.967353,0.323116,0.47303,0.422087,0.089727,0.57097,0.239782,0.956362,0.694114,0.553035,0.0192022,0.21411,0.371803,0.457492,0.199288,0.899185,0.359344,0.442651,0.405293,0.904993,0.831662,0.00443876,0.781312,0.346542,0.177702,0.846778,0.275438,0.548959,0.0786115,0.571919,0.64198,0.0277177,0.794967,0.992887,0.105293,0.421688,0.32918,0.43373,0.65446,0.123425,0.763483,0.746916,0.612236,0.363557,0.129619,0.167435,0.478127,0.240165,0.501226,0.0432972,0.145843,0.880647,0.0623391,0.511302,0.596149,0.0122949,0.403296,0.368778,0.970149,0.563944,0.237785,0.336154,0.0295403,0.956845,0.148316,0.880459,0.917229,0.956533,0.221533,0.140645,0.503107,0.127541,0.210591,0.00306433,0.825683,0.0382978,0.182314,0.144027,0.206256,0.0456092,0.351525,0.269234,0.653513,0.585332,0.832466,0.432103,0.681698,0.570705,0.261603,0.215352,0.373921,0.0748556,0.998146,0.483794,0.777619,0.657305,0.892811,0.0414375,0.733764,0.176986,0.944516,0.904644,0.404549,0.661307,0.247747,0.932615,0.0904146,0.962128,0.37604,0.793378,0.147779,0.565062,0.275687,0.781857,0.159425,0.449655,0.472842,0.0164578,0.436587,0.495676,0.116766,0.871065,0.512789,0.342938,0.385863,0.861637,0.165858,0.713171,0.403439,0.510546,0.358304,0.54403,0.327787,0.29681,0.473981,0.614887,0.872682,0.981581,0.425343,0.339332,0.789161,0.117128,0.788627,0.415868,0.770667,0.803415,0.50939,0.179712,0.555872,0.578048,0.300174,0.596743,0.902531,0.028326,0.973307,0.0942822,0.407534,0.019637,0.73681,0.280044,0.210609,0.928793,0.524513,0.48289,0.390388,0.29583,0.12768,0.632158,0.141731,0.9291,0.85802,0.119994,0.445974,0.395294,0.990884,0.373509,0.0492545,0.834643,0.958249,0.423811,0.738992,0.658379,0.242248,0.694068,0.0410537,0.412877,0.364685,0.728664,0.80031,0.480801,0.0317968,0.759934,0.404214,0.12553,0.205187,0.818759,0.194955,0.886612,0.335714,0.624657,0.787634,0.524769,0.351909,0.05923,0.0624761,0.17161,0.811563,0.948751,0.442135,0.938338,0.144498,0.309153,0.461818,0.516072,0.223961,0.651249,0.654769,0.642076,0.778511,0.900118,0.586896,0.0134298,0.564548,0.954319,0.0794531,0.485399,0.240514,0.123533,0.528161,0.655167,0.759679,0.0268989,0.100709,0.451875,0.945142,0.809,0.47463,0.663243,0.526961,0.0819485,0.750795,0.580685,0.310628,0.25329,0.945088,0.523624,0.161354,0.799624,0.218938,0.660617,0.261161,0.538231,0.826849,0.489015,0.0614902,0.467226,0.48059,0.400689,0.444676,0.585413,0.378697,0.338464,0.166969,0.849518,0.0399327,0.488487,0.506822,0.629661,0.0708405,0.59775,0.434958,0.268068,0.185699,0.0626257,0.571104,0.0248254,0.080743,0.388554,0.0173801,0.638133,0.26985,0.462623,0.406141,0.536488,0.57715,0.641916,0.861897,0.794163,0.670501,0.0603601,0.63311,0.601171,0.701798,0.498559,0.986261,0.993695,0.725165,0.0960493,0.228101,0.890785,0.206342,0.865927,0.730662,0.586042,0.500163,0.450077,0.191481,0.933227,0.608542,0.0267895,0.845647,0.606511,0.415074,0.596069,0.135443,0.725447,0.611952,0.203453,0.258723,0.177094,0.901479,0.700109,0.913745,0.682986,0.0933647,0.0813034,0.144802,0.108279,0.205143,0.922434,0.907265,0.93981,0.0566177,0.482871,0.411619,0.208495,0.406261,0.173164,0.532188,0.707742,0.597104,0.378128,0.552462,0.724207,0.292433,0.14525,0.848238,0.336427,0.269474,0.439036,0.910464,0.270396,0.549409,0.453476,0.759483,0.0753734,0.367393,0.552383,0.485793,0.0394917,0.21255,0.634005,0.0863792,0.297527,0.298274,0.32706,0.112409,0.0484604,0.86658,0.593701,0.652504,0.069814,0.579755,0.11918,0.324414,0.912086,0.723769,0.496936,0.694793,0.822367,0.289896,0.847856,0.584828,0.405391,0.5095,0.858987,0.947389,0.0537773,0.115742,0.538137,0.866015,0.322511,0.406646,0.650774,0.411678,0.630413,0.0370116,0.18176,0.913415,0.49065,0.809071,0.531948,0.0759665,0.900298,0.318594,0.499629,0.725809,0.741823,0.139215,0.998827,0.168156,0.117105,0.165791,0.446646,0.64378,0.191841,0.353859,0.0360646,0.657976,0.769122,0.968073,0.0794248,0.0119714,0.847111,0.853091,0.774712,0.172626,0.186645,0.856351,0.71686,0.329427,0.222335,0.526915,0.771717,0.629273,0.939489,0.982471,0.821956,0.376351,0.96328,0.0570348,0.977349,0.950164,0.748927,0.759392,0.522374,0.880634,0.220903,0.676255,0.408592,0.658263,0.342676,0.95744,0.724324,0.506592,0.511534,0.236491,0.276041,0.672289,0.348906,0.164316,0.0239778,0.0570884,0.655071,0.00705111,0.564951,0.509932,0.440215,0.184026,0.99055,0.798621,0.358533,0.801668,0.962663,0.334658,0.833312,0.581772,0.502234,0.487961,0.879943,0.937138,0.183558,0.739395,0.293174,0.209577,0.854731,0.913258,0.748593,0.910717,0.367342,0.265951,0.802379,0.35119,0.770276,0.678402,0.734242,0.850515,0.871615,0.0610168,0.687577,0.585557,0.172949,0.765612,0.557134,0.713577,0.869282,0.28256,0.248132,0.872825,0.276974,0.527034,0.281597,0.631194,0.0102837,0.543897,0.567356,0.70022,0.535287,0.31826,0.484357,0.495314,0.868485,0.352876,0.759683,0.90951,0.308494,0.413801,0.528234,0.267796,0.910142,0.182678,0.261144,0.858091,0.288736,0.81331,0.668372,0.743329,0.132621,0.985722,0.134627,0.980697,0.0950905,0.929352,0.724299,0.590861,0.474066,0.786979,0.763717,0.355768,0.742374,0.619554,0.146778,0.12979,0.823851,0.102818,0.232298,0.770329,0.0559514,0.256486,0.59107,0.422239,0.658448,0.635864,0.302807,0.970536,0.779263,0.700765,0.464077,0.479502,0.987815,0.213948,0.710137,0.0710536,0.241373,0.992535,0.462991,0.378062,0.804674,0.54705,0.708512,0.263641,0.164277,0.56511,0.620094,0.619253,0.988892,0.571739,0.628758,0.357492,0.972304,0.000571847,0.510881,0.837692,0.414998,0.995015,0.603165,0.83548,0.111418,0.916158,0.0705005,0.434151,0.420343,0.0021714,0.836357,0.909681,0.268987,0.398049,0.929132,0.332302,0.318334,0.306278,0.748008,0.962526,0.549867,0.721875,0.967156,0.918056,0.51084,|0.482773,0.44267,0.504255,0.0121182,0.638529,0.266144,0.632389,0.213298,0.204955,0.502231,0.598207,0.917484,0.918937,0.580492,0.651359,0.509051,0.713798,0.621017,0.941622,0.709544,0.701813,0.942726,0.378249,0.53573,0.709659,0.335397,0.858884,0.76859,0.0446165,0.22763,0.0028125,0.05836,0.178277,0.0350913,0.493735,0.653347,0.699027,0.33508,0.0676417,0.215056,0.585907,0.229682,0.854279,0.731029,0.800403,0.148772,0.712132,0.241509,0.151243,0.468644,0.116828,0.718315,0.331203,0.19784,0.135534,0.0438895,0.115494,0.618987,0.971961,0.0178782,0.647692,0.977864,0.707466,0.689331,0.899953,0.945505,0.129569,0.254189,0.507881,0.314045,0.246809,0.497966,0.277864,0.97496,0.750211,0.875978,0.815991,0.379083,0.866631,0.623223,0.444071,0.201541,0.302929,0.738405,0.851632,0.289025,0.974326,0.465328,0.317078,0.0910258,0.455961,0.670933,0.30886,0.0646259,0.69809,0.439093,0.34168,0.243217,0.980498,0.517891,0.514788,0.0321265,0.753274,0.424728,0.349338,0.549759,0.754909,0.871771,0.00846273,0.346777,0.900813,0.741784,0.165225,0.482172,0.462705,0.0635876,0.160912,0.577892,0.331039,0.73482,0.445977,0.97386,0.186733,0.826564,0.934922,0.451128,0.733897,0.0445127,0.101594,0.258097,0.999875,0.820472,0.391283,0.973288,0.551885,0.327405,0.5807,0.117296,0.809777,0.255007,0.921543,0.625425,0.727265,0.871369,0.496376,0.276555,0.0818442,0.50756,0.184259,0.359988,0.554616,0.223163,0.758286,0.839153,0.474164,0.938539,0.0424573,0.850203,0.916074,0.342473,0.655168,0.590989,0.791668,0.202697,0.586388,0.282454,0.371596,0.551114,0.436176,0.986828,0.384901,0.186204,0.00731713,0.858284,0.774584,0.475268,0.602569,0.843034,0.210512,0.614604,0.134641,0.641883,0.820273,0.716441,0.290866,0.464857,0.967915,0.0389487,0.445605,0.0983554,0.804695,0.436946,0.619885,0.587978,0.862404,0.433283,0.0740423,0.669442,0.796209,0.070272,0.947584,0.466723,0.693132,0.209234,0.367179,0.0594472,0.645292,0.887212,0.294351,0.344155,0.0180932,0.494078,0.907585,0.984834,0.973842,0.547051,0.919447,0.934434,0.28856,0.190032,0.070911,0.374111,0.334947,0.880871,0.80312,0.127532,0.177858,0.927752,0.275196,0.100851,0.474347,0.015722,0.726399,0.850256,0.381061,0.47432,0.380294,0.179908,0.117774,0.648342,0.124379,0.740057,0.568407,0.591691,0.535566,0.706777,0.730681,0.207222,0.949153,0.89286,0.568083,0.6017,0.030332,0.732482,0.436278,0.99199,0.989763,0.157634,0.518204,0.0122138,0.559221,0.14378,0.546553,0.0307156,0.782589,0.865088,0.0610148,0.182465,0.687047,0.706331,0.397847,0.792898,0.619112,0.147995,0.898678,0.980043,0.0414337,0.225922,0.908717,0.654154,0.141955,0.342677,0.733195,0.789807,0.0456116,0.853947,0.907472,0.854709,0.115442,0.293774,0.256336,0.0509658,0.436635,0.610282,0.0908029,0.633818,0.559022,0.61645,0.0295462,0.356045,0.229524,0.491198,0.669816,0.359174,0.00183517,0.278642,0.727923,0.73323,0.812858,0.313834,0.267571,0.950416,0.513991,0.462681,0.11885,0.666738,0.235027,0.904653,0.15682,0.197634,0.905669,0.189378,0.127329,0.897525,0.910872,0.202625,0.227944,0.557151,0.593125,0.559378,0.0429791,0.00254261,0.370383,0.451499,0.639571,0.0343905,0.274336,0.35195,0.0578249,0.518756,0.517591,0.0447855,7.88569e-05,0.10817,0.655544,0.746647,0.899151,0.205671,0.750557,0.835692,0.508258,0.0709521,0.0672534,0.103271,0.692914,0.153826,0.833343,0.101438,0.853015,0.243157,0.441384,0.304523,0.161315,0.725085,0.122174,0.514311,0.33765,0.456653,0.369397,0.938882,0.732054,0.840023,0.0560626,0.177093,0.985517,0.420464,0.405515,0.809145,0.550988,0.335666,0.202906,0.664928,0.0614685,0.695837,0.654871,0.720826,0.215943,0.223165,0.694135,0.99474,0.886598,0.827429,0.671752,0.734644,0.680127,0.706507,0.993937,0.764562,0.525083,0.987844,0.0161719,0.742155,0.153213,0.635902,0.105391,0.392501,0.977633,0.556663,0.107543,0.448416,0.32544,0.251031,0.895949,0.697145,0.728806,0.651844,0.240939,0.466716,0.563189,0.57693,0.99468,0.812421,0.865787,0.297558,0.981577,0.0643645,0.340054,0.0545838,0.0215253,0.864967,0.802419,0.0031963,0.921744,0.430543,0.45088,0.947312,0.399957,0.617192,0.868478,0.944281,0.974112,0.370308,0.940899,0.804551,0.874358,0.496555,0.469889,0.971218,0.268048,0.678467,0.642755,0.780811,0.0493392,0.486617,0.997062,0.922985,0.15773,0.00841439,0.7285,0.811156,0.547898,0.0670723,0.810744,0.158742,0.391358,0.264635,0.753089,0.0757182,0.394499,0.364796,0.359784,0.775533,0.728641,0.00666547,0.493573,0.935649,0.835935,0.761293,0.634771,0.210922,0.0331545,0.0708356,0.851236,0.879852,0.683797,0.76262,0.190911,0.14361,0.338708,0.398762,0.2315,0.0405206,0.0106124,0.773139,0.678388,0.101365,0.0663639,0.036549,0.402527,0.923451,0.486748,0.196247,0.0594457,0.891243,0.600236,0.370841,0.813578,0.174485,0.0690309,0.977432,0.384602,0.18126,0.309201,0.718334,0.355752,0.116799,0.884721,0.135467,0.839341,0.6292,0.26731,0.257627,0.138098,0.548015,0.700783,0.589332,0.619144,0.801639,0.233786,0.688828,0.510696,0.715654,0.994148,0.46207,0.292586,0.629219,0.00935727,0.0129671,0.114764,0.905731,0.721843,0.886351,0.280437,0.775543,0.854665,0.965426,0.189253,0.123111,0.772247,0.634411,0.786161,0.364353,0.862583,0.700747,0.537616,0.589043,0.877984,0.381271,0.17588,0.444863,0.521817,0.609743,0.121436,0.826858,0.0446351,0.399037,0.313719,0.32715,0.983363,0.454352,0.361564,0.0987036,0.152035,0.0719231,0.495643,0.197412,0.79081,0.535582,0.0687685,0.78532,0.850773,0.227456,0.444357,0.710453,0.869249,0.857407,0.640941,0.295183,0.939096,0.843395,0.294963,0.198223,0.0617313,0.978169,0.664092,0.0700899,0.691475,0.236562,0.459607,0.336799,0.68454,0.669977,0.564686,0.234612,0.202407,0.324944,0.18145,0.941908,0.757545,0.296575,0.418994,0.975307,0.955338,0.365643,0.774704,0.650364,0.385358,0.925184,0.929915,0.477588,0.461913,0.654282,0.310338,0.0389923,0.279898,0.587372,0.898898,0.498217,0.597372,0.126509,0.270592,0.017082,0.101908,0.354697,0.488966,0.69465,0.7606,0.265208,0.995751,0.117174,0.9805,0.241779,0.658818,0.849741,0.737412,0.346819,0.955715,0.250623,0.640912,0.519052,0.230035,0.69494,0.188445,0.650594,0.537743,0.53027,0.892363,0.747433,0.0923845,0.270798,0.822516,0.657938,0.456905,0.94562,0.786599,0.529037,0.0576089,0.291901,0.287844,0.778377,0.219361,0.534152,0.49587,0.244059,0.940542,0.657335,0.845963,0.565503,0.784323,0.144422,0.907971,0.887449,0.202462,0.65555,0.0801775,0.648492,0.785737,0.751347,0.92409,0.868344,0.78728,0.275675,0.216258,0.82537,0.69299,0.276364,0.956514,0.716453,0.0215471,0.963948,0.657469,0.806856,0.926572,0.00743014,0.510286,0.816817,0.305587,0.498247,0.89899,0.478164,0.552101,0.989325,0.90737,0.458688,0.205248,0.286335,0.223568,0.36915,0.847184,0.227828,0.285619,0.70655,0.788541,0.991183,0.0052793,0.36384,0.803266,0.192994,0.899898,0.0619404,0.637719,0.0299559,0.8879,0.616799,0.154154,0.241867,0.445454,0.0932158,0.391025,0.479142,0.289536,0.825443,0.130758,0.88357,0.331862,0.903972,0.400478,0.818321,0.579425,0.349767,0.645388,0.129031,0.726296,0.395397,0.127602,0.172181,0.725939,0.800663,0.358598,0.690176,0.555798,0.626191,0.883822,0.48333,0.590248,0.496911,0.525354,0.166783,0.234663,0.475618,0.945665,0.490797,0.846117,0.263764,0.284921,0.0694786,0.0843278,0.661881,0.24731,0.0886567,0.920263,0.929088,0.709856,0.385358,0.867159,0.143047,0.984007,0.280928,0.912645,0.338514,0.312909,0.90864,0.496444,0.638222,0.763711,0.768915,0.300199,0.847739,0.0260879,0.567611,0.622331,0.738902,0.742506,0.732727,0.0549358,0.680385,0.997657,0.36296,0.996227,0.88103,0.2373,0.234092,0.0839819,0.00443196,0.649421,0.21137,0.888864,0.00731498,0.163906,0.20295,0.294702,0.281933,0.711976,0.26851,0.749765,0.76328,0.201622,0.507829,0.746632,0.229578,0.802451,0.802212,0.886761,0.743036,0.0181009,0.232275,0.256203,0.61039,0.298907,0.285326,0.895156,0.420959,0.366351,0.199601,0.88105,0.786023,0.915091,0.235048,0.661575,0.139753,0.970286,0.550705,0.19698,0.529083,0.194689,0.611161,0.640734,0.769137,0.482155,0.925814,0.930329,0.135254,0.0585823,0.158498,0.371629,0.401996,0.292983,0.84241,0.328293,0.482657,0.556302,0.734825,0.909798,0.865968,0.730927,0.363913,0.538947,0.619312,0.925224,0.150653,0.641352,0.894724,0.897311,0.607149,0.0946404,0.674033,0.604622,0.538696,0.601376,0.325009,0.0200936,0.54263,0.35564,0.984563,0.0331595,0.229649,0.576399,0.815288,0.562115,0.355175,0.483558,0.617438,0.0162183,0.827387,0.540743,0.0279477,0.6295,0.152573,0.526611,0.853378,0.316042,0.712029,0.133044,0.510736,0.747798,0.187292,0.283596,0.398517,0.557201,0.682473,0.088599,0.343514,0.666984,0.411054,0.107235,0.405081,0.24759,0.169769,0.761404,0.237191,0.473528,0.381323,0.403424,0.612996,0.329373,0.923288,0.819921,0.696676,0.91778,0.791777,0.3397,0.78328,0.843138,0.0328038,0.832718,0.159637,0.489926,0.238686,0.769508,0.620482,0.219568,0.572651,0.4794,0.160854,0.317173,0.635679,0.271861,0.448763,0.939193,0.433905,0.664436,0.355145,0.461102,0.454017,0.882326,0.0469395,0.621757,0.0121282,0.928317,0.738689,0.24534,0.0124465,0.502914,0.472268,0.120908,0.181888,0.332342,0.576238,0.0645114,0.0615885,0.988141,0.788966,0.876018,0.290575,0.0125997,0.0581555,0.795583,0.641371,0.489817,0.156952,0.377326,0.385201,0.757219,0.385082,0.506801,0.507135,0.62516,0.139387,0.702946,0.592402,|0.721076,0.0127749,0.0446194,0.706073,0.7677,0.428173,0.780778,0.485708,0.218144,0.177818,0.744525,0.163748,0.583865,0.413098,0.704644,0.642189,0.100096,0.975348,0.222451,0.8107,0.698738,0.876108,0.756302,0.202464,0.717502,0.847774,0.278278,0.00497699,0.0140843,0.252798,0.961948,0.23343,0.429473,0.814557,0.790726,0.388298,0.654119,0.705195,0.450625,0.976695,0.780409,0.585356,0.345674,0.210502,0.574278,0.771796,0.503537,0.206755,0.620435,0.92855,0.905671,0.870555,0.824962,0.296447,0.868978,0.309881,0.646561,0.130262,0.508336,0.873746,0.997488,0.823121,0.339887,0.209495,0.239999,0.701771,0.851222,0.97124,0.0741683,0.563866,0.900961,0.675666,0.452311,0.266344,0.486786,0.911656,0.758206,0.29755,0.24915,0.498805,0.943096,0.427006,0.552997,0.202152,0.810115,0.332829,0.0627972,0.918091,0.0269762,0.839988,0.766789,0.950777,0.193062,0.661516,0.519609,0.134963,0.340373,0.193984,0.923915,0.179838,0.127775,0.49339,0.796404,0.207021,0.336239,0.936437,0.0359543,0.459398,0.749946,0.218593,0.161487,0.0296312,0.682115,0.439111,0.487516,0.164982,0.561348,0.467852,0.087689,0.374689,0.327053,0.277108,0.178575,0.831837,0.640686,0.63029,0.221958,0.74286,0.847928,0.829978,0.222817,0.136564,0.736988,0.191354,0.666493,0.994975,0.623484,0.375629,0.59324,0.0271672,0.259242,0.909756,0.0567819,0.00854528,0.0913066,0.772919,0.89468,0.0595905,0.65063,0.0171721,0.34868,0.857781,0.575356,0.727715,0.397515,0.304806,0.208036,0.305376,0.191918,0.411821,0.437902,0.185687,0.27622,0.324768,0.781488,0.546676,0.199668,0.739405,0.785602,0.0954688,0.0895496,0.659866,0.990647,0.178843,0.471208,0.782181,0.781684,0.105123,0.816756,0.0270891,0.888422,0.437511,0.869568,0.133458,0.0231306,0.0783022,0.511404,0.575263,0.240069,0.723739,0.891661,0.522034,0.125123,0.480762,0.939747,0.790146,0.487421,0.933902,0.669765,0.958363,0.407809,0.836216,0.330227,0.335029,0.973577,0.300026,0.0555739,0.00861096,0.550471,0.171727,0.282765,0.929708,0.1738,0.160507,0.829541,0.245102,0.183721,0.138948,0.929112,0.0943491,0.378862,0.784911,0.369997,0.379068,0.694055,0.937789,0.00856918,0.832424,0.627117,0.345623,0.907578,0.00920159,0.893382,0.230117,0.333058,0.442741,0.754393,0.657245,0.49313,0.940359,0.0562338,0.833419,0.0394107,0.976068,0.474035,0.372691,0.626304,0.650537,0.528953,0.689056,0.381053,0.490041,0.120629,0.134316,0.14532,0.497713,0.692755,0.794601,0.16436,0.509098,0.102951,0.246915,0.0504146,0.267842,0.997226,0.218901,0.178943,0.124765,0.337907,0.298018,0.939333,0.660028,0.241947,0.571611,0.0709855,0.467547,0.0152406,0.129133,0.630921,0.884798,0.00153595,0.859451,0.0621014,0.0237483,0.388008,0.594995,0.679231,0.0317495,0.935225,0.590648,0.346159,0.954677,0.373601,0.213239,0.479,0.550961,0.954958,0.167263,0.378187,0.0436193,0.395359,0.199491,0.222446,0.303347,0.804737,0.876074,0.390491,0.721483,0.744522,0.718404,0.0744764,0.232673,0.749598,0.997109,0.737689,0.11294,0.7426,0.280539,0.0622303,0.652855,0.0257283,0.695157,0.352796,0.689622,0.97469,0.720732,0.124327,0.736846,0.442176,0.673286,0.37505,0.321731,0.381302,0.905902,0.0544708,0.972239,0.271563,0.812007,0.622401,0.0251793,0.396012,0.882118,0.785655,0.968708,0.3348,0.528193,0.221136,0.683548,0.321354,0.126133,0.704158,0.0480336,0.0381052,0.956608,0.260163,0.660421,0.647178,0.67538,0.9638,0.135877,0.0758004,0.605566,0.60971,0.606328,0.137348,0.281518,0.903243,0.0800633,0.0457822,0.625047,0.751612,0.314921,0.0832955,0.887296,0.800418,0.840268,0.338279,0.252594,0.371476,0.358975,0.945655,0.861487,0.88313,0.0457342,0.3726,0.672886,0.708074,0.997112,0.698253,0.104242,0.237787,0.416445,0.0811505,0.777594,0.944158,0.507493,0.410205,0.162287,0.45231,0.63826,0.814498,0.320777,0.645868,0.0172722,0.643467,0.875681,0.346764,0.509785,0.030252,0.418121,0.795271,0.616018,0.118329,0.884711,0.649252,0.852257,0.628223,0.44832,0.512083,0.961583,0.272279,0.274991,0.420923,0.983477,0.339894,0.335103,0.053296,0.979262,0.584399,0.23181,0.169512,0.874538,0.912663,0.49564,0.987952,0.579315,0.143895,0.686508,0.544685,0.589008,0.819328,0.822514,0.812408,0.136521,0.837865,0.102864,0.98155,0.0828733,0.00252604,0.0974398,0.819905,0.462099,0.901291,0.412232,0.0592474,0.249676,0.257723,0.198234,0.442742,0.441121,0.464901,0.413764,0.97409,0.469117,0.508251,0.935342,0.575071,0.963876,0.899633,0.583412,0.243367,0.962173,0.832216,0.527925,0.915247,0.418074,0.590979,0.77498,0.369559,0.399703,0.415815,0.984904,0.445452,0.463389,0.858708,0.0141659,0.740426,0.153081,0.396172,0.776582,0.0484243,0.0450117,0.684345,0.500828,0.337725,0.210785,0.245021,0.451474,0.977858,0.377801,0.0107336,0.318499,0.0952999,0.00962549,0.274998,0.510408,0.121345,0.0233366,0.769298,0.0267594,0.0914717,0.596579,0.22796,0.814185,0.631177,0.315515,0.221554,0.487805,0.336163,0.230207,0.158267,0.544381,0.459983,0.417032,0.119404,0.0678293,0.560466,0.136861,0.25195,0.0152744,0.436315,0.8021,0.702784,0.506293,0.197988,0.455655,0.486951,0.568187,0.485699,0.0767601,0.032385,0.454983,0.97886,0.963404,0.181153,0.515901,0.0874359,0.00883329,0.433877,0.217597,0.326449,0.368893,0.452931,0.52623,0.634255,0.311458,0.427215,0.251194,0.16781,0.369446,0.298712,0.459897,0.697822,0.14445,0.915856,0.652644,0.981564,0.728028,0.0766432,0.934155,0.0686117,0.916982,0.658005,0.867307,0.676728,0.682856,0.70017,0.0399284,0.531236,0.346223,0.362631,0.345043,0.334223,0.740043,0.197216,0.480796,0.365265,0.415697,0.268865,0.812239,0.75373,0.889312,0.911071,0.167555,0.48053,0.833426,0.50719,0.98643,0.283777,0.449768,0.818059,0.854501,0.553634,0.178252,0.0473011,0.114684,0.988346,0.0690562,0.139834,0.402729,0.477553,0.941687,0.0504414,0.0513009,0.446896,0.179111,0.675162,0.754886,0.00584048,0.120366,0.448435,0.595993,0.976356,0.498885,0.903987,0.708755,0.318958,0.141901,0.376344,0.176765,0.622487,0.527768,0.953553,0.371262,0.71333,0.559202,0.114043,0.181484,0.326937,0.369479,0.221254,0.189397,0.951625,0.146552,0.667226,0.00202525,0.54464,0.709428,0.236132,0.214429,0.7716,0.769431,0.624457,0.94174,0.766088,0.415981,0.377429,0.927751,0.467469,0.560452,0.92939,0.357312,0.174175,0.360956,0.680677,0.0820578,0.665412,0.73432,0.69002,0.723869,0.628009,0.600029,0.356713,0.484375,0.641782,0.168638,0.060345,0.664297,0.972215,0.583557,0.167459,0.614418,0.796542,0.551306,0.281206,0.760155,0.114883,0.61286,0.66907,0.417795,0.453209,0.640897,0.243086,0.824091,0.700711,0.502746,0.473747,0.207325,0.205328,0.584194,0.19318,0.217822,0.968925,0.780406,0.391673,0.538846,0.922304,0.611195,0.100469,0.746816,0.586373,0.908341,0.168746,0.431085,0.439031,0.803578,0.251968,0.440255,0.218238,0.672105,0.90656,0.693115,0.87279,0.626425,0.550253,0.830077,0.57171,0.761583,0.58734,0.352116,0.958552,0.175322,0.816373,0.509442,0.680088,0.772699,0.998858,0.0573348,0.217589,0.746856,0.981288,0.202401,0.112004,0.645657,0.25757,0.544532,0.937286,0.619489,0.728369,0.0104536,0.238281,0.89655,0.436559,0.158221,0.665688,0.212539,0.986398,0.826379,0.506588,0.332628,0.913523,0.265027,0.50492,0.321652,0.492484,0.986436,0.858371,0.93897,0.11435,0.523807,0.395644,0.869924,0.565152,0.104804,0.860483,0.289739,0.523012,0.215213,0.617933,0.902499,0.921371,0.467538,0.580712,0.0478253,0.994434,0.542097,0.982582,0.392981,0.682063,0.628862,0.441452,0.262031,0.933553,0.815729,0.856646,0.969939,0.649782,0.33555,0.804827,0.984079,0.538687,0.599955,0.693583,0.53193,0.495337,0.888714,0.730153,0.733114,0.474791,0.198255,0.185102,0.357363,0.0562999,0.923085,0.882035,0.340572,0.539628,0.369694,0.020938,0.334611,0.166571,0.858649,0.391224,0.566356,0.754821,0.636925,0.548267,0.956767,0.676094,0.450037,0.555595,0.626131,0.171844,0.82278,0.374453,0.174156,0.174531,0.223042,0.679016,0.170522,0.314952,0.734443,0.357762,0.630669,0.867107,0.224659,0.798459,0.252512,0.476388,0.584042,0.696981,0.0841224,0.359019,0.738535,0.228553,0.533998,0.0102471,0.0460723,0.124359,0.288508,0.241241,0.435655,0.452063,0.0281244,0.533537,0.408373,0.188476,0.726392,0.582737,0.0666681,0.0288072,0.377249,0.94324,0.949561,0.783959,0.65012,0.593101,0.675824,0.215752,0.785443,0.351848,0.371053,0.977949,0.732417,0.603352,0.165559,0.429441,0.867107,0.730237,0.826223,0.311206,0.51766,0.4965,0.545805,0.685305,0.426946,0.88512,0.816562,0.372968,0.547393,0.842803,0.152082,0.359689,0.06501,0.181462,0.659965,0.98745,0.0151725,0.426132,0.437417,0.836172,0.159659,0.872271,0.0427917,0.380445,0.947084,0.141241,0.486218,0.791178,0.950047,0.0026862,0.990221,0.0514681,0.752379,0.104542,0.380718,0.913438,0.909155,0.331205,0.377465,0.00883579,0.775402,0.158419,0.0438691,0.149291,0.890358,0.0671969,0.958795,0.699121,0.33316,0.489815,0.247748,0.767429,0.673389,0.985236,0.430665,0.369354,0.985578,0.806697,0.502924,0.505425,0.802193,0.946098,0.139806,0.94011,0.0281454,0.576813,0.247318,0.936981,0.19754,0.457147,0.976063,0.634706,0.190576,0.466335,0.284341,0.463009,0.178823,0.124463,0.0566146,0.114712,0.234385,0.0894618,0.583092,0.632331,0.111615,0.657834,0.485964,0.43499,0.0448362,0.395463,0.432298,0.956322,0.337226,0.423634,0.298251,0.35715,0.55414,0.179299,0.241901,0.857419,0.912723,0.248727,0.083703,0.0169847,0.770367,0.687224,0.3704,0.222538,0.445633,|0.949489,0.606182,0.0855901,0.767958,0.69771,0.296524,0.916766,0.10657,0.195704,0.0528573,0.275199,0.0456886,0.243697,0.0726394,0.0432892,0.329709,0.31089,0.964748,0.0345305,0.466476,0.045203,0.252817,0.304444,0.266234,0.406091,0.472479,0.912892,0.280362,0.494744,0.321779,0.0702428,0.568628,0.615177,0.319437,0.671713,0.35949,0.232627,0.723579,0.101919,0.773648,0.0014509,0.221019,0.569422,0.340458,0.430212,0.414575,0.487386,0.0359643,0.453443,0.35253,0.945309,0.477968,0.798492,0.961031,0.833553,0.815418,0.844747,0.281327,0.474784,0.478258,0.721864,0.533278,0.069313,0.7734,0.799738,0.76333,0.993268,0.474584,0.58277,0.59998,0.557659,0.727339,0.347451,0.109043,0.40171,0.741031,0.0859018,0.337819,0.617772,0.927783,0.0047546,0.537921,0.944632,0.77729,0.852888,0.451228,0.197029,0.895416,0.124906,0.580104,0.849435,0.121292,0.987394,0.475549,0.931255,0.808429,0.295305,0.136929,0.00655633,0.289629,0.316744,0.00767195,0.96955,0.761236,0.471854,0.747157,0.0219671,0.676113,0.238199,0.257926,0.359833,0.240401,0.093253,0.808267,0.140411,0.169556,0.353742,0.72986,0.564819,0.740097,0.566947,0.892816,0.155191,0.238511,0.559554,0.198593,0.118988,0.74248,0.3168,0.924444,0.474501,0.184562,0.453106,0.438232,0.127139,0.991615,0.184891,0.99945,0.876894,0.538353,0.169034,0.334774,0.862342,0.270972,0.0351823,0.561585,0.718564,0.384106,0.560198,0.716638,0.911805,0.0864938,0.458667,0.025571,0.238917,0.918997,0.419201,0.302479,0.00778586,0.615197,0.923112,0.352485,0.247665,0.712596,0.297348,0.680017,0.542286,0.452482,0.14219,0.439954,0.718473,0.415453,0.849216,0.568111,0.0484703,0.938348,0.217131,0.763336,0.936361,0.66275,0.195181,0.17768,0.15265,0.422353,0.59394,0.601589,0.724401,0.832238,0.921948,0.561083,0.793926,0.707988,0.403355,0.99399,0.619494,0.892742,0.981403,0.343746,0.0740424,0.0344136,0.602921,0.513856,0.178057,0.371766,0.881784,0.0743819,0.507491,0.37702,0.350579,0.813831,0.231138,0.432536,0.980436,0.111311,0.55306,0.45412,0.8405,0.953765,0.433751,0.729919,0.79906,0.426711,0.418598,0.709136,0.414603,0.196049,0.6234,0.887871,0.335677,0.0947536,0.535654,0.278931,0.767382,0.25698,0.932701,0.908592,0.23524,0.455671,0.933365,0.891914,0.590143,0.878443,0.448899,0.559646,0.779054,0.489355,0.593947,0.568046,0.0238979,0.979133,0.91794,0.788409,0.626199,0.151281,0.375955,0.588093,0.82497,0.372359,0.700697,0.526394,0.82525,0.0387467,0.887733,0.0594428,0.966108,0.878234,0.750054,0.450644,0.625064,0.373773,0.840904,0.544434,0.25645,0.0323614,0.441963,0.789166,0.842435,0.249814,0.719374,0.0793214,0.142441,0.549525,0.709679,0.726697,0.715287,0.979279,0.668535,0.127182,0.270253,0.976398,0.621451,0.872729,0.943666,0.120419,0.91494,0.343056,0.831924,0.659862,0.418622,0.0760296,0.809283,0.793685,0.106609,0.468323,0.305396,0.886446,0.639386,0.0764252,0.981708,0.71042,0.815668,0.486986,0.571454,0.811429,0.747403,0.610046,0.147645,0.58674,0.893243,0.251519,0.0657291,0.702699,0.329129,0.272288,0.607989,0.58692,0.645295,0.0439157,0.584644,0.0589981,0.485822,0.152995,0.804033,0.674906,0.580402,0.356228,0.364506,0.358636,0.739096,0.718962,0.985789,0.120758,0.191236,0.657715,0.151073,0.589206,0.076676,0.831186,0.438702,0.174031,0.0955517,0.150983,0.975593,0.878147,0.606647,0.183648,0.210496,0.745609,0.452431,0.0756333,0.240927,0.686403,0.0333927,0.59146,0.880558,0.743831,0.142994,0.39892,0.361665,0.256028,0.57526,0.0971535,0.755733,0.255573,0.0463732,0.0786365,0.146189,0.936252,0.977204,0.860459,0.261173,0.601414,0.783708,0.723553,0.577813,0.589489,0.949118,0.583275,0.608691,0.910863,0.91576,0.73313,0.0940767,0.115564,0.160134,0.107288,0.263497,0.411726,0.21383,0.205282,0.104242,0.443104,0.267962,0.672828,0.452581,0.988866,0.519211,0.515195,0.729593,0.506407,0.160689,0.684709,0.252429,0.963838,0.535989,0.668333,0.413558,0.658761,0.738132,0.941595,0.0110563,0.0932193,0.306331,0.237538,0.288804,0.96083,0.420329,0.21348,0.986101,0.929101,0.336415,0.255173,0.0347905,0.318327,0.216653,0.650275,0.333148,0.53177,0.736608,0.871156,0.624775,0.900182,0.737885,0.205659,0.383919,0.0564425,0.183708,0.675826,0.00311089,0.556394,0.134636,0.512913,0.690091,0.0893102,0.992773,0.158531,0.717729,0.682576,0.351437,0.938059,0.603188,0.0142069,0.160643,0.436202,0.715506,0.886769,0.489179,0.995304,0.829678,0.581673,0.284354,0.902427,0.419967,0.39038,0.177649,0.968926,0.0553449,0.221383,0.521217,0.0428913,0.691694,0.693578,0.927,0.292521,0.480043,0.503719,0.555388,0.34006,0.595839,0.0475791,0.0529617,0.884207,0.381427,0.628358,0.748094,0.545742,0.930165,0.35189,0.464368,0.347901,0.978892,0.598154,0.056443,0.425591,0.615085,0.650026,0.104773,0.575396,0.832946,0.4047,0.319454,0.962417,0.239344,0.767114,0.0198069,0.480866,0.693226,0.507528,0.516891,0.427289,0.523126,0.87813,0.677751,0.651814,0.846581,0.0859612,0.288636,0.851119,0.229616,0.549401,0.83949,0.530899,0.3112,0.491324,0.256066,0.104788,0.417375,0.78962,0.564117,0.892049,0.167548,0.756488,0.226231,0.833245,0.276016,0.676926,0.922247,0.945166,0.0992451,0.915749,0.300565,0.59288,0.324391,0.790214,0.0592086,0.419997,0.266071,0.204563,0.514647,0.828427,0.930059,0.20949,0.538885,0.979134,0.883981,0.236032,0.946192,0.892793,0.46426,0.268546,0.989125,0.372891,0.669628,0.422875,0.149195,0.144292,0.192697,0.59301,0.546098,0.850801,0.52437,0.826095,0.706218,0.61786,0.467751,0.361203,0.382541,0.515335,0.615168,0.776259,0.663405,0.148315,0.0727612,0.0581161,0.906805,0.252046,0.0496019,0.569138,0.908774,0.924164,0.795231,0.758605,0.978524,0.641825,0.569276,0.746927,0.858369,0.268572,0.486695,0.165698,0.760458,0.941585,0.0124587,0.256991,0.0701474,0.0365326,0.0253834,0.682278,0.416808,0.764205,0.664252,0.98729,0.149331,0.449288,0.954908,0.949437,0.462441,0.0158551,0.852371,0.768486,0.796766,0.993344,0.784483,0.542856,0.930958,0.901979,0.299558,0.89298,0.696441,0.695024,0.717692,0.18793,0.618417,0.542581,0.000731409,0.890187,0.253631,0.374139,0.210057,0.727881,0.505448,0.516325,0.407451,0.700639,0.195537,0.156002,0.996709,0.218495,0.281693,0.344914,0.577479,0.976488,0.284424,0.532588,0.723726,0.346758,0.329345,0.857378,0.668124,0.00981361,0.489439,0.0573528,0.515418,0.902829,0.409381,0.862691,0.542809,0.127979,0.0365717,0.0753609,0.82085,0.793808,0.129478,0.120018,0.623028,0.534558,0.97397,0.271057,0.191607,0.66027,0.431915,0.727942,0.321607,0.198464,0.769903,0.348987,0.423071,0.240101,0.66158,0.46703,0.278813,0.507124,0.643743,0.747482,0.762628,0.500941,0.53794,0.83204,0.757368,0.741699,0.200864,0.446379,0.433329,0.455493,0.410684,0.901326,0.989755,0.23034,0.351053,0.528089,0.973394,0.516228,0.0346834,0.860328,0.747947,0.48877,0.393409,0.750136,0.680047,0.792975,0.205724,0.552082,0.380239,0.649006,0.803586,0.362743,0.0224305,0.159379,0.239146,0.476871,0.140379,0.936105,0.240921,0.6018,0.091494,0.707164,0.817951,0.403881,0.0626902,0.860039,0.971668,0.681649,0.802757,0.314002,0.0681403,0.849418,0.469677,0.562143,0.787985,0.551779,0.732637,0.345917,0.442294,0.0237275,0.0104149,0.846732,0.516187,0.869709,0.475292,0.0760019,0.157994,0.882502,0.731027,0.240548,0.0895824,0.638885,0.146047,0.240272,0.704109,0.890987,0.128315,0.189259,0.349575,0.557878,0.101629,0.466127,0.113,0.76348,0.105977,0.917063,0.137704,0.542125,0.983444,0.626759,0.505699,0.308283,0.724441,0.134247,0.795998,0.440716,0.0992346,0.454928,0.412221,0.509795,0.00612736,0.874364,0.429282,0.384135,0.541651,0.832883,0.204478,0.32456,0.77763,0.474113,0.954858,0.634833,0.487748,0.863156,0.845895,0.17165,0.904725,0.326368,0.100584,0.721299,0.878594,0.121557,0.392046,0.0178133,0.401357,0.0631592,0.542574,0.0748343,0.436388,0.197616,0.197199,0.159421,0.472867,0.53662,0.442221,0.205517,0.545492,0.307729,0.436356,0.364798,0.241312,0.767942,0.43422,0.123109,0.928304,0.988518,0.536233,0.559823,0.434229,0.123341,0.482158,0.627827,0.493217,0.962807,0.391938,0.683784,0.592547,0.788488,0.136625,0.745451,0.269787,0.928657,0.0929144,0.323275,0.85287,0.501537,0.0157583,0.0919412,0.226867,0.475733,0.87175,0.0474581,0.798198,0.585383,0.00682658,0.145239,0.0515739,0.0671849,0.545652,0.0180799,0.383697,0.725065,0.168725,0.581804,0.469317,0.14461,0.666873,0.301843,0.662887,0.137285,0.0361377,0.579854,0.109716,0.0105012,0.374644,0.168204,0.469771,0.780958,0.991297,0.107949,0.435828,0.412637,0.729544,0.615226,0.312703,0.955674,0.686971,0.533297,0.399285,0.357774,0.182309,0.480692,0.541033,0.613237,0.28154,0.729274,0.603642,0.533883,0.877407,0.505949,0.278281,0.917517,0.363259,0.548899,0.191221,0.0792511,0.826268,0.249651,0.154331,0.527856,0.0111764,0.14069,0.849425,0.0295873,0.119751,0.992035,0.184073,0.0393732,0.801165,0.7673,0.243442,0.219868,0.834901,0.611956,0.818661,0.450532,0.761118,0.319232,0.658428,0.327154,0.860183,0.0664897,0.265172,0.652758,0.865999,0.31449,0.314655,0.699832,0.763251,0.183619,0.593132,0.749861,0.600652,0.834579,0.295726,0.605442,0.0497393,0.643409,0.0404986,0.00448799,0.373816,0.863535,0.236523,0.240382,0.328165,0.697944,0.0567039,0.748677,0.942282,0.601731,0.684843,0.143649,0.0986513,0.563162,0.132427,0.800151,0.38994,0.432267,0.271475,0.432313,0.190858,0.316489,0.229248,0.34076,0.420184,0.247381,|0.732556,0.175533,0.278975,0.125875,0.838358,0.254826,0.16484,0.63696,0.745259,0.612332,0.535785,0.878282,0.652121,0.535108,0.0774111,0.364289,0.886872,0.807498,0.207554,0.568565,0.398567,0.35531,0.0531256,0.0875188,0.0760478,0.30041,0.16721,0.912764,0.834943,0.796321,0.820826,0.0205904,0.0114936,0.782765,0.765606,0.365429,0.453682,0.794689,0.52505,0.301657,0.477387,0.0776781,0.56232,0.980533,0.809067,0.086324,0.370742,0.958492,0.907835,0.997463,0.0131206,0.627968,0.645325,0.914107,0.574877,0.111489,0.772912,0.866553,0.233127,0.964515,0.461429,0.476684,0.0158273,0.488287,0.518657,0.271496,0.177366,0.354193,0.02556,0.64492,0.781554,0.197226,0.425126,0.334805,0.842554,0.581355,0.870237,0.268355,0.620832,0.435969,0.430134,0.237974,0.343904,0.74984,0.305462,0.293402,0.101186,0.893447,0.192392,0.45131,0.00655818,0.411213,0.870905,0.225597,0.500793,0.80748,0.13006,0.502708,0.909333,0.724209,0.48965,0.451605,0.784459,0.17158,0.0421298,0.807118,0.482082,0.405515,0.659627,0.884336,0.333653,0.290306,0.754134,0.569275,0.351042,0.789213,0.0229123,0.474594,0.862918,0.715506,0.83839,0.407442,0.812613,0.66223,0.215341,0.67747,0.303255,0.354423,0.222326,0.899804,0.0381062,0.91179,0.778342,0.693042,0.0432527,0.440527,0.635271,0.569548,0.750656,0.80925,0.0511967,0.636258,0.309699,0.273058,0.626481,0.785592,0.14129,0.690323,0.768295,0.204411,0.955547,0.556715,0.674584,0.481448,0.839511,0.515069,0.811739,0.111351,0.634481,0.362649,0.352232,0.319537,0.449392,0.522534,0.15282,0.24516,0.851029,0.402941,0.684316,0.468044,0.263466,0.476925,0.378807,0.965902,0.943225,0.0441114,0.865617,0.380168,0.766876,0.869382,0.815108,0.858916,0.995384,0.344495,0.885548,0.133169,0.673766,0.590196,0.0727994,0.218564,0.537744,0.621029,0.269459,0.0875469,0.623035,0.484911,0.845604,0.588869,0.612246,0.094373,0.292657,0.0749379,0.480941,0.94442,0.538408,0.943605,0.608798,0.210067,0.929666,0.653216,0.295362,0.8037,0.987399,0.240458,0.208512,0.11596,0.994137,0.629799,0.00570631,0.535311,0.223611,0.336167,0.846799,0.52771,0.698837,0.644303,0.868584,0.627362,0.589235,0.862692,0.683298,0.464855,0.793805,0.826951,0.0189736,0.718033,0.749912,0.0546359,0.692197,0.64987,0.0357012,0.0232706,0.998835,0.821048,0.208237,0.371781,0.00532138,0.397977,0.00586814,0.0994555,0.448868,0.987953,0.757024,0.0439933,0.310449,0.445101,0.881326,0.555842,0.124243,0.757872,0.177557,0.807453,0.302014,0.0617717,0.726163,0.415197,0.210996,0.0590736,0.918259,0.0111369,0.20049,0.792341,0.645333,0.566037,0.108804,0.69931,0.329368,0.344674,0.426331,0.410222,0.0847896,0.165648,0.106924,0.828729,0.0630636,0.803283,0.0491722,0.436142,0.0176297,0.761687,0.365824,0.460533,0.545225,0.479121,0.500455,0.210583,0.10647,0.489518,0.801925,0.724398,0.386892,0.581018,0.536291,0.969848,0.782644,0.581242,0.649588,0.86185,0.136453,0.425566,0.0349947,0.527396,0.819481,0.703695,0.67266,0.841142,0.0993622,0.792972,0.683174,0.914487,0.162809,0.244158,0.615803,0.390089,0.68873,0.455584,0.601803,0.614354,0.080293,0.612292,0.625575,0.716672,0.780477,0.92295,0.652158,0.798011,0.753968,0.710293,0.854309,0.98996,0.38599,0.285867,0.362366,0.871512,0.751589,0.0544678,0.744071,0.270281,0.643119,0.554294,0.0258895,0.894388,0.0338966,0.216027,0.282704,0.819532,0.0788603,0.433272,0.286378,0.14692,0.877683,0.945077,0.460516,0.5355,0.828194,0.949141,0.0175858,0.97392,0.0546534,0.365892,0.688164,0.265529,0.41229,0.279624,0.951158,0.214064,0.857969,0.487524,0.292752,0.0290586,0.943653,0.0953694,0.0886989,0.0712802,0.914083,0.369133,0.239997,0.350073,0.887918,0.048079,0.436401,0.515692,0.66795,0.784535,0.582394,0.539587,0.289167,0.0185201,0.516631,0.63043,0.0226377,0.299712,0.991002,0.628844,0.0690907,0.26114,0.317797,0.240192,0.623973,0.83789,0.593274,0.346408,0.991522,0.467761,0.756994,0.565236,0.928493,0.904446,0.106464,0.562409,0.434322,0.979921,0.597061,0.953725,0.620395,0.244465,0.738003,0.436911,0.850468,0.20885,0.884511,0.30357,0.743493,0.82995,0.227586,0.937948,0.429836,0.198169,0.839912,0.602964,0.980404,0.183833,0.201339,0.684507,0.529508,0.230076,0.667702,0.946835,0.0724213,0.58618,0.689417,0.772368,0.483855,0.0148195,0.587912,0.780652,0.148995,0.448792,0.975239,0.899554,0.405338,0.357574,0.602979,0.0101051,0.948865,0.711097,0.569839,0.578203,0.876688,0.758588,0.984199,0.876342,0.988171,0.91651,0.539955,0.177807,0.645705,0.00564516,0.0221817,0.0923842,0.609617,0.824977,0.151167,0.675334,0.281604,0.0165634,0.0822224,0.320681,0.142389,0.992103,0.827473,0.978327,0.775157,0.434537,0.718006,0.766496,0.794599,0.125574,0.689871,0.0447202,0.252775,0.686053,0.107722,0.890416,0.631384,0.305708,0.812297,0.633728,0.709914,0.26761,0.77883,0.0622851,0.131386,0.59893,0.141485,0.900842,0.472146,0.280422,0.895981,0.485731,0.488355,0.0691473,0.763277,0.771164,0.73088,0.367195,0.070155,0.92651,0.71081,0.42204,0.3649,0.717022,0.947869,0.454945,0.87021,0.00786048,0.516931,0.223897,0.0978165,0.113771,0.467759,0.319804,0.8762,0.809297,0.648929,0.493058,0.887677,0.784539,0.161433,0.0231128,0.0101063,0.826972,0.571742,0.64661,0.595706,0.886807,0.373663,0.131867,0.683147,0.219692,0.547647,0.0423787,0.841642,0.849986,0.323923,0.739609,0.538245,0.00745058,0.066731,0.487325,0.0101708,0.998779,0.954836,0.893965,0.902659,0.503678,0.471003,0.450933,0.437626,0.579998,0.203403,0.559848,0.161434,0.346551,0.783825,0.032037,0.372004,0.204999,0.139469,0.689732,0.496071,0.720339,0.337481,0.795358,0.168026,0.581286,0.571695,0.150644,0.702291,0.881712,0.808404,0.553417,0.477351,0.0501409,0.65935,0.339294,0.150922,0.756284,0.526348,0.960201,0.226098,0.691776,0.75048,0.238787,0.443196,0.449947,0.659332,0.735549,0.904256,0.997664,0.357196,0.580873,0.895046,0.37104,0.0306,0.225142,0.308679,0.564248,0.968716,0.915527,0.973582,0.555155,0.286538,0.167714,0.372608,0.125871,0.185358,0.414832,0.584928,0.269215,0.849223,0.253952,0.0280439,0.0307879,0.840275,0.710192,0.032335,0.604918,0.722566,0.571615,0.910313,0.666347,0.265035,0.555504,0.458831,0.179622,0.0601822,0.781421,0.660195,0.938779,0.243369,0.746821,0.67602,0.983856,0.353903,0.499968,0.219915,0.905931,0.227134,0.500874,0.236353,0.398801,0.966522,0.76416,0.910333,0.596874,0.291398,0.340644,0.346202,0.469974,0.33622,0.858641,0.347181,0.246284,0.550431,0.0244577,0.0547596,0.175792,0.635619,0.151114,0.21769,0.102841,0.734056,0.408734,0.734263,0.264804,0.107107,0.673157,0.186231,0.556151,0.696192,0.998727,0.208294,0.864528,0.544611,0.243528,0.745905,0.154008,0.466493,0.972478,0.461998,0.70163,0.918706,0.660187,0.868071,0.345646,0.909405,0.924162,0.247658,0.612705,0.289447,0.906576,0.0390618,0.741437,0.692636,0.673316,0.676839,0.611964,0.831328,0.735658,0.0834709,0.323795,0.586253,0.862914,0.61461,0.187133,0.395462,0.600915,0.506439,0.211712,0.219184,0.633368,0.201315,0.917514,0.787143,0.119207,0.559215,0.350185,0.916578,0.471371,0.974184,0.0851765,0.687183,0.810836,0.19027,0.0572663,0.0679431,0.186461,0.516306,0.22688,0.692193,0.432617,0.460842,0.50484,0.229578,0.245798,0.556346,0.382779,0.744127,0.243362,0.443664,0.947646,0.913544,0.835738,0.891037,0.420036,0.454462,0.234226,0.717261,0.247825,0.372193,0.411436,0.496163,0.714968,0.243417,0.984568,0.20011,0.479092,0.748769,0.0181413,0.48092,0.853341,0.700868,0.796161,0.800677,0.362549,0.899031,0.280707,0.845389,0.390627,0.369741,0.238232,0.95851,0.68143,0.132798,0.823363,0.616714,0.549035,0.580656,0.306118,0.892038,0.668936,0.389008,0.00804156,0.858011,0.968825,0.775559,0.121793,0.112837,0.0268466,0.157304,0.372507,0.487474,0.846145,0.554816,0.281591,0.48401,0.302731,0.041295,0.574469,0.576894,0.638914,0.849845,0.283154,0.986355,0.4322,0.218454,0.786652,0.21759,0.491799,0.29962,0.938451,0.220471,0.763299,0.758592,0.283811,0.103361,0.285807,0.783331,0.773946,0.852027,0.769637,0.604958,0.596864,0.110719,0.0343868,0.762583,0.984127,0.897868,0.763941,0.0990531,0.835751,0.528332,0.580109,0.857323,0.835595,0.243208,0.983088,0.573628,0.27776,0.903176,0.109372,0.154354,0.702306,0.613798,0.148136,0.981065,0.651756,0.225487,0.967772,0.138102,0.551724,0.337316,0.238537,0.792114,0.0870212,0.13063,0.793823,0.716993,0.197024,0.289107,0.0872834,0.671604,0.085493,0.547576,0.697844,0.124525,0.722315,0.413728,0.98856,0.0953448,0.264306,0.119144,0.353149,0.455997,0.199879,0.369217,0.212493,0.851363,0.562971,0.781775,0.808581,0.293114,0.330897,0.848457,0.0374686,0.636026,0.609563,0.265125,0.0228931,0.232195,0.678305,0.168548,0.452793,0.647033,0.286379,0.07219,0.552076,0.220502,0.291499,0.220374,0.613456,0.0137604,0.176272,0.874665,0.843345,0.751417,0.199281,0.669457,0.592372,0.445589,0.201928,0.843708,0.999776,0.785123,0.189613,0.169973,0.733952,0.64797,0.218371,0.147503,0.722598,0.789069,0.762795,0.471974,0.83484,0.720237,0.87568,0.476932,0.431822,0.449668,0.196229,0.229672,0.0593633,0.845843,0.890843,0.708834,0.83382,0.5915,0.876131,0.360025,0.0394844,0.140232,0.446229,0.465832,0.79183,0.797888,0.00861114,0.854281,0.0738698,0.70932,0.0796934,0.988477,0.897758,0.15466,0.103644,0.567772,0.163645,0.525204,0.303767,0.0757172,0.840036,0.776019,0.347447,0.199637,0.624119,0.609525,0.408082,0.689936,0.70813,|0.379129,0.573686,0.0744129,0.915885,0.798179,0.523825,0.513921,0.584586,0.182083,0.665646,0.687616,0.312982,0.210517,0.4264,0.6685,0.497742,0.0349679,0.874147,0.0995608,0.0223507,0.928675,0.267773,0.884072,0.298755,0.241883,0.501304,0.950138,0.495332,0.503248,0.949426,0.765779,0.137758,0.226326,0.698875,0.335319,0.620101,0.555219,0.0748576,0.117022,0.155969,0.903705,0.176929,0.795799,0.997348,0.294147,0.871112,0.48758,0.957704,0.00403994,0.608118,0.504178,0.293676,0.30766,0.577365,0.408239,0.815509,0.280764,0.335266,0.389891,0.593777,0.158571,0.0357794,0.35221,0.922998,0.0861592,0.434941,0.161171,0.0915272,0.782033,0.24693,0.44662,0.602756,0.816359,0.768029,0.75458,0.535507,0.741451,0.859805,0.595007,0.272785,0.616928,0.922178,0.482831,0.611042,0.591901,0.769947,0.29801,0.382573,0.994073,0.421284,0.0706838,0.020444,0.775437,0.308531,0.705637,0.129342,0.367483,0.486463,0.668577,0.316302,0.200021,0.233181,0.432478,0.478305,0.751731,0.147421,0.583155,0.68938,0.270718,0.702151,0.965955,0.995009,0.709106,0.9499,0.241788,0.732006,0.381531,0.567581,0.342196,0.642979,0.643513,0.488413,0.169769,0.844836,0.0819709,0.0342838,0.555958,0.971624,0.230739,0.431365,0.272279,0.732321,0.303427,0.629848,0.665837,0.308868,0.688685,0.44575,0.52231,0.176403,0.458047,0.176277,0.564733,0.451791,0.910815,0.944351,0.440579,0.644552,0.0682887,0.834273,0.190271,0.997124,0.01921,0.949155,0.169784,0.000402153,0.176838,0.34145,0.443346,0.1124,0.523743,0.527095,0.647344,0.463884,0.437715,0.646693,0.468366,0.315885,0.902513,0.883616,0.757478,0.912307,0.061731,0.768802,0.257023,0.743963,0.450812,0.766961,0.937307,0.368353,0.148622,0.284728,0.113454,0.849814,0.80708,0.0781724,0.628124,0.406489,0.282124,0.491264,0.185092,0.989832,0.924974,0.683935,0.0932659,0.802521,0.26675,0.91181,0.0988677,0.667809,0.973946,0.346547,0.556355,0.943764,0.191572,0.848772,0.23873,0.189734,0.508989,0.736069,0.346191,0.0253011,0.913232,0.492996,0.866213,0.353007,0.643186,0.353196,0.42783,0.770768,0.195493,0.429682,0.311351,0.394369,0.766176,0.909249,0.660636,0.336447,0.0839245,0.194063,0.0401801,0.751356,0.45616,0.0550308,0.419109,0.417877,0.850503,0.532438,0.00241035,0.889067,0.0342436,0.705675,0.342806,0.2287,0.0900179,0.414684,0.462344,0.662444,0.975557,0.879995,0.0161885,0.524046,0.691716,0.74682,0.400933,0.953906,0.569559,0.00458461,0.0199492,0.941548,0.231332,0.178388,0.826417,0.965551,0.543314,0.324951,0.224876,0.459507,0.0327811,0.148254,0.00186658,0.487302,0.959826,0.875907,0.238083,0.804247,0.878004,0.677118,0.425599,0.550679,0.856141,0.0350102,0.397622,0.863717,0.952364,0.348475,0.188403,0.798497,0.205478,0.346408,0.296071,0.764982,0.475296,0.852401,0.390894,0.342002,0.130857,0.734435,0.425938,0.0693018,0.504001,0.927858,0.895293,0.487118,0.070995,0.828651,0.389439,0.8023,0.235245,0.958266,0.500286,0.049884,0.131101,0.0217983,0.914638,0.207355,0.597242,0.140873,0.445489,0.337101,0.332932,0.0947638,0.413255,0.342266,0.625845,0.817698,0.481698,0.699922,0.490716,0.724282,0.963041,0.0375623,0.394552,0.485855,0.212473,0.401621,0.228612,0.41946,0.852438,0.600165,0.997041,0.54255,0.731448,0.177788,0.70683,0.533706,0.017871,0.774146,0.590739,0.367893,0.370396,0.0775474,0.0636072,0.396219,0.341961,0.826186,0.373173,0.98669,0.00560385,0.395475,0.267027,0.0261201,0.635529,0.897428,0.615441,0.966651,0.570098,0.19039,0.751232,0.968584,0.0150629,0.445858,0.0934772,0.446943,0.309238,0.445529,0.108812,0.853898,0.849405,0.0606655,0.575116,0.0572257,0.199337,0.0905026,0.643751,0.260951,0.196636,0.390945,0.196867,0.321226,0.332589,0.626549,0.541583,0.295709,0.833518,0.0456845,0.980178,0.255309,0.14731,0.174355,0.819987,0.146823,0.576531,0.120424,0.828164,0.279914,0.392382,0.52849,0.623257,0.738117,0.80456,0.609735,0.58141,0.95773,0.540395,0.250729,0.501942,0.761026,0.178996,0.869289,0.317232,0.124943,0.849706,0.434958,0.153663,0.63048,0.503272,0.304979,0.33606,0.769015,0.845205,0.188866,0.83024,0.301001,0.25029,0.103884,0.593796,0.634077,0.458709,0.996032,0.189277,0.120255,0.268768,0.033161,0.562815,0.498037,0.309678,0.281266,0.142752,0.370958,0.897503,0.897609,0.352662,0.069397,0.439125,0.0527451,0.592812,0.471028,0.838825,0.890935,0.522479,0.917535,0.237906,0.398682,0.985264,0.635448,0.181987,0.383592,0.508796,0.727703,0.0470082,0.0615852,0.433476,0.386841,0.753971,0.465451,0.458041,0.453618,0.96905,0.0892045,0.905217,0.77848,0.28974,0.71868,0.235692,0.059227,0.422373,0.385951,0.494381,0.826688,0.587574,0.365382,0.980364,0.0554724,0.532353,0.293557,0.0707559,0.321689,0.0669702,0.56577,0.825952,0.232096,0.20032,0.0200403,0.626724,0.131971,0.448563,0.0234918,0.451914,0.709257,0.189054,0.563442,0.843454,0.917889,0.600656,0.627871,0.111199,0.392504,0.646212,0.839334,0.53651,0.229045,0.896665,0.19877,0.227921,0.853974,0.929275,0.830503,0.0403721,0.739834,0.845683,0.00679809,0.902249,0.685398,0.96426,0.576484,0.500803,0.170762,0.731527,0.365842,0.559479,0.398253,0.529801,0.233547,0.306281,0.192851,0.591965,0.734906,0.39402,0.255266,0.141593,0.729028,0.815153,0.964847,0.311971,0.108631,0.478554,0.555549,0.395227,0.0255527,0.0402007,0.273731,0.907824,0.743071,0.213946,0.0859889,0.00901997,0.88728,0.951576,0.663976,0.640076,0.668831,0.380814,0.242935,0.824711,0.0641142,0.591776,0.65275,0.859994,0.384245,0.577725,0.0828882,0.859329,0.0127251,0.196813,0.159122,0.520087,0.0190963,0.93559,0.995113,0.58979,0.803086,0.440585,0.186735,0.630001,0.822105,0.155874,0.379999,0.485822,0.947129,0.908687,0.0374444,0.851018,0.195881,0.827415,0.573823,0.129273,0.271236,0.0274589,0.0517043,0.718238,0.210738,0.10134,0.387074,0.0747954,0.314101,0.657849,0.170545,0.0111029,0.137752,0.271501,0.641678,0.614485,0.277326,0.60914,0.682679,0.420369,0.36937,0.955458,0.482297,0.258646,0.84767,0.944991,0.503263,0.944268,0.729517,0.927118,0.143944,0.535893,0.853859,0.0785529,0.256358,0.0464735,0.845751,0.741839,0.798693,0.0106423,0.97448,0.79515,0.27768,0.543123,0.00190789,0.578221,0.662688,0.122714,0.675677,0.203279,0.698543,0.117252,0.258132,0.230226,0.0642574,0.7536,0.868684,0.230449,0.0766626,0.477029,0.835141,0.366835,0.466865,0.542277,0.841712,0.149136,0.266506,0.173408,0.558481,0.131217,0.740198,0.638478,0.00581044,0.0722383,0.582175,0.529101,0.851235,0.963227,0.511631,0.401106,0.726954,0.691999,0.50661,0.621883,0.532168,0.0558388,0.953964,0.660709,0.308724,0.225333,0.645608,0.829234,0.173372,0.00358915,0.256249,0.417122,0.102359,0.182173,0.775942,0.809423,0.570132,0.167936,0.161855,0.873081,0.0537187,0.317886,0.480623,0.295585,0.91235,0.993133,0.92312,0.670213,0.969636,0.126543,0.51082,0.0236515,0.306693,0.547733,0.335797,0.912532,0.846227,0.108995,0.703013,0.862631,0.0361717,0.932533,0.505062,0.791584,0.564919,0.397233,0.728764,0.140397,0.277107,0.686576,0.0437721,0.0777757,0.826272,0.961518,0.259174,0.293808,0.865566,0.542501,0.403406,0.384647,0.602754,0.482733,0.747596,0.314103,0.265748,0.0597062,0.93114,0.590516,0.911757,0.595481,0.158569,0.151909,0.607718,0.942023,0.939805,0.235037,0.106497,0.823702,0.10916,0.8894,0.0275761,0.605742,0.421449,0.530215,0.527854,0.255992,0.0994047,0.97366,0.460623,0.265059,0.510817,0.577573,0.902181,0.799338,0.433625,0.125826,0.291008,0.372865,0.253344,0.170394,0.488541,0.379325,0.221893,0.782498,0.852167,0.591274,0.255991,0.575288,0.379055,0.415463,0.968366,0.416332,0.356271,0.703573,0.0399324,0.853745,0.893338,0.811853,0.464168,0.419403,0.568309,0.666987,0.574675,0.167833,0.907963,0.336135,0.886009,0.813392,0.573589,0.351711,0.750778,0.724911,0.475063,0.913596,0.312649,0.84369,0.893679,0.617396,0.503565,0.647349,0.779881,0.802301,0.00645971,0.100166,0.675474,0.817138,0.684471,0.584409,0.459419,0.894196,0.347488,0.887566,0.580075,0.43754,0.897017,0.88169,0.675401,0.499376,0.534451,0.099786,0.720749,0.478162,0.985741,0.098381,0.606674,0.702604,0.317467,0.0851361,0.911212,0.992258,0.206501,0.318785,0.0349965,0.18772,0.565318,0.75021,0.388182,0.258876,0.531882,0.220708,0.00638241,0.103446,0.359018,0.432561,0.279494,0.880632,0.84012,0.964393,0.0887725,0.599765,0.105559,0.0707446,0.0984893,0.709061,0.365628,0.256725,0.14588,0.111306,0.54033,0.266752,0.226502,0.0557454,0.9024,0.904031,0.912058,0.160031,0.609327,0.406381,0.135214,0.025521,0.0911444,0.890757,0.332727,0.279478,0.825626,0.4308,0.263723,0.0679821,0.596795,0.252177,0.757649,0.679182,0.0825302,0.732444,0.222227,0.97196,0.598494,0.0799267,0.237984,0.968215,0.200467,0.20687,0.90248,0.654829,0.644387,0.774772,0.799836,0.0735052,0.187715,0.87156,0.112498,0.919193,0.567425,0.171264,0.618747,0.782852,0.877069,0.560992,0.196801,0.431654,0.856739,0.862255,0.681383,0.0834502,0.196546,0.461427,0.732583,0.33347,0.489973,0.88023,0.422341,0.169111,0.190433,0.958829,0.153769,0.0279206,0.275016,0.319207,0.838009,0.281449,0.808801,0.0292225,0.0535094,0.890081,0.653399,0.4701,0.355157,0.668583,0.601962,0.0633122,0.661923,0.0553599,0.401606,0.820078,0.902811,0.876092,0.135291,0.320746,0.0818657,0.692107,0.27788,0.282102,0.102163,0.601345,0.305217,0.801746,0.248286,0.145869,0.296235,0.545102,0.989526,0.534043,0.84405,0.193513,0.36552,0.992876,0.948412,0.543564,0.21152,|0.832045,0.361836,0.680125,0.10942,0.391366,0.908004,0.483172,0.832431,0.863506,0.209359,0.348351,0.231065,0.85641,0.631077,0.619691,0.868996,0.773516,0.497832,0.944303,0.347446,0.506334,0.403922,0.226284,0.0136106,0.222425,0.146208,0.167476,0.694549,0.187722,0.831331,0.796893,0.642202,0.209052,0.508646,0.546086,0.74268,0.109443,0.0484664,0.050445,0.954442,0.809372,0.544192,0.461101,0.180098,0.427259,0.773808,0.0279338,0.0380652,0.330773,0.598353,0.317165,0.563904,0.222742,0.490499,0.842689,0.600882,0.166557,0.123371,0.648435,0.0986756,0.224561,0.597317,0.385115,0.602695,0.776932,0.0547432,0.190747,0.0161555,0.407068,0.620834,0.0573337,0.199169,0.092725,0.808091,0.500095,0.130877,0.161247,0.485655,0.425128,0.921259,0.440155,0.448589,0.808913,0.307069,0.161854,0.0934421,0.75259,0.188604,0.394429,0.24041,0.030957,0.249226,0.68975,0.138703,0.468074,0.595427,0.28631,0.068397,0.634776,0.731675,0.81633,0.68639,0.0919642,0.0157222,0.80433,0.252133,0.53806,0.288425,0.617331,0.921869,0.272595,0.162448,0.746692,0.257925,0.981299,0.772056,0.403334,0.551628,0.817575,0.712114,0.111024,0.124342,0.275152,0.15631,0.753204,0.280423,0.537735,0.957697,0.0243235,0.829173,0.425836,0.0877717,0.767898,0.41764,0.0338322,0.105339,0.656838,0.365805,0.272535,0.556064,0.409872,0.0266336,0.620959,0.12356,0.147341,0.493764,0.332493,0.786353,0.227928,0.276084,0.208299,0.715255,0.00167823,0.901006,0.803265,0.805016,0.139833,0.243874,0.723771,0.137991,0.809836,0.467364,0.979096,0.0399054,0.001966,0.577131,0.967066,0.560779,0.0385621,0.534188,0.259913,0.440204,0.0669215,0.325079,0.113814,0.484318,0.505244,0.86529,0.302612,0.453516,0.670119,0.983407,0.326179,0.0903753,0.193435,0.73058,0.206796,0.0668091,0.654063,0.769878,0.401601,0.87383,0.0589216,0.661479,0.628825,0.420337,0.498906,0.245835,0.885121,0.195253,0.925257,0.0870128,0.925312,0.488915,0.805111,0.32129,0.929646,0.564615,0.0925946,0.119087,0.800912,0.765551,0.99499,0.407831,0.257675,0.889758,0.828386,0.69132,0.911532,0.466386,0.333933,0.974912,0.179712,0.778754,0.146337,0.583047,0.708351,0.849368,0.978835,0.823481,0.535486,0.142379,0.00558561,0.604791,0.895121,0.779768,0.0808629,0.864917,0.990722,0.563582,0.526702,0.228791,0.974228,0.322589,0.051439,0.942965,0.902153,0.284626,0.293383,0.845969,0.946171,0.956813,0.847431,0.85361,0.701939,0.653141,0.126307,0.850674,0.409765,0.637644,0.642564,0.120501,0.190666,0.354876,0.607159,0.964213,0.671477,0.301113,0.847383,0.686641,0.350071,0.044027,0.667809,0.929913,0.279103,0.792539,0.52685,0.0633367,0.621233,0.0239081,0.405478,0.228641,0.714405,0.346431,0.113904,0.558453,0.673611,0.55687,0.194444,0.399907,0.589693,0.304064,0.910352,0.155786,0.672388,0.528786,0.71193,0.437104,0.70536,0.84577,0.4439,0.741816,0.96175,0.0593368,0.604778,0.580268,0.829479,0.978488,0.569467,0.9258,0.125379,0.585427,0.320061,0.94413,0.152572,0.329097,0.720148,0.23694,0.942499,0.76856,0.655575,0.301224,0.717142,0.406809,0.143637,0.551011,0.760379,0.729336,0.041414,0.997763,0.133977,0.740482,0.014568,0.861244,0.222972,0.17633,0.0787421,0.726422,0.888874,0.0838992,0.492911,0.563953,0.672834,0.840491,0.876227,0.437309,0.196232,0.238155,0.732312,0.804224,0.529065,0.817637,0.24049,0.305707,0.745132,0.825093,0.471049,0.30115,0.679108,0.67071,0.715212,0.501498,0.430481,0.805947,0.888137,0.60692,0.898268,0.0829066,0.0374577,0.538452,0.648534,0.270583,0.349262,0.626798,0.806352,0.374851,0.299702,0.818516,0.637718,0.507324,0.388086,0.482938,0.784634,0.662832,0.270168,0.334571,0.80881,0.625476,0.16745,0.752802,0.224018,0.807489,0.869847,0.0457685,0.111276,0.923713,0.71011,0.238506,0.6277,0.591262,0.0463688,0.870604,0.665079,0.04488,0.544715,0.361197,0.644643,0.347786,0.422897,0.471569,0.656325,0.260898,0.330626,0.0544307,0.183607,0.576755,0.597647,0.113848,0.739562,0.660227,0.294787,0.60672,0.19095,0.0781775,0.646178,0.847523,0.53039,0.362992,0.432027,0.330376,0.321917,0.359115,0.478889,0.731781,0.130619,0.4152,0.0823464,0.315889,0.0288777,0.157716,0.274997,0.92333,0.661835,0.892887,0.155199,0.943958,0.0591038,0.242757,0.60954,0.831162,0.320392,0.87231,0.276738,0.388036,0.634979,0.873498,0.511713,0.0642871,0.803973,0.911644,0.953779,0.756702,0.0577518,0.102598,0.655267,0.968247,0.741725,0.408814,0.63332,0.114339,0.773317,0.905594,0.0221295,0.440313,0.915444,0.471611,0.684494,0.102598,0.0770453,0.716488,0.324836,0.785881,0.473072,0.565254,0.639179,0.13142,0.996237,0.39867,0.516205,0.585236,0.711376,0.30373,0.230639,0.907707,0.132632,0.704089,0.825149,0.755215,0.313781,0.401382,0.903408,0.413461,0.660959,0.893904,0.114462,0.269727,0.755673,0.927444,0.0678036,0.0997795,0.708847,0.330042,0.976968,0.717471,0.74814,0.305456,0.394505,0.630554,0.690444,0.232383,0.479031,0.490033,0.0852908,0.207431,0.632698,0.196339,0.626741,0.0835018,0.160324,0.391718,0.996975,0.991239,0.0894194,0.439182,0.878828,0.0995919,0.16238,0.805093,0.913628,0.903327,0.817736,0.0317627,0.552061,0.768617,0.813691,0.930559,0.639718,0.0154957,0.967572,0.387394,0.732103,0.790008,0.886214,0.384715,0.360036,0.879623,0.646039,0.547778,0.984167,0.0934632,0.94157,0.614663,0.979527,0.0511951,0.0753917,0.288313,0.776003,0.829845,0.3876,0.584505,0.227086,0.50125,0.458504,0.660143,0.266043,0.729908,0.310715,0.103132,0.669068,0.308413,0.837738,0.832549,0.526036,0.646157,0.224768,0.933462,0.963752,0.649995,0.840724,0.759407,0.338542,0.445861,0.423145,0.0182672,0.811841,0.613559,0.454468,0.0540028,0.612033,0.632502,0.913226,0.395122,0.999252,0.586487,0.436758,0.798284,0.887783,0.942786,0.952678,0.887078,0.785592,0.964079,0.245895,0.944955,0.722355,0.346249,0.129512,0.220719,0.774824,0.643062,0.696606,0.917641,0.69829,0.26226,0.109435,0.749372,0.41003,0.631513,0.462489,0.189497,0.427116,0.835775,0.0258785,0.700649,0.603981,0.261637,0.981086,0.633611,0.978859,0.244052,0.923251,0.1547,0.303416,0.488997,0.641626,0.0802649,0.0611033,0.442463,0.675872,0.673234,0.0355986,0.902691,0.344984,0.91144,0.33247,0.968928,0.106489,0.285978,0.188985,0.462596,0.818784,0.726971,0.23039,0.330364,0.324657,0.836455,0.509898,0.170651,0.66207,0.0143316,0.700504,0.792892,0.653944,0.344513,0.544497,0.665297,0.591299,0.775384,0.300869,0.539317,0.0234508,0.62246,0.293963,0.800311,0.264291,0.988389,0.943235,0.782161,0.750483,0.431739,0.168193,0.889241,0.973952,0.931211,0.979558,0.494696,0.615247,0.74016,0.265817,0.318897,0.497589,0.572482,0.200149,0.383165,0.258076,0.28705,0.759806,0.8092,0.188633,0.135463,0.705873,0.766162,0.254023,0.967398,0.113633,0.914348,0.992935,0.0506857,0.891716,0.0186564,0.99924,0.937246,0.505313,0.311526,0.799357,0.0542637,0.0790352,0.108761,0.981141,0.41979,0.161333,0.492131,0.161625,0.531147,0.194248,0.051366,0.499449,0.478454,0.825083,0.374246,0.345473,0.0157812,0.281489,0.344954,0.063144,0.053207,0.469152,0.603851,0.877461,0.482735,0.192239,0.607269,0.528073,0.611555,0.54014,0.21006,0.244788,0.895601,0.817805,0.17374,0.141833,0.303804,0.74508,0.911104,0.759515,0.12402,0.844103,0.419963,0.46119,0.5059,0.949394,0.485405,0.189328,0.618341,0.272228,0.386588,0.880708,0.179744,0.133275,0.556424,0.597593,0.515531,0.518931,0.750117,0.759895,0.0381618,0.772619,0.978797,0.642124,0.462953,0.0257539,0.814897,0.276244,0.00766319,0.217607,0.836422,0.819898,0.922346,0.265197,0.97325,0.601739,0.369006,0.818758,0.130118,0.156051,0.408547,0.606464,0.547325,0.0240635,0.484527,0.883141,0.0580154,0.239129,0.272249,0.475762,0.571847,0.281079,0.678989,0.664962,0.529463,0.720768,0.891147,0.791273,0.0732499,0.0800105,0.177128,0.567839,0.0980794,0.975117,0.472502,0.687184,0.171759,0.281723,0.084331,0.875545,0.644915,0.514015,0.57823,0.608323,0.826438,0.279745,0.107258,0.338208,0.71275,0.289763,0.484034,0.513412,0.709787,0.403238,0.777422,0.416732,0.863544,0.273484,0.755713,0.853124,0.125486,0.736161,0.939606,0.381143,0.419647,0.732397,0.0345069,0.00229061,0.557679,0.121441,0.0634922,0.64977,0.0301129,0.433126,0.540384,0.71317,0.93642,0.165298,0.462828,0.142821,0.365969,0.074055,0.167933,0.602934,0.883476,0.363518,0.706914,0.675297,0.217238,0.421502,0.35848,0.693579,0.966026,0.940538,0.516935,0.93397,0.173209,0.654916,0.490901,0.0324979,0.837429,0.538454,0.280046,0.112453,0.234703,0.579437,0.903738,0.746585,0.273506,0.371867,0.192082,0.94694,0.14706,0.856343,0.640384,0.542295,0.839737,0.548872,0.359101,0.0421888,0.734268,0.24241,0.509016,0.882896,0.908104,0.265586,0.563398,0.904977,0.0543228,0.108996,0.304786,0.405885,0.245761,0.715999,0.732794,0.818735,0.133611,0.819383,0.745099,0.715705,0.821609,0.467658,0.394164,0.741913,0.0354604,0.0955408,0.762724,0.812239,0.280215,0.476391,0.756993,0.175728,0.904637,0.350256,0.592014,0.929718,0.813098,0.750106,0.244275,0.432659,0.668248,0.224728,0.742219,0.703262,0.484621,0.860341,0.669561,0.39262,0.562132,0.378259,0.156464,0.597334,0.890728,0.23996,0.540416,0.895684,0.990444,0.659368,0.446319,0.215472,0.751058,0.190664,0.597069,0.7502,0.65823,0.19741,0.719964,0.896482,0.100967,0.990027,0.432532,0.179969,0.600078,0.41912,0.432023,0.570812,0.570056,0.729603,0.859508,0.987406,0.753011,0.425756,0.738786,0.198633,0.438998,|0.445489,0.542897,0.275611,0.799107,0.415679,0.0867614,0.266333,0.0405488,0.350284,0.395315,0.309534,0.677303,0.0304524,0.82795,0.694619,0.419358,0.530591,0.93566,0.836963,0.549184,0.995995,0.852642,0.49944,0.0643088,0.275184,0.519461,0.16432,0.0851824,0.350034,0.890992,0.482859,0.764678,0.621032,0.532212,0.802083,0.299991,0.280724,0.501977,0.582034,0.922579,0.523283,0.148165,0.870276,0.709528,0.837301,0.417745,0.861233,0.200874,0.192328,0.134198,0.608345,0.80699,0.389844,0.868022,0.469859,0.428244,0.895357,0.07374,0.178456,0.349239,0.413975,0.0762236,0.63467,0.60777,0.182844,0.724247,0.411138,0.947268,0.577081,0.572131,0.734047,0.777478,0.262306,0.276051,0.225788,0.490374,0.669427,0.776987,0.327962,0.650461,0.143559,0.903949,0.173456,0.136401,0.100085,0.0225444,0.102852,0.921457,0.40696,0.493065,0.905947,0.604442,0.544818,0.433749,0.192086,0.913476,0.508388,0.60525,0.257744,0.967543,0.422597,0.995353,0.177598,0.959668,0.700083,0.169131,0.529884,0.0516713,0.858131,0.955364,0.763315,0.975892,0.965618,0.697149,0.442024,0.591784,0.915096,0.122854,0.189198,0.0670772,0.486796,0.0312219,0.225097,0.806221,0.169075,0.345738,0.499345,0.181419,0.892739,0.330052,0.272113,0.578995,0.188631,0.951814,0.713279,0.488348,0.196813,0.912538,0.0807894,0.925472,0.57516,0.919085,0.286521,0.379219,0.769047,0.557226,0.816824,0.94918,0.377029,0.196732,0.333928,0.69237,0.983966,0.504706,0.243624,0.707503,0.428803,0.142833,0.0140948,0.84766,0.426236,0.304749,0.0119289,0.252787,0.697611,0.723767,0.509541,0.583235,0.449048,0.144019,0.154301,0.367211,0.771091,0.280512,0.527249,0.909624,0.440412,0.412594,0.828751,0.199428,0.720499,0.96969,0.906145,0.0793538,0.949833,0.516804,0.940812,0.543978,0.624104,0.712517,0.390544,0.0885099,0.969649,0.452973,0.919667,0.84918,0.340544,0.972195,0.862762,0.744806,0.147021,0.264905,0.0519584,0.831611,0.999562,0.543075,0.364172,0.44712,0.755308,0.333168,0.611772,0.234683,0.866626,0.887857,0.585639,0.428312,0.965692,0.405728,0.329778,0.881361,0.515142,0.530743,0.0820082,0.237731,0.0688477,0.751382,0.997529,0.20172,0.184635,0.502023,0.683724,0.569327,0.216424,0.670014,0.434648,0.267972,0.239653,0.0226812,0.873673,0.522906,0.286059,0.653156,0.972463,0.420853,0.646597,0.35213,0.396504,0.678185,0.620604,0.737833,0.466737,0.25219,0.146359,0.557313,0.0444968,0.912977,0.457914,0.20109,0.660543,0.5433,0.718857,0.130281,0.728323,0.813678,0.684784,0.898878,0.776859,0.299531,0.498336,0.132905,0.557271,0.281337,0.54766,0.116033,0.465142,0.525258,0.601615,0.526793,0.690161,0.155991,0.90029,0.746463,0.206292,0.993438,0.171822,0.0017674,0.513263,0.163515,0.469816,0.00747764,0.876863,0.739945,0.563286,0.774268,0.432422,0.0696574,0.826534,0.2165,0.486695,0.902183,0.297696,0.86186,0.840881,0.276685,0.483697,0.894823,0.0130364,0.518266,0.2368,0.601558,0.965064,0.830894,0.30586,0.199911,0.549728,0.522826,0.501113,0.226296,0.508684,0.260842,0.0695802,0.999901,0.71326,0.518724,0.240386,0.913305,0.256999,0.103211,0.890357,0.582497,0.220318,0.165002,0.838352,0.405293,0.642682,0.533967,0.769457,0.651312,0.213338,0.815623,0.816703,0.944662,0.510022,0.97548,0.0679748,0.613302,0.571478,0.887258,0.704653,0.650095,0.34781,0.346006,0.917666,0.697035,0.886671,0.00514007,0.280824,0.558312,0.354903,0.733046,0.707487,0.061789,0.435226,0.465346,0.743005,0.801154,0.781675,0.507151,0.802871,0.188539,0.133695,0.826627,0.200882,0.983684,0.738117,0.303384,0.389813,0.940437,0.886116,0.776322,0.0433753,0.632003,0.468026,0.607879,0.415354,0.741701,0.978864,0.705101,0.805377,0.0159233,0.408269,0.502638,0.604807,0.625727,0.896715,0.669863,0.117048,0.891193,0.36886,0.694129,0.984421,0.82116,0.14647,0.974575,0.855507,0.239572,0.833814,0.246982,0.351487,0.030156,0.593983,0.639245,0.918368,0.0779353,0.687748,0.656025,0.546909,0.00518191,0.94192,0.114247,0.609473,0.169003,0.215186,0.17582,0.0743433,0.692291,0.0404686,0.531412,0.071534,0.963623,0.877607,0.698683,0.417498,0.049498,0.961113,0.592457,0.655455,0.906789,0.42595,0.990458,0.563999,0.00232255,0.305865,0.380087,0.998601,0.952981,0.579144,0.213146,0.732358,0.289379,0.244752,0.0640942,0.937443,0.85298,0.148368,0.0452445,0.643701,0.31172,0.369155,0.599028,0.117406,0.519116,0.674558,0.015195,0.410207,0.962861,0.310267,0.647283,0.508966,0.0814374,0.254521,0.480554,0.485582,0.914196,0.764068,0.0828443,0.337191,0.759546,0.840976,0.99286,0.502059,0.0223907,0.609867,0.900107,0.554253,0.363865,0.538703,0.805784,0.956633,0.698389,0.264248,0.901185,0.448503,0.108208,0.666888,0.590098,0.725112,0.726765,0.851207,0.268483,0.465548,0.0527356,0.0290222,0.705616,0.582856,0.383656,0.408202,0.634002,0.403237,0.398935,0.696788,0.534607,0.333712,0.491887,0.54761,0.0966074,0.433361,0.598617,0.909518,0.684703,0.958913,0.662296,0.782799,0.0575485,0.590419,0.86361,0.587772,0.493854,0.501623,0.859604,0.128731,0.848268,0.756452,0.200401,0.868815,0.0852572,0.205605,0.214364,0.344651,0.150273,0.909278,0.0383813,0.211784,0.875798,0.301033,0.0642309,0.0468512,0.373967,0.303475,0.504842,0.711027,0.220023,0.908274,0.24572,0.87034,0.907102,0.279529,0.184476,0.21723,0.87778,0.00819224,0.277205,0.175727,0.0455465,0.108794,0.559811,0.281752,0.383033,0.766914,0.460069,0.0657161,0.489517,0.939888,0.544475,0.892777,0.436707,0.94568,0.198916,0.650635,0.339995,0.29648,0.617932,0.121159,0.221156,0.877466,0.231562,0.935707,0.758262,0.693134,0.272963,0.827161,0.509257,0.982272,0.761949,0.264012,0.911034,0.238665,0.659354,0.785461,0.420634,0.146998,0.301648,0.353302,0.721161,0.662031,0.559693,0.798835,0.971391,0.00560778,0.45858,0.0728169,0.608214,0.0361759,0.330704,0.387595,0.301186,0.735545,0.872989,0.231575,0.361378,0.163533,0.470951,0.764482,0.0302085,0.490073,0.855756,0.267421,0.962275,0.60462,0.205274,0.0874677,0.353416,0.234156,0.166815,0.785633,0.649618,0.165931,0.715392,0.330773,0.0698225,0.360798,0.58477,0.463164,0.295059,0.0571429,0.591283,0.962343,0.847561,0.803147,0.966894,0.925649,0.152168,0.242571,0.916943,0.994149,0.331795,0.915202,0.228967,0.855565,0.227782,0.120197,0.836599,0.335718,0.088802,0.475174,0.859346,0.525367,0.0709636,0.1907,0.501334,0.564083,0.448613,0.789908,0.671944,0.679569,0.0303357,0.0288917,0.400472,0.47994,0.992788,0.498554,0.802282,0.78407,0.328246,0.828888,0.967609,0.385234,0.430791,0.795836,0.999302,0.5578,0.0537408,0.454017,0.394847,0.660363,0.457748,0.221314,0.124511,0.975712,0.107381,0.379104,0.306503,0.80333,0.399242,0.99658,0.887705,0.487045,0.856958,0.0362412,0.216044,0.650382,0.245182,0.946493,0.742425,0.734192,0.959071,0.230293,0.231031,0.177552,0.713114,0.276764,0.995318,0.300817,0.348163,0.221834,0.130683,0.18542,0.0654375,0.776014,0.482589,0.941186,0.957401,0.866076,0.283594,0.893058,0.294877,0.761752,0.0591085,0.950729,0.00138658,0.98921,0.515292,0.707858,0.842927,0.167188,0.692995,0.441165,0.865381,0.253977,0.691542,0.599406,0.660038,0.65611,0.513077,0.833979,0.432968,0.380675,0.869333,0.756434,0.894201,0.744372,0.717206,0.269647,0.162583,0.91308,0.840039,0.375004,0.255709,0.545548,0.237686,0.564431,0.391159,0.688909,0.246522,0.233839,0.794722,0.778806,0.669638,0.427234,0.254968,0.343726,0.286048,0.792582,0.712773,0.204947,0.221703,0.575693,0.779529,0.207115,0.0808968,0.164276,0.380792,0.31936,0.174409,0.677858,0.776657,0.292211,0.644779,0.00391477,0.889995,0.261067,0.534558,0.861456,0.427225,0.873606,0.312595,0.391753,0.429541,0.726419,0.305325,0.635393,0.421282,0.857798,0.160166,0.971016,0.523418,0.810101,0.452826,0.379828,0.342059,0.237283,0.929629,0.121207,0.851933,0.56173,0.643912,0.533987,0.23773,0.0497983,0.632856,0.608118,0.679985,0.34803,0.33187,0.542592,0.613186,0.533668,0.94623,0.98562,0.291396,0.136903,0.331909,0.957626,0.65421,0.967245,0.552074,0.223336,0.687312,0.340409,0.5238,0.830236,0.552735,0.316318,0.332323,0.719425,0.506403,0.980648,0.00598407,0.437492,0.663635,0.963404,0.258001,0.181899,0.0795674,0.604513,0.620283,0.273124,0.325959,0.0243396,0.168874,0.728601,0.666041,0.0769064,0.842437,0.0985863,0.684367,0.0519386,0.507892,0.563621,0.276502,0.279257,0.652834,0.729666,0.696767,0.962037,0.536587,0.152085,0.953581,0.858153,0.928939,0.969262,0.570488,0.696483,0.521411,0.230196,0.431364,0.640807,0.419916,0.0278425,0.164912,0.786272,0.705503,0.416592,0.816691,0.154143,0.426158,0.991138,0.917278,0.884735,0.0785248,0.907353,0.530145,0.576634,0.85889,0.524406,0.100878,0.592992,0.393007,0.374825,0.68385,0.776979,0.827648,0.739852,0.0608825,0.208239,0.405509,0.00949639,0.851981,0.14434,0.187677,0.29132,0.432194,0.162991,0.407216,0.199633,0.398804,0.801896,0.421806,0.511284,0.259433,0.415991,0.0181917,0.581793,0.294443,0.984819,0.321246,0.27468,0.698058,0.345163,0.313102,0.916332,0.182091,0.118265,0.553168,0.00611013,0.960757,0.927465,0.366286,0.364699,0.0563937,0.0548192,0.162768,0.46836,0.448801,0.980397,0.199291,0.468133,0.842509,0.935682,0.231955,0.349772,0.757284,0.42013,0.315957,0.860299,0.387101,0.828315,0.306741,0.0590467,0.3471,0.730104,0.829681,0.904375,0.0440618,0.0804211,0.871295,0.894148,0.338967,0.776783,0.396793,0.133881,0.564988,0.947052,0.20182,0.449769,0.918659,0.277055,0.0610572,0.824054,0.498489,|0.965995,0.702347,0.434215,0.289058,0.253978,0.818605,0.389172,0.871921,0.395445,0.916737,0.874472,0.115553,0.789409,0.572306,0.0834297,0.616352,0.536307,0.0427722,0.42862,0.432871,0.609454,0.898326,0.868289,0.629434,0.641039,0.994848,0.117076,0.000215232,0.220549,0.545386,0.967543,0.393365,0.414404,0.67229,0.957695,0.318066,0.432786,0.130398,0.0948736,0.597401,0.0844555,0.036062,0.970189,0.0940755,0.212963,0.826189,0.0378476,0.034201,0.666806,0.296928,0.580792,0.485309,0.271158,0.585975,0.605719,0.226083,0.640428,0.401208,0.46841,0.245695,0.413945,0.460575,0.692985,0.276734,0.613517,0.0565634,0.43168,0.881698,0.154617,0.308888,0.739032,0.859947,0.373998,0.927718,0.764149,0.0668768,0.900316,0.00246799,0.074121,0.722889,0.192638,0.290869,0.548711,0.455956,0.322347,0.311268,0.346366,0.420088,0.234308,0.98864,0.516202,0.845668,0.899402,0.0553624,0.8217,0.408333,0.914062,0.869225,0.622628,0.707896,0.488388,0.469879,0.755511,0.908494,0.653818,0.887525,0.379011,0.539474,0.376053,0.617813,0.132204,0.300451,0.327539,0.489214,0.923596,0.728478,0.0713903,0.22156,0.0568624,0.291596,0.242323,0.729742,0.523247,0.479242,0.567286,0.82631,0.188604,0.13389,0.364819,0.874806,0.802058,0.730208,0.33982,0.130226,0.401192,0.132894,0.256977,0.819188,0.163598,0.207701,0.0630946,0.439654,0.33167,0.239128,0.657778,0.606209,0.24779,0.674711,0.685331,0.894567,0.779561,0.0314758,0.439298,0.0877595,0.854582,0.400885,0.753753,0.990644,0.305112,0.82087,0.478875,0.354875,0.256327,0.489348,0.259947,0.236377,0.311225,0.986293,0.398062,0.0552317,0.614131,0.370137,0.497947,0.15142,0.0775332,0.293355,0.636546,0.824777,0.420058,0.561158,0.505795,0.909328,0.969802,0.608721,0.409925,0.392774,0.156679,0.268921,0.617971,0.903976,0.498763,0.560766,0.631662,0.581111,0.138782,0.58699,0.732786,0.977308,0.552098,0.318473,0.859483,0.644878,0.217672,0.369374,0.363892,0.160784,0.622866,0.164904,0.196169,0.927696,0.0783436,0.429898,0.7715,0.824106,0.865729,0.094959,0.539969,0.694541,0.663727,0.959976,0.310068,0.100342,0.19496,0.782601,0.962,0.838145,0.448169,0.0163205,0.0238143,0.275736,0.502276,0.368748,0.443449,0.584846,0.892542,0.444144,0.0136738,0.209204,0.401802,0.615866,0.464645,0.934518,0.183991,0.080043,0.571702,0.528859,0.381396,0.125214,0.490818,0.872818,0.733482,0.00136209,0.854964,0.97872,0.262113,0.0331756,0.334418,0.0810896,0.0349183,0.507379,0.360859,0.782719,0.529552,0.775674,0.722994,0.144213,0.835728,0.967751,0.714929,0.246779,0.233887,0.224325,0.866661,0.574038,0.636018,0.343701,0.538874,0.8413,0.46608,0.123993,0.893434,0.924892,0.631358,0.19856,0.890543,0.0312531,0.35458,0.568429,0.461357,0.549546,0.824796,0.936917,0.685696,0.104155,0.615166,0.524009,0.19176,0.946074,0.263711,0.574495,0.157438,0.706681,0.749009,0.38176,0.0100973,0.670044,0.835585,0.0146456,0.698438,0.329537,0.956131,0.00137842,0.334244,0.353009,0.765363,0.800386,0.307574,0.813826,0.636735,0.737647,0.255596,0.852148,0.156188,0.283966,0.644543,0.996696,0.473005,0.348695,0.495778,0.602681,0.583094,0.947684,0.943409,0.691276,0.776927,0.630258,0.213768,0.976022,0.538025,0.57554,0.162294,0.281815,0.971832,0.361516,0.326415,0.747172,0.878648,0.800765,0.846542,0.9127,0.771616,0.791788,0.658864,0.251584,0.703009,0.500343,0.029807,0.606629,0.145301,0.0878604,0.276599,0.921993,0.563162,0.120262,0.367368,0.751341,0.615314,0.873634,0.711015,0.177009,0.196164,0.20602,0.387569,0.569173,0.342843,0.391377,0.332151,0.810504,0.371199,0.610961,0.45535,0.93672,0.100055,0.896217,0.904801,0.368712,0.0582138,0.285515,0.123756,0.347188,0.816225,0.659851,0.814711,0.222884,0.683803,0.277285,0.630209,0.368494,0.933138,0.009646,0.607701,0.357406,0.207081,0.857387,0.438204,0.654553,0.679668,0.943361,0.786215,0.870503,0.658099,0.294976,0.75015,0.651202,0.799612,0.0122318,0.458961,0.543053,0.545326,0.823769,0.260246,0.868515,0.396113,0.0111248,0.630711,0.338325,0.882276,0.0413583,0.874602,0.666933,0.11411,0.147839,0.89436,0.122773,0.299268,0.274355,0.0393238,0.986862,0.797697,0.0357436,0.540568,0.889348,0.204012,0.898086,0.576209,0.199504,0.994207,0.122865,0.653824,0.77242,0.191782,0.614481,0.790241,0.374688,0.4048,0.794914,0.287839,0.194524,0.106952,0.966866,0.289784,0.471951,0.635278,0.204265,0.753743,0.420385,0.0494347,0.555548,0.969105,0.737438,0.270351,0.866533,0.0285876,0.742247,0.583475,0.931598,0.941191,0.84971,0.811278,0.577318,0.84161,0.918206,0.49297,0.333085,0.471527,0.819881,0.38815,0.0271034,0.965517,0.896341,0.322922,0.685549,0.455216,0.327764,0.185309,0.856468,0.176498,0.840177,0.510989,0.999377,0.390105,0.277676,0.478877,0.351145,0.781904,0.65554,0.925335,0.839281,0.78244,0.0945395,0.644393,0.182943,0.182672,0.321519,0.318049,0.445002,0.662397,0.92591,0.0455694,0.360916,0.29304,0.650456,0.825031,0.814606,0.375916,0.0694932,0.171889,0.0881518,0.177611,0.0815417,0.615372,0.996765,0.248532,0.470259,0.908299,0.951352,0.614487,0.0997571,0.596838,0.580214,0.18887,0.0674445,0.582959,0.946964,0.176799,0.726572,0.0312114,0.595392,0.322399,0.393436,0.698927,0.922625,0.703378,0.0853815,0.775183,0.522982,0.44653,0.312241,0.520178,0.977745,0.193961,0.800061,0.129274,0.160478,0.852521,0.938833,0.490115,0.775847,0.401381,0.535782,0.444167,0.0823666,0.93032,0.781491,0.0522771,0.561077,0.162356,0.467909,0.467681,0.507019,0.0178743,0.705222,0.325009,0.42142,0.9176,0.507969,0.330736,0.183433,0.3617,0.773574,0.689105,0.314355,0.282866,0.714579,0.24144,0.361803,0.992888,0.0621387,0.942192,0.81866,0.97237,0.0341026,0.0214739,0.315781,0.734346,0.675021,0.878317,0.328013,0.981767,0.477963,0.276101,0.123489,0.99131,0.633147,0.401606,0.677138,0.249374,0.68211,0.780026,0.987963,0.628283,0.26272,0.0624838,0.358082,0.588303,0.750524,0.4368,0.769294,0.711156,0.420054,0.0925144,0.688795,0.376673,0.57414,0.618088,0.703408,0.474373,0.354346,0.232434,0.487631,0.567626,0.178335,0.533965,0.117088,0.943918,0.735889,0.909336,0.44004,0.437914,0.964309,0.253943,0.368116,0.321247,0.0766697,0.941899,0.433601,0.423547,0.893157,0.63032,0.345338,0.729172,0.391119,0.856382,0.038129,0.0284072,0.604276,0.856716,0.0402479,0.242984,0.372683,0.964869,0.480607,0.096392,0.82581,0.793386,0.147137,0.221413,0.526854,0.0327343,0.411685,0.0722135,0.473304,0.070043,0.523313,0.592356,0.757979,0.347575,0.691881,0.0693444,0.00933623,0.981677,0.389205,0.0504937,0.420879,0.638031,0.33535,0.863698,0.122823,0.619961,0.804861,0.777325,0.737711,0.899706,0.327219,0.0429322,0.182934,0.824538,0.752547,0.667126,0.364421,0.727648,0.169919,0.0303892,0.591166,0.392304,0.132015,0.361266,0.258612,0.357225,0.700316,0.0777847,0.385353,0.957091,0.380376,0.143208,0.853707,0.0600022,0.42648,0.821987,0.671168,0.330202,0.494885,0.447854,0.369051,0.193537,0.65876,0.0497508,0.468343,0.422082,0.761766,0.98499,0.670624,0.930064,0.620152,0.865937,0.599254,0.119966,0.212467,0.770057,0.515506,0.0875934,0.255107,0.751316,0.187061,0.27915,0.614696,0.553047,0.827076,0.51322,0.486649,0.14286,0.862295,0.275411,0.553354,0.656059,0.7688,0.718228,0.614407,0.112014,0.248653,0.737194,0.866775,0.895444,0.915779,0.988821,0.492222,0.393526,0.00291634,0.464727,0.864699,0.696604,0.893311,0.666761,0.116876,0.390082,0.820253,0.447468,0.898889,0.539431,0.495378,0.10616,0.567636,0.940037,0.380989,0.192861,0.228959,0.701309,0.514708,0.80875,0.0400597,0.497201,0.877678,0.641774,0.643706,0.225929,0.319337,0.790128,0.586462,0.772282,0.892764,0.633684,0.87796,0.340877,0.355614,0.493182,0.743416,0.648328,0.0893226,0.948961,0.750794,0.627759,0.568085,0.086842,0.605525,0.248191,0.639919,0.917053,0.793476,0.0882925,0.0238627,0.664696,0.291118,0.737002,0.501953,0.482064,0.67865,0.32508,0.204494,0.812436,0.244075,0.0609449,0.175713,0.925309,0.768042,0.0981298,0.328781,0.876664,0.84806,0.488495,0.465332,0.356695,0.39108,0.687424,0.0260616,0.101957,0.744896,0.103495,0.0248128,0.00503558,0.358827,0.084256,0.421883,0.513306,0.47344,0.42802,0.0700919,0.0699332,0.682999,0.170539,0.319493,0.643921,0.189716,0.103786,0.39198,0.382428,0.418952,0.0891781,0.389655,0.413431,0.0222753,0.028258,0.667522,0.582305,0.751962,0.848647,0.126925,0.518647,0.71786,0.0831518,0.407372,0.882456,0.841201,0.261592,0.0725522,0.30262,0.916803,0.256964,0.722418,0.209385,0.439588,0.923201,0.596189,0.984366,0.332808,0.211091,0.231673,0.466066,0.0801846,0.147085,0.486831,0.890859,0.851849,0.621226,0.695532,0.867709,0.788,0.359138,0.467979,0.0175917,0.438342,0.492103,0.273534,0.869203,0.538408,0.573584,0.045053,0.759951,0.791942,0.279852,0.488779,0.44355,0.807481,0.131638,0.36616,0.616239,0.540309,0.752168,0.909922,0.940901,0.596033,0.824807,0.821592,0.103492,0.851517,0.187212,0.136613,0.648697,0.875711,0.139259,0.384896,0.833815,0.256132,0.12574,0.660472,0.677328,0.488481,0.477604,0.5561,0.0744786,0.214601,0.590774,0.229265,0.787854,0.810469,0.107008,0.969249,0.883846,0.174818,0.846747,0.586359,0.186831,0.954167,0.0264472,0.0366262,0.517697,0.469929,0.922985,0.174412,0.551152,0.222272,0.445577,0.368068,0.734499,0.481296,0.481779,0.188969,0.835359,0.178882,0.846879,0.975921,0.596935,0.379436,0.847899,0.966072,0.499324,0.649693,0.00176311,0.764872,0.128415,0.289304,|0.127703,0.804823,0.0727348,0.874183,0.798222,0.806921,0.358075,0.100037,0.52385,0.478325,0.476192,0.918481,0.755333,0.562363,0.19536,0.469808,0.165823,0.689889,0.920618,0.301353,0.0253508,0.0177076,0.332651,0.462565,0.637811,0.460053,0.0184878,0.145076,0.230529,0.567393,0.696815,0.940843,0.521778,0.985596,0.686316,0.92579,0.758044,0.365688,0.660682,0.859812,0.251574,0.468682,0.0355185,0.0852858,0.00863302,0.380474,0.436576,0.698735,0.150568,0.134884,0.808874,0.0619789,0.242427,0.311766,0.00182402,0.227043,0.596286,0.350276,0.593003,0.170669,0.479759,0.471494,0.462091,0.488999,0.104349,0.460981,0.719776,0.979843,0.13669,0.167474,0.786738,0.168256,0.870217,0.795352,0.854059,0.277903,0.324277,0.22024,0.539355,0.610206,0.750599,0.672728,0.799493,0.675386,0.150498,0.343692,0.646522,0.925956,0.824244,0.294577,0.806846,0.571161,0.103866,0.683419,0.0866451,0.831354,0.134288,0.569756,0.270564,0.254913,0.354861,0.970363,0.347792,0.422567,0.190241,0.557366,0.644535,0.107135,0.128072,0.0180507,0.761144,0.464803,0.567458,0.767448,0.652141,0.830931,0.37643,0.273308,0.921125,0.90995,0.479314,0.631585,0.558831,0.382615,0.0325624,0.0349521,0.0308976,0.983055,0.562045,0.861595,0.537546,0.944448,0.0881533,0.190004,0.608374,0.638359,0.430134,0.439354,0.839362,0.797456,0.0114992,0.982494,0.626202,0.556056,0.915373,0.853893,0.874037,0.795018,0.445226,0.0529323,0.0293797,0.708488,0.733171,0.545224,0.822499,0.481757,0.966402,0.156977,0.0880741,0.606462,0.258193,0.1237,0.7022,0.0251096,0.871237,0.778958,0.194098,0.311503,0.757757,0.248216,0.565539,0.216147,0.763394,0.399044,0.330256,0.505103,0.29476,0.668829,0.658026,0.0663999,0.56596,0.064506,0.318848,0.0312531,0.996131,0.54447,0.64118,0.486363,0.472099,0.244176,0.906046,0.256635,0.118506,0.797141,0.975021,0.351317,0.929356,0.188496,0.36495,0.345341,0.344247,0.0319623,0.391959,0.680163,0.698671,0.845354,0.512145,0.71106,0.237435,0.821062,0.516436,0.0606296,0.165094,0.239339,0.962015,0.722464,0.0273228,0.865786,0.208414,0.736927,0.129407,0.911592,0.19295,0.373345,0.403639,0.52972,0.117694,0.982621,0.461079,0.855968,0.724234,0.769977,0.762044,0.65029,0.823206,0.179494,0.199229,0.351393,0.746989,0.836265,0.401444,0.469328,0.140253,0.0178455,0.978776,0.367127,0.594003,0.759391,0.722228,0.24881,0.265015,0.459285,0.0853862,0.763694,0.322587,0.000126481,0.254819,0.0836934,0.270441,0.416618,0.0470973,0.200493,0.535522,0.980007,0.122167,0.559745,0.706868,0.884748,0.46967,0.628329,0.419078,0.570918,0.950989,0.280479,0.180452,0.478906,0.494172,0.584212,0.62297,0.778236,0.697972,0.662614,0.358169,0.902103,0.590611,0.995561,0.56792,0.688062,0.902212,0.601174,0.211868,0.882164,0.440924,0.0331336,0.398524,0.608963,0.694776,0.904673,0.902176,0.293974,0.728326,0.181645,0.707809,0.81892,0.140649,0.26861,0.172304,0.298903,0.98189,0.210823,0.937858,0.381855,0.698575,0.255944,0.0201284,0.0585583,0.94319,0.916779,0.435916,0.513153,0.642673,0.16261,0.767262,0.341006,0.0617576,0.0377504,0.891994,0.815112,0.566376,0.049996,0.456916,0.0169678,0.368591,0.529175,0.926639,0.726629,0.251917,0.564747,0.390698,0.592505,0.258022,0.707955,0.911391,0.685774,0.484952,0.0498893,0.535468,0.0167419,0.38144,0.714873,0.375657,0.250794,0.822015,0.334489,0.465973,0.543828,0.600264,0.923529,0.909419,0.890071,0.397463,0.981033,0.430101,0.214503,0.835327,0.0870349,0.120297,0.63664,0.956543,0.59824,0.73047,0.0502273,0.307371,0.0332246,0.620298,0.473622,0.169789,0.505706,0.279062,0.0596941,0.247199,0.494189,0.958528,0.850777,0.74151,0.568588,0.231237,0.672544,0.913998,0.154997,0.759186,0.245989,0.107414,0.00798959,0.959029,0.25789,0.772001,0.362626,0.824362,0.370138,0.436343,0.526548,0.429806,0.788168,0.499424,0.0744125,0.742977,0.129154,0.464277,0.203138,0.67413,0.187077,0.223814,0.273837,0.376295,0.0879596,0.742554,0.0476112,0.692713,0.673541,0.260156,0.575428,0.140827,0.703703,0.921529,0.346109,0.0325875,0.779852,0.71167,0.439004,0.466493,0.19565,0.100946,0.274354,0.539426,0.809797,0.647726,0.727646,0.0468985,0.617995,0.760164,0.69228,0.900994,0.33127,0.862968,0.768196,0.544305,0.499346,0.698423,0.109216,0.449804,0.0742024,0.000613093,0.709943,0.926445,0.40247,0.0306376,0.278799,0.0706761,0.392498,0.406531,0.38979,0.451808,0.111995,0.439111,0.391612,0.93598,0.294806,0.268343,0.722316,0.806093,0.580706,0.544172,0.249239,0.634786,0.861693,0.286516,1.00136e-05,0.359996,0.931614,0.901758,0.221571,0.648001,0.688055,0.300901,0.47436,0.384147,0.23699,0.622587,0.702332,0.81366,0.289982,0.933153,0.417887,0.76858,0.605445,0.874689,0.764851,0.437159,0.525565,0.665296,0.658216,0.858515,0.523846,0.909911,0.025282,0.909855,0.872748,0.231479,0.657916,0.36973,0.911469,0.111909,0.631609,0.166806,0.964747,0.816816,0.924313,0.177073,0.729581,0.172405,0.374155,0.344761,0.173099,0.468539,0.140557,0.644587,0.444116,0.676553,0.543296,0.48295,0.294606,0.225158,0.613251,0.330454,0.594529,0.0243832,0.429749,0.940567,0.266023,0.784012,0.561798,0.820321,0.786612,0.32143,0.946997,0.0441359,0.9286,0.97264,0.409495,0.39199,0.783655,0.226526,0.334583,0.127603,0.805018,0.356029,0.765815,0.0609306,0.765978,0.827719,0.814846,0.433873,0.162725,0.709797,0.96879,0.614274,0.430213,0.243838,0.187704,0.140561,0.214276,0.683982,0.417002,0.295072,0.61077,0.275215,0.474234,0.882624,0.733167,0.163617,0.0142544,0.792597,0.159124,0.224708,0.0301049,0.971461,0.317869,0.000972927,0.815366,0.912434,0.774156,0.362739,0.131991,0.860058,0.810386,0.0896265,0.333171,0.434314,0.0427244,0.300257,0.146792,0.539633,0.425724,0.138935,0.457744,0.682952,0.948276,0.214855,0.917252,0.0241485,0.457483,0.325658,0.0613766,0.648786,0.16649,0.495777,0.774477,0.922435,0.585593,0.669892,0.127684,0.972767,0.886182,0.491132,0.754072,0.344111,0.748551,0.725246,0.0251875,0.215236,0.478239,0.328281,0.422376,0.358084,0.176179,0.933323,0.53259,0.958066,0.0185197,0.705326,0.0544976,0.0710249,0.0166793,0.222678,0.971694,0.476708,0.108789,0.313969,0.513549,0.391258,0.319456,0.196206,0.366359,0.918905,0.0698013,0.144343,0.0292538,0.112327,0.902798,0.222348,0.103557,0.197429,0.753394,0.0397195,0.0956759,0.898099,0.510891,0.293413,0.132456,0.875246,0.000518322,0.177098,0.780271,0.0166393,0.0400622,0.441827,0.549531,0.975123,0.130805,0.251234,0.290793,0.175472,0.958881,0.120541,0.755564,0.31062,0.0110191,0.810511,0.234993,0.688269,0.588507,0.460276,0.208073,0.11096,0.738197,0.366598,0.780033,0.72426,0.277423,0.684603,0.754868,0.869759,0.528281,0.721991,0.0639979,0.349709,0.782514,0.782033,0.00557715,0.259029,0.496202,0.841146,0.0949313,0.118065,0.369029,0.456618,0.93603,0.562498,0.337349,0.661692,0.918064,0.987003,0.733089,0.812819,0.770494,0.484171,0.830596,0.95951,0.629424,0.93005,0.192112,0.0718436,0.132626,0.125004,0.956082,0.0939487,0.0878172,0.139348,0.744637,0.364884,0.76004,0.0702717,0.859609,0.413078,0.0658886,0.985276,0.665882,0.27706,0.943727,0.627449,0.6264,0.672783,0.608024,0.170121,0.289764,0.667749,0.298581,0.769697,0.162482,0.627888,0.512842,0.214172,0.695508,0.118254,0.225004,0.41183,0.760215,0.289877,0.771113,0.46095,0.640065,0.715995,0.076228,0.0641245,0.807258,0.27931,0.384276,0.249076,0.605138,0.452715,0.820037,0.133791,0.284653,0.31129,0.78459,0.810847,0.862244,0.121414,0.120406,0.195895,0.207665,0.510377,0.530951,0.223478,0.345269,0.476092,0.581944,0.381394,0.630177,0.770926,0.0804023,0.959581,0.0651483,0.103941,0.588221,0.979245,0.698744,0.902138,0.650948,0.715418,0.883815,0.755692,0.748457,0.451733,0.5911,0.94366,0.0152751,0.455992,0.108257,0.00587511,0.360447,0.239811,0.672083,0.842469,0.881243,0.629875,0.169151,0.0229098,0.741149,0.674471,0.0179719,0.0661806,0.838656,0.163885,0.346548,0.97674,0.443156,0.599131,0.280175,0.681177,0.427835,0.366573,0.775374,0.16297,0.370474,0.327548,0.0582286,0.524159,0.920377,0.386992,0.903869,0.811195,0.0651329,0.466416,0.312086,0.867243,0.219202,0.462557,0.343787,0.344636,0.307131,0.746618,0.318579,0.667241,0.541796,0.53272,0.362425,0.238709,0.977641,0.00992876,0.458267,0.213998,0.511938,0.378498,0.200288,0.413794,0.877415,0.547748,0.3406,0.184532,0.0209562,0.13008,0.0749018,0.625441,0.881357,0.835602,0.213671,0.0686579,0.933575,0.265726,0.59841,0.539026,0.348384,0.477079,0.522166,0.0217371,0.650624,0.47518,0.930526,0.10232,0.924372,0.443624,0.575266,0.878227,0.341071,0.601838,0.225335,0.755969,0.969031,0.0711993,0.723598,0.801317,0.25063,0.200188,0.154635,0.350507,0.212476,0.563521,0.896793,0.00808197,0.894498,0.271531,0.807142,0.0161018,0.661962,0.433876,0.772371,0.453363,0.935066,0.489137,0.106919,0.949012,0.492832,0.775737,0.556807,0.492393,0.527578,0.682641,0.978344,0.829773,0.645949,0.960157,0.581394,0.865352,0.308989,0.34157,0.404043,0.279422,0.695382,0.950676,0.615387,0.651839,0.107478,0.482015,0.104679,0.127251,0.912503,0.866399,0.590012,0.00770515,0.404026,0.801105,0.959061,0.143699,0.981295,0.830551,0.118617,0.0325133,0.8821,0.717361,0.129675,0.522037,0.614503,0.185617,0.12567,0.87857,0.966046,0.0563773,0.305278,0.268258,0.434802,0.309253,0.663084,0.762352,0.508402,0.921723,0.942939,0.50875,0.229976,0.765646,0.247024,0.620879,0.542092,0.885908,0.464827,0.661724,0.839909,0.634558,0.348951,|0.321998,0.637697,0.752755,0.845706,0.431286,0.46665,0.276234,0.876394,0.0885126,0.924063,0.726976,0.779556,0.488994,0.618282,0.291739,0.712632,0.894034,0.320952,0.232092,0.759784,0.196216,0.322301,0.969138,0.720687,0.171207,0.38813,0.0644385,0.319043,0.606947,0.919238,0.92205,0.160896,0.714299,0.00343364,0.626822,0.529082,0.418823,0.309156,0.643365,0.201578,0.17752,0.10559,0.11308,0.305178,0.944008,0.959577,0.334906,0.311837,0.0544479,0.778804,0.960246,0.19282,0.60326,0.0293207,0.0765726,0.423105,0.41404,0.855102,0.101464,0.835975,0.746626,0.972209,0.189583,0.692866,0.386887,0.706059,0.337977,0.375919,0.518689,0.371487,0.0621455,0.452273,0.894148,0.441397,0.231912,0.000907958,0.503754,0.647882,0.697308,0.55657,0.244502,0.984928,0.193263,0.619821,0.10064,0.132553,0.531476,0.403033,0.880729,0.374953,0.490793,0.135268,0.5421,0.651765,0.242114,0.92381,0.0145873,0.491614,0.45914,0.9453,0.289176,0.196843,0.111623,0.150577,0.480536,0.827461,0.0528611,0.334432,0.613483,0.569026,0.313071,0.390441,0.395685,0.606781,0.630408,0.384003,0.21388,0.653953,0.00166345,0.175933,0.111263,0.894518,0.928062,0.945278,0.0230227,0.778006,0.281372,0.30734,0.484431,0.501442,0.173892,0.508876,0.217891,0.533035,0.848963,0.0718951,0.424553,0.051801,0.299237,0.496529,0.275752,0.0243374,0.272517,0.0946994,0.375788,0.721456,0.0901589,0.0748938,0.144889,0.818078,0.285448,0.473755,0.158155,0.0235633,0.587657,0.176142,0.0859164,0.622621,0.993089,0.796969,0.519033,0.901722,0.124852,0.202081,0.759625,0.376622,0.53562,0.418372,0.694897,0.506406,0.652151,0.321827,0.0475387,0.98006,0.57432,0.707573,0.983611,0.761182,0.214575,0.40728,0.857818,0.989096,0.32863,0.458498,0.975226,0.398127,0.781455,0.266596,0.344349,0.411437,0.0655682,0.610913,0.419096,0.28062,0.04071,0.0199253,0.638718,0.0420322,0.778282,0.611775,0.608791,0.997533,0.539085,0.041668,0.00949222,0.594451,0.1643,0.400448,0.689501,0.721652,0.0530086,0.525422,0.493449,0.0859752,0.868637,0.367349,0.694637,0.713979,0.671039,0.887584,0.679234,0.458886,0.577474,0.988766,0.608749,0.528199,0.775999,0.316788,0.882275,0.446134,0.632332,0.2626,0.196987,0.739603,0.00115919,0.163157,0.715397,0.47698,0.55586,0.849931,0.952434,0.1214,0.651899,0.503355,0.743458,0.974194,0.593558,0.964048,0.296224,0.77049,0.493568,0.207954,0.412066,0.754158,0.532202,0.94628,0.576183,0.919406,0.101244,0.935812,0.0226689,0.52503,0.848598,0.61663,0.595356,0.618996,0.635554,0.025894,0.869705,0.74647,0.344369,0.439965,0.365448,0.940055,0.611585,0.0559417,0.532959,0.205774,0.590568,0.103704,0.904529,0.436013,0.989224,0.59355,0.46892,0.857453,0.289308,0.176868,0.172251,0.997808,0.257676,0.442878,0.538784,0.21612,0.490283,0.263645,0.973599,0.477662,0.311343,0.218182,0.474103,0.421189,0.784493,0.0228675,0.334976,0.326479,0.182156,0.429121,0.120493,0.3788,0.898852,0.0979525,0.875348,0.958203,0.140367,0.532232,0.841138,0.896696,0.693991,0.27791,0.782595,0.223289,0.816792,0.587228,0.797379,0.246086,0.12243,0.191311,0.0918972,0.882527,0.118858,0.596738,0.41494,0.894771,0.772268,0.66227,0.049521,0.703008,0.80518,0.6924,0.470249,0.88982,0.304193,0.97567,0.980988,0.162134,0.411977,0.743349,0.232122,0.922181,0.342583,0.0793532,0.118999,0.841708,0.740058,0.924903,0.320478,0.955759,0.948831,0.24848,0.360736,0.691387,0.571752,0.905243,0.364204,0.0958243,0.0604655,0.438866,0.603596,0.018182,0.601648,0.694853,0.306432,0.818552,0.93131,0.38499,0.202571,0.890219,0.0722133,0.177208,0.400176,0.651098,0.701244,0.786775,0.769778,0.195449,0.294748,0.193536,0.94906,0.0694329,0.910566,0.273027,0.709543,0.305339,0.404495,0.906523,0.213547,0.635705,0.707161,0.993053,0.625515,0.739554,0.907321,0.880025,0.892139,0.661586,0.532761,0.216314,0.288818,0.639365,0.795609,0.592408,0.228175,0.734256,0.452792,0.796155,0.704066,0.41374,0.272236,0.376406,0.423077,0.302287,0.651232,0.557984,0.632466,0.941718,0.285446,0.964837,0.654796,0.542781,0.431825,0.564888,0.94852,0.357347,0.421879,0.0414188,0.821852,0.0956948,0.849311,0.418642,0.635555,0.819296,0.791921,0.903621,0.255352,0.0779509,0.394324,0.0122684,0.0855607,0.369629,0.57793,0.839693,0.990523,0.0669352,0.543898,0.992705,0.935719,0.13748,0.935368,0.835997,0.223735,0.0855557,0.585545,0.342868,0.492456,0.245885,0.748435,0.332764,0.827123,0.848166,0.947056,0.971836,0.70046,0.379474,0.484221,0.709736,0.538826,0.491711,0.531855,0.481252,0.780064,0.119241,0.821671,0.516951,0.677253,0.319841,0.17312,0.995712,0.0191228,0.32234,0.651693,0.831961,0.226003,0.925699,0.800754,0.900253,0.401785,0.136945,0.614897,0.135805,0.534876,0.435319,0.394965,0.653992,0.339682,0.0791761,0.756824,0.907116,0.367321,0.900398,0.168082,0.540072,0.542179,0.931968,0.439072,0.9895,0.518848,0.258338,0.585947,0.0941315,0.535967,0.999004,0.932981,0.209722,0.512186,0.271656,0.0932137,0.999251,0.962575,0.185673,0.168743,0.652626,0.405878,0.094116,0.479953,0.96452,0.864492,0.206004,0.0697557,0.555727,0.0513805,0.315077,0.363484,0.315444,0.594417,0.605829,0.674626,0.352635,0.938281,0.955304,0.11291,0.982612,0.220998,0.217252,0.878147,0.115517,0.0868365,0.242519,0.677176,0.0473903,0.42944,0.818301,0.506886,0.135947,0.320328,0.0286765,0.395343,0.618364,0.605736,0.539747,0.387944,0.0749546,0.519588,0.108393,0.548593,0.166479,0.923835,0.857906,0.826882,0.117654,0.747073,0.126775,0.40085,0.979183,0.816471,0.383811,0.695536,0.517237,0.468833,0.94351,0.794138,0.0776808,0.999166,0.0891461,0.991088,0.221084,0.431965,0.188724,0.155446,0.697634,0.798479,0.868091,0.206556,0.769874,0.40678,0.663847,0.179037,0.719682,0.670344,0.296926,0.34975,0.294838,0.459225,0.146977,0.574283,0.813361,0.568268,0.202623,0.840953,0.544755,0.0153442,0.336183,0.661905,0.813941,0.80365,0.416372,0.894246,0.226133,0.738253,0.155447,0.228731,0.0765082,0.643588,0.924023,0.373665,0.252587,0.191231,0.528238,0.546359,0.171317,0.742642,0.0517449,0.45253,0.0294564,0.868069,0.687697,0.20608,0.623762,0.78602,0.883856,0.0609791,0.628157,0.972804,0.131625,0.57369,0.317075,0.326698,0.601887,0.49863,0.045869,0.595598,0.52997,0.432463,0.602468,0.791675,0.793474,0.022687,0.45478,0.12543,0.982671,0.809673,0.192777,0.877534,0.727877,0.0159565,0.822843,0.576963,0.379382,0.893434,0.175784,0.559844,0.692708,0.99248,0.0278324,0.0464703,0.501303,0.623683,0.324351,0.85502,0.390786,0.0941278,0.21149,0.872533,0.786513,0.0239215,0.96956,0.292261,0.909624,0.771021,0.31334,0.911084,0.367406,0.20654,0.230422,0.0386485,0.664411,0.842587,0.905875,0.532466,0.807646,0.475712,0.959591,0.000744879,0.0513109,0.694667,0.7379,0.0573457,0.574787,0.49074,0.78363,0.0462161,0.482682,0.263284,0.674876,0.435387,0.850989,0.301184,0.536068,0.0755109,0.814474,0.699532,0.00716144,0.992998,0.375338,0.661348,0.509045,0.83665,0.641783,0.66778,0.93903,0.0840495,0.808401,0.372384,0.348982,0.598357,0.0999455,0.83866,0.0227502,0.900873,0.827761,0.802325,0.194705,0.477531,0.964536,0.145965,0.440894,0.212901,0.746965,0.406625,0.558988,0.475114,0.623795,0.252648,0.925571,0.327639,0.519609,0.284977,0.821675,0.610975,0.883802,0.00268841,0.98114,0.915382,0.82761,0.514325,0.0181918,0.604656,0.618014,0.767135,0.756679,0.0526563,0.140701,0.199503,0.889927,0.916105,0.0762478,0.291355,0.881224,0.497548,0.86837,0.191978,0.902434,0.0909386,0.272801,0.944048,0.563358,0.590644,0.194606,0.858078,0.352578,0.729705,0.983444,0.558991,0.713383,0.039345,0.283906,0.942981,0.244942,0.0991503,0.299862,0.474128,0.0585202,0.404101,0.703925,0.666976,0.0350137,0.748021,0.656089,0.364042,0.701509,0.737487,0.548885,0.897611,0.67027,0.155201,0.835328,0.34458,0.842401,0.639765,0.843126,0.96963,0.893507,0.687067,0.934157,0.626028,0.020209,0.467683,0.734508,0.777433,0.146628,0.439804,0.857872,0.122512,0.092311,0.321541,0.386035,0.594242,0.731645,0.276839,0.72599,0.388214,0.999887,0.465286,0.0484714,0.629844,0.775901,0.601699,0.73124,0.634819,0.71054,0.755937,0.999391,0.648949,0.00152087,0.143692,0.153325,0.134524,0.309112,0.991009,0.331995,0.155784,0.822388,0.500641,0.0966287,0.402116,0.541226,0.973559,0.356408,0.758672,0.295333,0.163122,0.524178,0.33846,0.380515,0.750825,0.598994,0.723045,0.525753,0.975667,0.219505,0.0553176,0.96086,0.946817,0.868342,0.262996,0.27879,0.332177,0.765613,0.624943,0.0703875,0.767532,0.722068,0.15978,0.942991,0.542574,0.734785,0.219526,0.838865,0.953603,0.174693,0.245214,0.531635,0.213108,0.876749,0.497726,0.790174,0.906461,0.257123,0.394269,0.772041,0.568059,0.606276,0.864745,0.694786,0.745505,0.389811,0.350277,0.693789,0.0915158,0.136266,0.581057,0.5448,0.939539,0.231378,0.758817,0.67218,0.874963,0.83227,0.472863,0.92657,0.297091,0.970848,0.180777,0.449528,0.295408,0.946455,0.803158,0.265628,0.416398,0.138972,0.678997,0.77871,0.260313,0.769867,0.963525,0.879194,0.736594,0.127093,0.11433,0.624445,0.540807,0.254862,0.301731,0.678327,0.335005,0.837669,0.207888,0.628526,0.885071,0.296906,0.641856,0.747404,0.833426,0.530666,0.163063,0.660379,0.249348,0.763936,0.779535,0.2459,0.926002,0.308652,0.968756,0.0522174,0.517016,0.995139,0.363844,0.860999,0.869417,0.972177,0.0144221,0.178732,0.646617,0.269136,0.162784,0.236503,0.538915,0.675627,0.161432,0.177635,|0.600132,0.064109,0.763681,0.252705,0.165752,0.276228,0.0253163,0.220874,0.823281,0.66839,0.723735,0.837027,0.463384,0.632607,0.377795,0.096283,0.300574,0.890461,0.0649073,0.743923,0.194918,0.836091,0.229392,0.5516,0.00183028,0.44575,0.163385,0.217943,0.0794671,0.717301,0.686874,0.147998,0.321597,0.321355,0.00165492,0.477812,0.819484,0.772606,0.848901,0.694929,0.408143,0.325807,0.422378,0.344389,0.523345,0.850112,0.237368,0.925745,0.962992,0.00268894,0.763884,0.642931,0.504721,0.851189,0.845939,0.245248,0.569555,0.661944,0.747065,0.656495,0.793494,0.496462,0.808544,0.25388,0.155963,0.850005,0.924257,0.466365,0.433691,0.790276,0.00610048,0.123633,0.954994,0.905541,0.325314,0.906585,0.72504,0.078768,0.573982,0.494825,0.12738,0.761528,0.0250303,0.976386,0.964567,0.630487,0.253363,0.75917,0.161499,0.222832,0.995775,0.79233,0.89459,0.0050503,0.0435496,0.817262,0.805419,0.088476,0.900472,0.0302932,0.206933,0.134683,0.784092,0.0515451,0.0641539,0.624941,0.831554,0.713889,0.515841,0.192991,0.152515,0.713559,0.372736,0.447988,0.831748,0.605335,0.799794,0.705972,0.626836,0.846472,0.994443,0.624648,0.416663,0.827136,0.31698,0.342625,0.156035,0.441631,0.420306,0.573224,0.734218,0.728492,0.87519,0.855858,0.765252,0.703306,0.465972,0.110883,0.718202,0.470759,0.377134,0.810774,0.120627,0.659286,0.303587,0.116421,0.120242,0.881021,0.380972,0.65416,0.433817,0.87482,0.043737,0.384527,0.530034,0.237585,0.843298,0.158394,0.71523,0.318879,0.24518,0.411193,0.952569,0.882536,0.16458,0.308052,0.196058,0.360296,0.83997,0.895897,0.450617,0.691161,0.433955,0.660521,0.965618,0.96486,0.758593,0.524901,0.865973,0.631907,0.170163,0.811385,0.873595,0.542751,0.119815,0.370072,0.417183,0.747171,0.400736,0.00809491,0.616878,0.9616,0.0728864,0.346133,0.781113,0.720003,0.305363,0.0817933,0.901799,0.400728,0.949531,0.00441122,0.221261,0.786706,0.94544,0.0662934,0.26252,0.527839,0.913426,0.377633,0.738262,0.843556,0.838944,0.112121,0.597548,0.584004,0.540109,0.417429,0.148439,0.685887,0.921525,0.460667,0.670822,0.659534,0.999005,0.633282,0.793336,0.314605,0.624721,0.618904,0.64165,0.954532,0.25573,0.345186,0.601861,0.710133,0.804061,0.485421,0.258465,0.871041,0.529843,0.590442,0.332276,0.209929,0.713638,0.347481,0.149256,0.365354,0.86096,0.429517,0.502518,0.771852,0.741791,0.517132,0.776419,0.477377,0.269834,0.0621235,0.236456,0.394789,0.535304,0.673333,0.183302,0.751131,0.377681,0.89495,0.303162,0.0719801,0.93414,0.972495,0.055519,0.174862,0.886356,0.55507,0.220825,0.461741,0.505953,0.53697,0.0837914,0.137364,0.56957,0.544901,0.551674,0.784977,0.776154,0.0680215,0.541124,0.293238,0.56471,0.386322,0.313407,0.72457,0.867415,0.948245,0.944727,0.14072,0.0988344,0.986664,0.971761,0.50286,0.943561,0.306908,0.21176,0.89283,0.164371,0.705216,0.417641,0.46071,0.315798,0.324213,0.0945896,0.574685,0.313806,0.595718,0.176047,0.718635,0.344891,0.358952,0.341592,0.605668,0.904583,0.283402,0.383148,0.830531,0.185234,0.249605,0.948225,0.56808,0.606838,0.664637,0.0133301,0.495529,0.189644,0.619508,0.479813,0.0955156,0.802018,0.165579,0.852184,0.0916477,0.865597,0.913095,0.705473,0.359044,0.0984377,0.254104,0.638745,0.467799,0.476246,0.218609,0.206538,0.282771,0.549086,0.0826116,0.11676,0.182364,0.563541,0.768036,0.92912,0.848895,0.68066,0.544894,0.902869,0.01135,0.625112,0.141651,0.632733,0.0652342,0.310649,0.545296,0.845814,0.233689,0.0321196,0.700506,0.287126,0.54149,0.544197,0.123269,0.795714,0.547647,0.565323,0.517804,0.389028,0.125138,0.226596,0.973209,0.0198151,0.873966,0.0700287,0.556827,0.361166,0.968581,0.362577,0.429708,0.295775,0.542617,0.521866,0.528208,0.889305,0.447007,0.426201,0.352156,0.524991,0.268076,0.379107,0.797658,0.414973,0.00500482,0.165285,0.447568,0.934555,0.435014,0.866693,0.983835,0.413679,0.161743,0.256707,0.568765,0.251992,0.627252,0.176849,0.585662,0.435761,0.357838,0.998338,0.970121,0.129576,0.220671,0.112714,0.658847,0.401166,0.175421,0.545547,0.673414,0.853821,0.901797,0.665216,0.0461411,0.975338,0.448094,0.568456,0.757697,0.203443,0.156376,0.0407031,0.977292,0.894796,0.100475,0.994621,0.319202,0.315283,0.775489,0.232266,0.445828,0.462343,0.876177,0.727969,0.792471,0.377167,0.493578,0.66715,0.944242,0.901865,0.959845,0.145493,0.897567,0.239532,0.453957,0.212026,0.205001,0.66623,0.409859,0.660282,0.22076,0.986005,0.151634,0.487717,0.157463,0.306018,0.181196,0.577674,0.256075,0.790179,0.100676,0.854513,0.608997,0.357866,0.216225,0.518158,0.40657,0.666999,0.324523,0.652939,0.928358,0.717538,0.178702,0.0843044,0.0366006,0.29646,0.952531,0.0646214,0.972801,0.893399,0.828674,0.0550197,0.33589,0.0967138,0.453379,0.879086,0.219116,0.172818,0.723296,0.155211,0.224229,0.569384,0.944074,0.878299,0.0949798,0.688928,0.301887,0.34734,0.983727,0.755509,0.742508,0.453853,0.0417573,0.742349,0.197214,0.989714,0.0871903,0.849676,0.580036,0.545721,0.835134,0.723476,0.357287,0.463885,0.978938,0.482435,0.309233,0.60214,0.22358,0.862125,0.929,0.430691,0.181238,0.808302,0.139881,0.498582,0.393734,0.655536,0.0706168,0.560439,0.406349,0.883655,0.54131,0.48478,0.0542468,0.761373,0.825808,0.149565,0.298956,0.0326927,0.728068,0.614403,0.602561,0.037407,0.0730664,0.187382,0.392791,0.142397,0.911071,0.797602,0.903147,0.536266,0.806277,0.428237,0.697908,0.974785,0.152744,0.645301,0.0461537,0.882311,0.657647,0.734343,0.132863,0.821179,0.25342,0.263431,0.515862,0.794849,0.224503,0.684532,0.716153,0.465752,0.55508,0.424846,0.647764,0.401163,0.856376,0.321815,0.405035,0.117185,0.902002,0.23167,0.147969,0.629299,0.809283,0.450131,0.0629389,0.948583,0.339859,0.783656,0.475556,0.705293,0.81841,0.946313,0.558888,0.872028,0.0854713,0.572361,0.797402,0.936818,0.497302,0.36664,0.225763,0.773444,0.742522,0.298679,0.08382,0.346244,0.296501,0.225618,0.266923,0.0830758,0.584236,0.0715995,0.553266,0.218512,0.287539,0.15336,0.757327,0.373542,0.561988,0.417148,0.997321,0.930066,0.268203,0.761205,0.984745,0.680244,0.357986,0.00533068,0.0359952,0.452376,0.923574,0.0629596,0.881835,0.481598,0.988867,0.760434,0.946691,0.0993164,0.865393,0.712912,0.28442,0.0145669,0.662855,0.723736,0.0141555,0.215647,0.0659565,0.297127,0.14585,0.206269,0.0747047,0.839031,0.00910193,0.805553,0.097159,0.799683,0.41362,0.41481,0.427652,0.566181,0.281089,0.527336,0.0157303,0.107222,0.192694,0.832292,0.879397,0.41873,0.0756294,0.503136,0.520056,0.212726,0.697971,0.143031,0.261262,0.740101,0.277269,0.332095,0.93149,0.042089,0.502286,0.521636,0.6468,0.927627,0.328305,0.552239,0.423826,0.989855,0.189306,0.541298,0.0643833,0.6614,0.942082,0.972091,0.119964,0.87167,0.890543,0.335982,0.180223,0.801183,0.0994332,0.412754,0.503315,0.151432,0.325232,0.264384,0.464945,0.744152,0.408557,0.34319,0.597079,0.474286,0.898452,0.53052,0.45003,0.505923,0.78088,0.503439,0.254536,0.307488,0.758416,0.292715,0.625562,0.529862,0.916719,0.937917,0.862156,0.634987,0.306004,0.91672,0.123332,0.112601,0.680244,0.0896937,0.468894,0.906312,0.748974,0.324451,0.499669,0.210897,0.799164,0.703404,0.19172,0.00116807,0.347073,0.386014,0.896268,0.898661,0.895415,0.635953,0.72644,0.699417,0.875492,0.84409,0.454144,0.180163,0.00113463,0.334712,0.314732,0.882827,0.779771,0.266788,0.886556,0.694463,0.56444,0.112392,0.0360036,0.232739,0.701185,0.230306,0.646206,0.0437134,0.28543,0.834263,0.214844,0.828502,0.183956,0.986537,0.383697,0.00523925,0.664606,0.939685,0.63169,0.496237,0.135469,0.291461,0.420412,0.918102,0.128645,0.690078,0.53922,0.943238,0.673956,0.204189,0.827168,0.118805,0.361934,0.471602,0.220734,0.0266337,0.131341,0.360151,0.819025,0.0335531,0.971252,0.65486,0.210763,0.252222,0.192426,0.931378,0.582457,0.504463,0.605897,0.880796,0.14567,0.322544,0.22664,0.327995,0.0523149,0.672066,0.486785,0.210487,0.0223737,0.428773,0.642368,0.523934,0.377585,0.146007,0.814808,0.636074,0.123708,0.246004,0.712776,0.196649,0.141613,0.759967,0.0962282,0.511842,0.29556,0.374459,0.282367,0.612765,0.495009,0.0601352,0.524398,0.687951,0.0776108,0.269086,0.0236134,0.0203208,0.136619,0.803794,0.743632,0.256976,0.810169,0.274091,0.399077,0.885028,0.365883,0.160881,0.627757,0.774315,0.642211,0.0110456,0.29236,0.789925,0.0774207,0.227106,0.507686,0.216044,0.931669,0.418189,0.983835,0.442876,0.333873,0.449897,0.293951,0.206808,0.799573,0.0176985,0.305733,0.571965,0.484445,0.489347,0.22038,0.0708285,0.726675,0.0682184,0.137059,0.323362,0.250999,0.420452,0.0638304,0.493274,0.757083,0.338121,0.486609,0.426958,0.790417,0.485663,0.425407,0.174173,0.850934,0.515334,0.731899,0.0854649,0.530148,0.354006,0.109426,0.91714,0.171506,0.44894,0.431542,0.916112,0.154074,0.291116,0.602011,0.000193894,0.261005,0.710094,0.488144,0.342625,0.0364255,0.0802424,0.411276,0.293532,0.400409,0.47613,0.631343,0.290113,0.947413,0.842384,0.20357,0.364411,0.785144,0.896853,0.944469,0.663543,0.189632,0.61081,0.0427225,0.20209,0.630333,0.243033,0.566631,0.636875,0.916401,0.05981,0.294302,0.200989,0.559128,0.276901,0.420882,0.0876416,0.567649,0.214297,0.00830877,0.091583,0.357314,0.290156,0.022965,0.601235,0.809672,0.581416,0.958952,0.40321,0.302809,0.490392,0.472554,0.401587,0.910933,0.0221817,0.746895,0.517482,0.344035,|0.727526,0.295548,0.817245,0.962461,0.996195,0.474183,0.428574,0.946397,0.194594,0.987661,0.179324,0.833222,0.433534,0.476024,0.280766,0.740376,0.0835331,0.740408,0.879929,0.207634,0.612267,0.422387,0.966409,0.107835,0.909187,0.473214,0.938628,0.271312,0.590169,0.292485,0.688466,0.584825,0.282326,0.363777,0.69804,0.0555259,0.48293,0.856182,0.0169454,0.112172,0.374986,0.498749,0.154119,0.397485,0.996088,0.25057,0.966974,0.715587,0.9264,0.594151,0.652632,0.535065,0.255549,0.215778,0.518042,0.337979,0.378123,0.454135,0.765628,0.588413,0.548267,0.908476,0.257554,0.860879,0.89666,0.580188,0.614466,0.338774,0.946759,0.0998111,0.0314518,0.451327,0.723859,0.692405,0.617964,0.456697,0.593726,0.997171,0.79578,0.600039,0.284339,0.715195,0.424764,0.853549,0.0535401,0.963338,0.675961,0.44046,0.577653,0.370067,0.45846,0.529438,0.810722,0.476704,0.399974,0.700109,0.174179,0.279958,0.0776839,0.610616,0.587354,0.814435,0.0280314,0.247017,0.287318,0.197991,0.384607,0.320392,0.0264173,0.0453414,0.668464,0.642178,0.350779,0.246923,0.398717,0.731466,0.741526,0.931143,0.942214,0.985403,0.952648,0.111349,0.949086,0.574497,0.0261329,0.0608512,0.436835,0.838688,0.339667,0.508255,0.322042,0.831572,0.340578,0.33123,0.953668,0.629814,0.662827,0.152615,0.122024,0.0712025,0.203524,0.572893,0.326978,0.525236,0.655545,0.582157,0.672312,0.33055,0.0688977,0.402243,0.69203,0.0254069,0.611503,0.757311,0.7689,0.911685,0.475121,0.851204,0.106158,0.864149,0.664822,0.251743,0.136377,0.419529,0.966769,0.145933,0.693613,0.68251,0.861792,0.366814,0.913978,0.797548,0.949648,0.430155,0.724962,0.736098,0.53207,0.519374,0.603319,0.831979,0.675443,0.489759,0.863822,0.715185,0.133422,0.846079,0.418196,0.919986,0.580357,0.943662,0.921443,0.673346,0.699759,0.533131,0.635904,0.247583,0.468691,0.61581,0.00356025,0.274666,0.94378,0.715336,0.883937,0.0188167,0.946009,0.748164,0.977269,0.108473,0.112788,0.985167,0.37556,0.573599,0.218231,0.436366,0.969743,0.14968,0.590467,0.223721,0.148624,0.0604416,0.767954,0.539207,0.0812508,0.119613,0.421362,0.328748,0.560046,0.98871,0.779123,0.368335,0.151053,0.405309,0.521206,0.945121,0.452481,0.0273573,0.914583,0.247764,0.273189,0.71524,0.337674,0.31198,0.373159,0.877936,0.694014,0.287973,0.632409,0.0535808,0.663603,0.428365,0.102404,0.203846,0.0779713,0.100917,0.0367727,0.754562,0.0479378,0.324905,0.200379,0.0200295,0.854478,0.7548,0.873731,0.874569,0.616064,0.30461,0.877319,0.291249,0.237765,0.853829,0.89763,0.290342,0.775866,0.541219,0.758111,0.8294,0.00614387,0.911432,0.142274,0.533773,0.0657037,0.73917,0.880309,0.180899,0.470719,0.622051,0.3288,0.210041,0.613903,0.0567001,0.219178,0.349365,0.064264,0.569848,0.826101,0.316188,0.173005,0.999125,0.94019,0.925945,0.614122,0.727774,0.434091,0.757576,0.2176,0.0812989,0.769424,0.746684,0.582526,0.31323,0.160718,0.764662,0.945859,0.385682,0.494652,0.066909,0.44361,0.842217,0.312016,0.17406,0.216588,0.6779,0.0189931,0.248383,0.913276,0.490582,0.350714,0.564737,0.78615,0.664965,0.563802,0.464344,0.70385,0.571316,0.0157246,0.122303,0.746706,0.309051,0.462061,0.143888,0.000437438,0.290407,0.522818,0.861876,0.00358486,0.430373,0.00108451,0.0402665,0.968325,0.161843,0.150814,0.913911,0.803199,0.821758,0.394952,0.363824,0.337537,0.618483,0.00505161,0.800708,0.601553,0.844655,0.504231,0.465613,0.0669969,0.04143,0.660612,0.617555,0.563412,0.469083,0.986606,0.0210094,0.674985,0.377636,0.163373,0.869579,0.973288,0.169016,0.375252,0.352517,0.775722,0.469949,0.333031,0.556165,0.116567,0.494958,0.265517,0.385419,0.563314,0.158215,0.410617,0.506463,0.683766,0.305182,0.716977,0.923298,0.476249,0.19596,0.00582385,0.0572596,0.5402,0.57208,0.648131,0.956695,0.527207,0.995622,0.0314168,0.0948427,0.507915,0.482019,0.212991,0.923646,0.922877,0.449129,0.875687,0.0650859,0.330544,0.910705,0.773095,0.512542,0.79312,0.74167,0.906765,0.619093,0.858396,0.810292,0.768364,0.676648,0.442659,0.697692,0.387854,0.610525,0.785308,0.989918,0.713177,0.0729402,0.156972,0.363342,0.133408,0.581901,0.249197,0.867636,0.160387,0.655643,0.422319,0.415465,0.0982239,0.703519,0.401089,0.982737,0.242057,0.397392,0.184736,0.111499,0.795616,0.190377,0.492131,0.817977,0.416909,0.748662,0.861342,0.465143,0.585048,0.00159019,0.674598,0.487428,0.531819,0.753651,0.828231,0.590298,0.0720725,0.00273603,0.105391,0.777535,0.557769,0.404079,0.82098,0.23502,0.117695,0.668084,0.504064,0.991081,0.174756,0.473947,0.399432,0.536776,0.312474,0.397523,0.694839,0.43839,0.168557,0.172996,0.565426,0.978207,0.563329,0.331867,0.744257,0.464357,0.644158,0.32255,0.834301,0.813579,0.939447,0.155652,0.748097,0.765504,0.298974,0.583186,0.755919,0.808685,0.625476,0.052521,0.48688,0.784655,0.397625,0.715993,0.179245,0.623003,0.677987,0.0912334,0.423979,0.27765,0.664155,0.346329,0.328927,0.61699,0.884004,0.236491,0.318358,0.427521,0.278804,0.33558,0.327187,0.986563,0.779304,0.592964,0.348747,0.85074,0.33089,0.111856,0.19903,0.202522,0.54054,0.801812,0.489294,0.569437,0.733803,0.208656,0.132185,0.975936,0.00964218,0.250575,0.916158,0.451428,0.542848,0.125344,0.946911,0.455999,0.585468,0.558571,0.651067,0.541172,0.809284,0.419418,0.865229,0.411482,0.87628,0.00513625,0.791814,0.965711,0.341157,0.0527381,0.559229,0.446402,0.159349,0.685315,0.601252,0.180013,0.927242,0.848694,0.369326,0.932714,0.974185,0.404392,0.992896,0.756139,0.41107,0.0455883,0.0512013,0.280897,0.137361,0.803303,0.435497,0.121113,0.833599,0.0499724,0.226263,0.450394,0.47236,0.555895,0.40749,0.764833,0.90423,0.258965,0.434427,0.325645,0.843785,0.475915,0.553178,0.18561,0.836547,0.723893,0.639836,0.424028,0.607102,0.903541,0.111854,0.414405,0.628405,0.758947,0.390729,0.316118,0.776528,0.415133,0.0482594,0.871532,0.074313,0.855469,0.741506,0.912653,0.467751,0.364081,0.609355,0.102884,0.0630481,0.623378,0.755587,0.164457,0.757594,0.464089,0.12926,0.156557,0.0679165,0.72857,0.544321,0.836173,0.117705,0.248014,0.0346594,0.219529,0.0304268,0.627174,0.577911,0.761383,0.791356,0.544045,0.497983,0.263987,0.247981,0.613575,0.730213,0.223109,0.656122,0.709647,0.718056,0.00707799,0.441474,0.566767,0.784975,0.545534,0.110349,0.236436,0.698085,0.367894,0.660967,0.805815,0.996434,0.869779,0.149799,0.45903,0.0114126,0.211585,0.968746,0.478293,0.204788,0.703029,0.435548,0.0817528,0.480054,0.595558,0.98165,0.545439,0.628367,0.280612,0.88646,0.450763,0.354614,0.488625,0.453777,0.80673,0.710999,0.34591,0.0486456,0.209656,0.780337,0.219927,0.191171,0.236988,0.412268,0.196471,0.613084,0.177896,0.385207,0.00679666,0.0243201,0.738803,0.0534617,0.716978,0.390521,0.868355,0.582249,0.64439,0.371249,0.180178,0.631816,0.0503015,0.996461,0.297651,0.308318,0.276689,0.93493,0.16968,0.893584,0.778404,0.0518532,0.530644,0.460049,0.174638,0.467625,0.154866,0.484845,0.835751,0.306768,0.424501,0.919631,0.194661,0.239805,0.0812038,0.675302,0.0848553,0.682446,0.932334,0.341213,0.719163,0.236269,0.301734,0.604794,0.856471,0.74333,0.14864,0.0597342,0.301275,0.95207,0.169049,0.600522,0.872214,0.401417,0.248079,0.323945,0.806379,0.955816,0.125336,0.868074,0.181152,0.0308809,0.796993,0.854162,0.825408,0.569209,0.415448,0.501168,0.966985,0.397619,0.05425,0.401246,0.894846,0.792682,0.136756,0.585493,0.133485,0.663447,0.952879,0.117548,0.782275,0.432688,0.654114,0.309295,0.42736,0.122409,0.382463,0.365364,0.0810927,0.48822,0.109901,0.601044,0.685243,0.726247,0.764198,0.16269,0.781464,0.869327,0.0828758,0.625906,0.0975904,0.374124,0.330709,0.909373,0.829184,0.253902,0.0477481,0.682106,0.199752,0.868445,0.272743,0.119502,0.393951,0.58358,0.85662,0.759632,0.159687,0.174653,0.133829,0.303405,0.556246,0.974491,0.935122,0.103109,0.495686,0.60222,0.118954,0.450741,0.545934,0.0755259,0.791567,0.143132,0.969203,0.306864,0.482008,0.798753,0.384395,0.594471,0.764298,0.774552,0.401177,0.536467,0.713573,0.0630631,0.370459,0.512433,0.41534,0.621393,0.913466,0.825263,0.903354,0.198383,0.516184,0.916922,0.212493,0.535435,0.297246,0.969984,0.728369,0.601843,0.62534,0.811446,0.549866,0.447693,0.372381,0.918972,0.548933,0.18728,0.634204,0.203869,0.70297,0.949542,0.0237697,0.859998,0.883001,0.239475,0.00182128,0.178061,0.308296,0.0160757,0.514494,0.479558,0.893635,0.501223,0.9809,0.77811,0.536238,0.639107,0.349526,0.1501,0.0442686,0.014811,0.62824,0.234792,0.845854,0.536857,0.146659,0.766211,0.153574,0.625111,0.855031,0.347853,0.0619296,0.688195,0.359426,0.449391,0.955406,0.752215,0.629621,0.711272,0.120382,0.0183634,0.806023,0.232437,0.973523,0.587237,0.506241,0.9346,0.155582,0.0315707,0.982013,0.495797,0.313894,0.363017,0.803881,0.280885,0.983261,0.966778,0.749426,0.80467,0.854673,0.264066,0.227174,0.357467,0.158521,0.253702,0.0121373,0.521699,0.710809,0.362307,0.317695,0.68308,0.770961,0.701842,0.225657,0.0644662,0.40609,0.439939,0.337478,0.934701,0.727822,0.80568,0.510289,0.160352,0.936254,0.10431,0.0344285,0.845978,0.240384,0.0830477,0.658836,0.492337,0.276486,0.785432,0.472453,0.204615,0.448938,0.887699,0.103842,0.589357,0.108498,0.309555,0.588709,0.430685,0.0479326,0.657166,0.0799737,0.254885,0.596155,0.404757,0.458853,0.551641,0.569163,0.938423,0.59846,0.750473,0.844171,|0.656462,0.361394,0.242053,0.419252,0.649464,0.665235,0.934422,0.434385,0.424259,0.609114,0.887315,0.404218,0.662209,0.881668,0.234462,0.310353,0.119981,0.488843,0.646684,0.648273,0.422583,0.000227809,0.125023,0.410862,0.128534,0.45658,0.0342279,0.721789,0.0244989,0.155357,0.586906,0.97174,0.00711042,0.721545,0.82087,0.0525563,0.775778,0.703987,0.702688,0.149544,0.120597,0.158576,0.97315,0.0133336,0.550613,0.0542034,0.820722,0.950974,0.913327,0.473372,0.772985,0.405279,0.257065,0.154097,0.994412,0.979265,0.152262,0.573151,0.960295,0.0541214,0.86451,0.63366,0.849172,0.238358,0.420912,0.813683,0.401338,0.15479,0.797595,0.925095,0.981922,0.393412,0.620955,0.581359,0.694846,0.169254,0.574563,0.931824,0.0409472,0.641213,0.586139,0.172739,0.816612,0.258763,0.802381,0.696665,0.628207,0.829229,0.505658,0.405344,0.761558,0.117331,0.089713,0.0250711,0.26483,0.930719,0.405212,0.98263,0.723182,0.918548,0.986077,0.0713218,0.692772,0.148533,0.55996,0.229829,0.123902,0.933117,0.00598013,0.859498,0.00773472,0.969637,0.444102,0.0483007,0.337173,0.343536,0.269943,0.772956,0.201804,0.810389,0.623004,0.126494,0.400095,0.451329,0.410174,0.360076,0.756653,0.341872,0.109443,0.0204881,0.962712,0.269861,0.810585,0.769304,0.0743877,0.773117,0.166807,0.909633,0.253325,0.276907,0.0111673,0.991812,0.0136819,0.597817,0.12977,0.857545,0.791494,0.600152,0.564996,0.992057,0.84838,0.216526,0.734081,0.685083,0.591979,0.0184887,0.414013,0.119178,0.757448,0.992203,0.0726791,0.0843545,0.852948,0.214662,0.70355,0.142787,0.193913,0.663468,0.93954,0.706731,0.465423,0.158527,0.275076,0.533469,0.63287,0.155752,0.86262,0.49761,0.290332,0.173492,0.696804,0.652554,0.537768,0.617757,0.202982,0.0234992,0.416074,0.744984,0.749308,0.0184633,0.0710789,0.605846,0.602978,0.0905395,0.191266,0.811098,0.190864,0.85407,0.562106,0.216921,0.712655,0.456049,0.948821,0.583808,0.200617,0.809835,0.260091,0.863607,0.177727,0.644903,0.347184,0.734754,0.98215,0.154703,0.385457,0.214208,0.857753,0.37485,0.223989,0.89424,0.311886,0.168968,0.744137,0.938666,0.223143,0.302565,0.39891,0.950852,0.28001,0.0888896,0.271713,0.363539,0.168244,0.649923,0.589875,0.693658,0.0401704,0.629816,0.496612,0.72974,0.0826362,0.370622,0.126476,0.635975,0.521887,0.392983,0.972922,0.334451,0.472795,0.023986,0.913194,0.258751,0.10003,0.494326,0.207295,0.781266,0.806149,0.796324,0.885607,0.809961,0.985704,0.258484,0.741484,0.644677,0.731903,0.686681,0.785498,0.535264,0.33946,0.888076,0.339226,0.0508837,0.955581,0.460052,0.0435942,0.747412,0.188219,0.306601,0.305265,0.836956,0.767329,0.540101,0.477218,0.0981843,0.575493,0.983663,0.961203,0.68351,0.131877,0.446247,0.969762,0.30933,0.560825,0.776369,0.781046,0.0317684,0.488954,0.522726,0.108961,0.305968,0.14836,0.166195,0.812768,0.61342,0.793306,0.977208,0.307835,0.269779,0.160568,0.507638,0.374434,0.707812,0.11811,0.0376742,0.176317,0.598995,0.625929,0.30531,0.290673,0.358075,0.292235,0.34852,0.780306,0.0235254,0.79097,0.523457,0.904681,0.0169704,0.589908,0.380305,0.622562,0.867739,0.78271,0.510759,0.124839,0.0465273,0.635365,0.530739,0.522602,0.573033,0.0874975,0.724423,0.684483,0.969748,0.154843,0.501964,0.0726492,0.569681,0.904724,0.82075,0.844553,0.701623,0.267249,0.434235,0.69211,0.7778,0.506239,0.573216,0.646453,0.852121,0.155586,0.8611,0.594762,0.0870035,0.757765,0.089383,0.712747,0.498733,0.850723,0.529581,0.094906,0.209905,0.756122,0.796749,0.954552,0.474815,0.363448,0.50767,0.579351,0.75571,0.202493,0.819702,0.822011,0.871455,0.341754,0.599927,0.517259,0.921955,0.689932,0.19955,0.295832,0.517409,0.860787,0.365387,0.758035,0.222883,0.37831,0.985829,0.890739,0.697953,0.25815,0.473642,0.86393,0.00987065,0.502879,0.0677133,0.690294,0.799567,0.663974,0.104899,0.515171,0.514859,0.221752,0.129168,0.88062,0.78479,0.589925,0.0777359,0.558754,0.667052,0.207923,0.489294,0.942521,0.681468,0.492668,0.0253454,0.29197,0.938114,0.570005,0.274577,0.150846,0.688301,0.928788,0.833691,0.243769,0.728169,0.738732,0.0248674,0.366025,0.830195,0.105154,0.229777,0.0467501,0.850265,0.585283,0.698351,0.482955,0.0495899,0.858299,0.446156,0.454198,0.987288,0.833673,0.131425,0.203183,0.883186,0.0368846,0.197384,0.438201,0.00164801,0.68343,0.358321,0.581569,0.300394,0.530411,0.571205,0.792093,0.167935,0.610535,0.128965,0.347938,0.613396,0.768565,0.0855953,0.97353,0.85565,0.439029,0.318281,0.941224,0.747853,0.126168,0.450175,0.896247,0.936941,0.126989,0.841462,0.896078,0.401213,0.479716,0.733514,0.179847,0.997381,0.619974,0.919372,0.301723,0.542911,0.953023,0.453688,0.354632,0.618889,0.123927,0.0686916,0.289614,0.947886,0.797737,0.844409,0.670321,0.780408,0.810298,0.581846,0.0233826,0.0760555,0.845956,0.48486,0.13669,0.821717,0.452111,0.0421409,0.396563,0.695358,0.310473,0.0678621,0.642611,0.935698,0.653717,0.420859,0.750602,0.297605,0.902001,0.464433,0.83028,0.716046,0.184003,0.525586,0.719739,0.950265,0.478784,0.038386,0.864513,0.782348,0.312589,0.945129,0.138238,0.652408,0.218934,0.382328,0.0807198,0.811817,0.199038,0.794803,0.740171,0.819087,0.877149,0.745321,0.423531,0.502829,0.520354,0.414205,0.997125,0.843586,0.507192,0.12628,0.672082,0.597046,0.874139,0.683109,0.623675,0.863697,0.172479,0.514351,0.904455,0.480122,0.307145,0.300526,0.874594,0.644228,0.125505,0.739008,0.517212,0.837583,0.386642,0.841531,0.735566,0.286822,0.295482,0.100187,0.521718,0.574643,0.646033,0.935056,0.305397,0.944542,0.373046,0.558182,0.399626,0.625781,0.226354,0.2415,0.952665,0.373375,0.995706,0.231858,0.941525,0.704896,0.101167,0.489834,0.0904131,0.200125,0.303666,0.0572941,0.710097,0.945751,0.922746,0.484295,0.426412,0.643521,0.0768853,0.578901,0.626866,0.799348,0.188365,0.0378283,0.0732155,0.455197,0.592272,0.670166,0.558714,0.751727,0.177848,0.187888,0.449316,0.145479,0.81434,0.983644,0.194082,0.864631,0.0958267,0.345795,0.946213,0.430727,0.856055,0.777788,0.853929,0.688941,0.95895,0.565734,0.343589,0.0824724,0.28453,0.191295,0.803014,0.694853,0.382527,0.0402332,0.0658901,0.640157,0.63074,0.809755,0.319875,0.604463,0.273308,0.0779526,0.0131748,0.933656,0.0871743,0.10775,0.334523,0.330077,0.542479,0.327066,0.764052,0.177031,0.630606,0.302814,0.0296493,0.815797,0.641375,0.923534,0.0207198,0.172268,0.181477,0.270059,0.936379,0.420994,0.621378,0.0840469,0.179566,0.996716,0.882817,0.29897,0.0508148,0.0151259,0.311742,0.292955,0.495106,0.713683,0.214938,0.96115,0.417555,0.917113,0.148355,0.510951,0.52703,0.401019,0.022765,0.532218,0.0407453,0.501274,0.426443,0.171388,0.38382,0.508089,0.0438659,0.712033,0.399064,0.631804,0.413691,0.836389,0.450812,0.234764,0.642188,0.868496,0.272023,0.98314,0.621522,0.820147,0.0485839,0.754082,0.0647264,0.304639,0.800759,0.223312,0.893376,0.865522,0.422161,0.622419,0.432034,0.152046,0.189651,0.887469,0.688909,0.571087,0.350951,0.535747,0.51109,0.577454,0.0637614,0.992004,0.7998,0.153157,0.863914,0.291417,0.639752,0.0487783,0.658907,0.0927842,0.111848,0.748422,0.782343,0.176773,0.613661,0.702782,0.207405,0.330392,0.941268,0.85591,0.222727,0.473938,0.0327466,0.0511252,0.571438,0.0277308,0.711963,0.295057,0.855587,0.37924,0.423883,0.0342158,0.832376,0.345222,0.421304,0.507112,0.921777,0.112952,0.576899,0.389742,0.923649,0.665074,0.135472,0.976594,0.823832,0.96483,0.983415,0.998104,0.474728,0.523449,0.694853,0.768402,0.87834,0.388552,0.325832,0.1078,0.886455,0.520374,0.990278,0.163749,0.382113,0.793156,0.234281,0.692403,0.0165312,0.395913,0.484873,0.328782,0.402425,0.109376,0.931382,0.829061,0.0605149,0.911156,0.131783,0.236456,0.0591925,0.0403788,0.113534,0.461701,0.939938,0.517379,0.95675,0.541279,0.216154,0.341782,0.715275,0.770794,0.876019,0.653273,0.364028,0.139727,0.451315,0.514068,0.409212,0.769286,0.65292,0.719212,0.411212,0.464475,0.510089,0.153129,0.0994436,0.64582,0.776953,0.122039,0.74174,0.151517,0.861155,0.360302,0.742477,0.591555,0.0611339,0.807199,0.814107,0.747296,0.00621241,0.571457,0.720514,0.0114431,0.929419,0.79551,0.0581104,0.31222,0.298012,0.26534,0.914581,0.598144,0.676719,0.170559,0.0287077,0.885485,0.488872,0.041352,0.504902,0.0106332,0.440094,0.47543,0.853458,0.172923,0.525889,0.193966,0.623966,0.73338,0.616551,0.08281,0.958322,0.223975,0.258671,0.484805,0.777112,0.869168,0.597071,0.149642,0.160726,0.79609,0.377238,0.692614,0.0191388,0.606731,0.425142,0.424247,0.292725,0.180553,0.915907,0.234869,0.113177,0.0295178,0.914149,0.627486,0.211458,0.0153558,0.515182,0.0309163,0.131807,0.359455,0.902022,0.775633,0.90321,0.23594,0.0814481,0.165952,0.862555,0.494597,0.464317,0.48263,0.906815,0.284138,0.272646,0.980246,0.328637,0.949474,0.343856,0.776819,0.699597,0.684031,0.288476,0.252327,0.13485,0.335228,0.346383,0.423626,0.631155,0.543327,0.283841,0.587186,0.699865,0.46708,0.330281,0.280567,0.551907,0.170363,0.0559831,0.282944,0.0378368,0.4131,0.635974,0.836534,0.813089,0.865055,0.811377,0.946257,0.747051,0.940595,0.727505,0.921139,0.340627,0.504,0.996854,0.171841,0.245314,0.289278,0.451281,0.757078,0.176451,0.358585,0.99694,0.978067,0.700984,0.179098,0.584437,0.243754,0.810401,0.0869442,0.731843,0.774868,0.129412,0.0473663,0.786174,0.2476,0.684953,0.531052,0.932789,0.79915,|0.0877461,0.999278,0.467502,0.646845,0.650222,0.0476019,0.578544,0.646575,0.251172,0.55668,0.889592,0.182433,0.374562,0.183897,0.585062,0.799732,0.555189,0.504728,0.809806,0.79793,0.857882,0.700767,0.7873,0.466359,0.534824,0.324276,0.0131249,0.619068,0.00869334,0.509309,0.638674,0.0086661,0.318085,0.488885,0.205455,0.925021,0.382453,0.670123,0.482233,0.298222,0.0831994,0.64981,0.565465,0.294744,0.439578,0.0945623,0.0632501,0.054171,0.0788236,0.645999,0.138709,0.308646,0.437032,0.247787,0.951214,0.0986142,0.986699,0.850321,0.496765,0.537048,0.393215,0.497639,0.168329,0.386954,0.694727,0.359395,0.744535,0.235666,0.373158,0.930153,0.810226,0.185891,0.904807,0.282317,0.379449,0.102662,0.0401258,0.210952,0.193804,0.345439,0.321516,0.0113729,0.86505,0.368942,0.0432382,0.245605,0.647108,0.107548,0.710703,0.636008,0.933629,0.573329,0.755774,0.00408077,0.212467,0.45591,0.782751,0.0621386,0.247426,0.317139,0.752964,0.634636,0.788734,0.540821,0.0838923,0.0041697,0.632741,0.179178,0.410772,0.356678,0.688975,0.593049,0.441527,0.108115,0.681263,0.968305,0.200917,0.447362,0.71483,0.373829,0.395396,0.162701,0.0514431,0.999159,0.459897,0.733294,0.87134,0.249238,0.0453657,0.63962,0.163643,0.322002,0.095944,0.0924771,0.642059,0.943277,0.56097,0.0863466,0.693488,0.789142,0.334262,0.466453,0.56067,0.379856,0.504892,0.883329,0.459632,0.0281385,0.0825762,0.460977,0.44995,0.215831,0.330603,0.0656135,0.459466,0.106359,0.141094,0.934442,0.142442,0.727113,0.697902,0.121266,0.934266,0.0465846,0.371791,0.116276,0.01767,0.399399,0.669551,0.414559,0.868353,0.743344,0.848768,0.76113,0.18474,0.396617,0.332362,0.675455,0.302879,0.660407,0.945579,0.255394,0.453306,0.469682,0.308736,0.0666876,0.605392,0.117356,0.231262,0.912428,0.624462,0.983446,0.850825,0.377029,0.973737,0.820862,0.844707,0.817251,0.564346,0.676927,0.102005,0.534846,0.51584,0.806109,0.471854,0.513481,0.0837765,0.0336581,0.659172,0.707028,0.599168,0.377585,0.639819,0.0365225,0.841033,0.47576,0.924869,0.914756,0.391691,0.972338,0.453191,0.937263,0.0273226,0.947922,0.315495,0.486442,0.312137,0.131204,0.88649,0.218924,0.767803,0.875438,0.0273041,0.502071,0.275539,0.887609,0.00413871,0.784856,0.382374,0.256204,0.608567,0.478761,0.0455748,0.796144,0.556733,0.372865,0.592116,0.0936287,0.473749,0.0730098,0.0815502,0.819647,0.3662,0.5774,0.711798,0.293244,0.955277,0.968165,0.447769,0.42181,0.395452,0.433273,0.0123975,0.648215,0.651536,0.0177208,0.0519429,0.727623,0.868171,0.987841,0.122572,0.661336,0.0909773,0.495866,0.811251,0.145636,0.77266,0.530591,0.924782,0.61087,0.344361,0.0741037,0.705254,0.53536,0.844687,0.836596,0.31091,0.782836,0.490473,0.572215,0.673274,0.617391,0.18624,0.0525467,0.840697,0.182199,0.137329,0.883831,0.788755,0.59052,0.844103,0.970846,0.920431,0.991088,0.699339,0.208913,0.390652,0.598782,0.883978,0.650682,0.234183,0.230118,0.611897,0.979536,0.886187,0.840147,0.608187,0.977045,0.9392,0.789158,0.228672,0.621118,0.985994,0.573431,0.197574,0.227472,0.256041,0.811773,0.233523,0.357498,0.63668,0.770214,0.784429,0.297125,0.162313,0.962962,0.593936,0.78945,0.60482,0.463717,0.349186,0.915399,0.00434172,0.371005,0.53786,0.450923,0.663559,0.00403208,0.96468,0.150753,0.444568,0.00806141,0.88276,0.521927,0.838801,0.486274,0.935094,0.271467,0.334361,0.602472,0.56562,0.701664,0.252153,0.509452,0.650692,0.452107,0.299577,0.513349,0.235072,0.501355,0.79895,0.209479,0.313306,0.47285,0.733247,0.410359,0.486938,0.438465,0.553198,0.717595,0.879482,0.443101,0.257801,0.904693,0.37472,0.96431,0.638299,0.275599,0.0305271,0.153994,0.554455,0.858319,0.953258,0.648276,0.0734364,0.968188,0.583037,0.336874,0.345826,0.365277,0.760688,0.101521,0.214344,0.273585,0.875218,0.485536,0.399301,0.996182,0.0362116,0.060975,0.907495,0.10007,0.929029,0.988876,0.815298,0.195225,0.459103,0.736131,0.891972,0.118912,0.860921,0.899011,0.135452,0.589878,0.00921357,0.330111,0.174938,0.287924,0.159396,0.163914,0.817642,0.884121,0.553014,0.223313,0.465721,0.294316,0.839525,0.473114,0.991088,0.691471,0.620893,0.0347093,0.652314,0.147911,0.428359,0.141035,0.886451,0.780051,0.398514,0.0487267,0.0665464,0.188657,0.467323,0.839516,0.611513,0.603572,0.229544,0.511677,0.621908,0.134992,0.952027,0.0941753,0.418304,0.484895,0.862221,0.625855,0.360935,0.279118,0.171257,0.573866,0.672932,0.798885,0.47507,0.401807,0.106229,0.233309,0.307348,0.355714,0.14656,0.719842,0.725674,0.638823,0.200926,0.143728,0.115161,0.617082,0.00155658,0.391319,0.166343,0.380357,0.156,0.996703,0.0594682,0.856127,0.101628,0.956443,0.781708,0.852863,0.286565,0.372299,0.664505,0.646969,0.686663,0.395055,0.0614707,0.147005,0.802022,0.246373,0.309734,0.0111918,0.728357,0.511879,0.657979,0.519587,0.986578,0.0481976,0.929237,0.817646,0.0163397,0.320412,0.28373,0.640832,0.60225,0.841655,0.916484,0.799508,0.795023,0.956843,0.342282,0.0575798,0.64528,0.480606,0.843188,0.261555,0.125231,0.191772,0.502203,0.624815,0.289509,0.459138,0.560388,0.386818,0.559635,0.774208,0.407519,0.893941,0.108136,0.137914,0.110129,0.0987283,0.412407,0.854407,0.411621,0.569391,0.411417,0.894648,0.681728,0.681381,0.344086,0.29492,0.750018,0.09426,0.870282,0.603795,0.0598385,0.840944,0.137776,0.408086,0.961686,0.62836,0.460106,0.332564,0.930622,0.813811,0.497594,0.461807,0.679991,0.476433,0.392741,0.48743,0.80408,0.235839,0.351772,0.895009,0.0771028,0.259518,0.207754,0.976911,0.876079,0.0119303,0.250108,0.339901,0.280078,0.915477,0.910664,0.34856,0.924392,0.449002,0.646205,0.370466,0.0612831,0.574102,0.329147,0.121344,0.864502,0.0170369,0.526738,0.960967,0.458084,0.97021,0.0954549,0.66731,0.0380073,0.975739,0.661862,0.148269,0.887207,0.123588,0.576988,0.162639,0.0821738,0.634897,0.160125,0.453622,0.138539,0.775773,0.523504,0.744185,0.21918,0.97504,0.475797,0.276394,0.475461,0.812496,0.661377,0.0909965,0.113777,0.900329,0.029502,0.622004,0.388966,0.569185,0.0821214,0.315026,0.271094,0.840035,0.839715,0.100422,0.859369,0.960776,0.102958,0.853765,0.912542,0.827155,0.838428,0.116485,0.87714,0.83325,0.723005,0.207537,0.787902,0.395747,0.311269,0.544967,0.0871455,0.767869,0.481095,0.843053,0.479129,0.602335,0.0303797,0.932702,0.315408,0.514458,0.114201,0.505211,0.365449,0.373004,0.230928,0.738119,0.429423,0.315997,0.0234859,0.135181,0.717909,0.60219,0.256984,0.682373,0.794553,0.419688,0.0875133,0.913534,0.425588,0.984534,0.644964,0.5962,0.103674,0.941634,0.97516,0.914355,0.727652,0.997878,0.915463,0.0198172,0.877651,0.239209,0.391614,0.984587,0.0372269,0.208007,0.0102847,0.0897399,0.0101103,0.818852,0.582302,0.844369,0.374281,0.364179,0.938312,0.929379,0.114031,0.646044,0.32489,0.587434,0.750153,0.39693,0.915991,0.695981,0.641428,0.110399,0.54619,0.784398,0.656036,0.586365,0.680379,0.511064,0.989436,0.800301,0.597436,0.680111,0.721337,0.333568,0.248931,0.942671,0.816987,0.816066,0.883174,0.692611,0.673657,0.704584,0.728423,0.439014,0.479783,0.502169,0.655682,0.073085,0.230586,0.915129,0.837731,0.728522,0.734357,0.89228,0.542869,0.187281,0.921142,0.245047,0.573531,0.378331,0.181284,0.99981,0.903573,0.0814807,0.712835,0.100204,0.678816,0.518924,0.57497,0.964254,0.907706,0.389671,0.0143088,0.805506,0.408351,0.805376,0.162151,0.943194,0.153119,0.268658,0.976799,0.532302,0.626298,0.103066,0.515707,0.905161,0.733311,0.415227,0.24921,0.100763,0.714342,0.190727,0.641834,0.127826,0.421022,0.649931,0.289898,0.0617719,0.0450883,0.0268371,0.118365,0.756964,0.638441,0.845517,0.281014,0.856719,0.145771,0.859066,0.973342,0.161077,0.714402,0.284767,0.327766,0.0092625,0.111322,0.259194,0.365536,0.249115,0.333989,0.722765,0.863655,0.905186,0.0513811,0.826101,0.0735449,0.331888,0.433348,0.531592,0.442086,0.398709,0.260461,0.928558,0.920449,0.630515,0.630368,0.971302,0.101856,0.00862068,0.979494,0.0443911,0.552897,0.859697,0.364952,0.700512,0.448859,0.377864,0.842655,0.39702,0.905717,0.220802,0.882587,0.382427,0.423524,0.65815,0.38595,0.684121,0.723847,0.749929,0.685008,0.925769,0.471759,0.994731,0.347914,0.923653,0.976187,0.109998,0.734976,0.808236,0.660819,0.7105,0.723326,0.728057,0.00410229,0.723158,0.532933,0.0133784,0.369409,0.561826,0.748345,0.751383,0.973547,0.442548,0.535873,0.284418,0.674477,0.860667,0.182191,0.959619,0.117458,0.512177,0.564736,0.597232,0.27238,0.300823,0.639485,0.56354,0.522176,0.875215,0.627018,0.334859,0.126517,0.514243,0.535567,0.0547095,0.707558,0.54755,0.213198,0.602252,0.29541,0.143365,0.252339,0.623335,0.115334,0.359598,0.72833,0.807505,0.146521,0.268219,0.534853,0.337678,0.167131,0.996692,0.189671,0.530394,0.191997,0.132234,0.647251,0.750003,0.825098,0.467982,0.27008,0.698465,0.83176,0.726587,0.172816,0.21264,0.499674,0.774303,0.798335,0.186009,0.0728479,0.955487,0.462619,0.123484,0.608202,0.073664,0.587969,0.160872,0.192222,0.625061,0.710479,0.959868,0.479251,0.0521136,0.915674,0.0801432,0.617623,0.804431,0.990802,0.0941775,0.253323,0.971344,0.651507,0.467068,0.395055,0.988812,0.109209,0.432777,0.387679,0.281804,0.909075,0.0649706,0.424602,0.623943,0.109315,0.409164,0.829172,0.403454,0.37692,0.614351,0.413211,0.981842,0.404656,0.170352,0.570777,0.610462,0.660495,0.0205985,0.0521864,0.14651,0.198939,0.248089,|0.487352,0.145905,0.758602,0.635909,0.655251,0.636448,0.320955,0.976921,0.567794,0.45382,0.142703,0.116022,0.709834,0.00700998,0.671143,0.530981,0.0709529,0.531275,0.32487,0.438504,0.847239,0.667752,0.493503,0.471638,0.522348,0.291126,0.309779,0.909819,0.463573,0.112712,0.388253,0.104635,0.320792,0.625306,0.638657,0.60178,0.541604,0.172652,0.726763,0.636499,0.389092,0.442252,0.496506,0.911069,0.243467,0.679635,0.28023,0.308671,0.64251,0.332727,0.900856,0.0908517,0.437917,0.296677,0.429731,0.962411,0.78404,0.218715,0.282068,0.36261,0.348706,0.176419,0.165503,0.399362,0.123475,0.443324,0.770851,0.48782,0.493688,0.364916,0.51608,0.486908,0.798454,0.713699,0.681105,0.408086,0.559847,0.35833,0.847747,0.381419,0.329678,0.772403,0.795087,0.362256,0.202967,0.798937,0.225762,0.670739,0.987635,0.408129,0.437853,0.668028,0.797087,0.934862,0.47655,0.491098,0.410602,0.132857,0.494228,0.776803,0.523109,0.332369,0.591048,0.0909843,0.571112,0.00913668,0.568353,0.00916082,0.258665,0.782318,0.635219,0.285506,0.018348,0.361749,0.0809377,0.563474,0.862557,0.185569,0.935716,0.105071,0.56533,0.713848,0.602683,0.514769,0.0643355,0.110476,0.410704,0.0548348,0.027443,0.86219,0.977594,0.0463513,0.460349,0.535512,0.481522,0.331398,0.510775,0.275875,0.429727,0.134519,0.825745,0.275651,0.410832,0.900218,0.154304,0.188338,0.719567,0.016691,0.499323,0.638071,0.311332,0.78249,0.385879,0.313504,0.118929,0.0707592,0.623443,0.195678,0.727046,0.928571,0.0529418,0.529933,0.501746,0.796892,0.784034,0.58711,0.956151,0.723383,0.0339655,0.624577,0.786126,0.212708,0.794745,0.100454,0.539491,0.166891,0.475733,0.0430887,0.810258,0.326541,0.870718,0.308975,0.245336,0.85962,0.0774193,0.0848982,0.699134,0.729894,0.820185,0.104228,0.309977,0.569085,0.3132,0.723909,0.775636,0.794705,0.0686236,0.0549478,0.952026,0.902612,0.963209,0.691492,0.938176,0.399959,0.357237,0.24034,0.472278,0.960436,0.848096,0.97208,0.699853,0.239681,0.183419,0.656617,0.0390672,0.759264,0.20887,0.450945,0.0689281,0.659346,0.364668,0.851021,0.986192,0.466198,0.470271,0.649381,0.7261,0.342866,0.264807,0.686989,0.554922,0.252306,0.151215,0.434416,0.000829577,0.0502059,0.397948,0.285195,0.955339,0.840616,0.988817,0.112358,0.13121,0.220504,0.542831,0.545813,0.661135,0.832396,0.535311,0.256446,0.66753,0.711734,0.559363,0.508763,0.42163,0.869012,0.870456,0.964076,0.0706028,0.461329,0.845597,0.316965,0.264461,0.809052,0.391463,0.561225,0.46793,0.668653,0.584551,0.956518,0.700355,0.990637,0.18377,0.25758,0.915402,0.135641,0.0976161,0.872852,0.541694,0.99274,0.0513855,0.0724958,0.964805,0.00867939,0.0282534,0.714511,0.580346,0.397884,0.940889,0.122965,0.0711172,0.100396,0.803023,0.153673,0.695325,0.537609,0.724632,0.74183,0.385911,0.722232,0.814409,0.800152,0.372493,0.0160705,0.52555,0.764874,0.201885,0.10746,0.341676,0.69912,0.645949,0.898168,0.644253,0.14529,0.141157,0.722205,0.830429,0.750566,0.709593,0.47825,0.340545,0.0654017,0.692523,0.704282,0.974488,0.416625,0.416705,0.0814737,0.65934,0.0753311,0.705136,0.287653,0.987544,0.994985,0.0565668,0.0174491,0.661191,0.571541,0.735481,0.173873,0.891857,0.377804,0.762517,0.498078,0.859835,0.994147,0.247906,0.354452,0.22173,0.708299,0.518243,0.258048,0.0218846,0.7962,0.560712,0.270405,0.925898,0.913553,0.636595,0.692307,0.340898,0.55333,0.172942,0.224459,0.716059,0.520256,0.704054,0.850804,0.0505091,0.558683,0.617038,0.216266,0.659047,0.00649548,0.64935,0.086543,0.740883,0.235311,0.117913,0.374365,0.369657,0.787554,0.597663,0.81225,0.391812,0.32361,0.0793063,0.00233376,0.0398782,0.887664,0.513197,0.310713,0.902808,0.549662,0.592225,0.490738,0.578702,0.127489,0.496896,0.172712,0.383294,0.524154,0.0984002,0.0605981,0.762818,0.0945517,0.913955,0.0618705,0.474923,0.808488,0.299172,0.769861,0.723373,0.924044,0.470966,0.866528,0.290115,0.112803,0.171439,0.862847,0.91299,0.878018,0.224959,0.462843,0.606869,0.103607,0.0613708,0.633701,0.39862,0.652801,0.797273,0.818478,0.511965,0.583844,0.936106,0.0977603,0.765856,0.584747,0.718014,0.661814,0.638549,0.571644,0.0665478,0.435332,0.729018,0.582642,0.0801303,0.770404,0.694338,0.64615,0.509318,0.556511,0.900081,0.168341,0.552389,0.818088,0.629643,0.37799,0.891941,0.279279,0.0805821,0.162092,0.663566,0.737318,0.235713,0.628271,0.526479,0.280995,0.33808,0.530409,0.0497946,0.0191213,0.236264,0.785807,0.75162,0.983834,0.175596,0.296521,0.937444,0.388675,0.126724,0.263453,0.946805,0.517223,0.847475,0.221387,0.156873,0.306017,0.988964,0.0909706,0.854352,0.278196,0.882662,0.25753,0.479379,0.887286,0.253776,0.211058,0.593432,0.862344,0.186589,0.72595,0.00798374,0.942398,0.0848699,0.978852,0.720903,0.438772,0.00570393,0.814174,0.0491587,0.890516,0.733811,0.691378,0.117643,0.403422,0.570198,0.00681251,0.672613,0.953763,0.713936,0.792343,0.855103,0.606143,0.0139754,0.866067,0.718153,0.297681,0.0454015,0.219547,0.50015,0.589104,0.723934,0.145365,0.00543141,0.104557,0.830852,0.174455,0.729397,0.988171,0.416218,0.701597,0.86944,0.941624,0.0398644,0.44805,0.682142,0.726457,0.302538,0.2387,0.238059,0.337359,0.291055,0.24105,0.287085,0.167343,0.252304,0.844462,0.455814,0.676746,0.676089,0.0505635,0.0796718,0.286707,0.244414,0.28779,0.225641,0.502596,0.961478,0.801298,0.561543,0.649905,0.422983,0.0702754,0.46367,0.58457,0.133239,0.299379,0.0359886,0.791121,0.250879,0.576289,0.247385,0.0273491,0.0787355,0.488955,0.599231,0.377589,0.54374,0.949944,0.263782,0.914134,0.304131,0.722522,0.0267678,0.104778,0.658388,0.785619,0.393747,0.309761,0.848658,0.664914,0.994517,0.280775,0.607396,0.290387,0.575874,0.125015,0.117704,0.43099,0.904748,0.110752,0.385439,0.923666,0.441866,0.855277,0.206663,0.935154,0.74853,0.717042,0.194938,0.229802,0.746258,0.915822,0.249524,0.495276,0.362196,0.691352,0.458824,0.982101,0.515432,0.99927,0.597155,0.784373,0.552314,0.566499,0.920414,0.111539,0.708138,0.238364,0.854757,0.605646,0.887147,0.397334,0.089887,0.361477,0.480641,0.0601995,0.129288,0.710016,0.729554,0.183724,0.882607,0.51565,0.93605,0.737843,0.186402,0.147564,0.67188,0.00317311,0.958564,0.777902,0.454707,0.805338,0.597988,0.0930133,0.326928,0.88034,0.861862,0.286598,0.977645,0.411339,0.585313,0.245348,0.0883349,0.636712,0.634465,0.71553,0.11467,0.231183,0.0350853,0.784405,0.962209,0.387528,0.13999,0.530783,0.885466,0.129259,0.221045,0.723661,0.478215,0.0953063,0.555917,0.813776,0.268662,0.851075,0.514185,0.722314,0.747736,0.0477798,0.173156,0.701167,0.892275,0.797954,0.108272,0.781796,0.819093,0.855428,0.80323,0.883166,0.597245,0.0700874,0.605081,0.695592,0.607662,0.934073,0.756664,0.272567,0.361024,0.0525675,0.931867,0.247233,0.596084,0.885551,0.18387,0.494121,0.587964,0.0966623,0.0589408,0.467182,0.301918,0.388389,0.18455,0.873992,0.757326,0.607998,0.0290318,0.167935,0.571504,0.211662,0.923927,0.993913,0.445991,0.561124,0.758707,0.919098,0.928517,0.353425,0.681935,0.661917,0.654042,0.697258,0.0572866,0.865312,0.440398,0.605217,0.886117,0.795809,0.0449783,0.285263,0.47686,0.223275,0.999128,0.0626613,0.0930402,0.500185,0.846766,0.448821,0.389659,0.425855,0.256878,0.0874193,0.626012,0.223968,0.306779,0.583006,0.567445,0.519913,0.066202,0.782415,0.560044,0.25368,0.390029,0.593045,0.0335169,0.202179,0.100038,0.0505365,0.703373,0.17868,0.786916,0.647764,0.296733,0.206353,0.92191,0.431004,0.689441,0.126066,0.565308,0.215807,0.339724,0.64295,0.295848,0.671655,0.622023,0.213877,0.205611,0.847208,0.137109,0.391265,0.198233,0.0481972,0.174918,0.949041,0.52043,0.350011,0.213994,0.423163,0.835399,0.781745,0.549084,0.438982,0.900149,0.31457,0.975481,0.864269,0.86061,0.743256,0.433475,0.636259,0.0219013,0.227171,0.932778,0.981334,0.117025,0.599048,0.000199556,0.367603,0.68026,0.531273,0.504726,0.265087,0.374257,0.491402,0.0254169,0.628467,0.785798,0.457384,0.790316,0.544341,0.853855,0.250691,0.442697,0.485607,0.277429,0.608961,0.945981,0.488219,0.658407,0.528882,0.235523,0.111265,0.371431,0.0710766,0.939488,0.0345153,0.136972,0.345903,0.6893,0.585027,0.111774,0.109947,0.416998,0.481906,0.964644,0.861684,0.651698,0.534267,0.361748,0.910279,0.209422,0.231749,0.703298,0.340521,0.653271,0.255186,0.976831,0.747896,0.518593,0.019814,0.6434,0.332401,0.717724,0.246122,0.106494,0.199194,0.613479,0.447446,0.00845766,0.0225243,0.52278,0.948422,0.925254,0.877198,0.852765,0.232669,0.743599,0.203849,0.920156,0.0993317,0.315495,0.609108,0.799459,0.375172,0.259275,0.169138,0.31368,0.437929,0.673497,0.249744,0.0732585,0.386622,0.0647827,0.644609,0.35978,0.351266,0.884396,0.326519,0.344289,0.447135,0.637143,0.749782,0.30127,0.676798,0.231895,0.41671,0.792283,0.416056,0.107063,0.599581,0.344446,0.416187,0.405024,0.199439,0.587974,0.821764,0.508071,0.346781,0.505283,0.216322,0.129905,0.175009,0.727894,0.704979,0.879938,0.399951,0.386454,0.782613,0.11958,0.49636,0.406974,0.291722,0.109479,0.0372666,0.732377,0.511215,0.709051,0.566791,0.998626,0.160439,0.648471,0.132041,0.888599,0.265306,0.33945,0.782521,0.261962,0.69324,0.507802,0.99709,0.335719,0.715909,0.790432,0.541325,0.514638,0.96356,0.793708,0.191296,0.603535,0.424938,0.292507,0.23342,0.228294,0.886962,0.857619,0.0534908,0.48354,0.329422,0.752469,0.583673,|0.620207,0.571713,0.289696,0.635446,0.958721,0.837026,0.862733,0.189396,0.918191,0.0236682,0.337078,0.245933,0.654241,0.625232,0.200569,0.329206,0.406879,0.148995,0.264456,0.135377,0.0984286,0.628007,0.535518,0.396861,0.537949,0.92918,0.675379,0.923103,0.194667,0.773664,0.218285,0.975582,0.382668,0.821985,0.737983,0.854128,0.0562019,0.677626,0.955326,0.41491,0.643903,0.770975,0.180668,0.145483,0.777623,0.146314,0.030713,0.918798,0.90672,0.36971,0.716577,0.624053,0.24095,0.539036,0.715956,0.0493877,0.472869,0.58767,0.902842,0.0974867,0.584237,0.773155,0.433404,0.107202,0.160846,0.211596,0.787061,0.451073,0.128515,0.0742565,0.354581,0.673293,0.33166,0.859759,0.468145,0.0153348,0.331266,0.666462,0.207848,0.343592,0.549578,0.782224,0.167996,0.406426,0.328821,0.716819,0.756023,0.775322,0.362653,0.221333,0.905415,0.682642,0.586213,0.310716,0.0839672,0.516749,0.467019,0.988988,0.092829,0.860346,0.433501,0.257907,0.533233,0.0359303,0.115504,0.674199,0.411279,0.502252,0.0754443,0.814853,0.409752,0.0986899,0.943462,0.331149,0.603075,0.54764,0.481422,0.468344,0.828035,0.672265,0.593518,0.695914,0.886127,0.891675,0.220108,0.18022,0.723018,0.202126,0.336277,0.483226,0.250616,0.680618,0.0537357,0.620993,0.786412,0.513024,0.934209,0.514383,0.515717,0.998776,0.0423184,0.668308,0.41257,0.735106,0.977018,0.783831,0.538277,0.354263,0.954724,0.805141,0.879514,0.977806,0.293945,0.611588,0.281207,0.652747,0.0905883,0.87803,0.626343,0.952375,0.0399005,0.940184,0.173026,0.568168,0.461897,0.383518,0.242611,0.242015,0.124008,0.378377,0.432441,0.131325,0.785811,0.66827,0.720272,0.440665,0.554763,0.566648,0.743219,0.31158,0.76035,0.927773,0.769322,0.240591,0.0658907,0.338757,0.380439,0.122698,0.838912,0.169792,0.417767,0.863581,0.579609,0.184999,0.982173,0.181202,0.856013,0.453054,0.463303,0.935083,0.264855,0.179341,0.946478,0.660782,0.596611,0.920758,0.147963,0.495683,0.651113,0.227757,0.544549,0.909056,0.504581,0.0727997,0.37178,0.627234,0.322402,0.570572,0.793172,0.965452,0.811939,0.446201,0.992891,0.959704,0.449297,0.0763551,0.138007,0.685041,0.583814,0.742822,0.746936,0.00472432,0.650642,0.0688426,0.991975,0.590994,0.9318,0.248067,0.516307,0.206357,0.981917,0.509237,0.906536,0.498378,0.88802,0.851052,0.35743,0.302459,0.970034,0.820336,0.420711,0.465264,0.0583398,0.79392,0.75661,0.417878,0.665984,0.380613,0.196679,0.339114,0.492423,0.463409,0.498388,0.734334,0.841917,0.675951,0.61913,0.717708,0.478384,0.945098,0.251146,0.912631,0.602292,0.0844102,0.176653,0.380095,0.0275046,0.365507,0.188897,0.248593,0.0145097,0.716478,0.447233,0.783215,0.768347,0.784389,0.318919,0.210755,0.829495,0.685452,0.0676026,0.0914153,0.907209,0.947749,0.871952,0.41332,0.736829,0.971659,0.09332,0.80585,0.649525,0.421795,0.696495,0.894466,0.841256,0.627078,0.785212,0.0582093,0.286581,0.0760936,0.870402,0.0495708,0.702634,0.918239,0.873317,0.648113,0.944846,0.245378,0.565868,0.430267,0.378116,0.709896,0.932634,0.217179,0.647905,0.331941,0.719119,0.273633,0.767975,0.713425,0.572965,0.957578,0.776517,0.739758,0.489863,0.78385,0.498537,0.292069,0.266548,0.260846,0.845535,0.426435,0.0365385,0.920461,0.514707,0.993128,0.933864,0.569252,0.59566,0.41813,0.095973,0.596707,0.127476,0.732074,0.80226,0.948897,0.761527,0.230956,0.815766,0.992125,0.567653,0.841428,0.470135,0.695004,0.742348,0.947892,0.410438,0.663639,0.89323,0.492435,0.274717,0.461666,0.0126222,0.732962,0.921454,0.715827,0.935906,0.749695,0.450509,0.784862,0.683246,0.356294,0.424564,0.805283,0.387262,0.0272875,0.929491,0.490431,0.316728,0.0197116,0.313664,0.626949,0.552379,0.989268,0.450508,0.658432,0.853765,0.121692,0.0945334,0.639355,0.178825,0.977478,0.238973,0.357145,0.737036,0.450891,0.870351,0.726562,0.42481,0.456524,0.147016,0.826758,0.208944,0.642695,0.72273,0.0170954,0.836054,0.628461,0.700668,0.460563,0.797246,0.270651,0.547424,0.389978,0.640463,0.614625,0.562114,0.131861,0.169065,0.256591,0.274178,0.432609,0.87845,0.801886,0.779667,0.481681,0.789824,0.580511,0.0599486,0.023038,0.178123,0.599965,0.563195,0.11021,0.617875,0.804758,0.978744,0.00973886,0.17458,0.442398,0.861096,0.183617,0.724577,0.718694,0.116279,0.849338,0.717082,0.126237,0.995552,0.146877,0.975574,0.438811,0.60445,0.783879,0.907719,0.290525,0.28723,0.585667,0.868799,0.794735,0.0835031,0.845159,0.284611,0.428375,0.916664,0.603437,0.67749,0.0541335,0.53996,0.910835,0.276321,0.513183,0.962387,0.711866,0.331304,0.0728921,0.436579,0.600369,0.0695443,0.455394,0.895128,0.253783,0.67653,0.275554,0.71961,0.668008,0.304251,0.138738,0.242267,0.721881,0.00403064,0.598811,0.791806,0.0153219,0.264116,0.67953,0.810841,0.117916,0.406776,0.273694,0.864418,0.848223,0.317835,0.735711,0.264375,0.293594,0.461772,0.0243524,0.496306,0.47799,0.820044,0.651551,0.983707,0.523922,0.564512,0.475087,0.51658,0.0644249,0.0787107,0.67211,0.212112,0.654072,0.373291,0.719317,0.922922,0.938319,0.0301236,0.820391,0.430783,0.736704,0.0833325,0.689773,0.541812,0.222907,0.2764,0.285451,0.544193,0.258495,0.408557,0.844127,0.595653,0.257595,0.297783,0.30218,0.623333,0.589419,0.0113307,0.742677,0.322582,0.335026,0.224421,0.756773,0.838976,0.389904,0.972739,0.0807828,0.731332,0.96461,0.890291,0.960966,0.0506784,0.151016,0.0344949,0.980089,0.0267953,0.274817,0.665182,0.58433,0.242642,0.122245,0.279778,0.155657,0.690163,0.0584927,0.459375,0.120904,0.529218,0.856526,0.910466,0.672607,0.993695,0.124445,0.933827,0.0413403,0.323064,0.907843,0.0289922,0.0639945,0.552365,0.766523,0.00996423,0.93488,0.403119,0.19967,0.552913,0.188526,0.266005,0.653939,0.79749,0.740433,0.705774,0.503728,0.315127,0.971752,0.685971,0.486529,0.873573,0.967654,0.0144045,0.305703,0.669427,0.577962,0.866838,0.235965,0.864093,0.433312,0.56342,0.966387,0.7899,0.107415,0.785869,0.804695,0.185007,0.0749221,0.989778,0.0127389,0.160109,0.89469,0.0454386,0.664444,0.119908,0.398933,0.305461,0.97421,0.192696,0.903243,0.737085,0.985721,0.614981,0.84828,0.505849,0.483551,0.703256,0.926564,0.965739,0.2624,0.90396,0.493727,0.963658,0.478557,0.542284,0.611015,0.548393,0.992334,0.987985,0.0657291,0.55671,0.812013,0.270579,0.497161,0.798784,0.0462074,0.95804,0.18429,0.59695,0.629436,0.290434,0.271645,0.990336,0.486722,0.369247,0.116962,0.797844,0.708586,0.558451,0.708925,0.525136,0.660274,0.339565,0.337717,0.609641,0.571027,0.450766,0.21916,0.359843,0.387832,0.0499274,0.607015,0.370789,0.865344,0.302712,0.217083,0.673776,0.0937248,0.0914983,0.788045,0.991197,0.955291,0.193569,0.560934,0.669684,0.0790064,0.334045,0.843945,0.223347,0.733526,0.773201,0.794845,0.860307,0.465917,0.25036,0.140992,0.784342,0.0231083,0.304565,0.850009,0.679337,0.905665,0.685178,0.113024,0.228059,0.0105754,0.151354,0.467686,0.980723,0.983096,0.927202,0.530107,0.283099,0.228009,0.640439,0.299596,0.458498,0.333123,0.264089,0.702205,0.551405,0.93341,0.965792,0.648354,0.74562,0.150774,0.573929,0.659731,0.973892,0.116721,0.531101,0.469577,0.495482,0.468318,0.867567,0.208731,0.80525,0.853987,0.746825,0.67744,0.493229,0.759053,0.804882,0.7154,0.10555,0.493541,0.0171719,0.331525,0.209853,0.503377,0.0912773,0.263305,0.53161,0.556668,0.269517,0.3432,0.503667,0.486463,0.561407,0.281718,0.792642,0.511576,0.257566,0.659859,0.742174,0.177838,0.348323,0.739095,0.4839,0.699976,0.241548,0.638632,0.904087,0.956592,0.940658,0.553211,0.607671,0.949807,0.767565,0.567844,0.327143,0.681521,0.544954,0.584825,0.313408,0.0664927,0.575419,0.55811,0.707118,0.366291,0.185823,0.641538,0.0457629,0.675316,0.335109,0.753938,0.74873,0.212674,0.37817,0.894355,0.472046,0.771279,0.18673,0.463195,0.421962,0.752628,0.877087,0.486685,0.373205,0.502855,0.126118,0.133545,0.986719,0.0763573,0.791683,0.645318,0.280213,0.643706,0.0950152,0.99565,0.704494,0.682624,0.450377,0.468722,0.637886,0.440809,0.505158,0.193462,0.958642,0.458898,0.109817,0.734441,0.116847,0.876319,0.201197,0.945144,0.421143,0.681013,0.58002,0.320052,0.887055,0.469544,0.851773,0.192969,0.294313,0.0605479,0.504678,0.463815,0.538903,0.409117,0.842738,0.519572,0.932803,0.348245,0.0370688,0.666053,0.801321,0.496273,0.159111,0.954636,0.490888,0.289979,0.900834,0.5903,0.558758,0.888381,0.584142,0.710855,0.800754,0.041333,0.807778,0.799894,0.0686389,0.0436178,0.334758,0.812007,0.893889,0.962171,0.283371,0.485773,0.262391,0.989067,0.917903,0.807878,0.668904,0.537268,0.70197,0.388429,0.387403,0.982773,0.689843,0.675952,0.530418,0.552311,0.719682,0.041267,0.185888,0.651906,0.728494,0.773448,0.253912,0.769555,0.98651,0.728153,0.733041,0.978673,0.0248153,0.387594,0.150327,0.702344,0.219581,0.686852,0.918099,0.307346,0.661087,0.546656,0.331651,0.11203,0.727704,0.99867,0.772983,0.0524199,0.61023,0.0969688,0.294149,0.34397,0.00999141,0.111214,0.384948,0.487281,0.781422,0.00384992,0.0247088,0.129159,0.136819,0.37287,0.203225,0.296523,0.740816,0.297826,0.370835,0.922094,0.764854,0.305014,0.997059,0.478806,0.0114819,0.0817276,0.403216,0.708173,0.672476,0.708523,0.627238,0.49999,0.252925,0.103552,0.628775,0.95903,0.283881,0.650427,0.466416,0.552257,0.884163,0.891137,0.112062,0.953962,0.136793,0.919035,0.933252,0.345917,0.760448,0.94013,0.764007,0.742999,|0.345074,0.259364,0.893161,0.043873,0.122324,0.0769973,0.591355,0.994938,0.0617936,0.183674,0.33034,0.223093,0.375864,0.0855146,0.610512,0.0960509,0.763171,0.358924,0.0442354,0.816918,0.464663,0.784138,0.301713,0.0639439,0.590036,0.453036,0.285956,0.305055,0.320249,0.0517657,0.943701,0.180276,0.235242,0.813836,0.684466,0.818708,0.921019,0.830137,0.614771,0.667129,0.201193,0.146284,0.369256,0.311623,0.16598,0.312818,0.958657,0.677543,0.136793,0.835214,0.812873,0.991305,0.65388,0.845754,0.63803,0.209117,0.958355,0.336264,0.69561,0.206427,0.977376,0.0391517,0.376848,0.955484,0.119563,0.456544,0.752722,0.882106,0.89669,0.846677,0.349805,0.290204,0.308939,0.520724,0.496014,0.950237,0.156301,0.652331,0.463038,0.575173,0.476682,0.363031,0.611116,0.84117,0.680265,0.529428,0.0291678,0.141399,0.349571,0.748636,0.644901,0.786398,0.98746,0.571227,0.241983,0.540663,0.767257,0.502764,0.53424,0.931685,0.691264,0.420959,0.351439,0.146629,0.892885,0.639934,0.522903,0.590378,0.20795,0.165562,0.76851,0.0648361,0.0771844,0.077305,0.0705688,0.0955673,0.162032,0.607466,0.97597,0.50886,0.48538,0.398233,0.375048,0.684683,0.61093,0.632655,0.118105,0.722816,0.957549,0.887148,0.997209,0.299205,0.600658,0.360751,0.257874,0.570713,0.946201,0.39855,0.150862,0.39616,0.707615,0.658569,0.0519401,0.954836,0.937969,0.466187,0.633111,0.114182,0.618572,0.704127,0.895752,0.598445,0.296475,0.933735,0.881111,0.307384,0.828476,0.159841,0.763026,0.89061,0.425732,0.197293,0.324863,0.855489,0.500176,0.18569,0.0747332,0.393339,0.606106,0.460581,0.505903,0.971038,0.396116,0.389567,0.636419,0.94003,0.283299,0.483403,0.643839,0.792217,0.670785,0.149786,0.0195942,0.774936,0.699111,0.643572,0.38873,0.871395,0.874924,0.20875,0.14601,0.874008,0.599552,0.290827,0.912953,0.579947,0.776278,0.71231,0.340758,0.217728,0.412826,0.366745,0.916702,0.936292,0.623733,0.891892,0.756521,0.562819,0.982732,0.848858,0.220872,0.701938,0.145392,0.959613,0.0503055,0.54223,0.355327,0.394891,0.517966,0.298435,0.997694,0.754068,0.255612,0.816682,0.106371,0.580275,0.384813,0.257892,0.485458,0.598782,0.13143,0.202889,0.796749,0.0527757,0.924015,0.872402,0.543025,0.257779,0.892235,0.586576,0.157772,0.156314,0.366263,0.85472,0.634101,0.0438913,0.00317502,0.978379,0.849314,0.467338,0.398678,0.644788,0.595363,0.104011,0.779414,0.712574,0.0791211,0.6572,0.813281,0.612159,0.517532,0.112404,0.582475,0.038519,0.688124,0.409941,0.528241,0.637684,0.895249,0.0984416,0.588191,0.998,0.171941,0.20161,0.114131,0.577196,0.473793,0.536492,0.0660182,0.956767,0.225062,0.552818,0.89607,0.906108,0.0123538,0.412003,0.596441,0.646138,0.89082,0.975806,0.458563,0.753733,0.725661,0.937474,0.190894,0.728974,0.989437,0.507879,0.590856,0.375162,0.232717,0.442082,0.365216,0.0765492,0.410065,0.711151,0.599334,0.623047,0.439085,0.172051,0.0334978,0.773968,0.00477409,0.494816,0.896009,0.285516,0.759955,0.0839594,0.437213,0.0635669,0.108258,0.0580999,0.0271477,0.82892,0.865965,0.217984,0.428782,0.662881,0.338476,0.999378,0.17082,0.760488,0.807356,0.447368,0.976843,0.693509,0.145086,0.0786937,0.562184,0.107038,0.528224,0.0732391,0.539279,0.139335,0.798102,0.963664,0.701702,0.490471,0.147924,0.632053,0.392235,0.713638,0.423925,0.728718,0.8591,0.80863,0.916231,0.961315,0.241031,0.370458,0.757517,0.660325,0.53041,0.524608,0.175898,0.505533,0.373789,0.0203915,0.738952,0.285475,0.317953,0.279569,0.235219,0.0215054,0.874668,0.0781711,0.3546,0.657999,0.194123,0.519134,0.59361,0.442758,0.909981,0.756739,0.89523,0.333342,0.705548,0.774433,0.286422,0.191413,0.930094,0.9165,0.432297,0.198134,0.733976,0.288271,0.257492,0.697594,0.244748,0.0701153,0.712821,0.595498,0.958149,0.965953,0.484133,0.906053,0.910655,0.948498,0.0772092,0.411616,0.194344,0.96473,0.169955,0.141903,0.124322,0.909388,0.618778,0.920723,0.734796,0.277045,0.949684,0.473845,0.684699,0.815105,0.643236,0.407019,0.352954,0.750196,0.80995,0.695072,0.163309,0.220059,0.281548,0.0602877,0.90975,0.0208358,0.606093,0.115747,0.67419,0.199003,0.822457,0.704163,0.591079,0.783705,0.981497,0.221314,0.572042,0.903445,0.00366497,0.25993,0.803817,0.149708,0.87011,0.013233,0.619643,0.586482,0.230165,0.0617822,0.091282,0.310043,0.246672,0.0470513,0.462481,0.829518,0.849629,0.515748,0.436575,0.38047,0.308503,0.565575,0.675068,0.439511,0.992015,0.360627,0.752363,0.775131,0.115587,0.617835,0.354467,0.221717,0.240763,0.507725,0.41862,0.113725,0.230726,0.194876,0.0668167,0.729802,0.490842,0.0404582,0.278801,0.250763,0.264355,0.698122,0.577133,0.980218,0.91208,0.350532,0.613179,0.831387,0.44159,0.110998,0.400058,0.957893,0.889819,0.857758,0.420012,0.0575604,0.627732,0.484242,0.0883719,0.156593,0.740226,0.0975533,0.919386,0.0874289,0.484632,0.514002,0.865349,0.252347,0.717173,0.333316,0.69244,0.927265,0.184792,0.157614,0.538367,0.672415,0.759052,0.455073,0.594951,0.700925,0.346345,0.223852,0.0301336,0.264051,0.00405914,0.138146,0.0717835,0.898966,0.849789,0.239186,0.495134,0.69773,0.551385,0.485625,0.574554,0.608919,0.179133,0.584975,0.569584,0.639712,0.800744,0.642476,0.5641,0.739317,0.915895,0.249953,0.328031,0.878887,0.421262,0.115663,0.281292,0.154854,0.231387,0.902301,0.360762,0.873529,0.0414819,0.787099,0.792106,0.0192639,0.663594,0.591292,0.681741,0.634929,0.358511,0.449361,0.0575113,0.825701,0.73173,0.186906,0.312132,0.464661,0.618077,0.343225,0.149061,0.318168,0.702182,0.10714,0.568778,0.324883,0.731179,0.157409,0.315246,0.0213431,0.839214,0.224886,0.610138,0.220061,0.277291,0.323954,0.633519,0.462414,0.73565,0.985346,0.173287,0.330421,0.785132,0.467597,0.88313,0.933845,0.0387228,0.885526,0.134392,0.233974,0.420088,0.382939,0.523456,0.641583,0.916625,0.311333,0.577944,0.877648,0.428171,0.613118,0.649793,0.378156,0.629856,0.575089,0.128202,0.63084,0.759618,0.0108086,0.969512,0.773529,0.408886,0.0352551,0.953213,0.369605,0.427975,0.248051,0.809025,0.779728,0.860689,0.497313,0.804416,0.907916,0.201558,0.794071,0.445846,0.888881,0.564088,0.592935,0.00512928,0.81773,0.562105,0.221589,0.773522,0.551258,0.158807,0.17591,0.869116,0.390406,0.712321,0.207908,0.675241,0.383672,0.0655751,0.869426,0.874278,0.501252,0.699486,0.983021,0.0568118,0.689222,0.317484,0.892303,0.00132656,0.651646,0.603711,0.798162,0.610708,0.599528,0.786449,0.859563,0.170534,0.175163,0.582018,0.502798,0.398447,0.113043,0.134757,0.868553,0.264707,0.45255,0.429712,0.467695,0.366612,0.29955,0.475629,0.750679,0.435864,0.517281,0.499658,0.235378,0.444512,0.74129,0.957041,0.666592,0.553381,0.373412,0.918587,0.536308,0.959341,0.926203,0.453811,0.468743,0.235819,0.527826,0.929323,0.923582,0.266029,0.91076,0.24232,0.0341722,0.224436,0.407894,0.79244,0.575696,0.864537,0.0248587,0.549936,0.546683,0.172556,0.582653,0.0489265,0.592637,0.300571,0.590358,0.697413,0.358816,0.204034,0.137327,0.9252,0.515159,0.469305,0.55511,0.764335,0.991023,0.186543,0.553843,0.967668,0.134845,0.509927,0.810533,0.371925,0.021146,0.314839,0.400864,0.0296019,0.77609,0.675731,0.36517,0.950664,0.529007,0.817965,0.0575239,0.851257,0.711911,0.558937,0.819226,0.493231,0.159822,0.939527,0.247142,0.195016,0.123234,0.79191,0.0371264,0.917752,0.37521,0.556362,0.941455,0.0360947,0.647348,0.0286247,0.0999157,0.484328,0.689023,0.893695,0.349549,0.941515,0.770076,0.854739,0.967725,0.299247,0.932293,0.857778,0.670222,0.736544,0.893999,0.612108,0.272605,0.0490599,0.195301,0.318207,0.743049,0.160126,0.979946,0.683549,0.389054,0.683931,0.0390771,0.971208,0.103979,0.956681,0.592547,0.196453,0.811445,0.0286173,0.749689,0.927879,0.206325,0.72229,0.438456,0.588718,0.221786,0.619481,0.454454,0.0806251,0.709532,0.532046,0.814012,0.129162,0.0710794,0.299263,0.468072,0.0265117,0.915642,0.00128186,0.625726,0.536007,0.544692,0.735209,0.791115,0.901723,0.147204,0.381996,0.309699,0.372464,0.707034,0.102402,0.678927,0.449568,0.0132183,0.24763,0.722277,0.407488,0.561644,0.310122,0.951393,0.853376,0.0248323,0.684618,0.249155,0.745253,0.381188,0.166053,0.251502,0.373291,0.74096,0.0352443,0.801607,0.544905,0.225681,0.918784,0.357817,0.067118,0.638595,0.923474,0.463208,0.867043,0.443925,0.372812,0.954501,0.797637,0.815307,0.457125,0.933346,0.307916,0.74624,0.3246,0.875001,0.386701,0.646416,0.70857,0.898264,0.831653,0.187289,0.304777,0.828927,0.841822,0.0626099,0.615388,0.323419,0.383907,0.295126,0.981681,0.348323,0.887984,0.577599,0.279226,0.360798,0.219322,0.415555,0.625423,0.647715,0.506125,0.889038,0.852236,0.527376,0.844439,0.713143,0.959406,0.000655711,0.709547,0.538899,0.961948,0.618637,0.508696,0.238226,0.678423,0.516458,0.597376,0.322185,0.158833,0.667865,0.4279,0.666324,0.508011,0.554193,0.148537,0.890383,0.808786,0.361114,0.649415,0.99707,0.433153,0.0185157,0.157734,0.0959636,0.352932,0.915768,0.894207,0.318517,0.112046,0.233214,0.654277,0.487118,0.775157,0.681181,0.63415,0.430745,0.744194,0.739993,0.712773,0.136384,0.171924,0.429319,0.249944,0.0533209,0.614631,0.681534,0.109336,0.804197,0.979633,0.964794,0.0358158,0.839783,0.369671,0.732443,0.656769,0.649666,0.755397,0.439141,0.510498,0.744835,0.750279,0.825398,0.771557,0.0241949,0.771527,0.445617,0.614248,0.286182,0.182669,0.929348,0.454916,0.126165,|0.69053,0.403197,0.630185,0.316636,0.317551,0.314096,0.957536,0.534856,0.487306,0.848873,0.724733,0.366316,0.165515,0.129716,0.288298,0.772551,0.334424,0.283165,0.894083,0.684519,0.882273,0.896439,0.532173,0.58249,0.174733,0.731271,0.848673,0.538486,0.385797,0.605656,0.59023,0.332136,0.343312,0.221941,0.692969,0.225311,0.0502549,0.614539,0.341608,0.681829,0.255488,0.226839,0.509088,0.618325,0.220243,0.409953,0.786219,0.0831476,0.636218,0.050896,0.520119,0.734746,0.55109,0.980524,0.843444,0.334031,0.446158,0.322374,0.207936,0.294901,0.855593,0.116635,0.313735,0.816265,0.185274,0.0858684,0.0215167,0.778514,0.0045718,0.61237,0.884492,0.942169,0.654342,0.186402,0.254845,0.62174,0.152219,0.958827,0.339972,0.0308286,0.979833,0.589343,0.971717,0.908533,0.716363,0.155622,0.529321,0.64407,0.811902,0.812851,0.992541,0.0654176,0.285678,0.269932,0.984308,0.264626,0.505945,0.358633,0.54695,0.118336,0.453826,0.0383925,0.200334,0.432309,0.132967,0.650743,0.178399,0.658151,0.576004,0.491254,0.789772,0.595811,0.589087,0.105788,0.301126,0.305223,0.0509644,0.22859,0.944466,0.53172,0.438148,0.412272,0.70663,0.135111,0.558387,0.431012,0.395029,0.433028,0.961293,0.680144,0.0762642,0.476687,0.896527,0.943273,0.735717,0.541346,0.832447,0.526219,0.281873,0.451094,0.892128,0.407238,0.468405,0.482905,0.551718,0.0319682,0.329601,0.280816,0.589035,0.337713,0.913251,0.0214066,0.716585,0.758621,0.0553863,0.777784,0.64691,0.597169,0.500831,0.70578,0.582252,0.0198109,0.403347,0.960877,0.87752,0.495984,0.433036,0.539222,0.483363,0.557556,0.980146,0.78659,0.194711,0.746065,0.507036,0.0783019,0.00832862,0.0189037,0.873629,0.506862,0.167053,0.22405,0.140451,0.629694,0.173805,0.552904,0.85033,0.475229,0.844037,0.231109,0.230624,0.99654,0.818941,0.128422,0.678037,0.179013,0.552194,0.78257,0.47254,0.875032,0.18027,0.157911,0.997618,0.784358,0.748318,0.374043,0.515681,0.0513765,0.123179,0.00706035,0.10981,0.114423,0.975769,0.251432,0.821083,0.238691,0.733593,0.195556,0.812688,0.218159,0.688715,0.385899,0.138404,0.848467,0.695438,0.188548,0.59858,0.985041,0.632371,0.260835,0.963019,0.375853,0.971521,0.270664,0.595259,0.922109,0.863946,0.558859,0.685047,0.664067,0.537127,0.788244,0.848106,0.522894,0.717706,0.846712,0.277269,0.840445,0.0427393,0.897334,0.555225,0.136191,0.420431,0.526694,0.444412,0.198886,0.806749,0.818538,0.515796,0.160639,0.812244,0.156395,0.546754,0.876633,0.26665,0.652144,0.2249,0.00762689,0.747031,0.696787,0.0761359,0.784726,0.707794,0.404459,0.811892,0.00707525,0.390943,0.500027,0.237924,0.932979,0.0959406,0.899974,0.434209,0.433486,0.0611554,0.629366,0.970193,0.304754,0.774864,0.791042,0.0109938,0.188486,0.754201,0.356919,0.562989,0.0677291,0.465045,0.762664,0.139821,0.242377,0.530846,0.047454,0.975061,0.101113,0.713791,0.818171,0.0592584,0.828465,0.209876,0.985217,0.758524,0.578834,0.21079,0.809981,0.517732,0.313285,0.629471,0.891353,0.217504,0.457388,0.239811,0.632871,0.153024,0.279615,0.380171,0.214276,0.584387,0.784753,0.267363,0.49643,0.894168,0.923206,0.824909,0.707165,0.894383,0.0646729,0.265153,0.669307,0.708907,0.300215,0.297683,0.562916,0.589165,0.669564,0.125007,0.905247,0.578536,0.0957763,0.389997,0.508412,0.654935,0.674966,0.367678,0.283774,0.587465,0.277356,0.791067,0.58384,0.265754,0.412248,0.60788,0.975677,0.353715,0.243093,0.609705,0.360994,0.8627,0.517158,0.347743,0.499564,0.21811,0.198165,0.0450536,0.132632,0.141423,0.87306,0.851062,0.331321,0.149235,0.101636,0.543514,0.434935,0.12351,0.939571,0.00163162,0.25714,0.520065,0.76286,0.783245,0.960265,0.260566,0.203088,0.169729,0.826576,0.502925,0.0279331,0.267951,0.214693,0.377624,0.078316,0.77714,0.712122,0.324115,0.969784,0.833408,0.511707,0.720641,0.288228,0.147742,0.581666,0.620974,0.500574,0.595577,0.530704,0.360185,0.608369,0.566171,0.556183,0.69648,0.340165,0.910644,0.540977,0.00190037,0.27544,0.765566,0.791025,0.928613,0.849673,0.271308,0.644315,0.855797,0.598931,0.927982,0.773119,0.554076,0.446137,0.781233,0.164453,0.869793,0.956738,0.430071,0.523209,0.356369,0.14728,0.957214,0.996594,0.84828,0.00300819,0.230984,0.0317109,0.703703,0.425622,0.831697,0.571318,0.665473,0.276263,0.209996,0.930292,0.185195,0.917985,0.576626,0.0727623,0.356421,0.672931,0.00202209,0.943753,0.895046,0.491123,0.449325,0.794819,0.310709,0.945636,0.534543,0.413525,0.213839,0.958524,0.241187,0.288888,0.87991,0.436228,0.990429,0.200404,0.440437,0.492606,0.889077,0.0876286,0.583892,0.40006,0.251443,0.338654,0.655021,0.379301,0.245845,0.593781,0.486184,0.670809,0.64194,0.538688,0.137499,0.190592,0.0649495,0.915004,0.358672,0.873449,0.596539,0.518761,0.510661,0.703425,0.766686,0.400722,0.242212,0.716409,0.262487,0.12045,0.159911,0.656639,0.0304956,0.553819,0.946581,0.523805,0.639487,0.0425972,0.415191,0.942874,0.295442,0.447744,0.384141,0.580999,0.0775236,0.647584,0.70518,0.871318,0.965128,0.751705,0.889002,0.604806,0.219087,0.421103,0.15973,0.512889,0.874337,0.447005,0.137177,0.96669,0.830567,0.37711,0.0886714,0.842325,0.42458,0.826647,0.817191,0.703754,0.596313,0.596241,0.944283,0.780121,0.740207,0.156452,0.531294,0.1423,0.433357,0.181189,0.915893,0.959999,0.595883,0.3981,0.100037,0.117233,0.714935,0.0924121,0.918738,0.113197,0.941131,0.0768312,0.854552,0.74537,0.511898,0.503126,0.538553,0.97217,0.516205,0.162891,0.963843,0.285288,0.0174873,0.0623952,0.623916,0.462065,0.178183,0.822905,0.811683,0.294255,0.262094,0.432406,0.261324,0.95475,0.469711,0.332486,0.446063,0.159283,0.0324117,0.643241,0.875522,0.389583,0.0613906,0.902833,0.432243,0.595995,0.0664411,0.192921,0.0742641,0.324943,0.576572,0.278629,0.185207,0.777957,0.678549,0.953935,0.0391857,0.356352,0.140413,0.423021,0.228833,0.197402,0.342021,0.807257,0.860908,0.838982,0.347554,0.798962,0.269947,0.133788,0.258794,0.687657,0.165202,0.748719,0.102028,0.020265,0.0759367,0.754817,0.982018,0.133024,0.0415459,0.694438,0.496272,0.730653,0.194116,0.0852872,0.857694,0.598064,0.760053,0.735653,0.986096,0.0550577,0.137265,0.916129,0.223941,0.78824,0.899938,0.430896,0.459875,0.413772,0.896329,0.415313,0.0568902,0.346619,0.879903,0.878664,0.810906,0.354539,0.71162,0.0185192,0.677154,0.615161,0.887781,0.971674,0.744416,0.384088,0.135539,0.510938,0.393119,0.347043,0.0630276,0.170834,0.0973646,0.52345,0.805335,0.396688,0.551421,0.650672,0.281385,0.315006,0.654701,0.598898,0.133857,0.193177,0.436156,0.11292,0.720897,0.314903,0.587663,0.616334,0.536929,0.909911,0.927909,0.394486,0.462556,0.91762,0.1114,0.6028,0.239156,0.279403,0.928936,0.269738,0.915009,0.151628,0.247471,0.601639,0.436637,0.173114,0.742275,0.401098,0.205976,0.720399,0.793845,0.781269,0.897744,0.313646,0.448954,0.0875812,0.844831,0.585119,0.406432,0.412454,0.658948,0.764204,0.912617,0.913596,0.324866,0.593463,0.211638,0.111255,0.541142,0.40499,0.871507,0.969511,0.417657,0.743535,0.170706,0.598668,0.549379,0.708229,0.631661,0.26618,0.742121,0.88697,0.0249016,0.300325,0.730947,0.873904,0.374031,0.713656,0.20834,0.54941,0.968904,0.862181,0.766605,0.91387,0.977996,0.743471,0.99701,0.42011,0.389863,0.0276425,0.51591,0.203001,0.242236,0.246345,0.318442,0.0956739,0.702516,0.310649,0.671489,0.235175,0.449957,0.403612,0.738511,0.639208,0.235011,0.274023,0.821253,0.0990893,0.216079,0.537961,0.903887,0.804722,0.324724,0.7727,0.109377,0.655055,0.762415,0.282639,0.974088,0.818217,0.558149,0.97187,0.725293,0.354058,0.54349,0.0284394,0.938931,0.263602,0.86732,0.104251,0.672362,0.259206,0.38294,0.609153,0.223047,0.923102,0.685797,0.502788,0.579423,0.175201,0.943011,0.652849,0.287129,0.0223572,0.354036,0.974048,0.416182,0.916592,0.902401,0.855327,0.0489337,0.229112,0.748813,0.218359,0.744344,0.432219,0.125747,0.0752572,0.216944,0.469587,0.38022,0.797657,0.3476,0.415078,0.769909,0.770325,0.9236,0.683443,0.808029,0.736661,0.881801,0.237806,0.228869,0.963558,0.456271,0.286857,0.284951,0.73422,0.122938,0.614691,0.899228,0.87941,0.85788,0.463176,0.22342,0.274244,0.309893,0.333419,0.606487,0.70347,0.978508,0.770841,0.994599,0.77699,0.778845,0.778994,0.790176,0.422643,0.546102,0.33849,0.407646,0.0924032,0.197058,0.202788,0.497766,0.65112,0.592827,0.605018,0.801753,0.260451,0.495637,0.998997,0.753744,0.330952,0.333533,0.149347,0.308984,0.780667,0.255136,0.898065,0.214668,0.315834,0.743712,0.388399,0.922739,0.292644,0.352855,0.0393366,0.155782,0.00144804,0.882165,0.695765,0.53363,0.835585,0.4413,0.551068,0.0836901,0.220722,0.137559,0.179772,0.0989801,0.861232,0.815279,0.626023,0.164495,0.210298,0.998341,0.586534,0.0416462,0.00684881,0.425179,0.657087,0.224871,0.0476049,0.800476,0.316995,0.105277,0.991383,0.481509,0.546061,0.448218,0.597828,0.759325,0.515876,0.678735,0.548206,0.235822,0.501412,0.112335,0.799339,0.48024,0.0128875,0.772428,0.0245814,0.936744,0.824171,0.150583,0.849231,0.175462,0.573859,0.447937,0.7255,0.286691,0.470639,0.38124,0.138406,0.587135,0.956132,0.908683,0.154245,0.154218,0.318989,0.65218,0.223833,0.171923,0.250361,0.0506907,0.565794,0.557974,0.351426,0.518956,0.412705,0.94151,0.694163,0.516427,0.176703,0.279279,0.559753,0.938011,0.856136,0.033126,0.96958,0.448046,0.776837,0.558779,0.703138,|0.677926,0.221518,0.530962,0.154095,0.576773,0.179544,0.179278,0.440579,0.651929,0.588794,0.906208,0.813111,0.549561,0.675878,0.477306,0.437228,0.30725,0.222402,0.847654,0.0904294,0.582986,0.803325,0.8941,0.0814688,0.506233,0.694921,0.494148,0.346293,0.298121,0.633398,0.807172,0.174897,0.0715322,0.640893,0.00510573,0.732667,0.801727,0.261733,0.283757,0.643653,0.849741,0.716457,0.981965,0.207483,0.180345,0.747309,0.42576,0.778132,0.814332,0.998245,0.511985,0.0301806,0.660813,0.51085,0.15114,0.531417,0.0112324,0.133439,0.771547,0.398406,0.359014,0.407037,0.146176,0.385734,0.529797,0.51859,0.116629,0.597016,0.464274,0.953404,0.280259,0.616816,0.467724,0.687195,0.455852,0.882142,0.828539,0.973679,0.510325,0.491106,0.939877,0.413073,0.253612,0.205037,0.773036,0.0203396,0.150012,0.0403656,0.80665,0.441669,0.24867,0.496465,0.650497,0.280666,0.313534,0.734916,0.0377052,0.910426,0.0402895,0.606956,0.718835,0.847151,0.564685,0.705867,0.508144,0.605526,0.204889,0.978374,0.135347,0.533856,0.125938,0.459064,0.176117,0.8193,0.963595,0.305415,0.234558,0.124624,0.647801,0.228147,0.362007,0.923687,0.143888,0.160319,0.83339,0.602367,0.0970797,0.283645,0.223511,0.646472,0.927165,0.21449,0.620585,0.085005,0.0090239,0.625956,0.569915,0.877066,0.262417,0.0353191,0.920318,0.152113,0.840232,0.538416,0.00760788,0.521403,0.85525,0.312321,0.419879,0.178754,0.154194,0.876464,0.122412,0.19255,0.517225,0.0993593,0.342533,0.995201,0.920477,0.601417,0.838816,0.0340951,0.060288,0.66978,0.756747,0.985735,0.244899,0.201535,0.223423,0.997859,0.301941,0.381657,0.231673,0.75903,0.00312108,0.0586014,0.65642,0.12096,0.265362,0.954539,0.216947,0.30128,0.98282,0.15055,0.893747,0.347392,0.127645,0.381497,0.708366,0.607252,0.712586,0.708165,0.324862,0.2669,0.900648,0.412377,0.835954,0.0376878,0.819875,0.0357368,0.150494,0.626136,0.211143,0.638865,0.273477,0.743447,0.20171,0.465627,0.678946,0.682983,0.770455,0.348216,0.347992,0.704191,0.383018,0.651037,0.536902,0.321211,0.639034,0.615744,0.797208,0.351497,0.569931,0.485649,0.0125911,0.112957,0.389033,0.351389,0.0598723,0.808778,0.708465,0.132207,0.723252,0.653348,0.766087,0.841611,0.719,0.892419,0.771345,0.466484,0.459814,0.78508,0.171354,0.711172,0.441989,0.311125,0.341029,0.0214929,0.698145,0.56987,0.912839,0.119822,0.396646,0.158784,0.189099,0.872169,0.872895,0.340734,0.452765,0.282251,0.0896107,0.89975,0.398233,0.253929,0.16192,0.0466659,0.460591,0.148244,0.693204,0.57534,0.0874992,0.937911,0.32757,0.593023,0.113046,0.712171,0.3522,0.364475,0.633489,0.337974,0.990096,0.694419,0.224956,0.85794,0.742966,0.907314,0.713779,0.871755,0.508176,0.308792,0.100196,0.42814,0.903233,0.264014,0.46391,0.0589409,0.61216,0.0977829,0.640755,0.497608,0.946977,0.990141,0.515906,0.938839,0.868415,0.189993,0.700584,0.397516,0.839074,0.933895,0.389073,0.72448,0.767487,0.605782,0.0399328,0.0370215,0.797073,0.510616,0.251277,0.332041,0.956059,0.113404,0.0529212,0.114592,0.413618,0.778009,0.70088,0.527205,0.333575,0.462565,0.426002,0.543249,0.902843,0.181329,0.316956,0.42904,0.452353,0.368358,0.297535,0.245223,0.826376,0.526001,0.328829,0.0143034,0.498739,0.299045,0.387572,0.935559,0.250893,0.197026,0.299239,0.293695,0.655169,0.0652761,0.433729,0.414975,0.145081,0.90611,0.507134,0.151761,0.742689,0.721723,0.660544,0.0797915,0.00566685,0.75207,0.0429034,0.895518,0.058499,0.154779,0.585129,0.883641,0.651598,0.703716,0.508954,0.485682,0.466577,0.293223,0.861619,0.978892,0.405705,0.549673,0.0174591,0.13694,0.884636,0.404045,0.311091,0.256422,0.420308,0.0148816,0.517474,0.145036,0.146789,0.329001,0.152511,0.723032,0.599721,0.840591,0.0796609,0.588557,0.688488,0.392568,0.987302,0.97878,0.268943,0.421843,0.0566965,0.879724,0.233417,0.600318,0.534298,0.0275208,0.497035,0.429957,0.901553,0.302075,0.398837,0.611855,0.758772,0.868547,0.799375,0.0570109,0.65828,0.830245,0.506515,0.788465,0.693458,0.918219,0.00887758,0.393468,0.831256,0.168236,0.58323,0.0974765,0.143959,0.385543,0.275947,0.432934,0.701593,0.985509,0.466933,0.951433,0.343468,0.397459,0.265161,0.206185,0.359802,0.560829,0.0566825,0.33894,0.115048,0.727752,0.455228,0.973376,0.15838,0.974599,0.88169,0.0542083,0.805767,0.00922406,0.38582,0.857019,0.0431862,0.820481,0.0096826,0.451353,0.741133,0.725536,0.260051,0.371231,0.998758,0.527655,0.700215,0.231771,0.509825,0.204218,0.666796,0.1775,0.757127,0.608614,0.219206,0.79227,0.256172,0.376626,0.898808,0.938299,0.911694,0.317132,0.148582,0.0968213,0.132881,0.188992,0.261229,0.599114,0.73646,0.10674,0.34926,0.6359,0.70899,0.477179,0.874033,0.73465,0.533246,0.319459,0.551915,0.3105,0.884988,0.524276,0.351459,0.581564,0.376929,0.106875,0.570017,0.171651,0.428065,0.00663382,0.0937811,0.582783,0.284758,0.15347,0.969733,0.904588,0.169546,0.885019,0.949003,0.739914,0.755548,0.455166,0.434635,0.358107,0.4687,0.796428,0.686553,0.656032,0.0292198,0.658606,0.586326,0.338852,0.134905,0.494368,0.97209,0.47634,0.964392,0.132578,0.101374,0.0642681,0.70294,0.936263,0.543749,0.241228,0.912151,0.146741,0.684342,0.231123,0.982754,0.156089,0.344028,0.119957,0.343171,0.657124,0.609466,0.0896789,0.932926,0.524111,0.0080201,0.916981,0.873778,0.0163916,0.604062,0.551068,0.221848,0.566839,0.177443,0.893673,0.380007,0.228452,0.679142,0.941418,0.234635,0.0038479,0.292751,0.684203,0.241472,0.735392,0.191986,0.431321,0.95032,0.656239,0.142327,0.77253,0.308721,0.53244,0.26973,0.651552,0.0841878,0.528273,0.658441,0.212249,0.0880758,0.733921,0.433652,0.384961,0.260815,0.755415,0.678993,0.489824,0.850595,0.630909,0.800841,0.738084,0.229841,0.395179,0.971102,0.305171,0.677126,0.0665724,0.301146,0.392368,0.287244,0.0173078,0.97621,0.262177,0.322689,0.963717,0.814312,0.435636,0.826238,0.472354,0.629664,0.866999,0.160288,0.270375,0.228868,0.485997,0.788592,0.410478,0.469331,0.934803,0.521344,0.0199046,0.327505,0.496989,0.195608,0.354568,0.723885,0.0678594,0.510006,0.13079,0.540882,0.991002,0.0232351,0.166705,0.812077,0.955104,0.0874897,0.830885,0.793406,0.831964,0.980021,0.0609102,0.795683,0.676235,0.43096,0.853022,0.357252,0.341894,0.172774,0.598704,0.429561,0.103555,0.404547,0.291405,0.477422,0.285262,0.943803,0.225067,0.962728,0.848063,0.830122,0.897143,0.242627,0.651095,0.940344,0.846139,0.486064,0.745865,0.96893,0.977454,0.0661747,0.032865,0.235829,0.912827,0.986547,0.84941,0.94157,0.642012,0.121307,0.210382,0.448851,0.301602,0.371356,0.465461,0.273394,0.410845,0.0675374,0.739749,0.550992,0.378131,0.546455,0.232197,0.381411,0.678162,0.369052,0.609361,0.522619,0.343689,0.987599,0.359433,0.80058,0.728731,0.426876,0.234807,0.548602,0.742914,0.950792,0.444893,0.616246,0.153701,0.456752,0.366742,0.924858,0.0438802,0.675186,0.00928158,0.84535,0.772677,0.61905,0.783893,0.971632,0.0420851,0.353702,0.980339,0.701977,0.024227,0.0337268,0.652197,0.383216,0.54007,0.254761,0.612928,0.424212,0.234079,0.258785,0.728901,0.808993,0.218042,0.981955,0.7515,0.483776,0.73132,0.516845,0.503093,0.895979,0.66365,0.375778,0.669135,0.863868,0.721534,0.248318,0.717024,0.553623,0.423417,0.329559,0.623638,0.239437,0.487688,0.0987712,0.120146,0.854281,0.795515,0.339939,0.136652,0.051499,0.507052,0.790829,0.195426,0.399175,0.201743,0.252159,0.486432,0.948169,0.384438,0.454481,0.523578,0.608209,0.190784,0.231691,0.777744,0.299292,0.414844,0.594311,0.294526,0.450493,0.368456,0.238095,0.0169083,0.159599,0.474783,0.652671,0.91012,0.939539,0.969218,0.316741,0.763273,0.466143,0.510191,0.630859,0.254818,0.918316,0.136372,0.437759,0.848671,0.971977,0.708187,0.69986,0.104702,0.871084,0.503133,0.688738,0.240348,0.526828,0.941509,0.927024,0.900254,0.152472,0.781126,0.605223,0.57233,0.746867,0.972598,0.181786,0.420698,0.669077,0.557001,0.604919,0.152625,0.0312651,0.0937774,0.57928,0.850369,0.308228,0.853435,0.896908,0.486198,0.769038,0.353371,0.0856019,0.791234,0.00575858,0.885287,0.793556,0.0135079,0.300037,0.843043,0.323734,0.718529,0.195433,0.270324,0.453432,0.936635,0.674187,0.367728,0.995064,0.823577,0.0773352,0.954999,0.558777,0.429066,0.895561,0.8514,0.287778,0.261104,0.66999,0.653157,0.988073,0.22781,0.0331194,0.748995,0.797894,0.867297,0.615758,0.253222,0.874202,0.686772,0.160091,0.432452,0.597479,0.727761,0.387172,0.272556,0.872966,0.517606,0.987393,0.927825,0.818631,0.671254,0.918783,0.27971,0.953282,0.312268,0.203186,0.165686,0.922546,0.611475,0.530272,0.676464,0.591631,0.744769,0.180887,0.105176,0.602252,0.168823,0.803584,0.399229,0.00341922,0.390599,0.287982,0.803686,0.388078,0.276646,0.858537,0.206912,0.744872,0.52515,0.465334,0.897433,0.678754,0.443152,0.288149,0.0611219,0.970585,0.717316,0.626332,0.11808,0.123544,0.355311,0.445096,0.121115,0.531605,0.63329,0.716169,0.987755,0.750116,0.279859,0.821424,0.996694,0.998931,0.969238,0.936472,0.714287,0.639836,0.827964,0.390041,0.0717042,0.904602,0.561675,0.94317,0.653445,0.287826,0.741081,0.349275,0.324625,0.402226,0.745574,0.257997,0.378253,0.862046,0.738562,0.230062,0.422521,0.00401479,0.66882,0.565374,0.607309,0.834939,0.577399,0.170798,0.861867,0.351983,0.680153,0.48758,0.426337,0.144775,0.516096,0.18669,0.0718278,0.105318,0.586269,0.444675,0.130194,|0.0389749,0.62128,0.59144,0.877888,0.920576,0.856583,0.167211,0.495647,0.415787,0.131576,0.405022,0.529856,0.634943,0.904756,0.0288355,0.399818,0.680959,0.030943,0.295363,0.777978,0.0362025,0.510238,0.922974,0.483613,0.201578,0.469333,0.70879,0.627198,0.403977,0.808818,0.442245,0.768722,0.565468,0.14258,0.211294,0.828653,0.750935,0.612221,0.135692,0.114058,0.510315,0.799081,0.754398,0.329154,0.543848,0.861564,0.487951,0.550628,0.315531,0.110436,0.125753,0.800219,0.273476,0.997433,0.300139,0.744076,0.942263,0.198794,0.342707,0.0535806,0.491082,0.994635,0.779519,0.616471,0.324508,0.95104,0.0907359,0.740342,0.996406,0.555984,0.472313,0.884164,0.319908,0.767632,0.678574,0.882327,0.24396,0.792367,0.0480725,0.541059,0.644384,0.401499,0.918867,0.652034,0.172387,0.259494,0.712609,0.508727,0.253226,0.173908,0.195393,0.455583,0.362473,0.324141,0.356161,0.670082,0.0417359,0.536456,0.320085,0.651506,0.0172002,0.618254,0.831216,0.64934,0.333062,0.217503,0.308553,0.769123,0.759578,0.670524,0.351089,0.967774,0.211155,0.907058,0.222754,0.589995,0.360125,0.960398,0.164976,0.533342,0.416514,0.549163,0.4949,0.770613,0.469803,0.428501,0.858841,0.285953,0.615835,0.642556,0.154959,0.267945,0.648596,0.456051,0.142966,0.24816,0.340026,0.488674,0.918406,0.128749,0.470862,0.975152,0.413529,0.832131,0.891365,0.239641,0.701363,0.23147,0.627598,0.353831,0.499725,0.334447,0.270718,0.230643,0.562296,0.526404,0.695438,0.9592,0.352732,0.140836,0.672527,0.755425,0.764851,0.241383,0.123018,0.842498,0.23376,0.971203,0.176322,0.321224,0.896999,0.26335,0.819243,0.510154,0.222415,0.0564625,0.286622,0.110508,0.509378,0.678569,0.988524,0.912216,0.965285,0.00511515,0.24032,0.905595,0.638834,0.453071,0.544843,0.0063107,0.577039,0.0664387,0.0476201,0.897653,0.787492,0.132874,0.830258,0.693101,0.911392,0.928268,0.431102,0.151249,0.964805,0.692396,0.666023,0.770987,0.380065,0.654548,0.408241,0.771488,0.126298,0.740439,0.618053,0.997594,0.174968,0.495226,0.855352,0.856308,0.837214,0.632103,0.467666,0.707683,0.162121,0.577631,0.797375,0.713633,0.905032,0.348468,0.563864,0.585961,0.807192,0.02494,0.570031,0.400418,0.868329,0.692777,0.841606,0.585581,0.180761,0.840465,0.69358,0.132359,0.243955,0.963366,0.476052,0.0364129,0.860245,0.380925,0.728077,0.697586,0.676976,0.402348,0.824274,0.687072,0.532698,0.92434,0.988395,0.386176,0.201613,0.0120627,0.227057,0.292592,0.740769,0.758173,0.308139,0.0639825,0.962093,0.764559,0.102524,0.738873,0.522815,0.0125811,0.546077,0.679879,0.306875,0.778006,0.915519,0.0104886,0.0619318,0.919527,0.17737,0.190018,0.686292,0.406336,0.628626,0.315387,0.613397,0.217579,0.519185,0.621264,0.107859,0.707994,0.571586,0.89878,0.303311,0.277081,0.564195,0.166984,0.0693231,0.492664,0.543987,0.585916,0.795741,0.355711,0.978797,0.991767,0.414337,0.896672,0.734961,0.543721,0.135195,0.292544,0.711513,0.603841,0.0698223,0.7864,0.185716,0.883112,0.0431064,0.494296,0.918826,0.0026077,0.762337,0.764788,0.451349,0.75866,0.355585,0.708524,0.147591,0.321011,0.670942,0.914095,0.441996,0.833519,0.143937,0.0864003,0.888864,0.767812,0.520031,0.102838,0.491088,0.729904,0.212654,0.0250701,0.206422,0.123118,0.168896,0.627118,0.0421842,0.166069,0.941306,0.0262803,0.00412482,0.00175357,0.705607,0.394709,0.85296,0.301901,0.414331,0.255712,0.630069,0.194677,0.913893,0.0960079,0.676892,0.103601,0.956553,0.232264,0.356149,0.768395,0.939971,0.91013,0.150951,0.464865,0.431678,0.591254,0.854876,0.0210624,0.0454829,0.421912,0.220867,0.293361,0.353732,0.118154,0.0990235,0.717723,0.979561,0.535972,0.863441,0.632314,0.235249,0.979281,0.836246,0.662775,0.837362,0.448817,0.973616,0.936481,0.170384,0.201109,0.296,0.767264,0.304902,0.164401,0.0927128,0.392957,0.0524197,0.27582,0.205039,0.356532,0.617054,0.206482,0.860596,0.318486,0.705775,0.13023,0.250982,0.0807629,0.441231,0.956479,0.388566,0.375372,0.697947,0.246751,0.6773,0.0324041,0.220305,0.712091,0.0490154,0.684248,0.809546,0.260818,0.818793,0.805652,0.537616,0.75606,0.935347,0.918304,0.776902,0.449606,0.840954,0.825082,0.653458,0.51054,0.0681536,0.265236,0.4174,0.466343,0.966756,0.574703,0.372954,0.402745,0.148726,0.050555,0.42073,0.302991,0.276003,0.816725,0.985554,0.710427,0.778284,0.848591,0.091558,0.483413,0.952104,0.376621,0.587798,0.57093,0.759551,0.310564,0.662779,0.81055,0.201214,0.655083,0.890219,0.453051,0.854874,0.160711,0.60377,0.403654,0.16092,0.887067,0.109835,0.2094,0.902949,0.205455,0.00601906,0.818397,0.309993,0.474951,0.180861,0.37177,0.00382817,0.188609,0.0924407,0.228999,0.877431,0.0663685,0.357576,0.908318,0.664997,0.502132,0.631289,0.0381927,0.932196,0.210112,0.525716,0.865749,0.0523757,0.813827,0.30805,0.32392,0.537872,0.672114,0.259399,0.784817,0.437598,0.268982,0.608431,0.210945,0.469137,0.773206,0.604092,0.332779,0.426316,0.411321,0.646048,0.857268,0.351306,0.933669,0.201206,0.191575,0.30852,0.713626,0.194949,0.955209,0.876615,0.900612,0.172368,0.791548,0.0871646,0.552422,0.300105,0.284961,0.717752,0.661162,0.0146686,0.187419,0.218744,0.761389,0.622905,0.252151,0.056669,0.579325,0.548623,0.911656,0.0505512,0.856415,0.922854,0.847246,0.166412,0.830831,0.974478,0.397859,0.605702,0.2256,0.794011,0.298132,0.650082,0.697889,0.637116,0.870302,0.616811,0.249501,0.694051,0.625794,0.855843,0.904288,0.0159448,0.208351,0.956693,0.225343,0.141491,0.843854,0.0436056,0.872748,0.26017,0.742789,0.872328,0.212184,0.416809,0.626463,0.907871,0.649886,0.674489,0.913933,0.359893,0.681353,0.63111,0.363677,0.707128,0.240883,0.830863,0.0954333,0.912266,0.643679,0.294424,0.174696,0.42312,0.890756,0.167992,0.723117,0.678607,0.329363,0.774468,0.324576,0.186097,0.228569,0.242798,0.0716838,0.570771,0.122219,0.219049,0.302978,0.26685,0.184101,0.616406,0.52313,0.843111,0.704521,0.109624,0.0708733,0.972868,0.721123,0.935974,0.368085,0.388955,0.954424,0.657913,0.091565,0.624575,0.142497,0.248882,0.965896,0.767358,0.58737,0.686273,0.323215,0.0695224,0.244308,0.0780401,0.253189,0.308646,0.545102,0.239852,0.0614675,0.857823,0.843667,0.907205,0.918605,0.130309,0.0576935,0.108461,0.739358,0.113502,0.565959,0.593405,0.498385,0.84622,0.631162,0.634798,0.0788516,0.741182,0.539435,0.748357,0.808077,0.757419,0.827983,0.765518,0.517453,0.915843,0.948142,0.180758,0.850243,0.85261,0.569765,0.66974,0.848353,0.857844,0.76971,0.21664,0.240181,0.161044,0.896987,0.180585,0.542538,0.547368,0.459598,0.575286,0.367109,0.811518,0.975355,0.25645,0.644609,0.596855,0.136354,0.721443,0.22486,0.697443,0.545746,0.041568,0.268065,0.32102,0.965927,0.65919,0.221788,0.982274,0.87881,0.240591,0.433615,0.719189,0.439926,0.585462,0.16854,0.660471,0.356363,0.114206,0.229793,0.320338,0.977189,0.906452,0.481936,0.962169,0.942542,0.793778,0.19475,0.0781197,0.112252,0.429402,0.253169,0.322636,0.584077,0.223586,0.51172,0.706269,0.545073,0.532141,0.0721405,0.124473,0.0959496,0.98409,0.781602,0.403687,0.662679,0.630626,0.211758,0.254258,0.33361,0.0751303,0.0796847,0.428335,0.344217,0.126102,0.55086,0.506842,0.932985,0.138537,0.49976,0.407279,0.659762,0.265955,0.0368919,0.74943,0.0493559,0.994705,0.845427,0.885382,0.684249,0.0627549,0.708436,0.137015,0.122749,0.405386,0.198011,0.31831,0.108122,0.0429004,0.482563,0.848142,0.816358,0.9257,0.0563241,0.18148,0.647364,0.0792962,0.751954,0.761858,0.00753373,0.915805,0.829087,0.484102,0.752142,0.414107,0.976141,0.561046,0.724742,0.913266,0.382576,0.17812,0.0907497,0.147099,0.665127,0.864384,0.982925,0.720045,0.555494,0.262956,0.836386,0.745833,0.162005,0.347259,0.848815,0.829336,0.47345,0.294308,0.142615,0.142559,0.135837,0.651551,0.24399,0.31522,0.342697,0.792005,0.403253,0.036609,0.284894,0.685527,0.286835,0.744551,0.00960577,0.817944,0.117119,0.537554,0.441231,0.796848,0.997312,0.0656736,0.0753356,0.471804,0.857912,0.668148,0.934162,0.981187,0.875177,0.381536,0.720472,0.06235,0.740946,0.165498,0.685461,0.62491,0.495891,0.884316,0.621477,0.436763,0.64364,0.023011,0.733083,0.00498539,0.137917,0.394468,0.69716,0.343465,0.189751,0.756001,0.682044,0.783974,0.686272,0.439902,0.00770968,0.431575,0.838192,0.882713,0.172393,0.810064,0.974368,0.926618,0.732455,0.0390776,0.177806,0.998858,0.0130779,0.0274014,0.447185,0.769991,0.375435,0.435098,0.936576,0.340327,0.873601,0.0438269,0.727319,0.911955,0.566809,0.971293,0.393547,0.587049,0.29048,0.139212,0.687757,0.469605,0.885429,0.927213,0.857347,0.0855358,0.486678,0.313338,0.543464,0.058379,0.299645,0.112212,0.240774,0.0439238,0.993216,0.248106,0.923122,0.408084,0.0710276,0.204402,0.469895,0.141381,0.460182,0.553526,0.913118,0.975178,0.262978,0.819942,0.444972,0.931953,0.502215,0.981624,0.297041,0.23523,0.775316,0.537229,0.852451,0.866838,0.640372,0.768062,0.629863,0.81398,0.492571,0.783363,0.222566,0.579395,0.963878,0.976436,0.9705,0.828211,0.744771,0.294145,0.64906,0.284289,0.931226,0.905808,0.561012,0.144366,0.551712,0.130336,0.83797,0.730536,0.567265,0.847743,0.480087,0.84312,0.449975,0.507799,0.608987,0.74064,0.3847,0.300161,0.167857,0.0638207,0.18547,0.291437,0.242828,0.739868,0.919524,0.386997,0.900796,0.978597,0.842201,0.737058,0.816987,0.574544,0.982421,0.608026,0.452521,0.333671,0.553333,|0.941362,0.927901,0.00889587,0.271424,0.620702,0.789078,0.286573,0.92846,0.629229,0.415256,0.220206,0.112008,0.658136,0.956253,0.817469,0.379613,0.482545,0.149154,0.230961,0.778083,0.274568,0.830571,0.688381,0.469561,0.176519,0.266144,0.668729,0.8289,0.0748416,0.503442,0.588783,0.77059,0.503619,0.662116,0.664956,0.856437,0.679675,0.40284,0.0468844,0.245412,0.212954,0.282062,0.159774,0.158719,0.824744,0.345884,0.695434,0.906496,0.2797,0.143489,0.183801,0.0493368,0.224967,0.101416,0.755369,0.0557629,0.489933,0.422948,0.80744,0.560289,0.080191,0.277899,0.345142,0.872218,0.169389,0.897525,0.195686,0.204907,0.71599,0.668301,0.747661,0.352863,0.619668,0.997026,0.847051,0.153632,0.415097,0.769638,0.0483299,0.579235,0.544393,0.0310817,0.87381,0.116639,0.830301,0.404945,0.466749,0.181617,0.315345,0.699195,0.838132,0.330872,0.97877,0.218253,0.999452,0.942821,0.527158,0.479172,0.162351,0.24856,0.0401068,0.905466,0.497744,0.432289,0.369352,0.569799,0.629167,0.70344,0.806117,0.357302,0.396168,0.195545,0.690774,0.741309,0.984684,0.586191,0.46686,0.100132,0.676315,0.965981,0.0170253,0.772392,0.254824,0.950494,0.302269,0.979123,0.153445,0.789039,0.175472,0.653783,0.416159,0.0489398,0.810753,0.985272,0.491603,0.712274,0.973337,0.633956,0.424236,0.287483,0.0524834,0.761594,0.740795,0.550184,0.246198,0.153075,0.233665,0.866659,0.884292,0.18631,0.701954,0.553554,0.324139,0.80802,0.65673,0.621596,0.657142,0.136189,0.62431,0.532866,0.857904,0.521301,0.199965,0.468915,0.322351,0.998732,0.867982,0.804296,0.486624,0.738769,0.409278,0.270199,0.379726,0.359988,0.246209,0.110758,0.0955345,0.981564,0.696701,0.329147,0.596272,0.48851,0.559156,0.150595,0.111477,0.584667,0.767955,0.655955,0.41987,0.993937,0.341507,0.359863,0.589491,0.973749,0.940106,0.141575,0.575481,0.986871,0.0394617,0.967735,0.351555,0.814463,0.165364,0.892388,0.197161,0.860551,0.985553,0.160628,0.412388,0.718843,0.606039,0.539138,0.0480145,0.161698,0.578523,0.25132,0.124062,0.0653343,0.171874,0.976057,0.252133,0.571099,0.292073,0.641902,0.67528,0.795611,0.788149,0.517959,0.454848,0.381128,0.304951,0.0886455,0.452298,0.467263,0.846957,0.831229,0.962793,0.332211,0.52807,0.290019,0.358568,0.762583,0.0755228,0.311014,0.798967,0.726838,0.809424,0.469548,0.187595,0.97106,0.0241358,0.538681,0.796082,0.936323,0.700815,0.141793,0.559849,0.417889,0.0870013,0.198701,0.512251,0.306301,0.187073,0.343376,0.819431,0.671974,0.66674,0.125641,0.579294,0.38794,0.842487,0.13452,0.879796,0.201744,0.446937,0.155518,0.0532786,0.454297,0.35328,0.78789,0.382885,0.353458,0.592396,0.296376,0.123378,0.841809,0.864599,0.338082,0.886121,0.124719,0.129578,0.264763,0.146285,0.666108,0.251968,0.372544,0.361362,0.412696,0.7482,0.0202235,0.478253,0.527043,0.135723,0.417211,0.928136,0.399124,0.0427209,0.668904,0.214016,0.392721,0.12699,0.953519,0.958596,0.260663,0.961565,0.0108083,0.958156,0.302791,0.255121,0.834484,0.424848,0.0965376,0.0640894,0.151109,0.437447,0.716691,0.548223,0.686586,0.599212,0.872343,0.826637,0.887787,0.0881672,0.922291,0.366845,0.3102,0.82814,0.225848,0.500268,0.0063684,0.948283,0.443048,0.54435,0.386936,0.585907,0.748452,0.302335,0.7682,0.957006,0.0613642,0.104679,0.591923,0.314458,0.781536,0.735729,0.812034,0.380179,0.685361,0.0741268,0.824042,0.938777,0.683697,0.448239,0.791365,0.0791065,0.391141,0.764632,0.777837,0.981882,0.38545,0.641131,0.545697,0.856917,0.486639,0.606637,0.121884,0.736974,0.659041,0.86084,0.947023,0.423798,0.285523,0.169776,0.867857,0.987558,0.992522,0.947179,0.236076,0.0159183,0.781056,0.591083,0.700478,0.383688,0.679758,0.882595,0.736327,0.583488,0.521983,0.0297832,0.769499,0.301586,0.591802,0.337389,0.458182,0.986846,0.355148,0.71071,0.55061,0.348018,0.819144,0.663156,0.684823,0.0263869,0.962564,0.31978,0.622818,0.811179,0.89287,0.114375,0.674655,0.150517,0.605896,0.319116,0.933948,0.776182,0.711403,0.405463,0.245562,0.891002,0.562944,0.909541,0.659784,0.432911,0.888508,0.0328678,0.701883,0.127622,0.636633,0.701842,0.094526,0.243988,0.523869,0.351146,0.0767345,0.82297,0.46695,0.261324,0.0573625,0.551646,0.0698882,0.481424,0.68124,0.923038,0.734942,0.15281,0.690463,0.440931,0.0146388,0.89563,0.945843,0.34573,0.161952,0.241898,0.380125,0.265889,0.975646,0.0220556,0.626787,0.0543134,0.595401,0.214113,0.0637836,0.190236,0.657757,0.316173,0.123405,0.470144,0.46521,0.220979,0.469536,0.928273,0.218069,0.667432,0.346431,0.453048,0.0989276,0.654396,0.309442,0.455812,0.716008,0.916444,0.467063,0.466268,0.236067,0.379267,0.552317,0.0733595,0.530359,0.13213,0.683468,0.207465,0.275864,0.709992,0.840831,0.417322,0.782855,0.443961,0.460477,0.38016,0.492847,0.0468023,0.653833,0.637388,0.376798,0.088979,0.890993,0.812733,0.0789144,0.84972,0.165949,0.116954,0.373004,0.457873,0.504966,0.950272,0.717978,0.906855,0.865813,0.428161,0.332787,0.975106,0.189628,0.721298,0.241979,0.00902188,0.75808,0.782346,0.391099,0.903318,0.388271,0.143482,0.220555,0.140725,0.626905,0.955104,0.73625,0.897021,0.902947,0.629827,0.454843,0.269793,0.370468,0.945397,0.543874,0.288654,0.424839,0.789458,0.806222,0.846118,0.916155,0.291717,0.635399,0.0588618,0.817617,0.43665,0.416259,0.618322,0.368855,0.641615,0.351207,0.479884,0.113516,0.436989,0.939811,0.917861,0.693061,0.476603,0.566953,0.52608,0.797101,0.944199,0.78351,0.406968,0.225746,0.856747,0.534499,0.623623,0.143664,0.504288,0.0818681,0.154063,0.739497,0.726572,0.261465,0.118963,0.870183,0.89921,0.940324,0.243117,0.376799,0.0894554,0.970094,0.960279,0.147933,0.421686,0.000209928,0.256208,0.622726,0.821417,0.941909,0.713131,0.344586,0.244965,0.0813957,0.547057,0.4456,0.0455809,0.0619099,0.577344,0.377418,0.00987798,0.801248,0.510082,0.725564,0.806027,0.644351,0.508846,0.850753,0.975167,0.310137,0.224343,0.0102236,0.28166,0.992822,0.336502,0.96798,0.65209,0.231575,0.140778,0.164881,0.280272,0.00103068,0.268083,0.675641,0.550224,0.325065,0.544178,0.523734,0.676854,0.173296,0.271811,0.146589,0.793201,0.239899,0.767635,0.234722,0.083452,0.15101,0.274036,0.13969,0.525293,0.869232,0.890754,0.703831,0.687509,0.413931,0.561784,0.476347,0.660685,0.768824,0.383942,0.910903,0.256372,0.245407,0.553084,0.851544,0.119103,0.543522,0.0736126,0.773827,0.257883,0.912834,0.414377,0.653273,0.954321,0.365414,0.574327,0.223282,0.85377,0.111213,0.860039,0.775688,0.00997633,0.448417,0.654404,0.100873,0.968712,0.489499,0.305076,0.703914,0.702032,0.191319,0.674836,0.914047,0.458066,0.218304,0.92351,0.643934,0.534144,0.790307,0.399724,0.651951,0.702984,0.857302,0.0977709,0.161266,0.266616,0.908207,0.360927,0.0411558,0.169911,0.121548,0.893716,0.422148,0.131913,0.601178,0.284913,0.415745,0.652005,0.651684,0.298263,0.0933901,0.608593,0.85935,0.708154,0.695027,0.46233,0.844746,0.65453,0.637573,0.550536,0.940549,0.202,0.394166,0.907683,0.270094,0.49916,0.607399,0.227381,0.309044,0.790801,0.0216244,0.745787,0.585415,0.0540515,0.065344,0.11722,0.430418,0.713898,0.00288844,0.514306,0.82109,0.624064,0.772775,0.177438,0.561058,0.189161,0.0958315,0.95929,0.72357,0.986717,0.424995,0.641469,0.803049,0.343771,0.215284,0.476356,0.308743,0.299924,0.691604,0.187638,0.693899,0.570168,0.973838,0.819214,0.933464,0.171446,0.685492,0.606014,0.0395947,0.758606,0.148755,0.848439,0.93872,0.549484,0.119621,0.797028,0.622259,0.576694,0.839725,0.116732,0.386614,0.890971,0.0456796,0.095555,0.922206,0.641278,0.893882,0.80572,0.00488389,0.118254,0.755264,0.183878,0.314091,0.403826,0.835693,0.408199,0.566553,0.964298,0.282825,0.494206,0.105631,0.537559,0.978397,0.793799,0.366884,0.836118,0.0403835,0.478341,0.634968,0.277848,0.838128,0.683759,0.621892,0.253907,0.565461,0.905719,0.302274,0.0373107,0.862592,0.916608,0.0775984,0.911084,0.299413,0.776778,0.550607,0.470733,0.24423,0.775447,0.0227528,0.698359,0.137587,0.371306,0.938868,0.438596,0.87978,0.558967,0.46867,0.294649,0.279423,0.0829509,0.439834,0.557143,0.842891,0.575169,0.889061,0.527009,0.779562,0.114177,0.776253,0.313684,0.771077,0.978417,0.405727,0.268907,0.338027,0.526998,0.000984251,0.296849,0.105634,0.170466,0.555682,0.128059,0.557851,0.915355,0.109835,0.907253,0.86865,0.740003,0.485804,0.78285,0.393366,0.578654,0.205066,0.42155,0.483235,0.506431,0.689676,0.92691,0.458165,0.433809,0.870458,0.602983,0.791974,0.238293,0.874476,0.117416,0.429526,0.416211,0.451606,0.554635,0.890162,0.0558159,0.0482361,0.630357,0.256134,0.335159,0.394692,0.959449,0.570975,0.890357,0.169406,0.961124,0.450339,0.591846,0.476438,0.401471,0.805274,0.489337,0.976038,0.0287508,0.436403,0.221759,0.104292,0.401599,0.319806,0.754304,0.786143,0.309433,0.782961,0.865144,0.533019,0.998296,0.781308,0.538651,0.970726,0.324537,0.590386,0.622103,0.188947,0.080814,0.473365,0.815951,0.339655,0.554449,0.643631,0.942104,0.651072,0.573067,0.0765366,0.310704,0.253891,0.5065,0.793989,0.881547,0.345771,0.154675,0.970914,0.533971,0.486252,0.46966,0.501568,0.130055,0.402253,0.669977,0.0545217,0.795947,0.73771,0.119164,0.174104,0.33764,0.0684514,0.375154,0.244858,0.761608,0.158661,0.867904,0.861731,0.469114,0.424703,0.892235,0.94345,0.447105,0.813007,0.708923,0.306252,0.177113,0.657034,0.563399,0.24059,|0.910393,0.423168,0.589676,0.00433362,0.527328,0.127539,0.994533,0.406744,0.713681,0.33212,0.824993,0.952407,0.538759,0.126397,0.653234,0.68352,0.187389,0.652278,0.562766,0.899902,0.74,0.899154,0.522109,0.183256,0.197359,0.159275,0.765978,0.554429,0.44605,0.567189,0.780331,0.783224,0.114907,0.922695,0.0802323,0.908392,0.680739,0.152369,0.75819,0.938894,0.902604,0.667143,0.588276,0.38989,0.723065,0.694669,0.602942,0.481323,0.97303,0.0476494,0.773341,0.176534,0.881984,0.125172,0.852116,0.827539,0.671933,0.470884,0.31865,0.708213,0.985617,0.307995,0.9326,0.618182,0.361597,0.346066,0.804281,0.149016,0.721298,0.319965,0.2398,0.303492,0.650139,0.538316,0.616246,0.555099,0.935403,0.000962079,0.10994,0.449794,0.745709,0.134964,0.984232,0.916069,0.381816,0.275692,0.21406,0.708682,0.32739,0.884713,0.52059,0.289107,0.272642,0.00343281,0.626246,0.00304544,0.302996,0.582631,0.644818,0.992045,0.774389,0.39767,0.353485,0.329771,0.324811,0.7641,0.374432,0.718125,0.477132,0.52802,0.388411,0.180045,0.682671,0.51683,0.546893,0.668334,0.0983074,0.93477,0.483583,0.83612,0.120148,0.638732,0.200981,0.427088,0.979548,0.778958,0.521858,0.701588,0.548289,0.597302,0.616617,0.354466,0.329378,0.871239,0.89732,0.855649,0.768083,0.705567,0.930248,0.105547,0.0446327,0.463287,0.66595,0.857038,0.91811,0.261991,0.247998,0.710668,0.131086,0.523532,0.625559,0.357553,0.813558,0.47185,0.664659,0.112078,0.00391567,0.130658,0.203883,0.459768,0.00107962,0.973358,0.821862,0.690619,0.0757759,0.479571,0.752721,0.758571,0.571117,0.213749,0.623374,0.624389,0.104217,0.472058,0.30454,0.8756,0.514456,0.879896,0.0484681,0.525092,0.586517,0.602463,0.0373061,0.795923,0.0599782,0.58295,0.564097,0.553263,0.747196,0.823926,0.313605,0.148873,0.87917,0.3482,0.436161,0.248556,0.44367,0.733389,0.168284,0.302638,0.314205,0.385742,0.730172,0.212846,0.718672,0.791696,0.678845,0.780403,0.0280333,0.224371,0.433666,0.503461,0.0244954,0.821592,0.989163,0.0293803,0.388254,0.542298,0.658745,0.487066,0.703185,0.996917,0.181628,0.870641,0.585918,0.22606,0.774353,0.581912,0.165487,0.0751004,0.0298436,0.0790642,0.74461,0.545543,0.886971,0.114465,0.800373,0.523051,0.43473,0.0763092,0.0321202,0.0547243,0.196623,0.889882,0.135053,0.39491,0.65811,0.833987,0.771638,0.480802,0.782881,0.409515,0.963862,0.873238,0.586011,0.307093,0.606695,0.872744,0.105396,0.721071,0.117897,0.545328,0.0516684,0.419275,0.791939,0.724836,0.202714,0.0219123,0.140669,0.374267,0.453883,0.0977619,0.0995921,0.831491,0.93427,0.837221,0.984134,0.646509,0.900829,0.411495,0.128219,0.923254,0.109597,0.334849,0.755772,0.146784,0.608545,0.0528695,0.348794,0.0941511,0.323067,0.294067,0.578057,0.0675331,0.227166,0.137196,0.9539,0.343417,0.739209,0.269111,0.345472,0.466076,0.424702,0.846925,0.241681,0.445504,0.0866762,0.160603,0.441351,0.32717,0.371579,0.815412,0.747854,0.988033,0.304056,0.62653,0.216503,0.872999,0.04846,0.386052,0.0938789,0.258782,0.731162,0.0683432,0.226602,0.354452,0.152988,0.59077,0.504642,0.372429,0.992105,0.656375,0.698094,0.98776,0.357821,0.933458,0.0151118,0.103429,0.309939,0.410588,0.859372,0.317565,0.50301,0.0189339,0.0064612,0.171235,0.425449,0.768608,0.111878,0.332688,0.744448,0.962979,0.52633,0.59674,0.310006,0.335363,0.78584,0.785585,0.323668,0.51322,0.0258648,0.916817,0.285615,0.751698,0.260337,0.98305,0.394827,0.513371,0.590296,0.689011,0.814115,0.576787,0.0575557,0.595909,0.606984,0.689634,0.536226,0.366379,0.225549,0.75427,0.466767,0.319146,0.69362,0.11149,0.41469,0.731623,0.0538686,0.948434,0.144632,0.881174,0.621199,0.438496,0.307944,0.722386,0.256776,0.116262,0.521728,0.232641,0.724496,0.86309,0.649735,0.0883829,0.235213,0.186957,0.402563,0.138828,0.938756,0.133313,0.160779,0.275808,0.596146,0.625365,0.72326,0.826773,0.524122,0.68565,0.738333,0.310861,0.243805,0.667202,0.591232,0.143402,0.815888,0.0107911,0.628988,0.913122,0.25424,0.862053,0.171483,0.67169,0.468401,0.218599,0.321697,0.826426,0.861698,0.422262,0.0481792,0.896835,0.334693,0.288328,0.817452,0.0125456,0.238151,0.362929,0.995126,0.78782,0.000209391,0.0608,0.0535585,0.838441,0.761241,0.0429029,0.0813885,0.746122,0.92925,0.383533,0.989032,0.421181,0.791562,0.0146427,0.983638,0.953442,0.656811,0.737333,0.800739,0.520372,0.140104,0.142681,0.775001,0.938263,0.19484,0.0557722,0.253954,0.0273308,0.388698,0.599882,0.325971,0.130421,0.915412,0.652959,0.572863,0.147229,0.235098,0.45501,0.38053,0.997451,0.888988,0.230362,0.616912,0.901932,0.779854,0.804839,0.806924,0.0415077,0.246607,0.599041,0.481948,0.8976,0.695357,0.494234,0.696777,0.4616,0.0146304,0.252565,0.59971,0.94296,0.744122,0.069276,0.166495,0.941759,0.501632,0.36202,0.0327227,0.378466,0.987457,0.768394,0.502549,0.266628,0.627894,0.961671,0.118559,0.43238,0.784254,0.466956,0.201427,0.346308,0.70053,0.16674,0.951864,0.817406,0.320981,0.791421,0.506594,0.561863,0.0617678,0.605718,0.301264,0.263179,0.514138,0.120532,0.278678,0.600683,0.067398,0.526553,0.498836,0.397506,0.0758469,0.514096,0.54439,0.877876,0.324209,0.109684,0.924048,0.331591,0.999509,0.238777,0.724897,0.649728,0.0155252,0.919896,0.319615,0.271397,0.370645,0.820441,0.319364,0.206788,0.597216,0.700987,0.0434526,0.0305593,0.0883746,0.517214,0.360008,0.577835,0.528487,0.288693,0.115838,0.778845,0.888324,0.205364,0.532661,0.0548913,0.757193,0.267384,0.325146,0.537001,0.71261,0.882525,0.0544516,0.715584,0.0649309,0.210233,0.314686,0.640055,0.0626926,0.831808,0.481404,0.728798,0.85243,0.996684,0.313401,0.853095,0.794209,0.517471,0.399965,0.925724,0.67622,0.823584,0.125613,0.245806,0.262662,0.0456269,0.84934,0.167363,0.622984,0.352082,0.191752,0.396856,0.31881,0.188625,0.614178,0.593298,0.996918,0.927429,0.59398,0.900361,0.0787034,0.0182485,0.118683,0.185908,0.917196,0.989663,0.646615,0.348304,0.0839754,0.792352,0.971231,0.708059,0.669657,0.524426,0.492758,0.0545708,0.251724,0.0530808,0.218855,0.992861,0.184897,0.324173,0.703309,0.244056,0.864257,0.695997,0.777211,0.505058,0.0192718,0.309843,0.713667,0.221641,0.16461,0.929725,0.922525,0.257097,0.823596,0.337704,0.180916,0.790479,0.313135,0.646921,0.807916,0.113561,0.578507,0.565421,0.0843312,0.281937,0.538911,0.858917,0.673591,0.720042,0.599182,0.589942,0.195953,0.598706,0.988754,0.631507,0.104228,0.0118522,0.00125396,0.399724,0.475781,0.755062,0.832,0.157126,0.0682935,0.885505,0.34673,0.601055,0.257075,0.756561,0.264002,0.967295,0.0324828,0.566742,0.256556,0.294773,0.839586,0.56293,0.0777097,0.605682,0.884365,0.11296,0.549424,0.338934,0.1688,0.632686,0.960743,0.831256,0.403577,0.581083,0.505828,0.85451,0.501018,0.339061,0.596034,0.0807051,0.884867,0.125462,0.933064,0.872456,0.296762,0.527202,0.165252,0.53205,0.733557,0.645759,0.247061,0.344988,0.854979,0.652896,0.693667,0.441664,0.510085,0.557063,0.400281,0.24562,0.129414,0.775992,0.522317,0.25695,0.654772,0.0822129,0.75337,0.343588,0.0951485,0.859414,0.680589,0.834968,0.35099,0.362464,0.600196,0.739396,0.550977,0.659995,0.823474,0.100919,0.807721,0.546898,0.00181788,0.247385,0.155926,0.521789,0.285511,0.218356,0.6776,0.217138,0.0141832,0.768808,0.0960925,0.76039,0.242466,0.0759907,0.443344,0.0920463,0.442217,0.0376426,0.0295952,0.260469,0.0886135,0.460003,0.857527,0.432177,0.969082,0.330932,0.351803,0.282284,0.369846,0.30375,0.903239,0.963907,0.943598,0.200123,0.229289,0.762967,0.98588,0.256353,0.430506,0.575645,0.717573,0.90377,0.308692,0.389338,0.494043,0.54594,0.978434,0.321254,0.864623,0.116312,0.822047,0.390175,0.702311,0.644369,0.365884,0.931485,0.971076,0.726358,0.854813,0.0420848,0.763494,0.199003,0.662723,0.263292,0.606554,0.359424,0.487692,0.325531,0.819415,0.51607,0.317204,0.38262,0.242815,0.783489,0.803656,0.518163,0.534631,0.255947,0.787118,0.249796,0.488249,0.510182,0.900762,0.545154,0.584549,0.164647,0.157287,0.658599,0.901771,0.150458,0.114243,0.988554,0.562178,0.568444,0.394875,0.64105,0.844931,0.865407,0.366397,0.0893315,0.488958,0.359461,0.272366,0.731977,0.336306,0.47686,0.774815,0.773923,0.626495,0.960729,0.744977,0.425818,0.00426346,0.644662,0.926031,0.221526,0.368836,0.151402,0.739012,0.844001,0.448194,0.718554,0.768883,0.136229,0.606472,0.684104,0.637328,0.281628,0.361861,0.492454,0.644704,0.969302,0.0277697,0.0370651,0.438769,0.118147,0.154067,0.400756,0.304404,0.564582,0.0765441,0.11979,0.471543,0.50933,0.589526,0.130469,0.256422,0.132158,0.0878558,0.166218,0.911301,0.245355,0.416576,0.896397,0.295493,0.415594,0.0787224,0.442477,0.946602,0.107954,0.149334,0.710493,0.113867,0.138846,0.441983,0.266964,0.446373,0.492501,0.269523,0.304817,0.298688,0.925688,0.713448,0.00960308,0.431,0.226305,0.00379044,0.45497,0.615171,0.0315453,0.447895,0.0637909,0.0457326,0.23284,0.683347,0.595143,0.42028,0.263265,0.0253229,0.986094,0.825645,0.0556286,0.00417489,0.323069,0.271809,0.465296,0.141815,0.51715,0.712214,0.267806,0.113885,0.577579,0.207684,0.119197,0.486382,0.232875,0.402907,0.488886,0.45912,0.619154,0.74268,0.48417,0.345671,0.848945,0.902835,0.0402645,0.731933,0.842367,0.9807,0.340476,0.973125,0.0372611,0.992069,0.878661,0.4556,0.330773,0.621297,0.0862061,0.0939077,0.924771,0.877505,0.568601,0.461097,0.310595,|0.0614875,0.515238,0.44693,0.197599,0.540644,0.938277,0.915366,0.195029,0.83026,0.0511146,0.895638,0.776395,0.808813,0.112703,0.131795,0.559572,0.0921037,0.963656,0.340988,0.369611,0.698786,0.43186,0.0690542,0.72982,0.368635,0.405191,0.716553,0.0076896,0.992789,0.962962,0.089035,0.360164,0.398491,0.217503,0.554956,0.133486,0.870574,0.985012,0.129069,0.238111,0.484163,0.775749,0.0689445,0.834715,0.547321,0.96861,0.446694,0.965822,0.342713,0.573883,0.859562,0.597694,0.116081,0.626393,0.55728,0.322796,0.574838,0.859604,0.338034,0.00346643,0.529968,0.826845,0.254958,0.529162,0.913387,0.141835,0.723481,0.471201,0.950081,0.8489,0.2304,0.709815,0.125023,0.304556,0.575917,0.0346064,0.739169,0.542625,0.576943,0.470504,0.223987,0.809205,0.0255881,0.250736,0.597044,0.954944,0.768875,0.826568,0.615628,0.418622,0.628135,0.730016,0.346571,0.573483,0.307746,0.546943,0.686705,0.951815,0.611276,0.351978,0.57419,0.264118,0.721456,0.239913,0.399257,0.41192,0.332859,0.77296,0.7659,0.910634,0.992357,0.566081,0.0900483,0.950715,0.804264,0.313473,0.90669,0.337338,0.945263,0.738536,0.734297,0.602361,0.396854,0.484648,0.493036,0.877104,0.667812,0.74391,0.0874811,0.454725,0.0883945,0.144172,0.991279,0.132807,0.745913,0.228805,0.851082,0.642196,0.715799,0.4905,0.801255,0.98102,0.0513268,0.207319,0.950245,0.770368,0.00887448,0.60979,0.565685,0.808776,0.0419866,0.398519,0.443131,0.965994,0.860849,0.495412,0.967463,0.318031,0.362182,0.330246,0.644167,0.361243,0.113174,0.774862,0.75548,0.118361,0.817384,0.638526,0.777194,0.443063,0.929227,0.176748,0.353002,0.0817225,0.0911545,0.568679,0.817371,0.0656646,0.784272,0.516626,0.436383,0.719568,0.862162,0.932379,0.67808,0.529544,0.504272,0.407458,0.792587,0.153299,0.768053,0.512894,0.618237,0.966982,0.637694,0.682362,0.927254,0.834906,0.109412,0.799001,0.86326,0.400101,0.405536,0.421255,0.323533,0.88011,0.673431,0.317071,0.361341,0.846413,0.218205,0.255904,0.736166,0.248288,0.246412,0.631164,0.907047,0.326196,0.311128,0.970581,0.850093,0.999546,0.0768601,0.418955,0.215456,0.111337,0.945371,0.881857,0.00269127,0.306569,0.519608,0.613285,0.811009,0.47676,0.530227,0.0386291,0.880158,0.339091,0.796027,0.153881,0.151965,0.783166,0.0831695,0.474506,0.398256,0.970384,0.645447,0.306038,0.241561,0.954928,0.461939,0.0864805,0.953597,0.511222,0.0977774,0.255974,0.524599,0.437272,0.327719,0.174498,0.354893,0.513639,0.623439,0.334786,0.270963,0.827105,0.57811,0.630842,0.967453,0.24794,0.11985,0.980787,0.318772,0.675157,0.181209,0.990653,0.848367,0.447609,0.751576,0.591511,0.734896,0.305831,0.795984,0.845869,0.638643,0.221815,0.0057407,0.812525,0.282744,0.927936,0.256541,0.57046,0.866329,0.43798,0.0711828,0.342136,0.465333,0.0266177,0.163488,0.946831,0.565837,0.000435293,0.0835574,0.404111,0.116757,0.405618,0.565667,0.109756,0.00524837,0.0036844,0.502589,0.195666,0.433157,0.872641,0.570625,0.657394,0.297007,0.00277662,0.869424,0.915396,0.191316,0.15357,0.679492,0.122314,0.324012,0.207656,0.346723,0.277041,0.1542,0.419867,0.567274,0.38035,0.574683,0.465587,0.0806208,0.52881,0.145698,0.286872,0.860408,0.248901,0.744301,0.353198,0.810864,0.42056,0.382551,0.475578,0.731405,0.391169,0.135821,0.961675,0.942926,0.593289,0.908898,0.718817,0.618134,0.292005,0.074782,0.807829,0.310044,0.310597,0.939464,0.949904,0.417101,0.111138,0.373407,0.239339,0.272283,0.534399,0.313221,0.538106,0.0757185,0.776136,0.30253,0.918274,0.115143,0.146896,0.558035,0.90234,0.850114,0.812207,0.373091,0.139681,0.574843,0.364392,0.945213,0.0215642,0.414446,0.455751,0.593911,0.363868,0.931927,0.247861,0.955197,0.901869,0.189086,0.849107,0.128329,0.829221,0.791173,0.428913,0.794466,0.99642,0.313189,0.0925954,0.517097,0.159649,0.188989,0.721554,0.978549,0.283471,0.923056,0.927862,0.181066,0.630102,0.586896,0.519818,0.350005,0.371688,0.598759,0.948339,0.405822,0.268799,0.529162,0.254108,0.280627,0.0488737,0.405386,0.854698,0.143273,0.40897,0.649816,0.754953,0.452512,0.929931,0.40744,0.957675,0.332289,0.867198,0.916297,0.071985,0.917838,0.10249,0.576213,0.658744,0.928894,0.034889,0.973627,0.222099,0.839536,0.937545,0.111084,0.169704,0.0584579,0.0651771,0.40643,0.143393,0.828932,0.723107,0.284022,0.986891,0.374614,0.352347,0.87683,0.893621,0.305012,0.171066,0.162791,0.947163,0.624164,0.22482,0.65668,0.859641,0.485535,0.783842,0.145705,0.499591,0.909145,0.0470593,0.906786,0.416018,0.0563443,0.214494,0.0124086,0.179268,0.930719,0.163372,0.534608,0.949174,0.96785,0.596439,0.434848,0.57698,0.246548,0.42468,0.103904,0.0682433,0.509156,0.963318,0.118827,0.211113,0.953985,0.637679,0.570239,0.780253,0.268724,0.842692,0.867091,0.598552,0.863319,0.00984526,0.00852358,0.712402,0.367935,0.554221,0.55881,0.620398,0.767857,0.744761,0.538484,0.911,0.0707393,0.4899,0.283993,0.483857,0.348057,0.55871,0.559975,0.196562,0.964898,0.294571,0.605635,0.28062,0.914845,0.911343,0.482018,0.873672,0.0658026,0.5159,0.963562,0.63059,0.0223091,0.382705,0.613545,0.0816559,0.685992,0.622084,0.824892,0.336566,0.751007,0.46628,0.580513,0.00736165,0.495575,0.942553,0.0964216,0.258657,0.326637,0.713041,0.265959,0.771005,0.1378,0.725052,0.477488,0.991041,0.684501,0.843818,0.96136,0.735195,0.501319,0.522753,0.963726,0.845949,0.411105,0.450978,0.440306,0.429137,0.279698,0.708777,0.901444,0.85777,0.039475,0.416208,0.310263,0.342487,0.514618,0.997983,0.214624,0.536872,0.730098,0.48542,0.00559276,0.981747,0.302629,0.709597,0.408077,0.692997,0.294933,0.290145,0.224215,0.859647,0.636109,0.657344,0.108798,0.957497,0.99976,0.691152,0.23383,0.9285,0.208034,0.545027,0.176514,0.731467,0.927348,0.0680437,0.390548,0.826416,0.331338,0.870489,0.766358,0.51848,0.565224,0.0777614,0.859861,0.859232,0.289884,0.382779,0.945068,0.922908,0.86225,0.574794,0.103224,0.9771,0.789985,4.45247e-05,0.00273657,0.856288,0.778472,0.868647,0.657191,0.609336,0.942766,0.281224,0.705661,0.224946,0.848983,0.551175,0.309692,0.234406,0.235961,0.790065,0.157462,0.512142,0.166471,0.312473,0.713401,0.640801,0.905562,0.645953,0.664619,0.685936,0.24617,0.211324,0.927323,0.257702,0.200547,0.878464,0.0924219,0.732784,0.398175,0.45048,0.83548,0.0801483,0.750474,0.235279,0.214076,0.174934,0.512555,0.3358,0.98068,0.134665,0.587151,0.221632,0.529324,0.528014,0.354983,0.821225,0.729752,0.502006,0.138383,0.642365,0.808658,0.977877,0.0496411,0.915794,0.197631,0.240799,0.102167,0.711026,0.997414,0.747104,0.889524,0.123776,0.0525653,0.532986,0.707115,0.855104,0.223353,0.0696377,0.187949,0.182304,0.277746,0.178085,0.380174,0.234605,0.275367,0.0324213,0.954512,0.212676,0.564485,0.764243,0.530338,0.658362,0.815249,0.751936,0.148531,0.735952,0.736938,0.346393,0.554412,0.232828,0.765332,0.777928,0.472503,0.0953934,0.40761,0.619381,0.666903,0.592351,0.893278,0.57226,0.962312,0.854726,0.830129,0.433005,0.37063,0.373962,0.675202,0.179472,0.0927815,0.649171,0.590117,0.263412,0.0782168,0.693538,0.113489,0.952662,0.641249,0.913205,0.999415,0.962642,0.404287,0.633523,0.164805,0.860553,0.528258,0.521611,0.583913,0.974404,0.682428,0.603186,0.447384,0.108741,0.164525,0.423231,0.983968,0.505798,0.16238,0.967703,0.198527,0.0185297,0.956504,0.307174,0.803044,0.260304,0.671168,0.270475,0.933827,0.6067,0.709584,0.931287,0.169006,0.17278,0.204495,0.64282,0.541363,0.795472,0.0409833,0.667624,0.613573,0.0650514,0.80058,0.760326,0.0275691,0.247892,0.635244,0.551947,0.852202,0.481994,0.286103,0.135198,0.362063,0.557201,0.869437,0.662301,0.439794,0.589068,0.424893,0.141352,0.242851,0.457772,0.258218,0.608199,0.779016,0.624104,0.59384,0.666624,0.702824,0.355528,0.651421,0.372252,0.464147,0.229679,0.704985,0.789636,0.549997,0.460169,0.783907,0.538,0.481727,0.240304,0.15884,0.861135,0.170654,0.0911452,0.548044,0.105052,0.65405,0.424206,0.368051,0.0349044,0.19844,0.884123,0.47196,0.185999,0.0369231,0.306064,0.315439,0.98753,0.520386,0.29904,0.915203,0.5694,0.706326,0.74754,0.321975,0.522197,0.189039,0.645048,0.197426,0.398684,0.377348,0.181118,0.475397,0.623356,0.879757,0.846266,0.417839,0.954349,0.0678086,0.667812,0.878139,0.210679,0.450953,0.981736,0.169925,0.805044,0.369865,0.375196,0.0461724,0.782441,0.830701,0.227232,0.349402,0.776714,0.547625,0.0409869,0.41576,0.762263,0.693723,0.565903,0.220484,0.358922,0.962208,0.163222,0.958907,0.664278,0.510101,0.804023,0.69659,0.23157,0.571352,0.685271,0.478504,0.969132,0.775138,0.637691,0.243228,0.128764,0.278766,0.619881,0.019475,0.731034,0.887829,0.753137,0.426172,0.470023,0.53959,0.363444,0.79257,0.732656,0.522124,0.533244,0.531942,0.718015,0.0740081,0.99477,0.796738,0.778346,0.842633,0.389991,0.55433,0.874515,0.939237,0.723797,0.0754779,0.446923,0.0637805,0.440002,0.22849,0.575164,0.453126,0.554586,0.717426,0.826888,0.199744,0.837428,0.675541,0.419233,0.868137,0.367539,0.936941,0.753353,0.93974,0.795677,0.474195,0.371356,0.134564,0.511676,0.630818,0.926098,0.719053,0.594153,0.45917,0.153667,0.922293,0.124597,0.286857,0.52185,0.185336,0.661048,0.684744,0.127231,0.960572,0.443678,0.3023,0.822181,0.321861,0.622997,0.954439,0.671578,0.944754,0.030573,0.995462,0.509722,0.873539,0.561436,0.0762916,0.596718,0.890354,0.818013,|0.948177,0.901281,0.355639,0.635909,0.665962,0.773812,0.418069,0.377582,0.804981,0.541348,0.388815,0.610169,0.263659,0.67007,0.898135,0.737194,0.548755,0.648733,0.985651,0.153247,0.814831,0.59431,0.0327216,0.867902,0.519278,0.928554,0.481715,0.0685791,0.989608,0.864121,0.724005,0.792791,0.0834182,0.882358,0.0255214,0.215687,0.9559,0.224719,0.620222,0.941915,0.457198,0.462761,0.542129,0.553579,0.51913,0.590137,0.501565,0.950822,0.654806,0.257544,0.139252,0.956579,0.875518,0.276231,0.353601,0.681441,0.055007,0.337442,0.15062,0.327924,0.721067,0.178274,0.958509,0.993309,0.4405,0.873336,0.675253,0.0939739,0.26234,0.220897,0.12493,0.854843,0.388981,0.565036,0.30499,0.315344,0.289523,0.268933,0.396543,0.98963,0.0789124,0.643863,0.298849,0.08949,0.418558,0.654007,0.432778,0.154709,0.104769,0.328,0.0382795,0.858509,0.660944,0.67242,0.361492,0.0519308,0.736912,0.535901,0.314867,0.224262,0.586292,0.952191,0.711289,0.192914,0.16589,0.0144683,0.96308,0.93988,0.21677,0.326453,0.773508,0.105254,0.913555,0.739315,0.33991,0.773513,0.389333,0.283732,0.0483626,0.0793688,0.227425,0.10262,0.343973,0.34816,0.903018,0.167544,0.251103,0.506936,0.839502,0.0385731,0.326959,0.816095,0.549264,0.995656,0.086219,0.695516,0.512643,0.0936375,0.0399536,0.38805,0.41971,0.0541939,0.327038,0.297273,0.896957,0.0267892,0.817614,0.418382,0.0962439,0.524841,0.630757,0.320201,0.65733,0.602816,0.713307,0.202806,0.0154179,0.989091,0.901868,0.529991,0.282673,0.0434558,0.0831417,0.955421,0.439234,0.676008,0.516256,0.374266,0.680753,0.747559,0.992149,0.227797,0.119874,0.567765,0.626095,0.580574,0.945856,0.360305,0.513662,0.538957,0.504823,0.260213,0.972146,0.237827,0.944539,0.184113,0.395303,0.466475,0.673638,0.235734,0.0104511,0.632983,0.978135,0.554521,0.480524,0.0134007,0.326551,0.746779,0.494393,0.0923454,0.561923,0.546819,0.705547,0.0850967,0.54006,0.0683429,0.0543621,0.353498,0.679883,0.095077,0.432492,0.680732,0.0509171,0.0276307,0.7696,0.776815,0.562685,0.16611,0.664837,0.0218231,0.0588185,0.54272,0.612723,0.249906,0.889516,0.711677,0.69841,0.152318,0.387795,0.425238,0.670281,0.724234,0.932497,0.118427,0.423702,0.819205,0.353447,0.322111,0.387172,0.938263,0.432469,0.443598,0.903408,0.0190716,0.169024,0.0139894,0.511,0.601098,0.937264,0.206601,0.499959,0.918028,0.630613,0.418742,0.422764,0.961258,0.145817,0.411344,0.707023,0.148536,0.158438,0.272447,0.95592,0.565148,0.0681064,0.213568,0.507545,0.940741,0.167202,0.351295,0.951587,0.321542,0.117181,0.724786,0.539499,0.706413,0.177847,0.426384,0.785738,0.811488,0.0724233,0.919432,0.882429,0.83203,0.892576,0.263529,0.768238,0.430851,0.190549,0.213115,0.792465,0.717519,0.305861,0.459915,0.817242,0.806603,0.304919,0.898505,0.696315,0.545299,0.574155,0.335094,0.893882,0.763706,0.562186,0.612639,0.0722604,0.380341,0.250418,0.734811,0.00436896,0.335242,0.391324,0.541035,0.504824,0.30119,0.312401,0.888557,0.67523,0.365991,0.996221,0.180642,0.933017,0.500602,0.327402,0.0127219,0.508703,0.33248,0.878904,0.851927,0.736378,0.700103,0.833048,0.550587,0.775327,0.715325,0.340384,0.00683481,0.0481164,0.811016,0.526126,0.446227,0.248211,0.856207,0.134225,0.16185,0.195599,0.527081,0.214162,0.765429,0.0911333,0.383261,0.977665,0.688221,0.317712,0.144068,0.980523,0.670697,0.711994,0.422024,0.881618,0.190134,0.95148,0.199795,0.260551,0.730565,0.0643018,0.204398,0.646507,0.526466,0.552351,0.109533,0.363653,0.357492,0.718341,0.677639,0.476899,0.493854,0.56267,0.713828,0.108103,0.887,0.635279,0.0414225,0.964479,0.494616,0.616714,0.87717,0.582237,0.167509,0.0827018,0.673859,0.809729,0.391633,0.672893,0.825788,0.329904,0.41538,0.0580572,0.251128,0.307322,0.401998,0.64131,0.278155,0.471215,0.996879,0.440621,0.747374,0.508491,0.653883,0.757463,0.819281,0.478284,0.727226,0.561552,0.723403,0.744681,0.32998,0.965553,0.410602,0.00116324,0.397645,0.44479,0.736035,0.094022,0.896292,0.0520148,0.335046,0.994427,0.811989,0.0604464,0.387572,0.320081,0.112099,0.982757,0.314653,0.317873,0.954927,0.765644,0.741237,0.225204,0.261604,0.21928,0.82128,0.42794,0.327499,0.98983,0.163325,0.317922,0.533278,0.216846,0.677723,0.628259,0.918079,0.951141,0.564226,0.540827,0.113203,0.929091,0.629959,0.306746,0.169875,0.663331,0.0773675,0.964061,0.363676,0.197279,0.665612,0.0627698,0.433842,0.333411,0.708774,0.219723,0.832746,0.523259,0.245112,0.338191,0.49162,0.738952,0.387173,0.728968,0.652325,0.633559,0.880633,0.262838,0.0112342,0.562729,0.471377,0.926549,0.960398,0.328154,0.247954,0.826044,0.550292,0.0615041,0.348117,0.690354,0.0802174,0.188295,0.360037,0.910629,0.252232,0.0707165,0.601841,0.0843151,0.271926,0.114918,0.434717,0.784932,0.0795565,0.702311,0.914301,0.347435,0.937013,0.411106,0.0698215,0.132662,0.368988,0.9064,0.903952,0.593619,0.185649,0.933381,0.341345,0.569491,0.992211,0.908249,0.827313,0.0336901,0.915622,0.645248,0.662729,0.0100525,0.56624,0.375807,0.490564,0.978072,0.478505,0.535076,0.613059,0.59338,0.321963,0.993088,0.014412,0.885902,0.803407,0.439818,0.422647,0.255038,0.821566,0.583364,0.13558,0.850798,0.0254992,0.820679,0.117026,0.483908,0.724491,0.599125,0.789023,0.267163,0.429047,0.625982,0.413993,0.594092,0.65221,0.0338999,0.127026,0.160343,0.00108588,0.0691375,0.0151451,0.202788,0.892281,0.105737,0.27318,0.541458,0.163052,0.937933,0.55573,0.877359,0.376067,0.159271,0.276111,0.164437,0.516517,0.304389,0.0710346,0.463507,0.591505,0.0298649,0.0922915,0.0784143,0.300973,0.401411,0.449716,0.519108,0.247603,0.0152201,0.873652,0.764181,0.789861,0.238948,0.260081,0.455054,0.146997,0.767733,0.118322,0.56699,0.508037,0.043008,0.694584,0.831556,0.00186026,0.25601,0.608613,0.498113,0.0374581,0.482438,0.126917,0.841803,0.840354,0.701352,0.627323,0.325807,0.461845,0.417576,0.900698,0.795745,0.63431,0.652369,0.389036,0.570957,0.988813,0.513057,0.696043,0.419105,0.276344,0.226847,0.320603,0.825678,0.0104594,0.0714754,0.845857,0.563278,0.603809,0.596284,0.356347,0.897873,0.28704,0.480774,0.876465,0.508232,0.687645,0.237015,0.97598,0.465867,0.251306,0.242096,0.773538,0.186664,0.74959,0.148076,0.717606,0.778656,0.555704,0.396378,0.426243,0.926782,0.19032,0.301998,0.693886,0.625061,0.369486,0.980409,0.120118,0.483873,0.440167,0.649483,0.836875,0.404338,0.103284,0.885193,0.22246,0.974492,0.384967,0.107163,0.253071,0.560909,0.570462,0.790313,0.079464,0.68982,0.134966,0.304811,0.337759,0.957249,0.96774,0.779346,0.455544,0.695712,0.0734027,0.14531,0.587232,0.174108,0.759183,0.284356,0.851353,0.297885,0.522555,0.930578,0.920147,0.413109,0.134625,0.239732,0.497076,0.115337,0.443325,0.549107,0.0265986,0.982315,0.749816,0.170256,0.22274,0.905576,0.0881724,0.904957,0.746858,0.591586,0.333964,0.696131,0.721722,0.448476,0.707222,0.243127,0.252998,0.305322,0.980743,0.553396,0.342288,0.44179,0.780936,0.211887,0.751922,0.954036,0.573977,0.912985,0.674742,0.861905,0.266637,0.819419,0.288308,0.976142,0.599041,0.82678,0.686656,0.679908,0.393828,0.20924,0.583636,0.0231214,0.494026,0.821802,0.880102,0.758911,0.659838,0.802724,0.452043,0.450154,0.294162,0.398819,0.140903,0.353773,0.2456,0.55878,0.895395,0.784032,0.87028,0.555587,0.432031,0.575032,0.872381,0.547822,0.969774,0.407439,0.992662,0.725202,0.642703,0.923786,0.947283,0.512065,0.0571151,0.9054,0.792785,0.0887159,0.817303,0.391518,0.142115,0.882591,0.0282958,0.99411,0.150658,0.202034,0.162979,0.941232,0.944704,0.19054,0.324051,0.883742,0.684387,0.942614,0.115665,0.593783,0.259515,0.528423,0.476312,0.467737,0.199049,0.804553,0.644279,0.457973,0.229833,0.601634,0.286435,0.129644,0.740474,0.167185,0.794629,0.201708,0.440418,0.10568,0.688384,0.696453,0.557052,0.128379,0.313491,0.309177,0.271142,0.354299,0.49777,0.123321,0.932098,0.489537,0.256268,0.145772,0.169893,0.971275,0.195122,0.879905,0.303308,0.685937,0.575327,0.796851,0.22073,0.748806,0.188724,0.794769,0.7497,0.791063,0.155032,0.0676091,0.87286,0.437198,0.139024,0.268857,0.652407,0.811704,0.71838,0.93859,0.313337,0.880644,0.81602,0.19963,0.763367,0.312789,0.334616,0.674677,0.929016,0.638109,0.0531368,0.579888,0.863412,0.66059,0.745896,0.833324,0.512248,0.88792,0.868967,0.0120938,0.94844,0.666263,0.858979,0.944016,0.803301,0.655988,0.245614,0.450997,0.972075,0.675761,0.506476,0.870223,0.259762,0.682954,0.12072,0.266279,0.0639703,0.718884,0.660411,0.223958,0.686549,0.630256,0.14713,0.606525,0.0515328,0.0109462,0.563161,0.29238,0.290034,0.146075,0.529307,0.474412,0.217481,0.191597,0.741072,0.287838,0.321945,0.694116,0.438077,0.299602,0.729303,0.835971,0.641739,0.549121,0.586565,0.334765,0.393027,0.0553256,0.455194,0.887565,0.303708,0.953677,0.853217,0.353652,0.406715,0.309034,0.0374663,0.0304688,0.345518,0.316751,0.936743,0.490584,0.138657,0.0816228,0.466672,0.237279,0.640219,0.299888,0.067153,0.188194,0.167293,0.105758,0.345731,0.1306,0.171403,0.641769,0.117411,0.0124726,0.326937,0.287311,0.262651,0.334725,0.801849,0.362808,0.182201,0.92504,0.148454,0.0498111,0.758063,0.0508826,0.756617,0.698558,0.113005,0.0541849,0.737345,0.943465,0.692523,0.268923,0.625912,0.67118,0.829713,0.317571,0.102408,0.99546,0.185518,0.410733,0.437521,0.348888,0.502469,0.336735,0.253737,|0.759158,0.606962,0.950742,0.38816,0.851438,0.872613,0.141416,0.834278,0.513515,0.454448,0.637045,0.968906,0.112015,0.469439,0.81474,0.91096,0.119102,0.603768,0.463553,0.613862,0.46663,0.44696,0.741773,0.470936,0.0066061,0.960713,0.488344,0.0631738,0.523981,0.980046,0.388106,0.126222,0.218254,0.642013,0.0985289,0.341444,0.190076,0.537751,0.577032,0.646683,0.286005,0.485859,0.315343,0.60454,0.414223,0.143244,0.394332,0.123901,0.0538487,0.45442,0.904235,0.530955,0.389349,0.450414,0.108586,0.55744,0.996671,0.966497,0.0971669,0.359223,0.896331,0.242899,0.00811243,0.572994,0.880369,0.966694,0.821797,0.169505,0.544219,0.752495,0.986021,0.334491,0.789348,0.528221,0.0362545,0.27258,0.808675,0.797391,0.613257,0.215218,0.497727,0.0882557,0.465937,0.856639,0.716481,0.4654,0.476177,0.00724566,0.163678,0.647749,0.0998902,0.612684,0.809872,0.31837,0.375665,0.304343,0.319806,0.923096,0.462226,0.098027,0.419551,0.36941,0.765111,0.208381,0.905848,0.743224,0.504822,0.00719684,0.398771,0.413336,0.206057,0.564011,0.0560421,0.710136,0.716734,0.542107,0.547902,0.402238,0.92575,0.482003,0.58682,0.445751,0.972508,0.230788,0.54619,0.541616,0.986465,0.344242,0.025965,0.993599,0.700382,0.89579,0.856133,0.0114446,0.69709,0.0933236,0.306918,0.614823,0.808021,0.59838,0.0827029,0.664263,0.0717586,0.718296,0.802447,0.934606,0.445032,0.578736,0.644524,0.0554903,0.137287,0.620705,0.477999,0.582028,0.141336,0.293724,0.412696,0.790417,0.018616,0.584467,0.22583,0.167499,0.523071,0.0297817,0.960029,0.584122,0.7529,0.534459,0.510516,0.771974,0.724581,0.586891,0.821671,0.208961,0.355664,0.762904,0.359598,0.865125,0.55889,0.356849,0.862037,0.619727,0.703633,0.0520803,0.078208,0.518274,0.273372,0.744563,0.0289559,0.610904,0.852923,0.77372,0.980679,0.0392659,0.325697,0.730239,0.2146,0.222965,0.246571,0.66508,0.39169,0.539296,0.0929907,0.00213033,0.588183,0.0959243,0.378357,0.229481,0.0766262,0.22963,0.206995,0.662033,0.0318453,0.180368,0.165639,0.754872,0.260342,0.211544,0.678779,0.507119,0.805126,0.552835,0.728009,0.646867,0.0401842,0.878723,0.339888,0.530965,0.347913,0.0606525,0.590859,0.860763,0.376934,0.253953,0.213601,0.476919,0.54087,0.907844,0.0070672,0.302663,0.988708,0.244344,0.817874,0.0862899,0.449501,0.411136,0.0648239,0.384492,0.263333,0.725013,0.587894,0.324962,0.988848,0.347733,0.692923,0.890805,0.588192,0.350891,0.493035,0.011116,0.684965,0.0490212,0.922162,0.535834,0.989732,0.731194,0.0246679,0.241123,0.810548,0.811998,0.245784,0.529801,0.180891,0.874387,0.279699,0.577593,0.574239,0.419716,0.28618,0.177797,0.330151,0.858149,0.717375,0.682533,0.65867,0.306333,0.261455,0.319845,0.288542,0.666593,0.0935915,0.398283,0.60812,0.837802,0.581408,0.839984,0.699867,0.399176,0.849839,0.634044,0.0999637,0.0063737,0.167377,0.466815,0.747015,0.525178,0.944428,0.947799,0.39883,0.00334603,0.152974,0.768778,0.669582,0.557024,0.886969,0.297982,0.390948,0.965502,0.152789,0.701957,0.96179,0.0691822,0.825581,0.976328,0.613665,0.526921,0.931879,0.427181,0.0479538,0.971226,0.402856,0.88161,0.50109,0.590252,0.176823,0.182943,0.832575,0.555376,0.485531,0.922151,0.936199,0.112646,0.230612,0.222932,0.867114,0.544538,0.468907,0.238166,0.180294,0.887742,0.844606,0.029741,0.442319,0.518386,0.514677,0.0710189,0.00129575,0.0735624,0.560487,0.727326,0.964277,0.00519288,0.615322,0.36587,0.739198,0.742355,0.83014,0.583865,0.248748,0.817171,0.6621,0.960697,0.717775,0.950734,0.124643,0.369203,0.142157,0.536956,0.973278,0.92049,0.472872,0.752539,0.870597,0.523451,0.757302,0.035603,0.0747845,0.839324,0.525672,0.951486,0.462243,0.0935501,0.0315237,0.247911,0.77318,0.127352,0.447698,0.823318,0.817912,0.120346,0.509019,0.313035,0.202031,0.587901,0.293824,0.209542,0.0664242,0.775118,0.43541,0.434302,0.269332,0.654119,0.669328,0.605247,0.497218,0.0788237,0.261857,0.513762,0.0294818,0.0133094,0.281117,0.948053,0.619696,0.907897,0.647855,0.0404192,0.50795,0.519841,0.498498,0.376567,0.454143,0.161612,0.908128,0.771157,0.348619,0.466332,0.250508,0.942105,0.983359,0.691408,0.394223,0.478049,0.910068,0.156804,0.519438,0.0927628,0.593541,0.853298,0.816918,0.841003,0.0450665,0.138863,0.714334,0.295794,0.634579,0.347744,0.123873,0.797953,0.318281,0.544265,0.365279,0.885137,0.901262,0.669486,0.0127063,0.43423,0.54374,0.627662,0.448104,0.0512242,0.360277,0.161284,0.260234,0.508301,0.0255435,0.0551906,0.590629,0.821288,0.374672,0.525806,0.595217,0.486459,0.520699,0.583373,0.0029965,0.142043,0.87364,0.313708,0.929313,0.859846,0.23615,0.590763,0.357485,0.384021,0.935758,0.649285,0.149539,0.384616,0.378655,0.153978,0.857806,0.348723,0.915034,0.856966,0.620586,0.586774,0.165641,0.809771,0.789948,0.23598,0.77672,0.864425,0.8044,0.338189,0.0138742,0.112975,0.414332,0.884779,0.29787,0.0145724,0.904686,0.681043,0.665253,0.719379,0.18705,0.226016,0.326971,0.644341,0.500176,0.911328,0.443472,0.308087,0.890177,0.316425,0.849115,0.747607,0.918542,0.123814,0.53864,0.924411,0.990042,0.643557,0.624579,0.855974,0.638367,0.886662,0.495247,0.0144593,0.867569,0.0451614,0.548203,0.382298,0.729719,0.36687,0.856904,0.998864,0.73652,0.995261,0.0368629,0.873097,0.122627,0.884956,0.0693044,0.0372037,0.791513,0.773056,0.566808,0.0635104,0.847735,0.324378,0.615116,0.757687,0.575363,0.981701,0.875657,0.849252,0.0833279,0.979646,0.263362,0.831223,0.849291,0.657203,0.106086,0.655746,0.581914,0.176278,0.0337511,0.538817,0.210169,0.28524,0.309396,0.545111,0.282922,0.226239,0.200118,0.825051,0.0821123,0.64323,0.573005,0.391166,0.629876,0.572458,0.586072,0.535929,0.749301,0.86635,0.662792,0.494114,0.751493,0.252414,0.524536,0.465208,0.763382,0.0652149,0.259116,0.178181,0.307186,0.122456,0.530302,0.690667,0.678955,0.566502,0.397274,0.948097,0.675699,0.34876,0.809162,0.79274,0.522784,0.427818,0.355867,0.539842,0.17245,0.488489,0.463711,0.308233,0.858213,0.921375,0.228176,0.054602,0.800501,0.257847,0.353577,0.586289,0.68894,0.693588,0.578007,0.88834,0.492411,0.789623,0.361485,0.504495,0.279862,0.723919,0.767353,0.341804,0.900025,0.530257,0.571638,0.35917,0.859424,0.282877,0.279183,0.602233,0.988289,0.191251,0.511542,0.803054,0.990613,0.468098,0.965308,0.780367,0.658356,0.308333,0.163709,0.91671,0.215454,0.194715,0.312935,0.0442387,0.133406,0.514178,0.426602,0.20999,0.764369,0.814116,0.127533,0.0269375,0.871053,0.917145,0.78569,0.424338,0.0579417,0.849601,0.911418,0.410614,0.246375,0.918064,0.868507,0.554329,0.458871,0.386257,0.297662,0.192199,0.36939,0.78688,0.930332,0.138555,0.747689,0.376314,0.805376,0.785211,0.67054,0.807041,0.263048,0.733468,0.378692,0.239801,0.0803182,0.564761,0.71869,0.0620819,0.466588,0.788137,0.463488,0.750223,0.523491,0.391141,0.513811,0.225886,0.722395,0.730852,0.8565,0.706384,0.301799,0.788454,0.028059,0.922175,0.1306,0.627873,0.697371,0.311454,0.0139345,0.0214296,0.432516,0.232426,0.513805,0.0308316,0.503406,0.586966,0.1774,0.217842,0.513757,0.585943,0.195271,0.645124,0.873253,0.225395,0.153609,0.426884,0.581131,0.972164,0.755997,0.451947,0.242725,0.590449,0.538713,0.165113,0.182485,0.813204,0.951632,0.282531,0.527555,0.239034,0.0721893,0.805144,0.345712,0.407976,0.162204,0.639175,0.101318,0.960456,0.790403,0.930156,0.598395,0.267717,0.0030933,0.472708,0.820681,0.643383,0.173458,0.493826,0.395261,0.00136501,0.346841,0.859632,0.602492,0.290702,0.726722,0.815247,0.311466,0.361685,0.281767,0.00790191,0.140757,0.0670478,0.873389,0.889049,0.864323,0.660271,0.00534433,0.953814,0.0577921,0.480249,0.0977095,0.451844,0.700826,0.405477,0.834945,0.52314,0.255032,0.560417,0.401761,0.59213,0.544377,0.690878,0.380191,0.213299,0.15914,0.0926654,0.453487,0.493899,0.599852,0.0198854,0.610742,0.976184,0.57298,0.435048,0.867195,0.231275,0.516762,0.757218,0.611005,0.460893,0.824732,0.222252,0.207677,0.0515668,0.315485,0.905636,0.0417722,0.773818,0.179621,0.686467,0.344264,0.964935,0.659635,0.167896,0.424587,0.00212264,0.101973,0.304785,0.251488,0.434577,0.0818346,0.333401,0.712451,0.622301,0.268912,0.948866,0.34231,0.568396,0.75048,0.12996,0.253384,0.35703,0.149003,0.323594,0.233319,0.753374,0.341065,0.999722,0.194644,0.192221,0.528024,0.918655,0.798667,0.792895,0.911021,0.203383,0.313769,0.261646,0.53577,0.327984,0.855132,0.159303,0.646548,0.668905,0.676756,0.394622,0.519995,0.71518,0.818295,0.825734,0.86198,0.0898781,0.688759,0.580518,0.388159,0.6173,0.132505,0.338714,0.285674,0.597606,0.748607,0.558349,0.37784,0.335367,0.26161,0.141452,0.976529,0.992647,0.171328,0.463896,0.78519,0.38872,0.479874,0.296633,0.683148,0.386124,0.27161,0.879425,0.919443,0.100084,0.0462639,0.998653,0.983728,0.862895,0.259488,0.597804,0.68257,0.921259,0.898888,0.691207,0.196751,0.495931,0.141867,0.442639,0.552287,0.353516,0.807245,0.0943876,0.380641,0.887521,0.0499847,0.833836,0.125675,0.64246,0.430471,0.384291,0.0981644,0.225852,0.754404,0.864948,0.65799,0.269569,0.924327,0.0133419,0.472352,0.173557,0.274765,0.32475,0.980259,0.772407,0.00566071,0.496514,0.0540071,0.0327826,0.938981,0.900137,0.174726,0.87494,0.147091,0.594886,0.940978,0.414601,0.599497,0.957405,0.551556,0.847793,0.536973,0.837948,0.645238,0.747017,0.941266,0.240971,0.605117,0.621278,0.545028,0.895695,|0.771372,0.430693,0.328402,0.804905,0.0481806,0.860277,0.943464,0.215078,0.80029,0.432112,0.93975,0.781876,0.271659,0.612743,0.497849,0.905679,0.953958,0.917728,0.928263,0.916829,0.969973,0.387266,0.347681,0.558152,0.666748,0.797465,0.244837,0.424565,0.4015,0.776702,0.24524,0.274082,0.346189,0.117781,0.13024,0.843792,0.462368,0.437356,0.334675,0.119926,0.92547,0.117008,0.452294,0.193832,0.0811138,0.955206,0.172849,0.422426,0.267436,0.921324,0.954734,0.713458,0.216458,0.493533,0.516381,0.273589,0.0643441,0.509061,0.00752676,0.301035,0.505057,0.9994,0.678186,0.496284,0.787893,0.428708,0.722292,0.0326262,0.889391,0.419298,0.859011,0.38316,0.771868,0.439908,0.270283,0.645226,0.0429493,0.135157,0.645509,0.0738429,0.599521,0.355528,0.167557,0.375552,0.0275251,0.376481,0.559211,0.613956,0.918532,0.862899,0.571656,0.768353,0.263109,0.180496,0.278536,0.101692,0.489443,0.0937596,0.0866456,0.438422,0.841788,0.774188,0.101422,0.514971,0.904533,0.00737154,0.0179807,0.167272,0.164218,0.00557595,0.244537,0.617117,0.417565,0.417609,0.439066,0.122757,0.322262,0.44859,0.76541,0.292436,0.928429,0.792889,0.0737979,0.0876241,0.829054,0.126619,0.847386,0.750001,0.125543,0.969064,0.724802,0.223309,0.629248,0.190264,0.910327,0.836168,0.782114,0.179038,0.0822589,0.939794,0.345934,0.11196,0.638025,0.684034,0.726758,0.475812,0.278353,0.520647,0.246398,0.254502,0.219711,0.454947,0.0932724,0.198172,0.33489,0.110747,0.469592,0.397462,0.117886,0.909555,0.360393,0.862762,0.756547,0.922841,0.605592,0.468608,0.0484113,0.197441,0.762301,0.754576,0.584635,0.934542,0.932175,0.959948,0.0201748,0.156959,0.101434,0.461106,0.917765,0.424615,0.0761538,0.206802,0.204712,0.406622,0.842174,0.390569,0.0274416,0.234747,0.26143,0.505617,0.592487,0.306427,0.195686,0.960564,0.653089,0.0258096,0.638133,0.582762,0.805147,0.0253195,0.723258,0.0839457,0.431751,0.512189,0.336494,0.0659292,0.106977,0.234369,0.0570965,0.0494598,0.205551,0.57103,0.672866,0.476997,0.465865,0.514751,0.702787,0.770149,0.813928,0.746434,0.611226,0.541274,0.78781,0.625184,0.661535,0.924853,0.139191,0.357275,0.400774,0.0258237,0.332764,0.91434,0.141675,0.113127,0.900984,0.343269,0.839457,0.778604,0.947761,0.223555,0.446959,0.429967,0.406626,0.147734,0.865733,0.701487,0.463042,0.107896,0.919857,0.308273,0.101755,0.0980784,0.389278,0.294058,0.0426188,0.970652,0.278305,0.296482,0.128454,0.711807,0.340149,0.137852,0.396582,0.406219,0.155861,0.881099,0.976204,0.948126,0.79465,0.021859,0.541056,0.0711157,0.187183,0.561546,0.596905,0.582589,0.746884,0.767125,0.0378146,0.932002,0.625545,0.667119,0.214746,0.156049,0.232418,0.890991,0.406319,0.252541,0.120832,0.922315,0.0692816,0.39536,0.782571,0.454544,0.561996,0.873908,0.334834,0.141731,0.532226,0.101754,0.258969,0.951485,0.266442,0.618943,0.183309,0.65162,0.532315,0.247858,0.605232,0.546824,0.746823,0.00732511,0.507793,0.613121,0.548575,0.149298,0.480607,0.534565,0.186369,0.110003,0.551205,0.0628616,0.0336878,0.254328,0.954664,0.494742,0.463223,0.243006,0.991363,0.172789,0.509001,0.0832943,0.527779,0.154483,0.337116,0.724822,0.567373,0.848678,0.555793,0.338033,0.354062,0.50985,0.892086,0.584834,0.408461,0.515079,0.763005,0.977028,0.129616,0.653903,0.793763,0.557726,0.115156,0.478742,0.757299,0.466715,0.420354,0.42592,0.430896,0.100928,0.294862,0.521581,0.560128,0.0053913,0.503631,0.230979,0.868956,0.341166,0.113123,0.365047,0.994039,0.0603703,0.0415747,0.697183,0.157759,0.156103,0.102815,0.802543,0.875607,0.113175,0.604241,0.366076,0.982405,0.0652878,0.893025,0.444581,0.249059,0.881092,0.593206,0.781207,0.615737,0.229703,0.229434,0.625659,0.756113,0.918841,0.256932,0.668138,0.357397,0.443529,0.957111,0.306376,0.556583,0.873926,0.482279,0.476213,0.00580883,0.382868,0.853075,0.942305,0.786955,0.420021,0.91958,0.795955,0.682672,0.694615,0.914266,0.00934744,0.027868,0.0380374,0.315184,0.684712,0.436937,0.551653,0.953321,0.186418,0.0406184,0.132634,0.540307,0.621442,0.65248,0.699827,0.63178,0.287903,0.0332454,0.804165,0.967681,0.945031,0.530204,0.402402,0.860343,0.0619476,0.922935,0.794499,0.748789,0.756181,0.854899,0.923271,0.946768,0.823026,0.950417,0.125184,0.994314,0.698355,0.020227,0.505287,0.432696,0.852961,0.147123,0.256804,0.425211,0.318596,0.86932,0.810838,0.952995,0.401938,0.73583,0.112452,0.942846,0.64817,0.17887,0.851817,0.715099,0.39978,0.224853,0.161009,0.168511,0.609858,0.163746,0.951884,0.775469,0.235462,0.847609,0.380821,0.229551,0.974209,0.281513,0.064885,0.156953,0.999994,0.991401,0.843387,0.712477,0.607239,0.315918,0.65033,0.20512,0.822333,0.468405,0.426164,0.245447,0.659629,0.580384,0.328197,0.474482,0.877539,0.241815,0.199873,0.0692333,0.511782,0.175354,0.639995,0.869616,0.95498,0.612795,0.180812,0.47296,0.0967442,0.44908,0.0880323,0.20978,0.428984,0.282743,0.981129,0.232956,0.151407,0.247601,0.684689,0.554837,0.892136,0.619586,0.663113,0.754601,0.1386,0.200993,0.388111,0.559858,0.413429,0.55163,0.261528,0.453519,0.594486,0.258047,0.36601,0.0166573,0.489866,0.397704,0.423243,0.419619,0.712216,0.184266,0.899049,0.328687,0.631925,0.578047,0.706105,0.612979,0.409497,0.391664,0.524326,0.459649,0.210599,0.316392,0.708161,0.845643,0.215501,0.850784,0.246147,0.483968,0.932101,0.582744,0.944524,0.36077,0.624032,0.121838,0.330899,0.794812,0.533,0.386716,0.347884,0.915146,0.816428,0.88975,0.116089,0.644523,0.634519,0.305154,0.384977,0.0146971,0.498304,0.931182,0.576882,0.0713192,0.744568,0.198872,0.682016,0.591889,0.623456,0.789996,0.218619,0.745141,0.541227,0.281403,0.336665,0.722726,0.775879,0.788253,0.714934,0.884173,0.740733,0.821884,0.0823781,0.680377,0.0634954,0.903497,0.335495,0.989461,0.570084,0.122942,0.909696,0.494646,0.224471,0.450867,0.329472,0.668225,0.993886,0.376536,0.199067,0.928556,0.725488,0.504036,0.99421,0.697507,0.616024,0.866174,0.277497,0.329992,0.614742,0.502967,0.625028,0.213108,0.927132,0.475754,0.491908,0.493052,0.788998,0.30342,0.109031,0.550258,0.170448,0.58266,0.506555,0.294741,0.990256,0.605427,0.514578,0.543896,0.532505,0.470002,0.665942,0.386624,0.741424,0.107023,0.952967,0.995871,0.107076,0.57328,0.217998,0.457688,0.566295,0.241892,0.281171,0.00924695,0.23277,0.246287,0.792872,0.624923,0.17784,0.825016,0.545451,0.856365,0.824238,0.787704,0.315959,0.0786167,0.974964,0.857957,0.419531,0.936837,0.427968,0.0929643,0.267518,0.53046,0.10589,0.0693995,0.615784,0.707061,0.0581127,0.305414,0.256313,0.60199,0.427215,0.930557,0.128293,0.849537,0.914675,0.272292,0.189941,0.0479697,0.475205,0.869058,0.486785,0.613008,0.108005,0.279413,0.6653,0.198313,0.456812,0.553726,0.665923,0.818651,0.365184,0.479275,0.486549,0.969667,0.883939,0.0266861,0.605156,0.36043,0.793885,0.506138,0.325349,0.418177,0.0583465,0.00365937,0.769222,0.129657,0.726011,0.683835,0.0827654,0.900706,0.800165,0.94175,0.20151,0.640075,0.26543,0.549449,0.625763,0.153307,0.511309,0.966834,0.657076,0.797928,0.96281,0.355072,0.598204,0.647957,0.146018,0.783251,0.184645,0.217696,0.547224,0.744343,0.955423,0.901097,0.980133,0.0985307,0.181965,0.699071,0.513628,0.00219929,0.414483,0.65299,0.0844923,0.279621,0.032092,0.757022,0.656689,0.717439,0.354667,0.228014,0.99076,0.607938,0.0883394,0.755467,0.730712,0.105706,0.853829,0.73026,0.477648,0.694876,0.212963,0.193739,0.972603,0.116324,0.315944,0.00460792,0.193074,0.288589,0.814156,0.0618698,0.152594,0.9863,0.772179,0.604103,0.608812,0.150376,0.819232,0.678543,0.35157,0.500744,0.0080294,0.378706,0.00612503,0.50273,0.994819,0.685661,0.618711,0.251376,0.752709,0.634209,0.414417,0.496184,0.53848,0.33101,0.58693,0.026861,0.13446,0.713088,0.801665,0.220488,0.337655,0.662421,0.192039,0.711061,0.69392,0.497986,0.326937,0.650012,0.941257,0.835826,0.480125,0.44319,0.313021,0.782314,0.824462,0.566095,0.895365,0.96818,0.386038,0.904641,0.87258,0.658446,0.549167,0.0956314,0.622982,0.334811,0.579963,0.913802,0.0812979,0.0871247,0.992166,0.0592811,0.401381,0.856562,0.344552,0.260856,0.511653,0.152065,0.168326,0.738324,0.232033,0.35192,0.342512,0.2438,0.651001,0.0924913,0.367734,0.466524,0.618687,0.127878,0.343559,0.853438,0.071461,0.294666,0.0227839,0.819011,0.650777,0.0372747,0.686393,0.553412,0.736999,0.14487,0.999192,0.759174,0.816598,0.310475,0.929031,0.247663,0.747272,0.504918,0.550623,0.474249,0.46209,0.572868,0.433634,0.0862487,0.230261,0.643907,0.70369,0.718727,0.343472,0.799145,0.421433,0.753075,0.176794,0.213332,0.394815,0.983808,0.562967,0.537663,0.712328,0.635973,0.847712,0.974577,0.745806,0.486124,0.0438164,0.572647,0.782631,0.999456,0.904544,0.438474,0.106502,0.32535,0.716321,0.837853,0.280687,0.375638,0.0186968,0.432931,0.582138,0.0898899,0.534252,0.513834,0.701852,0.678523,0.0160731,0.694711,0.361683,0.173199,0.406985,0.483583,0.748686,0.907272,0.963827,0.420814,0.404317,0.771115,0.991316,0.424631,0.159658,0.649689,0.15999,0.0702378,0.248459,0.0945922,0.561414,0.675343,0.44564,0.631212,0.696998,0.0623305,0.578595,0.216589,0.116932,0.311714,0.732071,0.832203,0.957892,0.945266,0.623121,0.594155,0.199964,0.471964,0.282747,0.274956,0.347382,0.210309,0.210163,0.988261,0.824427,0.0180262,0.342227,0.521596,0.87096,0.913771,0.525282,0.643289,0.519623,|0.491658,0.84519,0.470517,0.901186,0.690867,0.994343,0.877095,0.572025,0.415252,0.161606,0.954628,0.784513,0.450221,0.684736,0.610891,0.573967,0.853135,0.744532,0.271581,0.941676,0.0627093,0.742513,0.840074,0.392325,0.884775,0.196647,0.709064,0.0142131,0.827483,0.157939,0.462002,0.270419,0.459775,0.193706,0.87447,0.187312,0.457452,0.422038,0.0155745,0.372232,0.875342,0.698885,0.184478,0.32609,0.448722,0.147117,0.00331974,0.979717,0.438773,0.141046,0.175692,0.967566,0.5727,0.613532,0.0873094,0.572421,0.506309,0.104226,0.950697,0.615877,0.741063,0.913277,0.121863,0.698052,0.897617,0.685589,0.0627154,0.484133,0.358798,0.983128,0.809054,0.153356,0.0835955,0.562552,0.736537,0.542095,0.0646219,0.243356,0.227619,0.304497,0.751775,0.347803,0.789768,0.517424,0.624188,0.476528,0.265583,0.149217,0.0920413,0.55764,0.629065,0.952443,0.988559,0.46326,0.00671095,0.211478,0.197017,0.902615,0.69814,0.129798,0.727156,0.523802,0.921411,0.897916,0.22699,0.627657,0.271926,0.248291,0.127847,0.708999,0.283332,0.0838103,0.284852,0.107687,0.270896,0.279919,0.477038,0.153534,0.968088,0.20774,0.274293,0.55878,0.232408,0.75111,0.0535625,0.65494,0.30917,0.932412,0.851244,0.076476,0.054023,0.911298,0.252979,0.706038,0.485991,0.540047,0.425589,0.681368,0.0208037,0.147393,0.048914,0.996694,0.455375,0.149961,0.835992,0.753035,0.821119,0.405757,0.385122,0.256735,0.975425,0.588933,0.518493,0.968843,0.0859589,0.850416,0.326088,0.598972,0.0593269,0.479021,0.570295,0.163162,0.244829,0.162621,0.732445,0.0641373,0.560273,0.747072,0.349284,0.221803,0.00317746,0.980683,0.843208,0.906952,0.546386,0.314933,0.0686336,0.353348,0.180958,0.177784,0.833005,0.471209,0.715236,0.0850149,0.699734,0.0616217,0.1841,0.670062,0.981606,0.168017,0.177396,0.35632,0.672403,0.0688923,0.279275,0.699,0.623147,0.86173,0.472184,0.0103539,0.438369,0.158037,0.0796113,0.314375,0.991032,0.398048,0.663343,0.393897,0.0942851,0.12037,0.644889,0.391571,0.77831,0.546148,0.952711,0.633255,0.957916,0.411666,0.102305,0.191428,0.467243,0.485414,0.149319,0.745486,0.756796,0.870105,0.411996,0.210695,0.568026,0.576852,0.781201,0.259536,0.0979142,0.712613,0.0596485,0.277499,0.399231,0.383096,0.744693,0.600792,0.66476,0.16481,0.0272346,0.874841,0.162455,0.486804,0.237724,0.180179,0.955882,0.0970468,0.122614,0.618605,0.795817,0.340065,0.595244,0.150054,0.158177,0.627922,0.718824,0.358685,0.478473,0.183693,0.401995,0.208192,0.845706,0.127791,0.617281,0.999421,0.873401,0.917804,0.360794,0.248626,0.458987,0.513892,0.0829693,0.0834738,0.595569,0.516023,0.629735,0.517034,0.220891,0.571572,0.241758,0.221982,0.969217,0.849269,0.1535,0.810273,0.651471,0.360112,0.653176,0.549912,0.649415,0.153024,0.616191,0.259806,0.632996,0.389306,0.615259,0.470126,0.00635052,0.109045,0.966302,0.890378,0.133857,0.540467,0.605683,0.992431,0.583337,0.599465,0.783254,0.519047,0.808595,0.825808,0.384776,0.413743,0.681598,0.701987,0.159404,0.825472,0.143205,0.243812,0.606135,0.503597,0.0626034,0.0395355,0.653634,0.792455,0.845909,0.777746,0.85011,0.473481,0.466357,0.45842,0.967317,0.559661,0.486523,0.465549,0.0353363,0.0321609,0.893559,0.484273,0.877492,0.257545,0.456864,0.184529,0.687226,0.149591,0.157569,0.163167,0.981716,0.159868,0.239425,0.0401686,0.720504,0.608037,0.867246,0.601114,0.603558,0.91116,0.297224,0.542632,0.702013,0.177819,0.26239,0.28035,0.115307,0.0761147,0.30538,0.62746,0.526866,0.593232,0.0564685,0.378142,0.646278,0.395626,0.979337,0.868069,0.832446,0.121439,0.5513,0.855438,0.808372,0.557758,0.648235,0.807261,0.497129,0.6211,0.049226,0.271533,0.109777,0.840084,0.234714,0.13439,0.719689,0.427402,0.429355,0.310707,0.436324,0.657194,0.748871,0.141028,0.858116,0.216686,0.0925625,0.554583,0.219771,0.138,0.818724,0.573788,0.0351925,0.552952,0.508513,0.0446501,0.137325,0.355989,0.391487,0.574526,0.914158,0.398655,0.444591,0.807253,0.163094,0.846959,0.434066,0.0876477,0.7216,0.51452,0.684366,0.840275,0.0727066,0.738842,0.682248,0.702413,0.302795,0.806264,0.91923,0.980969,0.249912,0.89907,0.456312,0.672465,0.0692816,0.221644,0.490296,0.852401,0.459946,0.597795,0.605233,0.605081,0.87807,0.206046,0.603016,0.939054,0.142312,0.414442,0.883553,0.578673,0.247743,0.508188,0.834949,0.82573,0.314792,0.792895,0.561463,0.600247,0.834912,0.356872,0.489578,0.112029,0.727814,0.307981,0.013083,0.474371,0.351883,0.420794,0.77002,0.845513,0.815591,0.846974,0.48099,0.105699,0.557338,0.464596,0.716542,0.524416,0.332929,0.446703,0.901796,0.300484,0.785683,0.440449,0.370336,0.27718,0.447261,0.119009,0.420247,0.982346,0.959052,0.991299,0.51287,0.978469,0.270058,0.795117,0.490383,0.975206,0.460668,0.441239,0.393475,0.741445,0.794406,0.250878,0.650171,0.0512704,0.33152,0.0711591,0.547517,0.999777,0.929518,0.180217,0.000362754,0.571266,0.972598,0.247581,0.398674,0.765217,0.191763,0.640427,0.1721,0.323125,0.46439,0.108379,0.426838,0.0990072,0.704781,0.0551211,0.878953,0.568996,0.199742,0.310954,0.00696236,0.179731,0.911268,0.629126,0.693334,0.230658,0.726192,0.999255,0.301474,0.594188,0.522245,0.652326,0.189697,0.132732,0.745253,0.134512,0.538902,0.140907,0.71724,0.803115,0.047211,0.784574,0.508032,0.965265,0.280034,0.83399,0.237071,0.691528,0.390938,0.529138,0.0662272,0.639443,0.520367,0.777546,0.701525,0.619421,0.0122957,0.56128,0.698955,0.678563,0.177402,0.388989,0.0998681,0.275712,0.491379,0.927971,0.0485912,0.792649,0.67038,0.0389143,0.397493,0.750353,0.630608,0.666598,0.287703,0.336173,0.995223,0.133285,0.796213,0.780426,0.465633,0.184594,0.976804,0.0324031,0.599677,0.907766,0.795069,0.1971,0.8132,0.179218,0.718054,0.716691,0.765082,0.274646,0.700259,0.0916762,0.468334,0.306775,0.243655,0.573855,0.310624,0.513657,0.425167,0.135538,0.937143,0.165049,0.90977,0.929349,0.0236045,0.758677,0.716938,0.571028,0.45103,0.00822121,0.408218,0.185755,0.289383,0.616134,0.0718055,0.268999,0.453618,0.0961739,0.119351,0.000839055,0.389163,0.493077,0.0949196,0.47638,0.226707,0.172406,0.778867,0.835216,0.617272,0.981506,0.729659,0.219316,0.586302,0.91984,0.506504,0.546264,0.932451,0.467883,0.663859,0.533217,0.961696,0.798309,0.651142,0.566459,0.534032,0.687654,0.332178,0.566498,0.622031,0.0292653,0.999096,0.869604,0.658987,0.909834,0.320295,0.338677,0.589554,0.2121,0.701403,0.465711,0.67501,0.221028,0.584087,0.609641,0.679501,0.955356,0.459899,0.757545,0.550114,0.528557,0.455635,0.311016,0.210256,0.857114,0.881501,0.393289,0.142347,0.141817,0.129364,0.596058,0.594234,0.523392,0.242978,0.79374,0.367893,0.553181,0.826865,0.107171,0.257268,0.0888585,0.546002,0.375932,0.61866,0.22926,0.420198,0.466956,0.530276,0.788899,0.423635,0.464318,0.383187,0.431991,0.912379,0.37291,0.888297,0.452888,0.628736,0.943139,0.756525,0.0334848,0.179758,0.468167,0.00722063,0.463209,0.549672,0.289218,0.775653,0.233429,0.271958,0.974649,0.305611,0.670467,0.784405,0.0705686,0.197771,0.87058,0.958634,0.366585,0.720439,0.771333,0.0175394,0.070073,0.233519,0.0178326,0.404885,0.636158,0.00549245,0.584537,0.0693647,0.50384,0.52064,0.383537,0.603923,0.457993,0.633496,0.443295,0.253647,0.942193,0.607124,0.579198,0.882909,0.594621,0.304794,0.807916,0.372469,0.228519,0.508533,0.345316,0.383659,0.447514,0.464064,0.33294,0.897229,0.0861985,0.135939,0.461049,0.867316,0.808797,0.0260434,0.631289,0.121726,0.340242,0.108855,0.725317,0.979983,0.228677,0.208667,0.820996,0.93703,0.195018,0.535194,0.195171,0.266283,0.481722,0.00949109,0.533873,0.00989574,0.885835,0.714805,0.0308622,0.857025,0.156477,0.504307,0.870272,0.501429,0.139492,0.699939,0.761493,0.891203,0.00876933,0.566455,0.472136,0.282967,0.331879,0.876256,0.533767,0.615887,0.0518844,0.830724,0.425028,0.89989,0.516605,0.17922,0.110415,0.925598,0.199682,0.324014,0.886294,0.879605,0.838616,0.172512,0.529754,0.986577,0.922301,0.0560937,0.57309,0.26555,0.315868,0.851729,0.257211,0.418795,0.868934,0.910759,0.8671,0.567235,0.860803,0.587894,0.873911,0.0300153,0.977328,0.759595,0.565124,0.0401346,0.238962,0.552811,0.49287,0.250978,0.142843,0.883855,0.955525,0.900948,0.385475,0.568126,0.700248,0.544076,0.0325762,0.844351,0.0483849,0.139822,0.396731,0.437138,0.220571,0.0455448,0.403869,0.456934,0.936575,0.443755,0.984497,0.397228,0.848686,0.505089,0.593638,0.657906,0.00261247,0.80207,0.359362,0.062456,0.095282,0.732895,0.862654,0.515921,0.193414,0.273185,0.490202,0.0730309,0.442119,0.661008,0.030409,0.657204,0.0346586,0.469935,0.341057,0.790743,0.99353,0.00534058,0.206738,0.791638,0.28279,0.00304395,0.566884,0.876852,0.660773,0.43533,0.830421,0.347675,0.70287,0.168074,0.561518,0.1783,0.638183,0.317771,0.0385304,0.70554,0.508856,0.676432,0.0330666,0.559626,0.216597,0.179179,0.0622392,0.271014,0.604618,0.591298,0.460786,0.669664,0.38046,0.559054,0.0457737,0.983544,0.591914,0.272591,0.116361,0.890615,0.884563,0.4067,0.595793,0.595528,0.945216,0.758124,0.300508,0.58845,0.603617,0.384941,0.171883,0.292878,0.691841,0.717364,0.607865,0.909064,0.489329,0.154517,0.313515,0.356089,0.793125,0.252503,0.577397,0.801121,0.699313,0.900727,0.588192,0.683433,0.79186,0.0274996,0.334683,0.20993,0.356124,0.248746,0.802496,0.269565,0.23435,0.976621,0.464173,0.225732,0.233072,0.490751,0.396071,|0.867641,0.567624,0.346445,0.458454,0.368594,0.158225,0.166981,0.280209,0.282245,0.438523,0.970342,0.205644,0.408679,0.637283,0.222885,0.0687442,0.769573,0.227587,0.303291,0.273131,0.700051,0.498106,0.213298,0.218767,0.32022,0.41727,0.385175,0.628842,0.801786,0.811988,0.992468,0.131074,0.192186,0.886478,0.42602,0.707874,0.636045,0.168095,0.42914,0.744307,0.727966,0.727094,0.881275,0.400359,0.887771,0.661217,0.294198,0.739108,0.164558,0.18014,0.0735162,0.279783,0.597367,0.567208,0.09396,0.196353,0.61565,0.856034,0.258602,0.679216,0.852919,0.497361,0.913677,0.300656,0.677183,0.957404,0.437526,0.651793,0.343194,0.28182,0.0251905,0.513238,0.730928,0.333068,0.380389,0.337441,0.774553,0.391281,0.239369,0.902563,0.517223,0.818809,0.862525,0.441323,0.0954477,0.635924,0.949398,0.421542,0.17572,0.415719,0.231461,0.726606,0.0320913,0.0899547,0.32159,0.125378,0.944296,0.53017,0.643799,0.244758,0.676129,0.611472,0.03847,0.6616,0.351764,0.288159,0.659945,0.667731,0.786801,0.85919,0.155997,0.541249,0.0646964,0.628852,0.72933,0.904031,0.430987,0.77433,0.67219,0.466163,0.0710763,0.714788,0.274996,0.429345,0.124515,0.104771,0.853913,0.598936,0.147554,0.847283,0.309143,0.7196,0.341118,0.518951,0.148455,0.389242,0.144531,0.661867,0.683947,0.847065,0.178556,0.362471,0.252563,0.152385,0.0383497,0.775767,0.777634,0.95886,0.572215,0.31454,0.966715,0.166471,0.739099,0.0845932,0.583187,0.56087,0.703634,0.520482,0.217027,0.522357,0.72384,0.0102993,0.231195,0.177197,0.720728,0.873653,0.734382,0.881092,0.672621,0.837212,0.820055,0.4533,0.473411,0.456241,0.857433,0.417021,0.0845214,0.697319,0.0969995,0.357503,0.540652,0.63903,0.635662,0.261484,0.232979,0.281461,0.324551,0.570305,0.912618,0.573234,0.883069,0.973784,0.468988,0.218168,0.138865,0.362383,0.745183,0.316345,0.609976,0.592228,0.0208498,0.436395,0.93921,0.965332,0.898017,0.101241,0.0528264,0.688236,0.972692,0.372843,0.61127,0.732412,0.565293,0.0304001,0.992006,0.486217,0.595786,0.306013,0.017961,0.929348,0.0395698,0.296359,0.671443,0.27346,0.755848,0.823379,0.0515857,0.54163,0.881947,0.130357,0.756907,0.0549414,0.949715,0.968662,0.720056,0.0425283,0.629455,0.7809,0.495854,0.703753,0.141426,0.263106,0.809679,0.663804,0.448178,0.74769,0.392525,0.63909,0.690562,0.0942996,0.173237,0.498095,0.420369,0.60879,0.664715,0.518234,0.960921,0.544548,0.550133,0.0324146,0.611734,0.661592,0.0452547,0.37763,0.856599,0.188972,0.783351,0.687749,0.446951,0.877458,0.368352,0.188049,0.892147,0.27356,0.841668,0.30299,0.753339,0.559865,0.0543989,0.927695,0.242093,0.0747653,0.404646,0.995065,0.968709,0.500779,0.323241,0.926531,0.580783,0.213812,0.363943,0.931294,0.961568,0.295856,0.196277,0.559525,0.406246,0.595284,0.144761,0.283813,0.256517,0.116764,0.700001,0.699068,0.0636538,0.7404,0.572809,0.863518,0.953184,0.461079,0.0757791,0.634293,0.634846,0.638598,0.694704,0.956368,0.0209563,0.888465,0.996175,0.0610694,0.498116,0.585922,0.817151,0.141835,0.532701,0.513337,0.0214185,0.271414,0.57571,0.293523,0.456053,0.603943,0.897671,0.367327,0.00814337,0.462669,0.230374,0.708079,0.823391,0.350189,0.947787,0.0896417,0.51923,0.295267,0.381377,0.463116,0.553066,0.583618,0.308404,0.54856,0.837243,0.65172,0.822461,0.355922,0.879757,0.649634,0.505371,0.286747,0.691674,0.607479,0.375442,0.972295,0.609789,0.42871,0.70028,0.321505,0.751368,0.782521,0.677322,0.304075,0.596015,0.994728,0.220845,0.143345,0.767151,0.874661,0.381521,0.19604,0.0858178,0.842104,0.933507,0.161487,0.884053,0.519766,0.988472,0.293637,0.470471,0.913872,0.232159,0.274764,0.180287,0.542694,0.748402,0.601181,0.170319,0.691944,0.837473,0.580237,0.0979721,0.33177,0.517058,0.55654,0.972829,0.50235,0.760342,0.081386,0.860415,0.20748,0.0396284,0.669289,0.395265,0.636703,0.325803,0.542973,0.744194,0.334014,0.53476,0.922098,0.830045,0.227464,0.429452,0.492206,0.235115,0.864735,0.685747,0.941461,0.243746,0.26357,0.866576,0.630327,0.162935,0.007182,0.520068,0.876721,0.060837,0.970968,0.190278,0.906716,0.120873,0.839583,0.438092,0.709296,0.411937,0.0665132,0.579023,0.787492,0.914276,0.37978,0.292118,0.553494,0.867378,0.448185,0.957351,0.800554,0.524318,0.690547,0.384619,0.137285,0.810436,0.310072,0.0215394,0.244986,0.898276,0.12988,0.510873,0.375943,0.823459,0.199258,0.323789,0.14551,0.547988,0.347384,0.782534,0.328872,0.626074,0.277069,0.672534,0.558481,0.842024,0.562216,0.231702,0.944295,0.456927,0.186007,0.100437,0.383895,0.912922,0.464568,0.971438,0.769052,0.11491,0.858322,0.02592,0.416192,0.87509,0.713487,0.660472,0.408584,0.939998,0.14828,0.212891,0.844217,0.609607,0.814689,0.118914,0.239989,0.978574,0.105711,0.361862,0.208243,0.374482,0.727155,0.209084,0.0831773,0.0301489,0.653973,0.07393,0.879536,0.763942,0.229208,0.711323,0.131018,0.66116,0.38247,0.114507,0.426929,0.740048,0.272309,0.810506,0.493995,0.500705,0.574015,0.979985,0.3456,0.0472422,0.818768,0.199724,0.633232,0.573056,0.779174,0.598937,0.623898,0.999902,0.221475,0.248938,0.166409,0.482288,0.28271,0.673765,0.323526,0.648376,0.74654,0.749511,0.236005,0.324011,0.536905,0.980661,0.131425,0.875115,0.637313,0.7751,0.855422,0.180891,0.98695,0.107403,0.515987,0.406174,0.433874,0.0482038,0.381407,0.887807,0.684176,0.287225,0.452673,0.794086,0.24594,0.818629,0.315215,0.434754,0.0458717,0.175157,0.831418,0.0469132,0.578209,0.250858,0.270171,0.383383,0.0956918,0.0202082,0.666684,0.264937,0.656874,0.92812,0.615551,0.224341,0.3908,0.00342709,0.447023,0.603727,0.358421,0.208399,0.905623,0.345038,0.202447,0.853656,0.739162,0.0601259,0.511068,0.0830792,0.880603,0.900489,0.0465221,0.358909,0.0292062,0.937603,0.117823,0.15487,0.626479,0.894968,0.644328,0.933548,0.39698,0.686978,0.50418,0.629194,0.986471,0.903088,0.128161,0.602997,0.0660005,0.0464917,0.505183,0.489754,0.987476,0.544337,0.0192932,0.144099,0.991477,0.685358,0.428049,0.430098,0.276978,0.103157,0.644075,0.996589,0.804241,0.775331,0.672465,0.134035,0.358028,0.900249,0.0578009,0.437564,0.333495,0.51804,0.111608,0.339776,0.713576,0.761148,0.455494,0.901467,0.305577,0.112873,0.622913,0.261785,0.0145476,0.71925,0.799588,0.883467,0.775276,0.167332,0.599924,0.213797,0.917882,0.128446,0.871042,0.996457,0.481549,0.929991,0.164848,0.108233,0.42123,0.074919,0.419097,0.422307,0.8053,0.981152,0.131405,0.482802,0.148383,0.21744,0.875537,0.249166,0.579995,0.699871,0.873471,0.0465876,0.295944,0.874241,0.228752,0.566001,0.411049,0.556981,0.61561,0.39073,0.759777,0.89898,0.0381634,0.140512,0.654035,0.0612791,0.684828,0.443556,0.0209957,0.936415,0.982316,0.729853,0.158258,0.944712,0.56672,0.694897,0.184282,0.539168,0.595396,0.152016,0.0199429,0.900704,0.0891752,0.617482,0.768876,0.0455387,0.909874,0.971178,0.119433,0.552108,0.0452627,0.115193,0.0818902,0.0986028,0.476921,0.923902,0.975484,0.491452,0.451594,0.433873,0.348541,0.545761,0.268,0.856164,0.33904,0.148126,0.677968,0.746681,0.546346,0.447092,0.0506949,0.365654,0.602373,0.901986,0.446451,0.0964921,0.583868,0.476311,0.429294,0.112883,0.266794,0.97543,0.591932,0.360745,0.103183,0.848762,0.927463,0.202943,0.87719,0.689207,0.724104,0.249788,0.835126,0.243928,0.559889,0.394035,0.417857,0.565458,0.627225,0.119919,0.71678,0.214207,0.836303,0.670393,0.003133,0.748287,0.318552,0.789418,0.64434,0.444305,0.201816,0.123354,0.768187,0.818684,0.483526,0.596969,0.786209,0.415909,0.665515,0.886663,0.617349,0.971359,0.235951,0.533344,0.715506,0.0253602,0.370689,0.657114,0.985142,0.53789,0.254289,0.283136,0.227021,0.56767,0.792101,0.500639,0.676095,0.652019,0.62673,0.282724,0.254966,0.370824,0.782559,0.865944,0.0890311,0.884925,0.815836,0.228857,0.843864,0.174887,0.435515,0.77524,0.392812,0.682491,0.0496637,0.0855545,0.122797,0.0642401,0.656872,0.418551,0.794154,0.169579,0.74881,0.123931,0.372556,0.0152788,0.677035,0.664154,0.872111,0.987519,0.373682,0.0188007,0.0660362,0.20161,0.324023,0.0708788,0.178505,0.518545,0.0954297,0.0408242,0.32228,0.907371,0.384611,0.84702,0.298681,0.184453,0.0661888,0.610374,0.511649,0.990559,0.286215,0.0387445,0.379694,0.543307,0.824729,0.0489221,0.933852,0.675663,0.9108,0.666425,0.71369,0.366454,0.312774,0.120518,0.48377,0.908844,0.837204,0.417784,0.10598,0.33587,0.724197,0.759202,0.760754,0.980328,0.174672,0.263403,0.0357144,0.993282,0.699537,0.522206,0.697416,0.715755,0.791695,0.821385,0.35772,0.703813,0.287634,0.412207,0.784813,0.238712,0.285466,0.0978178,0.35009,0.755495,0.461665,0.726969,0.35438,0.36899,0.436193,0.970267,0.038783,0.452121,0.963588,0.893354,0.851294,0.668594,0.842634,0.894482,0.175034,0.0547454,0.454318,0.656465,0.763179,0.187618,0.84304,0.888812,0.626883,0.444983,0.566658,0.86751,0.895349,0.501907,0.434622,0.566658,0.976013,0.775162,0.629451,0.792006,0.360669,0.153949,0.0540471,0.942521,0.79788,0.317017,0.116157,0.408475,0.390729,0.515871,0.147499,0.456113,0.192489,0.285706,0.770133,0.633369,0.515072,0.940718,0.00511038,0.332685,0.604297,0.946353,0.414456,0.563056,0.720839,0.270457,0.251093,0.15247,0.0971975,0.26969,0.334458,0.853544,0.82374,0.103361,0.495128,0.16883,0.106155,0.881478,0.796741,0.0209658,0.764448,0.33155,0.157309,0.975538,0.496565,0.936709,0.926784,|0.875848,0.150617,0.551446,0.0860386,0.553863,0.286677,0.3202,0.047947,0.948392,0.37251,0.949527,0.988058,0.098461,0.236799,0.104515,0.107964,0.70449,0.885691,0.165342,0.261722,0.34245,0.978457,0.793109,0.583749,0.501192,0.0451502,0.873587,0.704283,0.415644,0.0430409,0.0914323,0.398834,0.0568886,0.79425,0.824789,0.426455,0.131253,0.51236,0.589307,0.137578,0.00831318,0.470103,0.0287646,0.314459,0.904299,0.01717,0.129952,0.316505,0.361248,0.92461,0.9863,0.19029,0.496573,0.437275,0.849015,0.698732,0.322676,0.40234,0.666076,0.245966,0.0329626,0.801717,0.447167,0.287031,0.584969,0.598608,0.283827,0.632613,0.141347,0.877374,0.570591,0.094502,0.582697,0.137847,0.575528,0.826188,0.43221,0.660637,0.48107,0.0569711,0.815891,0.915796,0.661041,0.291928,0.0345954,0.319205,0.519228,0.0191585,0.300601,0.136614,0.65525,0.828707,0.138228,0.254151,0.033705,0.300928,0.689096,0.358108,0.770743,0.541805,0.407984,0.955243,0.623433,0.153299,0.0997092,0.50785,0.614139,0.962443,0.961318,0.730305,0.51794,0.781687,0.829225,0.130153,0.895096,0.5643,0.780296,0.84285,0.6038,0.868503,0.206913,0.946544,0.396921,0.541683,0.400278,0.590132,0.503308,0.509531,0.355328,0.446439,0.422629,0.71174,0.705614,0.591214,0.517671,0.742539,0.839829,0.447641,0.611073,0.541344,0.309878,0.0747171,0.847427,0.638044,0.413647,0.0259796,0.355174,0.96159,0.605848,0.792141,0.637246,0.435594,0.173257,0.722669,0.659759,0.394781,0.801772,0.596255,0.498728,0.575876,0.67571,0.74715,0.631084,0.494631,0.400015,0.940478,0.1934,0.932185,0.240177,0.465938,0.514677,0.753162,0.0638351,0.615247,0.0701999,0.180078,0.587833,0.374773,0.385826,0.88189,0.823556,0.786069,0.88761,0.377549,0.23664,0.0421625,0.148263,0.573605,0.856752,0.220158,0.756995,0.594369,0.502208,0.084214,0.268853,0.679896,0.707721,0.801368,0.601447,0.292369,0.770292,0.35807,0.540575,0.671904,0.269953,0.478984,0.463976,0.370029,0.404787,0.75862,0.132753,0.0270677,0.32647,0.993415,0.951581,0.82881,0.657154,0.437513,0.988983,0.755008,0.0813306,0.694824,0.381219,0.905749,0.843851,0.627096,0.608326,0.885277,0.830202,0.674056,0.166351,0.629412,0.0678785,0.790156,0.415071,0.98861,0.249461,0.618083,0.755611,0.18811,0.740649,0.700108,0.765399,0.486122,0.905542,0.82963,0.172064,0.49893,0.807067,0.146345,0.488828,0.594244,0.801274,0.568912,0.893064,0.60357,0.693127,0.0130799,0.925099,0.531847,0.931378,0.681657,0.108278,0.310811,0.900139,0.353582,0.405481,0.654466,0.262571,0.338745,0.524576,0.917432,0.462178,0.87317,0.922076,0.815071,0.152744,0.345439,0.36404,0.688184,0.523057,0.472252,0.763017,0.380533,0.494074,0.923537,0.140113,0.437159,0.0438566,0.780372,0.370318,0.896559,0.0541817,0.441706,0.60025,0.0396672,0.882927,0.319496,0.208453,0.116765,0.86285,0.895389,0.16953,0.0555471,0.468188,0.697987,0.724624,0.502757,0.734633,0.432372,0.00322986,0.281485,0.415102,0.964514,0.494204,0.554063,0.572171,0.633486,0.529586,0.0986206,0.918655,0.415189,0.705076,0.998532,0.178414,0.34327,0.509403,0.62533,0.568987,0.0823229,0.982168,0.946963,0.844294,0.208497,0.648905,0.101723,0.277662,0.861937,0.572514,0.0894793,0.591606,0.150206,0.127415,0.332937,0.00514418,0.430378,0.0400754,0.413684,0.959202,0.928511,0.575956,0.440682,0.033755,0.0856145,0.464179,0.00125891,0.519005,0.108771,0.0186157,0.374323,0.382752,0.784384,0.0146571,0.473537,0.469499,0.679292,0.315011,0.1949,0.927189,0.990485,0.652561,0.787542,0.331881,0.896721,0.947903,0.815687,0.29091,0.180393,0.611225,0.506732,0.640752,0.707052,0.832444,0.219322,0.466814,0.470435,0.479869,0.0525412,0.988575,0.572809,0.891341,0.545126,0.37907,0.0414997,0.593163,0.19443,0.816696,0.616157,0.563903,0.571467,0.662539,0.372252,0.222878,0.925871,0.468782,0.157896,0.378292,0.927934,0.968993,0.922385,0.198486,0.268882,0.197345,0.897289,0.34393,0.625273,0.0427645,0.168923,0.769406,0.543129,0.260484,0.218857,0.782486,0.910856,0.341082,0.612807,0.929192,0.783296,0.653161,0.273092,0.735846,0.805851,0.727565,0.77995,0.132786,0.908567,0.0165697,0.090389,0.381543,0.713306,0.871534,0.454803,0.216579,0.149971,0.655686,0.638919,0.0624127,0.986541,0.500535,0.995251,0.472181,0.249655,0.208447,0.449417,0.100927,0.524894,0.412076,0.408049,0.811516,0.818431,0.695407,0.890951,0.593351,0.617661,0.0556085,0.601651,0.851829,0.198777,0.0273278,0.525867,0.56906,0.49949,0.0911328,0.264146,0.357973,0.791646,0.849132,0.24563,0.130246,0.132002,0.196685,0.339635,0.298382,0.366492,0.745637,0.18669,0.913937,0.32339,0.552328,0.615099,0.445843,0.470587,0.107448,0.884446,0.927717,0.24061,0.474257,0.315231,0.588496,0.852055,0.915433,0.168564,0.836076,0.312959,0.786844,0.963054,0.44622,0.0298653,0.0999552,0.453309,0.173925,0.861861,0.383308,0.590225,0.811865,0.854157,0.443917,0.442146,0.846325,0.0243618,0.84824,0.3066,0.788155,0.489266,0.327645,0.547279,0.543999,0.875492,0.679425,0.0401827,0.993516,0.822538,0.668535,0.661738,0.489567,0.0349904,0.770598,0.935517,0.935186,0.467802,0.620347,0.171557,0.295056,0.95582,0.410998,0.891658,0.142792,0.422504,0.297939,0.317643,0.83919,0.480517,0.157216,0.02751,0.0981746,0.698917,0.177061,0.588094,0.993736,0.387269,0.343071,0.540309,0.301286,0.010399,0.310455,0.394493,0.17815,0.902701,0.915514,0.154162,0.418148,0.618378,0.477846,0.0224936,0.258177,0.353595,0.265973,0.600397,0.0807069,0.718721,0.626862,0.833132,0.158836,0.203128,0.492009,0.0852324,0.12578,0.583592,0.959692,0.806798,0.24168,0.298047,0.469481,0.649118,0.56779,0.823901,0.409816,0.866821,0.815743,0.34343,0.539854,0.0177842,0.229034,0.0893913,0.957341,0.135998,0.706588,0.814024,0.765294,0.089565,0.150686,0.170653,0.776365,0.997035,0.0502846,0.831842,0.78752,0.0921986,0.903776,0.377429,0.149933,0.177957,0.620203,0.0990479,0.226562,0.396902,0.647407,0.251107,0.883299,0.886007,0.650429,0.815047,0.876768,0.477392,0.662173,0.0199898,0.212136,0.420676,0.0619381,0.976687,0.647409,0.56389,0.24345,0.203634,0.10327,0.180679,0.726342,0.120289,0.6212,0.858775,0.563781,0.609657,0.560513,0.352141,0.281678,0.406177,0.500941,0.930738,0.973079,0.475888,0.232469,0.767979,0.838359,0.701041,0.00918859,0.645316,0.474741,0.69081,0.775091,0.633769,0.620277,0.359331,0.123069,0.936552,0.113658,0.423571,0.645715,0.87345,0.829732,0.950962,0.982323,0.572627,0.904719,0.0936351,0.272207,0.614637,0.142887,0.985822,0.864572,0.687124,0.758489,0.123739,0.946346,0.100336,0.845665,0.548019,0.474106,0.102789,0.948636,0.202531,0.227926,0.991553,0.00902981,0.662174,0.61731,0.761635,0.175873,0.174719,0.220195,0.547712,0.226234,0.450401,0.856505,0.444838,0.378768,0.338647,0.979099,0.176367,0.545618,0.067949,0.817817,0.24271,0.125868,0.0138069,0.373124,0.870702,0.563528,0.780332,0.912873,0.0577393,0.854444,0.649327,0.484268,0.00739735,0.438488,0.654108,0.917096,0.322296,0.729554,0.985849,0.161813,0.956189,0.432413,0.160093,0.616999,0.661734,0.859656,0.720226,0.803175,0.0019384,0.160319,0.480279,0.24455,0.315322,0.547663,0.794792,0.0754145,0.344972,0.164621,0.815932,0.960052,0.56827,0.496076,0.99175,0.279929,0.873632,0.85038,0.479608,0.369603,0.113105,0.345114,0.610726,0.526515,0.382062,0.510262,0.429756,0.435235,0.793024,0.0459837,0.641664,0.647621,0.0681564,0.898184,0.159333,0.826378,0.60127,0.907935,0.0950927,0.519858,0.603004,0.479328,0.937547,0.801213,0.429982,0.430087,0.831398,0.00955117,0.0531971,0.962219,0.315904,0.333466,0.906781,0.468149,0.361452,0.255288,0.303837,0.822399,0.407255,0.726621,0.41583,0.639656,0.449177,0.221911,0.323298,0.434979,0.243146,0.849902,0.21688,0.400956,0.806781,0.885478,0.761791,0.0897149,0.241378,0.585035,0.502264,0.913286,0.810567,0.179168,0.643162,0.30972,0.925308,0.223479,0.897751,0.293698,0.0699861,0.470002,0.0939102,0.205288,0.0342213,0.172322,0.363739,0.0182559,0.314289,0.558141,0.986841,0.580553,0.187183,0.0517011,0.200321,0.245866,0.154678,0.0741595,0.520854,0.166596,0.393793,0.764598,0.163782,0.486429,0.912106,0.485016,0.477365,0.884761,0.414026,0.25003,0.634663,0.636542,0.017474,0.905185,0.227158,0.427976,0.405114,0.424547,0.715743,0.412929,0.648057,0.971986,0.197248,0.650367,0.380086,0.410961,0.331459,0.52991,0.103438,0.202967,0.761514,0.248172,0.495426,0.693392,0.818412,0.268494,0.00710553,0.445417,0.835378,0.85763,0.431513,0.160617,0.196738,0.634947,0.505509,0.0684639,0.255565,0.634339,0.593674,0.993507,0.571157,0.466605,0.700407,0.0827968,0.294386,0.591187,0.640436,0.473597,0.0610777,0.579857,0.375898,0.0727657,0.62246,0.127699,0.0615037,0.359338,0.604729,0.989577,0.476438,0.760932,0.075914,0.712447,0.583793,0.397407,0.982585,0.659805,0.351593,0.0448276,0.00709832,0.978193,0.250177,0.351781,0.805522,0.953263,0.814247,0.153629,0.857579,0.996944,0.136163,0.843649,0.685191,0.928891,0.365456,0.690428,0.704433,0.413803,0.28235,0.498645,0.2204,0.938833,0.746212,0.337591,0.925066,0.717007,0.68227,0.108614,0.369161,0.633971,0.22303,0.182119,0.940173,0.767448,0.0700648,0.723174,0.983951,0.57896,0.356556,0.720929,0.400113,0.270438,0.899371,0.0666168,0.810624,0.791063,0.430665,0.590175,0.173215,0.930891,0.107364,0.138377,0.562718,0.877348,0.971557,0.333195,0.446577,0.593508,0.0275347,0.633642,0.707343,0.363586,0.606173,0.841259,0.684744,0.303316,0.993148,|0.398094,0.240788,0.527543,0.581941,0.222531,0.591381,0.229658,0.932277,0.8273,0.581235,0.438824,0.0883361,0.328606,0.308047,0.731935,0.43395,0.933515,0.388209,0.259739,0.633874,0.103687,0.540231,0.9744,0.00826305,0.917303,0.678481,0.406945,0.522782,0.678713,0.639298,0.167367,0.747377,0.643401,0.684191,0.340874,0.385136,0.348513,0.633729,0.212466,0.806954,0.214188,0.906412,0.183464,0.949676,0.732172,0.857939,0.436428,0.308323,0.163731,0.100251,0.668495,0.500082,0.122245,0.721341,0.880506,0.964539,0.0226989,0.981913,0.324641,0.842315,0.120323,0.0570704,0.196175,0.505344,0.382413,0.29617,0.847079,0.892349,0.848371,0.608534,0.912433,0.774654,0.481085,0.933043,0.050393,0.808698,0.860058,0.444883,0.482888,0.121429,0.36149,0.267692,0.997601,0.39106,0.185372,0.0584934,0.0508131,0.224186,0.362654,0.920216,0.80131,0.343838,0.905978,0.943197,0.0388235,0.888934,0.83296,0.874013,0.0285501,0.0816818,0.375237,0.935294,0.263867,0.632314,0.606738,0.327474,0.957329,0.110733,0.210238,0.311345,0.699334,0.610355,0.307303,0.252022,0.354589,0.0791761,0.0783912,0.262025,0.684166,0.534746,0.781502,0.247694,0.797032,0.0471761,0.635204,0.0822743,0.342269,0.373769,0.553424,0.958356,0.700382,0.656764,0.205146,0.781367,0.608581,0.219581,0.236373,0.479526,0.989225,0.548356,0.727361,0.779275,0.865516,0.961537,0.657431,0.908078,0.512682,0.145591,0.43653,0.880591,0.256846,0.81813,0.128147,0.96404,0.810167,0.754375,0.698066,0.656713,0.00526452,0.287593,0.0586477,0.547795,0.0414026,0.609571,0.82905,0.37036,0.0796212,0.861059,0.708002,0.810193,0.358796,0.380995,0.45076,0.188343,0.723087,0.722887,0.0890281,0.0026508,0.947915,0.762818,0.699354,0.749481,0.744134,0.796171,0.870533,0.805297,0.408323,0.0487517,0.894395,0.507231,4.9293e-05,0.668801,0.910184,0.333133,0.746602,0.280548,0.626622,0.695442,0.879059,0.837623,0.849309,0.215326,0.769217,0.0118849,0.663921,0.842351,0.126167,0.360684,0.692601,0.0194286,0.706316,0.302585,0.705463,0.404344,0.814823,0.584304,0.209337,0.122015,0.206511,0.48936,0.867534,0.173148,0.516164,0.976127,0.0185015,0.312362,0.0878685,0.979918,0.626457,0.159577,0.288252,0.430088,0.546094,0.0459282,0.0991924,0.466078,0.289975,0.514816,0.00866354,0.458502,0.599159,0.830641,0.723914,0.370179,0.377236,0.985525,0.806056,0.419339,0.7261,0.943025,0.497177,0.372264,0.65538,0.223497,0.547338,0.389405,0.2443,0.232255,0.848026,0.838281,0.881887,0.976634,0.916045,0.193101,0.240081,0.508683,0.323107,0.114185,0.521913,0.000440955,0.171459,0.621116,0.833122,0.946142,0.541086,0.74546,0.723832,0.13669,0.480682,0.121207,0.730228,0.709755,0.935673,0.144683,0.209051,0.0899901,0.779988,0.371346,0.727782,0.24343,0.603638,0.399856,0.492464,0.37857,0.0277448,0.789941,0.29044,0.749043,0.545416,0.736848,0.884315,0.971187,0.99552,0.85858,0.0280776,0.933232,0.151838,0.352412,0.462492,0.210097,0.696284,0.411044,0.247225,0.643307,0.340502,0.232135,0.85101,0.482369,0.873462,0.166741,0.355719,0.712822,0.685733,0.822278,0.966454,0.793516,0.198196,0.782293,0.89625,0.746287,0.580284,0.589521,0.962166,0.984254,0.927952,0.171063,0.0616801,0.702514,0.363378,0.150521,0.0875176,0.841266,0.959949,0.858506,0.908369,0.710945,0.507105,0.358132,0.59432,0.269747,0.900814,0.00396955,0.223641,0.457315,0.388009,0.645959,0.793157,0.729114,0.140717,0.220328,0.974959,0.710572,0.783743,0.0476111,0.89219,0.404834,0.375425,0.215088,0.93155,0.486265,0.953362,0.355694,0.74403,0.827174,0.524417,0.995669,0.717363,0.655336,0.563639,0.0175336,0.231107,0.490934,0.478239,0.651202,0.514711,0.291668,0.127672,0.181765,0.474567,0.956141,0.267803,0.673013,0.203989,0.836169,0.136975,0.661074,0.267907,0.557371,0.641411,0.953876,0.252493,0.731134,0.584385,0.00761259,0.118165,0.707647,0.355503,0.478451,0.0586803,0.45469,0.858532,0.675937,0.759093,0.0282106,0.278767,0.811306,0.116541,0.761149,0.0686012,0.102152,0.768521,0.745417,0.793789,0.777648,0.452085,0.750584,0.173692,0.227301,0.279772,0.0961919,0.0157982,0.919222,0.518245,0.874362,0.171288,0.801319,0.472413,0.55945,0.985316,0.217055,0.588992,0.525109,0.883536,0.787099,0.319703,0.798701,0.323938,0.822883,0.677021,0.542817,0.723383,0.478893,0.631319,0.505293,0.934199,0.159758,0.609062,0.354077,0.866112,0.507487,0.569422,0.653111,0.916938,0.889712,0.711848,0.556308,0.485029,0.671855,0.620343,0.836083,0.241885,0.840104,0.335586,0.44921,0.572507,0.888759,0.529376,0.794193,0.796409,0.612147,0.888987,0.670445,0.944486,0.0525209,0.103973,0.988837,0.279322,0.198128,0.582424,0.165138,0.178058,0.0424641,0.201667,0.0495613,0.129246,0.0888393,0.985415,0.326336,0.999133,0.753274,0.60536,0.612053,0.278325,0.626799,0.919938,0.713118,0.28459,0.682403,0.410911,0.473917,0.950961,0.207222,0.507467,0.219859,0.635409,0.59777,0.0130344,0.0679799,0.217067,0.0978515,0.0481268,0.672132,0.0318399,0.922116,0.917339,0.402361,0.191241,0.508531,0.17201,0.359501,0.369798,0.162195,0.406996,0.609679,0.884145,0.751376,0.301309,0.593987,0.498668,0.940446,0.531379,0.887341,0.198435,0.80707,0.736883,0.742425,0.421905,0.770416,0.454453,0.451264,0.552171,0.142757,0.521918,0.939866,0.274911,0.522533,0.164529,0.574134,0.229262,0.56629,0.629319,0.0473269,0.709225,0.317059,0.851082,0.0482187,0.22,0.896508,0.406161,0.883021,0.939515,0.0103763,0.915032,0.650412,0.128981,0.549655,0.846975,0.00502557,0.791246,0.303933,0.432035,0.986754,0.135035,0.840884,0.430937,0.680353,0.706484,0.0359223,0.212315,0.0508742,0.253634,0.900417,0.19255,0.536472,0.659108,0.994886,0.836336,0.682856,0.613195,0.186201,0.503819,0.199198,0.20484,0.175845,0.0398848,0.937315,0.553271,0.693915,0.92393,0.806281,0.00134957,0.590855,0.132055,0.819167,0.816722,0.303903,0.403617,0.111313,0.215479,0.960005,0.343558,0.15145,0.0223753,0.312083,0.47929,0.44709,0.262804,0.924424,0.451281,0.292061,0.574252,0.464513,0.0241039,0.0767987,0.951635,0.428754,0.993629,0.78553,0.0863011,0.624444,0.543088,0.363622,0.493773,0.35647,0.1803,0.101995,0.834892,0.385519,0.675911,0.168241,0.527118,0.823947,0.923227,0.225949,0.642025,0.937328,0.498444,0.510402,0.0386222,0.434905,0.721315,0.632981,0.872082,0.229739,0.185369,0.172411,0.145609,0.222446,0.0447643,0.473849,0.554026,0.998881,0.0228492,0.0625308,0.954685,0.4255,0.859769,0.364676,0.589681,0.590353,0.621535,0.0276489,0.853222,0.729334,0.866808,0.414346,0.15272,0.19393,0.285438,0.818531,0.638711,0.145702,0.577724,0.944314,0.951489,0.201166,0.867848,0.51103,0.236167,0.389213,0.119303,0.612581,0.811974,0.889681,0.464654,0.00895989,0.359807,0.466355,0.751761,0.279357,0.305365,0.896476,0.205264,0.603834,0.715816,0.199505,0.652971,0.181301,0.948913,0.526533,0.65609,0.983245,0.982936,0.883265,0.0816086,0.339837,0.493327,0.877868,0.0388821,0.342082,0.980645,0.585323,0.211123,0.941592,0.0324184,0.831963,0.747699,0.462794,0.452546,0.831516,0.609576,0.0348658,0.527005,0.580727,0.861131,0.174203,0.607209,0.598745,0.182978,0.636907,0.665201,0.986604,0.0487958,0.558828,0.810694,0.275865,0.500123,0.132555,0.791614,0.855531,0.654895,0.442296,0.961798,0.748375,0.0946398,0.529673,0.558699,0.0907298,0.432252,0.9566,0.835639,0.142672,0.797071,0.949206,0.517929,0.522517,0.441714,0.818794,0.35516,0.2663,0.774979,0.47016,0.470338,0.937726,0.221509,0.277596,0.0837591,0.814811,0.364232,0.280358,0.862039,0.952995,0.895019,0.721974,0.48777,0.146345,0.526173,0.65559,0.771344,0.263655,0.214914,0.695212,0.560921,0.53259,0.810749,0.192686,0.0573447,0.0587353,0.439619,0.0841371,0.836926,0.627457,0.789726,0.769768,0.230562,0.627987,0.182053,0.690434,0.810576,0.739197,0.343632,0.769605,0.695315,0.942776,0.662903,0.502814,0.503103,0.0168949,0.298029,0.858721,0.534239,0.694231,0.330249,0.855474,0.117256,0.594988,0.674707,0.687572,0.260753,0.151278,0.750723,0.810676,0.820477,0.579267,0.616879,0.99948,0.356263,0.240958,0.478514,0.223257,0.773272,0.293588,0.460062,0.351141,0.901451,0.208647,0.356096,0.782181,0.686049,0.545456,0.728839,0.180896,0.445811,0.240342,0.264454,0.652581,0.129045,0.702301,0.752202,0.728763,0.2052,0.626458,0.161356,0.637843,0.876314,0.586486,0.269254,0.092801,0.221484,0.0485057,0.397653,0.770425,0.91739,0.614219,0.215221,0.619978,0.275768,0.944315,0.245106,0.883985,0.374596,0.0390022,0.871842,0.508057,0.667764,0.483136,0.669154,0.469134,0.53096,0.0257612,0.349428,0.816119,0.668649,0.277804,0.505437,0.827419,0.11987,0.984893,0.554721,0.415986,0.00437617,0.886286,0.266999,0.678375,0.634888,0.915208,0.983666,0.0620261,0.0932067,0.577805,0.837186,0.51411,0.86246,0.607852,0.736548,0.449043,0.245125,0.723172,0.629382,0.132455,0.0561736,0.692324,0.158459,0.497993,0.42444,0.911816,0.375319,0.570698,0.447484,0.409415,0.858143,0.104409,0.498755,0.942733,0.16121,0.363045,0.736326,0.14701,0.114776,0.157534,0.0403187,0.229816,0.0365484,0.495444,0.519405,0.89795,0.894096,0.618466,0.498616,0.283546,0.15105,0.0938395,0.606339,0.79689,0.295796,0.384194,0.228836,0.229107,0.1445,0.639002,0.157904,0.534635,0.161751,0.593313,0.301625,0.508753,0.853768,0.403392,0.959048,0.0205325,0.746112,0.310927,0.639267,0.659267,0.316958,0.790949,0.758942,0.905318,0.327185,0.135375,0.597225,0.52838,0.421346,0.081388,0.240667,0.486144,0.0561181,0.0519851,0.21741,0.128436,|0.675596,0.562995,0.282388,0.90512,0.426513,0.729203,0.270699,0.811352,0.125088,0.445451,0.204882,0.173587,0.368465,0.880676,0.297911,0.706163,0.152098,0.220859,0.912496,0.725412,0.706506,0.364051,0.7199,0.760952,0.393981,0.204241,0.820875,0.78296,0.540944,0.0437474,0.110855,0.00461781,0.269563,0.021496,0.976062,0.268972,0.183649,0.582939,0.745221,0.103215,0.113454,0.576525,0.107195,0.0820392,0.930411,0.0447597,0.862191,0.213511,0.963121,0.758764,0.249863,0.646294,0.910097,0.678065,0.714589,0.801856,0.347629,0.584418,0.53974,0.0742612,0.830324,0.293288,0.66199,0.728093,0.497512,0.407843,0.43434,0.662359,0.879435,0.0189067,0.275166,0.955536,0.290468,0.647918,0.731683,0.0782034,0.905246,0.0681867,0.562155,0.893749,0.0377873,0.815595,0.778628,0.221094,0.220552,0.495241,0.4495,0.716706,0.269161,0.807382,0.0862731,0.604151,0.543586,0.458222,0.368323,0.92013,0.953929,0.740513,0.377267,0.356403,0.0846617,0.721175,0.347838,0.632407,0.746664,0.817376,0.254706,0.837391,0.403556,0.817534,0.0846531,0.0669675,0.290926,0.34583,0.294929,0.907502,0.0833902,0.577761,0.970404,0.389372,0.328821,0.249123,0.860353,0.685302,0.653607,0.165918,0.386562,0.578876,0.902523,0.393141,0.697477,0.466862,0.894146,0.95955,0.163194,0.277577,0.3975,0.295053,0.947561,0.395934,0.732542,0.6971,0.0195309,0.0260852,0.0575013,0.878602,0.419121,0.936161,0.949648,0.779481,0.787131,0.647739,0.380662,0.0887746,0.465685,0.760647,0.215592,0.477762,0.000141263,0.915008,0.0507594,0.106314,0.80594,0.0847212,0.131074,0.102155,0.587669,0.38472,0.856843,0.0448973,0.688713,0.41412,0.459392,0.569035,0.865471,0.885703,0.737244,0.136477,0.371688,0.673127,0.891428,0.863246,0.540249,0.856988,0.508557,0.370215,0.538326,0.315351,0.802933,0.567162,0.563394,0.173646,0.45601,0.0310564,0.962282,0.678323,0.786066,0.00277722,0.946795,0.700157,0.58818,0.651948,0.75266,0.947248,0.49478,0.598717,0.450226,0.979704,0.726343,0.93882,0.296619,0.160192,0.800444,0.14145,0.0364084,0.895771,0.971695,0.591539,0.439265,0.494599,0.907876,0.480402,0.324336,0.127609,0.0843918,0.21434,0.778294,0.355039,0.764943,0.0748404,0.664634,0.41779,0.150671,0.151702,0.296684,0.51529,0.503346,0.649582,0.450035,0.876796,0.0493385,0.647255,0.373414,0.209529,0.806203,0.843207,0.800507,0.875314,0.806353,0.216214,0.275498,0.108886,0.430912,0.145476,0.177672,0.811899,0.0310309,0.363309,0.445329,0.282912,0.447776,0.811969,0.809905,0.468662,0.703781,0.758351,0.334608,0.560478,0.797488,0.136455,0.321305,0.948597,0.52774,0.885949,0.259033,0.254809,0.295744,0.530649,0.806774,0.752101,0.168676,0.693891,0.609676,0.0620315,0.127324,0.694583,0.908714,0.901911,0.356407,0.737238,0.848521,0.612051,0.825032,0.0765558,0.376172,0.0984116,0.870984,0.217063,0.255363,0.0664908,0.430146,0.0987439,0.219483,0.510956,0.917968,0.869856,0.0091148,0.434091,0.482199,0.158937,0.137887,0.84989,0.956023,0.0094102,0.831861,0.445325,0.364719,0.684411,0.810342,0.544555,0.908127,0.299219,0.63535,0.58749,0.925107,0.164882,0.170735,0.149236,0.669509,0.909161,0.740856,0.605347,0.127545,0.167684,0.890567,0.779528,0.353373,0.426838,0.845248,0.569633,0.888894,0.476177,0.535381,0.507077,0.373646,0.585749,0.553234,0.534938,0.516805,0.204784,0.458586,0.441445,0.928989,0.588336,0.266254,0.852062,0.336763,0.0585199,0.215984,0.72308,0.564419,0.400258,0.920005,0.57483,0.171076,0.747821,0.504684,0.458062,0.273629,0.261175,0.617471,0.227433,0.125792,0.988914,0.368433,0.69463,0.740175,0.704072,0.642152,0.432008,0.258071,0.116349,0.525584,0.561182,0.850949,0.0771883,0.555448,0.0446597,0.768516,0.444751,0.970056,0.324879,0.18708,0.683086,0.7679,0.514848,0.968494,0.858121,0.494096,0.997529,0.852514,0.0439276,0.438228,0.495498,0.562269,0.991487,0.846615,0.988794,0.00556511,0.460942,0.150683,0.674118,0.457298,0.741233,0.267919,0.452831,0.93197,0.725356,0.904151,0.954051,0.020828,0.433355,0.723474,0.829742,0.530194,0.792411,0.859504,0.752365,0.775315,0.30555,0.800669,0.162713,0.00890356,0.497083,0.84235,0.46541,0.0751901,0.0560632,0.241827,0.475582,0.785449,0.252418,0.895044,0.922602,0.559246,0.805393,0.301588,0.233297,0.058655,0.320821,0.624529,0.476199,0.666842,0.447309,0.633424,0.0493786,0.397598,0.193419,0.958179,0.261178,0.961767,0.74282,0.780325,0.834053,0.946865,0.417738,0.600859,0.148063,0.176452,0.786513,0.169722,0.737979,0.192631,0.945114,0.122866,0.963591,0.174165,0.130967,0.908906,0.414621,0.0429901,0.617075,0.300911,0.491958,0.566431,0.365488,0.60695,0.0168435,0.663627,0.185856,0.100581,0.78422,0.433641,0.911243,0.062387,0.0455138,0.625881,0.919462,0.420225,0.151417,0.18206,0.134025,0.09139,0.347318,0.88219,0.44,0.0549806,0.175171,0.0980762,0.343245,0.0518997,0.75465,0.963475,0.977864,0.329607,0.327809,0.668458,0.585776,0.0031023,0.622069,0.468303,0.557122,0.82809,0.649608,0.194475,0.389165,0.216752,0.730353,0.684077,0.133881,0.0583463,0.248696,0.805716,0.320134,0.176963,0.0621378,0.123509,0.358256,0.197357,0.700066,0.19854,0.802436,0.403038,0.98184,0.438589,0.861322,0.389147,0.164168,0.239679,0.215427,0.139823,0.658206,0.0707952,0.85872,0.609798,0.317975,0.0924017,0.629402,0.34709,0.963967,0.109358,0.475181,0.295829,0.274481,0.275219,0.114411,0.706406,0.00601226,0.725229,0.604919,0.0930714,0.683951,0.0231726,0.978143,0.629092,0.678008,0.467762,0.889923,0.353031,0.913342,0.277978,0.538166,0.858218,0.733676,0.0989674,0.947327,0.381966,0.405659,0.898945,0.887625,0.227562,0.97759,0.80968,0.0265561,0.0484959,0.784788,0.832769,0.0333125,0.650705,0.00529414,0.234434,0.0501056,0.27689,0.91907,0.15977,0.197351,0.826466,0.827193,0.863632,0.295573,0.252319,0.639623,0.197742,0.741156,0.0960786,0.88994,0.776873,0.437615,0.672686,0.186481,0.626524,0.834179,0.688582,0.81237,0.64437,0.32107,0.700339,0.889437,0.815546,0.62414,0.0877601,0.744602,0.536644,0.204836,0.100407,0.986082,0.917413,0.373513,0.868575,0.472119,0.607611,0.450129,0.664744,0.828986,0.0944918,0.0223526,0.289473,0.867727,0.56417,0.46539,0.499195,0.702459,0.452495,0.344668,0.727097,0.237157,0.588226,0.589563,0.551095,0.511531,0.150838,0.750283,0.173933,0.815515,0.126101,0.356628,0.605894,0.0890237,0.843011,0.94102,0.250433,0.222238,0.695135,0.517536,0.973333,0.271188,0.724543,0.889369,0.300798,0.476707,0.675434,0.70166,0.712309,0.137198,0.750773,0.6017,0.4558,0.788975,0.18369,0.566025,0.270241,0.692435,0.831842,0.384752,0.926903,0.981865,0.785689,0.855566,0.0882825,0.0389035,0.0815676,0.52813,0.71865,0.113194,0.708669,0.355108,0.565952,0.857499,0.891003,0.229755,0.379834,0.0315138,0.976377,0.985239,0.695685,0.227199,0.620305,0.738843,0.569827,0.497366,0.509235,0.461058,0.776687,0.922017,0.401713,0.157489,0.418038,0.649237,0.594864,0.940379,0.300038,0.741082,0.11463,0.730271,0.59175,0.345317,0.220853,0.167848,0.620516,0.586549,0.292204,0.136268,0.69713,0.521732,0.936339,0.879062,0.961549,0.327179,0.603413,0.417493,0.58555,0.650964,0.278234,0.637257,0.627346,0.204558,0.174043,0.430364,0.111561,0.514015,0.792664,0.60032,0.348845,0.222744,0.919616,0.473992,0.0188525,0.31176,0.55632,0.804986,0.548489,0.601826,0.7801,0.950066,0.165181,0.83222,0.305106,0.0901454,0.121188,0.103588,0.993024,0.861161,0.774568,0.928279,0.664319,0.124267,0.573557,0.603652,0.922662,0.785413,0.00391525,0.547925,0.360736,0.81514,0.256559,0.311379,0.22799,0.767163,0.0884455,0.0775027,0.611337,0.64841,0.222629,0.130469,0.381843,0.4099,0.997291,0.230097,0.596346,0.474138,0.961348,0.330183,0.754659,0.994196,0.858645,0.107309,0.987425,0.771378,0.753285,0.0553148,0.754175,0.897696,0.833955,0.187204,0.728236,0.162371,0.749733,0.0901267,0.674943,0.696033,0.118826,0.693601,0.197211,0.635529,0.689218,0.177514,0.20977,0.489663,0.498057,0.0864067,0.839076,0.550057,0.148001,0.0339689,0.90473,0.764729,0.685111,0.852315,0.0229527,0.115852,0.516479,0.584825,0.843926,0.403137,0.733031,0.433157,0.0845557,0.878105,0.973631,0.0220767,0.161731,0.0333298,0.286894,0.354956,0.736463,0.620309,0.893115,0.395882,0.392419,0.945991,0.784963,0.481864,0.76205,0.37815,0.993102,0.441829,0.924427,0.924562,0.990127,0.455878,0.176753,0.617158,0.908006,0.269191,0.549127,0.491239,0.678474,0.247392,0.034148,0.462232,0.957656,0.677718,0.867451,0.694682,0.907453,0.165586,0.339613,0.0422332,0.971389,0.666888,0.468216,0.447621,0.0375844,0.579579,0.170153,0.355312,0.0125303,0.821112,0.514718,0.0857293,0.881378,0.069356,0.0414266,0.673059,0.89224,0.409795,0.89674,0.48845,0.32481,0.582618,0.481566,0.0433165,0.103635,0.829442,0.130317,0.510894,0.645001,0.827752,0.784137,0.510009,0.902284,0.344588,0.224949,0.175129,0.849062,0.23367,0.129233,0.132918,0.0858288,0.997609,0.226078,0.936219,0.62132,0.657088,0.137571,0.881285,0.792155,0.287585,0.374671,0.936258,0.976895,0.137389,0.571087,0.780418,0.449352,0.86737,0.222609,0.0775654,0.598384,0.902943,0.705499,0.334287,0.463971,0.735693,0.922395,0.421941,0.366546,0.271961,0.245405,0.79681,0.945254,0.493526,0.822758,0.29898,0.765227,0.104465,0.930062,0.776155,0.0599878,0.649241,0.399478,0.784841,0.506429,0.0325241,0.283565,0.222751,0.3036,0.36383,0.671846,0.276642,0.936353,0.753654,0.248928,0.709373,0.454411,0.211499,0.627731,0.0894548,0.6632,0.64123,|0.372417,0.1933,0.680128,0.785613,0.853438,0.578375,0.539583,0.893794,0.173954,0.253978,0.877843,0.760123,0.660065,0.261229,0.447037,0.0431511,0.827091,0.301184,0.453461,0.104648,0.346427,0.0192605,0.556103,0.0885518,0.722399,0.420389,0.420941,0.415944,0.0198469,0.894764,0.907562,0.459509,0.526251,0.728125,0.995229,0.964562,0.391133,0.161538,0.943882,0.635009,0.398403,0.348731,0.879086,0.51235,0.479769,0.610626,0.237497,0.441547,0.735773,0.67645,0.0953452,0.839742,0.788836,0.281324,0.734807,0.735015,0.379862,0.317085,0.703485,0.148379,0.626432,0.369559,0.255944,0.222191,0.443623,0.494659,0.177085,0.502759,0.99414,0.90304,0.318757,0.791415,0.912689,0.113597,0.944891,0.582684,0.338277,0.862782,0.3264,0.171165,0.848381,0.797725,0.483597,0.226118,0.201605,0.284238,0.776796,0.750178,0.537722,0.0346577,0.363224,0.338763,0.104198,0.905343,0.346169,0.211945,0.576909,0.795223,0.976774,0.479817,0.750671,0.0738624,0.757103,0.0511144,0.860384,0.161016,0.57518,0.359704,0.22273,0.94092,0.252493,0.133607,0.140579,0.545553,0.896293,0.754833,0.246588,0.466045,0.736846,0.292006,0.546851,0.432836,0.867066,0.836866,0.711027,0.55509,0.380025,0.13764,0.628927,0.568854,0.942334,0.497964,0.441978,0.0943291,0.204637,0.611234,0.859691,0.251948,0.0874817,0.0442261,0.999115,0.365418,0.437043,0.995308,0.677936,0.879567,0.46264,0.736783,0.893202,0.548839,0.645865,0.37318,0.386755,0.327638,0.597665,0.367996,0.356749,0.0578555,0.730235,0.969466,0.444757,0.244727,0.667182,0.738073,0.0722427,0.954909,0.871381,0.0456138,0.352057,0.0037142,0.53477,0.38495,0.427695,0.0363513,0.0275952,0.0841749,0.582723,0.784885,0.757732,0.247045,0.142005,0.653004,0.976998,0.420161,0.803506,0.16915,0.519859,0.731675,0.951601,0.527482,0.185149,0.132718,0.542487,0.983722,0.451908,0.699321,0.774458,0.784497,0.054613,0.971556,0.539583,0.679723,0.705571,0.497268,0.978286,0.850399,0.405579,0.512014,0.557719,0.466533,0.895001,0.530726,0.576371,0.956995,0.438829,0.433938,0.814836,0.67893,0.881996,0.285427,0.49753,0.154274,0.792199,0.78774,0.656122,0.366441,0.834739,0.471016,0.516417,0.778018,0.223827,0.288576,0.133944,0.108704,0.490149,0.354436,0.602628,0.898151,0.21464,0.94024,0.0208556,0.296279,0.668207,0.623165,0.40651,0.695971,0.478538,0.977199,0.870883,0.697339,0.124385,0.937398,0.380232,0.657969,0.338635,0.113848,0.332181,0.444845,0.663356,0.949726,0.0709125,0.404132,0.900625,0.201881,0.595807,0.735907,0.906932,0.197865,0.285835,0.416071,0.868154,0.286108,0.545764,0.506549,0.804232,0.63172,0.585085,0.63077,0.98036,0.859767,0.898805,0.697516,0.630459,0.731927,0.804029,0.95335,0.594427,0.180598,0.702171,0.506728,0.963644,0.64584,0.762491,0.532156,0.0552257,0.0118876,0.819545,0.405423,0.639478,0.867501,0.347654,0.0709263,0.233726,0.024835,0.0250555,0.0392892,0.914206,0.23986,0.835947,0.071583,0.57437,0.850778,0.566916,0.167182,0.898918,0.234126,0.0220314,0.314256,0.0950577,0.192711,0.298429,0.662064,0.0320207,0.593453,0.586437,0.855318,0.174259,0.490913,0.916039,0.0972528,0.433145,0.387417,0.236751,0.0950371,0.829766,0.288216,0.269467,0.448787,0.45907,0.414076,0.348092,0.0352187,0.730707,0.89936,0.512847,0.149252,0.253178,0.703284,0.135888,0.245137,0.778369,0.0961432,0.356186,0.845496,0.0124354,0.965203,0.0323603,0.728057,0.898427,0.623974,0.0690182,0.9014,0.23304,0.00699818,0.066695,0.602844,0.196477,0.507649,0.466034,0.131872,0.238914,0.239094,0.141611,0.64459,0.830597,0.672276,0.624553,0.857745,0.935033,0.510758,0.694882,0.294498,0.834976,0.168881,0.367817,0.98345,0.724461,0.837482,0.0376227,0.777562,0.0237894,0.949894,0.208038,0.665063,0.858095,0.07854,0.141544,0.388358,0.135759,0.741444,0.460875,0.547451,0.478285,0.306051,0.478666,0.535556,0.908337,0.162999,0.522142,0.259663,0.635901,0.437973,0.90321,0.912304,0.761323,0.781745,0.624276,0.494893,0.954894,0.169318,0.100454,0.0513773,0.632733,0.21401,0.800158,0.874856,0.0428545,0.140143,0.270843,0.184335,0.0418185,0.3252,0.761397,0.806491,0.956055,0.935898,0.317212,0.502925,0.643965,0.321503,0.0854731,0.0107801,0.404714,0.250367,0.779931,0.430111,0.544824,0.976223,0.966991,0.282277,0.41872,0.315654,0.121052,0.422467,0.213944,0.334725,0.601952,0.574516,0.915365,0.0132027,0.744923,0.516828,0.142199,0.275659,0.41226,0.886047,0.202398,0.79873,0.349848,0.289214,0.426548,0.105186,0.843177,0.37332,0.17386,0.461373,0.839931,0.686735,0.240627,0.0755814,0.0770261,0.783505,0.19828,0.154739,0.148769,0.950345,0.762055,0.362388,0.253482,0.552687,0.841514,0.472789,0.432718,0.0462847,0.690585,0.64862,0.72802,0.311871,0.726447,0.6405,0.64681,0.858839,0.305699,0.405113,0.294152,0.857328,0.851589,0.403137,0.0825751,0.58949,0.379741,0.745323,0.291495,0.830601,0.732777,0.942537,0.777731,0.541595,0.75439,0.898333,0.914182,0.573171,0.629844,0.242326,0.938334,0.937783,0.816907,0.897863,0.144166,0.240909,0.855588,0.133659,0.678964,0.152966,0.661894,0.0248367,0.329761,0.376749,0.284119,0.604578,0.83863,0.115789,0.0525286,0.182806,0.176882,0.980921,0.714213,0.298833,0.392373,0.202452,0.801852,0.500059,0.747115,0.727301,0.552115,0.413262,0.289968,0.957274,0.547766,0.764035,0.669657,0.592087,0.65558,0.0509732,0.593685,0.809641,0.11131,0.933217,0.374992,0.37633,0.585284,0.100567,0.662782,0.568891,0.115267,0.635323,0.32881,0.907872,0.533674,0.980322,0.911494,0.0754852,0.815106,0.201144,0.479846,0.258052,0.151436,0.879162,0.238752,0.115464,0.488794,0.906245,0.358659,0.202547,0.945764,0.266156,0.804262,0.0112801,0.727387,0.759128,0.55646,0.0826451,0.554021,0.447901,0.765025,0.850786,0.410264,0.085923,0.296536,0.087024,0.295851,0.50301,0.601462,0.341802,0.163879,0.631545,0.0104377,0.342389,0.789883,0.679935,0.329165,0.42348,0.256821,0.263898,0.292442,0.330338,0.118944,0.607187,0.860439,0.86163,0.289941,0.861094,0.176125,0.707333,0.885208,0.953129,0.430982,0.314086,0.220822,0.192441,0.126086,0.214819,0.849488,0.231954,0.674538,0.218517,0.0463947,0.101548,0.233818,0.762353,0.937375,0.49851,0.452144,0.16327,0.362674,0.604489,0.137533,0.351495,0.225316,0.124238,0.890262,0.761924,0.607622,0.945841,0.449258,0.705953,0.0276366,0.898113,0.690298,0.624257,0.323109,0.0191042,0.937168,0.670501,0.329884,0.764975,0.659166,0.812573,0.216212,0.150683,0.526713,0.732591,0.971732,0.818565,0.603385,0.224582,0.543407,0.156128,0.441514,0.694242,0.846606,0.674113,0.206741,0.463503,0.784029,0.692419,0.327468,0.691002,0.393047,0.804137,0.908046,0.127742,0.759464,0.0482352,0.194681,0.210282,0.163108,0.598384,0.393302,0.394859,0.803781,0.140809,0.123143,0.64476,0.99388,0.528625,0.0558203,0.363773,0.571191,0.763347,0.389821,0.901954,0.426711,0.415668,0.136925,0.403915,0.5321,0.254179,0.397099,0.0870664,0.996328,0.732519,0.953501,0.994812,0.676167,0.0151595,0.961232,0.537823,0.059516,0.108624,0.873896,0.0177982,0.925234,0.222883,0.00038296,0.722056,0.735368,0.881735,0.639642,0.961177,0.302214,0.278704,0.0841999,0.0323568,0.113141,0.0747273,0.353214,0.0274092,0.96366,0.323941,0.753783,0.172121,0.0600058,0.356662,0.607963,0.599676,0.313029,0.461307,0.597898,0.81938,0.422076,0.369777,0.941515,0.485479,0.54783,0.620084,0.28134,0.982688,0.802423,0.540628,0.0716019,0.161866,0.578198,0.0564864,0.10841,0.221043,0.201384,0.390913,0.339683,0.193192,0.762484,0.423681,0.019867,0.0661989,0.270116,0.112144,0.261074,0.852566,0.689661,0.877038,0.950687,0.583933,0.7931,0.541209,0.309474,0.745723,0.950079,0.848847,0.908737,0.260953,0.538162,0.362475,0.2577,0.337562,0.914842,0.605745,0.836089,0.260343,0.879427,0.996882,0.0443084,0.858942,0.667185,0.272223,0.548824,0.135579,0.568416,0.12556,0.91442,0.325472,0.670594,0.459447,0.424489,0.456538,0.900115,0.89428,0.321276,0.486057,0.763558,0.728702,0.12072,0.554618,0.909246,0.409815,0.899932,0.9305,0.623806,0.679487,0.176454,0.529477,0.639943,0.854199,0.308661,0.761811,0.669891,0.988584,0.407076,0.146242,0.410868,0.833523,0.331819,0.185532,0.00295025,0.0270447,0.700906,0.057668,0.994615,0.106921,0.477318,0.878059,0.138906,0.0690241,0.431828,0.774797,0.937665,0.373427,0.738827,0.694291,0.794842,0.630654,0.704478,0.253858,0.607287,0.94866,0.108197,0.599318,0.473261,0.126952,0.917328,0.773887,0.869285,0.27579,0.519578,0.87105,0.963371,0.119893,0.72675,0.259564,0.958519,0.0887284,0.293127,0.56246,0.276129,0.795966,0.75528,0.844661,0.397598,0.876836,0.73683,0.285815,0.4365,0.147075,0.671361,0.324993,0.0962387,0.076225,0.475475,0.224458,0.732095,0.382138,0.943912,0.272951,0.698536,0.502789,0.880085,0.891775,0.0373049,0.106373,0.808941,0.31261,0.160888,0.937258,0.344581,0.40537,0.075494,0.041885,0.956444,0.126437,0.524159,0.816863,0.417171,0.680857,0.73658,0.460867,0.177213,0.243029,0.868021,0.953743,0.775632,0.618354,0.643956,0.293967,0.253929,0.672891,0.668329,0.271508,0.0594952,0.138349,0.8768,0.937273,0.851373,0.28116,0.144589,0.569005,0.657204,0.0496414,0.971406,0.39708,0.310182,0.359721,0.358921,0.437191,0.521914,0.378672,0.6534,0.406092,0.601451,0.78453,0.275104,0.162248,0.532853,0.974521,0.621457,0.958165,0.245106,0.790628,0.0543821,0.811485,0.132921,0.289358,0.26462,0.171907,0.912576,0.889344,0.13767,0.436981,0.773768,0.21277,0.87088,0.391516,|0.266169,0.207075,0.151704,0.158281,0.935226,0.0729315,0.540236,0.32885,0.236144,0.486524,0.053651,0.223454,0.675115,0.498723,0.556239,0.968767,0.0092482,0.99715,0.936598,0.805739,0.743347,0.737777,0.238312,0.149171,0.73702,0.445234,0.907074,0.863879,0.934535,0.688383,0.934808,0.462582,0.933841,0.494972,0.665507,0.117858,0.421139,0.267858,0.717222,0.290413,0.515772,0.629242,0.894525,0.540996,0.323658,0.703781,0.839556,0.188588,0.52101,0.210035,0.398132,0.429496,0.466902,0.683373,0.340396,0.713654,0.846428,0.136266,0.798462,0.0514816,0.185591,0.639192,0.290551,0.99698,0.127778,0.166432,0.871628,0.382451,0.308503,0.739773,0.578312,0.243833,0.647678,0.820262,0.0541733,0.220982,0.0320294,0.118667,0.311816,0.385924,0.425521,0.545647,0.141596,0.651071,0.252024,0.10615,0.653902,0.810075,0.432522,0.086392,0.994747,0.168654,0.828226,0.997693,0.487386,0.0511861,0.0774259,0.856406,0.602768,0.888359,0.652151,0.995121,0.144651,0.0189553,0.65329,0.874452,0.00738525,0.507795,0.311282,0.925666,0.155966,0.795287,0.821731,0.72918,0.728826,0.334804,0.512405,0.952854,0.20361,0.313638,0.764944,0.581162,0.946517,0.237671,0.145309,0.770621,0.471097,0.322492,0.676798,0.89416,0.0861701,0.199451,0.386051,0.393093,0.622948,0.633017,0.495699,0.0925435,0.869585,0.874521,0.178737,0.403664,0.537139,0.305728,0.703971,0.263506,0.449961,0.866905,0.901014,0.666821,0.907458,0.110848,0.571636,0.353168,0.978251,0.521239,0.0562015,0.149616,0.955305,0.51972,0.495004,0.962342,0.718205,0.784948,0.808596,0.178005,0.831589,0.595682,0.80506,0.803621,0.961877,0.0138605,0.380819,0.529421,0.71238,0.827111,0.080066,0.139398,0.150094,0.319206,0.84564,0.363334,0.441402,0.496294,0.677289,0.0538113,0.899843,0.509033,0.141777,0.268219,0.85505,0.244211,0.991864,0.267856,0.949941,0.305779,0.938211,0.605524,0.187707,0.284464,0.296774,0.54356,0.194645,0.545107,0.0782704,0.225605,0.816704,0.40633,0.870699,0.206515,0.0707886,0.26043,0.774027,0.453926,0.687741,0.588643,0.0914841,0.258458,0.508628,0.354903,0.752569,0.956551,0.835369,0.462419,0.714507,0.449,0.980491,0.697826,0.855823,0.347088,0.383599,0.182729,0.585617,0.0539689,0.690907,0.440331,0.362729,0.58357,0.478085,0.697085,0.365908,0.808801,0.924126,0.160747,0.28062,0.0240372,0.409288,0.815021,0.119538,0.879925,0.955373,0.288367,0.662749,0.336443,0.618153,0.43376,0.860653,0.988525,0.0715031,0.209514,0.202968,0.152752,0.970658,0.456077,0.949412,0.210791,0.412004,0.515199,0.709889,0.837777,0.773432,0.218291,0.191438,0.824774,0.395813,0.616674,0.631801,0.0684519,0.214109,0.360929,0.392862,0.363953,0.0141014,0.715714,0.808692,0.424608,0.300279,0.660175,0.612772,0.996695,0.750166,0.51358,0.357061,0.504965,0.969817,0.36858,0.837362,0.834572,0.230001,0.847987,0.733107,0.640913,0.556355,0.780988,0.902816,0.311905,0.585758,0.379149,0.815223,0.776876,0.569277,0.922175,0.685505,0.0974277,0.66022,0.737311,0.382952,0.749335,0.813252,0.432965,0.684851,0.245134,0.661172,0.209172,0.0533174,0.200504,0.591356,0.357182,0.512231,0.67379,0.493778,0.732473,0.114868,0.654277,0.6344,0.890274,0.0200551,0.71046,0.114317,0.714816,0.82655,0.147618,0.585849,0.862862,0.83734,0.320182,0.459713,0.706245,0.744501,0.647227,0.977649,0.0573518,0.310626,0.837158,0.330831,0.903582,0.716456,0.599954,0.947802,0.582846,0.176406,0.114665,0.420034,0.73811,0.554164,0.588545,0.753489,0.484125,0.0930372,0.422342,0.368989,0.785021,0.667959,0.285166,0.201734,0.33519,0.553154,0.685779,0.0146205,0.355405,0.993962,0.947442,0.194927,0.969106,0.270951,0.245658,0.208443,0.0662227,0.425792,0.892573,0.612789,0.14827,0.496836,0.177206,0.897251,0.563817,0.402982,0.675696,0.430212,0.158355,0.435748,0.893647,0.127977,0.189515,0.154,0.184361,0.502375,0.0388701,0.995021,0.359387,0.47327,0.870532,0.114923,0.122558,0.355959,0.291903,0.979657,0.302417,0.470805,0.31268,0.634722,0.611948,0.908386,0.565083,0.452446,0.97048,0.183913,0.92141,0.536497,0.813427,0.28211,0.867339,0.0512517,0.0535851,0.195984,0.147625,0.0517535,0.487578,0.0901907,0.30942,0.755733,0.223464,0.554743,0.555349,0.844337,0.072058,0.173424,0.198572,0.0759556,0.856872,0.569319,0.797808,0.230808,0.599988,0.200866,0.112857,0.911385,0.61919,0.818167,0.649551,0.881733,0.288234,0.981032,0.37319,0.461392,0.594919,0.944878,0.58511,0.0598197,0.503037,0.786652,0.239219,0.535161,0.780819,0.363532,0.289669,0.897073,0.393227,0.570232,0.213359,0.527374,0.557179,0.414868,0.0368024,0.83932,0.804302,0.804777,0.215639,0.647636,0.66998,0.437381,0.00263363,0.397414,0.979333,0.597909,0.742239,0.0839095,0.00635618,0.961443,0.070258,0.380702,0.268922,0.593374,0.71543,0.820678,0.141945,0.191713,0.406051,0.78166,0.76601,0.910504,0.66741,0.897451,0.34511,0.316269,0.726283,0.548402,0.985783,0.421898,0.653376,0.624995,0.52593,0.136769,0.957373,0.0764557,0.822394,0.109562,0.124685,0.424829,0.0991282,0.340381,0.125817,0.14432,0.226836,0.729783,0.523753,0.0266825,0.0766479,0.679002,0.627799,0.261039,0.524987,0.482128,0.65273,0.642366,0.496111,0.487042,0.599693,0.387362,0.49265,0.0959693,0.363516,0.859174,0.000338197,0.0344409,0.742538,0.843127,0.548696,0.344534,0.0849318,0.136888,0.116617,0.849409,0.27253,0.54823,0.303621,0.309983,0.211078,0.676145,0.971158,0.0655465,0.196966,0.83707,0.793417,0.530121,0.226731,0.454849,0.748552,0.706825,0.686415,0.0702309,0.00412989,0.616409,0.0687417,0.418289,0.674913,0.10064,0.252932,0.250441,0.959497,0.253166,0.155239,0.500752,0.0463927,0.380716,0.574034,0.621788,0.488762,0.659203,0.500083,0.339895,0.206323,0.964144,0.32441,0.522929,0.0230262,0.941162,0.537785,0.592592,0.977007,0.958335,0.158418,0.118214,0.569476,0.723737,0.239163,0.843852,0.550532,0.655269,0.47786,0.509256,0.444172,0.712036,0.745825,0.330119,0.950925,0.992928,0.799009,0.967494,0.82516,0.45675,0.280126,0.706358,0.188536,0.773973,0.546598,0.464363,0.684921,0.697494,0.355708,0.979111,0.413824,0.507377,0.199354,0.544652,0.824144,0.469078,0.522934,0.641244,0.234233,0.238484,0.343692,0.645432,0.440403,0.166552,0.367163,0.693708,0.993016,0.512545,0.423692,0.173926,0.394527,0.370392,0.804663,0.981286,0.997432,0.391934,0.388826,0.164054,0.906481,0.204601,0.885332,0.661746,0.938151,0.319139,0.280287,0.652773,0.806286,0.926122,0.127635,0.227694,0.998277,0.0816907,0.857971,0.588433,0.983084,0.662231,0.0294811,0.575864,0.482545,0.967375,0.559593,0.303379,0.382308,0.142869,0.979073,0.819282,0.714122,0.629933,0.866286,0.0850877,0.934679,0.119113,0.631393,0.536708,0.943618,0.638548,0.944621,0.563597,0.488285,0.401883,0.0624114,0.779312,0.194469,0.926204,0.577548,0.43932,0.417047,0.360165,0.109034,0.829197,0.390838,0.0509297,0.375623,0.1041,0.908283,0.390934,0.0278084,0.768658,0.199146,0.667085,0.864006,0.455965,0.454742,0.157827,0.862695,0.442989,0.633755,0.36091,0.686472,0.143408,0.0452189,0.292388,0.13748,0.103812,0.958428,0.0473725,0.321053,0.420689,0.0731094,0.597177,0.383543,0.0396351,0.308331,0.21397,0.379449,0.477428,0.833918,0.218418,0.762343,0.298127,0.854788,0.108601,0.417576,0.766797,0.31131,0.0145265,0.0756822,0.944228,0.691936,0.702388,0.430692,0.312622,0.0643039,0.129473,0.205319,0.210394,0.158696,0.0752937,0.152649,0.233463,0.395601,0.491853,0.146263,0.391642,0.68486,0.741786,0.66648,0.974264,0.923141,0.000174344,0.035378,0.86635,0.405133,0.113821,0.264488,0.861375,0.234182,0.585536,0.408114,0.595365,0.0937061,0.372956,0.558888,0.831118,0.290895,0.182956,0.55211,0.580006,0.185818,0.4242,0.866869,0.999111,0.282135,0.893614,0.437969,0.904507,0.280293,0.539699,0.353355,0.583504,0.287994,0.744581,0.149359,0.857297,0.0702012,0.599443,0.613372,0.469492,0.064005,0.500861,0.722077,0.580355,0.959309,0.785447,0.240213,0.0820953,0.834743,0.0354142,0.518439,0.0627484,0.324191,0.0554823,0.367137,0.239465,0.770873,0.209982,0.699457,0.369855,0.434322,0.0698746,0.196229,0.761314,0.602584,0.806726,0.751851,0.594057,0.125898,0.754711,0.342868,0.366638,0.6423,0.478078,0.422067,0.551126,0.270677,0.211003,0.974185,0.850085,0.605771,0.438683,0.194104,0.57707,0.410576,0.231983,0.76684,0.192786,0.808192,0.701311,0.387907,0.933356,0.881395,0.759505,0.162251,0.648541,0.879458,0.722273,0.275657,0.740106,0.595338,0.534383,0.113438,0.498911,0.721414,0.792738,0.163487,0.455229,0.0257839,0.883044,0.25469,0.446469,0.0679003,0.288933,0.111822,0.156232,0.719217,0.356443,0.0738816,0.404606,0.114079,0.261727,0.989061,0.763224,0.1454,0.00502181,0.214584,0.511893,0.084745,0.0305462,0.242042,0.67353,0.724482,0.822635,0.891117,0.208315,0.0106183,0.622118,0.847247,0.979022,0.878157,0.395147,0.659674,0.680208,0.819221,0.354289,0.0820409,0.931887,0.368084,0.0763411,0.759918,0.60551,0.0082255,0.611051,0.427738,0.162665,0.676673,0.210318,0.553662,0.277964,0.208975,0.489886,0.010132,0.47112,0.158056,0.507239,0.267303,0.326353,0.996946,0.357861,0.862605,0.735932,0.748586,0.579763,0.52179,0.163703,0.350081,0.620918,0.850059,0.442327,0.581957,0.417758,0.983998,0.431973,0.648107,0.26243,0.665179,0.172656,0.551748,0.228467,0.794103,0.898584,0.659026,0.671417,0.843764,0.98161,0.36753,0.29738,0.774371,0.936809,0.748738,0.654518,0.767892,0.897333,0.174944,0.652325,0.264243,0.235093,0.909737,0.680223,0.148393,|0.862113,0.814202,0.434538,0.845755,0.208606,0.748911,0.377925,0.547213,0.319495,0.419108,0.190028,0.573509,0.858218,0.708505,0.572973,0.861294,0.978805,0.167475,0.481071,0.0531368,0.0883408,0.382332,0.266152,0.880374,0.890184,0.117642,0.34099,0.284198,0.366609,0.3608,0.747287,0.782236,0.170181,0.326863,0.485328,0.992657,0.963853,0.0113473,0.0299405,0.81412,0.359862,0.979809,0.451305,0.400884,0.778625,0.663403,0.288771,0.0584831,0.192807,0.832596,0.640181,0.0505337,0.562296,0.816063,0.384334,0.338525,0.117971,0.678218,0.437031,0.608334,0.791602,0.355663,0.0431591,0.262195,0.9615,0.900587,0.706074,0.318887,0.768946,0.183296,0.692481,0.410826,0.877908,0.0987716,0.807462,0.470269,0.380142,0.987713,0.821198,0.149969,0.382841,0.281468,0.723641,0.772456,0.288172,0.319827,0.903261,0.906867,0.768479,0.549466,0.483084,0.509853,0.845425,0.429869,0.174574,0.481332,0.158786,0.368852,0.437332,0.435437,0.692158,0.743954,0.225117,0.218219,0.0152342,0.178111,0.795434,0.348995,0.487082,0.70903,0.185699,0.987555,0.622777,0.943647,0.204321,0.345946,0.779253,0.683994,0.215397,0.185438,0.412485,0.184257,0.714714,0.484058,0.171942,0.123094,0.709729,0.306879,0.705772,0.137482,0.949728,0.954819,0.173673,0.957613,0.858325,0.296841,0.767818,0.116531,0.68575,0.817123,0.490443,0.175982,0.0899912,0.54222,0.583967,0.563111,0.587107,0.363989,0.709929,0.725432,0.719572,0.252546,0.95303,0.50721,0.944901,0.0177066,0.295269,0.216526,0.857751,0.713655,0.812099,0.0724019,0.971286,0.862999,0.701949,0.082158,0.186616,0.343146,0.601254,0.294543,0.581922,0.310439,0.266789,0.778684,0.953869,0.529176,0.419979,0.690936,0.0230299,0.692366,0.450945,0.903006,0.0247753,0.798865,0.285161,0.647949,0.522622,0.0855584,0.375593,0.332803,0.653822,0.782741,0.287858,0.514164,0.307038,0.46795,0.883974,0.927497,0.646662,0.997507,0.214134,0.0809294,0.84986,0.784341,0.646871,0.134497,0.437757,0.430239,0.855438,0.499662,0.423794,0.163954,0.960894,0.955368,0.249416,0.919577,0.657983,0.640848,0.456897,0.49284,0.774325,0.485205,0.858582,0.864576,0.535384,0.157094,0.590193,0.81423,0.104789,0.48455,0.406341,0.997273,0.264073,0.828396,0.675162,0.741349,0.31852,0.937226,0.867072,0.30998,0.219439,0.809167,0.899057,0.712314,0.100508,0.726733,0.325136,0.767294,0.164679,0.176627,0.693545,0.170996,0.22407,0.374896,0.988097,0.927573,0.771959,0.805635,0.471734,0.428512,0.373597,0.751656,0.29372,0.436852,0.826356,0.563977,0.510431,0.372528,0.265812,0.889987,0.249822,0.347067,0.536153,0.787822,0.760774,0.23977,0.63539,0.20533,0.276347,0.0496201,0.845554,0.747081,0.978688,0.305855,0.287643,0.0352074,0.852184,0.783122,0.326325,0.378882,0.535735,0.700052,0.693659,0.27125,0.0300397,0.423397,0.860089,0.742882,0.491481,0.558928,0.675219,0.379534,0.45547,0.283757,0.0341886,0.668715,0.00694704,0.58096,0.162,0.384653,0.163001,0.217941,0.695951,0.828389,0.546661,0.394712,0.836385,0.0834517,0.994861,0.710639,0.432602,0.227696,0.158745,0.850644,0.0809886,0.0624769,0.630414,0.517928,0.60388,0.0343717,0.594781,0.235707,0.50948,0.215014,0.380569,0.315373,0.688608,0.102174,0.720004,0.581195,0.121631,0.962059,0.786833,0.235049,0.784836,0.802973,0.677442,0.394141,0.742964,0.112863,0.403409,0.75051,0.988191,0.814721,0.0928814,0.626487,0.349932,0.212119,0.0436205,0.237838,0.264693,0.162183,0.621744,0.783409,0.275795,0.0879208,0.403916,0.0231368,0.987793,0.821528,0.846007,0.481433,0.747428,0.722779,0.524386,0.0484927,0.492137,0.411116,0.371283,0.555539,0.295774,0.879251,0.998145,0.172561,0.143847,0.47332,0.555756,0.26175,0.834668,0.107747,0.767759,0.793304,0.71029,0.349218,0.524624,0.774664,0.236002,0.406746,0.168977,0.52405,0.393682,0.0840733,0.723032,0.177343,0.789241,0.929545,0.874575,0.656296,0.589256,0.0168012,0.54005,0.206743,0.617145,0.305624,0.299138,0.57204,0.0913723,0.681325,0.803389,0.0416545,0.269179,0.964985,0.855862,0.502388,0.811025,0.635277,0.293421,0.09444,0.893028,0.100834,0.516996,0.470916,0.426181,0.413237,0.384564,0.60281,0.254214,0.909608,0.936738,0.779158,0.836415,0.985148,0.639416,0.466074,0.708478,0.0609517,0.12991,0.470141,0.017122,0.674669,0.152947,0.415602,0.753892,0.0657117,0.0338924,0.980293,0.908899,0.0715438,0.691019,0.164757,0.587094,0.150481,0.228019,0.155181,0.307247,0.323486,0.335874,0.984054,0.19371,0.0531026,0.55759,0.41612,0.216945,0.927877,0.234245,0.970962,0.880017,0.987327,0.392807,0.855554,0.424741,0.203581,0.816418,0.415062,0.439663,0.321498,0.037502,0.168764,0.0519949,0.518293,0.0693408,0.205973,0.826447,0.876233,0.931426,0.392107,0.246919,0.704902,0.319658,0.984164,0.923693,0.928535,0.0603096,0.787865,0.355359,0.577807,0.92145,0.298528,0.393792,0.432964,0.967915,0.445981,0.058706,0.564312,0.165115,0.81041,0.828523,0.963851,0.933823,0.184383,0.971019,0.359648,0.901038,0.855205,0.145465,0.941678,0.425079,0.913377,0.169889,0.319024,0.479525,0.714596,0.990681,0.17136,0.333502,0.466811,0.751177,0.85564,0.220726,0.836913,0.0140479,0.396833,0.447697,0.935074,0.730141,0.222385,0.898734,0.627795,0.415714,0.652566,0.000967145,0.687141,0.236509,0.185304,0.305869,0.932446,0.296693,0.415263,0.205817,0.520629,0.998551,0.400781,0.394955,0.243826,0.927971,0.0697699,0.670822,0.0826561,0.0320218,0.61482,0.749074,0.36717,0.905017,0.0246115,0.556737,0.220419,0.239294,0.538988,0.291519,0.0708414,0.767962,0.308155,0.624238,0.484273,0.808905,0.916279,0.364299,0.453453,0.79789,0.925566,0.991745,0.986167,0.127604,0.109757,0.669819,0.919795,0.372488,0.1709,0.49004,0.468105,0.459804,0.693706,0.0358092,0.148784,0.785039,0.630403,0.97926,0.957095,0.582442,0.325431,0.290566,0.497258,0.763335,0.51296,0.233532,0.257393,0.384009,0.9979,0.661487,0.253245,0.84205,0.717101,0.392407,0.744254,0.443818,0.772619,0.96213,0.805676,0.0491652,0.667995,0.498609,0.11853,0.604092,0.0709384,0.344466,0.28897,0.225479,0.435333,0.595154,0.693942,0.914397,0.0355837,0.330095,0.654076,0.523139,0.582472,0.37542,0.354259,0.894473,0.636078,0.669441,0.956379,0.235216,0.898917,0.95848,0.454829,0.466726,0.187533,0.327891,0.773123,0.8476,0.082249,0.690711,0.311729,0.266322,0.559965,0.542634,0.014109,0.243177,0.681223,0.417901,0.946595,0.134694,0.0548045,0.753672,0.506763,0.734093,0.54149,0.217354,0.118053,0.692043,0.867882,0.346482,0.635964,0.520399,0.174666,0.788198,0.941945,0.60847,0.0890332,0.20559,0.947315,0.0689161,0.447511,0.106416,0.23174,0.329078,0.426103,0.604054,0.859548,0.555938,0.879387,0.291013,0.814632,0.540141,0.537091,0.555029,0.987453,0.210519,0.30916,0.42836,0.280141,0.704771,0.629313,0.113914,0.830394,0.306703,0.325033,0.111298,0.361661,0.458018,0.0700437,0.499461,0.236418,0.116281,0.510266,0.555023,0.981519,0.361943,0.698735,0.0663708,0.440428,0.121735,0.887355,0.760907,0.570446,0.364929,0.0214061,0.419536,0.473413,0.191306,0.801686,0.937808,0.00080806,0.392554,0.511616,0.454338,0.206403,0.223716,0.64649,0.293407,0.205619,0.899094,0.462545,0.928338,0.0818011,0.0149649,0.208028,0.0612308,0.574733,0.124582,0.60063,0.124085,0.84647,0.768992,0.811584,0.637894,0.0291536,0.849486,0.592634,0.0706639,0.875289,0.390044,0.297421,0.0141377,0.91287,0.415946,0.125482,0.692514,0.825332,0.633793,0.228707,0.943565,0.0912511,0.0122181,0.920887,0.358384,0.249198,0.0474993,0.86598,0.961807,0.344715,0.384572,0.236614,0.0824248,0.749948,0.537545,0.780503,0.339265,0.274546,0.378185,0.288033,0.333001,0.423917,0.544288,0.269839,0.280788,0.762719,0.0715901,0.292368,0.505814,0.066533,0.39276,0.538698,0.642857,0.107188,0.440546,0.125226,0.888756,0.270362,0.221251,0.105758,0.855888,0.592713,0.355024,0.628513,0.217513,0.592495,0.228395,0.436758,0.271352,0.289897,0.360717,0.0528032,0.62263,0.997167,0.859561,0.197581,0.83043,0.34906,0.338937,0.323307,0.0107398,0.882182,0.615055,0.578989,0.413421,0.920511,0.911945,0.0258803,0.304858,0.783762,0.670581,0.991553,0.330145,0.0638555,0.253105,0.885323,0.475673,0.479454,0.274918,0.324044,0.249916,0.5884,0.551617,0.941042,0.847865,0.0567634,0.913026,0.532039,0.84101,0.0168693,0.427019,0.166284,0.959627,0.432241,0.660988,0.168447,0.90405,0.40452,0.16446,0.471334,0.928166,0.191811,0.728754,0.113942,0.270936,0.325426,0.347077,0.517291,0.904588,0.0260682,0.881604,0.4905,0.782108,0.057004,0.573409,0.445251,0.0485987,0.661191,0.0920293,0.0187379,0.183281,0.664195,0.13042,0.0558175,0.93092,0.849426,0.2626,0.0176499,0.307306,0.892457,0.639963,0.211829,0.1694,0.0235013,0.294852,0.391955,0.963366,0.761575,0.995468,0.0441312,0.58065,0.561779,0.332934,0.170969,0.509815,0.519614,0.426283,0.93506,0.398772,0.565213,0.605352,0.984785,0.699249,0.25639,0.0948899,0.527503,0.136471,0.274564,0.343789,0.687011,0.766519,0.744227,0.23641,0.405006,0.120306,0.0468492,0.474173,0.819454,0.579245,0.0151805,0.149127,0.815374,0.360541,0.467974,0.279553,0.880627,0.30593,0.961652,0.637944,0.671247,0.136435,0.544212,0.336724,0.666157,0.82914,0.741814,0.46729,0.33337,0.725817,0.716698,0.76132,0.210124,0.841967,0.849025,0.830729,0.40096,0.297698,0.904162,0.27758,0.840229,0.928983,0.499776,0.957607,0.367989,0.714504,0.378023,0.873418,0.911647,0.0953321,0.925518,0.271068,0.656579,0.517147,0.45196,0.86008,0.623467,0.519622,0.681239,|0.700804,0.855753,0.790285,0.476604,0.821837,0.0660895,0.138748,0.963243,0.382984,0.624605,0.323466,0.670296,0.965169,0.682449,0.214821,0.773911,0.246448,0.833484,0.919227,0.310037,0.636033,0.118903,0.17516,0.589084,0.682317,0.583152,0.547956,0.406356,0.709441,0.632171,0.0918193,0.293003,0.0247306,0.0816848,0.273268,0.586643,0.0317903,0.598058,0.892781,0.547457,0.133278,0.448696,0.645405,0.424711,0.919304,0.640618,0.403112,0.555338,0.836223,0.93385,0.32562,0.923327,0.396178,0.872308,0.558545,0.0905063,0.323593,0.857039,0.360777,0.0236034,0.760485,0.490316,0.235548,0.826241,0.741619,0.322803,0.887551,0.291529,0.535135,0.0146808,0.0777053,0.821174,0.0163986,0.638711,0.223083,0.82826,0.431978,0.979123,0.112005,0.964339,0.356409,0.172808,0.683055,0.594292,0.944954,0.348758,0.392856,0.778156,0.849729,0.913818,0.610052,0.245861,0.567512,0.610071,0.287551,0.428344,0.253176,0.386395,0.221951,0.531799,0.783956,0.735112,0.494574,0.0835218,0.625551,0.684298,0.58432,0.245832,0.334532,0.780289,0.117656,0.357261,0.834698,0.878974,0.442512,0.245214,0.281989,0.525446,0.810161,0.660379,0.185246,0.0727794,0.397836,0.9858,0.811439,0.888425,0.290575,0.598513,0.348716,0.800817,0.904581,0.877862,0.458747,0.253261,0.273678,0.210676,0.882104,0.204443,0.0950561,0.158082,0.917058,0.20801,0.366311,0.763482,0.323004,0.0862713,0.580622,0.867688,0.739218,0.0695457,0.91891,0.071323,0.253537,0.378168,0.0931913,0.0458449,0.381105,0.653748,0.274406,0.515426,0.565051,0.927318,0.438973,0.542619,0.389979,0.834522,0.334638,0.499287,0.0805307,0.48962,0.687726,0.278493,0.256272,0.599839,0.440066,0.058248,0.0826297,0.905293,0.47188,0.264694,0.919579,0.267657,0.211023,0.337531,0.184981,0.674667,0.927916,0.373672,0.899393,0.341958,0.863424,0.969663,0.347151,0.831074,0.846244,0.982248,0.404402,0.775394,0.716903,0.511773,0.843563,0.576632,0.464402,0.960485,0.953916,0.981452,0.037842,0.936851,0.0491365,0.421788,0.958834,0.718796,0.333074,0.00769544,0.48945,0.307287,0.976395,0.514909,0.16553,0.76029,0.662539,0.333502,0.214797,0.584634,0.400946,0.558286,0.787046,0.626768,0.327784,0.40703,0.113057,0.461307,0.959927,0.499272,0.0793263,0.288018,0.101894,0.747709,0.219772,0.867713,0.0092063,0.127322,0.886629,0.715021,0.618304,0.951573,0.333167,0.9321,0.352864,0.0973431,0.26078,0.0121511,0.87209,0.924269,0.419814,0.576419,0.0872248,0.858666,0.293358,0.0845333,0.334433,0.690082,0.964143,0.742522,0.151471,0.31733,0.0811998,0.811018,0.167988,0.274867,0.962806,0.432513,0.961114,0.868731,0.0836879,0.462519,0.671702,0.336546,0.335963,0.427796,0.527277,0.848303,0.470643,0.308353,0.43736,0.0168333,0.785067,0.823421,0.82121,0.0191306,0.890617,0.44244,0.498988,0.906208,0.865064,0.245148,0.18498,0.8316,0.226084,0.419143,0.0316182,0.317435,0.262879,0.344371,0.469378,0.193992,0.470992,0.17397,0.508153,0.975517,0.163485,0.338447,0.603578,0.554847,0.265361,0.396925,0.139067,0.733143,0.899536,0.810791,0.766765,0.918488,0.811104,0.997722,0.810405,0.924283,0.556915,0.920919,0.0670232,0.940243,0.354775,0.902817,0.50769,0.564036,0.470946,0.0435542,0.00736398,0.111868,0.144374,0.449861,0.483497,0.660662,0.423521,0.90274,0.0707025,0.0989767,0.143746,0.0240303,0.585847,0.519676,0.461284,0.0441739,0.836957,0.31688,0.682525,0.294982,0.191967,0.244435,0.187061,0.130814,0.201678,0.783227,0.860277,0.388507,0.545384,0.0464994,0.596474,0.53557,0.444667,0.394926,0.802005,0.436405,0.786729,0.426785,0.315154,0.207113,0.799922,0.879455,0.653155,0.419767,0.326846,0.789052,0.864005,0.743067,0.829148,0.458298,0.400998,0.160711,0.869155,0.155319,0.603685,0.956902,0.782708,0.417419,0.437442,0.99391,0.19268,0.990718,0.588291,0.470952,0.468926,0.815734,0.103806,0.415558,0.135022,0.588586,0.393118,0.375769,0.427492,0.0601493,0.0504279,0.849872,0.622067,0.356791,0.901991,0.0137738,0.0322102,0.676509,0.473373,0.458401,0.741878,0.76398,0.0994613,0.404183,0.0366491,0.6304,0.78949,0.852076,0.338828,0.785552,0.634794,0.809459,0.155893,0.293862,0.404761,0.242396,0.962696,0.131846,0.145493,0.157198,0.290762,0.257194,0.817975,0.874379,0.420723,0.754772,0.416094,0.709703,0.130856,0.40564,0.774413,0.430648,0.364626,0.904574,0.0809767,0.966398,0.720618,0.964785,0.270395,0.218681,0.144847,0.351681,0.14191,0.343339,0.1613,0.241282,0.0777978,0.392057,0.0220529,0.00485694,0.422694,0.365719,0.617561,0.479467,0.0930519,0.0425135,0.656931,0.198202,0.295508,0.902033,0.780881,0.488245,0.680192,0.905976,0.543053,0.118809,0.471624,0.483087,0.29635,0.107309,0.973273,0.695093,0.673771,0.849107,0.259664,0.716514,0.45615,0.979859,0.702007,0.976665,0.88602,0.629747,0.267524,0.357482,0.231469,0.834342,0.199176,0.351948,0.987793,0.877739,0.954287,0.468651,0.86211,0.85672,0.747516,0.120899,0.997478,0.13065,0.371703,0.576719,0.221778,0.0920965,0.33453,0.489537,0.180109,0.728269,0.62808,0.744709,0.854634,0.304415,0.718357,0.466941,0.260226,0.580296,0.132381,0.717226,0.286256,0.561443,0.411724,0.271671,0.572163,0.901055,0.512672,0.849633,0.513248,0.603511,0.265933,0.0727856,0.527709,0.215377,0.525814,0.825347,0.487213,0.118813,0.247891,0.387861,0.585717,0.787368,0.528021,0.589127,0.77162,0.61357,0.672825,0.473584,0.127362,0.322242,0.515303,0.970153,0.810074,0.87961,0.774705,0.208477,0.736566,0.133857,0.524477,0.828693,0.413668,0.938718,0.98714,0.432128,0.528834,0.234844,0.0178063,0.901164,0.234663,0.956169,0.975601,0.981533,0.558856,0.627171,0.812443,0.23857,0.489553,0.00986779,0.890711,0.69,0.230266,0.767851,0.295069,0.738583,0.274852,0.305071,0.235978,0.570257,0.203854,0.475508,0.0417553,0.503431,0.953835,0.998549,0.815197,0.183912,0.237875,0.13592,0.120841,0.77496,0.978311,0.0508834,0.235882,0.139264,0.536236,0.528087,0.181319,0.0692291,0.065616,0.165513,0.210712,0.448279,0.222864,0.859623,0.477394,0.416487,0.476577,0.668524,0.561501,0.981936,0.958029,0.651534,0.616018,0.0216628,0.693653,0.737371,0.747097,0.408116,0.0811583,0.130395,0.370926,0.88011,0.859678,0.803563,0.07963,0.550369,0.342775,0.424485,0.322074,0.708754,0.085391,0.65199,0.821329,0.797807,0.759891,0.980024,0.838014,0.184777,0.640076,0.610156,0.739322,0.393053,0.910965,0.658486,0.394719,0.81594,0.48153,0.294451,0.251689,0.842883,0.276067,0.832584,0.813301,0.527502,0.404223,0.812708,0.828934,0.0661756,0.553216,0.229428,0.273185,0.687452,0.430569,0.861194,0.904686,0.637949,0.306968,0.882239,0.482601,0.337302,0.139377,0.126678,0.0517145,0.633463,0.843993,0.572235,0.8807,0.00166905,0.0892102,0.453655,0.314933,0.400542,0.717499,0.315975,0.66388,0.9635,0.890763,0.538463,0.742773,0.441358,0.860169,0.592157,0.391704,0.585025,0.0479665,0.882802,0.300865,0.488531,0.0675896,0.769727,0.813397,0.908347,0.919811,0.791829,0.765396,0.928603,0.325612,0.587554,0.0447636,0.963956,0.230506,0.71777,0.237025,0.919565,0.684301,0.440804,0.719154,0.216198,0.487053,0.88366,0.827109,0.860408,0.354386,0.341248,0.926993,0.569502,0.799728,0.0405522,0.398817,0.0309495,0.0506533,0.124253,0.429922,0.352157,0.434103,0.41717,0.494667,0.909416,0.265128,0.130612,0.062084,0.734237,0.442035,0.436097,0.471739,0.905133,0.516643,0.539261,0.30838,0.437725,0.483369,0.984399,0.788664,0.381335,0.379216,0.615518,0.123593,0.22606,0.796819,0.695734,0.395428,0.272328,0.965435,0.498165,0.492812,0.0461285,0.300184,0.949004,0.489901,0.108491,0.253022,0.934514,0.982875,0.111647,0.706827,0.570814,0.210384,0.119703,0.45261,0.630233,0.968248,0.544065,0.230309,0.257483,0.689383,0.0644616,0.00589865,0.681128,0.52135,0.219263,0.465411,0.488731,0.628397,0.197645,0.515172,0.827452,0.982881,0.550399,0.247522,0.455113,0.602975,0.0957676,0.758236,0.690022,0.197307,0.0964398,0.0153973,0.583797,0.82085,0.146656,0.373617,0.603523,0.507067,0.318451,0.42733,0.527728,0.676408,0.982231,0.894687,0.0313329,0.0487688,0.154109,0.559985,0.769595,0.00493509,0.947807,0.886753,0.54513,0.135236,0.441435,0.940037,0.646052,0.209985,0.312415,0.552985,0.557243,0.39215,0.310849,0.803169,0.153138,0.547567,0.422446,0.620325,0.741,0.30561,0.894611,0.63383,0.317485,0.967008,0.114002,0.158155,0.674472,0.561489,0.365139,0.552665,0.392047,0.5284,0.220567,0.679912,0.237146,0.480474,0.0229291,0.863877,0.647591,0.232337,0.867219,0.315203,0.448078,0.902223,0.518047,0.496591,0.559062,0.601393,0.947897,0.58878,0.841588,0.685241,0.025538,0.16981,0.407337,0.312421,0.215955,0.757696,0.833459,0.166058,0.270236,0.999874,0.787168,0.696988,0.309396,0.810678,0.69713,0.0522314,0.551192,0.545108,0.569414,0.171751,0.000972986,0.71724,0.434676,0.976074,0.599348,0.449551,0.282034,0.427549,0.234225,0.439989,0.299051,0.436003,0.223982,0.00261539,0.0328127,0.251967,0.571963,0.256357,0.462537,0.8732,0.0153503,0.971658,0.928829,0.567693,0.347538,0.944248,0.104076,0.239886,0.390208,0.965929,0.92558,0.947643,0.893145,0.0072518,0.488102,0.996546,0.0299849,0.442528,0.886434,0.395782,0.324819,0.143637,0.831238,0.0504803,0.826976,0.634983,0.889203,0.271499,0.597943,0.00287396,0.63,0.969517,0.738266,0.8186,0.474629,0.548825,0.806211,0.783433,0.887679,0.778387,0.159161,0.75083,0.344452,0.996901,0.58641,0.425803,0.110017,0.987755,0.311242,0.641614,0.626201,0.631468,0.640905,0.0345777,0.464701,0.774349,0.878353,|0.247835,0.684607,0.192709,0.657599,0.166629,0.00305587,0.410147,0.161715,0.881037,0.872794,0.903364,0.161658,0.372234,0.719427,0.466179,0.0973984,0.987342,0.787392,0.589405,0.152464,0.206499,0.373631,0.169202,0.643286,0.228018,0.433524,0.0664936,0.786445,0.20069,0.738179,0.792235,0.986036,0.302658,0.299763,0.699401,0.116008,0.198782,0.332226,0.0491357,0.172696,0.0872719,0.284932,0.300641,0.879132,0.780542,0.865708,0.0778697,0.734211,0.765093,0.963392,0.754464,0.695079,0.582819,0.873217,0.543221,0.595596,0.959872,0.817059,0.830993,0.798205,0.695222,0.380812,0.934141,0.00703883,0.777593,0.103496,0.40873,0.865273,0.411555,0.36847,0.83679,0.93213,0.772969,0.115828,0.695097,0.552147,0.418783,0.922125,0.34858,0.00757295,0.643421,0.915132,0.84335,0.980704,0.0227956,0.0313419,0.482691,0.00554329,0.971748,0.564278,0.843626,0.0038895,0.168965,0.64325,0.478489,0.587115,0.67307,0.761344,0.551697,0.734209,0.74372,0.637355,0.175068,0.142889,0.447497,0.482719,0.150663,0.0166098,0.408319,0.0975802,0.595843,0.59501,0.408942,0.245744,0.181453,0.430773,0.919405,0.841273,0.120192,0.896038,0.252803,0.503356,0.0681624,0.588008,0.0533031,0.151183,0.284012,0.562129,0.405632,0.12646,0.294095,0.377929,0.807822,0.785556,0.234123,0.98899,0.660242,0.88586,0.530959,0.180996,0.964273,0.828553,0.19328,0.643022,0.922079,0.824994,0.390774,0.978293,0.0241874,0.524924,0.396159,0.89747,0.914012,0.0223725,0.504461,0.435365,0.00685936,0.256501,0.650797,0.89108,0.930218,0.549266,0.819406,0.43268,0.068244,0.772365,0.43443,0.000334382,0.768857,0.491096,0.893461,0.743293,0.0629283,0.587512,0.94275,0.0484131,0.170275,0.90587,0.967162,0.0499131,0.683109,0.210667,0.657068,0.20748,0.244822,0.978193,0.858559,0.623692,0.114372,0.364503,0.804363,0.0814349,0.739318,0.433917,0.6756,0.996826,0.757012,0.00122213,0.297898,0.928902,0.264666,0.234249,0.210908,0.666034,0.186333,0.935475,0.709033,0.379547,0.0897804,0.671764,0.105181,0.380113,0.548316,0.794694,0.609754,0.718239,0.452564,0.410606,0.339554,0.183097,0.101339,0.729376,0.302244,0.13321,0.466388,0.647857,0.508687,0.706518,0.733873,0.465669,0.507988,0.251277,0.984632,0.00352561,0.899936,0.369721,0.856066,0.228393,0.821224,0.812987,0.731009,0.911118,0.271343,0.594332,0.109004,0.168074,0.835467,0.899488,0.0360386,0.495364,0.0294045,0.785143,0.646935,0.883577,0.442888,0.199132,0.792293,0.805372,0.722714,0.983604,0.665319,0.682661,0.107508,0.0154293,0.211172,0.618599,0.97393,0.137191,0.384952,0.52576,0.191776,0.299021,0.474279,0.534033,0.647203,0.941692,0.64163,0.167279,0.758759,0.0421153,0.311915,0.668462,0.097578,0.195309,0.31853,0.879781,0.580608,0.898493,0.0547038,0.495552,0.568697,0.727579,0.187272,0.650097,0.0671376,0.929833,0.0163592,0.591001,0.943636,0.814003,0.479403,0.476619,0.530555,0.603753,0.0437573,0.0714762,0.53925,0.386598,0.0159776,0.39427,0.300745,0.772906,0.645461,0.581059,0.0041948,0.463619,0.28621,0.397444,0.360822,0.877075,0.806166,0.355356,0.902798,0.138857,0.0527627,0.54445,0.824235,0.530988,0.522068,0.726664,0.63189,0.0964628,0.64305,0.790284,0.647203,0.0593017,0.0988674,0.632152,0.683062,0.519338,0.271777,0.671639,0.956576,0.850458,0.264887,0.376883,0.492411,0.363609,0.263339,0.731695,0.789211,0.547959,0.815092,0.226018,0.202807,0.739551,0.539555,0.124028,0.623703,0.783331,0.471353,0.0064826,0.682491,0.387236,0.204983,0.0683063,0.0251644,0.0904462,0.672972,0.205532,0.707882,0.415436,0.359091,0.926669,0.256321,0.027347,0.13944,0.716173,0.597154,0.464047,0.259673,0.41264,0.192339,0.917009,0.903584,0.00975007,0.354974,0.224741,0.3701,0.135644,0.279587,0.876423,0.609818,0.376569,0.554095,0.906096,0.663567,0.460367,0.600321,0.918608,0.0471267,0.50296,0.394738,0.577201,0.637192,0.394709,0.716775,0.267525,0.270679,0.319911,0.123685,0.443157,0.932704,0.77002,0.982342,0.594715,0.483883,0.105195,0.618589,0.926372,0.735111,0.0942997,0.573736,0.0403488,0.491851,0.625292,0.00422871,0.251583,0.892505,0.0983756,0.385028,0.501125,0.83699,0.710373,0.423763,0.43564,0.914745,0.105197,0.984501,0.62916,0.81742,0.691732,0.169977,0.692679,0.950495,0.0975628,0.19115,0.885121,0.943945,0.824198,0.97665,0.506009,0.005606,0.396482,0.654111,0.321606,0.331235,0.912783,0.320544,0.967619,0.457476,0.648272,0.341341,0.333481,0.914632,0.929788,0.216738,0.106324,0.907276,0.245233,0.679985,0.278435,0.983869,0.87064,0.637936,0.190942,0.636888,0.87205,0.519252,0.332176,0.0568732,0.347889,0.303127,0.419754,0.313755,0.118599,0.0714432,0.929243,0.981715,0.297629,0.625368,0.262035,0.35147,0.24703,0.084164,0.651103,0.0448047,0.42817,0.738063,0.754507,0.685744,0.325441,0.658709,0.841674,0.802695,0.907031,0.397916,0.316515,0.681272,0.440794,0.398923,0.578534,0.904292,0.536411,0.907156,0.324568,0.506296,0.234189,0.050783,0.858852,0.656842,0.10058,0.426029,0.306542,0.437088,0.935328,0.747855,0.176401,0.755029,0.0446576,0.485027,0.811185,0.598652,0.0520661,0.615506,0.103162,0.96493,0.200163,0.646513,0.0885435,0.59593,0.877403,0.0589612,0.251253,0.18869,0.100374,0.819681,0.907691,0.362468,0.957579,0.747501,0.443616,0.264984,0.402151,0.125811,0.91031,0.374169,0.416503,0.502323,0.215313,0.758153,0.0117393,0.594132,0.0215942,0.30835,0.712635,0.655847,0.504692,0.635971,0.779889,0.473641,0.154361,0.59911,0.960506,0.445428,0.950644,0.945361,0.299278,0.809375,0.126647,0.59406,0.881388,0.819373,0.899456,0.0848057,0.89668,0.0116349,0.566356,0.0238588,0.464559,0.985824,0.309628,0.457201,0.444543,0.624493,0.995861,0.478916,0.124553,0.703459,0.725402,0.91557,0.0321854,0.320733,0.688325,0.999411,0.395949,0.413283,0.0962614,0.380006,0.885559,0.477573,0.807635,0.0665269,0.614668,0.832767,0.505609,0.899564,0.996821,0.540565,0.888782,0.173851,0.891927,0.807754,0.164492,0.533096,0.387772,0.451949,0.49016,0.516453,0.689262,0.747985,0.971168,0.350688,0.364917,0.409977,0.00993848,0.767995,0.711568,0.867167,0.171376,0.557507,0.716137,0.494074,0.157048,0.73733,0.429299,0.871271,0.00790673,0.198825,0.714852,0.199303,0.370228,0.913442,0.459367,0.0567846,0.395926,0.0223408,0.475747,0.546682,0.27984,0.123116,0.0930342,0.868223,0.20359,0.0253217,0.406622,0.397976,0.0371101,0.291254,0.696379,0.154815,0.732765,0.0246483,0.187093,0.75386,0.70603,0.855633,0.999225,0.0575539,0.260951,0.440168,0.613471,0.92848,0.970307,0.579678,0.856293,0.412772,0.320703,0.629772,0.140359,0.571524,0.576509,0.574443,0.296047,0.680709,0.970872,0.963514,0.711631,0.368958,0.118668,0.0856553,0.934524,0.629032,0.0588282,0.888402,0.749997,0.937108,0.489026,0.0556239,0.0855125,0.774673,0.48719,0.451536,0.396316,0.0267876,0.0291301,0.547179,0.219358,0.832799,0.80992,0.366908,0.501584,0.488316,0.445235,0.0601678,0.654079,0.58497,0.100324,0.00946754,0.915201,0.215301,0.581846,0.20178,0.980062,0.379662,0.832282,0.18113,0.565687,0.91243,0.294779,0.910169,0.81993,0.615156,0.231203,0.35175,0.24789,0.861539,0.185958,0.10737,0.845482,0.862059,0.345282,0.138057,0.360912,0.591548,0.734152,0.469713,0.591486,0.477462,0.59267,0.90822,0.303629,0.66833,0.336179,0.840498,0.921143,0.658224,0.082746,0.604826,0.786181,0.718845,0.0842752,0.747985,0.252444,0.488618,0.650917,0.958593,0.110705,0.701374,0.357166,0.0265441,0.862087,0.538671,0.376239,0.534254,0.606717,0.0701424,0.844251,0.0975547,0.964067,0.415656,0.109362,0.819394,0.110051,0.234718,0.282517,0.746587,0.967889,0.972067,0.838297,0.60424,0.475954,0.933152,0.593032,0.572317,0.318463,0.382779,0.208434,0.0802978,0.28996,0.131866,0.290944,0.688892,0.940311,0.818978,0.633752,0.110595,0.0517297,0.84204,0.889686,0.84192,0.501669,0.135778,0.770535,0.681878,0.9981,0.434824,0.656941,0.909989,0.962991,0.795145,0.899563,0.539607,0.362126,0.251427,0.0568089,0.327832,0.843953,0.808114,0.810064,0.320012,0.581835,0.909522,0.0222507,0.793097,0.688103,0.674534,0.216372,0.316196,0.280117,0.621358,0.0441811,0.275071,0.386773,0.844914,0.594086,0.933476,0.33624,0.889833,0.117307,0.273478,0.849919,0.89789,0.0118722,0.294555,0.0878129,0.736416,0.0690897,0.644863,0.91625,0.504945,0.277421,0.38166,0.0331842,0.749165,0.982421,0.347607,0.140871,0.224472,0.29054,0.379764,0.742138,0.812482,0.968626,0.953247,0.45877,0.427351,0.431323,0.969001,0.675816,0.0732601,0.361223,0.439236,0.0119369,0.882005,0.541725,0.732397,0.419887,0.227257,0.476719,0.400788,0.709776,0.34184,0.792159,0.430937,0.674751,0.892665,0.433176,0.570719,0.291497,0.907672,0.291673,0.795902,0.584364,0.362927,0.0464343,0.274059,0.778853,0.19007,0.359064,0.32747,0.760203,0.801415,0.540678,0.48715,0.66393,0.562025,0.71449,0.493247,0.89487,0.545583,0.890441,0.409414,0.832705,0.235147,0.777014,0.527185,0.450312,0.572802,0.0806105,0.645279,0.329618,0.745108,0.503815,0.935225,0.87413,0.633845,0.315531,0.172413,0.0735149,0.121018,0.0237702,0.86653,0.114315,0.862818,0.442803,0.219013,0.208046,0.991355,0.483122,0.645188,0.583419,0.133203,0.846734,0.48409,0.414198,0.984761,0.637251,0.942954,0.725292,0.291013,0.918058,0.66925,0.634177,0.139243,0.48921,0.0330791,0.910022,0.326247,0.707355,0.0370019,0.661465,0.375884,0.354881,0.610472,0.866207,0.449959,0.939583,0.114906,0.674602,0.0658237,0.233271,0.691188,0.775453,0.266753,0.710507,0.83643,0.480319,0.931795,0.389826,|0.285887,0.927895,0.116176,0.607704,0.577984,0.872302,0.051745,0.273337,0.632674,0.255199,0.7198,0.812469,0.280895,0.649585,0.219724,0.83646,0.625577,0.454067,0.0293273,0.493774,0.356425,0.749941,0.72075,0.749511,0.161779,0.332083,0.889083,0.857319,0.390006,0.395452,0.495292,0.377639,0.981242,0.572835,0.705406,0.552733,0.0515025,0.402676,0.344624,0.766954,0.954028,0.409928,0.642579,0.835319,0.752096,0.849167,0.783853,0.919331,0.0661672,0.90611,0.750425,0.567587,0.912169,0.56447,0.0880858,0.166048,0.846017,0.283837,0.0964811,0.616474,0.139902,0.613477,0.585514,0.735294,0.429858,0.362407,0.445098,0.494961,0.760817,0.134242,0.57892,0.564281,0.463282,0.43698,0.585079,0.878906,0.539835,0.683627,0.597432,0.821216,0.382077,0.00591928,0.973839,0.510996,0.219773,0.665095,0.612065,0.0898578,0.772107,0.393373,0.318863,0.475791,0.0546899,0.829849,0.67956,0.327505,0.288028,0.868035,0.331047,0.869951,0.801984,0.434448,0.513092,0.171641,0.981748,0.466925,0.0906833,0.0980544,0.485002,0.25005,0.0929375,0.179302,0.430577,0.174016,0.72282,0.224041,0.497961,0.71304,0.0979161,0.159136,0.907597,0.186003,0.829522,0.135301,0.26727,0.234204,0.0747252,0.728891,0.150535,0.0878453,0.352591,0.355168,0.238914,0.275362,0.960897,0.41838,0.86123,0.543015,0.511348,0.219123,0.7759,0.214509,0.867388,0.175687,0.492518,0.502141,0.893159,0.359739,0.142025,0.776495,0.696198,0.915184,0.818832,0.598767,0.725828,0.960769,0.77479,0.00578004,0.109235,0.769311,0.512563,0.658985,0.800576,0.250055,0.678973,0.74173,0.828671,0.0583273,0.2782,0.270503,0.559109,0.950107,0.645496,0.0727346,0.654232,0.357805,0.289606,0.0855609,0.0737627,0.606798,0.67135,0.305825,0.0849586,0.433718,0.852645,0.629099,0.785831,0.617232,0.0707986,0.414007,0.483369,0.834932,0.991467,0.717364,0.115454,0.894886,0.315854,0.249428,0.0365275,0.9988,0.612067,0.646557,0.339954,0.110432,0.895292,0.201385,0.668347,0.277453,0.464745,0.695927,0.479645,0.449046,0.862928,0.422225,0.807377,0.960839,0.172962,0.912636,0.502377,0.996204,0.464265,0.727137,0.386406,0.466503,0.560133,0.799905,0.615993,0.700013,0.618027,0.322711,0.312295,0.656437,0.0833473,0.136827,0.0522573,0.320383,0.393649,0.861158,0.71493,0.240946,0.353767,0.872042,0.815309,0.887682,0.282929,0.102951,0.64473,0.0753824,0.417323,0.0454272,0.925683,0.23903,0.231259,0.28499,0.429406,0.356721,0.146295,0.604074,0.025095,0.905745,0.60771,0.102065,0.855962,0.0550027,0.604934,0.590433,0.359057,0.689278,0.221024,0.340545,0.725247,0.0541995,0.12326,0.482583,0.42296,0.488686,0.00449705,0.993124,0.813921,0.313305,0.0413731,0.237115,0.259915,0.743886,0.780496,0.113203,0.541107,0.840576,0.544153,0.755362,0.455928,0.0274371,0.869505,0.44487,0.960497,0.421944,0.0231369,0.554805,0.697593,0.633514,0.898439,0.0424587,0.68325,0.796322,0.207395,0.353938,0.0347515,0.979716,0.832449,0.807519,0.599992,0.308453,0.112155,0.0354375,0.712052,0.258151,0.450976,0.0265338,0.0118833,0.0929229,0.769292,0.769658,0.79915,0.718123,0.547157,0.278035,0.955894,0.545871,0.802486,0.121732,0.15588,0.839919,0.662746,0.193948,0.977711,0.855108,0.898527,0.964427,0.484539,0.758576,0.649432,0.130445,0.160196,0.959107,0.120645,0.960422,0.178236,0.986494,0.927347,0.786596,0.938025,0.374186,0.950066,0.729265,0.709956,0.481862,0.996642,0.138736,0.301622,0.29265,0.261933,0.209887,0.756062,0.0263762,0.39382,0.433696,0.269286,0.849227,0.869755,0.112483,0.226014,0.962542,0.358418,0.886313,0.794316,0.849373,0.609381,0.573101,0.00701869,0.797082,0.443421,0.457266,0.371693,0.0618043,0.0813864,0.811035,0.493068,0.0240374,0.8001,0.740299,0.475062,0.689507,0.53149,0.358991,0.490693,0.0407735,0.902813,0.726942,0.612573,0.644018,0.202278,0.686492,0.372664,0.643551,0.500299,0.915926,0.445257,0.948325,0.500964,0.288067,0.562867,0.383248,0.172552,0.329947,0.631323,0.969951,0.719854,0.693125,0.337353,0.632936,0.707152,0.72658,0.7417,0.516233,0.473064,0.847263,0.41417,0.102221,0.134931,0.0261242,0.668353,0.386624,0.53035,0.155254,0.177115,0.864166,0.655235,0.245939,0.774961,0.518522,0.199372,0.459204,0.480115,0.302596,0.92967,0.312437,0.3048,0.707566,0.14241,0.430999,0.5239,0.298435,0.952068,0.903724,0.345344,0.238273,0.669037,0.194224,0.627874,0.340602,0.760146,0.201648,0.406386,0.638453,0.143194,0.993586,0.686227,0.6427,0.359221,0.0666059,0.635248,0.441142,0.840641,0.314516,0.269887,0.911602,0.156368,0.41731,0.899956,0.842427,0.62625,0.21688,0.600581,0.77503,0.255133,0.00208938,0.625609,0.386879,0.861057,0.167408,0.541359,0.749296,0.201024,0.316475,0.6414,0.228547,0.987915,0.0648379,0.480624,0.546215,0.268543,0.224325,0.941145,0.61348,0.551868,0.981831,0.31048,0.696507,0.266182,0.95472,0.526859,0.320639,0.519254,0.71846,0.944608,0.821733,0.187749,0.639312,0.395484,0.960308,0.743398,0.147109,0.398985,0.578635,0.354356,0.486064,0.245986,0.705644,0.412175,0.139732,0.353388,0.122048,0.0701863,0.403264,0.726801,0.141925,0.656862,0.407026,0.635863,0.0946252,0.0243089,0.0553467,0.247664,0.808132,0.258789,0.136868,0.692414,0.317264,0.205772,0.902862,0.196504,0.646741,0.728093,0.30168,0.197748,0.389174,0.204531,0.877616,0.448787,0.223212,0.42337,0.23923,0.730432,0.24219,0.340578,0.731699,0.173829,0.149935,0.265051,0.855154,0.603033,0.0769448,0.87587,0.000915945,0.33894,0.722248,0.644619,0.47966,0.317515,0.0478153,0.766447,0.633352,0.427451,0.890768,0.228803,0.595627,0.808756,0.661557,0.798296,0.903637,0.793396,0.0343184,0.881946,0.384162,0.563894,0.987018,0.714761,0.82508,0.397507,0.574813,0.229904,0.947201,0.67163,0.601225,0.162295,0.0948986,0.794616,0.543557,0.824229,0.0875365,0.551755,0.420657,0.235608,0.384229,0.388227,0.436966,0.583229,0.475311,0.0281729,0.324373,0.629442,0.659076,0.347309,0.604855,0.461403,0.426038,0.936193,0.887146,0.0294484,0.671466,0.924386,0.181337,0.949591,0.433107,0.484146,0.101682,0.992595,0.956258,0.46336,0.0120569,0.39194,0.824001,0.0943414,0.654206,0.24963,0.683644,0.0772107,0.0296254,0.12393,0.620666,0.828552,0.76832,0.111601,0.257549,0.320977,0.644002,0.300826,0.430963,0.756932,0.404969,0.186303,0.00355875,0.867387,0.729701,0.121738,0.723966,0.0278013,0.263031,0.774223,0.696682,0.406942,0.0485353,0.263016,0.43953,0.986173,0.544612,0.562884,0.92299,0.58826,0.690834,0.868205,0.718954,0.799839,0.671616,0.750107,0.687344,0.972019,0.604646,0.853277,0.0452392,0.0811462,0.83254,0.641144,0.957423,0.846296,0.700388,0.955152,0.506683,0.73295,0.0752607,0.30327,0.158636,0.48349,0.228348,0.817748,0.813282,0.871408,0.243987,0.957534,0.277415,0.438565,0.958317,0.546012,0.840666,0.643636,0.00546384,0.957994,0.0255362,0.715269,0.227127,0.0332878,0.537,0.463591,0.460741,0.17623,0.715708,0.412147,0.0941499,0.968795,0.981751,0.286849,0.143266,0.109285,0.445976,0.66123,0.452886,0.757616,0.639394,0.554703,0.28254,0.58975,0.75365,0.734499,0.456746,0.882726,0.0189113,0.680499,0.207115,0.685673,0.291178,0.625065,0.474353,0.615022,0.0431644,0.76159,0.085724,0.234129,0.989478,0.277761,0.46852,0.346446,0.451671,0.913932,0.885893,0.309643,0.175975,0.210065,0.319643,0.110619,0.204036,0.368797,0.0902473,0.565264,0.334157,0.601869,0.391693,0.0727404,0.844666,0.456291,0.0795853,0.824523,0.467706,0.649346,0.265721,0.746759,0.0152957,0.206288,0.780815,0.573757,0.0392768,0.285795,0.763247,0.328999,0.299888,0.93172,0.107561,0.383461,0.264574,0.467211,0.309309,0.665242,0.765919,0.130192,0.464433,0.0457106,0.339821,0.551444,0.10682,0.484984,0.521211,0.388487,0.523309,0.430646,0.569379,0.263561,0.383019,0.955591,0.723069,0.0550253,0.719469,0.463254,0.827712,0.950621,0.341485,0.778067,0.265115,0.0161714,0.745279,0.40659,0.496856,0.614576,0.373699,0.950734,0.212824,0.141096,0.858249,0.0226375,0.319556,0.409071,0.0480706,0.0970629,0.509231,0.407088,0.109059,0.164751,0.655764,0.848358,0.16988,0.514906,0.0356727,0.68016,0.164259,0.256932,0.295534,0.320759,0.235516,0.640771,0.722289,0.526063,0.546676,0.979451,0.754981,0.512564,0.137905,0.418274,0.404847,0.570746,0.0611688,0.890143,0.621509,0.34436,0.617228,0.740607,0.582602,0.329877,0.0192024,0.185411,0.807004,0.500192,0.615627,0.0795896,0.777024,0.236431,0.534414,0.771826,0.41215,0.628776,0.767682,0.273119,0.874346,0.0980602,0.995408,0.441297,0.207682,0.230744,0.124957,0.381058,0.726644,0.95074,0.853396,0.457221,0.383938,0.830614,0.452283,0.191332,0.868607,0.829866,0.761002,0.384634,0.451332,0.829333,0.176258,0.469906,0.719309,0.912869,0.936634,0.39583,0.563855,0.211182,0.248488,0.118416,0.97454,0.957107,0.937935,0.691294,0.020465,0.438558,0.362414,0.0312505,0.0165603,0.0248999,0.872611,0.41924,0.5193,0.877954,0.548659,0.801094,0.960881,0.852646,0.0743731,0.466022,0.146261,0.757012,0.155088,0.857746,0.644919,0.176088,0.676014,0.393753,0.196201,0.714135,0.996786,0.0584471,0.703454,0.286694,0.23851,0.0871423,0.0670772,0.979783,0.981593,0.741026,0.688586,0.500391,0.422487,0.127668,0.113705,0.58413,0.592761,0.82035,0.389744,0.0434202,0.635246,0.336447,0.479125,0.218251,0.177976,0.198914,0.0923844,0.784144,0.523271,0.108088,0.41236,0.636656,0.613552,0.286022,0.576897,0.61016,0.193944,0.701805,0.379604,0.13203,0.355258,0.676215,0.353686,0.478101,0.781,0.496096,0.592395,0.594139,0.589814,|0.883718,0.81414,0.132129,0.0208335,0.450917,0.516783,0.195629,0.509752,0.511805,0.113286,0.756908,0.155438,0.254189,0.552459,0.40855,0.477766,0.982897,0.279703,0.54284,0.299901,0.802753,0.598789,0.695454,0.831267,0.170731,0.341189,0.823043,0.187864,0.790349,0.366775,0.991342,0.794346,0.230191,0.258615,0.45819,0.659536,0.997757,0.687586,0.982137,0.320085,0.765953,0.820542,0.0218618,0.360595,0.346279,0.243832,0.740123,0.239026,0.361571,0.0855402,0.158762,0.424239,0.73722,0.658388,0.356847,0.704291,0.101014,0.089641,0.942848,0.321591,0.503262,0.626537,0.115035,0.634174,0.733098,0.13546,0.61394,0.902042,0.628324,0.796473,0.86221,0.00962555,0.524671,0.347507,0.313194,0.308891,0.48905,0.513084,0.688921,0.424468,0.992103,0.4074,0.0412921,0.511435,0.677851,0.634198,0.355571,0.682605,0.547501,0.629482,0.519333,0.350255,0.26514,0.024962,0.943257,0.0402709,0.712839,0.123698,0.284737,0.0802947,0.0448654,0.0292143,0.140739,0.880983,0.584257,0.401825,0.904269,0.417819,0.251,0.344555,0.617885,0.519106,0.731266,0.170102,0.875661,0.960674,0.646941,0.598687,0.737145,0.583903,0.362422,0.826743,0.0715043,0.620511,0.0397012,0.952381,0.388722,0.999847,0.313925,0.431534,0.225546,0.959742,0.682343,0.237154,0.455268,0.384925,0.268669,0.338927,0.104152,0.160451,0.143975,0.505241,0.585147,0.917868,0.906472,0.924796,0.335093,0.742634,0.548312,0.666591,0.733802,0.392815,0.808913,0.971158,0.12217,0.82408,0.37378,0.353729,0.770119,0.709629,0.488497,0.169775,0.830428,0.142978,0.356131,0.857727,0.277448,0.322878,0.849102,0.716104,0.318852,0.533733,0.420175,0.115942,0.307296,0.609146,0.0292544,0.434834,0.356069,0.106122,0.358582,0.727757,0.143288,0.417827,0.346135,0.426851,0.199483,0.117683,0.327014,0.197495,0.0388307,0.517212,0.697613,0.149725,0.499157,0.252462,0.695189,0.0342844,0.677254,0.675941,0.638142,0.822251,0.0297883,0.315402,0.3126,0.0829173,0.14094,0.480256,0.984,0.555568,0.226093,0.138088,0.365458,0.0680525,0.508177,0.816291,0.0569654,0.191007,0.818961,0.294724,0.367231,0.385196,0.035405,0.813873,0.0642383,0.152995,0.722807,0.980054,0.82712,0.166992,0.305869,0.234346,0.537784,0.614417,0.524308,0.100917,0.435336,0.717842,0.316461,0.700281,0.691693,0.699814,0.528641,0.221753,0.543347,0.619879,0.754443,0.503874,0.290419,0.123924,0.54374,0.71263,0.780696,0.301892,0.636691,0.0181233,0.413129,0.765025,0.493983,0.00244659,0.821135,0.709451,0.0301248,0.63934,0.585616,0.770522,0.445991,0.353068,0.579582,0.178785,0.553304,0.777056,0.921655,0.129402,0.940628,0.839524,0.816281,0.923224,0.364786,0.0491394,0.501242,0.060876,0.823397,0.501507,0.939075,0.781164,0.800914,0.669285,0.893819,0.138861,0.561648,0.809417,0.174004,0.631937,0.416992,0.435404,0.133314,0.760542,0.39083,0.625751,0.0288452,0.997239,0.94676,0.306191,0.93872,0.253927,0.710987,0.694193,0.593632,0.0629246,0.864199,0.43056,0.273457,0.0492582,0.110443,0.734413,0.280307,0.724214,0.578992,0.160963,0.444178,0.270549,0.981552,0.917893,0.473632,0.788097,0.456711,0.115206,0.35054,0.781625,0.348691,0.928005,0.892559,0.434689,0.136542,0.420076,0.971118,0.649695,0.782523,0.743816,0.193531,0.79425,0.328364,0.276449,0.0815756,0.853917,0.813812,0.327557,0.629259,0.227933,0.802971,0.659324,0.257057,0.783971,0.299072,0.767068,0.21085,0.369219,0.940282,0.565495,0.645878,0.0270543,0.0815788,0.609526,0.482224,0.733111,0.894996,0.161636,0.659108,0.544637,0.675927,0.756854,0.945035,0.431506,0.441257,0.590801,0.909424,0.698767,0.99358,0.208828,0.897407,0.720666,0.208412,0.280155,0.79903,0.0134315,0.306131,0.954428,0.77753,0.556844,0.0310768,0.1501,0.453231,0.391163,0.250339,0.699099,0.550104,0.749811,0.32409,0.567047,0.12019,0.426697,0.34088,0.0725487,0.69495,0.980711,0.782731,0.266265,0.386011,0.340005,0.301339,0.706149,0.151844,0.567371,0.388352,0.244713,0.0608697,0.0176476,0.225885,0.62082,0.973492,0.236476,0.581247,0.639445,0.807832,0.695529,0.472542,0.0737417,0.0119702,0.432155,0.975719,0.284691,0.0380408,0.653863,0.590489,0.747633,0.675976,0.00645983,0.695363,0.452126,0.942451,0.170159,0.0431341,0.0383514,0.823301,0.894867,0.739793,0.143779,0.377832,0.379968,0.920103,0.346879,0.693509,0.333488,0.617599,0.0703239,0.237371,0.585336,0.200357,0.573358,0.739111,0.483911,0.0830613,0.585506,0.918498,0.793375,0.658485,0.138223,0.133462,0.738277,0.0996353,0.451063,0.558119,0.598828,0.139451,0.837871,0.720693,0.141729,0.366424,0.279627,0.277973,0.926589,0.491464,0.0164705,0.244116,0.383951,0.453658,0.106093,0.271355,0.669439,0.784934,0.0180591,0.668588,0.770821,0.894484,0.612289,0.532033,0.281565,0.813709,0.575557,0.30142,0.778863,0.391917,0.110514,0.169802,0.795252,0.0211508,0.719861,0.691567,0.502713,0.00511479,0.35246,0.084852,0.618454,0.501343,0.930466,0.0488247,0.889849,0.683797,0.523021,0.537239,0.0883718,0.400731,0.40845,0.488469,0.136867,0.236695,0.515763,0.481291,0.216255,0.298893,0.733935,0.808424,0.900801,0.279462,0.154777,0.851097,0.842587,0.195376,0.744934,0.492563,0.972242,0.0625205,0.951048,0.812567,0.766169,0.0209659,0.168038,0.648305,0.875706,0.759614,0.199589,0.965015,0.411111,0.32324,0.855087,0.623699,0.838074,0.622062,0.370715,0.163274,0.45877,0.778433,0.358963,0.637251,0.785024,0.890414,0.453973,0.971659,0.554367,0.483428,0.832398,0.319723,0.915865,0.274553,0.798936,0.0821152,0.494821,0.392493,0.136458,0.161888,0.189109,0.910866,0.991146,0.82425,0.437541,0.743665,0.735542,0.68405,0.808387,0.0284098,0.832045,0.0782436,0.198119,0.141295,0.662372,0.392241,0.124957,0.386163,0.832722,0.761692,0.927382,0.191366,0.619405,0.336266,0.00347757,0.983386,0.345348,0.620244,0.344388,0.0473374,0.908729,0.144472,0.9837,0.0854703,0.306434,0.0935349,0.627009,0.300577,0.895148,0.506039,0.187374,0.690787,0.724153,0.718269,0.0875714,0.686957,0.714685,0.340909,0.353528,0.243497,0.969498,0.0255372,0.17976,0.584066,0.372694,0.627643,0.81179,0.104526,0.588511,0.351166,0.746741,0.871965,0.222861,0.982497,0.0596983,0.186472,0.848847,0.321535,0.120996,0.0938893,0.514451,0.699427,0.448485,0.629309,0.649459,0.0989478,0.513261,0.658751,0.987507,0.465471,0.297389,0.0120928,0.0156689,0.241961,0.658043,0.825612,0.491401,0.884117,0.752274,0.977933,0.958767,0.0379357,0.901089,0.150761,0.734217,0.648238,0.560014,0.0770261,0.01517,0.664251,0.599832,0.920128,0.441961,0.544977,0.441518,0.952905,0.457591,0.232284,0.628422,0.699234,0.0593114,0.0103357,0.342878,0.797463,0.229147,0.436292,0.707896,0.583268,0.385165,0.474449,0.895149,0.753309,0.000840425,0.0190061,0.782439,0.72333,0.0360128,0.490743,0.933262,0.43954,0.267766,0.290901,0.558834,0.846517,0.543396,0.688699,0.452643,0.990301,0.82564,0.389656,0.293667,0.35807,0.825107,0.0982848,0.82314,0.32637,0.856401,0.245057,0.0949015,0.57097,0.833682,0.428486,0.628661,0.397117,0.386886,0.507597,0.834396,0.253618,0.359752,0.427404,0.916651,0.616166,0.132534,0.314617,0.986749,0.934415,0.159153,0.698697,0.813481,0.34041,0.683711,0.842921,0.545289,0.872825,0.242768,0.122974,0.351641,0.305409,0.619331,0.23033,0.65557,0.0429527,0.458281,0.290537,0.290826,0.972484,0.906609,0.964709,0.289097,0.107107,0.908371,0.784083,0.613791,0.945414,0.386153,0.747286,0.977604,0.587215,0.970276,0.787506,0.764781,0.916612,0.257017,0.126298,0.889395,0.188039,0.0628717,0.660011,0.118074,0.0810916,0.82123,0.181201,0.388709,0.967049,0.152757,0.208742,0.978995,0.627779,0.628104,0.689544,0.649012,0.476452,0.682497,0.849314,0.205886,0.341939,0.262109,0.960907,0.801276,0.88427,0.0715344,0.491248,0.742311,0.425257,0.500901,0.214365,0.876356,0.618257,0.280723,0.764128,0.940619,0.736598,0.469541,0.158556,0.423228,0.298524,0.832639,0.345892,0.185918,0.0147852,0.683443,0.400449,0.150766,0.615809,0.921318,0.332528,0.320446,0.107453,0.392233,0.817792,0.910493,0.459295,0.257327,0.859606,0.480548,0.0316187,0.0998374,0.111293,0.975608,0.945099,0.89414,0.979393,0.0537748,0.444907,0.591816,0.242293,0.309649,0.668593,0.36061,0.159945,0.298339,0.958363,0.589602,0.635974,0.811594,0.592602,0.217692,0.0762531,0.55234,0.231472,0.80943,0.386857,0.108127,0.386446,0.926424,0.752057,0.865007,0.438682,0.207013,0.923048,0.879284,0.38807,0.541794,0.504198,0.794323,0.395124,0.79911,0.766131,0.0541914,0.67648,0.19392,0.802458,0.00471646,0.00282758,0.495358,0.899154,0.724447,0.49124,0.652496,0.0624779,0.767281,0.557821,0.196136,0.669098,0.0955505,0.358853,0.182884,0.182456,0.179536,0.906786,0.847206,0.188166,0.82177,0.819,0.711516,0.266282,0.87002,0.324429,0.0347334,0.747123,0.313797,0.977376,0.197939,0.296849,0.13964,0.953551,0.0606828,0.725423,0.548929,0.474698,0.694063,0.541712,0.514807,0.59942,0.514458,0.256788,0.991622,0.924041,0.128137,0.390571,0.303286,0.931138,0.182969,0.839741,0.231586,0.983138,0.271925,0.699757,0.222725,0.549716,0.1644,0.796391,0.616279,0.961674,0.149671,0.392308,0.655741,0.0651665,0.369931,0.921684,0.174946,0.405632,0.245356,0.848827,0.454046,0.444192,0.801598,0.0444262,0.58427,0.39058,0.459074,0.129027,0.416209,0.756374,0.057802,0.0863026,0.216216,0.962627,0.494863,0.455608,0.802479,0.359296,0.584042,0.433206,0.371026,0.117364,0.718245,0.0957525,0.856991,0.0804371,0.325395,0.768086,0.412842,0.717211,0.495928,0.00967914,0.441629,0.592421,0.763988,|0.131631,0.920926,0.400768,0.853898,0.608844,0.0721677,0.927527,0.0296091,0.769694,0.669985,0.0688521,0.474481,0.0391198,0.729329,0.547974,0.800735,0.00583744,0.818799,0.617826,0.767602,0.163186,0.0127791,0.441056,0.932273,0.0781818,0.0443289,0.692586,0.349246,0.198198,0.986603,0.237056,0.669902,0.537481,0.620719,0.643712,0.500723,0.192398,0.466032,0.776003,0.717976,0.111494,0.367458,0.831246,0.430031,0.0426695,0.924307,0.7128,0.400011,0.478299,0.904567,0.969367,0.461842,0.894054,0.360652,0.5207,0.368891,0.831817,0.348601,0.772064,0.305419,0.0463971,0.744625,0.839207,0.761608,0.670363,0.880383,0.351301,0.214908,0.697202,0.0141532,0.365772,0.745314,0.447165,0.87216,0.187314,0.313049,0.665977,0.791126,0.153877,0.865406,0.747359,0.441284,0.509795,0.313351,0.880617,0.325625,0.275424,0.325854,0.211523,0.406405,0.884192,0.541309,0.511494,0.570349,0.142501,0.761669,0.0357653,0.814572,0.00184453,0.271544,0.573025,0.989615,0.898333,0.913919,0.217806,0.260246,0.209798,0.259845,0.975903,0.299104,0.727166,0.537425,0.0320803,0.566873,0.454143,0.488718,0.354439,0.232862,0.760679,0.795501,0.307491,0.34892,0.711532,0.847382,0.889493,0.702981,0.347027,0.661022,0.484854,0.224925,0.393108,0.264249,0.835578,0.288483,0.169659,0.186936,0.787223,0.631444,0.732415,0.541946,0.181121,0.698491,0.567778,0.348593,0.243285,0.0847,0.189612,0.817879,0.479817,0.525526,0.0694253,0.481341,0.604314,0.969531,0.821875,0.854999,0.140998,0.812046,0.555831,0.616137,0.924072,0.118119,0.527153,0.0420727,0.597325,0.373051,0.0701504,0.00405043,0.352543,0.0799375,0.60121,0.357501,0.0926892,0.792831,0.11998,0.61287,0.335784,0.00324416,0.519783,0.214682,0.11118,0.469549,0.327315,0.501631,0.682261,0.399924,0.455783,0.34485,0.121989,0.312952,0.443691,0.379949,0.710704,0.0127148,0.385006,0.289731,0.956269,0.593368,0.201249,0.743251,0.934215,0.536991,0.271329,0.641857,0.444159,0.588559,0.186633,0.346728,0.728211,0.146219,0.347071,0.150688,0.0524386,0.780539,0.47,0.905682,0.496063,0.538697,0.0043748,0.436748,0.543752,0.502742,0.0131614,0.0583254,0.256277,0.174664,0.479631,0.34604,0.188047,0.625777,0.472534,0.88843,0.503894,0.359806,0.37454,0.797386,0.644864,0.81182,0.633005,0.177333,0.525036,0.631223,0.920689,0.691507,0.757124,0.415122,0.358128,0.288986,0.315111,0.601413,0.728852,0.0464363,0.974466,0.647511,0.383703,0.780189,0.0884483,0.98181,0.224451,0.062205,0.896367,0.22152,0.349031,0.335676,0.76369,0.0683696,0.69778,0.104826,0.0664595,0.783727,0.742224,0.249425,0.946568,0.81301,0.375133,0.281197,0.227571,0.0444774,0.206228,0.71071,0.547519,0.587938,0.565356,0.852825,0.456875,0.416306,0.427878,0.830447,0.0493189,0.195271,0.389702,0.16441,0.0662774,0.178423,0.35358,0.511448,0.888996,0.825445,0.47136,0.677838,0.394274,0.92476,0.832789,0.201326,0.995212,0.590251,0.519533,0.416738,0.0851018,0.596624,0.233936,0.820495,0.636592,0.0389148,0.26983,0.768873,0.908324,0.833444,0.662973,0.534446,0.946672,0.220639,0.538422,0.215572,0.735885,0.0508868,0.381633,0.900799,0.974417,0.508503,0.302748,0.836098,0.279148,0.37266,0.367282,0.584905,0.889901,0.12231,0.698003,0.999588,0.57932,0.701389,0.0532916,0.419883,0.877175,0.976601,0.47486,0.50747,0.420064,0.662413,0.484473,0.836825,0.669153,0.290658,0.177001,0.946191,0.655158,0.534159,0.793305,0.824472,0.609537,0.375372,0.634382,0.231307,0.599269,0.720381,0.464283,0.0763526,0.0539671,0.0323442,0.651446,0.267638,0.371172,0.596162,0.992176,0.854288,0.899112,0.745985,0.922622,0.276439,0.679558,0.902587,0.43037,0.789483,0.550303,0.344331,0.119998,0.522995,0.613794,0.913229,0.0795713,0.497619,0.0859817,0.555326,0.0407559,0.330358,0.535256,0.465552,0.532191,0.116324,0.626011,0.0964263,0.03875,0.532777,0.987025,0.000237763,0.799581,0.769182,0.415771,0.386265,0.966628,0.357143,0.113533,0.973976,0.698926,0.905604,0.97891,0.984481,0.139358,0.962584,0.666568,0.922245,0.403859,0.570009,0.169631,0.64025,0.828499,0.142826,0.942556,0.98169,0.866167,0.930396,0.656354,0.553948,0.427743,0.89524,0.666328,0.393203,0.675848,0.958724,0.325664,0.513257,0.48741,0.470717,0.44727,0.663099,0.995952,0.359241,0.198074,0.783019,0.0926045,0.380584,0.659218,0.228877,0.440004,0.59474,0.903441,0.718862,0.0868526,0.406695,0.654225,0.105611,0.0428578,0.714491,0.356738,0.361413,0.236861,0.34105,0.28406,0.269345,0.253165,0.798807,0.770626,0.255203,0.579381,0.385525,0.410641,0.857416,0.759656,0.624164,0.486769,0.606126,0.611869,0.0987475,0.104634,0.990157,0.312291,0.0335885,0.707282,0.162109,0.219616,0.0118513,0.929774,0.812966,0.576898,0.379867,0.549002,0.30052,0.152112,0.243688,0.876932,0.342468,0.743814,0.549373,0.731487,0.524455,0.128486,0.350851,0.86605,0.736888,0.786547,0.0317811,0.246443,0.121389,0.202038,0.775668,0.299232,0.0879831,0.389508,0.409132,0.162081,0.181831,0.0807058,0.757096,0.273511,0.994912,0.337542,0.986471,0.164597,0.836289,0.354715,0.701321,0.504404,0.134279,0.0169899,0.136016,0.592654,0.0545765,0.219065,0.814841,0.346723,0.9344,0.215226,0.81879,0.495495,0.574938,0.0494838,0.857824,0.0947061,0.564645,0.886387,0.848522,0.296103,0.0563037,0.338441,0.555619,0.785651,0.964083,0.173893,0.124301,0.901859,0.519479,0.123777,0.169727,0.207721,0.685269,0.418183,0.164248,0.0788333,0.379624,0.0805717,0.641668,0.7305,0.870017,0.0775424,0.69963,0.0602912,0.116533,0.375775,0.390826,0.0564916,0.486412,0.990581,0.0763708,0.470154,0.0456055,0.0697471,0.555028,0.189828,0.55647,0.499574,0.914524,0.621211,0.66068,0.104442,0.185559,0.269758,0.525136,0.657048,0.542066,0.171175,0.38372,0.237162,0.249109,0.895841,0.161763,0.676158,0.862003,0.915025,0.987054,0.921366,0.231072,0.737539,0.882207,0.869293,0.576347,0.935405,0.063061,0.846611,0.882582,0.789131,0.162454,0.548877,0.781209,0.391321,0.38307,0.0664593,0.385434,0.540178,0.596413,0.912009,0.953265,0.497087,0.0110592,0.415053,0.238864,0.594904,0.85662,0.328657,0.68069,0.0446481,0.212509,0.867045,0.481294,0.47922,0.518089,0.773829,0.178381,0.920059,0.320627,0.0444458,0.39087,0.529229,0.630996,0.935927,0.769936,0.30691,0.888499,0.789585,0.397792,0.866492,0.180611,0.206336,0.110324,0.284149,0.0194455,0.250533,0.0823287,0.105856,0.70413,0.335306,0.432087,0.685062,0.524515,0.727342,0.198807,0.560371,0.862839,0.553462,0.261321,0.144279,0.472786,0.958132,0.329887,0.235463,0.457463,0.112293,0.72407,0.601616,0.144018,0.737647,0.0421075,0.828107,0.637904,0.344384,0.629315,0.623156,0.11105,0.413827,0.927704,0.230222,0.4895,0.454369,0.537094,0.887091,0.218896,0.19122,0.0293174,0.191819,0.0711353,0.808272,0.509272,0.32665,0.308661,0.86477,0.806658,0.15051,0.277199,0.870932,0.971636,0.318811,0.976345,0.344988,0.164828,0.955561,0.217414,0.388681,0.47803,0.605497,0.229644,0.571719,0.11769,0.749055,0.557378,0.984138,0.318452,0.511732,0.320542,0.112637,0.698637,0.456929,0.97538,0.641689,0.283322,0.962692,0.52548,0.832453,0.919251,0.844953,0.145967,0.00808465,0.79698,0.900182,0.730405,0.385086,0.467171,0.164806,0.72463,0.208579,0.375613,0.502947,0.0123121,0.440157,0.906031,0.702048,0.70857,0.349718,0.718645,0.0393653,0.278891,0.577837,0.330571,0.27207,0.678024,0.254556,0.509727,0.792145,0.456185,0.333162,0.334299,0.659527,0.808906,0.752927,0.252597,0.514345,0.512746,0.619069,0.0787924,0.940104,0.537659,0.811987,0.277739,0.18033,0.84459,0.124017,0.434811,0.917582,0.609077,0.644901,0.880227,0.920325,0.357861,0.303907,0.543844,0.0968816,0.508632,0.628752,0.46844,0.493972,0.104331,0.0635971,0.653542,0.713872,0.633479,0.597927,0.193828,0.318152,0.44753,0.907796,0.830648,0.528278,0.403446,0.634652,0.587456,0.800088,0.121316,0.114174,0.480364,0.411059,0.212812,0.783861,0.181756,0.535418,0.671529,0.977531,0.694234,0.187072,0.555792,0.42928,0.161814,0.702381,0.285532,0.10005,0.754579,0.0767612,0.937497,0.512611,0.380884,0.633595,0.975633,0.728581,0.392729,0.866819,0.0907256,0.75172,0.0996211,0.182966,0.936422,0.479936,0.327655,0.709197,0.291587,0.894163,0.60973,0.279965,0.75479,0.00725931,0.991451,0.588735,0.519789,0.634039,0.801327,0.288758,0.615798,0.104153,0.365801,0.747229,0.382658,0.418258,0.547549,0.874753,0.181331,0.309885,0.316999,0.270858,0.407561,0.505957,0.407448,0.250239,0.4308,0.320872,0.243364,0.921307,0.855662,0.688108,0.783375,0.28101,0.982397,0.74295,0.127819,0.550166,0.958049,0.533279,0.801741,0.012277,0.114141,0.216093,0.610835,0.428104,0.746083,0.692672,0.28034,0.535631,0.785904,0.395477,0.414613,0.139904,0.204386,0.0274958,0.497567,0.587877,0.988621,0.219697,0.958642,0.210259,0.572011,0.694347,0.0935363,0.773022,0.455055,0.747318,0.0810452,0.312793,0.941626,0.191429,0.649528,0.215651,0.430399,0.796531,0.775387,0.483856,0.0938523,0.424355,0.718699,0.993317,0.174931,0.234984,0.403844,0.301994,0.590657,0.134996,0.0198149,0.138181,0.550485,0.347366,0.286135,0.312932,0.196622,0.0972874,0.839504,0.822941,0.730963,0.31327,0.412242,0.435885,0.85576,0.229899,0.68274,0.676254,0.387306,0.229617,0.204712,0.959561,0.471466,0.110771,0.836579,0.798827,0.979156,0.991866,0.779993,0.925668,0.405421,0.930688,0.904703,0.56222,0.790168,0.585788,0.234816,0.452304,0.686615,0.97457,0.996489,0.851242,0.393631,0.109738,0.436121,0.0336992,0.347094,0.631754,0.755744,|0.64339,0.107645,0.579434,0.809142,0.380468,0.0509365,0.716265,0.0653954,0.501109,0.402452,0.822016,0.691363,0.481332,0.947926,0.164701,0.691868,0.392986,0.551351,0.0830055,0.369727,0.213611,0.800927,0.943183,0.905593,0.367253,0.684296,0.49658,0.850874,0.399304,0.117139,0.0870121,0.379305,0.480878,0.814426,0.960265,0.310184,0.57328,0.344763,0.806338,0.263224,0.937049,0.668248,0.143221,0.722786,0.287542,0.216386,0.994973,0.44445,0.680054,0.114442,0.409556,0.8078,0.849096,0.916818,0.681621,0.737262,0.242179,0.424995,0.0612,0.623674,0.231502,0.0962792,0.356701,0.218601,0.744908,0.0552931,0.464785,0.846426,0.867633,0.137593,0.0872375,0.237584,0.51936,0.670716,0.407113,0.686279,0.563228,0.135381,0.0370243,0.917947,0.615655,0.101002,0.0950894,0.262479,0.545878,0.0902379,0.884105,0.913751,0.956555,0.624658,0.372831,0.431616,0.888492,0.556636,0.218275,0.259327,0.572962,0.209451,0.104331,0.0463919,0.84465,0.310394,0.860068,0.221911,0.0161361,0.823784,0.43361,0.153111,0.952534,0.525327,0.921201,0.647929,0.662845,0.979933,0.432704,0.214994,0.960109,0.722161,0.793245,0.365719,0.255337,0.979271,0.710787,0.104225,0.301655,0.836581,0.603709,0.870941,0.210741,0.823871,0.216799,0.352667,0.802835,0.559067,0.271479,0.645408,0.308857,0.746813,0.526956,0.792849,0.536712,0.704829,0.243128,0.406159,0.258851,0.669469,0.371968,0.208754,0.71137,0.824211,0.940272,0.0115715,0.040621,0.122389,0.833469,0.792849,0.145548,0.392342,0.143092,0.662452,0.388632,0.204861,0.98192,0.454574,0.64172,0.113849,0.73539,0.757736,0.338973,0.852958,0.699913,0.0356663,0.0807435,0.0597603,0.646816,0.306676,0.296087,0.0866109,0.531109,0.35902,0.0995379,0.0650313,0.817983,0.520474,0.830981,0.696314,0.826941,0.971943,0.542159,0.716033,0.340576,0.0369427,0.736815,0.882806,0.273449,0.0182917,0.300623,0.0227682,0.917931,0.308825,0.0540239,0.363389,0.460967,0.271603,0.496981,0.1569,0.771849,0.0331038,0.207286,0.417449,0.394381,0.451872,0.873179,0.200535,0.200892,0.606715,0.970849,0.965779,0.559106,0.639381,0.975129,0.743679,0.888716,0.478287,0.329099,0.189833,0.981824,0.42549,0.210191,0.537944,0.774364,0.503554,0.368527,0.922862,0.80484,0.450344,0.52499,0.357934,0.73188,0.9138,0.213643,0.0180783,0.00913304,0.792613,0.0916584,0.500898,0.625775,0.860397,0.477475,0.718756,0.409513,0.569516,0.2767,0.888749,0.386266,0.477132,0.959693,0.863609,0.267478,0.0945181,0.445744,0.500691,0.254727,0.927364,0.587372,0.0556085,0.235941,0.624612,0.4564,0.0239661,0.956562,0.663309,0.701745,0.130199,0.847347,0.706985,0.99118,0.791643,0.80313,0.0792002,0.543423,0.86177,0.495205,0.0878205,0.732364,0.172997,0.940959,0.973412,0.952042,0.465438,0.0616599,0.863313,0.881892,0.780324,0.68237,0.380943,0.207502,0.978627,0.550908,0.37046,0.891181,0.261804,0.507599,0.0733477,0.657681,0.423757,0.49489,0.167264,0.288471,0.407437,0.323354,0.258557,0.440978,0.39498,0.560302,0.837613,0.523182,0.695697,0.462037,0.415207,0.780292,0.733661,0.107519,0.0277012,0.9762,0.171857,0.721009,0.535505,0.559386,0.502829,0.343608,0.982801,0.201902,0.143817,0.44631,0.921561,0.565441,0.0629029,0.0033406,0.106378,0.93222,0.915652,0.543789,0.294112,0.264809,0.525112,0.844131,0.291692,0.702412,0.248457,0.733305,0.49683,0.27204,0.460595,0.602739,0.631918,0.683046,0.131555,0.264553,0.0570059,0.491508,0.874141,0.234035,0.965539,0.421544,0.706284,0.25075,0.570747,0.692459,0.203055,0.348176,0.307196,0.244212,0.892865,0.259442,0.430515,0.952094,0.338399,0.773887,0.844396,0.190062,0.599655,0.0467112,0.606853,0.115684,0.727249,0.054785,0.870606,0.463723,0.606063,0.21544,0.192376,0.219418,0.68144,0.55202,0.349554,0.294707,0.927036,0.196585,0.0772378,0.311738,0.0598636,0.564715,0.906203,0.725288,0.319422,0.622036,0.261977,0.20331,0.327309,0.871628,0.777386,0.422177,0.786681,0.0449675,0.488167,0.581852,0.296195,0.798623,0.965846,0.0139408,0.307551,0.256202,0.695356,0.262166,0.977714,0.0122741,0.157001,0.644498,0.8094,0.494384,0.7018,0.377208,0.576456,0.348486,0.0662834,0.314603,0.419566,0.273332,0.435852,0.933138,0.36624,0.421743,0.463555,0.703164,0.258976,0.915922,0.951551,0.103738,0.916521,0.529137,0.288377,0.642936,0.639649,0.670046,0.483494,0.321859,0.680836,0.867772,0.77511,0.254332,0.67142,0.965824,0.56063,0.776572,0.0105286,0.993492,0.239733,0.693689,0.910313,0.606095,0.118336,0.218325,0.996013,0.301133,0.284361,0.476339,0.604409,0.296452,0.485821,0.797147,0.592539,0.246026,0.0963584,0.444609,0.50304,0.442337,0.412244,0.447409,0.856688,0.244147,0.69043,0.062821,0.963082,0.813594,0.109472,0.910272,0.551581,0.00130409,0.792151,0.235821,0.851462,0.212967,0.0615907,0.7182,0.0248935,0.576995,0.115744,0.519685,0.0280013,0.688616,0.570457,0.246144,0.645229,0.316352,0.499481,0.240522,0.992642,0.646429,0.670677,0.317975,0.757626,0.0702929,0.151617,0.248974,0.668693,0.061029,0.26776,0.460115,0.214877,0.435933,0.0217249,0.261693,0.0381992,0.145764,0.654799,0.967147,0.185273,0.616632,0.959099,0.385022,0.249732,0.760111,0.966207,0.0980395,0.331071,0.212,0.0443219,0.0476548,0.125668,0.526399,0.5206,0.101754,0.331039,0.993428,0.677777,0.686558,0.26062,0.507983,0.0699257,0.92616,0.565216,0.012473,0.563348,0.784126,0.338409,0.337437,0.569274,0.686745,0.779398,0.864957,0.0133432,0.119135,0.634735,0.0930799,0.48177,0.190496,0.222485,0.0436999,0.869459,0.809618,0.376237,0.441295,0.896741,0.263262,0.507099,0.390446,0.486754,0.177864,0.257949,0.0720076,0.218237,0.0255979,0.308163,0.476633,0.199866,0.71778,0.930602,0.193688,0.176714,0.360145,0.0129392,0.182158,0.629155,0.239973,0.587505,0.210512,0.30636,0.938846,0.190148,0.271707,0.316014,0.891501,0.317056,0.278777,0.115267,0.653878,0.269002,0.171538,0.0151803,0.748856,0.285683,0.0682222,0.451894,0.589532,0.654754,0.45052,0.879551,0.353847,0.18273,0.831917,0.153284,0.161917,0.436476,0.703479,0.715629,0.918754,0.827524,0.985087,0.951838,0.76728,0.640014,0.960828,0.0425342,0.882881,0.122232,0.0383716,0.145283,0.937783,0.763156,0.864662,0.765624,0.68157,0.594375,0.259256,0.586309,0.559654,0.085276,0.458165,0.585734,0.28447,0.0306937,0.627009,0.789899,0.378158,0.610911,0.728141,0.0810476,0.571592,0.109061,0.360049,0.81414,0.956437,0.200468,0.150996,0.52588,0.186485,0.712347,0.90015,0.728968,0.750878,0.49611,0.838598,0.78744,0.463621,0.191806,0.239843,0.551138,0.378632,0.280718,0.943206,0.375881,0.324685,0.625937,0.933589,0.389137,0.615984,0.65438,0.745167,0.479827,0.993146,0.176522,0.115475,0.868591,0.719602,0.467123,0.0134658,0.149647,0.0926591,0.945794,0.226105,0.737038,0.19632,0.133354,0.738964,0.59514,0.779917,0.489683,0.400781,0.785061,0.209118,0.966851,0.55057,0.564108,0.568617,0.533071,0.330909,0.933147,0.585896,0.958138,0.308948,0.374574,0.00968874,0.609564,0.856818,0.834626,0.350501,0.184748,0.939278,0.300584,0.205612,0.0105972,0.263753,0.974188,0.106412,0.243957,0.41057,0.194956,0.849175,0.686807,0.20294,0.489479,0.744899,0.490058,0.024453,0.188703,0.185951,0.10674,0.481814,0.999588,0.0969412,0.275528,0.613035,0.935247,0.372984,0.171887,0.566447,0.22077,0.151395,0.147512,0.825604,0.431505,0.23695,0.0578986,0.992706,0.0445505,0.924916,0.417685,0.340889,0.801062,0.423502,0.307567,0.900275,0.851719,0.728817,0.0190735,0.63653,0.533941,0.446316,0.671186,0.797177,0.139092,0.881782,0.895831,0.20307,0.833098,0.930169,0.051628,0.713369,0.774691,0.782208,0.0754962,0.0247834,0.900418,0.0969957,0.0421694,0.528107,0.858666,0.504523,0.121444,0.151945,0.720805,0.968365,0.332602,0.677398,0.978642,0.40935,0.921111,0.661234,0.539313,0.705018,0.967469,0.631127,0.605955,0.571207,0.305689,0.730419,0.563029,0.432178,0.316968,0.677849,0.821941,0.789581,0.746339,0.612382,0.318521,0.178526,0.211223,0.0702028,0.0160472,0.34219,0.881879,0.00484949,0.0138595,0.695359,0.680693,0.859379,0.928386,0.123432,0.897351,0.107795,0.0430989,0.833274,0.436333,0.404207,0.385795,0.597258,0.362312,0.749488,0.911009,0.751209,0.642031,0.0152792,0.435458,0.420936,0.596923,0.239051,0.47041,0.740464,0.177761,0.789274,0.829669,0.298863,0.380213,0.116878,0.182181,0.491354,0.297528,0.815199,0.899978,0.574757,0.282668,0.225984,0.133576,0.879236,0.208615,0.8479,0.403288,0.396726,0.170466,0.193679,0.704773,0.101047,0.56193,0.355071,0.232258,0.100384,0.378234,0.167967,0.810624,0.523351,0.0936689,0.417812,0.164201,0.157925,0.455028,0.0829213,0.98465,0.41541,0.331727,0.696146,0.281347,0.80323,0.776624,0.415879,0.552913,0.765367,0.870911,0.348222,0.664815,0.031026,0.0646092,0.678543,0.698013,0.421343,0.563402,0.247186,0.0709262,0.991223,0.647637,0.17267,0.529755,0.206957,0.580062,0.682264,0.926663,0.292586,0.638535,0.592565,0.674595,0.571837,0.728976,0.331291,0.390086,0.910749,0.577345,0.842048,0.568579,0.970755,0.634792,0.319553,0.371757,0.986508,0.807921,0.843709,0.980657,0.786432,0.76614,0.843662,0.173122,0.35781,0.665342,0.73859,0.37792,0.716736,0.686482,0.118616,0.189235,0.493043,0.03972,0.629432,0.931564,0.348661,0.134859,0.0485704,0.94969,0.535049,0.590115,0.126047,0.255694,0.983768,0.14313,0.987903,0.967544,0.846045,0.779261,0.873301,0.621416,0.187624,0.287866,0.748725,0.870088,0.918196,0.855193,0.889033,0.575784,0.496606,0.34174,0.125976,0.0544723,|0.023307,0.467096,0.145376,0.268858,0.0548083,0.655413,0.23016,0.363812,0.0119979,0.820982,0.546452,0.42053,0.351536,0.758834,0.565519,0.657975,0.00344759,0.646188,0.675273,0.247872,0.241296,0.85797,0.485535,0.413279,0.337139,0.690723,0.120086,0.801614,0.381916,0.322681,0.437028,0.919856,0.0373623,0.206098,0.0456023,0.682127,0.248584,0.653655,0.0967744,0.171314,0.411573,0.914435,0.228772,0.807797,0.751564,0.579724,0.715351,0.732292,0.740883,0.279453,0.841813,0.152424,0.594655,0.615304,0.808468,0.129141,0.268746,0.951557,0.305369,0.474456,0.137426,0.820922,0.155835,0.716804,0.690513,0.189352,0.822274,0.699905,0.679416,0.336136,0.644704,0.0746691,0.422418,0.580948,0.20601,0.0729702,0.597358,0.737384,0.474386,0.0126175,0.647798,0.971655,0.125183,0.167627,0.465854,0.0454106,0.0852126,0.0300805,0.192889,0.384343,0.944507,0.95672,0.323213,0.700396,0.354614,0.771175,0.97356,0.460075,0.310174,0.228257,0.505888,0.717783,0.163652,0.307861,0.566091,0.0580822,0.0475786,0.778327,0.21257,0.124925,0.288178,0.888698,0.647948,0.738808,0.875759,0.298457,0.847281,0.388525,0.937379,0.413726,0.260173,0.0321199,0.97884,0.554095,0.676338,0.176608,0.439166,0.39149,0.787852,0.775243,0.596774,0.147528,0.174919,0.0522553,0.767107,0.399525,0.514193,0.835035,0.382872,0.250848,0.671363,0.712452,0.631408,0.609304,0.663533,0.365381,0.674834,0.867594,0.524036,0.971639,0.775757,0.606186,0.334404,0.732269,0.578517,0.725499,0.254953,0.710513,0.388674,0.446053,0.118409,0.871579,0.0903016,0.946967,0.0391549,0.53147,0.963228,0.759116,0.914411,0.680255,0.333325,0.615739,0.792542,0.376097,0.0529203,0.126879,0.289043,0.762034,0.98444,0.361966,0.592696,0.451181,0.910785,0.305188,0.962404,0.0818703,0.311809,0.265933,0.216392,0.174167,0.404679,0.99316,0.319376,0.151794,0.656906,0.211229,0.990298,0.353821,0.714703,0.667053,0.993106,0.761803,0.717787,0.0145917,0.513418,0.319814,0.857942,0.00787288,0.846198,0.609968,0.870424,0.660365,0.234369,0.950176,0.764472,0.706758,0.232096,0.600523,0.61969,0.542067,0.227325,0.696842,0.814068,0.817607,0.656685,0.0740163,0.662837,0.256487,0.191969,0.421326,0.827447,0.583521,0.528852,0.408346,0.683645,0.225777,0.311363,0.237829,0.902904,0.867422,0.830607,0.803079,0.275565,0.438908,0.181564,0.554346,0.347278,0.521752,0.051542,0.599647,0.669157,0.175448,0.216396,0.468504,0.797984,0.861306,0.864338,0.518703,0.558057,0.576384,0.341249,0.722651,0.012026,0.465149,0.621107,0.377011,0.652606,0.031645,0.663847,0.771651,0.497531,0.124966,0.491674,0.644965,0.847727,0.915451,0.20846,0.386446,0.581972,0.774284,0.955683,0.0763596,0.790574,0.555892,0.662231,0.110153,0.717003,0.52928,0.621617,0.599395,0.944502,0.642086,0.435863,0.736169,0.536373,0.82527,0.528674,0.113816,0.786399,0.87716,0.053612,0.317109,0.0127614,0.485276,0.559148,0.805789,0.354981,0.790766,0.50071,0.326817,0.548826,0.620743,0.689238,0.616252,0.1926,0.489757,0.751107,0.612297,0.897321,0.801702,0.784258,0.330101,0.931332,0.42631,0.388007,0.244403,0.651981,0.343839,0.902325,0.600987,0.744591,0.515385,0.897169,0.42083,0.457138,0.892228,0.152673,0.936135,0.511728,0.584852,0.517677,0.78851,0.161663,0.819766,0.441321,0.0121782,0.975402,0.768566,0.762902,0.461858,0.831434,0.40374,0.502349,0.208553,0.487222,0.571198,0.956256,0.169995,0.166954,0.0290401,0.27536,0.511885,0.191356,0.63125,0.244914,0.0568737,0.777413,0.092047,0.571615,0.992905,0.667501,0.781516,0.32101,0.00652373,0.117634,0.443895,0.387466,0.664004,0.512473,0.985608,0.548254,0.359167,0.294716,0.850755,0.523884,0.871864,0.559726,0.875943,0.699364,0.727176,0.201159,0.748804,0.199009,0.487093,0.729201,0.0540096,0.950976,0.770117,0.885159,0.248395,0.408939,0.938587,0.736735,0.701692,0.170533,0.759492,0.484918,0.182208,0.312781,0.957945,0.875886,0.124227,0.992818,0.317189,0.446451,0.959126,0.170166,0.946471,0.530819,0.732335,0.319644,0.745882,0.345284,0.814019,0.767931,0.254708,0.505159,0.146125,0.521164,0.98702,0.887981,0.937617,0.389296,0.701221,0.440896,0.845748,0.910197,0.796765,0.263415,0.260249,0.804796,0.665708,0.701215,0.915973,0.81646,0.323461,0.142517,0.450846,0.861529,0.898925,0.0407293,0.458929,0.396803,0.0869231,0.33221,0.227624,0.548798,0.277579,0.0725646,0.18792,0.443389,0.598208,0.115431,0.682904,0.723389,0.430333,0.373712,0.780753,0.463732,0.718372,0.40286,0.822498,0.466272,0.841419,0.704097,0.0362812,0.749295,0.420612,0.648741,0.976584,0.864961,0.0506403,0.293343,0.13779,0.473894,0.850808,0.894869,0.807434,0.618477,0.654902,0.0529461,0.668959,0.28234,0.706643,0.951685,0.014771,0.975594,0.154888,0.422414,0.237994,0.826029,0.539895,0.82282,0.833507,0.013075,0.494872,0.214017,0.961561,0.621995,0.211238,0.409606,0.846131,0.900335,0.322396,0.985072,0.512233,0.311221,0.459707,0.26099,0.402721,0.300332,0.90872,0.471486,0.605088,0.880837,0.495649,0.173054,0.0188826,0.273628,0.333235,0.50418,0.768895,0.584027,0.780599,0.928167,0.531591,0.314633,0.293659,0.793953,0.0674576,0.216102,0.185423,0.762103,0.42037,0.934075,0.375393,0.160631,0.95437,0.347676,0.265102,0.732912,0.335275,0.319794,0.192713,0.570728,0.115956,0.318346,0.114477,0.392238,0.0979238,0.495983,0.95483,0.496021,0.598409,0.976003,0.420263,0.545895,0.677899,0.349269,0.0405731,0.60029,0.205027,0.115308,0.410751,0.608962,0.223414,0.012094,0.0464692,0.934751,0.0706002,0.871524,0.555498,0.614046,0.79065,0.364524,0.449776,0.482444,0.568032,0.295227,0.013303,0.124479,0.206306,0.338181,0.629084,0.397882,0.0280417,0.0941712,0.368145,0.211173,0.044654,0.76677,0.262906,0.173362,0.0729559,0.120166,0.916192,0.71074,0.467167,0.538204,0.714804,0.12649,0.979525,0.67628,0.607787,0.0145783,0.0558028,0.648725,0.559065,0.460395,0.907947,0.20527,0.319783,0.868069,0.0535241,0.685613,0.688155,0.0465069,0.866209,0.683878,0.404938,0.785198,0.0179167,0.477497,0.207042,0.289985,0.129784,0.245053,0.192798,0.777361,0.344608,0.143453,0.457342,0.375822,0.906923,0.547331,0.402102,0.819768,0.735522,0.333044,0.130857,0.786677,0.377734,0.119858,0.973477,0.926208,0.218724,0.131388,0.798729,0.213261,0.0793992,0.223953,0.659336,0.133279,0.700233,0.296143,0.340953,0.203249,0.919732,0.174478,0.400779,0.058103,0.655965,8.37445e-05,0.299089,0.860214,0.334909,0.963343,0.251235,0.53345,0.242629,0.593296,0.30972,0.0314829,0.157558,0.825461,0.0190651,0.905691,0.379844,0.289639,0.402468,0.706595,0.680914,0.163539,0.514524,0.858454,0.13903,0.504185,0.418527,0.829695,0.30875,0.86048,0.813776,0.951221,0.124889,0.311326,0.722611,0.740398,0.190348,0.35601,0.710124,0.964698,0.291073,0.573636,0.0749066,0.945817,0.972854,0.253089,0.306466,0.159205,0.680067,0.482609,0.498106,0.750741,0.119192,0.459732,0.0134301,0.703134,0.756047,0.924244,0.0164318,0.339439,0.236666,0.672334,0.243772,0.843421,0.254827,0.733336,0.908839,0.104679,0.434597,0.269526,0.880335,0.383968,0.16801,0.421065,0.396191,0.389603,0.775931,0.237747,0.197633,0.356151,0.721029,0.355628,0.403329,0.288173,0.417303,0.353455,0.283714,0.744475,0.153232,0.0197635,0.201948,0.0826924,0.787562,0.230575,0.442222,0.697318,0.220359,0.173068,0.462353,0.466292,0.754354,0.353158,0.160547,0.9767,0.542017,0.418125,0.975934,0.630779,0.759213,0.523929,0.844772,0.346008,0.71769,0.920022,0.606455,0.705386,0.77766,0.165439,0.487914,0.799041,0.526802,0.962576,0.26533,0.579203,0.0633241,0.515678,0.987866,0.238593,0.713958,0.449355,0.748019,0.378234,0.453345,0.374423,0.972135,0.22192,0.39256,0.794732,0.32719,0.448639,0.105353,0.683184,0.127062,0.721951,0.359319,0.568689,0.487112,0.770281,0.887337,0.608811,0.236483,0.877804,0.236428,0.450449,0.950894,0.247972,0.693505,0.91662,0.493271,0.714328,0.160232,0.4099,0.274232,0.388023,0.55772,0.29256,0.145001,0.642278,0.985396,0.285539,0.382952,0.43268,0.139021,0.717446,0.301787,0.942148,0.423907,0.973608,0.167955,0.415417,0.481012,0.479749,0.39786,0.995543,0.0911463,0.39092,0.303478,0.751036,0.14863,0.636593,0.898616,0.265036,0.163496,0.630448,0.668738,0.368375,0.500373,0.941218,0.712401,0.369113,0.526775,0.453396,0.419781,0.991033,0.13294,0.594878,0.29454,0.0423954,0.816796,0.48932,0.265618,0.916691,0.844191,0.611649,0.395186,0.152844,0.865209,0.634072,0.601444,0.721187,0.00346917,0.45877,0.0704655,0.325243,0.581838,0.115148,0.12113,0.412821,0.99246,0.190292,0.589708,0.70583,0.511608,0.257743,0.82243,0.29149,0.533245,0.465339,0.457688,0.223896,0.194152,0.258648,0.491144,0.267966,0.688588,0.964973,0.242621,0.421653,0.145496,0.7673,0.375603,0.863239,0.411613,0.935443,0.364227,0.031321,0.374121,0.811846,0.482885,0.550035,0.0362532,0.515234,0.510564,0.754527,0.237562,0.77824,0.896111,0.529148,0.864299,0.827598,0.282823,0.407523,0.658579,0.287992,0.0373759,0.418309,0.0798573,0.873507,0.378282,0.846854,0.222228,0.300282,0.942432,0.0136307,0.245791,0.138396,0.99521,0.962681,0.826782,0.432094,0.575792,0.530406,0.368412,0.486629,0.0305969,0.115374,0.365648,0.883757,0.586516,0.850361,0.378772,0.707162,0.627225,0.62009,0.407663,0.637672,0.823845,0.961721,0.145084,0.451238,0.0579571,0.498626,0.684932,0.545557,0.0739889,0.25911,0.444152,0.654943,0.48163,0.342553,0.778099,0.460558,0.774824,0.61611,0.828611,0.0896201,0.745165,0.507228,0.253324,|0.791352,0.130112,0.894566,0.0645747,0.0873492,0.0445312,0.528224,0.923541,0.468566,0.402864,0.0908734,0.374679,0.409317,0.837294,0.358116,0.00420749,0.372114,0.742638,0.271406,0.00609541,0.185845,0.892231,0.212476,0.12961,0.547999,0.492139,0.0418644,0.889356,0.493977,0.517358,0.279047,0.107916,0.557153,0.53216,0.111474,0.836755,0.50488,0.941294,0.840987,0.266133,0.675108,0.145438,0.190365,0.610385,0.694989,0.492589,0.0266111,0.55799,0.238565,0.107059,0.337138,0.0502504,0.97212,0.570978,0.703004,0.716251,0.720932,0.898138,0.47094,0.429034,0.14664,0.0953439,0.555673,0.24742,0.595162,0.476732,0.493289,0.0732158,0.185322,0.148553,0.439662,0.830637,0.252156,0.0247688,0.453331,0.790424,0.545172,0.374979,0.45406,0.579129,0.230065,0.911553,0.495764,0.244996,0.803639,0.553683,0.422132,0.790342,0.802599,0.277243,0.757029,0.428118,0.698973,0.637761,0.116565,0.848943,0.498469,0.401188,0.489749,0.734789,0.433045,0.233366,0.959555,0.555651,0.914672,0.477424,0.253739,0.498058,0.423715,0.195706,0.957587,0.0515742,0.602143,0.633309,0.982601,0.497914,0.634881,0.404945,0.673118,0.897349,0.0915304,0.615534,0.175742,0.928425,0.628289,0.172645,0.84544,0.935043,0.0314164,0.365143,0.565175,0.36603,0.68417,0.120631,0.449215,0.851582,0.324877,0.503873,0.53124,0.0449473,0.848267,0.207937,0.768359,0.489611,0.455559,0.288656,0.915014,0.13334,0.942619,0.593426,0.0535057,0.522136,0.582439,0.468922,0.712472,0.638931,0.995219,0.861115,0.162677,0.105096,0.930571,0.666603,0.00127524,0.0873968,0.364083,0.470391,0.572436,0.205717,0.802488,0.0253391,0.304435,0.79689,0.408772,0.222439,0.266741,0.266804,0.277748,0.324073,0.980893,0.859545,0.434534,0.406715,0.574324,0.166867,0.684795,0.137007,0.35895,0.854751,0.538851,0.00357735,0.715453,0.961316,0.833778,0.132003,0.701753,0.712074,0.582499,0.478397,0.561284,0.969402,0.444826,0.828505,0.429984,0.477926,0.913981,0.302018,0.33603,0.126164,0.945183,0.180181,0.755749,0.496857,0.801417,0.427537,0.358972,0.0843484,0.799766,0.73398,0.488654,0.443446,0.117937,0.181771,0.320625,0.605553,0.229405,0.982338,0.443164,0.889547,0.295931,0.851865,0.953029,0.017712,0.902198,0.935126,0.936701,0.768964,0.220972,0.239049,0.90913,0.544115,0.483213,0.569521,0.580929,0.271867,0.551716,0.843977,0.129653,0.25417,0.712533,0.285415,0.696058,0.407958,0.597094,0.33462,0.110812,0.68895,0.202324,0.725492,0.96414,0.703754,0.806642,0.67396,0.773933,0.500509,0.205965,0.388955,0.0185445,0.204744,0.383064,0.241868,0.894489,0.847388,0.000407398,0.731883,0.913893,0.781296,0.538629,0.990618,0.578959,0.0842543,0.580298,0.886504,0.797588,0.0841247,0.378817,0.212026,0.628646,0.491569,0.653667,0.450178,0.162305,0.683484,0.278226,0.765547,0.38302,0.697835,0.954741,0.765554,0.777423,0.829076,0.700463,0.213656,0.174095,0.0609617,0.555555,0.313429,0.349836,0.654375,0.485445,0.511137,0.707531,0.815014,0.281375,0.727958,0.151715,0.287471,0.376151,0.539271,0.520122,0.898777,0.919553,0.22921,0.538544,0.642029,0.127015,0.00946391,0.776648,0.336896,0.0694183,0.0246372,0.234654,0.545153,0.768928,0.929568,0.476483,0.93268,0.115864,0.494634,0.890132,0.531369,0.247969,0.238815,0.694542,0.469466,0.160067,0.723753,0.736185,0.978071,0.785603,0.603621,0.451221,0.405852,0.792949,0.604068,0.437006,0.189104,0.541954,0.659688,0.235507,0.943217,0.128431,0.53404,0.8463,0.532838,0.128961,0.956336,0.00759745,0.460471,0.630463,0.738905,0.107224,0.330644,0.619124,0.710618,0.435216,0.881107,0.0842079,0.722137,0.71518,0.771141,0.281767,0.527248,0.44982,0.846899,0.95366,0.687424,0.220262,0.61876,0.887471,0.831798,0.254162,0.942733,0.287117,0.0255969,0.961251,0.211889,0.172167,0.696004,0.921158,0.390587,0.276026,0.0721771,0.62359,0.771703,0.0766978,0.523104,0.0172746,0.650291,0.462721,0.435276,0.300332,0.783597,0.958895,0.0551733,0.503624,0.0838234,0.0281962,0.522402,0.336089,0.984429,0.851892,0.309778,0.0266533,0.194301,0.407956,0.936842,0.982703,0.131394,0.504118,0.804835,0.778862,0.344773,0.860195,0.176389,0.110976,0.840841,0.79261,0.473535,0.158529,0.72943,0.0591819,0.360501,0.0380099,0.717339,0.94871,0.902687,0.888958,0.888792,0.743623,0.893711,0.263609,0.0397688,0.467278,0.851604,0.873571,0.0277804,0.200982,0.0757232,0.799862,0.886249,0.626268,0.795617,0.372597,0.779603,0.659318,0.502563,0.481192,0.480278,0.00963211,0.383374,0.196501,0.0170145,0.709093,0.0652486,0.770968,0.815814,0.965406,0.231131,0.869741,0.638613,0.704457,0.874074,0.224925,0.24591,0.141238,0.538591,0.125137,0.682978,0.414235,0.055518,0.155131,0.607548,0.950756,0.126101,0.290535,0.919331,0.432119,0.213427,0.954146,0.146326,0.290447,0.745356,0.184301,0.00257421,0.00196958,0.460799,0.732548,0.103232,0.775296,0.600031,0.557286,0.348378,0.570006,0.776344,0.731136,0.526446,0.258042,0.556019,0.391273,0.857106,0.0951638,0.135163,0.662108,0.300748,0.11908,0.67052,0.457662,0.5524,0.731384,0.97312,0.585078,0.881572,0.83649,0.126975,0.235657,0.124679,0.633095,0.188231,0.00985044,0.80253,0.532464,0.856525,0.507942,0.755392,0.84283,0.0287623,0.0656812,0.504275,0.28231,0.00266433,0.179667,0.129298,0.334643,0.316642,0.428081,0.809467,0.727091,0.635783,0.366493,0.209812,0.139923,0.63807,0.588815,0.0673963,0.906466,0.881328,0.247292,0.758224,0.354923,0.657305,0.975543,0.0366657,0.523799,0.930623,0.674723,0.401733,0.81244,0.635118,0.983355,0.853443,0.120044,0.196063,0.358169,0.581967,0.728007,0.816323,0.584893,0.735876,0.638047,0.0778015,0.0851303,0.529505,0.498712,0.43167,0.803041,0.375512,0.797071,0.520052,0.57047,0.9603,0.0519468,0.542778,0.235701,0.741743,0.168492,0.951881,0.467604,0.409886,0.379675,0.426342,0.107603,0.234989,0.527479,0.598633,0.238493,0.810156,0.984097,0.239216,0.907007,0.889569,0.654603,0.778549,0.0637863,0.293626,0.0793676,0.337802,0.227386,0.446769,0.931786,0.489275,0.192382,0.129359,0.0334949,0.903609,0.73555,0.577543,0.950958,0.442712,0.0657419,0.685049,0.344146,0.441788,0.0874237,0.836239,0.374824,0.833815,0.370416,0.640017,0.195354,0.421313,0.178216,0.182979,0.535881,0.783572,0.314734,0.620444,0.415449,0.785408,0.063369,0.600408,0.869925,0.175257,0.526067,0.524745,0.190135,0.237854,0.763445,0.861361,0.190375,0.188202,0.793792,0.933366,0.41506,0.973967,0.0203963,0.71851,0.778387,0.965024,0.64709,0.0648616,0.273252,0.723657,0.616585,0.278418,0.768396,0.303501,0.0659301,0.489313,0.557058,0.441099,0.808294,0.204949,0.55303,0.907817,0.745997,0.568386,0.81748,0.599485,0.155633,0.883595,0.876236,0.467785,0.548659,0.276288,0.417578,0.076588,0.681366,0.0270919,0.692704,0.550321,0.219026,0.366648,0.151608,0.144447,0.975385,0.519205,0.815493,0.412263,0.606136,0.0465987,0.833194,0.29569,0.239324,0.946031,0.374844,0.0765354,0.293764,0.39676,0.408949,0.317715,0.822952,0.049005,0.259747,0.109158,0.87221,0.47333,0.910106,0.839498,0.821951,0.149227,0.170534,0.773165,0.923637,0.347533,0.756478,0.223821,0.712827,0.043205,0.295783,0.780356,0.103383,0.906935,0.450247,0.0439903,0.369558,0.883986,0.274049,0.803483,0.520105,0.385628,0.282832,0.751777,0.603509,0.870605,0.05742,0.751663,0.646963,0.501979,0.164565,0.805404,0.669279,0.573778,0.157452,0.301718,0.437412,0.280483,0.30967,0.471417,0.490389,0.461515,0.355666,0.442518,0.209063,0.624009,0.284862,0.632315,0.906203,0.143999,0.0584812,0.198085,0.303145,0.705929,0.552827,0.921511,0.67851,0.323214,0.672939,0.378726,0.824062,0.254648,0.0949488,0.314686,0.40669,0.657294,0.70508,0.820475,0.224574,0.732574,0.923254,0.602983,0.79651,0.40685,0.673915,0.0829024,0.607014,0.582639,0.584539,0.978473,0.00734979,0.734354,0.484389,0.207204,0.0482647,0.156189,0.276246,0.588968,0.620723,0.363273,0.28541,0.90974,0.171207,0.262736,0.326629,0.036831,0.873768,0.784864,0.998772,0.39232,0.953778,0.120126,0.916479,0.963359,0.617669,0.53262,0.430229,0.146522,0.559183,0.490184,0.378231,0.103929,0.888978,0.85654,0.883372,0.115984,0.0887983,0.740878,0.0316944,0.35071,0.136778,0.835992,0.621703,0.478642,0.0599514,0.703157,0.0793022,0.521957,0.520377,0.887385,0.867005,0.44641,0.831572,0.352972,0.424539,0.161612,0.35415,0.203232,0.61357,0.232908,0.776866,0.576948,0.799185,0.173168,0.447393,0.274813,0.565948,0.04899,0.946623,0.11363,0.937213,0.555333,0.247961,0.0210052,0.715976,0.687649,0.931855,0.949418,0.162097,0.169437,0.0785578,0.409508,0.556462,0.0565407,0.633928,0.712316,0.608131,0.217858,0.301488,0.849621,0.0202233,0.221781,0.76122,0.887142,0.516665,0.705868,0.630068,0.55275,0.333941,0.157425,0.422879,0.733581,0.665028,0.798525,0.33586,0.0321863,0.13402,0.141895,0.387101,0.188729,0.821052,0.562025,0.373222,0.267228,0.907416,0.642458,0.252073,0.792201,0.30394,0.154803,0.478104,0.464197,0.678491,0.564468,0.916029,0.166363,0.00424999,0.991843,0.232708,0.725907,0.14347,0.557712,0.960342,0.989555,0.0604065,0.448133,0.161436,0.892531,0.215511,0.772796,0.0773945,0.178367,0.247508,0.510888,0.609386,0.108785,0.190934,0.163508,0.20267,0.436101,0.449826,0.689395,0.589481,0.713602,0.33249,0.816442,0.497606,0.0353769,0.51979,0.326513,0.622676,0.0698037,0.0737789,0.250838,0.99486,0.677758,0.214233,0.257829,0.804628,0.40584,0.956558,0.520482,0.497716,0.680546,0.928529,0.669583,0.809033,0.451318,0.0439655,0.785819,0.959603,0.916619,|0.885828,0.325706,0.792084,0.949876,0.0937679,0.108,0.870895,0.283752,0.935539,0.347978,0.341888,0.0241166,0.849434,0.950429,0.681305,0.290333,0.464296,0.547148,0.578825,0.344374,0.828687,0.836261,0.224629,0.912767,0.417328,0.589473,0.202666,0.84222,0.558016,0.890473,0.407284,0.247503,0.635837,0.601256,0.120624,0.64204,0.092083,0.20156,0.11086,0.329662,0.787206,0.348311,0.0974859,0.0395205,0.97421,0.728225,0.777877,0.725792,0.156309,0.561955,0.470319,0.0320451,0.943721,0.258511,0.0145056,0.25527,0.660229,0.360827,0.883081,0.944002,0.375266,0.095543,0.512698,0.289629,0.865334,0.328392,0.209882,0.496794,0.986145,0.28936,0.214082,0.346518,0.802246,0.921601,0.311807,0.0762241,0.848901,0.085301,0.876788,0.778295,0.418752,0.939916,0.390601,0.16391,0.812945,0.198525,0.118796,0.114035,0.352699,0.060917,0.124051,0.929094,0.770934,0.704331,0.515631,0.776358,0.257276,0.653367,0.449385,0.742845,0.67637,0.286434,0.775654,0.133493,0.0645089,0.346027,0.116233,0.673253,0.671117,0.0839093,0.428181,0.625286,0.822463,0.877183,0.0789281,0.580015,0.837522,0.562102,0.978261,0.890589,0.73593,0.403157,0.523102,0.20561,0.125351,0.381506,0.753098,0.207633,0.202383,0.414395,0.552366,0.903197,0.182948,0.978204,0.61147,0.485639,0.328846,0.16498,0.43942,0.875665,0.497664,0.905025,0.63436,0.331578,0.568491,0.194572,0.955822,0.787654,0.72748,0.119928,0.379105,0.846611,0.788438,0.249555,0.360936,0.506474,0.713864,0.318609,0.134257,0.30145,0.480961,0.883645,0.982758,0.782465,0.70711,0.726831,0.99103,0.887428,0.296401,0.152299,0.652129,0.578908,0.57361,0.821722,0.823494,0.865402,0.665678,0.293727,0.510631,0.386764,0.728512,0.933372,0.131145,0.32069,0.937055,0.231992,0.512604,0.253186,0.81762,0.855598,0.837456,0.379546,0.0554995,0.0597944,0.8637,0.312078,0.631748,0.402304,0.453435,0.133736,0.586422,0.574782,0.194111,0.191459,0.0399888,0.0602748,0.582235,0.717332,0.0753057,0.0299149,0.772665,0.148974,0.0220684,0.216809,0.755651,0.779529,0.0655939,0.662421,0.432339,0.17893,0.170909,0.807559,0.390733,0.832001,0.946604,0.154615,0.278571,0.257102,0.890439,0.576153,0.929436,0.691328,0.604327,0.468915,0.178958,0.164262,0.322911,0.0736986,0.598839,0.0433542,0.455002,0.873484,0.877433,0.466847,0.252201,0.805252,0.0865172,0.828863,0.718039,0.892537,0.456137,0.895184,0.758272,0.233119,0.161319,0.295458,0.559908,0.221541,0.61455,0.500574,0.854632,0.136215,0.483002,0.310661,0.747853,0.0647935,0.160462,0.136284,0.733119,0.902579,0.250685,0.377449,0.766932,0.300445,0.75287,0.403861,0.152099,0.960407,0.18755,0.929307,0.769575,0.111988,0.144245,0.825767,0.785325,0.705371,0.451294,0.585722,0.215639,0.55024,0.625124,0.0056783,0.895844,0.701634,0.056016,0.914501,0.600871,0.295256,0.197517,0.835748,0.917148,0.836869,0.513625,0.750535,0.471301,0.747091,0.393274,0.675695,0.350434,0.221354,0.552136,0.00345087,0.185444,0.267567,0.635999,0.195073,0.21225,0.407323,0.0969073,0.254229,0.218551,0.413485,0.540917,0.236522,0.541227,0.342867,0.260088,0.0433002,0.73352,0.523872,0.105656,0.215609,0.851844,0.85354,0.962623,0.266038,0.155231,0.486762,0.404965,0.0381115,0.653301,0.290156,0.233326,0.240623,0.815313,0.347365,0.228981,0.789987,0.833819,0.128458,0.171501,0.244282,0.865783,0.742941,0.577489,0.930836,0.0967577,0.437501,0.169173,0.543172,0.406505,0.156122,0.767147,0.600873,0.873734,0.0819121,0.741281,0.26143,0.408939,0.256153,0.770595,0.141602,0.13932,0.46577,0.483637,0.260614,0.415613,0.100321,0.511523,0.2352,0.685929,0.947455,0.4285,0.127676,0.581476,0.415956,0.207694,0.315793,0.479117,0.876099,0.307437,0.782331,0.667458,0.174266,0.989896,0.517335,0.726652,0.222025,0.0951066,0.949651,0.116544,0.0846739,0.547508,0.652165,0.991459,0.145072,0.961268,0.0363236,0.245983,0.272309,0.775964,0.560658,0.7741,0.716653,0.997203,0.786326,0.874853,0.348977,0.125923,0.311253,0.123709,0.139341,0.335581,0.114196,0.921726,0.0211108,0.956194,0.266779,0.556961,0.895832,0.771958,0.812181,0.737022,0.833969,0.392784,0.535418,0.0304512,0.354315,0.548506,0.885527,0.044218,0.51847,0.638828,0.945194,0.543714,0.583907,0.612683,0.864058,0.403173,0.021373,0.223358,0.157206,0.101887,0.982775,0.983076,0.247487,0.306997,0.858087,0.181271,0.62088,0.395445,0.971466,0.398536,0.720516,0.640507,0.77979,0.916582,0.000467718,0.521146,0.943475,0.81998,0.867765,0.687881,0.485119,0.1343,0.276691,0.131609,0.893517,0.664947,0.322794,0.64991,0.955558,0.371427,0.15961,0.966189,0.928733,0.575994,0.219996,0.439772,0.821375,0.0833317,0.721341,0.928253,0.238815,0.426296,0.735496,0.648699,0.935916,0.0619695,0.598513,0.150874,0.498037,0.26311,0.511824,0.476578,0.107309,0.0190278,0.0973793,0.404128,0.560826,0.773934,0.145625,0.783963,0.232231,0.348404,0.488325,0.803998,0.137595,0.260393,0.317028,0.262329,0.211647,0.128157,0.710289,0.0440511,0.790651,0.184634,0.393066,0.100082,0.786973,0.153446,0.548238,0.502009,0.0778155,0.0284996,0.373653,0.687848,0.767209,0.760131,0.280456,0.592678,0.636941,0.685953,0.906447,0.410424,0.906243,0.259796,0.0931944,0.101145,0.02547,0.737119,0.384627,0.533446,0.374833,0.0752156,0.905355,0.628457,0.277205,0.31327,0.489478,0.358185,0.55396,0.922125,0.819462,0.418532,0.337405,0.755088,0.530768,0.385673,0.0735723,0.284913,0.95228,0.267076,0.185976,0.526371,0.732938,0.754845,0.470413,0.215581,0.963166,0.368758,0.166061,0.604156,0.788141,0.945812,0.725181,0.818694,0.893271,0.754227,0.45582,0.276141,0.990703,0.567235,0.83469,0.160734,0.29688,0.369684,0.556993,0.777874,0.348896,0.735209,0.00643021,0.107806,0.651065,0.704581,0.218475,0.546519,0.121238,0.670015,0.558748,0.0513364,0.660681,0.305531,0.447582,0.913634,0.671148,0.392573,0.370525,0.853282,0.186329,0.470583,0.953105,0.264156,0.680306,0.52208,0.52386,0.131358,0.296357,0.0337802,0.191619,0.952074,0.0533289,0.102827,0.468664,0.688964,0.721821,0.00819546,0.382342,0.709367,0.152479,0.233334,0.665075,0.271915,0.314167,0.773981,0.437386,0.39275,0.0684195,0.988234,0.168467,0.282286,0.275606,0.92355,0.665668,0.166846,0.38963,0.215631,0.2627,0.342322,0.195077,0.66506,0.573562,0.968018,0.455324,0.669448,0.162394,0.683218,0.273973,0.339198,0.762407,0.486318,0.542019,0.889538,0.529019,0.649063,0.530972,0.298867,0.601029,0.519149,0.481697,0.675812,0.198162,0.32902,0.743402,0.682404,0.826808,0.117322,0.343969,0.225763,0.997741,0.0550004,0.100793,0.902663,0.287549,0.674934,0.599749,0.401802,0.298734,0.812773,0.847263,0.532094,0.904885,0.483948,0.726323,0.0390937,0.869247,0.0457131,0.432755,0.581845,0.20961,0.951991,0.0113714,0.689262,0.691921,0.259952,0.743898,0.943241,0.759966,0.321201,0.666845,0.218335,0.822455,0.577964,0.961091,0.555498,0.872148,0.167063,0.74086,0.21331,0.722302,0.55137,0.652376,0.552945,0.983831,0.864728,0.121875,0.811288,0.0421163,0.944194,0.296503,0.761803,0.944057,0.609481,0.766092,0.262831,0.469734,0.734437,0.0214169,0.685304,0.0191992,0.623404,0.691257,0.813821,0.955427,0.253835,0.453093,0.153465,0.736845,0.907161,0.544829,0.730494,0.276322,0.803389,0.492396,0.19494,0.533196,0.453761,0.112392,0.445771,0.277665,0.95086,0.97949,0.803862,0.028715,0.0113557,0.909802,0.760132,0.349575,0.62284,0.804753,0.832171,0.962451,0.150004,0.261701,0.0876867,0.921449,0.85363,0.352352,0.807586,0.181908,0.923831,0.867513,0.529137,0.0280977,0.306468,0.849562,0.598755,0.896513,0.270505,0.226414,0.811426,0.0420673,0.151416,0.0421088,0.554937,0.350674,0.853437,0.213843,0.114625,0.932873,0.303464,0.13717,0.590697,0.343586,0.195381,0.369909,0.105268,0.794774,0.530678,0.360462,0.0976402,0.806021,0.650176,0.00168937,0.259175,0.16003,0.137227,0.288997,0.96608,0.734697,0.316567,0.204219,0.235307,0.306952,0.944816,0.783056,0.825056,0.507854,0.257669,0.721651,0.0937837,0.39512,0.0841038,0.915169,0.28325,0.213337,0.447678,0.269726,0.971021,0.525556,0.44478,0.930696,0.437943,0.41045,0.32554,0.919419,0.0672659,0.68548,0.81976,0.758599,0.446878,0.184367,0.560089,0.555032,0.580696,0.0868318,0.33214,0.741747,0.272611,0.939517,0.479207,0.383415,0.531369,0.0448673,0.0416321,0.0990667,0.357457,0.412132,0.63965,0.702663,0.997049,0.284975,0.696662,0.391047,0.680009,0.51624,0.478977,0.614214,0.404139,0.0532869,0.379553,0.0284724,0.482946,0.897353,0.974466,0.890315,0.497053,0.841092,0.484088,0.0927386,0.584016,0.568588,0.00356197,0.297256,0.283986,0.617406,0.858647,0.231101,0.479808,0.945195,0.228938,0.948372,0.0890953,0.898809,0.198793,0.683647,0.960017,0.309311,0.945992,0.329266,0.373363,0.726084,0.831448,0.708746,0.101615,0.719404,0.412634,0.487487,0.76603,0.145122,0.249843,0.0601911,0.351553,0.82925,0.894426,0.531158,0.958476,0.829014,0.777916,0.60732,0.0105283,0.915034,0.850625,0.593913,0.911544,0.50735,0.580608,0.228871,0.637022,0.0477431,0.0626415,0.656095,0.511791,0.952432,0.5339,0.895268,0.495337,0.940848,0.00235015,0.242169,0.17362,0.774059,0.761405,0.954766,0.671247,0.911153,0.972773,0.980609,0.371466,0.271274,0.567924,0.317646,0.529226,0.785708,0.116264,0.296921,0.837997,0.0179722,0.672654,0.603203,0.677168,0.922104,0.910591,0.55077,0.26021,0.735756,0.730237,0.756997,0.796135,0.208254,0.84042,0.662002,0.966391,0.919741,0.870173,0.320758,0.133363,0.994047,0.721366,0.225752,|0.950042,0.175946,0.535853,0.552109,0.854603,0.756049,0.479637,0.117058,0.959479,0.819007,0.360081,0.634912,0.649147,0.322646,0.860991,0.542628,0.331053,0.701334,0.813485,0.190097,0.0528217,0.913005,0.611369,0.758063,0.150592,0.776404,0.844803,0.108488,0.860276,0.769615,0.110508,0.942817,0.502374,0.860569,0.683866,0.0433933,0.522838,0.227547,0.0895528,0.915839,0.594953,0.277372,0.802156,0.800932,0.384023,0.237372,0.960751,0.826415,0.121597,0.918318,0.439487,0.183769,0.654912,0.668977,0.120764,0.680713,0.267372,0.112485,0.26755,0.00267118,0.72384,0.313888,0.637557,0.3089,0.181485,0.582801,0.0387118,0.147973,0.972118,0.656631,0.546451,0.00301009,0.245285,0.959736,0.164574,0.508582,0.482948,0.687462,0.117815,0.00944287,0.0356618,0.80893,0.467203,0.415332,0.128596,0.652136,0.8632,0.359181,0.00449282,0.609188,0.559115,0.552947,0.401836,0.999939,0.352973,0.0487625,0.90777,0.234953,0.158509,0.891715,0.0430242,0.68616,0.292273,0.507706,0.393644,0.105317,0.499024,0.481795,0.581654,0.41655,0.220003,0.431212,0.759202,0.27374,0.887086,0.124027,0.936665,0.938081,0.00783074,0.67349,0.584578,0.230243,0.978304,0.0615321,0.319125,0.0935154,0.231135,0.357329,0.423288,0.446234,0.186751,0.582446,0.464564,0.23477,0.240448,0.529163,0.967692,0.187958,0.816218,0.294701,0.61319,0.332933,0.904588,0.0913682,0.238235,0.910688,0.592633,0.949478,0.977349,0.865346,0.867105,0.0879359,0.67575,0.354143,0.584188,0.581164,0.999181,0.163243,0.303881,0.800913,0.804686,0.0568995,0.720056,0.403849,0.797041,0.88242,0.783637,0.721844,0.504433,0.673492,0.749819,0.404904,0.534016,0.826593,0.553817,0.727537,0.258694,0.736689,0.98764,0.73747,0.299414,0.367326,0.704968,0.53009,0.0093348,0.19554,0.62489,0.257606,0.139571,0.797183,0.475677,0.46376,0.787511,0.614473,0.750631,0.0756242,0.19402,0.107986,0.377333,0.0117402,0.814611,0.532815,0.995155,0.0615163,0.170527,0.968161,0.511382,0.675708,0.703495,0.602396,0.888404,0.0334988,0.335237,0.0135154,0.422248,0.892412,0.236938,0.41647,0.429104,0.31793,0.528086,0.781364,0.32603,0.855005,0.647475,0.5803,0.936145,0.0928814,0.0657722,0.0706679,0.20753,0.0494072,0.14075,0.940305,0.764502,0.083759,0.80152,0.0809897,0.268494,0.412393,0.337773,0.789089,0.696186,0.0516419,0.160796,0.303227,0.925261,0.234092,0.574807,0.542125,0.978468,0.242979,0.558764,0.283794,0.208426,0.410927,0.0410571,0.986868,0.478298,0.735661,0.311214,0.652922,0.261218,0.782775,0.140377,0.976361,0.462615,0.448485,0.704764,0.133925,0.177189,0.00718093,0.960537,0.271377,0.625007,0.737324,0.0809291,0.263615,0.281956,0.837927,0.667878,0.570146,0.160835,0.650581,0.958974,0.114956,0.825912,0.904695,0.703057,0.00984365,0.327479,0.460533,0.596668,0.863323,0.211991,0.86592,0.819982,0.049508,0.835581,0.471269,0.286432,0.207154,0.402999,0.172191,0.912358,0.991363,0.936876,0.551239,0.927153,0.494659,0.246255,0.359261,0.128284,0.166916,0.327968,0.386151,0.79957,0.676795,0.559436,0.0839071,0.215034,0.813885,0.847232,0.761254,0.723067,0.961844,0.50829,0.723857,0.101135,0.94671,0.646705,0.264761,0.204447,0.640219,0.504802,0.389264,0.137244,0.0467899,0.0785261,0.920147,0.162576,0.890601,0.563577,0.845307,0.201535,0.389009,0.579388,0.772048,0.209877,0.678028,0.184918,0.35932,0.451553,0.162069,0.375067,0.110161,0.062565,0.419093,0.735192,0.283496,0.69266,0.890873,0.159236,0.135707,0.982588,0.600831,0.188225,0.916382,0.616817,0.992007,0.158569,0.220572,0.284817,0.637373,0.138345,0.744987,0.685893,0.385546,0.114732,0.0433388,0.532938,0.361243,0.0130274,0.365989,0.617176,0.880148,0.0449069,0.866473,0.768323,0.673039,0.518098,0.0348966,0.994654,0.517672,0.760605,0.28677,0.0721719,0.684438,0.044358,0.510484,0.410558,0.445947,0.186889,0.486908,0.26191,0.275428,0.46709,0.890558,0.744814,0.770282,0.364483,0.733265,0.650867,0.255278,0.553432,0.822751,0.806091,0.580688,0.960342,0.293702,0.0844296,0.623968,0.473037,0.755969,0.842156,0.000388563,0.416549,0.460748,0.900794,0.688088,0.976101,0.574278,0.521669,0.755271,0.134339,0.807511,0.468516,0.849598,0.190545,0.970329,0.312388,0.453787,0.547024,0.634661,0.309515,0.152233,0.707728,0.986878,0.84909,0.258661,0.766845,0.664391,0.700589,0.307475,0.405218,0.69316,0.1702,0.932603,0.575812,0.00381309,0.713505,0.403131,0.486841,0.550617,0.236902,0.545477,0.796991,0.563755,0.254469,0.332843,0.931699,0.37209,0.934849,0.179553,0.703432,0.717326,0.872902,0.47566,0.834091,0.688553,0.254852,0.466258,0.838678,0.98699,0.788094,0.0506736,0.45951,0.67497,0.942777,0.624053,0.481098,0.675039,0.598377,0.954863,0.0353354,0.505383,0.303046,0.139742,0.251487,0.70179,0.198887,0.882239,0.892967,0.788197,0.76127,0.17859,0.861311,0.142497,0.419103,0.239089,0.221865,0.792953,0.695975,0.594053,0.186103,0.790022,0.540545,0.987516,0.365528,0.0738264,0.893496,0.362396,0.244892,0.504395,0.240328,0.343163,0.0774195,0.790889,0.00336266,0.896724,0.473505,0.925743,0.247122,0.553703,0.0614082,0.233454,0.684986,0.818411,0.159278,0.330803,0.573667,0.576666,0.314472,0.844478,0.281898,0.938912,0.212504,0.499799,0.378152,0.126031,0.820215,0.724335,0.142408,0.833182,0.184422,0.641979,0.935801,0.516463,0.40833,0.69066,0.0221797,0.901509,0.89597,0.523268,0.796432,0.238333,0.372751,0.119905,0.826423,0.568827,0.250492,0.0872141,0.845085,0.19784,0.79366,0.180363,0.840256,0.750576,0.228466,0.686584,0.046045,0.492384,0.0592493,0.312652,0.801438,0.193103,0.952002,0.748129,0.677468,0.749601,0.370536,0.453021,0.0120848,0.784566,0.0989067,0.720579,0.335451,0.456654,0.943523,0.40175,0.278222,0.16545,0.0583298,0.0072906,0.219753,0.0284168,0.38585,0.764126,0.905686,0.0512,0.982612,0.0172188,0.112868,0.488611,0.0655615,0.347838,0.795455,0.800664,0.200329,0.763794,0.83315,0.631911,0.205587,0.980331,0.395036,0.9771,0.714486,0.140317,0.172162,0.18835,0.0488707,0.768748,0.326023,0.387497,0.348152,0.224304,0.817084,0.564969,0.585553,0.462787,0.876369,0.442247,0.0146034,0.224265,0.562583,0.0498868,0.461324,0.675975,0.194529,0.653058,0.132008,0.918494,0.653873,0.190407,0.917135,0.366935,0.195032,0.620013,0.0592195,0.950741,0.618347,0.370963,0.306609,0.0755641,0.26705,0.694667,0.199963,0.175479,0.830268,0.228763,0.595253,0.996049,0.0028128,0.733281,0.728705,0.155128,0.730901,0.910517,0.865484,0.377105,0.0308805,0.583831,0.290759,0.509551,0.0263785,0.801774,0.87626,0.335936,0.0821647,0.650823,0.903708,0.104708,0.647285,0.776909,0.200896,0.0776625,0.490038,0.839143,0.295458,0.501707,0.519285,0.802634,0.646424,0.180197,0.0401073,0.712807,0.8507,0.406465,0.47417,0.0695258,0.0246766,0.34016,0.256197,0.986336,0.0677443,0.0670614,0.956814,0.117385,0.746029,0.96259,0.534961,0.659433,0.171017,0.7502,0.152931,0.766532,0.838408,0.238952,0.867949,0.441161,0.623728,0.141599,0.169607,0.64732,0.564638,0.333625,0.482888,0.386998,0.484178,0.159973,0.124529,0.770449,0.0619488,0.829574,0.28255,0.435477,0.957013,0.0276746,0.275094,0.518817,0.309756,0.0481563,0.549524,0.329209,0.718432,0.724518,0.853722,0.79771,0.907796,0.138894,0.921644,0.166896,0.113271,0.198421,0.329509,0.384401,0.982784,0.542754,0.607144,0.889633,0.727878,0.977566,0.087305,0.243295,0.337229,0.421352,0.934694,0.172134,0.564261,0.614618,0.721081,0.623582,0.363679,0.919936,0.733091,0.613719,0.239337,0.00851959,0.865282,0.537454,0.969019,0.620752,0.423281,0.546103,0.623695,0.817336,0.792293,0.631738,0.0125376,0.390888,0.214735,0.0833201,0.510393,0.49657,0.443706,0.549353,0.50521,0.736263,0.0775765,0.552483,0.212379,0.656576,0.239005,0.854908,0.20602,0.407266,0.597396,0.250476,0.103885,0.703308,0.28068,0.873427,0.0460328,0.627215,0.790909,0.444298,0.612172,0.877082,0.476567,0.0556347,0.513768,0.582378,0.175679,0.792801,0.61661,0.440223,0.892208,0.426211,0.372501,0.365673,0.310018,0.744208,0.634943,0.626569,0.514815,0.0237299,0.210851,0.344728,0.0455427,0.585745,0.244022,0.521904,0.571619,0.651473,0.538305,0.766003,0.495407,0.120524,0.629424,0.354056,0.690527,0.753141,0.852662,0.622726,0.758359,0.245083,0.552154,0.478095,0.92732,0.640429,0.24246,0.367424,0.575899,0.0927342,0.472336,0.716431,0.960474,0.294169,0.470892,0.0029664,0.953189,0.684591,0.80865,0.203725,0.939916,0.022836,0.606547,0.948668,0.14964,0.579692,0.984446,0.857493,0.765529,0.570219,0.517672,0.767744,0.22427,0.586894,0.44371,0.597232,0.690646,0.167588,0.542766,0.941305,0.154681,0.516639,0.718222,0.983044,0.636006,0.391359,0.788956,0.453153,0.75503,0.964057,0.203143,0.822747,0.938474,0.515514,0.243172,0.189738,0.899286,0.0151016,0.464293,0.798268,0.975253,0.741715,0.33086,0.94603,0.431403,0.8926,0.454293,0.836684,0.316417,0.543888,0.805349,0.854013,0.191955,0.113182,0.399867,0.332836,0.666549,0.123864,0.150559,0.761781,0.853292,0.874544,0.492094,0.555516,0.960854,0.796472,0.533592,0.418499,0.449077,0.186782,0.346946,0.75881,0.775099,0.450362,0.697576,0.0238712,0.893202,0.256388,0.0166161,0.717783,0.0345472,0.103023,0.00940746,0.534122,0.137805,0.986378,0.690705,0.233328,0.0569494,0.779975,0.365427,0.407508,0.0114579,0.302909,0.869397,0.873515,0.169137,0.857787,0.8472,0.991671,0.0923308,0.996815,0.746032,0.360337,0.548583,0.189426,0.343777,0.615443,0.709233,0.116362,0.365429,0.776464,0.72671,0.988524,0.776934,0.373331,|0.258826,0.172641,0.861545,0.0458848,0.901837,0.252065,0.28815,0.136062,0.527816,0.494336,0.475812,0.761478,0.326748,0.358059,0.541837,0.0902145,0.755012,0.236342,0.235982,0.85767,0.2232,0.899187,0.213149,0.879217,0.60387,0.671709,0.349698,0.221974,0.982265,0.682489,0.0342266,0.194495,0.637104,0.88564,0.0677995,0.246278,0.365458,0.398449,0.372029,0.416854,0.48398,0.1448,0.0442762,0.457863,0.698803,0.586367,0.496894,0.248534,0.593439,0.677246,0.149286,0.386713,0.0784329,0.847542,0.69761,0.548252,0.594595,0.842521,0.180263,0.0497486,0.338102,0.732747,0.585222,0.41894,0.620794,0.37879,0.575639,0.401341,0.510328,0.474044,0.283447,0.0544043,0.610812,0.0698046,0.672328,0.903172,0.375833,0.758746,0.947558,0.384872,0.090816,0.0514529,0.87873,0.114273,0.667686,0.401741,0.190374,0.926866,0.612554,0.738253,0.597089,0.108197,0.55429,0.420347,0.776288,0.835999,0.179311,0.973743,0.0963556,0.635145,0.00414956,0.922362,0.60366,0.0527864,0.332754,0.572475,0.335857,0.872857,0.819445,0.469665,0.052694,0.708091,0.699641,0.20018,0.69486,0.419392,0.57959,0.587133,0.12296,0.682033,0.452261,0.895052,0.240759,0.0947307,0.854337,0.390759,0.753397,0.708575,0.869571,0.183522,0.205469,0.619991,0.127101,0.896412,0.499148,0.693343,0.347655,0.112705,0.982593,0.236865,0.602929,0.962579,0.557238,0.733945,0.556823,0.32754,0.635614,0.736716,0.809602,0.304693,0.490977,0.640009,0.779091,0.586237,0.570608,0.869617,0.843399,0.413123,0.165308,0.0363844,0.311027,0.45026,0.465631,0.539176,0.488796,0.674268,0.116144,0.82619,0.0312687,0.630367,0.190931,0.7426,0.597785,0.930749,0.419617,0.938411,0.563926,0.822456,0.0949416,0.580983,0.133686,0.424084,0.510348,0.803418,0.909294,0.991558,0.584416,0.410937,0.645759,0.0312887,0.203907,0.466246,0.429283,0.371902,0.253068,0.478537,0.91087,0.189275,0.0379955,0.408659,0.0843256,0.357619,0.0521962,0.0455631,0.125535,0.174183,0.735322,0.846965,0.79737,0.00281346,0.15147,0.207577,0.746446,0.52099,0.229916,0.373771,0.118976,0.75503,0.405221,0.720685,0.294816,0.582342,0.38297,0.632876,0.637247,0.80539,0.285296,0.472374,0.0153815,0.946223,0.736061,0.836828,0.990841,0.821122,0.0264372,0.500277,0.533061,0.0151536,0.271391,0.23182,0.631787,0.709206,0.674278,0.381312,0.144597,0.815118,0.662162,0.646436,0.133705,0.729424,0.886115,0.701791,0.361104,0.787031,0.927491,0.0422288,0.750437,0.831125,0.631113,0.312613,0.598693,0.692678,0.118557,0.46339,0.392172,0.178118,0.518804,0.216057,0.806814,0.827303,0.607956,0.360271,0.648731,0.778975,0.776677,0.314872,0.147028,0.787608,0.367485,0.00318027,0.0899979,0.172145,0.988712,0.982935,0.771097,0.513336,0.790191,0.907611,0.622395,0.420366,0.76867,0.750551,0.669879,0.942936,0.248697,0.12394,0.162439,0.383488,0.709243,0.5297,0.6757,0.110225,0.969418,0.623878,0.498193,0.0923065,0.337745,0.340028,0.183086,0.348439,0.275859,0.251546,0.722831,0.737862,0.596196,0.781507,0.0932835,0.407063,0.46999,0.795131,0.695391,0.134036,0.538735,0.640798,0.986262,0.468056,0.894793,0.179787,0.11969,0.216245,0.976792,0.631437,0.93189,0.698536,0.342434,0.781977,0.951378,0.303575,0.594555,0.843039,0.185421,0.779121,0.384833,0.087334,0.611481,0.49335,0.581376,0.650817,0.582058,0.675859,0.018696,0.512874,0.964423,0.139543,0.264748,0.259936,0.069667,0.851728,0.893133,0.993957,0.782208,0.710099,0.987501,0.751494,0.378467,0.748996,0.534884,0.611128,0.879935,0.709351,0.485109,0.886086,0.159388,0.853492,0.242527,0.750085,0.339782,0.0945052,0.270608,0.321397,0.895342,0.867485,0.809101,0.644213,0.590902,0.273961,0.908877,0.838409,0.134852,0.521247,0.803727,0.791075,0.714223,0.265815,0.997661,0.27723,0.498243,0.533656,0.0450566,0.332687,0.565951,0.276212,0.0586379,0.178126,0.375858,0.526968,0.158333,0.830132,0.971056,0.209408,0.210988,0.361185,0.506725,0.0260023,0.405661,0.920661,0.315169,0.586897,0.725324,0.624146,0.476627,0.549418,0.325136,0.326353,0.400589,0.572324,0.259366,0.184322,0.326075,0.746549,0.033917,0.666661,0.903844,0.705917,0.217006,0.892593,0.520623,0.783325,0.378032,0.671749,0.0799412,0.275198,0.553333,0.262176,0.103142,0.511742,0.618657,0.254983,0.923024,0.00510567,0.549724,0.432172,0.440526,0.103165,0.263956,0.213913,0.722546,0.0231305,0.417455,0.658913,0.675385,0.75236,0.254877,0.770059,0.537776,0.991322,0.822754,0.454928,0.928593,0.987096,0.692676,0.48229,0.426166,0.554388,0.236603,0.433691,0.532044,0.28449,0.0016858,0.353593,0.204252,0.411195,0.207969,0.371457,0.585834,0.390697,0.598654,0.776771,0.394784,0.138002,0.187199,0.110598,0.125502,0.928883,0.509881,0.709375,0.95572,0.573725,0.309518,0.000622749,0.745162,0.433512,0.249813,0.200691,0.960892,0.604362,0.278639,0.152891,0.355441,0.351389,0.511113,0.121951,0.347463,0.6587,0.451014,0.499237,0.316515,0.62396,0.343142,0.772988,0.159021,0.0714962,0.210998,0.185566,0.27239,0.829341,0.7289,0.361956,0.254358,0.689219,0.781652,0.297062,0.0606483,0.935669,0.504044,0.448683,0.602116,0.375707,0.994921,0.353625,0.0463143,0.860119,0.327802,0.109789,0.249803,0.764453,0.547996,0.650049,0.922935,0.379943,0.899251,0.89143,0.634519,0.410751,0.755886,0.740767,0.529173,0.823016,0.249632,0.905233,0.886539,0.348724,0.935741,0.749623,0.909303,0.920115,0.362969,0.299461,0.588631,0.505381,0.715071,0.813323,0.615671,0.482028,0.148504,0.35895,0.895939,0.608215,0.315916,0.220287,0.441776,0.310841,0.344702,0.57929,0.111582,0.241901,0.308412,0.430821,0.824934,0.243118,0.543482,0.746344,0.0199291,0.404068,0.628405,0.728051,0.460147,0.503747,0.309393,0.711859,0.0991245,0.150595,0.223561,0.509903,0.99218,0.120599,0.231409,0.417505,0.34072,0.456249,0.445364,0.495103,0.654419,0.120651,0.565812,0.882319,0.894476,0.384756,0.53458,0.910835,0.00772297,0.455598,0.0888118,0.828026,0.00684619,0.981661,0.48135,0.625563,0.964682,0.157365,0.707619,0.866645,0.538541,0.403754,0.861838,0.0483505,0.744099,0.814902,0.812554,0.657575,0.889065,0.664146,0.709375,0.635011,0.298832,0.433584,0.200083,0.755304,0.470919,0.811076,0.499141,0.933029,0.805573,0.459587,0.625426,0.960759,0.130509,0.898367,0.566866,0.875717,0.012614,0.847096,0.762199,0.0116759,0.36718,0.619753,0.167117,0.0791674,0.0971565,0.931377,0.558323,0.582531,0.333316,0.895485,0.877724,0.787203,0.865722,0.135338,0.34577,0.562381,0.653024,0.389674,0.0813505,0.951128,0.860373,0.508347,0.435998,0.152636,0.728491,0.260862,0.643317,0.687741,0.879973,0.150485,0.11282,0.728811,0.530635,0.899645,0.78195,0.314768,0.224983,0.795738,0.382238,0.681651,0.582398,0.423846,0.118582,0.507144,0.654575,0.362262,0.738997,0.236722,0.16849,0.481019,0.483835,0.188417,0.574844,0.825255,0.757727,0.0201665,0.218835,0.116282,0.543651,0.0396373,0.211942,0.988614,0.956314,0.157609,0.646331,0.207587,0.760222,0.418382,0.543712,0.405747,0.580072,0.305985,0.301842,0.363869,0.724828,0.871676,0.383864,0.9376,0.566523,0.178053,0.00958806,0.992429,0.0143911,0.961982,0.478524,0.575016,0.847545,0.555923,0.835129,0.120135,0.693183,0.757139,0.689734,0.424818,0.483007,0.176742,0.497391,0.568051,0.0389694,0.614959,0.726871,0.612991,0.61527,0.615065,0.726415,0.656724,0.348046,0.294117,0.511069,0.368993,0.636347,0.475316,0.4482,0.00342894,0.334232,0.0241659,0.187207,0.85526,0.962563,0.943612,0.772571,0.78741,0.571894,0.629047,0.305885,0.19587,0.430804,0.582203,0.703429,0.0479441,0.184006,0.916624,0.140871,0.225818,0.724211,0.897218,0.502922,0.5461,0.891971,0.502907,0.869059,0.766532,0.0570303,0.677151,0.127571,0.108261,0.557155,0.865604,0.819953,0.711902,0.835998,0.244767,0.114193,0.778202,0.26684,0.272251,0.463161,0.572245,0.0467045,0.80669,0.0441939,0.445394,0.158768,0.570484,0.351186,0.394065,0.476096,0.0175006,0.81799,0.631263,0.232784,0.299768,0.556166,0.923315,0.0255459,0.432257,0.228306,0.821049,0.1288,0.875435,0.328298,0.75859,0.803646,0.937566,0.876032,0.287666,0.34049,0.898307,0.671207,0.772716,0.862171,0.713663,0.665446,0.762691,0.285623,0.3498,0.775005,0.237467,0.0593638,0.0852507,0.553777,0.649533,0.304399,0.589457,0.308473,0.247482,0.525463,0.677481,0.663063,0.159237,0.552424,0.610763,0.31646,0.32186,0.274341,0.0523461,0.214836,0.0147082,0.701216,0.476892,0.546414,0.563123,0.0431607,0.198921,0.283847,0.958201,0.991823,0.173487,0.532399,0.605136,0.124816,0.455758,0.958631,0.344224,0.819619,0.850798,0.611598,0.878267,0.925918,0.160309,0.548321,0.237078,0.507927,0.774344,0.29274,0.205714,0.0291021,0.510199,0.657914,0.198532,0.349839,0.323362,0.0469597,0.141571,0.258478,0.0613631,0.221872,0.357637,0.550266,0.82877,0.590677,0.536606,0.907358,0.560571,0.000281811,0.47652,0.608164,0.992289,0.644313,0.17597,0.878278,0.0148879,0.358966,0.0130131,0.143145,0.216733,0.362621,0.997381,0.549972,0.554768,0.586556,0.482957,0.205143,0.643802,0.0193087,0.192235,0.188183,0.252148,0.0993676,0.542401,0.501912,0.299157,0.0600922,0.429469,0.226069,0.31488,0.257893,0.589558,0.399146,0.020634,0.387434,0.978099,0.766579,0.673689,0.268495,0.0927486,0.71322,0.344622,0.869447,0.763917,0.671173,0.924263,0.910231,0.48956,0.0260991,0.602021,0.545488,0.84574,0.338716,0.951905,0.930743,0.999194,0.654506,0.360284,0.960954,0.436554,0.638513,0.157058,0.458253,0.648658,0.444952,0.0846711,0.121583,0.412963,0.57521,0.377558,|0.15457,0.588513,0.946717,0.682206,0.927226,0.3621,0.829667,0.330933,0.127796,0.131525,0.180832,0.00545919,0.439813,0.0245807,0.060169,0.0939655,0.284052,0.451498,0.350546,0.859886,0.163849,0.193012,0.157679,0.517382,0.757415,0.0936345,0.834947,0.774864,0.322314,0.462118,0.0994804,0.659418,0.932556,0.777468,0.827499,0.071395,0.119413,0.329926,0.945032,0.00990754,0.973787,0.587897,0.968486,0.683738,0.83526,0.640092,0.548129,0.218255,0.820981,0.44377,0.682466,0.830108,0.214505,0.435757,0.161427,0.268825,0.325516,0.888249,0.980988,0.657635,0.951071,0.265515,0.0395471,0.622739,0.519842,0.127108,0.752886,0.538757,0.833134,0.0599778,0.0732427,0.811061,0.460184,0.29513,0.863932,0.250482,0.588687,0.909586,0.0748771,0.485781,0.669388,0.353602,0.471567,0.734496,0.307404,0.464106,0.150491,0.592997,0.339377,0.0521055,0.984525,0.844087,0.485211,0.101313,0.442653,0.826663,0.375545,0.94072,0.327662,0.796742,0.365672,0.828842,0.787312,0.581123,0.346552,0.336491,0.352928,0.988131,0.134841,0.426561,0.250708,0.185156,0.943803,0.907344,0.178909,0.0606753,0.881417,0.301028,0.744545,0.322677,0.81867,0.637867,0.583454,0.161553,0.875681,0.51643,0.728312,0.775797,0.795278,0.0620903,0.0938284,0.306684,0.986986,0.207097,0.0794325,0.187238,0.516688,0.957477,0.259997,0.890403,0.543036,0.127028,0.427889,0.689394,0.175185,0.631909,0.961148,0.146112,0.465898,0.0478373,0.188035,0.780127,0.438993,0.3664,0.305466,0.0669352,0.0773906,0.407657,0.378528,0.525737,0.387696,0.459339,0.10111,0.611844,0.89322,0.69473,0.325874,0.374823,0.599509,0.894611,0.509455,0.784066,0.249781,0.486746,0.327195,0.920146,0.632848,0.38043,0.733182,0.353652,0.440931,0.0728462,0.295469,0.577708,0.281025,0.696616,0.507043,0.444996,0.144608,0.333786,0.78976,0.651872,0.915055,0.237172,0.664374,0.44809,0.274474,0.167054,0.894085,0.134062,0.161989,0.221288,0.404574,0.17353,0.164163,0.426384,0.643773,0.354154,0.33548,0.248438,0.661032,0.479449,0.598002,0.861516,0.681058,0.489454,0.358216,0.595706,0.0375648,0.209551,0.541197,0.0312025,0.00758553,0.443571,0.496134,0.54179,0.586367,0.598748,0.641693,0.869466,0.528899,0.569225,0.106377,0.979135,0.217518,0.364187,0.410261,0.649238,0.961665,0.218894,0.351161,0.547616,0.694153,0.198294,0.312513,0.251231,0.754885,0.339718,0.471398,0.543637,0.878061,0.986901,0.682217,0.781415,0.836934,0.971663,0.598843,0.833415,0.0987076,0.639198,0.193511,0.0306875,0.346761,0.994123,0.609611,0.291183,0.128139,0.997103,0.53831,0.735247,0.34955,0.760278,0.378221,0.133619,0.351796,0.364017,0.400897,0.245463,0.683166,0.0105315,0.0776731,0.785616,0.16192,0.862012,0.0709448,0.489331,0.814426,0.619199,0.0655704,0.783007,0.404628,0.998822,0.362619,0.0110619,0.462811,0.777268,0.822277,0.637228,0.979021,0.959651,0.199706,0.193739,0.281757,0.102832,0.130446,0.957629,0.06222,0.37903,0.66112,0.469807,0.883276,0.0207138,0.308163,0.0847256,0.033644,0.610866,0.233554,0.727377,0.0510401,0.0747349,0.70772,0.521136,0.825669,0.108303,0.908946,0.702468,0.550297,0.432335,0.89289,0.43971,0.464106,0.109229,0.806046,0.744173,0.322319,0.933362,0.776464,0.988696,0.0529866,0.982804,0.563602,0.882365,0.142231,0.767777,0.258635,0.860338,0.971717,0.543456,0.917878,0.684027,0.756118,0.0788147,0.347644,0.485159,0.562525,0.730088,0.594242,0.961359,0.76982,0.627223,0.987053,0.436854,0.395844,0.499468,0.884617,0.187684,0.277229,0.48458,0.891643,0.592305,0.320922,0.00472265,0.842617,0.127998,0.904315,0.718539,0.139078,0.0012688,0.309714,0.0295846,0.837968,0.65726,0.00264466,0.844266,0.419986,0.904094,0.642597,0.831523,0.929075,0.789723,0.150085,0.244025,0.759673,0.371869,0.429906,0.758299,0.29572,0.863509,0.950658,0.149448,0.383217,0.068028,0.42279,0.0530608,0.943061,0.116232,0.303742,0.592187,0.60821,0.0980959,0.665754,0.642962,0.594881,0.339338,0.577888,0.329462,0.693602,0.76923,0.237,0.34294,0.00082767,0.317817,0.0373797,0.00524139,0.729556,0.82788,0.375502,0.629692,0.990564,0.637458,0.899175,0.218953,0.257261,0.0514929,0.330081,0.82506,0.672809,0.189847,0.626676,0.412523,0.590608,0.237894,0.356017,0.47224,0.836399,0.277758,0.705834,0.925457,0.258612,0.647834,0.12363,0.930988,0.971637,0.985504,0.29285,0.735989,0.844177,0.254919,0.914339,0.483726,0.199169,0.925899,0.516862,0.289647,0.269989,0.393636,0.483248,0.556446,0.0962251,0.638261,0.639429,0.800192,0.873972,0.953408,0.540656,0.0863658,0.39285,0.294064,0.48213,0.763234,0.507743,0.613826,0.912715,0.914358,0.927254,0.0175404,0.763343,0.462702,0.331668,0.537583,0.0901546,0.08474,0.763667,0.895198,0.0566295,0.662353,0.248759,0.432417,0.697388,0.279464,0.805338,0.583736,0.128581,0.730273,0.0401139,0.0875515,0.31499,0.52966,0.370775,0.375831,0.482309,0.920427,0.871149,0.396525,0.898188,0.106245,0.638525,0.387089,0.874292,0.329444,0.68281,0.472593,0.562989,0.244435,0.464996,0.842058,0.466756,0.893391,0.975684,0.44445,0.291067,0.0581256,0.800998,0.556619,0.679418,0.356093,0.814864,0.326826,0.256082,0.766289,0.525659,0.32839,0.74102,0.744008,0.140552,0.0437006,0.698005,0.368004,0.796633,0.357673,0.310537,0.686881,0.920461,0.18822,0.834448,0.135165,0.684862,0.672413,0.724596,0.4452,0.895162,0.902094,0.572772,0.52323,0.219758,0.828656,0.366399,0.766929,0.984101,0.833667,0.502428,0.979324,0.487007,0.015142,0.398936,0.310755,0.464993,0.3737,0.0963159,0.132253,0.424744,0.266755,0.234963,0.518851,0.834804,0.444128,0.499884,0.63064,0.0983458,0.0894918,0.259017,0.479746,0.346874,0.484695,0.573784,0.616275,0.462404,0.371464,0.26099,0.960146,0.787105,0.872654,0.2693,0.578711,0.924805,0.65611,0.0983675,0.414481,0.839883,0.153266,0.838133,0.58145,0.602758,0.95921,0.296775,0.574557,0.455555,0.855694,0.945411,0.0884898,0.491748,0.267113,0.641543,0.679561,0.971365,0.214555,0.433751,0.061125,0.377475,0.724289,0.77871,0.0861047,0.171506,0.64025,0.382585,0.627707,0.470098,0.291171,0.326705,0.682958,0.421956,0.593463,0.0880926,0.278614,0.441296,0.670839,0.0955586,0.528884,0.0960878,0.951034,0.937757,0.366478,0.659808,0.161253,0.937151,0.609407,0.94667,0.596961,0.639834,0.993404,0.59775,0.849714,0.357035,0.940044,0.359277,0.449019,0.035626,0.997943,0.509444,0.296452,0.962243,0.633575,0.541585,0.50414,0.373937,0.477506,0.989223,0.625475,0.200825,0.299053,0.256066,0.467711,0.148081,0.962933,0.914498,0.378036,0.296559,0.403983,0.329989,0.248172,0.859597,0.194166,0.045846,0.368666,0.0878637,0.0767061,0.939198,0.693259,0.750226,0.977533,0.764845,0.14039,0.923196,0.796661,0.511005,0.182503,0.147397,0.899886,0.969316,0.244622,0.335414,0.448528,0.322891,0.600039,0.771933,0.0434225,0.0728872,0.980793,0.0353116,0.293899,0.371003,0.96103,0.727683,0.511666,0.324514,0.0626332,0.800865,0.542411,0.91987,0.55466,0.0776849,0.987649,0.130764,0.999841,0.657224,0.727587,0.768109,0.222583,0.766205,0.878857,0.701079,0.723413,0.592455,0.930795,0.331068,0.426745,0.871942,0.27004,0.689074,0.555751,0.809095,0.922204,0.900978,0.0813023,0.409714,0.62089,0.378699,0.85234,0.385573,0.260793,0.345499,0.9274,0.301193,0.609553,0.746725,0.339133,0.875165,0.0792007,0.23714,0.613992,0.295099,0.543027,0.981848,0.291812,0.864962,0.528873,0.0643817,0.364762,0.775286,0.640383,0.139146,0.654156,0.942442,0.829082,0.565276,0.930335,0.539095,0.428656,0.918173,0.880436,0.903723,0.393977,0.563251,0.360287,0.523449,0.0275103,0.416194,0.764827,0.764557,0.734286,0.465663,0.827666,0.413833,0.833487,0.300276,0.292211,0.568222,0.473579,0.83573,0.0494098,0.173945,0.733773,0.225253,0.210134,0.261922,0.955383,0.707793,0.796726,0.0537813,0.284711,0.392803,0.66243,0.988142,0.105051,0.77764,0.926967,0.869828,0.434351,0.971443,0.460711,0.125129,0.149943,0.138182,0.8456,0.931089,0.708826,0.598931,0.0210844,0.0289091,0.0162289,0.346032,0.244911,0.240213,0.0616269,0.239939,0.291678,0.0847254,0.17378,0.686896,0.979056,0.802816,0.637364,0.609816,0.812315,0.273632,0.796169,0.482948,0.129114,0.414764,0.73484,0.311709,0.944679,0.33771,0.340956,0.898595,0.544791,0.00127274,0.448698,0.0383179,0.936443,0.31127,0.0450449,0.908718,0.41087,0.471952,0.69571,0.408503,0.993046,0.251779,0.93806,0.270922,0.82525,0.899515,0.0608042,0.942169,0.455774,0.776505,0.155894,0.799168,0.30149,0.24948,0.549486,0.425757,0.239353,0.930885,0.15075,0.522592,0.758016,0.402222,0.248295,0.408994,0.237728,0.301932,0.718627,0.890963,0.233932,0.810167,0.257929,0.372063,0.563552,0.603242,0.940174,0.631667,0.320548,0.29927,0.955647,0.671937,0.511972,0.970045,0.224425,0.125952,0.606252,0.328336,0.615225,0.107656,0.805009,0.539471,0.374572,0.285832,0.904065,0.658513,0.291381,0.00383538,0.507069,0.432006,0.0712479,0.220066,0.511582,0.898618,0.23653,0.0984857,0.381913,0.905597,0.686407,0.149628,0.0666232,0.716026,0.685192,0.576258,0.776403,0.277513,0.188864,0.165311,0.115577,0.571032,0.12917,0.132654,0.336899,0.157378,0.800752,0.219018,0.602866,0.377311,0.892489,0.440762,0.434371,0.494436,0.97364,0.284355,0.0116237,0.295813,0.777912,0.451441,0.280666,0.800097,0.832358,0.13051,0.660116,0.226197,0.605565,0.96465,0.782052,0.230641,0.840211,0.38104,0.235442,0.412988,0.366068,0.794633,0.718599,0.416133,0.212255,0.413373,0.137017,0.557812,0.574165,0.0343994,0.693684,0.258614,0.368484,|0.558913,0.327794,0.0339109,0.679176,0.544627,0.170753,0.15784,0.380652,0.270886,0.534733,0.198415,0.233527,0.647453,0.839782,0.86152,0.635786,0.560935,0.128406,0.225026,0.809262,0.710686,0.0135741,0.124898,0.940388,0.12025,0.245749,0.167695,0.532225,0.00163704,0.386401,0.962497,0.563176,0.464814,0.278806,0.0933916,0.048112,0.703185,0.804356,0.236987,0.235615,0.220098,0.795063,0.0916046,0.242462,0.41641,0.322768,0.627704,0.869948,0.546755,0.71801,0.874199,0.893802,0.822951,0.0293844,0.664601,0.460915,0.382961,0.820701,0.063046,0.668596,0.318648,0.047183,0.0544174,0.520201,0.871532,0.480635,0.794304,0.256937,0.133258,0.227942,0.902502,0.895416,0.157136,0.85611,0.995777,0.901283,0.975276,0.536909,0.530577,0.535053,0.00393814,0.866864,0.682401,0.0474913,0.426347,0.217047,0.4202,0.900965,0.184384,0.68396,0.681056,0.423346,0.407411,0.340588,0.654417,0.0680099,0.326303,0.580957,0.950646,0.914371,0.103588,0.470799,0.331597,0.613338,0.296111,0.617044,0.538184,0.140253,0.00075525,0.564284,0.896151,0.0436772,0.598329,0.324093,0.813806,0.0506355,0.546278,0.221997,0.717721,0.360938,0.568414,0.40537,0.398646,0.949503,0.538342,0.41679,0.385729,0.92041,0.449346,0.298158,0.370374,0.206974,0.267367,0.557744,0.835,0.802784,0.149079,0.706156,0.770691,0.322748,0.839715,0.491745,0.367229,0.081881,0.923186,0.25701,0.757267,0.632113,0.562705,0.704983,0.563298,0.610707,0.141396,0.931994,0.453012,0.687855,0.104804,0.874619,0.550593,0.336061,0.911324,0.0341001,0.975869,0.0977578,0.524816,0.600051,0.703993,0.0228197,0.47129,0.98151,0.27914,0.0571131,0.043572,0.657288,0.679644,0.455341,0.379653,0.402505,0.577134,0.780075,0.732937,0.0603567,0.925365,0.517634,0.54718,0.422283,0.497287,0.820755,0.920919,0.821599,0.206371,0.00538647,0.0703342,0.673235,0.0411556,0.691618,0.604015,0.0169223,0.782967,0.588821,0.284427,0.965653,0.335738,0.300135,0.238423,0.159585,0.955453,0.125505,0.857192,0.533498,0.07089,0.416572,0.301751,0.380438,0.330174,0.138108,0.843419,0.177685,0.820085,0.0577354,0.552767,0.0998025,0.122327,0.0475007,0.366533,0.680618,0.890835,0.985399,0.788689,0.36782,0.0332825,0.440177,0.54,0.679584,0.730154,0.983452,0.486905,0.825952,0.368782,0.294596,0.720108,0.880842,0.519789,0.769759,0.897116,0.632658,0.0504654,0.581712,0.0312144,0.797621,0.768368,0.0758656,0.358245,0.667311,0.604376,0.601348,0.853404,0.500775,0.082449,0.309406,0.463944,0.99495,0.308752,0.110099,0.904066,0.320401,0.0993308,0.872697,0.996087,0.794294,0.656718,0.0850688,0.301416,0.660349,0.483454,0.28302,0.842366,0.0219858,0.17609,0.606318,0.056289,0.434673,0.835563,0.879774,0.174967,0.270238,0.956778,0.358719,0.214694,0.447238,0.230312,0.92169,0.808879,0.156996,0.182101,0.386675,0.368941,0.771974,0.966804,0.166245,0.40953,0.300289,0.838583,0.476943,0.580767,0.280283,0.370691,0.0657266,0.33446,0.507055,0.714962,0.987881,0.106523,0.404804,0.773564,0.555697,0.229725,0.911548,0.567482,0.615604,0.691543,0.150225,0.41792,0.499829,0.856979,0.487868,0.946732,0.432968,0.239651,0.817526,0.642297,0.230777,0.853604,0.0964856,0.480765,0.214773,0.191203,0.0937476,0.418678,0.797516,0.0341291,0.532467,0.380422,0.749337,0.712039,0.991676,0.292952,0.71517,0.124888,0.817509,0.958699,0.0499187,0.846877,0.888561,0.0810801,0.334267,0.123257,0.559569,0.0623921,0.504337,0.229721,0.474994,0.662816,0.635389,0.348974,0.096917,0.558532,0.682163,0.819193,0.451641,0.182421,0.857731,0.564421,0.279788,0.549446,0.37645,0.876099,0.639286,0.742651,0.0925509,0.0963345,0.414694,0.633399,0.477417,0.836323,0.465756,0.0754182,0.0952873,0.00776386,0.427199,0.532824,0.268131,0.34067,0.753114,0.491168,0.824382,0.585711,0.891191,0.902568,0.271353,0.636355,0.891341,0.625799,0.448436,0.24967,0.0550512,0.908671,0.0794747,0.823094,0.0322961,0.372008,0.421972,0.357944,0.441502,0.907013,0.864345,0.472145,0.777326,0.0590106,0.22727,0.712776,0.588315,0.0146853,0.964887,0.137185,0.0382824,0.198101,0.40923,0.822182,0.00521773,0.0996166,0.553299,0.995829,0.0935195,0.372864,0.720261,0.566869,0.557733,0.310524,0.742932,0.108486,0.0667751,0.0832883,0.201418,0.95899,0.00233692,0.994248,0.142518,0.640497,0.587115,0.467044,0.142175,0.172369,0.670178,0.664824,0.154142,0.54243,0.519782,0.531816,0.659116,0.368311,0.377381,0.704964,0.501577,0.0130648,0.518179,0.660974,0.673977,0.428312,0.376893,0.493173,0.229213,0.418154,0.863419,0.725271,0.355249,0.677486,0.904603,0.35193,0.44005,0.175426,0.184303,0.610582,0.363062,0.575217,0.399768,0.337403,0.773007,0.114744,0.255641,0.265501,0.10139,0.276318,0.889502,0.96722,0.459719,0.111893,0.193023,0.974047,0.446376,0.983089,0.899357,0.401008,0.608901,0.0415969,0.374093,0.800228,0.697093,0.707229,0.0636511,0.926233,0.495967,0.0950898,0.996254,0.495848,0.86162,0.063144,0.754877,0.300099,0.95921,0.885721,0.385458,0.921546,0.597599,0.352638,0.530996,0.572942,0.293999,0.411661,0.987152,0.991655,0.562286,0.501259,0.234269,0.383624,0.911084,0.305997,0.765046,0.160484,0.425071,0.11819,0.564967,0.727074,0.86788,0.481408,0.506632,0.2785,0.553537,0.903253,0.466799,0.584677,0.842024,0.753958,0.785562,0.926296,0.250665,0.557085,0.406055,0.899456,0.544464,0.748575,0.748843,0.539397,0.308531,0.122606,0.270959,0.572796,0.545201,0.870039,0.400213,0.165063,0.670633,0.921296,0.432326,0.365578,0.0915883,0.786561,0.541454,0.827987,0.340566,0.407274,0.171426,0.757518,0.358504,0.559687,0.51099,0.563311,0.146813,0.0296686,0.0799891,0.836209,0.863608,0.268352,0.599147,0.360628,0.81605,0.500751,0.116689,0.713913,0.186911,0.681668,0.782035,0.115209,0.115409,0.0651296,0.235669,0.956211,0.996015,0.0109405,0.496828,0.686247,0.874331,0.52581,0.922195,0.384134,0.0376391,0.131413,0.805372,0.616512,0.161892,0.0959345,0.664316,0.515837,0.488248,0.790889,0.316575,0.112653,0.389785,0.613162,0.356443,0.452616,0.634133,0.190395,0.442002,0.875826,0.465697,0.489515,0.311818,0.493493,0.757907,0.0244563,0.956221,0.285756,0.557467,0.880481,0.0567833,0.390265,0.38945,0.172248,0.492297,0.51484,0.606951,0.34708,0.580078,0.13355,0.626102,0.791594,0.495032,0.563188,0.985151,0.0829217,0.282335,0.352272,0.464306,0.496774,0.558262,0.821017,0.188376,0.676243,0.150853,0.648446,0.885772,0.92861,0.188131,0.510264,0.143092,0.689489,0.68273,0.523864,0.367833,0.77887,0.0993507,0.675497,0.670058,0.333453,0.499331,0.964711,0.348176,0.585365,0.852745,0.793143,0.516781,0.0587137,0.366025,0.736075,0.936502,0.118916,0.195414,0.321502,0.478459,0.62456,0.593372,0.871952,0.402596,0.584321,0.279323,0.964148,0.968182,0.85692,0.0876852,0.576688,0.604708,0.466106,0.957282,0.759164,0.501455,0.0625932,0.0440794,0.194681,0.17765,0.39299,0.499819,0.190435,0.33177,0.442292,0.271048,0.476112,0.747645,0.366899,0.416851,0.27033,0.90514,0.655718,0.0272974,0.669095,0.152056,0.059204,0.796004,0.919108,0.323464,0.955716,0.672966,0.816532,0.106461,0.0821248,0.176624,0.202943,0.544924,0.282916,0.630736,0.534852,0.533377,0.361116,0.75434,0.737795,0.490013,0.450397,0.154567,0.0388781,0.487569,0.836668,0.92398,0.805515,0.45958,0.11357,0.622345,0.512284,0.391476,0.615159,0.414731,0.313198,0.444276,0.30263,0.66482,0.919847,0.861067,0.0858789,0.16152,0.656897,0.678395,0.0210627,0.777056,0.280245,0.971549,0.587733,0.518921,0.0847522,0.22858,0.916057,0.579801,0.162429,0.676463,0.673794,0.134655,0.0774776,0.613044,0.0943426,0.41926,0.310028,0.268766,0.85611,0.364589,0.0385041,0.312181,0.332822,0.13722,0.777353,0.0643714,0.488537,0.740421,0.122701,0.930351,0.0525663,0.390236,0.408458,0.606211,0.096914,0.562405,0.193317,0.508673,0.720607,0.854995,0.994928,0.520166,0.576072,0.428292,0.120129,0.692584,0.422984,0.655874,0.409468,0.44278,0.684779,0.466287,0.934768,0.999768,0.0425418,0.216749,0.355473,0.792353,0.600262,0.462839,0.537201,0.258336,0.0169558,0.57229,0.864271,0.296254,0.4987,0.938282,0.366868,0.269921,0.00854635,0.73194,0.872511,0.587034,0.427291,0.159026,0.853732,0.137828,0.225989,0.679345,0.677861,0.822316,0.346558,0.786538,0.308347,0.592795,0.333707,0.0698789,0.150707,0.708889,0.000119865,0.775846,0.0842151,0.516389,0.280061,0.727336,0.0900292,0.519765,0.235493,0.0379014,0.649747,0.356692,0.996684,0.856989,0.621307,0.986459,0.0217274,0.940915,0.898031,0.615591,0.61477,0.104295,0.367076,0.329205,0.94089,0.69283,0.06843,0.315095,0.523388,0.72454,0.276459,0.846735,0.749179,0.58795,0.719998,0.911158,0.531229,0.95443,0.16868,0.782232,0.00403827,0.261838,0.374077,0.643299,0.0591593,0.55972,0.431548,0.222098,0.912636,0.592764,0.488618,0.289816,0.864592,0.831986,0.335388,0.731042,0.187699,0.414381,0.785579,0.881729,0.721325,0.586745,0.0956193,0.672378,0.280253,0.303361,0.0538794,0.355716,0.952922,0.0378088,0.12539,0.46316,0.254233,0.802933,0.13727,0.695213,0.778244,0.972883,0.0714142,0.274437,0.903369,0.914132,0.808442,0.258986,0.0606427,0.814371,0.758248,0.944227,0.393102,0.876781,0.548304,0.435375,0.364537,0.486026,0.957893,0.498698,0.739754,0.05351,0.424446,0.291901,0.708551,0.116391,0.797232,0.741481,0.575776,0.275112,0.445805,0.573613,0.31058,0.290921,0.0515933,0.422242,0.273263,0.46438,0.540274,0.234098,0.996399,0.948645,0.480935,0.458726,0.120502,0.92989,0.487028,0.410681,0.206545,0.44721,0.123132,0.509607,|0.889478,0.721346,0.79282,0.797445,0.899852,0.508584,0.977045,0.371713,0.76272,0.297918,0.984201,0.37038,0.12922,0.344201,0.207938,0.784769,0.557234,0.635931,0.4893,0.0219906,0.484905,0.299154,0.191664,0.214181,0.435146,0.730443,0.485206,0.402786,0.453294,0.112895,0.182086,0.869653,0.966183,0.719392,0.0344319,0.767254,0.532033,0.256042,0.969903,0.0672637,0.172202,0.971044,0.693269,0.92222,0.755318,0.374708,0.92707,0.576674,0.215144,0.687023,0.991479,0.193258,0.381457,0.755594,0.764488,0.65491,0.838715,0.384044,0.327872,0.702626,0.112178,0.298624,0.414301,0.157553,0.407482,0.992018,0.270163,0.197879,0.57471,0.906081,0.551727,0.758983,0.340307,0.398536,0.474406,0.165083,0.300954,0.454676,0.251065,0.867904,0.0317346,0.524648,0.458662,0.00918525,0.144407,0.936255,0.453378,0.199919,0.259887,0.0445595,0.107172,0.296677,0.902562,0.502586,0.893798,0.950724,0.973942,0.154248,0.837524,0.580472,0.181475,0.769288,0.91318,0.78734,0.395288,0.106634,0.176548,0.920373,0.08865,0.0542139,0.405531,0.509869,0.857917,0.820253,0.655555,0.279517,0.24435,0.264121,0.506166,0.941572,0.877188,0.0641288,0.389357,0.995738,0.955193,0.29635,0.068129,0.628323,0.120664,0.0740449,0.115201,0.651306,0.176737,0.858844,0.386887,0.405818,0.310564,0.743961,0.206113,0.0517241,0.178291,0.0416676,0.180004,0.836885,0.249654,0.382975,0.136704,0.823237,0.0344056,0.943683,0.665348,0.749483,0.529316,0.363161,0.417691,0.625648,0.551935,0.788963,0.917665,0.738182,0.710173,0.347199,0.642852,0.85891,0.510034,0.471657,0.969341,0.234697,0.249219,0.107192,0.226927,0.186265,0.907971,0.114647,0.672983,0.198807,0.708222,0.594507,0.534185,0.666362,0.050754,0.922665,0.610772,0.938554,0.915494,0.65641,0.646109,0.768778,0.986403,0.74601,0.764075,0.14122,0.35472,0.744379,0.167931,0.949918,0.0112102,0.16842,0.333256,0.860964,0.39728,0.886809,0.668234,0.356927,0.188095,0.0519992,0.460778,0.0109573,0.159613,0.294212,0.945962,0.902778,0.834532,0.591605,0.385865,0.731131,0.193976,0.591691,0.354555,0.949969,0.30118,0.554709,0.315763,0.663548,0.19682,0.83128,0.98646,0.478079,0.223814,0.417448,0.204012,0.967211,0.295176,0.658501,0.861102,0.348525,0.301653,0.277254,0.46049,0.119988,0.734892,0.428831,0.727892,0.0559974,0.471337,0.907124,0.772611,0.306196,0.794163,0.961167,0.240017,0.409645,0.908206,0.0448933,0.676379,0.000211418,0.176582,0.665359,0.4231,0.717639,0.698008,0.805936,0.615175,0.492245,0.722759,0.067668,0.960546,0.721443,0.525324,0.484911,0.825893,0.970909,0.316387,0.769801,0.397538,0.619393,0.0975578,0.85832,0.128089,0.692622,0.972491,0.767242,0.505979,0.101343,0.810322,0.779229,0.965392,0.938091,0.829603,0.615956,0.15017,0.974691,0.568449,0.13369,0.926866,0.76919,0.50106,0.623918,0.36241,0.300048,0.781752,0.742764,0.557259,0.446041,0.5925,0.48863,0.869715,0.360337,0.907432,0.390146,0.15021,0.899084,0.337691,0.311749,0.0636939,0.76563,0.628317,0.758678,0.461827,0.768876,0.193267,0.00109702,0.772967,0.114402,0.354176,0.112321,0.416726,0.651977,0.328096,0.809977,0.226301,0.874914,0.296101,0.0961261,0.176906,0.171186,0.51721,0.977723,0.738253,0.637899,0.639857,0.860348,0.330731,0.796259,0.13251,0.1989,0.406293,0.749945,0.160805,0.818105,0.525928,0.113686,0.170242,0.0565718,0.11017,0.468952,0.723983,0.39853,0.472911,0.894678,0.140384,0.936151,0.402942,0.769929,0.667937,0.22231,0.978461,0.586228,0.109485,0.825737,0.586294,0.663394,0.163933,0.69409,0.343213,0.285178,0.140319,0.828148,0.890032,0.535996,0.570727,0.123618,0.492827,0.604391,0.423919,0.0373714,0.439701,0.719635,0.462585,0.572311,0.0177577,0.404149,0.499107,0.879589,0.890683,0.34199,0.478583,0.4441,0.0747722,0.814676,0.529928,0.671783,0.309636,0.282883,0.641501,0.853018,0.0536918,0.0478752,0.726687,0.976624,0.13673,0.352314,0.183318,0.0596272,0.965877,0.595375,0.0193619,0.169657,0.0870802,0.164226,0.950007,0.777517,0.417769,0.381502,0.974132,0.277245,0.0853813,0.646439,0.573613,0.349048,0.632684,0.159505,0.139906,0.144577,0.367472,0.594014,0.693277,0.383016,0.592326,0.603087,0.0433322,0.811354,0.878127,0.0155616,0.705514,0.148191,0.990934,0.950017,0.681386,0.395757,0.768129,0.101221,0.531911,0.119483,0.137746,0.902022,0.666427,0.908042,0.968366,0.905215,0.43799,0.828364,0.0315229,0.848224,0.774112,0.27376,0.331311,0.431487,0.790529,0.908558,0.0532595,0.541856,0.217148,0.796099,0.44518,0.0425826,0.953117,0.971339,0.975277,0.45914,0.369616,0.762655,0.500363,0.238718,0.139609,0.258368,0.256062,0.570992,0.518353,0.850934,0.956778,0.858313,0.141787,0.228025,0.759926,0.412153,0.929964,0.903867,0.271058,0.536462,0.206367,0.246932,0.801533,0.759904,0.782478,0.749226,0.986261,0.169654,0.974993,0.109709,0.473763,0.776147,0.594766,0.891031,0.530739,0.070088,0.832744,0.598422,0.690101,0.504207,0.396265,0.719171,0.69602,0.0219176,0.34938,0.761575,0.536112,0.0653608,0.345536,0.934136,0.510206,0.772698,0.466519,0.862126,0.939913,0.845473,0.643434,0.487564,0.831842,0.949358,0.160658,0.981322,0.306871,0.749802,0.447547,0.0845055,0.0355901,0.736437,0.101297,0.777924,0.428635,0.809847,0.404816,0.438349,0.271994,0.504584,0.347641,0.632379,0.845765,0.831821,0.892471,0.226481,0.4464,0.132242,0.652435,0.754262,0.540919,0.926049,0.473245,0.422054,0.715495,0.191163,0.0866855,0.134864,0.982248,0.37618,0.21843,0.394862,0.714051,0.986314,0.078741,0.562351,0.987101,0.327888,0.518655,0.497644,0.523597,0.767073,0.789984,0.182716,0.709624,0.793173,0.346492,0.703182,0.673532,0.211645,0.365398,0.641507,0.607476,0.238177,0.835452,0.291335,0.0994377,0.285099,0.933463,0.577261,0.953426,0.0608723,0.0256836,0.386009,0.541254,0.0312044,0.583922,0.634857,0.357714,0.738899,0.0920225,0.213645,0.937716,0.500534,0.974304,0.149501,0.724005,0.629809,0.0674667,0.408077,0.221164,0.520712,0.966461,0.548973,0.419335,0.381509,0.377783,0.758649,0.58838,0.966726,0.234541,0.242088,0.459966,0.267878,0.078065,0.214623,0.578972,0.977531,0.68044,0.611585,0.932296,0.213928,0.613286,0.918967,0.857747,0.8213,0.730998,0.14475,0.231235,0.569746,0.95966,0.237268,0.71226,0.0746527,0.655911,0.324088,0.125842,0.63089,0.163243,0.834314,0.279101,0.435655,0.834396,0.166663,0.148212,0.149523,0.499511,0.938309,0.919683,0.292119,0.999417,0.0241937,0.442083,0.851003,0.853197,0.481356,0.188765,0.364942,0.898305,0.175011,0.59985,0.404436,0.408075,0.0642463,0.166134,0.811001,0.301933,0.834178,0.38381,0.767079,0.545322,0.488635,0.66765,0.986369,0.558211,0.199932,0.737915,0.843933,0.404613,0.502461,0.70214,0.212749,0.583886,0.816601,0.914342,0.00243318,0.553535,0.0237982,0.701602,0.550083,0.285157,0.315724,0.809003,0.251127,0.246327,0.0176457,0.241771,0.602322,0.937235,0.923522,0.182298,0.515662,0.497137,0.123611,0.93159,0.995031,0.672413,0.372587,0.271814,0.923094,0.875942,0.120744,0.684164,0.495908,0.994126,0.63347,0.279105,0.599515,0.99713,0.469512,0.849826,0.692435,0.611721,0.940357,0.68422,0.521848,0.0126308,0.404034,0.651401,0.955515,0.450844,0.180576,0.181748,0.659481,0.1885,0.735794,0.300736,0.44677,0.436271,0.892071,0.405368,0.263894,0.170398,0.0318794,0.766603,0.782272,0.684111,0.122349,0.46085,0.365535,0.106252,0.541063,0.186859,0.485452,0.685605,0.292459,0.0432107,0.20553,0.184417,0.853508,0.0192032,0.617015,0.56946,0.67208,0.828981,0.794434,0.380092,0.263967,0.86044,0.896158,0.113622,0.00825733,0.546979,0.710543,0.511473,0.439226,0.137881,0.0490545,0.323063,0.158285,0.264125,0.696602,0.127508,0.362025,0.807171,0.0756618,0.473402,0.877962,0.992976,0.434902,0.580289,0.337421,0.462614,0.457408,0.558765,0.591325,0.165226,0.875799,0.284077,0.274094,0.783584,0.734916,0.873542,0.187077,0.781444,0.444513,0.770433,0.716964,0.292758,0.638284,0.598414,0.937508,0.00505835,0.762878,0.208413,0.680421,0.895707,0.500538,0.102056,0.995192,0.0643026,0.789662,0.379595,0.536399,0.674951,0.100847,0.0951273,0.895394,0.671333,0.709112,0.965094,0.297501,0.897507,0.407696,0.126181,0.0841047,0.966863,0.393833,0.147346,0.477566,0.0924527,0.925095,0.119331,0.232452,0.881853,0.564818,0.549551,0.885174,0.0965306,0.674819,0.13687,0.617256,0.0687659,0.628858,0.840943,0.43262,0.0339832,0.344685,0.979181,0.178988,0.67563,0.617978,0.408345,0.806083,0.292911,0.978941,0.0930497,0.254561,0.517106,0.335932,0.163529,0.820323,0.280104,0.226473,0.967031,0.648582,0.238329,0.695427,0.435969,0.501506,0.157879,0.606197,0.292547,0.143058,0.131376,0.0747876,0.592582,0.63143,0.938819,0.929972,0.211878,0.338525,0.114483,0.153228,0.0476341,0.851744,0.469958,0.506812,0.0227554,0.566513,0.396401,0.716596,0.783105,0.368991,0.843699,0.524573,0.489043,0.195099,0.914271,0.135916,0.784646,0.0146849,0.323972,0.772637,0.645619,0.0267665,0.542441,0.0378714,0.984884,0.558906,0.484788,0.773752,0.303737,0.0272951,0.578568,0.529272,0.906447,0.495718,0.0464574,0.0541237,0.268573,0.842257,0.171255,0.432548,0.256215,0.767231,0.858508,0.607777,0.339756,0.148222,0.145499,0.508376,0.583721,0.143496,0.87034,0.0646356,0.400857,0.595699,0.387559,0.716018,0.871517,0.586468,0.544144,0.500832,0.626858,0.288003,0.380246,0.0441974,0.909143,0.465315,0.0966766,0.484567,0.688394,0.000136912,0.939163,0.48579,0.0732629,0.360065,0.963335,0.0943162,0.0302196,0.211626,0.267519,0.371159,|0.429763,0.400118,0.515905,0.882088,0.379556,0.207015,0.173167,0.423475,0.366453,0.262035,0.908084,0.255383,0.720651,0.498223,0.937214,0.567124,0.796563,0.829244,0.408575,0.579543,0.415638,0.397783,0.253839,0.967583,0.129571,0.305952,0.94395,0.303009,0.546296,0.107373,0.266177,0.121113,0.512641,0.1145,0.191994,0.829094,0.142203,0.832561,0.681228,0.0904615,0.42652,0.865767,0.307088,0.155853,0.992579,0.88658,0.886045,0.12423,0.497916,0.974058,0.172931,0.343924,0.6892,0.339293,0.450931,0.500163,0.831101,0.59303,0.129486,0.278491,0.374071,0.171724,0.478941,0.892382,0.519353,0.589434,0.0059042,0.391451,0.131011,0.00991923,0.711289,0.154567,0.744447,0.349979,0.609503,0.758713,0.0748257,0.211597,0.715248,0.413149,0.994987,0.474776,0.31523,0.523195,0.738001,0.58134,0.0230708,0.618524,0.172841,0.411984,0.306157,0.473014,0.49749,0.681468,0.635641,0.172544,0.605033,0.408709,0.311148,0.87936,0.422924,0.00165951,0.918378,0.65045,0.496077,0.225372,0.900995,0.926638,0.433079,0.405925,0.386917,0.778282,0.734294,0.201451,0.0846683,0.614176,0.663643,0.602392,0.128797,0.911813,0.253987,0.942829,0.668226,0.254747,0.720822,0.170281,0.13454,0.661848,0.823926,0.948928,0.280728,0.0490665,0.199887,0.110452,0.784147,0.694061,0.125988,0.715463,0.594292,0.528749,0.884311,0.0563245,0.305753,0.718039,0.41823,0.29071,0.63463,0.260466,0.285728,0.231508,0.615186,0.819184,0.547723,0.261273,0.95167,0.0618239,0.0182401,0.106682,0.987139,0.177395,0.40153,0.278064,0.754892,0.557934,0.211092,0.425156,0.817229,0.550857,0.98887,0.327068,0.641254,0.993946,0.981255,0.092281,0.104316,0.0569977,0.403866,0.201352,0.435674,0.575203,0.323097,0.144984,0.247562,0.166735,0.0894274,0.0685947,0.534629,0.7998,0.595741,0.202622,0.647076,0.233594,0.328061,0.888556,0.137363,0.80754,0.690431,0.6173,0.981721,0.00744164,0.843693,0.101279,0.142426,0.885547,0.950171,0.67411,0.647738,0.313727,0.156565,0.170301,0.755371,0.407339,0.700177,0.257667,0.892549,0.503073,0.976098,0.742616,0.52207,0.00963688,0.190607,0.381642,0.409665,0.447076,0.347496,0.768481,0.869508,0.765252,0.390804,0.692883,0.128483,0.427535,0.293846,0.75872,0.47181,0.397905,0.216311,0.437005,0.514381,0.832556,0.278623,0.676378,0.753395,0.81271,0.579547,0.32415,0.827586,0.209503,0.810217,0.138926,0.223143,0.794948,0.383138,0.299846,0.234104,0.418771,0.555198,0.198833,0.445591,0.94842,0.311496,0.572433,0.27848,0.258751,0.176799,0.0382084,0.412631,0.552728,0.948868,0.282676,0.054843,0.55327,0.959088,0.969137,0.488517,0.829093,0.683902,0.0219188,0.0347901,0.123869,0.330158,0.904518,0.374991,0.0331827,0.0365075,0.268699,0.847941,0.140787,0.154513,0.571396,0.0416851,0.829291,0.476055,0.980399,0.929893,0.905716,0.812318,0.585853,0.902993,0.364541,0.205419,0.236663,0.462926,0.623415,0.431351,0.352513,0.986813,0.38543,0.275612,0.485348,0.487412,0.314756,0.494731,0.100803,0.287201,0.083138,0.9398,0.759316,0.887183,0.446884,0.831611,0.949929,0.962865,0.848664,0.274352,0.635854,0.280553,0.917284,0.727974,0.0316306,0.962768,0.95876,0.208048,0.568615,0.336843,0.00363737,0.799557,0.814177,0.769624,0.215114,0.783315,0.691967,0.301232,0.891896,0.00524014,0.960714,0.40754,0.125336,0.909577,0.0920713,0.348339,0.745184,0.00921029,0.408318,0.673365,0.30541,0.320658,0.44563,0.366388,0.577254,0.359946,0.110153,0.0362782,0.530387,0.452372,0.535288,0.420777,0.319361,0.902663,0.141519,0.0793773,0.587441,0.0267019,0.841757,0.351064,0.874506,0.646117,0.490567,0.314038,0.457578,0.619877,0.853585,0.562129,0.0927427,0.74703,0.137944,0.30192,0.888734,0.959628,0.89447,0.837616,0.501883,0.324699,0.890772,0.820608,0.108076,0.0359002,0.00107753,0.700213,0.662295,0.451643,0.720313,0.667338,0.00181872,0.0524504,0.657673,0.0933961,0.690419,0.0642117,0.485614,0.117529,0.330232,0.83992,0.133936,0.220473,0.392994,0.50065,0.602622,0.64827,0.149864,0.549894,0.418117,0.437867,0.700535,0.0949025,0.234859,0.361197,0.84414,0.951138,0.350913,0.971682,0.548248,0.533095,0.912807,0.293535,0.196124,0.00657666,0.00137806,0.811151,0.950957,0.527313,0.26154,0.103917,0.704131,0.38563,0.685655,0.38123,0.238303,0.880943,0.46107,0.209344,0.666177,0.412766,0.0135616,0.941586,0.846977,0.304842,0.378145,0.681173,0.281195,0.792828,0.32949,0.836172,0.299229,0.426501,0.325516,0.145456,0.0254487,0.767459,0.617054,0.730473,0.629849,0.587717,0.426437,0.927683,0.00659764,0.677768,0.492199,0.122692,0.764603,0.623349,0.606652,0.294565,0.822831,0.782668,0.413593,0.272462,0.899856,0.0904096,0.947173,0.0341453,0.96972,0.864943,0.324673,0.612187,0.476246,0.393031,0.924095,0.358075,0.936681,0.561853,0.462733,0.147448,0.56532,0.558716,0.0717188,0.844656,0.401425,0.745634,0.556031,0.905556,0.613278,0.011029,0.414625,0.743208,0.766567,0.330629,0.477895,0.401002,0.809885,0.853388,0.872799,0.571634,0.415298,0.140702,0.419758,0.47002,0.524145,0.672495,0.108176,0.660166,0.334287,0.257946,0.104269,0.459022,0.802641,0.774638,0.554172,0.267099,0.464604,0.226227,0.214313,0.387894,0.360721,0.930175,0.182013,0.739117,0.544037,0.170858,0.735727,0.304431,0.698753,0.685114,0.676643,0.72358,0.165709,0.377447,0.0589744,0.881495,0.768048,0.215923,0.876469,0.728028,0.989235,0.985855,0.824347,0.930966,0.480842,0.0615857,0.216358,0.819758,0.685206,0.97094,0.142876,0.355047,0.640355,0.79996,0.576653,0.619987,0.216587,0.551053,0.84971,0.495867,0.859204,0.15353,0.71255,0.718363,0.405944,0.852133,0.0331783,0.254503,0.611088,0.958722,0.426633,0.785754,0.44935,0.933742,0.604017,0.229653,0.276443,0.813791,0.792203,0.690423,0.100541,0.498152,0.0887001,0.722761,0.681345,0.714719,0.0354271,0.0945846,0.181425,0.592716,0.428698,0.313335,0.647191,0.682596,0.752417,0.196903,0.0156323,0.321572,0.0210143,0.802382,0.735086,0.901406,0.816987,0.355412,0.182043,0.385108,0.678595,0.925904,0.0173364,0.728319,0.0701265,0.123989,0.454058,0.488788,0.381785,0.804772,0.369461,0.196542,0.994262,0.143108,0.201458,0.728931,0.224398,0.698834,0.838979,0.347566,0.879199,0.108277,0.969654,0.543321,0.274256,0.512142,0.245065,0.973695,0.80732,0.618509,0.017799,0.00431257,0.226574,0.655269,0.434615,0.854419,0.355476,0.657799,0.567982,0.419261,0.242782,0.933527,0.451875,0.672008,0.724854,0.266316,0.73607,0.164827,0.646406,0.722283,0.36199,0.375144,0.164147,0.142511,0.804948,0.590225,0.283241,0.923119,0.112933,0.77799,0.252432,0.341652,0.759973,0.836694,0.891963,0.994824,0.307117,0.866053,0.159379,0.201372,0.272216,0.683246,0.453842,0.826799,0.195029,0.692813,0.508824,0.507696,0.404889,0.394617,0.978172,0.718212,0.446191,0.317599,0.775782,0.211768,0.388497,0.771681,0.655146,0.763194,0.346313,0.94679,0.913078,0.0542104,0.803354,0.075911,0.667506,0.530774,0.53573,0.450683,0.325556,0.481035,0.702306,0.244425,0.209906,0.2386,0.661122,0.92544,0.116609,0.29699,0.506896,0.223391,0.865917,0.5477,0.949535,0.341465,0.993722,0.973183,0.882142,0.222118,0.0458459,0.276315,0.993794,0.1615,0.299064,0.781938,0.746483,0.309723,0.550177,0.561222,0.900136,0.796201,0.116612,0.519091,0.443706,0.97991,0.518908,0.377844,0.720657,0.680745,0.103535,0.161506,0.537412,0.88424,0.923546,0.425213,0.204142,0.802916,0.531081,0.831924,0.840085,0.225469,0.352463,0.188631,0.524592,0.947166,0.601569,0.107515,0.186249,0.242065,0.379495,0.133692,0.73035,0.142043,0.120918,0.394624,0.829838,0.266411,0.868433,0.699695,0.604163,0.27844,0.272034,0.138751,0.00482941,0.117635,0.931158,0.598941,0.282459,0.972715,0.0852903,0.842484,0.278252,0.767625,0.389681,0.57295,0.70177,0.560679,0.487185,0.839367,0.00863737,0.619674,0.785415,0.240954,0.453044,0.75231,0.367846,0.504526,0.603461,0.639438,0.81158,0.741115,0.962118,0.0336939,0.0907381,0.445344,0.0559891,0.431,0.418251,0.961538,0.86391,0.678464,0.0603278,0.621847,0.362872,0.764978,0.963651,0.829667,0.286217,0.12125,0.861462,0.0970255,0.679646,0.85025,0.238461,0.47398,0.296575,0.335132,0.430828,0.26267,0.566305,0.364349,0.580569,0.10626,0.147452,0.205601,0.878163,0.645165,0.367699,0.185514,0.206428,0.966715,0.00953287,0.18159,0.454866,0.998391,0.895614,0.188051,0.782767,0.335398,0.10658,0.982811,0.485163,0.841488,0.657669,0.712371,0.802666,0.581561,0.371357,0.572043,0.668964,0.75406,0.836533,0.460593,0.419654,0.485411,0.873704,0.0112754,0.52664,0.0192167,0.344275,0.190405,0.718749,0.948522,0.499509,0.401374,0.902305,0.864554,0.446049,0.738195,0.532745,0.0252276,0.384151,0.45544,0.731355,0.984266,0.0349021,0.167775,0.300294,0.11058,0.26079,0.631291,0.624692,0.40598,0.551955,0.0987183,0.926299,0.64961,0.782367,0.0962299,0.851538,0.771248,0.583566,0.295996,0.275222,0.342161,0.175473,0.140676,0.909283,0.398825,0.763342,0.867207,0.665308,0.811764,0.392333,0.604461,0.908868,0.39426,0.618718,0.918622,0.934301,0.625172,0.645063,0.440335,0.904844,0.989965,0.0298411,0.409033,0.710226,0.71238,0.418291,0.172544,0.761301,0.939247,0.59732,0.622317,0.759341,0.433719,0.25748,0.148974,0.448508,0.138277,0.203,0.295683,0.624768,0.740347,0.844461,0.014248,0.434661,0.755795,0.574097,0.753811,0.25111,0.606684,0.0768738,0.630771,0.986453,0.3509,0.672344,0.507591,0.0264228,0.38274,0.163064,0.35754,0.624465,0.441534,0.360138,0.924159,0.647325,0.109816,0.9643,|0.289438,0.122524,0.427189,0.327413,0.890214,0.59628,0.00273693,0.00346279,0.553286,0.0766668,0.642477,0.958483,0.346975,0.817466,0.493723,0.719342,0.759475,0.725972,0.19825,0.7345,0.295145,0.184714,0.206659,0.949124,0.597652,0.0540352,0.261717,0.121824,0.256805,0.924828,0.106288,0.733273,0.822941,0.322903,0.275723,0.0753678,0.262111,0.809689,0.473619,0.752762,0.100261,0.958162,0.444972,0.973424,0.328189,0.432363,0.289797,0.814479,0.190663,0.434647,0.67214,0.53446,0.126635,0.474177,0.23239,0.815776,0.0484988,0.00595224,0.544236,0.225454,0.193835,0.792315,0.666144,0.760861,0.960797,0.8411,0.0293228,0.463017,0.695413,0.843266,0.03884,0.536639,0.868066,0.592051,0.483815,0.813654,0.529529,0.922503,0.101609,0.970376,0.561791,0.292034,0.547263,0.528153,0.640011,0.728499,0.525721,0.752562,0.0307014,0.609621,0.755614,0.976699,0.128264,0.329189,0.423814,0.214633,0.983306,0.241522,0.751538,0.417375,0.746954,0.058462,0.555366,0.980977,0.699534,0.803882,0.863655,0.153496,0.424822,0.367522,0.433077,0.706337,0.949237,0.688455,0.738445,0.189816,0.453453,0.159709,0.211252,0.0309304,0.602716,0.142719,0.110487,0.567739,0.295783,0.702705,0.515473,0.31835,0.188868,0.373094,0.855859,0.45903,0.611987,0.276635,0.751922,0.612431,0.965213,0.651067,0.888667,0.715956,0.529284,0.508306,0.410799,0.909418,0.909167,0.918156,0.559818,0.391584,0.339098,0.161204,0.0604104,0.399731,0.676752,0.552039,0.565965,0.4217,0.701011,0.316796,0.0610543,0.0784211,0.318357,0.435861,0.222057,0.975825,0.817948,0.173294,0.557198,0.385257,0.18772,0.504228,0.100514,0.0362484,0.638129,0.492114,0.417716,0.277454,0.492328,0.177423,0.494171,0.398064,0.85557,0.022207,0.377764,0.314808,0.532575,0.813966,0.115869,0.854371,0.660919,0.134082,0.821058,0.864322,0.814795,0.99383,0.643838,0.672801,0.891326,0.264959,0.206832,0.293039,0.351696,0.539949,0.276872,0.212654,0.171773,0.425191,0.498571,0.436748,0.850406,0.38007,0.835368,0.864123,0.213764,0.265298,0.81803,0.884273,0.465908,0.533369,0.741099,0.710192,0.27768,0.108616,0.612755,0.645613,0.793035,0.933943,0.517512,0.766521,0.912021,0.427766,0.358106,0.133079,0.541541,0.507093,0.133214,0.122147,0.357759,0.599888,0.882661,0.622218,0.44334,0.266697,0.396319,0.0317553,0.660451,0.501342,0.179878,0.612933,0.605467,0.702759,0.443972,0.146978,0.550363,0.0833043,0.265869,0.79972,0.730853,0.281612,0.767104,0.631057,0.0137901,0.915985,0.885711,0.531994,0.0813049,0.0921885,0.0488275,0.843362,0.87268,0.362761,0.886445,0.419848,0.176235,0.573395,0.980555,0.335706,0.0338329,0.00813878,0.602933,0.0991342,0.18175,0.00657445,0.174322,0.0905926,0.847352,0.241634,0.409024,0.937496,0.402031,0.178606,0.315368,0.596131,0.167934,0.829778,0.440508,0.0632536,0.376329,0.551878,0.851533,0.0312589,0.317028,0.258854,0.839401,0.621672,0.306122,0.172942,0.477026,0.0814,0.170641,0.535535,0.76135,0.857571,0.874826,0.258465,0.942612,0.0674883,0.527652,0.702015,0.919871,0.901036,0.471341,0.187814,0.22345,0.858638,0.296089,0.0932811,0.820778,0.43403,0.603765,0.715576,0.693739,0.8689,0.729819,0.751906,0.895427,0.238385,0.573767,0.0835142,0.40309,0.852618,0.0961965,0.505328,0.861476,0.30452,0.697404,0.933575,0.883699,0.0619016,0.912563,0.40939,0.897759,0.997263,0.289984,0.94885,0.430906,0.123012,0.853431,0.211884,0.658519,0.0554135,0.16854,0.658592,0.458179,0.356812,0.156606,0.960599,0.0653449,0.792759,0.608609,0.218278,0.274674,0.812245,0.00733429,0.919201,0.370918,0.468486,0.659887,0.0678992,0.400195,0.857191,0.436256,0.608721,0.84161,0.357352,0.548094,0.175492,0.144811,0.268416,0.887775,0.86684,0.974039,0.943408,0.880975,0.674994,0.413715,0.998394,0.0189658,0.730524,0.793059,0.561885,0.209112,0.54154,0.111292,0.966482,0.856586,0.364265,0.176039,0.159245,0.566105,0.648321,0.271054,0.965182,0.750766,0.65222,0.928878,0.294925,0.218188,0.591164,0.0278788,0.532232,0.0514319,0.210889,0.011005,0.941108,0.0301835,0.588555,0.100527,0.0596103,0.154042,0.616819,0.984108,0.864467,0.5244,0.478953,0.511375,0.165236,0.663869,0.190733,0.323953,0.127204,0.691979,0.0764805,0.208541,0.900788,0.373824,0.605719,0.905636,0.80688,0.368641,0.757027,0.755277,0.825808,0.979056,0.145904,0.287905,0.405245,0.912161,0.302918,0.721276,0.589244,0.350998,0.577855,0.429898,0.953542,0.406195,0.28347,0.560777,0.978305,0.213542,0.653694,0.603702,0.35404,0.452374,0.438613,0.485069,0.748128,0.345346,0.367954,0.519011,0.19079,0.588589,0.707456,0.889241,0.32765,0.740683,0.202639,0.599206,0.338008,0.115908,0.818541,0.00427562,0.19026,0.258277,0.767964,0.732027,0.751088,0.867157,0.1991,0.679993,0.990345,0.177757,0.376648,0.808794,0.429572,0.0303042,0.0232933,0.281347,0.87876,0.909726,0.494629,0.0524931,0.84553,0.695494,0.994249,0.900878,0.693644,0.47966,0.325132,0.857403,0.828533,0.274509,0.392732,0.11139,0.206177,0.408665,0.602377,0.701943,0.0387152,0.504796,0.920941,0.266184,0.71775,0.617877,0.148776,0.495601,0.326502,0.920583,0.643191,0.0380944,0.287302,0.66236,0.294778,0.127442,0.857751,0.390439,0.800204,0.310087,0.521191,0.861503,0.898978,0.534978,0.0312858,0.193122,0.435505,0.211452,0.516963,0.846428,0.593739,0.358449,0.348764,0.375625,0.832496,0.643903,0.502799,0.879502,0.428483,0.313586,0.396668,0.663263,0.124845,0.193053,0.612725,0.241273,0.286512,0.377637,0.326583,0.395061,0.230024,0.927933,0.666071,0.605508,0.440196,0.878721,0.667777,0.571592,0.623928,0.236685,0.502651,0.718597,0.103107,0.54822,0.483352,0.555762,0.160256,0.718568,0.446032,0.617964,0.763634,0.538137,0.332325,0.55888,0.732807,0.552437,0.648652,0.218022,0.24548,0.984818,0.423766,0.66169,0.150562,0.576,0.664546,0.940943,0.936219,0.872243,0.988763,0.292121,0.226129,0.627573,0.594828,0.966941,0.462975,0.656744,0.770827,0.273041,0.516662,0.233701,0.856945,0.862766,0.924361,0.473471,0.696332,0.295069,0.873839,0.491763,0.277085,0.0460678,0.617047,0.413005,0.0847175,0.628417,0.638477,0.466287,0.84813,0.975766,0.362669,0.114655,0.479845,0.848758,0.195874,0.943753,0.0683978,0.38734,0.248528,0.447519,0.493521,0.730203,0.771732,0.0669754,0.443186,0.94284,0.582748,0.96118,0.504076,0.0546814,0.299963,0.655502,0.441861,0.574911,0.725321,0.489928,0.998665,0.217815,0.432636,0.185076,0.716347,0.373966,0.92442,0.105731,0.293163,0.753271,0.364064,0.270531,0.164919,0.0950024,0.0221332,0.0731034,0.909677,0.874907,0.702496,0.30693,0.233048,0.988284,0.557847,0.656483,0.279079,0.312558,0.910023,0.748082,0.328558,0.853465,0.220536,0.18968,0.560687,0.835371,0.2647,0.236515,0.0996971,0.134645,0.607528,0.945669,0.653217,0.825044,0.000375032,0.27894,0.0806629,0.605451,0.0273412,0.201361,0.857038,0.299124,0.145987,0.302926,0.648979,0.6049,0.173058,0.0637772,0.494836,0.476714,0.981329,0.680462,0.542603,0.92455,0.992252,0.376517,0.557691,0.461433,0.463331,0.0572621,0.192926,0.724301,0.0581338,0.269084,0.134951,0.635188,0.211835,0.180999,0.0332791,0.779322,0.974984,0.0670897,0.572426,0.802863,0.435275,0.0344674,0.537867,0.619266,0.868725,0.684214,0.851825,0.929372,0.398637,0.326822,0.133563,0.038738,0.700922,0.834873,0.663517,0.417137,0.47155,0.722022,0.861226,0.585812,0.419956,0.411379,0.00624645,0.751319,0.254913,0.337644,0.228444,0.794058,0.672586,0.652982,0.803342,0.192248,0.630933,0.0732731,0.39654,0.558087,0.743443,0.787374,0.995,0.405727,0.696578,0.555315,0.0367113,0.130094,0.728176,0.212946,0.833471,0.618406,0.531486,0.244059,0.0323659,0.484116,0.578872,0.540244,0.623827,0.221659,0.339496,0.239721,0.392002,0.843953,0.322492,0.478706,0.177314,0.754894,0.554262,0.756626,0.368092,0.0781733,0.0469863,0.546342,0.463511,0.192755,0.496167,0.742175,0.459098,0.555359,0.366672,0.846786,0.749354,0.968076,0.120721,0.54896,0.629605,0.931611,0.053129,0.0749817,0.0406994,0.417712,0.127515,0.462903,0.32834,0.677716,0.37469,0.827439,0.0544136,0.677829,0.0314351,0.841449,0.168486,0.677137,0.94863,0.559312,0.297525,0.762367,0.389611,0.258211,0.260836,0.00438696,0.911316,0.14422,0.569673,0.384517,0.67591,0.200358,0.804679,0.72825,0.99791,0.898782,0.437617,0.0886357,0.67691,0.875907,0.233586,0.447813,0.306935,0.760963,0.968691,0.493754,0.990287,0.176933,0.85071,0.315483,0.512521,0.219902,0.669531,0.812827,0.722181,0.641064,0.769175,0.936604,0.305472,0.159705,0.805984,0.381226,0.156367,0.533876,0.628103,0.654949,0.761475,0.282567,0.767812,0.356757,0.0852541,0.71798,0.566582,0.697566,0.11782,0.547239,0.934805,0.568567,0.891032,0.919089,0.739637,0.520079,0.679304,0.078588,0.0514176,0.979753,0.73864,0.826635,0.62758,0.649171,0.798226,0.256777,0.839408,0.59151,0.346601,0.933094,0.936341,0.576894,0.227619,0.504198,0.64749,0.286585,0.0712883,0.818283,0.615874,0.291322,0.124632,0.484071,0.668379,0.817706,0.15314,0.294606,0.40762,0.193204,0.920334,0.364762,0.778596,0.430537,0.399756,0.171793,0.590534,0.542122,0.0438446,0.0678394,0.251891,0.399738,0.960513,0.0310854,0.568824,0.736301,0.782433,0.576303,0.726537,0.880343,0.669231,0.447923,0.912766,0.0554917,0.410741,0.616001,0.669137,0.234553,0.909202,0.520164,0.703075,0.507675,0.770812,0.765504,0.720191,0.398909,0.740272,0.399683,0.366992,0.116279,0.549148,0.262713,0.123292,0.385233,0.576928,0.268121,0.334575,0.921649,0.428321,0.933257,0.78146,|0.520017,0.321773,0.0377231,0.796935,0.523917,0.0708085,0.138985,0.279134,0.338005,0.827064,0.0249529,0.19063,0.953589,0.0889892,0.030884,0.75361,0.927309,0.99146,0.384795,0.5066,0.0539251,0.313046,0.364849,0.383582,0.950372,0.753301,0.86074,0.980836,0.66143,0.284145,0.0182086,0.505408,0.419674,0.415416,0.484529,0.4302,0.756559,0.623988,0.809331,0.775623,0.0749178,0.347595,0.655621,0.645339,0.305597,0.641773,0.894626,0.198096,0.195754,0.44074,0.640419,0.743997,0.312054,0.884005,0.627135,0.733791,0.324456,0.0289486,0.319611,0.10237,0.292083,0.926542,0.247035,0.636709,0.64551,0.812822,0.617876,0.690686,0.814694,0.14833,0.770652,0.00657487,0.628153,0.826911,0.102994,0.231513,0.546124,0.664866,0.604258,0.993219,0.527682,0.213913,0.190702,0.0748516,0.290218,0.0192609,0.753814,0.100876,0.973066,0.536433,0.152634,0.369607,0.623387,0.723675,0.125283,0.496963,0.366397,0.591844,0.255194,0.350669,0.0651287,0.322128,0.774767,0.667627,0.244272,0.639854,0.987379,0.479791,0.0116973,0.00731385,0.418391,0.10944,0.715717,0.486569,0.459005,0.0861924,0.07823,0.449666,0.745627,0.620723,0.86344,0.152024,0.251119,0.345545,0.229866,0.96785,0.273695,0.532456,0.218389,0.673698,0.00662678,0.37795,0.128219,0.735598,0.913778,0.160093,0.0246547,0.992812,0.960326,0.118382,0.1116,0.579051,0.0307329,0.741524,0.0870823,0.137886,0.178925,0.604813,0.21091,0.0206643,0.560276,0.913373,0.189712,0.356489,0.769461,0.509431,0.735277,0.719817,0.884359,0.998693,0.269006,0.891539,0.477295,0.113167,0.738593,0.480424,0.0245964,0.456044,0.879194,0.0515475,0.679424,0.845239,0.806611,0.494894,0.525226,0.482223,0.595073,0.561446,0.0396892,0.189821,0.150467,0.305335,0.622654,0.438001,0.568063,0.449168,0.553232,0.752403,0.0153698,0.792384,0.748039,0.202931,0.712033,0.206085,0.182215,0.102098,0.321777,0.343545,0.934406,0.279734,0.895415,0.16856,0.0988154,0.00359821,0.821666,0.880457,0.444093,0.838534,0.332347,0.543438,0.430658,0.977354,0.511241,0.714027,0.593517,0.99922,0.62662,0.444165,0.74743,0.230526,0.702107,0.569204,0.476175,0.22431,0.363157,0.0777177,0.631818,0.0635757,0.346412,0.859169,0.498096,0.547432,0.270009,0.958954,0.690146,0.350565,0.532807,0.801176,0.77839,0.449528,0.0228214,0.707119,0.559913,0.214742,0.913925,0.947847,0.0821909,0.893343,0.980477,0.906072,0.307012,0.123122,0.876395,0.618819,0.630352,0.972101,0.971578,0.700679,0.238369,0.78675,0.547846,0.0957059,0.810277,0.358337,0.554946,0.793233,0.694919,0.972953,0.374379,0.676052,0.000867486,0.124857,0.660257,0.814367,0.556935,0.681803,0.0396172,0.975526,0.950251,0.792064,0.358778,0.00917041,0.699153,0.00299132,0.79511,0.165102,0.460637,0.771932,0.706774,0.582419,0.117736,0.65817,0.222056,0.46976,0.470996,0.802458,0.992939,0.909346,0.9891,0.0596777,0.797531,0.200012,0.845998,0.126374,0.966472,0.716419,0.966405,0.712699,0.316286,0.2769,0.121136,0.473792,0.454232,0.747103,0.427601,0.700028,0.0311069,0.0845644,0.792697,0.855407,0.82624,0.859591,0.0540722,0.117902,0.373542,0.0975816,0.0807262,0.454742,0.321153,0.694166,0.984135,0.373472,0.434975,0.232699,0.77358,0.226636,0.798897,0.762546,0.622501,0.302941,0.611132,0.00958711,0.606637,0.905171,0.878625,0.941784,0.183689,0.897111,0.444287,0.424644,0.831849,0.739306,0.397538,0.0978276,0.995927,0.0804222,0.0606803,0.578214,0.79239,0.974981,0.998807,0.497502,0.287244,0.618357,0.180004,0.416914,0.961652,0.77654,0.826132,0.887266,0.866173,0.932722,0.0299724,0.078145,0.612881,0.448331,0.965069,0.427212,0.874092,0.841914,0.133196,0.158581,0.29215,0.397662,0.938521,0.300994,0.751525,0.792909,0.89458,0.905429,0.102797,0.487236,0.142191,0.943415,0.289682,0.384562,0.0773907,0.254068,0.935776,0.823791,0.247745,0.220613,0.594815,0.451762,0.18105,0.209502,0.857203,0.97493,0.979078,0.252126,0.565561,0.906278,0.887007,0.491425,0.365379,0.543898,0.787777,0.254972,0.567519,0.420019,0.54121,0.300446,0.438149,0.631647,0.736053,0.341342,0.800767,0.37099,0.0765873,0.587325,0.312192,0.271657,0.594028,0.700579,0.0224991,0.877452,0.18998,0.746306,0.330408,0.380208,0.486666,0.38337,0.941363,0.674073,0.411741,0.638866,0.624631,0.00493473,0.236415,0.180484,0.775299,0.742723,0.928091,0.763719,0.31214,0.312979,0.303499,0.544582,0.533204,0.951505,0.827595,0.740397,0.756776,0.921368,0.200168,0.494942,0.267202,0.0706654,0.163971,0.253335,0.146705,0.537029,0.449032,0.748878,0.0810357,0.0186863,0.570387,0.212278,0.163706,0.619248,0.869593,0.252679,0.545412,0.953002,0.0289537,0.600371,0.244382,0.803643,0.686673,0.711244,0.445203,0.344635,0.443471,0.758291,0.88535,0.239537,0.0627136,0.211067,0.907829,0.273493,0.24577,0.783913,0.992839,0.653308,0.435325,0.0251153,0.236715,0.1225,0.184311,0.182636,0.139204,0.473919,0.489752,0.104856,0.0537723,0.873006,0.593483,0.85644,0.346838,0.405464,0.257928,0.557684,0.716503,0.0476125,0.247504,0.788551,0.728363,0.362529,0.30273,0.370587,0.852781,0.22425,0.595466,0.91008,0.168561,0.419399,0.329524,0.511346,0.365198,0.618448,0.723505,0.992496,0.368768,0.40362,0.336733,0.269865,0.692838,0.388362,0.470016,0.222233,0.435072,0.582936,0.306248,0.644665,0.380559,0.370561,0.358101,0.903438,0.410407,0.916481,0.274366,0.681351,0.458436,0.0882525,0.486161,0.796517,0.308376,0.876385,0.785734,0.975158,0.809444,0.327695,0.526555,0.271752,0.15762,0.656205,0.632889,0.756182,0.13192,0.308822,0.801973,0.926316,0.225715,0.0414286,0.0424564,0.441343,0.0465072,0.739074,0.976383,0.70153,0.787477,0.186168,0.335742,0.523274,0.602331,0.140265,0.723019,0.544337,0.240676,0.129926,0.895523,0.373274,0.673016,0.484062,0.183308,0.385055,0.250869,0.123202,0.203309,0.879036,0.390002,0.593266,0.660799,0.593427,0.665827,0.386888,0.208171,0.819528,0.645282,0.634397,0.0759395,0.276965,0.936063,0.408717,0.28607,0.113766,0.913091,0.428212,0.396519,0.608069,0.729829,0.688167,0.240834,0.422579,0.529448,0.606128,0.0538064,0.316844,0.206541,0.411073,0.893675,0.129926,0.195573,0.635284,0.658883,0.453692,0.834534,0.492122,0.120936,0.052207,0.818872,0.959194,0.624635,0.121218,0.107749,0.523286,0.120262,0.163705,0.420387,0.0599807,0.267014,0.172269,0.0222692,0.663214,0.908082,0.850679,0.723389,0.266676,0.0695531,0.584248,0.780183,0.566892,0.913681,0.673507,0.473614,0.347043,0.311999,0.0863524,0.794647,0.468497,0.81814,0.998097,0.29079,0.208694,0.329711,0.691319,0.342213,0.0130704,0.159869,0.226799,0.529769,0.381744,0.198743,0.477568,0.610187,0.534203,0.0215748,0.709751,0.181222,0.333044,0.922358,0.547757,0.364325,0.368267,0.603804,0.633661,0.155169,0.0642595,0.253806,0.211199,0.163049,0.640556,0.830971,0.894839,0.914219,0.686256,0.724105,0.592652,0.924704,0.285946,0.789761,0.363548,0.43962,0.342649,0.340877,0.603536,0.793197,0.46833,0.815043,0.581035,0.36698,0.352658,0.934142,0.293147,0.915422,0.722608,0.412895,0.0852528,0.349741,0.725377,0.63895,0.765375,0.122825,0.764013,0.423903,0.395976,0.160245,0.188752,0.178829,0.447154,0.293104,0.29786,0.0690773,0.479985,0.344703,0.130677,0.0481138,0.375356,0.322936,0.0928017,0.330856,0.730729,0.449166,0.690616,0.0494247,0.295493,0.166596,0.929428,0.609207,0.145729,0.907645,0.916881,0.896987,0.811573,0.589189,0.01035,0.0732028,0.282551,0.645988,0.899062,0.862848,0.99504,0.165444,0.629036,0.106858,0.465029,0.612901,0.99722,0.693966,0.717692,0.0613531,0.40084,0.557444,0.0996513,0.0475282,0.734289,0.874156,0.937643,0.756335,0.290348,0.398138,0.0808963,0.729626,0.218533,0.271644,0.135502,0.957422,0.444031,0.192408,0.575908,0.838251,0.478385,0.667849,0.876678,0.574784,0.982455,0.947173,0.719171,0.206052,0.987048,0.84893,0.336754,0.453335,0.165115,0.258546,0.763996,0.230115,0.886146,0.652929,0.553486,0.643646,0.262883,0.0534154,0.00230217,0.848207,0.621363,0.739874,0.169676,0.455237,0.6025,0.52654,0.881848,0.554528,0.168359,0.0217866,0.0208634,0.0272433,0.409158,0.565286,0.885747,0.231093,0.0495437,0.988009,0.77492,0.911427,0.59673,0.850331,0.792407,0.647346,0.957445,0.223873,0.500253,0.918503,0.75176,0.932723,0.152579,0.451369,0.543131,0.727858,0.401405,0.0787662,0.557824,0.960315,0.781256,0.661342,0.820869,0.116434,0.313258,0.732705,0.198351,0.024038,0.99096,0.602238,0.797566,0.593396,0.465152,0.127182,0.870001,0.759989,0.216162,0.493924,0.117438,0.87439,0.457172,0.665841,0.820445,0.154419,0.256207,0.00230944,0.322479,0.653607,0.333242,0.916137,0.502407,0.927869,0.21874,0.56155,0.838058,0.583058,0.405752,0.82135,0.0142032,0.782276,0.491365,0.0398812,0.800361,0.448031,0.597294,0.26235,0.792252,0.843811,0.64281,0.636006,0.457103,0.866842,0.404575,0.913304,0.494832,0.764579,0.102921,0.877035,0.841943,0.0259045,0.336457,0.533316,0.429753,0.966747,0.00188363,0.372953,0.218069,0.705737,0.128893,0.122873,0.0833372,0.397405,0.556976,0.539808,0.545998,0.510533,0.259582,0.495398,0.604025,0.555071,0.275075,0.721246,0.147541,0.277275,0.869077,0.593298,0.62455,0.772093,0.0466602,0.817486,0.469229,0.719536,0.206186,0.586834,0.540715,0.256432,0.164801,0.432799,0.0750401,0.799915,0.208294,0.339631,0.847099,0.454151,0.310442,0.430326,0.504566,0.574471,0.326708,0.928924,0.960909,0.924893,0.94254,0.457947,0.547494,0.661451,0.917759,0.28771,0.439457,0.669708,0.123477,0.303425,0.724254,0.433705,0.265087,0.777696,0.463799,|0.175584,0.21777,0.885647,0.860407,0.262685,0.0901563,0.377233,0.30421,0.622764,0.743146,0.460167,0.30893,0.521226,0.519837,0.0101817,0.551965,0.315844,0.287476,0.814828,0.899703,0.614357,0.955992,0.749923,0.208043,0.702286,0.42,0.513045,0.326914,0.443969,0.864497,0.984998,0.457737,0.101454,0.499483,0.229807,0.0017193,0.131887,0.560343,0.0566217,0.00942218,0.578084,0.529523,0.061941,0.569159,0.462387,0.17836,0.71799,0.67779,0.685208,0.918187,0.0630338,0.500797,0.74373,0.704365,0.955959,0.640911,0.0157181,0.419913,0.825086,0.670991,0.828302,0.858932,0.49366,0.640375,0.660024,0.928571,0.380975,0.504552,0.310101,0.792664,0.843629,0.816762,0.331925,0.88193,0.0370877,0.824627,0.930406,0.403814,0.910583,0.605539,0.175387,0.673575,0.870237,0.428347,0.103354,0.67412,0.440293,0.0718615,0.936497,0.409207,0.494362,0.61735,0.214634,0.879809,0.343201,0.727384,0.355962,0.823818,0.606347,0.521892,0.251054,0.138282,0.584907,0.215741,0.6591,0.222291,0.587088,0.360063,0.34112,0.393117,0.754484,0.390093,0.454897,0.808614,0.980048,0.928505,0.498854,0.230041,0.536726,0.297182,0.50064,0.0435933,0.413216,0.16127,0.71369,0.740698,0.415992,0.676661,0.699222,0.2171,0.454118,0.47924,0.146153,0.273965,0.382224,0.128081,0.818807,0.165045,0.197733,0.363111,0.817848,0.845906,0.237771,0.880444,0.488666,0.88446,0.0892603,0.792322,0.330152,0.0284087,0.0960608,0.54025,0.570545,0.442751,0.794309,0.300723,0.328927,0.684219,0.44338,0.509753,0.544438,0.592035,0.00903314,0.421393,0.66169,0.769104,0.30504,0.346468,0.820688,0.0573021,0.698383,0.972087,0.0647423,0.408126,0.590464,0.778968,0.068707,0.427548,0.429019,0.587648,0.509555,0.574852,0.193731,0.966291,0.715486,0.981105,0.250505,0.613757,0.272443,0.304533,0.0809599,0.596919,0.84128,0.071017,0.193475,0.0577492,0.411872,0.863743,0.936612,0.639764,0.439843,0.875914,0.955028,0.867404,0.419016,0.831299,0.906143,0.973467,0.209251,0.204256,0.806458,0.145765,0.0482989,0.042133,0.408657,0.876673,0.888002,0.767106,0.895516,0.818865,0.81292,0.070708,0.996513,0.120741,0.13862,0.44409,0.0874929,0.785257,0.063458,0.725757,0.356841,0.679836,0.17262,0.0582448,0.493591,0.941736,0.92135,0.426092,0.649801,0.860449,0.897572,0.875392,0.729563,0.570025,0.20267,0.21052,0.202151,0.293303,0.973563,0.0178798,0.638195,0.940278,0.698358,0.92385,0.608776,0.595915,0.112234,0.74597,0.888342,0.713208,0.830787,0.0997773,0.597599,0.534874,0.86509,0.353785,0.559149,0.724808,0.935768,0.344704,0.261838,0.0828913,0.547558,0.363605,0.989289,0.633023,0.659085,0.776208,0.256993,0.419421,0.0110183,0.66088,0.159959,0.311805,0.182712,0.805786,0.503627,0.0770809,0.276839,0.306267,0.816996,0.340851,0.759878,0.372197,0.208115,0.896487,0.0393052,0.821068,0.742837,0.114614,0.0199461,0.669858,0.0211071,0.338204,0.466483,0.421843,0.536016,0.430534,0.550154,0.927271,0.50129,0.492054,0.171865,0.730266,0.12174,0.615232,0.417238,0.4366,0.0516702,0.354956,0.0973464,0.827753,0.0450726,0.749708,0.511798,0.528302,0.802549,0.744712,0.00743204,0.920614,0.668277,0.248364,0.485765,0.00685531,0.469577,0.396847,0.0817055,0.533029,0.956716,0.616281,0.239561,0.434289,0.411173,0.952859,0.758546,0.831993,0.855252,0.772646,0.753071,0.315474,0.559194,0.71231,0.0176805,0.832061,0.930779,0.729991,0.59534,0.220425,0.116824,0.776303,0.732015,0.962313,0.543986,0.0670818,0.797264,0.246599,0.555614,0.753903,0.532028,0.243223,0.110343,0.83118,0.321055,0.502224,0.931519,0.323732,0.0625591,0.155684,0.182502,0.314886,0.124027,0.54364,0.102415,0.653594,0.0284318,0.434452,0.672521,0.36334,0.861065,0.357699,0.946258,0.171097,0.272413,0.897751,0.624755,0.19087,0.652841,0.431071,0.655667,0.794722,0.65486,0.0112564,0.723126,0.176053,0.8274,0.720114,0.477585,0.283657,0.847447,0.954619,0.799194,0.693041,0.853039,0.437697,0.315087,0.286333,0.803406,0.605231,0.013469,0.474664,0.272518,0.485222,0.482992,0.0701489,0.0728661,0.123255,0.950646,0.704769,0.103552,0.900013,0.461714,0.35206,0.420697,0.296252,0.824483,0.951914,0.0177731,0.553212,0.638583,0.361082,0.434911,0.65609,0.667197,0.12918,0.278177,0.465992,0.437422,0.484232,0.489153,0.905906,0.466397,0.410837,0.924431,0.603328,0.357596,0.493164,0.455251,0.26728,0.705889,0.22563,0.331711,0.212461,0.297909,0.904869,0.645592,0.32784,0.599003,0.839207,0.00365794,0.0512662,0.366958,0.0876971,0.114071,0.1433,0.245324,0.444198,0.836225,0.443706,0.862539,0.928964,0.0395465,0.343102,0.494132,0.591716,0.648959,0.181782,0.399063,0.300182,0.671479,0.248698,0.434701,0.338391,0.0633718,0.236835,0.208756,0.388695,0.06197,0.231849,0.606948,0.492436,0.642823,0.594108,0.906335,0.373281,0.641706,0.739018,0.50261,0.700049,0.766791,0.747501,0.790517,0.343071,0.741128,0.172369,0.17147,0.788489,0.965451,0.989105,0.895146,0.914707,0.948253,0.663792,0.418459,0.427315,0.512364,0.536355,0.591719,0.227415,0.128814,0.909284,0.810664,0.929412,0.398328,0.879582,0.435749,0.724158,0.838442,0.390213,0.432643,0.114597,0.73976,0.257058,0.950734,0.363663,0.932502,0.545172,0.217916,0.915926,0.772032,0.307743,0.797845,0.615205,0.0900654,0.381737,0.43123,0.766643,0.745148,0.234348,0.0534297,0.459621,0.487701,0.14502,0.635694,0.452417,0.0741783,0.941305,0.432085,0.0170496,0.566569,0.584214,0.843807,0.385602,0.199716,0.618764,0.0108334,0.812885,0.993759,0.791153,0.930529,0.171975,0.588989,0.206263,0.861883,0.585645,0.528196,0.107362,0.686101,0.244588,0.0971074,0.76755,0.965545,0.808764,0.158926,0.935275,0.37347,0.646493,0.533642,0.358103,0.845234,0.32103,0.305093,0.98552,0.113081,0.226356,0.250479,0.789716,0.678631,0.317942,0.455905,0.23,0.366361,0.812455,0.106979,0.00628877,0.690632,0.345847,0.957232,0.425831,0.219419,0.540352,0.147401,0.657514,0.372966,0.501707,0.561122,0.142162,0.404774,0.868739,0.22086,0.119374,0.367301,0.907139,0.729094,0.619978,0.237792,0.555485,0.799548,0.96318,0.0811269,0.570775,0.0557727,0.935035,0.69483,0.496489,0.440618,0.360256,0.49638,0.565392,0.666145,0.430742,0.352589,0.615757,0.229236,0.529169,0.718591,0.788176,0.654386,0.650767,0.995284,0.104154,0.931114,0.795836,0.58465,0.0502809,0.322464,0.297205,0.0853552,0.357814,0.881886,0.616321,0.165853,0.00767303,0.668982,0.189923,0.248829,0.417659,0.942828,0.9803,0.740935,0.542913,0.845943,0.0490423,0.034274,0.834736,0.779122,0.0690414,0.108986,0.0568705,0.167208,0.0794829,0.0407882,0.834395,0.978765,0.98284,0.537312,0.575388,0.341724,0.142028,0.19492,0.47803,0.194012,0.330289,0.463759,0.0175852,0.757528,0.28352,0.232883,0.193581,0.022904,0.291566,0.204995,0.313375,0.387052,0.182645,0.715581,0.359171,0.286856,0.35802,0.901998,0.87004,0.754107,0.616794,0.292136,0.238007,0.348333,0.834214,0.899959,0.673368,0.637713,0.912072,0.680998,0.945568,0.533053,0.857869,0.357225,0.444302,0.503714,0.965852,0.468881,0.0303146,0.693469,0.785447,0.338275,0.117793,0.474981,0.19923,0.211791,0.861116,0.0460476,0.581436,0.658948,0.259613,0.826593,0.891136,0.866569,0.131683,0.524305,0.372087,0.98521,0.365084,0.295745,0.783644,0.802598,0.605527,0.873463,0.988995,0.775097,0.485333,0.64088,0.407799,0.860956,0.605745,0.772699,0.294302,0.0161105,0.402449,0.736826,0.354772,0.334407,0.357107,0.226311,0.532453,0.982982,0.252516,0.68129,0.923782,0.542253,0.614716,0.513586,0.6023,0.0711889,0.336228,0.983964,0.298742,0.648935,0.707601,0.858149,0.110575,0.660223,0.559724,0.214293,0.0552929,0.483748,0.943339,0.534928,0.360217,0.804321,0.786355,0.457128,0.591911,0.5415,0.981846,0.751939,0.169424,0.625579,0.92016,0.586094,0.83588,0.262777,0.909106,0.368756,0.866112,0.727763,0.314011,0.646735,0.289318,0.330269,0.633657,0.605874,0.589272,0.283388,0.941909,0.069052,0.830782,0.951372,0.230644,0.243071,0.944306,0.588597,0.586886,0.496925,0.985942,0.166841,0.40558,0.391436,0.269414,0.538364,0.606666,0.72419,0.515815,0.558415,0.075939,0.810044,0.806471,0.836988,0.145368,0.00736088,0.280133,0.0395846,0.702083,0.168613,0.973577,0.530821,0.727899,0.378177,0.366235,0.475403,0.746334,0.919407,0.7585,0.905628,0.189303,0.0104616,0.110201,0.546053,0.834112,0.356288,0.193825,0.978169,0.456521,0.655186,0.84204,0.455038,0.504571,0.724303,0.266296,0.556824,0.357763,0.434444,0.646392,0.704442,0.729912,0.437594,0.568374,0.707379,0.190691,0.638438,0.140734,0.71176,0.340661,0.48664,0.435686,0.242452,0.296126,0.679838,0.0305887,0.765495,0.494518,0.709064,0.113226,0.0665275,0.886423,0.489752,0.854537,0.0621235,0.605468,0.839331,0.310374,0.410723,0.443185,0.417651,0.744472,0.433735,0.369054,0.201671,0.438151,0.96523,0.164325,0.439486,0.39493,0.996156,0.803081,0.541914,0.895757,0.0531846,0.821549,0.770875,0.720367,0.79648,0.551543,0.148769,0.0160192,0.359055,0.563101,0.367798,0.0884739,0.573526,0.634109,0.564576,0.466432,0.68684,0.382896,0.232749,0.344902,0.256512,0.198007,0.896108,0.589639,0.755336,0.404976,0.721566,0.00459689,0.469613,0.837952,0.616789,0.0229654,0.444827,0.0176713,0.0383751,0.133339,0.815998,0.9978,0.461038,0.661011,0.755835,0.620287,0.708719,0.681202,0.556384,0.346998,0.836358,0.952149,0.627627,0.781742,0.237095,0.038525,0.22705,0.00488919,0.95103,0.653503,0.635827,0.143943,0.660172,0.261679,0.74355,0.438093,0.315691,0.332933,0.157288,0.994806,|0.308362,0.630443,0.962851,0.424917,0.945634,0.51577,0.568338,0.850715,0.0946352,0.846589,0.51467,0.588517,0.833347,0.605392,0.332552,0.18794,0.34683,0.283443,0.107852,0.22525,0.784805,0.859289,0.166015,0.859244,0.714378,0.51817,0.0795739,0.536245,0.170711,0.723153,0.450677,0.643148,0.0135085,0.535664,0.582294,0.444496,0.288093,0.763346,0.90457,0.465286,0.225822,0.365666,0.854788,0.0166471,0.743192,0.539988,0.00784832,0.178142,0.369233,0.897229,0.44064,0.0282718,0.011991,0.279641,0.672576,0.964123,0.592069,0.950828,0.210042,0.779974,0.208318,0.107572,0.0570399,0.854689,0.88742,0.893417,0.294142,0.528794,0.752763,0.169576,0.41871,0.667044,0.727613,0.926489,0.450073,0.445762,0.294633,0.173204,0.470191,0.146521,0.00829339,0.000660121,0.0883399,0.6416,0.366082,0.990507,0.471484,0.961024,0.773807,0.572446,0.751124,0.727327,0.43662,0.22994,0.000893295,0.0779271,0.969898,0.400492,0.784789,0.179465,0.837969,0.559111,0.533996,0.083729,0.896462,0.0751471,0.652449,0.0274446,0.385031,0.53609,0.618657,0.534741,0.141674,0.154062,0.167738,0.680147,0.0876867,0.304518,0.353789,0.496917,0.766729,0.578481,0.757072,0.0399897,0.883651,0.278443,0.690982,0.131516,0.695386,0.0488921,0.0256741,0.790067,0.0217587,0.34944,0.195526,0.765146,0.427257,0.37518,0.406941,0.428069,0.42379,0.031828,0.090324,0.0620055,0.202438,0.0663962,0.189751,0.580506,0.94864,0.518492,0.375621,0.774471,0.173018,0.557577,0.788267,0.395551,0.822824,0.00205684,0.798569,0.408442,0.168782,0.649312,0.913712,0.156686,0.637408,0.758296,0.610247,0.662077,0.664075,0.4491,0.940496,0.468526,0.50217,0.348149,0.012904,0.649472,0.700346,0.102705,0.0302899,0.435343,0.332334,0.551684,0.0364766,0.861145,0.117991,0.874088,0.365212,0.643316,0.696068,0.571096,0.121,0.741361,0.242397,0.535682,0.494471,0.553976,0.646721,0.598735,0.445439,0.456922,0.813462,0.433316,0.775525,0.379707,0.170549,0.457978,0.986433,0.396091,0.348224,0.153642,0.281136,0.00453323,0.411976,0.593704,0.202143,0.439955,0.0160327,0.833817,0.086308,0.643604,0.530128,0.443326,0.0687469,0.734039,0.482342,0.472818,0.839707,0.694279,0.887732,0.245913,0.408993,0.84458,0.075399,0.166247,0.268048,0.29251,0.039802,0.287914,0.338768,0.701161,0.902826,0.102764,0.0836331,0.411121,0.957224,0.762074,0.525101,0.649402,0.407718,0.113058,0.313728,0.326779,0.152585,0.238357,0.74905,0.120733,0.885681,0.0212447,0.647214,0.0968315,0.260423,0.50544,0.481831,0.662441,0.667592,0.837458,0.0759111,0.950366,0.984396,0.0732877,0.909486,0.735127,0.00396603,0.779487,0.0579153,0.868907,0.0805352,0.386972,0.864927,0.219666,0.253753,0.981414,0.248335,0.413421,0.751652,0.36597,0.386126,0.754421,0.906069,0.890314,0.492102,0.996206,0.250833,0.135662,0.284636,0.121189,0.709173,0.0191327,0.520207,0.110871,0.629888,0.700502,0.394319,0.317915,0.908497,0.812936,0.992558,0.826998,0.963124,0.139358,0.497624,0.178804,0.503042,0.230512,0.157786,0.904582,0.739667,0.934896,0.820049,0.921128,0.850202,0.357055,0.77509,0.696268,0.198242,0.569842,0.7777,0.0267246,0.0561887,0.303562,0.416601,0.0818788,0.13313,0.833041,0.650415,0.0965745,0.689208,0.880673,0.0616678,0.431543,0.948256,0.241773,0.745703,0.0848933,0.233792,0.912265,0.155836,0.886237,0.805039,0.369082,0.659884,0.391753,0.827264,0.294947,0.980193,0.801604,0.301642,0.683044,0.864561,0.738481,0.158151,0.0500599,0.111137,0.980778,0.291049,0.889619,0.0927318,0.315688,0.384209,0.4587,0.657507,0.999278,0.224456,0.277275,0.262086,0.285697,0.991435,0.137671,0.34355,0.513957,0.0604758,0.632063,0.00438142,0.824768,0.812739,0.0150428,0.35723,0.101429,0.973925,0.882668,0.0898884,0.709917,0.903913,0.405042,0.170839,0.40927,0.68,0.376655,0.124232,0.510618,0.291904,0.878505,0.566561,0.102666,0.936849,0.325722,0.331017,0.789063,0.543924,0.477992,0.373887,0.0681137,0.762305,0.82589,0.987282,0.0397102,0.83058,0.216757,0.396533,0.881827,0.14995,0.164825,0.855152,0.704473,0.202897,0.85051,0.20102,0.395482,0.645511,0.672647,0.142241,0.157916,0.617701,0.974431,0.191769,0.125352,0.732525,0.264358,0.241794,0.450028,0.771204,0.11517,0.529419,0.363881,0.661238,0.540256,0.140343,0.686103,0.351729,0.778393,0.0956841,0.541288,0.272967,0.231082,0.788271,0.962373,0.533549,0.918043,0.759522,0.39442,0.232876,0.791134,0.454955,0.729352,0.00759375,0.579504,0.10198,0.680256,0.626184,0.485049,0.0654815,0.766096,0.261125,0.685013,0.921762,0.221465,0.0512168,0.833861,0.412012,0.548722,0.869775,0.849172,0.479929,0.621901,0.342162,0.7243,0.605666,0.656684,0.456507,0.306585,0.602776,0.190236,0.0299773,0.215652,0.330993,0.915846,0.668782,0.862573,0.720411,0.034137,0.252722,0.496038,0.977177,0.132121,0.791619,0.52541,0.51094,0.718776,0.73197,0.726859,0.344221,0.604483,0.0140721,0.492901,0.696574,0.812783,0.950521,0.954199,0.18407,0.563529,0.852435,0.0105564,0.826923,0.687378,0.53089,0.233134,0.208019,0.0571593,0.133797,0.131641,0.470727,0.522231,0.850723,0.0435189,0.908305,0.0990714,0.825294,0.793555,0.485289,0.273644,0.230997,0.931228,0.755455,0.144815,0.153204,0.219347,0.077893,0.699574,0.53652,0.668595,0.266662,0.182982,0.475599,0.722724,0.431848,0.905124,0.787142,0.620938,0.932787,0.274867,0.869581,0.141909,0.492522,0.133619,0.662209,0.244368,0.938869,0.365401,0.122574,0.949288,0.736592,0.620173,0.314409,0.307874,0.135216,0.215957,0.593101,0.733207,0.611569,0.14835,0.175427,0.721767,0.803961,0.47802,0.707535,0.839686,0.298056,0.432805,0.375523,0.174507,0.00369328,0.492877,0.507695,0.507085,0.310854,0.0581799,0.587456,0.89554,0.55158,0.17778,0.165133,0.393918,0.809274,0.0523864,0.854241,0.07878,0.248315,0.136685,0.770582,0.21902,0.0575777,0.293775,0.654778,0.713139,0.571144,0.12495,0.273559,0.733174,0.518564,0.455615,0.150073,0.857787,0.350843,0.839933,0.373565,0.479593,0.311023,0.141346,0.515365,0.22328,0.34284,0.212554,0.594086,0.505498,0.0109485,0.756997,0.964818,0.581832,0.212448,0.948226,0.833936,0.0828498,0.208285,0.976363,0.0931455,0.0189657,0.866197,0.492832,0.156834,0.923847,0.568234,0.0441853,0.368337,0.151168,0.227615,0.753929,0.631255,0.819347,0.516833,0.572314,0.125401,0.0435002,0.141379,0.227409,0.47394,0.9501,0.46115,0.076416,0.817959,0.0966615,0.801821,0.710635,0.178631,0.848649,0.281429,0.398372,0.170291,0.91401,0.38042,0.813292,0.141023,0.312935,0.809027,0.0539914,0.596756,0.916078,0.192052,0.50068,0.773704,0.261234,0.847622,0.617272,0.199249,0.499242,0.678423,0.237048,0.593917,0.986051,0.295573,0.236052,0.715817,0.873629,0.892925,0.597309,0.605255,0.0826929,0.767425,0.345882,0.598253,0.652546,0.594509,0.0927013,0.613772,0.670616,0.463557,0.744832,0.858874,0.283014,0.41041,0.838683,0.678538,0.106021,0.499697,0.0502521,0.482004,0.817759,0.696573,0.944739,0.161202,0.404093,0.659164,0.487333,0.528844,0.621766,0.565863,0.714663,0.986985,0.147806,0.898589,0.265857,0.0708685,0.930866,0.544855,0.521776,0.432648,0.951102,0.707565,0.111874,0.760559,0.735473,0.0412465,0.788054,0.225314,0.152129,0.850685,0.888565,0.433513,0.668151,0.715169,0.428688,0.16963,0.827314,0.685335,0.0907989,0.778641,0.127134,0.195981,0.0496932,0.585493,0.383506,0.248728,0.462349,0.445642,0.555011,0.555078,0.858664,0.0900694,0.109592,0.252632,0.283625,0.748217,0.71732,0.157357,0.503427,0.848673,0.292696,0.0257993,0.898632,0.714098,0.577774,0.782754,0.0158386,0.935822,0.946697,0.572427,0.780098,0.295241,0.0174133,0.0867205,0.405846,0.535066,0.0764966,0.805568,0.815867,0.232893,0.574219,0.895456,0.816375,0.385928,0.953391,0.389733,0.646416,0.673851,0.977646,0.636414,0.286208,0.314886,0.170486,0.0233967,0.980778,0.903848,0.117305,0.651112,0.384365,0.700043,0.676891,0.367259,0.662877,0.562795,0.465957,0.762163,0.302795,0.822309,0.473788,0.910149,0.530478,0.635851,0.264521,0.51348,0.53837,0.669584,0.148268,0.0661998,0.0839431,0.881288,0.71287,0.752382,0.37017,0.195437,0.0628375,0.432917,0.800424,0.585118,0.157287,0.627739,0.0214037,0.916627,0.188384,0.585924,0.0541258,0.879298,0.500782,0.936145,0.327604,0.373356,0.32837,0.840923,0.787203,0.430848,0.33371,0.00585061,0.641534,0.386763,0.41762,0.492441,0.00860482,0.0872012,0.84529,0.848616,0.722407,0.881072,0.549767,0.312999,0.102297,0.853514,0.606724,0.894277,0.651092,0.693475,0.230856,0.260899,0.156885,0.357604,0.998639,0.887969,0.193639,0.428867,0.407261,0.543352,0.600113,0.476024,0.732387,0.54615,0.712054,0.764983,0.146842,0.758792,0.491415,0.25185,0.405445,0.198357,0.204653,0.781851,0.26485,0.872837,0.141059,0.579037,0.100905,0.0843992,0.794323,0.188935,0.454994,0.514738,0.351585,0.106388,0.444072,0.612771,0.246688,0.384795,0.15208,0.932915,0.282224,0.573216,0.848734,0.0481408,0.868571,0.540128,0.610063,0.620148,0.98445,0.327242,0.486469,0.681472,0.110124,0.392586,0.402824,0.175896,0.591641,0.00996649,0.500919,0.0985895,0.888976,0.182864,0.0688819,0.216688,0.240158,0.028066,0.339368,0.352573,0.604172,0.694877,0.508613,0.103806,0.107713,0.650271,0.84,0.767102,0.373301,0.976169,0.842247,0.221323,0.250127,0.619883,0.534974,0.362307,0.810486,0.873468,0.958151,0.431716,0.48953,0.593612,0.0196855,0.551017,0.808135,0.643742,0.353135,0.547081,0.580623,0.340785,0.669694,0.629237,0.00393254,0.613112,0.446212,0.449429,0.681005,0.130267,0.0558746,0.427565,0.409147,|0.0798415,0.250891,0.616987,0.665669,0.533295,0.359036,0.0480888,0.901669,0.812334,0.374689,0.562392,0.877303,0.663989,0.610795,0.39034,0.513424,0.04031,0.566937,0.602579,0.407564,0.931105,0.0927802,0.235684,0.418943,0.359329,0.88887,0.367031,0.964341,0.547311,0.303591,0.470061,0.972309,0.696399,0.739121,0.16456,0.114829,0.375988,0.41775,0.561936,0.819938,0.7335,0.923581,0.954374,0.715086,0.949053,0.92264,0.690747,0.884291,0.561183,0.685362,0.994347,0.991312,0.866527,0.71366,0.355742,0.474028,0.967619,0.0937904,0.124436,0.709433,0.478411,0.354452,0.679924,0.861552,0.146547,0.803272,0.835435,0.269823,0.722268,0.465868,0.444041,0.118931,0.524628,0.291256,0.663441,0.341839,0.0540889,0.888905,0.06641,0.447334,0.822616,0.665242,0.404207,0.407426,0.494459,0.291532,0.439813,0.222039,0.560693,0.938844,0.968636,0.895554,0.180074,0.0663093,0.16507,0.710655,0.283016,0.318266,0.15188,0.593548,0.39207,0.627095,0.720261,0.883105,0.471479,0.842702,0.808505,0.431445,0.965199,0.706189,0.23381,0.7576,0.0599325,0.899639,0.888493,0.795331,0.652518,0.210069,0.118398,0.63027,0.76089,0.398964,0.545394,0.656942,0.270865,0.502537,0.0110468,0.0278379,0.417915,0.559423,0.938349,0.0885057,0.758822,0.483751,0.283806,0.482614,0.267394,0.667265,0.349064,0.232844,0.0299626,0.156868,0.367899,0.405826,0.29246,0.446239,0.591976,0.285823,0.72029,0.922296,0.0264133,0.251427,0.674183,0.627734,0.919077,0.232238,0.400701,0.272953,0.757329,0.537104,0.788376,0.00912935,0.774433,0.76585,0.111583,0.836192,0.745498,0.835995,0.516154,0.202308,0.323205,0.496963,0.968041,0.712148,0.662959,0.279068,0.297344,0.842942,0.0536509,0.363126,0.611557,0.0832937,0.279208,0.759369,0.660361,0.656404,0.539923,0.735258,0.818502,0.445082,0.481857,0.16033,0.762573,0.354668,0.742531,0.844298,0.295785,0.670367,0.441783,0.442262,0.945658,0.062116,0.474748,0.131279,0.359245,0.572857,0.759993,0.551989,0.311659,0.655756,0.783147,0.590121,0.853888,0.0104188,0.388748,0.24263,0.774301,0.957291,0.0166327,0.666864,0.691553,0.425839,0.99365,0.972292,0.0554497,0.266995,0.072816,0.0298769,0.79467,0.823169,0.867475,0.974081,0.781318,0.910344,0.754368,0.465967,0.536835,0.270169,0.24314,0.0434061,0.745382,0.377106,0.271335,0.342611,0.0824562,0.955019,0.137362,0.0428687,0.786415,0.610551,0.956522,0.0980078,0.343207,0.0295729,0.865457,0.0487253,0.578578,0.16466,0.114673,0.387132,0.0500551,0.473656,0.700091,0.373616,0.0667484,0.932779,0.654466,0.0549501,0.772103,0.111743,0.308211,0.656865,0.802698,0.913747,0.193905,0.42211,0.591955,0.691844,0.729294,0.59731,0.64027,0.483991,0.183341,0.970623,0.791483,0.915377,0.890569,0.00600308,0.833116,0.687664,0.278119,0.860825,0.38164,0.463022,0.557967,0.720673,0.983446,0.104502,0.309628,0.2559,0.238083,0.290702,0.440298,0.296777,0.644828,0.486834,0.182334,0.888306,0.823479,0.66959,0.965711,0.664995,0.281129,0.801373,0.0551187,0.683131,0.877812,0.152216,0.746272,0.0270835,0.602814,0.287599,0.287607,0.447468,0.972053,0.776415,0.881473,0.691371,0.15692,0.985949,0.0759108,0.626864,0.907742,0.63032,0.492367,0.107663,0.644631,0.506158,0.502372,0.890257,0.319263,0.720619,0.978658,0.995054,0.52448,0.246144,0.665415,0.698157,0.0191138,0.895802,0.0868566,0.771453,0.228003,0.222825,0.21389,0.092604,0.848661,0.483442,0.571164,0.979146,0.224561,0.697663,0.0579717,0.846329,0.451215,0.920337,0.966261,0.23485,0.647435,0.954497,0.502469,0.655076,0.156733,0.343332,0.489047,0.643349,0.0116017,0.210212,0.715505,0.363611,0.759346,0.955162,0.853583,0.51082,0.931923,0.735314,0.0120191,0.642056,0.637182,0.292651,0.10302,0.201276,0.271746,0.753868,0.0523584,0.971686,0.660979,0.169066,0.467989,0.144918,0.939551,0.885155,0.876296,0.469991,0.9324,0.539042,0.662509,0.734738,0.152885,0.843562,0.166858,0.168776,0.0166921,0.630589,0.513104,0.66389,0.5678,0.642076,0.55276,0.528745,0.427772,0.776945,0.46061,0.0326418,0.799203,0.257064,0.256485,0.906724,0.358309,0.654713,0.953967,0.93058,0.457573,0.052058,0.0271946,0.657129,0.9732,0.117628,0.457017,0.92157,0.242563,0.723939,0.834732,0.423546,0.602243,0.981011,0.650999,0.225243,0.410023,0.933042,0.997063,0.488734,0.955684,0.427898,0.344317,0.148856,0.472407,0.324825,0.65507,0.0661122,0.529748,0.527392,0.515447,0.447761,0.39292,0.870575,0.568314,0.832501,0.373926,0.537943,0.909744,0.990957,0.409904,0.136706,0.545705,0.458753,0.882494,0.119361,0.238056,0.285598,0.32667,0.190018,0.381338,0.15551,0.334846,0.307243,0.751872,0.0412076,0.401392,0.162168,0.212272,0.610366,0.989945,0.685531,0.345263,0.485094,0.762833,0.688477,0.488091,0.637154,0.229456,0.434091,0.814673,0.849723,0.289335,0.929773,0.946673,0.281017,0.358259,0.310932,0.0103155,0.644208,0.617013,0.903822,0.0584465,0.01193,0.538258,0.80508,0.685558,0.977754,0.72125,0.489455,0.525397,0.359443,0.573181,0.495379,0.367539,0.258646,0.197919,0.100076,0.262966,0.378392,0.578873,0.706657,0.654945,0.239523,0.611781,0.672384,0.829366,0.106297,0.796084,0.322597,0.0893962,0.730937,0.436888,0.930489,0.455287,0.3639,0.187944,0.995473,0.611303,0.120742,0.367923,0.0598644,0.063567,0.017505,0.126946,0.531755,0.139002,0.786821,0.93755,0.835034,0.581007,0.257814,0.157684,0.353558,0.348825,0.788894,0.498073,0.775313,0.841214,0.854889,0.750275,0.286087,0.290161,0.812396,0.888327,0.279242,0.439989,0.170172,0.59258,0.357972,0.174015,0.143622,0.93325,0.865439,0.478551,0.812168,0.349802,0.609826,0.710816,0.31452,0.18038,0.120627,0.638573,0.275516,0.821246,0.721498,0.181632,0.454516,0.835212,0.713824,0.0635817,0.0101364,0.593987,0.281086,0.787514,0.617707,0.128868,0.762996,0.0118932,0.498881,0.088223,0.479687,0.578521,0.901493,0.0641409,0.17496,0.186761,0.302688,0.924357,0.764432,0.482336,0.372704,0.885237,0.427008,0.480764,0.045301,0.0762252,0.191277,0.078044,0.0807615,0.832399,0.67173,0.951951,0.744119,0.845526,0.570747,0.589326,0.212987,0.555104,0.635029,0.232061,0.495657,0.158241,0.221315,0.690964,0.155847,0.761854,0.905574,0.491946,0.237893,0.856742,0.112249,0.844389,0.844146,0.498438,0.730691,0.439548,0.986348,0.647892,0.759645,0.567143,0.325792,0.886675,0.199747,0.80073,0.0991516,0.654559,0.260735,0.0215108,0.642282,0.0684396,0.637837,0.689415,0.452227,0.292432,0.380676,0.818221,0.0708603,0.537189,0.72125,0.779763,0.232689,0.783777,0.815949,0.0915851,0.633317,0.97737,0.545726,0.368819,0.245287,0.51531,0.0200949,0.870256,0.870241,0.74632,0.130656,0.788033,0.122799,0.783299,0.364236,0.903282,0.587294,0.218214,0.181078,0.284143,0.944061,0.758735,0.219472,0.690895,0.225242,0.855383,0.175141,0.448623,0.626159,0.46189,0.603364,0.0769176,0.637215,0.465106,0.721493,0.0819498,0.870258,0.682875,0.640738,0.65236,0.849468,0.216186,0.453995,0.212829,0.373131,0.410959,0.279119,0.914087,0.613238,0.755132,0.840676,0.578992,0.434907,0.353811,0.0583851,0.196015,0.370044,0.0852795,0.799157,0.0922089,0.584736,0.687705,0.480006,0.0225715,0.681891,0.363701,0.880238,0.462736,0.216938,0.764138,0.694244,0.622817,0.796342,0.658085,0.931343,0.684337,0.746949,0.829662,0.244297,0.579553,0.693974,0.757744,0.675425,0.236861,0.0900643,0.432998,0.505768,0.674327,0.34866,0.505195,0.925256,0.872442,0.204993,0.244619,0.600649,0.569633,0.752167,0.719659,0.744819,0.481317,0.334945,0.0211501,0.692307,0.381727,0.53984,0.850395,0.845975,0.159742,0.0325183,0.652131,0.471848,0.289868,0.589943,0.155813,0.183876,0.803949,0.846307,0.389198,0.586693,0.0760076,0.299179,0.690472,0.56,0.412851,0.796862,0.576082,0.540092,0.932008,0.831275,0.626973,0.596911,0.23471,0.464166,0.342452,0.715153,0.128308,0.51113,0.938771,0.801201,0.77444,0.81692,0.0723047,0.000468671,0.631079,0.124908,0.255566,0.313536,0.187106,0.266796,0.245591,0.63602,0.842306,0.258095,0.683648,0.756779,0.773472,0.874043,0.608771,0.636658,0.359239,0.935856,0.369606,0.315177,0.835062,0.771606,0.908835,0.771225,0.676233,0.281771,0.653488,0.778444,0.359242,0.894317,0.287237,0.749509,0.912891,0.65793,0.819481,0.958698,0.00123769,0.305824,0.871679,0.0450924,0.960353,0.761239,0.956949,0.091472,0.16438,0.619432,0.181788,0.219997,0.520639,0.483591,0.163706,0.591396,0.747245,0.609736,0.695588,0.535618,0.812898,0.221884,0.0882803,0.353212,0.097831,0.593438,0.665115,0.275649,0.355493,0.11782,0.27019,0.881884,0.486198,0.0697547,0.357831,0.420297,0.297511,0.108338,0.821138,0.242001,0.853907,0.0714096,0.954842,0.746659,0.330143,0.429556,0.267994,0.147313,0.361376,0.71813,0.524779,0.0103619,0.957082,0.386671,0.928878,0.983853,0.883644,0.843307,0.716701,0.377894,0.999924,0.194925,0.135387,0.903814,0.596132,0.0130391,0.505294,0.521907,0.88747,0.954933,0.515725,0.0230336,0.863314,0.289524,0.754445,0.386443,0.645282,0.0922846,0.279297,0.179822,0.854179,0.638657,0.937972,0.39865,0.739113,0.262536,0.242754,0.0191503,0.187537,0.909057,0.460342,0.495948,0.59657,0.559242,0.390549,0.418727,0.98202,0.0968064,0.246524,0.809899,0.630582,0.826606,0.089359,0.460217,0.477533,0.026935,0.210381,0.646322,0.237225,0.628747,0.954936,0.314586,0.396082,0.851548,0.376948,0.420859,0.41538,0.6484,0.62748,0.345775,0.652689,0.554816,0.88949,0.961903,0.141735,0.816044,0.71863,0.507001,0.703151,0.737694,0.18142,0.993617,0.0108877,0.447559,|0.845495,0.600997,0.429842,0.321177,0.743565,0.479465,0.813655,0.516443,0.809011,0.798774,0.49621,0.0628372,0.132049,0.28168,0.480935,0.404419,0.155127,0.0822923,0.382622,0.296889,0.914027,0.805161,0.964787,0.318818,0.800286,0.977019,0.333488,0.459612,0.550093,0.801937,0.142255,0.299904,0.0563899,0.703427,0.605778,0.379865,0.638375,0.868264,0.880341,0.892355,0.843148,0.0124611,0.972607,0.21479,0.433317,0.819074,0.892677,0.191374,0.267802,0.24778,0.905943,0.25353,0.320078,0.381528,0.285779,0.60213,0.0218802,0.104945,0.579284,0.460068,0.937925,0.420934,0.156104,0.118859,0.433843,0.29157,0.692506,0.211558,0.37865,0.689232,0.962386,0.0923893,0.252049,0.781717,0.0558515,0.68764,0.25226,0.0675583,0.55838,0.798877,0.404604,0.311911,0.106463,0.989611,0.0102261,0.0749997,0.178815,0.0623261,0.871952,0.603208,0.115591,0.10009,0.885475,0.42539,0.573423,0.992156,0.562648,0.041243,0.130133,0.815234,0.335654,0.876289,0.744107,0.192627,0.587805,0.521079,0.169265,0.263844,0.167766,0.211845,0.955047,0.305162,0.0286382,0.109059,0.751444,0.866753,0.93527,0.557086,0.490461,0.293417,0.806938,0.279551,0.860473,0.19143,0.522933,0.168105,0.927017,0.0575819,0.509489,0.662169,0.300693,0.0431849,0.072852,0.636173,0.528781,0.723211,0.815804,0.329597,0.94679,0.803676,0.107235,0.421068,0.391575,0.194928,0.389675,0.0991201,0.519353,0.762695,0.028022,0.105535,0.0138638,0.210824,0.485298,0.337755,0.267328,0.895081,0.882244,0.734356,0.792769,0.256494,0.831059,0.0114027,0.746236,0.917727,0.673761,0.461099,0.515752,0.446385,0.48391,0.230451,0.303587,0.936875,0.207591,0.198484,0.471188,0.204244,0.829146,0.702884,0.121751,0.585996,0.19215,0.856966,0.154993,0.835488,0.771206,0.517346,0.875673,0.604518,0.932598,0.347709,0.43748,0.136871,0.780919,0.576266,0.809803,0.260851,0.306298,0.357146,0.874247,0.379591,0.378895,0.261968,0.26196,0.0601303,0.0803848,0.526802,0.647767,0.077334,0.940989,0.272012,0.195685,0.43374,0.375172,0.624976,0.101539,0.371388,0.74801,0.819204,0.973017,0.875025,0.596236,0.0540957,0.234718,0.816127,0.754087,0.994106,0.0903212,0.865186,0.925726,0.920226,0.471197,0.341352,0.175926,0.331113,0.0549142,0.458269,0.929383,0.148094,0.722174,0.260048,0.378386,0.820697,0.827352,0.791332,0.946378,0.940061,0.44556,0.731646,0.956619,0.683556,0.273508,0.693816,0.00417483,0.895377,0.197016,0.0180829,0.0388001,0.110756,0.415116,0.489681,0.240378,0.08284,0.597632,0.216726,0.543688,0.284972,0.350168,0.687097,0.753074,0.108111,0.278623,0.390274,0.736978,0.529827,0.243774,0.27119,0.0299024,0.710536,0.860427,0.499774,0.389115,0.163895,0.238206,0.844323,0.0799056,0.446229,0.869661,0.226414,0.975491,0.343754,0.579241,0.909587,0.733387,0.345186,0.652125,0.800845,0.0858164,0.747521,0.642549,0.47033,0.297225,0.296533,0.0324565,0.686062,0.972965,0.482782,0.92659,0.319781,0.979596,0.639669,0.00365335,0.399297,0.765154,0.824464,0.65312,0.154058,0.982598,0.213554,0.563444,0.754751,0.445591,0.493003,0.74803,0.491092,0.670089,0.637468,0.327631,0.702465,0.584401,0.62772,0.446412,0.771689,0.445089,0.33931,0.499428,0.818365,0.321376,0.47676,0.437473,0.568792,0.035106,0.531309,0.833188,0.166602,0.0636641,0.470524,0.624713,0.27881,0.572473,0.0581773,0.254167,0.330622,0.540471,0.981042,0.285585,0.475256,0.335675,0.933935,0.537715,0.738812,0.258396,0.899566,0.384535,0.56156,0.226811,0.734483,0.318419,0.530703,0.44537,0.710671,0.90385,0.650415,0.997659,0.518777,0.880646,0.0770849,0.147486,0.917913,0.940729,0.227229,0.907723,0.607365,0.811701,0.0251074,0.966833,0.666621,0.863753,0.914595,0.663964,0.277292,0.476194,0.332598,0.495968,0.876853,0.90153,0.791085,0.709459,0.704051,0.497246,0.10177,0.125946,0.551266,0.102284,0.76027,0.792445,0.716231,0.765085,0.454838,0.670225,0.29594,0.667116,0.24072,0.372813,0.070681,0.229898,0.937149,0.486624,0.839479,0.807811,0.773398,0.0365984,0.610707,0.0694527,0.367995,0.949379,0.356127,0.975884,0.546789,0.0164988,0.301547,0.998706,0.098098,0.375405,0.203706,0.774906,0.956644,0.670775,0.963299,0.509275,0.20526,0.406791,0.73265,0.382462,0.657065,0.943274,0.274182,0.864142,0.523361,0.0286498,0.0858021,0.706513,0.407169,0.292591,0.411471,0.574127,0.67971,0.869949,0.844314,0.938835,0.143142,0.579722,0.618504,0.829697,0.971679,0.254823,0.806059,0.902084,0.58567,0.458392,0.882173,0.377401,0.765942,0.284088,0.42296,0.288312,0.783259,0.119576,0.291699,0.190507,0.613703,0.0497062,0.767874,0.340731,0.807822,0.161693,0.656645,0.110288,0.929127,0.715229,0.764855,0.61222,0.68368,0.920209,0.836143,0.508385,0.411091,0.386638,0.84868,0.759045,0.943903,0.477669,0.240035,0.234444,0.469009,0.156721,0.3923,0.778332,0.144143,0.548937,0.263312,0.665213,0.416309,0.0357867,0.564007,0.612174,0.00745887,0.784521,0.776307,0.434843,0.202067,0.744707,0.455027,0.915316,0.155494,0.21905,0.247126,0.269565,0.175636,0.102371,0.78639,0.850901,0.03733,0.162888,0.970113,0.762728,0.530649,0.155001,0.107255,0.0963931,0.851404,0.478701,0.332545,0.759827,0.773035,0.771078,0.584433,0.56354,0.234122,0.412996,0.829883,0.0221847,0.15544,0.668469,0.551133,0.871649,0.0341585,0.385023,0.851829,0.141848,0.448007,0.77559,0.671518,0.21911,0.653393,0.385822,0.948728,0.0422609,0.979643,0.0301443,0.404952,0.844337,0.641546,0.246287,0.78599,0.00850058,0.916865,0.49663,0.22466,0.144393,0.780994,0.199066,0.475222,0.285631,0.672058,0.213385,0.883433,0.163813,0.162618,0.533233,0.530004,0.968381,0.763729,0.0454102,0.756752,0.0769873,0.0865589,0.701076,0.237085,0.329821,0.265072,0.147815,0.388307,0.664501,0.494418,0.180528,0.914814,0.358224,0.698137,0.0165691,0.735559,0.393626,0.511545,0.43621,0.359384,0.490804,0.898576,0.0792575,0.180994,0.864645,0.987699,0.583511,0.235604,0.984613,0.386291,0.42537,0.412507,0.110944,0.502109,0.94974,0.977811,0.478993,0.323034,0.928142,0.0452304,0.693335,0.899211,0.474423,0.168603,0.992608,0.468161,0.70648,0.159022,0.212165,0.939949,0.842097,0.0423239,0.599528,0.473561,0.609087,0.37991,0.166816,0.815998,0.976491,0.665346,0.0772415,0.840293,0.546054,0.264423,0.130043,0.0561227,0.334432,0.967147,0.763958,0.996823,0.0147289,0.780877,0.245954,0.443585,0.789708,0.9714,0.515886,0.00610763,0.52923,0.21518,0.762724,0.116171,0.0942464,0.780946,0.072117,0.26554,0.724581,0.963379,0.173215,0.793707,0.442262,0.963625,0.149025,0.702705,0.137276,0.264417,0.61888,0.312626,0.380892,0.727509,0.0620817,0.726946,0.194523,0.219466,0.123637,0.769719,0.875709,0.468273,0.598711,0.256517,0.410672,0.690824,0.956527,0.713691,0.134871,0.0352736,0.364018,0.887022,0.49865,0.0665642,0.591601,0.330463,0.945026,0.964739,0.365746,0.330643,0.460259,0.0460212,0.43127,0.275932,0.950584,0.695683,0.294467,0.0573688,0.0462387,0.10321,0.263452,0.806989,0.902065,0.354655,0.939038,0.945457,0.963282,0.273857,0.310807,0.593144,0.907138,0.906914,0.40247,0.369517,0.966813,0.480671,0.248707,0.926532,0.479392,0.380847,0.338819,0.547913,0.465645,0.289264,0.699973,0.255523,0.800942,0.589077,0.828324,0.414488,0.782763,0.75008,0.217609,0.94926,0.629739,0.928036,0.620335,0.249116,0.454299,0.426783,0.486051,0.689978,0.4538,0.056923,0.439349,0.116965,0.140676,0.406028,0.351702,0.969643,0.668027,0.371133,0.566763,0.388631,0.763046,0.755892,0.423048,0.309204,0.613786,0.808179,0.950791,0.956913,0.864887,0.230009,0.2814,0.643054,0.282262,0.7447,0.717176,0.33966,0.619916,0.470311,0.598137,0.660824,0.24574,0.558073,0.54527,0.953166,0.625375,0.596144,0.208918,0.779917,0.933693,0.321198,0.484754,0.812606,0.537893,0.403962,0.955871,0.259668,0.36584,0.424235,0.598701,0.753611,0.251016,0.0837189,0.384365,0.190512,0.181332,0.714766,0.132059,0.406915,0.91669,0.834317,0.181251,0.375411,0.389206,0.653173,0.800695,0.993492,0.75885,0.168543,0.249607,0.0631729,0.775881,0.998761,0.625468,0.0535591,0.537257,0.513655,0.997578,0.503616,0.796428,0.933971,0.845076,0.720159,0.544658,0.635714,0.55132,0.368496,0.932088,0.36041,0.391077,0.546957,0.646376,0.273213,0.367949,0.577132,0.453907,0.0478101,0.735515,0.415865,0.592335,0.430074,0.256343,0.426704,0.29744,0.761045,0.842648,0.0453227,0.772183,0.100322,0.528051,0.455051,0.353302,0.828392,0.184923,0.55359,0.638461,0.925904,0.821367,0.536358,0.15867,0.85494,0.520068,0.89688,0.545418,0.572409,0.873206,0.873165,0.971609,0.847517,0.393968,0.325868,0.803939,0.0594677,0.327102,0.881664,0.860661,0.955988,0.695636,0.996453,0.820342,0.322293,0.23169,0.533762,0.460062,0.268692,0.112596,0.388698,0.28138,0.903885,0.716941,0.557171,0.380786,0.445386,0.553935,0.93056,0.031884,0.524951,0.271397,0.552784,0.854904,0.290468,0.936793,0.258347,0.515621,0.444459,0.258732,0.260938,0.882099,0.834871,0.905662,0.714946,0.250017,0.651331,0.961378,0.621347,0.672161,0.146464,0.284966,0.401325,0.527776,0.825734,0.842093,0.209134,0.643814,0.336835,0.075999,0.0302674,0.974369,0.671731,0.763327,0.686922,0.150056,0.886564,0.700031,0.144309,0.788604,0.216272,0.952452,0.877532,0.536451,0.559178,0.0809174,0.0267103,0.0539591,0.2489,0.252213,0.849989,0.749285,0.110673,0.915614,0.938115,0.369738,0.504879,0.661527,0.902701,0.586631,0.594487,0.283483,0.766446,0.23437,0.925872,0.149387,0.016082,0.606527,0.739078,0.434433,0.942322,|0.77609,0.39953,0.0874661,0.239652,0.901703,0.848417,0.245004,0.985282,0.727398,0.714122,0.21025,0.803139,0.903995,0.676434,0.935659,0.209173,0.0964673,0.835874,0.71429,0.166597,0.333971,0.52012,0.64487,0.168972,0.954914,0.824427,0.90703,0.00243628,0.546364,0.660383,0.146995,0.898009,0.168601,0.381497,0.521271,0.687009,0.0378804,0.102946,0.638986,0.179981,0.907784,0.089498,0.0994713,0.529365,0.484163,0.379473,0.110034,0.565895,0.258207,0.518328,0.711875,0.226065,0.505555,0.512876,0.400636,0.484975,0.829699,0.767285,0.489011,0.981423,0.668274,0.987823,0.432373,0.907533,0.995657,0.659464,0.252174,0.602642,0.304241,0.807764,0.120363,0.248108,0.0170736,0.229976,0.883147,0.183666,0.185162,0.156146,0.818924,0.0668829,0.226467,0.787433,0.51099,0.404585,0.881001,0.948682,0.434997,0.583982,0.131501,0.0652275,0.162778,0.636863,0.53529,0.945056,0.25917,0.452546,0.59608,0.553359,0.950627,0.249238,0.387345,0.13221,0.440633,0.0706217,0.0749528,0.877792,0.938672,0.730743,0.714785,0.487157,0.503593,0.894363,0.294116,0.116518,0.300043,0.140839,0.779483,0.321671,0.826575,0.686062,0.390932,0.035476,0.655504,0.447023,0.438725,0.162922,0.468511,0.357846,0.422554,0.107044,0.24854,0.0623049,0.827366,0.771862,0.152269,0.700336,0.172972,0.198438,0.190362,0.275614,0.361774,0.442633,0.461454,0.146002,0.722596,0.884435,0.256001,0.0472517,0.60279,0.0640522,0.485997,0.0359083,0.553034,0.887419,0.378638,0.490705,0.860453,0.523117,0.118163,0.0356222,0.693335,0.196813,0.730182,0.869696,0.540433,0.759324,0.703665,0.783307,0.955672,0.128715,0.790087,0.937752,0.488743,0.518767,0.232559,0.386664,0.253873,0.725707,0.349761,0.693304,0.549306,0.180379,0.929021,0.439498,0.974738,0.647508,0.463358,0.230393,0.42086,0.264987,0.793143,0.162237,0.338988,0.460045,0.610307,0.868178,0.831274,0.529124,0.488488,0.46382,0.477153,0.647588,0.321808,0.645674,0.508676,0.13394,0.941559,0.134483,0.0370487,0.318666,0.722172,0.391481,0.481575,0.616257,0.863122,0.526052,0.319832,0.636186,0.879194,0.606032,0.595578,0.334229,0.407971,0.430832,0.436272,0.211294,0.234164,0.606859,0.0505829,0.207715,0.785568,0.0700614,0.431057,0.116874,0.572496,0.923776,0.266712,0.0337812,0.924777,0.364422,0.43078,0.454644,0.611797,0.118108,0.399912,0.123349,0.824256,0.361386,0.31822,0.897043,0.266241,0.121298,0.973705,0.720235,0.105433,0.472383,0.598739,0.542593,0.708349,0.667797,0.837601,0.31841,0.11174,0.935797,0.797878,0.146535,0.429837,0.889843,0.23623,0.418088,0.595933,0.0806252,0.479931,0.663227,0.528724,0.0574975,0.595894,0.440232,0.237507,0.347824,0.685131,0.0785187,0.3881,0.446476,0.517062,0.100116,0.141149,0.89401,0.749097,0.842185,0.329622,0.00992018,0.33458,0.183173,0.419939,0.895598,0.949214,0.275099,0.376439,0.767265,0.792494,0.679831,0.221893,0.634935,0.532756,0.955717,0.120451,0.525848,0.617047,0.94175,0.328944,0.59459,0.518835,0.599424,0.94855,0.475274,0.732469,0.781691,0.692025,0.515548,0.908093,0.216787,0.93988,0.597844,0.924836,0.867127,0.927433,0.82378,0.948158,0.889549,0.615967,0.583341,0.133384,0.528079,0.197159,0.736978,0.0410116,0.980641,0.209923,0.63027,0.992494,0.45175,0.727736,0.748417,0.825179,0.780836,0.268148,0.20386,0.902965,0.671404,0.883017,0.747692,0.64235,0.205865,0.192991,0.277601,0.693357,0.245146,0.201387,0.281094,0.182318,0.682276,0.518946,0.525695,0.705844,0.876963,0.31118,0.348963,0.662668,0.629368,0.710762,0.478359,0.9535,0.862173,0.314458,0.32038,0.516155,0.950783,0.313657,0.134302,0.70732,0.594284,0.562476,0.674052,0.926134,0.627886,0.284548,0.407366,0.920901,0.680479,0.385555,0.675383,0.32098,0.0174291,0.39983,0.831709,0.301538,0.233393,0.362968,0.169672,0.0528024,0.240519,0.788398,0.66754,0.128822,0.308567,0.608352,0.588236,0.463455,0.166468,0.486263,0.70356,0.246212,0.446348,0.68855,0.267139,0.339583,0.665428,0.69132,0.35645,0.0620373,0.040452,0.672335,0.745645,0.00510412,0.372246,0.979336,0.158577,0.397309,0.922789,0.750919,0.476713,0.49274,0.276864,0.598702,0.35366,0.677078,0.67657,0.118014,0.949775,0.484269,0.623746,0.484549,0.744557,0.0512142,0.0153307,0.772517,0.704619,0.467445,0.436163,0.477409,0.584098,0.201381,0.355048,0.702815,0.401258,0.0595897,0.954814,0.262941,0.00680429,0.0589753,0.37062,0.932101,0.593746,0.339175,0.46316,0.180358,0.0159913,0.00280315,0.893757,0.258109,0.926715,0.0784963,0.500389,0.305983,0.164555,0.0999971,0.903981,0.833758,0.123064,0.570437,0.618327,0.189053,0.915747,0.619679,0.751112,0.958136,0.865067,0.52947,0.16374,0.981661,0.260544,0.539371,0.531902,0.0421826,0.710914,0.266801,0.47572,0.603757,0.943303,0.315449,0.19991,0.191943,0.833788,0.316115,0.79694,0.722153,0.93308,0.11536,0.666663,0.969405,0.360753,0.115824,0.487908,0.559853,0.0731802,0.541518,0.161067,0.621391,0.32708,0.29479,0.398461,0.234033,0.392692,0.452679,0.00775176,0.707878,0.155333,0.989139,0.58865,0.870097,0.0638875,0.610141,0.155533,0.747727,0.527495,0.812765,0.389117,0.903333,0.753709,0.629824,0.403852,0.497382,0.328863,0.962432,0.93239,0.583765,0.0956268,0.374623,0.126032,0.29359,0.905111,0.352811,0.177774,0.667752,0.101396,0.602948,0.870052,0.247054,0.286669,0.678002,0.0430026,0.193714,0.732963,0.385569,0.136331,0.130373,0.682165,0.105671,0.39747,0.886378,0.717372,0.320892,0.415143,0.380252,0.128052,0.155967,0.721105,0.514659,0.586358,0.410713,0.62524,0.0456616,0.928894,0.834053,0.105006,0.841929,0.0397359,0.800077,0.83186,0.16116,0.115854,0.93683,0.965371,0.979802,0.692323,0.522728,0.170449,0.608707,0.246555,0.474855,0.186935,0.0526092,0.103077,0.612744,0.829449,0.577128,0.271231,0.853041,0.486725,0.611483,0.690263,0.0227947,0.218034,0.833194,0.272422,0.127384,0.223181,0.640148,0.403939,0.574238,0.729783,0.405852,0.640339,0.079187,0.116277,0.829422,0.0596222,0.901491,0.809456,0.52487,0.500596,0.452024,0.527608,0.901782,0.645942,0.0594302,0.984982,0.727526,0.917447,0.818651,0.367854,0.404008,0.0920646,0.513458,0.284968,0.89361,0.616076,0.799579,0.0524394,0.894453,0.0144662,0.831088,0.118582,0.622442,0.0989958,0.903189,0.12341,0.125581,0.208676,0.778619,0.942804,0.402964,0.826467,0.810994,0.000602126,0.379834,0.70252,0.992821,0.780923,0.151799,0.774539,0.16011,0.59776,0.206307,0.24925,0.612967,0.499646,0.805869,0.95531,0.615766,0.902463,0.573358,0.240064,0.793131,0.4117,0.945786,0.309202,0.527985,0.624318,0.725093,0.191553,0.721016,0.383099,0.289724,0.827016,0.8833,0.598678,0.12715,0.632109,0.459543,0.327244,0.705568,0.274751,0.744664,0.390108,0.787458,0.272572,0.952645,0.250655,0.660937,0.323257,0.824577,0.899473,0.844172,0.804429,0.165365,0.0853317,0.879645,0.810003,0.0867685,0.138764,0.656377,0.19804,0.217593,0.618828,0.0497166,0.979634,0.155195,0.481477,0.397612,0.729317,0.369888,0.753865,0.53007,0.216872,0.517729,0.731463,0.524259,0.762953,0.122296,0.448156,0.676658,0.80555,0.877142,0.815206,0.871455,0.710982,0.46391,0.796903,0.508356,0.53204,0.550122,0.459436,0.658759,0.146047,0.0686177,0.22774,0.0854112,0.851774,0.786996,0.443303,0.533705,0.403626,0.0171065,0.586396,0.998074,0.570306,0.0522091,0.298297,0.100766,0.32734,0.45412,0.272709,0.731148,0.838041,0.620062,0.791907,0.0365196,0.0399294,0.802428,0.540798,0.323054,0.454454,0.608332,0.550782,0.106243,0.456776,0.614269,0.521153,0.379256,0.938842,0.130009,0.706792,0.526973,0.72146,0.317766,0.532866,0.161659,0.140532,0.565025,0.584295,0.247257,0.123277,0.336127,0.314171,0.167019,0.847783,0.237841,0.0947216,0.198894,0.538961,0.905467,0.33293,0.0375986,0.901089,0.632378,0.402547,0.790789,0.252235,0.502669,0.92404,0.319164,0.576694,0.816376,0.873291,0.351717,0.0357106,0.488048,0.860827,0.292711,0.00410205,0.799733,0.567726,0.502111,0.0706068,0.29059,0.92887,0.468679,0.766349,0.559446,0.642455,0.126238,0.902151,0.862735,0.203053,0.572758,0.725466,0.865088,0.594509,0.651503,0.873964,0.684269,0.0738799,0.248572,0.080699,0.251769,0.983925,0.472567,0.584525,0.0136411,0.0538695,0.255572,0.0671532,0.164656,0.553681,0.16558,0.504083,0.0617749,0.313239,0.091967,0.944721,0.572763,0.813162,0.863049,0.143118,0.815169,0.802025,0.424035,0.118192,0.124543,0.216789,0.914516,0.000446796,0.0436619,0.79,0.519001,0.459605,0.199879,0.316007,0.524782,0.884018,0.949163,0.821886,0.356552,0.00241423,0.658679,0.012414,0.150836,0.468246,0.757792,0.381214,0.458195,0.227187,0.585754,0.506475,0.28783,0.283019,0.84993,0.213348,0.0784595,0.204131,0.758264,0.752201,0.859368,0.701086,0.99628,0.0778378,0.337184,0.539609,0.157892,0.350806,0.250387,0.452729,0.484499,0.979852,0.345782,0.688916,0.797964,0.606818,0.991184,0.660795,0.559183,0.290431,0.483068,0.576651,0.177359,0.745493,0.677222,0.392263,0.747205,0.148398,0.512551,0.490618,0.44655,0.658101,0.525578,0.191105,0.67081,0.434202,0.627855,0.224087,0.0987577,0.674088,0.466247,0.8842,0.460646,0.239937,0.333228,0.629673,0.366179,0.914033,0.396097,0.318538,0.897998,0.874975,0.80174,0.876562,0.495611,0.596457,0.402558,0.61982,0.518159,0.334809,0.584511,0.115858,0.93329,0.286258,0.277748,0.0355443,0.732657,0.273647,0.224817,0.94563,0.551676,0.246269,0.758848,0.691364,0.0386347,0.56888,0.152218,0.49795,0.599687,0.235608,0.00677669,0.203717,0.765597,0.995677,0.992851,0.335015,|0.821934,0.380933,0.649117,0.636235,0.720813,0.630263,0.680486,0.464228,0.399389,0.797281,0.777148,0.111241,0.472052,0.997689,0.167915,0.83713,0.126927,0.047877,0.218901,0.0988523,0.224282,0.875949,0.36562,0.284712,0.53704,0.924647,0.589048,0.166386,0.87652,0.774814,0.954818,0.462454,0.446086,0.934744,0.755131,0.956311,0.25149,0.843557,0.485939,0.527528,0.0369582,0.433656,0.310859,0.644603,0.68351,0.380337,0.67878,0.99371,0.499752,0.642452,0.440488,0.597472,0.0337055,0.20429,0.559766,0.268131,0.308138,0.32241,0.460725,0.299794,0.481071,0.0554036,0.699986,0.546328,0.802728,0.183722,0.817338,0.187397,0.843105,0.6384,0.610576,0.789651,0.802072,0.909508,0.789629,0.717711,0.276119,0.552612,0.46933,0.149982,0.384639,0.584605,0.297346,0.235102,0.16812,0.963993,0.0730247,0.0210424,0.927063,0.275564,0.23304,0.932423,0.309704,0.63638,0.931187,0.340585,0.54364,0.635882,0.403423,0.836659,0.0424522,0.535701,0.561259,0.818145,0.891333,0.769005,0.705176,0.091942,0.504572,0.907538,0.851536,0.633244,0.401371,0.0917869,0.525173,0.39777,0.746448,0.362518,0.483514,0.13562,0.374796,0.991597,0.00657016,0.310575,0.52934,0.239943,0.967836,0.554993,0.0724031,0.0361242,0.514209,0.288172,0.43795,0.198568,0.372151,0.220588,0.748204,0.95385,0.116346,0.232525,0.770533,0.171404,0.8719,0.725984,0.721654,0.670971,0.884517,0.917917,0.49092,0.138541,0.04808,0.510204,0.367569,0.252609,0.580437,0.82068,0.391344,0.0616176,0.499672,0.370984,0.798337,0.467038,0.581194,0.107169,0.128722,0.560023,0.449779,0.0413223,0.627858,0.592691,0.364284,0.934967,0.275449,0.0604597,0.537685,0.16452,0.680952,0.729169,0.807191,0.324236,0.434395,0.0383157,0.436398,0.23757,0.524889,0.0297156,0.32652,0.582659,0.245217,0.562286,0.823947,0.0152041,0.642385,0.161377,0.670733,0.577191,0.684451,0.211576,0.14121,0.486642,0.447425,0.345508,0.202314,0.316584,0.076912,0.987011,0.875356,0.184146,0.351549,0.761182,0.340106,0.537136,0.683931,0.707553,0.526019,0.540227,0.586422,0.590317,0.13923,0.314005,0.603181,0.621904,0.532658,0.301264,0.207829,0.814333,0.34815,0.745366,0.726364,0.436364,0.489403,0.0654581,0.218881,0.177452,0.0236609,0.479105,0.731796,0.693525,0.318683,0.356806,0.763121,0.641806,0.78431,0.62877,0.453038,0.0789167,0.06328,0.061554,0.396145,0.39939,0.699693,0.908463,0.536793,0.108755,0.599682,0.506798,0.287414,0.151897,0.257179,0.486115,0.536307,0.223912,0.706778,0.830161,0.0638297,0.874985,0.880287,0.136488,0.875879,0.608552,0.562206,0.628466,0.449015,0.993549,0.56039,0.16777,0.478305,0.529845,0.732087,0.232171,0.509004,0.261484,0.91013,0.378181,0.0387422,0.418472,0.0559918,0.74611,0.426427,0.532252,0.0582539,0.397623,0.327814,0.54659,0.203713,0.821348,0.392758,0.428083,0.885264,0.669194,0.0783413,0.646284,0.138697,0.633987,0.614804,0.68638,0.605409,0.593653,0.0275114,0.00579005,0.989467,0.856042,0.174305,0.71202,0.470973,0.0182374,0.462687,0.17927,0.971727,0.553991,0.458126,0.22903,0.747912,0.388242,0.900534,0.690193,0.151578,0.707181,0.279662,0.0128834,0.951743,0.407296,0.45596,0.530278,0.598693,0.736058,0.815868,0.0917662,0.523483,0.391478,0.694549,0.65439,0.364609,0.702296,0.105937,0.38226,0.792172,0.0645598,0.838231,0.800918,0.557381,0.695646,0.557487,0.547705,0.243926,0.395208,0.0039072,0.00849873,0.424131,0.101058,0.74053,0.0103856,0.357344,0.0383269,0.276131,0.19297,0.962312,0.339567,0.40292,0.994678,0.718556,0.848797,0.959035,0.486663,0.169483,0.276718,0.87399,0.334967,0.849208,0.277851,0.0637209,0.333476,0.246207,0.440553,0.904321,0.294662,0.572107,0.746924,0.616154,0.0853843,0.50604,0.673822,0.456405,0.465078,0.955939,0.808762,0.0920626,0.647716,0.690244,0.256714,0.899082,0.544405,0.175191,0.0111291,0.798739,0.315983,0.522548,0.00211549,0.793454,0.713171,0.501185,0.262028,0.407818,0.448105,0.170728,0.430693,0.796473,0.790958,0.541278,0.350761,0.901786,0.581737,0.103266,0.662112,0.218911,0.161301,0.0914984,0.914214,0.431651,0.17079,0.622909,0.338413,0.0859585,0.217898,0.624737,0.101005,0.731959,0.788495,0.501909,0.591809,0.16975,0.304271,0.220682,0.141653,0.848483,0.911103,0.178954,0.915269,0.649797,0.190091,0.221447,0.434178,0.894417,0.754041,0.990438,0.107239,0.0816576,0.59097,0.781547,0.316883,0.286833,0.851412,0.973754,0.0546939,0.837278,0.34611,0.363933,0.0885833,0.100664,0.837901,0.226037,0.699208,0.803359,0.975788,0.528751,0.827885,0.747912,0.178577,0.762821,0.462103,0.0639521,0.580746,0.159535,0.0717015,0.962434,0.899222,0.659902,0.605729,0.395444,0.78192,0.833112,0.352489,0.446298,0.27064,0.501565,0.463553,0.355677,0.119867,0.642527,0.567605,0.271524,0.784043,0.83903,0.70737,0.666892,0.598524,0.381396,0.764853,0.370921,0.184862,0.530399,0.554111,0.251024,0.563295,0.264929,0.307011,0.446698,0.226754,0.763057,0.60676,0.813491,0.705943,0.0372734,0.742951,0.383146,0.456163,0.906519,0.817349,0.873115,0.610275,0.0182706,0.108491,0.0824231,0.0110333,0.635243,0.579248,0.0124164,0.294527,0.171405,0.930247,0.276336,0.456274,0.911207,0.582654,0.782971,0.302247,0.249203,0.0265372,0.79333,0.510923,0.237595,0.169529,0.940591,0.91263,0.471869,0.340195,0.559705,0.298539,0.416754,0.128396,0.850395,0.257159,0.22594,0.254603,0.960261,0.0519531,0.225813,0.401689,0.297185,0.0934003,0.108886,0.00104153,0.254861,0.984021,0.48482,0.0364016,0.916506,0.302067,0.714678,0.0288264,0.4677,0.927201,0.588239,0.282775,0.550168,0.647421,0.984064,0.231649,0.191265,0.946355,0.543611,0.738417,0.191036,0.382685,0.871361,0.409614,0.687868,0.46644,0.467431,0.0822051,0.66129,0.592965,0.0937448,0.632664,0.786986,0.0228795,0.793189,0.269582,0.349081,0.296205,0.350509,0.819859,0.311993,0.932794,0.878952,0.572872,0.819828,0.582888,0.475748,0.442972,0.895198,0.344039,0.992365,0.604438,0.369057,0.885497,0.234215,0.122782,0.847255,0.909333,0.585791,0.0278163,0.966486,0.376738,0.772218,0.936899,0.443594,0.375167,0.471066,0.277226,0.463292,0.762201,0.805858,0.329467,0.412999,0.664578,0.737255,0.497041,0.941682,0.466193,0.0753829,0.22613,0.114775,0.820063,0.74521,0.955583,0.654216,0.913007,0.499142,0.280277,0.680942,0.396733,0.0138455,0.420463,0.273951,0.768564,0.662038,0.895933,0.982545,0.248656,0.222104,0.950417,0.214147,0.992323,0.482097,0.763119,0.419762,0.968355,0.714209,0.0107307,0.148835,0.418958,0.000958622,0.361095,0.550113,0.371362,0.0492251,0.657853,0.529222,0.253245,0.632742,0.661393,0.983324,0.431182,0.835576,0.694448,0.33115,0.798992,0.0356447,0.9245,0.409016,0.44806,0.751596,0.484784,0.659734,0.985265,0.981098,0.918889,0.660165,0.397646,0.503853,0.994317,0.278311,0.00790805,0.0400974,0.706636,0.0863593,0.11104,0.912625,0.534531,0.917051,0.953093,0.198401,0.159907,0.141104,0.851802,0.892433,0.336431,0.281729,0.524109,0.939086,0.107774,0.905136,0.282312,0.947589,0.745123,0.671838,0.906759,0.436068,0.948047,0.151649,0.766366,0.159371,0.993263,0.479084,0.879247,0.290701,0.24829,0.655937,0.905857,0.0446578,0.0536082,0.418997,0.687915,0.676249,0.309514,0.442636,0.0386623,0.614549,0.00132543,0.105331,0.384746,0.752155,0.588825,0.21101,0.480252,0.209426,0.627706,0.736136,0.723337,0.161551,0.254331,0.317698,0.929278,0.511216,0.909638,0.86439,0.244993,0.786208,0.110977,0.667165,0.678184,0.208432,0.728007,0.927066,0.961371,0.127662,0.987797,0.747933,0.849538,0.616786,0.881685,0.822015,0.0174255,0.21932,0.492376,0.156721,0.0269213,0.222814,0.74456,0.765655,0.604151,0.700565,0.742704,0.885598,0.10368,0.625604,0.274321,0.791708,0.559103,0.505255,0.139419,0.336421,0.108401,0.269542,0.800051,0.262534,0.268035,0.0191261,0.219934,0.894152,0.87966,0.0611254,0.952705,0.939466,0.657365,0.329495,0.555833,0.731633,0.0895824,0.693964,0.884102,0.772216,0.944631,0.771874,0.639035,0.0182942,0.290992,0.263355,0.943332,0.140945,0.0746856,0.870187,0.904188,0.0443006,0.41412,0.640831,0.749159,0.707659,0.761086,0.9782,0.229558,0.361709,0.783075,0.543591,0.627342,0.457311,0.165721,0.313626,0.897101,0.334108,0.284522,0.908253,0.659312,0.217814,0.850115,0.221978,0.713553,0.156057,0.134348,0.586532,0.0653349,0.639774,0.590282,0.100132,0.844444,0.993433,0.84486,0.192538,0.876992,0.817177,0.600132,0.366323,0.775355,0.591223,0.936064,0.91638,0.641108,0.22915,0.196149,0.260817,0.403709,0.223083,0.193301,0.815762,0.0298184,0.952244,0.928593,0.546023,0.978055,0.232134,0.466958,0.682816,0.122995,0.689064,0.736445,0.277703,0.0839189,0.771284,0.182254,0.246654,0.480281,0.593842,0.678412,0.403435,0.334929,0.897958,0.5821,0.10233,0.529809,0.826818,0.341073,0.0943871,0.942258,0.267745,0.175836,0.605053,0.612335,0.802702,0.50377,0.014483,0.201999,0.451872,0.261907,0.804114,0.801128,0.542865,0.912777,0.461391,0.595567,0.14763,0.221792,0.739882,0.299155,0.350439,0.458568,0.874569,0.943108,0.366852,0.770803,0.281119,0.354021,0.584895,0.0669779,0.0407228,0.150228,0.683428,0.021699,0.0112711,0.960629,0.937929,0.709036,0.9653,0.753441,0.347981,0.264397,0.0620329,0.649094,0.224705,0.0549844,0.366472,0.748733,0.772094,0.795166,0.939613,0.967326,0.284808,0.520922,0.983049,0.250626,0.730133,0.303683,0.0502852,0.423249,0.854811,0.786094,0.0256457,0.935292,0.831086,0.502191,0.535196,0.135062,0.97136,0.47263,0.536902,0.523624,0.0482929,0.864321,0.0488738,0.815242,|0.280296,0.0498176,0.731506,0.151296,0.195505,0.933222,0.624107,0.132682,0.592215,0.555722,0.169208,0.424034,0.480179,0.21046,0.780834,0.536466,0.899737,0.989236,0.133247,0.123802,0.19767,0.822559,0.0893079,0.198651,0.730284,0.130963,0.398101,0.28181,0.449818,0.672318,0.589734,0.607272,0.513609,0.367584,0.157089,0.0943625,0.311746,0.710072,0.590126,0.508392,0.768133,0.130964,0.337115,0.805531,0.269817,0.835292,0.172346,0.87723,0.503631,0.214601,0.343658,0.511224,0.510735,0.0219797,0.342653,0.534064,0.979051,0.772584,0.966452,0.449416,0.23702,0.379842,0.0425329,0.33341,0.100993,0.397924,0.526797,0.23641,0.124214,0.139975,0.538806,0.19213,0.379844,0.955777,0.0999684,0.152793,0.825307,0.00490403,0.744766,0.520926,0.565831,0.881608,0.302712,0.28793,0.329059,0.187838,0.452443,0.585745,0.0330646,0.412978,0.121534,0.733278,0.513289,0.0161011,0.459417,0.313778,0.424753,0.598177,0.719882,0.565124,0.545851,0.600637,0.491214,0.821347,0.545888,0.821899,0.619094,0.868109,0.362509,0.123116,0.385403,0.700869,0.283733,0.801652,0.972869,0.0402873,0.712843,0.0561773,0.457151,0.559914,0.464827,0.852947,0.426681,0.992896,0.843547,0.71733,0.704981,0.960259,0.112284,0.886783,0.816165,0.112875,0.421721,0.858847,0.261864,0.106095,0.707562,0.219467,0.0769913,0.26613,0.998864,0.642995,0.661327,0.141448,0.985959,0.699813,0.562456,0.798952,0.89708,0.0357751,0.963621,0.289978,0.562152,0.0385384,0.0123581,0.0383506,0.193457,0.421213,0.1685,0.798831,0.59842,0.381738,0.291998,0.790996,0.381591,0.0136793,0.980015,0.994792,0.519191,0.176555,0.072122,0.510107,0.518336,0.494191,0.6501,0.569148,0.837439,0.912062,0.305749,0.761809,0.21696,0.903744,0.65381,0.023113,0.544824,0.0157194,0.497837,0.0444634,0.503222,0.187829,0.363638,0.297701,0.333184,0.716649,0.416331,0.144716,0.632874,0.594168,0.403729,0.724702,0.106495,0.857104,0.208191,0.423868,0.480834,0.467408,0.177434,0.702315,0.592825,0.657572,0.479737,0.901402,0.987986,0.87607,0.915153,0.444617,0.666065,0.190086,0.634959,0.803726,0.0320243,0.649697,0.417688,0.466705,0.186588,0.0893301,0.60323,0.870309,0.0561374,0.902351,0.223298,0.958229,0.526251,0.714534,0.262292,0.850613,0.747093,0.630779,0.845074,0.666602,0.353084,0.421616,0.542475,0.913552,0.885558,0.804989,0.566078,0.917636,0.112448,0.225504,0.892018,0.495675,0.524824,0.790359,0.440661,0.605714,0.761815,0.82139,0.898059,0.295497,0.924934,0.30619,0.70388,0.845131,0.22227,0.769207,0.25731,0.16366,0.194615,0.0916629,0.957179,0.392614,0.404522,0.891122,0.842192,0.709908,0.627085,0.346253,0.260306,0.602832,0.188976,0.592741,0.00125921,0.0726008,0.638663,0.115983,0.516182,0.815116,0.323079,0.796725,0.123029,0.708649,0.625161,0.575828,0.687485,0.08281,0.427146,0.349439,0.187655,0.698853,0.0864251,0.630764,0.252011,0.777479,0.142509,0.595772,0.636782,0.0262031,0.930246,0.50854,0.565866,0.329929,0.804339,0.703123,0.670538,0.400163,0.0858442,0.122887,0.832312,0.933904,0.897803,0.107556,0.324515,0.832413,0.563111,0.633799,0.525688,0.235007,0.099716,0.897804,0.14448,0.557049,0.558949,0.678784,0.709552,0.386698,0.869933,0.355252,0.8091,0.607074,0.372554,0.214801,0.633804,0.044315,0.342023,0.917105,0.539985,0.64255,0.492923,0.196947,0.978619,0.610393,0.0244836,0.316987,0.299094,0.816632,0.476057,0.110653,0.497121,0.924702,0.99929,0.907201,0.812988,0.221603,0.144969,0.00302821,0.627014,0.00386858,0.533347,0.10682,0.591789,0.163797,0.462147,0.574137,0.743855,0.27736,0.15292,0.0447664,0.852132,0.634768,0.691261,0.825037,0.295936,0.527991,0.0845729,0.25247,0.339724,0.266163,0.293179,0.162182,0.337524,0.244948,0.880504,0.259385,0.823268,0.0298662,0.615824,0.467785,0.114449,0.352882,0.513497,0.476404,0.0989269,0.330829,0.434631,0.980806,0.715961,0.396412,0.194385,0.42459,0.815617,0.835115,0.476317,0.4476,0.538173,0.721266,0.6859,0.647747,0.946928,0.0708032,0.968066,0.932591,0.42033,0.345668,0.434273,0.00181133,0.748098,0.438187,0.912295,0.851059,0.264538,0.393194,0.304278,0.16457,0.539329,0.0380214,0.373894,0.92621,0.343314,0.453425,0.153722,0.347651,0.964949,0.107904,0.747088,0.230487,0.226873,0.316805,0.593038,0.963707,0.532223,0.0883127,0.801805,0.053366,0.404028,0.238424,0.413019,0.724344,0.374029,0.695146,0.353313,0.107391,0.310324,0.684169,0.0617489,0.200588,0.440177,0.993161,0.279086,0.641779,0.420173,0.335114,0.718592,0.0203118,0.543255,0.551268,0.578565,0.059072,0.914418,0.202712,0.3926,0.394498,0.420634,0.26011,0.605651,0.0362388,0.378694,0.989428,0.663971,0.85683,0.347106,0.776888,0.40549,0.808421,0.0609471,0.0570133,0.509142,0.454174,0.276765,0.0985461,0.392792,0.148584,0.941168,0.359244,0.333312,0.4306,0.408831,0.820426,0.921355,0.951691,0.043654,0.0994912,0.872502,0.126091,0.623578,0.668884,0.314009,0.595485,0.387989,0.353207,0.0931999,0.753493,0.358282,0.713389,0.343664,0.808754,0.705497,0.0192584,0.764928,0.903462,0.847471,0.342263,0.781574,0.169714,0.869478,0.687729,0.405883,0.992212,0.749122,0.976705,0.123491,0.603201,0.795982,0.77039,0.328641,0.0257031,0.646241,0.716519,0.149186,0.0290875,0.109098,0.920757,0.320912,0.812785,0.368246,0.49062,0.490864,0.684986,0.391829,0.12758,0.298407,0.966149,0.802419,0.59714,0.00875098,0.304128,0.0163021,0.328603,0.567648,0.520764,0.0938119,0.863508,0.654627,0.878769,0.848934,0.970912,0.721189,0.890925,0.678581,0.9091,0.770502,0.799096,0.795408,0.962411,0.804737,0.602103,0.759606,0.828885,0.825235,0.575109,0.875996,0.761326,0.137973,0.567423,0.517766,0.0202109,0.14573,0.292625,0.0562711,0.781088,0.393477,0.0307677,0.163125,0.487994,0.193977,0.253634,0.622069,0.0964363,0.289384,0.817081,0.876155,0.355916,0.760362,0.709446,0.776363,0.161549,0.23332,0.841996,0.119872,0.246153,0.400384,0.835487,0.962248,0.568937,0.718215,0.320625,0.570769,0.894954,0.244042,0.291857,0.762787,0.217215,0.266315,0.772035,0.132868,0.288544,0.24445,0.000441611,0.0413148,0.282752,0.408483,0.431823,0.281385,0.63211,0.197093,0.0715459,0.161295,0.579682,0.712082,0.882135,0.64101,0.0803744,0.340465,0.732567,0.707109,0.873803,0.694606,0.377833,0.0725124,0.499953,0.365177,0.522583,0.00886756,0.273368,0.471905,0.656844,0.913809,0.0363373,0.939549,0.461421,0.964114,0.758627,0.649862,0.566021,0.993632,0.762483,0.619662,0.435305,0.274341,0.625655,0.49487,0.325948,0.791101,0.240184,0.716093,0.444446,0.279301,0.308336,0.448914,0.748973,0.680153,0.567896,0.69739,0.743789,0.561754,0.625648,0.539327,0.752237,0.123301,0.760125,0.612871,0.384535,0.812592,0.118288,0.542199,0.809559,0.147559,0.00966728,0.977416,0.850701,0.399142,0.485353,0.0833954,0.803299,0.304999,0.512851,0.199212,0.460444,0.171365,0.223062,0.592493,0.700128,0.341015,0.9318,0.74512,0.213203,0.983608,0.182454,0.198795,0.194195,0.674266,0.521038,0.0738749,0.842554,0.703042,0.637234,0.00400233,0.939878,0.314651,0.735242,0.22146,0.699216,0.825772,0.912959,0.108158,0.370865,0.111081,0.607944,0.435642,0.404694,0.487858,0.509916,0.655365,0.0692399,0.708378,0.727907,0.206671,0.710842,0.156929,0.858344,0.183472,0.285883,0.439032,0.81135,0.407191,0.267169,0.129806,0.00747555,0.481245,0.37498,0.12116,0.607454,0.222964,0.703539,0.84373,0.770393,0.738827,0.330448,0.581519,0.51613,0.34295,0.366103,0.785239,0.539548,0.501188,0.561525,0.438851,0.124833,0.452097,0.986,0.0436425,0.6847,0.121938,0.495285,0.674602,0.580791,0.771557,0.372468,0.565162,0.154247,0.188236,0.222421,0.140165,0.934463,0.988599,0.772995,0.195097,0.630441,0.497111,0.143107,0.651739,0.187142,0.838265,0.275995,0.523553,0.980877,0.536429,0.656163,0.28935,0.0254765,0.126989,0.697217,0.151277,0.392516,0.0229365,0.137118,0.579957,0.18966,0.727715,0.583094,0.864001,0.50864,0.870028,0.23374,0.807236,0.669451,0.000277996,0.32923,0.960901,0.494709,0.982566,0.6633,0.557707,0.0285813,0.853078,0.0651977,0.473155,0.982869,0.221995,0.91413,0.665984,0.805693,0.266839,0.443748,0.0400259,0.665357,0.0928825,0.594644,0.259924,0.0323188,0.947095,0.96926,0.916684,0.559271,0.416782,0.249423,0.786577,0.344348,0.907307,0.53875,0.320279,0.87219,0.992139,0.671984,0.94329,0.852341,0.317508,0.77329,0.361283,0.764022,0.913546,0.585718,0.185496,0.880816,0.787033,0.816856,0.0879967,0.148548,0.0872293,0.437293,0.297954,0.468867,0.637939,0.469011,0.248778,0.385191,0.95258,0.865877,0.0525541,0.372372,0.502289,0.0215419,0.660346,0.87365,0.249069,0.145678,0.671318,0.885122,0.0811541,0.108736,0.444049,0.374373,0.0978783,0.502155,0.193535,0.246749,0.794787,0.23881,0.90376,0.601717,0.180389,0.623454,0.319324,0.564947,0.420062,0.216627,0.159355,0.860376,0.884693,0.378077,0.897769,0.370188,0.143854,0.798707,0.183517,0.646089,0.759533,0.0234734,0.614073,0.455724,0.532742,0.547504,0.970685,0.167863,0.919063,0.270372,0.535376,0.115229,0.730922,0.339098,0.300822,0.297837,0.491269,0.368161,0.739848,0.805725,0.798499,0.126654,0.7715,0.826667,0.896525,0.183076,0.73629,0.681896,0.512899,0.242287,0.624762,0.469769,0.682214,0.572206,0.0205508,0.122283,0.377127,0.128318,0.913794,0.61644,0.215746,0.325849,0.214961,0.580532,0.591358,0.0313477,0.499109,0.00598937,0.541527,0.697285,0.426631,0.059354,0.900224,0.101778,0.498843,0.306963,0.695377,0.763104,0.270373,0.966529,0.0716622,0.128008,0.852912,0.437311,|0.431385,0.563704,0.532792,0.16663,0.00202292,0.972706,0.0249396,0.89325,0.560981,0.891298,0.315321,0.62832,0.185337,0.0408481,0.0839226,0.21755,0.430373,0.363253,0.974762,0.291837,0.300076,0.969794,0.752392,0.765767,0.138547,0.392847,0.379073,0.934558,0.581761,0.458169,0.555448,0.263276,0.156222,0.831166,0.567917,0.486831,0.991862,0.571172,0.830063,0.98525,0.854103,0.449234,0.731847,0.468563,0.315447,0.595377,0.444051,0.539002,0.717875,0.846257,0.399109,0.141342,0.254675,0.69569,0.988539,0.696512,0.305218,0.62187,0.0223128,0.201211,0.432607,0.177344,0.777904,0.240434,0.238856,0.445967,0.0439037,0.900581,0.973676,0.785778,0.669659,0.0414694,0.830339,0.0153515,0.247674,0.695458,0.565956,0.836228,0.786909,0.641384,0.919404,0.679542,0.30185,0.960732,0.366588,0.778262,0.513327,0.33527,0.553671,0.361491,0.835348,0.781994,0.309682,0.452979,0.570267,0.859616,0.164101,0.178043,0.1623,0.130894,0.103955,0.700101,0.230634,0.25752,0.0633811,0.206513,0.233988,0.885044,0.87653,0.663632,0.613634,0.650022,0.463299,0.729642,0.806805,0.938915,0.349132,0.260557,0.798614,0.405806,0.900436,0.881857,0.274626,0.0325876,0.423862,0.14932,0.227548,0.847357,0.903266,0.464905,0.560388,0.941668,0.871079,0.746217,0.876214,0.411805,0.795331,0.722815,0.716949,0.981051,0.998904,0.790205,0.29605,0.976368,0.899958,0.536398,0.165859,0.653971,0.468474,0.400336,0.966361,0.00453013,0.521678,0.0748581,0.891228,0.914101,0.19495,0.4273,0.631951,0.245082,0.349171,0.45011,0.834582,0.271074,0.60413,0.709159,0.334896,0.895377,0.963639,0.341945,0.156471,0.636922,0.858751,0.699976,0.579841,0.835958,0.671245,0.275785,0.900092,0.725963,0.881847,0.263401,0.64947,0.116457,0.172663,0.226245,0.552089,0.52456,0.29441,0.765698,0.407146,0.310543,0.195413,0.438407,0.874519,0.461454,0.040154,0.540238,0.144026,0.581672,0.212629,0.0533149,0.431172,0.267762,0.252339,0.246129,0.384016,0.374219,0.162184,0.256638,0.815228,0.667645,0.109253,0.760264,0.0575441,0.609694,0.151518,0.903446,0.656372,0.825585,0.762269,0.671298,0.248244,0.713627,0.444708,0.296303,0.0730273,0.650512,0.0342196,0.476752,0.193197,0.485341,0.559344,0.21092,0.609735,0.317867,0.986973,0.524598,0.0811263,0.266253,0.725028,0.96222,0.56299,0.465963,0.134633,0.681182,0.7454,0.346832,0.666359,0.185116,0.807641,0.675789,0.726131,0.747202,0.929944,0.841919,0.0927448,0.153723,0.828987,0.377156,0.350662,0.091483,0.683163,0.0489151,0.860501,0.76838,0.143611,0.982274,0.0729671,0.119922,0.343288,0.482989,0.963396,0.419514,0.258618,0.0304775,0.196177,0.22035,0.717386,0.462911,0.220659,0.458939,0.999376,0.339017,0.402999,0.875139,0.687345,0.22457,0.835185,0.49934,0.749199,0.186429,0.627432,0.441049,0.134115,0.110325,0.1115,0.767184,0.274307,0.757386,0.660208,0.0940073,0.0338331,0.746356,0.88414,0.546578,0.948085,0.693416,0.341961,0.766301,0.0430601,0.200587,0.24067,0.40939,0.0936456,0.196995,0.275986,0.705135,0.541741,0.797,0.488768,0.0770034,0.67188,0.338926,0.018405,0.442473,0.949036,0.0476299,0.130417,0.515013,0.515822,0.245315,0.712153,0.646447,0.983657,0.232279,0.890366,0.958443,0.0232897,0.371781,0.999506,0.899497,0.531353,0.0201409,0.222532,0.653534,0.373666,0.365987,0.269937,0.0132738,0.344037,0.869008,0.0274305,0.718488,0.332127,0.329028,0.0258734,0.863337,0.890904,0.271703,0.457934,0.157694,0.653234,0.012068,0.4582,0.679893,0.715016,0.854463,0.145044,0.939265,0.793447,0.221217,0.984185,0.547626,0.0193424,0.320881,0.931761,0.160833,0.275129,0.185846,0.845921,0.677979,0.240404,0.045258,0.894211,0.649738,0.963783,0.473224,0.670241,0.753014,0.513519,0.0980555,0.457422,0.407385,0.00189286,0.258734,0.387686,0.758789,0.27127,0.572036,0.0220331,0.709533,0.645181,0.691459,0.216184,0.553713,0.404777,0.121402,0.283741,0.764069,0.395183,0.935043,0.147551,0.659116,0.170967,0.26483,0.692762,0.829335,0.332975,0.280975,0.445026,0.860861,0.518413,0.779189,0.460884,0.0857268,0.251326,0.54965,0.50469,0.962202,0.923054,0.837348,0.326256,0.698869,0.515912,0.942683,0.171494,0.73194,0.0537408,0.245839,0.87647,0.191292,0.294347,0.909823,0.631909,0.450489,0.875772,0.00196165,0.30231,0.0447897,0.952824,0.259401,0.48175,0.188217,0.0423309,0.683138,0.84691,0.942969,0.334873,0.398567,0.508649,0.27263,0.768096,0.397846,0.518749,0.322545,0.642057,0.796122,0.770285,0.925356,0.319614,0.790706,0.106662,0.374179,0.453828,0.61279,0.671588,0.379687,0.553262,0.47689,0.428326,0.370076,0.584258,0.941093,0.725814,0.0666768,0.903535,0.483741,0.616296,0.931687,0.271144,0.326769,0.652397,0.777876,0.126596,0.644314,0.983436,0.906121,0.238482,0.277124,0.647541,0.934399,0.335181,0.314694,0.734219,0.607372,0.984542,0.330814,0.61543,0.646557,0.582411,0.373691,0.806172,0.566221,0.618487,0.755798,0.333317,0.285327,0.77287,0.726833,0.848034,0.895413,0.0612707,0.88852,0.567647,0.0877775,0.860751,0.472013,0.157618,0.695271,0.70303,0.623045,0.569536,0.819169,0.206089,0.207461,0.338806,0.776528,0.939668,0.238169,0.964142,0.0597028,0.205746,0.190437,0.131277,0.00323409,0.304111,0.15943,0.322369,0.453839,0.164158,0.648497,0.925619,0.427913,0.876507,0.778206,0.799146,0.562305,0.955822,0.0243124,0.811758,0.877951,0.316741,0.172418,0.141998,0.00261587,0.499125,0.145888,0.393741,0.119675,0.556722,0.0485197,0.159945,0.557527,0.618917,0.630871,0.471844,0.505293,0.754096,0.811748,0.350766,0.037252,0.0629402,0.857323,0.826696,0.389731,0.189796,0.759194,0.356928,0.828439,0.963631,0.513815,0.938451,0.952967,0.918001,0.886712,0.272625,0.691387,0.533931,0.631896,0.771254,0.629755,0.830525,0.449655,0.186259,0.291102,0.429789,0.29889,0.421735,0.650945,0.405287,0.205297,0.760387,0.749226,0.885223,0.558923,0.0135921,0.470436,0.771625,0.410204,0.136134,0.502826,0.80394,0.451526,0.572028,0.256649,0.454295,0.757331,0.235085,0.501435,0.966057,0.282549,0.43741,0.137652,0.725063,0.0386881,0.553928,0.41388,0.871641,0.891389,0.0917389,0.232766,0.758649,0.335343,0.841751,0.0866401,0.673618,0.0824108,0.0149705,0.350879,0.729791,0.532928,0.990077,0.165027,0.78269,0.730926,0.554216,0.584946,0.634233,0.351781,0.734326,0.0226998,0.0902596,0.899483,0.63196,0.62128,0.431648,0.945836,0.723807,0.420154,0.256749,0.619145,0.0894743,0.277465,0.563722,0.466162,0.639452,0.927911,0.470703,0.116116,0.582988,0.978127,0.945807,0.464006,0.220125,0.904154,0.250026,0.420865,0.0131831,0.977221,0.362278,0.388543,0.951228,0.451623,0.0154237,0.391639,0.620255,0.50037,0.586586,0.828263,0.203155,0.426163,0.238188,0.144596,0.0200796,0.363534,0.843363,0.957746,0.721867,0.422691,0.150552,0.210474,0.99468,0.942037,0.38958,0.315372,0.568602,0.130414,0.685355,0.210106,0.334412,0.362908,0.733029,0.413413,0.48068,0.257967,0.882448,0.257377,0.406,0.973172,0.0101658,0.320851,0.179371,0.973722,0.653295,0.89973,0.957572,0.275235,0.376458,0.797236,0.00966513,0.938921,0.316743,0.0658031,0.211627,0.346154,0.578642,0.336389,0.590997,0.410339,0.123574,0.324174,0.443403,0.36292,0.632506,0.919453,0.175619,0.325087,0.139791,0.189864,0.22543,0.768334,0.955717,0.578297,0.64582,0.10395,0.0856513,0.982553,0.594505,0.797382,0.991736,0.700292,0.568222,0.146154,0.250286,0.150258,0.740258,0.94459,0.234609,0.0757346,0.0160814,0.0177193,0.59315,0.923007,0.509337,0.888237,0.563793,0.0480813,0.0460739,0.211796,0.117856,0.189236,0.395791,0.44955,0.195523,0.505426,0.105233,0.580749,0.266038,0.155272,0.150579,0.911191,0.279632,0.527221,0.154167,0.973992,0.388457,0.821055,0.250859,0.886601,0.58157,0.744108,0.978206,0.251215,0.15274,0.18442,0.4786,0.287164,0.954192,0.510736,0.657053,0.237856,0.155391,0.301115,0.346801,0.778435,0.484906,0.387696,0.328726,0.610145,0.911262,0.879567,0.997736,0.106984,0.697603,0.980729,0.354374,0.939183,0.18752,0.804878,0.986963,0.5177,0.172432,0.777989,0.640962,0.780522,0.871403,0.270482,0.742453,0.178163,0.507988,0.894421,0.75938,0.0966927,0.987679,0.609409,0.199463,0.908479,0.707169,0.348397,0.719965,0.206331,0.968801,0.539403,0.899309,0.432886,0.258391,0.770559,0.836673,0.89015,0.993299,0.733181,0.497875,0.59202,0.671371,0.773089,0.86868,0.106791,0.123577,0.804593,0.0125355,0.129831,0.0623966,0.432615,0.859688,0.000949681,0.16924,0.519979,0.434251,0.539266,0.469432,0.719953,0.25787,0.310682,0.708177,0.286293,0.15671,0.781817,0.215944,0.651351,0.358203,0.200783,0.257756,0.672565,0.657674,0.0717845,0.0292111,0.643416,0.746572,0.851344,0.779854,0.0124177,0.115674,0.286594,0.589664,0.380265,0.769196,0.441044,0.340648,0.480593,0.296014,0.337244,0.348583,0.397058,0.936685,0.876465,0.900442,0.335685,0.0872048,0.405122,0.868057,0.199027,0.0796884,0.0200449,0.603079,0.703097,0.0388516,0.609268,0.603356,0.578797,0.4899,0.433135,0.672756,0.478318,0.974273,0.882521,0.396616,0.288504,0.683476,0.956565,0.548168,0.579409,0.826307,0.976291,0.443549,0.178541,0.35888,0.35064,0.143973,0.136967,0.750227,0.618493,0.241792,0.0963557,0.512658,0.845864,0.993247,0.0929936,0.982852,0.682269,0.524275,0.398337,0.200024,0.706648,0.577487,0.835265,0.530841,0.0326689,0.418738,0.360335,0.577834,0.585855,0.902049,0.718131,0.836105,0.663725,0.688122,0.66853,0.787574,0.95151,0.250768,0.408343,0.891808,0.182812,0.340533,0.519326,0.162483,0.782453,0.627379,0.862544,|0.660232,0.629173,0.887747,0.0504849,0.532035,0.632962,0.815647,0.751429,0.468258,0.341718,0.339547,0.579529,0.72073,0.0460901,0.732098,0.944146,0.737107,0.925718,0.94403,0.587589,0.522758,0.403794,0.275785,0.866339,0.778933,0.870277,0.650401,0.648137,0.854506,0.821757,0.883913,0.569286,0.873539,0.976756,0.158863,0.167206,0.0400645,0.0852567,0.483281,0.645939,0.388717,0.83004,0.248421,0.0827116,0.392102,0.425082,0.499426,0.181388,0.0828891,0.0287574,0.600194,0.0716961,0.815366,0.456143,0.780225,0.426787,0.511927,0.630063,0.0988786,0.331172,0.269027,0.943371,0.562487,0.634855,0.00762326,0.192412,0.927099,0.0971348,0.424916,0.339887,0.377011,0.738124,0.443043,0.478492,0.267271,0.169187,0.520861,0.510191,0.0723231,0.26876,0.683511,0.460661,0.552148,0.954817,0.132695,0.249906,0.909631,0.580469,0.244828,0.373029,0.107054,0.31728,0.569328,0.941804,0.887256,0.571204,0.109076,0.711148,0.23837,0.445365,0.956251,0.754685,0.90152,0.671033,0.70656,0.356095,0.235747,0.311677,0.618641,0.656305,0.153997,0.0200261,0.072574,0.512431,0.811916,0.122378,0.434008,0.0562363,0.40325,0.407774,0.586341,0.821823,0.850475,0.0458499,0.912131,0.127026,0.659375,0.913506,0.864913,0.859511,0.513609,0.73462,0.309375,0.527444,0.94748,0.752094,0.855556,0.0741897,0.925872,0.159797,0.385858,0.768384,0.533607,0.765413,0.962626,0.141986,0.613358,0.1635,0.371082,0.500683,0.154077,0.838494,0.884841,0.0785715,0.882773,0.107118,0.987196,0.493439,0.470217,0.42588,0.959418,0.599072,0.0888752,0.679859,0.443114,0.590392,0.22953,0.960635,0.106472,0.0622098,0.975648,0.0347099,0.728126,0.748884,0.548441,0.560789,0.370121,0.665242,0.31697,0.936386,0.0671399,0.289068,0.192488,0.563491,0.555017,0.593137,0.196192,0.314535,0.036332,0.0809789,0.554292,0.671702,0.085039,0.68977,0.735363,0.775089,0.255604,0.610119,0.153349,0.289888,0.939255,0.262413,0.841472,0.201961,0.714474,0.630551,0.36051,0.364885,0.891169,0.986392,0.379024,0.471318,0.608624,0.486581,0.17116,0.836738,0.909574,0.267339,0.455041,0.698625,0.645608,0.968839,0.853883,0.677769,0.974698,0.722471,0.879255,0.882729,0.85078,0.441811,0.947406,0.743361,0.529801,0.42467,0.530426,0.609732,0.0933417,0.296507,0.960753,0.486041,0.0590954,0.163782,0.278027,0.63983,0.144833,0.388573,0.782782,0.84506,0.0936422,0.316606,0.425197,0.0310592,0.0143514,0.177197,0.139353,0.349418,0.17461,0.817043,0.591025,0.491643,0.596331,0.610093,0.343903,0.661083,0.0267402,0.983115,0.947704,0.0679126,0.690241,0.519963,0.821104,0.110242,0.908024,0.772119,0.399821,0.435056,0.70467,0.645218,0.520593,0.875894,0.884211,0.414534,0.684813,0.00157303,0.250245,0.606021,0.846359,0.622463,0.384357,0.462084,0.0472271,0.213952,0.732402,0.877592,0.352328,0.448041,0.491089,0.93572,0.792153,0.442498,0.226173,0.89427,0.708624,0.054453,0.806384,0.00711948,0.168937,0.114714,0.110673,0.872988,0.322057,0.0250553,0.946773,0.904059,0.28308,0.373474,0.908671,0.262841,0.0573158,0.750227,0.182936,0.204366,0.702079,0.569735,0.92969,0.564067,0.224401,0.879486,0.0218332,0.354081,0.436214,0.964638,0.0709822,0.835947,0.340807,0.654567,0.248445,0.815099,0.314916,0.194254,0.916583,0.132109,0.794453,0.21672,0.854229,0.64799,0.0161323,0.05998,0.433845,0.383677,0.139457,0.460164,0.725308,0.717481,0.328689,0.116232,0.956183,0.802056,0.609258,0.149196,0.478186,0.411462,0.678719,0.0815033,0.313694,0.0791174,0.414626,0.503438,0.883912,0.744724,0.157053,0.472511,0.486272,0.168406,0.150256,0.380949,0.695937,0.174414,0.811653,0.3367,0.0334885,0.430413,0.974473,0.501974,0.698467,0.532915,0.0496396,0.556872,0.778631,0.81841,0.931477,0.331963,0.491261,0.295198,0.463014,0.92457,0.0814949,0.101379,0.959459,0.956845,0.360603,0.462354,0.599334,0.912497,0.760871,0.152897,0.236136,0.0264274,0.275628,0.175264,0.0273193,0.280793,0.649599,0.370454,0.0686031,0.592413,0.995597,0.0531899,0.444783,0.490498,0.99483,0.340866,0.374975,0.180808,0.821348,0.444376,0.422152,0.920057,0.0659181,0.30769,0.215058,0.862113,0.113878,0.939696,0.0473208,0.843985,0.658017,0.477419,0.777885,0.558173,0.225028,0.366979,0.0442613,0.553693,0.141421,0.507574,0.800704,0.0144019,0.537379,0.283034,0.242536,0.565395,0.0801737,0.0523509,0.798006,0.426476,0.541258,0.0180871,0.976833,0.822723,0.889311,0.197128,0.0506014,0.709707,0.697548,0.348752,0.772574,0.224575,0.414218,0.461354,0.0180755,0.0557804,0.412603,0.0736909,0.232047,0.720014,0.957512,0.726787,0.132698,0.455929,0.35636,0.101364,0.113399,0.5337,0.300652,0.303208,0.397125,0.637494,0.500607,0.112094,0.294024,0.404296,0.507038,0.0882683,0.0432206,0.933405,0.741169,0.846896,0.0846673,0.493139,0.38313,0.582476,0.418587,0.861535,0.267182,0.183881,0.876425,0.842933,0.36046,0.82358,0.932217,0.436907,0.100975,0.922014,0.958715,0.860138,0.636625,0.696586,0.142594,0.321655,0.563999,0.779584,0.110362,0.967412,0.779678,0.180465,0.161786,0.422243,0.0867927,0.771221,0.752012,0.450962,0.413666,0.572927,0.122608,0.410089,0.420358,0.653847,0.0519077,0.807955,0.296228,0.653407,0.870031,0.103611,0.681652,0.232068,0.255682,0.367581,0.732101,0.60103,0.278601,0.33448,0.354218,0.343655,0.128241,0.946144,0.445574,0.869781,0.0759597,0.548408,0.312497,0.546065,0.732467,0.379818,0.699668,0.435734,0.717088,0.0758151,0.799504,0.584402,0.674135,0.348201,0.956475,0.803784,0.224401,0.261207,0.783322,0.586162,0.680225,0.273931,0.543806,0.547258,0.0885178,0.993742,0.0161955,0.0213861,0.457054,0.309313,0.666149,0.325922,0.623493,0.788585,0.999179,0.607681,0.167145,0.401105,0.236189,0.241778,0.632174,0.23156,0.630502,0.870146,0.0147364,0.516322,0.70184,0.364366,0.699195,0.377011,0.502578,0.985599,0.0632656,0.472424,0.794492,0.850663,0.620927,0.465712,0.747487,0.590041,0.105349,0.13268,0.794012,0.608857,0.794871,0.212646,0.575777,0.556781,0.728175,0.703415,0.484518,0.0537238,0.467593,0.563172,0.439289,0.630265,0.542436,0.0187536,0.14775,0.262156,0.52818,0.0436475,0.16972,0.720147,0.883987,0.357369,0.0819186,0.297388,0.492556,0.143615,0.647832,0.898828,0.0242451,0.407029,0.312413,0.958032,0.559219,0.701172,0.695959,0.82384,0.0202089,0.186642,0.714087,0.978644,0.489757,0.964117,0.631081,0.48804,0.490632,0.656025,0.205598,0.210972,0.901223,0.568419,0.661097,0.196947,0.583836,0.0197138,0.0195476,0.559298,0.768378,0.957386,0.419599,0.581329,0.84362,0.64899,0.776739,0.58904,0.251087,0.314617,0.983549,0.950155,0.271907,0.00758165,0.629142,0.91372,0.362522,0.624281,0.0283281,0.856007,0.492017,0.0352786,0.806104,0.0854119,0.655838,0.47603,0.812903,0.407432,0.546108,0.300579,0.356718,0.727038,0.943933,0.234399,0.843811,0.0395619,0.877015,0.973851,0.647702,0.8107,0.214216,0.610139,0.678011,0.687491,0.93353,0.0909579,0.840121,0.814688,0.749612,0.0450169,0.136896,0.889333,0.658202,0.40712,0.492909,0.910896,0.631343,0.223442,0.666912,0.862984,0.678943,0.807388,0.69945,0.38319,0.335903,0.870704,0.0043022,0.518138,0.482609,0.0137228,0.318204,0.2448,0.0276651,0.35065,0.799105,0.285679,0.443566,0.0134906,0.770411,0.772932,0.354784,0.833047,0.0807413,0.945489,0.810036,0.903524,0.609018,0.0513722,0.131125,0.725252,0.000190258,0.793,0.2558,0.358335,0.613084,0.125542,0.100548,0.0877183,0.778324,0.560069,0.0144854,0.78684,0.022358,0.87188,0.156482,0.851036,0.442696,0.750785,0.199328,0.786425,0.450683,0.809743,0.933688,0.705493,0.207706,0.539399,0.434042,0.0679798,0.357666,0.806616,0.740117,0.326526,0.558714,0.342335,0.492782,0.795928,0.844447,0.401704,0.709088,0.16076,0.873331,0.764456,0.377471,0.548539,0.0794803,0.696756,0.927046,0.882526,0.370163,0.977176,0.547751,0.389317,0.603178,0.725969,0.930004,0.0140218,0.356088,0.553992,0.755795,0.0178899,0.886226,0.80909,0.346679,0.227633,0.0574328,0.366997,0.0392546,0.912969,0.36787,0.936505,0.281298,0.351014,0.662963,0.623407,0.307235,0.892386,0.324308,0.738138,0.0154474,0.792318,0.168709,0.818456,0.565947,0.337933,0.964315,0.0207759,0.853506,0.790333,0.580861,0.351728,0.171079,0.685956,0.989962,0.505899,0.382588,0.341859,0.845771,0.565293,0.497777,0.847137,0.258828,0.994499,0.144614,0.647204,0.580897,0.74165,0.779554,0.212443,0.784904,0.0729104,0.310006,0.411075,0.915004,0.981144,0.561993,0.0109257,0.962541,0.159447,0.743378,0.985326,0.30221,0.53475,0.262543,0.296472,0.167799,0.164462,0.316488,0.180728,0.314185,0.802483,0.744561,0.533585,0.593009,0.771189,0.101189,0.637977,0.578834,0.374731,0.00139511,0.0210082,0.204107,0.492957,0.102657,0.124115,0.863961,0.214325,0.996012,0.511319,0.282156,0.432287,0.0726947,0.385421,0.979869,0.708998,0.897421,0.997791,0.814587,0.277043,0.467393,0.386186,0.532623,0.00519353,0.632764,0.548851,0.435627,0.896352,0.175163,0.67781,0.857986,0.819723,0.0208728,0.507833,0.955571,0.761667,0.547995,0.186891,0.953725,0.317712,0.369946,0.617084,0.306333,0.952161,0.833609,0.927237,0.701685,0.165384,0.978377,0.133392,0.997926,0.524394,0.347866,0.595529,0.554176,0.0514361,0.288674,0.802191,0.784746,0.850243,0.780492,0.589437,0.263349,0.560332,0.216742,0.45945,0.364718,0.78484,0.93429,0.30456,0.4321,0.0239254,0.294317,0.207973,0.965206,0.806891,0.0770804,0.507313,0.131719,0.403297,0.69779,0.571702,0.151339,0.79062,0.885953,0.445707,0.992562,0.135722,0.272325,0.935873,0.105135,0.664378,0.449489,0.428101,|0.997151,0.319029,0.931428,0.35547,0.793656,0.628507,0.11507,0.874441,0.395673,0.740485,0.771067,0.996081,0.579074,0.227398,0.405549,0.210478,0.894682,0.780114,0.786844,0.146076,0.641292,0.366295,0.94784,0.787,0.657921,0.761245,0.927113,0.133798,0.291578,0.108647,0.825079,0.611532,0.105056,0.0377653,0.737232,0.470205,0.774823,0.440377,0.229288,0.44331,0.508886,0.140877,0.880087,0.848322,0.554006,0.687173,0.830675,0.163323,0.496598,0.0649863,0.0975301,0.28246,0.656406,0.258698,0.0730554,0.708613,0.617126,0.288371,0.0888873,0.532726,0.93921,0.726038,0.832904,0.457398,0.108955,0.952543,0.461614,0.952427,0.890897,0.881307,0.587752,0.480517,0.629807,0.859211,0.75693,0.817394,0.446713,0.807846,0.942624,0.36325,0.336509,0.488895,0.694286,0.951391,0.191207,0.92844,0.246943,0.391129,0.565767,0.158063,0.252969,0.921848,0.230226,0.98115,0.600109,0.226364,0.315973,0.59939,0.937226,0.819249,0.000417292,0.656932,0.497274,0.0918173,0.597567,0.758116,0.466496,0.58052,0.773236,0.847002,0.225574,0.611891,0.688626,0.120863,0.0873805,0.476212,0.162115,0.0084548,0.258887,0.576296,0.675574,0.0930426,0.900317,0.993529,0.578834,0.535951,0.53204,0.779181,0.473761,0.234979,0.659437,0.828256,0.4559,0.0179139,0.250056,0.515642,0.80645,0.198587,0.0450616,0.803509,0.267908,0.802376,0.637013,0.786866,0.721744,0.294053,0.976706,0.164202,0.250424,0.670201,0.897159,0.92979,0.00455737,0.846828,0.186617,0.457073,0.567742,0.752861,0.0364,0.240364,0.908126,0.391642,0.116286,0.0974786,0.737649,0.83579,0.219195,0.226096,0.992903,0.0735412,0.640973,0.0670673,0.551691,0.0990263,0.650462,0.174623,0.771389,0.3793,0.21302,0.0925236,0.441557,0.659552,0.0620362,0.982067,0.330445,0.753491,0.405804,0.280267,0.540488,0.801349,0.0621113,0.406196,0.785648,0.213559,0.792271,0.643831,0.336411,0.189993,0.631027,0.931025,0.0423602,0.495765,0.0565975,0.0442246,0.460631,0.996571,0.0725803,0.497905,0.270065,0.516048,0.470648,0.861903,0.408079,0.492735,0.473481,0.2034,0.401097,0.280021,0.367787,0.48756,0.247455,0.482444,0.66675,0.860953,0.210907,0.52015,0.50374,0.982749,0.298846,0.973079,0.377348,0.0737084,0.626862,0.204235,0.910718,0.686811,0.663264,0.278116,0.777061,0.0893493,0.0880987,0.064814,0.855543,0.493127,0.179943,0.342607,0.423446,0.0647816,0.187853,0.204531,0.0697336,0.705042,0.388951,0.88522,0.118662,0.726069,0.510038,0.646089,0.721381,0.228935,0.00657618,0.736479,0.229004,0.660732,0.974108,0.397183,0.443766,0.85667,0.130543,0.312996,0.780266,0.458549,0.209379,0.971277,0.412795,0.195354,0.0384541,0.576578,0.461304,0.902325,0.938597,0.751676,0.81443,0.241683,0.857896,0.551467,0.267297,0.64591,0.992391,0.61093,0.354714,0.919607,0.274271,0.00510484,0.062497,0.458191,0.415636,0.878279,0.786909,0.134197,0.284571,0.0596752,0.229089,0.535485,0.313841,0.499139,0.248998,0.513523,0.38144,0.280288,0.192914,0.933505,0.461971,0.540366,0.191034,0.127728,0.627224,0.217928,0.228921,0.981453,0.660656,0.182665,0.0933951,0.0206798,0.553863,0.322439,0.932692,0.717065,0.88307,0.413497,0.403885,0.261074,0.693701,0.394259,0.430839,0.583679,0.871429,0.309787,0.259917,0.375031,0.646557,0.437185,0.302806,0.419911,0.198926,0.502226,0.744928,0.233001,0.794183,0.142965,0.060309,0.964182,0.732775,0.688729,0.383195,0.148748,0.0193822,0.312552,0.57612,0.567666,0.833306,0.405733,0.739209,0.840932,0.737204,0.918323,0.254602,0.573985,0.446876,0.156284,0.230643,0.420617,0.259227,0.245662,0.437072,0.344256,0.468111,0.117881,0.359545,0.0310749,0.42804,0.709315,0.0189096,0.483441,0.679853,0.376934,0.485024,0.903654,0.200342,0.29401,0.521634,0.253255,0.574078,0.580631,0.111238,0.460497,0.28383,0.488359,0.579334,0.203163,0.673643,0.226272,0.694,0.49752,0.923928,0.834288,0.611411,0.882084,0.317469,0.573636,0.591792,0.49019,0.591138,0.41183,0.427826,0.461585,0.406265,0.455331,0.96395,0.28482,0.778952,0.676724,0.412273,0.156717,0.913151,0.609629,0.993919,0.319553,0.143558,0.265618,0.760556,0.622684,0.157591,0.601255,0.527839,0.30633,0.515428,0.684134,0.823914,0.218938,0.85894,0.861777,0.454326,0.935659,0.65988,0.615739,0.327566,0.932751,0.83579,0.0861306,0.837121,0.618218,0.376833,0.302365,0.728171,0.650784,0.101461,0.610084,0.0407161,0.574292,0.506486,0.162606,0.999109,0.280847,0.163698,0.387019,0.753548,0.697983,0.178917,0.306011,0.651108,0.639912,0.476898,0.478238,0.800228,0.189403,0.498574,0.467621,0.0767904,0.205607,0.749747,0.220083,0.839831,0.323183,0.948451,0.813653,0.73017,0.302155,0.444278,0.856021,0.00529635,0.913352,0.260072,0.37455,0.260728,0.454943,0.486041,0.267244,0.591055,0.478478,0.811826,0.0879228,0.418888,0.428404,0.701531,0.447862,0.115762,0.723439,0.153975,0.189608,0.172477,0.07688,0.432481,0.374265,0.414179,0.428797,0.888864,0.750711,0.926463,0.209163,0.221889,0.984294,0.753429,0.859031,0.235703,0.951855,0.528138,0.402446,0.225946,0.874483,0.375606,0.59461,0.0563124,0.385293,0.862049,0.420334,0.900801,0.928871,0.161809,0.606921,0.697686,0.437481,0.485065,0.777032,0.793811,0.770866,0.758522,0.268895,0.788771,0.407812,0.675395,0.505041,0.55113,0.823868,0.0730726,0.728361,0.742212,0.423154,0.101599,0.108063,0.493183,0.00470787,0.192275,0.897511,0.375036,0.300378,0.29388,0.975212,0.843195,0.240203,0.972211,0.399828,0.486094,0.524373,0.600835,0.351383,0.740429,0.138969,0.936368,0.783034,0.423287,0.691644,0.149622,0.977997,0.575733,0.333989,0.620807,0.844398,0.118788,0.0019837,0.295382,0.777275,0.955776,0.759498,0.734351,0.0832414,0.956655,0.391943,0.176937,0.730869,0.620268,0.266366,0.166256,0.619291,0.827793,0.0136876,0.86557,0.852174,0.537591,0.131613,0.209767,0.338088,0.0645629,0.278436,0.676135,0.174063,0.767464,0.668787,0.702233,0.346441,0.468506,0.541799,0.878991,0.600216,0.913256,0.948651,0.967399,0.36277,0.654812,0.13737,0.0102164,0.267473,0.929087,0.487928,0.0601251,0.0873716,0.433449,0.0780563,0.733092,0.766682,0.290076,0.526666,0.391981,0.0418627,0.115312,0.804969,0.515909,0.0186043,0.482087,0.126021,0.959988,0.250795,0.559746,0.621903,0.898213,0.431865,0.716881,0.251267,0.343539,0.609201,0.145957,0.255685,0.95155,0.898183,0.457651,0.810484,0.931506,0.115802,0.515448,0.193217,0.843326,0.841903,0.26111,0.761094,0.991938,0.0673736,0.919565,0.618318,0.777165,0.399183,0.790912,0.295099,0.409388,0.756189,0.456966,0.86783,0.0513976,0.179492,0.0399259,0.0416266,0.853196,0.715603,0.742336,0.963322,0.195316,0.03403,0.390778,0.662192,0.175158,0.631028,0.663611,0.699051,0.49129,0.877182,0.928715,0.0228549,0.387768,0.577734,0.643178,0.0267969,0.285801,0.376495,0.0446883,0.027993,0.689998,0.0475979,0.378323,0.576345,0.0660175,0.747364,0.218767,0.974424,0.169898,0.468626,0.148127,0.0552779,0.60257,0.57918,0.880844,0.850601,0.711651,0.478668,0.192119,0.172245,0.580659,0.153619,0.298124,0.116306,0.794387,0.944303,0.354976,0.369596,0.0663295,0.274515,0.115209,0.196462,0.50144,0.748143,0.694486,0.592702,0.733685,0.316715,0.150162,0.52468,0.817316,0.452646,0.532015,0.688819,0.096049,0.367047,0.908166,0.691556,0.438889,0.477505,0.98921,0.170507,0.240137,0.163292,0.00699067,0.701641,0.44768,0.194618,0.516752,0.559185,0.33587,0.436593,0.587109,0.84829,0.263819,0.346515,0.776468,0.537965,0.703788,0.598709,0.307467,0.578731,0.420539,0.0637177,0.85068,0.921703,0.30795,0.164803,0.997141,0.443203,0.132567,0.938734,0.402548,0.246903,0.826733,0.360015,0.709551,0.639225,0.285877,0.972983,0.286516,0.452153,0.868543,0.126886,0.951547,0.455647,0.829487,0.544903,0.0795873,0.155536,0.221466,0.356398,0.0595918,0.221518,0.537293,0.765903,0.976104,0.439207,0.326399,0.269076,0.361556,0.276588,0.532877,0.878983,0.98191,0.0415996,0.656389,0.376087,0.713127,0.473467,0.461481,0.955645,0.0157831,0.403642,0.464293,0.245963,0.8249,0.330621,0.538505,0.227687,0.885366,0.372719,0.402925,0.772513,0.492669,0.257175,0.451779,0.999484,0.501058,0.919654,0.219954,0.956467,0.607018,0.138401,0.710016,0.840571,0.649931,0.194206,0.115577,0.714179,0.257149,0.998484,0.708873,0.114048,0.0727512,0.504577,0.4272,0.258178,0.496409,0.118293,0.00052917,0.354307,0.992258,0.645939,0.498641,0.749603,0.94484,0.075608,0.968777,0.411528,0.564454,0.857378,0.304217,0.325761,0.352948,0.890369,0.0308992,0.905552,0.270425,0.743346,0.947467,0.729231,0.647664,0.515384,0.302272,0.225876,0.550409,0.70189,0.17491,0.955273,0.183361,0.391548,0.637381,0.964176,0.64016,0.477925,0.0382472,0.77834,0.65076,0.248017,0.554158,0.208273,0.651473,0.316485,0.236052,0.81287,0.0108564,0.845592,0.0488479,0.7433,0.18174,0.170693,0.515847,0.378369,0.70512,0.283895,0.692033,0.846484,0.767654,0.830461,0.675368,0.134297,0.874591,0.815623,0.373669,0.612761,0.137712,0.859873,0.765791,0.9533,0.981145,0.377377,0.544536,0.939829,0.944398,0.469611,0.628998,0.931475,0.229844,0.758231,0.0885399,0.122794,0.856988,0.112687,0.500306,0.862937,0.764884,0.414314,0.814248,0.80342,0.119401,0.237175,0.487723,0.713045,0.662636,0.122347,0.258864,0.291237,0.560978,0.374159,0.503879,0.319702,0.148232,0.382526,0.435406,0.192621,0.650649,0.273264,0.624035,0.943664,0.340891,0.130928,0.103489,0.0968249,0.906258,0.00333583,0.43096,0.655983,0.163834,0.900249,0.661894,0.180286,0.819285,0.894916,0.730456,0.272631,|0.516665,0.333418,0.659557,0.470627,0.807666,0.160627,0.183236,0.400467,0.487059,0.741434,0.881525,0.0510517,0.0472659,0.553805,0.132385,0.407667,0.493367,0.347049,0.333499,0.815039,0.117101,0.952892,0.87343,0.0723578,0.238637,0.556632,0.1126,0.634212,0.0599328,0.381379,0.292568,0.433826,0.575937,0.468653,0.761852,0.700296,0.549746,0.246358,0.381224,0.0700663,0.690137,0.173892,0.524389,0.705805,0.164951,0.41507,0.538226,0.65615,0.327353,0.0168177,0.42659,0.491512,0.466862,0.908647,0.728157,0.312701,0.0676492,0.168719,0.27821,0.164495,0.80084,0.771385,0.18501,0.748102,0.638589,0.630219,0.70287,0.928308,0.787841,0.5501,0.94956,0.336765,0.0106322,0.369347,0.121049,0.0802626,0.83645,0.858668,0.0676982,0.394786,0.630762,0.0411619,0.155519,0.300097,0.151483,0.202587,0.547987,0.163675,0.686767,0.231853,0.1477,0.97722,0.0829635,0.173627,0.0685269,0.3314,0.37235,0.293658,0.604573,0.426292,0.203733,0.419219,0.0534441,0.687383,0.457211,0.569396,0.230813,0.957955,0.558658,0.792371,0.827563,0.130181,0.125862,0.325478,0.466768,0.512488,0.328672,0.978654,0.466046,0.912014,0.996125,0.77952,0.638442,0.455973,0.23591,0.278114,0.896864,0.330049,0.313077,0.540933,0.705959,0.991032,0.898115,0.976699,0.888259,0.403161,0.0931457,0.393002,0.447779,0.882772,0.156992,0.0186943,0.836143,0.159168,0.00188231,0.97161,0.536296,0.827308,0.803991,0.282251,0.110916,0.597216,0.716008,0.371752,0.112377,0.108275,0.941638,0.396093,0.984663,0.17877,0.00894511,0.954941,0.978644,0.554275,0.679259,0.549832,0.593853,0.189132,0.515769,0.85145,0.257843,0.303672,0.602535,0.306113,0.673493,0.728414,0.238641,0.315281,0.673343,0.391542,0.824569,0.612167,0.194279,0.627111,0.502522,0.29362,0.643025,0.495382,0.859373,0.781614,0.171042,0.592756,0.753136,0.120915,0.0769776,0.592514,0.255003,0.769347,0.566247,0.964657,0.88875,0.397426,0.277884,0.0195321,0.161616,0.411381,0.650975,0.586944,0.336347,0.782451,0.145213,0.174538,0.279977,0.403005,0.60217,0.486645,0.432176,0.2156,0.994001,0.668232,0.374032,0.106727,0.669631,0.540822,0.876358,0.0524935,0.744127,0.0365734,0.819607,0.445429,0.809679,0.442061,0.512455,0.927997,0.384562,0.813199,0.245179,0.170943,0.785496,0.850755,0.0840918,0.88119,0.992334,0.838659,0.0610961,0.686377,0.78522,0.834417,0.231201,0.615277,0.889093,0.252989,0.625692,0.164772,0.610247,0.691292,0.526863,0.501373,0.77532,0.865517,0.67594,0.916344,0.0134258,0.186028,0.909048,0.871974,0.325298,0.364626,0.478954,0.516151,0.123185,0.395464,0.207883,0.159231,0.879074,0.443902,0.577172,0.580655,0.476487,0.344513,0.00592971,0.903658,0.806658,0.454828,0.16828,0.143372,0.250125,0.697817,0.316431,0.187131,0.148562,0.814826,0.949513,0.833281,0.282633,0.458325,0.171794,0.53222,0.00784582,0.0187819,0.20041,0.866447,0.844317,0.0597967,0.114044,0.771182,0.155725,0.449725,0.167928,0.472219,0.822548,0.0309545,0.291066,0.90348,0.0870768,0.870467,0.264915,0.711459,0.724826,0.751344,0.266513,0.580103,0.603011,0.518202,0.201928,0.977311,0.867994,0.901769,0.189409,0.758027,0.762382,0.561003,0.710804,0.558257,0.74185,0.044606,0.287075,0.697161,0.182793,0.856632,0.837803,0.266456,0.782789,0.482509,0.631575,0.744594,0.417425,0.903746,0.183224,0.738932,0.937183,0.494868,0.375515,0.786724,0.884001,0.898,0.683116,0.430793,0.226917,0.744185,0.812246,0.559761,0.607471,0.957551,0.21474,0.770954,0.529219,0.817811,0.244007,0.0728843,0.596044,0.307457,0.0886145,0.0235506,0.0752248,0.067078,0.951012,0.198443,0.809559,0.107871,0.941687,0.434772,0.477208,0.97311,0.680472,0.253661,0.731843,0.585067,0.56414,0.79434,0.659213,0.116515,0.92514,0.269146,0.367167,0.48163,0.461489,0.883946,0.429523,0.0803427,0.275747,0.913363,0.141647,0.411911,0.672925,0.987519,0.796996,0.521526,0.199975,0.998803,0.963616,0.442517,0.335016,0.0241656,0.446838,0.766574,0.808673,0.0861821,0.505877,0.0600877,0.669938,0.262344,0.00366718,0.981179,0.295385,0.399254,0.643866,0.723563,0.250458,0.281231,0.937482,0.197539,0.803555,0.90196,0.847479,0.399124,0.797847,0.255059,0.11549,0.305371,0.506815,0.785855,0.473925,0.758882,0.179223,0.846489,0.992179,0.926686,0.606446,0.506987,0.223586,0.277103,0.775132,0.543245,0.216327,0.777396,0.387941,0.241002,0.217978,0.50638,0.646802,0.798787,0.144104,0.498,0.393078,0.809746,0.189023,0.796916,0.237649,0.433887,0.158143,0.917461,0.0157109,0.265777,0.483154,0.699574,0.00749964,0.396873,0.873627,0.836293,0.561886,0.738059,0.723771,0.289078,0.6819,0.0132698,0.15762,0.266249,0.294827,0.0676475,0.297319,0.378542,0.375903,0.353931,0.845461,0.0173835,0.71981,0.66782,0.479503,0.0775667,0.363847,0.755812,0.950073,0.948502,0.00893927,0.0527141,0.350978,0.0524394,0.472788,0.162476,0.838932,0.560935,0.369551,0.932227,0.515661,0.00222284,0.633788,0.374095,0.924025,0.0450338,0.00847507,0.771388,0.0356573,0.231072,0.644832,0.697402,0.812328,0.255641,0.531204,0.0184116,0.728103,0.476237,0.927419,0.750909,0.479395,0.138685,0.748598,0.559548,0.857455,0.236584,0.440982,0.297826,0.511182,0.501884,0.0247766,0.131322,0.381637,0.739446,0.24931,0.423485,0.0883969,0.976229,0.977652,0.601088,0.0327846,0.727739,0.806009,0.839593,0.574236,0.13233,0.882259,0.862794,0.35668,0.97057,0.395283,0.632703,0.201437,0.698179,0.595047,0.491642,0.467577,0.906594,0.54079,0.530691,0.344655,0.0976756,0.504233,0.498698,0.462091,0.174246,0.213572,0.608155,0.404695,0.926727,0.0518051,0.610404,0.265075,0.705865,0.734077,0.583625,0.387747,0.653498,0.179283,0.712428,0.851391,0.0846522,0.480463,0.060235,0.14881,0.0507024,0.131358,0.467781,0.802413,0.470514,0.0725613,0.368024,0.817061,0.399419,0.783888,0.727492,0.643747,0.491983,0.358861,0.678754,0.334735,0.460051,0.00297952,0.162191,0.282829,0.315459,0.536069,0.54578,0.973557,0.0876047,0.213255,0.213584,0.763056,0.387777,0.870799,0.342574,0.788529,0.931175,0.375855,0.370338,0.855433,0.0406197,0.404715,0.3208,0.569699,0.796175,0.263091,0.798233,0.418713,0.150923,0.465243,0.265403,0.310293,0.643662,0.0778161,0.184816,0.190237,0.274587,0.880396,0.342968,0.0682487,0.552172,0.441792,0.461731,0.742582,0.175789,0.912894,0.983765,0.97931,0.822947,0.660462,0.273944,0.927963,0.764983,0.0673363,0.882882,0.87483,0.730649,0.136089,0.711936,0.28856,2.563e-05,0.498256,0.498674,0.773166,0.447517,0.300419,0.739053,0.944676,0.835444,0.514115,0.947878,0.199548,0.0709096,0.549367,0.301835,0.766836,0.146894,0.369422,0.791947,0.300823,0.478118,0.583543,0.408145,0.519362,0.0961493,0.179009,0.123106,0.330407,0.546822,0.467367,0.213472,0.931252,0.252227,0.469517,0.853826,0.601167,0.394685,0.840269,0.517009,0.831276,0.387667,0.0957767,0.631901,0.0105894,0.228231,0.234915,0.905191,0.895126,0.0021928,0.831575,0.239897,0.13351,0.734282,0.916668,0.31859,0.934019,0.524599,0.629379,0.413319,0.620883,0.221689,0.225747,0.591747,0.275325,0.383498,0.404786,0.810255,0.909784,0.472984,0.622064,0.450018,0.714661,0.150605,0.192014,0.853211,0.261854,0.0443319,0.993472,0.742653,0.816075,0.0554383,0.305208,0.741786,0.666236,0.924307,0.403861,0.817123,0.279672,0.476072,0.328751,0.573474,0.951957,0.970138,0.511246,0.389208,0.489533,0.929944,0.345568,0.119407,0.560706,0.257551,0.0371245,0.723802,0.631539,0.943234,0.198925,0.114588,0.0473188,0.0755691,0.848061,0.655772,0.155489,0.0182248,0.824911,0.32537,0.778808,0.433684,0.186648,0.243658,0.54767,0.0125378,0.644458,0.100568,0.1581,0.92215,0.104026,0.470855,0.755189,0.173604,0.0314548,0.821126,0.724809,0.914927,0.784543,0.86167,0.740429,0.68859,0.410591,0.305045,0.935778,0.949033,0.147679,0.497651,0.0739887,0.426197,0.289715,0.538537,0.386627,0.875014,0.718133,0.337086,0.377542,0.0207171,0.913754,0.0661294,0.877105,0.00763535,0.876119,0.421306,0.597756,0.423038,0.212197,0.373285,0.348108,0.866484,0.922156,0.171309,0.642484,0.873151,0.938303,0.508263,0.169713,0.84292,0.7198,0.330209,0.186869,0.449387,0.0379195,0.549339,0.871934,0.401331,0.793792,0.466261,0.622739,0.540652,0.977312,0.968831,0.351973,0.640589,0.174739,0.2731,0.966203,0.804989,0.609722,0.0633429,0.995564,0.932163,0.0451225,0.991492,0.313608,0.401114,0.840643,0.513233,0.689421,0.433357,0.618929,0.238221,0.893652,0.905627,0.444594,0.896086,0.0800471,0.274257,0.916718,0.276459,0.275378,0.211612,0.116401,0.463253,0.212428,0.38527,0.293925,0.987974,0.0273653,0.351196,0.00648463,0.772933,0.827784,0.40769,0.801676,0.387125,0.948658,0.430961,0.70503,0.909848,0.217023,0.433353,0.63842,0.638901,0.691941,0.820902,0.691337,0.292621,0.436044,0.557701,0.79869,0.689671,0.879936,0.0163428,0.991135,0.455539,0.0540099,0.647864,0.523377,0.959504,0.762793,0.177796,0.622125,0.531252,0.182159,0.965561,0.298005,0.337644,0.288375,0.833357,0.12293,0.599759,0.744381,0.099884,0.115905,0.620216,0.429016,0.888157,0.616264,0.455879,0.533957,0.715972,0.212522,0.753733,0.132207,0.36734,0.871704,0.958734,0.94751,0.328238,0.354127,0.526393,0.252873,0.18806,0.0519946,0.53871,0.781091,0.926791,0.957611,0.157164,0.699643,0.758393,0.248553,0.945335,0.675072,0.739891,0.360715,0.0518384,0.770647,0.30022,0.641165,0.330042,0.793932,0.503378,0.482582,0.142932,0.774544,0.477715,0.0537121,0.537153,0.42994,0.0761125,0.53819,0.613498,0.0675815,0.567447,0.458048,0.549328,0.183553,0.146866,|0.8915,0.0364037,0.175036,0.0854256,0.486397,0.665069,0.857132,0.575946,0.313617,0.419732,0.875194,0.790095,0.217267,0.0701491,0.872824,0.0874366,0.394007,0.39813,0.160521,0.116149,0.124385,0.525689,0.77903,0.566052,0.985995,0.603167,0.0358301,0.180312,0.499884,0.67076,0.387807,0.441111,0.19968,0.160984,0.832475,0.998215,0.166846,0.362598,0.189946,0.0381856,0.55849,0.473106,0.123161,0.355163,0.534886,0.507367,0.0688202,0.722038,0.634535,0.408767,0.377843,0.587172,0.143287,0.43257,0.0191553,0.0877748,0.572654,0.811626,0.949959,0.346802,0.321945,0.899235,0.905665,0.386263,0.919781,0.712523,0.0201178,0.379171,0.265302,0.0486422,0.874698,0.21734,0.678995,0.588839,0.171258,0.939008,0.767242,0.541106,0.306606,0.993335,0.855043,0.181363,0.336034,0.827318,0.32486,0.57833,0.385646,0.30248,0.804645,0.323593,0.19266,0.362125,0.540873,0.760593,0.12424,0.99371,0.698177,0.921734,0.998783,0.341532,0.930337,0.473773,0.427495,0.943879,0.838987,0.228578,0.00793207,0.948283,0.944286,0.829416,0.644708,0.0800762,0.101907,0.434209,0.709513,0.312423,0.289858,0.250668,0.554874,0.207319,0.243676,0.336074,0.769018,0.977357,0.39407,0.78741,0.382503,0.725596,0.484185,0.677009,0.959264,0.062275,0.759385,0.525226,0.802806,0.0132739,0.538202,0.648629,0.0362116,0.541876,0.707821,0.973887,0.021748,0.429543,0.292683,0.81504,0.782296,0.361966,0.897386,0.681908,0.24152,0.314434,0.661066,0.223847,0.517095,0.406079,0.0909334,0.566297,0.645481,0.972268,0.08247,0.891891,0.717289,0.0921463,0.701266,0.599628,0.508749,0.137036,0.863446,0.151737,0.197719,0.132221,0.200469,0.907259,0.302551,0.94699,0.0567693,0.19346,0.251706,0.663905,0.913864,0.485278,0.596182,0.954419,0.809288,0.685309,0.295987,0.617513,0.952243,0.465592,0.485373,0.363288,0.950828,0.820964,0.389612,0.854222,0.644391,0.554984,0.389243,0.984252,0.225646,0.897009,0.339411,0.0367842,0.560207,0.67406,0.750186,0.0961295,0.498757,0.0139657,0.108074,0.571917,0.769739,0.588511,0.45881,0.554126,0.0613499,0.726916,0.594383,0.474449,0.414264,0.602187,0.617329,0.562964,0.804833,0.0963135,0.0247283,0.484045,0.970953,0.903173,0.150704,0.230585,0.597104,0.101708,0.465995,0.468037,0.177227,0.847105,0.0498381,0.155541,0.0914817,0.872257,0.911627,0.148801,0.574201,0.483762,0.849019,0.201162,0.834424,0.848564,0.938013,0.480678,0.855317,0.301112,0.711119,0.299749,0.8659,0.865701,0.825109,0.257406,0.819941,0.128127,0.169608,0.354575,0.825881,0.618413,0.0293394,0.0299307,0.609933,0.625738,0.563152,0.338656,0.912136,0.333242,0.124922,0.470439,0.9922,0.731966,0.0247109,0.443609,0.0757111,0.402269,0.933461,0.43732,0.0559472,0.728094,0.958758,0.434151,0.974645,0.209063,0.858088,0.697184,0.360406,0.236785,0.946941,0.0590406,0.301263,0.896024,0.630413,0.061631,0.417933,0.487278,0.159478,0.544977,0.368128,0.551944,0.729103,0.0449401,0.975946,0.0437154,0.146477,0.867269,0.625906,0.690438,0.518719,0.812503,0.843657,0.295546,0.0561875,0.29007,0.201252,0.584974,0.285419,0.963131,0.385657,0.440953,0.322634,0.410671,0.0780861,0.398666,0.934812,0.0857558,0.731029,0.0734104,0.986323,0.0148582,0.392791,0.537552,0.113715,0.600545,0.92672,0.473246,0.745704,0.945298,0.0827829,0.319948,0.137611,0.859566,0.555288,0.362813,0.902185,0.278731,0.412349,0.482183,0.378304,0.817037,0.00252396,0.0766003,0.945718,0.387461,0.651945,0.845645,0.781503,0.0483637,0.401469,0.423705,0.264124,0.339349,0.948462,0.436431,0.759948,0.269045,0.165836,0.892061,0.670782,0.975945,0.662466,0.240867,0.80049,0.953023,0.071892,0.0404292,0.946213,0.234947,0.907687,0.642979,0.465641,0.311226,0.303624,0.98476,0.175916,0.0257782,0.727294,0.209296,0.358091,0.566232,0.513831,0.35984,0.131979,0.506733,0.498066,0.617316,0.257398,0.95932,0.36806,0.927621,0.410574,0.382146,0.381693,0.795483,0.385591,0.133731,0.823514,0.605655,0.243962,0.221038,0.94796,0.26328,0.474728,0.901865,0.272354,0.420184,0.191339,0.528495,0.48008,0.334221,0.390812,0.30376,0.93381,0.761176,0.3645,0.0181217,0.0391265,0.901134,0.0118671,0.682266,0.46555,0.60634,0.472149,0.864383,0.526033,0.604613,0.170084,0.284396,0.95212,0.308543,0.588021,0.0970375,0.461587,0.79441,0.146153,0.637051,0.0748531,0.330628,0.201514,0.688537,0.161776,0.457341,0.503672,0.775852,0.470487,0.160652,0.696664,0.864915,0.698655,0.137885,0.138161,0.423721,0.737158,0.501344,0.55261,0.79703,0.738725,0.975409,0.676083,0.647549,0.723042,0.931378,0.553523,0.124171,0.991696,0.19361,0.495539,0.0128099,0.882997,0.0636165,0.138892,0.893253,0.16373,0.721215,0.196468,0.57672,0.798034,0.0522958,0.476731,0.293302,0.593967,0.418692,0.118282,0.421667,0.639153,0.763238,0.890154,0.321845,0.101296,0.433298,0.224643,0.728411,0.178746,0.171316,0.908691,0.484107,0.486023,0.565376,0.783784,0.327821,0.442124,0.574851,0.813428,0.0718179,0.0525507,0.255573,0.712888,0.751646,0.781657,0.356723,0.485504,0.699944,0.939692,0.621543,0.701837,0.03473,0.60104,0.981866,0.75869,0.417033,0.525368,0.782734,0.238001,0.157474,0.607419,0.232716,0.79913,0.697286,0.442715,0.367573,0.204683,0.00170851,0.998533,0.871297,0.467858,0.674281,0.136508,0.46675,0.158715,0.924159,0.534583,0.665915,0.73723,0.595011,0.559529,0.152192,0.0733007,0.818202,0.738377,0.167648,0.206717,0.845103,0.766679,0.981662,0.664715,0.168972,0.326569,0.257624,0.410574,0.884702,0.0981323,0.939994,0.197812,0.91353,0.508414,0.885636,0.530943,0.0425907,0.377651,0.54321,0.165338,0.154529,0.336541,0.602264,0.210404,0.349531,0.868116,0.997953,0.45383,0.543559,0.524388,0.0711696,0.288525,0.943297,0.821897,0.0463975,0.492026,0.00272512,0.944737,0.393406,0.577981,0.37772,0.305675,0.20837,0.80002,0.142753,0.0979328,0.918865,0.139207,0.57354,0.0962207,0.289733,0.341628,0.954204,0.261429,0.298322,0.641679,0.381882,0.503296,0.227743,0.493383,0.25134,0.905332,0.694369,0.880202,0.0658168,0.840734,0.405617,0.698824,0.00526732,0.6858,0.906074,0.753073,0.648378,0.152683,0.372002,0.569613,0.281,0.775937,0.878994,0.680682,0.724396,0.69279,0.525169,0.434692,0.535652,0.440463,0.406901,0.341328,0.373401,0.301873,0.561327,0.833709,0.894748,0.127818,0.727052,0.991387,0.920895,0.508896,0.139055,0.69144,0.89966,0.133688,0.573633,0.685012,0.479041,0.385561,0.299739,0.596469,0.901468,0.237627,0.602453,0.193327,0.923142,0.865471,0.237905,0.637819,0.856154,0.121711,0.591088,0.162794,0.180312,0.928337,0.737394,0.807265,0.785325,0.419766,0.713057,0.605302,0.264363,0.968468,0.599389,0.957307,0.922099,0.900813,0.884203,0.0244607,0.0987613,0.879246,0.314092,0.868035,0.232147,0.310199,0.790378,0.554545,0.538612,0.322609,0.713544,0.484868,0.151936,0.559708,0.252557,0.753448,0.123862,0.527056,0.042702,0.00365782,0.466493,0.0495859,0.454301,0.0556319,0.00652468,0.39068,0.227652,0.253078,0.749895,0.327086,0.272969,0.151993,0.527436,0.857121,0.731852,0.288187,0.376784,0.806033,0.0659089,0.939934,0.856486,0.427245,0.616854,0.672837,0.571718,0.676301,0.945342,0.924058,0.996253,0.600381,0.509338,0.387798,0.960949,0.102414,0.375748,0.892944,0.281544,0.956395,0.762314,0.905298,0.792245,0.385124,0.371671,0.582647,0.400572,0.371491,0.718331,0.554542,0.893697,0.875008,0.908446,0.0899977,0.8745,0.430927,0.448065,0.35654,0.814352,0.883013,0.857077,0.960345,0.544293,0.918165,0.994439,0.287954,0.837906,0.877062,0.5896,0.287444,0.654731,0.748181,0.409169,0.875454,0.458053,0.964334,0.469716,0.60205,0.937105,0.396623,0.281979,0.471048,0.159872,0.554355,0.299407,0.995837,0.516571,0.726528,0.0777441,0.0347196,0.310003,0.214591,0.849345,0.177832,0.493644,0.624066,0.5734,0.036611,0.732435,0.894096,0.352283,0.869215,0.90502,0.565492,0.667248,0.680398,0.313719,0.405738,0.749306,0.756938,0.103317,0.167385,0.879954,0.695237,0.460631,0.724719,0.371969,0.173633,0.869362,0.590424,0.961445,0.979183,0.240403,0.91931,0.393396,0.912357,0.760845,0.0818583,0.660721,0.45821,0.127058,0.802414,0.617769,0.366407,0.303897,0.94551,0.607951,0.234869,0.955971,0.657579,0.93531,0.694773,0.674655,0.0855086,0.648148,0.89827,0.991552,0.819344,0.197716,0.217012,0.918879,0.308442,0.83875,0.160269,0.244341,0.0295121,0.415739,0.461284,0.680308,0.438264,0.352653,0.761348,0.382753,0.831757,0.36307,0.76631,0.356417,0.536362,0.890862,0.945433,0.119116,0.223355,0.789933,0.0949512,0.17116,0.218702,0.552594,0.574685,0.873169,0.629776,0.730821,0.898601,0.564941,0.0195863,0.273265,0.918519,0.97581,0.801268,0.111765,0.977682,0.576405,0.359033,0.745271,0.881155,0.765102,0.932156,0.84803,0.736363,0.43953,0.51369,0.122868,0.698621,0.738138,0.441123,0.751965,0.0193297,0.532553,0.0975755,0.515548,0.314713,0.846066,0.787002,0.0873153,0.176848,0.570344,0.773022,0.00313812,0.100609,0.458389,0.828763,0.165472,0.574627,0.773287,0.426612,0.733366,0.423576,0.166943,0.177943,0.319764,0.550001,0.0121146,0.868741,0.641733,0.0146101,0.501404,0.263624,0.734776,0.887013,0.661681,0.715513,0.667615,0.456873,0.94412,0.12337,0.314489,0.362083,0.508803,0.884101,0.325896,0.376182,0.341832,0.668634,0.351239,0.991678,0.663743,0.0324746,0.462482,0.654622,0.101284,0.0849468,0.0779074,0.953064,0.736031,0.885161,0.444174,0.241397,0.296486,0.235547,0.182215,0.915884,0.179262,0.125434,0.82022,0.844326,0.771281,0.120908,0.288964,0.359172,0.5655,|0.513554,0.283807,0.672083,0.633665,0.215461,0.754057,0.370117,0.83134,0.0090304,0.578463,0.774717,0.00637388,0.368408,0.716268,0.0862859,0.396006,0.0890718,0.350088,0.448321,0.385314,0.637739,0.87543,0.91693,0.540366,0.109481,0.566986,0.124624,0.396333,0.260603,0.513529,0.4896,0.241315,0.664592,0.713377,0.22833,0.474912,0.760145,0.734637,0.172906,0.213208,0.885451,0.0803868,0.70292,0.429222,0.0242692,0.540972,0.408212,0.562335,0.932933,0.448877,0.257288,0.460634,0.673559,0.485849,0.0333461,0.325557,0.618583,0.248247,0.819083,0.252803,0.882461,0.941465,0.19879,0.605766,0.238901,0.399722,0.56532,0.280036,0.0609933,0.2684,0.770179,0.176357,0.761481,0.626115,0.675254,0.721943,0.452205,0.752266,0.57788,0.670666,0.443006,0.76229,0.216357,0.569033,0.345747,0.200051,0.226119,0.242247,0.759846,0.725963,0.870202,0.382421,0.516037,0.652498,0.523694,0.00316399,0.680447,0.00567561,0.58214,0.789731,0.617674,0.520007,0.115158,0.876587,0.411823,0.462754,0.0958481,0.661533,0.586067,0.186064,0.40386,0.471952,0.739728,0.850878,0.909528,0.638803,0.665641,0.471744,0.483151,0.279101,0.511018,0.964819,0.725564,0.0812187,0.0199562,0.268315,0.697666,0.0738773,0.838491,0.668306,0.113547,0.412816,0.126726,0.285527,0.601009,0.0536661,0.559601,0.849005,0.835568,0.392533,0.086073,0.248983,0.396705,0.831487,0.480851,0.401199,0.424706,0.367625,0.202318,0.14508,0.771512,0.182076,0.765523,0.444055,0.946959,0.357597,0.218696,0.846444,0.440789,0.25171,0.384536,0.354797,0.450662,0.92432,0.598275,0.962452,0.462159,0.390283,0.180479,0.29985,0.244938,0.839207,0.538549,0.00718564,0.213438,0.961724,0.23673,0.439731,0.990305,0.173494,0.526385,0.12133,0.88942,0.874736,0.821288,0.59837,0.905687,0.76992,0.773521,0.67259,0.407012,0.940033,0.153449,0.575637,0.613953,0.9752,0.145562,0.877364,0.54689,0.4335,0.0499069,0.15915,0.341867,0.74082,0.00649112,0.211229,0.0469001,0.806822,0.897133,0.615144,0.0706139,0.82701,0.716733,0.931402,0.0553609,0.324516,0.823698,0.397261,0.350347,0.237978,0.323401,0.0172044,0.372526,0.868692,0.168303,0.533997,0.321996,0.365578,0.761534,0.314007,0.289867,0.411578,0.948217,0.349614,0.505496,0.298681,0.185394,0.85503,0.852445,0.764412,0.520483,0.401836,0.833255,0.32165,0.0264446,0.77128,0.842507,0.561809,0.249572,0.470696,0.900062,0.482809,0.0287895,0.0544872,0.859274,0.661533,0.120493,0.214878,0.0935508,0.774993,0.675358,0.00906718,0.830361,0.366261,0.713663,0.557015,0.262504,0.0940952,0.542561,0.921895,0.640619,0.157374,0.189682,0.425526,0.195296,0.149366,0.680763,0.608366,0.12628,0.949803,0.851913,0.6322,0.612116,0.322734,0.439871,0.997073,0.314731,0.288591,0.116057,0.781594,0.424347,0.936242,0.272471,0.209667,0.0143713,0.213261,0.661128,0.424591,0.877197,0.0750321,0.22705,0.484546,0.425499,0.790735,0.853094,0.116784,0.752678,0.514869,0.631461,0.41109,0.742757,0.423428,0.93747,0.677642,0.0553384,0.065733,0.489825,0.615836,0.620119,0.814874,0.384178,0.262914,0.526957,0.933094,0.162668,0.246699,0.296746,0.903267,0.638837,0.721618,0.0768371,0.555734,0.113458,0.0573113,0.510376,0.920374,0.629411,0.936875,0.225648,0.242943,0.682388,0.654441,0.617367,0.834197,0.288737,0.24072,0.408423,0.690969,0.6963,0.449429,0.571692,0.756585,0.150727,0.515417,0.499613,0.29752,0.293154,0.868646,0.818752,0.813398,0.106418,0.844283,0.595603,0.724505,0.784566,0.990757,0.0140851,0.917126,0.838007,0.53698,0.908435,0.89955,0.147949,0.16226,0.446364,0.762007,0.897527,0.00518775,0.855914,0.931781,0.0568151,0.269184,0.495165,0.50088,0.566476,0.770117,0.45589,0.924805,0.926268,0.784599,0.557903,0.22607,0.0454346,0.684838,0.445219,0.908826,0.826167,0.650966,0.17062,0.994246,0.421568,0.830186,0.733131,0.938005,0.148963,0.18581,0.499695,0.381288,0.0742548,0.784016,0.82561,0.214828,0.079863,0.231357,0.508569,0.963528,0.0230346,0.564968,0.053569,0.668881,0.341762,0.58198,0.930078,0.323477,0.436032,0.754632,0.140282,0.0798911,0.701121,0.806046,0.825439,0.585016,0.643499,0.405626,0.765777,0.812565,0.156519,0.456204,0.509891,0.608255,0.0504012,0.840892,0.861317,0.682707,0.493042,0.81448,0.490176,0.165765,0.0910622,0.769708,0.301358,0.757025,0.0849223,0.885131,0.427816,0.909694,0.859725,0.021138,0.579206,0.773299,0.0205684,0.590923,0.695377,0.376882,0.46321,0.753888,0.0536407,0.772669,0.0977963,0.548519,0.382371,0.968491,0.581977,0.46458,0.0389202,0.0861101,0.964661,0.129174,0.712027,0.224263,0.587211,0.371509,0.929842,0.971129,0.141395,0.0951967,0.240691,0.868692,0.983768,0.722059,0.435916,0.799592,0.821042,0.864901,0.0832136,0.110735,0.0405799,0.914978,0.195598,0.855499,0.517856,0.58525,0.688035,0.561658,0.571531,0.262918,0.622248,0.125952,0.899328,0.529615,0.874201,0.260232,0.681659,0.126282,0.657631,0.529371,0.380119,0.1039,0.46029,0.700964,0.424924,0.274794,0.461475,0.410904,0.641944,0.969608,0.56306,0.203848,0.301951,0.268996,0.976766,0.661063,0.777751,0.207521,0.756843,0.225363,0.595512,0.917028,0.515446,0.417993,0.521331,0.293751,0.86514,0.592141,0.886297,0.753107,0.0448453,0.0849935,0.210916,0.445273,0.877849,0.653487,0.598814,0.422185,0.410436,0.816365,0.900108,0.252986,0.116907,0.74411,0.620738,0.125285,0.00265759,0.874881,0.53748,0.220104,0.159758,0.610452,0.61782,0.0943058,0.244783,0.572999,0.0482544,0.56516,0.989315,0.413471,0.148304,0.728295,0.275094,0.625325,0.524575,0.448053,0.820492,0.605752,0.490444,0.755691,0.497393,0.826426,0.0105935,0.741237,0.09749,0.703828,0.662395,0.658498,0.0248401,0.819149,0.842345,0.891857,0.409914,0.831558,0.331747,0.0665424,0.15715,0.478052,0.151317,0.830696,0.0731081,0.387625,0.348427,0.0701956,0.128399,0.806738,0.958713,0.67285,0.782369,0.32462,0.753398,0.842808,0.877521,0.957033,0.942442,0.258406,0.598093,0.0212382,0.12781,0.759819,0.732046,0.134608,0.10274,0.264275,0.879198,0.527235,0.675342,0.135492,0.997891,0.213811,0.203705,0.900184,0.585484,0.507433,0.511147,0.61551,0.189082,0.385833,0.220882,0.394018,0.644616,0.202964,0.793482,0.695902,0.307675,0.0889567,0.819999,0.288464,0.207142,0.719263,0.77871,0.356415,0.448361,0.910976,0.38055,0.524096,0.132932,0.336926,0.735377,0.133419,0.619089,0.710372,0.591868,0.714664,0.012616,0.63963,0.529116,0.798364,0.176695,0.909978,0.879541,0.336966,0.437232,0.824219,0.134557,0.524351,0.736381,0.294723,0.153717,0.777826,0.536225,0.928668,0.696342,0.260829,0.348609,0.0984374,0.968047,0.0174412,0.797268,0.184817,0.6899,0.7965,0.884653,0.850775,0.815924,0.180846,0.546962,0.648925,0.0524668,0.361668,0.796751,0.582432,0.43673,0.426804,0.849787,0.799658,0.470711,0.223915,0.710441,0.301086,0.82385,0.908885,0.552254,0.243093,0.878649,0.914364,0.99719,0.514276,0.859457,0.878416,0.217314,0.178669,0.462607,0.332242,0.329407,0.592785,0.706762,0.72059,0.45796,0.97978,0.729938,0.307977,0.966375,0.423821,0.978705,0.202949,0.410209,0.163383,0.339656,0.501362,0.126892,0.219959,0.668085,0.70351,0.704391,0.548674,0.365049,0.0639372,0.318613,0.241129,0.823337,0.365801,0.49262,0.820691,0.96253,0.48475,0.319672,0.436334,0.668441,0.807576,0.904774,0.648757,0.962347,0.836027,0.924369,0.123255,0.261077,0.87691,0.195142,0.40299,0.0118787,0.731793,0.577369,0.762634,0.913181,0.88253,0.514951,0.720964,0.838396,0.819069,0.338615,0.694902,0.0842539,0.396513,0.0177482,0.662365,0.641148,0.887998,0.616015,0.584245,0.434264,0.26856,0.122709,0.889411,0.517253,0.0664939,0.032186,0.0629998,0.417619,0.715828,0.361759,0.65193,0.56224,0.44754,0.273629,0.129861,0.421264,0.112589,0.298847,0.14631,0.311943,0.990632,0.966682,0.164172,0.714088,0.510951,0.111688,0.928527,0.818215,0.607305,0.0544378,0.0826265,0.354103,0.979871,0.785173,0.78624,0.457902,0.652513,0.412314,0.995513,0.410895,0.281949,0.927662,0.724086,0.90471,0.362498,0.268958,0.387254,0.678155,0.928879,0.356722,0.898224,0.52835,0.930131,0.137866,0.348531,0.777246,0.355005,0.609613,0.255241,0.644748,0.319781,0.538437,0.305126,0.783101,0.677874,0.652997,0.303211,0.662189,0.766195,0.0540679,0.44634,0.621198,0.460484,0.348992,0.0321566,0.140852,0.200566,0.459249,0.616452,0.441633,0.506229,0.639857,0.79681,0.880341,0.461805,0.324475,0.477145,0.555627,0.30066,0.269736,0.8078,0.557391,0.232502,0.737883,0.696563,0.3216,0.0727172,0.190073,0.482229,0.14768,0.255768,0.0719142,0.716341,0.287965,0.432384,0.121686,0.306589,0.828065,0.878105,0.654108,0.103536,0.0319123,0.674784,0.959796,0.00366551,0.926754,0.54382,0.778307,0.210547,0.912838,0.0703178,0.897064,0.303891,0.287597,0.761123,0.400673,0.07825,0.1427,0.0889569,0.781681,0.601105,0.276268,0.040202,0.484122,0.141513,0.443098,0.0139746,0.0551091,0.024959,0.946137,0.518178,0.490381,0.624331,0.198636,0.406299,0.560066,0.247608,0.357199,0.122957,0.243294,0.549845,0.811618,0.409782,0.0305321,0.304153,0.890312,0.505185,0.344872,0.876683,0.541873,0.664835,0.276143,0.432636,0.895493,0.209729,0.467919,0.988388,0.252528,0.555303,0.994383,0.251281,0.246308,0.0323848,0.81681,0.529102,0.54484,0.263429,0.066712,0.47294,0.508852,0.570726,0.693484,0.232572,0.170656,0.686341,0.213599,0.0330395,0.68433,0.314117,0.0938022,0.863049,0.498447,0.378236,0.256744,0.913287,0.960529,0.423537,0.383964,0.0148964,0.992719,0.766354,0.563292,0.623722,|0.790554,0.980241,0.203843,0.210848,0.736391,0.346164,0.0858383,0.33393,0.854324,0.370956,0.438712,0.159328,0.840542,0.971543,0.0366969,0.601914,0.896528,0.947847,0.690039,0.395435,0.833136,0.397864,0.579865,0.620877,0.59253,0.946876,0.720291,0.782643,0.796384,0.791741,0.494782,0.486287,0.475639,0.645554,0.873761,0.271524,0.42243,0.135449,0.367461,0.517857,0.441532,0.129078,0.84103,0.0950356,0.638291,0.386687,0.783975,0.890012,0.193256,0.957688,0.676997,0.80291,0.236533,0.013163,0.609486,0.108119,0.888851,0.389355,0.35999,0.321748,0.572328,0.0225046,0.255088,0.683341,0.584908,0.343024,0.44089,0.0556667,0.354441,0.658505,0.656266,0.0891373,0.389955,0.897771,0.811632,0.420533,0.281491,0.515068,0.592945,0.835386,0.699296,0.865978,0.0485497,0.787896,0.0135716,0.255044,0.263117,0.90242,0.902983,0.3852,0.478315,0.607587,0.677586,0.210392,0.700977,0.829123,0.0897948,0.161523,0.677415,0.267373,0.232502,0.222073,0.638464,0.844864,0.323564,0.00552261,0.175726,0.0255135,0.895453,0.289132,0.475962,0.710823,0.0329606,0.548726,0.799369,0.106998,0.472206,0.12697,0.173944,0.825203,0.809801,0.584104,0.0329469,0.731839,0.573833,0.327442,0.231664,0.312736,0.19391,0.524017,0.335318,0.0951526,0.555887,0.624818,0.952464,0.0144308,0.978465,0.178477,0.507851,0.464996,0.817616,0.794192,0.934641,0.00654584,0.229903,0.526207,0.0961475,0.458985,0.850262,0.547045,0.654912,0.388404,0.117913,0.874515,0.190052,0.974613,0.718675,0.364825,0.465952,0.866652,0.463589,0.765691,0.835564,0.681011,0.644613,0.840628,0.924912,0.942197,0.215151,0.543674,0.109464,0.57503,0.889226,0.911878,0.691675,0.649016,0.00950295,0.225584,0.321018,0.994039,0.648961,0.630966,0.185503,0.0882753,0.266277,0.458266,0.562324,0.970988,0.900825,0.0580902,0.602435,0.32104,0.95258,0.769954,0.198173,0.00152057,0.414101,0.855944,0.546391,0.271106,0.702548,0.596783,0.59378,0.77393,0.123023,0.107035,0.28663,0.177881,0.46777,0.563637,0.225051,0.385112,0.242807,0.78181,0.664434,0.607337,0.461216,0.462256,0.197469,0.375003,0.833525,0.854642,0.632329,0.55214,0.939268,0.101927,0.0168422,0.724539,0.965425,0.437749,0.764051,0.509427,0.148032,0.449078,0.954281,0.6291,0.3045,0.401792,0.397058,0.398145,0.490638,0.701431,0.540183,0.294207,0.148731,0.0710927,0.71478,0.0329208,0.814181,0.200262,0.0351149,0.516912,0.623344,0.913665,0.704574,0.408857,0.423382,0.926223,0.70673,0.512317,0.0367864,0.730948,0.269129,0.505555,0.966601,0.763968,0.249342,0.27976,0.0269602,0.586104,0.219013,0.588803,0.226592,0.677482,0.476951,0.760488,0.730172,0.368687,0.726758,0.205158,0.240407,0.332274,0.902309,0.144998,0.732424,0.383649,0.128763,0.0947438,0.77143,0.461857,0.247737,0.630125,0.0283187,0.81104,0.922861,0.959047,0.186364,0.140628,0.195194,0.882129,0.631344,0.602635,0.286245,0.85566,0.964938,0.47376,0.763312,0.359942,0.33428,0.268891,0.97125,0.289946,0.979835,0.533383,0.749038,0.296913,0.395211,0.780959,0.544578,0.732019,0.320245,0.373118,0.571835,0.0587521,0.846828,0.56021,0.5769,0.655173,0.194019,0.969033,0.705391,0.739579,0.0783607,0.972927,0.621161,0.535977,0.622163,0.351614,0.310827,0.0438555,0.881137,0.460859,0.729463,0.882835,0.29171,0.239386,0.382224,0.815357,0.226078,0.594069,0.976652,0.970997,0.0481349,0.329326,0.742398,0.56369,0.670444,0.579449,0.456403,0.186602,0.345993,0.355184,0.0328674,0.0308594,0.265116,0.966226,0.943258,0.220845,0.77362,0.61082,0.135425,0.318284,0.457231,0.117236,0.0520228,0.124445,0.828722,0.303315,0.851442,0.124694,0.606037,0.811713,0.155353,0.774402,0.875705,0.242402,0.800634,0.598198,0.640975,0.185659,0.37241,0.213431,0.351564,0.467567,0.710303,0.453838,0.66277,0.691754,0.192579,0.282741,0.457579,0.782735,0.215703,0.292181,0.460885,0.678437,0.575979,0.648993,0.220617,0.735054,0.404015,0.166976,0.924773,0.665916,0.376163,0.40629,0.554739,0.396864,0.959223,0.348268,0.906928,0.427151,0.745824,0.806411,0.828338,0.31619,0.422867,0.0570371,0.465789,0.469422,0.415577,0.27582,0.690731,0.666314,0.0373072,0.53637,0.648905,0.997898,0.400901,0.810212,0.578064,0.00942659,0.924127,0.887293,0.926144,0.592765,0.73135,0.317603,0.931091,0.0417012,0.79025,0.923771,0.600564,0.73462,0.178542,0.84129,0.536441,0.238066,0.931526,0.490676,0.447131,0.510536,0.234168,0.0496839,0.869906,0.829353,0.86098,0.268658,0.0486569,0.905722,0.96114,0.504015,0.613616,0.892496,0.329565,0.472213,0.0343607,0.74864,0.692982,0.586337,0.119378,0.840511,0.466634,0.447347,0.310562,0.250398,0.609437,0.370947,0.385833,0.46588,0.300967,0.544557,0.791978,0.910107,0.518252,0.813505,0.130123,0.0593688,0.690153,0.436619,0.92163,0.653045,0.464846,0.0492405,0.192561,0.846818,0.989491,0.353166,0.99213,0.0567837,0.614642,0.118639,0.485716,0.122393,0.253648,0.412453,0.631855,0.479349,0.457914,0.632271,0.615685,0.342956,0.111162,0.40254,0.192646,0.0142837,0.723274,0.232677,0.86375,0.351059,0.801338,0.352281,0.035167,0.658671,0.520124,0.192781,0.937964,0.552949,0.813049,0.797088,0.53234,0.702484,0.454247,0.542956,0.60906,0.39865,0.44464,0.984552,0.778238,0.946863,0.795911,0.0221882,0.845068,0.444842,0.160846,0.875836,0.943251,0.75197,0.441274,0.0414199,0.845918,0.995325,0.00068146,0.79253,0.390938,0.478604,0.309061,0.869221,0.631345,0.616465,0.342243,0.566988,0.315439,0.362634,0.966299,0.689146,0.443199,0.388977,0.306829,0.387322,0.132981,0.307141,0.158078,0.704946,0.0218241,0.363359,0.602376,0.725412,0.987069,0.303783,0.695907,0.513242,0.223855,0.314834,0.526122,0.650376,0.806322,0.428468,0.433401,0.339914,0.991121,0.521917,0.59013,0.394959,0.652375,0.190474,0.346177,0.198161,0.315133,0.633254,0.99103,0.795753,0.573363,0.144544,0.395973,0.753579,0.239122,0.949627,0.418545,0.638249,0.769954,0.102933,0.775309,0.843059,0.101075,0.463168,0.38637,0.238341,0.127799,0.451212,0.529413,0.0549962,0.0699935,0.162159,0.735228,0.493595,0.579743,0.218134,0.432961,0.20878,0.294576,0.668614,0.427465,0.95276,0.0270711,0.352517,0.66871,0.167626,0.333618,0.970673,0.989317,0.462369,0.897456,0.983616,0.0754241,0.0868249,0.999826,0.101323,0.0788835,0.677866,0.447889,0.115044,0.720568,0.308061,0.691135,0.622304,0.242001,0.112288,0.618653,0.135252,0.665093,0.869773,0.647877,0.0164959,0.185964,0.842624,0.335566,0.99649,0.9185,0.973441,0.0107923,0.703623,0.270605,0.500139,0.675513,0.901665,0.0643817,0.265682,0.959947,0.907403,0.855411,0.780389,0.797616,0.965465,0.985781,0.98108,0.6838,0.176011,0.790871,0.160978,0.568961,0.599841,0.821427,0.899921,0.725665,0.253195,0.437251,0.0386876,0.628226,0.877852,0.489165,0.251857,0.478238,0.93236,0.423667,0.743451,0.982241,0.408711,0.166852,0.0511501,0.461167,0.181392,0.125759,0.426963,0.724497,0.467539,0.696436,0.67248,0.463239,0.894409,0.152316,0.842874,0.409816,0.00799054,0.580843,0.802914,0.0306029,0.393463,0.255003,0.291119,0.519497,0.326391,0.791441,0.881634,0.523742,0.835992,0.765923,0.627021,0.11213,0.311162,0.996608,0.00837958,0.249551,0.382889,0.238183,0.877527,0.442947,0.88079,0.442147,0.294499,0.0515819,0.926643,0.360394,0.936083,0.565903,0.390115,0.483959,0.519828,0.661726,0.214621,0.141036,0.159149,0.907485,0.509144,0.113571,0.612652,0.525641,0.425412,0.785945,0.0507631,0.196429,0.6741,0.763938,0.52103,0.204087,0.298684,0.582554,0.149897,0.581659,0.23813,0.244812,0.814357,0.781798,0.411622,0.636025,0.904476,0.481477,0.104714,0.624236,0.381095,0.357161,0.0250243,0.658483,0.40259,0.0574932,0.530638,0.350095,0.0931416,0.217957,0.559908,0.49563,0.283153,0.147061,0.962745,0.897553,0.615428,0.80133,0.985896,0.335146,0.143693,0.857347,0.709398,0.399989,0.666867,0.602786,0.721089,0.401927,0.399383,0.0680297,0.756686,0.513179,0.5237,0.734272,0.845819,0.931124,0.347233,0.0696346,0.217394,0.411709,0.0478471,0.807826,0.248464,0.198587,0.912703,0.100614,0.0702497,0.170076,0.180933,0.916617,0.9342,0.445863,0.283102,0.739849,0.25434,0.501022,0.45193,0.106848,0.599769,0.374442,0.615924,0.900379,0.143584,0.294017,0.128481,0.772104,0.46889,0.906861,0.45862,0.848383,0.745105,0.196096,0.815586,0.707622,0.746936,0.853256,0.218236,0.463824,0.22851,0.705766,0.929281,0.967502,0.36376,0.912767,0.234548,0.462282,0.406172,0.824188,0.792192,0.735327,0.652768,0.556366,0.629319,0.989972,0.678178,0.813916,0.534617,0.981326,0.131328,0.0321198,0.595448,0.308716,0.294163,0.204491,0.707338,0.256707,0.345108,0.406659,0.215391,0.153349,0.500645,0.278154,0.468529,0.43797,0.71332,0.985635,0.496704,0.0995091,0.482677,0.0315976,0.0600027,0.825602,0.785231,0.640427,0.378672,0.588482,0.54246,0.616171,0.726547,0.496237,0.943293,0.701288,0.203728,0.00182527,0.417141,0.49672,0.728283,0.613421,0.457781,0.472239,0.907664,0.865525,0.0963734,0.674319,0.438221,0.9472,0.377935,0.847395,0.933478,0.561141,0.312647,0.0546173,0.523078,0.496055,0.416779,0.444098,0.0140829,0.461971,0.987153,0.426828,0.807711,0.565334,0.244919,0.41743,0.685174,0.264705,0.610187,0.6561,0.045751,0.0547591,0.584334,0.0581117,0.156521,0.2413,0.630223,0.442781,0.275621,0.0448399,0.879589,0.493009,0.902846,0.269014,0.12637,0.808614,0.568725,0.552249,0.590696,0.0158371,0.877863,0.0897079,0.174758,0.398561,0.651536,0.0849609,0.255686,0.458797,0.167746,0.936135,0.00901222,0.921287,0.868071,|0.31913,0.62067,0.814381,0.35879,0.190112,0.882772,0.254986,0.986142,0.335964,0.814501,0.557002,0.960917,0.704029,0.835749,0.628864,0.591202,0.0468931,0.844976,0.10192,0.649567,0.245366,0.956981,0.392241,0.467283,0.89599,0.382997,0.501355,0.991655,0.623356,0.165139,0.744743,0.0876149,0.553132,0.975553,0.823326,0.658098,0.227719,0.132744,0.563713,0.205126,0.388425,0.55259,0.632963,0.0333394,0.363477,0.269973,0.996287,0.427538,0.441548,0.647997,0.556412,0.476284,0.632957,0.644872,0.511924,0.997252,0.953046,0.92075,0.338345,0.989821,0.407422,0.0592219,0.380491,0.949045,0.41628,0.0217578,0.943999,0.775774,0.464379,0.738359,0.64426,0.0100407,0.59791,0.954471,0.39556,0.569979,0.670487,0.562707,0.320897,0.164946,0.92611,0.942107,0.835708,0.0324709,0.758115,0.744758,0.699796,0.339273,0.156476,0.121977,0.815325,0.842332,0.390223,0.626977,0.0527439,0.457066,0.57396,0.785902,0.138332,0.91417,0.876945,0.265928,0.81553,0.618965,0.263683,0.612291,0.714562,0.710942,0.184878,0.515704,0.925966,0.931715,0.593103,0.629667,0.291692,0.276517,0.924384,0.975541,0.561918,0.776746,0.602983,0.992049,0.489383,0.346417,0.37294,0.589275,0.903718,0.634811,0.360358,0.196411,0.90251,0.167734,0.38288,0.0838076,0.933087,0.707808,0.451191,0.64226,0.845734,0.944204,0.0936101,0.981319,0.739578,0.0428801,0.820848,0.879547,0.781903,0.879761,0.208268,0.40418,0.224243,0.928745,0.608907,0.575252,0.0347824,0.291616,0.696681,0.342133,0.849141,0.956934,0.410952,0.238601,0.427632,0.678396,0.627705,0.0866711,0.470629,0.590144,0.387452,0.709499,0.546692,0.569149,0.453245,0.254479,0.170509,0.844679,0.33934,0.415707,0.454425,0.886858,0.413747,0.929199,0.0936013,0.504036,0.739389,0.211626,0.17247,0.621019,0.468183,0.140123,0.666502,0.775191,0.494966,0.655301,0.774177,0.269254,0.598779,0.979843,0.970231,0.983804,0.548995,0.303011,0.132239,0.401307,0.976356,0.739566,0.666274,0.332345,0.241543,0.234984,0.688051,0.458925,0.587704,0.840707,0.36252,0.927481,0.101399,0.417506,0.282952,0.481593,0.697341,0.533843,0.353313,0.00797433,0.587328,0.166003,0.469589,0.345982,0.443939,0.488653,0.0566624,0.653144,0.222524,0.401074,0.30081,0.756453,0.917099,0.827733,0.669029,0.409593,0.604532,0.911884,0.140043,0.702815,0.100169,0.0089131,0.507593,0.822773,0.422945,0.850385,0.466713,0.545257,0.198754,0.119106,0.0585016,0.452433,0.145053,0.0246423,0.280484,0.0574219,0.879058,0.109943,0.373743,0.733874,0.620248,0.751404,0.494915,0.0139599,0.55332,0.670478,0.963931,0.873586,0.819348,0.0356246,0.198483,0.512157,0.184314,0.111148,0.707314,0.257193,0.0253745,0.706809,0.43085,0.567776,0.809891,0.974833,0.739951,0.370574,0.254034,0.847531,0.487951,0.362151,0.890385,0.0527042,0.926811,0.769715,0.0268216,0.154591,0.857162,0.503708,0.21976,0.393506,0.335545,0.114999,0.475226,0.592557,0.173032,0.94808,0.306226,0.874156,0.360444,0.376534,0.90859,0.654743,0.0153481,0.51273,0.772954,0.181487,0.839545,0.76941,0.445325,0.557056,0.652789,0.468567,0.747314,0.000485718,0.271688,0.628498,0.156918,0.148961,0.758303,0.00860274,0.907121,0.312151,0.658355,0.262272,0.805352,0.77483,0.947368,0.348387,0.613862,0.812791,0.529553,0.764205,0.939773,0.481877,0.227206,0.57659,0.511809,0.554075,0.351754,0.353747,0.0246663,0.467677,0.982113,0.892526,0.645424,0.738984,0.41054,0.215449,0.53148,0.885509,0.00873977,0.722071,0.0682225,0.985512,0.138203,0.988888,0.643795,0.565517,0.125563,0.567716,0.135112,0.477851,0.687339,0.984389,0.528234,0.932127,0.200662,0.563042,0.119632,0.778948,0.623649,0.529494,0.35148,0.117246,0.0662482,0.418624,0.299234,0.948413,0.590647,0.766796,0.437787,0.961609,0.833527,0.0844374,0.303048,0.958611,0.519398,0.314591,0.034152,0.00282979,0.882738,0.178753,0.321738,0.585738,0.847993,0.567933,0.376584,0.971099,0.816804,0.590379,0.654162,0.37118,0.683339,0.192177,0.0631513,0.0601943,0.761762,0.668606,0.166211,0.299855,0.945492,0.987529,0.210147,0.785411,0.659771,0.757345,0.492342,0.428909,0.289067,0.990645,0.119764,0.510335,0.193648,0.160761,0.151312,0.510135,0.541217,0.149883,0.0589814,0.315872,0.257516,0.858258,0.173928,0.614848,0.176391,0.388387,0.791355,0.033688,0.740672,0.349616,0.365162,0.577769,0.156376,0.611964,0.826402,0.147842,0.983331,0.262623,0.250006,0.404246,0.902345,0.877036,0.211911,0.461794,0.366704,0.386317,0.102796,0.826124,0.910572,0.884354,0.854378,0.587632,0.685765,0.403776,0.35388,0.422359,0.530124,0.315841,0.516867,0.366883,0.252309,0.0993088,0.0527831,0.421695,0.0583392,0.409288,0.118838,0.940003,0.344859,0.400082,0.584019,0.338246,0.723235,0.282878,0.2001,0.179633,0.666763,0.00445324,0.984908,0.233111,0.506822,0.319078,0.929957,0.0316513,0.0810743,0.926939,0.108336,0.482217,0.604027,0.308227,0.766496,0.121292,0.744662,0.837181,0.85011,0.700859,0.416553,0.26709,0.607577,0.441671,0.271266,0.277183,0.18844,0.749482,0.976292,0.902556,0.952516,0.091489,0.552085,0.498479,0.430569,0.786041,0.736372,0.130667,0.851802,0.686252,0.26607,0.401013,0.164404,0.676429,0.686109,0.026595,0.452441,0.846807,0.478966,0.418617,0.920797,0.523252,0.476416,0.651772,0.324722,0.684076,0.639991,0.143184,0.244305,0.698167,0.492622,0.481154,0.938376,0.610682,0.09696,0.349103,0.0504937,0.825747,0.580139,0.908514,0.416491,0.993468,0.796364,0.525768,0.446854,0.0122889,0.575971,0.999791,0.425065,0.715243,0.319195,0.789127,0.352769,0.82679,0.733582,0.639245,0.530242,0.0731343,0.803797,0.673253,0.460374,0.817359,0.791983,0.321824,0.520479,0.891495,0.667537,0.742734,0.37803,0.533843,0.74914,0.977276,0.45845,0.95363,0.568617,0.41244,0.0475782,0.370265,0.653589,0.900746,0.653776,0.204319,0.266042,0.947929,0.384548,0.936779,0.0840338,0.133555,0.743897,0.138457,0.62183,0.806845,0.350391,0.280471,0.351186,0.679617,0.382702,0.684282,0.220201,0.28251,0.717566,0.241158,0.902831,0.340095,0.860483,0.618831,0.811593,0.17184,0.551691,0.995266,0.714336,0.710199,0.487537,0.106311,0.352628,0.584424,0.787672,0.805377,0.853994,0.451456,0.883191,0.274329,0.354875,0.440307,0.696722,0.881208,0.534318,0.533108,0.651485,0.718601,0.710288,0.485415,0.93781,0.252197,0.601661,0.173651,0.858762,0.859521,0.138615,0.140787,0.719557,0.593212,0.606053,0.222058,0.424366,0.716633,0.361128,0.192146,0.58765,0.533394,0.973758,0.169706,0.379363,0.39131,0.560337,0.426233,0.624303,0.179059,0.310571,0.927129,0.0536708,0.711857,0.562858,0.171996,0.442231,0.27869,0.0974972,0.0678058,0.61619,0.595174,0.942134,0.729752,0.612655,0.538166,0.152023,0.431282,0.522816,0.21624,0.763014,0.15915,0.536918,0.447978,0.58033,0.460926,0.30149,0.454818,0.436188,0.466753,0.894262,0.724534,0.900349,0.736082,0.877911,0.751803,0.541641,0.217304,0.312887,0.795745,0.937075,0.222763,0.965341,0.834201,0.919945,0.357438,0.64996,0.435851,0.675026,0.173714,0.500162,0.945781,0.957552,0.995263,0.441991,0.172496,0.679679,0.86105,0.488383,0.149333,0.576253,0.448182,0.881632,0.703784,0.124044,0.206994,0.0543616,0.00544012,0.803032,0.817076,0.925678,0.222344,0.0167682,0.048534,0.550103,0.664595,0.859648,0.428828,0.799572,0.570117,0.594091,0.362218,0.609335,0.802882,0.499173,0.93497,0.499877,0.526764,0.0578176,0.90109,0.14721,0.87798,0.0277463,0.445509,0.0648687,0.425525,0.288985,0.497924,0.226327,0.94144,0.377961,0.405704,0.9079,0.50631,0.935094,0.141281,0.927737,0.0697955,0.92004,0.377175,0.760382,0.959003,0.133624,0.387857,0.250546,0.96594,0.221043,0.799092,0.361087,0.30049,0.731219,0.29641,0.00796264,0.967614,0.972033,0.108926,0.38631,0.520018,0.824015,0.02894,0.577113,0.542701,0.699209,0.142026,0.235209,0.814096,0.760623,0.465973,0.307759,0.417613,0.934859,0.949201,0.398229,0.808618,0.547931,0.962425,0.610359,0.14018,0.489594,0.380878,0.247788,0.0446401,0.905864,0.263496,0.589617,0.516759,0.989203,0.621035,0.979915,0.525743,0.212672,0.139126,0.725121,0.0998697,0.956456,0.0719247,0.958412,0.796112,0.413324,0.205004,0.488327,0.625011,0.618079,0.875196,0.71483,0.447925,0.559373,0.609857,0.387444,0.0716887,0.31312,0.258124,0.523265,0.0213534,0.099049,0.0334141,0.486286,0.73722,0.324545,0.97452,0.951556,0.284222,0.199566,0.131951,0.304545,0.35367,0.245439,0.512743,0.616431,0.542969,0.372645,0.841802,0.9184,0.989843,0.217918,0.648244,0.619904,0.583842,0.969365,0.376399,0.497456,0.709945,0.329048,0.472422,0.737343,0.606361,0.182735,0.807932,0.0158387,0.274755,0.658334,0.721754,0.597738,0.512768,0.967055,0.90997,0.386773,0.622055,0.340762,0.136788,0.273491,0.0662411,0.105236,0.414331,0.20534,0.978682,0.0849802,0.411315,0.671958,0.179379,0.516381,0.448207,0.576236,0.438952,0.369249,0.677123,0.0871929,0.319377,0.0712163,0.767507,0.95092,0.411088,0.456986,0.129908,0.947178,0.00919431,0.454372,0.399211,0.901184,0.911038,0.362218,0.522201,0.371914,0.464335,0.662345,0.215219,0.531514,0.937866,0.290286,0.142481,0.100326,0.33811,0.293844,0.556354,0.164034,0.509095,0.982182,0.975725,0.464425,0.0221034,0.178154,0.0444173,0.497723,0.997084,0.580888,0.626435,0.561897,0.552453,0.851158,0.277971,0.353815,0.453882,0.251635,0.792428,0.142915,0.352607,0.31556,0.790852,0.974974,0.546471,0.525689,0.858859,0.714662,0.362154,0.273541,0.600241,0.49008,0.835771,0.481757,0.584688,0.380688,0.120319,0.740485,0.540805,|0.480169,0.123025,0.84257,0.732265,0.861316,0.962009,0.933048,0.187189,0.127732,0.707214,0.977375,0.546148,0.772779,0.96601,0.293134,0.0459238,0.984042,0.148553,0.754286,0.994716,0.74491,0.0545716,0.188835,0.548616,0.192107,0.270678,0.99351,0.847973,0.540116,0.520402,0.384546,0.757213,0.392333,0.253642,0.931482,0.162108,0.906263,0.867716,0.509579,0.768691,0.128123,0.886086,0.41518,0.0250089,0.744128,0.282721,0.799375,0.0839218,0.276714,0.876464,0.193625,0.663133,0.0491365,0.633693,0.465023,0.402574,0.375468,0.293627,0.322424,0.420465,0.783157,0.0387586,0.928928,0.0708154,0.333401,0.349521,0.404224,0.959,0.502911,0.304222,0.0877662,0.784526,0.118432,0.659875,0.759514,0.601801,0.321628,0.114995,0.108107,0.246676,0.991053,0.324606,0.519582,0.0326924,0.38553,0.54169,0.948815,0.54882,0.203122,0.543191,0.739084,0.191223,0.246321,0.317271,0.904806,0.275205,0.508788,0.230224,0.63649,0.777353,0.121105,0.953453,0.599064,0.519472,0.861833,0.783011,0.869621,0.340115,0.598292,0.453486,0.870518,0.32324,0.457696,0.199006,0.4235,0.245393,0.0701649,0.346936,0.923221,0.727448,0.122172,0.532107,0.728493,0.494099,0.570023,0.299649,0.954086,0.677652,0.574577,0.0631605,0.326968,0.364088,0.266191,0.364623,0.862468,0.164434,0.502414,0.160877,0.0114451,0.963249,0.701072,0.985577,0.994916,0.562055,0.414346,0.0163046,0.0107799,0.0264736,0.55936,0.269748,0.184921,0.631385,0.821478,0.485763,0.00118238,0.252033,0.581324,0.883164,0.916211,0.236678,0.804293,0.895299,0.738886,0.889382,0.589467,0.956814,0.855162,0.942282,0.597362,0.472145,0.954392,0.598328,0.00789088,0.613643,0.617028,0.304515,0.253735,0.507894,0.971589,0.217427,0.17867,0.150034,0.368236,0.898217,0.366856,0.703597,0.572025,0.454635,0.672055,0.374234,0.037686,0.480591,0.860434,0.174437,0.847416,0.877698,0.634993,0.118246,0.447288,0.880498,0.0268704,0.401658,0.588412,0.34167,0.00537384,0.0511173,0.0931995,0.0284383,0.483978,0.412644,0.815922,0.753167,0.967933,0.0611643,0.808312,0.108726,0.287288,0.841626,0.847066,0.912367,0.231473,0.224313,0.488247,0.154364,0.0122805,0.135998,0.0625109,0.100112,0.927532,0.0224457,0.991696,0.714866,0.127471,0.291068,0.190724,0.838626,0.65611,0.0629947,0.713609,0.630278,0.917105,0.777152,0.397978,0.663159,0.964192,0.958431,0.232767,0.430536,0.204911,0.493409,0.570674,0.626821,0.474853,0.787344,0.824524,0.172035,0.768624,0.888214,0.52659,0.425955,0.808536,0.745857,0.0949686,0.25432,0.262201,0.536607,0.739038,0.509146,0.134523,0.276614,0.873062,0.0716627,0.971641,0.522536,0.337777,0.77891,0.267824,0.303408,0.225847,0.241892,0.493347,0.852005,0.584632,0.505272,0.792685,0.0945413,0.12821,0.58334,0.328617,0.8119,0.405536,0.707032,0.497016,0.234966,0.241359,0.806856,0.71834,0.658545,0.40986,0.783953,0.4356,0.636073,0.602303,0.384634,0.0602362,0.366409,0.0978862,0.183581,0.55544,0.0118242,0.730596,0.668456,0.173564,0.00282323,0.372971,0.165977,0.782137,0.879511,0.210604,0.516977,0.25369,0.2641,0.5468,0.767177,0.00604045,0.529526,0.489287,0.428852,0.540026,0.560336,0.517085,0.21076,0.266864,0.23104,0.0784626,0.480864,0.485568,0.515304,0.519228,0.061184,0.299503,0.753015,0.926768,0.0698293,0.855254,0.241612,0.728259,0.56651,0.166737,0.719968,0.516319,0.494594,0.643727,0.453045,0.242055,0.320761,0.647541,0.992386,0.958092,0.067854,0.632554,0.450664,0.28671,0.775007,0.0185375,0.145974,0.318396,0.501072,0.922487,0.525555,0.707369,0.351873,0.642207,0.000623226,0.512374,0.926909,0.555194,0.801512,0.673188,0.706373,0.548212,0.362757,0.251201,0.632055,0.0487945,0.222146,0.632074,0.698876,0.918309,0.889134,0.655374,0.0323809,0.819683,0.806913,0.568135,0.152121,0.0866572,0.717276,0.763143,0.346528,0.709945,0.972998,0.00474995,0.734901,0.0294561,0.47878,0.371372,0.0596775,0.260182,0.40224,0.973504,0.411114,0.278881,0.592752,0.00917715,0.327054,0.297406,0.892855,0.187197,0.374433,0.720467,0.959699,0.82999,0.373792,0.391319,0.42138,0.336322,0.991318,0.0376402,0.476035,0.755833,0.424604,0.800574,0.499785,0.68216,0.625427,0.148854,0.0010494,0.141266,0.303985,0.325279,0.542353,0.617665,0.533754,0.965565,0.772305,0.878018,0.455937,0.434977,0.718645,0.576617,0.620213,0.80382,0.603077,0.00121075,0.895177,0.499761,0.528102,0.226651,0.811061,0.264689,0.307149,0.708133,0.38471,0.0844421,0.0216815,0.386711,0.382594,0.997531,0.870564,0.391068,0.123697,2.98023e-06,0.841902,0.18163,0.395088,0.762651,0.0340102,0.808742,0.27626,0.234783,0.0306532,0.327026,0.236496,0.764904,0.564572,0.756167,0.351577,0.0352539,0.0214018,0.774019,0.335489,0.872754,0.998202,0.0458304,0.899593,0.695615,0.764169,0.245645,0.601448,0.483511,0.732356,0.148596,0.125449,0.38494,0.206915,0.126628,0.457884,0.334224,0.258523,0.389612,0.264353,0.390827,0.567304,0.920505,0.76567,0.393634,0.38477,0.0170229,0.615009,0.688455,0.218196,0.484805,0.938431,0.177808,0.269454,0.30101,0.816738,0.201791,0.980513,0.87497,0.804609,0.928705,0.552834,0.179852,0.758576,0.948008,0.213056,0.403381,0.628212,0.0857947,0.0189375,0.897471,0.421199,0.0138032,0.801305,0.999441,0.272925,0.106326,0.840985,0.722221,0.684479,0.588304,0.825627,0.334393,0.754425,0.0516724,0.0250774,0.709366,0.759443,0.761643,0.744994,0.68011,0.747613,0.851264,0.468171,0.326784,0.263959,0.401638,0.701279,0.19832,0.440861,0.883357,0.842348,0.0565791,0.66066,0.267075,0.241339,0.194588,0.614261,0.813413,0.360181,0.969369,0.80498,0.865089,0.234616,0.270019,0.562961,0.0453641,0.288582,0.414714,0.272076,0.343161,0.737739,0.489643,0.142941,0.998222,0.0253605,0.395098,0.363382,0.191322,0.542452,0.424849,0.577266,0.234571,0.521839,0.608604,0.465247,0.317573,0.627051,0.960045,0.484166,0.718599,0.472178,0.444748,0.886618,0.924452,0.43035,0.205944,0.203203,0.240797,0.271617,0.737661,0.524516,0.265702,0.876874,0.0986966,0.554968,0.177795,0.345952,0.217439,0.201609,0.836544,0.605843,0.066707,0.696974,0.0625562,0.00793046,0.629982,0.702365,0.207243,0.664999,0.931688,0.905643,0.0316549,0.0805271,0.0951263,0.158547,0.736583,0.0283777,0.947278,0.175457,0.136172,0.382479,0.739141,0.873724,0.781293,0.0658078,0.1158,0.306536,0.876977,0.0736067,0.740195,0.968287,0.653522,0.25952,0.0281085,0.673899,0.346287,0.982046,0.97731,0.109668,0.0197084,0.373407,0.663935,0.170822,0.751244,0.0120026,0.70748,0.324093,0.00437832,0.556038,0.702636,0.0274132,0.973618,0.594439,0.59004,0.670223,0.886796,0.010429,0.794611,0.330393,0.317742,0.807625,0.23339,0.700231,0.549393,0.080166,0.605293,0.956184,0.295839,0.547365,0.555107,0.452077,0.863379,0.0666916,0.829766,0.82715,0.977821,0.0812274,0.18305,0.00890589,0.483964,0.00530082,0.392121,0.552882,0.421575,0.684473,0.73604,0.673211,0.887997,0.520677,0.231952,0.237439,0.306424,0.543189,0.879338,0.120707,0.477796,0.303175,0.396988,0.202118,0.828862,0.244524,0.921109,0.401662,0.425309,0.529816,0.631087,0.672858,0.869862,0.945543,0.371077,0.933485,0.487633,0.950019,0.284036,0.0556358,0.806033,0.0958008,0.736086,0.491234,0.0528506,0.715617,0.0209004,0.114219,0.697005,0.135854,0.605632,0.38238,0.149694,0.503981,0.706917,0.587409,0.187584,0.500011,0.186591,0.142027,0.161784,0.895006,0.206371,0.357416,0.123983,0.931538,0.963755,0.37242,0.781268,0.218689,0.391553,0.522756,0.171992,0.846086,0.302075,0.687388,0.839483,0.554018,0.491866,0.740269,0.381895,0.1624,0.328187,0.333356,0.802286,0.598693,0.104454,0.0617244,0.76886,0.122975,0.737593,0.627284,0.18488,0.888546,0.332271,0.0429896,0.512688,0.523124,0.246869,0.326934,0.577405,0.946398,0.323344,0.0406507,0.942602,0.287149,0.0304625,0.934614,0.519129,0.47384,0.648059,0.404977,0.461832,0.783717,0.982605,0.73924,0.317531,0.988682,0.77464,0.824401,0.221703,0.347535,0.222308,0.169088,0.971611,0.20203,0.731333,0.302522,0.749159,0.58851,0.513573,0.543342,0.667249,0.151686,0.767905,0.0364379,0.791243,0.86596,0.25536,0.0409834,0.0218886,0.496605,0.690133,0.858903,0.966232,0.569196,0.936764,0.410972,0.437537,0.342284,0.684458,0.232187,0.660731,0.0279054,0.631543,0.696788,0.335396,0.383839,0.976074,0.802844,0.266168,0.542472,0.132584,0.0597385,0.646197,0.479762,0.374648,0.343475,0.25685,0.82644,0.37018,0.158302,0.137084,0.75851,0.258705,0.653083,0.912614,0.25811,0.0889736,0.924036,0.893647,0.206184,0.856617,0.608835,0.445466,0.84006,0.670173,0.433039,0.132869,0.698344,0.435046,0.296213,0.421599,0.107001,0.797769,0.895982,0.0205781,0.257035,0.348128,0.310894,0.273663,0.425675,0.705878,0.14767,0.120419,0.299625,0.833778,0.692804,0.725993,0.857426,0.261693,0.16238,0.828586,0.400661,0.474148,0.174187,0.791263,0.674695,0.740152,0.757297,0.170664,0.102461,0.811297,0.443677,0.0902181,0.78945,0.507033,0.482708,0.992154,0.319055,0.220573,0.106562,0.664849,0.472298,0.778382,0.481622,0.968534,0.942984,0.859819,0.526756,0.476644,0.704962,0.642897,0.338716,0.422645,0.144795,0.794724,0.342467,0.0789046,0.488215,0.107217,0.998507,0.597757,0.350922,0.986339,0.034517,0.335137,0.510235,0.645121,0.0737966,0.900783,0.454233,0.358146,0.949204,0.695932,0.683235,0.95645,0.895918,0.141745,0.364361,0.610715,0.498526,0.969591,0.0283402,0.589677,0.119633,0.0572969,0.0924878,0.712139,0.587348,0.850936,0.0812516,0.830022,0.791956,0.592552,0.184425,0.553177,0.341831,0.85646,0.245672,0.537844,0.73092,|0.773205,0.49567,0.0497279,0.611137,0.183153,0.529933,0.796753,0.444731,0.120177,0.383733,0.179635,0.427428,0.996545,0.833106,0.69178,0.437907,0.616249,0.654361,0.0337123,0.570688,0.213495,0.22312,0.357593,0.409337,0.563551,0.243529,0.322728,0.813406,0.168029,0.32094,0.768156,0.52131,0.394513,0.477308,0.488649,0.869629,0.89822,0.70847,0.821169,0.455162,0.905023,0.247866,0.0295069,0.954821,0.166679,0.565754,0.828587,0.528933,0.965206,0.768335,0.321981,0.375481,0.0134057,0.0350485,0.19265,0.0466246,0.637755,0.0438157,0.657328,0.0290465,0.10354,0.226152,0.865885,0.27358,0.299636,0.801659,0.711346,0.732659,0.146726,0.544202,0.960816,0.188264,0.445091,0.996568,0.487662,0.235354,0.79294,0.531142,0.615467,0.64814,0.945121,0.34211,0.595085,0.279305,0.536713,0.880589,0.693583,0.381128,0.570878,0.921916,0.863642,0.812313,0.0778301,0.488251,0.63223,0.931065,0.0292085,0.417757,0.9923,0.987189,0.0555887,0.26053,0.0478011,0.979227,0.786981,0.986237,0.425832,0.220399,0.329252,0.96422,0.759374,0.973767,0.406233,0.654934,0.348076,0.536134,0.902803,0.571352,0.652826,0.0580088,0.861967,0.866283,0.133196,0.749938,0.855991,0.171946,0.17498,0.720743,0.518627,0.942664,0.205877,0.200708,0.820813,0.445306,0.655522,0.626939,0.28441,0.210628,0.581307,0.531575,0.0129158,0.740987,0.167536,0.286695,0.563689,0.946122,0.652474,0.542511,0.858817,0.0809696,0.257685,0.448793,0.00832701,0.869842,0.316979,0.466649,0.791031,0.195403,0.808206,0.917277,0.680635,0.366252,0.052343,0.566556,0.789003,0.167808,0.311263,0.625347,0.195063,0.942663,0.784117,0.77219,0.135553,0.188547,0.0155542,0.192125,0.349602,0.159845,0.651933,0.614272,0.885012,0.557896,0.52072,0.86114,0.798393,0.133232,0.305308,0.684967,0.514171,0.24209,0.913003,0.15352,0.0781268,0.0544744,0.442404,0.324391,0.166355,0.612326,0.12609,0.426106,0.445827,0.877237,0.105222,0.568214,0.441653,0.523319,0.860392,0.681658,0.214306,0.817917,0.532393,0.580573,0.437922,0.803689,0.237663,0.791636,0.670668,0.708627,0.0529775,0.899371,0.105105,0.92762,0.992057,0.958929,0.706215,0.822413,0.123585,0.295991,0.947691,0.710541,0.115687,0.485293,0.939918,0.892382,0.547054,0.950167,0.517419,0.476055,0.589396,0.556115,0.839328,0.450766,0.174152,0.323105,0.646599,0.221169,0.896434,0.567178,0.862811,0.368632,0.171814,0.218922,0.0189265,0.317903,0.455561,0.706534,0.0103615,0.652927,0.243471,0.384692,0.552205,0.7391,0.795981,0.788939,0.262113,0.819467,0.27448,0.0699323,0.193757,0.0983353,0.65439,0.961572,0.087986,0.905437,0.700315,0.918101,0.0914975,0.777002,0.190738,0.380424,0.00749099,0.936085,0.813253,0.898355,0.248303,0.690178,0.000616133,0.0772883,0.760363,0.426739,0.60422,0.82417,0.442026,0.992559,0.828167,0.210051,0.805642,0.810618,0.218158,0.790606,0.338048,0.181992,0.194592,0.941857,0.443869,0.301488,0.599843,0.433117,0.0262314,0.767641,0.249074,0.662285,0.269031,0.859236,0.656234,0.19505,0.823152,0.18131,0.234508,0.428355,0.538056,0.844195,0.394018,0.309614,0.197163,0.0665091,0.0263221,0.591402,0.0435422,0.0942385,0.43283,0.564647,0.906945,0.447815,0.433132,0.737924,0.894191,0.789848,0.92147,0.770722,0.0408059,0.998063,0.818317,0.863595,0.202914,0.651836,0.0284135,0.141812,0.0418269,0.415575,0.565738,0.840328,0.199816,0.902015,0.987174,0.451442,0.566172,0.610125,0.230556,0.344316,0.061233,0.238606,0.834115,0.407825,0.38921,0.695431,0.629717,0.709132,0.8693,0.0459011,0.962995,0.852611,0.166603,0.0910543,0.793152,0.0891258,0.199227,0.587717,0.396393,0.364376,0.775409,0.016495,0.683871,0.632291,0.216623,0.286889,0.611879,0.335814,0.577876,0.847756,0.191277,0.945562,0.136958,0.669882,0.204924,0.248687,0.0248945,0.98569,0.906379,0.624232,0.0166191,0.578089,0.827489,0.471288,0.24451,0.740243,0.670322,0.0811125,0.908107,0.452639,0.853569,0.00334805,0.0591052,0.571594,0.360165,0.51493,0.957697,0.810883,0.499329,0.873896,0.584608,0.437667,0.178224,0.175187,0.528941,0.167426,0.0633977,0.916472,0.313194,0.991278,0.999423,0.428842,0.368205,0.77749,0.286594,0.196473,0.979793,0.78262,0.56377,0.945517,0.428976,0.0224187,0.130351,0.0334341,0.184846,0.0494247,0.729664,0.900978,0.771165,0.415369,0.0272595,0.190669,0.628271,0.575013,0.701502,0.781538,0.233582,0.883011,0.502294,0.528349,0.532245,0.597321,0.578763,0.136831,0.31661,0.424786,0.447189,0.896229,0.657234,0.488373,0.546025,0.84039,0.297887,0.345733,0.687172,0.514384,0.55587,0.308405,0.403757,0.393535,0.453866,0.410679,0.120407,0.646978,0.393353,0.485365,0.338694,0.679724,0.217948,0.121296,0.661866,0.0526958,0.113117,0.279408,0.774993,0.582374,0.806066,0.437843,0.085516,0.960362,0.75967,0.978698,0.298926,0.391944,0.965084,0.289444,0.361966,0.531156,0.807741,0.481993,0.526442,0.422655,0.37278,0.502581,0.940063,0.208432,0.664269,0.161339,0.727233,0.458158,0.610337,0.894997,0.137516,0.72275,0.528578,0.396578,0.431418,0.302042,0.367787,0.993147,0.578661,0.463472,0.248248,0.712364,0.522686,0.526638,0.548747,0.968597,0.584007,0.00796378,0.146269,0.24085,0.331917,0.431203,0.822853,0.668239,0.245586,0.0594636,0.00326234,0.531211,0.0550874,0.844286,0.0577277,0.023239,0.0749763,0.619228,0.152403,0.459674,0.340837,0.740766,0.237557,0.0390284,0.776076,0.25851,0.448671,0.671908,0.301821,0.754383,0.450819,0.317548,0.566894,0.66619,0.527449,0.664898,0.361338,0.40742,0.203745,0.193937,0.434988,0.363768,0.668201,0.887701,0.508303,0.80265,0.945797,0.829788,0.317032,0.356605,0.574318,0.467284,0.145293,0.262519,0.0356622,0.0513213,0.632657,0.44523,0.625534,0.976153,0.64249,0.330946,0.869743,0.932439,0.759704,0.649718,0.415814,0.00548702,0.293375,0.149921,0.209658,0.630674,0.524675,0.632458,0.834581,0.592223,0.922928,0.815516,0.425795,0.808132,0.183007,0.239643,0.725343,0.18246,0.952857,0.0226818,0.0182101,0.593774,0.509363,0.874297,0.607565,0.801225,0.46034,0.948779,0.111509,0.491143,0.816935,0.612111,0.674309,0.327148,0.263089,0.493845,0.299096,0.378747,0.867274,0.863935,0.879489,0.550584,0.0201606,0.0772914,0.621482,0.972115,0.00574589,0.81738,0.202546,0.75721,0.524054,0.952194,0.248033,0.344984,0.732705,0.502274,0.803744,0.628465,0.873113,0.870677,0.337411,0.627064,0.292069,0.876818,0.420363,0.371846,0.0610261,0.58872,0.00846672,0.986016,0.747181,0.158199,0.00135756,0.805129,0.24119,0.532785,0.513287,0.74835,0.772907,0.238965,0.443879,0.324845,0.306499,0.255022,0.0124683,0.691478,0.275091,0.0272618,0.158927,0.345311,0.678405,0.315019,0.235513,0.266583,0.269385,0.376872,0.238363,0.255075,0.754794,0.468426,0.249869,0.689678,0.376932,0.124259,0.987632,0.00358713,0.0164044,0.528221,0.49062,0.689653,0.659352,0.131419,0.764729,0.0604375,0.802154,0.592429,0.845029,0.514683,0.75084,0.751808,0.497041,0.217166,0.296099,0.365325,0.0835202,0.714039,0.900617,0.0541846,0.169641,0.155904,0.281646,0.467277,0.989553,0.542176,0.86819,0.0618957,0.840923,0.284174,0.633026,0.848262,0.436242,0.881988,0.0345963,0.653229,0.31219,0.335582,0.68564,0.893328,0.134111,0.388485,0.485658,0.287311,0.742415,0.99483,0.486014,0.873202,0.711284,0.173956,0.102618,0.0205859,0.488211,0.56556,0.630671,0.937929,0.209963,0.180711,0.722147,0.275755,0.611781,0.371633,0.660301,0.248157,0.122907,0.649305,0.0975043,0.418857,0.965982,0.339792,0.00185686,0.082841,0.586662,0.927971,0.948347,0.870783,0.90839,0.133818,0.557971,0.753976,0.243704,0.103932,0.902368,0.111284,0.353808,0.749286,0.417012,0.450555,0.636962,0.859741,0.642629,0.999325,0.487413,0.00445986,0.0962535,0.368515,0.336643,0.664503,0.425875,0.512877,0.517676,0.167874,0.211524,0.354625,0.0570582,0.193735,0.64443,0.0186,0.786054,0.317167,0.700144,0.740392,0.584392,0.912533,0.630366,0.10208,0.518691,0.0479314,0.27153,0.254083,0.522087,0.837452,0.389487,0.641542,0.188853,0.795012,0.421013,0.331966,0.224005,0.974812,0.98412,0.188061,0.253033,0.271837,0.962031,0.400356,0.753735,0.614349,0.157514,0.774164,0.577535,0.843241,0.432361,0.628269,0.490736,0.095648,0.706402,0.34074,0.225508,0.393061,0.352163,0.612031,0.702342,0.749625,0.903861,0.417159,0.183431,0.0182567,0.222227,0.147518,0.476936,0.408337,0.737949,0.251015,0.0898129,0.358108,0.862822,0.649529,0.927408,0.642331,0.852476,0.566513,5.54323e-06,0.950513,0.851608,0.556125,0.526404,0.581963,0.0543804,0.771075,0.340159,0.524485,0.214041,0.413268,0.929228,0.848505,0.580817,0.520677,0.916376,0.978398,0.569946,0.94412,0.915338,0.449129,0.452009,0.795118,0.568989,0.928654,0.438503,0.674686,0.046302,0.881412,0.667568,0.615639,0.172175,0.517755,0.142294,0.83944,0.781304,0.175681,0.542917,0.537318,0.461714,0.676812,0.27206,0.891844,0.790693,0.579955,0.887399,0.427096,0.852711,0.70942,0.298898,0.22059,0.436934,0.586711,0.916591,0.74602,0.323357,0.703991,0.219024,0.773759,0.296648,0.481442,0.810446,0.71374,0.152353,0.245981,0.679116,0.509385,0.452051,0.0309091,0.590704,0.0644456,0.534277,0.721172,0.857421,0.0992221,0.864203,0.807388,0.508162,0.991927,0.880549,0.169382,0.897088,0.943263,0.834453,0.876052,0.83988,0.496873,0.375831,0.677714,0.497584,0.936317,0.422819,0.767615,0.666488,0.824837,0.212285,0.675224,0.876745,0.199884,0.991652,0.312469,0.622532,0.4241,0.755832,0.0207178,0.343847,0.126565,0.868533,0.428406,0.701789,0.165807,0.920117,0.356114,0.220892,0.530551,|0.459185,0.632644,0.635245,0.963962,0.526595,0.500983,0.835782,0.895687,0.258347,0.207914,0.646984,0.614466,0.547967,0.906365,0.416945,0.912439,0.96898,0.219007,0.00165546,0.913828,0.0267465,0.830251,0.1193,0.925135,0.261154,0.561921,0.962597,0.491075,0.180914,0.165212,0.181515,0.593815,0.461733,0.0174583,0.304359,0.963878,0.932545,0.108115,0.986267,0.864937,0.00845742,0.849989,0.61266,0.324704,0.684276,0.751165,0.692172,0.674075,0.717708,0.370805,0.516552,0.854741,0.787553,0.488425,0.663915,0.245139,0.274202,0.754946,0.765746,0.728129,0.118679,0.130742,0.992337,0.197516,0.45744,0.376776,0.121729,0.849829,0.347321,0.486172,0.746464,0.527446,0.187137,0.338617,0.76999,0.267525,0.293785,0.332,0.711521,0.838547,0.904681,0.194654,0.117786,0.203306,0.346197,0.243259,0.608793,0.188057,0.895106,0.111594,0.732482,0.848839,0.267839,0.358848,0.925126,0.0955071,0.876097,0.193465,0.380777,0.123727,0.382466,0.682102,0.682359,0.35658,0.456468,0.0899262,0.830152,0.158962,0.593549,0.252949,0.140261,0.716746,0.426705,0.265598,0.550284,0.614942,0.830856,0.0736973,0.291372,0.84827,0.188199,0.419428,0.765392,0.427617,0.225565,0.0809259,0.445502,0.589005,0.440719,0.375182,0.0232301,0.6901,0.0790798,0.349337,0.766017,0.0657856,0.459198,0.919808,0.866508,0.612937,0.563641,0.504833,0.234721,0.514471,0.687752,0.0483446,0.924163,0.871372,0.790405,0.494059,0.72546,0.737682,0.063579,0.145054,0.642278,0.44272,0.700968,0.854464,0.976116,0.734727,0.0370793,0.467954,0.801293,0.3776,0.207834,0.483525,0.196577,0.995769,0.167637,0.590716,0.472918,0.718469,0.245604,0.233335,0.708681,0.61324,0.743933,0.844358,0.349586,0.192654,0.425441,0.136141,0.995733,0.198934,0.703006,0.163507,0.299471,0.809555,0.829861,0.5518,0.503182,0.862974,0.408874,0.192369,0.84645,0.133966,0.989973,0.507756,0.778501,0.111783,0.479751,0.340852,0.900704,0.878689,0.50305,0.101704,0.44217,0.6693,0.517635,0.795004,0.494024,0.929948,0.364255,0.30588,0.538859,0.352851,0.481814,0.384354,0.755584,0.246467,0.754655,0.605973,0.805747,0.120063,0.315073,0.527609,0.496924,0.463048,0.0695696,0.448297,0.534815,0.993703,0.211354,0.743038,0.984165,0.232573,0.572751,0.271099,0.895319,0.345327,0.692529,0.677932,0.920337,0.25075,0.279742,0.694203,0.698174,0.930454,0.0680394,0.0340808,0.566203,0.801532,0.00627071,0.504023,0.658834,0.621313,0.912027,0.780633,0.975043,0.422316,0.882995,0.801231,0.398805,0.398056,0.545734,0.995996,0.509437,0.417745,0.370461,0.208358,0.157393,0.961051,0.695825,0.646626,0.334963,0.705554,0.650397,0.832372,0.29088,0.41221,0.235032,0.508381,0.411178,0.368399,0.888875,0.057759,0.309997,0.947778,0.444586,0.85383,0.634578,0.528,0.198544,0.323374,0.461044,0.252508,0.125096,0.477181,0.768441,0.198107,0.575724,0.73262,0.74213,0.998033,0.878597,0.280728,0.0608431,0.345064,0.224053,0.675538,0.226883,0.0222857,0.556532,0.658793,0.382019,0.319823,0.928513,0.975499,0.891792,0.125725,0.694446,0.123875,0.0943845,0.211324,0.735687,0.423843,0.920687,0.855032,0.416939,0.517915,0.203642,0.241494,0.301128,0.8217,0.35043,0.758378,0.658555,0.448586,0.380132,0.29925,0.228083,0.969074,0.936619,0.928533,0.323498,0.163313,0.544641,0.696685,0.934766,0.592173,0.303349,0.598704,0.576856,0.00562727,0.774678,0.255116,0.453543,0.2403,0.883432,0.0938985,0.114013,0.630291,0.236416,0.531841,0.278668,0.635995,0.425854,0.163075,0.395482,0.191534,0.611979,0.439321,0.416508,0.853047,0.397457,0.902141,0.84191,0.767857,0.528243,0.594261,0.298589,0.155272,0.656576,0.129106,0.0905308,0.586297,0.591048,0.997504,0.151165,0.949907,0.81971,0.303373,0.322522,0.501577,0.320719,0.609694,0.220128,0.35261,0.107278,0.66612,0.739364,0.845302,0.651725,0.108687,0.98743,0.322385,0.35193,0.142673,0.232627,0.688355,0.448107,0.858903,0.537429,0.770459,0.383668,0.223828,0.863282,0.78144,0.0408263,0.0997418,0.848914,0.166075,0.655291,0.542773,0.464362,0.602678,0.786555,0.588226,0.319094,0.563135,0.126136,0.846317,0.648429,0.721638,0.468605,0.571677,0.651772,0.320534,0.846579,0.127919,0.915137,0.519499,0.912558,0.0434931,0.839152,0.232629,0.782286,0.278887,0.0932281,0.602807,0.397468,0.00257456,0.102287,0.514455,0.580748,0.547202,0.796134,0.683944,0.999593,0.606694,0.629879,0.941044,0.00442302,0.00576299,0.0100718,0.793064,0.937668,0.436041,0.402805,0.413268,0.547786,0.909028,0.93123,0.229611,0.256172,0.60528,0.442359,0.956516,0.460506,0.583119,0.0366434,0.709011,0.0845021,0.11854,0.606614,0.932672,0.76705,0.961737,0.0375302,0.783477,0.482059,0.943102,0.450207,0.195161,0.956623,0.215955,0.848962,0.715239,0.489141,0.983725,0.776548,0.60114,0.853531,0.0813743,0.73638,0.0202475,0.632057,0.383821,0.759467,0.237399,0.74368,0.000883579,0.713813,0.878451,0.912601,0.7714,0.575866,0.888178,0.797726,0.205963,0.805609,0.496886,0.520812,0.782625,0.115735,0.40579,0.942071,0.0100837,0.594076,0.727135,0.550603,0.952947,0.827202,0.284032,0.692236,0.0568707,0.500374,0.80292,0.487186,0.742157,0.941176,0.0850608,0.669761,0.90663,0.328556,0.36919,0.982421,0.635793,0.34912,0.523251,0.0174716,0.511928,0.16216,0.0331886,0.0320535,0.766275,0.550417,0.787162,0.0119575,0.598764,0.444153,0.543072,0.6581,0.234056,0.196991,0.257493,0.561275,0.750504,0.155059,0.319693,0.477148,0.724963,0.670426,0.341593,0.725922,0.188345,0.321411,0.710078,0.163371,0.604748,0.63366,0.208191,0.46267,0.934128,0.333616,0.142154,0.286235,0.182565,0.735423,0.741485,0.0672212,0.630535,0.896596,0.345953,0.456743,0.950669,0.199041,0.780808,0.918541,0.757121,0.152112,0.85809,0.448017,0.661422,0.789611,0.733923,0.00750053,0.979264,0.441476,0.114127,0.00156873,0.820779,0.981916,0.2618,0.496205,0.568939,0.499315,0.705331,0.612867,0.0145547,0.537242,0.754867,0.339844,0.267618,0.369759,0.0495129,0.599758,0.937861,0.639059,0.857416,0.552209,0.653193,0.514749,0.0194368,0.0319975,0.344105,0.464091,0.930909,0.54878,0.245681,0.788255,0.246428,0.479882,0.165731,0.880132,0.0755544,0.225257,0.0183807,0.46941,0.56972,0.676761,0.87687,0.535956,0.979157,0.597711,0.149357,0.767989,0.60319,0.617201,0.0847111,0.381064,0.239084,0.267452,0.0805786,0.981004,0.70934,0.56419,0.916738,0.120183,0.283802,0.534904,0.330538,0.205592,0.952336,0.0644292,0.245044,0.0613438,0.542171,0.480955,0.482304,0.0284473,0.426414,0.606854,0.160515,0.949896,0.336294,0.39284,0.873019,0.994923,0.487224,0.852915,0.716331,0.943152,0.318705,0.0429602,0.169021,0.0545779,0.70188,0.700103,0.783821,0.597396,0.0785928,0.0501688,0.76243,0.553301,0.013572,0.317137,0.984643,0.745159,0.0706776,0.283479,0.212603,0.305451,0.83608,0.0400239,0.409211,0.35138,0.650583,0.725745,0.381039,0.629047,0.246932,0.139297,0.97294,0.122589,0.131082,0.821856,0.335196,0.61164,0.556344,0.624213,0.942324,0.640427,0.660428,0.496048,0.533439,0.824202,0.375439,0.68436,0.564319,0.206317,0.551858,0.324888,0.685541,0.0374489,0.13701,0.213158,0.85387,0.84296,0.781744,0.907389,0.59475,0.497437,0.297463,0.00265485,0.340927,0.114013,0.507067,0.504361,0.00644624,0.498402,0.664384,0.421847,0.348166,0.959492,0.396271,0.912842,0.704376,0.677594,0.872033,0.805089,0.897333,0.592592,0.871393,0.430059,0.121768,0.917081,0.870464,0.753329,0.356326,0.968732,0.308422,0.791243,0.883518,0.879812,0.852761,0.707526,0.322947,0.844635,0.275396,0.873675,0.376441,0.772793,0.31034,0.182001,0.0277371,0.026647,0.0962179,0.243251,0.383789,0.138375,0.0737398,0.569333,0.944515,0.423689,0.611024,0.748608,0.514469,0.40093,0.385494,0.910434,0.280341,0.249595,0.839539,0.599497,0.316533,0.695315,0.642304,0.439791,0.926043,0.980879,0.475058,0.457629,0.275918,0.867373,0.264582,0.345881,0.998306,0.0950621,0.819593,0.662129,0.28161,0.0628644,0.25843,0.0856662,0.993483,0.67149,0.571398,0.171222,0.602331,0.195222,0.598191,0.0433212,0.399928,0.805572,0.701895,0.982687,0.923799,0.586541,0.683274,0.987612,0.849059,0.910934,0.208092,0.659669,0.191156,0.427177,0.42582,0.913814,0.699553,0.582216,0.911427,0.359257,0.173461,0.481286,0.347908,0.850676,0.156095,0.740629,0.871301,0.516296,0.340522,0.943779,0.524392,0.216154,0.991432,0.662282,0.0834967,0.129759,0.618069,0.233246,0.475401,0.872808,0.549921,0.918372,0.898277,0.392931,0.68317,0.870439,0.418152,0.158268,0.0189559,0.432831,0.273649,0.303419,0.337575,0.432401,0.306297,0.264563,0.0759742,0.690594,0.608912,0.361832,0.644624,0.796436,0.111449,0.46812,0.302714,0.652093,0.375308,0.367142,0.797262,0.0941277,0.881481,0.922394,0.0125548,0.971326,0.518231,0.823649,0.331873,0.296345,0.13494,0.336956,0.679943,0.318317,0.880558,0.690499,0.778218,0.158385,0.0133215,0.358807,0.661412,0.814611,0.194488,0.499509,0.973116,0.453857,0.995488,0.275164,0.249386,0.784797,0.814079,0.0458272,0.994387,0.455748,0.888942,0.0176561,0.512888,0.619453,0.053676,0.683854,0.276518,0.911578,0.661259,0.312493,0.887836,0.620043,0.826519,0.0472183,0.326237,0.958476,0.930715,0.683953,0.513239,0.585963,0.420296,0.123783,0.657843,0.454931,0.596898,0.894312,0.992566,0.44781,0.850477,0.827295,0.535428,0.715465,0.306595,0.526709,0.158895,0.779099,0.0734223,0.721223,0.0956784,0.326122,0.657232,0.16448,0.348653,0.314216,0.922809,0.393418,0.63889,0.136035,0.601996,0.367226,0.068644,0.892515,0.767853,0.418776,0.432627,|0.511953,0.120974,0.760032,0.272402,0.522577,0.668069,0.947354,0.742717,0.138766,0.744118,0.700417,0.537429,0.584255,0.298333,0.636987,0.962088,0.98156,0.578805,0.399094,0.25484,0.912266,0.510847,0.767638,0.608475,0.837246,0.545368,0.754193,0.413127,0.0889122,0.421608,0.746839,0.782386,0.869341,0.645493,0.227073,0.516421,0.0789627,0.13312,0.421235,0.533882,0.440851,0.29765,0.623735,0.0937504,0.228636,0.595833,0.790161,0.132173,0.135926,0.659516,0.966521,0.3859,0.742282,0.357444,0.114791,0.246321,0.678767,0.294782,0.371633,0.912383,0.744352,0.370405,0.82553,0.990804,0.319907,0.125277,0.875797,0.747504,0.115304,0.509781,0.373741,0.49522,0.00681937,0.0830051,0.325579,0.312575,0.702194,0.444965,0.782899,0.212336,0.120952,0.358811,0.297719,0.359887,0.532031,0.470343,0.275398,0.968808,0.16878,0.98749,0.0352342,0.203236,0.465507,0.428734,0.877857,0.343245,0.311363,0.765361,0.796222,0.756198,0.103803,0.246329,0.0109222,0.540646,0.59907,0.962382,0.154718,0.1269,0.734109,0.416616,0.620303,0.949483,0.813459,0.720996,0.909262,0.503137,0.830482,0.0854322,0.342311,0.862423,0.912241,0.0512714,0.469552,0.574363,0.720915,0.180154,0.468617,0.466375,0.91986,0.800825,0.455918,0.179008,0.673768,0.0651716,0.393387,0.776936,0.583797,0.964851,0.575068,0.871718,0.507167,0.286125,0.572412,0.617209,0.671924,0.711167,0.63337,0.882542,0.590925,0.19066,0.997378,0.544965,0.947803,0.0898706,0.656298,0.817209,0.544765,0.358553,0.628163,0.153428,0.823733,0.103126,0.834467,0.352152,0.389279,0.19201,0.262573,0.0905783,0.0669059,0.405847,0.411924,0.265136,0.0741604,0.293819,0.162299,0.55287,0.898761,0.339603,0.554332,0.239826,0.721524,0.145321,0.526185,0.516359,0.841383,0.392874,0.708014,0.87852,0.0327436,0.847356,0.0708842,0.812184,0.854231,0.283723,0.883947,0.490806,0.425357,0.557464,0.795162,0.272559,0.761878,0.537903,0.425558,0.887877,0.426246,0.0999122,0.597778,0.228238,0.451035,0.435148,0.687441,0.451312,0.444848,0.252145,0.741688,0.322948,0.622346,0.390377,0.52804,0.368725,0.323423,0.229859,0.414505,0.682955,0.344052,0.312814,0.805738,0.945836,0.952874,0.85475,0.94661,0.484473,0.416106,0.125236,0.476386,0.199384,0.417426,0.0738339,0.504621,0.354637,0.807709,0.535233,0.781326,0.638902,0.29035,0.935884,0.783456,0.129116,0.337191,0.472966,0.101858,0.79709,0.844255,0.978649,0.205755,0.255149,0.146809,0.703901,0.617986,0.749269,0.566724,0.803534,0.251283,0.681672,0.312212,0.79127,0.921997,0.846677,0.516925,0.913206,0.274582,0.918469,0.550699,0.139128,0.656315,0.420474,0.804412,0.765729,0.530132,0.707237,0.583417,0.00517547,0.577088,0.658198,0.231689,0.0481694,0.333394,0.0219825,0.503412,0.452781,0.0520946,0.485018,0.933974,0.596975,0.923708,0.424069,0.113597,0.577198,0.41632,0.70414,0.876022,0.963755,0.337556,0.0650086,0.103381,0.579594,0.138323,0.396879,0.0339001,0.733116,0.364268,0.214328,0.967112,0.217732,0.469001,0.88982,0.707319,0.722193,0.231812,0.545202,0.626981,0.485987,0.816928,0.551295,0.373428,0.127611,0.0363857,0.687832,0.550457,0.355869,0.560067,0.102842,0.164743,0.35905,0.284861,0.446714,0.560605,0.696264,0.830641,0.637485,0.286011,0.166075,0.873099,0.62478,0.262104,0.656452,0.783682,0.383635,0.0691229,0.247886,0.952552,0.734939,0.980405,0.213554,0.612952,0.526813,0.124302,0.330351,0.586658,0.540171,0.540824,0.205266,0.133892,0.0136752,0.778211,0.788773,0.107392,0.607571,0.825339,0.214869,0.636023,0.211623,0.0733735,0.935542,0.321478,0.66963,0.377655,0.759086,0.0835996,0.479116,0.402788,0.748953,0.755485,0.406483,0.731653,0.646625,0.0141962,0.449146,0.846196,0.087737,0.464826,0.186833,0.812501,0.335073,0.106959,0.219367,0.60628,0.0124173,0.714331,0.554564,0.914696,0.785328,0.668817,0.0319939,0.965274,0.0228161,0.573083,0.670988,0.258817,0.154144,0.844325,0.669187,0.555328,0.592744,0.223803,0.211522,0.647509,0.639474,0.811878,0.0401317,0.589018,0.0982178,0.870767,0.374119,0.313885,0.234041,0.126284,0.808027,0.702481,0.211893,0.932191,0.670601,0.924916,0.757982,0.491525,0.637859,0.300274,0.778223,0.913971,0.440142,0.774153,0.614485,0.697404,0.49372,0.479752,0.638709,0.431426,0.864834,0.715401,0.130572,0.864352,0.813953,0.525237,0.480206,0.434145,0.999649,0.780259,0.520877,0.0196571,0.0437021,0.781992,0.0841449,0.32713,0.689468,0.98332,0.308002,0.466431,0.151124,0.375253,0.111734,0.254362,0.189085,0.697488,0.763084,0.573341,0.481408,0.38926,0.607502,0.46231,0.881453,0.910098,0.0841737,0.502468,0.262028,0.453407,0.878634,0.183327,0.681928,0.290271,0.346506,0.689552,0.240737,0.316679,0.494148,0.311221,0.679615,0.252308,0.826284,0.452305,0.625588,0.285513,0.497103,0.909514,0.710275,0.537183,0.245588,0.456293,0.716207,0.65662,0.133652,0.168301,0.313234,0.690752,0.354539,0.346558,0.0192211,0.732499,0.990968,0.691241,0.0958711,0.793141,0.995587,0.460128,0.232358,0.282025,0.433217,0.245759,0.64375,0.284883,0.104009,0.589211,0.670761,0.958864,0.450181,0.977339,0.815729,0.64729,0.0410699,0.799749,0.444456,0.13928,0.231362,0.549555,0.210511,0.526111,0.361525,0.614966,0.520405,0.579442,0.0820744,0.766077,0.2025,0.318042,0.709532,0.520043,0.853287,0.469251,0.963092,0.722179,0.61182,0.882852,0.439328,0.0639023,0.700141,0.663397,0.795352,0.422022,0.231569,0.244788,0.13374,0.0591576,0.919725,0.300974,0.626767,0.597196,0.560881,0.311063,0.479598,0.302024,0.254556,0.174813,0.619353,0.213861,0.324166,0.203899,0.811644,0.184347,0.900691,0.710397,0.003905,0.00800431,0.940004,0.810934,0.0374761,0.521897,0.172445,0.334592,0.621475,0.383599,0.23429,0.831747,0.405693,0.131534,0.920067,0.0401539,0.234099,0.702345,0.506581,0.227895,0.229959,0.426574,0.596773,0.475993,0.435747,0.346153,0.889583,0.510278,0.307206,0.421428,0.302482,0.103303,0.63353,0.67832,0.0933558,0.951268,0.935558,0.831448,0.950286,0.270326,0.410137,0.520308,0.154473,0.172021,0.237362,0.398608,0.442458,0.876921,0.0897766,0.305512,0.290184,0.362714,0.747685,0.972122,0.350278,0.615035,0.742247,0.644053,0.792613,0.547131,0.687774,0.985322,0.878563,0.25335,0.153226,0.552395,0.431066,0.414489,0.0126722,0.803573,0.231152,0.561419,0.238144,0.448861,0.115529,0.638395,0.979394,0.254078,0.760983,0.268414,0.654291,0.274769,0.354906,0.488063,0.330543,0.763953,0.837112,0.292655,0.527303,0.755169,0.632708,0.0964125,0.100978,0.39092,0.237874,0.435313,0.913301,0.589096,0.430858,0.914763,0.810512,0.541219,0.462932,0.456704,0.759065,0.851282,0.53474,0.285898,0.213974,0.601024,0.050859,0.684725,0.109383,0.13434,0.29626,0.910191,0.501069,0.0561045,0.354857,0.845355,0.313399,0.192323,0.310495,0.354773,0.333726,0.346731,0.728736,0.178221,0.446594,0.230616,0.625633,0.0693692,0.174221,0.938291,0.664666,0.545318,0.263821,0.65908,0.00410229,0.841736,0.996483,0.291984,0.170473,0.680919,0.266565,0.662937,0.768207,0.529814,0.227838,0.0513277,0.0646179,0.731226,0.322389,0.372117,0.0261022,0.526118,0.0904392,0.262204,0.357017,0.143268,0.187808,0.882542,0.946044,0.518689,0.0650452,0.979146,0.955353,0.848582,0.0425882,0.348861,0.885413,0.337161,0.378666,0.973703,0.339835,0.492968,0.735685,0.748733,0.046575,0.830605,0.102977,0.683412,0.882854,0.375673,0.504127,0.00693387,0.238403,0.842534,0.273292,0.473984,0.951646,0.8827,0.285433,0.939829,0.113658,0.777273,0.322441,0.262649,0.526967,0.252828,0.717881,0.565343,0.417629,0.789132,0.441101,0.203333,0.655119,0.717491,0.736212,0.467574,0.109073,0.429567,0.691747,0.571713,0.245719,0.876932,0.174655,0.214335,0.364395,0.194974,0.0339329,0.597035,0.686251,0.997909,0.289476,0.444992,0.769383,0.0903136,0.0840634,0.0650081,0.211631,0.17175,0.928948,0.712334,0.29177,0.338028,0.534368,0.898989,0.200892,0.524007,0.251069,0.269927,0.718679,0.926277,0.174262,0.85176,0.966288,0.155568,0.83683,0.153861,0.403519,0.211113,0.766801,0.972983,0.391653,0.445057,0.0200829,0.512932,0.169829,0.727997,0.100544,0.287356,0.632763,0.977727,0.507243,0.30028,0.558495,0.407168,0.550949,0.0575636,0.712992,0.0194901,0.297191,0.361167,0.678023,0.281058,0.923452,0.369496,0.417019,0.122354,0.134547,0.551065,0.276003,0.662483,0.512856,0.782579,0.713569,0.32638,0.813331,0.904398,0.72177,0.955004,0.882226,0.544725,0.80814,0.545629,0.669275,0.689878,0.64607,0.94164,0.835655,0.0626908,0.717442,0.864257,0.369633,0.927951,0.826416,0.668924,0.209027,0.406362,0.32499,0.916592,0.922452,0.434967,0.729297,0.972396,0.45764,0.794767,0.419883,0.917584,0.32076,0.0914276,0.250082,0.744884,0.100076,0.621258,0.648319,0.780097,0.0914649,0.65559,0.441372,0.424101,0.366973,0.565238,0.903306,0.696966,0.756192,0.694577,0.0209569,0.409669,0.44482,0.471015,0.0156164,0.568394,0.692267,0.853465,0.550203,0.0965915,0.745866,0.624082,0.961332,0.24906,0.573864,0.0293509,0.526087,0.937249,0.641869,0.690528,0.788486,0.836705,0.908349,0.806664,0.0810244,0.797344,0.130772,0.425173,0.399825,0.985101,0.167293,0.328494,0.038001,0.620453,0.299499,0.383951,0.636334,0.628241,0.817881,0.855404,0.63667,0.867847,0.279125,0.975687,0.902816,0.500095,0.745854,0.950502,0.552712,0.364742,0.19182,0.541648,0.926681,0.811873,0.834659,0.4003,0.466494,0.5005,0.752636,0.490026,0.939268,0.601746,0.763578,0.740254,0.683675,0.286756,0.844406,0.685696,0.503188,0.988505,0.422985,0.626396,0.602203,|0.290972,0.212209,0.431304,0.0380334,0.0905014,0.687755,0.405064,0.374556,0.277481,0.534766,0.62107,0.845822,0.227672,0.476995,0.164038,0.369774,0.627275,0.842594,0.127953,0.936303,0.334974,0.505344,0.336927,0.305211,0.974966,0.640621,0.305363,0.210073,0.689415,0.565332,0.651859,0.547226,0.65705,0.161037,0.440336,0.000459969,0.40015,0.671013,0.271582,0.480619,0.581693,0.722201,0.85556,0.675084,0.679274,0.318681,0.389197,0.303558,0.159655,0.930951,0.740723,0.427562,0.395268,0.958152,0.120724,0.237947,0.145101,0.055217,0.779656,0.945155,0.58899,0.574955,0.640808,0.281449,0.900008,0.266662,0.156079,0.555074,0.918975,0.271507,0.994682,0.588697,0.253629,0.813804,0.0452065,0.746349,0.595622,0.879811,0.277131,0.550306,0.76812,0.52884,0.279603,0.489336,0.631268,0.28191,0.928764,0.262031,0.281775,0.362564,0.301221,0.330343,0.380063,0.894135,0.263036,0.92207,0.669622,0.169765,0.70684,0.958935,0.73143,0.148448,0.396499,0.385939,0.343025,0.806679,0.185547,0.411577,0.121603,0.13617,0.559411,0.114885,0.32429,0.0793977,0.933409,0.563751,0.717515,0.935891,0.547518,0.447022,0.860805,0.57551,0.192808,0.0962432,0.142433,0.378589,0.168464,0.158693,0.160876,0.560785,0.743038,0.534784,0.435469,0.805592,0.145497,0.211644,0.11037,0.301017,0.0232263,0.294002,0.891374,0.331349,0.64107,0.240504,0.438212,0.826471,0.875758,0.771708,0.552148,0.400583,0.375929,0.758391,0.150319,0.881459,0.586865,0.655484,0.536132,0.681059,0.44069,0.796017,0.924897,0.0450831,0.775459,0.707654,0.551453,0.12257,0.133806,0.183198,0.994218,0.778548,0.297525,0.153939,0.388031,0.135035,0.846861,0.418642,0.871753,0.855031,0.50543,0.569134,0.699548,0.724512,0.1125,0.208836,0.59819,0.289939,0.991625,0.463322,0.0315893,0.194395,0.821291,0.302799,0.0192719,0.0377598,0.0160685,0.957522,0.623117,0.893645,0.416963,0.872707,0.282972,0.812414,0.932356,0.143666,0.146047,0.427121,0.6512,0.310682,0.353202,0.0249567,0.257586,0.133717,0.872784,0.564004,0.0957,0.716413,0.260749,0.267082,0.671838,0.212107,0.958162,0.50077,0.439478,0.239292,0.0712123,0.317425,0.196342,0.870752,0.75134,0.454437,0.998723,0.783551,0.208234,0.381653,0.463166,0.961083,0.460097,0.693,0.434496,0.231381,0.303832,0.276536,0.791258,0.918992,0.98024,0.719885,0.576786,0.0709273,0.339064,0.0106106,0.745641,0.522463,0.541,0.101019,0.453109,0.373987,0.498931,0.153434,0.0675866,0.600183,0.166929,0.837766,0.102766,0.897187,0.317308,0.667696,0.0545016,0.337087,0.749693,0.383216,0.82981,0.0163302,0.90211,0.411397,0.106693,0.486491,0.448759,0.893297,0.619634,0.908806,0.284742,0.187621,0.718987,0.0161232,0.444828,0.772762,0.401508,0.500161,0.488609,0.212217,0.43692,0.79925,0.95351,0.280173,0.542521,0.390215,0.686387,0.39741,0.48039,0.301267,0.820153,0.715091,0.0984777,0.856757,0.663776,0.729525,0.111198,0.592066,0.467714,0.720509,0.618176,0.330402,0.627572,0.979607,0.903524,0.521655,0.74454,0.774229,0.127783,0.616373,0.10628,0.803259,0.593391,0.512082,0.671002,0.358196,0.0188264,0.698534,0.337433,0.511983,0.184669,0.393341,0.659841,0.981798,0.791843,0.345393,0.14995,0.453229,0.0834439,0.514486,0.0706609,0.184827,0.806294,0.76242,0.433069,0.821669,0.434338,0.535356,0.320019,0.744835,0.295688,0.254854,0.313646,0.537206,0.955759,0.881093,0.272404,0.947461,0.428512,0.981203,0.203677,0.0235891,0.0700806,0.226393,0.443695,0.445864,0.0963348,0.124137,0.843352,0.341398,0.0341399,0.685544,0.252268,0.0811076,0.701384,0.889536,0.313306,0.461899,0.41942,0.32075,0.348354,0.953654,0.72773,0.983119,0.719995,0.665208,0.429227,0.0986882,0.147938,0.183036,0.87455,0.169548,0.960154,0.163882,0.652812,0.934369,0.773172,0.157738,0.763783,0.42291,0.760248,0.640881,0.673236,0.189801,0.28072,0.347246,0.955612,0.827974,0.0688497,0.323976,0.597224,0.510298,0.374703,0.994816,0.870977,0.211885,0.0355745,0.446276,0.22555,0.721747,0.537642,0.606205,0.924811,0.901667,0.509122,0.152642,0.961931,0.410877,0.297764,0.898539,0.535196,0.722951,0.587014,0.480325,0.87527,0.849837,0.637178,0.52599,0.365249,0.5657,0.104681,0.798444,0.232797,0.252407,0.728458,0.705089,0.265888,0.60197,0.270385,0.324976,0.711682,0.44347,0.693537,0.702064,0.735649,0.935747,0.142298,0.54339,0.656863,0.544903,0.366772,0.210842,0.805863,0.153918,0.15547,0.973189,0.870548,0.181099,0.286588,0.447772,0.840991,0.143962,0.958401,0.608617,0.620123,0.625742,0.942037,0.0243226,0.442975,0.545277,0.621186,0.102147,0.590826,0.376088,0.77239,0.393131,0.161655,0.475509,0.326158,0.99965,0.444208,0.949778,0.66712,0.981142,0.139661,0.696229,0.262228,0.0290977,0.918242,0.131616,0.443897,0.642625,0.186414,0.748185,0.130786,0.373311,0.15993,0.31153,0.988689,0.892399,0.436206,0.350524,0.115247,0.734229,0.183521,0.819534,0.570863,0.509739,0.204277,0.00618398,0.91429,0.373708,0.482133,0.75109,0.913718,0.412442,0.619869,0.62629,0.936447,0.478353,0.368269,0.7342,0.343277,0.97641,0.658365,0.286207,0.44733,0.307779,0.637436,0.651524,0.280638,0.730785,0.92785,0.790482,0.418027,0.3483,0.990396,0.642598,0.104928,0.0187224,0.922841,0.896645,0.101862,0.834434,0.622131,0.701242,0.175897,0.673335,0.294265,0.928495,0.0249981,0.0509752,0.422505,0.209339,0.101252,0.312464,0.190811,0.0352153,0.236615,0.0650515,0.236945,0.122809,0.870196,0.651097,0.696454,0.037336,0.388635,0.64588,0.238472,0.491849,0.454602,0.13305,0.323885,0.427996,0.225558,0.890633,0.00507087,0.502998,0.582149,0.159991,0.930359,0.636694,0.648487,0.257377,0.334831,0.204935,0.677459,0.144423,0.75039,0.444268,0.25232,0.853176,0.143616,0.791383,0.380336,0.504311,0.382239,0.191939,0.136463,0.0899349,0.873394,0.678681,0.310362,0.240164,0.719594,0.815917,0.164889,0.00154805,0.626222,0.28466,0.948321,0.64849,0.193897,0.522014,0.403688,0.33744,0.482797,0.67275,0.749869,0.672169,0.61217,0.63156,0.373146,0.487679,0.492317,0.145546,0.418754,0.349409,0.575617,0.392124,0.640173,0.245095,0.972591,0.420232,0.602392,0.235859,0.802599,0.386038,0.507847,0.744277,0.0259354,0.91221,0.27249,0.539317,0.767659,0.853592,0.511967,0.181955,0.594041,0.981824,0.103021,0.925706,0.213677,0.034229,0.770579,0.916171,0.964551,0.370294,0.0255286,0.465466,0.747279,0.846753,0.176365,0.306355,0.768505,0.46582,0.177989,0.66792,0.277978,0.478699,0.767498,0.548772,0.695702,0.140304,0.944696,0.206269,0.103218,0.102459,0.249615,0.0187732,0.440748,0.371642,0.0102661,0.682173,0.615638,0.237393,0.365012,0.359001,0.868897,0.372844,0.325366,0.461318,0.061088,0.783881,0.569504,0.0169618,0.599462,0.210452,0.0283509,0.573868,0.791169,0.276209,0.83718,0.137303,0.0481136,0.197015,0.604658,0.816892,0.258459,0.588285,0.305084,0.0673077,0.29038,0.11004,0.0278359,0.299406,0.361691,0.106754,0.154159,0.67284,0.483733,0.155548,0.214778,0.539928,0.979374,0.429585,0.895409,0.481427,0.146825,0.931095,0.508068,0.697852,0.0447906,0.854567,0.734836,0.0648366,0.414135,0.93631,0.11681,0.852469,0.512915,0.899772,0.621054,0.214559,0.437912,0.57654,0.0746321,0.43384,0.790291,0.18781,0.878546,0.615801,0.290951,0.866694,0.284374,0.0977204,0.564245,0.72571,0.069046,0.863975,0.933453,0.629688,0.490809,0.737502,0.895117,0.585236,0.162072,0.704621,0.528248,0.105007,0.757808,0.0627395,0.785482,0.212296,0.929254,0.143758,0.751776,0.0767069,0.605281,0.386659,0.627878,0.802807,0.0272396,0.876896,0.62135,0.167453,0.578525,0.176708,0.924146,0.584842,0.260999,0.41058,0.956769,0.74528,0.84401,0.974297,0.291905,0.196233,0.916408,0.281147,0.516771,0.816256,0.229823,0.0198818,0.867351,0.207992,0.392451,0.311647,0.771446,0.849118,0.523704,0.715948,0.703604,0.210468,0.408453,0.861097,0.202784,0.524078,0.131816,0.592639,0.583169,0.667097,0.100609,0.36866,0.363043,0.781081,0.131554,0.302327,0.258942,0.0249504,0.351286,0.840742,0.689174,0.261004,0.617227,0.975258,0.610722,0.848325,0.47184,0.863144,0.0214635,0.355386,0.820579,0.0766104,0.827589,0.844454,0.105458,0.45145,0.617116,0.200831,0.224098,0.960468,0.423073,0.360117,0.187409,0.489695,0.726619,0.397956,0.180763,0.804176,0.046988,0.964663,0.153779,0.359791,0.383559,0.488072,0.839728,0.974752,0.971895,0.848205,0.387692,0.0879382,0.682761,0.92037,0.261837,0.575632,0.310601,0.67757,0.86996,0.265918,0.97114,0.0526208,0.141095,0.497201,0.100271,0.542078,0.907009,0.0359337,0.631818,0.518379,0.311786,0.754376,0.427073,0.229756,0.163897,0.276591,0.0702248,0.99623,0.856062,0.227531,0.465765,0.992373,0.628015,0.33854,0.125893,0.590852,0.644921,0.217638,0.321544,0.189072,0.150874,0.784277,0.217316,0.26559,0.564736,0.839544,0.84815,0.374506,0.1169,0.801839,0.744574,0.460414,0.0043093,0.983234,0.379456,0.139365,0.173708,0.813019,0.276043,0.876053,0.544858,0.283755,0.713048,0.591234,0.367795,0.0646625,0.586564,0.215528,0.220345,0.642732,0.685127,0.671195,0.722076,0.443523,0.884492,0.457708,0.671405,0.31523,0.681982,0.949427,0.977241,0.79497,0.099624,0.530888,0.667466,0.709107,0.903177,0.507783,0.691556,0.952373,0.747763,0.920509,0.889457,0.223637,0.901508,0.755458,0.437892,0.365578,0.569661,0.0814799,0.969959,0.624884,0.45061,0.682829,0.722004,0.653655,0.465115,0.975159,0.0902439,0.52421,0.563948,0.659268,0.0278641,0.777873,0.902073,0.738497,0.928221,0.0200366,0.201585,0.28864,|0.0840008,0.859729,0.221641,0.664577,0.923154,0.265675,0.906303,0.924351,0.571325,0.618931,0.174406,0.165613,0.309446,0.667337,0.559747,0.367767,0.273988,0.809567,0.183742,0.575077,0.968279,0.811987,0.534267,0.0589138,0.832468,0.93826,0.521551,0.98609,0.377457,0.56401,0.772802,0.590441,0.250439,0.542808,0.660312,0.876935,0.972448,0.327194,0.437828,0.856859,0.88423,0.790299,0.82762,0.0943497,0.497884,0.646672,0.959291,0.00855297,0.24216,0.170138,0.329777,0.164412,0.283037,0.458409,0.513166,0.656202,0.0963119,0.86443,0.548161,0.34735,0.260395,0.518565,0.155989,0.521483,0.800453,0.882046,0.179842,0.441653,0.617096,0.350437,0.659433,0.945871,0.141405,0.151834,0.967668,0.225539,0.521628,0.236606,0.338681,0.148256,0.401965,0.494079,0.275362,0.665656,0.825524,0.0636389,0.298086,0.836769,0.592735,0.738737,0.772007,0.348536,0.808671,0.476016,0.79317,0.356035,0.692896,0.641964,0.866387,0.28606,0.625442,0.499993,0.494495,0.506175,0.57741,0.894255,0.500748,0.819538,0.119028,0.18806,0.893621,0.613264,0.157915,0.222371,0.357052,0.931363,0.864691,0.383183,0.321468,0.208533,0.806555,0.847776,0.489873,0.703792,0.53727,0.26734,0.626575,0.343641,0.911141,0.59256,0.754213,0.940002,0.488616,0.690628,0.86512,0.251314,0.0882689,0.00653249,0.382816,0.347478,0.791987,0.76652,0.583073,0.539101,0.98436,0.925611,0.166298,0.163424,0.69533,0.349224,0.269198,0.736479,0.356465,0.634929,0.486308,0.698491,0.872978,0.668359,0.32424,0.921645,0.297281,0.766728,0.451316,0.906485,0.919087,0.885044,0.955615,0.682287,0.484116,0.642433,0.152798,0.481576,0.855358,0.611971,0.697006,0.18254,0.664744,0.565484,0.225259,0.413154,0.0853487,0.0490621,0.338052,0.973883,0.796974,0.117204,0.924758,0.763407,0.811907,0.506898,0.438876,0.672227,0.00080806,0.581857,0.685735,0.26886,0.115642,0.139118,0.141165,0.694207,0.872221,0.35967,0.736029,0.778639,0.246365,0.197178,0.324692,0.0664942,0.223777,0.97612,0.252281,0.631521,0.0821435,0.313178,0.444214,0.928335,0.536708,0.367808,0.18148,0.45711,0.946131,0.49349,0.0637665,0.186699,0.51626,0.248136,0.284783,0.599098,0.178236,0.245869,0.141799,0.373279,0.306405,0.0625221,0.962017,0.129045,0.307965,0.743131,0.295954,0.768932,0.779088,0.595121,0.0285285,0.473762,0.705429,0.438122,0.456699,0.44039,0.482372,0.939228,0.599371,0.194882,0.897342,0.552026,0.541691,0.526663,0.7968,0.758977,0.123068,0.7319,0.741078,0.0544037,0.523523,0.48284,0.0998467,0.981731,0.595896,0.0206391,0.734008,0.371302,0.879529,0.474495,0.938535,0.777041,0.984912,0.748091,0.49367,0.374755,0.550629,0.300966,0.679127,0.861831,0.833327,0.662909,0.323936,0.91621,0.726241,0.364342,0.379492,0.27822,0.446055,0.790297,0.0210155,0.176516,0.286268,0.648041,0.269366,0.896817,0.517764,0.144721,0.711443,0.707307,0.287065,0.459212,0.408061,0.805143,0.208493,0.792276,0.943708,0.859161,0.0807139,0.795362,0.354674,0.415994,0.593531,0.0118163,0.129282,0.680441,0.388982,0.378984,0.47448,0.648179,0.160243,0.46405,0.919356,0.165491,0.0535293,0.502554,0.589514,0.125587,0.0286156,0.688324,0.349684,0.642571,0.540211,0.58792,0.0116519,0.225762,0.695491,0.951523,0.127596,0.302304,0.276213,0.0670166,0.272713,0.980328,0.359749,0.6911,0.807293,0.245125,0.102865,0.0130832,0.702413,0.0188553,0.151786,0.677596,0.00708544,0.84234,0.511494,0.660116,0.0268989,0.127126,0.391249,0.186561,0.637366,0.554535,0.302373,0.221916,0.675398,0.451028,0.306058,0.641302,0.104552,0.504978,0.616719,0.836277,0.886133,0.169673,0.464063,0.783875,0.595689,0.415435,0.118759,0.341765,0.709729,0.684787,0.459575,0.0783897,0.983615,0.371531,0.690669,0.239408,0.606013,0.879434,0.3933,0.57637,0.330348,0.0463606,0.804962,0.167211,0.198006,0.0341601,0.819932,0.462275,0.518814,0.366108,0.249037,0.912863,0.758586,0.954014,0.796511,0.241598,0.625398,0.882355,0.315281,0.916113,0.514302,0.2414,0.27621,0.509694,0.626506,0.348595,0.187127,0.257881,0.385452,0.145406,0.0811649,0.888135,0.010553,0.607152,0.924017,0.902267,0.270836,0.841767,0.706488,0.170846,0.713766,0.414021,0.921096,0.460258,0.098402,0.194623,0.521741,0.816334,0.0712893,0.861282,0.75626,0.332054,0.362584,0.450017,0.251937,0.899867,0.0109536,0.239787,0.0730184,0.0747484,0.304899,0.529529,0.760568,0.51484,0.477951,0.705298,0.997275,0.708466,0.671043,0.482305,0.949813,0.237136,0.120926,0.702349,0.797909,0.326164,0.897344,0.94491,0.49505,0.170412,0.531813,0.0583162,0.442357,0.92951,0.243571,0.150614,0.298634,0.083832,0.940851,0.216258,0.261625,0.94699,0.101358,0.283861,0.153138,0.295165,0.386958,0.0634549,0.686762,0.506708,0.253112,0.930331,0.793552,0.924383,0.335761,0.533948,0.0525388,0.573304,0.576008,0.174431,0.516701,0.148466,0.236212,0.346535,0.221651,0.108795,0.566429,0.643382,0.0156894,0.979588,0.0188454,0.354857,0.0447185,0.795215,0.0664913,0.330161,0.450193,0.422647,0.881082,0.449121,0.889244,0.776736,0.917147,0.960967,0.714717,0.778716,0.335126,0.313059,0.591103,0.683826,0.294429,0.375329,0.204052,0.266359,0.885629,0.825276,0.622749,0.0849479,0.621636,0.70571,0.0222844,0.971754,0.628558,0.813399,0.739115,0.698883,0.718962,0.607028,0.488439,0.662251,0.878547,0.0959494,0.331106,0.236741,0.770386,0.0441466,0.0973836,0.871743,0.337549,0.746909,0.149318,0.750866,0.567362,0.731472,0.713547,0.0880456,0.768114,0.486973,0.348428,0.543457,0.076581,0.550732,0.934015,0.863701,0.00358236,0.19353,0.492504,0.45433,0.807684,0.950683,0.825985,0.727202,0.829157,0.374993,0.687362,0.304959,0.18597,0.902332,0.11763,0.391264,0.943551,0.0446201,0.165156,0.13354,0.614743,0.719564,0.0640739,0.600514,0.928158,0.698878,0.628271,0.392942,0.744947,0.000744581,0.959131,0.873229,0.0310096,0.26804,0.977781,0.423331,0.510505,0.793443,0.0534987,0.0129082,0.212746,0.0765585,0.0664095,0.279473,0.411045,0.621825,0.830018,0.937602,0.71359,0.254094,0.97381,0.417473,0.095894,0.22378,0.623185,0.031644,0.288996,0.903284,0.166927,0.420158,0.529738,0.0443025,0.941952,0.187709,0.286208,0.474203,0.430479,0.00925833,0.403659,0.62937,0.214373,0.361862,0.665321,0.672409,0.127537,0.562673,0.339514,0.488744,0.603528,0.22454,0.123624,0.695663,0.793555,0.444168,0.332276,0.457634,0.923145,0.667074,0.873753,0.256072,0.721771,0.65763,0.399556,0.651627,0.910742,0.140633,0.39736,0.706497,0.43379,0.0354195,0.668312,0.259733,0.346554,0.00395238,0.740264,0.285183,0.097869,0.454164,0.629113,0.51393,0.798048,0.607812,0.347389,0.905557,0.959951,0.899887,0.181992,0.286527,0.700451,0.578929,0.597589,0.0378343,0.955937,0.432165,0.520358,0.917726,0.360279,0.079822,0.213699,0.96471,0.560501,0.645744,0.983677,0.559735,0.367444,0.0178916,0.213725,0.188085,0.465855,0.0710544,0.157336,0.496893,0.11443,0.101932,0.432289,0.941031,0.972347,0.771352,0.452568,0.117366,0.0112956,0.661833,0.295963,0.0197747,0.127103,0.158276,0.487616,0.262119,0.745958,0.719922,0.489353,0.596995,0.884216,0.976848,0.9037,0.7211,0.695641,0.700358,0.35885,0.113241,0.667013,0.762208,0.995193,0.277271,0.15057,0.366637,0.889836,0.864569,0.252428,0.0228466,0.865847,0.584197,0.874278,0.932829,0.551434,0.247175,0.672372,0.0902674,0.596905,0.958259,0.300534,0.0599466,0.843415,0.872521,0.352671,0.367713,0.72465,0.0931872,0.185066,0.918035,0.190473,0.127805,0.524532,0.415148,0.800149,0.558721,0.161416,0.0859113,0.14942,0.428726,0.716325,0.334367,0.967235,0.682831,0.171401,0.984567,0.357521,0.756734,0.0554709,0.118359,0.55402,0.659943,0.262393,0.125273,0.626541,0.28907,0.369874,0.29022,0.729191,0.523795,0.297687,0.321916,0.894856,0.863955,0.380225,0.870094,0.559851,0.947404,0.472025,0.173285,0.625624,0.962548,0.751626,0.722159,0.2236,0.822007,0.0833528,0.920057,0.415604,0.969009,0.519333,0.189552,0.258093,0.170453,0.165211,0.718183,0.332194,0.595021,0.843329,0.977789,0.948475,0.316421,0.260742,0.330529,0.382556,0.557084,0.637393,0.608992,0.525909,0.0538188,0.24071,0.111269,0.894308,0.741516,0.31104,0.140296,0.172213,0.128452,0.117724,0.23897,0.599308,0.982371,0.388211,0.984098,0.975518,0.749407,0.337802,0.493103,0.10789,0.884763,0.859093,0.0469034,0.955383,0.73616,0.966569,0.467002,0.947722,0.313644,0.446497,0.831724,0.250893,0.120889,0.562302,0.0314757,0.997121,0.15643,0.997018,0.324906,0.365708,0.735603,0.503856,0.186184,0.737256,0.305048,0.366411,0.911813,0.157,0.310413,0.137399,0.777815,0.340275,0.965782,0.287882,0.0398071,0.819046,0.523949,0.157624,0.120347,0.674155,0.219643,0.770267,0.761892,0.809185,0.458608,0.0286984,0.854564,0.252743,0.0193413,0.0134789,0.804236,0.155405,0.478528,0.346932,0.959338,0.753556,0.370314,0.0541474,0.98327,0.345481,0.730579,0.221344,0.312651,0.739541,0.510415,0.381843,0.323437,0.819499,0.981836,0.689328,0.748755,0.963825,0.160154,0.801134,0.0787878,0.759452,0.516425,0.853464,0.501614,0.612459,0.841829,0.796183,0.992843,0.494687,0.738443,0.813,0.589332,0.680407,0.803341,0.397996,0.74817,0.588741,0.786721,0.462496,0.914541,0.647351,0.838352,0.672615,0.380986,0.202025,0.973895,0.372911,0.348117,0.794141,0.550063,0.600826,0.621721,0.173209,0.759762,0.452266,0.509139,0.704764,0.832193,0.238153,0.307091,0.629255,0.335432,0.305486,0.657329,0.204056,0.193216,0.615994,0.223849,0.215693,0.169717,0.186121,0.762881,0.502414,0.166367,0.925709,0.822084,|0.401781,0.80994,0.947418,0.345138,0.263212,0.455833,0.218383,0.102308,0.529281,0.283918,0.8768,0.203324,0.0155585,0.680794,0.867583,0.541789,0.187802,0.845566,0.990439,0.190018,0.131256,0.953495,0.653623,0.0584713,0.732909,0.691229,0.357675,0.111,0.167176,0.678266,0.625565,0.509136,0.236252,0.714595,0.483577,0.575376,0.911714,0.299829,0.167876,0.568213,0.487918,0.0543429,0.244696,0.91554,0.752366,0.800437,0.341121,0.52578,0.492657,0.039427,0.865264,0.405319,0.921777,0.179451,0.585971,0.658151,0.142844,0.522385,0.609983,0.933608,0.727326,0.641353,0.536816,0.792709,0.850978,0.685419,0.780822,0.0155044,0.864088,0.803308,0.351831,0.228976,0.376321,0.29431,0.348172,0.17412,0.61072,0.974595,0.819192,0.965402,0.834792,0.924943,0.089572,0.940394,0.0218733,0.991572,0.68509,0.78588,0.975705,0.573114,0.225793,0.70956,0.121701,0.732106,0.684713,0.0280154,0.365673,0.489244,0.901864,0.672697,0.710574,0.0224399,0.428307,0.244445,0.515586,0.479082,0.678412,0.358355,0.141949,0.454873,0.149646,0.96882,0.38795,0.81675,0.6533,0.644535,0.922051,0.596744,0.463513,0.504396,0.356893,0.651561,0.525713,0.847156,0.70162,0.228552,0.33738,0.653084,0.352033,0.328449,0.880419,0.820352,0.0473667,0.686755,0.134316,0.689899,0.0386449,0.62309,0.418083,0.614038,0.708187,0.799933,0.840839,0.28328,0.696253,0.685669,0.0678465,0.181146,0.427533,0.862347,0.579914,0.261327,0.760586,0.386955,0.0425994,0.236867,0.401615,0.0484212,0.912752,0.6258,0.607799,0.290735,0.664275,0.405777,0.781077,0.569162,0.527045,0.077123,0.972742,0.330532,0.905473,0.826932,0.290137,0.0247404,0.833945,0.996593,0.638888,0.907849,0.350508,0.580352,0.156071,0.487213,0.554573,0.642798,0.751897,0.164493,0.12401,0.280942,0.0185841,0.446952,0.713321,0.780325,0.409153,0.43825,0.212289,0.702852,0.788352,0.602339,0.778206,0.380102,0.561264,0.147821,0.655478,0.517451,0.111276,0.850624,0.344958,0.302908,0.35769,0.488507,0.52678,0.910359,0.348269,0.308363,0.143285,0.945176,0.33483,0.436746,0.545518,0.0386527,0.651341,0.945966,0.202014,0.990751,0.911585,0.639529,0.846024,0.688686,0.0634426,0.97953,0.620705,0.297221,0.650078,0.788536,0.471203,0.379377,0.0212549,0.934655,0.302752,0.580595,0.864421,0.0369105,0.495253,0.973893,0.600332,0.657165,0.731149,0.606764,0.374795,0.28164,0.966088,0.721659,0.786353,0.167927,0.0397167,0.220026,0.295602,0.878641,0.15005,0.199884,0.59324,0.441191,0.303803,0.474546,0.711713,0.111742,0.605859,0.86127,0.123262,0.922374,0.88516,0.0632799,0.560344,0.831066,0.229629,0.0667705,0.392792,0.454005,0.719325,0.929488,0.431172,0.923867,0.173508,0.298952,0.437276,0.900351,0.0186427,0.476611,0.778077,0.167442,0.637431,0.675899,0.315832,0.358582,0.941147,0.0190335,0.804083,0.265787,0.713838,0.374113,0.694388,0.31728,0.598539,0.541258,0.823833,0.344203,0.738462,0.399998,0.915032,0.609851,0.21725,0.395064,0.454148,0.599704,0.626947,0.251404,0.435304,0.905304,0.347961,0.65019,0.0418035,0.694831,0.120693,0.674069,0.0892631,0.327835,0.180433,0.393546,0.745485,0.572714,0.151006,0.445469,0.807183,0.835576,0.0116866,0.723143,0.623526,0.604471,0.568721,0.0563831,0.7289,0.892508,0.344857,0.107626,0.799999,0.2598,0.251072,0.896181,0.437095,0.914754,0.232861,0.267757,0.326261,0.226059,0.689398,0.749398,0.927196,0.589952,0.861277,0.344118,0.768645,0.472766,0.741243,0.76513,0.018214,0.718701,0.03172,0.581826,0.78195,0.168138,0.506791,0.113895,0.688536,0.764092,0.543814,0.432601,0.699147,0.639901,0.390637,0.77515,0.833092,0.0790996,0.660192,0.230614,0.5376,0.0450273,0.0767016,0.0592538,0.289956,0.84793,0.935004,0.510924,0.963343,0.43619,0.901263,0.615911,0.115799,0.677952,0.806524,0.879139,0.799266,0.261805,0.539012,0.808024,0.000941515,0.815785,0.769757,0.823879,0.344474,0.805892,0.552234,0.604767,0.200787,0.560186,0.233937,0.0880672,0.873675,0.788965,0.412056,0.0763411,0.50641,0.289497,0.559043,0.813606,0.203676,0.829649,0.469994,0.428467,0.0900136,0.265196,0.407848,0.496694,0.364658,0.0120428,0.962193,0.450336,0.792792,0.872086,0.981278,0.824568,0.414151,0.0632302,0.760745,0.931485,0.223088,0.0593662,0.943853,0.0370808,0.456891,0.862119,0.71387,0.917738,0.167788,0.765647,0.589048,0.476245,0.377562,0.243191,0.981363,0.775075,0.636071,0.24096,0.0447134,0.483865,0.0427528,0.261595,0.262523,0.418577,0.193315,0.338519,0.416706,0.83657,0.39738,0.815385,0.121276,0.889205,0.718505,0.500503,0.988317,0.540468,0.0291345,0.671236,0.599734,0.04827,0.317517,0.962588,0.215733,0.419522,0.814852,0.784282,0.639193,0.382534,0.0573279,0.269705,0.708978,0.918605,0.5426,0.637738,0.408522,0.70882,0.929708,0.916552,0.819757,0.719939,0.372218,0.0159856,0.94079,0.660639,0.128797,0.163548,0.147352,0.133206,0.804356,0.691899,0.809575,0.509141,0.14188,0.814588,0.965022,0.421045,0.484613,0.0162114,0.119661,0.13162,0.0551981,0.0268113,0.0763853,0.100853,0.126494,0.983429,0.0714741,0.0880504,0.391254,0.390205,0.874923,0.195609,0.497915,0.827941,0.923377,0.541004,0.730762,0.310075,0.320455,0.860425,0.63382,0.0343243,0.789715,0.468823,0.916986,0.186986,0.803125,0.11166,0.991891,0.344072,0.134188,0.934467,0.247465,0.296397,0.186569,0.825245,0.0562502,0.962995,0.730221,0.634708,0.64146,0.269948,0.875384,0.168634,0.31981,0.813937,0.613588,0.539062,0.341967,0.603372,0.23154,0.505425,0.878264,0.99389,0.64209,0.789361,0.653066,0.767651,0.81693,0.348071,0.052835,0.328507,0.906168,0.624165,0.482128,0.378678,0.169283,0.396515,0.105081,0.879937,0.156628,0.833145,0.179683,0.899469,0.0538255,0.734931,0.526306,0.841444,0.927276,0.327177,0.804429,0.945237,0.104246,0.901052,0.692849,0.57337,0.0393114,0.102265,0.447276,0.509115,0.565987,0.758764,0.31455,0.177088,0.115767,0.332907,0.542957,0.780482,0.0231036,0.666188,0.123093,0.359761,0.836323,0.0145577,0.285555,0.313109,0.894868,0.81414,0.870348,0.412172,0.733786,0.934427,0.362258,0.232284,0.684634,0.0984252,0.413762,0.344253,0.279629,0.137242,0.626929,0.130827,0.488777,0.60993,0.431096,0.82986,0.974167,0.0635538,0.161959,0.324297,0.205639,0.383632,0.453658,0.780083,0.923124,0.0838498,0.497862,0.112429,0.796186,0.761565,0.257652,0.010115,0.892744,0.420577,0.551887,0.917583,0.292848,0.561652,0.294103,0.232636,0.669787,0.796931,0.597012,0.0751717,0.177105,0.600416,0.612563,0.740629,0.505034,0.40183,0.435935,0.956479,0.133191,0.263185,0.0606314,0.153167,0.288457,0.197972,0.844576,0.3899,0.182058,0.337403,0.291908,0.862388,0.0202015,0.189042,0.626321,0.24226,0.910784,0.210434,0.444097,0.799401,0.108192,0.207097,0.844699,0.282601,0.96278,0.597948,0.8073,0.675419,0.400494,0.580262,0.81059,0.490712,0.293296,0.244674,0.337367,0.0533306,0.489682,0.0906376,0.798967,0.494621,0.833167,0.669661,0.0480717,0.284727,0.73526,0.582704,0.476959,0.668466,0.514178,0.773796,0.0782182,0.746692,0.250136,0.405618,0.155219,0.696096,0.325377,0.0728158,0.689397,0.218398,0.991067,0.359481,0.567535,0.682708,0.525967,0.960221,0.107397,0.753022,0.448119,0.415266,0.318339,0.437206,0.676778,0.49646,0.20604,0.158053,0.514412,0.281987,0.742308,0.821543,0.0579544,0.845257,0.946765,0.440371,0.923285,0.205435,0.926937,0.358572,0.192949,0.0430266,0.354835,0.671984,0.416454,0.296571,0.143703,0.0708643,0.96147,0.633665,0.901486,0.984212,0.768759,0.377889,0.371896,0.0349887,0.226583,0.978725,0.242777,0.329853,0.638075,0.427253,0.692851,0.870726,0.503906,0.458977,0.462961,0.715952,0.0333368,0.588754,0.180828,0.377072,0.884394,0.903282,0.780986,0.18153,0.198657,0.894416,0.890744,0.39232,0.805451,0.910897,0.549462,0.880557,0.527291,0.85245,0.222319,0.942425,0.838384,0.722725,0.114264,0.204533,0.0349775,0.176562,0.662351,0.282443,0.82189,0.803034,0.651787,0.699167,0.861071,0.107567,0.225493,0.453493,0.205682,0.194361,0.64504,0.494798,0.716978,0.666913,0.157913,0.570493,0.204599,0.949667,0.815901,0.785316,0.205754,0.842881,0.320344,0.176524,0.226351,0.967149,0.728233,0.226426,0.840779,0.0254841,0.427008,0.232322,0.940314,0.476185,0.461898,0.0235732,0.522319,0.355552,0.145764,0.565533,0.499612,0.250755,0.342172,0.836733,0.686298,0.920005,0.952861,0.299544,0.360627,0.779355,0.648576,0.23919,0.81412,0.891513,0.663096,0.228494,0.0351301,0.933209,0.674334,0.638298,0.0836236,0.398159,0.0120667,0.00900686,0.406816,0.799488,0.582051,0.5463,0.963771,0.896284,0.562303,0.0319353,0.588224,0.141035,0.158677,0.370857,0.312356,0.883048,0.801084,0.5009,0.426849,0.434456,0.525834,0.774426,0.6458,0.096679,0.486531,0.461084,0.683881,0.60947,0.570398,0.466276,0.978068,0.269223,0.63886,0.64438,0.0281119,0.486916,0.713191,0.288573,0.670287,0.724899,0.477591,0.886527,0.236142,0.10421,0.577695,0.433293,0.441489,0.564167,0.795639,0.777021,0.363978,0.925957,0.0278696,0.803837,0.784902,0.561025,0.11704,0.489838,0.555763,0.491072,0.701432,0.564051,0.434791,0.141363,0.518056,0.140324,0.947603,0.380174,0.56288,0.00247282,0.0892136,0.492081,0.705955,0.280858,0.553768,0.28857,0.268076,0.476526,0.51372,0.236665,0.538596,0.205386,0.659821,0.913374,0.283451,0.435711,0.946159,0.763262,0.326719,0.172254,0.139688,0.350482,0.217481,0.960771,0.317792,0.56375,0.31871,0.526678,0.751001,0.164968,0.17599,0.599522,0.753053,0.95057,0.0480617,0.882659,0.680387,0.797034,|0.266916,0.442591,0.512413,0.497814,0.229332,0.00264829,0.0905022,0.382087,0.810594,0.720077,0.943152,0.107692,0.990979,0.728955,0.357771,0.402021,0.270418,0.610897,0.490451,0.924656,0.542033,0.259362,0.0601282,0.337205,0.229754,0.605154,0.0550323,0.169452,0.109192,0.324177,0.471168,0.431706,0.631124,0.50679,0.681276,0.797176,0.176178,0.479653,0.104394,0.902692,0.648422,0.466284,0.742183,0.606624,0.38756,0.488051,0.961646,0.733613,0.17913,0.539,0.416511,0.160668,0.464719,0.991657,0.256862,0.00521332,0.0328988,0.591833,0.803576,0.0901957,0.779914,0.661095,0.0985581,0.29842,0.872751,0.467176,0.342043,0.67268,0.0573601,0.57958,0.414635,0.00422662,0.100108,0.783355,0.370115,0.484058,0.159885,0.346315,0.311156,0.736531,0.555942,0.158179,0.94523,0.197019,0.813922,0.797132,0.905525,0.483058,0.697529,0.273007,0.538738,0.0995062,0.511098,0.619022,0.296668,0.768104,0.481239,0.655056,0.162819,0.790486,0.705306,0.207812,0.120002,0.796014,0.713727,0.884658,0.767185,0.856633,0.547917,0.263314,0.960101,0.13289,0.441116,0.338679,0.047703,0.613291,0.653651,0.487293,0.486925,0.0511058,0.92396,0.661627,0.770421,0.120167,0.517952,0.0974615,0.9992,0.261678,0.440752,0.780803,0.994262,0.611286,0.615836,0.365487,0.331236,0.422996,0.534737,0.698596,0.781361,0.362774,0.416595,0.524258,0.218908,0.0364902,0.925045,0.921307,0.11372,0.457582,0.330001,0.76189,0.284159,0.93135,0.533198,0.873094,0.962433,0.65248,0.658348,0.634439,0.319882,0.846358,0.234758,0.340325,0.216844,0.706209,0.643945,0.165727,0.325806,0.365789,0.464867,0.498194,0.715133,0.521782,0.727841,0.0581034,0.651888,0.981705,0.159793,0.950458,0.685286,0.735869,0.0482934,0.977334,0.616885,0.286036,0.880663,0.0130473,0.878507,0.396281,0.56973,0.33177,0.369623,0.634256,0.360914,0.378908,0.220778,0.827718,0.425474,0.177554,0.633783,0.129438,0.760149,0.231374,0.634445,0.271789,0.84776,0.875153,0.187608,0.235566,0.790567,0.210472,0.763664,0.472398,0.16673,0.631262,0.0204842,0.690507,0.281603,0.644798,0.0255392,0.65033,0.812425,0.41697,0.211614,0.945344,0.0340886,0.531114,0.0314799,0.00813293,0.0770484,0.433725,0.558544,0.831379,0.729371,0.669819,0.139828,0.858908,0.42624,0.105534,0.54565,0.99221,0.337095,0.584569,0.151792,0.822904,0.882897,0.263503,0.788403,0.574108,0.593349,0.871084,0.0939535,0.570652,0.992212,0.10443,0.438216,0.324974,0.513299,0.151797,0.899408,0.102894,0.41633,0.788873,0.876828,0.338141,0.50322,0.820427,0.10119,0.754239,0.0500621,0.815058,0.833212,0.746924,0.605532,0.750401,0.938723,0.367703,0.91195,0.664177,0.584309,0.165012,0.362887,0.462611,0.290342,0.492881,0.330391,0.842565,0.0438173,0.46331,0.99219,0.853571,0.829839,0.421883,0.93827,0.186439,0.580104,0.736773,0.53338,0.021928,0.35167,0.305505,0.163404,0.238595,0.00125933,0.314231,0.901197,0.588935,0.470438,0.0340496,0.478067,0.66349,0.493105,0.602643,0.857583,0.874281,0.69414,0.927326,0.737662,0.311883,0.741448,0.188839,0.515024,0.31205,0.316106,0.499406,0.904264,0.977138,0.993692,0.354902,0.496205,0.240224,0.321053,0.999312,0.0839435,0.0175366,0.0102227,0.601627,0.384066,0.254979,0.242074,0.285488,0.228134,0.12854,0.289855,0.736239,0.158761,0.177657,0.0362781,0.519746,0.972415,0.592597,0.573559,0.956366,0.615637,0.651915,0.759263,0.673332,0.0483925,0.0873361,0.225989,0.219969,0.221167,0.616146,0.949855,0.618853,0.0568025,0.630618,0.200634,0.360529,0.871507,0.406217,0.467536,0.683219,0.635908,0.25146,0.468766,0.94929,0.965031,0.123377,0.892757,0.0180178,0.950697,0.848691,0.450397,0.515976,0.575795,0.459327,0.503136,0.614357,0.796129,0.0492361,0.858596,0.560785,0.560278,0.89577,0.810141,0.544675,0.953913,0.549127,0.366415,0.450502,0.685865,0.472303,0.294367,0.116669,0.08837,0.929958,0.596962,0.481409,0.553699,0.441486,0.280089,0.846108,0.606763,0.517853,0.638472,0.281683,0.45393,0.0822344,0.241028,0.682651,0.228007,0.584789,0.242744,0.229444,0.0994912,0.728536,0.666449,0.804439,0.375599,0.257819,0.0152016,0.231664,0.0623664,0.35644,0.354875,0.240275,0.414517,0.912763,0.867568,0.820874,0.778442,0.698544,0.505187,0.69543,0.186321,0.517012,0.484742,0.786401,0.855406,0.79704,0.626367,0.813053,0.998605,0.319255,0.709327,0.0734341,0.618644,0.537443,0.891649,0.490958,0.359066,0.590455,0.639463,0.715185,0.628076,0.0269154,0.34683,0.0270299,0.554131,0.732999,0.871439,0.993082,0.0898726,0.599752,0.445461,0.291009,0.955035,0.827304,0.591063,0.132805,0.799323,0.758423,0.49018,0.551618,0.671896,0.185765,0.683942,0.910882,0.0750489,0.519986,0.0530647,0.580514,0.430986,0.385216,0.470935,0.895554,0.0286716,0.922806,0.396456,0.809845,0.816316,0.319417,0.708093,0.538625,0.886672,0.896882,0.920902,0.160668,0.326782,0.594258,0.502846,0.887249,0.0696691,0.0444678,0.90251,0.504603,0.90725,0.808761,0.515197,0.995062,0.194976,0.216032,0.127233,0.702379,0.245972,0.75038,0.822819,0.308234,0.885375,0.401444,0.450651,0.206587,0.338759,0.00226766,0.552069,0.330048,0.346492,0.0732477,0.853168,0.196524,0.130932,0.888386,0.325353,0.464711,0.625519,0.433368,0.411314,0.912705,0.471301,0.662692,0.314964,0.461743,0.214738,0.838834,0.978985,0.712433,0.159902,0.332031,0.387043,0.395246,0.889673,0.221627,0.596182,0.864488,0.665057,0.148444,0.39507,0.55297,0.917234,0.761016,0.217166,0.0364231,0.0117344,0.858139,0.444176,0.76136,0.707789,0.699543,0.984131,0.990047,0.627507,0.157407,0.637693,0.426302,0.488351,0.532526,0.206535,0.202007,0.850606,0.978136,0.493805,0.800584,0.740834,0.191155,0.300346,0.644557,0.0719252,0.211954,0.266219,0.212095,0.0714645,0.632844,0.415312,0.00419551,0.345036,0.465606,0.964772,0.438296,0.241468,0.852567,0.580188,0.369085,0.127052,0.577742,0.435916,0.642141,0.787508,0.431499,0.748595,0.0830222,0.418615,0.245052,0.466558,0.138902,0.261949,0.930769,0.550628,0.702801,0.0868977,0.197663,0.417279,0.9497,0.952079,0.600395,0.0332149,0.537172,0.194932,0.167108,0.443902,0.65941,0.132614,0.132637,0.0731793,0.921413,0.595306,0.858564,0.373322,0.170864,0.886755,0.284148,0.782608,0.761759,0.399374,0.625595,0.24148,0.535333,0.91017,0.483019,0.541908,0.441965,0.425429,0.653935,0.516235,0.272959,0.269704,0.0900435,0.144612,0.145843,0.409022,0.396607,0.538267,0.296246,0.72258,0.344167,0.255619,0.224035,0.0630429,0.677807,0.488637,0.997999,0.660407,0.684761,0.14915,0.659759,0.283698,0.467588,0.744614,0.608077,0.581331,0.623083,0.558254,0.652026,0.976905,0.892232,0.462893,0.0717519,0.825928,0.960109,0.548357,0.471032,0.544578,0.854583,0.882005,0.704419,0.937843,0.075471,0.837966,0.147799,0.201626,0.361622,0.132912,0.203368,0.0567175,0.191855,0.140432,0.719173,0.892539,0.532783,0.830382,0.932178,0.71758,0.298762,0.167578,0.373788,0.943199,0.558787,0.667092,0.161079,0.114078,0.515449,0.161297,0.917306,0.661452,0.803475,0.131218,0.0469205,0.735423,0.527236,0.175187,0.907916,0.847593,0.122153,0.807844,0.957897,0.943998,0.544542,0.534588,0.0501762,0.323312,0.372928,0.558906,0.696692,0.961542,0.390754,0.926368,0.058383,0.59443,0.458452,0.711223,0.426496,0.0545837,0.413561,0.856081,0.306976,0.635681,0.753753,0.365788,0.287138,0.284082,0.759812,0.358908,0.620561,0.541926,0.669012,0.359334,0.539925,0.890881,0.182722,0.193283,0.892028,0.729923,0.177429,0.452006,0.702505,0.690516,0.199647,0.503608,0.745486,0.266335,0.829149,0.121487,0.418921,0.679646,0.805561,0.414976,0.531821,0.966135,0.189911,0.997376,0.232425,0.588156,0.635116,0.175465,0.931626,0.569741,0.542659,0.0935826,0.284927,0.531968,0.251011,0.927846,0.393462,0.928886,0.340612,0.870317,0.394316,0.803538,0.345368,0.760794,0.655142,0.0706079,0.247039,0.760068,0.832852,0.710341,0.401234,0.133903,0.225602,0.382335,0.792245,0.506395,0.847873,0.460022,0.150727,0.639039,0.772244,0.497427,0.730958,0.0569339,0.991574,0.690299,0.929874,0.735629,0.257557,0.779127,0.0821016,0.877265,0.931444,0.0808284,0.721937,0.167209,0.406855,0.108377,0.0563284,0.269608,0.233874,0.851419,0.638413,0.0887727,0.86971,0.733229,0.557606,0.366432,0.249185,0.297042,0.624708,0.644888,0.967401,0.500471,0.241585,0.272524,0.0716701,0.263708,0.803507,0.622006,0.926398,0.97858,0.216421,0.498714,0.00225043,0.604758,0.441645,0.22446,0.798508,0.261247,0.312678,0.203852,0.764195,0.43256,0.411213,0.663439,0.79817,0.300493,0.766462,0.479712,0.763701,0.76477,0.255664,0.847202,0.830153,0.699585,0.136133,0.240987,0.00583357,0.833832,0.663783,0.774955,0.565634,0.335075,0.855811,0.156065,0.295034,0.904705,0.602525,0.417017,0.101847,0.54539,0.624835,0.997465,0.334313,0.0968477,0.156844,0.141491,0.332268,0.662312,0.14845,0.474643,0.904676,0.784861,0.955128,0.953445,0.211476,0.277954,0.135221,0.0612981,0.261908,0.462562,0.453062,0.797958,0.628317,0.0528683,0.346092,0.183966,0.269915,0.837801,0.0685021,0.326766,0.439502,0.361354,0.655915,0.573475,0.0060941,0.143154,0.963664,0.683984,0.847432,0.64117,0.134971,0.694274,0.974531,0.510369,0.91217,0.346237,0.914029,0.171289,0.95907,0.0246765,0.353883,0.661247,0.806949,0.882463,0.499036,0.915312,0.670363,0.913478,0.37732,0.113696,0.746055,0.0402952,0.975539,0.32016,0.989313,0.862057,0.443864,0.291007,0.338154,0.526273,0.280007,0.525632,0.47329,0.393267,0.823792,0.976752,0.815105,0.240418,0.80291,0.197161,0.63693,0.281508,0.516742,|0.694938,0.127901,0.117047,0.396563,0.74364,0.177598,0.457617,0.942205,0.931794,0.274859,0.38329,0.911053,0.599887,0.684241,0.00602454,0.208328,0.00201559,0.507931,0.800199,0.274098,0.419758,0.249532,0.505157,0.97145,0.982824,0.181935,0.89894,0.862799,0.391892,0.704674,0.203976,0.0998337,0.856978,0.507497,0.559485,0.00896287,0.728398,0.990865,0.586942,0.206334,0.660396,0.692413,0.745244,0.7172,0.91774,0.458656,0.954077,0.0190131,0.870539,0.8524,0.854747,0.120126,0.695519,0.862778,0.681954,0.265314,0.272787,0.0723835,0.467735,0.434474,0.255271,0.933518,0.780617,0.0218036,0.710924,0.346284,0.595343,0.495788,0.86514,0.404412,0.0757927,0.304125,0.459951,0.697225,0.22384,0.653369,0.897227,0.0624344,0.637348,0.197363,0.280808,0.69344,0.0923014,0.0124967,0.813092,0.725866,0.54303,0.645101,0.829286,0.669346,0.518336,0.434192,0.506548,0.268069,0.0242912,0.307159,0.454209,0.827515,0.931478,0.780854,0.327247,0.364294,0.467556,0.641536,0.921674,0.271963,0.870987,0.620882,0.924573,0.678273,0.125667,0.293983,0.5681,0.869248,0.747117,0.415022,0.365107,0.767663,0.414137,0.396771,0.488833,0.607381,0.672878,0.746483,0.895272,0.430552,0.849434,0.658853,0.0441918,0.769673,0.91837,0.42438,0.366762,0.297312,0.0782489,0.108707,0.688736,0.813314,0.0842905,0.66846,0.178755,0.34809,0.412415,0.621706,0.365388,0.845612,0.618533,0.405113,0.969812,0.908582,0.55864,0.548841,0.267493,0.593429,0.479755,0.0168833,0.00841153,0.251401,0.61526,0.699994,0.876523,0.314982,0.896771,0.461796,0.850966,0.831289,0.579096,0.0283561,0.616177,0.993545,0.936573,0.847086,0.958445,0.533775,0.552719,0.28539,0.380399,0.179342,0.399748,0.171601,0.704558,0.616088,0.310621,0.860055,0.602641,0.601641,0.544706,0.796055,0.872344,0.741036,0.114384,0.260312,0.158231,0.185257,0.382144,0.837762,0.208157,0.254816,0.591082,0.462529,0.378867,0.205909,0.398298,0.439798,0.493325,0.821198,0.31831,0.221513,0.210784,0.425008,0.907663,0.506398,0.58639,0.769141,0.877832,0.538805,0.982102,0.878287,0.47284,0.211664,0.947615,0.579351,0.794864,0.813597,0.234212,0.672153,0.530383,0.532077,0.947436,0.797188,0.42676,0.806869,0.540995,0.490401,0.370604,0.434884,0.0035758,0.873491,0.704174,0.662944,0.226602,0.603915,0.717214,0.599475,0.843837,0.839463,0.247661,0.424082,0.717794,0.273912,0.293931,0.858925,0.974014,0.486012,0.125031,0.603145,0.120011,0.727909,0.0158399,0.857616,0.217476,0.215749,0.660854,0.411673,0.848182,0.324363,0.562945,0.513669,0.357515,0.375781,0.813515,0.721313,0.300338,0.873856,0.450494,0.627595,0.0492222,0.989607,0.832775,0.237098,0.83973,0.356003,0.168986,0.4568,0.737421,0.247078,0.617424,0.17623,0.126148,0.64439,0.270407,0.794667,0.812965,0.654968,0.517057,0.441019,0.855991,0.484277,0.152768,0.118956,0.731277,0.0455816,0.961074,0.507752,0.00286746,0.612762,0.64298,0.331827,0.0611595,0.299527,0.0185444,0.302206,0.41326,0.576422,0.677432,0.785744,0.590924,0.230222,0.421814,0.649533,0.582105,0.554434,0.818452,0.76284,0.98969,0.464802,0.225314,0.288881,0.362778,0.97343,0.827413,0.188517,0.70534,0.0898076,0.901202,0.917452,0.114004,0.176816,0.329305,0.964819,0.886118,0.915477,0.529854,0.206825,0.597056,0.158749,0.00667512,0.853478,0.479982,0.648337,0.401389,0.135077,0.264863,0.273206,0.657616,0.962127,0.913418,0.73981,0.900369,0.182317,0.905711,0.228019,0.892954,0.217662,0.305733,0.143483,0.0679072,0.978369,0.214218,0.115702,0.513781,0.583223,0.277505,0.362282,0.93619,0.0663396,0.583735,0.855177,0.937581,0.304525,0.953474,0.0182804,0.453835,0.815001,0.939003,0.94486,0.930042,0.0480624,0.612149,0.920853,0.956316,0.270634,0.0302512,0.990813,0.508473,0.42798,0.106254,0.0548031,0.809379,0.560638,0.814702,0.784806,0.958665,0.459834,0.445874,0.0954345,0.308909,0.611364,0.00775337,0.370679,0.784076,0.994436,0.67735,0.303233,0.257778,0.606969,0.846952,0.614995,0.118017,0.371443,0.331578,0.0698963,0.0205319,0.40463,0.636448,0.907926,0.808293,0.350929,0.889433,0.572228,0.164542,0.200498,0.205082,0.0356122,0.670768,0.0764499,0.571409,0.783713,0.218741,0.263941,0.329451,0.413033,0.76004,0.478404,0.870058,0.160976,0.591328,0.197473,0.948716,0.208824,0.3356,0.430901,0.202756,0.836529,0.755921,0.716562,0.777494,0.199178,0.967742,0.083134,0.612716,0.761868,0.0591471,0.512693,0.168519,0.213182,0.102308,0.0563918,0.167679,0.165476,0.217238,0.537103,0.437621,0.314249,0.844874,0.301424,0.374598,0.461757,0.234329,0.540547,0.781366,0.0186369,0.972909,0.701449,0.52301,0.256761,0.303639,0.598076,0.491916,0.477941,0.598736,0.490402,0.28899,0.976802,0.873553,0.914091,0.00120944,0.484775,0.346403,0.309421,0.399412,0.963779,0.306192,0.00774997,0.617275,0.405303,0.553897,0.324277,0.143278,0.567534,0.626324,0.130916,0.657659,0.461229,0.802499,0.0122336,0.0838758,0.300993,0.749878,0.0913736,0.150238,0.168064,0.414496,0.641722,0.0274284,0.771399,0.649225,0.367709,0.066152,0.735644,0.250654,0.564844,0.142641,0.647098,0.780741,0.989018,0.351743,0.0170055,0.938515,0.238338,0.478781,0.749212,0.190203,0.0588816,0.303715,0.0395774,0.23,0.644926,0.705885,0.0465482,0.0928375,0.353466,0.319678,0.51719,0.557485,0.936095,0.0152408,0.596049,0.895799,0.0119478,0.0543925,0.0504318,0.646189,0.493351,0.649213,0.222709,0.796223,0.771336,0.536619,0.570537,0.624871,0.410843,0.248581,0.161922,0.437114,0.5723,0.08441,0.43852,0.489642,0.13211,0.334295,0.355325,0.2859,0.689267,0.826404,0.0879278,0.725826,0.243951,0.556115,0.715146,0.301852,0.555488,0.440627,0.80422,0.491605,0.768809,0.0904131,0.359869,0.126882,0.761753,0.757248,0.619779,0.354236,0.486988,0.539599,0.129483,0.42626,0.901726,0.708324,0.598847,0.40225,0.647695,0.626912,0.968172,0.971104,0.27109,0.36539,0.340024,0.172015,0.733913,0.2635,0.223198,0.881646,0.202733,0.449326,0.0973397,0.584061,0.779149,0.289919,0.345445,0.0281273,0.245243,0.601501,0.914694,0.0250298,0.282707,0.0804473,0.671554,0.364549,0.581455,0.942475,0.330689,0.0158058,0.324266,0.759498,0.386258,0.852947,0.925777,0.101728,0.120445,0.703226,0.932962,0.438721,0.755448,0.61952,0.0991129,0.731836,0.441923,0.637829,0.737776,0.92173,0.35222,0.904809,0.45922,0.265892,0.766427,0.198655,0.126232,0.820598,0.300565,0.50188,0.475424,0.512432,0.440107,0.774842,0.639289,0.139526,0.565162,0.176575,0.123663,0.907844,0.283989,0.862042,0.291743,0.716952,0.153896,0.192384,0.511225,0.976004,0.437406,0.978744,0.704251,0.258296,0.319938,0.213274,0.13519,0.649219,0.270015,0.548252,0.777917,0.67698,0.191985,0.489139,0.343188,0.504512,0.15892,0.10569,0.527507,0.547384,0.311865,0.639621,0.731904,0.651501,0.933159,0.592288,0.0830406,0.53094,0.319884,0.971171,0.423947,0.931501,0.832883,0.143182,0.483792,0.804651,0.568571,0.985465,0.181618,0.705928,0.319092,0.263595,0.15406,0.397437,0.622662,0.304306,0.758853,0.91877,0.037099,0.999374,0.472375,0.243871,0.266468,0.873089,0.314045,0.491779,0.986601,0.202957,0.668396,0.905125,0.676209,0.559323,0.149046,0.162316,0.666577,0.467285,0.956753,0.310168,0.648881,0.0817724,0.648878,0.106414,0.44583,0.609681,0.477601,0.0452466,0.917511,0.914714,0.986535,0.317871,0.496544,0.698704,0.100198,0.430631,0.982914,0.684462,0.739384,0.403668,0.340656,0.690563,0.551008,0.271217,0.255421,0.405737,0.0507228,0.463427,0.796949,0.566138,0.889194,0.363231,0.631726,0.953226,0.954347,0.305769,0.0932866,0.74283,0.555868,0.682392,0.962118,0.532811,0.499667,0.334985,0.628953,0.221935,0.1231,0.692379,0.176263,0.451961,0.343479,0.464651,0.895977,0.851174,0.739104,0.831121,0.41946,0.854911,0.212461,0.422635,0.500321,0.325417,0.0584812,0.543122,0.814403,0.915646,0.623245,0.813997,0.28829,0.566771,0.162621,0.0477771,0.337529,0.489199,0.229463,0.0715815,0.0927047,0.0831007,0.0691599,0.411048,0.695683,0.749034,0.0649067,0.657013,0.759389,0.102895,0.172098,0.737028,0.399222,0.30037,0.225657,0.914999,0.962259,0.0565944,0.917248,0.797194,0.284128,0.869734,0.187039,0.624461,0.975047,0.0266308,0.147767,0.652008,0.959071,0.241923,0.0440245,0.630279,0.193876,0.7159,0.791995,0.881843,0.00185072,0.578686,0.708035,0.814457,0.0616041,0.0316301,0.736931,0.175111,0.389239,0.869998,0.801878,0.32474,0.368091,0.576468,0.374692,0.830514,0.288778,0.917814,0.385686,0.992225,0.776257,0.875857,0.509975,0.0580013,0.595084,0.884198,0.610517,0.521397,0.396259,0.563934,0.574834,0.59931,0.205445,0.459309,0.563998,0.125433,0.162482,0.133886,0.563636,0.843924,0.624876,0.110024,0.165556,0.685674,0.716524,0.0400431,0.078254,0.0498378,0.438132,0.182811,0.594444,0.917824,0.0804375,0.574602,0.338064,0.55359,0.382716,0.0676482,0.139371,0.00808078,0.595365,0.921428,0.602359,0.767826,0.180147,0.323891,0.28007,0.681239,0.194937,0.605988,0.506515,0.319989,0.0597247,0.992484,0.000485122,0.332375,0.480632,0.890702,0.0860648,0.893951,0.0604988,0.613097,0.532908,0.333198,0.275664,0.757685,0.701075,0.85031,0.210845,0.392109,0.947704,0.216667,0.000730217,0.463468,0.695062,0.289431,0.608753,0.110778,0.924083,0.665108,0.500178,0.598285,0.2885,0.466762,0.235436,0.40762,0.327232,0.527118,0.80548,0.902688,0.0669892,0.0297875,0.36922,0.0969527,0.173603,0.0381956,0.0668631,0.64005,0.883833,0.584789,0.252295,0.290944,0.470045,0.0904427,0.619074,0.886998,0.70512,0.706981,0.00827968,0.534677,0.629958,|0.486834,0.814091,0.63695,0.507261,0.58513,0.589421,0.323874,0.195325,0.986459,0.258853,0.752887,0.199477,0.0421323,0.681546,0.98709,0.303986,0.583219,0.431334,0.0312515,0.18859,0.140923,0.688212,0.288651,0.929532,0.353936,0.948908,0.444067,0.706495,0.0881819,0.757551,0.778571,0.553525,0.309643,0.342444,0.191963,0.180611,0.822102,0.532815,0.0191172,0.690386,0.389811,0.405827,0.15146,0.282963,0.934829,0.123278,0.988376,0.137041,0.945943,0.125316,0.429449,0.122359,0.597374,0.135766,0.5642,0.744293,0.388038,0.299537,0.426167,0.438006,0.458661,0.394236,0.969263,0.196898,0.473334,0.577808,0.416387,0.509692,0.989914,0.084435,0.232805,0.725561,0.640274,0.343288,0.862164,0.715516,0.244312,0.0631659,0.126437,0.0666822,0.69337,0.528453,0.728655,0.409329,0.466713,0.679197,0.548029,0.211785,0.252746,0.675358,0.0762982,0.0283723,0.958227,0.327192,0.671479,0.013094,0.978517,0.428569,0.250794,0.854558,0.969143,0.207353,0.353428,0.292525,0.434927,0.706646,0.837419,0.709539,0.730357,0.0562124,0.639574,0.28474,0.928948,0.840516,0.803123,0.551844,0.854966,0.801827,0.343548,0.889522,0.21402,0.594886,0.338198,0.0668406,0.920545,0.116503,0.393971,0.63019,0.155075,0.954325,0.838776,0.146629,0.910457,0.125775,0.308602,0.357286,0.000633538,0.259622,0.171737,0.144733,0.716029,0.263217,0.180591,0.655425,0.0498771,0.555731,0.987768,0.4314,0.761661,0.0378691,0.659171,0.0862857,0.422921,0.968178,0.958832,0.952911,0.838928,0.822971,0.0282265,0.988202,0.972494,0.0181585,0.41565,0.675364,0.790431,0.863934,0.787234,0.689308,0.715565,0.368694,0.522905,0.497656,0.896864,0.582179,0.645357,0.506716,0.793785,0.178614,0.0796287,0.255218,0.104258,0.515557,0.535509,0.345671,0.449499,0.0360245,0.536627,0.00684178,0.057691,0.0394289,0.139821,0.255946,0.432189,0.619513,0.0643363,0.509351,0.58065,0.901883,0.992243,0.806253,0.0567159,0.762249,0.324458,0.172203,0.329282,0.577618,0.550223,0.257628,0.381365,0.447527,0.819446,0.192913,0.111126,0.611627,0.00313413,0.397786,0.226807,0.0975736,0.564348,0.872445,0.61072,0.721832,0.0263522,0.768069,0.347321,0.572422,0.364463,0.649043,0.163124,0.225697,0.979493,0.638511,0.781385,0.872538,0.748617,0.624873,0.645477,0.304853,0.536591,0.151047,0.371001,0.261655,0.505028,0.714666,0.871976,0.632232,0.828487,0.466353,0.0333128,0.659674,0.455937,0.317087,0.993028,0.418716,0.77954,0.262538,0.066735,0.331018,0.244511,0.952903,0.361869,0.743019,0.117776,0.460483,0.880499,0.92172,0.393651,0.824292,0.381421,0.874171,0.500083,0.564018,0.989986,0.266454,0.304826,0.918031,0.61621,0.412226,0.670541,0.748651,0.0220426,0.618422,0.356779,0.69137,0.888165,0.71197,0.547339,0.635883,0.549109,0.854811,0.429354,0.751333,0.651554,0.820936,0.0407492,0.224522,0.0660972,0.378105,0.8864,0.101748,0.936572,0.647017,0.562048,0.142686,0.159716,0.811272,0.615944,0.875748,0.762028,0.539626,0.528487,0.131275,0.124276,0.838311,0.680237,0.120461,0.81798,0.560402,0.271516,0.243646,0.943922,0.536913,0.459065,0.104103,0.766728,0.903059,0.618375,0.543496,0.0532779,0.889309,0.698106,0.0964035,0.21088,0.239419,0.901166,0.893754,0.986731,0.11191,0.162271,0.299459,0.425957,0.421466,0.903048,0.299076,0.983833,0.620958,0.242323,0.919647,0.393995,0.932219,0.251091,0.140281,0.337689,0.776558,0.667726,0.533521,0.356549,0.968671,0.488145,0.385282,0.206908,0.602495,0.912586,0.134396,0.480366,0.376791,0.946563,0.037829,0.567142,0.556353,0.699431,0.720196,0.0636258,0.774478,0.864431,0.0626077,0.646108,0.6607,0.375834,0.770064,0.136978,0.0313014,0.184329,0.0555069,0.380969,0.417399,0.4702,0.202601,0.881862,0.818818,0.796725,0.084735,0.888348,0.600904,0.284611,0.129573,0.58238,0.622659,0.169938,0.378131,0.346142,0.860445,0.341857,0.86339,0.46945,0.295287,0.194214,0.407515,0.361212,0.0569551,0.817905,0.501568,0.113933,0.902881,0.99701,0.0964368,0.27579,0.152447,0.598091,0.30819,0.998969,0.61677,0.645716,0.731514,0.036104,0.876884,0.0899886,0.882272,0.741324,0.605155,0.304035,0.74816,0.898505,0.0100608,0.816637,0.0740489,0.0973851,0.214519,0.563007,0.521062,0.475783,0.598295,0.0542185,0.114165,0.380704,0.0234606,0.412749,0.127177,0.254726,0.12922,0.773292,0.189554,0.693981,0.353011,0.809852,0.428268,0.253898,0.205905,0.587396,0.416883,0.895227,0.413318,0.698321,0.723393,0.37615,0.564378,0.165512,0.969049,0.60816,0.744704,0.875625,0.30931,0.15008,0.563609,0.183366,0.517594,0.507155,0.167533,0.541908,0.129372,0.136263,0.527846,0.0745453,0.147258,0.979242,0.34589,0.408611,0.337653,0.952009,0.373873,0.568658,0.197976,0.78184,0.62297,0.578503,0.305415,0.493409,0.450363,0.0447219,0.154004,0.834737,0.696907,0.292476,0.605156,0.753345,0.042769,0.308384,0.949412,0.603005,0.646038,0.0181444,0.702762,0.233703,0.266384,0.523962,0.194571,0.342102,0.760325,0.498439,0.359336,0.773356,0.209687,0.964309,0.320802,0.640002,0.627037,0.950775,0.0836965,0.634424,0.664069,0.282275,0.0149298,0.790027,0.251393,0.0207987,0.509877,0.542701,0.787438,0.618585,0.820274,0.873231,0.68869,0.286001,0.106429,0.202805,0.723114,0.979955,0.30012,0.622047,0.801139,0.274468,0.215457,0.493735,0.510147,0.982404,0.314356,0.188947,0.72661,0.823566,0.0369478,0.136401,0.799095,0.657388,0.0955873,0.188222,0.0536774,0.132662,0.199844,0.00753784,0.240217,0.0639772,0.607669,0.577651,0.492343,0.23606,0.168816,0.513838,0.0489326,0.0823417,0.582438,0.415617,0.896625,0.181174,0.376055,0.735221,0.140695,0.771248,0.411056,0.75731,0.103385,0.58653,0.117457,0.019363,0.606366,0.560004,0.487786,0.678439,0.372806,0.309573,0.676468,0.546602,0.272873,0.669011,0.521642,0.554907,0.253365,0.192026,0.924903,0.874711,0.300336,0.75813,0.253362,0.558601,0.697645,0.909706,0.312863,0.376251,0.565806,0.365893,0.35219,0.012822,0.448935,0.396224,0.993326,0.901594,0.0272266,0.8818,0.864218,0.0342682,0.728579,0.285926,0.461857,0.926012,0.12737,0.177048,0.945826,0.115229,0.2808,0.350019,0.298065,0.484812,0.645528,0.392125,0.585624,0.971862,0.443457,0.192801,0.325763,0.0547922,0.349368,0.402419,0.382595,0.284802,0.965447,0.313999,0.242419,0.802454,0.650153,0.524169,0.343752,0.624096,0.860108,0.140172,0.416076,0.525545,0.270233,0.0198845,0.355302,0.620856,0.0985681,0.680828,0.515017,0.607126,0.600651,0.497576,0.360112,0.404992,0.862276,0.46131,0.581836,0.738242,0.893431,0.95776,0.81607,0.715195,0.122491,0.494131,0.0545997,0.899759,0.633259,0.660544,0.881935,0.20197,0.252315,0.452147,0.977906,0.0922822,0.352143,0.841293,0.748924,0.217706,0.00157797,0.602234,0.223856,0.0397924,0.704627,0.714828,0.609289,0.373911,0.426059,0.632975,0.24793,0.173983,0.947185,0.34265,0.476209,0.368735,0.935011,0.0880257,0.0426353,0.740431,0.536591,0.784189,0.394672,0.999618,0.663695,0.578939,0.533706,0.924605,0.483125,0.988046,0.313946,0.58015,0.617333,0.319349,0.232716,0.287427,0.151765,0.0451714,0.521496,0.324864,0.572873,0.543576,0.490451,0.381696,0.434357,0.0198939,0.282897,0.0632673,0.288492,0.877819,0.858171,0.419118,0.916278,0.587772,0.764672,0.15053,0.729772,0.659358,0.848899,0.526365,0.248573,0.903832,0.286331,0.606951,0.0195646,0.279467,0.293392,0.158937,0.500093,0.477701,0.430254,0.695958,0.710438,0.340973,0.767206,0.104452,0.151154,0.45936,0.034326,0.326182,0.232296,0.735265,0.89584,0.165007,0.622374,0.722987,0.807976,0.974825,0.261273,0.994637,0.819176,0.617204,0.997777,0.387795,0.0939782,0.273152,0.81522,0.408145,0.198697,0.234027,0.555541,0.889429,0.740289,0.534206,0.654896,0.538669,0.635617,0.407589,0.909257,0.215787,0.0788485,0.820761,0.290724,0.488047,0.978026,0.0783305,0.674275,0.484181,0.709204,0.875214,0.0697433,0.902508,0.0464855,0.821796,0.88834,0.362445,0.633645,0.00740921,0.00742412,0.710835,0.820189,0.883474,0.920449,0.0199898,0.502376,0.334039,0.111374,0.570658,0.981541,0.221571,0.325463,0.758611,0.945215,0.0611073,0.37452,0.389512,0.915361,0.953714,0.211384,0.0469955,0.609946,0.120168,0.493941,0.726479,0.447247,0.51278,0.902463,0.414201,0.558879,0.316776,0.91618,0.530625,0.971982,0.504612,0.277266,0.441611,0.371309,0.149438,0.976246,0.159436,0.167896,0.841293,0.530104,0.231004,0.611424,0.355626,0.0754983,0.699047,0.866248,0.12269,0.203589,0.0453894,0.760932,0.995371,0.0319449,0.136668,0.508196,0.739829,0.0703142,0.167333,0.827359,0.324318,0.875798,0.230893,0.230677,0.374155,0.562791,0.654161,0.283158,0.0769207,0.626089,0.477757,0.281495,0.546067,0.00332206,0.726983,0.261407,0.574769,0.529897,0.612801,0.0544132,0.0697817,0.642653,0.252816,0.125323,0.765783,0.663832,0.267016,0.94543,0.0480113,0.641635,0.795305,0.481872,0.113908,0.80324,0.70282,0.859243,0.0735064,0.464914,0.279032,0.842699,0.275207,0.296792,0.71886,0.622672,0.276022,0.0592018,0.907,0.405542,0.093145,0.945944,0.762148,0.78856,0.0675246,0.12383,0.443915,0.560275,0.0578121,0.647332,0.704471,0.326196,0.135628,0.4596,0.544806,0.303181,0.697482,0.316939,0.789328,0.25242,0.826194,0.0268123,0.5185,0.563301,0.630271,0.496451,0.508946,0.755236,0.305093,0.857546,0.126312,0.0292373,0.552119,0.657368,0.299082,0.186198,0.152313,0.788249,0.864533,0.769873,0.21859,0.285208,0.125587,0.022905,0.219953,0.444714,0.469619,0.00878811,0.196282,0.020929,0.289623,0.543308,0.340531,0.0166749,0.952139,0.225726,0.0789446,0.226699,0.608796,0.959231,|0.708245,0.553905,0.02244,0.76512,0.791693,0.703513,0.36856,0.559737,0.443487,0.132587,0.718581,0.772533,0.59065,0.0790548,0.482746,0.742601,0.513404,0.34087,0.776814,0.678087,0.790083,0.402177,0.619216,0.368752,0.0405278,0.923065,0.140467,0.927917,0.392263,0.400783,0.421234,0.609297,0.137473,0.325625,0.612738,0.34519,0.122849,0.332667,0.0780581,0.879345,0.480436,0.726977,0.386266,0.302901,0.789094,0.430111,0.686322,0.403213,0.471459,0.658212,0.755858,0.156911,0.462234,0.791692,0.94878,0.385373,0.490691,0.0645386,0.993259,0.244568,0.878746,0.778999,0.140665,0.498655,0.901684,0.762392,0.572691,0.834506,0.328414,0.909156,0.591089,0.765303,0.309283,0.83682,0.940491,0.294992,0.407376,0.890202,0.41912,0.625774,0.208536,0.982945,0.956487,0.290956,0.724542,0.818075,0.645676,0.891728,0.0551277,0.536151,0.569058,0.833075,0.0156081,0.940133,0.810873,0.870775,0.408741,0.354016,0.111595,0.0694293,0.710817,0.795904,0.265078,0.102583,0.22029,0.00293869,0.730012,0.111202,0.77622,0.0796026,0.681123,0.287381,0.592249,0.602377,0.549963,0.653795,0.75944,0.56211,0.298533,0.386961,0.808695,0.200878,0.965464,0.446953,0.136428,0.0204154,0.0806744,0.478403,0.815852,0.152684,0.582792,0.0473052,0.858628,0.102805,0.474506,0.742239,0.432709,0.180301,0.929576,0.105598,0.715709,0.898814,0.885511,0.895192,0.697017,0.980026,0.599882,0.563966,0.993826,0.408791,0.877443,0.335905,0.0211304,0.242861,0.569945,0.666394,0.21097,0.893281,0.29511,0.52382,0.0427729,0.609602,0.16721,0.874908,0.301304,0.345255,0.208683,0.599744,0.34183,0.845418,0.12819,0.360081,0.893097,0.525911,0.276106,0.897908,0.576446,0.650155,0.967789,0.721621,0.850356,0.291701,0.668376,0.194023,0.280059,0.461223,0.415823,0.669009,0.937707,0.783884,0.538701,0.214443,0.711573,0.0375572,0.477913,0.428467,0.280426,0.869954,0.564451,0.891115,0.562197,0.535354,0.857417,0.399081,0.855715,0.692195,0.711672,0.600616,0.855906,0.886728,0.640792,0.928342,0.830347,0.365284,0.647857,0.262583,0.584993,0.836544,0.186205,0.649067,0.812944,0.0200644,0.414914,0.252747,0.916054,0.216085,0.745345,0.91465,0.716011,0.638122,0.163941,0.229239,0.374078,0.916168,0.193191,0.117296,0.308862,0.702118,0.832753,0.556559,0.494835,0.987395,0.208525,0.0387204,0.898916,0.784843,0.370559,0.190649,0.145915,0.65632,0.999058,0.20329,0.154726,0.518937,0.842916,0.23903,0.384737,0.563597,0.328713,0.512791,0.349371,0.754211,0.497754,0.64861,0.690874,0.0215345,0.155255,0.166182,0.737188,0.0415249,0.700527,0.740308,0.970909,0.0676256,0.66936,0.358726,0.594506,0.201207,0.949705,0.522213,0.112851,0.275326,0.645287,0.106937,0.370026,0.614478,0.975866,0.825838,0.184938,0.16258,0.617176,0.486696,0.475075,0.255494,0.638174,0.821594,0.458535,0.150981,0.0820941,0.393423,0.494246,0.779061,0.705871,0.0760704,0.72222,0.722426,0.181794,0.551929,0.0581589,0.334083,0.10585,0.624089,0.0903847,0.813007,0.800094,0.860153,0.335039,0.638148,0.173046,0.755099,0.0280464,0.172866,0.909394,0.00574249,0.941774,0.941501,0.0288856,0.185142,0.868894,0.984665,0.254763,0.726592,0.416149,0.577849,0.468414,0.998477,0.876593,0.264282,0.658088,0.993563,0.404176,0.00756884,0.309264,0.439463,0.791952,0.538235,0.0434391,0.784931,0.102634,0.672063,0.552228,0.0857127,0.662047,0.0868927,0.861629,0.680444,0.312734,0.559593,0.109254,0.933224,0.31337,0.64544,0.0828577,0.23101,0.680168,0.0213432,0.524424,0.620654,0.791292,0.373953,0.765858,0.466983,0.340616,0.185218,0.0262094,0.324361,0.424502,0.872283,0.991631,0.0309562,0.357806,0.806622,0.126395,0.983028,0.252473,0.391814,0.163196,0.0108441,0.519499,0.99198,0.411518,0.174074,0.777726,0.114964,0.121554,0.550779,0.858044,0.745338,0.888828,0.35458,0.894046,0.286867,0.00252432,0.362547,0.632427,0.279576,0.0689752,0.559502,0.433235,0.277272,0.101635,0.263164,0.570646,0.479865,0.455374,0.295387,0.300012,0.0670546,0.662046,0.996667,0.609747,0.10207,0.137466,0.879073,0.698225,0.642634,0.979964,0.0725217,0.9486,0.293241,0.268328,0.195542,0.798357,0.495317,0.424893,0.529134,0.995317,0.552371,0.831714,0.549492,0.955796,0.850419,0.628688,0.0534334,0.639959,0.191661,0.428502,0.82868,0.701705,0.866431,0.592305,0.0108401,0.297064,0.323699,0.866309,0.165724,0.496018,0.0547581,0.507638,0.996377,0.700965,0.899461,0.088677,0.336035,0.754063,0.704903,0.401765,0.0561453,0.296337,0.177285,0.217858,0.491882,0.749904,0.185429,0.0382985,0.157134,0.444314,0.324882,0.402942,0.290087,0.412257,0.0356814,0.583131,0.347391,0.537612,0.788146,0.299092,0.771284,0.51502,0.0858514,0.552771,0.260208,0.280605,0.657734,0.507505,0.120161,0.939333,0.567126,0.530297,0.868743,0.985971,0.79069,0.994922,0.498827,0.907965,0.774664,0.508785,0.298461,0.236255,0.230821,0.834433,0.373264,0.32138,0.162808,0.447356,0.610906,0.573795,0.898329,0.619684,0.347095,0.852017,0.261891,0.964352,0.498273,0.870258,0.304192,0.291563,0.856452,0.114184,0.493523,0.12128,0.93966,0.720135,0.405194,0.694849,0.819697,0.591196,0.715334,0.083043,0.119883,0.430872,0.758556,0.617131,0.143908,0.965141,0.2326,0.719411,0.360485,0.187791,0.394001,0.271643,0.423143,0.062544,0.598741,0.696117,0.0191492,0.350501,0.917283,0.32514,0.113968,0.143187,0.308251,0.320573,0.564407,0.955933,0.738392,0.747125,0.843749,0.276625,0.817246,0.0858289,0.0522808,0.626682,0.640683,0.841624,0.792594,0.00649869,0.346804,0.636075,0.0085032,0.690076,0.360939,0.580442,0.0258727,0.681444,0.385909,0.497809,0.0587077,0.250501,0.0958934,0.386999,0.625467,0.824642,0.589648,0.0551077,0.965603,0.415923,0.264905,0.738188,0.179873,0.744412,0.933817,0.43699,0.701338,0.646491,0.469676,0.855526,0.450183,0.544274,0.197431,0.604738,0.581589,0.388128,0.517766,0.837535,0.905136,0.783849,0.495315,0.729643,0.622179,0.107436,0.692661,0.822025,0.844522,0.396338,0.911299,0.944216,0.335384,0.807479,0.0569915,0.339051,0.505266,0.999041,0.927514,0.925733,0.112104,0.954782,0.128799,0.25346,0.705873,0.149592,0.805727,0.467045,0.892839,0.0893661,0.924227,0.53508,0.562369,0.100735,0.069443,0.462229,0.479209,0.155801,0.00259531,0.234425,0.912743,0.356301,0.757515,0.160563,0.364745,0.0525646,0.925385,0.295605,0.639168,0.464613,0.778318,0.871289,0.712952,0.86964,0.686913,0.648919,0.601122,0.0742986,0.510809,0.895657,0.507232,0.957574,0.542463,0.347072,0.889436,0.0216779,0.37147,0.502485,0.335146,0.318342,0.0739714,0.943837,0.0361216,0.485406,0.740047,0.252421,0.597,0.364002,0.369481,0.237504,0.609746,0.221988,0.551719,0.243006,0.367294,0.0066011,0.697393,0.109626,0.946659,0.506515,0.0838016,0.506633,0.857222,0.608091,0.519079,0.666152,0.42761,0.42956,0.671093,0.0422802,0.581366,0.916536,0.330269,0.713107,0.750064,0.220639,0.465291,0.384423,0.842021,0.568885,0.689406,0.134723,0.364012,0.0908846,0.269181,0.438029,0.301844,0.03993,0.618481,0.251071,0.817203,0.0657338,0.556835,0.0537481,0.301816,0.956916,0.0693309,0.551138,0.797476,0.945994,0.124879,0.46729,0.71497,0.803351,0.100831,0.439521,0.543312,0.0693202,0.302198,0.0980489,0.515869,0.859191,0.118966,0.504278,0.644375,0.157013,0.610639,0.175676,0.631565,0.42947,0.233787,0.77275,0.988354,0.141676,0.377954,0.890694,0.0479834,0.0279428,0.518573,0.882866,0.391415,0.310137,0.322789,0.467058,0.914498,0.676853,0.740962,0.961319,0.42418,0.0335565,0.0102825,0.980288,0.738126,0.24131,0.406036,0.911307,0.287267,0.17822,0.666885,0.00816196,0.559582,0.0997056,0.265574,0.503803,0.109326,0.988372,0.952219,0.848577,0.329953,0.183609,0.298293,0.232465,0.939149,0.0861413,0.0592086,0.272133,0.915685,0.219277,0.406627,0.779598,0.786331,0.414536,0.630469,0.440182,0.785687,0.757847,0.782778,0.454848,0.696029,0.544692,0.127417,0.820801,0.137256,0.104702,0.400821,0.0488461,0.204034,0.792852,0.320654,0.15606,0.893752,0.800932,0.288132,0.353072,0.596955,0.748924,0.454576,0.876469,0.868491,0.883817,0.753684,0.518665,0.378895,0.248565,0.662139,0.72367,0.907466,0.317677,0.578285,0.179374,0.956816,0.315535,0.411266,0.59521,0.900637,0.606679,0.977252,0.0654601,0.551459,0.881928,0.293034,0.940531,0.340113,0.642937,0.336598,0.268103,0.809245,0.834755,0.715819,0.585263,0.44319,0.551895,0.362251,0.686308,0.827052,0.140186,0.383375,0.587938,0.435217,0.972799,0.261902,0.958343,0.103012,0.912129,0.0394964,0.174321,0.595141,0.0637301,0.149838,0.86187,0.26766,0.850919,0.269834,0.503557,0.936349,0.551961,0.494241,0.0944903,0.633669,0.874276,0.396584,0.542609,0.38718,0.958838,0.951883,0.918079,0.22339,0.143418,0.400053,0.433752,0.459917,0.765398,0.0711666,0.395959,0.580969,0.774017,0.875268,0.556664,0.994998,0.831838,0.405731,0.770402,0.963343,0.44204,0.153218,0.68481,0.762233,0.352833,0.187455,0.857872,0.253849,0.112554,0.713895,0.058491,0.082558,0.293876,0.849414,0.925599,0.311292,0.623152,0.562068,0.102587,0.388744,0.138529,0.498025,0.327381,0.643886,0.435833,0.544606,0.466655,0.375867,0.805737,0.0423912,0.199927,0.761056,0.0804457,0.156824,0.293336,0.388139,0.638814,0.865789,0.834147,0.0931914,0.892445,0.772769,0.514559,0.223859,0.967499,0.879671,0.123278,0.876164,0.968706,0.195351,0.72967,0.153263,0.0954258,0.855038,0.541428,0.835822,0.775008,0.81571,0.403726,0.936431,0.474797,0.0541373,0.830042,0.471497,0.44365,0.203068,0.153088,0.752434,0.0495637,0.457203,0.400913,0.694202,|0.208862,0.949182,0.164289,0.634738,0.206059,0.483185,0.986998,0.631141,0.421712,0.289553,0.14225,0.285305,0.444108,0.269643,0.218584,0.933847,0.776534,0.267242,0.437082,0.824509,0.589815,0.222401,0.0920562,0.235333,0.131819,0.808701,0.124567,0.959048,0.0991193,0.381085,0.922774,0.532749,0.362747,0.526205,0.972221,0.636297,0.185652,0.969152,0.684912,0.97869,0.624914,0.56752,0.602985,0.609369,0.669599,0.579758,0.741525,0.970079,0.931036,0.251015,0.406371,0.00681967,0.63483,0.850819,0.432734,0.445256,0.792019,0.20696,0.269144,0.286975,0.351319,0.758725,0.917568,0.266659,0.678063,0.357091,0.816778,0.786976,0.557966,0.455784,0.902459,0.775367,0.0833194,0.464006,0.786206,0.488225,0.211404,0.438982,0.272102,0.208686,0.155571,0.973918,0.0785914,0.192599,0.209431,0.227979,0.265601,0.165589,0.81765,0.753311,0.488762,0.24587,0.43516,0.166286,0.373971,0.933905,0.727008,0.907981,0.330965,0.969213,0.944421,0.365297,0.043601,0.32666,0.507127,0.351522,0.0933921,0.444133,0.530457,0.0913642,0.318373,0.331099,0.405728,0.652107,0.126029,0.000748456,0.960908,0.435506,0.0676618,0.162358,0.171075,0.455572,0.422627,0.648708,0.280491,0.816711,0.732353,0.347007,0.432508,0.714946,0.321557,0.364942,0.601207,0.184424,0.360757,0.71196,0.598075,0.498057,0.191331,0.61879,0.705681,0.533248,0.720006,0.646575,0.122593,0.496236,0.744643,0.962238,0.561723,0.865288,0.52106,0.789939,0.659868,0.812176,0.0970626,0.121053,0.718669,0.736011,0.834823,0.965146,0.0614047,0.345746,0.224137,0.311779,0.772411,0.80531,0.113973,0.52713,0.459222,0.0286582,0.322264,0.988977,0.679714,0.880988,0.370917,0.356906,0.417477,0.605475,0.247675,0.0103268,0.996769,0.0164674,0.970839,0.201473,0.485949,0.607001,0.48786,0.453613,0.178135,0.347946,0.0853581,0.853005,0.424269,0.141801,0.085589,0.605498,0.306712,0.409693,0.554453,0.188434,0.517044,0.517265,0.974589,0.793315,0.557825,0.200807,0.971309,0.311449,0.432751,0.252486,0.657429,0.832015,0.814026,0.892778,0.134171,0.732069,0.433435,0.438734,0.846878,0.679764,0.360991,0.611919,0.391205,0.733198,0.0291325,0.686558,0.266041,0.428421,0.0684444,0.45489,0.619323,0.0688028,0.608895,0.0333169,0.101095,0.609593,0.734345,0.0542479,0.0841039,0.49527,0.118324,0.60053,0.309853,0.256613,0.0850169,0.51814,0.885699,0.0146295,0.950461,0.558631,0.741777,0.372942,0.596122,0.479577,0.224295,0.310109,0.999734,0.680857,0.565823,0.753094,0.253971,0.172528,0.0445213,0.587671,0.00302237,0.617534,0.971755,0.344275,0.989896,0.84067,0.0751714,0.095758,0.0566451,0.630696,0.738442,0.342302,0.438926,0.486303,0.0934605,0.377036,0.50146,0.558025,0.683286,0.348129,0.149076,0.583033,0.813893,0.686641,0.612809,0.908086,0.0964358,0.254297,0.401866,0.657845,0.268035,0.481008,0.776894,0.649185,0.363631,0.411107,0.33942,0.823899,0.0295716,0.23075,0.118961,0.469703,0.535103,0.768949,0.178841,0.367442,0.421187,0.0327978,0.352799,0.243932,0.721336,0.441632,0.680145,0.952771,0.184077,0.108834,0.85047,0.112877,0.678999,0.52232,0.234216,0.388704,0.710687,0.373423,0.357307,0.399605,0.0377025,0.51363,0.811339,0.0923275,0.172651,0.55571,0.436451,0.562027,0.0664276,0.584831,0.25752,0.283996,0.976556,0.579053,0.670571,0.852974,0.00809669,0.446839,0.288997,0.117878,0.323055,0.810224,0.0977441,0.121604,0.913824,0.465501,0.302834,0.691583,0.570134,0.910495,0.83178,0.0253577,0.559706,0.692915,0.609067,0.140846,0.227935,0.664805,0.935755,0.619131,0.656988,0.966175,0.483035,0.244379,0.961954,0.791363,0.962286,0.306379,0.569625,0.0264589,0.45393,0.904493,0.199553,0.33393,0.917001,0.986256,0.289053,0.837679,0.396732,0.976925,0.0469074,0.449065,0.890656,0.208456,0.342536,0.71478,0.504125,0.735371,0.895651,0.0475549,0.235448,0.294452,0.234965,0.710658,0.0294673,0.948382,0.887615,0.221887,0.316505,0.588632,0.9633,0.2991,0.499502,0.952947,0.793034,0.371832,0.200262,0.754993,0.260966,0.260124,0.148807,0.00269967,0.847618,0.230406,0.63658,0.190303,0.456996,0.277714,0.394652,0.240804,0.644034,0.820563,0.947363,0.771176,0.485817,0.138367,0.248864,0.831771,0.870583,0.787313,0.164022,0.755827,0.882834,0.502228,0.472464,0.909651,0.747695,0.632869,0.70878,0.301298,0.0406075,0.349084,0.290269,0.378864,0.576583,0.812046,0.47228,0.620662,0.938594,0.134055,0.39048,0.678612,0.642157,0.390801,0.461588,0.730219,0.167068,0.20721,0.390798,0.475848,0.582798,0.467442,0.738983,0.783972,0.976849,0.63047,0.546001,0.934428,0.285483,0.0134538,0.971111,0.0673895,0.611949,0.568758,0.780525,0.853446,0.0477151,0.562885,0.400736,0.320209,0.865494,0.340503,0.843115,0.0841155,0.0325456,0.403792,0.163988,0.655341,0.161414,0.247472,0.459765,0.225251,0.489754,0.395511,0.769236,0.174061,0.705496,0.829143,0.447409,0.399012,0.295879,0.675189,0.65884,0.104329,0.875033,0.890063,0.603477,0.381493,0.125731,0.227512,0.391999,0.420911,0.561312,0.720831,0.123996,0.257228,0.0414153,0.288126,0.954262,0.807248,0.767751,0.659138,0.161546,0.350655,0.370499,0.250423,0.865156,0.510607,0.0100519,0.369697,0.7283,0.2984,0.737624,0.635354,0.488643,0.842351,0.102764,0.627968,0.847689,0.368348,0.747618,0.523434,0.507221,0.72856,0.500278,0.268183,0.183,0.310607,0.590699,0.494538,0.517947,0.727206,0.735363,0.440619,0.0776567,0.494148,0.307929,0.816288,0.678917,0.485361,0.566255,0.650906,0.942804,0.875077,0.399233,0.444259,0.88449,0.541504,0.5572,0.47082,0.514725,0.00511956,0.756875,0.208917,0.34275,0.679937,0.355094,0.827493,0.821955,0.789608,0.189241,0.0790626,0.55734,0.472822,0.199323,0.110458,0.00981063,0.564807,0.213217,0.664676,0.625203,0.49085,0.385862,0.00733036,0.834387,0.328054,0.193023,0.325874,0.63174,0.00114125,0.203026,0.976451,0.277376,0.109485,0.643128,0.738816,0.549896,0.821429,0.652578,0.618172,0.283601,0.209627,0.349626,0.237209,0.520687,0.0372098,0.677672,0.93977,0.362749,0.270498,0.5365,0.910392,0.825053,0.197036,0.250513,0.176331,0.444531,0.473091,0.979153,0.015397,0.671367,0.960459,0.292722,0.140951,0.676986,0.597024,0.856372,0.817226,0.455694,0.317019,0.980239,0.0659708,0.882582,0.191614,0.121515,0.554721,0.120592,0.519935,0.356352,0.466476,0.52594,0.610419,0.609502,0.200585,0.170549,0.991282,0.44774,0.532536,0.0308335,0.642993,0.170128,0.971876,0.164378,0.705718,0.993713,0.404794,0.123054,0.0190939,0.159873,0.119655,0.405133,0.0052352,0.120101,0.332669,0.0648528,0.51566,0.139068,0.104925,0.590722,0.612295,0.175314,0.744109,0.182294,0.865241,0.525442,0.553981,0.925844,0.514102,0.826811,0.373346,0.851985,0.163477,0.111683,0.172728,0.158611,0.775001,0.226508,0.543903,0.927979,0.214078,0.0653147,0.848658,0.569382,0.280858,0.166211,0.979466,0.778579,0.589037,0.576157,0.568891,0.303889,0.571398,0.914094,0.499932,0.442545,0.458172,0.266575,0.422496,0.235442,0.982377,0.0131195,0.212384,0.747474,0.182876,0.282182,0.135385,0.750567,0.841227,0.133427,0.160505,0.426156,0.836825,0.100764,0.633052,0.58734,0.498592,0.99382,0.0482094,0.32616,0.681429,0.601642,0.225268,0.927667,0.851025,0.506736,0.338596,0.800738,0.0454297,0.172422,0.256546,0.0205333,0.954589,0.871376,0.326524,0.0649148,0.558082,0.491092,0.628821,0.677021,0.00464034,0.247602,0.830109,0.651471,0.369262,0.886366,0.073351,0.661991,0.382337,0.467531,0.718639,0.392565,0.537698,0.0348554,0.42733,0.798965,0.574044,0.463181,0.340866,0.987485,0.896878,0.641112,0.0643743,0.819968,0.216173,0.671438,0.967342,0.730477,0.44252,0.632776,0.751451,0.849536,0.610453,0.194197,0.925706,0.522054,0.70971,0.726623,0.267523,0.0261309,0.0627758,0.796766,0.744137,0.0782018,0.125934,0.788824,0.448923,0.497238,0.586101,0.672494,0.450967,0.921904,0.860057,0.975061,0.420494,0.801239,0.381475,0.989985,0.971856,0.217873,0.307859,0.820103,0.991656,0.837104,0.0763837,0.983188,0.131792,0.41806,0.214224,0.730394,0.418293,0.715042,0.35374,0.468035,0.378971,0.138549,0.280833,0.209803,0.565064,0.385372,0.102196,0.821893,0.309235,0.0822895,0.610362,0.752524,0.673336,0.640149,0.920901,0.322367,0.720576,0.435406,0.901963,0.0856663,0.814885,0.296582,0.881927,0.945487,0.804113,0.789436,0.330581,0.43759,0.834227,0.820729,0.308036,0.928121,0.911456,0.527317,0.444751,0.00539392,0.3157,0.721999,0.408224,0.679675,0.599498,0.31074,0.297401,0.43352,0.488712,0.171871,0.0320384,0.757413,0.829792,0.0181575,0.557727,0.307804,0.559332,0.336353,0.902355,0.0490332,0.379506,0.0296631,0.0937598,0.041583,0.155376,0.425165,0.890356,0.720357,0.372451,0.983136,0.611122,0.369968,0.834617,0.263584,0.936022,0.843565,0.786726,0.851312,0.619714,0.154244,0.95385,0.943973,0.453625,0.5452,0.729949,0.157744,0.290364,0.197787,0.432586,0.970663,0.897624,0.537559,0.285046,0.483489,0.331413,0.101004,0.928732,0.630221,0.1656,0.987862,0.10035,0.407478,0.951563,0.735271,0.62375,0.00836653,0.880292,0.830789,0.695402,0.947358,0.51289,0.0907239,0.47709,0.0222409,0.345208,0.736453,0.56909,0.597268,0.598089,0.0457062,0.151188,0.278094,0.729902,0.796204,0.184284,0.637749,0.31386,0.52527,0.118482,0.0202082,0.215693,0.565471,0.274357,0.760013,0.728699,0.0508734,0.762908,0.919907,0.971554,0.401087,0.9384,0.144695,0.224332,0.47128,0.0488065,0.0757853,0.528545,0.91712,0.167514,0.873214,0.815887,0.581653,0.574469,0.172261,0.123181,0.651324,0.294469,0.685727,0.977213,0.46787,0.561452,|0.556385,0.203553,0.209395,0.72087,0.117903,0.577472,0.411837,0.10605,0.12941,0.412158,0.488018,0.727551,0.375032,0.528477,0.238702,0.159044,0.169768,0.253032,0.543556,0.555601,0.133124,0.314001,0.0413904,0.0282287,0.988798,0.696039,0.753239,0.80085,0.141681,0.604153,0.947834,0.479474,0.955524,0.707126,0.110677,0.29906,0.646564,0.925976,0.921771,0.694196,0.287175,0.991178,0.335423,0.736887,0.615184,0.756905,0.937471,0.299737,0.351105,0.0702768,0.522205,0.933457,0.289527,0.668136,0.687796,0.884038,0.0129669,0.313044,0.763947,0.890133,0.507903,0.543333,0.176485,0.292774,0.536558,0.0884387,0.798499,0.46105,0.971559,0.923545,0.24478,0.428975,0.934202,0.338772,0.140196,0.333122,0.365471,0.193111,0.684984,0.429919,0.645159,0.265931,0.0656162,0.899846,0.712338,0.186842,0.556284,0.64445,0.513538,0.581543,0.502368,0.870063,0.14414,0.934637,0.158938,0.826312,0.508144,0.850444,0.479411,0.114263,0.822615,0.66453,0.590061,0.148886,0.344051,0.467471,0.765894,0.988919,0.00802529,0.155361,0.853979,0.908708,0.860194,0.205084,0.249536,0.567607,0.750004,0.559874,0.775065,0.359063,0.443376,0.0686081,0.371744,0.597671,0.322345,0.157033,0.4615,0.49094,0.773514,0.58527,0.833924,0.350415,0.490429,0.139958,0.798827,0.406087,0.723323,0.118618,0.320387,0.242544,0.197558,0.835545,0.0998136,0.816649,0.462549,0.811253,0.503982,0.952119,0.00588626,0.0893403,0.984926,0.593486,0.927712,0.413297,0.725667,0.557085,0.281064,0.63521,0.5393,0.578281,0.251196,0.745285,0.361502,0.128992,0.0886377,0.382108,0.744013,0.409467,0.866048,0.870924,0.632537,0.0874427,0.466362,0.148433,0.136689,0.364076,0.108249,0.0951213,0.924158,0.4399,0.469953,0.781223,0.619093,0.935255,0.656986,0.597382,0.192389,0.264182,0.718922,0.322489,0.413136,0.49217,0.80668,0.263411,0.0118631,0.9307,0.671482,0.832923,0.30552,0.147083,0.719219,0.132694,0.620839,0.390167,0.611975,0.0937621,0.0750173,0.00627458,0.272165,0.551905,0.258762,0.407525,0.10895,0.756075,0.534145,0.14386,0.842215,0.448861,0.0350645,0.215966,0.984262,0.795209,0.357836,0.673608,0.300788,0.91782,0.203936,0.00249678,0.30769,0.475048,0.778827,0.613521,0.117759,0.0932835,0.531954,0.23451,0.732735,0.99395,0.189004,0.761374,0.875995,0.537708,0.820808,0.564667,0.510432,0.435142,0.8528,0.0658348,0.778115,0.528521,0.879797,0.725855,0.0311747,0.357287,0.108867,0.0903513,0.463266,0.424766,0.201446,0.434101,0.326231,0.651446,0.294661,0.817947,0.575978,0.884467,0.64038,0.383574,0.896736,0.755077,0.40602,0.800534,0.411723,0.875939,0.462402,0.507012,0.217936,0.17976,0.555863,0.671477,0.817682,0.526864,0.754122,0.166305,0.954634,0.796039,0.104032,0.766276,0.997333,0.0617884,0.963521,0.627606,0.498761,0.342383,0.541545,0.551864,0.57651,0.476818,0.285131,0.321483,0.212927,0.533827,0.80581,0.39887,0.90775,0.160754,0.183939,0.280506,0.126937,0.530577,0.541939,0.911391,0.959863,0.485808,0.722214,0.901177,0.761738,0.715475,0.673692,0.980022,0.579693,0.708626,0.821024,0.676625,0.572845,0.234203,0.95961,0.717535,0.937015,0.285205,0.0830415,0.885849,0.535871,0.859988,0.283205,0.932071,0.438594,0.546995,0.901724,0.654671,0.590299,0.954809,0.657772,0.565676,0.133806,0.60705,0.847267,0.025034,0.083178,0.526454,0.275355,0.188027,0.765608,0.347618,0.285537,0.143429,0.704863,0.784444,0.28297,0.221211,0.122233,0.177818,0.584915,0.702682,0.588208,0.89236,0.644233,0.230604,0.596304,0.0288552,0.759992,0.0594016,0.554932,0.285701,0.837481,0.919003,0.150677,0.11021,0.309081,0.984681,0.926231,0.694615,0.747286,0.338931,0.866352,0.317599,0.867937,0.104262,0.751639,0.304037,0.315711,0.418144,0.263312,0.790885,0.616984,0.954435,0.191587,0.153555,0.097037,0.836862,0.494107,0.118966,0.506822,0.829862,0.413015,0.794434,0.0283396,0.83302,0.0950472,0.0512075,0.864733,0.716822,0.452021,0.813832,0.0846636,0.918713,0.113057,0.183828,0.618001,0.187415,0.806498,0.310187,0.601894,0.596598,0.286385,0.7289,0.333911,0.229803,0.888845,0.14101,0.583073,0.698201,0.454791,0.0627381,0.898577,0.326644,0.631294,0.0679275,0.587383,0.819088,0.898429,0.269917,0.0478503,0.512303,0.503547,0.890986,0.437258,0.174211,0.0653892,0.0716978,0.0016734,0.177777,0.829453,0.461408,0.0661048,0.546501,0.815576,0.622374,0.842361,0.813286,0.728749,0.370004,0.8717,0.547277,0.30001,0.171554,0.201894,0.238865,0.271094,0.44493,0.413004,0.285245,0.366249,0.147695,0.137267,0.162679,0.200548,0.144086,0.586317,0.990889,0.832699,0.907687,0.732294,0.17874,0.679842,0.52206,0.0307807,0.988763,0.0619974,0.0893278,0.162634,0.897071,0.276456,0.248883,0.448621,0.813904,0.644077,0.587003,0.864036,0.890499,0.625597,0.36758,0.885958,0.505563,0.0618303,0.314902,0.223959,0.792074,0.0804017,0.0382811,0.386016,0.0693678,0.379771,0.885418,0.665256,0.128753,0.0289728,0.565259,0.50217,0.453608,0.300815,0.636232,0.0853713,0.496331,0.839699,0.0504701,0.349624,0.839357,0.482705,0.377612,0.546056,0.352659,0.752924,0.528319,0.741626,0.431161,0.669651,0.351406,0.905315,0.232134,0.0751107,0.256788,0.638786,0.859406,0.982905,0.13143,0.817804,0.14891,0.574025,0.330193,0.848164,0.222188,0.819978,0.133258,0.799962,0.334958,0.0781167,0.671449,0.942123,0.0848743,0.759434,0.483713,0.276546,0.62627,0.348775,0.529899,0.187808,0.545239,0.507399,0.96385,0.953072,0.692438,0.455945,0.072392,0.324113,0.873857,0.953729,0.185024,0.313593,0.657349,0.684536,0.756083,0.801416,0.892606,0.0347552,0.968594,0.83851,0.84786,0.119847,0.956985,0.207065,0.80594,0.470876,0.211202,0.818869,0.926422,0.426035,0.342325,0.466006,0.470413,0.626946,0.6386,0.481134,0.271952,0.342894,0.395042,0.348476,0.92009,0.033326,0.797272,0.760546,0.703053,0.580579,0.384903,0.0783272,0.703182,0.595577,0.920329,0.0333228,0.0163254,0.044538,0.251739,0.235039,0.767975,0.244591,0.338251,0.855375,0.669236,0.926739,0.498409,0.949632,0.713312,0.959867,0.00271267,0.262081,0.619574,0.970407,0.102033,0.505081,0.337345,0.374618,0.128257,0.0856922,0.704002,0.253048,0.241017,0.825896,0.238558,0.0329975,0.212025,0.458005,0.582524,0.647955,0.278317,0.860461,0.430557,0.804844,0.00643581,0.734745,0.514953,0.204964,0.378246,0.495333,0.543726,0.0491299,0.845818,0.335354,0.850942,0.930579,0.277594,0.95169,0.101466,0.852517,0.340292,0.369194,0.249855,0.767254,0.74515,0.194463,0.919867,0.34265,0.319328,0.709667,0.509804,0.0348079,0.830975,0.359555,0.603558,0.250925,0.137017,0.212916,0.457445,0.505122,0.374281,0.605828,0.82132,0.270678,0.144893,0.166217,0.951701,0.0818506,0.697327,0.871961,0.57385,0.447873,0.223697,0.75094,0.191248,0.885871,0.562004,0.557059,0.593886,0.41396,0.797547,0.713821,0.613675,0.585477,0.0622677,0.201655,0.654957,0.717926,0.249545,0.470811,0.368282,0.452916,0.611266,0.141603,0.702592,0.0152105,0.580776,0.43962,0.441316,0.020798,0.476975,0.835019,0.490458,0.364059,0.496873,0.315131,0.00310361,0.382518,0.264273,0.742704,0.616272,0.0217566,0.690417,0.129569,0.784385,0.914117,0.591818,0.356667,0.702879,0.394771,0.72205,0.41232,0.293883,0.90445,0.133492,0.0225183,0.713293,0.0765568,0.94278,0.37435,0.560992,0.900888,0.498954,0.407082,0.587357,0.436831,0.239382,0.651675,0.505079,0.163739,0.144721,0.7213,0.0319418,0.0718301,0.285905,0.613575,0.956279,0.140904,0.201815,0.805365,0.284035,0.0781588,0.428156,0.530017,0.566202,0.0181914,0.382903,0.864868,0.901061,0.204384,0.276612,0.216172,0.894666,0.147923,0.75727,0.831753,0.628541,0.722583,0.0209311,0.298946,0.186753,0.6476,0.191858,0.669704,0.271201,0.361705,0.244195,0.054659,0.990335,0.266958,0.738825,0.780814,0.778343,0.427868,0.640383,0.396982,0.507868,0.123176,0.68319,0.904053,0.943072,0.907322,0.185583,0.300379,0.874962,0.630902,0.894281,0.530685,0.94521,0.115212,0.281277,0.503371,0.828276,0.346013,0.595813,0.815252,0.941453,0.718802,0.395079,0.207588,0.418552,0.394839,0.434344,0.930105,0.776195,0.298916,0.80276,0.887619,0.645232,0.170276,0.00746596,0.232552,0.303249,0.267244,0.971763,0.419442,0.852919,0.438132,0.192816,0.239918,0.0296614,0.680439,0.192169,0.760117,0.564395,0.890651,0.92248,0.568753,0.711149,0.169555,0.598727,0.122536,0.624514,0.793957,0.722749,0.59949,0.490876,0.750103,0.39874,0.14896,0.883307,0.754892,0.536499,0.794297,0.679177,0.486736,0.786058,0.109332,0.97902,0.162346,0.354553,0.115106,0.772082,0.318252,0.0385244,0.932786,0.542731,0.819966,0.877918,0.68196,0.638319,0.268551,0.791125,0.562314,0.503381,0.434423,0.380849,0.60734,0.221717,0.702163,0.193602,0.862177,0.135974,0.276608,0.973567,0.115958,0.198957,0.913046,0.92723,0.0418479,0.427402,0.297716,0.077019,0.21113,0.22013,0.608894,0.185156,0.463964,0.0234171,0.590841,0.0702602,0.808503,0.60203,0.22664,0.391301,0.510269,0.614999,0.455005,0.401443,0.690436,0.660168,0.767487,0.760083,0.408924,0.326377,0.940296,0.158034,0.642771,0.921808,0.306401,0.377469,0.565458,0.552811,0.475542,0.359563,0.974546,0.758962,0.954119,0.795403,0.66381,0.452619,0.545991,0.177053,0.890338,0.377576,0.388983,0.857005,0.536569,0.341356,0.346471,0.058979,0.171903,0.650392,0.752384,0.275436,0.699101,0.207566,0.0258328,0.192676,0.496835,0.388324,0.682412,0.35401,0.446503,0.516838,0.178168,0.0150852,0.243937,0.767351,0.596691,0.273802,0.86573,0.327928,0.668153,0.163407,0.965266,0.113341,|0.99923,0.354606,0.670868,0.0136408,0.936639,0.217147,0.820513,0.145385,0.695798,0.00843984,0.591496,0.66076,0.797633,0.35868,0.56914,0.747468,0.649854,0.20699,0.119938,0.577873,0.208626,0.201183,0.945298,0.880534,0.333077,0.268924,0.14568,0.386795,0.088334,0.744516,0.479794,0.436643,0.698172,0.955579,0.171485,0.218913,0.80769,0.403889,0.61623,0.145602,0.650571,0.332244,0.256097,0.471154,0.419246,0.0794576,0.740052,0.114354,0.101518,0.168113,0.627711,0.508353,0.255191,0.977472,0.632492,0.656588,0.35839,0.448156,0.987385,0.90628,0.403036,0.778295,0.811148,0.565907,0.338045,0.885281,0.215895,0.467522,0.332885,0.873011,0.99211,0.0131754,0.433205,0.926672,0.831237,0.838603,0.987901,0.905397,0.726337,0.92961,0.0175337,0.115558,0.6621,0.921927,0.116274,0.221592,0.973241,0.424642,0.547934,0.339082,0.609706,0.31235,0.644071,0.605329,0.253256,0.624006,0.56222,0.700178,0.379235,0.420598,0.675568,0.807509,0.336689,0.875494,0.0533659,0.68027,0.240808,0.627578,0.876101,0.29932,0.765368,0.462419,0.698456,0.0624833,0.0886049,0.702955,0.350133,0.637028,0.56634,0.181852,0.362957,0.0889421,0.464732,0.976567,0.370154,0.321119,0.632665,0.769644,0.436702,0.356414,0.854362,0.581199,0.162796,0.316714,0.748322,0.452549,0.0537898,0.632089,0.343423,0.561342,0.498387,0.22144,0.534728,0.745835,0.599291,0.776938,0.444195,0.377231,0.106464,0.166931,0.0225054,0.0736153,0.588589,0.751984,0.175299,0.318453,0.336342,0.566755,0.507975,0.67318,0.442354,0.0185377,0.920827,0.581889,0.431098,0.213325,0.479038,0.185566,0.486759,0.764698,0.872143,0.63141,0.193748,0.834425,0.273467,0.11069,0.81787,0.814126,0.350635,0.721581,0.778875,0.0766728,0.703539,0.360503,0.735966,0.650415,0.494709,0.944868,0.563265,0.38848,0.593979,0.243044,0.140282,0.207772,0.21398,0.907986,0.722457,0.789342,0.610706,0.0953966,0.440629,0.894313,0.556506,0.364101,0.218713,0.832773,0.870714,0.293827,0.674577,0.396239,0.138913,0.683259,0.177805,0.630082,0.407731,0.468831,0.681449,0.111004,0.649611,0.7197,0.535312,0.41786,0.806826,0.00637513,0.414917,0.404185,0.0594671,0.974312,0.253852,0.337933,0.572005,0.858559,0.814917,0.473644,0.539792,0.0906201,0.527807,0.963016,0.575558,0.737061,0.292367,0.22805,0.199878,0.699061,0.23236,0.33886,0.140095,0.598282,0.492433,0.732638,0.213165,0.680341,0.643676,0.995753,0.0406888,0.59765,0.670415,0.377148,0.599697,0.936801,0.217352,0.157463,0.760584,0.623467,0.583286,0.672734,0.367719,0.0685328,0.817565,0.173602,0.578515,0.314026,0.59647,0.0564936,0.766405,0.796831,0.501352,0.355911,0.0196107,0.82483,0.444537,0.94893,0.889217,0.813667,0.414771,0.624518,0.731899,0.463617,0.112012,0.596811,0.984057,0.155916,0.535301,0.818687,0.308563,0.331546,0.844995,0.332815,0.399301,0.221207,0.52441,0.640071,0.398255,0.798201,0.982659,0.0826009,0.419439,0.558087,0.589057,0.775137,0.959137,0.880929,0.324139,0.355112,0.146653,0.374399,0.586022,0.432086,0.526772,0.959356,0.94849,0.0139154,0.585765,0.200278,0.142999,0.328788,0.56247,0.0120907,0.0526175,0.634812,0.336377,0.0456741,0.319306,0.185668,0.408913,0.23994,0.96248,0.927653,0.454411,0.236838,0.0275797,0.0725546,0.73323,0.90675,0.615631,0.869033,0.605069,0.0118443,0.406677,0.548464,0.70617,0.083883,0.79535,0.475868,0.261275,0.290111,0.512887,0.245361,0.417168,0.0439252,0.485885,0.585823,0.637593,0.499355,0.309257,0.42754,0.0278264,0.186468,0.311174,0.991057,0.0487443,0.490209,0.681977,0.457948,0.722367,0.288108,0.966875,0.0225355,0.27688,0.212581,0.754666,0.77712,0.750397,0.692553,0.450589,0.16662,0.691293,0.90946,0.725313,0.387738,0.591502,0.0183549,0.6371,0.376203,0.348041,0.605955,0.419154,0.388194,0.508581,0.117058,0.191924,0.392988,0.717124,0.560277,0.0333872,0.3475,0.811074,0.00634116,0.744018,0.335297,0.667429,0.449542,0.745372,0.192369,0.4081,0.213259,0.625634,0.772415,0.0241396,0.313013,0.14354,0.521641,0.50358,0.939648,0.289285,0.609994,0.434349,0.530006,0.382727,0.171884,0.298864,0.649742,0.897659,0.88616,0.89826,0.157126,0.595844,0.763989,0.212387,0.892493,0.569086,0.927081,0.82516,0.309028,0.811338,0.483437,0.63396,0.424442,0.343092,0.356468,0.244736,0.336467,0.193356,0.0475961,0.399724,0.0596345,0.816086,0.854982,0.657336,0.174303,0.13986,0.203387,0.0920966,0.807929,0.646625,0.0229822,0.000801206,0.849115,0.88258,0.938308,0.211096,0.00632882,0.093967,0.683611,0.0217649,0.186522,0.457296,0.152279,0.296352,0.463539,0.951681,0.316776,0.1468,0.557968,0.943332,0.701666,0.490498,0.937288,0.725158,0.051278,0.57138,0.717618,0.643381,0.913919,0.0241101,0.0801468,0.537142,0.611359,0.828492,0.135703,0.438359,0.0415427,0.185566,0.801351,0.330595,0.043377,0.72698,0.554812,0.948712,0.551382,0.7717,0.417187,0.846513,0.374988,0.678881,0.538279,0.366925,0.176427,0.935259,0.306917,0.315701,0.915553,0.132062,0.933517,0.940361,0.315181,0.167737,0.213607,0.424766,0.685836,0.0269305,0.865457,0.429387,0.390047,0.294701,0.904837,0.00210261,0.373391,0.256361,0.821318,0.634378,0.253585,0.979187,0.143637,0.660601,0.148267,0.665504,0.438169,0.0952916,0.630067,0.866777,0.579642,0.0491916,0.89628,0.823055,0.345934,0.248911,0.740398,0.510826,0.787832,0.862648,0.892032,0.447396,0.793832,0.841019,0.406838,0.105093,0.209391,0.797464,0.965174,0.440592,0.51007,0.301791,0.484965,0.577018,0.912628,0.487704,0.721336,0.248708,0.893752,0.982571,0.757952,0.785747,0.376019,0.664124,0.555815,0.582435,0.609791,0.592896,0.396114,0.579409,0.214327,0.159774,0.766532,0.107118,0.208865,0.801345,0.192573,0.935456,0.12891,0.694849,0.285639,0.938616,0.171067,0.671725,0.872423,0.763849,0.0153825,0.0461354,0.542139,0.212431,0.16382,0.824939,0.60363,0.976707,0.425162,0.681716,0.766323,0.175163,0.365836,0.549665,0.538895,0.502014,0.780751,0.0779963,0.665592,0.863097,0.404835,0.99187,0.189535,0.144887,0.603106,0.324654,0.144085,0.0290262,0.798529,0.312566,0.883571,0.904401,0.423424,0.074429,0.163571,0.38858,0.975465,0.720496,0.707325,0.854617,0.343916,0.597543,0.33926,0.929683,0.526478,0.938224,0.294965,0.994412,0.307273,0.698917,0.0452569,0.394601,0.617564,0.0933058,0.525537,0.255333,0.585558,0.918925,0.779432,0.706917,0.847203,0.25393,0.0654244,0.875381,0.136465,0.713641,0.197239,0.495411,0.890819,0.600655,0.416753,0.0224808,0.749838,0.510741,0.529128,0.998934,0.401491,0.0841795,0.935525,0.161289,0.0307492,0.387214,0.023658,0.982126,0.645439,0.373663,0.938077,0.13472,0.00772524,0.73396,0.604292,0.594044,0.0238675,0.465871,0.922382,0.72922,0.74911,0.209697,0.714073,0.231515,0.170692,0.792759,0.911107,0.953553,0.278196,0.260637,0.370618,0.70923,0.207049,0.558824,0.117242,0.973007,0.16114,0.184904,0.636659,0.0403671,0.910878,0.710377,0.333255,0.764443,0.563416,0.731274,0.342951,0.924257,0.954738,0.314094,0.437527,0.408855,0.778786,0.733464,0.423058,0.829171,0.157516,0.713972,0.384807,0.733397,0.599427,0.145567,0.914537,0.371519,0.610712,0.931916,0.240449,0.559266,0.252623,0.670362,0.668417,0.628126,0.591843,0.185608,0.70143,0.271415,0.956286,0.681474,0.482695,0.802329,0.143908,0.265873,0.84094,0.0342931,0.0928105,0.0760315,0.656258,0.451533,0.466307,0.240483,0.260866,0.314566,0.197034,0.479973,0.425491,0.502124,0.397653,0.149389,0.305527,0.0988814,0.140726,0.75793,0.574177,0.633291,0.811564,0.102481,0.165875,0.175984,0.482743,0.486168,0.354996,0.60567,0.170883,0.702566,0.141655,0.420005,0.898719,0.277957,0.351068,0.78613,0.444673,0.684097,0.165717,0.112645,0.878915,0.480308,0.528101,0.0295788,0.793859,0.359061,0.467573,0.878134,0.372436,0.33924,0.0998134,0.209104,0.235266,0.761844,0.286962,0.15748,0.394102,0.892902,0.702192,0.378494,0.780772,0.734512,0.742485,0.17696,0.139838,0.948966,0.367787,0.627146,0.0586025,0.482837,0.884637,0.378008,0.272645,0.46864,0.64296,0.1132,0.328403,0.942473,0.674562,0.288135,0.499553,0.894766,0.397878,0.570117,0.109921,0.363557,0.522952,0.785138,0.35487,0.341428,0.709113,0.0515002,0.156389,0.812233,0.294856,0.776373,0.984493,0.716966,0.807896,0.172588,0.454931,0.897625,0.727443,0.756152,0.939712,0.498505,0.548995,0.244723,0.304041,0.583585,0.0856705,0.678224,0.0642825,0.331398,0.515809,0.305975,0.626844,0.215804,0.373081,0.516754,0.819301,0.754922,0.264498,0.0669027,0.654947,0.833002,0.984253,0.00037992,0.682219,0.34018,0.515301,0.00834614,0.135586,0.905433,0.294095,0.547664,0.267445,0.90379,0.849706,0.165868,0.0114588,0.346892,0.176389,0.168629,0.762006,0.436458,0.416878,0.0510536,0.101942,0.174051,0.0835895,0.756079,0.204388,0.635851,0.437044,0.206078,0.905979,0.697162,0.562245,0.51398,0.0947651,0.416349,0.642927,0.628803,0.255097,0.461231,0.591203,0.472751,0.161949,0.491781,0.0710778,0.357726,0.824132,0.126351,0.106102,0.164218,0.759999,0.25364,0.750323,0.966809,0.550376,0.766561,0.0359019,0.877988,0.989204,0.069068,0.355864,0.856983,0.0312089,0.84681,0.998075,0.749828,0.384537,0.955475,0.263648,0.61916,0.864026,0.960285,0.394292,0.626179,0.403234,0.759603,0.73179,0.902255,0.371403,0.127668,0.909269,0.890991,0.638855,0.641859,0.806268,0.647877,0.236432,0.145203,0.462251,0.0583133,0.475836,0.597629,0.700364,0.290571,0.242972,0.681778,0.32463,0.977392,0.60369,0.815071,0.714006,0.0608236,0.626159,0.285625,0.14786,0.229676,0.531493,|0.303128,0.852008,0.817546,0.246331,0.539649,0.000649571,0.37374,0.203386,0.701076,0.0582215,0.566888,0.751974,0.937364,0.900655,0.0121865,0.896451,0.0262675,0.762763,0.353357,0.700357,0.227719,0.336469,0.280188,0.467301,0.400455,0.477771,0.16126,0.379658,0.296548,0.0560298,0.483229,0.433141,0.650069,0.028883,0.0100365,0.317543,0.98253,0.701161,0.546872,0.462106,0.729888,0.325284,0.493959,0.720942,0.0672623,0.243993,0.11144,0.475342,0.788216,0.748009,0.254709,0.711937,0.731441,0.999578,0.935797,0.441872,0.826446,0.827083,0.731658,0.205728,0.532573,0.730519,0.649257,0.890121,0.307794,0.857469,0.959679,0.707489,0.22937,0.923785,0.156085,0.300221,0.484223,0.63401,0.0167148,0.228404,0.766824,0.688281,0.959602,0.698475,0.843998,0.47955,0.466956,0.232883,0.318475,0.812817,0.456355,0.350776,0.879924,0.0583612,0.182306,0.303749,0.0399089,0.190251,0.0196735,0.968786,0.423533,0.860312,0.779449,0.669769,0.902644,0.579777,0.901045,0.603029,0.647245,0.77085,0.387819,0.0174143,0.0550944,0.944592,0.234672,0.564819,0.465392,0.992711,0.944951,0.913012,0.850709,0.235816,0.832135,0.175135,0.00712591,0.573852,0.924354,0.327934,0.890966,0.932922,0.179689,0.452556,0.263493,0.291532,0.467404,0.13836,0.494437,0.778808,0.510567,0.306201,0.397579,0.873765,0.567634,0.238138,0.246819,0.721547,0.424036,0.44892,0.453337,0.245174,0.751425,0.564728,0.0360626,0.257338,0.365755,0.101095,0.565657,0.572696,0.104365,0.0777041,0.746958,0.389025,0.690286,0.173255,0.960444,0.119308,0.0995216,0.0435386,0.526112,0.581153,0.98576,0.923548,0.895542,0.867281,0.824208,0.569023,0.683061,0.988631,0.563601,0.613203,0.176209,0.445481,0.781093,0.480261,0.247368,0.562318,0.214064,0.826346,0.734998,0.931359,0.795271,0.641333,0.133889,0.922575,0.0989097,0.639805,0.487442,0.60775,0.267871,0.385385,0.794274,0.597719,0.921915,0.202267,0.511839,0.0244563,0.155684,0.73236,0.273444,0.916955,0.895881,0.352974,0.998452,0.733336,0.613385,0.966983,0.237018,0.329751,0.346306,0.191247,0.514236,0.394328,0.522871,0.16394,0.286377,0.172097,0.590954,0.0155134,0.186601,0.607728,0.402369,0.0824521,0.550372,0.448494,0.0483398,0.855021,0.0385845,0.359827,0.413375,0.281723,0.324209,0.158315,0.061986,0.84932,0.298011,0.0688689,0.796027,0.118239,0.357519,0.712231,0.750206,0.493735,0.269841,0.799837,0.791354,0.851448,0.979089,0.912997,0.601475,0.119366,0.71473,0.993875,0.444868,0.740402,0.13168,0.750797,0.15835,0.326684,0.0460899,0.183859,0.669648,0.538894,0.137343,0.894274,0.356048,0.929397,0.51496,0.443348,0.525547,0.0788645,0.318528,0.429424,0.304123,0.685697,0.46691,0.136885,0.2818,0.0210784,0.801873,0.47452,0.901953,0.735668,0.0884575,0.237028,0.288624,0.113074,0.647239,0.246167,0.550413,0.344593,0.766351,0.717128,0.399122,0.157068,0.64122,0.623635,0.740707,0.423722,0.0403029,0.164107,0.612893,0.19212,0.341134,0.542916,0.856278,0.523877,0.238302,0.0746264,0.947899,0.622335,0.46736,0.908754,0.190616,0.21102,0.618585,0.113209,0.762544,0.996522,0.356192,0.234222,0.00501937,0.0667976,0.683207,0.413283,0.6493,0.658358,0.307625,0.416297,0.8535,0.860788,0.162884,0.79919,0.894054,0.678572,0.772616,0.788369,0.887392,0.10326,0.311243,0.18883,0.475543,0.261434,0.668572,0.0415382,0.0166402,0.828535,0.254279,0.337022,0.68402,0.866672,0.848306,0.198312,0.816628,0.910929,0.485952,0.884492,0.79272,0.867451,0.307178,0.756759,0.216238,0.228491,0.507161,0.934434,0.825549,0.684834,0.858375,0.993964,0.206284,0.244712,0.818525,0.273204,0.652163,0.899258,0.445876,0.771894,0.0268655,0.730512,0.176212,0.349136,0.582072,0.87844,0.0105805,0.396416,0.869454,0.23024,0.241203,0.237304,0.0970126,0.179455,0.0915839,0.326452,0.90115,0.994341,0.10887,0.628523,0.795834,0.704239,0.806383,0.10346,0.910904,0.313715,0.863637,0.62096,0.0125574,0.240126,0.0661031,0.702463,0.838404,0.463262,0.456852,0.988638,0.797117,0.229986,0.44572,0.00655216,0.988526,0.504261,0.616174,0.388365,0.847262,0.327333,0.426458,0.503209,0.422371,0.32917,0.0463775,0.387425,0.6591,0.904383,0.285083,0.33617,0.00832969,0.237057,0.876007,0.873503,0.413007,0.59704,0.541781,0.661718,0.317321,0.0622955,0.276421,0.434689,0.780623,0.656963,0.542007,0.105857,0.547125,0.648733,0.635275,0.743374,0.606367,0.324582,0.0145576,0.0725963,0.892393,0.384718,0.123905,0.348233,0.285154,0.0672334,0.453834,0.838025,0.392008,0.454455,0.374977,0.945209,0.455834,0.295165,0.729228,0.267009,0.83752,0.333794,0.776565,0.841456,0.915374,0.162287,0.613019,0.660079,0.94098,0.592278,0.555479,0.124305,0.394759,0.668405,0.859584,0.151837,0.836365,0.3027,0.409521,0.03802,0.476254,0.562332,0.237468,0.580352,0.204059,0.696298,0.230444,0.444858,0.948773,0.83457,0.556829,0.223915,0.287618,0.653234,0.447822,0.969934,0.706327,0.735144,0.623562,0.560149,0.595427,0.940609,0.689489,0.9727,0.0426836,0.445044,0.205881,0.265148,0.155405,0.239056,0.961637,0.780348,0.103526,0.832942,0.322112,0.785796,0.285827,0.9113,0.172269,0.0173697,0.512305,0.810765,0.977265,0.78405,0.426237,0.788436,0.850643,0.777253,0.252709,0.548574,0.595335,0.249889,0.576703,0.810095,0.962781,0.742904,0.620775,0.698712,0.648879,0.3546,0.684195,0.323969,0.310409,0.762692,0.589369,0.839929,0.472317,0.840897,0.657355,0.435607,0.353785,0.37583,0.0128402,0.185582,0.78529,0.00730443,0.721435,0.63717,0.572203,0.95956,0.186765,0.517137,0.897594,0.954024,0.167274,0.222425,0.546285,0.693768,0.0777866,0.650069,0.735558,0.738679,0.126662,0.0908695,0.0608841,0.514882,0.827497,0.51047,0.855728,0.234121,0.486585,0.453226,0.0914233,0.0924276,0.711151,0.0677094,0.324942,0.641492,0.00675005,0.100243,0.296034,0.54403,0.512546,0.664333,0.426268,0.884283,0.730491,0.0374232,0.215463,0.502505,0.625967,0.720439,0.849955,0.479216,0.128224,0.970227,0.255437,0.789011,0.45097,0.624247,0.838928,0.577887,0.22057,0.422101,0.605644,0.96818,0.456505,0.657304,0.5359,0.890585,0.62246,0.919064,0.182673,0.680939,0.480562,0.639365,0.578388,0.863322,0.4827,0.408964,0.97708,0.0803255,0.323948,0.893765,0.0218242,0.403051,0.650237,0.528202,0.575415,0.839856,0.205823,0.704305,0.976189,0.482531,0.315037,0.535056,0.572504,0.0378404,0.329976,0.179342,0.481828,0.389456,0.388198,0.049364,0.964845,0.806057,0.888071,0.636446,0.976419,0.568562,0.498411,0.237241,0.420991,0.87426,0.463853,0.220039,0.260152,0.0806262,0.64571,0.0923526,0.377051,0.801683,0.352557,0.654387,0.403352,0.345045,0.3764,0.539515,0.313863,0.139985,0.344743,0.529732,0.893302,0.112083,0.736347,0.0459724,0.114375,0.652111,0.768379,0.420999,0.470147,0.23378,0.993726,0.0968533,0.0943117,0.0527077,0.232531,0.490164,0.18731,0.0145761,0.775322,0.229948,0.650603,0.0398449,0.589666,0.623084,0.479347,0.137691,0.094943,0.342762,0.459208,0.317897,0.812157,0.226563,0.176595,0.97948,0.699844,0.0876313,0.365485,0.0923594,0.478338,0.295499,0.332005,0.4255,0.00105619,0.159407,0.450057,0.673676,0.0978616,0.729307,0.180461,0.798733,0.776691,0.388519,0.548945,0.196207,0.297609,0.158767,0.419968,0.794832,0.916366,0.771497,0.0489696,0.231051,0.589737,0.252826,0.883083,0.48057,0.45721,0.685053,0.47652,0.79859,0.718266,0.828324,0.79415,0.850917,0.700532,0.672507,0.523688,0.8707,0.719193,0.773816,0.159013,0.0143124,0.76619,0.520775,0.297747,0.980291,0.526494,0.87263,0.680004,0.909893,0.122929,0.723502,0.640237,0.819077,0.268192,0.871509,0.626323,0.923236,0.0662906,0.938853,0.790255,0.279437,0.606026,0.596217,0.826612,0.313086,0.368361,0.0392638,0.559708,0.765279,0.466172,0.731027,0.278905,0.0728213,0.866381,0.684064,0.694193,0.783068,0.015642,0.826723,0.652397,0.835164,0.865029,0.428736,0.702566,0.802289,0.379886,0.0812372,0.0560311,0.718229,0.870265,0.0870693,0.417509,0.744438,0.527237,0.351544,0.39473,0.22697,0.863825,0.57947,0.0604575,0.317707,0.786396,0.859329,0.309812,0.165087,0.409711,0.292819,0.531134,0.162416,0.839799,0.640668,0.0916281,0.781042,0.370397,0.169799,0.178839,0.274269,0.662428,0.50093,0.478083,0.572524,0.309421,0.408931,0.79942,0.919761,0.403128,0.200916,0.601361,0.887494,0.875508,0.545144,0.782409,0.941095,0.727186,0.742306,0.219924,0.775159,0.76734,0.516103,0.316686,0.25742,0.781216,0.546922,0.684316,0.438208,0.72945,0.74797,0.0469118,0.424749,0.722951,0.299355,0.972913,0.822687,0.5846,0.693876,0.118657,0.721888,0.972339,0.800964,0.427654,0.0800728,0.749644,0.46201,0.160509,0.356641,0.230217,0.0112138,0.32952,0.582827,0.812176,0.524532,0.371382,0.918623,0.608957,0.587808,0.314064,0.41746,0.239984,0.783256,0.172095,0.312993,0.251839,0.610549,0.231437,0.541502,0.0585031,0.264869,0.00236398,0.906847,0.307663,0.589021,0.649878,0.185498,0.774477,0.497788,0.765336,0.320556,0.668807,0.691463,0.542578,0.643184,0.833847,0.9332,0.834468,0.587934,0.399826,0.350766,0.472424,0.272844,0.841304,0.251255,0.159272,0.498404,0.166285,0.256267,0.874426,0.280498,0.488529,0.795473,0.544793,0.182134,0.469979,0.590927,0.86267,0.757036,0.333269,0.894051,0.761816,0.404046,0.908874,0.411979,0.981573,0.567264,0.0020045,0.304334,0.381962,0.202813,0.232638,0.689029,0.365345,0.226156,0.977472,0.460898,0.501522,0.611787,0.0633494,0.479773,0.139832,0.887102,0.419526,0.495434,0.437448,0.971006,0.734876,0.63947,0.241015,0.949329,0.8093,0.283785,|0.441753,0.0733747,0.115731,0.244476,0.226255,0.769533,0.336207,0.022545,0.78061,0.211891,0.589836,0.734787,0.917368,0.0725831,0.781389,0.244947,0.539172,0.614967,0.940179,0.397642,0.242567,0.470209,0.441257,0.884797,0.123288,0.881511,0.737101,0.305745,0.9292,0.561426,0.390798,0.795507,0.687444,0.406042,0.137473,0.0102599,0.265887,0.299152,0.655339,0.931839,0.0743197,0.538488,0.944858,0.962201,0.36164,0.294955,0.53853,0.412684,0.946405,0.166954,0.847094,0.351405,0.329578,0.474448,0.222098,0.197187,0.993492,0.356515,0.360963,0.940106,0.74385,0.165495,0.0579596,0.185497,0.349184,0.305633,0.574587,0.190198,0.999942,0.853113,0.624528,0.32995,0.449033,0.031009,0.183543,0.957042,0.520609,0.079392,0.415798,0.177928,0.273698,0.233462,0.579267,0.208668,0.657934,0.0426659,0.491165,0.89894,0.839172,0.43562,0.658106,0.36545,0.380587,0.717669,0.34437,0.123268,0.102628,0.576937,0.94422,0.467707,0.831778,0.216093,0.684635,0.79209,0.433744,0.778288,0.0129164,0.260091,0.66902,0.370717,0.330505,0.298363,0.00485301,0.771261,0.96448,0.842909,0.34485,0.736955,0.94869,0.534913,0.870015,0.641791,0.927682,0.492368,0.758581,0.910859,0.561917,0.0100183,0.633631,0.424308,0.358649,0.386672,0.260966,0.396455,0.541273,0.590639,0.205278,0.71965,0.0147201,0.663779,0.144083,0.977295,0.482419,0.578565,0.478833,0.951297,0.000436246,0.473138,0.329556,0.0616531,0.027467,0.397011,0.860987,0.633077,0.230902,0.59855,0.288341,0.309844,0.825843,0.65646,0.353523,0.382778,0.122993,0.833322,0.614676,0.366892,0.317437,0.464456,0.154382,0.380883,0.948918,0.566826,0.0757609,0.79215,0.513678,0.746177,0.977029,0.813581,0.547673,0.387299,0.409832,0.909862,0.122844,0.83664,0.107814,0.392824,0.261165,0.626852,0.751695,0.188942,0.0915951,0.313648,0.210615,0.28689,0.423117,0.593806,0.866661,0.871829,0.858009,0.470238,0.301463,0.676519,0.232482,0.438206,0.0478479,0.266351,0.0876409,0.48442,0.869602,0.210371,0.910283,0.751935,0.0801275,0.00325507,0.843995,0.422029,0.630282,0.759303,0.439115,0.405524,0.982943,0.159564,0.549572,0.223695,0.675638,0.132384,0.298514,0.771872,0.69143,0.958188,0.619266,0.991886,0.477202,0.594306,0.0471979,0.791355,0.771112,0.828258,0.375135,0.224133,0.374792,0.545822,0.791323,0.118644,0.320464,0.0566892,0.556578,0.265332,0.447185,0.181466,0.83593,0.356906,0.973222,0.127288,0.172563,0.364746,0.315501,0.182606,0.603668,0.365669,0.96422,0.558984,0.496692,0.019496,0.246072,0.718658,0.43829,0.36517,0.877248,0.0565438,0.907686,0.136505,0.00619477,0.52021,0.575186,0.849795,0.409641,0.483376,0.312131,0.821875,0.845639,0.949221,0.58135,0.258219,0.898937,0.117414,0.191864,0.00755322,0.339045,0.587348,0.58801,0.697944,0.704054,0.944273,0.702868,0.273011,0.775599,0.0571716,0.9083,0.572136,0.187643,0.358421,0.947144,0.483041,0.939479,0.62878,0.639555,0.0949646,0.628917,0.901805,0.832227,0.262808,0.0082826,0.615867,0.304388,0.632146,0.00922418,0.546153,0.0780939,0.43347,0.176502,0.663865,0.540485,0.496372,0.831693,0.279358,0.771353,0.740389,0.226951,0.913286,0.683972,0.499044,0.325898,0.338953,0.173673,0.932003,0.493721,0.052909,0.261075,0.853917,0.610609,0.54178,0.907739,0.212072,0.883766,0.453445,0.952036,0.767228,0.750404,0.454846,0.551608,0.568986,0.925978,0.444753,0.993299,0.918808,0.313424,0.591681,0.305694,0.543273,0.719089,0.474501,0.35122,0.0666055,0.411972,0.618763,0.468709,0.249673,0.0543451,0.10956,0.287062,0.255238,0.706705,0.820647,0.141175,0.321418,0.888303,0.041548,0.986849,0.394337,0.832987,0.790032,0.6101,0.00418389,0.20829,0.876207,0.633703,0.52164,0.897491,0.149524,0.254646,0.215097,0.307463,0.126188,0.683315,0.1364,0.466162,0.520139,0.832134,0.399147,0.781351,0.311574,0.921149,0.0468763,0.677556,0.422266,0.997689,0.860775,0.854626,0.416311,0.123755,0.650273,0.368526,0.93453,0.69645,0.957603,0.236365,0.616559,0.0527883,0.920706,0.0993043,0.398922,0.38777,0.00470227,0.207411,0.551703,0.462526,0.731269,0.721364,0.611689,0.6264,0.251224,0.450889,0.672011,0.829609,0.918262,0.538228,0.298301,0.180244,0.0335067,0.921141,0.227941,0.608412,0.294114,0.000901163,0.487032,0.965722,0.755584,0.960198,0.835089,0.727287,0.81817,0.610515,0.696736,0.291513,0.373739,0.254554,0.18868,0.680813,0.932939,0.549401,0.605341,0.397892,0.423291,0.140157,0.27706,0.420936,0.679591,0.665731,0.0131526,0.730854,0.334053,0.26336,0.38762,0.281223,0.59994,0.473911,0.550085,0.297148,0.500326,0.94889,0.68087,0.0563063,0.726137,0.216091,0.297162,0.8535,0.359101,0.0241474,0.654251,0.0118492,0.726219,0.892008,0.298051,0.0318578,0.737452,0.595282,0.263771,0.591163,0.635625,0.348405,0.598055,0.935202,0.19247,0.932079,0.560981,0.921002,0.484752,0.967111,0.866895,0.552181,0.197316,0.298754,0.871938,0.144153,0.0472754,0.420746,0.766568,0.921215,0.900988,0.869534,0.6384,0.502148,0.290746,0.414127,0.446975,0.811411,0.577466,0.105116,0.27726,0.991854,0.887734,0.758805,0.883684,0.889448,0.101627,0.698768,0.347987,0.656079,0.717188,0.918871,0.150956,0.0677713,0.295208,0.76617,0.100775,0.980915,0.745798,0.29525,0.055397,0.357653,0.356318,0.834657,0.837435,0.575328,0.0858017,0.640678,0.179905,0.736183,0.247568,0.836021,0.258809,0.579157,0.718892,0.659138,0.803524,0.713334,0.510644,0.473685,0.085226,0.459301,0.300871,0.0794861,0.986654,0.96231,0.474012,0.0627913,0.344014,0.263912,0.0242872,0.941711,0.204202,0.459689,0.171303,0.117401,0.428158,0.0791762,0.486375,0.895703,0.954693,0.206092,0.476773,0.752617,0.390979,0.31684,0.799163,0.824492,0.775201,0.853894,0.929731,0.0702118,0.125439,0.853842,0.969616,0.65782,0.726143,0.827176,0.649477,0.0352306,0.802355,0.82908,0.904777,0.123776,0.845884,0.252647,0.558759,0.0380079,0.151596,0.226285,0.504914,0.320219,0.353702,0.646908,0.56353,0.451971,0.523571,0.572295,0.48614,0.740227,0.06181,0.339123,0.436103,0.250466,0.871272,0.948334,0.281082,0.548742,0.35039,0.948665,0.331901,0.31208,0.961037,0.280836,0.564758,0.663952,0.375201,0.0859476,0.723925,0.0613115,0.576602,0.192797,0.737007,0.71218,0.73522,0.651735,0.324819,0.00955909,0.0201156,0.960465,0.736878,0.910498,0.647429,0.226376,0.297431,0.0303396,0.338278,0.217651,0.765424,0.193885,0.843144,0.315186,0.249182,0.148632,0.672284,0.10477,0.164915,0.791534,0.191312,0.207032,0.495614,0.995254,0.218821,0.829143,0.00802827,0.128638,0.908934,0.266951,0.731316,0.794476,0.726133,0.988577,0.437872,0.455121,0.17932,0.111942,0.158166,0.0707311,0.398365,0.591062,0.355856,0.773132,0.317972,0.201463,0.220345,0.407315,0.286199,0.439723,0.887461,0.0331989,0.577452,0.508735,0.559273,0.0706961,0.319059,0.0703473,0.703731,0.581217,0.904406,0.0295761,0.972772,0.0632559,0.914372,0.496625,0.767533,0.212209,0.205946,0.462862,0.0134152,0.118498,0.274931,0.0260864,0.918976,0.245803,0.331162,0.836979,0.961087,0.380149,0.58525,0.0772694,0.868887,0.940028,0.20949,0.902378,0.190433,0.986095,0.228719,0.272017,0.404752,0.780878,0.331484,0.434749,0.254537,0.312935,0.578086,0.158099,0.48601,0.252988,0.103135,0.566815,0.728785,0.602988,0.617939,0.942737,0.0525824,0.659004,0.0847274,0.0141515,0.970225,0.137366,0.95471,0.550334,0.284106,0.5681,0.366754,0.399188,0.563211,0.445992,0.582449,0.207787,0.347759,0.709909,0.165178,0.882022,0.67392,0.553923,0.626248,0.356125,0.576642,0.608051,0.1868,0.809973,0.0159209,0.186219,0.879062,0.687874,0.914465,0.176692,0.0727087,0.249503,0.769252,0.173798,0.213138,0.334266,0.996626,0.885168,0.0888516,0.218893,0.355932,0.526179,0.140952,0.44049,0.889826,0.746007,0.834258,0.93202,0.350501,0.35257,0.211275,0.639361,0.218849,0.124609,0.108372,0.315487,0.223885,0.376759,0.620021,0.467565,0.593342,0.875646,0.708743,0.440221,0.446668,0.297885,0.747932,0.485303,0.197523,0.0978069,0.751053,0.931409,0.173467,0.889098,0.340801,0.957013,0.481294,0.0510131,0.572267,0.25345,0.957449,0.731115,0.231024,0.581014,0.0277725,0.682838,0.265861,0.0652305,0.68382,0.177335,0.471399,0.149825,0.84963,0.587509,0.127597,0.924259,0.926954,0.259024,0.121683,0.891007,0.823966,0.31306,0.927406,0.69882,0.640559,0.979273,0.920863,0.505248,0.147162,0.530717,0.384406,0.667589,0.215507,0.943077,0.281013,0.217455,0.146815,0.139472,0.987432,0.042016,0.669912,0.896725,0.205649,0.49096,0.0608009,0.403271,0.0705086,0.525465,0.458016,0.433962,0.00200534,0.983477,0.390477,0.720074,0.668274,0.130936,0.686109,0.330016,0.474448,0.427496,0.825668,0.295613,0.294431,0.863569,0.476675,0.453244,0.142979,0.489137,0.408929,0.0882041,0.139913,0.799605,0.0140681,0.992475,0.743212,0.179907,0.506255,0.241361,0.262001,0.144522,0.0892011,0.198591,0.989,0.933307,0.629074,0.901941,0.219674,0.652121,0.906447,0.363824,0.653605,0.667915,0.72065,0.139905,0.8661,0.458549,0.180736,0.27436,0.763502,0.143787,0.325057,0.811213,0.0659849,0.899417,0.168179,0.282255,0.78487,0.335033,0.579378,0.765075,0.567209,0.781231,0.51178,0.92318,0.690106,0.344571,0.945038,0.0605821,0.705413,0.0987965,0.654627,0.0539526,0.0473654,0.539597,0.171118,0.83901,0.749009,0.0501701,0.500252,0.89573,0.26867,0.284121,0.336785,0.40642,0.863914,0.572045,0.2438,0.440375,0.74025,0.780077,0.16619,0.339874,0.173627,0.185576,0.782235,0.207687,0.994604,0.660664,0.351848,0.976615,0.563524,0.234487,0.258749,|0.886689,0.318683,0.742727,0.179984,0.928719,0.861979,0.457494,0.867341,0.287485,0.778801,0.808045,0.613721,0.805129,0.249606,0.322636,0.470764,0.805173,0.316436,0.750432,0.302584,0.43976,0.563567,0.00949723,0.29414,0.486052,0.289101,0.835789,0.144898,0.751242,0.766343,0.389153,0.801383,0.227754,0.104996,0.325828,0.565711,0.933605,0.960767,0.152375,0.481458,0.672513,0.0110141,0.018243,0.577569,0.974586,0.826138,0.693945,0.330248,0.991475,0.236357,0.0232908,0.0586599,0.491651,0.567788,0.913644,0.83924,0.29198,0.86286,0.618169,0.472876,0.716911,0.783224,0.774063,0.802679,0.757006,0.227857,0.198624,0.303221,0.740224,0.125698,0.756595,0.694131,0.488899,0.844071,0.33922,0.610036,0.401271,0.590084,0.010147,0.98639,0.502423,0.43477,0.607085,0.0400525,0.211029,0.859672,0.820198,0.966772,0.912496,0.48644,0.889561,0.723178,0.660621,0.370837,0.537422,0.859984,0.320391,0.957783,0.161928,0.0467368,0.991497,0.913907,0.81536,0.81661,0.490265,0.181979,0.948295,0.701198,0.474055,0.62863,0.836815,0.771333,0.99905,0.77861,0.989114,0.794421,0.158906,0.243727,0.281103,0.0945792,0.201492,0.0963864,0.149918,0.121188,0.617001,0.110067,0.241918,0.389666,0.240154,0.482526,0.547841,0.378974,0.506459,0.672157,0.823399,0.670284,0.0577055,0.272528,0.384405,0.228889,0.717818,0.0166885,0.380008,0.609342,0.776681,0.398551,0.567167,0.074883,0.082178,0.155448,0.55556,0.0321233,0.845978,0.951516,0.32438,0.508252,0.0252339,0.676696,0.235777,0.507068,0.446605,0.21847,0.98295,0.970716,0.389077,0.179796,0.642528,0.903797,0.788173,0.469424,0.120691,0.588235,0.815482,0.390387,0.577996,0.181821,0.243188,0.872199,0.919838,0.0589488,0.298663,0.39252,0.49997,0.806318,0.905359,0.79699,0.0722128,0.0865429,0.336778,0.989591,0.12316,0.363368,0.286843,0.845012,0.916389,0.555294,0.443304,0.0613571,0.0197954,0.563502,0.070855,0.533345,0.655956,0.943865,0.59057,0.948721,0.725664,0.999509,0.482087,0.85907,0.982018,0.340117,0.169281,0.166031,0.646483,0.636953,0.533636,0.975658,0.271218,0.402644,0.927166,0.412273,0.229173,0.42285,0.339925,0.0959381,0.97869,0.1068,0.467991,0.0661787,0.00995904,0.732127,0.667401,0.657083,0.269948,0.385864,0.498676,0.340313,0.221688,0.11362,0.835073,0.675508,0.866529,0.90914,0.277983,0.0688264,0.750917,0.54195,0.406393,0.327127,0.0581452,0.58534,0.967375,0.483454,0.834031,0.464844,0.283743,0.261059,0.776362,0.314427,0.0973414,0.501345,0.395947,0.454425,0.459168,0.308151,0.265508,0.496379,0.0832748,0.997265,0.803855,0.911759,0.0257671,0.799444,0.971592,0.872769,0.790727,0.265079,0.864154,0.668471,0.275653,0.436055,0.326247,0.359188,0.274496,0.396633,0.298199,0.0992537,0.0139964,0.387739,0.161113,0.672699,0.960825,0.330297,0.430725,0.996453,0.659579,0.0321845,0.92769,0.439806,0.210752,0.861814,0.308168,0.704492,0.491297,0.453056,0.886034,0.626589,0.802644,0.0524545,0.174703,0.195589,0.878973,0.313921,0.64594,0.432282,0.0487458,0.756859,0.471708,0.642848,0.426437,0.561296,0.0639527,0.94842,0.837176,0.452941,0.545094,0.325969,0.445814,0.630788,0.00746602,0.284531,0.730581,0.0450481,0.77329,0.451434,0.0672274,0.605237,0.25527,0.962946,0.827378,0.937465,0.232167,0.903528,0.0934989,0.695364,0.905545,0.244697,0.429373,0.0153056,0.564114,0.719264,0.526602,0.0775872,0.0107443,0.17227,0.671116,0.707219,0.37403,0.936184,0.45081,0.888201,0.0577947,0.485449,0.478932,0.644038,0.495215,0.597254,0.194724,0.31463,0.671909,0.24764,0.526902,0.802383,0.408185,0.459524,0.485611,0.33465,0.173664,0.393326,0.419181,0.921617,0.239115,0.0305668,0.528945,0.732398,0.994383,0.463662,0.180599,0.0386745,0.0100587,0.788365,0.0759813,0.0856632,0.91415,0.0734112,0.685543,0.735634,0.327984,0.951431,0.37574,0.795434,0.495404,0.893028,0.821379,0.720717,0.0861078,0.843964,0.820055,0.90707,0.0875911,0.404071,0.835105,0.453974,0.0736033,0.579329,0.00595123,0.360286,0.243758,0.899658,0.0594243,0.981273,0.888826,0.815389,0.145883,0.15557,0.107318,0.0809742,0.684657,0.406233,0.188208,0.836638,0.182264,0.642208,0.249927,0.722763,0.221673,0.781264,0.702563,0.336313,0.245362,0.727121,0.470222,0.34808,0.627236,0.852197,0.891554,0.822062,0.463464,0.743893,0.0547206,0.337629,0.491513,0.728556,0.934666,0.213169,0.630367,0.532181,0.763418,0.286197,0.268546,0.694291,0.653016,0.226127,0.11517,0.721195,0.756079,0.837496,0.811768,0.557831,0.495923,0.2733,0.580873,0.802744,0.856755,0.446731,0.756105,0.984322,0.0875329,0.065367,0.418582,0.806795,0.537469,0.231344,0.334098,0.828093,0.821345,0.708145,0.960912,0.317958,0.420632,0.979945,0.295505,0.179935,0.81066,0.317965,0.833618,0.424179,0.6717,0.0915447,0.221643,0.865488,0.4486,0.0505354,0.193261,0.545905,0.590829,0.943879,0.438261,0.501421,0.213585,0.105861,0.398207,0.730628,0.14664,0.242051,0.538302,0.720497,0.867021,0.486367,0.587479,0.434118,0.836313,0.0760571,0.851816,0.816688,0.0416173,0.115244,0.537475,0.991215,0.565273,0.282806,0.547749,0.750438,0.36873,0.242443,0.575575,0.64167,0.436309,0.833392,0.33466,0.198493,0.680989,0.613997,0.13138,0.76711,0.336126,0.333088,0.138091,0.836984,0.619763,0.0305748,0.798707,0.974721,0.17729,0.00341094,0.623714,0.0605296,0.462989,0.982547,0.817232,0.502885,0.626799,0.77873,0.443225,0.0551542,0.126365,0.203126,0.577639,0.34198,0.657812,0.816024,0.815979,0.533327,0.285872,0.276533,0.181663,0.822639,0.600813,0.688167,0.034263,0.250955,0.930025,0.369816,0.348246,0.544975,0.165809,0.477338,0.725444,0.546402,0.896912,0.441885,0.876558,0.256811,0.656771,0.766512,0.925161,0.173968,0.525333,0.35521,0.855885,0.136807,0.25832,0.145533,0.732034,0.995523,0.491543,0.644818,0.320156,0.0624312,0.592754,0.626181,0.49729,0.525482,0.314564,0.0226973,0.419142,0.205362,0.324448,0.475096,0.815733,0.575555,0.411469,0.400848,0.293002,0.123492,0.435268,0.0241824,0.145763,0.453727,0.0290298,0.640724,0.961003,0.278481,0.180936,0.956404,0.187475,0.762207,0.213955,0.935659,0.958751,0.0610172,0.180368,0.275291,0.67278,0.627313,0.796151,0.278576,0.388101,0.368792,0.290692,0.161381,0.825597,0.773171,0.638292,0.689271,0.20811,0.671972,0.257177,0.240903,0.972987,0.247224,0.197574,0.747762,0.104108,0.251222,0.349893,0.624711,0.382855,0.870717,0.838137,0.269969,0.689825,0.620517,0.394655,0.861916,0.831178,0.610509,0.624964,0.607977,0.195148,0.634403,0.368242,0.620376,0.177795,0.848813,0.0852679,0.872833,0.641799,0.236087,0.454869,0.378142,0.893219,0.248534,0.636408,0.243989,0.499463,0.687338,0.0998783,0.771671,0.33224,0.566325,0.854313,0.203347,0.449751,0.743384,0.563951,0.0224453,0.100394,0.796466,0.888372,0.884092,0.819676,0.691677,0.958401,0.992663,0.895863,0.771607,0.8829,0.244848,0.268252,0.148818,0.957868,0.276173,0.223367,0.452491,0.200541,0.437483,0.83691,0.89599,0.499042,0.887454,0.385026,0.267273,0.420696,0.0710113,0.0654777,0.219679,0.94258,0.0410839,0.864658,0.0727392,0.615813,0.734546,0.608272,0.974431,0.000236094,0.00364989,0.0707236,0.0812208,0.601641,0.0971622,0.846954,0.878308,0.533371,0.112959,0.764615,0.910459,0.297355,0.785456,0.661689,0.503756,0.232632,0.177109,0.977744,0.267204,0.438428,0.908786,0.0745206,0.146005,0.686845,0.808665,0.741264,0.71848,0.00606745,0.0523798,0.174678,0.202439,0.220914,0.526746,0.45158,0.370947,0.11092,0.94659,0.429145,0.515995,0.474207,0.961435,0.80508,0.358583,0.321538,0.160974,0.482971,0.43688,0.060746,0.503056,0.689094,0.226289,0.515633,0.159745,0.483735,0.922923,0.187361,0.0546284,0.457726,0.0946001,0.298065,0.5582,0.616336,0.337188,0.935799,0.883813,0.98834,0.71773,0.202134,0.299191,0.00166976,0.114562,0.145994,0.695737,0.429212,0.420954,0.957192,0.313738,0.823567,0.00238293,0.246468,0.585616,0.450974,0.840664,0.324118,0.0366454,0.107224,0.617193,0.827278,0.95309,0.979992,0.339019,0.66084,0.490595,0.7372,0.81629,0.929157,0.651481,0.327179,0.224342,0.827933,0.386937,0.645175,0.51136,0.545081,0.42694,0.368459,0.832787,0.791063,0.943639,0.0140002,0.156491,0.827539,0.695269,0.764332,0.87474,0.247004,0.0456765,0.482381,0.468734,0.830673,0.76574,0.470539,0.600924,0.305883,0.28532,0.289336,0.396367,0.222372,0.813564,0.00533485,0.347158,0.990575,0.788166,0.0593358,0.63236,0.482672,0.550794,0.213397,0.390744,0.955804,0.800361,0.110374,0.892039,0.557224,0.629358,0.114974,0.876553,0.403881,0.751552,0.109562,0.229679,0.504204,0.0801641,0.886253,0.059123,0.815806,0.173447,0.556248,0.804394,0.0694084,0.0928977,0.652385,0.859098,0.783769,0.190027,0.908956,0.351421,0.250647,0.947608,0.0839326,0.790708,0.462901,0.408397,0.549499,0.148965,0.196717,0.562568,0.417465,0.848938,0.812105,0.156706,0.171839,0.177274,0.358401,0.450372,0.284727,0.56327,0.949646,0.348653,0.459181,0.948061,0.320571,0.888745,0.959592,0.237814,0.00405693,0.176521,0.305476,0.443413,0.802136,0.0203663,0.418009,0.135328,0.989387,0.342425,0.571298,0.493572,0.987956,0.960646,0.788873,0.664151,0.810991,0.333041,0.168603,0.108818,0.0784589,0.322916,0.660775,0.946476,0.393192,0.585793,0.19934,0.749143,0.0442489,0.629395,0.472986,0.540261,0.695329,0.824286,0.516447,0.869475,0.000500083,0.248114,0.478382,0.219773,0.800879,0.263828,0.225288,0.982296,0.421921,0.0328017,0.101122,0.503007,0.342334,0.365095,0.114691,0.394091,0.59841,0.819813,0.391277,0.894226,0.451462,0.435602,|0.710424,0.861408,0.763141,0.413022,0.275006,0.879434,0.365261,0.514528,0.858072,0.762431,0.21443,0.331728,0.241123,0.0306631,0.466251,0.536061,0.293606,0.688535,0.102393,0.709305,0.278861,0.32052,0.0579622,0.655798,0.0389959,0.951001,0.0641337,0.771347,0.753223,0.682621,0.593478,0.540828,0.572349,0.167615,0.818336,0.733341,0.106885,0.923262,0.188824,0.0455476,0.759697,0.607679,0.798579,0.353548,0.639354,0.0344617,0.330575,0.504217,0.20777,0.140743,0.365268,0.966608,0.645406,0.19068,0.997264,0.226439,0.523165,0.310632,0.0797085,0.090975,0.946568,0.410612,0.26208,0.340458,0.931131,0.0712319,0.691738,0.864498,0.128235,0.748912,0.233483,0.409321,0.993915,0.940508,0.29384,0.583037,0.663183,0.818429,0.298353,0.954088,0.655809,0.875211,0.511279,0.0279104,0.991618,0.809414,0.626511,0.791975,0.222799,0.743947,0.198106,0.0466446,0.360398,0.484128,0.188819,0.389159,0.648256,0.507257,0.518993,0.0230742,0.532253,0.785109,0.0805341,0.739014,0.725724,0.541352,0.0306628,0.0338128,0.523971,0.832793,0.590579,0.0298273,0.640308,0.904952,0.486361,0.913406,0.826882,0.803796,0.494948,0.917927,0.659859,0.162735,0.37654,0.345101,0.736563,0.093672,0.882448,0.303398,0.480607,0.492872,0.598045,0.68549,0.587803,0.817641,0.337906,0.659707,0.208316,0.0882892,0.822594,0.226675,0.524695,0.972309,0.415303,0.316766,0.996631,0.910425,0.386028,0.861038,0.400028,0.740302,0.156738,0.776527,0.188866,0.190261,0.109625,0.693901,0.343699,0.834942,0.263946,0.71894,0.0177897,0.88215,0.51848,0.52064,0.844491,0.525959,0.726954,0.0569135,0.878828,0.747683,0.0731111,0.0181283,0.709315,0.878471,0.383734,0.989119,0.213135,0.211343,0.953935,0.314379,0.823028,0.689085,0.399892,0.552594,0.846989,0.0120921,0.564068,0.760866,0.0142373,0.184039,0.687854,0.586754,0.21726,0.695773,0.4005,0.631191,0.592288,0.407677,0.160608,0.843313,0.488818,0.972348,0.704844,0.481593,0.222828,0.147724,0.95954,0.940009,0.00658715,0.266122,0.51136,0.739945,0.0847231,0.686464,0.613322,0.710962,0.976947,0.951107,0.803184,0.974627,0.556183,0.743116,0.0426676,0.643232,0.49027,0.150715,0.571228,0.117536,0.0697124,0.683777,0.713847,0.975178,0.963874,0.963688,0.619072,0.651461,0.625115,0.792082,0.662698,0.807611,0.822305,0.355299,0.961258,0.431479,0.154232,0.99092,0.450149,0.311528,0.609517,0.263402,0.873082,0.961195,0.0812271,0.596817,0.0101694,0.306323,0.484815,0.828081,0.226077,0.389267,0.139741,0.59533,0.473469,0.469886,0.0243399,0.040127,0.403738,0.840369,0.0238628,0.410135,0.782303,0.746171,0.519061,0.505645,0.770592,0.202665,0.762381,0.10275,0.107442,0.777379,0.624412,0.803434,0.361252,0.867557,0.884883,0.341657,0.580609,0.297033,0.48631,0.621694,0.598237,0.159762,0.128504,0.894222,0.524734,0.813878,0.597234,0.848901,0.557109,0.530654,0.658387,0.113328,0.875787,0.74976,0.920624,0.772837,0.909267,0.724566,0.611265,0.282129,0.89236,0.656804,0.642392,0.403217,0.609383,0.498759,0.456053,0.415263,0.393778,0.2974,0.624057,0.538843,0.625687,0.116235,0.207691,0.248714,0.38663,0.745388,0.337119,0.220218,0.590296,0.832356,0.176533,0.0370941,0.100611,0.0190035,0.954662,0.332444,0.816704,0.00934821,0.580339,0.95057,0.590489,0.79234,0.0246571,0.0720786,0.00946432,0.120858,0.548069,0.675574,0.053321,0.374525,0.792403,0.136419,0.00740486,0.893228,0.469612,0.324335,0.559588,0.774766,0.287063,0.315054,0.706223,0.802551,0.266478,0.985972,0.0906039,0.997559,0.549022,0.962589,0.331563,0.300973,0.181325,0.703476,0.925688,0.228377,0.0253901,0.305539,0.606714,0.0876606,0.918688,0.503537,0.0579445,0.371953,0.0353,0.437208,0.73318,0.973987,0.294212,0.110803,0.355436,0.212021,0.612539,0.0225632,0.197985,0.910967,0.134304,0.0222842,0.175335,0.389898,0.0537246,0.322185,0.882729,0.0525233,0.19356,0.434033,0.411038,0.547482,0.857917,0.350331,0.0405722,0.757085,0.981926,0.99779,0.325114,0.970904,0.376999,0.369589,0.524876,0.136092,0.0525488,0.766299,0.498053,0.118886,0.469056,0.760701,0.302372,0.863606,0.617364,0.949926,0.319592,0.676343,0.0725089,0.888404,0.798618,0.694048,0.874681,0.991672,0.226236,0.55002,0.0145692,0.8794,0.307996,0.958054,0.498159,0.778821,0.212354,0.200974,0.675726,0.660387,0.460131,0.403195,0.363899,0.655374,0.910632,0.158963,0.767933,0.386242,0.734971,0.601199,0.0525725,0.869922,0.643475,0.546353,0.690371,0.18221,0.365739,0.854213,0.679209,0.544955,0.0845425,0.84367,0.880905,0.358128,0.17495,0.70275,0.136059,0.832147,0.0507057,0.226538,0.168099,0.345627,0.808574,0.61279,0.716578,0.891934,0.330616,0.608166,0.925327,0.905562,0.649821,0.5165,0.191686,0.828168,0.0979637,0.0103835,0.769003,0.621287,0.902317,0.747312,0.478858,0.442625,0.620558,0.488349,0.669218,0.560946,0.825358,0.31163,0.0883759,0.470974,0.774469,0.526287,0.420533,0.320114,0.899911,0.49318,0.918003,0.374112,0.215233,0.794343,0.36398,0.707579,0.0749385,0.342169,0.89744,0.314898,0.689545,0.324902,0.291293,0.00581968,0.41634,0.796863,0.176345,0.649079,0.425309,0.390777,0.388339,0.645712,0.905494,0.301004,0.217156,0.676423,0.365088,0.0549199,0.549974,0.892968,0.49227,0.985095,0.596944,0.152989,0.304701,0.0394939,0.503026,0.398584,0.981143,0.443036,0.778761,0.789994,0.24938,0.289246,0.841662,0.181526,0.680417,0.569733,0.484139,0.828202,0.214823,0.202708,0.597722,0.288779,0.206,0.820491,0.802242,0.619446,0.188133,0.707981,0.962326,0.806395,0.183307,0.940893,0.925147,0.823079,0.228872,0.18577,0.653878,0.433725,0.757115,0.325528,0.797683,0.762217,0.144476,0.646882,0.663486,0.569727,0.196328,0.745002,0.269444,0.623615,0.131058,0.0526333,0.730313,0.0665942,0.692975,0.961711,0.731069,0.429431,0.838144,0.306457,0.97067,0.837918,0.354001,0.692385,0.43109,0.194462,0.131935,0.398313,0.164811,0.751692,0.300343,0.361462,0.0411804,0.15227,0.0244705,0.424956,0.104792,0.616619,0.803369,0.836343,0.697505,0.894872,0.0798034,0.569225,0.898923,0.418984,0.624733,0.867723,0.592695,0.516028,0.629131,0.722364,0.786878,0.667786,0.417984,0.180938,0.362336,0.431354,0.687218,0.56982,0.724787,0.79265,0.606453,0.219332,0.223532,0.249297,0.18345,0.486671,0.568437,0.928055,0.482313,0.608862,0.713301,0.210059,0.0781509,0.554005,0.0774209,0.203681,0.525985,0.336757,0.66539,0.825519,0.516518,0.892276,0.978749,0.860545,0.96733,0.977169,0.238224,0.633115,0.586556,0.376371,0.404024,0.0755512,0.575172,0.666545,0.74931,0.832882,0.076703,0.16118,0.269138,0.892894,0.232281,0.386303,0.734896,0.789463,0.62255,0.555814,0.942399,0.923476,0.145069,0.741047,0.467717,0.97129,0.605989,0.3503,0.00852162,0.231549,0.865645,0.670942,0.545014,0.160837,0.0128549,0.911892,0.763539,0.678276,0.104529,0.231453,0.0359185,0.576469,0.0782307,0.304201,0.708355,0.663979,0.233467,0.742101,0.177266,0.0928102,0.860118,0.417115,0.774752,0.61744,0.55604,0.475684,0.235561,0.852515,0.724925,0.561989,0.906918,0.166932,0.25018,0.69381,0.340021,0.388953,0.0528656,0.365168,0.813916,0.748807,0.579113,0.966844,0.375466,0.0904629,0.237623,0.0576813,0.507285,0.896711,0.35704,0.590611,0.675583,0.379609,0.0471541,0.242512,0.950805,0.390018,0.0793636,0.849383,0.338363,0.896923,0.652004,0.746083,0.719081,0.796104,0.908009,0.0179621,0.509843,0.413795,0.997726,0.493361,0.535728,0.807774,0.418005,0.132218,0.391445,0.531992,0.195575,0.584991,0.327343,0.167141,0.618281,0.77801,0.389279,0.151735,0.543189,0.806826,0.707573,0.137628,0.301354,0.526234,0.765848,0.243498,0.426574,0.747521,0.778295,0.150536,0.669721,0.507706,0.143805,0.775763,0.284858,0.583498,0.292917,0.440113,0.385358,0.251409,0.911141,0.531589,0.5495,0.857684,0.281111,0.764434,0.749767,0.783926,0.174643,0.792474,0.113761,0.827739,0.455813,0.565255,0.103374,0.154086,0.951598,0.790666,0.780871,0.928495,0.839523,0.396065,0.501991,0.0386872,0.107097,0.153859,0.853552,0.748286,0.0195324,0.462021,0.542887,0.110866,0.357422,0.189474,0.142373,0.41715,0.0710834,0.0796893,0.125471,0.748819,0.53926,0.839172,0.908983,0.859301,0.669306,0.947991,0.0397518,0.99336,0.384255,0.649596,0.0846381,0.450254,0.69628,0.845397,0.975415,0.761407,0.190048,0.961498,0.384468,0.738785,0.677143,0.929799,0.881623,0.242789,0.647631,0.427177,0.118059,0.886661,0.667929,0.832715,0.65007,0.287483,0.171387,0.414824,0.0612667,0.504066,0.583348,0.766229,0.686583,0.622908,0.0745655,0.920732,0.0489749,0.16856,0.695372,0.441102,0.704004,0.104739,0.0968285,0.796468,0.191565,0.159624,0.254259,0.0346326,0.836574,0.0388977,0.743404,0.369308,0.68725,0.00966734,0.207659,0.375977,0.726107,0.849213,0.843976,0.0200233,0.596692,0.84685,0.90643,0.97381,0.560881,0.368771,0.282644,0.500493,0.955541,0.475496,0.486706,0.480307,0.153089,0.30365,0.238309,0.536371,0.213172,0.188897,0.296477,0.306715,0.645485,0.660796,0.0206196,0.387434,0.000510693,0.0556254,0.424825,0.368418,0.496125,0.836236,0.500503,0.375569,0.553282,0.768328,0.624919,0.555472,0.0384563,0.868601,0.894736,0.3262,0.422656,0.0839586,0.267668,0.0482962,0.249011,0.412627,0.476993,0.568959,0.786536,0.12222,0.692191,0.526262,0.974362,0.00919056,0.561668,0.175159,0.255885,0.491328,0.312388,0.193694,0.0994309,0.0953438,0.858888,0.418647,0.735168,0.186579,0.10804,0.309781,0.638796,0.747339,0.265665,0.333467,0.737785,0.281258,0.620007,0.763032,0.0467595,0.766406,0.785331,0.401295,0.680337,0.830849,|0.623868,0.434915,0.0771461,0.833251,0.393378,0.616001,0.907139,0.694486,0.248223,0.22454,0.821591,0.0969688,0.466119,0.930759,0.696171,0.0699549,0.771124,0.403609,0.0605078,0.00253403,0.410066,0.691773,0.522908,0.592233,0.00407922,0.225037,0.208013,0.806784,0.949893,0.305072,0.0223464,0.0491214,0.234901,0.955412,0.404778,0.0329443,0.853895,0.471744,0.40477,0.876369,0.687829,0.0922982,0.00897461,0.262814,0.581294,0.475449,0.545903,0.18583,0.0967077,0.461637,0.743237,0.226811,0.0474283,0.742597,0.375093,0.379782,0.251145,0.805967,0.311877,0.74743,0.345074,0.476782,0.53304,0.761444,0.86993,0.772335,0.204208,0.807268,0.559283,0.861094,0.306177,0.135296,0.500855,0.546245,0.355023,0.363491,0.615583,0.820683,0.259813,0.657148,0.97386,0.35369,0.936101,0.00930583,0.839386,0.384171,0.358299,0.729532,0.419784,0.183312,0.495696,0.708458,0.982691,0.918814,0.656047,0.465557,0.997923,0.626408,0.324236,0.229128,0.461087,0.209562,0.485495,0.152787,0.551392,0.0452931,0.0208054,0.420099,0.368452,0.617264,0.764891,0.563622,0.0377781,0.326037,0.31765,0.304136,0.0878972,0.473652,0.100656,0.659086,0.477817,0.615148,0.405637,0.666316,0.730472,0.748971,0.177276,0.0171146,0.257001,0.855199,0.398989,0.529781,0.580131,0.545457,0.42772,0.080843,0.144646,0.349397,0.567017,0.471866,0.221262,0.169682,0.963975,0.162677,0.995773,0.349695,0.755597,0.350919,0.452158,0.280985,0.585506,0.640493,0.347088,0.837127,0.621835,0.795407,0.40211,0.503128,0.47883,0.155281,0.903275,0.7824,0.845419,0.912543,0.557248,0.637957,0.469047,0.262751,0.304107,0.9061,0.385284,0.850744,0.0339134,0.872394,0.820827,0.846427,0.0166531,0.820588,0.6464,0.192018,0.477458,0.223926,0.715326,0.309042,0.469821,0.253675,0.605468,0.373989,0.0135486,0.996399,0.681234,0.581563,0.0457532,0.0222562,0.20418,0.713612,0.150003,0.364161,0.0407717,0.2106,0.545339,0.235937,0.798636,0.801739,0.936602,0.49512,0.490238,0.259327,0.710448,0.697187,0.153617,0.383417,0.250457,0.245952,0.68423,0.272797,0.79781,0.433844,0.37074,0.298092,0.140011,0.375646,0.000801384,0.680933,0.720613,0.64078,0.512936,0.19894,0.48995,0.923924,0.0424844,0.227268,0.191677,0.370126,0.473298,0.763277,0.655738,0.44838,0.495947,0.422853,0.351008,0.319689,0.133788,0.18359,0.720286,0.855525,0.703713,0.117739,0.934902,0.695135,0.246308,0.720679,0.93409,0.116123,0.110983,0.0985759,0.126048,0.598794,0.644208,0.0622468,0.725089,0.702031,0.151151,0.392856,0.449186,0.67483,0.500857,0.0124419,0.227716,0.107876,0.613389,0.208499,0.367973,0.850238,0.0293512,0.392106,0.386721,0.230785,0.963164,0.0670985,0.759533,0.733145,0.85201,0.472034,0.384018,0.168964,0.00316113,0.859322,0.534578,0.407097,0.182373,0.599889,0.368389,0.912998,0.960801,0.29699,0.0583038,0.409999,0.644275,0.637594,0.410675,0.236099,0.196968,0.581716,0.14118,0.0451718,0.245557,0.0435078,0.907249,0.48509,0.197078,0.76442,0.411517,0.203465,0.674895,0.697341,0.447293,0.147061,0.824299,0.201797,0.405833,0.295511,0.366709,0.76524,0.0932956,0.0962264,0.943362,0.095531,0.959343,0.596386,0.875397,0.895911,0.155177,0.840655,0.133942,0.10248,0.44164,0.200989,0.840881,0.847376,0.186392,0.0445974,0.910816,0.260794,0.897813,0.769278,0.510204,0.659358,0.127137,0.282034,0.830565,0.583927,0.557536,0.0660429,0.686382,0.850617,0.667752,0.737477,0.410434,0.618609,0.451937,0.143857,0.617794,0.662718,0.314214,0.153197,0.914451,0.798173,0.933011,0.0575391,0.14791,0.0448871,0.169397,0.0329177,0.510193,0.589006,0.0608729,0.501658,0.207435,0.831894,0.779498,0.393018,0.00600922,0.76537,0.0042147,0.301898,0.904143,0.432864,0.153991,0.409813,0.435601,0.993245,0.05678,0.309983,0.616763,0.837723,0.579115,0.977379,0.0172151,0.321953,0.616139,0.447444,0.126179,0.417392,0.54033,0.835157,0.294858,0.431856,0.138258,0.0175863,0.906291,0.668985,0.565581,0.458012,0.223366,0.516131,0.780088,0.866694,0.248059,0.451365,0.230491,0.326697,0.682499,0.213062,0.652303,0.322915,0.12834,0.494763,0.551723,0.394079,0.493016,0.479006,0.930836,0.856045,0.710239,0.638703,0.584167,0.782682,0.100263,0.312282,0.424141,0.251771,0.917139,0.836549,0.982238,0.17315,0.177444,0.809253,0.980028,0.790473,0.416834,0.0313289,0.559991,0.0689768,0.64094,0.520159,0.123632,0.763867,0.871344,0.219691,0.828733,0.446245,0.839466,0.427585,0.917327,0.794591,0.125441,0.0529299,0.38966,0.09927,0.706207,0.420067,0.425721,0.645386,0.819862,0.2464,0.156256,0.0641087,0.859533,0.948764,0.128023,0.668753,0.867437,0.421813,0.651995,0.358536,0.546967,0.356465,0.203342,0.53716,0.346143,0.792829,0.165405,0.0308818,0.586359,0.959344,0.693937,0.569658,0.559455,0.671024,0.496283,0.294107,0.77332,0.703473,0.977902,0.523944,0.14832,0.69162,0.965526,0.0804614,0.644232,0.553715,0.412727,0.305402,0.761629,0.609761,0.404016,0.331373,0.0811433,0.771568,0.859675,0.410334,0.456584,0.274976,0.901598,0.298999,0.966991,0.75703,0.669308,0.342438,0.359488,0.33797,0.989754,0.521068,0.424675,0.717116,0.34117,0.358659,0.170381,0.340601,0.365045,0.165913,0.616197,0.355853,0.779022,0.370616,0.366952,0.128177,0.120711,0.222966,0.802707,0.731208,0.166155,0.59853,0.937424,0.771204,0.138783,0.286477,0.945271,0.790009,0.580982,0.313648,0.584738,0.00146371,0.700599,0.611889,0.704562,0.400323,0.0760702,0.0676963,0.888887,0.0782717,0.487594,0.27339,0.0585571,0.732779,0.579321,0.288608,0.0078907,0.668531,0.665099,0.361027,0.646992,0.622534,0.44155,0.115083,0.257316,0.370044,0.287697,0.379766,0.297697,0.982896,0.0505562,0.951373,0.847559,0.171365,0.465697,0.868187,0.683745,0.966378,0.215271,0.997362,0.993968,0.53869,0.979788,0.577754,0.962,0.538413,0.33706,0.642181,0.596977,0.7302,0.894055,0.804531,0.486804,0.915843,0.848039,0.00155002,0.548788,0.111137,0.47264,0.752197,0.881149,0.595141,0.593124,0.659839,0.0745749,0.857933,0.748907,0.0710944,0.803505,0.0858527,0.202383,0.793062,0.77294,0.796873,0.830071,0.229785,0.512283,0.302209,0.760453,0.396299,0.906482,0.729882,0.265031,0.06458,0.10752,0.419814,0.659878,0.282551,0.84365,0.802734,0.563835,0.909175,0.536338,0.743401,0.510209,0.0648112,0.705574,0.255197,0.628821,0.232023,0.236102,0.203293,0.1299,0.158759,0.0490078,0.309598,0.73524,0.0148658,0.309286,0.925774,0.60525,0.888194,0.581936,0.286463,0.793303,0.847544,0.374218,0.103565,0.799747,0.129083,0.695526,0.624378,0.795729,0.632847,0.451636,0.732589,0.11964,0.138956,0.501253,0.211072,0.240477,0.329175,0.421191,0.520548,0.844492,0.379113,0.474375,0.953346,0.0436831,0.598057,0.120107,0.894852,0.199466,0.684017,0.700074,0.831154,0.715779,0.00511116,0.170248,0.125852,0.375641,0.445843,0.101625,0.477851,0.529761,0.892176,0.243901,0.440272,0.585562,0.221251,0.365132,0.0784833,0.0376787,0.16373,0.11956,0.471,0.0471927,0.395752,0.760631,0.273196,0.276863,0.27671,0.807131,0.46708,0.0216263,0.251767,0.719633,0.145479,0.918341,0.875994,0.209714,0.728191,0.0824429,0.233676,0.785473,0.552843,0.684161,0.138697,0.273962,0.188818,0.00263113,0.311556,0.283508,0.92696,0.487805,0.0412593,0.335482,0.660308,0.399273,0.0869973,0.871685,0.647817,0.944476,0.92089,0.950041,0.495258,0.408497,0.579588,0.805991,0.864413,0.495967,0.13215,0.138783,0.573367,0.334757,0.405476,0.6619,0.570287,0.895089,0.747781,0.857012,0.140723,0.814763,0.621689,0.962483,0.939287,0.8414,0.618789,0.814277,0.689824,0.419919,0.256177,0.602891,0.766251,0.722997,0.832925,0.487771,0.362485,0.69347,0.106941,0.753591,0.31253,0.182977,0.87527,0.605694,0.267516,0.0279157,0.241376,0.327263,0.53467,0.881154,0.122636,0.0087049,0.558169,0.307577,0.728943,0.903643,0.521279,0.197105,0.929249,0.871462,0.348116,0.369738,0.576108,0.757948,0.134742,0.183393,0.940448,0.60816,0.927977,0.0947766,0.764057,0.305411,0.0432242,0.74605,0.506088,0.98624,0.345288,0.16318,0.762463,0.339854,0.685852,0.936844,0.175962,0.906277,0.260101,0.59834,0.397729,0.717454,0.0258363,0.940584,0.110322,0.819271,0.720299,0.0383791,0.170746,0.123321,0.548915,0.139302,0.759539,0.311666,0.161644,0.011121,0.981899,0.193074,0.661124,0.884934,0.879226,0.401049,0.57248,0.273228,0.318901,0.238656,0.589716,0.997279,0.134448,0.449874,0.76223,0.48444,0.784614,0.881359,0.587501,0.706329,0.868607,0.294343,0.661012,0.934197,0.77531,0.0758206,0.23066,0.571874,0.223222,0.757891,0.523717,0.410384,0.284877,0.702822,0.587605,0.523421,0.119222,0.216958,0.724458,0.118942,0.0999032,0.961203,0.561126,0.912371,0.844218,0.0144757,0.576887,0.537218,0.382343,0.0854478,0.996807,0.207289,0.298929,0.599791,0.102457,0.462151,0.0945899,0.905033,0.751713,0.662151,0.809715,0.244381,0.728712,0.255124,0.737317,0.220631,0.736269,0.12958,0.215263,0.781834,0.42599,0.0813939,0.0983253,0.860262,0.125081,0.0729061,0.112229,0.181803,0.387636,0.548053,0.125732,0.290536,0.637678,0.570437,0.997069,0.926319,0.0117256,0.169315,0.539875,0.980095,0.326339,0.153791,0.511265,0.181209,0.908832,0.708218,0.320707,0.538462,0.62637,0.74614,0.12545,0.822137,0.892466,0.0390124,0.818596,0.112657,0.763718,0.872076,0.939781,0.527133,0.0330927,0.619945,0.307994,0.298412,0.263367,0.360306,0.797629,0.982263,0.943007,0.384592,0.223315,0.404656,0.134113,0.293894,0.657556,0.40585,0.510738,0.425738,0.155254,0.152436,0.66061,0.400932,0.348903,0.312795,0.382184,|0.842672,0.9646,0.254945,0.227789,0.267532,0.521052,0.797127,0.775814,0.932064,0.467887,0.161102,0.457854,0.605325,0.178261,0.197058,0.0182669,0.780519,0.87652,0.870118,0.525465,0.726265,0.228317,0.204267,0.820987,0.864449,0.174375,0.122662,0.634838,0.939456,0.920907,0.559972,0.613306,0.384257,0.308412,0.261306,0.202244,0.0228032,0.505206,0.430546,0.78185,0.588924,0.676097,0.917103,0.18697,0.99341,0.206763,0.753944,0.112089,0.0977571,0.0439383,0.720127,0.504868,0.883543,0.960547,0.468412,0.131404,0.177538,0.303226,0.422443,0.317407,0.121126,0.412679,0.0354394,0.0189636,0.713147,0.5778,0.934941,0.560768,0.634643,0.970132,0.941523,0.0713518,0.157248,0.5456,0.00809693,0.8866,0.542692,0.659935,0.835098,0.820503,0.313375,0.184371,0.0719314,0.45202,0.0558818,0.114421,0.739038,0.439756,0.734535,0.622563,0.183253,0.460953,0.985727,0.41921,0.316053,0.633645,0.425871,0.362382,0.564511,0.984042,0.681312,0.938313,0.187125,0.956929,0.623781,0.633597,0.00867879,0.825583,0.247579,0.317743,0.491152,0.685223,0.847256,0.755523,0.460477,0.904251,0.731496,0.880108,0.801158,0.500174,0.123192,0.495021,0.636679,0.0731671,0.355115,0.210204,0.360611,0.0174797,0.110911,0.452543,0.965721,0.0300851,0.186849,0.872469,0.414472,0.912391,0.330876,0.879897,0.272175,0.656479,0.0590786,0.0219647,0.768447,0.468094,0.318159,0.344978,0.369481,0.926581,0.553358,0.608332,0.542581,0.300698,0.956936,0.651276,0.883594,0.329957,0.753311,0.0321568,0.564981,0.496351,0.132775,0.587466,0.938523,0.472144,0.380692,0.453104,0.00336266,0.175537,0.71687,0.720089,0.585853,0.605953,0.126937,0.261353,0.697789,0.698236,0.533768,0.886311,0.366557,0.755897,0.354096,0.528673,0.377947,0.297761,0.0341172,0.398188,0.0248948,0.43383,0.880732,0.324217,0.171789,0.963515,0.572842,0.151626,0.518781,0.76116,0.566277,0.875415,0.44287,0.316495,0.261783,0.411499,0.93899,0.808612,0.970193,0.00371403,0.840126,0.981616,0.928477,0.204123,0.193987,0.785996,0.204218,0.947161,0.519212,0.453195,0.233093,0.744915,0.165626,0.384328,0.280425,0.669689,0.038917,0.604029,0.440813,0.476173,0.317213,0.74803,0.976824,0.0914038,0.644542,0.268652,0.0550432,0.105016,0.136604,0.950772,0.315776,0.277774,0.767675,0.643516,0.0519512,0.986127,0.736867,0.553288,0.555283,0.547495,0.761428,0.939016,0.106215,0.438729,0.315571,0.155126,0.98485,0.880856,0.757314,0.193943,0.00607932,0.100185,0.920896,0.65461,0.734289,0.711806,0.613159,0.662727,0.14827,0.647523,0.959435,0.740505,0.819719,0.820198,0.963231,0.190343,0.468846,0.484841,0.335674,0.618733,0.894902,0.815477,0.935621,0.616537,0.113487,0.342082,0.818485,0.0399607,0.649224,0.550619,0.804115,0.805129,0.356739,0.901421,0.638331,0.763076,0.474297,0.781244,0.615354,0.62726,0.141412,0.436579,0.930962,0.323054,0.146807,0.375675,0.779846,0.388632,0.872849,0.880214,0.24141,0.967463,0.195298,0.413635,0.0471645,0.11899,0.155958,0.2046,0.157683,0.125866,0.208521,0.63581,0.529258,0.83052,0.261292,0.172985,0.139306,0.718542,0.58827,0.221842,0.711529,0.86515,0.664766,0.387822,0.702481,0.194197,0.575867,0.644175,0.526087,0.0664728,0.275441,0.395133,0.923778,0.86952,0.131779,0.621601,0.808853,0.454291,0.485306,0.351021,0.124797,0.54424,0.158057,0.890942,0.35712,0.855939,0.216561,0.584976,0.158467,0.243006,0.546878,0.604479,0.287359,0.447499,0.0399113,0.745753,0.320542,0.663562,0.0592522,0.929962,0.391223,0.723104,0.223553,0.366529,0.540044,0.08356,0.0321721,0.18271,0.616341,0.921795,0.720939,0.858082,0.937323,0.426608,0.791947,0.649802,0.778665,0.352782,0.0179561,0.0631726,0.822245,0.635657,0.59744,0.783782,0.466463,0.679379,0.743272,0.538668,0.154809,0.604131,0.541843,0.0270931,0.804273,0.712363,0.370444,0.595116,0.946627,0.00184298,0.565133,0.106743,0.941614,0.660564,0.629341,0.751122,0.448665,0.317962,0.841398,0.930694,0.787237,0.204784,0.905589,0.384958,0.5403,0.993371,0.472058,0.36459,0.506859,0.936964,0.96777,0.489247,0.890608,0.484458,0.329951,0.353865,0.351501,0.377409,0.849743,0.861543,0.949338,0.303682,0.506352,0.451348,0.841693,0.965506,0.573386,0.588296,0.460015,0.882798,0.692051,0.209935,0.43071,0.302977,0.0856893,0.592769,0.233115,0.328262,0.406401,0.308306,0.847553,0.410739,0.492302,0.937951,0.92917,0.990753,0.864678,0.14995,0.544372,0.530874,0.838989,0.697595,0.694997,0.662617,0.500176,0.495563,0.752544,0.304787,0.803189,0.0321066,0.513923,0.205278,0.048822,0.397329,0.733754,0.494797,0.807864,0.72534,0.772315,0.263979,0.869513,0.666145,0.731888,0.60022,0.2265,0.344597,0.631374,0.967439,0.5796,0.613686,0.0317509,0.425221,0.936321,0.877621,0.177497,0.902478,0.0528267,0.417592,0.873431,0.901755,0.973588,0.672906,0.643634,0.0527569,0.0585915,0.430848,0.0438097,0.0774689,0.899222,0.52719,0.75291,0.84188,0.259118,0.619444,0.799023,0.73907,0.0224205,0.513282,0.456325,0.0691326,0.519475,0.503791,0.621876,0.599072,0.497372,0.778894,0.655154,0.203599,0.717647,0.0936808,0.714553,0.300857,0.263363,0.330936,0.790919,0.280988,0.972632,0.760699,0.472584,0.270782,0.588951,0.863909,0.775818,0.392594,0.340731,0.663851,0.15879,0.606745,0.952304,0.473732,0.673525,0.392443,0.60391,0.147194,0.255075,0.31229,0.802234,0.676165,0.332286,0.252659,0.391251,0.906429,0.659012,0.0152913,0.3353,0.228043,0.770986,0.174023,0.970753,0.961247,0.717934,0.556094,0.595915,0.854531,0.513015,0.050944,0.111098,0.771748,0.322989,0.940117,0.0137402,0.884947,0.993726,0.670253,0.50731,0.996638,0.72891,0.206637,0.88837,0.269319,0.27032,0.714894,0.349325,0.690811,0.572777,0.76314,0.623669,0.608624,0.756252,0.535151,0.980321,0.78032,0.54671,0.647269,0.63295,0.583337,0.275398,0.34113,0.252327,0.646272,0.153827,0.623494,0.687452,0.125749,0.255989,0.926007,0.39006,0.214481,0.40458,0.201757,0.423403,0.630383,0.0659332,0.769777,0.5865,0.831648,0.987787,0.615114,0.381088,0.900216,0.405355,0.842618,0.399846,0.56297,0.280018,0.126619,0.182011,0.237252,0.391662,0.608546,0.81849,0.622402,0.985736,0.102826,0.806115,0.04584,0.784183,0.804382,0.0243043,0.988616,0.232748,0.542589,0.562497,0.0971604,0.980779,0.0940529,0.0293607,0.870898,0.74273,0.263303,0.459342,0.149199,0.846319,0.409738,0.318542,0.837475,0.356797,0.474798,0.21926,0.52253,0.472272,0.0996733,0.0574221,0.176879,0.198563,0.886607,0.74421,0.495912,0.381995,0.292515,0.785469,0.876573,0.949799,0.506331,0.773119,0.91605,0.347083,0.308935,0.819551,0.0274016,0.232094,0.439465,0.389897,0.403689,0.135106,0.835989,0.83493,0.113109,0.909901,0.207229,0.781792,0.654932,0.791912,0.552518,0.244924,0.88899,0.744103,0.317049,0.232784,0.998856,0.518633,0.129408,0.773002,0.434523,0.445477,0.733518,0.83192,0.820628,0.685359,0.216875,0.562642,0.586167,0.168719,0.534544,0.15243,0.592383,0.513484,0.787995,0.873593,0.543867,0.383243,0.325361,0.355504,0.286893,0.297038,0.475555,0.93672,0.92114,0.119931,0.413437,0.560762,0.832347,0.595368,0.274577,0.550366,0.0678571,0.565947,0.333067,0.964517,0.650765,0.65339,0.764962,0.268959,0.190616,0.291732,0.110148,0.387058,0.0846997,0.534854,0.343121,0.740535,0.220193,0.499487,0.854309,0.411697,0.152303,0.45,0.893721,0.016643,0.494298,0.4601,0.176189,0.882252,0.323285,0.333957,0.74018,0.305401,0.965503,0.0688861,0.432509,0.924195,0.814229,0.378842,0.0210617,0.56952,0.971706,0.260837,0.0928197,0.50194,0.465179,0.75823,0.851094,0.667862,0.824106,0.551355,0.172739,0.757894,0.884579,0.0216455,0.0778398,0.92366,0.171692,0.406276,0.0491251,0.686107,0.607999,0.760907,0.819939,0.320657,0.217866,0.887959,0.306323,0.592831,0.317975,0.160913,0.66122,0.234372,0.421885,0.230763,0.364807,0.416615,0.335863,0.786605,0.096082,0.791705,0.511104,0.322845,0.858126,0.348252,0.890734,0.957123,0.840769,0.460923,0.917182,0.707926,0.0397497,0.0320328,0.234047,0.585206,0.695912,0.877333,0.314415,0.155049,0.3773,0.871089,0.19484,0.82938,0.815248,0.262032,0.0375847,0.396733,0.854158,0.552791,0.215286,0.0587667,0.853777,0.130398,0.0367144,0.610479,0.0145549,0.46415,0.0466524,0.824732,0.327616,0.623804,0.6937,0.0577904,0.448357,0.245744,0.518642,0.310134,0.635191,0.83683,0.367152,0.864511,0.901095,0.158178,0.845825,0.095605,0.0247351,0.391555,0.672277,0.506908,0.270344,0.528818,0.211168,0.964988,0.559322,0.0481884,0.150028,0.531964,0.026284,0.691958,0.652011,0.683473,0.588728,0.187919,0.0914284,0.082101,0.993139,0.274592,0.0632507,0.496712,0.0918231,0.059506,0.19736,0.699986,0.730283,0.667001,0.898514,0.761113,0.576265,0.425809,0.366634,0.530826,0.425926,0.601919,0.6546,0.844423,0.108134,0.20248,0.418598,0.837148,0.542583,0.505607,0.269323,0.75227,0.761767,0.763944,0.503024,0.629081,0.332315,0.881031,0.106258,0.550955,0.277892,0.00214189,0.607321,0.236375,0.184744,0.558402,0.69081,0.803398,0.0443232,0.655774,0.402362,0.963852,0.932198,0.407153,0.269746,0.0117708,0.6888,0.911966,0.801835,0.846387,0.457747,0.0786436,0.691424,0.629445,0.260528,0.0362954,0.1082,0.876623,0.187978,0.789567,0.0615436,0.403249,0.086327,0.696717,0.862315,0.619639,0.103535,0.977479,0.333534,0.12041,0.514843,0.25005,0.653371,0.775429,0.649612,0.719126,0.0939773,0.0756122,0.789518,0.953049,0.277129,0.453498,0.657224,0.592062,0.353045,0.927603,0.350096,0.468887,0.146796,0.774116,0.82284,|0.402642,0.875235,0.530072,0.10288,0.558633,0.984264,0.402516,0.565325,0.363149,0.627236,0.481746,0.528326,0.401628,0.533276,0.0976385,0.565896,0.161147,0.182303,0.119827,0.763322,0.554251,0.741002,0.998808,0.667517,0.423051,0.607188,0.522473,0.684995,0.878544,0.597888,0.652997,0.119771,0.0931036,0.256721,0.904439,0.861133,0.41723,0.643785,0.565635,0.266104,0.0131994,0.491054,0.240144,0.37146,0.69663,0.151428,0.920616,0.749911,0.163293,0.600592,0.553736,0.282592,0.0216457,0.567322,0.225562,0.28141,0.682365,0.642519,0.125388,0.0507244,0.72358,0.529155,0.400838,0.887992,0.857572,0.988427,0.765026,0.305447,0.135242,0.801008,0.802967,0.971444,0.198763,0.681707,0.180543,0.153604,0.884459,0.148463,0.680109,0.0376516,0.637677,0.391341,0.43027,0.625914,0.976932,0.769264,0.533202,0.608983,0.0847556,0.209614,0.536397,0.929874,0.905204,0.444359,0.159581,0.180181,0.639707,0.302535,0.281317,0.160437,0.449703,0.898848,0.0343112,0.267958,0.731888,0.664808,0.49546,0.69686,0.54691,0.0300754,0.706642,0.00836021,0.654054,0.929578,0.112702,0.29095,0.359627,0.945725,0.546716,0.121365,0.832896,0.212865,0.968793,0.308487,0.180205,0.919849,0.577288,0.541897,0.485376,0.721968,0.71351,0.416176,0.0172894,0.993186,0.649847,0.905465,0.705555,0.303372,0.156146,0.208035,0.395805,0.11479,0.995252,0.0415249,0.088697,0.942414,0.706763,0.537568,0.600875,0.322469,0.890205,0.398112,0.0112481,0.0154569,0.978373,0.722803,0.625358,0.203747,0.415876,0.249245,0.0995682,0.456421,0.8703,0.766395,0.815247,0.719267,0.799507,0.891024,0.843035,0.851091,0.00291485,0.131795,0.0674474,0.0902992,0.686565,0.943682,0.102021,0.502537,0.725173,0.500156,0.910745,0.687949,0.898443,0.789012,0.606479,0.63073,0.880274,0.737173,0.509697,0.827662,0.32776,0.542293,0.0486516,0.221764,0.129167,0.839724,0.951973,0.015447,0.257729,0.0953615,0.455713,0.379051,0.682061,0.15714,0.886759,0.434019,0.510726,0.97289,0.62458,0.629201,0.878612,0.360764,0.333258,0.598808,0.0236698,0.743188,0.769487,0.661172,0.883143,0.956412,0.258009,0.74271,0.345207,0.542359,0.91967,0.536186,0.480358,0.360156,0.348421,0.730003,0.533556,0.514832,0.142211,0.0539429,0.156925,0.978637,0.0236871,0.281987,0.758478,0.893651,0.800669,0.777908,0.112182,0.219202,0.345921,0.455096,0.18984,0.232567,0.53834,0.51826,0.470763,0.87528,0.969374,0.837888,0.946616,0.181115,0.284127,0.898695,0.673976,0.387799,0.945173,0.441515,0.237831,0.781122,0.170708,0.771623,0.54564,0.251836,0.358243,0.166295,0.41668,0.4128,0.399559,0.932634,0.304676,0.158783,0.790195,0.152258,0.00971413,0.51504,0.643375,0.935293,0.511456,0.687269,0.934168,0.732013,0.42159,0.657209,0.388744,0.584335,0.792455,0.428852,0.602957,0.366157,0.897357,0.409665,0.241574,0.318006,0.372097,0.0892962,0.0529081,0.348904,0.953323,0.968913,0.0622696,0.306833,0.0812418,0.161782,0.0798664,0.535662,0.149711,0.501697,0.663211,0.594595,0.290649,0.945279,0.752159,0.307851,0.486555,0.0971527,0.396586,0.367694,0.0579473,0.184799,0.151836,0.477513,0.665673,0.85425,0.644054,0.186213,0.20869,0.104152,0.958088,0.404973,0.0909117,0.414688,0.641026,0.536215,0.334416,0.346711,0.328378,0.419551,0.912385,0.501325,0.835717,0.857169,0.773396,0.144023,0.261119,0.942703,0.866178,0.873941,0.50521,0.284566,0.886267,0.500017,0.0221061,0.419103,0.337743,0.27205,0.382236,0.112302,0.879235,0.581924,0.673464,0.767907,0.671341,0.566933,0.130298,0.854884,0.910326,0.832879,0.847782,0.216633,0.891576,0.0243778,0.72703,0.305219,0.552835,0.639248,0.839198,0.177072,0.003016,0.917696,0.752735,0.434838,0.246916,0.440151,0.362929,0.190825,0.933214,0.173092,0.0419266,0.720402,0.766701,0.170485,0.783083,0.106123,0.264964,0.177261,0.40172,0.328791,0.482746,0.615991,0.369328,0.77482,0.348945,0.00234735,0.0603393,0.175272,0.996203,0.819408,0.262561,0.124924,0.0321562,0.369107,0.794087,0.0530608,0.348245,0.771058,0.725781,0.450465,0.377476,0.293176,0.659323,0.0574666,0.679354,0.606218,0.699347,0.265073,0.803465,0.384415,0.716951,0.707169,0.955483,0.344249,0.511222,0.416391,0.720222,0.449615,0.173083,0.33758,0.0805104,0.452485,0.423857,0.274602,0.528936,0.205825,0.973858,0.181342,0.529777,0.142242,0.614209,0.640633,0.251185,0.521299,0.729648,0.0202415,0.147671,0.619276,0.434421,0.242785,0.0154397,0.647679,0.322002,0.138869,0.925452,0.371682,0.36914,0.881679,0.497396,0.368867,0.108557,0.600084,0.276092,0.58739,0.0647274,0.641371,0.901393,0.281218,0.386081,0.153541,0.828092,0.874646,0.0780433,0.510193,0.462036,0.505687,0.953735,0.872776,0.787109,0.0121316,0.915341,0.291503,0.0384367,0.925073,0.90536,0.43562,0.230121,0.0965582,0.405544,0.411804,0.916879,0.487117,0.314757,0.280774,0.840958,0.0119242,0.206982,0.994565,0.990443,0.338004,0.587685,0.707463,0.291971,0.561387,0.934153,0.572024,0.458668,0.690953,0.79683,0.602269,0.237922,0.127777,0.740054,0.205797,0.597933,0.131784,0.519094,0.941482,0.192799,0.986474,0.351953,0.766673,0.162227,0.393171,0.0705307,0.780381,0.459659,0.0416967,0.116334,0.991221,0.962631,0.512515,0.251299,0.616561,0.111831,0.480843,0.510408,0.580175,0.864966,0.0850747,0.717314,0.140099,0.252681,0.763427,0.324795,0.42337,0.245718,0.0909037,0.208499,0.976297,0.855037,0.842734,0.336711,0.712444,0.168806,0.250605,0.646157,0.918187,0.804841,0.0590783,0.863777,0.367554,0.461935,0.305436,0.547686,0.325322,0.0990548,0.250481,0.245516,0.0481095,0.930629,0.67758,0.524843,0.760165,0.215331,0.471757,0.51053,0.712323,0.838717,0.693179,0.652753,0.243793,0.358526,0.288599,0.156505,0.375864,0.544614,0.916345,0.589307,0.0495653,0.592203,0.650189,0.0325623,0.622664,0.561521,0.812426,0.165508,0.0911781,0.248742,0.0892025,0.54586,0.859362,0.292278,0.768902,0.722971,0.962253,0.638998,0.054454,0.845678,0.234278,0.0777276,0.0159983,0.211666,0.933068,0.663213,0.710668,0.113475,0.659856,0.0753478,0.661229,0.316245,0.592207,0.986471,0.239583,0.00671238,0.854865,0.484733,0.901353,0.857476,0.918139,0.472788,0.851963,0.796221,0.387682,0.5709,0.52146,0.00418317,0.312253,0.809504,0.150411,0.859707,0.519917,0.881929,0.899187,0.196003,0.374526,0.673437,0.836227,0.102026,0.0782413,0.882075,0.410741,0.814989,0.527861,0.549056,0.232177,0.384426,0.518741,0.132619,0.61766,0.110093,0.547755,0.865312,0.0406337,0.215934,0.617159,0.294447,0.502688,0.642929,0.90262,0.15516,0.0183915,0.658251,0.902311,0.30479,0.735555,0.532232,0.772163,0.397122,0.154135,0.364461,0.514827,0.199456,0.531655,0.104651,0.818605,0.972198,0.0313537,0.265594,0.917226,0.378001,0.535716,0.418972,0.728555,0.592658,0.613275,0.444602,0.23757,0.744226,0.874948,0.499635,0.286837,0.127189,0.284656,0.247871,0.988216,0.387617,0.410831,0.497018,0.58673,0.383799,0.735883,0.614146,0.13884,0.949272,0.486328,0.746004,0.560663,0.446748,0.935081,0.341171,0.473913,0.212902,0.900475,0.247974,0.586981,0.343803,0.171805,0.914774,0.955391,0.101446,0.422799,0.363865,0.524095,0.989995,0.286967,0.150688,0.444656,0.594651,0.130962,0.622599,0.505939,0.153081,0.732832,0.376985,0.0962523,0.399996,0.0908056,0.268735,0.942281,0.789038,0.978945,0.484752,0.597239,0.490939,0.16293,0.00449973,0.202417,0.802289,0.992896,0.0493879,0.422972,0.745171,0.67992,0.060923,0.0420792,0.687326,0.961422,0.154985,0.101605,0.748967,0.779753,0.945484,0.93237,0.417612,0.306959,0.52498,0.0538373,0.42047,0.0482892,0.582489,0.804122,0.709104,0.725011,0.165989,0.267898,0.965732,0.878536,0.325325,0.118531,0.304327,0.467738,0.550389,0.532767,0.893261,0.150323,0.543653,0.778748,0.0468017,0.615387,0.0222345,0.562614,0.703766,0.0324326,0.237186,0.79897,0.922952,0.212074,0.134841,0.516159,0.22499,0.688743,0.0588822,0.429201,0.249049,0.361821,0.498415,0.989759,0.117704,0.785051,0.432671,0.0680425,0.838575,0.0178648,0.58502,0.122953,0.57453,0.109014,0.93263,0.500594,0.522525,0.171236,0.71497,0.917248,0.605498,0.80467,0.173857,0.432825,0.693726,0.295461,0.9457,0.644235,0.264871,0.825025,0.0304291,0.104358,0.726637,0.0923073,0.660459,0.5389,0.468526,0.514258,0.227157,0.81901,0.451555,0.269756,0.965484,0.921011,0.0808211,0.166627,0.591251,0.000846744,0.546941,0.542846,0.363573,0.406189,0.681173,0.920526,0.345434,0.505943,0.878302,0.297988,0.195365,0.223005,0.161487,0.526012,0.10631,0.139506,0.25127,0.566354,0.436285,0.938662,0.648608,0.0927521,0.605175,0.0245488,0.77308,0.967186,0.339112,0.816732,0.149379,0.965577,0.0542809,0.75568,0.999299,0.0292488,0.871382,0.75986,0.857388,0.0847701,0.406349,0.942737,0.520114,0.685296,0.255111,0.430932,0.600504,0.902398,0.844049,0.130033,0.564595,0.704538,0.664782,0.054683,0.152243,0.908368,0.227032,0.284901,0.0250632,0.914743,0.298524,0.917315,0.980175,0.263408,0.769626,0.957455,0.187912,0.371618,0.299804,0.0317914,0.801459,0.047039,0.93322,0.257275,0.824615,0.495564,0.77127,0.496066,0.931997,0.311399,0.327095,0.946868,0.888635,0.340633,0.940936,0.718106,0.767876,0.630632,0.218129,0.655754,0.335042,0.100331,0.29847,0.181811,0.84187,0.994655,0.935237,0.712226,0.679982,0.528245,0.192804,0.819552,0.804659,0.0256149,0.585278,0.000142574,0.322565,0.269989,0.544849,0.116207,0.0265011,0.845253,0.95192,0.956043,0.561234,0.0476592,0.931058,0.797246,0.462193,0.175973,0.510197,0.985708,0.916263,0.605737,0.249217,0.48282,0.363481,0.212264,|0.0461553,0.39376,0.109149,0.79597,0.13229,0.523179,0.929084,0.583932,0.190179,0.320304,0.322269,0.0307503,0.815442,0.844209,0.327976,0.345609,0.275795,0.844949,0.227274,0.0622538,0.523225,0.6037,0.721736,0.348868,0.238643,0.050724,0.317574,0.371596,0.312088,0.921839,0.704541,0.226874,0.843444,0.825745,0.502631,0.0309682,0.64267,0.634383,0.615006,0.707953,0.10116,0.149307,0.0322345,0.960937,0.896936,0.0929497,0.140341,0.481254,0.902891,0.75808,0.0708565,0.887532,0.902359,0.549261,0.845877,0.31304,0.0835111,0.266145,0.518144,0.693041,0.749637,0.680876,0.925337,0.427565,0.389916,0.350231,0.582281,0.847138,0.569183,0.521881,0.352359,0.634056,0.327183,0.0126334,0.425019,0.270682,0.141227,0.227916,0.982611,0.709482,0.439991,0.720355,0.30035,0.0800716,0.908088,0.0172476,0.691974,0.52806,0.864811,0.256583,0.651853,0.395979,0.853374,0.0836948,0.747951,0.254137,0.399264,0.0451626,0.235282,0.88877,0.150264,0.497471,0.0735314,0.971307,0.852363,0.0951468,0.384095,0.771786,0.966711,0.569434,0.144116,0.961119,0.775472,0.656533,0.26207,0.188398,0.0749068,0.217651,0.930065,0.289575,0.138204,0.866339,0.489907,0.531447,0.765732,0.553145,0.957029,0.524287,0.170298,0.189183,0.541738,0.0435719,0.52966,0.878512,0.241677,0.998917,0.581106,0.957881,0.710603,0.278485,0.580942,0.755892,0.0498945,0.651231,0.315004,0.933267,0.410211,0.525206,0.367923,0.889847,0.242531,0.88237,0.0265171,0.621973,0.752962,0.0172786,0.394761,0.937977,0.89332,0.987864,0.609891,0.876186,0.70022,0.817463,0.759198,0.516944,0.46655,0.117517,0.787697,0.180881,0.318586,0.0601115,0.850139,0.342874,0.335195,0.159906,0.698483,0.04834,0.431661,0.0623382,0.0869944,0.711976,0.0281978,0.201328,0.835557,0.0364594,0.319836,0.0528204,0.375732,0.467366,4.59552e-05,0.328311,0.419743,0.614683,0.951084,0.57265,0.539029,0.262897,0.529284,0.146927,0.288741,0.244928,0.808996,0.962916,0.252653,0.752048,0.0533092,0.706183,0.364267,0.177659,0.365721,0.276746,0.645777,0.045768,0.496141,0.720259,0.467776,0.00966716,0.0113586,0.170178,0.807119,0.123792,0.452125,0.841323,0.797683,0.456144,0.957516,0.862109,0.704659,0.823606,0.91848,0.764996,0.876474,0.944975,0.866097,0.199178,0.0871242,0.999477,0.726197,0.302636,0.310453,0.995365,0.603662,0.786742,0.0329058,0.0361913,0.941088,0.609711,0.97855,0.133816,0.422665,0.0152402,0.0251821,0.0184836,0.989477,0.736575,0.375944,0.861078,0.975657,0.794994,0.252255,0.550466,0.0628245,0.475478,0.574477,0.989826,0.638321,0.743929,0.68952,0.550149,0.443245,0.81283,0.951437,0.951213,0.76665,0.913811,0.786427,0.0381891,0.810555,0.0103343,0.229581,0.0230252,0.247585,0.711323,0.291665,0.598064,0.802907,0.724914,0.509558,0.176215,0.112706,0.15919,0.347044,0.767235,0.61505,0.955785,0.0255278,0.949952,0.743634,0.129673,0.778025,0.465132,0.0510757,0.0492699,0.690968,0.706393,0.497515,0.282516,0.783816,0.0144421,0.307844,0.767827,0.568869,0.398217,0.955149,0.396719,0.824158,0.420992,0.067071,0.832391,0.0465075,0.125637,0.87948,0.620101,0.614516,0.663609,0.178453,0.914147,0.23985,0.0757452,0.463808,0.857087,0.15915,0.982919,0.829833,0.371122,0.168069,0.263211,0.524267,0.0760285,0.165388,0.125301,0.488723,0.256072,0.290515,0.944987,0.960587,0.861509,0.943552,0.0928178,0.677138,0.173381,0.305256,0.356586,0.653853,0.166521,0.447245,0.407072,0.26572,0.886496,0.724625,0.173939,0.937257,0.0884251,0.235653,0.419787,0.748488,0.561403,0.62493,0.843782,0.712957,0.098055,0.962854,0.826399,0.114731,0.997967,0.620623,0.240572,0.705171,0.478877,0.447498,0.265537,0.153784,0.762758,0.541124,0.934248,0.854301,0.412658,0.538728,0.300826,0.188113,0.6568,0.0466266,0.864111,0.657682,0.891019,0.0786089,0.209099,0.472128,0.146767,0.988999,0.872821,0.209499,0.566641,0.421101,0.849093,0.38316,0.107891,0.00284111,0.120939,0.885202,0.885438,0.316631,0.305654,0.340271,0.946976,0.452419,0.760348,0.890697,0.427218,0.0612123,0.485798,0.495448,0.279239,0.113894,0.774199,0.185911,0.123973,0.187067,0.414443,0.203553,0.67896,0.259497,0.0863051,0.125167,0.374851,0.947758,0.68983,0.145425,0.670667,0.867251,0.323492,0.648952,0.227685,0.9727,0.705536,0.735871,0.85798,0.0734905,0.670923,0.54935,0.450388,0.0545118,0.182536,0.749914,0.315959,0.414189,0.0913148,0.690768,0.971227,0.582995,0.0993327,0.361592,0.371675,0.670213,0.737195,0.00805515,0.673271,0.614662,0.596605,0.103177,0.825669,0.16218,0.812512,0.0110018,0.278595,0.412997,0.527603,0.566071,0.245685,0.717868,0.0098719,0.798868,0.724239,0.455804,0.102652,0.0808212,0.174436,0.949225,0.816954,0.348699,0.485108,0.709877,0.464592,0.353847,0.381846,0.820062,0.960835,0.467379,0.859181,0.631515,0.236324,0.554535,0.26427,0.322128,0.430901,0.730389,0.967338,0.551739,0.311472,0.28603,0.705174,0.470155,0.850642,0.957144,0.97018,0.758911,0.433544,0.957562,0.0910596,0.486713,0.777795,0.353401,0.835314,0.782476,0.426985,0.28722,0.651533,0.864591,0.868751,0.321438,0.309685,0.250651,0.715074,0.101476,0.17247,0.699514,0.0805604,0.140315,0.438544,0.6365,0.830058,0.0935866,0.207435,0.840939,0.391544,0.971996,0.911125,0.753162,0.304321,0.0224776,0.569046,0.178318,0.996998,0.330162,0.986193,0.272376,0.526586,0.146944,0.0373333,0.288619,0.0474384,0.688895,0.258395,0.893533,0.550478,0.818808,0.718598,0.861162,0.418727,0.294233,0.85587,0.490358,0.936014,0.355637,0.376175,0.229765,0.794855,0.900995,0.0876394,0.668247,0.198295,0.481213,0.774883,0.0529568,0.340754,0.302592,0.274369,0.0520218,0.395371,0.346752,0.932513,0.860244,0.584612,0.106969,0.0558307,0.888589,0.900814,0.0900304,0.319443,0.106871,0.379122,0.0174775,0.619404,0.465123,0.803227,0.799938,0.205865,0.38,0.403983,0.71402,0.855725,0.5506,0.696666,0.700396,0.534337,0.802079,0.611554,0.614031,0.443241,0.659634,0.475196,0.106486,0.386921,0.911258,0.312347,0.194065,0.685722,0.2945,0.854067,0.20917,0.50733,0.576037,0.740521,0.0302114,0.45333,0.715921,0.873089,0.825571,0.534109,0.0181807,0.20183,0.533605,0.226046,0.460623,0.76471,0.898241,0.0733403,0.777479,0.241243,0.905825,0.935391,0.948503,0.147688,0.819332,0.677675,0.850498,0.521828,0.141472,0.137068,0.224735,0.550558,0.801313,0.447776,0.161062,0.844971,0.813845,0.561869,0.307242,0.437225,0.505863,0.146821,0.652716,0.377461,0.189544,0.484385,0.0947925,0.156037,0.702928,0.731206,0.586956,0.0172899,0.748497,0.332882,0.369279,0.33763,0.564193,0.881341,0.70836,0.410419,0.79235,0.283318,0.580957,0.923356,0.225417,0.200038,0.0290566,0.737399,0.603325,0.0634605,0.0125716,0.378283,0.210577,0.303342,0.28489,0.968453,0.806141,0.308553,0.936955,0.499644,0.554237,0.172455,0.366733,0.452495,0.700839,0.050943,0.0172368,0.273733,0.123086,0.783582,0.866716,0.207817,0.146141,0.894221,0.778206,0.271353,0.859189,0.471514,0.206862,0.0261594,0.448752,0.413008,0.207417,0.635432,0.819194,0.557606,0.332262,0.365584,0.903675,0.276752,0.978861,0.00546825,0.171576,0.481485,0.927115,0.371412,0.126187,0.121874,0.363756,0.901666,0.00924248,0.152084,0.42659,0.757697,0.767693,0.918086,0.316662,0.695319,0.24861,0.585605,0.331448,0.63594,0.916319,0.864786,0.102113,0.602137,0.734475,0.898992,0.642935,0.711621,0.560455,0.879276,0.142192,0.380103,0.741462,0.553801,0.849302,0.677937,0.324845,0.823078,0.551062,0.490165,0.464082,0.352392,0.0129203,0.0016377,0.701014,0.719137,0.101111,0.589963,0.960281,0.0592472,0.700558,0.612984,0.69062,0.609866,0.3997,0.279008,0.145566,0.242036,0.764146,0.605411,0.143287,0.00738257,0.941029,0.901145,0.167721,0.883128,0.452716,0.817037,0.232532,0.714839,0.372948,0.0909076,0.860975,0.862088,0.789132,0.642154,0.0899727,0.663748,0.576184,0.663279,0.9717,0.78041,0.371377,0.619483,0.937512,0.0374749,0.213651,0.763769,0.450103,0.949385,0.980242,0.0970157,0.64816,0.819548,0.361571,0.0544208,0.426529,0.946613,0.217685,0.137871,0.2578,0.58456,0.765497,0.781907,0.453121,0.34222,0.243727,0.695552,0.809914,0.498246,0.125765,0.165416,0.644508,0.102342,0.555365,0.662869,0.620025,0.852512,0.843644,0.256741,0.746005,0.0426309,0.995145,0.847216,0.391279,0.22235,0.439238,0.584741,0.64942,0.907851,0.271267,0.960888,0.599322,0.120737,0.702133,0.131885,0.499273,0.813824,0.236823,0.603442,0.847532,0.299718,0.403549,0.51629,0.297828,0.698972,0.98175,0.219457,0.0513762,0.034245,0.528718,0.369852,0.132525,0.328251,0.6048,0.945234,0.649652,0.865669,0.774515,0.839237,0.82989,0.957528,0.995103,0.558732,0.687499,0.108879,0.0399966,0.121799,0.300257,0.841566,0.50788,0.203718,0.107637,0.290316,0.30963,0.23863,0.206244,0.778057,0.0290874,0.358854,0.569584,0.621952,0.561506,0.78065,0.824998,0.043317,0.569854,0.218921,0.860776,0.301409,0.196373,0.157831,0.98095,0.728929,0.891757,0.840131,0.28106,0.880388,0.881187,0.597756,0.817321,0.72546,0.243578,0.868695,0.215712,0.0683239,0.421556,0.338504,0.522363,0.233291,0.281009,0.243493,0.274068,0.823516,0.0546337,0.721701,0.10095,0.774159,0.506325,0.523671,0.783173,0.939079,0.537165,0.183755,0.0914472,0.169877,0.959531,0.0284605,0.135625,0.775113,0.467556,0.240912,0.624087,0.897626,0.062843,0.578165,0.354097,0.214722,0.931324,0.344184,0.0878331,0.119949,0.291193,0.310671,0.887954,0.883174,0.325361,0.94864,0.967082,0.114947,0.589012,0.914879,0.96234,0.310417,0.0709455,0.190536,0.869741,0.44587,|0.432984,0.956314,0.127942,0.0693718,0.880919,0.764433,0.785337,0.971587,0.95792,0.970158,0.267413,0.322039,0.413083,0.199503,0.91393,0.201243,0.599193,0.0643056,0.901375,0.443496,0.0992094,0.789611,0.861097,0.785455,0.155017,0.0377679,0.059647,0.717694,0.121332,0.117765,0.609655,0.112808,0.945746,0.545846,0.334248,0.882991,0.408743,0.817327,0.68895,0.564054,0.686352,0.53073,0.263247,0.923725,0.170809,0.658104,0.441817,0.557791,0.741568,0.0823351,0.827298,0.35351,0.776977,0.524777,0.495555,0.109905,0.759938,0.100959,0.609865,0.485147,0.973617,0.904076,0.866349,0.21884,0.682155,0.450141,0.870098,0.0332078,0.936385,0.160051,0.349453,0.2215,0.419628,0.267103,0.210281,0.127798,0.26216,0.622581,0.311887,0.742877,0.215659,0.276228,0.34343,0.975897,0.238305,0.291743,0.0509694,0.056394,0.754098,0.721889,0.154526,0.595745,0.676534,0.108103,0.100358,0.336655,0.505914,0.139105,0.395731,0.0359312,0.92095,0.856761,0.844212,0.517949,0.897898,0.605922,0.257389,0.163857,0.108981,0.189769,0.594559,0.149122,0.487464,0.337584,0.700203,0.862719,0.425974,0.00391948,0.017962,0.556825,0.646382,0.0714527,0.455836,0.897403,0.593236,0.908567,0.505055,0.23545,0.279693,0.379017,0.593917,0.762699,0.77585,0.00255907,0.772999,0.369206,0.11978,0.969945,0.0737697,0.796622,0.941036,0.31673,0.174949,0.399473,0.934418,0.375357,0.423524,0.870386,0.330183,0.423735,0.114444,0.810489,0.0185396,0.951839,0.450719,0.260893,0.248698,0.324822,0.808202,0.819081,0.787675,0.604328,0.842509,0.203475,0.687399,0.221319,0.608722,0.938287,0.0879021,0.314653,0.142101,0.684731,0.680204,0.278348,0.560795,0.124706,0.127389,0.43105,0.336129,0.740292,0.446623,0.124053,0.937822,0.602015,0.116228,0.312768,0.511239,0.725086,0.623185,0.254275,0.0260221,0.744685,0.588645,0.21001,0.189914,0.432568,0.180647,0.2528,0.244468,0.676871,0.55768,0.217533,0.378901,0.769936,0.0276431,0.586474,0.102557,0.738876,0.337826,0.179423,0.519691,0.297029,0.179872,0.15384,0.445374,0.608549,0.626043,0.610475,0.598261,0.295974,0.539613,0.151964,0.655801,0.407501,0.540589,0.984457,0.748436,0.201295,0.150641,0.0682876,0.0304241,0.352913,0.415818,0.364483,0.691685,0.302815,0.601229,0.221586,0.498216,0.979187,0.393496,0.75797,0.969569,0.266335,0.693526,0.607045,0.316586,0.775891,0.212194,0.482424,0.719302,0.75174,0.687377,0.625305,0.039924,0.826814,0.620202,0.860311,0.216568,0.865111,0.624672,0.0527182,0.429985,0.368613,0.490349,0.71735,0.956771,0.451368,0.546786,0.575781,0.905793,0.0469624,0.425217,0.603274,0.866441,0.431594,0.456482,0.458281,0.00546342,0.64152,0.694324,0.0231633,0.333266,0.101158,0.807424,0.831495,0.251796,0.178579,0.66498,0.061505,0.351708,0.646217,0.859527,0.564114,0.61922,0.7716,0.871065,0.134927,0.77216,0.850931,0.101198,0.504292,0.784219,0.43013,0.299536,0.401636,0.621034,0.206383,0.177561,0.418338,0.670115,0.402231,0.323059,0.534674,0.284322,0.709748,0.472565,0.102344,0.279437,0.899737,0.0417454,0.844844,0.378249,0.89934,0.435894,0.902728,0.0315506,0.961886,0.765522,0.849585,0.297117,0.553565,0.977678,0.398125,0.990662,0.1566,0.848504,0.0512174,0.560902,0.01499,0.520529,0.126407,0.0508525,0.534204,0.0109098,0.0402237,0.783115,0.976983,0.204668,0.769846,0.192051,0.446117,0.006136,0.155512,0.584252,0.643778,0.539104,0.177295,0.371156,0.984074,0.197474,0.552293,0.520186,0.134077,0.136237,0.0546658,0.876042,0.370486,0.65561,0.831034,0.939333,0.368355,0.212464,0.553746,0.29637,0.306843,0.310256,0.397514,0.0243126,0.0938873,0.311025,0.706842,0.295142,0.218646,0.554697,0.43122,0.106088,0.00802588,0.621666,0.529016,0.130831,0.532746,0.243841,0.709043,0.135604,0.578315,0.0282013,0.109346,0.883896,0.849814,0.963918,0.0490194,0.381049,0.084061,0.917248,0.861537,0.695027,0.227968,0.0801801,0.773827,0.576093,0.35653,0.165394,0.646321,0.970495,0.811874,0.962813,0.455984,0.568908,0.209436,0.947651,0.302618,0.385646,0.538479,0.0407563,0.847635,0.371528,0.0194852,0.270765,0.219493,0.365174,0.152249,0.601072,0.579643,0.493484,0.100998,0.0182807,0.482264,0.912509,0.735044,0.505132,0.229455,0.778027,0.349349,0.1661,0.288335,0.578326,0.147496,0.031392,0.174811,0.18336,0.215929,0.937406,0.555546,0.386779,0.083215,0.354669,0.938198,0.269987,0.808509,0.920178,0.344435,0.232335,0.814436,0.800456,0.47924,0.776485,0.0671136,0.933706,0.6733,0.517648,0.912864,0.79174,0.849354,0.71109,0.628243,0.385054,0.224217,0.915704,0.889155,0.500647,0.0629302,0.193508,0.584713,0.774243,0.475724,0.254318,0.111176,0.684954,0.759138,0.21505,0.0446902,0.0674934,0.0291638,0.877233,0.222929,0.401221,0.429845,0.672368,0.827807,0.602992,0.028643,0.914009,0.725811,0.736351,0.00966907,0.78754,0.0850062,0.634612,0.0713417,0.312482,0.879931,0.130177,0.0256972,0.335576,0.074624,0.0818099,0.206302,0.487658,0.718022,0.310779,0.341682,0.0363187,0.203576,0.337452,0.534661,0.141467,0.66871,0.267552,0.536545,0.618413,0.887774,0.977542,0.21815,0.293474,0.649444,0.395608,0.091731,0.504077,0.90627,0.104689,0.583465,0.820455,0.853363,0.73901,0.644128,0.826155,0.329723,0.760481,0.730367,0.441516,0.947485,0.633581,0.462201,0.296979,0.430087,0.10677,0.129206,0.355747,0.234711,0.269038,0.740494,0.163998,0.060209,0.105726,0.887419,0.199187,0.729426,0.000742733,0.400844,0.648142,0.175675,0.737285,0.35082,0.539454,0.477511,0.312945,0.269432,0.597029,0.618042,0.716766,0.259534,0.599451,0.267037,0.914804,0.769904,0.418519,0.341465,0.574541,0.517789,0.47613,0.76145,0.104487,0.145822,0.591771,0.501931,0.990946,0.975597,0.292529,0.231462,0.0972435,0.331503,0.448543,0.143039,0.237397,0.610701,0.487699,0.707689,0.783292,0.753811,0.891318,0.840212,0.0228781,0.289814,0.682166,0.796072,0.484888,0.356226,0.472596,0.990916,0.548039,0.662768,0.920565,0.833051,0.217225,0.0643544,0.461014,0.282951,0.370182,0.23441,0.0847459,0.687198,0.347792,0.954998,0.394639,0.729349,0.578923,0.686229,0.886321,0.00688553,0.550461,0.778367,0.434224,0.267214,0.559325,0.113692,0.782724,0.835031,0.0772911,0.882652,0.699892,0.453142,0.41295,0.508408,0.278286,0.102081,0.693818,0.226493,0.532879,0.765699,0.0920266,0.439694,0.313408,0.400733,0.637647,0.841782,0.573784,0.560812,0.348327,0.785581,0.756761,0.39487,0.470313,0.786417,0.299711,0.0119713,0.54985,0.839866,0.199138,0.579269,0.527704,0.315877,0.575799,0.319906,0.130477,0.657132,0.201856,0.917499,0.791416,0.645689,0.854506,0.153536,0.550281,0.649803,0.493151,0.930359,0.0734615,0.999364,0.177572,0.421155,0.405262,0.6999,0.528572,0.278491,0.70482,0.27169,0.611816,0.888055,0.677251,0.407146,0.584872,0.929075,0.867381,0.323912,0.678785,0.615995,0.575796,0.729996,0.680755,0.44961,0.131588,0.350844,0.904448,0.976346,0.435599,0.45499,0.416482,0.0441527,0.477676,0.892335,0.130938,0.351922,0.386311,0.84223,0.0974571,0.984544,0.507305,0.0282126,0.942274,0.747722,0.763568,0.897779,0.643567,0.667594,0.684779,0.752449,0.659106,0.364661,0.69703,0.906094,0.145735,0.099523,0.194557,0.0203182,0.216039,0.836395,0.974967,0.296234,0.719303,0.559931,0.815766,0.0518516,0.892532,0.860746,0.280673,0.674884,0.690357,0.474355,0.33924,0.101123,0.00843054,0.174307,0.919446,0.359788,0.762203,0.0596596,0.736458,0.0630084,0.652887,0.477923,0.090219,0.259465,0.358922,0.0813234,0.167829,0.418369,0.519014,0.181182,0.134377,0.287439,0.435243,0.518016,0.532009,0.10634,0.658221,0.697044,0.521117,0.659627,0.0209913,0.849423,0.466643,0.131556,0.369588,0.368767,0.855735,0.0655435,0.435759,0.873984,0.965966,0.626268,0.933064,0.758408,0.597191,0.241069,0.791912,0.68022,0.192941,0.0767614,0.279178,0.833458,0.32846,0.084381,0.605749,0.476944,0.577823,0.522024,0.713265,0.444533,0.214518,0.139421,0.962411,0.345483,0.632194,0.000853062,0.973991,0.603636,0.0766879,0.575745,0.225102,0.435389,0.540024,0.0507781,0.583139,0.528206,0.646586,0.308502,0.490047,0.0542161,0.510781,0.87725,0.745315,0.664359,0.653298,0.113937,0.151472,0.548018,0.304617,0.440657,0.108699,0.0236169,0.786682,0.884955,0.664765,0.402218,0.098244,0.635906,0.124288,0.984208,0.0246504,0.864254,0.395915,0.46063,0.532725,0.91884,0.0412195,0.979125,0.743959,0.80814,0.888588,0.387902,0.554954,0.877931,0.80115,0.884016,0.442221,0.898786,0.576675,0.198645,0.0727777,0.137467,0.605249,0.378512,0.195636,0.820937,0.217795,0.245209,0.753412,0.370002,0.155721,0.486164,0.576479,0.408825,0.244517,0.845034,0.813187,0.762455,0.329022,0.261889,0.858336,0.987399,0.0191542,0.888013,0.656645,0.516481,0.867853,0.200469,0.0375515,0.725191,0.628911,0.807473,0.932317,0.488444,0.410525,0.185028,0.519973,0.795148,0.7688,0.959633,0.096054,0.201997,0.315805,0.183848,0.926758,0.777071,0.818191,0.878618,0.234425,0.841269,0.470713,0.153,0.238527,0.819605,0.666244,0.657915,0.665,0.765304,0.115205,0.974455,0.376397,0.73179,0.794151,0.414211,0.435998,0.431815,0.57982,0.653353,0.537449,0.718321,0.294329,0.981131,0.201448,0.0159439,0.595676,0.959088,0.381082,0.589087,0.55995,0.300796,0.53648,0.580074,0.42208,0.830865,0.389527,0.768841,0.502489,0.0038228,0.920045,0.411908,0.956587,0.246094,0.492047,0.236036,0.700102,0.413759,0.199167,0.152393,0.663648,0.825091,0.369331,0.745675,0.103149,0.330513,0.0448039,0.499503,0.910418,0.182412,0.1849,0.546549,0.148077,0.624222,|0.942254,0.669027,0.468451,0.882777,0.705703,0.377427,0.923375,0.995355,0.447888,0.676414,0.453005,0.457153,0.254674,0.27968,0.0474042,0.652506,0.0662656,0.279624,0.40983,0.403957,0.0943737,0.676789,0.528537,0.198799,0.528867,0.489482,0.991642,0.910527,0.0390335,0.215761,0.120511,0.338347,0.847081,0.0840593,0.827846,0.377868,0.713758,0.749671,0.251627,0.968979,0.759539,0.163402,0.560127,0.581241,0.96387,0.47613,0.629375,0.799945,0.65405,0.607549,0.079716,0.688259,0.395951,0.512202,0.586305,0.784129,0.412771,0.972793,0.485131,0.394553,0.615674,0.396344,0.334021,0.582298,0.414163,0.332008,0.273388,0.774298,0.950293,0.629254,0.38324,0.854523,0.175694,0.203327,0.360372,0.859559,0.41959,0.325737,0.233445,0.788825,0.301502,0.983761,0.6342,0.293463,0.343731,0.981169,0.470922,0.300884,0.317086,0.183074,0.780328,0.654417,0.755278,0.656856,0.551257,0.939551,0.351149,0.0579253,0.397756,0.417988,0.93456,0.306924,0.229692,0.550952,0.966364,0.732514,0.420607,0.880621,0.779268,0.39234,0.109837,0.591798,0.437629,0.00963712,0.652491,0.583654,0.704672,0.698063,0.411708,0.3002,0.819439,0.898434,0.228266,0.774259,0.155484,0.502718,0.986162,0.00658488,0.18095,0.987429,0.511004,0.307558,0.534372,0.679005,0.371051,0.329344,0.29998,0.582096,0.542792,0.893892,0.720185,0.050176,0.640206,0.446094,0.349574,0.0209488,0.240272,0.531556,0.409158,0.402091,0.862599,0.314942,0.935508,0.701245,0.494534,0.350861,0.528623,0.168022,0.441329,0.712796,0.0211583,0.998343,0.766984,0.747207,0.215052,0.536775,0.379805,0.257036,0.695581,0.89615,0.649036,0.77766,0.322359,0.346937,0.71979,0.277802,0.554387,0.399391,0.588603,0.887869,0.34714,0.398134,0.946053,0.470255,0.447023,0.935106,0.0980954,0.993342,0.292197,0.670415,0.0939711,0.0778522,0.623299,0.969068,0.575761,0.168824,0.286613,0.337529,0.939007,0.581704,0.0816124,0.682134,0.4376,0.0819212,0.685723,0.858804,0.260163,0.0124105,0.379272,0.822284,0.530919,0.749097,0.661552,0.357972,0.244103,0.513306,0.603633,0.337503,0.945982,0.159337,0.594706,0.249789,0.684737,0.330423,0.391909,0.0157357,0.0726281,0.213216,0.0881384,0.689377,0.456583,0.929514,0.300263,0.230528,0.248567,0.0276921,0.260958,0.529439,0.479055,0.631245,0.299315,0.309382,0.943398,0.538389,0.0996953,0.552508,0.820803,0.175483,0.136511,0.934282,0.652523,0.310783,0.707867,0.732213,0.253471,0.605479,0.721519,0.426628,0.450022,0.0682489,0.00328505,0.258761,0.725769,0.953182,0.315502,0.93895,0.5923,0.508752,0.152393,0.0267293,0.430646,0.978822,0.0363304,0.79227,0.603254,0.399089,0.622359,0.653254,0.0214427,0.984945,0.679262,0.867755,0.320513,0.626829,0.722307,0.0598606,0.39089,0.348735,0.381575,0.991919,0.370374,0.822477,0.61365,0.140077,0.814274,0.288245,0.152393,0.621792,0.810545,0.893857,0.476145,0.0471255,0.983482,0.70108,0.795737,0.223921,0.821694,0.37311,0.0655454,0.164848,0.484089,0.151289,0.662426,0.238951,0.479171,0.249531,0.730512,0.457773,0.457559,0.447647,0.23054,0.569661,0.12462,0.238707,0.57397,0.343855,0.927437,0.710406,0.92901,0.164936,0.23051,0.664436,0.177863,0.0505468,0.741681,0.265647,0.473377,0.660984,0.0765751,0.929918,0.503008,0.12126,0.459454,0.99181,0.489256,0.531693,0.164068,0.508587,0.769504,0.152699,0.507462,0.0103735,0.79472,0.0730508,0.633336,0.0450667,0.979363,0.833205,0.7942,0.580547,0.158688,0.586063,0.567095,0.737499,0.512265,0.569145,0.978759,0.423423,0.783387,0.115285,0.77062,0.309826,0.278217,0.851711,0.835896,0.385263,0.300012,0.443629,0.208564,0.190723,0.800481,0.770015,0.477475,0.772979,0.784635,0.448026,0.785503,0.739152,0.0735766,0.565749,0.402393,0.107185,0.405474,0.216894,0.495498,0.29207,0.0632976,0.630982,0.0955149,0.198264,0.689522,0.266666,0.0528457,0.287101,0.272896,0.614035,0.760864,0.596896,0.216424,0.256154,0.543419,0.530027,0.670346,0.916418,0.891689,0.790063,0.508578,0.0370103,0.833124,0.23,0.603795,0.0711448,0.782952,0.329166,0.911422,0.433679,0.854856,0.65683,0.554659,0.691924,0.886227,0.466301,0.670802,0.649847,0.610867,0.909659,0.444922,0.173347,0.0182086,0.332518,0.660079,0.53686,0.74051,0.115415,0.692544,0.640263,0.655686,0.476578,0.217518,0.361506,0.608277,0.125042,0.84753,0.859021,0.10166,0.734272,0.275532,0.204664,0.934752,0.43106,0.923542,0.377967,0.0981218,0.452088,0.354093,0.969751,0.400939,0.797088,0.817096,0.307598,0.419381,0.694225,0.244099,0.559167,0.725159,0.580605,0.00382304,0.437283,0.456712,0.734153,0.880259,0.172763,0.812875,0.779153,0.001634,0.59197,0.309547,0.952097,0.355764,0.92015,0.575301,0.432748,0.400929,0.976739,0.310563,0.276345,0.497144,0.168614,0.66813,0.787886,0.228777,0.19589,0.10581,0.55044,0.420599,0.0712849,0.622596,0.861847,0.134104,0.440116,0.889755,0.997459,0.593418,0.136669,0.747654,0.0819404,0.537905,0.1633,0.234965,0.485354,0.575279,0.269336,0.501357,0.125015,0.369337,0.634467,0.175259,0.190203,0.388851,0.205283,0.170077,0.480112,0.179005,0.690328,0.528628,0.186171,0.984275,0.378777,0.555107,0.77185,0.733883,0.922722,0.452179,0.277969,0.182909,0.593857,0.715188,0.0166002,0.692174,0.0142405,0.238919,0.519813,0.209317,0.587332,0.215962,0.0459575,0.522374,0.627024,0.494242,0.144231,0.592809,0.743924,0.345851,0.541714,0.4409,0.775257,0.81045,0.50507,0.74187,0.0013535,0.611554,0.0739393,0.384873,0.525874,0.439991,0.53717,0.868806,0.473534,0.862049,0.743734,0.23431,0.211713,0.990895,0.838119,0.520537,0.196202,0.799166,0.796448,0.0279354,0.602485,0.429264,0.892946,0.976395,0.620203,0.980313,0.304396,0.36035,0.43859,0.378534,0.838706,0.0825311,0.455938,0.768645,0.494818,0.971585,0.25808,0.436367,0.872166,0.430705,0.459251,0.383678,0.669383,0.80436,0.69495,0.642351,0.613958,0.110071,0.646926,0.514949,0.170636,0.602376,0.686765,0.0739059,0.505778,0.50557,0.488101,0.403239,0.156053,0.862226,0.933793,0.118802,0.734239,0.706784,0.597122,0.0321901,0.500283,0.462696,0.51595,0.233755,0.0835766,0.539355,0.203361,0.641233,0.908373,0.798151,0.0197105,0.763205,0.010166,0.0642769,0.535025,0.67712,0.890441,0.371962,0.0673205,0.085002,0.719146,0.529232,0.568199,0.974794,0.275416,0.816801,0.396514,0.0435559,0.657684,0.143167,0.618189,0.624959,0.360664,0.746404,0.500951,0.74584,0.21897,0.26246,0.155677,0.354517,0.997518,0.941994,0.0846439,0.611275,0.968953,0.190609,0.757988,0.347888,0.601584,0.612149,0.586508,0.827691,0.251142,0.497759,0.348577,0.845118,0.822342,0.934849,0.347528,0.26648,0.801813,0.55161,0.0463498,0.315872,0.904302,0.476443,0.348716,0.980352,0.639312,0.682272,0.445724,0.528046,0.515141,0.188734,0.403797,0.846917,0.584772,0.00163925,0.985911,0.635487,0.718539,0.0559744,0.0901723,0.644952,0.409047,0.112966,0.611246,0.684533,0.407786,0.732613,0.544883,0.729661,0.450302,0.405937,0.773933,0.697791,0.830245,0.975036,0.419068,0.689498,0.0952128,0.425195,0.717409,0.358647,0.936672,0.00303805,0.94471,0.499358,0.575506,0.891101,0.082635,0.364615,0.135093,0.0378514,0.292955,0.00766724,0.350122,0.799845,0.361843,0.725945,0.624903,0.34643,0.398392,0.500413,0.636298,0.923451,0.731102,0.781602,0.0633247,0.556203,0.526272,0.345683,0.0324488,0.179411,0.117024,0.0930607,0.190962,0.378806,0.858128,0.384178,0.557344,0.0306929,0.689681,0.929373,0.147079,0.315847,0.289775,0.293209,0.770894,0.339254,0.611845,0.806637,0.24357,0.731891,0.413077,0.589731,0.304661,0.389036,0.107575,0.430093,0.812683,0.982183,0.140004,0.443522,0.843634,0.17905,0.58966,0.632498,0.526449,0.625655,0.712512,0.854648,0.440513,0.775186,0.887515,0.470333,0.645866,0.811535,0.0130598,0.861757,0.685415,0.742562,0.464303,0.555254,0.98261,0.927084,0.285409,0.502023,0.951225,0.272348,0.38773,0.937854,0.519785,0.914881,0.247635,0.227897,0.968076,0.107047,0.915224,0.486787,0.947211,0.422747,0.417361,0.63105,0.555409,0.988615,0.712379,0.752781,0.619141,0.632925,0.116788,0.27725,0.341736,0.647044,0.127254,0.255335,0.078589,0.766794,0.660062,0.582944,0.678658,0.567943,0.894137,0.184938,0.796309,0.314962,0.319494,0.0907446,0.0169731,0.430795,0.895841,0.438054,0.533189,0.673254,0.508388,0.407329,0.195027,0.872533,0.835213,0.305915,0.993091,0.711643,0.547004,0.80011,0.14915,0.713567,0.495888,0.88247,0.96629,0.851436,0.246036,0.637314,0.744354,0.865948,0.245411,0.445293,0.404459,0.378929,0.815964,0.942578,0.241214,0.337482,0.490628,0.98233,0.492865,0.65255,0.362677,0.540542,0.999104,0.646313,0.0264292,0.409269,0.921296,0.950363,0.0572273,0.627635,0.763594,0.124818,0.792595,0.918816,0.975851,0.956596,0.681111,0.145116,0.767469,0.505225,0.0165009,0.949267,0.876686,0.164814,0.210435,0.870136,0.227703,0.0369182,0.689192,0.794538,0.854668,0.317286,0.644451,0.18266,0.134468,0.596784,0.849878,0.605863,0.851708,0.323802,0.557013,0.0587453,0.382488,0.992638,0.804622,0.548076,0.238744,0.871804,0.556992,0.0964233,0.161866,0.167584,0.848693,0.748355,0.522289,0.415854,0.62398,0.0422187,0.0558354,0.245757,0.0431539,0.0453303,0.182629,0.214799,0.729532,0.304692,0.761947,0.612114,0.241218,0.116518,0.127984,0.60725,0.42488,0.807543,0.465757,0.321356,0.365749,0.33874,0.188909,0.339853,0.39958,0.389218,0.952023,0.921584,0.109585,0.458958,0.374169,0.723656,0.738136,0.827171,0.102814,0.552176,0.735091,0.401813,0.516436,0.152779,0.0534823,0.266162,0.981754,|0.697722,0.904316,0.00267518,0.0892292,0.39591,0.418398,0.474172,0.665234,0.645141,0.773751,0.0825717,0.826239,0.300592,0.906714,0.871568,0.530353,0.693732,0.135197,0.489463,0.686086,0.440707,0.876171,0.394571,0.0855217,0.0130371,0.806581,0.589764,0.0322595,0.856991,0.217327,0.370034,0.825163,0.905901,0.300866,0.959551,0.293095,0.399451,0.0715717,0.627121,0.0885665,0.147386,0.805007,0.291268,0.424824,0.175587,0.155842,0.360739,0.88053,0.491499,0.0554022,0.272843,0.914953,0.422726,0.954168,0.115077,0.992906,0.281203,0.115371,0.703387,0.262933,0.880275,0.649028,0.898325,0.35589,0.123285,0.0926183,0.733892,0.742232,0.420425,0.790035,0.654201,0.62702,0.0225683,0.105936,0.605761,0.187172,0.132243,0.797131,0.997718,0.676027,0.746975,0.0531598,0.462814,0.89619,0.716461,0.673275,0.564348,0.612366,0.315419,0.0391058,0.535153,0.396504,0.66966,0.871476,0.263243,0.378578,0.29663,0.74028,0.625507,0.0785334,0.408811,0.115011,0.105521,0.128704,0.749924,0.994045,0.319453,0.829937,0.161679,0.117344,0.504127,0.417909,0.163918,0.731322,0.180829,0.894833,0.717366,0.657148,0.961971,0.0511011,0.233337,0.301878,0.866191,0.966249,0.325038,0.0982487,0.407661,0.863186,0.0551822,0.948752,0.415567,0.612226,0.532232,0.521547,0.836712,0.238358,0.620156,0.0473824,0.681233,0.297258,0.018721,0.502151,0.999379,0.503385,0.0224866,0.550361,0.718822,0.102732,0.0452041,0.936184,0.323193,0.425162,0.50227,0.194836,0.236274,0.869994,0.00389743,0.181072,0.579895,0.711741,0.697423,0.018009,0.68919,0.323451,0.507533,0.122497,0.00849056,0.0636421,0.877675,0.415178,0.352441,0.97088,0.952625,0.696591,0.470491,0.381992,0.075578,0.835169,0.190221,0.57666,0.75924,0.738067,0.326699,0.361052,0.760503,0.34459,0.859411,0.165473,0.702136,0.859494,0.0172779,0.31477,0.881782,0.800561,0.813178,0.436047,0.723641,0.36757,0.861085,0.291445,0.145563,0.877703,0.209093,0.099876,0.165786,0.185571,0.38345,0.945646,0.801218,0.510484,0.74194,0.699112,0.116841,0.909801,0.560248,0.285707,0.00673431,0.149646,0.700098,0.418431,0.991744,0.705477,0.439499,0.650757,0.376835,0.926011,0.191367,0.756249,0.810993,0.295995,0.582582,0.323458,0.25904,0.115471,0.0951455,0.968304,0.612329,0.716256,0.46355,0.723935,0.52164,0.595239,0.412204,0.980325,0.815864,0.611082,0.91723,0.144413,0.865011,0.653481,0.834666,0.328761,0.536948,0.104939,0.830419,0.906331,0.877709,0.989384,0.513426,0.432272,0.368124,0.525542,0.661631,0.508699,0.848938,0.313727,0.88905,0.558172,0.931755,0.255185,0.933683,0.964747,0.733187,0.027996,0.707484,0.486542,0.896033,0.0880612,0.984792,0.394378,0.434112,0.229022,0.665022,0.685984,0.621043,0.149646,0.0127525,0.388365,0.36621,0.0831152,0.0600604,0.168873,0.123855,0.497173,0.114547,0.98334,0.658514,0.420415,0.778746,0.43619,0.732917,0.161207,0.897021,0.923308,0.413899,0.285221,0.455245,0.685655,0.0812781,0.722239,0.37716,0.723045,0.929703,0.801013,0.589539,0.0680989,0.853029,0.275334,0.639495,0.602474,0.668779,0.0918234,0.96963,0.326005,0.854487,0.427306,0.187,0.370681,0.98678,0.638293,0.303298,0.519631,0.429219,0.831494,0.449442,0.895234,0.515151,0.836511,0.970868,0.185624,0.615381,0.977865,0.821303,0.703392,0.296505,0.0920648,0.364931,0.365641,0.414333,0.444806,0.698003,0.271721,0.00590795,0.207611,0.80658,0.362836,0.92842,0.891389,0.0598656,0.138645,0.917056,0.541505,0.871733,0.989348,0.512873,0.199575,0.723023,0.549929,0.476199,0.529198,0.247617,0.698914,0.0136959,0.321751,0.730896,0.936681,0.847218,0.498422,0.705353,0.291193,0.427914,0.973036,0.392947,0.64954,0.806326,0.349465,0.985113,0.946763,0.0972083,0.253867,0.581472,0.833588,0.0290681,0.0879661,0.933845,0.515361,0.0541592,0.628199,0.238833,0.77297,0.960581,0.131529,0.488805,0.138966,0.828976,0.0103676,0.322405,0.219455,0.126075,0.994433,0.801709,0.252738,0.194374,0.761927,0.358405,0.869582,0.242574,0.854736,0.448142,0.771054,0.0481349,0.0786188,0.276956,0.33624,0.940769,0.357812,0.19869,0.803916,0.419506,0.472301,0.27339,0.28507,0.222272,0.768069,0.319968,0.967335,0.673245,0.056036,0.347179,0.350887,0.681808,0.113971,0.818694,0.145526,0.720014,0.000394166,0.650673,0.511278,0.722557,0.754416,0.533024,0.600659,0.130518,0.983889,0.804756,0.42773,0.694243,0.168491,0.232508,0.513072,0.710634,0.15212,0.222655,0.0621181,0.744787,0.284504,0.271199,0.26526,0.839004,0.401594,0.365799,0.889859,0.516347,0.564032,0.48105,0.152361,0.23412,0.319842,0.127728,0.0837625,0.130952,0.593029,0.372286,0.667179,0.625563,0.16853,0.167354,0.421182,0.723752,0.68846,0.818597,0.271646,0.867482,0.589788,0.83923,0.0956745,0.615266,0.127424,0.531923,0.743381,0.668125,0.740734,0.921163,0.221719,0.575701,0.464852,0.342874,0.53862,0.641661,0.89068,0.72201,0.264141,0.873396,0.970143,0.721959,0.396544,0.394662,0.647013,0.393545,0.206569,0.867766,0.429821,0.68377,0.661102,0.789569,0.866392,0.976039,0.526324,0.124404,0.342163,0.954867,0.483101,0.226855,0.233279,0.0911259,0.816928,0.536256,0.813251,0.972172,0.981051,0.487236,0.202133,0.70674,0.205309,0.528837,0.245484,0.037446,0.8891,0.692459,0.243971,0.357232,0.983954,0.204781,0.577314,0.821532,0.884298,0.952784,0.886137,0.46553,0.898402,0.248608,0.711331,0.886449,0.315085,0.17936,0.459264,0.783663,0.413035,0.145653,0.90997,0.0963521,0.302762,0.792569,0.965432,0.599997,0.699975,0.0497967,0.0576123,0.740006,0.571313,0.337286,0.377802,0.47928,0.27539,0.173052,0.686543,0.532032,0.174949,0.0058586,0.759539,0.908349,0.74805,0.401488,0.307797,0.072795,0.94228,0.888048,0.483729,0.0208739,0.225029,0.907567,0.613522,0.915183,0.182201,0.11191,0.422644,0.999703,0.887649,0.535294,0.134412,0.119212,0.606289,0.273864,0.801986,0.931125,0.682006,0.582932,0.376712,0.831038,0.339934,0.709269,0.671998,0.642334,0.737437,0.0785633,0.817476,0.662899,0.555772,0.261394,0.12886,0.837583,0.40568,0.90159,0.745802,0.802791,0.934649,0.0401298,0.935402,0.135631,0.366296,0.561254,0.427728,0.690102,0.632254,0.63526,0.468909,0.76307,0.362626,0.612084,0.818828,0.00800389,0.134265,0.0414324,0.50729,0.283497,0.616851,0.96483,0.0232838,0.124682,0.0873524,0.196781,0.73299,0.695469,0.0378919,0.870367,0.684538,0.356994,0.275259,0.768791,0.56407,0.510786,0.612861,0.688554,0.505611,0.281922,0.628251,0.500725,0.388037,0.222764,0.270183,0.0533658,0.554914,0.648936,0.160929,0.736289,0.685926,0.134323,0.0110521,0.808447,0.0131626,0.812029,0.477613,0.920916,0.492863,0.419892,0.743742,0.636981,0.678401,0.350061,0.113887,0.748763,0.499265,0.991037,0.697142,0.441402,0.253876,0.0857422,0.698054,0.269692,0.974071,0.927043,0.369919,0.175174,0.843717,0.101521,0.868892,0.797279,0.894111,0.307936,0.874666,0.0169557,0.337462,0.307041,0.10068,0.227165,0.0391709,0.736458,0.134756,0.890382,0.80321,0.843105,0.428988,0.717979,0.280237,0.779979,0.0564885,0.699656,0.36007,0.764708,0.587797,0.319626,0.493744,0.828897,0.210878,0.784986,0.935756,0.239193,0.617143,0.0813361,0.380641,0.634514,0.118457,0.717739,0.165923,0.540924,0.0707189,0.692772,0.809166,0.141668,0.814806,0.782535,0.0563676,0.829707,0.283187,0.327701,0.830076,0.65864,0.572504,0.275351,0.467047,0.502496,0.561676,0.984452,0.656839,0.210426,0.327435,0.339513,0.273068,0.469391,0.635988,0.780307,0.335328,0.800505,0.907464,0.302909,0.868576,0.0886958,0.604852,0.995675,0.782473,0.554036,0.685034,0.108591,0.824984,0.258789,0.946745,0.517778,0.549992,0.198863,0.971292,0.866666,0.933746,0.59486,0.608036,0.387778,0.198611,0.942802,0.704877,0.240695,0.874007,0.14422,0.561646,0.482117,0.295752,0.888699,0.828227,0.476014,0.818497,0.181438,0.772054,0.944227,0.301026,0.657431,0.893541,0.5182,0.419012,0.553316,0.557678,0.711758,0.739425,0.199567,0.896564,0.0474777,0.349597,0.812576,0.884164,0.158122,0.531581,0.102376,0.0872288,0.0229747,0.354249,0.735329,0.38903,0.706055,0.590169,0.392373,0.756471,0.615296,0.916569,0.250636,0.673397,0.200324,0.578772,0.178124,0.568927,0.898921,0.108022,0.566908,0.449522,0.528719,0.581197,0.548442,0.994234,0.211785,0.599476,0.55549,0.401701,0.280454,0.429293,0.0686074,0.195308,0.69838,0.177593,0.61888,0.0573318,0.512112,0.499509,0.39664,0.0745147,0.865406,0.408855,0.649393,0.748609,0.242102,0.240254,0.283166,0.278913,0.678334,0.839016,0.678421,0.185757,0.389493,0.574712,0.619376,0.143176,0.925663,0.986081,0.664178,0.10647,0.396755,0.10392,0.488886,0.490982,0.825487,0.94483,0.358057,0.447664,0.244063,0.595384,0.379338,0.154447,0.400013,0.621791,0.292128,0.926078,0.825724,0.854144,0.119753,0.85518,0.703376,0.941577,0.531689,0.175163,0.699525,0.666289,0.994281,0.128688,0.928778,0.149793,0.256508,0.89565,0.179468,0.921065,0.941556,0.839144,0.426088,0.138888,0.523565,0.61029,0.911033,0.587155,0.138808,0.276688,0.941632,0.161776,0.392394,0.110033,0.898416,0.121377,0.93789,0.479562,0.26372,0.223105,0.924727,0.614978,0.422999,0.0331972,0.2179,0.342843,0.150665,0.170534,0.183032,0.151571,0.807635,0.311827,0.650815,0.723791,0.115699,0.114421,0.322982,0.00749654,0.815784,0.526821,0.752309,0.402523,0.184579,0.238202,0.345601,0.923899,0.10213,0.726184,0.394047,0.325226,0.708162,0.17951,0.79464,0.566033,0.610378,0.978729,0.0158026,0.973517,0.645602,0.409944,0.979198,0.618163,0.951876,0.165621,0.447335,0.859334,|0.967192,0.271021,0.454844,0.226195,0.0875748,0.467612,0.810161,0.148141,0.655946,0.534484,0.77346,0.174429,0.179874,0.61654,0.057838,0.99778,0.564892,0.589225,0.117761,0.88625,0.0532688,0.298862,0.325373,0.839657,0.686599,0.214779,0.0146439,0.326497,0.743623,0.260787,0.851431,0.545912,0.376346,0.588076,0.959253,0.074759,0.462331,0.0185404,0.806666,0.852323,0.128208,0.687255,0.521191,0.444854,0.55697,0.564106,0.973934,0.327553,0.769855,0.554189,0.161537,0.165843,0.772633,0.868442,0.648945,0.936702,0.449506,0.781438,0.668679,0.559095,0.995311,0.0898603,0.324472,0.581447,0.622961,0.15064,0.630619,0.983036,0.026365,0.898379,0.864467,0.745452,0.460156,0.419937,0.786615,0.194429,0.0171363,0.273439,0.921225,0.0386546,0.52177,0.53009,0.847719,0.194753,0.623653,0.246265,0.0601298,0.0900692,0.691203,0.041023,0.262042,0.929803,0.249679,0.439547,0.0111578,0.795639,0.0825371,0.941589,0.806101,0.579051,0.522335,0.80769,0.849456,0.725455,0.0894223,0.959624,0.673283,0.49791,0.183775,0.242885,0.663793,0.956572,0.543675,0.374143,0.600558,0.416344,0.264621,0.648328,0.355143,0.992091,0.571211,0.427013,0.616854,0.750396,0.386997,0.0760621,0.125857,0.739102,0.0632357,0.776682,0.674628,0.342274,0.115948,0.118096,0.984341,0.422659,0.959621,0.324927,0.109928,0.549408,0.745397,0.375873,0.260744,0.699778,0.274076,0.47575,0.928095,0.0448137,0.799897,0.994893,0.142348,0.772762,0.866526,0.726715,0.971375,0.756391,0.157958,0.685067,0.509736,0.0729305,0.160447,0.579671,0.816197,0.789316,0.0822609,0.956838,0.272147,0.905226,0.584902,0.101617,0.544258,0.848765,0.731341,0.13552,0.998242,0.903742,0.823016,0.154717,0.419015,0.447996,0.0729343,0.344469,0.660691,0.277351,0.0157824,0.480597,0.651475,0.0688573,0.707294,0.915401,0.0273699,0.0673286,0.154149,0.919486,0.730969,0.877631,0.229276,0.10987,0.399749,0.821675,0.0720229,0.230989,0.757042,0.630555,0.147292,0.0620093,0.761192,0.382928,0.420191,0.767468,0.734083,0.531665,0.672376,0.936317,0.476271,0.934634,0.107294,0.833809,0.0777985,0.244361,0.328184,0.707421,0.785226,0.908148,0.443264,0.537759,0.508383,0.320405,0.59397,0.172681,0.801521,0.6059,0.159459,0.73416,0.0977589,0.205679,0.883783,0.32974,0.975215,0.00730556,0.0936561,0.867401,0.16117,0.848987,0.632556,0.394632,0.147759,0.696327,0.719559,0.663208,0.851497,0.896712,0.226621,0.623415,0.0439317,0.591358,0.500512,0.905765,0.109362,0.544025,0.101045,0.776028,0.913323,0.994264,0.453562,0.0197659,0.353479,0.104508,0.72358,0.31238,0.257256,0.694996,0.486463,0.394989,0.385131,0.366763,0.993303,0.115323,0.722658,0.104115,0.538641,0.942697,0.501146,0.446423,0.306905,0.22689,0.316376,0.766951,0.555754,0.0827068,0.940849,0.514996,0.5417,0.83081,0.530512,0.181045,0.439322,0.963964,0.839791,0.586774,0.230539,0.90586,0.729174,0.545023,0.914323,0.465705,0.472855,0.627597,0.356721,0.354195,0.480114,0.817819,0.41122,0.742741,0.318905,0.791802,0.611102,0.634492,0.83748,0.825123,0.543594,0.764179,0.735328,0.620825,0.88913,0.816968,0.945376,0.945248,0.690598,0.534348,0.481075,0.248173,0.398631,0.511412,0.0591682,0.823171,0.515668,0.695811,0.222435,0.668743,0.350124,0.413818,0.896834,0.364764,0.0314022,0.293845,0.00480556,0.902341,0.140474,0.10384,0.993441,0.0199711,0.600031,0.38154,0.295504,0.244301,0.613949,0.999227,0.156547,0.292239,0.400099,0.214763,0.506432,0.583992,0.68784,0.383515,0.260062,0.0571235,0.745047,0.730964,0.0609365,0.868022,0.203418,0.382658,0.892294,0.200162,0.126824,0.60558,0.157944,0.233858,0.326452,0.471137,0.572388,0.694922,0.141872,0.565747,0.404779,0.149801,0.24411,0.175816,0.402776,0.956601,0.533028,0.300578,0.365751,0.0433942,0.446011,0.723966,0.695599,0.491727,0.268814,0.595677,0.315594,0.825961,0.388827,0.953891,0.471766,0.769989,0.0670817,0.420498,0.530917,0.93074,0.00654304,0.722232,0.627433,0.0903615,0.339097,0.170783,0.706155,0.770731,0.0158958,0.371888,0.960873,0.142215,0.659085,0.389882,0.552753,0.212155,0.448759,0.341523,0.2161,0.0588665,0.186209,0.955729,0.0107011,0.857598,0.320731,0.625918,0.877252,0.214853,0.624871,0.0931582,0.493666,0.558469,0.615633,0.976727,0.171435,0.357304,0.188795,0.674989,0.704975,0.690182,0.0622093,0.0813586,0.393087,0.431602,0.262696,0.247952,0.596151,0.822365,0.217595,0.579437,0.741579,0.962019,0.384357,0.897325,0.506951,0.0610102,0.403111,0.133036,0.734868,0.789885,0.498964,0.542053,0.29683,0.0281381,0.617915,0.877826,0.815535,0.726011,0.376413,0.295997,0.587003,0.0259576,0.421876,0.0135091,0.004866,0.731699,0.505131,0.901513,0.946021,0.294012,0.171594,0.117364,0.67008,0.388103,0.474227,0.30301,0.0799555,0.00227201,0.831421,0.988791,0.14768,0.613192,0.479245,0.0929588,0.373232,0.523891,0.913616,0.762001,0.256997,0.822225,0.52662,0.762085,0.404648,0.504588,0.988342,0.66424,0.833421,0.826179,0.168596,0.983397,0.659147,0.32197,0.703575,0.434431,0.849585,0.892168,0.978313,0.268453,0.819291,0.329191,0.502777,0.989746,0.325464,0.743795,0.399997,0.135254,0.946574,0.861203,0.515772,0.890412,0.731338,0.411906,0.537896,0.508278,0.412009,0.303074,0.984052,0.225527,0.172761,0.0404568,0.442024,0.0246351,0.945632,0.974115,0.771141,0.040171,0.2316,0.170139,0.724192,0.131689,0.986948,0.723393,0.955234,0.00206852,0.383887,0.828621,0.26669,0.45184,0.214308,0.800336,0.655432,0.674993,0.153096,0.848282,0.832129,0.244667,0.677426,0.460476,0.647321,0.507453,0.207837,0.989579,0.0474287,0.511864,0.590165,0.69584,0.252867,0.997074,0.980905,0.0562164,0.954469,0.442565,0.383,0.832383,0.939158,0.413766,0.304431,0.815897,0.513974,0.835886,0.93874,0.196426,0.856181,0.213371,0.971088,0.606518,0.477964,0.310587,0.963045,0.0428861,0.425588,0.431641,0.164371,0.595149,0.70512,0.641965,0.381993,0.412162,0.181415,0.871544,0.257377,0.981104,0.0724996,0.511669,0.643433,0.0637472,0.0290704,0.645649,0.4082,0.932704,0.156292,0.22224,0.368627,0.189364,0.503184,0.432803,0.00533378,0.40397,0.625855,0.552596,0.637512,0.767962,0.151972,0.147844,0.703375,0.196177,0.810232,0.81705,0.510085,0.81985,0.849642,0.792219,0.0580801,0.117874,0.31042,0.94048,0.0310547,0.944801,0.778218,0.975353,0.831571,0.445504,0.780704,0.61287,0.423089,0.50033,0.276655,0.096862,0.207359,0.957604,0.755946,0.0498268,0.362119,0.438784,0.474981,0.732552,0.813644,0.67954,0.773354,0.511853,0.881675,0.452798,0.0116026,0.931908,0.902407,0.50015,0.91445,0.592277,0.115162,0.795163,0.616358,0.207192,0.0556061,0.0464738,0.280882,0.580724,0.156089,0.418102,0.145584,0.0760511,0.323829,0.617859,0.357874,0.302692,0.730376,0.295806,0.518383,0.201995,0.759797,0.314764,0.817137,0.221696,0.517631,0.0685059,0.847115,0.859665,0.730312,0.950528,0.724133,0.502693,0.889062,0.0782462,0.68348,0.765526,0.989477,0.16192,0.0551144,0.670771,0.805967,0.603067,0.437651,0.560674,0.748889,0.283163,0.40383,0.746159,0.946426,0.997524,0.544068,0.205676,0.512581,0.123888,0.325463,0.470853,0.181877,0.0858703,0.679647,0.385378,0.00790155,0.467783,0.461164,0.451967,0.805141,0.352749,0.890522,0.988173,0.651527,0.863828,0.383998,0.28917,0.25892,0.00526422,0.27083,0.0270684,0.769385,0.547823,0.97594,0.971587,0.580268,0.68998,0.201106,0.762475,0.648458,0.338171,0.223759,0.394769,0.826725,0.278186,0.783621,0.271979,0.113485,0.350479,0.203568,0.63523,0.499628,0.579175,0.0542628,0.877361,0.803236,0.936726,0.808888,0.159911,0.357135,0.421095,0.68956,0.978783,0.150895,0.332633,0.17747,0.804735,0.589779,0.0887885,0.151857,0.792329,0.878551,0.641801,0.401684,0.361691,0.651627,0.704703,0.422168,0.421264,0.34262,0.870598,0.388908,0.7091,0.5923,0.943855,0.808379,0.299517,0.316411,0.445189,0.463418,0.650925,0.0283418,0.272175,0.783813,0.784628,0.232351,0.506452,0.975255,0.94179,0.904323,0.564905,0.695606,0.579426,0.978771,0.169773,0.693826,0.474478,0.802812,0.911783,0.345554,0.0921653,0.611422,0.373241,0.373708,0.0335796,0.844205,0.803972,0.550926,0.961137,0.265929,0.998234,0.365182,0.430335,0.865456,0.0742335,0.234592,0.20226,0.485789,0.67343,0.35171,0.713332,0.920396,0.723414,0.0305999,0.181535,0.910002,0.451849,0.888902,0.417228,0.0524889,0.819793,0.470046,0.0668885,0.219538,0.6704,0.82765,0.991807,0.741232,0.473272,0.450762,0.939691,0.528752,0.94602,0.449452,0.69959,0.860148,0.456978,0.0656298,0.979318,0.853771,0.503832,0.455608,0.278397,0.57623,0.687663,0.973389,0.349844,0.708423,0.811542,0.428687,0.42726,0.224733,0.523998,0.536229,0.638638,0.607255,0.240779,0.743599,0.548296,0.212359,0.469451,0.818335,0.911627,0.434886,0.360514,0.734781,0.765912,0.348054,0.618669,0.540502,0.23327,0.140754,0.72704,0.570309,0.650555,0.0884349,0.0357422,0.467556,0.337713,0.812888,0.0123814,0.414734,0.267116,0.354814,0.873127,0.407682,0.782203,0.676247,0.142585,0.290635,0.327811,0.751248,0.535646,0.452412,0.74281,0.882081,0.0367964,0.563689,0.193577,0.434038,0.895665,0.822753,0.583417,0.0892849,0.910906,0.733905,0.804544,0.779868,0.533583,0.340192,0.321513,0.209686,0.043842,0.341212,0.103292,0.0633796,0.19317,0.0706848,0.488033,0.000628829,0.0710499,0.511802,0.208676,0.316556,0.172632,0.640684,0.052301,0.135181,0.78582,0.826639,0.951265,0.218787,0.285897,0.229043,0.872368,0.528001,0.45049,0.921838,0.643565,0.00122029,0.612907,0.335299,0.548591,0.917003,0.286895,|0.106192,0.176648,0.349063,0.960615,0.569505,0.827097,0.207705,0.620388,0.654383,0.89915,0.914043,0.693049,0.195314,0.0787424,0.363632,0.819495,0.587845,0.782479,0.270793,0.114007,0.690615,0.280134,0.674803,0.323151,0.173858,0.489869,0.129831,0.624761,0.617916,0.797554,0.707804,0.771123,0.314872,0.483067,0.181576,0.0885752,0.220123,0.305869,0.297807,0.41957,0.575757,0.662283,0.831515,0.105593,0.342031,0.205042,0.594555,0.743285,0.117397,0.264831,0.0344147,0.409212,0.971929,0.565125,0.140544,0.993231,0.514902,0.459972,0.383994,0.489577,0.330989,0.315509,0.756512,0.8748,0.109994,0.78674,0.146416,0.157399,0.780469,0.758263,0.877724,0.846988,0.0267444,0.625379,0.822609,0.99617,0.484914,0.961215,0.514275,0.377012,0.828536,0.206646,0.112033,0.73533,0.830125,0.8322,0.237271,0.539198,0.999055,0.65568,0.3304,0.973975,0.892033,0.559773,0.302257,0.14716,0.616722,0.267299,0.87728,0.00200635,0.0696196,0.750059,0.778032,0.653864,0.83478,0.939311,0.419151,0.502298,0.579786,0.0495294,0.412458,0.00232536,0.902405,0.322377,0.24388,0.162788,0.450463,0.483075,0.590732,0.195046,0.821558,0.602939,0.790139,0.000870585,0.309326,0.191559,0.368487,0.28601,0.31554,0.976071,0.707877,0.852072,0.188513,0.196274,0.353761,0.926813,0.861869,0.0024783,0.311603,0.00787508,0.84103,0.315553,0.553623,0.407138,0.869932,0.353948,0.717776,0.995627,0.276422,0.69177,0.471353,0.65591,0.772989,0.0335091,0.146577,0.270639,0.431501,0.332373,0.23513,0.367748,0.772465,0.186502,0.945601,0.0984153,0.341592,0.0591654,0.298653,0.850572,0.0510544,0.342169,0.135657,0.241843,0.802386,0.849564,0.115496,0.541103,0.91437,0.905324,0.895675,0.0312928,0.235269,0.345522,0.950684,0.835741,0.201022,0.845213,0.366267,0.612288,0.207402,0.431674,0.249686,0.0618429,0.319074,0.242431,0.302979,0.808352,0.82701,0.0422673,0.302932,0.57932,0.625383,0.88532,0.00288683,0.409598,0.344679,0.0372416,0.62656,0.887398,0.804301,0.500714,0.490977,0.557257,0.738028,0.253023,0.86601,0.702345,0.856719,0.437612,0.202595,0.67485,0.989386,0.00630051,0.782298,0.346167,0.144054,0.305739,0.490513,0.52707,0.903918,0.282678,0.269607,0.987475,0.579776,0.976095,0.867809,0.429161,0.52979,0.15772,0.691521,0.631206,0.341962,0.755277,0.532153,0.91757,0.706085,0.740509,0.126859,0.0929711,0.265335,0.647411,0.721703,0.913957,0.192274,0.585227,0.12309,0.0613582,0.723855,0.708425,0.322467,0.761325,0.583378,0.2312,0.325569,0.128357,0.190001,0.920655,0.527956,0.543285,0.932482,0.426035,0.513689,0.0714176,0.546511,0.959459,0.177819,0.380462,0.542232,0.368712,0.161345,0.962035,0.506202,0.471607,0.955429,0.366317,0.319375,0.199725,0.218174,0.745625,0.772211,0.176724,0.6387,0.0444413,0.366711,0.0854324,0.17348,0.139691,0.303608,0.6212,0.99511,0.0252426,0.37529,0.428483,0.528675,0.261984,0.000271618,0.119353,0.0933258,0.275791,0.00917715,0.200234,0.167167,0.940617,0.290307,0.937926,0.939885,0.845755,0.790289,0.835298,0.901535,0.0753117,0.533473,0.562699,0.454107,0.327536,0.940416,0.431829,0.695201,0.148715,0.642845,0.465187,0.0625465,0.446177,0.497929,0.707545,0.955898,0.371733,0.329317,0.152467,0.209262,0.67357,0.313469,0.771347,0.398138,0.584112,0.193768,0.219605,0.830512,0.802936,0.443598,0.812803,0.472297,0.575741,0.126227,0.655688,0.240692,0.361212,0.689761,0.0594313,0.458726,0.486128,0.958986,0.232102,0.393124,0.535763,0.489577,0.134756,0.963045,0.103632,0.27412,0.426001,0.864618,0.776105,0.307023,0.128578,0.043488,0.866828,0.0376085,0.664504,0.978248,0.170542,0.19839,0.198436,0.711768,0.559304,0.899286,0.351404,0.477304,0.909096,0.296135,0.97555,0.803402,0.367351,0.567881,0.472215,0.807327,0.644901,0.51309,0.341021,0.140467,0.561251,0.971235,0.415985,0.856805,0.0629787,0.903466,0.267435,0.312962,0.966779,0.979959,0.672658,0.273949,0.768956,0.548903,0.950564,0.300275,0.927285,0.62972,0.755855,0.988574,0.974479,0.886709,0.26286,0.984946,0.114226,0.810556,0.837893,0.72424,0.0646545,0.556406,0.432969,0.239235,0.704842,0.434897,0.0142736,0.63215,0.346702,0.315297,0.384804,0.261619,0.741267,0.694858,0.0383201,0.702007,0.258428,0.831329,0.728568,0.858146,0.306181,0.11974,0.449616,0.616137,0.754078,0.570839,0.225101,0.548588,0.90563,0.821019,0.227323,0.326362,0.0242869,0.646267,0.409612,0.896346,0.570229,0.893972,0.607377,0.95608,0.758102,0.900403,0.968304,0.256919,0.939852,0.378676,0.12468,0.290977,0.305847,0.5432,0.355284,0.918568,0.710491,0.0685166,0.878042,0.838652,0.883829,0.327156,0.377542,0.0454566,0.378415,0.859286,0.468565,0.757692,0.449059,0.493,0.510777,0.896318,0.447187,0.997441,0.372075,0.695709,0.64483,0.457665,0.271815,0.57898,0.869556,0.30217,0.809328,0.364755,0.549904,0.503048,0.454712,0.375181,0.102727,0.805223,0.618411,0.115624,0.33614,0.865404,0.270778,0.543605,0.0844523,0.397194,0.929873,0.894858,0.361471,0.77312,0.933295,0.957706,0.130574,0.724949,0.973208,0.692509,0.724277,0.983826,0.750357,0.296905,0.227641,0.516608,0.105424,0.393248,0.0430205,0.838293,0.987082,0.555954,0.806798,0.029543,0.910519,0.520365,0.791912,0.336124,0.423705,0.086863,0.000787377,0.52153,0.611441,0.73686,0.560112,0.725225,0.935791,0.744021,0.616454,0.833953,0.385388,0.0794914,0.837834,0.730495,0.0804811,0.801171,0.0293392,0.926159,0.0876545,0.0368466,0.709998,0.216027,0.0426235,0.158093,0.72117,0.42635,0.0501692,0.678631,0.313463,0.10661,0.473428,0.444785,0.699525,0.76928,0.538699,0.937217,0.547627,0.819139,0.829146,0.192612,0.200535,0.0469207,0.654017,0.104598,0.520076,0.77821,0.504822,0.36377,0.685372,0.233919,0.466674,0.821944,0.3817,0.246887,0.725197,0.172377,0.198464,0.747866,0.546102,0.283179,0.459212,0.626564,0.534316,0.492199,0.438954,0.109509,0.116023,0.586887,0.31717,0.609779,0.260577,0.0954047,0.460725,0.0437011,0.4123,0.685159,0.297696,0.378517,0.1133,0.114709,0.865645,0.503216,0.373214,0.817142,0.460842,0.428391,0.617954,0.490963,0.188858,0.866067,0.544389,0.0212818,0.75153,0.288234,0.794655,0.420951,0.721034,0.673034,0.913047,0.901828,0.496058,0.728788,0.796068,0.513674,0.960852,0.882464,0.900482,0.160226,0.829687,0.954942,0.94867,0.561388,0.69438,0.891493,0.0488459,0.924998,0.468407,0.834599,0.38148,0.905006,0.0278054,0.105731,0.379118,0.831208,0.193763,0.727444,0.94779,0.905629,0.445038,0.0220872,0.878149,0.614532,0.0309701,0.830917,0.52408,0.722985,0.288673,0.0759847,0.315128,0.29746,0.65315,0.025332,0.640307,0.484699,0.267426,0.761349,0.380061,0.699799,0.196296,0.526033,0.916111,0.412533,0.763308,0.819976,0.966277,0.352262,0.97583,0.51639,0.877556,0.12805,0.497383,0.812827,0.220982,0.803766,0.903062,0.988199,0.333564,0.75442,0.790372,0.877281,0.696898,0.270716,0.712362,0.619362,0.980168,0.266095,0.711314,0.487616,0.236038,0.357931,0.129789,0.421795,0.0646694,0.521835,0.323623,0.879504,0.658454,0.711499,0.00368702,0.563931,0.251613,0.589738,0.0844119,0.738568,0.513345,0.432475,0.296105,0.229931,0.0565461,0.362847,0.293732,0.496312,0.0689282,0.591898,0.686349,0.335315,0.345735,0.992969,0.597781,0.000789762,0.0144479,0.270204,0.125442,0.230097,0.185409,0.104314,0.556121,0.253168,0.998379,0.682764,0.763218,0.357377,0.991121,0.395372,0.82079,0.40128,0.494468,0.395377,0.652514,0.539346,0.456779,0.374671,0.475095,0.662702,0.981197,0.603764,0.220549,0.320341,0.177357,0.372142,0.55695,0.468632,0.229327,0.492743,0.0804762,0.883822,0.981531,0.241825,0.0662277,0.739391,0.810278,0.209224,0.0204363,0.343116,0.924599,0.0762911,0.503898,0.0986654,0.517265,0.159611,0.545561,0.660923,0.750826,0.114288,0.102567,0.114047,0.420259,0.271963,0.629419,0.200413,0.0471039,0.322126,0.740435,0.0420756,0.848363,0.830197,0.596403,0.829641,0.140688,0.786855,0.443499,0.771087,0.251294,0.490907,0.517916,0.944215,0.343294,0.15235,0.588715,0.523497,0.587915,0.580995,0.106392,0.65413,0.711319,0.335531,0.661642,0.207642,0.578678,0.950757,0.786982,0.5879,0.699581,0.0512554,0.249544,0.718305,0.832993,0.344956,0.39917,0.845482,0.124749,0.478412,0.209316,0.588684,0.690233,0.599694,0.408412,0.751243,0.12528,0.812961,0.820099,0.161617,0.411046,0.816278,0.00551045,0.0271291,0.815705,0.50802,0.611697,0.885052,0.599093,0.617564,0.751675,0.976972,0.691533,0.16872,0.440674,0.936471,0.546921,0.94177,0.277779,0.787194,0.486431,0.825145,0.807469,0.144463,0.163777,0.874159,0.637788,0.18835,0.147442,0.171451,0.431264,0.549777,0.744761,0.796917,0.867891,0.453249,0.543191,0.609371,0.719427,0.267056,0.793471,0.234608,0.695515,0.844882,0.149125,0.901105,0.444636,0.0566872,0.44464,0.975463,0.156853,0.0853379,0.0134624,0.455276,0.585854,0.719069,0.190494,0.191878,0.204778,0.428242,0.379807,0.509606,0.191253,0.83964,0.283234,0.603769,0.887371,0.334666,0.235078,0.341876,0.455362,0.560226,0.819843,0.0486292,0.484817,0.198483,0.0501815,0.581535,0.669143,0.963717,0.318561,0.61291,0.555503,0.50466,0.118021,0.0736878,0.163268,0.229533,0.921747,0.801232,0.48595,0.714455,0.360478,0.290696,0.109343,0.82295,0.884747,0.969858,0.224969,0.910521,0.109094,0.106469,0.489872,0.918745,0.442345,0.48096,0.979797,0.966233,0.69109,0.776794,0.851346,0.326951,0.771709,0.895391,0.84186,0.225453,0.245804,0.568811,0.853858,0.0124914,0.23558,0.762481,0.193053,0.683674,0.124242,0.369699,0.934996,|0.432698,0.725771,0.733402,0.28246,0.318616,0.694383,0.641496,0.337771,0.469326,0.92374,0.337083,0.973625,0.166863,0.634512,0.854975,0.316226,0.464774,0.699145,0.903162,0.199793,0.726642,0.874079,0.13836,0.0186816,0.735359,0.441101,0.493019,0.28421,0.910335,0.748099,0.597559,0.0264905,0.742523,0.978589,0.347291,0.65555,0.843508,0.771175,0.607361,0.0742502,0.357856,0.174781,0.560903,0.775854,0.732486,0.17249,0.258924,0.206807,0.701442,0.373876,0.269694,0.323478,0.062179,0.537014,0.751222,0.888924,0.864876,0.518102,0.518807,0.65263,0.53138,0.74114,0.951321,0.349238,0.555661,0.0642507,0.0411093,0.816019,0.894549,0.42044,0.251923,0.8476,0.0433532,0.376177,0.285917,0.371497,0.802041,0.994043,0.218005,0.0191408,0.738539,0.267017,0.88442,0.576311,0.348913,0.393933,0.906557,0.256361,0.7275,0.0331962,0.825432,0.133474,0.340596,0.00772119,0.921649,0.787227,0.737099,0.725534,0.023158,0.561356,0.88545,0.447082,0.799897,0.123201,0.137491,0.116355,0.289211,0.229706,0.0406966,0.249902,0.49598,0.0920888,0.0234105,0.176796,0.902513,0.108506,0.0486818,0.00285691,0.951333,0.995925,0.51382,0.618213,0.529691,0.485509,0.0969113,0.521824,0.124065,0.480455,0.642587,0.0531157,0.639676,0.103363,0.503195,0.754385,0.828,0.983691,0.546645,0.0582079,0.0239233,0.545169,0.240433,0.589812,0.0297787,0.630303,0.0409989,0.756556,0.326688,0.516216,0.870991,0.294764,0.142009,0.862682,0.508785,0.436403,0.441342,0.716006,0.286688,0.830473,0.00805789,0.0952955,0.0233438,0.753754,0.493239,0.470557,0.0161722,0.137636,0.0988971,0.361248,0.859674,0.0980788,0.693161,0.180637,0.14641,0.107806,0.0471585,0.923252,0.801481,0.756819,0.609059,0.307131,0.584295,0.367941,0.600528,0.908257,0.704277,0.322876,0.694367,0.812003,0.862285,0.033246,0.242899,0.299131,0.622657,0.286517,0.0935302,0.151123,0.899889,0.152478,0.12832,0.613535,0.786792,0.20475,0.446315,0.398198,0.473522,0.0161023,0.914618,0.965684,0.685974,0.0629517,0.046198,0.218479,0.245344,0.384985,0.0353346,0.143985,0.637022,0.183483,0.132035,0.539498,0.981274,0.950315,0.461929,0.0560594,0.374504,0.687378,0.354957,0.695775,0.694536,0.651109,0.53562,0.292542,0.25167,0.850915,0.608863,0.947681,0.340137,0.235718,0.525545,0.555113,0.185801,0.288309,0.322694,0.955395,0.573564,0.136083,0.889261,0.248544,0.453288,0.634103,0.374003,0.263786,0.0254167,0.465135,0.303874,0.840813,0.82144,0.624058,0.179379,0.144097,0.962425,0.880691,0.499129,0.34184,0.966251,0.162685,0.0164709,0.311294,0.309338,0.118278,0.201209,0.227135,0.456898,0.57781,0.083495,0.730478,0.306764,0.996697,0.487457,0.100839,0.959347,0.326727,0.847366,0.305186,0.034603,0.622011,0.651127,0.0708878,0.160674,0.485671,0.0688859,0.544198,0.99128,0.681868,0.688273,0.306359,0.765409,0.849046,0.497307,0.307666,0.631677,0.382424,0.156537,0.177046,0.380249,0.748108,0.627285,0.407421,0.77982,0.201755,0.013433,0.0392929,0.0599741,0.613567,0.692182,0.42271,0.654689,0.31705,0.667015,0.4098,0.064027,0.688767,0.242103,0.721,0.269538,0.290449,0.110121,0.578904,0.62937,0.242649,0.762571,0.291581,0.129493,0.864424,0.0592499,0.278936,0.522914,0.638539,0.195626,0.693412,0.209659,0.584872,0.207789,0.105162,0.262124,0.718934,0.88905,0.121553,0.254423,0.685478,0.722586,0.10751,0.868142,0.548158,0.675762,0.86963,0.723702,0.67563,0.171862,0.979327,0.816593,0.284383,0.220833,0.389826,0.593326,0.531937,0.262789,0.862214,0.551903,0.619446,0.835468,0.715704,0.704944,0.245629,0.383295,0.13359,0.799345,0.177609,0.173911,0.760621,0.854622,0.375705,0.556716,0.0934567,0.233189,0.541846,0.136708,0.466262,0.788315,0.902825,0.262874,0.509938,0.55917,0.163648,0.41227,0.367587,0.272137,0.941576,0.867191,0.427123,0.0805863,0.619459,0.0465035,0.868275,0.802085,0.333514,0.225211,0.230115,0.254624,0.590825,0.857999,0.273382,0.288164,0.192353,0.0259765,0.697191,0.390381,0.545093,0.080403,0.6631,0.181574,0.913306,0.281956,0.22487,0.0658271,0.780874,0.485817,0.398184,0.41216,0.427327,0.692826,0.67456,0.559529,0.172341,0.596459,0.24174,0.204126,0.728861,0.593069,0.725524,0.284685,0.197521,0.553197,0.754692,0.989251,0.403904,0.482242,0.157044,0.624593,0.21749,0.331915,0.881125,0.110806,0.078398,0.816739,0.853034,0.230865,0.606773,0.565759,0.787894,0.355545,0.911137,0.00636548,0.260761,0.43156,0.256694,0.456878,0.749635,0.396521,0.85334,0.912589,0.368554,0.600139,0.792123,0.471176,0.962332,0.842024,0.478323,0.715589,0.992065,0.530475,0.923267,0.205541,0.0211669,0.233248,0.00412548,0.953361,0.000700533,0.927367,0.212031,0.11637,0.131903,0.466466,0.420322,0.504868,0.439772,0.288532,0.855646,0.800324,0.582621,0.423661,0.594581,0.3683,0.947065,0.254172,0.43805,0.885923,0.644311,0.240445,0.0817841,0.37444,0.44688,0.143319,0.0777838,0.498513,0.638825,0.20926,0.31294,0.889951,0.0518969,0.891214,0.48128,0.667295,0.499402,0.648021,0.135276,0.129166,0.599838,0.521649,0.368454,0.594907,0.417108,0.726924,0.75755,0.433431,0.968668,0.150621,0.213227,0.568823,0.947048,0.795472,0.728078,0.18097,0.0902129,0.494688,0.0133093,0.143073,0.534324,0.955526,0.868027,0.335282,0.1059,0.294914,0.944897,0.592716,0.171993,0.0799395,0.508524,0.460466,0.679951,0.0542479,0.38624,0.209762,0.659649,0.239202,0.836023,0.511682,0.22606,0.992459,0.176818,0.175221,0.10783,0.729961,0.570081,0.920956,0.461832,0.36282,0.749214,0.490351,0.276263,0.891531,0.597083,0.474333,0.109474,0.273116,0.91641,0.953054,0.834659,0.628193,0.0330327,0.915588,0.0564318,0.658807,0.73193,0.81878,0.22264,0.227507,0.897005,0.157479,0.532884,0.826917,0.996477,0.163996,0.801532,0.690506,0.473089,0.45723,0.125018,0.310852,0.711463,0.872905,0.781886,0.275336,0.66923,0.368517,0.908025,0.773341,0.402661,0.628297,0.026406,0.143638,0.925014,0.0733055,0.284333,0.792077,0.442645,0.856737,0.477775,0.255011,0.200719,0.66498,0.836803,0.188933,0.70392,0.888909,0.198194,0.755077,0.788814,0.903284,0.273443,0.498681,0.0313955,0.490828,0.739421,0.825409,0.806637,0.592965,0.267553,0.596863,0.384489,0.141341,0.739399,0.995845,0.861929,0.881078,0.0937217,0.227219,0.79083,0.149492,0.951862,0.700507,0.423079,0.619276,0.594862,0.739784,0.773707,0.965576,0.438346,0.918303,0.218909,0.870521,0.473284,0.600061,0.388657,0.605791,0.541979,0.355409,0.976027,0.976325,0.007972,0.5207,0.652829,0.115036,0.369041,0.104641,0.560113,0.53016,0.888578,0.408822,0.599349,0.922837,0.778103,0.871618,0.849964,0.384278,0.295482,0.52456,0.930001,0.845118,0.574515,0.255502,0.81101,0.318455,0.727941,0.623505,0.12821,0.758244,0.620029,0.910447,0.956689,0.372241,0.0043838,0.528761,0.371943,0.722755,0.185438,0.658009,0.118401,0.358026,0.154747,0.366848,0.948819,0.867628,0.305481,0.245388,0.936173,0.464215,0.960277,0.946167,0.549896,0.121866,0.44194,0.430024,0.51097,0.288259,0.369147,0.635648,0.503731,0.221821,0.933701,0.469372,0.493987,0.841098,0.220064,0.842741,0.140737,0.264836,0.508154,0.781746,0.598689,0.837567,0.903074,0.78663,0.128549,0.827514,0.531058,0.492985,0.00109679,0.194306,0.645921,0.454801,0.239126,0.975134,0.983937,0.0882077,0.0915529,0.702195,0.692801,0.279301,0.927988,0.973681,0.0807551,0.0150723,0.0426466,0.535997,0.394605,0.779945,0.560148,0.892092,0.474774,0.851773,0.110775,0.512277,0.172495,0.525085,0.6972,0.666774,0.216556,0.0109826,0.514377,0.615999,0.303604,0.29074,0.598812,0.475201,0.324322,0.489402,0.436521,0.394526,0.395181,0.782848,0.167814,0.389649,0.205159,0.816493,0.0292693,0.254316,0.0279375,0.963903,0.445282,0.382067,0.0284849,0.86708,0.120895,0.962223,0.00992787,0.373281,0.932966,0.258241,0.929465,0.388378,0.656722,0.215075,0.148812,0.894963,0.88753,0.174941,0.491189,0.662694,0.506651,0.084504,0.369343,0.108789,0.948085,0.000800252,0.708665,0.700637,0.218661,0.160118,0.0638179,0.365839,0.623324,0.80766,0.791821,0.174835,0.506234,0.820111,0.941409,0.0983291,0.843808,0.780416,0.0289119,0.827033,0.646731,0.116781,0.145779,0.523467,0.928971,0.320104,0.41636,0.515653,0.540138,0.654592,0.218619,0.743753,0.750732,0.487618,0.17769,0.640433,0.0739428,0.215552,0.957692,0.386994,0.622832,0.298422,0.0982108,0.322663,0.570703,0.830477,0.533519,0.844913,0.652626,0.818752,0.195523,0.527665,0.400808,0.446914,0.128903,0.551269,0.677299,0.232217,0.529315,0.323988,0.791135,0.770883,0.232929,0.60356,0.194823,0.232745,0.255554,0.728674,0.407257,0.515814,0.683761,0.294972,0.4164,0.518137,0.108488,0.00793588,0.704988,0.35727,0.832896,0.91258,0.556336,0.843788,0.705554,0.702691,0.00721341,0.176566,0.0535948,0.783295,0.350238,0.869988,0.114284,0.707926,0.23806,0.155084,0.37929,0.0444672,0.218149,0.348429,0.421454,0.0380363,0.344592,0.968102,0.358574,0.107413,0.722291,0.338655,0.06171,0.988139,0.50701,0.016194,0.44876,0.347052,0.0674814,0.720577,0.0925026,0.453983,0.220505,0.416762,0.898755,0.824686,0.983378,0.419674,0.286127,0.408926,0.841534,0.827626,0.775503,0.0230799,0.657143,0.0562373,0.20273,0.773614,0.248573,0.786806,0.0535771,0.478592,0.703397,0.527392,0.680922,0.591458,0.545595,0.834988,0.0756025,0.859828,0.533226,0.924458,0.664097,0.068776,0.890619,0.551878,0.362976,0.615301,0.669657,0.72489,0.591382,0.120057,0.222726,0.238605,0.575762,0.512519,0.055915,0.974826,0.559016,0.416912,0.34257,0.577675,0.486865,|0.99618,0.309806,0.909729,0.86696,0.128378,0.365257,0.624195,0.171063,0.816333,0.710708,0.607164,0.199883,0.171573,0.792636,0.492968,0.193213,0.052452,0.48403,0.382555,0.465588,0.950467,0.250263,0.485528,0.859908,0.188008,0.906917,0.873382,0.820365,0.759429,0.195408,0.218491,0.774298,0.687045,0.241731,0.782614,0.778765,0.874014,0.119077,0.298344,0.243296,0.357248,0.0385543,0.674465,0.619131,0.591587,0.212334,0.965734,0.336491,0.71535,0.373416,0.238989,0.0341026,0.255301,0.963463,0.814672,0.530596,0.518567,0.609128,0.891315,0.889744,0.0613465,0.853563,0.0175605,0.352439,0.421781,0.645481,0.472726,0.242993,0.815357,0.731087,0.98852,0.966516,0.54425,0.530335,0.0374895,0.132077,0.24713,0.250683,0.95681,0.264071,0.285166,0.987113,0.308457,0.469798,0.29146,0.898724,0.580172,0.917248,0.855296,0.144779,0.462299,0.940076,0.687997,0.0511805,0.830024,0.104932,0.790887,0.774092,0.152075,0.630195,0.146116,0.749553,0.473542,0.561707,0.934985,0.0131237,0.643466,0.261122,0.18368,0.11219,0.931678,0.0511526,0.564199,0.0918254,0.714837,0.90929,0.537911,0.667916,0.0953615,0.866576,0.732249,0.15395,0.888961,0.884386,0.50599,0.143438,0.19453,0.785803,0.900051,0.870485,0.553499,0.908263,0.0865941,0.795651,0.164189,0.0224221,0.754913,0.998222,0.965377,0.932748,0.498049,0.487383,0.62908,0.180404,0.629391,0.351665,0.595877,0.66917,0.732055,0.791759,0.416012,0.55891,0.554486,0.588967,0.568399,0.595139,0.534204,0.0195493,0.641393,0.347826,0.711428,0.552554,0.865101,0.485095,0.821607,0.220075,0.778094,0.860879,0.942124,0.837602,0.679259,0.420573,0.282011,0.364477,0.176266,0.0185745,0.211275,0.182439,0.000368059,0.564745,0.56966,0.855898,0.40886,0.753022,0.253506,0.291815,0.965276,0.0364155,0.522508,0.703981,0.782571,0.043581,0.306818,0.0464321,0.165715,0.052735,0.689606,0.333978,0.558762,0.444744,0.457159,0.358717,0.219308,0.923674,0.616128,0.55639,0.691258,0.775304,0.1042,0.341041,0.444579,0.27387,0.938624,0.66183,0.948865,0.423884,0.635754,0.21628,0.65433,0.015173,0.509459,0.758302,0.515119,0.653021,0.349181,0.846241,0.380017,0.0966514,0.74433,0.436015,0.869448,0.805836,0.546555,0.25308,0.506596,0.959335,0.118889,0.546813,0.810259,0.421353,0.306974,0.390239,0.0198504,0.630685,0.588032,0.051677,0.88835,0.954348,0.70005,0.135096,0.297808,0.182505,0.615276,0.621217,0.961868,0.620674,0.420024,0.693549,0.765709,0.500388,0.302541,0.16151,0.72361,0.204041,0.25111,0.489255,0.157945,0.974357,0.586461,0.945154,0.821315,0.738794,0.729699,0.0462396,0.451113,0.773067,0.57404,0.524843,0.451172,0.518891,0.492407,0.916857,0.151612,0.350864,0.496344,0.854471,0.243213,0.249313,0.733267,0.994684,0.0851874,0.55617,0.281964,0.849863,0.853627,0.54601,0.220922,0.232862,0.863753,0.00351816,0.951495,0.643149,0.836794,0.519783,0.056287,0.152261,0.963984,0.0258374,0.758458,0.760401,0.0883763,0.642599,0.44921,0.428082,0.699844,0.0816128,0.354252,0.790884,0.891378,0.330859,0.961911,0.558994,0.215098,0.483757,0.192264,0.0203426,0.752873,0.131885,0.885036,0.397829,0.675109,0.328829,0.554957,0.791813,0.862747,0.42405,0.901725,0.791405,0.732491,0.0647004,0.147515,0.242975,0.84218,0.505896,0.972896,0.52505,0.344625,0.361688,0.735539,0.536933,0.988539,0.0517414,0.849544,0.238115,0.00138009,0.65243,0.607497,0.506495,0.894014,0.50729,0.590234,0.51665,0.299016,0.539101,0.060616,0.842899,0.45483,0.35373,0.492992,0.908374,0.175671,0.758944,0.170823,0.0989313,0.370874,0.117742,0.408236,0.449805,0.95042,0.48674,0.78269,0.96145,0.755601,0.518236,0.169311,0.956381,0.0603124,0.531492,0.067342,0.169254,0.934939,0.744067,0.0245082,0.945299,0.327093,0.196325,0.31267,0.921365,0.453445,0.310186,0.598852,0.529236,0.231053,0.862894,0.397086,0.706964,0.20992,0.262491,0.480608,0.97227,0.221307,0.508484,0.723819,0.769854,0.503845,0.517796,0.12611,0.80871,0.569272,0.402525,0.923354,0.0325084,0.368443,0.361747,0.133437,0.392788,0.995722,0.98387,0.590801,0.767215,0.991943,0.0906165,0.884574,0.076595,0.0556583,0.168157,0.698953,0.890507,0.555645,0.488701,0.468782,0.956165,0.927616,0.711386,0.59097,0.504933,0.0661159,0.267848,0.972311,0.609189,0.293867,0.399998,0.898277,0.565399,0.527474,0.323462,0.507374,0.378149,0.463616,0.187551,0.709637,0.45994,0.306397,0.451449,0.495631,0.0363196,0.78827,0.59675,0.367239,0.210429,0.201358,0.676924,0.911699,0.0592045,0.551314,0.759284,0.143565,0.885673,0.859843,0.925194,0.0699188,0.377667,0.137277,0.137867,0.334783,0.860527,0.671046,0.608566,0.732463,0.817605,0.299474,0.468953,0.361297,0.911651,0.380265,0.514714,0.377896,0.375666,0.86587,0.460739,0.173467,0.922578,0.61526,0.351141,0.841923,0.525479,0.347053,0.146321,0.590475,0.0471308,0.661057,0.1485,0.183977,0.336902,0.584858,0.36539,0.590879,0.0365936,0.0513424,0.423218,0.636037,0.927282,0.392297,0.78742,0.821564,0.0636736,0.0193777,0.705018,0.872171,0.129025,0.358775,0.89365,0.604855,0.629867,0.446112,0.952899,0.206855,0.672133,0.414416,0.69737,0.36367,0.202851,0.350631,0.494265,0.649045,0.62753,0.787678,0.392447,0.733209,0.552616,0.234437,0.327547,0.161563,0.496836,0.0901131,0.89888,0.227321,0.0190508,0.193866,0.528978,0.442177,0.825066,0.990664,0.386981,0.463959,0.0570174,0.773795,0.0178561,0.680277,0.419349,0.198015,0.897664,0.60915,0.88232,0.0466701,0.758767,0.0630572,0.350344,0.705683,0.639526,0.368659,0.908837,0.50419,0.0546579,0.266959,0.00022167,0.0575199,0.390134,0.310412,0.179927,0.0734438,0.546174,0.384268,0.879811,0.54915,0.857493,0.142548,0.523228,0.801835,0.137315,0.84183,0.293088,0.331301,0.343365,0.38986,0.214626,0.756371,0.996486,0.727218,0.0349141,0.99903,0.390703,0.359063,0.633988,0.251805,0.3607,0.67333,0.557104,0.89161,0.0999779,0.765834,0.23798,0.464139,0.678532,0.84695,0.52119,0.203822,0.579562,0.645692,0.66283,0.84343,0.919594,0.83059,0.769596,0.559193,0.28868,0.0198357,0.506712,0.965721,0.551749,0.61717,0.684176,0.719353,0.145958,0.821323,0.379638,0.593349,0.360329,0.355608,0.0830908,0.968379,0.93848,0.825735,0.828193,0.0251237,0.371921,0.932529,0.847561,0.6449,0.17601,0.619636,0.791469,0.390746,0.142101,0.612658,0.0939858,0.159502,0.831405,0.518929,0.253925,0.901399,0.777439,0.246067,0.934266,0.338563,0.988614,0.635889,0.07122,0.375714,0.883032,0.356766,0.0420783,0.115149,0.153451,0.821475,0.25252,0.946702,0.437359,0.957888,0.766871,0.235936,0.961258,0.395031,0.56284,0.794617,0.37568,0.790959,0.966046,0.133734,0.879416,0.670219,0.975818,0.393963,0.18441,0.81816,0.472007,0.587698,0.363799,0.160811,0.0612407,0.0318629,0.682837,0.919974,0.1763,0.0780112,0.525802,0.843156,0.151218,0.301235,0.0490947,0.645808,0.178546,0.449125,0.10523,0.926577,0.854645,0.175145,0.289479,0.0684584,0.911581,0.0761185,0.847233,0.736213,0.938134,0.130593,0.137479,0.850591,0.874917,0.277129,0.927226,0.247194,0.397749,0.496247,0.434342,0.121423,0.136786,0.73546,0.79318,0.152168,0.864875,0.942161,0.742433,0.926483,0.845229,0.0989553,0.823495,0.0153287,0.556721,0.262927,0.808355,0.945626,0.716497,0.523252,0.547052,0.709629,0.64846,0.152575,0.217661,0.106468,0.480819,0.173212,0.412056,0.910211,0.889359,0.736597,0.456631,0.743859,0.121848,0.681718,0.220386,0.106518,0.312243,0.40384,0.0212708,0.113261,0.286821,0.520443,0.64705,0.455964,0.313073,0.861764,0.612723,0.549317,0.631246,0.140055,0.907298,0.468438,0.356642,0.925112,0.633939,0.253837,0.785925,0.201217,0.952647,0.580494,0.721995,0.362735,0.740511,0.519876,0.785186,0.553961,0.909168,0.641038,0.00090915,0.537301,0.234217,0.593128,0.717941,0.019872,0.298668,0.266176,0.838888,0.948008,0.106309,0.747926,0.329885,0.262709,0.0794216,0.323556,0.362917,0.000482917,0.496517,0.604958,0.574147,0.0702477,0.257378,0.496815,0.189879,0.627536,0.0562768,0.524549,0.327307,0.790354,0.535076,0.0586098,0.0899449,0.284565,0.963418,0.669405,0.794208,0.650233,0.10685,0.0607109,0.899731,0.269669,0.743573,0.788777,0.320557,0.109024,0.117204,0.819152,0.947642,0.938162,0.227058,0.00379854,0.603118,0.474186,0.0956591,0.816914,0.789901,0.19637,0.895224,0.669565,0.198433,0.305571,0.152138,0.218997,0.154788,0.329216,0.0679728,0.429502,0.931297,0.676225,0.741679,0.0984619,0.782699,0.135543,0.563519,0.532067,0.267043,0.667047,0.207392,0.467894,0.989166,0.576459,0.553268,0.84737,0.00174701,0.506365,0.28187,0.393608,0.0848174,0.304867,0.813891,0.706656,0.863517,0.514127,0.211161,0.637469,0.194644,0.329781,0.0102461,0.106605,0.843345,0.0967519,0.742822,0.216721,0.747427,0.226288,0.329855,0.576203,0.840321,0.381968,0.940889,0.775556,0.23497,0.00488621,0.0412932,0.248109,0.556428,0.417942,0.23231,0.832946,0.713299,0.519203,0.508586,0.721946,0.754766,0.721331,0.0726163,0.269976,0.10147,0.405887,0.462126,0.297032,0.508752,0.844631,0.391018,0.180004,0.102834,0.850937,0.26377,0.655899,0.971142,0.252445,0.572431,0.138047,0.759362,0.503069,0.00251526,0.380358,0.450848,0.502639,0.770947,0.647156,0.431638,0.567362,0.735176,0.0928699,0.924675,0.499491,0.0126865,0.674469,0.178235,0.674018,0.805043,0.461199,0.689819,0.0945786,0.777697,0.266987,0.168766,0.864293,0.155975,0.97738,0.0790712,0.7365,0.070531,0.867931,0.442814,0.25779,0.983683,0.845561,0.651007,0.523816,0.612318,0.746796,0.0642123,0.848263,0.830409,|0.73406,0.0176118,0.644208,0.694628,0.754229,0.18751,0.689918,0.245995,0.933389,0.674859,0.328475,0.465522,0.652455,0.50458,0.897871,0.573938,0.85485,0.590332,0.806803,0.197659,0.329286,0.581211,0.692373,0.885481,0.00547791,0.0225087,0.347168,0.420865,0.60965,0.691489,0.473259,0.683033,0.898023,0.601235,0.629743,0.438074,0.528631,0.392332,0.43694,0.24128,0.138995,0.528286,0.714712,0.808394,0.00551802,0.0541819,0.830563,0.128039,0.0396395,0.237802,0.318088,0.229195,0.974914,0.876294,0.714673,0.685995,0.054309,0.225695,0.945499,0.382886,0.53533,0.365436,0.0232468,0.0125175,0.721873,0.495403,0.550907,0.372075,0.0263174,0.350045,0.43088,0.853126,0.0316395,0.383871,0.816167,0.85097,0.561799,0.314612,0.427528,0.952703,0.877878,0.71985,0.861535,0.292939,0.070223,0.239555,0.716876,0.365202,0.78827,0.369629,0.999924,0.362807,0.438394,0.511882,0.303859,0.389698,0.217938,0.720848,0.186802,0.851212,0.849386,0.547526,0.556519,0.513991,0.676956,0.216073,0.511019,0.831433,0.183173,0.960536,0.591863,0.582587,0.963,0.0360689,0.550262,0.704288,0.49333,0.335186,0.401778,0.244311,0.128823,0.485901,0.935353,0.0658957,0.996084,0.135204,0.69847,0.243296,0.088869,0.567804,0.44262,0.348022,0.0490946,0.16183,0.939409,0.269745,0.795551,0.732712,0.100372,0.592647,0.181864,0.289753,0.797972,0.0607731,0.560128,0.598026,0.653691,0.822033,0.125173,0.357653,0.287027,0.640927,0.430627,0.539918,0.129598,0.811085,0.708262,0.94576,0.263236,0.409509,0.395925,0.959373,0.899647,0.0457332,0.252604,0.318344,0.409054,0.602628,0.625552,0.921338,0.618779,0.858048,0.831515,0.268036,0.792934,0.710407,0.794274,0.781827,0.306776,0.205483,0.902355,0.0248787,0.233684,0.0943466,0.302238,0.197555,0.605641,0.269124,0.0290263,0.799084,0.046248,0.0563053,0.772971,0.298625,0.156519,0.0828342,0.680266,0.79385,0.953854,0.53218,0.936486,0.607783,0.516807,0.797573,0.0729468,0.910845,0.0324325,0.757589,0.659515,0.324718,0.0853551,0.0552094,0.502057,0.226014,0.226949,0.0949696,0.750857,0.127794,0.0521194,0.27347,0.41612,0.384647,0.207747,0.783899,0.204511,0.891174,0.734176,0.861885,0.619651,0.701178,0.379644,0.260266,0.589708,0.319491,0.903133,0.893548,0.329825,0.731367,0.389964,0.462568,0.405661,0.153348,0.176564,0.266883,0.340066,0.979892,0.25666,0.0999962,0.424555,0.442119,0.219992,0.911237,0.521864,0.746265,0.721541,0.25704,0.76871,0.824659,0.482194,0.929623,0.422881,0.175395,0.897045,0.181094,0.155183,0.625616,0.850264,0.32836,0.440865,0.997829,0.210007,0.825423,0.289178,0.502021,0.957533,0.366422,0.916186,0.104215,0.714546,0.128961,0.969133,0.107022,0.167717,0.052955,0.945655,0.803899,0.442468,0.372267,0.911419,0.16088,0.023765,0.234031,0.931312,0.870814,0.0810301,0.749289,0.833068,0.830279,0.0288178,0.988277,0.734616,0.929525,0.019341,0.862703,0.757455,0.0805381,0.0527402,0.602912,0.067876,0.325843,0.515778,0.312655,0.527965,0.978485,0.303026,0.439433,0.128176,0.508632,0.23108,0.555463,0.842044,0.628829,0.91383,0.0497401,0.254039,0.50421,0.211478,0.38293,0.0926889,0.777135,0.507234,0.875995,0.881897,0.662792,0.651373,0.0323349,0.0893826,0.409129,0.185829,0.664773,0.777619,0.372012,0.921989,0.222973,0.500436,0.448861,0.144149,0.93934,0.780949,0.0370926,0.786289,0.675384,0.338057,0.813343,0.581093,0.679698,0.594556,0.439937,0.777787,0.240598,0.798037,0.790467,0.891173,0.0109569,0.0519767,0.869942,0.696163,0.551258,0.87241,0.921801,0.341404,0.00856239,0.747047,0.296326,0.620996,0.110066,0.334607,0.12453,0.427568,0.502494,0.919757,0.52491,0.835451,0.276956,0.931275,0.339029,0.633357,0.320651,0.662339,0.188066,0.490584,0.519863,0.348108,0.225191,0.894816,0.0975085,0.840664,0.18729,0.560034,0.804399,0.840183,0.424588,0.0389011,0.391136,0.911437,0.412494,0.440927,0.700402,0.716831,0.00861031,0.0569407,0.168813,0.2044,0.470374,0.177082,0.613855,0.437328,0.0522111,0.871691,0.324001,0.18789,0.508596,0.151639,0.795098,0.35607,0.327533,0.316716,0.486444,0.256979,0.448591,0.384881,0.895522,0.129639,0.458561,0.943554,0.732677,0.58764,0.00269634,0.695133,0.748668,0.0964894,0.838946,0.389078,0.0109461,0.694695,0.673036,0.46955,0.0409402,0.502233,0.732365,0.99494,0.288162,0.00110584,0.813471,0.224893,0.485928,0.852373,0.443487,0.857471,0.806582,0.302147,0.80008,0.348194,0.470315,0.838504,0.0379951,0.955546,0.773698,0.0872773,0.356059,0.774992,0.636774,0.0394499,0.0182017,0.257255,0.622653,0.587619,0.483421,0.0395904,0.814144,0.951474,0.486597,0.913372,0.613365,0.935912,0.357436,0.824366,0.997467,0.613511,0.34033,0.942459,0.185683,0.0849028,0.444488,0.0503367,0.00894076,0.528169,0.979711,0.730952,0.577833,0.829325,0.271382,0.962222,0.297547,0.708008,0.477946,0.881694,0.464332,0.221228,0.31374,0.737321,0.632527,0.210034,0.340598,0.594323,0.169322,0.0586023,0.46658,0.921641,0.979262,0.000828803,0.602605,0.796751,0.39342,0.412151,0.324169,0.666957,0.821836,0.356308,0.651151,0.0250163,0.548279,0.17748,0.138431,0.716285,0.406685,0.439808,0.149212,0.71438,0.745905,0.000232637,0.00678384,0.0883443,0.696294,0.584884,0.291916,0.372573,0.557356,0.568482,0.175356,0.761612,0.0615849,0.0574868,0.466422,0.545614,0.559899,0.21681,0.135055,0.252986,0.867303,0.358369,0.587884,0.598603,0.417926,0.0320654,0.0647588,0.700372,0.142233,0.436489,0.0047437,0.820765,0.734166,0.161568,0.12308,0.367952,0.421434,0.216307,0.385793,0.228115,0.46154,0.80646,0.483096,0.861518,0.0219761,0.86551,0.913938,0.970318,0.518894,0.385833,0.0113851,0.53548,0.981078,0.310023,0.939221,0.581064,0.277304,0.836073,0.821468,0.0493307,0.869054,0.171363,0.115589,0.939381,0.85463,0.955769,0.134275,0.986721,0.25958,0.545618,0.133446,0.909949,0.774937,0.726075,0.463118,0.120405,0.742321,0.975695,0.474593,0.797819,0.822679,0.020386,0.186301,0.593676,0.0918664,0.502142,0.747793,0.462087,0.400671,0.754608,0.0355822,0.717371,0.880578,0.529766,0.375684,0.599843,0.0874846,0.765644,0.313249,0.798481,0.592861,0.877092,0.444713,0.586751,0.370151,0.29693,0.243834,0.305939,0.559485,0.721901,0.0293168,0.870478,0.431282,0.373295,0.606564,0.162725,0.450678,0.163131,0.0469617,0.644949,0.697506,0.614536,0.222891,0.208301,0.36304,0.91798,0.957478,0.411446,0.209911,0.846186,0.955431,0.818434,0.802356,0.648809,0.0466689,0.636567,0.215946,0.128137,0.997862,0.530454,0.208649,0.607026,0.121144,0.382194,0.77526,0.740034,0.933305,0.392426,0.1124,0.317942,0.148777,0.294535,0.417897,0.262204,0.811708,0.964282,0.629459,0.607663,0.883973,0.505257,0.932194,0.260814,0.599967,0.156628,0.671201,0.902901,0.208199,0.148405,0.624541,0.27035,0.944725,0.339048,0.902938,0.518851,0.480436,0.123405,0.933912,0.278879,0.208578,0.63008,0.0213846,0.599065,0.397818,0.885085,0.921127,0.0652398,0.894963,0.0803459,0.0931603,0.618211,0.20331,0.684175,0.295588,0.238916,0.479715,0.0022223,0.418342,0.636711,0.558188,0.161311,0.896102,0.591343,0.452896,0.859697,0.954468,0.301698,0.874818,0.515289,0.49658,0.983881,0.44452,0.591581,0.0444516,0.360521,0.0210987,0.776385,0.790645,0.17898,0.72477,0.6335,0.112524,0.799566,0.147542,0.779909,0.0331191,0.977877,0.17268,0.652671,0.0233352,0.308291,0.762111,0.656318,0.787964,0.311621,0.0033325,0.572094,0.128867,0.463982,0.340594,0.0345032,0.0166046,0.780328,0.589743,0.212261,0.87218,0.605589,0.972905,0.485417,0.584882,0.64759,0.00911689,0.752108,0.619261,0.990393,0.879864,0.525645,0.577208,0.880403,0.118703,0.0604216,0.308858,0.0846878,0.115412,0.889703,0.525879,0.831562,0.951689,0.417627,0.806,0.531532,0.374429,0.461306,0.784607,0.631427,0.688082,0.114814,0.81219,0.415691,0.722881,0.657768,0.244428,0.0284102,0.0281264,0.036499,0.920236,0.562857,0.0561092,0.0815037,0.6367,0.104337,0.980693,0.919976,0.282532,0.00712436,0.438741,0.625755,0.135492,0.840896,0.742235,0.186721,0.79941,0.0453331,0.17321,0.319907,0.103464,0.456264,0.95143,0.603034,0.839101,0.588448,0.587645,0.0562098,0.531495,0.956059,0.0529505,0.882371,0.46103,0.508455,0.0062775,0.511845,0.183939,0.190788,0.0423779,0.917509,0.611116,0.485526,0.393461,0.987047,0.782509,0.309191,0.602231,0.845913,0.953644,0.120856,0.540861,0.952812,0.251888,0.810203,0.490647,0.122772,0.630139,0.334069,0.131204,0.203589,0.0603016,0.681114,0.433582,0.945771,0.865364,0.621858,0.771974,0.743019,0.315301,0.600433,0.169996,0.564029,0.985068,0.260174,0.552141,0.974954,0.762316,0.885039,0.554616,0.840123,0.053082,0.221409,0.548181,0.637895,0.212392,0.17155,0.0950807,0.469575,0.192288,0.411036,0.717207,0.0590537,0.757188,0.172919,0.830386,0.010318,0.483387,0.26016,0.607163,0.676933,0.105182,0.95579,0.55852,0.403224,0.272984,0.0794641,0.325226,0.213418,0.10514,0.950793,0.0968592,0.460999,0.472565,0.483856,0.696095,0.151788,0.373542,0.313463,0.763333,0.476217,0.336394,0.8483,0.0138752,0.773104,0.162293,0.444555,0.705948,0.645576,0.426404,0.474275,0.821347,0.279378,0.386037,0.24553,0.378924,0.578992,0.382712,0.756535,0.186845,0.0468133,0.712977,0.488893,0.537216,0.791017,0.879867,0.525479,0.0750076,0.975978,0.0900641,0.470469,0.888193,0.779041,0.998348,0.132404,0.106316,0.784923,0.665999,0.547438,0.658839,0.743681,0.727272,0.987361,0.291497,0.413344,0.548071,0.285024,0.583247,0.15543,0.247887,0.782388,0.654244,0.539602,0.555992,0.746581,0.727235,0.807116,0.809762,|0.484918,0.463851,0.0401918,0.152684,0.00603163,0.769363,0.769156,0.567384,0.258793,0.211572,0.378988,0.726048,0.735894,0.441983,0.668293,0.962712,0.761132,0.0218884,0.329714,0.376836,0.798282,0.253295,0.114493,0.256017,0.779679,0.846134,0.930743,0.947035,0.0775542,0.208335,0.198622,0.977172,0.416855,0.50416,0.791724,0.896461,0.318369,0.397919,0.685114,0.624329,0.762099,0.996933,0.758026,0.470715,0.151083,0.836086,0.205436,0.650814,0.449999,0.824855,0.646558,0.247951,0.0480187,0.207922,0.336716,0.594984,0.35488,0.196351,0.226874,0.847084,0.705708,0.977773,0.667764,0.825996,0.121327,0.485562,0.929307,0.392405,0.824797,0.142917,0.933325,0.330077,0.553959,0.904259,0.259386,0.377314,0.0342654,0.108108,0.6042,0.24081,0.498934,0.648638,0.64369,0.971209,0.868982,0.588953,0.873285,0.290707,0.627917,0.496702,0.0441335,0.413468,0.132853,0.945134,0.948105,0.0320607,0.0921844,0.277464,0.145536,0.306302,0.67332,0.682955,0.961101,0.0376065,0.524083,0.306439,0.264015,0.114722,0.120173,0.148685,0.75127,0.607017,0.396591,0.342365,0.787414,0.259854,0.56304,0.988043,0.0778531,0.965241,0.229985,0.367508,0.408026,0.888624,0.157464,0.973654,0.473255,0.612592,0.586072,0.372821,0.811878,0.249701,0.484093,0.931588,0.438012,0.618387,0.424823,0.694758,0.272548,0.678822,0.735132,0.534986,0.602618,0.954864,0.638342,0.777803,0.327159,0.739216,0.195273,0.928366,0.665579,0.529117,0.240306,0.576754,0.514518,0.776202,0.406466,0.761141,0.519211,0.655131,0.632865,0.120719,0.517418,0.00692254,0.171407,0.475878,0.534913,0.345926,0.152339,0.957711,0.407623,0.811144,0.781122,0.858953,0.609443,0.0998437,0.50231,0.825864,0.824007,0.21135,0.64562,0.508931,0.00976646,0.473687,0.961471,0.746505,0.00619435,0.63539,0.830779,0.950543,0.823595,0.647728,0.139328,0.941289,0.981464,0.94174,0.214475,0.106386,0.231538,0.686906,0.821259,0.690747,0.0128242,0.380847,0.962098,0.974346,0.230413,0.760267,0.0347505,0.0180035,0.119746,0.144163,0.763468,0.987575,0.481081,0.223651,0.417263,0.856067,0.0641904,0.85734,0.511871,0.738036,0.45514,0.905353,0.191404,0.104561,0.0574443,0.0141175,0.417373,0.70994,0.012356,0.546178,0.145234,0.36794,0.794321,0.911077,0.925418,0.504877,0.232911,0.445141,0.929245,0.277008,0.316422,0.507811,0.669172,0.341513,0.72932,0.888335,0.611193,0.995749,0.721635,0.978303,0.0649096,0.10571,0.711161,0.262208,0.873513,0.502891,0.414141,0.668974,0.059171,0.868466,0.911154,0.796894,0.638502,0.304409,0.194832,0.589166,0.735253,0.038146,0.927507,0.220676,0.915087,0.972428,0.524267,0.392838,0.507902,0.343853,0.0739906,0.742398,0.894584,0.346924,0.520251,0.914137,0.896941,0.427907,0.289985,0.516448,0.430468,0.0338696,0.820292,0.750223,0.994052,0.826812,0.0564491,0.0896344,0.432574,0.140346,0.684393,0.0923865,0.237515,0.627391,0.0658246,0.73841,0.12668,0.221832,0.689661,0.864685,0.61011,0.83984,0.167989,0.0937105,0.594597,0.483827,0.138047,0.16534,0.135334,0.282979,0.874108,0.66973,0.823849,0.0409179,0.820752,0.546234,0.683882,0.509565,0.740795,0.707813,0.415652,0.978741,0.0947912,0.337679,0.895339,0.106858,0.227511,0.84476,0.153116,0.427592,0.608395,0.453535,0.621449,0.893592,0.184117,0.877436,0.307504,0.247426,0.744704,0.677105,0.408745,0.0792699,0.627733,0.401263,0.565482,0.686106,0.150896,0.118832,0.123556,0.366856,0.176247,0.842617,0.68935,0.482843,0.214311,0.0845346,0.041082,0.606674,0.437533,0.446393,0.363703,0.0933412,0.165846,0.239478,0.663654,0.244406,0.431545,0.424857,0.0451074,0.425308,0.546136,0.202375,0.201337,0.727074,0.153739,0.789898,0.916038,0.387466,0.958298,0.769964,0.266372,0.274212,0.690145,0.0822003,0.201345,0.727643,0.208131,0.862976,0.818004,0.098352,0.0331215,0.92426,0.791889,0.624186,0.323815,0.384697,0.515842,0.294482,0.56416,0.914384,0.439911,0.934677,0.241732,0.437512,0.35125,0.925798,0.585455,0.760585,0.902098,0.315118,0.428568,0.771542,0.443237,0.616875,0.50569,0.677471,0.954062,0.220733,0.96501,0.720427,0.201449,0.961864,0.444356,0.325569,0.20334,0.352886,0.309127,0.820365,0.00497818,0.408787,0.969637,0.635242,0.816684,0.445472,0.282654,0.255429,0.0890974,0.45111,0.763264,0.692613,0.34386,0.790833,0.492484,0.591517,0.142238,0.644021,0.700855,0.876907,0.995183,0.991974,0.256391,0.864356,0.252922,0.951169,0.498222,0.900871,0.10768,0.389216,0.581316,0.494811,0.756957,0.214293,0.25856,0.909364,0.750766,0.098027,0.683771,0.184451,0.0580202,0.0242577,0.689335,0.77214,0.655158,0.970435,0.748604,0.441597,0.306253,0.953186,0.147733,0.669289,0.906955,0.148602,0.394124,0.829891,0.85078,0.430257,0.729486,0.854887,0.685991,0.0110887,0.47909,0.0444338,0.557889,0.251972,0.637237,0.658454,0.817322,0.104752,0.826431,0.375386,0.236129,0.329706,0.115819,0.219023,0.389295,0.879028,0.914575,0.931585,0.559806,0.387446,0.472487,0.208586,0.647252,0.958686,0.11146,0.428164,0.141929,0.409397,0.471197,0.928361,0.431016,0.00790817,0.801045,0.865295,0.88317,0.153628,0.882477,0.833548,0.330936,0.254868,0.789826,0.103005,0.682068,0.0580948,0.987782,0.706287,0.759693,0.842418,0.989151,0.558545,0.738684,0.0965168,0.420712,0.0699639,0.851606,0.083273,0.0722097,0.767853,0.788021,0.410538,0.376113,0.437373,0.36474,0.294814,0.773785,0.306832,0.185576,0.279891,0.989914,0.277037,0.47553,0.0709805,0.437032,0.969585,0.536863,0.815515,0.487905,0.445606,0.168931,0.426005,0.781686,0.0484647,0.738931,0.0187831,0.315145,0.688147,0.125609,0.270146,0.516366,0.23204,0.129157,0.462085,0.648752,0.411013,0.780497,0.551629,0.975037,0.438842,0.646847,0.658713,0.612136,0.602622,0.95863,0.997679,0.0190758,0.893024,0.28018,0.124803,0.686761,0.00577509,0.623412,0.532764,0.353083,0.181916,0.83556,0.448347,0.00306314,0.0110399,0.86744,0.802543,0.321026,0.0842238,0.0591738,0.959451,0.6962,0.401998,0.662026,0.00384021,0.385081,0.0527822,0.750492,0.667419,0.0837957,0.150563,0.822673,0.481548,0.781468,0.344925,0.215749,0.89229,0.0337546,0.125239,0.516641,0.398021,0.978672,0.633795,0.395693,0.0325133,0.813803,0.0265555,0.894297,0.286966,0.429298,0.131803,0.0411289,0.906645,0.0991048,0.148959,0.636788,0.918239,0.28882,0.579387,0.995861,0.223949,0.0887579,0.176954,0.404156,0.737657,0.569108,0.69827,0.612323,0.226357,0.861862,0.457025,0.193445,0.905201,0.538305,0.636953,0.912018,0.792713,0.674914,0.759995,0.595181,0.113349,0.0609373,0.0439923,0.827852,0.774155,0.504163,0.659526,0.212381,0.9399,0.339997,0.093894,0.43314,0.31489,0.541394,0.611482,0.199315,0.817839,0.0928206,0.393556,0.920331,0.638552,0.811034,0.993931,0.323885,0.156714,0.972776,0.628239,0.886926,0.661862,0.839444,0.716122,0.512967,0.448822,0.322397,0.518096,0.509004,0.183709,0.383516,0.945968,0.575813,0.277724,0.800853,0.948937,0.758502,0.770723,0.270076,0.627043,0.520763,0.430158,0.635298,0.128231,0.220023,0.554082,0.0521004,0.448657,0.0321439,0.157911,0.925933,0.372026,0.70925,0.235803,0.777393,0.653644,0.463195,0.684878,0.245914,0.304117,0.092329,0.473227,0.994676,0.597926,0.415489,0.140529,0.267726,0.066911,0.229886,0.449467,0.230598,0.235556,0.0850739,0.123355,0.45357,0.640724,0.758342,0.301124,0.157561,0.0349144,0.399649,0.947828,0.86365,0.991574,0.863599,0.969845,0.313197,0.32528,0.511874,0.38866,0.677168,0.865359,0.574165,0.445387,0.200042,0.710231,0.492574,0.747838,0.889119,0.560913,0.429198,0.121491,0.729058,0.708293,0.71228,0.84612,0.608047,0.785659,0.473357,0.568158,0.521117,0.807403,0.0937039,0.0690449,0.850089,0.718501,0.953192,0.570354,0.368875,0.372151,0.0205949,0.408257,0.835645,0.0754513,0.0483503,0.819383,0.677189,0.0853674,0.348345,0.0762743,0.259452,0.381045,0.949196,0.174205,0.633575,0.0909556,0.15997,0.755179,0.971693,0.870664,0.171218,0.134602,0.705222,0.108433,0.228006,0.658225,0.458745,0.779743,0.835812,0.664055,0.0494912,0.579311,0.159245,0.548495,0.929579,0.560455,0.0879623,0.202804,0.517871,0.689337,0.232769,0.0833949,0.929299,0.610044,0.331186,0.304635,0.127931,0.0226311,0.295046,0.921727,0.619755,0.954288,0.364935,0.0744721,0.302991,0.323462,0.507995,0.0823159,0.841181,0.303586,0.998574,0.763892,0.858368,0.466782,0.738009,0.422988,0.559731,0.219877,0.903865,0.419467,0.0185788,0.564023,0.189648,0.258221,0.0973114,0.858602,0.785251,0.633784,0.553765,0.231102,0.29064,0.601786,0.0264778,0.679247,0.797836,0.609122,0.954666,0.0919381,0.0449142,0.0340494,0.576951,0.996214,0.69778,0.0960199,0.894275,0.432234,0.0649737,0.489555,0.671208,0.289575,0.289444,0.272382,0.0214499,0.167477,0.418351,0.687595,0.714868,0.946603,0.321659,0.819885,0.53995,0.414416,0.228894,0.772449,0.121787,0.52755,0.371837,0.36301,0.341163,0.625972,0.941678,0.733981,0.436883,0.139306,0.159883,0.489895,0.210117,0.778825,0.176385,0.90631,0.542329,0.136586,0.0382583,0.649112,0.183107,0.808885,0.462703,0.616298,0.906145,0.0193366,0.513978,0.558627,0.243058,0.825349,0.622953,0.0336276,0.486392,0.0137773,0.134198,0.540192,0.220042,0.331956,0.660672,0.877472,0.205625,0.0607036,0.782976,0.649094,0.15172,0.421056,0.935065,0.563588,0.928584,0.549301,0.524665,0.319995,0.427029,0.126531,0.981372,0.152718,0.483827,0.647011,0.241215,0.292037,0.266442,0.458391,0.632678,0.309029,0.838111,0.861671,0.0130326,0.603532,0.799595,0.564945,0.127305,0.0311394,0.773409,0.121096,0.969141,0.6487,0.194072,0.222538,|0.401547,0.116153,0.70242,0.957019,0.940929,0.0850243,0.00220782,0.100074,0.956887,0.0934073,0.440599,0.796905,0.614793,0.799979,0.0933467,0.848789,0.388438,0.142139,0.850488,0.832144,0.895574,0.236733,0.389292,0.0387076,0.451479,0.509341,0.240363,0.321818,0.384534,0.334475,0.0540756,0.79695,0.814467,0.745783,0.101943,0.419298,0.696599,0.959514,0.911662,0.660959,0.848052,0.414099,0.408551,0.159004,0.557478,0.999263,0.488505,0.479039,0.458847,0.936467,0.0636903,0.469047,0.831345,0.111495,0.511816,0.472936,0.920899,0.141608,0.961766,0.744457,0.317039,0.585984,0.11925,0.0401751,0.183736,0.536205,0.696321,0.319557,0.402666,0.19753,0.213728,0.428578,0.921062,0.412858,0.559281,0.496311,0.0255658,0.642259,0.157028,0.866874,0.611419,0.327342,0.0309954,0.836513,0.311201,0.774544,0.852885,0.206559,0.781091,0.198996,0.0465788,0.931969,0.839621,0.862995,0.0660635,0.252574,0.643078,0.987346,0.300121,0.732059,0.211151,0.0814438,0.678617,0.429172,0.170977,0.906316,0.112554,0.256078,0.864204,0.731832,0.480107,0.536834,0.449398,0.138192,0.487451,0.770038,0.916926,0.173136,0.0245802,0.590283,0.559829,0.719376,0.746903,0.545489,0.572294,0.292563,0.381846,0.819341,0.858699,0.232932,0.791772,0.506273,0.0826383,0.3722,0.422836,0.898751,0.0369421,0.182,0.0396665,0.30335,0.0514542,0.314997,0.523927,0.521918,0.910135,0.405639,0.0370317,0.950396,0.219494,0.908655,0.922738,0.271463,0.641152,0.314823,0.251875,0.548183,0.905427,0.96552,0.279306,0.266633,0.354892,0.455542,0.0812152,0.139787,0.137505,0.466078,0.849332,0.32367,0.289068,0.276554,0.84077,0.239295,0.642121,0.544292,0.97636,0.643182,0.137195,0.283289,0.621244,0.527373,0.000964284,0.784865,0.72894,0.997963,0.893464,0.758278,0.0835546,0.383043,0.978212,0.509672,0.868238,0.145054,0.568515,0.326629,0.212194,0.715295,0.785105,0.956797,0.22319,0.35681,0.492741,0.25898,0.168853,0.448036,0.224354,0.642813,0.13171,0.878568,0.546969,0.998194,0.528146,0.0598372,0.542686,0.617957,0.535718,0.844376,0.400407,0.784257,0.365578,0.102619,0.00562459,0.389758,0.670025,0.966036,0.878186,0.0945113,0.597417,0.893353,0.311611,0.314937,0.0396056,0.195583,0.52772,0.23181,0.810599,0.893695,0.675341,0.0218524,0.228262,0.0254206,0.0447589,0.577905,0.475997,0.698434,0.86793,0.195331,0.497692,0.0146132,0.138078,0.763549,0.651197,0.582527,0.595061,0.115125,0.735807,0.200954,0.586212,0.241219,0.585817,0.498793,0.0915214,0.325235,0.670734,0.311405,0.194339,0.894422,0.748781,0.69632,0.825959,0.842484,0.417412,0.689422,0.61894,0.477314,0.0568124,0.348266,0.896049,0.532577,0.426246,0.384963,0.705803,0.399731,0.918241,0.743423,0.0275749,0.0133811,0.796205,0.0237319,0.306189,0.671032,0.252319,0.643074,0.544569,0.434862,0.921262,0.343617,0.321638,0.821251,0.16816,0.0704387,0.357255,0.237331,0.447845,0.265454,0.251454,0.480181,0.477395,0.928665,0.366581,0.898221,0.962333,0.636457,0.785125,0.920366,0.415865,0.985746,0.185959,0.731133,0.425273,0.932999,0.299002,0.746436,0.868402,0.101528,0.913007,0.1401,0.258645,0.486888,0.574103,0.986011,0.884095,0.114705,0.107145,0.999334,0.0551352,0.898405,0.131316,0.096176,0.234195,0.607638,0.256892,0.765836,0.135119,0.457081,0.677151,0.400395,0.24205,0.508136,0.253955,0.395051,0.7428,0.291021,0.903575,0.240357,0.0158781,0.891864,0.273179,0.330326,0.511196,0.283615,0.908963,0.436898,0.523733,0.0321705,0.0621876,0.748569,0.213663,0.597438,0.926392,0.291719,0.395581,0.646468,0.0884737,0.680584,0.422423,0.43109,0.0582469,0.244459,0.311052,0.731546,0.236774,0.0747377,0.149915,0.715089,0.767095,0.937908,0.368492,0.0777075,0.247671,0.261159,0.464169,0.955604,0.83264,0.385919,0.7869,0.285999,0.322542,0.283348,0.302215,0.627908,0.750313,0.00959915,0.186091,0.751512,0.359682,0.657581,0.602168,0.0866818,0.828854,0.204413,0.90598,0.269492,0.377261,0.639746,0.711815,0.108746,0.834053,0.697678,0.238781,0.260028,0.61526,0.461416,0.932179,0.102774,0.0146587,0.804154,0.425696,0.227163,0.631501,0.597116,0.630531,0.648476,0.984246,0.416815,0.22801,0.495866,0.502301,0.471107,0.0132561,0.385509,0.108129,0.423313,0.0752269,0.849679,0.730458,0.472228,0.232978,0.136685,0.649967,0.646881,0.829489,0.554583,0.461922,0.805501,0.53455,0.0210106,0.517607,0.0682731,0.148175,0.13324,0.820474,0.0971925,0.869282,0.237771,0.476187,0.906521,0.259146,0.607683,0.0691872,0.433863,0.165615,0.895007,0.987998,0.0276388,0.442221,0.0759853,0.583867,0.464785,0.38839,0.734305,0.00164032,0.346242,0.271158,0.952002,0.15521,0.435931,0.715835,0.0122196,0.38138,0.43489,0.731269,0.526973,0.35529,0.0443825,0.191719,0.044894,0.982715,0.597123,0.396435,0.817242,0.662875,0.931365,0.783031,0.71129,0.328401,0.321233,0.665727,0.0076583,0.968661,0.200378,0.604058,0.921844,0.843415,0.808188,0.23465,0.724266,0.695821,0.438458,0.047658,0.824805,0.550716,0.782462,0.48338,0.383059,0.873583,0.243056,0.595357,0.572547,0.795273,0.405276,0.737563,0.367518,0.367822,0.551466,0.422918,0.545475,0.25629,0.836888,0.0664654,0.233141,0.270181,0.952856,0.184019,0.927854,0.257923,0.154514,0.272129,0.719863,0.827852,0.408803,0.905238,0.600678,0.27639,0.427055,0.586418,0.771616,0.0257955,0.64851,0.0254382,0.753482,0.347298,0.152717,0.714771,0.659578,0.240042,0.346624,0.457465,0.0622283,0.400719,0.219973,0.142194,0.527183,0.991169,0.179429,0.485214,0.421781,0.0711423,0.891945,0.323212,0.985687,0.059489,0.172932,0.587105,0.840422,0.474641,0.513773,0.791169,0.0499361,0.981435,0.810832,0.237101,0.230838,0.646861,0.209747,0.256125,0.309693,0.0533393,0.253191,0.215458,0.380822,0.720788,0.906336,0.0510749,0.581774,0.907818,0.0756379,0.327611,0.207364,0.603967,0.110577,0.804247,0.504763,0.483086,0.488184,0.612115,0.188436,0.805385,0.131591,0.786131,0.154601,0.0232993,0.717748,0.907966,0.0498541,0.563346,0.338622,0.849151,0.216926,0.971563,0.0163013,0.463499,0.816559,0.435473,0.244858,0.161601,0.847585,0.650687,0.919445,0.96531,0.544911,0.42443,0.837156,0.681901,0.0603316,0.925073,0.41723,0.755797,0.540544,0.244595,0.398355,0.721587,0.823692,0.537091,0.862403,0.935565,0.855561,0.202814,0.411552,0.468435,0.39745,0.187025,0.145099,0.680782,0.0232591,0.0172173,0.92811,0.392906,0.585741,0.84353,0.0465207,0.335488,0.475661,0.956289,0.301567,0.562438,0.0611343,0.264716,0.227388,0.375212,0.379968,0.44492,0.195613,0.920985,0.707925,0.584652,0.186759,0.166614,0.816894,0.536016,0.377557,0.854734,0.221686,0.47988,0.67524,0.0643534,0.97482,0.224698,0.594568,0.992705,0.0548059,0.487831,0.0461554,0.6969,0.721432,0.587589,0.831112,0.326287,0.680797,0.269164,0.47141,0.0687636,0.265971,0.571161,0.530122,0.405241,0.52568,0.5611,0.0950528,0.989319,0.0338696,0.559046,0.336079,0.917471,0.955066,0.545193,0.668866,0.74154,0.0656583,0.0924098,0.526374,0.532991,0.281993,0.131047,0.0868812,0.46833,0.335157,0.0988188,0.217832,0.881147,0.748821,0.809484,0.163624,0.414309,0.848304,0.227482,0.208691,0.0950202,0.558636,0.0663913,0.632609,0.493808,0.959302,0.837659,0.691217,0.0115753,0.937409,0.552511,0.0344626,0.08347,0.872528,0.490714,0.923374,0.0284176,0.838083,0.9142,0.606733,0.283878,0.55875,0.990435,0.952656,0.219859,0.754454,0.527217,0.241539,0.228927,0.861151,0.755605,0.525693,0.926292,0.583575,0.254197,0.41992,0.347224,0.0971484,0.767513,0.161892,0.816379,0.603286,0.916149,0.156042,0.147269,0.975208,0.679376,0.129413,0.420837,0.095537,0.430195,0.0662052,0.0264081,0.98767,0.261552,0.637193,0.32541,0.923266,0.220773,0.724717,0.0649551,0.292629,0.99482,0.22928,0.474963,0.918873,0.788663,0.0444293,0.0959791,0.287141,0.815111,0.202697,0.294743,0.592494,0.569137,0.174494,0.880325,0.0916363,0.249072,0.0715976,0.0749057,0.730215,0.465997,0.837419,0.768681,0.679914,0.497869,0.839837,0.405477,0.671029,0.301783,0.191079,0.790457,0.173048,0.122288,0.308869,0.558015,0.330018,0.0349795,0.901313,0.839538,0.590369,0.359556,0.232429,0.0999109,0.773598,0.477064,0.424721,0.368202,0.529816,0.163415,0.226178,0.893087,0.705709,0.473295,0.57067,0.549981,0.394706,0.244989,0.282613,0.562537,0.0987199,0.0919625,0.342245,0.19021,0.671525,0.360021,0.720932,0.38319,0.0144674,0.27079,0.329403,0.421038,0.213392,0.681672,0.523932,0.292306,0.926211,0.572769,0.883262,0.980819,0.594411,0.675942,0.541472,0.262009,0.425426,0.812313,0.959296,0.618028,0.66952,0.100655,0.278986,0.516168,0.104955,0.408662,0.432174,0.130306,0.671389,0.846949,0.925393,0.148142,0.660899,0.947126,0.332303,0.818427,0.703539,0.964043,0.109223,0.302907,0.324878,0.503966,0.527536,0.295297,0.0504826,0.00412178,0.544868,0.465271,0.148826,0.699555,0.295416,0.657602,0.267459,0.27466,0.650578,0.057243,0.876627,0.291004,0.524165,0.1442,0.521722,0.506624,0.572922,0.530971,0.939144,0.405828,0.194959,0.365396,0.236408,0.100966,0.157946,0.252658,0.666284,0.414816,0.127436,0.580197,0.609702,0.202693,0.658435,0.203496,0.849257,0.886797,0.123344,0.287344,0.0625564,0.570214,0.302231,0.928159,0.0624375,0.0443349,0.796168,0.847706,0.934277,0.151759,0.0344394,0.829819,0.433044,0.642918,0.0378068,0.236967,0.193202,0.215605,0.58807,0.754612,0.242278,0.406655,0.0885727,0.929677,0.725457,0.437348,0.297319,0.385402,0.293317,0.974518,0.303443,0.530572,0.572365,0.149047,0.255183,0.929432,0.502598,0.507274,0.830744,0.281856,0.426975,|0.180666,0.00616056,0.271642,0.417798,0.424046,0.319119,0.194917,0.629648,0.0719823,0.127335,0.430623,0.642754,0.194278,0.973496,0.870119,0.446827,0.493611,0.763369,0.920658,0.819874,0.331699,0.973962,0.128275,0.783254,0.0535569,0.138906,0.758442,0.741425,0.448385,0.145882,0.0373608,0.825875,0.413716,0.53911,0.301313,0.954153,0.750087,0.675837,0.0624449,0.237957,0.462572,0.189966,0.66123,0.870047,0.183163,0.36797,0.17209,0.466089,0.0156966,0.264625,0.997248,0.423859,0.409172,0.497517,0.189051,0.585247,0.163747,0.385771,0.929321,0.901512,0.412592,0.288114,0.217184,0.36767,0.00019604,0.0730078,0.791941,0.564841,0.50766,0.368993,0.526677,0.0341566,0.435979,0.441792,0.459536,0.174504,0.526535,0.366503,0.221597,0.0602393,0.733684,0.030816,0.102384,0.18125,0.721227,0.0714408,0.25974,0.971194,0.562498,0.471191,0.216609,0.919682,0.106732,0.0446301,0.549799,0.225627,0.538685,0.514284,0.334462,0.37103,0.0385891,0.105765,0.13689,0.481141,0.312199,0.265127,0.71082,0.0548539,0.00299758,0.728222,0.642641,0.113899,0.0983967,0.108793,0.556368,0.787687,0.66889,0.791663,0.438519,0.489218,0.989042,0.36816,0.268974,0.542698,0.880851,0.141068,0.945801,0.0282354,0.345851,0.916278,0.850375,0.0958581,0.264541,0.604187,0.625545,0.101965,0.420806,0.285344,0.549823,0.436097,0.919942,0.997221,0.122744,0.825391,0.387197,0.727336,0.582363,0.686471,0.413295,0.670241,0.351454,0.353397,0.858042,0.341866,0.684138,0.270205,0.395788,0.327821,0.90366,0.790879,0.994147,0.0471424,0.274295,0.414239,0.853975,0.0302606,0.860046,0.0954481,0.766321,0.0414444,0.361648,0.133096,0.649365,0.0192933,0.378884,0.983316,0.361404,0.558165,0.0145297,0.109986,0.145813,0.507619,0.673593,0.0542555,0.410212,0.73571,0.956539,0.198257,0.390573,0.0975666,0.983079,0.976445,0.079731,0.533528,0.867141,0.398961,0.373452,0.274296,0.0452064,0.0187337,0.277504,0.871187,0.312792,0.787076,0.238098,0.543983,0.285519,0.399215,0.836463,0.878583,0.671455,0.990378,0.863734,0.730234,0.324987,0.700088,0.364329,0.734192,0.427577,0.72524,0.886793,0.516518,0.549122,0.202705,0.706839,0.89461,0.961831,0.878131,0.755495,0.132005,0.752361,0.968509,0.956387,0.0745509,0.302975,0.840622,0.732253,0.667765,0.139783,0.921467,0.486548,0.333747,0.259757,0.355246,0.422126,0.972699,0.93242,0.0104742,0.782774,0.39056,0.161188,0.684624,0.893933,0.507528,0.555843,0.722065,0.713082,0.123224,0.685168,0.245214,0.404728,0.18932,0.690411,0.697678,0.995777,0.21793,0.728169,0.711993,0.740529,0.729243,0.231085,0.417209,0.884625,0.178652,0.213502,0.184693,0.435099,0.77644,0.963562,0.250465,0.851666,0.759179,0.283574,0.772725,0.96151,0.166387,0.0157517,0.711284,0.685991,0.870998,0.277465,0.250218,0.522091,0.31995,0.893708,0.0689217,0.438954,0.727025,0.890501,0.97929,0.657177,0.12323,0.757586,0.761245,0.447264,0.636388,0.234049,0.559144,0.673387,0.662289,0.605599,0.757086,0.291641,0.783052,0.0015651,0.9612,0.684602,0.903383,0.19704,0.810396,0.694908,0.775946,0.388731,0.484583,0.194527,0.59146,0.166245,0.268723,0.27533,0.29165,0.991809,0.269818,0.0176154,0.248669,0.629679,0.850915,0.684158,0.770822,0.44525,0.100863,0.172403,0.691671,0.0355133,0.333788,0.901541,0.164048,0.347191,0.286161,0.119656,0.830257,0.415423,0.586232,0.286069,0.839685,0.629582,0.0477532,0.659394,0.0421659,0.00452614,0.892665,0.650658,0.52939,0.584372,0.925774,0.683339,0.823155,0.315295,0.186713,0.198603,0.336577,0.722565,0.282917,0.356539,0.842983,0.69737,0.17885,0.911665,0.0759949,0.587089,0.631716,0.24641,0.604163,0.744123,0.626183,0.146149,0.830539,0.461266,0.413387,0.785529,0.849309,0.00606298,0.579112,0.758135,0.649969,0.764937,0.684609,0.786112,0.146875,0.919121,0.456913,0.290501,0.382683,0.918476,0.0273836,0.0310868,0.513894,0.178628,0.760626,0.308616,0.356403,0.126637,0.00343782,0.586872,0.255814,0.679101,0.662174,0.0103282,0.250539,0.218576,0.0553781,0.161584,0.309705,0.539859,0.718006,0.644088,0.051092,0.93601,0.324394,0.579929,0.749655,0.142331,0.119115,0.624692,0.736596,0.834867,0.55591,0.444948,0.569885,0.280138,0.65515,0.544881,0.289481,0.327232,0.537571,0.681232,0.447698,0.975307,0.502014,0.85568,0.788752,0.143434,0.724267,0.359312,0.619703,0.622332,0.211937,0.287513,0.779298,0.658865,0.6534,0.288261,0.281843,0.668525,0.910307,0.945068,0.12499,0.549283,0.310646,0.736523,0.272124,0.773599,0.385006,0.206111,0.739306,0.836004,0.632442,0.139501,0.692081,0.446267,0.779173,0.447528,0.326302,0.521637,0.785918,0.676633,0.680071,0.677261,0.215864,0.263625,0.751694,0.467483,0.117296,0.86412,0.477045,0.790838,0.276634,0.254517,0.923391,0.0782403,0.252981,0.140977,0.332771,0.0587658,0.954276,0.552001,0.0564133,0.819951,0.97145,0.241899,0.0424374,0.0269142,0.645854,0.165148,0.944265,0.244225,0.514231,0.662729,0.19021,0.775584,0.4709,0.777026,0.31138,0.705027,0.165173,0.861305,0.02603,0.552294,0.989942,0.787872,0.511006,0.85349,0.471656,0.884851,0.556655,0.261815,0.916599,0.173596,0.169096,0.874199,0.646722,0.533938,0.762013,0.901736,0.121163,0.489656,0.157649,0.574489,0.667737,0.934758,0.812499,0.894123,0.473548,0.8164,0.295958,0.844162,0.530502,0.62224,0.0645539,0.916029,0.0401658,0.663883,0.274017,0.22282,0.00281084,0.987888,0.706761,0.89501,0.831207,0.410631,0.00802952,0.582973,0.467831,0.0361962,0.726085,0.868191,0.087668,0.0769797,0.447646,0.119183,0.194931,0.101237,0.421087,0.0283884,0.474064,0.775829,0.299673,0.538394,0.4201,0.693346,0.753039,0.37169,0.79593,0.314985,0.337634,0.218183,0.0929515,0.892876,0.460095,0.226381,0.337166,0.841184,0.271838,0.560904,0.220992,0.473235,0.366127,0.612022,0.688599,0.906919,0.000310361,0.382875,0.613524,0.668578,0.233163,0.874778,0.943514,0.771199,0.580827,0.727935,0.0631098,0.44383,0.272649,0.41146,0.860758,0.241004,0.24233,0.164368,0.820685,0.153316,0.0255533,0.604702,0.338487,0.974325,0.618545,0.35275,0.468596,0.583021,0.752804,0.297726,0.634847,0.768683,0.911337,0.560941,0.628613,0.186913,0.985232,0.990925,0.44655,0.059513,0.891036,0.371038,0.905703,0.751288,0.832772,0.57728,0.594604,0.623682,0.448974,0.0650951,0.880095,0.259473,0.512929,0.144771,0.0661267,0.542997,0.578846,0.53097,0.510246,0.0533182,0.701297,0.0840179,0.656527,0.928946,0.631465,0.923625,0.322068,0.241479,0.897077,0.601833,0.460513,0.54678,0.354917,0.136439,0.493969,0.303768,0.0840735,0.756042,0.939151,0.115386,0.182181,0.683131,0.295257,0.613111,0.899234,0.5364,0.910848,0.580622,0.684539,0.126444,0.422409,0.54432,0.00589561,0.875167,0.383925,0.920525,0.880499,0.155991,0.0647937,0.0706471,0.724069,0.531398,0.277945,0.594549,0.546719,0.240371,0.674304,0.687279,0.308567,0.339491,0.549208,0.288722,0.232254,0.533392,0.517171,0.358398,0.381865,0.600094,0.0609142,0.33178,0.69844,0.781871,0.463463,0.998161,0.260705,0.2823,0.193212,0.487676,0.673429,0.0300798,0.449082,0.609269,0.920036,0.0365617,0.403587,0.15466,0.723864,0.239982,0.97615,0.786433,0.817703,0.877285,0.869062,0.871788,0.94639,0.249961,0.763483,0.865854,0.534346,0.935958,0.457974,0.311995,0.817673,0.834125,0.399359,0.910526,0.307867,0.782948,0.861756,0.0520514,0.254763,0.42797,0.744913,0.206751,0.162831,0.445459,0.14664,0.691801,0.727272,0.102388,0.930236,0.663769,0.423751,0.210099,0.984822,0.647138,0.462879,0.673909,0.206275,0.843951,0.756871,0.00041157,0.760414,0.533197,0.456951,0.757418,0.16191,0.553915,0.331654,0.628959,0.63496,0.683013,0.287955,0.698231,0.274656,0.679783,0.706533,0.963503,0.894318,0.978999,0.708809,0.0566338,0.441013,0.0863424,0.959186,0.949724,0.593409,0.798836,0.51371,0.022809,0.553914,0.77609,0.0750982,0.453968,0.673653,0.822804,0.768553,0.238511,0.719166,0.409319,0.0207828,0.733526,0.150328,0.290395,0.549059,0.614163,0.957542,0.222318,0.293554,0.431546,0.230068,0.166897,0.536456,0.946879,0.201769,0.763643,0.430646,0.740561,0.452949,0.996051,0.114557,0.770448,0.934001,0.559161,0.0806111,0.353672,0.398101,0.153765,0.185753,0.891045,0.0707538,0.866615,0.092026,0.533676,0.67141,0.31694,0.677178,0.117652,0.566094,0.513216,0.32373,0.0631102,0.846076,0.908819,0.687542,0.775687,0.757902,0.997832,0.925247,0.851861,0.820527,0.414197,0.384032,0.477523,0.348141,0.483652,0.604307,0.678221,0.278221,0.007577,0.78543,0.283254,0.341554,0.879455,0.727855,0.158849,0.591743,0.395655,0.130721,0.531212,0.517147,0.117144,0.168645,0.678724,0.735495,0.109317,0.859631,0.558535,0.914235,0.367786,0.398479,0.722613,0.740926,0.240178,0.531265,0.671096,0.840558,0.595563,0.421169,0.0794075,0.454553,0.820906,0.182007,0.0616832,0.153457,0.314302,0.124716,0.173364,0.215611,0.358866,0.394121,0.361095,0.35976,0.876854,0.762774,0.0764629,0.0882671,0.308656,0.899355,0.221683,0.707413,0.884505,0.885163,0.193117,0.804597,0.225646,0.551846,0.2426,0.682061,0.752123,0.525734,0.0241974,0.363164,0.276802,0.843423,0.892869,0.559174,0.795071,0.242527,0.611483,0.944715,0.241278,0.65457,0.62489,0.741658,0.422536,0.50856,0.258657,0.374082,0.63115,0.242065,0.868709,0.3275,0.87,0.814785,0.23876,0.215194,0.820903,0.0543178,0.94267,0.808159,0.409086,0.636475,0.779649,0.776811,0.149888,0.0481991,0.984953,0.604903,0.794986,0.892824,0.899434,0.488188,0.966284,0.916988,0.0424471,0.615096,0.440575,0.816214,0.253775,0.481984,|0.707208,0.242401,0.687099,0.740322,0.356236,0.748073,0.5883,0.797499,0.969802,0.0874785,0.495946,0.0810085,0.297575,0.818296,0.276001,0.0682799,0.319186,0.0988618,0.0953922,0.82331,0.984788,0.404798,0.631555,0.712084,0.1214,0.205133,0.0551043,0.560605,0.0563986,0.467216,0.254413,0.644884,0.630909,0.732005,0.543966,0.912011,0.497669,0.763589,0.481027,0.655741,0.0272821,0.757403,0.93358,0.706648,0.329086,0.0258953,0.136438,0.749791,0.574008,0.956466,0.0437521,0.2629,0.721991,0.844428,0.661496,0.354249,0.852427,0.728354,0.217048,0.309699,0.076998,0.2006,0.940255,0.938264,0.400992,0.0759585,0.0491246,0.550901,0.848916,0.702758,0.686585,0.904377,0.395281,0.86895,0.119544,0.216941,0.072424,0.239315,0.507118,0.677064,0.906346,0.594968,0.305401,0.489989,0.0290629,0.784807,0.894951,0.831741,0.430222,0.246439,0.99243,0.0808145,0.689132,0.746868,0.553874,0.238029,0.248926,0.642695,0.108469,0.840462,0.479705,0.724892,0.235082,0.00272644,0.148304,0.323919,0.199757,0.324,0.970229,0.915479,0.967906,0.0590621,0.680194,0.327383,0.377417,0.14151,0.0519327,0.0211559,0.46555,0.260061,0.335759,0.456396,0.965261,0.699672,0.36645,0.0704394,0.0388447,0.401903,0.20965,0.723817,0.910862,0.728572,0.917295,0.409484,0.0803935,0.36276,0.818441,0.715872,0.344148,0.000617266,0.729303,0.650059,0.670359,0.813193,0.0207232,0.458723,0.373236,0.00643438,0.76396,0.847514,0.465088,0.894377,0.275252,0.226794,0.848312,0.108141,0.958395,0.884601,0.367667,0.0340289,0.429745,0.375019,0.943672,0.365123,0.808326,0.96446,0.857215,0.958349,0.354779,0.0420648,0.33038,0.293289,0.878119,0.261586,0.511381,0.693535,0.836312,0.746441,0.170925,0.669812,0.00648332,0.842105,0.686417,0.0353655,0.109688,0.675188,0.157488,0.639037,0.973595,0.38021,0.229561,0.00812542,0.922801,0.121243,0.859636,0.804803,0.166935,0.0204818,0.91992,0.99195,0.158008,0.813304,0.867047,0.658185,0.975707,0.714962,0.476865,0.961287,0.683391,0.211949,0.0356126,0.329917,0.168794,0.81648,0.361732,0.321335,0.247076,0.367941,0.361413,0.782925,0.744222,0.678339,0.00557178,0.305801,0.863549,0.1334,0.609386,0.450746,0.700985,0.59865,0.64782,0.615003,0.632322,0.651673,0.89125,0.292695,0.397602,0.115723,0.494568,0.853346,0.893817,0.136802,0.72677,0.84318,0.611029,0.433451,0.53998,0.213003,0.717973,0.428256,0.925343,0.594815,0.868816,0.349677,0.0767031,0.995415,0.940864,0.0290794,0.570648,0.852849,0.938485,0.136106,0.775756,0.998577,0.147712,0.761706,0.616926,0.391004,0.0876285,0.61928,0.806136,0.600357,0.386961,0.239145,0.507848,0.433944,0.496764,0.659941,0.0245235,0.575116,0.103097,0.771426,0.982145,0.412882,0.7251,0.0571232,0.15299,0.667826,0.982853,0.270648,0.908139,0.264812,0.749844,0.172727,0.674974,0.618015,0.068272,0.236945,0.251368,0.725038,0.0581555,0.197232,0.965392,0.222972,0.90882,0.484143,0.696528,0.241578,0.898066,0.331665,0.751994,0.417224,0.208476,0.248253,0.161339,0.450605,0.341308,0.690612,0.72177,0.274195,0.187361,0.630146,0.412413,0.754361,0.318933,0.528779,0.456556,0.103633,0.994301,0.37574,0.818022,0.382083,0.303442,0.0167962,0.225944,0.00501406,0.485976,0.402089,0.170831,0.19936,0.270051,0.569747,0.503438,0.976544,0.546939,0.0667719,0.775711,0.129894,0.249685,0.706003,0.528081,0.213422,0.23873,0.920201,0.577613,0.0439782,0.336599,0.0627678,0.694506,0.738576,0.645481,0.813816,0.210316,0.295306,0.69152,0.703993,0.989787,0.943581,0.44295,0.0184974,0.552241,0.338606,0.364682,0.630643,0.483443,0.0848228,0.768578,0.590355,0.693745,0.720625,0.881333,0.347453,0.143498,0.364573,0.0552041,0.78795,0.74472,0.449904,0.735603,0.643537,0.190345,0.204378,0.836186,0.684827,0.923477,0.525174,0.358826,0.523747,0.647639,0.823851,0.0633341,0.722435,0.805629,0.14996,0.264521,0.0279303,0.88079,0.0685418,0.314643,0.780761,0.749414,0.21068,0.841524,0.577199,0.519236,0.754254,0.0364296,0.751112,0.665391,0.194892,0.51581,0.0909177,0.632965,0.711877,0.366934,0.763826,0.35411,0.219131,0.931763,0.437755,0.785285,0.758073,0.681957,0.335263,0.0632857,0.404684,0.572194,0.069573,0.426847,0.951091,0.464422,0.401786,0.998325,0.348772,0.182937,0.487764,0.817885,0.300569,0.308402,0.597887,0.897136,0.922265,0.484441,0.797837,0.3849,0.238512,0.735919,0.447067,0.127754,0.310649,0.278489,0.214756,0.670311,0.556784,0.523506,0.165505,0.927258,0.178114,0.308193,0.868714,0.0301992,0.101196,0.647333,0.56584,0.227039,0.897777,0.268752,0.77229,0.846377,0.489575,0.710608,0.852198,0.217873,0.11738,0.443536,0.136504,0.32251,0.235729,0.842278,0.167566,0.325596,0.316735,0.257455,0.730341,0.841525,0.324379,0.621677,0.281482,0.269521,0.0450508,0.596086,0.143144,0.916783,0.37656,0.55253,0.506161,0.357096,0.0438336,0.599754,0.31075,0.180862,0.32662,0.74551,0.648374,0.670995,0.852576,0.799041,0.906943,0.979221,0.762709,0.742729,0.794178,0.980959,0.873662,0.890684,0.309325,0.236946,0.554998,0.215606,0.230679,0.280929,0.388837,0.219461,0.939715,0.99419,0.107928,0.530163,0.962766,0.673068,0.601844,0.711295,0.63001,0.170026,0.716924,0.785081,0.301815,0.6725,0.679942,0.929031,0.00535566,0.467062,0.446779,0.191963,0.172478,0.95096,0.58428,0.104505,0.412787,0.47105,0.774609,0.533843,0.157838,0.827206,0.453051,0.877807,0.168748,0.528635,0.0375274,0.269769,0.950125,0.981871,0.184321,0.731387,0.711111,0.928072,0.24223,0.906666,0.281177,0.458928,0.410178,0.0836052,0.257926,0.28261,0.303181,0.483564,0.50292,0.308566,0.484581,0.528665,0.363582,0.447024,0.47977,0.329431,0.7115,0.466046,0.378696,0.45411,0.977387,0.717132,0.0237841,0.733313,0.254531,0.0308381,0.993743,0.683581,0.552945,0.147095,0.305337,0.720497,0.158819,0.171506,0.118707,0.595072,0.940572,0.792943,0.0738255,0.432188,0.0344663,0.550284,0.746815,0.602282,0.873056,0.760698,0.0104853,0.50605,0.00687629,0.981826,0.663901,0.39813,0.432458,0.120985,0.142698,0.563441,0.79524,0.550259,0.181852,0.158698,0.792976,0.976185,0.173362,0.482853,0.962647,0.446591,0.0668285,0.26669,0.887981,0.823487,0.595779,0.00400823,0.324317,0.933432,0.243857,0.807387,0.529079,0.281866,0.449719,0.425822,0.462586,0.0499279,0.0931368,0.238998,0.459816,0.987473,0.193595,0.14948,0.232063,0.915314,0.0674881,0.180594,0.044597,0.377834,0.0334451,0.510508,0.389811,0.162019,0.894751,0.264336,0.366951,0.312671,0.926006,0.156316,0.27462,0.88676,0.155897,0.489028,0.0542322,0.730722,0.682444,0.198314,0.0441219,0.961238,0.0645093,0.391094,0.177502,0.457097,0.792681,0.809321,0.814179,0.79087,0.592087,0.405007,0.585298,0.245611,0.39755,0.575489,0.443778,0.221056,0.857718,0.933586,0.467231,0.168388,0.0559587,0.434831,0.72132,0.466782,0.399968,0.316493,0.093381,0.755092,0.306996,0.662642,0.307066,0.749975,0.120297,0.570314,0.217569,0.771212,0.19942,0.572274,0.486628,0.476203,0.957514,0.0758438,0.592459,0.947461,0.871573,0.479694,0.0121995,0.137949,0.0204306,0.50429,0.340721,0.74021,0.408618,0.636645,0.518899,0.939154,0.449712,0.865224,0.26455,0.778427,0.0592095,0.905128,0.33937,0.546018,0.513026,0.958728,0.0443015,0.717006,0.253494,0.352354,0.7435,0.14414,0.938686,0.152693,0.297613,0.458966,0.703885,0.138504,0.0644077,0.992372,0.288714,0.907304,0.176624,0.0499786,0.236755,0.632422,0.168792,0.989969,0.0203153,0.412748,0.562371,0.199532,0.301508,0.951759,0.308733,0.484413,0.0620071,0.102983,0.316355,0.701118,0.3061,0.546463,0.724411,0.805571,0.220347,0.920621,0.703181,0.799726,0.731491,0.794121,0.770709,0.305906,0.898562,0.937815,0.141556,0.479175,0.872315,0.194578,0.949408,0.0930896,0.285218,0.028044,0.325323,0.0586279,0.417655,0.809145,0.796705,0.594913,0.856806,0.68681,0.1068,0.920821,0.0833435,0.223615,0.467274,0.823627,0.107772,0.159629,0.916044,0.174963,0.873643,0.991772,0.480898,0.341392,0.202577,0.692534,0.580367,0.947142,0.738671,0.29155,0.384905,0.988589,0.61252,0.961442,0.778876,0.438325,0.192678,0.205404,0.35952,0.821802,0.117517,0.294074,0.59055,0.209205,0.821653,0.088873,0.616901,0.537816,0.251175,0.140862,0.411328,0.161567,0.634748,0.969132,0.414462,0.673602,0.598532,0.551299,0.644874,0.127506,0.0475542,0.229793,0.1778,0.800085,0.0778794,0.476488,0.258348,0.492367,0.146982,0.920373,0.61305,0.295169,0.519127,0.750306,0.369732,0.66465,0.79934,0.841206,0.576287,0.326249,0.428611,0.229171,0.700063,0.615993,0.542216,0.173414,0.409811,0.43509,0.496737,0.853468,0.0262644,0.888475,0.486161,0.515305,0.00784808,0.883374,0.504847,0.700938,0.255578,0.712556,0.0519772,0.294184,0.674648,0.753371,0.777645,0.133815,0.576779,0.675006,0.660266,0.243236,0.217098,0.172876,0.0630721,0.448554,0.913841,0.0529858,0.955092,0.297535,0.165097,0.589449,0.59408,0.494178,0.988695,0.980762,0.923036,0.725858,0.0912194,0.105298,0.75934,0.00581944,0.475865,0.2683,0.430016,0.140837,0.93143,0.195368,0.0896303,0.377892,0.463076,0.719918,0.188891,0.485666,0.663272,0.896478,0.626884,0.161312,0.397446,0.0565158,0.280853,0.691909,0.665538,0.807536,0.237507,0.00318754,0.462005,0.977172,0.0798444,0.0378101,0.40936,0.666547,0.920269,0.88096,0.483848,0.081091,0.260284,0.829782,0.758838,0.680817,0.830425,0.463703,0.533419,0.965033,0.83696,0.204859,0.284946,0.284403,0.755121,0.0715401,0.891674,0.0368223,0.619847,0.519127,0.886571,0.540678,0.806139,0.532457,0.321856,0.734249,0.256301,|0.24694,0.257323,0.79159,0.926408,0.373405,0.0456519,0.411524,0.78676,0.914514,0.0301397,0.0116494,0.234935,0.742032,0.226764,0.826669,0.323029,0.8874,0.4584,0.835547,0.728067,0.283187,0.443195,0.145758,0.84749,0.105004,0.453003,0.589355,0.578192,0.00471103,0.193708,0.710377,0.156224,0.23832,0.83397,0.313371,0.659032,0.881708,0.368535,0.757133,0.184934,0.10118,0.415415,0.114192,0.68049,0.100178,0.395877,0.0306073,0.0790498,0.538752,0.54505,0.760774,0.644054,0.491756,0.125737,0.0573402,0.560271,0.984589,0.97812,0.320103,0.104944,0.737921,0.941971,0.0123589,0.017221,0.759454,0.194313,0.34366,0.99624,0.844476,0.343409,0.803229,0.00273341,0.466198,0.705249,0.996466,0.179804,0.405582,0.475722,0.206709,0.813491,0.886761,0.435667,0.777285,0.206326,0.322061,0.4609,0.962541,0.904397,0.0269563,0.110286,0.815734,0.774175,0.0714052,0.158105,0.925643,0.575041,0.0560861,0.625365,0.660919,0.884094,0.749988,0.505277,0.878539,0.107286,0.532663,0.121226,0.580714,0.721406,0.328841,0.768741,0.411388,0.467082,0.587695,0.794277,0.279966,0.883588,0.541128,0.0222602,0.765858,0.852326,0.723673,0.895007,0.0228905,0.170708,0.0752791,0.496769,0.260458,0.493216,0.487513,0.471512,0.167899,0.315751,0.396831,0.900223,0.995167,0.452499,0.689104,0.255422,0.759172,0.0344344,0.496355,0.634688,0.440198,0.783397,0.108087,0.740235,0.890786,0.605458,0.816632,0.215361,0.162059,0.891938,0.571179,0.893494,0.340906,0.538335,0.943335,0.59824,0.739403,0.64193,0.753428,0.0841703,0.932037,0.0119232,0.852245,0.240696,0.137458,0.503245,0.545761,0.128656,0.622823,0.287472,0.476663,0.398068,0.374942,0.100865,0.745327,0.22581,0.482755,0.656474,0.0979162,0.217285,0.293083,0.386629,0.504211,0.277688,0.378975,0.320622,0.0283017,0.103491,0.630661,0.91354,0.697194,0.838174,0.940288,0.734971,0.160373,0.203611,0.670883,0.210242,0.211952,0.671013,0.904291,0.847545,0.416024,0.819396,0.390862,0.399918,0.456467,0.0484146,0.779365,0.182358,0.100515,0.765988,0.863296,0.399812,0.680509,0.0375026,0.401516,0.0303841,0.164975,0.640685,0.863319,0.452601,0.468872,0.205172,0.33062,0.728493,0.939642,0.177528,0.672438,0.888841,0.63167,0.640704,0.759982,0.29467,0.924341,0.59789,0.992579,0.678189,0.480245,0.310727,0.405542,0.796495,0.533646,0.221502,0.919666,0.484281,0.476212,0.551666,0.233847,0.257794,0.158347,0.922794,0.839665,0.351424,0.461308,0.0578237,0.300965,0.828038,0.369565,0.40095,0.236626,0.205447,0.340321,0.818012,0.953021,0.874491,0.10122,0.522438,0.513169,0.858348,0.521618,0.425212,0.588632,0.411522,0.664399,0.327943,0.0990065,0.428098,0.817208,0.013266,0.138038,0.28397,0.47304,0.740971,0.657319,0.0484086,0.445434,0.380767,0.835603,0.703673,0.750764,0.371889,0.246357,0.610175,0.688959,0.344169,0.354144,0.124181,0.648248,0.0755022,0.27894,0.365823,0.138735,0.955386,0.0549707,0.294316,0.36257,0.30818,0.349965,0.213055,0.13628,0.899671,0.961237,0.889539,0.656078,0.464993,0.983954,0.423071,0.0799674,0.206119,0.487714,0.52268,0.813427,0.769551,0.0449812,0.54752,0.749198,0.456696,0.534096,0.663925,0.777094,0.475754,0.233918,0.693503,0.252275,0.716618,0.789814,0.465901,0.723518,0.00978011,0.860169,0.564993,0.838183,0.115223,0.165603,0.90007,0.255271,0.139402,0.628449,0.220906,0.069492,0.833653,0.29345,0.6962,0.470723,0.404979,0.208221,0.910013,0.533817,0.793561,0.678485,0.391824,0.88304,0.289447,0.536296,0.755378,0.306429,0.0699641,0.197481,0.0872034,0.306806,0.322463,0.562555,0.457972,0.566526,0.824863,0.347506,0.133857,0.602332,0.0261503,0.511063,0.588158,0.0894853,0.731411,0.359965,0.19776,0.663793,0.215045,0.484192,0.439501,0.205504,0.772953,0.614103,0.920146,0.456797,0.549612,0.719222,0.585411,0.939021,0.629987,0.900415,0.134279,0.23446,0.866012,0.799372,0.35798,0.750463,0.164524,0.851901,0.770959,0.329211,0.805187,0.681221,0.692677,0.664111,0.114775,0.58952,0.944342,0.153849,0.378002,0.121471,0.0156202,0.0903541,0.832085,0.459955,0.412555,0.421325,0.357798,0.411935,0.269927,0.210531,0.679862,0.238095,0.941688,0.361589,0.197288,0.12855,0.232454,0.689153,0.91093,0.238259,0.867946,0.519764,0.781772,0.258717,0.580501,0.231755,0.917699,0.694382,0.99771,0.294753,0.998057,0.239124,0.935486,0.542532,0.351023,0.840864,0.488442,0.955199,0.345515,0.871116,0.390673,0.600787,0.661197,0.341395,0.0788141,0.448615,0.664681,0.884674,0.568918,0.808677,0.978202,0.777937,0.292329,0.0269447,0.467702,0.749272,0.328319,0.686826,0.724836,0.551918,0.373852,0.894319,0.0451634,0.681417,0.792522,0.98506,0.0849777,0.527792,0.0402662,0.609789,0.649598,0.44591,0.370867,0.444963,0.990238,0.259296,0.812404,0.692791,0.00516409,0.270983,0.58884,0.988056,0.800077,0.635124,0.966186,0.63002,0.988631,0.19102,0.965219,0.182318,0.827179,0.906728,0.00220829,0.119551,0.665608,0.432768,0.977388,0.00435668,0.111152,0.0225607,0.156533,0.670855,0.46184,0.143872,0.481854,0.562212,0.330783,0.9022,0.387644,0.515312,0.0356398,0.545256,0.960405,0.878883,0.447746,0.875856,0.226493,0.49804,0.109388,0.178405,0.543767,0.14438,0.767245,0.442416,0.688167,0.0357248,0.575922,0.874353,0.890103,0.508604,0.242017,0.885633,0.65673,0.625537,0.210619,0.868676,0.561037,0.00877839,0.611861,0.194503,0.707916,0.38374,0.363291,0.0159639,0.353833,0.231335,0.594653,0.703209,0.736111,0.849687,0.272822,0.210738,0.417922,0.0137624,0.10533,0.727727,0.667934,0.541442,0.805588,0.305812,0.709045,0.0461803,0.739396,0.316576,0.806117,0.262718,0.491335,0.029245,0.65776,0.340482,0.397554,0.898156,0.147406,0.939138,0.4617,0.534123,0.152389,0.792026,0.445516,0.717377,0.0681406,0.400235,0.0392166,0.749973,0.159067,0.869631,0.330358,0.0668097,0.455444,0.836067,0.325664,0.753176,0.509073,0.814761,0.37209,0.905127,0.812835,0.801004,0.999476,0.215122,0.425329,0.31941,0.652339,0.0848886,0.0961622,0.576769,0.690875,0.276831,0.550015,0.324387,0.759895,0.312731,0.517507,0.401848,0.960342,0.749166,0.547306,0.562396,0.451923,0.938002,0.744976,0.707869,0.429725,0.102394,0.56087,0.66231,0.946012,0.680453,0.810544,0.942071,0.371416,0.36365,0.624196,0.89805,0.924319,0.502212,0.472885,0.260537,0.344857,0.313142,0.096048,0.586195,0.86969,0.683684,0.736996,0.919407,0.433796,0.669505,0.720791,0.26905,0.443195,0.935201,0.848296,0.733485,0.957119,0.0377107,0.834574,0.986956,0.542707,0.211036,0.343732,0.577198,0.826187,0.794731,0.815172,0.790993,0.797545,0.190792,0.568151,0.875469,0.668475,0.982987,0.325638,0.563084,0.19829,0.251051,0.990388,0.521435,0.916856,0.475051,0.2715,0.458798,0.819648,0.0174538,0.155505,0.648637,0.315099,0.138113,0.253547,0.560156,0.0796618,0.511043,0.786865,0.446921,0.688378,0.406556,0.442729,0.656375,0.527262,0.570081,0.0585715,0.205433,0.683307,0.872613,0.657072,0.057466,0.723118,0.856988,0.571663,0.701067,0.461185,0.617973,0.0302772,0.319898,0.55301,0.376057,0.622268,0.253464,0.851494,0.265374,0.126277,0.419132,0.697453,0.821485,0.254026,0.257479,0.209744,0.696553,0.868458,0.477144,0.903125,0.125521,0.465273,0.421186,0.730601,0.1529,0.240903,0.860392,0.52074,0.304313,0.303553,0.979072,0.776895,0.588129,0.300146,0.422405,0.261226,0.754953,0.168574,0.142807,0.889354,0.503533,0.209827,0.952106,0.377908,0.977199,0.294553,0.563895,0.444125,0.812716,0.565347,0.154367,0.249603,0.490041,0.117339,0.749976,0.923774,0.325106,0.806983,0.804489,0.724,0.0394053,0.510838,0.78659,0.408872,0.0288699,0.272866,0.214968,0.749368,0.924579,0.735014,0.542658,0.421069,0.439083,0.454523,0.69366,0.224646,0.681215,0.102146,0.526218,0.451136,0.79955,0.0724699,0.222466,0.173843,0.955182,0.781746,0.806535,0.989407,0.448969,0.542602,0.828238,0.709158,0.687855,0.280958,0.038707,0.520318,0.91001,0.718965,0.699116,0.243435,0.619228,0.420168,0.010578,0.951014,0.701041,0.261551,0.268755,0.457695,0.672672,0.0347397,0.247394,0.519458,0.19316,0.780949,0.467575,0.571244,0.413379,0.470832,0.416613,0.212475,0.192038,0.434259,0.84124,0.985956,0.363139,0.543222,0.838996,0.25512,0.402581,0.413807,0.453835,0.145915,0.203795,0.841352,0.525553,0.329641,0.289416,0.812879,0.29038,0.244612,0.813108,0.200798,0.680831,0.732295,0.606935,0.880067,0.570956,0.606363,0.645177,0.774303,0.546593,0.0596235,0.525345,0.739252,0.700703,0.403867,0.0611475,0.699905,0.674433,0.598173,0.533075,0.370926,0.0669557,0.440615,0.875612,0.372863,0.548617,0.220193,0.968924,0.758471,0.0538323,0.242466,0.791006,0.204,0.480043,0.917077,0.953219,0.205064,0.473858,0.749611,0.215699,0.336466,0.293201,0.554022,0.741628,0.890153,0.666106,0.782633,0.74434,0.589624,0.503602,0.600673,0.439409,0.421662,0.668323,0.914912,0.560917,0.0683637,0.524446,0.699872,0.94713,0.704301,0.771354,0.446461,0.562066,0.80949,0.729175,0.821494,0.380744,0.0471252,0.269898,0.407446,0.419961,0.642647,0.669454,0.180673,0.25951,0.568537,0.943588,0.575582,0.44238,0.27525,0.528478,0.837939,0.173443,0.158346,0.0801347,0.902889,0.588758,0.710629,0.833408,0.28112,0.296404,0.193231,0.826344,0.868128,0.186424,0.851456,0.327583,0.960631,0.828827,0.610506,0.42277,0.0463399,0.523111,0.770012,0.441904,0.0584019,0.462968,0.52951,0.242288,0.962796,0.105693,0.6385,0.523364,0.409757,0.0898603,0.23724,0.12153,0.62139,0.131021,0.0857591,0.784663,0.416846,0.985391,0.727097,|0.89269,0.412435,0.47377,0.972742,0.357985,0.061794,0.238683,0.0775117,0.0463096,0.397083,0.332837,0.827646,0.157962,0.384243,0.691594,0.693571,0.86441,0.0135349,0.254477,0.505186,0.759424,0.383954,0.594377,0.412428,0.608264,0.0158184,0.600067,0.486418,0.507,0.509772,0.533172,0.844026,0.81949,0.404215,0.801404,0.343724,0.593092,0.65834,0.242196,0.905195,0.410344,0.98582,0.210771,0.595026,0.0388659,0.648231,0.609021,0.409283,0.310959,0.415763,0.148598,0.857623,0.471145,0.919728,0.561241,0.868912,0.729768,0.274164,0.318384,0.963713,0.0395451,0.446283,0.775564,0.76393,0.843763,0.438204,0.0308542,0.257179,0.832201,0.904123,0.0492005,0.807792,0.668559,0.447272,0.780167,0.248245,0.716513,0.567251,0.112528,0.877074,0.794459,0.464659,0.915602,0.0844316,0.0902045,0.309516,0.149776,0.210446,0.207995,0.988901,0.2352,0.147586,0.95502,0.318439,0.142644,0.911109,0.395051,0.0497051,0.114283,0.553363,0.229523,0.492772,0.411714,0.871296,0.331894,0.541222,0.180133,0.761641,0.65723,0.783454,0.455834,0.202297,0.236041,0.0732919,0.899137,0.968131,0.565346,0.234768,0.908423,0.942349,0.528861,0.445348,0.00791365,0.0876575,0.798874,0.37966,0.241738,0.680764,0.450369,0.0572723,0.385122,0.88642,0.522604,0.443903,0.101432,0.171896,0.789469,0.905744,0.99189,0.838514,0.506313,0.158875,0.786257,0.34026,0.52689,0.529935,0.191436,0.187899,0.645064,0.703698,0.114886,0.694018,0.167713,0.94155,0.967765,0.633912,0.564211,0.791793,0.244308,0.948777,0.153035,0.654852,0.752683,0.766105,0.538028,0.411259,0.997404,0.941126,0.338669,0.00879234,0.605121,0.733206,0.0269376,0.38076,0.276503,0.485653,0.954655,0.831719,0.790106,0.968259,0.747757,0.834386,0.457772,0.944752,0.952295,0.733576,0.398806,0.644531,0.951801,0.280876,0.390295,0.266912,0.186329,0.668685,0.392282,0.397624,0.762666,0.740397,0.380676,0.362722,0.825251,0.781177,0.0710213,0.785315,0.745802,0.687958,0.529743,0.55023,0.221886,0.0343293,0.236518,0.996654,0.29888,0.0432209,0.241052,0.420305,0.272134,0.815079,0.627733,0.0228574,0.946767,0.7164,0.483518,0.892641,0.903306,0.519517,0.105633,0.589172,0.283212,0.103213,0.750324,0.00121236,0.841019,0.636765,0.892403,0.369085,0.424009,0.786321,0.280604,0.437927,0.604554,0.46568,0.0629822,0.426414,0.357101,0.463514,0.971222,0.60419,0.690306,0.170897,0.65363,0.447317,0.491352,0.832334,0.994313,0.495851,0.610168,0.652923,0.97682,0.897901,0.964474,0.939802,0.155061,0.37902,0.59162,0.371622,0.876421,0.1724,0.155507,0.664018,0.765312,0.46943,0.05033,0.615464,0.42186,0.750532,0.290923,0.231813,0.206644,0.18517,0.627815,0.296272,0.00158125,0.872752,0.83136,0.166625,0.375776,0.963651,0.374025,0.25405,0.310727,0.939101,0.41602,0.655088,0.752906,0.99746,0.613721,0.550226,0.110619,0.274394,0.884449,0.715173,0.0993124,0.419215,0.880138,0.23386,0.287568,0.642366,0.924712,0.740837,0.560452,0.262951,0.720331,0.911129,0.586925,0.389105,0.027059,0.951437,0.15684,0.527589,0.610773,0.987753,0.38087,0.3372,0.260383,0.595128,0.213479,0.950031,0.0753604,0.612989,0.042639,0.0926635,0.754604,0.92819,0.810691,0.504741,0.497814,0.511817,0.403676,0.928491,0.797868,0.765742,0.629071,0.543416,0.650079,0.520787,0.855685,0.180901,0.0382317,0.0936055,0.905749,0.266983,0.338152,0.687657,0.887905,0.774281,0.954914,0.0402575,0.199267,0.66161,0.0171309,0.139167,0.809934,0.488353,0.71226,0.722235,0.447181,0.876308,0.63785,0.219373,0.473971,0.0725237,0.421878,0.513281,0.96084,0.703759,0.328562,0.633856,0.92582,0.0866972,0.154281,0.174934,0.519181,0.579836,0.462173,0.95284,0.320304,0.116181,0.659023,0.347161,0.00167042,0.0856354,0.22688,0.448937,0.132868,0.43013,0.642759,0.388515,0.266807,0.246939,0.673508,0.552065,0.444783,0.700907,0.632752,0.789203,0.336792,0.20358,0.415262,0.601397,0.0611135,0.638351,0.334045,0.34641,0.804954,0.308058,0.349282,0.555321,0.414217,0.91818,0.932353,0.845237,0.933339,0.0624603,0.781766,0.0967466,0.496536,0.916468,0.707334,0.722965,0.00677419,0.561211,0.128234,0.591458,0.601131,0.264366,0.693178,0.554188,0.198342,0.497355,0.850376,0.976371,0.0629961,0.662179,0.163966,0.642049,0.37891,0.805967,0.35105,0.327514,0.974958,0.69763,0.700533,0.0944133,0.020467,0.538106,0.199667,0.850228,0.38223,0.389088,0.488989,0.498781,0.631576,0.377849,0.704638,0.217233,0.826706,0.238337,0.656975,0.504539,0.747474,0.449273,0.840665,0.828156,0.759924,0.671743,0.387247,0.964716,0.0452978,0.83681,0.952986,0.170594,0.139365,0.135408,0.232276,0.6973,0.400967,0.484267,0.0265187,0.743182,0.00166172,0.22011,0.781972,0.296589,0.916313,0.108865,0.0773811,0.73138,0.281971,0.199545,0.472525,0.744057,0.126379,0.557462,0.906163,0.67231,0.463955,0.623404,0.103619,0.34363,0.464482,0.884223,0.0601703,0.258971,0.0742219,0.657327,0.69274,0.764972,0.245579,0.272326,0.65137,0.629551,0.946687,0.0759976,0.488155,0.708714,0.0523567,0.980345,0.603269,0.798086,0.506175,0.986086,0.218313,0.324734,0.00985372,0.61011,0.16646,0.670254,0.55217,0.670049,0.560925,0.415006,0.853005,0.677163,0.543845,0.771267,0.869462,0.723748,0.240726,0.583511,0.229219,0.00399756,0.254364,0.327342,0.198988,0.800315,0.684121,0.242971,0.689659,0.664796,0.804509,0.0341151,0.525522,0.335113,0.114487,0.0709495,0.852061,0.123716,0.637843,0.259986,0.192452,0.867383,0.25354,0.989757,0.103281,0.495336,0.921299,0.119077,0.311464,0.178786,0.951209,0.20327,0.262652,0.837051,0.676506,0.0582755,0.478963,0.800605,0.233859,0.306833,0.0527036,0.851755,0.0325663,0.515577,0.840722,0.26068,0.908749,0.981211,0.324721,0.0293473,0.228035,0.780034,0.171548,0.16244,0.33738,0.655653,0.113815,0.74065,0.7426,0.58059,0.145823,0.203924,0.736981,0.806399,0.925613,0.495903,0.976511,0.749238,0.843911,0.197191,0.0172048,0.744178,0.182038,0.61566,0.606191,0.916192,0.878733,0.116643,0.342304,0.534735,0.839891,0.123954,0.393128,0.0941986,0.73201,0.56299,0.114845,0.491099,0.553841,0.106846,0.501608,0.078819,0.646078,0.859341,0.319598,0.793294,0.0144155,0.598356,0.86274,0.861067,0.643731,0.670696,0.425866,0.658502,0.790799,0.186135,0.834311,0.501397,0.686628,0.0757976,0.382127,0.6185,0.660411,0.721435,0.913122,0.663104,0.0238711,0.616669,0.346344,0.71338,0.732372,0.82218,0.174548,0.575813,0.828668,0.437284,0.963014,0.267218,0.496454,0.956469,0.0193969,0.00183839,0.960527,0.797942,0.820947,0.768594,0.0961831,0.160519,0.555752,0.101268,0.651996,0.406214,0.4717,0.956116,0.885801,0.385677,0.493266,0.413423,0.753548,0.472531,0.683425,0.59684,0.786743,0.444978,0.730126,0.0771891,0.705315,0.303104,0.235363,0.00252342,0.167268,0.0177268,0.864768,0.991124,0.953906,0.145771,0.0713121,0.276047,0.243075,0.0509784,0.900251,0.777479,0.523877,0.96913,0.838891,0.585229,0.464246,0.54426,0.990272,0.487955,0.850404,0.490522,0.83268,0.171011,0.755337,0.865914,0.655391,0.0307623,0.880787,0.632013,0.0334007,0.776358,0.759072,0.0417286,0.318805,0.678172,0.912897,0.90604,0.0528936,0.0149193,0.23325,0.880286,0.182831,0.167338,0.834524,0.870594,0.979268,0.724182,0.429096,0.251915,0.326398,0.577428,0.684394,0.592536,0.289962,0.309592,0.73552,0.782744,0.982884,0.176186,0.877043,0.586306,0.568404,0.852017,0.00356317,0.613007,0.487828,0.397402,0.656411,0.593395,0.11862,0.52751,0.682123,0.371909,0.082827,0.52168,0.958041,0.154667,0.914241,0.146871,0.0787663,0.235448,0.359407,0.0345107,0.294757,0.439379,0.0369577,0.275985,0.894569,0.123647,0.851794,0.31503,0.569652,0.404398,0.678462,0.352305,0.832465,0.854469,0.572134,0.492563,0.744373,0.951797,0.241458,0.691896,0.196743,0.816384,0.730927,0.443661,0.300132,0.975333,0.75305,0.807314,0.178739,0.396396,0.301051,0.0210326,0.725445,0.521961,0.924074,0.0163603,0.903041,0.450753,0.0587217,0.697546,0.990885,0.190442,0.647416,0.213347,0.396431,0.473462,0.0465539,0.19371,0.53206,0.435042,0.399425,0.89452,0.733321,0.112239,0.853995,0.758718,0.635661,0.664043,0.604033,0.475458,0.684876,0.0941904,0.588001,0.325333,0.971888,0.194434,0.83202,0.115787,0.80466,0.791416,0.765587,0.83327,0.892303,0.968975,0.993792,0.242642,0.430775,0.302766,0.0927398,0.661272,0.466902,0.0992434,0.629153,0.470754,0.990769,0.99002,0.117467,0.611085,0.524387,0.568618,0.885087,0.239791,0.549603,0.187213,0.397322,0.109767,0.655743,0.219594,0.391425,0.31905,0.837085,0.779443,0.0543847,0.173793,0.419283,0.213889,0.278283,0.581854,0.112555,0.497655,0.332227,0.4092,0.266388,0.825137,0.00315487,0.129719,0.162919,0.0703206,0.566459,0.808908,0.839532,0.752751,0.272027,0.261812,0.380874,0.00435209,0.3904,0.340317,0.0913463,0.0592239,0.16615,0.103534,0.740464,0.100435,0.58877,0.446528,0.294902,0.85632,0.975278,0.0978217,0.227369,0.775089,0.422798,0.682651,0.501444,0.120777,0.430895,0.116555,0.923691,0.709873,0.404505,0.827254,0.163395,0.677328,0.19685,0.24415,0.700761,0.415536,0.406477,0.541776,0.485251,0.581627,0.654722,0.0380508,0.0188469,0.888839,0.768233,0.559875,0.527029,0.184944,0.641253,0.810985,0.889279,0.605997,0.789735,0.577922,0.813177,0.335945,0.367829,0.336262,0.169204,0.253805,0.0725855,0.428323,0.368534,0.802173,0.860105,0.401664,0.907643,0.973915,0.704628,0.0730679,0.0650779,0.867971,0.918321,0.0699699,0.200471,0.966186,0.0459128,0.484074,0.781856,0.852344,0.166554,0.93313,0.37533,0.334005,|0.614582,0.865478,0.024237,0.649645,0.0652055,0.538296,0.896756,0.790954,0.900111,0.669288,0.426906,0.429162,0.856748,0.118859,0.548025,0.792101,0.640039,0.719112,0.259487,0.482981,0.7366,0.0656855,0.0276457,0.629788,0.332388,0.926304,0.365547,0.202959,0.200754,0.134301,0.610552,0.304755,0.353146,0.190415,0.175094,0.992035,0.778688,0.249415,0.190188,0.843998,0.154146,0.157013,0.535592,0.00348681,0.813336,0.251213,0.208354,0.362903,0.90921,0.496346,0.724878,0.28751,0.792249,0.005198,0.170856,0.928093,0.503881,0.812343,0.696084,0.506565,0.154321,0.522983,0.224976,0.821116,0.565978,0.0664957,0.532726,0.298821,0.0848323,0.445941,0.110564,0.851273,0.56302,0.175158,0.567198,0.485913,0.523371,0.220907,0.492617,0.573757,0.227671,0.299911,0.921279,0.589723,0.469339,0.488371,0.424064,0.79868,0.78272,0.851958,0.73009,0.307738,0.962507,0.486165,0.408776,0.968781,0.478592,0.285987,0.140558,0.115602,0.90404,0.613362,0.378972,0.0294653,0.817998,0.592164,0.573305,0.355002,0.0447758,0.895704,0.345045,0.379351,0.453184,0.752295,0.394718,0.610499,0.509475,0.559507,0.370795,0.950685,0.641999,0.880524,0.57822,0.836913,0.708425,0.0267147,0.932708,0.709454,0.496319,0.48394,0.252548,0.620924,0.471886,0.10485,0.392892,0.146059,0.702205,0.369858,0.00572306,0.412645,0.823969,0.273999,0.239842,0.646169,0.903404,0.849927,0.0909631,0.662608,0.166845,0.914082,0.667971,0.76467,0.935804,0.955324,0.724213,0.403487,0.877614,0.937692,0.645012,0.0720724,0.0460522,0.0292347,0.57358,0.747138,0.643217,0.971326,0.808855,0.517864,0.324007,0.580963,0.231194,0.985332,0.284107,0.554269,0.61279,0.913477,0.567251,0.246251,0.423137,0.736815,0.799958,0.0855085,0.039062,0.0960801,0.704653,0.0106368,0.862935,0.166203,0.33798,0.830986,0.926249,0.0417699,0.279567,0.916507,0.993203,0.333478,0.531765,0.926322,0.565646,0.250282,0.0351464,0.471031,0.877737,0.752292,0.332394,0.962285,0.59236,0.052035,0.463461,0.73295,0.0388312,0.576468,0.390292,0.62882,0.625022,0.0366148,0.0127978,0.566936,0.840493,0.684991,0.409422,0.00996226,0.151362,0.171154,0.538528,0.0759297,0.0231352,0.779163,0.432829,0.933847,0.721818,0.690748,0.0833329,0.957552,0.917499,0.590075,0.844261,0.603573,0.178259,0.891096,0.504759,0.501621,0.596252,0.238508,0.97733,0.525807,0.922524,0.387326,0.291698,0.0843043,0.907162,0.123059,0.0656708,0.617685,0.156309,0.100964,0.187397,0.954508,0.32661,0.484906,0.196216,0.933092,0.66216,0.174157,0.803483,0.327938,0.0418948,0.726924,0.275925,0.0642592,0.0155756,0.962866,0.747882,0.885208,0.565309,0.403459,0.0805344,0.84824,0.178313,0.303719,0.500758,0.891554,0.380801,0.370684,0.912192,0.746684,0.170825,0.733909,0.127543,0.406247,0.576064,0.0225235,0.954263,0.641333,0.922564,0.525972,0.223145,0.85733,0.0807478,0.223916,0.715316,0.588713,0.122454,0.707923,0.894628,0.148358,0.855886,0.180342,0.507373,0.813832,0.718806,0.784295,0.710335,0.102016,0.333459,0.645405,0.109408,0.0953415,0.400889,0.9917,0.917441,0.936908,0.450451,0.617361,0.42947,0.838276,0.0728235,0.0438665,0.286463,0.396162,0.492693,0.85951,0.448868,0.426652,0.898617,0.327521,0.158388,0.554095,0.0892313,0.99503,0.626174,0.555951,0.762757,0.184565,0.762764,0.432788,0.391676,0.784108,0.506837,0.155881,0.526612,0.943218,0.392836,0.893985,0.120869,0.0377453,0.382254,0.795881,0.19529,0.566004,0.040783,0.95608,0.621694,0.615912,0.6725,0.966807,0.0948456,0.477111,0.112643,0.439679,0.347977,0.471728,0.0469493,0.440578,0.730315,0.041326,0.691085,0.00850868,0.167143,0.911782,0.836643,0.556799,0.62947,0.230828,0.0287443,0.561464,0.209545,0.243674,0.278626,0.428488,0.182166,0.961652,0.267622,0.0656844,0.380113,0.163172,0.25996,0.0146758,0.284397,0.784044,0.406421,0.0197456,0.7652,0.57292,0.994305,0.895695,0.47978,0.945984,0.746944,0.0461977,0.119842,0.319195,0.230328,0.331556,0.18142,0.152892,0.441731,0.633229,0.717677,0.959531,0.112903,0.305429,0.887476,0.838888,0.879542,0.754815,0.0217619,0.408445,0.897158,0.00941753,0.373165,0.101925,0.665101,0.627708,0.0509496,0.587964,0.0320603,0.774936,0.757859,0.360022,0.0391129,0.898695,0.859706,0.349953,0.893527,0.635104,0.370525,0.0182111,0.835378,0.634268,0.778919,0.0910639,0.67743,0.293161,0.4114,0.0602907,0.58812,0.247627,0.0911987,0.319577,0.531757,0.530964,0.931521,0.118575,0.588525,0.456316,0.946554,0.878921,0.064285,0.140357,0.783227,0.663585,0.110836,0.62883,0.0371543,0.336298,0.0810244,0.40899,0.625314,0.241006,0.461615,0.203749,0.27475,0.0105122,0.909104,0.735849,0.60904,0.308652,0.126376,0.725119,0.545743,0.866513,0.396073,0.0737183,0.393927,0.974056,0.126201,0.257849,0.831192,0.0705364,0.214927,0.398919,0.585967,0.358585,0.0406839,0.907311,0.327143,0.632152,0.343123,0.552139,0.124118,0.0257004,0.822878,0.812966,0.759866,0.903254,0.574312,0.716294,0.817228,0.782925,0.922744,0.850617,0.963042,0.000732005,0.0974836,0.172687,0.935212,0.347251,0.321036,0.906685,0.039349,0.800789,0.372337,0.198941,0.539312,0.171237,0.547544,0.641012,0.678863,0.0762696,0.0264755,0.583098,0.411372,0.947962,0.152958,0.630117,0.0974599,0.455146,0.863919,0.757675,0.0734724,0.0501496,0.278926,0.792644,0.0968553,0.70052,0.326083,0.736874,0.583835,0.552072,0.145531,0.704077,0.798628,0.191239,0.174992,0.811607,0.29881,0.807377,0.691372,0.105074,0.372738,0.733216,0.127276,0.567092,0.481139,0.0848247,0.508047,0.543146,0.948579,0.400359,0.222381,0.962103,0.461155,0.880515,0.784312,0.810698,0.450512,0.461293,0.211777,0.440411,0.0992438,0.636409,0.313494,0.258943,0.879514,0.0979804,0.58575,0.283902,0.977922,0.749966,0.13601,0.808831,0.219787,0.353635,0.243642,0.576944,0.657077,0.427587,0.755746,0.862397,0.857324,0.827754,0.272044,0.783029,0.958394,0.112257,0.433223,0.827506,0.287337,0.592084,0.0399814,0.727241,0.0252376,0.702236,0.739966,0.396148,0.362845,0.242006,0.792743,0.0901912,0.469113,0.506763,0.441877,0.890559,0.898859,0.0558817,0.286175,0.131757,0.705577,0.546052,0.1203,0.179037,0.696468,0.393864,0.255199,0.451939,0.681668,0.338523,0.527373,0.193653,0.319481,0.434421,0.420391,0.778729,0.513328,0.403087,0.321707,0.824633,0.0556937,0.989347,0.0380077,0.748901,0.122402,0.601008,0.0272261,0.965442,0.570005,0.596891,0.479389,0.614949,0.793305,0.71287,0.334682,0.829141,0.328324,0.795923,0.684957,0.653362,0.531719,0.963604,0.302955,0.363655,0.900423,0.682186,0.787915,0.12248,0.414288,0.886902,0.668558,0.591253,0.559288,0.387192,0.574999,0.391406,0.452811,0.980214,0.969236,0.186014,0.631517,0.200426,0.755566,0.38902,0.52878,0.444957,0.366424,0.477721,0.961831,0.411703,0.935096,0.791139,0.332534,0.563282,0.395668,0.0339225,0.44525,0.322081,0.0966763,0.31118,0.456677,0.621135,0.277429,0.551656,0.958475,0.688884,0.293151,0.339333,0.890016,0.114813,0.384492,0.555108,0.458718,0.996029,0.0987029,0.0992697,0.139107,0.80772,0.373557,0.80934,0.725102,0.657727,0.632585,0.663735,0.179428,0.903547,0.017432,0.975463,0.386283,0.427082,0.173419,0.951426,0.698364,0.705971,0.587334,0.640348,0.25547,0.0771506,0.925712,0.560626,0.852238,0.800214,0.577266,0.54981,0.631367,0.491085,0.875706,0.218456,0.652544,0.995996,0.269242,0.16411,0.0591435,0.490348,0.980623,0.997137,0.97369,0.132462,0.0325691,0.997026,0.491943,0.363954,0.547948,0.0779381,0.399282,0.34133,0.149812,0.0115696,0.975549,0.280327,0.0129871,0.343247,0.669787,0.533447,0.27748,0.716793,0.0556335,0.164787,0.0104544,0.13963,0.702663,0.682605,0.166186,0.835046,0.318911,0.206103,0.871977,0.268353,0.649298,0.881606,0.808053,0.485447,0.430102,0.649446,0.807282,0.417712,0.28219,0.396609,0.036325,0.0278317,0.834175,0.627047,0.124415,0.508492,0.237063,0.677976,0.396827,0.19497,0.615326,0.0276396,0.722864,0.680509,0.4936,0.809296,0.0393389,0.417134,0.701401,0.52725,0.141133,0.288564,0.970203,0.344682,0.137149,0.297842,0.792536,0.761844,0.707162,0.284874,0.242328,0.527774,0.190732,0.0905426,0.664812,0.388461,0.316117,0.629585,0.797698,0.50863,0.460217,0.443586,0.0492854,0.670159,0.87621,0.764292,0.595731,0.669702,0.260967,0.786738,0.869648,0.843798,0.960154,0.883724,0.301774,0.577705,0.806217,0.530948,0.0190284,0.77083,0.41305,0.0605189,0.109105,0.712442,0.143607,0.952509,0.0413081,0.278127,0.462568,0.638304,0.397983,0.879759,0.221141,0.0659789,0.829944,0.400421,0.73563,0.865797,0.0114217,0.701765,0.284011,0.58355,0.374642,0.0630873,0.729836,0.225943,0.130753,0.98523,0.361654,0.340907,0.935928,0.607312,0.186429,0.535373,0.0601158,0.920735,0.0218335,0.933714,0.740735,0.419275,0.846008,0.815533,0.86737,0.472057,0.732806,0.336006,0.975517,0.837635,0.494283,0.602683,0.483045,0.644696,0.576159,0.559961,0.356123,0.0685546,0.851062,0.332418,0.584454,0.214054,0.636539,0.224237,0.205792,0.762781,0.910564,0.568335,0.294702,0.326402,0.152587,0.276698,0.388361,0.17644,0.365836,0.317932,0.591652,0.889399,0.943409,0.582914,0.643154,0.618093,0.396569,0.196614,0.950959,0.545153,0.321163,0.16118,0.148377,0.484652,0.0446312,0.0403399,0.998721,0.806765,0.679971,0.163044,0.0467312,0.385444,0.644957,0.391726,0.445588,0.148379,0.00665206,0.99878,0.338816,0.847182,0.846366,0.958807,0.727441,0.600844,0.712017,0.0912267,0.589604,0.680056,0.298855,0.437217,0.243285,0.871625,0.984135,0.942798,0.85736,0.447251,0.727139,0.110722,0.959048,0.210974,|0.431476,0.485535,0.0863995,0.209408,0.723445,0.285624,0.448136,0.651493,0.846398,0.146818,0.851035,0.0680018,0.348287,0.731497,0.192915,0.461582,0.738825,0.582633,0.00102085,0.987527,0.421289,0.625131,0.739305,0.83148,0.224056,0.406455,0.22441,0.52014,0.499037,0.770206,0.911018,0.712481,0.697364,0.934297,0.347651,0.840082,0.822216,0.0156683,0.170999,0.825822,0.651316,0.550879,0.238819,0.77579,0.0604014,0.681439,0.864661,0.625717,0.116951,0.183688,0.0395796,0.29571,0.626193,0.826392,0.620636,0.82666,0.158629,0.946825,0.654885,0.280697,0.975673,0.941888,0.388747,0.827617,0.241989,0.151786,0.658849,0.525265,0.443325,0.358884,0.0299959,0.557828,0.331724,0.0523859,0.394542,0.907615,0.690417,0.678518,0.20642,0.664603,0.935661,0.478305,0.418938,0.136982,0.967984,0.440098,0.665838,0.429312,0.247373,0.0510162,0.0557216,0.8939,0.239324,0.266365,0.28814,0.874098,0.97829,0.77082,0.681606,0.996458,0.0725246,0.668352,0.461586,0.71872,0.239574,0.494351,0.994583,0.666064,0.163997,0.418627,0.150846,0.160314,0.10506,0.43533,0.475916,0.358449,0.745725,0.670944,0.880405,0.567343,0.979756,0.879716,0.0516478,0.197447,0.864044,0.355854,0.00917107,0.727437,0.810525,0.82333,0.803953,0.237578,0.121243,0.108022,0.614246,0.658364,0.66836,0.0181307,0.972121,0.215291,0.665327,0.106001,0.675745,0.979596,0.773707,0.689497,0.123229,0.179928,0.519363,0.801258,0.423477,0.602087,0.859843,0.317852,0.0706705,0.29609,0.880744,0.749616,0.500537,0.627296,0.480845,0.879708,0.540782,0.560236,0.83377,0.809024,0.244494,0.871156,0.645162,0.308609,0.476578,0.0924254,0.99728,0.83354,0.344875,0.675844,0.644937,0.304662,0.238532,0.100601,0.296226,0.296811,0.325742,0.0761484,0.486024,0.0884489,0.186868,0.990394,0.839825,0.0872337,0.307322,0.891705,0.880151,0.504605,0.987706,0.932753,0.714033,0.495177,0.71746,0.315423,0.684207,0.0741999,0.853827,0.788339,0.11414,0.191708,0.507668,0.112216,0.903371,0.251599,0.142073,0.273748,0.968478,0.490631,0.744271,0.738685,0.863977,0.923112,0.654018,0.395909,0.909983,0.167176,0.046885,0.597796,0.807348,0.65847,0.244901,0.287354,0.0903866,0.222771,0.0513657,0.517564,0.430015,0.425333,0.833283,0.998528,0.464388,0.965198,0.132644,0.583421,0.980287,0.102405,0.695206,0.348304,0.121089,0.39952,0.816596,0.335295,0.313292,0.354371,0.224458,0.48743,0.0527554,0.21972,0.334442,0.710845,0.156643,0.213718,0.84164,0.802555,0.533016,0.851534,0.315575,0.520301,0.0519136,0.393622,0.718254,0.607218,0.0143989,0.876143,0.0160601,0.402997,0.75665,0.699772,0.705459,0.666779,0.580728,0.874444,0.122451,0.540847,0.439577,0.306929,0.80228,0.334274,0.298857,0.00476223,0.268796,0.690046,0.438699,0.466284,0.921145,0.769917,0.246605,0.929266,0.817931,0.527571,0.0297049,0.431712,0.584491,0.779182,0.55249,0.846818,0.459705,0.28354,0.399859,0.891295,0.774385,0.366411,0.372804,0.87986,0.774011,0.355309,0.412795,0.850836,0.992483,0.940121,0.585183,0.280541,0.475029,0.721033,0.941673,0.995224,0.554124,0.437251,0.511,0.0502075,0.351335,0.257861,0.584659,0.213402,0.45283,0.534231,0.950814,0.727927,0.495502,0.769566,0.220163,0.242118,0.176522,0.107646,0.444717,0.923368,0.0333267,0.469581,0.714154,0.863933,0.693743,0.549307,0.587721,0.17938,0.98002,0.265309,0.563571,0.989316,0.287742,0.227521,0.905706,0.150667,0.167475,0.469818,0.812485,0.270063,0.343846,0.754235,0.0745133,0.560921,0.226365,0.947109,0.882778,0.375517,0.105787,0.413408,0.675597,0.80729,0.373019,0.786954,0.524642,0.154398,0.546169,0.911038,0.388938,0.11616,0.216571,0.403792,0.183676,0.834812,0.794327,0.500939,0.572176,0.841804,0.251796,0.245478,0.538619,0.102681,0.307061,0.266901,0.549732,0.519333,0.0269849,0.719313,0.0394886,0.516653,0.178035,0.271015,0.355919,0.237363,0.683882,0.858454,0.794248,0.386215,0.661334,0.851605,0.868494,0.8061,0.0476058,0.946159,0.800056,0.916097,0.0451756,0.13623,0.952969,0.471599,0.512012,0.9999,0.417877,0.47165,0.257266,0.803831,0.425799,0.1521,0.287036,0.903308,0.0525666,0.766715,0.825556,0.192159,0.65716,0.0132196,0.584097,0.718036,0.241924,0.110557,0.413273,0.622837,0.549773,0.207841,0.15374,0.365402,0.562063,0.932125,0.723437,0.310718,0.916303,0.942441,0.363894,0.548504,0.912581,0.147098,0.882288,0.636495,0.635067,0.551299,0.875045,0.792718,0.600605,0.0507118,0.117045,0.751823,0.948189,0.360777,0.468098,0.231902,0.0609624,0.31645,0.356693,0.334058,0.810224,0.8,0.497063,0.823801,0.904693,0.815457,0.66381,0.697749,0.0562572,0.98915,0.544512,0.362342,0.507613,0.302193,0.409449,0.348197,0.625488,0.0843344,0.0925003,0.810752,0.656747,0.99,0.721241,0.967284,0.736079,0.264444,0.0079729,0.994617,0.514132,0.892275,0.0224249,0.43327,0.716078,0.240997,0.486756,0.156044,0.078611,0.296931,0.0855444,0.122679,0.114805,0.233267,0.843019,0.917336,0.163637,0.627495,0.173394,0.79364,0.212165,0.963666,0.0536869,0.855743,0.0709052,0.942783,0.386901,0.605207,0.723122,0.581768,0.371617,0.516765,0.231602,0.22605,0.360931,0.192618,0.591114,0.916428,0.356645,0.77494,0.890419,0.979872,0.930545,0.744941,0.818626,0.314363,0.593417,0.0110634,0.821156,0.517694,0.58988,0.232213,0.0310258,0.0824193,0.476354,0.174984,0.708361,0.967088,0.931918,0.0812275,0.750948,0.492565,0.105706,0.226098,0.822763,0.559529,0.883081,0.469866,0.907626,0.435486,0.0136865,0.243137,0.445403,0.162534,0.778216,0.315467,0.687615,0.0663924,0.235376,0.920779,0.914778,0.362755,0.00251627,0.739264,0.53089,0.980638,0.975283,0.0321662,0.716461,0.858328,0.72468,0.763042,0.182651,0.568502,0.466506,0.953901,0.205124,0.284457,0.755943,0.327973,0.860197,0.257132,0.338591,0.349584,0.680856,0.776878,0.723647,0.424291,0.474336,0.544399,0.431765,0.341626,0.945091,0.234009,0.177535,0.962721,0.893245,0.591501,0.818051,0.756829,0.938396,0.883427,0.776076,0.25786,0.155849,0.527594,0.333602,0.262349,0.814033,0.366899,0.89908,0.767764,0.464673,0.374658,0.234468,0.51945,0.929351,0.278481,0.693853,0.887388,0.844999,0.228103,0.370786,0.737567,0.795719,0.2768,0.880873,0.999227,0.468063,0.841562,0.83572,0.598945,0.685876,0.227519,0.955838,0.865378,0.66906,0.697602,0.292819,0.0163667,0.939297,0.668704,0.163072,0.653182,0.856864,0.963299,0.0946565,0.569492,0.0114925,0.147506,0.747743,0.626315,0.600396,0.00388283,0.764062,0.653283,0.00998414,0.966628,0.394859,0.82668,0.297539,0.94669,0.973708,0.471233,0.598933,0.84234,0.971875,0.986757,0.321756,0.269848,0.901855,0.769608,0.814849,0.054682,0.947997,0.489804,0.79167,0.65895,0.27816,0.479371,0.37188,0.599248,0.0227028,0.822427,0.115573,0.434422,0.216272,0.675459,0.0825568,0.627682,0.700017,0.0980735,0.921882,0.264012,0.399105,0.413245,0.394989,0.581668,0.355681,0.618493,0.719622,0.268142,0.138162,0.63678,0.430583,0.867176,0.145292,0.143972,0.133253,0.45886,0.722078,0.0592358,0.428688,0.603063,0.869214,0.270757,0.0677312,0.76654,0.42917,0.475709,0.993788,0.964014,0.980058,0.509775,0.555203,0.229024,0.0140485,0.992561,0.793698,0.204968,0.784071,0.259861,0.417297,0.298986,0.654336,0.717585,0.45473,0.73912,0.0400217,0.776851,0.53497,0.77554,0.976817,0.810668,0.470468,0.490269,0.691558,0.335508,0.340739,0.204951,0.262395,0.097204,0.10148,0.783518,0.220134,0.834112,0.12728,0.505567,0.857895,0.628289,0.765009,0.13863,0.176861,0.0535398,0.302085,0.339996,0.597826,0.566733,0.442359,0.0743963,0.590742,0.710696,0.454149,0.105095,0.167089,0.759725,0.839289,0.8549,0.478293,0.748736,0.661054,0.821042,0.666154,0.899645,0.969139,0.543096,0.15121,0.195057,0.122294,0.240203,0.713172,0.990323,0.0722727,0.160704,0.990737,0.259247,0.908851,0.41311,0.254841,0.239553,0.36009,0.0764705,0.797595,0.46055,0.925479,0.637707,0.0719743,0.0301728,0.202482,0.728079,0.439234,0.211122,0.356606,0.638279,0.74227,0.0360897,0.453232,0.12658,0.685036,0.589108,0.0941361,0.793791,0.055654,0.752192,0.539212,0.451224,0.63295,0.517971,0.967831,0.150546,0.149823,0.524678,0.361052,0.214689,0.434106,0.0893539,0.810972,0.14646,0.993178,0.519544,0.479975,0.560989,0.257331,0.0225534,0.539964,0.920426,0.733702,0.314887,0.114515,0.462277,0.519945,0.0916885,0.745392,0.139501,0.648176,0.517234,0.906317,0.427404,0.881528,0.263465,0.833299,0.9611,0.367214,0.970746,0.0396506,0.993415,0.121293,0.0656987,0.840614,0.390511,0.169811,0.949424,0.669754,0.228678,0.54905,0.468524,0.10496,0.309719,0.271981,0.0754049,0.0373486,0.691168,0.401774,0.646298,0.485177,0.502175,0.557181,0.978727,0.0222251,0.559303,0.447772,0.642022,0.501633,0.0604438,0.490561,0.0360204,0.643165,0.152267,0.280613,0.013253,0.573383,0.628557,0.80789,0.227564,0.630767,0.955029,0.453106,0.613063,0.478259,0.499286,0.287539,0.80542,0.95086,0.668057,0.894096,0.487697,0.93069,0.684382,0.712445,0.412909,0.212383,0.532687,0.862144,0.762514,0.0138935,0.599478,0.713701,0.199133,0.838506,0.669411,0.865827,0.0376102,0.366128,0.352437,0.205517,0.688871,0.691759,0.734158,0.940738,0.70229,0.097386,0.0134809,0.730938,0.615843,0.485249,0.131464,0.684521,0.945346,0.610295,0.960024,0.430657,0.465376,0.0509092,0.760759,0.673912,0.801928,0.304673,0.963628,0.893921,0.275984,0.336974,0.343632,0.333956,0.935714,0.659512,0.712467,0.684109,0.519377,0.696629,0.604148,0.031822,0.0197698,0.560557,0.127157,0.338093,0.161156,|0.194098,0.471609,0.253918,0.488624,0.158312,0.30295,0.713826,0.494655,0.780102,0.528963,0.303989,0.955406,0.0495819,0.938736,0.0554078,0.854069,0.595233,0.175166,0.890821,0.535571,0.380251,0.345336,0.766975,0.607575,0.384114,0.484806,0.859838,0.634099,0.146225,0.584343,0.471219,0.373025,0.36989,0.121619,0.832392,0.705957,0.158966,0.841828,0.60288,0.253487,0.751013,0.350976,0.0682707,0.403468,0.239734,0.131171,0.075496,0.855056,0.669017,0.881539,0.9523,0.763874,0.258816,0.947765,0.0139931,0.390788,0.972147,0.315318,0.792367,0.531306,0.246,0.10437,0.210527,0.14412,0.896285,0.687424,0.81504,0.787335,0.00540406,0.912991,0.121084,0.165863,0.893533,0.228869,0.525061,0.858524,0.479113,0.188799,0.0354418,0.493031,0.444875,0.071212,0.0242028,0.772882,0.376455,0.1458,0.793034,0.303243,0.562664,0.181323,0.464056,0.995331,0.433913,0.491424,0.293979,0.741774,0.595899,0.95859,0.979783,0.430644,0.320422,0.373251,0.723836,0.0567712,0.0433832,0.310375,0.0672682,0.47562,0.0330342,0.84748,0.432313,0.346409,0.776511,0.592643,0.529148,0.961788,0.293654,0.507971,0.760698,0.93562,0.141315,0.237306,0.679091,0.0424685,0.87483,0.892199,0.150836,0.0334521,0.0260983,0.510755,0.713876,0.377627,0.592636,0.375128,0.582521,0.631433,0.0700106,0.30987,0.39353,0.657177,0.921,0.0247001,0.78353,0.845281,0.0805594,0.468879,0.44025,0.283312,0.264445,0.0138165,0.843086,0.678721,0.716873,0.127936,0.281378,0.0714182,0.655044,0.254705,0.0889215,0.248311,0.0963635,0.388497,0.845319,0.492298,0.544721,0.901392,0.911211,0.103852,0.278182,0.926607,0.952578,0.184761,0.545678,0.62614,0.171507,0.679766,0.630974,0.415415,0.722545,0.0385687,0.529009,0.393507,0.204598,0.728432,0.28282,0.250717,0.0555202,0.413005,0.717708,0.00329638,0.603645,0.852378,0.103301,0.11615,0.953007,0.759366,0.376566,0.555776,0.829936,0.63157,0.590327,0.854489,0.061002,0.625552,0.887076,0.119378,0.425437,0.0273218,0.0945796,0.835146,0.753856,0.627297,0.885636,0.468702,0.321727,0.239101,0.777235,0.0426984,0.454321,0.168686,0.784733,0.852521,0.223581,0.30163,0.663357,0.2004,0.20187,0.0935982,0.47061,0.269114,0.536216,0.960469,0.979374,0.487436,0.673929,0.0179387,0.251015,0.65237,0.272634,0.504788,0.370422,0.898934,0.0272654,0.929164,0.453527,0.315869,0.284813,0.946723,0.0110838,0.141416,0.284977,0.894996,0.791442,0.27436,0.204485,0.294578,0.542481,0.472219,0.224737,0.798067,0.652411,0.427992,0.673508,0.497739,0.189674,0.653258,0.196856,0.227235,0.436662,0.655474,0.418224,0.463965,0.984297,0.036588,0.88475,0.509665,0.0631559,0.050971,0.082762,0.259945,0.663004,0.541145,0.299816,0.380299,0.667723,0.975351,0.653442,0.158252,0.696519,0.283706,0.314381,0.156421,0.0952819,0.476846,0.7964,0.308285,0.516435,0.577149,0.166277,0.288649,0.109318,0.460892,0.880454,0.440109,0.675765,0.659198,0.0607727,0.698657,0.923021,0.0854565,0.310424,0.0188192,0.380609,0.368646,0.474342,0.0549796,0.537664,0.328602,0.246251,0.409817,0.272633,0.208807,0.0379021,0.499964,0.416421,0.375328,0.646494,0.799387,0.221613,0.320686,0.316375,0.276254,0.332085,0.360433,0.121885,0.094158,0.733398,0.635628,0.0512183,0.545175,0.209975,0.402478,0.648939,0.92665,0.41694,0.921503,0.861005,0.699153,0.280626,0.318798,0.367622,0.551238,0.594317,0.46947,0.58732,0.36235,0.187543,0.0958216,0.9466,0.738095,0.1823,0.841139,0.0729972,0.839005,0.835905,0.390112,0.344077,0.767478,0.485237,0.0427357,0.0792289,0.240541,0.792463,0.182522,0.373018,0.173837,0.742157,0.390183,0.0126632,0.157563,0.148631,0.410531,0.761719,0.407758,0.563604,0.665309,0.362178,0.686233,0.571328,0.640913,0.617514,0.890955,0.424425,0.418916,0.636405,0.974938,0.560649,0.238613,0.271298,0.937185,0.856025,0.964761,0.895806,0.447882,0.866283,0.293461,0.00458473,0.487521,0.973637,0.0959457,0.8014,0.057361,0.701685,0.737041,0.674123,0.547086,0.875539,0.446969,0.19499,0.0624671,0.368627,0.983033,0.308792,0.763058,0.320404,0.280881,0.0784836,0.805449,0.584513,0.542922,0.858009,0.619852,0.945171,0.304516,0.128324,0.87283,0.429813,0.916341,0.823787,0.41041,0.145996,0.667675,0.0178517,0.74396,0.23575,0.866999,0.896535,0.848319,0.501998,0.496388,0.0413452,0.0103412,0.392536,0.957382,0.80878,0.57151,0.336149,0.198122,0.207482,0.0516891,0.00685751,0.790894,0.714953,0.072447,0.251376,0.183361,0.0246276,0.86908,0.11708,0.312785,0.129529,0.458922,0.0752198,0.48983,0.715046,0.968786,0.585929,0.525237,0.553827,0.816292,0.241299,0.949063,0.447428,0.000690818,0.153905,0.0373341,0.00745517,0.465201,0.151205,0.165411,0.963668,0.116825,0.103441,0.614018,0.723582,0.275474,0.832529,0.402518,0.945297,0.184767,0.758102,0.224736,0.787636,0.298679,0.946137,0.67251,0.703749,0.190903,0.742605,0.208593,0.34542,0.161545,0.504392,0.593441,0.808336,0.396664,0.894651,0.11942,0.239532,0.969994,0.587557,0.903097,0.601602,0.222904,0.936427,0.195433,0.180625,0.14763,0.863872,0.0931895,0.774325,0.864758,0.687912,0.548542,0.92908,0.718444,0.797224,0.937258,0.252266,0.857476,0.0258871,0.682761,0.136035,0.666312,0.861808,0.168082,0.524744,0.949555,0.0282887,0.241534,0.167783,0.285082,0.354993,0.413942,0.667549,0.731815,0.736212,0.843227,0.281253,0.744004,0.755838,0.758889,0.115022,0.920192,0.818695,0.872625,0.918817,0.456269,0.718049,0.61304,0.914104,0.803629,0.118742,0.0459856,0.299675,0.980777,0.188684,0.765673,0.304879,0.198276,0.531918,0.167917,0.445242,0.804736,0.349035,0.897278,0.551331,0.115838,0.70781,0.886942,0.279397,0.148752,0.792905,0.840131,0.200755,0.629595,0.922312,0.696994,0.352434,0.419929,0.609715,0.74999,0.219089,0.854682,0.304561,0.731838,0.748227,0.411647,0.405209,0.356705,0.0660027,0.972931,0.325714,0.383169,0.273215,0.43442,0.841753,0.00278002,0.630631,0.737048,0.703803,0.974157,0.615193,0.139364,0.578847,0.988267,0.156272,0.948922,0.917231,0.315642,0.356712,0.383352,0.230865,0.785501,0.941707,0.867962,0.880956,0.152675,0.147097,0.746147,0.714259,0.432929,0.51791,0.276738,0.335484,0.060167,0.397264,0.848973,0.456051,0.146698,0.415148,0.944492,0.0914777,0.44273,0.0785363,0.847597,0.211924,0.867816,0.253805,0.752446,0.324901,0.798065,0.185848,0.813833,0.517631,0.785011,0.434585,0.777157,0.411646,0.63793,0.115537,0.401149,0.823522,0.53469,0.288262,0.758951,0.117569,0.384016,0.162806,0.790849,0.396308,0.0797778,0.320818,0.327725,0.762401,0.458182,0.912456,0.921983,0.637955,0.239556,0.123492,0.261093,0.318186,0.317917,0.85044,0.688447,0.314884,0.15643,0.341559,0.477867,0.693315,0.567375,0.601722,0.0570253,0.998173,0.321286,0.0575878,0.468223,0.154237,0.771769,0.304084,0.684353,0.250312,0.678047,0.816063,0.0571811,0.357348,0.0813396,0.315041,0.580658,0.961498,0.0608777,0.218423,0.751059,0.501256,0.53951,0.683433,0.407042,0.139642,0.291529,0.658155,0.979257,0.977834,0.388783,0.989299,0.224527,0.288575,0.986509,0.458195,0.972563,0.272685,0.544496,0.774737,0.240436,0.615953,0.128247,0.780473,0.568734,0.175208,0.766548,0.893713,0.392954,0.628061,0.315085,0.735541,0.374023,0.429906,0.0227194,0.358293,0.473654,0.126402,0.880268,0.254605,0.0852525,0.587001,0.70041,0.146614,0.77334,0.622077,0.621353,0.934971,0.406273,0.362155,0.80317,0.786395,0.550877,0.785788,0.229906,0.60225,0.852853,0.902911,0.557856,0.158698,0.508542,0.397464,0.0662518,0.788039,0.444981,0.620069,0.457069,0.185632,0.467071,0.569079,0.418763,0.625831,0.254431,0.816226,0.157382,0.572889,0.35608,0.990062,0.817221,0.365676,0.569957,0.857443,0.600028,0.749543,0.491048,0.120535,0.823776,0.347204,0.946699,0.750853,0.193823,0.0774548,0.834487,0.262367,0.727559,0.713968,0.217843,0.547868,0.185004,0.118467,0.227325,0.762424,0.247598,0.87696,0.743262,0.314578,0.837906,0.027892,0.969584,0.922429,0.00214076,0.813254,0.600753,0.252682,0.570726,0.445055,0.152785,0.0210607,0.989665,0.0383011,0.0463009,0.42629,0.0976071,0.119637,0.945477,0.710953,0.303186,0.469842,0.590701,0.752302,0.367548,0.0960582,0.689868,0.325196,0.196353,0.250152,0.389648,0.522589,0.527491,0.142843,0.654516,0.352605,0.430314,0.912932,0.602469,0.715927,0.678612,0.220306,0.636824,0.31645,0.0527787,0.555474,0.874119,0.00712824,0.365897,0.698141,0.189448,0.715672,0.0129159,0.0799929,0.719746,0.796003,0.195987,0.118559,0.6495,0.50767,0.0271347,0.101748,0.0308414,0.178056,0.471738,0.421643,0.819033,0.458306,0.049733,0.973072,0.995547,0.312752,0.963049,0.54731,0.920393,0.34894,0.352429,0.888623,0.861432,0.617819,0.400709,0.296457,0.560205,0.933337,0.290622,0.278832,0.972405,0.817203,0.368304,0.697768,0.423211,0.150241,0.914538,0.175955,0.0871872,0.0896849,0.955448,0.616749,0.422408,0.453909,0.275885,0.117359,0.0800309,0.634618,0.0579172,0.947317,0.222973,0.770402,0.317017,0.949514,0.257565,0.967064,0.632451,0.0633723,0.16111,0.28288,0.120102,0.185341,0.503907,0.863026,0.992912,0.351924,0.408282,0.237059,0.352759,0.255116,0.0729865,0.689369,0.743896,0.059196,0.145254,0.342389,0.207215,0.0146049,0.488922,0.821031,0.452586,0.690537,0.627206,0.303165,0.389033,0.715774,0.141269,0.113994,0.972142,0.0616768,0.357738,0.782389,0.513026,0.79708,0.889464,0.0259681,0.612607,0.867952,0.908857,0.55601,0.0939823,0.232037,0.384953,0.340341,0.899455,0.47927,0.665612,0.540392,0.208847,0.765262,0.401792,0.959052,0.908591,0.505685,0.956407,|0.390861,0.644872,0.217239,0.0584508,0.984887,0.29622,0.0378001,0.139811,0.423121,0.496442,0.745545,0.0175817,0.145435,0.550599,0.037272,0.042143,0.742006,0.768179,0.955775,0.871782,0.90288,0.73468,0.573771,0.0881182,0.450445,0.82286,0.585242,0.765543,0.483012,0.0951975,0.34796,0.0202591,0.722399,0.674118,0.683417,0.958702,0.760647,0.442664,0.873621,0.994767,0.948984,0.635214,0.717574,0.489288,0.940724,0.796273,0.36958,0.900254,0.59955,0.259167,0.473374,0.875764,0.0186952,0.421795,0.137202,0.596738,0.669261,0.975034,0.603549,0.135244,0.56528,0.625029,0.512193,0.671958,0.48362,0.119527,0.288993,0.127454,0.761328,0.853095,0.246486,0.865546,0.464493,0.386101,0.498513,0.955559,0.367292,0.810451,0.214904,0.233259,0.836858,0.441031,0.496356,0.885565,0.144312,0.220332,0.768388,0.166672,0.3061,0.0204576,0.117692,0.718802,0.563559,0.176582,0.127369,0.208374,0.496693,0.0124689,0.0691935,0.598411,0.365957,0.740716,0.828974,0.118351,0.788283,0.567566,0.26113,0.424483,0.796882,0.729289,0.246044,0.310632,0.839347,0.194838,0.0462575,0.362453,0.331946,0.375325,0.252169,0.10595,0.77027,0.359979,0.928236,0.0125207,0.0676342,0.523896,0.711716,0.149552,0.573077,0.34824,0.494386,0.612467,0.070849,0.55122,0.284953,0.440211,0.718276,0.831365,0.334941,0.37426,0.6936,0.483749,0.658322,0.898299,0.557437,0.214915,0.125878,0.0418397,0.685046,0.0471122,0.798449,0.584888,0.119726,0.7471,0.830961,0.144009,0.489586,0.112561,0.191077,0.264363,0.869206,0.930229,0.618051,0.226145,0.526781,0.423075,0.193544,0.547618,0.909939,0.465221,0.553267,0.266016,0.827062,0.343894,0.949813,0.154066,0.491032,0.460661,0.200779,0.358053,0.544642,0.206097,0.0568938,0.253583,0.324995,0.458798,0.806485,0.731004,0.590076,0.861727,0.400113,0.714598,0.555556,0.678015,0.177266,0.656977,0.927332,0.566863,0.889306,0.856532,2.41995e-05,0.210151,0.0791686,0.551225,0.476127,0.840089,0.51675,0.315574,0.427894,0.06263,0.730297,0.275181,0.632029,0.71313,0.107467,0.00537461,0.957732,0.373631,0.538829,0.19815,0.0920433,0.184503,0.272351,0.977482,0.370991,0.191819,0.972403,0.40062,0.587021,0.464398,0.380332,0.961254,0.486983,0.166839,0.990121,0.630927,0.604042,0.697103,0.25569,0.389425,0.79622,0.594273,0.588333,0.672217,0.0603486,0.77959,0.131665,0.199178,0.62074,0.368482,0.712304,0.13827,0.552758,0.838047,0.970903,0.147695,0.364748,0.0330391,0.822667,0.638929,0.819377,0.738364,0.376312,0.708959,0.211089,0.769394,0.0492567,0.666175,0.918498,0.765421,0.542683,0.012898,0.699984,0.787787,0.0460516,0.854232,0.728826,0.769495,0.571396,0.534028,0.522325,0.035445,0.375636,0.9411,0.275237,0.573673,0.180686,0.0244621,0.956931,0.468524,0.216731,0.673375,0.711201,0.750328,0.990698,0.195508,0.158529,0.578738,0.259094,0.546797,0.998041,0.284741,0.142743,0.128709,0.95784,0.977024,0.00859433,0.672406,0.565087,0.708997,0.225255,0.525363,0.958154,0.296233,0.0483016,0.859007,0.438313,0.0078482,0.764395,0.485525,0.844693,0.990935,0.745613,0.595061,0.350803,0.00833905,0.601313,0.731878,0.671475,0.547345,0.737625,0.162276,0.175223,0.408235,0.468189,0.530903,0.883208,0.0626115,0.708519,0.449368,0.62574,0.440692,0.567746,0.460454,0.458808,0.107546,0.532644,0.0618765,0.195575,0.820004,0.932017,0.480618,0.0527193,0.428033,0.817527,0.330061,0.0464363,0.0140281,0.662731,0.553773,0.0171512,0.869989,0.74153,0.328445,0.212588,0.411209,0.959594,0.126322,0.0424185,0.750289,0.155669,0.278065,0.678563,0.490483,0.432829,0.935759,0.496692,0.63123,0.772654,0.0491796,0.304063,0.322026,0.430064,0.507438,0.646233,0.148989,0.254612,0.0118125,0.514837,0.832703,0.634092,0.777496,0.160676,0.532883,0.132698,0.154316,0.584247,0.303791,0.0107557,0.811526,0.943997,0.238231,0.594305,0.213818,0.326607,0.106624,0.545043,0.288271,0.554738,0.787905,0.311038,0.507491,0.279563,0.343762,0.727853,0.52091,0.701208,0.0932321,0.195024,0.384196,0.353661,0.947693,0.786085,0.629989,0.683938,0.317712,0.77084,0.00826347,0.805785,0.647141,0.2439,0.893968,0.159017,0.115486,0.82087,0.418919,0.0979707,0.872315,0.600626,0.567902,0.00478715,0.664246,0.836907,0.516392,0.442296,0.56183,0.956317,0.333722,0.0645279,0.861625,0.637937,0.768421,0.335148,0.112029,0.279961,0.840335,0.913592,0.304024,0.620669,0.969641,0.784629,0.590056,0.0497203,0.366106,0.633953,0.639294,0.963712,0.216973,0.737741,0.767072,0.554394,0.765078,0.385911,0.213549,0.402096,0.281247,0.986867,0.250916,0.446246,0.804738,0.395536,0.173708,0.531178,0.407171,0.0285689,0.0984783,0.535007,0.00610262,0.356206,0.359352,0.604608,0.00835913,0.563914,0.435381,0.318442,0.503681,0.904022,0.849105,0.0764277,0.438764,0.779259,0.240743,0.633507,0.198387,0.19254,0.751335,0.417023,0.346748,0.0956461,0.393669,0.428661,0.595802,0.128102,0.0461212,0.361544,0.617934,0.0616602,0.140863,0.0977464,0.802578,0.637806,0.0154119,0.583283,0.506649,0.497169,0.00453311,0.947681,0.192156,0.9893,0.214826,0.375543,0.833592,0.466223,0.456457,0.609231,0.788853,0.307594,0.468991,0.763873,0.93494,0.368604,0.596557,0.702757,0.341819,0.867529,0.787181,0.130235,0.04879,0.166067,0.509967,0.854052,0.0274515,0.792462,0.386917,0.99482,0.625882,0.472991,0.254856,0.589913,0.0518834,0.220727,0.146793,0.893138,0.54675,0.310292,0.633775,0.0330078,0.0705044,0.546661,0.558073,0.0205812,0.647721,0.882833,0.285388,0.664192,0.242982,0.844308,0.545049,0.560641,0.701077,0.754557,0.157583,0.517229,0.49062,0.681213,0.864635,0.118508,0.894768,0.879503,0.84183,0.203987,0.426051,0.16078,0.358956,0.443462,0.688486,0.627889,0.743678,0.777719,0.213668,0.391381,0.919038,0.379656,0.502721,0.819601,0.0643584,0.156265,0.32134,0.30857,0.211598,0.878488,0.306102,0.414378,0.0273127,0.482578,0.164034,0.106127,0.0318798,0.00878745,0.384332,0.698849,0.580298,0.347814,0.790839,0.570974,0.930178,0.884867,0.968171,0.973249,0.835031,0.58773,0.576851,0.450258,0.620607,0.98684,0.315809,0.951385,0.0435172,0.151995,0.189825,0.537278,0.903081,0.437618,0.284546,0.19753,0.114168,0.65736,0.169801,0.172161,0.288085,0.388003,0.761683,0.238026,0.312279,0.593743,0.313625,0.990187,0.0436777,0.247741,0.0618365,0.389824,0.124643,0.731703,0.64571,0.613947,0.257112,0.699262,0.804998,0.927704,0.118691,0.937481,0.0335744,0.841704,0.745114,0.381972,0.820881,0.564453,0.900049,0.209791,0.192711,0.14333,0.122255,0.744439,0.610607,0.682537,0.491953,0.0731858,0.716949,0.414489,0.302144,0.607455,0.382415,0.721947,0.514436,0.690434,0.970904,0.814105,0.759254,0.759287,0.0617573,0.919355,0.739842,0.970959,0.356848,0.0824535,0.72608,0.233084,0.543861,0.156489,0.720937,0.538211,0.0999303,0.918229,0.511267,0.825171,0.892862,0.410264,0.802071,0.652538,0.18812,0.683178,0.063113,0.0761469,0.111405,0.238066,0.441532,0.359586,0.450943,0.477759,0.233864,0.35628,0.332633,0.454207,0.463578,0.573618,0.212322,0.417815,0.595268,0.887559,0.160566,0.950546,0.952968,0.454643,0.979613,0.601964,0.623292,0.0925987,0.269331,0.778267,0.984611,0.514463,0.125932,0.31856,0.807664,0.985305,0.434978,0.623852,0.526256,0.953687,0.971679,0.290875,0.4613,0.114594,0.140791,0.81644,0.47443,0.925892,0.787419,0.631912,0.728233,0.207336,0.307301,0.321424,0.0681629,0.295412,0.54407,0.2767,0.006836,0.314999,0.175079,0.902529,0.550605,0.654364,0.773316,0.082499,0.274611,0.572322,0.400519,0.968074,0.689212,0.160096,0.264046,0.903619,0.237486,0.89166,0.477767,0.913413,0.353639,0.964775,0.973105,0.268616,0.115592,0.139756,0.066498,0.414482,0.918761,0.781008,0.0526366,0.373102,0.2201,0.315218,0.0252046,0.52539,0.476782,0.083712,0.354465,0.487949,0.00688434,0.174665,0.66382,0.876212,0.679412,0.000413716,0.842229,0.917019,0.83235,0.229271,0.391115,0.867817,0.851012,0.768324,0.166246,0.593462,0.45674,0.578043,0.538373,0.520347,0.081554,0.684624,0.828486,0.287293,0.723948,0.0816527,0.470745,0.663771,0.18232,0.968302,0.500096,0.481818,0.0610443,0.474693,0.311754,0.881478,0.392001,0.286973,0.955822,0.0446768,0.473978,0.381154,0.879701,0.503445,0.369744,0.341891,0.639835,0.627676,0.77216,0.0211424,0.943642,0.574716,0.384736,0.518354,0.914657,0.781319,0.723412,0.755208,0.551312,0.257043,0.777957,0.389689,0.301801,0.556593,0.121985,0.374286,0.869016,0.2925,0.784308,0.880228,0.0466812,0.8893,0.678822,0.832503,0.0455892,0.247847,0.412944,0.343225,0.325249,0.205371,0.991238,0.662078,0.233758,0.944657,0.247382,0.205947,0.992905,0.586774,0.819593,0.95622,0.857061,0.803285,0.0362308,0.328684,0.585237,0.934953,0.89296,0.560875,0.777403,0.0502733,0.759481,0.0169566,0.860342,0.488555,0.514291,0.105517,0.321452,0.263204,0.342916,0.712856,0.603724,0.528608,0.481291,0.997652,0.967411,0.806274,0.43152,0.738324,0.909873,0.114045,0.230122,0.374034,0.534727,0.862423,0.900977,0.680837,0.24949,0.156216,0.568708,0.871595,0.669229,0.919053,0.932087,0.952857,0.49479,0.565464,0.361918,0.932052,0.827137,0.179448,0.0238225,0.437235,0.969065,0.0184744,0.564086,0.730118,0.988989,0.351301,0.293259,0.826277,0.273664,0.868675,0.407377,0.466748,0.181398,0.705651,0.404895,0.141696,0.267546,0.153343,0.78932,0.534768,0.981779,0.817293,0.341895,0.193366,0.745358,0.191071,0.739976,0.920873,0.712634,0.710412,0.0894948,0.135466,0.65808,0.129498,0.846946,0.471489,0.417907,0.0873367,0.131406,0.548791,0.286152,|0.282097,0.547998,0.762175,0.889822,0.916578,0.626041,0.175654,0.0303429,0.739497,0.951375,0.646414,0.134824,0.613677,0.858439,0.677279,0.364575,0.270304,0.514162,0.391175,0.340553,0.606561,0.96122,0.129008,0.169291,0.825058,0.423121,0.134189,0.903879,0.775253,0.367072,0.6936,0.0800778,0.883177,0.791673,0.594768,0.250549,0.674756,0.415998,0.667302,0.464224,0.117851,0.0205947,0.593875,0.399356,0.500273,0.826452,0.175888,0.859362,0.919689,0.119983,0.104513,0.811036,0.110004,0.564755,0.211645,0.393687,0.485086,0.488007,0.150329,0.202277,0.224987,0.303164,0.904453,0.298104,0.773384,0.5223,0.917085,0.825226,0.554608,0.701228,0.06199,0.422301,0.796525,0.593192,0.0156333,0.098582,0.0489716,0.544297,0.641924,0.203281,0.5089,0.817294,0.118927,0.742342,0.408931,0.0320543,0.0717158,0.211996,0.817042,0.835953,0.2388,0.577459,0.866476,0.269741,0.695754,0.900419,0.124712,0.956904,0.792242,0.536767,0.21544,0.648877,0.137542,0.131034,0.85632,0.690746,0.658163,0.112605,0.79748,0.501026,0.132692,0.669605,0.927846,0.852276,0.142657,0.265765,0.423171,0.74265,0.682428,0.11031,0.776973,0.16416,0.77927,0.803374,0.919016,0.912804,0.105417,0.721968,0.309021,0.870739,0.589509,0.758181,0.890594,0.110125,0.120119,0.713004,0.0053491,0.671451,0.41812,0.118234,0.84403,0.246997,0.59444,0.163172,0.699456,0.58726,0.843662,0.864768,0.0250785,0.382171,0.742482,0.536455,0.912524,0.279101,0.780977,0.113396,0.99296,0.480004,0.918719,0.915586,0.191927,0.291442,0.785834,0.524945,0.753417,0.524831,0.145457,0.564406,0.583864,0.469642,0.0900168,0.788555,0.220839,0.884642,0.653436,0.289617,0.472201,0.534332,0.214892,0.556322,0.889902,0.966771,0.393453,0.450477,0.78577,0.613898,0.21693,0.656136,0.269665,0.0861625,0.942597,0.61136,0.963194,0.424078,0.68237,0.0521939,0.395612,0.386121,0.825613,0.663024,0.752733,0.766568,0.500377,0.359958,0.445396,0.457818,0.206715,0.173701,0.284028,0.212257,0.755641,0.507698,0.804675,0.888511,0.137782,0.8573,0.735728,0.622745,0.134446,0.74118,0.424152,0.862259,0.0617773,0.45844,0.917568,0.56498,0.445231,0.306206,0.767381,0.840122,0.329769,0.652398,0.352503,0.443773,0.0846632,0.856993,0.313243,0.880958,0.396295,0.349548,0.503005,0.369911,0.961418,0.76505,0.838009,0.658028,0.512768,0.421562,0.175022,0.493111,0.902473,0.66543,0.948275,0.463888,0.558698,0.322161,0.842425,0.214613,0.401353,0.969039,0.253426,0.512192,0.627767,0.324193,0.251958,0.836729,0.176203,0.415659,0.152105,0.976459,0.164024,0.166703,0.183367,0.250671,0.676267,0.200833,0.847969,0.815433,0.956451,0.698364,0.0786636,0.0461438,0.799462,0.197553,0.0982167,0.928154,0.390073,0.975547,0.366156,0.888451,0.434725,0.0306157,0.04752,0.889595,0.700483,0.707018,0.124053,0.1807,0.0476267,0.502167,0.893381,0.101851,0.546967,0.892251,0.0194532,0.66388,0.483544,0.387151,0.0762993,0.617633,0.714743,0.824575,0.0164332,0.497224,0.420214,0.0574027,0.619809,0.821936,0.220258,0.40523,0.538465,0.732975,0.0917073,0.284973,0.0727891,0.862997,0.865969,0.442145,0.77286,0.855466,0.148505,0.700631,0.762152,0.063919,0.396712,0.976014,0.123928,0.0903738,0.83534,0.631924,0.913714,0.56527,0.894726,0.446825,0.0386426,0.859863,0.15239,0.0794016,0.497717,0.0732286,0.332423,0.669321,0.206421,0.15401,0.544247,0.788143,0.366459,0.420642,0.400084,0.869962,0.650763,0.879305,0.950204,0.291938,0.14582,0.362143,0.138789,0.90938,0.0484415,0.639006,0.693526,0.185905,0.236112,0.854967,0.69159,0.876378,0.3275,0.15859,0.749233,0.730275,0.109755,0.334139,0.218108,0.601688,0.359925,0.308792,0.388744,0.0893332,0.711018,0.558996,0.784629,0.487523,0.516743,0.797522,0.909903,0.253967,0.969504,0.444043,0.848619,0.173856,0.315188,0.0850148,0.721823,0.424774,0.388116,0.878519,0.324115,0.776316,0.953574,0.238214,0.782371,0.130607,0.593967,0.788904,0.819301,0.58194,0.981425,0.938042,0.487138,0.876487,0.868582,0.608604,0.174958,0.190607,0.512408,0.477564,0.945681,0.785754,0.486636,0.061933,0.496094,0.874814,0.0464965,0.788453,0.854589,0.814577,0.0605863,0.912121,0.905065,0.819261,0.154729,0.528284,0.357158,0.916341,0.963604,0.831664,0.925362,0.013286,0.323149,0.648615,0.88852,0.0697445,0.174708,0.629469,0.708599,0.654064,0.143462,0.561263,0.608151,0.070689,0.446109,0.244226,0.36428,0.340887,0.67541,0.897896,0.578191,0.951234,0.143876,0.938755,0.592394,0.435015,0.534133,0.112128,0.973922,0.988506,0.419956,0.46686,0.701278,0.851189,0.2433,0.106788,0.122773,0.419734,0.794438,0.737314,0.219227,0.950948,0.585368,0.965868,0.357517,0.673616,0.712028,0.562437,0.216056,0.949109,0.514075,0.582594,0.879337,0.0243144,0.909636,0.933911,0.754082,0.86447,0.281704,0.146362,0.18173,0.651867,0.486382,0.479991,0.542831,0.910483,0.811616,0.367392,0.488045,0.186677,0.0666774,0.647539,0.809488,0.0832658,0.24248,0.602721,0.165207,0.171587,0.783353,0.367156,0.856098,0.0962606,0.765633,0.362227,0.508469,0.223989,0.796724,0.193826,0.0496225,0.163554,0.344697,0.794195,0.238608,0.144418,0.714999,0.372999,0.367485,0.774513,0.173362,0.963937,0.626581,0.589898,0.830515,0.775383,0.792526,0.759049,0.219035,0.416891,0.935906,0.90705,0.384538,0.952856,0.117762,0.568563,0.548548,0.0727079,0.224657,0.109098,0.0720791,0.210131,0.565474,0.4686,0.191965,0.795161,0.165055,0.500737,0.975918,0.947794,0.0598031,0.0387323,0.439776,0.651253,0.940468,0.184757,0.128419,0.492971,0.284806,0.898933,0.202513,0.899802,0.716662,0.357741,0.892355,0.864455,0.0730702,0.406918,0.219642,0.133594,0.646137,0.576904,0.130268,0.853048,0.236072,0.987071,0.672491,0.466221,0.606528,0.915666,0.814213,0.0892792,0.741918,0.395075,0.242077,0.237655,0.981903,0.758195,0.86327,0.915255,0.0703513,0.886573,0.863546,0.554738,0.151608,0.897451,0.882673,0.0909568,0.697937,0.432709,0.693604,0.678845,0.644348,0.355539,0.875298,0.489605,0.24413,0.188254,0.546016,0.592654,0.735974,0.149561,0.85365,0.34574,0.422354,0.486519,0.00552094,0.132109,0.89967,0.621142,0.535364,0.977433,0.0501003,0.335714,0.131644,0.0237021,0.414768,0.400717,0.70673,0.475229,0.142282,0.600303,0.412201,0.572864,0.779799,0.222401,0.715141,0.969024,0.806957,0.256411,0.590927,0.672198,0.217006,0.709831,0.193099,0.138342,0.685355,0.0589601,0.483601,0.340236,0.715266,0.0454392,0.208978,0.386758,0.765967,0.341081,0.72811,0.959982,0.30682,0.437653,0.707832,0.68825,0.937603,0.888925,0.623544,0.904499,0.136926,0.852375,0.0922225,0.155937,0.0111266,0.891069,0.851372,0.7517,0.340154,0.116522,0.237174,0.280656,0.22041,0.729569,0.0629075,0.567138,0.937079,0.307194,0.125471,0.644492,0.776745,0.0191009,0.645122,0.927662,0.88032,0.231508,0.284767,0.497889,0.488989,0.756296,0.82424,0.065031,0.0539916,0.30289,0.729117,0.526977,0.499021,0.0194901,0.762047,0.725404,0.594703,0.325699,0.527695,0.124923,0.114191,0.905103,0.548319,0.372564,0.395218,0.645013,0.971613,0.405449,0.306451,0.557023,0.721523,0.332753,0.408137,0.246825,0.828968,0.400934,0.102305,0.444349,0.517902,0.763807,0.790845,0.529871,0.732646,0.788612,0.4825,0.186316,0.138075,0.726344,0.952847,0.297092,0.68967,0.610998,0.866942,0.0052712,0.487207,0.61216,0.198803,0.72549,0.257505,0.301169,0.266299,0.718543,0.732469,0.2415,0.970329,0.84577,0.202829,0.1893,0.232552,0.857522,0.156111,0.371616,0.711009,0.255346,0.680955,0.62721,0.642347,0.929238,0.646427,0.940412,0.209844,0.847327,0.42409,0.692152,0.184769,0.235872,0.545642,0.661172,0.877575,0.536167,0.998778,0.249851,0.268792,0.604159,0.676346,0.591255,0.0930344,0.291924,0.236697,0.516794,0.941299,0.603779,0.932467,0.399266,0.148543,0.709379,0.76379,0.381552,0.829205,0.361277,0.629807,0.929292,0.74675,0.0689608,0.0271705,0.508592,0.316329,0.380433,0.242527,0.400155,0.916309,0.795719,0.0018416,0.577459,0.250324,0.990019,0.940598,0.280893,0.63379,0.130159,0.739755,0.169757,0.287086,0.525903,0.302238,0.380972,0.284002,0.103792,0.0582576,0.565454,0.873449,0.0528115,0.876544,0.122503,0.190245,0.313478,0.710146,0.530306,0.242213,0.376847,0.971546,0.403986,0.062801,0.972408,0.678691,0.518108,0.404764,0.614067,0.669856,0.701313,0.602853,0.35329,0.0277228,0.6108,0.30114,0.539304,0.603856,0.8419,0.590137,0.127546,0.321947,0.805557,0.432813,0.198318,0.412579,0.179411,0.0138174,0.789969,0.167883,0.879073,0.935145,0.391564,0.231177,0.157749,0.835508,0.881317,0.837341,0.340474,0.385048,0.122985,0.537379,0.0515313,0.0531601,0.00728941,0.676634,0.0305489,0.700968,0.160792,0.522294,0.336649,0.636892,0.176324,0.235465,0.730898,0.556004,0.801734,0.457227,0.0993956,0.497886,0.958626,0.350206,0.563188,0.906532,0.754623,0.49486,0.0726458,0.433513,0.91203,0.835163,0.897357,0.122506,0.163615,0.0320206,0.52516,0.626662,0.168291,0.061913,0.666755,0.830161,0.258362,0.650953,0.601728,0.344571,0.71023,0.758561,0.966663,0.602048,0.232972,0.972118,0.219566,0.835126,0.599204,0.499653,0.494332,0.0172713,0.344971,0.523295,0.749399,0.559951,0.776363,0.725388,0.775851,0.279136,0.907328,0.551675,0.410844,0.654466,0.82386,0.938434,0.308888,0.165552,0.259784,0.451007,0.356304,0.169255,0.2087,0.669494,0.262566,0.566163,0.458841,0.850142,0.952514,0.363987,0.244901,0.220967,0.219275,0.0343941,0.106629,0.312609,0.352814,0.278859,0.24835,0.355817,0.498582,0.191874,0.173735,|0.86181,0.373719,0.851078,0.00538045,0.390093,0.193269,0.517574,0.979999,0.579847,0.773447,0.55191,0.560829,0.367111,0.761863,0.945583,0.691263,0.436958,0.0130707,0.343416,0.70734,0.537966,0.0741812,0.902131,0.939656,0.0199556,0.589594,0.196622,0.265867,0.923346,0.614027,0.177963,0.63765,0.716989,0.59393,0.225814,0.29588,0.901917,0.497572,0.577567,0.280064,0.976729,0.25183,0.888693,0.171516,0.0649523,0.191313,0.868263,0.0223646,0.728846,0.672387,0.537314,0.580141,0.20572,0.273475,0.603266,0.4266,0.21134,0.83204,0.617116,0.992653,0.968478,0.6023,0.779893,0.10851,0.190655,0.780892,0.32954,0.97571,0.36473,0.900021,0.278288,0.164315,0.389336,0.568399,0.00283307,0.0463539,0.900148,0.449958,0.551893,0.911658,0.605278,0.293826,0.227796,0.192944,0.869146,0.754941,0.416508,0.572102,0.59893,0.534587,0.196556,0.855352,0.774643,0.773477,0.357734,0.352645,0.678781,0.813587,0.485644,0.332361,0.494654,0.625027,0.401444,0.204504,0.277139,0.916082,0.38066,0.449047,0.0622444,0.12486,0.221145,0.794375,0.735617,0.923014,0.789571,0.0102655,0.753773,0.272399,0.993827,0.391228,0.72687,0.294734,0.203303,0.966642,0.45954,0.781824,0.393825,0.933653,0.214396,0.380621,0.746955,0.0477679,0.715242,0.0239839,0.017571,0.721919,0.166575,0.266687,0.176624,0.179306,0.435607,0.416389,0.0549707,0.391306,0.525953,0.497193,0.480672,0.108295,0.396748,0.434426,0.074698,0.0611563,0.820968,0.47782,0.81557,0.686384,0.503179,0.807634,0.908219,0.242777,0.335589,0.894248,0.441773,0.157234,0.137688,0.711723,0.404611,0.244997,0.496859,0.216024,0.653796,0.354906,0.36342,0.751749,0.742135,0.848456,0.327098,0.377147,0.068407,0.753071,0.324832,0.85476,0.360166,0.389296,0.385021,0.583631,0.65098,0.270196,0.918904,0.239138,0.826896,0.0330223,0.168814,0.61753,0.654278,0.796281,0.63168,0.596924,0.638115,0.9989,0.926912,0.629204,0.906892,0.72612,0.749411,0.339816,0.401511,0.339263,0.721409,0.630433,0.636916,0.56069,0.216644,0.416973,0.210304,0.437511,0.847126,0.776455,0.473781,0.365659,0.320176,0.448056,0.151237,0.527434,0.361316,0.659515,0.443089,0.415321,0.0520995,0.869405,0.110631,0.903367,0.484385,0.954598,0.246204,0.163153,0.157799,0.254943,0.110737,0.75371,0.654719,0.890711,0.726288,0.0160279,0.930697,0.876474,0.125856,0.598948,0.650635,0.930419,0.846812,0.580303,0.732919,0.701992,0.979161,0.444653,0.921279,0.87995,0.0361226,0.108724,0.0371918,0.472159,0.221672,0.323107,0.829582,0.992388,0.781007,0.611482,0.213498,0.708688,0.178949,0.385144,0.223209,0.618904,0.180201,0.994031,0.243569,0.833791,0.80967,0.20081,0.461597,0.535161,0.594438,0.567606,0.401966,0.490744,0.878382,0.706349,0.111691,0.884399,0.571423,0.246241,0.584354,0.267765,0.417228,0.447925,0.255627,0.840552,0.315269,0.57622,0.175435,0.161147,0.430252,0.223204,0.367121,0.68249,0.253649,0.223606,0.496662,0.0295933,0.209674,0.731551,0.55373,0.0908501,0.269394,0.141145,0.167909,0.423616,0.249024,0.22196,0.789269,0.746486,0.100913,0.298689,0.447607,0.0828707,0.700382,0.595966,0.142544,0.73872,0.328761,0.40065,0.52594,0.715938,0.149765,0.159222,0.35321,0.0637697,0.970887,0.557253,0.46314,0.862759,0.842905,0.811068,0.656653,0.269605,0.562414,0.49765,0.631905,0.997717,0.434456,0.515715,0.65925,0.511611,0.557537,0.417344,0.0226029,0.0996792,0.240796,0.56835,0.0980297,0.506148,0.932233,0.860301,0.223101,0.279375,0.99048,0.379762,0.986891,0.264817,0.400871,0.0684499,0.981414,0.704887,0.99418,0.0254233,0.420004,0.54422,0.563177,0.0805066,0.22658,0.534862,0.902219,0.396913,0.04184,0.911108,0.453553,0.0596801,0.643537,0.255421,0.0505278,0.558214,0.743408,0.0574071,0.278881,0.353691,0.769434,0.454893,0.585341,0.667077,0.246732,0.644085,0.802123,0.662912,0.345979,0.716658,0.271682,0.579958,0.503809,0.22677,0.706958,0.254502,0.902034,0.956685,0.341476,0.860761,0.37082,0.266612,0.970461,0.810945,0.511381,0.654909,0.254527,0.870936,0.0557854,0.493384,0.641452,0.888681,0.566394,0.963021,0.309424,0.675197,0.706069,0.640122,0.233001,0.865546,0.796776,0.121305,0.829956,0.185266,0.642333,0.26873,0.713202,0.542699,0.998439,0.457924,0.832822,0.146882,0.244169,0.972763,0.605268,0.485583,0.318167,0.651884,0.468468,0.631859,0.510429,0.606898,0.607993,0.712941,0.523109,0.0862487,0.126699,0.168079,0.386042,0.271476,0.385946,0.25903,0.681058,0.0677341,0.418901,0.660146,0.290375,0.252748,0.775814,0.1235,0.521776,0.287537,0.739002,0.640699,0.400695,0.360502,0.75046,0.563112,0.944885,0.677171,0.683257,0.383639,0.708716,0.317341,0.749066,0.619709,0.994344,0.0205529,0.493004,0.708666,0.027985,0.493037,0.438939,0.422826,0.955631,0.93948,0.63894,0.555444,0.620944,0.631372,0.30217,0.340332,0.717215,0.0406479,0.632857,0.819243,0.796243,0.531647,0.21976,0.670255,0.632284,0.186669,0.563318,0.35098,0.555168,0.476227,0.708288,0.49249,0.202323,0.0276943,0.235311,0.277745,0.994804,0.377374,0.349267,0.737834,0.870329,0.414866,0.494986,0.981126,0.338334,0.947388,0.231838,0.200177,0.498335,0.0167696,0.938651,0.340339,0.329211,0.0317335,0.722987,0.259281,0.328142,0.138249,0.222378,0.467144,0.293029,0.871698,0.0182644,0.137239,0.350361,0.951901,0.199744,0.709484,0.451228,0.684146,0.600373,0.406241,0.461667,0.136199,0.200102,0.292823,0.647261,0.316601,0.999669,0.589522,0.225344,0.211203,0.63016,0.910622,0.0536677,0.511558,0.992523,0.949979,0.444706,0.328007,0.460436,0.109419,0.785645,0.0156264,0.0166837,0.275496,0.168953,0.0602679,0.18285,0.575371,0.11313,0.72911,0.531976,0.202204,0.86133,0.597165,0.158826,0.489672,0.254106,0.369975,0.402626,0.162512,0.0461047,0.010765,0.270529,0.43248,0.589496,0.8721,0.938664,0.620522,0.308411,0.52976,0.628148,0.997482,0.0384824,0.656948,0.982255,0.872547,0.0297218,0.259459,0.541574,0.463752,0.216191,0.912154,0.511032,0.687099,0.335381,0.696166,0.650596,0.0269964,0.521421,0.170855,0.0918478,0.174679,0.711098,0.115908,0.1615,0.845217,0.16059,0.0811737,0.740831,0.161744,0.132084,0.180018,0.0138929,0.694917,0.504648,0.445011,0.970542,0.65884,0.182182,0.294901,0.0721579,0.0496354,0.62841,0.900434,0.0276176,0.972019,0.163248,0.124711,0.897884,0.820902,0.385809,0.611965,0.335096,0.978483,0.800636,0.731537,0.356755,0.0107999,0.59326,0.346969,0.0359255,0.918585,0.665618,0.206855,0.918737,0.204582,0.653126,0.144992,0.676669,0.273441,0.47737,0.0172887,0.974369,0.0764751,0.991933,0.252915,0.103645,0.0866356,0.35229,0.238347,0.0115675,0.0868241,0.60725,0.566896,0.839286,0.0500837,0.697191,0.582868,0.702209,0.70037,0.441787,0.127557,0.24416,0.715204,0.315718,0.0259906,0.651266,0.162007,0.437864,0.22621,0.95268,0.711283,0.679375,0.257813,0.823139,0.701587,0.571904,0.212861,0.515304,0.511243,0.774705,0.00265956,0.860598,0.219916,0.53702,0.891768,0.926009,0.225009,0.72597,0.197655,0.137582,0.471891,0.498987,0.0515014,0.596504,0.115539,0.790238,0.880982,0.643346,0.496381,0.489895,0.04983,0.0636803,0.355322,0.930014,0.0235447,0.260194,0.561907,0.701954,0.492487,0.0704173,0.49037,0.597275,0.847783,0.748039,0.716547,0.933251,0.691338,0.0355182,0.704377,0.870577,0.572459,0.578412,0.513747,0.424976,0.978226,0.495855,0.326405,0.510056,0.711454,0.149138,0.886116,0.334139,0.622893,0.885864,0.797799,0.762079,0.105033,0.4533,0.117191,0.688062,0.428997,0.461258,0.300067,0.653562,0.181665,0.182394,0.0362015,0.996382,0.992954,0.737908,0.362726,0.114083,0.744822,0.309907,0.101368,0.230559,0.373382,0.673407,0.662445,0.140118,0.422263,0.123086,0.737062,0.142104,0.331639,0.818867,0.5038,0.448369,0.352987,0.413302,0.223911,0.391322,0.496418,0.256475,0.689789,0.160874,0.54957,0.120461,0.381131,0.900646,0.963498,0.856962,0.657305,0.612596,0.123613,0.135562,0.110655,0.220102,0.241264,0.446258,0.132888,0.459086,0.973523,0.898034,0.667096,0.813297,0.409121,0.453914,0.42742,0.44597,0.301321,0.261149,0.0598204,0.0626119,0.423788,0.802288,0.283461,0.687951,0.750334,0.174635,0.304296,0.921463,0.258425,0.398136,0.83539,0.882525,0.863679,0.528158,0.256897,0.354504,0.806019,0.250452,0.53227,0.337914,0.448578,0.236783,0.758911,0.298521,0.685901,0.55896,0.194182,0.54874,0.619335,0.305924,0.851272,0.293036,0.774435,0.613566,0.190577,0.271716,0.694342,0.849016,0.445069,0.536828,0.229405,0.342069,0.551627,0.811101,0.815941,0.601507,0.0897042,0.516678,0.427165,0.916413,0.711974,0.7981,0.886319,0.516069,0.280151,0.328973,0.165575,0.448783,0.448414,0.606723,0.881203,0.992672,0.555272,0.485799,0.10347,0.395566,0.911278,0.256933,0.87211,0.796696,0.88724,0.122478,0.524815,0.143104,0.970101,0.861526,0.574806,0.28984,0.340576,0.668331,0.896637,0.205514,0.714006,0.18874,0.992702,0.0276983,0.377635,0.0891785,0.304865,0.760059,0.219603,0.991566,0.489684,0.889831,0.657968,0.176023,0.310471,0.97561,0.613031,0.40673,0.578245,0.561365,0.510045,0.747874,0.463456,0.956338,0.787966,0.271224,0.599155,0.706472,0.196809,0.831623,0.967491,0.0986714,0.113102,0.988313,0.227989,0.858321,0.841326,0.117328,0.101602,0.313692,0.830923,0.481882,0.124169,0.461939,0.785108,0.500352,0.495484,0.0993248,0.781057,0.845578,0.0431111,0.515947,0.213914,0.80147,0.553931,0.725041,0.625576,0.469459,0.651083,0.433576,0.186816,0.615974,0.465311,0.995582,0.154977,0.48847,0.265421,0.796203,0.757149,|0.96423,0.567638,0.1093,0.279654,0.669253,0.659137,0.438343,0.496639,0.163652,0.069191,0.218143,0.494948,0.331629,0.710203,0.0337898,0.977973,0.51541,0.564068,0.9713,0.377978,0.748171,0.916804,0.600835,0.461735,0.48731,0.803156,0.649707,0.538277,0.0838669,0.0101816,0.162311,0.467647,0.148957,0.420378,0.701833,0.532978,0.480675,0.330715,0.245593,0.0698452,0.0986608,0.584211,0.902283,0.195381,0.659578,0.511261,0.378837,0.468203,0.722955,0.984538,0.949098,0.131385,0.172805,0.757239,0.306944,0.166988,0.802599,0.88865,0.998235,0.83004,0.884521,0.0104844,0.0644294,0.260496,0.423969,0.0650769,0.360732,0.766106,0.836024,0.0941895,0.174589,0.503425,0.81069,0.883733,0.853422,0.217314,0.1865,0.0536751,0.470678,0.123471,0.491892,0.435533,0.382612,0.331871,0.239501,0.389793,0.116367,0.177923,0.223478,0.226989,0.155396,0.601992,0.666529,0.965764,0.0925351,0.103459,0.498887,0.828006,0.711359,0.0458515,0.722782,0.00439757,0.82553,0.810521,0.20268,0.335742,0.850605,0.656211,0.381319,0.744802,0.235315,0.572063,0.71145,0.807933,0.680045,0.433249,0.229192,0.497155,0.814835,0.466368,0.531445,0.121148,0.797538,0.518616,0.159982,0.655369,0.316078,0.991962,0.432318,0.164188,0.754761,0.267479,0.750352,0.565214,0.804493,0.307869,0.84086,0.774657,0.346712,0.38543,0.978132,0.00554562,0.734019,0.194661,0.477616,0.243551,0.576885,0.47717,0.346058,0.502593,0.613422,0.249759,0.0313773,0.47419,0.335205,0.0366989,0.461917,0.270725,0.99909,0.470634,0.265408,0.926724,0.906617,0.631151,0.961415,0.211174,0.359693,0.646688,0.0583919,0.405388,0.0754396,0.0869852,0.342174,0.718972,0.436605,0.264482,0.911889,0.433029,0.885971,0.0037784,0.160444,0.318805,0.147307,0.116854,0.342486,0.2243,0.717261,0.128935,0.219222,0.636443,0.897995,0.666459,0.596066,0.325236,0.769281,0.887217,0.997518,0.371002,0.0123475,0.0734408,0.846618,0.0788881,0.623235,0.716646,0.0897064,0.954761,0.447248,0.66779,0.0428032,0.299084,0.617421,0.546906,0.916244,0.0613193,0.265885,0.0609946,0.930657,0.777614,0.0890557,0.313867,0.643371,0.360854,0.568706,0.542021,0.690494,0.745449,0.329271,0.0492765,0.0758913,0.678099,0.25766,0.0780086,0.034331,0.854748,0.0326542,0.0188503,0.755781,0.400406,0.976061,0.551542,0.790594,0.109877,0.662789,0.858345,0.732005,0.138266,0.180019,0.966969,0.930674,0.506992,0.405332,0.542499,0.549326,0.267013,0.385431,0.855836,0.2541,0.221937,0.180277,0.732824,0.926418,0.235397,0.0979936,0.752148,0.291618,0.906018,0.803911,0.583314,0.500295,0.33815,0.0583721,0.427883,0.566498,0.442273,0.835899,0.360751,0.160813,0.38425,0.439539,0.664499,0.743693,0.392905,0.890368,0.345738,0.743432,0.0458545,0.107165,0.748924,0.56977,0.818263,0.672186,0.165198,0.197077,0.709325,0.110169,0.952967,0.737755,0.0816621,0.63783,0.225048,0.280964,0.131021,0.316416,0.174985,0.360436,0.796295,0.551981,0.346808,0.233475,0.996553,0.751002,0.566754,0.39207,0.559878,0.980311,0.911257,0.559105,0.316352,0.601325,0.141133,0.568686,0.501547,0.886773,0.0529883,0.420543,0.584473,0.00746393,0.37534,0.289955,0.157922,0.56814,0.311694,0.328399,0.429571,0.931499,0.615794,0.463594,0.805223,0.074384,0.0389464,0.744951,0.0775675,0.253544,0.676029,0.121722,0.797297,0.211553,0.754346,0.811918,0.340615,0.642221,0.120614,0.903092,0.315362,0.729708,0.232475,0.843941,0.703709,0.982622,0.487744,0.0752153,0.597078,0.319115,0.834575,0.109481,0.57725,0.671749,0.0859067,0.387135,0.128551,0.276277,0.72067,0.320153,0.0142503,0.0874598,0.815266,0.741987,0.75415,0.680996,0.110589,0.123137,0.299249,0.835345,0.509085,0.768324,0.0939907,0.605208,0.153368,0.728757,0.29436,0.338036,0.412439,0.627304,0.886589,0.625283,0.787239,0.37456,0.499075,0.239197,0.161152,0.838633,0.303452,0.0920459,0.283209,0.366797,0.515887,0.285906,0.878182,0.206032,0.223067,0.895597,0.0178565,0.57841,0.120126,0.784706,0.112933,0.264698,0.722212,0.61236,0.98948,0.908331,0.802814,0.205892,0.493379,0.476904,0.771571,0.347799,0.0634723,0.00621772,0.856681,0.508236,0.289642,0.852882,0.153193,0.744751,0.491612,0.490422,0.449549,0.777389,0.474015,0.679814,0.109828,0.552478,0.820642,0.183185,0.309285,0.908038,0.542302,0.68212,0.230254,0.220663,0.22416,0.544555,0.11472,0.372346,0.504234,0.250101,0.251942,0.528668,0.859485,0.706614,0.934928,0.77424,0.808813,0.834805,0.209567,0.504507,0.294479,0.820087,0.639076,0.791197,0.393278,0.67709,0.227507,0.837304,0.0473834,0.356015,0.289937,0.838458,0.964808,0.987465,0.841513,0.652039,0.467525,0.994331,0.687754,0.603764,0.820693,0.213461,0.555523,0.694844,0.160012,0.177336,0.599832,0.103653,0.0478669,0.780969,0.651704,0.730846,0.365899,0.202697,0.508679,0.992637,0.96563,0.293624,0.833475,0.852848,0.32144,0.0414652,0.717107,0.841955,0.246766,0.950961,0.636639,0.833524,0.667824,0.93222,0.921281,0.0190484,0.119129,0.0337538,0.0836318,0.943951,0.108767,0.335582,0.563159,0.870062,0.518025,0.11359,0.996399,0.572055,0.907233,0.587844,0.272078,0.0462908,0.902511,0.802921,0.661667,0.666728,0.880662,0.558252,0.398337,0.859209,0.15315,0.681818,0.609559,0.216905,0.383992,0.563978,0.104231,0.0816346,0.338105,0.784766,0.624891,0.888105,0.464599,0.977848,0.698573,0.222009,0.18372,0.287814,0.0317681,0.429271,0.574062,0.240948,0.377833,0.707236,0.0048719,0.984841,0.366244,0.144846,0.755625,0.635951,0.344098,0.391248,0.365834,0.320854,0.753555,0.84446,0.633674,0.883686,0.459548,0.888631,0.112768,0.903909,0.490013,0.212547,0.514736,0.60422,0.18929,0.0330524,0.626645,0.719431,0.894489,0.450295,0.439579,0.459431,0.235489,0.624823,0.921902,0.630458,0.421967,0.622905,0.365772,0.974678,0.346941,0.0379738,0.565599,0.720352,0.996215,0.233875,0.0711452,0.221172,0.487858,0.959339,0.45916,0.960795,0.705637,0.63408,0.41524,0.620881,0.897669,0.0434061,0.947323,0.164806,0.583576,0.344329,0.927575,0.0303321,0.35509,0.604409,0.990195,0.178863,0.574636,0.38479,0.419666,0.897473,0.770553,0.602495,0.539365,0.940152,0.768499,0.735978,0.506121,0.894929,0.876652,0.437267,0.841859,0.466495,0.652791,0.341263,0.322436,0.548934,0.728906,0.0593703,0.400046,0.207761,0.463772,0.622953,0.864826,0.757451,0.532685,0.849972,0.520156,0.176231,0.174296,0.51515,0.582139,0.853438,0.409977,0.0780268,0.366136,0.420292,0.644432,0.547572,0.726994,0.242813,0.644145,0.33582,0.344663,0.378409,0.725042,0.342477,0.429341,0.0511619,0.311543,0.386475,0.201633,0.70467,0.782656,0.388236,0.990245,0.193979,0.500606,0.873017,0.439346,0.406385,0.195984,0.355734,0.522897,0.155727,0.37478,0.736356,0.184402,0.532372,0.842169,0.247724,0.980877,0.682459,0.794776,0.761459,0.854732,0.991612,0.143468,0.510951,0.443777,0.540214,0.785187,0.741395,0.0576524,0.669262,0.808687,0.865134,0.889189,0.427783,0.806541,0.67619,0.0524285,0.203088,0.637126,0.400498,0.426023,0.488361,0.156766,0.979567,0.365537,0.214941,0.181388,0.590017,0.275341,0.314159,0.625733,0.50333,0.716586,0.529828,0.858485,0.0759369,0.775034,0.724584,0.629143,0.586436,0.883347,0.847257,0.637973,0.31561,0.602678,0.615478,0.13662,0.0489605,0.0581378,0.693931,0.211197,0.594246,0.709626,0.10232,0.469342,0.749011,0.593166,0.861507,0.944522,0.511743,0.332814,0.163994,0.360142,0.27755,0.272515,0.268522,0.320482,0.381473,0.783474,0.131293,0.101087,0.172477,0.758256,0.29948,0.705946,0.614128,0.725929,0.66155,0.378385,0.00988877,0.475672,0.618322,0.845179,0.33194,0.810551,0.525128,0.72896,0.760243,0.492441,0.235714,0.892979,0.535081,0.896034,0.0790931,0.136466,0.65696,0.280773,0.881254,0.445857,0.171653,0.18263,0.512923,0.0799681,0.0236912,0.398161,0.906575,0.0177139,0.664125,0.286888,0.319891,0.31439,0.28765,0.774448,0.800997,0.278578,0.820294,0.651684,0.712366,0.704494,0.224822,0.303119,0.891566,0.606058,0.187983,0.327754,0.94538,0.99954,0.389221,0.680163,0.955069,0.600232,0.630264,0.21252,0.202424,0.505699,0.406775,0.608225,0.600882,0.436197,0.455743,0.0956122,0.920383,0.862433,0.0910712,0.610947,0.503809,0.0708271,0.0937492,0.401431,0.853776,0.236819,0.179061,0.370202,0.563637,0.157149,0.934594,0.861152,0.337818,0.534307,0.489664,0.695077,0.0198942,0.604092,0.526386,0.768636,0.391067,0.871538,0.262593,0.983747,0.0821855,0.550319,0.529275,0.841834,0.129173,0.789492,0.907314,0.0845574,0.413374,0.129312,0.979453,0.0693425,0.648349,0.26166,0.0737121,0.485075,0.814479,0.169582,0.877182,0.961983,0.0329309,0.682649,0.892822,0.842676,0.975452,0.615392,0.401204,0.451065,0.01218,0.0956912,0.443464,0.970917,0.484465,0.865576,0.218501,0.418567,0.903884,0.24359,0.154636,0.248116,0.322113,0.134296,0.233749,0.652234,0.366654,0.806858,0.654968,0.088676,0.200237,0.47379,0.610737,0.969434,0.378413,0.541762,0.56731,0.0306584,0.940237,0.287363,0.771989,0.551279,0.249965,0.551347,0.240713,0.101301,0.638599,0.637721,0.755326,0.558106,0.339042,0.34375,0.661247,0.976562,0.828209,0.890194,0.866617,0.479312,0.443662,0.266583,0.917905,0.356896,0.166631,0.894976,0.561593,0.736345,0.985055,0.807748,0.971249,0.234186,0.449845,0.599291,0.781646,0.606806,0.266125,0.403726,0.730022,0.508641,0.447663,0.0417861,0.632466,0.486262,0.184691,0.19811,0.196487,0.581876,0.805769,0.0938969,0.773545,0.507637,0.156426,0.747929,0.597975,0.674757,0.802945,0.374074,0.46952,0.415546,0.758121,0.00946981,0.400877,0.0885439,|0.271929,0.421698,0.0479342,0.192636,0.081509,0.784801,0.680219,0.178068,0.203176,0.37844,0.326004,0.525064,0.388041,0.39947,0.465346,0.678269,0.15177,0.176525,0.350385,0.707304,0.639817,0.466641,0.534433,0.702579,0.385517,0.802229,0.674974,0.181076,0.694625,0.145174,0.927384,0.189071,0.842357,0.40389,0.00291508,0.015091,0.727675,0.400277,0.224439,0.623417,0.0894818,0.0975093,0.723136,0.0782619,0.129767,0.589978,0.688087,0.862245,0.479928,0.345324,0.646164,0.433544,0.706632,0.762307,0.0089404,0.439831,0.529139,0.504132,0.399735,0.774231,0.512082,0.604271,0.889473,0.0697712,0.843299,0.260255,0.527059,0.747616,0.756172,0.719426,0.441587,0.461326,0.114916,0.137244,0.553101,0.910954,0.127081,0.971269,0.717394,0.0646944,0.944397,0.53104,0.77208,0.44584,0.476909,0.541185,0.461875,0.589165,0.849473,0.0632262,0.450346,0.427089,0.284298,0.831167,0.831214,0.715851,0.539578,0.984885,0.665623,0.978705,0.0978287,0.412737,0.714072,0.853526,0.87506,0.102952,0.387388,0.763999,0.584326,0.734471,0.443373,0.348296,0.861088,0.442726,0.967545,0.526421,0.539992,0.509175,0.615019,0.327789,0.0534484,0.885571,0.362164,0.869316,0.9755,0.380916,0.601906,0.190296,0.5813,0.511227,0.365266,0.0144694,0.65534,0.276958,0.674484,0.304635,0.0997484,0.0209557,0.715745,0.643261,0.614,0.315909,0.332743,0.086244,0.386684,0.193498,0.926393,0.85343,0.643336,0.75136,0.639509,0.32901,0.153532,0.859943,0.988212,0.400845,0.598176,0.991644,0.10828,0.0797932,0.262094,0.921048,0.0496898,0.307632,0.466483,0.468104,0.792624,0.943901,0.612584,0.427477,0.895513,0.0742326,0.393059,0.578887,0.963354,0.374142,0.349083,0.612687,0.135213,0.872525,0.0545993,0.629222,0.122318,0.801899,0.190999,0.867959,0.68382,0.556407,0.282692,0.0980764,0.127221,0.813113,0.251337,0.939219,0.921623,0.244851,0.327477,0.896517,0.0682057,0.382119,0.860678,0.202979,0.71681,0.456163,0.136666,0.71048,0.328198,0.785685,0.117814,0.762703,0.326109,0.601899,0.730538,0.232266,0.946591,0.434297,0.768643,0.577738,0.733081,0.455106,0.0236885,0.320071,0.600317,0.80591,0.647839,0.263086,0.954752,0.94093,0.485357,0.687059,0.192148,0.851543,0.762713,0.112183,0.58553,0.602898,0.761473,0.611038,0.63102,0.948053,0.0935763,0.208133,0.390478,0.220893,0.921961,0.149989,0.0749607,0.25653,0.944922,0.44416,0.221377,0.648027,0.491262,0.928729,0.387016,0.0533492,0.190574,0.642996,0.0782089,0.844184,0.0984281,0.522822,0.528095,0.684234,0.464796,0.0786628,0.135595,0.677584,0.138151,0.156542,0.0253074,0.0648303,0.0402116,0.752705,0.714562,0.201874,0.162971,0.512079,0.763423,0.585938,0.537339,0.447878,0.397053,0.409422,0.888505,0.505841,0.089085,0.238602,0.720493,0.958512,0.757625,0.476522,0.687104,0.817255,0.510498,0.0488757,0.386794,0.772146,0.337728,0.177922,0.0325236,0.50458,0.240735,0.217881,0.186368,0.373495,0.652869,0.676927,0.315171,0.0161435,0.643662,0.431869,0.0831712,0.954467,0.626464,0.346575,0.33023,0.439099,0.372385,0.641286,0.856692,0.594393,0.251713,0.766926,0.774328,0.918426,0.178221,0.312583,0.284602,0.798537,0.537528,0.937675,0.028987,0.710672,0.00801826,0.152659,0.205383,0.796547,0.611382,0.205171,0.960716,0.302715,0.837801,0.572704,0.166699,0.648217,0.308968,0.445665,0.867598,0.373569,0.545481,0.717611,0.15726,0.0895823,0.810999,0.366026,0.870328,0.995051,0.188132,0.528116,0.0280837,0.667119,0.769637,0.952387,0.207959,0.470579,0.453674,0.671146,0.0750201,0.64749,0.25867,0.30759,0.747076,0.292879,0.307029,0.545427,0.994498,0.874402,0.475909,0.0178149,0.736371,0.641187,0.32184,0.347832,0.452434,0.583189,0.652914,0.630476,0.900846,0.575084,0.988113,0.794151,0.391082,0.110178,0.267574,0.0999591,0.470157,0.837871,0.488185,0.210958,0.91984,0.15367,0.151531,0.826882,0.347138,0.780268,0.73017,0.389103,0.051927,0.41639,0.268565,0.413192,0.638715,0.861373,0.979912,0.809808,0.855849,0.180039,0.974105,0.756615,0.247324,0.523069,0.865056,0.398215,0.793737,0.794693,0.868455,0.708737,0.00356901,0.0593381,0.760746,0.00332618,0.509012,0.336469,0.807579,0.496578,0.887662,0.520644,0.0723819,0.682291,0.367051,0.859119,0.869416,0.285281,0.014756,0.533438,0.311589,0.978763,0.569181,0.348613,0.892275,0.352835,0.0293589,0.595013,0.655491,0.43101,0.590719,0.739355,0.589467,0.462544,0.943299,0.508237,0.818823,0.0824862,0.0787351,0.950212,0.788653,0.684221,0.630594,0.737003,0.726509,0.267105,0.0622305,0.17217,0.0990904,0.0635794,0.631144,0.67189,0.284068,0.68189,0.969002,0.729711,0.59086,0.602599,0.1699,0.135025,0.541902,0.535869,0.665079,0.00947857,0.743007,0.955467,0.883628,0.270433,0.588265,0.765227,0.0380575,0.42969,0.0701917,0.599276,0.0245829,0.66686,0.437927,0.946853,0.827633,0.799689,0.735167,0.475005,0.0329591,0.0201858,0.41539,0.540244,0.339187,0.0704323,0.435993,0.936849,0.407173,0.327405,0.991927,0.548861,0.0402235,0.638065,0.858974,0.155956,0.449569,0.0925449,0.739439,0.932558,0.936225,0.262966,0.857463,0.4783,0.167047,0.486497,0.0883414,0.077337,0.421396,0.900706,0.868006,0.252922,0.3057,0.387536,0.413226,0.554548,0.461773,0.79466,0.864923,0.589015,0.167897,0.627105,0.137138,0.588745,0.805196,0.513914,0.313039,0.792863,0.402882,0.463621,0.017058,0.0950822,0.504901,0.938103,0.645658,0.043123,0.232673,0.176604,0.817455,0.239825,0.596656,0.802478,0.00794244,0.932329,0.696712,0.69313,0.562893,0.254389,0.227948,0.309473,0.143238,0.441867,0.274575,0.874201,0.919543,0.337442,0.875849,0.570254,0.454714,0.48419,0.420956,0.524613,0.00287169,0.313557,0.00823724,0.175083,0.207057,0.0133341,0.858551,0.738675,0.836407,0.734875,0.374437,0.237005,0.632104,0.572379,0.603514,0.182363,0.89852,0.340609,0.484488,0.327706,0.0838283,0.490829,0.364422,0.311287,0.432988,0.542584,0.250234,0.483823,0.638164,0.779374,0.206311,0.758384,0.0411181,0.699632,0.0622894,0.340248,0.989512,0.543214,0.494394,0.227534,0.711516,0.320366,0.810063,0.766512,0.205367,0.0200618,0.0363199,0.883926,0.145397,0.579151,0.745093,0.0348179,0.846492,0.149295,0.715792,0.777203,0.130421,0.791513,0.02282,0.172864,0.389821,0.806965,0.941084,0.636974,0.0883082,0.195706,0.436281,0.722254,0.0507234,0.00670201,0.334455,0.181556,0.210011,0.839316,0.0726157,0.589662,0.235158,0.221993,0.403222,0.0302823,0.336466,0.20853,0.582864,0.390552,0.359077,0.271778,0.10822,0.614752,0.715005,0.550778,0.16994,0.640212,0.0506091,0.534134,0.631325,0.547516,0.612702,0.489618,0.993616,0.861569,0.869628,0.364851,0.917982,0.876817,0.885833,0.358235,0.861642,0.4404,0.494755,0.539369,0.574276,0.689679,0.240209,0.632051,0.474134,0.571375,0.709045,0.00756472,0.179966,0.95155,0.879475,0.639485,0.324543,0.781407,0.749858,0.684491,0.324796,0.159969,0.389258,0.0336202,0.31763,0.162134,0.667967,0.339986,0.917762,0.881527,0.546481,0.954794,0.179073,0.955084,0.690119,0.96955,0.203114,0.0170814,0.0410761,0.415117,0.853148,0.244951,0.342364,0.433915,0.300769,0.938039,0.0375437,0.48802,0.17854,0.407423,0.184281,0.824449,0.545198,0.259131,0.7483,0.590575,0.686563,0.895014,0.806512,0.755686,0.0302916,0.451798,0.250373,0.844899,0.00783348,0.782175,0.752525,0.277071,0.765438,0.701326,0.227118,0.89617,0.549274,0.628487,0.512463,0.490305,0.684918,0.898665,0.294624,0.728279,0.425563,0.484845,0.410537,0.0584388,0.958924,0.927301,0.501416,0.71775,0.0383534,0.398656,0.836621,0.239492,0.521031,0.350551,0.907558,0.588849,0.123772,0.548256,0.157053,0.702531,0.952159,0.19427,0.516429,0.864297,0.624741,0.471073,0.54749,0.458796,0.137515,0.514998,0.383866,0.127901,0.845199,0.0875329,0.310613,0.0297453,0.805103,0.686942,0.715284,0.215454,0.581015,0.580009,0.00965112,0.446568,0.75371,0.289611,0.882793,0.101875,0.456689,0.348799,0.322464,0.915949,0.280499,0.473612,0.847697,0.0494183,0.688089,0.0301549,0.831959,0.607578,0.764811,0.606767,0.186693,0.901171,0.0958686,0.139371,0.434434,0.072909,0.34025,0.0480489,0.15036,0.0512727,0.439821,0.992315,0.479829,0.141604,0.901276,0.149622,0.574798,0.876159,0.399363,0.418066,0.284422,0.87305,0.385629,0.118896,0.0872564,0.473489,0.0681398,0.130621,0.21078,0.446817,0.617878,0.803474,0.620686,0.0650447,0.774811,0.523885,0.125942,0.660685,0.624886,0.0667322,0.907525,0.570397,0.268168,0.417873,0.522053,0.78384,0.518837,0.698013,0.209283,0.557518,0.446624,0.453773,0.71894,0.760651,0.0909176,0.832473,0.195861,0.980855,0.674833,0.0589449,0.554637,0.999138,0.11099,0.255838,0.130695,0.766797,0.713279,0.545276,0.286827,0.231915,0.351944,0.342952,0.0971246,0.828036,0.146535,0.44919,0.784745,0.847097,0.475612,0.544588,0.266183,0.482271,0.752833,0.607741,0.836623,0.438847,0.0677266,0.226917,0.799483,0.469543,0.220616,0.949335,0.360033,0.591717,0.788954,0.799396,0.47769,0.770152,0.579969,0.920948,0.283395,0.87664,0.714693,0.5763,0.3382,0.43847,0.56265,0.176934,0.511685,0.268895,0.639354,0.495502,0.869484,0.747224,0.891053,0.14996,0.810044,0.187159,0.686073,0.575029,0.270637,0.192484,0.17828,0.0995911,0.0376529,0.524528,0.518099,0.7821,0.767674,0.501492,0.855045,0.255094,0.80109,0.0983147,0.874974,0.0100729,0.838478,0.497661,0.308943,0.690618,0.300251,0.768049,0.769049,0.135076,0.335485,0.487241,0.553726,0.897733,0.523754,0.209454,0.985829,0.193765,0.359266,0.467358,0.973174,0.343248,0.280242,0.914759,0.0922458,0.631084,0.0637837,0.711877,|0.717624,0.439582,0.6212,0.587436,0.023868,0.709017,0.66223,0.23361,0.348746,0.813096,0.0121411,0.916167,0.350936,0.354999,0.313134,0.0895892,0.810431,0.809003,0.99437,0.410588,0.62267,0.438458,0.236992,0.53021,0.84163,0.0216608,0.672863,0.778674,0.999663,0.959445,0.0822656,0.253281,0.315235,0.836689,0.965062,0.97532,0.182908,0.561868,0.573369,0.0311816,0.851611,0.869978,0.0982,0.656624,0.572075,0.899301,0.144194,0.268409,0.184532,0.566509,0.188981,0.879684,0.810578,0.0504736,0.949183,0.575637,0.605234,0.594649,0.993981,0.58988,0.753081,0.393019,0.0950848,0.283887,0.614554,0.769444,0.0486047,0.897848,0.10562,0.472045,0.112757,0.102711,0.429552,0.561295,0.893152,0.42478,0.0223253,0.0428573,0.23213,0.270853,0.979855,0.293312,0.0210644,0.032183,0.365587,0.122741,0.0611533,0.0876586,0.754797,0.244988,0.78325,0.277045,0.299503,0.697955,0.903993,0.770967,0.600695,0.454495,0.720195,0.909815,0.54746,0.0208935,0.655965,0.964451,0.673712,0.322832,0.760175,0.140294,0.984277,0.827657,0.6534,0.754534,0.438841,0.564015,0.803634,0.78535,0.243371,0.751831,0.805629,0.196467,0.40954,0.0913999,0.160631,0.871688,0.45472,0.127366,0.994403,0.999509,0.939449,0.263894,0.797967,0.845912,0.388553,0.334538,0.163746,0.658091,0.881816,0.349352,0.258216,0.434543,0.677576,0.850482,0.102433,0.902505,0.866235,0.171123,0.146087,0.638014,0.458587,0.467075,0.496039,0.287647,0.94391,0.948693,0.420849,0.12852,0.144364,0.0898927,0.0630689,0.0124123,0.31511,0.410638,0.437244,0.634629,0.949587,0.810539,0.588091,0.381486,0.403769,0.615658,0.0020296,0.0455698,0.998566,0.855899,0.841197,0.304932,0.555424,0.235141,0.508367,0.0382121,0.649768,0.161442,0.826906,0.818076,0.785529,0.440573,0.055444,0.618009,0.66848,0.95237,0.295297,0.428468,0.00550938,0.363216,0.4165,0.427697,0.57206,0.375499,0.884727,0.107372,0.510737,0.440513,0.337048,0.00117594,0.425256,0.155939,0.745719,0.536381,0.12481,0.277277,0.226351,0.611108,0.248115,0.346742,0.394924,0.985558,0.317866,0.884969,0.770195,0.825205,0.803878,0.990414,0.804677,0.788646,0.178966,0.258472,0.568594,0.645882,0.253617,0.731365,0.157652,0.836196,0.719186,0.896696,0.177503,0.23353,0.71054,0.257233,0.388819,0.516781,0.402648,0.518214,0.959152,0.706966,0.716597,0.0413327,0.597091,0.995761,0.404993,0.515374,0.547028,0.770427,0.706721,0.231802,0.790793,0.82287,0.396059,0.522869,0.16903,0.496067,0.747559,0.879803,0.445057,0.316947,0.835117,0.464267,0.00797188,0.338046,0.47725,0.599229,0.173021,0.270975,0.855371,0.609875,0.0674847,0.00724995,0.842389,0.372305,0.492782,0.85954,0.230762,0.833951,0.879061,0.239123,0.29517,0.107826,0.160757,0.853246,0.130179,0.526941,0.756867,0.249234,0.618376,0.313637,0.71672,0.0568078,0.898388,0.7268,0.802684,0.981502,0.175134,0.952435,0.243584,0.750029,0.810147,0.4092,0.56581,0.891641,0.515532,0.563439,0.604832,0.712805,0.312029,0.0697696,0.445412,0.349218,0.774119,0.743532,0.762287,0.560018,0.906771,0.562451,0.440445,0.486956,0.733088,0.918845,0.633878,0.872149,0.681539,0.257711,0.58163,0.222998,0.322743,0.763625,0.0435659,0.865352,0.376836,0.621693,0.800642,0.247637,0.830317,0.710033,0.945155,0.864206,0.0743534,0.61847,0.371527,0.875486,0.92199,0.0214979,0.802714,0.638963,0.923407,0.702836,0.327468,0.990234,0.269044,0.613327,0.577277,0.791453,0.154528,0.839293,0.0577323,0.407733,0.691884,0.652944,0.541851,0.733022,0.46979,0.367638,0.984444,0.0444637,0.504939,0.696657,0.861146,0.168222,0.73398,0.723521,0.688158,0.576163,0.482683,0.672664,0.46599,0.586105,0.540648,0.786751,0.0212322,0.801626,0.58013,0.37885,0.0813484,0.958808,0.306589,0.715507,0.526038,0.664899,0.361256,0.581762,0.913641,0.194178,0.291388,0.619747,0.738764,0.140373,0.678003,0.362789,0.826123,0.318708,0.23255,0.110069,0.945805,0.0280122,0.420182,0.550079,0.486537,0.641285,0.0313936,0.608208,0.532751,0.959217,0.919996,0.628403,0.30951,0.565986,0.708115,0.703161,0.412457,0.687894,0.766521,0.637548,0.945596,0.718982,0.92338,0.738169,0.0534498,0.243134,0.268952,0.85554,0.311516,0.215636,0.764858,0.369618,0.583437,0.761967,0.212145,0.0149553,0.445089,0.433524,0.895452,0.785149,0.0622217,0.484469,0.196619,0.436517,0.7327,0.0911272,0.852717,0.389622,0.110375,0.293144,0.476984,0.355895,0.774413,0.343149,0.0233822,0.201425,0.522758,0.0529742,0.000813663,0.961543,0.667634,0.0268231,0.352184,0.172966,0.456428,0.42149,0.35849,0.0193797,0.69128,0.855451,0.366187,0.324916,0.97,0.264903,0.57401,0.121448,0.756153,0.345736,0.614049,0.980237,0.0539845,0.018945,0.677465,0.240162,0.461124,0.763102,0.675575,0.00222987,0.770949,0.113099,0.111163,0.0554923,0.470715,0.585447,0.0633471,0.868178,0.243154,0.42416,0.61049,0.902482,0.972892,0.599391,0.749677,0.425555,0.789037,0.346525,0.393045,0.556991,0.581718,0.970983,0.376156,0.168582,0.479435,0.633102,0.532073,0.691918,0.999343,0.809836,0.549474,0.640822,0.0211415,0.532653,0.00219953,0.0792816,0.439584,0.286054,0.545924,0.00547874,0.114038,0.243979,0.689462,0.38234,0.65555,0.551373,0.437036,0.166389,0.362738,0.538942,0.927159,0.664269,0.0285513,0.945508,0.307605,0.55203,0.511225,0.288006,0.635323,0.411147,0.534017,0.0048697,0.511647,0.426183,0.867355,0.595291,0.660126,0.793892,0.00550777,0.252239,0.53781,0.649251,0.443396,0.770997,0.592134,0.265561,0.41687,0.297129,0.564097,0.603409,0.209583,0.537051,0.487442,0.939864,0.64947,0.845371,0.950811,0.0138887,0.460752,0.793941,0.901193,0.770677,0.56464,0.699668,0.0249547,0.764376,0.964509,0.238769,0.792587,0.217246,0.641795,0.800624,0.336038,0.681291,0.993541,0.325327,0.607239,0.812332,0.244287,0.804907,0.321316,0.830442,0.278543,0.859982,0.193231,0.205618,0.363899,0.327964,0.315848,0.066412,0.723547,0.257644,0.679925,0.283237,0.101445,0.818362,0.0819982,0.506719,0.530693,0.224189,0.394987,0.448615,0.143903,0.781905,0.11001,0.10768,0.993766,0.212545,0.699038,0.85863,0.674998,0.307009,0.976186,0.342851,0.970095,0.415933,0.0947496,0.10205,0.40764,0.504471,0.149471,0.916411,0.306681,0.651207,0.637874,0.609905,0.39972,0.378056,0.230349,0.100499,0.845946,0.438526,0.529096,0.39539,0.643805,0.102385,0.785269,0.843831,0.222721,0.832788,0.227654,0.464932,0.288603,0.860294,0.457734,0.227205,0.208554,0.342802,0.858969,0.878593,0.252665,0.0937154,0.642492,0.408494,0.105682,0.709159,0.114782,0.622123,0.841192,0.763102,0.238629,0.898476,0.625338,0.751245,0.639399,0.753368,0.896249,0.947728,0.595894,0.203482,0.303361,0.405384,0.708927,0.164458,0.645016,0.142297,0.224381,0.326224,0.717142,0.647808,0.60771,0.447683,0.260353,0.0406375,0.362471,0.650668,0.989645,0.128197,0.819815,0.130506,0.2835,0.395239,0.394387,0.815286,0.331108,0.571447,0.487659,0.888717,0.621765,0.466149,0.125497,0.756044,0.10917,0.643295,0.415631,0.50991,0.103723,0.206277,0.0105561,0.542809,0.146613,0.830597,0.68078,0.26296,0.746981,0.118074,0.192023,0.511499,0.910087,0.764419,0.885704,0.28307,0.536152,0.937655,0.864597,0.497212,0.447009,0.734198,0.752229,0.994447,0.0201644,0.291818,0.750922,0.2401,0.209148,0.312042,0.642157,0.874096,0.891471,0.51427,0.0319735,0.727106,0.413251,0.507493,0.580328,0.602856,0.0880252,0.412385,0.894594,0.825563,0.264647,0.998687,0.301576,0.086263,0.815804,0.963307,0.310017,0.765035,0.490439,0.349089,0.640516,0.674813,0.365244,0.12145,0.347768,0.950446,0.335636,0.098722,0.293378,0.141313,0.872527,0.0658762,0.189705,0.727445,0.211582,0.585562,0.86959,0.944585,0.208923,0.449457,0.467466,0.921855,0.185796,0.777162,0.34748,0.0805582,0.354854,0.282903,0.924742,0.199998,0.697529,0.847288,0.972301,0.810768,0.512205,0.694852,0.231769,0.369733,0.760653,0.557765,0.0994989,0.951864,0.876868,0.674849,0.261848,0.4438,0.458301,0.68097,0.638832,0.393147,0.735085,0.0323057,0.280996,0.101747,0.511309,0.712671,0.024646,0.771495,0.818937,0.517931,0.476083,0.82849,0.630583,0.462687,0.768067,0.962867,0.468834,0.162293,0.0249574,0.788255,0.434406,0.326525,0.895125,0.409966,0.872417,0.783658,0.841625,0.0680651,0.114553,0.6869,0.274691,0.602148,0.783608,0.42446,0.621474,0.62852,0.607593,0.0658324,0.717336,0.960787,0.728968,0.840988,0.0660511,0.0486621,0.96895,0.179918,0.528212,0.186604,0.899591,0.369202,0.351469,0.984654,0.694203,0.0905773,0.757428,0.154809,0.854119,0.176551,0.543826,0.869207,0.544606,0.536464,0.654467,0.810866,0.989883,0.293119,0.662944,0.850048,0.906749,0.801423,0.750134,0.500834,0.961687,0.460235,0.654665,0.409806,0.134538,0.496092,0.744709,0.112013,0.679467,0.784602,0.281394,0.917153,0.555361,0.322672,0.203519,0.847564,0.559634,0.816531,0.270993,0.958301,0.0467018,0.733983,0.632007,0.0418969,0.395525,0.702231,0.518968,0.362459,0.0307708,0.212837,0.0398051,0.833262,0.156717,0.921373,0.948999,0.603375,0.180314,0.168295,0.803195,0.286003,0.177694,0.999564,0.564362,0.977694,0.67126,0.810205,0.337091,0.69528,0.625786,0.880831,0.44394,0.481588,0.716269,0.504146,0.0200776,0.174519,0.387823,0.340754,0.467022,0.707637,0.626945,0.875566,0.906627,0.0891458,0.134985,0.965542,0.0335944,0.417991,0.696708,0.515602,0.61528,0.475222,0.921419,0.741048,0.0689029,0.808249,0.624776,0.440503,0.818962,0.931775,0.996553,0.877308,0.897249,0.403583,0.936573,0.340261,0.349637,0.776159,0.720226,0.744852,|0.193044,0.470191,0.859195,0.965707,0.925672,0.669304,0.974694,0.466694,0.178483,0.368339,0.434206,0.883781,0.50471,0.516813,0.163678,0.632182,0.0814489,0.509084,0.968201,0.324391,0.0137635,0.306001,0.0402023,0.083923,0.1872,0.992398,0.77856,0.586128,0.955764,0.149729,0.319321,0.43669,0.988306,0.485722,0.932764,0.434313,0.696518,0.191504,0.203807,0.209128,0.0823158,0.0944059,0.970023,0.146851,0.203192,0.656264,0.31949,0.378333,0.401541,0.0306373,0.618132,0.326327,0.516042,0.476083,0.00623202,0.705905,0.526063,0.16099,0.569247,0.805833,0.121837,0.255019,0.533723,0.121552,0.0287027,0.571832,0.190572,0.544201,0.488353,0.889897,0.31314,0.437281,0.630178,0.902448,0.25939,0.732466,0.519901,0.631381,0.452697,0.670071,0.635775,0.641519,0.936776,0.063264,0.225286,0.0673489,0.647798,0.483846,0.439219,0.160858,0.815484,0.877171,0.812386,0.604439,0.026653,0.536203,0.883586,0.188999,0.48687,0.778061,0.515248,0.594673,0.600694,0.736769,0.276332,0.0987098,0.751398,0.630413,0.335119,0.350282,0.978699,0.145777,0.407517,0.862889,0.517048,0.191044,0.294799,0.971831,0.65723,0.106009,0.228256,0.804215,0.706575,0.451037,0.410278,0.438401,0.0815437,0.691395,0.135049,0.720396,0.634303,0.833043,0.0833835,0.968324,0.951931,0.573196,0.729053,0.207098,0.538517,0.6478,0.502844,0.48519,0.850742,0.702389,0.331014,0.803461,0.136522,0.454929,0.327669,0.591744,0.160164,0.798764,0.581822,0.777109,0.619822,0.859718,0.722691,0.984201,0.204533,0.908712,0.187708,0.0620375,0.832029,0.0217026,0.37725,0.152343,0.0308411,0.624739,0.709732,0.764628,0.0558754,0.0924935,0.711186,0.207085,0.0877187,0.696126,0.16616,0.901478,0.588609,0.902829,0.325393,0.938385,0.617377,0.109623,0.923114,0.300507,0.328586,0.437693,0.0106233,0.391305,0.14674,0.976741,0.147425,0.177556,0.143851,0.372572,0.842183,0.546655,0.947939,0.0256349,0.928439,0.748083,0.132361,0.779381,0.833312,0.517929,0.653077,0.670366,0.467782,0.00727749,0.636651,0.961186,0.406887,0.439649,0.87183,0.531026,0.166687,0.694011,0.00604188,0.978219,0.974622,0.37847,0.626457,0.921428,0.376284,0.475138,0.297142,0.537951,0.84868,0.341741,0.10765,0.360921,0.0158468,0.456436,0.605058,0.8022,0.276024,0.91856,0.624144,0.317979,0.674808,0.408865,0.0554548,0.0386294,0.785105,0.175875,0.460631,0.0937285,0.379609,0.859104,0.364746,0.545527,0.973149,0.11238,0.572852,0.260725,0.291292,0.0917659,0.726755,0.125676,0.794297,0.401969,0.971956,0.685048,0.613811,0.781868,0.149892,0.15758,0.273339,0.806093,0.497101,0.201389,0.824487,0.123503,0.547629,0.216363,0.672067,0.633502,0.895138,0.4984,0.864396,0.15547,0.0683668,0.748602,0.596762,0.897355,0.85075,0.772401,0.260233,0.0263835,0.31054,0.106431,0.457341,0.883407,0.615241,0.293393,0.945927,0.731243,0.209758,0.720741,0.531868,0.614416,0.237931,0.335489,0.860428,0.629155,0.191671,0.673822,0.668658,0.143887,0.799876,0.905991,0.996789,0.0569418,0.324742,0.763041,0.567013,0.906084,0.412851,0.998013,0.293767,0.891965,0.0386213,0.917435,0.40453,0.83686,0.372914,0.647786,0.436543,0.868331,0.421532,0.0729628,0.0146553,0.515854,0.49403,0.254338,0.659923,0.837574,0.215422,0.184609,0.993939,0.888377,0.374931,0.591709,0.310575,0.495249,0.497562,0.627138,0.564585,0.983403,0.828879,0.0962474,0.345499,0.925251,0.243062,0.0517319,0.26592,0.897021,0.099337,0.160864,0.236523,0.319556,0.282862,0.178046,0.197028,0.409109,0.910943,0.786694,0.953378,0.679685,0.299042,0.810402,0.132969,0.454159,0.0534995,0.422583,0.325891,0.662757,0.51673,0.95912,0.909146,0.730458,0.478815,0.830966,0.426606,0.632261,0.223111,0.726807,0.730519,0.526255,0.214658,0.848791,0.275672,0.444294,0.228662,0.0049898,0.085505,0.476648,0.645407,0.913314,0.981482,0.992559,0.50227,0.432702,0.718948,0.912082,0.871761,0.259859,0.0455244,0.806312,0.224246,0.559759,0.525382,0.764688,0.630082,0.118931,0.100344,0.104759,0.470122,0.836602,0.735608,0.57055,0.200116,0.799854,0.47032,0.899781,0.0606628,0.467727,0.585836,0.980464,0.87101,0.28188,0.920802,0.693046,0.0608925,0.105135,0.355436,0.14398,0.934854,0.0665188,0.701965,0.980904,0.387517,0.6801,0.66099,0.345329,0.51175,0.995,0.571066,0.422888,0.139035,0.844562,0.617924,0.557263,0.444882,0.329543,0.192157,0.263257,0.36485,0.899262,0.517205,0.801608,0.127217,0.963767,0.54975,0.0220029,0.134161,0.0399046,0.395146,0.597816,0.448218,0.155232,0.353269,0.799895,0.389332,0.432584,0.473162,0.421387,0.0457984,0.565037,0.810699,0.0660303,0.537654,0.165214,0.644795,0.461449,0.0929202,0.553387,0.118977,0.285087,0.252544,0.834002,0.463522,0.931785,0.242294,0.352446,0.460522,0.193461,0.215445,0.0865645,0.276345,0.564506,0.759473,0.629269,0.954412,0.778881,0.501605,0.523928,0.266416,0.867921,0.514775,0.708228,0.268388,0.737804,0.978076,0.0226924,0.445725,0.994582,0.512922,0.614549,0.958119,0.719919,0.518392,0.786508,0.801541,0.985577,0.211596,0.798668,0.138578,0.859108,0.36217,0.739607,0.338908,0.680694,0.33163,0.694719,0.884125,0.0869776,0.237672,0.875316,0.00315553,0.706893,0.271303,0.651922,0.391897,0.618736,0.222467,0.24665,0.214734,0.295745,0.779729,0.629788,0.464111,0.561573,0.922684,0.0380912,0.402531,0.846931,0.966093,0.343924,0.114875,0.761832,0.565351,0.817895,0.319916,0.616843,0.243234,0.0721502,0.793306,0.69709,0.880012,0.616505,0.956943,0.430937,0.709484,0.321188,0.961567,0.32019,0.882884,0.978862,0.194967,0.576109,0.335416,0.402489,0.540366,0.759385,0.868511,0.728005,0.767699,0.836862,0.689628,0.739354,0.383788,0.146557,0.46405,0.596224,0.269938,0.283869,0.451537,0.375065,0.911439,0.75894,0.670148,0.818378,0.862476,0.163108,0.151545,0.462529,0.827721,0.133443,0.727432,0.240721,0.0192302,0.0382389,0.0543091,0.167525,0.430666,0.7495,0.240915,0.942832,0.170304,0.98081,0.131544,0.468028,0.527858,0.184874,0.119746,0.516751,0.623154,0.811106,0.00737882,0.190784,0.809588,0.496463,0.116038,0.915056,0.233828,0.231695,0.7271,0.273166,0.848322,0.348665,0.357292,0.374618,0.280961,0.955311,0.632594,0.16595,0.245261,0.368471,0.200355,0.825352,0.819715,0.571058,0.993773,0.411958,0.453509,0.484674,0.504373,0.0700235,0.828342,0.530322,0.122282,0.147861,0.92474,0.892505,0.547715,0.235609,0.392739,0.997844,0.738209,0.170717,0.811195,0.640182,0.967236,0.732746,0.421286,0.64758,0.164649,0.360995,0.750176,0.713763,0.811473,0.947838,0.435625,0.00372612,0.739274,0.148743,0.73531,0.67791,0.768189,0.787381,0.257999,0.796228,0.139992,0.57273,0.509465,0.772003,0.868454,0.477809,0.45896,0.831875,0.330706,0.0540419,0.209858,0.348211,0.905824,0.541083,0.428578,0.128216,0.966867,0.883545,0.730602,0.409838,0.860313,0.875768,0.873186,0.164756,0.0905134,0.553312,0.511684,0.164571,0.653821,0.622807,0.475568,0.410935,0.67238,0.279907,0.0426875,0.0446523,0.274972,0.818071,0.181279,0.240291,0.0678121,0.878032,0.62697,0.319762,0.982807,0.325613,0.393318,0.106155,0.352004,0.410978,0.399924,0.801542,0.559232,0.760047,0.425589,0.245366,0.282816,0.0233545,0.99471,0.324682,0.94085,0.991768,0.581765,0.133791,0.191781,0.195632,0.475281,0.400493,0.260499,0.277664,0.0333327,0.512129,0.810053,0.333936,0.343874,0.561451,0.491105,0.752615,0.179455,0.974776,0.275102,0.713911,0.837944,0.909797,0.67375,0.345478,0.0608079,0.256893,0.0978702,0.603292,0.175559,0.752693,0.952626,0.865064,0.617628,0.108502,0.866399,0.474119,0.158116,0.166167,0.552145,0.508172,0.538875,0.263778,0.702052,0.97435,0.00818408,0.548897,0.276383,0.607437,0.561855,0.46596,0.319205,0.879965,0.30314,0.560579,0.999175,0.132522,0.44967,0.928441,0.0566636,0.931966,0.921131,0.23857,0.0388851,0.250363,0.832995,0.159264,0.483808,0.966767,0.794997,0.602297,0.353717,0.115536,0.771382,0.718959,0.0327771,0.833513,0.184377,0.446612,0.348188,0.382605,0.673868,0.434266,0.790235,0.831914,0.078595,0.406736,0.189094,0.672933,0.510579,0.000135899,0.805758,0.36515,0.333391,0.495727,0.240914,0.142106,0.854022,0.570229,0.349082,0.000295639,0.846061,0.836377,0.993603,0.919571,0.762479,0.00890648,0.868424,0.635779,0.209441,0.408867,0.986179,0.984277,0.496227,0.909287,0.071358,0.305455,0.854752,0.787348,0.949943,0.64475,0.465571,0.126823,0.833585,0.289637,0.544878,0.343088,0.147748,0.652134,0.915734,0.877494,0.241683,0.0880265,0.864852,0.435353,0.499915,0.138204,0.259243,0.425201,0.609508,0.55575,0.0917832,0.127119,0.170026,0.103444,0.832178,0.0443785,0.0246403,0.766105,0.204138,0.630325,0.542075,0.177869,0.359369,0.860432,0.850048,0.826406,0.759455,0.744209,0.510004,0.749716,0.442062,0.748082,0.507175,0.762368,0.340065,0.989937,0.917867,0.382689,0.445867,0.59493,0.385071,0.152027,0.959203,0.236843,0.696355,0.0419731,0.0293582,0.110133,0.305538,0.322641,0.895932,0.143117,0.280394,0.95889,0.493621,0.212272,0.979078,0.345133,0.560333,0.112757,0.907129,0.666745,0.543827,0.887839,0.0661121,0.842613,0.435463,0.570533,0.850117,0.75978,0.19685,0.938384,0.799884,0.181389,0.485914,0.440104,0.233893,0.409826,0.00985187,0.323891,0.524822,0.115603,0.401385,0.839285,0.0281424,0.148697,0.68633,0.896751,0.731588,0.864643,0.720619,0.58431,0.258517,0.293091,0.587786,0.922891,0.311151,0.44464,0.389355,0.563263,0.00910765,0.404539,0.642553,0.78483,0.852019,0.886062,0.354629,0.238488,0.128037,0.949618,0.270433,0.227769,0.867043,0.146284,|0.833475,0.400492,0.841082,0.0544198,0.821195,0.179819,0.883818,0.443682,0.522241,0.194295,0.988989,0.199229,0.683031,0.254108,0.693789,0.240128,0.466088,0.966347,0.060366,0.450906,0.576135,0.494353,0.358936,0.234803,0.0395357,0.237076,0.433949,0.541291,0.692235,0.105817,0.936762,0.197928,0.953014,0.338026,0.881381,0.791596,0.458847,0.720675,0.549553,0.784329,0.0800577,0.765668,0.27551,0.36645,0.843403,0.221534,0.0300615,0.152674,0.943999,0.612324,0.322505,0.115886,0.729145,0.341944,0.256426,0.31469,0.317448,0.529274,0.712637,0.910369,0.213158,0.882736,0.845751,0.807428,0.154914,0.107338,0.0317901,0.953183,0.458283,0.731637,0.136799,0.626532,0.459175,0.249678,0.0234658,0.335841,0.472389,0.0608374,0.622142,0.188746,0.439346,0.634219,0.273654,0.384272,0.896534,0.901887,0.0428132,0.705598,0.275779,0.932999,0.775513,0.968941,0.02526,0.0439897,0.168941,0.766064,0.0516194,0.312935,0.709522,0.041343,0.276008,0.183952,0.265562,0.700206,0.276037,0.909135,0.0786178,0.588579,0.0531125,0.370065,0.954989,0.0348459,0.0941245,0.82177,0.6321,0.932566,0.974548,0.972334,0.105687,0.882488,0.652435,0.435596,0.679559,0.578328,0.820353,0.231862,0.409093,0.970211,0.690641,0.0174097,0.254229,0.727431,0.451625,0.658663,0.991036,0.178642,0.561222,0.188957,0.598638,0.719044,0.696467,0.813251,0.753173,0.958512,0.568308,0.933522,0.094581,0.316078,0.694473,0.20101,0.773574,0.620292,0.666827,0.434142,0.258244,0.581466,0.123447,0.519085,0.815903,0.996581,0.166253,0.427308,0.0260168,0.753924,0.756629,0.198732,0.267547,0.9563,0.57414,0.996069,0.441043,0.359782,0.186049,0.35509,0.548225,0.60019,0.474454,0.58512,0.353454,0.406797,0.150092,0.11751,0.208421,0.303813,0.873214,0.325866,0.92503,0.648201,0.547048,0.868617,0.912362,0.552838,0.716493,0.558641,0.888242,0.592747,0.453924,0.832915,0.526219,0.281357,0.00827008,0.929729,0.99086,0.809492,0.896237,0.563026,0.394467,0.759416,0.15143,0.519022,0.0199365,0.716795,0.69749,0.628574,0.619967,0.96396,0.742798,0.650609,0.000695288,0.439038,0.090725,0.865089,0.259147,0.524131,0.705068,0.00175291,0.699878,0.631917,0.177392,0.230537,0.977904,0.829877,0.266147,0.566628,0.837403,0.479391,0.967748,0.124942,0.166666,0.22903,0.694462,0.71575,0.330652,0.0139385,0.618706,0.387655,0.21992,0.75451,0.412332,0.436094,0.917704,0.328152,0.476722,0.223411,0.252038,0.907153,0.0346367,0.505612,0.035832,0.560394,0.0412111,0.571235,0.573854,0.269931,0.732358,0.861427,0.561662,0.913315,0.427483,0.676685,0.387824,0.388905,0.972183,0.099955,0.840449,0.955463,0.915516,0.105909,0.517594,0.828658,0.784258,0.656278,0.100889,0.486509,0.134639,0.630331,0.888878,0.672008,0.0015105,0.77843,0.020245,0.748388,0.450938,0.790384,0.340086,0.188774,0.06133,0.166478,0.759214,0.943833,0.349005,0.738657,0.577895,0.87167,0.915861,0.859343,0.607817,0.765962,0.815785,0.761154,0.887054,0.744294,0.466268,0.495342,0.832334,0.024489,0.286736,0.84151,0.153152,0.381099,0.339111,0.278712,0.485493,0.671506,0.121387,0.282187,0.165666,0.231018,0.910652,0.348865,0.687062,0.0582127,0.152478,0.351965,0.166417,0.751616,0.726474,0.446519,0.294681,0.161238,0.577477,0.592441,0.582889,0.580442,0.96902,0.613657,0.508423,0.0277861,0.425846,0.847387,0.0492944,0.739542,0.703375,0.94277,0.757661,0.188409,0.629648,0.503016,0.233632,0.630311,0.180005,0.282069,0.84564,0.345966,0.984945,0.490862,0.729347,0.48626,0.678282,0.815226,0.995985,0.148721,0.0253134,0.52118,0.969944,0.929168,0.380307,0.51697,0.964957,0.17421,0.458034,0.104218,0.216122,0.63488,0.843783,0.0302073,0.360032,0.51449,0.580189,0.644433,0.566209,0.835621,0.269855,0.916001,0.591365,0.607983,0.308757,0.973868,0.925699,0.373731,0.290721,0.337094,0.489483,0.544004,0.0109117,0.859788,0.600054,0.524042,0.631008,0.887556,0.0435316,0.280544,0.0480675,0.303323,0.9147,0.489386,0.242392,0.907477,0.783389,0.809781,0.0759647,0.166235,0.882114,0.837325,0.0740295,0.597563,0.837864,0.746977,0.556844,0.756825,0.471411,0.414838,0.688395,0.196471,0.595197,0.839681,0.482119,0.217883,0.587769,0.274328,0.246335,0.335305,0.231356,0.515724,0.193133,0.0741323,0.913596,0.327653,0.314691,0.061163,0.721822,0.855002,0.692754,0.637514,0.629799,0.27296,0.55456,0.0959292,0.995327,0.050316,0.693305,0.55732,0.0794914,0.703125,0.508194,0.171483,0.665659,0.612892,0.25715,0.0703084,0.0311825,0.848521,0.959268,0.0707437,0.743808,0.906303,0.655749,0.629734,0.975996,0.632026,0.987611,0.764921,0.41847,0.985016,0.941478,0.905232,0.483219,0.562178,0.865767,0.150915,0.926449,0.551549,0.478761,0.0810989,0.187246,0.753747,0.102076,0.552768,0.639617,0.813805,0.509038,0.539839,0.682308,0.442897,0.0183781,0.66707,0.247457,0.381037,0.200493,0.924899,0.0549319,0.366307,0.499422,0.0874872,0.438674,0.981278,0.70605,0.968858,0.335068,0.549005,0.516659,0.169929,0.664027,0.0638068,0.785075,0.105798,0.880571,0.911204,0.952255,0.0603087,0.524707,0.0875571,0.125676,0.156678,0.553775,0.141553,0.583274,0.261528,0.166662,0.770952,0.774082,0.0266639,0.891289,0.981093,0.90486,0.288617,0.327065,0.811283,0.144984,0.357624,0.788078,0.0446901,0.235653,0.17582,0.106154,0.155185,0.665387,0.679092,0.0813926,0.798148,0.968364,0.620189,0.817586,0.906578,0.625676,0.124714,0.958998,0.222624,0.246512,0.525956,0.578368,0.0730531,0.772538,0.157672,0.609046,0.106981,0.469346,0.397169,0.111399,0.0301563,0.276085,0.416599,0.763464,0.485529,0.913128,0.0120624,0.897446,0.850995,0.744146,0.770055,0.652473,0.56038,0.0743875,0.473273,0.107654,0.246501,0.325398,0.37585,0.872978,0.778197,0.709616,0.346844,0.0687771,0.929932,0.106631,0.47423,0.841311,0.527892,0.716895,0.311891,0.64999,0.623253,0.636368,0.249154,0.141485,0.775381,0.857757,0.00272691,0.695907,0.144427,0.106174,0.92427,0.0420452,0.67515,0.493364,0.188356,0.600584,0.365739,0.776704,0.476895,0.491083,0.0149179,0.728682,0.0612465,0.00235134,0.122267,0.858951,0.610551,0.103164,0.518849,0.488038,0.105603,0.863814,0.635423,0.289711,0.0163198,0.790528,0.0691665,0.279732,0.595583,0.189902,0.823213,0.457225,0.874129,0.0494407,0.641342,0.174015,0.859396,0.433502,0.916474,0.650613,0.601305,0.474408,0.781159,0.355439,0.385765,0.538026,0.200585,0.293329,0.158019,0.659158,0.630827,0.0543729,0.0104844,0.883839,0.998181,0.343569,0.818671,0.70583,0.321526,0.770643,0.153165,0.795082,0.873702,0.161087,0.0483342,0.322623,0.118576,0.308103,0.0494471,0.981506,0.695195,0.783978,0.903486,0.531379,0.543887,0.316091,0.958659,0.256172,0.109864,0.69553,0.632854,0.782645,0.887327,0.260466,0.422077,0.241372,0.486538,0.420134,0.466203,0.0406187,0.999818,0.830104,0.26817,0.961444,0.76115,0.255656,0.855657,0.931954,0.128546,0.983634,0.452761,0.503857,0.404893,0.228349,0.994802,0.626501,0.271747,0.484805,0.745416,0.10323,0.470384,0.936476,0.738105,0.0609523,0.641807,0.359843,0.0707374,0.0986766,0.0671099,0.684123,0.505331,0.779566,0.223667,0.213382,0.791314,0.237467,0.549752,0.734783,0.78957,0.531908,0.397043,0.443654,0.831784,0.589018,0.494061,0.456865,0.923896,0.62018,0.282748,0.0657706,0.451175,0.762942,0.649412,0.604028,0.871616,0.274965,0.931202,0.0812021,0.336311,0.706378,0.787226,0.435962,0.573232,0.0752481,0.0832565,0.75777,0.490749,0.934318,0.540179,0.380472,0.765967,0.0758308,0.535514,0.761471,0.428018,0.0998527,0.528286,0.174702,0.486824,0.0154867,0.309106,0.967082,0.124642,0.0912148,0.900014,0.568435,0.0280995,0.389774,0.0775811,0.034246,0.147078,0.765411,0.728338,0.900444,0.55835,0.487426,0.119217,0.3833,0.494347,0.560185,0.270108,0.906978,0.845741,0.922988,0.0447033,0.822115,0.318281,0.369454,0.730275,0.726839,0.266767,0.201371,0.886386,0.10404,0.450825,0.61206,0.0881881,0.331755,0.157309,0.978639,0.153393,0.114409,0.00508618,0.489633,0.461955,0.965034,0.000449121,0.289536,0.947128,0.400108,0.00180644,0.911297,0.299863,0.952448,0.487924,0.426885,0.958315,0.862881,0.89549,0.231745,0.102167,0.201263,0.61079,0.809963,0.074577,0.658581,0.908438,0.640304,0.0644454,0.978803,0.0424605,0.403462,0.251271,0.517555,0.666608,0.910713,0.586682,0.168655,0.899341,0.0357139,0.0714535,0.270675,0.738,0.0362682,0.0957146,0.611327,0.958654,0.74556,0.927704,0.627245,0.459392,0.680353,0.844303,0.714224,0.580029,0.054814,0.674529,0.335462,0.0967737,0.167969,0.00467753,0.506862,0.777372,0.563155,0.475622,0.56714,0.74285,0.14684,0.287087,0.688845,0.325094,0.233096,0.00744092,0.0380905,0.905544,0.632326,0.460423,0.366461,0.70461,0.441841,0.77479,0.437235,0.119423,0.762102,0.0137148,0.309553,0.506003,0.69998,0.941743,0.230769,0.406982,0.820347,0.925419,0.570645,0.442809,0.237599,0.594483,0.750909,0.217991,0.94173,0.86273,0.173606,0.00764716,0.211373,0.804127,0.0760761,0.064694,0.425205,0.653758,0.919177,0.412432,0.718702,0.77197,0.357193,0.846605,0.0811941,0.679088,0.439753,0.787845,0.211933,0.523771,0.576124,0.116555,0.982626,0.0696217,0.307954,0.0344184,0.757478,0.109989,0.732549,0.245857,0.0588025,0.620343,0.945362,0.576726,0.0452278,0.33898,0.511215,0.956316,0.898254,0.4127,0.139751,0.20254,0.284762,0.521891,0.540595,0.627071,0.407989,0.607049,0.81359,0.488097,0.665915,0.976503,0.541565,0.805986,0.230405,0.874512,0.756818,0.819542,0.378787,0.520591,0.383655,0.934003,0.15007,0.0463365,0.685476,0.915412,0.618815,0.351288,|0.448858,0.886092,0.956919,0.592926,0.84805,0.807706,0.328617,0.487762,0.91017,0.488792,0.743977,0.669343,0.938951,0.91396,0.074221,0.20699,0.623073,0.0800825,0.843985,0.584568,0.564807,0.799028,0.95254,0.159029,0.898835,0.964172,0.0515386,0.617235,0.737956,0.699185,0.441214,0.982613,0.509042,0.690917,0.198217,0.342039,0.573338,0.307187,0.497254,0.0277465,0.680213,0.433335,0.42917,0.0566638,0.255861,0.497591,0.308786,0.474403,0.837821,0.158937,0.593286,0.710105,0.651756,0.0207779,0.790442,0.360078,0.168095,0.484972,0.535436,0.836521,0.0523483,0.397882,0.138656,0.424134,0.055843,0.548999,0.824613,0.587252,0.00580245,0.638786,0.514874,0.0513653,0.0695442,0.593985,0.169456,0.414735,0.0527235,0.366659,0.957756,0.193814,0.587101,0.226578,0.139817,0.109926,0.0937361,0.0793433,0.992929,0.783835,0.90707,0.452293,0.66478,0.69616,0.663743,0.538076,0.69995,0.126858,0.90554,0.926476,0.729097,0.583767,0.361021,0.467328,0.17068,0.546445,0.366544,0.694814,0.732432,0.252245,0.701729,0.192735,0.406338,0.852649,0.283656,0.474844,0.751954,0.487344,0.73528,0.208264,0.614762,0.313548,0.259688,0.0343777,0.228147,0.0360895,0.974294,0.469655,0.968477,0.187012,0.338371,0.709885,0.0410019,0.18911,0.391901,0.0611346,0.10039,0.462002,0.48875,0.360659,0.547474,0.0349673,0.181391,0.947656,0.59128,0.310542,0.440072,0.31109,0.0843952,0.922681,0.915,0.673134,0.753773,0.138491,0.856659,0.783388,0.141363,0.619099,0.602149,0.214045,0.961923,0.898715,0.542997,0.41527,0.267759,0.424632,0.858258,0.11104,0.846125,0.347775,0.873833,0.235602,0.963349,0.59113,0.763611,0.299906,0.428494,0.749482,0.918282,0.974615,0.115286,0.312772,0.613732,0.954005,0.854194,0.173412,0.999817,0.562263,0.107296,0.260174,0.515998,0.264768,0.342718,0.946358,0.0040158,0.117639,0.109322,0.503836,0.507951,0.841092,0.697465,0.689748,0.121363,0.588649,0.222871,0.847191,0.128375,0.958575,0.160452,0.110632,0.587013,0.935394,0.844873,0.12945,0.857748,0.46542,0.543709,0.157976,0.550601,0.790348,0.786656,0.970141,0.506994,0.215696,0.885241,0.225287,0.473513,0.0828095,0.736465,0.977271,0.181251,0.134068,0.14005,0.165887,0.302304,0.630969,0.390825,0.0608135,0.880338,0.602838,0.133857,0.0750078,0.815295,0.688032,0.716813,0.279511,0.199619,0.777938,0.422483,0.45157,0.220224,0.95633,0.653341,0.632051,0.916927,0.104024,0.820617,0.0138397,0.372405,0.470687,0.720205,0.116536,0.870249,0.211458,0.447758,0.743059,0.959975,0.51217,0.84339,0.371648,0.413925,0.992586,0.487855,0.612534,0.077036,0.0244085,0.959458,0.210411,0.897052,0.481099,0.319177,0.565245,0.442763,0.311454,0.826823,0.707047,0.440218,0.691295,0.73435,0.909079,0.831241,0.831662,0.240652,0.148671,0.60003,0.0700214,0.990523,0.652332,0.135779,0.863462,0.856088,0.432245,0.906864,0.747185,0.250503,0.577254,0.583324,0.80434,0.148016,0.640018,0.444615,0.302967,0.253237,0.468917,0.965955,0.130915,0.265402,0.0150396,0.396622,0.274412,0.386717,0.483406,0.895799,0.276997,0.904673,0.938908,0.929237,0.664511,0.548224,0.988077,0.90483,0.668618,0.492972,0.648316,0.276205,0.0743806,0.66298,0.357991,0.920427,0.623072,0.0249546,0.748118,0.0867016,0.0228193,0.364844,0.659294,0.320655,0.649386,0.33702,0.884582,0.881961,0.658308,0.17452,0.0913412,0.696515,0.0427403,0.682543,0.0582558,0.688058,0.880037,0.272646,0.649909,0.117485,0.462644,0.618104,0.157836,0.681946,0.00801665,0.390461,0.583597,0.365803,0.971432,0.421104,0.514154,0.310707,0.739823,0.62407,0.31779,0.30272,0.682462,0.797248,0.342101,0.100089,0.0414907,0.148789,0.353405,0.89704,0.0979559,0.599128,0.528962,0.844165,0.872877,0.878625,0.862298,0.368008,0.545663,0.265586,0.860106,0.865999,0.0494843,0.306767,0.448287,0.0603338,0.608115,0.252186,0.787881,0.223886,0.752265,0.199288,0.0526881,0.409988,0.39002,0.899148,0.52176,0.109585,0.490987,0.784288,0.121177,0.18205,0.594603,0.793118,0.48123,0.636513,0.431038,0.917495,0.44332,0.417342,0.531407,0.497102,0.619615,0.805064,0.986096,0.814447,0.0131176,0.404476,0.00267595,0.279666,0.80539,0.422198,0.0816209,0.667936,0.326746,0.937631,0.0964289,0.639792,0.276726,0.0411354,0.184781,0.439605,0.0241385,0.128732,0.830844,0.4335,0.00405788,0.639853,0.324913,0.410709,0.918275,0.872997,0.079456,0.612893,0.852587,0.622603,0.156125,0.723104,0.530981,0.0514852,0.150172,0.297781,0.853245,0.726222,0.0316596,0.946783,0.936122,0.369088,0.632154,0.297478,0.253266,0.855729,0.387295,0.0134624,0.728973,0.807784,0.0138028,0.0550812,0.481936,0.464326,0.873968,0.334963,0.71442,0.160606,0.800755,0.154035,0.0808619,0.516708,0.124986,0.154848,0.917736,0.266329,0.678701,0.807879,0.521731,0.634206,0.68313,0.950203,0.296654,0.235949,0.699604,0.634576,0.966697,0.734239,0.2653,0.0605048,0.324819,0.00428671,0.700778,0.38371,0.882622,0.585318,0.711077,0.588972,0.649336,0.766165,0.0794062,0.311061,0.130777,0.933714,0.580841,0.938433,0.0838333,0.224838,0.886705,0.600952,0.985785,0.127178,0.88288,0.645028,0.209927,0.620727,0.553538,0.978387,0.619975,0.978149,0.8549,0.994051,0.688755,0.584626,0.739452,0.468097,0.603974,0.423009,0.480788,0.00863558,0.847271,0.970641,0.670337,0.780656,0.0417262,0.248809,0.307812,0.259768,0.699142,0.425141,0.704341,0.289295,0.798484,0.214917,0.221515,0.118675,0.872692,0.0610813,0.292828,0.927751,0.161873,0.773154,0.038157,0.411036,0.313937,0.741231,0.572478,0.442104,0.666753,0.688626,0.706229,0.250852,0.688444,0.933325,0.0188318,0.598304,0.277316,0.874334,0.94183,0.709808,0.222964,0.598959,0.667764,0.440627,0.9885,0.65439,0.128689,0.461493,0.679136,0.0375133,0.928092,0.874221,0.307123,0.597389,0.629938,0.253848,0.778352,0.898618,0.844239,0.546861,0.357237,0.527428,0.16919,0.304656,0.954715,0.0590744,0.525156,0.402819,0.097375,0.0835425,0.0308605,0.757803,0.0221909,0.334127,0.868193,0.48767,0.598924,0.807109,0.503888,0.678988,0.190998,0.213712,0.0563856,0.256437,0.440146,0.856555,0.852681,0.0415329,0.508393,0.169785,0.587464,0.251364,0.851392,0.105165,0.271902,0.19141,0.882992,0.933613,0.390172,0.496201,0.159652,0.0706446,0.869152,0.971994,0.795871,0.312697,0.671351,0.121224,0.345574,0.701418,0.0980392,0.886942,0.771186,0.0357644,0.0289932,0.656955,0.234721,0.691656,0.104666,0.286916,0.808791,0.470786,0.11503,0.7909,0.150849,0.21907,0.706879,0.976361,0.0809513,0.887278,0.985156,0.175477,0.272807,0.0307691,0.89305,0.418929,0.726501,0.43114,0.95292,0.911496,0.0759076,0.663473,0.812318,0.908116,0.287033,0.802569,0.00621998,0.641761,0.582246,0.0590394,0.160277,0.14752,0.505421,0.0510407,0.276527,0.622896,0.193086,0.437041,0.880724,0.808662,0.839804,0.204175,0.678424,0.175914,0.424198,0.042275,0.361254,0.102559,0.303797,0.649456,0.466912,0.518223,0.483585,0.197784,0.526606,0.70305,0.974004,0.939132,0.0256616,0.438107,0.201521,0.539145,0.0544564,0.185873,0.474637,0.887251,0.956968,0.0484016,0.10243,0.301142,0.297461,0.262313,0.166499,0.236089,0.924735,0.0199498,0.872837,0.257483,0.299209,0.618502,0.674348,0.333553,0.182179,0.452918,0.72255,0.0482123,0.753549,0.0391157,0.329189,0.130339,0.854041,0.0981357,0.840153,0.896866,0.887718,0.839304,0.0159476,0.6731,0.401628,0.694586,0.321047,0.763799,0.495075,0.868892,0.344414,0.283449,0.744875,0.825317,0.147695,0.458372,0.411679,0.658478,0.750594,0.403717,0.171251,0.551503,0.738594,0.687721,0.312261,0.78271,0.0188479,0.19253,0.886727,0.87033,0.184567,0.0923897,0.804782,0.819567,0.635352,0.0298946,0.997488,0.880632,0.477659,0.630795,0.500564,0.229412,0.835652,0.06822,0.112817,0.176444,0.43516,0.743891,0.96666,0.355062,0.141782,0.125252,0.12662,0.726857,0.816674,0.536893,0.103575,0.101845,0.806699,0.0157859,0.182193,0.261997,0.415986,0.0415881,0.842127,0.696418,0.410896,0.49424,0.0629503,0.189197,0.213875,0.869729,0.35935,0.170585,0.149235,0.512418,0.618469,0.474802,0.649443,0.242471,0.120079,0.0415696,0.821818,0.170446,0.0824097,0.0380942,0.468704,0.475999,0.248768,0.0605239,0.519975,0.549231,0.170413,0.15234,0.691699,0.167371,0.22327,0.528928,0.809649,0.0588174,0.597745,0.625195,0.38802,0.663674,0.0239272,0.136847,0.912125,0.918081,0.0889459,0.125872,0.396756,0.85731,0.604183,0.536634,0.130351,0.461045,0.212408,0.486138,0.0856773,0.686062,0.616026,0.0935943,0.766032,0.56856,0.813619,0.858634,0.474969,0.95116,0.87942,0.912302,0.117664,0.319196,0.0662849,0.188462,0.695926,0.319332,0.833717,0.571649,0.269529,0.804602,0.196708,0.447816,0.589098,0.898799,0.889754,0.915595,0.550278,0.404535,0.420288,0.56633,0.666984,0.793635,0.618432,0.951698,0.702548,0.188086,0.237257,0.999697,0.910384,0.57402,0.507647,0.418227,0.0457454,0.407273,0.697388,0.245208,0.141381,0.442595,0.0475552,0.253271,0.908708,0.319442,0.215785,0.0344606,0.0586888,0.197741,0.98933,0.630945,0.293454,0.36538,0.166137,0.850843,0.961485,0.516689,0.404271,0.293632,0.473734,0.0752009,0.550792,0.877156,0.59182,0.173905,0.138019,0.303152,0.950663,0.396992,0.561847,0.489852,0.0414087,0.300557,0.209507,0.626388,0.611048,0.645448,0.324354,0.604103,0.723243,0.923038,0.747971,0.553579,0.980087,0.301639,0.362049,0.749283,0.865304,0.926758,0.146806,0.953689,0.723805,0.488349,0.959571,0.142695,0.346136,0.329076,0.339172,0.364834,0.0474578,0.512575,0.313293,0.257877,0.413857,0.612941,0.174903,0.442182,0.270059,|0.42917,0.292368,0.214344,0.329002,0.345325,0.57988,0.243201,0.87707,0.476849,0.79,0.742029,0.206532,0.148534,0.0321849,0.100151,0.873813,0.64798,0.825328,0.690369,0.613213,0.831462,0.475879,0.839133,0.474306,0.212866,0.11909,0.864544,0.376634,0.47409,0.588295,0.582258,0.0903371,0.593066,0.888195,0.592527,0.834341,0.42395,0.306915,0.219519,0.841181,0.115069,0.762959,0.751972,0.60874,0.56201,0.0379658,0.44949,0.115661,0.506524,0.34291,0.305166,0.256123,0.554131,0.274093,0.472403,0.583323,0.464982,0.599682,0.924761,0.17567,0.301422,0.451774,0.762332,0.605976,0.427989,0.428392,0.382907,0.427189,0.192835,0.741478,0.139056,0.0374985,0.91581,0.196297,0.695065,0.779921,0.27145,0.238453,0.198283,0.345348,0.259128,0.0488692,0.657038,0.0649892,0.586547,0.261669,0.666884,0.906285,0.367472,0.893798,0.965425,0.490483,0.487936,0.0613796,0.58301,0.309438,0.872149,0.958738,0.598136,0.735957,0.267888,0.881922,0.989829,0.754871,0.211403,0.848621,0.181541,0.915462,0.159231,0.117928,0.189266,0.82097,0.433551,0.0856745,0.277091,0.21928,0.209403,0.476326,0.579126,0.411263,0.549802,0.676254,0.224268,0.932926,0.308733,0.467916,0.520916,0.481516,0.573547,0.206203,0.00190258,0.999562,0.736366,0.689341,0.721541,0.393442,0.668656,0.239095,0.649758,0.0173576,0.984053,0.989273,0.121627,0.874625,0.122688,0.676465,0.405915,0.550588,0.0637579,0.978251,0.815888,0.784649,0.150718,0.634632,0.652796,0.175158,0.196426,0.0630437,0.256815,0.255294,0.474936,0.599174,0.036938,0.508618,0.16404,0.891501,0.847188,0.0647667,0.377901,0.40084,0.756987,0.518464,0.906155,0.368201,0.190955,0.616033,0.926131,0.318223,0.364154,0.749823,0.651754,0.375425,0.232285,0.892779,0.783324,0.421131,0.871264,0.255088,0.920744,0.0905356,0.00900388,0.942948,0.519349,0.492303,0.515989,0.939822,0.233461,0.259408,0.00594139,0.660529,0.762475,0.119801,0.26471,0.195481,0.215419,0.0532515,0.0365047,0.0596855,0.157283,0.452761,0.213971,0.886195,0.152383,0.699575,0.615546,0.805814,0.85528,0.322837,0.426776,0.075078,0.154536,0.844811,0.268046,0.75755,0.96007,0.67533,0.423245,0.531571,0.536767,0.943074,0.655843,0.854191,0.407594,0.491349,0.851697,0.946908,0.098294,0.154425,0.540545,0.535104,0.774657,0.344209,0.26717,0.0889528,0.129458,0.239541,0.316416,0.633349,0.831865,0.650175,0.0952394,0.0990468,0.66463,0.646301,0.798583,0.0639606,0.862961,0.520321,0.493063,0.0547985,0.251031,0.819659,0.770188,0.345973,0.215301,0.934199,0.0784768,0.779735,0.758708,0.234949,0.174873,0.993586,0.482438,0.553022,0.562132,0.126975,0.851961,0.294756,0.883432,0.0130837,0.870405,0.565466,0.00450999,0.254149,0.206861,0.928752,0.204152,0.795008,0.648807,0.766365,0.168849,0.381131,0.611161,0.646889,0.0601596,0.142725,0.143935,0.80011,0.0529714,0.265893,0.71934,0.100845,0.361834,0.717478,0.633473,0.76118,0.127528,0.268327,0.461045,0.993447,0.30924,0.698184,0.699512,0.184511,0.740163,0.040998,0.293779,0.910223,0.514601,0.598037,0.368926,0.100907,0.3348,0.342661,0.87133,0.601956,0.964215,0.662166,0.939518,0.5203,0.714504,0.867957,0.466669,0.917126,0.0471608,0.243214,0.868577,0.491686,0.314902,0.456598,0.612227,0.658302,0.152804,0.265285,0.0102496,0.18293,0.651073,0.63489,0.235844,0.162122,0.498293,0.561886,0.0623589,0.635203,0.126902,0.374782,0.98225,0.407314,0.880628,0.114958,0.213257,0.474274,0.872835,0.861935,0.940993,0.0240002,0.83014,0.20928,0.849095,0.416217,0.43902,0.540826,0.208555,0.834075,0.553486,0.918635,0.482382,0.431242,0.649195,0.34503,0.0762752,0.14492,0.609557,0.737449,0.350668,0.581904,0.838366,0.830896,0.146239,0.703862,0.853893,0.834906,0.455499,0.480334,0.147413,0.877183,0.872568,0.232096,0.830367,0.531754,0.053022,0.730922,0.125866,0.959715,0.631861,0.0228571,0.798618,0.964433,0.683145,0.85214,0.270425,0.723125,0.974826,0.088945,0.364727,0.921934,0.841703,0.639749,0.758386,0.864916,0.468138,0.807953,0.861294,0.91339,0.168816,0.161189,0.150249,0.203771,0.166,0.117507,0.385628,0.795464,0.102315,0.493012,0.240125,0.840764,0.882641,0.358924,0.647556,0.42325,0.093193,0.429456,0.625509,0.12267,0.645931,0.918392,0.104323,0.192608,0.264594,0.411672,0.3645,0.263098,0.983572,0.134807,0.05035,0.47461,0.560849,0.411172,0.349282,0.576563,0.877754,0.117314,0.06582,0.212642,0.0777026,0.613404,0.485014,0.740022,0.885442,0.94179,0.890881,0.255935,0.0908396,0.89145,0.976975,0.204433,0.405249,0.41118,0.757817,0.348702,0.0704332,0.242328,0.190327,0.365032,0.765271,0.111354,0.931797,0.733796,0.540908,0.811914,0.0597011,0.503473,0.31811,0.0120376,0.690439,0.338308,0.87381,0.288455,0.223084,0.854519,0.730561,0.760331,0.537037,0.0670177,0.13867,0.483118,0.0746377,0.726296,0.443562,0.0207648,0.647076,0.650514,0.753052,0.0161452,0.511658,0.931239,0.866069,0.602831,0.525235,0.957538,0.870931,0.755349,0.00505805,0.287956,0.892069,0.590517,0.0926144,0.492064,0.939715,0.476309,0.447907,0.955972,0.690811,0.197044,0.874555,0.97444,0.722347,0.818233,0.388106,0.306844,0.290419,0.540526,0.204125,0.360839,0.430199,0.518214,0.714781,0.731112,0.391297,0.666185,0.496776,0.569957,0.5224,0.521457,0.742291,0.534302,0.814428,0.42932,0.460413,0.795332,0.50792,0.392418,0.535047,0.241037,0.562747,0.628677,0.698119,0.765933,0.376926,0.692876,0.438479,0.992816,0.53889,0.190926,0.862154,0.688108,0.116038,0.56286,0.156518,0.618781,0.511368,0.422389,0.792999,0.186821,0.594955,0.952857,0.299875,0.194203,0.2949,0.0036037,0.291026,0.597202,0.907726,0.447047,0.173628,0.194939,0.743197,0.954839,0.032659,0.266498,0.576006,0.79412,0.272246,0.792865,0.243098,0.513528,0.801847,0.497889,0.479985,0.796891,0.741969,0.138391,0.166724,0.323287,0.865874,0.468047,0.760299,0.237885,0.650124,0.407779,0.301179,0.322081,0.754226,0.306256,0.47129,0.274931,0.480723,0.533906,0.000201046,0.804942,0.836231,0.453706,0.641038,0.101359,0.206549,0.326037,0.715067,0.488791,0.497397,0.232051,0.379622,0.974979,0.0811037,0.681046,0.673325,0.675858,0.534565,0.911245,0.00512749,0.864283,0.176793,0.467612,0.2227,0.104903,0.538015,0.617462,0.346428,0.0112333,0.435286,0.483174,0.96628,0.221418,0.8866,0.242809,0.0902207,0.986834,0.997689,0.841094,0.682995,0.745115,0.86552,0.257477,0.149369,0.108241,0.554327,0.257478,0.255306,0.0647718,0.596142,0.567995,0.11073,0.445458,0.348522,0.02303,0.882441,0.131355,0.00413144,0.28945,0.266761,0.72114,0.883845,0.863129,0.662419,0.938858,0.392115,0.989239,0.223951,0.844869,0.635437,0.865616,0.548982,0.580781,0.147294,0.737198,0.120715,0.392201,0.188577,0.723433,0.389846,0.063799,0.369932,0.981755,0.307978,0.36908,0.523169,0.758554,0.388781,0.557222,0.965206,0.0379226,0.661589,0.995975,0.670578,0.958945,0.454013,0.630372,0.27183,0.375876,0.606073,0.467932,0.0512842,0.928379,0.978232,0.606046,0.680917,0.981569,0.188283,0.157394,0.42964,0.696235,0.585927,0.236505,0.76916,0.572969,0.654004,0.873047,0.138569,0.60016,0.287499,0.923956,0.804941,0.724045,0.392743,0.587042,0.13692,0.58425,0.56876,0.82544,0.928982,0.962469,0.620603,0.876256,0.271565,0.996174,0.00452679,0.512189,0.341451,0.889049,0.0646525,0.635534,0.0340715,0.402246,0.205712,0.305993,0.910179,0.95518,0.0160077,0.143696,0.8978,0.328973,0.85095,0.25444,0.22183,0.260249,0.381083,0.501802,0.391921,0.375313,0.313234,0.498619,0.157897,0.593787,0.515623,0.422582,0.165603,0.778552,0.346198,0.428618,0.255832,0.197307,0.160056,0.633983,0.00857848,0.485405,0.342678,0.0628744,0.123975,0.538088,0.432253,0.691124,0.684703,0.621171,0.132309,0.81573,0.851122,0.878767,0.80808,0.0097152,0.783055,0.0679475,0.264076,0.519346,0.455892,0.367567,0.324793,0.674804,0.859833,0.00967872,0.0984977,0.0175991,0.506415,0.681715,0.758753,0.507036,0.398303,0.557717,0.0452821,0.265228,0.966424,0.516917,0.490702,0.120343,0.931927,0.360539,0.0265061,0.967173,0.623666,0.757558,0.133069,0.606091,0.848371,0.357031,0.373796,0.171038,0.590709,0.279289,0.933204,0.133839,0.243518,0.90951,0.377462,0.948327,0.494905,0.637999,0.807519,0.900329,0.0457378,0.917911,0.59576,0.129187,0.339927,0.903058,0.668554,0.465199,0.487286,0.913694,0.680511,0.806167,0.426916,0.58153,0.632085,0.890493,0.0545896,0.440372,0.702667,0.251096,0.602222,0.957342,0.0842183,0.627581,0.692426,0.524007,0.389313,0.409418,0.139422,0.793873,0.0634688,0.37457,0.156221,0.740849,0.706687,0.147372,0.832093,0.60952,0.224102,0.0555652,0.418191,0.730742,0.562812,0.488071,0.538552,0.918325,0.168072,0.351157,0.738122,0.767253,0.502676,0.770617,0.691397,0.491783,0.376089,0.565307,0.980452,0.417559,0.27863,0.0427372,0.884525,0.355812,0.167247,0.837572,0.505129,0.426494,0.34744,0.904947,0.825018,0.721079,0.401341,0.855464,0.594345,0.751198,0.794586,0.246606,0.894719,0.935491,0.241874,0.442629,0.320427,0.745539,0.484331,0.357096,0.68401,0.482533,0.420174,0.709311,0.975388,0.332645,0.856313,0.740149,0.670839,0.873157,0.258597,0.395912,0.937057,0.868857,0.398238,0.476006,0.253525,0.122078,0.659427,0.900099,0.466728,0.661285,0.945682,0.81363,0.0345058,0.171238,0.481375,0.566616,0.123264,0.309542,0.414443,0.448739,0.999006,0.471779,0.781751,0.999616,0.550933,0.721771,0.474035,0.14267,0.828162,0.723343,0.623445,0.359355,0.53805,0.840281,0.929279,0.428823,0.78877,0.670864,|0.93831,0.769317,0.314658,0.0325902,0.215121,0.520722,0.623918,0.0462398,0.120928,0.205591,0.665362,0.552924,0.263252,0.729946,0.622184,0.908248,0.540714,0.922823,0.0746087,0.108602,0.107191,0.867343,0.177878,0.169732,0.528385,0.492749,0.532641,0.688132,0.324347,0.195374,0.467319,0.10694,0.253642,0.612461,0.703305,0.595405,0.529723,0.287325,0.988189,0.574661,0.0463734,0.0221722,0.466401,0.755715,0.14883,0.246676,0.914065,0.210082,0.567826,0.262295,0.850208,0.159948,0.219437,0.79806,0.4229,0.111882,0.925951,0.292128,0.0265349,0.491277,0.447552,0.586337,0.045297,0.135152,0.392081,0.649724,0.701993,0.763426,0.856068,0.466359,0.200648,0.535614,0.720447,0.906918,0.591049,0.924525,0.498591,0.286288,0.407239,0.931334,0.793458,0.233887,0.927381,0.405542,0.968696,0.797797,0.744215,0.730521,0.259361,0.00992256,0.7212,0.663959,0.64879,0.607147,0.416405,0.84049,0.940933,0.417502,0.325121,0.0586423,0.25161,0.502398,0.962056,0.104203,0.278009,0.501118,0.173829,0.490878,0.328733,0.972567,0.48533,0.865444,0.938511,0.567565,0.922432,0.54829,0.453878,0.59659,0.790861,0.170671,0.659869,0.276363,0.783315,0.320978,0.976842,0.43146,0.911545,0.0438517,0.343485,0.0288274,0.567897,0.118239,0.91214,0.740141,0.830698,0.347317,0.251615,0.910339,0.919736,0.291579,0.872523,0.637959,0.43671,0.542563,0.766399,0.452911,0.857991,0.224942,0.32639,0.268322,0.603755,0.157272,0.243997,0.767923,0.591759,0.818858,0.211459,0.555315,0.11956,0.765723,0.804014,0.753073,0.498,0.862324,0.870732,0.23509,0.619216,0.326622,0.643399,0.208236,0.639635,0.199462,0.592593,0.847151,0.95145,0.674509,0.352758,0.152423,0.123529,0.974943,0.708939,0.233835,0.48703,0.837093,0.932443,0.538383,0.883293,0.625627,0.483765,0.562737,0.0864318,0.0943201,0.427429,0.577179,0.108507,0.0887612,0.269437,0.197581,0.475149,0.226192,0.498219,0.052225,0.61192,0.87932,0.000979424,0.730842,0.253041,0.553482,0.149817,0.627107,0.511809,0.672485,0.576607,0.146055,0.276429,0.30298,0.506686,0.722797,0.817322,0.161486,0.543644,0.366957,0.172203,0.853914,0.98863,0.606566,0.28069,0.25774,0.792745,0.953704,0.656144,0.90677,0.556221,0.375264,0.292251,0.95348,0.520793,0.440357,0.0940657,0.756867,0.821542,0.147194,0.470501,0.216571,0.267811,0.0927928,0.278126,0.375572,0.318018,0.49016,0.624288,0.537318,0.791349,0.67453,0.0259637,0.760249,0.408666,0.961814,0.362555,0.462452,0.93138,0.242116,0.243427,0.554187,0.605814,0.870873,0.138506,0.360954,0.0455449,0.00577974,0.371051,0.758591,0.56353,0.658623,0.991203,0.270238,0.970234,0.00346798,0.368837,0.420573,0.548371,0.173423,0.554166,0.25399,0.924159,0.946917,0.417783,0.995507,0.906012,0.845965,0.771418,0.970945,0.103734,0.193121,0.559637,0.113879,0.118703,0.0839958,0.136775,0.853697,0.640803,0.546705,0.248262,0.128338,0.843912,0.0731568,0.189893,0.965605,0.0764992,0.16594,0.214589,0.750658,0.156761,0.83864,0.649693,0.0795496,0.423923,0.426484,0.579166,0.713598,0.127047,0.697081,0.0208805,0.875061,0.411377,0.00803351,0.845876,0.899607,0.373744,0.687134,0.626024,0.28093,0.61647,0.585162,0.0708761,0.911528,0.360363,0.48913,0.190263,0.713771,0.339788,0.214981,0.924227,0.219122,0.334566,0.0911244,0.0862074,0.659273,0.406393,0.379617,0.662499,0.329855,0.0525923,0.989317,0.641341,0.396104,0.070052,0.976331,0.185284,0.949468,0.727214,0.706776,0.512263,0.202112,0.745587,0.984743,0.187229,0.624657,0.224987,0.821731,0.619731,0.773844,0.585302,0.019392,0.705033,0.0710537,0.194281,0.404562,0.713322,0.418189,0.83146,0.886606,0.733595,0.307293,0.542349,0.839668,0.274207,0.426683,0.30792,0.32039,0.679738,0.0544456,0.785336,0.32146,0.958337,0.299757,0.0294346,0.674482,0.806749,0.656586,0.876195,0.293335,0.00647426,0.642836,0.910514,0.818933,0.80341,0.191515,0.541322,0.194391,0.126988,0.931285,0.461239,0.778743,0.183626,0.104928,0.821756,0.725865,0.768239,0.827052,0.392647,0.744231,0.375151,0.890992,0.249876,0.427538,0.317351,0.296369,0.916395,0.0721784,0.379884,0.778832,0.0446265,0.345724,0.305216,0.190023,0.105791,0.641972,0.657093,0.283429,0.165514,0.851779,0.533241,0.0790041,0.87885,0.245111,0.873132,0.559248,0.520923,0.0526069,0.0245401,0.422781,0.631572,0.628426,0.927213,0.597937,0.00888932,0.632215,0.242908,0.34264,0.353739,0.864436,0.312659,0.0879059,0.506229,0.0967645,0.30601,0.517796,0.301522,0.983531,0.0972455,0.668262,0.840373,0.962809,0.0996339,0.180133,0.177812,0.594403,0.641285,0.949804,0.264397,0.0542226,0.120157,0.360231,0.166458,0.0839314,0.474504,0.393256,0.84608,0.487758,0.804817,0.145828,0.813881,0.884377,0.398656,0.449133,0.47938,0.560225,0.190099,0.555578,0.108517,0.226038,0.902113,0.526721,0.363913,0.364027,0.744717,0.0538347,0.0843798,0.417401,0.465332,0.968982,0.116277,0.958403,0.806792,0.708268,0.696564,0.664683,0.397708,0.97794,0.838633,0.948733,0.437216,0.567444,0.500748,0.676774,0.128054,0.380611,0.995322,0.474719,0.390908,0.0693778,0.108138,0.841702,0.716372,0.107677,0.584598,0.147301,0.307012,0.543081,0.370284,0.883115,0.574195,0.293303,0.452267,0.08202,0.0986869,0.651612,0.842352,0.575685,0.816092,0.704764,0.323564,0.597871,0.869411,0.45508,0.753613,0.393712,0.925013,0.89819,0.629604,0.594375,0.519518,0.764079,0.143887,0.9113,0.43971,0.769019,0.625556,0.869209,0.522474,0.148363,0.273243,0.534843,0.763561,0.874075,0.480001,0.337207,0.334525,0.838177,0.165348,0.253443,0.862092,0.157806,0.697805,0.733237,0.789261,0.484907,0.350627,0.270242,0.516965,0.66799,0.569224,0.349292,0.827734,0.470204,0.0199437,0.435382,0.509355,0.195748,0.605756,0.537379,0.847951,0.076051,0.492175,0.961793,0.380618,0.976789,0.555292,0.621046,0.811167,0.32241,0.815751,0.603645,0.0953243,0.371306,0.684822,0.286235,0.699162,0.544473,0.895219,0.407509,0.0185545,0.875952,0.173696,0.970599,0.894399,0.399598,0.551843,0.0887317,0.555177,0.211126,0.466521,0.0982447,0.549714,0.793096,0.686391,0.366695,0.288061,0.0241889,0.471135,0.956376,0.34789,0.410266,0.196015,0.117672,0.0311772,0.629246,0.657365,0.234882,0.458361,0.382895,0.0289093,0.877145,0.536115,0.621722,0.571213,0.210901,0.761098,0.52509,0.125029,0.0391566,0.2716,0.307037,0.971792,0.373574,0.81908,0.480219,0.464506,0.0217752,0.949005,0.810501,0.873507,0.203387,0.328561,0.728984,0.143849,0.489811,0.55458,0.323679,0.648601,0.00391507,0.834863,0.452445,0.890212,0.995156,0.13556,0.063513,0.335871,0.289568,0.183478,0.0895509,0.957441,0.432008,0.850828,0.618367,0.982587,0.533607,0.240461,0.575823,0.624057,0.771796,0.354001,0.364246,0.650488,0.197295,0.577314,0.794464,0.494259,0.964189,0.024687,0.212075,0.202681,0.156995,0.798636,0.0272041,0.341297,0.900175,0.550512,0.156479,0.727185,0.253185,0.929845,0.218139,0.361213,0.542916,0.912885,0.241567,0.93073,0.117212,0.850884,0.913912,0.88557,0.617392,0.547728,0.717776,0.214908,0.63778,0.452723,0.812806,0.149726,0.0417208,0.192033,0.894868,0.0195311,0.923404,0.392651,0.912903,0.877614,0.960565,0.211007,0.831465,0.109352,0.730405,0.819936,0.618312,0.515413,0.195752,0.0308446,0.699007,0.938567,0.901366,0.961042,0.195201,0.491919,0.0677025,0.015483,0.179294,0.506092,0.0373854,0.393747,0.638651,0.694479,0.573391,0.505334,0.102519,0.151175,0.522017,0.0024398,0.0589334,0.905408,0.550818,0.721895,0.697929,0.359608,0.187008,0.150419,0.593063,0.284625,0.99112,0.0693014,0.564161,0.362194,0.47485,0.697736,0.242956,0.624977,0.975269,0.294604,0.734615,0.0310083,0.556626,0.889746,0.383202,0.593556,0.223897,0.0295785,0.366336,0.678615,0.367195,0.204302,0.238708,0.902746,0.754026,0.6627,0.757487,0.145693,0.035444,0.376605,0.4198,0.615946,0.791547,0.510563,0.23075,0.785242,0.170408,0.756056,0.072882,0.749817,0.239551,0.00434363,0.439203,0.549498,0.80953,0.410575,0.86628,0.495735,0.232717,0.725617,0.761888,0.816561,0.457595,0.869468,0.9969,0.642322,0.610807,0.921841,0.172597,0.34703,0.397389,0.131994,0.530886,0.547978,0.181068,0.127604,0.181759,0.555109,0.17512,0.272417,0.989606,0.897495,0.469736,0.682882,0.0257409,0.948496,0.761433,0.739111,0.107381,0.458215,0.455636,0.432086,0.523566,0.902352,0.0771376,0.348918,0.952227,0.360871,0.541832,0.81872,0.7016,0.226889,0.47348,0.687093,0.291153,0.34144,0.51946,0.76394,0.382969,0.286866,0.205243,0.359724,0.00923932,0.908925,0.963253,0.251697,0.194109,0.0869279,0.827236,0.211683,0.786338,0.471602,0.706841,0.865923,0.723811,0.590597,0.136084,0.223651,0.706148,0.104684,0.633452,0.854353,0.805998,0.195704,0.170539,0.95273,0.24125,0.644579,0.646553,0.363945,0.457914,0.260011,0.0427607,0.180764,0.628727,0.646756,0.429709,0.737433,0.709178,0.970003,0.667003,0.0180236,0.0444404,0.924442,0.386005,0.603512,0.281125,0.749172,0.247608,0.695521,0.279674,0.0259033,0.401459,0.423648,0.490229,0.107673,0.0976253,0.0509021,0.0424464,0.848149,0.932912,0.858128,0.107139,0.224672,0.92838,0.580834,0.736464,0.369354,0.75193,0.845421,0.623531,0.118405,0.733875,0.774677,0.855447,0.080381,0.520258,0.904919,0.791385,0.567313,0.145839,0.5269,0.234474,0.637109,0.899461,0.961083,0.532212,0.328998,0.546354,0.256409,0.0884116,0.303353,0.694641,0.300696,0.845528,0.566867,0.0384045,0.858898,0.896152,0.397688,0.776988,0.966977,0.449524,0.757918,0.447281,0.878888,0.311247,0.964751,0.861344,0.808818,0.811846,|0.581006,0.393006,0.645662,0.0939146,0.795934,0.288929,0.72969,0.109932,0.899163,0.91725,0.734725,0.402759,0.711539,0.713654,0.131076,0.967753,0.724654,0.665482,0.257086,0.308668,0.539098,0.367373,0.238819,0.884669,0.364335,0.577461,0.586136,0.951498,0.98175,0.9327,0.491366,0.0772529,0.884573,0.474491,0.00634509,0.999678,0.723607,0.160294,0.918245,0.0547259,0.873512,0.939663,0.274854,0.841691,0.977239,0.153628,0.113626,0.196443,0.868277,0.718831,0.620429,0.896066,0.426286,0.211262,0.491795,0.535054,0.322052,0.617282,0.358517,0.78644,0.351596,0.0270044,0.29381,0.619261,0.747573,0.956976,0.205954,0.463874,0.282233,0.233243,0.929889,0.421715,0.724601,0.673396,0.605353,0.351662,0.56202,0.390505,0.640651,0.87972,0.407952,0.425932,0.0848852,0.668717,0.270125,0.769306,0.876344,0.763746,0.638006,0.726398,0.347586,0.428223,0.961825,0.162999,0.0321222,0.538503,0.759827,0.205029,0.239484,0.381426,0.673268,0.653889,0.00493711,0.130093,0.51477,0.29784,0.793393,0.0249846,0.201524,0.285194,0.70037,0.231353,0.569754,0.937817,0.822962,0.0343117,0.0813282,0.830675,0.226375,0.452552,0.874693,0.677249,0.551264,0.0987536,0.323284,0.0426619,0.286912,0.321618,0.383213,0.0814174,0.79663,0.624136,0.212233,0.772111,0.702775,0.549197,0.92514,0.882876,0.138793,0.543317,0.933498,0.099529,0.32565,0.958965,0.329658,0.0156932,0.114804,0.229156,0.781152,0.412324,0.865546,0.670864,0.339334,0.847917,0.958323,0.905183,0.292815,0.336006,0.919281,0.886708,0.329931,0.55211,0.211863,0.643022,0.825346,0.370989,0.783094,0.663703,0.573049,0.546877,0.915598,0.334993,0.0355333,0.688002,0.857651,0.165235,0.254392,0.412112,0.737203,0.785091,0.645522,0.395808,0.497237,0.460786,0.176414,0.673623,0.352367,0.838065,0.739828,0.752539,0.738064,0.973094,0.380402,0.113893,0.205123,0.420638,0.152319,0.319851,0.875049,0.916889,0.323312,0.390685,0.375877,0.0766945,0.493204,0.376154,0.165442,0.0331597,0.912519,0.421135,0.456802,0.654246,0.251806,0.627967,0.8919,0.988637,0.068265,0.157419,0.474688,0.664204,0.878187,0.321646,0.876512,0.934356,0.975298,0.689976,0.892263,0.0290923,0.621579,0.0141325,0.424297,0.380668,0.123833,0.133503,0.202211,0.842062,0.497389,0.0760396,0.820433,0.725356,0.221484,0.00551456,0.698313,0.104315,0.834526,0.453153,0.542378,0.50783,0.661006,0.269319,0.620248,0.300566,0.340606,0.53168,0.650743,0.149653,0.817512,0.795637,0.822002,0.125131,0.420106,0.161267,0.829531,0.694578,0.599978,0.646764,0.0804064,0.539771,0.559047,0.427829,0.107085,0.452451,0.44768,0.674412,0.152325,0.613683,0.988023,0.916806,0.932991,0.0537765,0.184514,0.28407,0.950497,0.983219,0.774555,0.672439,0.427677,0.224526,0.0797099,0.457914,0.549494,0.810302,0.666355,0.300338,0.675081,0.608203,0.752777,0.231318,0.730058,0.305139,0.877472,0.117265,0.0673746,0.508433,0.0356213,0.316863,0.835483,0.986177,0.495427,0.365881,0.576368,0.515369,0.494128,0.330735,0.504681,0.524599,0.801678,0.861167,0.723373,0.736764,0.867233,0.148704,0.92341,0.432137,0.776165,0.940063,0.506016,0.372342,0.880925,0.882035,0.236359,0.0519211,0.245619,0.75728,0.195442,0.0624084,0.762639,0.94605,0.690974,0.59553,0.758474,0.36965,0.410107,0.320012,0.964992,0.311522,0.508544,0.784208,0.725415,0.784385,0.648502,0.412729,0.839171,0.924779,0.149082,0.117031,0.241665,0.135233,0.561796,0.372701,0.74957,0.385989,0.500023,0.897096,0.508151,0.200327,0.17707,0.676267,0.799926,0.41839,0.67121,0.954064,0.745162,0.229998,0.297938,0.923593,0.787775,0.0193878,0.918907,0.466268,0.388518,0.955019,0.736368,0.733096,0.182805,0.50033,0.0293133,0.11975,0.945539,0.0281245,0.0269628,0.755348,0.00753278,0.738308,0.952836,0.303492,0.378978,0.581381,0.343432,0.0699477,0.572578,0.390544,0.456707,0.692845,0.0964994,0.535945,0.448662,0.477602,0.978309,0.872157,0.361956,0.08905,0.703271,0.152072,0.864969,0.178204,0.188864,0.441586,0.196448,0.75916,0.445024,0.546506,0.233795,0.814856,0.141501,0.491472,0.377845,0.457397,0.655548,0.630428,0.888961,0.814604,0.999443,0.432736,0.202685,0.0861723,0.617408,0.937492,0.221886,0.904766,0.725718,0.988424,0.873588,0.45951,0.122275,0.187986,0.109857,0.150751,0.512518,0.0704957,0.0959851,0.308492,0.52065,0.593862,0.54052,0.743177,0.840404,0.0691121,0.283201,0.728978,0.920242,0.389702,0.0933369,0.125381,0.714068,0.901487,0.050037,0.523757,0.311144,0.328411,0.633386,0.728503,0.570552,0.903807,0.609151,0.206209,0.947095,0.321896,0.643762,0.385171,0.942592,0.86923,0.906497,0.466628,0.883962,0.138643,0.870161,0.146141,0.0397799,0.0688083,0.713605,0.940651,0.0911206,0.0609531,0.520851,0.194595,0.664342,0.564602,0.227138,0.413457,0.0439887,0.13899,0.452415,0.212977,0.579182,0.0443137,0.351929,0.552749,0.0246317,0.287091,0.646644,0.7591,0.613547,0.800221,0.186777,0.153826,0.632863,0.891558,0.579074,0.488871,0.972139,0.144609,0.0818592,0.435366,0.20863,0.880189,0.557557,0.77263,0.441698,0.970263,0.999112,0.393639,0.897381,0.908761,0.664322,0.318807,0.665233,0.727539,0.0687299,0.498055,0.912728,0.0359968,0.516792,0.0490827,0.290425,0.0258484,0.952165,0.424546,0.697548,0.876482,0.269774,0.727354,0.863669,0.986004,0.639362,0.692613,0.967814,0.886479,0.241813,0.0670819,0.549155,0.165562,0.083658,0.340898,0.012336,0.173462,0.0874017,0.995918,0.652301,0.315785,0.865941,0.74569,0.19143,0.180671,0.432826,0.836622,0.460638,0.250264,0.717469,0.117975,0.17893,0.337746,0.186525,0.108676,0.0816695,0.0652893,0.745972,0.683738,0.637507,0.0781352,0.416481,0.312024,0.774282,0.324925,0.682756,0.855034,0.0554498,0.288073,0.350247,0.0470689,0.376193,0.650969,0.448002,0.656973,0.610802,0.443091,0.452758,0.812383,0.152463,0.0135558,0.994538,0.209014,0.258211,0.111393,0.551949,0.516531,0.0625941,0.607461,0.52952,0.547277,0.316678,0.660719,0.711026,0.771612,0.024464,0.0922666,0.379407,0.744025,0.0790771,0.205946,0.72721,0.110404,0.927743,0.816868,0.346144,0.661139,0.0103016,0.156912,0.303538,0.73363,0.0421155,0.130528,0.44525,0.887766,0.509001,0.271585,0.840305,0.122994,0.281837,0.297741,0.649158,0.642284,0.254425,0.621238,0.773641,0.604095,0.551326,0.429792,0.0437318,0.185228,0.561607,0.796237,0.937868,0.951579,0.376828,0.00281948,0.635823,0.781039,0.674918,0.429855,0.417463,0.0762526,0.987955,0.839423,0.783402,0.289614,0.654551,0.148501,0.267756,0.807629,0.530645,0.421693,0.457218,0.293167,0.841182,0.916377,0.205842,0.456239,0.196553,0.723392,0.531117,0.998979,0.691028,0.910456,0.429151,0.650003,0.906501,0.30114,0.564397,0.620922,0.509277,0.59532,0.0351416,0.763517,0.795001,0.753352,0.298445,0.906624,0.321487,0.137504,0.876767,0.101102,0.261174,0.33816,0.612663,0.851833,0.635428,0.355055,0.990946,0.4686,0.623318,0.356948,0.149328,0.771425,0.321755,0.296111,0.00146013,0.646787,0.0804409,0.805952,0.0978709,0.162515,0.942492,0.499512,0.537649,0.217127,0.798235,0.347542,0.341338,0.572418,0.239375,0.273955,0.30409,0.704638,0.405229,0.327555,0.434593,0.821243,0.317823,0.537687,0.813865,0.691804,0.487058,0.947292,0.240446,0.4077,0.615649,0.960043,0.476962,0.538642,0.665899,0.198442,0.522746,0.858274,0.118927,0.704987,0.889086,0.791286,0.534424,0.524592,0.311964,0.0435831,0.13812,0.406898,0.131033,0.541047,0.28696,0.57847,0.0486518,0.402351,0.573321,0.642471,0.295795,0.879709,0.896895,0.950077,0.0637032,0.675922,0.810662,0.523358,0.0507303,0.357476,0.642607,0.0789543,0.934406,0.153189,0.485597,0.821511,0.384533,0.631808,0.959846,0.699592,0.55752,0.295019,0.469943,0.0574287,0.338673,0.465565,0.633243,0.358489,0.143077,0.306989,0.883725,0.292838,0.694777,0.794412,0.165974,0.331115,0.397407,0.670883,0.378431,0.988209,0.719458,0.274907,0.0295948,0.834751,0.0495982,0.379368,0.229526,0.0435207,0.502366,0.118719,0.533621,0.804729,0.622355,0.0231096,0.322463,0.704127,0.572014,0.469026,0.471984,0.192519,0.83846,0.568641,0.692626,0.0493234,0.492547,0.422245,0.963651,0.975663,0.660218,0.560154,0.532382,0.908859,0.561281,0.62719,0.582367,0.00965476,0.89023,0.801634,0.441434,0.757278,0.465488,0.442299,0.992682,0.00960863,0.0403675,0.662669,0.924108,0.823311,0.928168,0.768276,0.862165,0.644693,0.489623,0.48829,0.746421,0.00855643,0.608453,0.784795,0.128923,0.983415,0.155887,0.540389,0.617242,0.175934,0.308139,0.463071,0.0346367,0.205809,0.344171,0.472412,0.824076,0.715418,0.890485,0.180826,0.488784,0.175602,0.874753,0.671091,0.133934,0.398481,0.227435,0.224238,0.960392,0.213333,0.377285,0.499945,0.550973,0.112492,0.255828,0.130647,0.449853,0.208546,0.237532,0.024186,0.247739,0.120763,0.990365,0.136793,0.822005,0.675703,0.771847,0.978109,0.949215,0.861892,0.968616,0.722081,0.290007,0.610249,0.00371927,0.250799,0.136333,0.235714,0.311952,0.807776,0.999532,0.207212,0.754712,0.543082,0.961073,0.26635,0.581163,0.196801,0.469439,0.618858,0.154394,0.434073,0.19695,0.150525,0.904467,0.439112,0.390035,0.940548,0.423436,0.659586,0.353239,0.0658894,0.492892,0.723957,0.665576,0.619599,0.89166,0.452085,0.136223,0.1148,0.819998,0.665775,0.126512,0.108804,0.339228,0.101213,0.143609,0.312678,0.914606,0.191119,0.711365,0.185171,0.491516,0.230601,0.743225,0.384632,0.367514,0.449701,0.317551,0.846689,0.588074,0.0927712,0.125937,0.408443,0.355814,0.642669,0.74654,0.788201,0.289109,0.0584756,0.598195,0.674864,0.0599074,0.818312,|0.762085,0.298995,0.813467,0.60721,0.308237,0.00478429,0.583482,0.461857,0.992711,0.932826,0.261407,0.00777757,0.12223,0.631748,0.940817,0.534046,0.606367,0.376493,0.92461,0.15604,0.915515,0.00318336,0.908381,0.0819304,0.334493,0.723335,0.447464,0.572514,0.0663942,0.976231,0.548121,0.96531,0.812172,0.97783,0.417056,0.742939,0.625575,0.0522977,0.928384,0.822929,0.576525,0.734037,0.348788,0.220754,0.269903,0.5831,0.878776,0.784943,0.0481656,0.601581,0.437734,0.0170739,0.469391,0.374935,0.361078,0.0193279,0.279509,0.23653,0.931579,0.172637,0.835266,0.687714,0.184497,0.415954,0.665588,0.895586,0.627571,0.233025,0.638397,0.955781,0.843605,0.549669,0.689384,0.228566,0.593508,0.191763,0.819123,0.0447719,0.662318,0.924111,0.70473,0.647789,0.731031,0.545569,0.185394,0.110474,0.866729,0.107452,0.347603,0.706591,0.932431,0.925189,0.449651,0.221634,0.717275,0.689369,0.37482,0.442933,0.896151,0.813496,0.283492,0.0688627,0.354875,0.784571,0.922692,0.764951,0.403245,0.805846,0.844107,0.973895,0.73963,0.532312,0.427213,0.60922,0.496199,0.727699,0.0788023,0.903862,0.26754,0.13983,0.645383,0.327472,0.362842,0.507242,0.580271,0.694691,0.672423,0.641561,0.858661,0.598058,0.228476,0.479519,0.499839,0.799801,0.895252,0.927941,0.757342,0.313241,0.296249,0.974558,0.262786,0.041817,0.736133,0.422125,0.129059,0.255636,0.769397,0.440843,0.979181,0.523762,0.372796,0.652296,0.124375,0.98527,0.0799128,0.738883,0.386946,0.375509,0.375823,0.819006,0.678508,0.515592,0.193166,0.0380558,0.58317,0.0221082,0.814669,0.198685,0.862655,0.0394984,0.313972,0.720691,0.513543,0.142676,0.628538,0.142679,0.654098,0.309548,0.992275,0.543151,0.385858,0.827993,0.279107,0.457659,0.096311,0.825758,0.23793,0.995299,0.224719,0.999747,0.107737,0.363778,0.145327,0.660442,0.979959,0.36475,0.874525,0.986474,0.339445,0.40194,0.880466,0.753663,0.10191,0.282586,0.925327,0.0427318,0.877064,0.945824,0.472734,0.574982,0.69198,0.278308,0.715647,0.231448,0.00819284,0.545035,0.766108,0.427609,0.150123,0.865962,0.375499,0.99888,0.182656,0.65512,0.49922,0.202357,0.911298,0.754085,0.0927384,0.429718,0.82395,0.00952786,0.836385,0.875626,0.154494,0.991308,0.75519,0.634611,0.754039,0.601384,0.23991,0.651996,0.590554,0.717247,0.307202,0.914883,0.885934,0.25799,0.659161,0.0646858,0.846411,0.00935352,0.0145851,0.445413,0.137394,0.171497,0.901658,0.769743,0.895258,0.811837,0.605474,0.12844,0.820594,0.50556,0.855411,0.339696,0.580176,0.072742,0.720658,0.457427,0.206062,0.423458,0.0791438,0.170629,0.598018,0.294539,0.290714,0.887162,0.987412,0.108322,0.0577548,0.240866,0.388084,0.8005,0.142203,0.792236,0.086799,0.242823,0.330665,0.695026,0.0963514,0.612432,0.211047,0.427355,0.898933,0.983559,0.855259,0.78433,0.542955,0.0532937,0.968809,0.0419326,0.628531,0.3441,0.511536,0.13287,0.0197354,0.585517,0.352156,0.0510499,0.710152,0.0475774,0.327784,0.0406446,0.471795,0.827063,0.872769,0.636932,0.607443,0.708476,0.643521,0.327439,0.588412,0.584795,0.355447,0.496696,0.534903,0.0717614,0.00539356,0.422972,0.985088,0.628061,0.336366,0.165157,0.540632,0.875199,0.900913,0.280325,0.886076,0.862167,0.479855,0.467807,0.0489193,0.506518,0.725098,0.423718,0.539143,0.315593,0.804278,0.223351,0.767074,0.484493,0.152449,0.868744,0.288644,0.984076,0.874737,0.753903,0.860795,0.491945,0.0544734,0.701102,0.833293,0.545426,0.822099,0.893214,0.536852,0.00676262,0.356224,0.18065,0.406265,0.15497,0.738959,0.915156,0.72346,0.891149,0.812735,0.366495,0.73613,0.661861,0.282753,0.890087,0.837645,0.0800002,0.984015,0.128345,0.277511,0.685222,0.0616981,0.372147,0.0229319,0.688371,0.631423,0.72907,0.630604,0.634465,0.0898449,0.0946959,0.524024,0.675711,0.907172,0.475595,0.686373,0.121655,0.220553,0.559923,0.566514,0.419078,0.375646,0.328807,0.0984049,0.234407,0.666793,0.672008,0.195584,0.836566,0.949983,0.862767,0.387634,0.756058,0.79618,0.598136,0.610528,0.294377,0.429794,0.333833,0.145166,0.94144,0.511387,0.894886,0.294213,0.371324,0.855385,0.649355,0.276106,0.648543,0.206778,0.450131,0.714249,0.27364,0.303307,0.464551,0.0614818,0.0109664,0.122859,0.184313,0.335684,0.969749,0.597007,0.264991,0.185297,0.752927,0.908994,0.622697,0.959764,0.719608,0.903157,0.378237,0.536983,0.817441,0.300271,0.766962,0.643035,0.545253,0.586949,0.216417,0.278016,0.678846,0.0781593,0.46747,0.6087,0.650161,0.705819,0.882149,0.891484,0.8263,0.538844,0.893624,0.836014,0.0450355,0.333562,0.938567,0.412608,0.442679,0.583367,0.569821,0.235605,0.0377971,0.01932,0.980277,0.863021,0.65017,0.907036,0.630561,0.350161,0.115288,0.770476,0.0895692,0.349753,0.676928,0.803138,0.917828,0.666938,0.50167,0.168097,0.452107,0.30717,0.85584,0.976854,0.433331,0.881612,0.115571,0.353689,0.454796,0.816109,0.319352,0.0596225,0.295466,0.339921,0.526975,0.0184776,0.845133,0.640876,0.234152,0.659024,0.846378,0.688951,0.092023,0.71865,0.619521,0.534584,0.131718,0.213198,0.69644,0.142198,0.593424,0.68585,0.86444,0.208841,0.585213,0.0680677,0.72377,0.352221,0.952379,0.141717,0.930856,0.517016,0.142724,0.296441,0.153934,0.367458,0.619055,0.0177419,0.0336884,0.201459,0.776372,0.0612197,0.531318,0.732265,0.417502,0.776302,0.621176,0.00266451,0.178937,0.651561,0.0170229,0.413682,0.496344,0.416457,0.86102,0.797118,0.637919,0.607659,0.23936,0.627159,0.741038,0.327897,0.383233,0.648038,0.717794,0.738772,0.631838,0.192142,0.614114,0.699949,0.281449,0.951352,0.0462599,0.356864,0.167877,0.217085,0.767348,0.532218,0.99467,0.971485,0.735969,0.407622,0.326664,0.0872504,0.84302,0.566327,0.382335,0.0600799,0.991846,0.12842,0.220701,0.154723,0.527535,0.475613,0.514644,0.371885,0.980894,0.888871,0.821981,0.647551,0.729154,0.509211,0.174213,0.93748,0.965838,0.753243,0.725077,0.0952541,0.820202,0.893642,0.488093,0.708398,0.0332755,0.567566,0.469012,0.984334,0.0254763,0.17967,0.930317,0.191781,0.359412,0.849322,0.867957,0.534873,0.680407,0.687767,0.703213,0.0477244,0.662258,0.442074,0.147084,0.45371,0.268152,0.930576,0.147344,0.938226,0.0296679,0.443166,0.156824,0.22936,0.37243,0.787153,0.640869,0.276065,0.993872,0.970718,0.141317,0.569215,0.912643,0.15248,0.797761,0.0702987,0.401788,0.465498,0.46331,0.58997,0.337077,0.0724552,0.736894,0.378287,0.556649,0.98223,0.352962,0.860182,0.941142,0.459679,0.465461,0.364621,0.896552,0.271433,0.253027,0.497147,0.0979801,0.188663,0.0917798,0.603492,0.499472,0.685376,0.239976,0.906053,0.5981,0.491648,0.505663,0.951985,0.38064,0.451337,0.206529,0.61794,0.581408,0.234321,0.151315,0.152755,0.838345,0.826786,0.848905,0.350097,0.0215312,0.274764,0.797437,0.131772,0.307787,0.145141,0.817438,0.533928,0.586953,0.736395,0.990229,0.426875,0.583192,0.0608722,0.737596,0.135552,0.460719,0.316927,0.650919,0.246084,0.847525,0.619144,0.351968,0.66573,0.498718,0.0102375,0.468378,0.55669,0.639432,0.0863143,0.955007,0.415528,0.672873,0.1101,0.994143,0.151541,0.616825,0.215078,0.782696,0.144345,0.520324,0.400215,0.659369,0.0171708,0.129325,0.884208,0.274312,0.104572,0.205723,0.56735,0.0565702,0.202058,0.326306,0.169602,0.831483,0.435012,0.4429,0.60216,0.168674,0.551341,0.505397,0.966291,0.625048,0.439465,0.934326,0.971559,0.721204,0.647251,0.107096,0.326862,0.0558857,0.651174,0.607868,0.606773,0.248151,0.958742,0.583278,0.865334,0.19035,0.414594,0.150146,0.972519,0.478766,0.242622,0.254854,0.253881,0.611731,0.952139,0.60972,0.606594,0.644806,0.132046,0.144894,0.568937,0.813032,0.429336,0.652977,0.654864,0.530986,0.934452,0.736748,0.787198,0.9726,0.39695,0.613819,0.981756,0.0106326,0.00563413,0.1569,0.640657,0.663577,0.94186,0.470793,0.0981004,0.556749,0.3809,0.085259,0.510016,0.620044,0.0146679,0.439836,0.644867,0.266948,0.571325,0.803074,0.272948,0.997715,0.762467,0.307134,0.912735,0.996129,0.525439,0.749342,0.648818,0.257092,0.0772628,0.821408,0.845546,0.803271,0.901994,0.268138,0.610547,0.232997,0.422441,0.548912,0.207648,0.569521,0.0898058,0.78228,0.0952947,0.30617,0.553667,0.38785,0.0894125,0.681419,0.0877575,0.673994,0.234388,0.552822,0.106279,0.0691714,0.050055,0.167512,0.636008,0.797494,0.434548,0.0956169,0.114569,0.647882,0.507825,0.857935,0.656347,0.481967,0.477476,0.704812,0.312411,0.312184,0.909781,0.181031,0.438193,0.00849456,0.045046,0.896602,0.0853982,0.292742,0.610995,0.745514,0.257946,0.244401,0.0632504,0.559509,0.61115,0.0903862,0.595127,0.147616,0.274808,0.0223222,0.43358,0.19547,0.985271,0.58598,0.818916,0.136483,0.874466,0.912235,0.201499,0.189335,0.630965,0.272356,0.0625744,0.745502,0.373712,0.176863,0.946836,0.652788,0.363489,0.0142439,0.772027,0.0361033,0.258592,0.992357,0.141125,0.744605,0.722528,0.60133,0.084741,0.0628514,0.915219,0.278157,0.816373,0.943965,0.391103,0.575547,0.408019,0.169984,0.517486,0.0156959,0.256881,0.0929741,0.530456,0.00409967,0.961991,0.789566,0.511103,0.745629,0.236707,0.0645723,0.416114,0.48065,0.301537,0.93973,0.0598549,0.283874,0.0210389,0.293461,0.378277,0.46269,0.733387,0.288803,0.115933,0.938109,0.418532,0.544032,0.279092,0.789311,0.632944,0.465684,0.834139,0.428197,0.0891621,0.632663,0.929465,0.689687,0.301357,0.111045,0.562644,0.768004,0.920976,0.394042,0.635893,0.649395,0.905536,0.522994,0.366593,0.41962,0.182598,0.676782,0.918289,0.720686,|0.0540504,0.909775,0.895105,0.771474,0.0541676,0.00984561,0.336705,0.550382,0.16571,0.290318,0.0163862,0.45363,0.248451,0.199393,0.559606,0.319409,0.317609,0.0818673,0.218511,0.0749245,0.863529,0.764282,0.801107,0.549912,0.165181,0.624838,0.378888,0.522075,0.417964,0.82167,0.524968,0.174921,0.294679,0.956205,0.43956,0.656995,0.221395,0.123738,0.279139,0.198312,0.769498,0.412589,0.5609,0.235893,0.794311,0.892627,0.1666,0.613992,0.287441,0.5191,0.224907,0.0368055,0.468953,0.993831,0.65285,0.0594113,0.912773,0.979261,0.389812,0.569516,0.66015,0.860113,0.14877,0.808257,0.0407412,0.0994186,0.56026,0.252394,0.621755,0.391515,0.948926,0.112103,0.801528,0.429035,0.527115,0.201055,0.968674,0.644925,0.0974219,0.355275,0.821579,0.119856,0.287553,0.552022,0.181024,0.806057,0.625358,0.654443,0.25492,0.711756,0.856841,0.595297,0.808864,0.9161,0.902682,0.992338,0.00739431,0.889325,0.867508,0.489708,0.946031,0.0477207,0.661551,0.674553,0.225087,0.836683,0.0606014,0.544708,0.28958,0.401806,0.076637,0.656175,0.545726,0.814533,0.646731,0.640075,0.211456,0.925627,0.362904,0.867235,0.937462,0.933652,0.717488,0.649831,0.477224,0.762472,0.561466,0.636638,0.600814,0.80291,0.407194,0.342321,0.699287,0.872586,0.78414,0.763018,0.215955,0.87336,0.587545,0.654724,0.96503,0.449898,0.717894,0.848692,0.532803,0.464821,0.332654,0.218283,0.0755396,0.779584,0.954999,0.19604,0.486693,0.298283,0.918719,0.830949,0.469248,0.976811,0.690105,0.656411,0.0208773,0.087119,0.179337,0.122913,0.896136,0.255507,0.208471,0.568067,0.712963,0.676521,0.450592,0.885636,0.188587,0.57474,0.639229,0.397757,0.850183,0.941149,0.305123,0.983155,0.428065,0.656496,0.685482,0.169777,0.114045,0.105075,0.261713,0.246109,0.834295,0.481364,0.229724,0.612482,0.134575,0.0874201,0.918582,0.278941,0.739785,0.361895,0.274401,0.248865,0.238564,0.708276,0.668095,0.739712,0.805969,0.659915,0.52655,0.788431,0.769608,0.517961,0.73969,0.313717,0.437938,0.605637,0.11461,0.904769,0.358633,0.529653,0.524648,0.998779,0.375344,0.455369,0.193334,0.682316,0.28972,0.704624,0.826677,0.940059,0.0592133,0.200316,0.998699,0.459631,0.352413,0.604711,0.430294,0.991561,0.388982,0.483674,0.417679,0.498319,0.226369,0.494821,0.24602,0.92692,0.0306282,0.805093,0.119508,0.404458,0.679531,0.177596,0.858585,0.262217,0.871024,0.640087,0.495894,0.507087,0.881436,0.995987,0.248778,0.601858,0.673728,0.525636,0.472601,0.162921,0.979401,0.299588,0.721884,0.376555,0.9182,0.733854,0.298244,0.976379,0.658781,0.00746483,0.186347,0.152973,0.421651,0.891239,0.133698,0.97382,0.0633947,0.0338804,0.591688,0.915075,0.733093,0.562766,0.588401,0.457014,0.554163,0.723115,0.000261128,0.582319,0.0868658,0.532988,0.0332676,0.753064,0.159072,0.487551,0.124214,0.314415,0.472582,0.175294,0.667918,0.691587,0.602787,0.768798,0.963476,0.0797634,0.031185,0.5541,0.766164,0.0425113,0.815124,0.797947,0.600705,0.287336,0.719905,0.87931,0.595424,0.753685,0.643245,0.378046,0.487425,0.736771,0.739161,0.783998,0.824655,0.754259,0.0730914,0.246902,0.937858,0.734362,0.70465,0.221019,0.783046,0.723973,0.382876,0.456627,0.137953,0.949793,0.161161,0.436456,0.90773,0.000476182,0.969605,0.0255092,0.871834,0.980299,0.936367,0.905989,0.364576,0.188245,0.969801,0.181385,0.863572,0.581832,0.392238,0.99867,0.535021,0.7651,0.629153,0.158717,0.26421,0.345438,0.250671,0.466494,0.644977,0.648108,0.882382,0.87807,0.278391,0.719347,0.608843,0.990186,0.0880823,0.329207,0.0355206,0.804597,0.344111,0.795489,0.997385,0.998586,0.149961,0.4828,0.470328,0.149008,0.0252034,0.329185,0.0331233,0.310975,0.978017,0.31771,0.170349,0.652621,0.86348,0.321659,0.132858,0.620656,0.577951,0.31335,0.774825,0.923448,0.193921,0.237867,0.687319,0.71834,0.330832,0.643957,0.0413123,0.90355,0.203171,0.780511,0.626627,0.0875936,0.302976,0.523318,0.937673,0.11191,0.86856,0.0610163,0.018131,0.967156,0.414234,0.389109,0.617657,0.0498285,0.486934,0.765614,0.559556,0.753254,0.51672,0.737749,0.54038,0.48519,0.446976,0.150382,0.020019,0.781075,0.924579,0.166668,0.212659,0.563127,0.476723,0.397132,0.496023,0.217351,0.790061,0.155663,0.866946,0.87265,0.285728,0.836817,0.163395,0.552502,0.915644,0.504448,0.605385,0.612263,0.938543,0.732677,0.500384,0.146647,0.075978,0.611282,0.611063,0.107632,0.45617,0.940837,0.516728,0.655893,0.242209,0.0143078,0.540093,0.170734,0.678171,0.775173,0.696422,0.193608,0.306689,0.254953,0.101753,0.780194,0.608191,0.300546,0.589575,0.170675,0.662926,0.996264,0.795924,0.0576709,0.600938,0.99154,0.216086,0.759752,0.992074,0.496987,0.387745,0.496807,0.365785,0.184444,0.322618,0.989081,0.0775341,0.191492,0.023551,0.982569,0.612331,0.861561,0.055652,0.971985,0.3961,0.215977,0.107074,0.283689,0.169349,0.374892,0.151322,0.511268,0.044354,0.978332,0.401623,0.605037,0.80508,0.0523816,0.455272,0.410428,0.436398,0.871965,0.394249,0.256283,0.85898,0.833909,0.748402,0.391522,0.124017,0.466053,0.368719,0.68048,0.924988,0.0820749,0.577479,0.636049,0.102496,0.0788856,0.855628,0.0258037,0.257217,0.869548,0.974667,0.885409,0.0769489,0.460786,0.897139,0.0151534,0.216044,0.764162,0.254919,0.322618,0.821646,0.0183572,0.0472249,0.928736,0.529352,0.488481,0.220458,0.170931,0.223615,0.502711,0.677749,0.0831817,0.18631,0.55891,0.989756,0.451421,0.344175,0.551669,0.377893,0.091288,0.866981,0.151894,0.226538,0.247004,0.671913,0.53063,0.487214,0.360407,0.423893,0.640141,0.520975,0.15249,0.00390589,0.356236,0.483237,0.495265,0.249354,0.0236456,0.543761,0.495187,0.430965,0.380774,0.411099,0.228513,0.691307,0.90123,0.289679,0.375897,0.804268,0.652166,0.84481,0.837064,0.336747,0.665618,0.548793,0.708242,0.792118,0.110214,0.997698,0.137678,0.0750576,0.980098,0.293848,0.0432082,0.332727,0.601103,0.53173,0.988999,0.44258,0.172893,0.585226,0.959889,0.255681,0.15506,0.303017,0.119442,0.362171,0.643219,0.348957,0.0330427,0.507195,0.714814,0.314515,0.941648,0.72099,0.111412,0.141076,0.660145,0.465757,0.556581,0.0573993,0.856711,0.724714,0.663744,0.28907,0.410539,0.579104,0.761602,0.397249,0.0354734,0.150391,0.997814,0.858454,0.657943,0.0640387,0.409907,0.229684,0.915743,0.327841,0.949211,0.937171,0.23863,0.115222,0.107532,0.22941,0.187912,0.639033,0.250407,0.851128,0.256712,0.613009,0.154666,0.379189,0.358995,0.820261,0.614751,0.315551,0.664398,0.491327,0.756739,0.968826,0.397182,0.00103718,0.998473,0.683005,0.394102,0.915514,0.753196,0.678152,0.226928,0.332606,0.307425,0.0402679,0.79823,0.722887,0.796991,0.887843,0.801981,0.131229,0.968435,0.790838,0.437052,0.586325,0.471773,0.0486817,0.636583,0.632017,0.160151,0.661478,0.115343,0.153709,0.725405,0.682195,0.199292,0.289332,0.839494,0.522347,0.94819,0.674378,0.144017,0.359897,0.592217,0.649993,0.587432,0.188997,0.467901,0.853268,0.0299965,0.359977,0.995118,0.415717,0.388806,0.327076,0.23203,0.262934,0.12755,0.0352468,0.960118,0.37848,0.670641,0.4293,0.887367,0.380804,0.0449433,0.00332361,0.785432,0.804441,0.425714,0.558674,0.871705,0.465775,0.587969,0.881089,0.0761833,0.877488,0.949652,0.876827,0.984562,0.261108,0.933292,0.450555,0.598388,0.633421,0.279596,0.70427,0.804934,0.371341,0.511871,0.928631,0.500446,0.531134,0.00656843,0.712447,0.687643,0.848376,0.642713,0.733304,0.186989,0.876245,0.403554,0.981898,0.501553,0.328686,0.0628233,0.871006,0.595457,0.0947105,0.137905,0.392223,0.622738,0.889356,0.495531,0.901884,0.83795,0.642654,0.892682,0.56774,0.706868,0.149431,0.602522,0.414948,0.675844,0.179759,0.763289,0.781898,0.702784,0.155472,0.362545,0.833427,0.0413086,0.926751,0.611193,0.224004,0.902556,0.921124,0.0846087,0.674746,0.333886,0.35273,0.773206,0.955604,0.944521,0.799472,0.500096,0.180264,0.0490537,0.73692,0.34778,0.595152,0.929479,0.814076,0.609747,0.363448,0.980606,0.680685,0.686643,0.459597,0.213609,0.218128,0.569923,0.511049,0.56814,0.716435,0.64215,0.879429,0.620645,0.987457,0.579365,0.643852,0.0888845,0.189138,0.966229,0.371,0.302968,0.522506,0.0712643,0.180211,0.402311,0.732279,0.892852,0.805613,0.572787,0.944341,0.224673,0.619184,0.485579,0.65363,0.128806,0.47333,0.621523,0.0339825,0.345795,0.461873,0.493764,0.811804,0.282271,0.809878,0.639373,0.615593,0.253603,0.311663,0.0072307,0.682684,0.699308,0.766627,0.514928,0.663519,0.829596,0.822782,0.945167,0.247109,0.274509,0.630688,0.332988,0.941284,0.091666,0.759018,0.523107,0.143463,0.135209,0.620485,0.147133,0.0283914,0.653915,0.30913,0.465103,0.528046,0.565712,0.943376,0.157206,0.680545,0.973345,0.293493,0.00409245,0.370571,0.254748,0.692667,0.408718,0.530531,0.569744,0.223598,0.267238,0.157416,0.709389,0.64834,0.408476,0.891618,0.487933,0.472668,0.740404,0.720817,0.144736,0.183681,0.472622,0.900143,0.835093,0.909891,0.074145,0.276426,0.523021,0.506836,0.229302,0.951723,0.832887,0.206596,0.396953,0.500589,0.282651,0.171041,0.0446539,0.271614,0.120331,0.954063,0.749318,0.0403206,0.0567409,0.473308,0.336248,0.807115,0.028341,0.442162,0.601197,0.640915,0.352099,0.123496,0.952572,0.718752,0.622766,0.641257,0.232923,0.960095,0.0291048,0.481882,0.754302,0.743488,0.0629488,0.322668,0.696175,0.577365,0.621186,0.5454,0.0696481,0.0661034,0.450685,0.547674,0.210985,0.900119,0.170237,0.694916,0.54563,0.13216,0.260584,|0.496791,0.969737,0.706681,0.966062,0.614225,0.406845,0.878439,0.941253,0.32321,0.849989,0.276282,0.56548,0.627935,0.112521,0.577905,0.439399,0.236596,0.327769,0.753296,0.913234,0.914058,0.531439,0.637739,0.890925,0.30539,0.842341,0.17658,0.992869,0.2691,0.945091,0.576507,0.332244,0.471181,0.994719,0.692619,0.334555,0.876851,0.631174,0.937017,0.055587,0.0390103,0.0327268,0.064113,0.896293,0.126897,0.153179,0.352133,0.0561227,0.262862,0.697167,0.0885551,0.907151,0.68059,0.808218,0.260088,0.283675,0.171801,0.838924,0.418364,0.980247,0.820637,0.76968,0.183254,0.10266,0.258893,0.868792,0.752698,0.89806,0.194629,0.241742,0.233784,0.840207,0.719176,0.200393,0.170548,0.724589,0.417604,0.946452,0.0552924,0.41945,0.543532,0.362446,0.0531546,0.687502,0.0438336,0.538809,0.410536,0.781565,0.883339,0.274183,0.25253,0.278139,0.866841,0.144863,0.802729,0.234213,0.451139,0.490329,0.590441,0.0774306,0.0664512,0.234774,0.428739,0.536136,0.41773,0.454558,0.0781615,0.09634,0.579458,0.102444,0.490297,0.604673,0.96718,0.92196,0.823649,0.406731,0.0668797,0.866358,0.873716,0.413205,0.400933,0.496933,0.567429,0.824975,0.235793,0.837028,0.698451,0.567458,0.762475,0.805456,0.601698,0.802756,0.36851,0.157782,0.442248,0.0124403,0.512503,0.344383,0.391585,0.724409,0.643533,0.0856206,0.185514,0.499939,0.609965,0.251551,0.64565,0.675269,0.412344,0.142788,0.569016,0.48182,0.764469,0.0753982,0.103127,0.465047,0.896568,0.612566,0.451653,0.961228,0.331779,0.156881,0.355602,0.257182,0.916684,0.120527,0.270746,0.92447,0.701484,0.305767,0.642877,0.708516,0.406531,0.903186,0.621926,0.549433,0.284264,0.0225806,0.477112,0.819791,0.113208,0.0349138,0.0243254,0.241922,0.712355,0.873769,0.569793,0.281191,0.484574,0.805737,0.713425,0.064351,0.075773,0.625207,0.0838704,0.273713,0.596982,0.205607,0.771087,0.978858,0.287649,0.838138,0.795075,0.247723,0.0965694,0.423396,0.495152,0.817241,0.0260484,0.0999532,0.107911,0.597255,0.529631,0.242699,0.552874,0.474439,0.881897,0.995631,0.858322,0.588679,0.381816,0.917467,0.577296,0.136476,0.689997,0.747966,0.18134,0.667788,0.365144,0.751131,0.83818,0.133847,0.282149,0.966127,0.209361,0.608511,0.825957,0.468638,0.709112,0.658656,0.970702,0.558791,0.771792,0.267389,0.391253,0.134364,0.675574,0.553957,0.500523,0.58267,0.702177,0.025269,0.409429,0.353611,0.00356871,0.765182,0.452875,0.643894,0.935467,0.275386,0.100446,0.40738,0.487606,0.802419,0.833717,0.249317,0.0351694,0.261458,0.502988,0.500621,0.823454,0.306992,0.479681,0.335521,0.760896,0.416913,0.673913,0.0172904,0.00176501,0.871416,0.243848,0.0859964,0.999347,0.238903,0.726852,0.774174,0.339732,0.784131,0.814138,0.970759,0.608858,0.0214084,0.893524,0.633851,0.490424,0.17892,0.384816,0.343593,0.292452,0.107173,0.152224,0.642657,0.246194,0.560373,0.0699026,0.498936,0.922926,0.0545725,0.405683,0.183041,0.381963,0.0132819,0.244293,0.076107,0.674921,0.484094,0.987761,0.837779,0.0813848,0.708795,0.71729,0.979584,0.374399,0.546811,0.539889,0.422724,0.632627,0.2599,0.939875,0.039134,0.727235,0.460844,0.192522,0.48488,0.630346,0.919857,0.578431,0.586523,0.701585,0.937954,0.484537,0.657819,0.758628,0.314303,0.572394,0.417155,0.970496,0.0189567,0.887926,0.793208,0.504302,0.0591475,0.459909,0.977942,0.133211,0.36928,0.177665,0.729549,0.714334,0.897107,0.0199983,0.425355,0.258892,0.84394,0.173098,0.0750751,0.812828,0.676048,0.801318,0.614496,0.923149,0.62347,0.493433,0.895002,0.722581,0.368799,0.26113,0.263549,0.270945,0.33637,0.495397,0.732259,0.219934,0.239647,0.111605,0.636068,0.714296,0.49895,0.438603,0.522891,0.242444,0.979742,0.731173,0.929373,0.0845506,0.922762,0.452129,0.685655,0.435248,0.610597,0.218335,0.834452,0.333855,0.862946,0.22286,0.380093,0.419432,0.699986,0.936807,0.212584,0.864801,0.454209,0.725903,0.00435406,0.393207,0.301729,0.590147,0.348052,0.479703,0.346031,0.994808,0.525002,0.0176255,0.727754,0.76746,0.00213337,0.769009,0.441824,0.64801,0.983503,0.649252,0.907831,0.0790522,0.81496,0.117885,0.798392,0.390113,0.349122,0.0374722,0.835494,0.599352,0.216719,0.785611,0.544812,0.308215,0.978115,0.348086,0.448832,0.104068,0.862601,0.0751228,0.974853,0.790517,0.894504,0.398787,0.442051,0.214511,0.654506,0.76027,0.512333,0.614776,0.596667,0.425838,0.171534,0.981651,0.727471,0.491229,0.610079,0.01796,0.271937,0.0641617,0.239007,0.720937,0.988339,0.262709,0.590166,0.658902,0.0037365,0.932776,0.570343,0.478219,0.0364997,0.356348,0.119722,0.812538,0.0650827,0.023359,0.600934,0.124454,0.787147,0.309723,0.203117,0.173317,0.00355685,0.0773211,0.780708,0.534213,0.971046,0.594978,0.629014,0.133089,0.20115,0.043277,0.256335,0.240889,0.78319,0.880686,0.960316,0.602093,0.503049,0.234472,0.274895,0.424904,0.947984,0.182502,0.809665,0.258003,0.39275,0.0247431,0.202836,0.0180138,0.900134,0.277033,0.696749,0.639029,0.410987,0.844335,0.531267,0.6638,0.69828,0.842702,0.886534,0.908455,0.820574,0.701656,0.753042,0.279987,0.59336,0.560829,0.886556,0.567959,0.662625,0.401319,0.199373,0.152447,0.830634,0.249871,0.303351,0.313489,0.796542,0.693372,0.252668,0.12598,0.537626,0.697464,0.121783,0.97008,0.239835,0.0217883,0.80041,0.954147,0.0689682,0.827338,0.46652,0.557879,0.873807,0.861539,0.81755,0.0819592,0.330737,0.00753969,0.60131,0.853371,0.330524,0.604491,0.615548,0.520175,0.0133779,0.377449,0.778206,0.443347,0.321259,0.00475621,0.487223,0.937062,0.23936,0.244054,0.290497,0.848589,0.855019,0.726279,0.468721,0.156658,0.283195,0.00155389,0.0523369,0.928174,0.90212,0.407605,0.174051,0.0678682,0.07231,0.546766,0.165827,0.73296,0.966218,0.247828,0.351085,0.709716,0.148678,0.985365,0.927087,0.181963,0.221738,0.335834,0.684657,0.589021,0.521727,0.515446,0.688675,0.124501,0.455727,0.838521,0.823694,0.970176,0.646366,0.982142,0.197987,0.194504,0.574756,0.218708,0.638926,0.195748,0.623935,0.736309,0.136055,0.24794,0.299985,0.885694,0.581623,0.918946,0.127696,0.101226,0.836736,0.289567,0.691004,0.790341,0.163075,0.0455273,0.923156,0.143133,0.23364,0.184696,0.575395,0.335882,0.784485,0.695282,0.946034,0.687975,0.996253,0.386323,0.828355,0.35452,0.710691,0.176413,0.530321,0.627224,0.941549,0.785073,0.259702,0.503697,0.772602,0.904539,0.280466,0.384336,0.0637584,0.772308,0.787369,0.488341,0.210041,0.682564,0.472193,0.139045,0.0209094,0.387071,0.653145,0.831217,0.0431349,0.396519,0.294793,0.759147,0.39322,0.287103,0.799691,0.117852,0.798315,0.404607,0.214158,0.630549,0.495516,0.405724,0.509772,0.520925,0.385253,0.0355472,0.311112,0.837936,0.769271,0.819102,0.304196,0.50542,0.829083,0.676379,0.0154222,0.784944,0.0527476,0.747211,0.00201023,0.0517751,0.255641,0.572596,0.942859,0.0324931,0.847122,0.152233,0.88008,0.926134,0.895024,0.291574,0.076031,0.110638,0.122158,0.513811,0.825656,0.495218,0.586099,0.568402,0.967975,0.773647,0.711672,0.262857,0.668345,0.928586,0.621894,0.880933,0.143178,0.327587,0.811423,0.891124,0.69514,0.531495,0.982125,0.390983,0.472779,0.519367,0.471278,0.0499876,0.0744454,0.473139,0.777209,0.909427,0.0720578,0.357035,0.112495,0.112657,0.622901,0.187987,0.295612,0.813552,0.501666,0.147497,0.337695,0.87514,0.312365,0.0550394,0.507179,0.280682,0.772856,0.897422,0.337546,0.899711,0.792306,0.854824,0.602249,0.470892,0.165776,0.0356861,0.00734872,0.622257,0.553948,0.121025,0.400842,0.607336,0.320605,0.67843,0.759768,0.792635,0.985164,0.313367,0.437213,0.468832,0.857812,0.245888,0.849866,0.990567,0.445348,0.995834,0.700794,0.817096,0.321978,0.548379,0.793184,0.1462,0.923309,0.70939,0.963308,0.852345,0.123662,0.735886,0.610787,0.197211,0.426502,0.0696728,0.342988,0.782235,0.600756,0.745727,0.36521,0.110616,0.166426,0.538786,0.754048,0.572526,0.204554,0.844281,0.0464787,0.387641,0.328709,0.390514,0.462716,0.797631,0.716089,0.670586,0.446576,0.661913,0.196978,0.829551,0.51534,0.39181,0.347184,0.0136296,0.262715,0.96244,0.852386,0.0830826,0.560007,0.527453,0.889386,0.591383,0.540186,0.519646,0.760343,0.468581,0.884068,0.0435565,0.480094,0.425535,0.19131,0.809253,0.847945,0.149592,0.049211,0.791262,0.0573632,0.559327,0.123624,0.230157,0.607369,0.697103,0.964721,0.883846,0.989483,0.516335,0.392892,0.92422,0.60538,0.172644,0.311204,0.202408,0.505705,0.389001,0.799704,0.421216,0.613579,0.0436642,0.286719,0.442767,0.787565,0.843472,0.629353,0.863128,0.450276,0.714904,0.199536,0.410693,0.351303,0.175544,0.188612,0.321798,0.437805,0.778034,0.0978234,0.684537,0.341577,0.426618,0.247141,0.951448,0.25235,0.305772,0.125195,0.577772,0.316075,0.181873,0.21437,0.759189,0.0234435,0.112327,0.171866,0.231016,0.557972,0.919904,0.152988,0.162935,0.787311,0.744768,0.0572789,0.252673,0.930007,0.702628,0.389038,0.316512,0.131441,0.517855,0.323955,0.61801,0.297924,0.00060451,0.498915,0.0617639,0.964772,0.142805,0.17721,0.916732,0.345297,0.204892,0.283207,0.954161,0.480542,0.911695,0.17993,0.833552,0.0128936,0.391404,0.0956687,0.583316,0.275662,0.35298,0.844651,0.432635,0.337239,0.580898,0.149783,0.691951,0.712448,0.44623,0.737948,0.704255,0.697714,0.99243,0.0699959,0.39814,0.191052,0.372988,0.637191,0.945862,0.48506,0.179919,0.311423,0.414672,0.429102,0.184324,0.308762,0.466888,0.659815,0.405861,0.698429,0.167699,0.30909,0.0888742,0.0137827,|0.0543162,0.779786,0.757143,0.237334,0.606903,0.540165,0.650584,0.387812,0.11103,0.443439,0.14672,0.600397,0.759725,0.713386,0.431814,0.324565,0.184835,0.179157,0.683873,0.152965,0.718791,0.381792,0.742337,0.486904,0.98425,0.702072,0.205199,0.773132,0.356945,0.704304,0.394428,0.429114,0.55649,0.279392,0.35702,0.666702,0.627277,0.12232,0.281927,0.302271,0.286324,0.291824,0.566727,0.44723,0.786803,0.47771,0.226947,0.399684,0.443437,0.729446,0.773582,0.993741,0.2606,0.0439801,0.293181,0.729685,0.0598894,0.520772,0.536119,0.920678,0.222066,0.540074,0.180851,0.588915,0.0472975,0.261011,0.879382,0.667655,0.162615,0.0617065,0.559428,0.369097,0.00432342,0.460426,0.763439,0.630267,0.826459,0.00692374,0.515074,0.195978,0.224696,0.33315,0.786341,0.350425,0.108188,0.242663,0.527243,0.326285,0.50388,0.115336,0.204208,0.871153,0.82846,0.75244,0.73181,0.630236,0.42691,0.438389,0.646239,0.383481,0.537976,0.560785,0.273583,0.143407,0.793251,0.401184,0.973136,0.44539,0.222396,0.551976,0.635746,0.126917,0.410499,0.103842,0.821009,0.270926,0.16371,0.558497,0.5375,0.245014,0.703876,0.695495,0.453035,0.421373,0.724404,0.137254,0.445558,0.944511,0.554903,0.13839,0.946762,0.876753,0.65035,0.530167,0.595931,0.412325,0.577236,0.219822,0.0803269,0.0510672,0.812163,0.163936,0.668989,0.990477,0.333992,0.61806,0.656792,0.726311,0.17964,0.681889,0.552175,0.224642,0.30973,0.958172,0.404956,0.962064,0.0689574,0.849225,0.499809,0.277653,0.743547,0.38309,0.542878,0.227446,0.272646,0.0968746,0.30112,0.0395088,0.0605013,0.222094,0.771936,0.63704,0.551982,0.235279,0.254348,0.556607,0.850586,0.74926,0.30961,0.317752,0.872995,0.351494,0.549709,0.410142,0.927037,0.640627,0.204056,0.793187,0.692053,0.454625,0.359442,0.0812961,0.810252,0.664059,0.440936,0.148152,0.880695,0.469553,0.250641,0.0448703,0.68234,0.803581,0.5312,0.258277,0.280671,0.144645,0.00143313,0.908475,0.602858,0.564864,0.317903,0.825969,0.39566,0.0319144,0.537947,0.107739,0.427601,0.413035,0.0228013,0.592783,0.777327,0.114214,0.684712,0.679257,0.0339695,0.252074,0.769533,0.084071,0.489399,0.0596317,0.817229,0.627262,0.355304,0.860807,0.0267965,0.71539,0.495339,0.51708,0.953313,0.613407,0.579364,0.0035888,0.397562,0.496306,0.0820544,0.237975,0.325924,0.106377,0.205499,0.315175,0.756028,0.708468,0.862659,0.866595,0.673333,0.608778,0.782555,0.689211,0.118249,0.67658,0.199425,0.00128418,0.874625,0.194967,0.557086,0.566606,0.92158,0.842047,0.106284,0.405514,0.0111446,0.766498,0.219288,0.900941,0.0121097,0.418408,0.515874,0.719134,0.239821,0.559552,0.130705,0.0405118,0.165085,0.995672,0.0665375,0.921811,0.810648,0.430854,0.580655,0.411463,0.759615,0.257189,0.347463,0.112679,0.00668144,0.739507,0.775954,0.615888,0.562482,0.344186,0.0227059,0.728681,0.577059,0.351486,0.487723,0.350898,0.0032599,0.970873,0.595983,0.809918,0.394491,0.61523,0.916321,0.983234,0.573828,0.100068,0.161822,0.380322,0.894791,0.798599,0.439563,0.85521,0.873248,0.341086,0.938964,0.29107,0.716185,0.138566,0.960388,0.596299,0.640463,0.555133,0.444353,0.796511,0.126753,0.42462,0.90986,0.360035,0.0176064,0.347994,0.478786,0.110568,0.611603,0.560855,0.708616,0.0514315,0.516268,0.740772,0.478212,0.173954,0.433153,0.374881,0.0676707,0.821023,0.873542,0.63113,0.519579,0.167158,0.0216396,0.78496,0.476429,0.321402,0.256518,0.772252,0.365639,0.708177,0.0288533,0.103139,0.717116,0.452983,0.451587,0.702729,0.734538,0.833576,0.481794,0.186961,0.877616,0.319186,0.34718,0.233101,0.605269,0.305322,0.905973,0.663232,0.373037,0.470522,0.47409,0.88183,0.845527,0.404407,0.269769,0.639913,0.0568389,0.684443,0.869297,0.849443,0.159243,0.093805,0.343377,0.433962,0.0957794,0.495397,0.556571,0.895778,0.00205117,0.0783288,0.881798,0.481888,0.256753,0.684033,0.259709,0.36312,0.899363,0.0931865,0.486876,0.0349031,0.748202,0.666053,0.209876,0.661322,0.386641,0.733857,0.412986,0.280976,0.962552,0.4834,0.136243,0.525901,0.907678,0.887546,0.0517196,0.863322,0.907716,0.689686,0.0892318,0.712026,0.185361,0.13098,0.538924,0.524066,0.87793,0.915664,0.46229,0.170944,0.0159925,0.892697,0.257872,0.187765,0.369693,0.115147,0.807081,0.966763,0.444075,0.578986,0.60923,0.63737,0.331393,0.0325844,0.109601,0.705408,0.923741,0.292503,0.331268,0.329696,0.561202,0.483664,3.62992e-05,0.0951652,0.0221519,0.0506674,0.763113,0.257687,0.359861,0.332706,0.442156,0.441544,0.160926,0.447571,0.021633,0.524391,0.286867,0.329763,0.420309,0.440858,0.0635329,0.800028,0.509822,0.752469,0.869828,0.797144,0.789728,0.293294,0.434412,0.452746,0.948953,0.320729,0.719797,0.329643,0.283031,0.668308,0.655661,0.54627,0.106623,0.990883,0.598409,0.404989,0.322699,0.114004,0.815267,0.696881,0.993952,0.701649,0.425173,0.0181925,0.400265,0.339353,0.817684,0.413987,0.578482,0.817894,0.631527,0.348951,0.45504,0.537857,0.395416,0.507666,0.390637,0.582197,0.263987,0.861424,0.183029,0.735843,0.848483,0.6095,0.168925,0.121348,0.938777,0.566222,0.727613,0.660219,0.966559,0.0840173,0.761984,0.234555,0.361816,0.134107,0.668061,0.549512,0.480891,0.0189241,0.761631,0.245979,0.944568,0.00264925,0.507809,0.66652,0.423367,0.156639,0.416862,0.312867,0.264998,0.0159388,0.995827,0.519437,0.628736,0.669713,0.805368,0.151208,0.277677,0.122977,0.942232,0.124299,0.906892,0.86483,0.616049,0.128951,0.221488,0.210675,0.876838,0.870312,0.235282,0.321983,0.462827,0.0595695,0.684379,0.0636425,0.357757,0.840252,0.181629,0.851147,0.210726,0.476888,0.280697,0.626063,0.61971,0.490855,0.762359,0.360813,0.429442,0.682772,0.0108548,0.596595,0.0188077,0.550107,0.509159,0.585128,0.829575,0.479967,0.0962006,0.118622,0.220091,0.0682337,0.964211,0.858975,0.852164,0.846468,0.583659,0.131128,0.902586,0.154774,0.102542,0.13067,0.264093,0.0867988,0.629742,0.904993,0.210486,0.307639,0.564547,0.631782,0.798796,0.076795,0.405244,0.89516,0.964043,0.859545,0.214064,0.34729,0.0570138,0.744507,0.114769,0.517651,0.96497,0.740686,0.588734,0.885328,0.44296,0.851194,0.283293,0.507581,0.0112619,0.317816,0.243334,0.209643,0.604746,0.366842,0.996146,0.343732,0.215839,0.480258,0.619642,0.694451,0.210409,0.947116,0.55242,0.216302,0.820989,0.740434,0.0171718,0.777941,0.931796,0.136722,0.436329,0.259237,0.127436,0.901692,0.66236,0.746141,0.937043,0.453754,0.966372,0.0570937,0.986936,0.945464,0.877305,0.205219,0.879971,0.736241,0.224805,0.343363,0.131982,0.334684,0.0456961,0.754943,0.835834,0.312139,0.0453848,0.557985,0.876634,0.734312,0.384697,0.408541,0.320594,0.656594,0.756374,0.889039,0.559946,0.650369,0.142622,0.716414,0.0660513,0.710833,0.120525,0.800542,0.945557,0.174952,0.0641994,0.310858,0.519663,0.89243,0.0391114,0.523547,0.815318,0.247958,0.168144,0.622177,0.52532,0.302647,0.333004,0.744759,0.28036,0.0558613,0.174436,0.757148,0.42919,0.989905,0.922666,0.749771,0.704108,0.526767,0.197932,0.55698,0.108017,0.104095,0.949512,0.344867,0.660105,0.315119,0.0497346,0.137104,0.018653,0.816587,0.760067,0.343198,0.690436,0.995304,0.346677,0.872015,0.851046,0.623456,0.537155,0.307941,0.861441,0.0769978,0.817569,0.322534,0.962186,0.0229535,0.62347,0.282712,0.212722,0.972182,0.364931,0.395661,0.995434,0.613238,0.321287,0.682235,0.258265,0.611255,0.750568,0.820163,0.538853,0.184317,0.231986,0.304291,0.895769,0.821902,0.719208,0.396379,0.674186,0.566045,0.162223,0.720902,0.121375,0.656344,0.779494,0.859354,0.833281,0.129925,0.381817,0.686738,0.632254,0.551347,0.424817,0.168055,0.889839,0.254827,0.997053,0.459728,0.544625,0.722732,0.293035,0.579616,0.615518,0.294397,0.653166,0.303777,0.635168,0.841671,0.630404,0.856953,0.769811,0.290873,0.220817,0.433562,0.0990121,0.740931,0.435212,0.726795,0.00275779,0.766557,0.501643,0.590453,0.590002,0.768216,0.116023,0.960501,0.07046,0.600137,0.776991,0.235137,0.989073,0.401227,0.453082,0.18417,0.129987,0.991911,0.994333,0.234133,0.62957,0.147531,0.495856,0.950902,0.0798798,0.486991,0.0818375,0.189639,0.908182,0.606839,0.22235,0.715878,0.597803,0.163676,0.0445037,0.812706,0.631802,0.0394843,0.19139,0.454695,0.92519,0.159653,0.0442541,0.67486,0.240508,0.19605,0.5673,0.169533,0.524361,0.806809,0.737787,0.0290624,0.799253,0.156585,0.75188,0.119084,0.39051,0.98209,0.537391,0.923678,0.137399,0.179599,0.279055,0.463713,0.727337,0.483241,0.371587,0.678501,0.0172095,0.758119,0.760749,0.909823,0.151896,0.482373,0.363554,0.867806,0.0552163,0.533363,0.596871,0.957264,0.186761,0.28238,0.896015,0.548729,0.425989,0.0358205,0.50209,0.0355595,0.38575,0.530543,0.792553,0.197747,0.165644,0.312951,0.143929,0.573684,0.295835,0.21977,0.389404,0.494828,0.450242,0.604998,0.185709,0.20304,0.601807,0.338604,0.274722,0.239835,0.131665,0.78103,0.0672175,0.451114,0.742384,0.873054,0.672469,0.339101,0.48109,0.575109,0.536896,0.570671,0.941828,0.639128,0.157782,0.310829,0.809229,0.174593,0.532737,0.281417,0.641638,0.0971076,0.583605,0.139715,0.513085,0.0581182,0.74605,0.709332,0.839875,0.378787,0.191085,0.347295,0.584935,0.399781,0.70251,0.990118,0.725954,0.4144,0.879713,0.366333,0.394117,0.155948,0.419741,0.505217,0.972925,0.347384,0.742652,0.71287,0.863213,0.706202,0.932854,0.578791,0.118027,0.761112,0.124769,0.119249,0.916256,0.512751,0.0861885,0.670188,0.247254,0.61508,|0.40609,0.236512,0.832445,0.663153,0.667349,0.208305,0.428855,0.382833,0.0806155,0.94145,0.283677,0.0282591,0.58574,0.478973,0.0946443,0.444051,0.494606,0.67962,0.222081,0.637272,0.573266,0.0395148,0.0231348,0.559536,0.383395,0.585093,0.993902,0.688197,0.335051,0.357879,0.635257,0.413737,0.314497,0.488015,0.278964,0.0846212,0.990503,0.0450376,0.304895,0.932089,0.0544792,0.174448,0.84774,0.283393,0.108908,0.185548,0.183803,0.0320435,0.516624,0.0342071,0.615198,0.00573879,0.0379711,0.305806,0.554422,0.77786,0.535412,0.592608,0.0101696,0.317401,0.613403,0.268403,0.311912,0.709099,0.530184,0.41514,0.178046,0.56736,0.0839004,0.886595,0.301003,0.821266,0.272306,0.088348,0.110236,0.0296613,0.957484,0.0526512,0.827938,0.325199,0.666068,0.967842,0.965194,0.595689,0.17142,0.74087,0.404491,0.405547,0.0405052,0.043551,0.742302,0.775116,0.624477,0.111306,0.504437,0.535777,0.366839,0.542709,0.684459,0.382205,0.70448,0.172517,0.105774,0.483584,0.11054,0.828363,0.399697,0.971517,0.709086,0.0804929,0.72325,0.913872,0.111712,0.756933,0.842588,0.903598,0.683559,0.0154068,0.178134,0.415397,0.850229,0.861379,0.867076,0.861838,0.0522777,0.479879,0.785724,0.29876,0.15522,0.119433,0.184511,0.396675,0.628681,0.11894,0.740809,0.0238392,0.185027,0.411825,0.0915741,0.850735,0.504342,0.294975,0.961583,0.834237,0.386502,0.0866604,0.942589,0.51827,0.731768,0.214537,0.299169,0.275901,0.120323,0.0384441,0.0333374,0.250503,0.496739,0.847133,0.664837,0.816736,0.817525,0.219743,0.524488,0.438333,0.798696,0.696676,0.630615,0.572173,0.41831,0.575722,0.044341,0.183973,0.724807,0.573212,0.68268,0.0297992,0.460728,0.648432,0.47969,0.320443,0.0236307,0.942146,0.791502,0.257315,0.92319,0.146325,0.60075,0.0242791,0.624235,0.894595,0.512597,0.669482,0.91721,0.897225,0.544184,0.162711,0.188497,0.424735,0.430638,0.169832,0.627908,0.675012,0.277148,0.395534,0.302913,0.466724,0.555519,0.592897,0.338294,0.351907,0.192786,0.735786,0.27908,0.195304,0.506153,0.129399,0.318636,0.939625,0.150399,0.47243,0.401631,0.937441,0.0663522,0.228827,0.224028,0.794331,0.482148,0.088701,0.989753,0.174137,0.715704,0.530636,0.829051,0.456423,0.131275,0.130246,0.462794,0.159054,0.782229,0.854584,0.567256,0.108971,0.899774,0.677258,0.0832402,0.836681,0.0932545,0.487533,0.844603,0.724453,0.970045,0.462205,0.860487,0.914101,0.744355,0.458,0.831386,0.054498,0.785532,0.336325,0.567981,0.363066,0.13037,0.776839,0.220008,0.458848,0.399808,0.842634,0.650212,0.626574,0.247366,0.423437,0.154245,0.427505,0.903747,0.0975646,0.489431,0.206387,0.520473,0.260792,0.4707,0.594429,0.685187,0.458986,0.117678,0.226563,0.337817,0.83987,0.98175,0.893306,0.400422,0.922061,0.939271,0.841339,0.878474,0.760515,0.138708,0.529248,0.0162472,0.0769765,0.991145,0.127092,0.724751,0.0626093,0.838198,0.739879,0.113273,0.599358,0.686272,0.350264,0.453922,0.429847,0.66375,0.0475647,0.593349,0.187715,0.918017,0.769256,0.176047,0.88189,0.0150459,0.453659,0.522565,0.0451832,0.876847,0.9548,0.215142,0.101522,0.22598,0.863936,0.446635,0.335254,0.806086,0.995591,0.400888,0.707908,0.368894,0.719573,0.854304,0.176817,0.362056,0.249804,0.76559,0.0943452,0.548329,0.702498,0.107025,0.326574,0.544776,0.729271,0.918464,0.450199,0.249769,0.13741,0.487001,0.140591,0.141353,0.832102,0.343664,0.362368,0.853032,0.0315659,0.554678,0.560731,0.407571,0.480331,0.413247,0.401158,0.838052,0.54416,0.228347,0.722106,0.0360428,0.487021,0.123593,0.583531,0.867795,0.538448,0.401945,0.171379,0.504177,0.073667,0.727217,0.287794,0.805073,0.408277,0.662561,0.57443,0.93109,0.248343,0.25669,0.261585,0.889928,0.0131689,0.429629,0.0278844,0.797763,0.350196,0.22259,0.814902,0.379054,0.0469776,0.798924,0.386416,0.368575,0.255462,0.597217,0.155641,0.906446,0.538827,0.105345,0.349878,0.966026,0.169334,0.865873,0.266515,0.237645,0.972754,0.915668,0.233773,0.426087,0.780346,0.804219,0.81415,0.508746,0.387807,0.922917,0.599471,0.323556,0.702535,0.0361238,0.49686,0.953242,0.271475,0.719137,0.142641,0.675087,0.803256,0.488445,0.0809579,0.695911,0.0588461,0.607821,0.863082,0.59372,0.165394,0.723345,0.0947645,0.592625,0.73309,0.539298,0.507777,0.00953257,0.227376,0.443577,0.0200106,0.0444255,0.774503,0.502444,0.895431,0.45684,0.684992,0.173872,0.252663,0.998379,0.0905693,0.488361,0.744921,0.598314,0.353611,0.305983,0.992818,0.675437,0.144964,0.368024,0.197402,0.0333381,0.68785,0.810641,0.528505,0.776691,0.235284,0.855074,0.630192,0.259837,0.88008,0.866667,0.649373,0.0227859,0.888964,0.0756957,0.29137,0.632016,0.94525,0.612293,0.266719,0.595065,0.190878,0.855631,0.391164,0.671549,0.883055,0.54951,0.158313,0.250334,0.782722,0.639488,0.666742,0.757611,0.798857,0.30639,0.0473526,0.35019,0.758089,0.922216,0.0389584,0.541255,0.332382,0.0727257,0.0126027,0.72578,0.552515,0.0983407,0.266923,0.203253,0.0699153,0.423904,0.199007,0.902798,0.852883,0.763899,0.649095,0.584173,0.509881,0.477906,0.47368,0.391742,0.143624,0.325339,0.246624,0.0123314,0.562486,0.159547,0.587027,0.643739,0.775514,0.220668,0.501345,0.267382,0.361975,0.47661,0.94771,0.166503,0.245532,0.0497131,0.96955,0.905546,0.612023,0.830171,0.157251,0.464147,0.677869,0.141452,0.987964,0.924759,0.98692,0.771175,0.13268,0.480543,0.241068,0.856926,0.0304047,0.92816,0.322579,0.312648,0.448032,0.29265,0.0242715,0.742399,0.518351,0.63313,0.437962,0.0364436,0.837515,0.547879,0.748765,0.588307,0.146944,0.3134,0.249621,0.847247,0.909187,0.865967,0.752181,0.796321,0.195506,0.388883,0.320409,0.999704,0.284046,0.158784,0.418867,0.963955,0.642003,0.207605,0.299048,0.0845867,0.0853083,0.626306,0.340806,0.771177,0.863061,0.00572133,0.37008,0.162661,0.923853,0.191737,0.155249,0.267079,0.829762,0.230186,0.70009,0.953315,0.0493498,0.709369,0.053506,0.578089,0.411323,0.521201,0.932241,0.617978,0.317187,0.486254,0.887428,0.706725,0.778746,0.431455,0.322349,0.37037,0.964719,0.924762,0.981769,0.875113,0.288936,0.207543,0.221923,0.0537033,0.830765,0.608784,0.594039,0.0913044,0.843262,0.24973,0.424386,0.855347,0.754618,0.35985,0.475956,0.764196,0.595364,0.342841,0.610406,0.150931,0.336819,0.653516,0.256801,0.308745,0.580103,0.682612,0.20565,0.645708,0.0839816,0.939814,0.695916,0.143692,0.439935,0.144728,0.255257,0.99112,0.115407,0.676275,0.199987,0.217105,0.628134,0.908412,0.13261,0.688574,0.905474,0.580611,0.944337,0.250143,0.130293,0.540295,0.906321,0.487388,0.550996,0.85675,0.0321274,0.656856,0.938486,0.43503,0.658685,0.721349,0.650441,0.711389,0.117393,0.0572412,0.181493,0.747977,0.480186,0.272297,0.714391,0.713929,0.895413,0.212266,0.51972,0.736968,0.208933,0.968385,0.793069,0.425485,0.631633,0.315032,0.584189,0.466062,0.470206,0.0611376,0.044949,0.897596,0.898712,0.964166,0.753206,0.678914,0.0320521,0.0268387,0.661822,0.396192,0.782961,0.605463,0.114465,0.418586,0.207245,0.119051,0.743052,0.373553,0.369866,0.883379,0.744229,0.13318,0.424202,0.40827,0.366304,0.483789,0.529613,0.674839,0.719988,0.530479,0.613528,0.726827,0.182291,0.847355,0.702633,0.0163549,0.306619,0.978586,0.0346762,0.0930271,0.771362,0.0947326,0.255996,0.829534,0.129889,0.887744,0.556618,0.0722312,0.941229,0.670176,0.66689,0.67724,0.880729,0.859869,0.26649,0.0730247,0.0178506,0.320518,0.423613,0.254704,0.837186,0.805576,0.274005,0.277467,0.310568,0.302123,0.797386,0.37695,0.710287,0.49046,0.274481,0.42323,0.325958,0.0133225,0.118973,0.826148,0.163112,0.880622,0.674143,0.426557,0.919789,0.20144,0.846306,0.489184,0.219822,0.0592554,0.82204,0.587459,0.0476692,0.239046,0.00159484,0.718877,0.676611,0.977713,0.403431,0.633499,0.0430328,0.71685,0.821187,0.0911515,0.265627,0.8514,0.102391,0.767955,0.633458,0.281179,0.578976,0.178911,0.875334,0.398702,0.248191,0.155525,0.181643,0.202971,0.22939,0.73728,0.953053,0.869243,0.540148,0.405788,0.215207,0.707217,0.523573,0.54495,0.41584,0.70498,0.586516,0.353682,0.921484,0.944688,0.819334,0.261304,0.638398,0.497118,0.875269,0.159598,0.879188,0.778059,0.517791,0.442558,0.556707,0.815153,0.025367,0.938193,0.416494,0.400052,0.0171105,0.650985,0.325217,0.634289,0.572263,0.631279,0.807782,0.166519,0.604428,0.315509,0.387688,0.757369,0.189171,0.79216,0.757587,0.10146,0.575261,0.784081,0.551575,0.730338,0.634268,0.154744,0.160416,0.599305,0.0394626,0.0972369,0.32279,0.469585,0.928994,0.437386,0.468483,0.611608,0.000466287,0.341051,0.844821,0.899224,0.83654,0.625854,0.256421,0.92263,0.404824,0.148958,0.88334,0.945248,0.844904,0.937977,0.203784,0.665939,0.54011,0.757797,0.99674,0.326244,0.615281,0.692183,0.963721,0.148212,0.927175,0.200936,0.0787438,0.0618248,0.663921,0.276187,0.162692,0.34087,0.321177,0.771357,0.461559,0.483883,0.681501,0.715776,0.59978,0.645846,0.77649,0.629388,0.0157161,0.394377,0.339472,0.0104783,0.790662,0.176971,0.40422,0.880242,0.687132,0.393878,0.355719,0.167466,0.113019,0.925397,0.57362,0.0802774,0.581684,0.0422331,0.036774,0.164335,0.357634,0.199945,0.655224,0.90187,0.0592076,0.176087,0.811696,0.131749,0.0763257,0.729442,0.629636,0.538851,0.0498943,0.304093,0.576807,0.030165,0.12994,0.983194,0.898436,0.504091,0.778666,0.437096,0.872226,0.946087,0.555841,0.809348,0.468325,0.611708,0.166342,0.792584,0.788114,0.175172,0.409806,|0.557072,0.526727,0.4604,0.157211,0.0295092,0.787522,0.783101,0.865291,0.807054,0.794705,0.372624,0.223902,0.718083,0.288621,0.640711,0.703829,0.448016,0.741711,0.480877,0.1726,0.402512,0.785495,0.342924,0.923254,0.602192,0.536391,0.94271,0.370802,0.774819,0.0539306,0.481861,0.257115,0.31979,0.973154,0.874954,0.420512,0.231136,0.962919,0.995579,0.186305,0.922523,0.298806,0.860552,0.537386,0.925113,0.0511908,0.283019,0.203969,0.582315,0.967911,0.834086,0.533984,0.91463,0.285728,0.988269,0.507567,0.499607,0.121054,0.906243,0.914696,0.716554,0.820985,0.69585,0.0887969,0.364525,0.792967,0.550018,0.680312,0.651581,0.718232,0.96885,0.193871,0.80708,0.925084,0.0801712,0.58425,0.417284,0.870247,0.485985,0.171187,0.651385,0.414207,0.072758,0.386878,0.963206,0.429802,0.133299,0.21043,0.232243,0.259265,0.773327,0.495386,0.264474,0.364901,0.878616,0.27288,0.242695,0.0768941,0.720111,0.260905,0.457328,0.346478,0.77265,0.657518,0.560838,0.502406,0.540159,0.335058,0.325985,0.447096,0.757381,0.365937,0.597655,0.725077,0.801891,0.596283,0.221169,0.318244,0.0748402,0.0324684,0.866793,0.081774,0.51029,0.638132,0.108497,0.66743,0.569084,0.770456,0.322428,0.300006,0.555333,0.746245,0.948829,0.357738,0.381858,0.755771,0.990203,0.991077,0.978346,0.887371,0.0034824,0.953308,0.787105,0.21243,0.816776,0.916453,0.686005,0.0764222,0.434484,0.316843,0.111577,0.842194,0.808446,0.191158,0.549824,0.233283,0.38058,0.898762,0.812638,0.303575,0.758415,0.901602,0.385318,0.550387,0.960909,0.083664,0.451475,0.684008,0.740157,0.938087,0.875712,0.447708,0.614906,0.28912,0.610555,0.138455,0.417613,0.791218,0.632305,0.389158,0.175768,0.197977,0.961894,0.0486177,0.567087,0.663641,0.656274,0.847301,0.900808,0.968973,0.953243,0.673613,0.94566,0.0359679,0.234281,0.0877274,0.504565,0.30821,0.129095,0.560847,0.923626,0.106246,0.583684,0.22885,0.736434,0.834002,0.326999,0.391871,0.861016,0.427799,0.613804,0.305384,0.087947,0.448569,0.981526,0.932548,0.141651,0.964781,0.721255,0.657809,0.67319,0.514447,0.64537,0.937635,0.101501,0.628688,0.488526,0.715659,0.695554,0.493467,0.787379,0.532524,0.611906,0.22952,0.574419,0.818225,0.103394,0.303548,0.8432,0.286044,0.786685,0.950527,0.507109,0.0514959,0.695067,0.917558,0.654719,0.179527,0.0773548,0.956642,0.632876,0.428185,0.330236,0.842339,0.352529,0.779615,0.866275,0.305093,0.634932,0.240592,0.0794572,0.175161,0.587003,0.637732,0.151732,0.868878,0.156249,0.187617,0.877399,0.483175,0.528408,0.604108,0.665002,0.69225,0.541941,0.892385,0.486677,0.553907,0.300922,0.853981,0.776009,0.651164,0.29525,0.963983,0.124735,0.718791,0.519929,0.842225,0.240458,0.0898187,0.537635,0.981105,0.839756,0.119694,0.209103,0.278309,0.226183,0.373337,0.673545,0.711132,0.0592177,0.918639,0.987883,0.0192472,0.250754,0.926225,0.269682,0.952704,0.681499,0.846357,0.95084,0.439008,0.590409,0.986839,0.398742,0.825686,0.369996,0.279916,0.546172,0.756252,0.128941,0.870113,0.504679,0.757282,0.0996473,0.873154,0.21663,0.0188253,0.763342,0.510316,0.113596,0.847876,0.695115,0.87378,0.0453362,0.776915,0.582943,0.439734,0.449608,0.198078,0.827931,0.198932,0.705206,0.311184,0.356857,0.365335,0.708007,0.509167,0.353004,0.90906,0.0612425,0.98002,0.708621,0.634098,0.360242,0.385583,0.253698,0.0641478,0.330231,0.42682,0.546513,0.261258,0.979837,0.520156,0.00146085,0.892718,0.663265,0.611662,0.704575,0.390685,0.661564,0.667056,0.878694,0.967455,0.562851,0.802262,0.995645,0.00155449,0.00519764,0.237736,0.892003,0.385373,0.0815001,0.465191,0.833571,0.496113,0.606247,0.240551,0.510398,0.776854,0.8093,0.49545,0.186453,0.396804,0.533763,0.939063,0.178623,0.847131,0.70577,0.632441,0.537309,0.799698,0.247924,0.0141735,0.102818,0.330025,0.428593,0.751395,0.823445,0.185497,0.519459,0.0843974,0.348628,0.404222,0.725245,0.959677,0.966239,0.68401,0.22857,0.896955,0.56749,0.330281,0.325661,0.209502,0.309486,0.661184,0.00617576,0.220521,0.113509,0.198042,0.698951,0.330101,0.463107,0.0451968,0.772809,0.806143,0.949301,0.731445,0.600998,0.956941,0.0819809,0.977478,0.0358449,0.735694,0.955782,0.586024,0.218029,0.998264,0.370757,0.679952,0.772707,0.997374,0.882978,0.138203,0.954245,0.431381,0.711142,0.823638,0.564351,0.951735,0.675132,0.313716,0.920513,0.429053,0.370411,0.594054,0.211332,0.196352,0.776228,0.427359,0.997421,0.183214,0.745906,0.152341,0.645887,0.403902,0.35579,0.150519,0.661272,0.561873,0.628758,0.566844,0.240747,0.537065,0.549356,0.822916,0.532785,0.965487,0.128958,0.548908,0.187361,0.273681,0.739395,0.287434,0.843784,0.0726118,0.068735,0.8191,0.916386,0.234215,0.217163,0.958227,0.721029,0.26184,0.26068,0.852621,0.0753858,0.412769,0.165997,0.814162,0.537345,0.477722,0.458185,0.513604,0.0696031,0.291612,0.137191,0.604908,0.788975,0.64041,0.688809,0.423711,0.152606,0.337424,0.260368,0.602656,0.614155,0.846957,0.884093,0.64963,0.821778,0.797652,0.0376205,0.160495,0.307239,0.248473,0.329105,0.279361,0.573605,0.644766,0.0459947,0.457995,0.124002,0.536318,0.166344,0.835058,0.598414,0.820951,0.305431,0.769264,0.765169,0.143319,0.9265,0.166793,0.95501,0.854759,0.270894,0.117008,0.68807,0.0589023,0.769654,0.619366,0.447645,0.951456,0.755913,0.262465,0.433769,0.569738,0.0350599,0.878559,0.788378,0.819591,0.518819,0.216172,0.234206,0.944338,0.253611,0.664853,0.316831,0.786662,0.108195,0.370728,0.320332,0.87829,0.0326141,0.501048,0.388583,0.14427,0.352843,0.810799,0.536043,0.76566,0.742054,0.38695,0.496936,0.599577,0.636597,0.49229,0.962105,0.552854,0.651651,0.959611,0.0445966,0.79248,0.253058,0.697338,0.115894,0.648537,0.0940878,0.327124,0.839567,0.891029,0.624991,0.998381,0.997277,0.987845,0.466031,0.174522,0.675842,0.572545,0.169731,0.51686,0.386971,0.0466248,0.308379,0.303769,0.872122,0.897758,0.183869,0.161496,0.201561,0.0209156,0.764455,0.668687,0.540716,0.245055,0.815364,0.348419,0.880415,0.380908,0.199149,0.345206,0.497073,0.591548,0.544592,0.328233,0.184648,0.930049,0.732147,0.176019,0.538332,0.0317371,0.519052,0.344397,0.981346,0.263898,0.617904,0.208914,0.579509,0.408801,0.344638,0.817852,0.191017,0.949136,0.787637,0.0600494,0.538688,0.222099,0.890877,0.710487,0.23578,0.721277,0.952519,0.482103,0.809911,0.479313,0.707917,0.162743,0.356605,0.476735,0.165772,0.34614,0.359509,0.139623,0.0163025,0.347405,0.497892,0.637745,0.568099,0.385,0.137193,0.70097,0.691634,0.247528,0.520382,0.101719,0.04687,0.414402,0.189627,0.510683,0.935306,0.586186,0.51701,0.839693,0.100101,0.500644,0.0387049,0.426412,0.283002,0.05626,0.367063,0.602529,0.0540461,0.976178,0.000482261,0.44643,0.864764,0.289142,0.66941,0.685142,0.420409,0.576828,0.803045,0.629622,0.933697,0.526271,0.0821754,0.934568,0.489733,0.679102,0.668521,0.150358,0.488434,0.608364,0.955652,0.837375,0.0681009,0.608126,0.536473,0.865352,0.146196,0.933676,0.457836,0.00702167,0.503878,0.990004,0.308994,0.381238,0.681722,0.368956,0.947856,0.414412,0.648658,0.433012,0.343931,0.455373,0.0738078,0.611784,0.425129,0.346362,0.247406,0.0185498,0.622858,0.281718,0.364335,0.362945,0.272352,0.824228,0.699027,0.972239,0.479449,0.0475686,0.280261,0.144547,0.248817,0.944215,0.158958,0.939988,0.925055,0.0716699,0.804125,0.866779,0.497108,0.153145,0.0698234,0.317848,0.39272,0.934542,0.595889,0.357202,0.042729,0.817117,0.063871,0.0881087,0.531812,0.872607,0.0802739,0.404209,0.664107,0.548653,0.204107,0.746794,0.794264,0.819522,0.26662,0.426135,0.603035,0.747153,0.73705,0.458585,0.348472,0.187729,0.796049,0.705609,0.711554,0.296232,0.533564,0.184657,0.440921,0.181442,0.100133,0.510885,0.373312,0.60565,0.113302,0.72917,0.394988,0.191398,0.019004,0.11008,0.652218,0.515474,0.310021,0.955883,0.134185,0.337628,0.612673,0.149473,0.289512,0.492158,0.583139,0.999816,0.44055,0.778008,0.100209,0.359793,0.202689,0.899547,0.83471,0.0191169,0.58352,0.199199,0.279276,0.514374,0.871762,0.0175543,0.00399858,0.798052,0.299304,0.147208,0.731958,0.0738693,0.474448,0.548971,0.954017,0.361341,0.342163,0.372921,0.992947,0.0225686,0.861967,0.934817,0.0890145,0.298125,0.374236,0.116141,0.735348,0.401779,0.632266,0.828236,0.775135,0.474251,0.556541,0.890686,0.889263,0.303372,0.4871,0.206502,0.1604,0.510278,0.600664,0.208706,0.416843,0.590772,0.635286,0.855418,0.496229,0.55274,0.0469941,0.121285,0.64921,0.0460635,0.551735,0.938196,0.790861,0.0198283,0.0364666,0.0570601,0.00958824,0.559844,0.578978,0.654077,0.701107,0.0976681,0.436504,0.672259,0.873842,0.601554,0.882635,0.777115,0.832465,0.833424,0.965282,0.427603,0.492503,0.545708,0.845875,0.00126004,0.222299,0.0120689,0.0493535,0.777754,0.354174,0.110066,0.984573,0.661283,0.955419,0.790835,0.438404,0.354824,0.723484,0.642188,0.975956,0.874284,0.397781,0.302254,0.862875,0.643874,0.932685,0.963537,0.639798,0.43236,0.696173,0.43887,0.624319,0.0748676,0.065998,0.19641,0.807935,0.306124,0.790729,0.588887,0.595319,0.580984,0.354423,0.460336,0.00713795,0.57928,0.38994,0.690784,0.971819,0.915947,0.359143,0.790482,0.0582029,0.936651,0.319284,0.303163,0.198485,0.131835,0.534237,0.114967,0.9098,0.842102,0.183253,0.391447,0.367822,0.678761,0.99616,0.19226,0.930985,0.471942,0.204028,0.286878,0.0418932,0.640908,0.35587,0.108652,0.206461,0.395813,|0.674277,0.0236213,0.726161,0.768218,0.226086,0.0200022,0.142337,0.187276,0.882057,0.328946,0.345265,0.940628,0.770511,0.39834,0.892395,0.553532,0.452021,0.165308,0.126341,0.662463,0.153204,0.652555,0.108982,0.770849,0.335358,0.802742,0.564049,0.827965,0.903582,0.115345,0.529639,0.547494,0.253469,0.137948,0.672657,0.261118,0.524306,0.773492,0.393011,0.424546,0.533943,0.337737,0.648724,0.500081,0.929576,0.802885,0.428797,0.250963,0.946651,0.273998,0.532347,0.705536,0.426646,0.0908831,0.576689,0.9798,0.306626,0.761643,0.990168,0.115651,0.33389,0.83719,0.989988,0.258727,0.615602,0.128302,0.297026,0.919486,0.0700902,0.308794,0.124136,0.727761,0.64832,0.184648,0.911977,0.551526,0.975531,0.590766,0.0813206,0.361355,0.0411127,0.606441,0.47024,0.392841,0.406233,0.922263,0.377756,0.487389,0.291735,0.390415,0.0330855,0.612609,0.222776,0.175871,0.723981,0.173883,0.215087,0.740695,0.445238,0.579308,0.339544,0.240245,0.365008,0.75208,0.359199,0.962513,0.958475,0.111001,0.230885,0.601628,0.61806,0.776174,0.765739,0.413184,0.384594,0.282617,0.117016,0.723196,0.448768,0.167158,0.448367,0.162429,0.437361,0.0737578,0.1327,0.367515,0.689605,0.617725,0.899219,0.397304,0.57701,0.097399,0.351665,0.17781,0.770669,0.155168,0.559196,0.0808836,0.793707,0.313923,0.320764,0.25231,0.687588,0.164025,0.342691,0.0713986,0.792047,0.30726,0.216434,0.266432,0.764621,0.656454,0.71428,0.369101,0.92673,0.902579,0.319474,0.848046,0.84823,0.0251858,0.784684,0.801816,0.0763867,0.454799,0.980978,0.714945,0.646296,0.508128,0.30835,0.481966,0.0434361,0.284012,0.960234,0.926634,0.321929,0.29937,0.163673,0.932167,0.898928,0.830081,0.0458429,0.456757,0.574339,0.263314,0.778582,0.895106,0.92729,0.400196,0.861807,0.508688,0.653108,0.172024,0.533175,0.296886,0.155641,0.580828,0.636611,0.562277,0.923211,0.00409198,0.0139243,0.849345,0.567582,0.650103,0.695126,0.410264,0.662895,0.161193,0.558022,0.257877,0.900189,0.772264,0.336478,0.977603,0.588226,0.931261,0.803523,0.0599282,0.946254,0.732839,0.595605,0.312186,0.313598,0.911087,0.893189,0.382707,0.168315,0.191507,0.0831248,0.326406,0.311,0.332809,0.608205,0.481907,0.11318,0.299172,0.662575,0.0259543,0.186194,0.0570573,0.696619,0.903945,0.487508,0.0447055,0.102186,0.20651,0.936972,0.700172,0.338957,0.947312,0.310697,0.861326,0.746459,0.68539,0.652916,0.685226,0.176645,0.931979,0.611867,0.821612,0.791744,0.580539,0.797152,0.165381,0.790889,0.33806,0.542438,0.94908,0.153402,0.296632,0.498564,0.37575,0.918427,0.819264,0.488677,0.105754,0.776487,0.845105,0.943503,0.609599,0.0890618,0.631726,0.0117797,0.906413,0.501361,0.0850364,0.887778,0.972997,0.639941,0.0806061,0.313001,0.950658,0.714196,0.228545,0.410943,0.380871,0.797818,0.0353022,0.0612243,0.564818,0.624957,0.614457,0.596594,0.00590223,0.97839,0.972976,0.322418,0.433666,0.794214,0.813819,0.988743,0.589239,0.771846,0.524938,0.125165,0.929277,0.373388,0.892758,0.32512,0.0167332,0.414902,0.784203,0.867428,0.448714,0.642666,0.539995,0.144334,0.398831,0.362518,0.709004,0.9247,0.194178,0.975205,0.459613,0.464257,0.271304,0.622628,0.816492,0.410486,0.579767,0.908229,0.411394,0.247654,0.332653,0.580775,0.41464,0.779895,0.305781,0.0810309,0.666395,0.32406,0.659227,0.764958,0.434153,0.394479,0.819961,0.072544,0.393483,0.668298,0.193171,0.98023,0.494352,0.644848,0.18844,0.910414,0.0439492,0.873824,0.161616,0.337478,0.670557,0.448618,0.367245,0.537522,0.845684,0.582158,0.407701,0.379679,0.229306,0.0664285,0.897071,0.100987,0.484586,0.0993948,0.140502,0.145461,0.0476937,0.637856,0.16466,0.864018,0.597319,0.575361,0.832805,0.679661,0.530994,0.615153,0.987326,0.314913,0.000914693,0.0230868,0.2003,0.0454234,0.765403,0.274416,0.434487,0.362503,0.586133,0.920556,0.929305,0.59227,0.0333444,0.756925,0.0665893,0.0473068,0.91514,0.464153,0.141099,0.822176,0.774538,0.752215,0.974691,0.896141,0.543608,0.322504,0.745638,0.826313,0.199011,0.814717,0.700341,0.936742,0.248323,0.16485,0.395899,0.0714547,0.302335,0.0143074,0.601195,0.940573,0.921895,0.308323,0.861691,0.93609,0.952895,0.495162,0.856474,0.691095,0.72344,0.730912,0.0824443,0.0582675,0.309316,0.18549,0.191138,0.971,0.471831,0.67158,0.298995,0.234372,0.901342,0.104204,0.58411,0.350214,0.665708,0.703014,0.629802,0.59389,0.785386,0.795286,0.802657,0.108832,0.979014,0.0301629,0.379667,0.86738,0.523887,0.14606,0.322577,0.864505,0.680306,0.0761502,0.100609,0.461406,0.839814,0.752609,0.575032,0.598202,0.0429552,0.446378,0.863862,0.371765,0.0688742,0.120083,0.120806,0.655592,0.347586,0.483312,0.589704,0.129637,0.543882,0.627461,0.519242,0.468287,0.625796,0.247693,0.21541,0.693123,0.151415,0.911069,0.826007,0.0191222,0.297043,0.147434,0.261689,0.47063,0.164874,0.825614,0.102253,0.610382,0.0439631,0.50992,0.0230765,0.244506,0.0296752,0.0509235,0.382649,0.919191,0.801244,0.850101,0.0227903,0.197443,0.568733,0.454695,0.074299,0.976922,0.401426,0.807452,0.254236,0.0189699,0.522925,0.405665,0.266978,0.104173,0.014375,0.669489,0.358628,0.47735,0.447986,0.905348,0.915177,0.490378,0.0534981,0.674813,0.456093,0.622159,0.856925,0.0405366,0.255343,0.261402,0.279483,0.921302,0.531075,0.783279,0.854907,0.433273,0.0592547,0.452136,0.0990005,0.15604,0.791293,0.866027,0.0680142,0.762816,0.180072,0.745393,0.903325,0.198749,0.741081,0.522788,0.929299,0.35352,0.91438,0.596328,0.564107,0.779916,0.348363,0.406885,0.792282,0.413985,0.260314,0.364231,0.252495,0.352774,0.651056,0.345159,0.12249,0.389107,0.207719,0.880504,0.526925,0.493066,0.387753,0.144392,0.106252,0.704038,0.506949,0.84505,0.296521,0.371458,0.512529,0.739913,0.494946,0.200445,0.853932,0.97136,0.518535,0.585122,0.788984,0.867983,0.489705,0.293684,0.371568,0.515473,0.482226,0.784332,0.0295271,0.0950443,0.436004,0.189512,0.518744,0.797975,0.335005,0.248724,0.116426,0.580369,0.420919,0.836832,0.403642,0.0752909,0.842016,0.272066,0.938539,0.502386,0.703909,0.54537,0.146961,0.210083,0.919598,0.080912,0.767549,0.764552,0.396455,0.955683,0.265649,0.370201,0.675851,0.278847,0.615871,0.894744,0.479907,0.946542,0.729838,0.199775,0.627896,0.355159,0.129109,0.0781635,0.615589,0.932884,0.794802,0.547926,0.54583,0.0934577,0.524053,0.701283,0.127369,0.299023,0.571111,0.690951,0.411652,0.984311,0.749536,0.102481,0.378868,0.933717,0.774521,0.245132,0.744043,0.327199,0.276021,0.549229,0.0135685,0.436248,0.278933,0.521862,0.473974,0.615901,0.768248,0.438012,0.492001,0.0304787,0.464188,0.175045,0.845988,0.893169,0.0725495,0.727051,0.848345,0.361272,0.0121462,0.975943,0.734746,0.250646,0.570896,0.379566,0.257009,0.0895476,0.0361606,0.697715,0.62207,0.664245,0.293501,0.398365,0.0770224,0.568061,0.197751,0.190407,0.832768,0.492741,0.335878,0.90615,0.578757,0.932821,0.348804,0.694465,0.9992,0.862447,0.620115,0.324689,0.461259,0.102622,0.710825,0.777556,0.767869,0.130295,0.0299353,0.704585,0.508137,0.281053,0.000529706,0.547008,0.382853,0.562161,0.832017,0.956757,0.0951598,0.337448,0.310662,0.424537,0.628062,0.675039,0.815626,0.845506,0.960335,0.032957,0.581132,0.611386,0.464411,0.599514,0.584154,0.154045,0.364825,0.17945,0.356934,0.419726,0.920642,0.705499,0.474571,6.44326e-05,0.783538,0.72754,0.294124,0.802715,0.123292,0.694633,0.821453,0.341046,0.859777,0.030511,0.866377,0.780691,0.0692743,0.310469,0.711321,0.559231,0.789694,0.793204,0.214732,0.668079,0.892613,0.543137,0.351369,0.966322,0.58523,0.17647,0.996334,0.378636,0.487998,0.336453,0.12587,0.124737,0.954936,0.883498,0.28215,0.520374,0.261356,0.0997525,0.960619,0.082368,0.456707,0.928695,0.146593,0.104916,0.091119,0.0267953,0.559092,0.323512,0.449747,0.571384,0.69392,0.316661,0.0436908,0.830413,0.104632,0.0251774,0.831511,0.840759,0.177941,0.971228,0.951329,0.96817,0.0126892,0.266602,0.70999,0.415309,0.539125,0.249212,0.0890286,0.772824,0.168441,0.0168701,0.713993,0.655361,0.962875,0.465686,0.90994,0.916308,0.89721,0.600412,0.805284,0.102993,0.746112,0.387704,0.252964,0.481809,0.759964,0.0352904,0.909774,0.804973,0.323338,0.437408,0.995383,0.388179,0.107461,0.279243,0.0383457,0.353883,0.293807,0.322031,0.0763271,0.710343,0.991177,0.729067,0.38915,0.694776,0.964827,0.00465137,0.320806,0.986203,0.493459,0.332285,0.964947,0.506328,0.0586073,0.0625897,0.586387,0.234054,0.568234,0.141395,0.763599,0.0746462,0.211761,0.980311,0.241693,0.150135,0.222411,0.690557,0.221679,0.973284,0.479711,0.0648047,0.930354,0.26476,0.966072,0.39429,0.156885,0.136077,0.836491,0.275648,0.113601,0.0613499,0.138262,0.211901,0.0572979,0.897729,0.187469,0.0588648,0.42069,0.247481,0.960399,0.858454,0.862933,0.70189,0.348812,0.912896,0.837996,0.769321,0.414241,0.675175,0.732636,0.0639378,0.299495,0.0761164,0.576326,0.0749705,0.828723,0.351099,0.929113,0.471674,0.589503,0.0392333,0.936066,0.154653,0.220503,0.901504,0.429692,0.0151475,0.0778445,0.0989012,0.808299,0.213695,0.189008,0.719334,0.441868,0.708243,0.715695,0.372145,0.254281,0.659529,0.94612,0.719755,0.703315,0.573729,0.130387,0.40805,0.500398,0.0861086,0.774629,0.684538,0.436078,0.239344,0.086354,0.5852,0.210253,0.377796,0.265675,0.616289,0.324939,0.544051,0.694975,0.821911,0.692611,0.188145,0.0135037,0.262912,0.551178,0.449858,0.521289,0.124223,0.443285,0.00726277,0.852578,|0.68732,0.0559503,0.766346,0.394655,0.237738,0.957652,0.309137,0.166258,0.47523,0.572587,0.396074,0.548567,0.507145,0.842105,0.955948,0.0132448,0.719002,0.598697,0.337785,0.76336,0.0275379,0.677649,0.879495,0.633047,0.699387,0.852987,0.200686,0.224373,0.839942,0.590389,0.794635,0.294419,0.0702515,0.915258,0.425409,0.551458,0.381707,0.53845,0.338476,0.317721,0.386184,0.0265386,0.997271,0.0723847,0.0536193,0.0331152,0.19024,0.893166,0.0503338,0.544204,0.443276,0.843252,0.23298,0.558188,0.599647,0.306614,0.310624,0.575348,0.595093,0.0349413,0.976833,0.29585,0.882052,0.750346,0.720606,0.460182,0.861097,0.143575,0.103491,0.998974,0.591688,0.541282,0.675202,0.966419,0.346726,0.217338,0.541098,0.0765875,0.126712,0.825083,0.53491,0.638789,0.3771,0.0446677,0.596601,0.921156,0.982505,0.784947,0.362321,0.0640462,0.0647787,0.164374,0.541343,0.658461,0.825052,0.844587,0.637784,0.611465,0.923996,0.389525,0.106384,0.965686,0.554329,0.158963,0.545464,0.078563,0.779194,0.991104,0.784566,0.982951,0.375852,0.0614048,0.00422746,0.885267,0.74109,0.574851,0.796578,0.641763,0.0507346,0.405702,0.819757,0.106468,0.646571,0.624918,0.257936,0.698429,0.0480404,0.479223,0.588937,0.992815,0.0673353,0.457158,0.639453,0.465659,0.268163,0.801213,0.373553,0.947081,0.950231,0.380619,0.369584,0.976161,0.26221,0.419734,0.359622,0.358073,0.551421,0.824586,0.110086,0.370053,0.267531,0.319579,0.249973,0.53265,0.960377,0.410691,0.310361,0.981471,0.188853,0.389954,0.593213,0.872801,0.0516405,0.418273,0.669895,0.190145,0.281118,0.871926,0.863696,0.0480117,0.631028,0.167185,0.768193,0.180539,0.104125,0.436918,0.592166,0.88364,0.151643,0.584343,0.883403,0.212211,0.665182,0.703229,0.83546,0.31599,0.96014,0.775514,0.12903,0.461048,0.837105,0.925795,0.222144,0.854556,0.811511,0.791989,0.478092,0.973841,0.251221,0.182604,0.983503,0.68663,0.51338,0.290034,0.850936,0.197216,0.867315,0.533795,0.816682,0.272265,0.937054,0.555929,0.699091,0.0690288,0.230205,0.125558,0.978247,0.642468,0.36144,0.421779,0.0923773,0.705182,0.215022,0.016514,0.746647,0.803398,0.598602,0.703555,0.524708,0.342004,0.755423,0.516648,0.44665,0.633793,0.689537,0.348057,0.661789,0.988007,0.359173,0.524747,0.119416,0.224723,0.530184,0.837825,0.948922,0.973821,0.214643,0.443382,0.422301,0.237825,0.818302,0.15724,0.888937,0.229369,0.812464,0.624006,0.588192,0.75487,0.613767,0.124827,0.607906,0.596081,0.436219,0.919113,0.36548,0.829632,0.339847,0.641061,0.040769,0.759156,0.26102,0.0200865,0.341072,0.0446537,0.684609,0.769789,0.426703,0.942835,0.894436,0.92443,0.83276,0.328729,0.199838,0.813067,0.138524,0.784587,0.679505,0.0485271,0.212466,0.634627,0.61689,0.89784,0.642469,0.302178,0.93899,0.978496,0.344845,0.879447,0.923238,0.893558,0.665793,0.11132,0.287804,0.995803,0.808141,0.568673,0.0974348,0.0921559,0.438486,0.146331,0.492499,0.024671,0.100815,0.415824,0.736714,0.77144,0.854197,0.828361,0.373953,0.0633763,0.219622,0.0186362,0.872474,0.914566,0.0046733,0.312346,0.664816,0.872164,0.436542,0.543599,0.325414,0.541313,0.788763,0.356981,0.122758,0.40782,0.503264,0.145623,0.411972,0.430333,0.830134,0.364999,0.674856,0.568396,0.560307,0.889729,0.456833,0.894677,0.641581,0.169364,0.646453,0.926308,0.500368,0.608491,0.115943,0.0576604,0.534478,0.160729,0.461679,0.0574237,0.109724,0.0531686,0.105351,0.440362,0.092023,8.89897e-05,0.748334,0.192129,0.703329,0.0388455,0.333283,0.327754,0.420351,0.648643,0.880214,0.531079,0.446243,0.779544,0.791651,0.452261,0.760586,0.164438,0.508762,0.538409,0.241881,0.551582,0.561603,0.267044,0.782414,0.39447,0.485064,0.134234,0.988131,0.702953,0.525896,0.133312,0.208849,0.615913,0.310068,0.78898,0.194064,0.649924,0.548438,0.365408,0.31788,0.193885,0.321461,0.0838304,0.276276,0.388074,0.519551,0.500171,0.972091,0.762268,0.698545,0.0286427,0.663329,0.021933,0.118239,0.0698701,0.292688,0.33935,0.973892,0.676296,0.76372,0.980914,0.791991,0.148363,0.794981,0.305099,0.506375,0.18486,0.830046,0.300255,0.602144,0.662079,0.645444,0.418764,0.393811,0.369796,0.598723,0.279483,0.554082,0.00474954,0.663458,0.625686,0.34246,0.943195,0.590902,0.962151,0.512418,0.457225,0.526894,0.671834,0.582437,0.167611,0.252275,0.910718,0.867243,0.66225,0.240427,0.469063,0.817012,0.547887,0.845267,0.722356,0.861157,0.208707,0.543632,0.304569,0.824593,0.0953062,0.581276,0.669742,0.663997,0.51533,0.701398,0.910868,0.904752,0.539503,0.502088,0.962531,0.0975348,0.447024,0.697621,0.578389,0.336875,0.604636,0.544733,0.734526,0.210887,0.418863,0.0284404,0.149821,0.0671253,0.706143,0.397204,0.165357,0.976287,0.524544,0.926925,0.735452,0.505616,0.330921,0.255226,0.480527,0.891071,0.739131,0.593721,0.882121,0.284252,0.620316,0.875798,0.858508,0.400827,0.413362,0.930528,0.737346,0.10751,0.79647,0.560859,0.881179,0.458467,0.754909,0.147302,0.280773,0.125556,0.400594,0.400994,0.692548,0.415288,0.976883,0.953271,0.233442,0.0484505,0.0912755,0.44951,0.778826,0.244415,0.760092,0.8186,0.845441,0.708521,0.356122,0.455617,0.745691,0.109283,0.705516,0.219547,0.673154,0.931659,0.18158,0.999983,0.244046,0.623894,0.692116,0.706614,0.110547,0.0915846,0.207773,0.354078,0.841332,0.221372,0.911442,0.280501,0.97535,0.479417,0.253771,0.0801848,0.619526,0.610608,0.717471,0.88529,0.0978772,0.620662,0.951712,0.371083,0.75598,0.704506,0.635274,0.599418,0.924667,0.0123046,0.607065,0.600123,0.212839,0.747711,0.302722,0.105403,0.742882,0.601033,0.389757,0.533714,0.957151,0.41986,0.645766,0.553464,0.924829,0.696031,0.918543,0.34929,0.725486,0.181255,0.225173,0.985694,0.664168,0.602926,0.37649,0.0243632,0.419852,0.665041,0.639928,0.48268,0.7117,0.0394282,0.806281,0.768554,0.30714,0.858498,0.282556,0.0542033,0.896088,0.416213,0.870671,0.645982,0.512509,0.438657,0.519243,0.0944026,0.934017,0.972688,0.443528,0.795831,0.620908,0.381666,0.921624,0.587322,0.12487,0.765206,0.447736,0.774035,0.797222,0.597582,0.804845,0.089091,0.289375,0.0942565,0.651456,0.16006,0.0100697,0.309617,0.588681,0.00567907,0.158588,0.656655,0.321993,0.532608,0.424313,0.143943,0.597648,0.718188,0.231172,0.589273,0.232734,0.609668,0.993285,0.748068,0.72883,0.0678906,0.927207,0.274232,0.793793,0.542904,0.0184189,0.758702,0.460824,0.106966,0.0114652,0.75514,0.49441,0.795726,0.896201,0.722799,0.753335,0.545765,0.600628,0.0710728,0.215661,0.927664,0.840131,0.84322,0.639596,0.456092,0.070663,0.524781,0.100163,0.846549,0.585895,0.330317,0.0472958,0.682739,0.938233,0.531296,0.439915,0.879003,0.635774,0.953581,0.734868,0.545162,0.473573,0.35078,0.231176,0.656833,0.185942,0.615767,0.744824,0.487422,0.586426,0.836897,0.907699,0.590489,0.355626,0.968729,0.276,0.332326,0.278193,0.630297,0.735187,0.0855009,0.685686,0.155031,0.193962,0.702887,0.340333,0.0497743,0.517423,0.684914,0.585577,0.017239,0.198698,0.216206,0.30852,0.411129,0.456808,0.0901896,0.530779,0.164598,0.744725,0.999101,0.744825,0.215395,0.603595,0.735485,0.483766,0.939611,0.20955,0.665958,0.332366,0.108556,0.105936,0.205861,0.411009,0.93308,0.00137568,0.0820678,0.948276,0.140694,0.601771,0.828614,0.968264,0.980916,0.620577,0.124872,0.49077,0.318139,0.659764,0.607937,0.92482,0.490529,0.21697,0.487963,0.90425,0.0983704,0.458376,0.349005,0.322194,0.260371,0.366945,0.897606,0.990607,0.684856,0.0394704,0.885471,0.147726,0.248235,0.352149,0.644207,0.902543,0.863098,0.685807,0.313679,0.30787,0.403107,0.554397,0.861404,0.329892,0.166633,0.708955,0.429636,0.318771,0.0800941,0.966064,0.989235,0.399191,0.277013,0.132162,0.568958,0.638129,0.544838,0.732225,0.178478,0.69874,0.709243,0.183926,0.648525,0.0972149,0.493583,0.865261,0.94364,0.0782958,0.585194,0.624045,0.53017,0.103847,0.896186,0.45437,0.185998,0.817741,0.404101,0.892033,0.152608,0.197742,0.604821,0.077762,0.863034,0.295283,0.689417,0.375596,0.592735,0.55437,0.512477,0.921294,0.996526,0.481233,0.428167,0.0659382,0.149265,0.54622,0.230472,0.877528,0.143869,0.603267,0.612676,0.00902754,0.902482,0.2475,0.715394,0.97578,0.923097,0.474489,0.834704,0.255076,0.65719,0.22682,0.635901,0.715113,0.533351,0.925399,0.134496,0.877105,0.832884,0.837472,0.42877,0.713122,0.213021,0.203611,0.196888,0.946773,0.187665,0.515423,0.387513,0.169931,0.103386,0.343358,0.289974,0.213229,0.670146,0.305551,0.932578,0.444504,0.718101,0.80609,0.913665,0.248656,0.285157,0.981794,0.849654,0.41979,0.686292,0.262279,0.0398534,0.958084,0.599918,0.0176468,0.268007,0.214308,0.150758,0.800848,0.192227,0.93596,0.113887,0.853833,0.0861493,0.36812,0.206738,0.011353,0.126344,0.304785,0.932664,0.93788,0.60701,0.49007,0.275518,0.501742,0.843135,0.390366,0.847476,0.282813,0.33765,0.925055,0.490438,0.357891,0.887337,0.479376,0.695689,0.616882,0.432017,0.0176222,0.916016,0.587159,0.470739,0.216538,0.172085,0.152592,0.453937,0.214374,0.980348,0.25661,0.951383,0.722172,0.0580447,0.115178,0.342459,0.304603,0.0874187,0.759334,0.741958,0.399634,0.904314,0.975877,0.683018,0.0453302,0.103994,0.717269,0.114578,0.854535,0.234518,0.646454,0.377643,0.526477,0.698874,0.328241,0.924378,0.196782,0.213838,0.850952,0.65472,0.946,0.389162,0.326574,0.215259,0.202799,0.903848,0.889112,0.653003,0.547651,0.934449,0.264845,0.926786,0.762126,|0.0340689,0.160935,0.632681,0.147907,0.901894,0.837522,0.64655,0.723329,0.824996,0.122833,0.2162,0.508614,0.0780013,0.678108,0.704035,0.319016,0.925895,0.845423,0.877174,0.682446,0.681884,0.603149,0.564597,0.33695,0.700029,0.834376,0.574733,0.38426,0.863806,0.797037,0.972356,0.198041,0.376608,0.434846,0.0264609,0.438539,0.416523,0.567355,0.576638,0.470141,0.24823,0.872703,0.14545,0.554141,0.743514,0.299506,0.51132,0.237439,0.559011,0.651542,0.220914,0.939509,0.168308,0.501573,0.632658,0.185336,0.0920126,0.152309,0.0097692,0.683263,0.792009,0.593599,0.53507,0.581402,0.493978,0.523439,0.197162,0.778926,0.573016,0.54343,0.893726,0.408248,0.398037,0.126549,0.483248,0.959734,0.146592,0.964035,0.723688,0.960087,0.579574,0.738378,0.627905,0.76256,0.500279,0.274427,0.192059,0.47318,0.420884,0.00473928,0.444431,0.647906,0.994298,0.105714,0.273548,0.234853,0.901212,0.59788,0.897066,0.90445,0.726803,0.30323,0.218422,0.592029,0.388133,0.439898,0.831962,0.371238,0.963505,0.598397,0.782679,0.125818,0.448874,0.0911093,0.386877,0.806306,0.459118,0.909099,0.42932,0.540399,0.707179,0.177822,0.990128,0.831481,0.940786,0.496736,0.550159,0.621813,0.31055,0.78585,0.120846,0.170559,0.128811,0.28305,0.787658,0.317851,0.36848,0.738672,0.727227,0.14398,0.18996,0.469943,0.0403574,0.837858,0.34982,0.0261323,0.014771,0.242853,0.530164,0.987881,0.606795,0.0404744,0.172108,0.126271,0.736015,0.0842382,0.96838,0.155723,0.887813,0.732865,0.613645,0.837467,0.913515,0.487042,0.0490334,0.897797,0.133415,0.573438,0.638396,0.184232,0.949632,0.583292,0.60007,0.685403,0.406973,0.124622,0.921306,0.887594,0.389052,0.107225,0.475479,0.603688,0.414255,0.249703,0.20284,0.413659,0.779364,0.595903,0.35809,0.994866,0.0491665,0.017808,0.491649,0.75151,0.0121236,0.643403,0.62428,0.953373,0.0608884,0.273644,0.453476,0.801022,0.947745,0.238967,0.261556,0.379487,0.340683,0.20411,0.642997,0.954878,0.540833,0.258237,0.719825,0.675631,0.494597,0.833789,0.0583402,0.56587,0.316477,0.723427,0.884051,0.444011,0.924279,0.112601,0.254928,0.995879,0.792092,0.772607,0.944522,0.569938,0.588877,0.614093,0.757979,0.287567,0.391522,0.888519,0.557958,0.403005,0.765743,0.0897157,0.566441,0.778002,0.307447,0.243316,0.725875,0.37092,0.498883,0.08536,0.751828,0.0387052,0.028594,0.63638,0.217089,0.14918,0.586289,0.456749,0.777228,0.589502,0.458604,0.846819,0.108016,0.858213,0.188893,0.402587,0.694344,0.113416,0.680577,0.170756,0.278108,0.172532,0.397525,0.269859,0.118241,0.736031,0.257641,0.912046,0.69697,0.780818,0.42012,0.274326,0.00942868,0.101423,0.740876,0.976046,0.304941,0.770033,0.915985,0.397266,0.915013,0.142245,0.979427,0.473021,0.929484,0.803259,0.217837,0.86452,0.491089,0.255982,0.350071,0.308527,0.84128,0.489315,0.662098,0.666696,0.0928041,0.897309,0.85004,0.713431,0.99262,0.422898,0.398014,0.640234,0.0161754,0.841144,0.301307,0.0581427,0.0508623,0.128984,0.739462,0.605695,0.936647,0.0740954,0.77369,0.409065,0.301228,0.0530441,0.502273,0.473891,0.714136,0.573217,0.927543,0.975328,0.581173,0.767623,0.9705,0.637855,0.687185,0.433652,0.220461,0.655618,0.151908,0.883173,0.653334,0.287349,0.386585,0.387448,0.944533,0.418241,0.250205,0.614853,0.818951,0.399089,0.625685,0.873836,0.725423,0.829253,0.852729,0.956496,0.920825,0.605206,0.869535,0.588475,0.95519,0.961376,0.205981,0.981626,0.306654,0.410939,0.702265,0.361213,0.137014,0.20711,0.961105,0.41691,0.319463,0.0381105,0.612503,0.535383,0.809526,0.0602512,0.663404,0.905285,0.389317,0.842349,0.511396,0.756965,0.142945,0.826128,0.217096,0.516789,0.280378,0.0248404,0.214464,0.105332,0.0215806,0.84336,0.318799,0.229937,0.705959,0.907522,0.487957,0.696201,0.614753,0.751946,0.759383,0.323751,0.202467,0.988129,0.591698,0.0650123,0.406875,0.787681,0.677323,0.195635,0.818855,0.481591,0.611288,0.757562,0.137872,0.279707,0.712304,0.069864,0.854807,0.91181,0.390678,0.532456,0.0409442,0.247956,0.641475,0.710005,0.325864,0.897692,0.0921434,0.666085,0.761732,0.0616655,0.296999,0.287475,0.747722,0.859621,0.0430414,0.298539,0.282056,0.704706,0.151565,0.0945418,0.639117,0.817539,0.402412,0.600088,0.666903,0.89027,0.767347,0.199717,0.0778973,0.0475037,0.468576,0.980526,0.455987,0.0179157,0.576461,0.660964,0.850584,0.479825,0.107277,0.518469,0.377891,0.984349,0.824106,0.840974,0.0701452,0.904215,0.798016,0.252054,0.665208,0.416813,0.535906,0.202153,0.562245,0.165621,0.248531,0.767678,0.859728,0.161647,0.431371,0.48587,0.154296,0.734485,0.503016,0.89906,0.537428,0.363921,0.626658,0.594459,0.295368,0.28241,0.173401,0.631832,0.799062,0.319193,0.218314,0.807115,0.684883,0.521085,0.464594,0.733699,0.548738,0.941262,0.0128947,0.115685,0.378991,0.821839,0.83641,0.44313,0.926967,0.877152,0.609563,0.903235,0.646456,0.767023,0.664092,0.985892,0.812824,0.762385,0.260045,0.597232,0.419439,0.766159,0.255928,0.658446,0.217132,0.84941,0.476526,0.792376,0.791147,0.997906,0.370802,0.485038,0.789796,0.230925,0.198016,0.575403,0.00875157,0.0909986,0.439306,0.465052,0.20106,0.0991425,0.980476,0.908866,0.38397,0.00983638,0.148473,0.672716,0.0527126,0.135143,0.237945,0.45127,0.527052,0.2043,0.164165,0.119761,0.172245,0.319978,0.0314553,0.103163,0.215218,0.778611,0.772813,0.756792,0.455383,0.908228,0.268086,0.878864,0.601522,0.624152,0.250381,0.481179,0.908967,0.984464,0.712803,0.283686,0.992031,0.646729,0.630318,0.873554,0.859264,0.85212,0.843737,0.460996,0.416498,0.930384,0.938028,0.620014,0.777164,0.252067,0.277891,0.687611,0.352885,0.00083524,0.211358,0.946275,0.255758,0.892487,0.00323856,0.811685,0.732131,0.560968,0.769504,0.0245792,0.0912098,0.832112,0.590526,0.754817,0.886569,0.653244,0.96984,0.68616,0.263873,0.712938,0.710244,0.67591,0.872132,0.166844,0.377142,0.00292909,0.350028,0.271368,0.994699,0.00156301,0.372154,0.914659,0.525814,0.223376,0.307864,0.00538212,0.887555,0.867381,0.110393,0.212753,0.181679,0.569238,0.190773,0.778862,0.884789,0.692406,0.133725,0.565612,0.00656855,0.417338,0.805871,0.2891,0.597435,0.676032,0.304171,0.678606,0.333235,0.306942,0.446454,0.623973,0.554038,0.721183,0.191703,0.434389,0.278529,0.495574,0.626433,0.325166,0.764211,0.688119,0.655932,0.587829,0.541634,0.0222367,0.853895,0.95833,0.689096,0.604896,0.177724,0.151935,0.53958,0.0229974,0.664702,0.730335,0.257784,0.633573,0.397479,0.998198,0.559658,0.960788,0.749563,0.0567772,0.997542,0.234425,0.805475,0.122035,0.297219,0.8382,0.806598,0.567084,0.974499,0.901826,0.300402,0.462706,0.455407,0.914571,0.252969,0.759072,0.907095,0.38423,0.805098,0.590118,0.292888,0.559894,0.719537,0.571287,0.935897,0.165717,0.274206,0.304055,0.741314,0.514033,0.755308,0.816518,0.400485,0.589667,0.568977,0.262574,0.263684,0.297325,0.524794,0.591296,0.936865,0.69049,0.995754,0.975135,0.691549,0.730112,0.2562,0.78534,0.951821,0.563671,0.64132,0.276898,0.863136,0.647624,0.207552,0.937026,0.232656,0.642696,0.707611,0.573715,0.763831,0.65988,0.527072,0.2737,0.688396,0.523052,0.630655,0.593257,0.881877,0.624752,0.0602589,0.0411275,0.993881,0.657589,0.540317,0.80882,0.358223,0.505893,0.0862009,0.958731,0.536296,0.651072,0.0111414,0.801915,0.148769,0.686364,0.401085,0.286099,0.47508,0.433589,0.171324,0.694529,0.820492,0.494042,0.7912,0.277046,0.456951,0.874673,0.187591,0.703496,0.736291,0.69235,0.170388,0.209997,0.184644,0.440893,0.85057,0.688868,0.907359,0.947941,0.358902,0.0236328,0.992891,0.619189,0.478645,0.624812,0.248883,0.165755,0.595153,0.0646785,0.831772,0.237346,0.36062,0.465259,0.671942,0.392846,0.468846,0.465901,0.264745,0.660514,0.220603,0.519836,0.712251,0.0424897,0.842447,0.497567,0.257623,0.441558,0.609415,0.954649,0.950596,0.774601,0.429785,0.252733,0.437491,0.256541,0.925373,0.155218,0.289246,0.280278,0.0222566,0.205363,0.703766,0.57304,0.86424,0.355347,0.686544,0.340854,0.228449,0.0667306,0.453442,0.199352,0.767125,0.392563,0.48708,0.309709,0.739142,0.880064,0.107608,0.625698,0.173612,0.0687404,0.989763,0.624376,0.364475,0.105118,0.662395,0.725614,0.0301433,0.24255,0.583932,0.154935,0.330112,0.753938,0.117842,0.839931,0.442544,0.540075,0.43743,0.76503,0.14937,0.0909579,0.476527,0.121719,0.287358,0.587009,0.834132,0.153532,0.293338,0.78061,0.26359,0.878867,0.0278101,0.455131,0.259864,0.549093,0.261647,0.606054,0.213303,0.456919,0.438077,0.950106,0.138555,0.163552,0.0143374,0.507616,0.0850705,0.00565898,0.512935,0.740124,0.921707,0.753275,0.677308,0.487375,0.0447468,0.948171,0.461744,0.580688,0.681459,0.564393,0.201205,0.481602,0.205287,0.585238,0.0754631,0.0149575,0.547807,0.64272,0.565832,0.863627,0.643317,0.856744,0.871615,0.131982,0.204021,0.211028,0.922169,0.157616,0.377898,0.0133876,0.278507,0.134416,0.907214,0.64446,0.931284,0.0350828,0.765548,0.693456,0.328071,0.708549,0.979975,0.219343,0.491803,0.515505,0.558076,0.260424,0.489716,0.18964,0.320468,0.348963,0.167828,0.0751572,0.734875,0.873332,0.875171,0.459696,0.562461,0.302171,0.124916,0.982685,0.460783,0.130869,0.563017,0.670086,0.410439,0.687949,0.574219,0.69624,0.553242,0.0391316,0.321772,0.583228,0.536023,0.348037,0.786917,0.864125,0.995001,0.203632,0.143911,0.912602,0.704898,0.759724,0.770071,0.441132,0.881264,0.136883,0.0183102,0.330737,|0.506105,0.512404,0.321057,0.394455,0.654452,0.12692,0.894733,0.191474,0.808458,0.113926,0.543121,0.443687,0.682534,0.313198,0.836843,0.683604,0.0239076,0.437925,0.807015,0.0480984,0.136487,0.153378,0.253395,0.437569,0.173241,0.813945,0.42976,0.8275,0.434329,0.662929,0.233094,0.544497,0.115087,0.68413,0.612003,0.578667,0.522537,0.698028,0.655866,0.022692,0.331814,0.173428,0.0437847,0.552482,0.486375,0.261425,0.134843,0.0809132,0.22896,0.311982,0.578647,0.0858139,0.506166,0.383823,0.904112,0.00699705,0.484867,0.685172,0.100589,0.186313,0.108877,0.211519,0.00824952,0.834512,0.850865,0.146884,0.60621,0.97172,0.84896,0.847488,0.788201,0.634142,0.295428,0.930278,0.0498688,0.731002,0.206566,0.0127057,0.37173,0.333863,0.558612,0.030865,0.414399,0.510265,0.147368,0.289713,0.8516,0.753889,0.560236,0.171471,0.824253,0.742501,0.344119,0.902386,0.948128,0.0271698,0.596822,0.188866,0.0248311,0.58137,0.298833,0.285002,0.104638,0.59381,0.266504,0.389556,0.948682,0.842482,0.913441,0.671339,0.551947,0.147929,0.389458,0.178624,0.640563,0.786481,0.990558,0.732363,0.852945,0.906838,0.433468,0.399706,0.0305904,0.957021,0.730319,0.0637055,0.651458,0.0775306,0.810746,0.962341,0.762816,0.473166,0.72621,0.208384,0.398001,0.523992,0.933629,0.917157,0.226627,0.967114,0.993258,0.886543,0.89064,0.001926,0.317609,0.406492,0.978298,0.0315619,0.61017,0.792389,0.678284,0.681224,0.287784,0.885189,0.838929,0.646947,0.282721,0.707501,0.432022,0.795277,0.4455,0.652802,0.406724,0.00494719,0.927968,0.884191,0.805544,0.703697,0.433009,0.888077,0.483287,0.189222,0.536883,0.720326,0.91813,0.774877,0.0975533,0.626668,0.984865,0.798309,0.326302,0.427848,0.760091,0.296385,0.32151,0.673479,0.361834,0.986803,0.915209,0.379002,0.193174,0.265007,0.18321,0.15382,0.53742,0.39599,0.308331,0.109633,0.982506,0.131389,0.200151,0.955158,0.789891,0.993945,0.398883,0.402552,0.953337,0.593158,0.738803,0.505901,0.351532,0.141306,0.794024,0.458313,0.920984,0.36886,0.528173,0.645713,0.435962,0.888501,0.182563,0.646522,0.54262,0.05039,0.554966,0.0974537,0.128213,0.611608,0.840528,0.173932,0.75494,0.621536,0.42622,0.105265,0.563043,0.941361,0.791414,0.521784,0.814828,0.0648993,0.184502,0.483947,0.292688,0.843421,0.0098443,0.210422,0.983047,0.740799,0.61347,0.931701,0.954146,0.585988,0.787338,0.0431577,0.0378595,0.0970327,0.695789,0.264229,0.472421,0.438405,0.943842,0.226111,0.300561,0.320573,0.727672,0.309593,0.778406,0.38513,0.313196,0.205056,0.0580535,0.480602,0.863011,0.519871,0.507663,0.312907,0.766659,0.42784,0.592613,0.102853,0.540337,0.771831,0.808489,0.880824,0.790148,0.254404,0.141426,0.384751,0.478462,0.511729,0.0774371,0.301049,0.736406,0.140901,0.858779,0.151511,0.00666386,0.102308,0.727148,0.382284,0.841848,0.83389,0.596497,0.749325,0.624297,0.646611,0.471612,0.758116,0.538838,0.0793687,0.735219,0.781229,0.736996,0.0797498,0.455406,0.185965,0.118802,0.37641,0.267167,0.836361,0.939951,0.513153,0.360462,0.140886,0.83958,0.898219,0.762653,0.234929,0.278824,0.753725,0.992204,0.365957,0.142267,0.832562,0.316591,0.31955,0.266063,0.574756,0.0871791,0.957599,0.328362,0.262818,0.536514,0.302974,0.769278,0.958975,0.443735,0.194301,0.592751,0.0740088,0.50035,0.0770576,0.629071,0.611575,0.148875,0.109703,0.247175,0.645847,0.172032,0.550456,0.546943,0.393598,0.652571,0.763727,0.968202,0.466504,0.21673,0.0131318,0.903785,0.666597,0.461397,0.228203,0.509365,0.628172,0.9697,0.239271,0.599589,0.0280933,0.0309616,0.984962,0.211197,0.810148,0.585488,0.913745,0.561278,0.90189,0.693168,0.382351,0.336997,0.412595,0.686668,0.865737,0.460777,0.406627,0.830473,0.147757,0.299021,0.59815,0.640304,0.345658,0.705288,0.48539,0.952684,0.265775,0.315458,0.072149,0.480296,0.131087,0.900675,0.31105,0.374827,0.121979,0.601061,0.699864,0.666786,0.350999,0.64376,0.116076,0.778527,0.168116,0.0880753,0.542294,0.956329,0.434224,0.957948,0.383416,0.306559,0.71926,0.0510691,0.0625961,0.501541,0.330364,0.0675735,0.666086,0.363096,0.369928,0.365978,0.526965,0.769965,0.91981,0.757835,0.718316,0.317376,0.508485,0.460322,0.180282,0.424375,0.562761,0.0171854,0.00365931,0.279285,0.0159412,0.332172,0.521333,0.0377163,0.238768,0.070002,0.169127,0.507289,0.0395174,0.946658,0.584239,0.309076,0.701903,0.761004,0.961981,0.208155,0.84857,0.0358109,0.634789,0.350694,0.836307,0.804139,0.883373,0.454482,0.0432459,0.913783,0.0212224,0.624998,0.658952,0.837316,0.757159,0.777075,0.654342,0.77005,0.220004,0.0717924,0.379468,0.401316,0.247727,0.485655,0.899053,0.208932,0.105477,0.769522,0.295412,0.0743722,0.569539,0.040952,0.204013,0.559125,0.2915,0.676744,0.65677,0.432114,0.549465,0.513549,0.115066,0.417065,0.775309,0.93975,0.63881,0.0250526,0.877114,0.578147,0.699721,0.216985,0.740999,0.313463,0.171333,0.183541,0.571303,0.792919,0.849919,0.664538,0.144785,0.64475,0.964303,0.730816,0.443193,0.726215,0.630504,0.859646,0.0402635,0.0287359,0.394164,0.966636,0.0561737,0.330353,0.915145,0.537459,0.0216008,0.7942,0.170065,0.929961,0.0974156,0.0363209,0.108549,0.150495,0.642245,0.517359,0.149066,0.277934,0.51069,0.992492,0.508329,0.147455,0.867871,0.915572,0.625339,0.194707,0.675637,0.414786,0.718417,0.697873,0.111217,0.443006,0.044313,0.20011,0.572647,0.10369,0.00788033,0.265611,0.666481,0.587783,0.897649,0.950492,0.996596,0.935537,0.816158,0.92562,0.525811,0.0907942,0.932948,0.983235,0.102115,0.734137,0.818071,0.236388,0.256155,0.736246,0.106544,0.655465,0.445293,0.192711,0.289533,0.159955,0.213018,0.700026,0.16376,0.277247,0.6133,0.981569,0.482051,0.374333,0.497468,0.903012,0.144626,0.250636,0.286207,0.685173,0.286881,0.0579104,0.246583,0.463921,0.456502,0.5686,0.691815,0.37527,0.814204,0.632392,0.251326,0.0301136,0.154843,0.992201,0.638246,0.304993,0.982759,0.74999,0.929542,0.956736,0.550476,0.760434,0.571315,0.170869,0.917045,0.999804,0.0193349,0.524064,0.413681,0.88995,0.117062,0.901494,0.680787,0.76725,0.498343,0.572404,0.890266,0.711748,0.0952189,0.546031,0.438527,0.198705,0.826592,0.970417,0.293954,0.932788,0.589781,0.220079,0.808372,0.81669,0.25544,0.816401,0.652853,0.235454,0.088909,0.314461,0.6712,0.848314,0.05273,0.846545,0.323911,0.278757,0.487921,0.81459,0.381104,0.475334,0.940113,0.937128,0.0475689,0.2953,0.284857,0.209818,0.250027,0.912704,0.202622,0.493266,0.434882,0.0124196,0.561801,0.625463,0.928065,0.616458,0.129739,0.678494,0.215278,0.040471,0.297855,0.568731,0.796899,0.729379,0.76465,0.817476,0.664311,0.679495,0.220075,0.804263,0.948771,0.976495,0.913462,0.727244,0.457386,0.122857,0.917301,0.863263,0.624544,0.595846,0.13866,0.300538,0.39257,0.0369079,0.409254,0.673791,0.792959,0.975303,0.511537,0.31427,0.488659,0.0190305,0.160059,0.20476,0.600178,0.695484,0.232203,0.929933,0.303321,0.367971,0.35912,0.408903,0.507772,0.247253,0.843676,0.411715,0.719649,0.189463,0.466564,0.740422,0.0331464,0.214676,0.300578,0.406351,0.845944,0.425904,0.104154,0.694844,0.0134923,0.162782,0.322757,0.310336,0.678608,0.0617638,0.42251,0.339017,0.350505,0.765177,0.63814,0.868765,0.94608,0.3741,0.670218,0.922094,0.44029,0.319715,0.968744,0.92772,0.906242,0.099966,0.329361,0.395972,0.483051,0.174259,0.00935274,0.25282,0.343338,0.272108,0.688002,0.160366,0.45088,0.361486,0.207913,0.899895,0.37044,0.724229,0.250187,0.805548,0.856613,0.668273,0.122276,0.831247,0.744975,0.231237,0.479059,0.0868194,0.0365472,0.432424,0.34638,0.437898,0.84536,0.34371,0.764136,0.577536,0.191081,0.469355,0.917629,0.550991,0.442933,0.163064,0.113135,0.952555,0.377965,0.0597678,0.302505,0.017766,0.430442,0.196126,0.501955,0.957248,0.342108,0.454448,0.698857,0.719474,0.61736,0.0920635,0.209893,0.321081,0.0548195,0.925219,0.332661,0.185383,0.700106,0.444793,0.839105,0.635063,0.721895,0.0014084,0.777738,0.143886,0.840441,0.292972,0.0809097,0.342883,0.771904,0.893403,0.362076,0.348535,0.470594,0.367221,0.596423,0.519711,0.937592,0.166881,0.929804,0.705641,0.754449,0.778071,0.314422,0.0286875,0.841325,0.480519,0.223541,0.0473921,0.0620624,0.992658,0.973596,0.579458,0.547533,0.186281,0.810153,0.270345,0.715617,0.299289,0.498047,0.595436,0.533651,0.27679,0.76465,0.732693,0.593715,0.189605,0.690613,0.414233,0.901586,0.695247,0.673292,0.701486,0.000178874,0.917349,0.215191,0.514497,0.296551,0.270331,0.675994,0.117655,0.00827378,0.892781,0.0989299,0.825634,0.269951,0.132831,0.0707356,0.239274,0.504667,0.525418,0.199774,0.795428,0.317454,0.721233,0.745412,0.728188,0.244965,0.529995,0.650579,0.695019,0.849904,0.996271,0.879696,0.812447,0.895516,0.124528,0.120867,0.791892,0.218651,0.870791,0.263195,0.883165,0.336352,0.939311,0.169611,0.991635,0.977845,0.245619,0.148699,0.429927,0.696777,0.508264,0.569558,0.443943,0.914313,0.535778,0.481354,0.992073,0.242409,0.31637,0.242217,0.255396,0.389229,0.889998,0.20135,0.577261,0.93625,0.494618,0.0682107,0.954235,0.459537,0.0996513,0.893106,0.876932,0.973683,0.810789,0.473203,0.869689,0.186546,0.414894,0.0957857,0.108862,0.95339,0.660359,0.0906145,0.994393,0.036094,0.109662,0.112799,0.859261,0.243703,0.574017,0.031092,0.293049,0.403918,0.855268,0.713296,0.0468315,0.193074,0.862688,0.535083,0.0477132,0.819082,0.000316262,0.115327,0.490549,0.417114,|0.44586,0.0352619,0.981789,0.0267646,0.464376,0.211591,0.267452,0.293876,0.620016,0.884781,0.954039,0.372523,0.774536,0.700672,0.658363,0.0569434,0.732409,0.853659,0.994293,0.252295,0.597662,0.690174,0.261387,0.474961,0.143103,0.0114254,0.196492,0.125238,0.567008,0.136286,0.31843,0.0122222,0.877375,0.493257,0.951018,0.869006,0.147228,0.276481,0.331888,0.463698,0.142732,0.822429,0.0815177,0.0645213,0.221816,0.508592,0.947257,0.334102,0.166806,0.101853,0.47143,0.233319,0.448223,0.0595688,0.199697,0.828598,0.117554,0.859261,0.848189,0.26259,0.617417,0.0604315,0.533477,0.52407,0.379598,0.208395,0.981961,0.0404291,0.30835,0.637809,0.873993,0.878446,0.686597,0.761545,0.589267,0.189277,0.0509917,0.875988,0.0847439,0.468392,0.0416254,0.411077,0.158123,0.843838,0.671782,0.520659,0.333539,0.0381785,0.769303,0.914329,0.682323,0.142483,0.289993,0.945921,0.234536,0.453943,0.274978,0.274206,0.167551,0.214305,0.139162,0.813388,0.237453,0.663879,0.30574,0.653183,0.229122,0.63595,0.404806,0.437084,0.60392,0.732036,0.140169,0.863389,0.208328,0.333524,0.415302,0.442497,0.155312,0.738252,0.519236,0.20529,0.511025,0.447136,0.310366,0.798786,0.0249175,0.836865,0.0945851,0.340572,0.958113,0.514555,0.883534,0.899019,0.0774392,0.902097,0.309322,0.653718,0.64785,0.804406,0.766816,0.852724,0.681407,0.343118,0.706765,0.609541,0.881084,0.97792,0.122685,0.155922,0.164509,0.254271,0.718846,0.815018,0.424812,0.444093,0.250475,0.391948,0.982161,0.163908,0.972591,0.491575,0.457366,0.812643,0.707067,0.596928,0.465886,0.0623264,0.63658,0.736664,0.437688,0.464583,0.425716,0.623302,0.376879,0.620305,0.574767,0.895592,0.485117,0.259233,0.214563,0.11668,0.473078,0.115455,0.357843,0.0603608,0.817582,0.686983,0.531667,0.531954,0.949429,0.335579,0.473731,0.0332774,0.743194,0.907386,0.304802,0.191747,0.767253,0.997661,0.42962,0.477561,0.765728,0.76331,0.165402,0.155093,0.215458,0.0765164,0.527918,0.633155,0.604455,0.986647,0.295507,0.818422,0.680955,0.898552,0.317293,0.820597,0.919844,0.378133,0.00138128,0.3793,0.219853,0.272721,0.212067,0.199915,0.492751,0.344251,0.258623,0.430789,0.116956,0.194988,0.931303,0.20628,0.783526,0.663031,0.841721,0.430759,0.147232,0.708858,0.12509,0.885559,0.963204,0.861382,0.0146045,0.419301,0.0646574,0.517122,0.773493,0.917215,0.14102,0.122617,0.289414,0.836571,0.106643,0.900966,0.1915,0.525022,0.908903,0.88992,0.860105,0.563234,0.0743257,0.988197,0.538285,0.133298,0.545442,0.341437,0.565357,0.926825,0.553726,0.0124539,0.266338,0.979428,0.0917127,0.136261,0.279508,0.0957606,0.713109,0.490711,0.343916,0.851009,0.578489,0.963562,0.890803,0.828203,0.586592,0.307679,0.150599,0.5587,0.92803,0.333282,0.255203,0.098096,0.697315,0.481367,0.329246,0.47153,0.357799,0.0684027,0.250605,0.20591,0.775921,0.58559,0.00760919,0.926828,0.729374,0.453014,0.888674,0.0524599,0.410198,0.121753,0.938546,0.977624,0.281088,0.733753,0.761848,0.504306,0.3223,0.165509,0.585865,0.67509,0.696031,0.328385,0.96185,0.933112,0.0934381,0.249149,0.317573,0.878407,0.277471,0.711903,0.733007,0.63681,0.255802,0.274234,0.47074,0.556029,0.686689,0.942026,0.719606,0.75888,0.915154,0.229517,0.584976,0.764432,0.381492,0.505238,0.521373,0.504411,0.380344,0.125443,0.403449,0.403287,0.770012,0.301507,0.744329,0.711437,0.378556,0.550636,0.106986,0.0679258,0.579222,0.341385,0.185002,0.346401,0.731502,0.0743374,0.610365,0.716821,0.979895,0.0262816,0.844139,0.289707,0.58593,0.666661,0.660332,0.961892,0.406028,0.960338,0.93574,0.44418,0.144699,0.483158,0.329309,0.108566,0.0586671,0.225611,0.17039,0.964056,0.801496,0.056657,0.17342,0.497602,0.061344,0.160645,0.246745,0.878184,0.792753,0.654324,0.234985,0.0704545,0.115302,0.800913,0.314695,0.000939429,0.143917,0.0255983,0.668877,0.263476,0.445462,0.687591,0.394697,0.928577,0.0297549,0.444419,0.419262,0.793689,0.362441,0.0588699,0.452972,0.267943,0.819313,0.705544,0.570748,0.864644,0.0331202,0.682821,0.829232,0.764685,0.648638,0.0506895,0.36786,0.699038,0.315035,0.20053,0.352209,0.500396,0.0969846,0.0513093,0.266342,0.2303,0.193997,0.946423,0.105242,0.721894,0.832721,0.819081,0.712618,0.0809153,0.418217,0.723028,0.341838,0.273455,0.152523,0.208174,0.770382,0.424055,0.0809689,0.198812,0.346991,0.132578,0.284615,0.569513,0.87127,0.81622,0.0958474,0.273262,0.00507402,0.726104,0.286646,0.881328,0.973887,0.839404,0.955286,0.792807,0.162862,0.292984,0.902384,0.512504,0.975127,0.0613151,0.0276079,0.0814269,0.720234,0.705725,0.339909,0.0955321,0.595764,0.376914,0.287184,0.603901,0.924022,0.768313,0.0412814,0.147996,0.468008,0.368046,0.703939,0.633769,0.0831437,0.139244,0.3957,0.238185,0.809551,0.0657151,0.179586,0.803947,0.607139,0.145325,0.888701,0.492621,0.123093,0.407463,0.137936,0.446225,0.214817,0.442336,0.287001,0.565713,0.136021,0.772122,0.650268,0.468536,0.705057,0.950512,0.882082,0.118732,0.760534,0.333841,0.433092,0.3733,0.619131,0.151631,0.719133,0.368535,0.0178232,0.422479,0.373251,0.104451,0.495275,0.94889,0.935552,0.992473,0.516868,0.700565,0.778644,0.993517,0.359065,0.546502,0.731574,0.952696,0.568007,0.656415,0.386554,0.957183,0.873136,0.0271257,0.66493,0.967172,0.990165,0.972044,0.393812,0.0827991,0.545506,0.92989,0.553533,0.786986,0.699838,0.763033,0.0371009,0.158755,0.509467,0.205854,0.779079,0.488534,0.520692,0.651954,0.31227,0.83743,0.83133,0.929446,0.840064,0.915285,0.5543,0.53727,0.225001,0.719716,0.870565,0.608126,0.181628,0.44017,0.429015,0.768271,0.875496,0.437748,0.722867,0.642057,0.939245,0.225799,0.473859,0.227261,0.291906,0.670443,0.582587,0.523949,0.88105,0.875037,0.521731,0.5266,0.391804,0.470991,0.160037,0.630225,0.882704,0.28985,0.412681,0.472791,0.0674806,0.500653,0.668506,0.197554,0.520146,0.37218,0.622555,0.525549,0.786802,0.717552,0.0110309,0.464824,0.548195,0.799024,0.770507,0.0465259,0.550928,0.0152604,0.411273,0.358513,0.400715,0.829546,0.709979,0.437981,0.469959,0.811556,0.574945,0.0854005,0.340204,0.752872,0.556816,0.140414,0.628026,0.970033,0.233845,0.97548,0.259622,0.0991142,0.0751948,0.918253,0.501754,0.442128,0.380642,0.300102,0.853544,0.339906,0.0981569,0.0310529,0.571665,0.691169,0.0637846,0.790424,0.733227,0.490902,0.511596,0.828788,0.347025,0.652035,0.195885,0.771923,0.761748,0.917024,0.741517,0.228926,0.688552,0.938439,0.0657568,0.206406,0.476759,0.644393,0.579277,0.0191327,0.124024,0.684013,0.793919,0.0724465,0.97783,0.385617,0.0999268,0.296396,0.143047,0.439285,0.24388,0.514735,0.0349054,0.162618,0.629808,0.48518,0.0302182,0.0248059,0.57755,0.185057,0.961936,0.437423,0.671522,0.264535,0.375011,0.187798,0.601521,0.0404147,0.841735,0.185569,0.223951,0.917512,0.481908,0.538279,0.708639,0.901867,0.270865,0.0576037,0.521985,0.00335461,0.142481,0.563641,0.506892,0.882926,0.26538,0.284398,0.613437,0.368638,0.250235,0.423485,0.946161,0.478977,0.843734,0.543405,0.665142,0.915879,0.256776,0.785838,0.227429,0.928918,0.534782,0.239426,0.467731,0.694859,0.463034,0.561788,0.0116709,0.552619,0.393685,0.373886,0.176677,0.817463,0.116009,0.06601,0.00983095,0.945584,0.873261,0.31194,0.775932,0.648571,0.0737762,0.228965,0.466151,0.654614,0.884932,0.440941,0.518651,0.55681,0.936496,0.716281,0.156957,0.536689,0.296943,0.443948,0.613366,0.494595,0.210684,0.60692,0.517876,0.0616434,0.697176,0.17301,0.915682,0.745838,0.923153,0.423306,0.00262988,0.0836512,0.32752,0.949551,0.873752,0.118526,0.912996,0.888195,0.714159,0.413079,0.0844228,0.404736,0.324474,0.256144,0.290528,0.817988,0.397992,0.284637,0.309514,0.638058,0.534367,0.901765,0.674535,0.494831,0.344525,0.970337,0.400969,0.247432,0.38431,0.358559,0.753519,0.509552,0.74863,0.708984,0.609944,0.184555,0.661873,0.728559,0.0231614,0.317337,0.444814,0.552815,0.611037,0.108609,0.484376,0.146959,0.460493,0.145813,0.822225,0.533667,0.709965,0.325875,0.524601,0.489677,0.192052,0.683738,0.316086,0.159312,0.962257,0.440322,0.37676,0.752189,0.678715,0.521045,0.959121,0.538977,0.511246,0.874389,0.109791,0.45334,0.425753,0.942079,0.388342,0.384243,0.696565,0.13029,0.236025,0.247532,0.657525,0.312838,0.0719795,0.999926,0.116085,0.463618,0.990278,0.304895,0.553361,0.444774,0.882796,0.75282,0.114814,0.362215,0.427713,0.93285,0.0865892,0.688445,0.855274,0.912496,0.438531,0.518109,0.723938,0.548554,0.206458,0.146512,0.0223377,0.102444,0.821892,0.554239,0.782966,0.667155,0.677939,0.27747,0.893509,0.69681,0.0298709,0.386511,0.69464,0.672794,0.234137,0.300929,0.439728,0.0144334,0.795187,0.866915,0.937561,0.780471,0.649772,0.124043,0.29587,0.180774,0.24308,0.616256,0.0723197,0.336469,0.967836,0.412559,0.416123,0.665668,0.204636,0.905633,0.721795,0.765036,0.604049,0.601622,0.611207,0.923892,0.191597,0.902593,0.926346,0.838316,0.542239,0.13571,0.687421,0.46982,0.341891,0.949388,0.833192,0.0394793,0.960515,0.431138,0.739042,0.909517,0.415731,0.299035,0.447655,0.96085,0.569159,0.513821,0.388774,0.839821,0.808061,0.887091,0.943049,0.837834,0.506022,0.0759037,0.112535,0.249286,0.0495733,0.160047,0.358737,0.709827,0.0309602,0.845055,0.673,0.225135,0.196226,0.991748,0.0870826,0.507822,0.771793,0.260112,0.282012,0.738833,0.442674,0.850534,0.383091,0.247286,0.883869,0.472721,0.625842,0.0368586,0.0748674,0.955788,|0.661526,0.828492,0.320453,0.558807,0.220197,0.635936,0.692707,0.0352402,0.87175,0.106739,0.603337,0.262278,0.703402,0.310424,0.814935,0.124495,0.403211,0.704273,0.564218,0.801713,0.613288,0.255892,0.548223,0.139387,0.402907,0.45225,0.548652,0.0754765,0.457693,0.200694,0.435375,0.967659,0.125915,0.178845,0.344732,0.261711,0.307077,0.92781,0.00993234,0.39645,0.873901,0.365909,0.75136,0.130137,0.13129,0.96064,0.440834,0.0523503,0.362974,0.541889,0.340706,0.550026,0.630626,0.420462,0.844376,0.358305,0.694569,0.626227,0.405919,0.248518,0.716244,0.238363,0.535389,0.707631,0.635538,0.921586,0.68918,0.372208,0.307887,0.862207,0.3221,0.667734,0.159668,0.494747,0.609006,0.501011,0.641534,0.801782,0.21461,0.424338,0.836377,0.494115,0.164076,0.130095,0.0901172,0.918762,0.049908,0.894705,0.710363,0.676759,0.126462,0.455863,0.320111,0.477572,0.34599,0.922067,0.934411,0.913851,0.0699719,0.12578,0.840224,0.0706159,0.534054,0.0865899,0.136594,0.725429,0.669087,0.0943743,0.100216,0.91094,0.0677305,0.896477,0.422377,0.904694,0.620726,0.765179,0.804795,0.189108,0.332289,0.19101,0.821241,0.331538,0.169972,0.992769,0.219989,0.936943,0.98903,0.813722,0.833186,0.00654662,0.331659,0.349235,0.524808,0.438208,0.696448,0.136311,0.797307,0.501,0.127174,0.116964,0.52368,0.871244,0.796566,0.0234587,0.889633,0.359653,0.540692,0.902379,0.925206,0.494409,0.978595,0.40303,0.862742,0.584618,0.0695347,0.281427,0.753279,0.871453,0.503199,0.531316,0.595405,0.206494,0.772168,0.123644,0.993893,0.951369,0.87786,0.347123,0.453825,0.938135,0.39241,0.981326,0.622441,0.000986636,0.163579,0.852581,0.691088,0.354326,0.988238,0.579633,0.204973,0.842241,0.980199,0.108481,0.346076,0.689438,0.458185,0.563484,0.870596,0.288089,0.767397,0.286084,0.56551,0.0146751,0.808608,0.390314,0.865928,0.19494,0.145786,0.418778,0.0995939,0.815261,0.932385,0.317761,0.920011,0.954983,0.777399,0.196783,0.334815,0.972544,0.357814,0.924288,0.387784,0.943185,0.02368,0.85785,0.596833,0.647891,0.357923,0.03506,0.509455,0.0302769,0.581574,0.756005,0.165724,0.664159,0.48506,0.0104815,0.312192,0.370642,0.658863,0.685561,0.315026,0.822235,0.135527,0.305893,0.1635,0.82745,0.99299,0.843399,0.87164,0.434371,0.826543,0.00799406,0.639976,0.660067,0.832195,0.859408,0.341096,0.633044,0.725435,0.688771,0.385492,0.621139,0.392864,0.616853,0.551004,0.708629,0.255549,0.199976,0.127555,0.214265,0.405833,0.187301,0.897906,0.857115,0.830404,0.171464,0.504806,0.10871,0.47977,0.986109,0.769483,0.259345,0.108597,0.0407177,0.301344,0.0193601,0.706264,0.648387,0.226376,0.13454,0.0777301,0.683968,0.340133,0.0507231,0.0641237,0.127513,0.679927,0.129248,0.215382,0.348993,0.723834,0.753294,0.365959,0.319031,0.182961,0.19277,0.778467,0.443104,0.669396,0.935681,0.317983,0.0361688,0.779462,0.451587,0.391096,0.446703,0.889142,0.808252,0.802855,0.888606,0.13569,0.585118,0.46278,0.33888,0.919275,0.0770339,0.530886,0.897568,0.971231,0.354643,0.420383,0.642156,0.0250833,0.450624,0.995772,0.16046,0.387693,0.183755,0.915465,0.802869,0.780138,0.2631,0.713856,0.279903,0.226106,0.769763,0.934141,0.0775743,0.780389,0.921715,0.439395,0.791676,0.569791,0.28958,0.690436,0.408414,0.876677,0.182497,0.440571,0.39587,0.227129,0.748234,0.334823,0.649718,0.0609928,0.507234,0.462138,0.0701971,0.407208,0.399043,0.371442,0.218891,0.766918,0.77498,0.6633,0.290761,0.596598,0.790491,0.241443,0.473831,0.396038,0.0874739,0.61933,0.703756,0.614065,0.168068,0.819785,0.472373,0.312256,0.684767,0.109789,0.775528,0.318884,0.882655,0.263248,0.638432,0.994781,0.306074,0.915652,0.420048,0.169179,0.0649372,0.73725,0.910007,0.362705,0.441497,0.322512,0.923108,0.152914,0.693932,0.144412,0.713538,0.407805,0.446763,0.2835,0.373663,0.290329,0.352831,0.526252,0.97802,0.0143774,0.343403,0.190183,0.91121,0.322047,0.482497,0.398273,0.176651,0.567604,0.484375,0.217816,0.711168,0.747415,0.88097,0.122367,0.821672,0.490381,0.534662,0.793013,0.00824851,0.968411,0.0649868,0.972954,0.491009,0.577816,0.0686433,0.444593,0.303935,0.941215,0.836958,0.915771,0.737926,0.635152,0.757194,0.971089,0.664852,0.473016,0.125355,0.0938461,0.139583,0.117051,0.257497,0.695531,0.113104,0.791149,0.284404,0.498794,0.0329841,0.253872,0.76353,0.516617,0.815735,0.676726,0.0542496,0.184934,0.262075,0.00462735,0.28951,0.116865,0.392506,0.1053,0.525137,0.50942,0.901995,0.713659,0.760301,0.318264,0.953758,0.527123,0.127766,0.00287199,0.115282,0.817369,0.253907,0.188771,0.431995,0.892052,0.269063,0.580835,0.927341,0.108917,0.61439,0.638775,0.19696,0.288137,0.109384,0.316726,0.367269,0.930262,0.867381,0.510128,0.927578,0.126303,0.306356,0.874394,0.708471,0.385896,0.877462,0.531427,0.758313,0.156014,0.304876,0.185222,0.0158551,0.444406,0.844951,0.459248,0.310221,0.574444,0.557222,0.256334,0.350751,0.266877,0.890665,0.74684,0.7475,0.018717,0.201361,0.877124,0.489504,0.895938,0.0311652,0.178375,0.763265,0.307576,0.968059,0.566837,0.622515,0.130803,0.870107,0.908325,0.911747,0.412072,0.341336,0.462754,0.303758,0.656163,0.034117,0.217061,0.367559,0.182951,0.64696,0.964453,0.0885186,0.74685,0.361412,0.476212,0.399648,0.729665,0.612227,0.818013,0.909259,0.0278002,0.400413,0.564336,0.59823,0.370326,0.081172,0.642317,0.35776,0.63981,0.716771,0.440576,0.77615,0.356778,0.783104,0.6002,0.0207736,0.377813,0.555081,0.138462,0.349372,0.819315,0.847125,0.366592,0.0491624,0.190086,0.972415,0.143841,0.150635,0.543136,0.668678,0.788923,0.16197,0.374412,0.340278,0.317415,0.233812,0.120316,0.922097,0.204416,0.575654,0.311752,0.118785,0.596342,0.623629,0.883843,0.757085,0.413807,0.129754,0.200249,0.120764,0.102436,0.995997,0.102926,0.768559,0.311433,0.466462,0.333158,0.974469,0.255867,0.0217864,0.433658,0.888853,0.106426,0.5978,0.254327,0.660319,0.751342,0.0281131,0.810978,0.580196,0.714246,0.175244,0.850235,0.624193,0.124352,0.365536,0.840174,0.964677,0.419715,0.166635,0.632057,0.0447727,0.496899,0.374768,0.233173,0.249637,0.978286,0.981709,0.935728,0.524486,0.135121,0.605286,0.00601763,0.257799,0.218016,0.723717,0.792311,0.870824,0.658448,0.350807,0.00354993,0.102339,0.26392,0.815208,0.328543,0.445923,0.876986,0.919408,0.27315,0.623904,0.479337,0.570731,0.213753,0.265508,0.146011,0.979554,0.485356,0.248357,0.131919,0.811215,0.822198,0.265945,0.349116,0.55758,0.386924,0.926454,0.917155,0.698898,0.208202,0.328971,0.257994,0.0327069,0.196053,0.602715,0.619499,0.214149,0.0765565,0.295881,0.898073,0.361076,0.535563,0.475559,0.531368,0.267377,0.462007,0.0393973,0.0714675,0.14677,0.514698,0.98277,0.748472,0.720404,0.910962,0.646808,0.794898,0.256259,0.0934696,0.183025,0.284203,0.536603,0.828138,0.274677,0.703919,0.137481,0.157155,0.0378345,0.322246,0.30073,0.638943,0.257168,0.64088,0.947993,0.255997,0.792151,0.241582,0.251847,0.539003,0.146185,0.67105,0.614605,0.639288,0.950803,0.655344,0.361781,0.631848,0.582483,0.514008,0.302123,0.636843,0.024767,0.208545,0.794339,0.756929,0.00606352,0.538516,0.190669,0.397465,0.891945,0.606077,0.567321,0.831429,0.0964224,0.452648,0.387997,0.114246,0.767231,0.361491,0.686222,0.388186,0.238214,0.0800446,0.348266,0.271649,0.958359,0.0177978,0.816236,0.765215,0.786187,0.928494,0.577808,0.893748,0.951273,0.83371,0.810089,0.431358,0.324158,0.0944445,0.651504,0.755669,0.345191,0.819681,0.987966,0.619181,0.394063,0.893987,0.695154,0.582695,0.477767,0.601351,0.369369,0.506846,0.0643771,0.144765,0.182994,0.138075,0.891045,0.750095,0.0738334,0.681038,0.429892,0.303988,0.40273,0.786613,0.166743,0.177168,0.612958,0.266167,0.408377,0.233214,0.183641,0.826332,0.330111,0.340254,0.311892,0.0579316,0.475855,0.993321,0.777959,0.400341,0.73187,0.0719341,0.323758,0.485661,0.962166,0.977871,0.0550814,0.924429,0.402231,0.580542,0.634269,0.026093,0.936867,0.814951,0.848682,0.335158,0.760998,0.848169,0.393299,0.452958,0.152737,0.629209,0.0725619,0.456911,0.425274,0.895643,0.66488,0.903473,0.964861,0.0763881,0.788479,0.952306,0.0734549,0.617012,0.232513,0.573357,0.443557,0.0106558,0.506848,0.205765,0.605894,0.0404016,0.579078,0.752237,0.894036,0.249108,0.420694,0.533873,0.720567,0.0919893,0.432094,0.142082,0.308074,0.25229,0.30881,0.796519,0.8457,0.80536,0.0138458,0.862554,0.208264,0.0204153,0.970955,0.0474702,0.0893101,0.103391,0.8114,0.0216148,0.334878,0.791491,0.987192,0.275637,0.926955,0.666149,0.857035,0.804224,0.759794,0.0542951,0.459078,0.530512,0.590204,0.614621,0.802067,0.00569761,0.578222,0.201845,0.406556,0.407623,0.18003,0.250785,0.438858,0.976468,0.440875,0.285009,0.057034,0.544903,0.584639,0.796005,0.3734,0.223903,0.358978,0.754429,0.799291,0.546776,0.992358,0.808219,0.261307,0.516549,0.421333,0.277067,0.742684,0.468824,0.740604,0.497202,0.108817,0.471937,0.429789,0.603223,0.937291,0.869,0.847282,0.73658,0.393218,0.121871,0.782782,0.92309,0.128474,0.535302,0.890139,0.396756,0.146965,0.936549,0.278719,0.079029,0.207946,0.988459,0.971123,0.108783,0.0129444,0.617712,0.652678,0.805339,0.766283,0.380829,0.523229,0.0409952,0.658277,0.537452,0.910087,0.887815,0.698641,0.446483,0.605642,0.794376,0.0484079,0.48878,0.314365,0.223662,0.417473,0.416345,0.5671,0.470625,0.546728,0.85331,0.60931,0.194561,0.788144,|0.316264,0.359615,0.169722,0.413088,0.869183,0.42382,0.616932,0.423933,0.680415,0.362378,0.252923,0.520152,0.351527,0.142475,0.0033623,0.239421,0.688895,0.677015,0.951794,0.789717,0.776578,0.194987,0.305857,0.388491,0.828529,0.590274,0.952468,0.951281,0.378651,0.235663,0.236204,0.979578,0.402593,0.183924,0.398708,0.0835826,0.278254,0.290881,0.86315,0.31501,0.100547,0.578726,0.606363,0.897674,0.937805,0.316752,0.603547,0.620867,0.937742,0.643511,0.775456,0.261668,0.653205,0.56117,0.431535,0.564831,0.947788,0.159232,0.365622,0.818593,0.0361329,0.730626,0.22507,0.908047,0.819612,0.391306,0.181199,0.447989,0.461491,0.76239,0.0645357,0.572795,0.268105,0.091253,0.940148,0.739118,0.51247,0.348013,0.407754,0.149695,0.27502,0.593928,0.3802,0.917686,0.333527,0.430165,0.90633,0.588899,0.5856,0.931684,0.345122,0.119418,0.815403,0.974964,0.62977,0.611824,0.551181,0.67873,0.870369,0.206027,0.77817,0.402941,0.261009,0.954255,0.950373,0.254793,0.685237,0.100716,0.770798,0.54613,0.803316,0.213141,0.826257,0.0755753,0.705132,0.621476,0.448509,0.092418,0.125591,0.0692216,0.347844,0.531455,0.770292,0.266762,0.576599,0.419152,0.446403,0.890543,0.32281,0.625079,0.0441136,0.187917,0.812495,0.332103,0.729103,0.0610079,0.940466,0.424709,0.443627,0.583811,0.831411,0.542286,0.129254,0.536104,0.891984,0.636794,0.082551,0.043282,0.279246,0.0614438,0.44476,0.286085,0.143434,0.436049,0.141601,0.749807,0.751092,0.266402,0.382699,0.977326,0.0922917,0.704834,0.751953,0.302571,0.236761,0.925502,0.641161,0.434253,0.68711,0.0203571,0.824645,0.438164,0.824159,0.939611,0.140724,0.673168,0.974915,0.00167704,0.851102,0.437222,0.192993,0.191144,0.461768,0.746891,0.812433,0.545282,0.105565,0.737921,0.749134,0.428791,0.881727,0.629809,0.460045,0.506493,0.401845,0.376646,0.763161,0.182384,0.892707,0.362812,0.0231889,0.830956,0.846567,0.28806,0.906619,0.808685,0.472834,0.718131,0.0452083,0.0758823,0.798018,0.310286,0.820377,0.731394,0.354212,0.248192,0.47308,0.972655,0.97541,0.615996,0.651082,0.0102797,0.854019,0.844672,0.683028,0.664697,0.95324,0.257494,0.00703204,0.0857189,0.692954,0.87746,0.695861,0.165511,0.103123,0.433262,0.89002,0.0139055,0.344691,0.48452,0.43879,0.996767,0.885005,0.818589,0.855351,0.286085,0.0828985,0.794639,0.905775,0.667448,0.194716,0.368426,0.193202,0.957165,0.0937884,0.380527,0.274946,0.958173,0.0852576,0.975998,0.617779,0.816421,0.266199,0.770692,0.241583,0.182241,0.122144,0.278237,0.323316,0.766337,0.658862,0.388814,0.904588,0.207024,0.957537,0.147185,0.554859,0.819056,0.666864,0.789351,0.314762,0.52179,0.304003,0.398872,0.132909,0.581462,0.712945,0.450955,0.091239,0.821847,0.280736,0.525229,0.574802,0.842144,0.741781,0.395827,0.0819672,0.816735,0.647859,0.159654,0.828918,0.234307,0.196557,0.372226,0.47581,0.089371,0.903326,0.201099,0.218389,0.356545,0.865793,0.279282,0.380697,0.818352,0.401592,0.719552,0.952458,0.726771,0.899448,0.193061,0.358455,0.986293,0.261649,0.582952,0.0559741,0.338214,0.661315,0.824535,0.203241,0.118598,0.153938,0.451366,0.0906873,0.457925,0.159378,0.865527,0.373422,0.368006,0.821333,0.190566,0.111657,0.350818,0.224584,0.125556,0.494395,0.354161,0.284501,0.261103,0.0124714,0.217901,0.58952,0.668845,0.289463,0.400222,0.148225,0.782093,0.781878,0.963623,0.843285,0.65301,0.622917,0.0553719,0.256276,0.259318,0.99454,0.85851,0.831403,0.360146,0.113438,0.240903,0.932921,0.310391,0.856432,0.106495,0.323366,0.174634,0.504634,0.437532,0.481594,0.177364,0.873226,0.749743,0.0327654,0.800661,0.605668,0.404458,0.0104933,0.768492,0.731042,0.331954,0.786536,0.875469,0.132191,0.0783638,0.400059,0.487229,0.0564722,0.993496,0.621731,0.25655,0.26038,0.973018,0.284107,0.266729,0.871292,0.0829066,0.773284,0.0869191,0.093313,0.452523,0.397754,0.0739829,0.727341,0.847788,0.201762,0.384868,0.501323,0.838003,0.770521,0.243302,0.769996,0.768735,0.00749594,0.0201166,0.754884,0.965525,0.931697,0.745932,0.296512,0.0710667,0.1439,0.826524,0.331522,0.517882,0.477125,0.381464,0.547349,0.748817,0.698936,0.627521,0.895599,0.259236,0.189371,0.473516,0.344796,0.351253,0.3748,0.701765,0.410247,0.18929,0.0696365,0.593358,0.737508,0.568417,0.484674,0.477162,0.968614,0.996386,0.0934319,0.330692,0.0131968,0.424474,0.569892,0.172768,0.201372,0.567624,0.633155,0.426059,0.442987,0.875829,0.284729,0.294089,0.449601,0.809248,0.168095,0.791009,0.0758728,0.976682,0.359193,0.0429356,0.732552,0.25303,0.643339,0.622395,0.192534,0.240197,0.00345927,0.543973,0.47541,0.280036,0.903503,0.952418,0.258251,0.241185,0.668969,0.579549,0.572069,0.447684,0.560652,0.749807,0.246958,0.0588102,0.793445,0.00495178,0.675597,0.407332,0.706258,0.928097,0.597292,0.479178,0.0659673,0.201063,0.529162,0.855448,0.248435,0.184871,0.658655,0.827723,0.603312,0.827821,0.999351,0.608246,0.129759,0.929811,0.20885,0.428442,0.527466,0.977405,0.732166,0.9028,0.000332892,0.380523,0.469183,0.13058,0.778644,0.599587,0.567439,0.920051,0.485327,0.375896,0.690475,0.569635,0.559587,0.453356,0.681363,0.407041,0.00933468,0.0562999,0.800372,0.731649,0.835367,0.0712543,0.801467,0.300038,0.0356224,0.122741,0.172901,0.939842,0.368748,0.0775984,0.910789,0.163904,0.40308,0.220092,0.135025,0.133039,0.269435,0.0471626,0.099661,0.290028,0.73925,0.877377,0.583619,0.998113,0.336782,0.657206,0.426944,0.313258,0.633938,0.29832,0.730199,0.599511,0.247904,0.27762,0.610218,0.889161,0.338254,0.744393,0.36902,0.940059,0.760094,0.223948,0.478896,0.806767,0.0255991,0.35563,0.158686,0.88103,0.908771,0.190064,0.152348,0.349941,0.602605,0.608405,0.795804,0.667541,0.991689,0.328013,0.237392,0.0856237,0.969977,0.504631,0.143229,0.998132,0.133822,0.0065223,0.581268,0.0977658,0.0363209,0.596632,0.337165,0.914324,0.644236,0.678082,0.835145,0.957644,0.577373,0.515393,0.20395,0.302552,0.149285,0.00173575,0.919953,0.872819,0.962756,0.446664,0.841634,0.639672,0.424593,0.61546,0.678263,0.265581,0.583909,0.884342,0.0449408,0.659571,0.166041,0.319095,0.522102,0.673918,0.809895,0.6601,0.598366,0.787652,0.13973,0.406928,0.96886,0.355863,0.325086,0.373363,0.284627,0.973152,0.556798,0.708897,0.645629,0.432235,0.710231,0.682654,0.72045,0.556082,0.578555,0.373323,0.961034,0.381915,0.848677,0.805997,0.935332,0.0328709,0.999186,0.94571,0.271214,0.071813,0.888987,0.512639,0.0149518,0.288449,0.813376,0.466785,0.432683,0.627374,0.37571,0.335811,0.0275937,0.262535,0.736942,0.809366,0.470237,0.897391,0.725114,0.909188,0.455061,0.988094,0.660963,0.223943,0.0917668,0.774872,0.644392,0.631285,0.246383,0.0274312,0.569078,0.423458,0.781317,0.986122,0.917165,0.903516,0.168464,0.201663,0.449918,0.326537,0.205506,0.08513,0.457413,0.814179,0.147999,0.0100214,0.982996,0.225579,0.316407,0.20357,0.242173,0.903755,0.74101,0.736202,0.218033,0.287064,0.674714,0.545397,0.45652,0.0663957,0.403802,0.0209318,0.182018,0.147165,0.567924,0.83909,0.324492,0.731989,0.893148,0.790404,0.168778,0.251031,0.657308,0.458833,0.00938034,0.840582,0.94563,0.62437,0.890477,0.922421,0.566975,0.840295,0.781806,0.366583,0.794183,0.177839,0.779145,0.645557,0.650872,0.659434,0.800822,0.0728604,0.616929,0.793863,0.45327,0.358687,0.37112,0.337777,0.319102,0.791291,0.48323,0.694439,0.744046,0.834895,0.849422,0.24747,0.290371,0.125211,0.803074,0.933881,0.772684,0.699912,0.684679,0.289463,0.751362,0.761349,0.370931,0.878029,0.591274,0.661708,0.866243,0.217155,0.328429,0.653922,0.333798,0.0652387,0.898695,0.704348,0.462273,0.0794025,0.157251,0.967862,0.759539,0.584519,0.0782892,0.18117,0.397694,0.64256,0.0164605,0.590021,0.486438,0.588238,0.054436,0.511232,0.746092,0.548321,0.61649,0.749614,0.573085,0.567898,0.448781,0.158816,0.255463,0.713438,0.87072,0.771901,0.154689,0.126798,0.503722,0.964902,0.690825,0.602557,0.957669,0.395113,0.0387685,0.774063,0.181554,0.633208,0.36618,0.0701824,0.440116,0.236741,0.937167,0.769894,0.795022,0.334292,0.977471,0.332,0.215702,0.526858,0.753126,0.817737,0.733137,0.599118,0.0487472,0.464611,0.500882,0.96853,0.200001,0.361139,0.905842,0.485862,0.403245,0.678187,0.253808,0.386286,0.888001,0.137975,0.442708,0.901321,0.325081,0.773533,0.195045,0.992634,0.300954,0.0460956,0.823552,0.14763,0.814063,0.502822,0.849818,0.146193,0.714935,0.953381,0.230405,0.48304,0.101017,0.692193,0.142326,0.698453,0.827864,0.654406,0.298765,0.546908,0.260852,0.978971,0.845002,0.712974,0.0157792,0.546578,0.769251,0.0833701,0.893924,0.305374,0.444856,0.442297,0.959192,0.491896,0.665822,0.62884,0.76221,0.710614,0.20786,0.373656,0.691173,0.746809,0.734655,0.714834,0.810659,0.632584,0.856542,0.170098,0.557461,0.00524151,0.702349,0.40135,0.796291,0.0366171,0.538404,0.320704,0.487029,0.645749,0.0967749,0.135338,0.942017,0.516778,0.649583,0.334023,0.0295243,0.622674,0.527544,0.972692,0.99141,0.333596,0.128066,0.93151,0.758398,0.652331,0.232139,0.0890554,0.644273,0.649321,0.160231,0.946327,0.278616,0.0763873,0.454644,0.725305,0.985277,0.945504,0.0285116,0.68584,0.0635843,0.197195,0.85597,0.130683,0.518453,0.427739,0.931627,0.999003,0.172459,0.55614,0.0502909,0.768794,0.612426,0.460541,0.0302167,0.936727,0.623697,0.774953,0.950231,0.973215,0.0467089,0.275174,0.900678,0.866539,0.244163,0.889949,0.784397,0.848008,|0.225574,0.626017,0.206114,0.761848,0.377402,0.874001,0.262611,0.62106,0.695214,0.333269,0.759673,0.0861445,0.252365,0.158683,0.307915,0.901582,0.213554,0.652483,0.280426,0.360905,0.259248,0.741136,0.103065,0.551267,0.814979,0.806912,0.779207,0.847994,0.0612332,0.646065,0.0478839,0.0401913,0.241848,0.685386,0.191687,0.48688,0.160754,0.921469,0.311211,0.310414,0.825435,0.00139666,0.809693,0.459751,0.741411,0.147067,0.178262,0.805201,0.21218,0.485231,0.0810757,0.529365,0.424975,0.423495,0.703255,0.776407,0.311838,0.923567,0.277858,0.302658,0.279171,0.972081,0.71076,0.401112,0.638403,0.282181,0.0776054,0.27017,0.99171,0.114484,0.733593,0.248381,0.59483,0.595377,0.842477,0.97293,0.969448,0.0541787,0.942169,0.171102,0.343095,0.580838,0.259465,0.909354,0.123779,0.985,0.643895,0.58256,0.220579,0.167592,0.325868,0.743017,0.163705,0.0973588,0.565992,0.450456,0.272496,0.415859,0.149996,0.989649,0.144311,0.289357,0.731878,0.550349,0.507931,0.956254,0.624615,0.357308,0.0538967,0.0494994,0.534988,0.17139,0.165916,0.457485,0.919339,0.954536,0.58461,0.857166,0.145184,0.847915,0.922039,0.166186,0.869494,0.855312,0.685048,0.408523,0.668568,0.251506,0.941373,0.921966,0.294931,0.191897,0.639554,0.114772,0.389822,0.258355,0.0586768,0.472391,0.734304,0.476129,0.256094,0.424361,0.563092,0.205018,0.0508901,0.832849,0.0639248,0.224638,0.8569,0.760216,0.675014,0.111391,0.336961,0.505441,0.495031,0.102478,0.180148,0.365711,0.703689,0.512796,0.653134,0.890497,0.414797,0.657022,0.835149,0.676943,0.69481,0.62749,0.820547,0.591681,0.392024,0.563064,0.888541,0.846212,0.687177,0.762851,0.221201,0.592384,0.616408,0.063199,0.334615,0.714752,0.787868,0.107844,0.532599,0.505341,0.463337,0.0155681,0.710871,0.251255,0.469561,0.607047,0.432491,0.548205,0.129919,0.260765,0.877266,0.480375,0.0484968,0.261279,0.234895,0.833167,0.132895,0.489324,0.195606,0.795348,0.453505,0.129041,0.939289,0.70164,0.630361,0.719042,0.855971,0.604934,0.895117,0.988927,0.101266,0.496701,0.847068,0.578747,0.736574,0.539837,0.930328,0.496274,0.399949,0.588807,0.35146,0.204509,0.130612,0.859525,0.0651444,0.640736,0.80154,0.643155,0.64165,0.874944,0.793696,0.645021,0.151226,0.431524,0.136553,0.789439,0.365997,0.342739,0.150806,0.289183,0.289005,0.243085,0.513887,0.459832,0.931454,0.648559,0.256118,0.723893,0.871641,0.696467,0.668586,0.958434,0.987612,0.179267,0.803655,0.356031,0.202192,0.155986,0.201127,0.326117,0.199055,0.650526,0.439408,0.724159,0.59727,0.632206,0.582899,0.927014,0.29344,0.134948,0.119215,0.66654,0.38096,0.38666,0.402164,0.555901,0.583628,0.716857,0.0985641,0.618459,0.396616,0.518721,0.400085,0.110016,0.947202,0.64735,0.934966,0.508859,0.42325,0.299064,0.11309,0.517475,0.440997,0.302914,0.603491,0.432315,0.957226,0.00585824,0.865677,0.322577,0.449246,0.954944,0.520154,0.515465,0.210235,0.671631,0.434413,0.991883,0.446673,0.594672,0.515408,0.980056,0.5033,0.802533,0.139301,0.580652,0.482387,0.492473,0.0183544,0.903278,0.78628,0.293053,0.274503,0.577885,0.403153,0.404966,0.84004,0.546519,0.597437,0.331545,0.207432,0.946897,0.803809,0.405297,0.599163,0.231534,0.879957,0.18407,0.702762,0.406627,0.777599,0.625328,0.245642,0.620634,0.164597,0.867639,0.847342,0.71159,0.471287,0.562069,0.449809,0.245241,0.654806,0.691862,0.376193,0.319528,0.316893,0.0833254,0.361343,0.887791,0.436128,0.00679153,0.903579,0.313961,0.505928,0.306841,0.371841,0.756949,0.703874,0.196364,0.303354,0.864164,0.756002,0.76696,0.023486,0.120947,0.831731,0.631369,0.0953946,0.393475,0.436876,0.456552,0.383165,0.384633,0.696297,0.266607,0.890908,0.0702085,0.117965,0.790884,0.593962,0.530107,0.39437,0.389257,0.169113,0.124261,0.0428987,0.139578,0.305346,0.568582,0.704787,0.274093,0.736483,0.862542,0.498078,0.597505,0.0288584,0.678269,0.755062,0.368188,0.841153,0.941195,0.576237,0.468316,0.885906,0.196819,0.100212,0.987699,0.830616,0.226832,0.610347,0.0575221,0.336042,0.30088,0.0810788,0.904402,0.775631,0.449378,0.986737,0.863738,0.968088,0.106681,0.81134,0.188958,0.974273,0.209555,0.824234,0.158173,0.230845,0.518172,0.778562,0.496676,0.33751,0.744259,0.34244,0.369935,0.175532,0.088552,0.999674,0.511095,0.609119,0.781501,0.571443,0.984726,0.243205,0.958857,0.148859,0.62093,0.995295,0.900196,0.780336,0.118207,0.981457,0.426452,0.479434,0.636057,0.191949,0.451901,0.41788,0.280129,0.52471,0.245143,0.655323,0.718405,0.0807699,0.611005,0.503957,0.226381,0.126715,0.315142,0.755304,0.871052,0.773956,0.980846,0.15317,0.603455,0.0221507,0.0714764,0.843287,0.517033,0.190463,0.715632,0.736252,0.533033,0.597618,0.0370963,0.258286,0.190429,0.201973,0.665493,0.625893,0.179712,0.476753,0.945215,0.54403,0.155926,0.804082,0.0453044,0.909604,0.0644352,0.577404,0.474838,0.87115,0.714074,0.369229,0.753053,0.766153,0.823925,0.622924,0.283185,0.762225,0.0346208,0.979755,0.489366,0.164418,0.648892,0.537129,0.925129,0.107075,0.543515,0.962244,0.794987,0.757959,0.704593,0.0696929,0.415978,0.310752,0.459109,0.303214,0.738445,0.297662,0.472494,0.0230647,0.684513,0.412876,0.358904,0.343306,0.196173,0.063409,0.301331,0.387743,0.536128,0.331926,0.267796,0.880384,0.832367,0.369158,0.6551,0.881871,0.873595,0.611561,0.00432944,0.314285,0.201721,0.850804,0.898817,0.380817,0.188499,0.237508,0.706262,0.999901,0.822812,0.920603,0.109125,0.0916217,0.463557,0.894837,0.719355,0.184096,0.933755,0.814574,0.968882,0.931261,0.259329,0.829364,0.268688,0.569013,0.410258,0.420523,0.578868,0.229857,0.809176,0.0920929,0.342788,0.555718,0.172249,0.0896046,0.394096,0.998569,0.838052,0.545244,0.188857,0.810142,0.0929181,0.325834,0.158339,0.965186,0.717501,0.667884,0.310064,0.748164,0.511791,0.28805,0.172964,0.0275703,0.709468,0.137387,0.374364,0.250762,0.863061,0.212742,0.757355,0.892424,0.281352,0.0616871,0.737952,0.0295975,0.603925,0.906123,0.634658,0.454363,0.955169,0.894758,0.0408454,0.324671,0.946006,0.0787565,0.339964,0.543464,0.295895,0.881479,0.984859,0.982349,0.736834,0.602384,0.396384,0.000589967,0.685111,0.509521,0.200851,0.990856,0.319254,0.833478,0.0574406,0.122232,0.0795234,0.437997,0.941011,0.72327,0.99735,0.283432,0.543638,0.404181,0.153042,0.102988,0.230241,0.368081,0.82758,0.638889,0.686832,0.303466,0.519244,0.206707,0.419626,0.833173,0.791205,0.490824,0.269203,0.468573,0.532189,0.160818,0.192892,0.561484,0.479043,0.426456,0.0757477,0.365865,0.38742,0.234304,0.95456,0.989081,0.435767,0.29329,0.826953,0.319534,0.25853,0.774376,0.0377962,0.0569394,0.622374,0.658015,0.282263,0.630039,0.124787,0.401941,0.291911,0.2855,0.20369,0.691511,0.580721,0.912454,0.241615,0.336804,0.583146,0.31048,0.574546,0.832877,0.681408,0.271917,0.497338,0.923241,0.548172,0.532859,0.75069,0.838477,0.869103,0.205348,0.674042,0.406203,0.635088,0.318597,0.51353,0.325159,0.631667,0.274962,0.157917,0.903306,0.630129,0.00904799,0.100364,0.408542,0.326469,0.592884,0.265424,0.613683,0.178889,0.988795,0.533692,0.124021,0.267932,0.450633,0.0976968,0.840247,0.75853,0.905257,0.27357,0.384098,0.654628,0.430231,0.153453,0.636387,0.064554,0.587302,0.293891,0.367306,0.0522595,0.646045,0.430635,0.56406,0.710052,0.805433,0.320413,0.738499,0.82796,0.326799,0.327984,0.84985,0.56516,0.193876,0.405417,0.411495,0.834906,0.513441,0.105593,0.665046,0.0109231,0.587215,0.776962,0.889059,0.107969,0.0014357,0.615332,0.446555,0.805003,0.0131583,0.37377,0.641195,0.545602,0.0254064,0.267421,0.243948,0.217087,0.611174,0.995299,0.558953,0.887311,0.809846,0.296069,0.623927,0.0427684,0.434939,0.722042,0.373304,0.282619,0.413216,0.240836,0.817239,0.229544,0.787899,0.736564,0.907106,0.737798,0.105605,0.846958,0.653031,0.191098,0.38454,0.556566,0.722456,0.913611,0.931964,0.497174,0.219896,0.112198,0.829711,0.318711,0.940209,0.192957,0.902363,0.61697,0.380727,0.698335,0.511974,0.922487,0.209131,0.573644,0.440246,0.711748,0.828657,0.985565,0.335845,0.342391,0.611498,0.196931,0.117757,0.541298,0.613738,0.896947,0.53969,0.854925,0.0469935,0.497556,0.147885,0.975764,0.802325,0.53208,0.694595,0.680305,0.669204,0.514318,0.0671531,0.995641,0.141115,0.0469406,0.261605,0.0879415,0.439538,0.14764,0.961854,0.751917,0.255341,0.403581,0.0469828,0.620559,0.0482464,0.29803,0.67485,0.404572,0.379118,0.0240309,0.407532,0.0656241,0.0846063,0.285075,0.750624,0.383952,0.18001,0.957502,0.0827253,0.43365,0.602431,0.279841,0.634906,0.505361,0.968883,0.918035,0.688633,0.0228206,0.225356,0.702386,0.561614,0.51135,0.546229,0.0301054,0.262715,0.0415733,0.651271,0.200748,0.560103,0.567491,0.302753,0.158449,0.462525,0.0416694,0.94919,0.905828,0.0855844,0.853205,0.662173,0.931676,0.667331,0.0596898,0.753977,0.711565,0.992008,0.196313,0.615688,0.435202,0.774599,0.172819,0.737161,0.801702,0.0874276,0.622891,0.0952461,0.432562,0.460115,0.462743,0.000832736,0.383133,2.15173e-05,0.626049,0.839763,0.73007,0.251432,0.820947,0.149421,0.705725,0.657556,0.416621,0.70091,0.407027,0.118849,0.352959,0.647745,0.237954,0.725741,0.949783,0.00354153,0.969488,0.936847,0.925575,0.0717496,0.99196,0.121956,0.0575661,0.849324,0.998487,0.0154981,0.346696,0.851906,0.247596,0.572546,0.938854,0.967313,0.811431,0.333496,0.364001,0.475792,0.777399,0.976629,0.956271,0.291855,0.882212,|0.564774,0.299102,0.0742206,0.882414,0.206078,0.252461,0.101969,0.115395,0.52242,0.76038,0.10172,0.200316,0.838662,0.0987055,0.31873,0.238336,0.902307,0.777449,0.0400534,0.476567,0.861581,0.510619,0.83072,0.778456,0.534973,0.893889,0.0621368,0.66782,0.173775,0.303065,0.148903,0.0223334,0.325324,0.452447,0.117117,0.498012,0.313056,0.0763855,0.211549,0.678449,0.907344,0.973065,0.640015,0.761842,0.13322,0.347499,0.119969,0.653999,0.660139,0.067883,0.188788,0.368304,0.524322,0.513471,0.352058,0.928812,0.575108,0.111275,0.431275,0.754927,0.204421,0.547052,0.732855,0.699318,0.804157,0.846912,0.525768,0.844524,0.767532,0.914918,0.185849,0.141811,0.179948,0.0594521,0.750283,0.381666,0.709634,0.398738,0.849634,0.691649,0.106779,0.33135,0.899397,0.656787,0.625131,0.794712,0.278409,0.700148,0.656473,0.219532,0.227717,0.372527,0.399631,0.915408,0.394718,0.832399,0.634486,0.789818,0.310908,0.117342,0.528502,0.854763,0.313802,0.475108,0.432532,0.533058,0.414559,0.808016,0.729428,0.748267,0.552855,0.171428,0.859909,0.284178,0.0429688,0.527202,0.204782,0.45881,0.116861,0.0560772,0.774866,0.601277,0.666568,0.87717,0.674603,0.147053,0.931745,0.446951,0.738879,0.371448,0.339201,0.172424,0.0211838,0.113026,0.534123,0.794711,0.292664,0.831422,0.513765,0.818752,0.963045,0.563604,0.454475,0.156316,0.815087,0.0368601,0.487868,0.856846,0.482271,0.989792,0.367455,0.553017,0.208694,0.582653,0.253647,0.58401,0.382365,0.19972,0.157199,0.919767,0.627451,0.0888423,0.560958,0.787079,0.672056,0.720405,0.514714,0.158058,0.264943,0.553239,0.961773,0.792594,0.214216,0.10428,0.796466,0.610684,0.225257,0.469232,0.553326,0.0222592,0.025963,0.690613,0.0139225,0.187371,0.68696,0.265063,0.541762,0.842708,0.830251,0.434437,0.484135,0.506122,0.252809,0.178277,0.0897031,0.553625,0.368688,0.758087,0.95255,0.3165,0.144154,0.462701,0.975493,0.492272,0.733914,0.896798,0.22286,0.250131,0.851449,0.553978,0.572452,0.785037,0.104599,0.388241,0.612958,0.79165,0.758462,0.970328,0.179364,0.802387,0.103867,0.398853,0.214196,0.66253,0.857051,0.291957,0.396685,0.815875,0.383405,0.812231,0.776954,0.484926,0.300369,0.549658,0.676289,0.519522,0.0177901,0.643782,0.271979,0.954576,0.941237,0.944396,0.0722973,0.0761181,0.390981,0.028695,0.848023,0.465117,0.275117,0.545374,0.366446,0.600086,0.748953,0.978403,0.887926,0.828132,0.383577,0.83523,0.085568,0.621501,0.165552,0.76387,0.183328,0.851006,0.550993,0.180799,0.226955,0.23098,0.447066,0.845247,0.694564,0.120419,0.350435,0.152932,0.443199,0.332041,0.626046,0.418353,0.375674,0.292055,0.971574,0.778458,0.516139,0.0548556,0.0103095,0.971635,0.0408128,0.526607,0.504959,0.380093,0.407406,0.852211,0.705116,0.397029,0.850508,0.850582,0.994338,0.323195,0.977359,0.68093,0.413795,0.352312,0.111865,0.0571166,0.971017,0.30606,0.286145,0.395389,0.553483,0.917668,0.778852,0.648769,0.108549,0.896401,0.0994742,0.702953,0.0667501,0.814673,0.169663,0.997509,0.26171,0.918579,0.986221,0.0795855,0.232205,0.871224,0.788792,0.643525,0.799771,0.938005,0.717695,0.0866097,0.898822,0.695354,0.782995,0.0707222,0.710279,0.768178,0.0786772,0.464292,0.689488,0.214968,0.437818,0.158266,0.108612,0.968952,0.0337767,0.050671,0.537302,0.828491,0.13586,0.313765,0.680175,0.999812,0.561993,0.322321,0.363153,0.248041,0.921489,0.695291,0.786356,0.360366,0.497812,0.959526,0.883504,0.00228453,0.299225,0.256266,0.934101,0.421079,0.914062,0.436159,0.103544,0.269339,0.994154,0.885771,0.235437,0.908951,0.224206,0.12704,0.113246,0.0704585,0.256226,0.471265,0.708927,0.663502,0.210239,0.314367,0.548986,0.0865694,0.739143,0.0381812,0.61691,0.109031,0.233381,0.237221,0.97234,0.555139,0.726866,0.319645,0.88672,0.180401,0.759083,0.594877,0.0147238,0.569096,0.982248,0.10654,0.728534,0.148306,0.816379,0.827985,0.841303,0.558194,0.302913,0.334481,0.0632825,0.566067,0.253401,0.148064,0.708378,0.914255,0.523711,0.244281,0.888331,0.086636,0.581291,0.747501,0.152114,0.219994,0.479979,0.987829,0.747095,0.544061,0.0540037,0.0778402,0.0787287,0.926606,0.123668,0.00346559,0.669423,0.776683,0.984815,0.712986,0.621259,0.110537,0.393424,0.849501,0.873655,0.557931,0.0349171,0.681628,0.0387415,0.309727,0.000532627,0.350515,0.127985,0.876399,0.629412,0.700458,0.508241,0.638661,0.0968643,0.735369,0.135672,0.660296,0.00142497,0.94289,0.797868,0.660653,0.61636,0.346576,0.219644,0.141484,0.0158412,0.413364,0.147748,0.809438,0.822344,0.52314,0.716925,0.655724,0.959703,0.253417,0.433867,0.453692,0.765667,0.550524,0.682127,0.230688,0.130038,0.87437,0.22652,0.230035,0.00834793,0.546426,0.33105,0.56517,0.719613,0.497565,0.370913,0.30489,0.684928,0.787531,0.90802,0.503624,0.20459,0.0229879,0.583557,0.356348,0.094827,0.75475,0.0159719,0.79971,0.27738,0.927175,0.483174,0.694587,0.608701,0.354803,0.304479,0.774516,0.503743,0.941378,0.204091,0.181168,0.84743,0.756687,0.218751,0.27849,0.866162,0.00175261,0.0756422,0.798607,0.364719,0.0732252,0.648637,0.657814,0.654406,0.511032,0.0413783,0.409906,0.354251,0.0766479,0.25186,0.400702,0.0484763,0.192575,0.137534,0.999095,0.611926,0.305431,0.0737312,0.988111,0.847713,0.454789,0.193382,0.979973,0.0075956,0.641027,0.823143,0.829786,0.956122,0.811011,0.926356,0.503483,0.946789,0.95384,0.3098,0.327748,0.890069,0.330925,0.813272,0.811719,0.557727,0.411427,0.962092,0.0668674,0.809438,0.579245,0.827435,0.0072459,0.348618,0.181288,0.09601,0.719396,0.0316474,0.677769,0.337986,0.0774583,0.217146,0.993161,0.135,0.571597,0.425706,0.172459,0.470203,0.826263,0.865478,0.461953,0.070452,0.913715,0.852774,0.856828,0.557589,0.173918,0.848534,0.151309,0.527667,0.565118,0.316234,0.77657,0.118412,0.588059,0.914276,0.38513,0.543596,0.667488,0.585227,0.329765,0.599006,0.162923,0.290308,0.836933,0.464097,0.374426,0.932534,0.12928,0.750297,0.702904,0.995953,0.311725,0.74967,0.557047,0.984723,0.592884,0.665771,0.557227,0.0581303,0.586578,0.70301,0.630579,0.527291,0.0598772,0.42177,0.808668,0.768264,0.069995,0.860104,0.0624057,0.279287,0.346432,0.668484,0.987873,0.106536,0.814383,0.930685,0.962461,0.120107,0.505944,0.0488178,0.382389,0.61578,0.612942,0.0430108,0.742714,0.803075,0.420724,0.423275,0.767115,0.00975072,0.443711,0.664862,0.550041,0.139616,0.31882,0.831397,0.682191,0.90533,0.115792,0.896967,0.581271,0.579867,0.819267,0.517792,0.991618,0.346304,0.739064,0.608744,0.419132,0.477066,0.705004,0.961179,0.994968,0.297364,0.726649,0.986814,0.467624,0.637631,0.501253,0.430941,0.337452,0.553732,0.703626,0.696842,0.186192,0.811037,0.767559,0.732738,0.956176,0.802892,0.100548,0.497736,0.205273,0.608526,0.526495,0.767682,0.670867,0.0138031,0.32041,0.997426,0.439677,0.789124,0.680965,0.959385,0.0541356,0.259126,0.367506,0.911985,0.736116,0.652024,0.0723028,0.395414,0.479428,0.400593,0.277415,0.869252,0.435973,0.090121,0.424168,0.46624,0.875926,0.850225,0.49769,0.0427359,0.24693,0.583681,0.404175,0.380114,0.786875,0.703105,0.500208,0.320159,0.0988204,0.73034,0.836263,0.363311,0.618382,0.537616,0.811495,0.777449,0.64202,0.0593776,0.400434,0.163232,0.375063,0.594361,0.148137,0.882418,0.783281,0.103083,0.307354,0.396994,0.850088,0.59418,0.503557,0.453377,0.615742,0.0774144,0.860711,0.660561,0.681962,0.378057,0.806438,0.101917,0.428626,0.451696,0.484332,0.73302,0.0364979,0.410792,0.345345,0.0505989,0.772293,0.080056,0.782651,0.451789,0.858136,0.282656,0.131122,0.0455857,0.241782,0.319002,0.653882,0.363861,0.311428,0.290282,0.555122,0.712253,0.00208259,0.606669,0.605999,0.632313,0.552562,0.835178,0.255827,0.391469,0.593676,0.760775,0.92533,0.80987,0.599229,0.545374,0.196236,0.0550718,0.729811,0.333259,0.665143,0.828569,0.339944,0.5385,0.915251,0.0142653,0.363844,0.724998,0.395976,0.56088,0.86764,0.506453,0.908257,0.504769,0.704324,0.966253,0.774161,0.289414,0.550065,0.146644,0.889512,0.64187,0.188137,0.7437,0.323937,0.983714,0.175434,0.983436,0.178742,0.0010187,0.0264935,0.103445,0.536824,0.0449054,0.423786,0.802937,0.02051,0.351956,0.600133,0.0525808,0.726088,0.774682,0.200879,0.826322,0.523784,0.135264,0.332494,0.39863,0.76694,0.158278,0.698683,0.324375,0.463068,0.880622,0.604963,0.128008,0.702927,0.0147013,0.542141,0.572122,0.889003,0.642337,0.495798,0.596154,0.612182,0.770345,0.491239,0.738012,0.152115,0.973631,0.998929,0.538165,0.0798807,0.331227,0.738037,0.825922,0.957008,0.612413,0.756484,0.305821,0.915569,0.60094,0.712236,0.585583,0.789981,0.807392,0.207359,0.642375,0.304651,0.349281,0.646468,0.43157,0.289322,0.797558,0.405602,0.773666,0.477205,0.88545,0.514542,0.3172,0.562548,0.788448,0.667063,0.918579,0.190299,0.719646,0.191181,0.205321,0.098918,0.719771,0.0180506,0.774463,0.973282,0.609106,0.802668,0.403501,0.942733,0.553259,0.533086,0.569096,0.412145,0.453021,0.140291,0.357488,0.160256,0.188826,0.781507,0.573391,0.374452,0.106346,0.693423,0.973939,0.0655518,0.995387,0.983789,0.659882,0.12975,0.220468,0.292258,0.557027,0.840729,0.889578,0.77005,0.875358,0.119603,0.85185,0.768087,0.213994,0.606105,0.739166,0.850691,0.967387,0.0436526,0.77886,0.903185,0.484549,0.432754,0.229185,0.368481,0.477834,0.662785,0.696337,0.702769,0.227899,0.403933,0.72253,0.138309,0.908952,0.556077,0.855644,0.568034,0.881691,0.626634,|0.691538,0.00346667,0.756357,0.950379,0.900073,0.489678,0.0725442,0.028767,0.229596,0.444173,0.413101,0.786348,0.43276,0.744123,0.668972,0.109288,0.924258,0.294653,0.2288,0.12353,0.685013,0.14599,0.107015,0.71366,0.639407,0.0964975,0.148331,0.112386,0.526902,0.328238,0.140103,0.972862,0.98034,0.822291,0.339445,0.0829825,0.980582,0.421957,0.669079,0.641599,0.726179,0.798263,0.168245,0.904586,0.236231,0.447532,0.938379,0.289343,0.532777,0.959911,0.852407,0.211556,0.739946,0.339918,0.377456,0.874569,0.0692092,0.242674,0.487238,0.0317063,0.16637,0.556461,0.0187536,0.862525,0.805972,0.381426,0.55852,0.989771,0.263472,0.772137,0.445617,0.652318,0.776495,0.0564391,0.267606,0.487756,0.424975,0.945416,0.446812,0.148713,0.177923,0.522103,0.619582,0.204202,0.141268,0.882216,0.560119,0.977896,0.938719,0.638857,0.821771,0.41771,0.602712,0.310784,0.971231,0.56601,0.688505,0.612746,0.593544,0.775414,0.879075,0.48746,0.829238,0.119976,0.5907,0.967826,0.909099,0.581472,0.727073,0.0417375,0.443577,0.11968,0.336066,0.999634,0.152201,0.121848,0.684362,0.121816,0.0174782,0.77286,0.552372,0.764344,0.215327,0.40069,0.483819,0.0533279,0.234541,0.931107,0.954498,0.950637,0.337234,0.750565,0.525805,0.20063,0.51635,0.738876,0.760488,0.600926,0.146469,0.0283325,0.382661,0.627864,0.766473,0.393425,0.570693,0.260278,0.114753,0.705063,0.674087,0.729822,0.307529,0.785212,0.465083,0.582465,0.403437,0.859885,0.130031,0.326889,0.947356,0.226137,0.779021,0.124105,0.424463,0.709141,0.326951,0.964188,0.406107,0.00579095,0.621513,0.761955,0.247011,0.877459,0.308673,0.351426,0.859589,0.220583,0.189767,0.284747,0.570883,0.398539,0.155835,0.878227,0.0540606,0.0119605,0.645363,0.935189,0.394809,0.275819,0.595514,0.716817,0.516106,0.644612,0.0834219,0.685798,0.703221,0.489232,0.944382,0.800059,0.104738,0.929816,0.311296,0.919961,0.869259,0.694428,0.37067,0.00685036,0.071222,0.152218,0.40118,0.966031,0.888591,0.393,0.815441,0.0311799,0.506776,0.313811,0.0237326,0.435208,0.69464,0.693937,0.0332624,0.232235,0.00318986,0.559311,0.142568,0.960774,0.95701,0.259145,0.0875789,0.207716,0.79428,0.791901,0.606789,0.643386,0.978313,0.113847,0.153514,0.873063,0.45907,0.434123,0.824816,0.915813,0.789648,0.0711071,0.457327,0.789331,0.599667,0.0476841,0.827072,0.781748,0.334365,0.362396,0.0235552,0.989807,0.161279,0.748762,0.000348747,0.261395,0.535234,0.72808,0.77836,0.255508,0.79884,0.231965,0.414013,0.716908,0.827859,0.685369,0.611957,0.688243,0.60278,0.788403,0.151814,0.428901,0.0136878,0.295139,0.933519,0.310056,0.972787,0.713788,0.145973,0.0945336,0.295593,0.921487,0.115012,0.676394,0.680352,0.131582,0.044716,0.173353,0.387969,0.364633,0.478153,0.339511,0.253308,0.687922,0.734384,0.223931,0.773105,0.495595,0.361223,0.944345,0.0188441,0.681346,0.460416,0.011909,0.261092,0.630036,0.819082,0.238869,0.200304,0.800184,0.210676,0.477849,0.514915,0.390284,0.497437,0.897784,0.805817,0.577914,0.234356,0.338441,0.406132,0.322189,0.429991,0.117307,0.842115,0.496643,0.105941,0.646614,0.136538,0.542206,0.903331,0.700797,0.58077,0.728918,0.0280834,0.0194992,0.996849,0.671665,0.630418,0.326545,0.922216,0.10828,0.413442,0.0731129,0.929857,0.699053,0.317751,0.102309,0.176161,0.103691,0.128296,0.565641,0.640036,0.785749,0.119976,0.441826,0.0881631,0.224971,0.342772,0.556954,0.523577,0.412091,0.971093,0.334609,0.227339,0.89577,0.658058,0.702781,0.690528,0.192129,0.164775,0.408479,0.385876,0.364088,0.398444,0.87826,0.477397,0.956949,0.689693,0.787584,0.0042392,0.338053,0.977869,0.597243,0.541319,0.834551,0.694498,0.286102,0.570762,0.0894282,0.392985,0.633881,0.0812459,0.668598,0.0206866,0.870954,0.406324,0.636063,0.968798,0.880185,0.822241,0.490593,0.406762,0.124708,0.65993,0.38795,0.922,0.593069,0.838384,0.728346,0.150859,0.269763,0.41551,0.617709,0.0175669,0.841306,0.719387,0.333044,0.769,0.743322,0.339215,0.504679,0.361075,0.965387,0.199023,0.607529,0.662451,0.844632,0.247253,0.0776939,0.863974,0.367628,0.314854,0.951019,0.974368,0.574187,0.275157,0.12649,0.194303,0.554581,0.737072,0.946811,0.738629,0.718739,0.592064,0.314628,0.944396,0.0892164,0.199648,0.0695251,0.352656,0.398148,0.0644987,0.0913299,0.0208315,0.247386,0.463996,0.807732,0.850915,0.372019,0.374785,0.794047,0.652248,0.229954,0.984052,0.967203,0.390013,0.221161,0.887032,0.0247484,0.830932,0.225965,0.748072,0.658174,0.574734,0.151756,0.554781,0.11393,0.664611,0.146305,0.613356,0.59466,0.457318,0.456372,0.152335,0.176826,0.824498,0.901867,0.869027,0.78133,0.967182,0.736977,0.651991,0.342692,0.617095,0.106494,0.320704,0.935493,0.903806,0.0497287,0.0641792,0.471374,0.496142,0.236798,0.897922,0.839656,0.551926,0.390658,0.0559424,0.651427,0.432987,0.931086,0.663089,0.536646,0.328736,0.793544,0.262719,0.892931,0.660901,0.850015,0.694739,0.644593,0.835456,0.450748,0.735551,0.890565,0.602489,0.561501,0.34158,0.482821,0.988908,0.569848,0.213478,0.734821,0.903096,0.476533,0.102229,0.554244,0.344593,0.655465,0.11162,0.926476,0.952041,0.0042541,0.804095,0.724604,0.630103,0.0819241,0.691603,0.200753,0.459623,0.986429,0.853512,0.438256,0.961004,0.264088,0.971552,0.993373,0.41337,0.158459,0.9932,0.77678,0.812609,0.512617,0.196489,0.270606,0.7287,0.652775,0.768683,0.581103,0.697058,0.51409,0.972804,0.50813,0.471673,0.0177025,0.616821,0.854565,0.390716,0.602019,0.910194,0.801578,0.707392,0.499497,0.025701,0.227151,0.539329,0.895228,0.0165256,0.96823,0.272346,0.581399,0.156119,0.183243,0.963491,0.890264,0.496862,0.21843,0.0948164,0.653583,0.505812,0.222022,0.272955,0.287769,0.419319,0.823002,0.661258,0.997313,0.362075,0.792361,0.166508,0.694259,0.333214,0.25755,0.969421,0.208524,0.838991,0.73935,0.0024839,0.199539,0.590807,0.612789,0.427123,0.471835,0.13894,0.523193,0.702622,0.0326492,0.738726,0.763877,0.586429,0.653585,0.311396,0.500006,0.513681,0.247297,0.066206,0.719648,0.413021,0.743923,0.0902321,0.351027,0.514905,0.482591,0.59893,0.560202,0.894814,0.778241,0.95008,0.398706,0.90498,0.395187,0.322083,0.0704794,0.819966,0.0128613,0.284583,0.802353,0.748458,0.71939,0.224807,0.388871,0.106428,0.892873,0.932899,0.0061658,0.642701,0.312427,0.662892,0.727182,0.949219,0.372222,0.920831,0.525425,0.407053,0.482216,0.0701739,0.0954295,0.518583,0.716895,0.856198,0.207085,0.471903,0.723595,0.918716,0.734914,0.880988,0.3478,0.385413,0.773187,0.0865088,0.433878,0.366607,0.448162,0.654301,0.262682,0.175137,0.18581,0.651929,0.0201191,0.525567,0.134722,0.171798,0.227315,0.280288,0.549482,0.936199,0.946443,0.437234,0.0714717,0.697062,0.00415647,0.289642,0.344842,0.483227,0.931643,0.467316,0.425119,0.90726,0.327097,0.184692,0.257143,0.15143,0.899704,0.575644,0.228622,0.493006,0.409305,0.808323,0.984438,0.541535,0.751039,0.400951,0.770871,0.953999,0.0111144,0.890481,0.236304,0.424349,0.191633,0.728089,0.511396,0.224585,0.0913699,0.606877,0.292713,0.765484,0.699939,0.921935,0.806649,0.946706,0.141752,0.909411,0.424842,0.769099,0.525144,0.682361,0.0467372,0.422691,0.768767,0.129575,0.712904,0.898366,0.901974,0.509932,0.930073,0.473665,0.729576,0.69276,0.0838342,0.852457,0.827683,0.62697,0.956045,0.444625,0.310822,0.70072,0.773127,0.994137,0.920802,0.0904763,0.670411,0.386998,0.74985,0.669158,0.0679271,0.317685,0.918367,0.926225,0.229523,0.537317,0.00758314,0.501197,0.334539,0.404721,0.272755,0.992616,0.370614,0.535822,0.00769186,0.977321,0.84651,0.611706,0.0491696,0.292074,0.0976765,0.649288,0.492737,0.254659,0.896448,0.373022,0.874925,0.424205,0.177716,0.289479,0.265038,0.929895,0.175107,0.438438,0.36051,0.418464,0.951068,0.772294,0.97749,0.371434,0.0293236,0.98534,0.792571,0.685163,0.566166,0.00985545,0.207197,0.955504,0.057077,0.838592,0.302926,0.250515,0.838315,0.637768,0.00584227,0.457798,0.756282,0.993648,0.376212,0.110559,0.250448,0.414234,0.283031,0.730687,0.737579,0.381374,0.804818,0.0846259,0.288311,0.503987,0.0809048,0.196022,0.785564,0.715527,0.475922,0.642131,0.673245,0.518675,0.430673,0.828417,0.954449,0.914483,0.823571,0.339212,0.990929,0.35003,0.927475,0.318808,0.544463,0.872868,0.613698,0.879492,0.58626,0.436918,0.357431,0.314671,0.806832,0.767348,0.0775414,0.00853479,0.691473,0.993989,0.689251,0.526901,0.398145,0.0811207,0.663238,0.116978,0.656091,0.995535,0.9067,0.186435,0.482972,0.510769,0.881659,0.0660301,0.406532,0.907668,0.246734,0.434393,0.493774,0.281851,0.315603,0.273184,0.372895,0.566346,0.233848,0.0375765,0.580156,0.121506,0.977809,0.183449,0.545311,0.0646017,0.917749,0.382617,0.163609,0.489797,0.533771,0.27285,0.980024,0.615073,0.341293,0.766022,0.238211,0.559224,0.982459,0.65084,0.760649,0.239346,0.38004,0.279588,0.233856,0.370819,0.0260276,0.588927,0.350203,0.480678,0.875008,0.934358,0.680446,0.520522,0.436084,0.643536,0.735932,0.101257,0.0802756,0.656988,0.633965,0.782867,0.733633,0.0104798,0.941085,0.112485,0.200529,0.47424,0.0700272,0.807908,0.174514,0.0314396,0.217067,0.969991,0.878064,0.190061,0.667551,0.532586,0.0391055,0.98172,0.571682,0.110631,0.374189,0.783011,0.734452,0.708755,0.705913,0.344867,0.9771,0.156482,0.318187,0.727369,0.276273,0.210958,0.4577,0.356526,0.68,0.758603,0.980762,0.154073,0.821493,0.66944,0.45038,0.754313,0.75641,|0.311032,0.970939,0.152838,0.117254,0.83646,0.512638,0.0476102,0.894957,0.319801,0.70091,0.803538,0.983914,0.353222,0.717288,0.834928,0.362178,0.319398,0.638039,0.183802,0.550553,0.218401,0.189445,0.138176,0.653411,0.58328,0.211849,0.813525,0.421501,0.701382,0.253705,0.755396,0.51328,0.99955,0.710735,0.683174,0.510281,0.276827,0.810605,0.98812,0.247034,0.212003,0.375473,0.763652,0.647819,0.0877342,0.592692,0.780299,0.271166,0.424327,0.776235,0.0520822,0.0761508,0.865919,0.365498,0.713312,0.555606,0.673818,0.269691,0.896955,0.808487,0.201664,0.595425,0.328383,0.686323,0.300716,0.939951,0.58077,0.0805551,0.633284,0.00631142,0.262118,0.142724,0.553745,0.71417,0.310885,0.4861,0.822644,0.596885,0.665227,0.201527,0.695655,0.562542,0.736848,0.0760464,0.923963,0.452057,0.42841,0.945219,0.337048,0.288537,0.518455,0.884776,0.801849,0.375935,0.753664,0.206924,0.445209,0.338144,0.124785,0.330566,0.35277,0.798297,0.261647,0.134367,0.152379,0.649191,0.729784,0.0430759,0.0097478,0.0146147,0.564388,0.323505,0.612389,0.842383,0.668697,0.300268,0.274641,0.547975,0.565735,0.726458,0.725975,0.160459,0.864773,0.49012,0.774884,0.236341,0.223642,0.152348,0.29674,0.0314069,0.318011,0.827676,0.906121,0.205396,0.200566,0.731826,0.544783,0.094368,0.814637,0.36517,0.322183,0.531638,0.0904574,0.642375,0.891096,0.162244,0.589902,0.514407,0.18901,0.878208,0.177288,0.146695,0.862176,0.377129,0.121604,0.449311,0.641526,0.577772,0.86513,0.0996103,0.427523,0.729585,0.377134,0.485835,0.181062,0.704325,0.704346,0.872261,0.702713,0.78508,0.203019,0.79372,0.462304,0.318853,0.56143,0.013789,0.990972,0.800143,0.830814,0.468116,0.556565,0.485529,0.52861,0.739369,0.350217,0.882815,0.661236,0.0406621,0.000756562,0.659936,0.307485,0.527898,0.434582,0.450283,0.415569,0.210777,0.98405,0.906636,0.473396,0.723212,0.786331,0.231293,0.798336,0.518184,0.145618,0.0235837,0.395491,0.586086,0.580178,0.105353,0.283372,0.537662,0.931994,0.436024,0.602087,0.0795252,0.345809,0.0763344,0.216496,0.265033,0.39017,0.309005,0.402901,0.0931306,0.80246,0.610865,0.791681,0.46814,0.351572,0.16581,0.938989,0.184579,0.87417,0.414474,0.776496,0.562655,0.110764,0.0799575,0.0371583,0.448153,0.550084,0.060216,0.593749,0.455915,0.803759,0.96252,0.595892,0.578754,0.0340828,0.217406,0.936212,0.357067,0.942594,0.567396,0.734643,0.0284987,0.992619,0.400295,0.27122,0.173127,0.106377,0.657814,0.610131,0.199836,0.570033,0.165167,0.800948,0.523262,0.402115,0.443942,0.556559,0.319056,0.18626,0.349435,0.0952951,0.9909,0.830139,0.584058,0.994927,0.733219,0.630055,0.262897,0.491514,0.164156,0.109603,0.442484,0.0731134,0.64371,0.872542,0.363604,0.029383,0.461231,0.52663,0.835263,0.488566,0.155039,0.373636,0.638141,0.470276,0.481183,0.538511,0.544924,0.98101,0.277303,0.649731,0.200134,0.981105,0.201886,0.516335,0.902,0.156872,0.630715,0.823062,0.975743,0.689028,0.206635,0.395621,0.0997677,0.535643,0.642358,0.795474,0.840232,0.470647,0.218718,0.349139,0.0254495,0.916275,0.30199,0.48571,0.695848,0.910309,0.176159,0.937269,0.940533,0.0572889,0.744097,0.18829,0.195217,0.188955,0.712505,0.780279,0.682449,0.439281,0.82057,0.337701,0.823992,0.473913,0.359238,0.237153,0.469858,0.638755,0.275668,0.762899,0.114317,0.718609,0.593992,0.916547,0.663144,0.501725,0.974527,0.4807,0.583513,0.341298,0.0985786,0.00620097,0.658743,0.948203,0.0591565,0.430261,0.147646,0.720791,0.446557,0.58901,0.121494,0.482734,0.71727,0.789798,0.21989,0.907649,0.690389,0.561026,0.229831,0.0982488,0.308159,0.750823,0.989798,0.411696,0.606888,0.838752,0.621728,0.669182,0.933716,0.720645,0.932721,0.027805,0.316255,0.796862,0.995651,0.529257,0.0402638,0.121429,0.596774,0.490496,0.728102,0.454094,0.604781,0.0858148,0.0426686,0.310945,0.690878,0.899492,0.655259,0.650566,0.123339,0.753802,0.736621,0.794202,0.916351,0.0433595,0.317229,0.120776,0.321882,0.680308,0.289148,0.294986,0.878544,0.114353,0.799801,0.342137,0.556796,0.113627,0.560659,0.815554,0.421854,0.402837,0.66244,0.0262562,0.409509,0.00830424,0.624235,0.628413,0.124769,0.0239269,0.503743,0.42544,0.963039,0.993856,0.887695,0.169875,0.442205,0.327408,0.302144,0.290965,0.212398,0.0687697,0.775551,0.162974,0.248314,0.880416,0.740106,0.939927,0.358561,0.719697,0.284887,0.558142,0.17005,0.936138,0.0119157,0.854467,0.907133,0.640742,0.754375,0.679116,0.0687227,0.106016,0.871643,0.598716,0.514546,0.534433,0.122733,0.314463,0.0322315,0.99154,0.829923,0.528616,0.20203,0.855088,0.418656,0.632119,0.850138,0.497008,0.640204,0.414979,0.888822,0.0482675,0.0882033,0.970556,0.380781,0.48635,0.450997,0.998414,0.35762,0.271834,0.364593,0.225668,0.650045,0.017417,0.169959,0.31887,0.197082,0.995296,0.377935,0.853757,0.234996,0.482074,0.737424,0.821987,0.297663,0.479554,0.998329,0.707114,0.114508,0.87259,0.255771,0.393517,0.0994256,0.989131,0.935896,0.303217,0.436724,0.301685,0.784477,0.264231,0.176919,0.942948,0.289868,0.948393,0.683275,0.499144,0.210634,0.318077,0.231118,0.312745,0.936947,0.286822,0.0222692,0.893291,0.18608,0.839694,0.634021,0.370034,0.429339,0.461256,0.0511649,0.174322,0.336739,0.0509955,0.249905,0.053871,0.358478,0.566827,0.875964,0.916083,0.258624,0.90411,0.999774,0.62235,0.849012,0.862722,0.691372,0.689441,0.502975,0.028241,0.176211,0.930358,0.721786,0.139112,0.688249,0.977649,0.85397,0.351704,0.129913,0.998572,0.0628795,0.0169209,0.640636,0.143657,0.775032,0.648643,0.212688,0.34982,0.534381,0.83389,0.779703,0.646961,0.633272,0.210296,0.596369,0.408323,0.511062,0.102615,0.693572,0.114406,0.303268,0.988128,0.507215,0.71746,0.570514,0.918437,0.232692,0.753751,0.320355,0.964559,0.501877,0.945559,0.598144,0.891746,0.832934,0.925924,0.838463,0.815125,0.805187,0.403789,0.869419,0.863617,0.112302,0.731075,0.477859,0.588555,0.333928,0.731317,0.683245,0.839916,0.0182205,0.505788,0.480625,0.189232,0.785214,0.936723,0.208633,0.971194,0.0869841,0.36849,0.794316,0.699256,0.932531,0.931358,0.335872,0.385662,0.398624,0.34849,0.530739,0.512868,0.922051,0.620329,0.371123,0.151003,0.493156,0.654389,0.704486,0.439152,0.54354,0.585726,0.829877,0.733932,0.981383,0.644487,0.915495,0.425545,0.197925,0.373778,0.097056,0.119423,0.489557,0.120835,0.162094,0.892053,0.728706,0.189013,0.959338,0.869848,0.0755857,0.249472,0.0987622,0.670585,0.389723,0.465243,0.179345,0.257312,0.215468,0.54502,0.963157,0.0433228,0.460883,0.098834,0.686148,0.027837,0.473124,0.850152,0.0913505,0.329912,0.990379,0.435887,0.751914,0.769787,0.162572,0.363116,0.687864,0.989734,0.840205,0.829096,0.116799,0.79118,0.356332,0.279224,0.55556,0.254893,0.161689,0.0543634,0.735533,0.886562,0.2836,0.633456,0.0349267,0.0603863,0.895913,0.866935,0.902186,0.150046,0.603582,0.320188,0.665421,0.990753,0.0984111,0.841186,0.277018,0.34299,0.80615,0.0659062,0.135175,0.252466,0.38098,0.147724,0.582861,0.726734,0.244451,0.515752,0.421383,0.149047,0.838311,0.355357,0.840163,0.958264,0.636042,0.874252,0.944472,0.88596,0.202311,0.510545,0.372572,0.907658,0.795844,0.326804,0.931437,0.516862,0.849039,0.343106,0.315181,0.586477,0.838105,0.736061,0.743428,0.851594,0.908303,0.0596585,0.912211,0.582221,0.327612,0.122743,0.781543,0.246546,0.70445,0.249289,0.289267,0.0925899,0.299248,0.878241,0.379401,0.482965,0.387458,0.149498,0.411062,0.303043,0.442047,0.184383,0.77001,0.321285,0.482578,0.531693,0.506447,0.952065,0.925185,0.184942,0.48656,0.370154,0.132596,0.378149,0.0569754,0.640468,0.767546,0.491957,0.574274,0.334218,0.110947,0.0554182,0.0103457,0.836415,0.833617,0.84907,0.483664,0.709209,0.125222,0.805649,0.46922,0.0697201,0.29551,0.88831,0.862784,0.678463,0.322546,0.493354,0.563821,0.281471,0.712792,0.204762,0.0622777,0.588144,0.245003,0.112561,0.459048,0.482759,0.135067,0.000585675,0.965678,0.0451452,0.847198,0.795379,0.655123,0.943256,0.626683,0.129249,0.526823,0.64143,0.502091,0.972269,0.937922,0.578349,0.979583,0.785914,0.754627,0.201459,0.823013,0.847063,0.562516,0.572862,0.219936,0.814494,0.751032,0.295339,0.336119,0.267269,0.726369,0.813439,0.287128,0.683886,0.977687,0.544794,0.99972,0.133888,0.0568948,0.884928,0.0993652,0.262164,0.463467,0.391545,0.756989,0.703755,0.953992,0.983331,0.864515,0.394955,0.267957,0.78384,0.364513,0.00789332,0.422806,0.59572,0.471131,0.961272,0.392727,0.627849,0.956336,0.140689,0.839365,0.279594,0.611786,0.935142,0.102369,0.307527,0.525027,0.222265,0.335842,0.598716,0.946037,0.824559,0.896829,0.691358,0.307415,0.441283,0.504936,0.438412,0.535963,0.300515,0.915128,0.630065,0.184151,0.985609,0.298604,0.682031,0.177762,0.46182,0.038397,0.953009,0.716837,0.919962,0.318683,0.0578197,0.684311,0.273168,0.93481,0.637429,0.993449,0.157577,0.742267,0.663493,0.940513,0.619323,0.468829,0.084253,0.75234,0.0345926,0.598657,0.969436,0.84485,0.909982,0.694849,0.406827,0.202726,0.716353,0.800616,0.155024,0.986418,0.519377,0.633247,0.929697,0.806325,0.784288,0.940071,0.148347,0.66575,0.352913,0.380674,0.530861,0.895136,0.571175,0.0815757,0.629195,0.6272,0.906324,0.589644,0.124286,0.956736,0.667856,0.438545,0.971581,0.939842,0.494844,0.105322,0.839291,0.316605,0.984028,0.303768,0.415877,0.667795,0.040511,0.750772,0.579455,0.341653,0.702477,0.489338,|0.592409,0.973967,0.535605,0.666584,0.709909,0.258405,0.185127,0.458596,0.756088,0.526392,0.875596,0.525043,0.976061,0.766713,0.470275,0.475016,0.176732,0.47436,0.844117,0.350318,0.482576,0.7733,0.407874,0.181315,0.371855,0.648009,0.458819,0.139664,0.147064,0.132761,0.0352842,0.58346,0.798072,0.344363,0.447164,0.529834,0.95997,0.814131,0.205569,0.480584,0.680529,0.473149,0.210726,0.677535,0.460978,0.482919,0.909024,0.40512,0.797926,0.713453,0.441051,0.554813,0.808288,0.873839,0.0198463,0.0220141,0.431115,0.737554,0.912608,0.00507838,0.231692,0.564893,0.49251,0.620347,0.727614,0.00986326,0.880857,0.00783664,0.0890597,0.702197,0.272349,0.229766,0.377743,0.791212,0.369703,0.929332,0.724197,0.937615,0.970467,0.317187,0.704309,0.78809,0.711712,0.214544,0.17037,0.342424,0.800398,0.0144123,0.524096,0.465332,0.0794268,0.767436,0.818878,0.40483,0.695284,0.141867,0.706243,0.0909894,0.559449,0.96377,0.208025,0.468613,0.196747,0.990124,0.404979,0.832815,0.92584,0.904659,0.679136,0.637348,0.158122,0.230732,0.511257,0.953757,0.386257,0.52416,0.299022,0.404031,0.551274,0.606209,0.0486791,0.43576,0.0998653,0.910869,0.735762,0.00844729,0.292672,0.309513,0.984023,0.966816,0.176094,0.684851,0.462802,0.47872,0.273255,0.419737,0.395703,0.0343913,0.602086,0.530138,0.029456,0.115773,0.254279,0.550042,0.693662,0.83717,0.157356,0.104075,0.343199,0.429063,0.00540453,0.488367,0.103724,0.555843,0.348809,0.19374,0.5562,0.148915,0.379626,0.285802,0.118442,0.581451,0.420361,0.766271,0.368193,0.353224,0.557354,0.160136,0.199527,0.548243,0.664658,0.364899,0.267269,0.979733,0.386497,0.360023,0.444951,0.561038,0.195075,0.422166,0.219632,0.130275,0.714094,0.483029,0.794691,0.754982,0.468186,0.0638245,0.15601,0.106539,0.8318,0.504186,0.247292,0.785957,0.742707,0.746129,0.889754,0.702959,0.0509202,0.746208,0.109197,0.878746,0.673561,0.305836,0.00369298,0.542628,0.944943,0.610423,0.329576,0.868459,0.434292,0.17859,0.244964,0.309887,0.721723,0.292919,0.889436,0.0519026,0.663978,0.759528,0.962677,0.436599,0.224679,0.899013,0.90893,0.342612,0.477536,0.239058,0.213367,0.0700017,0.660455,0.569989,0.583762,0.229778,0.849387,0.914828,0.915366,0.338963,0.351875,0.760398,0.151564,0.399039,0.559969,0.732149,0.441759,0.2253,0.206786,0.830723,0.101158,0.071674,0.133683,0.00565803,0.160333,0.0473284,0.147053,0.621232,0.187372,0.0368818,0.670484,0.39471,0.287996,0.667069,0.86061,0.967172,0.492715,0.322373,0.366649,0.318684,0.965222,0.0766228,0.295783,0.821437,0.378191,0.295065,0.361924,0.821383,0.0992948,0.76757,0.187394,0.222607,0.19702,0.686158,0.427502,0.243585,0.247536,0.573291,0.821616,0.578404,0.501155,0.248129,0.178381,0.516704,0.784412,0.587962,0.125717,0.973209,0.736704,0.450806,0.508976,0.854172,0.311907,0.143304,0.811989,0.978882,0.602999,0.478596,0.0467044,0.999638,0.380662,0.696262,0.973548,0.0683745,0.597756,0.580457,0.801602,0.789868,0.0914116,0.776124,0.958437,0.605151,0.16612,0.206182,0.210662,0.877407,0.722999,0.66036,0.651328,0.662115,0.560286,0.346167,0.14097,0.531224,0.768122,0.820598,0.89126,0.872864,0.644267,0.380403,0.862876,0.0192304,0.407256,0.555789,0.380727,0.973314,0.193472,0.138681,0.100557,0.33083,0.565881,0.871436,0.265998,0.604248,0.282188,0.722007,0.192827,0.125948,0.600075,0.227289,0.193491,0.263519,0.0662191,0.482504,0.414569,0.0550042,0.490986,0.0630854,0.869764,0.604519,0.367232,0.803935,0.774566,0.236193,0.300948,0.918727,0.0290035,0.457203,0.179914,0.922025,0.889994,0.55269,0.518791,0.880364,0.602614,0.349147,0.0319123,0.66207,0.556584,0.255843,0.106033,0.199174,0.447209,0.161293,0.126727,0.179625,0.177129,0.716638,0.520444,0.610965,0.452222,0.901641,0.400867,0.730264,0.754876,0.417214,0.719376,0.722628,0.638951,0.8774,0.00690889,0.0750588,0.528796,0.300155,0.668753,0.937551,0.591814,0.484322,0.652098,0.424463,0.825449,0.305213,0.821967,0.602267,0.992122,0.125378,0.288144,0.575799,0.961525,0.762602,0.466287,0.155652,0.654366,0.506761,0.662052,0.766429,0.903825,0.0464489,0.226725,0.337098,0.128946,0.763673,0.0869865,0.656513,0.603415,0.283746,0.321021,0.0361868,0.86966,0.633539,0.0341278,0.423219,0.550827,0.210418,0.378373,0.190434,0.434922,0.128828,0.50994,0.319838,0.338387,0.319419,0.602858,0.54845,0.188054,0.51112,0.311131,0.948442,0.673408,0.0607733,0.447497,0.94764,0.810018,0.665808,0.968919,0.667396,0.011959,0.529551,0.12563,0.95484,0.133193,0.33537,0.255695,0.449073,0.209543,0.928017,0.68365,0.150783,0.943634,0.956764,0.731108,0.273834,0.49062,0.229986,0.105798,0.451388,0.880498,0.787128,0.0246645,0.490573,0.92281,0.037102,0.177416,0.0861934,0.953003,0.000508547,0.269714,0.179801,0.152978,0.590241,0.859861,0.514677,0.382074,0.225997,0.894819,0.314252,0.913607,0.186157,0.0212393,0.117134,0.716484,0.230614,0.710623,0.00414008,0.505971,0.669019,0.873011,0.108068,0.966593,0.240819,0.060289,0.865364,0.0544214,0.620323,0.905187,0.620193,0.755952,0.617495,0.65243,0.96981,0.82647,0.457455,0.767187,0.803263,0.73626,0.0802088,0.0132951,0.513975,0.238949,0.260256,0.135393,0.396988,0.805362,0.0708756,0.764139,0.16005,0.411819,0.238863,0.920604,0.297706,0.848248,0.821214,0.848804,0.0910719,0.247464,0.768391,0.0200796,0.974152,0.488185,0.384006,0.556831,0.899189,0.490759,0.401313,0.899418,0.635235,0.313288,0.946169,0.534861,0.385179,0.670882,0.889407,0.989372,0.998725,0.58812,0.192564,0.236086,0.386945,0.23985,0.828446,0.98501,0.333105,0.0070222,0.337746,0.116308,0.135802,0.199319,0.277362,0.928777,0.570991,0.712061,0.653224,0.318126,0.790854,0.66782,0.106145,0.175094,0.871025,0.557711,0.919946,0.993467,0.349846,0.509197,0.356189,0.954233,0.397563,0.129156,0.727126,0.0789372,0.377817,0.103525,0.357122,0.322735,0.496951,0.967711,0.819331,0.439032,0.0876147,0.498552,0.38309,0.974999,0.738139,0.839579,0.810045,0.368427,0.856501,0.928728,0.718926,0.692348,0.856958,0.446825,0.560956,0.95722,0.206996,0.947363,0.51236,0.0940073,0.507742,0.5303,0.684441,0.267081,0.723774,0.0031606,0.837405,0.887999,0.488679,0.0325777,0.919425,0.763296,0.620122,0.826954,0.859381,0.336641,0.999785,0.838765,0.715378,0.595117,0.259992,0.100301,0.637309,0.383765,0.297081,0.224416,0.419457,0.992665,0.705369,0.0973828,0.821444,0.165416,0.362717,0.650944,0.168904,0.793046,0.654847,0.732516,0.730041,0.825427,0.297855,0.775774,0.368095,0.796446,0.278134,0.613238,0.215486,0.482044,0.988553,0.46092,0.970317,0.0644736,0.473345,0.765121,0.301458,0.112307,0.780874,0.699493,0.899259,0.755181,0.428385,0.858655,0.955085,0.786282,0.447589,0.177486,0.121149,0.0809551,0.450741,0.877895,0.885591,0.787989,0.441407,0.891698,0.853829,0.443541,0.49057,0.190737,0.238964,0.0435645,0.0211481,0.739092,0.351207,0.668767,0.855298,0.270341,0.957005,0.779178,0.258781,0.976553,0.736908,0.294434,0.546299,0.36986,0.875489,0.671497,0.544099,0.638236,0.85127,0.476175,0.735573,0.898282,0.857851,0.4937,0.323329,0.831608,0.806871,0.451362,0.0935441,0.0579553,0.239897,0.656382,0.968467,0.0944175,0.0439739,0.20976,0.968521,0.28566,0.759453,0.339109,0.931636,0.0631211,0.640916,0.050831,0.113452,0.801225,0.37059,0.582033,0.232725,0.379329,0.130432,0.213688,0.279941,0.635988,0.862354,0.323281,0.509546,0.0605446,0.550956,0.7271,0.446565,0.895697,0.658028,0.353049,0.896487,0.680773,0.791376,0.989419,0.45415,0.0800217,0.813706,0.815276,0.262777,0.264874,0.753127,0.711702,0.242883,0.0189608,0.00457209,0.768031,0.71308,0.554514,0.766556,0.605751,0.910774,0.200554,0.0634501,0.273421,0.443913,0.990535,0.00741738,0.397544,0.425565,0.592559,0.51571,0.995651,0.770293,0.00470114,0.860715,0.995009,0.342743,0.856641,0.741525,0.170036,0.601183,0.895009,0.162038,0.695251,0.976895,0.169617,0.997716,0.571997,0.647871,0.516759,0.471976,0.640278,0.232928,0.118945,0.256493,0.436467,0.235243,0.89443,0.75747,0.86384,0.398541,0.583611,0.979286,0.561073,0.0727568,0.113329,0.698614,0.496305,0.547067,0.73506,0.338224,0.653949,0.821101,0.785219,0.0752819,0.188711,0.49007,0.0795357,0.551457,0.868602,0.906369,0.430548,0.789442,0.852144,0.735545,0.848363,0.406755,0.616406,0.526415,0.596512,0.800249,0.838445,0.0964026,0.957944,0.192293,0.684271,0.956332,0.442737,0.217679,0.590164,0.692162,0.145039,0.847659,0.567339,0.516473,0.963736,0.0305457,0.222105,0.630935,0.728674,0.320209,0.428642,0.541788,0.895291,0.623728,0.263568,0.934295,0.936077,0.54318,0.924877,0.89756,0.416887,0.308864,0.989276,0.896912,0.8617,0.475074,0.689606,0.60814,0.806498,0.797752,0.528931,0.662364,0.157509,0.450786,0.153977,0.814752,0.547371,0.0775455,0.440771,0.846224,0.0619141,0.356577,0.319557,0.371897,0.249659,0.974437,0.0616427,0.178868,0.829286,0.702928,0.385283,0.621424,0.494785,0.146467,0.422745,0.931811,0.317052,0.460677,0.3619,0.741239,0.187944,0.601683,0.0194393,0.92422,0.828287,0.753672,0.101511,0.287978,0.0159056,0.406944,0.659757,0.898561,0.00498956,0.0803422,0.0858552,0.664076,0.430831,0.181811,0.817663,0.630524,0.285997,0.813605,0.0457919,0.73352,0.762264,0.0405584,0.949078,0.887069,0.930806,0.815575,0.515079,0.470872,0.781517,0.579235,0.216007,0.0834053,0.119078,0.46596,0.774682,0.140619,0.186807,0.748979,0.702086,0.764393,0.342571,0.833081,0.173042,0.16529,0.692809,0.77423,|0.937908,0.357644,0.200822,0.416341,0.138746,0.888797,0.105163,0.953319,0.926864,0.386674,0.365132,0.689938,0.909988,0.796731,0.292507,0.193859,0.058198,0.200054,0.500422,0.223219,0.744108,0.315324,0.856852,0.486427,0.561479,0.333796,0.720762,0.420608,0.80779,0.58534,0.700294,0.64008,0.979977,0.176963,0.98275,0.879513,0.968178,0.755724,0.746189,0.85327,0.433113,0.847337,0.764833,0.613461,0.824878,0.411576,0.17108,0.551132,0.762469,0.377728,0.806177,0.45342,0.233899,0.814714,0.343381,0.309531,0.0654115,0.576539,0.721289,0.529896,0.417696,0.168748,0.0148165,0.664465,0.734368,0.729428,0.244949,0.722164,0.295813,0.261232,0.443431,0.389583,0.829187,0.503607,0.365743,0.182037,0.740289,0.889597,0.114968,0.482004,0.353178,0.921274,0.579,0.681779,0.134435,0.267522,0.955509,0.117101,0.607625,0.0149572,0.311269,0.242905,0.311106,0.861185,0.116747,0.708366,0.857971,0.813883,0.685905,0.88341,0.104017,0.724994,0.386291,0.765627,0.0471109,0.737678,0.541355,0.0545792,0.0011217,0.0708608,0.891053,0.968472,0.735392,0.121887,0.669451,0.766459,0.611759,0.419684,0.991144,0.626557,0.0268723,0.782075,0.766765,0.147264,0.692515,0.0758598,0.423571,0.776254,0.793171,0.683038,0.818399,0.875157,0.166367,0.51066,0.407054,0.688465,0.721189,0.799664,0.00902462,0.536142,0.729536,0.722151,0.896164,0.630492,0.284512,0.812268,0.844297,0.321753,0.190488,0.298976,0.387847,0.142928,0.0451897,0.0745111,0.225606,0.304482,0.873105,0.0755639,0.916742,0.642154,0.69706,0.42443,0.316964,0.600916,0.202306,0.86211,0.0930718,0.813272,0.537807,0.597738,0.923163,0.382974,0.400994,0.721925,0.360085,0.833194,0.124939,0.463384,0.26345,0.50197,0.874496,0.703328,0.962314,0.116616,0.9621,0.207027,0.896079,0.24466,0.268085,0.59141,0.612351,0.266136,0.432298,0.490612,0.775433,0.833149,0.308232,0.0756491,0.152505,0.203782,0.968065,0.120683,0.520643,0.97598,0.166132,0.32819,0.368213,0.343362,0.61229,0.155989,0.885981,0.52359,0.745414,0.756004,0.882215,0.900798,0.738872,0.431865,0.69959,0.237426,0.968899,0.541403,0.183756,0.194659,0.845788,0.261129,0.0951784,0.319348,0.367382,0.165752,0.409789,0.577371,0.240624,0.202127,0.914186,0.915837,0.536801,0.32648,0.869396,0.282701,0.828777,0.0296726,0.532907,0.579674,0.906601,0.800399,0.415067,0.257466,0.00715673,0.980346,0.945553,0.360258,0.515908,0.68436,0.540322,0.935074,0.104819,0.00421059,0.0516226,0.0991011,0.271996,0.371662,0.915036,0.0447922,0.80727,0.128715,0.600394,0.767613,0.196284,0.693522,0.975728,0.683306,0.195707,0.258237,0.708911,0.656618,0.0532998,0.274137,0.0114237,0.389163,0.0934908,0.120353,0.172652,0.425677,0.210975,0.0277128,0.287158,0.470411,0.545931,0.415329,0.282574,0.462396,0.0412325,0.0704597,0.228158,0.0793526,0.162834,0.88564,0.396638,0.693985,0.38797,0.0169091,0.421031,0.357989,0.00591248,0.984033,0.9261,0.36454,0.0653224,0.714578,0.121371,0.771016,0.535695,0.165301,0.0518087,0.161906,0.785931,0.600104,0.932405,0.890795,0.575555,0.627519,0.0351789,0.0604687,0.750614,0.858209,0.155061,0.824622,0.625238,0.394333,0.505992,0.51304,0.711999,0.185992,0.915817,0.961463,0.101839,0.260474,0.597344,0.88181,0.61664,0.630958,0.433615,0.184901,0.986015,0.833364,0.14104,0.99622,0.39532,0.329961,0.090307,0.431234,0.945437,0.774444,0.310515,0.848683,0.231062,0.219508,0.429346,0.326654,0.55267,0.489755,0.398839,0.989782,0.685222,0.675292,0.8413,0.643572,0.646314,0.339745,0.359495,0.230716,0.143304,0.723755,0.513918,0.39613,0.451791,0.858942,0.291264,0.290439,0.101906,0.0622987,0.248446,0.968695,0.076533,0.24156,0.786677,0.113209,0.276935,0.127548,0.412884,0.537132,0.634661,0.959885,0.506314,0.388382,0.0302269,0.602038,0.195307,0.0776474,0.323326,0.196061,0.219508,0.868234,0.431385,0.951188,0.653508,0.0954748,0.124063,0.564556,0.0633089,0.200114,0.518807,0.321106,0.989367,0.974134,0.130282,0.655102,0.229429,0.00782996,0.301016,0.670812,0.648637,0.548449,0.182356,0.560799,0.0702407,0.0819193,0.864048,0.962056,0.593288,0.553175,0.559375,0.049394,0.895926,0.167503,0.0131222,0.294712,0.92328,0.296847,0.679045,0.402604,0.586825,0.612421,0.705063,0.44538,0.516239,0.766267,0.58209,0.430558,0.676344,0.134741,0.726783,0.0442337,0.482891,0.110747,0.130119,0.496351,0.515371,0.281256,0.514565,0.089842,0.938137,0.376449,0.887029,0.620654,0.872318,0.626463,0.291426,0.576247,0.616547,0.0585259,0.490321,0.548832,0.252191,0.370194,0.205553,0.264381,0.671455,0.94512,0.978949,0.116959,0.732668,0.711899,0.91486,0.836354,0.62785,0.497931,0.284285,0.890964,0.925139,0.652702,0.187089,0.506745,0.423876,0.680327,0.712439,0.116525,0.257825,0.222309,0.396303,0.898828,0.828545,0.315855,0.0503676,0.718343,0.289523,0.65182,0.361662,0.2474,0.0815479,0.933573,0.249289,0.930856,0.290402,0.370204,0.758443,0.24834,0.0761817,0.518615,0.832797,0.290763,0.916769,0.642713,0.979216,0.959235,0.919759,0.219694,0.206622,0.485779,0.362783,0.799639,0.621382,0.0143991,0.834825,0.547586,0.541263,0.0309396,0.84281,0.351872,0.904023,0.100645,0.49703,0.50051,0.0895501,0.236749,0.277177,0.865536,0.609267,0.166333,0.166606,0.542336,0.60277,0.85201,0.686572,0.922813,0.311693,0.111771,0.493374,0.134325,0.912883,0.157698,0.0484535,0.190476,0.662176,0.595606,0.373073,0.554183,0.0619141,0.209384,0.806126,0.538811,0.335175,0.837696,0.286498,0.909693,0.809607,0.784484,0.263441,0.53552,0.980045,0.577171,0.98501,0.663837,0.0618659,0.880426,0.456508,0.597891,0.278163,0.363867,0.239613,0.88836,0.269325,0.414509,0.517893,0.723495,0.729195,0.93311,0.64113,0.468249,0.159532,0.352982,0.668331,0.208652,0.362206,0.503696,0.813197,0.412754,0.352594,0.719436,0.838705,0.475997,0.147319,0.449525,0.0899956,0.200298,0.831655,0.773749,0.895596,0.935523,0.711743,0.158082,0.333129,0.965511,0.371391,0.403723,0.567331,0.869766,0.163001,0.490766,0.609799,0.351313,0.585688,0.312726,0.516907,0.4178,0.828558,0.518237,0.283024,0.415204,0.570388,0.175,0.873118,0.518728,0.74836,0.182817,0.396405,0.852089,0.966085,0.0715125,0.55647,0.788447,0.92931,0.288997,0.649467,0.889404,0.433173,0.816291,0.281262,0.814843,0.519818,0.339756,0.691024,0.628136,0.735039,0.0932379,0.420963,0.507977,0.860102,0.643759,0.267485,0.447392,0.916118,0.650266,0.447629,0.385006,0.0663063,0.72675,0.490282,0.47728,0.901783,0.660417,0.220632,0.414895,0.585721,0.536426,0.805643,0.777919,0.510825,0.187515,0.697226,0.701582,0.0669463,0.0948003,0.30557,0.854697,0.61735,0.364936,0.24196,0.0558304,0.145847,0.139552,0.263202,0.591343,0.0305813,0.963102,0.670162,0.679222,0.0643846,0.265981,0.0396845,0.0610357,0.761428,0.687479,0.981881,0.212861,0.0488978,0.446891,0.00758529,0.362789,0.84455,0.0109689,0.0629088,0.853289,0.622117,0.571706,0.487772,0.857697,0.920537,0.317571,0.364374,0.356752,0.393155,0.940365,0.638663,0.479947,0.456094,0.304047,0.0143462,0.526251,0.522588,0.714024,0.277441,0.0741733,0.676545,0.621144,0.200527,0.532609,0.289038,0.14545,0.994689,0.388648,0.189254,0.323575,0.0339699,0.589241,0.843027,0.996378,0.819331,0.0559821,0.385526,0.283852,0.0708909,0.656093,0.815298,0.529415,0.323618,0.861056,0.0569486,0.954125,0.676073,0.779107,0.260007,0.335608,0.536235,0.34044,0.508079,0.733398,0.661465,0.344051,0.47222,0.910498,0.33274,0.11328,0.809571,0.481669,0.892976,0.853068,0.230711,0.165058,0.648845,0.932024,0.221125,0.803964,0.453918,0.952495,0.585821,0.480109,0.393369,0.931455,0.00360572,0.934267,0.00197202,0.733924,0.13425,0.49946,0.0527659,0.524339,0.526983,0.736772,0.317141,0.130722,0.73848,0.99278,0.343822,0.70023,0.692867,0.120406,0.360824,0.82559,0.554514,0.792148,0.0549498,0.535892,0.420664,0.849584,0.438481,0.129033,0.964914,0.885666,0.300118,0.253789,0.0130374,0.617989,0.515275,0.259349,0.578147,0.164846,0.330035,0.641365,0.131706,0.426462,0.188987,0.801685,0.712899,0.697512,0.126047,0.675678,0.0608172,0.542904,0.507016,0.205459,0.985311,0.175951,0.588898,0.569074,0.820358,0.648366,0.794095,0.945725,0.485783,0.39177,0.326081,0.805079,0.660114,0.716868,0.165883,0.660742,0.167823,0.426972,0.960541,0.484945,0.0764554,0.830791,0.516723,0.192082,0.572896,0.0262724,0.146102,0.685555,0.551633,0.952159,0.625888,0.550664,0.146779,0.695622,0.690598,0.825107,0.703546,0.749103,0.470673,0.641075,0.0275643,0.372044,0.376818,0.935791,0.0422543,0.497559,0.194226,0.940678,0.735613,0.726214,0.0729246,0.814312,0.186229,0.0689132,0.058043,0.441007,0.76724,0.735525,0.961257,0.33513,0.933986,0.0985204,0.823363,0.552027,0.261869,0.176362,0.634576,0.624804,0.919367,0.527655,0.318106,0.00177532,0.479309,0.200171,0.813028,0.805602,0.866285,0.583969,0.710404,0.246417,0.190383,0.14159,0.314401,0.892125,0.196743,0.586807,0.259217,0.811896,0.370063,0.433742,0.915471,0.174958,0.235073,0.436311,0.0176632,0.0412121,0.466171,0.901474,0.477169,0.744971,0.505182,0.99538,0.431384,0.761799,0.746549,0.561339,0.42988,0.453229,0.643917,0.895918,0.141239,0.549444,0.212918,0.9559,0.557326,0.377777,0.659662,0.632852,0.688741,0.87615,0.604988,0.50466,0.640506,0.564397,0.0556366,0.826424,0.596925,0.463138,0.961406,0.94648,0.902653,0.426801,0.489087,0.937554,0.117065,0.671936,0.575551,0.896009,0.271739,0.47599,0.333223,0.47457,0.00670713,0.75414,0.0198846,0.680926,0.390997,0.0500268,|0.357535,0.385244,0.742128,0.103832,0.918197,0.114406,0.551757,0.508423,0.0247633,0.924637,0.535495,0.853605,0.535318,0.764747,0.570213,0.283702,0.25034,0.796606,0.420801,0.142768,0.867581,0.614558,0.953469,0.2244,0.769456,0.697518,0.172904,0.986576,0.79457,0.231452,0.499507,0.846474,0.835509,0.447288,0.935073,0.061059,0.823748,0.263225,0.320225,0.710959,0.992876,0.805849,0.612218,0.0625833,0.0486419,0.0253506,0.0474827,0.879595,0.709468,0.980011,0.296641,0.172582,0.625869,0.182259,0.513163,0.331166,0.978837,0.562643,0.764757,0.0873237,0.220228,0.842035,0.986465,0.0139391,0.636112,0.975038,0.806221,0.535497,0.190288,0.903739,0.365823,0.220979,0.699343,0.175288,0.612755,0.737846,0.596749,0.958122,0.880268,0.0288167,0.443612,0.78023,0.312105,0.633762,0.383357,0.734999,0.71006,0.383722,0.51965,0.846786,0.135036,0.755527,0.394745,0.826097,0.243823,0.100304,0.468039,0.315391,0.611538,0.636207,0.77918,0.706367,0.903093,0.904049,0.599579,0.274194,0.225252,0.0186037,0.872861,0.935789,0.55259,0.213423,0.661651,0.367617,0.242101,0.655004,0.0755334,0.550251,0.406261,0.616411,0.721663,0.319435,0.312517,0.74187,0.161443,0.560359,0.314703,0.781266,0.132193,0.108253,0.65749,0.264479,0.0895505,0.790526,0.559645,0.741484,0.216784,0.923891,0.698304,0.854587,0.447798,0.223637,0.809231,0.112443,0.0480723,0.835926,0.456092,0.746784,0.28883,0.999998,0.873812,0.758358,0.517961,0.566686,0.319178,0.763315,0.445033,0.245902,0.115458,0.219749,0.734208,0.619292,0.124892,0.259356,0.703382,0.754249,0.20797,0.494591,0.829257,0.215174,0.6865,0.994531,0.364607,0.318292,0.520663,0.474704,0.020651,0.889099,0.113241,0.47572,0.191224,0.617517,0.624772,0.803813,0.817875,0.968069,0.715699,0.642118,0.749301,0.220617,0.29247,0.103884,0.280781,0.546879,0.313855,0.454506,0.110832,0.481323,0.358043,0.6724,0.53479,0.512459,0.737584,0.789974,0.901082,0.175334,0.725893,0.230355,0.568916,0.188475,0.679813,0.896558,0.115123,0.00778174,0.880979,0.661992,0.840337,0.113474,0.356523,0.101544,0.853499,0.346459,0.0134531,0.252165,0.577374,0.522163,0.476103,0.156156,0.159967,0.656633,0.0957503,0.298954,0.616518,0.623176,0.592232,0.959979,0.787751,0.653603,0.273313,0.803023,0.317712,0.160256,0.515153,0.406452,0.800375,0.539665,0.766125,0.953198,0.939615,0.458474,0.802061,0.211339,0.991281,0.166447,0.11224,0.518184,0.228578,0.855546,0.195521,0.269959,0.168523,0.987062,0.384128,0.281605,0.983266,0.547287,0.559997,0.0862554,0.824595,0.980143,0.135509,0.631848,0.76503,0.440806,0.325495,0.0492023,0.5144,0.332369,0.187952,0.299017,0.220549,0.282005,0.722514,0.191457,0.324606,0.128149,0.54855,0.0767041,0.972491,0.267978,0.00320268,0.702363,0.361384,0.76509,0.128572,0.586358,0.12633,0.807181,0.224803,0.768054,0.00752771,0.59196,0.335066,0.450262,0.902186,0.867987,0.723928,0.0919475,0.0401973,0.690511,0.960915,0.928357,0.224267,0.94544,0.172763,0.0410405,0.0365011,0.553056,0.712513,0.700327,0.965424,0.503038,0.78957,0.193541,0.176057,0.320796,0.135194,0.94402,0.283475,0.120301,0.805443,0.407163,0.984365,0.425311,0.994532,0.456539,0.499464,0.471773,0.0829771,0.390737,0.408659,0.517542,0.116746,0.782682,0.927722,0.931029,0.596493,0.974143,0.414682,0.506788,0.409309,0.976317,0.806443,0.153064,0.663718,0.662175,0.549389,0.341154,0.573594,0.500029,0.972457,0.591951,0.0809527,0.375601,0.376209,0.525385,0.603192,0.185422,0.0689024,0.509341,0.573543,0.539722,0.797177,0.0797381,0.516561,0.437881,0.952951,0.712613,0.780393,0.813915,0.573841,0.305517,0.863451,0.442886,0.00649029,0.893005,0.433813,0.675528,0.948683,0.178346,0.228097,0.336645,0.921601,0.755742,0.125994,0.263325,0.205632,0.396624,0.675991,0.569942,0.191029,0.272013,0.123541,0.279588,0.605142,0.132871,0.0551659,0.179456,0.741352,0.893457,0.176904,0.473541,0.797928,0.115372,0.974825,0.073758,0.549643,0.804957,0.700709,0.571486,0.431969,0.16524,0.388435,0.928266,0.754594,0.571127,0.583909,0.791939,0.0443904,0.736614,0.144351,0.986539,0.132176,0.790812,0.678038,0.741371,0.48792,0.894584,0.0552572,0.937683,0.265061,0.375718,0.589189,0.227401,0.67946,0.386914,0.132899,0.95576,0.438865,0.114967,0.206897,0.362574,0.492612,0.647636,0.790726,0.0167022,0.739148,0.901618,0.474019,0.596768,0.932638,0.481023,0.886677,0.0487016,0.873901,0.657809,0.586677,0.807175,0.739857,0.651212,0.813102,0.768566,0.478992,0.518233,0.782303,0.817253,0.89301,0.260624,0.0655346,0.386348,0.423382,0.318614,0.0190513,0.643879,0.170662,0.663069,0.56077,0.934035,0.267952,0.138996,0.651087,0.967996,0.422937,0.126993,0.262011,0.962752,0.889049,0.764888,0.136833,0.988309,0.101429,0.222287,0.680069,0.566894,0.109512,0.46702,0.558972,0.0396815,0.161022,0.903716,0.966239,0.0104893,0.0168712,0.787493,0.666941,0.269258,0.891511,0.681045,0.731503,0.0235836,0.852168,0.883937,0.686198,0.237566,0.411706,0.0120837,0.962283,0.818709,0.562757,0.190967,0.149628,0.850546,0.579541,0.958721,0.151007,0.49736,0.92414,0.812332,0.0387185,0.768453,0.771452,0.0440701,0.696177,0.781701,0.920539,0.965543,0.625315,0.300789,0.368765,0.173009,0.329431,0.182013,0.517836,0.782993,0.48192,0.579866,0.754432,0.194095,0.868955,0.202951,0.315277,0.921797,0.0112575,0.18732,0.842501,0.36251,0.491297,0.652657,0.133342,0.684994,0.303937,0.330385,0.783879,0.748095,0.198657,0.182428,0.405277,0.123156,0.745417,0.186347,0.494065,0.946153,0.220482,0.595324,0.849569,0.621314,0.112888,0.772766,0.560643,0.477448,0.409906,0.479152,0.270236,0.192838,0.663363,0.862462,0.761569,0.0861846,0.294105,0.0801947,0.812114,0.891211,0.255611,0.366758,0.774945,0.561598,0.134472,0.718076,0.802037,0.605342,0.790079,0.820657,0.0831739,0.710498,0.11745,0.252607,0.177592,0.100545,0.928323,0.921642,0.109197,0.265849,0.257957,0.726038,0.088111,0.232169,0.421297,0.857868,0.337711,0.478974,0.150805,0.058665,0.246935,0.630855,0.892397,0.827487,0.835098,0.130206,0.0974169,0.092344,0.583142,0.573253,0.874842,0.949183,0.139652,0.35476,0.762104,0.929909,0.0802784,0.79823,0.911652,0.327173,0.509542,0.368158,0.457543,0.49571,0.432831,0.209875,0.247515,0.887873,0.801117,0.941235,0.709033,0.0796177,0.633443,0.849744,0.663543,0.606786,0.324342,0.779932,0.609225,0.709666,0.904705,0.0975124,0.461829,0.587735,0.17482,0.636467,0.538305,0.335375,0.361183,0.216191,0.687,0.841836,0.759679,0.146007,0.678429,0.372431,0.174309,0.948822,0.244625,0.922856,0.15242,0.507434,0.665497,0.188393,0.506791,0.970342,0.312453,0.0353099,0.410521,0.975123,0.814734,0.531862,0.784172,0.0912936,0.0785839,0.625323,0.945338,0.677746,0.164352,0.807694,0.178284,0.809164,0.71052,0.392801,0.887541,0.914804,0.535771,0.0589132,0.670539,0.0705366,0.000388801,0.945708,0.842325,0.38204,0.731816,0.516573,0.318618,0.829092,0.328543,0.0824783,0.00778025,0.531905,0.66948,0.305143,0.64848,0.318368,0.355229,0.151033,0.548912,0.960181,0.496835,0.468909,0.199256,0.974144,0.447545,0.659479,0.760816,0.560032,0.8772,0.929799,0.0115961,0.831196,0.895557,0.592735,0.589897,0.570271,0.971594,0.998789,0.408139,0.531107,0.650683,0.378608,0.0184346,0.459936,0.184706,0.42211,0.69213,0.0302541,0.318271,0.857541,0.559203,0.699207,0.623739,0.0979056,0.822308,0.930445,0.925365,0.757538,0.783943,0.987988,0.538472,0.732805,0.899746,0.506429,0.595589,0.574993,0.87991,0.839809,0.722781,0.0142826,0.0784613,0.309023,0.15526,0.508709,0.0321982,0.21143,0.608883,0.686093,0.246615,0.832885,0.212669,0.92036,0.200417,0.606058,0.939579,0.915487,0.979821,0.8631,0.940554,0.0348226,0.815813,0.570091,0.253119,0.656937,0.648962,0.814305,0.528911,0.971191,0.640216,0.826396,0.714916,0.748287,0.633627,0.856194,0.0601069,0.327208,0.913221,0.217337,0.0855043,0.998003,0.451917,0.582953,0.935127,0.691818,0.198008,0.10067,0.729976,0.074846,0.978228,0.323437,0.483447,0.89002,0.864245,0.482431,0.438803,0.544197,0.0912167,0.658376,0.55242,0.719213,0.566439,0.320184,0.56709,0.409958,0.0541608,0.769632,0.366195,0.363261,0.371429,0.75017,0.57515,0.778683,0.705779,0.314653,0.578329,0.444337,0.105072,0.359056,0.584912,0.350947,0.355755,0.077759,0.664175,0.132987,0.0990502,0.842055,0.145926,0.0610752,0.852704,0.130137,0.73053,0.126952,0.404289,0.181303,0.366757,0.804814,0.464616,0.506258,0.900446,0.137246,0.398798,0.407573,0.327728,0.495585,0.0792736,0.0657419,0.878767,0.0979302,0.752132,0.257623,0.527092,0.805332,0.915713,0.762893,0.956918,0.73389,0.940877,0.51125,0.972586,0.68719,0.216246,0.231904,0.93531,0.805377,0.351351,0.739935,0.110602,0.0548036,0.204496,0.734026,0.924861,0.953373,0.813413,0.904849,0.106817,0.388694,0.0162438,0.969346,0.905698,0.315723,0.613206,0.599728,0.240831,0.864034,0.473712,0.462911,0.461637,0.549941,0.789533,0.25951,0.961154,0.249553,0.337548,0.355264,0.413658,0.768357,0.326877,0.729774,0.522953,0.63872,0.96914,0.572163,0.222544,0.30188,0.448835,0.461578,0.0250718,0.0911887,0.198461,0.0631801,0.926759,0.349064,0.503982,0.200819,0.6132,0.33769,0.77579,0.960542,0.207214,0.586708,0.130352,0.200898,0.428849,0.72977,0.811582,0.885813,0.609131,0.594371,0.316281,0.434327,0.619329,0.631604,0.141189,0.290803,0.18935,0.300158,0.0324489,0.644355,0.919254,0.81128,0.463779,0.351831,0.497059,0.0216891,0.12222,0.796301,0.833635,0.0939401,|0.785999,0.594594,0.208944,0.279278,0.671289,0.0703638,0.744837,0.37961,0.872152,0.283514,0.0368414,0.272111,0.0326046,0.158798,0.807456,0.272005,0.775043,0.578821,0.537923,0.760008,0.814952,0.0803748,0.935322,0.990604,0.971864,0.513804,0.659242,0.171263,0.640842,0.374173,0.818868,0.83884,0.148751,0.73925,0.924102,0.676593,0.575064,0.480976,0.231174,0.950535,0.0279472,0.31336,0.235853,0.954013,0.812925,0.583633,0.717639,0.204654,0.703109,0.467826,0.509393,0.284729,0.106361,0.165329,0.500406,0.936394,0.196805,0.772875,0.834526,0.305647,0.869595,0.04176,0.0754023,0.080376,0.923202,0.565452,0.38109,0.334791,0.950935,0.793801,0.104237,0.436583,0.257522,0.579477,0.714584,0.21031,0.0808872,0.387091,0.542907,0.891202,0.297631,0.928592,0.602005,0.472702,0.264567,0.586054,0.228653,0.0746968,0.953299,0.430955,0.50686,0.55584,0.963706,0.890401,0.93229,0.238183,0.0926496,0.048157,0.198095,0.281994,0.708767,0.225797,0.28735,0.203666,0.430318,0.369106,0.683211,0.804129,0.400815,0.734354,0.934505,0.94718,0.754562,0.798903,0.85143,0.428782,0.855515,0.149829,0.537895,0.511647,0.0887071,0.0758137,0.67753,0.819239,0.419338,0.420295,0.898529,0.20539,0.543778,0.781964,0.421791,0.497786,0.102692,0.652905,0.415301,0.205776,0.753862,0.281736,0.557552,0.984598,0.232828,0.328282,0.626921,0.53264,0.737319,0.263362,0.144157,0.151569,0.140874,0.614032,0.962546,0.0344362,0.481487,0.244214,0.345046,0.871823,0.308899,0.280009,0.947496,0.0809875,0.473552,0.753518,0.269281,0.985204,0.740063,0.104074,0.806626,0.947781,0.0296715,0.00813258,0.307291,0.328905,0.326981,0.832931,0.0357329,0.602495,0.138655,0.782179,0.628212,0.894549,0.669052,0.645344,0.760477,0.0476214,0.386219,0.665772,0.171916,0.0249113,0.598103,0.837887,0.23008,0.879655,0.280048,0.353812,0.0217488,0.705033,0.453992,0.175222,0.917706,0.982811,0.570118,0.366448,0.324519,0.786901,0.4775,0.544248,0.163281,0.996471,0.937403,0.154872,0.477067,0.00693041,0.33981,0.388805,0.429621,0.0021767,0.999684,0.54331,0.906455,0.575658,0.237122,0.800095,0.151127,0.67707,0.653614,0.40475,0.562055,0.790685,0.501274,0.979751,0.209896,0.859524,0.329105,0.490303,0.870044,0.209762,0.392653,0.946686,0.326503,0.366864,0.453832,0.784028,0.0702034,0.773496,0.796343,0.934124,0.895299,0.347379,0.885438,0.190456,0.794805,0.78151,0.733063,0.888786,0.767208,0.0744976,0.385241,0.872792,0.642433,0.0748264,0.711828,0.125332,0.220044,0.805265,0.646217,0.619701,0.802963,0.994224,0.983172,0.28435,0.64739,0.238675,0.279399,0.225346,0.45223,0.266175,0.0665491,0.375103,0.569279,0.653175,0.601054,0.623933,0.876244,0.865018,0.37211,0.782182,0.655356,0.563113,0.0378017,0.119799,0.228673,0.831879,0.915202,0.860474,0.196059,0.168195,0.201674,0.415522,0.150544,0.930387,0.549708,0.927038,0.996302,0.191594,0.104963,0.670956,0.622172,0.437185,0.159034,0.241672,0.827147,0.455381,0.16485,0.116796,0.599231,0.476306,0.452948,0.516478,0.180285,0.821591,0.39962,0.0931446,0.370775,0.570868,0.346399,0.807658,0.58745,0.447247,0.452645,0.603333,0.630863,0.429498,0.34035,0.382017,0.70489,0.20414,0.237266,0.401562,0.520533,0.119301,0.307989,0.623934,0.801214,0.241278,0.132355,0.0109917,0.152012,0.748163,0.64942,0.533376,0.479966,0.32713,0.357764,0.532102,0.92104,0.761627,0.249827,0.719839,0.137801,0.606733,0.308145,0.773994,0.145612,0.88494,0.406937,0.719019,0.599939,0.194288,0.90482,0.0914454,0.279863,0.308761,0.445229,0.287117,0.863353,0.3358,0.892287,0.474806,0.417835,0.727803,0.202884,0.22559,0.595823,0.500053,0.239398,0.40704,0.435816,0.767154,0.24345,0.881936,0.764444,0.375541,0.312767,0.0588235,0.29074,0.0616825,0.247135,0.837684,0.271642,0.125465,0.0165509,0.772264,0.144583,0.317532,0.517928,0.564618,0.55345,0.361452,0.884582,0.108937,0.112424,0.659946,0.0612307,0.59583,0.179048,0.757215,0.154048,0.295415,0.0563229,0.479339,0.486014,0.899324,0.420774,0.884112,0.394535,0.954681,0.231993,0.32045,0.958633,0.434458,0.664254,0.0721948,0.170565,0.0836041,0.42128,0.665449,0.895473,0.925122,0.875624,0.532784,0.25723,0.691882,0.562106,0.491065,0.556901,0.690058,0.488215,0.367289,0.841661,0.84248,0.72784,0.271154,0.80205,0.794572,0.511323,0.259648,0.31101,0.498811,0.176859,0.366838,0.203104,0.935876,0.170638,0.151126,0.456769,0.346942,0.573486,0.182537,0.156745,0.223345,0.139275,0.340375,0.0463346,0.204397,0.766864,0.153936,0.154691,0.0625877,0.692551,0.145628,0.0699743,0.673176,0.736892,0.371193,0.543708,0.856489,0.973807,0.527581,0.651632,0.121826,0.919794,0.37148,0.248424,0.685556,0.812309,0.278393,0.071708,0.6794,0.38218,0.490624,0.804805,0.860858,0.222564,0.625198,0.0690708,0.620566,0.572352,0.290302,0.933692,0.245592,0.933337,0.350026,0.579527,0.656751,0.893437,0.254725,0.498467,0.0475583,0.233706,0.946999,0.573864,0.647046,0.270613,0.0174665,0.6097,0.748634,0.984446,0.222824,0.265523,0.601103,0.936562,0.849933,0.88645,0.3126,0.672979,0.884419,0.0765564,0.573125,0.159671,0.753436,0.0888482,0.087597,0.0613185,0.398127,0.851536,0.389453,0.252152,0.250226,0.547853,0.595928,0.934166,0.602693,0.0764611,0.712081,0.474956,0.223933,0.352462,0.274939,0.782483,0.695355,0.968502,0.518028,0.162226,0.407099,0.00209188,0.465358,0.439592,0.512172,0.192907,0.0108789,0.103143,0.881884,0.955926,0.272757,0.263716,0.14777,0.989654,0.392579,0.505857,0.535032,0.320824,0.504641,0.562481,0.431899,0.310104,0.0547783,0.0536718,0.197495,0.979779,0.777659,0.691606,0.752169,0.55006,0.813519,0.804787,0.61749,0.0670195,0.222114,0.564892,0.163348,0.532273,0.0582503,0.176814,0.320074,0.62573,0.154992,0.895673,0.48699,0.916933,0.205405,0.253391,0.4206,0.786267,0.624913,0.568949,0.422033,0.205987,0.75266,0.577264,0.931409,0.572406,0.774276,0.876161,0.173048,0.851157,0.768171,0.564839,0.925194,0.778754,0.307944,0.960066,0.812652,0.854647,0.949214,0.669358,0.315902,0.590741,0.945145,0.0877517,0.55381,0.0671728,0.742308,0.656909,0.04279,0.744326,0.525645,0.110476,0.336746,0.486839,0.70701,0.15599,0.551203,0.0406574,0.462275,0.904972,0.00215048,0.683042,0.725621,0.308837,0.769513,0.0648022,0.635955,0.994933,0.936635,0.103216,0.729693,0.634259,0.640555,0.500929,0.464366,0.934269,0.883122,0.647332,0.653341,0.493967,0.887969,0.605144,0.259993,0.237617,0.525552,0.0345056,0.708756,0.914665,0.103187,0.0287427,0.224998,0.687769,0.748173,0.788044,0.386837,0.0188931,0.761566,0.741107,0.177886,0.653662,0.860984,0.736126,0.30398,0.433467,0.288742,0.171646,0.708618,0.798405,0.795487,0.317829,0.0766886,0.918612,0.0609326,0.787245,0.13287,0.864336,0.496205,0.947018,0.468242,0.749937,0.202077,0.487027,0.225694,0.413172,0.908315,0.871264,0.409736,0.302427,0.89091,0.868924,0.929353,0.994134,0.00464082,0.991812,0.188118,0.117368,0.648617,0.991699,0.701659,0.480905,0.13811,0.464448,0.338068,0.994296,0.0180184,0.0284675,0.672034,0.0252376,0.186836,0.811252,0.844653,0.97682,0.630953,0.00127846,0.339774,0.216352,0.596275,0.231421,0.938071,0.766398,0.874179,0.967357,0.699088,0.312171,0.922282,0.0706463,0.228612,0.141591,0.0955485,0.86951,0.665854,0.0414832,0.366867,0.928122,0.529049,0.520693,0.546505,0.779934,0.963327,0.784273,0.015367,0.64092,0.521835,0.986175,0.666859,0.739723,0.3471,0.225915,0.620216,0.442043,0.313053,0.654201,0.749394,0.396766,0.266184,0.379291,0.373413,0.686135,0.600472,0.419822,0.278503,0.300135,0.224126,0.31829,0.253357,0.676447,0.63004,0.023295,0.346073,0.514832,0.554177,0.13018,0.538211,0.584732,0.932125,0.135037,0.760853,0.084244,0.273761,0.866251,0.487489,0.139535,0.222871,0.241172,0.867694,0.700313,0.846259,0.0124442,0.268641,0.750388,0.106509,0.552262,0.392385,0.542119,0.00724411,0.54833,0.89333,0.447668,0.230715,0.353309,0.519337,0.984928,0.606434,0.135459,0.77182,0.873028,0.939699,0.51129,0.297863,0.743014,0.62763,0.0189878,0.216947,0.303452,0.701181,0.170809,0.762313,0.741906,0.549496,0.553805,0.270792,0.243815,0.731713,0.57086,0.186386,0.227675,0.473309,0.255216,0.208507,0.0727547,0.546204,0.142859,0.12188,0.570221,0.366723,0.872552,0.620008,0.422388,0.2464,0.827316,0.500559,0.756334,0.447942,0.767864,0.305155,0.302423,0.114016,0.350496,0.795252,0.0600283,0.763322,0.82639,0.14062,0.324033,0.0748912,0.662151,0.752031,0.829506,0.706844,0.947746,0.567107,0.0946206,0.0929354,0.813619,0.57471,0.6524,0.0890282,0.916429,0.148449,0.727414,0.359987,0.535837,0.021817,0.738159,0.832659,0.530706,0.107295,0.248417,0.920812,0.0877757,0.676004,0.0203323,0.510158,0.638867,0.520777,0.0860514,0.643679,0.751322,0.531456,0.551928,0.261287,0.184795,0.198989,0.140212,0.952239,0.935391,0.650762,0.893554,0.313374,0.646662,0.105604,0.171748,0.381587,0.987131,0.656668,0.227278,0.774481,0.669703,0.600532,0.323165,0.831288,0.582289,0.985282,0.176913,0.444471,0.63716,0.00549406,0.941351,0.868442,0.290701,0.344919,0.349183,0.1694,0.971386,0.478068,0.00966322,0.131852,0.640142,0.030897,0.77902,0.366987,0.701974,0.990913,0.268823,0.956569,0.777716,0.842693,0.0534542,0.65402,0.204974,0.427195,0.214524,0.321388,0.904936,0.737493,0.608833,0.713766,0.578038,0.0160474,0.323993,0.107068,0.117744,0.904829,0.241548,0.83867,0.914498,0.847835,0.353463,0.874416,0.678957,0.0182889,0.729687,0.738289,0.780124,0.587484,|0.0037272,0.338974,0.373257,0.789256,0.167466,0.128446,0.306432,0.641234,0.132093,0.537077,0.319039,0.227863,0.840036,0.755206,0.480248,0.577006,0.0976394,0.189489,0.0308945,0.781577,0.829164,0.300007,0.376933,0.819755,0.294176,0.368351,0.165192,0.215534,0.14801,0.942022,0.456486,0.983254,0.825694,0.903098,0.068746,0.922306,0.803967,0.801677,0.906654,0.0497423,0.859449,0.0252259,0.590015,0.124751,0.718983,0.592797,0.941527,0.589292,0.381982,0.624487,0.860185,0.268101,0.605993,0.648697,0.533978,0.624581,0.0980181,0.759539,0.34244,0.603467,0.577474,0.791169,0.299423,0.977347,0.902843,0.797127,0.261992,0.824227,0.766987,0.724244,0.385457,0.885858,0.445439,0.323893,0.920594,0.830643,0.142256,0.856238,0.680628,0.922248,0.420336,0.221681,0.580928,0.0259797,0.404728,0.869754,0.793448,0.504693,0.0594038,0.747919,0.294236,0.822468,0.0219248,0.600479,0.985884,0.612466,0.868676,0.542572,0.0414256,0.583023,0.732749,0.32535,0.13335,0.358961,0.0396311,0.242431,0.128395,0.566742,0.459604,0.944942,0.371266,0.303672,0.697664,0.0856752,0.950381,0.476869,0.413307,0.277784,0.13816,0.391972,0.276319,0.819611,0.3888,0.182305,0.181319,0.159109,0.522568,0.195456,0.391196,0.567002,0.0293057,0.676983,0.959789,0.696067,0.398813,0.518389,0.501403,0.381123,0.559775,0.587892,0.122621,0.384129,0.779787,0.648913,0.488557,0.147295,0.00377756,0.975679,0.820206,0.368158,0.0263888,0.830755,0.242143,0.0467283,0.49974,0.132461,0.082127,0.0380833,0.836723,0.30137,0.382578,0.538305,0.7492,0.490663,0.4174,0.788368,0.893544,0.309483,0.162069,0.677229,0.380888,0.764603,0.808096,0.997134,0.543779,0.836334,0.699434,0.807459,0.73767,0.876198,0.714252,0.409077,0.633223,0.53439,0.454588,0.461954,0.853396,0.993061,0.161334,0.716968,0.804881,0.0568255,0.908823,0.723866,0.643652,0.348344,0.482673,0.25674,0.895754,0.283987,0.403445,0.276268,0.671139,0.436543,0.529815,0.185903,0.652546,0.783192,0.0639277,0.628358,0.0502664,0.486336,0.803871,0.317825,0.0195168,0.0303802,0.42982,0.843259,0.0348436,0.0754384,0.874935,0.173179,0.153917,0.717422,0.794712,0.901699,0.361284,0.61911,0.598306,0.426001,0.0372906,0.0689009,0.0580034,0.558182,0.53796,0.59934,0.629842,0.326787,0.695817,0.0713124,0.680763,0.0838954,0.42551,0.371174,0.123387,0.00483054,0.319851,0.793751,0.0928537,0.248343,0.733574,0.495839,0.880136,0.289355,0.398747,0.722562,0.0797161,0.502665,0.939399,0.0288863,0.911869,0.496257,0.390834,0.148199,0.406197,0.66245,0.976729,0.684484,0.371136,0.0534142,0.659328,0.418393,0.308077,0.0461545,0.408463,0.0916095,0.984098,0.491978,0.248507,0.996885,0.703702,0.85947,0.758459,0.353237,0.350904,0.504062,0.518482,0.419489,0.68967,0.294939,0.242809,0.911253,0.598695,0.00687778,0.697646,0.00156432,0.29633,0.180861,0.475899,0.711696,0.205143,0.210002,0.0511358,0.714963,0.756355,0.813605,0.627907,0.140622,0.136729,0.500488,0.831294,0.21372,0.641043,0.539671,0.613315,0.819202,0.110549,0.675443,0.656084,0.955126,0.525913,0.766364,0.411309,0.209075,0.416586,0.980857,0.634903,0.262423,0.744023,0.514854,0.478031,0.893048,0.852659,0.340937,0.87948,0.925123,0.8509,0.6044,0.837041,0.71816,0.345719,0.016537,0.0278459,0.250839,0.815816,0.0215663,0.850038,0.0746258,0.510154,0.172785,0.511902,0.872483,0.195365,0.780867,0.0155928,0.0757241,0.604053,0.510403,0.0589778,0.605276,0.679791,0.324202,0.997972,0.487632,0.0562152,0.758813,0.624547,0.567416,0.959466,0.390724,0.605629,0.811396,0.841427,0.2399,0.964859,0.295991,0.190976,0.0740653,0.605544,0.272545,0.938692,0.530216,0.29425,0.435502,0.721024,0.0303127,0.719833,0.781756,0.130734,0.648196,0.19192,0.65155,0.69215,0.644487,0.78108,0.855886,0.646307,0.0379053,0.684312,0.410905,0.0599945,0.481557,0.965944,0.840769,0.579471,0.165055,0.870972,0.780807,0.489655,0.0717102,0.750977,0.926949,0.466399,0.132121,0.866951,0.166312,0.365623,0.646584,0.495896,0.646813,0.232954,0.185225,0.871433,0.740005,0.197796,0.884985,0.444567,0.612984,0.509923,0.341534,0.601161,0.963926,0.274281,0.31173,0.518952,0.638278,0.161079,0.927943,0.971636,0.747775,0.666934,0.833087,0.493551,0.327875,0.254601,0.76707,0.422541,0.00275242,0.557264,0.689319,0.839035,0.0108814,0.719439,0.0770738,0.889343,0.459261,0.418614,0.100563,0.455653,0.68115,0.967204,0.220601,0.423593,0.5297,0.208774,0.142941,0.325615,0.486686,0.320364,0.391225,0.936201,0.147512,0.707298,0.385382,0.763295,0.374196,0.439566,0.199055,0.579294,0.181195,0.370342,0.463258,0.322792,0.92114,0.89359,0.978728,0.715862,0.0380052,0.197467,0.909008,0.527351,0.953225,0.353265,0.121953,0.075247,0.931042,0.513615,0.165937,0.539731,0.376499,0.314273,0.809003,0.396883,0.0258551,0.0571722,0.0312944,0.97541,0.0505123,0.709757,0.338868,0.633147,0.814954,0.87848,0.539728,0.763393,0.707534,0.230331,0.0694548,0.483657,0.541829,0.419378,0.742103,0.69236,0.752351,0.520055,0.533281,0.840467,0.674535,0.380255,0.410734,0.173733,0.713086,0.345275,0.448693,0.41018,0.102127,0.0246691,0.843134,0.762184,0.404336,0.567629,0.880113,0.366059,0.180566,0.849751,0.505508,0.27384,0.279139,0.159834,0.157803,0.715509,0.465548,0.0896491,0.900838,0.197933,0.615594,0.0380611,0.699671,0.653631,0.372561,0.0558037,0.519005,0.877426,0.0235391,0.88633,0.478297,0.0182211,0.17204,0.695418,0.0771996,0.439821,0.346681,0.666408,0.761696,0.103777,0.524658,0.410122,0.566291,0.626734,0.388096,0.0235208,0.616934,0.106131,0.332953,0.420544,0.489674,0.965219,0.710087,0.419888,0.191577,0.697809,0.282415,0.499035,0.28203,0.800996,0.649752,0.012857,0.879553,0.312125,0.160832,0.642355,0.401514,0.597376,0.878733,0.184403,0.722965,0.0251041,0.557615,0.205525,0.779314,0.581375,0.826152,0.220034,0.893454,0.724402,0.763686,0.90315,0.231958,0.115633,0.714539,0.00696492,0.208535,0.139986,0.149521,0.51559,0.242111,0.273929,0.0441312,0.209332,0.168644,0.815393,0.189755,0.1752,0.134028,0.530332,0.437366,0.469698,0.349436,0.918267,0.168255,0.241608,0.0536236,0.305088,0.664106,0.847634,0.189886,0.19386,0.367788,0.782296,0.907389,0.141391,0.154278,0.8937,0.904359,0.683749,0.290844,0.346604,0.904169,0.0582079,0.373664,0.348516,0.930074,0.221507,0.291511,0.860004,0.122091,0.722977,0.224254,0.977591,0.22996,0.310304,0.0906365,0.896868,0.70938,0.80406,0.0221398,0.235996,0.127078,0.228832,0.145414,0.0441225,0.403679,0.874431,0.789801,0.756734,0.172146,0.734786,0.899716,0.370754,0.42318,0.605779,0.660618,0.170314,0.836169,0.442576,0.645751,0.074279,0.933813,0.309536,0.81628,0.61244,0.957365,0.115885,0.0948259,0.363864,0.05748,0.90228,0.848423,0.458654,0.0885205,0.893172,0.30519,0.354926,0.982995,0.0515246,0.0836086,0.157367,0.202846,0.644191,0.224162,0.793948,0.731459,0.493835,0.413965,0.890512,0.80196,0.108055,0.355333,0.91294,0.790806,0.488937,0.845881,0.461618,0.387897,0.946583,0.458006,0.786545,0.799423,0.0363852,0.253735,0.296573,0.320561,0.63767,0.399502,0.431374,0.0820275,0.81187,0.135696,0.592909,0.215886,0.997942,0.0397785,0.356413,0.390098,0.75807,0.642068,0.582501,0.912592,0.000711501,0.691062,0.0957535,0.303926,0.626955,0.250383,0.974665,0.654823,0.401317,0.678084,0.822953,0.861216,0.489173,0.808878,0.761325,0.198318,0.377834,0.964732,0.65768,0.413671,0.253221,0.929916,0.527567,0.277438,0.512906,0.374144,0.943818,0.0596838,0.636074,0.651301,0.251705,0.241599,0.209166,0.317595,0.444414,0.70615,0.444564,0.816936,0.471696,0.323973,0.195757,0.765381,0.316369,0.64116,0.841298,0.227746,0.655593,0.0430158,0.340637,0.899903,0.861605,0.376875,0.547972,0.384752,0.301175,0.341663,0.4703,0.0928649,0.196936,0.606831,0.811659,0.455681,0.4757,0.89306,0.186549,0.334709,0.581524,0.192717,0.284043,0.17021,0.479298,0.355412,0.854231,0.0615104,0.787272,0.0541106,0.347777,0.775983,0.501981,0.187081,0.147697,0.997959,0.148531,0.191358,0.615643,0.829782,0.34444,0.335242,0.821404,0.356018,0.45242,0.756555,0.324207,0.512812,0.461798,0.145957,0.741865,0.831476,0.424575,0.32364,0.956643,0.528482,0.339675,0.498409,0.119576,0.375445,0.0417352,0.609669,0.657133,0.240592,0.880605,0.99749,0.0986151,0.00959182,0.524262,0.22973,0.85306,0.215911,0.495586,0.888023,0.484808,0.693281,0.355609,0.0454779,0.32127,0.177629,0.658226,0.724117,0.234456,0.686266,0.399606,0.105558,0.564377,0.421334,0.66633,0.588762,0.433436,0.430382,0.808643,0.329103,0.203704,0.397566,0.0796444,0.709497,0.0991344,0.360448,0.609255,0.139677,0.0296258,0.683086,0.850605,0.388972,0.359756,0.488191,0.416238,0.290588,0.244788,0.958113,0.0167056,0.554668,0.0228179,0.522775,0.24809,0.998478,0.0868087,0.709869,0.34198,0.550349,0.648544,0.346775,0.123901,0.813892,0.677336,0.46974,0.38956,0.345512,0.430012,0.582408,0.233464,0.185431,0.51206,0.52383,0.850979,0.0304468,0.447167,0.327112,0.553411,0.458693,0.868952,0.556122,0.35358,0.539013,0.0792191,0.383115,0.760471,0.738193,0.721458,0.14345,0.462987,0.879685,0.311308,0.854271,0.17413,0.595692,0.538474,0.644371,0.781061,0.595762,0.516667,0.0718946,0.0852314,0.512469,0.876036,0.244892,0.814957,0.74503,0.324415,0.4214,0.871658,0.406717,0.127275,0.196433,0.671344,0.303296,0.414371,0.0489225,0.849047,0.521676,0.685713,0.67772,0.213981,0.212567,0.771069,0.875621,0.544772,0.35808,0.72079,0.773992,0.300272,0.556327,0.0623647,0.0973526,|0.999497,0.906853,0.241004,0.424488,0.0109393,0.561936,0.339602,0.253946,0.655375,0.410399,0.096949,0.843734,0.610057,0.242983,0.0410593,0.730775,0.823647,0.703359,0.0607459,0.778973,0.601133,0.119206,0.447332,0.72917,0.684538,0.825765,0.213584,0.8713,0.0366462,0.926776,0.912473,0.717763,0.235997,0.675555,0.666817,0.969305,0.183559,0.919269,0.201359,0.952003,0.0377926,0.0424719,0.389665,0.0144244,0.951408,0.357045,0.304022,0.738994,0.541941,0.109303,0.219452,0.66964,0.24514,0.151098,0.574733,0.563238,0.456946,0.349058,0.624165,0.164153,0.0619292,0.114418,0.104289,0.648455,0.159861,0.995735,0.112379,0.474128,0.403796,0.863034,0.187935,0.484434,0.046076,0.335843,0.23314,0.633105,0.309159,0.0306747,0.494804,0.36294,0.0466555,0.348968,0.798332,0.460325,0.102339,0.786917,0.0304645,0.179273,0.810617,0.928557,0.934419,0.136392,0.681999,0.0907225,0.979336,0.240219,0.270878,0.680909,0.549227,0.440824,0.076363,0.162983,0.493195,0.0699283,0.737888,0.135283,0.543815,0.792617,0.894326,0.06486,0.0139506,0.342373,0.947135,0.333427,0.969846,0.869227,0.369868,0.564916,0.205176,0.069979,0.242153,0.925332,0.896155,0.787398,0.521927,0.14285,0.0526424,0.632515,0.770358,0.00776923,0.303948,0.865685,0.987361,0.641043,0.0605079,0.277923,0.163146,0.637136,0.996222,0.491189,0.0110449,0.814733,0.763242,0.434421,0.766297,0.506115,0.445576,0.527622,0.868349,0.980437,0.725056,0.221404,0.801199,0.511299,0.0222158,0.667255,0.0989627,0.500977,0.339704,0.421125,0.634537,0.420663,0.622911,0.420319,0.892193,0.967574,0.72347,0.786736,0.196038,0.931563,0.0990531,0.246007,0.532247,0.737408,0.433526,0.751408,0.927555,0.237945,0.0175693,0.993538,0.0124908,0.170208,0.503876,0.848448,0.240399,0.10687,0.958467,0.285289,0.833493,0.439088,0.138764,0.0994042,0.221685,0.265587,0.954361,0.00268096,0.392136,0.947494,0.818882,0.0901986,0.877679,0.998127,0.524403,0.686514,0.11596,0.330254,0.455168,0.137441,0.357754,0.490426,0.71491,0.789258,0.430626,0.167388,0.10252,0.777586,0.603797,0.0282703,0.986513,0.0084579,0.853264,0.196032,0.168221,0.757336,0.461571,0.955298,0.302326,0.557675,0.846563,0.618746,0.794388,0.789352,0.834316,0.435599,0.929583,0.427767,0.824618,0.921546,0.250532,0.687171,0.118152,0.581269,0.960312,0.87413,0.643176,0.874604,0.776144,0.916321,0.296407,0.244192,0.812041,0.312489,0.77102,0.295501,0.927576,0.821982,0.192302,0.43068,0.88815,0.269732,0.692074,0.498281,0.171942,0.860721,0.366714,0.596678,0.152616,0.159844,0.360304,0.539752,0.417703,0.101864,0.304942,0.887834,0.840107,0.916922,0.142323,0.0304171,0.348105,0.430761,0.596654,0.679565,0.200987,0.779718,0.024975,0.850748,0.0792349,0.993033,0.0934049,0.741722,0.343891,0.328255,0.353704,0.920962,0.187695,0.243006,0.995421,0.0419457,0.0549359,0.257299,0.771411,0.0544855,0.746837,0.943799,0.54503,0.110263,0.783033,0.607576,0.378099,0.310756,0.569722,0.0601076,0.536628,0.691709,0.893995,0.356839,0.745049,0.0894518,0.22309,0.711346,0.0804636,0.898577,0.351622,0.532791,0.800063,0.688629,0.479103,0.299086,0.897949,0.527268,0.14331,0.760209,0.728985,0.512373,0.548549,0.756263,0.391337,0.552192,0.933513,0.132962,0.281417,0.612649,0.727257,0.785816,0.300836,0.938966,0.811567,0.227384,0.838392,0.199574,0.480189,0.414984,0.135109,0.168176,0.434553,0.442022,0.805789,0.0934646,0.59191,0.680546,0.963695,0.300233,0.195444,0.551514,0.328387,0.766693,0.923317,0.415955,0.0942381,0.063976,0.451364,0.891098,0.914966,0.310418,0.749327,0.75433,0.938519,0.0331023,0.298733,0.579877,0.413459,0.978279,0.807545,0.358838,0.480597,0.687711,0.792363,0.296049,0.286769,0.857983,0.0291861,0.750388,0.403938,0.252917,0.134286,0.701142,0.0315229,0.279802,0.337798,0.526459,0.737026,0.23827,0.186371,0.570767,0.186208,0.84027,0.276407,0.722147,0.924219,0.631583,0.308648,0.870115,0.344894,0.035741,0.918034,0.647854,0.846906,0.575988,0.758717,0.265314,0.246694,0.486987,0.749817,0.146677,0.924356,0.703343,0.321366,0.412972,0.285386,0.0264624,0.278426,0.748072,0.695433,0.729562,0.333448,0.970376,0.0206943,0.317259,0.750771,0.157692,0.953361,0.472252,0.693633,0.906535,0.674088,0.116604,0.650201,0.482217,0.0153618,0.338849,0.347594,0.906005,0.540398,0.938771,0.018357,0.277889,0.450649,0.343592,0.792672,0.462594,0.0624368,0.71356,0.61353,0.00941145,0.531361,0.708994,0.00230122,0.360601,0.874275,0.508574,0.889386,0.872543,0.856057,0.366959,0.149228,0.69842,0.80194,0.411266,0.98038,0.751871,0.724508,0.0295795,0.627847,0.241242,0.0924354,0.454517,0.255099,0.6193,0.847898,0.406125,0.404798,0.295847,0.271653,0.760392,0.526972,0.469886,0.165321,0.575812,0.312011,0.16148,0.37054,0.447707,0.107451,0.940029,0.282705,0.621823,0.0157967,0.305343,0.926393,0.304262,0.432907,0.57796,0.986316,0.121953,0.0286823,0.23378,0.0345974,0.784467,0.898641,0.273234,0.367899,0.0768772,0.172083,0.447983,0.0766237,0.517909,0.978346,0.352034,0.0714639,0.652225,0.966501,0.212893,0.504098,0.546826,0.753472,0.907938,0.115863,0.340204,0.354522,0.0911415,0.684084,0.763869,0.713061,0.561299,0.20459,0.0697333,0.168988,0.684594,0.317405,0.939829,0.300681,0.81929,0.659607,0.0256364,0.520169,0.784161,0.510729,0.996173,0.715841,0.503808,0.748161,0.133511,0.781999,0.00586444,0.549474,0.407881,0.767402,0.376856,0.622772,0.915381,0.371706,0.105331,0.12115,0.86403,0.22188,0.664114,0.846159,0.916637,0.653634,0.97819,0.151474,0.5929,0.843147,0.453348,0.351283,0.315511,0.175904,0.683221,0.10971,0.0131117,0.722366,0.862428,0.0736572,0.0462322,0.656804,0.211977,0.651214,0.931996,0.474518,0.291307,0.678004,0.197053,0.595981,0.961412,0.769728,0.109828,0.504103,0.913927,0.888535,0.702137,0.0541951,0.885985,0.0158091,0.0300285,0.851574,0.106193,0.560531,0.947496,0.862787,0.817759,0.732031,0.71053,0.645868,0.180176,0.696201,0.134344,0.38126,0.342022,0.384062,0.609004,0.611826,0.761667,0.939201,0.479725,0.611931,0.557103,0.647781,0.534079,0.0545555,0.623985,0.129355,0.817059,0.521648,0.129218,0.755925,0.267676,0.0739454,0.303507,0.503075,0.299008,0.421366,0.550327,0.792054,0.384218,0.135611,0.860091,0.235395,0.154616,0.942008,0.970299,0.308932,0.673997,0.818376,0.55955,0.626235,0.966145,0.678905,0.436736,0.899689,0.308352,0.555257,0.698031,0.433284,0.780779,0.143111,0.620451,0.00224787,0.783779,0.0650381,0.653695,0.61736,0.657388,0.130207,0.98303,0.319141,0.500645,0.600763,0.742705,0.485193,0.685091,0.529058,0.675739,0.744653,0.493982,0.115394,0.343367,0.665263,0.462344,0.13326,0.275269,0.279172,0.182998,0.456127,0.584321,0.0977018,0.812116,0.0345901,0.0600545,0.208113,0.751155,0.171822,0.90106,0.587968,0.910445,0.5839,0.133233,0.210881,0.510508,0.136159,0.16846,0.111115,0.720452,0.530417,0.295525,0.722435,0.362524,0.755568,0.905777,0.260696,0.199362,0.172818,0.0145448,0.89089,0.04953,0.237847,0.0831307,0.881249,0.95323,0.538766,0.749214,0.375777,0.528252,0.713234,0.809186,0.233075,0.26498,0.848595,0.254759,0.870438,0.964139,0.248047,0.0454366,0.954429,0.617452,0.037127,0.871985,0.738118,0.300485,0.791695,0.269366,0.390509,0.714687,0.97665,0.929814,0.284943,0.862782,0.315524,0.887721,0.377598,0.180878,0.362634,0.661076,0.826211,0.425718,0.672805,0.51678,0.888137,0.698481,0.565678,0.539685,0.713303,0.908931,0.359643,0.357381,0.771986,0.918119,0.981009,0.877928,0.951589,0.225979,0.521057,0.100593,0.831109,0.167361,0.673856,0.163118,0.642438,0.144969,0.348026,0.733646,0.677238,0.695056,0.669641,0.958481,0.22162,0.961728,0.337443,0.790165,0.583092,0.976262,0.729254,0.570389,0.180679,0.436767,0.353497,0.00258517,0.696152,0.835086,0.215126,0.552745,0.872282,0.449769,0.331477,0.607342,0.837053,0.505276,0.188497,0.345092,0.422673,0.534291,0.516051,0.125657,0.383385,0.022624,0.464961,0.251368,0.0493942,0.378,0.0730141,0.88046,0.696346,0.20199,0.525766,0.428501,0.295512,0.706352,0.0856597,0.409522,0.457779,0.997692,0.272714,0.00777334,0.233405,0.351704,0.840181,0.59107,0.925554,0.631194,0.443794,0.0681598,0.56397,0.258397,0.568721,0.533006,0.438416,0.376161,0.903635,0.19027,0.327136,0.439341,0.406479,0.715474,0.842837,0.498492,0.732534,0.969765,0.0983743,0.175168,0.442692,0.977021,0.0530055,0.98078,0.890885,0.299342,0.23655,0.131065,0.0147781,0.861045,0.191511,0.0342969,0.914405,0.629544,0.10087,0.696635,0.0745351,0.827638,0.891817,0.0807561,0.848351,0.41935,0.577092,0.864743,0.163939,0.873183,0.521502,0.0499637,0.866549,0.886036,0.0895241,0.55247,0.801494,0.0430869,0.798795,0.184148,0.47734,0.821542,0.927797,0.461348,0.503571,0.845599,0.619101,0.163574,0.390242,0.402826,0.980412,0.296867,0.965246,0.785631,0.844942,0.569299,0.488837,0.46074,0.96853,0.523067,0.116284,0.217233,0.325663,0.895192,0.621085,0.632586,0.965529,0.763316,0.870028,0.443335,0.647923,0.278255,0.782055,0.0258069,0.234044,0.497212,0.547344,0.192972,0.405852,0.0213899,0.778475,0.883343,0.826545,0.99761,0.445786,0.758851,0.551299,0.705482,0.47714,0.492175,0.659088,0.652182,0.310304,0.0956995,0.796095,0.442619,0.496312,0.429876,0.705857,0.834214,0.126109,0.896419,0.0029918,0.101172,0.967101,0.740671,0.0950348,0.870428,0.315226,0.735467,0.965682,0.734959,0.665297,0.831477,0.0618873,0.691031,0.79107,0.128007,0.736109,0.394175,0.992854,0.41486,0.324042,0.07127,0.603055,0.75148,|0.26165,0.518573,0.998415,0.00587022,0.930758,0.849971,0.237784,0.327429,0.0120203,0.194021,0.0438282,0.587524,0.114859,0.133245,0.260435,0.667362,0.955289,0.392566,0.529743,0.308594,0.00319034,0.426941,0.620232,0.202004,0.0326434,0.937359,0.749077,0.221958,0.796005,0.242176,0.578638,0.115058,0.794722,0.953222,0.963268,0.518926,0.00623459,0.520425,0.593606,0.507086,0.168833,0.305664,0.235289,0.411615,0.995197,0.985928,0.916821,0.669208,0.94075,0.633037,0.158285,0.671002,0.00219721,0.396534,0.597027,0.232959,0.167952,0.0357068,0.468421,0.0225405,0.117739,0.316898,0.316331,0.946221,0.429817,0.0989144,0.268938,0.722481,0.439839,0.398636,0.671057,0.801068,0.660905,0.0961896,0.266578,0.14519,0.708033,0.85153,0.155233,0.325197,0.804096,0.135583,0.487101,0.810925,0.438118,0.215206,0.695497,0.0779073,0.922837,0.755732,0.720295,0.930854,0.113802,0.688767,0.599797,0.556092,0.320805,0.976708,0.582004,0.17916,0.079034,0.0868781,0.810507,0.0471311,0.280377,0.0218401,0.159493,0.724587,0.0233361,0.664948,0.289285,0.0690126,0.192099,0.0906703,0.557233,0.874898,0.1464,0.230545,0.262747,0.601767,0.577398,0.880009,0.0352935,0.879116,0.394325,0.471171,0.523259,0.0843238,0.718636,0.624784,0.349606,0.880612,0.189123,0.774822,0.0747492,0.700207,0.0351062,0.111035,0.332198,0.478181,0.132602,0.674314,0.282451,0.739229,0.523836,0.406793,0.647803,0.10779,0.0322645,0.597557,0.469237,0.102201,0.578394,0.903887,0.252732,0.362748,0.819443,0.160914,0.314416,0.144354,0.395179,0.768671,0.830311,0.927068,0.116943,0.857078,0.506549,0.107648,0.996284,0.535801,0.716664,0.561107,0.595358,0.299715,0.785941,0.699298,0.695146,0.358496,0.0980815,0.639574,0.742955,0.169796,0.703197,0.909725,0.853436,0.760198,0.81599,0.971637,0.947917,0.716756,0.93946,0.0978258,0.551929,0.996194,0.257034,0.772129,0.976712,0.357564,0.0920742,0.141192,0.464762,0.191204,0.703642,0.511517,0.660284,0.6734,0.843113,0.848274,0.704189,0.325341,0.928117,0.288947,0.144294,0.650876,0.646627,0.285785,0.871272,0.45571,0.250399,0.505725,0.826133,0.559805,0.88202,0.361626,0.502004,0.896952,0.268314,0.79242,0.628307,0.346769,0.0183893,0.185425,0.489057,0.173816,0.215335,0.177376,0.127999,0.421919,0.986715,0.0375744,0.00171274,0.39299,0.789841,0.733537,0.10071,0.909246,0.513954,0.516835,0.629962,0.552152,0.352256,0.0835453,0.0598516,0.478231,0.731796,0.59229,0.195584,0.484554,0.770597,0.606057,0.822356,0.617164,0.578143,0.0159864,0.157188,0.514291,0.724308,0.575876,0.339473,0.383845,0.136738,0.330061,0.364222,0.0139114,0.944892,0.557801,0.858819,0.0871871,0.637211,0.881807,0.349538,0.469161,0.00165129,0.382553,0.224995,0.411556,0.926426,0.407701,0.676363,0.309574,0.380173,0.0686364,0.0728867,0.85823,0.307785,0.281464,0.0425934,0.03864,0.715478,0.51271,0.461607,0.390975,0.0640428,0.212817,0.241051,0.778371,0.0133929,0.189578,0.221578,0.219762,0.911168,0.270275,0.994798,0.416365,0.569834,0.837123,0.384588,0.818118,0.514558,0.914612,0.553303,0.463966,0.0832449,0.768839,0.315512,0.554529,0.769039,0.953741,0.628735,0.443681,0.711344,0.444015,0.527556,0.553657,0.0104322,0.0422698,0.0525954,0.526515,0.65571,0.614799,0.062802,0.159329,0.873106,0.150152,0.81727,0.65609,0.720181,0.764737,0.157467,0.922071,0.490195,0.808574,0.759934,0.437066,0.234649,0.470854,0.838077,0.0111423,0.705734,0.131146,0.749068,0.986936,0.0664235,0.391807,0.443732,0.0959776,0.713665,0.214024,0.649154,0.225806,0.403697,0.815533,0.258465,0.386153,0.528384,0.828031,0.518057,0.591439,0.000533164,0.611175,0.00495982,0.438511,0.327157,0.345949,0.533959,0.86902,0.115842,0.807244,0.545137,0.930801,0.0377486,0.297161,0.856129,0.166697,0.815997,0.0488689,0.336623,0.866605,0.22019,0.478072,0.241275,0.0789068,0.735337,0.133573,0.121826,0.56655,0.799602,0.245966,0.0111701,0.28693,0.380339,0.0940299,0.170991,0.11054,0.36314,0.981112,0.645169,0.449014,0.750101,0.814891,0.0544026,0.64281,0.306626,0.917026,0.0599915,0.441621,0.334638,0.385911,0.10639,0.738669,0.550996,0.49432,0.0780967,0.630989,0.424567,0.804019,0.87561,0.00317138,0.67973,0.19085,0.264644,0.561171,0.878186,0.935839,0.33062,0.466681,0.708358,0.709163,0.791039,0.686389,0.521207,0.749558,0.521,0.320771,0.43073,0.150706,0.382524,0.609261,0.897676,0.615585,0.589156,0.621597,0.647053,0.547477,0.156526,0.962637,0.218112,0.919106,0.539328,0.782,0.686212,0.606028,0.208498,0.0366516,0.0851117,0.658834,0.263918,0.811501,0.0427358,0.804804,0.582643,0.640945,0.44861,0.700527,0.28424,0.179965,0.454783,0.452998,0.368895,0.86584,0.79227,0.556847,0.0717844,0.562927,0.0411974,0.870838,0.217738,0.788875,0.53296,0.340028,0.494563,0.654306,0.222428,0.968257,0.408883,0.626126,0.139468,0.0415532,0.970776,0.203279,0.146723,0.745743,0.182062,0.568905,0.471482,0.780892,0.599719,0.840072,0.462025,0.927555,0.962883,0.775081,0.710684,0.64916,0.804126,0.21404,0.346841,0.400724,0.327285,0.809908,0.283191,0.164607,0.487163,0.046712,0.306517,0.0749491,0.290555,0.554268,0.657094,0.402732,0.830037,0.346026,0.513545,0.699345,0.545927,0.331771,0.618202,0.845668,0.834975,0.780481,0.276459,0.984487,0.995274,0.163788,0.276804,0.0517592,0.868788,0.00223178,0.630095,0.301419,0.456222,0.122034,0.9432,0.23358,0.385756,0.984893,0.987373,0.740957,0.323925,0.94638,0.351643,0.478471,0.76012,0.321441,0.368213,0.93448,0.629157,0.338982,0.644053,0.683598,0.736986,0.280532,0.829244,0.342597,0.0238833,0.673434,0.569581,0.985786,0.719062,0.877341,0.148805,0.948973,0.51295,0.472218,0.750936,0.081013,0.38028,0.0429028,0.578541,0.872875,0.291946,0.187461,0.520288,0.408262,0.84946,0.380441,0.928128,0.138745,0.270793,0.608593,0.815064,0.655217,0.86684,0.214881,0.620063,0.19276,0.982934,0.40686,0.667861,0.0727866,0.365675,0.562025,0.12386,0.190301,0.0583666,0.374813,0.147354,0.407837,0.483801,0.988168,0.362561,0.646537,0.318309,0.0693439,0.0279967,0.284088,0.0734476,0.692748,0.343787,0.259102,0.573065,0.51509,0.832915,0.539937,0.197141,0.99293,0.825078,0.853321,0.99744,0.499097,0.599894,0.227692,0.893455,0.425362,0.999157,0.878827,0.103065,0.605337,0.197538,0.765039,0.624568,0.462431,0.909205,0.645625,0.942855,0.299355,0.340314,0.661777,0.283114,0.728769,0.0553718,0.419182,0.963645,0.636447,0.466973,0.529646,0.462543,0.604029,0.0247251,0.455363,0.180732,0.389966,0.973186,0.991153,0.244613,0.39784,0.0116729,0.247236,0.782645,0.612148,0.475211,0.396201,0.669156,0.0578125,0.927209,0.0393197,0.840219,0.491172,0.756003,0.175131,0.0246889,0.794906,0.661948,0.0752058,0.627567,0.643489,0.3757,0.348289,0.322832,0.156389,0.738179,0.493474,0.970832,0.348707,0.0134547,0.255513,0.807997,0.643451,0.636047,0.707698,0.942594,0.196854,0.799853,0.346479,0.465757,0.97538,0.191668,0.00860065,0.630771,0.812318,0.241911,0.100602,0.304729,0.345186,0.697685,0.536097,0.269371,0.261083,0.448996,0.584618,0.591486,0.382578,0.676539,0.766517,0.986477,0.898437,0.790124,0.0900052,0.523681,0.259621,0.855138,0.958515,0.269707,0.0933267,0.170843,0.594946,0.895053,0.788299,0.100036,0.598679,0.656884,0.126696,0.168415,0.700342,0.269202,0.319606,0.851788,0.853469,0.375493,0.873906,0.143077,0.310426,0.839102,0.622338,0.674973,0.168325,0.678032,0.603998,0.776554,0.0621934,0.555231,0.811015,0.454311,0.171005,0.436444,0.879878,0.214423,0.30866,0.778632,0.287067,0.161443,0.764295,0.596734,0.997855,0.551552,0.356914,0.831528,0.519937,0.40567,0.0603595,0.934747,0.799569,0.392726,0.298542,0.0272793,0.378768,0.00483721,0.70101,0.637048,0.582207,0.703897,0.703622,0.876318,0.996637,0.111593,0.195007,0.0251355,0.0203511,0.767557,0.594867,0.336262,0.298493,0.157867,0.716345,0.837585,0.832435,0.83831,0.997037,0.848181,0.770229,0.98835,0.445119,0.973932,0.717295,0.489528,0.929377,0.733701,0.107651,0.710089,0.48434,0.0664561,0.922504,0.46975,0.601344,0.679163,0.296958,0.73861,0.517412,0.9463,0.669498,0.0314789,0.394728,0.631428,0.834518,0.465306,0.230278,0.678297,0.18777,0.469515,0.624329,0.410059,0.753932,0.352153,0.946096,0.515861,0.87687,0.621529,0.948689,0.713426,0.82592,0.119897,0.267964,0.49994,0.704485,0.220179,0.745544,0.965086,0.998281,0.135114,0.655031,0.368362,0.784448,0.923645,0.197863,0.981486,0.612676,0.758371,0.780573,0.827933,0.731799,0.186589,0.254685,0.725932,0.402132,0.359434,0.579739,0.79131,0.304435,0.934352,0.0963957,0.11778,0.00644511,0.33814,0.326383,0.414572,0.126663,0.285872,0.0435682,0.0472451,0.104856,0.184388,0.242976,0.96386,0.514768,0.914516,0.260596,0.456992,0.263397,0.309939,0.550824,0.319238,0.204072,0.198373,0.623298,0.197424,0.25103,0.190939,0.730795,0.803823,0.737484,0.887661,0.639741,0.197938,0.875011,0.988165,0.852986,0.561388,0.0853724,0.778591,0.158305,0.699965,0.0704052,0.156634,0.660934,0.84275,0.120107,0.585703,0.953053,0.184749,0.516409,0.0630333,0.917648,0.229308,0.970037,0.917717,0.212354,0.395213,0.0513306,0.627741,0.710953,0.87366,0.858856,0.153365,0.188258,0.657074,0.320864,0.488361,0.945324,0.369956,0.904341,0.323343,0.0293158,0.666886,0.136081,0.870076,0.49047,0.655937,0.919418,0.847727,0.587784,0.0971602,0.95086,0.566714,0.242007,0.824473,0.509421,0.995808,0.397071,0.460547,0.756517,0.474197,0.800528,0.0129489,0.412479,0.796286,0.104072,0.606312,0.587294,0.931786,0.282956,|0.942215,0.58355,0.548998,0.163557,0.850351,0.813757,0.484651,0.521925,0.322702,0.398313,0.85024,0.0829233,0.212244,0.910848,0.486187,0.882868,0.649545,0.311072,0.0987152,0.426559,0.533175,0.221321,0.574014,0.196713,0.192914,0.535508,0.603,0.633849,0.51558,0.480079,0.97414,0.567204,0.820368,0.570451,0.751668,0.905364,0.0790582,0.520275,0.0352188,0.68786,0.883174,0.665155,0.582094,0.491145,0.696369,0.528002,0.405818,0.467497,0.259711,0.293826,0.957586,0.123957,0.517317,0.00246614,0.418185,0.478674,0.947076,0.291158,0.427503,0.897489,0.270599,0.0879873,0.174183,0.36354,0.478793,0.994317,0.883157,0.953003,0.327047,0.328404,0.512015,0.0365027,0.462941,0.186607,0.629635,0.239986,0.10123,0.260998,0.322183,0.428608,0.955477,0.317463,0.613535,0.744939,0.538703,0.385347,0.541987,0.943564,0.689485,0.29535,0.391308,0.130031,0.771896,0.473996,0.301322,0.553539,0.741648,0.771453,0.754827,0.854963,0.991519,0.206108,0.413125,0.767504,0.605448,0.300304,0.165078,0.221511,0.562887,0.853171,0.144386,0.508067,0.174709,0.27768,0.253432,0.0819381,0.510302,0.677325,0.309516,0.60408,0.0883473,0.171847,0.231835,0.473625,0.949728,0.744931,0.942949,0.336582,0.813528,0.41865,0.353728,0.0937445,0.766985,0.267596,0.601007,0.0139085,0.532134,0.998057,0.571903,0.944555,0.0126017,0.957237,0.184025,0.436496,0.830903,0.349204,0.37935,0.62238,0.667888,0.803365,0.404544,0.366737,0.981962,0.8559,0.20811,0.477316,0.340109,0.477904,0.788604,0.703837,0.919331,0.771489,0.514431,0.15318,0.873962,0.424123,0.466954,0.226551,0.589779,0.154686,0.682925,0.0881909,0.614802,0.577834,0.606789,0.0789284,0.258101,0.917793,0.473186,0.501087,0.677911,0.0440744,0.689432,0.526409,0.231476,0.914621,0.665807,0.796207,0.660403,0.22379,0.548011,0.324565,0.259665,0.21488,0.854847,0.681958,0.0972012,0.210164,0.48052,0.0198015,0.829103,0.125004,0.498368,0.311066,0.448591,0.000927687,0.753711,0.21843,0.918717,0.2077,0.747538,0.347859,0.257785,0.507343,0.391695,0.846522,0.224878,0.905165,0.831487,0.762053,0.251627,0.863643,0.00371891,0.150152,0.782737,0.237669,0.835655,0.626472,0.0928926,0.654227,0.735438,0.754006,0.33862,0.900504,0.900497,0.50696,0.276797,0.633529,0.515498,0.115108,0.791544,0.637606,0.393406,0.450276,0.369759,0.893894,0.669085,0.904361,0.135283,0.746111,0.162805,0.364703,0.225573,0.453035,0.852118,0.963992,0.914405,0.0288154,0.307758,0.652421,0.723829,0.914782,0.171381,0.627869,0.562217,0.539282,0.553854,0.332458,0.86641,0.66989,0.77973,0.508953,0.933498,0.258448,0.653057,0.782677,0.918715,0.334763,0.744094,0.303866,0.676153,0.444295,0.287028,0.159858,0.145198,0.817579,0.733481,0.741593,0.499275,0.166894,0.75144,0.784804,0.32176,0.20542,0.249289,0.436021,0.288925,0.423975,0.764006,0.887105,0.546605,0.280245,0.411964,0.9586,0.551249,0.387912,0.00208682,0.00553584,0.596097,0.901437,0.208669,0.165386,0.509377,0.752604,0.235749,0.348058,0.626411,0.240084,0.584157,0.600082,0.803008,0.850579,0.980574,0.901647,0.110052,0.326511,0.984526,0.603609,0.886587,0.293072,0.19565,0.34048,0.670437,0.246181,0.630643,0.0783843,0.512557,0.611076,0.834829,0.811644,0.0131051,0.043905,0.217366,0.696889,0.795161,0.0864558,0.892345,0.00937968,0.393033,0.570024,0.550316,0.418171,0.772423,0.525071,0.209004,0.0291749,0.713265,0.782727,0.0358182,0.877155,0.969078,0.469414,0.491091,0.310073,0.968993,0.218616,0.851144,0.296023,0.355686,0.349069,0.405368,0.361045,0.408972,0.725638,0.22855,0.653129,0.0105128,0.617939,0.37766,0.118258,0.272272,0.696048,0.0324971,0.277477,0.602343,0.384394,0.932961,0.939973,0.0518084,0.113441,0.938173,0.36483,0.27978,0.408582,0.711389,0.282419,0.392777,0.674881,0.360305,0.243318,0.863952,0.137526,0.265307,0.520932,0.717425,0.0124358,0.57768,0.164429,0.350706,0.853444,0.518197,0.907844,0.0584896,0.927163,0.39525,0.9387,0.671425,0.820784,0.0505112,0.666207,0.693607,0.459098,0.278105,0.399277,0.552574,0.473416,0.393277,0.538413,0.749079,0.190349,0.952429,0.0252489,0.635606,0.369593,0.0587722,0.931719,0.382233,0.393237,0.456318,0.162623,0.409074,0.36414,0.284563,0.151441,0.123455,0.737895,0.705076,0.339745,0.161952,0.43541,0.534107,0.548689,0.323216,0.264289,0.30173,0.428687,0.410388,0.520449,0.40362,0.515296,0.563741,0.792316,0.533633,0.828683,0.562381,0.609244,0.609,0.515604,0.143146,0.0304436,0.285971,0.240851,0.542239,0.947824,0.687347,0.876683,0.467283,0.48303,0.576542,0.928812,0.755781,0.102709,0.6619,0.161739,0.152979,0.528606,0.948467,0.265677,0.821808,0.920686,0.976626,0.464881,0.0458812,0.117293,0.272407,0.0504696,0.21561,0.796695,0.0359069,0.910697,0.883294,0.182974,0.360997,0.513856,0.496803,0.331644,0.206438,0.991136,0.170004,0.359471,0.39669,0.184891,0.152178,0.377294,0.75123,0.491213,0.139339,0.493537,0.806213,0.40305,0.191104,0.27269,0.194686,0.672947,0.0153826,0.927468,0.181079,0.145449,0.747281,0.895704,0.715044,0.568012,0.933248,0.950603,0.39464,0.763127,0.40801,0.342454,0.315569,0.178299,0.511348,0.925761,0.968749,0.920489,0.267866,0.867729,0.807697,0.67619,0.731334,0.306911,0.340234,0.544362,0.450068,0.580343,0.190636,0.499913,0.441456,0.785409,0.888813,0.407483,0.32825,0.320006,0.0578388,0.931198,0.469956,0.572522,0.410309,0.496916,0.33414,0.410816,0.411621,0.00500923,0.208563,0.907429,0.892524,0.977724,0.494991,0.570687,0.443369,0.447872,0.957858,0.544837,0.384435,0.766139,0.0944555,0.670413,0.747022,0.837313,0.314966,0.781353,0.634402,0.238334,0.941733,0.937126,0.0970825,0.249488,0.332209,0.933288,0.863361,0.60531,0.408059,0.0493212,0.804211,0.989849,0.850309,0.408143,0.974661,0.633813,0.668483,0.401101,0.812948,0.84569,0.550004,0.0845529,0.823184,0.297131,0.92136,0.641722,0.752419,0.859015,0.30286,0.413377,0.087148,0.115946,0.63868,0.471654,0.00760865,0.329541,0.794178,0.0134485,0.801847,0.504149,0.170815,0.197968,0.348336,0.832653,0.50737,0.458289,0.352619,0.11396,0.370603,0.266479,0.592927,0.0929763,0.79006,0.315325,0.565232,0.843394,0.832583,0.471941,0.972741,0.0619477,0.319202,0.990206,0.275858,0.932182,0.526554,0.0821017,0.122735,0.0784745,0.217157,0.741702,0.0555222,0.50634,0.169612,0.402077,0.179844,0.168847,0.817937,0.841017,0.500214,0.610451,0.420127,0.518004,0.0637311,0.956908,0.0951251,0.5719,0.102748,0.69573,0.14683,0.610511,0.423696,0.224649,0.970631,0.828107,0.948966,0.524656,0.578994,0.864589,0.772668,0.267012,0.499497,0.615312,0.102325,0.814612,0.0109418,0.237073,0.0870839,0.738157,0.059854,0.455636,0.161207,0.266723,0.43252,0.322517,0.245589,0.565081,0.95523,0.636032,0.272653,0.406663,0.84421,0.487512,0.953267,0.480065,0.476966,0.28449,0.154555,0.215894,0.170155,0.533607,0.757146,0.573704,0.388511,0.982002,0.803558,0.0651516,0.479822,0.188873,0.684949,0.960284,0.657213,0.951888,0.580679,0.894673,0.564593,0.490008,0.376972,0.822017,0.771518,0.381795,0.0257186,0.457537,0.874352,0.389466,0.87947,0.71698,0.0274669,0.657858,0.959431,0.206008,0.84217,0.81448,0.714003,0.088951,0.210171,0.611381,0.471797,0.242619,0.673628,0.369944,0.512426,0.800775,0.184261,0.96711,0.595264,0.255842,0.797026,0.406447,0.453136,0.96825,0.595662,0.206948,0.221347,0.330329,0.514795,0.279398,0.274448,0.235429,0.12418,0.674724,0.239399,0.823903,0.954976,0.794802,0.0586913,0.441269,0.343735,0.78557,0.558533,0.539761,0.183065,0.778882,0.931448,0.262801,0.779625,0.362751,0.495547,0.535847,0.729686,0.610261,0.137589,0.536991,0.541352,0.285456,0.00914586,0.0465974,0.718395,0.175223,0.957874,0.568323,0.110563,0.416421,0.0661498,0.654562,0.681402,0.896688,0.438449,0.269801,0.845783,0.573388,0.813319,0.16787,0.453603,0.300493,0.117806,0.418157,0.594434,0.893513,0.0637043,0.517717,0.273094,0.743944,0.632347,0.992666,0.537049,0.745933,0.655679,0.0767735,0.936134,0.307004,0.0686014,0.830294,0.659899,0.901819,0.596045,0.452887,0.560913,0.173239,0.802364,0.803786,0.581192,0.904716,0.988746,0.631588,0.814734,0.880924,0.974696,0.383603,0.292314,0.478915,0.651466,0.306871,0.392919,0.033662,0.772136,0.509533,0.743289,0.740315,0.935413,0.866789,0.930405,0.00523072,0.652362,0.952934,0.242921,0.705352,0.141915,0.00438386,0.520768,0.756528,0.567309,0.0553012,0.364958,0.592945,0.965865,0.510158,0.312221,0.140005,0.700271,0.0377002,0.803133,0.520177,0.94127,0.931219,0.0436583,0.428352,0.788131,0.342602,0.106112,0.186646,0.696181,0.950078,0.744387,0.0786493,0.405325,0.546263,0.533011,0.128358,0.242417,0.840943,0.767244,0.402423,0.935342,0.628133,0.253355,0.143454,0.296059,0.894537,0.364355,0.581439,0.669211,0.0580887,0.111281,0.118652,0.326521,0.573106,0.716147,0.77724,0.945926,0.347109,0.317012,0.748309,0.64611,0.631388,0.974117,0.243431,0.988033,0.00638103,0.824818,0.659294,0.352264,0.548977,0.123062,0.0375977,0.569971,0.681458,0.52294,0.351433,0.370656,0.068826,0.965479,0.405422,0.999249,0.554089,0.216375,0.726454,0.680098,0.317835,0.615077,0.0335845,0.361858,0.396139,0.0624656,0.116725,0.517429,0.854481,0.612992,0.161119,0.449591,0.450443,0.742983,0.267242,0.625271,0.171897,0.656055,0.896798,0.323889,0.220699,0.868936,0.115868,0.468796,0.112123,0.189575,0.436093,0.769602,0.65454,0.418436,0.461394,0.51489,0.452001,0.103052,0.743472,0.844779,0.0144517,0.593791,0.367501,0.50463,0.359807,|0.812033,0.224857,0.614103,0.052977,0.316001,0.414623,0.459989,0.415106,0.163202,0.651307,0.521403,0.88619,0.812138,0.712818,0.949824,0.850752,0.145324,0.243059,0.965739,0.231905,0.770791,0.546061,0.996176,0.0417002,0.380484,0.646985,0.431544,0.648964,0.623088,0.526678,0.525829,0.173882,0.557095,0.892204,0.651076,0.0718317,0.222013,0.813779,0.418734,0.652011,0.0135649,0.574153,0.243607,0.663706,0.0349908,0.578764,0.0633461,0.129441,0.142251,0.963647,0.871193,0.378318,0.365599,0.9122,0.360223,0.454396,0.879693,0.58411,0.451738,0.892327,0.421788,0.505652,0.47952,0.13276,0.0924111,0.448294,0.335976,0.420282,0.00980848,0.686351,0.941507,0.0734718,0.489972,0.630529,0.883273,0.333467,0.791467,0.570114,0.504434,0.498346,0.608118,0.415875,0.813308,0.782833,0.287264,0.89572,0.619217,0.479075,0.781889,0.0569237,0.312921,0.438364,0.0668406,0.517135,0.210774,0.321017,0.736887,0.726406,0.875144,0.889466,0.00542849,0.249399,0.194469,0.546697,0.820119,0.0347402,0.758757,0.0882385,0.469255,0.103144,0.614564,0.744864,0.305265,0.199971,0.393815,0.674978,0.891319,0.453149,0.143981,0.957485,0.918891,0.0886768,0.380343,0.693819,0.0152227,0.977351,0.892119,0.627362,0.341622,0.00959611,0.81154,0.333222,0.0969298,0.183982,0.540811,0.19692,0.128235,0.844917,0.646146,0.765652,0.554407,0.747702,0.599921,0.139312,0.477167,0.650544,0.996973,0.749648,0.731658,0.372344,0.887852,0.76223,0.586407,0.762594,0.335801,0.431299,0.224181,0.24251,0.210343,0.344401,0.559803,0.302011,0.0635166,0.275694,0.233347,0.23031,0.0401719,0.445322,0.878044,0.306151,0.0190989,0.917867,0.955977,0.871486,0.128318,0.643447,0.888794,0.631154,0.280028,0.22768,0.316273,0.201689,0.844105,0.946192,0.625825,0.980983,0.149135,0.279433,0.679974,0.762733,0.290983,0.949043,0.286463,0.333878,0.369745,0.876821,0.475567,0.932409,0.361384,0.248712,0.616659,0.85551,0.195077,0.997297,0.715956,0.552111,0.053351,0.814612,0.255734,0.624602,0.893639,0.411242,0.765601,0.344819,0.857241,0.0895052,0.0929132,0.579453,0.823542,0.060366,0.0982888,0.411615,0.989429,0.211581,0.0776363,0.682863,0.425595,0.669836,0.445516,0.214323,0.683519,0.638278,0.0763235,0.165837,0.292108,0.265996,0.313949,0.69573,0.610208,0.564067,0.36711,0.0723552,0.58032,0.186541,0.737512,0.119905,0.560915,0.647178,0.828535,0.214756,0.410162,0.180374,0.349054,0.75869,0.914973,0.77496,0.781208,0.376803,0.260875,0.649129,0.973816,0.502063,0.215447,0.706082,0.982925,0.729056,0.658404,0.59296,0.394285,0.0802643,0.293078,0.610789,0.317383,0.0781665,0.842387,0.483865,0.749564,0.985876,0.50603,0.386518,0.629347,0.606406,0.153697,0.0521179,0.246116,0.819773,0.0232227,0.867788,0.13066,0.760001,0.953409,0.67851,0.804842,0.030274,0.907448,0.423986,0.772336,0.665062,0.195929,0.430713,0.887885,0.0125237,0.371007,0.481224,0.189852,0.487377,0.166412,0.677393,0.801849,0.745668,0.877452,0.786675,0.0619296,0.397409,0.224182,0.183443,0.554084,0.531909,0.959262,0.661467,0.158567,0.432515,0.0961105,0.891052,0.705699,0.577408,0.615357,0.107986,0.472331,0.75771,0.728145,0.515712,0.521651,0.637651,0.490361,0.0394009,0.910984,0.191644,0.277837,0.199003,0.225125,0.375129,0.750343,0.251106,0.254528,0.598884,0.17386,0.80557,0.464555,0.621842,0.231984,0.0133873,0.482135,0.831344,0.531613,0.0194187,0.00540936,0.762306,0.281618,0.276,0.20792,0.40515,0.944536,0.965949,0.461607,0.269455,0.182708,0.59906,0.114154,0.17852,0.75174,0.136659,0.437847,0.210846,0.158881,0.613744,0.0702885,0.789846,0.719732,0.0955207,0.43676,0.884619,0.742878,0.104871,0.579194,0.617477,0.493524,0.377608,0.854728,0.462692,0.170451,0.597126,0.533872,0.597768,0.295394,0.818269,0.963108,0.582093,0.964511,0.319415,0.936782,0.0115235,0.571551,0.38544,0.147062,0.719536,0.546527,0.121753,0.243864,0.00607526,0.489086,0.411312,0.251637,0.350888,0.524767,0.408665,0.135937,0.940796,0.463723,0.278811,0.478975,0.780047,0.0793549,0.588958,0.940813,0.944578,0.621115,0.212713,0.988282,0.695767,0.268778,0.479224,0.38643,0.817506,0.369256,0.962975,0.517306,0.367592,0.671216,0.0387576,0.635483,0.921171,0.474534,0.393181,0.279229,0.950961,0.00868922,0.499481,0.974773,0.0549217,0.80123,0.391452,0.580263,0.888376,0.809208,0.425311,0.744962,0.747231,0.605165,0.966295,0.275101,0.801083,0.322837,0.363572,0.212513,0.176219,0.159543,0.287595,0.264502,0.995075,0.61407,0.413478,0.599595,0.668327,0.487109,0.776484,0.649048,0.0926014,0.637636,0.4139,0.266522,0.184813,0.689601,0.902749,0.796601,0.214621,0.11122,0.602742,0.518041,0.503061,0.0301298,0.873415,0.321755,0.241773,0.921721,0.694995,0.973131,0.668678,0.576378,0.706044,0.417657,0.66599,0.538514,0.786263,0.0905408,0.126663,0.277918,0.985226,0.69909,0.690924,0.759815,0.206566,0.700121,0.0331988,0.68757,0.653032,0.21975,0.824105,0.546215,0.238286,0.182161,0.851576,0.701861,0.216044,0.593406,0.145891,0.353852,0.193807,0.49421,0.447719,0.254603,0.629389,0.0202721,0.972327,0.160997,0.925525,0.871247,0.469794,0.113487,0.490047,0.127631,0.970123,0.700923,0.517212,0.477685,0.610179,0.797913,0.703362,0.517377,0.507479,0.795141,0.575885,0.103893,0.825156,0.260323,0.720232,0.186863,0.98463,0.718511,0.573281,0.5184,0.754615,0.78222,0.41225,0.0111397,0.0966299,0.91242,0.393514,0.278131,0.431489,0.85554,0.913954,0.825748,0.315714,0.258372,0.393998,0.467135,0.766377,0.384557,0.0922709,0.43729,0.777588,0.379904,0.154524,0.500322,0.393722,0.386425,0.936052,0.754872,0.131296,0.697431,0.847219,0.784501,0.508948,0.719843,0.449667,0.856889,0.504255,0.62721,0.536797,0.516081,0.973768,0.215844,0.305502,0.57202,0.188479,0.588406,0.315554,0.101672,0.928136,0.9292,0.271728,0.369888,0.402924,0.775375,0.57971,0.512048,0.438201,0.276538,0.61963,0.978553,0.95052,0.0809278,0.402646,0.824131,0.0679818,0.961831,0.65691,0.230547,0.704825,0.957837,0.432819,0.345071,0.134112,0.560545,0.061093,0.395565,0.892013,0.22998,0.84411,0.222643,0.880896,0.694064,0.246454,0.297448,0.448645,0.434367,0.739463,0.234263,0.704405,0.559624,0.6717,0.779521,0.369487,0.901507,0.280586,0.775837,0.538018,0.90085,0.314525,0.900108,0.493841,0.712243,0.815813,0.230027,0.849274,0.0207753,0.83842,0.553535,0.277594,0.104282,0.645696,0.418305,0.166264,0.433406,0.749675,0.301567,0.943966,0.687331,0.0980569,0.59558,0.336088,0.328133,0.19897,0.836622,0.889157,0.392611,0.474372,0.636985,0.79372,0.391155,0.350196,0.33962,0.821054,0.394875,0.740148,0.20035,0.398055,0.342027,0.417257,0.878276,0.0952212,0.657304,0.00124532,0.254826,0.352304,0.143214,0.693964,0.760336,0.384342,0.180931,0.838276,0.12282,0.742586,0.138713,0.32051,0.969109,0.0148674,0.0878278,0.922079,0.7568,0.956654,0.701559,0.0062964,0.794864,0.0102038,0.420199,0.790125,0.856267,0.727786,0.341898,0.612046,0.323333,0.243863,0.969669,0.744828,0.617941,0.726023,0.133693,0.469709,0.143354,0.170128,0.763136,0.296377,0.242693,0.107253,0.869713,0.771484,0.411015,0.759327,0.524297,0.309895,0.23972,0.729055,0.667044,0.636313,0.57511,0.123984,0.690109,0.791534,0.486844,0.597472,0.951791,0.203012,0.149819,0.255236,0.554305,0.620145,0.290726,0.636061,0.209225,0.912416,0.787898,0.455245,0.203397,0.732811,0.283327,0.590005,0.696245,0.46514,0.295996,0.0816689,0.236821,0.498609,0.159991,0.151589,0.178083,0.283452,0.176885,0.12489,0.89338,0.384661,0.378265,0.631696,0.587623,0.821129,0.345767,0.750905,0.592287,0.163794,0.318894,0.0323986,0.990203,0.826287,0.949276,0.492039,0.806118,0.50873,0.129189,0.237746,0.219757,0.586048,0.971876,0.491817,0.555917,0.361148,0.83397,0.273127,0.153814,0.37934,0.80739,0.0991407,0.034032,0.287551,0.751179,0.607377,0.549447,0.142328,0.433215,0.798684,0.755149,0.370084,0.426138,0.732935,0.959174,0.823387,0.184523,0.493342,0.774614,0.462078,0.128569,0.678332,0.215781,0.962697,0.746067,0.268328,0.30429,0.430949,0.192164,0.987496,0.615761,0.185185,0.652064,0.653086,0.717786,0.123405,0.213879,0.749826,0.831659,0.294035,0.241368,0.372466,0.636767,0.978204,0.00462979,0.987303,0.119938,0.609415,0.9966,0.532417,0.864815,0.259786,0.320537,0.351307,0.468421,0.472227,0.16742,0.131653,0.179185,0.0567487,0.766202,0.352317,0.552725,0.779481,0.563635,0.845539,0.730131,0.464967,0.132146,0.839262,0.527967,0.495617,0.939964,0.275477,0.70246,0.200825,0.936781,0.375993,0.0170841,0.447446,0.766466,0.508097,0.445831,0.122685,0.988648,0.509937,0.945279,0.267258,0.644453,0.834163,0.373924,0.995192,0.149654,0.696953,0.465621,0.704701,0.0653575,0.774434,0.681114,0.416783,0.950025,0.0603946,0.522725,0.487992,0.475183,0.345849,0.329926,0.742544,0.0564308,0.833312,0.700759,0.741809,0.305557,0.271785,0.239514,0.469288,0.881923,0.42084,0.417176,0.438568,0.0911541,0.625571,0.099528,0.546211,0.0586011,0.042806,0.624294,0.271518,0.837585,0.00214124,0.182287,0.63079,0.853847,0.238256,0.0166579,0.510817,0.738038,0.408934,0.972438,0.886392,0.846842,0.755244,0.756935,0.167481,0.264153,0.449968,0.0937881,0.519529,0.255546,0.124582,0.959542,0.902108,0.570754,0.727971,0.214917,0.282685,0.740912,0.714195,0.904051,0.373602,0.502103,0.437837,0.22675,0.358265,0.887232,0.493532,0.813896,0.89995,0.473573,0.0466505,0.114934,0.553949,0.333736,0.912994,0.235105,0.854751,0.477418,0.812928,0.593997,0.643569,|0.472312,0.0143059,0.425729,0.584825,0.309022,0.296849,0.54556,0.516616,0.214869,0.544784,0.612103,0.30491,0.0850945,0.0377985,0.193833,0.574674,0.720673,0.515804,0.964243,0.0670722,0.526267,0.444282,0.377829,0.833882,0.623065,0.425761,0.334995,0.8501,0.603393,0.704814,0.84365,0.460061,0.750362,0.37556,0.34985,0.146358,0.710373,0.121947,0.230364,0.99958,0.785354,0.736387,0.322868,0.333035,0.538924,0.707206,0.557353,0.470712,0.658216,0.374536,0.517211,0.574672,0.990831,0.376593,0.856257,0.218183,0.316625,0.296642,0.925329,0.204126,0.864259,0.222912,0.884,0.982609,0.683494,0.368891,0.116516,0.0949239,0.694791,0.764478,0.431035,0.175126,0.211298,0.855204,0.932129,0.730215,0.907447,0.41526,0.587329,0.785087,0.695334,0.321715,0.426569,0.572645,0.0752537,0.153425,0.399369,0.309807,0.384613,0.375543,0.15297,0.613534,0.520623,0.156462,0.568436,0.509214,0.113331,0.163666,0.651035,0.149219,0.607671,0.219667,0.903991,0.337749,0.882438,0.891503,0.375172,0.396973,0.410164,0.309493,0.36739,0.90653,0.848586,0.166834,0.822694,0.299504,0.210879,0.384816,0.978894,0.379647,0.855768,0.488343,0.133694,0.086353,0.396709,0.385484,0.831078,0.600203,0.396646,0.319095,0.67957,0.27427,0.541731,0.734362,0.633015,0.339372,0.655908,0.173531,0.585969,0.157398,0.155538,0.395562,0.948778,0.340865,0.889468,0.537277,0.209911,0.950147,0.31834,0.159169,0.323444,0.0176443,0.540664,0.650523,0.0446149,0.887517,0.564584,0.224975,0.814661,0.569961,0.535231,0.279452,0.0207612,0.709005,0.174191,0.684224,0.659624,0.244648,0.353164,0.335673,0.0417258,0.510233,0.852776,0.633704,0.353787,0.716894,0.90471,0.796693,0.93675,0.239412,0.946759,0.759263,0.472771,0.174259,0.0658689,0.627152,0.962049,0.367342,0.821152,0.0950813,0.902557,0.867725,0.627447,0.708561,0.844229,0.217967,0.408318,0.0417476,0.287563,0.846139,0.559748,0.82088,0.288603,0.443343,0.181072,0.387775,0.747746,0.249148,0.0212513,0.561211,0.350113,0.755283,0.677413,0.300886,0.0599814,0.60654,0.211516,0.755777,0.988163,0.465538,0.195303,0.63756,0.0203046,0.613896,0.267577,0.537901,0.23521,0.562987,0.898824,0.0152986,0.946182,0.906314,0.308901,0.757753,0.158798,0.90267,0.785982,0.427562,0.0445161,0.463232,0.147078,0.774564,0.0757992,0.602568,0.121392,0.718421,0.299502,0.949366,0.639675,0.781542,0.69892,2.41399e-05,0.337945,0.766771,0.176072,0.968268,0.626569,0.875352,0.562058,0.560535,0.496951,0.763871,0.454641,0.904849,0.00452173,0.540224,0.125173,0.998222,0.38987,0.702348,0.681394,0.901721,0.284178,0.159132,0.281539,0.0352,0.890251,0.723073,0.0876986,0.976827,0.559284,0.372841,0.104186,0.155724,0.256864,0.717155,0.345939,0.648982,0.341714,0.420404,0.131234,0.249399,0.670768,0.907046,0.537196,0.781644,0.115225,0.973705,0.168658,0.278549,0.642042,0.675822,0.997022,0.0181873,0.420787,0.909427,0.513233,0.568658,0.201227,0.16798,0.081504,0.288633,0.439095,0.953281,0.505226,0.998517,0.291061,0.960805,0.289264,0.502235,0.018273,0.295812,0.614466,0.361981,0.543947,0.771744,0.130544,0.286401,0.285021,0.984372,0.664497,0.334932,0.450201,0.708136,0.614938,0.469525,0.407691,0.385531,0.851179,0.201279,0.590167,0.494801,0.609572,0.150064,0.143305,0.0452337,0.745105,0.138938,0.914606,0.64567,0.676993,0.912607,0.544363,0.151697,0.32659,0.291238,0.447433,0.00549042,0.227825,0.568266,0.0677537,0.201902,0.099463,0.98471,0.514788,0.567741,0.818395,0.803699,0.14724,0.702761,0.186783,0.288728,0.872519,0.450863,0.925341,0.138047,0.777595,0.956111,0.40751,0.835717,0.862172,0.271506,0.279802,0.600337,0.964183,0.87646,0.542535,0.78143,0.320046,0.131283,0.321302,0.216333,0.237506,0.185333,0.113842,0.76599,0.191119,0.285939,0.194444,0.999619,0.496006,0.941691,0.119628,0.717772,0.460021,0.682093,0.0446653,0.942252,0.917491,0.760093,0.339589,0.798103,0.0807097,0.827741,0.152514,0.289826,0.951141,0.224925,0.630345,0.413722,0.578406,0.919104,0.37965,0.313904,0.546887,0.0738534,0.458165,0.135893,0.943146,0.0378593,0.744158,0.127346,0.668926,0.875606,0.440271,0.817946,0.230511,0.916116,0.685123,0.322201,0.807118,0.193668,0.197735,0.53295,0.654877,0.24822,0.531775,0.403629,0.699924,0.123063,0.800779,0.721439,0.655899,0.491864,0.0815836,0.639207,0.19026,0.344861,0.865064,0.839375,0.211875,0.0917568,0.567194,0.8691,0.720418,0.974412,0.405486,0.519808,0.431787,0.294156,0.82682,0.408292,0.728629,0.218348,0.249447,0.695465,0.00220495,0.338998,0.56682,0.537754,0.382177,0.74634,0.105184,0.672813,0.792602,0.937405,0.467818,0.226694,0.895911,0.75157,0.733102,0.257755,0.523216,0.0195533,0.101655,0.0214505,0.508891,0.0137756,0.952724,0.661429,0.605307,0.480129,0.844985,0.133152,0.814429,0.530686,0.775948,0.373729,0.101184,0.142146,0.142122,0.6269,0.0985225,0.496886,0.293641,0.491549,0.453381,0.227145,0.263602,0.193631,0.830969,0.395282,0.524508,0.864884,0.431282,0.845546,0.154506,0.864071,0.213912,0.620142,0.228423,0.549952,0.502994,0.403303,0.412077,0.130849,0.0923052,0.876807,0.501677,0.845032,0.932836,0.115331,0.778032,0.836414,0.539874,0.74983,0.880573,0.543964,0.700712,0.0089224,0.417817,0.214267,0.197387,0.787678,0.962106,0.144239,0.175387,0.507221,0.259354,0.135313,0.638928,0.0427883,0.197578,0.979158,0.622362,0.0234516,0.549256,0.639259,0.108708,0.320991,0.0671522,0.788629,0.805427,0.254654,0.449334,0.56061,0.568604,0.393353,0.632182,0.746084,0.316665,0.112633,0.383431,0.239231,0.788754,0.861017,0.206633,0.969526,0.875678,0.588103,0.185035,0.370867,0.0159488,0.288546,0.0461838,0.951812,0.0199399,0.731259,0.5729,0.159898,0.872288,0.443778,0.945643,0.512762,0.236516,0.738138,0.579753,0.864148,0.0930371,0.74955,0.819872,0.0787336,0.59175,0.626658,0.896562,0.327851,0.771973,0.0255529,0.426161,0.603904,0.118237,0.818179,0.816127,0.790977,0.287486,0.497168,0.143428,0.231418,0.193389,0.977569,0.403038,0.951915,0.812497,0.101093,0.880903,0.463218,0.451905,0.662146,0.0338397,0.801782,0.611759,0.512448,0.386248,0.794593,0.759545,0.836169,0.634671,0.259285,0.847846,0.486787,0.503485,0.326587,0.872463,0.539352,0.559599,0.981613,0.262165,0.0796127,0.539361,0.933618,0.965119,0.79496,0.83409,0.709803,0.84598,0.221733,0.475711,0.271255,0.806279,0.0105804,0.972474,0.463725,0.943259,0.351234,0.837562,0.260309,0.261562,0.502124,0.172372,0.11859,0.609674,0.62945,0.184539,0.944252,0.403472,0.791831,0.547104,0.483126,0.48311,0.699798,0.998917,0.172764,0.684802,0.510425,0.0778771,0.564757,0.248208,0.122104,0.234108,0.660736,0.390969,0.663432,0.917078,0.546916,0.434363,0.688328,0.304162,0.115025,0.820022,0.436446,0.599864,0.39948,0.65542,0.145589,0.672838,0.76845,0.607928,0.491134,0.405478,0.0185806,0.574012,0.193575,0.806901,0.386153,0.525218,0.11282,0.120627,0.0956807,0.363234,0.108931,0.893301,0.781478,0.230205,0.670882,0.649322,0.642082,0.239771,0.877012,0.255242,0.566707,0.112859,0.995352,0.809385,0.451667,0.0901949,0.706833,0.303317,0.815096,0.182608,0.125972,0.416659,0.768876,0.952353,0.458988,0.457995,0.870154,0.261404,0.929302,0.932931,0.00325239,0.936859,0.138531,0.15081,0.294404,0.713089,0.454172,0.915187,0.812538,0.941671,0.972359,0.828816,0.315269,0.510764,0.754269,0.943457,0.259524,0.553767,0.0417815,0.129474,0.573028,0.784673,0.893574,0.894116,0.606099,0.852312,0.0817546,0.775135,0.531296,0.828421,0.0937013,0.0796633,0.584265,0.43443,0.610204,0.182274,0.988842,0.534646,0.792959,0.15481,0.799683,0.973699,0.409768,0.135932,0.554698,0.579525,0.365926,0.539522,0.959762,0.544261,0.962932,0.910126,0.510183,0.111519,0.161008,0.399567,0.753436,0.189269,0.295829,0.442083,0.496978,0.614418,0.725182,0.856924,0.663687,0.348007,0.352262,0.558916,0.131461,0.8666,0.241564,0.169289,0.28996,0.0849792,0.0947698,0.673616,0.403228,0.135598,0.688414,0.144432,0.732024,0.984689,0.582847,0.538517,0.493221,0.461275,0.606511,0.8786,0.91926,0.395297,0.389259,0.56789,0.922285,0.975175,0.373771,0.720926,0.883138,0.208234,0.504702,0.788021,0.907399,0.832732,0.579024,0.600616,0.910755,0.0316217,0.273602,0.0894538,0.923824,0.453678,0.466391,0.6579,0.673662,0.0590855,0.0894082,0.753732,0.839012,0.30069,0.596049,0.243346,0.955321,0.303854,0.565455,0.924344,0.0673951,0.540529,0.767915,0.995094,0.00231135,0.342951,0.735522,0.689754,0.82007,0.65321,0.525196,0.944938,0.401235,0.244528,0.304461,0.301114,0.887531,0.761214,0.193613,0.193907,0.660787,0.337893,0.796049,0.447189,0.334353,0.539402,0.154975,0.115901,0.299761,0.235482,0.602633,0.0555415,0.869297,0.65106,0.297429,0.799824,0.802671,0.641906,0.985072,0.71143,0.367802,0.827082,0.403492,0.0535532,0.40283,0.681879,0.738175,0.43491,0.528922,0.817142,0.627379,0.935938,0.294362,0.748966,0.205591,0.652899,0.408551,0.609734,0.169371,0.95226,0.767114,0.311513,0.398182,0.22015,0.915502,0.984964,0.842351,0.684267,0.479309,0.477711,0.505517,0.155004,0.888787,0.023215,0.60077,0.526499,0.531182,0.741678,0.386029,0.956828,0.0565577,0.0199002,0.680786,0.172128,0.602873,0.644999,0.480361,0.918398,0.949622,0.710643,0.648117,0.75683,0.766325,0.413867,0.259782,0.10046,0.826209,0.738204,0.962937,0.609271,0.20966,0.14445,0.581033,0.856315,0.923024,0.823209,0.341336,0.228187,0.541937,0.24137,0.257877,0.0707898,0.87803,0.926568,0.0983776,0.123172,0.83793,|0.906025,0.951883,0.916684,0.413255,0.264319,0.156877,0.476733,0.339962,0.634282,0.985843,0.738764,0.561969,0.202458,0.351825,0.192826,0.0861446,0.262375,0.0864714,0.342847,0.391403,0.76369,0.222419,0.857173,0.913839,0.572253,0.682964,0.24019,0.114152,0.682962,0.0653332,0.492191,0.511481,0.680654,0.518035,0.184617,0.436953,0.220229,0.778078,0.97594,0.295963,0.217619,0.293562,0.582633,0.135076,0.749506,0.0293915,0.849608,0.0419376,0.395066,0.794964,0.593449,0.0264571,0.0893963,0.333404,0.611515,0.832212,0.102871,0.153426,0.893283,0.0522241,0.740687,0.105873,0.964683,0.44897,0.0156987,0.0242201,0.393952,0.624249,0.900461,0.919081,0.494138,0.120495,0.723145,0.848689,0.621048,0.0941809,0.264275,0.61095,0.860425,0.407889,0.110539,0.528386,0.873249,0.14001,0.662383,0.668364,0.917135,0.181218,0.2019,0.192762,0.946178,0.931665,0.382123,0.435823,0.348115,0.741935,0.859699,0.33096,0.159539,0.353521,0.00898916,0.0460089,0.549056,0.169133,0.202666,0.273053,0.507275,0.295725,0.41651,0.364529,0.863768,0.00561863,0.688008,0.804791,0.0671467,0.655232,0.836781,0.453087,0.996976,0.840855,0.250502,0.0169191,0.988174,0.488991,0.706158,0.79707,0.333385,0.839989,0.227227,0.357976,0.406093,0.826232,0.736279,0.471834,0.145511,0.564383,0.475392,0.588115,0.0930266,0.174904,0.607608,0.389522,0.855956,0.194588,0.681995,0.0356683,0.237502,0.131749,0.686093,0.897577,0.443356,0.947864,0.570147,0.0254553,0.371236,0.0675326,0.933983,0.416763,0.520434,0.0914983,0.824106,0.027139,0.545995,0.320516,0.480445,0.798201,0.417187,0.00230193,0.304209,0.850224,0.0965077,0.895163,0.0362941,0.713775,0.137046,0.527553,0.39266,0.13083,0.272888,0.412009,0.764112,0.844952,0.109134,0.123541,0.670633,0.130905,0.528508,0.870723,0.38294,0.227189,0.645675,0.912308,0.0203606,0.7851,0.339053,0.147086,0.922552,0.152031,0.981749,0.478455,0.197921,0.282575,0.280918,0.194025,0.73552,0.893463,0.208035,0.311398,0.163247,0.437976,0.752678,0.0562381,0.501624,0.551863,0.83484,0.435844,0.552157,0.0561967,0.728438,0.72566,0.106848,0.814195,0.122694,0.664237,0.714747,0.773297,0.91466,0.0420807,0.284147,0.32149,0.0804954,0.775537,0.167411,0.545951,0.336923,0.571513,0.23664,0.900419,0.218732,0.80134,0.579807,0.357882,0.694412,0.38992,0.57842,0.0831896,0.44054,0.710809,0.807147,0.106034,0.0693812,0.730929,0.481981,0.636446,0.217225,0.184196,0.865848,0.740178,0.992227,0.134922,0.65137,0.399191,0.744063,0.645148,0.378281,0.295711,0.0786134,0.963024,0.660535,0.756473,0.915714,0.28442,0.965132,0.35176,0.0713484,0.402359,0.917284,0.581233,0.675757,0.318404,0.991879,0.021961,0.662941,0.809772,0.680636,0.656023,0.685734,0.870556,0.0742058,0.702363,0.176468,0.752395,0.544407,0.702136,0.824885,0.366499,0.414979,0.772477,0.507406,0.777079,0.811207,0.746977,0.474797,0.871132,0.31398,0.706328,0.256345,0.126636,0.226028,0.802404,0.955058,0.870838,0.960674,0.421368,0.903426,0.177037,0.342544,0.893701,0.0788912,0.851382,0.815131,0.69465,0.800353,0.020225,0.343228,0.142509,0.796492,0.192652,0.840779,0.315468,0.651841,0.13367,0.861503,0.435764,0.44918,0.286215,0.214429,0.614218,0.27661,0.814564,0.560163,0.35742,0.756759,0.512727,0.773222,0.181408,0.819689,0.828662,0.0299135,0.0954073,0.451207,0.530631,0.0534192,0.267573,0.0843984,0.00125796,0.710076,0.476797,0.706196,0.0784069,0.240167,0.78299,0.348937,0.317071,0.184689,0.911335,0.177268,0.422457,0.313053,0.113591,0.483282,0.303592,0.50391,0.585396,0.657089,0.337758,0.256568,0.671739,0.569565,0.173271,0.616805,0.864376,0.45612,0.607787,0.293903,0.0518425,0.0245986,0.86077,0.92394,0.616338,0.53012,0.0356765,0.99045,0.414226,0.22878,0.629728,0.937349,0.753833,0.449824,0.184015,0.298363,0.380417,0.950944,0.0099507,0.679737,0.428867,0.95035,0.197618,0.495568,0.536344,0.143286,0.769054,0.821957,0.770135,0.615349,0.25507,0.426594,0.199635,0.782566,0.438039,0.260917,0.682842,0.246375,0.181155,0.934828,0.406996,0.422135,0.145886,0.456452,0.662773,0.528703,0.100662,0.398311,0.374184,0.265272,0.855424,0.796903,0.652711,0.166015,0.513288,0.207043,0.295146,0.317347,0.723909,0.356125,0.272689,0.717642,0.719677,0.874324,0.785061,0.977597,0.922147,0.785187,0.509157,0.12564,0.837285,0.452364,0.117864,0.992961,0.0638532,0.430578,0.495091,0.651322,0.855397,0.477072,0.944164,0.180016,0.711471,0.0415839,0.875283,0.887705,0.699083,0.0333306,0.195041,0.570118,0.922507,0.218458,0.974003,0.716645,0.19368,0.886803,0.430313,0.589817,0.646738,0.760563,0.963381,0.203561,0.92259,0.425834,0.053319,0.685971,0.419901,0.914599,0.325795,0.451044,0.58048,0.133831,0.853437,0.105202,0.899408,0.277799,0.744224,0.576676,0.407141,0.642308,0.236462,0.874722,0.345319,0.290181,0.45872,0.571676,0.574604,0.291148,0.893693,0.600995,0.51968,0.700577,0.0762441,0.972957,0.081598,0.420285,0.24106,0.302866,0.479001,0.812866,0.27683,0.396777,0.660347,0.529516,0.570406,0.169221,0.958643,0.592542,0.947141,0.0548397,0.262546,0.0570917,0.996638,0.296587,0.420633,0.748478,0.52326,0.191174,0.101326,0.654802,0.175937,0.595337,0.528406,0.174572,0.243349,0.67246,0.765307,0.575516,0.760897,0.294424,0.722155,0.879674,0.542024,0.3157,0.964294,0.165529,0.0971804,0.855105,0.586568,0.919773,0.894573,0.0857947,0.870994,0.790367,0.527353,0.0593549,0.846302,0.765135,0.0113176,0.928771,0.0483984,0.0573956,0.84454,0.906933,0.364657,0.32853,0.490388,0.0706939,0.896495,0.583654,0.889268,0.92892,0.639602,0.0513824,0.946451,0.485885,0.259142,0.660387,0.443562,0.685619,0.79312,0.970182,0.971861,0.28003,0.810504,0.795979,0.198,0.496381,0.568599,0.826902,0.677738,0.279095,0.274096,0.0829599,0.854819,0.0325744,0.299043,0.56539,0.29171,0.546978,0.625658,0.121704,0.795868,0.532364,0.313052,0.10977,0.647716,0.6835,0.549149,0.334247,0.23157,0.931101,0.971106,0.763268,0.981235,0.636972,0.488964,0.114421,0.663264,0.449827,0.666331,0.860541,0.94531,0.0659407,0.590911,0.438789,0.385647,0.818358,0.0321988,0.55088,0.149992,0.816877,0.235067,0.453553,0.115382,0.299175,0.673088,0.907494,0.915287,0.858226,0.380539,0.0515101,0.134739,0.717932,0.720683,0.683396,0.347104,0.590182,0.435264,0.0783222,0.877308,0.58703,0.769407,0.346796,0.830907,0.948383,0.0874135,0.572355,0.0614458,0.624772,0.924558,0.619652,0.165754,0.843539,0.0774764,0.363709,0.928502,0.452091,0.811711,0.624013,0.301582,0.33589,0.480659,0.116624,0.621504,0.366878,0.729179,0.590221,0.447665,0.709577,0.527157,0.67783,0.34335,0.377149,0.0554267,0.547376,0.154004,0.322784,0.578424,0.819265,0.886897,0.293989,0.147236,0.144084,0.671967,0.779614,0.190295,0.987906,0.947301,0.518297,0.0456546,0.817564,0.545235,0.273862,0.838191,0.584215,0.677361,0.948014,0.141721,0.846511,0.731114,0.129796,0.129794,0.120479,0.967202,0.246138,0.227785,0.385923,0.139654,0.339211,0.407176,0.00604802,0.753182,0.653781,0.0570869,0.0672339,0.346896,0.841188,0.449082,0.592256,0.447822,0.24632,0.313231,0.206167,0.82313,0.510052,0.682184,0.368749,0.391035,0.111595,0.832467,0.928245,0.249146,0.841182,0.261646,0.132202,0.247562,0.667008,0.817814,0.869755,0.265768,0.915838,0.771625,0.00109708,0.0442331,0.530536,0.518122,0.147132,0.21739,0.699163,0.28827,0.553849,0.527698,0.992432,0.425914,0.126255,0.752573,0.463962,0.561784,0.130663,0.376482,0.196145,0.711274,0.309708,0.715051,0.70053,0.537834,0.824259,0.535993,0.388391,0.354763,0.610967,0.463206,0.886634,0.534959,0.0882049,0.358549,0.650522,0.471659,0.193117,0.141399,0.473938,0.34273,0.907725,0.874988,0.798648,0.735475,0.191445,0.643076,0.806328,0.264539,0.375895,0.260386,0.546406,0.579317,0.342218,0.259927,0.978451,0.880094,0.730935,0.750375,0.6285,0.137862,0.516802,0.103436,0.393194,0.933525,0.718718,0.130669,0.859784,0.781637,0.516256,0.701219,0.34792,0.482469,0.686156,0.286126,0.208343,0.42181,0.889216,0.343071,0.856293,0.587269,0.0632367,0.199556,0.315519,0.249776,0.660814,0.379401,0.195865,0.189339,0.976173,0.834275,0.17121,0.518031,0.750974,0.221492,0.718393,0.164381,0.700252,0.893862,0.504975,0.972185,0.244888,0.295798,0.865763,0.710308,0.590872,0.370127,0.203177,0.0827143,0.0645878,0.17738,0.370926,0.844927,0.332937,0.401913,0.753599,0.09314,0.335021,0.590047,0.176903,0.0288578,0.0111008,0.882486,0.962496,0.0768222,0.598692,0.153542,0.826297,0.349632,0.36024,0.851099,0.927054,0.676363,0.585417,0.497854,0.19853,0.514406,0.593939,0.22381,0.752646,0.339012,0.665854,0.28596,0.849445,0.824463,0.19861,0.994217,0.188466,0.501137,0.681851,0.62975,0.13211,0.721267,0.979473,0.977299,0.1627,0.949908,0.243943,0.101629,0.95997,0.922774,0.638734,0.652638,0.343593,0.893792,0.0489352,0.344866,0.190756,0.474946,0.151554,0.419843,0.906723,0.691748,0.127275,0.759923,0.453067,0.408078,0.213769,0.865526,0.93845,0.276358,0.804516,0.400825,0.802957,0.249234,0.670042,0.442622,0.903837,0.806128,0.813564,0.52885,0.0594109,0.838552,0.144878,0.515463,0.78469,0.325437,0.48137,0.838139,0.307861,0.734519,0.00927883,0.729882,0.680157,0.203286,0.689741,0.69785,0.510493,0.0324762,0.074936,0.324345,0.0597606,0.102,0.455756,0.470604,0.407202,0.0277272,0.0215892,0.0897083,0.737098,0.809976,0.551847,0.890378,0.199905,0.511062,0.872447,0.855888,0.572185,0.0397304,0.282235,0.5941,0.362907,0.107643,|0.61097,0.512353,0.648816,0.428476,0.168393,0.523032,0.425228,0.322496,0.531203,0.877445,0.173704,0.842537,0.222348,0.725587,0.747662,0.164623,0.562772,0.625587,0.0905471,0.999675,0.695783,0.18892,0.375851,0.0201468,0.991046,0.119356,0.951603,0.812188,0.497384,0.0194132,0.937869,0.228254,0.64407,0.470165,0.763435,0.484597,0.629478,0.925469,0.481814,0.254747,0.207524,0.0276736,0.743,0.789122,0.646637,0.895059,0.967551,0.283258,0.0842198,0.492462,0.13345,0.229495,0.655359,0.302496,0.545273,0.713006,0.402292,0.791241,0.523444,0.816535,0.11553,0.643644,0.590225,0.0349383,0.402662,0.688918,0.592158,0.307485,0.94951,0.788181,0.0113987,0.0646167,0.30757,0.0150531,0.280015,0.846889,0.201408,0.88217,0.818944,0.960399,0.966874,0.34284,0.117939,0.488618,0.728368,0.408898,0.569303,0.143823,0.368564,0.838712,0.051691,0.180107,0.0259562,0.391876,0.845707,0.821942,0.131291,0.702923,0.373549,0.994098,0.697729,0.615527,0.113784,0.968827,0.365849,0.973826,0.255863,0.419023,0.00138158,0.0609665,0.849662,0.640509,0.539362,0.651893,0.971906,0.311157,0.436477,0.0787704,0.402643,0.993833,0.362404,0.923545,0.380941,0.107657,0.526417,0.525433,0.184364,0.625434,0.477074,0.223223,0.199132,0.388455,0.474487,0.910049,0.187211,0.239014,0.522425,0.249292,0.0187571,0.96176,0.777762,0.0681092,0.915895,0.588112,0.121177,0.448636,0.287279,0.244021,0.914636,0.182163,0.118796,0.96296,0.718635,0.0913051,0.267906,0.312658,0.756764,0.96763,0.155565,0.601204,0.120203,0.121745,0.819823,0.590969,0.888702,0.0811755,0.528382,0.0366827,0.931739,0.329037,0.655116,0.00145012,0.874149,0.58203,0.0793205,0.26089,0.146517,0.85004,0.511028,0.113484,0.224744,0.813665,0.102241,0.999635,0.371482,0.0473525,0.0109829,0.91934,0.169989,0.572954,0.757602,0.157171,0.233619,0.31723,0.208594,0.237733,0.216088,0.229339,0.611361,0.56002,0.829093,0.131934,0.547188,0.631039,0.958999,0.0298996,0.825023,0.139369,0.328626,0.8541,0.188888,0.740295,0.909475,0.897927,0.749577,0.302926,0.791671,0.828422,0.332076,0.0290604,0.416673,0.0136803,0.346756,0.176154,0.926925,0.991604,0.579949,0.93129,0.619218,0.480612,0.562583,0.568454,0.775831,0.704914,0.197997,0.289448,0.903511,0.0496144,0.975555,0.0895227,0.172954,0.59161,0.660572,0.875838,0.323402,0.0155252,0.912171,0.065106,0.139733,0.206235,0.634915,0.751648,0.798377,0.219431,0.903639,0.123375,0.491459,0.274774,0.74439,0.997739,0.068386,0.925361,0.645638,0.912947,0.426704,0.453109,0.850153,0.106673,0.273227,0.7683,0.435855,0.939192,0.806806,0.0504969,0.513619,0.215177,0.474246,0.921764,0.0308706,0.568245,0.507947,0.849162,0.75701,0.246069,0.297759,0.230956,0.24527,0.41411,0.836059,0.483772,0.372468,0.645718,0.819435,0.0231224,0.720586,0.144594,0.944746,0.198439,0.276805,0.706258,0.168327,0.540438,0.347432,0.0432616,0.208674,0.336998,0.37008,0.998169,0.737342,0.838049,0.139692,0.735242,0.0621071,0.0684284,0.278934,0.718411,0.116182,0.240887,0.88056,0.326321,0.249661,0.0927974,0.834897,0.297617,0.71506,0.449142,0.753338,0.767463,0.471913,0.210912,0.0924109,0.84731,0.729087,0.153412,0.379481,0.847687,0.233294,0.273005,0.76178,0.229622,0.468635,0.855292,0.651285,0.693194,0.250582,0.523382,0.108686,0.0901996,0.00481731,0.640962,0.801466,0.0424691,0.127291,0.187781,0.0298653,0.0390902,0.375708,0.60046,0.0399119,0.00649995,0.107871,0.761071,0.080274,0.341506,0.650265,0.610937,0.106107,0.462876,0.733536,0.182418,0.927051,0.17379,0.734646,0.173314,0.0547018,0.335765,0.868934,0.0128307,0.256651,0.904683,0.523602,0.483286,0.522638,0.948231,0.0817941,0.430814,0.803946,0.746875,0.34495,0.642436,0.140884,0.135669,0.310806,0.181542,0.0773213,0.0158139,0.67219,0.242954,0.38857,0.417265,0.890275,0.362221,0.192624,0.763365,0.00088805,0.545566,0.999802,0.095831,0.212372,0.872646,0.70297,0.521632,0.16038,0.11345,0.235876,0.821878,0.684958,0.853095,0.798077,0.187861,0.0168596,0.620016,0.108572,0.11544,0.0655112,0.0854677,0.179931,0.341057,0.91958,0.420334,0.193544,0.505513,0.0889632,0.211517,0.204473,0.201291,0.833364,0.427775,0.848395,0.912017,0.801012,0.992933,0.10544,0.110235,0.0590678,0.663943,0.315061,0.788958,0.822524,0.988067,0.193875,0.923396,0.598538,0.416348,0.349984,0.545024,0.811771,0.435222,0.852577,0.981767,0.955227,0.961896,0.440959,0.970796,0.553106,0.376861,0.529443,0.286716,0.958535,0.129079,0.634054,0.204279,0.728074,0.51061,0.584815,0.800258,0.856759,0.459867,0.998782,0.413593,0.576992,0.217316,0.414472,0.224994,0.349462,0.564761,0.673431,0.758215,0.562622,0.00200772,0.345774,0.700303,0.678388,0.78336,0.44882,0.328462,0.301466,0.00639057,0.449266,0.182,0.615597,0.756908,0.220823,0.749477,0.0947621,0.709295,0.524554,0.97744,0.557404,0.0621495,0.931072,0.888758,0.553551,0.419789,0.319286,0.0102417,0.83886,0.586897,0.922649,0.208538,0.905576,0.039045,0.53973,0.879222,0.206456,0.0915568,0.741882,0.264721,0.889185,0.677425,0.420833,0.335283,0.137603,0.867083,0.595502,0.291888,0.695824,0.455589,0.731345,0.260948,0.00639832,0.586083,0.401192,0.957318,0.915322,0.251197,0.993894,0.0166368,0.310098,0.569657,0.122928,0.0307699,0.548801,0.916714,0.0888529,0.674163,0.516818,0.242466,0.975508,0.789252,0.889519,0.915057,0.593013,0.433563,0.272653,0.740798,0.335722,0.786845,0.941289,0.200271,0.733895,0.217064,0.709743,0.978281,0.669926,0.878981,0.612822,0.888887,0.0306287,0.0450256,0.479427,0.38967,0.944022,0.108557,0.773667,0.438206,0.744896,0.531394,0.23177,0.305087,0.263929,0.415808,0.639122,0.570479,0.983038,0.260228,0.670379,0.454174,0.324067,0.971273,0.31173,0.54539,0.343259,0.600983,0.923078,0.609489,0.268616,0.330093,0.291604,0.240574,0.081965,0.437616,0.877898,0.0493966,0.0955232,0.914583,0.0463454,0.904893,0.188726,0.278539,0.883004,0.736999,0.994591,0.981165,0.178803,0.484887,0.716176,0.0310885,0.147031,0.41854,0.987052,0.113714,0.187375,0.902003,0.0891732,0.0416344,0.424032,0.608218,0.626128,0.362242,0.125998,0.729766,0.523991,0.0272953,0.709009,0.156959,0.884483,0.0967662,0.130057,0.85599,0.751711,0.934202,0.558435,0.833251,0.74228,0.581529,0.91468,0.302821,0.214808,0.165148,0.616409,0.679156,0.893515,0.731086,0.588512,0.424727,0.178914,0.213769,0.254343,0.594496,0.106027,0.18792,0.900909,0.132516,0.463686,0.848302,0.340527,0.163446,0.155204,0.272554,0.236266,0.0791577,0.311923,0.64023,0.447262,0.940968,0.619494,0.247731,0.515631,0.656732,0.617169,0.922962,0.384283,0.759266,0.351108,0.902898,0.0145605,0.705417,0.522137,0.742063,0.171372,0.431652,0.170235,0.932871,0.445209,0.625323,0.954735,0.369915,0.0400606,0.250042,0.341975,0.712688,0.121275,0.186397,0.88246,0.0202385,0.60885,0.567277,0.0524331,0.559547,0.806941,0.356492,0.0405911,0.165968,0.398188,0.421015,0.710496,0.610251,0.473575,0.0861093,0.668272,0.959047,0.945918,0.0381663,0.829111,0.697164,0.448991,0.455656,0.771971,0.74562,0.863152,0.308343,0.281321,0.5745,0.115927,0.403933,0.351409,0.654699,0.889223,0.666657,0.684304,0.101389,0.294976,0.0812374,0.392224,0.770071,0.414639,0.513724,0.214243,0.207193,0.890074,0.67566,0.723413,0.427858,0.18359,0.863758,0.614701,0.39357,0.452083,0.210056,0.532679,0.332886,0.586924,0.866106,0.814226,0.881319,0.00837767,0.850551,0.654004,0.431803,0.446091,0.53923,0.899159,0.205859,0.791647,0.113516,0.405831,0.263047,0.668618,0.340714,0.603255,0.850499,0.889104,0.968127,0.763541,0.966373,0.575516,0.119803,0.343192,0.189212,0.98174,0.472734,0.880301,0.0719265,0.190048,0.616697,0.6284,0.216392,0.397092,0.735547,0.333433,0.305549,0.589498,0.182249,0.784519,0.453345,0.0177507,0.330529,0.032188,0.116898,0.567753,0.905473,0.148174,0.291112,0.306786,0.69503,0.657711,0.836554,0.154849,0.252186,0.557405,0.591453,0.569531,0.0347046,0.180371,0.567083,0.175404,0.407446,0.0301515,0.0356677,0.0987441,0.709305,0.850469,0.11805,0.904105,0.119926,0.716032,0.285774,0.753879,0.995401,0.210589,0.529724,0.525872,0.437059,0.478853,0.0629483,0.426002,0.789186,0.510345,0.864278,0.0590951,0.107272,0.530301,0.537006,0.855715,0.890399,0.890631,0.695243,0.412111,0.50143,0.241127,0.234539,0.559941,0.959088,0.607301,0.498783,0.803281,0.553474,0.900042,0.928512,0.596969,0.892186,0.924449,0.129564,0.723731,0.930411,0.851343,0.977401,0.0725034,0.104051,0.356668,0.20126,0.558974,0.148658,0.297024,0.49622,0.512704,0.747971,0.767562,0.657107,0.529264,0.246677,0.912579,0.334552,0.421172,0.883302,0.868338,0.00892782,0.41869,0.430072,0.31842,0.379002,0.021405,0.952988,0.956351,0.464196,0.995596,0.699537,0.577731,0.646639,0.553241,0.246084,0.285415,0.449867,0.457247,0.774069,0.735862,0.53692,0.680422,0.206289,0.700027,0.284479,0.920572,0.636072,0.133412,0.853155,0.0738117,0.458703,0.615405,0.77974,0.224199,0.414679,0.456359,0.309577,0.852986,0.983973,0.513668,0.202547,0.744166,0.14753,0.490448,0.834138,0.872586,0.571804,0.0981311,0.103201,0.580786,0.949897,0.372394,0.334153,0.614317,0.153966,0.296391,0.0522364,0.530747,0.299267,0.818379,0.560198,0.034585,0.0975535,0.311847,0.688171,0.973224,0.447348,0.628007,0.627084,0.778394,0.693279,0.7608,0.945798,0.184776,0.30832,0.579576,0.666924,0.80732,0.291627,0.092617,0.333673,0.732749,0.201114,0.201235,0.0528539,0.538573,0.510621,0.808148,0.817462,0.303059,0.418929,0.268504,0.308887,|0.126941,0.812232,0.724204,0.608714,0.499684,0.202242,0.43315,0.763745,0.823371,0.294975,0.54532,0.667472,0.955715,0.456713,0.976908,0.574986,0.830112,0.0567995,0.112383,0.586299,0.448364,0.80523,0.496608,0.011105,0.719102,0.651894,0.793419,0.846276,0.52522,0.11141,0.809961,0.331385,0.214463,0.462559,0.783401,0.871568,0.856936,0.370513,0.89845,0.564997,0.241794,0.741697,0.854841,0.865798,0.226934,0.378371,0.479544,0.378385,0.566708,0.12303,0.939013,0.833991,0.613411,0.324845,0.249992,0.137546,0.88166,0.860073,0.702779,0.945256,0.97067,0.446485,0.922159,0.163433,0.761538,0.324464,0.345881,0.930491,0.241124,0.271445,0.846844,0.159083,0.00659841,0.672642,0.688134,0.473536,0.244576,0.695247,0.40982,0.793123,0.59729,0.787587,0.761521,0.797341,0.681977,0.206212,0.827689,0.861386,0.283105,0.616818,0.216293,0.167434,0.572409,0.156088,0.232727,0.726703,0.0192953,0.441691,0.512915,0.225723,0.4222,0.258433,0.635697,0.512556,0.516545,0.211695,0.952518,0.246,0.920812,0.860635,0.0838848,0.898051,0.166815,0.432586,0.529201,0.717764,0.401925,0.636312,0.123425,0.939577,0.057338,0.768212,0.673586,0.198752,0.553793,0.338346,0.854598,0.820759,0.115583,0.215162,0.0179471,0.884714,0.522379,0.198438,0.496082,0.204558,0.684615,0.632807,0.882241,0.645341,0.791243,0.89963,0.301831,0.132504,0.784728,0.616371,0.0031805,0.800275,0.0441523,0.0834252,0.263278,0.793596,0.724042,0.663123,0.825388,0.323359,0.0186938,0.88123,0.0886651,0.918629,0.0478726,0.704965,0.913834,0.916664,0.805303,0.21742,0.696782,0.198291,0.591195,0.590644,0.941486,0.571272,0.743616,0.776188,0.787466,0.739491,0.15601,0.355179,0.429115,0.189392,0.701838,0.400134,0.322221,0.388446,0.306064,0.346925,0.697012,0.275653,0.0342942,0.859445,0.295438,0.949915,0.969838,0.308861,0.916619,0.219381,0.493759,0.721948,0.879497,0.260082,0.63509,0.540912,0.0325038,0.072873,0.3002,0.263758,0.583835,0.588597,0.0953951,0.761544,0.995678,0.347278,0.431898,0.9211,0.463963,0.110685,0.852097,0.813955,0.0463406,0.597095,0.517265,0.201806,0.802035,0.770714,0.623912,0.634984,0.491123,0.516691,0.142384,0.0290735,0.0376341,0.87411,0.725923,0.301816,0.179534,0.699239,0.158232,0.759218,0.784626,0.464598,0.960879,0.611324,0.523354,0.283771,0.835416,0.956051,0.128728,0.574572,0.787984,0.875497,0.431442,0.7648,0.834094,0.544239,0.727706,0.284541,0.720367,0.26655,0.751582,0.663947,0.926315,0.49188,0.213846,0.113769,0.276305,0.327549,0.529426,0.348676,0.292579,0.730383,0.385994,0.0674723,0.845341,0.589446,0.267999,0.308723,0.834229,0.480458,0.556803,0.724762,0.787019,0.321614,0.0951044,0.242568,0.337997,0.0220955,0.470472,0.614713,0.0382902,0.822368,0.360017,0.939721,0.803829,0.883024,0.6077,0.663516,0.623845,0.0730647,0.582659,0.364133,0.827196,0.0594351,0.379147,0.650161,0.249367,0.180822,0.0063383,0.77137,0.610277,0.22658,0.196243,0.134683,0.963131,0.0367889,0.17369,0.585218,0.00864106,0.496911,0.657805,0.692532,0.211002,0.892446,0.300452,0.110207,0.186192,0.570568,0.558921,0.0399656,0.669901,0.63533,0.101787,0.548377,0.241539,0.79837,0.310961,0.348688,0.58987,0.207054,0.065941,0.831718,0.192851,0.322297,0.570157,0.568037,0.792675,0.915482,0.892765,0.82113,0.0551541,0.190528,0.7118,0.328676,0.605252,0.0833357,0.74652,0.450494,0.0461408,0.513785,0.477617,0.406684,0.774459,0.448679,0.0681177,0.796073,0.808597,0.0517235,0.390362,0.514341,0.0102056,0.974802,0.483255,0.328655,0.263868,0.907078,0.165776,0.629752,0.779268,0.812504,0.85279,0.635647,0.668824,0.106356,0.824685,0.567874,0.566973,0.823147,0.986514,0.66586,0.39847,0.201784,0.286125,0.908312,0.58724,0.678735,0.314296,0.521347,0.365122,0.460709,0.387889,0.322844,0.832438,0.41377,0.742517,0.592442,0.540077,0.444444,0.971639,0.0124694,0.716269,0.196071,0.347087,0.199846,0.312344,0.185793,0.723554,0.378641,0.335365,0.0865915,0.505191,0.631864,0.20603,0.684145,0.919335,0.605165,0.661248,0.0434244,0.189024,0.293423,0.318178,0.100621,0.981375,0.182541,0.621798,0.20582,0.341305,0.489113,0.853141,0.121271,0.330829,0.323699,0.807144,0.422553,0.839864,0.547205,0.180321,0.275093,0.453514,0.414273,0.567289,0.238746,0.196474,0.313343,0.539018,0.0784321,0.184118,0.651487,0.456574,0.641681,0.949191,0.145612,0.257694,0.981091,0.948642,0.0367332,0.796861,0.462843,0.686208,0.32372,0.163446,0.667038,0.400549,0.056792,0.894269,0.00139159,0.290926,0.963068,0.730994,0.884864,0.794717,0.56367,0.928002,0.692868,0.345723,0.258501,0.74127,0.141356,0.705768,0.450771,0.252487,0.0267068,0.109052,0.498889,0.0457841,0.679145,0.488642,0.3296,0.514873,0.476212,0.680675,0.166114,0.658623,0.566899,0.469621,0.566274,0.130397,0.970448,0.216502,0.305425,0.796618,0.369296,0.995333,0.395239,0.146709,0.552995,0.22994,0.63142,0.0733542,0.0760269,0.535212,0.361808,0.441032,0.641466,0.961221,0.29704,0.564193,0.0635797,0.753577,0.920221,0.593362,0.940085,0.381378,0.682726,0.282299,0.703342,0.756235,0.646485,0.138889,0.149938,0.243081,0.786519,0.124508,0.72885,0.0887422,0.325413,0.391694,0.679126,0.635372,0.911825,0.990876,0.680517,0.931805,0.894024,0.755848,0.214054,0.430174,0.0182153,0.384036,0.613563,0.812711,0.438373,0.5862,0.25748,0.360235,0.491288,0.204501,0.203703,0.14396,0.827904,0.752738,0.706187,0.981802,0.343761,0.379803,0.875477,0.708839,0.579343,0.247832,0.341164,0.651033,0.642083,0.962723,0.125019,0.601556,0.519826,0.410655,0.250646,0.230051,0.776046,0.213888,0.777038,0.744787,0.906377,0.0466567,0.661007,0.211385,0.789108,0.0803483,0.803288,0.805658,0.195965,0.815765,0.335461,0.298923,0.347281,0.174557,0.187129,0.25003,0.460023,0.243987,0.42424,0.0525107,0.17049,0.935605,0.844979,0.345792,0.114015,0.230414,0.395501,0.88034,0.0374653,0.373279,0.853656,0.87164,0.942181,0.673498,0.615574,0.418533,0.226245,0.581467,0.205401,0.680101,0.218648,0.712433,0.886744,0.249941,0.0945676,0.516829,0.167783,0.198131,0.655736,0.708188,0.648816,0.311032,0.119888,0.683297,0.581754,0.474783,0.304037,0.580535,0.722892,0.764856,0.135706,0.705625,0.0942045,0.0649664,0.437402,0.916335,0.777442,0.896689,0.665819,0.631916,0.0772386,0.305367,0.269653,0.500752,0.519941,0.565486,0.844408,0.168088,0.823104,0.732512,0.621146,0.0867434,0.526718,0.0816723,0.348868,0.681003,0.194088,0.474356,0.990834,0.077098,0.318941,0.68697,0.627573,0.00624925,0.350932,0.467344,0.0441565,0.867531,0.926358,0.54375,0.668804,0.926534,0.727231,0.656863,0.35189,0.605935,0.0180883,0.184928,0.648797,0.165518,0.261677,0.290899,0.338302,0.816215,0.322357,0.970141,0.858043,0.209141,0.309053,0.554549,0.265688,0.309261,0.763968,0.570617,0.333507,0.47254,0.684696,0.437479,0.61867,0.437158,0.550457,0.661228,0.235081,0.884526,0.591496,0.898483,0.295062,0.5226,0.533369,0.909085,0.262551,0.96124,0.403499,0.194584,0.838787,0.596221,0.200738,0.844742,0.0398324,0.913705,0.228587,0.605402,0.46581,0.166969,0.854852,0.960455,0.985594,0.569736,0.372316,0.789723,0.537439,0.791222,0.226181,0.880892,0.153351,0.033178,0.0673904,0.370149,0.0199782,0.910767,0.329281,0.061317,0.082381,0.218366,0.82055,0.733058,0.469798,0.101727,0.166236,0.414455,0.0610294,0.977486,0.469385,0.792164,0.729593,0.626005,0.21894,0.83322,0.694236,0.161426,0.961832,0.121877,0.234456,0.0296593,0.0035755,0.369776,0.90101,0.517428,0.54323,0.0720373,0.605799,0.938597,0.271191,0.144162,0.820467,0.855961,0.380295,0.219231,0.801852,0.792114,0.693413,0.57381,0.626849,0.160975,0.432145,0.750062,0.169066,0.676548,0.336299,0.851702,0.627122,0.240264,0.550675,0.220537,0.420719,0.00657523,0.482616,0.0225759,0.423705,0.700948,0.619787,0.779738,0.979965,0.100917,0.446236,0.307395,0.13112,0.151481,0.251323,0.8299,0.782194,0.269595,0.362141,0.298626,0.409856,0.224095,0.283199,0.362791,0.749111,0.739669,0.410565,0.222156,0.96842,0.171562,0.644989,0.344931,0.408412,0.211121,0.951092,0.412252,0.197698,0.675051,0.160672,0.157804,0.778278,0.172429,0.995807,0.548952,0.128343,0.388364,0.681041,0.952808,0.502532,0.390975,0.558022,0.0987577,0.128188,0.150472,0.254334,0.923703,0.436497,0.66647,0.40806,0.443676,0.967343,0.50959,0.510277,0.112465,0.561286,0.853965,0.960906,0.913454,0.890364,0.315122,0.0347711,0.528629,0.789893,0.465751,0.980462,0.429863,0.0720111,0.814495,0.309942,0.973128,0.687923,0.274155,0.72909,0.857905,0.684264,0.428962,0.110015,0.759259,0.513831,0.421882,0.766524,0.556652,0.239834,0.445443,0.608969,0.65612,0.582496,0.431094,0.740191,0.593562,0.482118,0.760223,0.587306,0.445607,0.949859,0.301714,0.850592,0.738768,0.827228,0.544595,0.721166,0.706412,0.549987,0.653141,0.690544,0.909625,0.648919,0.0570736,0.0695232,0.636737,0.0995979,0.918774,0.618194,0.861091,0.364913,0.611777,0.871453,0.835821,0.237885,0.603766,0.136789,0.594294,0.387632,0.654069,0.962293,0.634313,0.199978,0.848363,0.162743,0.770514,0.110422,0.446563,0.460165,0.771071,0.221049,0.922346,0.489654,0.281198,0.894017,0.674437,0.382267,0.990217,0.554794,0.355637,0.486626,0.859549,0.904265,0.938458,0.776876,0.549923,0.454137,0.482657,0.385342,0.0985678,0.885703,0.293078,0.0359416,0.0239096,0.342947,0.461787,0.208038,0.697598,0.438405,0.0731881,0.40477,0.461048,0.648567,0.85816,0.211637,0.652712,0.215151,0.895176,0.208735,0.351307,0.440162,|0.119918,0.772931,0.0134691,0.479381,0.091508,0.343193,0.132103,0.347306,0.905782,0.974494,0.797748,0.599945,0.804347,0.252202,0.39258,0.187608,0.600648,0.178842,0.757285,0.89608,0.701068,0.493149,0.204172,0.713001,0.631877,0.0986097,0.0827323,0.0394206,0.695194,0.967747,0.212964,0.445019,0.228677,0.0817254,0.191303,0.799842,0.0921711,0.385078,0.384378,0.689169,0.0208005,0.6575,0.142427,0.170531,0.0915731,0.0476962,0.382367,0.662812,0.365071,0.394227,0.025899,0.377768,0.127086,0.416706,0.774825,0.597892,0.349513,0.939083,0.546191,0.291417,0.560803,0.562019,0.372733,0.344032,0.756235,0.534527,0.819467,0.739065,0.106151,0.488486,0.287901,0.626913,0.621486,0.333866,0.448377,0.269668,0.1566,0.424722,0.433272,0.643868,0.634286,0.752223,0.227671,0.792429,0.293107,0.0749205,0.657742,0.571103,0.667098,0.493083,0.323621,0.587353,0.613313,0.55417,0.66081,0.553242,0.950671,0.795526,0.470316,0.818782,0.0918263,0.273782,0.764871,0.350964,0.596535,0.771105,0.651015,0.611786,0.560725,0.69628,0.714456,0.820496,0.914739,0.203415,0.963709,0.260314,0.697919,0.562991,0.966317,0.343359,0.575878,0.583051,0.497774,0.807676,0.819009,0.756084,0.708434,0.0252633,0.906067,0.731655,0.693403,0.457142,0.780364,0.278335,0.548679,0.168484,0.917096,0.671376,0.814043,0.425407,0.708473,0.995789,0.445792,0.754158,0.430358,0.0783658,0.0972057,0.866713,0.92666,0.946242,0.152498,0.0146364,0.633747,0.616441,0.361835,0.752644,0.671297,0.517791,0.74149,0.475542,0.633267,0.0813457,0.5537,0.297918,0.318105,0.772156,0.333641,0.689529,0.547033,0.440163,0.369979,0.292888,0.468486,0.935486,0.241074,0.314779,0.707601,0.797694,0.973533,0.485193,0.774728,0.771629,0.0036909,0.435786,0.0653664,0.911481,0.945896,0.739251,0.295622,0.922066,0.30237,0.780987,0.380961,0.300573,0.519413,0.457084,0.201052,0.85727,0.854314,0.754589,0.158919,0.219547,0.280509,0.356477,0.445495,0.861198,0.951571,0.942787,0.0285235,0.90704,0.426036,0.173525,0.391835,0.460771,0.406653,0.366054,0.42153,0.435413,0.955212,0.810102,0.842227,0.663996,0.745614,0.208741,0.497489,0.831881,0.829585,0.0534272,0.242002,0.101457,0.180597,0.708052,0.285584,0.538701,0.275852,0.648383,0.800247,0.631906,0.895611,0.488535,0.228125,0.109256,0.246463,0.83826,0.708219,0.419511,0.434542,0.980348,0.0931752,0.850371,0.18246,0.281313,0.67604,0.774144,0.75304,0.711666,0.862363,0.859506,0.26122,0.327153,0.187726,0.999184,0.206996,0.421354,0.857488,0.323355,0.317899,0.0915948,0.741479,0.948607,0.376095,0.957336,0.212639,0.586256,0.902752,0.107077,0.354827,0.698191,0.529869,0.294071,0.341996,0.592248,0.0504881,0.738918,0.800641,0.263717,0.496159,0.993497,0.993205,0.309144,0.458306,0.473858,0.687648,0.0668935,0.15307,0.944753,0.772506,0.937228,0.854192,0.952113,0.97348,0.870165,0.484457,0.111892,0.894023,0.736829,0.746835,0.361549,0.837034,0.810519,0.666528,0.104443,0.694078,0.685785,0.137123,0.50805,0.259896,0.49098,0.189329,0.235528,0.909754,0.353711,0.163786,0.628349,0.94601,0.755439,0.193031,0.640333,0.356381,0.563201,0.587635,0.263614,0.798546,0.841122,0.738627,0.0287816,0.711702,0.918065,0.903968,0.850171,0.344327,0.495394,0.569219,0.435023,0.0279917,0.226006,0.281293,0.740129,0.434136,0.826861,0.0855724,0.545855,0.186948,0.162385,0.680755,0.289973,0.270818,0.701844,0.399627,0.972971,0.916918,0.135431,0.601003,0.406437,0.169591,0.823112,0.971467,0.770503,0.181108,0.405581,0.106528,0.880912,0.565585,0.438787,0.718721,0.0621043,0.897532,0.809213,0.0485911,0.280339,0.738117,0.833344,0.707571,0.960102,0.466307,0.492649,0.28436,0.133483,0.571268,0.324053,0.0774464,0.901873,0.519031,0.46598,0.829442,0.57134,0.224263,0.660086,0.0294979,0.927072,0.819324,0.689446,0.324736,0.908865,0.605582,0.616959,0.677596,0.308201,0.892033,0.083146,0.795945,0.345867,0.903856,0.902734,0.698169,0.309791,0.199479,0.702753,0.81887,0.230449,0.300529,0.0441243,0.232012,0.756267,0.527688,0.906655,0.199493,0.582446,0.734226,0.304917,0.15528,0.781822,0.900126,0.726485,0.745404,0.340361,0.208205,0.210001,0.170173,0.947245,0.461355,0.933943,0.233383,0.648199,0.227985,0.552724,0.497778,0.303317,0.904211,0.155128,0.975877,0.242966,0.196346,0.533782,0.757689,0.803455,0.608772,0.87422,0.651656,0.711707,0.805778,0.801837,0.243251,0.74211,0.785348,0.433956,0.75162,0.792054,0.653089,0.868335,0.01292,0.535234,0.875013,0.912909,0.989088,0.0362751,0.805881,0.959175,0.299748,0.852124,0.604585,0.298539,0.28982,0.193853,0.84958,0.943437,0.852497,0.0302327,0.583286,0.537183,0.575899,0.253008,0.100233,0.759934,0.825913,0.840921,0.227687,0.994951,0.763672,0.671389,0.822761,0.558534,0.535312,0.111582,0.447491,0.738463,0.707235,0.500868,0.363443,0.701936,0.333122,0.457804,0.806017,0.974693,0.724245,0.587717,0.458035,0.721834,0.148458,0.0529876,0.922546,0.725963,0.0423007,0.78695,0.835308,0.0624695,0.553023,0.148581,0.514571,0.336279,0.877653,0.400648,0.653593,0.113518,0.415401,0.441057,0.829101,0.0113667,0.987186,0.971044,0.393094,0.110182,0.417885,0.715887,0.724511,0.727341,0.331841,0.82741,0.411048,0.930421,0.775131,0.546211,0.988158,0.947778,0.660083,0.657513,0.925914,0.964281,0.438237,0.357452,0.204253,0.212053,0.372447,0.209371,0.858204,0.414783,0.36827,0.00145864,0.328048,0.147446,0.0924374,0.27097,0.168994,0.434215,0.0532265,0.561274,0.148613,0.0403792,0.846714,0.171983,0.460076,0.594502,0.218723,0.77393,0.721177,0.410806,0.615104,0.702188,0.704897,0.948062,0.0522848,0.449082,0.612763,0.483992,0.190024,0.244589,0.112683,0.299043,0.166178,0.0456375,0.370412,0.593278,0.69781,0.168044,0.331944,0.0156049,0.0978629,0.132775,0.780921,0.0661696,0.226567,0.188314,0.262023,0.426956,0.164009,0.611358,0.299847,0.331004,0.715342,0.101313,0.260842,0.52585,0.650835,0.266617,0.943223,0.776969,0.654856,0.198214,0.933982,0.785036,0.279008,0.881636,0.0853775,0.205605,0.832486,0.155638,0.240544,0.738792,0.349196,0.816828,0.812602,0.782975,0.726882,0.0729824,0.830275,0.489155,0.53973,0.764135,0.888757,0.981295,0.113965,0.932936,0.77541,0.711845,0.650118,0.263778,0.998926,0.722323,0.294214,0.521753,0.721153,0.103314,0.742528,0.362788,0.597088,0.790628,0.945065,0.305051,0.190449,0.609461,0.73348,0.349766,0.368431,0.467884,0.0822671,0.351283,0.781945,0.703884,0.438233,0.749785,0.319132,0.652986,0.785798,0.784734,0.728162,0.895941,0.217338,0.5772,0.827924,0.214164,0.502746,0.153744,0.845239,0.388861,0.282494,0.753226,0.931953,0.849839,0.474138,0.828932,0.291113,0.199199,0.0880727,0.467703,0.717455,0.457315,0.907001,0.594443,0.826851,0.67986,0.215968,0.740003,0.355384,0.00567102,0.25095,0.748807,0.656914,0.622132,0.0731761,0.121434,0.81627,0.289751,0.831854,0.368329,0.428806,0.365334,0.692406,0.848351,0.116661,0.796953,0.613665,0.333879,0.0864588,0.130183,0.82411,0.466807,0.107885,0.66999,0.476556,0.746984,0.920029,0.291148,0.932399,0.448847,0.614859,0.926277,0.759821,0.852898,0.75484,0.365824,0.477001,0.127571,0.257711,0.24535,0.136988,0.260374,0.0204809,0.142746,0.906759,0.439694,0.961745,0.806442,0.880795,0.108185,0.780231,0.176401,0.896371,0.74702,0.166609,0.0376041,0.737437,0.994221,0.222457,0.46787,0.24614,0.925386,0.791306,0.22066,0.759525,0.338123,0.5163,0.479992,0.00874138,0.985054,0.0552119,0.344835,0.286376,0.072009,0.113822,0.607219,0.485494,0.395582,0.0332722,0.264875,0.0140917,0.146208,0.135797,0.00495493,0.983597,0.183553,0.0766872,0.292005,0.0983022,0.302294,0.889194,0.503837,0.616412,0.590287,0.81672,0.888662,0.689458,0.671623,0.951368,0.12846,0.805139,0.872617,0.574518,0.0620183,0.495558,0.108835,0.978117,0.0545344,0.0984316,0.236292,0.0255359,0.102447,0.32961,0.790469,0.618605,0.847102,0.870334,0.941441,0.792862,0.843331,0.151482,0.740555,0.745447,0.956188,0.936793,0.304707,0.202788,0.231206,0.276468,0.296177,0.758838,0.613813,0.0366656,0.784122,0.560336,0.994469,0.992635,0.0740584,0.820145,0.334605,0.842258,0.234352,0.451224,0.377374,0.328449,0.937723,0.844025,0.237412,0.501359,0.591377,0.189231,0.566006,0.513444,0.144361,0.959968,0.581875,0.861608,0.869588,0.773283,0.598416,0.332052,0.120426,0.417346,0.0248462,0.532658,0.329485,0.607104,0.344009,0.864791,0.741789,0.0443817,0.287052,0.762055,0.516302,0.86826,0.398081,0.913937,0.63658,0.0140554,0.794831,0.338988,0.310384,0.700402,0.929112,0.117215,0.871176,0.237617,0.734869,0.413593,0.828089,0.595037,0.108677,0.465709,0.381872,0.763454,0.891022,0.843262,0.352138,0.283994,0.308206,0.38384,0.766712,0.318995,0.891225,0.43119,0.0376424,0.14404,0.193157,0.731801,0.563355,0.360749,0.297825,0.186396,0.782433,0.12751,0.461796,0.354456,0.705387,0.592711,0.316754,0.517832,0.127165,0.0999173,0.667377,0.394204,0.455449,0.590358,0.977001,0.476923,0.964332,0.734444,0.710913,0.956937,0.371709,0.81546,0.165226,0.69806,0.757001,0.337124,0.409242,0.514102,0.137421,0.922621,0.548276,0.0105901,0.32111,0.523403,0.000518203,0.659316,0.986994,0.917291,0.369298,0.543946,0.096728,0.708297,0.323701,0.174813,0.434479,0.319594,0.060059,0.0640808,0.196405,0.505508,0.55577,0.565407,0.884559,0.572325,0.847848,0.305535,0.781614,0.47155,0.765479,0.264319,0.717559,0.493954,0.76605,0.196324,0.893774,0.0337207,0.46638,0.647013,0.883859,0.819666,0.325784,0.440358,0.733014,|0.353006,0.345445,0.488248,0.352867,0.728845,0.594987,0.100394,0.0141827,0.531175,0.28634,0.986909,0.931214,0.577393,0.235961,0.321041,0.858056,0.825418,0.899938,0.222746,0.392875,0.21652,0.834966,0.699154,0.739244,0.466882,0.748736,0.661214,0.977541,0.804937,0.0935444,0.542448,0.585247,0.543532,0.0425326,0.0397404,0.867559,0.900331,0.69008,0.512128,0.976989,0.795281,0.798126,0.720879,0.827468,0.770645,0.343352,0.528904,0.989415,0.0449332,0.841251,0.867653,0.622171,0.230284,0.980554,0.537207,0.542226,0.52323,0.682942,0.0125746,0.792168,0.411623,0.801531,0.472336,0.588856,0.669259,0.616064,0.0962708,0.275996,0.0821081,0.530235,0.274127,0.489314,0.483873,0.564994,0.141931,0.825791,0.746523,0.217368,0.965776,0.21164,0.444343,0.492697,0.650298,0.73686,0.154424,0.736228,0.716747,0.625391,0.791923,0.528809,0.84618,0.0247065,0.0278704,0.817599,0.951114,0.596572,0.168197,0.218445,0.0949904,0.943564,0.318773,0.81509,0.270711,0.286348,0.588154,0.725483,0.239881,0.563755,0.0462547,0.132889,0.580853,0.284998,0.889892,0.0558233,0.311794,0.909949,0.581702,0.973516,0.940845,0.121365,0.574583,0.385439,0.831864,0.975123,0.450103,0.802269,0.423732,0.130062,0.614489,0.945204,0.883717,0.626214,0.972075,0.105568,0.0570214,0.660504,0.953251,0.234844,0.663037,0.111237,0.470953,0.774344,0.0035342,0.694135,0.0672592,0.420237,0.844579,0.0811751,0.540787,0.316845,0.319558,0.577462,0.912226,0.778787,0.784175,0.573696,0.742537,0.116225,0.373083,0.13218,0.0719134,0.45467,0.988261,0.74239,0.53595,0.796038,0.747405,0.0757642,0.698379,0.286245,0.188499,0.857342,0.524635,0.897026,0.833659,0.41539,0.350535,0.177246,0.27544,0.383645,0.0566467,0.57777,0.542966,0.186757,0.203376,0.312248,0.0269417,0.692411,0.300637,0.593615,0.680451,0.926475,0.963997,0.499399,0.401958,0.928075,0.917151,0.056786,0.902945,0.452037,0.759036,0.339714,0.31121,0.159502,0.870351,0.475449,0.0670525,0.903707,0.698089,0.299724,0.219726,0.552355,0.303607,0.0492825,0.446597,0.650838,0.0186994,0.401434,0.094615,0.0425963,0.32132,0.428033,0.0815389,0.651722,0.875876,0.805499,0.23379,0.953942,0.645613,0.62112,0.494066,0.504374,0.448304,0.163843,0.367546,0.523857,0.253905,0.404111,0.12987,0.245487,0.321521,0.568449,0.555948,0.999588,0.717926,0.0151551,0.768457,0.211351,0.497441,0.0160002,0.429973,0.791991,0.345304,0.933622,0.530552,0.357516,0.958724,0.801461,0.551712,0.313365,0.625819,0.612876,0.944233,0.342624,0.0994585,0.952589,0.56568,0.323002,0.227448,0.795547,0.327729,0.756314,0.809016,0.896484,0.571707,0.677193,0.718497,0.486769,0.562451,0.657443,0.1478,0.490304,0.765223,0.432475,0.496716,0.568924,0.0525153,0.329175,0.185303,0.187731,0.0435636,0.196971,0.0369872,0.286839,0.464245,0.561876,0.829755,0.190504,0.479027,0.104108,0.809553,0.801775,0.0136068,0.296225,0.742481,0.492629,0.782957,0.346577,0.144163,0.975589,0.47454,0.264018,0.198246,0.222342,0.709192,0.761136,0.780058,0.725347,0.782138,0.804376,0.411669,0.292256,0.85658,0.649443,0.725913,0.402984,0.456068,0.723948,0.10031,0.498885,0.788094,0.161084,0.240345,0.0578594,0.383358,0.611078,0.427483,0.587792,0.27613,0.411151,0.250393,0.567028,0.600756,0.420142,0.138669,0.402747,0.876437,0.940189,0.672165,0.664255,0.962774,0.557712,0.137059,0.760576,0.745654,0.520541,0.153053,0.726438,0.868633,0.63044,0.318153,0.78471,0.760598,0.452135,0.478421,0.423943,0.311541,0.237821,0.770688,0.589376,0.875434,0.314898,0.472361,0.755507,0.375931,0.954294,0.498975,0.723457,0.316584,0.563304,0.42252,0.176831,0.825882,0.713906,0.597235,0.27827,0.637356,0.973142,0.215526,0.942471,0.0215034,0.893027,0.24222,0.367009,0.697696,0.599913,0.83614,0.598064,0.995595,0.972257,0.0288723,0.161184,0.879567,0.599028,0.449567,0.373714,0.668979,0.169474,0.918654,0.860745,0.777727,0.609088,0.995255,0.463388,0.146298,0.022446,0.711867,0.588434,0.299821,0.439672,0.0336811,0.749585,0.500094,0.812689,0.398666,0.682083,0.189955,0.473089,0.646769,0.942079,0.986942,0.0800859,0.266421,0.0291868,0.731953,0.172997,0.243303,0.520631,0.955602,0.55137,0.40604,0.262109,0.9871,0.559561,0.623252,0.73835,0.542499,0.818492,0.442923,0.171081,0.744399,0.914975,0.35565,0.208846,0.104684,0.785837,0.760416,0.790036,0.90096,0.42054,0.213796,0.173616,0.650495,0.373853,0.0479562,0.0315126,0.719004,0.855876,0.305595,0.621656,0.665662,0.593112,0.605863,0.760732,0.574826,0.672236,0.592103,0.800145,0.923993,0.48621,0.833943,0.321238,0.066088,0.401048,0.177762,0.0752824,0.531407,0.253353,0.547237,0.81739,0.77514,0.854771,0.787212,0.618277,0.397191,0.461764,0.801698,0.939401,0.533869,0.546028,0.570721,0.616184,0.138328,0.49326,0.788003,0.68898,0.669154,0.0457003,0.332303,0.629464,0.278926,0.0656044,0.440734,0.83375,0.267228,0.463668,0.785997,0.622613,0.596994,0.156273,0.591238,0.502329,0.936323,0.24828,0.910074,0.756613,0.369247,0.854283,0.6878,0.715693,0.475963,0.399481,0.972465,0.40453,0.843644,0.331047,0.900049,0.301718,0.0243459,0.7263,0.362258,0.356072,0.0490773,0.381107,0.700167,0.0223879,0.752533,0.557009,0.28604,0.180675,0.299182,0.556045,0.33561,0.0866697,0.439061,0.298484,0.251096,0.602371,0.393041,0.530131,0.322975,0.304674,0.385422,0.220127,0.597029,0.751284,0.172054,0.45633,0.25024,0.752604,0.68665,0.415295,0.741407,0.170868,0.985642,0.396094,0.146465,0.236772,0.979532,0.95474,0.0355155,0.507179,0.472313,0.291097,0.672779,0.466146,0.621904,0.415101,0.610492,0.489721,0.637341,0.00500757,0.102166,0.770153,0.799794,0.441003,0.177173,0.401323,0.397159,0.0831485,0.450278,0.654403,0.834451,0.450427,0.096216,0.981114,0.192771,0.795759,0.771894,0.0105207,0.332405,0.729032,0.877033,0.134572,0.632177,0.265912,0.498386,0.0440394,0.462482,0.121337,0.265659,0.245034,0.791088,0.25083,0.892975,0.986215,0.83708,0.0196277,0.518625,0.00250924,0.400744,0.00931674,0.725507,0.726391,0.0995764,0.0795202,0.250236,0.807545,0.692254,0.545125,0.81352,0.781903,0.83145,0.855489,0.0943432,0.78799,0.823436,0.594875,0.785899,0.789966,0.520065,0.0887962,0.934907,0.702655,0.78535,0.933042,0.796408,0.7605,0.794991,0.270958,0.536321,0.838807,0.966581,0.205713,0.374375,0.738321,0.217588,0.871774,0.149997,0.3393,0.352702,0.746465,0.663465,0.0164819,0.0501736,0.833473,0.29083,0.241573,0.102277,0.484245,0.571902,0.390164,0.991482,0.0265042,0.542611,0.414302,0.399837,0.690686,0.917345,0.987771,0.424437,0.435715,0.85664,0.238901,0.326465,0.985256,0.666224,0.301835,0.471885,0.563905,0.620906,0.840623,0.427163,0.0765191,0.862477,0.460835,0.67454,0.727198,0.174675,0.926793,0.958556,0.341278,0.0591382,0.549154,0.57893,0.612992,0.697052,0.930653,0.684472,0.252972,0.230555,0.77145,0.698147,0.426973,0.686834,0.524989,0.774596,0.214732,0.807247,0.274577,0.89342,0.749045,0.450492,0.324674,0.812429,0.342847,0.321855,0.864451,0.448666,0.89514,0.0166004,0.413698,0.223292,0.229782,0.727584,0.0404499,0.778927,0.817624,0.793483,0.837125,0.996551,0.0873873,0.360474,0.94842,0.458006,0.625252,0.739104,0.131065,0.50647,0.973776,0.11586,0.886962,0.856959,0.658861,0.980719,0.255834,0.92035,0.507656,0.00353473,0.863231,0.32808,0.288054,0.0393428,0.830243,0.83643,0.882537,0.441787,0.47847,0.477376,0.871718,0.28454,0.00144917,0.913719,0.0940597,0.314528,0.365085,0.63573,0.222436,0.221604,0.177217,0.533719,0.196952,0.749589,0.335438,0.138118,0.390853,0.235327,0.102718,0.978419,0.666403,0.315795,0.962893,0.347095,0.744179,0.0571682,0.3476,0.308765,0.837049,0.434303,0.667166,0.538171,0.180377,0.873913,0.408115,0.369339,0.897892,0.765737,0.772213,0.821611,0.896666,0.349012,0.473355,0.604322,0.5758,0.543017,0.955308,0.933597,0.548962,0.524574,0.594191,0.904042,0.289591,0.872785,0.666125,0.285041,0.215619,0.688087,0.227025,0.969455,0.468479,0.878268,0.323751,0.627606,0.489502,0.0544955,0.852934,0.610218,0.932965,0.973238,0.00236034,0.293811,0.287968,0.566414,0.0810778,0.799206,0.73708,0.730564,0.742783,0.72652,0.856922,0.534357,0.653536,0.47175,0.716062,0.327847,0.419673,0.611306,0.274974,0.786981,0.210273,0.243759,0.182887,0.182829,0.279858,0.31247,0.391161,0.093797,0.360171,0.899135,0.70017,0.456472,0.320973,0.370525,0.877562,0.521083,0.434318,0.969442,0.923621,0.0927733,0.649672,0.184826,0.798497,0.865087,0.811825,0.520673,0.693856,0.801464,0.258708,0.211317,0.589634,0.947806,0.0106486,0.248582,0.595436,0.544969,0.462978,0.830932,0.9936,0.232431,0.146948,0.273936,0.840895,0.50511,0.683414,0.0803297,0.956409,0.38091,0.844718,0.707598,0.983129,0.305637,0.68378,0.566919,0.649299,0.243605,0.892232,0.721428,0.478744,0.537365,0.061475,0.443938,0.358728,0.36542,0.359814,0.376127,0.749626,0.25128,0.764301,0.618057,0.656644,0.653612,0.904502,0.83448,0.761441,0.454011,0.169945,0.350903,0.249707,0.946372,0.512086,0.900174,0.134118,0.566479,0.226182,0.599161,0.938455,0.48545,0.48858,0.12101,0.332922,0.866764,0.324664,0.567193,0.322835,0.301605,0.829613,0.0678602,0.719899,0.902626,0.585993,0.662804,0.670799,0.347373,0.887558,0.64282,0.0241026,0.328795,0.0933978,0.947313,0.743235,0.19968,0.991942,0.274905,0.785468,0.614581,0.926312,0.461726,0.963426,0.186384,0.260705,0.642031,0.135632,0.170521,0.225124,0.574727,0.0163088,0.384737,0.915294,0.393652,0.39378,|0.570598,0.512611,0.61725,0.880751,0.423282,0.863271,0.982778,0.485902,0.126292,0.202552,0.618749,0.207246,0.214245,0.75752,0.760994,0.394783,0.840782,0.459588,0.358827,0.938831,0.603338,0.80867,0.0873049,0.950104,0.688345,0.71166,0.106363,0.410108,0.702553,0.461514,0.349928,0.805288,0.718425,0.354245,0.122372,0.762748,0.434557,0.493233,0.656685,0.317169,0.815287,0.746676,0.936078,0.156587,0.218344,0.40961,0.865231,0.344264,0.464072,0.265825,0.337403,0.0350837,0.124561,0.131428,0.0621558,0.997837,0.681754,0.181733,0.585796,0.85789,0.291323,0.417884,0.81429,0.0353196,0.408794,0.985183,0.88112,0.999806,0.616369,0.57353,0.877382,0.870476,0.830112,0.956149,0.925711,0.44747,0.000398934,0.928341,0.804276,0.36416,0.192667,0.128471,0.171822,0.956961,0.19222,0.266392,0.917424,0.483196,0.00742209,0.610784,0.000267029,0.676008,0.609336,0.650937,0.287927,0.569669,0.228033,0.486709,0.245233,0.455891,0.579242,0.450137,0.249866,0.995823,0.755332,0.256098,0.159218,0.473232,0.241489,0.140806,0.463323,0.753102,0.813764,0.778965,0.65378,0.00405306,0.464446,0.73197,0.0267434,0.391087,0.309598,0.409917,0.988645,0.232687,0.660904,0.865813,0.937654,0.344714,0.0820272,0.769051,0.17362,0.601206,0.33163,0.62227,0.0684993,0.101335,0.717358,0.655308,0.346139,0.0853414,0.237588,0.578676,0.951855,0.733017,0.857518,0.00471848,0.873963,0.573039,0.472044,0.110142,0.5487,0.0954168,0.0312249,0.643193,0.950016,0.736224,0.919709,0.449694,0.943011,0.748388,0.043597,0.444298,0.827288,0.423436,0.701155,0.678445,0.780288,0.533229,0.794678,0.811266,0.515368,0.940351,0.393045,0.749332,0.159318,0.647021,0.413995,0.692453,0.202527,0.910084,0.406242,0.36543,0.823652,0.891272,0.0212848,0.684772,0.76679,0.343429,0.636883,0.2112,0.406924,0.458739,0.402251,0.538089,0.638239,0.196123,0.963012,0.514936,0.0212207,0.949126,0.400194,0.243803,0.725005,0.43508,0.847632,0.574934,0.300686,0.161911,0.549483,0.281599,0.245773,0.881972,0.43135,0.202676,0.438514,0.626461,0.663119,0.503654,0.0166976,0.980728,0.528875,0.355659,0.277579,0.916641,0.959087,0.866385,0.90706,0.545682,0.894602,0.147509,0.493492,0.817427,0.164222,0.468455,0.98038,0.34779,0.916972,0.896485,0.462054,0.458694,0.422579,0.101531,0.462158,0.0886199,0.324893,0.294372,0.383633,0.513857,0.402353,0.765638,0.404152,0.917499,0.174413,0.493629,0.0847911,0.201908,0.357365,0.470076,0.29036,0.365077,0.689766,0.774804,0.410607,0.466805,0.323623,0.675935,0.762435,0.908493,0.353026,0.268023,0.289036,0.740685,0.459399,0.0243652,0.539143,0.476591,0.0446571,0.00241613,0.00991231,0.214577,0.306212,0.35898,0.979117,0.67336,0.174792,0.176332,0.825256,0.957328,0.618023,0.800616,0.599229,0.198877,0.253477,0.0347704,0.813111,0.362694,0.611524,0.759994,0.204394,0.709095,0.323085,0.496291,0.93489,0.31789,0.9567,0.136949,0.825409,0.668787,0.29066,0.676727,0.164372,0.975056,0.119181,0.652219,0.00708795,0.785481,0.0189235,0.861085,0.853231,0.915069,0.320604,0.799121,0.511451,0.904142,0.944815,0.912598,0.175074,0.626041,0.717099,0.270606,0.96131,0.544932,0.755459,0.956228,0.608855,0.294987,0.713524,0.966905,0.658476,0.622601,0.516585,0.67481,0.639126,0.170841,0.939933,0.0121393,0.887004,0.677157,0.148929,0.524304,0.707817,0.98091,0.447695,0.259528,0.536713,0.0153553,0.59396,0.192469,0.781504,0.668401,0.364654,0.746971,0.422011,0.400285,0.107411,0.432682,0.631963,0.173286,0.899739,0.922639,0.332688,0.745363,0.662156,0.343142,0.958872,0.880207,0.69402,0.425603,0.238991,0.943008,0.312298,0.284808,0.0998099,0.20044,0.177339,0.0942485,0.139375,0.219487,0.811553,0.969279,0.504913,0.172537,0.328005,0.327308,0.292787,0.417024,0.912247,0.835974,0.636199,0.0984472,0.324921,0.629513,0.217789,0.0759977,0.282065,0.636931,0.41679,0.613387,0.607571,0.567977,0.742015,0.483943,0.232759,0.701026,0.950293,0.445702,0.843812,0.553957,0.263135,0.426903,0.68509,0.72643,0.350924,0.598271,0.397037,0.197718,0.375257,0.203181,0.332301,0.397101,0.167919,0.653462,0.716705,0.880174,0.340088,0.0503168,0.193983,0.60186,0.657119,0.93768,0.496372,0.0514514,0.982259,0.0137388,0.338265,0.765542,0.112388,0.399695,0.982082,0.599075,0.0859579,0.582086,0.255104,0.678504,0.137057,0.511681,0.585758,0.993284,0.547794,0.782229,0.0152103,0.427702,0.674912,0.332893,0.216113,0.216915,0.235555,0.812324,0.454827,0.655042,0.175715,0.850023,0.289408,0.853895,0.586444,0.612855,0.278067,0.701629,0.945314,0.477201,0.379099,0.456619,0.951385,0.760158,0.388134,0.912647,0.271751,0.855618,0.824853,0.945234,0.710773,0.114052,0.24172,0.440832,0.468309,0.677929,0.836211,0.0643436,0.223579,0.382756,0.333056,0.925253,0.468345,0.570639,0.510221,0.841091,0.72268,0.476809,0.638226,0.878387,0.949591,0.515239,0.705056,0.148696,0.758051,0.266829,0.254211,0.852573,0.984325,0.859799,0.479141,0.720957,0.450772,0.129012,0.50167,0.793009,0.126303,0.359904,0.968761,0.75037,0.902756,0.597392,0.663765,0.974651,0.899775,0.252542,0.159033,0.0481504,0.0954362,0.128883,0.166628,0.14365,0.678508,0.120193,0.694091,0.515521,0.861287,0.715293,0.781048,0.556235,0.880916,0.380149,0.524696,0.683256,0.912278,0.543885,0.537031,0.934011,0.84022,0.731792,0.377101,0.484178,0.720713,0.953129,0.598715,0.241867,0.876893,0.325785,0.572413,0.825231,0.723647,0.450046,0.642474,0.862493,0.368816,0.76945,0.704928,0.0263017,0.523542,0.22325,0.404268,0.444946,0.525051,0.267609,0.646013,0.198565,0.489677,0.354789,0.24781,0.192319,0.748319,0.579659,0.169576,0.726908,0.0148777,0.343349,0.194843,0.315408,0.962406,0.590232,0.361471,0.98574,0.998678,0.343954,0.222735,0.146723,0.541902,0.278444,0.242132,0.344241,0.589409,0.079586,0.472126,0.310486,0.210672,0.335241,0.319152,0.361815,0.919886,0.828024,0.21696,0.286132,0.186376,0.83867,0.538852,0.985362,0.0978863,0.0205886,0.610439,0.977372,0.819346,0.172159,0.603441,0.992562,0.041862,0.672896,0.420353,0.209445,0.966963,0.911172,0.39507,0.679201,0.337927,0.965802,0.140522,0.95139,0.775331,0.488137,0.28289,0.2537,0.636006,0.170074,0.904964,0.18988,0.318201,0.214402,0.661596,0.479496,0.557778,0.514066,0.187032,0.223117,0.762513,0.69265,0.21957,0.834139,0.737173,0.0908243,0.393086,0.670959,0.439221,0.454078,0.384813,0.235258,0.761453,0.98436,0.587999,0.789802,0.497841,0.320537,0.358086,0.501923,0.585095,0.175198,0.303538,0.420135,0.00613976,0.432722,0.594782,0.23055,0.2963,0.567332,0.552349,0.540482,0.919398,0.82918,0.547248,0.687788,0.0975535,0.996062,0.576997,0.530714,0.474576,0.126305,0.588967,0.294817,0.993084,0.38985,0.470976,0.431929,0.534378,0.108182,0.698671,0.467255,0.647384,0.172595,0.215198,0.243262,0.0824803,0.900769,0.800654,0.161849,0.396064,0.00144488,0.3666,0.414253,0.817109,0.927401,0.507895,0.344222,0.768019,0.530032,0.206007,0.700604,0.978506,0.0946078,0.559028,0.356376,0.787308,0.0839056,0.155188,0.316438,0.54429,0.650915,0.732851,0.0376315,0.309768,0.994724,0.745409,0.279627,0.759178,0.546505,0.301354,0.550467,0.0233366,0.335919,0.777449,0.650528,0.00527942,0.254211,0.657615,0.456902,0.085741,0.54272,0.32244,0.629741,0.803117,0.361516,0.935709,0.215038,0.507413,0.290095,0.11955,0.354933,0.784635,0.220548,0.419529,0.551914,0.0734764,0.898306,0.708855,0.998176,0.125438,0.342766,0.493984,0.984485,0.350287,0.152226,0.357209,0.500475,0.798956,0.0412465,0.882165,0.0869105,0.855565,0.136545,0.516937,0.915915,0.698245,0.872968,0.924734,0.595665,0.880435,0.857118,0.418309,0.717288,0.516778,0.656995,0.986412,0.618073,0.480133,0.706498,0.249295,0.70745,0.673764,0.255112,0.8241,0.390099,0.755512,0.879349,0.366808,0.55985,0.76975,0.331858,0.300763,0.118997,0.623587,0.732041,0.545864,0.580764,0.490828,0.215561,0.615908,0.0285977,0.783386,0.117046,0.476971,0.0100511,0.482711,0.283609,0.811184,0.750587,0.644278,0.358052,0.834718,0.927015,0.669009,0.00770664,0.45517,0.765276,0.394723,0.784176,0.0558064,0.783348,0.360449,0.134781,0.773372,0.252377,0.602748,0.785738,0.355846,0.525757,0.337994,0.912908,0.474955,0.758364,0.588012,0.380688,0.655177,0.128219,0.68786,0.151767,0.0597506,0.806675,0.73324,0.116961,0.924311,0.818796,0.962293,0.109922,0.829074,0.566755,0.86506,0.0221997,0.590042,0.684895,0.371589,0.709538,0.766985,0.603552,0.771796,0.517658,0.386127,0.733851,0.489119,0.14807,0.0784203,0.735497,0.908223,0.851174,0.0633774,0.325986,0.421149,0.530273,0.352806,0.336762,0.0954455,0.693312,0.11492,0.111313,0.457207,0.831303,0.878681,0.393044,0.266359,0.555635,0.023432,0.0893874,0.782203,0.95468,0.380143,0.40149,0.362555,0.38161,0.912757,0.153226,0.923366,0.894218,0.530718,0.115924,0.237147,0.430214,0.839979,0.137461,0.99515,0.00782561,0.381549,0.513137,0.691908,0.204856,0.570436,0.528996,0.619848,0.0381467,0.625915,0.93715,0.935151,0.594183,0.451507,0.56254,0.972325,0.576402,0.951682,0.547468,0.149372,0.446341,0.864441,0.149303,0.972268,0.00403541,0.142037,0.833724,0.557837,0.350749,0.0892019,0.499443,0.169697,0.0162641,0.642124,0.551966,0.959158,0.674982,0.600413,0.961635,0.959985,0.0773211,0.347153,0.4677,0.166319,0.185734,0.587471,0.531127,0.81639,0.0730675,0.322597,0.409431,0.126747,0.956843,0.243966,0.138061,0.978597,0.883878,0.419089,0.755429,0.65911,0.850698,0.211007,0.629785,0.255942,0.0789856,|0.781272,0.612079,0.747083,0.227579,0.746205,0.731204,0.436613,0.404392,0.786572,0.154381,0.130769,0.433641,0.769359,0.730508,0.133777,0.0597783,0.746285,0.733118,0.399693,0.502564,0.0364907,0.126635,0.628112,0.716073,0.160578,0.55097,0.917209,0.282159,0.469531,0.841192,0.222908,0.753383,0.941995,0.960415,0.26524,0.0430093,0.6765,0.547135,0.623983,0.6741,0.83053,0.421003,0.0996226,0.565527,0.627635,0.745984,0.128862,0.282476,0.621202,0.822657,0.275433,0.627853,0.999061,0.671486,0.68152,0.615427,0.96968,0.898512,0.348144,0.0388756,0.347447,0.28979,0.0214979,0.087198,0.805029,0.0678284,0.614732,0.303072,0.064487,0.343438,0.74524,0.624199,0.508896,0.362495,0.209557,0.815551,0.408615,0.376047,0.053495,0.417431,0.659598,0.976211,0.919583,0.157538,0.0643018,0.485095,0.196654,0.436628,0.70072,0.46911,0.133058,0.657932,0.451839,0.793163,0.110117,0.186711,0.718569,0.212214,0.696559,0.977221,0.519335,0.176983,0.463008,0.826784,0.183457,0.768841,0.938251,0.582849,0.488288,0.187074,0.81582,0.281508,0.126526,0.410404,0.0519063,0.724271,0.542136,0.393562,0.175234,0.879221,0.811902,0.623727,0.81719,0.0798298,0.498193,0.664255,0.333224,0.349566,0.85839,0.384584,0.541028,0.490722,0.241582,0.420454,0.845957,0.0790963,0.656578,0.118439,0.540197,0.908799,0.209306,0.0514444,0.0570523,0.948807,0.639553,0.778885,0.773493,0.515466,0.428506,0.985828,0.278626,0.279087,0.702772,0.886741,0.513165,0.570721,0.712519,0.408238,0.560113,0.142738,0.226663,0.848111,0.434945,0.271623,0.474714,0.381777,0.776062,0.84911,0.00428057,0.0534037,0.516952,0.127248,0.535041,0.915724,0.99896,0.0905874,0.901836,0.726578,0.978969,0.577229,0.947901,0.527397,0.973134,0.65295,0.665964,0.592743,0.928505,0.292624,0.170002,0.31562,0.978269,0.503456,0.622879,0.0150167,0.0784945,0.0211392,0.397832,0.192585,0.496989,0.704327,0.728732,0.829363,0.768269,0.244885,0.94952,0.578473,0.693048,0.766789,0.508774,0.770052,0.639974,0.997729,0.359375,0.90588,0.18514,0.183226,0.969752,0.17863,0.644411,0.339363,0.360598,0.361205,0.931074,0.241211,0.353585,0.888552,0.21837,0.581231,0.340838,0.882261,0.00423962,0.222197,0.241763,0.150942,0.156828,0.997884,0.592679,0.709668,0.494843,0.521882,0.657121,0.421126,0.899601,0.137207,0.45361,0.390572,0.4412,0.65299,0.0596209,0.221107,0.112719,0.605094,0.138789,0.039793,0.126444,0.883624,0.691368,0.0840683,0.0294299,0.40308,0.812836,0.627128,0.484727,0.667539,0.158575,0.00153267,0.806917,0.361805,0.194409,0.456749,0.408238,0.182794,0.15023,0.182736,0.904764,0.358539,0.136948,0.932838,0.831081,0.402702,0.273294,0.157082,0.243899,0.0293119,0.417163,0.892016,0.462078,0.368662,0.163661,0.164411,0.0467947,0.378555,0.541973,0.156596,0.282626,0.00263578,0.307241,0.571563,0.510197,0.597017,0.403305,0.433217,0.52288,0.443509,0.225528,0.865496,0.811966,0.594046,0.599073,0.348264,0.583613,0.462953,0.0694953,0.515113,0.161951,0.211743,0.342232,0.962818,0.775923,0.435383,0.675901,0.712998,0.946522,0.746086,0.451045,0.27275,0.0489724,0.664767,0.391472,0.221231,0.424265,0.352089,0.336235,0.174525,0.935605,0.727805,0.901695,0.212497,0.448066,0.596233,0.427421,0.406526,0.931965,0.929745,0.400597,0.201181,0.886006,0.676026,0.271852,0.732024,0.988173,0.203809,0.218427,0.380843,0.190612,0.346442,0.786092,0.245788,0.392834,0.680489,0.72967,0.0930972,0.564262,0.402066,0.166853,0.143511,0.158828,0.0470871,0.883125,0.320847,0.296643,0.583631,0.56432,0.263843,0.231317,0.601726,0.838382,0.208121,0.476458,0.213038,0.152525,0.0178268,0.45552,0.229978,0.425478,0.850201,0.00618172,0.198699,0.487508,0.76292,0.288682,0.519325,0.789469,0.892069,0.228371,0.696003,0.152305,0.493536,0.872755,0.0901812,0.274512,0.539707,0.61836,0.405667,0.869579,0.0998451,0.350529,0.624716,0.596869,0.870486,0.177663,0.0219278,0.240444,0.272388,0.669163,0.174491,0.252506,0.508419,0.510031,0.685561,0.0241506,0.955413,0.388255,0.0950195,0.383567,0.620661,0.522807,0.959581,0.486246,0.910889,0.00977004,0.887245,0.785267,0.47303,0.0395718,0.791691,0.346036,0.469498,0.960477,0.76119,0.294174,0.0161397,0.581637,0.0323024,0.483273,0.217375,0.0572047,0.581598,0.920528,0.751959,0.693162,0.891774,0.882463,0.596372,0.887171,0.0404828,0.588821,0.716873,0.890129,0.599124,0.178805,0.247555,0.0896955,0.881121,0.816746,0.706893,0.624127,0.713685,0.791104,0.698419,0.176533,0.5065,0.83683,0.800924,0.587099,0.599511,0.498505,0.512511,0.451643,0.905637,0.337541,0.0292579,0.892474,0.0132205,0.696049,0.813713,0.933948,0.922445,0.415973,0.101772,0.814793,0.490983,0.0355995,0.612501,0.837756,0.137578,0.204093,0.507956,0.547858,0.570127,0.709075,0.50257,0.475467,0.88582,0.306586,0.521917,0.268976,0.792526,0.648819,0.589971,0.471566,0.899218,0.330097,0.918945,0.517492,0.630821,0.838386,0.389949,0.221857,0.843887,0.803759,0.286938,0.351737,0.603185,0.509735,0.65009,0.255809,0.467702,0.529901,0.0685043,0.110805,0.289098,0.814299,0.434862,0.709475,0.206369,0.136924,0.205942,0.373908,0.19441,0.425291,0.183188,0.40149,0.398149,0.516962,0.408512,0.236081,0.369123,0.149847,0.873813,0.550525,0.250295,0.501133,0.0550562,0.650694,0.294503,0.619378,0.627015,0.280767,0.797603,0.568748,0.624757,0.276799,0.614542,0.712868,0.0437022,0.859442,0.890402,0.257721,0.235039,0.756379,0.426345,0.151195,0.798337,0.0248308,0.0435039,0.00622696,0.140685,0.0236494,0.258126,0.110996,0.631013,0.309253,0.444138,0.942593,0.710096,0.898673,0.747658,0.181878,0.23573,0.432323,0.207831,0.0845351,0.123262,0.132421,0.0200641,0.784046,0.65147,0.864443,0.373523,0.975793,0.509366,0.463491,0.134298,0.276715,0.749329,0.699732,0.576305,0.123946,0.00341946,0.959877,0.526998,0.858421,0.183047,0.486533,0.284996,0.469793,0.961416,0.462499,0.413979,0.0145679,0.921389,0.0297509,0.628373,0.0781112,0.657264,0.491773,0.355741,0.123106,0.785027,0.416104,0.440176,0.345395,0.828907,0.847722,0.60411,0.563771,0.142584,0.655073,0.813325,0.937563,0.252609,0.012154,0.54329,0.723268,0.956887,0.22473,0.0220709,0.74714,0.712282,0.710975,0.598773,0.208362,0.502985,0.691357,0.269953,0.78373,0.903589,0.651614,0.220441,0.72108,0.482546,0.276989,0.242131,0.647478,0.785145,0.387307,0.386579,0.348743,0.347045,0.296906,0.967432,0.0583774,0.391003,0.207914,0.75736,0.90554,0.161231,0.160506,0.735013,0.968266,0.44292,0.269526,0.213075,0.471079,0.199487,0.32257,0.201845,0.426085,0.568973,0.558438,0.788567,0.0842397,0.868206,0.808572,0.50685,0.389584,0.689058,0.685043,0.121542,0.919655,0.73207,0.0808403,0.20852,0.803179,0.213406,0.145773,0.0405435,0.112195,0.440012,0.945398,0.00359005,0.957642,0.330566,0.884788,0.265065,0.526868,0.894453,0.515254,0.950031,0.429177,0.536592,0.00262153,0.387836,0.691592,0.604598,0.113049,0.304968,0.513847,0.641137,0.295408,0.988453,0.930888,0.0674927,0.707699,0.860892,0.0231816,0.723471,0.191174,0.790568,0.957848,0.994285,0.534811,0.218304,0.516081,0.782914,0.277944,0.898965,0.323123,0.532944,0.533807,0.537643,0.141006,0.194551,0.192535,0.492212,0.680791,0.4395,0.356637,0.231271,0.79301,0.469196,0.641276,0.93207,0.189457,0.808326,0.0395399,0.873861,0.750508,0.816054,0.790396,0.386589,0.692344,0.778241,0.0141144,0.541522,0.201101,0.114452,0.990485,0.0993291,0.198115,0.76908,0.114538,0.194263,0.184959,0.717358,0.839073,0.988331,0.237467,0.880649,0.282808,0.598631,0.153814,0.512186,0.578282,0.386701,0.770776,0.775156,0.97229,0.832009,0.188968,0.419139,0.333435,0.263126,0.741743,0.891066,0.356239,0.995063,0.702723,0.0987785,0.0656286,0.0781372,0.0267469,0.982138,0.759492,0.326473,0.843315,0.757369,0.532165,0.34211,0.615725,0.589127,0.0995849,0.0314727,0.826459,0.0929092,0.153271,0.573073,0.456594,0.375999,0.847311,0.320943,0.795023,0.345513,0.55735,0.32062,0.425951,0.917051,0.332535,0.265144,0.598315,0.28825,0.867371,0.456858,0.793681,0.751732,0.108737,0.414801,0.541312,0.667768,0.0276816,0.567664,0.261354,0.29963,0.921372,0.187832,0.318077,0.0498068,0.306244,0.463926,0.933323,0.400606,0.756283,0.690487,0.583691,0.190548,0.164119,0.586551,0.435171,0.65484,0.946205,0.291695,0.0893431,0.741222,0.240424,0.69569,0.401076,0.242732,0.189066,0.168157,0.119709,0.714897,0.231173,0.935804,0.650956,0.256195,0.522331,0.594589,0.685799,0.714989,0.626591,0.626678,0.752235,0.728677,0.523682,0.247112,0.994883,0.611479,0.656944,0.321657,0.0817258,0.247457,0.929725,0.515818,0.0348215,0.757517,0.0838424,0.871713,0.734736,0.880953,0.949556,0.560125,0.21775,0.719435,0.44046,0.834207,0.164529,0.37654,0.799962,0.122907,0.244491,0.526696,0.840657,0.161453,0.0239503,0.840983,0.85816,0.400203,0.77852,0.611402,0.14786,0.88155,0.637003,0.219684,0.0359561,0.0054276,0.676583,0.804866,0.377668,0.79642,0.696051,0.186537,0.128102,0.864742,0.0540894,0.998412,0.300212,0.257055,0.205527,0.961357,0.516377,0.725155,0.978368,0.637828,0.792696,0.23684,0.876851,0.961899,0.0033648,0.326195,0.515619,0.578886,0.198091,0.436176,0.861107,0.0778214,0.432794,0.402127,0.0394101,0.356441,0.491713,0.572315,0.410069,0.858858,0.419581,0.692172,0.811671,0.918266,0.779512,0.92011,0.15425,0.760337,0.786829,0.924909,0.983366,0.931422,0.121228,0.641872,0.84926,0.805909,0.399539,0.810572,0.752248,0.371498,0.0609143,0.414065,0.851824,0.114918,0.618922,0.2718,|0.447083,0.993851,0.543008,0.705673,0.771682,0.379003,0.11029,0.971107,0.0852205,0.605778,0.520285,0.0361168,0.513714,0.812221,0.342275,0.883797,0.331081,0.412729,0.839835,0.753922,0.761889,0.428148,0.541308,0.441212,0.742892,0.418836,0.466835,0.0435628,0.454579,0.219609,0.131425,0.803079,0.188415,0.740175,0.618601,0.422963,0.684367,0.0743846,0.409939,0.0750911,0.569188,0.531672,0.0371238,0.731639,0.241164,0.812956,0.00585938,0.77048,0.297655,0.811741,0.359904,0.158242,0.406002,0.279748,0.846551,0.70491,0.151432,0.777968,0.148902,0.867244,0.671706,0.150616,0.407341,0.207384,0.554458,0.683703,0.126058,0.198295,0.898175,0.299278,0.846422,0.402953,0.178187,0.482448,0.840127,0.678326,0.255444,0.255895,0.794587,0.977702,0.309548,0.792515,0.785943,0.0634677,0.180069,0.991307,0.49261,0.30812,0.530961,0.223624,0.0351787,0.249164,0.585715,0.727818,0.2663,0.902497,0.436439,0.972485,0.699727,0.0962563,0.785983,0.711104,0.0313239,0.220226,0.185506,0.0713468,0.568372,0.301965,0.595192,0.802907,0.685294,0.262188,0.0650973,0.341082,0.427405,0.807933,0.586392,0.0819264,0.265386,0.547196,0.630567,0.122534,0.670156,0.559248,0.0440416,0.999387,0.77592,0.406842,0.160405,0.240217,0.306039,0.968725,0.707481,0.678861,0.129241,0.215449,0.180085,0.788646,0.141128,0.781625,0.448808,0.417452,0.175667,0.376488,0.0163447,0.972069,0.456722,0.911798,0.233713,0.376556,0.558766,0.634677,0.181773,0.373404,0.0307897,0.0746664,0.527701,0.220047,0.128236,0.931442,0.545915,0.560218,0.214916,0.921144,0.179457,0.297855,0.276765,0.743372,0.558672,0.695091,0.134027,0.504326,0.041781,0.859656,0.402613,0.113513,0.113896,0.413306,0.0104848,0.601402,0.812483,0.111424,0.210496,0.0827012,0.150502,0.134152,0.879169,0.8153,0.461732,0.896468,0.453604,0.090692,0.482867,0.358457,0.854625,0.627504,0.0515983,0.39853,0.906876,0.443491,0.641497,0.7192,0.741501,0.945445,0.427538,0.161733,0.0286367,0.413088,0.779555,0.142844,0.373862,0.812169,0.93443,0.0872865,0.495721,0.860915,0.223939,0.417383,0.651968,0.107992,0.0840799,0.883064,0.423377,0.457539,0.445582,0.386351,0.75976,0.745709,0.461121,0.30818,0.20366,0.49676,0.196791,0.662237,0.307907,0.136229,0.950865,0.0417084,0.641514,0.138207,0.523696,0.857125,0.911732,0.830096,0.621381,0.377799,0.660614,0.658536,0.506993,0.366713,0.78522,0.892102,0.768132,0.824724,0.377316,0.295614,0.177745,0.293913,0.901456,0.570082,0.630587,0.758382,0.203807,0.567597,0.504051,0.197935,0.848534,0.155442,0.483539,0.0470572,0.0801983,0.133751,0.111343,0.30017,0.752995,0.76597,0.507308,0.57767,0.159901,0.505711,0.799638,0.70241,0.108747,0.509927,0.873715,0.0583243,0.458775,0.477053,0.954494,0.918497,0.360946,0.355483,0.440944,0.855162,0.215504,0.877117,0.245179,0.505406,0.284231,0.224587,0.608958,0.871706,0.83136,0.98798,0.538149,0.580918,0.471862,0.575955,0.698328,0.999212,0.667725,0.970283,0.892259,0.489511,0.299313,0.170663,0.168753,0.136986,0.987687,0.0449418,0.639019,0.409456,0.421512,0.724742,0.0225624,0.301766,0.704706,0.564061,0.555605,0.276048,0.776825,0.499087,0.621569,0.724139,0.645333,0.427575,0.899184,0.680764,0.404594,0.271934,0.945529,0.549303,0.865597,0.16211,0.517811,0.748969,0.0841746,0.790828,0.629959,0.251543,0.898459,0.493896,0.819533,0.249119,0.571383,0.761946,0.354556,0.325976,0.992486,0.984041,0.302583,0.507985,0.767042,0.0231467,0.219148,0.555411,0.99696,0.34474,0.196186,0.754648,0.803708,0.943919,0.832601,0.000877142,0.448527,0.431507,0.821032,0.755834,0.68243,0.348916,0.429511,0.762711,0.219705,0.479494,0.70422,0.709504,0.0854836,0.768568,0.193975,0.324181,0.892596,0.237355,0.993781,0.360569,0.137508,0.980709,0.521028,0.189916,0.59289,0.659285,0.364919,0.0184719,0.755908,0.292167,0.57583,0.146872,0.0146875,0.692455,0.351558,0.283993,0.632835,0.640872,0.156184,0.661879,0.189298,0.554918,0.725,0.934688,0.469767,0.239919,0.876998,0.420765,0.805568,0.257527,0.657139,0.660883,0.470646,0.638863,0.658005,0.39465,0.738862,0.682151,0.255138,0.381935,0.767536,0.625165,0.984082,0.118618,0.489182,0.528024,0.535328,0.816834,0.184391,0.436469,0.396169,0.90721,0.118663,0.274142,0.452635,0.78841,0.96912,0.745029,0.663354,0.800799,0.45101,0.0549636,0.00408709,0.945401,0.332806,0.0944511,0.512704,0.0377182,0.919169,0.144345,0.0926269,0.669005,0.591803,0.90326,0.617902,0.798892,0.161093,0.197287,0.478083,0.708882,0.538822,0.350284,0.0487787,0.585845,0.35411,0.0380443,0.385678,0.895644,0.906362,0.289768,0.0324596,0.0765188,0.383042,0.336189,0.240837,0.0113822,0.0701242,0.769287,0.0883831,0.423455,0.425805,0.0648434,0.575103,0.154827,0.992528,0.121381,0.622919,0.525266,0.899391,0.139024,0.882676,0.632976,0.763744,0.759886,0.671954,0.042292,0.454543,0.325049,0.711551,0.34518,0.532156,0.209953,0.853915,0.901497,0.477547,0.786932,0.949756,0.827657,0.0627223,0.625679,0.627508,0.8902,0.269028,0.45926,0.942631,0.11295,0.294049,0.209703,0.348088,0.744315,0.236067,0.331333,0.0658883,0.284651,0.0765705,0.499738,0.730936,0.354029,0.34943,0.00335604,0.795834,0.63561,0.491737,0.67913,0.136719,0.24289,0.322326,0.00947094,0.0411884,0.400395,0.614752,0.213243,0.97911,0.86783,0.901566,0.673399,0.238001,0.243933,0.248081,0.384314,0.13748,0.746324,0.102596,0.790502,0.431024,0.42351,0.722273,0.649841,0.622054,0.457878,0.32945,0.105284,0.965001,0.979748,0.80616,0.179593,0.147478,0.380086,0.269572,0.239018,0.447532,0.616677,0.664856,0.888174,0.114746,0.586387,0.691865,0.612258,0.245375,0.204509,0.718168,0.334002,0.722913,0.804816,0.488045,0.364471,0.372449,0.691395,0.876435,0.873262,0.149669,0.99852,0.787713,0.357421,0.937711,0.293807,0.468378,0.42101,0.54756,0.157523,0.602985,0.363436,0.43001,0.455384,0.235389,0.335785,0.00123286,0.466036,0.381465,0.0543721,0.521211,0.566047,0.0562413,0.236532,0.796639,0.796788,0.532023,0.902678,0.863136,0.657671,0.711616,0.189437,0.238902,0.046142,0.897968,0.425661,0.133359,0.871262,0.527396,0.444854,0.0832525,0.559575,0.221332,0.665275,0.60838,0.358179,0.872051,0.367443,0.948402,0.0218799,0.437836,0.756904,0.706681,0.723956,0.531356,0.614691,0.139142,0.870469,0.554846,0.170983,0.533001,0.976717,0.0102072,0.583249,0.63069,0.562351,0.844489,0.47188,0.42651,0.836029,0.0974084,0.227337,0.255247,0.812241,0.22621,0.331557,0.0560697,0.0972141,0.562767,0.283631,0.950173,0.515045,0.361819,0.493085,0.439483,0.523405,0.978704,0.0214056,0.163958,0.0487644,0.662125,0.730378,0.70703,0.33375,0.900529,0.844187,0.293882,0.885109,0.647953,0.508511,0.325677,0.328487,0.989254,0.446737,0.938323,0.713476,0.840762,0.880942,0.809996,0.0658673,0.950892,0.0921066,0.325422,0.425786,0.223677,0.593567,0.909548,0.0816159,0.77941,0.52099,0.242142,0.839926,0.346965,0.685614,0.586576,0.742672,0.634837,0.311402,0.725339,0.785695,0.990306,0.080411,0.14636,0.879572,0.408736,0.306205,0.268586,0.360273,0.930975,0.193659,0.739565,0.0477545,0.552723,0.0207105,0.845725,0.275332,0.586099,0.153667,0.516525,0.307908,0.527752,0.072206,0.319954,0.0534055,0.870301,0.5346,0.710138,0.42449,0.333126,0.438173,0.806885,0.640945,0.0360729,0.763166,0.722476,0.424045,0.148631,0.908796,0.174386,0.237173,0.707241,0.378811,0.384719,0.337238,0.437292,0.629507,0.386299,0.924848,0.46911,0.244444,0.87824,0.191786,0.475135,0.902163,0.566917,0.105991,0.69566,0.733504,0.483077,0.300992,0.441128,0.168475,0.0698315,0.886286,0.577922,0.0165137,0.024654,0.479794,0.124858,0.716796,0.48715,0.762851,0.235714,0.354366,0.264933,0.441636,0.193676,0.270466,0.360099,0.91792,0.303814,0.501691,0.774026,0.11335,0.65334,0.99576,0.0621371,0.168601,0.259712,0.598934,0.177461,0.781224,0.428245,0.232816,0.683862,0.86919,0.0793777,0.811533,0.576937,0.775595,3.93391e-06,0.738944,0.767942,0.197329,0.753714,0.388113,0.127875,0.208449,0.376446,0.594688,0.380476,0.758966,0.101703,0.0959336,0.382862,0.543414,0.191136,0.688281,0.855456,0.119522,0.906265,0.443628,0.807451,0.397598,0.408346,0.926928,0.044946,0.568825,0.670702,0.835816,0.187714,0.399815,0.278676,0.205063,0.136113,0.483549,0.989031,0.952746,0.218298,0.275525,0.748904,0.513304,0.197308,0.657749,0.215897,0.861932,0.220621,0.397327,0.38429,0.804754,0.917164,0.173361,0.0682194,0.712932,0.62955,0.067286,0.116071,0.504873,0.165927,0.556162,0.0690135,0.175624,0.619431,0.738816,0.889484,0.371262,0.600243,0.200306,0.371124,0.728185,0.810022,0.997862,0.226079,0.447189,0.166096,0.451014,0.734373,0.451135,0.394206,0.881478,0.241047,0.489026,0.562683,0.906393,0.0874264,0.587687,0.595832,0.549506,0.746968,0.0688115,0.612852,0.0339482,0.294794,0.708293,0.614244,0.590738,0.502622,0.0415123,0.379053,0.415736,0.82675,0.21723,0.72719,0.385443,0.478537,0.361017,0.355665,0.0160927,0.575451,0.315316,0.0288324,0.245082,0.915239,0.582012,0.44033,0.0945224,0.624115,0.179645,0.597259,0.963734,0.576515,0.546386,0.489304,0.839016,0.519255,0.174595,0.113471,0.172756,0.559061,0.0659992,0.253514,0.445955,0.774023,0.639176,0.955938,0.954881,0.28691,0.177065,0.872634,0.262224,0.616313,0.0555777,0.957902,0.805151,0.00294876,0.476779,0.261858,0.771117,0.820593,0.565776,0.58363,0.195562,0.476259,0.598945,0.87672,0.658565,0.203257,0.563835,0.937458,0.0507488,0.696551,0.55069,0.453818,0.0611107,0.669122,0.541557,|0.298692,0.776719,0.243142,0.891281,0.400186,0.524738,0.798371,0.517465,0.56943,0.679773,0.426942,0.907537,0.773715,0.731048,0.728338,0.348132,0.395826,0.253302,0.655458,0.440485,0.0254034,0.151939,0.67163,0.493589,0.26284,0.428517,0.409902,0.813217,0.528452,0.305254,0.46889,0.0162749,0.517914,0.443716,0.774608,0.442533,0.87521,0.749691,0.470703,0.423029,0.368119,0.758494,0.0740682,0.369009,0.583289,0.540508,0.897368,0.0720326,0.402976,0.358323,0.471776,0.365414,0.308664,0.316757,0.599066,0.294177,0.62661,0.0254702,0.415444,0.0559047,0.648344,0.0481699,0.977713,0.0356015,0.353517,0.813667,0.336486,0.513371,0.271835,0.180154,0.819227,0.84285,0.28567,0.84754,0.2121,0.223816,0.714088,0.741876,0.277569,0.697035,0.539928,0.195996,0.115513,0.937367,0.580253,0.524208,0.650556,0.921597,0.540042,0.254229,0.256016,0.480044,0.135114,0.757757,0.960672,0.774262,0.37104,0.190306,0.560028,0.84844,0.620984,0.813565,0.410115,0.787686,0.325823,0.776285,0.611882,0.0844894,0.276566,0.598375,0.674509,0.375746,0.677511,0.170366,0.0724891,0.409302,0.587874,0.140076,0.714535,0.512924,0.631925,0.592862,0.0759093,0.927804,0.259144,0.796553,0.400373,0.12389,0.668227,0.0790477,0.0757569,0.353037,0.966723,0.531692,0.652183,0.908724,0.923259,0.826707,0.165938,0.572558,0.530762,0.853067,0.475559,0.968827,0.628377,0.268915,0.718599,0.512002,0.0995194,0.779331,0.249834,0.141531,0.490309,0.510622,0.583137,0.196446,0.0200516,0.751853,0.515015,0.550807,0.722376,0.991396,0.174894,0.305371,0.646188,0.571819,0.474088,0.635818,0.217206,0.644198,0.551627,0.457618,0.743171,0.105921,0.128425,0.860417,0.0469578,0.234631,0.914931,0.108314,0.446512,0.952756,0.232102,0.217897,0.709202,0.46422,0.668271,0.133781,0.0655335,0.586479,0.95746,0.886719,0.446146,0.79076,0.501805,0.127483,0.637338,0.432636,0.752598,0.225191,0.299191,0.380013,0.425172,0.0833474,0.0645212,0.00522065,0.557755,0.864075,0.326468,0.763823,0.598918,0.0877233,0.0122439,0.812157,0.349334,0.0954142,0.393952,0.525414,0.583302,0.0508855,0.870467,0.673139,0.450139,0.362887,0.834824,0.603227,0.971865,0.133511,0.817002,0.28503,0.442884,0.180922,0.293703,0.812313,0.967103,0.424147,0.941673,0.488076,0.291682,0.494877,0.941248,0.918866,0.490655,0.803504,0.312926,0.529888,0.991449,0.788437,0.876048,0.149579,0.127933,0.298532,0.562741,0.0899687,0.905572,0.0777957,0.673181,0.165553,0.64292,0.881019,0.0224298,0.526996,0.914991,0.15732,0.587002,0.469061,0.86289,0.570387,0.55601,0.61149,0.499748,0.92587,0.291231,0.356334,0.231478,0.742855,0.35557,0.649526,0.59317,0.751458,0.600757,0.17055,0.0928265,0.454022,0.500798,0.301293,0.179001,0.954119,0.279625,0.369086,0.770118,0.00472075,0.389971,0.470316,0.528677,0.451154,0.267598,0.41969,0.292033,0.0906533,0.0466336,0.4215,0.19285,0.248694,0.801258,0.470281,0.241509,0.970813,0.699753,0.902271,0.233887,0.555742,0.0341144,0.00519162,0.766579,0.430218,0.609409,0.587505,0.479756,0.146142,0.665121,0.495127,0.811606,0.813791,0.702171,0.796764,0.949258,0.868556,0.494443,0.604402,0.366926,0.768551,0.522943,0.467753,0.187758,0.654943,0.538096,0.451457,0.217698,0.46543,0.473068,0.444761,0.626655,0.516455,0.808282,0.593057,0.0471681,0.702739,0.00261885,0.875971,0.424379,0.881217,0.565333,0.423893,0.913743,0.522338,0.408604,0.217384,0.818598,0.799242,0.521977,0.793874,0.422652,0.0100498,0.800097,0.0991365,0.662243,0.731768,0.663321,0.0768028,0.461491,0.711706,0.925047,0.458841,0.1707,0.21113,0.482625,0.04781,0.0111502,0.0162498,0.8828,0.350163,0.859002,0.738333,0.116055,0.258116,0.0119607,0.221627,0.795815,0.264689,0.793571,0.557011,0.24013,0.421575,0.858786,0.413605,0.356156,0.892263,0.292182,0.202784,0.526777,0.212849,0.716663,0.81313,0.71819,0.270139,0.411975,0.367955,0.50775,0.215451,0.577853,0.125912,0.549355,0.994089,0.410349,0.587118,0.494685,0.504316,0.100075,0.096828,0.24501,0.813638,0.60403,0.384631,0.446632,0.503517,0.580472,0.59638,0.613168,0.402643,0.484054,0.478755,0.0435102,0.59578,0.775623,0.856522,0.750319,0.786198,0.322094,0.547615,0.099048,0.12762,0.0387981,0.711554,0.75192,0.753343,0.605549,0.433528,0.238357,0.0664339,0.430317,0.557007,0.720728,0.13282,0.0680565,0.400049,0.715717,0.516746,0.819139,0.752716,0.366375,0.133029,0.422783,0.0366617,0.0411213,0.910416,0.691538,0.716904,0.242576,0.0771033,0.847268,0.643218,0.281025,0.663958,0.988924,0.988306,0.991021,0.203241,0.196752,0.139558,0.192562,0.527843,0.440065,0.632197,0.197922,0.661655,0.586762,0.653474,0.0491815,0.415025,0.535304,0.0410864,0.83177,0.0604076,0.577317,0.0155465,0.514483,0.329127,0.466406,0.778131,0.826623,0.323324,0.317113,0.872548,0.237575,0.323167,0.853849,0.111526,0.464852,0.56228,0.748832,0.09889,0.0113972,0.672282,0.345352,0.786081,0.0710803,0.306929,0.861194,0.0358315,0.88531,0.637626,0.138905,0.561811,0.394543,0.31491,0.562736,0.680255,0.342785,0.113503,0.303731,0.711076,0.726973,0.984935,0.68962,0.767541,0.0812417,0.162522,0.435741,0.321112,0.383599,0.0939751,0.0942373,0.148714,0.135157,0.468356,0.705772,0.783308,0.202055,0.104854,0.649818,0.425543,0.0857747,0.434788,0.286096,0.818529,0.177872,0.904694,0.763087,0.362081,0.159419,0.883161,0.500408,0.815726,0.34703,0.539229,0.138274,0.0567178,0.826347,0.736401,0.62702,0.47006,0.282902,0.329506,0.539192,0.742054,0.503531,0.0898938,0.504198,0.193649,0.015123,0.398177,0.0912927,0.370111,0.0996863,0.394681,0.0990191,0.864466,0.856838,0.618725,0.532651,0.927446,0.716757,0.58812,0.0456535,0.210996,0.200345,0.0856705,0.899292,0.0948532,0.474098,0.739805,0.378968,0.198444,0.321152,0.141456,0.44334,0.280439,0.35132,0.787125,0.78786,0.386409,0.718098,0.974147,0.772742,0.832666,0.22333,0.929917,0.750959,0.366084,0.974869,0.115523,0.405799,0.24019,0.543358,0.11282,0.146231,0.811022,0.630728,0.083899,0.353727,0.114587,0.395872,0.623664,0.063338,0.494753,0.626395,0.605201,0.530565,0.52934,0.321176,0.500136,0.79043,0.677305,0.50785,0.414346,0.73812,0.140887,0.354633,0.205934,0.30818,0.0507603,0.441816,0.405976,0.713927,0.249783,0.205184,0.996643,0.893894,0.0349452,0.943678,0.482325,0.362443,0.206795,0.114368,0.595693,0.124837,0.0649197,0.622451,0.22859,0.803423,0.775857,0.738345,0.374549,0.229198,0.0523756,0.52194,0.869765,0.513524,0.727747,0.992734,0.558127,0.273434,0.4327,0.840455,0.680793,0.386623,0.708051,0.21395,0.667612,0.0694923,0.61128,0.811593,0.632727,0.429918,0.95956,0.649704,0.739014,0.432873,0.309965,0.844568,0.0309379,0.577192,0.699345,0.501883,0.0845599,0.249732,0.301647,0.700695,0.160598,0.970313,0.0646425,0.00542068,0.437192,0.0862336,0.421764,0.53055,0.288081,0.476449,0.881825,0.826017,0.510045,0.751288,0.821778,0.521537,0.448831,0.873541,0.496933,0.313493,0.270534,0.261536,0.131349,0.102933,0.718889,0.590876,0.330173,0.710171,0.0493855,0.580093,0.871972,0.896726,0.081296,0.514232,0.180001,0.713139,0.744322,0.635159,0.9594,0.216684,0.17224,0.682048,0.905269,0.914485,0.452495,0.137224,0.875258,0.777679,0.422516,0.53666,0.595784,0.888308,0.325524,0.744132,0.953131,0.147693,0.0596434,0.251507,0.0667827,0.255464,0.624395,0.656746,0.581925,0.811429,0.433567,0.517763,0.239483,0.316897,0.645973,0.0232844,0.254521,0.158392,0.265059,0.371763,0.884524,0.845266,0.575276,0.992938,0.484743,0.589851,0.82533,0.187153,0.568209,0.308099,0.453418,0.590797,0.0478558,0.152556,0.937529,0.906318,0.208277,0.924866,0.168319,0.615178,0.746954,0.906355,0.50965,0.145178,0.772916,0.523924,0.917892,0.0998094,0.985399,0.915867,0.554766,0.347174,0.250875,0.889249,0.249661,0.745827,0.350464,0.273114,0.522115,0.855688,0.840964,0.822187,0.21836,0.0145974,0.229107,0.589138,0.921311,0.58566,0.0850604,0.796237,0.544262,0.407518,0.539824,0.508349,0.944439,0.525281,0.457229,0.558409,0.0200049,0.0434196,0.0308266,0.296152,0.718171,0.373302,0.576399,0.383204,0.576324,0.0645667,0.469484,0.21519,0.35165,0.253685,0.626169,0.0401241,0.425033,0.685999,0.716886,0.289751,0.831194,0.525864,0.467411,0.760304,0.477024,0.167999,0.735294,0.584751,0.933511,0.839025,0.061758,0.160202,0.471344,0.349597,0.96785,0.584084,0.354965,0.604028,0.365458,0.961103,0.217244,0.0487695,0.450226,0.436161,0.258344,0.730338,0.558286,0.580347,0.563417,0.921104,0.773514,0.721596,0.946615,0.808008,0.485135,0.326742,0.183062,0.53232,0.739733,0.212586,0.482309,0.876644,0.89874,0.364842,0.751498,0.735902,0.531129,0.82332,0.293324,0.921745,0.479442,0.496458,0.0396316,0.155546,0.369468,0.984172,0.924805,0.0927414,0.876416,0.984817,0.62042,0.0140674,0.0289965,0.63752,0.848782,0.814752,0.645922,0.708161,0.863903,0.526595,0.875494,0.750533,0.945763,0.122194,0.862947,0.700539,0.0791155,0.958333,0.137333,0.666049,0.650057,0.161303,0.537034,0.735943,0.862574,0.0122679,0.553841,0.832634,0.903731,0.224246,0.462824,0.988778,0.393484,0.236984,0.0270285,0.247214,0.704857,0.591187,0.683226,0.282958,0.64857,0.908022,0.488977,0.150344,0.59654,0.555437,0.977643,0.138304,0.628375,0.416416,0.245733,0.239395,0.24421,0.306402,0.301999,0.588212,0.891617,0.446028,0.300543,0.225087,0.387656,0.780068,0.169623,0.0646086,0.0953323,0.545829,0.972046,0.411498,0.514417,0.666242,0.705203,0.297981,0.538074,0.843156,0.0164942,0.81882,0.619018,0.298761,0.762005,|0.547333,0.911599,0.807859,0.625624,0.802881,0.666168,0.542141,0.233546,0.876925,0.00925905,0.596628,0.748767,0.726441,0.390495,0.154298,0.825445,0.344731,0.0459823,0.538033,0.135327,0.960775,0.394737,0.816242,0.986028,0.57815,0.304057,0.407719,0.0423369,0.666847,0.835216,0.875249,0.461738,0.657374,0.887449,0.14438,0.612444,0.435522,0.5372,0.78488,0.321007,0.914192,0.804306,0.32279,0.830066,0.0195722,0.100216,0.19366,0.110885,0.823871,0.387961,0.831219,0.422168,0.0817597,0.976079,0.421237,0.474624,0.491492,0.641778,0.314422,0.123805,0.677437,0.397202,0.471665,0.0327265,0.340263,0.14737,0.0118958,0.593352,0.766118,0.411504,0.716411,0.667253,0.305453,0.625942,0.820241,0.391752,0.881513,0.857694,0.927711,0.779657,0.614891,0.300169,0.227327,0.201313,0.877419,0.0779627,0.0316779,0.636206,0.905082,0.138027,0.778543,0.47933,0.724962,0.255077,0.276005,0.920064,0.333509,0.958304,0.333054,0.482994,0.789763,0.539191,0.425,0.920739,0.328895,0.1936,0.108124,0.346977,0.702324,0.804108,0.253091,0.0753378,0.33078,0.0215837,0.299457,0.583504,0.540788,0.937165,0.89593,0.0473102,0.972138,0.517787,0.253656,0.598177,0.228662,0.630831,0.378875,0.317679,0.91328,0.774995,0.573136,0.78512,0.411456,0.188604,0.420794,0.812202,0.0415802,0.0958952,0.455652,0.0608814,0.353972,0.441079,0.557842,0.275534,0.0703398,0.736234,0.0231167,0.456739,0.153963,0.239606,0.867308,0.225664,0.455717,0.976874,0.800151,0.857529,0.346305,0.786808,0.99561,0.0363084,0.951272,0.382184,0.662647,0.546457,0.442124,0.87272,0.046208,0.505712,0.92426,0.136545,0.0940439,0.414902,0.406048,0.328137,0.167211,0.544664,0.865837,0.515159,0.0619407,0.689567,0.618266,0.202638,0.0821263,0.29043,0.466967,0.948251,0.616041,0.071502,0.132009,0.445673,0.37748,0.528445,0.157864,0.97719,0.763834,0.205407,0.494985,0.357038,0.165243,0.598477,0.335046,0.497316,0.171857,0.00743556,0.740236,0.745867,0.144821,0.950266,0.831171,0.107241,0.595533,0.0880105,0.839552,0.932534,0.123332,0.599778,0.0156285,0.656013,0.507862,0.109078,0.616473,0.264903,0.0972216,0.236756,0.38739,0.523771,0.696424,0.884626,0.164647,0.114677,0.60376,0.858132,0.20748,0.645431,0.612007,0.125478,0.37679,0.687729,0.859764,0.453223,0.392531,0.156822,0.0110967,0.303498,0.478068,0.729478,0.756264,0.360667,0.641998,0.357395,0.926832,0.9962,0.913232,0.3801,0.820715,0.593573,0.0286195,0.556251,0.989699,0.124203,0.381872,0.941192,0.95076,0.190109,0.0943795,0.492392,0.821381,0.788667,0.422381,0.80134,0.9057,0.301687,0.87439,0.501569,0.407682,0.769884,0.361536,0.932503,0.0198045,0.989441,0.8601,0.624845,0.721131,0.234928,0.720616,0.354146,0.759028,0.540112,0.59654,0.688166,0.491322,0.486225,0.757043,0.58655,0.873763,0.776089,0.657133,0.862494,0.5646,0.130627,0.905453,0.645486,0.9522,0.406129,0.641482,0.588823,0.769017,0.190327,0.674654,0.549395,0.241805,0.30864,0.610687,0.746702,0.91329,0.368629,0.806883,0.888315,0.776363,0.730967,0.359565,0.599939,0.77846,0.958425,0.906461,0.219047,0.911136,0.157421,0.841814,0.367299,0.458292,0.432123,0.810706,0.347257,0.491894,0.412446,0.231436,0.904638,0.452169,0.930727,0.277617,0.196345,0.803874,0.723075,0.997005,0.832641,0.0182366,0.868953,0.758017,0.495706,0.529214,0.290424,0.558653,0.684031,0.307994,0.563541,0.988013,0.654183,0.771105,0.381804,0.158933,0.724257,0.425082,0.626826,0.303065,0.803092,0.432095,0.467986,0.715133,0.0418864,0.623553,0.942807,0.295846,0.538543,0.0447096,0.403748,0.90547,0.815214,0.523855,0.831671,0.104598,0.421154,0.771224,0.265129,0.311651,0.495644,0.933331,0.995157,0.835236,0.899142,0.0307944,0.905386,0.621943,0.357455,0.794639,0.451513,0.238611,0.345955,0.234476,0.76441,0.774909,0.747938,0.690242,0.108217,0.24462,0.796041,0.778326,0.136274,0.484243,0.360836,0.175554,0.138785,0.183202,0.131611,0.737189,0.226585,0.560783,0.712103,0.0724744,0.00895375,0.96744,0.836524,0.609458,0.375659,0.794222,0.639015,0.438303,0.316436,0.0528337,0.674349,0.858249,0.538655,0.244918,0.523943,0.438627,0.82989,0.80054,0.582506,0.223265,0.528666,0.885893,0.970044,0.740004,0.961561,0.516353,0.634843,0.831825,0.332073,0.928922,0.0438338,0.746363,0.113892,0.180521,0.458862,0.367085,0.0557616,0.87464,0.489992,0.132582,0.796485,0.768,0.122035,0.0236007,0.657355,0.876628,0.530367,0.778913,0.969521,0.687233,0.238966,0.0362157,0.699405,0.845025,0.356491,0.494208,0.569667,0.286517,0.50841,0.850307,0.717675,0.383633,0.160346,0.20639,0.0224493,0.555872,0.0978671,0.254055,0.891033,0.209934,0.755572,0.152796,0.0856779,0.612189,0.205335,0.426983,0.0415936,0.933267,0.441018,0.64274,0.316467,0.985244,0.405545,0.0049693,0.0189198,0.755932,0.682148,0.938807,0.216499,0.173273,0.864274,0.646366,0.495515,0.754476,0.353349,0.937631,0.890828,0.0329525,0.478628,0.391055,0.0133086,0.734305,0.297189,0.142057,0.137145,0.107693,0.200534,0.573148,0.209284,0.922119,0.927304,0.0322728,0.101058,0.379824,0.670206,0.705019,0.0997981,0.0712681,0.474292,0.775702,0.592966,0.257952,0.553921,0.237634,0.69255,0.597852,0.855034,0.86582,0.819371,0.0203716,0.487644,0.896489,0.200967,0.881258,0.803551,0.0142031,0.00112927,0.254625,0.146025,0.795491,0.257709,0.709968,0.759767,0.578623,0.0221878,0.755167,0.638534,0.112053,0.0901814,0.911252,0.761712,0.606124,0.0448036,0.357045,0.580193,0.557548,0.0636094,0.356289,0.114515,0.177393,0.578152,0.0516873,0.610685,0.564605,0.0782173,0.901807,0.963935,0.617416,0.860808,0.533546,0.208767,0.520786,0.472244,0.847648,0.531239,0.416664,0.384181,0.248083,0.271807,0.522857,0.902271,0.873629,0.651862,0.440561,0.167917,0.242199,0.445132,0.167181,0.0915086,0.171626,0.508179,0.957834,0.724541,0.114201,0.252433,0.278946,0.762995,0.815643,0.637377,0.939639,0.561466,0.238369,0.729674,0.758139,0.515184,0.55723,0.0916008,0.110817,0.820084,0.503715,0.683753,0.250069,0.89138,0.931461,0.982702,0.954268,0.791102,0.925074,0.152018,0.812606,0.00561917,0.544847,0.214513,0.942945,0.988332,0.852625,0.163359,0.899355,0.500677,0.961941,0.764483,0.714668,0.785334,0.320803,0.996067,0.856833,0.328077,0.111691,0.196145,0.274981,0.585956,0.118476,0.882987,0.187374,0.323215,0.627738,0.672672,0.54572,0.161135,0.622818,0.403943,0.298327,0.390086,0.815002,0.252082,0.231689,0.75586,0.288061,0.0414946,0.510451,0.74398,0.761627,0.574476,0.664581,0.383041,0.853529,0.941548,0.620148,0.81553,0.0445344,0.493239,0.68121,0.173195,0.325658,0.025246,0.794227,0.20927,0.296252,0.208458,0.57158,0.291388,0.636192,0.75428,0.757148,0.0544616,0.0269157,0.527372,0.424901,0.178797,0.52582,0.0214741,0.342436,0.773089,0.194521,0.384857,0.14529,0.521421,0.577117,0.707479,0.00590569,0.100318,0.845076,0.122493,0.692387,0.839585,0.581399,0.0641795,0.319348,0.881854,0.617751,0.632849,0.738575,0.99319,0.58747,0.0788748,0.815623,0.422977,0.0954122,0.282096,0.690428,0.178239,0.323596,0.136357,0.0491735,0.614746,0.611805,0.834158,0.405463,0.0509436,0.339697,0.985656,0.334458,0.00629687,0.816979,0.627784,0.520516,0.615864,0.151119,0.150304,0.298594,0.0996892,0.72555,0.286993,0.466546,0.193107,0.167004,0.319141,0.202859,0.508182,0.835123,0.384379,0.839403,0.903696,0.22351,0.697252,0.127162,0.271539,0.976865,0.0474777,0.220866,0.206898,0.417093,0.564526,0.182473,0.0776515,0.911647,0.279521,0.0118118,0.342492,0.112867,0.0245904,0.8975,0.957148,0.0275592,0.74332,0.693568,0.636889,0.231923,0.645668,0.65995,0.0836131,0.154727,0.877927,0.520143,0.742497,0.892491,0.416499,0.643051,0.356224,0.961975,0.346148,0.230913,0.974235,0.803007,0.182151,0.230717,0.169829,0.0956233,0.31955,0.49318,0.359937,0.0638889,0.597227,0.0617221,0.107864,0.155856,0.92745,0.471692,0.841301,0.939193,0.973932,0.392545,0.948386,0.885746,0.132276,0.133482,0.539681,0.322249,0.681406,0.412005,0.401552,0.0071069,0.929353,0.973395,0.915508,0.950628,0.137529,0.390999,0.0322182,0.561084,0.104771,0.701306,0.409324,0.543677,0.688572,0.824699,0.990642,0.886392,0.0547598,0.909127,0.657945,0.324292,0.299739,0.305163,0.935416,0.687737,0.247033,0.128285,0.611958,0.526865,0.779069,0.517293,0.467816,0.765455,0.0752219,0.366544,0.436552,0.728328,0.491741,0.610261,0.942935,0.124398,0.934839,0.966177,0.0475563,0.0918126,0.349385,0.918234,0.575719,0.105571,0.569958,0.385403,0.56618,0.756896,0.300437,0.623799,0.125307,0.48112,0.18089,0.54373,0.993313,0.220956,0.672702,0.00462395,0.728803,0.392884,0.0628365,0.635308,0.240794,0.822924,0.827517,0.122264,0.707465,0.16087,0.621447,0.575546,0.4935,0.68091,0.0663494,0.352245,0.66317,0.975351,0.123547,0.931473,0.204009,0.140687,0.486351,0.474385,0.0972624,0.239649,0.526227,0.401444,0.672895,0.0842169,0.288156,0.417491,0.0915961,0.893659,0.07813,0.570007,0.307744,0.866953,0.139419,0.0658181,0.873837,0.571051,0.809802,0.213756,0.808637,0.233783,0.468982,0.373185,0.708804,0.931313,0.387505,0.435944,0.31654,0.628458,0.944168,0.434556,0.295828,0.469136,0.824911,0.886654,0.731668,0.449666,0.716433,0.203995,0.413535,0.595656,0.445843,0.77622,0.693114,0.269811,0.359876,0.798824,0.494285,0.190277,0.535082,0.437279,0.0380216,0.313866,0.182385,0.798946,0.138096,0.221809,0.639409,0.992417,0.744715,0.269256,0.308671,0.307426,0.659648,0.841499,0.348915,0.832653,0.0527245,0.309264,0.91223,0.895506,0.666537,|0.90708,0.242725,0.422111,0.428419,0.333412,0.600212,0.63051,0.282535,0.328901,0.775726,0.145334,0.460223,0.88491,0.966375,0.0526454,0.534348,0.834687,0.456589,0.216818,0.37842,0.771385,0.718804,0.905056,0.0576985,0.625899,0.351673,0.104175,0.871164,0.867212,0.576904,0.231943,0.51267,0.347927,0.965063,0.338853,0.939051,0.581078,0.549356,0.322099,0.712037,0.0677985,0.737812,0.117953,0.0809577,0.278272,0.455241,0.650044,0.0599529,0.833056,0.643722,0.0847849,0.155079,0.969131,0.0570084,0.0848964,0.790558,0.450008,0.807536,0.231119,0.602211,0.689824,0.3304,0.621569,0.585025,0.125082,0.837878,0.217344,0.213077,0.376906,0.815771,0.953653,0.235828,0.497282,0.247431,0.654285,0.466988,0.271143,0.0427116,0.0148695,0.246769,0.1733,0.223597,0.0924568,0.890465,0.385968,0.307371,0.10704,0.390169,0.935869,0.016396,0.56272,0.97409,0.576083,0.0906684,0.10701,0.704738,0.373161,0.385636,0.255353,0.0951334,0.180693,0.291026,0.706998,0.401143,0.793673,0.273241,0.995732,0.0110683,0.639427,0.190576,0.098236,0.988695,0.0685163,0.509275,0.415258,0.982478,0.793403,0.228574,0.537525,0.163117,0.763775,0.279464,0.96578,0.62025,0.162069,0.638844,0.721052,0.98288,0.81569,0.148443,0.538742,0.472459,0.427868,0.0710669,0.0949745,0.612796,0.245675,0.0220408,0.261217,0.951991,0.11745,0.26823,0.738539,0.196701,0.49403,0.795664,0.616773,0.397597,0.358854,0.602829,0.306949,0.520367,0.606851,0.190994,0.89803,0.674427,0.776935,0.28747,0.071564,0.453878,0.877871,0.546687,0.17576,0.872721,0.226015,0.196839,0.263665,0.352461,0.559047,0.930062,0.148543,0.685188,0.234321,0.299314,0.54984,0.405733,0.469828,0.445797,0.56895,0.822868,0.918776,0.509812,0.984227,0.929388,0.603881,0.425559,0.334329,0.141322,0.505245,0.861217,0.329201,0.748423,0.34294,0.599557,0.848103,0.00553918,0.383501,0.175688,0.393008,0.671018,0.0834637,0.79976,0.238908,0.0988858,0.25309,0.00144649,0.375722,0.453863,0.58944,0.801302,0.397908,0.912446,0.250646,0.870381,0.516267,0.15821,0.251752,0.869131,0.71321,0.390327,0.545217,0.0452074,0.601388,0.079831,0.0603399,0.489233,0.318052,0.769162,0.844225,0.420124,0.190513,0.778685,0.896406,0.745705,0.314824,0.00148499,0.594247,0.0820216,0.318674,0.221722,0.195353,0.367318,0.49884,0.144274,0.59472,0.2197,0.18718,0.8142,0.813781,0.547359,0.711495,0.0415059,0.624834,0.422467,0.586419,0.0805259,0.933011,0.926523,0.909179,0.812626,0.278711,0.992634,0.327277,0.894259,0.425758,0.286743,0.0887827,0.519262,0.736449,0.557383,0.218623,0.385243,0.837916,0.45092,0.857131,0.781878,0.0534115,0.31027,0.0771243,0.936568,0.33456,0.533059,0.975921,0.986145,0.784156,0.204032,0.485841,0.274279,0.0741062,0.805203,0.073195,0.0838436,0.982053,0.808895,0.931145,0.819477,0.539569,0.795656,0.391279,0.0936909,0.656121,0.729839,0.928514,0.601508,0.0463384,0.478746,0.731507,0.34014,0.192351,0.818441,0.287748,0.257759,0.318315,0.264539,0.654,0.92131,0.882444,0.493985,0.288903,0.142764,0.874088,0.819089,0.00279337,0.0488127,0.539563,0.652178,0.236506,0.683364,0.00361902,0.704839,0.0912071,0.976639,0.723903,0.523618,0.120468,0.517973,0.841241,0.703014,0.962339,0.682183,0.924419,0.0916668,0.438875,0.162983,0.136683,0.638008,0.341373,0.385116,0.54904,0.880064,0.577149,0.00508225,0.563847,0.135918,0.893155,0.483301,0.414512,0.37824,0.390334,0.0686038,0.177461,0.635496,0.708353,0.32418,0.309859,0.770633,0.254592,0.85095,0.0287759,0.577229,0.9569,0.921099,0.760258,0.817106,0.254906,0.0574667,0.101745,0.722684,0.416472,0.745811,0.950623,0.718296,0.413737,0.0636312,0.710112,0.879755,0.723291,0.34811,0.565271,0.064121,0.893107,0.0187482,0.386931,0.313579,0.27668,0.153107,0.495767,0.611835,0.755873,0.347537,0.462605,0.798144,0.842075,0.614873,0.905055,0.551697,0.133474,0.0222403,0.376403,0.900343,0.790519,0.650583,0.0881363,0.302226,0.169566,0.154787,0.337984,0.851873,0.507244,0.470937,0.154139,0.626623,0.483652,0.803423,0.503601,0.362097,0.182808,0.851145,0.687139,0.277351,0.538028,0.0910141,0.127827,0.305474,0.677142,0.172883,0.00227755,0.586238,0.754896,0.205901,0.429828,0.314589,0.280407,0.938033,0.436185,0.46064,0.521713,0.892953,0.698823,0.221784,0.286727,0.520429,0.644861,0.388849,0.402568,0.442238,0.956044,0.910858,0.882847,0.917844,0.989725,0.817465,0.0394997,0.329053,0.537078,0.336995,0.539697,0.474644,0.873092,0.0123619,0.229606,0.405133,0.253368,0.67233,0.695005,0.27705,0.673616,0.332809,0.877013,0.78538,0.935773,0.883795,0.854206,0.957468,0.97883,0.840765,0.192508,0.377812,0.919506,0.748893,0.633461,0.606664,0.695672,0.374646,0.227712,0.0992437,0.228232,0.141909,0.276054,0.601153,0.932721,0.38805,0.579727,0.227889,0.468075,0.906824,0.1329,0.0644752,0.403017,0.407751,0.0978503,0.44476,0.766722,0.616836,0.555806,0.798189,0.181277,0.39185,0.736826,0.456957,0.227481,0.813643,0.104675,0.508575,0.443274,0.00187486,0.160342,0.507753,0.544822,0.687769,0.521377,0.790856,0.98605,0.161122,0.573133,0.101128,0.777752,0.860471,0.0472147,0.974673,0.809616,0.203915,0.620213,0.573972,0.0862583,0.408139,0.733297,0.701214,0.693329,0.0497051,0.480998,0.885318,0.377842,0.880403,0.441898,0.699961,0.699605,0.800541,0.744991,0.733486,0.344835,0.638334,0.751657,0.794504,0.580568,0.21816,0.0814124,0.72758,0.944298,0.283535,0.170352,0.622064,0.813939,0.81318,0.685674,0.221169,0.881459,0.66294,0.669933,0.255239,0.00392812,0.521858,0.907373,0.020362,0.0984456,0.0586478,0.999064,0.079823,0.373034,0.724221,0.86534,0.455319,0.375485,0.838455,0.928343,0.756563,0.392677,0.782335,0.801442,0.866377,0.529992,0.48361,0.508603,0.831741,0.31377,0.254354,0.0793347,0.812688,0.134919,0.169802,0.161065,0.518084,0.000540376,0.502606,0.131349,0.736834,0.133451,0.970151,0.124294,0.632674,0.845764,0.160523,0.697326,0.675391,0.603358,0.10176,0.00120699,0.535664,0.708539,0.445445,0.567238,0.931813,0.587693,0.740588,0.0810162,0.0805634,0.830265,0.0622015,0.0604193,0.221556,0.751472,0.395109,0.0121725,0.313599,0.148839,0.884414,0.121157,0.557173,0.284171,0.489814,0.285506,0.178421,0.967185,0.0836395,0.0796762,0.533181,0.589679,0.919062,0.870789,0.804881,0.564963,0.940379,0.343191,0.287882,0.378461,0.777482,0.745448,0.00138485,0.848733,0.594412,0.976404,0.48134,0.329398,0.269493,0.792727,0.714274,0.0245106,0.193753,0.173281,0.568021,0.367568,0.339646,0.828602,0.74863,0.956064,0.566781,0.58004,0.546427,0.575067,0.186289,0.845011,0.00613004,0.943635,0.49142,0.00611204,0.160731,0.844821,0.229892,0.933141,0.413441,0.259588,0.621918,0.263066,0.262669,0.488575,0.127544,0.325378,0.681345,0.951695,0.842376,0.0535069,0.684841,0.458876,0.963485,0.908494,0.646515,0.578523,0.424541,0.85905,0.56723,0.614938,0.299465,0.068393,0.783891,0.685171,0.138359,0.079037,0.940148,0.403308,0.403522,0.951803,0.534321,0.516519,0.189613,0.565857,0.356611,0.144465,0.871581,0.313212,0.0691027,0.523197,0.277044,0.957301,0.55475,0.499555,0.673774,0.423684,0.198022,0.159411,0.771282,0.138816,0.814071,0.0661274,0.372477,0.667917,0.810393,0.662692,0.344822,0.521526,0.956886,0.195787,0.522883,0.870077,0.225831,0.377112,0.774359,0.936942,0.529249,0.553073,0.436158,0.691056,0.806061,0.680289,0.345395,0.718396,0.964327,0.48614,0.849303,0.0708646,0.542968,0.862809,0.945993,0.273258,0.243738,0.720539,0.867091,0.719409,0.910277,0.30433,0.954607,0.231718,0.760674,0.529884,0.766358,0.886314,0.925484,0.677986,0.690682,0.949123,0.187285,0.148708,0.363538,0.5782,0.755433,0.239661,0.376094,0.309808,0.301136,0.339063,0.784845,0.0464064,0.929526,0.980706,0.087522,0.347354,0.977746,0.239138,0.263785,0.371491,0.441133,0.56176,0.54674,0.580238,0.916368,0.422409,0.691612,0.146072,0.388951,0.801202,0.783224,0.854015,0.317387,0.431491,0.42605,0.700404,0.506254,0.102836,0.605449,0.545011,0.916973,0.000136375,0.42569,0.0456979,0.791623,0.371537,0.513556,0.805106,0.858845,0.11294,0.945332,0.325972,0.82716,0.813799,0.596234,0.937322,0.171596,0.855328,0.965415,0.684476,0.334757,0.961761,0.56849,0.997705,0.943034,0.821146,0.785036,0.10749,0.682569,0.373735,0.607901,0.451714,0.984683,0.130129,0.515494,0.975361,0.711847,0.0138957,0.0506843,0.121796,0.00725907,0.127788,0.854999,0.132383,0.25756,0.980708,0.15203,0.0675955,0.571361,0.979907,0.644901,0.0496107,0.224312,0.0266768,0.109918,0.761474,0.0237756,0.697826,0.3544,0.714384,0.207744,0.897272,0.123589,0.520518,0.879607,0.485255,0.542359,0.429828,0.517749,0.708357,0.567385,0.0773392,0.462992,0.344576,0.662486,0.418471,0.992059,0.999535,0.714415,0.460492,0.876623,0.834433,0.496877,0.733292,0.527445,0.253323,0.700642,0.713586,0.934624,0.08051,0.206553,0.70942,0.87078,0.644427,0.111725,0.936451,0.0744034,0.580061,0.583524,0.409507,0.678891,0.233927,0.130811,0.329226,0.886878,0.4851,0.397067,0.939443,0.817346,0.570723,0.155139,0.681764,0.243176,0.932841,0.0112275,0.0170746,0.505529,0.103084,0.573869,0.00153899,0.0171563,0.202881,0.265618,0.0144969,0.694449,0.951297,0.391719,0.0607569,0.164122,0.96998,0.303963,0.756026,0.901938,0.231997,0.747617,0.828655,0.673069,0.846522,0.870206,0.755439,0.939979,0.579714,0.0206878,0.321335,0.972926,0.91045,0.76809,0.459002,0.675998,0.485553,0.272946,0.123699,0.922701,0.343377,0.0469004,0.633464,0.189746,0.531452,0.973372,0.0858068,0.577173,|0.402184,0.351678,0.761453,0.471816,0.732129,0.276605,0.386451,0.791441,0.79343,0.589344,0.37564,0.263974,0.711574,0.0218465,0.590934,0.0760896,0.438671,0.413293,0.573815,0.420043,0.44871,0.874548,0.413465,0.821946,0.897467,0.149227,0.305081,0.350199,0.224997,0.920694,0.250121,0.83966,0.0269287,0.340507,0.0340956,0.869781,0.657547,0.34026,0.443829,0.324244,0.516618,0.469214,0.399349,0.284991,0.215565,0.254157,0.912825,0.986409,0.531105,0.443335,0.387173,0.669315,0.0410572,0.584448,0.80847,0.796716,0.78223,0.718438,0.156846,0.301646,0.392291,0.561889,0.454921,0.590132,0.52925,0.434868,0.645185,0.899116,0.353188,0.375594,0.714988,0.684377,0.115063,0.372875,0.260633,0.859869,0.45177,0.910217,0.613674,0.868416,0.595951,0.459259,0.0349349,0.091644,0.28972,0.216015,0.870579,0.64804,0.859247,0.553253,0.317992,0.990629,0.15755,0.163162,0.694018,0.0425083,0.464975,0.628966,0.0961487,0.917414,0.012637,0.877987,0.976279,0.830109,0.292373,0.246817,0.333421,0.3475,0.620031,0.683131,0.569133,0.539166,0.644376,0.126075,0.0432877,0.0973513,0.937273,0.213733,0.299727,0.526292,0.243111,0.461896,0.807317,0.932582,0.555499,0.39995,0.903783,0.71257,0.763228,0.0718662,0.129214,0.436601,0.580043,0.731197,0.836335,0.864753,0.778718,0.571524,0.927782,0.0670072,0.890343,0.636822,0.529085,0.0616272,0.0108632,0.588304,0.682743,0.298576,0.802133,0.778918,0.103743,0.80993,0.618876,0.161206,0.0965231,0.913961,0.180048,0.923876,0.862134,0.982998,0.703775,0.97488,0.808387,0.24314,0.795,0.809918,0.400902,0.430218,0.0789689,0.740247,0.566025,0.216179,0.172681,0.295106,0.141185,0.0675478,0.62351,0.71075,0.13297,0.229473,0.40205,0.125847,0.943921,0.91868,0.624897,0.750327,0.969561,0.735314,0.843123,0.352352,0.589992,0.678741,0.394161,0.682941,0.616499,0.696954,0.327731,0.495764,0.603507,0.253965,0.419139,0.0697492,0.717341,0.219734,0.605624,0.717319,0.0969709,0.200279,0.303071,0.15487,0.833866,0.873799,0.425208,0.690435,0.606156,0.247457,0.45479,0.188809,0.469769,0.709518,0.101427,0.38096,0.075608,0.110923,0.988688,0.0860546,0.180807,0.118741,0.806531,0.982032,0.128532,0.624147,0.408958,0.894763,0.715707,0.976263,0.232002,0.512831,0.0102835,0.315401,0.062032,0.13061,0.427321,0.207175,0.882864,0.134663,0.520875,0.86821,0.298046,0.863399,0.412259,0.508323,0.840485,0.87782,0.266687,0.491942,0.860603,0.280462,0.260596,0.621287,0.730321,0.201008,0.136915,0.908246,0.464142,0.139892,0.974381,0.515146,0.113501,0.412892,0.885362,0.38069,0.904686,0.621493,0.844882,0.349874,0.0250189,0.598838,0.0652962,0.520793,0.290709,0.16488,0.380285,0.487085,0.427834,0.238344,0.282391,0.0839957,0.420557,0.215878,0.865294,0.338196,0.413232,0.712835,0.149236,0.77877,0.577283,0.609701,0.486096,0.813354,0.27804,0.754905,0.933518,0.868831,0.471401,0.24584,0.152167,0.0620294,0.24993,0.173785,0.930628,0.908198,0.117195,0.287956,0.654669,0.768107,0.856608,0.204662,0.773925,0.0688487,0.425331,0.441391,0.31447,0.187822,0.556888,0.315251,0.248966,0.58368,0.550127,0.515134,0.328434,0.668175,0.248828,0.524561,0.664683,0.292037,0.492425,0.818584,0.72959,0.243247,0.757157,0.78547,0.783529,0.258915,0.779264,0.882279,0.399445,0.0362844,0.608403,0.673654,0.659487,0.210469,0.515427,0.766285,0.0771145,0.705452,0.296348,0.159821,0.687613,0.931462,0.45807,0.804924,0.338236,0.121224,0.301694,0.620061,0.665922,0.980411,0.455631,0.932916,0.909686,0.110669,0.382613,0.384658,0.0344952,0.392798,0.555473,0.474541,0.279645,0.159741,0.4998,0.934702,0.647746,0.479,0.232645,0.501612,0.447951,0.169537,0.51436,0.925266,0.348842,0.582936,0.651467,0.168288,0.0583974,0.000667989,0.913774,0.538427,0.462196,0.900573,0.5288,0.358415,0.249947,0.802387,0.319347,0.399508,0.537364,0.254686,0.339522,0.304921,0.749453,0.755587,0.64165,0.399931,0.440245,0.420508,0.181916,0.246866,0.264221,0.748897,0.445267,0.357587,0.860001,0.435292,0.970228,0.193274,0.99249,0.781172,0.0607151,0.50682,0.389125,0.978074,0.243358,0.0255864,0.0605317,0.222376,0.626922,0.957958,0.46237,0.563759,0.754307,0.787108,0.204586,0.756194,0.171266,0.132061,0.154822,0.348701,0.138131,0.193436,0.0591873,0.246358,0.784815,0.0757098,0.127504,0.545062,0.0678737,0.82154,0.74022,0.615925,0.621405,0.266083,0.573117,0.649649,0.316477,0.882524,0.179722,0.348567,0.611571,0.963903,0.803973,0.877349,0.258625,0.39537,0.824632,0.817423,0.108831,0.742172,0.271407,0.826733,0.268208,0.359229,0.0659342,0.0146589,0.519874,0.476201,0.686499,0.639146,0.185262,0.104888,0.475873,0.754184,0.880046,0.306615,0.733045,0.111328,0.419862,0.764119,0.301396,0.164047,0.78271,0.372672,0.512712,0.915108,0.446027,0.13735,0.700328,0.808041,0.173385,0.246299,0.0801562,0.495576,0.747138,0.616962,0.680001,0.924776,0.815984,0.50463,0.572391,0.0526471,0.552985,0.608839,0.305846,0.0322446,0.674383,0.719103,0.367237,0.0791195,0.439553,0.944793,0.8939,0.452599,0.394051,0.526901,0.44073,0.819593,0.711788,0.0566244,0.887172,0.470206,0.252241,0.97094,0.372787,0.250928,0.295394,0.313037,0.826575,0.812341,0.653091,0.445608,0.483718,0.946194,0.333413,0.512258,0.741182,0.239272,0.212576,0.289008,0.190845,0.592748,0.699731,0.750954,0.0258445,0.391165,0.821124,0.696649,0.468707,0.953859,0.114219,0.944845,0.561414,0.831172,0.757619,0.00168318,0.0690139,0.737253,0.996092,0.247812,0.14855,0.896037,0.959597,0.91073,0.629243,0.938293,0.500458,0.273088,0.745485,0.75602,0.702614,0.64261,0.59028,0.364697,0.178611,0.439615,0.784507,0.627762,0.0475173,0.214343,0.216514,0.204485,0.549789,0.0656247,0.778666,0.894166,0.00692785,0.0464367,0.324354,0.172228,0.848913,0.978416,0.507238,0.092163,0.697362,0.746438,0.267929,0.894389,0.0808287,0.450517,0.377882,0.988017,0.240898,0.229877,0.596384,0.883317,0.656041,0.384982,0.131067,0.671659,0.626912,0.818413,0.594132,0.587342,0.957522,0.454597,0.490312,0.230181,0.287961,0.139794,0.0720245,0.544721,0.441956,0.204234,0.107785,0.0763738,0.0999412,0.295028,0.533398,0.774363,0.472825,0.332795,0.483415,0.146732,0.460782,0.562892,0.208383,0.685872,0.353199,0.0510923,0.959901,0.250567,0.165464,0.551037,0.818578,0.30845,0.680398,0.869763,0.898765,0.724574,0.725716,0.980612,0.965098,0.224402,0.68082,0.47393,0.212363,0.883978,0.556667,0.816095,0.948547,0.120311,0.325465,0.315621,0.544005,0.0589364,0.80927,0.511974,0.545493,0.373248,0.881334,0.846658,0.423763,0.762246,0.528372,0.796358,0.940311,0.749965,0.732459,0.151698,0.413694,0.520886,0.123283,0.58076,0.661243,0.404192,0.096411,0.451831,0.444458,0.769753,0.0276071,0.384071,0.765977,0.0541283,0.315592,0.348793,0.0526572,0.910106,0.991594,0.993009,0.884544,0.145743,0.309727,0.912431,0.491527,0.516794,0.719807,0.861607,0.693073,0.0511542,0.912665,0.413292,0.162665,0.223165,0.477392,0.858806,0.0160276,0.46688,0.531143,0.646769,0.850908,0.654021,0.400693,0.342194,0.64005,0.00392604,0.829795,0.0218948,0.168772,0.0721151,0.772796,0.276535,0.457168,0.0721564,0.889029,0.825852,0.336692,0.92175,0.106812,0.683802,0.918291,0.230038,0.217494,0.145606,0.133403,0.096238,0.0736101,0.459416,0.66084,0.690871,0.313307,0.354843,0.930236,0.0147213,0.120763,0.309388,0.601156,0.768983,0.164428,0.70235,0.151556,0.0219932,0.73229,0.747684,0.420284,0.210466,0.216788,0.467555,0.431021,0.335574,0.445777,0.163984,0.698922,0.0922343,0.00298941,0.911004,0.165603,0.064191,0.0999497,0.0968636,0.861976,0.38308,0.530663,0.506788,0.707977,0.52495,0.303373,0.834347,0.692927,0.75326,0.654112,0.812109,0.108549,0.611747,0.136192,0.722709,0.814166,0.528961,0.639311,0.152501,0.701786,0.625432,0.711097,0.654571,0.746049,0.216794,0.749944,0.71891,0.4535,0.500863,0.985607,0.965533,0.585944,0.26453,0.11077,0.456061,0.147178,0.248156,0.36832,0.388848,0.934523,0.453227,0.0843775,0.750065,0.661317,0.0468379,0.833701,0.0627952,0.478373,0.840448,0.0863825,0.877923,0.52156,0.756813,0.694349,0.849188,0.418103,0.0145891,0.792159,0.721725,0.670032,0.726708,0.00829333,0.439552,0.9334,0.737247,0.393858,0.864902,0.462816,0.9342,0.970421,0.960337,0.641382,0.279215,0.109945,0.0744655,0.888255,0.105828,0.45882,0.996814,0.886158,0.328934,0.249374,0.0692546,0.902226,0.936451,0.913742,0.0810872,0.259803,0.354276,0.00744772,0.324414,0.407778,0.704476,0.0196947,0.605411,0.519459,0.80168,0.49354,0.311726,0.970046,0.323165,0.980081,0.01142,0.391251,0.560999,0.693207,0.318067,0.154722,0.416362,0.252391,0.219117,0.361066,0.602189,0.079581,0.370949,0.333095,0.843185,0.96979,0.490957,0.949047,0.429912,0.7336,0.634777,0.0581412,0.970854,0.57906,0.735799,0.388412,0.701315,0.858055,0.0918546,0.541337,0.193967,0.933394,0.699016,0.828182,0.905145,0.642649,0.539634,0.662302,0.794141,0.972019,0.841627,0.0516684,0.0854639,0.631002,0.841384,0.428404,0.548743,0.35597,0.165884,0.550652,0.288104,0.490673,0.578596,0.280562,0.542071,0.861019,0.910449,0.234402,0.257787,0.188823,0.491895,0.166407,0.614534,0.224037,0.0490874,0.708856,0.975977,0.83844,0.296181,0.766587,0.619419,0.156446,0.149257,0.552699,0.985978,0.974827,0.505227,0.741321,0.357614,0.711359,0.902441,0.0478627,0.449148,0.263541,0.718395,0.207968,0.72735,0.374433,0.509513,0.339313,0.612594,0.496446,0.899853,0.491701,0.0291532,0.1257,0.987588,0.576396,0.117482,|0.19391,0.110373,0.89466,0.775926,0.594872,0.998981,0.189403,0.149215,0.305749,0.350649,0.123808,0.292202,0.543731,0.971227,0.896127,0.370225,0.920063,0.693755,0.163373,0.355731,0.451697,0.211091,0.354028,0.730816,0.848312,0.976032,0.124795,0.63287,0.4438,0.100131,0.364166,0.528648,0.789882,0.00816637,0.793833,0.808069,0.308594,0.947606,0.342527,0.51745,0.0584946,0.698351,0.331035,0.287015,0.484342,0.822551,0.697036,0.66962,0.0912272,0.500183,0.76936,0.695094,0.854593,0.651871,0.304774,0.202043,0.887958,0.860751,0.916022,0.850731,0.530016,0.856648,0.786615,0.740718,0.10291,0.597863,0.0351881,0.425845,0.836206,0.315404,0.0105067,0.240058,0.229057,0.979515,0.115493,0.197724,0.265684,0.448046,0.11682,0.601791,0.953991,0.0896764,0.637676,0.24133,0.929044,0.538512,0.0961006,0.854218,0.703253,0.606459,0.874357,0.964169,0.860485,0.424042,0.770193,0.887067,0.401983,0.0745094,0.592036,0.13453,0.527624,0.195696,0.660889,0.127366,0.273037,0.858162,0.00794762,0.878462,0.442603,0.930571,0.295171,0.608924,0.991337,0.233788,0.292316,0.180798,0.594645,0.750009,0.222847,0.66185,0.394423,0.408781,0.29947,0.295899,0.173954,0.677706,0.430038,0.0344338,0.712507,0.236304,0.853924,0.467486,0.887223,0.363446,0.00813001,0.641719,0.653757,0.22906,0.970919,0.339002,0.638904,0.387238,0.238306,0.231703,0.256154,0.011502,0.0611531,0.783703,0.700644,0.200733,0.136899,0.119168,0.585769,0.218485,0.66808,0.81993,0.253949,0.766375,0.445381,0.909921,0.707326,0.0682139,0.585367,0.404667,0.656566,0.0236951,0.364309,0.73493,0.217029,0.416962,0.779597,0.770764,0.303865,0.15075,0.0692117,0.160645,0.377038,0.975427,0.546961,0.270416,0.997337,0.228347,0.166606,0.0381132,0.969604,0.36689,0.285479,0.633049,0.626115,0.244289,0.447935,0.307188,0.32455,0.98695,0.660378,0.625964,0.237917,0.311338,0.228299,0.532654,0.480662,0.295786,0.0359695,0.325986,0.248886,0.238747,0.142031,0.560846,0.672144,0.211719,0.931549,0.658986,0.0264928,0.516444,0.636193,0.481707,0.370855,0.31919,0.785521,0.428147,0.684874,0.761155,0.216735,0.270716,0.835537,0.343189,0.0604957,0.453213,0.361376,0.80887,0.143144,0.813527,0.692587,0.706419,0.617572,0.414536,0.902058,0.997048,0.252852,0.336215,0.737629,0.451755,0.330405,0.0980766,0.0186969,0.486951,0.658872,0.953081,0.796792,0.926271,0.800782,0.149264,0.569243,0.257922,0.943967,0.338469,0.215002,0.00748909,0.719742,0.652782,0.677846,0.0117046,0.965006,0.256605,0.191557,0.0992644,0.961329,0.557525,0.982704,0.194875,0.999224,0.332226,0.52587,0.847782,0.103985,0.543767,0.715242,0.872343,0.280092,0.908966,0.664513,0.0360941,0.588407,0.482653,0.284128,0.728875,0.0694079,0.329869,0.636914,0.243098,0.329277,0.00824815,0.838862,0.929899,0.566112,0.0382158,0.670601,0.981244,0.415494,0.671914,0.215677,0.741694,0.281939,0.97811,0.107752,0.351942,0.71131,0.210747,0.944785,0.381687,0.44609,0.364876,0.846702,0.351211,0.530002,0.622664,0.54503,0.512335,0.0642938,0.262475,0.426636,0.202343,0.233935,0.50761,0.501955,0.437954,0.178274,0.739925,0.0275061,0.478533,0.474377,0.0759412,0.425198,0.933842,0.0259641,0.071459,0.497568,0.36876,0.115044,0.114367,0.751527,0.96236,0.0335079,0.441378,0.929257,0.079479,0.357147,0.717418,0.39739,0.237023,0.760435,0.922913,0.167628,0.604076,0.21159,0.968151,0.162589,0.214499,0.197221,0.371047,0.264392,0.830298,0.378534,0.359821,0.18681,0.937427,0.257216,0.612502,0.777269,0.167706,0.0384617,0.330131,0.141612,0.941999,0.43389,0.646432,0.418219,0.0848034,0.950597,0.766048,0.96941,0.55022,0.996733,0.299834,0.222077,0.935672,0.395122,0.525533,0.845905,0.788971,0.314916,0.829716,0.806115,0.350114,0.59235,0.621717,0.842821,0.896357,0.819473,0.76787,0.313413,0.916408,0.734795,0.277326,0.415441,0.74539,0.521022,0.605819,0.0957137,0.656908,0.0110973,0.703913,0.117613,0.852544,0.880428,0.74261,0.524955,0.370135,0.297084,0.975804,0.684637,0.162217,0.633475,0.434847,0.363752,0.871102,0.950865,0.20367,0.460412,0.240047,0.484197,0.49811,0.176176,0.918565,0.295533,0.257193,0.864577,0.409602,0.579275,0.460603,0.586091,0.350391,0.232091,0.221207,0.846171,0.869139,0.967493,0.754113,0.943793,0.542743,0.949538,0.834386,0.48111,0.184296,0.188111,0.502097,0.75672,0.468723,0.827332,0.495395,0.435059,0.908429,0.754088,0.437083,0.709557,0.39479,0.987297,0.242844,0.979194,0.0759333,0.294839,0.595084,0.565421,0.539386,0.640153,0.0692536,0.734677,0.754488,0.0557914,0.911828,0.992364,0.0709466,0.298862,0.862003,0.690139,0.236498,0.950231,0.703153,0.68716,0.996748,0.453045,0.75674,0.0466115,0.998478,0.872678,0.515161,0.512525,0.115839,0.689455,0.858744,0.182787,0.485068,0.283997,0.741096,0.544066,0.736378,0.582264,0.0679981,0.969819,0.0502385,0.381634,0.848385,0.0154726,0.734162,0.708513,0.0839697,0.503217,0.0793243,0.977869,0.0145499,0.586331,0.856299,0.845264,0.412546,0.565066,0.654776,0.771512,0.767248,0.870509,0.125349,0.567126,0.538552,0.0315019,0.29532,0.392317,0.881427,0.500102,0.335143,0.622871,0.373239,0.889263,0.108029,0.986424,0.659633,0.834061,0.247382,0.911339,0.00540739,0.853722,0.546641,0.419135,0.723646,0.941352,0.353805,0.567693,0.990143,0.634664,0.671102,0.926117,0.625257,0.208276,0.369526,0.918407,0.968337,0.980987,0.451474,0.803579,0.130189,0.579165,0.494373,0.966623,0.741635,0.508578,0.942024,0.424214,0.0342693,0.650706,0.76661,0.365138,0.2541,0.162404,0.161948,0.626412,0.115355,0.760335,0.497591,0.479463,0.458077,0.320232,0.256048,0.277793,0.732785,0.889907,0.879955,0.270022,0.918807,0.640081,0.0824106,0.138756,0.626739,0.507709,0.9705,0.0726674,0.432598,0.0348058,0.930404,0.159704,0.348476,0.114914,0.781439,0.333637,0.787434,0.567722,0.767636,0.349903,0.862709,0.625269,0.15401,0.684388,0.397891,0.113646,0.52876,0.433137,0.886835,0.194785,0.406523,0.599103,0.372251,0.39237,0.44323,0.641796,0.776815,0.385823,0.551945,0.347301,0.136878,0.368207,0.43911,0.586587,0.567992,0.96555,0.95417,0.205563,0.651248,0.914462,0.128832,0.36633,0.323805,0.559159,0.618957,0.747957,0.283071,0.339238,0.582235,0.74695,0.131584,0.563366,0.134027,0.100693,0.293102,0.822932,0.0117573,0.892719,0.220044,0.272218,0.979561,0.822676,0.0314056,0.419147,0.154499,0.342569,0.592505,0.682163,0.461469,0.239296,0.944494,0.642856,0.687014,0.65556,0.514445,0.471229,0.544624,0.261703,0.419381,0.215732,0.725142,0.972234,0.666103,0.730814,0.364255,0.602103,0.558517,0.506461,0.265177,0.613121,0.0999861,0.133712,0.698577,0.205257,0.837248,0.984548,0.470054,0.997423,0.100642,0.910164,0.198829,0.618253,0.947319,0.615909,0.652432,0.761858,0.574981,0.834359,0.670136,0.174879,0.564238,0.378884,0.0524756,0.657192,0.351134,0.389488,0.565585,0.889178,0.290671,0.498401,0.754016,0.62657,0.621452,0.317756,0.123156,0.494542,0.619687,0.0888441,0.827676,0.427918,0.776814,0.115992,0.441828,0.511593,0.855972,0.141735,0.185367,0.46091,0.620253,0.838295,0.695835,0.274223,0.750549,0.315227,0.796689,0.0851302,0.972729,0.524459,0.90444,0.667629,0.307727,0.0252888,0.293811,0.0975726,0.736354,0.57376,0.269754,0.0909047,0.824875,0.25903,0.947761,0.035314,0.0711446,0.426887,0.471311,0.885565,0.256091,0.958441,0.851518,0.412397,0.992869,0.01441,0.723089,0.330358,0.8069,0.498958,0.969534,0.106782,0.630841,0.711788,0.664108,0.5914,0.31225,0.156481,0.434401,0.578775,0.392895,0.08315,0.211493,0.777103,0.103537,0.833793,0.827648,0.781238,0.680746,0.334769,0.270243,0.865901,0.053826,0.58696,0.330912,0.655084,0.508488,0.292373,0.798537,0.734917,0.334886,0.194052,0.592478,0.908432,0.575361,0.93559,0.826945,0.315522,0.745192,0.104618,0.118899,0.392286,0.245926,0.34214,0.257082,0.0539127,0.0522357,0.986926,0.492892,0.285623,0.784645,0.847882,0.838489,0.862024,0.120267,0.609296,0.20804,0.619717,0.254436,0.833858,0.856151,0.0212231,0.411955,0.293957,0.573715,0.51242,0.664022,0.679557,0.968545,0.646147,0.26372,0.2933,0.382365,0.488148,0.424236,0.920225,0.66344,0.60225,0.853054,0.78049,0.332209,0.631094,0.550674,0.595976,0.852663,0.40661,0.160476,0.390042,0.633817,0.353338,0.19447,0.402957,0.387502,0.0797091,0.581758,0.632871,0.888663,0.565399,0.519719,0.42504,0.366336,0.820533,0.94706,0.770272,0.894703,0.131477,0.499916,0.373926,0.302444,0.696317,0.322019,0.916756,0.0853851,0.854346,0.857089,0.227844,0.256613,0.894717,0.168705,0.0512989,0.427665,0.12975,0.122958,0.180681,0.827259,0.388108,0.179606,0.7862,0.141185,0.194658,0.792465,0.455426,0.563548,0.0909346,0.347626,0.830356,0.278358,0.0302325,0.357512,0.973298,0.473454,0.406614,0.0166698,0.485653,0.929604,0.208751,0.390089,0.747229,0.226499,0.591058,0.389003,0.993115,0.785523,0.419433,0.295511,0.546371,0.0187737,0.554675,0.60952,0.228836,0.900932,0.437785,0.674877,0.563749,0.0924265,0.863166,0.747131,0.371412,0.753597,0.958391,0.235253,0.900684,0.517465,0.852693,0.175281,0.180268,0.802702,0.450524,0.785313,0.456066,0.626375,0.464454,0.741958,0.994875,0.716448,0.0243255,0.120774,0.224418,0.822845,0.324945,0.359774,0.443733,0.505247,0.241765,0.421334,0.0417587,0.835155,0.222324,0.589321,0.713106,0.891505,0.793054,0.0445869,0.109776,0.684271,0.091,0.2392,0.982903,0.060285,0.621171,0.407806,0.249339,0.779905,0.696731,0.649536,0.384596,0.183231,0.544306,0.910211,|0.380048,0.311954,0.554399,0.673259,0.0122763,0.666623,0.909189,0.103735,0.205019,0.888409,0.0155509,0.936422,0.793426,0.997747,0.315767,0.973412,0.36448,0.9245,0.758908,0.518073,0.947955,0.0654703,0.382557,0.437893,0.864294,0.883767,0.402277,0.930928,0.428825,0.789379,0.753826,0.290502,0.378806,0.278143,0.121818,0.0484662,0.0852488,0.201407,0.809499,0.887362,0.65457,0.516212,0.801843,0.977157,0.947164,0.819776,0.633638,0.296626,0.170541,0.411214,0.278822,0.293973,0.327542,0.707573,0.544041,0.832655,0.472933,0.72301,0.140005,0.890545,0.946252,0.350973,0.661552,0.649492,0.686727,0.287873,0.4772,0.524885,0.759413,0.123123,0.668807,0.41962,0.924319,0.972998,0.52806,0.690135,0.961725,0.446043,0.213207,0.155014,0.838944,0.223534,0.207628,0.636147,0.298063,0.0459974,0.619453,0.352498,0.214207,0.261148,0.652127,0.771487,0.583302,0.638763,0.243314,0.668291,0.249688,0.225369,0.459687,0.792971,0.409269,0.201761,0.63884,0.625239,0.158165,0.794018,0.34598,0.235675,0.00777036,0.786135,0.39944,0.752108,0.500723,0.311139,0.59234,0.669424,0.0527058,0.324858,0.488325,0.293588,0.0545691,0.220079,0.558247,0.225079,0.459104,0.299185,0.846966,0.604655,0.554698,0.572066,0.148495,0.720112,0.579749,0.359748,0.503743,0.315342,0.169316,0.799257,0.938687,0.975856,0.41439,0.907968,0.664603,0.0210336,0.159514,0.417973,0.284973,0.108156,0.686372,0.153049,0.973871,0.821381,0.183231,0.197676,0.875593,0.530055,0.65555,0.128013,0.719695,0.346731,0.506897,0.958941,0.96199,0.675251,0.528099,0.637282,0.225249,0.0719223,0.307401,0.391281,0.394203,0.262438,0.292689,0.784669,0.0515714,0.497982,0.743347,0.58165,0.859948,0.296382,0.236854,0.0828189,0.243536,0.0045929,0.989983,0.844519,0.477093,0.940262,0.72952,0.712291,0.251679,0.221407,0.630544,0.995334,0.573537,0.058921,0.580248,0.940837,0.184518,0.716452,0.0570036,0.313214,0.540267,0.021828,0.250587,0.0656176,0.576835,0.674254,0.143208,0.622744,0.919711,0.982094,0.695562,0.718087,0.982711,0.737836,0.692684,0.214275,0.519269,0.113358,0.904692,0.00549668,0.164401,0.413023,0.979617,0.427804,0.0759407,0.300875,0.709348,0.462545,0.795729,0.461968,0.945473,0.285116,0.318488,0.660761,0.344917,0.626945,0.255927,0.15411,0.873525,0.291818,0.0918008,0.351122,0.361134,0.717398,0.654381,0.343767,0.366252,0.558077,0.0364541,0.0492205,0.598754,0.0866412,0.987039,0.388786,0.317436,0.920003,0.57826,0.80521,0.346685,0.812527,0.404346,0.348924,0.303505,0.151809,0.0217313,0.305887,0.930987,0.70603,0.143006,0.761422,0.385066,0.952333,0.122363,0.166988,0.0937346,0.761444,0.643723,0.901929,0.919777,0.625301,0.608362,0.154917,0.253467,0.936107,0.477571,0.46319,0.593174,0.816298,0.783541,0.779092,0.241099,0.00440776,0.00659448,0.582812,0.697267,0.889144,0.0933688,0.656841,0.569923,0.860692,0.937205,0.508085,0.199408,0.916158,0.528832,0.8333,0.161728,0.525834,0.540292,0.379561,0.628411,0.0300474,0.96625,0.337673,0.74022,0.42498,0.742866,0.865228,0.882841,0.103406,0.996711,0.313122,0.125933,0.552082,0.120056,0.14326,0.60394,0.627469,0.98868,0.501609,0.12415,0.985899,0.742763,0.0249049,0.635427,0.441712,0.725266,0.940504,0.435598,0.487794,0.175609,0.0701661,0.721701,0.00939631,0.819081,0.755441,0.832676,0.494092,0.0272176,0.106212,0.927712,0.70698,0.598615,0.640719,0.160294,0.0788059,0.00458258,0.183697,0.102614,0.546851,0.498224,0.697072,0.815812,0.241133,0.31653,0.484825,0.271508,0.783199,0.793291,0.682357,0.587154,0.605862,0.613275,0.480197,0.535458,0.210138,0.254334,0.60394,0.92775,0.206107,0.861399,0.807137,0.338715,0.728406,0.439069,0.979926,0.461161,0.677346,0.774788,0.596382,0.52536,0.787961,0.833963,0.674843,0.404432,0.239872,0.968071,0.895329,0.676771,0.233372,0.0858553,0.766178,0.424041,0.694315,0.962512,0.217904,0.0960729,0.153458,0.589579,0.619096,0.775964,0.995376,0.182717,0.453271,0.226609,0.373407,0.616376,0.547173,0.274839,0.999102,0.613995,0.951008,0.764204,0.831747,0.626797,0.68119,0.26849,0.177876,0.0545059,0.601898,0.977263,0.622296,0.390256,0.57648,0.268091,0.612452,0.52274,0.587952,0.500126,0.234592,0.853086,0.0577774,0.457663,0.691045,0.468927,0.612271,0.479021,0.490777,0.955353,0.0666175,0.37211,0.976098,0.685445,0.568243,0.989911,0.387383,0.444211,0.751875,0.547407,0.0482216,0.283161,0.0101719,0.710102,0.2585,0.133051,0.993121,0.180828,0.509939,0.00251561,0.216396,0.625638,0.685793,0.526103,0.283868,0.314628,0.674169,0.110418,0.759218,0.613491,0.484302,0.226837,0.486632,0.585527,0.817223,0.65729,0.558384,0.419904,0.753959,0.00793976,0.29504,0.706399,0.909764,0.67832,0.32747,0.189138,0.851466,0.973944,0.715495,0.434339,0.571931,0.928412,0.660545,0.166198,0.682157,0.224764,0.400019,0.258484,0.987575,0.00160664,0.080036,0.861474,0.326891,0.468164,0.361825,0.769779,0.834771,0.80012,0.243691,0.466584,0.320444,0.348361,0.0449915,0.754032,0.274295,0.776679,0.287819,0.823308,0.579194,0.871839,0.890942,0.825295,0.45966,0.10533,0.00524467,0.487473,0.311936,0.234143,0.663702,0.43856,0.0759069,0.431985,0.604821,0.84447,0.332836,0.025889,0.450323,0.852964,0.11306,0.814063,0.139715,0.108105,0.98524,0.742796,0.64452,0.518307,0.870201,0.353395,0.440734,0.645323,0.573779,0.988768,0.877574,0.0594214,0.525592,0.775099,0.916139,0.0548252,0.452724,0.424988,0.607765,0.998672,0.612414,0.616508,0.346272,0.643748,0.710315,0.1846,0.376104,0.993348,0.977634,0.272816,0.0261568,0.201631,0.965808,0.130757,0.500227,0.537688,0.841279,0.365775,0.828616,0.330387,0.892502,0.73021,0.773053,0.788173,0.330715,0.997382,0.00287771,0.769085,0.762311,0.520787,0.666871,0.552855,0.778676,0.0260116,0.228998,0.808767,0.525631,0.559996,0.1853,0.743363,0.193503,0.900837,0.981592,0.573043,0.869492,0.460502,0.313984,0.0360437,0.338301,0.362392,0.302583,0.528846,0.47132,0.0252432,0.293918,0.709394,0.535065,0.341069,0.0976317,0.815044,0.410163,0.163802,0.33628,0.746467,0.168515,0.146555,0.376135,0.0357834,0.769808,0.265313,0.450686,0.878908,0.368836,0.206387,0.16938,0.609744,0.290511,0.616118,0.543888,0.495795,0.599885,0.293288,0.205571,0.263996,0.68475,0.42373,0.043926,0.936279,0.604476,0.465096,0.852192,0.628071,0.789144,0.631623,0.133493,0.956449,0.105314,0.88231,0.720676,0.210118,0.505982,0.698733,0.0508912,0.772018,0.960296,0.786206,0.358187,0.301983,0.530342,0.544709,0.278498,0.584991,0.588842,0.10832,0.966454,0.036772,0.445317,0.0482184,0.845713,0.647079,0.439153,0.765914,0.0104587,0.0393744,0.303881,0.849329,0.589216,0.417756,0.25541,0.500495,0.637386,0.767764,0.166952,0.437712,0.417435,0.638668,0.598824,0.452726,0.928353,0.594497,0.47383,0.553255,0.211481,0.236544,0.561519,0.182435,0.885315,0.430549,0.33967,0.691885,0.270606,0.836553,0.232648,0.524353,0.494293,0.648909,0.265816,0.793643,0.635045,0.652627,0.270266,0.471377,0.248532,0.860782,0.325856,0.770489,0.522117,0.684119,0.0530437,0.330193,0.214214,0.685974,0.86456,0.0202563,0.531278,0.23164,0.396823,0.677959,0.918844,0.0714332,0.862636,0.299786,0.608359,0.27274,0.793673,0.898346,0.849308,0.0198042,0.835617,0.560752,0.830114,0.668558,0.231971,0.89164,0.858568,0.110733,0.949714,0.661909,0.933568,0.546465,0.74072,0.375319,0.719589,0.952436,0.258416,0.0353728,0.377776,0.794686,0.92873,0.873656,0.12439,0.699556,0.455829,0.745583,0.546397,0.902496,0.794746,0.926451,0.324181,0.0532397,0.684792,0.600431,0.505998,0.76323,0.540012,0.927428,0.82097,0.260309,0.747742,0.860626,0.813025,0.400654,0.496661,0.323884,0.873265,0.168515,0.843893,0.944407,0.649924,0.442516,0.0815004,0.982552,0.34161,0.865892,0.109617,0.272315,0.833186,0.799437,0.775789,0.952448,0.536896,0.313186,0.614584,0.168687,0.505027,0.389333,0.953426,0.209124,0.0221977,0.976108,0.962391,0.843861,0.654952,0.542936,0.45067,0.779332,0.110019,0.272045,0.156429,0.209515,0.1152,0.0221391,0.691867,0.836495,0.392909,0.370351,0.311723,0.164915,0.779405,0.286271,0.772183,0.632617,0.171275,0.829404,0.770857,0.700294,0.834172,0.868691,0.912669,0.990675,0.627237,0.297122,0.44903,0.902438,0.540454,0.843111,0.0644181,0.239806,0.911276,0.122381,0.732094,0.685692,0.593913,0.122281,0.11036,0.636541,0.0143617,0.43892,0.190317,0.966489,0.405183,0.602234,0.987183,0.0801008,0.527906,0.831756,0.536021,0.354409,0.860349,0.181247,0.732446,0.317352,0.405596,0.995965,0.101565,0.281961,0.915554,0.538303,0.4173,0.709054,0.458198,0.49014,0.555459,0.901199,0.515376,0.195895,0.815495,0.835712,0.724187,0.662261,0.79118,0.581225,0.402489,0.595628,0.249806,0.977049,0.890345,0.176989,0.999338,0.0785493,0.179296,0.36133,0.292554,0.610869,0.570356,0.0570746,0.454005,0.0921283,0.199703,0.410118,0.618472,0.0274758,0.303209,0.756476,0.542694,0.227009,0.952273,0.257773,0.567143,0.944093,0.945866,0.332604,0.696457,0.0543547,0.747058,0.197124,0.29838,0.406955,0.931998,0.297082,0.929641,0.710488,0.0659048,0.301001,0.794237,0.336838,0.361633,0.025218,0.0520503,0.302678,0.0222929,0.0869235,0.707375,0.60816,0.13319,0.61549,0.50159,0.891116,0.177808,0.378071,0.106617,0.878303,0.364741,0.286836,0.362389,0.919474,0.0293684,0.384739,0.0616205,0.542542,0.422622,0.861157,0.72364,0.0376717,0.411127,0.383297,0.791386,0.772951,0.0743492,0.666264,0.916931,0.719682,0.473773,0.469567,0.876143,0.658485,0.103977,|0.212293,0.838922,0.786334,0.56749,0.181247,0.354291,0.522805,0.335971,0.089821,0.25158,0.441517,0.260655,0.0131804,0.519029,0.984581,0.231281,0.553887,0.405019,0.58815,0.411613,0.941351,0.691218,0.990451,0.0957003,0.618721,0.458032,0.505854,0.647911,0.462199,0.198107,0.924251,0.227471,0.732781,0.911836,0.90908,0.828912,0.0234989,0.277054,0.90367,0.472959,0.315422,0.602658,0.507708,0.430971,0.554509,0.48039,0.0386826,0.771012,0.938822,0.469547,0.421685,0.101096,0.62939,0.326368,0.666535,0.20224,0.0217443,0.611103,0.432275,0.492943,0.795289,0.438844,0.0192789,0.722366,0.38597,0.0574741,0.61016,0.0138135,0.899286,0.289292,0.112097,0.105231,0.288665,0.0149909,0.329011,0.934817,0.523804,0.807968,0.9491,0.255561,0.0321539,0.149785,0.310592,0.134905,0.224416,0.418469,0.0766194,0.412844,0.283723,0.711821,0.129147,0.545268,0.475866,0.123058,0.609897,0.531176,0.312188,0.762316,0.916627,0.00864989,0.162929,0.844819,0.34095,0.793616,0.513257,0.932535,0.827828,0.19636,0.162932,0.211918,0.201106,0.362193,0.891379,0.262555,0.150795,0.778254,0.959969,0.519984,0.0761848,0.0346205,0.977613,0.0673823,0.100158,0.668829,0.941108,0.341917,0.947012,0.678256,0.717521,0.155841,0.759694,0.469854,0.807775,0.42798,0.791725,0.636778,0.15801,0.858127,0.770798,0.0771781,0.234081,0.319116,0.484668,0.542557,0.51393,0.725987,0.652937,0.254229,0.531695,0.075228,0.878248,0.610277,0.225241,0.352926,0.315954,0.999278,0.485144,0.538638,0.644642,0.57865,0.865927,0.863159,0.785946,0.0988138,0.819744,0.173982,0.838994,0.747534,0.929866,0.599923,0.334551,0.117001,0.485303,0.867979,0.669828,0.277614,0.699796,0.741413,0.964646,0.906368,0.755973,0.681672,0.817165,0.47224,0.67658,0.659936,0.184708,0.244375,0.265121,0.365325,0.861089,0.348323,0.567612,0.576982,0.189788,0.693171,0.767091,0.677204,0.0950109,0.0904731,0.558952,0.832474,0.589056,0.942017,0.897861,0.90709,0.868859,0.522903,0.0818977,0.806759,0.919827,0.886691,0.682059,0.0620415,0.0292543,0.483866,0.163192,0.680136,0.72775,0.284622,0.676149,0.682471,0.933896,0.941322,0.470211,0.515415,0.78582,0.541126,0.934817,0.595,0.603048,0.298424,0.107319,0.126321,0.72237,0.240752,0.659406,0.032536,0.274024,0.295856,0.115435,0.369199,0.833967,0.0526491,0.522296,0.880904,0.852705,0.169384,0.446347,0.0801811,0.466333,0.582324,0.998194,0.827225,0.945867,0.952577,0.0966997,0.0292784,0.195293,0.716534,0.098278,0.0725315,0.101769,0.835409,0.149419,0.958208,0.428138,0.851313,0.446078,0.672832,0.921746,0.056502,0.105306,0.831118,0.699643,0.674546,0.541345,0.58408,0.134793,0.828756,0.788516,0.462626,0.191854,0.66061,0.675166,0.910846,0.801923,0.495219,0.069352,0.925156,0.588784,0.589333,0.921332,0.71169,0.333698,0.50028,0.871051,0.136276,0.552551,0.85462,0.814807,0.478646,0.322209,0.0418899,0.919775,0.185569,0.0371794,0.486034,0.31274,0.80827,0.380329,0.991288,0.211638,0.869204,0.61514,0.191023,0.419828,0.267975,0.126233,0.559293,0.895677,0.809297,0.397617,0.57936,0.460526,0.410044,0.532929,0.700649,0.961375,0.00579512,0.484908,0.261025,0.908311,0.706281,0.771395,0.0488245,0.626184,0.5208,0.565517,0.147692,0.807934,0.0443951,0.149282,0.703161,0.0550084,0.0794834,0.101132,0.35399,0.976674,0.187777,0.1689,0.632704,0.299956,0.295131,0.27113,0.766799,0.0490482,0.969023,0.275577,0.527396,0.0532982,0.865021,0.835495,0.460735,0.0609316,0.598596,0.0443087,0.824287,0.521093,0.479455,0.00213397,0.339197,0.601343,0.740871,0.774172,0.226396,0.611424,0.646837,0.0258414,0.860772,0.175662,0.67707,0.484953,0.775113,0.926919,0.467566,0.456681,0.784347,0.474751,0.775826,0.902711,0.785818,0.797734,0.132144,0.918652,0.308848,0.700909,0.858503,0.537436,0.634903,0.453324,0.377405,0.811805,0.795674,0.204153,0.270151,0.122888,0.896521,0.0246726,0.117138,0.128405,0.475551,0.886213,0.154747,0.2139,0.212464,0.882114,0.661417,0.996447,0.371488,0.985834,0.166694,0.201716,0.577239,0.518527,0.264381,0.2789,0.310119,0.0724158,0.0166747,0.376273,0.382765,0.145694,0.896244,0.0595293,0.0108513,0.142141,0.727841,0.266609,0.42563,0.798911,0.943845,0.35827,0.70991,0.21381,0.622607,0.896915,0.783423,0.67506,0.0506763,0.483448,0.895247,0.542815,0.56876,0.544947,0.952434,0.0477781,0.662359,0.347607,0.604959,0.408224,0.450802,0.491135,0.142311,0.108433,0.895697,0.82858,0.650115,0.177118,0.562118,0.949822,0.0847128,0.274188,0.410367,0.549697,0.990402,0.257823,0.832321,0.92164,0.857681,0.419417,0.0267981,0.771517,0.0812017,0.738638,0.41633,0.65608,0.0283571,0.425157,0.755865,0.183937,0.670978,0.63699,0.983745,0.505345,0.251797,0.537046,0.300804,0.454022,0.967281,0.0151968,0.173007,0.512348,0.00551426,0.133737,0.525107,0.0657581,0.642516,0.430872,0.863071,0.411465,0.120339,0.308629,0.469566,0.44617,0.410532,0.680888,0.820549,0.673394,0.302592,0.948364,0.580726,0.191843,0.408689,0.183932,0.046333,0.340249,0.434421,0.876147,0.713696,0.275781,0.53467,0.104513,0.120089,0.259205,0.852349,0.606947,0.996527,0.340805,0.997923,0.0432963,0.268045,0.447556,0.606414,0.883916,0.482462,0.219534,0.266854,0.99902,0.838075,0.770293,0.950548,0.393703,0.914533,0.498394,0.876111,0.729537,0.0691082,0.880647,0.183015,0.966661,0.294451,0.849932,0.93235,0.00861245,0.315291,0.951378,0.0399206,0.140882,0.31975,0.947759,0.644696,0.722457,0.512166,0.0734101,0.943181,0.280942,0.407311,0.464583,0.281,0.71739,0.718805,0.269812,0.50054,0.743164,0.533248,0.397514,0.709731,0.234693,0.350576,0.852959,0.811982,0.179322,0.844354,0.712893,0.846434,0.652956,0.572842,0.816027,0.400191,0.907761,0.990825,0.5424,0.576393,0.448003,0.368638,0.519865,0.515867,0.72771,0.760801,0.599047,0.504016,0.919523,0.532715,0.135469,0.161937,0.341605,0.0974274,0.761037,0.611045,0.48746,0.705338,0.910825,0.734776,0.944361,0.931951,0.356849,0.389879,0.466179,0.830012,0.505238,0.982643,0.937333,0.00623918,0.242265,0.812535,0.801493,0.69535,0.645087,0.289082,0.384834,0.514739,0.441271,0.724973,0.993766,0.352856,0.0775916,0.0674966,0.794028,0.848331,0.158839,0.363963,0.826184,0.155795,0.988182,0.537945,0.475369,0.0454021,0.310214,0.910133,0.470095,0.140275,0.829335,0.953132,0.0736156,0.161056,0.470078,0.0162471,0.43836,0.3878,0.905137,0.461255,0.106739,0.599374,0.0891522,0.053323,0.0837494,0.282279,0.761737,0.196631,0.292379,0.563975,0.876271,0.6211,0.895186,0.126831,0.864002,0.570865,0.70426,0.373324,0.664767,0.200581,0.74945,0.775396,0.446014,0.769405,0.156357,0.959986,0.402356,0.67692,0.399366,0.115682,0.00645041,0.0675504,0.493141,0.658909,0.314968,0.177334,0.00225222,0.946939,0.877434,0.00411701,0.69043,0.4711,0.552073,0.634379,0.974566,0.135263,0.289491,0.12004,0.658854,0.388726,0.879911,0.371475,0.368166,0.809449,0.309463,0.372692,0.810232,0.456903,0.00459027,0.0926045,0.00437295,0.181243,0.60061,0.94593,0.504016,0.606471,0.726947,0.639188,0.723714,0.769245,0.537153,0.324408,0.745413,0.77278,0.920489,0.743571,0.442085,0.907045,0.586765,0.182078,0.244099,0.0418953,0.787038,0.435053,0.688236,0.534558,0.76848,0.451743,0.973444,0.397077,0.70082,0.0383429,0.431799,0.213285,0.113876,0.868328,0.94106,0.057464,0.285806,0.613931,0.259046,0.536474,0.245531,0.0991224,0.413732,0.906529,0.183774,0.771335,0.55503,0.166961,0.598857,0.830623,0.784669,0.587217,0.796285,0.228595,0.424377,0.99601,0.90633,0.80242,0.78955,0.86323,0.450259,0.134128,0.0850965,0.866358,0.217182,0.629413,0.900314,0.668127,0.964772,0.910868,0.600892,0.458098,0.202784,0.651107,0.979737,0.907137,0.961507,0.79051,0.510951,0.514287,0.73205,0.499605,0.66372,0.92787,0.484819,0.196365,0.953586,0.242498,0.0207334,0.46884,0.585702,0.660294,0.742725,0.108419,0.183237,0.288931,0.547931,0.359125,0.886382,0.73128,0.218549,0.640547,0.261948,0.94716,0.618506,0.548177,0.822208,0.500514,0.44966,0.187727,0.280023,0.21137,0.242272,0.549199,0.2109,0.781424,0.0348898,0.162463,0.624297,0.720081,0.0676931,0.822104,0.428818,0.876371,0.426662,0.366272,0.52599,0.944442,0.80373,0.340917,0.72554,0.347017,0.955882,0.01676,0.663245,0.0473266,0.0493966,0.28968,0.077475,0.835378,0.822386,0.702001,0.310914,0.457772,0.90369,0.812277,0.399573,0.44182,0.713546,0.799022,0.247552,0.213436,0.634576,0.709073,0.68004,0.256929,0.835559,0.132818,0.406985,0.958162,0.629087,0.280301,0.141976,0.395673,0.00579077,0.102921,0.289604,0.36878,0.178222,0.993197,0.546107,0.188575,0.240606,0.214306,0.849766,0.150648,0.118039,0.351678,0.971815,0.41101,0.862243,0.34886,0.80043,0.198925,0.597299,0.591197,0.450791,0.0777591,0.262048,0.0190334,0.62923,0.0947586,0.287075,0.153335,0.577997,0.686811,0.0740245,0.310542,0.671728,0.701137,0.849195,0.257417,0.200968,0.831048,0.227427,0.715992,0.320274,0.250795,0.588252,0.840235,0.484817,0.445188,0.544375,0.389852,0.708049,0.502029,0.255937,0.0884279,0.040193,0.837613,0.456668,0.149244,0.778012,0.625797,0.308822,0.391427,0.695341,0.929097,0.24211,0.677957,0.0518689,0.388746,0.602224,0.0197812,0.51244,0.363431,0.451594,0.928331,0.199361,0.0462182,0.674988,0.379345,0.655101,0.340117,0.758209,0.918047,0.651071,0.742147,0.588157,0.207772,0.317193,0.42874,0.336037,0.829159,0.565208,0.31517,0.948034,0.0409701,0.913339,0.262574,0.0736671,0.686514,0.00675327,0.171029,0.156387,0.314881,|0.268416,0.348129,0.77285,0.570039,0.0334128,0.193256,0.585491,0.274937,0.556112,0.818481,0.468958,0.449386,0.710377,0.709403,0.799968,0.660977,0.905075,0.90033,0.804247,0.687837,0.062355,0.998356,0.053546,0.363965,0.534466,0.571526,0.361638,0.359861,0.0783032,0.544542,0.125542,0.136441,0.452851,0.795386,0.433319,0.324093,0.618234,0.555264,0.267552,0.7787,0.351328,0.983815,0.045323,0.296609,0.883694,0.187133,0.244271,0.875155,0.158872,0.295111,0.454718,0.985552,0.569883,0.86519,0.713979,0.23858,0.586248,0.609723,0.370007,0.344285,0.158242,0.834489,0.942674,0.786764,0.774038,0.832426,0.339927,0.388051,0.716508,0.791607,0.523679,0.586029,0.192618,0.1525,0.503438,0.402284,0.433058,0.433741,0.148684,0.636206,0.490225,0.175936,0.297318,0.639159,0.377147,0.487314,0.431207,0.00139326,0.209288,0.856956,0.360465,0.990928,0.933425,0.73488,0.397809,0.686169,0.729373,0.23328,0.104422,0.777806,0.0466284,0.359988,0.615586,0.405111,0.598261,0.140709,0.680614,0.662204,0.527597,0.20499,0.79577,0.0520393,0.496251,0.313032,0.384754,0.813014,0.312445,0.498146,0.643683,0.517343,0.316992,0.998801,0.596817,0.223631,0.251792,0.343349,0.660336,0.646799,0.916398,0.415968,0.081026,0.483314,0.000584424,0.747717,0.406504,0.294,0.843357,0.329058,0.523407,0.736965,0.758553,0.410178,0.786375,0.00397491,0.091564,0.833425,0.935243,0.628894,0.876446,0.357153,0.204398,0.953412,0.635443,0.520989,0.983049,0.933531,0.257347,0.242589,0.400098,0.948006,0.820645,0.822492,0.862613,0.841586,0.606471,0.0959382,0.899443,0.460132,0.288725,0.147784,0.439128,0.401167,0.207657,0.367249,0.39186,0.090839,0.596208,0.904805,0.0616287,0.0629867,0.408733,0.217219,0.71113,0.694043,0.787735,0.151018,0.925516,0.34586,0.376235,0.787566,0.160114,0.544255,0.553784,0.101512,0.902019,0.549591,0.375321,0.212458,0.273854,0.283501,0.314861,0.852245,0.245388,0.463232,0.312478,0.891475,0.197416,0.380714,0.634172,0.754418,0.941925,0.258148,0.610767,0.0627891,0.790464,0.442918,0.358073,0.477798,0.489328,0.237585,0.230124,0.380092,0.559884,0.551342,0.34586,0.220179,0.781601,0.319916,0.447947,0.541348,0.38375,0.143132,0.344264,0.180938,0.687371,0.17712,0.508144,0.191901,0.437774,0.960827,0.00773507,0.915194,0.0788469,0.448779,0.856117,0.731879,0.108504,0.876828,0.625714,0.00118041,0.988175,0.428541,0.770316,0.131944,0.326645,0.961225,0.11374,0.363129,0.657384,0.161431,0.34856,0.203063,0.274071,0.420482,0.885378,0.831723,0.13432,0.462151,0.2439,0.679309,0.130515,0.828429,0.895113,0.710706,0.879394,0.173609,0.786837,0.248858,0.836155,0.846832,0.650121,0.671092,0.220279,0.656393,0.312258,0.612777,0.45036,0.691454,0.129654,0.263046,0.29745,0.694126,0.476702,0.307655,0.0734902,0.170356,0.494735,0.361786,0.280749,0.325327,0.972375,0.51614,0.0292583,0.214256,0.961136,0.432241,0.0676088,0.614059,0.153973,0.126805,0.541379,0.0918199,0.275249,0.179435,0.0246686,0.826897,0.851832,0.299123,0.735139,0.679009,0.829171,0.000298977,0.13825,0.410213,0.439599,0.668778,0.64932,0.650524,0.940405,0.548615,0.131522,0.955471,0.0775833,0.742216,0.973523,0.467827,0.594359,0.138228,0.697833,0.610373,0.391883,0.294646,0.222072,0.738215,0.29649,0.289715,0.62129,0.039916,0.282484,0.0193133,0.682448,0.815995,0.659453,0.885916,0.577081,0.708242,0.0797283,0.433822,0.476102,0.71054,0.891534,0.794002,0.469971,0.927114,0.0257052,0.0880035,0.0786062,0.712706,0.975141,0.875462,0.3876,0.0206026,0.878491,0.91861,0.0236949,0.213011,0.612606,0.524452,0.0359911,0.132418,0.102935,0.105497,0.0727711,0.616081,0.323132,0.627491,0.115334,0.380511,0.219124,0.176549,0.159332,0.567749,0.264398,0.27089,0.844554,0.950499,0.948054,0.464166,0.0229251,0.0647799,0.979158,0.565725,0.274582,0.131403,0.185026,0.302271,0.248656,0.0693958,0.544516,0.685899,0.505933,0.538336,0.272252,0.547254,0.819761,0.231935,0.724686,0.123764,0.167957,0.00976443,0.136521,0.546894,0.807894,0.104174,0.136775,0.195141,0.304968,0.603317,0.297925,0.865344,0.901604,0.173331,0.397826,0.591101,0.861889,0.097434,0.837199,0.95389,0.949528,0.826232,0.0322102,0.306403,0.90939,0.222203,0.268383,0.544071,0.13824,0.874529,0.732438,0.0271776,0.837575,0.958734,0.77632,0.198212,0.925194,0.380694,0.621455,0.322431,0.610425,0.954367,0.856931,0.056147,0.577807,0.732231,0.511939,0.381587,0.953795,0.0451259,0.919155,0.924372,0.114936,0.944,0.184988,0.835383,0.946015,0.722582,0.428602,0.269238,0.410924,0.511101,0.956572,0.525171,0.567023,0.77684,0.938312,0.872286,0.700928,0.0263829,0.111746,0.886112,0.281668,0.896127,0.691436,0.255253,0.791136,0.0135425,0.446379,0.487077,0.225981,0.50343,0.453341,0.574716,0.8819,0.646893,0.202065,0.239627,0.553752,0.980044,0.827463,0.305685,0.432216,0.504286,0.407935,0.725592,0.522759,0.481692,0.63716,0.367063,0.527448,0.0822012,0.885404,0.241189,0.910161,0.249811,0.532177,0.150309,0.106807,0.786633,0.918175,0.186903,0.0582616,0.853513,0.85774,0.232222,0.783278,0.0830373,0.837229,0.854334,0.148607,0.389407,0.738956,0.800306,0.882229,0.782383,0.593106,0.893777,0.381528,0.60705,0.197217,0.213964,0.46031,0.951836,0.979131,0.851091,0.367833,0.00836658,0.294516,0.961821,0.479306,0.617126,0.71067,0.896077,0.938127,0.70885,0.302714,0.484428,0.600761,0.401411,0.378205,0.7197,0.454261,0.0504947,0.751423,0.316096,0.828993,0.464416,0.36969,0.456283,0.0266329,0.35686,0.235992,0.395865,0.134849,0.871815,0.927113,0.524707,0.11081,0.0179526,0.713497,0.78382,0.276227,0.8864,0.539867,0.46252,0.737009,0.577809,0.866358,0.591026,0.0568839,0.890501,0.257102,0.134334,0.366876,0.339849,0.162307,0.876171,0.75435,0.751957,0.500798,0.0956153,0.785679,0.863466,0.953629,0.118643,0.564616,0.212676,0.723489,0.835937,0.367972,0.86522,0.825752,0.899123,0.793735,0.592243,0.957787,0.845072,0.335125,0.985952,0.698993,0.84117,0.931927,0.949154,0.10165,0.495682,0.884455,0.683902,0.0680726,0.000170767,0.109534,0.702559,0.25093,0.459137,0.0236062,0.257211,0.968972,0.991174,0.30718,0.20381,0.458814,0.225515,0.973785,0.449676,0.224743,0.802622,0.445822,0.557998,0.189546,0.599686,0.777077,0.272862,0.224071,0.21305,0.0659073,0.63355,0.909167,0.245831,0.062296,0.742809,0.588127,0.373663,0.946823,0.849809,0.363378,0.702372,0.386853,0.736072,0.865958,0.518385,0.786697,0.653074,0.590299,0.723,0.498677,0.178185,0.142171,0.884127,0.422176,0.629307,0.613206,0.15109,0.461266,0.115207,0.725901,0.545689,0.169765,0.569861,0.440262,0.372304,0.0659187,0.0729393,0.673676,0.335493,0.600721,0.00447673,0.551629,0.106557,0.980852,0.106785,0.623077,0.454019,0.594724,0.514955,0.984718,0.855354,0.629458,0.896348,0.170383,0.637715,0.572858,0.946744,0.0300343,0.282789,0.645572,0.347574,0.625179,0.459637,0.419217,0.254743,0.667001,0.794266,0.158484,0.777987,0.866846,0.970609,0.782991,0.415296,0.136536,0.623342,0.772714,0.391599,0.241866,0.603501,0.814901,0.762034,0.836384,0.140424,0.728643,0.939642,0.850228,0.0848637,0.0619836,0.101818,0.77069,0.458323,0.338644,0.438452,0.337698,0.711656,0.0233634,0.559126,0.862069,0.280789,0.310031,0.300349,0.330979,0.417629,0.816478,0.715277,0.354504,0.389921,0.277288,0.509895,0.350653,0.639987,0.148227,0.758702,0.221426,0.468574,0.805647,0.526972,0.000600576,0.37285,0.913095,0.570068,0.734166,0.863252,0.621324,0.71035,0.584855,0.86511,0.52611,0.527732,0.229556,0.274938,0.163749,0.666764,0.437668,0.09411,0.625996,0.101457,0.440649,0.341593,0.474192,0.256465,0.953829,0.642329,0.254272,0.00327033,0.986381,0.504727,0.73253,0.82332,0.0498787,0.342943,0.87459,0.0621784,0.609354,0.571827,0.704232,0.377877,0.65286,0.520309,0.350126,0.457067,0.759698,0.442222,0.235609,0.378699,0.487926,0.398377,0.0840987,0.64748,0.459612,0.323593,0.936411,0.449896,0.403475,0.395949,0.927927,0.0290112,0.509177,0.858716,0.137819,0.909313,0.243198,0.91917,0.954893,0.294577,0.848301,0.629432,0.000248611,0.874929,0.980447,0.017027,0.627202,0.171626,0.724192,0.126765,0.665454,0.618688,0.00725144,0.794168,0.907017,0.184679,0.870672,0.976131,0.389798,0.0846046,0.745296,0.0796503,0.986654,0.905897,0.377822,0.575245,0.343186,0.225745,0.490223,0.919147,0.668914,0.35716,0.52462,0.862228,0.495621,0.725959,0.57884,0.193645,0.845731,0.049334,0.728342,0.501899,0.702375,0.225938,0.120364,0.713642,0.161352,0.577591,0.562851,0.948473,0.00867403,0.446971,0.722206,0.0800751,0.338099,0.0736346,0.791241,0.125499,0.992553,0.955173,0.574169,0.0732152,0.864801,0.461061,0.5968,0.980601,0.651047,0.696641,0.578993,0.952384,0.703781,0.0942317,0.446014,0.499254,0.887155,0.15404,0.303256,0.114587,0.128927,0.884017,0.114077,0.488258,0.494003,0.865842,0.755519,0.0426025,0.764164,0.106634,0.175552,0.343278,0.465312,0.782519,0.044893,0.764458,0.946047,0.952807,0.1976,0.166263,0.259555,0.820971,0.331403,0.376827,0.145939,0.59084,0.320777,0.363995,0.788838,0.602598,0.684488,0.61274,0.0472136,0.371621,0.0967078,0.409635,0.753217,0.686523,0.904991,0.818019,0.646883,0.229245,0.185425,0.81594,0.364132,0.0160623,0.157935,0.873196,0.73804,0.536431,0.148534,0.0896373,0.570742,0.601665,0.364736,0.778426,0.968441,0.99001,0.900151,0.0754513,0.493295,0.239697,0.668124,0.642421,0.312011,0.133841,0.70034,0.808437,0.457841,0.738085,0.313706,0.707953,0.840909,0.31925,|0.482031,0.922867,0.360892,0.55013,0.893524,0.90969,0.959244,0.357511,0.313481,0.440786,0.368707,0.369263,0.733569,0.211718,0.427832,0.518348,0.546196,0.95735,0.706018,0.0557213,0.246868,0.534457,0.387462,0.190983,0.400004,0.646412,0.179954,0.531321,0.955445,0.860255,0.206774,0.55645,0.503107,0.286803,0.391199,0.365967,0.00910383,0.0200422,0.796488,0.0126632,0.302159,0.986988,0.969436,0.101964,0.609405,0.835297,0.329008,0.0768564,0.142476,0.483492,0.0198229,0.539008,0.572831,0.198407,0.883664,0.743958,0.989909,0.0496681,0.893567,0.677809,0.772149,0.231155,0.871392,0.107614,0.44304,0.527092,0.198329,0.0188893,0.276746,0.563846,0.738139,0.883713,0.116619,0.642831,0.947134,0.0975881,0.675194,0.0458741,0.139572,0.0614219,0.227354,0.455512,0.05134,0.595967,0.462052,0.854253,0.834983,0.101878,0.0785698,0.676079,0.184517,0.852831,0.959395,0.700272,0.960782,0.909446,0.637534,0.867996,0.00630724,0.220182,0.968212,0.794158,0.104126,0.519509,0.795994,0.765885,0.597402,0.836775,0.215631,0.910852,0.199526,0.90663,0.549799,0.238421,0.848969,0.918552,0.735604,0.263919,0.581556,0.847734,0.411302,0.581033,0.919572,0.215916,0.592269,0.912827,0.308238,0.346427,0.202019,0.439084,0.644453,0.924545,0.101683,0.818853,0.139645,0.560146,0.0704588,0.9916,0.469484,0.0918004,0.408435,0.856965,0.801491,0.914947,0.469282,0.574385,0.25063,0.886207,0.605113,0.899593,0.141001,0.1804,0.377751,0.859289,0.799661,0.807069,0.827011,0.264309,0.195245,0.077567,0.35772,0.32525,0.386694,0.633152,0.932669,0.594044,0.424917,0.615529,0.238955,0.282882,0.236131,0.240705,0.517733,0.0161049,0.85811,0.876728,0.505404,0.632997,0.0531085,0.270486,0.117373,0.51361,0.371906,0.59342,0.633311,0.335805,0.922126,0.0546426,0.333274,0.632977,0.562967,0.918687,0.200374,0.570422,0.602609,0.339055,0.802301,0.519416,0.0443075,0.769089,0.560279,0.123414,0.841543,0.972888,0.0561724,0.290731,0.934411,0.168413,0.907223,0.932256,0.615198,0.866823,0.978363,0.800327,0.0103407,0.0703928,0.772542,0.43099,0.0779844,0.569988,0.179794,0.658162,0.72171,0.799194,0.639069,0.519505,0.584955,0.737661,0.989815,0.143397,0.0115361,0.612364,0.536084,0.098977,0.0853767,0.0769388,0.939627,0.978186,0.767937,0.415996,0.856396,0.546554,0.707465,0.6797,0.371218,0.411408,0.685748,0.436812,0.880467,0.392247,0.481943,0.0287624,0.247028,0.896494,0.949853,0.0723037,0.926019,0.68372,0.0436258,0.574835,0.296759,0.774601,0.46461,0.110785,0.922579,0.542322,0.125685,0.0111209,0.32284,0.682886,0.0267441,0.0583909,0.549586,0.401634,0.90853,0.940173,0.949481,0.626993,0.309771,0.818191,0.755651,0.859324,0.871154,0.659032,0.735331,0.115773,0.555135,0.615894,0.832238,0.854901,0.392797,0.141277,0.0766744,0.341858,0.775749,0.785377,0.371194,0.164174,0.306447,0.473473,0.736808,0.879339,0.675202,0.401045,0.388358,0.507795,0.847265,0.288615,0.730761,0.365476,0.974348,0.729625,0.121868,0.356944,0.27086,0.889433,0.311,0.733823,0.948445,0.413294,0.686171,0.192429,0.282705,0.65616,0.471924,0.0459323,0.690653,0.259011,0.0290085,0.658338,0.386784,0.94826,0.220516,0.55109,0.357882,0.781469,0.773251,0.642539,0.442668,0.110205,0.697754,0.365024,0.288712,0.382479,0.607183,0.59633,0.942876,0.213573,0.487686,0.411414,0.273217,0.47892,0.859883,0.793632,0.468999,0.292431,0.555197,0.247144,0.139032,0.093199,0.713986,0.570571,0.104379,0.357639,0.0806873,0.874188,0.743166,0.983163,0.712159,0.585557,0.548631,0.991233,0.000251889,0.457751,0.606491,0.60291,0.169749,0.56245,0.957126,0.23641,0.60388,0.593947,0.393441,0.15837,0.835885,0.0570458,0.73818,0.323001,0.789949,0.817074,0.257419,0.744568,0.0663759,0.901717,0.646086,0.753077,0.323097,0.436562,0.386369,0.481164,0.971213,0.0111064,0.324853,0.0666677,0.61425,0.215608,0.33916,0.0793666,0.308639,0.212492,0.222815,0.70314,0.267159,0.494471,0.81045,0.188281,0.390798,0.941538,0.802163,0.0312427,0.719035,0.611294,0.436338,0.672847,0.385632,0.342325,0.594262,0.407692,0.0583666,0.563455,0.24063,0.697906,0.78582,0.441513,0.00313461,0.043249,0.663453,0.249278,0.9705,0.986436,0.597184,0.980408,0.49508,0.401355,0.0487154,0.753101,0.390919,0.714704,0.156256,0.43535,0.658211,0.143462,0.621596,0.179959,0.246894,0.734527,0.492963,0.939768,0.489321,0.337153,0.0196168,0.341739,0.292829,0.134446,0.0215696,0.0413902,0.842068,0.77725,0.279431,0.806076,0.277361,0.336271,0.82901,0.0582443,0.186308,0.740344,0.0517586,0.939074,0.370306,0.0976786,0.809104,0.260103,0.846483,0.799458,0.272411,0.340674,0.331883,0.5833,0.12045,0.526737,0.000980973,0.168189,0.968708,0.855247,0.67041,0.409634,0.16115,0.190023,0.158575,0.861885,0.00309926,0.072818,0.718707,0.83173,0.0436251,0.0970083,0.601576,0.386698,0.458452,0.838,0.112545,0.203089,0.150256,0.664282,0.202393,0.944643,0.289799,0.15735,0.0655955,0.474426,0.828503,0.929312,0.558474,0.0757843,0.97773,0.583515,0.918043,0.69153,0.262907,0.294455,0.312904,0.709518,0.509137,0.749794,0.642333,0.126722,0.644883,0.52005,0.664991,0.523758,0.838498,0.329921,0.227371,0.820219,0.187999,0.895783,0.215255,0.477042,0.935637,0.621405,0.495842,0.0182476,0.620579,0.636839,0.020981,0.600129,0.882665,0.0403678,0.882088,0.310637,0.664839,0.888837,0.612398,0.194515,0.0702761,0.0705704,0.719153,0.432924,0.32756,0.800809,0.0221298,0.634976,0.884521,0.634868,0.256587,0.109284,0.382994,0.783259,0.988323,0.767976,0.0498792,0.947801,0.732947,0.290006,0.430639,0.0999119,0.823014,0.0522732,0.860197,0.901758,0.560603,0.393626,0.357928,0.568237,0.880018,0.695372,0.445237,0.844235,0.0188122,0.796151,0.910128,0.876345,0.568159,0.995362,0.0557483,0.0200559,0.559068,0.565592,0.117332,0.617906,0.280252,0.125162,0.177519,0.0367054,0.31468,0.513492,0.544697,0.975645,0.920235,0.496619,0.9438,0.674809,0.127264,0.623533,0.64155,0.805165,0.247992,0.448632,0.88807,0.836668,0.3381,0.675109,0.739886,0.586905,0.45118,0.246271,0.921496,0.95328,0.121129,0.26535,0.899865,0.494779,0.958193,0.87806,0.950293,0.119888,0.926387,0.488412,0.678486,0.160492,0.700541,0.5187,0.248744,0.194336,0.40563,0.804147,0.886711,0.323035,0.837709,0.928117,0.3882,0.206042,0.243544,0.803609,0.135256,0.898637,0.0260438,0.631736,0.909993,0.799998,0.768997,0.982606,0.833547,0.85022,0.37375,0.705642,0.969014,0.158471,0.890008,0.909034,0.306648,0.936946,0.224714,0.775073,0.500979,0.404723,0.14803,0.380549,0.145952,0.361948,0.942058,0.764237,0.689138,0.73797,0.191105,0.328619,0.386919,0.602546,0.175254,0.840487,0.220551,0.325712,0.264032,0.40288,0.548543,0.308642,0.948543,0.191704,0.887187,0.815375,0.293421,0.742023,0.114472,0.278398,0.414032,0.0400924,0.680057,0.0781603,0.385829,0.978745,0.262872,0.958279,0.613485,0.818067,0.22341,0.27364,0.521058,0.807468,0.382875,0.285662,0.922839,0.673646,0.0545602,0.42589,0.801692,0.824221,0.102184,0.752783,0.0652252,0.835793,0.138183,0.185185,0.767513,0.360785,0.309839,0.0692139,0.94796,0.153229,0.361742,0.789017,0.8743,0.746363,0.285305,0.456427,0.0748298,0.0553645,0.598422,0.00761312,0.609328,0.284265,0.741287,0.232295,0.986461,0.851606,0.0888059,0.0169703,0.897546,0.897783,0.616961,0.863529,0.832851,0.978287,0.766699,0.016512,0.974913,0.907881,0.146773,0.739503,0.48522,0.756596,0.131219,0.409558,0.459601,0.768819,0.141705,0.618419,0.853672,0.49594,0.876484,0.350829,0.892454,0.736176,0.975935,0.737675,0.208266,0.173665,0.693305,0.269295,0.149558,0.735996,0.539462,0.235644,0.961367,0.0469278,0.0542235,0.121696,0.517282,0.106799,0.382831,0.686776,0.279954,0.470474,0.128697,0.8141,0.789026,0.500719,0.571133,0.189307,0.0139273,0.952448,0.0603842,0.673475,0.544063,0.701205,0.883213,0.772195,0.329464,0.132042,0.0363908,0.9854,0.888542,0.559551,0.0532625,0.660395,0.466219,0.97291,0.201878,0.416175,0.366193,0.905331,0.431822,0.282297,0.257893,0.595155,0.526444,0.617667,0.879224,0.10294,0.897703,0.736088,0.216329,0.47274,0.604632,0.631171,0.883725,0.206275,0.815595,0.126834,0.795574,0.870005,0.8235,0.92898,0.633676,0.70614,0.418725,0.248962,0.260752,0.736515,0.729663,0.584436,0.0966326,0.335089,0.109969,0.529454,0.496528,0.101019,0.255158,0.0823665,0.304988,0.381707,0.603875,0.763297,0.426605,0.723998,0.795682,0.895659,0.23977,0.0864503,0.598217,0.332672,0.721651,0.00788039,0.56872,0.890744,0.399242,0.435948,0.620917,0.817585,0.458437,0.517292,0.893544,0.377797,0.238943,0.291537,0.956188,0.094713,0.251333,0.546233,0.700188,0.354642,0.442281,0.595358,0.310897,0.820816,0.194604,0.839837,0.869921,0.550331,0.920037,0.673807,0.902887,0.637111,0.932306,0.134527,0.913823,0.801709,0.178631,0.994897,0.786506,0.736389,0.351299,0.2644,0.847459,0.524259,0.463529,0.609208,0.714511,0.360519,0.598522,0.0804857,0.380793,0.750759,0.864534,0.35018,0.526189,0.560815,0.3943,0.00510436,0.0665441,0.203086,0.216848,0.455153,0.0269662,0.412789,0.447496,0.935108,0.625109,0.157035,0.0945612,0.42858,0.258541,0.615947,0.893248,0.995422,0.410119,0.757935,0.105938,0.201514,0.442524,0.755461,0.442609,0.748835,0.875952,0.0249738,0.744415,0.102979,0.980459,0.707623,0.846883,0.0556882,0.395274,0.227642,0.0317635,0.376937,0.318063,0.357724,0.729516,0.218924,0.961979,0.288602,0.654168,0.324947,0.137888,0.473385,0.656238,0.750502,0.824035,0.33301,0.373946,0.256745,|0.995238,0.385849,0.48572,0.957587,0.885964,0.56353,0.755466,0.558703,0.892999,0.407187,0.130478,0.92129,0.021669,0.716293,0.765666,0.7826,0.16946,0.267107,0.169035,0.642249,0.477709,0.624287,0.161056,0.532314,0.973996,0.573738,0.188858,0.456437,0.116566,0.908492,0.917239,0.785194,0.920824,0.133293,0.852505,0.795686,0.171976,0.439949,0.0506095,0.572157,0.71834,0.782598,0.217808,0.691087,0.00170487,0.476816,0.991994,0.790644,0.164943,0.922864,0.639456,0.615598,0.280342,0.566308,0.537689,0.614001,0.708746,0.873658,0.499288,0.630685,0.141871,0.0741109,0.501348,0.328624,0.754695,0.0276737,0.509357,0.664386,0.816873,0.672583,0.813526,0.53861,0.397158,0.301915,0.394769,0.402278,0.930063,0.758958,0.688506,0.964364,0.128803,0.864249,0.162143,0.937081,0.706249,0.337347,0.0487662,0.727479,0.631467,0.418544,0.617376,0.242818,0.739655,0.301527,0.244514,0.152843,0.565004,0.423598,0.329704,0.414713,0.0864719,0.94179,0.195723,0.715825,0.202324,0.0875273,0.456872,0.560943,0.0317948,0.394354,0.100765,0.778093,0.0894974,0.735864,0.00945222,0.365992,0.145036,0.267672,0.0935627,0.591203,0.547943,0.521537,0.0857886,0.467229,0.400041,0.743735,0.15975,0.831918,0.599846,0.315098,0.596883,0.236299,0.648363,0.325052,0.411428,0.430694,0.0959127,0.337415,0.44578,0.070968,0.174354,0.411899,0.604328,0.645842,0.158058,0.553291,0.458204,0.807954,0.880851,0.57057,0.857268,0.579998,0.0429776,0.715953,0.254137,0.970216,0.790785,0.913956,0.56174,0.947675,0.718879,0.414862,0.812529,0.714257,0.827881,0.0242087,0.770276,0.400431,0.151095,0.320723,0.53395,0.69207,0.12368,0.940819,0.102482,0.461648,0.954898,0.136918,0.421603,0.42876,0.0303669,0.15456,0.413071,0.604593,0.881228,0.910507,0.81954,0.272355,0.0302172,0.0711915,0.497388,0.537525,0.108303,0.938853,0.492352,0.105347,0.928222,0.963998,0.652766,0.912911,0.474799,0.147538,0.832028,0.0961176,0.598025,0.282872,0.745802,0.601559,0.483934,0.104826,0.489812,0.381555,0.993712,0.1042,0.513646,0.830882,0.698202,0.449504,0.856125,0.195904,0.745973,0.585267,0.913325,0.739799,0.357062,0.00340861,0.316322,0.968604,0.720392,0.00972372,0.842892,0.736212,0.932938,0.0292318,0.857683,0.157588,0.891671,0.168103,0.991566,0.911864,0.299154,0.638449,0.0617122,0.922111,0.965072,0.62626,0.959347,0.373313,0.0252825,0.634241,0.955897,0.729817,0.333325,0.0235669,0.558166,0.692017,0.861869,0.123093,0.473661,0.621939,0.609511,0.447821,0.292995,0.836797,0.479622,0.959384,0.378833,0.42702,0.124407,0.829409,0.139825,0.563858,0.930779,0.79289,0.161323,0.470785,0.316912,0.336826,0.451438,0.721397,0.641076,0.802215,0.212644,0.147264,0.4707,0.00248241,0.58388,0.487716,0.410659,0.399638,0.333932,0.385742,0.710323,0.260265,0.927394,0.742257,0.547827,0.586532,0.852523,0.270705,0.866968,0.0829499,0.331025,0.672344,0.51645,0.712517,0.528965,0.660218,0.484834,0.963901,0.423998,0.969336,0.368099,0.930452,0.387433,0.358646,0.381658,0.087308,0.833488,0.746191,0.459182,0.43564,0.536228,0.976888,0.362227,0.882415,0.310088,0.800531,0.010636,0.147896,0.948718,0.780307,0.696532,0.114762,0.837931,0.655989,0.320208,0.915511,0.299963,0.221304,0.382533,0.632026,0.833598,0.376675,0.500792,0.888235,0.533939,0.770217,0.486468,0.691585,0.638812,0.835495,0.179386,0.753945,0.87189,0.560211,0.924574,0.842352,0.786533,0.49202,0.965778,0.796621,0.210131,0.413395,0.23469,0.706948,0.213561,0.461735,0.878363,0.888692,0.432942,0.943173,0.283537,0.570716,0.942894,0.983449,0.991588,0.164589,0.307565,0.622428,0.50464,0.245411,0.282726,0.286398,0.736126,0.0546865,0.0852114,0.982691,0.323109,0.370556,0.983363,0.297247,0.126701,0.689079,0.305528,0.362567,0.425121,0.359124,0.826225,0.112777,0.985409,0.843139,0.480052,0.621184,0.130355,0.70078,0.0245914,0.550976,0.230051,0.441136,0.370675,0.43801,0.159579,0.150856,0.528969,0.246899,0.958331,0.320329,0.936044,0.533015,0.212159,0.588615,0.555232,0.358975,0.956658,0.183847,0.603984,0.989764,0.239018,0.255551,0.0570582,0.875795,0.589056,0.351066,0.87704,0.87856,0.565894,0.701857,0.451511,0.73405,0.579027,0.195224,0.00234085,0.923807,0.191141,0.565839,0.715438,0.854859,0.514363,0.395824,0.173935,0.897929,0.708575,0.615878,0.889306,0.825819,0.203709,0.657746,0.97768,0.338946,0.890851,0.446171,0.277442,0.906671,0.425403,0.0394327,0.958913,0.515132,0.585301,0.123756,0.805283,0.839702,0.713293,0.458662,0.341576,0.642871,0.38273,0.92464,0.171842,0.893622,0.0878223,0.830194,0.42849,0.332119,0.104021,0.20846,0.433499,0.595245,0.610366,0.276889,0.747459,0.333298,0.392263,0.767998,0.950056,0.281601,0.749838,0.992822,0.785035,0.650797,0.417485,0.644328,0.386417,0.524866,0.265516,0.611282,0.494123,0.261118,0.305925,0.455886,0.054118,0.295689,0.462107,0.872344,0.956173,0.220309,0.262923,0.378163,0.255278,0.859294,0.322663,0.749327,0.914512,0.560336,0.11492,0.613595,0.817173,0.0964949,0.54152,0.933551,0.57238,0.553787,0.389929,0.589221,0.368075,0.65551,0.187406,0.589714,0.777272,0.657117,0.116954,0.165213,0.322628,0.783242,0.403554,0.999533,0.509148,0.330871,0.0122461,0.810249,0.242497,0.248086,0.695025,0.219492,0.797038,0.663563,0.982367,0.0625826,0.0334218,0.470769,0.816993,0.568741,0.74481,0.083046,0.733995,0.706585,0.219601,0.256824,0.473608,0.166269,0.726742,0.525782,0.858477,0.345829,0.21233,0.383052,0.484768,0.323191,0.657405,0.821939,0.640717,0.0395843,0.224281,0.285929,0.633817,0.794606,0.813876,0.398611,0.814524,0.965423,0.33921,0.201007,0.161786,0.588313,0.765268,0.847081,0.776098,0.678886,0.780322,0.162249,0.726566,0.0423649,0.110736,0.379011,0.700756,0.917252,0.313042,0.802142,0.159351,0.106548,0.683806,0.551314,0.00640833,0.678551,0.165067,0.83395,0.52651,0.274201,0.228038,0.870457,0.795389,0.668117,0.026544,0.720139,0.699422,0.632015,0.459071,0.255725,0.815424,0.741105,0.17372,0.393632,0.379115,0.493525,0.10202,0.358256,0.565753,0.518883,0.0831047,0.0303717,0.16332,0.432443,0.716824,0.497693,0.0993842,0.472054,0.794734,0.331152,0.296294,0.0977606,0.934271,0.691608,0.701921,0.161018,0.909677,0.112429,0.370465,0.470565,0.215547,0.0217791,0.11832,0.774968,0.0514815,0.636188,0.62005,0.963335,0.348499,0.491012,0.651414,0.176359,0.965415,0.8165,0.141579,0.693599,0.384364,0.459853,0.312537,0.88962,0.874753,0.598472,0.357649,0.0829932,0.396835,0.417166,0.370242,0.523492,0.127787,0.629028,0.525451,0.225335,0.0778394,0.484789,0.48417,0.458219,0.160729,0.0583831,0.794297,0.874405,0.377251,0.847443,0.607619,0.532275,0.107687,0.039279,0.825281,0.401844,0.761092,0.759542,0.598093,0.521536,0.177141,0.138586,0.0850613,0.874357,0.0794482,0.738752,0.453764,0.818484,0.144536,0.0312049,0.624761,0.943122,0.231722,0.20604,0.582117,0.72624,0.20975,0.968847,0.158773,0.645348,0.458402,0.247619,0.358001,0.128998,0.394038,0.95782,0.30316,0.992344,0.54081,0.364972,0.281619,0.133546,0.0757508,0.973797,0.578287,0.72025,0.794361,0.611093,0.407163,0.723396,0.570023,0.40056,0.519838,0.738271,0.201563,0.190494,0.936927,0.738467,0.123651,0.173435,0.307055,0.830745,0.175994,0.116652,0.800061,0.655483,0.3412,0.302445,0.942246,0.949483,0.186518,0.512967,0.214534,0.825836,0.350658,0.890505,0.566496,0.069353,0.571876,0.136584,0.904072,0.027694,0.589425,0.746033,0.842938,0.307658,0.430936,0.00491673,0.284583,0.672247,0.0748481,0.648918,0.430597,0.314143,0.23927,0.757688,0.76276,0.255202,0.624142,0.829713,0.81074,0.254231,0.58073,0.251825,0.352179,0.238614,0.554441,0.484014,0.282977,0.660778,0.0722914,0.623208,0.72957,0.997907,0.186859,0.938539,0.467782,0.325193,0.0833218,0.492075,0.745644,0.538113,0.713339,0.305681,0.642809,0.328429,0.473428,0.0985205,0.435632,0.301886,0.682285,0.962178,0.388591,0.710345,0.937718,0.358831,0.661339,0.942116,0.74189,0.297619,0.5214,0.650304,0.970709,0.800099,0.754554,0.569182,0.733404,0.137278,0.361377,0.437309,0.944959,0.185818,0.746713,0.125023,0.127211,0.231494,0.692741,0.849777,0.0394357,0.340353,0.187328,0.528502,0.345116,0.346262,0.0688922,0.227065,0.284714,0.418015,0.117958,0.049501,0.75261,0.773252,0.712412,0.0616306,0.517053,0.766007,0.891244,0.257542,0.208878,0.398028,0.575358,0.577416,0.936628,0.295344,0.110885,0.640342,0.46755,0.543525,0.969664,0.310442,0.761752,0.356685,0.796905,0.161924,0.0644466,0.155921,0.501321,0.0896658,0.663402,0.285548,0.724785,0.836735,0.902742,0.931373,0.166351,0.167913,0.981595,0.222608,0.642982,0.766292,0.402181,0.277155,0.443138,0.148596,0.856491,0.407625,0.931402,0.0196273,0.98583,0.155134,0.407617,0.855293,0.320394,0.595209,0.89339,0.272225,0.641208,0.319319,0.669106,0.736777,0.979976,0.306295,0.661127,0.704946,0.463517,0.213421,0.612026,0.998856,0.580305,0.506502,0.860153,0.30391,0.352393,0.634317,0.0142242,0.657885,0.139188,0.713633,0.109365,0.212827,0.360449,0.359081,0.151557,0.235755,0.809618,0.705021,0.578681,0.519105,0.285404,0.586989,0.00937635,0.026166,0.950663,0.749631,0.328477,0.484748,0.945384,0.986648,0.605016,0.831377,0.875542,0.976082,0.963269,0.163178,0.0630355,0.443734,0.24518,0.983415,0.659743,0.603586,0.675612,0.891166,0.942927,0.944686,0.574982,0.0281302,0.243649,0.336946,0.169095,0.391319,0.222908,0.0420291,0.147687,0.709052,0.997716,0.927161,0.155833,0.837735,0.593887,0.275887,|0.926524,0.096468,0.00195217,0.734204,0.431633,0.127207,0.983107,0.302737,0.0398274,0.735658,0.192079,0.309632,0.745214,0.766632,0.238164,0.0153378,0.0139787,0.563326,0.317076,0.0555879,0.234482,0.0488613,0.105152,0.870509,0.664932,0.926162,0.830394,0.530603,0.0506664,0.966645,0.118928,0.0255916,0.0507411,0.328829,0.43901,0.905237,0.21752,0.950921,0.990931,0.329002,0.837535,0.302327,0.882682,0.846639,0.444957,0.932349,0.0950289,0.842097,0.267152,0.848872,0.369867,0.693398,0.630684,0.469395,0.435577,0.557137,0.0846299,0.854308,0.806507,0.113283,0.813617,0.332304,0.711975,0.709959,0.0015462,0.611523,0.067792,0.267286,0.616893,0.844387,0.130471,0.879691,0.454808,0.944019,0.989258,0.669579,0.134149,0.5672,0.788398,0.476056,0.729187,0.457227,0.0088042,0.468705,0.516059,0.158656,0.628497,0.790913,0.635579,0.510356,0.723691,0.529152,0.358015,0.987422,0.303923,0.986321,0.0467444,0.717366,0.740736,0.548108,0.162151,0.340997,0.297599,0.320357,0.106737,0.402606,0.730871,0.239396,0.59727,0.959219,0.852467,0.857288,0.0192128,0.798326,0.454693,0.571093,0.914407,0.802452,0.411894,0.370425,0.669177,0.382875,0.65754,0.817075,0.077086,0.0764576,0.836416,0.21151,0.778985,0.450919,0.478001,0.803045,0.143592,0.0353275,0.420532,0.859852,0.405365,0.475864,0.739234,0.634748,0.753813,0.570393,0.637846,0.921107,0.487912,0.311519,0.482809,0.667175,0.399178,0.416677,0.415572,0.83057,0.219086,0.810879,0.80247,0.632445,0.850969,0.0387697,0.913468,0.540805,0.893231,0.477898,0.405366,0.429441,0.503223,0.087791,0.733142,0.436969,0.365158,0.311199,0.450404,0.358749,0.471202,0.6771,0.205011,0.867942,0.616731,0.849523,0.821636,0.482027,0.0100188,0.463009,0.733881,0.347105,0.6673,0.712544,0.754526,0.881177,0.915127,0.87236,0.602505,0.151347,0.501131,0.105705,0.875517,0.153686,0.239631,0.237705,0.958691,0.239775,0.809433,0.721712,0.457529,0.521429,0.131276,0.18635,0.580592,0.750383,0.260125,0.467615,0.742528,0.128263,0.980901,0.0913864,0.558455,0.883038,0.747244,0.0526665,0.95799,0.374938,0.451193,0.0428094,0.2279,0.113395,0.290881,0.547939,0.494426,0.0110798,0.873801,0.411448,0.4038,0.669617,0.496084,0.0387436,0.806683,0.0607469,0.465018,0.0593355,0.334806,0.313277,0.980158,0.0443732,0.574707,0.627685,0.435669,0.369749,0.763128,0.997191,0.886286,0.284697,0.306267,0.232194,0.713712,0.749806,0.472228,0.627997,0.454519,0.645781,0.132549,0.325506,0.413623,0.285108,0.469642,0.909634,0.338107,0.944927,0.414388,0.441849,0.147119,0.278076,0.502656,0.49492,0.0974541,0.454404,0.965794,0.756589,0.608641,0.335608,0.331517,0.324445,0.0693153,0.74753,0.569572,0.321487,0.806736,0.690271,0.645601,0.562733,0.682737,0.541709,0.396421,0.298017,0.63769,0.920397,0.272992,0.0848706,0.851198,0.175226,0.649304,0.989055,0.663622,0.0976894,0.896041,0.933438,0.244092,0.0762833,0.555478,0.912019,0.00940669,0.57532,0.382057,0.519296,0.489905,0.769718,0.802875,0.873592,0.138533,0.229114,0.70181,0.668863,0.508331,0.824101,0.818898,0.909234,0.732699,0.828824,0.787666,0.611115,0.77861,0.735347,0.618204,0.568568,0.740957,0.518737,0.106775,0.807065,0.487154,0.857321,0.0548105,0.345991,0.478137,0.853761,0.326544,0.558747,0.82354,0.315603,0.107023,0.768075,0.624182,0.511942,0.928815,0.984405,0.672867,0.269685,0.85995,0.52615,0.426855,0.248051,0.704401,0.31345,0.684537,0.334788,0.460151,0.831867,0.0373656,0.865233,0.943599,0.67066,0.77892,0.717252,0.995131,0.0893761,0.543882,0.163743,0.345387,0.236354,0.873367,0.297532,0.0946622,0.472557,0.229235,0.627509,0.998861,0.905107,0.759457,0.680235,0.586553,0.704559,0.101568,0.557468,0.729373,0.47122,0.222106,0.101075,0.0222592,0.783296,0.727361,0.481245,0.334096,0.0907681,0.827621,0.238583,0.26393,0.172327,0.799074,0.138844,0.141925,0.388718,0.542354,0.65825,0.92322,0.262686,0.540766,0.971386,0.804625,0.346532,0.289227,0.928214,0.966516,0.917286,0.329116,0.650133,0.963621,0.190902,0.797068,0.879786,0.563908,0.88346,0.720178,0.628403,0.293608,0.321344,0.30561,0.812147,0.77273,0.608344,0.648501,0.419247,0.211615,0.764883,0.931767,0.670363,0.710159,0.393537,0.710664,0.764502,0.363907,0.0347814,0.424247,0.733315,0.279292,0.24009,0.425201,0.0635098,0.362651,0.283222,0.95179,0.13479,0.921649,0.418122,0.875661,0.019406,0.841246,0.715991,0.90636,0.155984,0.374145,0.945404,0.821952,0.754206,0.903517,0.611158,0.423803,0.546845,0.105174,0.611892,0.512955,0.14836,0.139006,0.358136,0.215657,0.185053,0.539744,0.151412,0.580418,0.480555,0.156708,0.562383,0.644972,0.664892,0.537651,0.0527044,0.0916939,0.223423,0.956445,0.929353,0.524696,0.587436,0.673454,0.232726,0.32337,0.777087,0.793948,0.965737,0.412859,0.30366,0.0112212,0.0732781,0.635137,0.41626,0.350275,0.616682,0.107638,0.999877,0.530346,0.429812,0.33248,0.167875,0.380087,0.0456253,0.694385,0.0132373,0.823271,0.404965,0.60429,0.14431,0.821179,0.431754,0.692682,0.205906,0.446859,0.0448076,0.458399,0.560161,0.441627,0.354473,0.0266302,0.395751,0.137321,0.642116,0.123674,0.910566,0.57127,0.0506112,0.826778,0.871475,0.867605,0.0573251,0.624155,0.218157,0.838916,0.267011,0.766092,0.502385,0.769177,0.150477,0.416888,0.0825012,0.0615327,0.946654,0.457758,0.649124,0.252748,0.0467145,0.126867,0.346519,0.96546,0.201846,0.406171,0.298662,0.794313,0.515917,0.754163,0.488545,0.293611,0.725038,0.351484,0.209126,0.383595,0.879061,0.155946,0.387083,0.509262,0.0546681,0.343695,0.555325,0.272599,0.485903,0.460421,0.405095,0.23061,0.728538,0.241821,0.650885,0.95583,0.102914,0.755305,0.392379,0.359906,0.578264,0.243904,0.910159,0.0375933,0.828925,0.869451,0.732915,0.169007,0.793025,0.312799,0.0683163,0.966944,0.504647,0.229233,0.882725,0.221265,0.169426,0.0913855,0.877418,0.848966,0.969026,0.949841,0.78642,0.541473,0.118719,0.694438,0.451979,0.805542,0.560095,0.656254,0.748181,0.822751,0.576664,0.958781,0.599982,0.796923,0.35844,0.635123,0.644482,0.110877,0.490522,0.606431,0.123416,0.259286,0.452242,0.144928,0.0193807,0.609812,0.586196,0.0628877,0.0724266,0.479163,0.140261,0.632416,0.935169,0.581854,0.668281,0.470549,0.645363,0.0610142,0.406024,0.496539,0.986238,0.924609,0.470775,0.277817,0.629633,0.790622,0.780849,0.881649,0.888049,0.455564,0.114913,0.759444,0.415511,0.473585,0.191282,0.0343004,0.855139,0.411142,0.109563,0.0907849,0.930869,0.0923759,0.249105,0.132065,0.761904,0.466591,0.978887,0.926205,0.271089,0.55505,0.495136,0.864477,0.921457,0.163688,0.796351,0.00237954,0.160371,0.570273,0.504817,0.768767,0.265109,0.19524,0.546396,0.869502,0.414738,0.242614,0.745217,0.849846,0.0938245,0.446885,0.842682,0.792784,0.772082,0.363594,0.743317,0.777962,0.647684,0.191112,0.325182,0.0870863,0.447767,0.521598,0.302909,0.230694,0.99187,0.490911,0.179542,0.514255,0.564405,0.444615,0.992878,0.733321,0.132712,0.101711,0.940138,0.882828,0.455551,0.910523,0.348346,0.342669,0.741436,0.89121,0.295354,0.465608,0.0960163,0.695422,0.512926,0.570562,0.485003,0.862879,0.970537,0.803038,0.469491,0.817368,0.570754,0.430664,0.442057,0.559075,0.215042,0.108603,0.175887,0.19164,0.565454,0.819336,0.0744292,0.558313,0.342154,0.123389,0.158273,0.518739,0.250655,0.51583,0.930264,0.835824,0.00117421,0.890393,0.829177,0.218945,0.0788834,0.929338,0.327037,0.468607,0.349417,0.542672,0.26767,0.793078,0.478309,0.665056,0.647454,0.63098,0.271285,0.554001,0.177721,0.673094,0.562219,0.369051,0.170954,0.602564,0.864729,0.417605,0.378748,0.26586,0.727364,0.707304,0.334479,0.335914,0.900668,0.351719,0.272661,0.917568,0.285616,0.775387,0.454494,0.0593801,0.34451,0.434023,0.334072,0.701474,0.450548,0.0762064,0.328682,0.696823,0.752073,0.868223,0.348402,0.456239,0.856523,0.817396,0.622713,0.187012,0.830856,0.778674,0.637712,0.277458,0.949237,0.751697,0.649348,0.0876936,0.439334,0.743219,0.279363,0.550162,0.0729613,0.488107,0.702978,0.274933,0.282295,0.821779,0.858232,0.559785,0.540805,0.223468,0.535466,0.890576,0.747521,0.478522,0.958285,0.800162,0.719544,0.254258,0.0977284,0.972016,0.970383,0.543115,0.302396,0.753216,0.895138,0.023208,0.375763,0.0615671,0.338434,0.00908184,0.0311372,0.973624,0.0764558,0.558889,0.375155,0.916662,0.75587,0.0527961,0.23605,0.0900738,0.373958,0.081497,0.64023,0.592378,0.894746,0.95307,0.180956,0.05949,0.493388,0.412844,0.823781,0.559607,0.160899,0.519252,0.315664,0.502511,0.55368,0.169902,0.337208,0.812079,0.727092,0.0502567,0.716149,0.753389,0.726369,0.210267,0.0088833,0.441464,0.117515,0.38476,0.912842,0.1265,0.324498,0.0193463,0.903055,0.342169,0.151634,0.833293,0.735383,0.673354,0.020324,0.967602,0.262262,0.0169942,0.766338,0.28969,0.88232,0.920994,0.672577,0.329014,0.242449,0.982953,0.147065,0.29652,0.772019,0.0848176,0.178998,0.603228,0.857916,0.307802,0.132031,0.578795,0.423296,0.0783447,0.200066,0.999041,0.133249,0.228897,0.923027,0.00409377,0.15183,0.516418,0.256552,0.925407,0.603016,0.84689,0.571557,0.671784,0.0063445,0.0281001,0.905532,0.447757,0.125091,0.915515,0.649809,0.741946,0.251842,0.862645,0.483746,0.739776,0.59255,0.351036,0.333104,0.0746211,0.0453749,0.601341,0.201093,0.481764,0.456523,0.394406,0.605886,0.00401014,0.795649,0.912309,0.72238,0.196223,0.459744,0.510219,0.510267,0.998124,0.825075,0.506755,0.896373,0.777106,0.995352,0.160365,0.0383639,|0.0578168,0.344098,0.77351,0.481485,0.298764,0.666174,0.318432,0.729543,0.164507,0.487262,0.0605535,0.703085,0.399505,0.570965,0.52824,0.413658,0.0431395,0.101325,0.0589076,0.194405,0.842314,0.750401,0.277445,0.728688,0.553392,0.810325,0.646065,0.485077,0.3003,0.915272,0.679681,0.53582,0.0979777,0.163107,0.498554,0.932994,0.882906,0.823257,0.99354,0.115338,0.294252,0.325427,0.941656,0.854972,0.394292,0.0835703,0.470072,0.828896,0.192553,0.411137,0.0310981,0.00342429,0.699262,0.755693,0.764153,0.31996,0.963493,0.150071,0.513921,0.588283,0.00306761,0.120063,0.369945,0.562469,0.479613,0.956864,0.221857,0.604334,0.494975,0.41348,0.153411,0.270569,0.0822513,0.0831342,0.88351,0.0976235,0.786188,0.112585,0.55707,0.605764,0.986062,0.370942,0.817453,0.415478,0.536825,0.199208,0.719499,0.498654,0.211374,0.779019,0.925305,0.600536,0.289197,0.425988,0.00857276,0.330875,0.54403,0.242797,0.59967,0.675759,0.760079,0.738069,0.732574,0.46742,0.765778,0.366803,0.117485,0.165103,0.286725,0.6069,0.413342,0.436765,0.105987,0.0592732,0.668113,0.343085,0.921049,0.952011,0.232899,0.0613385,0.889232,0.306667,0.673135,0.208258,0.667049,0.8436,0.776016,0.956834,0.951226,0.114195,0.689012,0.972156,0.756033,0.903799,0.428012,0.692434,0.531757,0.510883,0.537147,0.459112,0.657483,0.792446,0.947627,0.621121,0.891412,0.365635,0.570461,0.57756,0.217244,0.251652,0.753011,0.356584,0.562094,0.253142,0.0246897,0.922183,0.747995,0.690772,0.670715,0.635401,0.774916,0.739653,0.3579,0.660229,0.743051,0.177434,0.268354,0.636512,0.0604858,0.0114436,0.295733,0.467573,0.409983,0.115899,0.904794,0.0534875,0.691061,0.998233,0.188146,0.379427,0.918963,0.980489,0.0563675,0.395611,0.0123722,0.862731,0.883874,0.516136,0.473227,0.2348,0.244196,0.0935331,0.669067,0.428916,0.712398,0.689475,0.362042,0.270225,0.0274664,0.371846,0.203114,0.023885,0.881439,0.126708,0.170315,0.434396,0.606884,0.676778,0.684802,0.586036,0.102972,0.857596,0.214089,0.632754,0.76773,0.181675,0.366904,0.824117,0.814871,0.802866,0.935028,0.364175,0.857827,0.671538,0.573953,0.378406,0.08822,0.692496,0.591927,0.854684,0.984344,0.43511,0.826712,0.956572,0.508514,0.889645,0.125218,0.19426,0.719075,0.000250995,0.382769,0.00873023,0.48763,0.727947,0.534132,0.165412,0.431299,0.648757,0.470066,0.912632,0.624836,0.770105,0.43617,0.987268,0.692601,0.976201,0.0423461,0.82988,0.658144,0.736575,0.404022,0.597478,0.312844,0.422752,0.445689,0.618354,0.405433,0.187201,0.248329,0.161635,0.0367853,0.845953,0.029102,0.155892,0.830498,0.655941,0.683077,0.477937,0.148831,0.0721794,0.567316,0.0687003,0.0737004,0.968986,0.786925,0.737368,0.329303,0.488076,0.245244,0.447757,0.719366,0.836053,0.755889,0.797203,0.111081,0.306407,0.17197,0.891487,0.282107,0.423747,0.132434,0.941898,0.513688,0.174297,0.332035,0.633858,0.975124,0.090165,0.720226,0.6009,0.0921733,0.36991,0.744938,0.731234,0.531812,0.428321,0.971085,0.362832,0.000889361,0.447339,0.277453,0.268496,0.532766,0.797935,0.679055,0.244548,0.313102,0.304888,0.279448,0.982121,0.878565,0.22382,0.213483,0.0672276,0.0654538,0.274887,0.246202,0.524355,0.739603,0.271966,0.322791,0.149714,0.369478,0.375751,0.965015,0.484287,0.194145,0.396889,0.977578,0.141747,0.488892,0.629575,0.459302,0.573494,0.27064,0.421219,0.269885,0.674708,0.653367,0.820076,0.615059,0.992041,0.50822,0.87144,0.45694,0.755624,0.524534,0.0941106,0.082991,0.621638,0.225668,0.19819,0.428416,0.32534,0.870722,0.183571,0.586494,0.410254,0.925581,0.599722,0.996651,0.0918893,0.809892,0.79401,0.470077,0.478703,0.627536,0.497021,0.0685585,0.0885876,0.736699,0.0736316,0.455522,0.509819,0.197441,0.627646,0.248629,0.234525,0.0702879,0.0154358,0.906591,0.881543,0.291216,0.78256,0.637133,0.891876,0.0394043,0.136567,0.615748,0.744328,0.405928,0.262635,0.33218,0.129475,0.0601362,0.790377,0.834694,0.804665,0.577048,0.200236,0.31475,0.0703529,0.203512,0.220371,0.112762,0.785559,0.752854,0.144364,0.505334,0.326346,0.0411982,0.371437,0.993586,0.995688,0.676072,0.765205,0.584149,0.441964,0.500519,0.263478,0.888475,0.693005,0.291229,0.951989,0.268318,0.106235,0.495026,0.397897,0.120225,0.0866327,0.346217,0.338711,0.249197,0.201108,0.620588,0.99547,0.603635,0.595754,0.346556,0.800499,0.648891,0.422724,0.597758,0.128838,0.966315,0.443651,0.87758,0.610024,0.289326,0.0800846,0.707717,0.629259,0.965988,0.500078,0.92291,0.779507,0.992808,0.192129,0.177647,0.765017,0.902275,0.864482,0.223807,0.998521,0.498028,0.767537,0.773233,0.665267,0.135596,0.882557,0.789585,0.566688,0.109576,0.105694,0.706803,0.101596,0.62593,0.978749,0.280553,0.984607,0.535076,0.919847,0.453926,0.196129,0.00743753,0.535041,0.61767,0.58923,0.973644,0.364851,0.179783,0.138576,0.480791,0.110864,0.650822,0.319662,0.0242234,0.840611,0.948166,0.624513,0.11174,0.00867355,0.577187,0.796472,0.264593,0.708774,0.033756,0.398182,0.610263,0.115347,0.201263,0.0819244,0.517405,0.884604,0.456534,0.0955071,0.727506,0.950671,0.984547,0.125061,0.577369,0.872864,0.685895,0.505127,0.767425,0.144248,0.488188,0.287256,0.835359,0.770705,0.167853,0.682538,0.241181,0.814903,0.402932,0.37984,0.462811,0.102043,0.696078,0.644944,0.483413,0.631134,0.932979,0.0913533,0.576496,0.877553,0.953978,0.206513,0.439837,0.4481,0.23289,0.588291,0.745936,0.242408,0.724901,0.125387,0.626417,0.393052,0.958379,0.794297,0.339132,0.52745,0.159829,0.858545,0.43755,0.649181,0.958467,0.0811049,0.174144,0.249695,0.970082,0.545262,0.0687391,0.917527,0.977387,0.185513,0.0440335,0.0031907,0.474628,0.785995,0.0751585,0.790215,0.153655,0.59703,0.564756,0.724541,0.240275,0.0940337,0.0756326,0.942888,0.90789,0.582914,0.737146,0.29111,0.718318,0.886006,0.750144,0.466163,0.315087,0.729745,0.717259,0.918771,0.906362,0.345474,0.945042,0.394805,0.993067,0.749527,0.932435,0.372539,0.536382,0.891095,0.169334,0.54371,0.441567,0.822103,0.608294,0.705711,0.442677,0.00445133,0.997826,0.119175,0.472304,0.220338,0.445251,0.974665,0.838551,0.807228,0.237826,0.83843,0.740251,0.453888,0.738481,0.892692,0.0689942,0.823296,0.0876733,0.396044,0.0842453,0.630849,0.591823,0.959236,0.18582,0.768796,0.435943,0.484958,0.0218949,0.813541,0.22841,0.223819,0.995488,0.142181,0.796796,0.891272,0.0844802,0.594037,0.793617,0.73725,0.830919,0.115901,0.103516,0.30733,0.565783,0.847181,0.882615,0.155357,0.587099,0.801265,0.561508,0.649601,0.00763285,0.0837138,0.722123,0.363384,0.989574,0.681404,0.534567,0.0241257,0.133397,0.6045,0.238236,0.137141,0.38107,0.798232,0.371226,0.408746,0.360055,0.186281,0.23435,0.446726,0.947604,0.221192,0.350847,0.723661,0.770092,0.162466,0.9735,0.653615,0.343966,0.778975,0.775405,0.957797,0.874795,0.80544,0.580132,0.515341,0.0632708,0.0399331,0.983757,0.531869,0.166162,0.321042,0.323644,0.154969,0.629216,0.385607,0.912804,0.438667,0.400171,0.710616,0.515262,0.646397,0.639515,0.126755,0.531364,0.444593,0.659935,0.362736,0.370111,0.364048,0.0151267,0.452885,0.958072,0.374332,0.801092,0.58284,0.826249,0.855329,0.974214,0.264078,0.349897,0.00369519,0.363529,0.160606,0.852218,0.0216997,0.177319,0.742192,0.18881,0.991212,0.574595,0.909531,0.577844,0.981219,0.38891,0.522761,0.574322,0.0325384,0.845626,0.731681,0.711852,0.289362,0.749221,0.192541,0.19949,0.205325,0.541606,0.024513,0.658504,0.731993,0.746558,0.8364,0.366825,0.0394543,0.520081,0.554738,0.598749,0.512693,0.434043,0.332934,0.961047,0.599562,0.881237,0.315226,0.488018,0.882787,0.686812,0.731147,0.0112144,0.0752653,0.721648,0.0863193,0.077957,0.409284,0.00709343,0.0905952,0.277291,0.171068,0.745653,0.721451,0.969337,0.171551,0.725945,0.67684,0.812138,0.470037,0.125905,0.901055,0.214435,0.88264,0.856923,0.12112,0.792655,0.258805,0.132334,0.290056,0.461646,0.177586,0.816972,0.872493,0.541655,0.211615,0.698149,0.120517,0.554764,0.830434,0.36878,0.715284,0.867052,0.00223982,0.872905,0.130606,0.161336,0.461999,0.42132,0.871922,0.306808,0.54224,0.451208,0.741889,0.377297,0.0427936,0.211414,0.434202,0.701017,0.277815,0.241225,0.386175,0.523728,0.612771,0.452254,0.305641,0.95722,0.977372,0.239789,0.70903,0.34088,0.434238,0.648362,0.295472,0.945018,0.440733,0.0243222,0.620286,0.30074,0.202882,0.974213,0.643681,0.310822,0.756371,0.870505,0.108018,0.17752,0.0129551,0.889265,0.874732,0.573198,0.894465,0.886201,0.443002,0.692197,0.907509,0.819437,0.471832,0.968942,0.218714,0.724995,0.186223,0.954476,0.69283,0.617411,0.497237,0.125151,0.665973,0.596057,0.926971,0.229035,0.540397,0.126674,0.675918,0.160893,0.504104,0.777516,0.0878447,0.527197,0.920203,0.738555,0.107588,0.896552,0.589945,0.0854686,0.517101,0.843043,0.758989,0.630389,0.213036,0.105869,0.603719,0.7698,0.655615,0.820824,0.426466,0.924289,0.58055,0.370986,0.308558,0.602758,0.417245,0.893485,0.152065,0.805331,0.799628,0.626823,0.920978,0.780548,0.972753,0.245776,0.714349,0.562703,0.629443,0.89788,0.146438,0.123803,0.492606,0.281819,0.495912,0.535711,0.536359,0.395203,0.371752,0.35675,0.271937,0.457175,0.563553,0.542252,0.843107,0.511272,0.38523,0.249361,0.106325,0.703297,0.575074,0.721743,0.0213934,0.87997,0.704298,0.0825221,0.949822,0.155809,0.813513,0.546406,0.622062,0.799297,0.134202,0.0214849,0.370614,0.880893,0.619738,0.612015,0.48191,|0.496854,0.207054,0.229396,0.691994,0.206137,0.518607,0.970766,0.494823,0.0718276,0.562577,0.061343,0.200237,0.982587,0.510734,0.715231,0.623544,0.00137597,0.907165,0.163885,0.841312,0.265736,0.28674,0.618822,0.460849,0.835894,0.446411,0.472614,0.630178,0.292091,0.805864,0.052994,0.861968,0.570575,0.745146,0.637478,0.402759,0.639334,0.972221,0.500276,0.623627,0.705201,0.858938,0.163541,0.0906588,0.386502,0.335105,0.154365,0.146016,0.409342,0.563754,0.72921,0.597513,0.766752,0.270021,0.550624,0.507788,0.750758,0.622139,0.304506,0.943904,0.297355,0.864762,0.422925,0.781214,0.142786,0.532793,0.710781,0.107402,0.310367,0.773269,0.888624,0.075772,0.822779,0.319762,0.708458,0.305512,0.54388,0.91215,0.298728,0.0217007,0.435503,0.587367,0.929707,0.178249,0.454253,0.357281,0.170667,0.88889,0.0250443,0.786412,0.324551,0.404476,0.0241818,0.414738,0.864402,0.493707,0.374079,0.659658,0.482352,0.625962,0.295916,0.658942,0.909202,0.86435,0.25166,0.727847,0.753027,0.306764,0.296393,0.297264,0.214356,0.636675,0.419023,0.342674,0.418509,0.0152205,0.876598,0.692497,0.17928,0.0409463,0.851338,0.909683,0.730412,0.683103,0.183793,0.403506,0.481468,0.706913,0.413714,0.780331,0.728853,0.085084,0.716871,0.577989,0.657791,0.376981,0.858462,0.780243,0.791315,0.99948,0.144076,0.805651,0.51656,0.435789,0.308955,0.693144,0.838313,0.919754,0.153029,0.415253,0.371262,0.00844252,0.641317,0.695196,0.682238,0.753271,0.90281,0.947753,0.666937,0.461325,0.312711,0.320884,0.577135,0.104997,0.969335,0.1902,0.412783,0.255023,0.87007,0.446167,0.516946,0.745938,0.575347,0.393459,0.538454,0.197371,0.795022,0.897456,0.184166,0.151001,0.518151,0.776722,0.153168,0.562954,0.0691015,0.506617,0.734363,0.936533,0.899597,0.681731,0.415324,0.558843,0.979203,0.0610912,0.450342,0.946836,0.0723389,0.0540175,0.337786,0.455827,0.867909,0.826234,0.986452,0.37557,0.946874,0.510273,0.525811,0.405356,0.749848,0.0579874,0.361425,0.330495,0.116089,0.263133,0.966052,0.117903,0.907327,0.958703,0.437555,0.659027,0.343863,0.723284,0.848703,0.814939,0.677122,0.420639,0.268524,0.826445,0.8942,0.335221,0.65752,0.835326,0.784706,0.131848,0.495828,0.30142,0.740168,0.726762,0.598832,0.0182759,0.523705,0.184833,0.700847,0.394161,0.466398,0.938156,0.405331,0.136035,0.938966,0.0664091,0.493319,0.632965,0.628928,0.573052,0.488014,0.371684,0.728433,0.362461,0.662508,0.75912,0.466592,0.352817,0.1789,0.548706,0.12778,0.59127,0.542075,0.56695,0.649437,0.506571,0.81645,0.325425,0.359939,0.0990776,0.526682,0.453239,0.886312,0.0649271,0.54415,0.994454,0.458719,0.187914,0.816355,0.286576,0.0241649,0.866272,0.341747,0.52133,0.229678,0.625095,0.380764,0.460138,0.84073,0.478541,0.185903,0.525332,0.71653,0.804715,0.801975,0.25664,0.137508,0.185888,0.336939,0.794958,0.414457,0.909584,0.18766,0.62735,0.108337,0.0364017,0.218456,0.104988,0.145531,0.95485,0.288869,0.395263,0.939885,0.607328,0.589835,0.434852,0.921088,0.268366,0.864902,0.971927,0.747553,0.573826,0.419425,0.465434,0.298067,0.771119,0.839868,0.391247,0.900593,0.765164,0.0124334,0.479853,0.818506,0.86253,0.0202399,0.901428,0.417074,0.46917,0.710215,0.0625249,0.543734,0.116953,0.591757,0.377262,0.102981,0.82117,0.113629,0.149562,0.70694,0.0657127,0.22392,0.831605,0.43908,0.210835,0.0837643,0.923206,0.393119,0.214802,0.727219,0.941172,0.497111,0.479154,0.306775,0.0713354,0.300878,0.354347,0.28859,0.443159,0.571186,0.275286,0.646467,0.00854552,0.035794,0.311377,0.478894,0.625262,0.852313,0.606069,0.238097,0.00899523,0.450953,0.486921,0.313154,0.735944,0.25788,0.463947,0.822827,0.79607,0.714234,0.992677,0.907469,0.98329,0.598212,0.830444,0.978443,0.661106,0.0593843,0.908218,0.718064,0.643053,0.106998,0.123727,0.733904,0.0982003,0.762541,0.0198548,0.124543,0.446618,0.0895813,0.24018,0.681276,0.725591,0.985108,0.160061,0.409118,0.587797,0.904271,0.430153,0.913837,0.76996,0.880768,0.668285,0.972035,0.776045,0.541942,0.719297,0.306529,0.351205,0.967985,0.0654452,0.513644,0.918592,0.789701,0.419638,0.5639,0.976646,0.863216,0.377417,0.676677,0.721557,0.711965,0.572556,0.315395,0.495983,0.565587,0.210702,0.266686,0.239545,0.18291,0.276449,0.899001,0.263373,0.604583,0.801197,0.047679,0.861746,0.748069,0.565248,0.0960334,0.00756377,0.096069,0.355052,0.943922,0.507959,0.889187,0.923055,0.305098,0.245168,0.405726,0.619375,0.401207,0.816448,0.821421,0.880454,0.648111,0.741674,0.572305,0.348342,0.868115,0.528384,0.530524,0.245996,0.267041,0.680625,0.574162,0.953907,0.39099,0.292398,0.712932,0.650408,0.986451,0.210791,0.482613,0.725418,0.688167,0.229223,0.657067,0.253943,0.576141,0.489154,0.831714,0.962876,0.964972,0.50564,0.138346,0.595349,0.510578,0.877844,0.500663,0.255002,0.311424,0.293133,0.589152,0.895744,0.900152,0.761475,0.23014,0.692172,0.708857,0.164573,0.540183,0.994097,0.35125,0.452219,0.677883,0.743128,0.777409,0.97447,0.742387,0.538099,0.928185,0.489135,0.339839,0.230252,0.222052,0.103259,0.820179,0.726006,0.507108,0.929026,0.205335,0.9449,0.160002,0.735705,0.371844,0.457216,0.687635,0.57174,0.848505,0.860899,0.47082,0.0655002,0.595547,0.0553135,0.762314,0.0726714,0.84745,0.286117,0.847465,0.00121635,0.178715,0.911814,0.0277942,0.463211,0.186858,0.602234,0.40023,0.569579,0.758009,0.123207,0.356213,0.634837,0.954931,0.793174,0.887523,0.428609,0.330304,0.537781,0.593397,0.558965,0.199134,0.0266952,0.746248,0.466165,0.887012,0.489454,0.234117,0.509761,0.656017,0.32558,0.75906,0.951356,0.307738,0.664647,0.04805,0.319111,0.935074,0.45127,0.0829961,0.133687,0.834789,0.572754,0.107252,0.0581867,0.261116,0.368669,0.278153,0.278065,0.807803,0.24904,0.500384,0.724304,0.85619,0.501377,0.702922,0.326683,0.970137,0.505216,0.29158,0.213302,0.338275,0.924521,0.617946,0.569986,0.147549,0.0234193,0.0965786,0.300076,0.623406,0.989105,0.612577,0.945601,0.531175,0.921895,0.996301,0.532665,0.718927,0.852337,0.791847,0.678552,0.88005,0.804509,0.808739,0.278728,0.0965325,0.910737,0.278404,0.747482,0.139628,0.0199822,0.237703,0.432487,0.172769,0.790162,0.255327,0.113438,0.44148,0.652934,0.189028,0.718958,0.90685,0.156178,0.0968584,0.1477,0.994525,0.701324,0.443687,0.261735,0.0509781,0.483631,0.587391,0.0238388,0.881518,0.0427779,0.00845134,0.662227,0.149414,0.00773174,0.315455,0.428808,0.55113,0.411576,0.0353182,0.638326,0.495808,0.444773,0.668568,0.962839,0.0947876,0.062393,0.704872,0.317132,0.628734,0.0134665,0.464339,0.402783,0.712824,0.799667,0.208246,0.598563,0.0198914,0.776621,0.304986,0.30318,0.065249,0.571876,0.798608,0.227883,0.294984,0.88997,0.55977,0.193501,0.503879,0.806709,0.931943,0.408283,0.90581,0.0902525,0.908662,0.740864,0.931344,0.351298,0.785141,0.345788,0.254044,0.569004,0.437787,0.697793,0.890246,0.729663,0.410292,0.0217327,0.590023,0.0190955,0.326333,0.748999,0.499308,0.775917,0.700248,0.211205,0.720536,0.134008,0.698071,0.865809,0.561535,0.61083,0.570253,0.583654,0.798543,0.392844,0.889858,0.0206442,0.836282,0.698911,0.119473,0.854273,0.199899,0.580696,0.295254,0.53046,0.63135,0.185505,0.466282,0.148844,0.35363,0.369384,0.0589988,0.408659,0.0217814,0.167368,0.377867,0.200783,0.466252,0.0292279,0.351009,0.222692,0.0671123,0.607875,0.99896,0.0154538,0.316073,0.961486,0.0418546,0.710145,0.0555128,0.790598,0.163115,0.692938,0.0571365,0.886883,0.142419,0.511499,0.469314,0.930673,0.701766,0.223611,0.70811,0.133616,0.14524,0.782231,0.946812,0.243716,0.898963,0.197818,0.312073,0.211258,0.798365,0.339135,0.291762,0.483305,0.107284,0.888653,0.163757,0.628472,0.955304,0.41132,0.323444,0.170914,0.943993,0.77941,0.708879,0.843482,0.228297,0.546902,0.983799,0.0689335,0.0581336,0.76129,0.00837946,0.79607,0.368927,0.666618,0.939278,0.547979,0.150958,0.202269,0.10548,0.956407,0.0140464,0.512824,0.22709,0.301891,0.926726,0.288774,0.722804,0.0868943,0.915079,0.88191,0.269138,0.696923,0.478503,0.503077,0.466067,0.807477,0.945494,0.688111,0.84047,0.907667,0.662671,0.165989,0.846443,0.73028,0.721802,0.465548,0.510679,0.680647,0.159091,0.0932787,0.36634,0.0787098,0.907085,0.266756,0.705711,0.0489699,0.642765,0.622043,0.339407,0.375015,0.316221,0.258576,0.27536,0.77728,0.843297,0.580512,0.67616,0.716302,0.917088,0.213021,0.527803,0.0203606,0.0329137,0.853604,0.573792,0.362885,0.275766,0.652504,0.294183,0.92103,0.645988,0.291261,0.599516,0.948569,0.626243,0.872691,0.248051,0.825933,0.696635,0.182461,0.480365,0.115554,0.997894,0.130362,0.513702,0.369079,0.390819,0.730366,0.353346,0.348785,0.77231,0.412524,0.349763,0.812458,0.373821,0.830249,0.656051,0.31178,0.150749,0.472888,0.965429,0.317134,0.831084,0.0566867,0.386029,0.524312,0.591264,0.440443,0.852848,0.631191,0.604423,0.909528,0.552317,0.209525,0.863197,0.107132,0.428277,0.952224,0.673472,0.195374,0.510422,0.478077,0.473763,0.323806,0.605336,0.161517,0.122098,0.602595,0.462337,0.603476,0.424871,0.838432,0.31276,0.518466,0.12077,0.107118,0.735133,0.744383,0.570624,0.130178,0.770438,0.878267,0.969611,0.177793,0.242696,0.502843,0.982076,0.179351,0.805829,0.523597,0.932911,0.943274,0.597059,0.551168,0.102407,0.592349,0.177191,0.625863,0.93806,0.622799,0.51959,0.464646,0.0275719,0.718273,0.113232,0.413596,0.109022,0.106267,|0.476149,0.149267,0.153219,0.230785,0.366535,0.443112,0.441708,0.540151,0.0896869,0.660931,0.146329,0.752808,0.861068,0.5753,0.597389,0.483864,0.220884,0.142941,0.131548,0.854694,0.64681,0.352873,0.449166,0.766856,0.854894,0.0274218,0.615704,0.86332,0.0878332,0.157744,0.117392,0.241732,0.411882,0.488201,0.686913,0.66612,0.158293,0.435116,0.938956,0.375255,0.623877,0.287696,0.297609,0.734719,0.197892,0.770555,0.446914,0.104609,0.308286,0.289265,0.352051,0.181831,0.702779,0.37963,0.893569,0.138736,0.630353,0.771443,0.806939,0.252785,0.725432,0.00445974,0.74738,0.679692,0.126263,0.226658,0.0589181,0.647471,0.343466,0.21926,0.215528,0.981041,0.135214,0.489843,0.69699,0.364326,0.609242,0.392713,0.997204,0.962904,0.580409,0.984822,0.790177,0.21917,0.506664,0.646105,0.861263,0.870159,0.330042,0.516508,0.221401,0.392126,0.362828,0.652745,0.961337,0.616902,0.447136,0.300341,0.232224,0.798609,0.169072,0.611047,0.346904,0.554368,0.246534,0.833043,0.395826,0.697492,0.481822,0.229564,0.890574,0.761589,0.0661011,0.20517,0.263987,0.736078,0.852747,0.367664,0.941527,0.647051,0.502777,0.364665,0.606016,0.277337,0.784144,0.659884,0.808162,0.418065,0.0585055,0.541058,0.881907,0.667931,0.0444756,0.924927,0.299166,0.0254036,0.66822,0.973077,0.445694,0.190056,0.795373,0.0781724,0.0340136,0.341741,0.510772,0.634335,0.790568,0.652427,0.237834,0.734144,0.620946,0.961746,0.973501,0.873528,0.203043,0.505591,0.709883,0.23753,0.587051,0.923467,0.753143,0.670738,0.208382,0.558059,0.263524,0.0589576,0.0413509,0.445266,0.99235,0.000547588,0.08811,0.258406,0.77873,0.436572,0.0922564,0.69246,0.4878,0.375882,0.451241,0.410008,0.729767,0.320396,0.758023,0.293113,0.479424,0.469516,0.391811,0.150577,0.152809,0.373989,0.338624,0.750638,0.802108,0.0329812,0.0622685,0.922382,0.705058,0.250065,0.0250561,0.13814,0.652723,0.774783,0.68553,0.444457,0.382981,0.083569,0.347507,0.0307517,0.227242,0.728286,0.275043,0.908768,0.290771,0.723784,0.802145,0.528109,0.40441,0.576047,0.712442,0.680746,0.226907,0.370436,0.984602,0.473269,0.204171,0.261713,0.628882,0.956732,0.267014,0.623694,0.955892,0.321155,0.872314,0.601218,0.251258,0.448242,0.316558,0.145509,0.309352,0.265647,0.246627,0.925706,0.00983322,0.778056,0.484272,0.98888,0.889112,0.276982,0.733726,0.466045,0.867359,0.874196,0.113223,0.0200127,0.283009,0.151367,0.458967,0.168888,0.202956,0.013439,0.264041,0.664995,0.222291,0.238032,0.619142,0.220473,0.542503,0.756855,0.0927745,0.899048,0.899468,0.65652,0.42361,0.916354,0.691957,0.68809,0.0391074,0.0420597,0.396804,0.906196,0.962156,0.0296063,0.546804,0.264378,0.702692,0.365596,0.387077,0.743066,0.418047,0.317863,0.782466,0.479697,0.645524,0.0683722,0.72854,0.512676,0.789221,0.923918,0.817587,0.468039,0.955825,0.836242,0.937106,0.663113,0.811677,0.90409,0.611959,0.784147,0.261844,0.718049,0.773809,0.804721,0.764743,0.339076,0.336134,0.965936,0.284675,0.49933,0.520991,0.543651,0.881547,0.130542,0.0819604,0.517075,0.976511,0.0540116,0.791592,0.382298,0.616249,0.356879,0.844225,0.462492,0.166194,0.992424,0.456318,0.875409,0.231218,0.66937,0.314088,0.501756,0.456709,0.338691,0.823825,0.288589,0.384284,0.858973,0.425918,0.929576,0.460347,0.32359,0.280474,0.0789735,0.595373,0.766057,0.97828,0.0152773,0.61432,0.979859,0.847385,0.100214,0.412428,0.938163,0.285209,0.185985,0.914271,0.894435,0.0230213,0.646904,0.317482,0.297653,0.00343406,0.83654,0.264464,0.176429,0.969334,0.441273,0.811869,0.907378,0.703456,0.228424,0.547865,0.889983,0.735258,0.390043,0.90479,0.312602,0.64058,0.877969,0.212814,0.975176,0.660631,0.0877381,0.707353,0.507625,0.569104,0.510295,0.719922,0.51432,0.748328,0.268022,0.552271,0.92167,0.30384,0.948589,0.443975,0.660686,0.603848,0.571599,0.341412,0.18162,0.997367,0.0554071,0.240266,0.572092,0.826286,0.454122,0.647892,0.231813,0.739774,0.97571,0.145838,0.97159,0.680252,0.466517,0.71055,0.0195709,0.107042,0.582972,0.411519,0.786135,0.738817,0.231289,0.19083,0.610519,0.602133,0.596398,0.0838178,0.415259,0.205183,0.857567,0.299051,0.634879,0.0284435,0.171113,0.0715725,0.353039,0.472179,0.241644,0.89775,0.125893,0.312582,0.770854,0.0342568,0.159605,0.346504,0.511814,0.822874,0.32599,0.21776,0.34411,0.0497661,0.722894,0.47246,0.00219929,0.775273,0.497124,0.624661,0.360705,0.249906,0.354252,0.0755872,0.315954,0.865495,0.522513,0.883663,0.10863,0.450286,0.192344,0.354463,0.57623,0.411284,0.120789,0.776396,0.633357,0.721772,0.208358,0.316333,0.0389169,0.196364,0.549993,0.643974,0.319418,0.138592,0.836571,0.284257,0.116028,0.822772,0.379369,0.285562,0.35738,0.827725,0.0794688,0.457643,0.221329,0.82284,0.090793,0.0903154,0.0877562,0.138921,0.283068,0.519902,0.424342,0.264135,0.864478,0.0143828,0.897118,0.0579066,0.0242801,0.661712,0.196425,0.715806,0.0799269,0.405948,0.31072,0.109518,0.413881,0.409214,0.278624,0.954184,0.533599,0.717203,0.480577,0.53622,0.641389,0.481163,0.995337,0.981544,0.173254,0.225153,0.419431,0.810442,0.265096,0.589406,0.369914,0.159598,0.404665,0.154529,0.0956911,0.196285,0.144645,0.151063,0.673564,0.932706,0.564028,0.540557,0.183179,0.266791,0.32759,0.718669,0.319728,0.81077,0.409649,0.748705,0.614172,0.0388007,0.447317,0.256078,0.844301,0.520317,0.953798,0.340658,0.0888221,0.575788,0.214131,0.000589371,0.436441,0.646905,0.494017,0.630436,0.881565,0.375025,0.952307,0.299936,0.0898913,0.633343,0.00837249,0.0175082,0.320896,0.923682,0.289532,0.109617,0.92912,0.358975,0.338314,0.144899,0.582861,0.197659,0.313868,0.685057,0.154383,0.617041,0.563512,0.780066,0.00280178,0.325401,0.354441,0.359969,0.57272,0.173362,0.607927,0.0780172,0.600884,0.483281,0.527391,0.591557,0.296282,0.112394,0.62742,0.159713,0.71065,0.79712,0.427984,0.667904,0.00618976,0.0329487,0.72719,0.864523,0.250484,0.394754,0.250219,0.916819,0.96015,0.865553,0.717034,0.162921,0.719978,0.163181,0.772707,0.239962,0.165159,0.875216,0.989571,0.829662,0.851725,0.820657,0.0842211,0.424852,0.400425,0.350249,0.864765,0.593096,0.541701,0.611549,0.662715,0.0288749,0.205526,0.417163,0.309847,0.0493389,0.763336,0.227761,0.787759,0.444241,0.20223,0.498827,0.431926,0.00906587,0.436672,0.991117,0.215802,0.634232,0.789345,0.00669044,0.576587,0.785729,0.856169,0.373877,0.702976,0.347031,0.879885,0.528746,0.840887,0.80089,0.0820607,0.0284052,0.508854,0.723134,0.485036,0.176468,0.339906,0.463578,0.78433,0.806308,0.0613348,0.892102,0.700098,0.943893,0.851533,0.351258,0.260008,0.0259133,0.531279,0.477548,0.603917,0.00478762,0.207361,0.811246,0.464484,0.734463,0.822553,0.321071,0.648194,0.922627,0.502803,0.572396,0.884401,0.775725,0.868971,0.478745,0.993668,0.752998,0.761606,0.415596,0.612179,0.460364,0.350084,0.995321,0.0971854,0.605032,0.0808509,0.425656,0.127462,0.300928,0.96656,0.661862,0.23034,0.781794,0.742517,0.650841,0.0114844,0.688076,0.178983,0.172445,0.362788,0.573062,0.498508,0.0401955,0.733417,0.688349,0.218882,0.498291,0.578146,0.313231,0.402405,0.123114,0.681177,0.00783002,0.0729015,0.108038,0.766995,0.822804,0.260543,0.96519,0.231063,0.219931,0.261204,0.614528,0.105682,0.850838,0.345228,0.160171,0.392056,0.759097,0.601229,0.831654,0.918439,0.594428,0.6385,0.815633,0.949049,0.742515,0.65838,0.60188,0.352359,0.0433031,0.324068,0.292633,0.759032,0.223291,0.349086,0.293799,0.722091,0.0738372,0.295376,0.0309844,0.571942,0.372322,0.29127,0.307196,0.660616,0.951713,0.845035,0.344976,0.277669,0.759389,0.152697,0.728761,0.281254,0.316526,0.43859,0.52707,0.115786,0.785618,0.54138,0.0283113,0.154862,0.130145,0.357195,0.193392,0.926516,0.112687,0.629883,0.975564,0.13908,0.987864,0.697486,0.73121,0.76473,0.569683,0.650449,0.64615,0.953962,0.181295,0.961072,0.180595,0.261691,0.740247,0.793168,0.932222,0.863989,0.702607,0.759402,0.579105,0.318013,0.552436,0.682469,0.957251,0.576278,0.399464,0.933006,0.41925,0.573535,0.136172,0.695231,0.137106,0.814608,0.796329,0.642001,0.52601,0.461863,0.392791,0.532952,0.620324,0.332025,0.398703,0.252052,0.481507,0.667789,0.963421,0.535716,0.51366,0.903561,0.787682,0.982654,0.145264,0.292404,0.169106,0.789867,0.413755,0.637645,0.870779,0.401532,0.727606,0.965082,0.85278,0.0952355,0.923239,0.0979485,0.800148,0.463889,0.420549,0.206902,0.978898,0.663795,0.9794,0.641688,0.97747,0.257463,0.16603,0.853656,0.990921,0.846965,0.257101,0.370933,0.540371,0.696935,0.75113,0.126067,0.623389,0.687519,0.429606,0.319651,0.645529,0.153264,0.92116,0.922221,0.60834,0.86307,0.155906,0.677187,0.00954652,0.263647,0.0625358,0.381205,0.766559,0.45399,0.114326,0.640739,0.119562,0.488811,0.505517,0.91762,0.953756,0.456414,0.538804,0.282136,0.776785,0.807226,0.59755,0.960138,0.836007,0.825833,0.266458,0.509189,0.664337,0.370013,0.551842,0.778456,0.566617,0.279434,9.04799e-05,0.437786,0.468378,0.111962,0.301256,0.732044,0.424919,0.316928,0.333383,0.0486044,0.202197,0.200047,0.785318,0.566287,0.971691,0.625346,0.883083,0.505727,0.492743,0.214974,0.207766,0.940597,0.999874,0.124881,0.585101,0.472405,0.544466,0.831319,0.947334,0.846523,0.295339,0.382396,0.81173,0.31138,0.733425,0.204805,0.553198,0.843214,0.246151,0.631382,0.912784,0.33448,0.128911,0.367472,0.0841855,0.846217,0.0508174,0.661198,0.669613,0.0893483,|0.640301,0.783564,0.400744,0.623979,0.516388,0.890924,0.699351,0.193855,0.776151,0.192902,0.663217,0.265835,0.701585,0.46886,0.376433,0.531606,0.038149,0.281963,0.0405579,0.292007,0.318121,0.944162,0.0727065,0.673474,0.692906,0.755454,0.304842,0.0559401,0.197751,0.255427,0.414353,0.969572,0.385254,0.774905,0.35477,0.539634,0.963674,0.103038,0.2643,0.984498,0.107199,0.482921,0.878957,0.185186,0.168707,0.474764,0.301311,0.133661,0.959149,0.0651901,0.537434,0.126444,0.791107,0.871073,0.254409,0.685545,0.66394,0.630839,0.653709,0.775823,0.898331,0.258137,0.527324,0.626699,0.516225,0.294162,0.920279,0.0917068,0.396147,0.738976,0.753758,0.946028,0.86821,0.0659255,0.710332,0.635787,0.668226,0.155182,0.401271,0.717712,0.750575,0.243533,0.0807698,0.340772,0.402783,0.497872,0.865628,0.738844,0.586604,0.572246,0.793952,0.643293,0.786062,0.840063,0.802049,0.146808,0.698918,0.696519,0.0451672,0.188726,0.999257,0.410461,0.425079,0.182772,0.398569,0.602318,0.575611,0.0889876,0.900506,0.44266,0.11262,0.0307441,0.185979,0.331631,0.097831,0.450469,0.0750805,0.925658,0.148726,0.940153,0.172117,0.906085,0.255673,0.224407,0.388758,0.282749,0.317924,0.800522,0.758789,0.618758,0.45728,0.303788,0.674874,0.443905,0.547036,0.104745,0.535832,0.87822,0.12201,0.678701,0.110342,0.0123823,0.125255,0.0828252,0.1045,0.769375,0.208051,0.679999,0.186977,0.524797,0.591566,0.115952,0.382835,0.0945526,0.330746,0.417302,0.270909,0.56726,0.613879,0.413689,0.0809656,0.66691,0.711726,0.563961,0.889877,0.0439285,0.457881,0.137745,0.0723287,0.561616,0.494567,0.444221,0.252449,0.924478,0.611889,0.89755,0.293547,0.311053,0.525696,0.835217,0.243397,0.537749,0.621567,0.38602,0.410014,0.948821,0.875733,0.228789,0.647663,0.929212,0.105422,0.0684599,0.469098,0.516091,0.282486,0.477021,0.834741,0.993372,0.560712,0.294576,0.21624,0.982306,0.787166,0.730906,0.0889061,0.164033,0.824107,0.765821,0.738602,0.127206,0.72107,0.0671962,0.290557,0.688645,0.537464,0.45387,0.301935,0.778394,0.089959,0.637602,0.0807637,0.157952,0.721471,0.211669,0.146124,0.836369,0.31433,0.485523,0.965139,0.398484,0.816983,0.0688516,0.625377,0.609937,0.947733,0.404257,0.3933,0.978166,0.593491,0.380608,0.303229,0.768368,0.428684,0.101102,0.992035,0.563739,0.472231,0.796537,0.493697,0.672558,0.316757,0.264384,0.367736,0.0520033,0.707087,0.641586,0.0128245,0.465204,0.0138362,0.603446,0.942978,0.976953,0.238371,0.287859,0.161368,0.67263,0.689226,0.910586,0.165954,0.506909,0.472655,0.200921,0.439784,0.182108,0.588852,0.77062,0.680772,0.42101,0.830356,0.306138,0.00990623,0.164021,0.667323,0.901428,0.992777,0.674165,0.260572,0.870389,0.0331817,0.596139,0.272927,0.320651,0.449918,0.646727,0.47876,0.450399,0.502532,0.805665,0.138895,0.852469,0.883088,0.461343,0.0330743,0.224852,0.807423,0.494539,0.0614551,0.545535,0.346931,0.216343,0.160546,0.959593,0.475016,0.498271,0.814455,0.520547,0.935572,0.158826,0.248179,0.596082,0.50174,0.978576,0.837763,0.180131,0.3978,0.347341,0.128846,0.666387,0.250344,0.140945,0.559083,0.540171,0.574757,0.217088,0.629079,0.719274,0.0426463,0.598782,0.925398,0.0107321,0.254052,0.828513,0.59966,0.83993,0.217086,0.321813,0.150738,0.976113,0.556582,0.25853,0.88552,0.483478,0.100814,0.16236,0.209426,0.710708,0.414363,0.673445,0.551721,0.6114,0.290683,0.737894,0.386808,0.776974,0.0678812,0.923826,0.910764,0.5826,0.764421,0.017075,0.363339,0.889464,0.752245,0.568125,0.80827,0.525842,0.0860292,0.605301,0.323074,0.401316,0.575189,0.677874,0.474048,0.871267,0.921938,0.522287,0.867455,0.242527,0.326519,0.525678,0.313353,0.570989,0.971122,0.615761,0.745475,0.929655,0.625043,0.219272,0.894919,0.66929,0.25918,0.207616,0.234638,0.623972,0.920966,0.126071,0.419388,0.258416,0.444951,0.317886,0.231426,0.0749928,0.311684,0.649748,0.442247,0.792466,0.523935,0.208392,0.511877,0.205358,0.717885,0.0358717,0.733458,0.921155,0.418617,0.454764,0.706178,0.0507527,0.294418,0.401974,0.325637,0.972571,0.175739,0.831293,0.225377,0.510185,0.211544,0.847585,0.623327,0.505418,0.358403,0.0105481,0.1686,0.497041,0.200444,0.858328,0.00828719,0.644441,0.346202,0.129178,0.45073,0.529079,0.592847,0.981279,0.160948,0.0619018,0.840427,0.873717,0.830914,0.595691,0.196766,0.257146,0.730317,0.89443,0.375496,0.29666,0.919996,0.163321,0.791621,0.386624,0.0923002,0.933238,0.459458,0.626095,0.156429,0.0384204,0.0441894,0.802717,0.805649,0.0301569,0.416224,0.977217,0.160326,0.890844,0.935258,0.0506235,0.220434,0.306072,0.719727,0.866649,0.426521,0.194063,0.452148,0.92446,0.303283,0.713369,0.688297,0.391029,0.188462,0.431541,0.812954,0.0437939,0.461306,0.430707,0.290757,0.316925,0.915964,0.501348,0.275137,0.819226,0.829468,0.427382,0.211531,0.141718,0.0884374,0.216502,0.950009,0.0582594,0.806143,0.85552,0.936501,0.370964,0.447012,0.000480413,0.349438,0.234965,0.79912,0.729441,0.629097,0.795305,0.113654,0.810992,0.710486,0.0944597,0.549419,0.384615,0.67928,0.542602,0.460351,0.191025,0.895208,0.398974,0.24614,0.242353,0.682747,0.892819,0.152253,0.543485,0.439679,0.487255,0.913136,0.179807,0.00302064,0.567692,0.65254,0.384629,0.0785921,0.836598,0.76593,0.338686,0.218312,0.621984,0.830125,0.516775,0.440063,0.888483,0.751433,0.319538,0.93263,0.788782,0.951463,0.0961611,0.827127,0.559419,0.60448,0.395368,0.170207,0.743363,0.644183,0.779607,0.815113,0.173774,0.497455,0.620843,0.785868,0.950104,0.844741,0.639364,0.245718,0.300632,0.359696,0.712139,0.264887,0.709759,0.796744,0.569696,0.0630755,0.704903,0.942045,0.129816,0.27915,0.529812,0.964659,0.484409,0.602783,0.186435,0.896561,0.335343,0.25253,0.652552,0.274981,0.147224,0.271695,0.982767,0.561235,0.407198,0.136677,0.819125,0.808036,0.965592,0.741242,0.0817014,0.507357,0.525291,0.181936,0.969857,0.381404,0.896045,0.193965,0.744234,0.469624,0.407064,0.702056,0.270679,0.0563613,0.426513,0.233594,0.989171,0.356072,0.755521,0.103465,0.139405,0.400392,0.407127,0.607199,0.187592,0.449016,0.292665,0.708071,0.893636,0.337614,0.83188,0.215463,0.45661,0.168647,0.540146,0.163894,0.4407,0.916845,0.673194,0.441562,0.923576,0.794164,0.440575,0.983212,0.846315,0.324276,0.691918,0.431494,0.238208,0.893342,0.991205,0.485857,0.561286,0.692187,0.402942,0.00676745,0.421062,0.397461,0.297737,0.252088,0.970963,0.50014,0.268362,0.727294,0.0356724,0.708851,0.538072,0.642477,0.73788,0.960538,0.793347,0.933857,0.459112,0.0881374,0.457687,0.566437,0.649696,0.385695,0.591645,0.979565,0.610482,0.247065,0.890564,0.183666,0.490573,0.197548,0.340376,0.610828,0.262552,0.809225,0.802471,0.603464,0.334057,0.258129,0.718934,0.693278,0.211503,0.234703,0.881806,0.113539,0.644848,0.150098,0.602151,0.738949,0.615153,0.00159258,0.350404,0.23989,0.916821,0.277783,0.98641,0.594042,0.131083,0.14705,0.157957,0.927794,0.312466,0.565008,0.753074,0.47134,0.799333,0.395334,0.412025,0.986308,0.166658,0.00245064,0.124295,0.805424,0.378713,0.402451,0.686137,0.469024,0.59312,0.262078,0.48592,0.0395369,0.487064,0.881486,0.419182,0.58597,0.509332,0.836262,0.97584,0.524035,0.323403,0.650698,0.0124534,0.28187,0.916301,0.856281,0.193738,0.07796,0.189092,0.883772,0.0116387,0.322255,0.0407078,0.173474,0.34565,0.462546,0.698599,0.845497,0.246147,0.752287,0.993753,0.0475168,0.427876,0.608117,0.140946,0.893979,0.24773,0.689927,0.213956,0.773986,0.328701,0.375276,0.422007,0.396893,0.567506,0.709022,0.0421448,0.0651424,0.0402463,0.0793623,0.175536,0.578736,0.74973,0.729464,0.362671,0.69939,0.868911,0.844434,0.367085,0.354258,0.984374,0.935988,0.233928,0.821648,0.594988,0.443503,0.732039,0.733917,0.39886,0.874742,0.384,0.331445,0.412394,0.0281249,0.954893,0.197949,0.522322,0.127357,0.318522,0.309592,0.499608,0.479355,0.227556,0.727421,0.309094,0.259132,0.868132,0.944113,0.410101,0.356202,0.914264,0.472278,0.190568,0.118569,0.829901,0.693198,0.2422,0.475168,0.0225633,0.549606,0.540779,0.129788,0.80921,0.59933,0.111352,0.0380741,0.107077,0.270864,0.611344,0.0192851,0.546027,0.276386,0.131949,0.469653,0.623545,0.419777,0.0858714,0.274409,0.0834188,0.837801,0.588994,0.814956,0.0433332,0.754573,0.566094,0.940271,0.0471658,0.115987,0.153772,0.696021,0.304179,0.37133,0.283194,0.511557,0.283766,0.177886,0.777851,0.501029,0.304906,0.497969,0.876986,0.195915,0.417444,0.121198,0.183318,0.565125,0.218502,0.472434,0.312947,0.774785,0.735018,0.916372,0.622406,0.422912,0.843939,0.215805,0.468442,0.510424,0.374578,0.622155,0.0797852,0.354911,0.0330164,0.0791234,0.934065,0.0725241,0.144072,0.316393,0.756455,0.850355,0.414113,0.0685882,0.52421,0.750522,0.493133,0.273612,0.718961,0.511471,0.934516,0.462725,0.560678,0.408297,0.9655,0.358469,0.384893,0.0127094,0.782454,0.35901,0.476629,0.0805464,0.532759,0.418478,0.820702,0.602011,0.507759,0.217254,0.0607961,0.915177,0.694869,0.794866,0.945465,0.784817,0.757564,0.272532,0.030331,0.908523,0.290135,0.296362,0.665672,0.211115,0.458199,0.46124,0.723838,0.0918884,0.975105,0.0867015,0.213951,0.937917,0.0506641,0.664497,0.942575,0.0588489,0.247605,0.806719,0.882734,0.324558,0.482454,0.923827,0.783266,0.522259,0.330554,0.0427197,0.32101,0.883586,0.701543,0.651995,0.592417,0.57914,0.855197,0.0608355,0.594095,0.755427,0.317213,0.146555,0.961956,|0.66653,0.399718,0.204143,0.558927,0.815459,0.819075,0.71888,0.553985,0.484425,0.284579,0.0355769,0.140043,0.494274,0.269121,0.884528,0.061312,0.195052,0.783364,0.281865,0.186196,0.362089,0.843046,0.905646,0.63699,0.748092,0.965737,0.796479,0.0647602,0.648019,0.94128,0.198306,0.832839,0.150458,0.0241352,0.563756,0.339994,0.272174,0.587369,0.133086,0.929275,0.312902,0.644713,0.301215,0.454292,0.896127,0.980933,0.00794202,0.58754,0.72983,0.208865,0.985851,0.725375,0.284828,0.860879,0.715491,0.319901,0.14106,0.360708,0.753739,0.98614,0.160737,0.0810723,0.527784,0.971808,0.754269,0.042703,0.532217,0.621596,0.495978,0.00845015,0.971523,0.549366,0.778168,0.323897,0.165412,0.588492,0.69071,0.215268,0.355555,0.669088,0.629599,0.859219,0.318368,0.0491543,0.0855804,0.102198,0.124158,0.508023,0.596699,0.784028,0.0335158,0.941863,0.987705,0.176954,0.441205,0.26696,0.617587,0.983198,0.830518,0.460448,0.439714,0.812723,0.865067,0.335072,0.553539,0.658096,0.25484,0.159303,0.400137,0.89739,0.968476,0.765082,0.968638,0.167399,0.853889,0.882571,0.0533311,0.0513999,0.584326,0.218809,0.102847,0.680024,0.946272,0.829716,0.138723,0.90175,0.690981,0.0979107,0.952441,0.548654,0.948334,0.0807132,0.721177,0.201826,0.673709,0.804739,0.480764,0.847719,0.224112,0.0338039,0.721492,0.944424,0.557215,0.897396,0.743496,0.149059,0.733818,0.517676,0.166619,0.705748,0.709211,0.669274,0.360326,0.395869,0.246003,0.843713,0.411988,0.357107,0.264731,0.372639,0.0185577,0.605892,0.929925,0.393268,0.715719,0.124919,0.77762,0.0948892,0.465312,0.0357404,0.581,0.504841,0.650631,0.555844,0.926936,0.572279,0.74136,0.890796,0.0415455,0.576185,0.876695,0.238798,0.87814,0.919161,0.881998,0.120362,0.286649,0.432828,0.958465,0.158572,0.19824,0.837812,0.968396,0.187956,0.1426,0.343062,0.23134,0.277162,0.895656,0.566215,0.727007,0.00618732,0.312384,0.390255,0.88435,0.469458,0.674688,0.108959,0.0321518,0.93466,0.15217,0.973233,0.219062,0.379298,0.857247,0.649282,0.129692,0.550569,0.573451,0.670368,0.238702,0.656428,0.502441,0.226374,0.839248,0.718183,0.948886,0.113684,0.839778,0.918969,0.530496,0.265115,0.813375,0.695931,0.543383,0.920457,0.0148054,0.343781,0.0252358,0.856436,0.383838,0.936319,0.14794,0.838489,0.0343749,0.602662,0.563961,0.733968,0.991803,0.943088,0.308569,0.116943,0.249689,0.379598,0.478338,0.743857,0.0881169,0.133153,0.372407,0.197573,0.312422,0.914617,0.737595,0.136135,0.256929,0.0980705,0.965138,0.987322,0.67889,0.93859,0.33067,0.693822,0.806862,0.572571,0.532554,0.161661,0.542335,0.257963,0.144047,0.563788,0.462314,0.794879,0.0710881,0.640696,0.804591,0.800368,0.571486,0.319708,0.473214,0.182632,0.321413,0.0421833,0.0330868,0.00696772,0.1862,0.115315,0.13453,0.702454,0.547687,0.298963,0.735031,0.121563,0.667981,0.217195,0.387679,0.130455,0.0250134,0.492077,0.368039,0.941495,0.592843,0.0205325,0.748749,0.295977,0.446788,0.248353,0.657963,0.495854,0.811535,0.149153,0.526707,0.190077,0.0703613,0.384209,0.596572,0.85218,0.0354902,0.254989,0.261274,0.142978,0.850062,0.780296,0.800117,0.390902,0.91066,0.48131,0.0274491,0.515638,0.669132,0.258782,0.0801355,0.237765,0.977537,0.819885,0.491833,0.387206,0.650153,0.218856,0.490074,0.730586,0.678579,0.137722,0.156864,0.304368,0.80318,0.213577,0.242052,0.345144,0.548765,0.188375,0.677251,0.187759,0.060041,0.84521,0.412809,0.0902331,0.0996702,0.81671,0.842041,0.302072,0.888936,0.293629,0.80329,0.369553,0.38002,0.59897,0.986495,0.483836,0.996203,0.493922,0.477863,0.686721,0.79662,0.360691,0.963241,0.682997,0.693037,0.160829,0.836457,0.633394,0.479567,0.580191,0.271353,0.719567,0.935923,0.973113,0.744664,0.961197,0.196553,0.484635,0.821649,0.829755,0.519354,0.248206,0.323212,0.488866,0.621645,0.981574,0.98855,0.144657,0.740147,0.639464,0.879884,0.473005,0.453987,0.402328,0.313184,0.364195,0.455059,0.23268,0.774038,0.932613,0.974358,0.105397,0.947048,0.904531,0.557537,0.221277,0.112598,0.707988,0.898983,0.913922,0.535527,0.494394,0.687466,0.861984,0.183739,0.431021,0.0890573,0.567321,0.37188,0.423241,0.224216,0.544497,0.909818,0.925871,0.298099,0.959379,0.598558,0.820686,0.695952,0.125482,0.416288,0.169571,0.398736,0.1735,0.225353,0.727256,0.265247,0.733106,0.79071,0.155312,0.158404,0.469994,0.527436,0.501067,0.447548,0.149009,0.804842,0.871712,0.597306,0.0635592,0.260052,0.967664,0.10447,0.563688,0.393726,0.880042,0.27896,0.10103,0.848203,0.606308,0.476401,0.227526,0.189924,0.843363,0.71975,0.561864,0.453247,0.342784,0.682986,0.16906,0.390657,0.00468206,0.180065,0.487677,0.871754,0.0933309,0.058163,0.168104,0.763396,0.28913,0.799088,0.202926,0.191444,0.183337,0.87394,0.827414,0.166078,0.805934,0.986275,0.183883,0.423086,0.335017,0.012174,0.234708,0.333804,0.133211,0.37669,0.918762,0.253589,0.465594,0.624,0.0900288,0.682925,0.86399,0.08464,0.510985,0.754671,0.384798,0.386698,0.812794,0.593715,0.686876,0.00852287,0.881174,0.232796,0.977279,0.113728,0.0375838,0.300596,0.133005,0.543647,0.558133,0.953981,0.79831,0.160199,0.574282,0.0433732,0.97727,0.574329,0.0403044,0.864285,0.939985,0.0268211,0.956842,0.067003,0.141223,0.539118,0.275387,0.360435,0.2897,0.677361,0.451451,0.709295,0.384879,0.238194,0.998968,0.282302,0.347649,0.578265,0.748447,0.0709684,0.181827,0.449997,0.419572,0.0497872,0.516315,0.866367,0.0861876,0.458795,0.742758,0.0081324,0.306978,0.0114402,0.538831,0.00140071,0.308796,0.456914,0.0215916,0.392887,0.310869,0.207703,0.801508,0.674197,0.0123914,0.760617,0.912676,0.248795,0.842752,0.440227,0.946889,0.628982,0.0608357,0.876312,0.0931063,0.921509,0.806456,0.265326,0.462829,0.616975,0.804677,0.345147,0.401748,0.0128096,0.700148,0.926239,0.282216,0.20691,0.846183,0.122727,0.33089,0.901888,0.880132,0.706666,0.951678,0.916011,0.514164,0.684873,0.738056,0.600226,0.433015,0.582681,0.508297,0.103889,0.226397,0.555244,0.401062,0.940794,0.201896,0.56631,0.199703,0.554446,0.63835,0.00691587,0.642083,0.679136,0.362401,0.112815,0.48055,0.14884,0.0454071,0.393652,0.189633,0.512372,0.977438,0.686125,0.10346,0.470802,0.576805,0.63096,0.290941,0.17417,0.666843,0.606781,0.0203752,0.120493,0.0735781,0.134078,0.582064,0.608662,0.413424,0.136121,0.404477,0.727021,0.329421,0.0276798,0.533362,0.303536,0.335393,0.950369,0.9427,0.336618,0.541094,0.282726,0.116821,0.552385,0.858428,0.509472,0.952702,0.628031,0.533907,0.862317,0.847944,0.878919,0.243173,0.334144,0.0582354,0.650723,0.532539,0.0975674,0.33867,0.922948,0.614407,0.572642,0.272536,0.469839,0.861707,0.300954,0.326759,0.571147,0.723575,0.385971,0.714525,0.496006,0.91566,0.528412,0.983872,0.694788,0.897447,0.505884,0.0226198,0.818227,0.743944,0.150716,0.350008,0.788176,0.508227,0.14807,0.192566,0.354094,0.809856,0.520761,0.195544,0.423457,0.984976,0.197627,0.157943,0.447837,0.855634,0.379938,0.0336146,0.923724,0.895391,0.40923,0.324308,0.141721,0.256276,0.461991,0.305314,0.788691,0.0760269,0.577123,0.48928,0.793393,0.26281,0.0624959,0.969794,0.589086,0.960717,0.355718,0.557323,0.664084,0.241814,0.834203,0.585845,0.624595,0.422277,0.21392,0.295404,0.34382,0.991059,0.791486,0.290207,0.55301,0.224081,0.073363,0.913812,0.332377,0.685493,0.784054,0.317535,0.880556,0.457624,0.383269,0.102228,0.600169,0.60735,0.978403,0.154179,0.630423,0.808015,0.556066,0.643691,0.890182,0.862912,0.726717,0.0576819,0.855312,0.691139,0.342734,0.78071,0.562478,0.449497,0.99899,0.310191,0.000333846,0.898697,0.380594,0.490312,0.548357,0.213531,0.199579,0.735772,0.267411,0.704533,0.835833,0.00899434,0.182599,0.213248,0.528681,0.368125,0.517368,0.149812,0.54813,0.239518,0.489996,0.438385,0.115742,0.320551,0.783012,3.95179e-05,0.465725,0.178399,0.459272,0.207625,0.310299,0.43492,0.357686,0.310328,0.536428,0.155975,0.71522,0.768711,0.00319564,0.923094,0.534001,0.899201,0.740617,0.768096,0.265125,0.758561,0.0933324,0.835587,0.958686,0.171224,0.777709,0.76236,0.43867,0.943045,0.710566,0.804369,0.000273526,0.19052,0.460203,0.681643,0.70281,0.0492757,0.814397,0.922392,0.225791,0.032162,0.932859,0.677242,0.35956,0.959163,0.408698,0.492846,0.136874,0.867797,0.298841,0.593455,0.849028,0.763806,0.270834,0.76323,0.049114,0.480919,0.808343,0.915705,0.118762,0.510322,0.27268,0.577165,0.123617,0.0563732,0.883632,0.480504,0.644572,0.00634891,0.498235,0.915478,0.346214,0.582622,0.766378,0.909997,0.476619,0.901812,0.621863,0.153859,0.0275514,0.0733398,0.0396188,0.39205,0.446948,0.444725,0.637371,0.0996358,0.979705,0.700848,0.591119,0.567895,0.86644,0.699656,0.216251,0.441199,0.0919544,0.648517,0.672384,0.569069,0.510476,0.220677,0.450383,0.640213,0.713942,0.909777,0.25576,0.957208,0.390488,0.282457,0.0124736,0.785068,0.802907,0.942119,0.646199,0.946543,0.265381,0.669412,0.676938,0.459121,0.594882,0.80729,0.231858,0.131761,0.648995,0.496284,0.13665,0.536188,0.959405,0.321918,0.323092,0.316649,0.0757042,0.79706,0.0596381,0.761814,0.702605,0.490172,0.307371,0.549772,0.0730528,0.569341,0.977308,0.511758,0.54152,0.968534,0.293464,0.686586,0.62174,0.832864,0.430661,0.594845,0.475388,0.686633,0.519754,0.841592,0.760941,0.0542514,0.677732,0.464861,0.501173,0.119222,0.781969,0.255573,0.459124,0.291812,0.367323,0.0553871,0.298504,0.680012,|0.453112,0.277144,0.873117,0.901102,0.426809,0.0464213,0.340436,0.985218,0.432863,0.81898,0.0542049,0.23341,0.634377,0.439273,0.982933,0.492545,0.631325,0.382984,0.380373,0.662252,0.836352,0.192205,0.0116911,0.970084,0.321771,0.654165,0.861941,0.0193943,0.398308,0.341803,0.526603,0.476595,0.00460815,0.418801,0.277656,0.909136,0.603132,0.683828,0.0225502,0.427001,0.235983,0.466683,0.638355,0.728615,0.823597,0.590029,0.776689,0.142035,0.587974,0.108439,0.158665,0.0501683,0.108445,0.682089,0.786245,0.14085,0.127849,0.233126,0.00638264,0.583008,0.931236,0.483032,0.910218,0.548629,0.273479,0.889162,0.194372,0.715667,0.0374218,0.991059,0.113627,0.386563,0.250339,0.76962,0.320356,0.480397,0.142058,0.439672,0.624425,0.363668,0.181809,0.57873,0.918898,0.274632,0.972386,0.49249,0.642205,0.430119,0.420368,0.477798,0.974896,0.261971,0.811384,0.135669,0.218624,0.892259,0.16172,0.0243378,0.167232,0.201895,0.00481272,0.77689,0.762311,0.786313,0.592201,0.143854,0.756305,0.843893,0.837131,0.154824,0.837156,0.761288,0.0647193,0.69244,0.409841,0.2893,0.790256,0.751658,0.861257,0.0450786,0.414051,0.827882,0.610947,0.453703,0.859927,0.255561,0.372544,0.691564,0.913924,0.289111,0.709135,0.562084,0.39978,0.0439688,0.850815,0.634086,0.973186,0.555117,0.435155,0.10853,0.996664,0.280046,0.61066,0.594013,0.774749,0.868915,0.711438,0.825844,0.215736,0.605175,0.144957,0.38873,0.245822,0.300487,0.592528,0.801788,0.769619,0.2341,0.802212,0.74608,0.522928,0.981839,0.261037,0.65161,0.277654,0.262677,0.87127,0.384378,0.466017,0.49709,0.0490707,0.7534,0.600675,0.763229,0.75682,0.986902,0.725193,0.544212,0.690769,0.133127,0.637244,0.472427,0.0996103,0.173957,0.00338072,0.316713,0.745405,0.901245,0.438608,0.581999,0.954486,0.444011,0.307834,0.762298,0.99017,0.445381,0.322165,0.761646,0.819245,0.443494,0.0560778,0.636054,0.913164,0.628974,0.0304059,0.275865,0.216875,0.159253,0.23938,0.527946,0.89568,0.605677,0.0655615,0.763734,0.107357,0.993256,0.665573,0.938632,0.962323,0.845103,0.771813,0.0315838,0.637192,0.00993639,0.101512,0.59863,0.984965,0.938041,0.401479,0.682347,0.354507,0.984991,0.280609,0.808206,0.0688126,0.320581,0.324996,0.833246,0.767727,0.333324,0.407923,0.900798,0.0329007,0.785318,0.538842,0.849461,0.538924,0.812671,0.0328525,0.941225,0.730257,0.908564,0.459701,0.502782,0.72634,0.571886,0.727617,0.3548,0.069619,0.118929,0.755983,0.810183,0.374539,0.31275,0.732012,0.107866,0.206505,0.771807,0.182365,0.670307,0.78227,0.569897,0.6206,0.734288,0.525269,0.0620827,0.576116,0.504208,0.778187,0.1438,0.248265,0.452145,0.855431,0.669494,0.895061,0.794501,0.884382,0.603558,0.176425,0.777007,0.169312,0.623902,0.452971,0.2844,0.710845,0.909906,0.509857,0.723105,0.382705,0.15591,0.322456,0.547035,0.0222887,0.578152,0.0970823,0.762202,0.197351,0.43674,0.616387,0.97796,0.844788,0.336618,0.0518488,0.350667,0.866482,0.64289,0.82801,0.878041,0.863204,0.160359,0.143176,0.0331389,0.118602,0.310383,0.905958,0.142543,0.116263,0.93528,0.058892,0.495483,0.835103,0.664816,0.729149,0.515625,0.310868,0.826433,0.706739,0.880146,0.565002,0.759648,0.19568,0.561473,0.720947,0.225691,0.153035,0.684633,0.752276,0.244935,0.960802,0.685765,0.325758,0.152807,0.0812005,0.530362,0.00340247,0.84865,0.222167,0.0237955,0.987608,0.986724,0.129074,0.455309,0.294862,0.662872,0.855102,0.137479,0.149448,0.114861,0.809853,0.776279,0.703962,0.988484,0.439379,0.479344,0.168694,0.338633,0.624766,0.269533,0.197287,0.473168,0.731699,0.499704,0.27676,0.515401,0.904415,0.192338,0.935631,0.526332,0.911434,0.662858,0.381449,0.412589,0.763137,0.226989,0.262962,0.928029,0.355042,0.278122,0.205913,0.54009,0.937962,0.182802,0.181065,0.132207,0.178508,0.302441,0.238445,0.550739,0.347587,0.909777,0.628688,0.225208,0.747999,0.71139,0.774682,0.488728,0.952221,0.0393227,0.825579,0.590389,0.977615,0.193543,0.966438,0.969335,0.555635,0.704518,0.620467,0.633942,0.809071,0.153702,0.214305,0.630891,0.791571,0.950052,0.829445,0.479516,0.979784,0.448027,0.833635,0.905008,0.735444,0.108474,0.0383685,0.628483,0.977119,0.718084,0.0670178,0.850584,0.540329,0.567415,0.252047,0.196529,0.219649,0.913721,0.156968,0.71326,0.730534,0.279277,0.519454,0.715727,0.386503,0.74797,0.159212,0.407552,0.325536,0.931438,0.725197,0.433422,0.103799,0.610035,0.58108,0.138314,0.494822,0.424647,0.905275,0.0630926,0.241811,0.222081,0.0900986,0.243635,0.458613,0.690035,0.864643,0.707171,0.101398,0.924111,0.0950915,0.240794,0.813224,0.431489,0.159433,0.282428,0.642756,0.241073,0.183792,0.523117,0.89901,0.770298,0.398314,0.731018,0.571344,0.766053,0.345614,0.916081,0.100631,0.697041,0.790904,0.561861,0.121429,0.780004,0.6684,0.940809,0.600367,0.174476,0.433855,0.642553,0.870188,0.628643,0.801207,0.81254,0.370317,0.822839,0.60631,0.813597,0.636306,0.312605,0.698932,0.914386,0.57794,0.478576,0.816996,0.611502,0.330001,0.778935,0.88884,0.0340321,0.815113,0.620373,0.895746,0.896309,0.565319,0.19179,0.266236,0.63414,0.675757,0.085201,0.238011,0.588744,0.309477,0.704715,0.857188,0.35553,0.0543275,0.186836,0.0108852,0.851285,0.605027,0.509192,0.0128756,0.442326,0.0260351,0.931363,0.75406,0.32648,0.411057,0.0203076,0.589867,0.429201,0.880241,0.794813,0.262634,0.233287,0.641531,0.16483,0.561656,0.959695,0.454059,0.373118,0.0381547,0.212015,0.713197,0.274509,0.368068,0.122515,0.485311,0.443384,0.242278,0.390821,0.670069,0.244971,0.479013,0.747814,0.36943,0.108881,0.066901,0.562234,0.770291,0.904933,0.80125,0.923948,0.566801,0.164302,0.829503,0.676108,0.830245,0.0218729,0.36654,0.836473,0.512328,0.916854,0.691102,0.932217,0.578319,0.564321,0.963255,0.180915,0.122581,0.932211,0.596362,0.659336,0.197518,0.292543,0.11412,0.513198,0.630638,0.466801,0.176517,0.754986,0.811808,0.0058049,0.340577,0.0780725,0.016895,0.526755,0.142306,0.93961,0.0322614,0.276088,0.738326,0.0965343,0.225368,0.93817,0.522791,0.463243,0.888479,0.860364,0.153646,0.433574,0.666503,0.743258,0.567171,0.216644,0.297228,0.0765172,0.928193,0.907779,0.279926,0.514822,0.994282,0.869143,0.387218,0.385611,0.0710589,0.322011,0.346076,0.440849,0.00690383,0.059256,0.644401,0.791296,0.971426,0.378774,0.665854,0.93964,0.635825,0.374938,0.534728,0.0162703,0.432784,0.617935,0.832343,0.958428,0.715419,0.496381,0.390334,0.581056,0.0689489,0.0416112,0.387912,0.741265,0.387477,0.234415,0.964045,0.47518,0.178427,0.920473,0.440584,0.968608,0.446713,0.731516,0.384364,0.469329,0.0271408,0.517239,0.00253481,0.0919261,0.244422,0.795826,0.39351,0.122402,0.169972,0.127013,0.889474,0.58712,0.379057,0.910256,0.600716,0.783987,0.254984,0.142228,0.619863,0.66342,0.15267,0.830189,0.793806,0.220396,0.688795,0.945738,0.36409,0.653562,0.245661,0.434908,0.484697,0.750862,0.997651,0.157498,0.488627,0.212568,0.679936,0.0295683,0.0285965,0.626399,0.854748,0.00373149,0.696858,0.710621,0.464994,0.33284,0.0902629,0.7429,0.813076,0.622846,0.596678,0.746098,0.636274,0.163345,0.284824,0.941047,0.0875441,0.715157,0.116567,0.533378,0.929463,0.175869,0.5467,0.820106,0.814787,0.0124683,0.36608,0.0200199,0.449272,0.171397,0.628127,0.205002,0.766849,0.880632,0.361841,0.416082,0.993449,0.171628,0.787725,0.478188,0.628444,0.922704,0.453907,0.78829,0.0569945,0.708236,0.973681,0.719022,0.596471,0.2141,0.0925474,0.665744,0.689157,0.476364,0.941096,0.0119116,0.603277,0.672081,0.903335,0.69414,0.403135,0.256831,0.712428,0.352728,0.94512,0.251917,0.0556656,0.159302,0.150142,0.319354,0.565191,0.962768,0.553758,0.643666,0.787644,0.156562,0.570065,0.028764,0.900104,0.418358,0.485881,0.301025,0.754945,0.63007,0.805232,0.891848,0.847829,0.886088,0.0916414,0.150587,0.392991,0.216909,0.185235,0.875324,0.962102,0.493497,0.486515,0.707912,0.83417,0.539563,0.674599,0.783736,0.175867,0.750683,0.720656,0.817097,0.553655,0.765054,0.363751,0.710588,0.826498,0.302506,0.0948402,0.997268,0.00204778,0.899307,0.600066,0.135802,0.318532,0.260144,0.686614,0.717552,0.219985,0.209847,0.542507,0.584637,0.547808,0.132993,0.885115,0.493184,0.296887,0.04896,0.60183,0.831817,0.935892,0.292476,0.120535,0.511095,0.114505,0.323748,0.160508,0.694894,0.276215,0.934155,0.626292,0.681736,0.383065,0.274472,0.870812,0.686151,0.585844,0.337895,0.512592,0.758953,0.478917,0.922069,0.944924,0.0948271,0.648041,0.198751,0.742962,0.690011,0.844242,0.955491,0.166006,0.52182,0.529611,0.128667,0.227971,0.692961,0.64335,0.951312,0.591389,0.974168,0.852605,0.0129343,0.737791,0.980253,0.350054,0.304575,0.173556,0.317304,0.696879,0.601775,0.707701,0.496862,0.647534,0.027633,0.150038,0.34576,0.716643,0.874382,0.0152518,0.427722,0.692603,0.385261,0.733601,0.217295,0.0390225,0.623741,0.226264,0.160976,0.286153,0.43647,0.205244,0.600851,0.676457,0.982115,0.697986,0.995628,0.0735793,0.897456,0.00751245,0.25426,0.171008,0.368242,0.793315,0.209832,0.956906,0.281787,0.319228,0.111988,0.994057,0.291391,0.854833,0.117056,0.676173,0.876792,0.702449,0.556072,0.419071,0.844363,0.558029,0.801367,0.701346,0.79283,0.300053,0.542687,0.370505,0.654597,0.31593,0.778836,0.0404408,0.0436637,0.907945,0.923506,0.859105,0.142491,0.0235316,0.906007,0.795068,0.375069,0.403918,0.562977,0.141816,0.529579,0.306718,0.417961,|0.647824,0.952106,0.332479,0.0482529,0.995019,0.777483,0.991141,0.539755,0.496493,0.612167,0.999936,0.954144,0.468298,0.299805,0.431967,0.119411,0.521069,0.459817,0.963842,0.64264,0.431068,0.116647,0.499024,0.0416378,0.871942,0.866056,0.269171,0.0474707,0.295211,0.823439,0.104519,0.808569,0.251764,0.827505,0.0167773,0.926677,0.214544,0.830262,0.693444,0.476145,0.458781,0.831895,0.456243,0.513472,0.0622189,0.745864,0.500751,0.907836,0.98383,0.475526,0.819888,0.885116,0.324665,0.860749,0.696326,0.957556,0.0632045,0.0467355,0.804769,0.118026,0.374662,0.311279,0.247605,0.336695,0.432976,0.300032,0.573783,0.851502,0.479984,0.881277,0.774042,0.534084,0.606798,0.237023,0.0648143,0.895828,0.388571,0.110344,0.0497479,0.0100996,0.471486,0.83191,0.446649,0.445079,0.323775,0.0946611,0.874984,0.115749,0.282604,0.177216,0.270098,0.905633,0.575929,0.548382,0.314074,0.345848,0.726701,0.541234,0.766012,0.273272,0.426909,0.492815,0.0295724,0.771589,0.114468,0.382233,0.661073,0.708818,0.723236,0.127616,0.390139,0.548936,0.00722063,0.780972,0.421357,0.323361,0.246784,0.615721,0.256563,0.781503,0.269948,0.324565,0.526952,0.29551,0.671414,0.753641,0.233236,0.162632,0.862911,0.119554,0.619769,0.342309,0.256992,0.825269,0.682044,0.640983,0.244727,0.160978,0.27291,0.41792,0.303332,0.371566,0.122923,0.280754,0.10214,0.792059,0.645292,0.487075,0.998618,0.229453,0.212889,0.303553,0.8094,0.80632,0.360046,0.516423,0.0650835,0.142895,0.999513,0.438427,0.578268,0.771362,0.580566,0.11929,0.540637,0.293916,0.661991,0.0113766,0.024317,0.844721,0.112088,0.0887241,0.119302,0.197397,0.819765,0.17656,0.889495,0.00823557,0.695131,0.203873,0.217319,0.620434,0.777811,0.911321,0.410039,0.95431,0.749789,0.265065,0.985867,0.712814,0.798794,0.240857,0.907873,0.683079,0.192734,0.133136,0.290311,0.462285,0.107761,0.362636,0.788302,0.72378,0.659923,0.136976,0.925723,0.390369,0.745911,0.0803308,0.890592,0.265276,0.518018,0.554328,0.782313,0.453497,0.775917,0.0742974,0.932428,0.0292395,0.186289,0.976056,0.49726,0.302469,0.628507,0.866437,0.965048,0.358285,0.0902895,0.168966,0.27225,0.459153,0.886894,0.125379,0.442275,0.747661,0.980388,0.537787,0.995634,0.260696,0.632137,0.442125,0.896489,0.456208,0.510648,0.680561,0.6918,0.446239,0.0801197,0.0709727,0.120749,0.312516,0.18072,0.453454,0.812362,0.666744,0.665339,0.286357,0.405325,0.347899,0.00253689,0.196437,0.0350273,0.341631,0.500767,0.534433,0.337935,0.727473,0.762287,0.788369,0.602202,0.841276,0.121256,0.087839,0.563437,0.51487,0.433715,0.378374,0.545768,0.085512,0.310611,0.110198,0.518189,0.716595,0.977559,0.523765,0.0321159,0.105439,0.85993,0.713856,0.868789,0.502409,0.675428,0.179479,0.595643,0.660295,0.373814,0.804313,0.0876306,0.277572,0.25229,0.302907,0.581884,0.477455,0.913756,0.302303,0.819484,0.724077,0.798389,0.516235,0.446399,0.68447,0.927061,0.186371,0.761391,0.471012,0.767308,0.421442,0.13471,0.111071,0.785792,0.971017,0.554232,0.374941,0.412199,0.253362,0.979395,0.321721,0.706915,0.432167,0.119249,0.473473,0.00931859,0.963543,0.728747,0.300061,0.0459585,0.193896,0.498694,0.231974,0.18273,0.471124,0.923707,0.536781,0.564074,0.699851,0.175021,0.652586,0.232408,0.764394,0.033955,0.268817,0.458121,0.775059,0.912141,0.0219914,0.69709,0.99475,0.447033,0.288927,0.883433,0.0760314,0.622532,0.704061,0.902858,0.401325,0.69073,0.212053,0.220363,0.406868,0.504386,0.970451,0.813662,0.156801,0.243259,0.950253,0.696617,0.92375,0.486725,0.845131,0.361462,0.579711,0.0091967,0.943745,0.928215,0.540073,0.266289,0.224477,0.316714,0.697981,0.756569,0.561372,0.531545,0.942775,0.759989,0.416793,0.00603372,0.331822,0.891517,0.89684,0.413933,0.929624,0.916207,0.742045,0.596553,0.152269,0.107065,0.967555,0.239267,0.47736,0.654722,0.678967,0.855804,0.75475,0.66298,0.761138,0.879332,0.559382,0.455887,0.512832,0.984393,0.65346,0.475003,0.926889,0.931156,0.368478,0.0993585,0.959899,0.387993,0.195065,0.026239,0.39017,0.349329,0.208597,0.685972,0.247283,0.65925,0.651277,0.749209,0.213771,0.385786,0.501218,0.59238,0.40999,0.183975,0.607144,0.124895,0.0779273,0.194125,0.445246,0.494943,0.0134044,0.701144,0.198686,0.582972,0.188237,0.742779,0.403102,0.4156,0.586797,0.833883,0.746814,0.392998,0.0405148,0.958914,0.40524,0.649206,0.36136,0.720484,0.402936,0.291825,0.104888,0.25154,0.855139,0.983396,0.949667,0.736686,0.00980985,0.768465,0.295655,0.31399,0.24309,0.409387,0.672833,0.767668,0.232935,0.165415,0.271377,0.14884,0.780773,0.267471,0.780699,0.764142,0.255556,0.445531,0.705866,0.100479,0.0857736,0.262877,0.800227,0.764392,0.771618,0.0298163,0.512341,0.512835,0.326281,0.62576,0.397304,0.269741,0.773715,0.358811,0.395887,0.0246513,0.446852,0.112838,0.356055,0.914402,0.423035,0.705614,0.0582549,0.332911,0.657891,0.792189,0.366597,0.615078,0.0940457,0.523432,0.303859,0.588991,0.269497,0.303915,0.822235,0.925445,0.982888,0.613355,0.16187,0.380089,0.37006,0.332485,0.974601,0.926714,0.845793,0.768389,0.161733,0.544168,0.84681,0.882512,0.325265,0.628145,0.276767,0.89706,0.592822,0.643012,0.148593,0.985053,0.407858,0.431992,0.485229,0.20764,0.696025,0.759902,0.645338,0.702595,0.543498,0.0782073,0.303283,0.215917,0.000835955,0.973172,0.631381,0.32913,0.822064,0.0383719,0.336874,0.54982,0.585153,0.363046,0.242452,0.726372,0.0895543,0.501573,0.931333,0.384543,0.355326,0.840608,0.607582,0.439609,0.1893,0.672983,0.213153,0.472866,0.433356,0.667194,0.37129,0.925775,0.106644,0.575568,0.740541,0.444795,0.747969,0.892187,0.551352,0.527895,0.478053,0.159486,0.925048,0.110265,0.0123186,0.853764,0.950561,0.420654,0.458113,0.0144566,0.353036,0.464603,0.105628,0.833171,0.204534,0.384441,0.569108,0.325476,0.156371,0.132565,0.592039,0.723866,0.310899,0.666608,0.151549,0.457418,0.263069,0.131374,0.571465,0.51746,0.16662,0.959252,0.400931,0.389979,0.174021,0.751869,0.105359,0.317099,0.306664,0.651528,0.198816,0.579536,0.641425,0.158082,0.279679,0.675072,0.16297,0.60975,0.501081,0.272417,0.973113,0.841303,0.187322,0.0889565,0.40583,0.309497,0.967071,0.132738,0.861048,0.266733,0.74869,0.426721,0.432492,0.722617,0.271417,0.264948,0.847014,0.00493729,0.9387,0.869737,0.199091,0.471161,0.631562,0.31605,0.289959,0.154381,0.826164,0.970542,0.185512,0.607724,0.308409,0.0508261,0.494926,0.704062,0.748888,0.585036,0.0216513,0.321133,0.856093,0.909004,0.807214,0.73508,0.963194,0.503169,0.488206,0.382121,0.151227,0.676333,0.952887,0.430449,0.108818,0.764349,0.229185,0.202435,0.433242,0.472604,0.183697,0.961137,0.994489,0.509758,0.0216548,0.970924,0.510063,0.507019,0.765639,0.837497,0.0270615,0.0439946,0.957794,0.861856,0.964992,0.0582762,0.170556,0.379104,0.0353065,0.911325,0.119663,0.522743,0.232989,0.329578,0.0916941,0.113206,0.792752,0.971501,0.00685757,0.266809,0.099572,0.425784,0.533499,0.862755,0.338499,0.179419,0.66919,0.0482517,0.0668668,0.834647,0.208636,0.933472,0.0216705,0.0189019,0.961104,0.950003,0.421251,0.652154,0.445272,0.664469,0.555483,0.415188,0.0730994,0.17267,0.282731,0.891703,0.81127,0.556704,0.607611,0.700163,0.349247,0.686653,0.210921,0.928402,0.688462,0.37051,0.959107,0.609771,0.655969,0.227351,0.607491,0.747575,0.317609,0.606828,0.42574,0.72854,0.336035,0.920469,0.89797,0.143638,0.765898,0.637714,0.286435,0.597218,0.729429,0.762399,0.471253,0.547046,0.514268,0.197313,0.661787,0.382733,0.491577,0.966467,0.179347,0.391644,0.0735759,0.0920509,0.290978,0.19828,0.33029,0.370394,0.79681,0.586936,0.941304,0.815007,0.702019,0.795798,0.750479,0.223884,0.893437,0.915025,0.442722,0.140223,0.153439,0.582686,0.928828,0.0602947,0.260845,0.117333,0.299101,0.440767,0.410253,0.0580468,0.897851,0.629182,0.574402,0.614893,0.0960132,0.949666,0.962667,0.202362,0.0526462,0.842755,0.416661,0.259577,0.172831,0.260306,0.466077,0.492301,0.88453,0.202109,0.849545,0.0070591,0.968512,0.666398,0.635536,0.389397,0.621453,0.497278,0.582551,0.595063,0.47703,0.0224556,0.329203,0.868152,0.0865051,0.787302,0.204337,0.231771,0.0754309,0.648857,0.613019,0.0198621,0.725169,0.0564917,0.971533,0.622264,0.881795,0.967385,0.707393,0.862098,0.518891,0.445046,0.348427,0.319209,0.500891,0.719484,0.778162,0.936665,0.955144,0.690899,0.811199,0.208744,0.116434,0.572181,0.746845,0.687444,0.780495,0.832595,0.0490637,0.76996,0.970317,0.0910117,0.364694,0.935967,0.267865,0.765555,0.371902,0.356532,0.652919,0.316576,0.677632,0.262757,0.851738,0.437813,0.470263,0.431179,0.204472,0.965429,0.185902,0.331647,0.244141,0.600869,0.340962,0.999536,0.152522,0.901069,0.819658,0.588321,0.956175,0.363261,0.414261,0.0521535,0.0148077,0.954123,0.430208,0.472588,0.505141,0.794854,0.215028,0.930566,0.628911,0.689723,0.553026,0.526357,0.75365,0.847512,0.319264,0.220631,0.836586,0.776979,0.488495,0.632204,0.591815,0.159594,0.458128,0.727871,0.566328,0.515747,0.718816,0.157371,0.795253,0.735968,0.142937,0.393546,0.182179,0.146905,0.434187,0.165934,0.506108,0.8347,0.515238,0.383288,0.0756814,0.491391,0.512845,0.991559,0.708141,0.816894,0.759335,0.942206,0.533655,0.359763,0.89188,0.0818807,0.226698,0.0092299,0.855413,0.84726,0.965431,0.604233,0.795286,0.102262,0.664959,0.0655743,0.259954,0.657,0.418106,0.99091,0.789047,0.97454,0.655654,|0.607143,0.0402576,0.193736,0.117195,0.257894,0.696905,0.863166,0.729853,0.780515,0.275365,0.489257,0.203681,0.952613,0.22706,0.249644,0.3901,0.179177,0.42339,0.251252,0.928409,0.486894,0.203971,0.460951,0.510895,0.598664,0.674775,0.848485,0.561927,0.515247,0.198596,0.178334,0.628039,0.867279,0.191754,0.958334,0.952259,0.876395,0.0480947,0.279912,0.856594,0.35862,0.753303,0.64642,0.021575,0.572624,0.759932,0.991476,0.944862,0.547503,0.371179,0.720349,0.284795,0.67322,0.0834768,0.584975,0.161143,0.649189,0.891177,0.903435,0.54297,0.644855,0.19622,0.970488,0.277828,0.575172,0.678512,0.242305,0.719934,0.482763,0.801944,0.921388,0.519813,0.709442,0.544057,0.512229,0.299059,0.33067,0.111829,0.169541,0.00113863,0.418703,0.0806835,0.888786,0.756185,0.264359,0.999609,0.668978,0.282341,0.453742,0.00528222,0.0371127,0.405882,0.490198,0.791087,0.323362,0.387973,0.143425,0.888933,0.276145,0.955374,0.7169,0.908707,0.0895413,0.793448,0.758633,0.400038,0.740889,0.553709,0.744461,0.0165922,0.718122,0.213288,0.89688,0.252489,0.496337,0.608286,0.293652,0.046263,0.0344877,0.0723469,0.691754,0.21707,0.274279,0.361226,0.842063,0.154867,0.266148,0.741246,0.600618,0.106365,0.881931,0.496622,0.483058,0.589441,0.424568,0.188494,0.711941,0.980824,0.731056,0.991449,0.103017,0.37716,0.30312,0.35643,0.728189,0.680968,0.929273,0.0884691,0.452664,0.367709,0.55474,0.516557,0.668924,0.714942,0.171652,0.676445,0.0981647,0.742423,0.957829,0.0775326,0.0409663,0.920406,0.908141,0.192968,0.976691,0.557949,0.519354,0.767425,0.718522,0.819276,0.159408,0.676649,0.970315,0.296602,0.406884,0.262507,0.180725,0.164307,0.173503,0.969909,0.247084,0.456569,0.179366,0.843362,0.788932,0.610199,0.700954,0.132163,0.912659,0.31578,0.678888,0.692716,0.0194561,0.365548,0.30967,0.48601,0.466435,0.304734,0.454131,0.596521,0.867654,0.211856,0.873161,0.895572,0.551432,0.616661,0.974211,0.155302,0.774746,0.281833,0.718339,0.994005,0.260618,0.557192,0.814004,0.125345,0.79196,0.0264494,0.519883,0.192629,0.784384,0.726272,0.602943,0.495045,0.428061,0.768121,0.37434,0.919802,0.617733,0.199593,0.620537,0.217465,0.714046,0.424516,0.365075,0.128658,0.781175,0.723898,0.783292,0.138436,0.3064,0.328045,0.574533,0.529265,0.925494,0.277132,0.0551923,0.685803,0.324331,0.951893,0.399458,0.507685,0.641941,0.798111,0.201418,0.916132,0.723904,0.697758,0.994648,0.0423158,0.371909,0.0180718,0.408557,0.64883,0.689342,0.796881,0.235929,0.902498,0.679307,0.749491,0.261638,0.500749,0.947306,0.759979,0.987209,0.82597,0.176405,0.49555,0.316153,0.663341,0.311621,0.864547,0.680882,0.364764,0.973679,0.759656,0.4399,0.586162,0.336588,0.930271,0.157857,0.828952,0.71712,0.257826,0.477671,0.699779,0.191916,0.361759,0.895197,0.958576,0.932529,0.267885,0.125089,0.786338,0.18144,0.973788,0.366726,0.536643,0.388163,0.969465,0.459368,0.257466,0.191571,0.819767,0.118116,0.013675,0.770774,0.831525,0.215856,0.427303,0.209392,0.513855,0.873739,0.256751,0.648007,0.322237,0.241988,0.274163,0.703127,0.883649,0.145477,0.187906,0.414455,0.338061,0.438003,0.202089,0.710034,0.0199329,0.315591,0.77403,0.0763878,0.606133,0.273585,0.48915,0.410742,0.728047,0.823004,0.598804,0.418635,0.348421,0.791066,0.200447,0.576415,0.388926,0.793583,0.0420676,0.948417,0.645716,0.955587,0.233844,0.310316,0.189747,0.00830996,0.285583,0.948422,0.113546,0.581199,0.654905,0.131398,0.237976,0.309354,0.656019,0.511038,0.849475,0.44321,0.295234,0.357565,0.0840558,0.148491,0.102052,0.603613,0.154008,0.163812,0.41906,0.422001,0.157752,0.238514,0.203995,0.232836,0.467171,0.34216,0.2335,0.904785,0.928183,0.0526446,0.573681,0.422434,0.205204,0.998635,0.897328,0.744676,0.175396,0.197372,0.0232932,0.455526,0.0920956,0.0762064,0.131644,0.474157,0.959597,0.519639,0.622204,0.419604,0.77352,0.0789806,0.958404,0.0111654,0.262891,0.0114929,0.813016,0.638772,0.537883,0.709971,0.579221,0.95264,0.374352,0.248142,0.196143,0.496332,0.115595,0.670691,0.354032,0.557504,0.173944,0.16473,0.70374,0.578417,0.181963,0.176747,0.757024,0.898655,0.0377573,0.661806,0.386453,0.559665,0.294373,0.403468,0.0961061,0.486661,0.427741,0.121122,0.625098,0.489291,0.973954,0.89403,0.494029,0.396353,0.0730582,0.0169329,0.128712,0.765491,0.0332868,0.801816,0.138333,0.915532,0.574305,0.133835,0.802151,0.145728,0.521651,0.242091,0.426505,0.529909,0.314863,0.365921,0.37031,0.662392,0.908442,0.528011,0.291687,0.335181,0.51665,0.120924,0.848912,0.219725,0.257909,0.587879,0.618632,0.623933,0.256559,0.31141,0.0641609,0.88766,0.149869,0.178506,0.852238,0.842849,0.112128,0.252018,0.193136,0.0512254,0.822025,0.431772,0.162868,0.0221142,0.542209,0.479062,0.993655,0.446935,0.68742,0.575098,0.460873,0.569592,0.823909,0.597457,0.94132,0.913815,0.99271,0.202857,0.0971476,0.527521,0.308578,0.159884,0.578659,0.171467,0.186881,0.629461,0.796374,0.700976,0.617336,0.802413,0.0123572,0.694753,0.85535,0.531995,0.798811,0.934419,0.876403,0.917513,0.24443,0.959936,0.0737084,0.823072,0.955756,0.973941,0.270512,0.0241995,0.213877,0.657611,0.018538,0.575186,0.699293,0.274291,0.233647,0.970009,0.053184,0.359496,0.968194,0.536237,0.112205,0.0900005,0.235456,0.294835,0.867002,0.587663,0.355741,0.652979,0.158258,0.602199,0.216457,0.137649,0.384343,0.374739,0.16839,0.605566,0.53923,0.346032,0.679909,0.565181,0.898422,0.830422,0.839032,0.282642,0.306493,0.941534,0.901122,0.798776,0.704709,0.336605,0.0253888,0.468636,0.581354,0.313004,0.704453,0.703756,0.225832,0.405039,0.894967,0.0338601,0.908814,0.246334,0.208056,0.621009,0.415696,0.00292373,0.317132,0.940898,0.691459,0.0259194,0.798388,0.71708,0.0547297,0.859923,0.706798,0.582388,0.437784,0.350378,0.18923,0.0164061,0.388922,0.979291,0.282328,0.693913,0.365803,0.6478,0.279088,0.474707,0.505348,0.109711,0.965639,0.0289003,0.561184,0.785529,0.908451,0.327505,0.0501145,0.967511,0.716046,0.281228,0.133404,0.683633,0.0535269,0.479171,0.994311,0.248067,0.333512,0.670127,0.368733,0.45717,0.297493,0.907721,0.452014,0.184445,0.821862,0.101942,0.65647,0.905601,0.252681,0.037475,0.128112,0.681271,0.982411,0.401796,0.612236,0.15043,0.31069,0.488815,0.430192,0.171706,0.388293,0.0318777,0.654496,0.501653,0.305067,0.727713,0.86426,0.786787,0.15911,0.223314,0.0249974,0.94398,0.571816,0.34915,0.592416,0.910471,0.698871,0.710512,0.51209,0.105832,0.501358,0.63717,0.191082,0.196442,0.679451,0.896272,0.65873,0.148779,0.897927,0.895171,0.291777,0.305193,0.0188577,0.212385,0.0261241,0.426179,0.321476,0.129496,0.856453,0.521818,0.830494,0.538315,0.298497,0.952306,0.623145,0.881186,0.0306495,0.672612,0.861875,0.0184234,0.201739,0.857251,0.0930301,0.538653,0.617354,0.356892,0.108538,0.279028,0.745092,0.542955,0.339334,0.620047,0.623711,0.979708,0.646735,0.654754,0.431964,0.495116,0.856681,0.464737,0.0818312,0.609146,0.0940368,0.0752857,0.937595,0.549735,0.768185,0.969631,0.292511,0.0281249,0.188617,0.185045,0.5747,0.0791187,0.311341,0.330465,0.373967,0.655176,0.13323,0.928276,0.578509,0.455078,0.135011,0.659646,0.54233,0.978274,0.549461,0.599009,0.585884,0.786178,0.546094,0.0189002,0.0376382,0.26728,0.010938,0.186634,0.728136,0.947132,0.373892,0.701533,0.904855,0.274387,0.543961,0.201518,0.000940561,0.355829,0.217161,0.597807,0.546148,0.303527,0.967965,0.0448728,0.487533,0.157718,0.534542,0.699991,0.213693,0.113433,0.0590399,0.588946,0.0111212,0.79878,0.843056,0.836087,0.139731,0.827407,0.83031,0.843447,0.229085,0.190014,0.595244,0.961259,0.302328,0.74615,0.86607,0.0913401,0.603312,0.236597,0.8825,0.812455,0.972386,0.207918,0.25864,0.0912644,0.336723,0.741288,0.672638,0.27606,0.601138,0.587822,0.778988,0.81312,0.330301,0.960162,0.427648,0.582578,0.689141,0.848824,0.00607812,0.130635,0.962321,0.352002,0.692796,0.193673,0.314609,0.450019,0.333571,0.239949,0.553826,0.59676,0.331779,0.139139,0.894602,0.804194,0.0575988,0.558836,0.255226,0.924508,0.153753,0.8852,0.676531,0.900411,0.91619,0.461505,0.466604,0.568197,0.845115,0.177557,0.521861,0.590048,0.621756,0.991884,0.0340259,0.690365,0.86634,0.00434083,0.987099,0.931219,0.421575,0.131947,0.436487,0.0216467,0.59523,0.717905,0.881036,0.535994,0.0993775,0.927884,0.499695,0.536357,0.467967,0.366754,0.835677,0.048027,0.752967,0.933897,0.407902,0.187245,0.947484,0.848684,0.425159,0.954823,0.0144911,0.726697,0.350822,0.0281046,0.846294,0.988375,0.155053,0.741527,0.204027,0.894723,0.569608,0.15592,0.490374,0.60408,0.303088,0.934211,0.94585,0.568898,0.189625,0.232478,0.376216,0.710146,0.150496,0.735956,0.842468,0.643074,0.722272,0.00633967,0.281476,0.885579,0.840714,0.111448,0.682632,0.609953,0.80523,0.674186,0.146289,0.402921,0.0221444,0.237371,0.205024,0.813597,0.882168,0.553774,0.626876,0.153817,0.34142,0.110684,0.197776,0.935996,0.126397,0.224047,0.965946,0.894651,0.807407,0.91985,0.165996,0.74456,0.848765,0.473679,0.152264,0.612232,0.247025,0.995423,0.153252,0.751305,0.0522861,0.812912,0.0732238,0.163462,0.673527,0.204827,0.786704,0.397617,0.992604,0.530634,0.51931,0.396706,0.449548,0.13945,0.768537,0.315053,0.868994,0.740941,0.0736322,0.662526,0.214306,0.240945,0.272398,0.480019,0.388749,0.44992,0.866741,0.661474,0.458186,0.503181,0.344668,0.402491,0.117863,|0.110037,0.589217,0.995259,0.0481636,0.334101,0.420355,0.691422,0.474919,0.852196,0.586679,0.570971,0.269821,0.545222,0.0154531,0.425622,0.324263,0.677709,0.0484242,0.131199,0.730381,0.745856,0.50619,0.0926555,0.402925,0.844984,0.993854,0.949598,0.842325,0.113571,0.209779,0.846002,0.220087,0.394726,0.831377,0.249869,0.491748,0.00222892,0.538562,0.331422,0.98206,0.0567543,0.694624,0.510198,0.572285,0.65524,0.789573,0.281409,0.255267,0.931743,0.432666,0.723764,0.272492,0.579816,0.875459,0.607899,0.32268,0.0123918,0.407243,0.336443,0.259242,0.84618,0.696037,0.421337,0.172849,0.0400705,0.286831,0.52811,0.921701,0.701046,0.623196,0.696424,0.866567,0.824782,0.204441,0.049442,0.960329,0.708547,0.273522,0.402854,0.480466,0.626582,0.197768,0.552222,0.971063,0.101104,0.313873,0.36493,0.473819,0.706991,0.693096,0.358091,0.894064,0.0686719,0.359084,0.617419,0.911538,0.275464,0.551962,0.645238,0.43025,0.236467,0.00219506,0.385188,0.124275,0.855287,0.655231,0.0156222,0.532869,0.167398,0.803507,0.809318,0.47719,0.464793,0.408685,0.192489,0.83399,0.702579,0.665272,0.823089,0.100724,0.309817,0.982095,0.237327,0.460844,0.398637,0.474517,0.363347,0.840841,0.296289,0.729242,0.743969,0.966249,0.0633571,0.086801,0.470037,0.0886886,0.652891,0.875657,0.862019,0.211818,0.622428,0.492322,0.997116,0.142753,0.260763,0.465232,0.877983,0.474292,0.951101,0.547836,0.418688,0.537396,0.0785453,0.926069,0.557413,0.1752,0.432125,0.205444,0.502678,0.755659,0.48439,0.119411,0.553155,0.781317,0.237967,0.675458,0.980917,0.666548,0.622761,0.421223,0.854447,0.734922,0.719202,0.940261,0.08338,0.0342312,0.383157,0.807605,0.332172,0.671063,0.904875,0.836279,0.638596,0.629816,0.561676,0.421368,0.922549,0.266148,0.0215544,0.305952,0.557503,0.157693,0.705077,0.850811,0.562212,0.262891,0.155866,0.377797,0.000469923,0.58579,0.738167,0.466071,0.0164167,0.372442,0.153494,0.666577,0.175391,0.734754,0.743661,0.581461,0.329181,0.843057,0.4306,0.939638,0.733194,0.535893,0.590065,0.621175,0.779053,0.155324,0.602343,0.405707,0.344483,0.0636973,0.963082,0.238704,0.687078,0.496419,0.487896,0.784637,0.0748733,0.204857,0.971086,0.0866591,0.116417,0.153517,0.464798,0.167865,0.549772,0.662895,0.475883,0.353741,0.907929,0.600468,0.752845,0.445614,0.906548,0.155736,0.548011,0.614538,0.547658,0.641852,0.546066,0.163794,0.756085,0.697397,0.361051,0.00104749,0.751591,0.806341,0.0946618,0.543257,0.622747,0.325437,0.170832,0.556293,0.71803,0.543425,0.635442,0.603189,0.467214,0.837415,0.449731,0.704142,0.772435,0.929163,0.648703,0.976293,0.83334,0.691938,0.691239,0.809502,0.0583968,0.519903,0.573678,0.61129,0.609178,0.157113,0.219125,0.304855,0.395574,0.639857,0.261228,0.884084,0.231541,0.555154,0.417443,0.185262,0.408867,0.731588,0.501727,0.0179055,0.418413,0.0966469,0.0293868,0.16944,0.338071,0.740695,0.967111,0.710433,0.902344,0.882757,0.890083,0.116867,0.797161,0.100569,0.8449,0.950887,0.233592,0.00152266,0.829657,0.161759,0.0373297,0.0706532,0.728987,0.776535,0.457168,0.0775133,0.685373,0.586062,0.487413,0.919855,0.104828,0.680265,0.658671,0.992478,0.0726811,0.948283,0.950887,0.344067,0.616768,0.265328,0.169301,0.350705,0.962342,0.917709,0.0900238,0.310274,0.851063,0.695584,0.650447,0.639425,0.935158,0.929762,0.462113,0.460533,0.765797,0.899954,0.720782,0.352075,0.698077,0.399374,0.461452,0.219359,0.113834,0.208176,0.981268,0.46551,0.898815,0.466544,0.926735,0.117471,0.104951,0.579396,0.283037,0.718749,0.709907,0.631315,0.576523,0.432635,0.976509,0.681133,0.525627,0.839075,0.283407,0.830992,0.254206,0.62399,0.377725,0.856657,0.868145,0.956222,0.733466,0.501727,0.722179,0.456841,0.43975,0.746179,0.113107,0.479873,0.557192,0.301026,0.0126791,0.365063,0.0359448,0.979781,0.119063,0.579635,0.820088,0.377079,0.575873,0.855762,0.53094,0.38674,0.704708,0.661039,0.0443023,0.753504,0.806451,0.75628,0.467414,0.915777,0.00360203,0.322397,0.4702,0.816808,0.617141,0.727897,0.461302,0.540893,0.0331152,0.0254917,0.351935,0.459008,0.550069,0.215296,0.949282,0.455333,0.832224,0.611971,0.386892,0.852649,0.45973,0.254223,0.602483,0.183121,0.425592,0.378423,0.932625,0.630548,0.593167,0.966161,0.254114,0.660048,0.139206,0.340045,0.531336,0.850069,0.634167,0.755789,0.584233,0.106864,0.793787,0.982192,0.767112,0.538782,0.0991983,0.96211,0.132389,0.63668,0.641886,0.627627,0.944182,0.874411,0.350711,0.503385,0.149151,0.501079,0.450385,0.683979,0.330019,0.111926,0.200213,0.715774,0.35613,0.689731,0.631136,0.659255,0.0243347,0.0620235,0.898048,0.73432,0.494004,0.173408,0.890003,0.0313748,0.70415,0.462184,0.61783,0.706351,0.525843,0.477875,0.992023,0.771158,0.172363,0.241657,0.260677,0.0869393,0.00974739,0.476903,0.484739,0.755292,0.582026,0.493277,0.577626,0.323468,0.109352,0.322749,0.447839,0.403309,0.113089,0.708876,0.760898,0.648644,0.346037,0.509872,0.747291,0.738781,0.757628,0.231203,0.824494,0.869479,0.228521,0.344968,0.442926,0.493413,0.14237,0.776833,0.0960071,0.809062,0.239145,0.787429,0.342012,0.895322,0.923383,0.810342,0.791688,0.983865,0.487912,0.870071,0.358071,0.389928,0.0979895,0.608651,0.880446,0.540215,0.0491661,0.776755,0.0413724,0.996966,0.425268,0.616886,0.254859,0.360834,0.222893,0.26275,0.478046,0.32907,0.161334,0.0467018,0.525976,0.493071,0.434263,0.189949,0.889982,0.440658,0.854162,0.81472,0.771427,0.804364,0.759465,0.759785,0.522549,0.250421,0.324172,0.224336,0.820192,0.371136,0.894374,0.139299,0.378306,0.68796,0.0719926,0.432532,0.597246,0.352586,0.836521,0.463651,0.447721,0.40546,0.263416,0.976756,0.507508,0.927004,0.854558,0.463728,0.264795,0.984457,0.618949,0.326086,0.950579,0.0229023,0.32061,0.814202,0.677906,0.741667,0.847815,0.926483,0.259289,0.0689325,0.120897,0.0951995,0.406114,0.146955,0.921374,0.595831,0.778533,0.381925,0.262657,0.458673,0.241965,0.937951,0.65136,0.520737,0.371645,0.109584,0.256968,0.298049,0.834688,0.642248,0.0343301,0.984945,0.551285,0.379378,0.264118,0.0218659,0.0634074,0.204445,0.904106,0.751111,0.505459,0.822585,0.856361,0.55594,0.580106,0.548507,0.115785,0.841421,0.938624,0.0874137,0.443411,0.195949,0.651546,0.967973,0.957067,0.0217519,0.786442,0.240598,0.85444,0.817352,0.620979,0.489085,0.505407,0.586671,0.970608,0.193471,0.101309,0.0352899,0.748541,0.966953,0.797197,0.737373,0.865656,0.192102,0.623749,0.756673,0.818799,0.963489,0.576734,0.757952,0.00141823,0.338111,0.277704,0.233001,0.591352,0.180317,0.0499638,0.10808,0.879176,0.215768,0.683632,0.25091,0.275635,0.105311,0.370019,0.543951,0.5409,0.169425,0.350245,0.705473,0.697186,0.608816,0.0560412,0.702663,0.708335,0.944537,0.413069,0.439878,0.540244,0.767525,0.46478,0.371036,0.816473,0.494291,0.115267,0.812219,0.902941,0.246097,0.203444,0.853058,0.483046,0.0142968,0.0019902,0.332229,0.782221,0.73843,0.892071,0.972529,0.299696,0.137867,0.0317974,0.731237,0.332684,0.839829,0.902371,0.815654,0.119027,0.614504,0.631383,0.252738,0.791003,0.528695,0.412466,0.214761,0.455331,0.159095,0.453265,0.809676,0.782377,0.765403,0.147201,0.794737,0.0010671,0.903761,0.123605,0.0497435,0.939026,0.354102,0.599269,0.280738,0.440323,0.187284,0.605908,0.388312,0.547103,0.294875,0.523697,0.471878,0.397907,0.480774,0.707233,0.825718,0.225117,0.710188,0.71703,0.970879,0.249199,0.868005,0.272925,0.924304,0.754908,0.886257,0.358972,0.637312,0.429798,0.538914,0.677568,0.132232,0.188744,0.638667,0.959525,0.164366,0.00597101,0.305235,0.917452,0.424115,0.887571,0.372893,0.155124,0.00523978,0.386506,0.698758,0.436984,0.0563568,0.570924,0.307409,0.072811,0.546165,0.0868304,0.780564,0.562311,0.0169995,0.979686,0.19297,0.0578495,0.621263,0.111485,0.877363,0.299219,0.959289,0.395403,0.146368,0.284455,0.485858,0.518211,0.234454,0.367902,0.337265,0.950584,0.79783,0.708857,0.513061,0.215308,0.902703,0.95286,0.400939,0.214199,0.642334,0.837625,0.259982,0.537193,0.868529,0.977211,0.526622,0.747469,0.377484,0.146233,0.933725,0.659642,0.511286,0.796227,0.495249,0.576422,0.808972,0.0251642,0.373584,0.882606,0.55103,0.0775276,0.667644,0.0807325,0.94053,0.541154,0.727811,0.766438,0.0437964,0.589553,0.625449,0.486443,0.659301,0.291366,0.796249,0.0397059,0.761482,0.185199,0.521035,0.29446,0.347495,0.93661,0.672499,0.102651,0.379239,0.432677,0.231174,0.793666,0.08117,0.371698,0.641564,0.570186,0.59643,0.547215,0.884431,0.385427,0.916914,0.730342,0.563851,0.524559,0.437636,0.641567,0.767541,0.875085,0.367714,0.939074,0.844779,0.420818,0.730428,0.736985,0.120273,0.851791,0.626429,0.543819,0.375969,0.0605676,0.0653211,0.700638,0.113588,0.224751,0.189201,0.0371614,0.795884,0.173354,0.358216,0.158627,0.842966,0.579941,0.651022,0.957936,0.765502,0.872344,0.567402,0.669115,0.372172,0.556633,0.889433,0.610466,0.965446,0.932738,0.686834,0.726804,0.552929,0.204248,0.55079,0.120784,0.669265,0.175818,0.334762,0.997436,0.160547,0.0733037,0.769146,0.191336,0.801989,0.587084,0.579508,0.0343243,0.876612,0.15164,0.892231,0.60891,0.839219,0.0394167,0.991984,0.805893,0.911476,0.309338,0.616326,0.0873722,0.88332,0.941189,0.803355,0.453907,0.329128,0.515168,0.156032,0.125895,0.523252,0.197801,0.708891,0.354747,0.733237,0.240099,0.7167,0.776796,0.930389,0.673671,0.525656,0.158191,0.279805,0.960211,0.508675,|0.90627,0.503399,0.331269,0.279131,0.465483,0.408312,0.340177,0.0769593,0.0326954,0.636869,0.848144,0.180905,0.553718,0.663932,0.125729,0.235765,0.607457,0.865185,0.581172,0.000534832,0.405944,0.773504,0.528207,0.847896,0.308129,0.80749,0.0157072,0.123703,0.835615,0.201933,0.18082,0.826112,0.550977,0.69892,0.0839995,0.726512,0.0937022,0.243918,0.504222,0.864368,0.242682,0.132658,0.526439,0.993548,0.716939,0.000587642,0.754648,0.53586,0.848548,0.361002,0.0329147,0.423064,0.538244,0.932977,0.549912,0.154828,0.773211,0.460373,0.698135,0.170886,0.456765,0.535013,0.56462,0.249518,0.519317,0.919362,0.785623,0.519191,0.00881642,0.631224,0.118711,0.512413,0.956623,0.472866,0.966175,0.722701,0.871183,0.953435,0.54551,0.245073,0.272924,0.992457,0.891602,0.0752683,0.458907,0.92968,0.970069,0.733835,0.736265,0.04252,0.147272,0.886311,0.6382,0.653783,0.434384,0.321973,0.505522,0.520256,0.032675,0.893073,0.89603,0.557114,0.856167,0.330659,0.714032,0.97788,0.0124301,0.827825,0.222765,0.904384,0.0408117,0.363369,0.358669,0.620898,0.252989,0.00493252,0.716025,0.643205,0.203583,0.193752,0.358371,0.960343,0.0661304,0.240242,0.852919,0.224422,0.52463,0.306621,0.435278,0.978327,0.225743,0.281562,0.493865,0.333355,0.133122,0.995406,0.987198,0.567973,0.477432,0.913472,0.587131,0.11907,0.417075,0.503459,0.159959,0.232046,0.966409,0.893515,0.924646,0.650044,0.939488,0.986817,0.117792,0.667691,0.235511,0.245169,0.276052,0.822713,0.79108,0.0146272,0.822486,0.154285,0.987136,0.208655,0.546146,0.921137,0.222433,0.645414,0.428513,0.785188,0.707719,0.770287,0.680413,0.720079,0.890383,0.293019,0.302351,0.748815,0.268121,0.887035,0.09643,0.230827,0.353341,0.781269,0.306965,0.706618,0.553593,0.983412,0.513065,0.156996,0.774044,0.842727,0.0184062,0.883904,0.480625,0.559898,0.556599,0.146039,0.808203,0.291299,0.00649494,0.121642,0.470409,0.508133,0.919496,0.215717,0.327144,0.909575,0.676284,0.361849,0.843016,0.941867,0.157557,0.286627,0.544225,0.0317396,0.298042,0.752758,0.880535,0.190709,0.576128,0.841159,0.951115,0.592519,0.538308,0.954556,0.59091,0.379783,0.920614,0.297262,0.324833,0.0661438,0.270776,0.89237,0.168116,0.493434,0.355454,0.67643,0.713655,0.545732,0.935135,0.0585461,0.0334277,0.787551,0.124234,0.484724,0.50964,0.466399,0.777192,0.706753,0.967725,0.574254,0.451249,0.909652,0.0696289,0.128572,0.56053,0.36498,0.493536,0.456122,0.927339,0.327361,0.0141678,0.789349,0.685406,0.703494,0.578453,0.727659,0.775173,0.858422,0.772131,0.823254,0.352998,0.8967,0.516175,0.623941,0.556867,0.322331,0.130073,0.175899,0.0543333,0.228995,0.0248488,0.684092,0.276751,0.465472,0.300508,0.945518,0.0494957,0.332155,0.262954,0.651092,0.852791,0.509099,0.143318,0.406157,0.325589,0.117774,0.5339,0.676238,0.901739,0.242286,0.944038,0.206049,0.960894,0.159625,0.813697,0.100365,0.97078,0.574232,0.959493,0.878909,0.771954,0.490445,0.75588,0.990914,0.218632,0.762684,0.599507,0.799184,0.751778,0.543235,0.44748,0.918077,0.239496,0.538947,0.780055,0.373732,0.928942,0.387587,0.33611,0.951388,0.762831,0.291876,0.905633,0.18273,0.260425,0.641959,0.779531,0.988307,0.038443,0.836424,0.882752,0.416265,0.273279,0.896588,0.130742,0.631622,0.432973,0.632081,0.420233,0.0246786,0.225382,0.0393508,0.2284,0.0264221,0.862413,0.590431,0.448249,0.743464,0.327893,0.751801,0.557708,0.826133,0.306576,0.309045,0.908186,0.186915,0.603305,0.725809,0.535752,0.216079,0.265736,0.731392,0.582634,0.483637,0.0117447,0.801757,0.126251,0.21751,0.843193,0.558332,0.171244,0.946141,0.505322,0.237479,0.355068,0.30203,0.782186,0.857715,0.566417,0.114619,0.614294,0.186956,0.714539,0.900577,0.425418,0.101926,0.844912,0.311197,0.557948,0.200441,0.80808,0.675883,0.751097,0.487189,0.259259,0.773864,0.411906,0.456502,0.888142,0.393356,0.346449,0.262424,0.789875,0.635031,0.438322,0.190736,0.253671,0.216394,0.505943,0.952068,0.641939,0.868519,0.690442,0.416382,0.848605,0.853209,0.588442,0.615283,0.593134,0.574561,0.228166,0.523108,0.304725,0.504952,0.373533,0.17197,0.119666,0.918333,0.653156,0.529614,0.213737,0.876685,0.0156287,0.650522,0.413243,0.69109,0.367591,0.935934,0.872519,0.863471,0.28542,0.993125,0.865462,0.0576077,0.963037,0.212302,0.752667,0.329497,0.195427,0.436397,0.0415524,0.631066,0.15623,0.521154,0.235393,0.0225387,0.113296,0.335699,0.674022,0.880365,0.918624,0.143414,0.931739,0.888659,0.67984,0.0688724,0.7249,0.301164,0.217636,0.750501,0.939392,0.354912,0.281178,0.204862,0.835403,0.394351,0.176858,0.640405,0.298753,0.618157,0.0643809,0.701755,0.193377,0.32772,0.163276,0.944972,0.39017,0.149251,0.726364,0.656748,0.494806,0.961352,0.810768,0.80419,0.611452,0.983437,0.372333,0.160573,0.199262,0.745761,0.692569,0.213733,0.351574,0.144871,0.26602,0.482566,0.850826,0.544198,0.0845779,0.638862,0.945198,0.652498,0.529711,0.0289656,0.314974,0.822478,0.307196,0.540642,0.181708,0.932564,0.155892,0.253712,0.166137,0.299349,0.010975,0.0310366,0.886854,0.578372,0.777353,0.420723,0.311911,0.610749,0.46202,0.689601,0.0210783,0.268683,0.276636,0.504134,0.171567,0.784101,0.741529,0.114811,0.868309,0.780209,0.575465,0.557947,0.838379,0.360721,0.0652648,0.903929,0.353759,0.0272432,0.999809,0.190196,0.889193,0.833579,0.327493,0.717344,0.21967,0.20267,0.241845,0.118975,0.467096,0.890899,0.98625,0.210868,0.433297,0.249733,0.905868,0.810527,0.582405,0.925193,0.804063,0.226557,0.747412,0.400805,0.574821,0.400143,0.00973034,0.457345,0.929049,0.984806,0.744567,0.492041,0.817943,0.35192,0.419182,0.444488,0.894573,0.80541,0.299766,0.0768998,0.869068,0.122221,0.619485,0.631372,0.912522,0.4469,0.2251,0.871179,0.248439,0.258461,0.329499,0.162026,0.0443473,0.98899,0.732771,0.518752,0.855788,0.999551,0.775485,0.508834,0.314231,0.651349,0.908046,0.63031,0.285887,0.753731,0.827759,0.124547,0.570624,0.772139,0.95026,0.506964,0.505956,0.28014,0.866459,0.257843,0.14891,0.757349,0.72645,0.601038,0.657508,0.333067,0.640397,0.9625,0.179838,0.756403,0.157338,0.125202,0.406591,0.71157,0.303933,0.538886,0.941016,0.419476,0.0390416,0.897606,0.173463,0.103307,0.776906,0.00362903,0.253605,0.952901,0.17947,0.868875,0.866655,0.198071,0.774441,0.100679,0.808817,0.0683952,0.099983,0.792718,0.621195,0.280961,0.215349,0.125255,0.589788,0.333497,0.63557,0.613604,0.198564,0.409796,0.699191,0.298038,0.570303,0.0487899,0.46826,0.86972,0.12686,0.730027,0.905787,0.784214,0.869474,0.167628,0.166514,0.82456,0.905479,0.303921,0.793294,0.0186022,0.615079,0.605911,0.906065,0.475781,0.0402721,0.0653142,0.754318,0.249896,0.173813,0.572934,0.746499,0.650381,0.681777,0.807947,0.422242,0.36516,0.732982,0.21705,0.319757,0.933041,0.0405949,0.654584,0.178202,0.924201,0.707868,0.530018,0.248751,0.44407,0.324019,0.554897,0.730906,0.50588,0.672778,0.74061,0.39876,0.970346,0.383608,0.482226,0.0688072,0.497552,0.728007,0.881684,0.830167,0.501473,0.338914,0.621214,0.129533,0.0558734,0.282656,0.0592777,0.982218,0.176392,0.306167,0.688553,0.971757,0.984922,0.744266,0.361914,0.239204,0.875338,0.535982,0.49071,0.1721,0.524647,0.0372946,0.609236,0.227057,0.647267,0.2039,0.950939,0.0805766,0.413542,0.125372,0.556436,0.755374,0.660248,0.0901767,0.873475,0.963872,0.734043,0.209656,0.34979,0.745079,0.357339,0.610468,0.576821,0.428949,0.604451,0.635435,0.0381745,0.347453,0.220426,0.739353,0.133237,0.691887,0.0714671,0.414008,0.348903,0.999764,0.423865,0.79546,0.201027,0.325778,0.324849,0.840917,0.985576,0.704906,0.756777,0.94308,0.410657,0.45242,0.0627648,0.255142,0.885531,0.574397,0.703591,0.966921,0.492156,0.813406,0.714979,0.392449,0.171502,0.246113,0.385819,0.636272,0.902588,0.0520811,0.679368,0.224947,0.973687,0.282131,0.665638,0.778401,0.710085,0.444778,0.373007,0.0968549,0.794615,0.380039,0.633557,0.469516,0.284417,0.664661,0.872991,0.708589,0.00614685,0.550978,0.183429,0.867298,0.987021,0.0503461,0.743609,0.582179,0.822973,0.359592,0.240519,0.946464,0.38671,0.786178,0.612415,0.666447,0.40187,0.304791,0.586534,0.511319,0.358191,0.0347852,0.80305,0.622143,0.193709,0.235112,0.475389,0.446958,0.490968,0.154442,0.793376,0.493666,0.513332,0.812896,0.355447,0.183114,0.727017,0.951152,0.264173,0.791755,0.874287,0.788431,0.444426,0.0211138,0.380807,0.760496,0.932705,0.451541,0.972629,0.40096,0.416208,0.293997,0.33349,0.46398,0.326791,0.578598,0.737986,0.0625869,0.0685827,0.735176,0.883701,0.806544,0.456756,0.101825,0.486576,0.206898,0.890312,0.595663,0.0795912,0.199832,0.809064,0.570403,0.551381,0.0142496,0.716998,0.186796,0.958686,0.904719,0.187583,0.752372,0.067001,0.349619,0.523865,0.380988,0.765381,0.392916,0.160642,0.781246,0.266695,0.0930076,0.33124,0.649719,0.425907,0.964376,0.89214,0.0551912,0.531159,0.121225,0.925194,0.688068,0.36053,0.274541,0.760368,0.0502576,0.306409,0.281162,0.29614,0.3742,0.760558,0.223106,0.396335,0.0611155,0.97319,0.724259,0.141395,0.298056,0.518865,0.238858,0.114432,0.936806,0.233266,0.097061,0.743399,0.797917,0.603706,0.264465,0.259724,0.786593,0.868257,0.619556,0.984401,0.360357,0.756838,0.914616,0.106328,0.897097,0.396155,0.0483764,0.501351,0.58805,0.755618,0.70599,0.0978401,0.369233,0.556077,0.479641,0.544722,0.392625,0.00503767,0.0893556,0.319243,|0.775486,0.265004,0.643865,0.844162,0.00265563,0.569896,0.225192,0.250738,0.051405,0.758418,0.562275,0.989946,0.790371,0.0272449,0.252039,0.696023,0.88292,0.515948,0.137524,0.531317,0.469021,0.0783434,0.946615,0.576275,0.00696033,0.952854,0.383152,0.560697,0.696113,0.469017,0.190988,0.160035,0.635137,0.686273,0.437482,0.513472,0.304911,0.405974,0.138839,0.0822868,0.646728,0.077927,0.690621,0.763911,0.991162,0.783282,0.0424824,0.00952613,0.723114,0.727817,0.59157,0.56172,0.59507,0.680077,0.417861,0.499023,0.729574,0.431369,0.0277407,0.298996,0.777831,0.119924,0.755343,0.697248,0.545115,0.69799,0.929952,0.382538,0.0724415,0.728906,0.523597,0.90734,0.746907,0.88149,0.272074,0.407593,0.597222,0.0260927,0.418755,0.680627,0.893812,0.539805,0.41279,0.148417,0.951815,0.905992,0.0186974,0.0495318,0.462919,0.166416,0.554335,0.0629978,0.944162,0.150765,0.0308744,0.344228,0.331177,0.976623,0.415488,0.998326,0.0250582,0.308121,0.44157,0.890027,0.857195,0.721932,0.931083,0.690436,0.240394,0.727598,0.33962,0.152291,0.0985636,0.787911,0.691763,0.198374,0.500877,0.309545,0.907318,0.536793,0.744191,0.574715,0.60255,0.0741745,0.122677,0.174666,0.996596,0.568626,0.420093,0.500952,0.189273,0.557002,0.28879,0.283845,0.217308,0.287236,0.536257,0.230696,0.46298,0.510609,0.109269,0.759468,0.793796,0.548332,0.353846,0.974496,0.251197,0.869283,0.848301,0.919612,0.417287,0.888222,0.491167,0.782139,0.922877,0.198841,0.365586,0.45384,0.555132,0.157497,0.849483,0.202024,0.374735,0.587985,0.169,0.439999,0.327567,0.477906,0.61165,0.851955,0.305757,0.26315,0.303534,0.829994,0.930061,0.55448,0.42139,0.639161,0.648853,0.649187,0.642198,0.105869,0.184366,0.45836,0.35589,0.421197,0.336332,0.301296,0.754508,0.88898,0.692486,0.272482,0.298168,0.139052,0.545263,0.772534,0.9738,0.856548,0.434445,0.114412,0.350669,0.264757,0.141785,0.589166,0.490109,0.221579,0.93825,0.668388,0.0511844,0.0078038,0.578419,0.483686,0.134434,0.229498,0.584526,0.444714,0.467708,0.214494,0.632919,0.0494391,0.427315,0.196696,0.69892,0.936597,0.658592,0.646625,0.344042,0.39738,0.426169,0.64919,0.907004,0.899294,0.508229,0.509932,0.702238,0.405308,0.307719,0.724051,0.858691,0.777545,0.49023,0.809306,0.748922,0.469326,0.25187,0.195809,0.343399,0.192183,0.829631,0.401848,0.502897,0.102734,0.611292,0.490944,0.697753,0.153202,0.566874,0.881729,0.466578,0.49757,0.203317,0.458384,0.318266,0.784064,0.93611,0.0618176,0.144929,0.11965,0.325505,0.65532,0.11794,0.851856,0.890376,0.420634,0.059374,0.0338518,0.910304,0.848878,0.146203,0.0352943,0.851948,0.269828,0.0360487,0.978817,0.0301023,0.340947,0.885153,0.317637,0.138763,0.892162,0.277775,0.778913,0.147831,0.483375,0.381152,0.739769,0.997386,0.784307,0.28231,0.951785,0.711107,0.355666,0.548882,0.811846,0.469905,0.0233567,0.271218,0.734417,0.847963,0.507908,0.777844,0.696871,0.345812,0.298772,0.589367,0.458098,0.297282,0.608038,0.429355,0.685331,0.760215,0.793953,0.758523,0.504647,0.362798,0.119433,0.926127,0.639117,0.452673,0.874165,0.0520754,0.0238113,0.881601,0.10023,0.32025,0.440029,0.0375609,0.234532,0.342344,0.41431,0.141779,0.270787,0.347431,0.684562,0.715319,0.497529,0.0583347,0.943286,0.751132,0.844859,0.874484,0.842014,0.402987,0.246291,0.0598841,0.322682,0.586257,0.545102,0.780959,0.670308,0.810083,0.589651,0.370933,0.168224,0.32676,0.496069,0.866639,0.708424,0.443113,0.438018,0.425641,0.246123,0.529203,0.878008,0.659822,0.92546,0.704946,0.71934,0.17651,0.172268,0.553257,0.81997,0.203629,0.212278,0.753164,0.227441,0.985866,0.672173,0.548619,0.237846,0.199776,0.336593,0.326298,0.650326,0.442777,0.271035,0.916149,0.989388,0.556621,0.745944,0.435421,0.458305,0.10658,0.862838,0.397497,0.930273,0.733927,0.083956,0.279211,0.7143,0.665537,0.562415,0.388757,0.41428,0.00241339,0.32017,0.192049,0.659065,0.82742,0.326418,0.746178,0.543692,0.396184,0.0942563,0.926978,0.859492,0.864501,0.356769,0.598917,0.2996,0.153755,0.329838,0.132707,0.484327,0.960875,0.817165,0.893157,0.182146,0.0461888,0.213558,0.058834,0.576158,0.857937,0.857431,0.61546,0.00833225,0.851326,0.0460849,0.309093,0.307853,0.601677,0.148415,0.348119,0.587546,0.512296,0.575841,0.0575807,0.167565,0.239591,0.234569,0.010546,0.827642,0.329835,0.886552,0.923919,0.333387,0.511659,0.401906,0.799385,0.31278,0.589142,0.622466,0.796838,0.175348,0.877047,0.282966,0.25035,0.374842,0.839415,0.629362,0.416944,0.208829,0.140079,0.232322,0.239939,0.553653,0.85224,0.419032,0.0848186,0.697242,0.965974,0.225947,0.339237,0.0532942,0.220887,0.54391,0.907643,0.314984,0.146001,0.52948,0.910697,0.922669,0.6729,0.635038,0.145251,0.502752,0.993827,0.691474,0.207874,0.183108,0.190691,0.461763,0.383948,0.474073,0.0249364,0.239829,0.349339,0.0741003,0.0969858,0.82592,0.0646426,0.503286,0.320664,0.102232,0.172224,0.532032,0.505169,0.947161,0.274735,0.413992,0.06688,0.266147,0.100554,0.334265,0.261972,0.803118,0.826785,0.783771,0.967836,0.15154,0.636729,0.690278,0.548306,0.178565,0.99578,0.296742,0.850627,0.892952,0.512037,0.153309,0.406015,0.319708,0.556346,0.416287,0.773687,0.654807,0.382472,0.0126744,0.508635,0.672032,0.87126,0.322377,0.0129837,0.122129,0.621658,0.472191,0.499863,0.085584,0.0565801,0.909365,0.699129,0.217803,0.900495,0.645195,0.187919,0.09499,0.950392,0.412009,0.91518,0.161746,0.457443,0.569848,0.122945,0.956518,0.870047,0.0309169,0.483533,0.197908,0.897434,0.299123,0.564639,0.837418,0.569244,0.973938,0.207923,0.645975,0.729784,0.57247,0.265468,0.246426,0.415214,0.700832,0.415829,0.937091,0.53229,0.336744,0.828598,0.315162,0.243531,0.986927,0.922561,0.308007,0.0529314,0.288804,0.247987,0.292723,0.0859026,0.930924,0.443958,0.600991,0.483272,0.331393,0.882544,0.795434,0.660171,0.560679,0.351018,0.52764,0.756137,0.926943,0.382568,0.214086,0.401495,0.819794,0.237158,0.382548,0.598005,0.961344,0.883437,0.0419272,0.173509,0.924574,0.956318,0.573596,0.602874,0.295141,0.77039,0.754259,0.931363,0.15472,0.418057,0.0682371,0.537514,0.41891,0.21226,0.796089,0.0468145,0.0915509,0.967533,0.773888,0.850141,0.960436,0.833743,0.280867,0.925817,0.621295,0.332135,0.44176,0.939015,0.075828,0.0874999,0.445218,0.217729,0.181227,0.467313,0.0259761,0.300818,0.814065,0.749103,0.397185,0.388823,0.704908,0.591192,0.893702,0.403667,0.780915,0.745133,0.228983,0.275709,0.526615,0.0699526,0.164779,0.00150967,0.771572,0.804507,0.776611,0.280703,0.830962,0.897018,0.344589,0.821491,0.572131,0.650596,0.480862,0.556637,0.810791,0.340206,0.305007,0.43206,0.75017,0.344168,0.590318,0.83584,0.665527,0.239749,0.957247,0.459101,0.19218,0.0496369,0.221793,0.234272,0.527808,0.947296,0.0148979,0.203252,0.719096,0.0743195,0.0641468,0.856973,0.932149,0.122652,0.0979,0.848196,0.332615,0.830401,0.658144,0.800857,0.564579,0.0581555,0.930596,0.410577,0.939759,0.0374006,0.224522,0.834857,0.204621,0.277929,0.688635,0.883993,0.923797,0.398069,0.502715,0.0855325,0.851129,0.220358,0.712608,0.625879,0.916572,0.065725,0.814664,0.536737,0.811585,0.473424,0.773678,0.983211,0.31414,0.629583,0.116161,0.841192,0.638853,0.0722796,0.843412,0.836368,0.544732,0.619248,0.0241036,0.763809,0.297023,0.642427,0.504461,0.658271,0.097334,0.072244,0.896102,0.563473,0.220065,0.00247592,0.870022,0.348947,0.856613,0.650271,0.357874,0.489999,0.416415,0.72418,0.15052,0.301153,0.231441,0.921604,0.450019,0.0685434,0.853873,0.805628,0.58219,0.0726284,0.385488,0.503233,0.954812,0.709882,0.0158473,0.826976,0.164433,0.768714,0.710766,0.430614,0.654884,0.0824018,0.384192,0.341162,0.0958403,0.481484,0.761773,0.147023,0.351397,0.136101,0.107867,0.405521,0.916662,0.078309,0.453724,0.769534,0.574642,0.084388,0.341376,0.709295,0.298334,0.29175,0.254353,0.529829,0.576781,0.385474,0.274081,0.80015,0.564015,0.592695,0.301863,0.418488,0.177173,0.0979227,0.66656,0.857197,0.34712,0.657533,0.440165,0.815631,0.485775,0.0971846,0.720888,0.616798,0.787222,0.663584,0.378826,0.182403,0.081772,0.232858,0.337056,0.471577,0.990709,0.780132,0.465772,0.848332,0.108148,0.616202,0.246532,0.908257,0.717277,0.455722,0.907437,0.771145,0.075386,0.2953,0.284726,0.903297,0.89228,0.430024,0.742362,0.892454,0.311569,0.0942612,0.173787,0.952248,0.76263,0.0612299,0.670852,0.141701,0.816514,0.153109,0.0872304,0.310769,0.834441,0.867003,0.827586,0.839518,0.322786,0.819076,0.993268,0.0987908,0.779702,0.0798984,0.655892,0.810903,0.788336,0.228156,0.992891,0.523172,0.0702289,0.633162,0.894067,0.499194,0.0982165,0.57342,0.95787,0.5989,0.405468,0.652226,0.346194,0.745611,0.47916,0.647846,0.611527,0.322061,0.56402,0.1612,0.381534,0.128866,0.567449,0.95453,0.519097,0.614445,0.236448,0.0452677,0.0356108,0.262609,0.495802,0.795892,0.437102,0.714472,0.906676,0.532848,0.374296,0.95551,0.882642,0.310196,0.35924,0.699585,0.903124,0.317624,0.409599,0.508796,0.801998,0.984039,0.127439,0.464962,0.278879,0.300827,0.0964409,0.236337,0.733021,0.257085,0.689023,0.272463,0.695507,0.506263,0.722943,0.308237,0.399067,0.954018,0.64231,0.722632,0.197589,0.0731387,0.951897,0.993745,0.58747,0.291317,0.0393162,0.911127,0.795672,0.456423,0.994336,0.0983813,0.963161,0.267958,0.76429,0.0980017,0.598906,0.113746,0.858809,0.934854,0.563561,|0.833429,0.136049,0.563153,0.63943,0.138131,0.3033,0.502538,0.319106,0.746015,0.21763,0.78823,0.970824,0.181805,0.732706,0.850129,0.396686,0.300981,0.0995076,0.262819,0.286811,0.400127,0.480721,0.696343,0.165395,0.171266,0.119893,0.465799,0.902957,0.657488,0.336178,0.80002,0.278083,0.992169,0.456936,0.0893952,0.222186,0.355139,0.928398,0.682959,0.102284,0.318323,0.621239,0.305604,0.339039,0.981148,0.247324,0.605019,0.359227,0.786413,0.0939656,0.245454,0.209342,0.926045,0.901498,0.94618,0.126436,0.169342,0.102661,0.714361,0.371657,0.124249,0.231402,0.600002,0.163001,0.445294,0.616203,0.559964,0.937406,0.421418,0.642906,0.935902,0.725797,0.880213,0.143816,0.85013,0.521035,0.306897,0.788612,0.68903,0.582979,0.365415,0.540382,0.811718,0.395477,0.505122,0.286481,0.297153,0.549845,0.809065,0.130018,0.747585,0.975994,0.517932,0.395216,0.128267,0.0993136,0.916353,0.0931269,0.944065,0.392131,0.968486,0.690351,0.229663,0.404991,0.71094,0.0379041,0.525028,0.992578,0.0768135,0.432638,0.754285,0.181118,0.460983,0.532525,0.226354,0.105212,0.744798,0.0879427,0.0235887,0.640724,0.0529123,0.680214,0.205811,0.922669,0.332861,0.501095,0.885684,0.66266,0.805819,0.0768439,0.264701,0.450024,0.815817,0.818171,0.297649,0.137164,0.73348,0.629724,0.502629,0.637605,0.527032,0.587402,0.737958,0.622466,0.490184,0.739588,0.686429,0.22376,0.594625,0.131204,0.322975,0.829195,0.149161,0.862389,0.939022,0.721724,0.759758,0.910185,0.186971,0.418511,0.169976,0.770757,0.797335,0.00442785,0.0968565,0.977081,0.436465,0.47827,0.567193,0.848128,0.192935,0.53179,0.862645,0.556312,0.0173539,0.868157,0.204393,0.909108,0.142622,0.436686,0.172981,0.0165198,0.911514,0.508579,0.890893,0.526332,0.534149,0.819402,0.923978,0.38113,0.569405,0.502855,0.399455,0.41759,0.26086,0.284355,0.701056,0.275441,0.383967,0.0901644,0.959141,0.801539,0.0214136,0.223916,0.751919,0.917831,0.804106,0.965191,0.896569,0.449343,0.256662,0.733413,0.335364,0.0839148,0.631491,0.346751,0.881109,0.396094,0.155433,0.272933,0.103168,0.79786,0.17659,0.975472,0.859463,0.269702,0.626838,0.0549133,0.44803,0.359247,0.487907,0.675048,0.368687,0.568967,0.75499,0.348238,0.68648,0.35602,0.136749,0.736216,0.969727,0.233159,0.39201,0.980741,0.619,0.514805,0.607181,0.294292,0.0822883,0.566048,0.15408,0.78506,0.683553,0.288497,0.697044,0.503241,0.455327,0.59908,0.07181,0.740693,0.087364,0.0640368,0.0281348,0.842099,0.898752,0.518816,0.91086,0.655977,0.824559,0.532885,0.56545,0.0550021,0.740741,0.420772,0.857134,0.574498,0.287556,0.0635364,0.411472,0.0954541,0.659206,0.400374,0.863966,0.0957481,0.46689,0.463529,0.0229726,0.0665113,0.767138,0.538038,0.830045,0.518117,0.114335,0.364449,0.497282,0.929048,0.846142,0.998505,0.336204,0.841169,0.712499,0.694278,0.0832763,0.601151,0.135785,0.0277154,0.363968,0.273663,0.427205,0.419133,0.488967,0.522047,0.186902,0.545436,0.807603,0.342335,0.56233,0.0792769,0.089659,0.76667,0.549041,0.294466,0.293725,0.282469,0.359323,0.240505,0.990766,0.51993,0.937255,0.617854,0.672445,0.265204,0.00592226,0.167363,0.483234,0.288321,0.0339108,0.0586651,0.353599,0.72602,0.209207,0.735648,0.282523,0.111817,0.463051,0.379515,0.555323,0.191381,0.402625,0.465076,0.897258,0.0874833,0.0158135,0.505318,0.492988,0.600615,0.350484,0.978805,0.248557,0.512631,0.30597,0.318044,0.653994,0.891116,0.585311,0.957681,0.24194,0.0452099,0.112193,0.957279,0.452243,0.524894,0.875998,0.36657,0.675749,0.550228,0.610649,0.365585,0.647083,0.000759721,0.852389,0.223048,0.67125,0.506111,0.937701,0.440116,0.00105053,0.279261,0.583579,0.0939303,0.189496,0.3824,0.254719,0.98135,0.555297,0.0660599,0.146063,0.0653446,0.933797,0.378984,0.298733,0.245746,0.741978,0.781033,0.804025,0.964339,0.496902,0.8538,0.214499,0.459523,0.725385,0.490988,0.586479,0.637603,0.752469,0.551637,0.0740035,0.712382,0.329707,0.526189,0.345354,0.853499,0.72204,0.679899,0.15856,0.0756928,0.766608,0.805171,0.323264,0.854594,0.858452,0.227471,0.254299,0.311571,0.236443,0.0910357,0.894017,0.297217,0.0152385,0.373869,0.464877,0.650385,0.586442,0.799643,0.300858,0.331425,0.318047,0.963241,0.547346,0.442423,0.589878,0.389334,0.0735111,0.827875,0.251704,0.448406,0.513834,0.692509,0.530989,0.610704,0.738617,0.250359,0.148917,0.779966,0.173665,0.728221,0.557329,0.455214,0.267789,0.376907,0.541661,0.0987729,0.366133,0.931993,0.88274,0.996859,0.759806,0.046465,0.225674,0.139505,0.955942,0.241298,0.767975,0.244012,0.451797,0.870846,0.690439,0.257243,0.739172,0.239234,0.421483,0.995549,0.0721058,0.265431,0.726719,0.441004,0.605104,0.0118752,0.0380825,0.145574,0.975448,0.107231,0.853453,0.909288,0.900524,0.414897,0.289694,0.189467,0.931785,0.548452,0.0127571,0.216279,0.654459,0.158853,0.318371,0.993618,0.406795,0.664051,0.162948,0.99374,0.393838,0.0759121,0.15087,0.241371,0.280311,0.252876,0.252551,0.350092,0.588584,0.167848,0.753466,0.368872,0.729889,0.96197,0.727793,0.643146,0.735386,0.789137,0.58303,0.109132,0.0311128,0.992034,0.342935,0.663297,0.167632,0.346441,0.842364,0.865988,0.609263,0.002581,0.598855,0.385711,0.620336,0.032325,0.704639,0.685718,0.885888,0.793009,0.0181425,0.662039,0.26907,0.981637,0.107184,0.166607,0.648975,0.266132,0.425679,0.767949,0.971037,0.986194,0.582026,0.663549,0.246197,0.686756,0.980873,0.686891,0.421332,0.366025,0.221317,0.454824,0.20342,0.0901465,0.389289,0.991403,0.247674,0.561769,0.532815,0.14395,0.565726,0.559274,0.741778,0.2414,0.583001,0.157318,0.465435,0.784634,0.450231,0.146609,0.0119312,0.0171515,0.0913931,0.346076,0.342394,0.240205,0.754292,0.245247,0.254245,0.349827,0.187922,0.0751945,0.45148,0.390458,0.37672,0.45464,0.97193,0.203901,0.289319,0.00902689,0.325479,0.357539,0.25698,0.0583412,0.731997,0.706035,0.125898,0.413243,0.152297,0.0991767,0.106727,0.613048,0.318433,0.352747,0.286271,0.415367,0.127653,0.204403,0.862073,0.101624,0.265344,0.0538856,0.826927,0.695883,0.953966,0.953726,0.942031,0.434777,0.16056,0.0150468,0.415454,0.308067,0.823256,0.473081,0.334089,0.442046,0.0844489,0.630807,0.428627,0.521579,0.618127,0.820475,0.962438,0.943171,0.500028,0.825399,0.997023,0.209778,0.444238,0.218023,0.323945,0.812747,0.871394,0.658999,0.117919,0.90626,0.455516,0.727001,0.153256,0.861465,0.51611,0.37293,0.997358,0.499787,0.616716,0.785101,0.0976611,0.00222421,0.844904,0.788974,0.97212,0.926023,0.218782,0.625283,0.94504,0.994039,0.134152,0.0985034,0.633763,0.516706,0.308405,0.376305,0.345489,0.235097,0.795753,0.628253,0.854359,0.943395,0.240246,0.139681,0.349602,0.730091,0.255029,0.320876,0.976075,0.195445,0.378827,0.638886,0.669464,0.0465623,0.23441,0.3907,0.244465,0.60799,0.135893,0.520531,0.318722,0.548969,0.31146,0.0975383,0.502979,0.566154,0.231726,0.855415,0.9901,0.0405793,0.483273,0.364184,0.309564,0.520169,0.219866,0.250632,0.122843,0.458779,0.490501,0.575071,0.863617,0.73829,0.610091,0.459905,0.0839609,0.459471,0.886393,0.887339,0.65433,0.421819,0.327794,0.924639,0.788668,0.665353,0.427643,0.574499,0.260402,0.618189,0.59792,0.838944,0.18513,0.852884,0.118802,0.874587,0.585161,0.801713,0.865593,0.940605,0.872926,0.981259,0.653753,0.108726,0.44425,0.356817,0.320583,0.373483,0.269227,0.969776,0.328491,0.60203,0.483526,0.33972,0.404069,0.775883,0.921125,0.535655,0.628187,0.456677,0.353054,0.960705,0.123409,0.197643,0.534771,0.905637,0.0284967,0.643534,0.0612327,0.376063,0.810546,0.809936,0.263182,0.676912,0.153996,0.548313,0.271553,0.943558,0.114666,0.774989,0.0127404,0.682808,0.180394,0.29271,0.635239,0.155584,0.591248,0.161781,0.0866742,0.761954,0.919684,0.126554,0.29289,0.699297,0.438628,0.205808,0.829826,0.108601,0.25361,0.907302,0.386209,0.990637,0.523364,0.0886894,0.224433,0.873664,0.466346,0.317963,0.470737,0.372394,0.288654,0.0330259,0.59698,0.68809,0.701049,0.757676,0.941554,0.746842,0.752383,0.0575239,0.926302,0.477209,0.195889,0.704247,0.345224,0.735891,0.78291,0.599297,0.614955,0.304803,0.655455,0.620175,0.048319,0.456909,0.446979,0.249192,0.355594,0.148287,0.0148625,0.996088,0.673234,0.517461,0.835442,0.281072,0.55447,0.914173,0.0010438,0.310277,0.324028,0.59902,0.402716,0.252965,0.564669,0.173054,0.767594,0.454887,0.724154,0.00613517,0.386077,0.426191,0.62777,0.553649,0.532003,0.856167,0.932012,0.84261,0.0450265,0.90611,0.939295,0.286948,0.537646,0.757747,0.266575,0.938531,0.797667,0.401214,0.186071,0.153546,0.581872,0.884844,0.993023,0.943627,0.319157,0.468201,0.407131,0.857383,0.273056,0.988685,0.657533,0.942356,0.502737,0.676389,0.825159,0.799954,0.808408,0.790222,0.788973,0.207967,0.179039,0.59137,0.00185466,0.630489,0.0370359,0.363634,0.271461,0.0607882,0.146906,0.915757,0.642312,0.452196,0.343794,0.52613,0.843041,0.299236,0.0110688,0.615543,0.19962,0.0103068,0.171229,0.81659,0.987041,0.935797,0.229011,0.771418,0.0304367,0.845613,0.786595,0.519328,0.886839,0.356052,0.00480205,0.426948,0.248318,0.674564,0.973842,0.896789,0.868802,0.16534,0.423235,0.883323,0.517996,0.579164,0.035853,0.949471,0.751953,0.894202,0.84907,0.741377,0.491003,0.740317,0.190578,0.837374,0.945171,0.824566,0.67996,0.577139,0.455129,0.136841,0.231915,0.128985,0.621168,0.440559,0.229942,0.0798091,0.154489,0.0119516,0.487647,0.100609,|0.74033,0.806804,0.20738,0.916014,0.917221,0.569167,0.245995,0.871096,0.695653,0.911551,0.217809,0.807813,0.721714,0.329973,0.21481,0.271879,0.603792,0.72159,0.898633,0.390088,0.0423349,0.941273,0.0113051,0.572701,0.636482,0.0475614,0.213314,0.13425,0.0332552,0.966214,0.203762,0.636247,0.504658,0.38877,0.276652,0.195874,0.71415,0.882805,0.824366,0.364637,0.376934,0.659568,0.258666,0.606658,0.0918036,0.395938,0.300355,0.0648713,0.139454,0.718702,0.174618,0.112656,0.90712,0.0404785,0.0627803,0.0565944,0.919666,0.740998,0.869619,0.739748,0.306133,0.325435,0.067798,0.475434,0.244921,0.813371,0.903435,0.292834,0.417823,0.954282,0.7557,0.552519,0.0603181,0.0925264,0.267632,0.996097,0.173223,0.522945,0.755374,0.412268,0.101535,0.865614,0.0377158,0.24493,0.716674,0.826081,0.731641,0.833165,0.499421,0.775168,0.194898,0.710707,0.750465,0.751061,0.493638,0.613576,0.922955,0.713805,0.226023,0.651827,0.791502,0.436999,0.682873,0.180049,0.378251,0.309613,0.223364,0.791997,0.494251,0.245033,0.0290303,0.729065,0.0647242,0.811024,0.22272,0.0167154,0.428443,0.174958,0.392178,0.0372623,0.300463,0.711821,0.334347,0.484084,0.722321,0.649825,0.629485,0.197876,0.606672,0.225266,0.259843,0.648697,0.250176,0.614368,0.241988,0.364209,0.990652,0.405113,0.426254,0.420273,0.544508,0.733864,0.210949,0.581411,0.103044,0.440876,0.137011,0.712127,0.247317,0.136895,0.127755,0.648824,0.410931,0.920926,0.938672,0.266767,0.651425,0.251623,0.201725,0.999522,0.0045768,0.552938,0.774302,0.61947,0.812362,0.682925,0.819609,0.381493,0.311163,0.360558,0.167238,0.36352,0.422197,0.206659,0.0805805,0.331701,0.735222,0.625473,0.720814,0.195929,0.142245,0.509839,0.55637,0.989239,0.215964,0.974162,0.135533,0.0660787,0.84716,0.0649792,0.983278,0.893527,0.831332,0.0307676,0.723945,0.98998,0.783853,0.946041,0.284432,0.176833,0.472633,0.546413,0.202385,0.280411,0.129969,0.0641983,0.056666,0.0262123,0.224831,0.384801,0.811514,0.268801,0.0864314,0.806935,0.358761,0.481665,0.141432,0.28194,0.221804,0.900186,0.698214,0.50276,0.346353,0.434051,0.309077,0.740813,0.805696,0.503302,0.769758,0.140525,0.330256,0.174091,0.639543,0.989231,0.235553,0.350058,0.263735,0.93143,0.198951,0.0661831,0.00123954,0.102716,0.438726,0.231627,0.712423,0.662775,0.168058,0.0519365,0.400016,0.615837,0.363673,0.416308,0.938225,0.829759,0.343262,0.126773,0.866098,0.385396,0.298864,0.485031,0.207906,0.129912,0.159774,0.360947,0.244873,0.698166,0.334944,0.224792,0.871721,0.350083,0.36959,0.142327,0.464016,0.758007,0.485319,0.49136,0.805597,0.272043,0.533563,0.826224,0.0290647,0.380668,0.856698,0.738654,0.463035,0.42759,0.813124,0.0891305,0.901663,0.209625,0.110959,0.0702281,0.928088,0.725603,0.534201,0.0799112,0.67118,0.535421,0.832423,0.113928,0.739232,0.258773,0.299677,0.688,0.257537,0.19355,0.398362,0.822971,0.696645,0.735797,0.823455,0.0556599,0.987051,0.479794,0.711245,0.971814,0.0466067,0.324627,0.175971,0.330189,0.4801,0.83829,0.6166,0.605887,0.735741,0.0338023,0.380095,0.856249,0.417172,0.915917,0.393526,0.476539,0.88368,0.567174,0.829736,0.911908,0.452546,0.63305,0.604967,0.0938316,0.481406,0.153867,0.739443,0.578084,0.372898,0.453941,0.665935,0.323096,0.914503,0.863641,0.300728,0.166283,0.285638,0.588247,0.804737,0.281393,0.447468,0.351327,0.622552,0.0538443,0.984165,0.244888,0.893056,0.115513,0.586679,0.446819,0.0532827,0.631715,0.408217,0.00449884,0.326525,0.286093,0.942948,0.777633,0.675666,0.0845191,0.331318,0.70173,0.219463,0.0852256,0.0927666,0.226859,0.764222,0.971413,0.099333,0.43369,0.0391595,0.364023,0.879564,0.696023,0.194636,0.403899,0.866752,0.450596,0.498871,0.291252,0.927735,0.0146304,0.199607,0.678786,0.923781,0.557426,0.697583,0.31258,0.657716,0.968369,0.6788,0.408235,0.932742,0.180225,0.687791,0.432353,0.310133,0.517392,0.822698,0.690562,0.571867,0.954614,0.810739,0.587478,0.546691,0.163811,0.566023,0.225782,0.613917,0.90746,0.0604779,0.0181724,0.833238,0.591047,0.733074,0.963636,0.385,0.612686,0.930562,0.231964,0.868928,0.410629,0.182607,0.877539,0.169095,0.510269,0.862108,0.958714,0.528355,0.170181,0.827403,0.952712,0.7448,0.845247,0.186345,0.818515,0.468501,0.783766,0.611283,0.584199,0.941349,0.787928,0.184244,0.690629,0.496891,0.31123,0.959355,0.37145,0.571548,0.508019,0.966468,0.815678,0.19116,0.577592,0.673135,0.157139,0.0882136,0.767347,0.629413,0.886578,0.327793,0.714086,0.224783,0.000440538,0.511546,0.483766,0.862726,0.295659,0.634319,0.745221,0.509955,0.605055,0.538358,0.264143,0.348112,0.658462,0.465729,0.498246,0.769393,0.633955,0.643512,0.0258709,0.94369,0.442812,0.846808,0.47159,0.496238,0.347594,0.144603,0.318901,0.129565,0.453399,0.741473,0.962687,0.330691,0.886651,0.517885,0.766364,0.298504,0.527365,0.704505,0.756628,0.360469,0.426466,0.641709,0.259354,0.952165,0.373544,0.555949,0.895535,0.477917,0.731304,0.0915367,0.577116,0.0693105,0.74326,0.538384,0.0968092,0.391261,0.863849,0.50774,0.857661,0.0374803,0.63023,0.424067,0.390839,0.520464,0.124536,0.114506,0.0473455,0.61781,0.788265,0.946272,0.951288,0.64659,0.0192305,0.382723,0.824736,0.414009,0.124774,0.107612,0.0558032,0.978601,0.735767,0.998227,0.731695,0.539468,0.558833,0.529219,0.205702,0.76489,0.213528,0.171469,0.233202,0.129054,0.927919,0.911667,0.279044,0.824615,0.268981,0.694392,0.103913,0.888676,0.995074,0.63754,0.745741,0.29723,0.325755,0.649809,0.868947,0.686573,0.00192136,0.476993,0.755262,0.399497,0.367727,0.796283,0.301196,0.246528,0.111869,0.773391,0.82511,0.95416,0.355018,0.409859,0.466145,0.828252,0.504922,0.647604,0.12956,0.386022,0.0332823,0.940545,0.457281,0.198647,0.0951232,0.122565,0.715862,0.521192,0.622579,0.589204,0.540618,0.694984,0.316057,0.0706517,0.0604188,0.938827,0.951118,0.455603,0.539345,0.0719841,0.953117,0.463251,0.706221,0.801937,0.704701,0.00205743,0.248348,0.62693,0.407338,0.770019,0.227384,0.899361,0.299243,0.753169,0.945057,0.21146,0.563633,4.47631e-05,0.344187,0.171902,0.585514,0.926236,0.141533,0.504265,0.268054,0.0560748,0.133738,0.121056,0.145869,0.0934367,0.326107,0.117139,0.693243,0.8654,0.374415,0.580146,0.986192,0.531031,0.317405,0.543045,0.133345,0.633379,0.180762,0.431228,0.925569,0.535647,0.677895,0.567631,0.144068,0.672454,0.320137,0.746514,0.0236389,0.961131,0.0252839,0.617283,0.381732,0.15725,0.360364,0.647655,0.15687,0.388259,0.752967,0.740393,0.60426,0.0222834,0.103877,0.724188,0.93423,0.69833,0.639007,0.987205,0.699915,0.399402,0.413553,0.935282,0.192715,0.417893,0.553191,0.337666,0.058007,0.24409,0.64754,0.0754573,0.920922,0.0428658,0.685517,0.702582,0.166511,0.491822,0.752073,0.860833,0.676291,0.131753,0.410258,0.94953,0.71494,0.964576,0.95426,0.143965,0.229724,0.0314527,0.996894,0.280895,0.384668,0.247805,0.628666,0.209296,0.500174,0.941748,0.831216,0.584926,0.739943,0.942927,0.626426,0.667113,0.269622,0.10959,0.237791,0.0420886,0.865428,0.519567,0.73288,0.605866,0.397246,0.496584,0.00375551,0.471343,0.928494,0.406646,0.667133,0.644506,0.480202,0.959638,0.324314,0.856266,0.486239,0.261112,0.298918,0.515969,0.991803,0.968338,0.155279,0.243655,0.0564589,0.990965,0.80563,0.518372,0.111023,0.860767,0.260846,0.937396,0.996359,0.616352,0.6627,0.0315253,0.840417,0.748343,0.759542,0.372659,0.723305,0.7582,0.926942,0.597551,0.960612,0.415602,0.261653,0.961194,0.620288,0.696022,0.713847,0.760802,0.617117,0.587062,0.0777129,0.330307,0.8968,0.844417,0.705719,0.127643,0.288145,0.605198,0.163273,0.414126,0.148386,0.0804719,0.174592,0.452592,0.0670224,0.113301,0.446147,0.23425,0.29936,0.574747,0.117637,0.866768,0.34135,0.676917,0.172908,0.272535,0.375165,0.909996,0.825149,0.578249,0.424688,0.265616,0.838066,0.324861,0.0927163,0.698124,0.780643,0.648842,0.0171141,0.0951446,0.541202,0.0425417,0.0568312,0.845232,0.165571,0.460949,0.980356,0.962136,0.770134,0.370331,0.113915,0.10257,0.791052,0.788386,0.929466,0.557309,0.0339218,0.442547,0.502541,0.577657,0.988206,0.817199,0.345325,0.893315,0.222329,0.947017,0.835803,0.421007,0.432249,0.743428,0.736994,0.870147,0.259261,0.254471,0.282392,0.933842,0.209948,0.192372,0.315074,0.64843,0.899411,0.415657,0.611999,0.448506,0.0700377,0.690998,0.885627,0.251483,0.165006,0.767807,0.799181,0.644362,0.877096,0.199274,0.598002,0.156612,0.673684,0.888673,0.654754,0.423094,0.01222,0.668723,0.719766,0.808378,0.691781,0.743595,0.52821,0.385149,0.163408,0.681191,0.904307,0.795612,0.968011,0.00165194,0.843939,0.542371,0.90007,0.687979,0.135608,0.820566,0.699555,0.13319,0.886031,0.954507,0.286598,0.054584,0.366551,0.92954,0.280138,0.196981,0.325027,0.605763,0.831431,0.720407,0.717128,0.865938,0.732403,0.829198,0.134792,0.799643,0.650846,0.866203,0.900206,0.897056,0.990993,0.7351,0.526326,0.171653,0.251086,0.990417,0.546484,0.515311,0.151762,0.457673,0.416766,0.632236,0.175357,0.979628,0.646277,0.731626,0.848053,0.987327,0.636419,0.806929,0.530824,0.714172,0.29899,0.740017,0.465126,0.342739,0.964702,0.735149,0.0445642,0.413662,0.0622844,0.156829,0.743506,0.251308,0.852583,0.872655,0.482562,0.587594,0.116517,0.917039,0.0745993,0.823708,0.828999,0.424893,0.743808,0.967193,0.350388,0.731633,0.691181,0.770794,0.646815,0.925485,0.994357,0.468828,0.409924,|0.143713,0.128611,0.00207847,0.543459,0.41344,0.510176,0.0362447,0.291643,0.961958,0.225109,0.912018,0.327087,0.250251,0.135643,0.0689161,0.836423,0.136384,0.0534757,0.293494,0.116183,0.884662,0.910465,0.714083,0.516956,0.389171,0.768864,0.535291,0.778696,0.173561,0.846534,0.804884,0.069164,0.155338,0.277207,0.449794,0.387096,0.462508,0.00712568,0.793536,0.948912,0.340749,0.745374,0.475141,0.343531,0.942213,0.414323,0.767094,0.172877,0.446865,0.146355,0.649363,0.892323,0.777639,0.363975,0.592743,0.699327,0.547896,0.917332,0.513378,0.0960038,0.208713,0.831843,0.529554,0.961721,0.431211,0.461596,0.978626,0.544657,0.619722,0.959214,0.212289,0.496536,0.167539,0.805205,0.962127,0.53954,0.558336,0.720103,0.0864943,0.724431,0.482813,0.312651,0.816693,0.275987,0.523165,0.717214,0.873582,0.318706,0.462088,0.608822,0.687898,0.156796,0.842397,0.762341,0.588613,0.223142,0.477986,0.386626,0.706899,0.427021,0.633154,0.0302026,0.722508,0.283337,0.0115241,0.176738,0.870937,0.370856,0.281188,0.310162,0.982518,0.92972,0.0240433,0.930268,0.656137,0.91752,0.889142,0.157636,0.255145,0.700487,0.617965,0.51166,0.498751,0.955944,0.284369,0.15754,0.504785,0.591403,0.299351,0.262037,0.0541561,0.721905,0.310457,0.444618,0.0926932,0.151919,0.449847,0.548909,0.160675,0.119574,0.054673,0.982338,0.324183,0.883434,0.947662,0.840647,0.173444,0.21445,0.585049,0.446072,0.751916,0.861285,0.0598144,0.530059,0.875342,0.673886,0.772405,0.912653,0.105719,0.649354,0.517048,0.354466,0.165831,0.332541,0.0480958,0.612312,0.935153,0.877729,0.766109,0.538435,0.458575,0.648672,0.284943,0.890888,0.508892,0.0948134,0.00320911,0.739388,0.676122,0.93581,0.468456,0.819239,0.774532,0.400563,0.245247,0.854561,0.930887,0.650254,0.413553,0.574489,0.489975,0.868714,0.572972,0.557741,0.0640678,0.229872,0.812141,0.62504,0.652792,0.56316,0.899233,0.785843,0.473281,0.130968,0.335817,0.260891,0.862491,0.821584,0.797075,0.190549,0.899876,0.410756,0.161009,0.478321,0.87793,0.259377,0.900558,0.519855,0.880155,0.833084,0.366303,0.903295,0.985083,0.0521154,0.800631,0.412677,0.316534,0.383474,0.116644,0.240147,0.550272,0.279937,0.0112134,0.723775,0.36721,0.234914,0.292253,0.383852,0.555833,0.131797,0.723039,0.958173,0.0289457,0.486697,0.379747,0.634725,0.434327,0.917133,0.5366,0.91187,0.121949,0.767993,0.0376869,0.915786,0.623629,0.278611,0.701498,0.617497,0.337444,0.249684,0.202261,0.665558,0.56632,0.697261,0.916742,0.173683,0.286276,0.780443,0.966712,0.916641,0.454419,0.487279,0.427698,0.803537,0.66919,0.908461,0.0261185,0.927445,0.103746,0.830926,0.571831,0.119718,0.831537,0.059635,0.21282,0.1081,0.34995,0.442543,0.108473,0.0236513,0.642789,0.854372,0.00875252,0.50209,0.371721,0.59908,0.608434,0.740032,0.186454,0.80295,0.64725,0.928967,0.332749,0.247303,0.739764,0.529506,0.636856,0.473286,0.171592,0.978769,0.0888245,0.625727,0.566698,0.0162545,0.554666,0.533203,0.274258,0.409516,0.0464028,0.210577,0.712542,0.541734,0.98862,0.0942442,0.0264022,0.856185,0.280073,0.884001,0.780398,0.814405,0.878083,0.902163,0.0988135,0.581264,0.532103,0.571236,0.891185,0.604499,0.986259,0.19231,0.618619,0.244744,0.790548,0.74286,0.818306,0.232932,0.453077,0.839722,0.600284,0.735293,0.689493,0.278262,0.629373,0.0293807,0.568033,0.659056,0.777135,0.129233,0.0195309,0.170912,0.522143,0.147632,0.128347,0.902656,0.430464,0.906031,0.264712,0.66758,0.0785312,0.277488,0.943363,0.969449,0.855341,0.896859,0.731361,0.620414,0.182106,0.42315,0.66248,0.939031,0.264916,0.198996,0.627255,0.388693,0.400898,0.313223,0.293566,0.236551,0.129623,0.763777,0.176366,0.632792,0.197313,0.0795907,0.612564,0.73537,0.288462,0.475611,0.177419,0.965814,0.954877,0.874915,0.604748,0.10077,0.65742,0.619552,0.582166,0.0318794,0.634577,0.8589,0.412919,0.335556,0.962393,0.637851,0.579946,0.821415,0.749378,0.786187,0.838592,0.907038,0.473285,0.49087,0.558882,0.227057,0.969734,0.838916,0.561305,0.971321,0.667857,0.702577,0.199364,0.30336,0.723485,0.21094,0.920625,0.4523,0.128095,0.413911,0.751838,0.801413,0.322508,0.237962,0.0380965,0.948758,0.359129,0.528443,0.2663,0.328061,0.54599,0.727839,0.58573,0.518393,0.538565,0.37864,0.993321,0.499666,0.580536,0.440672,0.811105,0.100564,0.714525,0.584036,0.0171244,0.494709,0.557342,0.0634553,0.614293,0.994763,0.692246,0.143763,0.425271,0.0197365,0.707027,0.102156,0.764127,0.550916,0.950947,0.895909,0.940121,0.631573,0.930812,0.183991,0.119897,0.0438516,0.506548,0.600925,0.861369,0.404512,0.435709,0.530155,0.0923141,0.808727,0.467437,0.9107,0.58518,0.705199,0.562016,0.394151,0.588908,0.523257,0.214341,0.61494,0.606389,0.601436,0.641932,0.537914,0.892772,0.148854,0.916806,0.0720652,0.331256,0.680996,0.826598,0.731117,0.11504,0.960961,0.546239,0.86039,0.745885,0.82741,0.965033,0.954605,0.0182344,0.906615,0.0964135,0.485982,0.892465,0.401814,0.878735,0.513284,0.967774,0.219977,0.245342,0.19842,0.0789294,0.91278,0.27291,0.586809,0.831249,0.939889,0.377644,0.136914,0.248476,0.0259058,0.178824,0.109475,0.642375,0.457989,0.721726,0.913172,0.844382,0.797383,0.534556,0.493014,0.862068,0.226661,0.0542943,0.479357,0.854997,0.748392,0.514068,0.188603,0.430974,0.543871,0.151149,0.722923,0.69015,0.984448,0.616533,0.644855,0.318135,0.00421768,0.885053,0.758147,0.554875,0.564871,0.0579655,0.528751,0.217606,0.631052,0.872074,0.37401,0.336421,0.235348,0.678935,0.48108,0.165627,0.341456,0.785558,0.0332664,0.297855,0.478218,0.507915,0.684084,0.432755,0.457087,0.489111,0.562975,0.437367,0.305427,0.407571,0.805077,0.647469,0.124723,0.389079,0.642724,0.810547,0.651481,0.816284,0.104967,0.143687,0.111083,0.0377283,0.490877,0.343889,0.432585,0.0135781,0.999103,0.89023,0.416585,0.814435,0.331232,0.391838,0.97207,0.36733,0.407709,0.713676,0.89766,0.293717,0.918408,0.717779,0.629284,0.984836,0.58233,0.888984,0.460245,0.321962,0.417704,0.000898838,0.811167,0.658226,0.701416,0.606107,0.047196,0.235039,0.45699,0.260224,0.422972,0.39963,0.205268,0.324863,0.56166,0.242354,0.0259385,0.982934,0.566291,0.0326594,0.859083,0.0210744,0.503192,0.516643,0.694886,0.311248,0.480942,0.298575,0.567473,0.845766,0.722408,0.981423,0.0800827,0.112726,0.565681,0.213552,0.721877,0.342521,0.893221,0.54298,0.107054,0.847794,0.24426,0.221079,0.851768,0.749773,0.611835,0.0990845,0.0161633,0.582507,0.832818,0.613686,0.0569924,0.793723,0.474422,0.799478,0.330185,0.633519,0.773036,0.566727,0.473261,0.0360588,0.150505,0.465263,0.222728,0.774495,0.363573,0.998712,0.0902197,0.701697,0.92349,0.498038,0.728183,0.229305,0.744972,0.366545,0.860742,0.0285687,0.0247144,0.227141,0.015083,0.0225945,0.311668,0.858747,0.604426,0.0768303,0.873308,0.844186,0.858525,0.410766,0.871571,0.186045,0.484131,0.109313,0.780734,0.397831,0.0143372,0.301677,0.817017,0.333892,0.355652,0.0759739,0.322154,0.376702,0.565072,0.989046,0.755879,0.211799,0.68075,0.514709,0.300939,0.45362,0.686016,0.168032,0.552724,0.288984,0.703818,0.81916,0.810221,0.579812,0.647324,0.616294,0.955997,0.755008,0.646714,0.0624717,0.209591,0.386192,0.422735,0.927273,0.663076,0.845839,0.956167,0.00277299,0.993527,0.268223,0.797561,0.190837,0.0225941,0.567352,0.329292,0.819973,0.852822,0.511843,0.469958,0.5704,0.4094,0.0209751,0.973281,0.709361,0.250604,0.521893,0.629831,0.439342,0.783006,0.870812,0.204558,0.969468,0.0527155,0.191705,0.301405,0.342767,0.973253,0.248954,0.89185,0.759983,0.707232,0.665306,0.106659,0.402271,0.489256,0.572627,0.710139,0.211307,0.874506,0.438714,0.566281,0.0791209,0.510821,0.853585,0.719078,0.922053,0.52513,0.709657,0.0763547,0.424092,0.335801,0.794716,0.973198,0.733473,0.801727,0.773887,0.621397,0.304113,0.436756,0.763159,0.749231,0.637803,0.0457045,0.936752,0.337292,0.312581,0.515884,0.986908,0.7789,0.0623925,0.609619,0.149429,0.898901,0.378095,0.160963,0.966817,0.260781,0.78255,0.507278,0.525786,0.0827843,0.0202644,0.584459,0.353151,0.359347,0.585753,0.438577,0.962774,0.0655031,0.955157,0.801588,0.576627,0.0993591,0.967914,0.682309,0.429665,0.171569,0.418651,0.758723,0.876349,0.78098,0.0201827,0.0809721,0.327869,0.831785,0.232053,0.944148,0.107677,0.520516,0.896006,0.47928,0.123932,0.178501,0.873849,0.182104,0.980345,0.752478,0.255048,0.549919,0.333229,0.966425,0.934947,0.162732,0.692628,0.0938329,0.0648739,0.0115115,0.937643,0.873323,0.633656,0.865425,0.42962,0.423211,0.170843,0.17854,0.877395,0.559532,0.97769,0.773168,0.989654,0.299468,0.261426,0.937858,0.368219,0.325884,0.0499049,0.159702,0.471572,0.000781953,0.347066,0.266742,0.243902,0.0919328,0.711586,0.475906,0.843094,0.0680329,0.660999,0.891888,0.407033,0.477049,0.0185385,0.989656,0.771502,0.81103,0.280846,0.971533,0.462297,0.273694,0.620458,0.679403,0.645964,0.803154,0.142421,0.288324,0.0738335,0.0744154,0.873035,0.99578,0.576461,0.649864,0.365395,0.721068,0.58846,0.273202,0.505774,0.890569,0.556583,0.557154,0.591938,0.979039,0.841231,0.171922,0.316039,0.309013,0.276286,0.771749,0.682352,0.144523,0.124505,0.756167,0.483126,0.453671,0.379394,0.267782,0.0990475,0.209386,0.99963,0.125629,0.0877877,0.494515,0.8379,0.940949,0.721265,0.915451,0.602236,0.843195,0.17745,0.620635,0.634496,0.272878,0.113331,0.997115,0.200579,0.268525,0.265475,0.204043,|0.485217,0.127982,0.90034,0.41214,0.896811,0.486297,0.672835,0.685037,0.0363065,0.607935,0.388028,0.404916,0.0157641,0.502135,0.486995,0.982651,0.973062,0.347437,0.40327,0.453413,0.940417,0.750802,0.437142,0.440728,0.154916,0.838655,0.309507,0.862577,0.361061,0.35555,0.568255,0.783612,0.162215,0.732308,0.125578,0.232881,0.462223,0.271205,0.273287,0.837154,0.525527,0.772768,0.916688,0.492527,0.783101,0.057085,0.162529,0.196659,0.71348,0.0325899,0.530392,0.398814,0.530042,0.92509,0.550102,0.79572,0.502278,0.150484,0.284456,0.0728018,0.396143,0.707482,0.184009,0.242139,0.53607,0.915106,0.200887,0.861295,0.915806,0.977526,0.440344,0.383679,0.9146,0.844431,0.714566,0.918661,0.542287,0.722996,0.0568514,0.428306,0.257209,0.0442992,0.888416,0.538379,0.535919,0.801589,0.696789,0.425943,0.521564,0.573214,0.104544,0.00559294,0.209184,0.372775,0.787647,0.0751356,0.929565,0.949209,0.442371,0.432546,0.94734,0.740998,0.672305,0.0473992,0.787557,0.273234,0.0723589,0.83237,0.531677,0.350455,0.429923,0.392984,0.814074,0.0618634,0.427077,0.901632,0.270796,0.366584,0.692518,0.655072,0.0549047,0.589519,0.116561,0.142898,0.359569,0.724366,0.980168,0.833575,0.0329548,0.184129,0.469471,0.649594,0.523294,0.169751,0.218835,0.451618,0.61849,0.519319,0.333397,0.849712,0.599773,0.672499,0.187825,0.937312,0.96856,0.806033,0.952956,0.578858,0.559757,0.208824,0.955892,0.665693,0.352007,0.909071,0.681251,0.701059,0.0815776,0.158086,0.0179793,0.486068,0.21309,0.312211,0.89011,0.637359,0.329744,0.425482,0.942224,0.267053,0.695487,0.678973,0.544076,0.712406,0.849952,0.801579,0.930525,0.166541,0.0231252,0.484449,0.190816,0.412052,0.492088,0.46755,0.50715,0.030637,0.98499,0.390916,0.91378,0.196823,0.727681,0.248427,0.559126,0.842956,0.676948,0.861049,0.51117,0.824457,0.4553,0.0930439,0.0196983,0.384971,0.912725,0.996668,0.38776,0.604212,0.684547,0.0426556,0.103887,0.988348,0.985499,0.246379,0.140696,0.870696,0.922669,0.941634,0.670537,0.133372,0.421982,0.630985,0.815643,0.534014,0.748483,0.598923,0.258685,0.747242,0.450552,0.702704,0.928858,0.659179,0.0565118,0.491146,0.804967,0.258435,0.714555,0.292463,0.870555,0.93719,0.706483,0.0239199,0.265387,0.995762,0.75329,0.289009,0.173835,0.590007,0.0827104,0.313516,0.772809,0.676051,0.524317,0.458454,0.35781,0.0467405,0.219619,0.510657,0.349258,0.305808,0.720302,0.982695,0.755023,0.562516,0.148977,0.458435,0.194546,0.326477,0.366259,0.207892,0.730314,0.85593,0.70281,0.591061,0.510147,0.367069,0.677238,0.419229,0.880014,0.357645,0.576146,0.296283,0.280299,0.590999,0.744646,0.0387089,0.648369,0.332477,0.0184981,0.690685,0.20348,0.771154,0.675924,0.0107925,0.70679,0.176712,0.792383,0.245621,0.47428,0.930222,0.549884,0.75948,0.910548,0.0651695,0.0475045,0.806942,0.584549,0.703817,0.15598,0.355479,0.723366,0.830353,0.915286,0.812489,0.569052,0.62738,0.546867,0.707093,0.64282,0.756754,0.634831,0.657196,0.640158,0.621401,0.127228,0.980031,0.667555,0.373605,0.648941,0.693785,0.841933,0.477424,0.562948,0.678762,0.795672,0.130339,0.993517,0.72534,0.736685,0.444096,0.810542,0.458042,0.624343,0.316202,0.341719,0.686531,0.831686,0.480474,0.423225,0.163669,0.412492,0.313203,0.271686,0.818275,0.559497,0.941075,0.823785,0.119301,0.0906889,0.0531554,0.52673,0.385962,0.958577,0.981221,0.439246,0.968855,0.336312,0.940745,0.857329,0.711365,0.470149,0.285074,0.868937,0.0763795,0.794532,0.863978,0.743583,0.45434,0.0214955,0.45328,0.484058,0.286485,0.335724,0.222561,0.759643,0.717653,0.360618,0.00920731,0.718883,0.856421,0.740027,0.580891,0.55752,0.786956,0.452631,0.76461,0.041005,0.294996,0.385796,0.414532,0.89002,0.514562,0.700894,0.332239,0.616834,0.313372,0.385645,0.547944,0.620152,0.641861,0.9683,0.9331,0.455271,0.579289,0.69333,0.260244,0.703063,0.0317954,0.0100509,0.0935844,0.348661,0.563312,0.561285,0.025731,0.873457,0.0488485,0.257426,0.949992,0.100811,0.247823,0.598386,0.737169,0.274239,0.494548,0.60133,0.699921,0.759554,0.436206,0.000322104,0.408289,0.169239,0.485295,0.215827,0.246053,0.057137,0.687969,0.780158,0.0382355,0.29918,0.0589083,0.534561,0.395367,0.0356125,0.0273212,0.146729,0.889798,0.285241,0.608966,0.558044,0.619854,0.244492,0.20003,0.506911,0.703747,0.243718,0.0908853,0.0404372,0.120669,0.536041,0.919144,0.363437,0.115275,0.83686,0.465723,0.791789,0.380527,0.170468,0.996458,0.912597,0.939735,0.655394,0.310948,0.910461,0.382418,0.866379,0.0729226,0.782295,0.0908881,0.0331362,0.424679,0.714319,0.602339,0.587439,0.978345,0.0704646,0.471059,0.419755,0.281037,0.105223,0.381677,0.304189,0.192428,0.89111,0.437173,0.0209986,0.63524,0.44859,0.563803,0.538871,0.569779,0.917387,0.175042,0.592615,0.837578,0.360083,0.902023,0.101718,0.775405,0.916838,0.298881,0.579903,0.656673,0.226779,0.89077,0.372943,0.843218,0.194899,0.0769191,0.89383,0.627521,0.133163,0.133801,0.798579,0.376342,0.0117111,0.762882,0.494342,0.117576,0.404974,0.733344,0.445652,0.0076921,0.972483,0.0342908,0.377401,0.842277,0.690894,0.843204,0.548252,0.395534,0.0137051,0.194032,0.38696,0.438406,0.812179,0.686528,0.181348,0.0198435,0.634551,0.55906,0.957202,0.60893,0.236658,0.0886146,0.911059,0.886799,0.165866,0.702223,0.706569,0.174609,0.705942,0.366618,0.304875,0.612063,0.201242,0.967511,0.945796,0.442635,0.450545,0.77766,0.250216,0.313882,0.282614,0.706121,0.430544,0.040744,0.989411,0.997999,0.781677,0.425581,0.285485,0.452156,0.346695,0.251507,0.731713,0.063086,0.397444,0.91378,0.934175,0.88163,0.140166,0.0246889,0.185829,0.793637,0.333659,0.333194,0.154317,0.218557,0.559278,0.926823,0.223475,0.613296,0.27645,0.767912,0.48557,0.876067,0.77997,0.524471,0.16465,0.640188,0.379399,0.0905343,0.815872,0.578921,0.218319,0.407008,0.768448,0.544872,0.519936,0.461318,0.275735,0.455186,0.65869,0.195885,0.781407,0.593176,0.396879,0.41218,0.291998,0.930752,0.878217,0.265871,0.0397025,0.764214,0.585518,0.40764,0.936041,0.80517,0.461052,0.409141,0.222716,0.946934,0.599454,0.691114,0.809667,0.414053,0.861997,0.11079,0.348138,0.973809,0.575792,0.968931,0.872675,0.620719,0.0212002,0.476464,0.0410711,0.853499,0.294128,0.526951,0.981936,0.565555,0.157522,0.85564,0.605019,0.0728515,0.871573,0.186993,0.967351,0.782044,0.99215,0.153351,0.694293,0.405392,0.61502,0.725208,0.554477,0.279734,0.327342,0.821369,0.0587573,0.919011,0.881485,0.324808,0.638815,0.219712,0.938834,0.845174,0.211403,0.406889,0.824036,0.234646,0.313732,0.414946,0.751572,0.246339,0.216294,0.0823606,0.242388,0.76536,0.19239,0.874424,0.361936,0.751391,0.927357,0.505146,0.299353,0.251577,0.427476,0.929708,0.443625,0.401789,0.184546,0.661439,0.318084,0.925909,0.820812,0.256043,0.27676,0.580684,0.374671,0.885086,0.993329,0.498114,0.672165,0.957633,0.000231445,0.92513,0.156807,0.287224,0.18085,0.901911,0.992746,0.161937,0.850588,0.0601729,0.118976,0.818948,0.068721,0.539049,0.557449,0.70937,0.824494,0.18849,0.592645,0.535666,0.154819,0.0280709,0.68692,0.826824,0.688042,0.443295,0.667272,0.10387,0.445362,0.785478,0.053973,0.278054,0.948852,0.662904,0.856952,0.246841,0.617518,0.139798,0.779372,0.383566,0.949796,0.104841,0.417882,0.455304,0.415348,0.464565,0.415843,0.650229,0.550924,0.281957,0.870304,0.763311,0.345095,0.222586,0.348372,0.222805,0.244248,0.0154406,0.32504,0.424067,0.61945,0.977715,0.523303,0.0182874,0.98441,0.171201,0.715732,0.364461,0.240597,0.715039,0.409564,0.859833,0.00707024,0.751783,0.748905,0.44107,0.72162,0.0823987,0.0689355,0.971509,0.855587,0.00189525,0.0178446,0.949355,0.457215,0.415743,0.275152,0.480781,0.051744,0.701396,0.0731091,0.230041,0.777871,0.990279,0.197378,0.682703,0.419949,0.777256,0.793289,0.82318,0.634087,0.748494,0.493426,0.928215,0.738178,0.317569,0.383652,0.0397276,0.384636,0.847896,0.186479,0.951904,0.744014,0.0982172,0.82725,0.634302,0.785013,0.0911922,0.910729,0.738205,0.996602,0.350769,0.257207,0.822043,0.129141,0.769307,0.0969256,0.0161787,0.102222,0.628078,0.217936,0.31763,0.61374,0.719669,0.244102,0.795093,0.606567,0.351939,0.373028,0.342558,0.807865,0.967799,0.225055,0.886334,0.993643,0.884814,0.71523,0.590541,0.825387,0.226124,0.299887,0.315474,0.351435,0.924381,0.733885,0.280943,0.768926,0.390992,0.709463,0.580363,0.082873,0.251161,0.590537,0.645723,0.112515,0.774522,0.110451,0.782808,0.844671,0.359877,0.3451,0.21658,0.294863,0.0685025,0.0882825,0.261271,0.320896,0.967107,0.676304,0.0716287,0.882851,0.30144,0.990277,0.598434,0.271772,0.571097,0.231593,0.339554,0.649743,0.89705,0.635473,0.487879,0.312542,0.132335,0.85937,0.819092,0.401358,0.171185,0.188126,0.357692,0.476685,0.677184,0.765697,0.722082,0.104518,0.959108,0.635981,0.785971,0.248825,0.647801,0.201792,0.198454,0.21321,0.333835,0.769042,0.509145,0.78694,0.789987,0.164252,0.210491,0.500234,0.933656,0.0833544,0.0213262,0.502779,0.237732,0.010254,0.139871,0.462526,0.324164,0.185199,0.608221,0.603382,0.0281858,0.0673877,0.712809,0.936229,0.203779,0.739693,0.745297,0.700488,0.307524,0.806511,0.0584759,0.0140322,0.833699,0.422395,0.629792,0.0303625,0.429241,0.276093,0.362931,0.567173,0.964924,0.580868,0.495392,0.115773,0.44619,0.957333,0.514424,0.547344,0.870704,0.849556,0.83221,0.182965,0.606024,0.54596,0.753998,|0.894472,0.266795,0.804034,0.26439,0.427826,0.373528,0.21485,0.848619,0.875495,0.386735,0.0075199,0.910075,0.1168,0.387653,0.649187,0.544204,0.810662,0.767943,0.914213,0.188933,0.100536,0.288852,0.0646764,0.582816,0.864533,0.81619,0.000175416,0.180974,0.977239,0.390694,0.169363,0.955766,0.481663,0.653899,0.275276,0.053974,0.357717,0.688194,0.1005,0.202834,0.176077,0.869561,0.0444396,0.716341,0.97724,0.0590937,0.230902,0.839696,0.377034,0.990568,0.168416,0.255003,0.953982,0.154064,0.248965,0.164405,0.409532,0.92531,0.667182,0.0531477,0.124067,0.750088,0.464104,0.126544,0.930229,0.660104,0.228025,0.345779,0.18403,0.649533,0.191097,0.863102,0.249085,0.0791861,0.481161,0.424889,0.209732,0.264041,0.864922,0.41312,0.91586,0.843576,0.72848,0.050245,0.984654,0.837172,0.145595,0.326637,0.240172,0.436761,0.902255,0.130779,0.91025,0.434035,0.0933567,0.857863,0.440041,0.049279,0.471403,0.335227,0.750295,0.734367,0.391513,0.937148,0.379487,0.600024,0.926449,0.603216,0.890163,0.54444,0.952317,0.237876,0.561891,0.115699,0.646001,0.475781,0.0197759,0.511609,0.270859,0.382309,0.534212,0.82795,0.982855,0.647736,0.892796,0.0854251,0.296021,0.926081,0.541244,0.144539,0.782586,0.665742,0.948787,0.73221,0.150559,0.883891,0.260048,0.0774539,0.0519928,0.156677,0.593239,0.535284,0.36545,0.653884,0.582268,0.636985,0.401509,0.163573,0.899868,0.347378,0.675737,0.575992,0.117706,0.503147,0.143203,0.947092,0.220963,0.936139,0.444849,0.53286,0.170871,0.188024,0.984065,0.0631795,0.85807,0.618896,0.195056,0.703367,0.687784,0.928521,0.190255,0.640473,0.623806,0.563301,0.70035,0.0774018,0.0998778,0.370402,0.468689,0.572173,0.228934,0.455951,0.660364,0.232785,0.361059,0.797048,0.0774947,0.846599,0.162073,0.463086,0.966411,0.627122,0.92626,0.0618395,0.967128,0.16175,0.0969715,0.575051,0.754151,0.890221,0.571101,0.614893,0.321293,0.050888,0.247006,0.177499,0.540898,0.162109,0.926249,0.713217,0.0598291,0.168368,0.201821,0.520648,0.785811,0.599227,0.00709224,0.581032,0.342797,0.912837,0.897657,0.007029,0.252632,0.84979,0.80745,0.322439,0.364923,0.0456848,0.0955842,0.804112,0.644595,0.0368396,0.506494,0.394141,0.717201,0.0888985,0.861742,0.282419,0.0502616,0.442252,0.330974,0.920328,0.742239,0.181792,0.663031,0.128732,0.594887,0.0949017,0.478016,0.211205,0.52456,0.470477,0.0612746,0.681031,0.924967,0.0164003,0.0939071,0.063902,0.778992,0.132786,0.875224,0.197597,0.0693247,0.901658,0.944501,0.519094,0.308601,0.502657,0.0312564,0.458978,0.0783532,0.193638,0.660771,0.125568,0.66227,0.176121,0.985636,0.556205,0.672856,0.722229,0.55028,0.927386,0.525693,0.212423,0.0582951,0.227099,0.783905,0.779804,0.267542,0.653264,0.635977,0.794803,0.706268,0.903955,0.43214,0.458853,0.705998,0.0937845,0.257361,0.233825,0.531696,0.815483,0.0592241,0.376568,0.56851,0.197049,0.0384516,0.458413,0.401143,0.336891,0.935477,0.770303,0.407036,0.854226,0.342055,0.461242,0.591106,0.206413,0.592854,0.800263,0.598262,0.761949,0.328207,0.357039,0.271146,0.763124,0.670981,0.576102,0.722462,0.812736,0.190039,0.88619,0.26821,0.639334,0.7954,0.0592372,0.0115859,0.787126,0.919317,0.965045,0.698268,0.597352,0.410762,0.303121,0.919333,0.804623,0.79991,0.510847,0.237801,0.00652963,0.260521,0.540167,0.242077,0.831818,0.254489,0.416373,0.79435,0.717964,0.159173,0.283413,0.501928,0.880576,0.338201,0.961917,0.456349,0.223468,0.285403,0.115363,0.78787,0.851976,0.425672,0.274494,0.974306,0.497064,0.179002,0.327491,0.428659,0.164041,0.202965,0.102648,0.203544,0.970515,0.382004,0.156009,0.942366,0.246631,0.519511,0.202866,0.6221,0.275103,0.868935,0.606236,0.985509,0.873978,0.73247,0.540449,0.0790289,0.514884,0.591219,0.416381,0.0216279,0.189838,0.85449,0.336631,0.758318,0.703485,0.280264,0.274407,0.78196,0.384169,0.711982,0.854266,0.314958,0.589938,0.309583,0.0150577,0.555055,0.779997,0.646861,0.552609,0.296177,0.978655,0.0622708,0.345801,0.0805656,0.499438,0.7978,0.0306548,0.181991,0.0512648,0.875012,0.423233,0.120808,0.424737,0.874316,0.0960948,0.890444,0.628407,0.0120444,0.685555,0.966742,0.0122365,0.382487,0.829188,0.54529,0.71053,0.764993,0.441608,0.317217,0.460359,0.912674,0.573039,0.633564,0.112255,0.568787,0.56542,0.586938,0.613494,0.347105,0.204139,0.607103,0.695444,0.369035,0.421212,0.914804,0.425185,0.756985,0.780047,0.487895,0.786178,0.689382,0.863758,0.535731,0.759075,0.229588,0.606203,0.700333,0.644274,0.643141,0.540552,0.29184,0.939177,0.0736515,0.111691,0.661046,0.708763,0.343659,0.574611,0.167857,0.322243,0.521735,0.260986,0.420285,0.87947,0.814017,0.113133,0.323748,0.452656,0.637518,0.982172,0.104774,0.485674,0.224351,0.13577,0.74033,0.415799,0.607564,0.0738072,0.655103,0.669544,0.50381,0.675251,0.441648,0.298099,0.875062,0.436027,0.103658,0.185236,0.835469,0.854435,0.723249,0.336991,0.147287,0.994883,0.0539384,0.883308,0.252374,0.076,0.780198,0.517809,0.423908,0.929123,0.260133,0.657522,0.160634,0.669607,0.750914,0.348087,0.0106156,0.980989,0.994926,0.0161766,0.627278,0.209154,0.744402,0.400853,0.271378,0.726706,0.26827,0.209437,0.0560822,0.241871,0.763679,0.810332,0.579997,0.0802462,0.934516,0.342882,0.372885,0.674655,0.393662,0.121053,0.820274,0.0937929,0.366044,0.818518,0.734884,0.985759,0.0872138,0.857746,0.757396,0.0945269,0.754364,0.872705,0.34525,0.815917,0.062923,0.0284839,0.319689,0.517412,0.681716,0.34472,0.103011,0.623922,0.882139,0.0188536,0.238187,0.0473173,0.219151,0.946917,0.265288,0.923172,0.38605,0.136412,0.697434,0.853921,0.0226407,0.863262,0.481172,0.115418,0.876932,0.746672,0.340947,0.747332,0.471787,0.843652,0.290202,0.159312,0.635912,0.318207,0.0441123,0.0350175,0.667268,0.782802,0.666847,0.315926,0.154851,0.312552,0.42795,0.585415,0.593532,0.326413,0.153328,0.341961,0.386949,0.0296391,0.270212,0.373484,0.442955,0.282048,0.465055,0.84428,0.462326,0.161532,0.676157,0.633806,0.242738,0.850116,0.814001,0.691527,0.905074,0.364789,0.17635,0.986845,0.589806,0.886864,0.561728,0.0322599,0.714581,0.270054,0.386952,0.221522,0.700699,0.524131,0.178099,0.319768,0.571539,0.486205,0.624512,0.313009,0.721121,0.872042,0.892949,0.162295,0.559312,0.789215,0.459645,0.340334,0.669877,0.730195,0.80273,0.337586,0.0585645,0.640334,0.0861264,0.416183,0.910891,0.939676,0.470729,0.167903,0.601812,0.656243,0.074605,0.573284,0.651221,0.921055,0.723811,0.554288,0.102364,0.396032,0.15351,0.514979,0.236758,0.271505,0.995882,0.13083,0.654935,0.145793,0.0772748,0.738358,0.0539108,0.0435615,0.50445,0.882792,0.127418,0.413679,0.848688,0.257717,0.271269,0.559617,0.0967938,0.466668,0.186072,0.653516,0.0674824,0.968855,0.92019,0.683013,0.494015,0.710534,0.537126,0.669247,0.570568,0.187066,0.281937,0.501926,0.0440418,0.552581,0.816198,0.979576,0.887594,0.849977,0.495678,0.735938,0.950444,0.810317,0.499502,0.593124,0.66304,0.431602,0.482716,0.321593,0.056809,0.15683,0.636293,0.287581,0.973429,0.744025,0.0404175,0.135492,0.0340739,0.0952196,0.243325,0.0774056,0.497495,0.0984048,0.639309,0.143036,0.792471,0.343277,0.546241,0.192575,0.240764,0.0225069,0.689733,0.790462,0.206422,0.978966,0.545836,0.898046,0.550178,0.882984,0.291242,0.20385,0.379413,0.782618,0.749547,0.0343435,0.708515,0.271801,0.147178,0.533812,0.158998,0.938606,0.03302,0.949717,0.688019,0.638155,0.56644,0.0627785,0.354771,0.0186541,0.315618,0.247281,0.488075,0.972308,0.310246,0.515071,0.317837,0.829897,0.309668,0.105622,0.494338,0.478439,0.42258,0.251927,0.569628,0.104044,0.222907,0.285299,0.812089,0.552333,0.156844,0.283479,0.272978,0.919007,0.947981,0.839852,0.914319,0.434831,0.188603,0.429476,0.578364,0.192723,0.684513,0.335648,0.087341,0.424002,0.465512,0.495563,0.816561,0.375347,0.604394,0.472639,0.559141,0.236967,0.726764,0.533464,0.800388,0.630629,0.644196,0.386504,0.894217,0.556594,0.578923,0.0460938,0.824556,0.915233,0.318463,0.485016,0.116525,0.575773,0.64014,0.233342,0.908934,0.580559,0.186329,0.538194,0.887168,0.0256217,0.890527,0.564804,0.407198,0.821019,0.502613,0.533331,0.31367,0.830161,0.124842,0.623908,0.873671,0.35308,0.398366,0.461421,0.267739,0.784909,0.498118,0.544088,0.619572,0.586072,0.565539,0.74847,0.44199,0.725074,0.242167,0.565938,0.381745,0.0690872,0.655267,0.405685,0.245052,0.873151,0.724959,0.359127,0.255612,0.349225,0.36311,0.797234,0.631263,0.846475,0.746212,0.304358,0.296037,0.243358,0.506247,0.239618,0.771827,0.975738,0.149732,0.902899,0.350607,0.359316,0.304131,0.229048,0.580639,0.933742,0.9257,0.650401,0.104236,0.307377,0.435297,0.855857,0.354386,0.955095,0.265594,0.87379,0.112457,0.296211,0.728686,0.677505,0.465258,0.705788,0.397926,0.690242,0.548782,0.210964,0.246738,0.218847,0.326559,0.620917,0.199389,0.636022,0.130713,0.332388,0.841066,0.380298,0.454332,0.0393561,0.0108334,0.549716,0.792423,0.69133,0.623061,0.205544,0.0371095,0.965904,0.963701,0.974043,0.943363,0.156102,0.0243809,0.841444,0.134325,0.560139,0.0648786,0.764795,0.634838,0.0933074,0.837805,0.941926,0.73601,0.300683,0.478292,0.849721,0.554162,0.81648,0.0898253,0.678568,0.873797,0.673938,0.0886043,0.277852,0.855663,0.437927,0.55987,0.100976,0.582682,0.156708,0.707564,0.672236,0.627378,0.666962,0.895916,0.394628,0.379377,0.212344,0.964483,0.513595,0.494076,0.297303,|0.600922,0.554177,0.78219,0.108107,0.292714,0.514044,0.324724,0.322115,0.614567,0.453565,0.196721,0.455324,0.0564173,0.684241,0.137356,0.227217,0.576403,0.0344658,0.685444,0.814335,0.743411,0.135629,0.569761,0.166122,0.464746,0.152847,0.154047,0.324039,0.823615,0.427321,0.156492,0.197654,0.44584,0.166975,0.503142,0.844868,0.0194719,0.081296,0.470969,0.431797,0.821997,0.479196,0.932174,0.947112,0.445199,0.0782374,0.130601,0.74776,0.834517,0.12257,0.975728,0.788521,0.66365,0.12704,0.990009,0.0848495,0.597832,0.382137,0.353545,0.13017,0.90072,0.490649,0.886565,0.482703,0.0342897,0.404419,0.488989,0.609134,0.602726,0.0101257,0.863741,0.941897,0.617166,0.890379,0.67519,0.251807,0.0512988,0.150928,0.749376,0.636419,0.166016,0.176703,0.496869,0.660298,0.227239,0.0346739,0.698346,0.228335,0.447009,0.691977,0.743059,0.109449,0.806206,0.706904,0.241703,0.611532,0.535951,0.876463,0.565603,0.833061,0.914897,0.657462,0.82358,0.501929,0.687377,0.041958,0.339173,0.0793551,0.946211,0.0253226,0.131709,0.297151,0.676217,0.899791,0.562361,0.733989,0.516329,0.0618834,0.0466948,0.79037,0.785614,0.264807,0.283478,0.655663,0.115062,0.769639,0.0597106,0.692929,0.508292,0.448081,0.641186,0.961969,0.779552,0.523598,0.388153,0.301462,0.510283,0.846956,0.192521,0.503237,0.33627,0.733253,0.304876,0.0980228,0.383102,0.990811,0.757605,0.228106,0.620416,0.658078,0.703611,0.268655,0.203887,0.523971,0.810748,0.372493,0.435757,0.851948,0.310333,0.473452,0.365983,0.53137,0.506403,0.136603,0.224406,0.0556414,0.301477,0.774483,0.921003,0.265673,0.321127,0.345351,0.913574,0.477045,0.810141,0.0173289,0.395613,0.457347,0.858433,0.48729,0.278043,0.537482,0.0521135,0.494926,0.413988,0.291444,0.575754,0.897334,0.398265,0.556251,0.959891,0.465282,0.304761,0.484745,0.886122,0.281415,0.247981,0.551951,0.66283,0.0814833,0.623667,0.162766,0.0108458,0.339934,0.126326,0.744217,0.617461,0.972293,0.249206,0.415026,0.982961,0.498135,0.643102,0.812495,0.443985,0.655731,0.0629145,0.00943476,0.260872,0.489159,0.308164,0.0665689,0.722105,0.284845,0.0211635,0.726568,0.87036,0.788895,0.532549,0.00237954,0.461451,0.267176,0.905721,0.574889,0.372197,0.043479,0.802248,0.119259,0.783851,0.366708,0.631522,0.543677,0.370781,0.138707,0.962594,0.0637138,0.0467938,0.60263,0.511373,0.933557,0.925781,0.83393,0.728842,0.270616,0.221875,0.887066,0.241104,0.172327,0.305619,0.539322,0.754896,0.846609,0.0495941,0.481034,0.267859,0.42144,0.387729,0.304498,0.469077,0.64012,0.0943898,0.306146,0.377186,0.393639,0.603581,0.419616,0.508831,0.192182,0.0737897,0.46803,0.267892,0.577833,0.377309,0.519855,0.557973,0.453458,0.394475,0.299936,0.287026,0.535103,0.228236,0.938994,0.970609,0.384802,0.354072,0.994049,0.74258,0.869115,0.482614,0.74749,0.0891865,0.466005,0.818264,0.104008,0.304452,0.0905724,0.879708,0.669714,0.0811518,0.0654968,0.0592679,0.695379,0.453526,0.847579,0.65831,0.534432,0.142462,0.210057,0.327656,0.901062,0.660273,0.0280799,0.953134,0.343691,0.280321,0.130931,0.754313,0.257393,0.143208,0.541095,0.559701,0.541539,0.978139,0.341377,0.43841,0.558104,0.481436,0.424606,0.563306,0.418868,0.661866,0.965034,0.370382,0.298478,0.0221859,0.892763,0.729199,0.666035,0.39881,0.131067,0.351126,0.38044,0.709024,0.485763,0.863348,0.915939,0.78118,0.512579,0.5501,0.55474,0.924447,0.319095,0.520551,0.159906,0.974265,0.750382,0.235029,0.874819,0.0492232,0.614698,0.292826,0.0462337,0.363183,0.845328,0.441288,0.416135,0.910858,0.267892,0.382025,0.44972,0.625707,0.979985,0.0165042,0.396884,0.479936,0.131426,0.975241,0.483829,0.137559,0.294117,0.623267,0.553951,0.180288,0.119605,0.651506,0.441241,0.611081,0.725753,0.398707,0.971527,0.77727,0.000672042,0.336364,0.333498,0.474865,0.929227,0.675184,0.379454,0.413181,0.772111,0.107426,0.672246,0.0672495,0.993986,0.645705,0.134054,0.240391,0.0140421,0.994379,0.0212703,0.298251,0.0911725,0.478926,0.854036,0.0750232,0.65751,0.39499,0.923883,0.076978,0.0306685,0.475747,0.802388,0.869146,0.372569,0.24218,0.898098,0.605253,0.64738,0.45101,0.139949,0.959647,0.409439,0.152325,0.7987,0.67232,0.915493,0.403854,0.540056,0.595615,0.112559,0.225043,0.159654,0.0587578,0.483894,0.808723,0.0383724,0.252888,0.945106,0.389323,0.736983,0.427774,0.135163,0.622444,0.392655,0.678918,0.348264,0.723297,0.464064,0.375383,0.177372,0.378137,0.316935,0.777182,0.112886,0.937457,0.642122,0.798393,0.467181,0.782709,0.197818,0.903367,0.714319,0.623818,0.211157,0.606923,0.681653,0.532028,0.121276,0.822449,0.20188,0.59626,0.822411,0.936649,0.197708,0.579092,0.738879,0.828206,0.366051,0.741797,0.552261,0.600973,0.212625,0.3495,0.548687,0.998006,0.248613,0.611746,0.430393,0.0242956,0.013513,0.444104,0.108377,0.18406,0.701913,0.809628,0.375349,0.605698,0.817987,0.23237,0.956922,0.0402555,0.870835,0.381132,0.636167,0.864822,0.24286,0.297303,0.875287,0.761269,0.569633,0.858387,0.922865,0.581803,0.53257,0.00907779,0.659782,0.372939,0.374991,0.818339,0.519456,0.0734656,0.0744102,0.301261,0.265534,0.180322,0.523401,0.573065,0.169329,0.282374,0.732434,0.177991,0.4514,0.4262,0.961589,0.596356,0.990872,0.963606,0.485594,0.920482,0.637997,0.557072,0.180976,0.520841,0.00297445,0.358854,0.273934,0.991401,0.921147,0.7539,0.728408,0.628377,0.595221,0.828713,0.0208939,0.742624,0.777817,0.0912518,0.644356,0.267068,0.089843,0.150867,0.280266,0.225811,0.197813,0.560884,0.0285704,0.0799137,0.372331,0.342719,0.258333,0.935751,0.318261,0.471855,0.409612,0.714529,0.840253,0.22576,0.15332,0.31197,0.853574,0.703404,0.672879,0.971009,0.100271,0.483357,0.462367,0.75116,0.531545,0.048791,0.859666,0.754685,0.357455,0.694758,0.748545,0.933895,0.891384,0.635513,0.245685,0.413554,0.460617,0.114235,0.0480115,0.701693,0.524481,0.153265,0.126181,0.23861,0.254575,0.202637,0.282989,0.68387,0.131458,0.782651,0.952983,0.360465,0.0373594,0.285359,0.925662,0.258354,0.940353,0.147178,0.636211,0.68381,0.951236,0.469381,0.925519,0.988754,0.068683,0.899624,0.592406,0.39938,0.846055,0.773557,0.233517,0.885491,0.995566,0.931484,0.507594,0.190683,0.359661,0.476647,0.564644,0.542697,0.692638,0.70758,0.354355,0.67826,0.900777,0.13021,0.443284,0.901694,0.985809,0.782659,0.994523,0.311007,0.0972384,0.887097,0.989429,0.783397,0.407301,0.803899,0.135725,0.67663,0.766389,0.574516,0.583595,0.913728,0.932858,0.570687,0.531396,0.539007,0.444901,0.35947,0.0316702,0.487462,0.253156,0.542316,0.94346,0.583386,0.75033,0.461572,0.337763,0.970781,0.923142,0.0612098,0.795827,0.998535,0.993939,0.065234,0.47876,0.825268,0.698342,0.264242,0.980539,0.480265,0.825083,0.910802,0.520453,0.193759,0.67777,0.835441,0.39179,0.804669,0.714646,0.196977,0.622663,0.917993,0.477351,0.106245,0.712805,0.52989,0.612311,0.394362,0.476205,0.918086,0.000393569,0.758139,0.408701,0.000495493,0.765253,0.280896,0.58935,0.950149,0.357065,0.763673,0.143383,0.420857,0.401829,0.795386,0.186586,0.458313,0.644455,0.185659,0.42374,0.242938,0.0447882,0.958415,0.768017,0.0192816,0.161509,0.142271,0.562334,0.33517,0.183137,0.649581,0.229097,0.781107,0.479022,0.600532,0.97875,0.820512,0.701725,0.578023,0.463628,0.194908,0.662061,0.780912,0.521278,0.930647,0.255253,0.309059,0.173352,0.300043,0.696789,0.46322,0.278987,0.168086,0.509046,0.976826,0.632433,0.947234,0.707781,0.763501,0.652844,0.416358,0.870501,0.801159,0.0189574,0.929166,0.475647,0.0582825,0.861236,0.596606,0.894232,0.920049,0.306444,0.547524,0.808411,0.740045,0.691279,0.126995,0.0724931,0.69909,0.256256,0.241504,0.217727,0.297482,0.948228,0.657461,0.0963098,0.72079,0.832684,0.129586,0.135745,0.503566,0.175565,0.545973,0.614059,0.254791,0.679544,0.131704,0.258207,0.921873,0.300173,0.639741,0.900415,0.539574,0.576434,0.18085,0.261386,0.121101,0.892734,0.807705,0.919712,0.0910631,0.259745,0.636075,0.142065,0.163383,0.944011,0.405505,0.281826,0.267441,0.557119,0.183938,0.976624,0.610058,0.451459,0.311476,0.972112,0.64497,0.741594,0.169451,0.302487,0.325008,0.781386,0.519648,0.00891745,0.12704,0.235489,0.997766,0.840272,0.489747,0.0950855,0.622316,0.136068,0.864902,0.874943,0.65376,0.0813482,0.724125,0.0487188,0.701527,0.815947,0.212191,0.628311,0.584782,0.907756,0.779584,0.654541,0.624023,0.633584,0.879223,0.1628,0.284014,0.324591,0.252094,0.565147,0.268546,0.679713,0.597945,0.759362,0.788352,0.58852,0.860825,0.573498,0.807245,0.522725,0.86925,0.955669,0.914197,0.127341,0.569077,0.463786,0.979678,0.306422,0.8416,0.955431,0.181726,0.0243685,0.96893,0.678395,0.342417,0.642232,0.0666568,0.866094,0.350486,0.622409,0.324344,0.398394,0.358526,0.921292,0.68073,0.30025,0.925292,0.294681,0.328082,0.85781,0.606838,0.810051,0.081637,0.167234,0.136813,0.25439,0.867606,0.197277,0.0674996,0.264385,0.917912,0.191584,0.266967,0.776303,0.600813,0.228314,0.32432,0.104849,0.982045,0.34578,0.385399,0.261533,0.632482,0.0795641,0.774417,0.271448,0.348803,0.201486,0.0603193,0.380779,0.420887,0.659277,0.143517,0.396572,0.0942308,0.753793,0.950393,0.309295,0.722528,0.798281,0.280904,0.486688,0.785143,0.462242,0.486557,0.455346,0.578911,0.276484,0.53303,0.307399,0.238462,0.465892,0.222481,0.362617,0.933012,0.574503,0.550049,0.0232115,0.883238,0.284734,0.624097,0.888729,|0.782189,0.754132,0.944188,0.834628,0.990399,0.050217,0.390382,0.579222,0.289855,0.256102,0.188867,0.163654,0.380993,0.313543,0.660429,0.150548,0.434745,0.461987,0.675072,0.464342,0.306575,0.455077,0.278354,0.0634809,0.677062,0.970021,0.709654,0.378432,0.69052,0.539397,0.0231227,0.319374,0.257735,0.949342,0.859334,0.955889,0.0765392,0.117815,0.55793,0.384963,0.640734,0.483182,0.883133,0.800298,0.150429,0.778822,0.582455,0.775386,0.335972,0.742568,0.96398,0.591802,0.835371,0.0491387,0.805545,0.228322,0.671391,0.753057,0.792901,0.129715,0.895033,0.514863,0.549718,0.724571,0.925569,0.00695795,0.225185,0.387536,0.918477,0.384602,0.41875,0.430471,0.634095,0.360509,0.0331945,0.780694,0.313062,0.362579,0.150761,0.734948,0.0625117,0.924686,0.0559704,0.697611,0.545301,0.536086,0.258388,0.138817,0.185344,0.19675,0.528473,0.21791,0.766755,0.496607,0.741111,0.0714723,0.0594636,0.501838,0.158989,0.516022,0.547992,0.882498,0.15505,0.43471,0.848204,0.703552,0.857847,0.543999,0.423441,0.999143,0.22807,0.398435,0.774505,0.794407,0.0542153,0.354554,0.772244,0.480133,0.620627,0.167547,0.218087,0.406464,0.156375,0.696427,0.656922,0.687856,0.53309,0.27704,0.246357,0.313112,0.205198,0.348625,0.782139,0.112609,0.833665,0.848662,0.818327,0.933184,0.505973,0.812109,0.624825,0.480678,0.63886,0.845338,0.776815,0.219908,0.975318,0.248528,0.0733203,0.822853,0.0903788,0.247289,0.321771,0.594851,0.940396,0.063597,0.00542992,0.316798,0.97673,0.496631,0.394185,0.364774,0.0862135,0.851123,0.54404,0.136514,0.618359,0.27603,0.102779,0.66392,0.183313,0.909374,0.134434,0.285254,0.271873,0.569366,0.457963,0.450699,0.339468,0.014127,0.223214,0.273512,0.650223,0.55653,0.364086,0.862094,0.119618,0.214146,0.483088,0.18019,0.945948,0.265648,0.39552,0.442078,0.40101,0.137037,0.472305,0.582546,0.74504,0.844436,0.65485,0.773403,0.996487,0.384353,0.0953238,0.964763,0.324837,0.118924,0.294674,0.768917,0.00630164,0.567126,0.423318,0.774279,0.0373811,0.925487,0.726771,0.241202,0.356794,0.490696,0.312891,0.429025,0.1596,0.601146,0.396845,0.361865,0.621525,0.511468,0.112407,0.859187,0.14787,0.543159,0.171463,0.214258,0.80292,0.0639245,0.360933,0.673458,0.939105,0.467397,0.0402243,0.46637,0.732553,0.42303,0.0741664,0.760527,0.617181,0.689623,0.30516,0.879932,0.39045,0.997783,0.790196,0.905808,0.359209,0.980141,0.706971,0.607694,0.545733,0.63228,0.187114,0.186889,0.492032,0.0773662,0.712177,0.707489,0.649026,0.293068,0.0398866,0.490461,0.804445,0.131196,0.678807,0.706825,0.690455,0.405725,0.911328,0.763002,0.241369,0.0308951,0.367516,0.21373,0.791058,0.0440174,0.470455,0.091221,0.164385,0.221483,0.266433,0.318913,0.186384,0.164708,0.129049,0.54516,0.441508,0.396108,0.234533,0.431569,0.617639,0.185609,0.42478,0.150894,0.966533,0.361464,0.545011,0.611389,0.993486,0.517459,0.11249,0.968836,0.678837,0.569319,0.515065,0.636311,0.366354,0.974212,0.934264,0.0864682,0.121888,0.0217495,0.180005,0.420923,0.741613,0.702292,0.121601,0.342879,0.972391,0.14488,0.867009,0.799684,0.85838,0.597215,0.144874,0.99353,0.698631,0.785108,0.0980648,0.145989,0.636926,0.622556,0.577811,0.50183,0.143675,0.781702,0.588671,0.298644,0.14644,0.776482,0.480432,0.142998,0.945284,0.509051,0.434554,0.37931,0.965511,0.0836924,0.189807,0.774194,0.467704,0.480814,0.289685,0.149533,0.513273,0.998146,0.508845,0.880831,0.166865,0.00441712,0.591691,0.680469,0.717324,0.332,0.624527,0.329228,0.224693,0.266283,0.111358,0.234239,0.987976,0.467728,0.202326,0.805874,0.28481,0.0239438,0.997128,0.243776,0.0262156,0.937731,0.545244,0.726953,0.913298,0.457224,0.412319,0.738023,0.113169,0.116678,0.463898,0.176637,0.203652,0.378662,0.522165,0.522208,0.475592,0.0711881,0.00646389,0.184182,0.437285,0.00204635,0.530007,0.0790831,0.798743,0.64866,0.16263,0.275935,0.83151,0.51442,0.0828002,0.0636763,0.0192196,0.0967624,0.779092,0.799788,0.739711,0.879537,0.418013,0.677215,0.316512,0.125062,0.621504,0.419672,0.699979,0.840978,0.589574,0.803155,0.165307,0.14616,0.304981,0.953888,0.241086,0.136785,0.441297,0.0578977,0.258101,0.762593,0.248218,0.838515,0.994239,0.127691,0.380943,0.562668,0.417756,0.395658,0.956687,0.707978,0.313614,0.918796,0.37848,0.417206,0.867718,0.614903,0.800105,0.889726,0.604404,0.642688,0.633655,0.119572,0.34997,0.225711,0.793832,0.854904,0.0583043,0.132053,0.868602,0.794028,0.999119,0.685918,0.103121,0.667327,0.903143,0.784348,0.621827,0.807817,0.578624,0.521405,0.337731,0.820463,0.32709,0.703289,0.818913,0.787038,0.179864,0.50581,0.430297,0.809349,0.902438,0.496739,0.553377,0.261683,0.108172,0.737803,0.581597,0.314645,0.742279,0.673858,0.927595,0.187098,0.449431,0.11005,0.00990897,0.0380072,0.959785,0.159302,0.288372,0.505046,0.473817,0.284913,0.667744,0.503697,0.320011,0.267157,0.761723,0.527706,0.0333864,0.0708389,0.368732,0.0353094,0.309254,0.551085,0.62909,0.798943,0.780604,0.586712,0.160846,0.551703,0.797496,0.673767,0.138513,0.140546,0.270826,0.433684,0.0326768,0.761309,0.0872459,0.301545,0.387956,0.322887,0.542033,0.244514,0.627536,0.0539435,0.107892,0.233034,0.380944,0.688852,0.779836,0.128838,0.236209,0.424736,0.917202,0.543068,0.867568,0.526643,0.0766118,0.0714101,0.294377,0.234433,0.12326,0.838473,0.250896,0.398908,0.184442,0.0558677,0.325163,0.0911298,0.0455245,0.113746,0.659772,0.667461,0.684379,0.694233,0.652945,0.36901,0.651446,0.608888,0.792887,0.381092,0.530627,0.0893643,0.419329,0.167958,0.23662,0.610896,0.896836,0.243601,0.174213,0.231879,0.510972,0.0555165,0.782615,0.690944,0.942132,0.0128348,0.520196,0.552555,0.361536,0.28876,0.717859,0.535923,0.508583,0.391279,0.564003,0.852705,0.889868,0.57802,0.413429,0.746289,0.295611,0.42187,0.853049,0.758893,0.725905,0.220588,0.574787,0.802044,0.491035,0.811561,0.612159,0.178977,0.0288432,0.694423,0.171104,0.482326,0.539051,0.337315,0.330624,0.223822,0.680773,0.0692571,0.0890685,0.798407,0.587784,0.327458,0.601031,0.190231,0.0836589,0.572694,0.00735539,0.403714,0.46579,0.379866,0.849486,0.720473,0.855872,0.151379,0.854259,0.488833,0.547826,0.364323,0.0532708,0.990818,0.867543,0.610171,0.846014,0.4311,0.487458,0.242731,0.941129,0.605793,0.0583764,0.10862,0.655756,0.528816,0.313653,0.826629,0.287665,0.322807,0.155021,0.727399,0.666636,0.688026,0.957415,0.614367,0.425671,0.180309,0.836239,0.0244887,0.657762,0.162665,0.56965,0.84914,0.904461,0.242041,0.17178,0.0251321,0.397974,0.483461,0.421932,0.0385742,0.537771,0.876979,0.316394,0.397579,0.0140201,0.0852724,0.560027,0.683779,0.0103599,0.094824,0.544245,0.466382,0.960958,0.82604,0.885746,0.905398,0.78804,0.718621,0.226092,0.334853,0.849564,0.735652,0.450486,0.320079,0.25238,0.966922,0.743436,0.292368,0.822772,0.465473,0.706969,0.243263,0.133514,0.621839,0.720081,0.474785,0.611497,0.256335,0.835315,0.99829,0.294786,0.597298,0.165594,0.184078,0.0444752,0.754975,0.273829,0.0674379,0.851265,0.55765,0.933304,0.118464,0.567736,0.0586934,0.313841,0.45328,0.048042,0.794249,0.358753,0.947242,0.418802,0.148359,0.260052,0.162453,0.24685,0.0811979,0.858071,0.091369,0.342435,0.816567,0.536616,0.66289,0.0784004,0.599911,0.0973682,0.0158272,0.794791,0.343955,0.720729,0.793248,0.743847,0.184192,0.441921,0.295007,0.787553,0.756746,0.44269,0.219995,0.286964,0.946411,0.331583,0.887012,0.792748,0.907783,0.941297,0.279629,0.335203,0.0759876,0.429122,0.00428039,0.537502,0.505335,0.497106,0.327235,0.672113,0.17398,0.465421,0.308442,0.307076,0.331636,0.81994,0.329008,0.0659307,0.717058,0.938309,0.146273,0.355317,0.962355,0.952632,0.393224,0.878071,0.891153,0.641163,0.610414,0.201701,0.883148,0.633395,0.871872,0.32837,0.689455,0.644423,0.766023,0.0304402,0.573268,0.636397,0.602113,0.848161,0.858032,0.776164,0.209407,0.0149633,0.248563,0.867063,0.181833,0.981344,0.284342,0.128121,0.0174546,0.0179382,0.515283,0.87422,0.417493,0.708029,0.366454,0.576877,0.87249,0.0169287,0.956589,0.80362,0.628728,0.0555578,0.654418,0.0234659,0.653698,0.430921,0.937243,0.915216,0.980419,0.885118,0.802743,0.936802,0.813582,0.0236678,0.8028,0.463947,0.28808,0.275409,0.386643,0.938724,0.730861,0.61629,0.26793,0.180231,0.802728,0.92687,0.135428,0.00706452,0.308506,0.891022,0.370217,0.061649,0.825939,0.552803,0.443499,0.156609,0.191234,0.160436,0.52087,0.322179,0.972203,0.0618496,0.162749,0.311583,0.313207,0.443682,0.324317,0.571757,0.734506,0.0763702,0.139728,0.335189,0.325242,0.0354602,0.26727,0.784406,0.0380571,0.852136,0.761074,0.926676,0.673902,0.0587883,0.916027,0.609187,0.561275,0.356845,0.431263,0.525203,0.606976,0.555473,0.180286,0.617108,0.611349,0.737704,0.0181172,0.577092,0.519554,0.390161,0.897082,0.141664,0.686086,0.77716,0.520162,0.304424,0.577578,0.238773,0.737445,0.879006,0.653839,0.562395,0.566093,0.766325,0.997541,0.210413,0.650755,0.141879,0.168608,0.479451,0.393179,0.456947,0.15927,0.324435,0.231582,0.254716,0.851867,0.431828,0.324776,0.736631,0.363156,0.253195,0.380129,0.195724,0.339785,0.783841,0.949861,0.415371,0.8458,0.512938,0.596467,0.718075,0.753679,0.0156602,0.888933,0.0727112,0.615428,0.167534,0.0751079,0.397261,0.832828,0.213348,0.702816,0.900151,0.749574,0.438382,0.541482,0.176572,0.392375,0.155434,0.220134,0.0311403,0.644523,0.795263,0.32844,|0.121398,0.969836,0.759854,0.686666,0.576937,0.539293,0.431658,0.928301,0.0434608,0.816253,0.292278,0.650512,0.905283,0.181711,0.314176,0.59358,0.895108,0.778014,0.792632,0.633796,0.867896,0.467962,0.577056,0.542304,0.88961,0.966607,0.890619,0.0742953,0.346283,0.392476,0.455068,0.279824,0.534658,0.21872,0.367469,0.310446,0.702369,0.257493,0.926396,0.828437,0.867211,0.185493,0.595354,0.887477,0.217337,0.529331,0.468835,0.738579,0.0623903,0.366715,0.297683,0.700834,0.690345,0.339127,0.188688,0.900705,0.952431,0.576913,0.378989,0.125879,0.421382,0.773888,0.410292,0.131402,0.885754,0.340617,0.801517,0.0926614,0.265018,0.831592,0.559641,0.960129,0.449516,0.830871,0.219822,0.777636,0.43002,0.594191,0.752745,0.177083,0.968968,0.400995,0.0756937,0.450702,0.908367,0.80403,0.806151,0.997053,0.620361,0.0289423,0.825224,0.583215,0.349868,0.893479,0.917147,0.970581,0.497373,0.431882,0.231891,0.526887,0.995373,0.57396,0.69566,0.653272,0.233955,0.2413,0.741532,0.617814,0.87918,0.420735,0.180091,0.320588,0.336526,0.804356,0.72256,0.342687,0.130728,0.597279,0.403786,0.314826,0.477307,0.0597088,0.397649,0.746569,0.0243868,0.491003,0.540784,0.491367,0.733272,0.922359,0.124238,0.161643,0.283009,0.382966,0.939559,0.601536,0.946871,0.657234,0.93193,0.606483,0.0121375,0.634376,0.278545,0.828207,0.229924,0.726975,0.0109526,0.0938987,0.917409,0.696921,0.232384,0.147301,0.371019,0.775054,0.0279912,0.511111,0.287271,0.628773,0.23641,0.759776,0.387468,0.604251,0.0903345,0.100142,0.805728,0.884328,0.788231,0.427612,0.131905,0.0681405,0.0652876,0.783318,0.334131,0.194263,0.514167,0.107507,0.361883,0.833934,0.559876,0.470279,0.752264,0.272214,0.761098,0.768742,0.312424,0.871809,0.18315,0.757254,0.884257,0.384993,0.978175,0.988054,0.592128,0.826676,0.926048,0.928656,0.131064,0.946144,0.382084,0.653754,0.665903,0.15897,0.561546,0.271238,0.898935,0.55966,0.664568,0.336897,0.751374,0.676822,0.678372,0.426984,0.0137078,0.933119,0.70389,0.267509,0.761312,0.962363,0.0958602,0.53373,0.158844,0.466975,0.0801824,0.152124,0.90966,0.0144676,0.355054,0.963064,0.492394,0.96591,0.639234,0.106624,0.516917,0.641624,0.596747,0.392101,0.158922,0.530516,0.815463,0.64724,0.26797,0.990058,0.856256,0.760098,0.592147,0.554164,0.791008,0.250778,0.142712,0.126801,0.760995,0.592224,0.816772,0.119625,0.469681,0.0337673,0.364878,0.741467,0.556807,0.464484,0.247994,0.357146,0.84815,0.32089,0.119473,0.829021,0.530366,0.634902,0.218685,0.123489,0.557753,0.99738,0.743936,0.351233,0.685172,0.949763,0.395565,0.0107848,0.935751,0.147446,0.495978,0.0957004,0.992144,0.172643,0.21988,0.967058,0.109093,0.447151,0.26834,0.0374855,0.13617,0.576796,0.763033,0.362807,0.906096,0.328014,0.604434,0.751038,0.580048,0.0806072,0.660725,0.173804,0.746385,0.410165,0.789687,0.961249,0.196637,0.145694,0.994514,0.882237,0.0385106,0.458098,0.867929,0.40282,0.371234,0.800238,0.488233,0.523353,0.41863,0.429382,0.316397,0.109885,0.341958,0.157607,0.746634,0.738572,0.966791,0.655342,0.604543,0.36336,0.400089,0.820932,0.186307,0.768285,0.994152,0.943468,0.594288,0.740828,0.698272,0.87206,0.0302345,0.807321,0.120473,0.446463,0.604365,0.469621,0.261767,0.999155,0.797248,0.881264,0.555134,0.0139934,0.971994,0.424776,0.63466,0.116101,0.135305,0.999408,0.540543,0.261794,0.662426,0.26127,0.79502,0.273432,0.545968,0.479008,0.856123,0.268487,0.152644,0.304487,0.580019,0.398221,0.0865648,0.064813,0.0199281,0.837588,0.337996,0.698593,0.898059,0.97015,0.249374,0.91685,0.273129,0.892553,0.53496,0.97131,0.76031,0.691644,0.155347,0.35791,0.472452,0.475178,0.170718,0.0100991,0.753888,0.63688,0.884362,0.808535,0.26679,0.250998,0.311607,0.497288,0.424943,0.960518,0.715194,0.998896,0.631479,0.121228,0.733001,0.591689,0.637734,0.781272,0.517789,0.171035,0.793461,0.463045,0.0229121,0.902403,0.873527,0.00877589,0.692676,0.459255,0.617343,0.859847,0.799055,0.402739,0.738007,0.211369,0.943981,0.528455,0.505083,0.762899,0.780436,0.0856655,0.679699,0.390731,0.731966,0.999174,0.940872,0.765594,0.992954,0.124351,0.291384,0.508131,0.807247,0.843068,0.876144,0.00756109,0.45439,0.921733,0.237172,0.454219,0.98665,0.113734,0.601424,0.691659,0.758811,0.696702,0.928437,0.269792,0.221402,0.74061,0.623121,0.58167,0.784853,0.649048,0.473535,0.452145,0.671256,0.985122,0.53537,0.503001,0.817802,0.902922,0.0236792,0.851703,0.397807,0.146626,0.852604,0.933972,0.655169,0.349231,0.366832,0.345247,0.901074,0.0765694,0.622539,0.295826,0.524228,0.0123256,0.381398,0.0717984,0.104705,0.823731,0.535241,0.944715,0.337193,0.59928,0.684102,0.971282,0.0668986,0.0821795,0.363215,0.272818,0.837098,0.917028,0.758113,0.296282,0.889394,0.355483,0.93873,0.117367,0.799496,0.278803,0.751199,0.588569,0.748037,0.944672,0.910504,0.758979,0.866383,0.753884,0.762092,0.388448,0.0167483,0.690444,0.598075,0.320867,0.454218,0.915746,0.767295,0.699264,0.357109,0.257988,0.892931,0.856317,0.243946,0.755137,0.0637938,0.501867,0.245742,0.897973,0.190211,0.725409,0.455988,0.904904,0.817424,0.332956,0.393741,0.575405,0.14836,0.818919,0.706353,0.40991,0.863222,0.76569,0.205175,0.490874,0.39871,0.756555,0.261539,0.504468,0.697203,0.194397,0.962412,0.113462,0.920454,0.584877,0.614626,0.0069018,0.421718,0.424697,0.460822,0.95718,0.956214,0.316895,0.550449,0.122751,0.419347,0.526346,0.332898,0.206264,0.414984,0.740942,0.703539,0.0185844,0.19209,0.65163,0.155899,0.544466,0.960379,0.63049,0.268975,0.0183718,0.249438,0.391918,0.216884,0.583936,0.927162,0.625727,0.341624,0.580709,0.322963,0.795502,0.825369,0.925071,0.971608,0.589743,0.618937,0.0697057,0.0194757,0.974842,0.745513,0.37894,0.940322,0.700373,0.49863,0.188188,0.666679,0.330777,0.123587,0.880835,0.982519,0.110663,0.693048,0.439358,0.908108,0.733987,0.0424921,0.741627,0.85314,0.593091,0.0923288,0.189102,0.4082,0.884947,0.250554,0.42788,0.342525,0.620783,0.483193,0.583608,0.632618,0.896985,0.851544,0.154992,0.922542,0.212678,0.58339,0.955342,0.311864,0.770191,0.454983,0.0296735,0.0773187,0.772974,0.800514,0.173275,0.968508,0.799245,0.326574,0.508241,0.44041,0.785199,0.732517,0.00374562,0.229453,0.15017,0.95186,0.591672,0.526225,0.153447,0.984049,0.471213,0.145486,0.660604,0.262794,0.146123,0.0421866,0.195682,0.992198,0.0378451,0.193786,0.9891,0.515991,0.547423,0.641703,0.924733,0.229542,0.977806,0.24396,0.0618185,0.0142505,0.671806,0.0357203,0.253848,0.287608,0.112538,0.769825,0.654953,0.0883558,0.250971,0.222355,0.374918,0.407957,0.220789,0.316679,0.712044,0.0829453,0.646632,0.104278,0.150728,0.366748,0.317888,0.305239,0.48867,0.569629,0.516061,0.431039,0.891711,0.965122,0.778077,0.780649,0.0049246,0.750333,0.318927,0.908529,0.0906709,0.1195,0.84162,0.622237,0.512178,0.463021,0.374665,0.289267,0.42344,0.172209,0.745398,0.213616,0.890172,0.685839,0.839641,0.186703,0.837276,0.723891,0.162769,0.992043,0.680257,0.614925,0.997096,0.932957,0.231058,0.793238,0.886681,0.0221326,0.484099,0.287867,0.831046,0.0746369,0.483634,0.441604,0.74748,0.670453,0.163579,0.440546,0.999582,0.517521,0.523927,0.44013,0.256237,0.0997649,0.169075,0.352908,0.1171,0.879604,0.337848,0.847995,0.377141,0.360164,0.652025,0.752329,0.487598,0.509098,0.707725,0.460232,0.098573,0.972481,0.3743,0.0889159,0.469715,0.658624,0.567224,0.0193597,0.987602,0.119787,0.167657,0.284316,0.650107,0.891977,0.171014,0.918233,0.457307,0.933197,0.939819,0.659141,0.348371,0.535009,0.941857,0.00201213,0.836826,0.217516,0.38085,0.957651,0.48719,0.837637,0.410411,0.134628,0.125899,0.301851,0.00723332,0.732757,0.94309,0.0330889,0.762888,0.904389,0.935213,0.441038,0.128806,0.245659,0.0716086,0.241863,0.504156,0.0505414,0.968586,0.857103,0.899877,0.271111,0.998207,0.930376,0.428237,0.612248,0.876158,0.32024,0.618916,0.262438,0.442553,0.203809,0.695532,0.0786037,0.567628,0.902051,0.200351,0.471181,0.558583,0.665694,0.669949,0.538789,0.495824,0.938678,0.50436,0.791883,0.390763,0.513552,0.532197,0.564523,0.46802,0.417101,0.823451,0.436199,0.150216,0.482347,0.54536,0.880759,0.690814,0.9115,0.842669,0.345018,0.867852,0.89547,0.34476,0.228475,0.532234,0.0734876,0.313814,0.99853,0.092134,0.816377,0.320999,0.598153,0.813744,0.229171,0.833025,0.138415,0.0945631,0.154721,0.266861,0.56686,0.890631,0.851913,0.432604,0.203996,0.380507,0.482617,0.0820426,0.577032,0.938235,0.824711,0.802142,0.213911,0.715413,0.118296,0.275585,0.538093,0.112593,0.646417,0.014266,0.509313,0.20374,0.409795,0.433015,0.20524,0.946929,0.416373,0.653402,0.244991,0.674357,0.954043,0.212507,0.49854,0.850335,0.132656,0.832795,0.176484,0.708458,0.377581,0.61337,0.662296,0.514124,0.634737,0.940488,0.353319,0.636219,0.686307,0.0158347,0.884422,0.900573,0.4111,0.453897,0.251407,0.0376154,0.155678,0.0636461,0.556487,0.978964,0.0789912,0.612457,0.0204781,0.360121,0.265762,0.413951,0.450243,0.00640625,0.0227558,0.891629,0.0236694,0.208082,0.623094,0.101251,0.555004,0.94602,0.00837934,0.303073,0.997295,0.219087,0.389873,0.362848,0.114893,0.895426,0.0917758,0.712495,0.90312,0.341766,0.00868082,0.244749,0.156741,0.654349,0.258663,0.131031,0.690124,0.705836,0.213834,0.127111,0.50255,0.376663,0.209556,0.883024,0.344972,0.363278,0.260035,0.635328,|0.0591947,0.90655,0.698961,0.479473,0.0221975,0.461433,0.543167,0.441139,0.926032,0.702147,0.813955,0.690019,0.0138085,0.600899,0.884136,0.654732,0.263108,0.51017,0.736989,0.430271,0.948462,0.817162,0.231915,0.309657,0.00107741,0.831199,0.804237,0.764819,0.0740151,0.604976,0.971541,0.149899,0.904868,0.661627,0.127107,0.510006,0.797754,0.491604,0.575342,0.472405,0.164303,0.755871,0.991585,0.867597,0.830276,0.542852,0.364291,0.738193,0.187274,0.0294347,0.196522,0.885294,0.761456,0.474291,0.341039,0.187387,0.86685,0.850017,0.439179,0.916192,0.326205,0.697943,0.0719337,0.0521194,0.513781,0.673878,0.356893,0.40695,0.479393,0.840679,0.0634543,0.91801,0.094717,0.194278,0.723995,0.277049,0.228187,0.34571,0.922272,0.757052,0.952445,0.940586,0.289341,0.180736,0.595836,0.489199,0.694104,0.922902,0.903116,0.40575,0.928257,0.213397,0.922422,0.0101452,0.396448,0.459954,0.698544,0.72281,0.632257,0.0943838,0.613404,0.83906,0.442172,0.70225,0.402551,0.212082,0.676645,0.503565,0.900391,0.945849,0.612743,0.687128,0.800596,0.790489,0.170865,0.250145,0.027435,0.782444,0.39061,0.427717,0.200742,0.44808,0.419609,0.213618,0.566885,0.286307,0.737982,0.119344,0.34071,0.924199,0.98976,0.127186,0.853001,0.39176,0.079097,0.738817,0.983261,0.161721,0.569844,0.645694,0.0842216,0.680661,0.497925,0.100948,0.17721,0.0586519,0.107814,0.341526,0.248577,0.280007,0.378602,0.311221,0.744567,0.584902,0.230428,0.610362,0.453154,0.428122,0.496472,0.609169,0.735657,0.269358,0.221199,0.655131,0.882072,0.940614,0.0853269,0.406072,0.0303753,0.908514,0.186314,0.585264,0.731587,0.491082,0.491677,0.447665,0.451254,0.521828,0.940954,0.67325,0.703041,0.681872,0.653443,0.314812,0.231057,0.685577,0.139454,0.29377,0.491264,0.585968,0.577006,0.0105191,0.523022,0.226099,0.178755,0.266496,0.0280654,0.1037,0.222319,0.195819,0.642943,0.897313,0.0989091,0.658991,0.656339,0.307612,0.565226,0.384092,0.599567,0.227689,0.610529,0.0730803,0.441012,0.904428,0.646283,0.713982,0.123302,0.514775,0.421752,0.267887,0.661776,0.158094,0.999167,0.162937,0.287362,0.477944,0.860565,0.904956,0.0922034,0.309908,0.108768,0.780145,0.749431,0.878358,0.791405,0.647929,0.699104,0.0415214,0.256169,0.510111,0.620733,0.892976,0.641377,0.219258,0.721325,0.676982,0.196184,0.940846,0.146159,0.802045,0.670648,0.105811,0.0898059,0.494375,0.393356,0.271477,0.9015,0.226752,0.99491,0.704996,0.975977,0.178801,0.836376,0.949686,0.663744,0.608669,0.503055,0.936486,0.793336,0.0512437,0.838419,0.884988,0.747979,0.696005,0.172284,0.988447,0.0745552,0.00784051,0.686998,0.785098,0.985496,0.0292541,0.380899,0.835904,0.571388,0.906157,0.85467,0.0834597,0.677204,0.623388,0.16232,0.295402,0.599787,0.435845,0.22393,0.715379,0.913283,0.614055,0.358005,0.261462,0.543723,0.342838,0.910662,0.40945,0.298739,0.177961,0.0987511,0.319416,0.258975,0.685032,0.0858076,0.649952,0.525774,0.534499,0.24094,0.584321,0.751282,0.0829473,0.204461,0.203674,0.0340097,0.508714,0.354612,0.600716,0.0384499,0.696122,0.199196,0.353505,0.334621,0.310634,0.370895,0.687599,0.4134,0.652999,0.610946,0.884729,0.891784,0.347322,0.168804,0.647717,0.355904,0.564795,0.612969,0.708505,0.55754,0.184404,0.869855,0.896751,0.518287,0.0389767,0.77041,0.542226,0.76912,0.696924,0.586015,0.663015,0.0418036,0.511414,0.794717,0.998652,0.0142186,0.842438,0.622907,0.510148,0.569938,0.391538,0.188536,0.831554,0.864068,0.124551,0.468861,0.169834,0.826039,0.0375185,0.179024,0.139549,0.275803,0.305032,0.494641,0.387237,0.206056,0.564718,0.357044,0.987062,0.862923,0.977349,0.248543,0.998604,0.309876,0.679015,0.419809,0.9457,0.410454,0.439521,0.2223,0.565861,0.899942,0.935242,0.908902,0.961544,0.999005,0.777297,0.475367,0.829178,0.574718,0.443566,0.298895,0.263742,0.206619,0.64289,0.41181,0.314707,0.0181853,0.105994,0.843498,0.573173,0.227716,0.14041,0.0835207,0.00275815,0.415957,0.789527,0.41712,0.0370237,0.869652,0.446025,0.181196,0.0791525,0.0694589,0.556649,0.47212,0.916106,0.207283,0.797431,0.720531,0.393252,0.0655621,0.218162,0.122178,0.313552,0.484523,0.515723,0.650029,0.539051,0.921232,0.235195,0.473698,0.626543,0.692667,0.583912,0.751144,0.364472,0.296096,0.37741,0.887942,0.950941,0.242761,0.902418,0.052606,0.140893,0.40247,0.0124397,0.486453,0.780334,0.990983,0.0541893,0.775286,0.820586,0.653534,0.247963,0.811234,0.307088,0.686668,0.580238,0.415504,0.846698,0.893591,0.315597,0.327192,0.254439,0.23057,0.766119,0.717308,0.441459,0.198076,0.94144,0.587824,0.800416,0.988072,0.786098,0.686779,0.510743,0.291657,0.952399,0.458819,0.704447,0.708405,0.997408,0.0055995,0.18411,0.452854,0.493882,0.753857,0.802952,0.217693,0.886136,0.192346,0.573492,0.100188,0.805356,0.474534,0.627838,0.280479,0.221378,0.725139,0.000911891,0.170782,0.554012,0.665784,0.481595,0.828263,0.777174,0.692302,0.628483,0.427819,0.961419,0.512677,0.710941,0.550503,0.568497,0.604638,0.962334,0.080374,0.76684,0.0728015,0.278107,0.195164,0.694285,0.292156,0.138275,0.601355,0.907815,0.782587,0.304479,0.699725,0.642743,0.167293,0.774706,0.966413,0.221163,0.58127,0.197156,0.780298,0.238901,0.768266,0.994408,0.670748,0.277713,0.517208,0.986566,0.914759,0.77543,0.92107,0.63044,0.408594,0.370396,0.846832,0.578597,0.0916023,0.133478,0.978719,0.164616,0.0814402,0.720597,0.937546,0.965619,0.195763,0.287446,0.967332,0.553505,0.139907,0.536476,0.529012,0.990132,0.102528,0.381829,0.612495,0.424523,0.550876,0.760372,0.266861,0.185269,0.17406,0.889899,0.494165,0.639025,0.49692,0.562296,0.660538,0.520097,0.335918,0.521813,0.91502,0.356492,0.84822,0.0550406,0.959581,0.120219,0.99575,0.696183,0.406988,0.887902,0.456334,0.90128,0.417852,0.398245,0.717714,0.578227,0.0345851,0.38618,0.274144,0.804134,0.191348,0.382247,0.431424,0.939306,0.000882566,0.414479,0.458687,0.32961,0.416703,0.00477886,0.281066,0.256889,0.749166,0.678981,0.897786,0.533959,0.393659,0.345929,0.0609657,0.675287,0.150986,0.104473,0.0112547,0.14513,0.771698,0.497294,0.611823,0.892147,0.884342,0.363082,0.42512,0.113525,0.35015,0.136343,0.18518,0.680758,0.671986,0.874197,0.192798,0.774073,0.112476,0.0131534,0.317846,0.109749,0.636901,0.568137,0.949028,0.412834,0.224632,0.351874,0.0399739,0.681089,0.445045,0.75303,0.874627,0.0410602,0.127639,0.682036,0.854737,0.097455,0.334595,0.818885,0.167811,0.183759,0.745293,0.876434,0.381947,0.759478,0.621531,0.391539,0.526526,0.658864,0.293711,0.884199,0.177096,0.527448,0.306225,0.542303,0.664747,0.106571,0.453937,0.978889,0.283389,0.0450329,0.474228,0.85678,0.611876,0.229234,0.719124,0.474323,0.837206,0.603172,0.632556,0.859716,0.853266,0.063993,0.764614,0.837531,0.789631,0.173081,0.693148,0.193146,0.252151,0.99422,0.764655,0.342392,0.995655,0.0580997,0.531754,0.551837,0.125818,0.669293,0.203471,0.0992115,0.95851,0.257919,0.560997,0.197113,0.0268973,0.0450163,0.0890106,0.934617,0.598132,0.400212,0.21492,0.353013,0.409664,0.246167,0.177141,0.862364,0.29066,0.371774,0.232586,0.316698,0.493143,0.936109,0.609365,0.418026,0.294128,0.429147,0.662646,0.232136,0.384964,0.85996,0.908748,0.280729,0.785319,0.134676,0.0674443,0.723694,0.102084,0.434159,0.923171,0.0453816,0.81146,0.505112,0.993867,0.30869,0.158623,0.953633,0.383724,0.816517,0.531821,0.258314,0.110937,0.784897,0.751958,0.822634,0.663429,0.811485,0.138047,0.253168,0.185704,0.0736112,0.842671,0.584861,0.53992,0.521777,0.413888,0.626635,0.858558,0.633292,0.143596,0.308822,0.292165,0.0874688,0.613848,0.283397,0.720285,0.620086,0.331628,0.632076,0.71864,0.342649,0.827014,0.904302,0.109852,0.577481,0.211017,0.579244,0.300126,0.443365,0.00159663,0.36803,0.474107,0.344992,0.363484,0.567964,0.0227004,0.0067699,0.637248,0.871399,0.71825,0.0161265,0.266545,0.818861,0.23692,0.872554,0.46227,0.510821,0.719353,0.070455,0.758157,0.536398,0.830953,0.942023,0.501326,0.675267,0.288585,0.803337,0.644439,0.297403,0.640732,0.582099,0.356842,0.25252,0.43983,0.0865573,0.397488,0.759726,0.0555063,0.468988,0.215061,0.132999,0.829888,0.757112,0.218491,0.863668,0.651517,0.221454,0.0700266,0.668845,0.409888,0.0840766,0.0937165,0.825874,0.208996,0.344581,0.935854,0.0348467,0.451999,0.68105,0.381069,0.917753,0.765618,0.331603,0.772553,0.854407,0.703844,0.739911,0.00596058,0.94776,0.187738,0.373438,0.711822,0.939827,0.33048,0.0480265,0.915264,0.879597,0.374554,0.149915,0.988568,0.481002,0.0578263,0.195529,0.983989,0.808505,0.853944,0.161765,0.647224,0.763549,0.792795,0.943678,0.99013,0.873776,0.435257,0.872338,0.0638934,0.873132,0.33369,0.583657,0.412301,0.978091,0.470119,0.879815,0.488462,0.733532,0.501087,0.240173,0.642004,0.33588,0.681439,0.702924,0.187343,0.0307264,0.538196,0.661196,0.22636,0.6826,0.313998,0.700364,0.775203,0.53524,0.972556,0.878626,0.0937361,0.611316,0.419131,0.737336,0.991003,0.772586,0.372482,0.2228,0.110528,0.380809,0.43507,0.34737,0.153112,0.294407,0.502554,0.549379,0.0128289,0.421234,0.726678,0.0986993,0.619544,0.429323,0.370394,0.121148,0.683618,0.587992,0.158293,0.242759,0.767222,0.588554,0.517564,0.233283,0.326828,0.725081,0.502336,0.324109,0.543292,0.682394,0.479224,0.120888,0.407723,0.983101,0.842807,0.413082,0.31491,0.208445,0.214133,0.088057,0.840947,0.133708,0.679624,0.845778,|0.0407715,0.987769,0.289491,0.540675,0.260411,0.862059,0.531252,0.702216,0.97236,0.777257,0.504177,0.32202,0.501846,0.412286,0.360082,0.146906,0.146237,0.117865,0.849236,0.90763,0.523968,0.134292,0.128585,0.165496,0.0952027,0.0265292,0.517339,0.164045,0.4029,0.0774798,0.278591,0.3728,0.959745,0.265894,0.522009,0.789568,0.794192,0.553403,0.167069,0.78937,0.437261,0.598329,0.405012,0.468876,0.982611,0.596541,0.35018,0.556214,0.50929,0.458681,0.608039,0.992072,0.949028,0.261077,0.595594,0.895257,0.227253,0.466924,0.713244,0.786302,0.482824,0.614476,0.57124,0.0596206,0.655663,0.188769,0.88666,0.0461389,0.464276,0.988604,0.131974,0.957963,0.0363935,0.549323,0.465027,0.620543,0.160508,0.696029,0.59284,0.356793,0.965537,0.0612978,0.788794,0.347051,0.0107396,0.307315,0.843084,0.44806,0.0529426,0.582355,0.815364,0.0877031,0.350493,0.575248,0.595221,0.925011,0.0547609,0.531343,0.0766046,0.855178,0.331895,0.965065,0.152814,0.660638,0.895601,0.0905598,0.00541764,0.230135,0.698908,0.353223,0.279413,0.606776,0.269532,0.589197,0.692579,0.725983,0.494725,0.180358,0.615451,0.806241,0.5106,0.545799,0.0355023,0.596669,0.409666,0.40146,0.047621,0.639403,0.652414,0.00827253,0.217855,0.460356,0.930192,0.0988237,0.188174,0.788828,0.766572,0.791532,0.384121,0.0254472,0.7537,0.309015,0.890202,0.00468659,0.755448,0.335885,0.835185,0.343836,0.299013,0.824566,0.66806,0.248121,0.573062,0.114969,0.862177,0.450828,0.901575,0.151822,0.713154,0.948047,0.448825,0.515018,0.55683,0.338282,0.325792,0.557593,0.663218,0.380145,0.136443,0.880716,0.735522,0.250327,0.0385016,0.450547,0.880823,0.639708,0.588153,0.387905,0.813091,0.611865,0.385374,0.431033,0.121455,0.444688,0.638203,0.145955,0.0367693,0.302157,0.341405,0.307688,0.139384,0.0427305,0.415845,0.0569124,0.645348,0.364051,0.719724,0.153872,0.250319,0.210419,0.579495,0.680698,0.089662,0.585147,0.257057,0.682951,0.157289,0.324036,0.142118,0.0720495,0.538721,0.353415,0.581888,0.891961,0.226369,0.48625,0.844126,0.880841,0.111433,0.16636,0.166432,0.190695,0.32958,0.249773,0.821477,0.263835,0.675517,0.838066,0.120629,0.811826,0.207183,0.165428,0.890921,0.700873,0.219589,0.0495292,0.843536,0.93234,0.762134,0.808795,0.553342,0.293734,0.394896,0.180854,0.68248,0.0383384,0.434514,0.443874,0.128056,0.232842,0.0662361,0.843521,0.748568,0.000801265,0.579583,0.200855,0.0123853,0.81575,0.720227,0.935896,0.587719,0.812069,0.0285699,0.480313,0.653934,0.00424784,0.987339,0.10906,0.885768,0.0421666,0.337533,0.689669,0.691507,0.168487,0.0890466,0.150877,0.738382,0.233517,0.211864,0.304169,0.654163,0.377813,0.178333,0.806528,0.858234,0.121711,0.998521,0.658576,0.33195,0.660458,0.706843,0.554008,0.109777,0.506524,0.933469,0.792919,0.410799,0.881681,0.313755,0.5294,0.407887,0.237137,0.353289,0.499275,0.652547,0.671206,0.148911,0.959433,0.346488,0.615521,0.801968,0.537388,0.1919,0.913636,0.0839476,0.313354,0.0281126,0.982742,0.498563,0.0239829,0.321055,0.694047,0.787193,0.335981,0.328229,0.222945,0.527207,0.71327,0.536311,0.0957662,0.674177,0.778435,0.864798,0.830856,0.422429,0.573061,0.399796,0.50702,0.119022,0.869323,0.646802,0.928777,0.439944,0.917087,0.212211,0.785881,0.208052,0.622174,0.062305,0.305435,0.108841,0.989163,0.582371,0.578627,0.980629,0.13603,0.663515,0.59533,0.848203,0.154903,0.423933,0.0510368,0.647334,0.942098,0.529181,0.872335,0.195224,0.0809737,0.810273,0.589046,0.349845,0.279507,0.695514,0.330603,0.831808,0.430012,0.105401,0.107203,0.894963,0.615403,0.268655,0.904835,0.0207437,0.931257,0.363323,0.182278,0.246933,0.447233,0.643948,0.0365725,0.391084,0.647515,0.779568,0.742557,0.218529,0.358668,0.0444148,0.374436,0.0637448,0.685929,0.258155,0.889125,0.234163,0.644042,0.755162,0.374662,0.303913,0.212036,0.369207,0.98837,0.12532,0.756309,0.19608,0.579965,0.524921,0.299111,0.918409,0.638081,0.914198,0.230061,0.125484,0.365484,0.121475,0.298783,0.297976,0.166575,0.143968,0.502281,0.0621216,0.415968,0.32408,0.224151,0.100398,0.617874,0.115565,0.523833,0.0860149,0.21853,0.182611,0.268306,0.59373,0.816665,0.310172,0.268922,0.382232,0.146921,0.788592,0.145907,0.910876,0.928382,0.657213,0.558261,0.377559,0.351371,0.632724,0.372632,0.789178,0.19358,0.457252,0.479007,0.244045,0.578727,0.802396,0.376135,0.211454,0.515297,0.865522,0.12019,0.593758,0.559763,0.417343,0.49265,0.464926,0.446854,0.294607,0.922414,0.784405,0.270629,0.607329,0.193199,0.250071,0.253812,0.958777,0.122386,0.0852891,0.630945,0.0526049,0.115126,0.650447,0.40469,0.720742,0.441521,0.613857,0.830984,0.802721,0.892024,0.00945115,0.911206,0.436468,0.273976,0.924644,0.310173,0.496288,0.818247,0.0576785,0.633739,0.96666,0.301225,0.774989,0.730781,0.30408,0.481536,0.405977,0.0133307,0.71062,0.812382,0.20754,0.901037,0.89191,0.422169,0.221544,0.452174,0.401102,0.376816,0.2462,0.551158,0.886268,0.88693,0.0561168,0.95493,0.113907,0.214789,0.822516,0.390578,0.44303,0.710797,0.806063,0.704999,0.983253,0.767794,0.341999,0.434772,0.117036,0.283949,0.175525,0.852926,0.159428,0.415769,0.419503,0.719193,0.67138,0.188723,0.189182,0.288401,0.00934601,0.905595,0.73916,0.33442,0.356278,0.365043,0.377994,0.656664,0.53176,0.00479001,0.685841,0.923647,0.0683819,0.399209,0.168669,0.591953,0.894821,0.480574,0.0910013,0.824122,0.123726,0.115035,0.891404,0.522806,0.524283,0.628231,0.494116,0.220897,0.452227,0.24509,0.339196,0.736243,0.194425,0.917253,0.236851,0.6729,0.245331,0.262086,0.582642,0.569566,0.448853,0.552884,0.934241,0.0459866,0.834797,0.218863,0.461324,0.854202,0.920045,0.631954,0.294343,0.8874,0.824082,0.378009,0.104107,0.388073,0.666021,0.759726,0.99405,0.478632,0.28297,0.986274,0.208056,0.474106,0.0354023,0.994507,0.240856,0.86589,0.222649,0.920869,0.482714,0.962317,0.393867,0.770178,0.889788,0.164215,0.552524,0.538399,0.977816,0.486552,0.240487,0.920612,0.416933,0.88869,0.737115,0.527015,0.876271,0.105747,0.296691,0.326084,0.204366,0.363996,0.418643,0.773054,0.141597,0.53606,0.942196,0.622922,0.640767,0.388482,0.597941,0.763977,0.788523,0.774736,0.385882,0.549838,0.700781,0.726357,0.136118,0.728517,0.470737,0.0328262,0.427903,0.243754,0.777662,0.223658,0.628695,0.423696,0.112493,0.226301,0.915443,0.272386,0.691412,0.638205,0.279717,0.432791,0.157683,0.273462,0.805282,0.616451,0.938852,0.809905,0.841475,0.16149,0.638319,0.553005,0.85257,0.681911,0.886671,0.823802,0.919453,0.650213,0.116971,0.939697,0.812362,0.846732,0.787756,0.00446653,0.870924,0.958423,0.835644,0.573242,0.805771,0.318393,0.173946,0.967063,0.852048,0.0716525,0.806245,0.327991,0.844258,0.961996,0.193828,0.214069,0.631521,0.765905,0.71063,0.458495,0.35646,0.731318,0.590079,0.525139,0.841839,0.497316,0.918315,0.355905,0.484388,0.391889,0.662588,0.58294,0.26089,0.371476,0.376687,0.78038,0.893703,0.643525,0.463075,0.346951,0.149088,0.169616,0.958837,0.326819,0.726988,0.983098,0.133631,0.377413,0.395953,0.817534,0.997114,0.22188,0.295394,0.491713,0.399135,0.965122,0.743776,0.548842,0.0938307,0.320176,0.431252,0.326449,0.102403,0.701177,0.417738,0.460873,0.152428,0.750573,0.314682,0.80958,0.545088,0.134114,0.264054,0.963303,0.325347,0.695065,0.534027,0.892617,0.121504,0.818264,0.741714,0.532153,0.331174,0.23328,0.169802,0.0846965,0.180548,0.271683,0.0174422,0.0605943,0.481081,0.245589,0.687253,0.0289705,0.0987688,0.786331,0.110391,0.144242,0.648047,0.315812,0.12892,0.106293,0.832482,0.0550188,0.649131,0.896617,0.341305,0.466825,0.784258,0.278378,0.600363,0.741795,0.397877,0.369841,0.332461,0.371583,0.706854,0.301165,0.210072,0.755784,0.494747,0.178656,0.274991,0.542381,0.251226,0.438595,0.314982,0.635784,0.470514,0.840629,0.0473969,0.77243,0.429857,0.543884,0.912644,0.373047,0.519423,0.249705,0.287472,0.495575,0.936661,0.161414,0.289696,0.843919,0.203823,0.732056,0.890487,0.576321,0.471311,0.392971,0.96195,0.602704,0.166642,0.758439,0.513873,0.233897,0.61867,0.547968,0.809835,0.416223,0.457936,0.435975,0.585825,0.400716,0.415552,0.107289,0.831228,0.0300296,0.0773581,0.229734,0.957898,0.350702,0.728938,0.854069,0.379488,0.412444,0.0889821,0.888632,0.306543,0.309281,0.356597,0.679794,0.293104,0.158867,0.197054,0.228056,0.387736,0.885106,0.924498,0.963579,0.704927,0.0645924,0.23579,0.363425,0.864044,0.865136,0.367684,0.4885,0.274082,0.0235072,0.607828,0.692052,0.228858,0.70334,0.360183,0.0613938,0.244833,0.00265235,0.756221,0.724987,0.430683,0.957381,0.326394,0.241953,0.241863,0.993627,0.894869,0.829812,0.55801,0.0251188,0.128644,0.0186573,0.867015,0.375628,0.343367,0.349901,0.0949583,0.0183589,0.203486,0.0830079,0.734025,0.49813,0.649469,0.573543,0.787865,0.597952,0.0219389,0.0225571,0.981831,0.300648,0.249895,0.818222,0.384212,0.537157,0.365462,0.423531,0.778982,0.987979,0.810575,0.136272,0.0680209,0.0402992,0.295751,0.947863,0.206162,0.965188,0.145458,0.369501,0.0545518,0.638711,0.574228,0.77363,0.119338,0.649839,0.676575,0.815698,0.801821,0.0632357,0.505128,0.13028,0.488791,0.727877,0.369268,0.25274,0.422823,0.438427,0.583476,0.208334,0.00759935,0.427392,0.51803,0.0804163,0.711963,0.027455,0.511058,0.39125,0.895871,0.205609,0.699639,0.660768,0.0122044,0.0653856,0.633531,0.905981,0.497202,0.555859,0.721247,0.662804,|0.805678,0.201967,0.64179,0.228775,0.0535818,0.185464,0.0929865,0.0396481,0.251585,0.338806,0.706331,0.432605,0.640174,0.343162,0.181028,0.199717,0.304228,0.727984,0.0125076,0.828726,0.677599,0.162751,0.955743,0.592852,0.675801,0.778739,0.810164,0.670356,0.604637,0.408015,0.627865,0.953447,0.2118,0.852617,0.0731435,0.105275,0.131851,0.607478,0.393757,0.283583,0.871675,0.940048,0.166536,0.581105,0.991493,0.884329,0.551795,0.736679,0.384938,0.171429,0.936257,0.223732,0.252021,0.111775,0.286705,0.80165,0.382022,0.0256699,0.64815,0.31747,0.130825,0.896771,0.0768369,0.155197,0.963801,0.841694,0.407724,0.598933,0.0668857,0.271653,0.673638,0.0473669,0.952411,0.245287,0.439141,0.827703,0.654747,0.630985,0.215284,0.449821,0.609879,0.311063,0.475374,0.922291,0.702198,0.097635,0.00847095,0.125443,0.735419,0.342985,0.488702,0.207397,0.37239,0.581205,0.749085,0.96396,0.678329,0.989329,0.0270058,0.715206,0.916233,0.654315,0.678273,0.125216,0.895672,0.658556,0.853003,0.220376,0.8495,0.470269,0.125144,0.127233,0.996518,0.471235,0.571323,0.94311,0.955044,0.777077,0.941938,0.867332,0.377651,0.583374,0.914508,0.00841635,0.0712813,0.729036,0.613274,0.6279,0.337259,0.0191794,0.17047,0.297102,0.0134124,0.349013,0.761858,0.709951,0.245916,0.771335,0.73263,0.717018,0.834834,0.615028,0.164235,0.233056,0.749654,0.211772,0.142144,0.796779,0.465484,0.062593,0.37505,0.20995,0.199796,0.705495,0.971194,0.716761,0.977225,0.505297,0.183194,0.792353,0.235626,0.966197,0.899509,0.745296,0.932478,0.20591,0.921503,0.509558,0.175142,0.0436668,0.139459,0.384126,0.340127,0.104801,0.52353,0.878499,0.916702,0.615758,0.568837,0.530289,0.558451,0.939889,0.736152,0.843734,0.928352,0.243462,0.820831,0.519853,0.304078,0.811074,0.586692,0.891768,0.96849,0.528784,0.219378,0.578412,0.93917,0.585689,0.751327,0.895791,0.649208,0.526658,0.579733,0.187725,0.857944,0.75689,0.327909,0.887547,0.652278,0.235274,0.651901,0.851114,0.981415,0.647341,0.937599,0.412679,0.525052,0.164279,0.81296,0.224185,0.0635417,0.792819,0.785969,0.971163,0.374245,0.871198,0.977531,0.866536,0.0134433,0.791356,0.95791,0.893608,0.784108,0.991841,0.0084458,0.163638,0.286345,0.252612,0.20657,0.383605,0.68128,0.773555,0.604152,0.408524,0.359434,0.965976,0.392273,0.0958973,0.443946,0.218755,0.426933,0.780709,0.683857,0.000175536,0.225915,0.0169144,0.885532,0.835159,0.0234678,0.7612,0.638661,0.504966,0.688744,0.941218,0.186523,0.447857,0.474646,0.406016,0.0878787,0.244846,0.214161,0.744318,0.52362,0.757515,0.559111,0.974115,0.193537,0.647453,0.194886,0.845907,0.714222,0.342102,0.455173,0.574,0.795363,0.157103,0.859651,0.592867,0.0817277,0.457774,0.523479,0.995843,0.635639,0.774481,0.556755,0.589572,0.704617,0.119701,0.661202,0.700113,0.710998,0.952772,0.859905,0.571401,0.157317,0.703017,0.98362,0.910309,0.820744,0.656789,0.0341163,0.792573,0.725924,0.712218,0.160599,0.184942,0.796709,0.737367,0.301744,0.265508,0.710885,0.000330091,0.63989,0.09422,0.695923,0.279914,0.000976741,0.614703,0.369541,0.00491673,0.293411,0.452101,0.622046,0.740221,0.569762,0.171588,0.963292,0.169207,0.267288,0.363024,0.327165,0.888713,0.0952786,0.410321,0.915389,0.99835,0.175883,0.0301898,0.973983,0.68216,0.0417049,0.305949,0.804539,0.974578,0.106593,0.101434,0.562795,0.567834,0.869227,0.879753,0.596612,0.979694,0.109833,0.636713,0.0229136,0.995752,0.889962,0.0486866,0.694078,0.825489,0.10658,0.0443799,0.97011,0.844915,0.340517,0.129359,0.0842491,0.74749,0.617646,0.0683024,0.72684,0.763084,0.60146,0.767757,0.053197,0.608101,0.182755,0.893098,0.984534,0.367165,0.800226,0.79135,0.262633,0.714568,0.636428,0.293521,0.447721,0.689632,0.724807,0.639118,0.839122,0.0838408,0.617839,0.0270218,0.670818,0.354314,0.219008,0.453621,0.758543,0.635157,0.437517,0.00308442,0.980007,0.140786,0.127394,0.199726,0.731969,0.0858018,0.734884,0.881217,0.830675,0.473002,0.730698,0.208479,0.511998,0.652102,0.351505,0.156557,0.348148,0.352999,0.0706646,0.896016,0.497536,0.783253,0.695998,0.961867,0.968225,0.464803,0.36942,0.623226,0.16511,0.36058,0.23765,0.0505496,0.321913,0.00119418,0.695379,0.562539,0.206177,0.798915,0.0464078,0.122424,0.197623,0.86333,0.738131,0.507005,0.749496,0.42424,0.888377,0.403744,0.651792,0.788234,0.817527,0.473753,0.761583,0.74458,0.651616,0.36259,0.708393,0.428763,0.108169,0.292207,0.627014,0.371832,0.553579,0.447035,0.5121,0.825798,0.560431,0.326625,0.689632,0.747954,0.241054,0.810919,0.920899,0.662537,0.979849,0.318497,0.577914,0.7606,0.649037,0.0413785,0.238498,0.0114154,0.856448,0.783808,0.13699,0.439589,0.857022,0.509667,0.209968,0.962072,0.763685,0.321252,0.395352,0.928245,0.225947,0.525716,0.962301,0.23855,0.224345,0.0271241,0.38558,0.287175,0.230736,0.520967,0.45443,0.716598,0.431106,0.546844,0.732529,0.488468,0.8117,0.0546953,0.986525,0.395279,0.410477,0.476675,0.356678,0.0622989,0.344421,0.834915,0.0571264,0.569953,0.552272,0.8132,0.472504,0.88445,0.39526,0.100038,0.968598,0.194316,0.396146,0.881613,0.874922,0.78731,0.801913,0.262204,0.0158204,0.558692,0.727015,0.789111,0.692906,0.408153,0.251909,0.477196,0.48429,0.161985,0.692059,0.226461,0.803142,0.438327,0.15193,0.844491,0.335466,0.252903,0.355679,0.30443,0.50618,0.299405,0.92031,0.803505,0.800291,0.851047,0.887088,0.760095,0.438988,0.0423922,0.334009,0.762381,0.980681,0.754792,0.358517,0.379327,0.444865,0.0929071,0.081906,0.270525,0.0378352,0.130569,0.16736,0.845189,0.932661,0.537057,0.386621,0.514401,0.257637,0.13864,0.885621,0.822153,0.786712,0.931752,0.884013,0.0604616,0.0701714,0.649916,0.411538,0.237325,0.0381325,0.0996482,0.905149,0.865128,0.782489,0.937533,0.953187,0.350755,0.174343,0.136943,0.771154,0.0595838,0.615053,0.0508478,0.465502,0.716632,0.035412,0.044894,0.213067,0.0091207,0.704733,0.788581,0.422951,0.727072,0.897304,0.422591,0.630411,0.565903,0.405728,0.779508,0.0673189,0.94756,0.130744,0.895554,0.263964,0.650495,0.905673,0.193373,0.950547,0.973887,0.698844,0.0173787,0.393925,0.0457731,0.348084,0.559045,0.598797,0.555831,0.892397,0.56088,0.958322,0.998481,0.819291,0.194797,0.332825,0.851725,0.02872,0.992456,0.114008,0.743791,0.991636,0.568234,0.038773,0.548214,0.0227777,0.61661,0.0162447,0.877444,0.765367,0.283755,0.214494,0.774214,0.385255,0.416803,0.950215,0.905428,0.466826,0.629786,0.541432,0.774552,0.978806,0.747199,0.0956979,0.397579,0.510524,0.733106,0.594064,0.0833862,0.535473,0.460364,0.425422,0.318619,0.635163,0.487807,0.235133,0.266758,0.576265,0.285565,0.569921,0.239096,0.377008,0.47829,0.259239,0.93879,0.576542,0.23883,0.078818,0.734764,0.705327,0.503322,0.819564,0.601832,0.314206,0.0695117,0.39557,0.745322,0.00622505,0.338279,0.932555,0.473455,0.168523,0.996226,0.349852,0.930291,0.960334,0.937857,0.452314,0.311954,0.691841,0.361798,0.932879,0.465049,0.91042,0.382326,0.25163,0.0285649,0.828223,0.650006,0.401234,0.994472,0.211885,0.796738,0.645452,0.746011,0.856037,0.347566,0.875235,0.530209,0.203989,0.919765,0.168058,0.934974,0.307973,0.112901,0.19073,0.537521,0.134902,0.339717,0.521198,0.0561836,0.281106,0.609658,0.275954,0.663127,0.886902,0.185592,0.871781,0.395846,0.942135,0.760076,0.127916,0.91813,0.770547,0.665145,0.0468145,0.136602,0.42935,0.370381,0.1807,0.349922,0.0405115,0.0524334,0.921961,0.942279,0.408093,0.50435,0.331543,0.835066,0.376084,0.323937,0.71563,0.898609,0.830874,0.917618,0.59936,0.534532,0.891565,0.873706,0.309548,0.087471,0.55867,0.490818,0.4396,0.801787,0.798483,0.958453,0.481697,0.612083,0.73421,0.799475,0.584343,0.793402,0.0928668,0.297857,0.00303584,0.979405,0.256098,0.266552,0.58931,0.830583,0.342597,0.589864,0.246106,0.245005,0.623439,0.759227,0.719743,0.126529,0.675036,0.562411,0.856335,0.315865,0.237226,0.902171,0.620376,0.661351,0.495165,0.280745,0.96484,0.383343,0.659081,0.00391018,0.490742,0.226367,0.990864,0.274953,0.123111,0.416471,0.126825,0.770457,0.207136,0.142347,0.314327,0.589331,0.432473,0.484334,0.754345,0.187556,0.253903,0.0294598,0.442261,0.101632,0.834569,0.687535,0.86491,0.939413,0.513427,0.368908,0.672491,0.345763,0.514309,0.494595,0.687836,0.176686,0.74829,0.317401,0.7434,0.19828,0.212704,0.928561,0.181854,0.406766,0.294395,0.674354,0.423819,0.779543,0.0959558,0.648715,0.834953,0.537715,0.139055,0.0386807,0.720368,0.64894,0.880008,0.00266749,0.222327,0.741037,0.394592,0.456275,0.192529,0.737274,0.559531,0.61437,0.376583,0.467467,0.124977,0.644922,0.10782,0.17724,0.409395,0.954372,0.172593,0.706021,0.409041,0.172199,0.993389,0.957032,0.0400829,0.335825,0.383463,0.269227,0.44321,0.935797,0.240175,0.836587,0.268339,0.141137,0.300443,0.00778854,0.663716,0.280013,0.815221,0.638773,0.926808,0.135707,0.903772,0.357736,0.351428,0.480903,0.43784,0.583089,0.57154,0.523308,0.812747,0.853054,0.459999,0.31295,0.211709,0.743669,0.49358,0.273291,0.986383,0.406342,0.272319,0.392332,0.384661,0.404287,0.248482,0.659491,0.0734104,0.84242,0.218348,0.859758,0.248682,0.677441,0.433583,0.584822,0.265614,0.02007,0.502201,0.666351,0.247965,0.911614,0.143603,0.989497,0.0142695,0.690921,0.45823,0.701289,0.818511,0.319717,0.181477,0.211619,0.871129,0.11528,0.793433,0.218844,0.915629,0.758051,0.540289,0.143867,|0.519413,0.615101,0.00683314,0.273455,0.865451,0.241403,0.7086,0.346994,0.24168,0.64199,0.534303,0.144624,0.0348048,0.794703,0.751666,0.220332,0.321314,0.410505,0.260295,0.715635,0.242102,0.693057,0.758421,0.710331,0.347866,0.0823634,0.295251,0.471609,0.982037,0.858845,0.0423024,0.525954,0.213481,0.590617,0.919813,0.883589,0.601817,0.89943,0.225755,0.341498,0.824427,0.442404,0.942087,0.755068,0.0728133,0.0841344,0.338799,0.4506,0.962689,0.195292,0.620492,0.367923,0.619315,0.0236496,0.465891,0.44909,0.097894,0.952764,0.0964732,0.155518,0.317845,0.00908983,0.502184,0.0502972,0.287836,0.120115,0.932086,0.64949,0.549996,0.254941,0.126257,0.0949941,0.996813,0.89571,0.637302,0.811781,0.562072,0.424688,0.631511,0.814284,0.138223,0.0645624,0.838498,0.129116,0.277257,0.925183,0.836862,0.499996,0.214706,0.827468,0.661685,0.909766,0.565828,0.16449,0.117519,0.373902,0.80444,0.186311,0.884401,0.427063,0.277502,0.64703,0.886319,0.171757,0.980581,0.455981,0.794721,0.526368,0.268395,0.57199,0.318435,0.666317,0.145594,0.264299,0.0642278,0.640636,0.569254,0.488824,0.575098,0.565689,0.0477328,0.159122,0.861085,0.497802,0.646027,0.274914,0.533308,0.414106,0.532819,0.265083,0.560667,0.239099,0.971297,0.826632,0.59049,0.0687669,0.420236,0.0381975,0.251981,0.26931,0.292275,0.462866,0.873036,0.800362,0.759101,0.213629,0.361706,0.0637591,0.986394,0.0740512,0.727509,0.32763,0.198914,0.694112,0.151379,0.836626,0.172478,0.327574,0.499286,0.874678,0.447713,0.68427,0.772172,0.125627,0.535168,0.416001,0.505869,0.383636,0.25512,0.0609005,0.121605,0.695524,0.831365,0.928777,0.757939,0.80118,0.143454,0.138668,0.628787,0.26438,0.141201,0.125845,0.594684,0.141587,0.786033,0.782343,0.0165606,0.720885,0.314113,0.547263,0.960263,0.760867,0.483588,0.748784,0.897754,0.587771,0.198627,0.875789,0.61722,0.615329,0.49109,0.876117,0.980121,0.73554,0.294605,0.124053,0.969025,0.356486,0.727404,0.793472,0.922195,0.403563,0.867544,0.904502,0.69071,0.939533,0.349911,0.810006,0.825186,0.807048,0.812085,0.167394,0.403761,0.589258,0.813565,0.386594,0.69937,0.422496,0.403532,0.787055,0.857221,0.146761,0.220156,0.427676,0.880954,0.720308,0.739672,0.722053,0.487365,0.29145,0.186805,0.0182373,0.73938,0.0210394,0.763016,0.169458,0.383016,0.588483,0.140364,0.29186,0.744122,0.811232,0.709657,0.306448,0.826852,0.764817,0.378803,0.595624,0.549006,0.617583,0.412686,0.389902,0.274226,0.382821,0.615506,0.947565,0.118746,0.739871,0.0760008,0.484642,0.731418,0.608298,0.820716,0.0781799,0.42839,0.237999,0.0458832,0.926283,0.376017,0.30193,0.446595,0.176273,0.986741,0.377625,0.0161926,0.862144,0.18269,0.536757,0.437735,0.412493,0.706413,0.0881522,0.346535,0.449173,0.167468,0.958249,0.451108,0.84156,0.369441,0.562624,0.774481,0.716276,0.354739,0.702042,0.535118,0.117114,0.648497,0.0545074,0.068423,0.0570799,0.0734586,0.223958,0.0140921,0.314503,0.308678,0.735307,0.172977,0.541885,0.41458,0.786315,0.671629,0.679904,0.314565,0.173228,0.266008,0.904253,0.235207,0.771119,0.19404,0.282397,0.460248,0.925581,0.416177,0.630563,0.627592,0.848773,0.619196,0.608686,0.942492,0.31593,0.878056,0.625654,0.466177,0.753217,0.874594,0.778242,0.698777,0.189527,0.511051,0.532942,0.665273,0.588602,0.0117382,0.823097,0.795866,0.505513,0.0191192,0.390024,0.582064,0.0660796,0.472246,0.875816,0.147742,0.639429,0.38585,0.586806,0.546179,0.206909,0.297178,0.885763,0.0126166,0.656258,0.51711,0.897879,0.564195,0.771223,0.0813763,0.163172,0.391914,0.929762,0.376422,0.129525,0.668612,0.133115,0.310012,0.894365,0.148812,0.497332,0.841032,0.237132,0.374316,0.629022,0.573602,0.0799477,0.0417387,0.409814,0.267215,0.129843,0.994617,0.555695,0.631948,0.327702,0.958848,0.698282,0.0466806,0.111509,0.087602,0.696305,0.372473,0.961905,0.105246,0.214578,0.338851,0.45225,0.399045,0.195745,0.886496,0.41821,0.643056,0.564839,0.114296,0.332514,0.390284,0.800474,0.968535,0.339784,0.110817,0.37792,0.390842,0.874276,0.00979465,0.670883,0.857645,0.0577374,0.274755,0.685221,0.521426,0.90253,0.706586,0.948365,0.14888,0.337019,0.178252,0.981182,0.801516,0.906182,0.276846,0.435069,0.332479,0.104074,0.0634511,0.778941,0.763978,0.624674,0.336097,0.608425,0.522919,0.579501,0.240264,0.842871,0.338551,0.020389,0.345582,0.287073,0.803345,0.345765,0.937,0.871872,0.0620273,0.144135,0.518257,0.794947,0.80576,0.837871,0.00823522,0.347518,0.882665,0.924337,0.346317,0.00238812,0.943465,0.952623,0.478619,0.335508,0.582232,0.211742,0.999911,0.400668,0.911855,0.858158,0.44199,0.0988301,0.735596,0.309556,0.0114638,0.601771,0.896914,0.471191,0.674883,0.546397,0.561242,0.262344,0.821327,0.862191,0.300083,0.453999,0.740366,0.934202,0.310625,0.165323,0.244896,0.213263,0.801234,0.228725,0.203013,0.949452,0.534429,0.657631,0.29766,0.791931,0.733263,0.588494,0.85953,0.262061,0.742459,0.874729,0.602407,0.930274,0.652043,0.463754,0.812253,0.370409,0.801232,0.255313,0.761394,0.0882431,0.366084,0.431068,0.533023,0.892101,0.774753,0.842168,0.470408,0.7875,0.00806135,0.00754607,0.0486247,0.823933,0.354485,0.177252,0.394575,0.67619,0.401758,0.271553,0.842885,0.199029,0.999013,0.42871,0.873556,0.827128,0.0526914,0.64803,0.395202,0.689289,0.473491,0.787634,0.0901251,0.0973304,0.683221,0.388507,0.53985,0.293956,0.48169,0.61737,0.389557,0.0352621,0.267999,0.0973539,0.996161,0.159629,0.752659,0.539386,0.839525,0.499609,0.0405751,0.85463,0.375379,0.831178,0.448541,0.940699,0.887542,0.894247,0.0727969,0.999709,0.596802,0.393019,0.987239,0.988049,0.492728,0.829567,0.203132,0.886782,0.198156,0.669519,0.842706,0.440633,0.472801,0.756313,0.231551,0.175617,0.956071,0.784711,0.352089,0.396151,0.834831,0.745808,0.803982,0.808719,0.484675,0.475202,0.879994,0.0248896,0.354733,0.144674,0.967423,0.835029,0.165931,0.279403,0.0675756,0.762936,0.691814,0.525398,0.876997,0.207062,0.217861,0.683659,0.384517,0.0238615,0.0394504,0.35497,0.850981,0.0429618,0.513018,0.466516,0.837173,0.199309,0.493967,0.76212,0.968154,0.138771,0.249035,0.948419,0.971331,0.961524,0.280676,0.210773,0.638586,0.337561,0.736859,0.217909,0.416542,0.372936,0.153021,0.552482,0.332061,0.185516,0.215173,0.0822318,0.972637,0.0797725,0.436335,0.560577,0.259386,0.482193,0.144305,0.975811,0.917356,0.807003,0.315192,0.550735,0.0730603,0.423581,0.56732,0.366952,0.44648,0.880425,0.877229,0.28981,0.370741,0.515646,0.577876,0.435355,0.0992656,0.3619,0.521953,0.657001,0.355544,0.293976,0.801792,0.236646,0.27232,0.968804,0.811098,0.600876,0.374894,0.574602,0.804445,0.631148,0.687631,0.333467,0.579895,0.287001,0.259212,0.955904,0.377076,0.49834,0.60264,0.492116,0.0206742,0.762799,0.776435,0.278275,0.534899,0.106219,0.448457,0.0966485,0.744708,0.0134215,0.622544,0.338591,0.167732,0.533594,0.560962,0.716649,0.139281,0.118174,0.198056,0.76513,0.707745,0.249763,0.673989,0.200535,0.324055,0.546387,0.397783,0.103803,0.26868,0.370686,0.100823,0.289139,0.91285,0.235603,0.264664,0.156478,0.031709,0.7803,0.0985399,0.436576,0.279847,0.238512,0.450744,0.540045,0.8711,0.0658953,0.803009,0.0802823,0.0279577,0.288476,0.844355,0.736186,0.849698,0.396399,0.747437,0.539991,0.576079,0.983229,0.169942,0.736115,0.145706,0.51755,0.906905,0.976569,0.59797,0.468358,0.849881,0.921374,0.808436,0.44828,0.574776,0.269451,0.869322,0.705619,0.65408,0.476292,0.593517,0.245814,0.731415,0.225069,0.215417,0.936704,0.333839,0.935944,0.9598,0.534616,0.719452,0.743251,0.0790718,0.952389,0.757607,0.885738,0.591228,0.568267,0.591573,0.543515,0.797776,0.180383,0.236033,0.296073,0.464699,0.224194,0.222882,0.588823,0.934805,0.0808083,0.511928,0.793965,0.666718,0.846376,0.404407,0.329391,0.801298,0.871114,0.302378,0.85718,0.667478,0.760377,0.14875,0.266153,0.30611,0.426098,0.106836,0.237797,0.31762,0.159102,0.287724,0.895353,0.956007,0.376842,0.367798,0.803485,0.800716,0.379255,0.703709,0.0304361,0.608643,0.489672,0.443937,0.944193,0.307064,0.898844,0.328681,0.583535,0.785549,0.572497,0.811835,0.752591,0.747249,0.273977,0.310069,0.814224,0.592899,0.593612,0.534909,0.644401,0.676535,0.964865,0.359408,0.502402,0.298086,0.149018,0.332121,0.663689,0.66262,0.721329,0.505554,0.00116128,0.0241763,0.135438,0.405513,0.555111,0.246373,0.749072,0.971717,0.24069,0.345927,0.649055,0.630745,0.574795,0.685355,0.0716134,0.527335,0.676545,0.254011,0.853835,0.358693,0.870402,0.363702,0.82524,0.478415,0.261385,0.500376,0.086592,0.274596,0.0742694,0.75439,0.357338,0.832709,0.369313,0.556745,0.0955292,0.115814,0.998823,0.287047,0.931521,0.719374,0.0261604,0.504472,0.107379,0.0866148,0.585667,0.192144,0.672169,0.858057,0.699354,0.602292,0.367424,0.116566,0.557691,0.242127,0.731456,0.362127,0.201519,0.12579,0.507873,0.35605,0.430928,0.0484321,0.459342,0.886183,0.589663,0.346351,0.360666,0.34756,0.106675,0.424397,0.335515,0.476882,0.24548,0.462719,0.897535,0.736596,0.7603,0.501172,0.783166,0.703725,0.547749,0.397264,0.202025,0.963475,0.909477,0.973821,0.193735,0.537008,0.113932,0.54836,0.474035,0.295869,0.317555,0.220374,0.236998,0.279798,0.840064,0.662177,0.617465,0.557004,0.390754,0.39749,0.816507,0.00194359,0.801056,0.191835,0.12424,0.61015,0.511119,0.990693,0.952186,0.5861,0.623674,0.971516,0.205386,|0.556806,0.22279,0.846838,0.672984,0.0532427,0.481454,0.925697,0.0305518,0.177539,0.299513,0.40051,0.758376,0.0161084,0.640876,0.830143,0.910226,0.861061,0.866692,0.772182,0.387918,0.898859,0.453236,0.849469,0.897265,0.0225244,0.61929,0.0477942,0.282923,0.748848,0.813565,0.706705,0.240016,0.0295296,0.508615,0.996454,0.158467,0.770135,0.369696,0.51264,0.0958495,0.121468,0.157537,0.198277,0.259303,0.038954,0.117347,0.11511,0.754903,0.0536499,0.545412,0.207601,0.959983,0.203448,0.138652,0.284528,0.180689,0.13116,0.879065,0.531276,0.263254,0.51629,0.650139,0.00472194,0.727201,0.611328,0.0591887,0.529345,0.239475,0.383557,0.534963,0.316094,0.804538,0.749667,0.733743,0.44441,0.0983481,0.797992,0.724186,0.641241,0.849882,0.656691,0.291612,0.224559,0.927909,0.948314,0.916619,0.131759,0.482786,0.563551,0.511295,0.0886511,0.0444006,0.0726714,0.322225,0.870916,0.529632,0.663736,0.0558994,0.398564,0.304061,0.80919,0.58036,0.137561,0.578394,0.367526,0.345753,0.946687,0.282503,0.180864,0.269989,0.560187,0.707867,0.780185,0.61622,0.0675014,0.00714117,0.162119,0.322893,0.427841,0.903958,0.0544683,0.936723,0.216413,0.473187,0.461782,0.547374,0.250224,0.729489,0.27207,0.547794,0.454301,0.98537,0.98899,0.663187,0.823678,0.303295,0.049562,0.0494135,0.736325,0.625891,0.146391,0.0581776,0.127634,0.559534,0.751923,0.667158,0.692527,0.153313,0.439538,0.0874515,0.771583,0.617581,0.805193,0.59454,0.328429,0.562265,0.0115802,0.192248,0.918796,0.674189,0.823334,0.0892337,0.560178,0.115294,0.998789,0.462485,0.425821,0.401068,0.628334,0.911698,0.694532,0.0256835,0.106066,0.219835,0.472637,0.176533,0.946886,0.00742406,0.511981,0.873491,0.198441,0.103155,0.364239,0.747988,0.386558,0.739911,0.0779464,0.148959,0.434815,0.12713,0.538346,0.97355,0.789246,0.944931,0.792886,0.737003,0.551007,0.51413,0.222454,0.766911,0.769109,0.0839921,0.0835063,0.350005,0.747304,0.569579,0.608511,0.806912,0.878855,0.242544,0.55548,0.150634,0.65175,0.835637,0.82965,0.612137,0.499236,0.153448,0.121543,0.322298,0.0337691,0.857948,0.543246,0.574629,0.32434,0.270326,0.523885,0.364568,0.383149,0.926662,0.365313,0.273874,0.00971508,0.936584,0.235026,0.00209016,0.270008,0.343346,0.609474,0.672375,0.372995,0.889283,0.0478173,0.153423,0.84063,0.158946,0.872792,0.599542,0.749185,0.698231,0.506502,0.148733,0.351429,0.8333,0.301636,0.415344,0.00708896,0.361984,0.680229,0.0375651,0.611807,0.190258,0.319763,0.133736,0.132304,0.110005,0.263127,0.163037,0.597448,0.187598,0.140202,0.642456,0.10298,0.585995,0.999653,0.671993,0.997466,0.327515,0.813331,0.366606,0.752777,0.866299,0.499977,0.769011,0.372648,0.912277,0.0812739,0.0826722,0.484368,0.214885,0.479508,0.646459,0.168726,0.717302,0.0190559,0.477882,0.877939,0.0563215,0.467346,0.294068,0.465228,0.507805,0.323269,0.351941,0.816888,0.340667,0.548596,0.600809,0.76122,0.460429,0.978286,0.62962,0.0196304,0.282943,0.408355,0.904469,0.373421,0.844247,0.331194,0.3551,0.285384,0.864818,0.139413,0.108685,0.0543252,0.450058,0.44948,0.920829,0.603672,0.336571,0.817091,0.847735,0.878806,0.215257,0.603963,0.64796,0.700351,0.846081,0.781462,0.591548,0.819028,0.950785,0.721532,0.405589,0.948189,0.193592,0.274899,0.742288,0.727072,0.881325,0.949366,0.915132,0.265844,0.544593,0.884427,0.399833,0.116518,0.738533,0.00231999,0.80572,0.929675,0.719626,0.70423,0.94158,0.994001,0.640006,0.926506,0.258873,0.435189,0.563704,0.439268,0.871199,0.222892,0.845878,0.890727,0.00819963,0.118339,0.889124,0.884879,0.823223,0.0553291,0.481839,0.543505,0.566192,0.62554,0.900057,0.687155,0.668525,0.48506,0.717558,0.220752,0.90695,0.738359,0.402502,0.662449,0.187173,0.0806936,0.654847,0.210718,0.510386,0.881073,0.924332,0.80453,0.836027,0.261313,0.152312,0.0576388,0.599378,0.292001,0.810734,0.978104,0.375682,0.367883,0.851891,0.418078,0.399026,0.144398,0.792348,0.694194,0.53837,0.243698,0.259222,0.500622,0.729798,0.465725,0.767599,0.946762,0.752997,0.193704,0.573672,0.272164,0.131527,0.973253,0.143693,0.0491577,0.909763,0.915004,0.27348,0.282229,0.344829,0.917923,0.0436265,0.928848,0.00229931,0.907315,0.666404,0.751633,0.211964,0.901153,0.690619,0.675776,0.233661,0.187206,0.701379,0.8978,0.280068,0.669894,0.770105,0.233626,0.48732,0.510808,0.888455,0.594492,0.440115,0.754973,0.253238,0.219852,0.811687,0.42262,0.26969,0.935994,0.26748,0.565014,0.856403,0.420448,0.785474,0.565178,0.147991,0.852398,0.319097,0.184371,0.386389,0.763834,0.984347,0.457186,0.147913,0.0656809,0.313105,0.887482,0.263917,0.192397,0.912271,0.067189,0.755978,0.224042,0.332238,0.419228,0.330405,0.951863,0.237715,0.903381,0.930194,0.746262,0.665159,0.89304,0.210452,0.00608766,0.0973474,0.171402,0.112296,0.668171,0.71704,0.602864,0.469503,0.625333,0.0315644,0.95551,0.000308037,0.154101,0.178335,0.0255054,0.97585,0.0476094,0.225772,0.349857,0.846621,0.617886,0.42529,0.750261,0.228357,0.741499,0.867146,0.92582,0.165743,0.622799,0.71717,0.908721,0.267912,0.53613,0.456072,0.106825,0.683921,0.0196127,0.831739,0.0867022,0.709519,0.583059,0.689141,0.901909,0.428894,0.371591,0.738444,0.374976,0.200829,0.874068,0.852748,0.906223,0.519516,0.330335,0.795422,0.112189,0.298155,0.209586,0.596967,0.437569,0.606115,0.130825,0.0842482,0.605947,0.0349348,0.0990491,0.164002,0.999206,0.794869,0.353958,0.301623,0.692196,0.762998,0.0873923,0.674387,0.140995,0.708247,0.700121,0.133318,0.573149,0.976391,0.727884,0.932036,0.654056,0.12915,0.329634,0.562377,0.878789,0.616433,0.903463,0.409261,0.419718,0.654335,0.348453,0.991787,0.117801,0.912913,0.260537,0.363641,0.62601,0.0828858,0.856094,0.712139,0.579644,0.22028,0.908228,0.29586,0.620405,0.458045,0.292766,0.278315,0.912371,0.08377,0.476993,0.250258,0.839357,0.345651,0.710926,0.554265,0.685846,0.355538,0.354804,0.0981529,0.439398,0.149989,0.0025664,0.362264,0.708986,0.896762,0.9618,0.0247419,0.171139,0.645469,0.662391,0.178136,0.173366,0.972514,0.119433,0.101473,0.513204,0.607486,0.0790074,0.119841,0.520097,0.793881,0.881154,0.805421,0.0335967,0.329985,0.702141,0.53214,0.678048,0.873261,0.456162,0.831131,0.093496,0.83693,0.611298,0.673878,0.238483,0.378993,0.632457,0.122901,0.78703,0.493699,0.227654,0.0818335,0.949183,0.762081,0.220143,0.705081,0.717128,0.484942,0.605472,0.22727,0.76127,0.759616,0.00341171,0.336794,0.287575,0.118013,0.642624,0.101482,0.662958,0.88127,0.125552,0.139889,0.46289,0.174048,0.900454,0.796436,0.685297,0.972166,0.793267,0.861207,0.649105,0.177207,0.725757,0.869656,0.747302,0.158294,0.316171,0.315184,0.868366,0.515706,0.681881,0.811759,0.764123,0.929037,0.404122,0.354049,0.993129,0.548301,0.659468,0.510266,0.564322,0.970977,0.153489,0.65153,0.702572,0.827489,0.929008,0.678768,0.140391,0.506913,0.931316,0.94595,0.52517,0.83613,0.0219817,0.90329,0.0829341,0.0768875,0.502599,0.715389,0.367461,0.277289,0.592675,0.437807,0.0499613,0.130987,0.940834,0.217812,0.23346,0.274115,0.758817,0.439002,0.274045,0.766912,0.310531,0.645096,0.631493,0.527223,0.858994,0.15821,0.931874,0.174131,0.35623,0.883547,0.772863,0.164043,0.767442,0.922156,0.508873,0.730418,0.35417,0.852455,0.693767,0.755814,0.0644835,0.569533,0.708466,0.0144132,0.709806,0.75046,0.389431,0.436369,0.645972,0.675812,0.0625235,0.563196,0.726468,0.912001,0.866838,0.478487,0.339424,0.925087,0.295175,0.62465,0.0830209,0.165936,0.703595,0.0517023,0.246546,0.746348,0.73479,0.997534,0.704867,0.174024,0.602533,0.293183,0.189323,0.806125,0.855276,0.677033,0.518031,0.505795,0.428891,0.658175,0.48343,0.97208,0.0521349,0.343242,0.000546694,0.71697,0.881761,0.258422,0.115863,0.584204,0.243496,0.542541,0.142253,0.652248,0.369857,0.189686,0.87799,0.833091,0.947528,0.0385059,0.819131,0.352926,0.272096,0.666856,0.95204,0.173408,0.703832,0.700992,0.965672,0.201839,0.0800684,0.485767,0.854456,0.805466,0.221356,0.428494,0.134462,0.371273,0.602196,0.812321,0.788697,0.940555,0.243855,0.219513,0.0525224,0.942404,0.14387,0.684887,0.730096,0.380052,0.163381,0.366746,0.758135,0.0249129,0.794142,0.409913,0.820394,0.934876,0.427267,0.743956,0.0980967,0.489998,0.508579,0.285588,0.0905139,0.00240958,0.0822214,0.0774847,0.860703,0.3247,0.724858,0.358614,0.897322,0.891923,0.974157,0.42342,0.523474,0.466199,0.763448,0.126758,0.621062,0.484331,0.882007,0.707481,0.357021,0.242644,0.73049,0.0802655,0.145791,0.47142,0.168487,0.329486,0.855266,0.280085,0.436039,0.745128,0.25047,0.342766,0.624583,0.956146,0.872747,0.634048,0.475467,0.17363,0.425458,0.877545,0.192652,0.769863,0.544052,0.109902,0.500428,0.359856,0.849741,0.714425,0.51172,0.904623,0.131693,0.727252,0.890838,0.452852,0.820833,0.744018,0.146328,0.721187,0.581422,0.567393,0.291286,0.491775,0.869761,0.769892,0.0859506,0.0377944,0.404353,0.400697,0.428002,0.807689,0.467089,0.752094,0.566876,0.402943,0.160012,0.332893,0.0474777,0.598579,0.0747108,0.80211,0.0233132,0.334726,0.640434,0.998524,0.898569,0.28657,0.749062,0.682624,0.226344,0.542714,0.969172,0.885961,0.385952,0.735996,0.351462,0.0397961,0.0336716,0.945642,0.51354,0.695388,0.788639,0.627213,0.488391,0.026366,0.252658,0.401472,0.815012,0.0167149,0.526126,0.0808845,0.36359,0.476631,0.796803,0.947824,0.344509,0.201173,0.161205,0.70984,0.0702429,0.267023,|0.841864,0.202747,0.100094,0.531684,0.800521,0.0245388,0.679211,0.634322,0.791079,0.718784,0.534559,0.330674,0.524879,0.737246,0.509086,0.13109,0.737703,0.0242472,0.108071,0.346258,0.628091,0.898251,0.962837,0.741603,0.281645,0.163235,0.981778,0.265856,0.709238,0.956782,0.225002,0.579222,0.910248,0.587454,0.9957,0.169861,0.393297,0.844373,0.371301,0.647056,0.422998,0.995547,0.803307,0.0777923,0.251386,0.98202,0.982878,0.562634,0.384429,0.0410862,0.48329,0.708658,0.78297,0.702945,0.424456,0.30785,0.775343,0.493241,0.0453149,0.471238,0.23085,0.910564,0.243085,0.368216,0.576573,0.485543,0.517727,0.636405,0.236367,0.687835,0.782309,0.625357,0.00500906,0.252547,0.143477,0.0250465,0.54972,0.159918,0.56784,0.667965,0.761668,0.363169,0.115164,0.584444,0.969306,0.74129,0.413148,0.0869641,0.280663,0.202528,0.235871,0.278374,0.0568702,0.144383,0.0783082,0.0426248,0.721697,0.878711,0.155601,0.530523,0.0185918,0.498603,0.679265,0.516424,0.104329,0.0911718,0.122041,0.399133,0.0704432,0.658332,0.334306,0.983669,0.483599,0.947669,0.909511,0.618048,0.9893,0.841533,0.596878,0.469414,0.00360286,0.821738,0.41547,0.915251,0.967679,0.0175684,0.103981,0.77933,0.105866,0.542174,0.888712,0.77221,0.401731,0.459257,0.919734,0.509021,0.871321,0.2502,0.594962,0.307882,0.417363,0.850357,0.0907163,0.279575,0.783061,0.628691,0.484336,0.0970712,0.657573,0.690241,0.25732,0.668999,0.653342,0.0764755,0.480559,0.0918258,0.157876,0.57394,0.118497,0.0257546,0.286979,0.566475,0.432029,0.0619807,0.233114,0.00242436,0.939521,0.457601,0.813595,0.0781866,0.301384,0.905918,0.779642,0.991124,0.772042,0.755112,0.0473521,0.882361,0.440712,0.833747,0.92365,0.108143,0.358233,0.776944,0.242392,0.351335,0.651722,0.368741,0.0905204,0.259462,0.423631,0.226731,0.0140314,0.991788,0.328798,0.00960243,0.715537,0.286584,0.617189,0.0249581,0.9684,0.498002,0.508995,0.607389,0.786147,0.217851,0.410982,0.837154,0.27574,0.627783,0.901862,0.0339386,0.88195,0.445572,0.475716,0.348392,0.609137,0.467169,0.189002,0.224391,0.983633,0.716709,0.934795,0.685498,0.629656,0.22674,0.801068,0.461333,0.553472,0.627403,0.450132,0.903109,0.57058,0.450226,0.797828,0.464698,0.334019,0.829593,0.232675,0.443281,0.427462,0.826412,0.844605,0.954764,0.139121,0.499181,0.977891,0.807139,0.325371,0.606987,0.183272,0.876591,0.3129,0.17578,0.264708,0.0544106,0.189114,0.153529,0.365572,0.424936,0.283811,0.627289,0.627563,0.169498,0.0531309,0.885366,0.496417,0.312269,0.253958,0.779299,0.955492,0.363579,0.743612,0.845701,0.0357972,0.698617,0.0411164,0.245717,0.760158,0.826491,0.504005,0.280853,0.0433394,0.30505,0.0444955,0.267096,0.470714,0.957738,0.524473,0.896027,0.836814,0.115471,0.241495,0.212934,0.367035,0.0374025,0.432797,0.621493,0.0411916,0.760349,0.346806,0.643957,0.115374,0.0454156,0.41076,0.211565,0.618318,0.0332323,0.593093,0.87423,0.829143,0.569973,0.15134,0.552565,0.712975,0.359544,0.425636,0.625443,0.753709,0.823696,0.788493,0.803868,0.669636,0.556162,0.807097,0.639419,0.207385,0.74442,0.789264,0.0348216,0.808017,0.744827,0.216385,0.678048,0.237595,0.243487,0.678302,0.150122,0.826226,0.610857,0.191261,0.93919,0.512261,0.418586,0.128212,0.436144,0.405809,0.108187,0.74239,0.958521,0.0756199,0.969834,0.154591,0.0466927,0.323589,0.293071,0.762803,0.634884,0.0251185,0.292286,0.623491,0.247176,0.0547708,0.283872,0.897242,0.598974,0.235998,0.450113,0.403179,0.5407,0.396207,0.836306,0.7653,0.490455,0.186432,0.00211257,0.241893,0.730592,0.298181,0.355687,0.356367,0.973348,0.377282,0.201069,0.616352,0.407656,0.0807242,0.560682,0.721653,0.571117,0.203944,0.0160352,0.177097,0.0367272,0.176375,0.6773,0.226006,0.506109,0.255568,0.932767,0.948305,0.944558,0.169903,0.148558,0.017032,0.121187,0.792649,0.252438,0.788209,0.258174,0.518104,0.0118376,0.559335,0.327057,0.932271,0.317271,0.734656,0.154785,0.494741,0.0912943,0.989756,0.354764,0.767079,0.775122,0.767664,0.0353684,0.932843,0.542884,0.30912,0.845454,0.664481,0.419005,0.363512,0.486968,0.776314,0.896263,0.648069,0.678315,0.163495,0.446161,0.127321,0.723483,0.345859,0.973068,0.525346,0.359494,0.800443,0.0569699,0.326856,0.5549,0.802067,0.362912,0.366321,0.933092,0.884773,0.888796,0.0252909,0.984121,0.425414,0.847517,0.801592,0.153497,0.816654,0.0551543,0.0317874,0.891117,0.181339,0.466401,0.657481,0.329454,0.183811,0.773431,0.659396,0.613624,0.423608,0.603363,0.963724,0.677461,0.292924,0.487028,0.921945,0.38495,0.812016,0.262794,0.163454,0.6825,0.166514,0.787969,0.226139,0.658973,0.195951,0.965501,0.0966167,0.486999,0.192345,0.832514,0.439729,0.212571,0.0121914,0.952114,0.258863,0.0412771,0.760527,0.766597,0.135395,0.567623,0.399116,0.919638,0.407604,0.434402,0.213553,0.893603,0.516624,0.311803,0.0287066,0.224957,0.12422,0.843361,0.348556,0.581115,0.698189,0.667882,0.871229,0.300368,0.21511,0.0835506,0.678403,0.0923452,0.354576,0.452916,0.872868,0.904832,0.23348,0.562706,0.102286,0.865577,0.32946,0.506974,0.771594,0.549314,0.584205,0.301213,0.4668,0.10445,0.0621787,0.728145,0.926953,0.497273,0.680074,0.0246487,0.22645,0.0306234,0.845661,0.734285,0.15389,0.610857,0.754872,0.720839,0.777438,0.414798,0.328159,0.247424,0.153222,0.243913,0.947347,0.935005,0.954798,0.512261,0.485009,0.473785,0.871393,0.337834,0.462209,0.47294,0.681669,0.577512,0.00414854,0.5862,0.872865,0.422965,0.54781,0.933165,0.903291,0.195596,0.630772,0.190549,0.8227,0.247083,0.837519,0.0274899,0.792744,0.606873,0.917406,0.409168,0.573229,0.301296,0.787318,0.990555,0.578759,0.770036,0.874891,0.315708,0.753343,0.401642,0.924512,0.163604,0.514347,0.775041,0.352176,0.304092,0.306646,0.255838,0.676702,0.0230101,0.399599,0.487609,0.467545,0.434844,0.151941,0.344374,0.580227,0.353668,0.232931,0.583348,0.987391,0.56757,0.477216,0.646221,0.367613,0.809311,0.238535,0.353735,0.198428,0.452132,0.285046,0.418113,0.103879,0.550962,0.192107,0.264285,0.286854,0.0494005,0.425838,0.263182,0.438654,0.183618,0.155072,0.831229,0.520346,0.635323,0.968263,0.100146,0.423484,0.574745,0.421544,0.715684,0.42466,0.886815,0.732345,0.85126,0.198098,0.534177,0.857492,0.239345,0.0529925,0.41153,0.50554,0.558667,0.485836,0.0334563,0.763581,0.565174,0.224321,0.275648,0.876527,0.369394,0.764669,0.308775,0.877159,0.453473,0.572144,0.958869,0.291101,0.332713,0.667017,0.2241,0.235152,0.0763369,0.918515,0.606596,0.633084,0.279702,0.31814,0.783212,0.52349,0.367409,0.950976,0.0777677,0.0737879,0.8413,0.26267,0.140943,0.0144271,0.627516,0.698317,0.378332,0.0520208,0.337119,0.57538,0.732378,0.562868,0.0795324,0.708229,0.300709,0.854399,0.998393,0.351556,0.691622,0.489316,0.410478,0.849474,0.165916,0.266767,0.117784,0.190861,0.2875,0.480616,0.662333,0.553431,0.525795,0.521952,0.005481,0.574362,0.879045,0.598167,0.639405,0.593693,0.795405,0.350378,0.189173,0.944672,0.139616,0.346239,0.270591,0.0220501,0.634967,0.402417,0.0379294,0.657559,0.0567668,0.710361,0.805933,0.811728,0.976414,0.894645,0.0553893,0.21896,0.681693,0.163325,0.199949,0.000888705,0.343046,0.903737,0.840907,0.628823,0.703709,0.671938,0.314983,0.552321,0.396943,0.835143,0.97749,0.678396,0.304274,0.909702,0.813483,0.406107,0.278669,0.194303,0.418037,0.298767,0.360772,0.411122,0.0188584,0.774099,0.807316,0.965733,0.915811,0.291023,0.201248,0.991466,0.17868,0.0156657,0.298596,0.584271,0.611838,0.0726718,0.484724,0.163064,0.0122589,0.67454,0.610524,0.549333,0.215791,0.903401,0.62639,0.624387,0.43672,0.89431,0.357277,0.632541,0.56247,0.421489,0.665737,0.643057,0.788684,0.0325817,0.519764,0.393505,0.870739,0.0471594,0.666837,0.0417054,0.0321241,0.757646,0.101773,0.450587,0.0912077,0.231297,0.966162,0.773311,0.329493,0.725916,0.530049,0.358703,0.224964,0.620517,0.170977,0.505595,0.389958,0.438003,0.214682,0.999368,0.0386652,0.479313,0.298976,0.396693,0.325992,0.0743184,0.255268,0.861556,0.886699,0.296057,0.235808,0.584489,0.190546,0.0992521,0.942095,0.094883,0.906784,0.716065,0.56715,0.105442,0.241801,0.90515,0.587727,0.357021,0.0701296,0.101986,0.128819,0.3696,0.92314,0.881591,0.1442,0.364567,0.988852,0.799891,0.275523,0.568162,0.743832,0.112297,0.647521,0.811518,0.818583,0.612895,0.947416,0.518519,0.441822,0.448557,0.44259,0.302822,0.418976,0.525071,0.293985,0.0157365,0.243335,0.649934,0.992085,0.265628,0.564217,0.767787,0.00819659,0.994243,0.483312,0.289693,0.895892,0.653005,0.00475013,0.280631,0.481904,0.887558,0.306987,0.0848395,0.805312,0.697593,0.806284,0.316209,0.51194,0.576705,0.924403,0.778637,0.869296,0.632796,0.815733,0.402213,0.65302,0.76196,0.690388,0.590761,0.847509,0.568311,0.666161,0.763381,0.13125,0.0458856,0.0859215,0.767786,0.897986,0.0561174,0.803116,0.255829,0.632772,0.540262,0.858195,0.784725,0.74121,0.0305728,0.769314,0.0430806,0.882729,0.102593,0.999694,0.868568,0.525178,0.958387,0.447487,0.608571,0.716065,0.114556,0.984956,0.968439,0.958378,0.324244,0.877917,0.217389,0.843509,0.427063,0.740522,0.982044,0.818123,0.152678,0.806186,0.208319,0.703257,0.497129,0.632584,0.116246,0.0573125,0.80606,0.654129,0.749252,0.600483,0.914559,0.236006,0.187077,0.92005,0.257714,0.901729,0.202231,0.0576871,0.0373476,0.415412,0.721985,0.624176,0.533004,0.244961,0.188815,0.958548,0.243456,0.929857,|0.781709,0.361291,0.800424,0.526886,0.603344,0.313078,0.331921,0.931287,0.729576,0.926276,0.578859,0.768186,0.265466,0.563784,0.436416,0.263846,0.327261,0.337284,0.813196,0.377928,0.0656466,0.123226,0.119653,0.32058,0.496376,0.501438,0.0871996,0.358996,0.21078,0.0212207,0.235448,0.421879,0.247514,0.579867,0.135975,0.604937,0.214322,0.62282,0.764345,0.5381,0.162757,0.291766,0.168835,0.222414,0.478911,0.386837,0.370674,0.123414,0.209993,0.516251,0.927813,0.87576,0.876089,0.583852,0.190599,0.60084,0.0276939,0.729514,0.978067,0.288704,0.0254646,0.709832,0.361086,0.432858,0.464555,0.945911,0.879928,0.538183,0.1127,0.829724,0.39581,0.681145,0.401603,0.990067,0.411724,0.86906,0.442382,0.790762,0.874901,0.109941,0.59636,0.961047,0.0565429,0.0684878,0.852671,0.708916,0.0226362,0.574379,0.188353,0.40058,0.468871,0.693946,0.739813,0.0795631,0.62114,0.708274,0.296153,0.5028,0.330481,0.0658552,0.474143,0.605312,0.393788,0.193008,0.984515,0.159221,0.20146,0.652805,0.734151,0.709928,0.670682,0.160264,0.644776,0.946636,0.226466,0.854728,0.964797,0.472828,0.950908,0.778164,0.0405228,0.53442,0.0826255,0.454872,0.84672,0.957341,0.371145,0.764091,0.5165,0.129229,0.539796,0.2875,0.542077,0.886497,0.64681,0.530751,0.129535,0.246962,0.716716,0.545767,0.776619,0.250557,0.886997,0.369478,0.119932,0.772488,0.625048,0.00316018,0.230817,0.216524,0.962057,0.424622,0.362534,0.106433,0.47698,0.464654,0.884925,0.37718,0.823916,0.666587,0.899782,0.706346,0.951684,0.71605,0.030867,0.308943,0.25402,0.307941,0.245189,0.843464,0.823928,0.361822,0.467684,0.511112,0.693843,0.811117,0.867456,0.29263,0.708529,0.473796,0.101999,0.612966,0.145989,0.966943,0.641279,0.933017,0.465193,0.321314,0.804715,0.880618,0.0951644,0.72833,0.226042,0.93072,0.848937,0.579108,0.886661,0.485545,0.0417882,0.59275,0.676854,0.439382,0.87063,0.360804,0.0563453,0.577803,0.540555,0.642125,0.847815,0.8412,0.885688,0.943053,0.555629,0.798669,0.176595,0.575924,0.697025,0.316527,0.710143,0.961565,0.0383083,0.448364,0.870831,0.770514,0.720394,0.726331,0.718721,0.83139,0.812839,0.387588,0.300848,0.33329,0.875192,0.421697,0.677793,0.935102,0.52982,0.0230989,0.719348,0.316353,0.755097,0.732723,0.463016,0.879868,0.372944,0.490363,0.166796,0.661687,0.075685,0.454488,0.243818,0.889346,0.569773,0.226014,0.625749,0.806093,0.0295035,0.416467,0.517896,0.361463,0.51498,0.242593,0.32018,0.532879,0.971502,0.306313,0.687062,0.881106,0.31155,0.411,0.0402046,0.508308,0.344982,0.86371,0.196286,0.331969,0.398663,0.743601,0.704236,0.301625,0.569009,0.71325,0.637796,0.913476,0.639446,0.942575,0.233832,0.654823,0.114448,0.713538,0.156522,0.704949,0.637398,0.454793,0.60105,0.664249,0.565661,0.303864,0.316328,0.0902224,0.769801,0.804346,0.964152,0.782508,0.928553,0.15712,0.62104,0.086552,0.62212,0.86156,0.451213,0.858274,0.686469,0.723637,0.197989,0.64216,0.0178358,0.161222,0.76496,0.452775,0.789776,0.166653,0.480333,0.0983811,0.998926,0.744899,0.717659,0.173367,0.928808,0.186336,0.387325,0.27188,0.288241,0.227583,0.253077,0.0465464,0.956074,0.0155054,0.424191,0.552852,0.525892,0.254945,0.875203,0.0638015,0.0113979,0.929063,0.87728,0.241324,0.423117,0.442281,0.850683,0.651227,0.0984839,0.19477,0.0232894,0.314819,0.205924,0.118814,0.115809,0.967413,0.563835,0.106268,0.311262,0.260067,0.198703,0.720997,0.7653,0.177376,0.492857,0.0855383,0.811735,0.416141,0.674699,0.184679,0.0433842,0.353928,0.461891,0.881874,0.939838,0.219816,0.394617,0.0291563,0.168059,0.902342,0.709854,0.0731422,0.252765,0.678563,0.193971,0.638547,0.934457,0.67019,0.623115,0.265298,0.195513,0.655989,0.954588,0.936887,0.22495,0.15687,0.0355027,0.641497,0.818185,0.664214,0.421444,0.423177,0.765816,0.516642,0.653057,0.128804,0.186896,0.759554,0.990157,0.0971708,0.686851,0.233801,0.423103,0.955318,0.163167,0.935586,0.222956,0.814875,0.536734,0.170503,0.963318,0.108663,0.519239,0.403245,0.970349,0.594825,0.148998,0.0512782,0.770718,0.601246,0.485563,0.485821,0.529345,0.735244,0.098953,0.542196,0.764989,0.897557,0.79964,0.255505,0.39174,0.0711348,0.69982,0.295251,0.955192,0.625062,0.28646,0.903386,0.329163,0.809596,0.135189,0.565796,0.0982628,0.113661,0.208666,0.698949,0.538619,0.284085,0.625717,0.019751,0.232533,0.886707,0.917232,0.780578,0.899616,0.779678,0.709255,0.251681,0.540197,0.570033,0.078403,0.15791,0.41545,0.411228,0.401072,0.253739,0.797847,0.381934,0.0733224,0.436305,0.777759,0.842523,0.422222,0.956999,0.560622,0.0689583,0.8736,0.162989,0.0337757,0.615516,0.586693,0.118971,0.490254,0.269611,0.3201,0.10933,0.171583,0.411105,0.0300526,0.273553,0.582009,0.373839,0.054597,0.71424,0.675574,0.0930811,0.284446,0.336688,0.880212,0.416283,0.0263353,0.792959,0.559786,0.933655,0.453083,0.881523,0.713574,0.184849,0.3971,0.127171,0.78949,0.464426,0.28011,0.438003,0.165869,0.519654,0.340322,0.593317,0.862184,0.16691,0.566521,0.881681,0.495467,0.507497,0.805834,0.88413,0.536124,0.496798,0.451786,0.0516582,0.0916372,0.831362,0.692938,0.762603,0.674381,0.709249,0.455278,0.707474,0.978033,0.68872,0.629137,0.509266,0.789302,0.908144,0.153109,0.59916,0.881805,0.0846367,0.586313,0.609688,0.457606,0.0418353,0.270955,0.718931,0.672987,0.984489,0.452424,0.481562,0.484139,0.169258,0.584045,0.235908,0.0179392,0.913963,0.315247,0.273275,0.239367,0.686342,0.154144,0.472113,0.589277,0.642006,0.855467,0.938359,0.890391,0.847179,0.0094198,0.97799,0.290974,0.736805,0.447011,0.499385,0.318226,0.0196648,0.154391,0.395426,0.459642,0.578476,0.611443,0.515215,0.412489,0.879687,0.821244,0.0380604,0.365126,0.910765,0.805602,0.467549,0.0595073,0.176657,0.102141,0.627096,0.618563,0.316105,0.543137,0.78409,0.795229,0.938118,0.739253,0.240494,0.632845,0.646486,0.465164,0.898746,0.701593,0.673644,0.913492,0.460461,0.0960726,0.442453,0.242597,0.238115,0.212764,0.911909,0.623285,0.941356,0.543049,0.329876,0.744844,0.847895,0.965023,0.206435,0.0737685,0.599603,0.528811,0.367878,0.588703,0.93025,0.215985,0.141233,0.270789,0.843953,0.0987961,0.935107,0.588247,0.415688,0.0772164,0.473477,0.192296,0.670456,0.60552,0.996065,0.12929,0.427458,0.935927,0.818699,0.220966,0.84156,0.257936,0.796691,0.125107,0.441794,0.0527403,0.395316,0.328749,0.00674492,0.893181,0.303868,0.735985,0.139903,0.366888,0.444496,0.240062,0.773757,0.859997,0.626049,0.112593,0.994532,0.120462,0.773044,0.783596,0.739639,0.704899,0.112313,0.1801,0.644814,0.896459,0.164523,0.804653,0.579292,0.213595,0.740262,0.526926,0.295948,0.0505684,0.221075,0.734815,0.966629,0.194894,0.101184,0.835734,0.771332,0.246708,0.269125,0.787212,0.0970246,0.90517,0.837327,0.354644,0.31492,0.0378859,0.782892,0.0204159,0.668006,0.477225,0.134906,0.196151,0.0193624,0.407243,0.512787,0.0250619,0.764981,0.236656,0.601557,0.782576,0.491228,0.483958,0.42033,0.647396,0.743371,0.325672,0.702938,0.528587,0.595168,0.399529,0.976744,0.723137,0.475554,0.558985,0.191313,0.0187438,0.411915,0.232616,0.858015,0.441078,0.937224,0.805326,0.75847,0.425836,0.232041,0.260661,0.987893,0.341805,0.0727626,0.596783,0.516311,0.464791,0.490347,0.216483,0.00966173,0.581064,0.991324,0.652861,0.629149,0.202949,0.22659,0.109487,0.617729,0.160786,0.884575,0.958782,0.531528,0.279226,0.0255638,0.361161,0.505249,0.72694,0.763786,0.497452,0.145009,0.519375,0.622601,0.0649237,0.555946,0.719734,0.294046,0.0527394,0.135522,0.582558,0.790634,0.908451,0.581054,0.559307,0.364564,0.211714,0.913345,0.981533,0.974122,0.126074,0.0996425,0.437901,0.419472,0.0212641,0.155296,0.135373,0.991043,0.712139,0.871546,0.219744,0.589525,0.207377,0.687888,0.985923,0.423241,0.874772,0.239593,0.582047,0.887604,0.216214,0.673402,0.179475,0.972483,0.154189,0.311964,0.34878,0.772881,0.814481,0.0138478,0.379073,0.705275,0.734916,0.812262,0.197968,0.541279,0.993005,0.648543,0.717292,0.490648,0.666346,0.882273,0.0122982,0.619739,0.135676,0.36554,0.648153,0.580552,0.221461,0.289498,0.795941,0.652349,0.0309205,0.977591,0.33255,0.509519,0.817113,0.791832,0.319555,0.122011,0.24789,0.493092,0.949662,0.998459,0.108041,0.645984,0.0858172,0.982198,0.250518,0.507816,0.609086,0.633964,0.203893,0.129024,0.933336,0.664129,0.776807,0.883819,0.0832136,0.362952,0.551229,0.219828,0.404347,0.943809,0.614891,0.649534,0.384262,0.673419,0.833845,0.317267,0.875529,0.591457,0.118051,0.971521,0.942586,0.554616,0.827899,0.86891,0.648444,0.502932,0.920952,0.791125,0.0875463,0.0128824,0.93294,0.64611,0.824664,0.130821,0.0351491,0.70828,0.0783449,0.0057658,0.215401,0.521858,0.655632,0.775678,0.346544,0.137486,0.645713,0.00119716,0.315522,0.534451,0.482254,0.297101,0.203196,0.747021,0.74001,0.806634,0.848969,0.524055,0.335344,0.650068,0.22601,0.251411,0.908435,0.644768,0.32479,0.699654,0.499877,0.891793,0.951891,0.942203,0.0615242,0.0889034,0.69072,0.636704,0.00742352,0.346707,0.978827,0.690063,0.904833,0.452843,0.870997,0.300893,0.87307,0.901488,0.783795,0.00881231,0.117432,0.570379,0.183345,0.0801557,0.404078,0.629904,0.853765,0.391332,0.7567,0.533809,0.496654,0.745313,0.330861,0.199828,0.166024,0.327513,0.442386,0.238548,0.466681,0.0559922,0.316104,0.283461,0.164588,0.704454,0.473211,0.814477,0.616808,0.964958,0.464244,0.734732,|0.203565,0.210626,0.941251,0.343191,0.210932,0.95802,0.868544,0.244666,0.575935,0.482699,0.0918817,0.143632,0.931866,0.309505,0.235977,0.922209,0.508474,0.0502609,0.481479,0.489429,0.575038,0.216762,0.521397,0.0629551,0.346228,0.836509,0.243135,0.988109,0.697431,0.0958885,0.771282,0.642685,0.905585,0.545297,0.740452,0.378409,0.889866,0.657129,0.344237,0.409564,0.793309,0.742666,0.26134,0.795949,0.189862,0.410912,0.796092,0.969451,0.671105,0.334881,0.722596,0.895146,0.860001,0.283888,0.210045,0.205453,0.102968,0.384352,0.297346,0.348691,0.45002,0.181688,0.014844,0.988192,0.924513,0.549839,0.924399,0.950364,0.165574,0.304693,0.194293,0.827914,0.482113,0.360891,0.180475,0.990179,0.954205,0.448385,0.751676,0.15428,0.774965,0.558127,0.428508,0.49684,0.979791,0.530791,0.980275,0.712223,0.935794,0.406969,0.785462,0.482273,0.6889,0.221467,0.604077,0.384345,0.872735,0.803716,0.234703,0.278719,0.802064,0.98707,0.865232,0.022592,0.975827,0.856201,0.680278,0.589249,0.143977,0.272545,0.268066,0.286432,0.171047,0.975908,0.225928,0.216194,0.54995,0.902365,0.866526,0.162704,0.5034,0.82873,0.096507,0.142902,0.0724183,0.902863,0.275893,0.178965,0.349504,0.665497,0.0573799,0.491655,0.191905,0.124628,0.00412768,0.794082,0.459402,0.665009,0.291546,0.462451,0.600232,0.636671,0.563603,0.286615,0.773092,0.987326,0.816069,0.958297,0.64437,0.513924,0.313633,0.316123,0.436871,0.145093,0.016211,0.844775,0.258497,0.681094,0.153989,0.744088,0.31636,0.0500916,0.0621158,0.582039,0.289554,0.342607,0.29323,0.291276,0.20044,0.00366938,0.145693,0.921728,0.928449,0.407984,0.926876,0.0653165,0.370388,0.807251,0.412609,0.857059,0.209609,0.133999,0.0858818,0.0173059,0.0814643,0.655143,0.0248826,0.427477,0.653792,0.900513,0.540691,0.458439,0.14276,0.389256,0.709547,0.675094,0.00375926,0.979985,0.976688,0.200429,0.703523,0.824003,0.238161,0.832843,0.862351,0.555656,0.572311,0.91652,0.660879,0.969745,0.0676473,0.701059,0.420517,0.144041,0.564061,0.0625313,0.13206,0.401981,0.115976,0.182211,0.452034,0.0744385,0.690188,0.0888345,0.960941,0.222666,0.560967,0.0868098,0.849473,0.256436,0.572959,0.746262,0.349413,0.215397,0.496777,0.28269,0.101446,0.660232,0.469241,0.981704,0.386835,0.70949,0.287297,0.0923738,0.407721,0.297383,0.294212,0.148894,0.771996,0.295852,0.949895,0.361682,0.679863,0.9977,0.407094,0.112653,0.00308442,0.0833023,0.123142,0.142957,0.517087,0.689386,0.178218,0.552601,0.843321,0.834087,0.390834,0.00685757,0.954223,0.282138,0.756349,0.767928,0.968801,0.706214,0.485653,0.607983,0.193654,0.706905,0.906062,0.169152,0.493255,0.777012,0.17368,0.0122264,0.8804,0.414797,0.269119,0.723083,0.154434,0.93039,0.818841,0.466244,0.501229,0.282536,0.0161499,0.106324,0.811725,0.438034,0.90958,0.541395,0.226243,0.792688,0.361004,0.0335363,0.606776,0.0580217,0.909231,0.895281,0.582034,0.911967,0.962657,0.958964,0.804126,0.0249895,0.0163869,0.158797,0.404344,0.88312,0.866063,0.826656,0.937967,0.48052,0.906678,0.544232,0.526277,0.26309,0.798959,0.743273,0.0769146,0.289128,0.014643,0.313411,0.0801526,0.373477,0.080924,0.648303,0.986702,0.440588,0.485236,0.719642,0.649998,0.0513372,0.0193202,0.146019,0.473172,0.971101,0.949772,0.643862,0.490223,0.312468,0.793269,0.00279468,0.889478,0.0776283,0.705085,0.523307,0.274692,0.103409,0.265297,0.32332,0.240266,0.31217,0.222311,0.472503,0.93006,0.0213307,0.891124,0.801629,0.464237,0.43766,0.20508,0.912474,0.736604,0.0235652,0.740719,0.906283,0.993365,0.790407,0.961778,0.895992,0.0958092,0.505127,0.609702,0.487862,0.723498,0.0978613,0.499778,0.642529,0.576391,0.748544,0.964975,0.663386,0.540347,0.586881,0.303083,0.336358,0.295832,0.880121,0.514937,0.768062,0.849204,0.869775,0.0353898,0.114818,0.372027,0.13335,0.955471,0.67853,0.378948,0.966288,0.707886,0.820032,0.427934,0.312878,0.927752,0.886958,0.485202,0.712858,0.453027,0.156737,0.0961007,0.0432432,0.0411531,0.31901,0.69228,0.437149,0.117257,0.0278906,0.473967,0.422891,0.882083,0.877208,0.040402,0.636563,0.822177,0.782265,0.165853,0.374517,0.642424,0.550984,0.755299,0.748079,0.168044,0.318332,0.950779,0.65598,0.869839,0.325523,0.33485,0.982172,0.420308,0.409588,0.103945,0.638813,0.715691,0.46944,0.249914,0.225535,0.230327,0.680717,0.437645,0.321198,0.454262,0.945446,0.701967,0.477465,0.796811,0.796452,0.862612,0.644725,0.8507,0.894011,0.154128,0.829287,0.00321984,0.689097,0.661123,0.383306,0.457994,0.152322,0.228494,0.593639,0.253311,0.776077,0.30801,0.0855694,0.407844,0.610863,0.64317,0.0426486,0.671501,0.604968,0.392241,0.587603,0.370909,0.468696,0.167409,0.868665,0.768079,0.896043,0.98291,0.0792304,0.497783,0.643915,0.315617,0.920109,0.165699,0.0136515,0.653405,0.0453,0.988487,0.578085,0.255901,0.0188428,0.297966,0.813331,0.347606,0.355848,0.666684,0.750413,0.81425,0.570664,0.830473,0.702439,0.42316,0.725819,0.171579,0.959826,0.944554,0.113857,0.695273,0.20119,0.992212,0.79104,0.377352,0.506739,0.439845,0.694753,0.635343,0.855561,0.732957,0.0900164,0.40294,0.704796,0.294102,0.761685,0.20586,0.884605,0.81723,0.232244,0.958358,0.716379,0.387726,0.141132,0.0191478,0.807985,0.700324,0.732526,0.34212,0.178409,0.903951,0.760326,0.352193,0.654463,0.422197,0.235793,0.417167,0.255941,0.965855,0.758692,0.69733,0.523896,0.220586,0.262023,0.472041,0.726157,0.143603,0.991054,0.230609,0.765199,0.669107,0.567885,0.876314,0.951298,0.795125,0.91526,0.0613183,0.608133,0.593613,0.178552,0.731933,0.520186,0.244267,0.184751,0.131813,0.542495,0.121081,0.00276035,0.58024,0.12772,0.579042,0.443744,0.160191,0.191843,0.591517,0.388483,0.0722285,0.785434,0.521636,0.200456,0.555803,0.966743,0.615102,0.678615,0.174991,0.899156,0.172581,0.226136,0.209066,0.508352,0.891878,0.189456,0.640912,0.477374,0.155594,0.119261,0.72036,0.30494,0.307175,0.294858,0.553765,0.635309,0.618518,0.189779,0.520587,0.147649,0.559179,0.551085,0.381058,0.174248,0.41007,0.915876,0.575574,0.497115,0.0510868,0.362142,0.966059,0.854181,0.438673,0.336473,0.105623,0.100468,0.26536,0.155,0.593301,0.755478,0.0828637,0.775434,0.0620891,0.414713,0.0381064,0.0532715,0.451186,0.623444,0.543369,0.82602,0.312872,0.347693,0.766269,0.20683,0.463381,0.216978,0.0826734,0.299405,0.642529,0.738239,0.192779,0.931655,0.388388,0.297401,0.643106,0.66168,0.78149,0.10611,0.943681,0.033216,0.659444,0.926781,0.956965,0.516299,0.982412,0.0919044,0.850937,0.635989,0.954416,0.949739,0.718277,0.444193,0.980569,0.318032,0.777048,0.605136,0.152872,0.293307,0.256572,0.11058,0.711694,0.713288,0.709886,0.781651,0.184099,0.65228,0.432173,0.556735,0.51759,0.317559,0.789429,0.362869,0.319388,0.62678,0.767077,0.188116,0.414605,0.546895,0.349549,0.767876,0.65875,0.213348,0.274868,0.546114,0.131089,0.752115,0.291091,0.49952,0.161488,0.477292,0.564498,0.715649,0.00590682,0.249653,0.0673586,0.529707,0.822849,0.787976,0.542799,0.206276,0.38557,0.843754,0.651977,0.945973,0.353865,0.853522,0.857109,0.184046,0.829402,0.956638,0.246104,0.963654,0.394791,0.650652,0.0223159,0.51682,0.894021,0.263203,0.421623,0.207238,0.816614,0.300439,0.743324,0.518575,0.308418,0.481906,0.623924,0.917946,0.550125,0.422231,0.244533,0.47264,0.992673,0.00151622,0.0946872,0.68033,0.684424,0.158056,0.0448242,0.993129,0.762761,0.481135,0.624663,0.581454,0.877142,0.914968,0.47669,0.4494,0.258094,0.611724,0.0583802,0.966212,0.22057,0.856572,0.381235,0.855306,0.174092,0.895772,0.352956,0.0490357,0.264222,0.735985,0.350569,0.350575,0.807789,0.834349,0.654458,0.794386,0.642285,0.245902,0.072069,0.72894,0.273644,0.922834,0.193438,0.543438,0.57992,0.903092,0.881514,0.289217,0.446212,0.926493,0.00646204,0.642109,0.259082,0.450476,0.38631,0.410573,0.0898365,0.010559,0.133128,0.139038,0.839904,0.432954,0.134352,0.769365,0.582058,0.999207,0.468401,0.619966,0.166072,0.534493,0.190084,0.587513,0.664307,0.134084,0.757618,0.483739,0.721606,0.0634508,0.341209,0.452144,0.126505,0.265561,0.279881,0.801075,0.623492,0.432165,0.995047,0.415456,0.595406,0.552362,0.692312,0.659247,0.146083,0.279021,0.661016,0.994519,0.36073,0.54325,0.134574,0.940259,0.321798,0.865118,0.0725831,0.55569,0.121742,0.702798,0.261456,0.732733,0.721851,0.478816,0.0211172,0.600036,0.354378,0.794045,0.653287,0.88126,0.938626,0.400725,0.147689,0.184151,0.94471,0.619613,0.0903496,0.0923257,0.272882,0.273811,0.5832,0.926811,0.924411,0.164566,0.436499,0.0889807,0.266984,0.684995,0.965802,0.496002,0.293165,0.888159,0.676568,0.147821,0.000986636,0.818638,0.356446,0.709638,0.950291,0.520938,0.115596,0.87802,0.165259,0.70077,0.521848,0.591613,0.0405694,0.15307,0.349198,0.298594,0.99144,0.807871,0.743014,0.961487,0.762037,0.266621,0.0969408,0.991707,0.860127,0.153323,0.614436,0.686407,0.41105,0.71704,0.974624,0.733164,0.494875,0.885845,0.140081,0.65582,0.280605,0.519801,0.60873,0.150706,0.364332,0.553953,0.694223,0.774729,0.882726,0.864565,0.221191,0.952966,0.535089,0.48061,0.715438,0.764064,0.13574,0.839484,0.139717,0.478029,0.0492957,0.184374,0.230975,0.28926,0.557376,0.272925,0.199792,0.91058,0.740563,0.974126,0.554004,0.541937,0.253525,0.811514,0.540162,0.201114,0.366239,0.321078,0.978783,0.0248982,0.46625,0.0861687,0.346372,0.44194,0.556985,0.0406383,|0.876549,0.0652689,0.0682579,0.0236397,0.126151,0.635635,0.304879,0.776871,0.508789,0.629048,0.24998,0.289741,0.94985,0.025546,0.0818091,0.134317,0.9243,0.416426,0.37446,0.946277,0.877095,0.783781,0.0723588,0.2863,0.209203,0.247593,0.425153,0.511421,0.852584,0.557689,0.392534,0.377744,0.416852,0.079522,0.447526,0.265216,0.636439,0.991237,0.555286,0.0337638,0.857757,0.935374,0.965292,0.512853,0.256816,0.882835,0.13889,0.536825,0.73408,0.352336,0.585545,0.904152,0.640592,0.949264,0.665154,0.681446,0.250477,0.526312,0.36613,0.80178,0.0166825,0.598685,0.651703,0.701897,0.609218,0.377221,0.113757,0.167747,0.56978,0.385102,0.651341,0.396806,0.78316,0.712038,0.610897,0.076299,0.919091,0.145936,0.415683,0.5931,0.828643,0.904995,0.645988,0.0727811,0.860733,0.465218,0.643536,0.266148,0.202606,0.229748,0.821275,0.841285,0.828724,0.452177,0.777524,0.839543,0.278318,0.421258,0.551873,0.121727,0.0381689,0.778455,0.617996,0.0829712,0.853046,0.540605,0.853763,0.764411,0.978167,0.688602,0.16733,0.190093,0.881041,0.840345,0.56056,0.0876705,0.103948,0.920858,0.00786752,0.345282,0.0564414,0.0969653,0.822486,0.294806,0.286241,0.376366,0.796735,0.503384,0.578373,0.417542,0.351086,0.707756,0.62962,0.0369476,0.0209495,0.458537,0.145863,0.0032047,0.949959,0.27722,0.400608,0.703275,0.134001,0.710137,0.00677544,0.0413749,0.449683,0.470009,0.314635,0.669293,0.714705,0.958835,0.361787,0.805412,0.921074,0.146018,0.595801,0.941053,0.270755,0.764148,0.468819,0.428976,0.374435,0.842053,0.829987,0.272226,0.878344,0.775676,0.74238,0.531223,0.498225,0.594801,0.795601,0.869936,0.590635,0.202011,0.56954,0.175796,0.0864882,0.0980234,0.166833,0.16624,0.295944,0.895741,0.220813,0.800843,0.10445,0.0877566,0.295669,0.00669146,0.596226,0.711654,0.892097,0.919125,0.806263,0.428596,0.80186,0.780997,0.178258,0.0484874,0.712909,0.458512,0.472437,0.797768,0.199655,0.511592,0.170981,0.184318,0.928474,0.17975,0.539896,0.303329,0.320874,0.808556,0.455116,0.402997,0.987576,0.932585,0.207064,0.081494,0.700737,0.648343,0.0522288,0.29054,0.212817,0.242074,0.065562,0.521963,0.780406,0.705117,0.000758171,0.0699266,0.174177,0.0770066,0.974519,0.0153483,0.500414,0.0498225,0.94169,0.57169,0.655456,0.371252,0.808369,0.0140156,0.952068,0.143446,0.780718,0.184869,0.340928,0.0437968,0.656982,0.442834,0.471525,0.351915,0.848547,0.254723,0.0888383,0.00128418,0.556536,0.513451,0.0550355,0.634148,0.203557,0.164659,0.672942,0.78896,0.0479187,0.00315791,0.55092,0.40419,0.565451,0.63127,0.0457984,0.0491712,0.218978,0.99443,0.14807,0.716555,0.522956,0.0583845,0.349848,0.960732,0.926352,0.642207,0.304607,0.139771,0.739941,0.599641,0.462022,0.0771483,0.225116,0.386999,0.723168,0.821528,0.227867,0.394864,0.0340328,0.705753,0.259048,0.0268193,0.787615,0.0179656,0.786164,0.858439,0.00226319,0.425911,0.706862,0.0963929,0.0821483,0.0670698,0.0387755,0.462894,0.489883,0.364096,0.00471371,0.384552,0.564904,0.791948,0.882809,0.175156,0.390694,0.200848,0.691693,0.635357,0.304186,0.354104,0.951327,0.925176,0.0871492,0.789685,0.610507,0.755234,0.949616,0.528313,0.00776589,0.77928,0.268709,0.0200732,0.195513,0.399753,0.404597,0.226423,0.44221,0.454895,0.692186,0.229448,0.382687,0.626274,0.442032,0.20272,0.377677,0.0666168,0.496481,0.935398,0.479447,0.247814,0.375887,0.832057,0.25199,0.0412666,0.867964,0.570413,0.83362,0.00676465,0.622741,0.702744,0.544492,0.589513,0.802408,0.488793,0.408914,0.41969,0.474423,0.291984,0.231625,0.268428,0.855032,0.197971,0.501469,0.474269,0.190632,0.326747,0.521187,0.323563,0.383168,0.217968,0.715387,0.788346,0.876493,0.189662,0.545717,0.619502,0.581137,0.850991,0.0295137,0.11348,0.22489,0.654696,0.0227587,0.447878,0.719161,0.0372128,0.800763,0.635283,0.984189,0.601108,0.356252,0.925705,0.523849,0.0533349,0.477871,0.491528,0.577326,0.768759,0.456856,0.549335,0.685019,0.9284,0.399516,0.97372,0.0147504,0.760714,0.879407,0.0612363,0.122343,0.320165,0.593219,0.697398,0.180612,0.238387,0.859259,0.802945,0.839107,0.535784,0.216037,0.32493,0.0497603,0.99076,0.909211,0.699757,0.177278,0.283583,0.374906,0.342689,0.0750608,0.0915359,0.449107,0.765997,0.704796,0.90604,0.850061,0.935548,0.964676,0.133328,0.374752,0.902155,0.225542,0.253619,0.270043,0.400195,0.756264,0.689465,0.911045,0.343778,0.016636,0.0613133,0.715225,0.655178,0.333255,0.1496,0.58874,0.770355,0.318378,0.771799,0.894382,0.208726,0.475481,0.638839,0.070235,0.619492,0.022372,0.257286,0.983652,0.867,0.513309,0.789786,0.421078,0.612409,0.165315,0.789834,0.103409,0.116182,0.422949,0.51952,0.977138,0.15759,0.833751,0.863878,0.389751,0.529709,0.883358,0.710351,0.894505,0.856744,0.69798,0.823304,0.882314,0.471271,0.420763,0.714982,0.904218,0.968867,0.711374,0.983433,0.237111,0.862983,0.0452723,0.991579,0.0916744,0.2131,0.695948,0.0941778,0.739515,0.0708843,0.778094,0.0697717,0.691249,0.361131,0.892204,0.536705,0.604397,0.613195,0.374099,0.351988,0.226486,0.0509627,0.361048,0.741992,0.305596,0.45368,0.00833064,0.663911,0.827112,0.567431,0.429555,0.515143,0.312386,0.344763,0.629197,0.539127,0.90763,0.94398,0.286193,0.110994,0.0991056,0.143172,0.915224,0.762384,0.466559,0.915531,0.221348,0.844941,0.33244,0.508187,0.649906,0.939419,0.490625,0.114985,0.801802,0.624817,0.162437,0.700559,0.27255,0.192481,0.584823,0.143825,0.876858,0.292263,0.376009,0.88698,0.921895,0.902536,0.405537,0.577619,0.228909,0.227157,0.266468,0.298954,0.373451,0.897958,0.815277,0.90011,0.694908,0.532335,0.516617,0.554936,0.30472,0.68252,0.196705,0.296695,0.327706,0.0259188,0.281513,0.696687,0.456905,0.985373,0.275713,0.816667,0.344837,0.0647578,0.852319,0.536936,0.69589,0.518339,0.841836,0.898358,0.821855,0.365362,0.34908,0.909196,0.0688495,0.919238,0.662827,0.467455,0.47646,0.624226,0.764575,0.198687,0.605761,0.41934,0.924412,0.259776,0.941349,0.167583,0.746795,0.754468,0.311756,0.270375,0.0201769,0.846887,0.593286,0.206083,0.13406,0.652654,0.613265,0.474106,0.286265,0.566712,0.421506,0.341552,0.903745,0.345832,0.695297,0.678997,0.0283427,0.239,0.822659,0.871028,0.891517,0.938418,0.248884,0.0274327,0.320553,0.553375,0.453268,0.108867,0.16083,0.282905,0.228961,0.554075,0.15418,0.874802,0.608184,0.231,0.680762,0.797293,0.707209,0.900511,0.59272,0.791261,0.91089,0.154436,0.276873,0.872161,0.0761822,0.841879,0.567115,0.245878,0.246203,0.136285,0.963027,0.79569,0.765537,0.368381,0.514921,0.457545,0.356759,0.136978,0.832643,0.561607,0.0342842,0.296268,0.0264985,0.907217,0.764569,0.225027,0.245963,0.0855399,0.1597,0.684347,0.769969,0.336489,0.892696,0.110111,0.161584,0.98949,0.817848,0.268574,0.146675,0.508142,0.123596,0.259373,0.486487,0.124837,0.52218,0.732917,0.353193,0.433668,0.788584,0.392014,0.856944,0.385169,0.92843,0.00706303,0.357945,0.0243593,0.41481,0.0502333,0.610013,0.0866109,0.509866,0.462118,0.905156,0.302472,0.928673,0.788529,0.0459638,0.0505571,0.640127,0.743536,0.248736,0.365937,0.434293,0.386742,0.372083,0.154302,0.23229,0.797362,0.96898,0.659373,0.566532,0.947597,0.134212,0.176541,0.635884,0.0537871,0.344321,0.0903834,0.467818,0.194831,0.0259103,0.807666,0.483921,0.843384,0.764491,0.0450428,0.881165,0.493807,0.840687,0.638697,0.677172,0.289129,0.583149,0.273186,0.161084,0.871618,0.779391,0.58395,0.837073,0.1561,0.549271,0.412632,0.732171,0.318486,0.737544,0.606512,0.592501,0.184363,0.176152,0.431343,0.767532,0.95783,0.426318,0.704582,0.457929,0.762668,0.105883,0.448421,0.465155,0.227155,0.349359,0.322538,0.0602849,0.811892,0.00627691,0.188494,0.662944,0.452192,0.458362,0.970837,0.30859,0.964824,0.262695,0.0544555,0.114196,0.107783,0.193511,0.205001,0.647311,0.271783,0.180067,0.561507,0.65368,0.931752,0.173194,0.79558,0.399508,0.457517,0.856783,0.75412,0.726837,0.0685308,0.0176345,0.774811,0.139219,0.800904,0.415034,0.0683523,0.147429,0.971577,0.822744,0.617412,0.207294,0.280227,0.539022,0.115988,0.330279,0.941522,0.892192,0.100043,0.231998,0.0489534,0.918237,0.776441,0.662202,0.245915,0.540667,0.79727,0.111936,0.723568,0.293957,0.475197,0.532279,0.744705,0.289924,0.282796,0.154047,0.187634,0.237906,0.929344,0.65473,0.669661,0.0547065,0.861611,0.744916,0.867964,0.616191,0.210633,0.375646,0.292627,0.0203919,0.388366,0.295534,0.847943,0.26447,0.661276,0.855792,0.212698,0.596753,0.697268,0.67015,0.335371,0.50542,0.0637636,0.563212,0.354419,0.691752,0.117997,0.539372,0.106835,0.763489,0.0281395,0.780793,0.933731,0.840683,0.961415,0.956046,0.567452,0.997088,0.000435531,0.605852,0.971335,0.233748,0.516421,0.0317074,0.334248,0.614045,0.973034,0.505499,0.71911,0.695979,0.726659,0.57312,0.82875,0.0402973,0.460983,0.0171604,0.508266,0.735179,0.168432,0.601952,0.876062,0.561077,0.220822,0.172819,0.833047,0.487136,0.0535111,0.307801,0.137548,0.704545,0.509752,0.993092,0.801306,0.167676,0.889744,0.311687,0.533107,0.781715,0.917588,0.748566,0.607092,0.502605,0.439013,0.724714,0.196619,0.568752,0.118534,0.789029,0.737299,0.581036,0.871204,0.99801,0.635646,0.587524,0.330869,0.257597,0.258777,0.7364,0.132499,0.641132,0.908582,0.651299,0.308329,0.154406,0.902926,0.215367,0.516084,0.0145263,0.745691,0.976275,0.561663,0.632432,0.452683,0.15584,0.757025,0.918237,0.494453,0.099871,0.0439397,|0.313109,0.967245,0.182656,0.652484,0.653845,0.736367,0.917257,0.758392,0.226247,0.972929,0.652222,0.807925,0.982159,0.227077,0.679175,0.634771,0.85333,0.0640137,0.573097,0.989453,0.985409,0.586216,0.492182,0.411005,0.727977,0.855626,0.964684,0.245781,0.400938,0.748227,0.987327,0.847547,0.407211,0.450231,0.747986,0.117945,0.793705,0.763486,0.375615,0.371642,0.846725,0.315788,0.159669,0.467826,0.833202,0.112535,0.0745242,0.5633,0.738376,0.662862,0.0291719,0.404251,0.572491,0.840116,0.106563,0.680593,0.118167,0.373999,0.473271,0.289216,0.731266,0.0481011,0.547376,0.815342,0.105098,0.501028,0.281277,0.703669,0.397678,0.2951,0.507841,0.427185,0.0206686,0.0829789,0.297777,0.996624,0.469416,0.223528,0.935686,0.400374,0.498191,0.58216,0.529941,0.250957,0.678009,0.851172,0.0697142,0.603166,0.463756,0.897943,0.19993,0.395316,0.656353,0.912758,0.861825,0.871649,0.461677,0.447775,0.519727,0.747393,0.535605,0.519935,0.132955,0.944729,0.903034,0.127533,0.0942744,0.468857,0.681413,0.0335637,0.624279,0.199158,0.678309,0.581574,0.940483,0.926688,0.89969,0.319389,0.317191,0.662443,0.193452,0.835329,0.0500515,0.0941798,0.141825,0.0142131,0.253065,0.408182,0.582004,0.187059,0.219908,0.464879,0.711475,0.0454424,0.504126,0.194639,0.623566,0.0372989,0.248015,0.787988,0.300451,0.534296,0.772688,0.769026,0.0322717,0.0800844,0.723034,0.642337,0.903583,0.0985017,0.636061,0.397394,0.154935,0.875971,0.3381,0.852123,0.8496,0.649378,0.159498,0.601005,0.836955,0.57106,0.774056,0.529048,0.125474,0.0228801,0.0932545,0.86988,0.607766,0.137716,0.426964,0.336695,0.241252,0.417793,0.983111,0.114535,0.555356,0.504561,0.94944,0.959487,0.622513,0.921629,0.943017,0.0470091,0.20647,0.580808,0.0148927,0.957096,0.656844,0.193292,0.664087,0.703584,0.584806,0.569682,0.244436,0.2982,0.081996,0.523533,0.0969957,0.822484,0.000441134,0.70069,0.195868,0.741738,0.788473,0.327441,0.484179,0.546469,0.0475692,0.429499,0.156047,0.804196,0.693371,0.395426,0.531004,0.0673367,0.0881765,0.556891,0.751271,0.590782,0.363991,0.909918,0.537105,0.264008,0.861277,0.459567,0.204961,0.0525438,0.228153,0.602965,0.922438,0.522888,0.310733,0.705719,0.469063,0.885879,0.314629,0.659371,0.573343,0.793024,0.423094,0.266686,0.612433,0.216879,0.9146,0.386792,0.923877,0.532686,0.0631005,0.75254,0.507913,0.201643,0.0648623,0.168161,0.628265,0.739284,0.18462,0.725453,0.552908,0.600895,0.573439,0.791282,0.926373,0.491849,0.0530385,0.591105,0.631319,0.793436,0.841955,0.478529,0.72157,0.384837,0.677557,0.36133,0.689558,0.538053,0.689776,0.518627,0.51986,0.415054,0.331752,0.762619,0.000785053,0.366981,0.3783,0.156003,0.623974,0.550726,0.612042,0.561107,0.0838092,0.623221,0.243009,0.879634,0.154197,0.930118,0.460261,0.162743,0.849056,0.616934,0.822153,0.384515,0.964745,0.967243,0.686017,0.879245,0.867122,0.0194119,0.421205,0.0376809,0.0846167,0.01355,0.76285,0.153012,0.482902,0.486749,0.481522,0.0339484,0.302429,0.728769,0.23207,0.19591,0.457932,0.520364,0.33772,0.200233,0.311142,0.214551,0.976549,0.321189,0.398583,0.626909,0.329698,0.768753,0.689854,0.104304,0.994112,0.573302,0.183772,0.143706,0.399489,0.0508814,0.220304,0.042178,0.406343,0.216112,0.143901,0.280004,0.294862,0.941948,0.301821,0.146931,0.898454,0.140195,0.0754274,0.116853,0.956552,0.536028,0.0358154,0.704598,0.535685,0.899416,0.947693,0.194816,0.481112,0.725077,0.0608284,0.503368,0.850027,0.021781,0.883344,0.666255,0.623745,0.357966,0.863402,0.929517,0.788419,0.0411642,0.700028,0.300553,0.170967,0.324367,0.313508,0.755638,0.821964,0.224669,0.848675,0.286421,0.821552,0.902612,0.291267,0.198122,0.744201,0.0409105,0.851001,0.573554,0.925268,0.440623,0.500105,0.26333,0.981367,0.481147,0.50122,0.0299535,0.934838,0.995073,0.912264,0.732331,0.347067,0.152074,0.275491,0.764667,0.711829,0.0770195,0.996207,0.264201,0.704798,0.857031,0.318993,0.253984,0.999092,0.530348,0.293939,0.692162,0.459228,0.466686,0.760483,0.428641,0.845938,0.943403,0.278599,0.92895,0.830119,0.964194,0.416955,0.619024,0.250709,0.246425,0.456602,0.56753,0.404973,0.876925,0.206585,0.779538,0.470355,0.744406,0.0905835,0.785464,0.287762,0.251417,0.426974,0.398658,0.248226,0.375491,0.925104,0.217947,0.656797,0.176092,0.83965,0.592816,0.761837,0.281859,0.49146,0.796138,0.756606,0.132634,0.527533,0.846464,0.947771,0.953967,0.469797,0.738828,0.00239068,0.18968,0.847264,0.121217,0.880303,0.103856,0.756338,0.973129,0.316945,0.468975,0.219955,0.592676,0.19683,0.719342,0.747624,0.847895,0.0129944,0.315621,0.453045,0.792116,0.244009,0.909725,0.674634,0.863508,0.724397,0.0455521,0.0344077,0.597003,0.117674,0.180207,0.684722,0.798493,0.473553,0.112773,0.784634,0.00154471,0.491355,0.138577,0.722097,0.963992,0.621551,0.475869,0.808873,0.814094,0.153451,0.221944,0.761324,0.485699,0.770259,0.715423,0.327942,0.313247,0.111846,0.504764,0.411094,0.263028,0.113572,0.555751,0.249963,0.797385,0.362429,0.33593,0.89901,0.944381,0.858562,0.392241,0.508909,0.985936,0.654373,0.852399,0.547228,0.1709,0.566838,0.0784366,0.475121,0.665745,0.527021,0.571854,0.481246,0.0192588,0.823841,0.952958,0.883587,0.354428,0.0206023,0.890458,0.116394,0.0806424,0.985508,0.782881,0.352954,0.836635,0.0665392,0.118421,0.0572267,0.495502,0.0376337,0.815447,0.243597,0.432662,0.65259,0.290903,0.232735,0.798393,0.732443,0.761921,0.209283,0.0653262,0.106007,0.0559077,0.478458,0.148579,0.407833,0.209668,0.560123,0.597029,0.45264,0.887224,0.329086,0.889925,0.158861,0.447344,0.849531,0.784158,0.483061,0.235318,0.927388,0.164188,0.961978,0.250623,0.506218,0.869957,0.785853,0.377632,0.0983452,0.61696,0.00968999,0.223902,0.950527,0.968493,0.996141,0.721051,0.949585,0.114222,0.490795,0.797854,0.736026,0.159204,0.351422,0.22419,0.271206,0.590303,0.336025,0.26849,0.31129,0.439886,0.569898,0.579901,0.783999,0.194534,0.510358,0.261385,0.553262,0.074416,0.938993,0.480587,0.468573,0.106094,0.902135,0.947257,0.704187,0.0740046,0.382942,0.0225855,0.180873,0.935284,0.836287,0.252499,0.250081,0.909536,0.896586,0.630495,0.828895,0.186276,0.405704,0.931512,0.591433,0.139417,0.487264,0.697121,0.257123,0.917884,0.636351,0.300865,0.11831,0.416483,0.0743429,0.19862,0.851625,0.744087,0.256072,0.0279673,0.524042,0.0333444,0.131606,0.980682,0.857595,0.382858,0.614297,0.389047,0.376864,0.325927,0.0646234,0.375746,0.693641,0.862712,0.188943,0.0986794,0.440841,0.0419117,0.884035,0.857881,0.649257,0.321497,0.110898,0.881615,0.525117,0.478808,0.751376,0.351574,0.987575,0.987707,0.377709,0.783457,0.0356054,0.975196,0.519621,0.858861,0.199485,0.165429,0.215823,0.712517,0.067392,0.676622,0.383973,0.345338,0.0923854,0.309256,0.00722694,0.409098,0.854862,0.35661,0.796541,0.661279,0.760364,0.911086,0.230746,0.0820367,0.74096,0.691277,0.997152,0.834271,0.566376,0.72361,0.273173,0.244736,0.7732,0.34049,0.897957,0.0066976,0.995992,0.439292,0.187465,0.710588,0.316839,0.13138,0.685246,0.383474,0.115797,0.170501,0.331113,0.0810381,0.329909,0.289645,0.277337,0.390919,0.248249,0.221662,0.418273,0.160118,0.515728,0.905572,0.434764,0.0249599,0.449687,0.0986847,0.0987576,0.966009,0.999653,0.372212,0.388928,0.636365,0.304734,0.631339,0.0366491,0.682762,0.766807,0.103401,0.704968,0.953991,0.273206,0.0556804,0.60689,0.0694541,0.0390906,0.205981,0.79448,0.10912,0.439844,0.112988,0.814411,0.382302,0.00613147,0.47969,0.124433,0.424444,0.159707,0.19401,0.152078,0.315079,0.251434,0.134769,0.777445,0.830966,0.16946,0.730057,0.129719,0.515046,0.506977,0.0886059,0.0533397,0.691355,0.0705007,0.11519,0.774894,0.593637,0.318048,0.678505,0.862999,0.306867,0.4622,0.858064,0.932553,0.0244753,0.302928,0.912651,0.0528241,0.498531,0.428645,0.344301,0.906162,0.762827,0.646475,0.64958,0.158542,0.563741,0.532887,0.258909,0.883067,0.7307,0.555886,0.235171,0.288451,0.669203,0.829428,0.358803,0.274501,0.543373,0.0764559,0.97248,0.462149,0.00974929,0.40342,0.738436,0.25763,0.463438,0.11424,0.669546,0.0262011,0.796843,0.992896,0.428933,0.888332,0.680179,0.256065,0.840806,0.762024,0.447186,0.426176,0.11414,0.160792,0.768036,0.684753,0.826069,0.0836014,0.12162,0.249578,0.848258,0.501733,0.995258,0.433297,0.749311,0.353342,0.686189,0.199086,0.307229,0.132486,0.998233,0.907259,0.213571,0.552715,0.576359,0.737,0.955129,0.104341,0.39438,0.169248,0.792052,0.222955,0.249188,0.837213,0.00982231,0.244068,0.564038,0.165328,0.742219,0.561938,0.400801,0.501055,0.217275,0.106988,0.050088,0.375673,0.0344308,0.706132,0.940873,0.929615,0.730587,0.524273,0.47731,0.789236,0.0600966,0.732382,0.79343,0.0678647,0.229514,0.184521,0.910587,0.490914,0.364081,0.0753244,0.0804566,0.857208,0.255881,0.727731,0.164204,0.497682,0.602485,0.264527,0.214598,0.310345,0.656486,0.955526,0.624831,0.816537,0.205774,0.465985,0.902221,0.333783,0.312381,0.0549936,0.749935,0.493224,0.134024,0.190676,0.763554,0.662042,0.39138,0.567046,0.23422,0.000232697,0.413597,0.357741,0.147576,0.0431593,0.0334257,0.803244,0.366818,0.41661,0.777527,0.480149,0.579803,0.732323,0.88013,0.895652,0.904764,0.0498446,0.835459,0.305391,0.410173,0.0649157,0.624228,0.325422,0.592416,0.506158,0.423621,0.739487,0.986473,0.378202,0.394452,0.582044,0.700896,0.0111376,0.199032,0.932215,0.172214,0.952098,0.914539,|0.669474,0.802314,0.550134,0.291726,0.161693,0.258649,0.0831145,0.47576,0.778227,0.407468,0.0892615,0.645729,0.357758,0.0813508,0.403346,0.950856,0.545995,0.971486,0.496649,0.948091,0.962516,0.332615,0.557983,0.356331,0.468886,0.190499,0.305871,0.25128,0.983523,0.343375,0.38242,0.306565,0.0125965,0.47745,0.73981,0.18895,0.437219,0.362347,0.715798,0.716976,0.570735,0.620718,0.0948448,0.730036,0.434702,0.37179,0.200282,0.305467,0.051387,0.505983,0.903713,0.227922,0.956285,0.838618,0.214217,0.950506,0.874839,0.867715,0.16946,0.344795,0.957413,0.704733,0.729288,0.607631,0.447383,0.506492,0.765901,0.38074,0.349285,0.196781,0.214237,0.946263,0.274262,0.484581,0.170129,0.297808,0.286261,0.126788,0.378053,0.175401,0.712212,0.543149,0.188863,0.139761,0.310898,0.850164,0.562721,0.269,0.127882,0.485765,0.0441321,0.834771,0.601261,0.930456,0.995945,0.526194,0.344282,0.0611298,0.502267,0.306187,0.779027,0.472172,0.629702,0.846599,0.298349,0.0961707,0.824398,0.691018,0.511233,0.255099,0.0791872,0.652767,0.999307,0.490552,0.723483,0.648215,0.825575,0.449755,0.486937,0.114407,0.341924,0.416941,0.53353,0.257141,0.012696,0.627503,0.726686,0.0519246,0.849139,0.111777,0.142648,0.163192,0.649412,0.191687,0.557691,0.404745,0.0276359,0.767246,0.630358,0.312111,0.807139,0.502897,0.14526,0.243949,0.507667,0.79701,0.893981,0.215535,0.397253,0.241489,0.201064,0.0327222,0.472491,0.929326,0.204336,0.596188,0.816231,0.73376,0.602226,0.128986,0.20849,0.917315,0.198015,0.225435,0.687557,0.835733,0.221309,0.338281,0.649176,0.408332,0.880395,0.722812,0.98138,0.329123,0.21556,0.279818,0.627372,0.114167,0.0250731,0.421759,0.762137,0.0605241,0.0886328,0.0608819,0.361699,0.0532788,0.947098,0.209674,0.959345,0.343775,0.659761,0.194715,0.798847,0.581367,0.916462,0.199829,0.995623,0.366704,0.9878,0.521425,0.617379,0.522261,0.730084,0.192865,0.274434,0.564235,0.00853038,0.663864,0.421473,0.535391,0.00536954,0.648859,0.0112755,0.786798,0.238144,0.151726,0.965142,0.409956,0.625254,0.85596,0.76539,0.0609392,0.561274,0.119611,0.732488,0.231416,0.913533,0.502084,0.481823,0.520041,0.816495,0.785968,0.876159,0.0864028,0.825481,0.337049,0.619902,0.744301,0.347095,0.0404605,0.377032,0.507083,0.470878,0.820893,0.816287,0.848104,0.657067,0.318897,0.812351,0.988927,0.603821,0.225473,0.0050655,0.55686,0.383679,0.301706,0.403618,0.79884,0.455904,0.0775455,0.262623,0.500756,0.0931664,0.313243,0.472337,0.50911,0.578036,0.589398,0.603053,0.0550087,0.702228,0.147108,0.143174,0.0938987,0.67467,0.208841,0.152931,0.567684,0.647323,0.458325,0.0503651,0.485239,0.136983,0.912956,0.0662473,0.314167,0.0583122,0.884919,0.820665,0.947246,0.293468,0.961053,0.933835,0.911623,0.43188,0.820638,0.462833,0.829662,0.45787,0.102857,0.656655,0.696617,0.111589,0.128631,0.525545,0.220616,0.872205,0.963274,0.594151,0.00768518,0.968218,0.937419,0.0635085,0.395927,0.964331,0.457688,0.0574372,0.819858,0.314889,0.647792,0.889106,0.644151,0.0296084,0.233845,0.562232,0.941959,0.863952,0.133632,0.325978,0.0590059,0.722593,0.824356,0.985873,0.986395,0.904908,0.747311,0.0717706,0.623143,0.0639662,0.00544035,0.508484,0.171116,0.762977,0.416018,0.140946,0.698489,0.119162,0.109328,0.272171,0.0811303,0.399297,0.232513,0.366813,0.427155,0.601705,0.804862,0.16705,0.0546594,0.360446,0.650989,0.54638,0.606554,0.948868,0.84341,0.41247,0.692399,0.683504,0.983723,0.630435,0.944698,0.345054,0.000381887,0.923955,0.102849,0.501206,0.783831,0.265004,0.0322452,0.280355,0.974099,0.985938,0.22908,0.764905,0.917403,0.879053,0.931296,0.573766,0.629802,0.529874,0.927935,0.410707,0.019785,0.540163,0.845796,0.206141,0.896322,0.942237,0.790707,0.788945,0.353499,0.83139,0.79555,0.0540842,0.818955,0.944518,0.841928,0.786026,0.968568,0.570112,0.424519,0.742655,0.784863,0.707099,0.0166765,0.435455,0.820139,0.81945,0.257611,0.706801,0.747424,0.00156629,0.333451,0.134867,0.387485,0.541504,0.529128,0.0465831,0.0844942,0.0221227,0.0573685,0.517397,0.335262,0.908338,0.206441,0.501171,0.87422,0.577794,0.554987,0.0808122,0.533391,0.589212,0.959047,0.147857,0.441783,0.807538,0.89876,0.778619,0.342138,0.163601,0.177883,0.794026,0.940037,0.637091,0.49713,0.747472,0.407351,0.389836,0.133201,0.458145,0.395036,0.169704,0.831623,0.22534,0.623164,0.255434,0.0378664,0.914206,0.409093,0.879717,0.520369,0.275199,0.235832,0.0083434,0.865274,0.321321,0.599033,0.649018,0.729233,0.00197321,0.0352715,0.996358,0.484085,0.987789,0.984278,0.896481,0.496295,0.94902,0.178938,0.874712,0.631302,0.632869,0.299908,0.658912,0.273918,0.882301,0.930851,0.145678,0.579992,0.725449,0.562636,0.945035,0.464429,0.168166,0.0248469,0.160948,0.395336,0.691209,0.642739,0.776768,0.248069,0.117228,0.151041,0.316368,0.852491,0.10349,0.53649,0.453754,0.0280275,0.620594,0.392084,0.879778,0.784126,0.818923,0.781279,0.447273,0.737488,0.018205,0.320004,0.896866,0.204337,0.960919,0.423399,0.554474,0.823749,0.564507,0.739111,0.127056,0.972578,0.197623,0.481754,0.163984,0.54739,0.353497,0.254089,0.515341,0.0691497,0.387372,0.24339,0.268692,0.856016,0.351401,0.955424,0.822306,0.301789,0.126264,0.466036,0.807361,0.677994,0.848201,0.946005,0.574186,0.933975,0.71709,0.349255,0.760762,0.841426,0.0281209,0.548213,0.610003,0.2967,0.051024,0.805081,0.953156,0.51953,0.856572,0.306414,0.835323,0.703459,0.953281,0.176684,0.840775,0.510653,0.344187,0.364338,0.203099,0.186165,0.435042,0.948524,0.0273604,0.0632761,0.359274,0.0471928,0.820377,0.503151,0.299401,0.0200789,0.386499,0.0286091,0.983116,0.294773,0.30702,0.274777,0.432949,0.38262,0.751455,0.52201,0.760067,0.125818,0.912846,0.252167,0.525609,0.418082,0.218084,0.725029,0.969964,0.0198491,0.560671,0.961254,0.92817,0.880556,0.493697,0.730031,0.374782,0.504013,0.203951,0.0291396,0.415383,0.702802,0.953105,0.830707,0.116681,0.314338,0.26543,0.0690086,0.110475,0.601693,0.415223,0.893348,0.631083,0.929339,0.032377,0.0674144,0.971304,0.046202,0.0467085,0.950762,0.243169,0.0310053,0.833313,0.448858,0.438219,0.69575,0.628775,0.16623,0.0933728,0.371447,0.121497,0.867315,0.581942,0.747757,0.473976,0.729695,0.603289,0.256582,0.12085,0.619309,0.985658,0.267486,0.729483,0.906408,0.110799,0.798039,0.52602,0.709586,0.469804,0.399531,0.354903,0.320394,0.536826,0.0587658,0.318389,0.517822,0.209501,0.392072,0.911423,0.32034,0.441645,0.473719,0.633167,0.461166,0.732477,0.964523,0.192707,0.117738,0.054277,0.835497,0.632209,0.25922,0.576419,0.644956,0.493349,0.999427,0.250243,0.167157,0.17241,0.437867,0.957053,0.143313,0.938819,0.645108,0.00993943,0.539616,0.43247,0.178562,0.157562,0.61507,0.281408,0.252775,0.686637,0.765975,0.136868,0.214448,0.346861,0.491247,0.591183,0.856729,0.243967,0.692142,0.00200045,0.761755,0.03768,0.383725,0.412279,0.700943,0.6019,0.761878,0.96712,0.346973,0.246266,0.00735158,0.0133377,0.803938,0.262802,0.781854,0.114398,0.668758,0.197548,0.836932,0.302285,0.988696,0.915623,0.992523,0.614511,0.687793,0.233224,0.827962,0.012255,0.491585,0.460013,0.128503,0.600227,0.96334,0.483225,0.828756,0.650852,0.68968,0.52415,0.610974,0.161052,0.771235,0.109566,0.0688357,0.861777,0.572056,0.934656,0.375134,0.108543,0.0952373,0.590746,0.178743,0.495631,0.401652,0.496729,0.260846,0.835618,0.325547,0.917096,0.55713,0.548924,0.857167,0.273102,0.850388,0.693561,0.653318,0.440132,0.267032,0.119215,0.314335,0.940383,0.857344,0.758792,0.444356,0.374641,0.405085,0.672332,0.22496,0.834552,0.270756,0.55125,0.0267615,0.675966,0.553656,0.89838,0.888022,0.621796,0.507462,0.524005,0.717962,0.922943,0.357183,0.749573,0.809556,0.734423,0.191717,0.883842,0.543615,0.581942,0.938404,0.857174,0.450447,0.231787,0.191371,0.182376,0.574732,0.754945,0.130126,0.365881,0.277545,0.792818,0.399162,0.360729,0.456638,0.130567,0.739954,0.455495,0.518109,0.373378,0.606385,0.503313,0.756636,0.491598,0.149288,0.178739,0.0898422,0.736089,0.889,0.507122,0.954215,0.945648,0.719128,0.106736,0.396911,0.687995,0.896983,0.214577,0.0188189,0.462257,0.978428,0.495892,0.312518,0.755221,0.265484,0.825669,0.597251,0.760552,0.882286,0.541265,0.234932,0.833264,0.645943,0.646343,0.626337,0.410235,0.565241,0.77018,0.524619,0.273711,0.307391,0.920458,0.152187,0.509056,0.051735,0.770029,0.470733,0.771755,0.918567,0.835146,0.593801,0.0470962,0.789905,0.368618,0.411077,0.0144137,0.908747,0.457239,0.511298,0.372068,0.914827,0.87851,0.421492,0.726529,0.258518,0.373922,0.91415,0.926889,0.768505,0.862338,0.618302,0.0370727,0.168186,0.463513,0.983946,0.841838,0.401245,0.0779724,0.171604,0.855907,0.303955,0.402736,0.487681,0.165505,0.129027,0.447775,0.314534,0.581928,0.569604,0.132897,0.696896,0.24601,0.55035,0.427588,0.359847,0.494276,0.924253,0.798315,0.296842,0.68441,0.906848,0.541632,0.648154,0.739584,0.0589579,0.308098,0.950978,0.648744,0.989084,0.700995,0.59322,0.962891,0.0521895,0.436848,0.484052,0.704392,0.201724,0.995928,0.169402,0.983344,0.804469,0.431123,0.819881,0.556768,0.122025,0.534846,0.670875,0.307644,0.641594,0.115732,0.463478,0.996644,0.31437,0.949667,0.831131,0.773418,0.729856,0.0812279,0.734797,0.123624,0.192607,0.151567,0.36737,0.537494,0.633049,0.980908,0.0239152,0.823356,0.498974,0.484999,0.922665,0.888448,0.223751,|0.0311424,0.201248,0.141995,0.2815,0.4582,0.0449529,0.306336,0.488814,0.942092,0.769278,0.354116,0.363348,0.714024,0.196269,0.83774,0.493481,0.846185,0.673538,0.912218,0.92022,0.524279,0.0355366,0.591715,0.56808,0.439391,0.755205,0.138273,0.0131753,0.764075,0.307712,0.565828,0.994982,0.132298,0.335719,0.0704709,0.0438905,0.994015,0.986514,0.342452,0.949128,0.82927,0.346182,0.166243,0.687392,0.129349,0.943478,0.653918,0.453016,0.475731,0.55271,0.1169,0.872597,0.0731857,0.245176,0.352726,0.145933,0.126896,0.739084,0.332902,0.515945,0.173359,0.520812,0.234923,0.847046,0.823118,0.487862,0.656098,0.459402,0.514628,0.123865,0.278506,0.117881,0.143197,0.985855,0.541499,0.925876,0.497787,0.582186,0.154505,0.328525,0.277598,0.109907,0.699706,0.733187,0.34385,0.622684,0.70898,0.879243,0.929906,0.525968,0.161001,0.352677,0.570599,0.332328,0.665489,0.473521,0.786774,0.908587,0.610225,0.17233,0.638028,0.597986,0.318521,0.142246,0.706025,0.849422,0.116446,0.714399,0.179339,0.0210941,0.171108,0.593184,0.189769,0.433589,0.355888,0.465473,0.754217,0.365903,0.64458,0.326385,0.668364,0.860224,0.746233,0.148135,0.654863,0.0156907,0.499719,0.89869,0.163249,0.330212,0.723347,0.977942,0.150604,0.705187,0.219591,0.613334,0.904472,0.567696,0.429911,0.117833,0.392604,0.803267,0.876795,0.260311,0.390403,0.409529,0.0895514,0.555859,0.423779,0.834749,0.0823873,0.0239406,0.0870273,0.0106727,0.371778,0.549783,0.34237,0.948283,0.955504,0.447658,0.975941,0.173535,0.591854,0.538264,0.0448295,0.0862862,0.583383,0.037739,0.585657,0.33611,0.726828,0.197635,0.369919,0.987716,0.462938,0.652481,0.2782,0.368598,0.123033,0.165495,0.533868,0.124675,0.484057,0.497314,0.290555,0.151466,0.795998,0.308036,0.299594,0.612023,0.402278,0.356376,0.830163,0.909155,0.849355,0.255772,0.695027,0.997802,0.659615,0.275118,0.422964,0.725227,0.866837,0.116792,0.256095,0.332262,0.339036,0.407835,0.979752,0.631805,0.886224,0.499153,0.826569,0.639943,0.0991345,0.28009,0.705298,0.811259,0.379668,0.856352,0.382496,0.903934,0.868462,0.79391,0.246216,0.311184,0.231872,0.614146,0.742661,0.327558,0.307803,0.863549,0.248466,0.108423,0.0444054,0.960037,0.978222,0.446287,0.368671,0.379051,0.0920638,0.579239,0.184621,0.49465,0.22968,0.818171,0.893656,0.216508,0.722543,0.935317,0.9292,0.700768,0.307801,0.527277,0.405543,0.138372,0.444908,0.884531,0.602236,0.695614,0.814183,0.223347,0.327248,0.323889,0.54523,0.853966,0.0150758,0.845245,0.0262093,0.664081,0.536043,0.801838,0.537276,0.774472,0.533552,0.157127,0.98696,0.305421,0.197015,0.101176,0.134553,0.353043,0.236382,0.552904,0.918202,0.311979,0.737372,0.68613,0.488908,0.802635,0.047262,0.688759,0.573136,0.46879,0.118091,0.0119463,0.109613,0.333507,0.305552,0.648793,0.506868,0.45312,0.502431,0.0158595,0.971294,0.603629,0.609559,0.803981,0.452934,0.727236,0.0384786,0.928821,0.214166,0.019647,0.768086,0.0188674,0.238232,0.394799,0.430479,0.672673,0.504063,0.266024,0.201135,0.747082,0.843965,0.00592148,0.40585,0.821253,0.772662,0.8023,0.75667,0.0823544,0.734354,0.631,0.944402,0.24867,0.0207369,0.520263,0.0899949,0.617248,0.28233,0.437624,0.666094,0.146589,0.837615,0.616392,0.835294,0.536936,0.548489,0.472345,0.00252038,0.350115,0.841172,0.53041,0.27561,0.18336,0.882242,0.817176,0.0759842,0.245302,0.643592,0.702607,0.511522,0.086071,0.348749,0.868711,0.606468,0.73548,0.575767,0.794127,0.776984,0.0146343,0.479427,0.930196,0.460589,0.0522525,0.74594,0.174255,0.942694,0.520072,0.521325,0.88414,0.580672,0.631147,0.725394,0.306364,0.641427,0.136846,0.986433,0.195345,0.50409,0.0129634,0.186691,0.011372,0.690822,0.362529,0.742298,0.0824714,0.385878,0.250562,0.240703,0.89434,0.744878,0.2602,0.0893364,0.892276,0.693965,0.963102,0.578059,0.963615,0.29969,0.9637,0.471751,0.530921,0.886949,0.681438,0.615605,0.725905,0.193743,0.268867,0.760505,0.542771,0.540174,0.498453,0.40319,0.0639671,0.800311,0.126685,0.868413,0.41574,0.0384778,0.478323,0.575156,0.0327951,0.711737,0.728751,0.693355,0.4301,0.231169,0.596523,0.532803,0.324954,0.317035,0.3142,0.383529,0.0565159,0.553297,0.815751,0.511209,0.074524,0.450191,0.127702,0.638379,0.0574766,0.657722,0.991653,0.826709,0.420504,0.259455,0.0613782,0.400347,0.239606,0.476506,0.615544,0.544875,0.728533,0.444238,0.266388,0.280133,0.309388,0.296772,0.816205,0.341316,0.0313748,0.825921,0.181495,0.699447,0.0687627,0.0592234,0.309978,0.954513,0.709067,0.935011,0.0505866,0.271924,0.803756,0.41369,0.773237,0.319382,0.75396,0.936082,0.587738,0.205018,0.681141,0.519047,0.426479,0.165888,0.76948,0.794392,0.66783,0.0580066,0.00464368,0.0226218,0.467913,0.582678,0.710601,0.512762,0.394122,0.790954,0.0810488,0.93925,0.387362,0.811077,0.554506,0.026689,0.714634,0.765648,0.839168,0.81782,0.499956,0.667202,0.0695511,0.485063,0.977197,0.128641,0.103831,0.103695,0.628686,0.75708,0.233243,0.442932,0.417699,0.891095,0.477898,0.672464,0.805323,0.721011,0.386487,0.151884,0.909645,0.379592,0.694111,0.366152,0.802551,0.262633,0.962799,0.933836,0.872604,0.872853,0.394886,0.517544,0.692351,0.502555,0.500903,0.13429,0.585932,0.0175573,0.842018,0.691952,0.527591,0.719459,0.236963,0.30208,0.442829,0.706386,0.0702224,0.958759,0.85272,0.624758,0.438089,0.764041,0.948825,0.335186,0.762652,0.578188,0.554945,0.465552,0.39513,0.753765,0.862253,0.610991,0.974723,0.652388,0.72255,0.823776,0.24661,0.359915,0.801314,0.322957,0.244105,0.173086,0.375197,0.513751,0.0774081,0.423903,0.978431,0.480105,0.424199,0.684627,0.0942649,0.342507,0.865918,0.389409,0.775115,0.293994,0.901864,0.855561,0.141947,0.25513,0.081508,0.347277,0.765683,0.284069,0.788308,0.56123,0.571057,0.128072,0.491557,0.206795,0.317104,0.364051,0.311272,0.800406,0.328767,0.0280368,0.858754,0.134464,0.899162,0.23132,0.98216,0.0710466,0.254726,0.178444,0.495395,0.780153,0.222068,0.0695891,0.115438,0.793369,0.104678,0.714235,0.39058,0.686325,0.165486,0.0562608,0.543048,0.99483,0.214521,0.589473,0.297813,0.869314,0.078976,0.514583,0.0970878,0.813027,0.783348,0.0492927,0.360451,0.665009,0.530615,0.38342,0.0589012,0.682473,0.0301824,0.0909675,0.45383,0.514188,0.0468068,0.54912,0.549004,0.399258,0.174829,0.639774,0.325842,0.781588,0.142509,0.93905,0.441137,0.605237,0.934361,0.23583,0.648782,0.165506,0.336363,0.452715,0.619604,0.672668,0.246516,0.828124,0.0810558,0.54295,0.71485,0.21731,0.422206,0.793932,0.876479,0.353945,0.0917535,0.461367,0.931114,0.672299,0.813154,0.53806,0.495867,0.0488717,0.777892,0.180208,0.391201,0.863622,0.470039,0.638898,0.19924,0.993275,0.719027,0.99953,0.260786,0.832807,0.676057,0.623263,0.807118,0.952296,0.0620011,0.78125,0.785572,0.731083,0.159196,0.31783,0.625678,0.494309,0.856883,0.841215,0.083605,0.555932,0.750048,0.764737,0.122104,0.0574856,0.408247,0.538224,0.962597,0.53048,0.578824,0.930351,0.44353,0.67959,0.194618,0.697778,0.162185,0.332634,0.551382,0.230051,0.88868,0.963932,0.537207,0.840091,0.870458,0.482598,0.781152,0.878927,0.732173,0.511083,0.177987,0.602046,0.0627918,0.968659,0.738578,0.689756,0.0964428,0.615026,0.391126,0.227067,0.592643,0.149188,0.485757,0.915907,0.746605,0.617013,0.00745392,0.986855,0.286898,0.292997,0.541928,0.776078,0.0209853,0.585716,0.48407,0.665151,0.149301,0.783494,0.452754,0.490926,0.310488,0.31057,0.505343,0.863741,0.718989,0.373064,0.0563461,0.81854,0.239818,0.221341,0.776266,0.772229,0.722192,0.467125,0.679477,0.149573,0.273187,0.293519,0.901211,0.978642,0.463389,0.548933,0.489534,0.587841,0.692644,0.410634,0.208801,0.664345,0.175514,0.0481228,0.631003,0.774082,0.28732,0.858544,0.7939,0.392136,0.447896,0.745253,0.913161,0.493082,0.126844,0.742188,0.669307,0.68009,0.0363414,0.909928,0.622971,0.931368,0.484967,0.380469,0.131745,0.270404,0.0766352,0.728999,0.544291,0.607728,0.690568,0.761928,0.275605,0.457034,0.317296,0.683433,0.660985,0.365439,0.628202,0.927511,0.535904,0.293706,0.754213,0.59488,0.705015,0.848297,0.795669,0.652222,0.41971,0.191095,0.802945,0.434313,0.0690273,0.353798,0.489057,0.902171,0.31228,0.437299,0.641837,0.297738,0.15789,0.54519,0.111456,0.556631,0.232702,0.616692,0.449193,0.107826,0.406297,0.682489,0.102127,0.426842,0.371699,0.146253,0.490045,0.641534,0.928329,0.126072,0.504776,0.396449,0.159275,0.366572,0.305922,0.265439,0.0717676,0.298772,0.533944,0.466006,0.220107,0.427805,0.630439,0.841951,0.759907,0.0445983,0.744863,0.37387,0.252382,0.368166,0.0291198,0.725931,0.239412,0.143867,0.156188,0.606759,0.995022,0.331617,0.159276,0.426653,0.8558,0.526174,0.145153,0.344011,0.806676,0.470495,0.739845,0.0301462,0.437626,0.733516,0.32085,0.623232,0.61259,0.297291,0.463879,0.0724663,0.585468,0.879605,0.867037,0.700573,0.476238,0.456982,0.15108,0.800602,0.664786,0.698087,0.927475,0.717566,0.773819,0.166472,0.560923,0.61259,0.572164,0.959559,0.755424,0.892504,0.987999,0.53845,0.980972,0.748918,0.436187,0.576797,0.312838,0.29629,0.719025,0.138783,0.201822,0.464059,0.233636,0.0238895,0.13201,0.898056,0.55383,0.892952,0.503397,0.813787,0.140077,0.460823,0.400702,0.859215,0.256756,0.16872,0.0724013,0.797259,0.94483,0.296896,0.123641,0.931739,0.64795,0.979254,0.588418,0.619838,0.383574,0.312286,0.0298552,|0.390484,0.577235,0.27693,0.512362,0.225192,0.856984,0.202285,0.208441,0.778041,0.394007,0.311002,0.921979,0.922385,0.962848,0.216049,0.58377,0.41979,0.451318,0.0383633,0.821756,0.261133,0.83395,0.282354,0.597612,0.061537,0.0116136,0.40535,0.0368249,0.764251,0.109879,0.703139,0.701079,0.946859,0.766682,0.846055,0.171109,0.337884,0.289484,0.233063,0.129685,0.808814,0.0372033,0.598758,0.207105,0.573093,0.567839,0.766507,0.850361,0.270903,0.751155,0.526048,0.734562,0.809571,0.225975,0.467041,0.738333,0.906833,0.902084,0.885851,0.96036,0.618172,0.222407,0.998143,0.492815,0.75289,0.417291,0.645286,0.353393,0.382161,0.709472,0.783123,0.25931,0.626534,0.272195,0.850222,0.73774,0.0637665,0.0505798,0.88436,0.557337,0.680325,0.717994,0.0189824,0.184131,0.735981,0.470991,0.0950889,0.120764,0.921783,0.319956,0.139336,0.334872,0.439757,0.750179,0.595514,0.311621,0.87975,0.177994,0.437061,0.629958,0.421394,0.745706,0.125411,0.560899,0.434148,0.0484558,0.14289,0.226393,0.687789,0.838837,0.58022,0.562559,0.170926,0.378204,0.0443299,0.967875,0.710846,0.952713,0.767334,0.451278,0.832423,0.792943,0.437405,0.9142,7.79629e-05,0.207326,0.561544,0.582171,0.745962,0.544353,0.511901,0.490667,0.313244,0.508527,0.582699,0.824923,0.00720644,0.0481781,0.843844,0.181745,0.875145,0.365002,0.219123,0.545128,0.914461,0.411152,0.249626,0.944121,0.952113,0.311445,0.800189,0.958461,0.258415,0.827988,0.981081,0.165417,0.086832,0.53401,0.0368025,0.485537,0.011326,0.863854,0.307791,0.53339,0.594354,0.243202,0.342211,0.598358,0.38624,0.147717,0.991594,0.0498586,0.224327,0.0653874,0.120044,0.108503,0.570593,0.985564,0.550555,0.930687,0.279903,0.451431,0.585499,0.378119,0.318842,0.143558,0.505214,0.990325,0.571503,0.418763,0.925439,0.866629,0.652979,0.0954654,0.462374,0.226983,0.710073,0.247093,0.449367,0.0684479,0.083966,0.927054,0.0821202,0.768933,0.249107,0.571474,0.871066,0.883745,0.268715,0.963579,0.845792,0.411954,0.548687,0.756467,0.0431615,0.873892,0.786973,0.228932,0.398613,0.766957,0.187749,0.761836,0.666351,0.676216,0.324221,0.255002,0.541367,0.264219,0.0239034,0.555402,0.113596,0.861962,0.0634869,0.915656,0.336316,0.124137,0.908301,0.0756452,0.428985,0.828615,0.0933668,0.354849,0.0408474,0.649529,0.190509,0.845965,0.711266,0.329339,0.450071,0.735741,0.224615,0.593694,0.899837,0.346951,0.564309,0.254773,0.41289,0.458015,0.502873,0.893099,0.0770141,0.476064,0.0652331,0.178884,0.0282642,0.152044,0.419992,0.154297,0.809113,0.50557,0.323036,0.773011,0.0418379,0.925744,0.684132,0.591478,0.584372,0.778556,0.184667,0.263414,0.594703,0.689499,0.695798,0.394109,0.826236,0.515916,0.307198,0.370115,0.750971,0.218978,0.665348,0.445472,0.103111,0.629217,0.41422,0.330462,0.592517,0.865636,0.574839,0.654213,0.351864,0.393742,0.0313221,0.349186,0.378201,0.0560625,0.655396,0.0121255,0.26603,0.554619,0.410858,0.75268,0.264941,0.8125,0.600374,0.997096,0.618712,0.0966349,0.55796,0.451072,0.803254,0.799645,0.560608,0.763879,0.475817,0.914074,0.534062,0.45832,0.581493,0.284827,0.663796,0.155024,0.0150387,0.44354,0.64138,0.372005,0.145518,0.503222,0.16844,0.787556,0.100414,0.320335,0.924462,0.96613,0.231893,0.46593,0.382226,0.268979,0.314925,0.846619,0.809771,0.115569,0.3043,0.504492,0.171836,0.785689,0.293596,0.536867,0.438985,0.419922,0.813288,0.898601,0.365956,0.122419,0.665549,0.940988,0.0573997,0.79864,0.000435948,0.761019,0.359275,0.68213,0.00823426,0.504688,0.301874,0.0848237,0.381238,0.993259,0.457395,0.243594,0.594118,0.0767149,0.115972,0.995261,0.317271,0.409052,0.935418,0.224569,0.642977,0.0100048,0.562025,0.21483,0.568727,0.700599,0.738555,0.486366,0.46154,0.661715,0.829062,0.984309,0.347857,0.516853,0.946517,0.364864,0.88486,0.117494,0.117728,0.133175,0.890314,0.584261,0.512465,0.501292,0.059481,0.0879487,0.466241,0.170048,0.0369627,0.640991,0.582358,0.329363,0.415428,0.139414,0.328611,0.403215,0.733232,0.981194,0.680482,0.167166,0.553295,0.100213,0.849787,0.136636,0.270402,0.797564,0.612416,0.513084,0.305575,0.716328,0.999611,0.341144,0.114886,0.178765,0.853432,0.119462,0.731794,0.545699,0.569778,0.261013,0.189125,0.244675,0.241924,0.0814704,0.0188826,0.831765,0.533597,0.0966207,0.528444,0.0788894,0.240619,0.0627698,0.974359,0.572957,0.219391,0.076416,0.825338,0.0483562,0.886644,0.888356,0.545185,0.812813,0.589042,0.692852,0.153975,0.192224,0.0187556,0.155155,0.279122,0.188836,0.698026,0.611161,0.897403,0.132628,0.354314,0.146073,0.343687,0.146106,0.31715,0.00553441,0.397943,0.817677,0.903859,0.167658,0.0609545,0.0946237,0.014081,0.00448364,0.941555,0.178407,0.427267,0.861592,0.189753,0.928967,0.498488,0.496065,0.847424,0.340782,0.914744,0.155049,0.890456,0.0856847,0.055574,0.172648,0.588993,0.383662,0.94611,0.466053,0.608858,0.0532988,0.132615,0.313854,0.851233,0.100775,0.822755,0.903108,0.755749,0.037955,0.822751,0.925118,0.9154,0.987936,0.773528,0.832298,0.226988,0.908143,0.306856,0.259281,0.0203455,0.421455,0.192744,0.229621,0.665577,0.447697,0.945377,0.606365,0.581025,0.079689,0.606078,0.877323,0.305844,0.53626,0.227046,0.883269,0.314779,0.454248,0.00431341,0.764197,0.436616,0.762477,0.972486,0.499105,0.616517,0.139054,0.382836,0.81813,0.757434,0.566517,0.106443,0.098675,0.693455,0.116205,0.385287,0.698504,0.62203,0.799629,0.979638,0.654059,0.933702,0.914451,0.548205,0.165688,0.5045,0.12791,0.715553,0.556492,0.268086,0.253699,0.0864754,0.643954,0.755538,0.54027,0.484992,0.821724,0.211621,0.202408,0.666005,0.403365,0.060743,0.842556,0.0846069,0.552701,0.527925,0.902764,0.464832,0.197309,0.0957649,0.707311,0.612116,0.78334,0.911679,0.388264,0.878187,0.911175,0.841248,0.726041,0.916907,0.342022,0.497235,0.354864,0.651042,0.682769,0.140622,0.272597,0.853548,0.336734,0.885942,0.830961,0.126458,0.181195,0.967609,0.722756,0.258273,0.748812,0.75023,0.00616366,0.551185,0.128622,0.375678,0.969971,0.883346,0.858238,0.385,0.395792,0.896279,0.0321503,0.182571,0.533333,0.961022,0.574297,0.509009,0.211544,0.93855,0.438775,0.909766,0.924954,0.339179,0.570965,0.348996,0.159911,0.34472,0.777858,0.680581,0.727953,0.134061,0.504896,0.382649,0.142769,0.363651,0.119192,0.77539,0.113243,0.316461,0.61568,0.301515,0.0504572,0.12664,0.063155,0.808041,0.171958,0.717152,0.457181,0.324608,0.321156,0.0599086,0.348694,0.998077,0.694229,0.0712062,0.666268,0.0718502,0.279548,0.415709,0.0585808,0.983664,0.0645022,0.412499,0.965742,0.906923,0.874418,0.846419,0.0140921,0.412698,0.38591,0.253406,0.748866,0.668334,0.756378,0.908188,0.759775,0.8541,0.496104,0.286927,0.418467,0.181236,0.773616,0.0587165,0.863667,0.324941,0.916141,0.910719,0.382648,0.296511,0.0731437,0.104274,0.433952,0.558417,0.598125,0.388909,0.571925,0.429467,0.104062,0.525571,0.437745,0.700926,0.835216,0.0748025,0.61378,0.41328,0.942273,0.931026,0.217381,0.148912,0.713251,0.441899,0.944384,0.357555,0.561516,0.418683,0.255089,0.317941,0.731622,0.554588,0.593619,0.647166,0.993062,0.648015,0.0100972,0.575077,0.790561,0.0250692,0.121241,0.302219,0.999864,0.790931,0.780388,0.445386,0.136272,0.950767,0.0444168,0.81317,0.765334,0.17539,0.0932707,0.802571,0.533936,0.993609,0.00421429,0.763051,0.533383,0.430251,0.0087285,0.724306,0.570579,0.802556,0.214062,0.190726,0.28859,0.522279,0.154603,0.648978,0.254815,0.13971,0.819199,0.378559,0.687621,0.989473,0.88323,0.916342,0.343095,0.897916,0.616099,0.96737,0.553895,0.470043,0.255364,0.362016,0.146623,0.0114722,0.19364,0.879915,0.00580752,0.790483,0.616458,0.209487,0.154803,0.0800604,0.489432,0.945056,0.748251,0.968562,0.0916492,0.749664,0.92031,0.125606,0.560268,0.221411,0.581174,0.214391,0.847926,0.78003,0.421038,0.188378,0.537636,0.521426,0.974315,0.878307,0.852155,0.415643,0.761146,0.453288,0.0893366,0.143777,0.593624,0.301862,0.464181,0.327597,0.268062,0.938663,0.894928,0.866385,0.473918,0.250881,0.860437,0.5246,0.350082,0.435421,0.685726,0.264812,0.408707,0.0957385,0.227923,0.734273,0.180297,0.80616,0.0596286,0.0732115,0.574786,0.81543,0.946807,0.272118,0.29231,0.918661,0.882076,0.334396,0.373037,0.89799,0.773021,0.798577,0.186462,0.147266,0.73163,0.336361,0.142597,0.860506,0.570382,0.235966,0.257411,0.0919729,0.381399,0.506809,0.431742,0.0289968,0.487673,0.429365,0.586773,0.83232,0.164515,0.902138,0.901085,0.489267,0.2544,0.275293,0.926534,0.386575,0.621324,0.452313,0.337282,0.359457,0.63982,0.0794724,0.986009,0.452196,0.177285,0.808907,0.641633,0.726703,0.0505362,0.529884,0.199167,0.121225,0.183683,0.948806,0.992938,0.617019,0.24993,0.0342012,0.0914575,0.967496,0.959525,0.18993,0.394526,0.0483068,0.169196,0.15513,0.701482,0.665045,0.4767,0.29765,0.61083,0.955189,0.762663,0.197922,0.730235,0.316806,0.684482,0.0476775,0.527092,0.464686,0.0352157,0.207053,0.539469,0.821164,0.00995481,0.679472,0.899456,0.304724,0.799305,0.575694,0.712289,0.307388,0.770824,0.768566,0.286517,0.14711,0.625686,0.695569,0.497595,0.417128,0.412001,0.95616,0.312808,0.642981,0.29126,0.967968,0.653585,0.656119,0.843477,0.230136,0.841324,0.329031,0.370425,0.709608,0.385207,0.672144,0.148452,0.95679,0.889749,0.999217,0.580869,0.477846,0.596276,0.608779,0.639345,0.960278,0.452849,0.772058,0.967659,0.0763373,0.620712,0.93092,0.758019,|0.784335,0.0213247,0.0289413,0.937811,0.100786,0.368701,0.976754,0.621836,0.68934,0.776893,0.09949,0.55613,0.184865,0.521794,0.761196,0.937079,0.18081,0.200954,0.0108609,0.949041,0.342995,0.829128,0.445859,0.544393,0.143836,0.224065,0.430109,0.340864,0.00172782,0.454255,0.385859,0.536581,0.597288,0.0913342,0.870742,0.94142,0.913954,0.100619,0.476326,0.0818199,0.443032,0.521146,0.128578,0.65363,0.141412,0.892255,0.4983,0.252669,0.67863,0.883831,0.389327,0.671089,0.954545,0.568144,0.369277,0.533833,0.938166,0.308675,0.90178,0.214117,0.659214,0.686466,0.585312,0.0759727,0.572904,0.285654,0.905201,0.255583,0.2717,0.376302,0.825613,0.614569,0.627978,0.851341,0.507575,0.345412,0.88928,0.132639,0.713585,0.236827,0.596739,0.942253,0.600808,0.168324,0.620782,0.549717,0.543688,0.0603292,0.228564,0.442364,0.703748,0.79239,0.222097,0.088328,0.458982,0.0888928,0.829171,0.586906,0.477824,0.915665,0.560753,0.57473,0.230499,0.56386,0.939248,0.0246811,0.641639,0.0939339,0.0992948,0.00947917,0.469343,0.922987,0.737761,0.729589,0.67596,0.249012,0.418371,0.963817,0.479194,0.335934,0.156169,0.573611,0.477062,0.304967,0.317976,0.141925,0.439666,0.632435,0.964479,0.521591,0.249006,0.814288,0.0475022,0.600879,0.994654,0.872763,0.187856,0.179656,0.761721,0.369435,0.730224,0.104893,0.515631,0.0370426,0.959007,0.9563,0.707238,0.724167,0.102219,0.569946,0.845216,0.504275,0.127253,0.590687,0.402627,0.848413,0.321121,0.404214,0.716206,0.307728,0.111166,0.548991,0.977312,0.314559,0.771708,0.559613,0.300169,0.378499,0.437484,0.58634,0.608757,0.622851,0.194038,0.554944,0.0159884,0.132649,0.144207,0.0602405,0.833191,0.538219,0.00147742,0.902066,0.0653625,0.361419,0.884401,0.798337,0.871924,0.171812,0.57995,0.056686,0.615139,0.18605,0.965851,0.381005,0.312576,0.879914,0.105275,0.27953,0.570138,0.0979197,0.42512,0.530156,0.813954,0.844583,0.224301,0.477865,0.574429,0.623691,0.728305,0.226822,0.183994,0.229873,0.561757,0.163086,0.525733,0.690354,0.404279,0.49886,0.64737,0.381421,0.167491,0.961075,0.690859,0.580745,0.132763,0.748329,0.0125,0.393529,0.165288,0.38557,0.0237156,0.671443,0.468223,0.719764,0.0866988,0.937734,0.136639,0.476514,0.596273,0.533383,0.185873,0.993671,0.246318,0.717881,0.369806,0.709768,0.427581,0.554192,0.488834,0.14581,0.962279,0.946037,0.259828,0.389984,0.183538,0.791817,0.118443,0.53263,0.669779,0.546085,0.887405,0.301026,0.308903,0.18303,0.242189,0.301527,0.73285,0.975329,0.463705,0.629794,0.263812,0.724482,0.625441,0.580483,0.375622,0.936078,0.452987,0.356548,0.426024,0.357725,0.65396,0.38184,0.848271,0.234837,0.119458,0.0542994,0.424261,0.0489198,0.0583516,0.542622,0.58962,0.229207,0.039161,0.235456,0.730416,0.776122,0.744127,0.0253175,0.642278,0.618246,0.868509,0.319552,0.884401,0.0657834,0.567107,0.536803,0.268439,0.477397,0.650617,0.043736,0.271277,0.719305,0.754761,0.174557,0.247761,0.232248,0.0630226,0.0730274,0.080358,0.518562,0.845802,0.575881,0.45418,0.824408,0.544821,0.782065,0.422295,0.732112,0.964323,0.0977008,0.0650398,0.0109572,0.0649063,0.124692,0.16938,0.344884,0.877816,0.320213,0.776243,0.825455,0.162435,0.282442,0.88988,0.249056,0.032541,0.479885,0.0975123,0.517913,0.143584,0.759601,0.98901,0.630263,0.333944,0.844198,0.960869,0.754989,0.751795,0.0553982,0.658029,0.434787,0.813638,0.151787,0.45469,0.902473,0.790211,0.330417,0.138309,0.602827,0.65591,0.69089,0.97218,0.589157,0.70692,0.932018,0.566032,0.939985,0.132614,0.560059,0.579947,0.397026,0.425727,0.801323,0.880695,0.538763,0.138226,0.943897,0.529338,0.610892,0.180766,0.546489,0.204377,0.939086,0.253875,0.466291,0.501893,0.0771779,0.755045,0.723585,0.0345466,0.787155,0.765299,0.0744991,0.122883,0.39736,0.656516,0.678373,0.975753,0.863243,0.953017,0.692519,0.550031,0.692556,0.78609,0.49941,0.656987,0.362214,0.380469,0.124076,0.275097,0.270156,0.290892,0.995485,0.545328,0.567798,0.178138,0.685753,0.467662,0.77048,0.197954,0.647255,0.131543,0.179727,0.330848,0.0462455,0.334471,0.44503,0.550388,0.99163,0.507948,0.113717,0.905538,0.44657,0.120065,0.754214,0.47744,0.279459,0.573536,0.256203,0.684828,0.950953,0.855151,0.668318,0.38344,0.737742,0.40171,0.00176162,0.0987557,0.159383,0.256217,0.499413,0.279792,0.923334,0.977088,0.4033,0.198547,0.0238765,0.00382924,0.927764,0.583713,0.651502,0.173774,0.24332,0.394495,0.112809,0.809261,0.241752,0.319836,0.358614,0.375524,0.00785685,0.367779,0.829997,0.643066,0.936671,0.00421399,0.271323,0.429864,0.684288,0.0362934,0.17638,0.282441,0.304418,0.690389,0.405102,0.378178,0.823072,0.128264,0.89107,0.0827036,0.186442,0.968054,0.778443,0.476474,0.674726,0.734406,0.535893,0.314123,0.136692,0.52623,0.0932885,0.289918,0.120417,0.481091,0.823082,0.600554,0.877158,0.798524,0.891882,0.485975,0.889193,0.998321,0.286202,0.842265,0.512829,0.0114209,0.0177594,0.974673,0.664592,0.754842,0.752294,0.367609,0.344675,0.849977,0.879724,0.0575163,0.390416,0.777442,0.262896,0.677796,0.547419,0.673014,0.198656,0.858477,0.465003,0.375712,0.068734,0.869836,0.255423,0.595994,0.13806,0.355349,0.0434216,0.388469,0.0946796,0.132609,0.799998,0.0495843,0.386968,0.488481,0.520586,0.352983,0.41408,0.359599,0.401365,0.198327,0.439665,0.839984,0.0309167,0.0793477,0.678502,0.198137,0.435656,0.517855,0.362507,0.804847,0.44778,0.315582,0.0838373,0.226585,0.907531,0.124551,0.190889,0.270327,0.412632,0.26421,0.603367,0.943905,0.335275,0.9676,0.0138724,0.504408,0.472997,0.418892,0.976551,0.03794,0.767343,0.408316,0.698048,0.105644,0.920743,0.287618,0.928062,0.904283,0.0121683,0.820543,0.398058,0.856529,0.682782,0.839092,0.446142,0.447412,0.0210864,0.169487,0.0744746,0.853257,0.33358,0.721787,0.588676,0.767768,0.883839,0.949747,0.997762,0.0440509,0.0515134,0.515693,0.42755,0.692919,0.986802,0.271894,0.972081,0.952243,0.591467,0.30856,0.6364,0.423026,0.788334,0.939246,0.593789,0.725919,0.717505,0.436692,0.668626,0.603715,0.371526,0.477578,0.235963,0.651287,0.982316,0.0511726,0.533331,0.691617,0.0907714,0.672884,0.770175,0.318421,0.856846,0.0480993,0.48125,0.462857,0.350127,0.615895,0.921699,0.711398,0.424271,0.829174,0.207982,0.967263,0.872245,0.785978,0.384588,0.0376417,0.218312,0.931097,0.571555,0.603144,0.8592,0.835317,0.24499,0.732776,0.978894,0.0669239,0.826117,0.646839,0.659654,0.781334,0.61286,0.173873,0.46169,0.976534,0.548807,0.0810679,0.581243,0.720795,0.255305,0.551126,0.739292,0.92936,0.911818,0.0657108,0.830742,0.369587,0.239572,0.450494,0.0990199,0.355678,0.525693,0.553119,0.932481,0.500657,0.161897,0.184125,0.333638,0.534055,0.621048,0.679124,0.0856286,0.784439,0.202178,0.692995,0.284005,0.399775,0.595923,0.635467,0.614515,0.434246,0.467385,0.631072,0.126309,0.984748,0.249409,0.529067,0.0244037,0.860316,0.233883,0.138941,0.808851,0.0443107,0.0696115,0.356956,0.189193,0.801135,0.41783,0.448202,0.00432235,0.521717,0.0292236,0.856408,0.690672,0.0626724,0.805552,0.385615,0.760534,0.353986,0.749906,0.984158,0.338126,0.549354,0.707343,0.728749,0.175223,0.341366,0.936459,0.336661,0.284749,0.386467,0.905143,0.886447,0.731543,0.240018,0.306928,0.498697,0.872009,0.837112,0.692196,0.354975,0.333072,0.203576,0.90337,0.964125,0.812363,0.715605,0.374338,0.182936,0.218975,0.545595,0.299474,0.447485,0.883789,0.211846,0.390078,0.826782,0.405746,0.0820975,0.156408,0.213889,0.985003,0.640926,0.706521,0.287878,0.7963,0.56298,0.0290012,0.16553,0.121002,0.521723,0.591002,0.993523,0.0716979,0.502757,0.288183,0.740508,0.228482,0.973054,0.522347,0.73344,0.976786,0.230221,0.512696,0.473998,0.475287,0.323817,0.539989,0.503794,0.360326,0.0344574,0.315174,0.967156,0.177489,0.368738,0.876235,0.794909,0.851891,0.301897,0.235645,0.709115,0.801977,0.34827,0.118167,0.933886,0.351294,0.466064,0.447686,0.0519762,0.487422,0.683025,0.418931,0.44582,0.358791,0.79301,0.570716,0.609834,0.565492,0.640973,0.24399,0.995309,0.215352,0.380558,0.440745,0.590761,0.000274479,0.712372,0.242977,0.357612,0.446969,0.104067,0.984634,0.0763395,0.0428269,0.657353,0.182874,0.934797,0.211618,0.388024,0.715593,0.754697,0.538527,0.428582,0.376309,0.0332964,0.280089,0.914147,0.34912,0.993115,0.985179,0.859157,0.995644,0.382857,0.126015,0.197841,0.0141691,0.970755,0.227955,0.12314,0.804518,0.85509,0.591954,0.727377,0.0829486,0.698252,0.304226,0.588217,0.671041,0.235063,0.0152193,0.168633,0.517752,0.92808,0.642462,0.734594,0.280874,0.581403,0.716073,0.153315,0.555955,0.942383,0.141274,0.38137,0.996122,0.747867,0.894137,0.167629,0.704836,0.341958,0.140608,0.771747,0.434176,0.675495,0.686548,0.343987,0.296277,0.559745,0.586971,0.995108,0.841925,0.999041,0.740949,0.694475,0.816799,0.630231,0.648965,0.133517,0.445208,0.88565,0.480487,0.910027,0.0598952,0.989412,0.704305,0.360748,0.989701,0.993717,0.457628,0.375483,0.918453,0.2742,0.175267,0.29198,0.825315,0.738715,0.728799,0.97671,0.129185,0.510913,0.488421,0.417859,0.404413,0.484158,0.609858,0.758617,0.211347,0.983488,0.296401,0.13124,0.818458,0.525002,0.970501,0.156637,0.756887,0.897585,0.985927,0.575884,0.435092,0.330397,0.599412,0.136114,0.148562,0.576688,0.819175,0.320561,0.484703,0.872923,0.443592,0.285463,0.383979,0.736885,0.40602,0.0540212,0.00462317,0.587214,0.202123,|0.391212,0.387418,0.081522,0.105818,0.83639,0.571827,0.213869,0.886362,0.0608076,0.538101,0.733972,0.439475,0.739659,0.0480165,0.891793,0.495986,0.274647,0.269226,0.952665,0.729244,0.410196,0.113557,0.457097,0.879858,0.530297,0.200524,0.636625,0.169093,0.105738,0.668945,0.550503,0.421115,0.878332,0.407235,0.210478,0.647327,0.528799,0.499393,0.621937,0.728697,0.270902,0.709017,0.181655,0.770162,0.968887,0.593427,0.967876,0.452605,0.471543,0.196821,0.104912,0.51277,0.892521,0.037063,0.483937,0.940475,0.20734,0.926072,0.452351,0.720785,0.675263,0.609418,0.458178,0.819219,0.263395,0.0934491,0.998763,0.625403,0.145839,0.522773,0.301626,0.193257,0.0386403,0.354818,0.618235,0.510472,0.383392,0.914037,0.27269,0.635639,0.811588,0.63788,0.908135,0.651303,0.0993128,0.388424,0.259102,0.222864,0.223296,0.31148,0.294144,0.274536,0.149849,0.612479,0.481478,0.913076,0.780483,0.98861,0.242089,0.154307,0.987429,0.276841,0.552473,0.622068,0.846236,0.102462,0.847318,0.12433,0.467618,0.74551,0.343772,0.273954,0.430186,0.130193,0.970039,0.564229,0.0786726,0.447189,0.666152,0.548413,0.653148,0.710561,0.55409,0.0520293,0.369761,0.410946,0.685534,0.0694565,0.068829,0.401618,0.446303,0.920438,0.105259,0.279377,0.440886,0.491065,0.620941,0.850286,0.442825,0.766888,0.558677,0.79451,0.536914,0.186463,0.191037,0.0159346,0.25662,0.614616,0.151798,0.568483,0.148994,0.888987,0.564867,0.795831,0.09539,0.346711,0.47266,0.00257367,0.708991,0.502022,0.146273,0.330808,0.625121,0.750371,0.0345539,0.168269,0.243263,0.546086,0.407165,0.275326,0.441614,0.871865,0.463466,0.275929,0.815645,0.201122,0.331317,0.756038,0.182557,0.723593,0.396694,0.814718,0.880308,0.727828,0.345201,0.170571,0.547292,0.788905,0.82499,0.577895,0.959546,0.0809212,0.874175,0.315646,0.774029,0.105379,0.965533,0.073189,0.346817,0.474394,0.771831,0.433459,0.624445,0.694649,0.87024,0.678931,0.27497,0.818387,0.086264,0.257746,0.5308,0.225999,0.0866563,0.0690411,0.846714,0.603562,0.624079,0.0189537,0.425062,0.98971,0.967793,0.286712,0.292242,0.537253,0.856536,0.331339,0.0922892,0.3938,0.408659,0.550202,0.635882,0.521446,0.187765,0.135293,0.728632,0.717578,0.609609,0.716848,0.569944,0.0415795,0.89432,0.459484,0.982061,0.27519,0.078661,0.688421,0.657759,0.484192,0.925441,0.463893,0.226351,0.0260682,0.919492,0.995168,0.912887,0.528418,0.473192,0.208397,0.695443,0.804968,0.0527582,0.89876,0.534315,0.982902,0.0956904,0.927324,0.120941,0.153012,0.586546,0.529965,0.000141561,0.880753,0.884255,0.789419,0.5854,0.310302,0.629257,0.224196,0.772858,0.614098,0.621801,0.886578,0.52926,0.39535,0.161157,0.685744,0.85463,0.667756,0.926219,0.229087,0.532992,0.501298,0.589788,0.808618,0.0741736,0.637427,0.592735,0.768775,0.0817503,0.422323,0.451374,0.451766,0.552116,0.595003,0.556776,0.849225,0.616098,0.87546,0.406782,0.471612,0.500528,0.536534,0.36644,0.786483,0.561693,0.224807,0.650377,0.427259,0.241705,0.258425,0.196854,0.409429,0.927946,0.985945,0.707492,0.398435,0.425593,0.0590614,0.922688,0.275862,0.446183,0.70819,0.536982,0.4385,0.966724,0.80623,0.299661,0.170427,0.33584,0.89898,0.902773,0.0071193,0.691496,0.779326,0.739269,0.623752,0.08474,0.326583,0.338157,0.383046,0.188474,0.764216,0.151018,0.79217,0.466824,0.66483,0.758336,0.00956583,0.822391,0.401096,0.231625,0.678402,0.442942,0.973561,0.781064,0.759274,0.170005,0.895094,0.978423,0.066413,0.356817,0.394472,0.585134,0.299866,0.481863,0.137899,0.944114,0.0892823,0.465501,0.517164,0.240651,0.921845,0.547857,0.786794,0.677402,0.558693,0.865789,0.437241,0.237008,0.109897,0.926223,0.188008,0.416536,0.892362,0.43601,0.983029,0.681044,0.0678829,0.691204,0.506506,0.889621,0.308119,0.204236,0.422598,0.763294,0.489746,0.444818,0.199918,0.317967,0.016082,0.22098,0.710872,0.933022,0.985609,0.734648,0.294711,0.813418,0.959788,0.0326341,0.636719,0.157297,0.42856,0.464052,0.0488307,0.961748,0.366687,0.523744,0.670898,0.89328,0.785417,0.791341,0.729449,0.351313,0.957766,0.184297,0.747233,0.342123,0.584936,0.170409,0.226518,0.666126,0.917928,0.624289,0.504477,0.564697,0.609477,0.117683,0.229156,0.137381,0.71851,0.579398,0.119865,0.0411151,0.308684,0.839663,0.216736,0.890242,0.661091,0.708664,0.837373,0.506707,0.808919,0.0609524,0.645585,0.41795,0.118916,0.804204,0.3973,0.272611,0.37678,0.166924,0.348119,0.129958,0.791701,0.130791,0.0971456,0.836831,0.221269,0.555141,0.541005,0.11492,0.220694,0.287501,0.658053,0.537987,0.47013,0.0376527,0.623413,0.343283,0.0979098,0.993573,0.737849,0.768899,0.659369,0.545549,0.519386,0.868458,0.609385,0.964607,0.782092,0.873695,0.872516,0.447574,0.745397,0.197547,0.092911,0.772313,0.130642,0.351033,0.722939,0.547227,0.39013,0.590112,0.799434,0.4092,0.970579,0.136662,0.858537,0.0233274,0.801465,0.775103,0.753003,0.532928,0.373843,0.241146,0.196405,0.0896143,0.575341,0.389348,0.685713,0.893545,0.944768,0.535757,0.46778,0.560936,0.197297,0.340556,0.143794,0.0843924,0.217211,0.95694,0.690277,0.803928,0.147074,0.865538,0.0362555,0.0490652,0.0758879,0.596637,0.219041,0.117783,0.817435,0.576254,0.556638,0.525355,0.51737,0.150555,0.108193,0.712146,0.131193,0.763543,0.957154,0.216802,0.450871,0.261563,0.941898,0.0686033,0.293062,0.685916,0.750848,0.769703,0.159647,0.102972,0.00831109,0.987151,0.671094,0.0957022,0.483587,0.304585,0.441865,0.50529,0.802808,0.562903,0.325538,0.826705,0.986017,0.103365,0.209059,0.0618339,0.717951,0.100935,0.0832585,0.989938,0.434092,0.312368,0.231302,0.0833223,0.428179,0.247118,0.0557423,0.938577,0.401194,0.503707,0.682091,0.551197,0.448282,0.341948,0.846747,0.94431,0.590447,0.663334,0.260034,0.551932,0.0819862,0.556406,0.796081,0.372597,0.978761,0.646901,0.361177,0.745654,0.621168,0.510488,0.726672,0.209225,0.743611,0.145218,0.78569,0.752129,0.959904,0.187586,0.788924,0.799901,0.63393,0.444672,0.253433,0.525837,0.776022,0.997049,0.705024,0.0840859,0.967898,0.366675,0.436415,0.911463,0.251952,0.480334,0.0285652,0.243048,0.431223,0.041698,0.452597,0.677943,0.134719,0.152178,0.862751,0.844045,0.122355,0.09051,0.0537013,0.815328,0.579352,0.317985,0.857629,0.774795,0.0969564,0.494306,0.902249,0.179758,0.86237,0.683132,0.125517,0.95136,0.189126,0.745465,0.0837799,0.233095,0.633919,0.831281,0.506961,0.986214,0.966812,0.958708,0.119223,0.528503,0.0483934,0.699876,0.776851,0.250904,0.981266,0.948652,0.08709,0.179068,0.550966,0.691237,0.111171,0.24741,0.822065,0.887345,0.481932,0.183281,0.511657,0.143985,0.791793,0.777587,0.295057,0.104522,0.88809,0.68452,0.913105,0.565921,0.0344024,0.297545,0.977935,0.241358,0.325598,0.6333,0.629903,0.00921726,0.114902,0.658761,0.221351,0.0367239,0.890126,0.802454,0.130389,0.346549,0.850171,0.368873,0.103815,0.819825,0.839525,0.042787,0.974772,0.626511,0.704464,0.612658,0.692489,0.783756,0.899978,0.117176,0.776193,0.110215,0.252637,0.451932,0.591342,0.951484,0.502691,0.947016,0.0760111,0.708165,0.353753,0.482129,0.747784,0.758406,0.637172,0.769037,0.406129,0.660354,0.439874,0.719746,0.885864,0.660645,0.90454,0.145463,0.982348,0.696557,0.661184,0.253425,0.650333,0.0414324,0.537476,0.845664,0.234443,0.643322,0.488013,0.498939,0.534482,0.018163,0.167035,0.774042,0.945549,0.586139,0.482309,0.0776389,0.16403,0.990314,0.920165,0.201571,0.411899,0.411529,0.322061,0.0147055,0.306114,0.69112,0.298994,0.314883,0.420802,0.0424609,0.127149,0.95836,0.158085,0.515474,0.430829,0.451165,0.859424,0.773132,0.890853,0.884548,0.622914,0.314077,0.53488,0.342997,0.862866,0.675213,0.379498,0.90899,0.58038,0.962221,0.430029,0.533295,0.526558,0.0510564,0.411124,0.153807,0.105248,0.871261,0.795155,0.296397,0.515337,0.741766,0.359993,0.872505,0.13632,0.169437,0.0540119,0.303326,0.752977,0.18629,0.452951,0.783014,0.897777,0.198946,0.360713,0.736741,0.214791,0.895277,0.811562,0.468131,0.0370078,0.945881,0.118447,0.404444,0.0196179,0.92978,0.571977,0.439145,0.366636,0.764125,0.210617,0.792262,0.241052,0.60501,0.850634,0.965023,0.471909,0.396048,0.544515,0.225952,0.525841,0.450851,0.336546,0.770265,0.226981,0.569373,0.17052,0.249627,0.316834,0.981005,0.672141,0.881794,0.275275,0.5648,0.104149,0.543542,0.958833,0.93178,0.967724,0.56845,0.579076,0.182692,0.3657,0.0606745,0.178695,0.330139,0.558304,0.180548,0.788726,0.276938,0.132469,0.28251,0.86964,0.43861,0.00894576,0.940386,0.189395,0.132702,0.922202,0.907505,0.861005,0.252381,0.913588,0.0677465,0.287646,0.844907,0.916832,0.192696,0.146427,0.699717,0.689215,0.257747,0.330345,0.932234,0.816574,0.348563,0.145025,0.220408,0.525259,0.579079,0.305632,0.0321212,0.442907,0.44966,0.758119,0.486279,0.86915,0.77115,0.970303,0.951925,0.969122,0.92463,0.336104,0.13193,0.466951,0.935096,0.13282,0.448679,0.156621,0.378717,0.365774,0.385876,0.912693,0.96175,0.55769,0.974973,0.118046,0.780648,0.888174,0.726371,0.437104,0.574327,0.621515,0.672694,0.00993276,0.34552,0.744154,0.416607,0.281036,0.161432,0.244713,0.384209,0.857846,0.406698,0.0303044,0.702477,0.78043,0.186657,0.489806,0.79192,0.108719,0.0789347,0.58102,0.558151,0.981612,0.300041,0.37583,0.289279,0.552751,0.111572,0.187002,0.670027,0.963451,0.942729,0.103689,0.949658,0.715574,0.629212,0.802158,0.760479,0.987935,|0.29707,0.951867,0.228406,0.935203,0.231998,0.409397,0.893987,0.322297,0.0113603,0.145469,0.373642,0.938577,0.278028,0.559026,0.397628,0.522791,0.0436569,0.629114,0.116938,0.950489,0.884307,0.187296,0.318256,0.728985,0.425941,0.893816,0.0773432,0.251038,0.120374,0.58033,0.504888,0.158666,0.818972,0.957967,0.0851271,0.0330061,0.749483,0.204622,0.855411,0.624651,0.394518,0.704483,0.97657,0.377709,0.319917,0.66854,0.332946,0.828297,0.601316,0.273125,0.241415,0.385715,0.66707,0.452357,0.0824499,0.609705,0.563604,0.370257,0.290626,0.00683123,0.133143,0.40835,0.243139,0.443055,0.606111,0.893741,0.338416,0.432707,0.73267,0.931564,0.542011,0.639838,0.376296,0.401437,0.457384,0.801021,0.948813,0.591696,0.739604,0.170085,0.4845,0.824157,0.608687,0.165864,0.992626,0.0474621,0.849476,0.999953,0.911508,0.484058,0.196601,0.602362,0.442611,0.829668,0.59094,0.325824,0.0822832,0.0784447,0.980234,0.486761,0.704413,0.806809,0.675392,0.856213,0.559822,0.851336,0.691261,0.692898,0.343998,0.61526,0.228678,0.782111,0.270649,0.379781,0.219176,0.422396,0.91055,0.344341,0.0153464,0.29859,0.351828,0.0607604,0.0997142,0.492243,0.198522,0.48724,0.918505,0.680927,0.288153,0.750118,0.199733,0.627328,0.285412,0.192812,0.0231681,0.825201,0.203399,0.959371,0.335307,0.393007,0.433022,0.834404,0.761154,0.819716,0.159095,0.301359,0.950725,0.883219,0.960015,0.160025,0.362756,0.9503,0.125104,0.71242,0.657987,0.255421,0.169038,0.92352,0.209397,0.847011,0.410431,0.714791,0.298153,0.152642,0.279967,0.213283,0.129288,0.640171,0.387326,0.980847,0.558337,0.238385,0.0391353,0.894722,0.228577,0.990554,0.341609,0.872855,0.972221,0.954017,0.801581,0.541902,0.381996,0.436264,0.80347,0.957047,0.511851,0.21572,0.300789,0.333121,0.12743,0.960996,0.750707,0.36961,0.363536,0.552085,0.579906,0.379499,0.405798,0.953256,0.144425,0.0180193,0.686862,0.853718,0.109209,0.228227,0.681386,0.590444,0.175506,0.719398,0.901931,0.140451,0.137563,0.670527,0.137104,0.719958,0.831897,0.0542983,0.991183,0.153372,0.0385271,0.677155,0.227889,0.967141,0.340099,0.861412,0.0793466,0.288778,0.637536,0.489735,0.377155,0.0246872,0.395734,0.13467,0.575025,0.0551065,0.495352,0.17552,0.197478,0.717639,0.5523,0.617494,0.454795,0.494989,0.615548,0.109912,0.425158,0.620724,0.126918,0.0042659,0.63796,0.169951,0.639839,0.348485,0.00751036,0.465949,0.381019,0.59921,0.475333,0.731185,0.952756,0.372833,0.996751,0.409618,0.934437,0.271929,0.859239,0.896925,0.885844,0.134463,0.958817,0.834125,0.320099,0.634064,0.745892,0.354755,0.966039,0.755487,0.951297,0.420252,0.534493,0.257037,0.660807,0.392484,0.158779,0.963552,0.525883,0.438366,0.495563,0.939904,0.680037,0.374459,0.602166,0.147923,0.512112,0.409326,0.30647,0.695821,0.149115,0.633753,0.393505,0.611733,0.0103559,0.950648,0.227772,0.0637931,0.62551,0.923047,0.208473,0.0205844,0.680748,0.871462,0.77536,0.871122,0.825669,0.654841,0.391534,0.615221,0.0128509,0.140951,0.248667,0.582103,0.752306,0.670559,0.299858,0.813396,0.445289,0.0844613,0.406182,0.155571,0.161746,0.998645,0.361986,0.433872,0.300158,0.541081,0.273465,0.780834,0.0617921,0.787591,0.53373,0.322656,0.525319,0.420945,0.625968,0.629345,0.652207,0.502324,0.645308,0.369903,0.240963,0.900034,0.339724,0.806669,0.818558,0.170284,0.672244,0.16023,0.902622,0.398352,0.970149,0.660132,0.562987,0.225649,0.307369,0.787383,0.023746,0.495556,0.00185478,0.230517,0.477395,0.918909,0.741186,0.366035,0.693742,0.0672966,0.805,0.654559,0.0839036,0.602798,0.0810994,0.106643,0.396098,0.341271,0.514393,0.375039,0.40393,0.716351,0.512205,0.512772,0.462952,0.942214,0.762331,0.0153366,0.452928,0.43297,0.53303,0.876907,0.499039,0.299451,0.214837,0.497054,0.387576,0.0983661,0.537455,0.949019,0.746362,0.610964,0.211621,0.755159,0.861632,0.205629,0.694472,0.0434696,0.947563,0.475823,0.32747,0.893533,0.0575906,0.175614,0.408979,0.838248,0.851283,0.697373,0.174411,0.606269,0.336109,0.323695,0.485095,0.836302,0.244635,0.0961613,0.40558,0.3072,0.488168,0.106619,0.886456,0.558576,0.635727,0.0151646,0.461282,0.186448,0.578653,0.7913,0.314877,0.18188,0.879784,0.844265,0.565377,0.787395,0.675959,0.119324,0.313606,0.0152482,0.0536001,0.800399,0.899084,0.00986177,0.35046,0.0679381,0.623314,0.384006,0.777222,0.517409,0.401626,0.601127,0.0244525,0.387484,0.857547,0.0969231,0.786036,0.505882,0.365034,0.808439,0.699437,0.415253,0.109245,0.697971,0.195926,0.0213993,0.419606,0.384835,0.603569,0.190134,0.103228,0.547716,0.432393,0.0501835,0.450681,0.470797,0.0106872,0.590395,0.650341,0.550604,0.552509,0.973508,0.107671,0.410998,0.067897,0.893354,0.925909,0.887931,0.468519,0.743299,0.123775,0.549523,0.176121,0.311779,0.0920394,0.0812817,0.552429,0.677185,0.261641,0.633479,0.157761,0.757858,0.0821442,0.246131,0.19338,0.440592,0.91539,0.694664,0.370073,0.776923,0.81306,0.327075,0.698279,0.785909,0.162191,0.867819,0.743156,0.406857,0.769881,0.418884,0.630467,0.582297,0.00992793,0.230364,0.00347549,0.817411,0.884419,0.0584767,0.583727,0.203265,0.266602,0.735916,0.904983,0.39476,0.165969,0.00930816,0.291023,0.895822,0.770561,0.560213,0.450466,0.826721,0.312874,0.954216,0.961524,0.734052,0.836661,0.51667,0.945061,0.0687451,0.267021,0.795716,0.244886,0.0928402,0.442312,0.723136,0.416196,0.842243,0.996292,0.826013,0.718156,0.954068,0.851612,0.808592,0.213832,0.376932,0.119139,0.494781,0.940155,0.32033,0.487647,0.616078,0.0298411,0.351813,0.549665,0.839162,0.151608,0.251268,0.349119,0.158269,0.779426,0.204672,0.0308225,0.834779,0.992117,0.0364969,0.944851,0.328945,0.562035,0.00245059,0.290586,0.492098,0.754423,0.883826,0.980363,0.383853,0.757223,0.85427,0.237742,0.242678,0.217752,0.0301372,0.406879,0.68005,0.86277,0.0183063,0.471046,0.0532655,0.601531,0.986732,0.438628,0.333232,0.545848,0.441037,0.607966,0.300464,0.389189,0.466427,0.629846,0.154269,0.569437,0.563834,0.264668,0.0194116,0.763006,0.00901496,0.597792,0.0139596,0.365456,0.834919,0.814116,0.88125,0.166333,0.152821,0.745861,0.731392,0.463204,0.918759,0.0498208,0.890936,0.100346,0.435449,0.501847,0.885598,0.0248892,0.212848,0.197799,0.496202,0.925082,0.361703,0.579877,0.335462,0.0581378,0.94851,0.0269457,0.905892,0.982014,0.00174195,0.351608,0.307621,0.441856,0.944415,0.934155,0.282759,0.243372,0.831421,0.373686,0.109928,0.781989,0.945087,0.818367,0.118961,0.0831076,0.743489,0.428987,0.546513,0.0915749,0.977755,0.117107,0.16763,0.66057,0.755392,0.699684,0.940005,0.493292,0.0116172,0.588516,0.171091,0.507315,0.176068,0.489262,0.696569,0.350853,0.141913,0.863759,0.70677,0.563158,0.777342,0.4715,0.29268,0.0731707,0.318504,0.0831034,0.897188,0.688157,0.428218,0.596975,0.804138,0.875987,0.862594,0.785966,0.0876639,0.488857,0.328996,0.895269,0.180393,0.99546,0.240545,0.720402,0.165241,0.548843,0.580039,0.162806,0.775075,0.864315,0.511742,0.222551,0.862651,0.102305,0.24065,0.126669,0.173952,0.127139,0.627976,0.988706,0.520785,0.564415,0.350759,0.38977,0.0781761,0.499094,0.187633,0.164741,0.0343149,0.620264,0.221804,0.41237,0.607159,0.166611,0.850488,0.247421,0.217994,0.161076,0.362581,0.829185,0.259189,0.744182,0.659218,0.00944912,0.329426,0.97618,0.811293,0.240623,0.547371,0.753456,0.162239,0.188807,0.153007,0.261777,0.970735,0.384798,0.253208,0.29559,0.437893,0.161339,0.824902,0.21786,0.124418,0.408813,0.881083,0.161412,0.908374,0.494205,0.263333,0.222889,0.0807967,0.997692,0.515009,0.173511,0.502899,0.861456,0.0131032,0.890768,0.937536,0.394494,0.802918,0.680195,0.613741,0.936203,0.996045,0.0533454,0.0757149,0.458947,0.924643,0.159648,0.128683,0.991403,0.680896,0.570257,0.758019,0.123744,0.182774,0.397209,0.596027,0.159404,0.072271,0.697916,0.0294668,0.634209,0.721372,0.776055,0.0762962,0.383589,0.524563,0.818281,0.0128217,0.0222643,0.448989,0.606314,0.737531,0.805449,0.211507,0.259275,0.805774,0.963719,0.26519,0.544358,0.316936,0.456902,0.4755,0.667493,0.699819,0.630861,0.683923,0.0283403,0.161195,0.389145,0.290081,0.798117,0.826767,0.57616,0.541004,0.590102,0.648756,0.299498,0.959592,0.513863,0.60545,0.622493,0.23885,0.485637,0.335202,0.520133,0.0643392,0.35029,0.340514,0.251511,0.418727,0.438659,0.0515278,0.182735,0.899374,0.29084,0.938666,0.202421,0.404816,0.285365,0.976564,0.978261,0.120039,0.831763,0.824213,0.824258,0.559364,0.840615,0.428626,0.697271,0.367714,0.239557,0.460552,0.38437,0.959958,0.947133,0.0260376,0.99664,0.189333,0.32505,0.853384,0.0608292,0.91826,0.852228,0.480108,0.552149,0.874846,0.631234,0.745944,0.317294,0.935901,0.384213,0.153333,0.442739,0.955383,0.86697,0.91255,0.498384,0.314543,0.926253,0.506487,0.204661,0.675435,0.191755,0.541087,0.972852,0.200947,0.207975,0.138008,0.605299,0.822583,0.962481,0.315176,0.623759,0.0270156,0.633887,0.482708,0.73757,0.26614,0.814865,0.0675889,0.750858,0.501817,0.358267,0.889227,0.381307,0.500841,0.526989,0.60947,0.853665,0.166547,0.21922,0.387738,0.517477,0.954451,0.858359,0.579,0.711632,0.0505402,0.069976,0.538383,0.403998,0.673089,0.0188394,0.361897,0.58077,0.988433,0.705774,0.84647,0.844559,0.558641,0.696062,0.529661,0.022312,0.793411,0.753651,0.659498,0.292423,0.521568,0.456217,0.359423,0.252998,0.170529,0.120427,0.141882,0.686536,0.348056,0.440595,0.458086,|0.745533,0.446102,0.618823,0.914609,0.513969,0.289756,0.973438,0.60744,0.00367171,0.570413,0.401779,0.218326,0.251583,0.501056,0.647084,0.773287,0.0102586,0.980644,0.379504,0.102147,0.723113,0.0348296,0.471937,0.442009,0.642875,0.11756,0.957364,0.954873,0.260599,0.0122746,0.00493592,0.685506,0.447726,0.950554,0.502966,0.532787,0.243751,0.399437,0.327836,0.0409602,0.906482,0.164865,0.000902593,0.215682,0.246974,0.808031,0.379699,0.505064,0.582314,0.356576,0.889714,0.838796,0.891402,0.453428,0.271298,0.856527,0.0795519,0.616217,0.589423,0.374424,0.0133829,0.0941392,0.366513,0.698633,0.814375,0.124844,0.148524,0.0173883,0.486603,0.382114,0.945091,0.116872,0.49481,0.597004,0.538382,0.310853,0.570086,0.63628,0.949754,0.499181,0.65578,0.227949,0.691449,0.703951,0.925721,0.453551,0.741999,0.295938,0.627367,0.211891,0.455136,0.514477,0.902167,0.423284,0.3059,0.400053,0.469214,0.407503,0.325254,0.333382,0.951218,0.678856,0.150032,0.425157,0.829232,0.0276542,0.507038,0.959511,0.981776,0.160464,0.783888,0.447379,0.50377,0.741085,0.15394,0.914984,0.959315,0.502923,0.0147662,0.969912,0.451382,0.843721,0.242522,0.66107,0.676573,0.613384,0.653853,0.869956,0.422594,0.247992,0.320659,0.299203,0.904094,0.259604,0.463167,0.223748,0.688199,0.195196,0.0867206,0.19733,0.483829,0.111718,0.964772,0.556345,0.554278,0.312287,0.880924,0.622877,0.455032,0.634688,0.475286,0.0795026,0.463378,0.482911,0.112297,0.942264,0.268433,0.027327,0.486943,0.519145,0.482834,0.305077,0.373608,0.866029,0.0655413,0.439405,0.0131794,0.491155,0.226744,0.825037,0.782569,0.210199,0.661503,0.024152,0.118271,0.419661,0.800069,0.510077,0.998792,0.339223,0.308275,0.904927,0.666867,0.539101,0.393948,0.087069,0.340066,0.777923,0.185959,0.316557,0.136159,0.660904,0.47301,0.582,0.741589,0.728681,0.412248,0.261603,0.151757,0.721294,0.153585,0.601943,0.145832,0.991508,0.572869,0.934752,0.7335,0.632352,0.54744,0.0920735,0.864309,0.845605,0.840592,0.942375,0.299047,0.925654,0.472912,0.71274,0.716386,0.926006,0.528358,0.320143,0.741509,0.542894,0.685997,0.217279,0.0285163,0.561961,0.211002,0.853206,0.449434,0.820112,0.476533,0.582114,0.290407,0.0524198,0.708075,0.146848,0.288465,0.702138,0.512615,0.688846,0.806508,0.104196,0.167664,0.597316,0.847029,0.0223936,0.332089,0.323461,0.191635,0.0667098,0.711208,0.73336,0.249009,0.84735,0.931119,0.613194,0.553176,0.176162,0.694772,0.0137124,0.968305,0.439809,0.677038,0.111714,0.722376,0.134838,0.418435,0.112252,0.211531,0.626399,0.328101,0.71287,0.641986,0.778086,0.134122,0.444727,0.911438,0.457798,0.281176,0.00212985,0.551836,0.0613812,0.381013,0.156971,0.668243,0.192855,0.619168,0.249295,0.916287,0.807567,0.669431,0.95843,0.807014,0.875571,0.933511,0.505922,0.806049,0.0154557,0.680019,0.681013,0.0470133,0.734798,0.581668,0.555994,0.132193,0.0518538,0.0330025,0.581564,0.550214,0.787202,0.639868,0.371437,0.633394,0.853627,0.583402,0.184519,0.0361152,0.633792,0.33415,0.428165,0.853543,0.0561099,0.468061,0.283257,0.458735,0.545107,0.897767,0.627084,0.997091,0.00550407,0.83376,0.614817,0.174064,0.311892,0.700777,0.0348467,0.642311,0.939289,0.142567,0.953568,0.307339,0.455047,0.0977795,0.300856,0.162797,0.0121704,0.196608,0.574512,0.312274,0.775183,0.769075,0.659228,0.843141,0.550978,0.427594,0.246024,0.237017,0.118714,0.198586,0.646754,0.794727,0.967442,0.723552,0.789759,0.692977,0.955189,0.19694,0.840447,0.0303221,0.230998,0.328407,0.517894,0.665174,0.17892,0.780842,0.534418,0.117427,0.722155,0.169479,0.609774,0.810486,0.723087,0.519552,0.831558,0.130706,0.294936,0.83201,0.989218,0.719816,0.958657,0.827672,0.164692,0.92807,0.751896,0.159398,0.773677,0.53078,0.757306,0.0370048,0.950208,0.769088,0.0617251,0.71979,0.103454,0.646551,0.511207,0.077662,0.503736,0.435307,0.724945,0.0314446,0.122772,0.622089,0.480878,0.796116,0.898672,0.593397,0.810277,0.438354,0.713392,0.70562,0.888064,0.902115,0.515367,0.855336,0.643877,0.457861,0.960621,0.623934,0.400762,0.524042,0.939738,0.545844,0.971987,0.252073,0.744673,0.680337,0.655023,0.185837,0.262887,0.0324986,0.995693,0.7659,0.295546,0.0522932,0.0220937,0.123681,0.809129,0.747703,0.705145,0.728401,0.387065,0.653085,0.596024,0.116249,0.674933,0.594454,0.840394,0.710611,0.551763,0.896838,0.657208,0.615561,0.95335,0.0398966,0.810328,0.559405,0.554096,0.930167,0.0454488,0.261306,0.875142,0.506208,0.953547,0.418312,0.457367,0.896177,0.708456,0.261881,0.0958188,0.639132,0.62018,0.175364,0.587893,0.57561,0.513194,0.350599,0.450036,0.181539,0.78421,0.49827,0.297117,0.0766542,0.277601,0.340977,0.892625,0.26785,0.215599,0.20605,0.911551,0.749251,0.475375,0.363802,0.43608,0.608318,0.351886,0.96705,0.440695,0.902219,0.819992,0.688207,0.213888,0.279268,0.585673,0.709415,0.898443,0.564777,0.0839862,0.0621181,0.0926864,0.581833,0.372998,0.344627,0.581436,0.0385838,0.505195,0.925853,0.899978,0.064946,0.191227,0.1217,0.43344,0.593744,0.189143,0.175016,0.420807,0.682147,0.188113,0.188479,0.139801,0.130396,0.483131,0.179608,0.883754,0.150512,0.951832,0.249064,0.13209,0.632785,0.578092,0.672185,0.159633,0.659523,0.527373,0.514153,0.985237,0.700745,0.895454,0.498273,0.0189226,0.0384474,0.81329,0.12756,0.0969917,0.758081,0.880875,0.490031,0.272077,0.825297,0.745339,0.192196,0.742422,0.245085,0.198129,0.369236,0.254184,0.904253,0.0806924,0.856764,0.830637,0.368885,0.933142,0.875396,0.413656,0.212429,0.64545,0.97278,0.327629,0.204448,0.653464,0.738802,0.894675,0.950329,0.523136,0.783618,0.167121,0.819426,0.638548,0.301065,0.194468,0.960183,0.122917,0.185964,0.333963,0.935868,0.455597,0.698935,0.553282,0.850132,0.119725,0.888303,0.651831,0.619533,0.245915,0.0512397,0.778389,0.912781,0.00477743,0.167956,0.583364,0.438977,0.0914323,0.0632349,0.16731,0.21937,0.5938,0.983859,0.406357,0.903565,0.210184,0.0690748,0.342028,0.19454,0.553959,0.172607,0.867887,0.601965,0.311928,0.208926,0.909835,0.641038,0.536972,0.515287,0.552382,0.270309,0.0786137,0.96543,0.558035,0.480126,0.717019,0.338943,0.0795619,0.408837,0.758876,0.200837,0.569315,0.317111,0.916667,0.477066,0.659839,0.377494,0.0534672,0.432341,0.958101,0.632939,0.2534,0.617843,0.734195,0.845203,0.356815,0.857814,0.980674,0.803779,0.925805,0.0972183,0.944016,0.674448,0.808212,0.0454952,0.978644,0.476395,0.084412,0.109152,0.13344,0.150548,0.31531,0.628496,0.653357,0.0877687,0.838477,0.842344,0.228539,0.605736,0.0713908,0.541928,0.354528,0.860595,0.325268,0.629911,0.95521,0.77029,0.364795,0.257661,0.770542,0.82791,0.363347,0.951511,0.689675,0.125529,0.85719,0.495882,0.0629434,0.570464,0.505469,0.222524,0.436812,0.503196,0.613512,0.749499,0.334166,0.447401,0.184754,0.339508,0.465865,0.162037,0.903718,0.880444,0.253127,0.850209,0.89945,0.380056,0.59019,0.292683,0.445142,0.124129,0.37675,0.116432,0.424542,0.689097,0.753355,0.397284,0.813349,0.919042,0.825655,0.847082,0.467551,0.374157,0.212657,0.808287,0.510849,0.251633,0.0196646,0.391005,0.474383,0.887197,0.582371,0.554897,0.507612,0.643009,0.493747,0.0159582,0.914714,0.0632088,0.617624,0.707665,0.402003,0.449539,0.537164,0.602459,0.298945,0.509196,0.768473,0.332855,0.315798,0.107369,0.68724,0.933448,0.15042,0.279115,0.24295,0.424833,0.0528873,0.205017,0.128151,0.659592,0.846526,0.736797,0.555093,0.263115,0.557123,0.750707,0.482592,0.489792,0.190701,0.72123,0.970927,0.57381,0.965491,0.225242,0.744684,0.477896,0.318495,0.705833,0.726173,0.0917339,0.209591,0.950459,0.0285177,0.468102,0.3392,0.039736,0.356538,0.541407,0.820103,0.388115,0.0795577,0.292871,0.135133,0.731258,0.643988,0.616771,0.278503,0.481191,0.107084,0.835492,0.923006,0.924997,0.843538,0.579642,0.150309,0.271853,0.157264,0.46204,0.420439,0.444247,0.875954,0.818259,0.466001,0.14661,0.82421,0.256123,0.859193,0.872735,0.113282,0.304594,0.989372,0.975653,0.876047,0.0091989,0.913618,0.0255501,0.42011,0.63607,0.982438,0.21493,0.191432,0.0681172,0.0852344,0.437273,0.628573,0.419319,0.524837,0.0293568,0.479153,0.106761,0.844187,0.475029,0.314828,0.825714,0.485135,0.314939,0.939694,0.738277,0.955497,0.545734,0.693368,0.537932,0.0188293,0.344784,0.0182283,0.366464,0.067477,0.0405336,0.872632,0.315466,0.783008,0.797148,0.937741,0.0449713,0.887218,0.711926,0.144199,0.608728,0.131674,0.835945,0.92366,0.217793,0.0737302,0.277228,0.256815,0.616693,0.441105,0.276151,0.625193,0.572164,0.0922734,0.471862,0.922813,0.947922,0.195152,0.668113,0.501201,0.126285,0.240389,0.345997,0.652312,0.984699,0.951838,0.82049,0.947985,0.841019,0.551594,0.568982,0.142272,0.83151,0.121652,0.361521,0.0438278,0.319406,0.32027,0.246441,0.756959,0.293083,0.584694,0.769499,0.50286,0.473618,0.286399,0.759845,0.489986,0.590905,0.489284,0.116936,0.802289,0.329608,0.36906,0.0925672,0.639236,0.170126,0.517383,0.0529155,0.633877,0.559864,0.196606,0.0849241,0.314471,0.589096,0.665533,0.631115,0.914178,0.951924,0.520402,0.909454,0.277139,0.0342659,0.212548,0.07491,0.318144,0.728309,0.893444,0.662648,0.962244,0.334278,0.586654,0.532077,0.891889,0.667107,0.452463,0.664328,0.151421,0.223531,0.897822,0.160765,0.514173,0.323548,0.523445,0.8611,0.861073,0.172758,0.233866,0.62813,0.595847,0.49762,0.737987,0.981684,0.310621,0.680804,0.703341,|0.363128,0.0660411,0.9735,0.481269,0.702714,0.710107,0.806248,0.207385,0.241105,0.438993,0.596077,0.33936,0.211925,0.407317,0.121254,0.754317,0.966077,0.583031,0.299716,0.733998,0.434021,0.916586,0.696804,0.94267,0.265598,0.471705,0.0485714,0.798639,0.0963317,0.373767,0.442347,0.500699,0.138324,0.651906,0.765646,0.0548623,0.781128,0.244331,0.69309,0.351533,0.447561,0.353113,0.367674,0.743196,0.03941,0.772357,0.0836921,0.688068,0.29775,0.578469,0.499083,0.304839,0.456658,0.668279,0.0969578,0.904229,0.311465,0.75051,0.158189,0.657692,0.640129,0.561617,0.326255,0.755025,0.347933,0.956476,0.930037,0.592679,0.619058,0.761344,0.545861,0.710948,0.324646,0.00471777,0.124744,0.0327121,0.142859,0.0620869,0.444621,0.622585,0.502804,0.29912,0.120201,0.331491,0.867266,0.476174,0.327765,0.878101,0.47823,0.340501,0.944325,0.947494,0.895746,0.185307,0.430726,0.939413,0.698771,0.599548,0.991553,0.223539,0.974683,0.358476,0.124385,0.198887,0.449686,0.589325,0.464182,0.00143594,0.535232,0.702385,0.0394566,0.217255,0.744694,0.364136,0.727935,0.434534,0.270791,0.493488,0.895217,0.898828,0.667463,0.386671,0.305438,0.59011,0.849498,0.25282,0.400149,0.0754792,0.666866,0.219636,0.544959,0.215559,0.308457,0.335682,0.862694,0.31209,0.643793,0.813297,0.851298,0.409707,0.718846,0.44445,0.0118482,0.304851,0.778898,0.214931,0.667318,0.600973,0.493652,0.707916,0.177922,0.0243662,0.603638,0.765301,0.15952,0.932442,0.966206,0.788042,0.688091,0.928076,0.783642,0.776835,0.25001,0.533379,0.119274,0.768304,0.700332,0.257266,0.449433,0.432693,0.0201897,0.735273,0.310225,0.28403,0.930061,0.57741,0.993835,0.208277,0.527817,0.29664,0.296162,0.41828,0.771071,0.78973,0.0897722,0.207208,0.306019,0.205601,0.626622,0.314425,0.350349,0.796613,0.390888,0.0227381,0.384506,0.313221,0.94377,0.226789,0.735535,0.181494,0.27683,0.623378,0.113596,0.954671,0.432818,0.0320554,0.0394019,0.429148,0.170358,0.565885,0.334174,0.636037,0.122404,0.625414,0.0228839,0.0935762,0.578511,0.559635,0.0719544,0.532185,0.147795,0.11352,0.60519,0.680489,0.810676,0.0972502,0.948427,0.259585,0.499051,0.877568,0.26132,0.343914,0.216371,0.808029,0.557389,0.200484,0.909953,0.841922,0.126242,0.801133,0.15174,0.220441,0.686632,0.0212858,0.693627,0.102181,0.186944,0.14097,0.435585,0.9458,0.162833,0.0627913,0.310149,0.238759,0.436081,0.575281,0.505581,0.411244,0.386152,0.636372,0.504018,0.723287,0.692871,0.950644,0.63433,0.966547,0.664454,0.355139,0.688975,0.538513,0.0781819,0.226272,0.642235,0.0218915,0.122943,0.513853,0.991514,0.000811875,0.314202,0.668587,0.540568,0.0200068,0.37393,0.957964,0.665869,0.685392,0.293094,0.583777,0.014361,0.860187,0.315232,0.289185,0.450798,0.675263,0.406478,0.226239,0.863437,0.989236,0.973341,0.186061,0.268876,0.616617,0.481205,0.667462,0.353202,0.927191,0.0309595,0.226941,0.0386629,0.780669,0.130175,0.664021,0.132891,0.660509,0.822037,0.230869,0.175493,0.436264,0.2443,0.700581,0.68228,0.640142,0.678085,0.425306,0.785925,0.212398,0.0575576,0.783822,0.341703,0.561991,0.924628,0.154961,0.0676029,0.857461,0.491733,0.823631,0.770772,0.0452889,0.370245,0.326979,0.644854,0.537314,0.0914891,0.414548,0.336989,0.0123682,0.826173,0.86893,0.807066,0.445298,0.865841,0.592081,0.080774,0.275334,0.419438,0.52461,0.529535,0.814416,0.280749,0.95753,0.470897,0.798748,0.924234,0.0680491,0.322787,0.826901,0.576355,0.726203,0.33957,0.733173,0.378429,0.943972,0.762038,0.82102,0.889229,0.934539,0.182653,0.253339,0.630078,0.850312,0.655631,0.8476,0.409854,0.992021,0.347981,0.0490174,0.132938,0.170349,0.888941,0.463595,0.291376,0.723957,0.718633,0.0995842,0.899983,0.233318,0.329748,0.938558,0.460955,0.794387,0.0911899,0.139368,0.122516,0.041086,0.382593,0.459344,0.577892,0.935433,0.24807,0.28703,0.696683,0.766595,0.0511185,0.212718,0.23458,0.975763,0.275616,0.279823,0.366718,0.999848,0.587689,0.133266,0.454458,0.174166,0.707645,0.191247,0.0164505,0.486593,0.520707,0.372482,0.0815002,0.83951,0.424173,0.378389,0.174584,0.238862,0.397451,0.402935,0.841249,0.193674,0.405909,0.162732,0.13109,0.250146,0.501928,0.907577,0.660337,0.545933,0.930398,0.293009,0.125906,0.451055,0.61605,0.312885,0.242981,0.0498316,0.587322,0.261982,0.601949,0.232748,0.903929,0.0925054,0.120176,0.202783,0.0349724,0.302284,0.539786,0.309919,0.445557,0.404483,0.881912,0.442913,0.726554,0.422668,0.417422,0.665553,0.914992,0.652853,0.0612278,0.964916,0.240233,0.184992,0.111656,0.80865,0.263025,0.929642,0.731976,0.0871947,0.107283,0.93342,0.277197,0.284619,0.208974,0.146888,0.535343,0.0260341,0.96414,0.436425,0.379578,0.274662,0.791845,0.0779019,0.525169,0.136214,0.271557,0.0716533,0.720445,0.607459,0.383884,0.00860745,0.66027,0.886219,0.415013,0.77765,0.581454,0.94905,0.155978,0.162301,0.0771987,0.484357,0.231773,0.482647,0.393817,0.204793,0.426624,0.821768,0.827905,0.129702,0.52525,0.0450508,0.210965,0.687144,0.352588,0.377178,0.950124,0.943486,0.357088,0.163513,0.556429,0.749703,0.142016,0.375216,0.00130635,0.555535,0.152373,0.729441,0.130451,0.280786,0.84706,0.626952,0.0925043,0.245127,0.608493,0.418884,0.13989,0.253857,0.272261,0.210718,0.917436,0.16911,0.89303,0.0953221,0.0198854,0.800464,0.198226,0.493284,0.147723,0.531664,0.764361,0.46288,0.513192,0.531409,0.849438,0.433088,0.00170881,0.224043,0.808286,0.926542,0.372643,0.231753,0.843165,0.391732,0.207622,0.579827,0.904533,0.892294,0.019492,0.574369,0.52407,0.617841,0.223434,0.398316,0.0372401,0.672585,0.947224,0.421014,0.127421,0.892668,0.280463,0.935124,0.351596,0.897845,0.160724,0.928075,0.204443,0.289522,0.770098,0.370073,0.0521988,0.810184,0.624134,0.987638,0.96626,0.025443,0.611432,0.513554,0.105321,0.250585,0.738472,0.14693,0.799609,0.716918,0.724449,0.500171,0.63621,0.714318,0.0856391,0.217972,0.511237,0.668043,0.480194,0.677491,0.300772,0.11066,0.927254,0.215715,0.659074,0.687468,0.390025,0.414173,0.60413,0.192245,0.513074,0.465105,0.247495,0.0173786,0.082724,0.244152,0.907738,0.0682462,0.970709,0.826822,0.287724,0.958652,0.28606,0.778233,0.30053,0.280869,0.23095,0.342689,0.534406,0.238141,0.851851,0.369596,0.114168,0.941313,0.954466,0.961568,0.0871633,0.194883,0.329061,0.0514135,0.939085,0.239809,0.349861,0.164838,0.277654,0.0178319,0.720158,0.0395243,0.427545,0.0197142,0.91958,0.244316,0.849674,0.346384,0.254321,0.81296,0.568284,0.656179,0.848997,0.7387,0.871601,0.125762,0.201829,0.585327,0.234855,0.158041,0.824507,0.465834,0.127204,0.160643,0.670082,0.165196,0.599517,0.112201,0.0598007,0.703641,0.769096,0.735572,0.0213316,0.227481,0.296135,0.466913,0.640083,0.310521,0.431683,0.14557,0.481168,0.953322,0.285071,0.800397,0.401282,0.95943,0.871091,0.162458,0.16474,0.753148,0.558906,0.92934,0.924235,0.214908,0.810304,0.427925,0.7857,0.377938,0.340777,0.569586,0.140188,0.887522,0.0929314,0.367292,0.0900788,0.121697,0.319295,0.634641,0.627093,0.844013,0.992397,0.00766891,0.435369,0.899026,0.119592,0.62925,0.32294,0.667584,0.057557,0.0596596,0.516117,0.131341,0.67194,0.431049,0.554143,0.842732,0.452966,0.690662,0.152978,0.449925,0.0639251,0.900752,0.328404,0.748063,0.411051,0.332873,0.952386,0.488,0.144278,0.339399,0.199744,0.385248,0.0490997,0.342377,0.989238,0.52974,0.310162,0.00936031,0.158717,0.834952,0.178378,0.409369,0.980918,0.895493,0.200537,0.257202,0.405875,0.183091,0.931234,0.671534,0.314588,0.159229,0.0421902,0.30736,0.0706694,0.277407,0.924659,0.100066,0.394482,0.5118,0.163499,0.96665,0.258614,0.0901724,0.325912,0.0882826,0.525172,0.894985,0.418533,0.330515,0.980689,0.139555,0.15951,0.979804,0.720004,0.726355,0.5991,0.532466,0.599501,0.785188,0.163362,0.613238,0.965325,0.643212,0.444473,0.414019,0.15039,0.0436444,0.765241,0.730483,0.799066,0.409821,0.0799714,0.478878,0.355195,0.26843,0.831303,0.444796,0.738715,0.106967,0.0200332,0.991737,0.846363,0.109151,0.289311,0.386661,0.868162,0.340219,0.644567,0.255717,0.638503,0.0847546,0.400445,0.886079,0.143875,0.139839,0.411281,0.330607,0.812409,0.50863,0.42441,0.7481,0.222333,0.307608,0.612435,0.0278242,0.0385929,0.283135,0.727174,0.324902,0.127042,0.163089,0.918472,0.168956,0.7569,0.29511,0.296364,0.0020687,0.0433144,0.543301,0.363285,0.704594,0.642717,0.23003,0.640833,0.730973,0.322933,0.918997,0.478453,0.112197,0.109848,0.525937,0.716951,0.565198,0.887815,0.3516,0.32979,0.372679,0.756874,0.111857,0.492012,0.664789,0.177675,0.0921206,0.530724,0.0724338,0.526733,0.137312,0.327028,0.115154,0.0161309,0.882251,0.880853,0.379062,0.244368,0.747893,0.409616,0.278298,0.157053,0.0132524,0.628804,0.322749,0.564627,0.985271,0.974755,0.1262,0.926728,0.74103,0.36922,0.97674,0.536614,0.382129,0.902737,0.576087,0.605532,0.52082,0.326401,0.999414,0.642643,0.428999,0.0612552,0.634395,0.458069,0.108367,0.0865171,0.822023,0.170717,0.522156,0.94307,0.695479,0.547443,0.52243,0.401473,0.203514,0.675117,0.0683302,0.185497,0.0765413,0.63742,0.172918,0.773775,0.247814,0.409185,0.736841,0.150184,0.115466,0.49958,0.566748,0.0304122,0.124059,0.300623,0.252789,0.000741422,0.207036,0.615614,0.961596,0.732328,0.303958,0.896823,0.549085,0.534824,0.422401,0.350159,0.0356534,0.937209,0.17005,0.874497,0.71393,0.627803,0.222602,0.886961,0.204107,|0.0997827,0.958059,0.685837,0.324458,0.354952,0.736826,0.0491084,0.941446,0.8683,0.35169,0.207292,0.093523,0.0724299,0.0520897,0.189772,0.137528,0.779464,0.201823,0.926399,0.335091,0.0697913,0.0766364,0.735601,0.790999,0.965138,0.517049,0.0256845,0.702538,0.0956123,0.242263,0.712462,0.131427,0.0427712,0.572466,0.277421,0.192414,0.553848,0.241542,0.0304503,0.726489,0.0513046,0.9183,0.611918,0.73426,0.845354,0.499724,0.505939,0.599919,0.890118,0.823392,0.404884,0.892068,0.883884,0.859226,0.233085,0.320084,0.321826,0.520161,0.38454,0.981691,0.396712,0.0719753,0.0213566,0.107,0.534027,0.376608,0.480951,0.993656,0.0523111,0.500869,0.39145,0.466619,0.642415,0.689813,0.394502,0.95229,0.396828,0.57334,0.612767,0.425013,0.154465,0.388284,0.0236733,0.639451,0.397014,0.856472,0.917708,0.55541,0.63585,0.0551565,0.899995,0.553785,0.617279,0.658121,0.579322,0.343834,0.731761,0.823823,0.412199,0.175954,0.0340078,0.165102,0.289375,0.611446,0.909699,0.241428,0.00273913,0.532552,0.314237,0.302423,0.744036,0.588316,0.678054,0.870711,0.561322,0.0212936,0.563397,0.758379,0.571404,0.666322,0.43924,0.728992,0.134971,0.690205,0.788182,0.633221,0.26759,0.878159,0.821219,0.507323,0.670047,0.398807,0.427917,0.85643,0.692436,0.634814,0.851886,0.336792,0.521819,0.469702,0.539813,0.42644,0.484343,0.0167688,0.687841,0.372435,0.827551,0.889754,0.688953,0.451877,0.532186,0.401201,0.525497,0.309042,0.730048,0.835393,0.886831,0.126772,0.0316032,0.612537,0.263783,0.987099,0.800997,0.095745,0.661527,0.754888,0.58689,0.523048,0.65684,0.336159,0.319155,0.875724,0.90988,0.333047,0.427773,0.977562,0.142767,0.890997,0.172792,0.227421,0.54481,0.749624,0.101709,0.984005,0.737716,0.928065,0.396656,0.840223,0.240852,0.942793,0.563219,0.930572,0.56683,0.018829,0.222672,0.0479366,0.210318,0.108846,0.726067,0.295856,0.793036,0.866593,0.34319,0.575425,0.871101,0.245745,0.332765,0.241911,0.612912,0.651812,0.269872,0.900867,0.860023,0.0855967,0.990756,0.356544,0.456517,0.788411,0.87597,0.542608,0.444504,0.864572,0.663808,0.171939,0.0899419,0.717679,0.0471292,0.25283,0.669638,0.0760401,0.969168,0.809787,0.619087,0.751659,0.448386,0.672356,0.750393,0.785042,0.573655,0.136561,0.626332,0.563205,0.67434,0.625719,0.39464,0.628031,0.294037,0.843807,0.452166,0.693731,0.0136833,0.106941,0.337359,0.993475,0.0863501,0.0238488,0.44281,0.257655,0.320675,0.248287,0.019156,0.737748,0.146609,0.304824,0.638309,0.853087,0.0712993,0.505944,0.638216,0.703974,0.877426,0.488223,0.903332,0.961449,0.545177,0.930668,0.587738,0.629407,0.0697917,0.522213,0.18795,0.332401,0.51353,0.845551,0.0592886,0.511057,0.0299287,0.388195,0.114026,0.0120688,0.786698,0.972994,0.150774,0.229305,0.477603,0.705937,0.222626,0.207099,0.137417,0.00210196,0.530985,0.45893,0.836511,0.46338,0.104373,0.724701,0.764365,0.127128,0.653296,0.57803,0.652386,0.113809,0.404774,0.636765,0.731077,0.338094,0.876068,0.573089,0.825532,0.550623,0.836622,0.957845,0.265746,0.338937,0.809132,0.770397,0.433783,0.27727,0.673017,0.0481303,0.500955,0.636458,0.194995,0.101841,0.442548,0.82173,0.993732,0.400921,0.450566,0.800988,0.726758,0.748806,0.127678,0.202255,0.725197,0.702919,0.736666,0.473213,0.79177,0.919402,0.203927,0.777153,0.236929,0.332643,0.447158,0.629673,0.601783,0.830801,0.368983,0.268265,0.76844,0.489414,0.443827,0.381119,0.893427,0.972076,0.365557,0.69346,0.598216,0.682387,0.766313,0.733743,0.903834,0.260435,0.00644332,0.18985,0.610289,0.471437,0.0553139,0.709282,0.79405,0.341364,0.334664,0.770564,0.147759,0.556584,0.438646,0.585799,0.195404,0.470249,0.1482,0.430701,0.604407,0.871267,0.804331,0.60863,0.947677,0.465824,0.0188015,0.257809,0.154109,0.727445,0.188571,0.584117,0.345436,0.694161,0.173887,0.0861189,0.244191,0.733811,0.33566,0.629038,0.864726,0.575063,0.397948,0.0902689,0.128849,0.574034,0.494544,0.70424,0.0924241,0.51332,0.361336,0.29022,0.477296,0.243644,0.479754,0.424473,0.935254,0.879795,0.44862,0.0915564,0.0781848,0.295398,0.81883,0.261987,0.45611,0.305341,0.544377,0.0599641,0.544256,0.998845,0.200603,0.758047,0.163481,0.460709,0.352977,0.727478,0.0506316,0.0970352,0.277243,0.852479,0.378642,0.505263,0.177264,0.260718,0.71391,0.0169645,0.573605,0.728112,0.413538,0.0955235,0.0385826,0.354223,0.213929,0.205577,0.908612,0.00568849,0.321483,0.88277,0.399819,0.785616,0.0395288,0.521501,0.70292,0.525182,0.88673,0.47076,0.246916,0.580247,0.20121,0.143302,0.206993,0.24702,0.0102057,0.7519,0.935552,0.120623,0.498978,0.381942,0.94323,0.323675,0.187998,0.140268,0.333089,0.806789,0.359465,0.237529,0.0255902,0.523243,0.609986,0.0286462,0.168137,0.717406,0.876951,0.453465,0.562261,0.812944,0.976244,0.0280942,0.501615,0.893982,0.591378,0.38295,0.496918,0.286856,0.0497472,0.201648,0.56697,0.102293,0.0634308,0.572501,0.509571,0.950077,0.724138,0.565032,0.137553,0.494661,0.576575,0.485316,0.247587,0.00921339,0.478444,0.823759,0.809975,0.616583,0.338592,0.090151,0.875982,0.204576,0.704453,0.206796,0.914813,0.543518,0.840818,0.531104,0.899784,0.409903,0.1176,0.197346,0.72091,0.807173,0.738258,0.164242,0.45018,0.219209,0.781981,0.0100528,0.217965,0.384625,0.0826914,0.700558,0.0440749,0.652231,0.548621,0.637165,0.375259,0.0199338,0.752463,0.811126,0.104053,0.932202,0.676611,0.182923,0.748876,0.0474721,0.0363532,0.319025,0.802342,0.926517,0.535036,0.722454,0.691914,0.949087,0.149585,0.772556,0.96866,0.64565,0.245704,0.155957,0.390538,0.303447,0.908079,0.0363525,0.0435053,0.0427979,0.426379,0.172182,0.496366,0.912485,0.729908,0.173106,0.672099,0.0972785,0.297979,0.48063,0.197859,0.797572,0.873147,0.684891,0.931153,0.420286,0.619016,0.374906,0.543696,0.266735,0.354612,0.495398,0.582637,0.34419,0.51788,0.342229,0.467691,0.209082,0.18805,0.516631,0.168677,0.277898,0.80793,0.160375,0.289286,0.115262,0.245274,0.751256,0.598762,0.188498,0.815939,0.915857,0.570294,0.209876,0.686713,0.527968,0.820237,0.414014,0.58675,0.60334,0.233389,0.309816,0.20728,0.220367,0.921156,0.00742704,0.760831,0.0969763,0.799053,0.380332,0.417837,0.0116059,0.853911,0.606116,0.922404,0.152389,0.315233,0.129052,0.135584,0.517369,0.740796,0.159323,0.0761203,0.133669,0.0315309,0.877834,0.052119,0.711038,0.696035,0.279683,0.027804,0.390531,0.762626,0.858136,0.600675,0.361122,0.0151543,0.984991,0.0934368,0.210811,0.0201474,0.441831,0.459609,0.17046,0.323696,0.157127,0.770453,0.301631,0.783254,0.402845,0.232,0.914028,0.407751,0.768021,0.183468,0.333982,0.457479,0.261319,0.321695,0.567046,0.705655,0.168765,0.0660452,0.0386961,0.484339,0.246999,0.123135,0.0327622,0.961972,0.78112,0.0827575,0.300053,0.340134,0.0902735,0.36751,0.569518,0.0739848,0.628224,0.433091,0.159211,0.187213,0.475622,0.664202,0.299728,0.301582,0.852272,0.207096,0.402459,0.696338,0.966799,0.390184,0.661395,0.683258,0.590877,0.857166,0.137686,0.114999,0.346922,0.645785,0.916566,0.898158,0.699594,0.417587,0.257013,0.00630462,0.667854,0.824487,0.403377,0.695398,0.239007,0.0681286,0.881769,0.0420271,0.329195,0.623834,0.468413,0.32422,0.0530129,0.000485778,0.591263,0.0186658,0.496445,0.767209,0.405075,0.377677,0.568795,0.104216,0.948865,0.971249,0.259168,0.255536,0.977145,0.971614,0.454425,0.967273,0.117833,0.192205,0.905928,0.35452,0.520894,0.469819,0.241119,0.859103,0.865429,0.223697,0.549684,0.1628,0.657526,0.43732,0.302279,0.520278,0.0088011,0.268194,0.286447,0.583646,0.861064,0.388492,0.321284,0.352256,0.683553,0.600911,0.362182,0.742002,0.858834,0.536473,0.0856255,0.633403,0.220652,0.272154,0.885791,0.388808,0.916552,0.374096,0.0163665,0.200379,0.241096,0.261471,0.433017,0.70612,0.347612,0.0118337,0.916039,0.878841,0.384485,0.654338,0.602108,0.51324,0.195794,0.0556613,0.826689,0.480616,0.958952,0.110953,0.996786,0.471367,0.701814,0.637358,0.534665,0.148286,0.862741,0.0183253,0.9338,0.51571,0.513879,0.146707,0.782028,0.61879,0.668064,0.864717,0.0911478,0.250176,0.0165845,0.315915,0.426289,0.770598,0.910783,0.803309,0.84031,0.207249,0.0744772,0.749347,0.926143,0.757235,0.805642,0.167263,0.596005,0.879218,0.385005,0.983447,0.0917658,0.620477,0.507227,0.187041,0.292606,0.63753,0.425847,0.364707,0.261252,0.873476,0.600655,0.850826,0.908787,0.558905,0.287791,0.627647,0.458077,0.347564,0.92591,0.257388,0.451529,0.372737,0.773742,0.947286,0.368443,0.405258,0.357213,0.334097,0.86632,0.762822,0.63115,0.364593,0.742881,0.520183,0.625942,0.349014,0.598032,0.133818,0.849022,0.690266,0.490778,0.98329,0.661446,0.427446,0.426927,0.41534,0.347765,0.363956,0.109975,0.228494,0.351916,0.151828,0.761409,0.217181,0.619435,0.849121,0.457207,0.203656,0.68824,0.181088,0.876583,0.763426,0.539781,0.926031,0.700867,0.350253,0.974462,0.322177,0.435266,0.178151,0.200083,0.403501,0.199118,0.119614,0.719101,0.740977,0.37439,0.345591,0.840104,0.661309,0.0713706,0.360495,0.187165,0.291555,0.540734,0.0302917,0.806903,0.0484219,0.256458,0.6092,0.588855,0.428929,0.732382,0.349858,0.271709,0.829908,0.752187,0.71637,0.861198,0.326959,0.422233,0.910177,0.0149646,0.368418,0.693615,0.416001,0.26226,0.847767,0.0832095,0.365905,0.583684,0.340294,0.0172652,0.841204,0.979432,0.768698,0.13107,0.987744,0.313635,0.289267,0.507423,0.238394,0.324284,0.457644,0.857093,|0.505526,0.399784,0.758731,0.200759,0.235439,0.454367,0.941377,0.495861,0.507028,0.619502,0.580682,0.747315,0.298609,0.566381,0.998649,0.190316,0.365114,0.834664,0.0318714,0.239863,0.974985,0.523942,0.454324,0.204358,0.275865,0.68573,0.612799,0.888724,0.114887,0.314032,0.0669737,0.00757849,0.714427,0.0808656,0.705964,0.349677,0.00510079,0.519145,0.0575762,0.912587,0.578573,0.397857,0.910681,0.617193,0.290929,0.238872,0.816068,0.166136,0.904409,0.377103,0.891733,0.0734251,0.0448629,0.313095,0.17192,0.644064,0.177823,0.00438422,0.668025,0.40668,0.589105,0.214103,0.203387,0.524047,0.354642,0.68199,0.916408,0.278183,0.556764,0.707078,0.842113,0.957431,0.716344,0.298442,0.938594,0.142627,0.712153,0.104076,0.0792816,0.310758,0.243375,0.862072,0.939615,0.361513,0.475355,0.933759,0.297234,0.883358,0.958151,0.9952,0.820878,0.827066,0.497676,0.444745,0.405898,0.323795,0.400867,0.0376958,0.770728,0.617399,0.866668,0.422023,0.31118,0.758251,0.740296,0.357567,0.0435431,0.908763,0.0436095,0.584111,0.209941,0.920197,0.719156,0.186329,0.841211,0.297103,0.0489383,0.88468,0.656877,0.623743,0.101047,0.799987,0.311605,0.499199,0.93964,0.296433,0.943219,0.562377,0.335333,0.961221,0.0768868,0.408485,0.167176,0.672656,0.836597,0.13808,0.172847,0.541083,0.339296,0.186824,0.277867,0.763893,0.567741,0.906971,0.258842,0.72657,0.718074,0.822885,0.613899,0.0240393,0.38383,0.503455,0.498675,0.827546,0.278517,0.772009,0.176531,0.200493,0.756904,0.653858,0.0713748,0.835612,0.359401,0.413083,0.988269,0.822407,0.759794,0.0640734,0.283775,0.994895,0.194638,0.963116,0.140241,0.594306,0.205654,0.0498192,0.556913,0.868754,0.195481,0.682273,0.420683,0.100044,0.77969,0.147265,0.789006,0.852049,0.972814,0.907553,0.670549,0.543163,0.131153,0.968641,0.716801,0.921669,0.614662,0.164041,0.363682,0.685046,0.461996,0.308735,0.474675,0.467636,0.485588,0.556928,0.913096,0.584671,0.231977,0.0565006,0.21411,0.243052,0.385432,0.793013,0.56018,0.210741,0.351475,0.966439,0.820565,0.333192,0.122954,0.329763,0.544186,0.17495,0.416366,0.665184,0.425291,0.55085,0.830605,0.925857,0.871375,0.805197,0.354429,0.946957,0.72124,0.923018,0.0869155,0.783711,0.898875,0.938262,0.898656,0.902213,0.994963,0.719308,0.76895,0.773225,0.443002,0.673621,0.402667,0.322033,0.985621,0.556321,0.382437,0.798056,0.25935,0.646217,0.318606,0.925341,0.503527,0.464495,0.615634,0.508917,0.669457,0.612972,0.54218,0.190968,0.367967,0.423099,0.800135,0.336558,0.200873,0.0761237,0.381691,0.523758,0.641893,0.929777,0.851254,0.449104,0.588305,0.502414,0.728773,0.732849,0.80461,0.155365,0.541388,0.0214739,0.527799,0.0686738,0.027845,0.334719,0.0134839,0.873455,0.597839,0.219573,0.400816,0.500041,0.250932,0.352591,0.252573,0.104337,0.846856,0.553204,0.306981,0.294527,0.858948,0.607191,0.931652,0.505692,0.0464513,0.85001,0.207535,0.667018,0.0450804,0.624531,0.08726,0.687481,0.366895,0.82648,0.263387,0.428328,0.812508,0.544487,0.432565,0.15499,0.901255,0.0495763,0.319355,0.0254947,0.0489522,0.053143,0.326433,0.696962,0.397617,0.176087,0.029471,0.0683194,0.521883,0.830154,0.709071,0.194827,0.145149,0.0326324,0.833619,0.630965,0.627057,0.728116,0.575393,0.028334,0.376238,0.035632,0.787991,0.108395,0.0357342,0.0255296,0.632401,0.808124,0.748917,0.835849,0.0590861,0.806691,0.909403,0.686298,0.845414,0.122637,0.262389,0.151546,0.549968,0.129489,0.358848,0.687722,0.30245,0.80264,0.657862,0.105075,0.714773,0.382941,0.0240206,0.779638,0.518424,0.171628,0.39076,0.0242923,0.0496594,0.489884,0.9742,0.378721,0.303398,0.576762,0.777248,0.369326,0.584247,0.665303,0.256415,0.738424,0.636989,0.468775,0.167407,0.70677,0.415384,0.292065,0.561387,0.13446,0.0207459,0.567817,0.457014,0.797198,0.659561,0.286835,0.2057,0.48951,0.656013,0.328623,0.775599,0.262611,0.854243,0.195529,0.241169,0.898577,0.343169,0.915196,0.335008,0.691412,0.593557,0.0555729,0.113483,0.26936,0.861447,0.346736,0.321492,0.163423,0.954002,0.897197,0.339969,0.906976,0.519332,0.144362,0.466203,0.169843,0.641948,0.155009,0.677923,0.579796,0.96847,0.173863,0.690434,0.208043,0.894133,0.198704,0.287497,0.853292,0.589229,0.469874,0.417289,0.763564,0.0655496,0.163952,0.417565,0.949489,0.787728,0.833011,0.140834,0.816015,0.0246361,0.609895,0.677168,0.690419,0.505061,0.718289,0.0408903,0.160894,0.477425,0.0661909,0.667322,0.877951,0.906744,0.155392,0.200355,0.0566055,0.991642,0.402522,0.0837686,0.148878,0.0695391,0.857265,0.426326,0.605397,0.700296,0.549847,0.797541,0.595622,0.809097,0.71728,0.622586,0.0150425,0.593463,0.61528,0.217002,0.178522,0.599974,0.809288,0.285162,0.582344,0.183695,0.886097,0.897055,0.802235,0.645616,0.735295,0.258497,0.920592,0.7613,0.546801,0.772484,0.221881,0.0956454,0.299802,0.0907956,0.856326,0.931566,0.439164,0.535422,0.951889,0.0478161,0.616943,0.759218,0.981324,0.539061,0.233994,0.214993,0.657378,0.883044,0.370312,0.368638,0.567345,0.544024,0.732309,0.0280464,0.712255,0.44076,0.476212,0.334274,0.00132626,0.131809,0.904513,0.463692,0.228653,0.186649,0.3475,0.67249,0.759924,0.517205,0.0371574,0.998331,0.00167012,0.45339,0.377235,0.125119,0.199259,0.735592,0.410791,0.903393,0.462211,0.581481,0.014534,0.349533,0.209979,0.815774,0.171958,0.766559,0.984398,0.0183328,0.628355,0.751393,0.485616,0.58805,0.772865,0.59951,0.719747,0.512113,0.582045,0.885763,0.539528,0.0146772,0.151661,0.374065,0.306068,0.236418,0.205393,0.147368,0.460289,0.325525,0.643715,0.208457,0.136927,0.909971,0.312044,0.532795,0.671964,0.529113,0.583466,0.199819,0.552005,0.738002,0.345743,0.549476,0.718725,0.841316,0.0458663,0.00504774,0.861497,0.907239,0.241565,0.582865,0.688487,0.576765,0.352922,0.654155,0.904796,0.493213,0.23714,0.433663,0.525499,0.736963,0.396596,0.265073,0.438864,0.907918,0.39281,0.310786,0.0779939,0.619785,0.749322,0.956318,0.607781,0.953084,0.903834,0.757579,0.469999,0.581816,0.775404,0.616978,0.354096,0.344427,0.335617,0.559747,0.642028,0.731101,0.751766,0.0210797,0.968964,0.531828,0.567853,0.535737,0.898908,0.36163,0.313132,0.799586,0.20954,0.767355,0.587307,0.939914,0.0557105,0.373294,0.648759,0.801408,0.178812,0.701214,0.86712,0.0845808,0.953331,0.193801,0.776099,0.50015,0.604832,0.259375,0.652443,0.935378,0.0671317,0.478073,0.496417,0.222583,0.0247913,0.497833,0.27721,0.871836,0.724454,0.0743999,0.850255,0.573312,0.223599,0.668007,0.976565,0.0277013,0.693276,0.741691,0.194945,0.471783,0.331769,0.273705,0.523922,0.74451,0.423854,0.612312,0.111671,0.390166,0.339596,0.98512,0.437504,0.434493,0.579498,0.43674,0.975087,0.768018,0.995871,0.577813,0.708707,0.524662,0.224763,0.689072,0.370084,0.246655,0.741498,0.249903,0.578793,0.151378,0.586456,0.547462,0.00809044,0.251187,0.318681,0.800947,0.0572875,0.889918,0.624653,0.0798968,0.215384,0.763143,0.739311,0.12408,0.309486,0.125895,0.366056,0.965209,0.559395,0.75392,0.0124509,0.53101,0.940188,0.60055,0.465365,0.310009,0.451262,0.882391,0.568276,0.547788,0.787374,0.145238,0.418274,0.00766933,0.837336,0.852811,0.688159,0.836594,0.136559,0.416118,0.71385,0.825799,0.308129,0.780757,0.953895,0.359656,0.0588869,0.10141,0.154739,0.929159,0.951252,0.512042,0.177049,0.666206,0.34805,0.114886,0.28021,0.541132,0.502834,0.155689,0.862711,0.102747,0.154197,0.771874,0.422421,0.244279,0.449965,0.20208,0.418934,0.0253177,0.0177919,0.807395,0.630176,0.252688,0.263721,0.382676,0.867106,0.102057,0.356675,0.649816,0.922485,0.366196,0.822764,0.849858,0.499701,0.937993,0.286824,0.30177,0.181838,0.925061,0.704075,0.578727,0.583557,0.521822,0.666351,0.716401,0.150639,0.902327,0.562017,0.110047,0.00465739,0.131628,0.336555,0.413284,0.546716,0.558288,0.221791,0.675406,0.0284346,0.401463,0.341765,0.319457,0.284166,0.0694969,0.731211,0.30138,0.298547,0.255809,0.0112897,0.67495,0.669937,0.0788208,0.0185108,0.470847,0.586798,0.203162,0.831948,0.293814,0.0725023,0.772567,0.467367,0.591425,0.761717,0.213107,0.872649,0.464867,0.282158,0.453896,0.480561,0.95495,0.4248,0.555934,0.235444,0.623282,0.482556,0.0544552,0.949153,0.420036,0.0293937,0.971312,0.368225,0.275818,0.546341,0.812752,0.0659752,0.402635,0.505933,0.952999,0.2539,0.86988,0.854327,0.0166046,0.180143,0.35989,0.279113,0.69167,0.287299,0.207118,0.0419085,0.531088,0.0086267,0.243261,0.258474,0.289429,0.235711,0.331164,0.22804,0.680008,0.336192,0.489833,0.795111,0.145886,0.862547,0.0108385,0.139542,0.313546,0.542724,0.650472,0.889565,0.793313,0.807714,0.276429,0.0869342,0.694158,0.876495,0.592037,0.567388,0.557738,0.640841,0.783046,0.654245,0.625299,0.891098,0.698643,0.745188,0.676348,0.366123,0.0592623,0.526559,0.506792,0.770002,0.406056,0.254726,0.171926,0.17806,0.679914,0.933311,0.79959,0.404813,0.395705,0.376525,0.141507,0.220618,0.774963,0.125214,0.45652,0.402978,0.195277,0.626216,0.752872,0.9943,0.823322,0.60611,0.472231,0.798252,0.56794,0.481295,0.229071,0.324681,0.841685,0.0494352,0.13309,0.120887,0.797854,0.423501,0.991206,0.278091,0.236555,0.872278,0.03856,0.364723,0.442358,0.449712,0.376299,0.962874,0.180808,0.965887,0.328011,0.559107,0.75436,0.664565,0.448495,0.275686,0.101381,0.475802,0.552225,0.697641,0.298755,0.176628,0.504763,0.835999,0.75451,0.0965279,0.399707,0.873824,0.109984,0.936092,|0.0313861,0.0241061,0.837832,0.837382,0.800373,0.330003,0.696726,0.31487,0.825608,0.779941,0.131613,0.975695,0.34212,0.511307,0.6282,0.347335,0.766155,0.94963,0.828171,0.258755,0.570539,0.218414,0.854127,0.0645753,0.803673,0.309783,0.589644,0.162884,0.346122,0.018266,0.81487,0.61837,0.185719,0.144458,0.112256,0.741795,0.851337,0.474576,0.185621,0.0534496,0.511716,0.00750601,0.902913,0.216507,0.723851,0.0469965,0.87242,0.346779,0.815157,0.72373,0.422911,0.617013,0.734999,0.448867,0.891116,0.168583,0.906994,0.877055,0.107516,0.918659,0.801964,0.431026,0.858475,0.458681,0.535867,0.228298,0.570853,0.524115,0.911735,0.476278,0.805879,0.197463,0.875249,0.624117,0.101118,0.326441,0.312945,0.331229,0.344931,0.640546,0.185399,0.576687,0.839143,0.804279,0.454116,0.034036,0.719551,0.0191327,0.676737,0.604183,0.949911,0.787041,0.795206,0.376148,0.150195,0.482634,0.257563,0.747312,0.178769,0.432901,0.751037,0.319094,0.855669,0.834654,0.158202,0.831274,0.617833,0.191991,0.0487768,0.480166,0.480918,0.222885,0.870154,0.686187,0.707719,0.163412,0.773399,0.918711,0.579238,0.262997,0.954595,0.498311,0.693072,0.712326,0.848969,0.753367,0.0072068,0.78902,0.604353,0.552637,0.551846,0.0941949,0.852835,0.654452,0.916927,0.234737,0.156892,0.927828,0.760926,0.452402,0.566941,0.718263,0.80153,0.588308,0.682963,0.112593,0.124641,0.438374,0.301238,0.49138,0.946132,0.542591,0.502355,0.229878,0.957914,0.0790307,0.98536,0.212378,0.365273,0.324067,0.149523,0.0669545,0.795986,0.596256,0.729547,0.419361,0.730908,0.760796,0.834412,0.723664,0.768192,0.360859,0.484591,0.796058,0.0465388,0.289048,0.452124,0.518474,0.240175,0.247209,0.558555,0.277193,0.822637,0.405863,0.454076,0.743274,0.225547,0.674674,0.256397,0.58259,0.424286,0.19549,0.114053,0.259994,0.0485411,0.567215,0.844237,0.13964,0.276761,0.474163,0.494776,0.550493,0.745609,0.606368,0.81529,0.953097,0.861219,0.0495077,0.187866,0.0784038,0.23935,0.297796,0.761246,0.456433,0.204629,0.592622,0.636059,0.668541,0.306953,0.458279,0.190676,0.446497,0.501399,0.727718,0.118552,0.852917,0.954836,0.902974,0.942632,0.120227,0.888918,0.893351,0.260853,0.506822,0.349784,0.735025,0.762664,0.137808,0.718927,0.282669,0.849223,0.207179,0.326859,0.401131,0.483202,0.971181,0.245369,0.994204,0.680182,0.293531,0.738734,0.041513,0.510563,0.842461,0.733216,0.514876,0.342952,0.906754,0.444306,0.758485,0.882868,0.905433,0.42575,0.93554,0.783742,0.207981,0.550931,0.539868,0.748957,0.0947145,0.741371,0.270786,0.292278,0.112149,0.970375,0.291211,0.460421,0.870649,0.0946124,0.719947,0.91833,0.975854,0.695994,0.0729577,0.0838757,0.828074,0.397462,0.525053,0.615577,0.475479,0.147984,0.122353,0.635342,0.237423,0.162436,0.603371,0.850987,0.161699,0.55557,0.906941,0.261833,0.0332823,0.328684,0.44509,0.162621,0.993582,0.566032,0.357849,0.34034,0.933752,0.583747,0.217754,0.066467,0.811824,0.964682,0.382367,0.364471,0.837412,0.27942,0.394244,0.173679,0.84954,0.91522,0.934677,0.18487,0.780687,0.354928,0.492325,0.0637439,0.859384,0.42126,0.740715,0.106459,0.486798,0.583855,0.74008,0.875944,0.442797,0.0553285,0.914608,0.0979605,0.520468,0.738765,0.883489,0.202791,0.794194,0.654184,0.00920051,0.927597,0.0594687,0.667728,0.344154,0.565401,0.51758,0.305606,0.864183,0.885042,0.0568236,0.243534,0.913616,0.204815,0.908248,0.159394,0.757698,0.736565,0.247836,0.870338,0.995775,0.899261,0.512289,0.422116,0.302563,0.477811,0.146712,0.930083,0.400825,0.817866,0.886152,0.755775,0.141622,0.919,0.607162,0.3101,0.640479,0.387456,0.382124,0.0297874,0.2212,0.143073,0.903997,0.298298,0.200393,0.150802,0.0781152,0.202441,0.441459,0.974804,0.85765,0.864724,0.200408,0.167943,0.508647,0.138309,0.0102572,0.710203,0.553613,0.544547,0.990107,0.0376801,0.196721,0.826465,0.166546,0.105999,0.0798214,0.89024,0.467681,0.889856,0.845587,0.922129,0.831742,0.840806,0.171952,0.311575,0.587527,0.368748,0.342229,0.222186,0.644293,0.793954,0.229172,0.0874386,0.488651,0.099885,0.371327,0.252971,0.697936,0.561936,0.344343,0.864605,0.131214,0.643817,0.247662,0.40119,0.711268,0.578615,0.790745,0.824953,0.755124,0.170631,0.286808,0.669278,0.889395,0.766202,0.666016,0.247389,0.420885,0.962682,0.630198,0.126886,0.383795,0.144735,0.267631,0.545048,0.492106,0.442812,0.665935,0.895222,0.807209,0.33826,0.0543529,0.13295,0.687783,0.446095,0.758076,0.365918,0.12594,0.573781,0.676189,0.910357,0.145276,0.242766,0.347577,0.961794,0.0446247,0.481202,0.838945,0.0603333,0.768774,0.046056,0.781062,0.961575,0.429764,0.423261,0.448389,0.069502,0.518095,0.87229,0.69284,0.731977,0.142336,0.925697,0.695578,0.860559,0.99934,0.665915,0.147609,0.923943,0.439503,0.511431,0.938762,0.441887,0.583715,0.52933,0.470583,0.239587,0.51175,0.337188,0.198244,0.578616,0.0788886,0.800066,0.548279,0.020948,0.635991,0.638254,0.540154,0.53311,0.572565,0.620541,0.762375,0.634475,0.187108,0.588745,0.146805,0.176137,0.164719,0.925049,0.942381,0.146482,0.253448,0.213963,0.613205,0.287326,0.475264,0.203717,0.680804,0.738669,0.677746,0.214299,0.323241,0.32083,0.75304,0.525421,0.684868,0.251694,0.172544,0.10948,0.449199,0.0970939,0.220668,0.358278,0.836962,0.749121,0.62211,0.184791,0.527857,0.606126,0.300621,0.740786,0.191138,0.718579,0.441996,0.0115712,0.701854,0.267866,0.775747,0.722295,0.540873,0.882465,0.88399,0.40253,0.00387597,0.37014,0.176344,0.937325,0.693462,0.181756,0.916455,0.234842,0.76176,0.630906,0.29982,0.316415,0.755593,0.385405,0.325405,0.594419,0.291902,0.180134,0.758366,0.484208,0.980768,0.834926,0.355623,0.478085,0.907442,0.0181555,0.830244,0.0470869,0.555919,0.0590655,0.266183,0.0937008,0.187364,0.592114,0.0926197,0.250966,0.305341,0.309373,0.915266,0.30432,0.81121,0.162527,0.404594,0.254384,0.83498,0.558782,0.560036,0.672118,0.538752,0.930533,0.63421,0.88487,0.304977,0.507365,0.116249,0.327468,0.396747,0.325852,0.560559,0.205282,0.18718,0.711435,0.0711894,0.883146,0.772674,0.0712813,0.369908,0.0716426,0.821206,0.904509,0.38784,0.417695,0.412602,0.494346,0.682831,0.199752,0.678827,0.525234,0.233863,0.562435,0.521358,0.517634,0.467782,0.659026,0.914601,0.088379,0.0870519,0.162114,0.426213,0.440076,0.891843,0.798444,0.201,0.370724,0.142549,0.0944827,0.0150052,0.996264,0.254861,0.0911127,0.659918,0.408362,0.130801,0.841641,0.153527,0.375066,0.429422,0.17552,0.57099,0.191988,0.466824,0.271645,0.175289,0.650354,0.53804,0.337127,0.0406086,0.668833,0.810537,0.324309,0.240352,0.0535248,0.42438,0.273196,0.294096,0.189588,0.464974,0.548508,0.739702,0.769002,0.289729,0.853951,0.406271,0.917444,0.325598,0.637532,0.518051,0.186309,0.502748,0.175163,0.867356,0.53482,0.551919,0.544232,0.53236,0.316847,0.252538,0.753734,0.30678,0.703317,0.631963,0.000307083,0.836698,0.835995,0.913033,0.0660695,0.891411,0.825325,0.169982,0.444276,0.34274,0.160875,0.0450119,0.318213,0.111388,0.444569,0.836601,0.15735,0.410256,0.583505,0.0496005,0.716373,0.259111,0.373121,0.418885,0.568898,0.984734,0.276467,0.37896,0.0937111,0.996616,0.0504717,0.350888,0.59362,0.20261,0.334101,0.216164,0.136067,0.932027,0.275475,0.691069,0.493745,0.354316,0.761472,0.0528744,0.562623,0.906928,0.125776,0.612238,0.520578,0.704593,0.575687,0.0331733,0.0849837,0.85392,0.537227,0.949027,0.611897,0.468072,0.241131,0.971374,0.301224,0.122653,0.368779,0.620147,0.3579,0.913203,0.657369,0.534571,0.810779,0.214817,0.831285,0.514032,0.796929,0.76635,0.31138,0.568961,0.625557,0.427812,0.388759,0.307152,0.173135,0.0409873,0.685456,0.503076,0.737489,0.912319,0.225943,0.956625,0.726326,0.0440226,0.491796,0.410782,0.283169,0.871452,0.392363,0.118348,0.90116,0.306223,0.864656,0.913038,0.219809,0.684343,0.807649,0.654541,0.534756,0.30204,0.59091,0.757705,0.834744,0.299426,0.99753,0.331512,0.20672,0.977815,0.0938213,0.430069,0.231481,0.986186,0.667311,0.618673,0.612021,0.34055,0.161526,0.981009,0.0154965,0.0772973,0.883817,0.766496,0.135112,0.716287,0.855824,0.605937,0.236707,0.785614,0.968302,0.248416,0.386019,0.49598,0.300689,0.489701,0.644429,0.427851,0.594766,0.67664,0.25774,0.991825,0.354749,0.00192225,0.398914,0.125655,0.659507,0.57024,0.797706,0.979053,0.255346,0.328963,0.268967,0.290883,0.412531,0.226017,0.00951475,0.653044,0.0326989,0.443125,0.84785,0.386884,0.620417,0.355462,0.762324,0.00354123,0.447222,0.977613,0.710878,0.908435,0.135077,0.588281,0.815982,0.0697032,0.976354,0.487601,0.666225,0.767339,0.111531,0.325035,0.0789533,0.0182858,0.42613,0.440278,0.501097,0.59709,0.252032,0.379918,0.813806,0.983585,0.863648,0.487892,0.0263355,0.390419,0.0642416,0.978028,0.322538,0.723227,0.408321,0.382333,0.220125,0.949204,0.312564,0.333942,0.51344,0.729797,0.136193,0.435897,0.514195,0.729426,0.956312,0.772209,0.205082,0.847746,0.203085,0.276806,0.781092,0.46842,0.355749,0.455023,0.882983,0.807713,0.0240856,0.0646764,0.920166,0.964734,0.592418,0.894201,0.626325,0.358437,0.77105,0.685294,0.307868,0.240396,0.967161,0.10707,0.194897,0.46209,0.673958,0.575623,0.430883,0.513007,0.029875,0.0418646,0.125478,0.667282,0.929138,0.613338,0.544513,0.212349,0.637735,0.779268,0.725209,0.0146017,0.581,0.310862,0.00466967,0.418482,0.626652,0.794879,0.978638,0.0919966,0.52839,0.858594,|0.80505,0.963303,0.86921,0.618178,0.466792,0.268651,0.312055,0.344357,0.156666,0.211772,0.896288,0.683326,0.258243,0.272409,0.954592,0.976942,0.753793,0.97793,0.446704,0.709769,0.564865,0.70562,0.9812,0.225144,0.983718,0.739089,0.733296,0.844409,0.22283,0.187175,0.00814277,0.367458,0.601215,0.282272,0.858223,0.584621,0.596143,0.744418,0.488634,0.37426,0.424705,0.53471,0.184892,0.61787,0.89312,0.0198516,0.303536,0.182215,0.642607,0.109662,0.911386,0.721668,0.320972,0.316795,0.11774,0.729844,0.967749,0.691728,0.091119,0.817839,0.404552,0.779169,0.485802,0.560429,0.377743,0.234075,0.196514,0.470463,0.038491,0.449933,0.437855,0.91423,0.382714,0.888129,0.317914,0.455436,0.927722,0.555524,0.473722,0.423463,0.0388111,0.705322,0.444423,0.656447,0.872414,0.0533209,0.168113,0.815458,0.0131786,0.51943,0.500081,0.344535,0.159732,0.800928,0.292153,0.87417,0.359615,0.344273,0.952666,0.322453,0.179533,0.286843,0.4555,0.912914,0.274991,0.635634,0.862799,0.33209,0.617333,0.94371,0.921736,0.359604,0.0673971,0.311472,0.667372,0.409009,0.0407176,0.562322,0.81912,0.331425,0.984241,0.188942,0.384046,0.296094,0.189799,0.410692,0.380576,0.791104,0.49221,0.453856,0.946306,0.883646,0.525209,0.831402,0.97475,0.611832,0.975369,0.736696,0.218679,0.900276,0.197594,0.159213,0.729619,0.364321,0.746217,0.567909,0.409302,0.260744,0.15016,0.768445,0.891778,0.87546,0.271956,0.601251,0.422606,0.0158563,0.774593,0.146013,0.949874,0.307347,0.416709,0.732648,0.321718,0.569345,0.885916,0.92604,0.990834,0.532722,0.0875371,0.639434,0.610378,0.577162,0.581311,0.974182,0.986308,0.219747,0.560686,0.863879,0.465989,0.959002,0.430099,0.18092,0.851836,0.361711,0.122979,0.303555,0.343469,0.681538,0.614603,0.939686,0.471055,0.00768077,0.238575,0.47035,0.244334,0.0580515,0.863107,0.396182,0.456065,0.636833,0.580389,0.84748,0.382574,0.651942,0.791564,0.0603985,0.677192,0.784971,0.676271,0.94298,0.0983488,0.483973,0.776501,0.103173,0.705577,0.582474,0.730232,0.503918,0.754285,0.185479,0.141842,0.182467,0.291348,0.333875,0.293272,0.353497,0.112655,0.529012,0.346724,0.316735,0.214568,0.0753772,0.276932,0.116049,0.697987,0.432025,0.594381,0.305946,0.145254,0.872606,0.926702,0.514278,0.454593,0.638039,0.0362155,0.767417,0.627363,0.635215,0.480849,0.866047,0.630723,0.096611,0.122078,0.615736,0.119979,0.343639,0.41869,0.661426,0.873585,0.729288,0.19589,0.288453,0.544817,0.164902,0.69017,0.479317,0.581997,0.342289,0.301191,0.884343,0.586503,0.653441,0.188227,0.478596,0.270901,0.37297,0.790003,0.805952,0.145647,0.68889,0.70103,0.638265,0.437027,0.0813887,0.818147,0.384595,0.822325,0.442982,0.524759,0.129701,0.526566,0.404846,0.231646,0.662202,0.922919,0.968629,0.301782,0.618954,0.917164,0.33431,0.0277224,0.203942,0.862958,0.325808,0.820861,0.356865,0.00128269,0.553162,0.888042,0.133428,0.616167,0.67013,0.820542,0.295233,0.209994,0.448503,0.794029,0.603681,0.243019,0.10035,0.0152517,0.295109,0.310499,0.588259,0.151188,0.791817,0.342339,0.390339,0.807721,0.0578421,0.943156,0.956231,0.0716981,0.813656,0.43518,0.586402,0.963058,0.980284,0.170041,0.110124,0.58311,0.598798,0.00171906,0.0331584,0.964277,0.367244,0.968748,0.362771,0.776889,0.887993,0.607166,0.656873,0.319574,0.693463,0.108953,0.328947,0.0194136,0.788737,0.829354,0.898925,0.541432,0.740152,0.799375,0.526377,0.669491,0.532957,0.469184,0.143636,0.403,0.0368395,0.0793471,0.982601,0.868526,0.424544,0.605149,0.238799,0.503299,0.373444,0.428626,0.692899,0.729798,0.595279,0.526003,0.581885,0.256187,0.396326,0.913176,0.669259,0.275393,0.0393832,0.184519,0.321989,0.408158,0.4741,0.799697,0.748832,0.129924,0.289011,0.544419,0.423162,0.263636,0.864144,0.510879,0.578124,0.856114,0.483046,0.504593,0.267471,0.553879,0.642612,0.726342,0.682157,0.356939,0.266693,0.404706,0.833383,0.250552,0.172221,0.600865,0.612166,0.645516,0.75989,0.657611,0.600067,0.309735,0.544679,0.867174,0.201897,0.158352,0.126213,0.516254,0.561155,0.527709,0.952967,0.603592,0.672017,0.0199712,0.0825274,0.873054,0.499022,0.236452,0.805095,0.665386,0.591657,0.346575,0.0521513,0.432735,0.910293,0.697452,0.0290135,0.677763,0.722584,0.223658,0.155797,0.477593,0.991965,0.373085,0.652211,0.963008,0.236532,0.680298,0.189844,0.533991,0.0134692,0.932195,0.330144,0.0923861,0.630138,0.0231148,0.516082,0.57644,0.67658,0.949999,0.21641,0.969718,0.199779,0.24536,0.518209,0.750108,0.679686,0.448734,0.640007,0.351114,0.245041,0.852007,0.753933,0.528046,0.658501,0.560896,0.0506139,0.73719,0.578303,0.353379,0.766758,0.312781,0.589853,0.648156,0.477847,0.275984,0.732314,0.515127,0.346004,0.525871,0.864191,0.248915,0.656664,0.333771,0.0382118,0.721915,0.621043,0.17446,0.701433,0.411923,0.0375593,0.814377,0.106491,0.850209,0.120248,0.858371,0.517713,0.630781,0.529433,0.852907,0.856423,0.743482,0.812068,0.956575,0.938403,0.93476,0.16642,0.176893,0.207493,0.842456,0.414193,0.19889,0.844924,0.157737,0.326573,0.415679,0.471012,0.529061,0.895794,0.454717,0.159817,0.69184,0.127623,0.0745566,0.639661,0.502854,0.539027,0.795905,0.0483199,0.545243,0.880056,0.501054,0.0469453,0.400206,0.200721,0.427499,0.500359,0.90307,0.602807,0.796346,0.562215,0.270824,0.125849,0.657203,0.887217,0.185505,0.392597,0.102883,0.928843,0.733378,0.775175,0.262658,0.750377,0.826068,0.863774,0.654107,0.93188,0.183907,0.0412451,0.108544,0.225542,0.470248,0.772121,0.601222,0.440174,0.287945,0.665896,0.0328896,0.25883,0.845058,0.680363,0.668679,0.69905,0.616286,0.240556,0.18386,0.818051,0.617481,0.539584,0.906387,0.474423,0.72965,0.358556,0.756401,0.462614,0.506245,0.447571,0.0176741,0.735849,0.372762,0.829394,0.568204,0.547752,0.100436,0.410461,0.958818,0.63592,0.857166,0.954106,0.364115,0.961224,0.0757233,0.248315,0.151015,0.514477,0.315583,0.992881,0.600969,0.87342,0.806499,0.143093,0.863419,0.932391,0.121913,0.0813797,0.737577,0.90594,0.633473,0.300413,0.0644822,0.0485127,0.189943,0.538031,0.345922,0.118998,0.439377,0.78613,0.583597,0.49,0.678591,0.959246,0.762142,0.428477,0.84589,0.570353,0.6617,0.853668,0.888436,0.150176,0.0714929,0.415211,0.906569,0.598717,0.350414,0.85531,0.733415,0.264909,0.83073,0.141366,0.675385,0.682635,0.273199,0.291609,0.995343,0.615359,0.570079,0.679316,0.824857,0.0430422,0.415269,0.702064,0.802108,0.939241,0.17845,0.719056,0.673843,0.424698,0.562438,0.250829,0.70868,0.309857,0.351113,0.152364,0.315848,0.36906,0.431194,0.593338,0.327267,0.217172,0.0139596,0.513277,0.363869,0.195226,0.472536,0.969741,0.855864,0.991064,0.803708,0.385756,0.78636,0.914915,0.530712,0.0207464,0.532377,0.206945,0.925233,0.961298,0.900026,0.893809,0.723272,0.120863,0.809548,0.169813,0.928062,0.0979768,0.310197,0.966877,0.0720439,0.14146,0.239847,0.0121718,0.245003,0.366282,0.145853,0.881809,0.854718,0.679163,0.737511,0.614816,0.174319,0.797473,0.184965,0.142326,0.243353,0.108999,0.844757,0.526483,0.762662,0.248644,0.448724,0.81324,0.664433,0.0894873,0.761726,0.702417,0.901296,0.117433,0.933744,0.50728,0.397749,0.383908,0.894147,0.503087,0.456027,0.126908,0.675955,0.660431,0.299928,0.987564,0.988779,0.366543,0.480749,0.247962,0.415171,0.382765,0.632687,0.734627,0.0354791,0.978715,0.879322,0.633802,0.931808,0.868357,0.105766,0.130081,0.731313,0.194791,0.512316,0.782245,0.806679,0.432367,0.982813,0.252583,0.860659,0.431968,0.374722,0.431612,0.977418,0.221709,0.334736,0.202317,0.726934,0.510878,0.81488,0.139388,0.845077,0.599482,0.883889,0.670317,0.485655,0.361933,0.0514951,0.570602,0.974624,0.568881,0.928296,0.642253,0.656593,0.152745,0.528918,0.554752,0.791762,0.893105,0.161232,0.290143,0.535634,0.947201,0.844607,0.310715,0.489934,0.368268,0.459745,0.113046,0.209582,0.153574,0.383495,0.949873,0.660247,0.47393,0.279885,0.775145,0.764342,0.944889,0.501336,0.565582,0.627787,0.256717,0.181487,0.950245,0.632996,0.142765,0.95044,0.589702,0.695218,0.951269,0.102172,0.283316,0.171626,0.852128,0.977655,0.971506,0.849311,0.741086,0.300388,0.312528,0.157066,0.218523,0.386719,0.10797,0.822018,0.278679,0.586205,0.760488,0.777232,0.270711,0.137517,0.996734,0.607851,0.254708,0.672461,0.689064,0.909416,0.944241,0.126662,0.392566,0.702941,0.116142,0.962874,0.468045,0.53041,0.774149,0.299732,0.671597,0.889257,0.697154,0.0140049,0.936382,0.174128,0.892974,0.25553,0.353304,0.177812,0.793301,0.554376,0.717717,0.562073,0.275745,0.274987,0.642067,0.303861,0.897965,0.033318,0.20989,0.903825,0.488022,0.847874,0.611296,0.579234,0.930144,0.501871,0.917549,0.450481,0.228132,0.808246,0.682123,0.240607,0.593045,0.0129104,0.397166,0.553041,0.866701,0.244874,0.822517,0.106629,0.233665,0.00264889,0.433997,0.687541,0.412095,0.131427,0.24349,0.8023,0.928783,0.649249,0.458437,0.472231,0.810611,0.309291,0.298135,0.723204,0.347835,0.507844,0.11818,0.537832,0.0125276,0.402522,0.564956,0.486794,0.591841,0.884476,0.149532,0.469487,0.465151,0.241488,0.682523,0.136745,0.135838,0.0725802,0.266589,0.255492,0.196455,0.423522,0.750874,0.667097,0.877522,0.349132,0.239872,0.391082,0.916408,0.161423,0.854993,0.148466,0.600872,0.59718,0.746181,0.597193,0.0941783,0.712543,0.789699,0.772901,0.944202,0.580043,0.59183,0.843417,0.0689353,0.521832,0.651162,|0.892431,0.971271,0.202271,0.405721,0.530464,0.346288,0.573972,0.092743,0.362947,0.829414,0.521788,0.391583,0.0424792,0.478834,0.886651,0.354791,0.198397,0.59947,0.0616713,0.887239,0.190928,0.247341,0.203434,0.42838,0.185711,0.0309188,0.185924,0.916114,0.396757,0.503599,0.954534,0.299175,0.814893,0.453031,0.807549,0.411776,0.190007,0.868846,0.591913,0.915269,0.81861,0.409441,0.471834,0.84286,0.745637,0.0816345,0.105926,0.634238,0.0586496,0.695546,0.322156,0.574148,0.911409,0.440827,0.265387,0.721478,0.677467,0.294717,0.854109,0.250176,0.59671,0.811389,0.223004,0.6957,0.0292969,0.746878,0.268473,0.397579,0.344391,0.420694,0.401993,0.0831185,0.666335,0.57427,0.783049,0.850265,0.0971501,0.4804,0.633959,0.393768,0.102275,0.153771,0.479803,0.412037,0.0890303,0.249038,0.55888,0.380369,0.542587,0.842301,0.744526,0.449136,0.540699,0.303771,0.637353,0.723247,0.109762,0.818961,0.992143,0.306846,0.66375,0.626484,0.392829,0.478292,0.507849,0.83036,0.951086,0.698523,0.280048,0.585295,0.313025,0.053565,0.907397,0.586616,0.209604,0.713781,0.0420305,0.709767,0.222934,0.308908,0.543108,0.133191,0.78617,0.9656,0.59635,0.119514,0.815324,0.504454,0.965716,0.665258,0.135801,0.551772,0.178693,0.971196,0.175209,0.836376,0.950222,0.974908,0.846137,0.372887,0.0114851,0.131345,0.194598,0.962316,0.479753,0.985062,0.123189,0.829775,0.360051,0.635078,0.303705,0.161838,0.593218,0.834874,0.333266,0.00239307,0.498155,0.798863,0.949021,0.336352,0.840999,0.127016,0.208224,0.731014,0.974108,0.364375,0.61587,0.503002,0.11555,0.656915,0.559033,0.799058,0.583963,0.314658,0.35201,0.964365,0.450318,0.996405,0.199405,0.226483,0.607574,0.593413,0.169671,0.230524,0.405167,0.940673,0.369271,0.0841993,0.188941,0.44877,0.149034,0.672014,0.641584,0.673634,0.361288,0.594603,0.695479,0.54602,0.85272,0.503353,0.159401,0.902323,0.67344,0.221443,0.0267944,0.269653,0.755302,0.906859,0.675307,0.277024,0.337335,0.391665,0.0961956,0.284657,0.849219,0.223549,0.877029,0.807556,0.762908,0.0714056,0.134779,0.442196,0.0975369,0.244293,0.394873,0.33448,0.657962,0.182711,0.230457,0.220719,0.783497,0.38621,0.836574,0.250869,0.146813,0.300877,0.687498,0.494163,0.318079,0.307336,0.811117,0.19806,0.0849779,0.304103,0.936494,0.974366,0.564194,0.843618,0.340319,0.946619,0.469495,0.779392,0.0487662,0.485628,0.943184,0.719134,0.827454,0.851323,0.142905,0.811936,0.674318,0.726509,0.303851,0.583654,0.289568,0.619584,0.581313,0.432183,0.02665,0.129249,0.759412,0.746627,0.212978,0.279422,0.459434,0.0245705,0.506067,0.1337,0.305172,0.27712,0.517468,0.790882,0.486134,0.10345,0.665149,0.860108,0.563011,0.875519,0.599726,0.078567,0.613193,0.609129,0.598614,0.619716,0.576769,0.239894,0.635289,0.553743,0.0712393,0.257226,0.580886,0.597813,0.218041,0.360183,0.716006,0.643082,0.257753,0.302912,0.5522,0.919331,0.865995,0.48046,0.256706,0.571676,0.691865,0.298085,0.00341368,0.778864,0.624285,0.280381,0.700889,0.971039,0.00749922,0.727124,0.632618,0.479504,0.394745,0.787046,0.867267,0.963511,0.614828,0.453134,0.75053,0.87729,0.468483,0.269742,0.708573,0.659059,0.628,0.980874,0.733432,0.252733,0.805995,0.894868,0.631673,0.500634,0.941026,0.558467,0.399022,0.852114,0.0537263,0.456816,0.601382,0.242625,0.256137,0.514137,0.366836,0.929999,0.773724,0.593107,0.0171483,0.753638,0.809758,0.674943,0.00874281,0.606143,0.734592,0.597794,0.0049265,0.0486585,0.260761,0.587351,0.639367,0.0802998,0.154151,0.988441,0.828241,0.613051,0.178698,0.0501089,0.687645,0.541025,0.0711952,0.486602,0.671936,0.1332,0.460395,0.734424,0.245987,0.49192,0.592936,0.717158,0.458005,0.540844,0.635029,0.769804,0.526137,0.846472,0.575777,0.016586,0.599862,0.330119,0.149635,0.394518,0.918232,0.514301,0.844801,0.186229,0.92621,0.0372186,0.347536,0.763714,0.443953,0.590336,0.35929,0.516247,0.897407,0.0837362,0.834033,0.592691,0.66086,0.266965,0.501448,0.992695,0.553986,0.773688,0.626568,0.661572,0.810253,0.693578,0.77249,0.862558,0.474232,0.182453,0.928311,0.791839,0.768084,0.34602,0.593965,0.193723,0.0249254,0.0309193,0.404605,0.261657,0.851117,0.268437,0.280531,0.20686,0.701872,0.0349202,0.0805212,0.558281,0.831999,0.996356,0.249679,0.0196695,0.904528,0.995366,0.916038,0.696445,0.344555,0.292531,0.974945,0.858018,0.275716,0.768283,0.338876,0.721761,0.121572,0.334965,0.365517,0.892445,0.764159,0.81633,0.730194,0.708704,0.0469422,0.850104,0.223312,0.31129,0.94463,0.968835,0.868075,0.31348,0.265926,0.0801846,0.474568,0.074445,0.50186,0.781506,0.66717,0.232021,0.202534,0.356631,0.249719,0.0192973,0.361303,0.507404,0.68818,0.868963,0.905113,0.648154,0.418981,0.779993,0.640984,0.797897,0.417628,0.597484,0.212476,0.896839,0.849536,0.56422,0.808009,0.0157875,0.544594,0.393739,0.978261,0.811155,0.147508,0.72327,0.851993,0.89617,0.0271257,0.381856,0.389425,0.747509,0.794451,0.149402,0.492339,0.627987,0.201144,0.230511,0.767801,0.503501,0.795138,0.0913515,0.384956,0.285642,0.355917,0.507941,0.30901,0.549816,0.980453,0.761556,0.0667965,0.716016,0.70516,0.884718,0.777063,0.817955,0.642686,0.489305,0.402042,0.666893,0.776837,0.274567,0.116061,0.167408,0.166725,0.753667,0.379013,0.854622,0.542162,0.194232,0.468947,0.763778,0.268435,0.215034,0.202548,0.368461,0.622189,0.1112,0.870557,0.673452,0.856092,0.756425,0.675333,0.0381137,0.0145344,0.523701,0.440093,0.692455,0.489646,0.0265878,0.525587,0.777708,0.953004,0.455714,0.83848,0.480032,0.970059,0.288517,0.444074,0.0610279,0.850334,0.773607,0.566106,0.0958745,0.149739,0.49422,0.829835,0.296973,0.199935,0.490661,0.039826,0.781035,0.407851,0.185905,0.193261,0.899897,0.764784,0.883701,0.111549,0.435259,0.590243,0.99712,0.216081,0.529962,0.53221,0.655595,0.996671,0.42563,0.280041,0.445315,0.125413,0.663787,0.252157,0.0626062,0.239184,0.0270076,0.775031,0.426834,0.930441,0.309477,0.323036,0.929113,0.173937,0.663876,0.780668,0.77074,0.431997,0.0710453,0.499494,0.262585,0.441684,0.341284,0.399573,0.943098,0.134016,0.70443,0.810717,0.46932,0.181709,0.825734,0.88906,0.587229,0.821641,0.314163,0.0904365,0.642577,0.929096,0.50944,0.560112,0.0274333,0.24529,0.0410534,0.440931,0.211799,0.535568,0.374952,0.586842,0.0449601,0.685837,0.400481,0.559383,0.287793,0.445999,0.974606,0.45243,0.770306,0.327927,0.157125,0.941626,0.708325,0.195511,0.211945,0.299206,0.306179,0.458961,0.981505,0.695583,0.259231,0.623029,0.473049,0.245881,0.924524,0.589091,0.980671,0.673055,0.108518,0.222807,0.637137,0.0839406,0.557502,0.526378,0.750499,0.60115,0.977174,0.91372,0.340752,0.648543,0.412522,0.678877,0.563693,0.87016,0.323132,0.84764,0.683219,0.917735,0.166403,0.672344,0.0305899,0.207731,0.548488,0.452333,0.616055,0.789804,0.557765,0.809262,0.983647,0.455214,0.494532,0.00881833,0.419768,0.52068,0.233947,0.743645,0.841477,0.413266,0.900214,0.897008,0.381642,0.580486,0.637235,0.595011,0.177269,0.474232,0.301351,0.00648916,0.52286,0.0705442,0.511562,0.0911305,0.979874,0.266959,0.669512,0.403255,0.408227,0.200144,0.37739,0.142546,0.0765963,0.375329,0.343697,0.896043,0.902602,0.892781,0.550864,0.955681,0.903056,0.0676369,0.674867,0.943108,0.964109,0.888852,0.912916,0.526541,0.0832282,0.342664,0.432525,0.264746,0.479846,0.398693,0.992704,0.342265,0.276754,0.332083,0.426184,0.957896,0.670143,0.789841,0.87424,0.184259,0.0135373,0.612824,0.716747,0.567953,0.462978,0.267617,0.442813,0.650884,0.687237,0.371105,0.462361,0.411759,0.473312,0.300007,0.695857,0.879155,0.864168,0.834866,0.9653,0.170085,0.759447,0.700826,0.609472,0.324585,0.950969,0.464116,0.185114,0.791507,0.651546,0.432613,0.450767,0.331818,0.490517,0.255149,0.521754,0.729866,0.728829,0.156965,0.971384,0.979733,0.994274,0.721132,0.684295,0.277374,0.294606,0.482544,0.251852,0.51761,0.683736,0.89989,0.66459,0.0340948,0.556564,0.869019,0.890877,0.216613,0.529459,0.63164,0.298375,0.910561,0.601517,0.966611,0.572672,0.925683,0.946466,0.258742,0.610734,0.821029,0.566229,0.883016,0.231017,0.26429,0.348574,0.0450627,0.642135,0.794953,0.0266436,0.652693,0.709482,0.499055,0.348126,0.955192,0.341914,0.224011,0.060936,0.481547,0.344461,0.435479,0.302169,0.404591,0.140954,0.551348,0.845991,0.537342,0.730915,0.736503,0.452487,0.646274,0.592151,0.461672,0.936985,0.169298,0.970897,0.0580005,0.535673,0.12139,0.249454,0.425668,0.108667,0.696876,0.710533,0.703739,0.104734,0.730133,0.360615,0.715828,0.954837,0.204676,0.373141,0.469606,0.0642654,0.90825,0.603332,0.549384,0.128012,0.328522,0.103537,0.551412,0.63174,0.141017,0.481277,0.414071,0.0580177,0.768524,0.233921,0.703377,0.639949,0.650183,0.399555,0.766823,0.377044,0.533217,0.21703,0.0080418,0.555814,0.161145,0.71219,0.00710684,0.209219,0.966873,0.252729,0.905513,0.891046,0.779213,0.218483,0.914662,0.913666,0.692074,0.762819,0.239609,0.747065,0.619445,0.193847,0.952345,0.137021,0.411023,0.163703,0.98769,0.660928,0.379891,0.273277,0.854731,0.654989,0.869274,0.512404,0.00285399,0.838536,0.158222,0.125921,0.353663,0.436756,0.986527,0.344438,0.28328,0.366649,0.567847,0.225951,0.0158077,0.990457,0.850231,0.272561,0.49905,0.889456,0.690749,0.106205,0.47588,0.651844,0.603066,0.886501,0.370266,0.967018,0.635428,0.0508181,0.597321,0.0681392,0.468928,0.092173,|0.70601,0.68465,0.993719,0.250469,0.340391,0.833883,0.910115,0.833305,0.405632,0.301134,0.213258,0.183097,0.325672,0.94162,0.196701,0.565521,0.969496,0.857541,0.497512,0.833826,0.931151,0.218651,0.616952,0.0255396,0.021398,0.685651,0.648775,0.601768,0.762239,0.080745,0.133895,0.813958,0.478314,0.81887,0.361759,0.0644026,0.163575,0.140576,0.839958,0.589715,0.937587,0.932877,0.479645,0.480429,0.521793,0.336244,0.636827,0.633508,0.561585,0.366814,0.682185,0.140115,0.548173,0.527122,0.635705,0.962085,0.923807,0.847805,0.0158169,0.197273,0.420559,0.200917,0.458738,0.649703,0.393275,0.483951,0.449578,0.343905,0.806348,0.118507,0.400505,0.572316,0.335574,0.0442489,0.412042,0.580816,0.235047,0.115155,0.361582,0.186013,0.419547,0.722929,0.882839,0.391747,0.67101,0.650577,0.799282,0.0278977,0.229768,0.172428,0.980113,0.410146,0.846892,0.769829,0.374204,0.969571,0.626992,0.768011,0.306315,0.621042,0.440699,0.373988,0.805074,0.106462,0.302474,0.0632626,0.389132,0.0941572,0.906344,0.323985,0.899145,0.754191,0.14373,0.849218,0.558546,0.305141,0.453089,0.891436,0.16276,0.256607,0.92815,0.688532,0.16787,0.563054,0.710301,0.630265,0.892817,0.274532,0.197696,0.488049,0.556208,0.842753,0.679784,0.136401,0.161713,0.20135,0.454516,0.765874,0.96961,0.579902,0.840218,0.623969,0.724242,0.0437518,0.15009,0.971772,0.508606,0.0299648,0.1446,0.145848,0.53413,0.520791,0.678077,0.524472,0.060704,0.233555,0.72904,0.708117,0.237161,0.926126,0.0432116,0.106645,0.763115,0.905245,0.0124645,0.957836,0.974291,0.946108,0.833801,0.342574,0.523921,0.745091,0.556541,0.297381,0.988805,0.445549,0.0509757,0.183156,0.108995,0.883122,0.9242,0.0484491,0.531616,0.404092,0.272239,0.0900096,0.793846,0.352568,0.0899475,0.0238237,0.66115,0.108067,0.0761649,0.375358,0.547007,0.997403,0.203091,0.990725,0.820887,0.740494,0.386975,0.233353,0.00670385,0.0989492,0.176139,0.147576,0.341719,0.469019,0.761338,0.1558,0.952183,0.657074,0.67362,0.190699,0.344859,0.399661,0.404538,0.678366,0.72645,0.897806,0.482385,0.502357,0.351656,0.76158,0.0600565,0.167542,0.0867208,0.198915,0.104491,0.194403,0.564283,0.986023,0.310823,0.488627,0.946844,0.303092,0.10831,0.211481,0.725857,0.96592,0.148025,0.238977,0.745496,0.49711,0.299889,0.560966,0.55021,0.106692,0.902912,0.60204,0.112194,0.639754,0.0633498,0.442445,0.222233,0.539104,0.841909,0.389231,0.0631488,0.116072,0.769727,0.124848,0.581878,0.947873,0.431446,0.421348,0.116686,0.325723,0.0365129,0.932164,0.447406,0.739321,0.10067,0.0918059,0.819561,0.235307,0.927687,0.413957,0.791543,0.00334275,0.144026,0.00168622,0.00669193,0.739538,0.311871,0.744125,0.907689,0.380041,0.967792,0.0786944,0.263368,0.899945,0.635798,0.0373937,0.228722,0.896208,0.580427,0.766387,0.638355,0.902142,0.35818,0.291582,0.937004,0.848252,0.777173,0.909996,0.194482,0.517311,0.604682,0.346267,0.567937,0.385892,0.921292,0.31524,0.791671,0.692152,0.400978,0.995537,0.469706,0.028517,0.118337,0.0181103,0.23622,0.397621,0.080042,0.832792,0.265295,0.767703,0.073354,0.341711,0.474314,0.735498,0.10637,0.416732,0.0832475,0.94414,0.328529,0.222362,0.0230877,0.0402722,0.503341,0.0201988,0.844845,0.126245,0.287873,0.904241,0.768112,0.782856,0.599061,0.0710403,0.655479,0.371609,0.942147,0.480231,0.609543,0.314822,0.302671,0.389505,0.539286,0.154476,0.631174,0.0720069,0.753083,0.217036,0.0701006,0.36933,0.27787,0.124692,0.714942,0.808755,0.125488,0.0219056,0.078817,0.423073,0.0638969,0.148525,0.371932,0.397809,0.809926,0.143741,0.414006,0.00418377,0.0522046,0.604915,0.919945,0.106966,0.297956,0.44878,0.958178,0.966093,0.897987,0.0606793,0.813181,0.723987,0.747985,0.577323,0.633433,0.139205,0.648167,0.828505,0.0842883,0.661594,0.54236,0.559465,0.992012,0.732077,0.424244,0.670621,0.516159,0.911462,0.423341,0.583216,0.438255,0.325566,0.323428,0.269711,0.54579,0.745317,0.90064,0.572933,0.0354881,0.199931,0.304636,0.895364,0.0525241,0.678699,0.888742,0.985666,0.245748,0.303625,0.582573,0.513078,0.509237,0.116094,0.269826,0.0342736,0.269936,0.367754,0.177434,0.694443,0.506151,0.822206,0.384618,0.702365,0.197055,0.101007,0.986128,0.285987,0.106371,0.49063,0.42699,0.0550688,0.614961,0.785189,0.32694,0.984575,0.502006,0.308734,0.68209,0.374421,0.261655,0.837551,0.33736,0.545592,0.38802,0.559382,0.130042,0.520076,0.158071,0.56232,0.843697,0.257347,0.16965,0.958512,0.709997,0.332412,0.879959,0.620304,0.783222,0.396562,0.729692,0.417868,0.58513,0.964016,0.834418,0.996904,0.498214,0.32503,0.0720137,0.00394869,0.847736,0.963192,0.36524,0.0779846,0.741846,0.231563,0.838999,0.670792,0.183371,0.0952876,0.214344,0.356631,0.70057,0.678021,0.413699,0.0445932,0.124237,0.448999,0.466339,0.578165,0.155371,0.31652,0.505755,0.321707,0.163159,0.570795,0.970985,0.984445,0.465082,0.411764,0.384909,0.923275,0.390591,0.148293,0.394428,0.474851,0.737483,0.0646703,0.377378,0.782371,0.561486,0.899872,0.488387,0.462558,0.0526854,0.813003,0.218942,0.728206,0.13087,0.0831971,0.0486863,0.113263,0.751506,0.576055,0.123686,0.861382,0.777318,0.106448,0.517051,0.546261,0.2237,0.443035,0.869693,0.847622,0.305376,0.763212,0.83411,0.571486,0.491266,0.436454,0.913179,0.343148,0.938085,0.482621,0.342678,0.685389,0.720542,0.37151,0.669639,0.504359,0.157494,0.235,0.97906,0.702122,0.987716,0.864034,0.490248,0.914631,0.559001,0.412798,0.396417,0.742617,0.90862,0.912322,0.497488,0.343108,0.850823,0.173903,0.982475,0.41036,0.72567,0.615435,0.459897,0.3891,0.611545,0.256258,0.170454,0.716576,0.808431,0.224877,0.433934,0.0457342,0.213008,0.804148,0.993471,0.119746,0.706011,0.6384,0.582242,0.148098,0.703202,0.85905,0.177667,0.494631,0.608194,0.305805,0.903397,0.458763,0.662194,0.542993,0.777772,0.502082,0.592914,0.0136406,0.380014,0.425268,0.676673,0.558871,0.886179,0.913452,0.262295,0.507216,0.994812,0.278618,0.354264,0.583849,0.148861,0.852814,0.194726,0.393261,0.423828,0.972559,0.801291,0.105485,0.774012,0.573516,0.551519,0.869526,0.966925,0.261957,0.0147809,0.4591,0.211583,0.365651,0.146907,0.251284,0.0762556,0.46702,0.172402,0.116773,0.258675,0.303853,0.347921,0.836808,0.389618,0.928,0.257255,0.979967,0.991128,0.610601,0.785564,0.704914,0.0846974,0.382742,0.588742,0.747108,0.301778,0.0279742,0.338938,0.217573,0.911289,0.380596,0.0607104,0.831902,0.206637,0.152822,0.601749,0.0337193,0.0970938,0.989819,0.273969,0.443454,0.0602407,0.873047,0.0142678,0.400854,0.433175,0.470017,0.324496,0.275103,0.742471,0.361936,0.0353987,0.390585,0.633448,0.787603,0.431091,0.776839,0.936511,0.987216,0.609488,0.750415,0.336856,0.402029,0.238874,0.400809,0.877162,0.75214,0.289036,0.540494,0.213862,0.478676,0.194587,0.629255,0.829783,0.715062,0.860429,0.232827,0.711293,0.707398,0.424073,0.614873,0.628447,0.657787,0.0382444,0.273051,0.672855,0.755791,0.698703,0.661976,0.0596616,0.233737,0.587082,0.750653,0.578702,0.901643,0.286944,0.95697,0.050048,0.749547,0.46529,0.801196,0.66643,0.476522,0.654161,0.360114,0.36768,0.81707,0.0951383,0.844057,0.835631,0.504196,0.434682,0.700258,0.421611,0.566066,0.357191,0.398608,0.77153,0.536409,0.765757,0.432424,0.0911329,0.630118,0.519313,0.0242305,0.226262,0.414614,0.200531,0.52597,0.061062,0.233286,0.188561,0.289388,0.12245,0.679559,0.656108,0.135874,0.00600731,0.828926,0.878261,0.803746,0.716272,0.170722,0.615496,0.441589,0.558022,0.779658,0.384579,0.300652,0.0808493,0.320117,0.970135,0.663594,0.555969,0.0681783,0.209484,0.678454,0.962003,0.447375,0.809971,0.285992,0.791361,0.984719,0.231398,0.543174,0.612363,0.634577,0.578838,0.930612,0.460887,0.649497,0.76061,0.256239,0.797067,0.88454,0.411264,0.779391,0.876757,0.745523,0.964302,0.279518,0.028905,0.741507,0.520923,0.993049,0.59948,0.739526,0.560512,0.315469,0.519813,0.422653,0.225768,0.0792287,0.439031,0.671168,0.808953,0.686997,0.338623,0.926392,0.153363,0.60033,0.99275,0.843363,0.0788146,0.0789741,0.772164,0.932713,0.840569,0.00512052,0.132798,0.516661,0.193875,0.163673,0.52431,0.361187,0.911409,0.739524,0.315423,0.971399,0.481622,0.714486,0.768913,0.299355,0.900445,0.323791,0.0506065,0.48093,0.731014,0.414252,0.967878,0.594126,0.115277,0.961965,0.656949,0.820564,0.346669,0.488452,0.448585,0.585939,0.982634,0.5966,0.857149,0.953223,0.898699,0.769904,0.240174,0.40874,0.00331634,0.604278,0.930274,0.530474,0.762664,0.207088,0.395237,0.334908,0.178824,0.517234,0.544764,0.164938,0.612088,0.577803,0.60176,0.985277,0.772375,0.492866,0.265135,0.46029,0.995181,0.68687,0.14969,0.613806,0.211204,0.750358,0.385941,0.66873,0.136936,0.559281,0.198401,0.647864,0.405453,0.574549,0.30675,0.648849,0.627939,0.395701,0.573603,0.866575,0.0660722,0.0632944,0.325154,0.0562745,0.930831,0.529122,0.79205,0.346829,0.651894,0.88411,0.209981,0.472754,0.115657,0.410853,0.115282,0.394528,0.0518941,0.873958,0.37852,0.656449,0.0998703,0.184051,0.209671,0.586844,0.391652,0.192911,0.526875,0.84371,0.346474,0.994513,0.356693,0.0657609,0.270546,0.665527,0.122293,0.361441,0.326688,0.0311661,0.0871527,0.519502,0.494425,0.281873,0.138556,0.720508,0.851556,0.945319,0.86562,0.973419,0.140279,0.932159,0.227099,0.255534,0.582568,0.180186,0.963085,0.037519,0.114149,0.0971028,0.172709,0.257477,0.867852,0.442082,|0.403471,0.675704,0.533571,0.224738,0.0572773,0.186754,0.168335,0.982606,0.0183977,0.889845,0.115568,0.810237,0.937635,0.958122,0.0206581,0.20096,0.674753,0.0203284,0.0506331,0.0187792,0.17764,0.967483,0.317086,0.337564,0.279919,0.417851,0.221705,0.365788,0.614503,0.905496,0.236058,0.625457,0.0382602,0.768879,0.580651,0.766767,0.880902,0.506755,0.950912,0.469175,0.247246,0.147787,0.0789096,0.578026,0.845894,0.0170852,0.0607874,0.59115,0.612536,0.0128607,0.92305,0.094968,0.741634,0.297699,0.60859,0.451164,0.767768,0.593697,0.328069,0.908265,0.891244,0.662427,0.833746,0.839153,0.0880215,0.714248,0.374725,0.97388,0.407663,0.227919,0.848627,0.711369,0.51188,0.0767376,0.313033,0.701912,0.473565,0.915828,0.104159,0.388108,0.300894,0.495974,0.796072,0.688975,0.173189,0.223102,0.524661,0.204391,0.227763,0.00866115,0.790435,0.748935,0.39609,0.736849,0.525514,0.97964,0.565334,0.888839,0.710522,0.841677,0.249799,0.349649,0.574707,0.241883,0.200158,0.814862,0.398843,0.994558,0.647283,0.578248,0.783336,0.207526,0.852401,0.543543,0.343821,0.0111588,0.000872433,0.75292,0.289403,0.122045,0.572555,0.989427,0.371577,0.865436,0.89161,0.691374,0.77955,0.225518,0.489976,0.228688,0.852672,0.547328,0.882804,0.743623,0.462733,0.579562,0.197602,0.909207,0.711333,0.519205,0.894135,0.362857,0.830582,0.596768,0.526421,0.234893,0.971145,0.870229,0.664731,0.820651,0.438849,0.60429,0.343944,0.685534,0.918871,0.917162,0.982599,0.863281,0.613962,0.4874,0.252859,0.563323,0.40345,0.348228,0.766879,0.990329,0.769164,0.809088,0.432128,0.0314682,0.102005,0.483405,0.474698,0.569548,0.0757132,0.544087,0.97749,0.481529,0.779407,0.29009,0.222889,0.993758,0.856391,0.00136143,0.137032,0.204293,0.625183,0.924041,0.946297,0.35964,0.873087,0.747705,0.477805,0.537732,0.470101,0.0573778,0.636687,0.568379,0.294501,0.265479,0.511734,0.865471,0.330414,0.889445,0.41498,0.84635,0.927055,0.861141,0.778393,0.934414,0.0853599,0.805034,0.861748,0.343644,0.652332,0.396713,0.664418,0.0430519,0.209474,0.458688,0.625826,0.892388,0.0500772,0.265665,0.00635678,0.718024,0.630781,0.261469,0.582256,0.723342,0.974733,0.685142,0.559743,0.72766,0.846262,0.552301,0.71218,0.113018,0.0931336,0.850487,0.635511,0.472553,0.5056,0.320581,0.973763,0.141564,0.66857,0.372401,0.577226,0.968963,0.917888,0.726559,0.865123,0.258357,0.306301,0.35505,0.594437,0.870143,0.973964,0.612405,0.132538,0.561227,0.960163,0.233817,0.184437,0.288389,0.0161018,0.273396,0.0479697,0.132999,0.87412,0.530971,0.666875,0.74075,0.291996,0.983018,0.323905,0.057471,0.787657,0.159614,0.72446,0.0133106,0.0787429,0.755575,0.871337,0.350993,0.73535,0.135087,0.444637,0.525196,0.659606,0.855389,0.189304,0.605864,0.862965,0.181448,0.735302,0.414872,0.69187,0.147331,0.97361,0.781229,0.805257,0.434592,0.376845,0.261388,0.696032,0.250701,0.396742,0.225739,0.19534,0.97211,0.858521,0.559227,0.771155,0.562076,0.0705819,0.775976,0.672096,0.370905,0.437559,0.395148,0.994905,0.926632,0.756883,0.909165,0.476389,0.234726,0.654761,0.471738,0.797768,0.00392067,0.374746,0.367473,0.731691,0.942692,0.193883,0.36061,0.682208,0.68596,0.802292,0.552663,0.199813,0.870507,0.494469,0.233271,0.658974,0.741277,0.0830204,0.0521901,0.207201,0.866135,0.858089,0.306126,0.225274,0.627075,0.571456,0.906926,0.554542,0.596798,0.126396,0.677268,0.567772,0.962265,0.520601,0.922337,0.714133,0.814743,0.682671,0.638578,0.987195,0.0377221,0.153628,0.793328,0.786939,0.100687,0.124095,0.313787,0.138014,0.939358,0.0214897,0.517726,0.355113,0.137063,0.747432,0.850236,0.742008,0.442971,0.287035,0.531918,0.980057,0.165374,0.660494,0.878474,0.907483,0.888839,0.77833,0.293419,0.364766,0.85395,0.93271,0.3875,0.123797,0.489916,0.33973,0.137964,0.335,0.558411,0.346924,0.717607,0.0939055,0.728217,0.532305,0.499778,0.209854,0.302031,0.797803,0.893813,0.319176,0.970692,0.095839,0.541878,0.33475,0.954468,0.201026,0.00392467,0.642038,0.1631,0.648178,0.739347,0.992243,0.366741,0.929586,0.282592,0.823832,0.225027,0.936986,0.136936,0.936542,0.956995,0.0784081,0.343554,0.283248,0.771946,0.465888,0.0206533,0.101555,0.43928,0.862674,0.936498,0.313582,0.745627,0.753826,0.694733,0.628447,0.221089,0.811941,0.644819,0.067897,0.381914,0.0578235,0.940648,0.685715,0.405091,0.16186,0.220014,0.479268,0.909105,0.791855,0.897933,0.905393,0.559734,0.113644,0.542184,0.860536,0.207108,0.528876,0.296209,0.864715,0.334791,0.68652,0.119916,0.548321,0.946831,0.999304,0.956032,0.438357,0.133651,0.697967,0.594499,0.207435,0.149528,0.918034,0.783966,0.752279,0.15595,0.110301,0.768649,0.71128,0.83879,0.500405,0.647073,0.831025,0.586454,0.936201,0.550885,0.535056,0.713099,0.0584461,0.18815,0.22321,0.733739,0.749184,0.382734,0.325732,0.519581,0.647242,0.0452138,0.0683197,0.298959,0.597779,0.178701,0.450389,0.272158,0.310797,0.468552,0.79777,0.19453,0.433228,0.0267228,0.629399,0.400978,0.130667,0.22222,0.935472,0.0163429,0.311765,0.408714,0.97658,0.477128,0.24773,0.442418,0.678613,0.391708,0.0946575,0.80031,0.950735,0.0803762,0.947755,0.787092,0.179,0.374207,0.143798,0.656755,0.586908,0.248097,0.378525,0.7006,0.583248,0.7508,0.589793,0.631567,0.819332,0.888252,0.696704,0.206697,0.934965,0.378374,0.637863,0.826939,0.271848,0.137885,0.280141,0.839004,0.76133,0.762532,0.145708,0.352698,0.793701,0.132605,0.696352,0.741545,0.0213007,0.616118,0.33848,0.676548,0.206094,0.741485,0.78422,0.00139052,0.960184,0.559104,0.00207669,0.775114,0.49284,0.69579,0.637427,0.473723,0.194516,0.50653,0.614099,0.134927,0.22841,0.0617719,0.593056,0.2885,0.15407,0.94936,0.162893,0.558827,0.698457,0.458973,0.278232,0.0370377,0.625252,0.68467,0.196043,0.0901499,0.221919,0.970581,0.190272,0.620594,0.422073,0.486524,0.818532,0.89746,0.995425,0.897143,0.482831,0.790628,0.562379,0.743144,0.0628287,0.493773,0.922825,0.712471,0.0508688,0.450953,0.457293,0.500297,0.634108,0.224984,0.501261,0.737766,0.787671,0.176274,0.061304,0.49985,0.752622,0.475772,0.210735,0.958581,0.82348,0.595115,0.541807,0.674116,0.866663,0.418243,0.418061,0.242079,0.262991,0.3004,0.876438,0.254421,0.76937,0.0124431,0.55715,0.921766,0.13188,0.403395,0.366179,0.505325,0.993808,0.141682,0.776438,0.764791,0.940783,0.217248,0.134472,0.653059,0.313528,0.150585,0.496737,0.168365,0.281105,0.627568,0.646325,0.777768,0.119177,0.821782,0.361514,0.984604,0.377865,0.860773,0.377136,0.263234,0.237642,0.749729,0.990219,0.602027,0.990006,0.345164,0.418164,0.820368,0.13919,0.770879,0.820365,0.702032,0.665429,0.353344,0.572731,0.127206,0.676881,0.0826406,0.497932,0.170472,0.0338957,0.87634,0.574552,0.32395,0.111957,0.0884603,0.0264444,0.509324,0.0349967,0.257602,0.678228,0.939487,0.336134,0.528145,0.289956,0.0532889,0.583256,0.298174,0.761637,0.449151,0.851765,0.154689,0.516345,0.223251,0.340808,0.577535,0.825469,0.238785,0.0349368,0.173714,0.125325,0.428263,0.303442,0.784253,0.98459,0.092084,0.205629,0.0662492,0.813584,0.546564,0.608356,0.106834,0.558157,0.404096,0.829879,0.232909,0.807353,0.474935,0.121633,0.816137,0.953474,0.47124,0.165968,0.310177,0.468353,0.997962,0.427629,0.077413,0.319291,0.490713,0.459625,0.0172814,0.391443,0.737128,0.52801,0.43215,0.502054,0.683028,0.24086,0.975792,0.112374,0.587273,0.324187,0.293713,0.675923,0.577259,0.892323,0.0292529,0.181604,0.737009,0.21939,0.799517,0.442465,0.574573,0.897751,0.219085,0.489949,0.927673,0.0808542,0.681553,0.116233,0.390724,0.540081,0.842211,0.859893,0.925941,0.0267146,0.511893,0.742744,0.372843,0.0490927,0.925302,0.105815,0.148582,0.242453,0.828647,0.829978,0.315243,0.492578,0.977095,0.0204316,0.278175,0.204812,0.583964,0.730358,0.847672,0.236158,0.0320041,0.302699,0.0557004,0.431165,0.206981,0.453547,0.436009,0.739299,0.554539,0.0745987,0.728888,0.432152,0.962778,0.633242,0.203833,0.771511,0.537805,0.420119,0.319865,0.452475,0.0720277,0.823308,0.92654,0.332651,0.453898,0.839045,0.596141,0.568734,0.730232,0.658089,0.678726,0.128132,0.207362,0.054,0.0231206,0.121642,0.379846,0.246205,0.00724846,0.581937,0.614938,0.590759,0.273443,0.148651,0.41348,0.888408,0.0436248,0.0164844,0.971091,0.718467,0.934545,0.562832,0.716075,0.967876,0.879722,0.375392,0.789283,0.488249,0.313103,0.764236,0.90205,0.683981,0.621591,0.36877,0.280901,0.534417,0.375026,0.498301,0.795253,0.0698468,0.72021,0.382974,0.993505,0.372188,0.940512,0.619457,0.135409,0.541957,0.821779,0.860267,0.236489,0.988873,0.359059,0.214273,0.841996,0.227218,0.193183,0.72333,0.588494,0.185626,0.62848,0.979137,0.813986,0.748645,0.334974,0.614612,0.410301,0.983711,0.959536,0.985617,0.915497,0.797575,0.720729,0.0872491,0.202096,0.113075,0.994064,0.632025,0.922391,0.108364,0.979395,0.2104,0.951883,0.16576,0.979227,0.474457,0.000939429,0.58886,0.281108,0.532645,0.447714,0.663039,0.422725,0.46876,0.367566,0.6342,0.503058,0.75327,0.896113,0.981792,0.965629,0.158419,0.791025,0.779687,0.863523,0.739748,0.861044,0.188306,0.761285,0.969668,0.90251,0.301818,0.137216,0.417229,0.525046,0.510139,0.692012,0.676283,0.14562,0.877579,0.85863,0.991864,0.676849,0.198096,0.683112,0.818784,0.408687,0.353599,0.564104,0.48557,0.67055,0.609978,0.36413,0.688809,0.406373,0.51009,0.268359,|0.676623,0.0420806,0.882439,0.269207,0.964531,0.461541,0.8672,0.3181,0.620188,0.943334,0.109129,0.326076,0.879259,0.383294,0.81489,0.59888,0.408001,0.29059,0.380322,0.283675,0.165483,0.174586,0.644009,0.793552,0.195762,0.555858,0.693026,0.714867,0.179446,0.181343,0.887431,0.820623,0.553803,0.528436,0.865515,0.68117,0.986745,0.0415466,0.232756,0.964002,0.494141,0.611099,0.370815,0.278767,0.263037,0.679837,0.390401,0.273559,0.408271,0.557544,0.833591,0.583638,0.380704,0.752235,0.66469,0.493274,0.780457,0.370551,0.658872,0.861153,0.456171,0.830012,0.287982,0.777321,0.0984032,0.0820227,0.062578,0.0247485,0.655383,0.939133,0.692972,0.268369,0.995705,0.564227,0.861827,0.9211,0.0242159,0.10405,0.0697488,0.42588,0.880061,0.245796,0.704947,0.821364,0.990627,0.00491011,0.867708,0.234573,0.661303,0.527429,0.17076,0.110785,0.799675,0.330096,0.296618,0.436999,0.590295,0.666323,0.666165,0.656425,0.283119,0.640133,0.911389,0.953604,0.595755,0.811274,0.523161,0.442588,0.0535541,0.701832,0.276456,0.902146,0.248522,0.906578,0.833961,0.682918,0.617728,0.419764,0.127383,0.339114,0.0383763,0.437938,0.876139,0.739827,0.358317,0.0804066,0.962736,0.619507,0.41519,0.781974,0.812805,0.497184,0.667575,0.453084,0.607908,0.167664,0.626014,0.0135978,0.450339,0.542151,0.148296,0.367472,0.108026,0.650241,0.214944,0.471233,0.823623,0.78025,0.15374,0.956952,0.74173,0.308488,0.872908,0.172752,0.633535,0.425456,0.649438,0.854089,0.990102,0.46942,0.473613,0.987226,0.97157,0.144932,0.598615,0.823766,0.694274,0.858914,0.584162,0.953862,0.7767,0.150173,0.046168,0.670579,0.73602,0.876738,0.495323,0.111164,0.663168,0.940416,0.263609,0.716141,0.383401,0.48383,0.832102,0.865854,0.0873329,0.459433,0.201483,0.469107,0.843089,0.51798,0.447506,0.280295,0.45846,0.376138,0.272702,0.926332,0.69756,0.8112,0.417231,0.681357,0.872451,0.51798,0.527687,0.464259,0.881254,0.554954,0.347353,0.000125706,0.187775,0.854874,0.301106,0.347357,0.66496,0.0592436,0.65005,0.250049,0.0777193,0.770084,0.0939622,0.442944,0.18272,0.576309,0.160567,0.68828,0.513314,0.775978,0.104709,0.503558,0.849847,0.111391,0.0498245,0.0115758,0.26428,0.947655,0.940317,0.242832,0.0683352,0.0109424,0.492851,0.100421,0.903169,0.42243,0.501577,0.394332,0.971238,0.49145,0.694316,0.247841,0.690625,0.0342668,0.966822,0.96889,0.535074,0.507535,0.968848,0.53424,0.760677,0.641781,0.145324,0.524732,0.738394,0.664037,0.820142,0.39496,0.33365,0.326097,0.145783,0.867386,0.169764,0.950768,0.989064,0.502944,0.688774,0.588889,0.120683,0.29486,0.969506,0.34918,0.662198,0.644009,0.278541,0.403415,0.852727,0.133244,0.670806,0.562913,0.811189,0.874547,0.651798,0.956447,0.126503,0.988807,0.876159,0.210394,0.470925,0.555632,0.623523,0.798989,0.969391,0.922116,0.231748,0.125396,0.129063,0.942288,0.786424,0.845523,0.875647,0.0477382,0.407853,0.67863,0.293828,0.425017,0.05856,0.660376,0.457558,0.974745,0.704277,0.830118,0.328214,0.303261,0.223545,0.553561,0.270641,0.359822,0.724319,0.0298856,0.836025,0.290577,0.577564,0.959791,0.591532,0.301912,0.717739,0.395638,0.6443,0.823791,0.872276,0.995308,0.642363,0.112969,0.515406,0.409962,0.414178,0.865824,0.0984676,0.238095,0.620022,0.958525,0.748379,0.181734,0.508398,0.417199,0.0696617,0.00396395,0.214845,0.342975,0.936533,0.339015,0.954804,0.695628,0.234051,0.295546,0.965244,0.647738,0.550715,0.873615,0.0326242,0.927096,0.45212,0.724922,0.849196,0.447745,0.155592,0.771309,0.658683,0.465574,0.780999,0.456988,0.288194,0.395542,0.222184,0.317859,0.32746,0.521084,0.901266,0.252671,0.0184977,0.78891,0.845373,0.32274,0.661539,0.983308,0.193458,0.825109,0.562833,0.793557,0.907247,0.125161,0.658701,0.12127,0.285273,0.905312,0.215917,0.813156,0.129237,0.74495,0.897301,0.692206,0.253811,0.682857,0.59631,0.435453,0.217877,0.581634,0.298392,0.134563,0.802384,0.465784,0.11096,0.829167,0.577015,0.46768,0.844422,0.692425,0.998995,0.878176,0.065857,0.875755,0.742366,0.671435,0.0987436,0.603475,0.338207,0.0504063,0.445386,0.0657482,0.356134,0.238485,0.785589,0.927059,0.972106,0.290998,0.12863,0.839807,0.0259043,0.394268,0.267197,0.783339,0.221826,0.439724,0.138826,0.395156,0.296944,0.550817,0.411518,0.167351,0.244535,0.515472,0.0329127,0.646936,0.155845,0.936727,0.237146,0.702166,0.97136,0.182594,0.789841,0.464178,0.435274,0.888355,0.685537,0.198641,0.905858,0.531975,0.792126,0.922691,0.756019,0.895243,0.0331102,0.796048,0.257066,0.924326,0.153546,0.384014,0.734642,0.424926,0.10136,0.764564,0.654256,0.635704,0.86667,0.560501,0.246366,0.684498,0.207076,0.908979,0.21675,0.918029,0.0829607,0.474036,0.864626,0.0584871,0.850052,0.91422,0.457175,0.380522,0.666424,0.370184,0.659206,0.3443,0.874943,0.172991,0.713711,0.170469,0.527248,0.223044,0.842273,0.486601,0.456288,0.249672,0.316763,0.370083,0.247108,0.941767,0.324001,0.987955,0.535664,0.513078,0.694656,0.0128246,0.301359,0.626697,0.48667,0.537536,0.128172,0.213663,0.901386,0.0885407,0.664142,0.2826,0.74362,0.185128,0.615318,0.0208408,0.100525,0.45264,0.515047,0.228225,0.886564,0.661805,0.229579,0.427495,0.509361,0.833787,0.819811,0.207873,0.362867,0.44107,0.257548,0.0568855,0.103738,0.755431,0.607454,0.198303,0.461297,0.535003,0.700499,0.852551,0.79847,0.695418,0.177063,0.325504,0.601358,0.347681,0.610242,0.57246,0.299131,0.672282,0.431189,0.753244,0.943803,0.305906,0.251707,0.752774,0.3304,0.192421,0.784188,0.407046,0.840811,0.970253,0.723399,0.0816386,0.878548,0.210123,0.787103,0.97334,0.0435154,0.429912,0.0736067,0.298923,0.238692,0.274074,0.416213,0.936992,0.0787727,0.768471,0.400417,0.273947,0.935257,0.139881,0.031022,0.927558,0.320945,0.45434,0.805995,0.249811,0.834266,0.43401,0.93606,0.1805,0.485742,0.811014,0.0653903,0.444125,0.0403415,0.869972,0.521969,0.0197623,0.377718,0.670941,0.482892,0.694456,0.761624,0.496446,0.915098,0.961976,0.760643,0.104216,0.358341,0.818313,0.284894,0.121897,0.506989,0.999727,0.797037,0.157161,0.485079,0.908129,0.905617,0.303056,0.376893,0.157201,0.743943,0.679716,0.0939513,0.0635906,0.467226,0.862095,0.836068,0.123679,0.0129444,0.688838,0.644816,0.829169,0.703399,0.812716,0.616605,0.868796,0.384522,0.495518,0.910482,0.385889,0.0481195,0.570304,0.052574,0.188696,0.959199,0.676436,0.178898,0.378622,0.0730462,0.644635,0.860115,0.794385,0.735437,0.365131,0.198069,0.586171,0.0268306,0.411628,0.117861,0.634339,0.0310963,0.914119,0.0480143,0.772183,0.799704,0.596098,0.800318,0.12288,0.949966,0.101513,0.256989,0.873027,0.956612,0.685904,0.107139,0.800357,0.942402,0.486738,0.467412,0.757588,0.447735,0.497771,0.905352,0.160237,0.689197,0.205869,0.380852,0.610501,0.916686,0.756238,0.375705,0.487778,0.26044,0.0501732,0.135237,0.459107,0.465045,0.0268122,0.9859,0.07191,0.445443,0.430845,0.967494,0.138601,0.750519,0.265606,0.500847,0.636022,0.507143,0.075859,0.136947,0.432169,0.551834,0.384897,0.283107,0.00967962,0.241464,0.78824,0.49772,0.781952,0.870871,0.488092,0.180469,0.523381,0.805661,0.628924,0.472109,0.0577202,0.324315,0.614375,0.633166,0.556618,0.0901201,0.205625,0.972329,0.89198,0.686521,0.926403,0.432745,0.57019,0.335508,0.936498,0.162079,0.789099,0.710146,0.959063,0.256329,0.0268754,0.703703,0.233604,0.696645,0.60626,0.208629,0.696416,0.151814,0.278334,0.399106,0.84941,0.337513,0.0274677,0.487226,0.611432,0.0456448,0.540293,0.855235,0.923824,0.901666,0.108804,0.77402,0.587252,0.941846,0.131606,0.276354,0.921221,0.730815,0.533031,0.805722,0.141696,0.181352,0.0362879,0.167926,0.60866,0.536824,0.664584,0.4904,0.720011,0.603235,0.0207853,0.363787,0.258418,0.0146747,0.915377,0.851911,0.48579,0.338753,0.705128,0.552474,0.0969536,0.940993,0.517459,0.662751,0.27382,0.578416,0.28634,0.504649,0.948994,0.402653,0.970904,0.852955,0.620243,0.679236,0.968779,0.0699824,0.380121,0.831258,0.339449,0.541953,0.729398,0.230326,0.333346,0.352617,0.9037,0.328066,0.0223989,0.450382,0.457374,0.193422,0.182842,0.598936,0.747289,0.0393581,0.036177,0.960462,0.286597,0.718265,0.613876,0.967295,0.749266,0.0188818,0.0701737,0.370885,0.0248334,0.41067,0.468008,0.257458,0.911784,0.32304,0.658337,0.0970352,0.254905,0.784979,0.875232,0.502957,0.284904,0.0547853,0.0249099,0.340971,0.750978,0.665031,0.318384,0.522908,0.712317,0.00622886,0.933604,0.0935954,0.57186,0.539602,0.356736,0.312692,0.0707577,0.875408,0.65224,0.679193,0.0732436,0.731306,0.71753,0.3655,0.965415,0.527644,0.302683,0.853852,0.284378,0.118769,0.255862,0.661179,0.39228,0.622506,0.517342,0.418276,0.0913653,0.890587,0.645996,0.218615,0.954404,0.409686,0.394513,0.350287,0.290161,0.353707,0.874627,0.132504,0.531903,0.191797,0.108944,0.228141,0.388054,0.815931,0.455947,0.246096,0.53667,0.735926,0.77873,0.82004,0.0700982,0.779113,0.223104,0.239744,0.731434,0.931733,0.491898,0.964355,0.544231,0.785359,0.89838,0.543757,0.250782,0.446002,0.88618,0.845468,0.116936,0.27837,0.171128,0.120949,0.386119,0.244907,0.466319,0.0797594,0.847105,0.146789,0.451745,0.672639,0.130118,0.656099,0.978366,0.481933,0.435017,0.63964,0.575936,0.648835,0.817409,0.116282,0.750707,0.943465,0.911381,0.670088,0.0467635,0.695965,0.751326,0.435697,0.899419,0.966464,0.119504,0.298188,0.395734,0.997825,0.918775,|0.10602,0.184005,0.0722783,0.108303,0.669157,0.795178,0.192746,0.248938,0.632823,0.703875,0.435254,0.946788,0.66817,0.852611,0.122326,0.213809,0.187894,0.364035,0.121759,0.475635,0.46174,0.291031,0.67456,0.288936,0.0448341,0.466978,0.64015,0.161075,0.871278,0.654478,0.995498,0.737551,0.700524,0.186575,0.758929,0.278285,0.907249,0.3049,0.172497,0.254844,0.00981194,0.592853,0.678803,0.324076,0.258796,0.553976,0.529967,0.36016,0.107061,0.00961667,0.634847,0.326201,0.393684,0.645833,0.658537,0.955177,0.748305,0.326591,0.460059,0.397368,0.123122,0.874775,0.155246,0.927829,0.6731,0.999646,0.0840789,0.702478,0.0407324,0.0264296,0.0989524,0.4239,0.209832,0.886941,0.680945,0.579283,0.970586,0.334661,0.157838,0.47991,0.79914,0.659831,0.101815,0.0857714,0.714239,0.681278,0.414501,0.420389,0.559844,0.96037,0.853059,0.231295,0.714687,0.667349,0.616822,0.863143,0.864692,0.334816,0.150843,0.329261,0.183854,0.336265,0.885995,0.0187994,0.911098,0.945348,0.933781,0.871273,0.0176858,0.348843,0.866963,0.415578,0.426383,0.257045,0.0952445,0.948127,0.835312,0.509641,0.416347,0.883253,0.404924,0.320298,0.782029,0.191315,0.656689,0.311143,0.567375,0.954936,0.245752,0.260526,0.46895,0.173573,0.831948,0.949648,0.0590565,0.937545,0.149772,0.567132,0.0950787,0.903118,0.0364164,0.287055,0.781278,0.712224,0.726099,0.71748,0.398484,0.178552,0.414303,0.664083,0.887087,0.369554,0.00846213,0.0601048,0.282731,0.0804139,0.30203,0.612061,0.769213,0.719806,0.0417961,0.302649,0.959444,0.0672547,0.522172,0.970845,0.108588,0.250758,0.843234,0.973314,0.47409,0.0558329,0.522381,0.725686,0.352212,0.484806,0.307821,0.524133,0.410052,0.88688,0.706688,0.772186,0.969367,0.29168,0.132812,0.924803,0.892487,0.86891,0.586239,0.411971,0.838563,0.827038,0.832565,0.96161,0.975264,0.578878,0.838328,0.409601,0.263823,0.148787,0.550233,0.992413,0.546835,0.968858,0.695601,0.826254,0.78179,0.753866,0.709121,0.801607,0.964067,0.656449,0.631439,0.176955,0.92564,0.0626473,0.22347,0.419413,0.431077,0.496385,0.228323,0.375428,0.296433,0.660295,0.659481,0.829496,0.697334,0.129687,0.913849,0.476503,0.285403,0.612421,0.70061,0.851024,0.122043,0.104348,0.816295,0.634671,0.925693,0.83609,0.33769,0.802659,0.0414172,0.394035,0.908466,0.276863,0.504063,0.304313,0.700513,0.468263,0.520047,0.141691,0.701951,0.806775,0.298292,0.951802,0.608139,0.359952,0.804674,0.0678711,0.543637,0.181287,0.788643,0.265154,0.653324,0.351069,0.256848,0.265976,0.32039,0.618023,0.305636,0.336788,0.0854207,0.0578843,0.0810632,0.0168934,0.671976,0.844686,0.377671,0.305978,0.893233,0.362328,0.10533,0.209629,0.425237,0.393549,0.653529,0.146216,0.945222,0.842645,0.42961,0.201357,0.121012,0.476714,0.869072,0.997645,0.299744,0.3421,0.243961,0.737552,0.70329,0.781271,0.0258434,0.127036,0.881203,0.401961,0.835711,0.0759472,0.358756,0.759215,0.599601,0.823264,0.889631,0.268403,0.390899,0.1824,0.911193,0.992805,0.401237,0.838214,0.387182,0.723586,0.371362,0.0851086,0.799317,0.10308,0.225137,0.918326,0.648894,0.937141,0.316088,0.677378,0.27108,0.966355,0.277123,0.188741,0.808684,0.916507,0.257915,0.0117954,0.17226,0.0928247,0.12324,0.498345,0.894133,0.817183,0.97358,0.497805,0.626225,0.369135,0.455486,0.196481,0.553576,0.338325,0.932245,0.841673,0.0658097,0.907551,0.913795,0.555785,0.165283,0.582576,0.882809,0.825333,0.460444,0.178598,0.565062,0.630768,0.0425028,0.405399,0.207343,0.28144,0.473216,0.967767,0.990631,0.0185176,0.624764,0.0425617,0.544523,0.571193,0.719822,0.478524,0.48656,0.29996,0.527549,0.455688,0.788863,0.439085,0.822695,0.0822948,0.834752,0.108888,0.122929,0.329723,0.379298,0.0854018,0.97528,0.142891,0.422325,0.875183,0.832369,0.134958,0.530147,0.253505,0.316682,0.0262043,0.292762,0.629948,0.00501806,0.954544,0.677955,0.0868633,0.710875,0.33195,0.685364,0.429671,0.189233,0.551961,0.134254,0.74111,0.0628924,0.529525,0.200195,0.103853,0.137292,0.957349,0.328935,0.357656,0.665815,0.683702,0.88446,0.855002,0.221354,0.774255,0.471217,0.661683,0.809772,0.665119,0.92766,0.35498,0.976978,0.97622,0.306743,0.968621,0.262752,0.561583,0.846799,0.223892,0.183034,0.268427,0.261752,0.0355486,0.319499,0.0297598,0.116456,0.367159,0.622166,0.401241,0.929116,0.887725,0.658067,0.448386,0.122024,0.612932,0.569919,0.348591,0.259741,0.23004,0.813368,0.986561,0.0990503,0.0152956,0.916222,0.524633,0.770326,0.37987,0.106733,0.671397,0.387507,0.361588,0.392451,0.347736,0.693782,0.280795,0.657771,0.439176,0.708573,0.566117,0.789739,0.790496,0.380874,0.0972779,0.522802,0.34868,0.431249,0.885374,0.950228,0.287885,0.145205,0.273544,0.997047,0.550749,0.986917,0.0332405,0.79272,0.2455,0.222875,0.256968,0.0455346,0.0852076,0.830887,0.871903,0.557556,0.487134,0.138075,0.247386,0.454393,0.920336,0.972767,0.967395,0.566863,0.612914,0.922495,0.568513,0.900323,0.306081,0.541267,0.89119,0.474064,0.208203,0.022754,0.887431,0.620152,0.362879,0.435315,0.495126,0.0388917,0.00387406,0.753384,0.493572,0.723898,0.849517,0.375736,0.697828,0.567779,0.988934,0.230987,0.860766,0.544919,0.0977527,0.905153,0.512957,0.020022,0.28878,0.0729699,0.604365,0.337425,0.517194,0.515881,0.463193,0.14375,0.820761,0.137939,0.184912,0.706602,0.312787,0.313766,0.119426,0.26581,0.765722,0.615384,0.593758,0.0193273,0.52459,0.55914,0.269006,0.611625,0.398346,0.421584,0.155954,0.967127,0.757815,0.981226,0.222806,0.807364,0.736946,0.684011,0.804061,0.687908,0.753755,0.491891,0.999029,0.826424,0.821315,0.473634,0.173489,0.438002,0.755437,0.341574,0.982043,0.153483,0.196154,0.266611,0.0438173,0.231332,0.848035,0.211145,0.534065,0.542017,0.285097,0.164554,0.618115,0.819061,0.189968,0.650951,0.978527,0.336835,0.251934,0.670127,0.271492,0.341842,0.782489,0.678225,0.381362,0.795451,0.380347,0.913753,0.101745,0.0362669,0.739595,0.890074,0.173506,0.906637,0.518673,0.588097,0.83177,0.184192,0.956677,0.551134,0.573223,0.77855,0.396606,0.963453,0.824309,0.576883,0.759132,0.138068,0.884747,0.0468462,0.0597706,0.769241,0.93315,0.993587,0.317514,0.0859597,0.461637,0.989746,0.0644234,0.889724,0.387676,0.0670183,0.295126,0.0975146,0.984586,0.53121,0.511189,0.817881,0.824713,0.479027,0.76547,0.18037,0.854469,0.680755,0.717801,0.638202,0.0909214,0.388555,0.536913,0.881788,0.447297,0.336301,0.968565,0.460537,0.0427566,0.55852,0.0759758,0.0625579,0.684474,0.416623,0.314696,0.623973,0.308611,0.185008,0.0379287,0.955763,0.210773,0.771741,0.22812,0.49799,0.191891,0.535615,0.316065,0.414378,0.814656,0.0172977,0.13851,0.678515,0.728673,0.606011,0.125464,0.134152,0.507293,0.379979,0.0895695,0.417367,0.215311,0.429272,0.318403,0.534708,0.598472,0.991327,0.593137,0.425108,0.903505,0.643364,0.00902271,0.30585,0.87701,0.0385967,0.712488,0.629587,0.233759,0.265278,0.453645,0.363033,0.37164,0.878441,0.179258,0.227128,0.990843,0.628903,0.913184,0.63577,0.133576,0.929069,0.49274,0.0176498,0.868467,0.604953,0.0251161,0.960157,0.42289,0.836031,0.100848,0.592577,0.65799,0.422319,0.60748,0.114815,0.636098,0.899627,0.0508577,0.152376,0.632871,0.716684,0.807613,0.229681,0.330405,0.337316,0.556069,0.487496,0.235867,0.917461,0.473071,0.178329,0.359477,0.949303,0.545818,0.366296,0.171677,0.905257,0.0261983,0.630874,0.959479,0.181872,0.710952,0.661488,0.507003,0.566024,0.669353,0.0877071,0.440525,0.862007,0.543865,0.49833,0.156778,0.0881373,0.0081982,0.254932,0.302431,0.0620205,0.557105,0.801769,0.437783,0.427252,0.622928,0.245151,0.861362,0.542242,0.0686601,0.285749,0.80429,0.976796,0.988929,0.620293,0.0998354,0.595977,0.859588,0.269902,0.0786488,0.415484,0.799736,0.242696,0.0432074,0.258988,0.196473,0.587096,0.390412,0.102555,0.878225,0.187716,0.42575,0.656114,0.416635,0.345729,0.481085,0.749583,0.864744,0.676599,0.311317,0.320852,0.591583,0.632357,0.191387,0.727285,0.599317,0.479187,0.0740134,0.714427,0.920554,0.169581,0.362615,0.780956,0.673925,0.510919,0.773854,0.0486979,0.115819,0.0805726,0.606353,0.110259,0.127156,0.4364,0.493419,0.582007,0.545204,0.506153,0.373083,0.923039,0.170324,0.395126,0.175946,0.314776,0.60925,0.189797,0.526051,0.7206,0.857351,0.429832,0.884634,0.886767,0.646282,0.835077,0.0646433,0.856241,0.522562,0.546284,0.707823,0.312839,0.579771,0.80355,0.278094,0.519524,0.999118,0.0300321,0.661095,0.70526,0.328013,0.333046,0.310497,0.0997652,0.181587,0.89656,0.121984,0.63783,0.683061,0.455724,0.834761,0.587566,0.151902,0.686387,0.895777,0.673925,0.907769,0.453712,0.535874,0.351035,0.530762,0.695633,0.948388,0.0621661,0.897207,0.829121,0.314046,0.28763,0.402802,0.834675,0.593863,0.0806561,0.370323,0.50501,0.468611,0.989895,0.239846,0.0530136,0.485457,0.547507,0.937082,0.0445956,0.621472,0.416815,0.1311,0.936233,0.271477,0.516955,0.368556,0.211281,0.526018,0.32199,0.252807,0.0749266,0.438426,0.156959,0.974505,0.232911,0.610366,0.424983,0.430341,0.800172,0.827292,0.816547,0.553201,0.678897,0.610418,0.532018,0.570343,0.465199,0.919461,0.284022,0.937635,0.802227,0.258246,0.649784,0.657227,0.511231,0.985187,0.608112,0.777707,0.532964,0.364539,0.789407,0.967164,0.744004,0.0606316,0.213256,0.732928,0.912145,0.166968,0.0401976,0.305586,0.0623158,0.208469,0.204931,0.87585,0.989367,0.914214,0.859806,0.22161,0.126297,0.234249,|0.287753,0.506632,0.460052,0.766482,0.312451,0.896561,0.788029,0.747131,0.308416,0.566302,0.827907,0.988246,0.337107,0.981242,0.0971942,0.78817,0.315294,0.184125,0.388232,0.405673,0.115637,0.463614,0.180869,0.0135341,0.282625,0.0387225,0.108602,0.733615,0.34929,0.336767,0.994311,0.25544,0.686334,0.120631,0.516907,0.176437,0.259696,0.776696,0.818241,0.24473,0.593178,0.785625,0.833558,0.786633,0.81425,0.421266,0.134404,0.184846,0.48695,0.910434,0.835184,0.937847,0.245458,0.103854,0.426827,0.390635,0.696304,0.461867,0.0451444,0.261608,0.888015,0.658619,0.541725,0.464642,0.549763,0.432427,0.489493,0.814891,0.0272943,0.737632,0.309758,0.351183,0.213201,0.416625,0.57689,0.369828,0.30492,0.253053,0.756568,0.324255,0.646895,0.0810995,0.37042,0.607495,0.714466,0.848257,0.77071,0.873161,0.789011,0.53656,0.021098,0.813617,0.0745727,0.768905,0.434424,0.141028,0.532671,0.817188,0.48289,0.714216,0.36023,0.270096,0.360519,0.772134,0.401904,0.0969447,0.145807,0.880788,0.78919,0.0760885,0.021335,0.733179,0.523045,0.898718,0.240522,0.6046,0.850043,0.340238,0.507145,0.396332,0.973826,0.0458673,0.654651,0.869862,0.327139,0.289915,0.880883,0.587251,0.573451,0.712186,0.325474,0.402952,0.0781262,0.218475,0.604293,0.612776,0.506636,0.539391,0.3356,0.872696,0.754479,0.0098834,0.0107383,0.476292,0.154877,0.445292,0.258565,0.240964,0.995329,0.923954,0.0247399,0.481664,0.982787,0.869712,0.335965,0.245779,0.00440836,0.266261,0.206155,0.701964,0.858615,0.462578,0.508261,0.868508,0.00275362,0.404146,0.179356,0.188296,0.457368,0.732326,0.340255,0.634392,0.425149,0.0857441,0.92482,0.634876,0.65841,0.764926,0.311631,0.199547,0.909782,0.945056,0.74469,0.875316,0.154043,0.931471,0.446671,0.231296,0.20761,0.108913,0.651168,0.101341,0.898117,0.51623,0.143458,0.0175909,0.402992,0.222871,0.640297,0.0963717,0.932039,0.74852,0.0378141,0.691197,0.961047,0.302327,0.194388,0.217645,0.289582,0.584114,0.55459,0.962947,0.408426,0.513303,0.183387,0.169808,0.0894045,0.0310857,0.833397,0.280696,0.181942,0.422254,0.203454,0.0674765,0.00951242,0.473512,0.557742,0.939493,0.179153,0.100088,0.278242,0.0250961,0.321054,0.202267,0.136653,0.284681,0.226537,0.664007,0.725602,0.754148,0.252354,0.765092,0.668726,0.575479,0.853255,0.229585,0.230651,0.385795,0.91629,0.0908353,0.771356,0.245345,0.404916,0.388031,0.194296,0.500484,0.113019,0.820294,0.495542,0.230892,0.549767,0.774222,0.50101,0.604871,0.0473548,0.506847,0.163927,0.383583,0.162843,0.685251,0.0784875,0.921257,0.43143,0.159727,0.0936169,0.56668,0.276338,0.0368972,0.135473,0.597334,0.490569,0.274703,0.291647,0.269699,0.697693,0.191355,0.71317,0.701676,0.0291246,0.806033,0.795514,0.828356,0.687604,0.161125,0.402359,0.110678,0.435161,0.0623335,0.688531,0.231161,0.767396,0.300188,0.568545,0.0129606,0.0078283,0.838882,0.01113,0.0282117,0.623386,0.682742,0.240761,0.373577,0.153425,0.471109,0.651012,0.287026,0.939996,0.38125,0.957711,0.885291,0.981434,0.830612,0.251274,0.447557,0.767803,0.927574,0.281525,0.992463,0.24932,0.416154,0.531699,0.197072,0.544427,0.213776,0.811228,0.253554,0.0513934,0.711677,0.680511,0.989394,0.217341,0.961439,0.44049,0.208811,0.729946,0.387864,0.636899,0.799282,0.734976,0.250288,0.699794,0.456478,0.378024,0.52523,0.366821,0.279366,0.980454,0.904706,0.330332,0.66406,0.0477841,0.628286,0.269404,0.742028,0.550443,0.00671309,0.74101,0.801031,0.0529491,0.048903,0.165302,0.550805,0.510709,0.276291,0.286799,0.143121,0.843858,0.0566108,0.634069,0.667482,0.245574,0.64316,0.946487,0.387952,0.70942,0.506169,0.163788,0.331769,0.907978,0.31092,0.745449,0.877421,0.94576,0.246341,0.984605,0.563131,0.633533,0.494151,0.514306,0.409935,0.0684449,0.310122,0.891688,0.108899,0.0816526,0.377776,0.464616,0.742437,0.73056,0.302641,0.827604,0.732525,0.561931,0.96061,0.0559499,0.676715,0.593262,0.216906,0.338344,0.989225,0.709273,0.134325,0.817915,0.795018,0.694296,0.51079,0.95086,0.121884,0.626082,0.843494,0.179723,0.503275,0.814056,0.536077,0.880284,0.285552,0.0722261,0.59449,0.139294,0.606722,0.92761,0.695291,0.917382,0.231132,0.849275,0.528222,0.677676,0.856804,0.977649,0.785886,0.86954,0.950174,0.140206,0.638588,0.866126,0.203159,0.0639842,0.842182,0.0902853,0.044615,0.715685,0.274619,0.509591,0.982011,0.350906,0.605368,0.937504,0.442883,0.475139,0.112733,0.58063,0.152425,0.736938,0.00216591,0.252463,0.247425,0.0350595,0.721335,0.319714,0.590162,0.00124496,0.786892,0.399259,0.900332,0.12553,0.887677,0.898032,0.579125,0.632412,0.421087,0.797294,0.904802,0.453695,0.114037,0.504264,0.0473329,0.175064,0.607801,0.528611,0.915551,0.758146,0.234391,0.725624,0.532636,0.897708,0.826774,0.31883,0.0676257,0.153669,0.427142,0.169302,0.105851,0.690713,0.253811,0.543322,0.413941,0.416592,0.460285,0.350077,0.507452,0.48302,0.591147,0.782674,0.356972,0.973686,0.469698,0.829911,0.748623,0.608239,0.981129,0.749597,0.468507,0.306877,0.311291,0.736007,0.550442,0.0344521,0.401456,0.380851,0.707505,0.891785,0.468849,0.907152,0.0975665,0.266457,0.685585,0.958429,0.00711602,0.777638,0.165969,0.889964,0.841926,0.888585,0.828548,0.339895,0.524199,0.454485,0.626746,0.431277,0.000520229,0.548099,0.737622,0.962661,0.281588,0.591627,0.684566,0.489156,0.59207,0.606023,0.0285389,0.826668,0.759655,0.57922,0.155329,0.366302,0.915659,0.0214885,0.478744,0.961599,0.233056,0.680501,0.134667,0.487314,0.330791,0.895155,0.266268,0.295365,0.694191,0.0710897,0.465892,0.403516,0.465936,0.710794,0.215909,0.610663,0.329633,0.901936,0.846854,0.981488,0.671146,0.693402,0.997384,0.527387,0.247988,0.860671,0.909688,0.175394,0.242582,0.784264,0.160313,0.225933,0.336408,0.407836,0.800846,0.644469,0.815964,0.955666,0.586451,0.384415,0.401485,0.528872,0.985364,0.347294,0.342457,0.0152707,0.717278,0.624983,0.155406,0.857887,0.00557292,0.134378,0.128184,0.0847625,0.862329,0.285401,0.203774,0.892715,0.051082,0.30164,0.414838,0.759718,0.159402,0.16825,0.63752,0.371415,0.710158,0.355019,0.725848,0.957653,0.663783,0.84471,0.0230524,0.443966,0.948246,0.739954,0.903776,0.023115,0.978862,0.44609,0.757622,0.360481,0.898608,0.725627,0.164555,0.370691,0.622774,0.0934895,0.482152,0.642028,0.519621,0.465132,0.226973,0.177691,0.77571,0.150914,0.813438,0.571115,0.601132,0.931042,0.171546,0.801632,0.377222,0.457502,0.464818,0.291541,0.542383,0.757757,0.839396,0.243557,0.319128,0.980003,0.145458,0.725987,0.13252,0.660415,0.621151,0.440881,0.0955943,0.627931,0.482369,0.654294,0.777776,0.169981,0.42301,0.292108,0.735411,0.735198,0.328478,0.423347,0.0588053,0.975222,0.0218637,0.290302,0.226228,0.233519,0.260864,0.229967,0.19959,0.65232,0.151945,0.458408,0.233147,0.424403,0.818089,0.597503,0.18588,0.709451,0.555466,0.673823,0.962527,0.0719886,0.090951,0.888231,0.149686,0.479176,0.459933,0.543144,0.221433,0.00735539,0.161464,0.450088,0.973264,0.889323,0.286564,0.403453,0.287352,0.494864,0.377374,0.903059,0.593206,0.821284,0.491086,0.569271,0.346876,0.343968,0.57083,0.330301,0.508835,0.0837826,0.610622,0.818851,0.632256,0.322693,0.69842,0.795562,0.510009,0.537568,0.34813,0.756583,0.78786,0.734607,0.5465,0.217362,0.00800765,0.583502,0.271433,0.0375609,0.285845,0.129479,0.798654,0.0217304,0.457502,0.595161,0.526098,0.368924,0.70422,0.720683,0.910761,0.109473,0.77027,0.103558,0.531562,0.0817805,0.978343,0.769132,0.349677,0.139026,0.941834,0.456188,0.760165,0.979172,0.390099,0.723008,0.996289,0.463674,0.570968,0.32258,0.0637776,0.256606,0.0788925,0.693603,0.554156,0.910301,0.40582,0.575511,0.123561,0.649402,0.859795,0.540659,0.569179,0.606487,0.251257,0.708628,0.87864,0.979599,0.131783,0.997699,0.0430074,0.705554,0.905121,0.793803,0.965047,0.0947163,0.564726,0.0489403,0.495774,0.922476,0.429983,0.153706,0.190474,0.98567,0.732573,0.95561,0.167131,0.342247,0.382178,0.144817,0.194993,0.0996523,0.67341,0.98887,0.6617,0.0612805,0.603248,0.886545,0.818689,0.45133,0.408292,0.188655,0.174324,0.768289,0.333736,0.17548,0.0958754,0.555681,0.606423,0.896757,0.679407,0.523663,0.317281,0.907444,0.161855,0.677956,0.969396,0.598894,0.059713,0.0988491,0.393909,0.775092,0.586321,0.0039472,0.718633,0.994211,0.600846,0.538828,0.631997,0.67272,0.546779,0.152929,0.574186,0.623363,0.619307,0.536874,0.98723,0.0352001,0.673257,0.160948,0.566499,0.347694,0.0163811,0.712203,0.540516,0.0111683,0.136499,0.574064,0.222166,0.604338,0.473816,0.854381,0.903981,0.65372,0.430016,0.934472,0.0990618,0.650243,0.134376,0.115279,0.935125,0.564507,0.198312,0.61252,0.474763,0.611867,0.304608,0.347384,0.42587,0.0209413,0.608533,0.461475,0.377432,0.250033,0.696804,0.561083,0.171664,0.855916,0.97477,0.64751,0.551007,0.872784,0.888228,0.7488,0.373402,0.491385,0.904873,0.466093,0.741577,0.200724,0.235368,0.211477,0.867706,0.84992,0.83587,0.709148,0.638946,0.924022,0.872222,0.961716,0.0176761,0.862062,0.284994,0.470452,0.430029,0.0093236,0.0909368,0.146858,0.477597,0.0312702,0.794956,0.0995874,0.00115401,0.965615,0.289181,0.225389,0.593136,0.680541,0.852607,0.935351,0.921775,0.972899,0.132545,0.236458,0.527661,0.354513,0.678867,0.552894,0.932791,0.28736,0.547652,0.427256,0.651784,0.725735,0.487062,0.79383,0.447409,0.480413,0.132018,0.692557,0.0745359,0.416099,0.715778,|0.0762691,0.250085,0.387655,0.0539485,0.772672,0.623632,0.164386,0.922239,0.520143,0.955329,0.859476,0.0189672,0.422281,0.0700043,0.61234,0.86538,0.74595,0.189745,0.679625,0.277877,0.852276,0.673749,0.810264,0.678979,0.750059,0.208689,0.785591,0.541347,0.574987,0.907265,0.0161476,0.844442,0.300737,0.840731,0.21055,0.447454,0.584393,0.595304,0.145069,0.404506,0.804517,0.833706,0.88178,0.139568,0.934659,0.282801,0.557738,0.687488,0.361699,0.169966,0.234941,0.610264,0.926216,0.158593,0.371798,0.344207,0.140631,0.74492,0.900076,0.341613,0.241546,0.0987238,0.235224,0.32361,0.942436,0.782011,0.572383,0.313054,0.225887,0.921904,0.340928,0.616828,0.649387,0.522875,0.9949,0.122034,0.946022,0.366908,0.275863,0.573886,0.174289,0.090373,0.516137,0.274141,0.333922,0.168848,0.263421,0.145315,0.193451,0.679726,0.678966,0.462561,0.62321,0.515099,0.0275179,0.373734,0.25125,0.66473,0.377024,0.899583,0.0388219,0.73994,0.440459,0.0285931,0.181718,0.0980259,0.123012,0.0836654,0.565957,0.451037,0.137227,0.390367,0.558695,0.543434,0.915691,0.755375,0.860949,0.294375,0.812783,0.0350193,0.224203,0.762437,0.501394,0.975503,0.427529,0.200034,0.386467,0.461006,0.996973,0.675611,0.724607,0.040795,0.921699,0.849558,0.949968,0.850486,0.561289,0.329522,0.244596,0.971937,0.0187424,0.118773,0.173808,0.0339596,0.665508,0.630909,0.355657,0.121378,0.933363,0.476325,0.999314,0.868485,0.746354,0.395368,0.214025,0.585121,0.434655,0.492759,0.250805,0.94322,0.212248,0.656454,0.204944,0.255878,0.211331,0.37679,0.272918,0.961353,0.210824,0.490793,0.570548,0.000193954,0.249709,0.0522177,0.448539,0.377929,0.56886,0.325595,0.890684,0.742112,0.626204,0.433854,0.0125614,0.47796,0.579015,0.390235,0.789073,0.439229,0.981059,0.764038,0.465921,0.258869,0.391694,0.693931,0.622503,0.860922,0.220913,0.611839,0.806917,0.0753421,0.287935,0.235568,0.711916,0.543016,0.14424,0.411206,0.917475,0.662592,0.458364,0.462191,0.4695,0.247344,0.809799,0.300732,0.160867,0.230241,0.957089,0.810194,0.0407099,0.0637364,0.917537,0.845377,0.929123,0.49654,0.108567,0.28451,0.995025,0.525971,0.529441,0.0175943,0.000341952,0.728955,0.985612,0.00575989,0.571081,0.813796,0.361305,0.545887,0.834482,0.737465,0.576275,0.922626,0.293494,0.436132,0.838892,0.122651,0.87595,0.200747,0.275416,0.376078,0.952247,0.957829,0.916982,0.953818,0.498124,0.740193,0.889134,0.498393,0.659454,0.495469,0.894202,0.813181,0.42183,0.863635,0.287293,0.35226,0.539756,0.714232,0.701446,0.0809292,0.283789,0.848117,0.473599,0.00449324,0.197089,0.355491,0.0636193,0.305335,0.508567,0.217829,0.210881,0.847845,0.0182795,0.711427,0.237005,0.74352,0.766545,0.283906,0.897294,0.221582,0.475605,0.632017,0.712369,0.109907,0.132707,0.672654,0.670957,0.44332,0.350061,0.409733,0.361373,0.50879,0.960607,0.189901,0.623517,0.132583,0.764111,0.92775,0.014069,0.82802,0.416737,0.861299,0.190702,0.753095,0.894846,0.117737,0.122455,0.735091,0.330031,0.226046,0.872464,0.26415,0.192581,0.97405,0.0160875,0.389329,0.266915,0.209618,0.771735,0.457515,0.324069,0.366887,0.521384,0.411862,0.296175,0.0388101,0.307259,0.070945,0.443638,0.170519,0.0761723,0.0540145,0.733253,0.220415,0.230761,0.679712,0.49644,0.727008,0.231338,0.454833,0.716816,0.480168,0.917038,0.971669,0.598638,0.0121623,0.917432,0.264196,0.983562,0.422024,0.644064,0.0218333,0.698853,0.0289689,0.998902,0.975816,0.0401447,0.732849,0.739067,0.657778,0.794844,0.435945,0.938606,0.62886,0.974352,0.6841,0.109915,0.724945,0.264021,0.435628,0.4863,0.966807,0.298837,0.322423,0.455464,0.170237,0.601336,0.247495,0.529533,0.428337,0.0638616,0.315686,0.241834,0.224955,0.767676,0.490496,0.00789791,0.0418721,0.466546,0.287386,0.505737,0.170301,0.391998,0.74251,0.00447977,0.387905,0.922853,0.0907427,0.0659929,0.693865,0.649738,0.606568,0.423875,0.86425,0.0749692,0.488537,0.923708,0.181144,0.285934,0.813622,0.328591,0.082549,0.187632,0.314201,0.207596,0.0056932,0.0962993,0.553308,0.831238,0.244141,0.665277,0.33972,0.117909,0.292172,0.73302,0.648683,0.887792,0.849884,0.613362,0.171683,0.75303,0.679682,0.113743,0.174135,0.535572,0.569835,0.704535,0.0292885,0.432386,0.765899,0.778264,0.257045,0.0762897,0.742495,0.298867,0.568195,0.265917,0.146243,0.949637,0.853299,0.260794,0.103257,0.896437,0.155412,0.904811,0.562652,0.807155,0.695436,0.972763,0.214702,0.200647,0.480043,0.594885,0.0373789,0.760095,0.155494,0.165958,0.57162,0.0285752,0.0431502,0.964884,0.468606,0.45561,0.913843,0.252907,0.684947,0.289698,0.178072,0.203394,0.604583,0.649628,0.511621,0.321108,0.452359,0.855518,0.660001,0.678639,0.616338,0.466624,0.817325,0.338319,0.0145044,0.154363,0.401353,0.794526,0.0557126,0.29837,0.577433,0.526237,0.13159,0.713328,0.0424081,0.12252,0.270814,0.0320879,0.876341,0.0389661,0.97006,0.850464,0.530249,0.377336,0.318664,0.724898,0.870459,0.265562,0.471425,0.693918,0.539398,0.716369,0.487702,0.0634667,0.698699,0.753352,0.304799,0.188788,0.567409,0.177345,0.722676,0.132532,0.870258,0.326498,0.310771,0.0776465,0.996165,0.670201,0.598936,0.638804,0.392012,0.476525,0.606851,0.200999,0.77048,0.00478655,0.190533,0.950785,0.444698,0.0417951,0.115455,0.787153,0.364496,0.942822,0.34696,0.862396,0.581798,0.373646,0.667223,0.496995,0.716199,0.119671,0.840845,0.049575,0.271168,0.943816,0.0169326,0.873139,0.594388,0.308157,0.363666,0.531734,0.732921,0.783889,0.521191,0.42177,0.163879,0.597535,0.987272,0.108952,0.928228,0.382934,0.131875,0.190435,0.57069,0.418562,0.848988,0.621339,0.910963,0.0813573,0.978598,0.433721,0.849439,0.164877,0.969491,0.257357,0.510431,0.628656,0.572497,0.427467,0.992627,0.221745,0.588502,0.222669,0.0519622,0.819379,0.836567,0.0697232,0.167084,0.6883,0.969968,0.317171,0.138712,0.215126,0.85003,0.678035,0.280876,0.409267,0.82928,0.00494039,0.141596,0.935696,0.489705,0.202399,0.45572,0.29261,0.932158,0.136281,0.428073,0.0750891,0.604231,0.0826221,0.336977,0.731736,0.129691,0.139954,0.163833,0.769643,0.481874,0.952909,0.0017547,0.593885,0.159217,0.61925,0.466246,0.345178,0.969475,0.243237,0.10465,0.932054,0.300412,0.999636,0.275473,0.0238114,0.367431,0.59323,0.0934289,0.18285,0.93572,0.725784,0.585942,0.0179859,0.289884,0.115135,0.200975,0.971128,0.333488,0.0256373,0.792235,0.720652,0.532449,0.266192,0.892663,0.982185,0.942743,0.0349605,0.917344,0.0313448,0.238262,0.986474,0.23672,0.447765,0.311167,0.604656,0.238719,0.866554,0.225977,0.858221,0.82708,0.891638,0.995723,0.613502,0.133325,0.363639,0.291477,0.68927,0.588082,0.820028,0.997288,0.722821,0.346803,0.675347,0.800417,0.193433,0.942859,0.847849,0.707918,0.109845,0.723601,0.268725,0.773296,0.566842,0.640036,0.1862,0.15798,0.204587,0.23969,0.635292,0.0490173,0.427334,0.289411,0.414575,0.41348,0.339706,0.69629,0.360007,0.477616,0.550237,0.945809,0.67592,0.0452883,0.849114,0.560035,0.303748,0.578918,0.833288,0.310833,0.453144,0.735227,0.803284,0.0581041,0.116628,0.53395,0.195801,0.0901989,0.934991,0.928496,0.746819,0.923618,0.159301,0.944217,0.604037,0.790291,0.960569,0.951504,0.894837,0.462304,0.034938,0.936349,0.838435,0.457999,0.785734,0.323576,0.0964625,0.0898724,0.147684,0.739629,0.202319,0.555193,0.97201,0.675595,0.533315,0.537729,0.495357,0.0887493,0.69002,0.060538,0.8937,0.400998,0.664428,0.568181,0.509453,0.10073,0.969851,0.994632,0.849798,0.200105,0.782781,0.897612,0.559585,0.37658,0.975316,0.316617,0.858076,0.851462,0.568336,0.536915,0.84825,0.384143,0.737199,0.9865,0.298513,0.234109,0.884843,0.592107,0.0903055,0.72183,0.468618,0.238844,0.489406,0.800565,0.425401,0.992867,0.209752,0.830525,0.231246,0.907968,0.557272,0.161792,0.621129,0.282704,0.626975,0.99024,0.221771,0.281973,0.749311,0.635279,0.904504,0.850471,0.237613,0.662874,0.446661,0.917653,0.850732,0.131729,0.957569,0.24198,0.0824068,0.237688,0.367198,0.691244,0.221245,0.911587,0.268855,0.360596,0.852564,0.660881,0.800683,0.230624,0.681084,0.244872,0.5719,0.567177,0.0408841,0.844982,0.621168,0.543484,0.330169,0.527771,0.815237,0.180023,0.512236,0.487014,0.834045,0.275997,0.361084,0.119975,0.0362077,0.809118,0.481501,0.178446,0.285457,0.00149864,0.874962,0.0414431,0.777897,0.086506,0.118514,0.753413,0.33377,0.278106,0.664137,0.828638,0.265957,0.00161791,0.00879592,0.0389791,0.0756939,0.140086,0.380246,0.387886,0.357387,0.634385,0.466984,0.505184,0.886542,0.189154,0.830497,0.24425,0.342448,0.324255,0.161112,0.29982,0.816684,0.0317309,0.717061,0.205252,0.800171,0.36707,0.556559,0.301531,0.518807,0.0603477,0.992768,0.0248788,0.525784,0.196594,0.427234,0.656699,0.744129,0.914746,0.502011,0.716864,0.483908,0.566721,0.303173,0.598191,0.345366,0.573511,0.554195,0.156614,0.645374,0.600841,0.964436,0.251522,0.81198,0.124398,0.779121,0.576071,0.265593,0.0793132,0.223208,0.151923,0.85174,0.11519,0.684681,0.820865,0.564,0.166636,0.914871,0.00460494,0.350062,0.467474,0.966515,0.236349,0.875608,0.293503,0.326199,0.235758,0.23949,0.567075,0.360937,0.555716,0.93856,0.417987,0.934688,0.501324,0.845056,0.927768,0.989536,0.815417,0.00219595,0.0313922,0.467553,0.961469,0.451794,0.561516,0.212685,0.179733,0.462224,0.439964,0.279287,0.120192,0.944393,0.154583,0.797221,0.965861,0.284687,0.371043,0.644301,0.390207,0.132039,0.591588,|0.722917,0.691783,0.0225987,0.689117,0.781541,0.886227,0.182276,0.0198453,0.431227,0.873624,0.913589,0.331634,0.58025,0.0522825,0.23031,0.385283,0.154312,0.589786,0.681844,0.241614,0.0419111,0.510184,0.940231,0.59154,0.589619,0.188581,0.901365,0.463834,0.782793,0.920764,0.198162,0.192886,0.461759,0.242781,0.227942,0.648169,0.18632,0.0372491,0.771961,0.39491,0.574069,0.396961,0.69425,0.886725,0.241857,0.39893,0.542664,0.755752,0.696188,0.121066,0.101529,0.499992,0.258211,0.3661,0.28755,0.659684,0.839548,0.746703,0.288148,0.577312,0.81567,0.551723,0.183728,0.319044,0.973578,0.197026,0.543073,0.251904,0.465927,0.709888,0.238009,0.954066,0.582968,0.74854,0.433477,0.340809,0.862288,0.935216,0.189501,0.739443,0.833562,0.404648,0.672413,0.681147,0.148131,0.331169,0.955506,0.800805,0.242172,0.45404,0.806464,0.517121,0.128556,0.984845,0.84176,0.134859,0.509756,0.541521,0.527888,0.675032,0.60374,0.063016,0.270291,0.0808004,0.0783641,0.920194,0.570526,0.777417,0.455205,0.936438,0.451895,0.978083,0.524692,0.319636,0.2725,0.460216,0.551176,0.0666181,0.938525,0.0117711,0.68872,0.77884,0.155498,0.369442,0.957649,0.0659137,0.255051,0.128755,0.554137,0.260836,0.727153,0.887674,0.948992,0.8982,0.194052,0.955113,0.00105572,0.687211,0.212252,0.320313,0.286464,0.249392,0.723866,0.706288,0.966337,0.721525,0.665896,0.68811,0.0528882,0.134512,0.580367,0.0321448,0.581605,0.185782,0.025079,0.139416,0.365247,0.419499,0.0348995,0.566466,0.131073,0.996441,0.4008,0.670466,0.0847006,0.939744,0.284476,0.0788199,0.999267,0.871572,0.721231,0.470595,0.740229,0.0713089,0.122188,0.0916034,0.879268,0.19734,0.723584,0.0122318,0.924972,0.875303,0.773425,0.576992,0.362213,0.238596,0.22375,0.733048,0.260114,0.714897,0.272209,0.835806,0.190811,0.0583565,0.736557,0.0897957,0.132256,0.0329125,0.667347,0.203248,0.71921,0.999576,0.243045,0.703356,0.341875,0.347777,0.898709,0.362512,0.827089,0.625243,0.574863,0.662933,0.911525,0.489888,0.771652,0.614695,0.66654,0.499113,0.234087,0.4254,0.820704,0.316446,0.538885,0.604812,0.537821,0.437231,0.187442,0.188536,0.924722,0.292788,0.676346,0.872218,0.571276,0.399449,0.863804,0.991846,0.869629,0.296054,0.193694,0.207314,0.294084,0.652696,0.938366,0.25519,0.714913,0.483421,0.381118,0.76912,0.346804,0.310611,0.820503,0.622431,0.549889,0.892588,0.517788,0.703358,0.618479,0.343366,0.471777,0.566908,0.54594,0.648823,0.181415,0.825019,0.763119,0.586506,0.491361,0.0802056,0.69342,0.999208,0.283226,0.80465,0.737133,0.921542,0.149175,0.219182,0.288362,0.432647,0.0981718,0.592848,0.122228,0.151134,0.586239,0.675375,0.196722,0.465584,0.832723,0.861338,0.714609,0.764602,0.273728,0.900641,0.509037,0.00700712,0.741054,0.835757,0.909229,0.0824996,0.426759,0.940209,0.800183,0.317609,0.542276,0.201396,0.0920638,0.91676,0.179398,0.0602907,0.198654,0.181998,0.72313,0.542438,0.91264,0.124199,0.726665,0.170842,0.116523,0.213093,0.985334,0.936346,0.165285,0.00168192,0.82396,0.122279,0.635065,0.153125,0.473776,0.0766417,0.170657,0.16923,0.0039317,0.502835,0.803418,0.316309,0.388115,0.184219,0.549269,0.759277,0.373669,0.426016,0.606488,0.370685,0.911967,0.209996,0.240529,0.251753,0.549334,0.6145,0.861721,0.443062,0.678976,0.533761,0.664761,0.927512,0.979488,0.640259,0.399598,0.965515,0.495235,0.252549,0.245063,0.0826418,0.501433,0.329498,0.6096,0.64092,0.815217,0.806139,0.944991,0.778219,0.537448,0.250496,0.0818229,0.529048,0.184378,0.297878,0.809244,0.210768,0.883681,0.520466,0.389615,0.792927,0.0127305,0.597605,0.0350299,0.799813,0.431886,0.633703,0.0668458,0.222262,0.844624,0.164056,0.219091,0.868939,0.138547,0.52069,0.540581,0.191212,0.479226,0.37391,0.584815,0.101348,0.3086,0.389818,0.945394,0.455609,0.378122,0.630971,0.606789,0.706289,0.409185,0.214181,0.395645,0.315047,0.993819,0.893024,0.578777,0.788684,0.232648,0.632588,0.927382,0.226912,0.999249,0.21835,0.528939,0.723877,0.513138,0.842875,0.574329,0.118778,0.830033,0.624326,0.479958,0.414106,0.356484,0.678304,0.35921,0.949646,0.544448,0.667577,0.0350496,0.372309,0.309185,0.0435612,0.0822371,0.170589,0.211537,0.124341,0.71469,0.471258,0.0699198,0.482781,0.676323,0.186227,0.722597,0.676816,0.843525,0.447712,0.36893,0.430953,0.633791,0.157835,0.322633,0.0930307,0.273447,0.630893,0.0603103,0.0817093,0.543802,0.511636,0.452348,0.167874,0.840356,0.876564,0.736545,0.626454,0.336804,0.50242,0.120121,0.402667,0.800093,0.677592,0.0475501,0.406113,0.0193315,0.0911369,0.953499,0.978542,0.640504,0.937266,0.984029,0.43967,0.86538,0.229129,0.352681,0.20033,0.0232331,0.594205,0.615773,0.0224764,0.0314525,0.0469925,0.737645,0.225252,0.0477247,0.518592,0.836904,0.124404,0.784717,0.727874,0.0519723,0.621952,0.818272,0.8138,0.299218,0.99061,0.749468,0.961596,0.0296746,0.695959,0.0310938,0.202358,0.126015,0.457003,0.108933,0.0221722,0.752886,0.712044,0.50327,0.0397796,0.992591,0.249586,0.26707,0.617749,0.780948,0.631853,0.263846,0.689408,0.0842757,0.554005,0.260183,0.305951,0.634457,0.458113,0.927022,0.0306947,0.950359,0.783561,0.438849,0.225801,0.222536,0.193381,0.211048,0.990814,0.31979,0.714453,0.68073,0.900423,0.815691,0.628983,0.885548,0.101943,0.143413,0.596363,0.647153,0.674282,0.873905,0.460964,0.806773,0.656883,0.550212,0.500064,0.277935,0.842504,0.895218,0.98095,0.101642,0.368636,0.450027,0.752853,0.406056,0.0278655,0.305727,0.179697,0.486072,0.331689,0.864939,0.445467,0.908865,0.0518414,0.125,0.551418,0.484748,0.876039,0.588805,0.663134,0.0511705,0.959674,0.233201,0.16125,0.730334,0.122156,0.0518137,0.239222,0.947129,0.912621,0.935401,0.400347,0.835774,0.875882,0.966728,0.801196,0.383197,0.0645227,0.995863,0.981601,0.676037,0.590296,0.575893,0.657396,0.189448,0.553612,0.517611,0.228898,0.976478,0.18304,0.933773,0.614469,0.964309,0.744261,0.336561,0.225134,0.958417,0.207463,0.135368,0.730181,0.0640769,0.858329,0.00651211,0.33395,0.779629,0.176337,0.664808,0.55384,0.261876,0.881766,0.161067,0.416631,0.211781,0.373034,0.404485,0.860497,0.460803,0.814873,0.0315821,0.164966,0.0706811,0.623156,0.104321,0.997333,0.230473,0.45772,0.181155,0.991532,0.460746,0.0598357,0.181436,0.259059,0.969572,0.825593,0.171684,0.584462,0.901578,0.824509,0.0800812,0.825922,0.778237,0.962204,0.361297,0.409043,0.249598,0.381315,0.970729,0.218649,0.423899,0.48281,0.365031,0.220988,0.850996,0.356881,0.559187,0.895993,0.0105034,0.730864,0.559605,0.0726658,0.503635,0.212914,0.692016,0.246359,0.744957,0.968907,0.0842782,0.420772,0.072721,0.892977,0.0704889,0.208267,0.748814,0.518979,0.854335,0.0727881,0.681,0.902078,0.0119417,0.154924,0.43901,0.442999,0.387558,0.402522,0.717992,0.791793,0.358914,0.498336,0.708091,0.604534,0.517029,0.33903,0.663035,0.361399,0.164038,0.179556,0.989296,0.627908,0.98054,0.464562,0.0546399,0.781951,0.268722,0.624855,0.600736,0.743125,0.708379,0.729304,0.811036,0.937321,0.695437,0.509892,0.206369,0.329555,0.992677,0.461361,0.774335,0.265437,0.646793,0.889221,0.350915,0.996936,0.618435,0.999547,0.312495,0.300682,0.53139,0.822469,0.84948,0.813999,0.209625,0.669073,0.520933,0.952932,0.607267,0.53702,0.226255,0.912406,0.0641034,0.757889,0.653783,0.365286,0.320834,0.663836,0.716788,0.744239,0.2468,0.0347784,0.892566,0.278201,0.991119,0.386675,0.363022,0.220026,0.985863,0.876684,0.365934,0.477848,0.317829,0.811052,0.675653,0.738085,0.817959,0.682554,0.102809,0.22526,0.592758,0.0455508,0.694717,0.976455,0.751196,0.49094,0.60121,0.472655,0.203869,0.770377,0.485072,0.712725,0.0910052,0.938629,0.711787,0.643896,0.910399,0.70579,0.143698,0.854293,0.0987367,0.278374,0.0897778,0.994986,0.404446,0.531846,0.660763,0.218895,0.785522,0.798246,0.335158,0.845838,0.924408,0.535264,0.84289,0.443169,0.829752,0.53696,0.527555,0.536914,0.157195,0.272535,0.740656,0.417807,0.554348,0.525793,0.515419,0.326834,0.887143,0.174217,0.0815702,0.346262,0.437856,0.592717,0.664082,0.934879,0.680263,0.724255,0.160343,0.781926,0.977519,0.866309,0.975642,0.42475,0.933202,0.332477,0.376766,0.646329,0.545528,0.289445,0.815723,0.429318,0.197614,0.855504,0.768261,0.838911,0.3423,0.267085,0.621698,0.720683,0.209557,0.993778,0.816418,0.100414,0.53123,0.326366,0.950196,0.791779,0.627723,0.130029,0.389058,0.316374,0.878363,0.941979,0.972239,0.141976,0.32254,0.174414,0.474941,0.838633,0.441473,0.737363,0.366038,0.993532,0.990958,0.985994,0.978529,0.870909,0.998948,0.824499,0.258529,0.386979,0.644466,0.874039,0.282665,0.128913,0.671544,0.844736,0.605944,0.145808,0.494747,0.600674,0.155487,0.606407,0.171365,0.424509,0.223428,0.681807,0.348962,0.271795,0.322566,0.639642,0.461944,0.884781,0.155545,0.971017,0.0432999,0.0851931,0.475123,0.802059,0.655466,0.598213,0.720917,0.488842,0.726231,0.561729,0.859478,0.592999,0.635896,0.620491,0.422782,0.474165,0.897798,0.672552,0.696764,0.45326,0.300837,0.831363,0.373566,0.034487,0.138106,0.582271,0.358363,0.208365,0.680825,0.848201,0.167388,0.15195,0.545486,0.527183,0.687297,0.597311,0.62149,0.479669,0.061596,0.630531,0.419741,0.370462,0.0139267,0.256135,0.0978665,0.331507,0.0761643,0.734706,0.590606,0.833011,0.272842,0.839794,0.542857,0.498049,0.673139,0.0601304,0.835768,0.562464,0.330305,0.51915,0.964332,0.383345,|0.442019,0.958902,0.660433,0.331589,0.0889215,0.618385,0.679551,0.153753,0.921271,0.57777,0.581277,0.701023,0.273956,0.762331,0.102152,0.953256,0.372254,0.09446,0.292385,0.399574,0.332293,0.187103,0.512918,0.304273,0.704695,0.0343459,0.785471,0.122008,0.369008,0.421554,0.624328,0.579362,0.390584,0.7822,0.911211,0.591552,0.533239,0.980885,0.410949,0.575708,0.310629,0.379254,0.161404,0.674167,0.838642,0.693235,0.639922,0.754908,0.398712,0.571027,0.522807,0.310134,0.650478,0.59869,0.89592,0.957216,0.419559,0.599969,0.0903314,0.175247,0.713839,0.133741,0.376548,0.497262,0.378223,0.972435,0.469097,0.069794,0.601824,0.653245,0.542857,0.934339,0.965864,0.630856,0.504295,0.214212,0.055768,0.20756,0.0691419,0.283012,0.241342,0.621634,0.340695,0.479398,0.0999321,0.305785,0.214846,0.250658,0.832205,0.566898,0.116431,0.984684,0.0183212,0.0547308,0.553006,0.918414,0.444674,0.401938,0.31925,0.936119,0.779913,0.263868,0.6736,0.932188,0.137815,0.321128,0.596163,0.829046,0.830051,0.933817,0.681523,0.326218,0.525528,0.315185,0.299262,0.342651,0.397106,0.375559,0.210483,0.898106,0.23965,0.990691,0.649806,0.998368,0.863819,0.649135,0.755118,0.774206,0.450606,0.300023,0.48642,0.598813,0.418062,0.125171,0.775206,0.560122,0.0533906,0.571357,0.401916,0.09372,0.205159,0.925352,0.0802659,0.926221,0.560704,0.84433,0.0593871,0.433617,0.802371,0.940266,0.505072,0.117583,0.379925,0.945615,0.147016,0.255952,0.772409,0.114602,0.608744,0.515501,0.419493,0.106916,0.465227,0.666098,0.408062,0.40762,0.975509,0.259492,0.801158,0.552939,0.814895,0.119789,0.575867,0.983831,0.626274,0.00900036,0.483222,0.992428,0.94033,0.0114778,0.313476,0.388483,0.335491,0.800044,0.579202,0.208113,0.3768,0.612751,0.128262,0.379085,0.591215,0.00607353,0.792301,0.460278,0.250084,0.302564,0.50953,0.223807,0.658911,0.0528126,0.38566,0.597313,0.283548,0.232446,0.304223,0.372573,0.507514,0.71058,0.773897,0.242628,0.406378,0.249274,0.904876,0.983962,0.622309,0.352718,0.163526,0.909689,0.116079,0.13698,0.357606,0.329554,0.300161,0.317422,0.963191,0.64273,0.228388,0.25232,0.767256,0.376265,0.494729,0.357958,0.993113,0.39791,0.959103,0.524282,0.0488249,0.846422,0.0812779,0.841825,0.756554,0.571696,0.211859,0.0195754,0.31938,0.081467,0.99603,0.492823,0.0801646,0.333143,0.190722,0.980668,0.0112697,0.677856,0.453444,0.477536,0.482797,0.206595,0.582859,0.356045,0.350309,0.840935,0.655771,0.852621,0.809181,0.0726383,0.570404,0.361187,0.845227,0.671036,0.967156,0.97038,0.232376,0.661423,0.0241644,0.516517,0.156632,0.10802,0.265961,0.166981,0.0663378,0.70045,0.436125,0.48948,0.756526,0.748446,0.077082,0.659839,0.948586,0.436351,0.973955,0.345618,0.363535,0.630462,0.54463,0.609031,0.967778,0.969363,0.0756119,0.442985,0.313491,0.675667,0.0201511,0.6839,0.0969759,0.236645,0.182236,0.251817,0.772156,0.270205,0.146123,0.820269,0.448089,0.657856,0.0727707,0.306151,0.156361,0.901199,0.220776,0.960975,0.672227,0.669196,0.935104,0.285523,0.855592,0.898756,0.791065,0.00255877,0.005885,0.375836,0.268504,0.518861,0.377155,0.0648503,0.862255,0.389001,0.13711,0.437501,0.0295811,0.448438,0.991957,0.732328,0.952118,0.488171,0.790292,0.624852,0.968513,0.460713,0.0215881,0.096765,0.600029,0.100581,0.440452,0.183518,0.971671,0.604081,0.690843,0.889857,0.670643,0.0332156,0.133728,0.811211,0.116722,0.540093,0.231314,0.964249,0.254867,0.697226,0.316669,0.987661,0.85122,0.62065,0.15911,0.920672,0.233892,0.246423,0.36153,0.112492,0.426413,0.140137,0.392533,0.0682673,0.54939,0.94789,0.255506,0.318052,0.0492417,0.500085,0.628998,0.671847,0.381486,0.085552,0.186358,0.452822,0.101454,0.216902,0.814838,0.618251,0.327034,0.887595,0.169839,0.196339,0.0218452,0.716411,0.378417,0.558666,0.473433,0.823611,0.860417,0.904505,0.976753,0.204972,0.493618,0.898797,0.652897,0.00596082,0.719905,0.455342,0.103579,0.0548466,0.210807,0.520287,0.552411,0.710805,0.828576,0.576769,0.784978,0.0436107,0.9149,0.345196,0.815983,0.344685,0.703766,0.855827,0.39093,0.11384,0.949473,0.307326,0.171631,0.0485226,0.771857,0.625331,0.347145,0.261414,0.529804,0.287025,0.32953,0.448249,0.61934,0.0684913,0.887767,0.521937,0.731112,0.439501,0.496264,0.123875,0.289872,0.46968,0.421924,0.46355,0.913051,0.70092,0.221514,0.798421,0.248986,0.77697,0.529608,0.86953,0.0163403,0.676244,0.509363,0.798693,0.874331,0.251248,0.645134,0.863624,0.640474,0.394805,0.810393,0.389177,0.473411,0.418536,0.215588,0.998356,0.400106,0.857921,0.154755,0.490042,0.827779,0.52091,0.18255,0.523313,0.419145,0.796253,0.321664,0.309757,0.00175238,0.633625,0.0661173,0.815669,0.053393,0.0706253,0.260104,0.201909,0.565645,0.897842,0.670817,0.205215,0.107713,0.0853329,0.906047,0.904667,0.995726,0.109861,0.627699,0.439953,0.214442,0.63271,0.601084,0.997535,0.116125,0.0682914,0.680927,0.162818,0.939539,0.527505,0.849168,0.891296,0.624987,0.843871,0.241684,0.167652,0.371609,0.915965,0.156102,0.287017,0.52375,0.468845,0.756734,0.235384,0.80469,0.490582,0.0619585,0.79071,0.528751,0.720428,0.940602,0.786484,0.784016,0.711006,0.139758,0.0625657,0.187977,0.962336,0.589478,0.749987,0.59253,0.821963,0.0304157,0.407297,0.22536,0.887517,0.806394,0.773469,0.740913,0.582406,0.550332,0.49983,0.565544,0.965642,0.990094,0.727866,0.17758,0.948076,0.448015,0.871451,0.154513,0.418517,0.618422,0.0660992,0.736382,0.909617,0.755766,0.538367,0.198276,0.324613,0.410718,0.485694,0.910592,0.450581,0.19542,0.0144856,0.198941,0.387622,0.718041,0.550535,0.745809,0.712784,0.820063,0.454889,0.808011,0.321502,0.530607,0.569731,0.74511,0.64317,0.815287,0.250278,0.618476,0.548115,0.895862,0.81285,0.147595,0.428559,0.297465,0.0873529,0.651062,0.440948,0.889997,0.687577,0.426925,0.362042,0.158235,0.285041,0.34398,0.218298,0.0657972,0.0723972,0.933185,0.748914,0.645322,0.762229,0.104208,0.702771,0.122361,0.451675,0.181858,0.94395,0.032537,0.478444,0.759491,0.84338,0.583372,0.325609,0.0524186,0.752371,0.914022,0.474425,0.415426,0.872443,0.240882,0.785664,0.00773412,0.584648,0.799068,0.49425,0.047502,0.866202,0.356958,0.860312,0.951193,0.507476,0.180099,0.779241,0.0981459,0.328816,0.0519171,0.842019,0.13753,0.644196,0.00246501,0.717624,0.0196806,0.166101,0.680274,0.679948,0.865617,0.800795,0.864901,0.526235,0.528857,0.167002,0.30106,0.998559,0.0519205,0.489568,0.62283,0.779539,0.822999,0.892337,0.932371,0.578618,0.0442951,0.65354,0.387445,0.429175,0.942339,0.558559,0.396685,0.223898,0.705027,0.0884563,0.11397,0.863199,0.0968698,0.139868,0.562233,0.445755,0.857187,0.187868,0.622843,0.763683,0.166306,0.369594,0.0583475,0.656944,0.573691,0.677664,0.923724,0.294794,0.206001,0.644642,0.00863224,0.408689,0.756715,0.393381,0.806467,0.283008,0.595399,0.60603,0.404272,0.756312,0.583935,0.973023,0.575681,0.966493,0.345153,0.50159,0.0438491,0.934886,0.870251,0.538217,0.806615,0.31314,0.114077,0.4378,0.824351,0.534661,0.578898,0.263829,0.128294,0.460146,0.676349,0.407075,0.906313,0.944056,0.036635,0.583029,0.180013,0.694688,0.515918,0.585469,0.305857,0.559476,0.317469,0.585984,0.698548,0.313905,0.745037,0.0515497,0.274875,0.869154,0.748568,0.98773,0.180764,0.208675,0.440015,0.822772,0.882688,0.0914314,0.58834,0.624204,0.287389,0.73289,0.846359,0.0169479,0.953863,0.370769,0.866535,0.45518,0.255859,0.14332,0.978583,0.251017,0.481122,0.807458,0.721081,0.56776,0.0596489,0.668542,0.645217,0.864092,0.941837,0.47026,0.0776413,0.892242,0.00875181,0.389069,0.428355,0.669354,0.594931,0.354554,0.953379,0.914797,0.808474,0.591121,0.214092,0.736241,0.686208,0.741908,0.785969,0.261421,0.844244,0.790924,0.214584,0.0627719,0.554737,0.291965,0.193771,0.822261,0.391191,0.131675,0.512629,0.476912,0.641046,0.155979,0.807848,0.619249,0.904073,0.513792,0.781123,0.0809226,0.0572388,0.385499,0.729037,0.45477,0.0817224,0.393314,0.389514,0.193352,0.228417,0.527296,0.922057,0.259385,0.396684,0.592328,0.0460625,0.993295,0.441044,0.224546,0.686674,0.695109,0.533088,0.379913,0.534707,0.83097,0.475647,0.28518,0.342808,0.163969,0.214181,0.787939,0.464712,0.983383,0.652093,0.646322,0.89668,0.488719,0.20101,0.596814,0.0289257,0.680925,0.40027,0.845725,0.455624,0.466765,0.822949,0.292713,0.659244,0.512089,0.112926,0.142762,0.73816,0.819002,0.0421818,0.513782,0.906316,0.837463,0.587683,0.724262,0.554081,0.314043,0.277076,0.970016,0.374627,0.882571,0.124981,0.198397,0.898805,0.543094,0.383681,0.674003,0.208626,0.961584,0.956137,0.280107,0.736143,0.725124,0.540053,0.866484,0.253813,0.654036,0.305147,0.897625,0.114167,0.0219055,0.379068,0.856091,0.378165,0.429676,0.900519,0.663537,0.0776384,0.856258,0.271897,0.504255,0.756693,0.331676,0.413257,0.512295,0.286409,0.735918,0.919512,0.627562,0.60528,0.707391,0.0793161,0.116919,0.485829,0.0138542,0.924023,0.740879,0.453295,0.489914,0.0749658,0.469034,0.685817,0.253033,0.255407,0.430921,0.842509,0.521279,0.490033,0.172164,0.0778599,0.781225,0.398896,0.930421,0.920608,0.0520064,0.487805,0.598917,0.821334,0.909466,0.872883,0.17243,0.887379,0.302858,0.36914,0.356349,0.945098,0.282594,0.420274,0.248831,0.81123,0.426821,0.0187516,0.86905,0.939815,0.348155,0.6816,0.434473,0.8572,0.856942,0.908828,0.350821,0.290425,0.58573,0.612812,0.256418,|0.939083,0.482116,0.107004,0.990178,0.799477,0.640983,0.29696,0.424446,0.362766,0.115043,0.716752,0.654295,0.0748916,0.408045,0.229119,0.51908,0.250546,0.15712,0.646555,0.15371,0.662816,0.638739,0.51882,0.888257,0.721353,0.466874,0.376402,0.784578,0.974679,0.0792382,0.351941,0.780917,0.279087,0.260654,0.172581,0.569562,0.50813,0.390036,0.42089,0.976938,0.352055,0.658482,0.502128,0.453981,0.80533,0.621696,0.924142,0.897189,0.947315,0.762863,0.401765,0.521894,0.198262,0.992483,0.57467,0.764162,0.635864,0.740402,0.740337,0.139967,0.503963,0.272107,0.600128,0.841406,0.883038,0.109209,0.985586,0.154849,0.478242,0.966158,0.766485,0.447271,0.650374,0.108886,0.380217,0.550199,0.0938193,0.844402,0.883127,0.711354,0.473249,0.807888,0.23587,0.0140101,0.0483189,0.432568,0.288677,0.154278,0.202414,0.0261958,0.357805,0.206372,0.099967,0.308919,0.279353,0.383061,0.431932,0.480187,0.745143,0.139003,0.948824,0.826798,0.192132,0.370052,0.391174,0.634858,0.853846,0.535379,0.331317,0.317625,0.427171,0.471486,0.167088,0.261025,0.330976,0.819741,0.793964,0.977219,0.61531,0.931253,0.442343,0.956897,0.515879,0.694476,0.827356,0.589544,0.144434,0.240628,0.74141,0.012655,0.348076,0.418279,0.968709,0.224708,0.0794643,0.193175,0.834306,0.520505,0.0882158,0.437967,0.28071,0.383062,0.567534,0.110995,0.140928,0.569339,0.135117,0.822013,0.651262,0.507117,0.842637,0.782305,0.165422,0.807296,0.228057,0.918708,0.341441,0.524649,0.156256,0.663115,0.499769,0.616181,0.52615,0.838137,0.569768,0.341198,0.306607,0.0785355,0.81718,0.770793,0.501389,0.764967,0.449452,0.305087,0.142633,0.594763,0.441519,0.847243,0.0628343,0.74638,0.571744,0.773751,0.432268,0.967076,0.757754,0.438304,0.911369,0.370072,0.487353,0.34755,0.199006,0.937316,0.709571,0.716435,0.796069,0.125024,0.505924,0.567871,0.513084,0.835781,0.916517,0.744196,0.760173,0.79324,0.823716,0.014086,0.130525,0.692504,0.32352,0.67786,0.468765,0.900316,0.729155,0.734117,0.931254,0.410589,0.205034,0.669667,0.774832,0.790697,0.535326,0.571582,0.230015,0.345884,0.308312,0.198652,0.127494,0.579914,0.547309,0.416679,0.997815,0.215223,0.181271,0.804424,0.781739,0.62692,0.074077,0.323296,0.159787,0.526665,0.765102,0.0483247,0.964585,0.589343,0.0592763,0.797641,0.84891,0.474471,0.599635,0.0681495,0.850872,0.0966882,0.762201,0.155909,0.726202,0.491007,0.591674,0.271746,0.723062,0.0394199,0.843062,0.000921309,0.839049,0.77228,0.665545,0.0289023,0.73562,0.379717,0.0685781,0.043678,0.26242,0.311807,0.0621342,0.166401,0.883187,0.606603,0.397355,0.284378,0.984111,0.267378,0.597856,0.0674117,0.621466,0.695978,0.410677,0.326179,0.339842,0.873153,0.981836,0.982867,0.939896,0.0324613,0.154391,0.0305281,0.114929,0.346171,0.460708,0.874233,0.790644,0.847714,0.297181,0.751911,0.159321,0.284819,0.00524372,0.364267,0.0559981,0.96014,0.00190425,0.708965,0.117843,0.471622,0.084462,0.281674,0.458195,0.434863,0.317583,0.0337858,0.741195,0.506934,0.0513695,0.480009,0.98773,0.815707,0.891965,0.0765827,0.410504,0.178326,0.661757,0.933423,0.253348,0.523805,0.64373,0.429913,0.966395,0.745466,0.285069,0.302496,0.978692,0.541761,0.468295,0.208536,0.490577,0.471987,0.518252,0.971565,0.394562,0.412899,0.318541,0.252836,0.775926,0.185223,0.287254,0.602657,0.397465,0.963961,0.0345959,0.542376,0.539379,0.393039,0.384256,0.973661,0.772258,0.963225,0.222222,0.280373,0.57468,0.115364,0.868843,0.0631667,0.996411,0.286011,0.756309,0.622119,0.0126451,0.770852,0.0228633,0.944566,0.78975,0.796409,0.122483,0.791964,0.0774628,0.310982,0.792629,0.902965,0.695326,0.761635,0.281076,0.869707,0.751685,0.10884,0.0372862,0.683358,0.367558,0.472599,0.0827167,0.756404,0.00650185,0.708405,0.192333,0.11685,0.803475,0.178913,0.974219,0.632934,0.855305,0.843633,0.0831024,0.0952615,0.804257,0.654915,0.670529,0.352112,0.972524,0.476431,0.0634235,0.669276,0.431605,0.470498,0.345128,0.649998,0.163827,0.437685,0.615323,0.656255,0.192868,0.647795,0.753697,0.750806,0.0195187,0.933725,0.315573,0.358977,0.709779,0.739344,0.854393,0.941086,0.925332,0.256335,0.632932,0.644857,0.270646,0.581598,0.276116,0.169387,0.26185,0.466409,0.104774,0.325384,0.00761646,0.0309299,0.0292558,0.883245,0.915434,0.959758,0.270396,0.826353,0.627129,0.441985,0.892695,0.219301,0.687784,0.961168,0.290866,0.379913,0.0928778,0.569791,0.691872,0.302176,0.0458442,0.427176,0.887821,0.623928,0.490812,0.466927,0.808825,0.356326,0.628455,0.468081,0.319948,0.736669,0.31239,0.0862754,0.710075,0.600315,0.570659,0.996877,0.734724,0.162891,0.758182,0.490216,0.23884,0.56724,0.547939,0.378375,0.403814,0.272357,0.557203,0.845254,0.0969825,0.249097,0.648498,0.775324,0.366865,0.137599,0.632908,0.607747,0.241959,0.90108,0.954688,0.662422,0.301922,0.504296,0.153665,0.59289,0.379165,0.989011,0.801305,0.44642,0.39418,0.516742,0.221481,0.634677,0.713452,0.997831,0.402093,0.806985,0.117016,0.691424,0.605142,0.422087,0.883931,0.876453,0.187698,0.023218,0.875169,0.272711,0.252778,0.740901,0.193823,0.478468,0.11213,0.886836,0.897427,0.252569,0.383932,0.0158625,0.158015,0.00816494,0.912454,0.359422,0.131215,0.00294828,0.538951,0.880195,0.607854,0.568977,0.740178,0.206625,0.27675,0.289803,0.396167,0.40826,0.304032,0.233707,0.865778,0.743775,0.464752,0.602331,0.932728,0.622595,0.233785,0.00327027,0.285745,0.622243,0.526598,0.241572,0.421619,0.319385,0.979743,0.458065,0.434201,0.460179,0.962013,0.97558,0.572669,0.135542,0.351548,0.865949,0.149066,0.591097,0.59922,0.270838,0.78738,0.331127,0.898334,0.651863,0.994569,0.363184,0.843187,0.108409,0.677496,0.539879,0.73125,0.333966,0.860026,0.472984,0.12627,0.233493,0.615166,0.737407,0.92371,0.379404,0.607283,0.143525,0.561185,0.695857,0.166642,0.589185,0.658128,0.0350881,0.0851371,0.0657123,0.882967,0.915641,0.0647811,0.262814,0.766059,0.454802,0.296529,0.142466,0.497508,0.774918,0.9315,0.2122,0.591542,0.541868,0.140589,0.0639046,0.857825,0.967582,0.530437,0.245876,0.958161,0.805215,0.178877,0.696103,0.793287,0.0843542,0.736265,0.809193,0.015766,0.751474,0.61078,0.874136,0.0942295,0.028975,0.637784,0.25168,0.0989332,0.592199,0.884564,0.118739,0.817874,0.734738,0.840958,0.909969,0.446904,0.643244,0.981017,0.320588,0.391446,0.393214,0.92132,0.0491555,0.078099,0.67296,0.15474,0.543869,0.395071,0.923366,0.774393,0.988703,0.721249,0.901151,0.0936453,0.608649,0.550097,0.806,0.784686,0.818793,0.0190055,0.995727,0.240533,0.0311382,0.755422,0.886028,0.802343,0.984379,0.837273,0.781991,0.647801,0.565423,0.803044,0.596894,0.61836,0.616617,0.312819,0.00373608,0.500718,0.399884,0.110598,0.435825,0.967382,0.905383,0.336378,0.575744,0.66583,0.493133,0.530345,0.518798,0.980341,0.31992,0.137734,0.251187,0.249308,0.0436702,0.443603,0.0161982,0.651472,0.23023,0.491055,0.766068,0.903691,0.0106094,0.586398,0.328526,0.216657,0.942326,0.728512,0.63474,0.235551,0.758387,0.974142,0.812859,0.370916,0.190063,0.910968,0.793308,0.855539,0.259755,0.739381,0.695579,0.299526,0.439332,0.701707,0.535,0.179922,0.569612,0.318665,0.139746,0.258131,0.750344,0.566435,0.114402,0.565631,0.547248,0.590716,0.994732,0.288781,0.793972,0.262104,0.63549,0.660722,0.926183,0.383298,0.534093,0.699363,0.788426,0.0181679,0.682351,0.668781,0.337743,0.728152,0.513908,0.759921,0.231422,0.769402,0.673996,0.716548,0.828244,0.309123,0.168518,0.65034,0.742108,0.456538,0.461493,0.424708,0.0207887,0.199165,0.821475,0.343968,0.453675,0.139302,0.808917,0.140705,0.301009,0.443205,0.534564,0.615813,0.993693,0.337676,0.305358,0.964068,0.691596,0.884806,0.330683,0.188986,0.487075,0.618549,0.948766,0.650501,0.16378,0.247548,0.905235,0.347596,0.482863,0.503965,0.808962,0.686293,0.875165,0.356104,0.521769,0.132094,0.0770199,0.376797,0.60426,0.970376,0.228784,0.927911,0.577549,0.619338,0.707349,0.894377,0.066204,0.37597,0.512428,0.458773,0.986065,0.815375,0.014167,0.235423,0.202832,0.199974,0.593533,0.735353,0.654083,0.11296,0.813557,0.175222,0.595386,0.891733,0.137311,0.575761,0.601518,0.429992,0.58948,0.32995,0.527744,0.507639,0.775601,0.582793,0.337184,0.179849,0.348703,0.764362,0.641913,0.0127585,0.252474,0.71994,0.499902,0.537836,0.252391,0.653963,0.145105,0.203319,0.434014,0.59015,0.00133932,0.572901,0.56175,0.879351,0.477836,0.653338,0.418432,0.600302,0.115764,0.940077,0.319809,0.306213,0.24738,0.547438,0.491747,0.525508,0.736853,0.29848,0.363869,0.982243,0.322223,0.461734,0.514239,0.783464,0.18094,0.602959,0.117661,0.944523,0.636064,0.48995,0.514737,0.213171,0.23794,0.389914,0.751939,0.677631,0.173398,0.954987,0.0321641,0.0581031,0.412236,0.374686,0.861532,0.497022,0.502677,0.795336,0.863398,0.641782,0.133873,0.270349,0.173032,0.465408,0.301349,0.962591,0.764963,0.534582,0.349468,0.255718,0.696354,0.167034,0.0708936,0.437651,0.00133187,0.655257,0.109932,0.868108,0.0183417,0.583734,0.123922,0.461773,0.056655,0.422467,0.0926333,0.197215,0.203559,0.68404,0.541121,0.657372,0.0498481,0.202631,0.408738,0.270743,0.0500789,0.535969,0.323198,0.176143,0.352347,0.102978,0.713846,0.650218,0.742163,0.326429,0.86459,0.404708,0.0254272,0.708203,0.661431,0.620366,0.709626,0.944489,0.530603,0.443958,0.493019,0.189329,0.709073,0.796186,0.237252,0.34144,0.292691,0.663337,0.237282,|0.882973,0.641921,0.323509,0.13176,0.731749,0.121483,0.228742,0.32924,0.47454,0.632665,0.954016,0.0667017,0.392676,0.755135,0.921151,0.263788,0.798936,0.862406,0.268594,0.602412,0.555844,0.0763144,0.177312,0.246155,0.378355,0.12541,0.618574,0.26501,0.618263,0.0514631,0.078355,0.289583,0.555377,0.410543,0.284297,0.599382,0.90831,0.632287,0.169004,0.415378,0.0768388,0.790255,0.524626,0.946807,0.088274,0.117163,0.377224,0.874245,0.933638,0.975175,0.704092,0.580971,0.26798,0.890311,0.420269,0.888297,0.847942,0.918044,0.23026,0.874701,0.134629,0.823991,0.498273,0.761467,0.43064,0.631047,0.191352,0.55626,0.841356,0.752839,0.801239,0.325751,0.816694,0.144991,0.936815,0.526026,0.41634,0.403539,0.98893,0.719272,0.481844,0.307393,0.223094,0.864764,0.0709484,0.140081,0.548886,0.918611,0.171587,0.867684,0.884877,0.172849,0.659471,0.850821,0.698916,0.241467,0.0565376,0.747714,0.612318,0.720696,0.811283,0.105221,0.836761,0.217973,0.159588,0.106898,0.987719,0.852073,0.0339295,0.0896819,0.722133,0.00772041,0.238965,0.0436944,0.403463,0.744637,0.225527,0.759105,0.369683,0.0870637,0.411327,0.822562,0.358406,0.0708685,0.388174,0.551743,0.116487,0.748895,0.155801,0.140251,0.116338,0.866337,0.818106,0.758294,0.298428,0.642242,0.164336,0.0727275,0.152024,0.814855,0.515902,0.739969,0.313263,0.409984,0.754689,0.703801,0.241733,0.458778,0.842746,0.0271958,0.617972,0.971703,0.450159,0.409591,0.614818,0.439458,0.267991,0.572717,0.540689,0.0422968,0.444993,0.319337,0.374717,0.988229,0.379133,0.856187,0.638884,0.399618,0.452409,0.257063,0.792089,0.614954,0.167201,0.143405,0.122776,0.202018,0.442816,0.923865,0.609883,0.516119,0.836562,0.407584,0.580032,0.598522,0.342517,0.460562,0.639273,0.00137007,0.142131,0.768726,0.194756,0.318283,0.369989,0.0878369,0.304675,0.752592,0.283476,0.941178,0.498656,0.986688,0.767905,0.500502,0.017671,0.33615,0.629294,0.909371,0.0332792,0.527193,0.829634,0.12669,0.180301,0.821943,0.439967,0.509414,0.386399,0.0569665,0.030746,0.679709,0.625405,0.954142,0.211202,0.722189,0.653661,0.361125,0.991234,0.113855,0.161079,0.782948,0.103898,0.318095,0.737043,0.748038,0.831587,0.144962,0.339179,0.599057,0.578512,0.51772,0.451356,0.573361,0.282247,0.198748,0.733391,0.472361,0.470624,0.0738413,0.0436506,0.116484,0.744672,0.340948,0.912384,0.428284,0.539166,0.088796,0.990439,0.360782,0.103933,0.939889,0.432373,0.0889494,0.437547,0.400296,0.0780599,0.134787,0.157618,0.570658,0.118427,0.400494,0.285457,0.196552,0.743935,0.697974,0.354478,0.138767,0.529548,0.348138,0.791184,0.532048,0.368983,0.260772,0.239954,0.0274654,0.469902,0.737274,0.477048,0.573417,0.0357536,0.400185,0.532223,0.763365,0.0283015,0.855619,0.259856,0.514811,0.248655,0.427208,0.0753506,0.790967,0.0565081,0.467669,0.999274,0.327256,0.0302765,0.602955,0.313555,0.623512,0.320827,0.168478,0.672597,0.592513,0.921647,0.310327,0.190476,0.763485,0.174001,0.412524,0.260644,0.482278,0.752779,0.987637,0.225236,0.649252,0.335624,0.0981103,0.53752,0.881465,0.920629,0.811686,0.349955,0.985883,0.0240136,0.203128,0.836225,0.18137,0.556185,0.17606,0.601532,0.25287,0.485036,0.738338,0.496501,0.216948,0.469269,0.136314,0.671655,0.182502,0.190787,0.68699,0.409501,0.770433,0.448663,0.532761,0.646435,0.16874,0.309582,0.367714,0.205483,0.0315751,0.988749,0.368563,0.333979,0.171592,0.39624,0.497144,0.184636,0.629354,0.518406,0.89761,0.778763,0.992603,0.00494754,0.144242,0.414095,0.175382,0.427597,0.433065,0.987455,0.261237,0.638007,0.418215,0.067711,0.183158,0.678409,0.951632,0.190551,0.67418,0.76613,0.151863,0.591557,0.546858,0.214097,0.951382,0.552818,0.0215741,0.108352,0.44131,0.451632,0.410812,0.251241,0.313991,0.340165,0.89007,0.73214,0.429611,0.0571439,0.499054,0.156394,0.810228,0.261212,0.536399,0.403303,0.479568,0.108667,0.824362,0.671714,0.354405,0.825959,0.154804,0.460385,0.138458,0.757752,0.0194734,0.0272407,0.442689,0.372813,0.0778918,0.00953895,0.511127,0.716854,0.899192,0.526236,0.731283,0.81769,0.66565,0.661165,0.242611,0.755757,0.925921,0.971995,0.330073,0.916016,0.948058,0.556134,0.368737,0.931662,0.925449,0.172392,0.458928,0.248412,0.207565,0.00516629,0.0334353,0.333219,0.535112,0.0729727,0.392009,0.265715,0.614866,0.893497,0.610361,0.925484,0.568176,0.0891021,0.131604,0.110225,0.884817,0.0212629,0.595514,0.49164,0.294829,0.538119,0.3879,0.95936,0.28485,0.733414,0.192976,0.284135,0.152152,0.404468,0.955299,0.0053885,0.420926,0.627366,0.73478,0.782616,0.315898,0.733508,0.885572,0.416117,0.282927,0.175993,0.502402,0.691388,0.42148,0.477278,0.052,0.857841,0.744811,0.194415,0.295187,0.253285,0.68602,0.734993,0.192254,0.302753,0.111286,0.0719372,0.973347,0.405812,0.0731909,0.862565,0.501852,0.771641,0.800323,0.715746,0.899918,0.999755,0.847224,0.898537,0.468503,0.36793,0.789868,0.167899,0.476037,0.385117,0.31909,0.813093,0.456236,0.995518,0.519667,0.959282,0.506092,0.773497,0.0157326,0.908322,0.556759,0.595609,0.311955,0.00380802,0.185966,0.288623,0.169407,0.551136,0.641927,0.42178,0.610645,0.440313,0.591165,0.0134768,0.236577,0.790832,0.417154,0.172741,0.965781,0.899218,0.187764,0.989337,0.655203,0.691101,0.982016,0.841554,0.388511,0.387376,0.657061,0.515418,0.0927448,0.334599,0.663862,0.0853465,0.640116,0.461941,0.885741,0.275484,0.00302243,0.270383,0.402496,0.214005,0.931363,0.700496,0.738758,0.595098,0.597226,0.417593,0.449088,0.486838,0.3712,0.86897,0.519805,0.174337,0.951326,0.622465,0.0678962,0.347271,0.0382654,0.806807,0.133011,0.407464,0.16654,0.796549,0.821767,0.34555,0.524895,0.994071,0.493811,0.665287,0.776037,0.572062,0.959695,0.347481,0.564653,0.80088,0.0540524,0.193155,0.182132,0.475156,0.109292,0.710154,0.565315,0.157116,0.266656,0.577724,0.00026089,0.596498,0.56304,0.484865,0.557402,0.958345,0.774447,0.221417,0.608092,0.44371,0.856821,0.712778,0.832136,0.921176,0.813939,0.339397,0.0222814,0.413191,0.099466,0.669347,0.451244,0.0446066,0.812244,0.272995,0.977145,0.634863,0.421948,0.966082,0.277328,0.250581,0.932404,0.680217,0.496287,0.144244,0.599859,0.569375,0.519636,0.145739,0.37414,0.186162,0.627848,0.675135,0.800049,0.597442,0.565695,0.767244,0.278318,0.764689,0.517929,0.281729,0.394599,0.596025,0.711651,0.53598,0.00966901,0.0783288,0.623598,0.345496,0.848145,0.255551,0.843575,0.699845,0.641966,0.948026,0.518338,0.598268,0.912055,0.509375,0.938223,0.735254,0.559425,0.958261,0.0232068,0.937456,0.565199,0.292938,0.997772,0.237617,0.780264,0.781993,0.970612,0.990404,0.104119,0.0369776,0.547973,0.205246,0.616932,0.948164,0.151316,0.99727,0.137234,0.570107,0.415875,0.138888,0.101149,0.703991,0.215633,0.604228,0.459467,0.206833,0.547422,0.237718,0.715245,0.315611,0.0206609,0.221401,0.425627,0.781665,0.930556,0.926338,0.414468,0.185358,0.32168,0.0131157,0.00932628,0.0692165,0.0076167,0.815904,0.593656,0.723448,0.557764,0.113511,0.184713,0.664991,0.977837,0.828349,0.379627,0.0540932,0.31386,0.718087,0.0963913,0.488494,0.742348,0.67603,0.737542,0.124282,0.623624,0.923731,0.482146,0.666278,0.145544,0.428103,0.557048,0.880772,0.926946,0.823955,0.662258,0.0385759,0.211444,0.643832,0.85748,0.0372441,0.84263,0.680379,0.791828,0.948333,0.301435,0.700096,0.375925,0.531369,0.71579,0.626546,0.381676,0.928069,0.640133,0.194741,0.86013,0.271588,0.935462,0.707012,0.901356,0.280222,0.944318,0.871563,0.129507,0.0654215,0.377335,0.0652161,0.200428,0.706539,0.143213,0.569289,0.97298,0.908114,0.117437,0.935644,0.0619988,0.0236548,0.695594,0.56524,0.332753,0.0785051,0.89438,0.758578,0.734446,0.540298,0.36255,0.135504,0.20449,0.612612,0.446583,0.24249,0.961258,0.395908,0.637793,0.156107,0.567248,0.445657,0.144829,0.0698174,0.917006,0.286192,0.95978,0.650503,0.586325,0.543846,0.181222,0.0805308,0.160182,0.394776,0.083187,0.188109,0.840292,0.635769,0.657119,0.0372847,0.814547,0.416749,0.561742,0.89345,0.364635,0.592038,0.378686,0.697601,0.249915,0.885472,0.772162,0.221859,0.187506,0.462309,0.160154,0.334567,0.985264,0.0954382,0.484318,0.209654,0.685998,0.0684834,0.394964,0.0224493,0.799829,0.781449,0.46777,0.106979,0.501661,0.453203,0.885715,0.986248,0.732781,0.335667,0.493618,0.420244,0.521,0.276656,0.444928,0.700162,0.792333,0.611323,0.588925,0.565138,0.181786,0.0575156,0.685176,0.737788,0.813368,0.114754,0.965309,0.0525756,0.00333983,0.945543,0.994636,0.974074,0.359683,0.217005,0.590634,0.360037,0.462426,0.641155,0.0982358,0.400712,0.424414,0.514709,0.201436,0.902144,0.400872,0.00618136,0.811146,0.946263,0.848222,0.0537107,0.60721,0.246248,0.4484,0.844612,0.217223,0.288932,0.840499,0.533952,0.0951862,0.300228,0.205113,0.941366,0.792855,0.481419,0.257308,0.494583,0.187089,0.666493,0.567327,0.844544,0.540322,0.690271,0.165522,0.996999,0.0177526,0.217045,0.38319,0.858433,0.893093,0.0574669,0.581841,0.965812,0.733501,0.0586933,0.186242,0.324412,0.307484,0.686304,0.0188861,0.794844,0.711226,0.896016,0.375485,0.320727,0.693443,0.329814,0.166967,0.585296,0.708899,0.418107,0.368904,0.382401,0.667818,0.332388,0.333907,0.294234,0.860367,0.205815,0.378004,0.558289,0.226984,0.393944,0.0935788,0.890021,0.0836009,0.293805,0.0139474,0.297345,0.666885,0.968949,0.307796,0.713895,0.0738118,0.88985,0.34475,0.631912,0.487376,0.348456,0.424202,|0.620072,0.585425,0.0574852,0.419449,0.371878,0.383111,0.61902,0.42109,0.497563,0.564417,0.445824,0.0916725,0.231495,0.951972,0.264857,0.179496,0.909003,0.00236678,0.158432,0.761657,0.667837,0.927282,0.358515,0.833685,0.708895,0.116713,0.106258,0.237079,0.551479,0.81444,0.464639,0.358053,0.103954,0.100702,0.863686,0.197091,0.494082,0.158811,0.0836472,0.913531,0.0713698,0.0186593,0.780453,0.0638474,0.132712,0.0985873,0.426598,0.680022,0.122712,0.182518,0.814978,0.435497,0.232707,0.300549,0.925877,0.0777506,0.724715,0.764522,0.812612,0.716769,0.642648,0.705937,0.837765,0.752374,0.840409,0.248624,0.273382,0.370619,0.955103,0.697781,0.472646,0.924242,0.784561,0.484104,0.653582,0.369756,0.457395,0.402928,0.733849,0.902945,0.220946,0.870913,0.425095,0.675901,0.310333,0.954997,0.634348,0.351532,0.634648,0.125166,0.722846,0.263869,0.917379,0.789663,0.744281,0.988025,0.909228,0.346713,0.581729,0.865633,0.49959,0.274894,0.361502,0.832418,0.23753,0.69684,0.656632,0.261803,0.397146,0.412348,0.463586,0.686898,0.289247,0.0975696,0.47776,0.191478,0.835313,0.997954,0.547599,0.414856,0.315836,0.569372,0.487353,0.336077,0.34417,0.0497169,0.73486,0.243226,0.744776,0.500065,0.953437,0.0885174,0.519638,0.0702191,0.684677,0.706382,0.498296,0.643051,0.548607,0.902,0.584357,0.293424,0.864745,0.77035,0.657823,0.778961,0.43746,0.983164,0.645868,0.321507,0.392429,0.867902,0.660901,0.193062,0.67163,0.549191,0.390178,0.580331,0.768551,0.135924,0.438172,0.321967,0.383801,0.864728,0.668322,0.753626,0.779099,0.856641,0.199166,0.948533,0.513214,0.182573,0.385232,0.223513,0.61921,0.801657,0.899006,0.733693,0.837766,0.782721,0.752062,0.665051,0.981642,0.0422007,0.707025,0.0382078,0.875133,0.477172,0.0320636,0.402625,0.661437,0.0928985,0.420333,0.346274,0.17363,0.330026,0.988795,0.00403768,0.702398,0.302654,0.15915,0.817016,0.756173,0.926188,0.50858,0.442225,0.827842,0.568563,0.330336,0.632798,0.196763,0.190882,0.0245105,0.668789,0.79212,0.583656,0.162082,0.845156,0.206212,0.744931,0.774594,0.9431,0.857043,0.291742,0.394513,0.0728662,0.18463,0.830749,0.858094,0.249758,0.101673,0.113571,0.930519,0.643483,0.476223,0.0130835,0.407701,0.958217,0.147543,0.305345,0.848231,0.199064,0.775223,0.227786,0.75738,0.0369687,0.425402,0.96627,0.198397,0.516434,0.19052,0.0578769,0.0077849,0.322178,0.000760615,0.375696,0.280441,0.687367,0.352928,0.00634426,0.834662,0.646109,0.120531,0.0303889,0.0877775,0.384554,0.998278,0.554607,0.849382,0.522716,0.67936,0.799459,0.195547,0.665228,0.100911,0.26754,0.869281,0.924693,0.512943,0.336378,0.959785,0.593134,0.0671502,0.298811,0.996034,0.244325,0.403044,0.143275,0.331875,0.626883,0.378,0.426737,0.449701,0.94889,0.48259,0.172273,0.848488,0.940345,0.797314,0.451739,0.746667,0.365743,0.152681,0.906288,0.459628,0.430575,0.0786217,0.572689,0.040868,0.993545,0.939482,0.042789,0.442683,0.700323,0.718144,0.901661,0.507823,0.587233,0.507743,0.750726,0.646442,0.289168,0.757876,0.967684,0.504934,0.348456,0.900276,0.728203,0.896913,0.0971283,0.0119899,0.479115,0.612104,0.579739,0.581398,0.901287,0.305708,0.655601,0.36943,0.807872,0.433132,0.463202,0.0860348,0.102443,0.710354,0.839666,0.996982,0.549661,0.625449,0.772126,0.91541,0.907006,0.466738,0.724649,0.734092,0.43167,0.843232,0.925911,0.750461,0.470599,0.147977,0.292971,0.512303,0.465051,0.0289189,0.763219,0.975032,0.329838,0.131941,0.592971,0.441494,0.805012,0.0192519,0.358223,0.819331,0.25708,0.552294,0.525188,0.33583,0.113912,0.138471,0.671551,0.964036,0.125893,0.301605,0.73779,0.38805,0.170382,0.193559,0.063988,0.954829,0.87227,0.952707,0.982714,0.197632,0.195795,0.26116,0.556846,0.0791469,0.0849833,0.816676,0.73892,0.197699,0.361193,0.983675,0.398667,0.939157,0.812126,0.395332,0.878154,0.735188,0.397205,0.789625,0.121151,0.548133,0.680039,0.854019,0.979321,0.953125,0.466977,0.324216,0.750379,0.670762,0.893808,0.98541,0.179523,0.872101,0.865917,0.904619,0.845451,0.349512,0.223442,0.0619736,0.947758,0.517028,0.31003,0.505534,0.344035,0.13417,0.97788,0.5973,0.487141,0.901271,0.740853,0.0415089,0.482662,0.228661,0.421468,0.733072,0.0347154,0.442779,0.545782,0.234711,0.233956,0.765956,0.0790453,0.030536,0.728658,0.281909,0.367258,0.917627,0.13269,0.900874,0.643615,0.767345,0.309983,0.782952,0.382575,0.59372,0.604304,0.419924,0.2878,0.56357,0.720571,0.235703,0.0716533,0.212697,0.876337,0.213611,0.00427139,0.614998,0.695991,0.0718899,0.220596,0.230592,0.959856,0.369843,0.681128,0.737757,0.255301,0.726711,0.973417,0.303398,0.679207,0.363394,0.129269,0.0785939,0.396265,0.746219,0.0433258,0.574382,0.601524,0.556387,0.573015,0.411388,0.784256,0.748762,0.543648,0.577235,0.622296,0.766892,0.69251,0.849599,0.508008,0.678516,0.759699,0.314796,0.548938,0.496864,0.312359,0.647533,0.134624,0.820622,0.334307,0.626201,0.871997,0.0726813,0.941537,0.114582,0.852017,0.114374,0.128307,0.137896,0.190062,0.872135,0.645681,0.816503,0.164688,0.559897,0.863192,0.924811,0.622927,0.878397,0.767211,0.105351,0.279759,0.307568,0.273991,0.707257,0.95306,0.448987,0.813725,0.288917,0.932273,0.798461,0.663471,0.714558,0.884971,0.818208,0.111853,0.501686,0.607533,0.945621,0.341127,0.968021,0.456438,0.229342,0.224368,0.602727,0.210399,0.318921,0.648209,0.342083,0.604856,0.0143363,0.906137,0.968594,0.0777678,0.415226,0.666071,0.355237,0.78351,0.87161,0.609704,0.851026,0.184294,0.638331,0.627676,0.183443,0.531602,0.815981,0.188657,0.86483,0.64097,0.379407,0.630208,0.9659,0.143955,0.801947,0.523221,0.787381,0.190425,0.597665,0.295175,0.981823,0.892652,0.721971,0.413194,0.475229,0.579881,0.404429,0.490954,0.0383767,0.508529,0.483456,0.517329,0.99317,0.137856,0.0656252,0.34909,0.359783,0.684039,0.984454,0.283644,0.892985,0.345879,0.867562,0.443607,0.637302,0.613761,0.329252,0.900567,0.420501,0.958179,0.799193,0.611293,0.940876,0.927705,0.988804,0.925699,0.195335,0.278676,0.967634,0.613477,0.314934,0.29792,0.15933,0.360963,0.220037,0.0988768,0.620576,0.21462,0.806107,0.47567,0.0419974,0.825779,0.309499,0.965422,0.377593,0.655097,0.384943,0.894373,0.692171,0.494676,0.0799114,0.884439,0.758315,0.0436912,0.0631804,0.798503,0.798086,0.720138,0.713356,0.831539,0.664323,0.441457,0.291487,0.579605,0.944859,0.488691,0.967672,0.985268,0.023429,0.99629,0.6086,0.609136,0.327471,0.384047,0.83561,0.166419,0.90134,0.775221,0.347374,0.697824,0.296439,0.53739,0.533786,0.895307,0.783959,0.278762,0.299306,0.552198,0.980929,0.164232,0.674816,0.169492,0.633559,0.287575,0.638723,0.557669,0.176545,0.477808,0.415478,0.438208,0.783568,0.559526,0.958091,0.324494,0.48339,0.285466,0.718974,0.397515,0.88354,0.0875961,0.233685,0.797509,0.819493,0.864445,0.571631,0.487507,0.358594,0.254786,0.386392,0.0324073,0.341833,0.660842,0.0253703,0.567196,0.149913,0.47894,0.390135,0.710333,0.914003,0.527199,0.503036,0.889851,0.471862,0.548189,0.423171,0.547987,0.800286,0.74682,0.916115,0.267263,0.849652,0.714022,0.42267,0.429792,0.851576,0.245276,0.0756665,0.509832,0.462254,0.648957,0.697563,0.198609,0.563217,0.929325,0.682193,0.835703,0.474394,0.878168,0.551639,0.196254,0.0887969,0.425543,0.237923,0.411526,0.871658,0.0540274,0.870989,0.455672,0.934419,0.649034,0.445044,0.552327,0.152333,0.557562,0.665301,0.531307,0.201963,0.899467,0.333305,0.528723,0.235508,0.177683,0.780953,0.00594705,0.888715,0.475631,0.421531,0.4828,0.946939,0.673816,0.39433,0.615231,0.59205,0.226646,0.67502,0.0871054,0.313462,0.818756,0.637411,0.130232,0.944891,0.80302,0.414577,0.387326,0.129541,0.104193,0.506361,0.428822,0.140021,0.323354,0.559156,0.116988,0.535068,0.448941,0.630986,0.541256,0.538766,0.496952,0.316008,0.936102,0.96944,0.0576105,0.744197,0.306979,0.8882,0.411397,0.137302,0.461293,0.690702,0.876974,0.153455,0.17938,0.51158,0.442331,0.00941366,0.4306,0.109733,0.752952,0.493606,0.10637,0.199575,0.530741,0.163496,0.728541,0.481782,0.563986,0.232094,0.572833,0.720205,0.926957,0.921264,0.835417,0.507477,0.0681736,0.607954,0.692162,0.0840887,0.497182,0.512008,0.479656,0.249256,0.543464,0.813104,0.229575,0.573059,0.567789,0.884853,0.686604,0.239168,0.611837,0.976592,0.985598,0.134531,0.696124,0.392415,0.239832,0.372995,0.0416339,0.111348,0.567014,0.833316,0.0163435,0.433576,0.600782,0.334094,0.299434,0.892894,0.361007,0.643016,0.602826,0.754927,0.773381,0.798137,0.30494,0.912697,0.0287392,0.367317,0.556658,0.533237,0.66679,0.665738,0.947434,0.104918,0.505965,0.527412,0.641636,0.35747,0.747401,0.965409,0.426771,0.0773949,0.141865,0.179132,0.947647,0.238299,0.638022,0.305345,0.585418,0.40371,0.605299,0.0213931,0.761695,0.0675765,0.101691,0.432039,0.2343,0.438898,0.579557,0.34732,0.935472,0.619349,0.12628,0.209089,0.918532,0.00759137,0.662977,0.905811,0.495501,0.802816,0.472897,0.0345032,0.388329,0.407553,0.52804,0.20229,0.238918,0.460816,0.485597,0.397361,0.752863,0.336964,0.242973,0.984788,0.0321876,0.0128046,0.739558,0.736077,0.596449,0.624667,0.843467,0.603381,0.538408,0.105969,0.73656,0.685376,0.4963,0.470998,0.257412,0.706501,0.566004,0.22442,0.653901,0.404008,0.943126,0.938433,0.769349,0.326027,0.478448,0.247593,0.206865,0.952646,0.167213,0.000848651,0.688428,0.0257056,0.230026,|0.963495,0.656369,0.0553524,0.126517,0.849591,0.102037,0.629758,0.541032,0.492269,0.570199,0.229752,0.74078,0.261406,0.520605,0.269623,0.891662,0.0704939,0.524922,0.000356674,0.435469,0.433844,0.861362,0.325469,0.166807,0.303855,0.247531,0.0107884,0.20638,0.282285,0.797572,0.87666,0.825974,0.454178,0.122426,0.734447,0.466013,0.338686,0.709446,0.0352335,0.898796,0.384529,0.357678,0.0570441,0.632192,0.213806,0.923123,0.978839,0.636384,0.0710817,0.893283,0.314996,0.21044,0.191566,0.718118,0.756257,0.826922,0.753836,0.976564,0.145685,0.389169,0.428293,0.683653,0.197094,0.311006,0.00148034,0.225773,0.772447,0.858714,0.392093,0.377636,0.892358,0.132429,0.621798,0.525609,0.226781,0.352506,0.713424,0.115226,0.525809,0.782581,0.810018,0.856541,0.669043,0.55292,0.111846,0.133668,0.0565886,0.264496,0.80841,0.780855,0.285863,0.27824,0.214027,0.248761,0.963586,0.73619,0.500972,0.0538306,0.721365,0.514214,0.419598,0.440484,0.773382,0.477674,0.541545,0.879663,0.00242627,0.358017,0.28633,0.874671,0.896883,0.0523457,0.0712116,0.491375,0.541365,0.785492,0.215463,0.388938,0.913447,0.493042,0.974567,0.0147359,0.665993,0.0238907,0.0617794,0.956948,0.768356,0.0556971,0.872184,0.431207,0.160728,0.582123,0.415835,0.539867,0.0355671,0.445978,0.447422,0.233221,0.579134,0.423169,0.177877,0.74212,0.773164,0.276586,0.143998,0.290118,0.73463,0.512039,0.199674,0.00431174,0.786884,0.201518,0.08505,0.924408,0.609493,0.660636,0.540448,0.272064,0.291169,0.679451,0.387402,0.569987,0.911273,0.113156,0.924768,0.518245,0.668819,0.279465,0.946709,0.420845,0.210014,0.470459,0.423463,0.635174,0.0979459,0.984292,0.17161,0.528318,0.792007,0.0973179,0.106647,0.08257,0.705583,0.871265,0.0159296,0.654698,0.738385,0.319113,0.106544,0.0168024,0.100243,0.346925,0.164503,0.247905,0.835464,0.70809,0.332626,0.0382559,0.90199,0.92582,0.104531,0.992424,0.461936,0.422388,0.710886,0.401753,0.963793,0.918848,0.644626,0.612214,0.640475,0.39061,0.448429,0.577809,0.347365,0.652,0.192381,0.344398,0.01903,0.387375,0.803687,0.929459,0.741779,0.147076,0.484974,0.622188,0.0822568,0.118588,0.46566,0.635249,0.529997,0.276804,0.561047,0.416616,0.757288,0.138363,0.248948,0.000124097,0.382374,0.135025,0.697828,0.625161,0.522753,0.774828,0.728271,0.414128,0.265066,0.294493,0.969541,0.629996,0.863531,0.489103,0.178432,0.945146,0.537851,0.431708,0.2038,0.62579,0.138453,0.137463,0.588449,0.389159,0.372436,0.844172,0.113938,0.705762,0.294445,0.158702,0.0830956,0.387973,0.246333,0.172556,0.649482,0.562672,0.219765,0.598691,0.467265,0.766237,0.306684,0.793613,0.777488,0.947937,0.838728,0.355087,0.520584,0.198844,0.020036,0.960217,0.650266,0.50163,0.295224,0.598294,0.106271,0.874426,0.759895,0.842037,0.359265,0.283837,0.395223,0.903565,0.315881,0.315369,0.183461,0.786622,0.358882,0.464983,0.930124,0.304402,0.604442,0.880022,0.902546,0.0330272,0.206086,0.964322,0.361542,0.569498,0.550178,0.101988,0.573229,0.638643,0.219612,0.464249,0.225118,0.125512,0.0677231,0.207698,0.563133,0.888609,0.929666,0.522115,0.877276,0.883819,0.458392,0.2339,0.290238,0.275133,0.676138,0.477038,0.355116,0.403688,0.160621,0.132707,0.674933,0.300426,0.109308,0.282518,0.840416,0.523394,0.0023427,0.0915083,0.389223,0.256608,0.296949,0.0843927,0.918705,0.893036,0.731001,0.918357,0.703048,0.169254,0.446354,0.537315,0.564068,0.232549,0.405354,0.867707,0.261614,0.920548,0.981162,0.805592,0.371551,0.961121,0.138458,0.405937,0.170448,0.234927,0.687639,0.210071,0.137217,0.819386,0.329849,0.51186,0.731032,0.691226,0.642051,0.12159,0.433892,0.691369,0.917054,0.917739,0.415512,0.449755,0.942827,0.242888,0.239681,0.27023,0.60301,0.962368,0.333717,0.422532,0.866539,0.561202,0.550539,0.41943,0.0911826,0.216246,0.527068,0.00418359,0.571863,0.613448,0.439347,0.308495,0.0668449,0.929656,0.80792,0.271276,0.297737,0.25535,0.891012,0.392286,0.780592,0.765078,0.986811,0.656171,0.13284,0.544635,0.531756,0.677654,0.235908,0.953983,0.452223,0.923536,0.0378278,0.52185,0.608181,0.25556,0.107639,0.209637,0.750923,0.614673,0.315881,0.374444,0.836177,0.217256,0.593041,0.945693,0.330885,0.690402,0.317295,0.290955,0.845256,0.090974,0.231745,0.489309,0.407471,0.559853,0.766114,0.338,0.398546,0.0686501,0.0675583,0.208951,0.595025,0.916583,0.731247,0.770731,0.449222,0.357044,0.0635006,0.0221479,0.969502,0.894824,0.898753,0.53891,0.176621,0.201625,0.501512,0.240126,0.944992,0.205553,0.956554,0.331917,0.779338,0.0908733,0.577356,0.0142419,0.747057,0.870665,0.0382785,0.485834,0.724675,0.232918,0.00189376,0.488686,0.869506,0.893337,0.356367,0.461482,0.864044,0.421776,0.311224,0.950509,0.434855,0.638938,0.170367,0.299494,0.793124,0.529161,0.907681,0.382736,0.460389,0.295871,0.775158,0.0268982,0.509554,0.965703,0.265922,0.573327,0.6351,0.11807,0.201638,0.0483294,0.876889,0.206472,0.874755,0.304919,0.0802369,0.726021,0.0271161,0.133167,0.783593,0.883366,0.882399,0.314294,0.670514,0.8938,0.450352,0.867299,0.770532,0.598806,0.287088,0.00731295,0.771251,0.686567,0.679224,0.254166,0.54277,0.973573,0.334217,0.418592,0.572551,0.97197,0.715747,0.14928,0.244019,0.538487,0.629119,0.438282,0.491954,0.893914,0.446138,0.265388,0.931124,0.625509,0.437586,0.392291,0.772581,0.696015,0.264712,0.310462,0.843637,0.654309,0.940902,0.450181,0.71332,0.646873,0.94134,0.839741,0.261789,0.870646,0.699374,0.00972003,0.381193,0.468503,0.0677269,0.475926,0.0663912,0.460362,0.351096,0.490706,0.19361,0.765005,0.17929,0.701591,0.80805,0.303988,0.848214,0.458694,0.817886,0.971171,0.797546,0.687448,0.304123,0.727022,0.477515,0.485463,0.123677,0.698839,0.110075,0.603853,0.734005,0.408975,0.310164,0.287066,0.0923958,0.312278,0.569854,0.898609,0.748602,0.0787848,0.825527,0.769677,0.415049,0.753532,0.419254,0.444728,0.141177,0.458119,0.476373,0.313594,0.114092,0.192661,0.73788,0.640301,0.903398,0.388958,0.670014,0.361863,0.706207,0.339002,0.245406,0.324399,0.393837,0.601748,0.211132,0.769337,0.576205,0.513895,0.585596,0.643988,0.0350519,0.364054,0.873864,0.948244,0.35997,0.544681,0.171598,0.878709,0.322718,0.613455,0.162089,0.488194,0.853554,0.0165257,0.797315,0.838626,0.367881,0.626308,0.924632,0.636004,0.652787,0.0528843,0.00789529,0.995233,0.618657,0.168788,0.43033,0.344086,0.841195,0.8507,0.637867,0.335469,0.106055,0.568792,0.960351,0.239276,0.773445,0.00142711,0.221686,0.389477,0.783706,0.529453,0.955542,0.585367,0.21346,0.642734,0.126286,0.322243,0.165888,0.744584,0.834167,0.978843,0.430125,0.456052,0.536466,0.537602,0.456735,0.134072,0.0791377,0.161052,0.852144,0.682145,0.0464152,0.786678,0.380343,0.0265618,0.0511576,0.89924,0.443992,0.173116,0.00111938,0.190332,0.0515726,0.316244,0.919765,0.870213,0.512935,0.541766,0.363703,0.604554,0.314976,0.0220907,0.132807,0.579233,0.0661716,0.330433,0.196331,0.746837,0.831352,0.865439,0.323431,0.278437,0.723645,0.445152,0.45724,0.727405,0.349174,0.222021,0.696808,0.357337,0.570071,0.0990277,0.138029,0.351523,0.792215,0.0766051,0.387627,0.590083,0.273404,0.70418,0.914184,0.0151026,0.326464,0.149728,0.656631,0.558168,0.786209,0.758333,0.42451,0.264257,0.873544,0.693014,0.64779,0.484009,0.153459,0.0490862,0.0716228,0.791118,0.260556,0.643582,0.155408,0.479235,0.947482,0.66499,0.583778,0.455244,0.332669,0.377394,0.178225,0.413784,0.0665604,0.285291,0.185154,0.592798,0.958212,0.449604,0.83039,0.722326,0.307271,0.374553,0.630004,0.309365,0.250109,0.705763,0.608548,0.534901,0.60652,0.858282,0.475232,0.910288,0.739066,0.984915,0.889867,0.779145,0.474877,0.159622,0.0958542,0.933116,0.251251,0.0314553,0.698304,0.677619,0.359125,0.0657856,0.47681,0.382306,0.0494533,0.806877,0.79107,0.548533,0.343988,0.844442,0.243551,0.50992,0.740098,0.112774,0.147914,0.555967,0.28063,0.294467,0.158403,0.494347,0.374309,0.699092,0.40746,0.365086,0.154348,0.0184354,0.137438,0.48264,0.494919,0.658927,0.409578,0.504785,0.378971,0.510437,0.567691,0.231996,3.30806e-05,0.253779,0.350884,0.748525,0.249768,0.587926,0.594428,0.333925,0.315166,0.838531,0.656397,0.232304,0.451426,0.557523,0.0653856,0.850153,0.715346,0.832854,0.131536,0.586528,0.590994,0.79017,0.5515,0.612466,0.538475,0.648432,0.212629,0.929882,0.260016,0.177678,0.134833,0.170575,0.381575,0.789479,0.408724,0.665694,0.585454,0.54544,0.797141,0.169205,0.982526,0.513485,0.789415,0.916258,0.818072,0.69602,0.245643,0.980561,0.529537,0.141682,0.682332,0.650512,0.968784,0.878793,0.685866,0.0629892,0.46382,0.373835,0.855736,0.510382,0.610479,0.934534,0.413045,0.832603,0.4714,0.835789,0.658519,0.462226,0.775465,0.57645,0.42432,0.8205,0.475809,0.501499,0.674037,0.795244,0.366296,0.603471,0.497458,0.880677,0.139751,0.520788,0.866876,0.45002,0.723827,0.654131,0.559297,0.0410671,0.633512,0.511348,0.989656,0.367876,0.617696,0.449501,0.620007,0.277906,0.16371,0.182349,0.0160943,0.97647,0.671464,0.689929,0.555212,0.917822,0.913341,0.519762,0.495306,0.701221,0.774682,0.484203,0.844291,0.626707,0.38771,0.935409,0.803055,0.710512,0.385717,0.751646,0.542414,0.0126792,0.215255,0.594665,0.954069,0.68522,0.875862,0.532652,0.31641,0.101277,0.192146,0.296684,0.62602,0.424905,0.102509,0.179042,0.946319,0.909181,0.0520357,0.491159,0.544812,0.805836,0.502184,0.744139,|0.647639,0.710278,0.202496,0.327626,0.228608,0.13907,0.81688,0.972215,0.258409,0.0193595,0.841005,0.765167,0.675493,0.764402,0.572671,0.115263,0.88427,0.806211,0.0373645,0.773809,0.775384,0.406216,0.997944,0.557616,0.884696,0.955682,0.784582,0.736224,0.214927,0.419715,0.0223066,0.21439,0.149039,0.223362,0.917206,0.684349,0.851504,0.142553,0.672872,0.0957291,0.40049,0.705068,0.729642,0.454229,0.722574,0.532011,0.143058,0.669876,0.161756,0.255308,0.417454,0.893542,0.888242,0.292326,0.574954,0.932671,0.125659,0.303578,0.2868,0.822303,0.743958,0.489749,0.945172,0.160865,0.893847,0.595413,0.306712,0.0958595,0.863645,0.627756,0.10806,0.0677307,0.155358,0.251222,0.367736,0.543947,0.449069,0.067209,0.734829,0.599507,0.86499,0.635029,0.303311,0.953783,0.640705,0.730123,0.0310198,0.215358,0.787167,0.277976,0.348013,0.317563,0.72287,0.737549,0.650884,0.375348,0.24114,0.325297,0.710417,0.730209,0.575682,0.937733,0.824888,0.241502,0.383947,0.139116,0.30227,0.927239,0.879476,0.440378,0.914175,0.160536,0.0868952,0.596453,0.572692,0.851972,0.938138,0.285666,0.772877,0.527338,0.604175,0.682583,0.678958,0.743768,0.6743,0.882811,0.342417,0.810489,0.159778,0.176564,0.595818,0.349755,0.303588,0.118919,0.781209,0.191455,0.767834,0.119078,0.474751,0.117176,0.998298,0.82976,0.345407,0.0935519,0.905994,0.679374,0.960251,0.764147,0.175784,0.824669,0.11617,0.527231,0.772888,0.849708,0.0956169,0.327275,0.344392,0.910865,0.133321,0.645459,0.989281,0.268654,0.669118,0.401152,0.822354,0.601279,0.712746,0.508823,0.38672,0.325109,0.0128658,0.828241,0.196896,0.091258,0.446803,0.710578,0.726093,0.360852,0.420341,0.333577,0.649246,0.873494,0.0935255,0.802894,0.539376,0.351353,0.371938,0.021449,0.207841,0.76364,0.251545,0.53076,0.709547,0.862198,0.570328,0.861842,0.206351,0.401002,0.119772,0.446143,0.396153,0.528077,0.337322,0.409928,0.17493,0.0114036,0.210186,0.692071,0.694117,0.76691,0.313308,0.0794253,0.288861,0.720856,0.249522,0.238074,0.569837,0.301953,0.786505,0.446486,0.215311,0.827276,0.981825,0.25467,0.864134,0.671114,0.776641,0.283888,0.596904,0.738303,0.719596,0.706269,0.853035,0.07688,0.717541,0.095201,0.663307,0.472242,0.812524,0.740061,0.744675,0.12279,0.772662,0.192468,0.77238,0.351785,0.298682,0.872104,0.20564,0.976383,0.435115,0.351655,0.696167,0.526586,0.924841,0.12995,0.719212,0.464185,0.844964,0.0396158,0.631331,0.957999,0.49024,0.475161,0.482901,0.593564,0.696647,0.205023,0.241013,0.803649,0.708829,0.559853,0.00132167,0.283425,0.27545,0.257234,0.241507,0.219879,0.434194,0.179378,0.401696,0.454403,0.162092,0.505771,0.721363,0.799165,0.363449,0.842744,0.555076,0.640194,0.107843,0.664965,0.700355,0.548202,0.738555,0.0572724,0.697493,0.147553,0.214334,0.519668,0.630853,0.685769,0.467368,0.685129,0.96525,0.432677,0.673395,0.664309,0.191608,0.790427,0.654754,0.376311,0.348608,0.94606,0.371465,0.138646,0.0279391,0.625527,0.131316,0.32513,0.129973,0.0175885,0.939485,0.78733,0.656572,0.709087,0.108823,0.186015,0.595941,0.674728,0.53088,0.315381,0.300287,0.15084,0.27903,0.14363,0.561807,0.374468,0.370326,0.548806,0.815664,0.691988,0.382263,0.632831,0.543968,0.320478,0.482551,0.996303,0.934777,0.748309,0.0279636,0.208029,0.479317,0.965894,0.237608,0.556736,0.376973,0.228765,0.443293,0.435401,0.950435,0.841319,0.961497,0.738377,0.45672,0.126971,0.706942,0.0700639,0.578052,0.671791,0.734121,0.161645,0.729451,0.721686,0.188299,0.468343,0.321895,0.940661,0.704145,0.438682,0.264991,0.666065,0.093468,0.353056,0.909411,0.769992,0.835599,0.994724,0.0174429,0.546392,0.559941,0.428053,0.174505,0.841508,0.353948,0.492461,0.419212,0.528532,0.642768,0.504241,0.484429,0.0652069,0.177316,0.871906,0.37414,0.595035,0.529142,0.495029,0.310439,0.132317,0.459177,0.846014,0.337837,0.516698,0.386319,0.412843,0.0648032,0.215437,0.00646174,0.397254,0.811774,0.457416,0.893234,0.619054,0.817016,0.101497,0.572239,0.249329,0.208095,0.641831,0.806881,0.424419,0.36581,0.182144,0.992268,0.930153,0.389933,0.3479,0.230959,0.762159,0.353468,0.380579,0.389996,0.415175,0.244812,0.0183956,0.0352482,0.12728,0.222152,0.422521,0.892182,0.567442,0.893747,0.0796264,0.804437,0.146917,0.655057,0.425005,0.343515,0.502068,0.721926,0.732431,0.0674781,0.00874108,0.220313,0.345978,0.641193,0.490797,0.180811,0.119607,0.147861,0.382882,0.444982,0.521556,0.558158,0.38715,0.969566,0.336956,0.101584,0.669812,0.956326,0.604715,0.406862,0.21459,0.154075,0.212307,0.100271,0.0586278,0.104929,0.929494,0.31987,0.937696,0.991092,0.0780952,0.381803,0.362018,0.539459,0.264439,0.380482,0.25639,0.840657,0.700505,0.277074,0.950241,0.432658,0.542722,0.221405,0.870655,0.939828,0.892353,0.379665,0.186392,0.635762,0.234916,0.876713,0.704263,0.0767201,0.332663,0.576887,0.708397,0.583703,0.140772,0.883303,0.0709659,0.425106,0.588394,0.60504,0.0425617,0.585509,0.991592,0.0357477,0.687263,0.530361,0.491933,0.29859,0.998036,0.714762,0.810938,0.509216,0.080296,0.561823,0.0770218,0.785858,0.556331,0.200407,0.395431,0.437833,0.399392,0.0819359,0.453616,0.223386,0.0986112,0.845944,0.70139,0.657832,0.61464,0.520755,0.212021,0.709787,0.94404,0.232973,0.765548,0.472981,0.117145,0.411313,0.910472,0.499606,0.818662,0.64607,0.486674,0.648154,0.662101,0.988064,0.971673,0.171291,0.922341,0.953681,0.337997,0.823244,0.87146,0.614135,0.0180018,0.923738,0.84016,0.762609,0.764034,0.721744,0.535701,0.662523,0.339428,0.463329,0.359159,0.378216,0.959697,0.158338,0.429216,0.919823,0.677059,0.103513,0.763737,0.165454,0.847997,0.965005,0.746257,0.557144,0.972867,0.977131,0.666291,0.71164,0.871655,0.928148,0.340788,0.162441,0.00359684,0.927362,0.94167,0.615348,0.339574,0.969274,0.61066,0.655609,0.640156,0.163827,0.814446,0.374851,0.622862,0.173888,0.211803,0.243302,0.0869549,0.0334903,0.310979,0.377287,0.794672,0.796974,0.0872951,0.647941,0.0819176,0.318642,0.13679,0.518348,0.719346,0.0792691,0.381368,0.854257,0.906322,0.516457,0.305867,0.811585,0.345048,0.573234,0.629129,0.906829,0.760435,0.726865,0.680541,0.421798,0.809945,0.535936,0.953015,0.674075,0.400226,0.663191,0.438021,0.552305,0.822008,0.847869,0.575315,0.705331,0.571156,0.0653264,0.79196,0.513864,0.16568,0.955863,0.265777,0.311508,0.665762,0.63762,0.711387,0.761334,0.156618,0.584337,0.484692,0.946305,0.66542,0.434058,0.228131,0.225456,0.31746,0.719437,0.5712,0.604955,0.463801,0.770862,0.418144,0.928929,0.703786,0.413413,0.373473,0.505176,0.945375,0.90924,0.191752,0.503623,0.0600992,0.834868,0.926737,0.628315,0.234285,0.501321,0.384287,0.680344,0.264206,0.214858,0.343696,0.721231,0.902166,0.0276777,0.451858,0.385651,0.343351,0.0585771,0.954793,0.282487,0.404992,0.304651,0.915882,0.477212,0.585822,0.605033,0.201452,0.906448,0.548655,0.887951,0.614647,0.227532,0.0840842,0.533519,0.571515,0.258724,0.405921,0.127546,0.114375,0.648423,0.00819492,0.282111,0.469016,0.19122,0.297599,0.987136,0.485043,0.37983,0.928732,0.820611,0.0995942,0.324326,0.427088,0.50075,0.487901,0.355947,0.539135,0.507045,0.714789,0.0549228,0.485776,0.50301,0.999107,0.214409,0.718859,0.861285,0.0982806,0.959804,0.599491,0.509428,0.596055,0.935417,0.125515,0.527044,0.499088,0.311799,0.313155,0.797985,0.549327,0.191914,0.244593,0.144227,0.297676,0.417286,0.605544,0.528182,0.18152,0.542556,0.957853,0.536589,0.395794,0.970117,0.81237,0.450545,0.628368,0.877909,0.683986,0.541153,0.107921,0.959114,0.353087,0.733445,0.98252,0.672018,0.729508,0.587975,0.212149,0.858407,0.505393,0.433625,0.819887,0.903588,0.829222,0.107476,0.742182,0.29346,0.949611,0.249318,0.111355,0.0844385,0.28915,0.533937,0.0851984,0.336376,0.975835,0.0162321,0.552433,0.00421274,0.384251,0.584546,0.563467,0.259473,0.174482,0.00586957,0.378574,0.214267,0.123114,0.920883,0.729925,0.199879,0.83221,0.269022,0.495723,0.763006,0.82096,0.776169,0.48637,0.502617,0.456376,0.870706,0.993414,0.168669,0.0306234,0.58838,0.408038,0.58639,0.277575,0.14187,0.877687,0.341927,0.761511,0.557162,0.0697417,0.86163,0.5689,0.327528,0.473995,0.238265,0.954461,0.301905,0.729326,0.454885,0.502203,0.0276536,0.80634,0.297542,0.795112,0.643994,0.696694,0.27435,0.501806,0.491583,0.389974,0.81917,0.634269,0.891087,0.448525,0.610162,0.175561,0.217734,0.85925,0.745234,0.782976,0.771884,0.462539,0.360186,0.375781,0.750409,0.638905,0.938246,0.421955,0.336049,0.550125,0.330173,0.732959,0.504086,0.549678,0.919982,0.459843,0.828933,0.902384,0.513644,0.894788,0.024913,0.138849,0.649558,0.408324,0.644051,0.4102,0.547086,0.96856,0.953218,0.944249,0.0851553,0.86837,0.54201,0.433989,0.823064,0.0955308,0.435076,0.223174,0.707889,0.758109,0.635021,0.674445,0.85439,0.48721,0.184148,0.312629,0.509341,0.484694,0.382564,0.305698,0.582003,0.330125,0.346938,0.352494,0.993027,0.654777,0.846142,0.323154,0.314909,0.0740582,0.129745,0.729662,0.552054,0.977562,0.498365,0.14624,0.375729,0.799197,0.613566,0.0218406,0.12332,0.142033,0.338937,0.172016,0.27717,0.921289,0.679873,0.336896,0.884504,0.316992,0.283014,0.420506,0.282346,0.955854,0.542471,0.319182,0.0205648,0.451423,0.506914,0.400967,0.853172,0.587785,0.0632725,0.859193,0.865591,0.865462,0.645624,0.421032,0.418344,0.886615,0.357168,0.0847066,|0.40673,0.0578143,0.00177747,0.744907,0.39895,0.772737,0.290894,0.497954,0.435981,0.682146,0.731695,0.619078,0.725936,0.768976,0.834043,0.641769,0.675815,0.698627,0.953127,0.900557,0.209031,0.266637,0.922696,0.968105,0.693095,0.267591,0.107571,0.162807,0.568867,0.66482,0.617207,0.236571,0.461634,0.26388,0.581423,0.322448,0.544123,0.424924,0.79605,0.823335,0.553153,0.282132,0.137196,0.304302,0.0182785,0.942356,0.543157,0.103736,0.511222,0.0306516,0.597057,0.114745,0.732134,0.0798177,0.687601,0.625683,0.786056,0.101716,0.113253,0.551087,0.0554634,0.302493,0.994911,0.800725,0.31734,0.993544,0.543315,0.446447,0.605717,0.927001,0.946258,0.642607,0.241197,0.51073,0.71476,0.514721,0.30904,0.0860872,0.783082,0.890549,0.700125,0.821522,0.500509,0.753837,0.232419,0.181753,0.362984,0.68289,0.453534,0.0162302,0.701486,0.278788,0.457539,0.313485,0.996036,0.773964,0.520525,0.724807,0.3277,0.419852,0.261485,0.567468,0.961312,0.711155,0.761985,0.258218,0.658101,0.125621,0.811972,0.183434,0.6469,0.477152,0.633041,0.806572,0.823461,0.582749,0.618177,0.591235,0.754733,0.688806,0.969151,0.686804,0.808658,0.952487,0.994115,0.760138,0.0990027,0.152347,0.335216,0.791125,0.782899,0.889625,0.495601,0.249247,0.883399,0.729333,0.596913,0.0143901,0.345335,0.938494,0.211844,0.847691,0.832439,0.0487178,0.617715,0.20913,0.998062,0.448081,0.794605,0.984183,0.975425,0.569664,0.506467,0.980928,0.594807,0.536275,0.575986,0.828457,0.618809,0.512096,0.188598,0.302541,0.799032,0.0385122,0.239246,0.262946,0.890144,0.620574,0.127477,0.432557,0.457838,0.611481,0.712336,0.608523,0.100112,0.0638474,0.94237,0.3785,0.437688,0.724145,0.709258,0.227609,0.729897,0.577994,0.822895,0.164577,0.37393,0.600706,0.308984,0.256892,0.181025,0.733779,0.778523,0.577288,0.490139,0.960387,0.944868,0.93481,0.492057,0.500595,0.45274,0.409883,0.58449,0.303347,0.0820847,0.518386,0.238791,0.659771,0.887353,0.621314,0.0696539,0.537753,0.12455,0.963043,0.402121,0.649009,0.319845,0.435096,0.747231,0.41205,0.910744,0.39745,0.552853,0.603797,0.858271,0.336971,0.388893,0.926154,0.470232,0.0167339,0.500731,0.0148521,0.324374,0.855417,0.626161,0.552357,0.881096,0.802003,0.498167,0.964152,0.65535,0.29103,0.425045,0.83778,0.193356,0.25516,0.033873,0.973508,0.984096,0.133385,0.323084,0.658885,0.212176,0.452312,0.034901,0.0585171,0.779559,0.2606,0.28789,0.204444,0.996518,0.841634,0.502074,0.0737591,0.944558,0.944319,0.646879,0.694089,0.274001,0.529089,0.604222,0.995797,0.871819,0.353764,0.346894,0.00124556,0.549892,0.374134,0.681265,0.323347,0.0449813,0.98629,0.519753,0.892137,0.114613,0.260276,0.287829,0.980891,0.0290043,0.38035,0.456972,0.370214,0.151962,0.548647,0.148133,0.433771,0.205965,0.907162,0.312473,0.243887,0.468826,0.43759,0.292799,0.121186,0.61012,0.329034,0.85333,0.646392,0.60707,0.549553,0.756168,0.344602,0.644738,0.736417,0.729337,0.429966,0.573112,0.684668,0.536507,0.786276,0.609909,0.295033,0.358465,0.753144,0.238676,0.56897,0.167549,0.320872,0.380823,0.154165,0.845141,0.0898894,0.311208,0.556569,0.721985,0.841696,0.538871,0.968143,0.630734,0.109507,0.571296,0.816089,0.0266245,0.450966,0.0440801,0.760131,0.498689,0.104732,0.413101,0.945867,0.661307,0.753561,0.239962,0.0915431,0.0794792,0.655104,0.803283,0.349918,0.928037,0.819327,0.490389,0.698423,0.672297,0.225227,0.122868,0.114685,0.15516,0.995235,0.0761733,0.859061,0.749711,0.96938,0.160904,0.887087,0.202881,0.375434,0.184342,0.791758,0.905518,0.55868,0.319925,0.788705,0.566206,0.214591,0.765181,0.329805,0.816118,0.580693,0.283992,0.694584,0.58937,0.151082,0.629182,0.0682898,0.495727,0.95741,0.31514,0.49808,0.569839,0.728366,0.4413,0.68097,0.499216,0.197417,0.87714,0.353519,0.684559,0.272603,0.710681,0.821793,0.632853,0.228873,0.112618,0.449366,0.271416,0.143759,0.735123,0.167021,0.416986,0.387142,0.829727,0.187932,0.642719,0.498427,0.784782,0.474765,0.429753,0.026782,0.589041,0.0228671,0.139556,0.703325,0.718191,0.280117,0.174935,0.418369,0.945284,0.689794,0.396844,0.456557,0.323889,0.432492,0.373124,0.683302,0.535712,0.855226,0.474306,0.785192,0.0641077,0.518857,0.895064,0.907539,0.69337,0.0523297,0.996765,0.953495,0.743207,0.874541,0.250104,0.104403,0.232695,0.461752,0.46042,0.156882,0.669409,0.868571,0.582667,0.729836,0.195423,0.969716,0.462273,0.841441,0.586254,0.84996,0.285627,0.151043,0.204609,0.135204,0.167216,0.581503,0.176651,0.867021,0.536099,0.122612,0.977149,0.909845,0.036863,0.280055,0.610912,0.213037,0.944761,0.353378,0.27421,0.229957,0.779649,0.852441,0.68998,0.765432,0.0963538,0.135236,0.903242,0.404125,0.947385,0.592173,0.648554,0.000212371,0.883574,0.949412,0.613372,0.744828,0.365295,0.511041,0.726912,0.633461,0.993543,0.547662,0.460473,0.447295,0.908015,0.350834,0.0391859,0.973568,0.40865,0.817367,0.378805,0.405576,0.794156,0.125612,0.858238,0.582901,0.599279,0.972947,0.00913656,0.861503,0.916832,0.54877,0.151421,0.361504,0.0649471,0.702745,0.330106,0.454241,0.298459,0.175467,0.855737,0.527255,0.103536,0.733034,0.667752,0.538906,0.0178571,0.240598,0.596919,0.436732,0.93578,0.947804,0.316407,0.217085,0.549532,0.495513,0.816033,0.996109,0.558399,0.998799,0.525933,0.72807,0.358266,0.279807,0.782285,0.145325,0.430798,0.0519039,0.0816684,0.08539,0.0248329,0.285312,0.386412,0.0194508,0.875144,0.630101,0.354493,0.830333,0.863967,0.871645,0.114803,0.816031,0.235586,0.772466,0.793603,0.467385,0.0591129,0.63911,0.646637,0.645713,0.338463,0.994801,0.131594,0.604904,0.836245,0.740781,0.615854,0.12833,0.901975,0.103817,0.435748,0.661296,0.171835,0.905579,0.789418,0.141492,0.195904,0.840963,0.108467,0.733389,0.00434393,0.976397,0.500327,0.914492,0.939523,0.701246,0.506279,0.340994,0.123398,0.697102,0.784805,0.192709,0.26558,0.16215,0.924142,0.425075,0.571822,0.969896,0.64856,0.99046,0.631085,0.235993,0.229831,0.849888,0.160945,0.85894,0.340889,0.218143,0.660951,0.91038,0.399379,0.788672,0.34728,0.517079,0.758417,0.613241,0.704188,0.286418,0.983968,0.185768,0.189786,0.222253,0.563071,0.3377,0.886539,0.752809,0.819063,0.450769,0.579844,0.121622,0.303679,0.608107,0.670489,0.0683975,0.0345326,0.519762,0.298008,0.538811,0.808467,0.324522,0.00388241,0.232168,0.892668,0.203872,0.793572,0.041629,0.476077,0.740583,0.974225,0.855117,0.348116,0.665042,0.0268185,0.554331,0.791946,0.9828,0.223048,0.279356,0.354047,0.853857,0.454263,0.168082,0.447667,0.929973,0.35183,0.583876,0.803932,0.965267,0.654844,0.439434,0.390003,0.241456,0.00501114,0.245545,0.330652,0.258607,0.408254,0.577903,0.49623,0.106797,0.351918,0.490073,0.108465,0.912104,0.0330669,0.46189,0.178958,0.302792,0.965845,0.820938,0.894612,0.938418,0.871158,0.588238,0.72576,0.784881,0.64206,0.988654,0.954145,0.141658,0.895855,0.738167,0.0311276,0.306708,0.316336,0.056821,0.792961,0.71117,0.755766,0.15578,0.374308,0.0640862,0.461099,0.137345,0.24677,0.842254,0.195896,0.0408351,0.119502,0.3839,0.360083,0.723339,0.877982,0.688055,0.255222,0.212032,0.513168,0.636084,0.345408,0.906958,0.617266,0.341989,0.973468,0.327655,0.0695997,0.29606,0.983035,0.467638,0.225397,0.712294,0.381944,0.285005,0.801165,0.715708,0.785803,0.551132,0.0965424,0.31915,0.64125,0.45833,0.442461,0.0124913,0.13127,0.800361,0.893396,0.296071,0.396778,0.153059,0.804002,0.833865,0.359651,0.468446,0.196637,0.116042,0.753201,0.0537661,0.658278,0.538296,0.149038,0.148181,0.413956,0.961254,0.196948,0.0362387,0.644075,0.368511,0.997359,0.0413417,0.148894,0.0359519,0.959392,0.762026,0.378186,0.590625,0.328752,0.027576,0.604023,0.798099,0.169119,0.363437,0.986696,0.0901715,0.953086,0.641547,0.450335,0.0956039,0.223017,0.623049,0.445886,0.496107,0.558663,0.781123,0.179719,0.872918,0.0363352,0.514292,0.10105,0.730968,0.826038,0.572437,0.0638304,0.798301,0.554193,0.749852,0.0278092,0.0302851,0.155936,0.635833,0.634227,0.926618,0.577702,0.675607,0.203727,0.51061,0.750125,0.426546,0.476739,0.144134,0.896825,0.517947,0.289429,0.422675,0.868304,0.396735,0.880283,0.0158827,0.701315,0.077378,0.187213,0.805101,0.42535,0.932491,0.839904,0.879415,0.407065,0.547049,0.61998,0.330992,0.593873,0.485474,0.353096,0.611874,0.497404,0.0866408,0.593378,0.746624,0.530688,0.0241892,0.286518,0.919928,0.591725,0.501409,0.0530015,0.390458,0.545675,0.161362,0.62644,0.981682,0.340196,0.741856,0.605393,0.354765,0.497205,0.0777656,0.201497,0.878183,0.571564,0.405218,0.652387,0.86814,0.302545,0.412611,0.409062,0.32839,0.356068,0.0448872,0.707803,0.958817,0.621265,0.896747,0.429312,0.689808,0.353818,0.622783,0.806731,0.646456,0.434902,0.639351,0.45375,0.888927,0.440166,0.659126,0.088468,0.389283,0.975146,0.676366,0.437116,0.31196,0.657249,0.941039,0.677068,0.0223132,0.298423,0.500413,0.14233,0.79558,0.252019,0.237024,0.970669,0.975076,0.924903,0.0885057,0.869216,0.921059,0.482521,0.620043,0.473586,0.974165,0.649528,0.329045,0.91701,0.255101,0.603176,0.0853586,0.877983,0.335708,0.83883,0.6687,0.0430433,0.359233,0.648279,0.501304,0.657549,0.796609,0.836576,0.0313843,0.941463,0.306308,0.949048,0.403495,0.0345829,0.634854,0.923039,0.166755,0.361228,0.346013,0.226543,0.0345163,0.0691669,0.382076,0.658768,0.776963,0.858052,0.368255,0.00923359,0.874523,|0.0251001,0.908412,0.135636,0.856621,0.241292,0.0800727,0.0597577,0.884905,0.763762,0.901962,0.531646,0.0835693,0.647409,0.252527,0.912863,0.892399,0.841986,0.275797,0.683608,0.00969809,0.953482,0.276744,0.818828,0.821655,0.484566,0.281788,0.692678,0.866655,0.41481,0.565323,0.428008,0.557154,0.883865,0.430844,0.793545,0.836927,0.25839,0.344358,0.932982,0.161717,0.929986,0.319813,0.678039,0.0467279,0.38864,0.263345,0.0188366,0.991455,0.805226,0.509782,0.739799,0.169887,0.00305623,0.716969,0.178831,0.72173,0.487755,0.574747,0.619579,0.0314211,0.146907,0.0781668,0.354913,0.540174,0.767126,0.281661,0.184744,0.852434,0.637229,0.034444,0.365675,0.224592,0.84937,0.278828,0.511108,0.158934,0.620754,0.956157,0.863879,0.719124,0.0399145,0.941829,0.63603,0.973848,0.389036,0.13018,0.570014,0.974314,0.902158,0.592834,0.360838,0.0034197,0.990436,0.245248,0.162147,0.903269,0.621895,0.928546,0.396787,0.97283,0.591019,0.362779,0.940122,0.535628,0.861799,0.0643283,0.306525,0.972593,0.66569,0.789839,0.333341,0.314384,0.175926,0.496721,0.124548,0.258158,0.9382,0.865701,0.852223,0.448011,0.754387,0.541622,0.819017,0.857586,0.23002,0.352293,0.105343,0.25621,0.413851,0.944729,0.770986,0.363422,0.209205,0.89166,0.157394,0.462441,0.142572,0.555925,0.304055,0.562058,0.0864217,0.688669,0.129278,0.352024,0.410036,0.984049,0.498394,0.876665,0.548246,0.547746,0.285001,0.270823,0.28545,0.78521,0.618784,0.798837,0.779179,0.833074,0.751356,0.557381,0.50062,0.39846,0.937999,0.230447,0.809117,0.636661,0.217551,0.623703,0.121218,0.553171,0.181743,0.401901,0.966625,0.923524,0.595735,0.0809983,0.00895596,0.835248,0.50584,0.674384,0.662429,0.0366554,0.730972,0.959342,0.587311,0.527872,0.18123,0.837727,0.659848,0.521174,0.703245,0.207219,0.415703,0.970817,0.477892,0.0863063,0.501775,0.891441,0.997164,0.802245,0.91137,0.615072,0.701154,0.947495,0.198268,0.0487586,0.320121,0.400535,0.575496,0.947715,0.216317,0.258959,0.150114,0.678895,0.455703,0.582051,0.664271,0.777504,0.114787,0.816948,0.787352,0.540792,0.55349,0.352186,0.042809,0.794457,0.182304,0.632246,0.559081,0.679131,0.259625,0.320967,0.129999,0.737573,0.162908,0.140115,0.58254,0.0928556,0.0694792,0.982259,0.865037,0.800701,0.31274,0.23243,0.785698,0.534906,0.959194,0.429129,0.738494,0.779423,0.771867,0.48576,0.0339974,0.195972,0.635576,0.797698,0.287255,0.0488413,0.504628,0.490461,0.868744,0.882431,0.763426,0.0277328,0.00146496,0.0555537,0.856049,0.741831,0.148659,0.218911,0.963943,0.774596,0.01639,0.886017,0.752401,0.981655,0.345821,0.0963317,0.742912,0.185586,0.954719,0.0315315,0.597787,0.71924,0.539293,0.103695,0.630275,0.47876,0.123543,0.733025,0.82169,0.333821,0.843346,0.636082,0.678994,0.215228,0.876047,0.807581,0.983605,0.227342,0.233732,0.703014,0.59075,0.215304,0.169747,0.432074,0.515417,0.719874,0.225492,0.197959,0.770843,0.881033,0.613609,0.555782,0.705358,0.599044,0.929282,0.173311,0.929,0.760838,0.645236,0.273445,0.175267,0.620988,0.46804,0.989944,0.362885,0.310343,0.860921,0.44571,0.647419,0.128634,0.524455,0.956373,0.493847,0.180173,0.985395,0.806217,0.625663,0.382963,0.765792,0.41253,0.583085,0.0486573,0.677906,0.530798,0.0145412,0.988333,0.0866884,0.455069,0.96426,0.417579,0.499286,0.000486612,0.51748,0.95938,0.542361,0.98193,0.0444192,0.697972,0.976807,0.791339,0.986347,0.515113,0.346456,0.175806,0.485449,0.596046,0.337855,0.441128,0.754415,0.289244,0.881881,0.0962853,0.779083,0.472231,0.717972,0.200191,0.828317,0.951835,0.161747,0.91986,0.315503,0.313344,0.643586,0.468987,0.811246,0.975914,0.787886,0.815002,0.955967,0.575751,0.0375354,0.831724,0.74993,0.646717,0.477003,0.0299761,0.619182,0.12191,0.0834416,0.142102,0.76257,0.780796,0.397473,0.421187,0.543887,0.417762,0.71264,0.278512,0.56399,0.503433,0.958797,0.887803,0.246978,0.605346,0.668173,0.0715864,0.130316,0.889155,0.0594925,0.314037,0.164621,0.41066,0.455194,0.888475,0.0953764,0.605632,0.47215,0.61691,0.0935476,0.247905,0.474397,0.712092,0.812444,0.869299,0.521008,0.289923,0.623148,0.310769,0.265414,0.103635,0.114685,0.170344,0.485929,0.711317,0.290523,0.457181,0.0599038,0.335467,0.774529,0.352847,0.00521463,0.0707685,0.701822,0.125432,0.857071,0.168862,0.958318,0.72492,0.500893,0.979125,0.942024,0.273126,0.176198,0.0949845,0.60085,0.49621,0.588141,0.275663,0.521897,0.839281,0.93083,0.474256,0.884439,0.876971,0.149684,0.450842,0.500528,0.927932,0.494266,0.88726,0.808338,0.380791,0.416136,0.666597,0.386371,0.897347,0.982989,0.464285,0.987719,0.473993,0.172568,0.631987,0.215948,0.859528,0.0934108,0.750852,0.0760044,0.44004,0.082782,0.994919,0.01466,0.207459,0.695294,0.879053,0.16899,0.521885,0.754866,0.890431,0.495076,0.876981,0.959162,0.0683326,0.190244,0.575146,0.0808604,0.0928856,0.338371,0.509452,0.754372,0.159754,0.275159,0.529152,0.186315,0.651762,0.559485,0.927701,0.626493,0.445927,0.260037,0.426493,0.109432,0.672832,0.00592864,0.645363,0.248243,0.347273,0.278289,0.779397,0.678098,0.715647,0.479309,0.830915,0.180854,0.188022,0.529811,0.409801,0.615937,0.233241,0.197987,0.271159,0.623474,0.288006,0.524846,0.91523,0.660598,0.663928,0.890266,0.934994,0.84293,0.790775,0.424738,0.250214,0.136766,0.927233,0.265099,0.65811,0.237082,0.411254,0.634146,0.526586,0.656238,0.951341,0.497023,0.586128,0.818003,0.0775964,0.132844,0.821563,0.854943,0.636599,0.125455,0.502266,0.503922,0.917368,0.233012,0.0256545,0.264863,0.0182385,0.0130522,0.991654,0.318599,0.946626,0.357287,0.366181,0.349022,0.220357,0.050814,0.0600746,0.2744,0.423278,0.387437,0.818895,0.514638,0.768547,0.746073,0.154424,0.394949,0.764377,0.388738,0.454119,0.112668,0.217518,0.155956,0.0212692,0.947128,0.748677,0.64769,0.254554,0.220349,0.784303,0.14995,0.743537,0.356608,0.879752,0.87834,0.403621,0.600573,0.556753,0.974615,0.894438,0.956147,0.995757,0.470033,0.753484,0.391306,0.672842,0.418893,0.763942,0.114695,0.463939,0.865968,0.0974056,0.244898,0.501904,0.353347,0.639599,0.977537,0.366607,0.282764,0.048519,0.97923,0.707238,0.234403,0.979863,0.70651,0.77428,0.23575,0.446802,0.513394,0.727766,0.831605,0.809294,0.487424,0.392217,0.0650886,0.465015,0.0370969,0.794249,0.832529,0.762234,0.932898,0.609469,0.487876,0.260029,0.454658,0.915991,0.565162,0.562132,0.883654,0.0145336,0.0582304,0.0290669,0.146222,0.131776,0.479383,0.908403,0.38596,0.963675,0.820053,0.440507,0.18656,0.0118053,0.308601,0.736366,0.66182,0.836639,0.0161273,0.381475,0.18898,0.0697136,0.365539,0.180266,0.827638,0.33774,0.523651,0.297531,0.0606471,0.411894,0.20937,0.319378,0.527772,0.453959,0.440247,0.598112,0.808208,0.676563,0.0135769,0.66707,0.0350344,0.978267,0.501279,0.170842,0.650349,0.215805,0.272109,0.897827,0.923351,0.24597,0.821525,0.611628,0.896594,0.232484,0.263466,0.2136,0.547873,0.0424641,0.625581,0.297583,0.206594,0.36375,0.907781,0.487166,0.968653,0.909058,0.431061,0.986634,0.367206,0.760568,0.723472,0.491617,0.247282,0.293856,0.103722,0.714721,0.906829,0.39213,0.000626862,0.212344,0.62199,0.0897776,0.287623,0.166484,0.504395,0.217266,0.288725,0.286402,0.916039,0.345349,0.303212,0.697532,0.730758,0.230518,0.758918,0.504337,0.744756,0.262979,0.798244,0.386848,0.397848,0.123208,0.350938,0.635937,0.171122,0.190573,0.258062,0.478365,0.984846,0.571978,0.654471,0.802867,0.642286,0.122509,0.175973,0.680364,0.135601,0.804497,0.769274,0.230276,0.185535,0.715348,0.0840231,0.762064,0.218313,0.730206,0.791444,0.759299,0.574284,0.168892,0.709752,0.242159,0.969012,0.0531664,0.128811,0.146864,0.353611,0.557925,0.633957,0.457507,0.224116,0.2022,0.417672,0.485363,0.247471,0.573444,0.00825799,0.290804,0.476282,0.766747,0.153152,0.031539,0.619328,0.108855,0.716015,0.162631,0.000472248,0.447875,0.414849,0.344435,0.173596,0.397146,0.306817,0.922668,0.852641,0.518544,0.704878,0.345823,0.406485,0.353901,0.794372,0.715924,0.736995,0.271677,0.812454,0.054877,0.062888,0.94537,0.308047,0.280972,0.547199,0.163833,0.733123,0.0509756,0.486321,0.60132,0.595919,0.184726,0.937324,0.841329,0.370423,0.0661033,0.974078,0.41395,0.74746,0.666151,0.753453,0.958458,0.29621,0.794374,0.922237,0.0523303,0.91229,0.123716,0.402417,0.618542,0.525877,0.411576,0.95462,0.59098,0.678626,0.356518,0.769225,0.139857,0.0827084,0.918742,0.470981,0.496794,0.566899,0.435419,0.707858,0.35194,0.300305,0.323264,0.842972,0.00788331,0.49002,0.668415,0.946481,0.62486,0.219211,0.0464743,0.784733,0.968982,0.229317,0.480706,0.915582,0.556768,0.0679473,0.180668,0.533656,0.256173,0.634601,0.908239,0.559554,0.818411,0.103282,0.699555,0.610332,0.99173,0.883982,0.597857,0.29983,0.924668,0.772972,0.193548,0.943723,0.386168,0.782916,0.450425,0.406,0.330004,0.0776913,0.805931,0.586618,0.222557,0.925859,0.651721,0.428079,0.0669764,0.746631,0.199859,0.0101007,0.200457,0.464624,0.426489,0.599526,0.907099,0.0302876,0.860449,0.759942,0.91732,0.57802,0.727513,0.848807,0.909204,0.401831,0.878873,0.945132,0.873128,0.655367,0.635327,0.0539803,0.609897,0.57838,0.508777,0.367703,0.665989,0.492432,0.925228,0.32246,0.631127,0.927258,0.831279,0.67982,0.454762,0.161301,0.04992,0.625186,0.32851,0.045903,0.213491,0.446219,0.595257,0.878201,0.441025,0.788799,0.312686,0.029768,0.462639,|0.30771,0.828128,0.758451,0.551698,0.65525,0.143416,0.728476,0.495424,0.178092,0.717886,0.0967292,0.584073,0.700127,0.23393,0.200161,0.340878,0.0784499,0.378469,0.141092,0.320154,0.639999,0.917765,0.98695,0.982684,0.0122705,0.0624812,0.972222,0.168102,0.0401582,0.0134853,0.706954,0.0925674,0.707086,0.13097,0.611691,0.122183,0.890696,0.794305,0.423273,0.371093,0.770292,0.516503,0.0794467,0.835608,0.822748,0.140521,0.678408,0.254018,0.170237,0.905402,0.53304,0.492034,0.677596,0.188367,0.876655,0.974444,0.731807,0.497208,0.132475,0.719643,0.022687,0.374005,0.366048,0.00873739,0.743212,0.740272,0.78771,0.225722,0.283957,0.584408,0.335212,0.705061,0.0878835,0.855478,0.00431609,0.467453,0.940976,0.768499,0.652677,0.454595,0.85946,0.134755,0.161498,0.706212,0.808211,0.35312,0.839406,0.406329,0.849147,0.0295954,0.619719,0.0227891,0.653896,0.320563,0.598613,0.146923,0.340747,0.536759,0.311834,0.724994,0.876041,0.475586,0.288655,0.250536,0.640531,0.352253,0.458676,0.246556,0.252209,0.862925,0.748099,0.686922,0.926982,0.0383962,0.690851,0.815725,0.33524,0.219981,0.0952995,0.121379,0.722188,0.80452,0.330414,0.719192,0.74803,0.822999,0.625991,0.820947,0.361499,0.813729,0.693553,0.154422,0.788291,0.646189,0.546602,0.423205,0.977502,0.483989,0.654175,0.402649,0.893121,0.104719,0.197302,0.319177,0.702154,0.0863734,0.0621123,0.419746,0.0106552,0.91694,0.130535,0.727774,0.235653,0.0799034,0.66081,0.492966,0.286972,0.970093,0.919649,0.804049,0.432657,0.523703,0.268521,0.188038,0.861912,0.764749,0.126446,0.558554,0.69821,0.602535,0.667819,0.539396,0.546439,0.939135,0.934152,0.203078,0.0288323,0.325343,0.847384,0.0985252,0.566503,0.428198,0.0618565,0.391191,0.283911,0.667452,0.706061,0.117705,0.669923,0.328883,0.00904244,0.064417,0.593448,0.172796,0.626634,0.820993,0.0896377,0.657242,0.789367,0.171974,0.611153,0.342768,0.979645,0.44023,0.113327,0.18015,0.176325,0.0387993,0.24149,0.403699,0.247663,0.436697,0.359529,0.00523925,0.65972,0.0167736,0.0314736,0.71835,0.742016,0.497272,0.640124,0.361025,0.585571,0.0885965,0.800615,0.101068,0.696295,0.8697,0.949024,0.801526,0.974259,0.694133,0.0294576,0.152787,0.321751,0.101847,0.765304,0.602198,0.823626,0.684693,0.049168,0.133399,0.779409,0.0721019,0.93273,0.406376,0.311438,0.346868,0.288682,0.688356,0.121814,0.183189,0.172261,0.832765,0.721828,0.705977,0.548625,0.569596,0.766853,0.382338,0.270093,0.253864,0.664315,0.707845,0.233176,0.87899,0.355013,0.983674,0.433626,0.682193,0.401435,0.200222,0.379781,0.1474,0.215941,0.059036,0.66816,0.480319,0.25919,0.0705967,0.389095,0.0581445,0.772782,0.243097,0.743716,0.115697,0.33506,0.662184,0.477894,0.802889,0.190578,0.954822,0.131006,0.037217,0.402918,0.0559517,0.254457,0.667321,0.339735,0.0443587,0.866552,0.174147,0.887619,0.26734,0.854568,0.724356,0.0960501,0.272164,0.0403431,0.735895,0.982746,0.53417,0.0890657,0.00934792,0.447444,0.611834,0.312242,0.83746,0.295252,0.583682,0.0770096,0.0195842,0.362696,0.930218,0.442758,0.817157,0.619152,0.635897,0.755235,0.911438,0.0794499,0.190348,0.854378,0.856013,0.924423,0.195345,0.130907,0.299781,0.304649,0.415528,0.726857,0.148448,0.552093,0.487386,0.0838482,0.300807,0.576276,0.807023,0.687209,0.865547,0.873565,0.734762,0.466476,0.56842,0.102878,0.279574,0.548028,0.56805,0.699681,0.579611,0.221187,0.517849,0.0183941,0.18741,0.410084,0.339662,0.878031,0.0846709,0.687708,0.00323087,0.392947,0.535863,0.150876,0.0848287,0.727325,0.256576,0.923121,0.749775,0.200333,0.0693964,0.91337,0.643379,0.0537021,0.561741,0.156331,0.301339,0.621759,0.931844,0.506046,0.438831,0.363938,0.820029,0.802866,0.747663,0.452257,0.240537,0.17946,0.558274,0.293373,0.539825,0.611663,0.66279,0.537871,0.862908,0.637776,0.250237,0.852205,0.445324,0.861564,0.836975,0.471946,0.149868,0.304155,0.421735,0.711433,0.126232,0.749237,0.101785,0.208095,0.0904443,0.083436,0.618913,0.200955,0.506155,0.257966,0.17606,0.301913,0.406561,0.982972,0.870663,0.753669,0.652182,0.306548,0.879598,0.0347633,0.849271,0.504697,0.0393396,0.159552,0.677751,0.327778,0.0825227,0.897797,0.321738,0.270137,0.409721,0.502499,0.35968,0.62003,0.0863593,0.521384,0.787582,0.343691,0.078931,0.972762,0.415367,0.159069,0.894352,0.945778,0.845684,0.807621,0.035226,0.0931285,0.649612,0.906014,0.36532,0.806004,0.0413696,0.38959,0.644111,0.758764,0.605658,0.302751,0.709187,0.722737,0.194718,0.398301,0.743489,0.641029,0.294173,0.601906,0.88112,0.68301,0.279561,0.756655,0.400203,0.0180255,0.385914,0.458981,0.451389,0.56506,0.218077,0.930498,0.480387,0.414797,0.57964,0.396276,0.605346,0.050217,0.926807,0.899553,0.664384,0.774241,0.128013,0.498364,0.776036,0.447028,0.225218,0.955139,0.953435,0.0172256,0.650304,0.93464,0.291832,0.913794,0.834553,0.65126,0.271544,0.0377782,0.850791,0.952894,0.355131,0.282737,0.710631,0.398409,0.0393952,0.886773,0.585056,0.00755966,0.409923,0.924048,0.611719,0.259127,0.222157,0.57294,0.521323,0.297288,0.106265,0.872052,0.86054,0.45417,0.0666935,0.0128821,0.804184,0.164865,0.337053,0.26957,0.76724,0.0454825,0.089895,0.646941,0.949456,0.269354,0.490388,0.869538,0.557193,0.316791,0.550878,0.917692,0.836076,0.292121,0.175037,0.276403,0.0871484,0.292522,0.382929,0.737632,0.0670403,0.568869,0.860047,0.426471,0.718464,0.0170529,0.680605,0.759749,0.910606,0.952458,0.106945,0.41456,0.907101,0.773474,0.778286,0.687833,0.84282,0.316244,0.551062,0.488628,0.856471,0.265321,0.566485,0.0387437,0.332119,0.647866,0.936199,0.718046,0.601071,0.437877,0.410898,0.077554,0.306279,0.668693,0.62977,0.116256,0.326033,0.416915,0.323357,0.525842,0.83408,0.287225,0.905356,0.335059,0.607872,0.596479,0.284915,0.719244,0.0473931,0.73195,0.457761,0.770556,0.179743,0.862709,0.489155,0.577453,0.923508,0.730556,0.446929,0.523971,0.124913,0.479301,0.0919672,0.34008,0.363025,0.349926,0.896627,0.861938,0.261534,0.874653,0.331231,0.632264,0.526323,0.827549,0.000201344,0.549605,0.530753,0.339647,0.651815,0.428039,0.70073,0.779136,0.473722,0.637179,0.765459,0.820961,0.0671704,0.710047,0.644659,0.328215,0.105575,0.925426,0.571723,0.412307,0.854377,0.493908,0.688745,0.355792,0.799514,0.429873,0.750828,0.705712,0.459048,0.0814301,0.351334,0.796129,0.456228,0.379065,0.244195,0.317163,0.5728,0.13698,0.0150025,0.866824,0.922629,0.695912,0.0485398,0.841397,0.00211668,0.986135,0.178926,0.855322,0.0935459,0.670697,0.72271,0.672265,0.938241,0.554596,0.267229,0.899941,0.820921,0.517427,0.417373,0.606012,0.531803,0.140593,0.0489275,0.126641,0.113913,0.519859,0.884366,0.972772,0.149845,0.241212,0.820199,0.430572,0.716041,0.592347,0.0234614,0.742379,0.399157,0.82086,0.949502,0.437702,0.929129,0.768904,0.88215,0.294589,0.167748,0.84487,0.868998,0.835834,0.671354,0.517086,0.264823,0.72409,0.0641459,0.960287,0.310223,0.540273,0.865872,0.729527,0.930074,0.546363,0.658109,0.346444,0.196616,0.454864,0.4282,0.0375644,0.0947816,0.0484033,0.750726,0.343058,0.613544,0.107773,0.137771,0.313779,0.103146,0.489946,0.952491,0.103327,0.524678,0.742774,0.415318,0.786976,0.909682,0.451253,0.17459,0.842955,0.603188,0.090744,0.194406,0.370758,0.0391134,0.530524,0.593196,0.95002,0.00251997,0.0425829,0.103519,0.0448718,0.221438,0.175644,0.832984,0.748012,0.0332319,0.40946,0.960109,0.745292,0.246913,0.566332,0.501355,0.253933,0.354496,0.0789347,0.764073,0.314056,0.966644,0.606954,0.761605,0.93297,0.58905,0.765328,0.374623,0.957515,0.410242,0.0713471,0.122728,0.804606,0.992933,0.804484,0.949698,0.372985,0.727219,0.00011456,0.686846,0.539207,0.382351,0.123533,0.425314,0.564862,0.377171,0.29521,0.991447,0.754467,0.903906,0.884098,0.236738,0.665613,0.230347,0.671851,0.142697,0.156589,0.896268,0.560898,0.636291,0.643291,0.41941,0.335379,0.876705,0.752426,0.93181,0.419521,0.752219,0.402789,0.274683,0.422151,0.784664,0.962657,0.528817,0.688363,0.355078,0.961085,0.998122,0.10793,0.233519,0.00918365,0.299266,0.940803,0.199334,0.671048,0.543844,0.75713,0.922611,0.81583,0.99611,0.409691,0.980748,0.0942723,0.73305,0.356808,0.314908,0.670838,0.724913,0.949182,0.630999,0.678798,0.628062,0.590702,0.51812,0.336394,0.311041,0.0768015,0.794136,0.550961,0.926604,0.450259,0.597612,0.332598,0.430843,0.250371,0.404576,0.736073,0.5861,0.677983,0.774677,0.540848,0.704581,0.685028,0.172047,0.992054,0.221158,0.62846,0.421957,0.169111,0.732355,0.0891319,0.544191,0.336054,0.464314,0.808022,0.0753084,0.193824,0.985127,0.136292,0.637132,0.800709,0.453087,0.990493,0.0160478,0.50959,0.19631,0.158342,0.824306,0.880652,0.908233,0.86323,0.44147,0.703323,0.716626,0.143926,0.420107,0.331314,0.32816,0.587814,0.377769,0.244932,0.54987,0.0958914,0.0145856,0.36987,0.235537,0.662136,0.482815,0.75114,0.844359,0.252059,0.178219,0.478814,0.734463,0.609002,0.526846,0.158748,0.836785,0.736717,0.899773,0.0946537,0.21782,0.230964,0.463111,0.953323,0.681058,0.787282,0.0514442,0.0649557,0.128987,0.401821,0.656779,0.00946677,0.757187,0.708597,0.611021,0.298721,0.488641,0.70606,0.341679,0.735496,0.973794,0.418488,0.916674,0.371731,0.847863,0.174811,0.354436,0.825973,0.195088,0.200154,0.704553,0.381384,0.425318,0.166207,0.37731,0.148671,0.867999,0.225574,0.597014,0.703824,0.736947,0.815693,0.991967,0.0384886,0.585863,|0.836741,0.631069,0.594378,0.480219,0.322004,0.76091,0.248315,0.921419,0.325381,0.279256,0.0488124,0.100746,0.580645,0.52686,0.73171,0.384749,0.814976,0.363876,0.129093,0.336319,0.998745,0.519331,0.560559,0.513913,0.717002,0.503498,0.286551,0.899053,0.827466,0.959138,0.646495,0.604338,0.090317,0.86963,0.748104,0.054433,0.0109317,0.961673,0.534546,0.573048,0.405088,0.110786,0.534444,0.0154122,0.332464,0.139214,0.983439,0.140911,0.78743,0.921416,0.449744,0.547503,0.675326,0.902745,0.392984,0.759292,0.418168,0.222456,0.23859,0.589034,0.815117,0.900539,0.420481,0.0790406,0.416914,0.65632,0.344535,0.791455,0.0198908,0.0186148,0.0102335,0.581625,0.0773416,0.208561,0.288761,0.387558,0.290181,0.395218,0.226552,0.90421,0.954469,0.120721,0.591467,0.549414,0.0174168,0.376987,0.963111,0.715736,0.397046,0.286423,0.696575,0.0973922,0.114591,0.776158,0.657357,0.632543,0.564703,0.614239,0.292178,0.467445,0.67652,0.716398,0.515244,0.0454794,0.866859,0.500231,0.181849,0.614729,0.658324,0.207336,0.906526,0.0853001,0.468185,0.340751,0.444328,0.458061,0.286456,0.268594,0.876284,0.124958,0.510874,0.716327,0.697537,0.890825,0.534609,0.769244,0.17226,0.797524,0.352502,0.536353,0.175325,0.27642,0.470902,0.783004,0.762452,0.333406,0.943481,0.691259,0.615025,0.664465,0.876362,0.837618,0.663941,0.465604,0.00433552,0.312558,0.320761,0.302867,0.529996,0.400079,0.823027,0.995773,0.890253,0.675526,0.184091,0.812743,0.673023,0.525866,0.0243954,0.187685,0.634011,0.373006,0.215299,0.340552,0.478892,0.431684,0.551151,0.298073,0.554182,0.548346,0.403287,0.0969599,0.437068,0.688542,0.986438,0.686201,0.174988,0.0650749,0.0806143,0.0145664,0.983779,0.385749,0.0796705,0.704702,0.535887,0.666785,0.610502,0.375941,0.930746,0.677304,0.27932,0.0158008,0.688014,0.613557,0.541371,0.169836,0.0422125,0.302044,0.332831,0.291978,0.822519,0.540386,0.571177,0.389437,0.282349,0.194019,0.609486,0.595486,0.824336,0.404212,0.531762,0.211696,0.566968,0.0989959,0.63361,0.128027,0.508258,0.284467,0.854884,0.166607,0.56301,0.391091,0.390736,0.108225,0.860283,0.535497,0.509805,0.839079,0.0410796,0.889268,0.673122,0.394879,0.0850498,0.291562,0.14474,0.919991,0.566929,0.621714,0.278402,0.128617,0.22517,0.214523,0.0427682,0.24949,0.447093,0.446991,0.890007,0.692805,0.764251,0.549523,0.886187,0.519609,0.65781,0.102249,0.968546,0.582309,0.418183,0.0773499,0.895234,0.657737,0.102087,0.650459,0.682604,0.600927,0.880832,0.328909,0.424885,0.910021,0.635843,0.906914,0.51553,0.770534,0.630127,0.366011,0.652315,0.392012,0.289677,0.769824,0.936036,0.920576,0.859714,0.139153,0.960297,0.192049,0.698648,0.682711,0.814552,0.45004,0.887463,0.503354,0.679678,0.855607,0.269138,0.707091,0.814874,0.568408,0.484142,0.889794,0.15133,0.077577,0.652136,0.760564,0.272284,0.492041,0.186111,0.843615,0.47959,0.837256,0.508795,0.219105,0.889831,0.601751,0.301604,0.443928,0.361222,0.052591,0.281054,0.745097,0.605958,0.37469,0.237918,0.174935,0.659864,0.708406,0.581386,0.769556,0.665123,0.923859,0.414463,0.0699643,0.747408,0.00241721,0.564441,0.338926,0.281264,0.15346,0.634,0.271465,0.474468,0.335526,0.0614734,0.735145,0.0047434,0.666332,0.330682,0.208245,0.499777,0.569206,0.415874,0.4294,0.817501,0.62793,0.459738,0.325521,0.532839,0.178238,0.613932,0.719785,0.859989,0.691446,0.106822,0.183085,0.0829406,0.38043,0.774558,0.282529,0.565171,0.181871,0.0364686,0.844359,0.537226,0.793128,0.307357,0.595399,0.739576,0.268968,0.510881,0.324245,0.105968,0.48478,0.202905,0.762195,0.865773,0.39944,0.47452,0.468525,0.274983,0.505851,0.082987,0.463596,0.182151,0.645992,0.903943,0.849995,0.171701,0.450534,0.908494,0.502417,0.636517,0.845717,0.748427,0.880885,0.557877,0.490956,0.178264,0.148013,0.999573,0.48955,0.985498,0.723797,0.692791,0.717438,0.22018,0.693993,0.887375,0.899585,0.826537,0.556235,0.599475,0.503697,0.461899,0.943961,0.551806,0.161597,0.687628,0.159109,0.449901,0.747221,0.347222,0.731323,0.696662,0.938866,0.465367,0.28808,0.891261,0.883274,0.734482,0.291272,0.942982,0.936831,0.658772,0.722547,0.703741,0.81368,0.184556,0.746427,0.494885,0.432699,0.441926,0.0970097,0.127262,0.475174,0.117876,0.999928,0.745349,0.628984,0.439408,0.21827,0.970505,0.907183,0.315217,0.787123,0.232192,0.177289,0.524327,0.972735,0.158082,0.210439,0.838805,0.641783,0.368445,0.148888,0.384076,0.491144,0.423444,0.39682,0.93577,0.145782,0.15382,0.945002,0.466429,0.890587,0.464546,0.275247,0.730417,0.133143,0.522122,0.446746,0.347149,0.690268,0.534843,0.438494,0.191351,0.54219,0.571033,0.167619,0.626812,0.510922,0.855347,0.214218,0.238058,0.102036,0.386772,0.957999,0.111144,0.485678,0.128995,0.193612,0.318799,0.285506,0.571163,0.558331,0.690811,0.0848724,0.113739,0.802239,0.247938,0.969718,0.149687,0.616103,0.60069,0.820798,0.289509,0.878878,0.596997,0.153341,0.637275,0.554495,0.467751,0.472139,0.387205,0.975479,0.0419801,0.59758,0.306992,0.14859,0.133489,0.893731,0.640847,0.946868,0.0633373,0.510514,0.156828,0.717158,0.419843,0.0894627,0.630815,0.415957,0.458368,0.715587,0.745155,0.525756,0.883672,0.707572,0.236463,0.426091,0.689804,0.271188,0.496891,0.136862,0.00122935,0.910655,0.321495,0.370657,0.107745,0.589164,0.695314,0.649093,0.780173,0.788328,0.455762,0.521114,0.676682,0.572411,0.0106215,0.0250959,0.558073,0.75949,0.804486,0.638651,0.999211,0.787866,0.854236,0.813319,0.502146,0.294206,0.00538135,0.58068,0.464918,0.0305104,0.52501,0.753226,0.9282,0.283134,0.292731,0.274091,0.742077,0.339265,0.132423,0.29392,0.318043,0.478467,0.0325169,0.828032,0.743496,0.430498,0.00583827,0.114976,0.421097,0.603998,0.840456,0.709052,0.4091,0.135435,0.663427,0.659407,0.993453,0.979193,0.943216,0.435046,0.941889,0.765592,0.0795339,0.598642,0.717834,0.199435,0.954581,0.137123,0.63285,0.274429,0.31978,0.500146,0.648753,0.664235,0.317947,0.722041,0.109887,0.0411045,0.427603,0.722632,0.14778,0.378782,0.467411,0.30993,0.979994,0.64693,0.560919,0.560531,0.761902,0.756234,0.664954,0.560605,0.305948,0.441491,0.254642,0.0711128,0.695131,0.649081,0.971698,0.409019,0.621918,0.38475,0.0441397,0.36923,0.657336,0.851488,0.271023,0.156638,0.661735,0.0839443,0.915825,0.951834,0.616815,0.307655,0.858972,0.11823,0.504069,0.0256205,0.0198713,0.610364,0.105055,0.635534,0.997403,0.308163,0.612144,0.205906,0.692527,0.836981,0.565981,0.348935,0.0725352,0.0836856,0.323673,0.950446,0.242057,0.360079,0.966591,0.989801,0.618836,0.146728,0.151614,0.268855,0.0814843,0.0570247,0.771381,0.152152,0.0954925,0.60029,0.417655,0.477487,0.939493,0.381828,0.616918,0.653805,0.973014,0.0191054,0.731786,0.947436,0.904943,0.831551,0.68643,0.981085,0.431644,0.349303,0.297253,0.884765,0.287075,0.808522,0.200558,0.448045,0.105949,0.731001,0.747008,0.314967,0.399502,0.748137,0.535059,0.309063,0.818071,0.457099,0.398184,0.487488,0.316641,0.702241,0.941844,0.511607,0.174575,0.393513,0.92834,0.680035,0.328279,0.951709,0.544466,0.504359,0.557014,0.144415,0.991108,0.277467,0.681683,0.894263,0.405561,0.648619,0.490593,0.265497,0.542167,0.777904,0.465685,0.997269,0.0247845,0.16245,0.431973,0.303227,0.740086,0.453461,0.0601804,0.858269,0.485011,0.102479,0.430812,0.921811,0.541354,0.300675,0.148591,0.819852,0.545881,0.957472,0.661771,0.82587,0.523562,0.362441,0.386187,0.486983,0.983425,0.37285,0.587411,0.650205,0.253443,0.0346119,0.537212,0.798847,0.0389959,0.48503,0.441362,0.0747625,0.32202,0.21464,0.770191,0.830151,0.562463,0.14713,0.979036,0.355332,0.473772,0.0931477,0.844892,0.271594,0.900938,0.789571,0.865819,0.732291,0.596958,0.768824,0.824626,0.688212,0.693375,0.912843,0.443832,0.00838208,0.363262,0.283704,0.949245,0.08438,0.94389,0.122147,0.219572,0.149092,0.198468,0.735694,0.15771,0.249916,0.450729,0.124851,0.311279,0.0147358,0.280916,0.44008,0.996738,0.303102,0.860186,0.392622,0.135349,0.887737,0.223701,0.847215,0.438344,0.282988,0.236825,0.678703,0.95251,0.69578,0.71308,0.827431,0.0521852,0.305394,0.528849,0.229417,0.747223,0.0272081,0.380167,0.27914,0.529413,0.00670421,0.746297,0.488971,0.458604,0.527647,0.560229,0.0159677,0.940533,0.0260066,0.419186,0.992833,0.980473,0.121768,0.973414,0.751056,0.175559,0.907268,0.603591,0.0533749,0.900724,0.981672,0.35048,0.351084,0.96531,0.756908,0.0269295,0.100459,0.143891,0.0549431,0.505906,0.620191,0.189199,0.965152,0.725587,0.3995,0.524055,0.262926,0.472801,0.360186,0.143722,0.314109,0.0935977,0.608994,0.00190169,0.788904,0.161916,0.486491,0.510447,0.934838,0.432668,0.408045,0.577101,0.893375,0.324803,0.730258,0.371645,0.0779811,0.290598,0.599031,0.256625,0.733524,0.0739192,0.6108,0.974619,0.588633,0.268119,0.360626,0.831198,0.237252,0.25893,0.699701,0.589627,0.845025,0.617121,0.125166,0.125908,0.350598,0.149806,0.861419,0.830133,0.990884,0.127227,0.687359,0.504307,0.732966,0.254206,0.718218,0.69377,0.0328707,0.125564,0.202034,0.869603,0.762787,0.538942,0.77579,0.197078,0.425078,0.0878887,0.254851,0.334327,0.974757,0.146569,0.28112,0.265459,0.0672767,0.835802,0.959221,0.865351,0.164444,0.612131,0.497567,0.245078,0.367599,0.128939,0.651281,0.377726,0.184081,0.665493,0.310846,0.722376,0.118126,0.545176,0.73614,0.52037,0.359335,0.862364,0.565606,0.246658,0.182958,|0.29703,0.11559,0.0484965,0.643882,0.0053736,0.436044,0.228645,0.446547,0.111942,0.359429,0.409088,0.632003,0.347195,0.313403,0.220239,0.633202,0.850248,0.996637,0.81663,0.16337,0.0393931,0.68716,0.00907511,0.3986,0.309317,0.847718,0.299804,0.0302268,0.839831,0.80828,0.921021,0.194108,0.591269,0.503096,0.475098,0.0490967,0.572838,0.314728,0.707035,0.200672,0.871935,0.998507,0.53477,0.519524,0.990068,0.19127,0.0843365,0.0727562,0.0540711,0.169499,0.285711,0.674154,0.727056,0.0218714,0.198064,0.891296,0.66722,0.73643,0.562933,0.171364,0.496606,0.868406,0.0228885,0.982718,0.775232,0.108235,0.610682,0.50479,0.974741,0.146263,0.855531,0.231678,0.797431,0.35219,0.819307,0.149972,0.0631204,0.0220671,0.954959,0.0351545,0.071831,0.373446,0.411671,0.855093,0.818111,0.38911,0.758176,0.226988,0.590784,0.795645,0.00482267,0.197248,0.101597,0.61778,0.718794,0.570453,0.728379,0.629204,0.856293,0.617424,0.593346,0.967586,0.498979,0.0885583,0.25544,0.666271,0.92558,0.818697,0.621042,0.381511,0.984281,0.930166,0.258961,0.189764,0.873486,0.613722,0.615991,0.385858,0.961467,0.628044,0.957691,0.703578,0.595691,0.46762,0.405955,0.961407,0.270887,0.950046,0.231621,0.101951,0.226875,0.0570349,0.978122,0.0297146,0.513879,0.871751,0.860547,0.139046,0.34591,0.0512574,0.744316,0.57714,0.601205,0.7254,0.791649,0.722007,0.431912,0.510555,0.5012,0.401272,0.0699299,0.226795,0.374666,0.205925,0.652435,0.652167,0.603728,0.952011,0.338917,0.190504,0.763043,0.84981,0.296695,0.260039,0.710201,0.808261,0.387605,0.0992631,0.474737,0.141325,0.299294,0.90118,0.681945,0.628552,0.622317,0.952647,0.0212145,0.942515,0.24479,0.767222,0.922003,0.206059,0.767688,0.487461,0.198327,0.43108,0.00960064,0.0472217,0.292364,0.192907,0.130159,0.806456,0.144938,0.0951504,0.0985658,0.128827,0.519318,0.820279,0.951765,0.589037,0.630361,0.64812,0.924706,0.197174,0.55565,0.279561,0.0301989,0.222766,0.539233,0.685761,0.66924,0.701005,0.899121,0.328652,0.898021,0.255338,0.503894,0.355652,0.260915,0.538505,0.348837,0.0598442,0.819633,0.544097,0.671624,0.747129,0.433301,0.293954,0.252429,0.429407,0.0474659,0.487951,0.352933,0.188075,0.0767085,0.916875,0.462098,0.791055,0.330555,0.0911673,0.291853,0.0155984,0.792369,0.281908,0.0380743,0.192384,0.293752,0.883926,0.0337643,0.00679672,0.519582,0.288757,0.643214,0.114514,0.122086,0.0823153,0.232311,0.506921,0.91076,0.881775,0.468161,0.146389,0.0367516,0.359633,0.27321,0.0298289,0.67252,0.420788,0.72512,0.70793,0.744317,0.441073,0.8974,0.0061484,0.420824,0.302573,0.0690313,0.32123,0.277404,0.392127,0.240403,0.975227,0.797431,0.532715,0.277933,0.896185,0.203807,0.363111,0.506091,0.871985,0.0277013,0.803907,0.766066,0.796637,0.956905,0.847452,0.239287,0.29041,0.882267,0.312515,0.566167,0.609316,0.97731,0.00101173,0.454673,0.0195943,0.278201,0.642862,0.247626,0.0604343,0.0214549,0.702412,0.580881,0.10141,0.697175,0.837203,0.080825,0.678537,0.57127,0.689442,0.480317,0.429134,0.144922,0.769915,0.848542,0.035773,0.389173,0.332695,0.275372,0.0730819,0.141813,0.439747,0.249394,0.640889,0.642149,0.974161,0.418674,0.550769,0.1925,0.125317,0.230095,0.213858,0.521245,0.663503,0.217134,0.429733,0.216653,0.00343484,0.883834,0.869575,0.937963,0.248828,0.401303,0.399848,0.456358,0.910969,0.879366,0.374809,0.488857,0.768109,0.567615,0.5312,0.2912,0.59677,0.442191,0.932318,0.656999,0.461083,0.920914,0.103134,0.72824,0.54632,0.309519,0.893238,0.255206,0.0249578,0.683233,0.226685,0.583302,0.174716,0.612408,0.180254,0.462846,0.283693,0.209914,0.814219,0.28938,0.36243,0.324908,0.159589,0.574425,0.38429,0.347832,0.13564,0.899061,0.187312,0.220267,0.708985,0.507088,0.33808,0.812644,0.391572,0.215855,0.640421,0.366874,0.249944,0.235209,0.0401483,0.0561274,0.0852695,0.776381,0.513503,0.35075,0.518745,0.697837,0.350372,0.478009,0.561367,0.787365,0.273373,0.173378,0.388355,0.629316,0.388875,0.621405,0.767495,0.600226,0.423931,0.858017,0.554502,0.248984,0.180439,0.431331,0.651202,0.69981,0.222752,0.579624,0.299926,0.487648,0.0431873,0.0955945,0.509169,0.773496,0.216971,0.869744,0.804763,0.5598,0.35285,0.00258166,0.346475,0.768352,0.711511,0.0775261,0.233654,0.415305,0.811322,0.357197,0.517878,0.281873,0.716777,0.694857,0.359146,0.81538,0.702502,0.859725,0.0498607,0.609731,0.478764,0.117703,0.322216,0.722267,0.621763,0.197381,0.163026,0.2838,0.579032,0.921473,0.756859,0.92719,0.424008,0.857258,0.226401,0.437757,0.16382,0.209794,0.980855,0.775303,0.801883,0.579197,0.166956,0.71515,0.16253,0.328713,0.252693,0.80014,0.559609,0.626851,0.81939,0.585615,0.636495,0.596532,0.0749755,0.0861655,0.597715,0.254386,0.832954,0.00340611,0.814355,0.114767,0.293813,0.617901,0.978689,0.289295,0.726469,0.421587,0.835792,0.96691,0.590574,0.551622,0.982138,0.7122,0.109636,0.0479512,0.883552,0.763103,0.119596,0.954037,0.504111,0.717619,0.3314,0.0220206,0.808899,0.379067,0.103058,0.252406,0.469969,0.183157,0.435986,0.820547,0.311459,0.112578,0.797244,0.0344502,0.544078,0.39265,0.557344,0.286691,0.727753,0.70909,0.879011,0.300944,0.560027,0.110074,0.544457,0.751134,0.479628,0.746286,0.916992,0.77992,0.358616,0.850248,0.0115715,0.98381,0.661114,0.847519,0.424231,0.773952,0.203372,0.897682,0.862555,0.720639,0.166313,0.784649,0.317947,0.562375,0.275656,0.791796,0.563083,0.928319,0.592708,0.92,0.666669,0.514634,0.67175,0.229325,0.203081,0.325344,0.471808,0.50182,0.671373,0.744933,0.359478,0.0770528,0.96854,0.953146,0.0602931,0.863076,0.66373,0.113193,0.45926,0.252688,0.234187,0.333734,0.58425,0.659417,0.111916,0.777544,0.397211,0.789432,0.596981,0.842627,0.345884,0.980056,0.967901,0.626134,0.32809,0.466858,0.854863,0.0749717,0.439625,0.0837532,0.145793,0.754609,0.523428,0.459303,0.870369,0.795937,0.22962,0.505746,0.180117,0.508779,0.719266,0.303293,0.512334,0.455843,0.483731,0.0635071,0.410615,0.705795,0.816331,0.316866,0.494164,0.415683,0.840381,0.721584,0.0292978,0.336607,0.0391731,0.794299,0.0515957,0.193377,0.888608,0.675573,0.30762,0.326761,0.945972,0.156538,0.0428963,0.514002,0.91405,0.0389893,0.219042,0.556972,0.315363,0.735901,0.985816,0.188672,0.911305,0.869417,0.704341,0.463845,0.99226,0.621385,0.44913,0.130039,0.851528,0.386361,0.810905,0.272956,0.624599,0.893378,0.933755,0.884421,0.232028,0.220904,0.329201,0.343797,0.0432958,0.791728,0.185878,0.532918,0.427376,0.985507,0.508821,0.266445,0.105768,0.317704,0.496272,0.19816,0.732569,0.729434,0.582964,0.156153,0.457457,0.986346,0.23053,0.566711,0.0072009,0.31326,0.736358,0.685993,0.712665,0.47747,0.500461,0.286945,0.503585,0.739404,0.714556,0.42425,0.338429,0.323585,0.238481,0.380279,0.0795404,0.285392,0.478221,0.909319,0.132452,0.648168,0.439544,0.153597,0.406288,0.565353,0.108288,0.879109,0.294281,0.947115,0.679139,0.248201,0.479052,0.860318,0.369705,0.945729,0.732422,0.676126,0.61392,0.121537,0.527807,0.622012,0.981237,0.815774,0.346377,0.540843,0.889766,0.512943,0.194721,0.972066,0.326111,0.775844,0.556639,0.836073,0.797985,0.506156,0.281751,0.0397692,0.146274,0.655434,0.382312,0.186876,0.140449,0.91014,0.855713,0.409276,0.993652,0.97423,0.227185,0.445359,0.392896,0.8404,0.800288,0.1349,0.697414,0.517969,0.152552,0.880849,0.549584,0.867063,0.939552,0.12384,0.861458,0.655879,0.434695,0.134225,0.00276595,0.421948,0.0682559,0.0857892,0.621807,0.226402,0.962874,0.813158,0.176515,0.614947,0.0378736,0.949887,0.178148,0.98001,0.261525,0.693441,0.588954,0.951341,0.0600771,0.796059,0.175364,0.0252166,0.214373,0.188817,0.676414,0.273451,0.659415,0.992775,0.380094,0.874231,0.772573,0.69186,0.219376,0.738089,0.601495,0.862188,0.735207,0.786383,0.813699,0.495991,0.962766,0.40721,0.0873107,0.977574,0.420319,0.442623,0.612601,0.970287,0.876808,0.843471,0.0911118,0.900706,0.524553,0.432344,0.211102,0.186904,0.069743,0.0873938,0.067314,0.961405,0.275146,0.768594,0.87174,0.541293,0.939654,0.128176,0.308614,0.737881,0.112375,0.139382,0.227117,0.926405,0.779667,0.258148,0.520069,0.824311,0.81273,0.595541,0.0295539,0.757601,0.927391,0.130857,0.845184,0.912294,0.627776,0.84303,0.00191015,0.259946,0.395508,0.969055,0.771707,0.156947,0.6724,0.7355,0.925495,0.995876,0.66779,0.95197,0.396812,0.0358502,0.399622,0.756431,0.452592,0.221146,0.820949,0.90656,0.19271,0.672804,0.783652,0.112424,0.22334,0.0795018,0.985717,0.340613,0.798504,0.761268,0.594386,0.534083,0.279025,0.186648,0.154266,0.873307,0.779625,0.488334,0.237109,0.801067,0.822648,0.744685,0.0362815,0.62001,0.526566,0.451076,0.499428,0.917357,0.928562,0.00788683,0.288942,0.924364,0.782516,0.204632,0.936186,0.0758855,0.432761,0.656551,0.444628,0.192558,0.19913,0.108588,0.182363,0.251984,0.504257,0.227216,0.26127,0.431885,0.136871,0.841737,0.55621,0.834853,0.810194,0.22226,0.715474,0.896734,0.067865,0.725771,0.960383,0.982025,0.41006,0.631943,0.608834,0.480752,0.449347,0.0498395,0.444902,0.785623,0.0998528,0.311086,0.0105015,0.750648,0.453614,0.267752,0.691225,0.721865,0.637187,0.943468,0.777011,0.664494,0.0293942,0.35146,0.554087,0.981613,0.671625,0.669362,0.903446,0.571362,0.323836,0.358965,0.271451,0.878649,0.208573,0.473595,0.376186,0.942365,0.973813,0.329247,0.751162,0.241269,0.820655,|0.297042,0.51539,0.546276,0.7358,0.1837,0.739938,0.349126,0.898833,0.186394,0.894305,0.746397,0.41822,0.0014953,0.136401,0.628709,0.209247,0.316634,0.371331,0.932036,0.684178,0.307921,0.427755,0.583072,0.100528,0.558469,0.228814,0.885958,0.281188,0.908923,0.322849,0.0822949,0.245449,0.667074,0.862562,0.704844,0.349378,0.758838,0.0984916,0.194516,0.623815,0.505263,0.507062,0.391653,0.99012,0.260057,0.83822,0.691998,0.741289,0.841542,0.877138,0.406825,0.88408,0.855929,0.507644,0.114465,0.772304,0.0622863,0.198706,0.944258,0.316897,0.239609,0.292004,0.0267503,0.916466,0.596887,0.772169,0.498364,0.582647,0.928654,0.363503,0.299657,0.828914,0.888167,0.885175,0.207795,0.83602,0.17152,0.755548,0.997492,0.359614,0.0227139,0.35338,0.295352,0.461778,0.912996,0.533271,0.148808,0.22684,0.24744,0.121463,0.136049,0.867396,0.467452,0.459868,0.359243,0.744544,0.0433341,0.745345,0.959681,0.830892,0.515898,0.273849,0.119149,0.522521,0.985071,0.33622,0.780276,0.00203484,0.729726,0.853532,0.405984,0.92588,0.330118,0.93361,0.117679,0.557156,0.461661,0.234449,0.415828,0.961838,0.426181,0.831675,0.63451,0.482257,0.0681328,0.158453,0.292524,0.0693403,0.627701,0.0787944,0.486528,0.447163,0.808301,0.983016,0.0481228,0.61938,0.70506,0.989853,0.584988,0.849854,0.408876,0.185692,0.128785,0.444742,0.938587,0.681429,0.291346,0.847775,0.283529,0.6353,0.498683,0.603075,0.53728,0.392198,0.196691,0.374697,0.0829158,0.513873,0.991277,0.170141,0.660754,0.236557,0.504543,0.398623,0.60264,0.982458,0.459229,0.602775,0.367449,0.229976,0.113949,0.30699,0.265226,0.307177,0.381464,0.228498,0.469341,0.500936,0.717531,0.954898,0.379837,0.435754,0.618294,0.662001,0.227461,0.759906,0.00193256,0.566745,0.282462,0.228302,0.391722,0.562088,0.116469,0.994196,0.111733,0.740699,0.903452,0.00295997,0.426595,0.730322,0.613212,0.349221,0.0115919,0.188125,0.575348,0.0382795,0.951811,0.97021,0.562724,0.00753087,0.835032,0.34742,0.126262,0.223551,0.339079,0.0786161,0.660662,0.932052,0.477983,0.343986,0.99574,0.15103,0.663965,0.376658,0.691851,0.862835,0.722043,0.876629,0.807278,0.452173,0.558276,0.450684,0.792596,0.669206,0.632198,0.574231,0.8714,0.538087,0.681564,0.119397,0.660541,0.461082,0.556376,0.206816,0.18541,0.835509,0.450099,0.210545,0.620862,0.0254864,0.997599,0.978477,0.120628,0.159401,0.428289,0.380146,0.337953,0.166501,0.3763,0.628639,0.0566364,0.779552,0.426039,0.632929,0.970768,0.560759,0.657876,0.509198,0.308213,0.158626,0.022922,0.686093,0.0798151,0.418308,0.803821,0.341895,0.498651,0.31667,0.754683,0.803161,0.1214,0.742833,0.84465,0.236146,0.843288,0.241118,0.539419,0.204846,0.000222623,0.609833,0.72567,0.206489,0.904997,0.89334,0.720489,0.629514,0.490111,0.670804,0.703435,0.971869,0.0731401,0.685001,0.149727,0.69644,0.986958,0.840243,0.495187,0.802455,0.248474,0.421695,0.740694,0.231069,0.484144,0.456531,0.495015,0.823304,0.0636247,0.880465,0.791143,0.00147402,0.432956,0.0672689,0.784055,0.22909,0.530066,0.861043,0.737704,0.566505,0.719293,0.391535,0.466206,0.810204,0.317435,0.833266,0.590264,0.360769,0.626456,0.803262,0.0479749,0.751838,0.393038,0.974173,0.465568,0.776191,0.775284,0.539751,0.248204,0.764229,0.309645,0.757968,0.64908,0.69955,0.0489196,0.095409,0.267995,0.173827,0.342131,0.697871,0.369322,0.334247,0.0476812,0.918082,0.217382,0.64482,0.561659,0.543406,0.459881,0.741717,0.402346,0.737603,0.768848,0.00503337,0.966487,0.977862,0.782598,0.519989,0.841127,0.484517,0.448059,0.556139,0.867963,0.620711,0.332856,0.888721,0.228944,0.586573,0.418181,0.50205,0.973724,0.0398936,0.988855,0.385106,0.94315,0.531886,0.911022,0.0527983,0.13709,0.650665,0.92352,0.832845,0.95864,0.622543,0.814762,0.790609,0.852345,0.0912623,0.0476187,0.47346,0.195147,0.833978,0.973542,0.386383,0.614677,0.349302,0.822822,0.171688,0.00759846,0.309574,0.603096,0.0226129,0.0973961,0.294447,0.72621,0.90193,0.982044,0.74733,0.761562,0.861746,0.707047,0.967604,0.87427,0.878902,0.526686,0.234161,0.233463,0.255464,0.232055,0.125202,0.509407,0.957056,0.768779,0.279208,0.581814,0.0806497,0.491939,0.797568,0.957812,0.7363,0.835838,0.623911,0.211078,0.684359,0.523719,0.626244,0.522104,0.45998,0.0798028,0.516861,0.700008,0.845347,0.621054,0.400581,0.919431,0.459574,0.366815,0.739417,0.069047,0.388874,0.240703,0.0709221,0.347275,0.253991,0.913951,0.970795,0.587662,0.472655,0.370592,0.191465,0.418087,0.815298,0.848631,0.642716,0.764349,0.689128,0.40897,0.834661,0.749907,0.0363578,0.0952768,0.74293,0.331508,0.424637,0.730854,0.68815,0.932784,0.533433,0.15765,0.621336,0.43326,0.973653,0.849582,0.650474,0.434044,0.921517,0.790505,0.231746,0.331108,0.148857,0.370351,0.931638,0.464736,0.641369,0.650187,0.659287,0.538479,0.192134,0.117054,0.49299,0.866983,0.17127,0.681681,0.577228,0.389422,0.32805,0.380656,0.870437,0.581754,0.636795,0.0944617,0.122122,0.885746,0.853574,0.41657,0.883905,0.280288,0.223463,0.937171,0.34159,0.307558,0.369403,0.440542,0.873545,0.859419,0.0301058,0.299971,0.889161,0.135137,0.606478,0.496616,0.899199,0.422944,0.59174,0.412231,0.425385,0.664562,0.67846,0.488218,0.948792,0.607846,0.222468,0.248208,0.586169,0.79054,0.711278,0.495293,0.783086,0.268888,0.269574,0.597838,0.370403,0.108724,0.291193,0.0431679,0.807732,0.29545,0.0827754,0.410485,0.282748,0.133257,0.700465,0.357795,0.734676,0.299501,0.890721,0.501988,0.279489,0.0307599,0.445244,0.706972,0.637,0.255163,0.288254,0.0992045,0.90629,0.581381,0.211079,0.984993,0.508078,0.953123,0.81998,0.369192,0.187967,0.676297,0.254048,0.52253,0.0983943,0.582687,0.0925739,0.579103,0.987066,0.970855,0.845484,0.186058,0.235863,0.00204641,0.711342,0.209904,0.870799,0.438332,0.755961,0.75555,0.0522996,0.560125,0.90904,0.27946,0.617824,0.0361233,0.0262826,0.0717779,0.0941129,0.535423,0.0984817,0.321074,0.32318,0.705405,0.886812,0.323887,0.903508,0.454614,0.114165,0.816331,0.368345,0.00592738,0.890653,0.910073,0.0944809,0.0169511,0.422849,0.0158209,0.869611,0.285203,0.511151,0.235081,0.456702,0.579389,0.333153,0.785955,0.61164,0.17667,0.862317,0.20605,0.206478,0.871401,0.884831,0.0462344,0.148117,0.886246,0.558502,0.970075,0.263947,0.589904,0.786689,0.891044,0.984243,0.171561,0.850888,0.249082,0.637689,0.584517,0.152156,0.311706,0.996436,0.962062,0.239824,0.511713,0.919928,0.588866,0.584343,0.693291,0.232483,0.535293,0.291535,0.75192,0.876297,0.427691,0.575877,0.196814,0.886735,0.837769,0.254235,0.46418,0.397006,0.42602,0.785939,0.150257,0.0738012,0.127375,0.26627,0.870601,0.691345,0.851302,0.2902,0.769961,0.589212,0.715421,0.21789,0.264702,0.799993,0.509258,0.85503,0.251453,0.365612,0.377073,0.2943,0.96638,0.364805,0.657066,0.635832,0.173401,0.662658,0.00133216,0.534338,0.733763,0.452762,0.931162,0.955008,0.986149,0.603069,0.218862,0.477355,0.909702,0.400935,0.145604,0.475608,0.925388,0.221091,0.0899033,0.492503,0.0708486,0.991133,0.0531468,0.562758,0.0523566,0.729421,0.895758,0.366318,0.299339,0.820359,0.0518724,0.344311,0.667688,0.370351,0.0189101,0.214993,0.877786,0.356991,0.355211,0.593178,0.404649,0.320086,0.298354,0.737896,0.363542,0.0143514,0.798887,0.299701,0.119939,0.655649,0.972236,0.305844,0.667711,0.0911924,0.202522,0.862175,0.613709,0.547761,0.749639,0.641956,0.6197,0.468335,0.663711,0.668049,0.981422,0.219439,0.316196,0.470824,0.847827,0.150454,0.54269,0.732941,0.923342,0.564169,0.52805,0.957791,0.780419,0.73325,0.495996,0.780384,0.26084,0.240366,0.702673,0.833329,0.481951,0.645198,0.816815,0.0399573,0.446332,0.355037,0.876371,0.532718,0.934202,0.628915,0.892548,0.898611,0.640604,0.138904,0.188209,0.653674,0.284963,0.507573,0.863339,0.540587,0.287797,0.309445,0.313108,0.105071,0.264716,0.826427,0.814786,0.959533,0.186567,0.40799,0.61968,0.546735,0.563664,0.173411,0.962674,0.139693,0.28413,0.489498,0.0263213,0.619044,0.282408,0.517266,0.186016,0.879054,0.464855,0.550278,0.690933,0.67918,0.42471,0.550357,0.0691959,0.771856,0.421435,0.624848,0.346853,0.55175,0.0685869,0.905139,0.852498,0.103914,0.875835,0.768911,0.668294,0.0199555,0.13429,0.529773,0.760781,0.775368,0.24496,0.225016,0.691867,0.710172,0.912226,0.956172,0.844133,0.142477,0.0807893,0.196566,0.21367,0.279218,0.227482,0.45386,0.337985,0.969223,0.52344,0.423402,0.398653,0.641184,0.480142,0.426266,0.559577,0.608168,0.0233213,0.332274,0.937792,0.836308,0.409981,0.330273,0.515081,0.250068,0.774725,0.683126,0.234747,0.424044,0.140672,0.606012,0.81968,0.614469,0.146368,0.169989,0.120455,0.118056,0.201881,0.124167,0.206455,0.367024,0.825303,0.205658,0.334752,0.391684,0.435426,0.200893,0.391352,0.304816,0.720853,0.3981,0.0728234,0.0664502,0.213039,0.235368,0.389107,0.231293,0.895235,0.135711,0.321852,0.712642,0.178034,0.606019,0.181842,0.679976,0.97676,0.257693,0.154824,0.533768,0.263184,0.618051,0.320062,0.816498,0.125758,0.40389,0.00609493,0.11325,0.742633,0.528655,0.866837,0.676937,0.0415545,0.863325,0.743924,0.873506,0.0765916,0.807066,0.297819,0.0666978,0.869671,0.0674369,0.395093,0.680825,0.920035,0.270167,0.809354,0.24109,0.288811,0.697544,0.806788,0.649442,0.44709,0.898019,0.916059,0.109242,0.608172,0.391132,0.289646,0.758666,0.833663,0.862308,0.724987,0.64759,|0.372889,0.0168254,0.774412,0.751419,0.513016,0.695143,0.825184,0.788534,0.852066,0.0601599,0.538125,0.858619,0.456833,0.535595,0.795372,0.352024,0.814958,0.544648,0.61542,0.720438,0.430215,0.423995,0.51153,0.294387,0.837402,0.167539,0.926768,0.566085,0.560032,0.276991,0.70499,0.777501,0.643184,0.629673,0.167193,0.694065,0.579071,0.210525,0.758549,0.546406,0.732341,0.553473,0.540614,0.0521067,0.226818,0.159744,0.763645,0.622744,0.323483,0.522886,0.140342,0.493244,0.619358,0.396872,0.576754,0.687558,0.234031,0.533843,0.776208,0.761082,0.0653355,0.44635,0.317059,0.829488,0.379413,0.233238,0.600647,0.889321,0.0529485,0.539019,0.186058,0.0711014,0.980024,0.447866,0.20884,0.401075,0.841788,0.982848,0.567529,0.794263,0.24526,0.102181,0.774378,0.0438251,0.0861815,0.368908,0.346299,0.89487,0.969635,0.333173,0.750677,0.738474,0.434268,0.963742,0.737904,0.992308,0.441287,0.922284,0.382242,0.018512,0.0972556,0.745316,0.13406,0.0449914,0.00616032,0.105355,0.163868,0.4887,0.711117,0.26693,0.156264,0.118145,0.462707,0.442211,0.613687,0.391477,0.681813,0.989358,0.462729,0.701044,0.0769826,0.419624,0.882304,0.778492,0.662981,0.633895,0.597277,0.854976,0.0916477,0.106364,0.874264,0.554943,0.387616,0.545648,0.76466,0.964985,0.979281,0.643523,0.458335,0.00430614,0.0531844,0.966531,0.974616,0.500446,0.879171,0.899903,0.52131,0.508956,0.521967,0.995107,0.534203,0.0687817,0.216758,0.994232,0.705373,0.720983,0.778194,0.391439,0.378249,0.153338,0.258762,0.335833,0.628216,0.87768,0.706203,0.465317,0.820289,0.207015,0.186058,0.437831,0.615505,0.0991818,0.902173,0.334139,0.895733,0.180594,0.127014,0.669124,0.0614391,0.817581,0.02029,0.697628,0.774851,0.276189,0.742622,0.436672,0.442196,0.558472,0.829731,0.756063,0.562613,0.883576,0.842072,0.631211,0.862003,0.828752,0.687826,0.763242,0.196802,0.260597,0.865442,0.41603,0.535968,0.453763,0.267032,0.031121,0.0194762,0.874947,0.207696,0.778119,0.0853423,0.762009,0.210478,0.496293,0.857896,0.952185,0.695118,0.776467,0.67492,0.690726,0.412708,0.241667,0.190407,0.662955,0.151237,0.836606,0.490923,0.85118,0.933345,0.648177,0.607666,0.0434155,0.831212,0.705731,0.527011,0.327563,0.190792,0.813993,0.0397731,0.780025,0.138502,0.98799,0.892661,0.198077,0.144243,0.425447,0.566055,0.967846,0.267582,0.495728,0.307252,0.0830629,0.142835,0.835812,0.174927,0.338554,0.76294,0.277089,0.33138,0.720579,0.110669,0.0743957,0.858166,0.841134,0.205766,0.158557,0.49854,0.193755,0.911345,0.760491,0.447411,0.286919,0.00391912,0.0609506,0.385865,0.54515,0.302317,0.144187,0.58861,0.581373,0.46042,0.47754,0.664987,0.245598,0.903596,0.0789206,0.737649,0.311895,0.487308,0.760617,0.266506,0.31564,0.0471765,0.429906,0.819533,0.462692,0.0867138,0.8401,0.865674,0.574031,0.230161,0.835845,0.785837,0.539262,0.657686,0.829135,0.0636005,0.208296,0.320912,0.316577,0.9351,0.116378,0.0362561,0.666378,0.835219,0.836909,0.372366,0.131311,0.967814,0.913039,0.110015,0.469811,0.910951,0.587718,0.859775,0.134835,0.708068,0.503388,0.0233581,0.851755,0.700576,0.583536,0.7755,0.880563,0.282655,0.899097,0.272159,0.208835,0.757953,0.34191,0.785409,0.0756193,0.0402333,0.216027,0.325844,0.668772,0.800087,0.550112,0.404504,0.433377,0.43482,0.620951,0.565773,0.18283,0.586417,0.665419,0.685564,0.108341,0.772985,0.875658,0.846519,0.415367,0.511318,0.547428,0.485262,0.0731584,0.414509,0.583952,0.815924,0.0815039,0.674228,0.318107,0.730487,0.359,0.837258,0.360016,0.428689,0.143638,0.261058,0.957261,0.219657,0.184311,0.865073,0.237729,0.993264,0.683528,0.373624,0.812543,0.940728,0.551485,0.919981,0.887937,0.965025,0.737785,0.849458,0.540745,0.185981,0.652431,0.314034,0.174581,0.817449,0.00956398,0.922159,0.930297,0.813305,0.176271,0.0674637,0.425778,0.901143,0.511997,0.0714168,0.264169,0.101638,0.0403079,0.0218094,0.208032,0.140162,0.0587542,0.94267,0.974891,0.415572,0.80777,0.494134,0.90441,0.463475,0.500101,0.00162458,0.0545118,0.719889,0.811949,0.0409324,0.985715,0.747255,0.822339,0.0193687,0.990079,0.777232,0.101647,0.139366,0.888703,0.34798,0.614498,0.55134,0.354309,0.948061,0.111295,0.712164,0.990977,0.774795,0.67557,0.223275,0.251615,0.0624721,0.673304,0.484618,0.490624,0.63321,0.922446,0.813106,0.73167,0.156259,0.62549,0.987834,0.827446,0.886951,0.979785,0.00589001,0.0750374,0.910103,0.58453,0.947704,0.465275,0.5904,0.71502,0.637821,0.967181,0.190831,0.922286,0.117748,0.970804,0.765244,0.949985,0.738958,0.752655,0.948898,0.912746,0.961936,0.158275,0.602698,0.485616,0.348925,0.413947,0.50722,0.379934,0.384033,0.513509,0.236259,0.677104,0.769285,0.780682,0.940495,0.0353037,0.191462,0.256384,0.764427,0.189881,0.6949,0.878969,0.796541,0.801144,0.514853,0.115519,0.728295,0.197479,0.536349,0.413596,0.302411,0.844107,0.787888,0.571569,0.246325,0.281699,0.541439,0.987993,0.600952,0.156363,0.946176,0.571649,0.283548,0.411119,0.0708677,0.912225,0.107218,0.694548,0.701999,0.0488964,0.532811,0.522069,0.566867,0.030454,0.636838,0.930235,0.575924,0.662903,0.471987,0.67192,0.899799,0.795237,0.2135,0.261586,0.326891,0.64472,0.0857533,0.0428523,0.667642,0.477794,0.47899,0.639352,0.380494,0.0902194,0.211255,0.910628,0.0549557,0.750557,0.950741,0.0310432,0.0907721,0.982413,0.680754,0.705838,0.127217,0.614477,0.961371,0.522745,0.267624,0.662115,0.315127,0.707833,0.722898,0.373787,0.931693,0.5306,0.352932,0.409045,0.270023,0.0740656,0.257042,0.950457,0.246653,0.661075,0.765142,0.414509,0.0595959,0.773302,0.481251,0.39445,0.889606,0.443515,0.887046,0.227744,0.182704,0.929812,0.229874,0.818511,0.622057,0.627123,0.98827,0.809446,0.373857,0.0245489,0.680439,0.631237,0.562992,0.382636,0.236472,0.861482,0.79479,0.558689,0.948939,0.455972,0.83583,0.4517,0.97963,0.641598,0.909513,0.290319,0.252252,0.560358,0.481575,0.0465827,0.891517,0.139422,0.0832895,0.675596,0.581016,0.155292,0.0296469,0.497354,0.768432,0.968007,0.503855,0.374004,0.860109,0.219993,0.417489,0.541554,0.208629,0.267331,0.0751566,0.892687,0.289534,0.0959099,0.614472,0.109205,0.351928,0.310383,0.116559,0.934099,0.620158,0.733199,0.579271,0.673159,0.929366,0.554,0.700429,0.556206,0.593606,0.711966,0.732733,0.643802,0.215207,0.624524,0.800984,0.399681,0.444921,0.478472,0.973824,0.557371,0.458307,0.249467,0.500886,0.498161,0.77951,0.903315,0.248888,0.968148,0.753394,0.0783526,0.270844,0.47187,0.726329,0.593439,0.0249428,0.62927,0.301549,0.707005,0.697031,0.769284,0.199165,0.0698605,0.554881,0.518819,0.72564,0.858953,0.562061,0.112667,0.343926,0.419849,0.758247,0.940671,0.364925,0.897455,0.467804,0.150354,0.820472,0.949832,0.350954,0.944324,0.993863,0.010218,0.277998,0.179707,0.0996152,0.224946,0.938161,0.110826,0.425099,0.985819,0.0775052,0.225555,0.180443,0.836655,0.499955,0.425508,0.099045,0.673244,0.430366,0.406178,0.842222,0.215478,0.254208,0.645683,0.320148,0.884571,0.317956,0.637857,0.850592,0.271046,0.796247,0.554077,0.798556,0.207588,0.309737,0.872435,0.0233439,0.190462,0.447409,0.62711,0.0637159,0.834968,0.298481,0.657852,0.705338,0.0167542,0.404747,0.670664,0.440125,0.0449323,0.332208,0.304184,0.936093,0.0301754,0.313796,0.445345,0.261931,0.967927,0.790954,0.624463,0.357702,0.229708,0.0372691,0.68879,0.243888,0.000280678,0.568382,0.807111,0.603246,0.0218795,0.301508,0.401492,0.230039,0.274502,0.215489,0.571281,0.347223,0.59521,0.998626,0.0812939,0.345141,0.964233,0.426641,0.198774,0.295085,0.837455,0.760218,0.319576,0.181583,0.102021,0.123207,0.229069,0.817962,0.503357,0.99454,0.232716,0.76458,0.583507,0.750494,0.626952,0.0402377,0.830542,0.63485,0.251514,0.706656,0.113948,0.925957,0.605839,0.803581,0.914518,0.379886,0.179894,0.231065,0.451302,0.139712,0.123421,0.701518,0.902396,0.418302,0.20155,0.32669,0.83407,0.196193,0.0639664,0.626817,0.525548,0.0826897,0.228049,0.0618026,0.677358,0.228983,0.235031,0.431363,0.714728,0.360193,0.0297758,0.840407,0.947519,0.910951,0.230733,0.734163,0.894174,0.398139,0.187063,0.804761,0.967183,0.466232,0.541226,0.836343,0.406625,0.753573,0.981422,0.23116,0.825909,0.889612,0.373282,0.752542,0.770589,0.521703,0.136186,0.916638,0.635879,0.243015,0.430028,0.560399,0.0957216,0.392474,0.732495,0.273541,0.633799,0.30543,0.424501,0.714758,0.0212329,0.0813738,0.974132,0.312601,0.135542,0.0797635,0.579417,0.230824,0.480487,0.651271,0.329229,0.847023,0.671048,0.322907,0.54624,0.302701,0.964442,0.477127,0.892688,0.457684,0.111207,0.060972,0.113825,0.299633,0.34846,0.540993,0.377482,0.673843,0.726155,0.124966,0.0666243,0.697287,0.460818,0.914044,0.158825,0.975784,0.152542,0.99763,0.160043,0.00822431,0.329415,0.145102,0.334448,0.71144,0.733149,0.193149,0.256193,0.0738776,0.412498,0.104955,0.220389,0.219123,0.428377,0.979492,0.554391,0.584305,0.343005,0.372822,0.243889,0.308818,0.46166,0.557633,0.334021,0.595835,0.442779,0.516425,0.628768,0.109799,0.940898,0.397646,0.242089,0.627707,0.678993,0.939627,0.981621,0.922581,0.370844,0.997603,0.328144,0.0128672,0.679935,0.1373,0.859728,0.681863,0.0832519,0.709783,0.259124,0.803597,0.868113,0.198295,0.0554299,0.466759,0.0296873,0.535297,0.222498,0.912426,0.817124,0.907619,0.905813,0.067437,0.0198838,0.60593,0.226339,0.424533,0.729856,0.726531,0.234407,0.071578,0.435407,|0.412985,0.894972,0.412828,0.21176,0.102075,0.0514517,0.792251,0.244416,0.545045,0.976768,0.301165,0.777811,0.451116,0.813576,0.773957,0.533067,0.278406,0.846737,0.804009,0.0768588,0.667833,0.243117,0.0314434,0.400621,0.315311,0.933783,0.786791,0.676977,0.883978,0.357269,0.55036,0.817517,0.0783269,0.661388,0.603644,0.596558,0.869872,0.972591,0.980088,0.407237,0.682311,0.821241,0.0216424,0.392677,0.188835,0.567746,0.0199224,0.578867,0.584826,0.812678,0.532874,0.169929,0.611358,0.675909,0.873003,0.0442,0.665474,0.759741,0.600735,0.528765,0.97422,0.77127,0.323464,0.39168,0.976299,0.645575,0.898676,0.924026,0.0325928,0.898837,0.466182,0.242642,0.813586,0.96088,0.254664,0.243685,0.0253944,0.27718,0.830938,0.25313,0.139728,0.11743,0.641782,0.938161,0.517088,0.676956,0.191209,0.346518,0.761842,0.118548,0.183958,0.990579,0.610548,0.948369,0.132914,0.681819,0.563645,0.778026,0.0466267,0.473039,0.647882,0.487921,0.309275,0.723897,0.555301,0.370839,0.0571288,0.846239,0.351103,0.421664,0.355447,0.577524,0.802065,0.268842,0.586543,0.286151,0.429939,0.168998,0.180653,0.140921,0.0591341,0.238509,0.502753,0.761048,0.16811,0.216021,0.309911,0.724321,0.25196,0.271876,0.732932,0.753671,0.225247,0.469482,0.927069,0.472556,0.248141,0.106874,0.296204,0.509729,0.164919,0.976614,0.0415346,0.957558,0.0852145,0.302221,0.63255,0.00978309,0.376992,0.982477,0.0647592,0.475089,0.312524,0.908003,0.416141,0.436612,0.29561,0.0500581,0.381109,0.81411,0.973584,0.288616,0.822654,0.567094,0.179823,0.338584,0.553115,0.22895,0.899399,0.898213,0.226423,0.0745501,0.928042,0.505629,0.826693,0.130012,0.367943,0.456348,0.863038,0.606796,0.4053,0.885804,0.0183132,0.339659,0.537029,0.558325,0.183999,0.1607,0.116421,0.489507,0.601761,0.338553,0.847894,0.527432,0.89006,0.482231,0.814287,0.607006,0.0050323,0.492513,0.310837,0.508098,0.0978172,0.739794,0.896209,0.0648963,0.442683,0.14602,0.311411,0.750212,0.816168,0.233926,0.796358,0.245983,0.540606,0.672159,0.256466,0.296059,0.102331,0.0911807,0.246722,0.741149,0.296517,0.363294,0.914703,0.67913,0.520278,0.389195,0.612192,0.32124,0.317928,0.571472,0.552683,0.53729,0.88331,0.09505,0.639151,0.333787,0.0503966,0.610067,0.410448,0.028065,0.326335,0.447104,0.335011,0.607005,0.418125,0.895488,0.546412,0.442652,0.520721,0.525456,0.449486,0.677135,0.805327,0.264602,0.308386,0.236109,0.510803,0.6266,0.139639,0.225011,0.328485,0.165606,0.213562,0.8359,0.259977,0.39183,0.901511,0.138943,0.0353979,0.0260084,0.585355,0.587319,0.479198,0.255953,0.478213,0.492578,0.0618624,0.872506,0.230118,0.851916,0.604783,0.219185,0.734756,0.659892,0.288132,0.662286,0.529016,0.454211,0.207912,0.899134,0.100463,0.122694,0.669939,0.163113,0.675604,0.0946113,0.258796,0.301234,0.615758,0.664071,0.226663,0.522886,0.804062,0.193974,0.56879,0.464843,0.208247,0.791151,0.455616,0.560956,0.314253,0.600791,0.767404,0.269679,0.249016,0.585579,0.80597,0.62718,0.466555,0.475982,0.892297,0.360221,0.691884,0.251926,0.731138,0.902044,0.30263,0.23965,0.583526,0.99766,0.216075,0.0223888,0.760527,0.640151,0.437214,0.7273,0.388076,0.41844,0.228407,0.756872,0.739824,0.509578,0.47989,0.168904,0.561296,0.207373,0.732649,0.249626,0.996989,0.406966,0.866764,0.297827,0.851375,0.383649,0.137321,0.00821072,0.633059,0.783764,0.374545,0.0632665,0.0104168,0.968715,0.0659781,0.295196,0.889644,0.304422,0.90925,0.526027,0.529188,0.612888,0.181609,0.580429,0.59588,0.55196,0.511877,0.607021,0.173638,0.327632,0.078168,0.984217,0.71614,0.985392,0.624832,0.659096,0.841232,0.238935,0.820488,0.742603,0.710385,0.268512,0.6994,0.91975,0.305822,0.748467,0.828476,0.638908,0.378914,0.287044,0.719852,0.930582,0.599518,0.959783,0.504209,0.0860736,0.341707,0.973887,0.139302,0.715319,0.37698,0.687581,0.180828,0.131351,0.992249,0.253534,0.701734,0.243281,0.188771,0.635919,0.516888,0.0825474,0.42969,0.504685,0.773417,0.563057,0.341944,0.0245021,0.644491,0.0617555,0.888498,0.316308,0.84088,0.828608,0.0553722,0.397086,0.18629,0.677588,0.62275,0.795448,0.467109,0.538896,0.841601,0.438834,0.180805,0.121521,0.62045,0.647132,0.698974,0.398856,0.827995,0.880282,0.840025,0.359417,0.458195,0.451234,0.467141,0.129646,0.60688,0.54965,0.181306,0.34382,0.824619,0.865881,0.279324,0.0898967,0.683178,0.852431,0.343137,0.930226,0.520976,0.878388,0.22377,0.632049,0.100065,0.730334,0.735192,0.519536,0.89565,0.450801,0.568381,0.277444,0.832442,0.639449,0.515447,0.577829,0.962448,0.560068,0.174279,0.85125,0.0339966,0.98829,0.398459,0.0551944,0.919825,0.260109,0.428858,0.326614,0.44006,0.0244319,0.7554,0.557554,0.210365,0.0850593,0.533497,0.505042,0.207671,0.67264,0.466287,0.25962,0.952088,0.18945,0.284817,0.295176,0.807696,0.00176811,0.295433,0.753485,0.355147,0.502532,0.719529,0.198541,0.693803,0.610249,0.34236,0.349952,0.372805,0.39189,0.504503,0.739094,0.24757,0.703798,0.5445,0.761451,0.109124,0.320787,0.834171,0.764465,0.964458,0.535219,0.095491,0.41739,0.14933,0.938604,0.493229,0.169767,0.658397,0.685657,0.629001,0.44086,0.129776,0.611358,0.55069,0.430026,0.740203,0.426046,0.180441,0.124767,0.414141,0.882878,0.939316,0.0207656,0.721314,0.496915,0.330218,0.827666,0.0925613,0.780479,0.971646,0.31738,0.360873,0.155796,0.0943635,0.451137,0.545055,0.922416,0.405634,0.615245,0.627728,0.00732082,0.431227,0.280573,0.379095,0.561708,0.589916,0.853351,0.578199,0.0957036,0.324688,0.132142,0.745068,0.355722,0.637516,0.139348,0.302795,0.88723,0.141279,0.578704,0.356811,0.7129,0.429051,0.584774,0.875392,0.409749,0.229649,0.352872,0.929789,0.13143,0.0247875,0.172261,0.889126,0.105731,0.151674,0.640389,0.606049,0.00705862,0.393868,0.952438,0.0801815,0.591778,0.382296,0.707728,0.516594,0.00566477,0.445478,0.883814,0.835118,0.245819,0.598021,0.881214,0.965123,0.502318,0.66033,0.354212,0.776853,0.156172,0.340913,0.275012,0.28068,0.263567,0.773955,0.581647,0.856663,0.413115,0.444416,0.408522,0.326849,0.328907,0.169391,0.335845,0.490829,0.175893,0.436994,0.93439,0.097084,0.767108,0.0549121,0.533961,0.230701,0.710963,0.72702,0.990862,0.112578,0.728372,0.360087,0.892182,0.52375,0.00383854,0.864204,0.241134,0.652325,0.469326,0.382939,0.683185,0.864814,0.895868,0.926741,0.559881,0.715621,0.171297,0.778128,0.730108,0.0901554,0.299188,0.185716,0.264589,0.752875,0.583549,0.328908,0.559574,0.613575,0.0776727,0.599389,0.359215,0.391743,0.327245,0.650483,0.367734,0.700691,0.427651,0.700807,0.341739,0.691605,0.846881,0.549266,0.299008,0.602986,0.297736,0.387024,0.517797,0.0740718,0.910468,0.339798,0.719936,0.523786,0.344301,0.6091,0.0662301,0.632956,0.166672,0.157627,0.779285,0.400024,0.918876,0.534518,0.71812,0.765496,0.409098,0.897656,0.165844,0.16305,0.71589,0.505378,0.942358,0.781133,0.456404,0.365921,0.548584,0.911047,0.69464,0.713342,0.711782,0.0841329,0.42293,0.636225,0.109322,0.537323,0.771753,0.220343,0.350191,0.946948,0.867078,0.681469,0.743806,0.962299,0.50572,0.994759,0.777721,0.39257,0.557647,0.33501,0.690341,0.256237,0.554398,0.15562,0.330074,0.406734,0.911657,0.657667,0.905371,0.259695,0.93199,0.455254,0.278439,0.27453,0.229668,0.396542,0.569422,0.963829,0.0132052,0.0602936,0.785242,0.781058,0.480974,0.950993,0.276154,0.196246,0.80919,0.779732,0.656946,0.952404,0.299648,0.837636,0.972329,0.165746,0.0813217,0.529218,0.652667,0.218247,0.935409,0.450552,0.418814,0.196804,0.703824,0.00666535,0.140865,0.532722,0.258141,0.311199,0.339298,0.0266785,0.853671,0.147042,0.303144,0.230529,0.736881,0.191492,0.869667,0.200577,0.838705,0.907569,0.952586,0.966065,0.567117,0.224198,0.0926957,0.143386,0.0101778,0.755783,0.311495,0.649994,0.601266,0.817534,0.169111,0.53671,0.996257,0.804004,0.174213,0.77659,0.261299,0.472701,0.65473,0.266569,0.117477,0.190359,0.73477,0.113891,0.309001,0.373673,0.78681,0.0290233,0.433717,0.689477,0.628176,0.974913,0.31147,0.071126,0.99191,0.117261,0.301,0.0372021,0.872869,0.503056,0.303723,0.887757,0.385566,0.427234,0.204604,0.195072,0.0442168,0.441725,0.119064,0.898994,0.884978,0.231667,0.480631,0.565138,0.281751,0.72503,0.191824,0.200572,0.287401,0.161504,0.0891061,0.467056,0.810818,0.654501,0.416154,0.35192,0.0538355,0.111859,0.519022,0.584184,0.56138,0.183487,0.672653,0.154695,0.600101,0.464819,0.755281,0.198663,0.78237,0.200961,0.298107,0.587814,0.800639,0.184703,0.058721,0.14411,0.138294,0.986039,0.343641,0.940671,0.872871,0.72835,0.27664,0.154423,0.478695,0.839869,0.689649,0.310403,0.590499,0.900572,0.215167,0.979523,0.898057,0.0783517,0.961399,0.255221,0.862645,0.224844,0.898471,0.590823,0.613749,0.751207,0.688388,0.803265,0.475564,0.322703,0.562456,0.0487979,0.295732,0.622447,0.302489,0.335906,0.252725,0.1181,0.731223,0.0839802,0.00918752,0.914492,0.789232,0.20266,0.941592,0.498033,0.839528,0.110871,0.237032,0.0225886,0.0738677,0.35595,0.167179,0.603938,0.52062,0.679558,0.171526,0.974276,0.696652,0.0102214,0.17357,0.633013,0.976407,0.549938,0.749448,0.583078,0.348699,0.564568,0.691903,0.987245,0.165393,0.130409,0.354813,0.973537,0.485961,0.838841,0.295447,0.479534,0.989523,0.0195643,0.79279,0.518481,0.939114,0.611727,0.384579,0.820186,0.958944,0.332179,0.474033,0.104723,0.947993,|0.0895308,0.0363983,0.303792,0.596811,0.796075,0.7323,0.402084,0.322256,0.854479,0.432273,0.387552,0.665034,0.355229,0.486953,0.14377,0.856687,0.963386,0.463369,0.683485,0.897445,0.0302206,0.13356,0.639532,0.646253,0.372494,0.480947,0.0308693,0.864801,0.303613,0.539758,0.710596,0.0909856,0.0670072,0.580166,0.361977,0.0602697,0.817156,0.175725,0.311559,0.74636,0.431419,0.0578948,0.687923,0.675954,0.0792757,0.468641,0.292044,0.243781,0.809943,0.0935816,0.224164,0.0197592,0.342866,0.604356,0.20433,0.110452,0.453403,0.741553,0.125651,0.286914,0.258452,0.254372,0.193448,0.499651,0.67784,0.112063,0.476081,0.617551,0.265431,0.670171,0.364531,0.449904,0.362112,0.527416,0.337326,0.860333,0.732746,0.18147,0.887893,0.205611,0.917272,0.763232,0.190167,0.760012,0.530519,0.0590665,0.97588,0.751627,0.455953,0.565234,0.00510716,0.384272,0.746664,0.180254,0.6587,0.697776,0.672783,0.212279,0.552767,0.632659,0.396087,0.872371,0.0268779,0.534851,0.125381,0.621242,0.3189,0.937636,0.392346,0.0945494,0.351561,0.304503,0.687651,0.422892,0.112126,0.549472,0.823169,0.564997,0.549175,0.105348,0.679964,0.993922,0.409869,0.273617,0.727181,0.515854,0.929781,0.0486345,0.648032,0.811948,0.740448,0.292818,0.0957105,0.678038,0.160617,0.657186,0.894599,0.97425,0.0305054,0.876608,0.835384,0.292089,0.739574,0.526691,0.738418,0.99467,0.304171,0.135931,0.63237,0.684007,0.73093,0.432273,0.405117,0.835208,0.774712,0.336924,0.312621,0.611374,0.358299,0.429342,0.863346,0.247271,0.247318,0.10434,0.949421,0.336311,0.672748,0.971393,0.781782,0.870602,0.233409,0.443376,0.657963,0.291262,0.314556,0.0501752,0.318991,0.16648,0.395202,0.239526,0.115623,0.960213,0.860363,0.0619057,0.850836,0.777743,0.269022,0.583955,0.182318,0.395621,0.621535,0.525381,0.167952,0.597562,0.476196,0.00927413,0.130031,0.490987,0.859258,0.0909942,0.490472,0.573736,0.198759,0.57391,0.358989,0.443745,0.509697,0.946751,0.928441,0.624197,0.0798475,0.263494,0.612724,0.942386,0.186782,0.319583,0.921156,0.851542,0.913391,0.513121,0.0621817,0.000585318,0.770139,0.354643,0.726303,0.416541,0.572794,0.603736,0.432597,0.356684,0.0433441,0.373961,0.494493,0.798817,0.340699,0.740661,0.583523,0.723022,0.696547,0.142562,0.89005,0.0181742,0.0728193,0.519938,0.706258,0.176738,0.933514,0.199516,0.653708,0.789196,0.910495,0.177484,0.136163,0.841843,0.504914,0.860386,0.198018,0.780551,0.686521,0.195629,0.264762,0.111815,0.452486,0.890396,0.561454,0.373604,0.259304,0.890486,0.0144171,0.936725,0.275937,0.617332,0.619422,0.889911,0.917952,0.902402,0.809622,0.256309,0.23485,0.447987,0.0549305,0.905381,0.856558,0.529201,0.239461,0.948576,0.319698,0.611332,0.734422,0.950912,0.52113,0.911481,0.692205,0.856941,0.732618,0.0301539,0.423892,0.621556,0.943796,0.688297,0.899231,0.148035,0.551898,0.229266,0.244819,0.016338,0.905887,0.164377,0.105907,0.0627494,0.221811,0.046151,0.387139,0.69791,0.896672,0.488371,0.53163,0.832946,0.360325,0.644285,0.163415,0.836724,0.534865,0.247803,0.883455,0.338732,0.107834,0.299916,0.721219,0.0698537,0.218353,0.0342454,0.587981,0.842127,0.65066,0.37718,0.477637,0.917165,0.551097,0.517209,0.551934,0.0760391,0.307772,0.646076,0.052083,0.359705,0.539911,0.809144,0.970172,0.28865,0.650553,0.419748,0.163418,0.453245,0.836394,0.0619868,0.637131,0.747701,0.819845,0.391154,0.102041,0.568951,0.381488,0.783148,0.374339,0.102667,0.851033,0.62388,0.359805,0.311856,0.773046,0.981943,0.200652,0.35984,0.300803,0.636597,0.627803,0.996949,0.942415,0.764746,0.768047,0.538427,0.00858033,0.237792,0.506631,0.866338,0.184006,0.0468399,0.66038,0.73536,0.917063,0.326785,0.269566,0.829463,0.679655,0.285359,0.447421,0.367144,0.36125,0.767195,0.134306,0.862532,0.880669,0.886113,0.700812,0.590788,0.525695,0.682302,0.342411,0.730357,0.956146,0.837115,0.532011,0.861711,0.893901,0.395922,0.0834216,0.566966,0.147631,0.143039,0.396697,0.530244,0.948475,0.20596,0.793189,0.268217,0.410952,0.985243,0.187284,0.244492,0.813552,0.334955,0.695226,0.926861,0.439569,0.775774,0.898466,0.0462921,0.861288,0.366107,0.74915,0.786868,0.733425,0.601151,0.0802561,0.0916086,0.428457,0.558578,0.597089,0.909114,0.40276,0.00734389,0.635108,0.386082,0.678281,0.925609,0.484118,0.949205,0.214617,0.187211,0.992282,0.420131,0.967012,0.403206,0.744433,0.482508,0.644435,0.155953,0.818339,0.334465,0.200261,0.730893,0.378951,0.791026,0.155621,0.564968,0.636606,0.405724,0.220995,0.250711,0.38015,0.810354,0.29587,0.593359,0.705728,0.529465,0.714854,0.750057,0.978884,0.752504,0.525445,0.367611,0.817143,0.41647,0.00436926,0.336735,0.249766,0.824966,0.5158,0.492201,0.166899,0.686256,0.0794091,0.989272,0.312077,0.171198,0.658576,0.104857,0.648148,0.266141,0.424245,0.912215,0.464672,0.780936,0.302474,0.198317,0.231732,0.267921,0.764247,0.395706,0.20636,0.426045,0.649229,0.758412,0.214808,0.252828,0.325902,0.633174,0.518074,0.00968057,0.66407,0.911527,0.388022,0.604413,0.599801,0.575506,0.917229,0.556299,0.714049,0.70852,0.566983,0.597264,0.441196,0.0239713,0.428443,0.499544,0.959761,0.758136,0.372112,0.510134,0.211591,0.236141,0.6974,0.743889,0.0277753,0.419544,0.292878,0.834009,0.99638,0.304454,0.690387,0.358126,0.493416,0.442287,0.0478197,0.534432,0.400716,0.45853,0.609692,0.304407,0.65861,0.509475,0.0422373,0.534012,0.639972,0.856433,0.1376,0.412749,0.0720793,0.0475532,0.732693,0.663567,0.722311,0.503952,0.116536,0.768368,0.207009,0.0284126,0.00074029,0.000989974,0.00462198,0.788824,0.379837,0.859254,0.511384,0.725152,0.987835,0.327097,0.609551,0.592241,0.0587361,0.62912,0.61625,0.821139,0.814419,0.382334,0.31611,0.025824,0.171661,0.014826,0.506586,0.961212,0.993745,0.980133,0.822259,0.478514,0.595565,0.638244,0.629983,0.369116,0.539676,0.613736,0.61587,0.187879,0.365535,0.359503,0.19876,0.487869,0.469007,0.730931,0.0872749,0.941491,0.555572,0.179111,0.284571,0.844717,0.283164,0.701487,0.399338,0.38734,0.810011,0.612437,0.4816,0.262207,0.334914,0.272729,0.370151,0.198,0.494472,0.935775,0.32061,0.446324,0.967608,0.286279,0.76736,0.327631,0.195176,0.484998,0.628752,0.0201575,0.893603,0.426499,0.888658,0.474311,0.166675,0.40663,0.154267,0.619365,0.903573,0.982903,0.429581,0.976217,0.354078,0.0876827,0.657127,0.437332,0.910081,0.308034,0.128251,0.556332,0.85729,0.795107,0.311261,0.709712,0.378536,0.360506,0.790114,0.451334,0.739701,0.762625,0.710493,0.0710583,0.813975,0.111069,0.870864,0.127277,0.562258,0.223366,0.83027,0.72181,0.832189,0.839967,0.0860279,0.289738,0.294573,0.624279,0.734154,0.744727,0.68846,0.747363,0.549171,0.386841,0.677335,0.167311,0.832092,0.613175,0.85819,0.287957,0.41576,0.169258,0.513479,0.266681,0.688035,0.670028,0.821849,0.199355,0.620785,0.187905,0.514286,0.0887579,0.749538,0.676896,0.251562,0.117338,0.689176,0.0750692,0.666984,0.992883,0.529937,0.236529,0.0614646,0.963974,0.695479,0.545037,0.289298,0.902887,0.279802,0.35749,0.50688,0.792114,0.979553,0.183792,0.947322,0.502612,0.637578,0.870496,0.156268,0.749452,0.75947,0.896904,0.197507,0.0275682,0.430777,0.411748,0.679024,0.0389254,0.124799,0.352087,0.0780743,0.625534,0.65399,0.459754,0.411726,0.933328,0.17154,0.906741,0.352565,0.938414,0.408091,0.82219,0.40927,0.627466,0.639158,0.524187,0.572067,0.325381,0.70439,0.924479,0.578541,0.792424,0.22412,0.509718,0.99147,0.929713,0.78091,0.527539,0.781956,0.962017,0.382079,0.976373,0.16625,0.584082,0.386413,0.828629,0.456549,0.753276,0.752366,0.071051,0.742866,0.623512,0.468997,0.405466,0.77712,0.780245,0.723974,0.0146405,0.434354,0.441059,0.521383,0.558634,0.723868,0.954031,0.664457,0.33643,0.862365,0.598244,0.126086,0.0684836,0.687889,0.0129523,0.110477,0.714517,0.961512,0.58671,0.988853,0.815525,0.949764,0.576254,0.0553446,0.456838,0.582031,0.635206,0.666221,0.0318975,0.60954,0.61379,0.991528,0.748047,0.659915,0.297507,0.989056,0.702985,0.15564,0.0819814,0.400297,0.0467799,0.0227678,0.539013,0.0474745,0.997387,0.604499,0.729187,0.0364876,0.362293,0.116461,0.257475,0.332765,0.812224,0.399017,0.125902,0.369261,0.747943,0.927296,0.911593,0.213707,0.908788,0.256425,0.975614,0.918227,0.312212,0.896466,0.91985,0.237514,0.784781,0.312235,0.42562,0.629882,0.982637,0.0233596,0.0128096,0.424988,0.787587,0.550462,0.248271,0.00436145,0.816017,0.886928,0.946948,0.0857956,0.718442,0.992169,0.118467,0.61233,0.683225,0.689121,0.625481,0.145146,0.644992,0.958388,0.0221227,0.810393,0.0502204,0.00328493,0.541371,0.252965,0.110791,0.45073,0.231249,0.266039,0.416893,0.619741,0.117968,0.612266,0.915479,0.723196,0.40025,0.517733,0.652508,0.589263,0.888061,0.314886,0.0116546,0.072835,0.232449,0.303039,0.834263,0.397303,0.48429,0.219613,0.570678,0.887453,0.555736,0.414027,0.765516,0.442586,0.0414834,0.994183,0.718996,0.906769,0.696455,0.360457,0.732619,0.836623,0.869951,0.19085,0.382208,0.946371,0.633499,0.605494,0.845459,0.219414,0.0763645,0.51635,0.488643,0.281244,0.794224,0.101507,0.248129,0.758743,0.320961,0.576658,0.682808,0.171907,0.477514,0.650258,0.322249,0.468904,0.934359,0.603312,0.0534772,0.289402,0.505514,0.819321,0.19346,0.652175,0.243786,0.283436,0.788716,0.82503,0.956532,0.476654,0.826852,0.679068,0.208807,0.992547,0.645119,0.0172273,0.251483,0.456032,0.374581,|0.308966,0.0953497,0.360567,0.830792,0.25479,0.502699,0.442466,0.21774,0.895363,0.73653,0.49461,0.587543,0.263895,0.464312,0.125433,0.45837,0.921875,0.477937,0.980201,0.00341135,0.0667269,0.873039,0.21011,0.995868,0.123267,0.726726,0.994605,0.989044,0.587475,0.949415,0.304741,0.9563,0.271908,0.649769,0.999579,0.671287,0.0845433,0.83609,0.141854,0.351785,0.712376,0.0196874,0.483599,0.00406373,0.381641,0.399624,0.534032,0.362031,0.902529,0.824021,0.073855,0.896545,0.531523,0.0781491,0.641693,0.986424,0.268652,0.666485,0.0302714,0.554384,0.540236,0.563325,0.926474,0.180736,0.942668,0.676376,0.474136,0.909837,0.342796,0.682569,0.687932,0.874038,0.730548,0.826538,0.81975,0.764934,0.0965494,0.311399,0.349581,0.464578,0.84921,0.798872,0.103508,0.860972,0.597172,0.91463,0.789032,0.140606,0.60207,0.474597,0.19924,0.174461,0.273572,0.735757,0.670476,0.254607,0.759576,0.691815,0.402989,0.776902,0.391481,0.530535,0.534156,0.557106,0.178317,0.301428,0.786454,0.369137,0.6891,0.884985,0.435183,0.899768,0.342396,0.909471,0.525806,0.789772,0.248106,0.656391,0.588535,0.344975,0.981773,0.634126,0.454042,0.170463,0.257868,0.734353,0.191469,0.258812,0.791273,0.589699,0.65146,0.496005,0.293176,0.879446,0.484158,0.371325,0.742093,0.838754,0.0279018,0.457935,0.00386518,0.417712,0.65795,0.0655652,0.994528,0.371919,0.902342,0.569248,0.218681,0.839387,0.943969,0.0828313,0.665012,0.190684,0.505679,0.128084,0.555636,0.243211,0.197298,0.896107,0.271446,0.258719,0.985201,0.194089,0.884492,0.194789,0.426037,0.398196,0.630713,0.420357,0.756605,0.156963,0.790521,0.71296,0.977062,0.498045,0.760181,0.215034,0.868318,0.0338337,0.304767,0.0249235,0.804771,0.474673,0.962777,0.537224,0.293749,0.285717,0.873932,0.869899,0.542049,0.876853,0.0912269,0.703419,0.650092,0.0411244,0.438642,0.67852,0.604738,0.238135,0.251492,0.847008,0.195801,0.924416,0.331818,0.651196,0.399358,0.53741,0.0550617,0.0625759,0.859653,0.467994,0.328367,0.0168096,0.170862,0.72111,0.0242442,0.0496331,0.624884,0.81209,0.0988705,0.00378561,0.449537,0.0228231,0.561585,0.0596867,0.180603,0.245248,0.763883,0.0986332,0.958529,0.30663,0.609082,0.118384,0.218314,0.858229,0.402895,0.00672621,0.412754,0.741497,0.437366,0.875127,0.659196,0.604299,0.573347,0.488434,0.158546,0.320887,0.385944,0.231426,0.292505,0.164276,0.449786,0.792819,0.0238967,0.216365,0.703824,0.0499814,0.778536,0.252134,0.669666,0.597053,0.888414,0.550372,0.393227,0.0482306,0.156293,0.460849,0.620134,0.194959,0.0402382,0.358391,0.511076,0.855407,0.627791,0.965568,0.0651282,0.779046,0.302078,0.763948,0.471602,0.138331,0.0785607,0.784578,0.168537,0.417545,0.523186,0.655988,0.932258,0.0395213,0.849638,0.826174,0.208659,0.0035637,0.633689,0.419837,0.187563,0.339674,0.539577,0.527346,0.0123485,0.0753466,0.924175,0.103259,0.740005,0.492614,0.0352294,0.0968083,0.875085,0.901414,0.949854,0.0139093,0.886383,0.671447,0.213646,0.333621,0.591523,0.287563,0.714686,0.675133,0.346225,0.698533,0.198147,0.947979,0.394039,0.98099,0.764899,0.7972,0.625703,0.113727,0.453336,0.598463,0.610219,0.442934,0.372621,0.868125,0.191518,0.94092,0.136947,0.992261,0.110247,0.192463,0.714768,0.713519,0.54524,0.519803,0.38682,0.358082,0.214252,0.14663,0.947024,0.412518,0.524507,0.937541,0.436361,0.0709831,0.810095,0.0861048,0.16363,0.94395,0.725204,0.465222,0.825141,0.540719,0.726987,0.119596,0.879819,0.425123,0.479119,0.838159,0.0254488,0.244456,0.932659,0.738744,0.0317675,0.926171,0.153373,0.562622,0.688081,0.529449,0.12149,0.0622991,0.308445,0.00109446,0.954066,0.297376,0.45138,0.815792,0.104642,0.876114,0.181533,0.570094,0.11053,0.711315,0.539354,0.503771,0.0386406,0.853148,0.222697,0.192174,0.893079,0.0137767,0.0547181,0.565074,0.523648,0.339339,0.134236,0.608235,0.854659,0.881446,0.928888,0.379272,0.326729,0.0692878,0.641413,0.39678,0.805531,0.105976,0.655762,0.110049,0.364423,0.178089,0.580823,0.947486,0.0231177,0.585583,0.879575,0.131102,0.193233,0.836572,0.994209,0.585699,0.72284,0.00278151,0.477531,0.832914,0.181982,0.1026,0.528223,0.396157,0.55228,0.489106,0.612661,0.316619,0.837616,0.143099,0.471542,0.993738,0.469905,0.347976,0.914883,0.48074,0.392675,0.642288,0.62305,0.911991,0.25682,0.0933473,0.273192,0.95134,0.489781,0.824108,0.594862,0.299624,0.543579,0.034928,0.205402,0.861257,0.894354,0.0117568,0.140162,0.622889,0.0706696,0.468818,0.175991,0.9669,0.379953,0.903258,0.418529,0.408607,0.0883177,0.888623,0.277786,0.218576,0.886403,0.100645,0.110355,0.331904,0.348452,0.654658,0.345931,0.650443,0.466926,0.36802,0.323549,0.779317,0.0911477,0.437158,0.822809,0.180183,0.174585,0.382613,0.852632,0.821914,0.0431452,0.686657,0.68784,0.723971,0.129909,0.303772,0.222243,0.938761,0.960137,0.497832,0.489191,0.391875,0.348802,0.547632,0.324368,0.668566,0.134114,0.218885,0.892096,0.00289899,0.357395,0.223025,0.66695,0.382255,0.0493525,0.791914,0.574192,0.0674967,0.840198,0.262896,0.422128,0.779224,0.334167,0.33585,0.735359,0.970326,0.913974,0.505608,0.475397,0.170311,0.214815,0.976895,0.329483,0.791244,0.865385,0.836219,0.233863,0.355356,0.263293,0.195541,0.328596,0.0928251,0.336228,0.395294,0.0621197,0.468587,0.554326,0.722894,0.984926,0.458578,0.880481,0.716553,0.352968,0.60058,0.29752,0.679954,0.226923,0.259359,0.206625,0.389404,0.468054,0.950203,0.0758232,0.458591,0.813126,0.702679,0.495837,0.314168,0.530868,0.929789,0.695856,0.192724,0.98194,0.597903,0.294175,0.486706,0.0703532,0.958656,0.296224,0.742032,0.77917,0.465009,0.694429,0.704736,0.648591,0.194222,0.476029,0.981844,0.976111,0.413301,0.86153,0.228588,0.505589,0.0834929,0.90337,0.460672,0.841394,0.750091,0.460848,0.857658,0.341676,0.224244,0.477851,0.495853,0.73207,0.861705,0.39823,0.0149109,0.964075,0.277206,0.874316,0.194993,0.681358,0.540728,0.736747,0.428592,0.26235,0.89675,0.0800267,0.761029,0.261995,0.688542,0.0438644,0.851829,0.675622,0.55176,0.679328,0.678437,0.443616,0.455208,0.119123,0.699835,0.467166,0.864428,0.00162554,0.285035,0.506373,0.109289,0.483664,0.227294,0.650125,0.625389,0.0032683,0.889653,0.604378,0.36349,0.998679,0.826177,0.362058,0.554089,0.242159,0.313986,0.204972,0.973203,0.438259,0.242125,0.769182,0.820037,0.778609,0.613842,0.731605,0.988424,0.896213,0.763732,0.169364,0.422635,0.64753,0.494633,0.774872,0.206065,0.957969,0.684751,0.54294,0.512221,0.779621,0.646624,0.892549,0.202974,0.697813,0.857668,0.843083,0.408587,0.523018,0.381472,0.540025,0.0010621,0.5815,0.679495,0.392714,0.72342,0.863384,0.0858936,0.0149441,0.74766,0.681361,0.521261,0.0141563,0.11263,0.450457,0.469103,0.830968,0.387526,0.24919,0.821234,0.33103,0.0536091,0.187197,0.527824,0.317541,0.903796,0.441618,0.822601,0.190279,0.80195,0.480748,0.892774,0.968913,0.749578,0.496795,0.636001,0.623598,0.864551,0.873035,0.192687,0.462508,0.714301,0.203777,0.596641,0.542235,0.554016,0.251881,0.518188,0.716847,0.09045,0.481885,0.715818,0.594238,0.603685,0.358415,0.258026,0.0670311,0.262038,0.919878,0.793242,0.641379,0.379805,0.884317,0.0699688,0.0739902,0.245408,0.0233625,0.0677365,0.11287,0.850116,0.345068,0.982086,0.383943,0.845243,0.923924,0.00457966,0.655323,0.783677,0.254131,0.240059,0.0392355,0.302166,0.419293,0.640835,0.194843,0.59617,0.34933,0.523673,0.833667,0.129338,0.737489,0.46916,0.0873445,0.739901,0.719227,0.775727,0.0589397,0.0294579,0.397589,0.595739,0.825393,0.593265,0.778967,0.600417,0.981629,0.667567,0.234296,0.774068,0.672803,0.893377,0.606571,0.112545,0.1641,0.458605,0.507681,0.599264,0.167244,0.721838,0.825751,0.523996,0.593414,0.00715917,0.983461,0.515528,0.472693,0.365359,0.327675,0.83189,0.823563,0.0441778,0.866105,0.283737,0.335388,0.863315,0.188777,0.420093,0.330369,0.490111,0.210062,0.105858,0.735968,0.555323,0.94661,0.109087,0.381336,0.39151,0.895143,0.614,0.443297,0.705992,0.429945,0.513114,0.142583,0.00210208,0.676598,0.466042,0.890169,0.276627,0.382496,0.309236,0.382249,0.0768144,0.54388,0.212178,0.278652,0.400701,0.301182,0.0490547,0.798254,0.372701,0.762923,0.909198,0.909892,0.833671,0.993066,0.202816,0.990985,0.968066,0.0499794,0.0809482,0.973908,0.309741,0.486885,0.778534,0.688013,0.589926,0.702696,0.539586,0.957876,0.622697,0.479739,0.577112,0.487612,0.227089,0.46596,0.404355,0.294528,0.725046,0.0473904,0.279849,0.807175,0.0989446,0.978754,0.200666,0.567171,0.67251,0.929549,0.606734,0.83107,0.396728,0.770742,0.115276,0.211906,0.876693,0.881482,0.569721,0.768483,0.666662,0.238234,0.790299,0.633431,0.264607,0.291773,0.498966,0.848358,0.541636,0.0683339,0.216165,0.554116,0.215482,0.526475,0.737334,0.716761,0.463356,0.721503,0.082669,0.558661,0.597249,0.517892,0.086345,0.546862,0.00256026,0.713857,0.439061,0.721745,0.939788,0.966738,0.415081,0.252992,0.00483811,0.955289,0.406773,0.326278,0.551031,0.0189947,0.447814,0.859579,0.624647,0.193323,0.393876,0.556365,0.408042,0.804339,0.349223,0.725988,0.814387,0.189649,0.255924,0.668204,0.529368,0.260139,0.454674,0.0825395,0.854517,0.388836,0.446229,0.544842,0.27697,0.849788,0.800108,0.494478,0.918641,0.676273,0.911455,0.282826,0.957735,0.257403,0.225863,0.00361842,0.0752848,0.753859,0.240636,0.549377,0.202434,0.0398536,0.576977,0.107242,0.555499,0.434095,0.954028,0.957735,0.338527,|0.0377796,0.879712,0.0687975,0.207962,0.279492,0.636269,0.301679,0.34335,0.339931,0.498837,0.462866,0.698589,0.160092,0.967917,0.895329,0.666704,0.0369958,0.431393,0.207445,0.0306646,0.533651,0.407454,0.242456,0.646726,0.933373,0.620594,0.906447,0.60603,0.884957,0.95156,0.355446,0.760499,0.160961,0.628468,0.309718,0.961109,0.779637,0.917597,0.428711,0.806528,0.614342,0.777432,0.131207,0.38178,0.971453,0.763344,0.564078,0.988123,0.148611,0.577933,0.738176,0.307052,0.57347,0.368997,0.930922,0.0669959,0.824048,0.225618,0.349705,0.947652,0.769526,0.0185775,0.44367,0.563517,0.288708,0.720389,0.874443,0.946556,0.246754,0.130761,0.0168008,0.654432,0.308335,0.28148,0.262245,0.796707,0.239228,0.205254,0.0463699,0.362483,0.682997,0.705367,0.820237,0.178042,0.259375,0.708021,0.0662677,0.52412,0.229804,0.52967,0.801534,0.231348,0.598189,0.661005,0.88874,0.766386,0.410934,0.0102105,0.667598,0.458874,0.548651,0.103089,0.106613,0.141339,0.186632,0.385106,0.995126,0.451265,0.297994,0.660459,0.116452,0.0721757,0.940883,0.886207,0.314976,0.878842,0.785412,0.789647,0.387946,0.143054,0.804793,0.0444516,0.152925,0.68246,0.806111,0.836429,0.422488,0.115722,0.982139,0.183686,0.949811,0.151539,0.127199,0.31155,0.629232,0.406089,0.0831878,0.173799,0.32168,0.820415,0.588557,0.511739,0.645464,0.234333,0.882512,0.873765,0.407388,0.466464,0.416975,0.484696,0.443022,0.73091,0.251638,0.615794,0.161581,0.743552,0.254768,0.0612332,0.807999,0.324446,0.2,0.104739,0.849711,0.562879,0.0760311,0.578676,0.271887,0.223078,0.217506,0.170729,0.155479,0.0220261,0.186436,0.876821,0.753883,0.186308,0.228645,0.158302,0.678935,0.181522,0.695494,0.268108,0.829354,0.158613,0.793601,0.929548,0.0449741,0.832709,0.945825,0.733877,0.664504,0.526603,0.848163,0.211696,0.236754,0.253381,0.751533,0.880968,0.0693157,0.270242,0.756802,0.801649,0.00285804,0.416217,0.173544,0.982235,0.692827,0.776243,0.424872,0.892603,0.327089,0.807719,0.0517948,0.964984,0.121231,0.479937,0.424469,0.0706331,0.129757,0.868525,0.772683,0.720732,0.470875,0.225786,0.864373,0.830195,0.65203,0.408041,0.146911,0.456118,0.549825,0.940694,0.174148,0.14738,0.375764,0.00732511,0.103987,0.74087,0.534407,0.185482,0.66947,0.635333,0.855702,0.961918,0.899549,0.417472,0.815808,0.492571,0.831213,0.764046,0.152644,0.931713,0.422856,0.175856,0.824791,0.809538,0.630584,0.48306,0.505261,0.620046,0.33247,0.471697,0.0997801,0.264121,0.999841,0.728021,0.224752,0.982367,0.542036,0.0446475,0.825755,0.332981,0.0336751,0.923075,0.00391841,0.542226,0.579465,0.205343,0.24961,0.450056,0.690222,0.717065,0.823016,0.196,0.956962,0.604635,0.107046,0.134064,0.77683,0.0420066,0.576793,0.957081,0.0427044,0.739166,0.526273,0.288994,0.616028,0.195829,0.496709,0.689523,0.513399,0.921196,0.39762,0.723275,0.900733,0.646345,0.496502,0.158992,0.0363433,0.49089,0.503135,0.493136,0.8635,0.550866,0.630538,0.571389,0.466632,0.403802,0.762834,0.306351,0.73291,0.727114,0.112896,0.669793,0.309486,0.699227,0.298636,0.805351,0.976662,0.395991,0.0710002,0.406274,0.250364,0.813669,0.810489,0.722211,0.156389,0.0434885,0.696976,0.952784,0.742373,0.948612,0.101607,0.783352,0.571064,0.19003,0.553636,0.7005,0.750517,0.624337,0.328051,0.906174,0.575661,0.942918,0.29737,0.583128,0.293903,0.274378,0.464943,0.641184,0.877825,0.998643,0.460908,0.336965,0.494956,0.745137,0.736687,0.048103,0.860977,0.851956,0.404716,0.0425937,0.690977,0.029718,0.432751,0.791981,0.789031,0.903181,0.566195,0.870017,0.718086,0.377963,0.262664,0.804656,0.856907,0.474746,0.428644,0.263885,0.663473,0.834288,0.426319,0.952948,0.173536,0.994239,0.56898,0.427943,0.788109,0.343584,0.513036,0.111738,0.504077,0.0719917,0.337215,0.211114,0.1876,0.591509,0.926919,0.840636,0.0832078,0.770486,0.888614,0.564658,0.658648,0.0903049,0.497284,0.381933,0.439396,0.701899,0.213693,0.995086,0.268624,0.0201504,0.885216,0.463419,0.174311,0.437164,0.43087,0.414733,0.153978,0.131374,0.326,0.440848,0.00788444,0.484907,0.404858,0.1891,0.435745,0.740628,0.245426,0.560229,0.435791,0.508592,0.622763,0.394612,0.0404472,0.196844,0.520679,0.612999,0.493709,0.264459,0.667842,0.126344,0.487071,0.988758,0.648189,0.129428,0.453439,0.0188279,0.482448,0.513856,0.726017,0.973998,0.256112,0.614047,0.749466,0.657384,0.188925,0.443523,0.0535231,0.81541,0.824353,0.20019,0.937901,0.553612,0.322871,0.410166,0.166478,0.850484,0.243149,0.680766,0.236408,0.922484,0.755092,0.340267,0.894729,0.98222,0.467169,0.528414,0.355905,0.279738,0.3178,0.643296,0.0880274,0.728345,0.717382,0.122343,0.111232,0.397682,0.242865,0.47929,0.729953,0.86959,0.531014,0.252934,0.110049,0.45091,0.780074,0.724358,0.142854,0.356035,0.700781,0.610222,0.744642,0.128928,0.0383777,0.608879,0.00832033,0.750851,0.277994,0.630486,0.109212,0.545778,0.936119,0.120061,0.718267,0.39291,0.726283,0.579871,0.994297,0.0841764,0.133748,0.607715,0.836021,0.829438,0.628428,0.687011,0.64822,0.349644,0.183993,0.958712,0.66625,0.289923,0.803655,0.520179,0.886958,0.508369,0.2413,0.597845,0.16705,0.109749,0.519996,0.346578,0.521761,0.00504541,0.833771,0.599438,0.915913,0.640252,0.952913,0.260157,0.579545,0.382746,0.119846,0.102038,0.456619,0.0904088,0.622168,0.181507,0.129193,0.0672683,0.253225,0.179435,0.438538,0.803425,0.982232,0.603496,0.742465,0.907627,0.419277,0.294316,0.627606,0.470679,0.802075,0.914021,0.578094,0.905827,0.687528,0.00869018,0.926054,0.760223,0.00461268,0.380454,0.770373,0.532629,0.373023,0.385066,0.937032,0.455861,0.185582,0.505126,0.100636,0.49839,0.670379,0.933498,0.98418,0.0173476,0.401517,0.299165,0.899911,0.140954,0.914155,0.99639,0.384459,0.905514,0.144651,0.373162,0.156001,0.220266,0.920367,0.876556,0.36769,0.290722,0.0361137,0.068997,0.166891,0.406221,0.881984,0.623871,0.112149,0.91324,0.069139,0.69041,0.0313569,0.231278,0.177328,0.924412,0.953142,0.712938,0.184306,0.0597135,0.760774,0.853905,0.116033,0.469406,0.646137,0.878387,0.871716,0.941957,0.616038,0.260134,0.536248,0.253262,0.870252,0.452835,0.492168,0.937835,0.358598,0.602146,0.00636458,0.705961,0.769912,0.103977,0.736776,0.998322,0.0178329,0.614592,0.613202,0.279858,0.190027,0.149899,0.888717,0.555846,0.694666,0.881063,0.211816,0.674073,0.333791,0.385356,0.105058,0.0453291,0.584818,0.484217,0.78221,0.58425,0.773898,0.27959,0.35804,0.793617,0.631816,0.272709,0.297336,0.556737,0.208529,0.800187,0.915691,0.70614,0.0539578,0.74364,0.609981,0.629509,0.428045,0.328791,0.822282,0.354031,0.356504,0.930906,0.461195,0.00989419,0.182771,0.0538008,0.71467,0.55086,0.266959,0.670142,0.109767,0.814042,0.276807,0.335458,0.163752,0.422659,0.976672,0.305077,0.813756,0.343975,0.0112196,0.875271,0.954307,0.469605,0.41249,0.542285,0.482093,0.558433,0.639438,0.0778983,0.54599,0.949821,0.958376,0.73384,0.693839,0.115172,0.174508,0.560326,0.610692,0.169362,0.433212,0.795869,0.366144,0.792733,0.243109,0.970329,0.828155,0.147499,0.334751,0.648818,0.37146,0.866594,0.851748,0.973642,0.535795,0.564173,0.35099,0.56005,0.00894898,0.10632,0.567291,0.99058,0.435781,0.237576,0.920827,0.444856,0.966905,0.863463,0.227901,0.500103,0.0984222,0.151237,0.896821,0.244981,0.756658,0.984282,0.0652723,0.47471,0.720119,0.773131,0.522887,0.168225,0.851714,0.397195,0.154513,0.231915,0.846893,0.62412,0.090484,0.00502658,0.722913,0.012522,0.0721211,0.235253,0.520065,0.798732,0.282832,0.722062,0.999991,0.435251,0.72715,0.221159,0.491348,0.163939,0.126055,0.555693,0.996947,0.229744,0.430849,0.362002,0.989102,0.296971,0.536869,0.695226,0.151425,0.475203,0.373433,0.259385,0.874936,0.160728,0.339254,0.379659,0.0196116,0.2676,0.287407,0.0951301,0.754031,0.899157,0.509177,0.971815,0.426675,0.712106,0.431914,0.094057,0.903005,0.677636,0.157534,0.650611,0.151901,0.86578,0.420769,0.0114573,0.239106,0.237666,0.0134673,0.779024,0.0835359,0.849309,0.587375,0.326719,0.850473,0.960735,0.841069,0.876478,0.82501,0.725883,0.22359,0.304656,0.124527,0.285886,0.846671,0.544324,0.915835,0.850114,0.959508,0.621293,0.959363,0.518669,0.430066,0.562901,0.977395,0.652242,0.734956,0.144901,0.126367,0.0019024,0.246575,0.443938,0.227825,0.186382,0.468465,0.366081,0.769614,0.234459,0.934691,0.786884,0.93488,0.71227,0.306217,0.523366,0.537619,0.227642,0.739663,0.415181,0.439783,0.411093,0.757758,0.191217,0.22777,0.275643,0.0785069,0.505189,0.826393,0.0566754,0.410413,0.16693,0.112024,0.741013,0.0120478,0.375834,0.845419,0.352603,0.265286,0.688087,0.37042,0.793663,0.265577,0.934973,0.649984,0.203854,0.494138,0.890527,0.824934,0.521128,0.472956,0.674754,0.769939,0.66198,0.283732,0.120712,0.957724,0.499578,0.845686,0.587159,0.579136,0.759559,0.0532672,0.254665,0.423707,0.530064,0.483485,0.91292,0.25925,0.261814,0.508965,0.700289,0.180391,0.743253,0.713689,0.592066,0.838885,0.585264,0.770887,0.422973,0.771316,0.687931,0.959602,0.129863,0.431879,0.81775,0.417867,0.786748,0.780793,0.938427,0.212569,0.0981938,0.654686,0.323201,0.63753,0.467141,0.208465,0.0802367,0.49948,0.598909,0.51469,0.962501,0.745417,0.715697,0.775404,0.0165278,0.753531,0.800323,0.581707,0.930649,0.0608878,0.278263,0.151522,0.341561,0.631125,0.597347,0.235001,0.640672,0.570119,0.719668,0.961673,0.152801,|0.73861,0.58239,0.25124,0.411196,0.628553,0.0661392,0.147843,0.882815,0.581304,0.854625,0.0715508,0.386513,0.0457264,0.804009,0.360212,0.825535,0.162328,0.250629,0.813784,0.26459,0.101468,0.290181,0.0713712,0.762852,0.456027,0.247611,0.476361,0.103006,0.641523,0.98533,0.605467,0.401371,0.760125,0.204358,0.870979,0.883751,0.543918,0.694165,0.12878,0.0110932,0.215747,0.541754,0.0497335,0.737848,0.568016,0.439936,0.619329,0.388603,0.979305,0.813473,0.5645,0.280602,0.609923,0.995423,0.0787901,0.948786,0.53711,0.180828,0.744744,0.820108,0.119913,0.17597,0.912432,0.634646,0.234793,0.845562,0.0678946,0.767179,0.0910161,0.9796,0.350061,0.478207,0.404619,0.612443,0.61626,0.297572,0.0339124,0.955422,0.500236,0.901315,0.181158,0.580905,0.303794,0.226486,0.275417,0.962759,0.989345,0.879851,0.513356,0.134923,0.219546,0.047565,0.98613,0.829657,0.40025,0.130932,0.8434,0.613612,0.812355,0.596862,0.221949,0.529466,0.572486,0.610769,0.652602,0.794294,0.173831,0.735373,0.938275,0.235571,0.200078,0.105544,0.438654,0.424895,0.51652,0.203694,0.42356,0.0510407,0.194064,0.0607654,0.709314,0.0141014,0.202162,0.135619,0.971867,0.164424,0.439958,0.870755,0.770667,0.29613,0.601303,0.879902,0.0899988,0.968356,0.819064,0.0824882,0.564271,0.355915,0.911001,0.993209,0.0810573,0.778489,0.410639,0.535795,0.834982,0.417715,0.407058,0.469662,0.400088,0.384678,0.275535,0.879915,0.197434,0.304327,0.842619,0.090256,0.0806653,0.944198,0.0777165,0.747599,0.0737595,0.405753,0.00468069,0.58808,0.38029,0.726393,0.555721,0.214348,0.0321155,0.938645,0.152732,0.661749,0.599117,0.329001,0.97681,0.127632,0.8987,0.013465,0.533837,0.109178,0.354924,0.29159,0.547976,0.904976,0.276275,0.529666,0.472053,0.651209,0.15515,0.235481,0.800038,0.940794,0.81676,0.19351,0.9249,0.0823642,0.820846,0.931863,0.106852,0.410156,0.127971,0.704795,0.394139,0.650191,0.89004,0.182976,0.0434756,0.834013,0.779039,0.0365071,0.116588,0.505088,0.88392,0.415739,0.984607,0.911733,0.921872,0.513419,0.438596,0.345511,0.966702,0.373499,0.839369,0.46189,0.821856,0.170349,0.253633,0.543873,0.27599,0.502121,0.700267,0.194481,0.21082,0.510719,0.188923,0.931979,0.687988,0.592199,0.543797,0.338829,0.890226,0.51012,0.268119,0.152866,0.718812,0.722004,0.664106,0.279436,0.328204,0.512292,0.31245,0.802004,0.165735,0.576515,0.614479,0.650691,0.81886,0.242825,0.10126,0.253397,0.497258,0.149678,0.474566,0.803742,0.11552,0.235653,0.539313,0.874593,0.810116,0.281434,0.714942,0.559936,0.0499251,0.519603,0.574799,0.387212,0.324754,0.100881,0.9197,0.129805,0.309991,0.0878615,0.928698,0.819937,0.248519,0.0537085,0.448405,0.0246633,0.364686,0.805552,0.777494,0.27813,0.997461,0.714881,0.844235,0.403185,0.707181,0.827065,0.317944,0.248622,0.547383,0.678416,0.0514007,0.385338,0.697696,0.469721,0.778433,0.253196,0.922452,0.918932,0.472862,0.281219,0.929599,0.910403,0.622561,0.0985475,0.455078,0.420493,0.423733,0.576744,0.433345,0.63643,0.874645,0.906132,0.178613,0.313563,0.874105,0.397207,0.189804,0.481292,0.790772,0.452857,0.484636,0.239869,0.355024,0.706304,0.358052,0.603256,0.241595,0.899389,0.224992,0.996632,0.099868,0.0448871,0.356049,0.989879,0.366393,0.432517,0.543889,0.337672,0.340236,0.00924188,0.783598,0.798844,0.858075,0.120417,0.689435,0.168289,0.427716,0.263114,0.414827,0.948453,0.0671818,0.460375,0.855357,0.822778,0.922774,0.422767,0.860746,0.532761,0.904452,0.373763,0.409843,0.561264,0.118541,0.0460255,0.984332,0.520865,0.218785,0.14117,0.214297,0.931865,0.356512,0.155156,0.983051,0.828167,0.715196,0.586613,0.793072,0.850652,0.0185833,0.597814,0.267829,0.496311,0.975833,0.604649,0.765823,0.231234,0.629991,0.184056,0.270432,0.672778,0.327967,0.637151,0.302633,0.275706,0.292286,0.774047,0.618813,0.960884,0.104938,0.0658464,0.801594,0.21243,0.746666,0.763176,0.159427,0.693708,0.491847,0.67906,0.322079,0.513832,0.658103,0.779913,0.958722,0.46961,0.829465,0.0804878,0.957634,0.537403,0.0497943,0.628557,0.857123,0.410024,0.0988653,0.776481,0.334286,0.514744,0.129818,0.734073,0.554251,0.0363465,0.0744306,0.337936,0.993988,0.878113,0.179248,0.977631,0.706531,0.632669,0.975649,0.61076,0.561697,0.377077,0.14353,0.992433,0.80088,0.570569,0.626781,0.0289451,0.550416,0.899105,0.0529569,0.649297,0.615902,0.910913,0.0318291,0.98966,0.890781,0.897576,0.999728,0.398005,0.710906,0.947437,0.350706,0.129154,0.664999,0.157773,0.745427,0.98644,0.451929,0.112582,0.420561,0.761407,0.234994,0.964432,0.702906,0.892246,0.423447,0.938416,0.711042,0.336294,0.89755,0.358318,0.84369,0.796657,0.97768,0.278515,0.514695,0.392944,0.216533,0.0589226,0.57887,0.773679,0.752315,0.785444,0.510135,0.387235,0.980616,0.32498,0.361682,0.99288,0.828643,0.430306,0.726022,0.098612,0.613589,0.427997,0.36504,0.26303,0.00597632,0.261748,0.70394,0.276173,0.897375,0.787996,0.256236,0.224848,0.497065,0.913566,0.772406,0.762506,0.616274,0.713228,0.849339,0.187083,0.801692,0.318274,0.966358,0.289293,0.503616,0.766469,0.418828,0.935778,0.775569,0.287643,0.413362,0.987856,0.913487,0.408722,0.823094,0.688704,0.0638572,0.349103,0.0284048,0.886199,0.67485,0.462576,0.582892,0.190571,0.952077,0.0313548,0.132026,0.181368,0.768567,0.488623,0.0913683,0.354416,0.437719,0.0688191,0.113304,0.435456,0.0556519,0.444177,0.126016,0.535252,0.0385579,0.546109,0.0302801,0.824136,0.979178,0.097591,0.936192,0.714512,0.079564,0.353226,0.363134,0.544432,0.739202,0.360629,0.581597,0.3784,0.139896,0.972731,0.00125355,0.384678,0.454939,0.838099,0.65365,0.122043,0.527484,0.795436,0.53863,0.156647,0.583252,0.423647,0.185875,0.318762,0.0481376,0.0428259,0.142548,0.78382,0.445823,0.777949,0.88543,0.783189,0.741566,0.80123,0.131681,0.988069,0.980405,0.228854,0.972583,0.843028,0.500403,0.895114,0.374898,0.68995,0.654025,0.592428,0.359827,0.0271857,0.520519,0.00678891,0.28565,0.748233,0.347275,0.177904,0.454815,0.276396,0.027379,0.911722,0.665866,0.620063,0.480819,0.688806,0.0969522,0.224561,0.318694,0.260914,0.00601256,0.554571,0.167087,0.286054,0.141132,0.796489,0.546698,0.599733,0.778585,0.698732,0.273148,0.4475,0.429219,0.203422,0.86799,0.397181,0.15195,0.739494,0.819025,0.6542,0.897755,0.367491,0.976595,0.153604,0.0362109,0.50334,0.843767,0.0229995,0.959119,0.849081,0.986746,0.827979,0.887709,0.165105,0.611016,0.756842,0.360283,0.697792,0.952661,0.756747,0.672438,0.219643,0.249967,0.571108,0.795186,0.302446,0.42489,0.00455016,0.208459,0.709271,0.86165,0.726986,0.64382,0.407311,0.92882,0.739184,0.757355,0.0836542,0.617936,0.934687,0.979246,0.268995,0.987126,0.90188,0.0553886,0.0107638,0.866682,0.231427,0.638917,0.0939326,0.55522,0.289175,0.312568,0.26389,0.19847,0.917187,0.887855,0.0985611,0.965209,0.839056,0.105858,0.588136,0.429601,0.726296,0.411421,0.479089,0.117178,0.841971,0.651418,0.679869,0.0276825,0.796593,0.707623,0.857088,0.0972554,0.736775,0.405754,0.997473,0.660401,0.604558,0.287446,0.844628,0.728355,0.97017,0.353355,0.77963,0.0266557,0.224566,0.518085,0.402962,0.777745,0.477661,0.0143504,0.639588,0.842477,0.214618,0.176572,0.563699,0.0600411,0.728685,0.586121,0.440815,0.775879,0.662767,0.189479,0.0693083,0.729563,0.927372,0.506337,0.641796,0.836693,0.95335,0.242947,0.460738,0.611186,0.562173,0.360906,0.928405,0.0639622,0.857705,0.136401,0.745179,0.977787,0.832898,0.319348,0.433857,0.861779,0.848653,0.852671,0.724891,0.673295,0.497003,0.796918,0.203637,0.408465,0.264042,0.720043,0.463492,0.673239,0.573378,0.087926,0.906684,0.942958,0.120078,0.0757661,0.843392,0.578968,0.612884,0.628674,0.454629,0.741877,0.545723,0.314622,0.123727,0.254851,0.896762,0.489116,0.877876,0.563243,0.36534,0.468654,0.374907,0.0116344,0.458079,0.82072,0.66591,0.697875,0.0558019,0.355167,0.949944,0.148074,0.887097,0.436913,0.563577,0.953745,0.807372,0.174531,0.258392,0.348364,0.44467,0.741474,0.242739,0.911061,0.112469,0.838923,0.0633462,0.0729837,0.00311613,0.507107,0.620517,0.0565253,0.494465,0.930601,0.960468,0.702453,0.35971,0.648131,0.478088,0.955451,0.532705,0.971838,0.85279,0.960628,0.296966,0.0435218,0.254584,0.878169,0.476287,0.627765,0.189886,0.471714,0.766736,0.320619,0.189074,0.808959,0.00876534,0.631769,0.457163,0.421483,0.913483,0.498888,0.195442,0.286869,0.93064,0.72764,0.706391,0.832311,0.17657,0.289314,0.222292,0.968934,0.807423,0.169356,0.540325,0.0793195,0.62148,0.981397,0.212939,0.258226,0.379998,0.704553,0.293903,0.480435,0.97816,0.176733,0.140777,0.47218,0.611227,0.197317,0.917027,0.154765,0.734962,0.384186,0.645959,0.312749,0.314372,0.455872,0.784336,0.68266,0.473061,0.0424772,0.977336,0.613236,0.14588,0.088841,0.457287,0.283162,0.347494,0.536281,0.232167,0.220034,0.979933,0.669229,0.00979972,0.315729,0.142417,0.616347,0.446657,0.152727,0.371058,0.154581,0.936871,0.183904,0.648101,0.51819,0.41498,0.771588,0.14257,0.389324,0.98509,0.982934,0.532597,0.891737,0.135361,0.0795426,0.684715,0.344369,0.425488,0.62748,0.188909,0.982897,0.638205,0.822882,0.203386,0.990148,0.246033,0.275264,0.724359,0.918143,0.5015,0.805522,0.0194932,0.553523,0.0621122,0.035258,0.115723,0.811162,0.881798,0.293014,0.558697,0.909507,0.976367,0.819988,0.819857,0.384847,0.500758,0.396586,0.837694,0.697038,0.450753,|0.283002,0.243277,0.639122,0.415639,0.320146,0.360887,0.965235,0.680006,0.928936,0.482768,0.440245,0.423359,0.713532,0.23754,0.795244,0.142059,0.842371,0.110813,0.364887,0.0922178,0.518532,0.879578,0.420382,0.345148,0.641108,0.534436,0.0869235,0.255235,0.36158,0.336599,0.974054,0.881723,0.893286,0.665199,0.370748,0.180509,0.769509,0.118316,0.356769,0.146922,0.483557,0.692195,0.123337,0.488282,0.0936115,0.0105402,0.384141,0.558747,0.441721,0.13611,0.46195,0.355986,0.0849021,0.0626921,0.340006,0.274517,0.622174,0.400663,0.642507,0.873565,0.740298,0.967275,0.296129,0.414653,0.0234188,0.356705,0.463559,0.624379,0.508715,0.987819,0.93879,0.849768,0.777918,0.576082,0.920845,0.148064,0.37031,0.740684,0.179393,0.149771,0.752843,0.339399,0.00538236,0.247827,0.0163171,0.159764,0.30045,0.400895,0.731673,0.489382,0.115553,0.127259,0.954763,0.123433,0.854309,0.131055,0.00685459,0.840015,0.705934,0.0249832,0.713184,0.24366,0.257844,0.745385,0.583418,0.336886,0.382089,0.91301,0.216329,0.850588,0.391486,0.10607,0.55933,0.843988,0.993499,0.0577202,0.818161,0.210824,0.825869,0.597071,0.641454,0.0671236,0.0140295,0.836655,0.88934,0.703698,0.452751,0.98108,0.0135573,0.923335,0.943497,0.962901,0.234485,0.814423,0.909438,0.34607,0.441287,0.407454,0.584667,0.000738263,0.850521,0.352109,0.943852,0.739258,0.616921,0.276511,0.704069,0.670781,0.581954,0.909491,0.103294,0.135208,0.938975,0.901171,0.0242139,0.857828,0.598004,0.258371,0.658895,0.449087,0.00803173,0.447017,0.555351,0.226373,0.636329,0.62954,0.270156,0.621306,0.346544,0.980267,0.979931,0.540856,0.967005,0.112153,0.793411,0.590923,0.45143,0.445566,0.103384,0.448618,0.0624496,0.620683,0.452214,0.0839704,0.579648,0.677336,0.144972,0.683112,0.629618,0.469067,0.416176,0.0350101,0.0650467,0.0533044,0.447487,0.451752,0.80789,0.674238,0.690355,0.541826,0.132147,0.936316,0.278672,0.872172,0.811565,0.878468,0.326629,0.435606,0.839107,0.354485,0.646055,0.942515,0.10405,0.759769,0.771185,0.772021,0.67152,0.741889,0.399132,0.875325,0.794704,0.546824,0.07002,0.416408,0.188096,0.222363,0.647172,0.622906,0.0391477,0.254097,0.992648,0.0414499,0.422517,0.545993,0.971956,0.136287,0.0881915,0.465699,0.773561,0.828755,0.0474718,0.916573,0.777088,0.743031,0.0309547,0.278001,0.284565,0.772375,0.0582685,0.667198,0.180702,0.972252,0.809713,0.256366,0.271882,0.856515,0.611957,0.248042,0.685624,0.967536,0.525012,0.146287,0.625774,0.625328,0.724765,0.0885418,0.996219,0.130987,0.249046,0.578592,0.484836,0.295215,0.626387,0.519313,0.241094,0.713857,0.435775,0.476883,0.810551,0.759168,0.656928,0.0628819,0.506912,0.338293,0.84009,0.70478,0.599937,0.639018,0.603167,0.0777564,0.767866,0.295953,0.149325,0.157565,0.714611,0.731185,0.648777,0.40673,0.953521,0.121521,0.338494,0.739318,0.197244,0.790992,0.346865,0.648822,0.801183,0.0327194,0.476036,0.502354,0.875478,0.941341,0.748815,0.0997958,0.877052,0.893396,0.59743,0.707032,0.924012,0.588724,0.914266,0.291145,0.377437,0.155287,0.834261,0.945093,0.786854,0.0409721,0.401629,0.716637,0.509157,0.998719,0.931365,0.238442,0.953247,0.679925,0.891201,0.183357,0.181131,0.147381,0.215648,0.0322597,0.0835069,0.429554,0.945737,0.451093,0.820078,0.217383,0.893161,0.841559,0.5312,0.751306,0.655703,0.53076,0.688734,0.623855,0.469915,0.6545,0.215772,0.37889,0.659226,0.21314,0.158225,0.336717,0.78371,0.679364,0.401872,0.231566,0.0226488,0.00272053,0.0664916,0.626141,0.395508,0.889797,0.93994,0.130513,0.270767,0.866562,0.362554,0.530073,0.54282,0.103361,0.995294,0.60918,0.147412,0.784445,0.206415,0.735082,0.989868,0.998255,0.549571,0.298325,0.655484,0.864325,0.807798,0.442618,0.0101871,0.860297,0.0646818,0.296148,0.454839,0.592973,0.156476,0.316421,0.0752034,0.23732,0.723913,0.68925,0.716296,0.924622,0.17996,0.275382,0.0509794,0.649033,0.682175,0.362256,0.115304,0.0349424,0.482375,0.296654,0.540066,0.0374516,0.418294,0.964001,0.8773,0.0611176,0.346878,0.890284,0.255881,0.848126,0.544683,0.623291,0.751815,0.442402,0.353473,0.723967,0.294329,0.755753,0.727356,0.719196,0.104805,0.947641,0.158743,0.757338,0.562336,0.988568,0.635565,0.452894,0.11922,0.0430076,0.059157,0.269315,0.131667,0.994367,0.83417,0.560406,0.532903,0.491129,0.883761,0.595041,0.452739,0.090936,0.290621,0.427014,0.913743,0.547798,0.987711,0.0556356,0.496215,0.737508,0.738604,0.324958,0.429836,0.528624,0.593844,0.979128,0.720814,0.601454,0.178669,0.818475,0.605419,0.917993,0.28597,0.435659,0.735347,0.311728,0.17478,0.97656,0.646419,0.607279,0.770655,0.149814,0.948964,0.63188,0.904488,0.245781,0.952151,0.0553075,0.0730816,0.233144,0.393623,0.220962,0.460772,0.836873,0.349621,0.407967,0.868299,0.507747,0.687858,0.486533,0.42274,0.362048,0.394761,0.659798,0.803041,0.11652,0.0537789,0.464894,0.737718,0.989794,0.918988,0.752678,0.249503,0.733673,0.476869,0.415601,0.518376,0.222431,0.807169,0.309853,0.856491,0.0977322,0.304351,0.761471,0.0948094,0.723367,0.0257686,0.324389,0.117454,0.325127,0.337149,0.775231,0.248985,0.0804484,0.26409,0.439599,0.361153,0.250964,0.892655,0.806501,0.87875,0.782643,0.347493,0.222651,0.835839,0.398285,0.898076,0.0822382,0.894504,0.940346,0.338454,0.393097,0.44892,0.736995,0.0745361,0.594829,0.779186,0.680686,0.12416,0.733072,0.715552,0.883471,0.249453,0.325577,0.325942,0.701105,0.893036,0.948806,0.735451,0.979701,0.85297,0.436626,0.112753,0.853351,0.730242,0.795667,0.0359989,0.46709,0.535692,0.533186,0.620875,0.217993,0.717661,0.0401093,0.0436926,0.989175,0.449727,0.09579,0.40598,0.517126,0.352578,0.246097,0.432823,0.269557,0.667083,0.719198,0.784567,0.824701,0.766169,0.234271,0.0722999,0.123741,0.212542,0.351901,0.059193,0.60011,0.622584,0.620099,0.896975,0.736684,0.875075,0.372921,0.896882,0.297982,0.0750033,0.280719,0.327161,0.150758,0.335986,0.331447,0.259276,0.973781,0.134765,0.201476,0.373721,0.367245,0.199787,0.983505,0.987979,0.165873,0.633544,0.372486,0.0263749,0.137973,0.0695158,0.239756,0.907416,0.304676,0.900567,0.149043,0.39046,0.934416,0.811912,0.461237,0.137102,0.146426,0.522383,0.689739,0.588807,0.948887,0.347685,0.0122256,0.871106,0.828026,0.695161,0.617347,0.274514,0.660425,0.680117,0.351103,0.604104,0.749851,0.869709,0.885044,0.974079,0.162488,0.435526,0.836146,0.695859,0.182981,0.459855,0.159783,0.716531,0.87393,0.466466,0.275452,0.594519,0.116816,0.869212,0.210127,0.684115,0.308755,0.232075,0.217623,0.332461,0.178704,0.446903,0.250704,0.461423,0.264139,0.532587,0.447783,0.014081,0.979842,0.937527,0.0220223,0.0818488,0.241346,0.386912,0.814326,0.983978,0.980843,0.181216,0.0925974,0.48492,0.641278,0.436524,0.339093,0.663694,0.482704,0.575226,0.264002,0.0879253,0.511932,0.0424167,0.175815,0.944716,0.991465,0.987695,0.157268,0.969097,0.570886,0.317344,0.870499,0.0698395,0.365061,0.864984,0.212291,0.599952,0.0120292,0.52154,0.00396204,0.507591,0.412591,0.191963,0.13773,0.748317,0.856715,0.0895266,0.299048,0.111929,0.277054,0.674576,0.957016,0.883338,0.404424,0.428958,0.681256,0.725736,0.971647,0.127398,0.419408,0.76258,0.0103353,0.397709,0.708205,0.630966,0.258623,0.585299,0.735717,0.404898,0.450552,0.979582,0.0210768,0.229947,0.296916,0.867964,0.725292,0.386607,0.180965,0.935295,0.665688,0.37194,0.0555104,0.144576,0.367118,0.424799,0.153279,0.80922,0.639117,0.195522,0.663318,0.0761019,0.459045,0.834155,0.419686,0.721591,0.58738,0.404934,0.167028,0.904484,0.894514,0.154081,0.291513,0.128175,0.394479,0.67169,0.075094,0.682253,0.257727,0.775349,0.778804,0.978483,0.541821,0.689622,0.482314,0.975591,0.403934,0.601719,0.0815723,0.50744,0.872928,0.861029,0.25719,0.570881,0.330727,0.751506,0.535913,0.387033,0.921455,0.477132,0.239414,0.379538,0.199079,0.0255394,0.683402,0.190514,0.108841,0.566089,0.0434517,0.390757,0.656275,0.389259,0.88165,0.343893,0.473916,0.0576879,0.0778781,0.36295,0.585704,0.833717,0.785493,0.775979,0.242068,0.705632,0.207346,0.622624,0.961601,0.680006,0.672078,0.663345,0.513557,0.738122,0.42826,0.230069,0.0225606,0.108938,0.792569,0.00245667,0.0212211,0.560949,0.340607,0.00616485,0.999372,0.711576,0.585203,0.00971615,0.316786,0.851141,0.919717,0.426311,0.477534,0.476283,0.263267,0.101438,0.492256,0.742453,0.823305,0.241034,0.391995,0.76357,0.103359,0.550053,0.488139,0.751719,0.0250744,0.943826,0.406859,0.502553,0.854618,0.336567,0.135562,0.309901,0.126128,0.0691234,0.761181,0.15668,0.312518,0.932258,0.467135,0.50742,0.147622,0.478119,0.433927,0.179087,0.388416,0.802151,0.775416,0.257146,0.351876,0.19837,0.22105,0.76337,0.314929,0.0141425,0.286838,0.410652,0.40753,0.927865,0.00303698,0.615705,0.681293,0.842661,0.699686,0.212999,0.224712,0.465517,0.364494,0.408816,0.737274,0.584156,0.855784,0.404171,0.889264,0.711215,0.0284481,0.347994,0.149203,0.902148,0.841636,0.0423414,0.487205,0.737176,0.268087,0.715881,0.776136,0.714458,0.43172,0.280233,0.122697,0.982207,0.162111,0.196819,0.44419,0.887451,0.7074,0.987603,0.310444,0.362411,0.440941,0.895604,0.459625,0.633921,0.237101,0.0746874,0.435444,0.815716,0.295283,0.130827,0.016468,0.628141,0.696817,0.854343,0.201331,0.870128,0.119917,0.465167,0.58063,0.193292,0.369632,0.274949,0.400692,0.322842,0.546838,0.637134,0.138893,0.619492,0.514242,0.313445,0.294027,|0.943554,0.722778,0.740163,0.942937,0.0909345,0.132049,0.850774,0.708732,0.00219041,0.379021,0.817798,0.834906,0.491286,0.295428,0.375393,0.644375,0.167896,0.225139,0.195828,0.21805,0.112906,0.687404,0.831638,0.02787,0.230834,0.664632,0.194995,0.395485,0.550839,0.666317,0.835333,0.989819,0.384244,0.948427,0.945756,0.31554,0.513243,0.614687,0.240623,0.224474,0.350804,0.395595,0.429738,0.732854,0.332878,0.990677,0.465927,0.309939,0.408671,0.913016,0.500184,0.391075,0.809722,0.754749,0.94487,0.794447,0.748925,0.778387,0.618812,0.703978,0.0846295,0.607701,0.291624,0.259758,0.502264,0.924831,0.155879,0.661829,0.94362,0.642192,0.0294272,0.244914,0.302929,0.00105631,0.116568,0.0862894,0.193376,0.191511,0.743196,0.276059,0.941327,0.637771,0.0770372,0.834885,0.756805,0.974083,0.141712,0.552917,0.937601,0.235412,0.765797,0.956885,0.720816,0.416582,0.862778,0.28465,0.338115,0.899837,0.257023,0.525998,0.93765,0.527349,0.123317,0.756082,0.215213,0.934724,0.151165,0.866785,0.511296,0.602556,0.494534,0.29873,0.0335891,0.940353,0.260126,0.539743,0.758871,0.554798,0.299209,0.444095,0.890649,0.651073,0.918963,0.878434,0.4002,0.586196,0.13099,0.0471841,0.0327942,0.353793,0.846371,0.666905,0.377036,0.865862,0.680528,0.989299,0.74554,0.682776,0.373171,0.847682,0.769395,0.817922,0.394023,0.600015,0.0253735,0.0471555,0.908966,0.492629,0.332855,0.664947,0.695841,0.988272,0.223195,0.349967,0.443599,0.590237,0.427449,0.508526,0.913036,0.90827,0.698169,0.337292,0.333141,0.183386,0.839825,0.295838,0.729447,0.337732,0.523021,0.961491,0.196274,0.217137,0.814525,0.511471,0.816502,0.362203,0.0707348,0.567451,0.836145,0.603519,0.372536,0.887873,0.735819,0.661301,0.228013,0.736595,0.732926,0.469298,0.899971,0.531858,0.167715,0.904107,0.740587,0.907348,0.790986,0.230679,0.27106,0.0212381,0.0844002,0.814264,0.926552,0.0285749,0.143474,0.410474,0.212401,0.132947,0.515656,0.558337,0.667754,0.824456,0.934366,0.581641,0.534234,0.242822,0.481384,0.836401,0.03536,0.390421,0.9051,0.0998985,0.0042271,0.401979,0.565876,0.200786,0.899376,0.660644,0.182106,0.827696,0.879409,0.0134168,0.980905,0.0184382,0.39256,0.890302,0.568476,0.0875239,0.945753,0.490787,0.872293,0.786529,0.350531,0.840267,0.365412,0.320686,0.368303,0.0127021,0.276989,0.172766,0.37498,0.300729,0.763258,0.658815,0.0365019,0.828264,0.1628,0.691762,0.86946,0.592768,0.397762,0.647934,0.871763,0.594875,0.121667,0.0941874,0.418726,0.713322,0.986759,0.713703,0.440686,0.859286,0.612089,0.864572,0.295053,0.722236,0.160266,0.644643,0.254713,0.193657,0.214851,0.134548,0.890179,0.370051,0.818212,0.786838,0.875778,0.117539,0.750616,0.549945,0.656996,0.632934,0.0604495,0.752141,0.888387,0.753829,0.42742,0.248214,0.543665,0.997404,0.577399,0.0399889,0.270928,0.940323,0.75754,0.0121858,0.0700845,0.822479,0.948027,0.688896,0.219087,0.924636,0.619286,0.236365,0.9208,0.897656,0.297365,0.336427,0.0520979,0.329449,0.638518,0.741859,0.388968,0.785345,0.00431991,0.0945088,0.317524,0.949684,0.894567,0.806286,0.085447,0.808604,0.0529838,0.366569,0.854309,0.380824,0.959272,0.316971,0.927334,0.111324,0.952999,0.132653,0.655306,0.0676842,0.698777,0.0820966,0.200583,0.191241,0.859256,0.329467,0.354868,0.779788,0.440722,0.486741,0.676884,0.381943,0.15692,0.056659,0.424683,0.247822,0.240723,0.295245,0.761568,0.382969,0.555605,0.993616,0.378726,0.110552,0.325963,0.714469,0.482495,0.149739,0.426641,0.694868,0.0161617,0.975064,0.275982,0.7391,0.626064,0.46137,0.193393,0.704483,0.0348015,0.352411,0.472954,0.636621,0.234321,0.670359,0.218332,0.525107,0.435066,0.0106507,0.441103,0.969406,0.969145,0.0648414,0.0105524,0.278271,0.326408,0.789745,0.052334,0.264978,0.4877,0.765899,0.875735,0.953344,0.188254,0.379778,0.403463,0.146056,0.491231,0.691882,0.0588166,0.169516,0.0907447,0.583265,0.392788,0.498285,0.848126,0.10647,0.911239,0.652523,0.169312,0.783666,0.300609,0.22723,0.0364957,0.372709,0.806162,0.337289,0.411834,0.891048,0.913965,0.343243,0.139009,0.735692,0.304705,0.96535,0.487767,0.299131,0.0958531,0.908894,0.286026,0.500028,0.668477,0.048243,0.76573,0.97508,0.879218,0.177269,0.734771,0.333754,0.378573,0.295621,0.932634,0.0560637,0.0940841,0.112361,0.588109,0.701888,0.670505,0.834101,0.639008,0.236432,0.39907,0.656778,0.689527,0.676708,0.82458,0.0968004,0.264765,0.794601,0.575085,0.897851,0.978232,0.385739,0.848067,0.376745,0.0443578,0.817258,0.16797,0.290784,0.638077,0.888623,0.930207,0.0529569,0.806883,0.23494,0.194966,0.155287,0.395773,0.126421,0.975393,0.349517,0.31967,0.174512,0.773626,0.280387,0.753227,0.0238753,0.338309,0.82266,0.971186,0.0390254,0.405502,0.687573,0.587242,0.11532,0.457681,0.20353,0.816445,0.86682,0.139098,0.118438,0.117098,0.109736,0.911225,0.670999,0.791062,0.335524,0.77661,0.203294,0.156367,0.508012,0.440087,0.407941,0.420004,0.961979,0.524296,0.202445,0.902757,0.203961,0.393414,0.445407,0.410876,0.0690461,0.388473,0.216569,0.447481,0.433723,0.456955,0.0982708,0.789527,0.990469,0.441706,0.575523,0.835133,0.810214,0.605239,0.955667,0.0918716,0.21436,0.479644,0.391155,0.0874594,0.873672,0.0730472,0.198525,0.521851,0.953321,0.0835268,0.387291,0.195531,0.101654,0.482062,0.194237,0.243855,0.881936,0.666151,0.96912,0.922341,0.0262382,0.867187,0.649742,0.80423,0.671621,0.954286,0.406171,0.285668,0.297056,0.791005,0.348774,0.170884,0.994606,0.315258,0.7282,0.639639,0.956709,0.575762,0.823859,0.786439,0.927132,0.249094,0.63596,0.270224,0.131682,0.538142,0.849512,0.233412,0.135132,0.428402,0.548745,0.0304616,0.494279,0.0392992,0.382227,0.0735228,0.45082,0.368289,0.0575529,0.812022,0.46695,0.108389,0.511903,0.0869213,0.539833,0.100461,0.360531,0.178093,0.246518,0.783517,0.0872532,0.783984,0.766934,0.27325,0.0151588,0.283834,0.949692,0.324996,0.523256,0.447343,0.105222,0.579945,0.0894287,0.994569,0.490858,0.233758,0.364787,0.605005,0.878292,0.658155,0.760541,0.873713,0.00492066,0.958697,0.653834,0.144735,0.96994,0.163313,0.268411,0.171571,0.853099,0.0110167,0.228178,0.508501,0.995278,0.928431,0.35532,0.678014,0.970391,0.164076,0.747864,0.0844348,0.335268,0.555184,0.253678,0.423398,0.937937,0.614674,0.235679,0.366359,0.286607,0.505801,0.407482,0.0643179,0.791887,0.756489,0.793637,0.735606,0.198937,0.373984,0.0625798,0.41924,0.508361,0.241682,0.0821481,0.392009,0.951534,0.879167,0.0137814,0.426864,0.774062,0.564163,0.0374818,0.769303,0.177527,0.0264911,0.813283,0.221143,0.124923,0.476188,0.136233,0.205387,0.0742302,0.525481,0.535873,0.584542,0.325978,0.44607,0.948025,0.174757,0.280261,0.524551,0.082018,0.996774,0.532293,0.711992,0.0398378,0.516068,0.238892,0.415243,0.806768,0.624182,0.270956,0.89387,0.660081,0.409633,0.962894,0.723577,0.0542858,0.0366426,0.266481,0.839749,0.913107,0.563451,0.292297,0.626588,0.735183,0.216057,0.348835,0.10653,0.866797,0.00131166,0.166619,0.245242,0.7396,0.94347,0.395318,0.361957,0.641071,0.527092,0.19455,0.681513,0.35757,0.326906,0.497588,0.505352,0.763506,0.806832,0.793771,0.299999,0.588267,0.303235,0.319848,0.276287,0.443444,0.819775,0.0451579,0.766806,0.441829,0.413203,0.387141,0.999063,0.578646,0.391574,0.171739,0.626652,0.341919,0.192859,0.535736,0.727141,0.842472,0.479478,0.99277,0.310533,0.275527,0.902016,0.183751,0.264674,0.609011,0.0410242,0.768207,0.0944388,0.382379,0.987932,0.681147,0.426736,0.258951,0.277532,0.834131,0.341924,0.293687,0.622955,0.248895,0.0576158,0.402097,0.389068,0.894685,0.807539,0.867303,0.217716,0.103227,0.781382,0.894677,0.33155,0.516002,0.694567,0.817909,0.593183,0.0341163,0.666808,0.145638,0.515744,0.539971,0.620792,0.299008,0.342812,0.27372,0.553176,0.338197,0.26998,0.285496,0.165592,0.995182,0.126769,0.427199,0.497972,0.284431,0.804309,0.611429,0.938596,0.55034,0.269141,0.390057,0.250369,0.297861,0.475812,0.520787,0.503407,0.380069,0.40651,0.349548,0.25594,0.820449,0.270411,0.513373,0.940371,0.92837,0.373812,0.851585,0.560024,0.76327,0.66149,0.149284,0.587288,0.21706,0.0420353,0.256212,0.235133,0.792531,0.86293,0.886157,0.165628,0.726466,0.715998,0.112048,0.436391,0.825895,0.482368,0.945056,0.210398,0.658634,0.72963,0.511154,0.774974,0.0308098,0.706268,0.642833,0.125421,0.230062,0.782099,0.50525,0.317406,0.739513,0.872832,0.116692,0.855304,0.525779,0.750862,0.40055,0.443322,0.614077,0.112281,0.514238,0.354372,0.860886,0.430108,0.166259,0.901545,0.0125568,0.766878,0.984952,0.4092,0.758507,0.656297,0.429899,0.360792,0.867265,0.127575,0.416216,0.280393,0.441145,0.506015,0.726564,0.342073,0.814516,0.549359,0.326185,0.579556,0.837045,0.467273,0.640509,0.47723,0.599139,0.0244961,0.983196,0.998878,0.0577464,0.92533,0.943079,0.286857,0.329305,0.539015,0.453219,0.0398854,0.823678,0.823901,0.435991,0.94549,0.129173,0.473118,0.719644,0.980481,0.136194,0.301065,0.881579,0.523403,0.0772097,0.261295,0.900192,0.39868,0.350176,0.297318,0.44966,0.542457,0.807307,0.865051,0.307928,0.764647,0.409103,0.821288,0.835846,0.0139005,0.836061,0.899938,0.233566,0.0399598,0.612292,0.959556,0.032899,0.173706,0.743532,0.0697588,0.96981,0.7539,0.0452944,0.0673174,0.992412,0.26901,0.443997,0.876682,0.0586597,0.81795,0.810067,0.767668,0.547859,0.87632,0.440304,0.630752,0.21857,0.797761,0.660365,|0.793469,0.56034,0.759585,0.61347,0.97561,0.69579,0.0674708,0.349219,0.49046,0.207195,0.128959,0.453682,0.848302,0.93004,0.445261,0.733404,0.646141,0.676339,0.192118,0.452563,0.234234,0.910571,0.852837,0.930654,0.98013,0.596032,0.957009,0.732308,0.0842646,0.737088,0.600191,0.584388,0.422235,0.448008,0.964207,0.425873,0.298942,0.421688,0.596881,0.179416,0.125562,0.284762,0.153706,0.525391,0.861249,0.292296,0.480489,0.325813,0.267361,0.0845774,0.113731,0.126609,0.530677,0.324242,0.780035,0.0204011,0.460495,0.118013,0.278391,0.733091,0.0744511,0.215533,0.846022,0.339088,0.953513,0.982324,0.361889,0.0153333,0.800565,0.0989796,0.429703,0.322054,0.763933,0.183376,0.433174,0.299675,0.475474,0.137363,0.383109,0.936598,0.165347,0.140849,0.685399,0.326569,0.392211,0.745096,0.00586939,0.226638,0.604973,0.948799,0.41227,0.79436,0.440316,0.862082,0.844394,0.174419,0.57224,0.792637,0.951817,0.975623,0.86854,0.922882,0.482583,0.866733,0.574362,0.268769,0.526783,0.728906,0.662325,0.250992,0.471695,0.486977,0.29894,0.43507,0.337428,0.105507,0.77968,0.00622278,0.152586,0.0609666,0.307978,0.727302,0.130398,0.124984,0.584331,0.453549,0.382251,0.642463,0.421647,0.199829,0.432849,0.399807,0.177019,0.4797,0.859989,0.406445,0.340984,0.765175,0.446419,0.502448,0.784765,0.0382382,0.146258,0.838442,0.681722,0.703614,0.862859,0.605266,0.631539,0.385946,0.529766,0.716833,0.248541,0.82082,0.0621254,0.789233,0.677527,0.770624,0.332652,0.42519,0.361055,0.0774367,0.310289,0.218619,0.226775,0.426451,0.274326,0.264559,0.156825,0.119674,0.225059,0.515688,0.0782764,0.659742,0.912154,0.986399,0.402448,0.182771,0.454433,0.289466,0.36373,0.373647,0.175226,0.670042,0.201296,0.473366,0.795028,0.885927,0.072476,0.346223,0.295332,0.760364,0.400212,0.767585,0.149481,0.956491,0.102256,0.659775,0.573136,0.602259,0.574548,0.159548,0.548742,0.0589559,0.697939,0.269494,0.491872,0.74491,0.150068,0.208116,0.0816658,0.395621,0.588614,0.561315,0.469748,0.76956,0.471546,0.197455,0.118272,0.515707,0.833275,0.922888,0.467773,0.313757,0.0190356,0.126934,0.437926,0.391557,0.048364,0.301054,0.396408,0.691793,0.640084,0.821504,0.516684,0.562626,0.653142,0.817153,0.944743,0.730568,0.370871,0.644601,0.25183,0.536813,0.545235,0.426365,0.522099,0.2871,0.669003,0.86337,0.706847,0.679985,0.244045,0.495962,0.376239,0.943375,0.195973,0.45766,0.89851,0.135167,0.790839,0.260867,0.460942,0.658072,0.737186,0.613434,0.953302,0.757498,0.722622,0.162539,0.0517075,0.366615,0.574674,0.573278,0.162401,0.961018,0.420514,0.118408,0.326972,0.822683,0.474258,0.37895,0.938509,0.390634,0.758703,0.148299,0.0136575,0.655453,0.482802,0.608662,0.15381,0.259064,0.408288,0.0964053,0.835057,0.374213,0.675867,0.705873,0.868036,0.0514532,0.988444,0.773887,0.0190587,0.603074,0.194462,0.746419,0.995241,0.10275,0.526034,0.769203,0.97516,0.769663,0.0210407,0.263783,0.642928,0.176255,0.848307,0.993213,0.712287,0.800807,0.758845,0.798457,0.0139404,0.111011,0.970838,0.781068,0.444674,0.175454,0.0981197,0.876181,0.154461,0.178124,0.194996,0.393391,0.357718,0.246015,0.354165,0.0479745,0.693385,0.758641,0.183022,0.445642,0.910677,0.148963,0.290821,0.561096,0.423015,0.210595,0.542206,0.202441,0.823925,0.381993,0.266915,0.0798725,0.799639,0.702163,0.0774534,0.126463,0.280491,0.281873,0.24019,0.442143,0.909676,0.275987,0.849021,0.506028,0.764186,0.333343,0.0782045,0.738991,0.558702,0.0772064,0.0428569,0.145661,0.273485,0.416737,0.188241,0.387981,0.771605,0.665663,0.498997,0.939693,0.44759,0.553529,0.948076,0.617161,0.433604,0.0838388,0.910226,0.148981,0.300906,0.756103,0.616774,0.469618,0.572573,0.82947,0.447624,0.314485,0.726406,0.102357,0.0648066,0.921553,0.725817,0.855328,0.295919,0.13418,0.590143,0.508417,0.878491,0.280237,0.561447,0.0449957,0.730742,0.475226,0.194017,0.919268,0.561925,0.00472242,0.287969,0.917918,0.922757,0.502404,0.326925,0.282097,0.595244,0.992756,0.237025,0.712254,0.118256,0.0137646,0.154576,0.784192,0.375974,0.996137,0.773021,0.418796,0.189953,0.291219,0.971641,0.864438,0.421426,0.460749,0.837386,0.800518,0.421949,0.248214,0.422126,0.636336,0.929253,0.635453,0.634629,0.418746,0.927569,0.545199,0.233448,0.834138,0.942053,0.173452,0.0866979,0.919855,0.939807,0.89616,0.145984,0.845549,0.386819,0.538866,0.294386,0.731381,0.0445025,0.554967,0.995746,0.857212,0.0679523,0.311414,0.172064,0.724404,0.559546,0.791468,0.825052,0.670516,0.348842,0.959205,0.960134,0.533327,0.252008,0.0642673,0.907733,0.814749,0.482045,0.289814,0.932597,0.683547,0.701102,0.620292,0.420189,0.359499,0.629171,0.70403,0.147747,0.0340286,0.0721117,0.825147,0.165654,0.612905,0.416633,0.555908,0.194859,0.0233523,0.399313,0.596012,0.485666,0.93507,0.233422,0.0907742,0.490998,0.78986,0.0973499,0.019028,0.791416,0.0534554,0.820823,0.775036,0.253151,0.914373,0.981956,0.0218012,0.388421,0.960253,0.0833692,0.668623,0.934633,0.363843,0.893349,0.515383,0.497481,0.455122,0.0521717,0.545157,0.30735,0.96027,0.864669,0.260669,0.935803,0.349202,0.793024,0.433479,0.598257,0.428114,0.793396,0.167314,0.364242,0.971853,0.594071,0.103146,0.531944,0.730673,0.59406,0.632442,0.700752,0.891764,0.326515,0.17815,0.443246,0.0680277,0.912244,0.807058,0.111662,0.0344738,0.237645,0.595037,0.594096,0.192386,0.579581,0.186147,0.715729,0.770599,0.309902,0.910402,0.664788,0.891294,0.627128,0.753034,0.293916,0.238769,0.116917,0.892428,0.821679,0.919296,0.407363,0.328488,0.418985,0.599449,0.426086,0.577354,0.608809,0.0601062,0.171825,0.107977,0.268122,0.257553,0.375277,0.160546,0.126906,0.386099,0.790162,0.132482,0.547624,0.426328,0.45208,0.729053,0.545001,0.35319,0.354282,0.605223,0.762008,0.233379,0.127746,0.505145,0.951775,0.630905,0.138423,0.164064,0.337377,0.0677068,0.483047,0.362061,0.115294,0.815914,0.740192,0.611651,0.785484,0.525963,0.337075,0.211971,0.20025,0.519208,0.162999,0.247371,0.623312,0.270222,0.373335,0.971098,0.773096,0.568242,0.0551585,0.58375,0.25948,0.425356,0.0604879,0.469477,0.942796,0.293109,0.87283,0.0594555,0.851436,0.274455,0.0857915,0.225561,0.0828157,0.0419366,0.450389,0.356904,0.669565,0.567528,0.416207,0.407082,0.394308,0.55403,0.481062,0.458867,0.615479,0.71835,0.762529,0.949999,0.331296,0.74063,0.639531,0.945751,0.234217,0.553742,0.628662,0.723704,0.837717,0.000310957,0.212938,0.558872,0.130335,0.722868,0.238223,0.635253,0.663417,0.0319509,0.554231,0.781307,0.31104,0.65315,0.922855,0.736237,0.699655,0.721871,0.740341,0.910811,0.940885,0.555612,0.194555,0.796814,0.225978,0.767989,0.599762,0.947344,0.606252,0.13038,0.259996,0.826716,0.75372,0.243947,0.539116,0.533897,0.0758443,0.607934,0.75324,0.107713,0.749162,0.555273,0.989874,0.572005,0.229381,0.00282937,0.604945,0.762631,0.512238,0.880434,0.665947,0.838083,0.740618,0.216873,0.378288,0.0716861,0.152314,0.0569506,0.608495,0.826298,0.467337,0.859847,0.102587,0.463036,0.167889,0.035206,0.0266473,0.290296,0.475473,0.920976,0.893622,0.342091,0.440272,0.74552,0.461057,0.914965,0.229013,0.479776,0.378196,0.0937745,0.782267,0.685908,0.0255836,0.670869,0.265667,0.357674,0.0970839,0.583928,0.625198,0.354661,0.399807,0.614237,0.0161589,0.602617,0.103884,0.562019,0.529045,0.369513,0.939534,0.128389,0.917416,0.547215,0.0931897,0.939699,0.106564,0.751518,0.823707,0.788668,0.268065,0.478191,0.745477,0.0960837,0.767391,0.011808,0.845489,0.709673,0.276844,0.105376,0.793614,0.801803,0.147168,0.959145,0.599142,0.792952,0.142291,0.294039,0.0456583,0.248647,0.500734,0.822139,0.619714,0.7613,0.737704,0.0970165,0.0778975,0.936759,0.677838,0.341646,0.339302,0.698809,0.430534,0.8141,0.133532,0.224055,0.669161,0.567342,0.463362,0.957754,0.241496,0.825109,0.257037,0.695086,0.108389,0.56194,0.0442795,0.607656,0.638069,0.994799,0.71623,0.304599,0.676231,0.0634776,0.751222,0.918455,0.261806,0.165458,0.289511,0.116041,0.266462,0.753497,0.052892,0.887356,0.142226,0.156051,0.200099,0.460152,0.456015,0.902633,0.630271,0.634954,0.659823,0.962638,0.132552,0.5734,0.755282,0.955956,0.916277,0.489706,0.102211,0.55155,0.260875,0.312215,0.752565,0.0467752,0.415916,0.619115,0.949654,0.756045,0.592967,0.37416,0.98731,0.65042,0.455757,0.871345,0.155719,0.993725,0.276426,0.331092,0.396413,0.282446,0.446865,0.527796,0.994944,0.457548,0.0300659,0.834911,0.336054,0.2667,0.269944,0.99352,0.537238,0.724649,0.664592,0.710051,0.106359,0.096956,0.614913,0.230522,0.600398,0.87232,0.680123,0.56081,0.572531,0.141865,0.981316,0.16588,0.04796,0.965955,0.721629,0.654925,0.913754,0.575299,0.877655,0.736656,0.784956,0.899299,0.774102,0.0259968,0.140472,0.502812,0.813926,0.986282,0.572066,0.146768,0.207515,0.350362,0.624399,0.366542,0.56282,0.242773,0.0924197,0.234127,0.711812,0.191757,0.704856,0.19288,0.533413,0.884607,0.639931,0.12137,0.609065,0.88916,0.600495,0.765591,0.12664,0.414225,0.305979,0.641523,0.306496,0.940263,0.361865,0.742377,0.205513,0.843892,0.0459448,0.272487,0.74495,0.431429,0.794312,0.184629,0.962806,0.145621,0.947141,0.783257,0.054633,0.0264904,0.179179,0.317261,0.978896,0.722009,0.722352,0.437067,0.0744702,0.266998,0.523484,0.83783,0.849871,0.0878828,0.35102,0.409045,0.089639,0.18315,0.303351,0.218266,0.647854,0.411938,0.0732396,0.754773,|0.982537,0.459638,0.292167,0.353243,0.98489,0.978581,0.682419,0.863963,0.14245,0.662699,0.545437,0.390616,0.0934319,0.326624,0.38399,0.613514,0.796811,0.103365,0.839072,0.623948,0.577738,0.0199169,0.351818,0.725819,0.267113,0.190864,0.441769,0.5154,0.962531,0.93532,0.714103,0.814196,0.502157,0.948303,0.48651,0.545681,0.801719,0.261352,0.0524955,0.280124,0.652563,0.448163,0.614679,0.0719767,0.507206,0.917655,0.67802,0.850356,0.579073,0.0746051,0.907363,0.092335,0.029483,0.974384,0.620976,0.746981,0.0343561,0.468413,0.0406912,0.259557,0.132517,0.171619,0.803334,0.821319,0.67137,0.420609,0.392902,0.396539,0.0533704,0.382333,0.379577,0.0394223,0.774429,0.656453,0.510611,0.472371,0.720452,0.309187,0.886058,0.589728,0.163523,0.97281,0.913097,0.383234,0.342135,0.405888,0.364607,0.553441,0.971302,0.591774,0.824555,0.499176,0.268809,0.296131,0.462774,0.284837,0.220208,0.757996,0.463456,0.948987,0.258287,0.849987,0.388214,0.483003,0.959599,0.904348,0.263756,0.877534,0.521638,0.304087,0.971807,0.0893846,0.285246,0.315395,0.603736,0.220172,0.327911,0.382923,0.103784,0.873807,0.536205,0.549164,0.188407,0.615443,0.861265,0.852755,0.785205,0.922714,0.879659,0.453833,0.182258,0.723215,0.302084,0.958062,0.72916,0.350909,0.591387,0.479158,0.0995282,0.0794036,0.378807,0.495272,0.487101,0.577075,0.627284,0.752372,0.954744,0.734595,0.713219,0.874581,0.425544,0.714068,0.106294,0.930987,0.45474,0.360485,0.775358,0.94556,0.596787,0.703938,0.240815,0.545394,0.609839,0.999043,0.775839,0.392226,0.988023,0.097738,0.960951,0.384313,0.544833,0.704449,0.291786,0.656321,0.72261,0.588406,0.12214,0.706414,0.840234,0.633702,0.74221,0.365648,0.0898706,0.786769,0.518301,0.697809,0.456078,0.244781,0.404312,0.637924,0.130166,0.839963,0.954754,0.250862,0.282981,0.0630729,0.326658,0.854306,0.224367,0.596167,0.162492,0.45531,0.262042,0.314106,0.266917,0.531547,0.722374,0.764689,0.303941,0.704874,0.454576,0.35399,0.523033,0.59056,0.879393,0.26873,0.0754175,0.108602,0.719468,0.84055,0.323569,0.228471,0.714433,0.00284243,0.790842,0.708532,0.660817,0.640357,0.953137,0.603078,0.131004,0.0970706,0.0966914,0.915597,0.581795,0.781605,0.435337,0.229941,0.244072,0.68165,0.449009,0.883383,0.420364,0.622653,0.736885,0.263021,0.488326,0.155004,0.728124,0.547827,0.303738,0.88548,0.765825,0.0884781,0.916299,0.938663,0.868209,0.621611,0.0427982,0.527202,0.64744,0.122889,0.573768,0.309886,0.297215,0.788601,0.284822,0.79436,0.447597,0.946853,0.265271,0.11225,0.93008,0.454659,0.162582,0.787498,0.984417,0.669977,0.00436884,0.520372,0.902759,0.416822,0.971867,0.858985,0.705076,0.646314,0.982478,0.909931,0.950797,0.870775,0.459615,0.0437466,0.0388495,0.349631,0.863437,0.325947,0.701228,0.940472,0.549002,0.838468,0.468818,0.610746,0.106209,0.297123,0.392739,0.11536,0.494948,0.231854,0.133854,0.572678,0.540395,0.473817,0.741852,0.745572,0.320531,0.531249,0.887843,0.10448,0.81562,0.713292,0.36713,0.234791,0.9555,0.044109,0.426376,0.239451,0.275882,0.490849,0.443746,0.595118,0.83741,0.988467,0.595552,0.924533,0.783709,0.138824,0.962936,0.879252,0.199154,0.81527,0.577695,0.492378,0.882032,0.575971,0.378462,0.665199,0.956669,0.381682,0.411807,0.642083,0.775187,0.349814,0.317017,0.397614,0.115359,0.325791,0.828633,0.952202,0.20908,0.24538,0.402625,0.712509,0.631476,0.406893,0.40412,0.695955,0.571566,0.144188,0.172642,0.276297,0.610203,0.716824,0.923404,0.234162,0.955238,0.839533,0.0620288,0.586359,0.0675164,0.127346,0.742849,0.554102,0.892936,0.508046,0.610412,0.272816,0.0988795,0.896371,0.175169,0.270283,0.991192,0.730696,0.524263,0.236062,0.965742,0.39384,0.347339,0.952281,0.490864,0.346334,0.942735,0.915048,0.649135,0.906154,0.177733,0.826642,0.639059,0.0220876,0.503231,0.91902,0.974578,0.691215,0.493515,0.235295,0.992574,0.657162,0.472281,0.386682,0.62778,0.514479,0.796927,0.640141,0.817073,0.382719,0.31475,0.28856,0.738911,0.372228,0.439712,0.413604,0.822673,0.784168,0.569566,0.848089,0.961919,0.359559,0.757791,0.591108,0.168593,0.769764,0.891674,0.611746,0.839803,0.0869669,0.015402,0.756019,0.617731,0.586338,0.126279,0.994305,0.19282,0.0362635,0.0665628,0.242518,0.737166,0.658375,0.78192,0.884728,0.529523,0.170374,0.299483,0.55504,0.095966,0.917583,0.035473,0.520291,0.572306,0.333846,0.113327,0.246718,0.430241,0.477241,0.599479,0.187167,0.013394,0.486679,0.749538,0.0653809,0.510132,0.137817,0.472593,0.0612077,0.977218,0.952961,0.32694,0.413873,0.301443,0.234981,0.981962,0.970349,0.54862,0.270285,0.827539,0.398002,0.798369,0.647802,0.727664,0.42005,0.918326,0.533303,0.750899,0.200416,0.729508,0.397328,0.157496,0.995362,0.585794,0.242194,0.14782,0.517017,0.697544,0.616323,0.282664,0.126747,0.920634,0.256666,0.73344,0.159314,0.996784,0.427577,0.264545,0.69621,0.105546,0.982163,0.544923,0.95169,0.935275,0.006558,0.458214,0.684182,0.974214,0.195719,0.747319,0.251862,0.792219,0.298305,0.588915,0.837714,0.0346202,0.460824,0.150407,0.902086,0.0518922,0.273575,0.255332,0.944722,0.45414,0.387373,0.180079,0.156739,0.167701,0.995492,0.106682,0.474124,0.686277,0.339548,0.807176,0.367378,0.837948,0.501462,0.145322,0.181878,0.105567,0.883607,0.649268,0.755173,0.581634,0.814835,0.673884,0.789667,0.772429,0.778151,0.337653,0.962656,0.35148,0.783808,0.406197,0.885484,0.490242,0.783417,0.0538406,0.882303,0.293579,0.9684,0.0199772,0.0111924,0.531087,0.836689,0.959483,0.766178,0.204347,0.886613,0.733334,0.866037,0.263809,0.770321,0.155847,0.625062,0.768002,0.549273,0.808052,0.162743,0.844518,0.505956,0.287012,0.77923,0.851025,0.891733,0.810669,0.756079,0.652225,0.13508,0.964604,0.835348,0.19302,0.760373,0.0367814,0.0455249,0.0401694,0.46528,0.283928,0.181258,0.0415172,0.662883,0.560104,0.135242,0.0203754,0.571719,0.539793,0.223806,0.12489,0.877221,0.207631,0.3587,0.469983,0.432869,0.0507587,0.743414,0.936169,0.637922,0.0721084,0.41246,0.242107,0.0300898,0.0048542,0.835867,0.419211,0.469954,0.437437,0.991349,0.257211,0.44644,0.587334,0.0699562,0.270996,0.0306947,0.371172,0.372881,0.581656,0.2301,0.263299,0.142585,0.955897,0.211946,0.286442,0.0363541,0.442972,0.241849,0.263071,0.265121,0.493945,0.620056,0.0515431,0.20842,0.0856822,0.321321,0.489551,0.603971,0.918392,0.670202,0.127304,0.463765,0.484692,0.739312,0.320002,0.684463,0.742603,0.196803,0.932597,0.702444,0.0214031,0.705087,0.937372,0.311835,0.527398,0.0519521,0.588657,0.931076,0.759172,0.397295,0.912313,0.936689,0.103481,0.993678,0.027395,0.939799,0.637453,0.458254,0.146811,0.280645,0.0185476,0.938766,0.71544,0.667778,0.786418,0.0253116,0.365764,0.0699624,0.00131577,0.576653,0.172153,0.549941,0.861869,0.691602,0.964999,0.51785,0.462473,0.706547,0.100443,0.381639,0.508662,0.856991,0.558949,0.403017,0.0865353,0.832389,0.698556,0.418595,0.944017,0.648804,0.500343,0.837683,0.802508,0.998677,0.362568,0.174873,0.998026,0.688178,0.43321,0.92112,0.877877,0.344493,0.906014,0.64921,0.594033,0.843418,0.357287,0.22658,0.162708,0.624273,0.99327,0.796873,0.676705,0.394983,0.243085,0.461566,0.285115,0.343175,0.169869,0.140476,0.0119408,0.475145,0.0842761,0.685542,0.366865,0.487744,0.352512,0.26553,0.170781,0.928873,0.212947,0.735293,0.50902,0.30924,0.20133,0.0113212,0.163757,0.926775,0.737158,0.61746,0.6668,0.426482,0.00935113,0.477104,0.951317,0.195185,0.0999733,0.343106,0.316095,0.0442298,0.887528,0.0762148,0.29285,0.922353,0.735085,0.246095,0.199407,0.962295,0.500302,0.658932,0.800663,0.356733,0.995636,0.888604,0.453979,0.459002,0.363561,0.147446,0.41604,0.127769,0.69178,0.964597,0.811332,0.247617,0.908702,0.673954,0.974503,0.230385,0.572814,0.0739461,0.417843,0.834925,0.736882,0.0473132,0.938267,0.253227,0.908859,0.799041,0.00953239,0.88328,0.0692225,0.907279,0.805737,0.286656,0.356782,0.871188,0.941246,0.633877,0.103531,0.031397,0.80146,0.282683,0.217086,0.492513,0.124486,0.267531,0.145476,0.0946077,0.416587,0.420428,0.303588,0.890511,0.657757,0.591688,0.638724,0.188046,0.320895,0.118067,0.209859,0.101333,0.00829303,0.103027,0.244472,0.800601,0.0723578,0.0167903,0.938801,0.123512,0.41411,0.689368,0.867473,0.882376,0.570337,0.664603,0.348868,0.62889,0.919742,0.896813,0.230647,0.597007,0.374201,0.437497,0.89265,0.209347,0.787543,0.795381,0.241869,0.876926,0.0503266,0.538181,0.669099,0.588864,0.488072,0.0682659,0.123682,0.155781,0.788396,0.737923,0.929448,0.211069,0.242793,0.368346,0.571572,0.433026,0.00602555,0.781676,0.400238,0.759698,0.164232,0.209821,0.784921,0.241169,0.616646,0.733365,0.704543,0.875955,0.428382,0.11213,0.991101,0.0881005,0.329789,0.588528,0.0481407,0.720793,0.527777,0.595196,0.257994,0.35194,0.510135,0.497221,0.72187,0.706931,0.614186,0.31149,0.228291,0.663659,0.0532548,0.872016,0.902747,0.750579,0.822845,0.644094,0.641559,0.20792,0.747078,0.774868,0.991098,0.150761,0.478061,0.775742,0.83785,0.0568424,0.533045,0.979182,0.0914308,0.520747,0.697881,0.274194,0.476113,0.439748,0.755352,0.750032,0.175927,0.772962,0.824083,0.150832,0.900208,0.608676,0.156208,0.0901307,0.358178,0.24344,0.406412,0.779708,0.306358,0.217495,0.0992444,0.40307,0.8876,0.412607,0.980365,0.331754,0.308476,0.195325,0.464849,0.218725,0.0434092,0.298386,0.924499,0.628679,|0.659235,0.13225,0.842178,0.35216,0.327075,0.628886,0.724574,0.962024,0.440644,0.643,0.870382,0.869993,0.0545455,0.456186,0.777682,0.580189,0.0347765,0.337716,0.49093,0.399438,0.154949,0.509193,0.391581,0.96768,0.913102,0.272991,0.976531,0.0939309,0.598571,0.091208,0.569334,0.564581,0.27442,0.48605,0.478536,0.338675,0.6314,0.398586,0.12881,0.607264,0.404338,0.859517,0.142929,0.275751,0.558508,0.59329,0.48862,0.316068,0.258283,0.489864,0.0642047,0.105267,0.0689287,0.61724,0.105689,0.304211,0.163315,0.56383,0.660313,0.0245942,0.602588,0.759048,0.162759,0.344264,0.739514,0.494948,0.819333,0.891282,0.0223597,0.125895,0.289383,0.946679,0.634935,0.142516,0.0531141,0.67604,0.154944,0.721578,0.2011,0.391763,0.519982,0.500497,0.82154,0.0981583,0.625929,0.782212,0.744692,0.861556,0.416589,0.784669,0.397868,0.555174,0.958186,0.219841,0.419563,0.102182,0.269923,0.640521,0.74191,0.0261661,0.122681,0.734221,0.60472,0.141532,0.531434,0.690866,0.625915,0.811278,0.554881,0.440664,0.607485,0.559502,0.783041,0.402619,0.448251,0.00639194,0.577663,0.547368,0.809033,0.266899,0.870524,0.515621,0.408457,0.378982,0.963457,0.605289,0.726491,0.71343,0.280757,0.828249,0.739392,0.347654,0.765425,0.373803,0.454209,0.176608,0.243302,0.480718,0.400956,0.312088,0.331452,0.0659329,0.647696,0.919462,0.306187,0.62812,0.870263,0.910693,0.069596,0.375277,0.610574,0.843238,0.678041,0.541242,0.808871,0.402117,0.16801,0.203812,0.735568,0.165056,0.752685,0.877194,0.644201,0.508558,0.433184,0.00558561,0.697315,0.937002,0.372883,0.365135,0.297234,0.234213,0.820552,0.373384,0.22862,0.762564,0.0238471,0.81118,0.507496,0.859653,0.700397,0.0089103,0.914161,0.782072,0.837909,0.574493,0.134649,0.0163336,0.724914,0.15591,0.491202,0.785723,0.124301,0.961895,0.298771,0.902411,0.8078,0.17043,0.853591,0.275173,0.16445,0.69545,0.747073,0.446055,0.102893,0.0711215,0.226623,0.769062,0.825365,0.769607,0.134617,0.958556,0.402842,0.89691,0.249696,0.322789,0.530801,0.721489,0.44464,0.617679,0.311165,0.158886,0.282619,0.688214,0.504282,0.729843,0.932849,0.0835465,0.0537754,0.595008,0.245864,0.693304,0.680509,0.0144497,0.508146,0.87419,0.638429,0.937057,0.698695,0.232084,0.874468,0.0345449,0.42792,0.269374,0.243488,0.545964,0.523128,0.956264,0.774316,0.570879,0.406684,0.761909,0.892832,0.425189,0.287203,0.698449,0.836294,0.742269,0.0536363,0.107322,0.412325,0.0289524,0.281295,0.855413,0.45815,0.655986,0.136634,0.0865621,0.971071,0.920249,0.566981,0.0243713,0.575138,0.0922326,0.459951,0.537944,0.0467708,0.103027,0.661071,0.172523,0.397362,0.195609,0.0920292,0.547251,0.0854279,0.432008,0.0743082,0.028668,0.126548,0.183752,0.062272,0.94653,0.705834,0.55044,0.962127,0.22109,0.238625,0.202612,0.754506,0.14994,0.344217,0.0261672,0.22786,0.269482,0.65679,0.133738,0.962595,0.75869,0.0913802,0.955802,0.00756246,0.333059,0.0910197,0.509513,0.26591,0.0207295,0.409537,0.0580973,0.224286,0.110239,0.00482905,0.401221,0.263092,0.298476,0.252495,0.994433,0.6836,0.73116,0.615514,0.892556,0.862336,0.48292,0.680068,0.860316,0.840513,0.0447983,0.815094,0.745596,0.76845,0.549248,0.796984,0.793552,0.126434,0.28481,0.742126,0.679152,0.47401,0.482746,0.879084,0.331988,0.498277,0.178126,0.411343,0.640278,0.750769,0.861137,0.0337113,0.931584,0.651576,0.0932323,0.175397,0.626501,0.399587,0.36914,0.530149,0.530869,0.473646,0.876204,0.396853,0.749355,0.845211,0.533539,0.24455,0.297713,0.75761,0.730722,0.421466,0.511588,0.354065,0.544665,0.409774,0.726772,0.764435,0.459955,0.930704,0.813206,0.0666289,0.871508,0.964256,0.648495,0.290928,0.948623,0.932915,0.765568,0.275841,0.699169,0.436581,0.610818,0.684309,0.435219,0.76193,0.914003,0.219184,0.989989,0.462242,0.559332,0.136472,0.30907,0.234978,0.224173,0.769019,0.925801,0.426765,0.687808,0.963712,0.934654,0.236034,0.0878541,0.301788,0.32775,0.00736541,0.0183797,0.0923235,0.144641,0.523693,0.438661,0.203184,0.647736,0.725694,0.418224,0.501021,0.76033,0.548628,0.588541,0.067714,0.093106,0.730151,0.78398,0.611324,0.768582,0.916898,0.539326,0.109624,0.761344,0.110532,0.235017,0.849955,0.92419,0.433326,0.0739894,0.23604,0.764988,0.728902,0.749939,0.703199,0.866421,0.853383,0.655374,0.329276,0.269816,0.225548,0.237412,0.280606,0.850933,0.150997,0.464994,0.0439233,0.804126,0.772117,0.981271,0.539462,0.427243,0.728827,0.295391,0.613862,0.0625583,0.497024,0.115247,0.660623,0.926732,0.996977,0.495996,0.607885,0.222036,0.628203,0.691878,0.569423,0.753647,0.881635,0.881545,0.166913,0.876187,0.147631,0.654172,0.798672,0.678521,0.91602,0.0753049,0.339919,0.203029,0.702334,0.286748,0.828833,0.32837,0.473551,0.221515,0.53614,0.426603,0.280993,0.263862,0.411855,0.787302,0.461426,0.986781,0.724208,0.0370463,0.973681,0.826454,0.802857,0.404223,0.409279,0.591683,0.898904,0.302403,0.39434,0.91999,0.670474,0.056456,0.970531,0.623342,0.190731,0.365451,0.967935,0.916958,0.579131,0.909868,0.0689731,0.104947,0.370902,0.972832,0.736538,0.341445,0.532174,0.875128,0.937665,0.935007,0.514424,0.922137,0.810265,0.0234982,0.716474,0.692876,0.908703,0.788187,0.9129,0.373958,0.695306,0.644278,0.620866,0.300913,0.706588,0.78287,0.570688,0.62234,0.794575,0.442576,0.0180983,0.397043,0.565771,0.861529,0.730379,0.625318,0.36495,0.373487,0.20352,0.674085,0.950518,0.997598,0.843068,0.202428,0.29743,0.205918,0.258998,0.0680227,0.839229,0.0666443,0.184198,0.329071,0.886369,0.647562,0.569419,0.918344,0.0603666,0.288094,0.797709,0.501334,0.967533,0.768962,0.687998,0.764197,0.61906,0.529267,0.18021,0.512304,0.48537,0.887762,0.162279,0.759512,0.869527,0.967046,0.531761,0.200072,0.668111,0.441282,0.70439,0.477639,0.425761,0.0148095,0.613024,0.565869,0.287955,0.318623,0.784069,0.129141,0.776913,0.308151,0.138881,0.428042,0.0279371,0.194511,0.10946,0.341806,0.180876,0.258433,0.502637,0.486736,0.937816,0.280322,0.201763,0.0552014,0.865692,0.643916,0.775004,0.884817,0.272124,0.724449,0.637823,0.634325,0.685464,0.599112,0.639858,0.372656,0.261631,0.465296,0.278325,0.146546,0.387883,0.390884,0.0846909,0.221298,0.282084,0.478548,0.928053,0.995829,0.958843,0.52481,0.277872,0.0153478,0.197181,0.329964,0.0804071,0.281651,0.850118,0.994628,0.885978,0.701842,0.721721,0.797313,0.402313,0.166595,0.504988,0.935354,0.196929,0.00294626,0.500564,0.607795,0.0827198,0.821317,0.77287,0.0460861,0.627526,0.50583,0.447718,0.797593,0.346257,0.0967499,0.564112,0.0507091,0.753718,0.536556,0.207394,0.182915,0.999495,0.183147,0.0606961,0.570394,0.328381,0.430264,0.950621,0.42781,0.496594,0.599021,0.327649,0.338426,0.505168,0.155673,0.248443,0.726493,0.977992,0.876612,0.629801,0.966418,0.439741,0.0778427,0.387995,0.213087,0.969241,0.452236,0.971629,0.574537,0.875892,0.136562,0.832504,0.963627,0.315882,0.602611,0.173303,0.930334,0.187109,0.0204253,0.109637,0.737566,0.00650764,0.58556,0.861238,0.290946,0.195948,0.993414,0.66351,0.221839,0.750741,0.660099,0.493451,0.962723,0.790864,0.651407,0.721033,0.575751,0.277735,0.645897,0.984339,0.352059,0.888237,0.554252,0.959556,0.858268,0.687827,0.974225,0.699429,0.442416,0.463022,0.631857,0.692156,0.79785,0.490313,0.561505,0.467397,0.669499,0.274814,0.789683,0.739371,0.700595,0.544726,0.55591,0.310545,0.666693,0.296081,0.875682,0.618589,0.605348,0.201705,0.381909,0.772229,0.272576,0.807875,0.691537,0.164262,0.725466,0.856398,0.2513,0.22553,0.665607,0.0384039,0.512764,0.134458,0.430388,0.866526,0.14171,0.089453,0.636744,0.595859,0.824093,0.393486,0.0674745,0.63353,0.664515,0.891102,0.951248,0.244336,0.92169,0.693342,0.233048,0.719422,0.782534,0.0263576,0.00943911,0.728199,0.800291,0.649711,0.965568,0.741474,0.977305,0.815713,0.552969,0.71125,0.748544,0.327473,0.767131,0.609545,0.355619,0.339566,0.272068,0.41534,0.645799,0.883051,0.902208,0.604183,0.972299,0.785337,0.523145,0.679839,0.398596,0.397081,0.698412,0.754217,0.207835,0.829063,0.969576,0.495906,0.815854,0.978242,0.318208,0.857604,0.539515,0.054422,0.383359,0.782778,0.164466,0.554451,0.171066,0.4924,0.343618,0.370864,0.094354,0.730063,0.242091,0.564308,0.944634,0.275849,0.966762,0.0867407,0.396626,0.312996,0.618007,0.419713,0.25252,0.405156,0.263564,0.813502,0.468293,0.0713807,0.364814,0.548539,0.960191,0.349076,0.165081,0.164126,0.96099,0.159513,0.850316,0.486949,0.781066,0.580051,0.042272,0.333819,0.251446,0.369593,0.369606,0.511246,0.188313,0.901133,0.390148,0.771438,0.569287,0.082639,0.373517,0.0294539,0.647606,0.609614,0.56495,0.753498,0.721182,0.34959,0.622019,0.50497,0.804139,0.332043,0.830606,0.0230022,0.0594099,0.609854,0.169917,0.799038,0.256241,0.828497,0.397904,0.0971104,0.286314,0.841221,0.40465,0.369545,0.538415,0.192426,0.901249,0.973302,0.714143,0.485254,0.783789,0.240102,0.149827,0.908667,0.353633,0.229992,0.625113,0.155338,0.530982,0.57052,0.143599,0.546234,0.905369,0.635568,0.232171,0.328119,0.819171,0.0342425,0.266088,0.79567,0.798844,0.405239,0.0737534,0.322701,0.117727,0.922602,0.046559,0.989645,0.373102,0.256904,0.149092,0.285883,0.151852,0.0909353,0.0471981,0.272445,0.810173,0.30762,0.108903,0.232505,0.377172,0.860146,0.803126,0.316026,0.950209,0.213446,0.148886,0.45193,0.0323106,0.0891442,0.222441,0.249585,0.758383,|0.706678,0.0256544,0.394794,0.779425,0.111211,0.0745287,0.484007,0.444375,0.123481,0.897647,0.385298,0.0410919,0.366718,0.145893,0.539825,0.422391,0.63899,0.723881,0.0976629,0.016673,0.182918,0.163411,0.767661,0.0202467,0.586492,0.895159,0.799622,0.804669,0.323832,0.0551914,0.0108544,0.818747,0.000693679,0.410656,0.732529,0.16431,0.505802,0.0688255,0.491684,0.834309,0.538432,0.673342,0.348545,0.747189,0.137762,0.339148,0.645627,0.429251,0.226014,0.358476,0.819163,0.318676,0.802663,0.717117,0.310071,0.65476,0.961752,0.141028,0.832565,0.0148327,0.774699,0.581299,0.385063,0.60007,0.731984,0.699911,0.450842,0.600474,0.193816,0.532625,0.931235,0.511576,0.580436,0.613829,0.744971,0.256171,0.468664,0.681908,0.898217,0.0553777,0.933221,0.153394,0.176353,0.408232,0.0509647,0.972813,0.286909,0.193929,0.458228,0.781727,0.138373,0.832279,0.117512,0.438578,0.258402,0.950131,0.968092,0.103434,0.891519,0.0335171,0.53298,0.336922,0.606109,0.264626,0.851107,0.568972,0.5917,0.46084,0.267891,0.98854,0.867168,0.0971166,0.183582,0.808809,0.790115,0.622954,0.037536,0.593332,0.0179607,0.594055,0.157165,0.70729,0.251344,0.275089,0.209991,0.822679,0.507969,0.833286,0.0384343,0.935474,0.411971,0.107555,0.688149,0.56669,0.967901,0.196837,0.911068,0.283953,0.802045,0.110533,0.73255,0.530587,0.320994,0.478357,0.543089,0.113859,0.762127,0.648436,0.0512377,0.333988,0.463533,0.952715,0.701332,0.611887,0.768516,0.244509,0.0789473,0.108177,0.188186,0.720036,0.141381,0.375715,0.084895,0.425943,0.539754,0.598512,0.925066,0.436293,0.101531,0.562536,0.724319,0.800544,0.0711613,0.960519,0.336405,0.618599,0.330785,0.393177,0.733291,0.678643,0.68008,0.46092,0.46782,0.82905,0.754827,0.780079,0.981748,0.91134,0.509211,0.431463,0.416405,0.966902,0.326644,0.779474,0.110621,0.375533,0.967276,0.399276,0.0692975,0.279687,0.833293,0.0480802,0.77182,0.208023,0.705061,0.146145,0.13258,0.820587,0.748854,0.953006,0.288788,0.495472,0.815859,0.48305,0.607223,0.07019,0.193857,0.905527,0.0116187,0.319419,0.783469,0.807619,0.226102,0.114271,0.035431,0.666533,0.357149,0.257219,0.375458,0.256642,0.693113,0.976836,0.483076,0.508648,0.570105,0.691445,0.22446,0.234151,0.589569,0.87656,0.0767974,0.596897,0.369943,0.376158,0.236415,0.783656,0.247177,0.933718,0.959892,0.0871264,0.0165774,0.596521,0.684031,0.423576,0.307692,0.797286,0.203024,0.263497,0.447386,0.729508,0.783931,0.87472,0.985193,0.892137,0.20332,0.81736,0.265222,0.418666,0.0163238,0.438578,0.620944,0.707314,0.566865,0.765436,0.272447,0.640866,0.694697,0.349439,0.377765,0.962292,0.334463,0.297224,0.316088,0.424563,0.139769,0.796866,0.245755,0.0074988,0.675689,0.258347,0.821881,0.80099,0.27316,0.977742,0.0572511,0.667339,0.253783,0.824943,0.979762,0.0647925,0.558338,0.357677,0.509118,0.707005,0.482413,0.765865,0.89652,0.828591,0.0994714,0.784549,0.908934,0.902786,0.683593,0.78666,0.33642,0.347047,0.580056,0.675899,0.461535,0.660848,0.653012,0.470338,0.178584,0.044274,0.602985,0.213295,0.519024,0.369239,0.407453,0.948125,0.998019,0.0285383,0.976847,0.0507586,0.553796,0.44718,0.345474,0.633193,0.0773293,0.793575,0.403801,0.55948,0.371063,0.104779,0.477727,0.359744,0.825487,0.996988,0.080878,0.97471,0.595677,0.515333,0.767693,0.739169,0.136591,0.894024,0.387798,0.448335,0.224939,0.622892,0.920497,0.59985,0.433994,0.872819,0.777772,0.550773,0.0174733,0.560289,0.0140447,0.0821446,0.978681,0.854413,0.801114,0.920831,0.379697,0.641228,0.154812,0.0907466,0.199369,0.00755662,0.816819,0.665763,0.63274,0.343033,0.329166,0.200754,0.995126,0.295595,0.0514275,0.214709,0.169812,0.268587,0.506155,0.0504031,0.513798,0.360386,0.486238,0.469456,0.00379527,0.540905,0.999017,0.889883,0.702093,0.26602,0.582402,0.265254,0.794173,0.717963,0.339294,0.103157,0.909838,0.669225,0.898301,0.67635,0.498248,0.683567,0.843731,0.252433,0.460367,0.961643,0.00883508,0.858115,0.938446,0.401548,0.328521,0.958594,0.653484,0.394995,0.449838,0.231803,0.704451,0.710233,0.015007,0.35187,0.133142,0.478273,0.575335,0.0266854,0.751291,0.45972,0.422171,0.894579,0.841733,0.129855,0.704507,0.635064,0.148327,0.716019,0.92504,0.48595,0.846001,0.73395,0.746516,0.293887,0.186263,0.213481,0.986718,0.270736,0.935919,0.092764,0.333471,0.332773,0.958325,0.242189,0.293102,0.556625,0.717305,0.64512,0.0968251,0.537515,0.494532,0.677399,0.105403,0.0735978,0.707651,0.819917,0.262739,0.962736,0.109094,0.500873,0.402032,0.682619,0.424365,0.940842,0.52189,0.146073,0.00431991,0.0340564,0.2846,0.568599,0.541546,0.693482,0.464993,0.109616,0.843578,0.310188,0.298639,0.333391,0.0436946,0.818231,0.969888,0.762284,0.168632,0.152781,0.517726,0.625195,0.461628,0.492,0.69716,0.156104,0.671552,0.983777,0.853209,0.44602,0.154832,0.388981,0.366711,0.913974,0.410744,0.421639,0.136504,0.500831,0.997249,0.118583,0.530092,0.717276,0.608906,0.832996,0.934845,0.100154,0.189969,0.786242,0.904351,0.224926,0.478085,0.731592,0.447271,0.0846438,0.598253,0.752797,0.0182865,0.574756,0.735143,0.692801,0.0952677,0.107678,0.613526,0.397675,0.820458,0.409811,0.695652,0.566282,0.573386,0.578068,0.522003,0.283546,0.612,0.996886,0.57229,0.635206,0.544906,0.244055,0.946988,0.347358,0.779603,0.358235,0.191135,0.48526,0.218731,0.104076,0.456531,0.0179229,0.750352,0.218036,0.860624,0.978988,0.98377,0.555834,0.723496,0.140223,0.158212,0.308586,0.442151,0.35271,0.543548,0.657817,0.918532,0.598388,0.123426,0.655949,0.922076,0.190875,0.315026,0.618708,0.0791718,0.637886,0.345393,0.533422,0.48241,0.00432032,0.870764,0.776443,0.686631,0.817241,0.231821,0.446393,0.195961,0.497317,0.981161,0.925056,0.0746669,0.250368,0.369185,0.141924,0.333982,0.36285,0.422231,0.441085,0.333366,0.792469,0.326826,0.962359,0.556865,0.356653,0.699851,0.522828,0.651626,0.13171,0.83333,0.369846,0.919924,0.853524,0.249978,0.832137,0.132927,0.44174,0.285986,0.466821,0.880469,0.589267,0.205007,0.808268,0.281958,0.157794,0.926168,0.286413,0.13074,0.427422,0.0338798,0.509445,0.875955,0.552959,0.307639,0.906924,0.990797,0.600454,0.233059,0.409699,0.688832,0.365449,0.878077,0.314453,0.0938471,0.750517,0.577039,0.169982,0.0999514,0.442369,0.00794488,0.100885,0.908586,0.742287,0.653587,0.263376,0.781939,0.752276,0.551812,0.320835,0.87165,0.68421,0.591932,0.927743,0.147528,0.982931,0.335563,0.977758,0.230601,0.920368,0.822448,0.317653,0.539352,0.854058,0.389265,0.384701,0.620201,0.659312,0.573994,0.323493,0.566273,0.444681,0.258351,0.781225,0.354975,0.288334,0.117609,0.950267,0.3628,0.330334,0.253644,0.923276,0.31575,0.807206,0.114803,0.482972,0.432497,0.186219,0.42991,0.938729,0.2834,0.818077,0.727427,0.154525,0.0794888,0.0251917,0.193989,0.051734,0.713946,0.766631,0.670087,0.552231,0.586469,0.752081,0.779571,0.997613,0.354911,0.598949,0.381786,0.996716,0.17593,0.0779918,0.449192,0.829253,0.367667,0.0438232,0.0101609,0.311815,0.887427,0.621503,0.0920091,0.636537,0.888753,0.39231,0.226871,0.482582,0.23763,0.0158849,0.732438,0.634007,0.814554,0.0946054,0.393725,0.368115,0.787043,0.234152,0.593016,0.0464898,0.682952,0.0802917,0.743789,0.954967,0.239741,0.744275,0.907399,0.417829,0.259142,0.666949,0.56155,0.281179,0.255579,0.690287,0.465161,0.96642,0.744985,0.904554,0.0658337,0.304004,0.726647,0.0924994,0.948076,0.625772,0.850153,0.270594,0.897186,0.928283,0.862911,0.593635,0.535491,0.945464,0.644392,0.13887,0.49068,0.0434517,0.676391,0.963494,0.404337,0.0151386,0.250517,0.884258,0.828409,0.687823,0.045997,0.751778,0.89197,0.0535384,0.903669,0.980419,0.00586873,0.657508,0.511014,0.285341,0.0395158,0.461042,0.716031,0.149713,0.860765,0.689302,0.351192,0.28077,0.450648,0.408681,0.981338,0.230247,0.977868,0.627452,0.611426,0.921505,0.392159,0.765948,0.28243,0.361049,0.508965,0.866549,0.968519,0.383968,0.163655,0.152306,0.0830215,0.39618,0.0925003,0.693174,0.322543,0.26008,0.499971,0.414899,0.158576,0.666508,0.549797,0.876366,0.882997,0.247293,0.321103,0.383066,0.742116,0.0671466,0.380168,0.617639,0.226354,0.914629,0.267646,0.481432,0.380768,0.835544,0.160726,0.847661,0.265232,0.142326,0.605009,0.383221,0.783203,0.239664,0.0671836,0.0174977,0.126889,0.835661,0.261824,0.276847,0.355728,0.855141,0.51978,0.766323,0.453594,0.645422,0.179206,0.282458,0.667108,0.876042,0.123329,0.737192,0.302324,0.771283,0.629109,0.195399,0.812788,0.382232,0.00992769,0.69533,0.0904227,0.167299,0.421794,0.100187,0.978816,0.92861,0.60434,0.00440514,0.0667829,0.17958,0.767242,0.565948,0.523546,0.106168,0.364889,0.365894,0.387383,0.381698,0.538519,0.506027,0.183603,0.964842,0.450656,0.148143,0.414547,0.900856,0.243437,0.820633,0.295861,0.710948,0.0506148,0.0715946,0.515512,0.183833,0.607388,0.912417,0.802127,0.754023,0.411072,0.161501,0.293136,0.517874,0.405377,0.611184,0.691539,0.762151,0.103434,0.492445,0.428798,0.607258,0.376211,0.249439,0.363155,0.349717,0.165181,0.233357,0.189216,0.422655,0.890843,0.437828,0.466671,0.737548,0.204783,0.345225,0.0881151,0.533304,0.219401,0.347175,0.160671,0.903332,0.649542,0.676218,0.687346,0.89603,0.171521,0.565437,0.707671,0.618689,0.926417,0.380399,0.120192,0.5513,0.547549,0.65046,0.0470624,0.971108,0.03527,0.79116,0.778193,0.913221,0.716567,0.260804,0.734559,0.854401,|0.753023,0.435501,0.468399,0.878816,0.459337,0.620755,0.0843832,0.890791,0.810238,0.242578,0.607737,0.22498,0.428338,0.947534,0.665569,0.629282,0.90946,0.939261,0.624894,0.359522,0.937122,0.449406,0.845972,0.995814,0.397345,0.140702,0.547291,0.427019,0.669526,0.589432,0.978815,0.834308,0.714633,0.321284,0.756724,0.426008,0.996347,0.262582,0.778363,0.530291,0.459947,0.130493,0.021536,0.74755,0.784684,0.0608319,0.653201,0.618561,0.0592712,0.685942,0.125506,0.802568,0.540658,0.475962,0.384219,0.117356,0.442946,0.339446,0.949395,0.61297,0.551816,0.130304,0.261079,0.774251,0.332312,0.387206,0.196415,0.676357,0.243123,0.354621,0.907971,0.292764,0.773813,0.706393,0.756254,0.592186,0.333313,0.220375,0.0343569,0.438923,0.980681,0.188219,0.439079,0.695117,0.901608,0.489843,0.629738,0.722977,0.677635,0.186602,0.259877,0.461327,0.588668,0.151405,0.513186,0.634197,0.0171219,0.304447,0.209655,0.840695,0.84478,0.000647426,0.519981,0.848593,0.22516,0.238609,0.683176,0.457376,0.500541,0.0372321,0.642473,0.109324,0.337781,0.921642,0.214203,0.696485,0.278429,0.141936,0.319258,0.849066,0.459608,0.0879575,0.144673,0.87984,0.796664,0.478286,0.864533,0.81236,0.256122,0.72302,0.480558,0.401183,0.765176,0.754095,0.228931,0.665801,0.244903,0.843227,0.286901,0.0723178,0.532711,0.724768,0.145118,0.844676,0.6253,0.163649,0.186702,0.631803,0.764277,0.959087,0.0134082,0.924469,0.659781,0.282681,0.350472,0.997275,0.182195,0.769867,0.491336,0.219007,0.695917,0.480369,0.760982,0.990427,0.31342,0.588534,0.831556,0.460215,0.12215,0.483589,0.284509,0.450817,0.0727191,0.193588,0.663663,0.929748,0.770781,0.358865,0.442521,0.58147,0.526996,0.945385,0.100698,0.0337504,0.982105,0.498922,0.522498,0.614193,0.606589,0.144382,0.115608,0.331725,0.467256,0.581493,0.315508,0.668841,0.377696,0.985769,0.0508682,0.886048,0.802991,0.143077,0.247106,0.105299,0.162186,0.204082,0.231404,0.272694,0.800313,0.703091,0.64102,0.580007,0.860543,0.0660363,0.563759,0.621794,0.573554,0.261666,0.594719,0.68293,0.9108,0.540042,0.480179,0.0570874,0.158806,0.928838,0.648117,0.702035,0.0052616,0.0593762,0.397242,0.211066,0.676358,0.385961,0.58705,0.745276,0.124881,0.683585,0.240211,0.626032,0.486436,0.946818,0.607975,0.799914,0.644127,0.894335,0.26817,0.990582,0.0132627,0.210544,0.842795,0.597609,0.654215,0.106222,0.91251,0.213395,0.0916662,0.294399,0.712637,0.266191,0.292157,0.56758,0.69222,0.254522,0.926442,0.57954,0.91128,0.235741,0.147558,0.935799,0.594802,0.20621,0.876356,0.635822,0.665134,0.714525,0.226449,0.54295,0.961346,0.908437,0.842956,0.323151,0.315144,0.956561,0.729765,0.0746502,0.421002,0.894278,0.18123,0.34727,0.894133,0.376493,0.135028,0.136371,0.608219,0.0902439,0.407186,0.546435,0.56233,0.668356,0.269738,0.845876,0.833527,0.132306,0.0450364,0.166145,0.483648,0.440029,0.791152,0.336895,0.284642,0.151036,0.473567,0.977789,0.261601,0.868216,0.438387,0.410987,0.483909,0.984698,0.780691,0.755619,0.629366,0.23993,0.317417,0.995131,0.602773,0.622334,0.549388,0.435965,0.375363,0.428385,0.80148,0.435093,0.773585,0.89941,0.0115397,0.594623,0.168265,0.966216,0.973903,0.933814,0.137514,0.156633,0.59889,0.386763,0.0717491,0.303827,0.712465,0.777835,0.68033,0.705663,0.335781,0.589503,0.0405784,0.705248,0.716063,0.172121,0.0329987,0.457995,0.38723,0.469481,0.859213,0.354043,0.0170419,0.741702,0.728094,0.800315,0.227055,0.127623,0.343763,0.896774,0.683159,0.493506,0.622755,0.736733,0.344313,0.378385,0.88352,0.187165,0.576056,0.736403,0.323178,0.333461,0.0387012,0.986807,0.196689,0.231639,0.636898,0.580462,0.591644,0.359588,0.828701,0.815532,0.0231177,0.714917,0.288463,0.719339,0.138428,0.386621,0.613213,0.0953956,0.660245,0.349375,0.575239,0.0979609,0.572106,0.492987,0.0727473,0.195385,0.00334966,0.484428,0.356316,0.605983,0.211176,0.347796,0.758385,0.138145,0.594817,0.875008,0.210411,0.671274,0.717205,0.273092,0.453657,0.277524,0.284037,0.200401,0.194592,0.732415,0.994564,0.598615,0.875434,0.856225,0.0298055,0.157935,0.891596,0.111579,0.437161,0.144271,0.307059,0.972319,0.986386,0.464341,0.831351,0.557016,0.55337,0.56785,0.32679,0.899364,0.99037,0.810839,0.259625,0.254478,0.0617482,0.641477,0.0908376,0.123844,0.918397,0.426447,0.516612,0.781706,0.523032,0.745169,0.326657,0.375213,0.996509,0.419637,0.319413,0.559278,0.62565,0.629691,0.896424,0.905051,0.593378,0.0715604,0.792754,0.523086,0.695847,0.876796,0.857689,0.0632526,0.266442,0.979923,0.234571,0.894023,0.59663,0.572442,0.072154,0.865787,0.058597,0.0582531,0.269778,0.443099,0.1865,0.0337729,0.931849,0.0997686,0.743239,0.150366,0.757762,0.0461133,0.724886,0.426211,0.576254,0.517855,0.955547,0.866763,0.880066,0.0371902,0.0285793,0.823298,0.00819099,0.527035,0.256561,0.357299,0.026843,0.635254,0.423996,0.821004,0.626073,0.64898,0.671038,0.572682,0.454823,0.79177,0.725265,0.285784,0.537121,0.572666,0.53227,0.551024,0.957911,0.254483,0.184541,0.00949788,0.168807,0.952007,0.888487,0.177681,0.577921,0.275182,0.302337,0.847311,0.84235,0.528137,0.836133,0.663599,0.0985648,0.573282,0.811993,0.143223,0.727031,0.378569,0.732237,0.391421,0.568368,0.954515,0.0585138,0.851831,0.584737,0.563959,0.440109,0.674186,0.784455,0.903587,0.201883,0.85185,0.0150599,0.0610439,0.387171,0.861753,0.441645,0.621238,0.755179,0.285549,0.844457,0.184217,0.432294,0.151683,0.86355,0.391684,0.116028,0.399336,0.208134,0.965042,0.837166,0.153099,0.870734,0.00470829,0.887904,0.457581,0.757173,0.674085,0.348897,0.370097,0.725205,0.420197,0.363515,0.408674,0.235421,0.0689606,0.520032,0.424259,0.357717,0.0348821,0.30824,0.681407,0.724619,0.632108,0.828513,0.310902,0.483891,0.666399,0.232687,0.447153,0.225293,0.609074,0.551844,0.828267,0.377145,0.631936,0.97949,0.779221,0.686989,0.988219,0.33219,0.0164533,0.826263,0.711898,0.292043,0.286904,0.418431,0.938539,0.962607,0.620811,0.571254,0.65265,0.534912,0.467602,0.734823,0.714807,0.52308,0.671097,0.31082,0.318642,0.242671,0.612284,0.801146,0.515381,0.742273,0.890006,0.948847,0.717746,0.274247,0.78919,0.234484,0.789443,0.833956,0.840431,0.722228,0.727032,0.556418,0.851967,0.358162,0.645331,0.398581,0.595835,0.420974,0.588982,0.69873,0.241353,0.881145,0.726245,0.636838,0.636625,0.00267172,0.860851,0.529041,0.0893122,0.857968,0.540596,0.117462,0.678292,0.353319,0.269052,0.491571,0.828593,0.963505,0.269145,0.0961004,0.543269,0.42277,0.985256,0.0769516,0.766015,0.511306,0.410637,0.0747126,0.048107,0.261691,0.324797,0.341978,0.13415,0.991966,0.745088,0.610268,0.29021,0.976612,0.546413,0.775034,0.844926,0.425536,0.42935,0.615764,0.13443,0.0794882,0.938898,0.551238,0.200903,0.133493,0.989206,0.0523913,0.209067,0.496856,0.314508,0.499864,0.634051,0.34793,0.91269,0.320317,0.468826,0.00103235,0.478883,0.910496,0.0672964,0.479658,0.676862,0.803046,0.273081,0.938599,0.399842,0.857923,0.279566,0.354602,0.122585,0.409367,0.503249,0.408173,0.432144,0.427981,0.813209,0.285714,0.60444,0.338701,0.121929,0.827047,0.415187,0.586776,0.437614,0.439764,0.996865,0.342314,0.47779,0.288604,0.102347,0.719418,0.175858,0.260378,0.336116,0.315387,0.589669,0.303434,0.336224,0.824573,0.882311,0.947775,0.766732,0.547733,0.419976,0.545216,0.47005,0.20264,0.979331,0.531029,0.561628,0.760736,0.909781,0.0575764,0.707894,0.107009,0.49143,0.28406,0.864214,0.936281,0.532214,0.615311,0.652218,0.809501,0.363467,0.864589,0.868416,0.391571,0.16351,0.698176,0.347589,0.835863,0.594693,0.260653,0.488659,0.752321,0.0349054,0.999184,0.755599,0.779881,0.579273,0.395638,0.114688,0.223623,0.409012,0.0288064,0.859489,0.865556,0.158586,0.410175,0.427873,0.237532,0.239425,0.880742,0.725878,0.177817,0.862723,0.041863,0.650782,0.668683,0.524095,0.417372,0.977154,0.0169606,0.200786,0.26541,0.327094,0.929683,0.345223,0.815055,0.228819,0.937327,0.890212,0.917051,0.458461,0.89672,0.379767,0.661032,0.708977,0.319018,0.356324,0.853634,0.945173,0.701694,0.987941,0.569438,0.251175,0.78957,0.253544,0.63061,0.841442,0.0847103,0.658103,0.78923,0.84226,0.23763,0.246738,0.68199,0.987765,0.478723,0.0816584,0.854495,0.578182,0.0309351,0.318484,0.0164518,0.474661,0.49873,0.789771,0.674465,0.948428,0.129019,0.0412846,0.246377,0.123999,0.229923,0.228681,0.855856,0.820465,0.0787974,0.653652,0.162226,0.354294,0.614453,0.5912,0.898296,0.101477,0.607407,0.844884,0.136179,0.209449,0.470461,0.882333,0.992988,0.000231087,0.488751,0.844415,0.947476,0.340399,0.171505,0.0172959,0.108473,0.162861,0.373833,0.935614,0.732928,0.911169,0.655629,0.58295,0.823297,0.101695,0.415534,0.434063,0.418567,0.429562,0.938967,0.152615,0.36402,0.873487,0.878214,0.7996,0.132289,0.543476,0.705375,0.787863,0.129162,0.351864,0.709955,0.374093,0.267139,0.226636,0.907923,0.511223,0.0279472,0.127842,0.0496574,0.554207,0.835314,0.652844,0.810059,0.71199,0.337756,0.547618,0.916587,0.593525,0.684943,0.0910397,0.100999,0.360406,0.346993,0.52214,0.581111,0.0939043,0.79816,0.645082,0.0572522,0.792016,0.518481,0.0349259,0.56343,0.841117,0.584858,0.10605,0.424611,0.96672,0.989451,0.307574,0.944721,0.0295711,0.968899,0.327483,0.603321,0.00439429,0.363045,0.646669,0.665963,0.481191,0.271731,0.724782,0.741339,0.442459,0.187268,0.665745,0.858255,0.891245,|0.0931425,0.0436875,0.0622484,0.847266,0.461598,0.210845,0.00150782,0.339634,0.722204,0.284532,0.204752,0.0347682,0.97636,0.16773,0.816392,0.511051,0.384379,0.254629,0.0926734,0.772522,0.0248464,0.0328726,0.547379,0.0873819,0.19632,0.270548,0.517072,0.533557,0.536413,0.215752,0.644325,0.665498,0.390101,0.440615,0.815681,0.682074,0.389836,0.162038,0.194145,0.0310398,0.856446,0.393723,0.372478,0.258614,0.432609,0.108603,0.576518,0.960529,0.486259,0.0738581,0.166103,0.721641,0.391026,0.89799,0.636399,0.857091,0.70041,0.517887,0.322629,0.75711,0.13296,0.969084,0.932497,0.791552,0.485113,0.455555,0.221712,0.806595,0.00862813,0.431925,0.482596,0.985603,0.242377,0.359563,0.067898,0.419545,0.512927,0.464667,0.193615,0.0164653,0.499306,0.865894,0.0768304,0.466873,0.637057,0.431833,0.103779,0.40883,0.235338,0.493828,0.454205,0.23929,0.684564,0.368611,0.0557169,0.00468981,0.953723,0.0113242,0.189885,0.634318,0.79278,0.299929,0.136006,0.603071,0.0857454,0.994463,0.689244,0.696651,0.354249,0.241872,0.483553,0.112369,0.0871744,0.315712,0.213272,0.646844,0.153328,0.901348,0.91896,0.346459,0.187464,0.533297,0.101266,0.667955,0.887203,0.118936,0.483926,0.353039,0.846671,0.679938,0.158527,0.658826,0.65969,0.380067,0.277769,0.4489,0.0958098,0.865065,0.510522,0.451052,0.299816,0.286282,0.552152,0.67884,0.207079,0.734571,0.241873,0.681336,0.460249,0.842171,0.781152,0.944614,0.512556,0.0940039,0.860135,0.53406,0.937244,0.973623,0.745995,0.504074,0.337232,0.991612,0.583152,0.227466,0.0321459,0.700207,0.871528,0.581337,0.340933,0.70579,0.389787,0.248858,0.770541,0.649834,0.110391,0.49358,0.91331,0.548039,0.62569,0.355287,0.0919815,0.0399508,0.482404,0.913125,0.216209,0.61471,0.140437,0.907005,0.632976,0.91616,0.509723,0.881475,0.652489,0.981083,0.57291,0.258816,0.390617,0.0943365,0.74868,0.79232,0.981522,0.123144,0.366019,0.155881,0.811777,0.334351,0.790101,0.33599,0.842772,0.730388,0.310728,0.351531,0.761512,0.39371,0.348989,0.0563895,0.523719,0.41863,0.145803,0.498434,0.662863,0.146,0.764972,0.554279,0.511702,0.461999,0.18878,0.811959,0.856772,0.518703,0.926387,0.417766,0.326126,0.0178255,0.252005,0.256048,0.982189,0.00560939,0.27941,0.139629,0.359261,0.920628,0.208173,0.00214761,0.750295,0.77035,0.0903988,0.204627,0.607357,0.749904,0.070307,0.487204,0.820431,0.670158,0.242214,0.325396,0.157555,0.307516,0.742859,0.640705,0.0958914,0.32999,0.132166,0.556895,0.0680065,0.0795985,0.22602,0.37112,0.593214,0.833278,0.0378534,0.0165044,0.0679008,0.50025,0.100017,0.683322,0.52722,0.279399,0.619371,0.0203667,0.042556,0.682068,0.412587,0.996559,0.124535,0.942067,0.432309,0.155444,0.240387,0.284569,0.780252,0.500065,0.55587,0.0835437,0.155073,0.605892,0.853565,0.65495,0.249809,0.201336,0.188302,0.523991,0.325825,0.796187,0.410165,0.774961,0.791534,0.805982,0.67842,0.454611,0.220111,0.610925,0.626758,0.412189,0.489159,0.971459,0.815891,0.892613,0.64995,0.128765,0.403445,0.523166,0.0990552,0.900711,0.143209,0.128176,0.545055,0.270946,0.863098,0.0952013,0.607329,0.538582,0.263577,0.516857,0.346692,0.908874,0.155743,0.282995,0.242013,0.464842,0.592731,0.583434,0.0780257,0.579014,0.238991,0.483382,0.0265895,0.739447,0.485906,0.66711,0.889233,0.49864,0.803754,0.348735,0.251081,0.588086,0.76283,0.328651,0.234222,0.263565,0.738046,0.528128,0.514553,0.485411,0.99945,0.377108,0.414748,0.0560071,0.0376531,0.116042,0.508372,0.853103,0.318989,0.0756682,0.583345,0.28055,0.314284,0.157107,0.341842,0.144791,0.251281,0.126504,0.167214,0.558386,0.340905,0.130742,0.130076,0.45109,0.922105,0.717285,0.0412182,0.130759,0.605781,0.0899865,0.917739,0.543164,0.791621,0.603528,0.294282,0.563599,0.325112,0.0658641,0.146561,0.185307,0.03944,0.156254,0.55357,0.499367,0.490658,0.167869,0.85452,0.611206,0.673594,0.486044,0.213773,0.472577,0.732701,0.105281,0.153241,0.0912499,0.61305,0.692317,0.748752,0.652681,0.833572,0.895027,0.60569,0.174557,0.00213021,0.909894,0.265541,0.868219,0.748642,0.268028,0.774904,0.306967,0.412455,0.339056,0.81187,0.535907,0.263847,0.435634,0.993895,0.914154,0.71811,0.0618792,0.524741,0.816319,0.244841,0.942255,0.305548,0.351195,0.204387,0.869141,0.447904,0.922474,0.744761,0.838352,0.675468,0.704894,0.7787,0.909943,0.551023,0.120793,0.170433,0.455953,0.169944,0.537875,0.753461,0.809295,0.882212,0.728935,0.098761,0.829913,0.749772,0.357991,0.744251,0.214535,0.524909,0.16906,0.467753,0.468714,0.0884742,0.470744,0.503564,0.945137,0.665085,0.280306,0.101827,0.658354,0.67643,0.449475,0.636863,0.763487,0.0580194,0.318225,0.253365,0.341726,0.185677,0.835416,0.0526469,0.397125,0.614672,0.444544,0.7371,0.89353,0.0900593,0.477048,0.0803387,0.683751,0.885369,0.0697392,0.426068,0.199395,0.241693,0.871051,0.735508,0.88645,0.15884,0.836532,0.738545,0.56745,0.843367,0.818975,0.140288,0.677721,0.0798961,0.566486,0.967807,0.190689,0.549823,0.378764,0.111599,0.313344,0.405884,0.800103,0.521457,0.00788879,0.33166,0.679063,0.701592,0.481825,0.879945,0.225274,0.815879,0.0620661,0.628274,0.249935,0.103671,0.307506,0.942281,0.290965,0.89224,0.339122,0.109882,0.354786,0.345026,0.132172,0.104549,0.533129,0.47728,0.983007,0.595689,0.314767,0.0987299,0.835195,0.930398,0.956582,0.351284,0.0161242,0.0540183,0.968814,0.68531,0.28684,0.108609,0.0361515,0.56183,0.290947,0.935247,0.0949076,0.133318,0.0924981,0.681299,0.967588,0.0616086,0.468585,0.596588,0.896904,0.435653,0.862393,0.980524,0.137272,0.481998,0.0254197,0.603997,0.359834,0.401306,0.135651,0.438682,0.713272,0.442781,0.986244,0.653782,0.268143,0.567893,0.082,0.204207,0.779148,0.992401,0.111592,0.252033,0.250517,0.152719,0.871962,0.75309,0.206779,0.888813,0.774986,0.62413,0.495613,0.0340043,0.664962,0.679464,0.829064,0.651234,0.880845,0.577038,0.104538,0.146004,0.0158929,0.65608,0.110506,0.177651,0.0460777,0.959274,0.0473997,0.426137,0.957777,0.626093,0.42803,0.451391,0.842082,0.916832,0.304203,0.118266,0.630037,0.521459,0.861803,0.958074,0.0239091,0.434776,0.143838,0.884637,0.61028,0.540857,0.669329,0.875362,0.0356083,0.275791,0.918188,0.785756,0.610723,0.473142,0.551876,0.202037,0.775607,0.381502,0.474304,0.525487,0.162679,0.849988,0.0238613,0.252797,0.0470818,0.403957,0.243361,0.321361,0.277772,0.980146,0.63532,0.601792,0.635693,0.967119,0.640046,0.685306,0.404884,0.7265,0.570265,0.866713,0.271409,0.0526005,0.0840201,0.707962,0.273103,0.794554,0.969511,0.744627,0.793473,0.679476,0.663773,0.0225958,0.00709265,0.0709261,0.764254,0.366786,0.581098,0.81434,0.253558,0.100495,0.615144,0.324658,0.0776423,0.0138974,0.453254,0.711147,0.274583,0.927687,0.189712,0.164506,0.867051,0.754915,0.263325,0.759309,0.328171,0.36512,0.22094,0.245175,0.244385,0.0898784,0.52288,0.481798,0.756106,0.559091,0.465693,0.50155,0.279513,0.714179,0.792162,0.752099,0.621566,0.903162,0.129155,0.363247,0.632423,0.116524,0.649025,0.961926,0.126797,0.0990717,0.486275,0.190495,0.758369,0.932097,0.247238,0.101316,0.124889,0.849754,0.0305258,0.981151,0.755257,0.934857,0.0208212,0.142968,0.793543,0.868302,0.109168,0.449177,0.261501,0.992531,0.353334,0.604667,0.378023,0.870332,0.0433145,0.652599,0.986681,0.766514,0.191852,0.252556,0.290717,0.731336,0.34729,0.825902,0.561999,0.505508,0.991194,0.148166,0.486541,0.706828,0.606959,0.830626,0.438628,0.575503,0.0227038,0.712975,0.394798,0.397385,0.387335,0.948691,0.549656,0.68958,0.880515,0.66626,0.205438,0.414132,0.191797,0.739031,0.619385,0.946681,0.154665,0.967617,0.582738,0.52504,0.968767,0.846641,0.701334,0.4302,0.765382,0.179784,0.807497,0.352896,0.255288,0.197843,0.617528,0.384974,0.0356398,0.89847,0.826427,0.85099,0.554048,0.893824,0.876263,0.700325,0.492269,0.785239,0.0196554,0.795182,0.12283,0.301056,0.775912,0.506801,0.69835,0.292569,0.315449,0.494378,0.671416,0.320246,0.367935,0.794239,0.92427,0.884404,0.163897,0.81962,0.48932,0.122283,0.925313,0.838877,0.0587729,0.928686,0.0053708,0.26374,0.519514,0.548705,0.892653,0.780643,0.932013,0.207825,0.100854,0.825145,0.947131,0.689776,0.40489,0.868004,0.78617,0.124188,0.911309,0.0549196,0.363984,0.187454,0.632003,0.713965,0.0278714,0.451749,0.991997,0.914931,0.95258,0.959696,0.10207,0.722718,0.260065,0.503604,0.709448,0.690267,0.270802,0.0748259,0.331902,0.448607,0.893687,0.677225,0.202275,0.0342971,0.666096,0.182354,0.218351,0.404161,0.781302,0.977396,0.163187,0.168003,0.102884,0.565263,0.496876,0.677544,0.00824475,0.795109,0.254978,0.149245,0.899658,0.153293,0.227717,0.194194,0.98911,0.0445963,0.0354427,0.446634,0.280523,0.755358,0.90098,0.170212,0.708164,0.540665,0.00359571,0.851761,0.735196,0.0556768,0.186341,0.791372,0.211227,0.185541,0.0204071,0.151668,0.00328815,0.323614,0.485654,0.413361,0.0179641,0.567069,0.416761,0.556101,0.890514,0.474349,0.821424,0.902633,0.235588,0.0394654,0.458538,0.183808,0.493851,0.304211,0.428037,0.780349,0.173164,0.725111,0.973642,0.90408,0.104044,0.638072,0.42156,0.563223,0.850682,0.208353,0.346729,0.644524,0.702928,0.392432,0.60514,0.796705,0.292068,0.60215,0.374262,0.500042,0.887197,0.37225,0.88293,0.117726,0.191794,0.53192,0.493998,0.820037,0.244184,0.967916,0.284409,0.0741717,0.0926204,0.321271,0.394939,0.741171,0.825762,0.413211,0.323703,|0.24415,0.546519,0.979567,0.592936,0.712645,0.422178,0.0411024,0.0127077,0.679737,0.561128,0.516802,0.892552,0.0379412,0.170539,0.427075,0.509171,0.438405,0.734561,0.564158,0.0998728,0.740695,0.699578,0.562859,0.216569,0.632352,0.517943,0.466184,0.834626,0.505883,0.743821,0.0647305,0.411338,0.610159,0.0206662,0.9882,0.0158721,0.17825,0.207548,0.444324,0.031554,0.721938,0.648244,0.198115,0.299474,0.0506326,0.131038,0.0636865,0.266292,0.925891,0.600217,0.277057,0.682478,0.422914,0.443194,0.21603,0.791764,0.486489,0.107625,0.259876,0.440958,0.249332,0.375786,0.476654,0.629813,0.711953,0.00639117,0.5753,0.886034,0.39889,0.103773,0.0232168,0.580605,0.503945,0.266948,0.805742,0.132161,0.964826,0.651454,0.892328,0.996634,0.499685,0.316349,0.0904185,0.0216759,0.847325,0.934962,0.370226,0.937131,0.793875,0.895901,0.109263,0.302628,0.867016,0.764076,0.87556,0.2751,0.6361,0.618644,0.266816,0.444425,0.571508,0.27838,0.443733,0.671423,0.42095,0.63711,0.0482754,0.0679855,0.330986,0.242164,0.0728275,0.0168316,0.302855,0.226253,0.122798,0.28001,0.122285,0.401809,0.800955,0.500634,0.879317,0.192228,0.467243,0.488956,0.078207,0.737719,0.940846,0.978534,0.224669,0.71509,0.57154,0.111043,0.45176,0.862038,0.347885,0.58596,0.816937,0.311233,0.00387025,0.762181,0.732555,0.635894,0.630989,0.898449,0.672512,0.791641,0.353608,0.507588,0.406649,0.436536,0.0556809,0.313836,0.725413,0.871809,0.532799,0.599055,0.388613,0.420114,0.676241,0.598858,0.874868,0.545635,0.279098,0.741571,0.811625,0.94498,0.452725,0.366057,0.359933,0.426763,0.766165,0.561072,0.297611,0.775709,0.595067,0.738342,0.237733,0.369403,0.736737,0.238678,0.144598,0.754493,0.853607,0.430437,0.858968,0.345695,0.899201,0.781885,0.572641,0.897009,0.452739,0.0949592,0.37208,0.0462215,0.348075,0.779241,0.464578,0.105468,0.0749775,0.495895,0.344315,0.604287,0.482892,0.838985,0.509018,0.571936,0.58985,0.390281,0.306748,0.0552534,0.0677484,0.0941002,0.528756,0.979629,0.536991,0.191832,0.617485,0.688114,0.507362,0.49781,0.0887981,0.473195,0.666266,0.830933,0.716223,0.110785,0.385348,0.191556,0.0441276,0.482435,0.451275,0.421418,0.393569,0.385534,0.403371,0.112815,0.607166,0.695678,0.561083,0.467869,0.94478,0.699269,0.766558,0.103295,0.39779,0.224864,0.760469,0.14601,0.477403,0.885289,0.138489,0.61508,0.994942,0.33284,0.475556,0.392235,0.555008,0.475302,0.708153,0.49138,0.191842,0.626074,0.830482,0.148481,0.146553,0.308363,0.0844988,0.952808,0.259952,0.320221,0.628526,0.332596,0.663476,0.897348,0.435923,0.812284,0.769049,0.259512,0.777786,0.289765,0.206445,0.196702,0.273904,0.302403,0.344178,0.145975,0.723573,0.260517,0.419531,0.818954,0.287238,0.134676,0.876237,0.908936,0.488728,0.434094,0.087954,0.464636,0.618103,0.51195,0.425466,0.956188,0.818915,0.489799,0.691888,0.647598,0.397081,0.266548,0.630907,0.248261,0.181323,0.969245,0.063894,0.0754467,0.784617,0.477085,0.512045,0.473909,0.652958,0.848007,0.203936,0.648739,0.576775,0.078652,0.970417,0.0147269,0.515955,0.0370625,0.0859411,0.799593,0.447094,0.956394,0.728443,0.650259,0.496514,0.319751,0.798141,0.601247,0.644924,0.352922,0.257393,0.820812,0.630981,0.898544,0.480284,0.577805,0.162975,0.0747139,0.188077,0.812769,0.0353974,0.0795464,0.388079,0.907051,0.0953455,0.634931,0.748565,0.951875,0.865198,0.398268,0.834972,0.90951,0.980263,0.0656784,0.515233,0.798926,0.0228536,0.431153,0.937773,0.684091,0.570705,0.799014,0.538989,0.863971,0.774464,0.685159,0.841214,0.727093,0.665788,0.909589,0.69483,0.445554,0.0536613,0.00939363,0.60224,0.327721,0.00991005,0.892192,0.417474,0.0273015,0.352158,0.368829,0.043749,0.953307,0.782535,0.243874,0.725761,0.700253,0.432359,0.960933,0.0786707,0.63872,0.390703,0.241163,0.652968,0.127355,0.923673,0.459044,0.289032,0.258094,0.993006,0.501182,0.0438445,0.326559,0.29205,0.714311,0.775805,0.159647,0.369605,0.0651822,0.805811,0.621021,0.735138,0.480772,0.15174,0.24192,0.808093,0.672927,0.63569,0.0773219,0.0620441,0.78124,0.704515,0.0543947,0.0235611,0.0962331,0.676656,0.98116,0.22474,0.418855,0.306581,0.382811,0.50488,0.947203,0.0482067,0.561129,0.418307,0.242048,0.518281,0.176859,0.839331,0.123837,0.694864,0.976873,0.246334,0.804803,0.455426,0.0804904,0.999977,0.899753,0.932661,0.10148,0.430134,0.718539,0.914671,0.38734,0.00646186,0.093608,0.259179,0.0243025,0.151352,0.770885,0.790204,0.497107,0.00770926,0.655417,0.0130314,0.676684,0.766149,0.652376,0.60294,0.76885,0.65487,0.77349,0.572548,0.643465,0.813777,0.839897,0.24998,0.783706,0.704623,0.666374,0.511445,0.93107,0.811242,0.24548,0.395966,0.131024,0.716082,0.0211241,0.152395,0.626,0.603531,0.0187408,0.436128,0.609792,0.323562,0.421247,0.277016,0.250765,0.929615,0.956603,0.851249,0.616512,0.442984,0.432423,0.78738,0.468047,0.00229031,0.659052,0.685933,0.662812,0.992166,0.716997,0.212345,0.199711,0.0177178,0.207874,0.99678,0.66381,0.906257,0.834285,0.238649,0.574068,0.679184,0.444745,0.0141463,0.00328898,0.820863,0.672255,0.216001,0.557657,0.0455269,0.131583,0.771493,0.670495,0.917303,0.455953,0.86236,0.967649,0.309543,0.715962,0.228095,0.112818,0.46799,0.466975,0.628412,0.821996,0.84093,0.15289,0.806627,0.754124,0.878312,0.834776,0.0501048,0.954083,0.941088,0.276204,0.924973,0.89105,0.029177,0.411597,0.333145,0.742346,0.647854,0.0479534,0.307728,0.496268,0.740617,0.0595711,0.765628,0.622692,0.908956,0.514679,0.262144,0.678202,0.94468,0.476252,0.54501,0.509772,0.823081,0.757209,0.0101854,0.328378,0.541201,0.0270385,0.795437,0.0824435,0.804402,0.91508,0.483006,0.128937,0.515069,0.85272,0.930824,0.869999,0.0792736,0.529235,0.556532,0.159238,0.0767936,0.277387,0.0364273,0.641934,0.00668007,0.871515,0.763547,0.637298,0.50616,0.232447,0.772467,0.200099,0.399565,0.440728,0.433334,0.844333,0.354606,0.194811,0.175083,0.216736,0.0615763,0.818087,0.424695,0.8315,0.351894,0.142553,0.00727385,0.424018,0.341904,0.00308841,0.855031,0.037511,0.0819867,0.849391,0.716885,0.293183,0.4372,0.863192,0.406186,0.232042,0.732916,0.627538,0.659287,0.855615,0.801063,0.826393,0.0807042,0.640164,0.556286,0.295538,0.67726,0.116623,0.810602,0.269927,0.130769,0.756117,0.479279,0.303323,0.948638,0.812975,0.481788,0.916155,0.799574,0.978166,0.511312,0.738978,0.493717,0.591932,0.376824,0.555836,0.294482,0.555401,0.91777,0.764726,0.779925,0.98872,0.823022,0.165717,0.489352,0.902946,0.617181,0.341719,0.813541,0.0354992,0.186625,0.351345,0.547339,0.0558521,0.883983,0.598355,0.0723488,0.572936,0.642543,0.711796,0.770079,0.200162,0.0183004,0.276547,0.742719,0.397835,0.0259742,0.963863,0.807539,0.214258,0.750723,0.148587,0.16833,0.947893,0.0380047,0.250503,0.828306,0.717775,0.234352,0.594215,0.934949,0.717577,0.718688,0.687864,0.138995,0.217492,0.290357,0.439966,0.588186,0.597759,0.561589,0.95502,0.309709,0.122102,0.881251,0.414594,0.116038,0.211902,0.731391,0.161427,0.23538,0.26912,0.305974,0.598508,0.250934,0.274441,0.838174,0.621939,0.453523,0.478174,0.908957,0.377557,0.452526,0.186612,0.197764,0.35926,0.769987,0.535592,0.9651,0.852709,0.697621,0.291593,0.592321,0.71671,0.159627,0.216981,0.692839,0.0175833,0.983126,0.420364,0.46257,0.0322004,0.44088,0.352911,0.785788,0.561585,0.220657,0.722402,0.104985,0.480289,0.614796,0.237296,0.637683,0.349401,0.426993,0.698833,0.934907,0.107806,0.926167,0.157692,0.376566,0.329586,0.440642,0.656793,0.0778467,0.944162,0.22846,0.863743,0.988882,0.865189,0.0657023,0.637105,0.477138,0.0639509,0.531149,0.0865343,0.0494222,0.513478,0.0222267,0.330979,0.359986,0.706353,0.961618,0.469526,0.437839,0.0488019,0.917105,0.537967,0.465566,0.0558504,0.583675,0.0804094,0.480482,0.987683,0.568097,0.584003,0.837633,0.377933,0.380406,0.658782,0.822368,0.356234,0.709794,0.154118,0.294144,0.0768024,0.843517,0.454662,0.14931,0.371636,0.40742,0.695577,0.213832,0.878644,0.271089,0.919351,0.356989,0.927294,0.557895,0.156085,0.571617,0.329022,0.177388,0.238895,0.249243,0.470127,0.00911468,0.602476,0.239307,0.0494926,0.0223061,0.03842,0.238057,0.311817,0.653702,0.951868,0.0723848,0.0243112,0.928657,0.451311,0.142967,0.927898,0.413078,0.240825,0.691436,0.494072,0.434228,0.3305,0.78572,0.990585,0.975913,0.111013,0.301271,0.148842,0.522817,0.576093,0.378954,0.498319,0.694799,0.201183,0.937217,0.721623,0.224241,0.941326,0.318701,0.260235,0.302269,0.313648,0.895455,0.793976,0.294109,0.728442,0.599313,0.0805818,0.53741,0.904942,0.12022,0.0813768,0.173881,0.345179,0.588425,0.276288,0.823274,0.837016,0.861895,0.99177,0.569016,0.972769,0.568221,0.696473,0.778572,0.89353,0.532014,0.433864,0.488351,0.0968587,0.417792,0.0900888,0.806149,0.996884,0.834052,0.393288,0.722919,0.830649,0.857686,0.434412,0.620658,0.572561,0.998722,0.720665,0.604203,0.0299944,0.598429,0.346524,0.185355,0.815946,0.164676,0.45944,0.256242,0.78131,0.0604156,0.172297,0.286001,0.70451,0.804491,0.270607,0.05549,0.788368,0.293833,0.558238,0.233362,0.904179,0.997145,0.888031,0.946796,0.742708,0.812533,0.962168,0.0141992,0.391557,0.942564,0.486542,0.506827,0.241593,0.0992965,0.981239,0.30347,0.184939,0.796719,0.88763,0.897465,0.336962,0.336463,0.00497895,0.780496,0.0794104,0.780661,0.213294,0.143505,0.952501,0.242387,0.942826,0.709971,0.11892,0.0244318,0.192736,|0.700026,0.87591,0.402594,0.177499,0.747851,0.467118,0.0559371,0.233843,0.0119069,0.0915778,0.149358,0.207661,0.466113,0.336263,0.237531,0.25545,0.646462,0.233468,0.848979,0.442445,0.188803,0.945573,0.513628,0.686183,0.529776,0.668665,0.299476,0.618271,0.205468,0.737062,0.232281,0.887446,0.453311,0.846121,0.55412,0.138599,0.331726,0.91725,0.01487,0.4672,0.268069,0.946236,0.739249,0.983006,0.0656343,0.111383,0.343184,0.414633,0.99672,0.0269421,0.881541,0.465614,0.103853,0.560176,0.68008,0.988887,0.0141657,0.627003,0.0918952,0.867912,0.838805,0.0346037,0.487881,0.97349,0.780716,0.937619,0.470166,0.727414,0.318686,0.782809,0.917616,0.418018,0.031587,0.0781612,0.992853,0.372732,0.177869,0.0748695,0.964961,0.134271,0.543433,0.464433,0.661904,0.111631,0.149237,0.0475534,0.144623,0.341809,0.106036,0.986449,0.940012,0.493679,0.298217,0.132666,0.974461,0.76879,0.0664984,0.9865,0.0540342,0.624909,0.227428,0.818326,0.384967,0.289382,0.169586,0.69538,0.320128,0.84257,0.128592,0.468499,0.571102,0.240171,0.388543,0.0365149,0.213712,0.803177,0.986159,0.458428,0.56338,0.555929,0.96192,0.44871,0.326834,0.537404,0.59773,0.445916,0.754231,0.394448,0.786278,0.092446,0.197709,0.415773,0.51992,0.0550682,0.468573,0.522363,0.790613,0.531834,0.511685,0.210337,0.548929,0.624504,0.212274,0.692293,0.455429,0.607997,0.893318,0.490146,0.318357,0.960563,0.0451029,0.656572,0.88835,0.712672,0.571436,0.79539,0.905561,0.0629381,0.824386,0.988522,0.213405,0.405258,0.335074,0.513336,0.234469,0.20606,0.393885,0.250811,0.692358,0.0098272,0.546105,0.192227,0.474582,0.223656,0.463254,0.618119,0.323776,0.86974,0.573304,0.278554,0.609119,0.443778,0.167578,0.124025,0.20768,0.752258,0.633781,0.302094,0.482809,0.402783,0.985724,0.528831,0.197413,0.601575,0.185778,0.887984,0.295018,0.160567,0.619085,0.36595,0.359673,0.0255458,0.595688,0.129394,0.618389,0.579331,0.481093,0.5838,0.8483,0.474753,0.152321,0.61255,0.211043,0.179459,0.276486,0.61793,0.794751,0.502314,0.934664,0.223053,0.839608,0.957874,0.216037,0.543414,0.908119,0.86469,0.791102,0.804858,0.256435,0.899607,0.780498,0.174539,0.0534433,0.812977,0.030752,0.59979,0.294919,0.0831248,0.161613,0.354977,0.539104,0.888751,0.467136,0.361497,0.575005,0.377617,0.20973,0.669072,0.712944,0.995557,0.582369,0.68585,0.268995,0.0992827,0.563699,0.233173,0.156894,0.916917,0.301133,0.241043,0.258517,0.416674,0.987877,0.363022,0.260593,0.327214,0.0945343,0.24948,0.0944238,0.655086,0.000933766,0.110279,0.533297,0.0821834,0.88285,0.36256,0.441405,0.302347,0.571362,0.389705,0.0508708,0.24081,0.723947,0.0965884,0.0226382,0.693658,0.474286,0.482371,0.0146093,0.0564484,0.140957,0.229431,0.520998,0.546872,0.141743,0.165489,0.683425,0.874814,0.174656,0.0937126,0.00992602,0.637833,0.152599,0.444344,0.741786,0.0671618,0.916404,0.471264,0.95642,0.687407,0.198248,0.819308,0.546199,0.560056,0.668204,0.493712,0.910711,0.648336,0.0993696,0.700753,0.0909035,0.755013,0.339908,0.554563,0.50259,0.667642,0.736369,0.149465,0.578007,0.135732,0.242515,0.467535,0.251144,0.318365,0.0436009,0.330026,0.467884,0.691716,0.834897,0.133355,0.764215,0.114596,0.390351,0.930683,0.934121,0.346091,0.634197,0.471852,0.665782,0.360661,0.343805,0.287915,0.659816,0.837854,0.904231,0.189771,0.614711,0.564252,0.455442,0.636356,0.551656,0.17209,0.777244,0.822138,0.200675,0.595958,0.63705,0.201327,0.56099,0.283801,0.994348,0.182513,0.95307,0.273276,0.433101,0.581596,0.982893,0.742919,0.0931678,0.203241,0.552588,0.882643,0.75889,0.545064,0.999985,0.777174,0.831874,0.668214,0.352796,0.484265,0.246853,0.237244,0.381799,0.243494,0.710318,0.927181,0.986752,0.256725,0.19152,0.857794,0.599995,0.613685,0.652126,0.635948,0.701484,0.88561,0.133102,0.901846,0.544697,0.17362,0.814522,0.563436,0.205712,0.0939749,0.983829,0.339899,0.620407,0.89099,0.768803,0.00617331,0.211367,0.0725529,0.825688,0.530005,0.50637,0.371359,0.280069,0.191095,0.624709,0.660426,0.598516,0.572747,0.851192,0.466889,0.749771,0.163892,0.929051,0.963161,0.218786,0.905805,0.44067,0.684167,0.331882,0.0253159,0.893918,0.841116,0.497658,0.222149,0.269584,0.0829573,0.196458,0.0344296,0.0362954,0.0908961,0.986186,0.848448,0.121811,0.15715,0.721107,0.567987,0.93854,0.330673,0.147166,0.85178,0.888815,0.978204,0.286523,0.724327,0.367021,0.260972,0.684015,0.854732,0.828301,0.956751,0.19165,0.617324,0.759239,0.13487,0.656993,0.88193,0.0479512,0.630473,0.637699,0.23229,0.999979,0.508732,0.627584,0.812985,0.28954,0.312629,0.877503,0.0646356,0.0212378,0.67184,0.664561,0.107597,0.599376,0.414003,0.513395,0.515758,0.807918,0.502918,0.207867,0.453304,0.893479,0.220365,0.539177,0.886114,0.764078,0.5576,0.795569,0.730485,0.798808,0.484066,0.421279,0.239911,0.810058,0.0628754,0.524078,0.71707,0.813962,0.896033,0.877639,0.027706,0.0207171,0.635083,0.856526,0.658616,0.166969,0.522061,0.821212,0.297613,0.83051,0.374051,0.231773,0.701632,0.240782,0.0404038,0.385698,0.485712,0.277913,0.55318,0.600693,0.504877,0.199808,0.50865,0.601647,0.750848,0.509202,0.36739,0.789502,0.439295,0.278982,0.0378339,0.0466846,0.614305,0.539422,0.782847,0.218482,0.735908,0.91413,0.683208,0.51845,0.757726,0.423861,0.566041,0.527296,0.97323,0.166952,0.727956,0.0487131,0.181887,0.578159,0.982298,0.247405,0.916762,0.0889612,0.298513,0.917935,0.443971,0.920834,0.737805,0.573393,0.295764,0.937089,0.771493,0.149405,0.502712,0.43766,0.119666,0.307477,0.234514,0.486519,0.0257597,0.0023219,0.826793,0.688666,0.459175,0.978624,0.264128,0.464728,0.469691,0.390793,0.589297,0.687335,0.394434,0.870504,0.033116,0.251056,0.475564,0.75775,0.703176,0.387688,0.103079,0.657869,0.30451,0.0483441,0.29986,0.203604,0.81189,0.615306,0.493798,0.557404,0.760592,0.208772,0.595398,0.714582,0.130091,0.863455,0.372599,0.638182,0.145347,0.370316,0.648276,0.877459,0.791238,0.564537,0.00604582,0.907623,0.118753,0.0307174,0.742613,0.15503,0.865126,0.712346,0.958247,0.285319,0.216435,0.718625,0.966655,0.265549,0.553573,0.837215,0.393844,0.793249,0.808402,0.0881839,0.230973,0.101331,0.327156,0.118178,0.00246847,0.0800744,0.573487,0.28995,0.460778,0.574039,0.328711,0.64546,0.537099,0.52805,0.402464,0.166444,0.285114,0.956729,0.981091,0.390818,0.561586,0.159538,0.165394,0.854404,0.15339,0.0726261,0.237647,0.774685,0.0702336,0.725408,0.218852,0.172355,0.154801,0.223709,0.297228,0.650637,0.467883,0.407836,0.432813,0.0496088,0.666883,0.773548,0.861643,0.284747,0.305594,0.962849,0.867914,0.439657,0.674185,0.642402,0.792106,0.804087,0.105726,0.201204,0.261059,0.660948,0.967289,0.0278917,0.136102,0.042863,0.00941312,0.948861,0.816485,0.739879,0.115421,0.972347,0.959914,0.677143,0.272317,0.494817,0.21361,0.785282,0.886271,0.433202,0.467757,0.571256,0.399476,0.606955,0.157888,0.72734,0.501741,0.913168,0.617383,0.0966149,0.420638,0.0497352,0.0988334,0.368812,0.207165,0.725274,0.9614,0.949701,0.252157,0.174974,0.344995,0.866471,0.828276,0.462209,0.270677,0.206682,0.598829,0.510703,0.921817,0.455076,0.669839,0.812861,0.518139,0.106006,0.631403,0.902543,0.0270416,0.731897,0.707473,0.273066,0.0548189,0.891052,0.779113,0.756926,0.0215951,0.978871,0.936566,0.165866,0.810954,0.499794,0.91033,0.720421,0.978777,0.101127,0.164312,0.708551,0.513056,0.684344,0.858252,0.0848352,0.288844,0.170341,0.571954,0.287754,0.496817,0.678098,0.631402,0.0547026,0.111235,0.830984,0.0341055,0.77707,0.593925,0.894114,0.445384,0.948258,0.268812,0.646918,0.436494,0.103122,0.674887,0.554214,0.328113,0.622241,0.400771,0.398622,0.567222,0.113621,0.11746,0.0692387,0.0493686,0.907976,0.898241,0.499124,0.645409,0.635631,0.496086,0.349003,0.0117922,0.246529,0.319336,0.92613,0.536602,0.129312,0.117162,0.569628,0.786476,0.736475,0.526704,0.584426,0.327876,0.509194,0.735206,0.787601,0.288765,0.0392755,0.468742,0.337126,0.313745,0.0418561,0.0924461,0.717199,0.730268,0.581372,0.669696,0.688816,0.0320244,0.0215614,0.72483,0.39029,0.200901,0.0412563,0.965155,0.113216,0.0145847,0.115558,0.913717,0.0520911,0.787289,0.356439,0.0650346,0.92423,0.777171,0.284302,0.157154,0.491112,0.11987,0.98394,0.00225592,0.833727,0.971693,0.360497,0.820537,0.959588,0.695894,0.416828,0.783537,0.33501,0.748056,0.659798,0.20814,0.17926,0.26304,0.596051,0.35717,0.700231,0.787575,0.379875,0.72017,0.68853,0.71355,0.709944,0.40556,0.582749,0.585243,0.757133,0.0208918,0.479353,0.805011,0.965859,0.889432,0.602404,0.639381,0.65191,0.535045,0.645433,0.379624,0.422199,0.0404326,0.110587,0.141487,0.753877,0.883499,0.222693,0.560759,0.0296797,0.752317,0.82499,0.811907,0.417148,0.139768,0.568324,0.876642,0.266871,0.576251,0.934941,0.308613,0.396419,0.624101,0.00963467,0.0284218,0.548939,0.36064,0.240882,0.706303,0.0477704,0.38777,0.616559,0.901458,0.328264,0.281389,0.471544,0.137112,0.888166,0.741638,0.81195,0.273383,0.824502,0.882934,0.839149,0.11404,0.143953,0.22603,0.803666,0.968671,0.602229,0.490487,0.680824,0.506219,0.444045,0.601799,0.0196293,0.793182,0.366713,0.200417,0.816019,0.23681,0.639961,0.878302,0.350692,0.310073,0.0854775,0.715369,0.663795,0.149163,0.270361,0.72535,0.969876,0.87431,0.627692,0.0718182,0.776171,0.603031,0.0961419,0.811326,0.650042,0.149023,0.294432,0.752772,|0.209625,0.943383,0.507177,0.0259276,0.0957822,0.72682,0.368169,0.369561,0.77929,0.963439,0.313854,0.42746,0.992595,0.32118,0.0968771,0.735769,0.378988,0.450235,0.584863,0.606821,0.71834,0.545438,0.975606,0.848384,0.342032,0.474636,0.169698,0.309389,0.836444,0.78151,0.456114,0.242264,0.0530338,0.294486,0.980545,0.0413821,0.567049,0.184796,0.126365,0.399311,0.0828367,0.353906,0.184674,0.512688,0.0869403,0.55318,0.642758,0.458183,0.150271,0.371702,0.781523,0.155895,0.195747,0.730125,0.0452865,0.31732,0.721467,0.753164,0.325698,0.0219193,0.268012,0.512621,0.00934666,0.631177,0.211562,0.630086,0.198627,0.786573,0.179717,0.850912,0.959671,0.12707,0.629101,0.663711,0.517504,0.846711,0.640289,0.895199,0.390978,0.845216,0.867999,0.610114,0.509015,0.25112,0.0411574,0.20835,0.63384,0.542455,0.228579,0.112067,0.971726,0.0776433,0.466175,0.351676,0.644762,0.428675,0.0675647,0.835986,0.557492,0.0540615,0.802649,0.250026,0.454958,0.815009,0.322139,0.285528,0.701133,0.809314,0.862676,0.37808,0.813899,0.607625,0.382969,0.551518,0.387379,0.0285282,0.873078,0.901558,0.18096,0.437445,0.0328737,0.372466,0.765866,0.613981,0.588171,0.0964389,0.848403,0.546231,0.304108,0.585034,0.604918,0.277911,0.195189,0.360364,0.83536,0.891447,0.774177,0.0754359,0.467188,0.0823304,0.887081,0.377126,0.907611,0.779955,0.287505,0.627846,0.226962,0.75247,0.429906,0.463039,0.399852,0.979598,0.133357,0.283163,0.0742862,0.772736,0.192989,0.361931,0.419977,0.87895,0.832881,0.162271,0.913609,0.981271,0.815473,0.969652,0.506873,0.571516,0.574416,0.293928,0.852325,0.0481869,0.959634,0.735632,0.366399,0.273457,0.482183,0.901084,0.646275,0.321868,0.894786,0.0307543,0.748282,0.857195,0.979803,0.670457,0.409699,0.530682,0.606107,0.383867,0.258799,0.134789,0.20213,0.572462,0.215094,0.679437,0.977805,0.167792,0.00581121,0.146747,0.349523,0.465952,0.215412,0.200598,0.047906,0.947857,0.283027,0.018632,0.168307,0.308947,0.0921887,0.966344,0.8828,0.951315,0.709634,0.516898,0.346115,0.214025,0.167772,0.26899,0.759204,0.0744235,0.22779,0.0468534,0.454672,0.80016,0.622431,0.853056,0.431662,0.471129,0.118271,0.692744,0.096912,0.248888,0.648873,0.669811,0.962428,0.721196,0.491161,0.316707,0.619973,0.888702,0.0907698,0.0108445,0.656546,0.32925,0.0759162,0.705345,0.186554,0.919843,0.419685,0.0960701,0.994012,0.09383,0.302509,0.511759,0.700104,0.0719253,0.549208,0.3937,0.964124,0.628153,0.499641,0.00750268,0.60994,0.448724,0.246155,0.287398,0.512015,0.632089,0.834232,0.808563,0.169438,0.612343,0.115204,0.880665,0.0121135,0.732125,0.570156,0.219433,0.634195,0.302045,0.223737,0.339566,0.415892,0.14209,0.770732,0.776814,0.102638,0.894787,0.447479,0.311688,0.268307,0.665897,0.0564852,0.112241,0.763182,0.93209,0.654988,0.980574,0.178317,0.0617323,0.480482,0.169509,0.819962,0.0192001,0.452479,0.193612,0.443099,0.0408694,0.793314,0.222739,0.164224,0.872869,0.531294,0.155307,0.929638,0.0729796,0.927619,0.830373,0.894881,0.0948342,0.0206846,0.883669,0.886842,0.5849,0.682291,0.571798,0.446591,0.0322412,0.720335,0.79,0.0806421,0.867927,0.168986,0.679503,0.397744,0.572935,0.629753,0.656514,0.65426,0.959681,0.814023,0.537502,0.962364,0.894434,0.0555523,0.483851,0.820982,0.154582,0.532734,0.100993,0.565687,0.0263398,0.68656,0.0615951,0.951323,0.278509,0.557395,0.235752,0.385127,0.536191,0.994261,0.636849,0.867526,0.509229,0.235192,0.491739,0.147936,0.935044,0.683422,0.251344,0.00251281,0.834325,0.218498,0.907515,0.716901,0.252459,0.819548,0.0664155,0.201092,0.707055,0.835805,0.344602,0.401969,0.88825,0.93232,0.605614,0.186061,0.680539,0.0143769,0.575525,0.506119,0.705611,0.0528358,0.797116,0.894057,0.17609,0.525503,0.501895,0.77857,0.502956,0.565495,0.94277,0.701308,0.502928,0.944427,0.622953,0.786902,0.47977,0.52484,0.545298,0.36552,0.850511,0.501993,0.542807,0.171681,0.985718,0.0818671,0.497249,0.383196,0.966682,0.418418,0.659192,0.838191,0.0159064,0.30637,0.0733619,0.150781,0.702015,0.386327,0.58194,0.662802,0.776193,0.528732,0.951653,0.0849615,0.0320671,0.858887,0.125367,0.761624,0.498539,0.552071,0.490594,0.0157341,0.142364,0.382489,0.732208,0.04013,0.586254,0.0237753,0.394957,0.451183,0.225887,0.0834082,0.848835,0.355666,0.782227,0.855189,0.290694,0.0207561,0.409629,0.486812,0.224213,0.917068,0.778709,0.0340137,0.959373,0.674272,0.798611,0.452484,0.295056,0.538025,0.751872,0.674221,0.173795,0.65118,0.95493,0.11602,0.102108,0.75952,0.55167,0.765506,0.397651,0.429826,0.724234,0.280384,0.112755,0.94974,0.981713,0.97796,0.0693069,0.106907,0.491974,0.9897,0.586444,0.571242,0.670574,0.518361,0.400243,0.00407815,0.762671,0.467158,0.291072,0.598604,0.259753,0.363811,0.174098,0.0205286,0.663723,0.54997,0.935732,0.557195,0.189836,0.79685,0.134369,0.758534,0.153383,0.534407,0.496032,0.809534,0.13741,0.377494,0.0766196,0.132424,0.832717,0.0711814,0.229929,0.248537,0.608623,0.929158,0.125618,0.238199,0.1674,0.88307,0.0400667,0.918441,0.45601,0.406529,0.722788,0.839873,0.7495,0.310121,0.51991,0.967868,0.91587,0.981852,0.0638845,0.894007,0.655984,0.171635,0.0415003,0.0026359,0.0924714,0.784099,0.832743,0.417667,0.296241,0.0026052,0.898946,0.0958624,0.376581,0.922161,0.924298,0.47235,0.217552,0.434952,0.22459,0.698453,0.440268,0.961532,0.619143,0.766683,0.830036,0.837377,0.0116162,0.278366,0.205837,0.910713,0.426217,0.479932,0.550619,0.617105,0.107971,0.672534,0.0023796,0.172252,0.11237,0.700965,0.0180536,0.191695,0.398621,0.099155,0.035815,0.869439,0.151103,0.123228,0.609244,0.430876,0.444078,0.575279,0.976922,0.30134,0.290984,0.0745625,0.935507,0.407242,0.746678,0.384081,0.00977498,0.298211,0.423969,0.677911,0.575868,0.176657,0.644565,0.666606,0.596138,0.762654,0.132595,0.145957,0.0216475,0.683358,0.601739,0.619204,0.53298,0.229292,0.817466,0.681995,0.267968,0.509204,0.817093,0.780757,0.79749,0.593736,0.91265,0.795429,0.816077,0.638655,0.995867,0.571604,0.408374,0.3148,0.335203,0.0745305,0.786707,0.615355,0.727508,0.832549,0.587781,0.246124,0.224594,0.739653,0.120534,0.146625,0.851839,0.140168,0.0125341,0.81633,0.00437373,0.22794,0.146765,0.145535,0.493366,0.0251222,0.409239,0.614785,0.433433,0.467069,0.670903,0.179596,0.732459,0.506931,0.815123,0.300828,0.394687,0.416161,0.0517595,0.876662,0.459449,0.500087,0.0858066,0.881625,0.0116068,0.403721,0.10145,0.809897,0.0139881,0.618985,0.0663121,0.460047,0.4434,0.206227,0.324101,0.762955,0.158456,0.143136,0.205029,0.270485,0.117264,0.0865336,0.406521,0.808456,0.167288,0.00189149,0.0790703,0.645177,0.908356,0.98112,0.0713438,0.992061,0.411701,0.99662,0.598566,0.439462,0.208232,0.0586972,0.0431547,0.711068,0.302074,0.151657,0.74149,0.870424,0.996417,0.544094,0.0561354,0.6173,0.106776,0.132089,0.532344,0.165525,0.29871,0.701009,0.423971,0.785255,0.195993,0.256416,0.493898,0.0896871,0.15849,0.477209,0.637925,0.320217,0.515727,0.374864,0.0219663,0.409701,0.926467,0.844247,0.0241585,0.345152,0.498478,0.634968,0.412487,0.173349,0.993435,0.194123,0.378719,0.525304,0.606792,0.652234,0.0496861,0.812815,0.0362257,0.182445,0.204889,0.681995,0.666214,0.746605,0.426661,0.148392,0.75062,0.750374,0.771413,0.102283,0.307047,0.862548,0.664605,0.0973161,0.242461,0.739618,0.390552,0.691228,0.0229537,0.741689,0.942442,0.34601,0.612611,0.786295,0.67623,0.425819,0.464556,0.6788,0.445454,0.722996,0.110182,0.114928,0.950137,0.0383131,0.868812,0.136262,0.866637,0.591671,0.268116,0.489109,0.303119,0.659484,0.00122386,0.708268,0.175344,0.612904,0.396742,0.28116,0.366047,0.620268,0.797314,0.787276,0.177671,0.0179792,0.853186,0.246437,0.42922,0.587896,0.181989,0.568615,0.580326,0.349159,0.0269341,0.140717,0.936383,0.913041,0.8401,0.990488,0.390638,0.342866,0.714386,0.163123,0.708586,0.22275,0.351527,0.823336,0.191008,0.66436,0.363121,0.970208,0.763292,0.567324,0.102575,0.570237,0.994936,0.365386,0.106908,0.925857,0.563254,0.797639,0.218857,0.782942,0.568094,0.797657,0.341778,0.805694,0.098973,0.513178,0.722785,0.644319,0.123094,0.466129,0.579533,0.445552,0.135204,0.971233,0.421978,0.407733,0.286299,0.922118,0.430489,0.139945,0.345722,0.0113651,0.418765,0.816027,0.167241,0.384952,0.145298,0.467274,0.412167,0.321267,0.451583,0.595779,0.110425,0.371817,0.205233,0.923282,0.791537,0.159445,0.281256,0.140962,0.205217,0.229281,0.439739,0.97059,0.606987,0.217006,0.352475,0.920203,0.425713,0.0396403,0.941943,0.0182103,0.342145,0.873716,0.569651,0.280565,0.70266,0.584909,0.482367,0.766083,0.700639,0.608202,0.636929,0.699317,0.520777,0.38012,0.0523927,0.476631,0.860673,0.0556943,0.628823,0.754775,0.888701,0.439601,0.100262,0.606135,0.206747,0.451432,0.509152,0.0610238,0.172812,0.921746,0.304302,0.964091,0.0783524,0.662723,0.678137,0.511023,0.85977,0.840492,0.165196,0.0461295,0.35358,0.433886,0.318748,0.090784,0.000500143,0.449169,0.367037,0.97123,0.711896,0.118307,0.828302,0.668486,0.645876,0.513056,0.95283,0.0105165,0.938697,0.375845,0.41044,0.495398,0.540519,0.346562,0.926174,0.295462,0.215215,0.210976,0.391646,0.226924,0.995202,0.296221,0.486238,0.604674,0.272707,0.952483,0.922315,0.0783969,0.0259418,0.385583,0.767407,0.737616,0.127378,0.244874,0.172511,0.334412,0.628733,0.423809,0.976014,0.458144,0.969338,0.469066,0.258708,|0.821598,0.531674,0.290253,0.863497,0.474677,0.241939,0.7906,0.0858201,0.189076,0.78479,0.367626,0.547897,0.663659,0.687846,0.930937,0.0222057,0.620302,0.0987613,0.217444,0.989771,0.852585,0.661005,0.0608081,0.955824,0.0502803,0.454935,0.200714,0.74511,0.141859,0.522032,0.126345,0.308651,0.734851,0.611027,0.612718,0.516233,0.342676,0.0179825,0.269533,0.108377,0.449561,0.212675,0.582972,0.775108,0.590818,0.80899,0.0120547,0.715515,0.22114,0.987962,0.380043,0.306315,0.414592,0.69523,0.0865177,0.300804,0.875212,0.244856,0.811524,0.20904,0.776871,0.77796,0.078612,0.777568,0.00415045,0.585366,0.671457,0.287281,0.758379,0.561472,0.730924,0.28483,0.534039,0.995891,0.754895,0.815938,0.870007,0.124868,0.707945,0.160666,0.468771,0.130543,0.261378,0.192639,0.456036,0.0798903,0.478384,0.505664,0.519502,0.462994,0.987673,0.338783,0.576861,0.776069,0.074904,0.0698774,0.151502,0.975822,0.43667,0.590756,0.35509,0.697537,0.385587,0.544319,0.0636914,0.772013,0.687768,0.492978,0.0386844,0.721642,0.852663,0.444308,0.471184,0.245023,0.0974073,0.643528,0.141153,0.103363,0.712064,0.901143,0.579913,0.543354,0.913071,0.34862,0.699116,0.271156,0.559998,0.488995,0.310345,0.852387,0.755497,0.353952,0.56344,0.956176,0.103532,0.418891,0.576238,0.544693,0.509722,0.7161,0.553849,0.142361,0.368462,0.768209,0.0168688,0.590889,0.910441,0.878646,0.723629,0.377956,0.80732,0.725819,0.445469,0.886391,0.876405,0.399245,0.415169,0.0660054,0.899189,0.811006,0.893119,0.427088,0.704473,0.0710331,0.0852157,0.191182,0.985728,0.707117,0.7019,0.404171,0.197458,0.83229,0.480663,0.0351149,0.683445,0.209997,0.190594,0.794992,0.879428,0.777403,0.261681,0.206646,0.933134,0.897705,0.0589409,0.228067,0.11982,0.564399,0.572255,0.675019,0.81521,0.924043,0.106274,0.668627,0.132294,0.0657527,0.521326,0.722773,0.4854,0.350591,0.858863,0.932465,0.0023489,0.54104,0.677015,0.844335,0.363559,0.675356,0.523879,0.161281,0.616608,0.613405,0.44943,0.77047,0.358091,0.512037,0.446722,0.155299,0.646442,0.232949,0.945015,0.642196,0.211662,0.859621,0.446261,0.554931,0.042404,0.748352,0.379016,0.0147882,0.949888,0.348677,0.947938,0.736827,0.780936,0.28796,0.657025,0.75224,0.963025,0.316425,0.620789,0.0549518,0.615367,0.00442445,0.231168,0.868549,0.266349,0.293949,0.622882,0.51251,0.147967,0.807852,0.656888,0.788516,0.841556,0.0730091,0.542366,0.631379,0.0329105,0.791946,0.273793,0.464335,0.0373424,0.450922,0.120504,0.757455,0.668744,0.574412,0.334115,0.558955,0.135935,0.306941,0.696128,0.0305964,0.189264,0.579555,0.272064,0.425062,0.939289,0.873015,0.890739,0.744249,0.591644,0.926712,0.480199,0.71281,0.547208,0.964347,0.885258,0.3711,0.867376,0.210501,0.47982,0.074747,0.0562544,0.683096,0.336424,0.171181,0.955672,0.669718,0.994128,0.477688,0.0660757,0.059163,0.386169,0.295598,0.691557,0.634502,0.901665,0.464836,0.64436,0.939847,0.399131,0.729271,0.535259,0.322781,0.00506014,0.327929,0.488708,0.76812,0.425582,0.808086,0.161951,0.323828,0.922362,0.895488,0.937604,0.699205,0.314401,0.864534,0.547596,0.882909,0.152591,0.41873,0.729648,0.814356,0.250145,0.527807,0.645693,0.481578,0.879995,0.833579,0.0704737,0.664081,0.513777,0.584123,0.267316,0.127892,0.823319,0.0859808,0.499549,0.00990897,0.223724,0.825581,0.333701,0.0788665,0.0214883,0.349302,0.923272,0.972428,0.355923,0.0559035,0.5206,0.431139,0.843444,0.676898,0.986248,0.864624,0.91833,0.742253,0.577958,0.935047,0.427419,0.927385,0.228498,0.986092,0.634663,0.984551,0.49856,0.701214,0.501432,0.804027,0.335075,0.413176,0.372413,0.520676,0.184039,0.309961,0.364946,0.302238,0.294529,0.109035,0.762729,0.693235,0.147972,0.169479,0.62606,0.87062,0.110197,0.742343,0.0208703,0.705896,0.593607,0.843802,0.863676,0.0337977,0.392546,0.176336,0.19001,0.770434,0.117362,0.175887,0.142246,0.63813,0.514591,0.121928,0.758769,0.385884,0.689443,0.777401,0.967846,0.640917,0.638743,0.13904,0.337444,0.260553,0.944246,0.993958,0.222661,0.813827,0.876956,0.965092,0.0317816,0.627416,0.307385,0.155848,0.904031,0.797526,0.154283,0.627952,0.243046,0.469523,0.500027,0.0270586,0.484567,0.742487,0.0403335,0.814419,0.943235,0.201986,0.321045,0.956659,0.288424,0.77926,0.443438,0.697866,0.905666,0.890437,0.477065,0.0861438,0.272059,0.867003,0.746256,0.0148289,0.968724,0.895759,0.595721,0.138487,0.687155,0.935385,0.224602,0.0776249,0.614476,0.188723,0.168557,0.149521,0.938088,0.593298,0.228176,0.678441,0.727276,0.595035,0.886168,0.673022,0.755939,0.310026,0.567797,0.460818,0.0297664,0.371367,0.228514,0.641065,0.509512,0.40674,0.890791,0.769364,0.495068,0.0571873,0.517243,0.12881,0.186616,0.827665,0.0614116,0.745069,0.420126,0.0284123,0.645727,0.635851,0.806781,0.393809,0.189331,0.645728,0.0301622,0.745346,0.453278,0.4889,0.0314257,0.211265,0.351787,0.550752,0.52033,0.604612,0.918517,0.519954,0.913254,0.167365,0.537637,0.486134,0.246033,0.430247,0.934398,0.406087,0.00417197,0.720185,0.915526,0.315069,0.892554,0.517939,0.303998,0.861582,0.898724,0.541452,0.481307,0.0380505,0.741892,0.489129,0.276811,0.522698,0.452237,0.77033,0.612377,0.0396984,0.382314,0.707394,0.694974,0.591259,0.960562,0.465272,0.222593,0.401149,0.313431,0.817495,0.288413,0.098191,0.930388,0.683704,0.725228,0.467858,0.467563,0.217768,0.253621,0.397469,0.548975,0.745889,0.87242,0.986371,0.814922,0.621414,0.735115,0.51608,0.911101,0.536281,0.165954,0.678821,0.327621,0.944205,0.745627,0.506799,0.432516,0.179347,0.910336,0.363886,0.12348,0.183916,0.68101,0.103774,0.571664,0.409627,0.93269,0.233847,0.695122,0.666518,0.408489,0.972838,0.406917,0.258217,0.135072,0.1809,0.227493,0.273286,0.878231,0.260481,0.36665,0.366646,0.132907,0.865229,0.87511,0.913234,0.931757,0.280171,0.194222,0.267804,0.268265,0.879448,0.974456,0.453927,0.133218,0.778867,0.885128,0.403274,0.510576,0.284543,0.794527,0.541902,0.307571,0.674577,0.658513,0.0512753,0.575114,0.0203633,0.175117,0.0933231,0.692537,0.273174,0.242567,0.239976,0.0304041,0.528807,0.764928,0.774302,0.331272,0.566407,0.656623,0.889572,0.828661,0.272426,0.953656,0.614255,0.800329,0.13203,0.645252,0.52193,0.809072,0.19061,0.370278,0.293936,0.922276,0.386231,0.706001,0.573287,0.572438,0.271062,0.0851235,0.0501519,0.155877,0.610771,0.466674,0.643462,0.204132,0.794284,0.620814,0.526575,0.505855,0.909363,0.829093,0.745571,0.508217,0.761337,0.883155,0.268493,0.40556,0.020986,0.270237,0.505039,0.144346,0.020568,0.110685,0.811186,0.29433,0.537998,0.872613,0.497106,0.448709,0.589455,0.868066,0.497222,0.645682,0.524774,0.183982,0.348641,0.386504,0.354399,0.900535,0.999711,0.142287,0.329585,0.0876762,0.739171,0.0975209,0.24623,0.238156,0.498938,0.662588,0.762803,0.0670915,0.135272,0.844366,0.202431,0.886474,0.653234,0.840956,0.20011,0.116077,0.587853,0.755967,0.0577074,0.744385,0.0464751,0.687406,0.102315,0.536293,0.0311879,0.276576,0.802663,0.663756,0.322531,0.489042,0.295093,0.974498,0.501422,0.908056,0.918999,0.732541,0.384927,0.711279,0.60745,0.809578,0.863419,0.704952,0.73035,0.0880114,0.117276,0.764691,0.772014,0.561806,0.754651,0.380321,0.947707,0.138373,0.00353855,0.315,0.129663,0.319495,0.0719039,0.311093,0.539245,0.692558,0.271701,0.676162,0.626312,0.490526,0.256056,0.757429,0.803567,0.979005,0.619443,0.427062,0.00134891,0.0501172,0.482737,0.282816,0.489665,0.319369,0.037295,0.433484,0.145029,0.194344,0.352622,0.43055,0.0937043,0.0494656,0.177886,0.393138,0.700686,0.757173,0.0502885,0.699215,0.6055,0.60161,0.301224,0.352916,0.960428,0.1431,0.43358,0.629046,0.539387,0.929145,0.658674,0.548197,0.425865,0.113308,0.924347,0.792289,0.633563,0.422827,0.259838,0.828181,0.981955,0.817382,0.917663,0.14088,0.758556,0.121908,0.204003,0.787947,0.454385,0.205722,0.252543,0.274914,0.870441,0.145312,0.637731,0.353932,0.636494,0.0578545,0.797045,0.291891,0.352494,0.741978,0.00556839,0.658956,0.660931,0.929323,0.225178,0.005059,0.541512,0.418712,0.134929,0.180036,0.770589,0.300437,0.0344574,0.763344,0.873164,0.650152,0.136169,0.934685,0.638233,0.389202,0.0985436,0.956874,0.175712,0.0164776,0.535253,0.0870044,0.942143,0.0846288,0.916965,0.854512,0.342851,0.815498,0.493824,0.618249,0.15381,0.293548,0.956739,0.403245,0.296669,0.368434,0.687732,0.620263,0.585567,0.948944,0.872566,0.0702962,0.708166,0.357346,0.119931,0.700909,0.228538,0.703995,0.8747,0.763051,0.201362,0.919726,0.49771,0.943091,0.122613,0.327055,0.454743,0.503393,0.717218,0.905362,0.454525,0.161647,0.0856845,0.182009,0.701054,0.0729885,0.726304,0.812754,0.191295,0.957564,0.354645,0.137742,0.145829,0.082195,0.703393,0.99194,0.662786,0.181214,0.236612,0.161558,0.480009,0.48907,0.840952,0.125428,0.0433766,0.82608,0.557618,0.151914,0.51035,0.21451,0.795482,0.743775,0.794884,0.825728,0.271505,0.509219,0.303585,0.0591962,0.433925,0.205945,0.520737,0.165721,0.503895,0.407798,0.444334,0.949592,0.643273,0.281011,0.289376,0.199746,0.80639,0.351711,0.224903,0.716831,0.662732,0.740266,0.964737,0.93393,0.714827,0.157846,0.694128,0.475893,0.122188,0.677809,0.232115,0.39143,0.442892,0.511997,0.296097,0.971124,0.124151,0.109322,0.426104,0.883841,0.699063,0.92263,0.445667,0.80017,0.691481,0.722274,0.616174,0.853106,0.556664,0.916272,0.118239,0.821756,0.475219,|0.718851,0.436619,0.097279,0.624107,0.0961505,0.894051,0.388461,0.834527,0.344976,0.739344,0.28807,0.998508,0.788853,0.996985,0.108536,0.76162,0.973816,0.722136,0.288774,0.440647,0.790778,0.913707,0.847268,0.951866,0.700101,0.976804,0.59454,0.145761,0.00736547,0.0317842,0.167413,0.237953,0.946181,0.701197,0.764785,0.0700915,0.792355,0.983193,0.769136,0.994065,0.644964,0.846657,0.117814,0.862533,0.337737,0.29274,0.338675,0.693643,0.997457,0.5053,0.0742366,0.815173,0.342863,0.660647,0.728125,0.0887896,0.397837,0.228046,0.167799,0.0286238,0.021348,0.0629485,0.930128,0.970601,0.829872,0.0819936,0.919071,0.190862,0.0900083,0.837882,0.442864,0.19131,0.0263157,0.982114,0.836175,0.627626,0.404289,0.425832,0.506553,0.0435309,0.162102,0.320111,0.782471,0.574746,0.362414,0.567422,0.923726,0.0797656,0.95216,0.863597,0.669972,0.327076,0.688159,0.487459,0.00334764,0.498099,0.604014,0.855459,0.318651,0.218964,0.0429072,0.24623,0.293957,0.822696,0.334025,0.205074,0.00898468,0.639912,0.340388,0.906317,0.637038,0.833704,0.340184,0.607891,0.894647,0.3534,0.64348,0.999066,0.636226,0.474916,0.0284774,0.477738,0.635974,0.699566,0.512482,0.204292,0.804695,0.537633,0.535932,0.397709,0.983113,0.990995,0.637951,0.513962,0.996138,0.229399,0.0562265,0.68322,0.183591,0.235262,0.772005,0.0959249,0.333338,0.23702,0.741087,0.765479,0.941704,0.117388,0.886367,0.369673,0.705769,0.0701465,0.630337,0.423489,0.353496,0.336808,0.431441,0.524636,0.50017,0.276828,0.195193,0.977948,0.264687,0.165755,0.605164,0.241703,0.118884,0.802069,0.377568,0.58332,0.968208,0.838262,0.0814698,0.713996,0.825302,0.0205455,0.880184,0.128149,0.527084,0.0472428,0.390459,0.728168,0.361089,0.0181627,0.504303,0.315852,0.369503,0.961055,0.443036,0.511653,0.772059,0.0961844,0.0108,0.423999,0.694716,0.851189,0.921777,0.20189,0.0964419,0.193351,0.67272,0.581189,0.58472,0.538874,0.244804,0.122423,0.144897,0.471385,0.434338,0.617173,0.236908,0.232164,0.8448,0.34612,0.336459,0.290504,0.700604,0.466802,0.318284,0.763882,0.359112,0.677686,0.713751,0.84866,0.236047,0.72982,0.279498,0.428614,0.701721,0.775532,0.0704317,0.153046,0.952496,0.681648,0.124832,0.081663,0.623869,0.429844,0.844995,0.301659,0.391866,0.669683,0.0913208,0.231326,0.241494,0.654596,0.688601,0.847801,0.709249,0.226697,0.653953,0.946934,0.607157,0.925938,0.816236,0.611552,0.274267,0.510418,0.725413,0.428129,0.722854,0.172088,0.46296,0.230502,0.882092,0.0615011,0.163834,0.956128,0.469768,0.910754,0.472165,0.366964,0.0393731,0.598879,0.850472,0.162698,0.961478,0.80935,0.0389498,0.219478,0.375877,0.970823,0.243744,0.844664,0.245104,0.567543,0.666514,0.468041,0.0418475,0.306898,0.963884,0.490765,0.00323105,0.992617,0.907746,0.910623,0.235238,0.0715523,0.763828,0.964732,0.943121,0.700447,0.396347,0.937696,0.462658,0.900608,0.974365,0.0258725,0.142994,0.499137,0.205503,0.235206,0.120022,0.593458,0.386779,0.839663,0.0255876,0.248534,0.569633,0.388839,0.0136291,0.848258,0.295806,0.513668,0.802041,0.45486,0.773702,0.149668,0.429184,0.052733,0.396619,0.367163,0.385241,0.932587,0.494205,0.550723,0.933254,0.200317,0.435715,0.160524,0.761187,0.892045,0.466912,0.968474,0.779377,0.741872,0.683144,0.765153,0.717631,0.758802,0.598299,0.384136,0.889166,0.985919,0.943808,0.787708,0.0184648,0.00479954,0.722486,0.592036,0.339437,0.946107,0.579796,0.95225,0.362166,0.17317,0.400142,0.480385,0.0895856,0.922594,0.508669,0.56623,0.275038,0.828118,0.040994,0.949296,0.573566,0.353482,0.510655,0.185405,0.921896,0.0448622,0.573182,0.74056,0.763893,0.315324,0.606471,0.328789,0.705168,0.933731,0.485745,0.158794,0.78378,0.588435,0.103675,0.0310636,0.76258,0.309354,0.704063,0.196987,0.652641,0.940206,0.17712,0.863349,0.505292,0.662435,0.160907,0.790486,0.069037,0.208349,0.937294,0.45156,0.454437,0.787628,0.478789,0.0641292,0.593735,0.920613,0.644383,0.287326,0.12913,0.225699,0.210862,0.654273,0.129265,0.475384,0.86567,0.681028,0.78135,0.254988,0.153899,0.149377,0.894993,0.223959,0.901704,0.469293,0.203487,0.354985,0.521196,0.726243,0.900649,0.26185,0.555017,0.272878,0.174312,0.585056,0.86066,0.523305,0.142562,0.278917,0.313574,0.911439,0.416172,0.341223,0.511974,0.852551,0.428653,0.394373,0.158197,0.33987,0.909209,0.0221471,0.721894,0.982555,0.860157,0.077087,0.76399,0.660588,0.681102,0.0345849,0.928086,0.940864,0.526088,0.0104273,0.71532,0.06516,0.415184,0.109909,0.919955,0.923485,0.683595,0.583733,0.233117,0.93495,0.998476,0.332202,0.717961,0.253088,0.254829,0.53419,0.745396,0.543702,0.934897,0.978988,0.920431,0.577313,0.122217,0.370968,0.603437,0.455851,0.190042,0.29928,0.462006,0.158484,0.530305,0.791337,0.525537,0.229603,0.313342,0.915045,0.322415,0.0328726,0.361523,0.204398,0.45239,0.115417,0.0410535,0.977529,0.881282,0.530441,0.583893,0.461084,0.546892,0.25772,0.511927,0.540421,0.212872,0.766391,0.854193,0.0421857,0.331439,0.74093,0.561734,0.460112,0.83771,0.247569,0.78292,0.147484,0.249052,0.55733,0.062001,0.840801,0.848555,0.75536,0.9675,0.557859,0.972664,0.148749,0.381864,0.230812,0.134847,0.89443,0.233212,0.912124,0.648262,0.375061,0.721735,0.666606,0.130309,0.829831,0.403884,0.837814,0.754312,0.561137,0.851969,0.999128,0.680526,0.877056,0.999266,0.714389,0.853702,0.178036,0.67986,0.967652,0.981877,0.914521,0.711771,0.565841,0.767976,0.516916,0.815626,0.00225663,0.0102506,0.688949,0.788453,0.349258,0.76486,0.594764,0.418333,0.0195217,0.107579,0.0679353,0.0405566,0.723055,0.393174,0.356628,0.117507,0.163632,0.456207,0.529178,0.28766,0.828616,0.56862,0.647478,0.281063,0.923375,0.23113,0.0294645,0.457094,0.0758017,0.84188,0.322349,0.976866,0.0783796,0.772571,0.629885,0.338802,0.905567,0.870554,0.0184911,0.176222,0.709119,0.560205,0.917543,0.11567,0.695642,0.489522,0.931122,0.408159,0.922588,0.395883,0.917729,0.45167,0.189907,0.0682994,0.23417,0.290183,0.407419,0.884437,0.524466,0.958687,0.58612,0.991377,0.147095,0.964895,0.668583,0.917567,0.286061,0.281586,0.474875,0.506491,0.0804037,0.405057,0.603127,0.711882,0.135799,0.175896,0.0515267,0.544196,0.100412,0.390971,0.522968,0.437567,0.420736,0.224889,0.708916,0.0399485,0.303004,0.289794,0.554289,0.187982,0.905622,0.280773,0.947153,0.282931,0.776042,0.341933,0.363935,0.638627,0.163756,0.644725,0.513179,0.579445,0.276765,0.763053,0.829545,0.662872,0.185683,0.512638,0.000199854,0.553691,0.443037,0.156533,0.943802,0.586721,0.215055,0.0770754,0.687905,0.415692,0.1468,0.336962,0.257527,0.317922,0.255736,0.175842,0.921279,0.775148,0.0100582,0.358136,0.539434,0.448864,0.779182,0.173321,0.192506,0.818175,0.9522,0.474018,0.602094,0.378373,0.929346,0.00259995,0.160954,0.561734,0.0279697,0.975143,0.855404,0.636974,0.207375,0.0472906,0.098711,0.730877,0.813937,0.693699,0.172452,0.538668,0.286401,0.320428,0.877742,0.014182,0.142279,0.740679,0.553237,0.419241,0.720447,0.468266,0.593014,0.311496,0.181999,0.648435,0.792558,0.243287,0.367803,0.13912,0.20871,0.894661,0.0262634,0.338926,0.792208,0.229359,0.990263,0.988311,0.283631,0.46537,0.674486,0.433647,0.495422,0.933538,0.909481,0.144091,0.991992,0.409268,0.546063,0.0809215,0.550773,0.448416,0.211747,0.106019,0.0808325,0.827487,0.703395,0.287594,0.312741,0.104843,0.0918474,0.234031,0.66561,0.799914,0.460459,0.727713,0.26565,0.096747,0.72097,0.533101,0.231599,0.19822,0.982887,0.617754,0.17153,0.130371,0.847693,0.92905,0.116051,0.906349,0.319065,0.0140356,0.943908,0.178251,0.521531,0.55286,0.724774,0.227967,0.550447,0.830417,0.0590294,0.654174,0.710047,0.545006,0.981506,0.672803,0.550512,0.50705,0.257194,0.0549544,0.23675,0.363702,0.105581,0.787851,0.860129,0.956624,0.37721,0.903348,0.367771,0.52759,0.462856,0.234146,0.464368,0.610426,0.183818,0.316727,0.0432442,0.419218,0.443906,0.785313,0.767472,0.992402,0.942521,0.0870768,0.729523,0.330472,0.00420457,0.0254668,0.0509373,0.795276,0.392817,0.117168,0.571614,0.706103,0.0762469,0.237999,0.0119159,0.245784,0.751987,0.406297,0.937924,0.0823088,0.33756,0.43033,0.256385,0.759154,0.505853,0.289058,0.573558,0.0746993,0.690365,0.610543,0.111645,0.275863,0.583434,0.933966,0.19683,0.20523,0.0417162,0.0868701,0.661584,0.371986,0.170286,0.715255,0.600285,0.803625,0.986399,0.510021,0.800107,0.581452,0.410635,0.767851,0.386787,0.687568,0.257299,0.944164,0.452435,0.778973,0.638674,0.718703,0.312743,0.553651,0.146151,0.0877557,0.26743,0.214571,0.246839,0.0438142,0.0603071,0.999969,0.881605,0.568968,0.00436217,0.377908,0.581744,0.0315325,0.210715,0.361277,0.956389,0.766596,0.447627,0.206429,0.75461,0.143574,0.991032,0.0967705,0.119999,0.322634,0.171306,0.40825,0.469158,0.392016,0.656429,0.270731,0.868436,0.481862,0.0838718,0.797881,0.0637927,0.986746,0.668797,0.569171,0.603931,0.0896221,0.378472,0.747786,0.932786,0.888844,0.893721,0.171849,0.775235,0.549225,0.13078,0.183094,0.662558,0.567851,0.308167,0.957755,0.499992,0.802397,0.695203,0.224317,0.319008,0.762148,0.0673976,0.865113,0.888836,0.0352237,0.840751,0.588884,0.00593245,0.220591,0.587132,0.0147591,0.11466,0.401694,0.512695,0.834437,0.77002,0.520685,0.686153,0.376667,0.256261,0.710068,0.662983,0.161462,0.672276,0.312326,0.99955,0.850981,0.446817,0.250367,0.0916758,0.441701,0.34065,0.739506,0.328412,|0.970872,0.959846,0.487609,0.770596,0.418168,0.924262,0.733579,0.92595,0.74903,0.0610236,0.421359,0.657379,0.242725,0.539984,0.681538,0.157836,0.971237,0.332766,0.207238,0.356496,0.790096,0.514422,0.501986,0.412486,0.643221,0.141839,0.767953,0.586938,0.923727,0.0145299,0.327421,0.0273671,0.362103,0.330901,0.105758,0.302836,0.87812,0.541373,0.0264874,0.203122,0.180695,0.921886,0.198051,0.629882,0.745241,0.509086,0.386474,0.400238,0.750748,0.373002,0.981936,0.239289,0.19828,0.238831,0.280571,0.460109,0.659645,0.27002,0.565066,0.212598,0.263134,0.728837,0.464922,0.572072,0.360052,0.677826,0.860175,0.0491892,0.793387,0.0756192,0.926701,0.56618,0.719034,0.575018,0.923187,0.169715,0.98693,0.72332,0.936949,0.347072,0.658754,0.994819,0.508576,0.44581,0.101851,0.870115,0.0619987,0.163367,0.834298,0.608786,0.889016,0.86115,0.369209,0.93112,0.749654,0.411584,0.222336,0.669602,0.0864797,0.828103,0.37134,0.608883,0.223799,0.444195,0.687848,0.174132,0.656968,0.544397,0.0988224,0.0684648,0.267942,0.379175,0.951015,0.0559994,0.299036,0.395896,0.684353,0.698566,0.138926,0.0324044,0.499056,0.0945969,0.202551,0.686733,0.0270174,0.60921,0.526036,0.766258,0.0687722,0.360036,0.110375,0.562281,0.425184,0.271344,0.250894,0.147582,0.503507,0.998815,0.552546,0.655445,0.173844,0.986818,0.810631,0.39762,0.905927,0.340536,0.0459488,0.158799,0.929804,0.738753,0.662967,0.812275,0.106141,0.415048,0.849523,0.712095,0.452571,0.787529,0.975689,0.0235286,0.978996,0.139203,0.942947,0.606769,0.84656,0.547135,0.951393,0.0962251,0.623156,0.857792,0.375231,0.0168619,0.298632,0.598632,0.192759,0.0599021,0.873316,0.268905,0.54463,0.671584,0.840027,0.324338,0.0874097,0.549365,0.962866,0.555334,0.0142162,0.473163,0.837362,0.163043,0.992339,0.51128,0.683343,0.016484,0.800525,0.221296,0.990781,0.887916,0.478345,0.940303,0.274257,0.358226,0.748067,0.387083,0.889216,0.335984,0.765557,0.723592,0.159326,0.853255,0.19514,0.219269,0.9042,0.474858,0.573985,0.574266,0.689178,0.0917038,0.603636,0.665153,0.414548,0.600685,0.445955,0.842954,0.664657,0.262109,0.168053,0.121119,0.769109,0.150814,0.637169,0.210741,0.704836,0.847428,0.102887,0.896095,0.271561,0.423143,0.528469,0.949888,0.294732,0.158346,0.19441,0.814849,0.818321,0.226058,0.995035,0.879627,0.612937,0.300497,0.0688347,0.322589,0.556149,0.81981,0.817436,0.818673,0.412931,0.154949,0.470437,0.562499,0.00172573,0.682778,0.743732,0.080899,0.408234,0.517689,0.543836,0.897466,0.0190289,0.0355306,0.3491,0.48026,0.318853,0.222212,0.344651,0.602487,0.0750957,0.403555,0.105351,0.457994,0.34416,0.519631,0.86707,0.747179,0.06564,0.55644,0.534467,0.0600993,0.720223,0.0858395,0.889527,0.0689521,0.196048,0.859141,0.684395,0.136701,0.957978,0.0637988,0.704342,0.592895,0.0896806,0.694498,0.671109,0.0834613,0.805777,0.507403,0.994534,0.693685,0.235791,0.519744,0.197902,0.81953,0.0367749,0.425869,0.457528,0.838007,0.848844,0.614596,0.0303565,0.790181,0.0831535,0.849345,0.473097,0.425367,0.401499,0.874838,0.676034,0.749465,0.0424665,0.615634,0.964972,0.0800717,0.0980177,0.728752,0.787852,0.957971,0.836392,0.790675,0.628224,0.239013,0.209115,0.6401,0.324581,0.039665,0.0673876,0.109659,0.809031,0.244787,0.245165,0.461104,0.0575816,0.110542,0.924537,0.163817,0.748652,0.298374,0.736219,0.793641,0.220639,0.545834,0.625531,0.513044,0.979796,0.587721,0.507807,0.0559298,0.666496,0.811106,0.262555,0.0861229,0.667587,0.965604,0.82193,0.780085,0.969836,0.795209,0.612285,0.877811,0.621904,0.2763,0.412646,0.842075,0.627983,0.698662,0.877092,0.560089,0.296766,0.380816,0.925662,0.207853,0.944296,0.0608132,0.889987,0.663388,0.126589,0.00707519,0.516829,0.880592,0.895927,0.58403,0.420504,0.245732,0.736588,0.840529,0.477792,0.569992,0.331274,0.307003,0.0880074,0.574116,0.00830287,0.593569,0.175463,0.386047,0.0531092,0.00786388,0.823888,0.264514,0.0301254,0.597537,0.568276,0.225721,0.899664,0.915079,0.705996,0.952271,0.459419,0.72018,0.954347,0.210761,0.137692,0.421764,0.70915,0.656074,0.811511,0.0177358,0.843832,0.0338305,0.931872,0.0300894,0.416743,0.690556,0.73378,0.0691245,0.749801,0.998436,0.484233,0.60527,0.420703,0.169314,0.0587807,0.111106,0.648749,0.306317,0.0705457,0.707322,0.610877,0.78954,0.120468,0.286252,0.400804,0.433625,0.0444598,0.38527,0.981954,0.620109,0.822841,0.374114,0.569759,0.931882,0.560932,0.006706,0.23149,0.142757,0.751744,0.952741,0.545349,0.913005,0.655597,0.0328977,0.532905,0.501517,0.446415,0.298546,0.665156,0.294194,0.449298,0.810083,0.00324142,0.9723,0.149379,0.189279,0.80655,0.366653,0.811275,0.720612,0.68121,0.269116,0.798239,0.193829,0.0806056,0.816085,0.412922,0.10616,0.298341,0.186501,0.0245783,0.0656754,0.944623,0.814542,0.0184383,0.358449,0.210449,0.990574,0.780328,0.611945,0.59476,0.796681,0.881657,0.691823,0.878646,0.709699,0.876844,0.904889,0.6069,0.177003,0.780497,0.845964,0.192709,0.109139,0.333519,0.024165,0.293442,0.852061,0.147636,0.242405,0.1873,0.284336,0.345608,0.124188,0.299238,0.201872,0.23702,0.976629,0.155481,0.051617,0.763275,0.735247,0.103903,0.0916483,0.0675877,0.853267,0.157223,0.00768328,0.943439,0.621263,0.990006,0.586399,0.5188,0.106063,0.0247605,0.596483,0.283664,0.783777,0.969327,0.0828068,0.852216,0.993302,0.473191,0.145807,0.472598,0.124563,0.103625,0.651802,0.590945,0.0801487,0.294347,0.739263,0.412996,0.506411,0.938438,0.944125,0.53932,0.84468,0.410865,0.66238,0.301353,0.812155,0.0543557,0.256145,0.187333,0.259757,0.453965,0.0744652,0.504336,0.474976,0.984181,0.431464,0.0729971,0.528431,0.347167,0.567695,0.381814,0.471963,0.0498812,0.372183,0.826381,0.605435,0.972519,0.990526,0.0337188,0.829407,0.98477,0.98147,0.136703,0.637854,0.155626,0.126709,0.580206,0.561327,0.366781,0.729761,0.577328,0.889233,0.368816,0.943576,0.751025,0.394507,0.225725,0.913225,0.216492,0.706223,0.705939,0.232249,0.376202,0.68819,0.218059,0.673771,0.648328,0.902572,0.109779,0.597011,0.955856,0.544632,0.577871,0.0707305,0.403262,0.188782,0.984648,0.701209,0.239037,0.115353,0.211871,0.902553,0.434389,0.159958,0.591235,0.266676,0.34825,0.142657,0.60671,0.950128,0.426797,0.639861,0.905579,0.399022,0.324357,0.274299,0.158929,0.852357,0.0263755,0.461866,0.0539387,0.67792,0.611175,0.821053,0.0567418,0.202994,0.261522,0.744768,0.146133,0.500851,0.35344,0.551591,0.532691,0.305366,0.0347437,0.465311,0.205489,0.674339,0.0673895,0.962574,0.333682,0.974298,0.571351,0.0888789,0.930524,0.710784,0.15115,0.30608,0.674678,0.377675,0.595165,0.0943125,0.376837,0.286632,0.655113,0.819554,0.316326,0.370899,0.80966,0.421902,0.550366,0.937945,0.107002,0.554245,0.962467,0.860685,0.142923,0.24589,0.13759,0.804563,0.121717,0.904979,0.902983,0.858404,0.358301,0.17834,0.200729,0.651631,0.641335,0.552654,0.704124,0.201225,0.598776,0.155492,0.961447,0.787162,0.808133,0.267873,0.841023,0.0413607,0.753073,0.782649,0.10709,0.450483,0.0349116,0.81727,0.421441,0.092964,0.94518,0.982949,0.482016,0.514461,0.554716,0.0825186,0.564448,0.471457,0.902792,0.22638,0.107277,0.75477,0.961019,0.521408,0.14135,0.556825,0.260941,0.404997,0.0203009,0.320802,0.104483,0.0779328,0.752944,0.262168,0.373336,0.79256,0.563757,0.81136,0.00598246,0.0702739,0.860317,0.865549,0.720146,0.573052,0.199285,0.627942,0.639566,0.760434,0.624648,0.945347,0.684703,0.704316,0.738862,0.270051,0.190746,0.154299,0.579755,0.36918,0.645452,0.997379,0.133776,0.472125,0.884132,0.821591,0.381902,0.74833,0.337518,0.948618,0.478923,0.720999,0.980519,0.718084,0.107644,0.563288,0.0189607,0.891125,0.886533,0.55069,0.841446,0.213499,0.885097,0.32999,0.351357,0.810163,0.90348,0.761511,0.591575,0.403348,0.268534,0.89183,0.575561,0.595187,0.891562,0.601243,0.807457,0.275114,0.927828,0.672234,0.601045,0.817383,0.127336,0.932895,0.179344,0.916794,0.427043,0.00158411,0.265722,0.373664,0.463196,0.0183104,0.170998,0.484122,0.106638,0.225258,0.913637,0.953851,0.708596,0.470224,0.913282,0.142594,0.216003,0.273807,0.401942,0.590417,0.354834,0.142214,0.885223,0.251841,0.681141,0.537818,0.155559,0.25263,0.00707507,0.125798,0.56632,0.800233,0.445773,0.682494,0.940149,0.399105,0.781744,0.285682,0.875631,0.0492063,0.0501011,0.786805,0.200374,0.205192,0.662611,0.204653,0.788303,0.940774,0.0646598,0.384463,0.61562,0.968435,0.871191,0.214589,0.121978,0.200355,0.476809,0.379385,0.460157,0.207983,0.71886,0.962583,0.473383,0.0763085,0.486342,0.134081,0.558774,0.301417,0.0464578,0.807213,0.853527,0.00344473,0.895371,0.606734,0.035521,0.208412,0.552109,0.0187654,0.580195,0.12839,0.800553,0.703653,0.420461,0.750759,0.482432,0.53032,0.86935,0.963602,0.725617,0.573434,0.69322,0.558334,0.0443377,0.393209,0.296909,0.763715,0.825425,0.268577,0.719261,0.767727,0.701029,0.426612,0.989876,0.543498,0.947697,0.463285,0.426237,0.760214,0.9181,0.738755,0.577109,0.752609,0.789344,0.747561,0.01502,0.691786,0.0879847,0.687731,0.8397,0.869856,0.867585,0.265416,0.693146,0.371655,0.153636,0.661443,0.125899,0.488836,0.232948,0.696551,0.995754,0.748104,0.226627,0.823701,0.176289,0.474173,0.880731,0.338047,0.690836,0.331877,0.140635,0.24786,0.672171,0.922851,0.891891,0.839635,0.244574,0.386614,0.341858,0.122588,0.385439,0.855711,0.98895,0.493707,0.938681,0.516549,|0.228714,0.466564,0.16551,0.772306,0.287419,0.948655,0.165375,0.317625,0.429271,0.37564,0.355755,0.87604,0.0175673,0.43065,0.93886,0.0838377,0.498591,0.519952,0.201906,0.315484,0.571034,0.38688,0.513757,0.774391,0.329123,0.325911,0.273027,0.264459,0.660471,0.936211,0.865739,0.429082,0.0595868,0.265755,0.57014,0.03113,0.479396,0.83076,0.775914,0.272096,0.860099,0.399285,0.704808,0.154418,0.335006,0.812447,0.998942,0.456967,0.319849,0.970077,0.847355,0.892545,0.724164,0.0725296,0.397713,0.0586277,0.396074,0.416085,0.241013,0.313471,0.268181,0.881796,0.651233,0.766075,0.10481,0.185759,0.232034,0.664178,0.156989,0.233632,0.367715,0.30143,0.843058,0.841697,0.0482227,0.527919,0.383769,0.0929999,0.0648598,0.276306,0.819725,0.277236,0.555153,0.90731,0.573613,0.0595948,0.986663,0.816045,0.835256,0.0964612,0.423028,0.995556,0.124061,0.432205,0.119132,0.226673,0.0432886,0.645471,0.744595,0.560735,0.444575,0.885084,0.667802,0.42914,0.112465,0.693605,0.419952,0.052683,0.962431,0.792219,0.940579,0.974441,0.8761,0.315372,0.139028,0.365029,0.737215,0.84059,0.996583,0.0446305,0.516025,0.400157,0.0929836,0.774796,0.0857306,0.0914187,0.452809,0.0499276,0.434519,0.608887,0.916499,0.931693,0.546432,0.581725,0.984813,0.760951,0.385079,0.482383,0.124433,0.0527817,0.36031,0.774755,0.981926,0.251872,0.266223,0.611852,0.706088,0.855387,0.600882,0.265432,0.238394,0.0107173,0.777459,0.4652,0.630273,0.985615,0.86703,0.339765,0.663693,0.848878,0.0319631,0.266196,0.214267,0.564253,0.184512,0.751356,0.512947,0.0886994,0.540125,0.153802,0.253766,0.578537,0.265988,0.00353307,0.393514,0.0562754,0.608825,0.877226,0.314755,0.464727,0.856649,0.535242,0.480761,0.232431,0.0650223,0.326267,0.896795,0.444838,0.585123,0.649886,0.835467,0.48002,0.064747,0.717756,0.855521,0.657712,0.466884,0.838946,0.00321287,0.249448,0.868375,0.952636,0.79157,0.545661,0.799402,0.934249,0.772426,0.00639945,0.684256,0.805254,0.84276,0.440998,0.785063,0.367448,0.0366036,0.875175,0.238923,0.568066,0.103062,0.0621686,0.908446,0.22517,0.24242,0.719736,0.337176,0.664461,0.666461,0.24249,0.059252,0.793729,0.327401,0.567583,0.383891,0.127021,0.609361,0.670406,0.739644,0.65095,0.027869,0.157726,0.941937,0.520302,0.918726,0.166363,0.139087,0.957175,0.873256,0.307952,0.228478,0.201554,0.853312,0.441566,0.184019,0.713247,0.857205,0.390578,0.127757,0.137563,0.974059,0.279402,0.47748,0.30245,0.237494,0.703214,0.558605,0.359972,0.870936,0.176699,0.395757,0.559175,0.335515,0.124036,0.0846978,0.524716,0.995245,0.911631,0.360772,0.380886,0.0855755,0.201939,0.75474,0.0930602,0.520255,0.569687,0.880364,0.501683,0.347022,0.51246,0.0561419,0.964011,0.780361,0.269515,0.877007,0.27539,0.0931658,0.324182,0.52769,0.314994,0.730983,0.360251,0.594144,0.387875,0.0132416,0.707646,0.773771,0.156124,0.030371,0.0336044,0.402671,0.203316,0.897893,0.923285,0.450248,0.883806,0.710446,0.679443,0.672169,0.48524,0.699669,0.446299,0.880687,0.789298,0.847322,0.205798,0.608453,0.474887,0.327126,0.844668,0.973692,0.0116956,0.171896,0.756768,0.125763,0.36081,0.293851,0.206473,0.295783,0.236818,0.842994,0.218841,0.293783,0.449711,0.199173,0.966609,0.506371,0.84597,0.966798,0.706898,0.900544,0.570041,0.910464,0.594147,0.523959,0.0574084,0.213243,0.352998,0.24233,0.000700235,0.86761,0.522727,0.406035,0.261458,0.543108,0.285996,0.350905,0.741222,0.398883,0.274252,0.534541,0.203384,0.235123,0.529882,0.917563,0.595848,0.273386,0.7322,0.420978,0.0723372,0.959031,0.232206,0.562892,0.163594,0.830288,0.930854,0.243533,0.194296,0.724685,0.0615714,0.112806,0.369381,0.55392,0.762312,0.651833,0.361582,0.451857,0.637042,0.447248,0.460223,0.970112,0.725347,0.870413,0.61524,0.876867,0.881373,0.297193,0.683157,0.757386,0.33304,0.650732,0.326143,0.977621,0.992933,0.239633,0.673276,0.542873,0.526903,0.468264,0.483789,0.0692639,0.944077,0.899469,0.75184,0.235038,0.173687,0.731713,0.0225183,0.614937,0.163727,0.56381,0.478184,0.463531,0.34799,0.886581,0.484108,0.354251,0.671612,0.188912,0.511757,0.986658,0.705979,0.752878,0.169978,0.980303,0.403362,0.0235428,0.983912,0.513085,0.958651,0.039898,0.785911,0.336032,0.391808,0.49073,0.94196,0.535227,0.528354,0.900172,0.56027,0.658674,0.643833,0.337694,0.845375,0.133494,0.908845,0.830279,0.0275223,0.503845,0.266695,0.709758,0.820027,0.598088,0.171052,0.989263,0.652999,0.207846,0.990228,0.323423,0.06587,0.3739,0.66264,0.565807,0.123304,0.496548,0.0200062,0.681044,0.158868,0.217354,0.197014,0.715542,0.714183,0.945327,0.838618,0.472761,0.822511,0.197213,0.888719,0.709592,0.759832,0.537473,0.672186,0.829933,0.694957,0.110125,0.629744,0.0228449,0.0601224,0.49921,0.262187,0.606082,0.539529,0.650876,0.0880548,0.762518,0.257591,0.641901,0.678569,0.0506703,0.22373,0.773213,0.452167,0.200029,0.207686,0.242557,0.449131,0.730457,0.846844,0.962506,0.351258,0.744392,0.511923,0.701406,0.550732,0.871715,0.372403,0.335716,0.996457,0.268477,0.0681257,0.00620937,0.115457,0.638352,0.750197,0.697169,0.675105,0.0325065,0.90516,0.175604,0.114996,0.729444,0.302229,0.124423,0.284623,0.170666,0.6276,0.537259,0.43294,0.910637,0.336996,0.48885,0.847371,0.986465,0.684044,0.316911,0.680655,0.593751,0.488008,0.747854,0.167238,0.897453,0.0397487,0.119256,0.827858,0.389072,0.608318,0.617399,0.346366,0.240925,0.0283637,0.403626,0.516762,0.0684027,0.695818,0.959886,0.186447,0.810095,0.174679,0.429559,0.629529,0.791397,0.241288,0.970725,0.62926,0.86362,0.31881,0.798253,0.960275,0.473045,0.446814,0.961307,0.55833,0.856638,0.926473,0.400406,0.92636,0.156987,0.613444,0.129639,0.271885,0.869319,0.31411,0.578274,0.709468,0.730801,0.900858,0.855333,0.497832,0.0343605,0.281566,0.637563,0.821376,0.752749,0.515448,0.400371,0.414113,0.408389,0.84465,0.970039,0.0536683,0.948326,0.766265,0.154827,0.935213,0.005795,0.298865,0.331066,0.330476,0.558752,0.0534012,0.507856,0.76794,0.242736,0.407237,0.945638,0.717643,0.562435,0.578746,0.765719,0.531803,0.317695,0.293538,0.125415,0.197199,0.452908,0.242095,0.80265,0.44093,0.212774,0.678432,0.509922,0.815873,0.435167,0.098424,0.18774,0.614092,0.850907,0.638017,0.479223,0.544746,0.811232,0.213916,0.80483,0.150817,0.433572,0.424637,0.989419,0.993081,0.77963,0.162437,0.907106,0.692886,0.518453,0.702654,0.376548,0.540721,0.520063,0.289952,0.32858,0.0763836,0.526165,0.226965,0.558292,0.64971,0.406834,0.305018,0.12093,0.601393,0.243714,0.136825,0.212352,0.887751,0.193908,0.823136,0.428865,0.209724,0.597899,0.920725,0.355738,0.757156,0.119044,0.948838,0.0173811,0.312945,0.0677831,0.0738595,0.401472,0.208087,0.209554,0.427183,0.0842827,0.296826,0.667678,0.270536,0.365531,0.911344,0.87195,0.553774,0.31054,0.202149,0.265444,0.846011,0.188108,0.955068,0.522725,0.791042,0.723845,0.882914,0.130508,0.807033,0.659045,0.269346,0.943639,0.515356,0.842168,0.166717,0.989349,0.140874,0.375678,0.566861,0.846867,0.391389,0.92907,0.00781316,0.443926,0.950556,0.772465,0.673868,0.97966,0.435845,0.733336,0.808151,0.867866,0.498465,0.376063,0.179673,0.9334,0.438294,0.0171461,0.643822,0.549552,0.577166,0.370445,0.44603,0.0830888,0.254674,0.869573,0.569531,0.0850706,0.79872,0.482947,0.974865,0.847201,0.667326,0.817947,0.980551,0.700383,0.651115,0.827395,0.675412,0.0234001,0.383297,0.0473331,0.401692,0.0425303,0.690481,0.339099,0.685199,0.958989,0.740481,0.153769,0.811861,0.258437,0.883691,0.0143986,0.79436,0.85064,0.0364692,0.786046,0.640423,0.845717,0.896465,0.751711,0.423422,0.696654,0.299641,0.986015,0.57016,0.429347,0.0760937,0.993641,0.594286,0.134736,0.503832,0.38605,0.742477,0.491736,0.848048,0.0080592,0.514771,0.425921,0.555902,0.261824,0.914138,0.360913,0.430577,0.876792,0.349169,0.308973,0.693047,0.280606,0.185019,0.764423,0.955553,0.659038,0.860089,0.635284,0.722857,0.738183,0.320678,0.382596,0.00504309,0.849164,0.448668,0.723383,0.965896,0.463465,0.472302,0.472855,0.066016,0.299969,0.0840032,0.120107,0.267255,0.605476,0.386646,0.259461,0.612086,0.172231,0.617808,0.357008,0.713339,0.0330366,0.302503,0.566818,0.21156,0.653279,0.392456,0.30969,0.877079,0.406632,0.516726,0.362844,0.777208,0.188946,0.652167,0.912154,0.816609,0.530321,0.668385,0.287871,0.607283,0.575146,0.793513,0.98834,0.533813,0.0111265,0.945006,0.881488,0.653546,0.325575,0.674855,0.558404,0.085242,0.280315,0.0754973,0.880568,0.776432,0.989435,0.562928,0.565625,0.194775,0.0904102,0.763881,0.305218,0.794908,0.547146,0.691371,0.168838,0.317487,0.777745,0.835078,0.0856351,0.119354,0.676449,0.209352,0.919071,0.285969,0.113026,0.494077,0.949121,0.302449,0.769651,0.00353974,0.601976,0.598032,0.524596,0.443587,0.596915,0.911519,0.954519,0.148526,0.655692,0.587741,0.85272,0.090894,0.409821,0.134774,0.340644,0.861439,0.949105,0.726583,0.438471,0.831338,0.695221,0.593944,0.454308,0.663719,0.148197,0.688499,0.8679,0.864736,0.0149335,0.180714,0.945455,0.350117,0.473918,0.258686,0.568448,0.371019,0.0445699,0.684608,0.488391,0.0422965,0.819664,0.430458,0.859543,0.896582,0.708642,0.909297,0.448553,0.86745,0.437393,0.387028,0.237978,0.211997,0.391994,0.691008,0.761686,0.303521,0.0762038,0.423984,0.679047,0.403864,0.185455,0.699789,0.0503621,0.574246,0.66564,0.47959,0.217065,0.659068,|0.212794,0.618741,0.183205,0.0161425,0.596018,0.791219,0.711687,0.911616,0.0920509,0.652756,0.562101,0.165283,0.00435871,0.351026,0.63688,0.636482,0.300603,0.809985,0.272745,0.812316,0.434832,0.383281,0.167694,0.452365,0.700141,0.492197,0.286809,0.678539,0.806308,0.0572618,0.59612,0.890887,0.0486846,0.819441,0.142217,0.557202,0.0388678,0.226001,0.591611,0.265988,0.694992,0.681119,0.853805,0.094335,0.0385444,0.964575,0.684613,0.00937748,0.191991,0.315957,0.266092,0.547423,0.918699,0.508461,0.839947,0.38173,0.266724,0.649998,0.0445588,0.733125,0.536554,0.85505,0.812997,0.512667,0.864894,0.446826,0.0519642,0.763015,0.866566,0.626824,0.268938,0.630876,0.119193,0.881952,0.907802,0.0877367,0.54523,0.726155,0.497751,0.285881,0.245712,0.428051,0.862369,0.507432,0.641504,0.985075,0.490971,0.166675,0.318242,0.816073,0.165017,0.749794,0.974634,0.35641,0.555686,0.866339,0.159657,0.799733,0.860781,0.17708,0.284165,0.323243,0.753416,0.842505,0.292885,0.858447,0.0240957,0.113669,0.979138,0.18255,0.364622,0.743642,0.829175,0.109447,0.18463,0.280152,0.735149,0.405242,0.656465,0.108722,0.867777,0.308775,0.950907,0.124307,0.202383,0.439233,0.719248,0.80301,0.231856,0.901862,0.24368,0.906008,0.54657,0.929572,0.748962,0.0666168,0.642923,0.924508,0.252017,0.0136511,0.403864,0.084039,0.249015,0.273148,0.689817,0.490256,0.299449,0.557151,0.255101,0.441325,0.859316,0.943721,0.716952,0.720666,0.749296,0.162671,0.0233825,0.0312957,0.0222735,0.920294,0.0936832,0.286975,0.424039,0.552394,0.029428,0.694093,0.74937,0.0310016,0.0173802,0.165887,0.938875,0.686415,0.710085,0.962117,0.0834875,0.558108,0.675583,0.821594,0.208959,0.385314,0.0160107,0.377457,0.532278,0.450918,0.39309,0.450726,0.433372,0.720141,0.227887,0.5343,0.797906,0.127503,0.884098,0.735456,0.939445,0.468,0.620174,0.108616,0.433332,0.852089,0.537578,0.0447364,0.553777,0.999304,0.600171,0.796841,0.282825,0.725935,0.477019,0.181866,0.192646,0.185345,0.756311,0.136383,0.720207,0.846964,0.714641,0.82289,0.721515,0.159256,0.183237,0.449997,0.464053,0.296693,0.250442,0.43691,0.531684,0.142433,0.60048,0.435095,0.337425,0.800907,0.19467,0.200599,0.110919,0.306205,0.276664,0.589157,0.587096,0.178469,0.840479,0.743753,0.301403,0.084889,0.287771,0.535191,0.225842,0.379843,0.217824,0.419344,0.904539,0.625934,0.427888,0.231469,0.85388,0.635295,0.856976,0.464628,0.213841,0.277009,0.49245,0.183644,0.58702,0.692418,0.129348,0.720227,0.227741,0.820975,0.490563,0.925173,0.320126,0.366065,0.199185,0.995744,0.426501,0.6349,0.84935,0.507643,0.172927,0.199374,0.120827,0.50828,0.819173,0.926148,0.376309,0.187535,0.173929,0.936774,0.117707,0.0541043,0.104276,0.118802,0.0476902,0.705378,0.969949,0.532475,0.507703,0.278972,0.0135928,0.312049,0.901247,0.428344,0.836465,0.993481,0.157179,0.167288,0.0523474,0.990699,0.634829,0.702623,0.284892,0.656565,0.549219,0.990335,0.58595,0.291025,0.902526,0.25336,0.142075,0.79931,0.924134,0.917215,0.945588,0.542408,0.861693,0.774132,0.3502,0.0694908,0.0434321,0.750912,0.886518,0.959767,0.170612,0.132529,0.53741,0.436778,0.0880712,0.801032,0.215989,0.455361,0.557639,0.848305,0.829975,0.651034,0.955525,0.579632,0.983329,0.565295,0.195745,0.452683,0.0797015,0.191741,0.204244,0.594325,0.759459,0.956764,0.570294,0.762182,0.122986,0.0226229,0.0826184,0.859734,0.578774,0.95298,0.784057,0.539991,0.275575,0.0592881,0.760491,0.691837,0.974684,0.0698911,0.0249392,0.709519,0.348153,0.834551,0.672875,0.55259,0.637975,0.781926,0.191796,0.545822,0.189667,0.453807,0.614129,0.777389,0.95797,0.600736,0.412684,0.862332,0.691182,0.457169,0.279859,0.444297,0.210581,0.166367,0.150273,0.62577,0.823745,0.181141,0.556887,0.164278,0.55198,0.257568,0.778951,0.198012,0.922097,0.779983,0.0989363,0.132694,0.833706,0.529023,0.978723,0.825072,0.852552,0.572856,0.956146,0.333204,0.55959,0.511811,0.326391,0.316736,0.68618,0.611949,0.929669,0.38893,0.187959,0.443328,0.896527,0.846219,0.0895205,0.436552,0.429824,0.896531,0.997963,0.811772,0.201745,0.820732,0.0710602,0.711545,0.0168797,0.261553,0.675272,0.881335,0.490041,0.815165,0.47984,0.751681,0.508394,0.750076,0.29921,0.213863,0.527998,0.0271626,0.381644,0.617391,0.5754,0.881844,0.240247,0.829868,0.103719,0.965254,0.822221,0.47531,0.696662,0.092691,0.0991634,0.00756627,0.991339,0.09016,0.374159,0.496276,0.614006,0.408239,0.22171,0.840809,0.367808,0.0859183,0.0295725,0.536282,0.538133,0.966639,0.931321,0.683805,0.824821,0.384245,0.91058,0.789869,0.51764,0.189946,0.652047,0.149145,0.6603,0.403331,0.0485997,0.886556,0.215237,0.887187,0.58991,0.729694,0.576881,0.177092,0.0989142,0.566365,0.210084,0.319188,0.91206,0.88961,0.538861,0.0759348,0.49787,0.688095,0.706405,0.848261,0.59457,0.65179,0.649213,0.484673,0.544358,0.778335,0.141316,0.9248,0.650018,0.702531,0.819701,0.390666,0.686764,0.705886,0.547454,0.0532669,0.0264013,0.658618,0.271975,0.133798,0.282131,0.453167,0.0161591,0.43838,0.89104,0.573344,0.094636,0.964499,0.831852,0.589911,0.0901387,0.900655,0.866688,0.870143,0.754525,0.00277573,0.411588,0.887457,0.149482,0.425937,0.180126,0.953066,0.244376,0.538985,0.804463,0.893774,0.314272,0.545852,0.209905,0.0832824,0.611842,0.791862,0.366108,0.203772,0.782187,0.142527,0.882479,0.780398,0.24194,0.777523,0.298801,0.152015,0.340239,0.675711,0.918047,0.53121,0.213822,0.275508,0.995705,0.570355,0.229259,0.265287,0.283098,0.532682,0.554223,0.28544,0.54085,0.516926,0.260629,0.0244641,0.0661324,0.770237,0.928874,0.847911,0.577912,0.85414,0.214428,0.824498,0.92781,0.473251,0.450315,0.377283,0.147848,0.130263,0.640639,0.278279,0.365569,0.28919,0.870957,0.903782,0.331343,0.584122,0.375822,0.877418,0.254116,0.249758,0.682771,0.297534,0.346385,0.846535,0.335275,0.855743,0.444924,0.336519,0.917348,0.615781,0.146702,0.870081,0.651852,0.519143,0.280055,0.441222,0.372441,0.928467,0.589736,0.459216,0.807595,0.771057,0.627248,0.20382,0.732732,0.607588,0.714481,0.894497,0.366971,0.45446,0.929603,0.962617,0.774841,0.0943471,0.265206,0.623723,0.653357,0.671775,0.512184,0.939435,0.519978,0.652616,0.67584,0.682178,0.479241,0.197779,0.711684,0.422017,0.611667,0.511917,0.487645,0.93926,0.795023,0.620644,0.00278425,0.706017,0.346292,0.655653,0.230896,0.581882,0.46345,0.120005,0.491786,0.501824,0.708126,0.631787,0.107149,0.701587,0.528134,0.437995,0.883605,0.716659,0.99479,0.722385,0.576995,0.74916,0.945852,0.395646,0.971642,0.651629,0.672615,0.628178,0.791759,0.804091,0.394562,0.983487,0.868544,0.954264,0.805108,0.0539435,0.464996,0.553612,0.903668,0.484078,0.29902,0.260711,0.670258,0.861573,0.0345291,0.497041,0.735791,0.228766,0.53201,0.181001,0.653978,0.650652,0.426797,0.604478,0.973174,0.490485,0.0426451,0.547222,0.599868,0.0487061,0.663842,0.857064,0.712948,0.238276,0.0840933,0.286832,0.479515,0.285352,0.671706,0.0490685,0.0164137,0.00814897,0.306863,0.333412,0.57222,0.449684,0.959411,0.457415,0.726748,0.258117,0.983108,0.17306,0.986862,0.329664,0.585509,0.248093,0.743096,0.874867,0.052855,0.578748,0.839541,0.357497,0.403132,0.725419,0.482719,0.346169,0.213818,0.503639,0.486121,0.787925,0.0620438,0.0253078,0.397261,0.551745,0.918451,0.780122,0.81948,0.0599477,0.321146,0.724864,0.154622,0.0200781,0.0304096,0.897282,0.320027,0.302065,0.136071,0.779974,0.497333,0.803136,0.0261679,0.1996,0.586952,0.230477,0.0168829,0.0274729,0.00669509,0.564854,0.367126,0.50671,0.253246,0.58024,0.480657,0.17639,0.40432,0.756635,0.761043,0.92981,0.467885,0.430576,0.845227,0.492403,0.884376,0.972035,0.41806,0.895036,0.47052,0.00562102,0.943127,0.0315812,0.184933,0.764669,0.901394,0.569376,0.538357,0.900193,0.237168,0.955794,0.349403,0.210135,0.671522,0.531922,0.278739,0.166263,0.653142,0.976416,0.126005,0.814007,0.379314,0.0397251,0.962323,0.49709,0.0414106,0.369675,0.202663,0.564569,0.593857,0.979677,0.159172,0.288312,0.703095,0.431403,0.398515,0.773768,0.79764,0.553618,0.483738,0.865981,0.0276398,0.159412,0.161857,0.646188,0.868219,0.636055,0.240188,0.596067,0.791191,0.502685,0.849221,0.0762639,0.136073,0.988265,0.00102431,0.908101,0.995968,0.945779,0.540503,0.922248,0.574728,0.516896,0.323937,0.951546,0.315547,0.462438,0.495714,0.997413,0.857775,0.88717,0.257556,0.860748,0.675448,0.977135,0.739361,0.641427,0.400816,0.478819,0.599571,0.15535,0.173267,0.116965,0.310918,0.821475,0.667237,0.770769,0.855896,0.575608,0.752347,0.379371,0.771075,0.655446,0.00371534,0.352103,0.143769,0.365369,0.793691,0.509021,0.00457388,0.610369,0.793543,0.703065,0.205824,0.145741,0.982186,0.607614,0.467309,0.930083,0.0434813,0.108045,0.971891,0.960817,0.879801,0.580695,0.647912,0.267823,0.242725,0.714604,0.708273,0.361642,0.433013,0.947957,0.582146,0.348318,0.525191,0.909878,0.83857,0.310879,0.318202,0.811272,0.951434,0.648947,0.107502,0.829764,0.097749,0.164178,0.0433565,0.168378,0.9519,0.213894,0.308629,0.403621,0.55178,0.713912,0.987825,0.697017,0.0425449,0.4575,0.0444666,0.414988,0.652768,0.0143796,0.549562,0.414018,0.00104642,0.846984,0.928644,0.264229,0.685479,0.190867,0.429902,0.731176,0.0824306,0.0938274,0.713587,0.448545,0.723563,0.82938,0.680322,0.715193,0.239315,0.27636,0.476905,0.573246,0.383271,0.0724587,0.142139,0.130114,|0.51577,0.823851,0.0438898,0.112028,0.0860729,0.848403,0.0154791,0.141094,0.71442,0.0197958,0.996832,0.447658,0.150105,0.840255,0.887278,0.653246,0.448131,0.860017,0.841283,0.15746,0.00629842,0.777917,0.647542,0.854158,0.616031,0.842239,0.963992,0.517967,0.421998,0.704331,0.434191,0.00124419,0.591392,0.263193,0.218949,0.381449,0.774822,0.546856,0.12158,0.230905,0.407128,0.584738,0.134806,0.101935,0.993501,0.723638,0.864126,0.438992,0.0279964,0.527602,0.652891,0.647094,0.0366054,0.713081,0.107486,0.664348,0.316331,0.544931,0.209659,0.57584,0.278862,0.304693,0.989912,0.641127,0.560214,0.916947,0.909151,0.734065,0.248817,0.927612,0.588339,0.285051,0.0309305,0.0321141,0.611717,0.789857,0.720535,0.766535,0.384324,0.228306,0.989655,0.750239,0.800502,0.063499,0.474681,0.250584,0.77472,0.106207,0.885307,0.0317255,0.895479,0.0458562,0.330785,0.121038,0.361977,0.232871,0.260416,0.908782,0.624648,0.684516,0.50262,0.0220503,0.580793,0.138744,0.589148,0.0281143,0.197862,0.625638,0.455741,0.780909,0.878284,0.635476,0.589614,0.131397,0.18514,0.360838,0.859519,0.96566,0.829441,0.0971788,0.5079,0.791081,0.711272,0.491355,0.293464,0.807549,0.72244,0.934268,0.812065,0.173378,0.505533,0.509177,0.232621,0.355628,0.559052,0.89534,0.709532,0.851797,0.688554,0.103882,0.989709,0.0586655,0.475142,0.179363,0.160259,0.612671,0.302366,0.107287,0.727753,0.6539,0.631955,0.02499,0.983455,0.203249,0.814225,0.893887,0.263778,0.548006,0.336244,0.569651,0.194533,0.782675,0.624868,0.0522608,0.30784,0.0235344,0.070574,0.255462,0.043444,0.641679,0.215271,0.795277,0.521606,0.0277449,0.174203,0.95546,0.678648,0.281705,0.630835,0.881142,0.788005,0.529104,0.274042,0.894827,0.522686,0.837982,0.0730736,0.552684,0.890083,0.485246,0.63823,0.164549,0.696987,0.582023,0.171288,0.544913,0.0122317,0.19848,0.667749,0.946113,0.811744,0.840551,0.247884,0.655943,0.416225,0.640642,0.0911489,0.703494,0.848752,0.438755,0.407451,0.329049,0.0478594,0.955497,0.781654,0.48666,0.777318,0.103821,0.340181,0.0666523,0.98335,0.149805,0.00297529,0.524376,0.991244,0.841884,0.517026,0.542349,0.93788,0.419609,0.764104,0.16326,0.809676,0.498131,0.130362,0.399016,0.294471,0.517107,0.390535,0.53528,0.952017,0.331123,0.141107,0.482545,0.196981,0.164356,0.701282,0.250273,0.662842,0.0861352,0.169701,0.393361,0.169614,0.553231,0.769481,0.479426,0.0612872,0.447572,0.368589,0.929293,0.39494,0.50246,0.99237,0.543258,0.587987,0.0202951,0.194414,0.28235,0.741569,0.142684,0.299896,0.740449,0.853023,0.0719235,0.310902,0.672216,0.120452,0.343649,0.715256,0.567961,0.103311,0.871072,0.275207,0.533556,0.13234,0.731489,0.830848,0.999328,0.481457,0.907575,0.21352,0.177521,0.792216,0.707082,0.504781,0.916031,0.93614,0.470147,0.70841,0.596433,0.276865,0.738105,0.428203,0.300543,0.883831,0.822498,0.335616,0.559264,0.151386,0.110766,0.414683,0.748718,0.401608,0.0244465,0.922346,0.289179,0.418043,0.652681,0.357627,0.0787687,0.131468,0.93588,0.218834,0.132577,0.0557983,0.136603,0.0892795,0.219441,0.604211,0.204686,0.489644,0.816011,0.604432,0.50497,0.560584,0.41403,0.503735,0.199813,0.374259,0.3943,0.891508,0.945209,0.943076,0.581016,0.503054,0.550399,0.424406,0.551895,0.0122039,0.188265,0.606565,0.387749,0.363131,0.266783,0.279154,0.902427,0.695314,0.498025,0.148755,0.293574,0.23347,0.715191,0.0914243,0.861751,0.00826281,0.996023,0.456078,0.185708,0.585693,0.961328,0.0280835,0.109275,0.111594,0.242395,0.267766,0.0121493,0.973553,0.0143822,0.271665,0.525573,0.1331,0.795259,0.308607,0.735614,0.628628,0.786344,0.838341,0.401797,0.6934,0.283631,0.604044,0.71675,0.0480554,0.508547,0.465145,0.264233,0.0224671,0.0901349,0.543864,0.4199,0.379451,0.707468,0.265511,0.294127,0.247052,0.276749,0.469326,0.264079,0.726263,0.368372,0.29135,0.503886,0.232221,0.120917,0.259783,0.233349,0.249147,0.921582,0.166591,0.455605,0.245908,0.873493,0.623184,0.504616,0.986771,0.146841,0.588299,0.606049,0.551238,0.707861,0.637625,0.617643,0.0473161,0.859548,0.996099,0.0599869,0.12246,0.311086,0.979053,0.479808,0.12856,0.354488,0.369695,0.555919,0.535002,0.323181,0.0449103,0.111397,0.584493,0.938559,0.39014,0.0660464,0.253806,0.704183,0.231205,0.292176,0.362329,0.165429,0.47181,0.173643,0.0826017,0.925913,0.958388,0.692856,0.810043,0.22307,0.215737,0.833013,0.349536,0.573956,0.00326526,0.727264,0.705546,0.877371,0.583006,0.0578712,0.910897,0.447209,0.704473,0.418114,0.260895,0.349782,0.0769345,0.674878,0.273248,0.585724,0.295124,0.957816,0.729525,0.21061,0.299115,0.589995,0.0685351,0.489161,0.260966,0.823516,0.770665,0.800704,0.0846137,0.438504,0.156904,0.225257,0.576913,0.294286,0.785732,0.202118,0.669364,0.110004,0.7709,0.369421,0.0353765,0.0283759,0.636707,0.650247,0.530466,0.143085,0.288493,0.683817,0.771996,0.995677,0.104925,0.497055,0.302814,0.743125,0.231395,0.604284,0.0682065,0.608896,0.526498,0.714154,0.874714,0.817863,0.702829,0.946284,0.593979,0.649812,0.123122,0.13029,0.0655902,0.178449,0.694411,0.700906,0.330126,0.683124,0.0298473,0.681457,0.563435,0.00295085,0.0514723,0.422604,0.508258,0.616182,0.618378,0.162129,0.191696,0.52744,0.123799,0.198041,0.567576,0.0394205,0.955986,0.0950252,0.103269,0.683696,0.557979,0.68511,0.679675,0.546192,0.715531,0.409967,0.323056,0.707909,0.53806,0.139451,0.889394,0.012767,0.984006,0.128376,0.204387,0.96868,0.496137,0.479099,0.99715,0.429965,0.46961,0.746325,0.475293,0.0917586,0.450381,0.762981,0.6033,0.610463,0.626073,0.637227,0.149287,0.262329,0.543149,0.888807,0.870601,0.492206,0.191385,0.180123,0.535776,0.559106,0.122379,0.796729,0.318205,0.604896,0.122964,0.34201,0.0906528,0.124933,0.748756,0.705513,0.288703,0.875277,0.165889,0.523076,0.544537,0.237264,0.634266,0.569362,0.472919,0.876401,0.0325868,0.350394,0.894637,0.201924,0.262074,0.920078,0.204817,0.0639369,0.651293,0.342333,0.320211,0.832816,0.452936,0.85353,0.276423,0.298511,0.703924,0.849725,0.768246,0.923273,0.13436,0.490549,0.703005,0.42866,0.368526,0.185265,0.263631,0.0991247,0.896053,0.412163,0.942334,0.39906,0.0761433,0.725089,0.0341572,0.505938,0.736232,0.270312,0.763223,0.346099,0.689942,0.350758,0.838336,0.303858,0.85714,0.276837,0.822038,0.0924346,0.749478,0.746393,0.393839,0.341742,0.583454,0.522426,0.29314,0.88813,0.731538,0.298885,0.0844378,0.700537,0.878574,0.454622,0.193735,0.982154,0.350765,0.268262,0.391927,0.18568,0.0755822,0.720449,0.588332,0.411697,0.919906,0.520203,0.18454,0.476363,0.274343,0.209855,0.215382,0.370329,0.734731,0.475485,0.266223,0.678946,0.573907,0.0109338,0.90497,0.893967,0.336158,0.75088,0.325076,0.757784,0.352763,0.745373,0.191131,0.278501,0.163745,0.739013,0.432001,0.212033,0.0129604,0.130982,0.887383,0.404437,0.240517,0.988135,0.220722,0.929332,0.288732,0.240976,0.927358,0.251921,0.800212,0.552079,0.755521,0.404843,0.463467,0.759295,0.879015,0.57376,0.22165,0.668403,0.597182,0.720067,0.993794,0.294459,0.032774,0.820813,0.500847,0.0990226,0.172427,0.710267,0.158449,0.138425,0.15301,0.655153,0.342191,0.233532,0.648374,0.395334,0.0511766,0.068298,0.344309,0.25537,0.629177,0.515399,0.616491,0.621312,0.0835619,0.639293,0.81666,0.455402,0.571577,0.735045,0.0683612,0.0842342,0.805552,0.328736,0.043768,0.802195,0.833497,0.726605,0.617872,0.631428,0.721344,0.107138,0.0718442,0.646674,0.850384,0.560567,0.287025,0.222373,0.245806,0.303475,0.526531,0.644659,0.633013,0.768346,0.834087,0.0634666,0.462398,0.663611,0.958414,0.540651,0.184822,0.37556,0.677037,0.555349,0.263412,0.0494244,0.929189,0.606453,0.354763,0.787485,0.485495,0.838335,0.735355,0.0824626,0.985293,0.562567,0.675773,0.954352,0.710326,0.250014,0.429594,0.577366,0.788902,0.528696,0.202999,0.135254,0.734789,0.852129,0.501566,0.723109,0.625821,0.935592,0.657418,0.115904,0.913249,0.138675,0.558017,0.641601,0.938413,0.670787,0.619495,0.248551,0.738298,0.0105609,0.341079,0.764964,0.462873,0.744203,0.571736,0.0811973,0.480845,0.192242,0.939102,0.105555,0.660355,0.602952,0.670014,0.694816,0.918834,0.768374,0.359661,0.134515,0.93807,0.0393691,0.934678,0.747158,0.936565,0.403352,0.854125,0.861876,0.562855,0.600258,0.804711,0.0968189,0.410235,0.353145,0.781545,0.532153,0.925918,0.71102,0.238136,0.0972078,0.944389,0.361349,0.243832,0.316004,0.587836,0.564672,0.38204,0.538579,0.538703,0.184661,0.750514,0.44101,0.111608,0.644918,0.517256,0.433388,0.878302,0.328144,0.894742,0.86221,0.188565,0.803095,0.0260145,0.970967,0.830997,0.661146,0.987522,0.67921,0.920718,0.40813,0.62124,0.219678,0.250695,0.710044,0.0184473,0.483837,0.223064,0.0423208,0.0678533,0.869134,0.0228295,0.121243,0.651633,0.297349,0.386507,0.633906,0.21248,0.207945,0.334636,0.752436,0.262176,0.295626,0.786078,0.477576,0.995844,0.397944,0.797684,0.842623,0.302987,0.156761,0.14798,0.0534202,0.725951,0.0619583,0.991733,0.514153,0.531666,0.491111,0.858752,0.569263,0.705774,0.350037,0.741626,0.0974476,0.987027,0.201104,0.708223,0.831418,0.84265,0.357881,0.514207,0.919075,0.405019,0.0585138,0.0928026,0.272093,0.591499,0.656967,0.851197,0.127675,0.365367,0.926508,0.167153,0.335578,0.617209,0.222183,0.56928,0.21475,0.73879,0.733148,0.674486,0.983873,0.824793,0.64707,0.350581,0.604754,0.247019,0.971807,0.738904,0.73781,|0.806304,0.544691,0.786788,0.0359488,0.73718,0.0672498,0.90771,0.744445,0.799881,0.177917,0.858881,0.81968,0.346626,0.0386679,0.496882,0.623026,0.689528,0.655473,0.108849,0.635567,0.68746,0.559928,0.632032,0.600666,0.697821,0.100438,0.143598,0.446646,0.578479,0.326574,0.299735,0.91367,0.121001,0.686284,0.673357,0.197557,0.992694,0.879991,0.702356,0.520943,0.8676,0.967964,0.245718,0.172612,0.153421,0.220957,0.00995517,0.379634,0.530462,0.270731,0.853081,0.142771,0.177402,0.126326,0.00739044,0.491449,0.418104,0.931404,0.527756,0.271247,0.689207,0.864874,0.994045,0.435271,0.21094,0.416418,0.386516,0.323693,0.899406,0.897473,0.297214,0.511632,0.0614517,0.413636,0.598015,0.496785,0.941507,0.939021,0.24144,0.0358731,0.15116,0.426951,0.222934,0.0281916,0.679756,0.369209,0.678346,0.580782,0.737058,0.797886,0.503507,0.367307,0.740593,0.755774,0.866997,0.939884,0.57754,0.599486,0.33332,0.581942,0.518383,0.199396,0.303341,0.686564,0.573295,0.130084,0.486126,0.825476,0.0964063,0.11151,0.382772,0.242469,0.989701,0.0779677,0.924741,0.978498,0.926027,0.590267,0.899172,0.785686,0.211341,0.341024,0.325724,0.10344,0.224692,0.633005,0.895725,0.928155,0.642672,0.721563,0.746986,0.734153,0.834952,0.0800991,0.933186,0.966867,0.181161,0.313384,0.595948,0.324439,0.516263,0.307495,0.630469,0.611176,0.0952125,0.777027,0.628741,0.609779,0.723972,0.916626,0.861558,0.0752123,0.936943,0.00194246,0.332021,0.216977,0.572086,0.101016,0.0274116,0.89062,0.339693,0.859317,0.615928,0.922466,0.638556,0.323848,0.364208,0.692069,0.681991,0.733979,0.990235,0.531019,0.0827237,0.387705,0.702012,0.79416,0.119943,0.882919,0.295074,0.882468,0.609665,0.80245,0.512298,0.959942,0.00667185,0.766604,0.727998,0.808512,0.124605,0.32332,0.323075,0.792372,0.572156,0.877551,0.177169,0.453626,0.764505,0.549306,0.455578,0.596309,0.199609,0.0784497,0.79528,0.696274,0.730553,0.749297,0.598652,0.959442,0.478871,0.636106,0.121572,0.524092,0.878716,0.174489,0.0541446,0.598274,0.240713,0.321074,0.779773,0.828338,0.604536,0.374704,0.137638,0.415626,0.846646,0.40785,0.968948,0.0919049,0.885966,0.914156,0.726804,0.113883,0.500409,0.23231,0.358047,0.259569,0.495363,0.452923,0.462961,0.095468,0.485329,0.618233,0.0527074,0.477853,0.97811,0.241688,0.26222,0.814511,0.610119,0.848222,0.0245253,0.249089,0.490592,0.0595371,0.468779,0.895639,0.178805,0.59626,0.836678,0.524813,0.939334,0.0539759,0.853593,0.448805,0.115932,0.212111,0.411797,0.506291,0.347963,0.27879,0.219487,0.621135,0.331611,0.207844,0.882644,0.139868,0.430738,0.7258,0.752931,0.910529,0.632858,0.260901,0.325636,0.71934,0.811714,0.0734894,0.139209,0.411901,0.431769,0.321702,0.973832,0.400147,0.49722,0.923506,0.890962,0.137461,0.908299,0.568185,0.0474211,0.911185,0.0984018,0.354848,0.416772,0.518603,0.999903,0.242691,0.13452,0.980679,0.468131,0.772456,0.563153,0.102983,0.23716,0.0427123,0.833291,0.704922,0.17834,0.950306,0.435096,0.545807,0.376416,0.360341,0.714749,0.0699754,0.152895,0.555238,0.214291,0.574097,0.471584,0.0836115,0.517738,0.789896,0.332283,0.635642,0.0643811,0.275148,0.92184,0.72101,0.510587,0.381036,0.00368279,0.0876364,0.888331,0.358082,0.271408,0.874783,0.365885,0.227767,0.814599,0.574054,0.905682,0.591272,0.360173,0.2276,0.266944,0.250015,0.363458,0.111413,0.951925,0.017157,0.0728819,0.93571,0.459633,0.237317,0.466429,0.683132,0.283335,0.461256,0.378812,0.715034,0.785647,0.272572,0.337029,0.462815,0.959061,0.78649,0.678887,0.783273,0.0360771,0.103298,0.795983,0.15694,0.892752,0.351343,0.688127,0.884968,0.189218,0.749287,0.0485249,0.763489,0.78916,0.1032,0.40067,0.412129,0.845321,0.923909,0.131019,0.0425338,0.7514,0.942079,0.448507,0.992525,0.842337,0.97524,0.719614,0.896259,0.883853,0.804722,0.360348,0.200229,0.320695,0.464862,0.949175,0.407707,0.934375,0.883588,0.0653409,0.106517,0.740622,0.0244381,0.625149,0.867841,0.0898257,0.738082,0.761589,0.129561,0.685222,0.73587,0.873527,0.590049,0.693057,0.0587333,0.00485784,0.812687,0.81242,0.828072,0.898346,0.252644,0.753675,0.765519,0.499146,0.388783,0.0187811,0.779941,0.218764,0.680056,0.935121,0.0231783,0.775992,0.422993,0.194427,0.779508,0.00754136,0.0829089,0.321537,0.0191001,0.0554578,0.983789,0.680044,0.181318,0.776734,0.216271,0.182359,0.201708,0.295931,0.331205,0.211101,0.260382,0.348706,0.711667,0.896328,0.216311,0.000468612,0.560706,0.586637,0.823184,0.0828164,0.501561,0.842567,0.805729,0.352533,0.861049,0.389741,0.357752,0.106445,0.39764,0.204278,0.430412,0.433673,0.550968,0.901942,0.634416,0.424605,0.689665,0.234369,0.401063,0.881106,0.0926308,0.955085,0.851433,0.00011009,0.0752766,0.00648057,0.933942,0.0509086,0.394229,0.859226,0.28733,0.802631,0.663871,0.529298,0.523305,0.197919,0.626146,0.921963,0.728246,0.830953,0.539975,0.296105,0.714478,0.743985,0.713153,0.558664,0.92424,0.426692,0.760941,0.960919,0.259523,0.194739,0.0126129,0.622582,0.0745909,0.308236,0.0982002,0.765517,0.224766,0.743576,0.8609,0.262594,0.354242,0.987241,0.791204,0.79738,0.800465,0.466068,0.764328,0.0242106,0.354239,0.204025,0.104411,0.434635,0.043638,0.115272,0.375308,0.25007,0.584047,0.146501,0.794904,0.582876,0.201757,0.371328,0.298571,0.0218732,0.752748,0.374994,0.118291,0.822164,0.469077,0.471407,0.653739,0.607939,0.867098,0.280362,0.376831,0.754794,0.488638,0.824762,0.529484,0.291239,0.0940278,0.940584,0.196857,0.249073,0.145851,0.21849,0.54423,0.643635,0.552918,0.599536,0.139604,0.265478,0.754638,0.152475,0.0868292,0.617438,0.299157,0.1879,0.818348,0.60096,0.319835,0.309269,0.58116,0.277524,0.0326006,0.184137,0.767013,0.569329,0.664112,0.841099,0.230435,0.0623477,0.183275,0.0330356,0.248274,0.919119,0.204601,0.210668,0.1626,0.800494,0.274532,0.23706,0.202323,0.79134,0.638897,0.220709,0.0605417,0.694617,0.559435,0.439038,0.798362,0.189595,0.526297,0.068126,0.690408,0.545838,0.531596,0.0849484,0.265839,0.678319,0.519725,0.955429,0.0389797,0.296103,0.891536,0.133619,0.563424,0.745992,0.941976,0.478938,0.802532,0.537565,0.707076,0.974787,0.16443,0.674538,0.244171,0.412941,0.391123,0.330497,0.0729422,0.413278,0.178291,0.831539,0.273163,0.492817,0.0461089,0.825215,0.969294,0.772802,0.143319,0.0550264,0.486607,0.41419,0.533723,0.522687,0.416479,0.221919,0.367527,0.77201,0.0454149,0.554648,0.895785,0.328802,0.503356,0.437812,0.722889,0.776293,0.0707245,0.536778,0.303252,0.327329,0.577624,0.680255,0.205728,0.56052,0.678753,0.751662,0.572635,0.456355,0.13111,0.935422,0.265925,0.906143,0.434822,0.150356,0.0242379,0.381681,0.275771,0.498402,0.817722,0.911592,0.936558,0.656661,0.161586,0.915363,0.0311318,0.363536,0.282152,0.0282273,0.623614,0.586762,0.383915,0.654669,0.0486168,0.132667,0.794573,0.171297,0.433813,0.468465,0.938115,0.225674,0.677618,0.0428635,0.713618,0.805912,0.470619,0.603778,0.483375,0.74309,0.527585,0.37907,0.892986,0.476874,0.493235,0.604169,0.540934,0.767168,0.712442,0.971616,0.455106,0.374477,0.190274,0.429625,0.869962,0.44601,0.404267,0.654912,0.0465087,0.566022,0.717989,0.426609,0.0721031,0.378986,0.772435,0.203249,0.0863768,0.299004,0.522594,0.418628,0.167468,0.45946,0.864314,0.44043,0.219558,0.253519,0.0475169,0.0167297,0.565416,0.46604,0.704059,0.319591,0.155336,0.462343,0.895479,0.276546,0.744342,0.992814,0.71399,0.586541,0.808179,0.799356,0.437995,0.662421,0.616663,0.946302,0.950003,0.864342,0.0889466,0.240024,0.425323,0.581578,0.615847,0.43062,0.729729,0.686929,0.648648,0.973068,0.0590799,0.627408,0.978693,0.333547,0.00995576,0.0682611,0.986508,0.675351,0.177172,0.922633,0.205804,0.067704,0.691739,0.278517,0.174505,0.438125,0.00899494,0.750685,0.769598,0.941514,0.953889,0.644762,0.809808,0.771146,0.262478,0.681806,0.80145,0.862449,0.566986,0.608374,0.772008,0.827385,0.882438,0.542114,0.247981,0.579396,0.498789,0.202135,0.759263,0.0050205,0.842633,0.1559,0.0801383,0.211785,0.393572,0.272547,0.52818,0.995471,0.378281,0.233488,0.565136,0.225076,0.860645,0.917486,0.0775281,0.268655,0.0940671,0.177297,0.166037,0.223207,0.84487,0.555514,0.993133,0.793202,0.889226,0.963407,0.999478,0.271883,0.204579,0.830357,0.933673,0.751779,0.622054,0.534713,0.912775,0.778476,0.190791,0.188667,0.239516,0.682564,0.370341,0.751714,0.472597,0.17359,0.0652981,0.0204278,0.147604,0.957618,0.74262,0.281983,0.0549805,0.25224,0.988755,0.725375,0.969028,0.692236,0.0636651,0.656761,0.0866075,0.12697,0.769342,0.414182,0.620899,0.703546,0.576122,0.457821,0.720725,0.640726,0.927831,0.744419,0.892569,0.0407183,0.751991,0.404677,0.205342,0.524134,0.103932,0.589164,0.325751,0.930925,0.310969,0.200071,0.685947,0.86642,0.0707099,0.9057,0.674914,0.0539483,0.305521,0.311243,0.0700198,0.464668,0.788043,0.936503,0.126603,0.845477,0.353108,0.404874,0.41073,0.579518,0.457109,0.830458,0.842449,0.174813,0.269222,0.75396,0.56764,0.83788,0.5962,0.440399,0.57363,0.653667,0.991413,0.585826,0.816915,0.465739,0.379645,0.142734,0.0907009,0.804078,0.281294,0.48273,0.287219,0.380088,0.722261,0.417148,0.805289,0.131827,0.177475,0.597571,0.667638,0.898884,0.853159,0.116547,0.0383255,0.234801,0.606186,0.901831,0.626002,0.422813,0.184038,0.845354,0.943273,0.261262,0.136594,0.681406,0.788664,0.0939875,0.801461,0.932653,0.866461,0.205431,0.996553,|0.942461,0.18444,0.325186,0.949431,0.104891,0.297517,0.281019,0.374727,0.492912,0.440705,0.252353,0.138524,0.315758,0.752417,0.555385,0.293553,0.568467,0.305525,0.791747,0.790909,0.633268,0.80665,0.391693,0.419118,0.200877,0.424712,0.660842,0.738424,0.379064,0.481624,0.430838,0.604915,0.115232,0.411617,0.44144,0.821893,0.389906,0.922293,0.181432,0.798824,0.592293,0.0237334,0.16177,0.5845,0.417205,0.97907,0.224186,0.302224,0.527793,0.526264,0.302421,0.264403,0.362414,0.846981,0.924566,0.13868,0.167041,0.352322,0.335888,0.189758,0.746346,0.598603,0.673835,0.449314,0.00533366,0.49648,0.693429,0.242145,0.144338,0.0957913,0.628872,0.600719,0.10891,0.915549,0.379552,0.46073,0.340874,0.451174,0.836105,0.667775,0.257386,0.327529,0.342874,0.286478,0.07801,0.208328,0.51738,0.731718,0.954786,0.194687,0.55538,0.818793,0.98117,0.949409,0.94129,0.194161,0.653753,0.727013,0.29404,0.896752,0.141943,0.217253,0.970125,0.792187,0.170203,0.996096,0.858457,0.697827,0.657334,0.992919,0.139004,0.85325,0.134136,0.420673,0.365501,0.167291,0.521521,0.340177,0.998404,0.0585834,0.96853,0.758129,0.856392,0.202632,0.287239,0.0727634,0.658358,0.157855,0.712543,0.868026,0.337383,0.952455,0.178969,0.0355833,0.305497,0.87144,0.698236,0.971994,0.910215,0.976911,0.45378,0.740065,0.896139,0.444761,0.745927,0.89951,0.0381193,0.44793,0.89363,0.632799,0.598039,0.0454857,0.742785,0.917141,0.599292,0.276151,0.639407,0.977077,0.177323,0.0202776,0.567794,0.862958,0.88344,0.644681,0.0700106,0.361883,0.891738,0.44067,0.319977,0.976933,0.152067,0.0447574,0.0860215,0.909509,0.536062,0.147259,0.0401204,0.531642,0.578387,0.739707,0.0385492,0.257849,0.7991,0.583624,0.372167,0.663975,0.996747,0.508233,0.058748,0.539907,0.40659,0.818466,0.736168,0.54431,0.651549,0.632768,0.430613,0.239231,0.142671,0.743572,0.93247,0.545111,0.624955,0.659206,0.489264,0.170907,0.806058,0.674085,0.406112,0.827704,0.248236,0.540975,0.410527,0.963817,0.528488,0.73309,0.920873,0.170382,0.344424,0.302566,0.807499,0.437519,0.537328,0.143587,0.0536805,0.619599,0.210111,0.973786,0.68085,0.0643468,0.0263812,0.450682,0.507578,0.457586,0.569128,0.0641887,0.296671,0.0244969,0.246425,0.57279,0.624964,0.578957,0.689157,0.991797,0.765715,0.997205,0.545634,0.14832,0.567192,0.933553,0.114377,0.327935,0.0997051,0.724674,0.938456,0.482994,0.229401,0.286342,0.499783,0.474239,0.360261,0.159754,0.398608,0.0829735,0.495282,0.91658,0.430955,0.632781,0.338969,0.214746,0.667347,0.702886,0.115716,0.576885,0.871281,0.805576,0.179865,0.597358,0.716803,0.111768,0.660102,0.50355,0.232132,0.787771,0.342862,0.152237,0.236394,0.737736,0.805438,0.602612,0.764997,0.304813,0.579508,0.211303,0.875057,0.955533,0.715656,0.883456,0.848076,0.273471,0.948983,0.935739,0.49154,0.403456,0.0215812,0.700692,0.541981,0.582791,0.623997,0.620016,0.590686,0.222623,0.912717,0.903407,0.32378,0.455543,0.583323,0.867359,0.0964363,0.939518,0.406276,0.320032,0.683946,0.382577,0.313799,0.608101,0.730464,0.47182,0.589235,0.520289,0.569739,0.0502206,0.783575,0.384402,0.724856,0.125986,0.424647,0.771371,0.100708,0.529271,0.236185,0.327037,0.0297838,0.250553,0.692359,0.64949,0.152072,0.160573,0.669134,0.40651,0.26632,0.698015,0.823505,0.9244,0.498469,0.608715,0.860652,0.583348,0.987086,0.853359,0.448257,0.773835,0.140046,0.536153,0.441028,0.765328,0.10169,0.646045,0.777142,0.645172,0.48648,0.858898,0.0893281,0.186006,0.378963,0.967541,0.393617,0.0767986,0.476552,0.533206,0.770726,0.697545,0.0249859,0.487515,0.856987,0.311526,0.0333135,0.547971,0.193229,0.994107,0.55072,0.335289,0.550352,0.0907553,0.770956,0.758494,0.331637,0.417536,0.206775,0.208136,0.224432,0.254564,0.307042,0.218876,0.529951,0.205339,0.123444,0.8909,0.579105,0.146112,0.761488,0.506053,0.597396,0.381471,0.61037,0.783462,0.233737,0.632173,0.0277653,0.522183,0.801692,0.361066,0.429387,0.890587,0.628175,0.74991,0.370399,0.984253,0.0855412,0.267308,0.38935,0.0835886,0.612057,0.563813,0.630116,0.804709,0.538949,0.734826,0.323162,0.458616,0.803751,0.974453,0.229856,0.722009,0.40842,0.0724267,0.136301,0.765803,0.246749,0.051751,0.661101,0.248384,0.536343,0.0633003,0.21776,0.314804,0.26546,0.241221,0.925819,0.819108,0.73855,0.785661,0.661242,0.154966,0.206568,0.429892,0.355795,0.439265,0.897911,0.690777,0.401695,0.76751,0.964304,0.713354,0.245721,0.0935121,0.0753031,0.61778,0.312165,0.62357,0.380024,0.749444,0.923029,0.342087,0.0778694,0.914155,0.490466,0.611084,0.803925,0.938465,0.973474,0.145992,0.29757,0.6,0.660414,0.683422,0.555881,0.484173,0.762339,0.61048,0.991896,0.780706,0.0488702,0.0519466,0.723239,0.688936,0.207106,0.557513,0.51927,0.666856,0.617468,0.307522,0.209721,0.0219404,0.692414,0.833515,0.784119,0.290697,0.582361,0.564249,0.196764,0.333867,0.974067,0.826125,0.0992229,0.541874,0.988449,0.525226,0.279534,0.175095,0.366105,0.245134,0.655314,0.0415419,0.530976,0.548468,0.608142,0.603863,0.425323,0.459149,0.933957,0.370505,0.31705,0.0862572,0.654346,0.164278,0.679066,0.306717,0.391111,0.914928,0.112845,0.44949,0.898929,0.648716,0.869551,0.881757,0.734445,0.00157541,0.20141,0.359099,0.9562,0.515204,0.0733331,0.0162966,0.865869,0.828045,0.0405524,0.599067,0.926066,0.78211,0.268905,0.583821,0.543713,0.932949,0.303098,0.0578629,0.976283,0.619572,0.15348,0.235651,0.615871,0.722868,0.160108,0.0009045,0.625108,0.169262,0.884274,0.00850999,0.831242,0.483762,0.414534,0.473441,0.91071,0.750182,0.682852,0.521668,0.196409,0.989321,0.226721,0.552583,0.86792,0.610839,0.0764893,0.373123,0.156271,0.107301,0.917344,0.774864,0.193941,0.134192,0.955599,0.521416,0.217727,0.366556,0.927608,0.869094,0.422784,0.576624,0.921041,0.142617,0.420936,0.263935,0.827908,0.425895,0.318172,0.185858,0.516796,0.599952,0.295623,0.095847,0.845613,0.877728,0.43909,0.905724,0.848311,0.013001,0.524596,0.108038,0.788049,0.218243,0.269281,0.351281,0.512135,0.0318732,0.989972,0.108249,0.969639,0.948889,0.516033,0.229122,0.00903934,0.504802,0.848941,0.0220939,0.0474406,0.0378613,0.76428,0.968728,0.364429,0.443767,0.402257,0.310422,0.960767,0.507133,0.194411,0.586585,0.238993,0.407568,0.483418,0.122062,0.106653,0.185256,0.320745,0.547994,0.670298,0.313434,0.254618,0.82809,0.00218314,0.335373,0.156463,0.328246,0.25663,0.44741,0.388514,0.471965,0.290775,0.17473,0.837707,0.422249,0.19451,0.909144,0.72381,0.936027,0.204281,0.0980689,0.353883,0.484142,0.0770988,0.0945293,0.0902016,0.9429,0.762898,0.00594074,0.59303,0.943825,0.880174,0.0749219,0.442757,0.0476484,0.622945,0.828579,0.617717,0.783638,0.653329,0.45063,0.170954,0.401257,0.751672,0.0483618,0.489981,0.180591,0.661818,0.0807872,0.605824,0.901787,0.431338,0.932031,0.940893,0.478486,0.96424,0.763446,0.0201123,0.38421,0.135347,0.354922,0.0738035,0.238429,0.656672,0.761514,0.765333,0.0727355,0.913157,0.215189,0.264035,0.184662,0.69981,0.862113,0.248738,0.996562,0.927493,0.349765,0.325622,0.700072,0.633334,0.910896,0.496508,0.111667,0.460358,0.8789,0.638249,0.146661,0.986683,0.450584,0.363414,0.548528,0.195368,0.791947,0.652814,0.524121,0.603041,0.228328,0.691202,0.497661,0.579781,0.196631,0.00413173,0.0110974,0.307402,0.970213,0.393071,0.733385,0.918994,0.638542,0.758035,0.919049,0.275528,0.530993,0.831476,0.143014,0.774933,0.0538548,0.333389,0.455456,0.33395,0.70862,0.149607,0.820317,0.932338,0.911004,0.82472,0.812322,0.422408,0.156214,0.992743,0.912246,0.875405,0.105659,0.750322,0.75769,0.356398,0.292631,0.650387,0.759124,0.507718,0.0822803,0.952518,0.186914,0.811855,0.123826,0.809231,0.340711,0.209066,0.684964,0.0415526,0.631391,0.676602,0.0940741,0.436467,0.25141,0.0274934,0.903243,0.0889482,0.698359,0.765271,0.881889,0.821722,0.544589,0.126125,0.74033,0.151155,0.273427,0.042172,0.292639,0.740148,0.918562,0.975061,0.470861,0.637794,0.822784,0.440753,0.94405,0.668178,0.997971,0.142073,0.575289,0.277156,0.566138,0.0158495,0.279404,0.352653,0.3188,0.91417,0.19059,0.666935,0.289081,0.895805,0.412674,0.239144,0.904617,0.615391,0.725643,0.964446,0.420576,0.945839,0.62858,0.53515,0.752702,0.0950661,0.221949,0.527204,0.798882,0.578611,0.798683,0.0387284,0.130456,0.407098,0.225285,0.67943,0.300896,0.161386,0.588608,0.464183,0.928081,0.249919,0.730247,0.104669,0.870257,0.223912,0.251304,0.877381,0.0949041,0.711575,0.618949,0.639614,0.173603,0.605753,0.760878,0.241123,0.31408,0.710405,0.724282,0.553257,0.673578,0.233272,0.971254,0.0255455,0.176289,0.0150651,0.000417054,0.426849,0.543296,0.591832,0.640117,0.163856,0.225843,0.905793,0.548183,0.599621,0.599502,0.0932204,0.00919145,0.287225,0.754152,0.557363,0.1713,0.284837,0.487205,0.89007,0.326297,0.990162,0.369537,0.617449,0.911759,0.61012,0.506632,0.321328,0.664168,0.125329,0.861618,0.159289,0.0694369,0.917781,0.11923,0.760192,0.870127,0.576847,0.588997,0.0184099,0.95461,0.201463,0.11274,0.996401,0.185788,0.21753,0.586782,0.984086,0.951045,0.806859,0.755412,0.795393,0.0637797,0.828675,0.421953,0.719004,0.918156,0.803897,0.946165,0.695729,0.756299,0.310244,0.401541,0.779369,0.559634,0.297435,0.878384,0.593556,0.197141,0.879905,0.53263,0.28206,0.450373,0.259322,0.201458,0.208419,0.0390738,0.701039,0.0602055,0.461394,0.715386,|0.762921,0.00344115,0.246966,0.465897,0.12688,0.407475,0.206115,0.0123483,0.396008,0.143549,0.120028,0.095273,0.553387,0.0531405,0.406927,0.514255,0.712537,0.786229,0.557084,0.927199,0.103442,0.305113,0.424647,0.58227,0.397598,0.866761,0.49496,0.243708,0.751533,0.12356,0.284997,0.257929,0.128204,0.455196,0.831998,0.326937,0.654142,0.522309,0.418656,0.474047,0.985654,0.544552,0.406807,0.863697,0.496786,0.184835,0.982732,0.187124,0.95546,0.699331,0.868213,0.647758,0.193001,0.178811,0.430165,0.126126,0.62777,0.948766,0.170116,0.437022,0.419473,0.687382,0.405122,0.810076,0.354704,0.027009,0.769199,0.761082,0.137769,0.94011,0.201139,0.994821,0.883724,0.798364,0.483188,0.0493376,0.730762,0.120253,0.122963,0.85014,0.624336,0.971444,0.423837,0.674007,0.275939,0.828708,0.757696,0.460278,0.207997,0.862346,0.0367396,0.898552,0.877815,0.950334,0.814392,0.241375,0.341309,0.577593,0.716122,0.810078,0.103889,0.42105,0.918134,0.0539271,0.912302,0.479493,0.657823,0.682207,0.831981,0.627452,0.539757,0.470714,0.442746,0.791636,0.694228,0.442218,0.592743,0.4374,0.352584,0.255722,0.230643,0.837106,0.837939,0.723461,0.0154433,0.348701,0.589567,0.967868,0.350776,0.980377,0.721632,0.592042,0.577752,0.144961,0.888193,0.0491437,0.1008,0.468875,0.359215,0.0300014,0.457935,0.709837,0.448138,0.0466536,0.38302,0.86911,0.502934,0.0629562,0.832957,0.969855,0.479742,0.741998,0.827416,0.827905,0.0349536,0.283704,0.499965,0.713658,0.761411,0.58856,0.900357,0.701507,0.253513,0.563366,0.323418,0.1931,0.112593,0.748606,0.969115,0.482429,0.237158,0.949302,0.565082,0.0998558,0.338299,0.650369,0.492689,0.380077,0.836944,0.907221,0.84471,0.488332,0.334014,0.583274,0.273657,0.342577,0.622798,0.342141,0.13921,0.170152,0.455354,0.356514,0.272125,0.725966,0.355933,0.934459,0.348222,0.861506,0.199412,0.0677708,0.925456,0.199642,0.190661,0.835696,0.291767,0.867557,0.0875926,0.164068,0.547042,0.800291,0.651744,0.444938,0.972989,0.505989,0.71483,0.300022,0.204015,0.777169,0.734363,0.739779,0.276308,0.282776,0.15282,0.127963,0.972127,0.0330516,0.75476,0.843202,0.572777,0.604458,0.855199,0.567326,0.886956,0.0897819,0.226822,0.342704,0.219655,0.885485,0.919231,0.248924,0.880282,0.881272,0.312648,0.681663,0.716527,0.90502,0.919415,0.437536,0.0691626,0.707266,0.725883,0.781912,0.179512,0.0973743,0.875679,0.791805,0.812334,0.884686,0.702691,0.737686,0.176476,0.395529,0.0588635,0.410941,0.765853,0.116468,0.880614,0.0740337,0.647283,0.736297,0.0842601,0.0531546,0.143397,0.631301,0.151366,0.857521,0.503621,0.669456,0.241594,0.896264,0.407755,0.250038,0.565814,0.125118,0.548013,0.325278,0.197234,0.156692,0.25198,0.623653,0.932575,0.148901,0.770303,0.786903,0.315995,0.701681,0.00559425,0.400906,0.55301,0.229736,0.16675,0.352604,0.602735,0.672213,0.261396,0.299609,0.998324,0.598486,0.67103,0.0956693,0.242796,0.951925,0.591951,0.827013,0.963008,0.846935,0.412621,0.0345918,0.948095,0.171421,0.151847,0.741598,0.1199,0.393998,0.383581,0.17435,0.985751,0.0084309,0.471182,0.109336,0.980192,0.0265635,0.249321,0.0680469,0.38438,0.481417,0.00441241,0.0240213,0.27334,0.534954,0.189551,0.87159,0.141576,0.970022,0.667789,0.232015,0.650204,0.194535,0.767966,0.370288,0.083384,0.628632,0.539701,0.180324,0.294892,0.554668,0.389917,0.322483,0.219593,0.244808,0.724682,0.129086,0.604326,0.886638,0.491197,0.962561,0.280255,0.748194,0.782963,0.68977,0.748975,0.47519,0.564772,0.232738,0.551828,0.576411,0.375602,0.673106,0.342818,0.262892,0.550703,0.837208,0.329375,0.501885,0.759267,0.394015,0.851275,0.817186,0.862705,0.967019,0.0142432,0.193471,0.212428,0.146631,0.762687,0.733134,0.0577172,0.648737,0.652981,0.819472,0.350779,0.759176,0.876613,0.314856,0.16255,0.603593,0.236148,0.855528,0.808259,0.948632,0.383266,0.800513,0.831092,0.477513,0.162301,0.953056,0.788078,0.866413,0.140106,0.522213,0.954144,0.411577,0.153518,0.00654912,0.837418,0.678904,0.477116,0.511294,0.568706,0.184128,0.28092,0.291558,0.460858,0.629331,0.210016,0.13084,0.0175968,0.973561,0.897587,0.281073,0.187822,0.145032,0.639048,0.61697,0.730513,0.327638,0.974009,0.868849,0.832853,0.798132,0.346087,0.688035,0.804005,0.720334,0.0788448,0.490589,0.568195,0.837252,0.0335491,0.245331,0.157017,0.475946,0.144658,0.514179,0.989014,0.34066,0.571152,0.290191,0.0809339,0.134404,0.181279,0.748036,0.0431035,0.369226,0.412061,0.429817,0.13574,0.172876,0.699574,0.4505,0.36428,0.656417,0.0569561,0.992309,0.976659,0.919385,0.0836606,0.794283,0.618716,0.819959,0.37602,0.0929143,0.793301,0.444223,0.189271,0.0681822,0.262286,0.772637,0.993022,0.315648,0.555024,0.895088,0.198636,0.140765,0.0524195,0.633714,0.28788,0.729887,0.812218,0.867348,0.581607,0.977214,0.528957,0.302635,0.670217,0.937984,0.591403,0.95523,0.600478,0.457603,0.449858,0.422181,0.71202,0.783605,0.893835,0.668141,0.3827,0.179769,0.948706,0.583107,0.864228,0.234713,0.147986,0.637387,0.322798,0.785625,0.885214,0.300643,0.554097,0.20448,0.902265,0.732265,0.658489,0.155847,0.492598,0.133439,0.162406,0.765454,0.599533,0.40136,0.351284,0.277623,0.134758,0.327637,0.600472,0.627434,0.413494,0.17363,0.165545,0.189216,0.98808,0.986351,0.363859,0.111187,0.982467,0.0791609,0.95661,0.780862,0.327835,0.79236,0.163931,0.0502062,0.219374,0.170636,0.30369,0.657227,0.7503,0.553693,0.0712996,0.528376,0.773581,0.773,0.530652,0.0953394,0.48487,0.230164,0.492118,0.925349,0.998962,0.0487325,0.0666685,0.736789,0.517533,0.433676,0.0482004,0.143545,0.310843,0.432637,0.827629,0.0435073,0.192383,0.69253,0.341332,0.874161,0.784832,0.454246,0.18328,0.780765,0.47525,0.76099,0.489946,0.394703,0.907259,0.887664,0.545859,0.00226903,0.41163,0.605987,0.918236,0.0344015,0.900707,0.58282,0.374467,0.723478,0.0967601,0.497433,0.4348,0.000515103,0.00514048,0.82281,0.518674,0.139376,0.369145,0.228234,0.189451,0.376216,0.244472,0.753036,0.456348,0.777706,0.218428,0.966225,0.770825,0.10641,0.237434,0.555096,0.810362,0.200135,0.569818,0.103356,0.197009,0.134931,0.774336,0.640106,0.984136,0.280527,0.440882,0.550369,0.976388,0.130013,0.0606313,0.842194,0.940235,0.787428,0.438961,0.994731,0.604189,0.624223,0.0755153,0.38276,0.0109312,0.228757,0.348905,0.196672,0.917721,0.422966,0.291552,0.697872,0.544405,0.35688,0.097236,0.399187,0.662872,0.744338,0.514826,0.839538,0.188748,0.0312377,0.255285,0.238885,0.477807,0.156341,0.0621429,0.839635,0.792895,0.356686,0.0212947,0.944045,0.744924,0.0385243,0.662466,0.994384,0.793421,0.938485,0.537021,0.283393,0.340309,0.488952,0.481375,0.115019,0.359954,0.109593,0.101135,0.988569,0.797407,0.336408,0.655244,0.716428,0.268908,0.222956,0.254822,0.0595508,0.0237479,0.0408208,0.828037,0.398819,0.274178,0.00173056,0.832491,0.431457,0.695124,0.398445,0.974646,0.290144,0.769175,0.910319,0.228548,0.851176,0.637658,0.512342,0.648037,0.406118,0.331207,0.654558,0.848243,0.857333,0.502702,0.22726,0.454884,0.950149,0.20699,0.199909,0.690758,0.856066,0.0776768,0.893188,0.237856,0.887025,0.200089,0.544367,0.773714,0.00511736,0.39239,0.840592,0.57152,0.19744,0.518587,0.237494,0.577523,0.176279,0.935714,0.828922,0.876296,0.106667,0.932487,0.8347,0.88861,0.10891,0.516613,0.629331,0.756448,0.250891,0.380168,0.219965,0.121802,0.0922595,0.0938837,0.642247,0.898479,0.918349,0.264442,0.978997,0.046489,0.712775,0.609804,0.518217,0.984795,0.25873,0.318714,0.815759,0.144659,0.0609292,0.50034,0.783881,0.383811,0.805176,0.471025,0.912255,0.481646,0.408731,0.241933,0.843547,0.646851,0.773073,0.141649,0.971732,0.573095,0.04049,0.529361,0.476491,0.18422,0.780433,0.702144,0.611972,0.629553,0.413573,0.467043,0.121166,0.47948,0.355782,0.325892,0.216764,0.667643,0.256661,0.731332,0.467005,0.809785,0.655625,0.861315,0.417123,0.367737,0.664712,0.358178,0.760556,0.0323544,0.536351,0.64427,0.339379,0.471676,0.248761,0.485261,0.54224,0.457012,0.0676134,0.988544,0.40288,0.638542,0.089952,0.893184,0.936011,0.711955,0.463038,0.553273,0.552942,0.945042,0.397673,0.32773,0.588052,0.560612,0.625435,0.106393,0.537766,0.62587,0.824667,0.518826,0.0686983,0.0371274,0.656169,0.677959,0.790395,0.259481,0.422816,0.124292,0.778517,0.52661,0.0205341,0.188253,0.465333,0.657099,0.792869,0.650723,0.980914,0.276975,0.2529,0.168241,0.31194,0.175012,0.655345,0.485973,0.0153899,0.127496,0.250015,0.217693,0.778375,0.0143054,0.376678,0.35979,0.241011,0.754569,0.488797,0.125973,0.38829,0.899385,0.91641,0.836125,0.0736668,0.993085,0.92378,0.170792,0.622327,0.0757686,0.571184,0.486365,0.878258,0.140014,0.436224,0.463064,0.00719959,0.208631,0.979744,0.491865,0.93502,0.0620011,0.112761,0.826097,0.321788,0.104388,0.376486,0.310461,0.995575,0.481645,0.336983,0.0633636,0.633075,0.391258,0.0293893,0.830071,0.652302,0.832992,0.588081,0.2722,0.239547,0.704813,0.475573,0.243403,0.442587,0.424251,0.893436,0.830913,0.790008,0.199635,0.77854,0.838899,0.497301,0.842304,0.883337,0.291448,0.50829,0.684895,0.938289,0.0240659,0.817228,0.839507,0.852708,0.357265,0.322616,0.0761087,0.32835,0.560353,0.300878,0.739574,0.286781,0.874238,0.237812,0.48402,0.103466,0.926367,0.359641,0.927704,0.128509,0.27752,0.949257,0.216014,0.366607,0.274062,0.948615,0.986737,0.534395,0.781941,0.210418,|0.79987,0.301343,0.193728,0.0715068,0.699691,0.939425,0.689819,0.63308,0.50446,0.463552,0.192984,0.161281,0.102114,0.422536,0.834006,0.891056,0.546779,0.910304,0.408635,0.372019,0.491546,0.604497,0.430451,0.421672,0.104341,0.552083,0.904628,0.60356,0.983634,0.594861,0.9592,0.0514136,0.328972,0.641301,0.141163,0.404137,0.913499,0.582509,0.762043,0.0308055,0.263079,0.330709,0.424034,0.18197,0.0224612,0.023289,0.0600084,0.682435,0.928414,0.617234,0.512655,0.429248,0.229188,0.205551,0.30298,0.926676,0.714937,0.247739,0.061241,0.370745,0.441843,0.421785,0.737069,0.529048,0.749019,0.472087,0.333456,0.3798,0.217332,0.450721,0.896378,0.490172,0.000470698,0.338644,0.012553,0.84445,0.710146,0.917174,0.0127363,0.476564,0.482003,0.176999,0.927028,0.694485,0.493703,0.133684,0.278232,0.551131,0.192198,0.56189,0.781816,0.389648,0.854269,0.334274,0.160744,0.270252,0.963509,0.309034,0.357632,0.897719,0.650175,0.359224,0.723642,0.813649,0.00819111,0.79089,0.702096,0.00345337,0.0524659,0.306686,0.625506,0.871507,0.128088,0.0441432,0.693365,0.858146,0.965128,0.568986,0.642551,0.249826,0.394646,0.566371,0.154146,0.0697954,0.511584,0.689038,0.100871,0.104701,0.880844,0.915321,0.830984,0.95753,0.401404,0.509013,0.401699,0.49366,0.835134,0.402761,0.217182,0.197028,0.727225,0.868214,0.0578452,0.653163,0.203427,0.927102,0.593917,0.0600377,0.864431,0.924327,0.190651,0.384968,0.749809,0.466677,0.219212,0.3201,0.660807,0.169546,0.0892552,0.139387,0.762651,0.0208815,0.00419199,0.397889,0.82938,0.963904,0.707179,0.171804,0.971769,0.760245,0.614278,0.277365,0.157955,0.223582,0.41344,0.288459,0.391597,0.667967,0.962871,0.835702,0.428123,0.373384,0.53312,0.517631,0.720661,0.748799,0.913626,0.511593,0.0693651,0.54894,0.245193,0.120308,0.952886,0.553773,0.0270459,0.406363,0.669481,0.258814,0.995714,0.742315,0.60028,0.20978,0.213482,0.392197,0.256882,0.441793,0.594788,0.877745,0.834917,0.287432,0.770024,0.49356,0.778337,0.651914,0.940498,0.574817,0.546571,0.195763,0.564061,0.219802,0.6966,0.889681,0.00589228,0.926204,0.42789,0.750334,0.743799,0.574506,0.890962,0.974736,0.780168,0.587287,0.00890964,0.558879,0.873742,0.638178,0.916256,0.0802733,0.371669,0.82783,0.679652,0.570237,0.864851,0.108205,0.957024,0.927975,0.786641,0.480781,0.510295,0.721287,0.374242,0.537425,0.243772,0.160905,0.0232815,0.826036,0.880093,0.0253044,0.909393,0.747104,0.650086,0.127203,0.0673812,0.133667,0.366451,0.836653,0.788938,0.998115,0.755927,0.726266,0.873818,0.373933,0.170653,0.114453,0.467365,0.616665,0.0798917,0.429918,0.486711,0.449288,0.431829,0.62097,0.983174,0.779447,0.279665,0.260799,0.0161999,0.477596,0.749368,0.150473,0.154996,0.0235897,0.813835,0.565284,0.302741,0.918264,0.731552,0.314948,0.938423,0.489004,0.144534,0.778577,0.427472,0.88314,0.089837,0.76932,0.960945,0.184299,0.386043,0.759411,0.482548,0.70744,0.237513,0.573266,0.423701,0.174724,0.0469679,0.0924327,0.926292,0.942496,0.0270208,0.59409,0.904712,0.345894,0.0460317,0.708765,0.51855,0.37269,0.493203,0.0969307,0.601896,0.0441317,0.218727,0.236561,0.615388,0.0133034,0.85737,0.403783,0.520504,0.956822,0.431206,0.542982,0.821798,0.828496,0.36752,0.561278,0.0548672,0.289549,0.886306,0.564078,0.120742,0.012119,0.809515,0.914596,0.931662,0.90442,0.136032,0.368676,0.183224,0.0327256,0.819936,0.413011,0.413776,0.0123525,0.335682,0.765864,0.188043,0.871339,0.861152,0.640903,0.627879,0.312326,0.509906,0.0708464,0.665518,0.828164,0.88478,0.341262,0.736243,0.106534,0.0671532,0.242662,0.148035,0.4623,0.917024,0.284769,0.514361,0.740322,0.0714715,0.688015,0.259209,0.767004,0.229284,0.190215,0.541528,0.211356,0.0231642,0.464529,0.826136,0.222544,0.473627,0.505245,0.648339,0.72607,0.204944,0.74443,0.132747,0.548731,0.0792434,0.0758214,0.774594,0.625458,0.385903,0.662244,0.84772,0.399016,0.58439,0.506267,0.519964,0.0639213,0.0736427,0.0590073,0.0367996,0.668118,0.625298,0.188034,0.844791,0.0551216,0.108554,0.962252,0.926997,0.475994,0.154247,0.350414,0.735311,0.763757,0.532318,0.532135,0.162144,0.693403,0.459175,0.121629,0.176375,0.776814,0.52117,0.941305,0.450829,0.209969,0.899476,0.854586,0.312606,0.86144,0.308902,0.408275,0.401739,0.966625,0.700805,0.738644,0.648618,0.147053,0.716305,0.0865427,0.531457,0.350056,0.863974,0.215177,0.068862,0.526282,0.564849,0.473665,0.734945,0.904105,0.279156,0.739345,0.123918,0.428694,0.00942135,0.124141,0.0666752,0.828952,0.805662,0.12674,0.253308,0.967034,0.587866,0.269588,0.0604799,0.167986,0.925743,0.0976189,0.863499,0.752387,0.95776,0.275436,0.416274,0.477637,0.205907,0.042146,0.286057,0.498845,0.438111,0.40719,0.645747,0.735851,0.363653,0.46776,0.951544,0.556545,0.820161,0.762215,0.816216,0.137637,0.509727,0.283993,0.439367,0.407569,0.670592,0.234186,0.258783,0.340122,0.114433,0.952802,0.345518,0.251858,0.275267,0.554651,0.897364,0.753247,0.206967,0.458289,0.45926,0.365051,0.596067,0.871441,0.302645,0.981087,0.0157772,0.98898,0.707428,0.684366,0.265246,0.15995,0.1657,0.63357,0.172025,0.779503,0.505189,0.824596,0.0144693,0.739706,0.907199,0.718206,0.936695,0.0886713,0.214172,0.845053,0.971171,0.940925,0.626735,0.67193,0.00628626,0.495175,0.459884,0.584405,0.0437276,0.856383,0.983152,0.594299,0.356875,0.721496,0.416691,0.82216,0.936262,0.339597,0.433037,0.563721,0.277406,0.890138,0.930904,0.400388,0.847802,0.751387,0.276141,0.568897,0.386424,0.181336,0.958291,0.0338976,0.89492,0.154619,0.680907,0.611096,0.908006,0.652085,0.627229,0.925842,0.974859,0.936497,0.134254,0.735166,0.955952,0.818211,0.0664994,0.692728,0.643387,0.342742,0.4536,0.204624,0.776951,0.895762,0.00408387,0.777033,0.494975,0.88175,0.940363,0.823527,0.732816,0.259363,0.291572,0.603523,0.00483054,0.119743,0.615687,0.366607,0.19691,0.639674,0.539007,0.4431,0.429761,0.221198,0.294906,0.0717146,0.751336,0.94576,0.66834,0.298954,0.0730746,0.319018,0.508614,0.500068,0.851116,0.469353,0.0356784,0.41577,0.0484548,0.554977,0.0978999,0.357716,0.764614,0.520095,0.232493,0.978381,0.246274,0.826403,0.388595,0.46893,0.783101,0.0712457,0.252421,0.558819,0.242677,0.188325,0.659987,0.749591,0.505041,0.247393,0.0173062,0.806553,0.0990527,0.593218,0.841596,0.157033,0.842852,0.304159,0.262402,0.346899,0.827101,0.863185,0.141523,0.269951,0.499409,0.242303,0.93939,0.150041,0.826771,0.168778,0.87638,0.43419,0.236145,0.311424,0.0778306,0.575836,0.0705171,0.378564,0.184617,0.206742,0.592654,0.629742,0.766957,0.577984,0.587562,0.67891,0.989328,0.65242,0.262681,0.376504,0.0323888,0.969682,0.168701,0.628958,0.968855,0.781573,0.00692898,0.5117,0.0204861,0.190483,0.249605,0.608484,0.755503,0.603345,0.592281,0.557637,0.528323,0.338612,0.130956,0.859409,0.2072,0.777665,0.173739,0.356993,0.250008,0.927197,0.168297,0.646257,0.406807,0.0205629,0.238943,0.650671,0.803883,0.313761,0.815266,0.247898,0.694589,0.780509,0.890821,0.964034,0.889854,0.0156262,0.660015,0.191765,0.916004,0.222915,0.35064,0.415935,0.972821,0.193722,0.394688,0.0303711,0.502963,0.0582392,0.36306,0.749451,0.209658,0.373985,0.367216,0.110907,0.478302,0.975972,0.863149,0.978611,0.0318214,0.0463279,0.0725493,0.319668,0.461724,0.792081,0.0114644,0.113614,0.106271,0.991929,0.711787,0.874641,0.599252,0.0272095,0.404164,0.441842,0.982922,0.227881,0.752484,0.89715,0.775189,0.746208,0.632608,0.696495,0.950467,0.307294,0.837047,0.24276,0.51866,0.213053,0.654052,0.367611,0.20319,0.524735,0.233098,0.26684,0.00516355,0.136746,0.804561,0.385752,0.219005,0.900497,0.98236,0.0146824,0.66298,0.230746,0.15237,0.799078,0.828964,0.127491,0.936329,0.0918759,0.801718,0.924773,0.485967,0.383467,0.693052,0.886795,0.76504,0.389732,0.58329,0.947183,0.203372,0.514843,0.31734,0.84035,0.349162,0.453295,0.771815,0.729697,0.216278,0.778461,0.837987,0.137626,0.869678,0.968453,0.517728,0.334417,0.696706,0.0443304,0.304702,0.498787,0.883503,0.160337,0.803374,0.172242,0.82094,0.311394,0.174077,0.766177,0.0879368,0.209757,0.824973,0.579983,0.404844,0.828106,0.184728,0.237533,0.653932,0.720511,0.80693,0.195015,0.443799,0.053482,0.880333,0.559914,0.376556,0.90656,0.989993,0.466279,0.144035,0.575908,0.0831082,0.963955,0.9032,0.822056,0.689808,0.446179,0.507255,0.340355,0.883963,0.0297158,0.873697,0.0955272,0.167721,0.138381,0.243881,0.0364612,0.054221,0.387514,0.639491,0.771306,0.739459,0.782933,0.436583,0.197629,0.589416,0.17741,0.545677,0.23733,0.500635,0.202198,0.619488,0.18906,0.812022,0.414432,0.552046,0.532445,0.429141,0.86046,0.380502,0.473528,0.977072,0.895342,0.541105,0.559556,0.165995,0.472079,0.33428,0.35088,0.613072,0.0261955,0.096214,0.482841,0.600532,0.0112922,0.722673,0.178922,0.00456494,0.216663,0.0801644,0.515836,0.856724,0.305452,0.0724278,0.261387,0.669393,0.784783,0.0105777,0.584447,0.95396,0.702629,0.618475,0.78752,0.814232,0.607085,0.587541,0.267578,0.644875,0.445893,0.424965,0.368617,0.320234,0.378223,0.448593,0.189234,0.668351,0.221678,0.639465,0.594138,0.419591,0.338687,0.0359215,0.395745,0.805219,0.319402,0.329752,0.356479,0.803224,0.65655,0.071991,0.341782,0.365034,0.817934,0.735457,0.683997,0.628083,0.835846,0.778698,0.909465,0.630168,0.702088,0.418522,0.00342917,0.416764,0.586678,0.259097,0.391265,0.652217,0.399077,|0.962443,0.780102,0.631454,0.989915,0.740208,0.526606,0.31135,0.658709,0.379816,0.604492,0.996223,0.87762,0.779213,0.893988,0.110817,0.358509,0.895041,0.757844,0.539524,0.696549,0.28775,0.757471,0.826019,0.791347,0.353838,0.460158,0.729785,0.353041,0.12151,0.148296,0.560465,0.215233,0.470637,0.184741,0.891781,0.559037,0.355627,0.660584,0.811057,0.738166,0.998969,0.892217,0.433879,0.186673,0.000551403,0.312748,0.808896,0.294895,0.0921052,0.728538,0.58813,0.454345,0.848958,0.297223,0.381442,0.146128,0.957127,0.027806,0.97942,0.825652,0.715926,0.787071,0.692516,0.670151,0.679557,0.339832,0.246735,0.600563,0.21694,0.325768,0.150596,0.361416,0.312447,0.517152,0.822406,0.705624,0.719856,0.979658,0.659764,0.473174,0.249857,0.755213,0.503306,0.939918,0.363436,0.836613,0.636373,0.703658,0.115718,0.276583,0.483273,0.777638,0.0150506,0.752146,0.0832323,0.139692,0.816291,0.906649,0.661139,0.09603,0.585031,0.389962,0.671433,0.336845,0.0771922,0.593979,0.291897,0.963136,0.122431,0.906364,0.611724,0.554515,0.885756,0.938198,0.501021,0.769681,0.639265,0.671729,0.212766,0.746574,0.723302,0.835268,0.858581,0.0333551,0.479396,0.943439,0.880636,0.0897425,0.123085,0.12861,0.985651,0.142215,0.0524164,0.988311,0.907292,0.184617,0.879966,0.0474632,0.0117901,0.681827,0.0651274,0.175705,0.717718,0.818045,0.00590158,0.255449,0.00987589,0.193219,0.401176,0.501685,0.645278,0.653446,0.141158,0.466075,0.660951,0.498013,0.200909,0.429166,0.814223,0.54518,0.673526,0.105063,0.626144,0.97566,0.309133,0.294887,0.312817,0.591762,0.875831,0.905029,0.621599,0.626051,0.871922,0.845565,0.160813,0.419086,0.636908,0.304929,0.749239,0.816667,0.660281,0.600618,0.763884,0.966653,0.234487,0.0757726,0.506658,0.217785,0.534722,0.863673,0.602374,0.362501,0.542646,0.998705,0.444124,0.0778977,0.548924,0.243848,0.367789,0.423358,0.403238,0.601659,0.922258,0.500692,0.364142,0.422535,0.508836,0.250914,0.950212,0.864118,0.359854,0.303913,0.232879,0.937271,0.445039,0.812948,0.140466,0.94048,0.350927,0.878684,0.669605,0.377995,0.722333,0.905863,0.96056,0.437599,0.084169,0.386266,0.617532,0.733365,0.551654,0.993172,0.577739,0.472013,0.757713,0.465789,0.899567,0.433376,0.872055,0.180557,0.822198,0.407176,0.00968307,0.898384,0.56946,0.570796,0.510691,0.777871,0.985668,0.644526,0.888419,0.681718,0.299028,0.471976,0.490662,0.258146,0.523451,0.238665,0.9226,0.223932,0.0810826,0.213342,0.913435,0.981444,0.383581,0.163764,0.378051,0.713357,0.792497,0.105596,0.304352,0.109429,0.54984,0.376357,0.179565,0.441501,0.0362629,0.522449,0.0464326,0.90093,0.457184,0.475836,0.290424,0.61549,0.166294,0.535699,0.428,0.940134,0.791119,0.797712,0.144459,0.154545,0.429844,0.947787,0.382557,0.650255,0.0591208,0.226952,0.943794,0.994131,0.39657,0.151434,0.55624,0.166694,0.538973,0.0614604,0.198503,0.783933,0.348243,0.246496,0.843042,0.562574,0.959649,0.525726,0.472191,0.940294,0.383747,0.251103,0.229827,0.743158,0.642531,0.198786,0.770151,0.083985,0.944755,0.399078,0.267965,0.587928,0.0378974,0.94964,0.551004,0.654493,0.0979508,0.0840943,0.819689,0.743977,0.646921,0.313196,0.491989,0.429445,0.912768,0.614728,0.986182,0.746983,0.766081,0.451593,0.925489,0.899919,0.0561358,0.761665,0.979207,0.927499,0.275459,0.855329,0.246914,0.975499,0.779393,0.95971,0.873134,0.00341922,0.316728,0.389205,0.369234,0.889965,0.417732,0.896278,0.400189,0.391066,0.989146,0.891673,0.794212,0.572078,0.585645,0.191658,0.0784749,0.303486,0.593509,0.990761,0.760285,0.0751538,0.828583,0.79516,0.178981,0.133911,0.603692,0.353646,0.443738,0.0491403,0.425312,0.861729,0.852362,0.305565,0.248604,0.447912,0.338734,0.528501,0.426936,0.148832,0.536352,0.354437,0.604304,0.922899,0.866722,0.663101,0.518338,0.927902,0.909914,0.979792,0.771498,0.325519,0.759636,0.313399,0.570515,0.150135,0.129685,0.586408,0.50375,0.893542,0.00996423,0.255869,0.819546,0.556873,0.795763,0.577709,0.0464884,0.276334,0.118986,0.714266,0.098389,0.811099,0.24121,0.730565,0.79195,0.972348,0.635037,0.629483,0.833616,0.29045,0.249928,0.839364,0.961635,0.731068,0.760774,0.908478,0.218148,0.672231,0.186148,0.983039,0.229473,0.0228169,0.68386,0.0811206,0.339053,0.119736,0.350726,0.64877,0.387072,0.253698,0.750349,0.64001,0.921587,0.545893,0.763305,0.428914,0.552318,0.0379812,0.330591,0.143645,0.449922,0.611365,0.435435,0.0338537,0.812984,0.914413,0.0339398,0.232812,0.766813,0.140385,0.0746881,0.427145,0.20617,0.97367,0.942891,0.320082,0.892343,0.447276,0.0294172,0.362517,0.457093,0.497185,0.308857,0.253689,0.826886,0.352047,0.0137082,0.790826,0.0935349,0.444499,0.81038,0.76608,0.0423555,0.162502,0.171309,0.933122,0.983832,0.810605,0.534383,0.95289,0.767665,0.732664,0.674547,0.218151,0.933199,0.871212,0.327743,0.294692,0.566886,0.428979,0.948427,0.584739,0.652845,0.855002,0.319338,0.819043,0.792898,0.0247997,0.740759,0.90717,0.736138,0.812616,0.982692,0.943359,0.716485,0.821332,0.00942981,0.679998,0.126209,0.407616,0.325482,0.925606,0.946478,0.822467,0.609839,0.467132,0.849191,0.933597,0.941063,0.891925,0.719238,0.769792,0.216965,0.47151,0.918159,0.595493,0.707093,0.584826,0.024782,0.75751,0.618638,0.181362,0.688467,0.0198392,0.372131,0.688392,0.451593,0.50035,0.55799,0.918966,0.305924,0.150182,0.263969,0.579703,0.20577,0.528673,0.550899,0.967154,0.509867,0.401595,0.970775,0.533219,0.860169,0.234761,0.44102,0.904915,0.955744,0.797429,0.99034,0.197832,0.420552,0.770375,0.409769,0.261722,0.876916,0.331774,0.107265,0.945913,0.571679,0.556954,0.0598217,0.695072,0.795334,0.235713,0.780377,0.085297,0.225798,0.899084,0.0351804,0.0219857,0.478111,0.389787,0.0935434,0.878659,0.568651,0.153844,0.0118166,0.393052,0.859094,0.234022,0.15325,0.79118,0.740219,0.213123,0.787964,0.530112,0.394539,0.125169,0.291571,0.364399,0.0141671,0.180033,0.950913,0.891538,0.425399,0.733347,0.738298,0.158884,0.375569,0.701935,0.591059,0.107178,0.625874,0.321857,0.0865629,0.134747,0.93987,0.119197,0.740995,0.964788,0.842731,0.961751,0.204759,0.170262,0.375805,0.806343,0.706937,0.961011,0.112646,0.420442,0.0203215,0.927098,0.599909,0.89796,0.738341,0.963937,0.674769,0.583424,0.40827,0.225442,0.0402194,0.687631,0.950509,0.719128,0.114804,0.564242,0.948892,0.160595,0.0890006,0.353433,0.0455272,0.588523,0.204174,0.00443929,0.0152476,0.0741954,0.818614,0.290439,0.754492,0.976525,0.578895,0.334623,0.0415998,0.650365,0.170852,0.642509,0.697669,0.340864,0.420638,0.945984,0.684463,0.995117,0.0427032,0.687822,0.834024,0.53154,0.00313848,0.425658,0.277228,0.364667,0.664259,0.663616,0.462,0.685666,0.785994,0.984281,0.0089488,0.159905,0.537974,0.54597,0.39563,0.0824367,0.477085,0.238804,0.201711,0.154935,0.281365,0.440684,0.122124,0.847568,0.134705,0.479339,0.566453,0.920692,0.940031,0.759775,0.0572952,0.917812,0.930346,0.706317,0.641349,0.0748878,0.72991,0.596488,0.945258,0.483571,0.348668,0.944244,0.755569,0.452139,0.880042,0.417428,0.981749,0.776179,0.00793928,0.686181,0.317998,0.190239,0.720351,0.819065,0.499921,0.625555,0.573168,0.715075,0.28365,0.646379,0.197379,0.0954044,0.852869,0.305994,0.907199,0.44204,0.993905,0.584495,0.888702,0.813829,0.216312,0.396882,0.592392,0.524667,0.188767,0.514544,0.715282,0.888537,0.425516,0.0698049,0.0717394,0.831425,0.203203,0.126781,0.560279,0.185138,0.626453,0.36083,0.280267,0.683104,0.942993,0.95021,0.974353,0.26119,0.434355,0.943533,0.646915,0.0902247,0.774826,0.923042,0.880229,0.0143975,0.587039,0.787358,0.702652,0.560201,0.176515,0.0772195,0.995885,0.602627,0.111787,0.860683,0.251737,0.867057,0.648366,0.453665,0.689432,0.685658,0.569907,0.92753,0.867911,0.740888,0.660932,0.0442414,0.75584,0.11105,0.299114,0.875375,0.607222,0.626917,0.717097,0.0847582,0.128554,0.0990332,0.0709467,0.11385,0.355888,0.306745,0.05256,0.67142,0.250408,0.990044,0.360594,0.13046,0.756323,0.204736,0.0677034,0.60793,0.167195,0.905526,0.83353,0.891518,0.151606,0.00205135,0.533019,0.607755,0.842286,0.302264,0.863437,0.155999,0.472971,0.919299,0.312769,0.3918,0.830135,0.584559,0.820759,0.255024,0.497998,0.660754,0.549338,0.27511,0.662774,0.759654,0.555724,0.143791,0.176958,0.888236,0.713128,0.216742,0.720992,0.681945,0.168552,0.706927,0.629354,0.916018,0.0379329,0.572901,0.33037,0.1852,0.218247,0.359026,0.956094,0.516796,0.869112,0.184654,0.794553,0.80878,0.522206,0.56277,0.776764,0.156284,0.928245,0.77692,0.300315,0.885357,0.239659,0.114663,0.49977,0.1326,0.021826,0.517501,0.846812,0.548433,0.136014,0.586964,0.927924,0.690285,0.66039,0.166951,0.442472,0.0735931,0.0802991,0.0694879,0.0828853,0.675831,0.784814,0.220545,0.292371,0.461373,0.388193,0.0244241,0.561629,0.624559,0.401262,0.372866,0.870529,0.198235,0.284553,0.69418,0.0649342,0.398684,0.424927,0.932147,0.340016,0.979013,0.234656,0.133543,0.745676,0.281775,0.47905,0.856966,0.952595,0.25473,0.343665,0.559534,0.833932,0.518681,0.208857,0.306887,0.582669,0.726031,0.647725,0.744319,0.567143,0.157614,0.104551,0.931485,0.493269,0.819195,0.493935,0.0856212,0.932968,0.647876,0.113972,0.616487,0.460769,0.977422,0.539958,0.424281,0.275266,0.191442,0.545451,0.44439,0.858927,0.290721,0.519276,0.653591,0.919174,0.713707,0.866087,0.887648,0.512386,0.110659,0.0185174,0.185494,|0.711625,0.677695,0.445306,0.283419,0.484702,0.147983,0.155844,0.0161908,0.975742,0.504624,0.748902,0.591004,0.155428,0.138234,0.343221,0.672743,0.508978,0.218388,0.411929,0.342068,0.637097,0.861251,0.221812,0.209877,0.258873,0.427699,0.390538,0.316156,0.656598,0.756265,0.407542,0.961089,0.384213,0.124507,0.305252,0.312851,0.987794,0.41857,0.197237,0.569975,0.20569,0.477215,0.920894,0.918789,0.903196,0.437429,0.314895,0.235739,0.549078,0.93716,0.487443,0.035868,0.927928,0.274011,0.961529,0.864474,0.0860703,0.453321,0.270848,0.499789,0.677477,0.91068,0.512551,0.946826,0.715016,0.151555,0.0319208,0.621614,0.0458376,0.196355,0.271362,0.419856,0.732728,0.555192,0.915941,0.880441,0.0591258,0.499309,0.133511,0.270627,0.321023,0.690994,0.97616,0.453632,0.0356981,0.261926,0.95604,0.302326,0.435632,0.113451,0.0621517,0.0307298,0.0739319,0.904108,0.78985,0.981481,0.656586,0.140194,0.155289,0.19256,0.273603,0.465738,0.224819,0.418965,0.42722,0.742491,0.643842,0.959418,0.864957,0.0671671,0.216054,0.171723,0.791716,0.83724,0.654093,0.87878,0.554058,0.0659527,0.115054,0.962395,0.457863,0.259004,0.722085,0.347213,0.542422,0.216197,0.729653,0.662746,0.832045,0.263057,0.476683,0.156426,0.668629,0.527748,0.0328064,0.960779,0.395818,0.559276,0.0437118,0.82415,0.139944,0.81012,0.480508,0.686665,0.253799,0.3826,0.22849,0.583998,0.299452,0.110209,0.890346,0.309134,0.618506,0.836355,0.671494,0.552219,0.211277,0.631795,0.468413,0.452285,0.692562,0.816652,0.0809972,0.0492478,0.93012,0.891909,0.768497,0.521581,0.16148,0.0136398,0.535657,0.533689,0.0823532,0.659304,0.365208,0.156204,0.228876,0.89962,0.722517,0.378002,0.560214,0.116246,0.240314,0.55682,0.129898,0.283073,0.866852,0.783931,0.831696,0.771174,0.700472,0.758705,0.629829,0.957572,0.0567577,0.888414,0.0511935,0.974171,0.614564,0.459723,0.277609,0.102049,0.529625,0.0904247,0.868686,0.1755,0.0585657,0.601926,0.308042,0.110128,0.145586,0.88564,0.483565,0.0633485,0.834675,0.969503,0.753432,0.826382,0.875885,0.845277,0.646304,0.832579,0.702877,0.826409,0.521302,0.405591,0.481875,0.750006,0.150123,0.373509,0.206043,0.0584069,0.384091,0.450089,0.434557,0.433679,0.168874,0.83811,0.575982,0.133549,0.199328,0.015973,0.604448,0.914603,0.508297,0.125174,0.201895,0.797441,0.00486457,0.559974,0.501761,0.492166,0.235343,0.181028,0.939168,0.0690578,0.345527,0.534376,0.138741,0.43529,0.0146679,0.710108,0.734567,0.579971,0.589034,0.0283598,0.254097,0.198717,0.437971,0.0513985,0.054579,0.308193,0.74606,0.433253,0.436813,0.48502,0.391871,0.133411,0.355747,0.0333492,0.7884,0.546252,0.781861,0.50153,0.295643,0.31104,0.95629,0.79688,0.757672,0.204195,0.0820686,0.421143,0.54591,0.726989,0.582493,0.563885,0.456409,0.923952,0.787555,0.68045,0.622692,0.46105,0.844328,0.298229,0.72367,0.0646421,0.791181,0.340944,0.0678543,0.0842794,0.505368,0.448182,0.261049,0.686785,0.042576,0.477436,0.989738,0.912607,0.925494,0.59617,0.0225626,0.92034,0.802302,0.172895,0.674444,0.479955,0.969655,0.609681,0.730202,0.388725,0.335763,0.34311,0.504343,0.769997,0.419826,0.399381,0.139649,0.0897113,0.331739,0.947778,0.569777,0.892389,0.506284,0.477802,0.19343,0.706627,0.443365,0.493473,0.947378,0.478477,0.371664,0.358439,0.900555,0.303006,0.705557,0.659655,0.229508,0.323955,0.60033,0.764086,0.0817782,0.748626,0.0187274,0.31328,0.256203,0.35078,0.241881,0.717279,0.154599,0.997401,0.0534083,0.131117,0.293483,0.484401,0.82429,0.743144,0.237408,0.108108,0.506305,0.397361,0.0154232,0.0441587,0.975252,0.672317,0.67897,0.231588,0.853139,0.995254,0.503028,0.878955,0.290128,0.965967,0.130525,0.633948,0.886456,0.0413552,0.416754,0.0180841,0.0228738,0.283056,0.309061,0.688806,0.431737,0.531137,0.93304,0.449334,0.695262,0.390235,0.666896,0.25134,0.203839,0.722148,0.639677,0.731349,0.649804,0.173509,0.789991,0.971486,0.113789,0.2301,0.183242,0.378789,0.420459,0.617621,0.011865,0.211145,0.826464,0.582043,0.748775,0.429532,0.198237,0.803753,0.00640863,0.89936,0.968154,0.0619947,0.331462,0.893366,0.957118,0.415976,0.483589,0.552681,0.300279,0.313244,0.763751,0.963245,0.0650228,0.437796,0.356999,0.377568,0.0640972,0.549499,0.648297,0.92965,0.035571,0.51378,0.203283,0.977597,0.578201,0.237993,0.279278,0.359643,0.0289558,0.129651,0.891609,0.0917,0.765277,0.616815,0.439541,0.98079,0.255586,0.0263355,0.980849,0.101081,0.102997,0.00343692,0.313249,0.206579,0.107605,0.428895,0.363106,0.638663,0.000918925,0.628928,0.887065,0.225741,0.57805,0.426947,0.48601,0.301101,0.514589,0.926709,0.980642,0.690548,0.302885,0.270383,0.187045,0.484645,0.0912144,0.0732371,0.917012,0.383164,0.507586,0.226517,0.460043,0.648537,0.992046,0.0328811,0.119782,0.279518,0.690784,0.00543642,0.708523,0.0319105,0.672853,0.241373,0.220151,0.35867,0.539704,0.871407,0.960834,0.247241,0.092564,0.9963,0.0371823,0.543692,0.178649,0.597862,0.92924,0.159504,0.203547,0.909933,0.341725,0.688974,0.148667,0.170291,0.864038,0.958103,0.525876,0.448401,0.921485,0.916257,0.784447,0.38627,0.525951,0.834327,0.958635,0.892511,0.712093,0.499238,0.568268,0.0211605,0.149146,0.711286,0.93384,0.742095,0.0295538,0.584741,0.22043,0.496413,0.27377,0.731188,0.142523,0.625981,0.0159218,0.970163,0.0143083,0.77792,0.0164837,0.655888,0.799807,0.381814,0.275479,0.903808,0.632363,0.942946,0.885147,0.356439,0.795541,0.403763,0.252508,0.75314,0.453203,0.312597,0.180516,0.713993,0.581235,0.791154,0.855175,0.648221,0.485447,0.819221,0.444343,0.881063,0.568154,0.641724,0.631801,0.732289,0.477178,0.284005,0.910053,0.104315,0.743606,0.654983,0.605573,0.361799,0.17419,0.998804,0.627425,0.547637,0.774398,0.867561,0.771649,0.398066,0.373917,0.590859,0.526378,0.30944,0.385935,0.814734,0.420388,0.0670103,0.841944,0.926209,0.539212,0.724583,0.974434,0.917786,0.925302,0.666819,0.559188,0.575686,0.256306,0.805597,0.268969,0.460799,0.823521,0.299051,0.937283,0.377358,0.590981,0.430297,0.152858,0.47921,0.0883432,0.441407,0.700765,0.830955,0.933075,0.261198,0.795442,0.486707,0.945884,0.940631,0.75575,0.645933,0.711498,0.269198,0.455791,0.832594,0.751198,0.257569,0.682777,0.212674,0.303289,0.421972,0.231556,0.512498,0.788217,0.480599,0.14643,0.909685,0.20094,0.496989,0.7797,0.568643,0.434216,0.547828,0.734771,0.621369,0.231825,0.286312,0.0126286,0.608392,0.344082,0.580394,0.338202,0.280542,0.476348,0.0246789,0.17346,0.0829558,0.682805,0.464969,0.530586,0.340064,0.40388,0.989425,0.761395,0.850592,0.105128,0.543496,0.549053,0.385336,0.695487,0.169571,0.0611623,0.771689,0.703898,0.239989,0.491172,0.451383,0.222288,0.792714,0.442045,0.626858,0.84426,0.563591,0.818948,0.434204,0.363985,0.935012,0.0076912,0.000901461,0.970554,0.435563,0.387588,0.553037,0.0774112,0.912035,0.01096,0.571694,0.622135,0.557698,0.665999,0.270423,0.0408224,0.700571,0.253831,0.440211,0.437812,0.178372,0.94455,0.361074,0.257086,0.51897,0.589888,0.913778,0.871874,0.740132,0.106293,0.965446,0.676014,0.289816,0.666746,0.634509,0.555469,0.375232,0.0357183,0.588089,0.503018,0.626509,0.0517621,0.265104,0.568249,0.969771,0.128411,0.135865,0.879849,0.230157,0.379714,0.618496,0.104926,0.428828,0.995724,0.686869,0.137492,0.786499,0.498906,0.398773,0.19944,0.337602,0.385369,0.00837874,0.210266,0.371561,0.0682523,0.90637,0.340118,0.270885,0.450094,0.979169,0.559731,0.24488,0.18492,0.172175,0.516291,0.738809,0.582791,0.18456,0.870085,0.287161,0.585724,0.773904,0.437795,0.918188,0.78261,0.750529,0.0897318,0.8635,0.88046,0.353207,0.838993,0.382359,0.165872,0.484781,0.303128,0.570506,0.151199,0.0465282,0.870781,0.475335,0.154991,0.0688103,0.871296,0.47829,0.149288,0.949294,0.250139,0.660523,0.95025,0.484479,0.624677,0.983064,0.347861,0.428181,0.276089,0.787104,0.580219,0.154176,0.9122,0.745776,0.491839,0.460392,0.172713,0.277767,0.759876,0.874008,0.558248,0.0350287,0.562961,0.645292,0.0465707,0.21923,0.280289,0.0616956,0.109554,0.598479,0.936513,0.0500372,0.158672,0.958406,0.289593,0.968473,0.00146145,0.834491,0.489207,0.722545,0.0966213,0.81368,0.437851,0.927716,0.365452,0.646737,0.0922474,0.492731,0.258105,0.132655,0.775371,0.35159,0.848991,0.0646768,0.269073,0.455314,0.998864,0.0298073,0.963369,0.599822,0.0509596,0.486825,0.411387,0.00931948,0.863088,0.0628229,0.92636,0.0710368,0.368095,0.683832,0.770589,0.590074,0.134712,0.894778,0.640793,0.846548,0.747585,0.266223,0.968493,0.895457,0.643851,0.433694,0.0641984,0.561183,0.534057,0.174758,0.0113153,0.724996,0.884882,0.972111,0.641482,0.407835,0.924462,0.154688,0.020312,0.571598,0.423251,0.474465,0.99826,0.888969,0.896821,0.670073,0.391016,0.770232,0.0633501,0.145594,0.108308,0.698016,0.789492,0.753584,0.53484,0.704784,0.789499,0.0393685,0.324356,0.690647,0.492637,0.00559342,0.996729,0.865,0.00119257,0.344097,0.826309,0.357608,0.457867,0.0284241,0.703952,0.808583,0.692154,0.466696,0.799907,0.654046,0.301406,0.45985,0.511583,0.930935,0.307189,0.0428245,0.323565,0.757048,0.298272,0.111251,0.490037,0.934457,0.831651,0.734088,0.487687,0.312854,0.106264,0.366442,0.55674,0.230589,0.143961,0.213188,0.619691,0.408733,0.434389,0.895563,0.654823,0.0601701,0.723589,0.961606,0.703582,0.156227,0.459786,0.733833,0.990717,0.682005,0.976936,0.922725,0.996857,0.183106,|0.822173,0.781757,0.171856,0.176718,0.9639,0.0987471,0.844059,0.861577,0.0652753,0.00779748,0.395378,0.555341,0.0368671,0.644112,0.793752,0.109153,0.0666533,0.103999,0.757479,0.00854164,0.580065,0.101559,0.317646,0.512192,0.354508,0.129291,0.231675,0.481963,0.13564,0.985516,0.795705,0.277589,0.958403,0.608004,0.449168,0.991074,0.299623,0.258201,0.527552,0.354692,0.216293,0.484606,0.471582,0.943963,0.992931,0.192212,0.684783,0.631361,0.243949,0.0774361,0.109975,0.071466,0.841886,0.691048,0.259812,0.220062,0.558328,0.951087,0.23326,0.015923,0.748834,0.345675,0.0146124,0.00405735,0.336094,0.479323,0.391956,0.393085,0.104089,0.551348,0.0728227,0.808352,0.872316,0.239319,0.411764,0.954729,0.148573,0.843053,0.419985,0.792491,0.808404,0.0670115,0.240715,0.148528,0.888023,0.560693,0.423471,0.507083,0.153979,0.105181,0.133578,0.721707,0.849636,0.947542,0.757703,0.045167,0.88072,0.637011,0.974147,0.482311,0.0807046,0.693324,0.511821,0.479088,0.515854,0.138457,0.388697,0.142458,0.0334588,0.794458,0.024755,0.0491719,0.848885,0.690801,0.638843,0.717662,0.717901,0.508417,0.0264987,0.66981,0.447674,0.87407,0.585274,0.921337,0.0675979,0.900154,0.424001,0.990284,0.453026,0.560503,0.76392,0.444569,0.127584,0.722914,0.301312,0.525671,0.745241,0.535872,0.485305,0.776493,0.0539563,0.351377,0.876985,0.729015,0.48244,0.658063,0.920837,0.209233,0.686556,0.825624,0.0637717,0.930595,0.0457206,0.693437,0.172135,0.503371,0.154593,0.125951,0.91165,0.43271,0.207905,0.799086,0.962031,0.202071,0.275167,0.00410914,0.767661,0.312027,0.590767,0.897472,0.994777,0.446015,0.545099,0.138678,0.197506,0.475432,0.569196,0.304084,0.983677,0.261474,0.280287,0.101121,0.162922,0.525994,0.575051,0.630084,0.751767,0.208485,0.116857,0.525345,0.9803,0.921275,0.803034,0.384192,0.626115,0.209462,0.280438,0.0417498,0.434129,0.734926,0.0384458,0.177241,0.532456,0.316528,0.112044,0.533619,0.892357,0.541578,0.860331,0.525969,0.710722,0.327561,0.864854,0.0359784,0.981209,0.855058,0.38898,0.430767,0.153298,0.748406,0.736392,0.157581,0.779226,0.941917,0.919618,0.457003,0.247158,0.690977,0.966464,0.380219,0.613649,0.762643,0.498181,0.383397,0.830204,0.289649,0.813482,0.0617709,0.0775385,0.0475207,0.720235,0.898211,0.969321,0.131768,0.811045,0.00526708,0.907224,0.103046,0.198852,0.796763,0.303365,0.636359,0.73125,0.688758,0.888676,0.608544,0.606692,0.46799,0.179591,0.202283,0.858928,0.811294,0.195809,0.853318,0.244902,0.958967,0.230834,0.484871,0.968253,0.337984,0.608955,0.574977,0.456498,0.801227,0.223388,0.958419,0.401719,0.346979,0.842735,0.0180829,0.136181,0.293662,0.505261,0.596999,0.794595,0.376622,0.0945023,0.51507,0.352167,0.500361,0.656436,0.366438,0.615591,0.888337,0.972853,0.100785,0.620043,0.765684,0.288957,0.419593,0.0617222,0.589293,0.983728,0.359902,0.527288,0.85051,0.613513,0.542649,0.621387,0.505831,0.974256,0.309455,0.182338,0.655891,0.780625,0.366057,0.257103,0.528826,0.29192,0.0372364,0.872385,0.416815,0.345229,0.220963,0.971123,0.904481,0.141257,0.0728663,0.893406,0.411187,0.643975,0.8577,0.368486,0.307007,0.206626,0.382184,0.892452,0.245479,0.058305,0.789972,0.24765,0.363571,0.248083,0.286755,0.3703,0.348108,0.835396,0.364154,0.911775,0.82315,0.252003,0.823498,0.721359,0.225751,0.183838,0.158111,0.893368,0.737844,0.484055,0.402752,0.193885,0.257732,0.75496,0.249125,0.134248,0.641837,0.484765,0.416312,0.413149,0.577721,0.363916,0.012601,0.97472,0.053948,0.0422923,0.99395,0.984738,0.75782,0.866721,0.7374,0.398186,0.374079,0.0975677,0.901042,0.938313,0.598302,0.324939,0.693243,0.137608,0.122506,0.626975,0.763372,0.705818,0.600237,0.556805,0.350171,0.90567,0.796752,0.600705,0.127779,0.399855,0.253814,0.956578,0.590287,0.523645,0.0766934,0.283415,0.546789,0.0908971,0.326691,0.518734,0.801661,0.840053,0.76847,0.204645,0.904533,0.874195,0.00690854,0.731437,0.613671,0.16187,0.86125,0.931444,0.867797,0.829072,0.654112,0.878853,0.921891,0.657142,0.265478,0.200449,0.469302,0.588912,0.420165,0.075944,0.0550196,0.129265,0.597416,0.150217,0.0881261,0.390486,0.85815,0.868329,0.874816,0.88588,0.54278,0.763141,0.521764,0.215211,0.992934,0.582112,0.542701,0.739137,0.389259,0.354984,0.362829,0.723007,0.821402,0.624632,0.505491,0.459798,0.763596,0.324411,0.859383,0.628711,0.000370085,0.567628,0.0468999,0.617412,0.586192,0.416362,0.183605,0.316914,0.842604,0.801039,0.641391,0.325126,0.0269969,0.294083,0.467581,0.283173,0.656353,0.169107,0.561262,0.276643,0.160536,0.711952,0.343183,0.105609,0.999041,0.223547,0.805937,0.194259,0.485455,0.928332,0.503052,0.975849,0.803141,0.68885,0.442111,0.197463,0.94929,0.750924,0.731736,0.788523,0.928556,0.913196,0.878625,0.760395,0.234761,0.623336,0.907059,0.574619,0.589999,0.40083,0.267551,0.54739,0.218956,0.807881,0.782339,0.561417,0.760607,0.49676,0.873427,0.549781,0.219487,0.622648,0.502615,0.991502,0.192511,0.983714,0.517101,0.334885,0.224473,0.62069,0.706734,0.188853,0.845751,0.968583,0.403851,0.694766,0.90163,0.695989,0.0599878,0.257196,0.20862,0.526139,0.755224,0.496896,0.314789,0.312028,0.0211887,0.607941,0.731699,0.0988339,0.377288,0.623762,0.961525,0.679304,0.306812,0.414217,0.0908154,0.840027,0.206615,0.718402,0.40004,0.828148,0.91902,0.641472,0.871169,0.926259,0.588896,0.841407,0.338058,0.150302,0.516482,0.718516,0.239917,0.228175,0.366279,0.253325,0.464042,0.443633,0.374481,0.277747,0.243465,0.344906,0.234329,0.270557,0.343669,0.793933,0.715432,0.698383,0.425487,0.680913,0.734464,0.310804,0.73057,0.372016,0.168411,0.803379,0.61578,0.460908,0.578324,0.670362,0.530173,0.662355,0.0911756,0.648407,0.603308,0.424432,0.759061,0.171447,0.742248,0.577719,0.38944,0.0911134,0.195124,0.365222,0.790292,0.254164,0.000530422,0.356129,0.600031,0.508027,0.805107,0.961708,0.0643251,0.772738,0.00618541,0.193604,0.12814,0.593863,0.550154,0.332927,0.730524,0.0139545,0.720648,0.190047,0.958119,0.614024,0.0915251,0.306835,0.0667875,0.566507,0.104483,0.0616095,0.97666,0.233217,0.146263,0.510391,0.566008,0.524556,0.158326,0.110883,0.679144,0.110719,0.403954,0.734861,0.65247,0.0400903,0.530402,0.789687,0.112153,0.679776,0.468945,0.596719,0.509192,0.412689,0.100126,0.0497276,0.207282,0.350652,0.875307,0.671031,0.213598,0.297156,0.0609936,0.521483,0.887446,0.210297,0.64448,0.64658,0.046157,0.379944,0.795004,0.278453,0.439554,0.0494408,0.0330024,0.596507,0.185477,0.0575487,0.839295,0.457551,0.974806,0.113038,0.782579,0.874653,0.0792671,0.718098,0.267595,0.113158,0.908516,0.902802,0.696113,0.374134,0.221659,0.743796,0.132224,0.462658,0.857372,0.574001,0.328322,0.287127,0.375775,0.838437,0.173565,0.686033,0.585002,0.0176121,0.564193,0.309977,0.108854,0.766745,0.511178,0.566414,0.885062,0.753863,0.567121,0.495654,0.0951005,0.947035,0.294095,0.613026,0.592669,0.44324,0.927897,0.929996,0.315649,0.584308,0.0647542,0.503281,0.916962,0.275264,0.287128,0.291866,0.570996,0.547758,0.874217,0.735089,0.582279,0.635329,0.621409,0.180046,0.328169,0.441573,0.697072,0.827148,0.980394,0.455225,0.337701,0.317338,0.264801,0.608562,0.942874,0.871401,0.957773,0.646087,0.84498,0.376378,0.431556,0.556955,0.734856,0.163804,0.224093,0.140315,0.116669,0.107478,0.15445,0.402369,0.98295,0.79034,0.911054,0.0998629,0.204653,0.750116,0.81242,0.644356,0.156248,0.889796,0.224413,0.41138,0.91149,0.572678,0.249916,0.0851395,0.163516,0.966744,0.42854,0.183675,0.0223908,0.017177,0.437979,0.0492285,0.855471,0.398064,0.379216,0.994064,0.519828,0.40338,0.557763,0.0141321,0.920763,0.482454,0.823717,0.590406,0.154265,0.888169,0.245924,0.995827,0.833318,0.870249,0.641373,0.710651,0.12034,0.159901,0.944309,0.216184,0.611552,0.149313,0.100393,0.146488,0.31758,0.204888,0.245155,0.964436,0.981507,0.201371,0.928344,0.711239,0.406317,0.128022,0.562234,0.0163398,0.772074,0.801817,0.11232,0.173406,0.743034,0.340591,0.626816,0.239116,0.254226,0.18097,0.382462,0.55614,0.755766,0.533016,0.969822,0.0174692,0.774692,0.392638,0.6361,0.996942,0.971483,0.870011,0.580739,0.900402,0.266611,0.685869,0.573058,0.155802,0.828405,0.150773,0.544522,0.167695,0.653658,0.396092,0.0498579,0.59618,0.49923,0.240711,0.591066,0.943452,0.840735,0.382352,0.753906,0.683706,0.753486,0.447658,0.751182,0.453574,0.20536,0.667093,0.599015,0.0783135,0.65901,0.617335,0.585261,0.77115,0.369942,0.673286,0.03057,0.385298,0.867961,0.35175,0.543235,0.139831,0.576806,0.140698,0.178837,0.171634,0.949278,0.910505,0.0378715,0.392309,0.178885,0.327655,0.679607,0.958737,0.0200254,0.58044,0.53966,0.74095,0.223964,0.556135,0.457141,0.574039,0.715216,0.476858,0.803286,0.19645,0.248294,0.364244,0.311156,0.610309,0.416371,0.0838195,0.982404,0.654783,0.0429608,0.810315,0.473159,0.465768,0.617098,0.778893,0.248225,0.208136,0.0772462,0.543426,0.333212,0.977097,0.8077,0.694816,0.3572,0.470289,0.891086,0.0549817,0.263885,0.812092,0.696549,0.496996,0.382091,0.325166,0.890881,0.0545914,0.332551,0.270594,0.150278,0.232604,0.486206,0.230469,0.674721,0.0361202,0.849142,0.536173,0.917701,0.00313461,0.236215,0.0374138,0.838059,0.697949,0.359189,0.0434055,0.230777,0.0776235,0.517238,0.0440235,0.835193,0.705989,0.974514,0.559528,0.733253,0.965019,0.431564,0.455626,0.80957,0.153696,0.316919,|0.803234,0.0520386,0.551636,0.315817,0.960536,0.317769,0.491218,0.26856,0.0895112,0.261195,0.66065,0.595934,0.842029,0.497912,0.350247,0.965808,0.891459,0.178008,0.421168,0.207651,0.00997692,0.58594,0.566798,0.331208,0.758968,0.918754,0.840536,0.872866,0.89413,0.758206,0.739244,0.211754,0.500953,0.00749499,0.217693,0.681592,0.280634,0.925077,0.88085,0.74874,0.104653,0.788137,0.600611,0.738138,0.258358,0.654932,0.539571,0.12185,0.780847,0.626235,0.659559,0.86636,0.833061,0.615375,0.112032,0.695393,0.114362,0.617639,0.393398,0.112095,0.818234,0.79149,0.121273,0.445633,0.352149,0.603105,0.233812,0.756661,0.557125,0.220714,0.662697,0.249539,0.334547,0.21585,0.00520313,0.849539,0.488424,0.767924,0.805971,0.00898445,0.463482,0.971363,0.677779,0.25324,0.547729,0.402209,0.0584049,0.667078,0.792441,0.796724,0.94074,0.993352,0.399324,0.630937,0.112744,0.540414,0.0876438,0.98431,0.612819,0.437418,0.314816,0.773515,0.999258,0.549078,0.784628,0.161546,0.349561,0.0775791,0.934049,0.475649,0.640251,0.627198,0.995956,0.683766,0.782772,0.752831,0.970107,0.507756,0.0433091,0.424149,0.903481,0.401296,0.408766,0.72252,0.736162,0.483806,0.580125,0.971812,0.838918,0.0790003,0.491397,0.883407,0.453379,0.442602,0.833758,0.728931,0.271336,0.119787,0.488916,0.0105883,0.827749,0.291023,0.711928,0.218785,0.311134,0.674938,0.0369238,0.843939,0.124835,0.911597,0.370537,0.288469,0.77037,0.0983102,0.198469,0.853218,0.722197,0.13843,0.203256,0.105681,0.431773,0.0699774,0.956453,0.779824,0.581435,0.75285,0.311302,0.918168,0.894571,0.269198,0.149177,0.347791,0.378679,0.733569,0.146424,0.778086,0.152334,0.629122,0.913848,0.341881,0.587129,0.884451,0.170681,0.91187,0.594123,0.797427,0.102798,0.289184,0.963182,0.485942,0.15528,0.164214,0.236989,0.27923,0.526757,0.774039,0.676702,0.543738,0.450538,0.432855,0.742695,0.276059,0.696778,0.421626,0.00316155,0.176475,0.618113,0.899121,0.029605,0.701122,0.323703,0.928617,0.00870311,0.657648,0.336521,0.324688,0.385998,0.112158,0.445229,0.980831,0.42874,0.356349,0.722248,0.998106,0.285286,0.701659,0.308363,0.613389,0.837644,0.475329,0.851089,0.530457,0.815931,0.143069,0.0184117,0.446999,0.885593,0.415328,0.747754,0.916004,0.616258,0.636839,0.644827,0.519132,0.905973,0.200754,0.19816,0.114301,0.662955,0.895504,0.47563,0.0979388,0.395289,0.659112,0.707697,0.229751,0.0887172,0.486909,0.642641,0.465323,0.447906,0.711519,0.400925,0.801123,0.0816214,0.684449,0.16682,0.0106726,0.0638901,0.687834,0.262423,0.156785,0.616529,0.271708,0.514933,0.404769,0.380549,0.816862,0.0596344,0.348894,0.976072,0.142945,0.203739,0.985908,0.863892,0.907641,0.930137,0.708086,0.98035,0.465447,0.829684,0.319519,0.665065,0.731066,0.774317,0.606949,0.780607,0.670024,0.62419,0.202656,0.319045,0.0164585,0.923382,0.513562,0.0135638,0.116356,0.857395,0.18395,0.170915,0.189059,0.634864,0.825771,0.334491,0.135695,0.898324,0.320727,0.470507,0.841699,0.508449,0.613633,0.50176,0.590256,0.935453,0.460472,0.119704,0.866913,0.281202,0.947204,0.550282,0.692908,0.810288,0.197992,0.770539,0.794852,0.199601,0.790046,0.601265,0.296955,0.951822,0.118451,0.640235,0.850079,0.177926,0.950452,0.199188,0.0556863,0.273443,0.019465,0.476935,0.529906,0.9102,0.550892,0.442686,0.606396,0.851344,0.488062,0.358459,0.677319,0.889147,0.476149,0.143943,0.817018,0.335741,0.622173,0.787088,0.903643,0.584438,0.561493,0.943984,0.713064,0.889661,0.622448,0.969146,0.414171,0.549502,0.0444787,0.63213,0.863457,0.358655,0.516822,0.721842,0.299184,0.795651,0.515206,0.148778,0.914569,0.697068,0.55026,0.854034,0.378695,0.502643,0.779864,0.295962,0.794677,0.271479,0.980652,0.208019,0.942643,0.652035,0.589021,0.65845,0.402617,0.531483,0.400902,0.572174,0.237381,0.287188,0.789391,0.78606,0.950111,0.883513,0.253486,0.760364,0.93683,0.969848,0.151986,0.294342,0.636045,0.556281,0.587018,0.479177,0.0546228,0.247276,0.0154776,0.0920127,0.396354,0.387707,0.747359,0.778993,0.545447,0.643719,0.850926,0.292244,0.815273,0.741846,0.0938377,0.495893,0.515416,0.436856,0.266932,0.241845,0.324639,0.939581,0.877424,0.956472,0.277955,0.501748,0.122787,0.922999,0.117941,0.695732,0.661722,0.988641,0.0774171,0.793433,0.649965,0.781287,0.958316,0.582995,0.952881,0.420011,0.850633,0.436536,0.753635,0.707029,0.0409952,0.134594,0.262261,0.829083,0.696292,0.350838,0.0985617,0.115875,0.745484,0.24922,0.345962,0.454846,0.278201,0.715414,0.855981,0.513834,0.411913,0.931727,0.315282,0.48894,0.311342,0.648351,0.89289,0.952076,0.431963,0.191213,0.639009,0.695936,0.429901,0.0489363,0.125939,0.153107,0.687147,0.110582,0.262538,0.761867,0.0586772,0.183418,0.158542,0.647427,0.725134,0.95368,0.348275,0.0727478,0.0407866,0.452628,0.451563,0.837462,0.587891,0.643743,0.976273,0.891236,0.592586,0.598985,0.519045,0.991601,0.717783,0.496838,0.983606,0.931804,0.555508,0.255823,0.874801,0.416937,0.0897808,0.748478,0.00121474,0.165328,0.454094,0.87394,0.741176,0.922792,0.348263,0.468352,0.361435,0.274657,0.345431,0.502876,0.367737,0.584433,0.665005,0.76412,0.853475,0.195952,0.0569797,0.0840449,0.582785,0.877543,0.44346,0.0714158,0.549134,0.890463,0.917543,0.608297,0.667755,0.234346,0.146501,0.100284,0.765793,0.76821,0.343633,0.0357683,0.424541,0.809714,0.889236,0.253102,0.118357,0.826682,0.785405,0.945755,0.130678,0.0436734,0.442724,0.933586,0.88048,0.834009,0.610678,0.327991,0.242524,0.881299,0.300618,0.254308,0.541586,0.206277,0.889609,0.355106,0.91925,0.858656,0.0185683,0.405928,0.444637,0.856906,0.82567,0.704849,0.776112,0.929765,0.530881,0.677952,0.425268,0.278802,0.317416,0.110673,0.765437,0.752079,0.391569,0.963991,0.257232,0.0143725,0.591393,0.98045,0.196422,0.458363,0.581286,0.936516,0.182978,0.435543,0.598365,0.882,0.173303,0.825464,0.533094,0.864156,0.224835,0.661918,0.0950563,0.883668,0.0116563,0.990972,0.844384,0.877577,0.578661,0.185314,0.1841,0.728766,0.745074,0.793322,0.208404,0.74966,0.453522,0.733932,0.13017,0.623603,0.448734,0.660599,0.0498674,0.445608,0.894226,0.620615,0.100922,0.889179,0.192393,0.122692,0.362568,0.543906,0.737424,0.959889,0.751229,0.236748,0.498018,0.679873,0.886263,0.505905,0.799033,0.823619,0.726315,0.708467,0.00983596,0.968871,0.183289,0.125288,0.525433,0.436801,0.290198,0.75833,0.875809,0.886551,0.379485,0.515664,0.111269,0.86187,0.132445,0.274508,0.454608,0.578014,0.261965,0.753735,0.924342,0.571128,0.137374,0.643495,0.526985,0.962883,0.0173519,0.121888,0.331049,0.458385,0.242043,0.082295,0.86714,0.208256,0.0339285,0.107115,0.952277,0.975429,0.932381,0.285622,0.832755,0.94179,0.161144,0.382193,0.871365,0.926551,0.6252,0.408241,0.423652,0.479998,0.191646,0.123768,0.959493,0.710238,0.731479,0.781682,0.382018,0.301487,0.84539,0.703561,0.924849,0.380125,0.715007,0.167219,0.839215,0.755101,0.387823,0.306687,0.948043,0.878468,0.103299,0.930533,0.627752,0.705413,0.598372,0.604889,0.749203,0.0890016,0.277639,0.0173397,0.249301,0.0849194,0.414155,0.424026,0.968886,0.0989779,0.0501851,0.415495,0.873598,0.0114631,0.744315,0.330164,0.092786,0.927709,0.311031,0.257315,0.292644,0.531684,0.222937,0.164782,0.364018,0.82394,0.327748,0.55952,0.478533,0.859332,0.465047,0.00921136,0.39367,0.739847,0.426958,0.0299218,0.919303,0.558333,0.486007,0.111148,0.988564,0.677087,0.0596981,0.479283,0.662217,0.690301,0.993707,0.0540525,0.385343,0.138272,0.213943,0.934917,0.58509,0.980663,0.0854983,0.429652,0.701777,0.260464,0.372102,0.084674,0.0848485,0.537777,0.641661,0.790287,0.686237,0.809329,0.0969671,0.438587,0.497391,0.385391,0.364233,0.902824,0.905239,0.0577399,0.694573,0.65598,0.154383,0.255231,0.583904,0.509961,0.0706034,0.2779,0.962049,0.889755,0.353755,0.0874179,0.877312,0.91745,0.712954,0.432815,0.165572,0.566968,0.767757,0.289088,0.238607,0.164019,0.356439,0.150508,0.840505,0.615937,0.165969,0.761858,0.264043,0.173205,0.677811,0.104336,0.820193,0.643472,0.98783,0.588785,0.40515,0.192526,0.057745,0.716368,0.0767365,0.216236,0.196595,0.165407,0.590596,0.0827057,0.917232,0.764881,0.747756,0.831633,0.870714,0.307715,0.646892,0.0145117,0.821875,0.352707,0.229343,0.723749,0.456668,0.556124,0.302026,0.544053,0.346471,0.337873,0.472092,0.354947,0.835794,0.80986,0.647017,0.976689,0.949714,0.0281593,0.628522,0.751763,0.228036,0.832628,0.0956358,0.889362,0.59507,0.37593,0.488695,0.217444,0.196164,0.162618,0.413068,0.386356,0.9383,0.888212,0.092768,0.775021,0.952798,0.479179,0.741711,0.470709,0.783494,0.839749,0.00975531,0.832602,0.156561,0.870285,0.480962,0.0505092,0.997457,0.371069,0.569889,0.78556,0.620575,0.248083,0.876116,0.958567,0.460681,0.322537,0.543696,0.362719,0.021558,0.564291,0.62473,0.927606,0.886432,0.700525,0.299683,0.879188,0.0215908,0.625099,0.0508993,0.0780816,0.940086,0.860044,0.96705,0.539759,0.17699,0.713926,0.0111256,0.781893,0.476228,0.76476,0.313089,0.829392,0.376371,0.365346,0.744694,0.888117,0.0766147,0.305302,0.724198,0.053025,0.439387,0.477147,0.804953,0.19815,0.0744824,0.327281,0.380059,0.397729,0.947416,0.766195,0.76831,0.952156,0.923983,0.563458,0.462097,0.153384,0.673739,0.363745,0.646635,0.423012,0.277664,0.949975,0.99056,0.287352,0.729796,0.81595,0.685289,0.283959,0.921573,0.863886,0.616688,0.0921635,0.490855,|0.710832,0.776247,0.433286,0.113858,0.186421,0.59903,0.18764,0.350545,0.23317,0.46902,0.757476,0.11048,0.159015,0.300379,0.51099,0.918526,0.707685,0.673895,0.952876,0.765122,0.961797,0.923212,0.928127,0.257238,0.605055,0.325725,0.00597787,0.626333,0.578367,0.87619,0.702965,0.763545,0.272037,0.496586,0.252793,0.131529,0.232785,0.00452805,0.197886,0.104637,0.0654774,0.351443,0.109608,0.620773,0.523221,0.785033,0.508785,0.799731,0.276076,0.61737,0.759618,0.559928,0.389564,0.266281,0.290135,0.0450383,0.879092,0.684517,0.118116,0.347357,0.44055,0.322622,0.8794,0.78804,0.436508,0.0455464,0.676916,0.36245,0.838592,0.946974,0.548386,0.78646,0.364657,0.672145,0.622465,0.856034,0.458704,0.449973,0.676909,0.611258,0.762774,0.551363,0.0799054,0.812655,0.748499,0.11946,0.902633,0.0321945,0.857179,0.254753,0.350583,0.882453,0.20657,0.415839,0.63427,0.955068,0.640343,0.543259,0.50831,0.927485,0.325126,0.996265,0.752527,0.699618,0.654513,0.703198,0.587309,0.179145,0.850892,0.895465,0.212986,0.307699,0.980003,0.261638,0.81495,0.436838,0.866831,0.300694,0.0869946,0.703707,0.900535,0.339153,0.741506,0.82143,0.564886,0.774757,0.947577,0.929426,0.960555,0.442812,0.869667,0.79678,0.743084,0.827788,0.62569,0.511476,0.443201,0.0850727,0.3135,0.404833,0.848148,0.0778315,0.330373,0.780805,0.45234,0.722133,0.474168,0.793372,0.0261459,0.393771,0.874212,0.578276,0.831978,0.0323996,0.108823,0.453885,0.606129,0.575591,0.965583,0.581395,0.656067,0.18651,0.584896,0.534504,0.599976,0.31768,0.543554,0.116597,0.293906,0.501169,0.793694,0.703703,0.326392,0.532297,0.800496,0.494548,0.550142,0.815975,0.687831,0.216332,0.183064,0.439784,0.958765,0.535714,0.541059,0.739584,0.82638,0.449124,0.934997,0.881098,0.741916,0.414545,0.6136,0.254669,0.0213377,0.367093,0.716945,0.0389956,0.501773,0.30659,0.6539,0.598554,0.82158,0.166913,0.787328,0.471317,0.835987,0.827986,0.240543,0.218055,0.934976,0.950543,0.776967,0.994438,0.0482615,0.348676,0.424656,0.214967,0.190881,0.750104,0.267326,0.840774,0.786801,0.630116,0.563643,0.52881,0.78666,0.718785,0.64405,0.495978,0.0595892,0.245129,0.907261,0.274064,0.706071,0.290156,0.322288,0.379942,0.770571,0.320138,0.116631,0.143247,0.951711,0.206937,0.489328,0.915785,0.104791,0.496954,0.188103,0.371468,0.495164,0.806338,0.202286,0.520047,0.586938,0.849947,0.192483,0.958075,0.532938,0.000142872,0.127928,0.471034,0.498964,0.612653,0.854149,0.475016,0.663599,0.154523,0.442812,0.607949,0.352606,0.787279,0.69447,0.611289,0.838395,0.474576,0.994146,0.251512,0.115957,0.478748,0.26837,0.341682,0.160801,0.0201299,0.0670297,0.686916,0.394578,0.793545,0.346993,0.799451,0.508976,0.41819,0.36446,0.45251,0.992893,0.766049,0.848007,0.119858,0.601381,0.373943,0.945809,0.641443,0.961711,0.8014,0.236147,0.900516,0.492159,0.775957,0.694913,0.328778,0.570362,0.930973,0.976667,0.573156,0.324408,0.238377,0.479592,0.925633,0.334571,0.0657679,0.833461,0.74465,0.467556,0.404606,0.585359,0.427454,0.225704,0.594249,0.459934,0.901873,0.17136,0.355726,0.62055,0.275328,0.464316,0.488302,0.137827,0.857937,0.262372,0.724053,0.214891,0.0864995,0.626448,0.605823,0.714109,0.563315,0.408587,0.0805882,0.580059,0.273845,0.991632,0.671385,0.447072,0.958895,0.0862219,0.634558,0.810965,0.250297,0.879133,0.873306,0.417416,0.311483,0.294865,0.00450313,0.346867,0.943638,0.890012,0.885883,0.445446,0.523874,0.960102,0.45895,0.191646,0.089869,0.541045,0.225661,0.0473298,0.957181,0.284667,0.389552,0.332359,0.953703,0.616894,0.867213,0.947269,0.560292,0.642943,0.459797,0.454469,0.22954,0.715904,0.523045,0.54567,0.526446,0.248095,0.735199,0.207154,0.335502,0.57608,0.507854,0.347956,0.0699255,0.549815,0.332288,0.275228,0.281746,0.51572,0.952249,0.592583,0.917667,0.0118876,0.810868,0.272074,0.970306,0.0575032,0.0981951,0.0756023,0.166808,0.0543649,0.70746,0.731291,0.186595,0.485537,0.156885,0.494434,0.2991,0.758518,0.739344,0.780535,0.707702,0.847072,0.956404,0.245684,0.867633,0.808775,0.988563,0.57718,0.305399,0.483201,0.621395,0.660942,0.767087,0.492242,0.761288,0.665495,0.0609308,0.416344,0.551629,0.339007,0.28349,0.3799,0.0213206,0.22106,0.245622,0.0955797,0.0110661,0.265146,0.332678,0.718645,0.791826,0.049604,0.846544,0.398931,0.394179,0.66137,0.893742,0.170964,0.815818,0.190767,0.713245,0.520347,0.016571,0.759589,0.221122,0.761525,0.0271167,0.727877,0.127156,0.516029,0.575842,0.0528699,0.945482,0.775186,0.178241,0.634294,0.85571,0.625648,0.40468,0.050887,0.143542,0.532749,0.333249,0.801007,0.352127,0.0654424,0.420946,0.728423,0.339229,0.677149,0.666644,0.220706,0.784993,0.86246,0.379138,0.955197,0.848099,0.367006,0.110777,0.606954,0.0239388,0.823202,0.00538981,0.987038,0.270561,0.478625,0.740906,0.297095,0.216709,0.238433,0.119912,0.989904,0.622829,0.365609,0.376744,0.416266,0.216995,0.663948,0.7116,0.0898393,0.765329,0.578221,0.329092,0.857588,0.924837,0.471317,0.316457,0.0857821,0.00300431,0.866892,0.262131,0.944895,0.0645272,0.594795,0.463956,0.381097,0.305934,0.33066,0.0411146,0.571918,0.46282,0.30839,0.173597,0.0166786,0.984415,0.92146,0.646689,0.30523,0.841378,0.974407,0.703959,0.25085,0.709316,0.442337,0.65593,0.0825379,0.388938,0.735285,0.0845873,0.156574,0.630051,0.211673,0.702982,0.9223,0.993451,0.736656,0.467426,0.5279,0.113782,0.203326,0.880806,0.235587,0.885761,0.869662,0.655027,0.869656,0.644815,0.715587,0.845695,0.826718,0.445084,0.894408,0.93654,0.480393,0.64167,0.884051,0.492038,0.122642,0.675074,0.93645,0.496501,0.889857,0.848905,0.725637,0.95445,0.617249,0.940698,0.0552685,0.31352,0.155956,0.714677,0.0698716,0.945766,0.938686,0.479756,0.286568,0.750435,0.907557,0.346203,0.0667245,0.556852,0.437252,0.320417,0.275993,0.0064621,0.961567,0.546227,0.818297,0.335868,0.471722,0.160424,0.0644348,0.878021,0.351873,0.0389153,0.684133,0.666383,0.183626,0.443989,0.0379946,0.432678,0.828114,0.558514,0.476786,0.506361,0.956283,0.374933,0.310981,0.328273,0.256439,0.477549,0.010697,0.493468,0.435865,0.867792,0.291776,0.979421,0.387394,0.00835419,0.950856,0.592007,0.392816,0.515193,0.0157126,0.519934,0.655455,0.32533,0.76687,0.4887,0.645937,0.195701,0.111959,0.174433,0.593565,0.700056,0.882153,0.371471,0.627983,0.182527,0.658405,0.893365,0.231154,0.106066,0.73188,0.984367,0.0515091,0.956779,0.0878508,0.431556,0.733208,0.827877,0.279532,0.186247,0.657336,0.353514,0.213584,0.270166,0.425058,0.14966,0.440848,0.443773,0.431244,0.211425,0.595997,0.897165,0.238488,0.350091,0.400348,0.0137511,0.114652,0.691752,0.207098,0.907549,0.807396,0.602512,0.101246,0.951843,0.118746,0.355844,0.482702,0.25905,0.289408,0.795557,0.393887,0.59991,0.415142,0.306544,0.785646,0.278375,0.805532,0.824394,0.0686427,0.63188,0.358544,0.315371,0.228379,0.110757,0.35848,0.568784,0.30553,0.846217,0.110352,0.578113,0.437318,0.50205,0.27389,0.37357,0.439439,0.403132,0.577832,0.141589,0.0723838,0.774709,0.604295,0.762711,0.874705,0.403146,0.722882,0.825028,0.106219,0.858678,0.205638,0.206835,0.51812,0.932264,0.675522,0.276127,0.881811,0.997765,0.19388,0.229778,0.467917,0.801469,0.90298,0.600695,0.620095,0.207959,0.822267,0.639147,0.0778553,0.947621,0.881812,0.42193,0.762251,0.043142,0.674269,0.718577,0.401686,0.269114,0.328946,0.261458,0.326772,0.757833,0.828213,0.51337,0.558348,0.404354,0.0599748,0.204983,0.18307,0.746211,0.401066,0.181196,0.95222,0.584244,0.978645,0.404421,0.844155,0.489451,0.876743,0.832288,0.35415,0.211343,0.268423,0.607011,0.915184,0.451863,0.856773,0.372159,0.314676,0.639985,0.280173,0.850786,0.312742,0.206246,0.5211,0.975263,0.663068,0.0454661,0.064154,0.395779,0.405144,0.202876,0.921091,0.517575,0.123903,0.40286,0.232369,0.970721,0.464624,0.0514902,0.861989,0.0472239,0.164308,0.165272,0.384335,0.840742,0.899833,0.597936,0.594805,0.132331,0.852036,0.908946,0.436746,0.173662,0.424566,0.904176,0.388932,0.161294,0.0278656,0.267611,0.133269,0.643254,0.593605,0.371142,0.645646,0.876271,0.653258,0.227185,0.660055,0.437675,0.714808,0.772863,0.335649,0.00555396,0.0165869,0.960036,0.927413,0.366053,0.831381,0.484423,0.434946,0.333106,0.759626,0.255302,0.647773,0.225916,0.0506779,0.236469,0.720382,0.159679,0.107496,0.575591,0.790979,0.764438,0.615102,0.967548,0.101535,0.504361,0.0590288,0.0104629,0.325642,0.298946,0.932696,0.18912,0.87243,0.430955,0.924898,0.870653,0.996151,0.492993,0.67835,0.0861203,0.270914,0.648845,0.247044,0.283926,0.232879,0.147845,0.671465,0.422005,0.233314,0.95194,0.703102,0.70235,0.674299,0.790064,0.968803,0.892055,0.305192,0.623173,0.513032,0.521356,0.81483,0.979485,0.375193,0.502281,0.36035,0.787966,0.762087,0.258015,0.863212,0.36513,0.167396,0.478156,0.815673,0.897202,0.0232512,0.905303,0.00599813,0.766553,0.417647,0.633477,0.275057,0.268182,0.146875,0.757425,0.326385,0.334863,0.30512,0.154484,0.310983,0.751754,0.444574,0.167828,0.21438,0.649067,0.887704,0.950791,0.870621,0.853026,0.896474,0.314383,0.495543,0.276322,0.600123,0.798396,0.00730389,0.464874,0.630871,0.950363,0.157821,0.587654,0.420694,0.228112,0.165435,0.458512,0.224768,0.130462,0.942807,0.934024,0.263121,0.887601,0.614064,0.580148,0.893747,0.410345,0.924092,0.583798,0.274384,0.779833,|0.069754,0.612457,0.579968,0.844193,0.758766,0.727983,0.677467,0.836469,0.46774,0.6331,0.85148,0.602378,0.527214,0.886266,0.984644,0.441445,0.803341,0.676966,0.405394,0.706155,0.534798,0.76777,0.941564,0.529868,0.36811,0.299271,0.3628,0.365419,0.634405,0.558927,0.199689,0.506467,0.44957,0.83887,0.710338,0.891985,0.00610608,0.43731,0.86624,0.664729,0.917278,0.715766,0.725484,0.50161,0.0749104,0.739546,0.342179,0.44317,0.752278,0.424205,0.150969,0.0642922,0.199074,0.509078,0.205847,0.473984,0.747572,0.110353,0.166619,0.72649,0.556101,0.0996897,0.685483,0.477914,0.191131,0.329201,0.159118,0.0216829,0.998457,0.000452161,0.846088,0.182055,0.594029,0.0320222,0.224533,0.912885,0.569476,0.921731,0.199467,0.932808,0.73433,0.238693,0.41314,0.199026,0.323273,0.943775,0.326402,0.133652,0.848074,0.670888,0.0138903,0.69058,0.265655,0.653958,0.0193408,0.807795,0.2217,0.990438,0.919657,0.712155,0.837678,0.0641323,0.136174,0.244112,0.389686,0.329951,0.190251,0.532695,0.703744,0.700544,0.624991,0.206093,0.211325,0.80251,0.123789,0.595581,0.675616,0.0785139,0.467548,0.0418908,0.246698,0.0771294,0.788219,0.782278,0.821783,0.177096,0.0102662,0.924376,0.412883,0.993308,0.0355583,0.733611,0.872225,0.216789,0.170091,0.964582,0.553417,0.471597,0.404787,0.990632,0.0392568,0.554601,0.535241,0.18025,0.100644,0.211619,0.845454,0.502338,0.791773,0.952247,0.679915,0.182828,0.706369,0.292268,0.421825,0.952128,0.976334,0.347617,0.253421,0.704109,0.292506,0.224758,0.493656,0.222628,0.350543,0.774195,0.877756,0.292892,0.926511,0.283071,0.0531668,0.83371,0.393439,0.232673,0.672477,0.741056,0.745,0.45399,0.589837,0.356185,0.0325277,0.642375,0.126468,0.937416,0.0665004,0.0190504,0.197059,0.198517,0.225311,0.471273,0.848352,0.492956,0.136591,0.0199817,0.342261,0.38219,0.14087,0.489816,0.0344215,0.584724,0.214986,0.297879,0.30228,0.0528827,0.597295,0.411151,0.570383,0.128171,0.10167,0.947041,0.519365,0.163483,0.86595,0.917858,0.211841,0.14519,0.293471,0.688421,0.122953,0.521847,0.555817,0.558976,0.012599,0.507958,0.26934,0.999501,0.223578,0.517258,0.023426,0.60001,0.727115,0.750032,0.556991,0.485834,0.94236,0.476086,0.360243,0.927149,0.937106,0.593542,0.278242,0.212953,0.51519,0.888929,0.410441,0.053908,0.287227,0.497451,0.353671,0.560947,0.11739,0.152107,0.377726,0.656992,0.824741,0.667525,0.173049,0.469514,0.30931,0.635123,0.771875,0.7487,0.765755,0.467953,0.935316,0.522161,0.265742,0.17625,0.375569,0.032956,0.0982633,0.711762,0.0345745,0.865449,0.996728,0.920771,0.404311,0.882104,0.00991851,0.794847,0.871023,0.371178,0.881806,0.358307,0.32893,0.664939,0.323613,0.291074,0.833072,0.746737,0.0972645,0.113695,0.373464,0.263098,0.445115,0.529996,0.474177,0.0885662,0.209682,0.864792,0.481224,0.0514839,0.896632,0.87278,0.80916,0.897896,0.214117,0.845876,0.242296,0.519649,0.387292,0.0938837,0.55378,0.480625,0.154042,0.23901,0.821049,0.714888,0.112571,0.121025,0.895544,0.0896688,0.503407,0.704085,0.347704,0.631951,0.475547,0.67626,0.066404,0.992871,0.817774,0.14166,0.0208341,0.272498,0.027833,0.868929,0.537945,0.542627,0.373808,0.091653,0.914791,0.646403,0.0402095,0.425947,0.451752,0.542364,0.696172,0.539783,0.144594,0.944483,0.0529189,0.501701,0.664166,0.370886,0.19055,0.949617,0.322975,0.788413,0.511243,0.327006,0.479454,0.655941,0.194989,0.213507,0.843121,0.302271,0.737785,0.410066,0.283332,0.617525,0.182221,0.877691,0.174689,0.828733,0.961088,0.326815,0.859983,0.0409966,0.686424,0.580234,0.723585,0.112945,0.416768,0.569874,0.754162,0.703963,0.013285,0.129469,0.00904751,0.39518,0.0837169,0.766954,0.0334801,0.43808,0.965388,0.356442,0.840407,0.689523,0.981428,0.571075,0.778741,0.712007,0.335742,0.933362,0.867683,0.000915408,0.618182,0.988575,0.590689,0.664336,0.156532,0.786823,0.172582,0.753948,0.330435,0.787924,0.083802,0.226111,0.572212,0.086772,0.981009,0.0787723,0.732391,0.748501,0.541975,0.5661,0.283212,0.609717,0.984162,0.0160824,0.742256,0.164438,0.105412,0.848776,0.817254,0.150921,0.326005,0.60729,0.0111541,0.182108,0.358047,0.483426,0.796125,0.745197,0.0904411,0.844032,0.477847,0.476617,0.0143048,0.545276,0.656544,0.296783,0.887447,0.514293,0.887505,0.17544,0.221712,0.0808166,0.500184,0.899884,0.879891,0.207858,0.573994,0.18931,0.403245,0.728818,0.0442347,0.60179,0.199645,0.168499,0.10407,0.000269949,0.254261,0.0988879,0.65415,0.916313,0.414041,0.850264,0.737479,0.0640699,0.24928,0.304229,0.761772,0.988476,0.600216,0.993119,0.485546,0.0727078,0.048578,0.327068,0.0821213,0.875313,0.025068,0.569098,0.135526,0.842928,0.234823,0.622617,0.91916,0.405927,0.638779,0.33525,0.802112,0.360344,0.819366,0.794753,0.745443,0.434133,0.865321,0.345448,0.904033,0.220699,0.39888,0.554676,0.700826,0.918364,0.140726,0.362205,0.0121506,0.224324,0.935535,0.966151,0.693027,0.61912,0.522252,0.0163499,0.11998,0.449223,0.496335,0.676725,0.331084,0.641974,0.844065,0.399543,0.703072,0.792663,0.0327809,0.00124282,0.624665,0.696849,0.90646,0.693156,0.704212,0.224347,0.873659,0.817349,0.865473,0.344588,0.244421,0.127938,0.573274,0.544298,0.778469,0.823898,0.501578,0.682638,0.163217,0.660736,0.7378,0.617453,0.154321,0.260418,0.749117,0.369666,0.255822,0.903164,0.206929,0.961493,0.446861,0.873776,0.557068,0.093302,0.590028,0.577017,0.999295,0.1218,0.637089,0.910465,0.793551,0.415871,0.490585,0.826204,0.722793,0.197706,0.693476,0.397108,0.258159,0.0919695,0.253869,0.283123,0.899771,0.630192,0.83138,0.316303,0.743487,0.992808,0.928035,0.349934,0.773403,0.466913,0.923446,0.870996,0.949906,0.109453,0.763959,0.502833,0.918771,0.690207,0.00378954,0.483948,0.29345,0.386969,0.399719,0.546372,0.678573,0.0255921,0.342295,0.383413,0.109866,0.81143,0.5571,0.0176589,0.0031758,0.228095,0.884951,0.99131,0.387561,0.61875,0.0462153,0.426682,0.955843,0.189742,0.610682,0.28379,0.90388,0.944228,0.907405,0.443189,0.0990412,0.783753,0.185858,0.187857,0.560813,0.307509,0.476359,0.479803,0.732019,0.547629,0.577252,0.143069,0.922755,0.117427,6.72936e-05,0.483516,0.652295,0.1766,0.647323,0.965396,0.131432,0.311553,0.417119,0.332204,0.00722617,0.576852,0.46682,0.401038,0.718231,0.944642,0.527396,0.119229,0.659559,0.0944458,0.820096,0.987824,0.256428,0.00473851,0.394313,0.231445,0.335016,0.902893,0.920164,0.618056,0.580993,0.880013,0.0666431,0.761267,0.103087,0.868526,0.834771,0.541588,0.458681,0.848516,0.480439,0.337458,0.519876,0.319415,0.643545,0.712162,0.644078,0.134996,0.232442,0.678289,0.350205,0.465498,0.149586,0.222489,0.364795,0.947368,0.427108,0.828519,0.894872,0.584935,0.981853,0.765499,0.55431,0.0870045,0.525123,0.524035,0.745927,0.381245,0.427483,0.92119,0.866119,0.654739,0.634204,0.0435228,0.290318,0.895274,0.15842,0.632656,0.0163784,0.795531,0.987197,0.661382,0.79817,0.285157,0.578953,0.452641,0.58133,0.652191,0.548304,0.722247,0.814219,0.138071,0.98505,0.112924,0.952065,0.44221,0.640151,0.464436,0.249831,0.200494,0.440773,0.319285,0.524734,0.276313,0.761297,0.621675,0.0898697,0.104129,0.0678353,0.0626894,0.761002,0.661554,0.909414,0.586401,0.740628,0.936121,0.763315,0.0588306,0.769315,0.900627,0.823674,0.640864,0.016658,0.17123,0.345556,0.859977,0.150829,0.842001,0.363436,0.105952,0.558806,0.881683,0.825484,0.879071,0.407771,0.612666,0.628908,0.619248,0.0373365,0.654732,0.52254,0.0114059,0.879718,0.503398,0.503172,0.281714,0.79608,0.511126,0.94348,0.388611,0.782943,0.875645,0.408636,0.0286354,0.682916,0.809218,0.80052,0.234789,0.299379,0.331987,0.823406,0.147791,0.410289,0.234133,0.295986,0.243832,0.336428,0.334078,0.00231516,0.43002,0.0165851,0.652009,0.748623,0.674303,0.00278902,0.935406,0.0395176,0.61223,0.441821,0.232149,0.101972,0.756091,0.577561,0.369033,0.551516,0.0280749,0.851792,0.817547,0.55305,0.949554,0.486737,0.582896,0.168513,0.100759,0.366045,0.348466,0.541965,0.453496,0.851603,0.197613,0.403237,0.486602,0.0821463,0.704863,0.445595,0.27339,0.656693,0.983283,0.405342,0.102736,0.31344,0.37084,0.90901,0.287131,0.362186,0.153721,0.0801635,0.106651,0.594408,0.338365,0.469997,0.927812,0.123277,0.164337,0.796478,0.157981,0.52005,0.159198,0.537459,0.338619,0.198629,0.721768,0.448073,0.0935566,0.415728,0.43853,0.70717,0.294551,0.606389,0.778092,0.482847,0.96089,0.510662,0.285878,0.689819,0.713757,0.175931,0.0416476,0.40793,0.430569,0.273394,0.085946,0.913841,0.00842053,0.554183,0.0812961,0.912198,0.440409,0.143821,0.663079,0.680056,0.998557,0.376615,0.719338,0.953457,0.668558,0.370693,0.333371,0.572771,0.22971,0.926453,0.139212,0.944669,0.553038,0.84719,0.750526,0.879968,0.415236,0.0392767,0.115129,0.100569,0.986554,0.874712,0.704931,0.301587,0.795007,0.17564,0.688481,0.678737,0.964327,0.307651,0.215099,0.181325,0.603459,0.287612,0.840983,0.970262,0.958378,0.17775,0.270334,0.846943,0.311131,0.0938266,0.367053,0.983455,0.548823,0.14766,0.47864,0.643849,0.669349,0.021663,0.0664389,0.309094,0.554952,0.807718,0.415257,0.594209,0.5479,0.552823,0.515463,0.641728,0.589038,0.260597,0.0880005,0.459241,0.863391,0.934518,0.484852,0.881884,0.255382,0.27548,0.585169,0.530663,0.0432014,0.037291,0.115176,0.652394,0.878031,0.948717,0.00439566,0.688857,0.510046,0.786735,0.283379,0.653949,0.40737,0.276338,0.915788,|0.790231,0.630003,0.403152,0.796672,0.688403,0.663314,0.53779,0.209521,0.0605586,0.0118874,0.102228,0.517381,0.122925,0.134968,0.265174,0.665278,0.802448,0.948283,0.704483,0.964056,0.522511,0.301855,0.219478,0.695881,0.996795,0.683855,0.254835,0.873286,0.368769,0.984997,0.529258,0.787463,0.622946,0.0394922,0.558312,0.0470834,0.657237,0.744834,0.945705,0.117145,0.310385,0.919571,0.851874,0.370916,0.0832675,0.986708,0.84597,0.667248,0.948873,0.705464,0.241953,0.798974,0.547667,0.687255,0.125368,0.837736,0.633321,0.428365,0.797023,0.975015,0.0053488,0.0451196,0.552922,0.123575,0.952912,0.679274,0.67671,0.713853,0.364317,0.472878,0.0657148,0.815698,0.822544,0.356226,0.835384,0.750057,0.980811,0.0786896,0.987872,0.4038,0.289741,0.367546,0.0927532,0.0778238,0.637522,0.806114,0.117792,0.219736,0.0396443,0.315215,0.137751,0.0929832,0.235508,0.651471,0.962289,0.728491,0.847074,0.831807,0.958542,0.524519,0.328794,0.210906,0.570501,0.826836,0.630223,0.20176,0.237418,0.847887,0.558953,0.0272818,0.433797,0.0315236,0.128276,0.20427,0.976106,0.832132,0.843635,0.998701,0.326843,0.24813,0.254023,0.398037,0.419311,0.221177,0.474523,0.176622,0.0360225,0.639468,0.112384,0.848566,0.199683,0.00628805,0.488828,0.619975,0.0614344,0.171808,0.260046,0.476202,0.0764099,0.568629,0.151551,0.291893,0.608193,0.999963,0.309104,0.218932,0.100782,0.921805,0.588236,0.925117,0.985444,0.933167,0.228547,0.583444,0.269024,0.850553,0.307205,0.0870201,0.869485,0.97345,0.850535,0.507622,0.813018,0.637792,0.284247,0.0394428,0.399134,0.789409,0.518016,0.846487,0.314834,0.97933,0.00846106,0.395689,0.664885,0.367805,0.488386,0.818658,0.108612,0.923597,0.232069,0.620776,0.594668,0.823113,0.819094,0.0450858,0.443452,0.237007,0.0992199,0.302171,0.922902,0.412011,0.884168,0.899571,0.426785,0.678664,0.295181,0.0077588,0.22558,0.259642,0.352894,0.0275202,0.046004,0.518279,0.627527,0.816033,0.165866,0.516575,0.31629,0.389736,0.00651777,0.737922,0.221347,0.450692,0.435856,0.133579,0.740187,0.378438,0.630991,0.0294273,0.368064,0.448477,0.244923,0.95582,0.068448,0.727764,0.197058,0.675321,0.345653,0.533635,0.681505,0.90376,0.703068,0.153237,0.212331,0.731095,0.240392,0.40638,0.600655,0.111237,0.418404,0.833306,0.51722,0.224017,0.838642,0.660525,0.923838,0.277101,0.406264,0.97508,0.0348367,0.30053,0.092682,0.805034,0.800241,0.6117,0.734059,0.0155535,0.931309,0.902841,0.113027,0.358452,0.99974,0.640889,0.438999,0.112071,0.580209,0.320702,0.0441644,0.784696,0.19315,0.529126,0.995385,0.0349436,0.690168,0.747241,0.172881,0.677627,0.406923,0.506941,0.354826,0.153374,0.110564,0.944847,0.650657,0.759403,0.376946,0.17507,0.333506,0.141336,0.60801,0.18953,0.465578,0.808192,0.797378,0.91033,0.744052,0.917565,0.428833,0.768096,0.477833,0.66984,0.509702,0.231197,0.288422,0.728474,0.620611,0.517667,0.846255,0.516474,0.223559,0.563127,0.705511,0.611466,0.698427,0.789369,0.705406,0.116787,0.193607,0.871963,0.146647,0.880022,0.825772,0.040853,0.685836,0.916622,0.69985,0.0990899,0.879263,0.0107331,0.739312,0.985763,0.784972,0.588832,0.25557,0.154014,0.446472,0.642088,0.199258,0.655106,0.539171,0.711671,0.0245917,0.611477,0.414974,0.311337,0.0751522,0.930994,0.212389,0.421428,0.302852,0.194949,0.01999,0.496026,0.209178,0.674649,0.178521,0.189778,0.339349,0.371464,0.540266,0.0772066,0.707166,0.219958,0.0415925,0.388653,0.306391,0.327395,0.322357,0.0408621,0.525059,0.378068,0.0835561,0.516764,0.377525,0.510789,0.225103,0.359526,0.762159,0.988842,0.354439,0.0910738,0.575292,0.10754,0.275238,0.341302,0.259226,0.731026,0.128024,0.836444,0.17273,0.868342,0.487584,0.678307,0.771146,0.562974,0.109311,0.604337,0.0918596,0.112061,0.902699,0.797327,0.888627,0.30264,0.16208,0.491066,0.26253,0.507796,0.872179,0.897511,0.199172,0.74656,0.355304,0.91167,0.283974,0.630688,0.384235,0.210536,0.00555915,0.127454,0.043979,0.184437,0.245885,0.285698,0.0938146,0.16714,0.655793,0.826564,0.55719,0.796826,0.225898,0.479039,0.723254,0.882055,0.311779,0.780046,0.305777,0.800098,0.125152,0.370467,0.586513,0.315278,0.63746,0.504214,0.982588,0.542901,0.892606,0.418845,0.92842,0.373049,0.975986,0.0734166,0.472096,0.631856,0.34548,0.0935377,0.249752,0.716203,0.471717,0.805439,0.314261,0.632401,0.461498,0.329058,0.364583,0.240451,0.315376,0.216008,0.738469,0.614073,0.0480463,0.655786,0.456921,0.0586729,0.761779,0.350504,0.141301,0.634257,0.314842,0.525854,0.0939844,0.820246,0.462822,0.259041,0.640868,0.439047,0.0148641,0.416957,0.921309,0.599785,0.522639,0.754212,0.155126,0.999155,0.471925,0.532643,0.765935,0.392871,0.575088,0.652984,0.606072,0.646024,0.855048,0.667229,0.76141,0.671171,0.758085,0.635543,0.640582,0.636261,0.299225,0.949895,0.625056,0.255608,0.871619,0.889223,0.610751,0.346462,0.802098,0.120521,0.126907,0.743443,0.589137,0.33257,0.862276,0.627849,0.552558,0.311276,0.326681,0.98654,0.963991,0.511199,0.838693,0.986813,0.64031,0.940419,0.672208,0.559899,0.953035,0.715302,0.997024,0.480278,0.395649,0.658184,0.684999,0.216683,0.549444,0.252948,0.857392,0.276094,0.675249,0.323908,0.966889,0.35275,0.0236108,0.725153,0.766607,0.415258,0.886014,0.734179,0.684869,0.420731,0.560496,0.366644,0.38475,0.565804,0.362904,0.299579,0.349478,0.61944,0.145867,0.117782,0.419163,0.126756,0.403029,0.109654,0.88813,0.193683,0.478933,0.281474,0.345638,0.78887,0.443835,0.280082,0.807258,0.229561,0.970307,0.739255,0.907959,0.488352,0.388283,0.472166,0.880648,0.465928,0.337779,0.990546,0.236729,0.30744,0.171266,0.128166,0.677302,0.0575106,0.58811,0.552122,0.257423,0.615065,0.906783,0.621346,0.923479,0.815588,0.979262,0.0919102,0.999313,0.770705,0.951434,0.429004,0.818031,0.955324,0.442435,0.799976,0.109331,0.675385,0.465039,0.537337,0.322203,0.523522,0.452806,0.222465,0.730413,0.941289,0.794433,0.852884,0.239883,0.441914,0.054427,0.512791,0.901516,0.34713,0.311795,0.594258,0.556534,0.15724,0.379535,0.392294,0.736499,0.302966,0.635391,0.269156,0.445564,0.833621,0.103703,0.371106,0.860473,0.290701,0.967039,0.0542936,0.277004,0.190987,0.605887,0.373105,0.990001,0.356633,0.323161,0.624845,0.77351,0.675013,0.336617,0.175113,0.73323,0.696557,0.265814,0.96533,0.75108,0.954285,0.163857,0.871124,0.268017,0.632049,0.295275,0.333576,0.729265,0.137677,0.000766993,0.253705,0.507819,0.246979,0.637758,0.572514,0.730408,0.592058,0.540444,0.59406,0.506737,0.258603,0.237567,0.960399,0.358458,0.205643,0.119852,0.533355,0.139443,0.87463,0.902736,0.383096,0.972787,0.379707,0.475172,0.794222,0.592704,0.217415,0.1689,0.400978,0.231617,0.414769,0.758366,0.370835,0.892712,0.623821,0.1555,0.368978,0.72556,0.849396,0.635817,0.63667,0.273025,0.0513254,0.0192816,0.484092,0.4077,0.450466,0.0213252,0.297385,0.731845,0.091876,0.615556,0.58417,0.553143,0.424053,0.153147,0.586454,0.972485,0.585627,0.548854,0.858481,0.634723,0.895481,0.840089,0.0854583,0.146836,0.330642,0.853819,0.404503,0.804847,0.422498,0.494587,0.488853,0.482597,0.892971,0.441698,0.129234,0.891556,0.378292,0.509599,0.826622,0.650642,0.981707,0.443104,0.159663,0.3497,0.251042,0.666825,0.404497,0.78572,0.326757,0.127103,0.609189,0.540044,0.727435,0.913193,0.610797,0.515812,0.0604308,0.863741,0.654438,0.0385836,0.400169,0.298819,0.78446,0.562252,0.936431,0.179071,0.214861,0.909862,0.893951,0.803883,0.43858,0.435922,0.290418,0.182576,0.968725,0.29567,0.0673031,0.748094,0.351729,0.116815,0.369195,0.239381,0.619879,0.956578,0.0229433,0.189914,0.395329,0.519233,0.128335,0.598854,0.848604,0.494532,0.642412,0.0378999,0.145187,0.0158975,0.605818,0.172223,0.706933,0.910679,0.638693,0.920857,0.762183,0.243217,0.0121796,0.738524,0.757574,0.228827,0.110799,0.947473,0.707632,0.542371,0.593864,0.617973,0.119211,0.079084,0.188751,0.832638,0.105222,0.810003,0.898649,0.535642,0.807518,0.624613,0.584255,0.362031,0.552615,0.768654,0.568431,0.181494,0.781436,0.418211,0.405286,0.183095,0.987629,0.507917,0.999692,0.203156,0.163335,0.212311,0.41048,0.96042,0.238822,0.529828,0.178849,0.204313,0.960928,0.574563,0.0632383,0.449219,0.0418394,0.0637283,0.776989,0.704604,0.0863316,0.344883,0.985704,0.333707,0.557896,0.193018,0.719541,0.762238,0.905792,0.794755,0.167303,0.224883,0.884469,0.359031,0.718479,0.493072,0.309688,0.415395,0.528146,0.472492,0.827802,0.790128,0.870363,0.427161,0.722724,0.0890876,0.611569,0.508658,0.5597,0.136927,0.929845,0.401595,0.441869,0.0325781,0.200241,0.385644,0.107755,0.754861,0.85939,0.618867,0.351591,0.651177,0.133801,0.00486332,0.819971,0.817313,0.802276,0.543752,0.0931433,0.650172,0.399157,0.101289,0.906289,0.45147,0.318457,0.275314,0.91398,0.260846,0.864154,0.735542,0.517565,0.0850938,0.467829,0.407173,0.515809,0.316751,0.188473,0.207066,0.0935538,0.749143,0.618831,0.959725,0.726917,0.586093,0.262331,0.169528,0.224962,0.969652,0.594715,0.160878,0.271721,0.866574,0.868849,0.43113,0.75901,0.718083,0.685121,0.299585,0.557929,0.951509,0.565619,0.0444705,0.796244,0.461615,0.348192,0.152756,0.044693,0.939798,0.0902088,0.886611,0.456165,0.0252023,0.695959,0.949701,0.242307,0.8035,0.325752,0.852295,0.991372,0.627728,0.981276,0.243643,0.748366,0.718894,0.665882,0.0425947,0.0126963,0.676128,0.849715,0.749004,0.814691,|0.210531,0.553374,0.64887,0.832981,0.402988,0.0675481,0.364747,0.0991624,0.774614,0.167775,0.512782,0.411874,0.609485,0.343917,0.111565,0.475152,0.271015,0.173079,0.361334,0.463766,0.222401,0.604703,0.851696,0.5414,0.449613,0.22972,0.29695,0.402579,0.440078,0.165946,0.128255,0.980825,0.256426,0.380173,0.0333599,0.349019,0.625508,0.447894,0.655851,0.529247,0.214858,0.369913,0.50521,0.573127,0.408965,0.931448,0.995079,0.67158,0.401462,0.924361,0.857529,0.184223,0.247799,0.832864,0.0363106,0.123038,0.461753,0.194721,0.626734,0.540748,0.600607,0.190429,0.912507,0.284793,0.437953,0.0306615,0.0362381,0.751109,0.018523,0.20661,0.775093,0.0529518,0.19322,0.587391,0.841517,0.904486,0.775712,0.976093,0.00317824,0.129238,0.0705523,0.269454,0.176591,0.0544378,0.424596,0.647854,0.00303733,0.646693,0.141815,0.486331,0.70325,0.795489,0.738092,0.825474,0.0659899,0.327762,0.0997685,0.205326,0.46046,0.593109,0.34568,0.613409,0.157352,0.906894,0.325463,0.661595,0.798573,0.575388,0.142729,0.864587,0.233386,0.916327,0.00144386,0.408643,0.83147,0.29695,0.28782,0.637374,0.644436,0.174222,0.807979,0.395407,0.174594,0.977909,0.0586633,0.878732,0.0972294,0.141492,0.721003,0.453503,0.125835,0.361116,0.105503,0.548301,0.822313,0.139993,0.372339,0.155244,0.316676,0.0783045,0.568394,0.492183,0.902116,0.944305,0.772127,0.0728432,0.626486,0.908397,0.831539,0.581044,0.96631,0.289332,0.803785,0.551555,0.916233,0.656277,0.523061,0.933818,0.045902,0.548341,0.118211,0.00401402,0.0586981,0.245998,0.126428,0.753761,0.227588,0.748214,0.758013,0.381972,0.481273,0.389188,0.531939,0.0377271,0.872059,0.589189,0.735527,0.592351,0.161568,0.402963,0.152163,0.207306,0.77867,0.569702,0.69968,0.34276,0.966472,0.95176,0.489447,0.411961,0.96834,0.821221,0.41736,0.55915,0.283327,0.569256,0.509896,0.197941,0.678929,0.901992,0.452803,0.732635,0.961949,0.197565,0.181125,0.690168,0.141505,0.75585,0.305624,0.176053,0.425422,0.98971,0.279152,0.364662,0.778915,0.0858359,0.552203,0.0183482,0.910781,0.0724287,0.390114,0.280193,0.896128,0.921714,0.160644,0.314993,0.0683599,0.754522,0.73883,0.697916,0.472541,0.51328,0.0858129,0.306387,0.110157,0.288177,0.492403,0.282202,0.31682,0.823758,0.680171,0.300596,0.369825,0.464531,0.788666,0.575644,0.728257,0.453601,0.287784,0.555375,0.606787,0.484171,0.918314,0.655111,0.236166,0.775796,0.800566,0.573556,0.248124,0.131072,0.640945,0.837872,0.0642259,0.261539,0.0427104,0.170195,0.20932,0.595515,0.0981137,0.485748,0.638126,0.993837,0.257045,0.518193,0.0723898,0.620968,0.483123,0.153505,0.881419,0.0440441,0.383198,0.596016,0.326918,0.796863,0.735732,0.712237,0.483972,0.44454,0.912564,0.134674,0.244051,0.0922188,0.021664,0.482657,0.742355,0.72463,0.96154,0.708066,0.376815,0.79509,0.218889,0.949112,0.894723,0.139099,0.0717173,0.515592,0.412603,0.750807,0.685259,0.0848608,0.203232,0.777651,0.960173,0.540569,0.578273,0.13494,0.171634,0.168973,0.14876,0.865493,0.0950755,0.95785,0.828419,0.722167,0.321526,0.0336055,0.225783,0.322746,0.807198,0.804948,0.893434,0.206816,0.351254,0.906331,0.465579,0.398292,0.459007,0.553183,0.0843851,0.545293,0.330634,0.893124,0.921859,0.382333,0.367107,0.81834,0.72257,0.928392,0.625895,0.764604,0.457658,0.339916,0.839352,0.34198,0.52443,0.00727314,0.208277,0.561248,0.598253,0.0583994,0.634939,0.643468,0.926808,0.480737,0.145172,0.20551,0.923856,0.148509,0.468864,0.407814,0.335856,0.483556,0.910637,0.997786,0.58777,0.428921,0.545006,0.639,0.927751,0.358229,0.697934,0.495097,0.512224,0.560193,0.996998,0.257585,0.607034,0.137375,0.0914149,0.617036,0.255828,0.0453272,0.457637,0.795345,0.605622,0.215907,0.799523,0.734204,0.164469,0.0652291,0.141161,0.0528383,0.24681,0.637598,0.695947,0.21272,0.798515,0.870282,0.191081,0.463099,0.322897,0.650751,0.739625,0.744887,0.674201,0.613591,0.148562,0.860429,0.292701,0.938163,0.362992,0.565398,0.039101,0.389975,0.0936454,0.459912,0.97112,0.321723,0.501041,0.563093,0.455391,0.885835,0.223454,0.920199,0.077008,0.995911,0.303277,0.00829589,0.614341,0.0179164,0.0418069,0.755157,0.474152,0.24925,0.906334,0.627546,0.881434,0.641806,0.436971,0.888846,0.665849,0.394767,0.0964674,0.625023,0.33853,0.514594,0.746766,0.142392,0.566399,0.150386,0.0278445,0.264851,0.756458,0.37003,0.102646,0.769181,0.0465218,0.485681,0.777875,0.827282,0.76592,0.222966,0.38756,0.467127,0.151237,0.799256,0.783933,0.142686,0.42535,0.0466855,0.338101,0.00842047,0.261909,0.488328,0.407548,0.889146,0.146602,0.162825,0.000831485,0.946267,0.621236,0.567232,0.421764,0.375015,0.603509,0.805324,0.523112,0.0617318,0.209875,0.714831,0.667949,0.997227,0.233461,0.655139,0.769485,0.62967,0.726254,0.549935,0.893626,0.641514,0.983049,0.350539,0.35124,0.330302,0.86126,0.557086,0.692465,0.578107,0.882689,0.42516,0.445421,0.551021,0.251459,0.856022,0.583281,0.523733,0.469428,0.147994,0.616974,0.732087,0.12626,0.88105,0.694906,0.374318,0.93948,0.602077,0.186898,0.467177,0.509286,0.029686,0.669306,0.407138,0.733572,0.22962,0.33927,0.518152,0.0771082,0.00918472,0.88628,0.636871,0.895368,0.980728,0.930563,0.56663,0.8888,0.394464,0.449311,0.261295,0.240366,0.328295,0.325304,0.770215,0.967643,0.342939,0.208046,0.0116494,0.29596,0.997599,0.913577,0.771469,0.945369,0.147638,0.735396,0.834671,0.211653,0.987915,0.728415,0.976083,0.094683,0.802117,0.228371,0.976353,0.811942,0.388587,0.353659,0.125603,0.00728756,0.950142,0.710872,0.0442067,0.0581477,0.77259,0.945844,0.0416033,0.535646,0.556377,0.270499,0.0608699,0.763679,0.839837,0.0617663,0.948748,0.832677,0.0264327,0.884655,0.563968,0.641318,0.107118,0.984567,0.0735125,0.467648,0.706965,0.328592,0.148036,0.680338,0.841565,0.758355,0.989704,0.291479,0.610472,0.901563,0.68444,0.813178,0.318011,0.448701,0.0790741,0.804942,0.151307,0.174191,0.487403,0.805507,0.823159,0.98179,0.852112,0.794751,0.823649,0.671761,0.936377,0.953843,0.21979,0.0866466,0.968054,0.183226,0.191986,0.831076,0.203503,0.0120891,0.537975,0.00127524,0.793895,0.546555,0.537172,0.70657,0.596435,0.799412,0.402125,0.553457,0.420363,0.374467,0.835229,0.797203,0.908762,0.580659,0.37957,0.808984,0.881963,0.664555,0.266538,0.872638,0.210686,0.318497,0.0719512,0.600864,0.137318,0.964673,0.732415,0.633712,0.540652,0.788855,0.680014,0.597889,0.953557,0.00345945,0.052178,0.72277,0.149069,0.989986,0.79996,0.548967,0.451853,0.73028,0.674947,0.806656,0.790632,0.583386,0.810637,0.953471,0.144558,0.0188715,0.162306,0.882493,0.338661,0.150329,0.719884,0.117833,0.00979978,0.613514,0.511488,0.909778,0.696665,0.625411,0.153503,0.128046,0.181093,0.511964,0.115196,0.00821537,0.817968,0.890365,0.854096,0.0909004,0.827821,0.731063,0.506151,0.478509,0.751624,0.0388065,0.82656,0.470651,0.417625,0.224693,0.214498,0.210893,0.993441,0.624188,0.807018,0.0294846,0.961372,0.340593,0.492381,0.20093,0.194214,0.141627,0.472499,0.652628,0.799189,0.193686,0.325357,0.184126,0.452034,0.997095,0.25069,0.536674,0.422267,0.862388,0.163256,0.0325038,0.800088,0.00491375,0.330744,0.286075,0.617238,0.0923492,0.632794,0.750255,0.0538533,0.968413,0.54668,0.670674,0.59787,0.899978,0.0151525,0.286254,0.352096,0.654826,0.471972,0.857695,0.673254,0.912489,0.0483652,0.870893,0.781411,0.289263,0.891138,0.484596,0.191231,0.500217,0.997541,0.986445,0.223583,0.867894,0.275828,0.759814,0.57333,0.51307,0.89807,0.345374,0.201218,0.988954,0.850844,0.210235,0.430902,0.645991,0.174705,0.841911,0.469514,0.0523043,0.755552,0.592772,0.435265,0.60098,0.156288,0.945163,0.0701271,0.787737,0.588811,0.148812,0.1798,0.170635,0.187432,0.384469,0.959495,0.233732,0.496953,0.150406,0.901339,0.616721,0.512459,0.0263942,0.153597,0.522031,0.0672303,0.872504,0.276717,0.719497,0.648203,0.734228,0.203912,0.744887,0.54683,0.0695132,0.901274,0.48086,0.204105,0.564778,0.483975,0.202059,0.667233,0.709296,0.819106,0.978647,0.324325,0.437111,0.682311,0.78568,0.531201,0.934529,0.821378,0.72163,0.342579,0.0924043,0.131699,0.188233,0.879389,0.623288,0.16963,0.735184,0.508798,0.663221,0.231571,0.931918,0.277136,0.0652749,0.636721,0.842978,0.253115,0.696045,0.847733,0.248984,0.00880134,0.632481,0.366466,0.276652,0.485822,0.838573,0.47564,0.737162,0.310143,0.506794,0.0189022,0.467917,0.981442,0.373393,0.265377,0.69979,0.589373,0.0237936,0.427115,0.814851,0.284425,0.534214,0.936393,0.760628,0.31424,0.267871,0.572552,0.646132,0.00469691,0.247454,0.323866,0.494084,0.167256,0.928806,0.386291,0.698307,0.377261,0.987569,0.163007,0.229012,0.848199,0.832577,0.560838,0.581659,0.117926,0.844179,0.0764273,0.404185,0.977509,0.388288,0.548347,0.0801697,0.940738,0.564646,0.794341,0.447529,0.0487065,0.668251,0.957175,0.136139,0.694775,0.966711,0.303482,0.722371,0.562407,0.998117,0.183531,0.114743,0.865389,0.324108,0.415699,0.436667,0.812405,0.0268015,0.247002,0.868804,0.211395,0.97176,0.242178,0.545979,0.0915396,0.21524,0.32668,0.332122,0.940116,0.643871,0.49688,0.911835,0.376439,0.329394,0.939963,0.770522,0.427123,0.68116,0.210854,0.294872,0.36237,0.876764,0.0200738,0.0170151,0.63991,0.530044,0.86013,0.589826,0.0736063,0.822348,0.488355,0.784423,0.798889,0.691361,0.857406,0.877928,0.266656,0.362485,0.588864,0.885869,0.0953997,0.565339,0.874606,0.168322,0.418671,|0.12756,0.190484,0.403217,0.252809,0.76955,0.437226,0.298248,0.363847,0.748677,0.310478,0.390298,0.833906,0.512228,0.852297,0.17403,0.573724,0.572112,0.774364,0.773622,0.706927,0.423343,0.178152,0.951501,0.00419569,0.899873,0.826782,0.0148241,0.789257,0.549721,0.724571,0.726599,0.628643,0.590072,0.820953,0.402521,0.858178,0.581909,0.742541,0.642258,0.647486,0.493952,0.834551,0.856762,0.62051,0.087744,0.535334,0.69096,0.460546,0.373411,0.753992,0.942687,0.200011,0.817068,0.771603,0.939757,0.350669,0.885495,0.779198,0.558876,0.680826,0.37936,0.91742,0.446313,0.176562,0.764304,0.717988,0.936052,0.225301,0.615372,0.70792,0.484201,0.115046,0.683651,0.509615,0.87281,0.98762,0.387931,0.889113,0.549491,0.678814,0.90142,0.634692,0.127394,0.869449,0.0892185,0.051162,0.768179,0.88135,0.399003,0.280133,0.491637,0.25044,0.337343,0.887295,0.109489,0.607332,0.564142,0.832465,0.0869917,0.0309647,0.709501,0.602251,0.361951,0.0511901,0.708144,0.730681,0.67227,0.136234,0.0243052,0.63746,0.921114,0.901563,0.24141,0.235614,0.54803,0.352144,0.549258,0.939812,0.713536,0.842051,0.514482,0.753434,0.197862,0.646956,0.536905,0.116614,0.159212,0.029842,0.98293,0.221057,0.554675,0.948589,0.837138,0.839576,0.116277,0.452725,0.670614,0.130821,0.0829107,0.203214,0.542831,0.273802,0.255664,0.489232,0.271113,0.827094,0.821417,0.262778,0.358665,0.806673,0.111231,0.170636,0.644935,0.204833,0.453202,0.21242,0.0723344,0.120875,0.610086,0.187913,0.108694,0.673649,0.29311,0.339223,0.72336,0.552266,0.810641,0.927622,0.919455,0.0761774,0.644588,0.53537,0.219524,0.232247,0.543693,0.0842701,0.294241,0.223993,0.992789,0.501495,0.262056,0.663771,0.843038,0.271645,0.418207,0.63465,0.418272,0.356199,0.65286,0.619253,0.505195,0.09552,0.57016,0.492768,0.369133,0.342053,0.639178,0.244419,0.155578,0.42862,0.205267,0.240758,0.659372,0.236904,0.695021,0.188704,0.387187,0.288701,0.867046,0.218717,0.671487,0.684239,0.396101,0.634102,0.0916036,0.86267,0.335921,0.134047,0.134558,0.953647,0.159163,0.315221,0.0213665,0.0366449,0.818091,0.110872,0.150525,0.197695,0.612028,0.185979,0.0862095,0.143071,0.905546,0.262616,0.125391,0.559912,0.576584,0.805204,0.382913,0.139412,0.591777,0.382468,0.959675,0.19241,0.699374,0.432338,0.969855,0.739199,0.0630287,0.297798,0.292686,0.66701,0.970078,0.331541,0.592625,0.19015,0.396714,0.541228,0.211163,0.219205,0.416966,0.372381,0.176696,0.994119,0.588687,0.00185752,0.758051,0.0107574,0.291988,0.837024,0.567364,0.795311,0.790394,0.36141,0.578365,0.292702,0.0766909,0.118859,0.438392,0.910644,0.995637,0.0645236,0.836684,0.121776,0.995189,0.564825,0.000571847,0.943638,0.472155,0.681809,0.392942,0.15315,0.649955,0.156293,0.0394279,0.403718,0.698555,0.923713,0.100431,0.647319,0.12091,0.364293,0.16347,0.9911,0.932803,0.762389,0.886159,0.392398,0.383351,0.252227,0.339783,0.667899,0.941744,0.869894,0.517678,0.698227,0.640447,0.842135,0.777982,0.0873551,0.791735,0.25014,0.515064,0.996917,0.97662,0.516868,0.408839,0.266676,0.806829,0.923352,0.876071,0.119959,0.313354,0.2806,0.598072,0.193638,0.716051,0.218096,0.840196,0.522608,0.471469,0.747109,0.636682,0.0234015,0.747141,0.62003,0.151814,0.0338039,0.28637,0.279939,0.752553,0.371146,0.325763,0.423605,0.524753,0.0558557,0.473256,0.0261341,0.111392,0.815172,0.766575,0.87693,0.539843,0.190538,0.282651,0.221921,0.768431,0.89704,0.400182,0.270759,0.381254,0.284357,0.742028,0.551101,0.530721,0.767991,0.317826,0.379402,0.206449,0.723046,0.954007,0.201808,0.478806,0.908651,0.096924,0.53927,0.505475,0.736416,0.452366,0.0578629,0.803228,0.0634168,0.980721,0.331636,0.762281,0.755404,0.555463,0.515739,0.038112,0.238208,0.243432,0.488576,0.174838,0.215501,0.333541,0.32936,0.337505,0.0769338,0.734943,0.0913868,0.0490669,0.899229,0.376935,0.831835,0.92836,0.19087,0.648345,0.628947,0.714447,0.15146,0.545117,0.303096,0.339829,0.170555,0.995736,0.0695296,0.878015,0.862433,0.68147,0.354965,0.577774,0.315366,0.882712,0.559516,0.708103,0.18974,0.523108,0.0356178,0.889171,0.014232,0.65834,0.0660028,0.935432,0.56561,0.594619,0.706964,0.0202166,0.700864,0.274001,0.58166,0.0599448,0.431161,0.127982,0.317524,0.709574,0.270894,0.947893,0.790278,0.803381,0.676863,0.706499,0.55159,0.639661,0.10546,0.78676,0.0883292,0.993669,0.988354,0.624405,0.873321,0.752436,0.648466,0.922626,0.101348,0.0039773,0.579302,0.276685,0.0816308,0.674541,0.758676,0.767144,0.813587,0.446273,0.719946,0.843396,0.206347,0.453927,0.412136,0.672409,0.77211,0.0862783,0.0725996,0.101208,0.695998,0.614628,0.260145,0.764802,0.87645,0.234175,0.539944,0.177404,0.303784,0.0165231,0.937724,0.58054,0.694886,0.956974,0.238953,0.661244,0.930959,0.220693,0.432147,0.852459,0.704757,0.544706,0.467156,0.249026,0.570724,0.840517,0.0639298,0.906708,0.590862,0.436493,0.589888,0.478637,0.36246,0.619934,0.647201,0.266931,0.313178,0.717484,0.584006,0.824928,0.8133,0.294357,0.36895,0.825565,0.684359,0.284425,0.533655,0.227405,0.68513,0.399859,0.0595464,0.885193,0.980169,0.412732,0.853963,0.789644,0.804941,0.672593,0.629525,0.718785,0.265464,0.57525,0.296046,0.469966,0.570451,0.620553,0.941997,0.354888,0.146598,0.20386,0.529437,0.575194,0.829249,0.160378,0.692331,0.190078,0.644985,0.505286,0.554615,0.826757,0.393047,0.169544,0.195785,0.0782974,0.00387061,0.72136,0.37676,0.331718,0.592199,0.569174,0.701751,0.911575,0.600201,0.838295,0.359807,0.285416,0.244173,0.464622,0.109143,0.785674,0.764784,0.582752,0.391638,0.379485,0.816368,0.608244,0.653131,0.0771896,0.12799,0.228914,0.417034,0.396891,0.440122,0.470034,0.555793,0.0341256,0.596088,0.0147337,0.131893,0.0764181,0.311541,0.80298,0.927486,0.775682,0.141596,0.084876,0.598247,0.969749,0.680479,0.759534,0.587733,0.115647,0.768875,0.119692,0.313459,0.00495207,0.547957,0.259528,0.246522,0.805677,0.460188,0.665723,0.47741,0.790112,0.0403032,0.532558,0.919717,0.743122,0.669414,0.127466,0.0490478,0.614897,0.797704,0.249299,0.83666,0.624206,0.104509,0.968966,0.417252,0.150038,0.445222,0.170398,0.363913,0.395712,0.0548625,0.613203,0.632422,0.887505,0.97494,0.977815,0.169403,0.758393,0.555669,0.0686968,0.7351,0.059823,0.180791,0.165348,0.440269,0.770589,0.710686,0.64007,0.810019,0.540017,0.929662,0.841614,0.235276,0.272339,0.781285,0.738692,0.157561,0.996793,0.587436,0.883671,0.667594,0.645304,0.587703,0.767715,0.907935,0.42687,0.975837,0.260572,0.834878,0.629046,0.842469,0.448691,0.331644,0.990004,0.0134812,0.701475,0.491342,0.946656,0.806943,0.73343,0.511033,0.702177,0.926983,0.308112,0.195007,0.238753,0.630471,0.868175,0.203791,0.0259725,0.287267,0.18071,0.230428,0.702759,0.803499,0.0938293,0.259601,0.311563,0.767641,0.397834,0.990736,0.268809,0.574535,0.809679,0.0281581,0.10114,0.0743036,0.451811,0.0105251,0.987643,0.327811,0.707579,0.502815,0.303804,0.634602,0.616014,0.150436,0.905584,0.817241,0.546109,0.182149,0.162377,0.933518,0.416329,0.862931,0.41499,0.955082,0.126792,0.233914,0.531148,0.724667,0.282184,0.944037,0.978247,0.238328,0.0358813,0.0195238,0.593179,0.00021106,0.314176,0.905631,0.680948,0.957466,0.0468702,0.154263,0.4803,0.650112,0.0787316,0.20047,0.965796,0.699085,0.0918514,0.272126,0.936318,0.223827,0.78451,0.174553,0.775211,0.00275683,0.677176,0.897423,0.731503,0.987191,0.81351,0.4275,0.945136,0.164675,0.351332,0.559842,0.62335,0.399019,0.0229563,0.941253,0.140624,0.70939,0.344356,0.970197,0.140227,0.200009,0.718467,0.245299,0.344485,0.703496,0.132242,0.619366,0.952549,0.403704,0.00465173,0.26063,0.13662,0.279313,0.997396,0.296258,0.837669,0.953939,0.361715,0.905116,0.918149,0.739672,0.562637,0.311965,0.898475,0.390777,0.799622,0.223907,0.725847,0.776891,0.118973,0.626078,0.92058,0.578436,0.574649,0.0383483,0.321645,0.790488,0.578011,0.985348,0.489293,0.75587,0.673942,0.960542,0.964677,0.393783,0.306386,0.963783,0.57141,0.416984,0.767638,0.511866,0.885013,0.0137194,0.729264,0.126462,0.0868183,0.485125,0.722084,0.986918,0.468097,0.950504,0.0654366,0.491229,0.753968,0.221305,0.481319,0.364291,0.992172,0.488745,0.655652,0.526133,0.641492,0.204247,0.415618,0.984583,0.0266773,0.166892,0.372983,0.993304,0.113362,0.610777,0.120416,0.270979,0.293286,0.560366,0.530334,0.285675,0.237381,0.138666,0.418755,0.816528,0.648039,0.997405,0.949765,0.392662,0.195036,0.0155318,0.819848,0.537549,0.00600088,0.50983,0.0995797,0.777534,0.769729,0.839743,0.84314,0.398793,0.482054,0.324374,0.662855,0.719881,0.848072,0.259346,0.845549,0.115477,0.226569,0.665205,0.191887,0.151807,0.913372,0.471078,0.477572,0.0773426,0.158333,0.0199291,0.532631,0.981862,0.0931013,0.761379,0.173666,0.416857,0.36621,0.968516,0.573837,0.0960268,0.136956,0.745742,0.0768443,0.495668,0.547455,0.88471,0.234003,0.180984,0.952114,0.609953,0.392456,0.552249,0.817986,0.836526,0.474295,0.321174,0.435753,0.992421,0.597695,0.856399,0.117657,0.831664,0.0440449,0.481298,0.464439,0.370226,0.0268475,0.951695,0.243875,0.724532,0.186781,0.15943,0.531882,0.826671,0.418824,0.331318,0.101115,0.580947,0.371136,0.0868542,0.0382023,0.803354,0.107321,0.261126,0.680935,0.173466,0.657354,0.677606,0.57319,0.190488,0.313419,0.592267,0.779754,0.492026,0.130681,0.52767,0.620843,0.809276,0.703588,0.514889,|0.643298,0.155439,0.277176,0.275391,0.802184,0.731558,0.821922,0.698946,0.0762494,0.705511,0.142431,0.278338,0.110597,0.823913,0.242714,0.528392,0.280589,0.0277726,0.936944,0.784118,0.626471,0.382085,0.400839,0.918198,0.859139,0.0149356,0.605921,0.90282,0.128784,0.841375,0.0248299,0.059312,0.30919,0.301272,0.929227,0.357232,0.335036,0.463983,0.480093,0.0874361,0.720752,0.363935,0.856439,0.637701,0.767207,0.469578,0.813771,0.116377,0.12861,0.163565,0.343894,0.486671,0.555893,0.242313,0.796063,0.444919,0.196502,0.70878,0.425039,0.98157,0.701358,0.679994,0.775706,0.16193,0.200149,0.222891,0.912353,0.71502,0.0898253,0.725743,0.717047,0.365173,0.159734,0.837164,0.980821,0.689161,0.336944,0.954687,0.074132,0.548098,0.260755,0.682717,0.563753,0.42685,0.541998,0.615225,0.802434,0.369448,0.511398,0.463317,0.196998,0.95622,0.716112,0.868239,0.943191,0.584236,0.0341533,0.20493,0.531994,0.186233,0.871673,0.70106,0.288335,0.957539,0.672255,0.931204,0.1616,0.273092,0.501126,0.701471,0.0154381,0.392629,0.831581,0.68304,0.799497,0.206654,0.215121,0.650399,0.3286,0.00151843,0.235769,0.00486213,0.641495,0.520106,0.752914,0.899035,0.247628,0.120394,0.362713,0.504242,0.358561,0.23788,0.466997,0.314639,0.871369,0.302767,0.874692,0.12561,0.549602,0.594791,0.595238,0.798131,0.988596,0.13997,0.713919,0.499717,0.892209,0.034798,0.608931,0.572205,0.642748,0.520078,0.316789,0.587761,0.374436,0.0935433,0.524556,0.468565,0.1215,0.548115,0.0317429,0.901311,0.356653,0.475335,0.465342,0.316334,0.437654,0.462207,0.509221,0.424015,0.387517,0.531,0.779019,0.823088,0.206416,0.731544,0.608594,0.895443,0.981602,0.0511674,0.629693,0.721913,0.363759,0.780475,0.157264,0.614272,0.263758,0.130696,0.854101,0.226066,0.279009,0.374815,0.53881,0.184528,0.086783,0.857264,0.497137,0.00325692,0.794682,0.64957,0.619618,0.419188,0.530597,0.819301,0.92995,0.763541,0.268981,0.0163073,0.983714,0.259138,0.258674,0.209973,0.225342,0.699226,0.95517,0.0899189,0.235914,0.81526,0.789611,0.797097,0.521187,0.863777,0.125763,0.238388,0.180383,0.801242,0.884437,0.630155,0.282461,0.690472,0.124629,0.0663725,0.672262,0.502773,0.166067,0.38784,0.771689,0.697963,0.885699,0.365294,0.876258,0.816983,0.397465,0.560517,0.0914975,0.265054,0.110059,0.883402,0.53209,0.322313,0.164402,0.0659525,0.205152,0.148814,0.719305,0.444822,0.204966,0.390796,0.0471539,0.561812,0.316198,0.670992,0.11802,0.992106,0.679973,0.434159,0.0948609,0.319336,0.44291,0.995881,0.276247,0.470382,0.299781,0.361865,0.189277,0.226179,0.256844,0.419232,0.578906,0.658869,0.222295,0.924105,0.652534,0.19624,0.6042,0.35827,0.236892,0.563217,0.570376,0.810567,0.0837376,0.544937,0.433549,0.575211,0.826303,0.0150215,0.662068,0.616092,0.840463,0.617225,0.135806,0.0786891,0.76866,0.192337,0.931563,0.799148,0.00657535,0.0875868,0.491628,0.199124,0.613452,0.681908,0.61132,0.474287,0.955234,0.505477,0.663548,0.980835,0.255161,0.360314,0.0387029,0.122871,0.576802,0.963663,0.795559,0.81773,0.174657,0.653847,0.165429,0.00828981,0.636904,0.99162,0.729098,0.968226,0.914795,0.864416,0.562184,0.280687,0.869615,0.957983,0.362643,0.404252,0.428503,0.998082,0.544685,0.121218,0.596693,0.877445,0.221407,0.7731,0.198787,0.133054,0.712012,0.792153,0.564575,0.410254,0.154129,0.576676,0.316444,0.51781,0.321759,0.0828101,0.0416202,0.603038,0.357064,0.790857,0.677969,0.675066,0.342377,0.0542102,0.677658,0.577629,0.709346,0.070782,0.864659,0.304671,0.977114,0.88609,0.21651,0.6375,0.974723,0.43399,0.382434,0.814149,0.475143,0.742058,0.948739,0.0872759,0.973805,0.930128,0.457178,0.173866,0.836616,0.73994,0.682538,0.718094,0.660613,0.444116,0.772417,0.953052,0.0290748,0.366001,0.391345,0.32363,0.748477,0.83538,0.209394,0.559211,0.0939402,0.895836,0.456171,0.804198,0.0788655,0.186224,0.143803,0.309794,0.31896,0.142855,0.112913,0.642884,0.690081,0.509867,0.00264943,0.834706,0.858223,0.947363,0.25215,0.360755,0.837056,0.267167,0.247349,0.990419,0.49109,0.736025,0.911358,0.92518,0.27506,0.299132,0.0499057,0.95119,0.526019,0.515241,0.533033,0.795587,0.407825,0.57056,0.0888397,0.567976,0.9339,0.648637,0.338289,0.87162,0.118104,0.101431,0.550787,0.227158,0.693971,0.205115,0.543903,0.236623,0.864113,0.717353,0.411299,0.606175,0.319533,0.369667,0.0750698,0.48114,0.791746,0.492138,0.759378,0.123038,0.945417,0.756803,0.826253,0.885275,0.200119,0.602342,0.600198,0.826937,0.180081,0.0272247,0.730622,0.486306,0.0525974,0.938304,0.0120005,0.597942,0.0196145,0.209292,0.0490593,0.92266,0.458214,0.951031,0.754903,0.208364,0.264018,0.669414,0.631367,0.818214,0.359111,0.249597,0.951348,0.803366,0.0149447,0.249785,0.783267,0.425227,0.155773,0.403886,0.634836,0.402062,0.712275,0.692496,0.205526,0.530054,0.892605,0.410615,0.921463,0.312405,0.309748,0.92027,0.193139,0.0739456,0.7697,0.320494,0.788953,0.354848,0.598248,0.154481,0.0650144,0.497121,0.191479,0.200003,0.21579,0.398689,0.834392,0.373695,0.879078,0.73501,0.504866,0.554629,0.338852,0.986691,0.601605,0.142858,0.54266,0.386899,0.898051,0.433247,0.635923,0.633992,0.045881,0.24374,0.287253,0.229894,0.305565,0.440518,0.605666,0.800497,0.62684,0.917013,0.561392,0.402316,0.713914,0.117129,0.269157,0.090143,0.105369,0.560665,0.800846,0.621461,0.263223,0.788198,0.682148,0.98022,0.802379,0.279701,0.356451,0.471483,0.218223,0.218881,0.972393,0.788482,0.328589,0.755613,0.286822,0.477081,0.289167,0.625543,0.147899,0.539015,0.694192,0.436307,0.493977,0.529561,0.770299,0.820436,0.704702,0.433835,0.0614906,0.563548,0.807906,0.124515,0.610607,0.0269493,0.494674,0.79841,0.314081,0.752815,0.690174,0.992063,0.171745,0.450096,0.950832,0.984305,0.232634,0.104122,0.2089,0.802806,0.214859,0.419146,0.842599,0.808015,0.0202448,0.6509,0.969757,0.473418,0.374262,0.992126,0.759663,0.155486,0.310823,0.110204,0.685492,0.914358,0.916768,0.394767,0.265269,0.191598,0.352349,0.171037,0.105547,0.0702274,0.986209,0.328046,0.689932,0.665227,0.621379,0.0362414,0.487919,0.0924578,0.939233,0.326754,0.273096,0.0794873,0.529037,0.438225,0.0402315,0.562303,0.774339,0.458573,0.162254,0.871263,0.351898,0.553593,0.42274,0.107593,0.240868,0.3075,0.259701,0.886465,0.144066,0.122942,0.712122,0.522981,0.435534,0.871239,0.0359324,0.2765,0.228484,0.157498,0.121441,0.0859973,0.988255,0.11349,0.643525,0.378111,0.434194,0.799023,0.559099,0.0482526,0.530731,0.378401,0.686441,0.271131,0.107791,0.705718,0.151462,0.718521,0.915528,0.977339,0.857182,0.561125,0.245518,0.951649,0.292201,0.183266,0.0242547,0.892045,0.829887,0.0220892,0.852458,0.485038,0.790964,0.464866,0.506217,0.738606,0.0203316,0.499698,0.214045,0.0479077,0.455739,0.65237,0.993163,0.319521,0.494954,0.914279,0.244378,0.246484,0.579339,0.0925917,0.252082,0.300484,0.600698,0.305673,0.535876,0.071698,0.213115,0.969813,0.703557,0.54202,0.915667,0.0369123,0.752908,0.58663,0.466271,0.612904,0.223432,0.995117,0.162944,0.323735,0.289626,0.206991,0.255435,0.185334,0.309654,0.714574,0.494306,0.969905,0.430165,0.235058,0.49379,0.00776643,0.792595,0.950485,0.455985,0.91983,0.820015,0.790217,0.109193,0.205316,0.625779,0.672842,0.207766,0.954989,0.264138,0.0454116,0.570507,0.171901,0.443211,0.658358,0.169152,0.839131,0.329505,0.457153,0.331012,0.812027,0.855943,0.835857,0.546792,0.600874,0.19728,0.936105,0.127799,0.984763,0.131634,0.708762,0.415007,0.918582,0.30562,0.100518,0.3236,0.21513,0.850655,0.0097385,0.000612438,0.803964,0.55704,0.667709,0.236506,0.532721,0.610426,0.754322,0.206213,0.188218,0.30866,0.195389,0.501538,0.316587,0.663166,0.262138,0.865179,0.283934,0.26035,0.824848,0.467267,0.0739591,0.616051,0.919365,0.884872,0.259616,0.86293,0.532864,0.740767,0.730072,0.523376,0.517713,0.266156,0.448811,0.0791864,0.274024,0.579906,0.606864,0.891368,0.602673,0.831781,0.306928,0.751076,0.685811,0.93548,0.616532,0.282705,0.145237,0.196764,0.817001,0.800844,0.970715,0.476591,0.344837,0.0102208,0.0402421,0.675833,0.0333316,0.199549,0.899331,0.437076,0.659761,0.647058,0.664066,0.486612,0.692782,0.966333,0.772587,0.450792,0.460041,0.156691,0.951715,0.533888,0.282327,0.171504,0.439891,0.0474073,0.784392,0.346424,0.0578707,0.12402,0.913465,0.438973,0.445929,0.485118,0.670004,0.0546416,0.411004,0.962085,0.412053,0.247104,0.0597012,0.398237,0.879232,0.156081,0.758273,0.711001,0.414936,0.381934,0.0499738,0.567456,0.574821,0.368734,0.525659,0.636041,0.406815,0.427064,0.481326,0.73723,0.503068,0.382799,0.177809,0.850487,0.739475,0.0402534,0.185492,0.363835,0.919485,0.608563,0.739677,0.128633,0.967147,0.51422,0.783596,0.916327,0.766475,0.860926,0.337779,0.395854,0.224042,0.621134,0.871597,0.398512,0.373123,0.905785,0.212608,0.21525,0.0376272,0.10157,0.348226,0.140971,0.707348,0.425696,0.867019,0.643864,0.889189,0.302044,0.198911,0.351654,0.755772,0.274766,0.272887,0.65266,0.956628,0.954569,0.199506,0.373533,0.717592,0.197451,0.591994,0.469381,0.119905,0.517082,0.565513,0.786831,0.493021,0.350809,0.585931,0.919769,0.157655,0.373227,0.653515,0.575438,0.61994,0.0335509,0.400599,0.639776,0.967348,0.355234,0.888086,0.807856,0.157972,0.402676,0.983283,0.65764,0.23577,0.20405,0.0962445,0.430419,0.203026,0.919703,0.0783144,0.970795,0.0817146,|0.762053,0.148964,0.741961,0.238112,0.457117,0.70609,0.483234,0.696497,0.664904,0.323175,0.392485,0.251723,0.604464,0.125262,0.864499,0.962818,0.998168,0.432377,0.84443,0.843151,0.324051,0.414528,0.0856111,0.934664,0.854185,0.0189563,0.910215,0.725053,0.0854263,0.498687,0.544681,0.760538,0.451438,0.119152,0.585023,0.791324,0.798445,0.981252,0.594242,0.978027,0.43031,0.758141,0.565582,0.622436,0.528179,0.246484,0.862705,0.0496287,0.0761365,0.293003,0.27134,0.955178,0.229992,0.0734569,0.240103,0.575702,0.649243,0.133495,0.901369,0.14773,0.847599,0.446455,0.303689,0.198944,0.0345616,0.708648,0.650993,0.767507,0.743465,0.695854,0.213424,0.527327,0.958674,0.456577,0.591076,0.00842291,0.58935,0.264158,0.615196,0.851114,0.814042,0.500243,0.980649,0.159744,0.709924,0.193812,0.134458,0.812848,0.284577,0.118098,0.0537139,0.340364,0.988356,0.188007,0.178645,0.524869,0.16821,0.904078,0.594865,0.748312,0.318839,0.108758,0.901385,0.162455,0.371081,0.00349784,0.566742,0.397857,0.0182056,0.0565982,0.973868,0.488904,0.115488,0.960608,0.995963,0.178521,0.229363,0.441285,0.466206,0.965131,0.90064,0.648962,0.938097,0.168476,0.770416,0.322012,0.859767,0.698981,0.635254,0.395446,0.624561,0.76724,0.443087,0.264495,0.454046,0.0937022,0.326928,0.948659,0.288099,0.914546,0.933843,0.352453,0.265895,0.0888394,0.694684,0.0743251,0.240502,0.318843,0.440825,0.875304,0.0373867,0.298491,0.00562543,0.628867,0.0947794,0.967308,0.248086,0.0767121,0.942676,0.930436,0.812937,0.472271,0.328669,0.0992784,0.271371,0.659242,0.419791,0.319706,0.236495,0.902965,0.753139,0.52367,0.385716,0.506777,0.719862,0.464743,0.667745,0.82587,0.964917,0.660037,0.283199,0.382501,0.280587,0.134952,0.375935,0.729427,0.850195,0.567898,0.322527,0.577057,0.13786,0.833066,0.128449,0.312521,0.192658,0.1686,0.0421811,0.364597,0.332462,0.885503,0.647112,0.665266,0.246313,0.442775,0.950045,0.444421,0.886868,0.874736,0.42317,0.675057,0.873935,0.702586,0.318811,0.567736,0.510183,0.528074,0.909857,0.332886,0.131661,0.33425,0.654573,0.212555,0.323942,0.797974,0.949266,0.688235,0.206997,0.797176,0.424499,0.69108,0.751651,0.827218,0.889088,0.378093,0.487481,0.925538,0.375001,0.322514,0.973485,0.155636,0.140166,0.0330497,0.569232,0.200556,0.131278,0.362107,0.371155,0.376589,0.635554,0.0656747,0.523776,0.53522,0.649712,0.164714,0.941558,0.153173,0.255724,0.910148,0.521949,0.164992,0.675881,0.79713,0.255271,0.864648,0.516153,0.160492,0.367848,0.260183,0.711151,0.990522,0.0549193,0.0141835,0.70291,0.885366,0.45837,0.174833,0.285963,0.924136,0.218218,0.804118,0.780952,0.823257,0.34543,0.528172,0.514822,0.99359,0.921895,0.692873,0.787893,0.384189,0.167847,0.140648,0.816062,0.222281,0.227789,0.844153,0.634088,0.673485,0.950795,0.700419,0.119084,0.17526,0.419922,0.788602,0.884202,0.433375,0.342843,0.05338,0.654207,0.060976,0.667581,0.102194,0.767648,0.0390142,0.775884,0.414008,0.648083,0.444889,0.777829,0.277717,0.539971,0.430207,0.039788,0.405736,0.832992,0.352459,0.144664,0.258096,0.76556,0.308763,0.924447,0.40468,0.248667,0.414113,0.0107254,0.154884,0.491889,0.120532,0.732967,0.221321,0.319625,0.84447,0.924095,0.644109,0.246661,0.212492,0.783656,0.703409,0.728271,0.313544,0.864348,0.920191,0.563507,0.668152,0.134359,0.71252,0.872188,0.74546,0.336625,0.443945,0.0767332,0.48605,0.94598,0.511622,0.632081,0.261967,0.903031,0.371941,0.997506,0.443158,0.302198,0.875865,0.0113002,0.133044,0.0819535,0.895109,0.207949,0.42559,0.0891685,0.421606,0.980893,0.716287,0.27725,0.304545,0.715673,0.591611,0.0352312,0.794335,0.750634,0.234694,0.969629,0.28004,0.517882,0.611754,0.518751,0.0407335,0.198391,0.0191232,0.183109,0.593986,0.0313009,0.299962,0.636718,0.640242,0.907074,0.427658,0.872285,0.339944,0.121596,0.0423784,0.660571,0.467001,0.327433,0.856142,0.818942,0.0515438,0.997303,0.158041,0.70611,0.285359,0.778448,0.562546,0.737334,0.570353,0.707769,0.639129,0.462183,0.303246,0.255175,0.507234,0.0906376,0.879922,0.906411,0.60528,0.440644,0.210591,0.895717,0.475214,0.972122,0.225471,0.822025,0.468335,0.001984,0.0747263,0.151256,0.284498,0.929272,0.0956293,0.667545,0.181096,0.569558,0.848311,0.552938,0.81767,0.453163,0.953562,0.783058,0.0818809,0.351323,0.729108,0.12324,0.369552,0.807178,0.665215,0.879731,0.911447,0.599554,0.86537,0.923273,0.709552,0.674244,0.187092,0.48011,0.0455887,0.649462,0.968415,0.331789,0.245379,0.670971,0.863436,0.486968,0.57798,0.0662405,0.0150598,0.476089,0.747107,0.901575,0.00892699,0.188827,0.384458,0.300177,0.264996,0.41387,0.305031,0.688437,0.88848,0.398264,0.86449,0.95529,0.451964,0.835812,0.647037,0.847512,0.971373,0.784489,0.102216,0.404075,0.425881,0.299681,0.0736341,0.562194,0.891076,0.934174,0.268431,0.527042,0.620777,0.565813,0.810897,0.961848,0.704983,0.573932,0.565871,0.605518,0.626027,0.996033,0.833333,0.944722,0.762063,0.412825,0.128113,0.013132,0.355768,0.69754,0.288655,0.389319,0.616971,0.296397,0.197068,0.273137,0.287439,0.679126,0.363642,0.0548777,0.742668,0.496361,0.497647,0.785827,0.652322,0.294227,0.285384,0.859822,0.275959,0.466319,0.64516,0.318959,0.116145,0.850759,0.709216,0.655403,0.569627,0.728322,0.564813,0.238546,0.174966,0.794611,0.830085,0.413049,0.0132817,0.0692022,0.884446,0.667746,0.0902781,0.0136851,0.915539,0.830098,0.648512,0.430573,0.553326,0.257112,0.726714,0.355579,0.722122,0.132599,0.476716,0.919164,0.0225793,0.286711,0.200518,0.264225,0.247124,0.850697,0.301844,0.0142507,0.905716,0.156137,0.873518,0.115201,0.319511,0.235069,0.528034,0.311896,0.271628,0.119432,0.996711,0.0670469,0.160559,0.218896,0.816214,0.165858,0.246608,0.605821,0.296854,0.539416,0.753158,0.421898,0.131328,0.911345,0.158959,0.147727,0.366963,0.773464,0.854162,0.677077,0.268303,0.387952,0.728329,0.225748,0.981087,0.725359,0.498639,0.391914,0.652816,0.306634,0.571068,0.195323,0.531525,0.188293,0.886212,0.316656,0.659338,0.689252,0.0223756,0.571769,0.122586,0.136015,0.554654,0.398177,0.687496,0.413572,0.263153,0.980691,0.867666,0.371264,0.121875,0.279785,0.507799,0.722617,0.192149,0.079352,0.467709,0.22618,0.603291,0.252874,0.197369,0.720377,0.464227,0.972697,0.640836,0.410659,0.362535,0.919257,0.96634,0.53922,0.873816,0.721498,0.737128,0.25099,0.599611,0.588922,0.479444,0.465643,0.322345,0.8046,0.776578,0.556276,0.649496,0.688933,0.421454,0.678351,0.625045,0.781189,0.994866,0.522626,0.458624,0.362273,0.363797,0.683338,0.426235,0.106431,0.957352,0.285315,0.83686,0.73659,0.240271,0.513488,0.399571,0.393376,0.289356,0.0683225,0.951002,0.892823,0.175908,0.646927,0.413949,0.142327,0.494702,0.336362,0.575701,0.682572,0.918105,0.88602,0.00448924,0.546862,0.854874,0.0390056,0.210405,0.00284636,0.214048,0.0656649,0.358536,0.884736,0.187254,0.807088,0.749612,0.385047,0.327389,0.0524955,0.182742,0.110935,0.185838,0.292421,0.790301,0.0773284,0.572736,0.605779,0.666063,0.110808,0.850774,0.798334,0.955506,0.956573,0.228252,0.908815,0.46467,0.955712,0.810535,0.674862,0.331086,0.714833,0.579778,0.311982,0.127208,0.242179,0.396091,0.64961,0.00637817,0.145777,0.00175512,0.263851,0.49061,0.530035,0.387123,0.121135,0.244388,0.463927,0.650147,0.672281,0.443398,0.997871,0.0391685,0.942693,0.0743448,0.716943,0.688437,0.769022,0.172565,0.176485,0.862676,0.30104,0.589547,0.29666,0.558647,0.416523,0.607514,0.445379,0.405497,0.847158,0.352863,0.862161,0.917761,0.761071,0.607033,0.414605,0.756959,0.132407,0.409078,0.00685418,0.318599,0.252296,0.217542,0.0144523,0.666726,0.341528,0.202156,0.271235,0.490952,0.158573,0.18833,0.367459,0.213233,0.959244,0.578633,0.607767,0.155774,0.636001,0.285809,0.813582,0.592032,0.643968,0.811424,0.965182,0.0781168,0.681533,0.949613,0.424463,0.865002,0.536023,0.726439,0.677004,0.760283,0.385633,0.5055,0.599886,0.123226,0.244019,0.269198,0.915183,0.607196,0.392299,0.124181,0.348268,0.693742,0.892337,0.38869,0.174043,0.550234,0.781849,0.976267,0.701946,0.197275,0.980202,0.457355,0.743022,0.497213,0.283744,0.644853,0.25053,0.954754,0.341941,0.970029,0.0446294,0.45885,0.436906,0.205753,0.498871,0.923256,0.795828,0.733677,0.753843,0.28813,0.688001,0.32208,0.501867,0.131291,0.377854,0.12241,0.83884,0.763168,0.595943,0.909196,0.39209,0.969437,0.595168,0.117052,0.925673,0.704518,0.937008,0.347477,0.40353,0.462993,0.630079,0.764813,0.281813,0.423268,0.673168,0.430727,0.393629,0.487314,0.0594919,0.421749,0.388451,0.359586,0.42037,0.178633,0.585393,0.0191842,0.0198945,0.2609,0.992433,0.680039,0.205235,0.0567365,0.0842703,0.225922,0.358403,0.085287,0.440281,0.914762,0.237118,0.196015,0.157235,0.134078,0.464099,0.794648,0.0779893,0.191991,0.520401,0.31803,0.422451,0.452648,0.994193,0.342625,0.711473,0.355713,0.293889,0.916645,0.782326,0.749751,0.559128,0.918418,0.0902148,0.0747092,0.789408,0.569326,0.0433552,0.310052,0.398384,0.133737,0.692253,0.65385,0.78767,0.459624,0.584458,0.644495,0.717589,0.0151143,0.583176,0.54004,0.156306,0.990335,0.594978,0.662057,0.568739,0.181124,0.934306,0.75975,0.861437,0.314941,0.00249439,0.0824489,0.321247,0.292326,0.840423,0.224675,0.363143,0.123617,0.166593,0.608108,0.778347,0.0807064,0.874696,0.0619528,0.343355,0.496864,0.961015,0.71317,0.69891,0.45964,0.245949,0.178843,|0.64187,0.855422,0.710942,0.993862,0.151309,0.343633,0.0654904,0.897264,0.544699,0.130604,0.457379,0.0139329,0.302419,0.750729,0.718381,0.0619619,0.510644,0.922282,0.444944,0.353601,0.349428,0.256746,0.188906,0.861535,0.536964,0.431108,0.109636,0.834058,0.0897254,0.470832,0.730157,0.118387,0.893785,0.456827,0.276849,0.859798,0.0542869,0.995208,0.522872,0.789545,0.414759,0.765698,0.721381,0.523541,0.795972,0.698565,0.908573,0.894894,0.220742,0.383639,0.0684907,0.828597,0.593977,0.316499,0.170488,0.672066,0.199399,0.741932,0.354358,0.919412,0.0564672,0.767469,0.254012,0.0681185,0.332859,0.118994,0.246706,0.299831,0.359265,0.646933,0.0555106,0.340583,0.094743,0.531953,0.938285,0.702757,0.102445,0.995189,0.126635,0.766566,0.660965,0.561028,0.0547429,0.792809,0.814507,0.348926,0.668614,0.831178,0.474262,0.406945,0.863132,0.666477,0.549766,0.693512,0.784546,0.96746,0.574546,0.569963,0.3948,0.275277,0.657731,0.124001,0.880457,0.221824,0.39735,0.997538,0.225239,0.957689,0.31213,0.0708987,0.335111,0.182662,0.552302,0.938077,0.19389,0.0361398,0.507003,0.896395,0.682046,0.513179,0.964444,0.715299,0.118511,0.916355,0.497536,0.0302633,0.884053,0.0672396,0.247862,0.748291,0.146616,0.965738,0.676083,0.442895,0.0580264,0.875089,0.336061,0.741001,0.314168,0.947723,0.943703,0.143807,0.400595,0.697158,0.769204,0.697281,0.459348,0.538697,0.0260643,0.916293,0.806057,0.370301,0.467922,0.286548,0.635033,0.102051,0.870449,0.466002,0.72435,0.712961,0.642703,0.697943,0.657965,0.529446,0.414143,0.372856,0.311804,0.198991,0.774879,0.0216144,0.543194,0.417313,0.497163,0.27386,0.586553,0.907218,0.041029,0.561189,0.372684,0.477794,0.0346168,0.652238,0.678232,0.65429,0.766686,0.825666,0.326667,0.818643,0.698059,0.736325,0.84162,0.677299,0.642698,0.51154,0.686788,0.458548,0.292477,0.30972,0.964811,0.0035882,0.87126,0.799492,0.618875,0.32748,0.695914,0.890579,0.617583,0.934722,0.230906,0.219046,0.491706,0.922758,0.757634,0.936191,0.888793,0.156296,0.272972,0.979204,0.748233,0.437814,0.799851,0.869743,0.867042,0.0295735,0.255881,0.364758,0.0312431,0.314884,0.834446,0.170331,0.774431,0.775303,0.899222,0.679926,0.078648,0.0499685,0.32764,0.907414,0.856861,0.738267,0.104821,0.832893,0.941612,0.674595,0.825162,0.953126,0.593449,0.899058,0.746553,0.751429,0.506714,0.979302,0.386625,0.973405,0.296038,0.864324,0.83927,0.152117,0.26386,0.908337,0.173043,0.684556,0.758007,0.917054,0.807165,0.995169,0.738737,0.271755,0.895539,0.369286,0.501396,0.793711,0.668539,0.087034,0.488678,0.99439,0.890944,0.998645,0.235469,0.312291,0.034353,0.617105,0.553851,0.209353,0.400206,0.884799,0.0796071,0.496718,0.329813,0.785072,0.374882,0.311786,0.540758,0.0209435,0.549173,0.493972,0.132075,0.697764,0.990443,0.348921,0.286616,0.743722,0.681227,0.516485,0.746177,0.248245,0.725989,0.947075,0.799987,0.84084,0.703802,0.77285,0.971171,0.292522,0.648198,0.381244,0.0768455,0.400008,0.269127,0.920044,0.0366892,0.0248979,0.951628,0.328486,0.304578,0.700303,0.809109,0.348649,0.142097,0.535071,0.433497,0.53648,0.494058,0.529177,0.688644,0.804577,0.458768,0.478997,0.959307,0.2316,0.629874,0.0628071,0.905292,0.898377,0.944178,0.471681,0.790098,0.823572,0.483982,0.693391,0.880798,0.0511876,0.0181517,0.626154,0.53214,0.834276,0.522044,0.35807,0.257895,0.169915,0.325081,0.371203,0.71559,0.228448,0.00108337,0.278331,0.759188,0.880075,0.47614,0.701316,0.204103,0.451552,0.533384,0.435114,0.788455,0.616693,0.455488,0.744225,0.795422,0.848145,0.723287,0.564582,0.9712,0.468758,0.694702,0.0484851,0.871186,0.0618411,0.448209,0.805411,0.0197969,0.797056,0.0614702,0.736159,0.646124,0.424968,0.510385,0.937471,0.820515,0.279422,0.663752,0.780584,0.982956,0.651937,0.312494,0.0995575,0.987949,0.468005,0.489477,0.83016,0.0840285,0.575583,0.108477,0.456332,0.711843,0.343747,0.790788,0.249406,0.691754,0.565511,0.0792914,0.740619,0.289383,0.735816,0.311471,0.479999,0.892858,0.795502,0.421694,0.955005,0.539115,0.0652082,0.454478,0.0286283,0.00699115,0.867094,0.888208,0.574515,0.276846,0.958788,0.233162,0.477413,0.263605,0.500099,0.341572,0.189351,0.259532,0.863956,0.918853,0.880359,0.952675,0.788091,0.125822,0.158429,0.984312,0.871694,0.566251,0.405812,0.0984821,0.168033,0.628003,0.39556,0.963921,0.566709,0.869675,0.734652,0.529202,0.439663,0.212478,0.262722,0.786831,0.749675,0.48327,0.395586,0.791188,0.282832,0.548329,0.0370932,0.100311,0.00441295,0.307913,0.260075,0.663743,0.723236,0.05718,0.522517,0.554374,0.86895,0.988701,0.678939,0.832923,0.465497,0.444145,0.255597,0.017894,0.289173,0.335504,0.637629,0.354439,0.762623,0.47761,0.617775,0.946549,0.12163,0.694623,0.00934464,0.345395,0.477573,0.0217226,0.205859,0.261645,0.672671,0.143038,0.434635,0.45241,0.27846,0.24625,0.570881,0.0725921,0.926112,0.723932,0.816004,0.942865,0.60487,0.833909,0.586031,0.850923,0.0737795,0.746636,0.380698,0.330703,0.765511,0.735916,0.301652,0.20308,0.842994,0.19024,0.351038,0.148131,0.444882,0.44967,0.567323,0.956438,0.431876,0.0714526,0.470596,0.690545,0.821519,0.405077,0.407593,0.238971,0.960035,0.184832,0.157117,0.435977,0.70795,0.193591,0.0637725,0.886199,0.5362,0.269797,0.175967,0.832502,0.830923,0.842307,0.411953,0.457626,0.75199,0.156977,0.0862479,0.435981,0.407769,0.675885,0.493177,0.173582,0.59065,0.117767,0.214094,0.786561,0.276086,0.265981,0.716053,0.305282,0.592354,0.0262575,0.26046,0.528971,0.318431,0.68512,0.344938,0.876552,0.813537,0.489097,0.30571,0.439724,0.783703,0.619697,0.589998,0.866664,0.0332921,0.826274,0.905967,0.0154101,0.969647,0.548574,0.479529,0.606265,0.885589,0.632402,0.0424836,0.20677,0.743857,0.0870638,0.142922,0.926215,0.806606,0.927369,0.143165,0.0636447,0.0458471,0.870611,0.650899,0.724281,0.245221,0.503916,0.824301,0.493499,0.518606,0.0520594,0.505013,0.221193,0.937355,0.671317,0.0854888,0.411331,0.739471,0.45462,0.433262,0.306441,0.47433,0.978591,0.197202,0.670973,0.250609,0.631991,0.873106,0.211909,0.594188,0.587142,0.779425,0.154545,0.622312,0.165557,0.20397,0.176095,0.0475652,0.162365,0.931903,0.362006,0.491397,0.759494,0.490745,0.794191,0.120587,0.337003,0.343556,0.221814,0.325562,3.46899e-05,0.0889754,0.33426,0.259022,0.699171,0.0711646,0.56335,0.855255,0.138781,0.881829,0.897236,0.319798,0.829223,0.450158,0.646379,0.5314,0.339202,0.447411,0.928318,0.865374,0.701037,0.116822,0.92724,0.251214,0.41199,0.462533,0.168701,0.983113,0.0559078,0.831025,0.792805,0.360042,0.862692,0.845952,0.0474693,0.482266,0.0751446,0.941944,0.904938,0.45418,0.326443,0.717695,0.439795,0.622791,0.00682396,0.497521,0.76836,0.747391,0.864437,0.253094,0.0606511,0.396608,0.157398,0.168536,0.621227,0.902077,0.620083,0.457684,0.414787,0.173283,0.669751,0.751168,0.491472,0.0311872,0.883597,0.610338,0.620051,0.186867,0.726171,0.782308,0.477283,0.869392,0.106116,0.0625783,0.23928,0.835501,0.470103,0.10971,0.200344,0.263949,0.141334,0.346861,0.170903,0.236213,0.930376,0.914693,0.442022,0.400307,0.350673,0.320695,0.754995,0.0245235,0.306379,0.0547149,0.499399,0.430944,0.484029,0.36797,0.392261,0.193135,0.764506,0.210088,0.455472,0.437841,0.0938531,0.269436,0.345047,0.299544,0.714726,0.0661302,0.493143,0.311469,0.646577,0.278032,0.152383,0.437408,0.825839,0.102272,0.747102,0.0906711,0.086889,0.798836,0.921833,0.126299,0.341719,0.747816,0.0161817,0.749306,0.145975,0.659881,0.211738,0.990492,0.241794,0.541418,0.78907,0.793358,0.892442,0.447274,0.426406,0.691823,0.78732,0.723233,0.0244474,0.055709,0.76851,0.275186,0.937407,0.854345,0.786124,0.134819,0.362721,0.660119,0.512801,0.635811,0.427388,0.493823,0.486657,0.651326,0.362646,0.426076,0.515328,0.984112,0.831021,0.965204,0.737851,0.00220609,0.0223132,0.376167,0.0523806,0.63352,0.563011,0.277263,0.251956,0.0730369,0.037796,0.0273479,0.882121,0.369426,0.0311847,0.982838,0.510605,0.173087,0.520459,0.14347,0.0875718,0.913481,0.390792,0.288742,0.345769,0.489906,0.580952,0.543816,0.687519,0.859082,0.515765,0.615447,0.284959,0.0303855,0.698542,0.169802,0.290384,0.845305,0.45277,0.480733,0.65299,0.552791,0.914586,0.555453,0.71423,0.740154,0.212477,0.10736,0.0296108,0.352183,0.826121,0.775697,0.864712,0.0235219,0.485224,0.78825,0.603298,0.990268,0.890201,0.203673,0.925219,0.93104,0.53312,0.871336,0.232842,0.231247,0.341357,0.411626,0.206012,0.98175,0.31356,0.538334,0.0758603,0.552117,0.647486,0.80383,0.439526,0.1715,0.368826,0.10038,0.934353,0.910112,0.439464,0.637494,0.756278,0.653318,0.504219,0.538223,0.40926,0.806133,0.456865,0.906238,0.110985,0.0121039,0.905027,0.507791,0.0504794,0.304713,0.418515,0.24835,0.0765487,0.618034,0.412178,0.0602998,0.528072,0.493463,0.124144,0.726983,0.295399,0.841154,0.453396,0.763201,0.294172,0.598776,0.363654,0.557741,0.812264,0.61949,0.174969,0.0748618,0.630489,0.739652,0.00563276,0.610495,0.810162,0.140235,0.014926,0.807335,0.827683,0.272398,0.769416,0.177692,0.307982,0.729088,0.87596,0.578977,0.922298,0.393163,0.670557,0.23289,0.327343,0.517162,0.215117,0.441736,0.237807,0.224761,0.130727,0.553081,0.773042,0.890965,0.801857,0.0201189,0.583486,0.274875,0.0628631,0.76419,0.844189,0.0776454,0.223777,0.453796,0.331315,0.508166,0.281765,0.667714,0.854244,0.344617,0.547745,0.0742894,|0.449156,0.455071,0.400372,0.145041,0.253254,0.300131,0.99591,0.311,0.0813097,0.285339,0.302723,0.792161,0.123081,0.492449,0.109136,0.509639,0.422316,0.125763,0.932346,0.589036,0.0902444,0.870362,0.810687,0.314234,0.879671,0.64801,0.205347,0.00632292,0.171682,0.16068,0.89638,0.845746,0.689073,0.212515,0.23392,0.103814,0.709918,0.251701,0.690963,0.831221,0.341636,0.191479,0.582689,0.209538,0.662559,0.205018,0.944539,0.0432364,0.637406,0.771035,0.529163,0.959846,0.137393,0.192356,0.0748818,0.839748,0.476319,0.0136709,0.185201,0.521731,0.960221,0.607746,0.462856,0.814265,0.630178,0.315605,0.194314,0.052152,0.0719488,0.403378,0.383039,0.0540575,0.818649,0.488632,0.489613,0.0215834,0.196155,0.355084,0.142246,0.0685781,0.969046,0.757212,0.95448,0.512206,0.609338,0.133924,0.791727,0.494022,0.187506,0.979124,0.350946,0.742259,0.104177,0.00116599,0.297256,0.691498,0.669237,0.368777,0.564108,0.565005,0.363097,0.659654,0.821227,0.696862,0.801232,0.204019,0.98428,0.16284,0.648136,0.51778,0.608832,0.717911,0.188029,0.778482,0.540884,0.610045,0.643481,0.488795,0.492943,0.130043,0.200297,0.583496,0.890029,0.131571,0.438742,0.173712,0.87515,0.883791,0.747557,0.020348,0.125084,0.126631,0.677538,0.885757,0.510331,0.299772,0.201487,0.406602,0.59714,0.557572,0.155288,0.246265,0.656696,0.00997251,0.301678,0.169597,0.351635,0.285527,0.0520879,0.9183,0.670842,0.510255,0.640221,0.391369,0.252544,0.732722,0.0802667,0.0608028,0.57102,0.352893,0.376637,0.251398,0.241553,0.0468984,0.6277,0.344051,0.0240155,0.340471,0.210887,0.175476,0.939696,0.908117,0.124819,0.255118,0.389712,0.341168,0.0972103,0.898632,0.833003,0.319616,0.566964,0.640791,0.428306,0.423561,0.251241,0.171942,0.169645,0.999587,0.371262,0.827352,0.679747,0.240017,0.352022,0.941613,0.745951,0.0533264,0.468285,0.0303717,0.548688,0.765377,0.971463,0.134423,0.0994939,0.00699192,0.771975,0.0393003,0.894362,0.326963,0.550557,0.584987,0.208117,0.915228,0.62646,0.0224395,0.741189,0.20587,0.724005,0.799196,0.225088,0.242852,0.503391,0.73483,0.347827,0.615383,0.682013,0.910896,0.624673,0.0927184,0.818205,0.504969,0.128083,0.132771,5.76377e-05,0.127372,0.0120403,0.751399,0.250097,0.370301,0.180958,0.695935,0.27143,0.822417,0.559202,0.218021,0.656209,0.821876,0.192915,0.356176,0.792211,0.628448,0.541874,0.965302,0.252639,0.0449184,0.335001,0.959652,0.25015,0.500901,0.435925,0.113673,0.403964,0.503925,0.411672,0.0377879,0.56883,0.845484,0.180236,0.0562365,0.298608,0.519461,0.485865,0.146981,0.579545,0.612366,0.906762,0.25023,0.453672,0.589814,0.499415,0.832868,0.301387,0.568967,0.35307,0.189311,0.76733,0.0838068,0.15855,0.297877,0.759096,0.35526,0.391035,0.200959,0.302408,0.325965,0.0670119,0.91801,0.678123,0.807748,0.985582,0.116482,0.999574,0.272521,0.675658,0.0466495,0.416372,0.732799,0.726388,0.219659,0.259253,0.623822,0.0589188,0.16406,0.365977,0.422459,0.5699,0.833886,0.702578,0.935525,0.553186,0.688683,0.425088,0.366963,0.236539,0.0683796,0.496638,0.677515,0.637757,0.72788,0.752413,0.814636,0.896487,0.0832506,0.0508778,0.495443,0.440644,0.886379,0.643016,0.52225,0.0914499,0.563569,0.0960511,0.340699,0.211844,0.300208,0.856059,0.685076,0.575089,0.839505,0.794215,0.917966,0.0164095,0.778588,0.744323,0.0144181,0.154931,0.359756,0.044085,0.495743,0.629936,0.984345,0.644153,0.186044,0.38659,0.638661,0.696413,0.342922,0.584871,0.933167,0.432086,0.684002,0.202885,0.574322,0.820165,0.0172825,0.243564,0.419587,0.405592,0.166037,0.164836,0.165689,0.40223,0.52701,0.583624,0.255141,0.429273,0.9861,0.693308,0.86429,0.0416994,0.775396,0.464467,0.36447,0.616519,0.0208173,0.261078,0.898781,0.0840903,0.257442,0.535657,0.116243,0.740252,0.531705,0.843801,0.258831,0.69503,0.593633,0.750187,0.987904,0.437864,0.311778,0.509742,0.539528,0.453458,0.0923724,0.576332,0.46988,0.238469,0.142873,0.154378,0.884822,0.479971,0.0542834,0.0342562,0.0581707,0.100736,0.0917497,0.793863,0.359629,0.255479,0.364023,0.755796,0.761763,0.106887,0.0950305,0.231717,0.298952,0.201021,0.284673,0.0232683,0.200551,0.00387919,0.286767,0.465301,0.540707,0.334093,0.651946,0.20721,0.66201,0.0247337,0.278016,0.261318,0.322946,0.101719,0.185818,0.315478,0.483447,0.962588,0.937727,0.230464,0.379952,0.166889,0.585642,0.503803,0.901964,0.880578,0.688436,0.174401,0.136874,0.978875,0.078548,0.48743,0.996011,0.531658,0.884933,0.55163,0.198604,0.462432,0.173843,0.956268,0.636578,0.470171,0.833504,0.0601198,0.473183,0.398774,0.115652,0.468767,0.939885,0.913223,0.867094,0.8231,0.174107,0.385661,0.305401,0.149529,0.00730556,0.878759,0.0183563,0.674531,0.0559853,0.892785,0.421887,0.803227,0.936198,0.401752,0.713572,0.870039,0.227496,0.979166,0.22406,0.806072,0.805963,0.933993,0.21008,0.328312,0.561294,0.497221,0.849421,0.216854,0.730612,0.993698,0.93608,0.700657,0.271716,0.44241,0.410416,0.134249,0.898826,0.985715,0.4037,0.825211,0.929878,0.769464,0.841056,0.825938,0.0225325,0.143773,0.221978,0.252713,0.601203,0.224361,0.364536,0.132572,0.166903,0.771494,0.517648,0.503499,0.291753,0.918473,0.121998,0.769831,0.63355,0.588546,0.900723,0.640397,0.138628,0.172988,0.588249,0.562838,0.551426,0.176367,0.542341,0.59336,0.115134,0.318691,0.0321013,0.247562,0.425689,0.984597,0.676666,0.00212157,0.641188,0.201394,0.79358,0.775377,0.192288,0.987147,0.472378,0.953393,0.55889,0.789898,0.763478,0.743674,0.290655,0.858133,0.807053,0.414397,0.0507211,0.627732,0.00744653,0.254867,0.263714,0.0230457,0.304173,0.433558,0.378694,0.953244,0.475669,0.94051,0.772737,0.711369,0.610872,0.637419,0.64663,0.332788,0.146086,0.301129,0.371495,0.239065,0.760558,0.546052,0.503972,0.38333,0.632825,0.540708,0.740817,0.273943,0.909045,0.0250683,0.0206447,0.883402,0.635079,0.615824,0.524777,0.894248,0.814936,0.757741,0.431803,0.207411,0.073004,0.990784,0.405576,0.133455,0.645124,0.73119,0.756385,0.678365,0.43504,0.905713,0.760869,0.481988,0.866828,0.232433,0.523153,0.56541,0.729523,0.281244,0.741058,0.540442,0.880932,0.107485,0.62448,0.222092,0.980523,0.310657,0.351019,0.390774,0.634015,0.219919,0.34375,0.873564,0.222642,0.600973,0.761567,0.272096,0.942755,0.25275,0.789097,0.144153,0.880156,0.19577,0.79641,0.987138,0.660626,0.118851,0.468822,0.394488,0.458863,0.638899,0.841179,0.76121,0.501831,0.053133,0.0542179,0.366943,0.550601,0.345969,0.0774826,0.515206,0.610564,0.207796,0.359844,0.0269067,0.576299,0.136199,0.468807,0.989239,0.0595521,0.995778,0.70294,0.819141,0.903723,0.42326,0.372484,0.720901,0.407435,0.665196,0.752082,0.512419,0.118548,0.20777,0.0304998,0.125838,0.312232,0.275799,0.783584,0.134108,0.303514,0.632932,0.305443,0.0701941,0.385473,0.649729,0.259879,0.00870585,0.892039,0.502473,0.939892,0.209877,0.71756,0.556853,0.53037,0.831585,0.272527,0.176799,0.671909,0.730031,0.997502,0.895859,0.986113,0.271191,0.744125,0.544049,0.549224,0.0170409,0.483871,0.0172018,0.0674917,0.653468,0.351993,0.486409,0.724491,0.520003,0.395768,0.669022,0.448029,0.0961354,0.536441,0.0184616,0.213246,0.801795,0.163023,0.923267,0.985802,0.223803,0.167337,0.390218,0.831997,0.585176,0.560879,0.900902,0.362123,0.15188,0.109934,0.00505167,0.871201,0.425203,0.378062,0.509195,0.83736,0.000829279,0.185842,0.598787,0.0133646,0.512433,0.688519,0.262351,0.52856,0.0445196,0.650905,0.443837,0.981756,0.464512,0.380593,0.642249,0.314461,0.904278,0.698251,0.923448,0.686755,0.86705,0.301845,0.0525516,0.252111,0.568726,0.578028,0.748248,0.303997,0.107468,0.623916,0.802559,0.626498,0.560147,0.53396,0.798997,0.346916,0.670406,0.329435,0.0473108,0.456494,0.935894,0.546342,0.532016,0.40306,0.236699,0.474806,0.268191,0.309948,0.806433,0.484556,0.202097,0.598922,0.107992,0.991159,0.317525,0.84782,0.86753,0.538588,0.0360145,0.227802,0.0334421,0.478537,0.0157154,0.211932,0.488607,0.772097,0.436537,0.707603,0.719537,0.328085,0.562584,0.705786,0.810925,0.790824,0.238515,0.860685,0.411681,0.678109,0.695567,0.423035,0.489344,0.377456,0.634905,0.312884,0.437307,0.243433,0.260487,0.0293663,0.750341,0.0266429,0.177852,0.385681,0.187829,0.750277,0.0745052,0.15743,0.00294465,0.0554774,0.175776,0.697363,0.212296,0.177702,0.760011,0.6481,0.116441,0.691461,0.389812,0.379937,0.962767,0.760497,0.0746237,0.960672,0.424433,0.605335,0.277127,0.924778,0.140194,0.212106,0.22952,0.381484,0.821148,0.592854,0.308327,0.462219,0.270333,0.24061,0.791648,0.913737,0.0507636,0.25555,0.0306644,0.324274,0.659095,0.659479,0.875337,0.802555,0.841745,0.0969421,0.492832,0.216891,0.487235,0.617767,0.37688,0.423178,0.0532147,0.367775,0.312523,0.971434,0.0632707,0.844169,0.644092,0.32075,0.939681,0.137717,0.446278,0.392224,0.136913,0.882642,0.926905,0.752503,0.0373751,0.940582,0.184392,0.3938,0.285097,0.109787,0.300923,0.532166,0.43212,0.0318289,0.891156,0.36207,0.132683,0.832642,0.816902,0.922333,0.506665,0.453169,0.964305,0.186239,0.26805,0.467657,0.969158,0.513447,0.502348,0.590049,0.621197,0.615752,0.421307,0.590253,0.586357,0.649121,0.825306,0.360664,0.00802159,0.433826,0.755897,0.17899,0.115117,0.26984,0.170416,0.765324,0.769136,0.553514,0.576493,0.211062,0.331748,0.0422615,0.941604,0.600276,0.684748,0.955806,0.817771,0.967264,0.425743,0.479993,0.0328283,0.563617,0.867244,0.0176226,|0.900006,0.0525113,0.491293,0.275354,0.742472,0.567798,0.73493,0.945821,0.188685,0.319447,0.484416,0.404205,0.170015,0.522792,0.824884,0.0143133,0.938439,0.0936701,0.312154,0.58578,0.146216,0.260859,0.482213,0.267744,0.726289,0.375884,0.1397,0.788228,0.510316,0.667565,0.960284,0.774044,0.586702,0.666767,0.785529,0.879851,0.316648,0.480593,0.725958,0.494667,0.128208,0.890207,0.0606037,0.76664,0.655931,0.213009,0.54419,0.538601,0.967122,0.228683,0.986666,0.502624,0.738214,0.514275,0.551318,0.435289,0.0163042,0.62412,0.326272,0.537704,0.579175,0.180244,0.242317,0.242751,0.116057,0.0477828,0.839446,0.474997,0.210826,0.073009,0.593611,0.525662,0.205487,0.397701,0.293338,0.895781,0.0124925,0.585469,0.0278345,0.353636,0.730126,0.0386285,0.0771954,0.0818815,0.913638,0.415216,0.744256,0.0640982,0.760492,0.266965,0.885654,0.0575437,0.43351,0.58978,0.7422,0.59883,0.652943,0.541019,0.147209,0.435019,0.424739,0.750754,0.372776,0.478045,0.187716,0.53003,0.343047,0.548774,0.177827,0.55447,0.203258,0.230725,0.493079,0.0513024,0.0573799,0.0228661,0.624454,0.189314,0.0260257,0.55461,0.835355,0.853511,0.430965,0.0633699,0.678935,0.775524,0.660821,0.819892,0.464805,0.430736,0.0519499,0.279172,0.00265783,0.723883,0.849561,0.655141,0.239988,0.980009,0.580142,0.130806,0.676097,0.173887,0.977548,0.435976,0.309648,0.727157,0.901841,0.262173,0.728462,0.550229,0.588141,0.789847,0.332256,0.377449,0.351531,0.415958,0.461396,0.398194,0.210706,0.00596291,0.898967,0.647418,0.595864,0.949896,0.578994,0.746812,0.0563006,0.124292,0.0383113,0.072567,0.944933,0.140758,0.826037,0.305591,0.665695,0.068646,0.701286,0.570493,0.846482,0.79333,0.592999,0.780761,0.533788,0.546189,0.435288,0.957426,0.560415,0.471357,0.166469,0.395217,0.487821,0.0611944,0.411167,0.0971072,0.70991,0.567522,0.945422,0.815513,0.997083,0.262827,0.905306,0.766081,0.386679,0.361776,0.106778,0.733479,0.167464,0.273678,0.948071,0.683363,0.5811,0.46375,0.141227,0.212637,0.710747,0.0522787,0.185448,0.20211,0.701932,0.198685,0.0530167,0.939017,0.856902,0.497851,0.986531,0.534053,0.0317893,0.105014,0.824619,0.298352,0.153435,0.00638413,0.293483,0.730692,0.259262,0.588507,0.887351,0.28254,0.137779,0.761751,0.101635,0.88275,0.794611,0.124921,0.838884,0.10011,0.238221,0.91532,0.110766,0.151309,0.723153,0.89918,0.987557,0.622767,0.942797,0.120151,0.221964,0.628873,0.94711,0.0844921,0.236953,0.578574,0.644971,0.742249,0.650923,0.40659,0.951461,0.480247,0.959767,0.278744,0.27817,0.26915,0.0414371,0.114998,0.655322,0.597896,0.608222,0.757958,0.678266,0.0760876,0.760534,0.0972009,0.104606,0.806545,0.458381,0.947053,0.646085,0.00643939,0.809828,0.243999,0.870252,0.103048,0.769814,0.589871,0.294573,0.702232,0.562965,0.420284,0.645181,0.564204,0.179125,0.715112,0.174238,0.522798,0.107373,0.919399,0.203241,0.237998,0.0748101,0.614205,0.323052,0.850345,0.499942,0.366652,0.484303,0.0907563,0.853113,0.977445,0.339105,0.059068,0.284125,0.645289,0.198289,0.69552,0.251881,0.133017,0.870988,0.391371,0.684141,0.260869,0.142486,0.808459,0.985676,0.309545,0.803885,0.471673,0.237133,0.275957,0.978276,0.84862,0.505342,0.109076,0.58946,0.513992,0.181821,0.410754,0.133959,0.41588,0.498278,0.297071,0.0816754,0.339945,0.173078,0.434819,0.577873,0.439868,0.656538,0.987238,0.757838,0.308594,0.225411,0.395002,0.738614,0.270313,0.824473,0.722705,0.759603,0.344338,0.733271,0.354586,0.48915,0.165533,0.875089,0.867582,0.907781,0.773392,0.0881796,0.601952,0.271128,0.446059,0.752329,0.410688,0.376956,0.546829,0.924327,0.917853,0.379202,0.408547,0.837364,0.602315,0.398812,0.803225,0.706241,0.00346327,0.704529,0.0895647,0.276424,0.307919,0.986021,0.210067,0.896583,0.205873,0.333605,0.995432,0.640901,0.324791,0.705125,0.654884,0.422319,0.965112,0.15586,0.273997,0.196671,0.896333,0.560009,0.821261,0.221404,0.857338,0.739981,0.95688,0.11098,0.531613,0.597239,0.776554,0.449291,0.0458536,0.355595,0.661062,0.944274,0.448518,0.0635113,0.833392,0.934087,0.252578,0.699914,0.0131052,0.159783,0.836949,0.566616,0.950829,0.875721,0.149059,0.69171,0.0684184,0.0642455,0.867275,0.768862,0.928234,0.977383,0.281127,0.0919417,0.545183,0.27525,0.368839,0.681757,0.67176,0.898395,0.889317,0.617627,0.488513,0.514106,0.185988,0.900099,0.928062,0.528916,0.3678,0.62294,0.184392,0.698417,0.58823,0.011092,0.214706,0.583289,0.932808,0.186206,0.665251,0.341019,0.0646215,0.237667,0.103292,0.149933,0.807815,0.282507,0.715195,0.895186,0.872669,0.107998,0.906653,0.0369381,0.489149,0.0949981,0.259941,0.999938,0.339059,0.530955,0.180219,0.81811,0.471462,0.515998,0.0980924,0.786514,0.895039,0.528143,0.996055,0.574773,0.999492,0.222061,0.135861,0.916709,0.435645,0.0980407,0.456985,0.980382,0.174792,0.367565,0.112163,0.347105,0.782082,0.402054,0.477545,0.0130206,0.965879,0.145359,0.537292,0.908428,0.842602,0.241296,0.861257,0.249002,0.236883,0.337045,0.0932817,0.910101,0.626054,0.90396,0.920008,0.393435,0.538938,0.253437,0.611207,0.00146246,0.442028,0.385722,0.739053,0.221174,0.141733,0.133906,0.513929,0.253664,0.977425,0.483197,0.900664,0.25704,0.137494,0.994392,0.692112,0.694101,0.849037,0.804087,0.824598,0.759339,0.426316,0.921548,0.840073,0.660713,0.803156,0.773465,0.820041,0.898665,0.27406,0.487438,0.937754,0.675275,0.507913,0.433598,0.75845,0.208645,0.323315,0.993104,0.459353,0.0878801,0.52474,0.835415,0.738771,0.78166,0.541318,0.808554,0.192439,0.793665,0.554683,0.23816,0.72833,0.571247,0.977126,0.257846,0.192795,0.835638,0.005153,0.055945,0.68334,0.235606,0.823423,0.438016,0.110145,0.863499,0.660033,0.91909,0.357165,0.245082,0.456957,0.469028,0.558657,0.418044,0.276637,0.0646343,0.531683,0.447237,0.504997,0.115778,0.0475954,0.260069,0.970601,0.447109,0.26504,0.3425,0.194831,0.70803,0.332191,0.861548,0.360974,0.644034,0.302576,0.339414,0.864375,0.909044,0.490836,0.810436,0.891167,0.32165,0.30828,0.68849,0.739573,0.0129451,0.325826,0.770714,0.860929,0.312186,0.00395209,0.800859,0.0224321,0.785108,0.574565,0.585289,0.0288115,0.0423985,0.918903,0.861844,0.708707,0.586828,0.794084,0.846672,0.675093,0.545477,0.888556,0.585509,0.128201,0.985262,0.455772,0.381665,0.344016,0.724954,0.413237,0.833643,0.56634,0.333526,0.888291,0.972689,0.425149,0.628607,0.639744,0.61919,0.379949,0.714415,0.0283465,0.746653,0.465585,0.437613,0.866397,0.0123556,0.865417,0.371319,0.792984,0.10685,0.684471,0.471081,0.603582,0.0206859,0.0618473,0.0905688,0.85009,0.274212,0.694094,0.696129,0.210922,0.564497,0.0357268,0.0524409,0.259663,0.00796467,0.976992,0.143833,0.534267,0.717085,0.162404,0.413455,0.501818,0.860474,0.883591,0.547275,0.884919,0.249323,0.447409,0.196521,0.0141075,0.495965,0.308466,0.602359,0.748957,0.562045,0.28406,0.638438,0.53819,0.462574,0.226712,0.351663,0.787478,0.992021,0.0328854,0.653715,0.18738,0.344184,0.718629,0.86991,0.611527,0.016548,0.945236,0.68199,0.494954,0.0302877,0.0266252,0.283112,0.573062,0.499569,0.576622,0.235923,0.387768,0.669728,0.132541,0.616829,0.0443813,0.934274,0.564603,0.687981,0.920738,0.451964,0.500089,0.559105,0.477155,0.200182,0.242682,0.85923,0.520328,0.77048,0.727183,0.909115,0.907036,0.776376,0.0143128,0.740122,0.961648,0.955411,0.942254,0.724643,0.9026,0.61903,0.636749,0.40847,0.0965233,0.0782632,0.94382,0.42512,0.325793,0.499083,0.55537,0.361773,0.895945,0.543425,0.921193,0.392554,0.17871,0.857615,0.166907,0.0532793,0.356615,0.0190963,0.868656,0.320661,0.123537,0.572612,0.185463,0.637943,0.859295,0.795567,0.545648,0.147986,0.0934013,0.462631,0.607528,0.36553,0.0140725,0.423596,0.672102,0.173005,0.729884,0.894646,0.486424,0.171849,0.257232,0.177454,0.768904,0.290663,0.62081,0.0570552,0.0344598,0.3594,0.283795,0.931622,0.728897,0.516279,0.883051,0.959717,0.542359,0.835487,0.206191,0.148292,0.203535,0.968906,0.0627614,0.0430695,0.687033,0.158204,0.768664,0.197678,0.963086,0.986729,0.949762,0.0240141,0.888131,0.479885,0.171439,0.0558883,0.965287,0.334575,0.0564894,0.261446,0.928022,0.957389,0.106412,0.156824,0.690326,0.713087,0.459724,0.23991,0.254901,0.854245,0.641573,0.306832,0.912353,0.37925,0.851276,0.543248,0.114946,0.0566395,0.835883,0.316263,0.80383,0.534181,0.548744,0.438705,0.337927,0.509991,0.950631,0.874356,0.516526,0.832391,0.358275,0.205226,0.760232,0.237062,0.764521,0.995915,0.977534,0.0221723,0.706642,0.517356,0.795744,0.0191813,0.642563,0.0632241,0.730193,0.822209,0.182093,0.207569,0.926883,0.952262,0.406671,0.920226,0.169888,0.000443101,0.295339,0.0156809,0.792975,0.746616,0.476363,0.233695,0.206693,0.357955,0.333548,0.466074,0.770121,0.878107,0.593179,0.615253,0.293773,0.212949,0.93559,0.189816,0.649933,0.888614,0.988466,0.414409,0.591364,0.441057,0.395397,0.700752,0.686061,0.00322634,0.91329,0.161872,0.913832,0.753376,0.255617,0.865515,0.229114,0.561775,0.237627,0.019859,0.659802,0.158685,0.796242,0.641891,0.633558,0.0135684,0.356183,0.862513,0.0496196,0.0990654,0.202307,0.23783,0.566538,0.930538,0.325931,0.00467545,0.700323,0.750713,0.925061,0.39834,0.927137,0.823581,0.850439,0.70928,0.459411,0.0660217,0.425367,0.802939,0.549124,0.971445,0.979671,0.361563,0.539739,0.12697,0.486046,0.565525,0.238817,0.906818,0.40818,0.755507,0.981668,0.600565,0.418482,|0.528222,0.671012,0.0918706,0.893325,0.427026,0.649504,0.931543,0.395926,0.396869,0.240692,0.358005,0.901511,0.471837,0.142254,0.613245,0.333409,0.824735,0.421572,0.232216,0.135989,0.0139449,0.724832,0.475299,0.997023,0.205819,0.914281,0.943643,0.755631,0.720828,0.850235,0.71529,0.850532,0.909649,0.991332,0.33267,0.66504,0.669498,0.188288,0.930009,0.888297,0.146954,0.376991,0.0342013,0.00457472,0.845116,0.515251,0.897354,0.879503,0.692299,0.843982,0.510731,0.1498,0.497428,0.331487,0.458449,0.435567,0.216723,0.0428683,0.0797875,0.415218,0.579248,0.166144,0.606193,0.656525,0.311504,0.340938,0.126594,0.125244,0.368987,0.424986,0.156748,0.258143,0.53944,0.662956,0.956872,0.900583,0.147609,0.811791,0.388919,0.550608,0.344834,0.333046,0.419823,0.506784,0.478218,0.524125,0.847113,0.522298,0.409421,0.0932787,0.879487,0.387384,0.48058,0.312759,0.432408,0.286354,0.366822,0.0392082,0.0478305,0.848884,0.285391,0.119072,0.333868,0.0662256,0.353047,0.836829,0.580987,0.302798,0.674388,0.743543,0.999636,0.410452,0.549857,0.398145,0.269822,0.683629,0.780656,0.278324,0.864711,0.607698,0.858221,0.801619,0.242356,0.921499,0.963867,0.248608,0.993419,0.966505,0.152431,0.370441,0.556374,0.330113,0.754772,0.0686683,0.82497,0.681673,0.812357,0.114576,0.539868,0.565145,0.874162,0.878725,0.204106,0.63572,0.517403,0.337712,0.712057,0.738384,0.314327,0.697599,0.118414,0.991366,0.0868133,0.041779,0.212372,0.542379,0.493998,0.360336,0.665151,0.999875,0.00544566,0.0366876,0.557699,0.626811,0.0978782,0.189425,0.0817001,0.559532,0.362825,0.927594,0.235994,0.785162,0.442724,0.24712,0.0398174,0.465222,0.0187968,0.967563,0.562342,0.176817,0.502686,0.248413,0.584403,0.450295,0.692696,0.137871,0.659464,0.669296,0.230483,0.703028,0.019763,0.862308,0.572751,0.0445128,0.0391207,0.609587,0.290524,0.288986,0.914943,0.285643,0.0975652,0.15694,0.424778,0.0980476,0.727844,0.938596,0.81486,0.235743,0.923666,0.936176,0.266133,0.937473,0.0917206,0.626812,0.728438,0.449048,0.488067,0.541942,0.908408,0.644617,0.36584,0.723359,0.134686,0.874965,0.982786,0.972663,0.593661,0.45128,0.258354,0.141682,0.805716,0.627094,0.626029,0.641394,0.609934,0.978823,0.508305,0.624836,0.314169,0.317079,0.718357,0.0363941,0.711381,0.781376,0.310637,0.232792,0.0993123,0.664927,0.599594,0.52121,0.989439,0.689341,0.513382,0.0525728,0.0318461,0.926525,0.60514,0.115805,0.26715,0.241551,0.478766,0.869998,0.164892,0.621918,0.270017,0.646528,0.152835,0.601541,0.504872,0.497324,0.952992,0.616413,0.941457,0.612931,0.66829,0.368841,0.67713,0.838616,0.0344179,0.579339,0.178985,0.65118,0.221135,0.898013,0.591564,0.747928,0.9013,0.370987,0.171212,0.197867,0.646287,0.361043,0.367093,0.0681925,0.390846,0.240405,0.189949,0.294323,0.830842,0.517115,0.0631198,0.0429149,0.549389,0.353058,0.796957,0.501318,0.998526,0.00610435,0.868898,0.800934,0.773605,0.279507,0.557923,0.335758,0.801434,0.982952,0.0331002,0.257026,0.6727,0.526785,0.624334,0.0908393,0.971053,0.0615782,0.143039,0.70147,0.443994,0.915873,0.116034,0.638265,0.781026,0.983223,0.809836,0.0195351,0.323608,0.14762,0.630016,0.296195,0.896616,0.0254025,0.577163,0.741358,0.0648707,0.295754,0.104764,0.284573,0.974335,0.611318,0.429616,0.757267,0.0421673,0.543248,0.352191,0.202303,0.294365,0.954687,0.903911,0.934246,0.74417,0.137077,0.0869169,0.71633,0.378512,0.325694,0.899085,0.0512311,0.30461,0.782065,0.638298,0.934208,0.223314,0.438079,0.992607,0.0596318,0.00797343,0.726722,0.470358,0.512232,0.148294,0.966639,0.00813973,0.642329,0.486688,0.234246,0.399385,0.652233,0.399931,0.787896,0.520737,0.465134,0.956796,0.0283773,0.729722,0.457138,0.233661,0.915992,0.482008,0.562499,0.908798,0.97158,0.817445,0.525524,0.954176,0.433066,0.0352393,0.141386,0.0768638,0.39156,0.563184,0.169809,0.818455,0.684637,0.958543,0.00319618,0.641731,0.141914,0.970234,0.0819777,0.975814,0.534872,0.253947,0.409828,0.626129,0.567165,0.131602,0.915964,0.432301,0.855313,0.141858,0.979259,0.142053,0.144026,0.132284,0.946539,0.485536,0.161459,0.759194,0.458394,0.53073,0.197278,0.886421,0.12914,0.047924,0.588651,0.709956,0.0975984,0.808558,0.631232,0.323429,0.0789205,0.0769899,0.0923747,0.264547,0.467041,0.183954,0.131926,0.686637,0.0974327,0.0810328,0.465108,0.614165,0.811414,0.89633,0.209773,0.815097,0.716604,0.614862,0.476861,0.618019,0.155731,0.997609,0.818125,0.0480608,0.609937,0.518367,0.652749,0.342722,0.613458,0.266744,0.799218,0.728577,0.866424,0.866971,0.775943,0.770546,0.544302,0.467411,0.741132,0.158299,0.689804,0.289221,0.456407,0.14418,0.111785,0.471531,0.928292,0.414511,0.682872,0.110007,0.832975,0.644091,0.992246,0.772307,0.232872,0.511745,0.324416,0.625118,0.429063,0.497971,0.0802962,0.713441,0.85865,0.933428,0.00755364,0.0872983,0.291676,0.912458,0.554812,0.737764,0.747008,0.394541,0.584771,0.983105,0.618467,0.846056,0.0772901,0.972619,0.319743,0.406612,0.767001,0.983892,0.0630088,0.559278,0.635585,0.869574,0.807653,0.639242,0.864122,0.644731,0.427622,0.427963,0.0377067,0.575453,0.917718,0.195673,0.756717,0.323614,0.636678,0.370192,0.714717,0.184587,0.656248,0.795201,0.925247,0.798909,0.518173,0.0127195,0.280008,0.0490808,0.347969,0.951231,0.701077,0.850843,0.78512,0.033235,0.296419,0.945546,0.560614,0.87212,0.697472,0.908399,0.678209,0.895515,0.402473,0.526782,0.117399,0.0585979,0.506093,0.279173,0.44011,0.771274,0.544926,0.614911,0.528445,0.72709,0.667631,0.196225,0.170248,0.535084,0.863809,0.519232,0.0435874,0.142706,0.212023,0.844551,0.795345,0.941815,0.104084,0.605935,0.519433,0.597385,0.376966,0.502002,0.394871,0.474533,0.612514,0.178142,0.615726,0.258832,0.099331,0.13595,0.603968,0.978479,0.215408,0.895015,0.839529,0.106656,0.432123,0.291531,0.222685,0.586084,0.481112,0.596729,0.069699,0.858082,0.458859,0.94205,0.366871,0.0738655,0.544208,0.165419,0.944591,0.787445,0.127404,0.246591,0.798765,0.84745,0.531172,0.524282,0.691466,0.845236,0.714293,0.650656,0.792391,0.715442,0.484082,0.345298,0.236367,0.687986,0.202754,0.862075,0.311271,0.552896,0.27232,0.274368,0.207064,0.557902,0.929328,0.28415,0.5368,0.887707,0.565279,0.241576,0.389476,0.329505,0.233194,0.880562,0.315877,0.895842,0.0579661,0.142174,0.737742,0.0990313,0.286931,0.221851,0.779651,0.722353,0.677703,0.180963,0.625926,0.92606,0.213028,0.625846,0.721225,0.71698,0.913367,0.893932,0.161144,0.261711,0.363262,0.457667,0.858306,0.872387,0.380048,0.424946,0.422246,0.331652,0.107114,0.297723,0.247449,0.701316,0.350322,0.149636,0.0594653,0.702969,0.395106,0.183249,0.31495,0.0190941,0.933211,0.376522,0.928833,0.737782,0.811657,0.133551,0.612166,0.774814,0.214988,0.0430177,0.163091,0.791883,0.454183,0.910292,0.628628,0.55706,0.550221,0.118612,0.813809,0.599997,0.492619,0.271106,0.919516,0.874029,0.37878,0.22194,0.209608,0.70344,0.250242,0.815612,0.876928,0.52795,0.225916,0.0638524,0.332474,0.766493,0.516458,0.296465,0.0820959,0.374866,0.823026,0.256343,0.103895,0.891139,0.031031,0.655863,0.732147,0.0347237,0.293327,0.424661,0.138284,0.299471,0.452884,0.337708,0.770347,0.921408,0.534128,0.332274,0.713749,0.900764,0.832125,0.134667,0.0569523,0.548703,0.963394,0.470055,0.157544,0.152771,0.394561,0.509287,0.617475,0.303757,0.0540558,0.722035,0.828962,0.345938,0.800289,0.748723,0.86857,0.0055598,0.819522,0.179201,0.750136,0.85849,0.59924,0.400519,0.8114,0.702444,0.233406,0.37469,0.58568,0.874768,0.0247502,0.564744,0.951594,0.00401378,0.168136,0.546475,0.098733,0.728664,0.563653,0.0327308,0.49242,0.914866,0.73183,0.370391,0.386884,0.589145,0.342579,0.118773,0.894276,0.495239,0.0594587,0.5049,0.743505,0.764587,0.832597,0.876862,0.900728,0.791407,0.102766,0.164147,0.554529,0.449837,0.0598369,0.204936,0.885612,0.881531,0.386478,0.155248,0.0974182,0.725105,0.19475,0.36547,0.138412,0.474729,0.635725,0.508939,0.067443,0.592744,0.00935102,0.424184,0.101002,0.510233,0.6129,0.717104,0.814339,0.0772308,0.295764,0.0365101,0.828358,0.79826,0.182122,0.532682,0.0485653,0.326148,0.544661,0.806845,0.816189,0.443298,0.831292,0.222825,0.84036,0.129335,0.87894,0.116537,0.748472,0.135661,0.661301,0.0812806,0.885868,0.397695,0.76393,0.306591,0.822148,0.632696,0.0964366,0.33122,0.335938,0.103592,0.985795,0.200755,0.281592,0.0653431,0.101766,0.646663,0.316689,0.889592,0.40467,0.387989,0.46972,0.856402,0.358721,0.682552,0.876725,0.476671,0.92035,0.17519,0.865075,0.61513,0.66816,0.150058,0.211951,0.875394,0.598258,0.378664,0.31136,0.955213,0.541293,0.134957,0.881433,0.848473,0.51799,0.470908,0.519715,0.414979,0.939433,0.117534,0.181491,0.833148,0.257359,0.331887,0.320504,0.537668,0.57536,0.0933917,0.304986,0.612285,0.359949,0.160861,0.0598224,0.434143,0.626977,0.625347,0.380135,0.778781,0.463473,0.161586,0.504268,0.443291,0.489415,0.622853,0.4328,0.866106,0.904721,0.671806,0.334252,0.956393,0.927645,0.364811,0.0321659,0.747551,0.972368,0.373341,0.578343,0.346756,0.205865,0.591697,0.17305,0.676016,0.252387,0.753683,0.528267,0.599041,0.332704,0.761192,0.936905,0.836589,0.585852,0.463351,0.996046,0.226023,0.613195,0.276187,0.326485,0.11126,0.246639,0.987792,0.781716,0.942025,0.906995,0.8285,0.168073,0.988993,0.397509,0.806323,0.985796,0.368338,0.594534,0.681596,0.113544,|0.909842,0.169742,0.373303,0.669894,0.532583,0.684353,0.267928,0.551129,0.891034,0.731982,0.886259,0.985202,0.24839,0.111028,0.567636,0.173921,0.781042,0.432301,0.373275,0.736448,0.357534,0.73547,0.47381,0.254285,0.152607,0.885127,0.421375,0.46742,0.767899,0.425975,0.586952,0.372084,0.928462,0.719243,0.528912,0.285577,0.0364841,0.822132,0.419772,0.684903,0.204523,0.440166,0.634897,0.725772,0.213956,0.426208,0.620662,0.471665,0.940144,0.591749,0.301834,0.938648,0.0158719,0.628622,0.0875746,0.907681,0.377838,0.422067,0.244936,0.752478,0.44527,0.987092,0.992397,0.925968,0.409515,0.733676,0.562071,0.733341,0.8397,0.571173,0.622671,0.163004,0.263495,0.376752,0.610629,0.921308,0.96845,0.669249,0.280638,0.649728,0.338518,0.395084,0.031706,0.616433,0.326023,0.668837,0.275437,0.0350371,0.113002,0.544205,0.110431,0.511459,0.629088,0.32967,0.588573,0.0756325,0.100197,0.929047,0.390437,0.978698,0.337302,0.109429,0.431234,0.479308,0.76992,0.045252,0.0394845,0.0435697,0.395221,0.536558,0.176253,0.431913,0.668395,0.706094,0.866443,0.0700008,0.159003,0.395159,0.953614,0.0862495,0.18671,0.0257089,0.161239,0.483504,0.276425,0.754944,0.98041,0.236095,0.834772,0.0251048,0.994434,0.781457,0.933059,0.277904,0.950732,0.181773,0.194806,0.400999,0.6169,0.216579,0.0301555,0.679175,0.517281,0.0133358,0.671203,0.0169294,0.929978,0.437335,0.326487,0.292023,0.183535,0.810316,0.929874,0.231956,0.900908,0.942412,0.221429,0.90942,0.364617,0.964247,0.146372,0.520078,0.359172,0.405888,0.949694,0.850336,0.271095,0.757623,0.356382,0.764556,0.547204,0.716385,0.731953,0.279014,0.244778,0.875611,0.132293,0.842693,0.0808136,0.145638,0.664278,0.55035,0.202873,0.317944,0.360588,0.0528929,0.103767,0.630601,0.179315,0.487926,0.837151,0.68828,0.697234,0.713104,0.148312,0.830774,0.802218,0.413666,0.616555,0.479836,0.0669727,0.0220774,0.358942,0.90361,0.738594,0.800794,0.945637,0.221214,0.246762,0.962798,0.0998816,0.795146,0.554154,0.367958,0.493021,0.479777,0.144256,0.256186,0.434404,0.567111,0.557302,0.17343,0.499919,0.142911,0.927487,0.670703,0.908638,0.304804,0.298936,0.0334941,0.983566,0.344164,0.316353,0.521845,0.592158,0.808367,0.322438,0.374174,0.218303,0.183773,0.322372,0.738187,0.704846,0.42452,0.125419,0.36281,0.482323,0.370806,0.650324,0.643814,0.169444,0.0272838,0.845259,0.363747,0.145418,0.267783,0.307673,0.193546,0.610966,0.455454,0.644911,0.875474,0.487929,0.230523,0.339501,0.716966,0.379511,0.749255,0.0520709,0.201606,0.301115,0.146027,0.674298,0.0805112,0.239595,0.0695721,0.0599587,0.849549,0.393353,0.565728,0.282342,0.417881,0.548928,0.661369,0.715785,0.7346,0.286978,0.0212114,0.421455,0.078277,0.993153,0.404077,0.2346,0.547652,0.199987,0.670595,0.384871,0.530387,0.8047,0.0603516,0.0820935,0.357733,0.325977,0.811374,0.919601,0.0828488,0.877125,0.458313,0.204198,0.305079,0.0959712,0.852509,0.343691,0.674121,0.185613,0.146693,0.768393,0.116845,0.44121,0.00504589,0.994816,0.550112,0.72043,0.465214,0.0827443,0.00449646,0.784703,0.75024,0.040171,0.274076,0.123112,0.137448,0.662302,0.0529903,0.534696,0.665968,0.860073,0.0107387,0.72686,0.150714,0.517871,0.797202,0.223171,0.755363,0.012867,0.234937,0.13039,0.75798,0.473557,0.114471,0.192246,0.928038,0.475764,0.914472,0.452393,0.563372,0.223341,0.33105,0.80549,0.712016,0.63366,0.28178,0.528026,0.377459,0.546078,0.415635,0.185666,0.453892,0.535263,0.329338,0.707405,0.891336,0.915535,0.512022,0.701796,0.0966871,0.171826,0.548457,0.326346,0.170928,0.418948,0.0199831,0.65822,0.769159,0.0198932,0.41977,0.147825,0.747758,0.182138,0.933459,0.971791,0.497587,0.978506,0.544462,0.469537,0.365085,0.578101,0.425527,0.28004,0.114533,0.197384,0.487749,0.157667,0.881702,0.655103,0.477102,0.810282,0.743663,0.811503,0.479171,0.0955765,0.70944,0.0246193,0.964403,0.974553,0.526604,0.277673,0.0837537,0.646584,0.997015,0.919597,0.0473807,0.507401,0.787965,0.670594,0.63563,0.768031,0.869143,0.333654,0.365932,0.142196,0.226875,0.565219,0.29492,0.238673,0.438456,0.977839,0.904926,0.675456,0.929906,0.468469,0.201432,0.29048,0.904645,0.463908,0.151089,0.21442,0.929235,0.82563,0.785597,0.156004,0.148549,0.131393,0.145989,0.789967,0.980546,0.967324,0.51668,0.249782,0.581177,0.00995803,0.317028,0.122795,0.238186,0.711617,0.637022,0.705749,0.441893,0.338379,0.317568,0.745378,0.818382,0.0863208,0.325921,0.705949,0.66655,0.713536,0.731266,0.693244,0.768513,0.0404875,0.194099,0.629079,0.0749514,0.180564,0.981781,0.671245,0.927152,0.661905,0.991764,0.921273,0.431152,0.929905,0.174243,0.461682,0.654826,0.332139,0.781308,0.261788,0.729154,0.805027,0.891371,0.380348,0.992396,0.635767,0.338666,0.957446,0.706753,0.899629,0.197686,0.00531816,0.310959,0.897875,0.535551,0.776924,0.821288,0.212407,0.0428707,0.0437123,0.39818,0.799551,0.348486,0.156144,0.777437,0.630086,0.857071,0.391159,0.874374,0.848798,0.224146,0.755686,0.663734,0.986886,0.573385,0.783167,0.938141,0.078778,0.651402,0.28675,0.692955,0.237479,0.124698,0.369062,0.801744,0.0617195,0.19815,0.750078,0.946671,0.440656,0.580766,0.499754,0.885844,0.0427994,0.219228,0.962702,0.998677,0.255671,0.0509474,0.289021,0.649442,0.818516,0.770614,0.0982975,0.334716,0.0565457,0.529552,0.611317,0.663344,0.275221,0.306939,0.878748,0.780553,0.885154,0.480903,0.535145,0.0122578,0.886878,0.861598,0.125613,0.725872,0.948917,0.47515,0.140848,0.410603,0.768601,0.190489,0.334317,0.844193,0.871469,0.201575,0.266304,0.668545,0.546925,0.285093,0.405814,0.438813,0.469568,0.263222,0.543232,0.733238,0.959209,0.849632,0.201283,0.0205184,0.226818,0.192749,0.0322723,0.929495,0.743232,0.129101,0.348833,0.850429,0.715758,0.736,0.709038,0.0789671,0.346047,0.691887,0.574823,0.679649,0.183062,0.25321,0.0433232,0.927031,0.792859,0.989692,0.871622,0.493031,0.0284104,0.243727,0.452379,0.110513,0.756675,0.600167,0.14441,0.849175,0.89356,0.299064,0.86247,0.534836,0.112427,0.876655,0.875489,0.0528239,0.825386,0.326895,0.246907,0.372678,0.944988,0.277621,0.0176386,0.755309,0.423827,0.317767,0.849081,0.896909,0.783516,0.939115,0.117804,0.340915,0.342811,0.763283,0.813596,0.479729,0.699835,0.227829,0.101587,0.0614172,0.903155,0.644368,0.0105448,0.582697,0.723276,0.19141,0.570788,0.248345,0.335112,0.446508,0.337115,0.103714,0.576941,0.784044,0.882184,0.253441,0.938959,0.618217,0.446356,0.123153,0.39154,0.230023,0.511597,0.537619,0.47007,0.503358,0.697662,0.900497,0.0152176,0.150386,0.548164,0.294753,0.668674,0.392121,0.593704,0.127929,0.221425,0.113553,0.504895,0.655283,0.122318,0.26376,0.839407,0.803132,0.900813,0.802152,0.632073,0.917796,0.25688,0.13136,0.647035,0.926886,0.635929,0.551199,0.194854,0.37924,0.327278,0.718542,0.822862,0.379581,0.756876,0.0452681,0.412434,0.654642,0.415106,0.565449,0.252046,0.309551,0.972211,0.243174,0.115504,0.22118,0.125852,0.174611,0.505982,0.731088,0.929425,0.341121,0.337916,0.0975765,0.65643,0.120813,0.676526,0.930571,0.94928,0.474306,0.417197,0.159556,0.801619,0.112398,0.927782,0.634009,0.852683,0.816543,0.0495162,0.941875,0.639657,0.990666,0.0683285,0.708218,0.605187,0.191982,0.485756,0.0850607,0.627778,0.659158,0.366014,0.692788,0.208664,0.34698,0.0173464,0.935049,0.270989,0.0840866,0.729139,0.225947,0.419926,0.281398,0.54743,0.509344,0.280066,0.843042,0.383391,0.533654,0.712646,0.00510532,0.0432597,0.971531,0.846587,0.549133,0.210369,0.458619,0.326318,0.206308,0.934172,0.046156,0.240368,0.439019,0.452432,0.417385,0.169981,0.171115,0.314422,0.0277033,0.651706,0.453324,0.941276,0.68302,0.370292,0.911041,0.525005,0.130381,0.902697,0.523978,0.852535,0.391665,0.370532,0.471197,0.695288,0.973593,0.559614,0.414324,0.720348,0.365204,0.948207,0.827195,0.567225,0.512223,0.651509,0.00464338,0.632657,0.817459,0.0788137,0.400571,0.115516,0.435252,0.885537,0.316789,0.388361,0.86483,0.847819,0.26882,0.336454,0.574668,0.403537,0.584514,0.653805,0.229114,0.111518,0.962939,0.347401,0.872911,0.997922,0.165477,0.63594,0.071197,0.876883,0.0131798,0.532283,0.855398,0.0550823,0.0146862,0.187186,0.256105,0.825472,0.589641,0.58527,0.346536,0.460276,0.0748401,0.911318,0.363385,0.469037,0.358955,0.602248,0.740937,0.11017,0.0509619,0.781414,0.716796,0.655393,0.0317988,0.128206,0.443098,0.740332,0.495462,0.841429,0.189313,0.657675,0.27577,0.823739,0.263803,0.639883,0.778425,0.536722,0.944517,0.494468,0.619412,0.504309,0.0311035,0.0290321,0.101744,0.260244,0.566924,0.289358,0.245942,0.917598,0.401089,0.991863,0.599852,0.0937428,0.832205,0.255224,0.748087,0.150385,0.191023,0.360554,0.262359,0.904981,0.383499,0.291752,0.598718,0.814751,0.0993743,0.882791,0.602818,0.723884,0.97154,0.0156112,0.801284,0.410572,0.336624,0.238657,0.0356357,0.420698,0.389552,0.669566,0.258758,0.349833,0.439936,0.849547,0.222242,0.918733,0.491284,0.293359,0.358066,0.770845,0.849239,0.548719,0.130111,0.0965701,0.983903,0.0961268,0.681647,0.973397,0.767793,0.847049,0.0655369,0.0933871,0.242507,0.0823371,0.587774,0.0383266,0.0657153,0.624696,0.752331,0.347009,0.466097,0.0822999,0.423527,0.833678,0.254583,0.213109,0.154866,0.376861,0.624923,0.453031,0.793293,0.828429,0.529651,0.575207,0.0452765,0.101286,0.384616,0.979427,0.139868,0.993664,0.215833,0.904827,0.674199,0.843539,0.545528,|0.254649,0.0842271,0.850936,0.50605,0.851299,0.195584,0.289696,0.160141,0.278237,0.455547,0.419386,0.141298,0.90502,0.0247623,0.28904,0.792687,0.577069,0.263619,0.878515,0.316172,0.150457,0.321105,0.166095,0.905455,0.0346312,0.92855,0.355569,0.769578,0.923982,0.194468,0.365322,0.0278635,0.671043,0.115267,0.916857,0.287644,0.245392,0.587048,0.950847,0.111465,0.240947,0.655259,0.288659,0.548155,0.38383,0.840161,0.735068,0.878672,0.840342,0.295453,0.222926,0.458083,0.270489,0.380981,0.118484,0.322078,0.637134,0.435188,0.634521,0.494656,0.649212,0.149228,0.868795,0.834859,0.356346,0.347052,0.541344,0.724197,0.344777,0.397549,0.0822126,0.575745,0.515514,0.00798756,0.0344332,0.464596,0.603363,0.106888,0.986093,0.417604,0.983382,0.424256,0.297051,0.954699,0.737756,0.563165,0.152668,0.380893,0.888909,0.944662,0.427044,0.433718,0.799583,0.62114,0.941172,0.773055,0.450743,0.860118,0.377493,0.041392,0.983451,0.663295,0.75873,0.0591453,0.895227,0.164024,0.351953,0.0533723,0.288652,0.25704,0.14425,0.430936,0.933988,0.871211,0.240506,0.388346,0.958092,0.940796,0.865011,0.0851246,0.0385601,0.434265,0.700564,0.986006,0.210267,0.844752,0.62578,0.937908,0.275005,0.424793,0.407651,0.169684,0.707543,0.554208,0.0407364,0.736157,0.404797,0.450332,0.852626,0.719143,0.658815,0.502721,0.0931641,0.121715,0.166948,0.740516,0.768644,0.199465,0.159314,0.807257,0.477649,0.979818,0.522501,0.778794,0.335601,0.347432,0.663008,0.741876,0.99644,0.0289733,0.913382,0.991528,0.465504,0.0626373,0.795003,0.503913,0.680777,0.127653,0.508337,0.507568,0.611292,0.851708,0.824142,0.609907,0.588719,0.280076,0.821643,0.544045,0.851018,0.916239,0.515784,0.236281,0.767033,0.937766,0.402057,0.106872,0.139388,0.432069,0.782248,0.887892,0.915385,0.371741,0.234349,0.763776,0.177496,0.0143719,0.878465,0.566008,0.47963,0.322293,0.728901,0.756361,0.783158,0.0912682,0.565426,0.827843,0.910719,0.809917,0.270511,0.523336,0.794696,0.859667,0.228599,0.58347,0.678475,0.563586,0.417915,0.960806,0.185914,0.240606,0.799321,0.635497,0.478225,0.185688,0.00792378,0.445001,0.279042,0.0127323,0.549684,0.845551,0.81134,0.0277676,0.839898,0.521097,0.879521,0.528031,0.542086,0.929871,0.59742,0.38629,0.840463,0.416,0.284957,0.308441,0.918111,0.385665,0.81786,0.288984,0.0241328,0.15204,0.431814,0.751972,0.954436,0.384557,0.482864,0.472863,0.0433545,0.442116,0.254414,0.6592,0.353811,0.113943,0.305935,0.485332,0.0288338,0.143328,0.735021,0.289376,0.807135,0.0196952,0.509558,0.694524,0.831249,0.83336,0.467512,0.569198,0.259784,0.755834,0.651559,0.350374,0.907833,0.952146,0.194003,0.275381,0.816605,0.0870678,0.22824,0.181797,0.798618,0.0822366,0.185135,0.415667,0.733522,0.562508,0.594106,0.409057,0.790353,0.166249,0.642049,0.47586,0.512711,0.589477,0.642372,0.824417,0.383198,0.659447,0.466477,0.781547,0.517041,0.740542,0.981138,0.34348,0.201632,0.345041,0.232362,0.380294,0.40364,0.236938,0.731801,0.789779,0.85952,0.509978,0.0781658,0.958447,0.944633,0.98422,0.920707,0.744081,0.415768,0.0721664,0.121094,0.431221,0.108407,0.578158,0.40285,0.580339,0.175361,0.38859,0.410556,0.647663,0.56929,0.0891627,0.0543525,0.679274,0.0227742,0.268692,0.694489,0.216658,0.93096,0.392024,0.489665,0.182186,0.300969,0.139419,0.096226,0.979053,0.590466,0.662981,0.860719,0.643542,0.159069,0.750866,0.675539,0.439191,0.580145,0.105663,0.095296,0.0945658,0.627893,0.31123,0.263574,0.812214,0.960863,0.168512,0.0745456,0.622497,0.0138345,0.263633,0.184847,0.950339,0.490676,0.435263,0.674053,0.374164,0.876915,0.518952,0.0979039,0.562086,0.0229861,0.262429,0.903013,0.623535,0.075703,0.540092,0.186985,0.532318,0.00101745,0.572737,0.442309,0.17289,0.230259,0.148358,0.350661,0.367495,0.50936,0.847707,0.567791,0.702958,0.885012,0.309738,0.227517,0.255365,0.150842,0.470105,0.724761,0.362386,0.999782,0.577446,0.488998,0.0359527,0.352662,0.516504,0.0269081,0.583151,0.172846,0.801055,0.669997,0.168038,0.115084,0.690448,0.24918,0.427802,0.476631,0.951389,0.922556,0.0364441,0.684319,0.807677,0.427742,0.453007,0.133481,0.488161,0.961905,0.0728744,0.19173,0.386524,0.973793,0.314694,0.689855,0.027178,0.401213,0.429595,0.405996,0.643811,0.0591547,0.846924,0.629935,0.0601556,0.99705,0.125849,0.78271,0.362101,0.658658,0.138221,0.371741,0.346833,0.595103,0.538631,0.924365,0.479011,0.0425656,0.124056,0.72475,0.048451,0.889474,0.0622406,0.893725,0.468552,0.896068,0.612689,0.726441,0.254049,0.561033,0.130632,0.774303,0.0510878,0.462807,0.538123,0.838425,0.889059,0.563712,0.387254,0.0144562,0.835738,0.35202,0.52961,0.481801,0.508268,0.999856,0.930887,0.581402,0.903382,0.314422,0.659981,0.694511,0.644879,0.470651,0.654795,0.390876,0.231619,0.634013,0.955272,0.978657,0.918321,0.860045,0.762761,0.211785,0.135885,0.554593,0.63151,0.513003,0.945789,0.554324,0.159851,0.401092,0.839892,0.404664,0.676771,0.267588,0.09066,0.0355913,0.64468,0.410429,0.785006,0.763013,0.486629,0.851463,0.321385,0.0682136,0.493242,0.170189,0.708488,0.677198,0.219895,0.0918286,0.865733,0.106232,0.708286,0.0505891,0.635801,0.517783,0.394012,0.200602,0.301685,0.604846,0.929934,0.676226,0.772425,0.981946,0.0838713,0.714543,0.950687,0.0392276,0.411988,0.769139,0.474998,0.847354,0.988538,0.519986,0.119468,0.00455534,0.846472,0.828555,0.0111443,0.91601,0.412977,0.696913,0.122696,0.680901,0.236617,0.833748,0.182669,0.734202,0.821683,0.637036,0.876258,0.655158,0.760314,0.645667,0.451724,0.42057,0.767377,0.540517,0.580786,0.434298,0.680419,0.635791,0.150801,0.766509,0.267322,0.685823,0.532517,0.578773,0.798769,0.291193,0.68917,0.554151,0.641562,0.316733,0.216247,0.481686,0.330371,0.858898,0.196593,0.507563,0.733452,0.635658,0.313712,0.241192,0.123641,0.567388,0.157998,0.723221,0.565109,0.223658,0.410814,0.245378,0.606151,0.151906,0.555622,0.167525,0.0354754,0.0271109,0.524612,0.193225,0.125269,0.720304,0.749416,0.36325,0.33257,0.199647,0.799089,0.851479,0.631396,0.173165,0.068527,0.192873,0.83839,0.996269,0.250626,0.639934,0.48024,0.312837,0.0922226,0.0181533,0.621963,0.685849,0.326827,0.327168,0.495055,0.448439,0.286162,0.717716,0.357253,0.708474,0.987559,0.915025,0.976683,0.384479,0.820531,0.560572,0.215941,0.672717,0.588485,0.00315499,0.159567,0.909784,0.505748,0.342309,0.321293,0.7159,0.593436,0.453106,0.71101,0.238305,0.762489,0.903306,0.493427,0.477885,0.810336,0.693509,0.520197,0.680713,0.484793,0.337993,0.838488,0.873747,0.610382,0.668122,0.6272,0.271222,0.197165,0.400002,0.103023,0.154494,0.0969629,0.660545,0.703303,0.515928,0.984026,0.434551,0.65755,0.130379,0.299555,0.854816,0.768453,0.819547,0.532309,0.918447,0.841094,0.849646,0.0916725,0.167247,0.353183,0.671271,0.851256,0.365037,0.34989,0.459049,0.564628,0.658753,0.108762,0.213049,0.927094,0.231369,0.351199,0.984362,0.411284,0.0296397,0.34626,0.586351,0.108486,0.00572139,0.00500697,0.750819,0.997134,0.983366,0.223123,0.590281,0.974662,0.595106,0.392587,0.718617,0.684357,0.989242,0.297768,0.253883,0.647058,0.579177,0.932555,0.262916,0.382398,0.124628,0.344175,0.641146,0.865468,0.240356,0.263043,0.651845,0.149848,0.59464,0.248264,0.0807561,0.344973,0.901773,0.875171,0.511238,0.217449,0.649248,0.0801929,0.742057,0.771778,0.400442,0.151665,0.39121,0.112381,0.943237,0.287387,0.133242,0.0970227,0.499204,0.722826,0.863019,0.50097,0.0959072,0.065334,0.319821,0.604008,0.999148,0.271796,0.725838,0.872364,0.756354,0.632502,0.892926,0.531198,0.747669,0.0771414,0.0969596,0.96862,0.294661,0.040408,0.0418151,0.38333,0.138057,0.853561,0.809131,0.455363,0.844375,0.841721,0.540514,0.292166,0.987519,0.597729,0.857134,0.0150006,0.708561,0.875139,0.675139,0.816339,0.641555,0.907841,0.111489,0.036415,0.92691,0.901784,0.137213,0.0626893,0.567201,0.58564,0.540317,0.367532,0.73139,0.675959,0.601334,0.234109,0.446304,0.928687,0.225777,0.942798,0.562454,0.560606,0.352878,0.630724,0.31946,0.412893,0.113048,0.232464,0.515804,0.434787,0.318565,0.785398,0.105149,0.996366,0.172661,0.721578,0.450272,0.745747,0.883288,0.0780876,0.565806,0.338285,0.244249,0.761455,0.365699,0.535256,0.611238,0.535145,0.694424,0.411224,0.027115,0.716904,0.565142,0.9858,0.0941746,0.0139215,0.726146,0.061839,0.54776,0.418316,0.941998,0.610359,0.105822,0.27598,0.966912,0.189819,0.837413,0.421472,0.592877,0.364723,0.711697,0.956721,0.235815,0.167687,0.528252,0.0977417,0.566691,0.421584,0.160053,0.913862,0.404506,0.977242,0.968586,0.298878,0.203225,0.483388,0.185004,0.791881,0.50167,0.326652,0.556967,0.302149,0.119384,0.378417,0.173845,0.39141,0.120729,0.0811254,0.796495,0.975227,0.285014,0.455315,0.930055,0.0133126,0.912845,0.62999,0.790562,0.565564,0.841091,0.777991,0.38734,0.51153,0.535811,0.811294,0.931653,0.432803,0.930305,0.905509,0.510083,0.881531,0.317616,0.931127,0.757325,0.16257,0.820749,0.216096,0.252966,0.502412,0.706444,0.280312,0.715004,0.698747,0.210123,0.972063,0.244112,0.588784,0.6773,0.136917,0.477085,0.853919,0.69133,0.786726,0.0744085,0.976176,0.35411,0.663666,0.461349,0.382123,0.913901,0.524286,0.708636,0.407313,0.302539,0.19535,0.871377,0.617021,0.57765,0.900608,0.810803,0.255221,0.343365,0.442118,0.828423,0.702133,0.697877,0.488706,0.748833,0.940502,0.994075,0.502994,|0.274271,0.636526,0.668811,0.521117,0.473487,0.804704,0.560578,0.468674,0.60347,0.0460088,0.173197,0.559911,0.0340917,0.396556,0.839544,0.879309,0.666506,0.108279,0.0925577,0.715361,0.0381482,0.32103,0.496199,0.414148,0.591428,0.0928854,0.0574058,0.964284,0.0142342,0.731026,0.799313,0.173332,0.926408,0.704839,0.736016,0.583865,0.0506405,0.908571,0.0389253,0.573965,0.653807,0.263041,0.187696,0.219156,0.0905408,0.993389,0.338086,0.411579,0.190666,0.125998,0.0149527,0.701814,0.951537,0.314338,0.435291,0.658632,0.402744,0.633633,0.462215,0.815654,0.0336896,0.972721,0.43161,0.00112075,0.243557,0.588041,0.78936,0.451515,0.276907,0.512756,0.354086,0.379431,0.430628,0.56934,0.844742,0.204162,0.310409,0.98305,0.130429,0.538893,0.895716,0.842592,0.328818,0.433227,0.00912136,0.932468,0.779081,0.803627,0.753325,0.582784,0.642622,0.159767,0.590101,0.0518592,0.750359,0.154063,0.21386,0.960596,0.0956429,0.736686,0.379185,0.93042,0.83972,0.624203,0.485597,0.442106,0.767853,0.0176563,0.102152,0.0945815,0.666764,0.385063,0.806137,0.467033,0.859924,0.91307,0.535706,0.554022,0.329769,0.0339575,0.700807,0.368717,0.487152,0.651042,0.307039,0.731896,0.362764,0.64872,0.718188,0.091073,0.162994,0.782968,0.0715901,0.903236,0.862218,0.573206,0.0673039,0.918414,0.199381,0.172647,0.876235,0.553542,0.347882,0.860872,0.583843,0.874142,0.321514,0.830682,0.210895,0.520885,0.337665,0.892098,0.513923,0.673058,0.830328,0.634922,0.904429,0.239232,0.639536,0.904495,0.375918,0.555681,0.162064,0.983332,0.223423,0.194275,0.979996,0.00889957,0.083415,0.424885,0.821253,0.608208,0.587567,0.824389,0.687026,0.148977,0.898116,0.794893,0.323599,0.611764,0.560387,0.980282,0.216188,0.83821,0.770297,0.45684,0.192661,0.049628,0.0353834,0.864255,0.0913499,0.878266,0.227882,0.200014,0.807711,0.772896,0.767999,0.52186,0.56704,0.837034,0.961744,0.394567,0.413431,0.209962,0.155566,0.272288,0.433838,0.396285,0.315081,0.0382867,0.893583,0.828841,0.572173,0.941958,0.0809579,0.935547,0.0487434,0.889882,0.000278771,0.881176,0.201769,0.422336,0.0553433,0.650573,0.946344,0.15448,0.488542,0.395152,0.816247,0.016353,0.66164,0.018802,0.159829,0.29544,0.388714,0.40331,0.613452,0.454015,0.0875011,0.902728,0.335703,0.234505,0.430049,0.308797,0.0974442,0.386182,0.046236,0.855416,0.889377,0.62753,0.451357,0.365637,0.980314,0.4488,0.133898,0.298511,0.665956,0.115373,0.00592273,0.184244,0.711802,0.566848,0.911705,0.661738,0.544478,0.00619149,0.0778502,0.433657,0.136363,0.0318479,0.571095,0.48522,0.542643,0.121406,0.320023,0.608719,0.259253,0.923333,0.713383,0.459823,0.582388,0.668998,0.737132,0.988756,0.758295,0.62008,0.156233,0.642036,0.75069,0.150584,0.244534,0.765416,0.493355,0.756461,0.497073,0.622282,0.823635,0.265558,0.12348,0.0290464,0.265825,0.927939,0.516921,0.390187,0.328259,0.524079,0.992722,0.558889,0.299924,0.273509,0.326031,0.420411,0.37102,0.627579,0.644492,0.530155,0.612387,0.94181,0.143918,0.362799,0.451215,0.540452,0.714809,0.998414,0.0526909,0.705848,0.725788,0.793473,0.827188,0.421651,0.951025,0.537241,0.386274,0.904549,0.0844107,0.347413,0.298919,0.32528,0.237658,0.174819,0.763028,0.908249,0.771709,0.644009,0.196034,0.881825,0.415775,0.625828,0.946733,0.0430084,0.631728,0.306432,0.469151,0.487193,0.840744,0.745714,0.500946,0.306648,0.249589,0.295725,0.459671,0.875411,0.0152243,0.283761,0.0722206,0.477081,0.351907,0.536511,0.510107,0.0117262,0.61414,0.806541,0.0518359,0.346348,0.340305,0.97858,0.781062,0.961306,0.984521,0.690942,0.880558,0.986395,0.393788,0.406186,0.270134,0.520521,0.697216,0.851619,0.828028,0.525838,0.443107,0.935305,0.297333,0.382655,0.363487,0.808334,0.337831,0.314982,0.0869628,0.0563442,0.00431085,0.672448,0.315932,0.609261,0.567004,0.856556,0.37461,0.0103953,0.85497,0.329502,0.448792,0.387748,0.28108,0.225126,0.270686,0.0552303,0.25168,0.584673,0.899468,0.818643,0.0918021,0.165857,0.640183,0.0799567,0.968733,0.10821,0.0199366,0.188334,0.805709,0.672012,0.112948,0.078334,0.204587,0.0505764,0.795108,0.222559,0.628131,0.599309,0.0722042,0.411142,0.765218,0.694504,0.120325,0.0525815,0.185956,0.506518,0.759345,0.853115,0.452217,0.0436979,0.881727,0.413427,0.807012,0.321587,0.287826,0.250313,0.321483,0.189048,0.219645,0.654515,0.387505,0.811759,0.645209,0.48184,0.0258563,0.0171894,0.432751,0.645561,0.722929,0.552629,0.664363,0.84479,0.581316,0.777022,0.38929,0.952703,0.53471,0.432204,0.485693,0.25439,0.115817,0.432316,0.267956,0.957294,0.476486,0.554027,0.183511,0.376043,0.380552,0.763238,0.70843,0.972732,0.711247,0.581731,0.836129,0.621329,0.374316,0.297113,0.688881,0.0793042,0.100434,0.0084812,0.7691,0.00525951,0.828732,0.814966,0.845506,0.133913,0.952587,0.0300495,0.830732,0.120113,0.0835821,0.753948,0.0487999,0.55421,0.302296,0.887433,0.189943,0.875606,0.487437,0.230637,0.592949,0.489546,0.917835,0.540444,0.709394,0.0189198,0.419672,0.415445,0.718948,0.491962,0.593354,0.958959,0.110212,0.821086,0.447197,0.866004,0.451903,0.193903,0.751142,0.566367,0.842719,0.0815206,0.148257,0.452811,0.605456,0.607073,0.471391,0.623993,0.868587,0.847521,0.488093,0.828867,0.735304,0.408532,0.66793,0.517062,0.575931,0.0577644,0.706162,0.500274,0.525045,0.19329,0.507099,0.253465,0.794659,0.84049,0.898832,0.94423,0.547642,0.79737,0.806654,0.0468543,0.725666,0.61055,0.289295,0.993765,0.691195,0.0704406,0.520413,0.816109,0.838604,0.391084,0.0568331,0.817265,0.549153,0.892997,0.341337,0.207312,0.73432,0.920171,0.871953,0.637427,0.376706,0.998371,0.778428,0.554831,0.0389587,0.862327,0.983555,0.715009,0.644189,0.412969,0.274294,0.535876,0.765387,0.12567,0.523078,0.0471403,0.813722,0.374441,0.863076,0.644055,0.430714,0.0101649,0.49107,0.262171,0.888635,0.846402,0.0177465,0.86911,0.318439,0.76609,0.172704,0.339892,0.616603,0.887444,0.320736,0.417777,0.640126,0.551998,0.895613,0.622324,0.768473,0.610022,0.152938,0.492854,0.846078,0.202021,0.127819,0.372437,0.505497,0.515438,0.534543,0.563902,0.271341,0.901721,0.282958,0.0404558,0.714179,0.210534,0.773378,0.819169,0.113246,0.957535,0.554266,0.374007,0.85693,0.513351,0.0565518,0.997326,0.858414,0.267998,0.325925,0.574115,0.428489,0.209546,0.629395,0.958319,0.652051,0.298448,0.104104,0.38424,0.57122,0.779536,0.414232,0.671785,0.215972,0.0967426,0.812628,0.978745,0.224743,0.118745,0.14567,0.789114,0.27514,0.529309,0.43369,0.96483,0.00925416,0.314453,0.743662,0.329615,0.238349,0.760163,0.560606,0.556577,0.337388,0.806857,0.31339,0.967892,0.913202,0.475609,0.529125,0.0632366,0.0974939,0.790288,0.774147,0.00678474,0.44574,0.626593,0.908614,0.456904,0.171106,0.312428,0.581773,0.206777,0.900076,0.298751,0.290632,0.0528024,0.380242,0.705615,0.534097,0.640731,0.225198,0.18343,0.0160537,0.0604386,0.287754,0.984973,0.927151,0.76513,0.43857,0.974622,0.961004,0.0418728,0.741508,0.475398,0.937603,0.778906,0.273367,0.652381,0.884817,0.124033,0.177246,0.246123,0.0928953,0.475378,0.773622,0.116301,0.73725,0.891182,0.198348,0.0959676,0.454926,0.02507,0.33756,0.630542,0.571289,0.232475,0.725412,0.559558,0.400668,0.288397,0.468941,0.758457,0.73241,0.159149,0.811326,0.665234,0.885831,0.263714,0.916694,0.377884,0.771464,0.215463,0.631881,0.667408,0.795364,0.888019,0.169264,0.875077,0.542843,0.59818,0.929933,0.405149,0.139267,0.0524426,0.291992,0.243926,0.878337,0.460168,0.333684,0.198887,0.548685,0.40603,0.427348,0.740023,0.353583,0.871518,0.825257,0.352449,0.00641721,0.157259,0.102289,0.399806,0.514613,0.700229,0.343254,0.595626,0.987212,0.736481,0.546302,0.0997841,0.488742,0.242598,0.946475,0.139251,0.943265,0.28499,0.978276,0.586137,0.00848252,0.494997,0.868835,0.37349,0.310302,0.555557,0.352835,0.950245,0.821327,0.368053,0.048192,0.584609,0.93474,0.324715,0.227489,0.277175,0.16884,0.378346,0.414466,0.975359,0.569836,0.977903,0.405706,0.407876,0.490207,0.0141225,0.185645,0.321027,0.679066,0.773715,0.704468,0.102308,0.0654881,0.60755,0.625475,0.302353,0.925736,0.989103,0.832523,0.838672,0.411731,0.26931,0.846063,0.711424,0.3103,0.35675,0.597072,0.732096,0.362128,0.702987,0.429939,0.81412,0.206365,0.383957,0.833656,0.87491,0.353315,0.479074,0.895818,0.34318,0.581249,0.145159,0.437163,0.685437,0.424501,0.954934,0.863628,0.031295,0.13324,0.665949,0.713172,0.652555,0.799304,0.995482,0.121675,0.870245,0.2347,0.276346,0.270643,0.0077647,0.0630541,0.83511,0.264934,0.743627,0.0524368,0.867075,0.473502,0.660096,0.447525,0.589792,0.163451,0.779036,0.485633,0.33662,0.791193,0.980715,0.197063,0.339561,0.359598,0.993161,0.312951,0.401638,0.436766,0.53362,0.320409,0.76643,0.125974,0.286842,0.399054,0.739652,0.746946,0.565266,0.932447,0.787721,0.901559,0.0430548,0.28353,0.0334861,0.288096,0.198818,0.827522,0.861399,0.855665,0.78022,0.0784409,0.970505,0.974852,0.286022,0.254002,0.296633,0.233936,0.138543,0.980328,0.899795,0.273347,0.955168,0.525104,0.791072,0.114922,0.723148,0.591558,0.0602865,0.659524,0.818892,0.802398,0.974638,0.264487,0.62698,0.890152,0.710245,0.883743,0.964501,0.257577,0.795378,0.719676,0.895103,0.990502,0.0448961,0.276033,0.540528,0.479525,0.89507,0.607808,0.587933,0.268898,0.624286,0.0631165,0.301831,0.472646,0.938401,0.324898,0.653543,0.0268956,0.685236,0.361172,0.367427,|0.884725,0.0677083,0.568307,0.435157,0.0407702,0.365883,0.0909014,0.0282788,0.378867,0.718956,0.0869082,0.145694,0.750557,0.126277,0.546905,0.027572,0.685502,0.13135,0.526994,0.816234,0.485943,0.866122,0.0443227,0.164177,0.782511,0.0340747,0.482551,0.915684,0.967924,0.754724,0.590757,0.167868,0.301162,0.0648993,0.680647,0.583417,0.74038,0.554309,0.584587,0.853591,0.243437,0.566066,0.51648,0.237258,0.0878319,0.448481,0.354117,0.128506,0.677187,0.902011,0.872875,0.749454,0.0672694,0.0123767,0.894713,0.483993,0.463962,0.848714,0.469929,0.570833,0.268885,0.139625,0.448744,0.437394,0.201348,0.590873,0.106382,0.726627,0.334277,0.219977,0.512778,0.739698,0.569736,0.998584,0.917215,0.885286,0.192966,0.589465,0.482274,0.0748948,0.567284,0.740246,0.993862,0.381527,0.863799,0.41495,0.915104,0.188665,0.307065,0.719076,0.139129,0.531859,0.115237,0.0550622,0.967641,0.121067,0.0400028,0.43098,0.643235,0.143355,0.109189,0.817623,0.935959,0.800018,0.148341,0.738465,0.739981,0.176237,0.245639,0.812901,0.621531,0.467375,0.686481,0.0715885,0.46421,0.15742,0.876695,0.330108,0.293213,0.0246446,0.66658,0.357365,0.782313,0.163074,0.514125,0.418566,0.0813694,0.922595,0.365282,0.421381,0.484509,0.520303,0.11648,0.582783,0.783252,0.18433,0.0561237,0.840935,0.141909,0.507251,0.743316,0.378955,0.0186471,0.287244,0.677438,0.185089,0.405581,0.565534,0.31439,0.170827,0.243193,0.133578,0.558661,0.554948,0.76968,0.177975,0.82682,0.672827,0.215083,0.853644,0.197249,0.51058,0.861208,0.186702,0.463406,0.343376,0.972911,0.696595,0.177489,0.213515,0.90991,0.924761,0.393007,0.390908,0.86901,0.18247,0.264127,0.939783,0.536914,0.513876,0.106096,0.252783,0.663029,0.622964,0.190184,0.676673,0.974806,0.382361,0.0851744,0.0754219,0.784804,0.484327,0.480985,0.800661,0.598208,0.564344,0.0185425,0.932277,0.802863,0.197671,0.735093,0.65293,0.919701,0.411855,0.404766,0.132261,0.904487,0.384383,0.960848,0.976753,0.492493,0.163493,0.55281,0.939083,0.641339,0.623954,0.470517,0.450527,0.924582,0.320966,0.191081,0.568809,0.484329,0.474233,0.0734761,0.0422319,0.759842,0.211369,0.693338,0.796314,0.0272606,0.755127,0.34411,0.21825,0.204099,0.21903,0.194276,0.89148,0.692595,0.153728,0.81906,0.829695,0.726334,0.845734,0.292724,0.281293,0.444216,0.365344,0.0593215,0.961872,0.474662,0.0769039,0.564852,0.0596318,0.392049,0.658386,0.275927,0.270351,0.662007,0.390474,0.252917,0.672823,0.0929405,0.944883,0.32587,0.884213,0.43751,0.619408,0.66496,0.687641,0.59515,0.0489143,0.530973,0.719813,0.675547,0.6531,0.807277,0.929071,0.658018,0.633203,0.386869,0.992927,0.315568,0.721137,0.0319103,0.353644,0.951533,0.284625,0.879688,0.507919,0.461184,0.638411,0.702527,0.715983,0.693383,0.240288,0.16221,0.825124,0.611539,0.294562,0.126427,0.00672626,0.821786,0.832691,0.641174,0.0267978,0.970999,0.0180119,0.327393,0.69079,0.571232,0.702071,0.303394,0.0627303,0.897227,0.0341322,0.497754,0.0764616,0.847129,0.0464766,0.482635,0.334916,0.332093,0.85105,0.326006,0.953978,0.606914,0.605306,0.481069,0.687767,0.701642,0.483699,0.292451,0.672273,0.155663,0.969561,0.449775,0.254764,0.825646,0.815697,0.526797,0.532993,0.537049,0.458902,0.760786,0.305905,0.699299,0.685434,0.553527,0.907356,0.870942,0.936346,0.716672,0.674319,0.846023,0.309805,0.615822,0.431417,0.110282,0.751489,0.610736,0.117193,0.562642,0.782129,0.514862,0.718664,0.62048,0.60378,0.223385,0.780782,0.748304,0.245913,0.392748,0.732524,0.570947,0.18411,0.629353,0.553386,0.810764,0.0959752,0.622387,0.0345109,0.3976,0.777599,0.256361,0.735978,0.856712,0.513017,0.0457108,0.822064,0.464091,0.39581,0.511903,0.470999,0.209523,0.74659,0.54283,0.673417,0.707697,0.919104,0.284521,0.478963,0.352358,0.399494,0.99002,0.439272,0.309601,0.477518,0.83175,0.24949,0.830161,0.386971,0.241046,0.883069,0.6414,0.140708,0.581846,0.869012,0.814621,0.742352,0.0243171,0.346681,0.934029,0.115618,0.240678,0.0656289,0.26999,0.262624,0.874179,0.25149,0.109107,0.867943,0.784422,0.619972,0.109376,0.975918,0.161648,0.902652,0.465784,0.1504,0.00671154,0.345555,0.871387,0.524328,0.388071,0.133828,0.236735,0.64473,0.349027,0.850962,0.139147,0.201317,0.163431,0.976476,0.5881,0.561904,0.466095,0.41281,0.374517,0.129941,0.203724,0.055729,0.616135,0.341538,0.764802,0.943187,0.309163,0.619442,0.474271,0.609107,0.931797,0.516472,0.184225,0.217668,0.913633,0.182242,0.897717,0.253842,0.891017,0.745065,0.61163,0.456819,0.308561,0.431732,0.0104308,0.0114287,0.483878,0.899176,0.110532,0.451398,0.185162,0.909132,0.981267,0.152617,0.0892129,0.603222,0.118718,0.270667,0.472679,0.299842,0.526574,0.510421,0.463346,0.641103,0.892212,0.346126,0.917151,0.483377,0.609544,0.409888,0.0886435,0.802943,0.64029,0.689565,0.1821,0.951399,0.221185,0.249592,0.161782,0.0174834,0.511094,0.207124,0.415307,0.658721,0.326924,0.244296,0.536068,0.710942,0.935998,0.534498,0.336462,0.697883,0.356897,0.0946356,0.000926971,0.142307,0.845395,0.880211,0.687828,0.62396,0.0121778,0.969285,0.5031,0.127036,0.0917851,0.504227,0.177826,0.883095,0.929535,0.267811,0.0296367,0.337131,0.296815,0.587558,0.411393,0.774564,0.684692,0.690579,0.295877,0.185637,0.933464,0.563395,0.681995,0.180059,0.0733823,0.565906,0.890057,0.0486487,0.0353099,0.399914,0.526523,0.0650028,0.848514,0.811801,0.502169,0.89484,0.938686,0.3283,0.200584,0.309648,0.781266,0.991999,0.247732,0.884376,0.283771,0.0708242,0.492417,0.17681,0.96784,0.127168,0.924073,0.337584,0.375815,0.171255,0.0694566,0.719864,0.706924,0.378826,0.529361,0.690739,0.18893,0.664306,0.949011,0.843021,0.0470521,0.72124,0.374674,0.684498,0.956428,0.205584,0.129462,0.582109,0.664013,0.648782,0.914839,0.718662,0.183085,0.461982,0.699794,0.0821065,0.867331,0.74555,0.565855,0.204625,0.721065,0.0121895,0.432594,0.404801,0.801184,0.762062,0.675187,0.980965,0.699915,0.0711058,0.0257438,0.559017,0.287382,0.675007,0.75962,0.0427088,0.502457,0.53632,0.635582,0.125974,0.149702,0.186444,0.620423,0.502201,0.444349,0.0411752,0.14865,0.454038,0.357388,0.847234,0.947551,0.435812,0.140631,0.674061,0.0346095,0.351297,0.819877,0.65258,0.1641,0.952242,0.606505,0.805149,0.411958,0.854969,0.231052,0.138333,0.680297,0.349453,0.261737,0.15707,0.611712,0.504046,0.199173,0.639959,0.378183,0.479247,0.668353,0.90668,0.225598,0.46825,0.305492,0.170926,0.864228,0.16499,0.461937,0.00333214,0.149631,0.951617,0.329922,0.00891745,0.854706,0.995268,0.453366,0.899485,0.517272,0.337344,0.55937,0.284565,0.810531,0.117817,0.443628,0.830802,0.371519,0.220439,0.376271,0.428142,0.216695,0.206048,0.232773,0.128465,0.16567,0.290428,0.780716,0.00772971,0.919006,0.743548,0.559786,0.288603,0.459435,0.987373,0.0931988,0.0774437,0.379121,0.0103866,0.775379,0.679691,0.441502,0.0236844,0.915839,0.916979,0.668011,0.98757,0.0314213,0.793953,0.39847,0.80908,0.726481,0.138681,0.383726,0.775313,0.302194,0.0508361,0.855658,0.983754,0.525625,0.294388,0.477154,0.721092,0.430799,0.998762,0.672729,0.59903,0.397138,0.768875,0.0457323,0.755642,0.668809,0.414506,0.187382,0.195809,0.0433287,0.441874,0.16441,0.109059,0.245548,0.850932,0.401791,0.475875,0.271381,0.315991,0.700323,0.914993,0.721964,0.525292,0.110426,0.0912346,0.696783,0.983263,0.621781,0.256227,0.416849,0.634559,0.368821,0.662199,0.0076285,0.393006,0.378007,0.96914,0.569163,0.175486,0.631562,0.669027,0.546592,0.714462,0.156978,0.0333809,0.176224,0.415221,0.208655,0.962383,0.670916,0.0297242,0.0690681,0.773091,0.484429,0.342656,0.144315,0.798036,0.231016,0.990533,0.676846,0.307053,0.920358,0.87502,0.720371,0.33224,0.232669,0.962966,0.324295,0.944904,0.525696,0.551624,0.535372,0.169344,0.780815,0.63466,0.617693,0.828761,0.228226,0.856783,0.837308,0.271348,0.957194,0.0718737,0.719573,0.170108,0.495247,0.154353,0.690204,0.775511,0.805973,0.742541,0.934792,0.894246,0.057375,0.736137,0.507716,0.076771,0.557525,0.755489,0.762899,0.994496,0.999512,0.91278,0.393041,0.200234,0.404289,0.934694,0.951566,0.75324,0.474704,0.906777,0.630888,0.99833,0.953621,0.577484,0.177914,0.428029,0.680549,0.190942,0.100429,0.797851,0.458497,0.0739011,0.292162,0.420225,0.64714,0.885924,0.871899,0.245931,0.383779,0.962039,0.741011,0.736234,0.206798,0.162552,0.102385,0.32322,0.0206583,0.799995,0.741046,0.832513,0.9582,0.0744818,0.852197,0.038371,0.0882739,0.451045,0.305688,0.366672,0.814338,0.64312,0.505659,0.538581,0.669237,0.305419,0.605068,0.740885,0.437081,0.709211,0.716143,0.35884,0.17919,0.180264,0.566372,0.773152,0.469349,0.401757,0.474852,0.238873,0.340086,0.490909,0.79347,0.964234,0.29033,0.449104,0.332812,0.0741468,0.13621,0.53126,0.707826,0.973277,0.877594,0.471829,0.0413117,0.0651959,0.145047,0.0822898,0.244747,0.844352,0.0999442,0.656727,0.0886999,0.432703,0.661762,0.0661025,0.884654,0.856578,0.025718,0.988187,0.840131,0.306138,0.300226,0.457032,0.947881,0.474727,0.581627,0.853161,0.796073,0.861776,0.0812154,0.480405,0.771256,0.0153345,0.613342,0.963963,0.789382,0.91748,0.624181,0.0929323,0.287447,0.335266,0.573993,0.77767,0.216598,0.360144,0.860832,0.999686,0.374144,0.0340505,0.334964,0.0518,0.577127,0.453642,0.0408996,0.297086,0.446332,0.494246,0.555088,0.336362,0.907166,0.0483021,0.266152,0.872022,0.370655,0.751204,|0.955175,0.821775,0.792313,0.542337,0.12099,0.150176,0.751998,0.180119,0.0541341,0.501532,0.972338,0.505851,0.620501,0.460111,0.254548,0.437723,0.582054,0.341611,0.270073,0.83247,0.466797,0.435529,0.493936,0.194118,0.674975,0.142887,0.382794,0.110172,0.680693,0.938909,0.549865,0.404351,0.628002,0.787465,0.440759,0.798213,0.951488,0.501948,0.843735,0.129943,0.221321,0.396385,0.363036,0.353133,0.108042,0.682563,0.377845,0.864417,0.908569,0.0337276,0.844134,0.734163,0.267146,0.168338,0.747099,0.753162,0.0729309,0.717921,0.186127,0.649812,0.956783,0.132941,0.993497,0.93693,0.0650383,0.759436,0.132831,0.00534254,0.356381,0.130297,0.708962,0.688512,0.124447,0.627941,0.470736,0.472465,0.217985,0.902606,0.0280064,0.234477,0.0292506,0.788757,0.556608,0.721862,0.163911,0.285785,0.0649109,0.826775,0.706508,0.893054,0.574029,0.936929,0.529353,0.962312,0.717056,0.709977,0.65187,0.587712,0.715406,0.975749,0.383949,0.978364,0.442099,0.685717,0.0927843,0.374842,0.630448,0.407964,0.658439,0.972582,0.344395,0.638032,0.78841,0.854218,0.0237613,0.628598,0.804746,0.867851,0.603774,0.423669,0.544675,0.687683,0.885522,0.943124,0.41791,0.916168,0.201429,0.467017,0.507599,0.678382,0.735512,0.414698,0.375557,0.551971,0.333811,0.240304,0.423032,0.184762,0.831794,0.533104,0.266911,0.244009,0.386109,0.0662711,0.177948,0.7328,0.208765,0.0546252,0.976788,0.597625,0.416722,0.64276,0.973031,0.136569,0.763183,0.916752,0.248537,0.233888,0.010978,0.12958,0.813432,0.655044,0.576219,0.625513,0.909895,0.0888985,0.0883967,0.756521,0.135916,0.0710887,0.307084,0.662699,0.782044,0.743041,0.0957612,0.682689,0.203941,0.103067,0.0973694,0.15781,0.076092,0.42437,0.993649,0.527525,0.770095,0.25298,0.483314,0.378709,0.319277,0.289511,0.320823,0.871078,0.128043,0.254729,0.516317,0.0751873,0.130602,0.32548,0.896941,0.261459,0.862724,0.930681,0.928171,0.107145,0.27053,0.144365,0.851068,0.644101,0.152905,0.728415,0.712116,0.099628,0.482442,0.593606,0.745518,0.498572,0.702619,0.041499,0.548753,0.240778,0.938347,0.571346,0.154892,0.947244,0.822704,0.034142,0.10939,0.431869,0.121878,0.0250823,0.489626,0.927552,0.248822,0.369704,0.789148,0.381177,0.339588,0.566324,0.317411,0.492922,0.228628,0.221654,0.660127,0.104833,0.448492,0.918267,0.420253,0.400043,0.0178289,0.102957,0.718488,0.438067,0.0616139,0.828827,0.00618714,0.336837,0.288078,0.865588,0.916872,0.646188,0.347178,0.704674,0.468251,0.232644,0.175693,0.822802,0.295671,0.926782,0.482165,0.158382,0.329061,0.157207,0.107812,0.756996,0.924681,0.811211,0.744769,0.483382,0.190201,0.458642,0.343921,0.0694569,0.605514,0.304601,0.182637,0.761772,0.392369,0.336483,0.962821,0.532438,0.191555,0.865043,0.515175,0.793875,0.335566,0.55949,0.394902,0.0968255,0.383807,0.0536532,0.740546,0.412467,0.257822,0.159454,0.039659,0.0277493,0.64525,0.491608,0.0459821,0.458591,0.37033,0.267093,0.59623,0.175961,0.313417,0.576988,0.501158,0.205258,0.302795,0.278779,0.925078,0.288831,0.135764,0.433647,0.659229,0.478521,0.836104,0.105171,0.8352,0.644632,0.884906,0.815785,0.0388891,0.8072,0.794549,0.774491,0.0537116,0.428283,0.234951,0.371356,0.756896,0.74292,0.942737,0.318747,0.646822,0.347026,0.900892,0.647257,0.0566132,0.406276,0.558136,0.106277,0.713917,0.485567,0.888973,0.656019,0.117809,0.988469,0.853082,0.494964,0.0279952,0.367229,0.126866,0.428177,0.93649,0.934902,0.491808,0.223485,0.520309,0.824703,0.775867,0.13206,0.099792,0.565849,0.945282,0.394033,0.9869,0.0772361,0.00450343,0.122771,0.878045,0.581812,0.213424,0.712394,0.35526,0.254396,0.731877,0.786082,0.330808,0.51193,0.651301,0.94452,0.657729,0.386061,0.353803,0.848943,0.533025,0.635393,0.125575,0.809075,0.489927,0.719731,0.102526,0.47492,0.411742,0.502148,0.0241364,0.556857,0.882412,0.394451,0.286328,0.682213,0.875073,0.0186006,0.935734,0.377763,0.318985,0.0593719,0.992774,0.0499378,0.0325269,0.482044,0.66868,0.853178,0.805211,0.0563229,0.727978,0.869902,0.971353,0.802105,0.282394,0.785263,0.850153,0.987471,0.449826,0.655759,0.447958,0.900884,0.638039,0.18244,0.0412246,0.138474,0.327769,0.0836484,0.430206,0.145503,0.775897,0.81574,0.941335,0.0829504,0.31106,0.992726,0.692012,0.458357,0.19739,0.953864,0.097059,0.481283,0.821743,0.744363,0.495487,0.864912,0.73024,0.801884,0.944586,0.978452,0.4177,0.103674,0.170589,0.784735,0.388362,0.0384122,0.272047,0.858168,0.0652722,0.441651,0.335966,0.875402,0.388535,0.30999,0.795826,0.221157,0.277604,0.833462,0.808752,0.429242,0.902024,0.0955858,0.680032,0.831506,0.654453,0.582172,0.466459,0.359457,0.813264,0.318448,0.535706,0.546803,0.247201,0.704165,0.661998,0.293002,0.365468,0.365663,0.693398,0.307434,0.726004,0.54279,0.478435,0.158191,0.169217,0.0132954,0.197439,0.957268,0.281009,0.923373,0.446879,0.670145,0.675703,0.73452,0.841845,0.816164,0.0147605,0.426425,0.973888,0.512504,0.940917,0.310306,0.151351,0.923832,0.731901,0.174267,0.010588,0.360066,0.65509,0.378683,0.999317,0.946405,0.711729,0.865155,0.845225,0.0528584,0.79082,0.555741,0.40477,0.225826,0.853843,0.036478,0.991291,0.48042,0.539391,0.384235,0.156616,0.241388,0.730974,0.68684,0.0663757,0.48064,0.711367,0.711629,0.463592,0.150275,0.246145,0.274357,0.650359,0.27351,0.0316326,0.215767,0.192361,0.136923,0.835857,0.681832,0.0932248,0.971781,0.0402027,0.657314,0.515221,0.521794,0.440232,0.378366,0.495856,0.450653,0.767417,0.906197,0.763559,0.592788,0.706471,0.885215,0.207285,0.12883,0.887381,0.724973,0.0576341,0.125338,0.0200703,0.397522,0.38262,0.148623,0.502021,0.300243,0.804502,0.106508,0.729737,0.996716,0.220765,0.123945,0.295826,0.636896,0.81191,0.504618,0.30182,0.110447,0.340246,0.515988,0.594451,0.82121,0.454119,0.760168,0.500469,0.575007,0.573068,0.0882695,0.990386,0.539698,0.166919,0.782819,0.871608,0.178796,0.965509,0.271511,0.780268,0.305421,0.166991,0.64092,0.105965,0.143443,0.319252,0.818395,0.629176,0.266239,0.415224,0.995874,0.0356227,0.871398,0.564877,0.650546,0.374525,0.400077,0.645093,0.373442,0.0633,0.477701,0.886214,0.196341,0.888547,0.150986,0.890617,0.212968,0.55535,0.573269,0.664438,0.0303293,0.458018,0.447228,0.0736824,0.660369,0.782748,0.877944,0.915361,0.359751,0.464257,0.175272,0.725437,0.305132,0.34489,0.847883,0.244534,0.769664,0.39167,0.36371,0.398361,0.102,0.356592,0.695915,0.235292,0.157867,0.2159,0.328559,0.643976,0.532007,0.321945,0.91126,0.0337955,0.878974,0.642684,0.777979,0.248119,0.414085,0.182787,0.908274,0.669061,0.782115,0.181206,0.115215,0.0440865,0.178138,0.674205,0.0881265,0.515624,0.931611,0.127242,0.872903,0.947048,0.220029,0.496816,0.893816,0.811716,0.115151,0.894158,0.842655,0.00358289,0.431805,0.868462,0.768546,0.274586,0.453771,0.36237,0.267602,0.92526,0.132277,0.664015,0.924453,0.947905,0.48492,0.113483,0.647604,0.271576,0.743132,0.373945,0.0882153,0.915322,0.896043,0.765708,0.641995,0.383292,0.00348002,0.268231,0.700785,0.155491,0.868252,0.927114,0.844159,0.161953,0.749351,0.808651,0.282596,0.0144628,0.682842,0.444175,0.0352198,0.832952,0.643343,0.671954,0.224625,0.108742,0.540981,0.760753,0.355992,0.554582,0.271487,0.716755,0.0624195,0.909386,0.704663,0.116693,0.15413,0.913044,0.106356,0.0129996,0.147224,0.934935,0.558673,0.151851,0.919856,0.192052,0.483711,0.620605,0.362454,0.877857,0.377787,0.753321,0.604927,0.519309,0.335056,0.392028,0.955981,0.597983,0.94464,0.494884,0.333913,0.327156,0.751113,0.571081,0.102764,0.446304,0.0510365,0.382867,0.857182,0.551498,0.702774,0.970648,0.67399,0.449678,0.669444,0.748683,0.888408,0.863817,0.211205,0.3554,0.881469,0.599051,0.13552,0.863313,0.90756,0.9671,0.483281,0.230423,0.150306,0.293577,0.0576996,0.328563,0.312527,0.238598,0.870429,0.996517,0.998668,0.424431,0.896833,0.191532,0.94214,0.709883,0.592172,0.748472,0.0179489,0.648268,0.832297,0.269438,0.670219,0.576825,0.555616,0.392436,0.504211,0.405303,0.332426,0.802247,0.304281,0.762837,0.40007,0.0859391,0.348398,0.683957,0.143512,0.0614586,0.864924,0.702799,0.0752752,0.113524,0.944239,0.66699,0.094258,0.261497,0.643138,0.229171,0.244346,0.59221,0.48519,0.369843,0.932527,0.08448,0.801435,0.344377,0.508014,0.879765,0.871166,0.737196,0.766607,0.714024,0.446668,0.150091,0.583267,0.37462,0.316547,0.299554,0.911539,0.591409,0.69353,0.0874031,0.449265,0.551961,0.246276,0.103195,0.320895,0.456881,0.455353,0.626308,0.344195,0.963276,0.433186,0.0958971,0.00523627,0.462534,0.6811,0.0767361,0.766771,0.309143,0.413508,0.0151835,0.500078,0.0758086,0.567405,0.810417,0.725087,0.633324,0.705341,0.310723,0.648113,0.778667,0.723934,0.831963,0.611737,0.780481,0.659555,0.466742,0.736987,0.186358,0.0705572,0.0862521,0.246815,0.883397,0.415559,0.259764,0.110334,0.582826,0.432217,0.492547,0.984554,0.848158,0.0128757,0.462866,0.283005,0.671947,0.775176,0.136717,0.811106,0.50695,0.468945,0.00709981,0.597008,0.471825,0.766211,0.277636,0.924471,0.880039,0.226773,0.112209,0.988793,0.214197,0.48122,0.363272,0.733266,0.631891,0.717411,0.844971,0.787529,0.257445,0.698531,0.782341,0.878395,0.037977,0.668568,0.409373,0.577664,0.203266,0.944078,0.270764,0.0865688,0.673039,0.147047,0.876086,0.665661,0.85173,0.00747651,0.28772,0.71202,0.305046,0.764509,0.200497,0.925997,0.356901,0.400565,|0.144911,0.651021,0.982194,0.0394165,0.674221,0.642987,0.113322,0.95977,0.833022,0.0842238,0.685504,0.400457,0.669732,0.0168866,0.730384,0.668885,0.919932,0.704713,0.770122,0.918407,0.21228,0.479443,0.542838,0.457734,0.165796,0.254476,0.628474,0.431797,0.575137,0.350016,0.612712,0.289694,0.129394,0.237338,0.160834,0.699297,0.465882,0.133406,0.392729,0.289174,0.677698,0.184472,0.814091,0.282739,0.466942,0.0348626,0.109546,0.273463,0.448906,0.483868,0.420057,0.511792,0.503039,0.11451,0.224064,0.111971,0.345935,0.541425,0.773861,0.336198,0.682399,0.952523,0.716201,0.791306,0.455773,0.880587,0.534186,0.670918,0.199374,0.629155,0.136299,0.62543,0.257277,0.407094,0.521028,0.00496894,0.418613,0.913901,0.841699,0.0756637,0.11866,0.704343,0.567573,0.823518,0.819001,0.0158259,0.195378,0.150643,0.352195,0.254172,0.15551,0.800669,0.384712,0.0134839,0.89696,0.918817,0.586453,0.475693,0.371669,0.869131,0.497115,0.0503062,0.101959,0.225811,0.905627,0.113308,0.298801,0.145166,0.799447,0.826167,0.18283,0.826584,0.704939,0.939955,0.568651,0.831087,0.463083,0.971593,0.936455,0.231629,0.77334,0.482886,0.624382,0.528138,0.64131,0.738203,0.509619,0.186518,0.921314,0.156111,0.286817,0.0848644,0.256568,0.133565,0.362022,0.738818,0.50725,0.277836,0.505959,0.258388,0.542031,0.646931,0.690743,0.0671774,0.392099,0.913065,0.92337,0.588223,0.52415,0.0770051,0.0840974,0.278178,0.683896,0.470843,0.583034,0.81272,0.000474453,0.60464,0.191374,0.619538,0.651165,0.937759,0.252354,0.59372,0.0784482,0.0212041,0.144609,0.494285,0.552507,0.999735,0.573074,0.164185,0.991838,0.0392727,0.780684,0.602051,0.944565,0.841635,0.765543,0.559947,0.151572,0.0989187,0.522778,0.589436,0.223206,0.635618,0.611413,0.741525,0.205795,0.308119,0.251042,0.859256,0.352051,0.0859521,0.613958,0.262397,0.961307,0.925649,0.165557,0.304504,0.00558931,0.398762,0.472232,0.609556,0.360382,0.310007,0.570057,0.589533,0.517485,0.488362,0.426497,0.0732414,0.761169,0.145327,0.641976,0.524589,0.957858,0.94332,0.429906,0.954135,0.111355,0.738327,0.793292,0.690456,0.932776,0.397945,0.870199,0.592516,0.404458,0.723599,0.765104,0.406012,0.386607,0.935615,0.873597,0.312499,0.303703,0.89544,0.679878,0.167062,0.953546,0.0280678,0.540218,0.938018,0.463155,0.86776,0.261451,0.441564,0.712888,0.175973,0.689907,0.238334,0.370528,0.326798,0.715051,0.970887,0.667679,0.612696,0.788368,0.57743,0.817077,0.434133,0.0139539,0.439174,0.710264,0.196837,0.807042,0.0088281,0.831219,0.647446,0.321032,0.128089,0.466426,0.895871,0.720445,0.816177,0.242235,0.430277,0.933891,0.673306,0.15136,0.0322332,0.0285982,0.546057,0.932568,0.644918,0.287212,0.515768,0.852172,0.0867917,0.505663,0.508657,0.234018,0.291699,0.437876,0.966095,0.673971,0.0351295,0.5607,0.570423,0.833216,0.181937,0.212524,0.685876,0.679473,0.905925,0.400501,0.271117,0.527224,0.73717,0.251166,0.183374,0.523111,0.231711,0.978058,0.439687,0.0997781,0.128561,0.458216,0.892934,0.93601,0.0659236,0.373322,0.535941,0.550936,0.964377,0.896349,0.738067,0.0876429,0.327603,0.536827,0.115129,0.543737,0.797396,0.164236,0.729577,0.540885,0.593193,0.967562,0.51526,0.569715,0.52252,0.614253,0.0274229,0.757945,0.200228,0.786705,0.581244,0.161015,0.414985,0.131866,0.418087,0.220542,0.583132,0.852744,0.138513,0.263938,0.768715,0.725057,0.557918,0.535586,0.147111,0.397389,0.858943,0.948487,0.26576,0.730963,0.971875,0.151418,0.820279,0.577366,0.42589,0.495202,0.288485,0.0910259,0.765075,0.0131524,0.726141,0.229346,0.663734,0.311735,0.836501,0.398062,0.731808,0.710483,0.248286,0.279069,0.156577,0.475037,0.954456,0.667988,0.696223,0.812777,0.999311,0.620201,0.00312793,0.700378,0.455245,0.656882,0.0796136,0.365407,0.212743,0.440219,0.551927,0.978565,0.188916,0.56024,0.805438,0.156201,0.419669,0.815404,0.552081,0.979746,0.973676,0.608317,0.760416,0.725989,0.983892,0.0421473,0.234475,0.636561,0.130545,0.379071,0.958802,0.86446,0.851699,0.620691,0.444463,0.580435,0.397948,0.965002,0.223992,0.630865,0.179475,0.906755,0.797111,0.994792,0.621428,0.0631758,0.988703,0.479258,0.163496,0.377956,0.00425839,0.60246,0.195818,0.0531576,0.748172,0.381218,0.459854,0.852417,0.290962,0.37453,0.461253,0.390069,0.516219,0.326309,0.450268,0.0885916,0.887407,0.339078,0.957152,0.920959,0.925572,0.496856,0.193514,0.637544,0.485779,0.0356494,0.114258,0.225809,0.354093,0.246835,0.23567,0.557634,0.10423,0.836802,0.992667,0.952288,0.193955,0.905709,0.608058,0.3544,0.50999,0.719178,0.83334,0.911324,0.119447,0.933356,0.126794,0.380086,0.050931,0.193968,0.97296,0.655806,0.192801,0.216495,0.816164,0.451635,0.932094,0.231456,0.307435,0.438568,0.291877,0.0187299,0.877617,0.583152,0.4182,0.843888,0.550803,0.29796,0.969293,0.944626,0.47455,0.458766,0.0173749,0.817904,0.302344,0.0923523,0.910377,0.03749,0.629717,0.818522,0.9305,0.761628,0.453951,0.286437,0.830992,0.630028,0.408061,0.945537,0.0256377,0.787217,0.914171,0.326769,0.788593,0.67066,0.765775,0.711236,0.408845,0.558217,0.995301,0.132544,0.14128,0.797982,0.0895281,0.620734,0.637893,0.261012,0.750257,0.866541,0.35327,0.470952,0.932459,0.429185,0.839253,0.817252,0.962871,0.357984,0.113421,0.252809,0.99013,0.775562,0.341784,0.157905,0.0353062,0.785016,0.862635,0.332899,0.880686,0.457619,0.880117,0.655165,0.363386,0.639705,0.649579,0.482519,0.161891,0.837905,0.18166,0.892502,0.26598,0.811877,0.212844,0.553755,0.842618,0.658187,0.433713,0.782862,0.859402,0.436651,0.924933,0.941549,0.463857,0.351246,0.40305,0.0332236,0.504701,0.290639,0.799084,0.0375168,0.0581798,0.169895,0.276055,0.589088,0.244828,0.478283,0.518201,0.37132,0.406144,0.565798,0.246182,0.217906,0.148944,0.70932,0.51648,0.695448,0.945412,0.291475,0.516171,0.114677,0.573662,0.724411,0.839669,0.815932,0.696872,0.658368,0.44456,0.691156,0.071174,0.97167,0.0237507,0.220339,0.223044,0.0525774,0.665683,0.0539284,0.177054,0.420838,0.435823,0.350123,0.125236,0.931052,0.00653142,0.768763,0.238777,0.73838,0.19707,0.264024,0.686305,0.12543,0.308123,0.921886,0.98535,0.357644,0.654312,0.401789,0.136707,0.55281,0.544993,0.651169,0.554969,0.23934,0.772294,0.604504,0.72968,0.523252,0.256888,0.90644,0.715604,0.172831,0.935547,0.743825,0.0300459,0.531985,0.170638,0.387062,0.323386,0.228102,0.51406,0.125708,0.605827,0.0908821,0.381288,0.142503,0.289851,0.625366,0.566163,0.354342,0.14811,0.786493,0.630228,0.347222,0.957082,0.265866,0.133736,0.24556,0.0798559,0.464216,0.294169,0.447957,0.802307,0.983143,0.0175123,0.317613,0.701523,0.767148,0.726523,0.819567,0.411435,0.371726,0.629239,0.402799,0.226352,0.630009,0.948917,0.84664,0.330628,0.0381414,0.685122,0.805924,0.165449,0.511713,0.757404,0.39067,0.373408,0.365035,0.310406,0.320651,0.770147,0.729485,0.0591279,0.250795,0.801902,0.999403,0.605543,0.570462,0.539977,0.852997,0.0597673,0.317971,0.963464,0.708323,0.647426,0.763105,0.97746,0.443806,0.23928,0.999617,0.00908309,0.612992,0.432952,0.252306,0.054253,0.867699,0.791364,0.449106,0.514686,0.925751,0.638417,0.955863,0.101587,0.635958,0.392609,0.925505,0.547551,0.237925,0.959657,0.651705,0.302827,0.914339,0.306602,0.232406,0.6585,0.211005,0.842016,0.0578192,0.424233,0.0563368,0.879085,0.149444,0.223921,0.808196,0.483778,0.591317,0.908178,0.529862,0.690382,0.0614758,0.665784,0.4634,0.555821,0.393463,0.147974,0.524696,0.265442,0.917752,0.0738542,0.939888,0.63642,0.0788334,0.80489,0.336895,0.910998,0.766104,0.67757,0.331482,0.939709,0.67901,0.438142,0.433112,0.448265,0.194863,0.875248,0.525882,0.268412,0.987826,0.216328,0.988955,0.65795,0.404042,0.601094,0.0558015,0.620774,0.381095,0.694354,0.725155,0.400934,0.277077,0.458186,0.130498,0.674467,0.399443,0.215359,0.457279,0.227668,0.540055,0.614061,0.822263,0.543135,0.403925,0.578233,0.547814,0.823024,0.383243,0.0973746,0.112857,0.52359,0.0297809,0.747083,0.680846,0.330352,0.987599,0.312404,0.805732,0.999859,0.956202,0.598693,0.0184951,0.630676,0.524679,0.797576,0.14672,0.161338,0.118597,0.128688,0.626358,0.503166,0.113253,0.857926,0.781624,0.821977,0.95667,0.606056,0.408551,0.177941,0.361475,0.109726,0.405274,0.535193,0.271947,0.871768,0.0457247,0.591207,0.966254,0.0752931,0.110669,0.852579,0.430556,0.00831169,0.240592,0.911976,0.227902,0.30214,0.137637,0.978566,0.613378,0.340674,0.701769,0.986706,0.556055,0.368895,0.494847,0.29408,0.97747,0.924286,0.0175539,0.664844,0.748055,0.940533,0.923139,0.839832,0.0684782,0.636009,0.112623,0.960456,0.356361,0.879014,0.598038,0.547113,0.701136,0.795978,0.560122,0.816969,0.937782,0.49389,0.990953,0.938141,0.553937,0.265847,0.545808,0.499986,0.0273565,0.529618,0.861298,0.484052,0.522134,0.809964,0.750617,0.767223,0.639122,0.59914,0.482289,0.986783,0.653653,0.321836,0.61713,0.328338,0.258908,0.248881,0.569245,0.261422,0.47845,0.7633,0.690318,0.204305,0.564921,0.616891,0.785153,0.120691,0.522432,0.509226,0.820376,0.661825,0.170475,0.42091,0.0726789,0.570168,0.661349,0.546486,0.474509,0.848092,0.371751,0.107648,0.49047,0.13825,0.422096,0.731066,0.192814,0.0438825,0.196686,0.906041,0.847538,0.266252,0.472735,0.442519,0.846138,0.452256,0.357138,0.763953,0.602361,0.966355,0.627234,0.319462,0.014488,0.69114,0.266701,0.306777,0.0744672,0.0722398,|0.109024,0.0574017,0.433197,0.510295,0.959667,0.597909,0.643917,0.746234,0.204837,0.711292,0.931551,0.740183,0.347108,0.796373,0.757196,0.156184,0.152268,0.655768,0.325138,0.291231,0.940546,0.571163,0.759331,0.398483,0.492398,0.549338,0.549188,0.749306,0.435717,0.0581353,0.735976,0.419446,0.969484,0.324943,0.361772,0.345185,0.259497,0.968464,0.817474,0.204728,0.818461,0.556819,0.61856,0.397859,0.214491,0.223748,0.10044,0.226788,0.0550703,0.489587,0.513208,0.517486,0.0520451,0.179963,0.767429,0.955906,0.368645,0.755093,0.921551,0.926708,0.757988,0.702373,0.516358,0.0561445,0.909017,0.879085,0.824027,0.410386,0.410653,0.672446,0.103731,0.103469,0.781733,0.106653,0.0285495,0.890062,0.315752,0.440023,0.587106,0.682435,0.863407,0.849922,0.753214,0.143164,0.607438,0.116123,0.680349,0.347529,0.818623,0.851828,0.725363,0.413193,0.55488,0.363729,0.33482,0.189441,0.0297985,0.161978,0.336277,0.318018,0.321046,0.399525,0.661284,0.310267,0.745512,0.61497,0.989347,0.209941,0.429805,0.346758,0.862689,0.968452,0.36331,0.797941,0.21488,0.75713,0.775826,0.541729,0.13024,0.0286531,0.580083,0.830365,0.587182,0.415094,0.287785,0.245211,0.518151,0.402613,0.265061,0.914055,0.16162,0.873467,0.0634846,0.602659,0.377533,0.88684,0.203206,0.546506,0.321976,0.300874,0.410478,0.725863,0.145724,0.148842,0.968599,0.12156,0.248171,0.260224,0.222085,0.943729,0.126176,0.260543,0.237611,0.643122,0.957001,0.29807,0.0328432,0.640629,0.340223,0.220158,0.18905,0.824939,0.0410405,0.237043,0.537745,0.203441,0.523042,0.911242,0.648763,0.028648,0.928124,0.867507,0.514145,0.92684,0.0499249,0.0442185,0.916349,0.0274311,0.00782728,0.968897,0.478337,0.91702,0.772759,0.18346,0.653001,0.301517,0.599479,0.960243,0.627958,0.556165,0.236658,0.762565,0.992822,0.780836,0.919985,0.38505,0.911362,0.0962684,0.665013,0.276118,0.869785,0.173334,0.198816,0.764767,0.257758,0.733407,0.721402,0.171569,0.132016,0.462387,0.0187607,0.864524,0.623346,0.64788,0.114986,0.0514627,0.236343,0.436182,0.660626,0.295942,0.811627,0.359507,0.428344,0.212032,0.163068,0.878002,0.709322,0.219606,0.173626,0.848946,0.740747,0.122884,0.180072,0.481579,0.719446,0.847613,0.644135,0.639065,0.506731,0.939733,0.0654543,0.172473,0.383779,0.905211,0.528578,0.646952,0.747576,0.992822,0.777935,0.258681,0.35152,0.103534,0.551992,0.287441,0.299686,0.585002,0.46856,0.139146,0.611254,0.988368,0.11469,0.532051,0.154861,0.0491839,0.0990147,0.597046,0.123309,0.520761,0.821937,0.493817,0.451904,0.885122,0.299979,0.117707,0.631736,0.23652,0.39785,0.556649,0.484296,0.881445,0.339267,0.661792,0.417905,0.252646,0.167325,0.411024,0.49765,0.887903,0.553386,0.303707,0.226596,0.542084,0.00947887,0.962788,0.62955,0.31129,0.953279,0.45492,0.637091,0.972309,0.757077,0.865686,0.0379927,0.631223,0.206588,0.685804,0.224912,0.732313,0.227933,0.857248,0.990796,0.680978,0.847969,0.579052,0.711043,0.32168,0.735119,0.471559,0.254669,0.874601,0.674235,0.903026,0.308107,0.674205,0.611772,0.57461,0.0919276,0.136719,0.408745,0.860537,0.38224,0.557906,0.615539,0.741103,0.76307,0.0520917,0.568535,0.576996,0.621144,0.555536,0.844881,0.877779,0.682457,0.126044,0.585889,0.0845696,0.791803,0.579979,0.660461,0.659336,0.689402,0.0115964,0.0237806,0.914234,0.256295,0.261391,0.111645,0.367626,0.758701,0.351739,0.44466,0.820929,0.450824,0.60439,0.285316,0.40096,0.474791,0.710084,0.38657,0.757709,0.560835,0.0764388,0.129543,0.765394,0.590342,0.64882,0.858571,0.986783,0.515022,0.384092,0.642445,0.209327,0.282834,0.420042,0.0664064,0.117909,0.400674,0.51254,0.71417,0.404311,0.569845,0.0130718,0.802567,0.659123,0.0036552,0.807093,0.306477,0.936263,0.652209,0.0168327,0.824257,0.7467,0.8647,0.256735,0.589485,0.268385,0.715697,0.686634,0.481968,0.850593,0.67502,0.99751,0.169341,0.864249,0.246644,0.765363,0.462011,0.99139,0.707234,0.079856,0.388615,0.841434,0.986192,0.0261768,0.201323,0.0928522,0.931947,0.196003,0.125919,0.46503,0.47017,0.366708,0.895104,0.841227,0.498468,0.816234,0.35768,0.524713,0.309985,0.679355,0.259025,0.427438,0.171962,0.649532,0.0204331,0.567278,0.0384672,0.749377,0.838146,0.484843,0.385489,0.626411,0.238174,0.620921,0.0991452,0.649406,0.367842,0.227037,0.461861,0.104442,0.282282,0.959616,0.482275,0.532607,0.42876,0.138252,0.00274062,0.0642985,0.856385,0.704259,0.214697,0.264173,0.956542,0.354526,0.673448,0.154818,0.498269,0.174609,0.166946,0.737275,0.0914398,0.20611,0.554314,0.642216,0.515211,0.815615,0.813822,0.382343,0.696848,0.539363,0.460041,0.971893,0.134902,0.0706567,0.385395,0.941772,0.353066,0.851375,0.664539,0.806392,0.468461,0.69756,0.621573,0.622518,0.626591,0.242044,0.881621,0.377347,0.28841,0.691799,0.248319,0.428182,0.30312,0.813945,0.204454,0.0216845,0.377451,0.484343,0.798513,0.535167,0.849212,0.856505,0.512782,0.216923,0.305622,0.25991,0.0488632,0.164511,0.398282,0.148323,0.138413,0.720492,0.953697,0.493751,0.426344,0.979016,0.61134,0.0574137,0.683246,0.121307,0.816847,0.204273,0.90979,0.506726,0.765844,0.734552,0.190076,0.00101781,0.835238,0.73285,0.0577404,0.974386,0.608211,0.0439473,0.906745,0.83009,0.930771,0.613737,0.204296,0.15962,0.692629,0.51721,0.403926,0.456483,0.381701,0.343345,0.937975,0.82356,0.584735,0.0433667,0.209075,0.812538,0.235456,0.565077,0.566307,0.980237,0.17266,0.280313,0.627894,0.968495,0.537832,0.350194,0.553021,0.31577,0.0197703,0.0536929,0.942208,0.960255,0.594702,0.314456,0.202429,0.177024,0.273696,0.279078,0.116312,0.224951,0.0792081,0.838768,0.368592,0.505137,0.726002,0.442331,0.274508,0.667817,0.795217,0.98931,0.533208,0.205104,0.671598,0.185352,0.134596,0.984618,0.871369,0.522939,0.465541,0.224752,0.628226,0.387184,0.612244,0.57868,0.857573,0.811057,0.426107,0.810448,0.00280589,0.751682,0.0618385,0.444087,0.595688,0.39125,0.15063,0.700329,0.697461,0.689611,0.07581,0.135005,0.308911,0.406299,0.776923,0.912065,0.347744,0.350613,0.187874,0.67496,0.670875,0.185327,0.949837,0.15816,0.595559,0.19136,0.160366,0.0408149,0.272749,0.163769,0.173213,0.378958,0.20618,0.159007,0.190885,0.18727,0.327575,0.687427,0.2085,0.488501,0.369101,0.428796,0.818368,0.226338,0.860183,0.34827,0.651635,0.708462,0.901734,0.628031,0.323914,0.22116,0.144531,0.152845,0.0192426,0.383883,0.658174,0.457706,0.104337,0.174143,0.443062,0.934885,0.434881,0.301993,0.507593,0.584615,0.909655,0.526356,0.0068776,0.788889,0.161709,0.974495,0.393378,0.086094,0.494113,0.922502,0.429075,0.270069,0.775597,0.564705,0.804126,0.145744,0.0147998,0.900053,0.296923,0.44304,0.547869,0.492733,0.201606,0.402607,0.0441158,0.941502,0.866525,0.748534,0.990736,0.0743707,0.928946,0.405143,0.35204,0.168548,0.480928,0.154539,0.268189,0.0469954,0.0203528,0.458472,0.233704,0.665108,0.0161209,0.681961,0.529804,0.796249,0.472161,0.504407,0.501914,0.0795291,0.628102,0.855901,0.472362,0.0624582,0.473624,0.972554,0.437711,0.963763,0.929324,0.700286,0.813155,0.42677,0.283122,0.505798,0.850205,0.0330411,0.226292,0.708818,0.972179,0.272672,0.906016,0.125249,0.765965,0.723385,0.123802,0.655839,0.490397,0.341541,0.603899,0.476476,0.561607,0.811584,0.151891,0.727039,0.619713,0.643005,0.480129,0.885861,0.841155,0.365865,0.869906,0.452964,0.597175,0.274361,0.769099,0.870598,0.556514,0.500119,0.308109,0.224987,0.34735,0.415948,0.834713,0.525333,0.968195,0.360635,0.45057,0.296269,0.0956981,0.424598,0.622553,0.697075,0.538637,0.0835908,0.632995,0.149841,0.476957,0.2656,0.68128,0.153399,0.539786,0.626585,0.17384,0.0446018,0.547449,0.350714,0.130127,0.221375,0.872094,0.294251,0.343743,0.239859,0.0206901,0.28917,0.548148,0.26447,0.0952777,0.377094,0.0353377,0.727818,0.105102,0.289496,0.00835562,0.573351,0.731806,0.727861,0.108999,0.0515919,0.583218,0.997802,0.229096,0.465022,0.00778186,0.522999,0.804138,0.477278,0.435961,0.137341,0.415605,0.204953,0.530974,0.831826,0.505961,0.0638756,0.169917,0.722659,0.151964,0.202922,0.959762,0.515993,0.0801824,0.533486,0.712332,0.880231,0.875941,0.83169,0.251197,0.849751,0.539464,0.287424,0.352522,0.284654,0.129891,0.343679,0.977162,0.0571122,0.444589,0.725411,0.56199,0.247141,0.864964,0.129511,0.79571,0.533332,0.931212,0.305215,0.384086,0.783369,0.37801,0.679573,0.885825,0.372275,0.589211,0.0183127,0.547378,0.635028,0.945171,0.0423137,0.305785,0.364173,0.0612621,0.842593,0.220003,0.57514,0.576095,0.195009,0.642105,0.18634,0.59581,0.210846,0.735692,0.713578,0.318623,0.565263,0.220101,0.0301381,0.917489,0.854623,0.884741,0.889201,0.217791,0.936642,0.986833,0.136641,0.0565299,0.735935,0.801968,0.743185,0.165868,0.587722,0.759251,0.324019,0.235121,0.402304,0.686345,0.221414,0.286521,0.615448,0.142143,0.327349,0.7634,0.521929,0.845341,0.564671,0.453741,0.317806,0.682897,0.810752,0.184574,0.112934,0.573911,0.10706,0.0886049,0.610816,0.27551,0.853467,0.0161399,0.971321,0.151044,0.18834,0.886812,0.500659,0.454096,0.597639,0.511657,0.407633,0.90367,0.238141,0.0817515,0.383849,0.0166515,0.283285,0.725007,0.897045,0.760027,0.474941,0.000303686,0.913401,0.808296,0.132709,0.751036,0.543322,0.624388,0.36752,0.904773,0.20536,0.708022,0.228268,0.258671,0.188073,0.990012,0.026664,0.333318,0.242055,0.183736,0.45738,0.419461,0.711309,0.536251,0.931181,|0.89009,0.383843,0.508746,0.389245,0.993162,0.296428,0.385367,0.731385,0.924295,0.839336,0.532353,0.0574452,0.884357,0.548651,0.605303,0.730857,0.530567,0.945672,0.417985,0.993666,0.399971,0.692476,0.47279,0.0151268,0.489231,0.909384,0.777768,0.10492,0.353389,0.728252,0.776721,0.0273032,0.178892,0.110932,0.120941,0.430348,0.414854,0.354339,0.430172,0.026465,0.74277,0.574467,0.498709,0.247161,0.0725178,0.447914,0.215416,0.40808,0.0399343,0.855763,0.445982,0.293955,0.603501,0.552526,0.634342,0.978607,0.622955,0.725439,0.256083,0.996068,0.539545,0.711677,0.749097,0.266701,0.749278,0.986116,0.432756,0.351898,0.895312,0.180122,0.346332,0.387457,0.191791,0.0487545,0.761753,0.335564,0.619877,0.2529,0.885631,0.706175,0.698416,0.577124,0.0402799,0.319664,0.0834396,0.462919,0.492817,0.0918662,0.0095728,0.536578,0.29943,0.800882,0.0856909,0.452609,0.483982,0.561172,0.299322,0.884473,0.929879,0.370791,0.874541,0.701915,0.899967,0.702636,0.770949,0.388796,0.15693,0.224668,0.586351,0.950129,0.3356,0.604756,0.399653,0.132773,0.287987,0.802731,0.690817,0.149246,0.484855,0.591881,0.966571,0.785063,0.4224,0.0613728,0.981796,0.514608,0.809869,0.049934,0.345318,0.190794,0.906058,0.789188,0.176702,0.98673,0.668261,0.595695,0.16137,0.201863,0.201679,0.912242,0.879705,0.817548,0.625071,0.262356,0.533157,0.443194,0.811347,0.370504,0.432451,0.590438,0.625618,0.704911,0.710305,0.932695,0.646952,0.559516,0.911266,0.668726,0.622415,0.0469432,0.743008,0.711258,0.0418035,0.886278,0.673847,0.704942,0.629058,0.372253,0.201323,0.625435,0.636248,0.116949,0.780931,0.825347,0.710469,0.102459,0.126386,0.102555,0.225602,0.994669,0.220858,0.500894,0.241683,0.0133902,0.58707,0.748555,0.442974,0.24881,0.415228,0.262873,0.814026,0.862454,0.337609,0.231556,0.0803136,0.587061,0.00910819,0.00829029,0.0302325,0.53709,0.357544,0.266572,0.92365,0.662257,0.0423684,0.206073,0.174049,0.258239,0.189859,0.745752,0.297801,0.249044,0.550842,0.933523,0.685922,0.0914625,0.733267,0.909041,0.912975,0.530941,0.613446,0.632055,0.192135,0.661653,0.703231,0.270757,0.344468,0.264432,0.539886,0.117751,0.933623,0.280441,0.573968,0.531848,0.259757,0.890881,0.422699,0.956456,0.464878,0.96964,0.509074,0.145182,0.301573,0.421758,0.923755,0.0819126,0.895151,0.38128,0.930785,0.354636,0.858735,0.55265,0.305897,0.184496,0.266407,0.812532,0.785758,0.734994,0.769982,0.256204,0.383651,0.0975801,0.538465,0.612255,0.60823,0.916806,0.0901401,0.76454,0.116565,0.863312,0.873554,0.36595,0.388077,0.316846,0.188549,0.885615,0.554363,0.842221,0.0988696,0.072718,0.562413,0.212458,0.513889,0.495048,0.229155,0.214894,0.771704,0.292837,0.699747,0.471732,0.997491,0.275385,0.782165,0.223161,0.651754,0.210276,0.385949,0.237456,0.545654,0.573548,0.0776397,0.710707,0.803963,0.842678,0.412534,0.773517,0.162482,0.493265,0.769304,0.651568,0.799556,0.846581,0.057399,0.182799,0.0583978,0.41167,0.583088,0.311293,0.570903,0.936241,0.527273,0.589998,0.331632,0.972226,0.0235173,0.912043,0.811642,0.807313,0.509807,0.710376,0.158392,0.00179064,0.885398,0.809968,0.754559,0.351989,0.82572,0.52155,0.236367,0.580561,0.535847,0.758694,0.156876,0.98609,0.134168,0.0835235,0.156418,0.0662014,0.395124,0.570663,0.17811,0.289983,0.919918,0.48946,0.411677,0.7032,0.843509,0.90873,0.463404,0.306089,0.194416,0.755937,0.970181,0.445926,0.817683,0.585371,0.267041,0.0969718,0.110524,0.971968,0.668927,0.300495,0.12815,0.0101916,0.857443,0.584868,0.514166,0.558668,0.0412154,0.36343,0.287429,0.508573,0.307568,0.577379,0.0731727,0.703113,0.746998,0.803285,0.349961,0.280808,0.0410901,0.34797,0.273152,0.403439,0.675846,0.690602,0.754935,0.194059,0.821792,0.864064,0.95916,0.351184,0.904417,0.0101559,0.602125,0.905893,0.0965908,0.164385,0.664232,0.160359,0.931212,0.963932,0.449257,0.094444,0.543955,0.805497,0.591534,0.201605,0.397342,0.792306,0.92969,0.106696,0.928512,0.353863,0.599317,0.974873,0.718602,0.121168,0.468934,0.662241,0.877126,0.302637,0.399748,0.919887,0.847828,0.837794,0.0709105,0.441421,0.162469,0.699824,0.826669,0.874118,0.977733,0.72619,0.303256,0.388319,0.223518,0.0058381,0.900474,0.332898,0.337329,0.670221,0.63069,0.565009,0.696725,0.945452,0.0510588,0.0986952,0.232062,0.497454,0.722741,0.270862,0.0712269,0.877483,0.0761387,0.98524,0.766327,0.122621,0.932409,0.189995,0.873199,0.373186,0.896548,0.752648,0.607928,0.872357,0.595465,0.966224,0.0247698,0.716158,0.0474808,0.108516,0.0708793,0.158349,0.59334,0.943403,0.00724208,0.504078,0.620758,0.477916,0.877659,0.520468,0.81736,0.72524,0.282394,0.308814,0.552823,0.545239,0.904066,0.741677,0.91952,0.704434,0.589662,0.91146,0.327549,0.619223,0.55245,0.464394,0.573131,0.134859,0.0574056,0.176651,0.976858,0.455188,0.630159,0.433804,0.023018,0.561172,0.612844,0.172983,0.491362,0.351568,0.391709,0.717118,0.196212,0.424717,0.336241,0.318899,0.0119841,0.642896,0.940002,0.254704,0.263082,0.261101,0.267363,0.898579,0.962341,0.408294,0.733103,0.601253,0.428731,0.478901,0.0584161,0.692425,0.841242,0.0144706,0.419217,0.654778,0.550693,0.970866,0.358343,0.762759,0.710808,0.698251,0.56249,0.305732,0.067674,0.0189964,0.92573,0.615974,0.746297,0.714677,0.936176,0.739953,0.796142,0.654454,0.903171,0.732694,0.517421,0.698296,0.544218,0.617072,0.0397303,0.421785,0.0211329,0.496464,0.835001,0.912269,0.545924,0.682886,0.931615,0.699512,0.163948,0.226135,0.764579,0.376454,0.418655,0.796793,0.353819,0.720456,0.557952,0.705304,0.942886,0.568977,0.832364,0.324462,0.811511,0.978969,0.506466,0.0301276,0.286712,0.0282914,0.992473,0.0832586,0.550435,0.0772651,0.49773,0.217748,0.855831,0.778569,0.643133,0.400867,0.0533856,0.0879458,0.152774,0.295718,0.250755,0.552128,0.722312,0.394031,0.413715,0.0879739,0.0431573,0.656938,0.638048,0.0717164,0.47227,0.528013,0.14991,0.367486,0.997116,0.858379,0.646815,0.845129,0.200525,0.504906,0.352801,0.810984,0.0136126,0.68532,0.844427,0.254299,0.148477,0.171486,0.0167395,0.211587,0.971618,0.948447,0.132928,0.0683991,0.177633,0.508368,0.619069,0.000862718,0.584084,0.863541,0.904074,0.79951,0.128168,0.892677,0.315515,0.221322,0.972368,0.925836,0.807668,0.382814,0.861769,0.659811,0.637963,0.50873,0.539258,0.322373,0.130975,0.749361,0.197673,0.180537,0.570492,0.250771,0.541098,0.22927,0.830516,0.362764,0.602133,0.335791,0.0593355,0.683521,0.498788,0.588183,0.956127,0.0109615,0.0260001,0.655847,0.442814,0.419737,0.382166,0.0580702,0.279888,0.454199,0.349111,0.0158094,0.337019,0.947354,0.853535,0.898073,0.934324,0.450486,0.53501,0.174825,0.516981,0.290272,0.969593,0.54882,0.810924,0.915933,0.567508,0.991297,0.654458,0.989358,0.13012,0.573423,0.648156,0.994349,0.700998,0.0835232,0.405099,0.0603387,0.443314,0.522653,0.33613,0.111772,0.921996,0.459779,0.0802712,0.867746,0.0477169,0.269036,0.0401409,0.144812,0.352555,0.307795,0.658075,0.299265,0.823895,0.636711,0.57135,0.874988,0.337179,0.477649,0.748194,0.230916,0.00855368,0.432653,0.0340989,0.951708,0.0488949,0.941022,0.171481,0.0150056,0.0394392,0.700038,0.420287,0.67346,0.990803,0.724606,0.584137,0.385856,0.32136,0.0817053,0.933767,0.567285,0.570082,0.613919,0.407643,0.0141079,0.884322,0.055918,0.661421,0.807941,0.56753,0.906981,0.393034,0.185221,0.515304,0.771553,0.188891,0.287786,0.68783,0.00979072,0.0963569,0.337668,0.864513,0.45034,0.86448,0.948589,0.400719,0.531894,0.481977,0.983395,0.205438,0.447565,0.249219,0.234815,0.998262,0.028199,0.479231,0.568717,0.916653,0.564158,0.688072,0.348522,0.21688,0.942469,0.539753,0.0250657,0.113336,0.93694,0.141073,0.99432,0.775806,0.209928,0.230582,0.528991,0.850105,0.655252,0.794827,0.0920439,0.18968,0.109035,0.155226,0.589876,0.516327,0.39055,0.176769,0.81239,0.073947,0.671949,0.131911,0.712195,0.668858,0.344723,0.552783,0.5473,0.597953,0.407759,0.913519,0.416665,0.440995,0.43082,0.412817,0.966141,0.922763,0.272704,0.0595182,0.861759,0.55863,0.87588,0.0508808,0.426452,0.533004,0.991214,0.677893,0.850398,0.260731,0.272906,0.256628,0.86881,0.274667,0.556618,0.388779,0.245072,0.680068,0.170508,0.927506,0.734865,0.775588,0.241828,0.382208,0.352797,0.280823,0.136447,0.421294,0.844319,0.474268,0.252683,0.868193,0.498262,0.315929,0.214385,0.336508,0.355732,0.99689,0.158451,0.542757,0.794801,0.531793,0.442846,0.304695,0.0561459,0.312836,0.728338,0.700859,0.361186,0.0829284,0.899898,0.398248,0.198237,0.529731,0.184243,0.562989,0.9198,0.193538,0.414616,0.720686,0.362516,0.710998,0.274281,0.821086,0.773923,0.243611,0.330548,0.266623,0.641739,0.813572,0.581435,0.884118,0.533845,0.88406,0.608094,0.48446,0.957485,0.832037,0.791548,0.418322,0.00975507,0.406318,0.113939,0.597318,0.127181,0.172307,0.0192879,0.910472,0.544321,0.57015,0.100166,0.0761781,0.419063,0.339945,0.814894,0.810019,0.460673,0.648597,0.846939,0.198328,0.021128,0.266682,0.811668,0.690419,0.189671,0.328065,0.0599973,0.990793,0.820736,0.551647,0.241914,0.998787,0.577487,0.315671,0.74404,0.591338,0.856917,0.119458,0.136293,0.25344,0.999521,0.467999,0.408432,0.509658,0.00232381,0.811635,0.127132,0.827583,0.895922,0.744942,0.191506,0.21194,0.710021,0.932261,0.809859,0.842733,0.236093,0.271282,0.337687,0.299332,0.205507,0.969841,0.563549,0.813032,0.603197,0.437963,0.759494,|0.947075,0.484146,0.185183,0.126928,0.421423,0.852554,0.129341,0.489253,0.0866277,0.63995,0.40458,0.444753,0.771468,0.19987,0.443671,0.439559,0.714857,0.0877066,0.0572608,0.758018,0.573186,0.385669,0.368393,0.622922,0.113394,0.367994,0.526641,0.168577,0.354661,0.1979,0.523577,0.381404,0.307995,0.0644611,0.942057,0.397121,0.396163,0.73614,0.852333,0.545495,0.654847,0.499204,0.992735,0.977549,0.999859,0.581904,0.716103,0.693402,0.852371,0.253229,0.849542,0.237337,0.527546,0.587417,0.679974,0.350767,0.959615,0.38711,0.78607,0.223797,0.0316877,0.0542864,0.31035,0.0643739,0.445552,0.668315,0.329424,0.733833,0.0296168,0.693022,0.116061,0.251679,0.663471,0.642524,0.587333,0.727922,0.588905,0.56659,0.686063,0.205501,0.284778,0.299673,0.677676,0.955568,0.368945,0.188577,0.182438,0.121055,0.208506,0.0548346,0.339171,0.795903,0.682805,0.960314,0.0175715,0.197374,0.304016,0.15429,0.945632,0.321705,0.916653,0.81436,0.474894,0.00717676,0.917948,0.698141,0.443475,0.857433,0.662016,0.554347,0.326607,0.310432,0.42071,0.796944,0.371171,0.262263,0.235758,0.983349,0.219843,0.739317,0.188943,0.618239,0.857783,0.403663,0.269976,0.876568,0.364942,0.733537,0.231499,0.637024,0.970408,0.195559,0.799307,0.910973,0.149485,0.98752,0.733863,0.0662159,0.576915,0.355502,0.328668,0.744366,0.381279,0.319794,0.160805,0.978437,0.811297,0.17549,0.524752,0.0968337,0.760998,0.229673,0.654469,0.0702887,0.647056,0.647496,0.550903,0.87196,0.31732,0.546378,0.881456,0.290558,0.837262,0.584658,0.392087,0.88817,0.931625,0.981637,0.127111,0.488599,0.398214,0.535054,0.774785,0.762216,0.641311,0.0296898,0.0384697,0.214203,0.728188,0.258089,0.944909,0.296748,0.888855,0.461535,0.811347,0.762703,0.246628,0.158107,0.622317,0.0347089,0.558256,0.985134,0.862373,0.311091,0.456794,0.536753,0.111361,0.220996,0.194149,0.375477,0.597949,0.971467,0.952015,0.583714,0.586545,0.951659,0.163369,0.00277257,0.819524,0.947042,0.989473,0.455892,0.00938189,0.0215473,0.47884,0.400639,0.865703,0.639462,0.207634,0.71634,0.96482,0.588138,0.897664,0.880391,0.222348,0.583139,0.367318,0.606661,0.0035457,0.832104,0.719922,0.700249,0.969221,0.393306,0.444982,0.605827,0.178607,0.911969,0.388929,0.145302,0.828533,0.942745,0.154669,0.542387,0.259378,0.277408,0.81159,0.620959,0.902765,0.58442,0.774729,0.233115,0.0704542,0.63282,0.0803781,0.520926,0.0583057,0.484591,0.27551,0.783348,0.240514,0.747531,0.0722203,0.361865,0.54421,0.619561,0.333546,0.938771,0.123176,0.740877,0.533368,0.174899,0.50006,0.598856,0.71384,0.208287,0.957776,0.105105,0.281488,0.369277,0.26947,0.135427,0.22189,0.618962,0.131481,0.756002,0.223526,0.0925049,0.35835,0.70306,0.907119,0.687704,0.120012,0.996952,0.38064,0.408638,0.492765,0.851271,0.745138,0.748114,0.68492,0.0892388,0.342049,0.0680659,0.704426,0.566264,0.658061,0.667876,0.286429,0.428124,0.651777,0.504032,0.572043,0.687024,0.0918148,0.0383649,0.263099,0.741758,0.369703,0.82836,0.16502,0.80145,0.190096,0.510722,0.210938,0.764566,0.474758,0.0120566,0.670422,0.596575,0.0149496,0.874212,0.112827,0.711318,0.429493,0.472652,0.773459,0.665833,0.361971,0.521242,0.260964,0.231308,0.171028,0.106443,0.567171,0.786233,0.445013,0.715376,0.48706,0.365099,0.68357,0.428991,0.39944,0.326081,0.158283,0.118244,0.458706,0.225215,0.584728,0.0323758,0.0173681,0.0604521,0.620973,0.332488,0.525854,0.20038,0.659835,0.111177,0.422041,0.15186,0.437998,0.043058,0.0818921,0.645273,0.951548,0.120517,0.173982,0.660365,0.603058,0.654423,0.877554,0.898839,0.464323,0.295752,0.0547528,0.496963,0.943087,0.465868,0.145669,0.719854,0.99859,0.977178,0.39077,0.935738,0.768188,0.713375,0.876512,0.439389,0.402605,0.0539802,0.870958,0.185714,0.400274,0.292197,0.0493007,0.368951,0.280374,0.781659,0.409382,0.678906,0.330115,0.104517,0.822928,0.395956,0.84047,0.143709,0.524716,0.624531,0.114265,0.395634,0.159201,0.752025,0.505976,0.916457,0.946738,0.699157,0.75743,0.604178,0.883503,0.374819,0.0477654,0.176568,0.0325868,0.730451,0.489917,0.107465,0.0200285,0.33962,0.401216,0.452278,0.468109,0.185349,0.39384,0.831678,0.0548048,0.394109,0.713535,0.16901,0.828421,0.233537,0.484462,0.430404,0.395307,0.479145,0.764594,0.648037,0.174181,0.646077,0.12007,0.420286,0.984921,0.284718,0.219259,0.203597,0.34069,0.848987,0.832295,0.192405,0.644805,0.96041,0.681628,0.406381,0.435372,0.556176,0.955933,0.335615,0.207836,0.555947,0.91136,0.967348,0.16493,0.353446,0.151347,0.842958,0.145538,0.375422,0.0536045,0.17148,0.950757,0.00277293,0.651871,0.449223,0.896849,0.397789,0.982612,0.36467,0.593027,0.0603341,0.535372,0.340022,0.835487,0.0793419,0.529754,0.00309843,0.807403,0.853696,0.902297,0.843356,0.534717,0.0355794,0.655917,0.02797,0.214894,0.394213,0.0414439,0.421933,0.955658,0.10229,0.0273005,0.0569125,0.656412,0.151293,0.471422,0.43813,0.182543,0.319407,0.396402,0.167365,0.523889,0.987185,0.997997,0.84857,0.145159,0.0930327,0.549479,0.490154,0.227063,0.929314,0.918526,0.694472,0.34989,0.501347,0.377588,0.268876,0.283868,0.120407,0.399463,0.317932,0.708579,0.636597,0.85586,0.927659,0.771581,0.060744,0.638043,0.920895,0.801936,0.584213,0.667948,0.660056,0.886595,0.550856,0.33212,0.463085,0.210172,0.740582,0.414171,0.150177,0.290526,0.148163,0.514387,0.202103,0.92234,0.766463,0.158387,0.23262,0.340601,0.121899,0.601965,0.122934,0.886151,0.617448,0.278283,0.0155994,0.0421693,0.101846,0.11721,0.119908,0.562718,0.201843,0.683672,0.343358,0.564689,0.204205,0.857965,0.873785,0.0287138,0.920765,0.937236,0.198378,0.500892,0.651788,0.9549,0.562619,0.797522,0.173782,0.398304,0.87345,0.390236,0.189007,0.451971,0.107728,0.185508,0.0480762,0.0836591,0.552184,0.666331,0.356152,0.764736,0.501784,0.545728,0.390734,0.451377,0.882898,0.707144,0.326852,0.358023,0.739374,0.837193,0.163232,0.851244,0.138718,0.148393,0.683355,0.725852,0.9795,0.594783,0.728687,0.928822,0.52124,0.901564,0.0179651,0.455155,0.702831,0.99924,0.885157,0.384185,0.306149,0.855136,0.512211,0.404946,0.834139,0.741295,0.547,0.889725,0.025803,0.290909,0.912553,0.832029,0.403696,0.547248,0.445967,0.747931,0.689125,0.205111,0.719016,0.944468,0.341304,0.152519,0.107818,0.590675,0.975822,0.650275,0.836112,0.380022,0.984698,0.373871,0.646596,0.743777,0.86882,0.690468,0.525749,0.436491,0.110196,0.674843,0.59294,0.523822,0.23312,0.943266,0.962045,0.380436,0.694274,0.976908,0.0490003,0.144316,0.859744,0.556273,0.938412,0.433202,0.441419,0.160671,0.229396,0.471366,0.43834,0.268644,0.046733,0.926731,0.629935,0.420502,0.336861,0.822903,0.576066,0.164049,0.0658892,0.13456,0.53818,0.494105,0.1903,0.458041,0.0335257,0.537603,0.719033,0.663292,0.646907,0.39441,0.256709,0.215022,0.294441,0.371694,0.203731,0.733666,0.469831,0.611851,0.57152,0.636862,0.660252,0.101656,0.94759,0.00704861,0.620819,0.776564,0.43305,0.78193,0.493436,0.46186,0.020718,0.573436,0.164453,0.499138,0.264296,0.375429,0.383284,0.612418,0.373371,0.400072,0.790969,0.310306,0.0553678,0.810123,0.0128142,0.905359,0.616995,0.929539,0.584585,0.603642,0.862168,0.381617,0.991161,0.153554,0.775615,0.732189,0.204964,0.946519,0.339745,0.153014,0.885164,0.715713,0.768094,0.324579,0.979948,0.374202,0.619296,0.130209,0.0062741,0.352614,0.289361,0.424477,0.4161,0.68194,0.149005,0.271994,0.0214942,0.182108,0.264426,0.852339,0.40789,0.637974,0.69633,0.249823,0.76733,0.484918,0.165711,0.574895,0.301942,0.509549,0.273695,0.143231,0.813923,0.381317,0.177519,0.0487425,0.110927,0.154251,0.776444,0.644718,0.297683,0.655881,0.293663,0.506651,0.0668299,0.996418,0.424981,0.708358,0.743735,0.685688,0.0337774,0.781697,0.549317,0.929423,0.57128,0.104828,0.51915,0.736014,0.626404,0.355903,0.518858,0.0832933,0.805205,0.949271,0.711003,0.285337,0.601856,0.781719,0.0569215,0.827465,0.409239,0.580678,0.961308,0.274508,0.00652081,0.713255,0.312302,0.682627,0.146651,0.866428,0.542379,0.169969,0.129538,0.665127,0.276916,0.496711,0.767967,0.685817,0.783847,0.050683,0.516972,0.294348,0.295827,0.589884,0.155096,0.338406,0.707768,0.780752,0.11741,0.827863,0.332623,0.961717,0.893136,0.52736,0.465455,0.431609,0.0645272,0.0773185,0.276827,0.127309,0.00877768,0.0222777,0.275818,0.0274319,0.340442,0.466708,0.586707,0.248014,0.978408,0.969902,0.522508,0.308718,0.575331,0.629079,0.143967,0.845307,0.398504,0.59208,0.580241,0.46612,0.741797,0.205366,0.545921,0.916264,0.295078,0.999925,0.668107,0.056677,0.502464,0.390422,0.585113,0.105812,0.435987,0.511039,0.756363,0.0476285,0.0612037,0.541102,0.503054,0.204382,0.604316,0.828198,0.33905,0.955264,0.241419,0.986248,0.891871,0.340929,0.892658,0.00887734,0.93072,0.0106853,0.839471,0.782594,0.830593,0.251388,0.078133,0.869336,0.659903,0.805758,0.760702,0.201936,0.217914,0.583082,0.91056,0.666384,0.222722,0.463148,0.195065,0.54014,0.779775,0.463841,0.644578,0.536665,0.976225,0.677443,0.310272,0.919417,0.144921,0.305955,0.74352,0.990797,0.162965,0.37068,0.182517,0.990233,0.138535,0.690415,0.970752,0.0842013,0.897233,0.131638,0.663704,0.153599,0.0447125,0.0335331,0.0399497,0.802675,0.343514,0.0148669,0.10543,0.40557,0.576982,0.137742,0.896548,0.352884,0.763704,0.4525,0.234884,0.611166,0.110885,0.717472,0.718619,0.0794328,0.279776,|0.953291,0.950519,0.165794,0.366778,0.0975905,0.744288,0.741773,0.161586,0.630653,0.154662,0.185599,0.303475,0.605606,0.659929,0.122677,0.354961,0.887289,0.0527294,0.4083,0.713461,0.589155,0.121985,0.998252,0.677236,0.747026,0.747922,0.503696,0.465068,0.43861,0.235079,0.691755,0.0424358,0.100425,0.134856,0.146215,0.606736,0.647325,0.770486,0.989608,0.426953,0.169217,0.750064,0.239823,0.629385,0.118679,0.483414,0.200683,0.00991303,0.899521,0.140316,0.0991255,0.123257,0.112399,0.233505,0.592156,0.831713,0.0157229,0.444019,0.525912,0.343102,0.567378,0.792841,0.411724,0.602648,0.0782642,0.359765,0.94897,0.460679,0.11104,0.786992,0.0397058,0.184846,0.425215,0.961239,0.122256,0.294472,0.0175116,0.681541,0.500841,0.69008,0.438452,0.0958684,0.69595,0.640386,0.155844,0.17756,0.662491,0.604612,0.283271,0.0826974,0.65565,0.898014,0.652327,0.184374,0.188575,0.90177,0.851465,0.228416,0.181433,0.967339,0.785629,0.326661,0.216998,0.626893,0.703742,0.53359,0.378088,0.44374,0.76395,0.482091,0.435401,0.327784,0.428525,0.630151,0.467402,0.28713,0.849346,0.285586,0.166335,0.217873,0.0279477,0.960155,0.157004,0.0278033,0.561852,0.659967,0.521338,0.973909,0.0809638,0.180152,0.0278872,0.581118,0.0479639,0.571402,0.0486795,0.0670343,0.669521,0.872115,0.558384,0.916036,0.0893124,0.510729,0.725218,0.0807141,0.404853,0.12975,0.656737,0.589198,0.00314951,0.836145,0.804642,0.548498,0.539988,0.672894,0.139772,0.0219367,0.245651,0.203499,0.373546,0.193508,0.736092,0.966831,0.214162,0.175871,0.996438,0.0426562,0.997959,0.390061,0.440633,0.285056,0.496857,0.934089,0.384195,0.830956,0.67691,0.314971,0.0213688,0.0848511,0.668324,0.661447,0.506577,0.488201,0.227876,0.311049,0.832528,0.461585,0.154032,0.210931,0.784595,0.643599,0.0494291,0.982429,0.208939,0.716041,0.497136,0.018261,0.553306,0.74546,0.631665,0.116421,0.293548,0.663524,0.608268,0.243679,0.192606,0.543109,0.25572,0.507621,0.816793,0.460278,0.0176081,0.462018,0.150494,0.156599,0.828426,0.0693529,0.794142,0.841632,0.311621,0.142195,0.792312,0.731495,0.874861,0.130954,0.877653,0.226952,0.478806,0.997238,0.0253459,0.64488,0.152128,0.775361,0.541456,0.255641,0.253907,0.162544,0.0706319,0.0339196,0.200791,0.280085,0.871158,0.515623,0.797462,0.809265,0.375379,0.495247,0.310342,0.365793,0.244929,0.279542,0.352316,0.963719,0.599477,0.596244,0.236323,0.225167,0.201567,0.482923,0.445272,0.836596,0.23826,0.0451028,0.380044,0.72534,0.0833653,0.818918,0.91568,0.696413,0.583905,0.601046,0.23932,0.122952,0.826966,0.289393,0.292604,0.0900984,0.767396,0.397923,0.0708565,0.206557,0.0365713,0.771247,0.294605,0.364598,0.388969,0.00686449,0.975939,0.750012,0.656621,0.532814,0.0960472,0.841655,0.796726,0.510021,0.622717,0.681033,0.949308,0.799083,0.914337,0.0774963,0.0675734,0.0528954,0.286415,0.234503,0.883837,0.178552,0.307053,0.737257,0.12868,0.486315,0.245652,0.197575,0.337249,0.86082,0.644163,0.396689,0.245794,0.0780593,0.858883,0.5122,0.528568,0.89795,0.49289,0.657205,0.497096,0.187777,0.503032,0.70425,0.0772886,0.91194,0.424936,0.496158,0.360761,0.00263411,0.355786,0.372375,0.29166,0.492435,0.968198,0.296022,0.157244,0.0378776,0.268571,0.769061,0.66817,0.0623939,0.871081,0.844844,0.722871,0.443473,0.588647,0.505172,0.263176,0.194766,0.196393,0.365561,0.715789,0.0633566,0.217424,0.638631,0.726387,0.549348,0.69835,0.876929,0.910905,0.10843,0.221774,0.816134,0.326707,0.627699,0.904437,0.582998,0.160157,0.0118851,0.0616899,0.399967,0.967379,0.331211,0.142615,0.831236,0.821607,0.46802,0.631316,0.280066,0.0809312,0.244,0.262716,0.779871,0.233768,0.576708,0.988989,0.264892,0.384328,0.137803,0.255431,0.651675,0.27629,0.771665,0.211744,0.0262224,0.0456205,0.329041,0.0212021,0.842751,0.423418,0.884016,0.214873,0.263409,0.467367,0.118706,0.741624,0.413167,0.648426,0.858579,0.957745,0.501131,0.814969,0.814748,0.827373,0.278886,0.433394,0.741339,0.230024,0.617663,0.378141,0.139805,0.339676,0.0374845,0.5322,0.953817,0.958492,0.247239,0.0375683,0.351044,0.0604498,0.424528,0.459504,0.937276,0.100961,0.039395,0.796367,0.581845,0.0804552,0.54806,0.608924,0.917063,0.612624,0.93078,0.215718,0.341393,0.519279,0.529739,0.362957,0.960806,0.513463,0.269873,0.092331,0.209032,0.940082,0.87136,0.989383,0.842064,0.690333,0.0928871,0.618359,0.814814,0.0612109,0.827246,0.46734,0.077406,0.626715,0.0499967,0.899002,0.636686,0.566817,0.673672,0.181666,0.55807,0.111075,0.542874,0.74998,0.714899,0.47562,0.0640465,0.992584,0.117003,0.23168,0.916239,0.431565,0.516562,0.0186754,0.775868,0.508333,0.243118,0.379811,0.142928,0.258927,0.167472,0.871537,0.55803,0.866691,0.845405,0.726723,0.243087,0.836856,0.421326,0.980609,0.814036,0.382694,0.631642,0.339103,0.567574,0.33526,0.275694,0.119749,0.154969,0.515974,0.824513,0.864869,0.273986,0.390824,0.485734,0.942222,0.177126,0.00507802,0.246892,0.0225951,0.90786,0.505173,0.970929,0.980559,0.833534,0.10025,0.345996,0.176668,0.894745,0.47178,0.515348,0.617276,0.946168,0.698141,0.416196,0.249804,0.182606,0.0421165,0.863319,0.512251,0.128655,0.0300091,0.56861,0.570833,0.505552,0.390625,0.958302,0.0476711,0.760069,0.228861,0.629518,0.396748,0.398846,0.0601054,0.835895,0.264085,0.337692,0.550403,0.84004,0.188842,0.873858,0.754139,0.164242,0.889355,0.625023,0.367379,0.766021,0.893705,0.386025,0.778355,0.667482,0.521436,0.88573,0.978,0.301898,0.823245,0.802551,0.12732,0.627028,0.111665,0.401742,0.167225,0.638847,0.221525,0.696548,0.38185,0.281527,0.600791,0.918384,0.529652,0.172568,0.416855,0.710424,0.247692,0.185298,0.464868,0.45238,0.476754,0.0733154,0.872032,0.856237,0.451138,0.14236,0.191361,0.97245,0.982319,0.707255,0.765665,0.896855,0.0928459,0.3149,0.440813,0.87703,0.555511,0.138638,0.375718,0.348014,0.538769,0.568891,0.517477,0.45814,0.369465,0.107087,0.250448,0.60879,0.211932,0.232761,0.626464,0.950446,0.586515,0.96432,0.29099,0.900936,0.546565,0.96905,0.331419,0.241135,0.145074,0.0247332,0.0949791,0.32323,0.611612,0.581106,0.8192,0.618423,0.182343,0.343283,0.221431,0.203061,0.732294,0.448644,0.160944,0.59044,0.930788,0.765477,0.770459,0.604483,0.614775,0.541099,0.524079,0.541212,0.465965,0.442687,0.247492,0.707154,0.817012,0.682944,0.914673,0.297013,0.262359,0.312967,0.0274636,0.619276,0.572414,0.16094,0.519813,0.600894,0.102086,0.144851,0.524674,0.152252,0.988653,0.435051,0.095949,0.645096,0.54351,0.270695,0.39837,0.314297,0.00460923,0.383345,0.190835,0.934195,0.784154,0.554592,0.0883678,0.730655,0.808153,0.146087,0.648859,0.327314,0.187037,0.820027,0.367306,0.258225,0.670194,0.037005,0.49499,0.171855,0.109569,0.0279273,0.619015,0.0755058,0.966312,0.0342321,0.724103,0.998214,0.761238,0.734606,0.298575,0.532351,0.430479,0.454592,0.0923471,0.987053,0.385085,0.919053,0.325774,0.753067,0.550844,0.466845,0.675627,0.454524,0.570646,0.0701057,0.802394,0.677241,0.805396,0.436392,0.605039,0.0245942,0.77384,0.266944,0.792623,0.313074,0.476287,0.01314,0.981381,0.95947,0.582957,0.916995,0.306712,0.419308,0.58062,0.0910981,0.324904,0.390919,0.496144,0.60052,0.679477,0.724186,0.280504,0.998031,0.285532,0.684119,0.00214684,0.860242,0.718016,0.836696,0.0227674,0.555283,0.54168,0.272767,0.408525,0.773966,0.949917,0.283146,0.510036,0.516132,0.450291,0.783584,0.648672,0.181627,0.0425112,0.916033,0.889202,0.909841,0.0220649,0.506245,0.5723,0.410544,0.7456,0.414945,0.755638,0.415677,0.271698,0.157832,0.227759,0.645404,0.148038,0.149765,0.713586,0.040677,0.851714,0.71859,0.871727,0.560227,0.59855,0.974629,0.798342,0.605411,0.59432,0.387253,0.24602,0.0615757,0.743433,0.3077,0.0933102,0.915738,0.473752,0.57998,0.320838,0.232727,0.134256,0.694339,0.261045,0.540114,0.471065,0.621833,0.478591,0.840461,0.350114,0.653546,0.419364,0.776215,0.950899,0.253755,0.201262,0.572152,0.131205,0.799494,0.0868856,0.656688,0.912015,0.223126,0.253118,0.646495,0.58603,0.234912,0.771486,0.949897,0.591995,0.79231,0.777458,0.308944,0.597968,0.771987,0.427953,0.527431,0.0592968,0.711356,0.790379,0.365241,0.544098,0.121817,0.237267,0.0691204,0.85167,0.621363,0.917613,0.88306,0.765988,0.420528,0.907042,0.379906,0.424331,0.318139,0.450265,0.356577,0.721972,0.151211,0.134814,0.563546,0.633975,0.493899,0.416619,0.729371,0.827849,0.408038,0.824867,0.410887,0.0776748,0.536772,0.554259,0.588219,0.103924,0.183984,0.0728136,0.482409,0.273939,0.334574,0.380694,0.0715153,0.303505,0.698372,0.578413,0.342247,0.90215,0.2155,0.649925,0.544541,0.762341,0.770201,0.296821,0.0252478,0.398619,0.209574,0.842715,0.274219,0.040131,0.782315,0.971302,0.223138,0.852999,0.459835,0.746505,0.446917,0.101273,0.498984,0.0434294,0.756924,0.0642817,0.69898,0.195762,0.514311,0.568349,0.292424,0.226578,0.103973,0.995872,0.443041,0.693549,0.417242,0.920153,0.106786,0.294083,0.570294,0.161937,0.264905,0.454151,0.869598,0.53023,0.568255,0.141688,0.98411,0.79646,0.443632,0.18999,0.115252,0.231804,0.0468526,0.958745,0.582307,0.216761,0.915219,0.434729,0.56867,0.181462,0.630714,0.438694,0.0856292,0.622415,0.447736,0.499477,0.294335,0.239354,0.0843628,0.935312,0.280713,0.895671,0.0671747,0.815224,0.720829,0.161165,0.0479138,0.827709,0.718707,0.560513,0.926988,0.647381,0.674825,0.567821,0.306638,|0.200781,0.935863,0.899669,0.796066,0.40596,0.834,0.441161,0.586634,0.0791773,0.714326,0.555318,0.282814,0.428913,0.210421,0.589692,0.462119,0.231992,0.711797,0.587254,0.926027,0.324651,0.529218,0.58715,0.910997,0.115769,0.828342,0.282185,0.00593287,0.569438,0.184882,0.452229,0.330001,0.492391,0.0426638,0.728738,0.997474,0.125277,0.807368,0.253806,0.284882,0.865372,0.801955,0.133831,0.661168,0.507314,0.0573621,0.972437,0.36943,0.414155,0.583448,0.56407,0.918494,0.48476,0.25203,0.504688,0.0384696,0.433654,0.873989,0.0730001,0.208531,0.598256,0.0696955,0.417315,0.0208002,0.874046,0.69587,0.332736,0.178288,0.880276,0.125642,0.0431402,0.182359,0.444948,0.78176,0.012834,0.703058,0.577657,0.83186,0.563093,0.494874,0.550754,0.594406,0.587889,0.881225,0.115164,0.846896,0.341052,0.948445,0.789493,0.0407034,0.960513,0.321904,0.511428,0.556686,0.739875,0.683113,0.812691,0.66018,0.172479,0.191003,0.0183798,0.679334,0.0398269,0.707463,0.0129616,0.252903,0.56403,0.496183,0.582686,0.102261,0.990515,0.125465,0.897732,0.370586,0.0561965,0.661437,0.856541,0.562315,0.621621,0.260868,0.651344,0.0946931,0.753919,0.534535,0.343677,0.566918,0.795579,0.60276,0.12278,0.861277,0.0801135,0.189793,0.395958,0.369591,0.155756,0.345408,0.435379,0.834451,0.963211,0.0949481,0.974376,0.268027,0.388194,0.732329,0.147837,0.598649,0.172154,0.889167,0.980974,0.539305,0.542212,0.0195845,0.788982,0.0674965,0.908978,0.808559,0.886743,0.857106,0.762021,0.752451,0.688084,0.435489,0.817604,0.640059,0.836165,0.000957131,0.882045,0.440982,0.416835,0.121266,0.529353,0.770852,0.357803,0.303255,0.163909,0.0161765,0.650588,0.560209,0.909628,0.0116268,0.464765,0.0612578,0.196644,0.287776,0.986549,0.617723,0.233548,0.58067,0.320653,0.163525,0.472233,0.819458,0.284788,0.030944,0.779019,0.980579,0.439143,0.758826,0.0646791,0.440023,0.273141,0.249895,0.179391,0.095835,0.233854,0.315892,0.938901,0.61932,0.889597,0.198521,0.49231,0.530186,0.129544,0.796232,0.595938,0.402317,0.834776,0.978031,0.317914,0.801004,0.579624,0.712519,0.174112,0.89557,0.426685,0.577374,0.541587,0.887189,0.804701,0.574977,0.183658,0.66926,0.897092,0.540824,0.911423,0.235473,0.291252,0.690055,0.680832,0.554722,0.383459,0.979274,0.154222,0.672658,0.887004,0.799279,0.70788,0.368274,0.304101,0.634286,0.0580084,0.495773,0.586064,0.694826,0.850572,0.767184,0.303753,0.361495,0.319237,0.96526,0.532306,0.76912,0.171076,0.487179,0.667167,0.907078,0.240758,0.663762,0.332705,0.460802,0.521999,0.407309,0.304328,0.927366,0.972211,0.734459,0.484714,0.907231,0.184511,0.89768,0.468416,0.0466715,0.176146,0.308325,0.536754,0.513989,0.133694,0.944966,0.224981,0.191237,0.97567,0.261003,0.56587,0.513996,0.750993,0.131111,0.780482,0.84458,0.272378,0.117757,0.350719,0.799564,0.00103903,0.456023,0.434854,0.527185,0.468965,0.996741,0.0653541,0.022997,0.157382,0.869087,0.930706,0.408672,0.78308,0.78479,0.790672,0.182303,0.746355,0.241787,0.557207,0.00819606,0.728971,0.785193,0.801344,0.0336163,0.36919,0.404471,0.462265,0.368633,0.610939,0.698152,0.913666,0.283698,0.983401,0.103997,0.928022,0.952078,0.165672,0.142345,0.955631,0.688777,0.470465,0.60816,0.643425,0.35055,0.665644,0.828852,0.674468,0.344444,0.0592678,0.543692,0.613083,0.823429,0.280373,0.8121,0.650427,0.137303,0.142908,0.610669,0.533802,0.655049,0.130343,0.257104,0.937419,0.85164,0.592719,0.866744,0.840666,0.018503,0.775867,0.0745671,0.78976,0.385293,0.690173,0.886861,0.769411,0.506675,0.0508877,0.535527,0.679818,0.54183,0.0270473,0.552514,0.661214,0.140269,0.470188,0.602196,0.844309,0.615094,0.57101,0.358218,0.406356,0.459445,0.894869,0.279115,0.926175,0.496625,0.89472,0.985561,0.626963,0.0147938,0.888045,0.948831,0.877891,0.618513,0.738648,0.496212,0.900944,0.0955771,0.536128,0.856205,0.0623783,0.871974,0.0189906,0.26163,0.12076,0.722193,0.0616954,0.507864,0.700614,0.464819,0.868441,0.950664,0.382453,0.0508469,0.0436921,0.248745,0.0889916,0.947494,0.477039,0.667028,0.26368,0.178397,0.273942,0.98162,0.257111,0.60377,0.830966,0.0741088,0.731901,0.881353,0.833465,0.625125,0.83603,0.64863,0.695841,0.735788,0.499151,0.0962434,0.268055,0.797029,0.5253,0.684764,0.0510812,0.0662182,0.517619,0.579829,0.933031,0.721708,0.701415,0.0942589,0.673599,0.19718,0.226586,0.115121,0.232656,0.969293,0.603476,0.0369474,0.60694,0.261058,0.841989,0.988591,0.158348,0.744603,0.0950111,0.25873,0.0798396,0.746157,0.238179,0.252088,0.166678,0.644045,0.0269669,0.8148,0.79078,0.942071,0.326702,0.258168,0.545257,0.258417,0.147923,0.415697,0.793346,0.987881,0.840831,0.103153,0.154183,0.232502,0.417282,0.838445,0.166511,0.885923,0.742436,0.749891,0.144023,0.0776976,0.171532,0.477116,0.0720366,0.565478,0.821032,0.63853,0.695695,0.240028,0.634391,0.046978,0.153385,0.478431,0.650199,0.912126,0.661042,0.973868,0.4993,0.0154811,0.654153,0.622388,0.322691,0.203902,0.0116763,0.735847,0.421121,0.420661,0.699484,0.758466,0.405748,0.0974826,0.613329,0.883635,0.787459,0.955371,0.925455,0.241241,0.557684,0.0345226,0.8108,0.731882,0.659108,0.350158,0.347002,0.670423,0.398518,0.717981,0.0508867,0.833479,0.166422,0.158825,0.630599,0.399803,0.609235,0.225118,0.0854672,0.446144,0.020092,0.791442,0.189761,0.0587558,0.762657,0.978349,0.0172398,0.0592008,0.376868,0.966886,0.98334,0.493096,0.0346803,0.165537,0.728251,0.429428,0.553414,0.122009,0.224283,0.497828,0.240022,0.986926,0.324982,0.661268,0.359308,0.936067,0.149423,0.567677,0.227706,0.481931,0.179009,0.23345,0.153668,0.497556,0.518485,0.791123,0.667934,0.294051,0.333607,0.457957,0.0121911,0.563087,0.10727,0.360669,0.277613,0.136502,0.753321,0.93666,0.31422,0.649655,0.993536,0.029627,0.0937174,0.0962343,0.286441,0.770205,0.263396,0.169154,0.330167,0.0119851,0.638748,0.449569,0.144691,0.601382,0.207868,0.0114961,0.740791,0.587922,0.383324,0.505773,0.46283,0.768779,0.327285,0.731202,0.0479171,0.829767,0.254531,0.539313,0.744082,0.0381934,0.650241,0.868019,0.737129,0.125454,0.1495,0.485592,0.844734,0.768056,0.445322,0.258962,0.686599,0.269864,0.574576,0.803672,0.614949,0.904243,0.128793,0.913591,0.981094,0.834186,0.370548,0.292882,0.352793,0.656126,0.58112,0.557119,0.546308,0.871111,0.715218,0.691712,0.536007,0.367724,0.464424,0.581444,0.639406,0.918982,0.102273,0.846152,0.0210499,0.493901,0.00770932,0.812924,0.218367,0.549056,0.275762,0.218857,0.42455,0.731023,0.294993,0.33035,0.463845,0.460619,0.00842732,0.977419,0.779011,0.860924,0.481966,0.0247502,0.875965,0.148011,0.647712,0.137631,0.384193,0.554143,0.434401,0.431925,0.391857,0.252464,0.593475,0.27619,0.414705,0.160622,0.112009,0.362433,0.241285,0.802275,0.538619,0.87399,0.760617,0.0347677,0.972147,0.912595,0.0479779,0.720881,0.901886,0.162815,0.186596,0.306698,0.649278,0.0775244,0.602599,0.0342003,0.502174,0.945001,0.396568,0.253662,0.187354,0.000841081,0.0737557,0.697931,0.032965,0.675267,0.967867,0.361273,0.37907,0.504602,0.128962,0.871848,0.28349,0.875826,0.305304,0.462812,0.952875,0.285279,0.433929,0.339139,0.777476,0.137301,0.117356,0.856786,0.530409,0.719146,0.0961717,0.578449,0.575466,0.713129,0.202016,0.860871,0.752303,0.0827504,0.254828,0.222267,0.846693,0.546578,0.498118,0.195778,0.926442,0.380307,0.423813,0.708427,0.500869,0.31294,0.661823,0.915072,0.35236,0.795255,0.162634,0.737668,0.336147,0.776092,0.0892264,0.633916,0.93885,0.159144,0.141248,0.0911215,0.519979,0.426219,0.723402,0.163144,0.684172,0.666614,0.784374,0.242219,0.0444423,0.586633,0.732905,0.595775,0.51813,0.92788,0.897241,0.158467,0.688657,0.522321,0.266795,0.518029,0.712136,0.439123,0.103576,0.604889,0.741889,0.252468,0.580406,0.599522,0.768824,0.673377,0.616723,0.782518,0.863703,0.549283,0.752094,0.762072,0.505939,0.7496,0.0364105,0.776304,0.832025,0.213456,0.499096,0.560051,0.908492,0.682061,0.207772,0.813291,0.809197,0.0609899,0.537041,0.291087,0.342039,0.873316,0.649014,0.633351,0.70322,0.195267,0.478368,0.956405,0.507139,0.57627,0.652042,0.158938,0.396445,0.212601,0.23883,0.485179,0.327935,0.68929,0.981274,0.448546,0.545299,0.617669,0.385184,0.194994,0.700157,0.218866,0.786043,0.0450908,0.0489479,0.976741,0.84043,0.0943017,0.520417,0.975426,0.0150738,0.53344,0.0791408,0.479036,0.0919799,0.322092,0.508546,0.058521,0.383409,0.286887,0.745583,0.714579,0.491762,0.844674,0.160884,0.881478,0.393102,0.466226,0.0746229,0.935199,0.760525,0.976179,0.693312,0.464699,0.241821,0.923864,0.499948,0.832503,0.818236,0.503074,0.767451,0.0187507,0.961467,0.228136,0.123747,0.357251,0.96765,0.798505,0.31878,0.487486,0.740337,0.0131224,0.623319,0.24257,0.573488,0.0224414,0.600892,0.0444791,0.211818,0.642601,0.798452,0.0656227,0.0132313,0.0795619,0.0878363,0.547769,0.334503,0.245904,0.210587,0.419842,0.835518,0.780868,0.0665532,0.226669,0.724122,0.986558,0.618892,0.000959039,0.299939,0.765752,0.426213,0.795744,0.345991,0.544109,0.511704,0.760383,0.130457,0.224973,0.93316,0.238279,0.0310878,0.113246,0.922305,0.562719,0.550413,0.0903626,0.846399,0.213145,0.0576885,0.121194,0.199821,0.709683,0.183231,0.800451,0.54153,0.643663,0.251875,0.349338,0.131383,0.982129,0.265764,0.761349,0.14132,0.0583695,0.880254,0.582576,0.02016,0.510224,0.670871,0.412996,0.833908,0.480635,0.634839,0.0913408,|0.855398,0.597582,0.133004,0.691708,0.35758,0.194819,0.0947737,0.989127,0.840544,0.594165,0.33946,0.470174,0.804288,0.423783,0.767912,0.410333,0.0176398,0.14344,0.85784,0.489327,0.194668,0.424402,0.515338,0.169662,0.992524,0.218724,0.20152,0.832576,0.689749,0.933918,0.322435,0.312973,0.430338,0.967701,0.951745,0.283161,0.00607824,0.818462,0.0473941,0.636237,0.601201,0.902618,0.311905,0.951288,0.874705,0.396342,0.573193,0.822179,0.595081,0.0451871,0.907763,0.30446,0.692944,0.0916445,0.104198,0.942305,0.340484,0.0481945,0.580357,0.293702,0.837648,0.517598,0.0145135,0.510189,0.830571,0.146142,0.00838411,0.262632,0.0853365,0.274481,0.392983,0.549816,0.828403,0.378326,0.595283,0.894136,0.898461,0.398428,0.610064,0.37117,0.32462,0.633626,0.237513,0.681692,0.297922,0.0820085,0.47472,0.937721,0.0755538,0.55478,0.157478,0.914729,0.822498,0.0123892,0.0701395,0.815508,0.979654,0.117577,0.796193,0.906608,0.969444,0.798081,0.267041,0.455228,0.643452,0.613998,0.396075,0.232054,0.117641,0.00157499,0.564688,0.155572,0.878757,0.787484,0.562088,0.555346,0.747943,0.482588,0.0931289,0.413303,0.722739,0.162585,0.229675,0.705951,0.854045,0.736312,0.189777,0.910187,0.585041,0.984398,0.934653,0.8786,0.204258,0.625685,0.633647,0.0963184,0.259523,0.675651,0.0244722,0.480037,0.720089,0.826264,0.0375936,0.622548,0.0464756,0.138549,0.28872,0.840997,0.645371,0.240024,0.410831,0.505837,0.45814,0.264867,0.523351,0.215784,0.355916,0.72611,0.393646,0.882291,0.720382,0.751112,0.261804,0.289008,0.767872,0.406085,0.0573106,0.127235,0.278034,0.250966,0.733578,0.592534,0.986474,0.740967,0.0974462,0.264511,0.565946,0.862747,0.620534,0.592431,0.51053,0.176461,0.809507,0.0526402,0.693505,0.281636,0.429563,0.895108,0.783752,0.0862552,0.365818,0.229011,0.970425,0.39789,0.860992,0.892193,0.608099,0.222291,0.147833,0.199293,0.438222,0.532216,0.463505,0.448127,0.881588,0.115944,0.158021,0.222572,0.121105,0.150511,0.178887,0.304555,0.496972,0.524142,0.745142,0.182699,0.789965,0.544844,0.041024,0.202023,0.55281,0.399588,0.880696,0.0218918,0.277856,0.853634,0.0831916,0.983419,0.705693,0.0875614,0.228657,0.465885,0.144924,0.651361,0.41599,0.513377,0.455243,0.76139,0.935309,0.471128,0.250914,0.975715,0.36259,0.435205,0.681385,0.648295,0.0339198,0.100064,0.137755,0.16036,0.496108,0.307811,0.79701,0.496919,0.170771,0.87416,0.431703,0.612337,0.301791,0.58566,0.901835,0.010242,0.422688,0.55964,0.475053,0.0975297,0.519759,0.950955,0.207681,0.228922,0.642484,0.907951,0.0766327,0.826303,0.604758,0.192022,0.866202,0.452069,0.93189,0.981781,0.968878,0.998061,0.700229,0.530156,0.18998,0.196307,0.558777,0.583793,0.694198,0.250934,0.1787,0.160918,0.0199941,0.890009,0.663016,0.677239,0.627697,0.790194,0.225825,0.699689,0.133963,0.242964,0.544327,0.388572,0.0689403,0.253299,0.996983,0.896627,0.465223,0.140832,0.64547,0.20828,0.730016,0.460313,0.807298,0.486776,0.429224,0.600656,0.398146,0.242798,0.450814,0.0811394,0.349186,0.103488,0.659233,0.23144,0.232885,0.00991964,0.980839,0.435777,0.223262,0.532695,0.0784959,0.172188,0.350828,0.471794,0.114419,0.00823486,0.00920534,0.631145,0.571187,0.364295,0.884338,0.73914,0.870368,0.888969,0.979852,0.938432,0.0967429,0.851824,0.333115,0.106619,0.727866,0.746983,0.207361,0.935083,0.696831,0.525497,0.468475,0.236104,0.271069,0.640367,0.874343,0.400273,0.559564,0.761971,0.876224,0.919097,0.669745,0.405822,0.13746,0.954168,0.0994296,0.0732365,0.703191,0.513011,0.0844389,0.459123,0.471363,0.854787,0.16629,0.608505,0.695687,0.528347,0.765904,0.119352,0.369336,0.522688,0.726824,0.731217,0.621826,0.703914,0.151761,0.632969,0.0425716,0.646065,0.427463,0.639887,0.609467,0.955757,0.656127,0.596172,0.699634,0.764914,0.148177,0.237102,0.706879,0.34286,0.677423,0.475894,0.722618,0.182989,0.479538,0.180004,0.747282,0.961639,0.210431,0.497642,0.740763,0.281427,0.285797,0.939964,0.361255,0.612913,0.480925,0.582836,0.996835,0.0297304,0.649694,0.833659,0.0234402,0.997309,0.511945,0.224917,0.502487,0.453263,0.45341,0.498191,0.951486,0.178652,0.141916,0.135171,0.108361,0.346085,0.371266,0.726833,0.736795,0.181722,0.521773,0.236357,0.864588,0.360042,0.855667,0.450478,0.859565,0.927269,0.423386,0.711722,0.315632,0.132916,0.920338,0.159491,0.443179,0.703802,0.326475,0.67395,0.568786,0.782354,0.987167,0.124275,0.988072,0.604535,0.333275,0.60685,0.308972,0.679524,0.769124,0.899877,0.342963,0.45143,0.192057,0.881395,0.767495,0.197035,0.657696,0.847042,0.826865,0.496422,0.777229,0.898532,0.954486,0.294886,0.580601,0.0744733,0.162687,0.646251,0.607646,0.399625,0.80956,0.42439,0.543784,0.111776,0.133024,0.0432356,0.772394,0.339158,0.76173,0.244203,0.754542,0.775599,0.0971792,0.453936,0.0910258,0.98954,0.637015,0.802898,0.63191,0.260381,0.802693,0.584,0.311299,0.441594,0.880404,0.601515,0.905686,0.154807,0.541403,0.680048,0.548934,0.370483,0.2337,0.298508,0.775755,0.839534,0.782831,0.860058,0.216797,0.961344,0.499727,0.282121,0.387049,0.769505,0.472245,0.0913869,0.15856,0.713973,0.629573,0.0722916,0.15445,0.244793,0.950906,0.297727,0.92692,0.645997,0.906554,0.0277364,0.47816,0.566912,0.0580553,0.691118,0.95764,0.0505146,0.407466,0.56851,0.523026,0.888748,0.791024,0.148308,0.744233,0.869835,0.632811,0.715912,0.346865,0.899072,0.82387,0.625501,0.596953,0.457489,0.206821,0.73306,0.951921,0.515543,0.650054,0.695348,0.811354,0.964302,0.814419,0.624594,0.530714,0.335576,0.9034,0.289904,0.0956277,0.275773,0.181092,0.833449,0.711566,0.517012,0.399383,0.864196,0.512993,0.298645,0.949379,0.707333,0.136701,0.2003,0.217879,0.941938,0.925194,0.421877,0.477372,0.186679,0.541843,0.617751,0.643351,0.482032,0.00277954,0.800434,0.0102513,0.861974,0.903636,0.894544,0.241273,0.407969,0.549143,0.656791,0.871231,0.367123,0.441726,0.223636,0.86855,0.230791,0.902133,0.720175,0.67042,0.720954,0.291812,0.655961,0.290195,0.190015,0.419454,0.322264,0.619269,0.269107,0.318328,0.320527,0.989047,0.752832,0.600819,0.550265,0.757973,0.345071,0.633999,0.425244,0.114476,0.685766,0.983692,0.587307,0.991655,0.187442,0.0266804,0.779818,0.204235,0.342607,0.583984,0.353751,0.568587,0.0265044,0.804883,0.90399,0.465763,0.257723,0.81289,0.999359,0.831476,0.302346,0.659783,0.643705,0.314947,0.333912,0.932894,0.427438,0.28116,0.582175,0.58341,0.44212,0.588504,0.811615,0.789943,0.0589511,0.884444,0.394632,0.0907406,0.163662,0.530256,0.405872,0.406262,0.146884,0.77495,0.755596,0.995432,0.530605,0.130587,0.0239449,0.247762,0.797632,0.719468,0.0997852,0.184401,0.942097,0.946027,0.937224,0.132021,0.360457,0.186929,0.688596,0.891926,0.216926,0.33909,0.912356,0.908604,0.0746871,0.0750215,0.0343734,0.251034,0.0760606,0.12682,0.469643,0.216354,0.548815,0.446325,0.112319,0.971886,0.133487,0.724262,0.191601,0.296277,0.429929,0.821503,0.126583,0.0330186,0.850189,0.418985,0.163405,0.796914,0.617745,0.763742,0.381285,0.946419,0.228528,0.512119,0.829315,0.223726,0.874063,0.725035,0.0613452,0.93271,0.490303,0.770842,0.410841,0.561978,0.658066,0.603354,0.111644,0.921415,0.0145979,0.963987,0.577514,0.5684,0.359723,0.432996,0.822173,0.359744,0.793706,0.397695,0.384266,0.603226,0.832474,0.53501,0.136066,0.549441,0.77658,0.842989,0.0703257,0.344605,0.763762,0.784288,0.397443,0.836386,0.127053,0.0215019,0.122482,0.223379,0.204281,0.678287,0.990978,0.232152,0.298188,0.231872,0.854726,0.69551,0.0288653,0.173005,0.321914,0.868529,0.258839,0.835869,0.304733,0.809865,0.617252,0.820947,0.360255,0.0514752,0.935888,0.82101,0.943221,0.870899,0.111964,0.360902,0.321334,0.307755,0.42813,0.03873,0.301759,0.599616,0.566204,0.874458,0.225772,0.612008,0.79651,0.354443,0.474928,0.386668,0.989745,0.0507452,0.134385,0.899048,0.684557,0.179533,0.18534,0.519758,0.902557,0.551851,0.434293,0.578002,0.314695,0.155662,0.60331,0.429552,0.36086,0.895325,0.318319,0.182874,0.562999,0.929163,0.923122,0.104045,0.833561,0.264433,0.854646,0.675293,0.348946,0.561707,0.642854,0.085294,0.215767,0.0334485,0.215344,0.441289,0.268059,0.112631,0.600516,0.461607,0.13305,0.135254,0.87938,0.803455,0.343742,0.649223,0.638854,0.553326,0.258864,0.679815,0.637088,0.661679,0.744318,0.680409,0.179228,0.719365,0.3968,0.425444,0.11889,0.835198,0.488414,0.400378,0.146473,0.638102,0.437706,0.0292027,0.376561,0.651036,0.683735,0.630419,0.864548,0.86485,0.579241,0.317402,0.843156,0.420083,0.716492,0.445295,0.984317,0.0716523,0.156477,0.530254,0.303037,0.278945,0.303047,0.596219,0.543843,0.55989,0.519315,0.423361,0.212858,0.869162,0.628758,0.242956,0.160499,0.32107,0.122717,0.342047,0.325301,0.205897,0.818548,0.965686,0.627451,0.195716,0.193792,0.774554,0.176,0.338276,0.27492,0.953508,0.565551,0.470135,0.145663,0.0864277,0.680487,0.209191,0.0996485,0.178419,0.430377,0.811215,0.726232,0.505792,0.753832,0.322117,0.573345,0.180174,0.538234,0.499538,0.57162,0.518818,0.746139,0.704485,0.773116,0.594714,0.502949,0.174432,0.347629,0.593548,0.178912,0.442767,0.997243,0.306148,0.712752,0.22214,0.106264,0.475929,0.224059,0.629033,0.0221192,0.230308,0.834405,0.669863,0.211348,0.895911,0.965121,0.231703,0.803858,0.491377,0.5385,0.884319,0.870599,0.67531,0.781996,0.881754,0.639971,0.740965,0.844638,|0.941927,0.496881,0.351904,0.181789,0.443693,0.584173,0.564452,0.891181,0.698662,0.526486,0.0261475,0.20292,0.715403,0.562666,0.205029,0.782457,0.247473,0.3837,0.52899,0.657891,0.694314,0.128203,0.294395,0.407995,0.995052,0.336197,0.994376,0.217171,0.518854,0.95347,0.999809,0.925465,0.751553,0.925639,0.595612,0.950103,0.0307434,0.609509,0.207919,0.836681,0.37676,0.847255,0.0275763,0.270277,0.284898,0.662691,0.670737,0.0477872,0.049207,0.172933,0.205073,0.54865,0.355129,0.0593706,0.219532,0.845494,0.841903,0.970316,0.264996,0.312361,0.792849,0.382471,0.151649,0.19979,0.573508,0.56933,0.693739,0.602545,0.214011,0.101032,0.805244,0.267567,0.0402175,0.872843,0.5766,0.399927,0.837681,0.40124,0.317792,0.205381,0.881508,0.260859,0.875758,0.00515234,0.624215,0.247639,0.143395,0.547326,0.0335339,0.754195,0.17804,0.825214,0.744976,0.813451,0.676402,0.755354,0.145128,0.800524,0.121204,0.0251018,0.583984,0.751824,0.771355,0.345997,0.297715,0.25341,0.569926,0.771208,0.579207,0.859574,0.854247,0.866705,0.0529609,0.474624,0.229678,0.481515,0.690405,0.655916,0.764364,0.796583,0.983689,0.86163,0.631455,0.348011,0.698229,0.472366,0.878869,0.456388,0.354603,0.620828,0.945302,0.21449,0.684294,0.390417,0.0344206,0.668219,0.623506,0.635469,0.624047,0.116276,0.542,0.25968,0.158407,0.855192,0.440404,0.979871,0.932026,0.287075,0.866252,0.915158,0.204504,0.87946,0.114746,0.449263,0.815198,0.809517,0.665325,0.886387,0.172978,0.970921,0.448973,0.881947,0.954176,0.276218,0.582388,0.634142,0.559959,0.92791,0.273769,0.801544,0.327366,0.697608,0.00709826,0.975783,0.239004,0.371753,0.156499,0.577718,0.582655,0.860938,0.798166,0.975639,0.80712,0.0629382,0.678126,0.0286008,0.887127,0.371768,0.68733,0.0647898,0.087979,0.341443,0.841435,0.707369,0.60973,0.700039,0.149595,0.990925,0.193859,0.0403542,0.830532,0.215081,0.976702,0.203223,0.98689,0.179229,0.258348,0.359355,0.724374,0.138704,0.432059,0.989417,0.574484,0.537799,0.191792,0.945448,0.56308,0.106971,0.576275,0.496739,0.169738,0.81889,0.917782,0.725471,0.986255,0.363878,0.117427,0.999049,0.417892,0.710271,0.641297,0.852802,0.30378,0.136824,0.610819,0.506945,0.322331,0.623504,0.470753,0.782536,0.169486,0.199282,0.715575,0.935876,0.970706,0.592458,0.902528,0.0713409,0.789334,0.598632,0.0183345,0.208453,0.89159,0.908409,0.201543,0.598675,0.233764,0.434886,0.241331,0.283248,0.886395,0.982887,0.772137,0.0224239,0.60093,0.970215,0.560775,0.196182,0.0720701,0.56753,0.620143,0.533989,0.314062,0.666471,0.296503,0.715005,0.370945,0.867966,0.147253,0.175878,0.386279,0.18566,0.102482,0.742096,0.907156,0.780487,0.181697,0.144883,0.239088,0.405489,0.136742,0.0502822,0.502291,0.312903,0.402434,0.411845,0.234599,0.574483,0.250828,0.849137,0.737117,0.266205,0.650954,0.938646,0.223926,0.046332,0.804491,0.244523,0.332883,0.874841,0.00304115,0.27934,0.391003,0.321593,0.750756,0.782632,0.169862,0.668757,0.377336,0.151728,0.255917,0.895864,0.982158,0.622988,0.274364,0.672927,0.119865,0.130893,0.290031,0.8004,0.0695986,0.980677,0.0895252,0.610359,0.215538,0.685354,0.860415,0.259942,0.0484865,0.0367562,0.644566,0.388939,0.20879,0.956514,0.715795,0.718561,0.618732,0.534699,0.724397,0.535952,0.11748,0.951221,0.694616,0.567231,0.563631,0.8311,0.135285,0.85046,0.716487,0.753899,0.502382,0.886699,0.811484,0.141948,0.309938,0.122373,0.332619,0.730432,0.254462,0.966596,0.415729,0.649791,0.641208,0.16058,0.776799,0.256427,0.0121977,0.745184,0.631794,0.675004,0.181912,0.858123,0.599271,0.547441,0.822885,0.65229,0.853877,0.646794,0.289908,0.710656,0.248618,0.522132,0.174402,0.382937,0.607976,0.270766,0.334782,0.319702,0.149302,0.488534,0.383761,0.0180373,0.624221,0.239299,0.223883,0.778016,0.310726,0.345207,0.0821533,0.526177,0.152429,0.171616,0.420131,0.200688,0.591605,0.636912,0.615774,0.00255471,0.165083,0.692726,0.595596,0.972461,0.562634,0.982334,0.211444,0.250236,0.16822,0.0245594,0.814608,0.282268,0.682777,0.825545,0.653488,0.59754,0.791856,0.645976,0.539452,0.216632,0.976935,0.0543961,0.201728,0.33121,0.897135,0.469756,0.55892,0.12305,0.464605,0.766437,0.366421,0.909184,0.312005,0.277468,0.290664,0.986818,0.727819,0.703738,0.614093,0.0950954,0.251876,0.608372,0.364713,0.646464,0.349135,0.399008,0.294597,0.595438,0.522841,0.739456,0.361045,0.3138,0.250758,0.477427,0.46439,0.362764,0.486844,0.177196,0.3834,0.580992,0.270193,0.397106,0.0401608,0.96668,0.555521,0.264635,0.460323,0.636363,0.209393,0.762522,0.770997,0.868731,0.959373,0.375734,0.503027,0.12226,0.113643,0.678605,0.836138,0.969341,0.830571,0.00822508,0.972513,0.213177,0.0968908,0.580571,0.0559982,0.32902,0.316818,0.154008,0.228263,0.74824,0.0182782,0.297757,0.164203,0.390155,0.805723,0.982477,0.985638,0.386665,0.335455,0.0272781,0.606013,0.529981,0.356521,0.752356,0.461037,0.21191,0.0439786,0.329214,0.456439,0.82759,0.446006,0.534694,0.484751,0.580472,0.883334,0.235828,0.143994,0.400523,0.264016,0.42306,0.952871,0.713576,0.328733,0.934034,0.36316,0.588422,0.213515,0.132416,0.128845,0.544466,0.733645,0.96535,0.37074,0.617815,0.662424,0.933331,0.777204,0.410435,0.598227,0.683192,0.11701,0.242387,0.735653,0.628031,0.369399,0.304727,0.597574,0.473057,0.179259,0.899792,0.138605,0.127282,0.496174,0.304887,0.383914,0.678494,0.307393,0.0351098,0.262718,0.417331,0.209244,0.000406444,0.567422,0.908174,0.233517,0.640996,0.884017,0.701895,0.220409,0.467157,0.5775,0.232287,0.489057,0.880983,0.932758,0.118091,0.249512,0.339615,0.882374,0.790032,0.593019,0.432268,0.773278,0.979017,0.491728,0.191918,0.910489,0.648909,0.60037,0.883404,0.272292,0.949896,0.887492,0.654418,0.979084,0.571986,0.864074,0.428983,0.623025,0.789091,0.950999,0.37932,0.459037,0.893152,0.0867697,0.706959,0.614391,0.74194,0.687697,0.334954,0.0361716,0.800474,0.646929,0.03408,0.376458,0.500587,0.500362,0.0114873,0.0695465,0.725687,0.194006,0.442945,0.817259,0.372092,0.659669,0.835309,0.569164,0.666362,0.72158,0.176128,0.328971,0.263787,0.537392,0.987948,0.284847,0.991033,0.68253,0.663493,0.505896,0.727987,0.138206,0.317753,0.850638,0.618957,0.357116,0.32455,0.482125,0.733343,0.629905,0.387439,0.641809,0.264804,0.45673,0.959607,0.465988,0.129909,0.354225,0.175244,0.378486,0.135417,0.37388,0.567039,0.143416,0.458634,0.38214,0.448502,0.132515,0.926515,0.930348,0.159269,0.116407,0.974915,0.197437,0.358211,0.306829,0.996548,0.729878,0.119602,0.83603,0.172762,0.232818,0.608732,0.526168,0.346072,0.492602,0.0137008,0.0587305,0.0653766,0.266784,0.239741,0.518854,0.497738,0.886326,0.099385,0.100379,0.815465,0.897358,0.845485,0.443212,0.491387,0.438087,0.223982,0.877433,0.412171,0.332564,0.978502,0.437081,0.949332,0.623462,0.728071,0.375758,0.162814,0.528498,0.232069,0.67396,0.927298,0.776366,0.394287,0.74675,0.618813,0.167541,0.973722,0.655284,0.841812,0.366207,0.069043,0.0579957,0.568287,0.538844,0.399173,0.774691,0.171393,0.551674,0.451695,0.34681,0.0956293,0.294139,0.986008,0.957103,0.637568,0.681401,0.146193,0.613032,0.335938,0.0483632,0.404167,0.0363681,0.874962,0.601051,0.320671,0.0809003,0.886016,0.83465,0.40604,0.693418,0.730538,0.237098,0.439573,0.0446306,0.692101,0.299697,0.232148,0.936676,0.147911,0.440712,0.788547,0.406746,0.725149,0.243323,0.536292,0.849219,0.888428,0.486359,0.577644,0.515247,0.174394,0.245018,0.956017,0.921635,0.698127,0.7752,0.707606,0.45062,0.729261,0.984179,0.918876,0.937373,0.6917,0.828603,0.368031,0.724176,0.508978,0.650516,0.696547,0.809295,0.414434,0.0466558,0.755242,0.69514,0.923348,0.929017,0.301653,0.563473,0.424715,0.118122,0.723828,0.248342,0.0863881,0.00412059,0.705222,0.754094,0.75691,0.339443,0.915562,0.200716,0.900319,0.545896,0.524305,0.895215,0.873501,0.547054,0.818767,0.216446,0.580123,0.248956,0.502837,0.230154,0.541302,0.994806,0.377892,0.541939,0.83369,0.432587,0.859603,0.010489,0.359975,0.944103,0.139845,0.0548391,0.798239,0.513046,0.0751263,0.742083,0.628202,0.155491,0.258066,0.0201015,0.440583,0.708607,0.647961,0.0548001,0.925979,0.734032,0.258389,0.330583,0.169494,0.87984,0.306035,0.183006,0.350886,0.0183582,0.745413,0.149209,0.108949,0.33739,0.770383,0.362774,0.142588,0.310966,0.331993,0.508669,0.0231575,0.140679,0.000201523,0.338458,0.754052,0.156759,0.913909,0.245025,0.202112,0.276268,0.914289,0.567935,0.535281,0.47815,0.442785,0.880147,0.183683,0.0982881,0.938681,0.907263,0.79868,0.791231,0.914166,0.697249,0.60951,0.363075,0.830478,0.135706,0.219064,0.975384,0.322808,0.723453,0.458655,0.00760704,0.850235,0.588547,0.911037,0.202365,0.94712,0.65805,0.915698,0.30167,0.461762,0.267864,0.26275,0.771512,0.618997,0.88025,0.537863,0.869877,0.765293,0.631679,0.63282,0.580101,0.499114,0.25662,0.13442,0.480676,0.672509,0.753349,0.118684,0.967299,0.700003,0.751977,0.594211,0.481474,0.214637,0.428189,0.497989,0.294031,0.374561,0.751475,0.413497,0.311234,0.227403,0.645532,0.610461,0.0184166,0.157153,0.586195,0.605344,0.0762884,0.0387534,0.715863,0.369107,0.988163,0.222486,0.234036,0.482961,0.619622,0.0808116,0.52906,0.025156,0.835667,0.775981,0.291279,0.289213,0.995113,0.678063,0.0145649,0.574273,0.741711,0.833615,0.746531,0.42606,0.111969,0.939072,0.516575,0.252893,|0.124877,0.699749,0.429965,0.857909,0.890314,0.0536224,0.108674,0.0881355,0.829338,0.665837,0.734345,0.730253,0.589992,0.658446,0.316301,0.762079,0.0843493,0.771827,0.435404,0.312487,0.792318,0.0170142,0.0511273,0.856128,0.0162895,0.862925,0.831531,0.0626807,0.447652,0.39278,0.902205,0.935863,0.789223,0.574129,0.2289,0.850653,0.509894,0.153916,0.658571,0.0792786,0.106624,0.29055,0.274333,0.721201,0.616404,0.888858,0.723704,0.899322,0.59245,0.0118317,0.963293,0.203854,0.333283,0.724024,0.960508,0.271705,0.0342618,0.658345,0.318447,0.985046,0.306841,0.429802,0.253664,0.506386,0.308208,0.118445,0.347773,0.794943,0.318287,0.917906,0.491008,0.655929,0.970133,0.16735,0.778477,0.48748,0.091024,0.041629,0.957567,0.978337,0.263703,0.564525,0.807805,0.436515,0.4634,0.921457,0.484852,0.40111,0.167006,0.36475,0.542212,0.906121,0.149202,0.206223,0.4122,0.185055,0.621101,0.399362,0.880775,0.391109,0.487162,0.531054,0.268881,0.356424,0.299818,0.251097,0.672777,0.584487,0.947834,0.845547,0.39274,0.731035,0.183657,0.145049,0.393609,0.582496,0.61384,0.122385,0.367806,0.571827,0.598517,0.165953,0.804165,0.843908,0.499306,0.854593,0.24268,0.174272,0.981465,0.234403,0.0697309,0.727928,0.083834,0.310834,0.654251,0.668216,0.482438,0.33397,0.420465,0.445588,0.187129,0.685784,0.72613,0.377647,0.933416,0.412903,0.95557,0.773863,0.203231,0.45533,0.119714,0.68058,0.528074,0.287956,0.932338,0.684893,0.117192,0.216582,0.676148,0.350771,0.667497,0.574353,0.72795,0.240953,0.49157,0.843819,0.401743,0.257451,0.718526,0.790378,0.280307,0.144577,0.49684,0.503473,0.561544,0.572661,0.0489354,0.019477,0.60475,0.466318,0.182281,0.923121,0.29629,0.650317,0.366851,0.337377,0.0595961,0.639162,0.935015,0.358262,0.231058,0.831368,0.540022,0.798087,0.313085,0.566016,0.608511,0.744121,0.257692,0.8876,0.514407,0.693252,0.201368,0.748956,0.73508,0.930251,0.340425,0.0129942,0.632487,0.457869,0.0124523,0.253243,0.00718033,0.216927,0.149341,0.504782,0.0611222,0.597391,0.755084,0.168151,0.833245,0.519176,0.853694,0.580114,0.64425,0.140339,0.936817,0.400123,0.366162,0.628068,0.439562,0.00276244,0.24679,0.0181752,0.0576504,0.147143,0.196198,0.492676,0.921376,0.274535,0.753811,0.872668,0.419316,0.534764,0.530992,0.68197,0.720221,0.77652,0.741931,0.718479,0.318686,0.678477,0.612185,0.228872,0.373871,0.126096,0.245915,0.422559,0.132559,0.79396,0.828341,0.646202,0.459895,0.125142,0.701345,0.0788771,0.898925,0.148948,0.973581,0.235463,0.344881,0.921238,0.541961,0.0821876,0.14114,0.532312,0.920826,0.588584,0.833706,0.487575,0.0211525,0.640548,0.118034,0.024892,0.366111,0.517826,0.923082,0.598694,0.339382,0.403849,0.057028,0.0483502,0.0890491,0.267844,0.279317,0.0544987,0.784847,0.667503,0.308065,0.55632,0.93083,0.895971,0.806062,0.558764,0.588672,0.402213,0.449265,0.0668319,0.315043,0.0140616,0.755986,0.69919,0.652294,0.287418,0.615038,0.413848,0.147903,0.09267,0.302538,0.386501,0.0818688,0.548287,0.528321,0.603961,0.846343,0.114047,0.419205,0.831484,0.0516204,0.21778,0.83288,0.112684,0.583539,0.161542,0.264577,0.640254,0.106068,0.428696,0.71002,0.648014,0.708992,0.401928,0.927007,0.539639,0.153259,0.502756,0.821734,0.867993,0.222395,0.119063,0.92651,0.379037,0.292389,0.420143,0.592204,0.251099,0.919125,0.758085,0.690683,0.778906,0.0696854,0.927298,0.325108,0.591739,0.760312,0.163701,0.0862,0.298833,0.107558,0.158647,0.755451,0.569984,0.827878,0.483642,0.716434,0.795993,0.283487,0.964585,0.0252886,0.0320262,0.84009,0.784903,0.728808,0.618106,0.660874,0.567009,0.663148,0.499419,0.101315,0.693989,0.636134,0.0178159,0.427842,0.953458,0.761051,0.770432,0.538768,0.693514,0.505975,0.769864,0.578577,0.33538,0.88096,0.155591,0.626778,0.312924,0.564311,0.615343,0.463305,0.413808,0.158908,0.331207,0.282007,0.979831,0.115173,0.316152,0.0209916,0.692501,0.424995,0.605017,0.279837,0.23796,0.550451,0.701611,0.906064,0.884066,0.150339,0.478932,0.110088,0.655792,0.015203,0.811874,0.723973,0.91408,0.285026,0.536236,0.206185,0.696316,0.932083,0.684031,0.201422,0.258851,0.217374,0.398843,0.275518,0.0716674,0.0942136,0.159154,0.498514,0.701092,0.374908,0.180721,0.00147891,0.999981,0.221429,0.299977,0.414901,0.394692,0.0106804,0.522639,0.0832226,0.266945,0.872134,0.526131,0.346565,0.878808,0.195304,0.40334,0.404871,0.59278,0.917792,0.834812,0.679539,0.935219,0.309406,0.208556,0.214379,0.954752,0.00229818,0.390699,0.701578,0.397717,0.935676,0.600528,0.309284,0.668001,0.988211,0.223384,0.146914,0.889449,0.0491766,0.0137324,0.579116,0.313257,0.941732,0.452651,0.281931,0.100408,0.224687,0.957847,0.634209,0.585364,0.860718,0.943934,0.0983518,0.629353,0.27643,0.416861,0.393481,0.0519201,0.184962,0.287784,0.0113519,0.117736,0.955644,0.434016,0.856243,0.592452,0.312559,0.354784,0.913737,0.343894,0.726764,0.901002,0.577725,0.587131,0.160009,0.525613,0.0760193,0.745618,0.152976,0.537631,0.545182,0.0920752,0.326719,0.435394,0.396147,0.540747,0.85872,0.104523,0.464774,0.0746643,0.123348,0.406711,0.328157,0.775875,0.65838,0.724131,0.228556,0.715988,0.7134,0.453612,0.800508,0.0859237,0.587756,0.613419,0.263506,0.0427387,0.641023,0.226902,0.115937,0.0174114,0.240708,0.997488,0.923705,0.176755,0.432771,0.0718608,0.98647,0.307281,0.00299031,0.887129,0.166075,0.200594,0.618567,0.458319,0.190529,0.471676,0.69025,0.941503,0.706944,0.0608229,0.0173662,0.309343,0.52442,0.36929,0.926808,0.612939,0.0115283,0.333258,0.966986,0.834467,0.403196,0.344181,0.429198,0.995012,0.240478,0.558973,0.49071,0.892374,0.0463354,0.746382,0.756226,0.284827,0.0879848,0.0656174,0.8754,0.00955689,0.0495196,0.144424,0.172935,0.907256,0.456462,0.310189,0.247204,0.998747,0.904881,0.402206,0.809033,0.375996,0.903044,0.625277,0.0370011,0.43577,0.721792,0.590374,0.23823,0.403702,0.92644,0.339303,0.713908,0.582868,0.577746,0.365777,0.73677,0.26911,0.276892,0.363466,0.214921,0.586137,0.246816,0.91203,0.834461,0.195739,0.799609,0.0988075,0.774163,0.268183,0.749767,0.980475,0.567307,0.60062,0.480891,0.817235,0.951641,0.586277,0.198009,0.263635,0.328015,0.38818,0.258131,0.226074,0.892186,0.726152,0.965202,0.766634,0.811387,0.798603,0.587369,0.142042,0.510069,0.199873,0.284077,0.667111,0.208786,0.244966,0.668833,0.0844257,0.657118,0.70361,0.45533,0.904949,0.780522,0.388577,0.323502,0.190738,0.751489,0.728431,0.151109,0.00441438,0.943828,0.0403246,0.29614,0.586996,0.912863,0.268545,0.472944,0.117252,0.856531,0.857286,0.775081,0.720476,0.997366,0.16569,0.594842,0.671769,0.176235,0.00547957,0.299787,0.67889,0.442131,0.0946696,0.312649,0.738996,0.960844,0.408232,0.48507,0.35156,0.565485,0.268633,0.172811,0.16307,0.565474,0.12056,0.137462,0.275269,0.373808,0.834275,0.462469,0.614911,0.975058,0.223469,0.525537,0.915905,0.890687,0.0619689,0.414282,0.649692,0.305029,0.587012,0.303361,0.936347,0.886666,0.435142,0.489347,0.752569,0.728152,0.728463,0.0377463,0.511251,0.933469,0.687764,0.561145,0.794674,0.531516,0.680759,0.990711,0.894315,0.0230664,0.0386431,0.0238416,0.0690851,0.022913,0.205158,0.0808802,0.17632,0.680655,0.982803,0.573841,0.926121,0.425857,0.633823,0.627967,0.49746,0.614145,0.524738,0.173429,0.514621,0.777465,0.505255,0.836206,0.663665,0.920453,0.0345218,0.1195,0.212358,0.789595,0.679883,0.39795,0.765059,0.785027,0.0485502,0.500351,0.244037,0.439189,0.492395,0.329674,0.626494,0.553667,0.0542324,0.0651395,0.540682,0.200244,0.319412,0.510263,0.34241,0.00405723,0.112092,0.165607,0.342303,0.847856,0.126612,0.463262,0.285553,0.577092,0.726618,0.895516,0.683458,0.44807,0.381788,0.580825,0.362569,0.423042,0.290066,0.721825,0.27042,0.187609,0.139166,0.412695,0.126327,0.555314,0.533034,0.569093,0.164912,0.18144,0.289715,0.212675,0.183176,0.534551,0.194136,0.611766,0.99806,0.858797,0.352243,0.0972919,0.117177,0.353731,0.277155,0.691925,0.609811,0.863178,0.120695,0.102941,0.590338,0.708947,0.859025,0.201148,0.333323,0.205349,0.462874,0.00205278,0.639851,0.493292,0.102617,0.339439,0.557939,0.300363,0.360262,0.151025,0.14636,0.652471,0.428716,0.262373,0.878355,0.0758355,0.764639,0.3965,0.725951,0.885193,0.0384026,0.513681,0.824669,0.77813,0.387856,0.537572,0.467281,0.477705,0.115102,0.77885,0.880909,0.935815,0.538319,0.979825,0.816152,0.135719,0.64256,0.997177,0.601471,0.658633,0.920628,0.163537,0.454285,0.559866,0.670781,0.934276,0.0503253,0.9257,0.522769,0.448268,0.335057,0.924283,0.222281,0.631682,0.752009,0.595846,0.709359,0.76104,0.0599465,0.325567,0.362234,0.390337,0.481899,0.984647,0.34233,0.522908,0.329219,0.840551,0.834731,0.908321,0.989607,0.646446,0.996476,0.844913,0.87265,0.384767,0.477991,0.142815,0.850008,0.287154,0.643168,0.703133,0.530299,0.186737,0.58809,0.379443,0.447603,0.521894,0.859495,0.486174,0.0057801,0.296572,0.0287268,0.256665,0.894635,0.875847,0.512533,0.0466793,0.057874,0.561228,0.303755,0.832793,0.242223,0.90173,0.130813,0.248384,0.0413052,0.276606,0.455287,0.709731,0.945451,0.163576,0.28821,0.0392006,0.676162,0.399806,0.283607,0.119737,0.917325,0.650347,0.471623,0.224815,0.194256,0.704091,0.509826,0.212219,0.894178,0.693452,0.145426,0.999883,0.0203162,0.501767,0.0248116,0.488858,0.200722,0.0379392,0.542806,0.222341,0.224873,0.0819715,0.86695,|0.909854,0.682052,0.82056,0.143345,0.743128,0.628138,0.0517613,0.451755,0.567744,0.841014,0.327156,0.432007,0.175019,0.334936,0.901957,0.873408,0.0473177,0.0963316,0.595296,0.770495,0.696144,0.890099,0.947074,0.397716,0.851837,0.122857,0.653188,0.499985,0.830202,0.52941,0.391982,0.55656,0.85397,0.482148,0.988016,0.246671,0.949528,0.118109,0.48027,0.709311,0.300178,0.510539,0.0636271,0.011651,0.379025,0.755976,0.17298,0.851316,0.488591,0.283957,0.874985,0.638132,0.170201,0.654522,0.503984,0.327635,0.716908,0.676724,0.887689,0.925437,0.515708,0.549185,0.462873,0.199278,0.766671,0.715041,0.477722,0.781416,0.582232,0.126602,0.230603,0.975804,0.97516,0.587317,0.674975,0.561228,0.289905,0.343514,0.95573,0.284734,0.667199,0.598355,0.658674,0.347047,0.21518,0.218485,0.84622,0.0413089,0.726559,0.724898,0.110499,0.215428,0.24745,0.80999,0.593517,0.345111,0.656525,0.252482,0.393788,0.456038,0.161456,0.621431,0.488719,0.799123,0.233705,0.840921,0.986291,0.921792,0.936971,0.888115,0.392847,0.755012,0.142361,0.867375,0.112535,0.857526,0.626657,0.149105,0.817378,0.744561,0.718909,0.684305,0.657643,0.877694,0.52129,0.387215,0.85431,0.839942,0.373923,0.952108,0.347845,0.675605,0.967317,0.70489,0.438867,0.05022,0.256574,0.407457,0.590883,0.977593,0.752256,0.180479,0.55007,0.922613,0.852007,0.622024,0.235737,0.576592,0.0828245,0.232619,0.307419,0.267515,0.398458,0.582991,0.276448,0.736403,0.815079,0.933043,0.211257,0.406916,0.788877,0.769732,0.218872,0.766905,0.777405,0.357818,0.920717,0.702423,0.685944,0.524822,0.109172,0.871447,0.682938,0.988669,0.331138,0.383563,0.703418,0.380672,0.255495,0.239538,0.594523,0.584249,0.245321,0.457405,0.426387,0.353126,0.757481,0.186135,0.0341702,0.459592,0.489832,0.12979,0.995906,0.554186,0.460417,0.850638,0.813665,0.341142,0.353245,0.943192,0.251933,0.866377,0.638548,0.634644,0.348343,0.244771,0.852278,0.0934091,0.818004,0.231262,0.152535,0.563837,0.65686,0.349664,0.824716,0.132333,0.820484,0.604925,0.345135,0.285243,0.842559,0.0577259,0.415178,0.942926,0.851002,0.48204,0.194808,0.587287,0.844349,0.507648,0.191651,0.335504,0.510886,0.7151,0.680104,0.764935,0.213796,0.451957,0.0707955,0.395421,0.97075,0.237751,0.0697486,0.387366,0.763952,0.57106,0.445221,0.214611,0.0539537,0.866434,0.460146,0.27221,0.91633,0.669711,0.48664,0.718859,0.171407,0.0231898,0.148815,0.0127658,0.581221,0.798355,0.185298,0.499106,0.255771,0.458233,0.740755,0.0550691,0.956937,0.701904,0.642134,0.674099,0.626066,0.293422,0.044705,0.133154,0.366924,0.863203,0.583009,0.410279,0.888161,0.269542,0.518753,0.914679,0.288151,0.554494,0.953882,0.990484,0.776428,0.826573,0.761283,0.10418,0.357552,0.870968,0.0294717,0.374104,0.588913,0.903268,0.321539,0.589216,0.763292,0.967873,0.209625,0.44239,0.758351,0.793704,0.0126349,0.648377,0.170162,0.846026,0.995708,0.85226,0.374029,0.894927,0.255766,0.653202,0.27235,0.616507,0.561532,0.0978898,0.415971,0.909258,0.633667,0.230826,0.41641,0.519127,0.314279,0.957709,0.476265,0.854772,0.622935,0.627366,0.702611,0.547543,0.805152,0.370635,0.6784,0.203302,0.209652,0.723611,0.273983,0.677568,0.399201,0.492579,0.386699,0.152699,0.517043,0.126274,0.315299,0.630941,0.755589,0.771866,0.85799,0.646618,0.527845,0.814994,0.822486,0.36522,0.373672,0.760244,0.711636,0.718919,0.148957,0.31586,0.384894,0.387042,0.550881,0.963082,0.793892,0.855156,0.613534,0.39896,0.905526,0.64508,0.648145,0.133923,0.999904,0.0676072,0.604806,0.458163,0.442507,0.241038,0.0167153,0.7536,0.302638,0.866961,0.301174,0.553839,0.159594,0.703661,0.445525,0.745979,0.0886002,0.628375,0.608092,0.761215,0.863714,0.283281,0.69925,0.136114,0.754346,0.15622,0.0489501,0.272756,0.217035,0.835031,0.984591,0.394811,0.379818,0.262043,0.384756,0.653514,0.379736,0.232144,0.654972,0.842986,0.823875,0.515215,0.870272,0.545527,0.206696,0.385742,0.271896,0.552403,0.261311,0.6026,0.642346,0.0935746,0.0418693,0.937693,0.052687,0.659746,0.500137,0.863133,0.927747,0.242747,0.188915,0.792585,0.339553,0.265365,0.100447,0.388584,0.447306,0.43017,0.594541,0.352137,0.326029,0.121808,0.62437,0.0131852,0.939184,0.768755,0.367217,0.494284,0.0976736,0.60963,0.059979,0.512138,0.353277,0.466243,0.312637,0.753948,0.312734,0.224341,0.272695,0.244772,0.278053,0.925964,0.085899,0.757027,0.352853,0.612924,0.685357,0.762783,0.299163,0.815778,0.972065,0.561461,0.743942,0.914419,0.121203,0.697156,0.539553,0.582343,0.773713,0.676965,0.507454,0.851981,0.826147,0.269639,0.576133,0.391487,0.371045,0.37094,0.0926496,0.692348,0.656604,0.645261,0.246841,0.334701,0.41085,0.0347905,0.670695,0.706731,0.570209,0.470362,0.174802,0.899052,0.382613,0.412951,0.163433,0.0797139,0.138327,0.855347,0.338418,0.418191,0.567919,0.984461,0.143414,0.255434,0.905585,0.966026,0.728241,0.0508823,0.957907,0.282268,0.421463,0.940529,0.340137,0.819013,0.794608,0.13965,0.187311,0.170087,0.0722238,0.419649,0.853833,0.696833,0.335471,0.471147,0.636113,0.662971,0.775675,0.0856044,0.55422,0.442842,0.630468,0.457997,0.832629,0.81967,0.264142,0.633204,0.673008,0.00318545,0.153696,0.158808,0.299613,0.937496,0.618503,0.355253,0.240745,0.0336032,0.686754,0.819953,0.05176,0.392062,0.449276,0.874419,0.666932,0.337287,0.0471493,0.292226,0.547898,0.808774,0.270875,0.945391,0.116562,0.0999059,0.688351,0.0146793,0.00189239,0.971312,0.248686,0.674636,0.836967,0.297979,0.403755,0.0162078,0.391946,0.856731,0.839806,0.447313,0.501612,0.649768,0.0884776,0.014222,0.906382,0.191203,0.387652,0.693766,0.920415,0.111396,0.0799851,0.196159,0.374868,0.569486,0.6935,0.486469,0.181532,0.56265,0.885476,0.566549,0.989729,0.699755,0.223594,0.753722,0.134609,0.320927,0.6184,0.685764,0.73405,0.929812,0.914733,0.209291,0.191699,0.838979,0.541308,0.341212,0.956556,0.0696457,0.00175065,0.252764,0.401689,0.306793,0.442101,0.404004,0.587836,0.738692,0.225363,0.364225,0.959277,0.313643,0.000201762,0.584425,0.742471,0.862051,0.937892,0.989788,0.355404,0.505443,0.443327,0.341388,0.477997,0.0611663,0.943319,0.654122,0.197878,0.125069,0.269696,0.0942009,0.274707,0.154852,0.224017,0.965829,0.750928,0.622733,0.349563,0.323014,0.398228,0.561595,0.246985,0.934468,0.0885987,0.296951,0.261785,0.262602,0.152248,0.727806,0.57165,0.0996022,0.876333,0.62117,0.0598313,0.420481,0.56945,0.922734,0.673054,0.591685,0.229876,0.694725,0.77652,0.412963,0.534552,0.304031,0.90666,0.849052,0.204361,0.344564,0.355867,0.186444,0.499578,0.0805573,0.568617,0.266787,0.415703,0.233232,0.698389,0.0406179,0.0415604,0.242967,0.860661,0.368493,0.520384,0.469679,0.144298,0.337219,0.0811957,0.384005,0.861534,0.265324,0.297845,0.683772,0.385055,0.698103,0.711763,0.0647416,0.920281,0.733887,0.219665,0.107408,0.152108,0.99571,0.623078,0.710709,0.629316,0.422468,0.613415,0.284571,0.739408,0.909512,0.953135,0.555738,0.525069,0.59007,0.936243,0.039001,0.846903,0.278264,0.738547,0.924889,0.467099,0.700641,0.778962,0.292546,0.164499,0.706197,0.00751883,0.606482,0.763772,0.569528,0.392716,0.374389,0.911722,0.761233,0.444394,0.444889,0.886937,0.252406,0.848841,0.858444,0.23874,0.245002,0.97436,0.622521,0.744113,0.689981,0.441189,0.123051,0.181343,0.762001,0.947477,0.654216,0.559591,0.362319,0.370977,0.314223,0.700898,0.86927,0.882021,0.104017,0.931033,0.113563,0.905799,0.75484,0.176164,0.0881871,0.362206,0.957395,0.635298,0.319709,0.137618,0.528407,0.215538,0.390911,0.711134,0.95051,0.335797,0.476725,0.811222,0.0707982,0.561023,0.656584,0.779755,0.530327,0.375804,0.949687,0.887357,0.750705,0.75098,0.230707,0.632782,0.412496,0.59629,0.426479,0.910176,0.186843,0.673607,0.346338,0.981167,0.176603,0.0825933,0.340521,0.696656,0.495192,0.0488303,0.797414,0.669604,0.686353,0.939766,0.296963,0.239118,0.773151,0.427781,0.961827,0.551817,0.0954143,0.407206,0.917931,0.162943,0.449724,0.0202214,0.375183,0.818162,0.902195,0.612231,0.912873,0.553661,0.0877176,0.247069,0.940107,0.951214,0.716961,0.486176,0.23644,0.834644,0.111606,0.361847,0.444054,0.0794286,0.500696,0.60486,0.433664,0.406459,0.0258587,0.0485116,0.387956,0.80979,0.106937,0.24981,0.555652,0.649791,0.468311,0.399721,0.0247896,0.595244,0.200337,0.694032,0.751232,0.0404701,0.87959,0.38398,0.880125,0.0458741,0.835369,0.153522,0.437962,0.240961,0.166343,0.501153,0.5442,0.805902,0.571876,0.0707568,0.651843,0.0348729,0.271478,0.928001,0.538573,0.507994,0.0963346,0.190686,0.0725775,0.791509,0.445699,0.227251,0.348902,0.56036,0.49028,0.717168,0.168145,0.0503609,0.389695,0.158868,0.264115,0.231649,0.177864,0.145346,0.993335,0.336679,0.790849,0.531388,0.579724,0.765647,0.428739,0.51735,0.176227,0.667774,0.650928,0.283542,0.899273,0.0257704,0.996579,0.409459,0.899771,0.711501,0.169524,0.443652,0.900772,0.958045,0.763821,0.275064,0.232025,0.831065,0.704452,0.552463,0.666132,0.702752,0.635563,0.767348,0.350432,0.475255,0.759086,0.743554,0.188515,0.829409,0.481776,0.297262,0.177559,0.196056,0.84201,0.92769,0.27454,0.652928,0.523567,0.118301,0.413396,0.580913,0.463077,0.338603,0.0905053,0.765702,0.7758,0.870722,0.608899,0.400302,0.492196,0.851756,0.708007,0.78581,0.625083,0.342008,0.330518,0.357157,0.87782,0.895686,0.606467,0.247811,0.858417,0.213928,0.0331571,|0.204795,0.428211,0.729965,0.839805,0.301794,0.199389,0.158215,0.545608,0.605991,0.843511,0.491129,0.168043,0.362338,0.0894741,0.361986,0.66012,0.782396,0.293867,0.387009,0.246494,0.550013,0.943714,0.293892,0.713971,0.0886557,0.683383,0.164956,0.286994,0.298007,0.615101,0.942529,0.554803,0.152153,0.545521,0.44852,0.0968572,0.801305,0.662922,0.1043,0.785238,0.33077,0.401275,0.956176,0.522437,0.90542,0.0288886,0.964975,0.592893,0.941937,0.683351,0.938709,0.931449,0.0300978,0.3652,0.0934561,0.500667,0.234411,0.755245,0.586031,0.0670324,0.601555,0.983241,0.139492,0.302593,0.951908,0.937947,0.904125,0.237252,0.498225,0.608349,0.272027,0.547554,0.497252,0.46988,0.467596,0.257978,0.279816,0.288072,0.370553,0.684478,0.298555,0.655386,0.79172,0.486097,0.110448,0.22476,0.319525,0.667969,0.28266,0.143542,0.588427,0.742726,0.457981,0.72106,0.103835,0.433368,0.978104,0.25812,0.27254,0.833771,0.173663,0.227121,0.584573,0.678293,0.258127,0.328986,0.732442,0.994861,0.742876,0.303508,0.431924,0.493394,0.176932,0.00671619,0.375853,0.245789,0.41267,0.136682,0.846858,0.0492374,0.82218,0.864606,0.604407,0.360643,0.686441,0.010053,0.359074,0.325191,0.914914,0.2608,0.769551,0.474958,0.925796,0.108448,0.573617,0.938762,0.280803,0.246454,0.170222,0.782116,0.530932,0.163064,0.337674,0.821912,0.79362,0.918377,0.0199627,0.854074,0.0820749,0.0253618,0.134769,0.298151,0.410476,0.475088,0.621692,0.70375,0.0347221,0.367977,0.574969,0.655282,0.654464,0.670397,0.567518,0.582756,0.420497,0.715445,0.724158,0.162663,0.445531,0.116919,0.566583,0.934005,0.51148,0.965274,0.120767,0.769409,0.558901,0.676408,0.697567,0.163481,0.587793,0.212302,0.0391244,0.722113,0.320404,0.466886,0.0744578,0.98389,0.570327,0.231821,0.964983,0.8296,0.662148,0.736131,0.745501,0.567324,0.447145,0.103091,0.653199,0.405045,0.272947,0.444779,0.633305,0.945301,0.727122,0.161608,0.536667,0.0336896,0.818102,0.591468,0.211404,0.783726,0.143229,0.768461,0.51849,0.345553,0.1729,0.051623,0.869053,0.0582101,0.266074,0.542713,0.0118542,0.813955,0.783061,0.479284,0.903989,0.836248,0.390296,0.943924,0.164841,0.904239,0.48098,0.194608,0.0692276,0.640308,0.62293,0.185937,0.618439,0.423239,0.0403005,0.168834,0.298783,0.550548,0.0970954,0.688063,0.944669,0.0143375,0.356116,0.0165319,0.933285,0.382033,0.920406,0.974929,0.874111,0.966564,0.597574,0.164261,0.446354,0.0386004,0.346862,0.996294,0.746862,0.76122,0.120717,0.463799,0.985306,0.526065,0.131665,0.865467,0.146404,0.826555,0.328454,0.0691964,0.506396,0.469771,0.138504,0.746395,0.696261,0.966284,0.681857,0.444752,0.317328,0.13921,0.118239,0.980133,0.425193,0.620327,0.556521,0.0596069,0.212291,0.306832,0.00813496,0.668114,0.215637,0.759201,0.901858,0.430357,0.264994,0.0906359,0.394071,0.625185,0.0261134,0.325033,0.893609,0.332001,0.431267,0.931703,0.530366,0.114252,0.271844,0.834867,0.502508,0.91976,0.705852,0.0995619,0.267853,0.003021,0.846607,0.882313,0.034565,0.766313,0.761963,0.871464,0.836225,0.799525,0.339547,0.745969,0.659441,0.831235,0.0874759,0.554417,0.138419,0.587327,0.773488,0.767199,0.964408,0.552099,0.803665,0.123481,0.44284,0.258511,0.762901,0.614723,0.751827,0.169794,0.33169,0.667083,0.70507,0.755177,0.491034,0.404866,0.777349,0.729608,0.844644,0.125939,0.0317207,0.347998,0.040263,0.790208,0.750054,0.101626,0.4295,0.733218,0.5894,0.102031,0.198809,0.386286,0.865162,0.532463,0.428499,0.308707,0.396826,0.334191,0.255528,0.892236,0.124701,0.291524,0.377252,0.398176,0.345224,0.626488,0.00656056,0.150409,0.569983,0.414664,0.143098,0.778453,0.170418,0.926644,0.964852,0.644633,0.329647,0.390203,0.673718,0.402236,0.621273,0.274718,0.860533,0.144955,0.621576,0.505653,0.823935,0.335868,0.402469,0.0137196,0.913249,0.716524,0.504313,0.122982,0.906103,0.172342,0.0797951,0.166732,0.582034,0.672572,0.519485,0.540288,0.721629,0.0402302,0.641026,0.768112,0.50466,0.330162,0.936467,0.723784,0.9156,0.0248095,0.543537,0.805018,0.402637,0.0764968,0.282109,0.765683,0.771782,0.472207,0.361074,0.434684,0.739195,0.614601,0.401864,0.516994,0.803634,0.61214,0.453373,0.324784,0.231356,0.644434,0.557936,0.241291,0.5627,0.950055,0.383745,0.102705,0.910544,0.294517,0.190611,0.876963,0.15332,0.811382,0.470738,0.817987,0.241754,0.581918,0.171087,0.527365,0.595373,0.364015,0.572627,0.97078,0.846719,0.845415,0.386255,0.558608,0.204113,0.402445,0.330041,0.241621,0.186716,0.907973,0.438798,0.145725,0.218457,0.828468,0.861428,0.347543,0.0690038,0.789906,0.9946,0.230013,0.091443,0.744398,0.30926,0.607824,0.0236942,0.930524,0.615037,0.48701,0.324074,0.924455,0.159975,0.977271,0.945717,0.759125,0.599279,0.114509,0.682812,0.211004,0.896076,0.0279363,0.604858,0.922346,0.198394,0.672088,0.721176,0.0572121,0.380826,0.612577,0.983,0.891816,0.625951,0.189066,0.707051,0.403582,0.234084,0.453741,0.0693752,0.357409,0.253183,0.204318,0.633657,0.120729,0.577954,0.923151,0.541569,0.380738,0.266427,0.450706,0.921823,0.934321,0.425066,0.269553,0.37274,0.643162,0.280823,0.579496,0.875426,0.631106,0.238313,0.723182,0.572445,0.271515,0.225676,0.441847,0.62734,0.995748,0.346955,0.130943,0.361363,0.978421,0.482603,0.0830483,0.166515,0.126517,0.532427,0.797319,0.42444,0.851797,0.169981,0.419031,0.18575,0.721757,0.397487,0.359942,0.896012,0.875405,0.379628,0.594584,0.762117,0.646264,0.134998,0.544738,0.784249,0.560109,0.754296,0.416169,0.297721,0.315345,0.76457,0.818061,0.297526,0.677959,0.228436,0.742024,0.264702,0.0689989,0.670344,0.460685,0.104929,0.430565,0.838029,0.912593,0.529377,0.411361,0.986418,0.108937,0.415842,0.758165,0.180521,0.534618,0.288204,0.0166162,0.610133,0.821503,0.387614,0.267593,0.162204,0.502897,0.521015,0.323113,0.439396,0.450699,0.995673,0.0599778,0.953105,0.133228,0.489325,0.618211,0.0206964,0.654496,0.287782,0.15671,0.824354,0.925363,0.562487,0.6371,0.766259,0.868828,0.270674,0.588338,0.505407,0.922901,0.345512,0.0603234,0.821675,0.937233,0.355587,0.65245,0.781232,0.717745,0.753825,0.931393,0.0819452,0.184172,0.936843,0.699498,0.0482371,0.0516984,0.11292,0.473004,0.552366,0.00905436,0.837878,0.576375,0.141467,0.703373,0.577418,0.00232834,0.752603,0.175627,0.869898,0.57135,0.92492,0.363335,0.0388768,0.9054,0.33502,0.820528,0.466283,0.398202,0.244718,0.168863,0.965291,0.510385,0.542858,0.859622,0.135748,0.269421,0.309561,0.9863,0.427681,0.282046,0.527049,0.780812,0.511399,0.111973,0.864706,0.923806,0.657936,0.934356,0.128157,0.880435,0.587003,0.139156,0.545974,0.938121,0.371639,0.8455,0.629924,0.47687,0.234174,0.700417,0.465897,0.935431,0.499126,0.00679046,0.390508,0.866297,0.952042,0.500677,0.182532,0.067191,0.137124,0.570546,0.178742,0.15885,0.0326199,0.391193,0.987819,0.321178,0.492243,0.774634,0.580603,0.0837176,0.640674,0.673302,0.308213,0.595015,0.763638,0.655773,0.0807108,0.433015,0.724564,0.993198,0.992912,0.517879,0.419724,0.553104,0.398907,0.209141,0.967843,0.382467,0.0897583,0.70253,0.198136,0.881091,0.0396258,0.321624,0.446215,0.0232551,0.0625573,0.170633,0.073248,0.463839,0.297246,0.793857,0.844551,0.860439,0.342056,0.557559,0.819537,0.433457,0.124349,0.239748,0.889216,0.480802,0.0422445,0.588123,0.055791,0.268074,0.517885,0.681646,0.0988041,0.328476,0.00590843,0.602633,0.685797,0.439904,0.0620218,0.810208,0.155987,0.210426,0.252089,0.128938,0.236435,0.468354,0.854949,0.705192,0.858302,0.146518,0.0746621,0.27395,0.718838,0.940103,0.0159178,0.252348,0.605864,0.136867,0.784004,0.155102,0.527364,0.677537,0.678556,0.99133,0.892806,0.260862,0.811356,0.133692,0.629851,0.505895,0.184328,0.858934,0.676736,0.651072,0.626948,0.420577,0.451472,0.851336,0.336352,0.392232,0.802002,0.0984605,0.725005,0.953217,0.533146,0.935034,0.27523,0.135515,0.722012,0.966651,0.355541,0.0352926,0.884309,0.873326,0.526406,0.599339,0.208878,0.788156,0.0099225,0.552622,0.736289,0.234357,0.965647,0.351616,0.345108,0.348187,0.720234,0.0750228,0.772607,0.40948,0.175913,0.493845,0.942933,0.316592,0.759834,0.774733,0.0503235,0.675516,0.498137,0.714288,0.868859,0.77561,0.692756,0.562216,0.853761,0.413031,0.93315,0.800252,0.950732,0.388252,0.306754,0.173848,0.867477,0.0742982,0.0526697,0.0544806,0.822414,0.405661,0.391515,0.322843,0.960682,0.520296,0.426411,0.604807,0.92985,0.062605,0.77642,0.296726,0.0940589,0.075982,0.496906,0.211721,0.0491975,0.376151,0.981122,0.0686213,0.164057,0.329688,0.96676,0.546549,0.50096,0.806771,0.0108331,0.110461,0.398249,0.107871,0.979746,0.610185,0.324458,0.551662,0.619897,0.506914,0.493756,0.583821,0.048972,0.899309,0.778726,0.12104,0.692147,0.625836,0.995626,0.0944449,0.774606,0.874226,0.300799,0.830828,0.997395,0.144316,0.47823,0.755382,0.960422,0.292785,0.451955,0.0398006,0.43671,0.802916,0.309654,0.981934,0.793914,0.944963,0.175288,0.0934082,0.406623,0.319495,0.789051,0.203166,0.308375,0.247122,0.575073,0.916644,0.1856,0.127466,0.129555,0.296738,0.596738,0.496588,0.0403737,0.237438,0.454639,0.20548,0.28209,0.544632,0.000545561,0.982444,0.659555,0.0688044,0.379589,0.590812,0.291632,0.387806,0.668056,0.826145,0.599493,0.810989,0.940554,0.463184,0.0375449,0.599415,0.267335,0.734243,0.641523,0.121879,0.154943,0.908866,0.130103,0.3591,0.449121,0.357672,0.743327,0.0813011,|0.223803,0.651454,0.657048,0.240861,0.482062,0.13586,0.670867,0.944585,0.562119,0.587416,0.971331,0.685593,0.0300115,0.664485,0.768622,0.216641,0.0936671,0.252193,0.962619,0.934395,0.337748,0.473277,0.672597,0.195306,0.559875,0.0513786,0.950902,0.346221,0.830409,0.58154,0.449882,0.224451,0.158552,0.150063,0.603273,0.760467,0.674696,0.437922,0.487959,0.397434,0.369434,0.964447,0.956871,0.236471,0.815308,0.471185,0.729669,0.401493,0.133829,0.807821,0.806775,0.859633,0.339229,0.260601,0.289041,0.240143,0.106996,0.434838,0.334313,0.264539,0.22296,0.298335,0.672401,0.329091,0.82221,0.83127,0.344416,0.723474,0.517637,0.766013,0.0203609,0.0371433,0.831952,0.190194,0.116126,0.419508,0.625327,0.122899,0.809996,0.997901,0.550418,0.792606,0.249415,0.749184,0.892263,0.757248,0.856733,0.621557,0.30979,0.761312,0.0868306,0.918574,0.382509,0.348734,0.254638,0.598427,0.687451,0.867422,0.156425,0.154824,0.175864,0.0819767,0.598101,0.919459,0.360132,0.0449873,0.595617,0.0120334,0.349092,0.704617,0.713283,0.213579,0.775388,0.975177,0.0753837,0.455495,0.863455,0.573669,0.994572,0.839297,0.0965232,0.183704,0.96409,0.803819,0.703711,0.708991,0.392817,0.56369,0.767388,0.126957,0.337488,0.936807,0.379675,0.967486,0.294118,0.432035,0.242503,0.502527,0.226626,0.656585,0.596592,0.809937,0.292498,0.953702,0.0291951,0.257572,0.565632,0.216599,0.0503141,0.619568,0.699639,0.947695,0.44107,0.500291,0.890823,0.783253,0.911854,0.086975,0.178306,0.597523,0.369627,0.413962,0.830584,0.0834395,0.168945,0.60217,0.822579,0.266306,0.994434,0.564057,0.854509,0.638623,0.44898,0.684079,0.165432,0.115309,0.878424,0.686334,0.75517,0.57411,0.920884,0.477467,0.356748,0.0154738,0.815964,0.536192,0.0491638,0.218601,0.687286,0.0903823,0.589101,0.247184,0.481511,0.126155,0.838789,0.877822,0.952834,0.870969,0.290405,0.600777,0.0943776,0.988664,0.553382,0.454694,0.0380846,0.764467,0.210745,0.604076,0.941326,0.304791,0.759604,0.811107,0.0941168,0.476882,0.857794,0.927594,0.848647,0.62593,0.536163,0.321398,0.838199,0.603049,0.999841,0.0767727,0.421743,0.0456506,0.665214,0.29197,0.605421,0.533211,0.540736,0.339938,0.484906,0.436899,0.551227,0.524659,0.918511,0.0330219,0.810785,0.520657,0.323087,0.825722,0.726305,0.040222,0.102577,0.062662,0.313563,0.934972,0.90653,0.424579,0.691441,0.37053,0.55409,0.176839,0.905705,0.753684,0.788151,0.434635,0.18118,0.314004,0.591379,0.904312,0.177223,0.201596,0.962081,0.261375,0.240848,0.493815,0.731438,0.433885,0.0807058,0.158022,0.439622,0.457957,0.574313,0.955754,0.787628,0.495523,0.345454,0.20398,0.413656,0.237231,0.479927,0.528033,0.478259,0.281131,0.362164,0.00548851,0.0875163,0.316472,0.491593,0.260331,0.422324,0.963036,0.85302,0.707137,0.775354,0.714957,0.855599,0.703575,0.515891,0.0827626,0.308626,0.0827299,0.0588962,0.109768,0.0602604,0.131775,0.499946,0.397505,0.800254,0.112027,0.282595,0.172016,0.64671,0.637534,0.523757,0.644313,0.544564,0.487756,0.0912755,0.652927,0.919412,0.0285823,0.29387,0.940809,0.430586,0.110501,0.958154,0.19283,0.297424,0.302813,0.175943,0.0593984,0.630405,0.696251,0.488025,0.702758,0.556815,0.476018,0.692552,0.137781,0.0224099,0.735903,0.758441,0.749528,0.521823,0.271326,0.130614,0.977892,0.207656,0.507708,0.897613,0.927809,0.400661,0.264035,0.209616,0.335285,0.757615,0.0191026,0.347584,0.100215,0.0421772,0.168344,0.133779,0.317922,0.743879,0.723272,0.0890974,0.277991,0.943373,0.31214,0.473287,0.0142651,0.884207,0.68452,0.234536,0.40444,0.661555,0.755338,0.129313,0.709376,0.265045,0.444688,0.175951,0.173984,0.807066,0.540081,0.166415,0.564884,0.96608,0.282304,0.363373,0.878129,0.770137,0.858793,0.443687,0.749073,0.891718,0.476908,0.072776,0.720158,0.302034,0.855367,0.898616,0.348405,0.352463,0.319712,0.0529375,0.216729,0.783378,0.811965,0.747418,0.561685,0.21895,0.584755,0.893137,0.853045,0.0985696,0.806996,0.597526,0.264178,0.975252,0.716756,0.805101,0.959916,0.952999,0.0466135,0.612751,0.864961,0.260787,0.85081,0.838754,0.899462,0.557139,0.460047,0.223814,0.0560576,0.643481,0.0780789,0.319955,0.365238,0.0939649,0.160698,0.3677,0.437529,0.723563,0.548023,0.609872,0.711009,0.77514,0.723922,0.873872,0.186651,0.299861,0.843973,0.405204,0.238848,0.952937,0.51282,0.234695,0.504021,0.172033,0.648798,0.00259477,0.791982,0.575064,0.716626,0.307223,0.329881,0.839207,0.68238,0.413381,0.520478,0.112252,0.625936,0.836453,0.259607,0.0987571,0.367467,0.923678,0.0424003,0.872887,0.495461,0.340534,0.248333,0.410493,0.923549,0.601041,0.601857,0.796475,0.920444,0.0603148,0.896808,0.508281,0.807789,0.845237,0.796524,0.443675,0.940827,0.413619,0.325029,0.410381,0.248548,0.755959,0.377594,0.4968,0.808405,0.90533,0.453093,0.732739,0.239833,0.522685,0.136706,0.993588,0.097128,0.294854,0.910701,0.241552,0.328765,0.73586,0.39983,0.878017,0.107903,0.716325,0.922316,0.264734,0.51571,0.166526,0.118303,0.976725,0.292487,0.824918,0.7218,0.76663,0.568081,0.0614547,0.328921,0.639744,0.674922,0.0218871,0.731104,0.756416,0.117327,0.137609,0.832835,0.586384,0.0376891,0.955494,0.0972714,0.486785,0.831113,0.956636,0.05819,0.549871,0.397314,0.0697002,0.522833,0.307125,0.733649,0.941346,0.822474,0.0110837,0.636558,0.913596,0.143577,0.924547,0.729145,0.577432,0.713056,0.38271,0.303161,0.283976,0.896887,0.232055,0.788803,0.85181,0.918223,0.982934,0.391708,0.604878,0.828592,0.553512,0.980765,0.473035,0.146843,0.775375,0.215703,0.607156,0.729733,0.532012,0.428524,0.187135,0.17122,0.662872,0.478862,0.598549,0.563964,0.687767,0.756587,0.330244,0.938323,0.0949071,0.660074,0.225586,0.281924,0.509496,0.0903217,0.861474,0.612857,0.307532,0.0868727,0.41811,0.773464,0.0487438,0.736979,0.374401,0.693333,0.177978,0.298623,0.636295,0.315561,0.032084,0.60893,0.320409,0.33805,0.059686,0.704062,0.484389,0.742873,0.36069,0.622432,0.77519,0.782468,0.528764,0.713737,0.354849,0.404336,0.42099,0.649529,0.624924,0.518461,0.890928,0.385091,0.382564,0.924394,0.702381,0.369252,0.922084,0.993633,0.258658,0.435359,0.491015,0.580926,0.54927,0.79099,0.891982,0.763639,0.904096,0.619483,0.392989,0.427013,0.401304,0.288019,0.882637,0.870717,0.756741,0.96974,0.77093,0.382957,0.493101,0.808034,0.775849,0.144108,0.746744,0.766506,0.9893,0.462108,0.839073,0.322859,0.197424,0.865861,0.870122,0.6298,0.410953,0.698575,0.369865,0.507446,0.349499,0.309412,0.758132,0.776384,0.478184,0.432115,0.624048,0.527559,0.956629,0.79097,0.855742,0.511202,0.777347,0.2664,0.943022,0.766885,0.662201,0.259116,0.587614,0.296918,0.681216,0.814169,0.827087,0.103449,0.58932,0.973273,0.178509,0.946409,0.0603368,0.650708,0.778772,0.994233,0.0341368,0.320408,0.495194,0.492181,0.420315,0.399943,0.657032,0.844948,0.995679,0.942425,0.380446,0.372067,0.0100581,0.85253,0.591287,0.704907,0.962668,0.683609,0.39172,0.922609,0.664906,0.733385,0.219485,0.349141,0.512066,0.285834,0.158897,0.183982,0.391518,0.376473,0.417157,0.499767,0.453652,0.00317645,0.756053,0.660143,0.890191,0.833016,0.179711,0.0458653,0.654495,0.220211,0.811201,0.895973,0.2246,0.715246,0.0485377,0.129164,0.858266,0.600973,0.251437,0.604821,0.068863,0.470836,0.762828,0.469232,0.357199,0.304559,0.759039,0.0203585,0.837348,0.173594,0.103235,0.185701,0.0244609,0.67215,0.852723,0.0708428,0.0676045,0.784313,0.527247,0.139797,0.330368,0.0826475,0.834455,0.0149435,0.0614453,0.894055,0.928393,0.056833,0.601279,0.0341308,0.811594,0.213842,0.758029,0.270433,0.676661,0.249681,0.378776,0.504286,0.992189,0.756859,0.662669,0.816504,0.662048,0.497244,0.540126,0.200556,0.454289,0.776099,0.812991,0.752608,0.328095,0.201707,0.898161,0.858918,0.040644,0.374886,0.528648,0.387818,0.98561,0.66804,0.834138,0.110673,0.697849,0.420419,0.54649,0.61901,0.184515,0.166397,0.43261,0.866822,0.891764,0.688235,0.917605,0.24169,0.443157,0.0422499,0.824013,0.505785,0.493897,0.150376,0.184221,0.580297,0.667653,0.541522,0.253527,0.745524,0.615477,0.776568,0.00665128,0.00987589,0.725664,0.993267,0.953198,0.274284,0.670222,0.26538,0.36344,0.726697,0.680906,0.999474,0.0694251,0.999828,0.242761,0.888132,0.231311,0.651012,0.88353,0.904272,0.199112,0.396325,0.0798078,0.681438,0.931492,0.517951,0.55462,0.328751,0.0907322,0.632431,0.73467,0.502143,0.768415,0.645251,0.408632,0.622593,0.609161,0.124144,0.688672,0.562406,0.059525,0.802411,0.974877,0.777436,0.487626,0.642446,0.474315,0.375291,0.416782,0.272491,0.990751,0.894984,0.463979,0.971357,0.310932,0.561073,0.654849,0.995559,0.68102,0.941466,0.809816,0.404014,0.0643966,0.0337614,0.103647,0.934578,0.199288,0.794061,0.403141,0.596719,0.798281,0.225867,0.737618,0.828447,0.0891163,0.103719,0.973083,0.7374,0.586823,0.764576,0.340464,0.608892,0.0713238,0.214894,0.313338,0.185217,0.84992,0.377562,0.30894,0.277132,0.851217,0.383092,0.558591,0.81192,0.136635,0.923661,0.204651,0.442936,0.930766,0.435595,0.591853,0.769374,0.659194,0.80499,0.0148335,0.980544,0.494743,0.140986,0.290108,0.550757,0.374532,0.530181,0.855003,0.116885,0.428683,0.38198,0.791624,0.823303,0.688407,0.446916,0.0350063,0.548473,0.18481,0.226111,0.0611657,0.3795,0.705114,0.0778193,0.351555,0.39891,0.40697,0.773851,0.882009,0.479542,0.622758,0.921834,0.13396,0.434554,0.410949,0.821155,|0.0565864,0.39449,0.0986384,0.341723,0.157162,0.494107,0.751966,0.46297,0.839866,0.751475,0.634306,0.569578,0.886249,0.724352,0.683671,0.36559,0.405903,0.40694,0.876928,0.343955,0.814641,0.0148225,0.0701962,0.0525129,0.982433,0.830312,0.163421,0.920534,0.622191,0.558112,0.396319,0.142594,0.444051,0.421639,0.435488,0.261006,0.104463,0.197453,0.516692,0.341899,0.251004,0.463003,0.134741,0.300101,0.420156,0.405716,0.546757,0.568271,0.715042,0.899057,0.272811,0.871889,0.782872,0.663127,0.5594,0.546675,0.0594954,0.49549,0.117262,0.348918,0.326827,0.0328041,0.898344,0.674682,0.991278,0.195633,0.590421,0.380263,0.378269,0.535,0.730395,0.503845,0.153589,0.952865,0.752476,0.865133,0.864779,0.566354,0.10529,0.0693455,0.968038,0.157972,0.352585,0.843695,0.417905,0.469117,0.609196,0.541452,0.357358,0.671123,0.775945,0.497141,0.0301807,0.357842,0.81412,0.399868,0.957116,0.407661,0.491776,0.928305,0.0890504,0.95897,0.382634,0.101693,0.670412,0.663483,0.236902,0.7802,0.922851,0.0962877,0.81431,0.83564,0.823312,0.20113,0.369385,0.258486,0.758354,0.672334,0.145074,0.658084,0.98865,0.507114,0.181045,0.440654,0.525446,0.239985,0.754223,0.447465,0.429122,0.937199,0.922016,0.756473,0.547988,0.661919,0.69905,0.442632,0.837156,0.261464,0.262707,0.481987,0.0491638,0.485559,0.2066,0.262368,0.763879,0.861716,0.0278779,0.449882,0.998032,0.799537,0.418795,0.00467372,0.405945,0.484243,0.492997,0.383618,0.630773,0.747938,0.0966976,0.873017,0.576277,0.949756,0.512872,0.88275,0.755087,0.848904,0.175747,0.971986,0.0190272,0.255962,0.426481,0.778715,0.765793,0.191715,0.623061,0.470797,0.158381,0.95321,0.604279,0.26536,0.440803,0.027666,0.594665,0.558531,0.681895,0.433781,0.601846,0.376534,0.262028,0.24306,0.654041,0.609613,0.323961,0.440823,0.238757,0.750198,0.190374,0.223464,0.691583,0.339747,0.911274,0.996756,0.716397,0.450626,0.760915,0.428128,0.358632,0.834017,0.464605,0.567987,0.268651,0.907498,0.611369,0.611589,0.269604,0.287433,0.888602,0.00291443,0.792291,0.985926,0.192614,0.855226,0.983051,0.501579,0.140627,0.828626,0.707118,0.103066,0.370404,0.248254,0.483859,0.202781,0.234413,0.948226,0.727394,0.962465,0.280677,0.743138,0.518734,0.938754,0.455226,0.945407,0.870831,0.923171,0.869155,0.112221,0.681478,0.8963,0.0377691,0.00599593,0.57092,0.0274357,0.884437,0.604733,0.821396,0.291779,0.231167,0.0965611,0.44054,0.613383,0.44698,0.224679,0.757115,0.930957,0.340069,0.400812,0.809051,0.576938,0.278676,0.944438,0.300326,0.0360126,0.0244659,0.0142913,0.23145,0.0788424,0.853816,0.816864,0.609343,0.740321,0.567557,0.62133,0.472212,0.674162,0.652335,0.727397,0.688318,0.65023,0.944947,0.764801,0.766306,0.425426,0.709056,0.366711,0.421235,0.745514,0.408898,0.0527136,0.760223,0.542108,0.43154,0.700262,0.0798342,0.972247,0.975975,0.149956,0.253753,0.371657,0.739224,0.379626,0.819216,0.927597,0.206029,0.654741,0.803804,0.950263,0.955271,0.118564,0.0993024,0.732702,0.273776,0.876659,0.987531,0.569538,0.275298,0.688915,0.873068,0.434254,0.116718,0.749144,0.797423,0.706342,0.232766,0.419441,0.530998,0.00966984,0.0748401,0.22461,0.866316,0.515797,0.117968,0.881746,0.985694,0.267401,0.773668,0.581491,0.962899,0.475544,0.469857,0.631934,0.144257,0.000813007,0.862141,0.150207,0.780496,0.18908,0.0463449,0.0600938,0.181417,0.931204,0.705601,0.751557,0.525633,0.896803,0.543328,0.679915,0.146604,0.33773,0.816983,0.403468,0.0932759,0.0436437,0.807458,0.160977,0.159434,0.427105,0.916725,0.614813,0.376337,0.871597,0.740003,0.706198,0.902207,0.780147,0.565979,0.90482,0.858204,0.570252,0.377792,0.374618,0.330418,0.0345439,0.844312,0.548747,0.406443,0.632043,0.887259,0.693459,0.053192,0.336704,0.287317,0.355541,0.0101703,0.722202,0.405068,0.245727,0.355892,0.484152,0.99082,0.643499,0.626396,0.764859,0.70315,0.0483768,0.971382,0.182054,0.911217,0.763838,0.539496,0.94783,0.600185,0.667927,0.422432,0.107793,0.116683,0.975027,0.465536,0.873939,0.559092,0.341761,0.660249,0.183794,0.420367,0.552219,0.978237,0.763917,0.636087,0.53508,0.795787,0.493683,0.417951,0.217044,0.419042,0.624696,0.216542,0.564794,0.874841,0.168965,0.863975,0.338094,0.813465,0.700452,0.959769,0.688963,0.0315161,0.665906,0.353967,0.913464,0.357488,0.499453,0.979253,0.561615,0.679478,0.860367,0.842393,0.696054,0.814062,0.202188,0.637255,0.642555,0.799556,0.360099,0.414117,0.119797,0.31927,0.863343,0.959969,0.921608,0.332102,0.16929,0.657575,0.666562,0.534417,0.243285,0.114304,0.978333,0.377111,0.713633,0.34541,0.428232,0.378601,0.413078,0.821638,0.223496,0.446415,0.234773,0.571156,0.3943,0.580397,0.22388,0.702961,0.763595,0.0356983,0.957647,0.164692,0.759504,0.918948,0.993281,0.664245,0.751795,0.800148,0.603022,0.459885,0.378748,0.459254,0.05898,0.766363,0.452666,0.511405,0.250133,0.638242,0.381888,0.688311,0.104138,0.357107,0.963755,0.548616,0.771757,0.860883,0.12384,0.831763,0.900125,0.536567,0.0933313,0.560972,0.732262,0.855918,0.527697,0.021413,0.407133,0.418641,0.822901,0.0752916,0.049231,0.262858,0.676975,0.200302,0.0378323,0.697632,0.929065,0.862146,0.745714,0.552892,0.387425,0.320743,0.935781,0.338853,0.279538,0.890159,0.785874,0.538616,0.255835,0.919287,0.270422,0.991926,0.897336,0.191985,0.514995,0.239717,0.524625,0.953312,0.757191,0.583928,0.802776,0.0367373,0.688431,0.150872,0.413461,0.716445,0.661135,0.881856,0.658072,0.354888,0.818263,0.342437,0.440078,0.857309,0.70408,0.884227,0.0640908,0.444689,0.0750673,0.128892,0.520274,0.0271174,0.285702,0.798675,0.0191542,0.802423,0.00213695,0.999559,0.611032,0.162332,0.279028,0.923602,0.80395,0.172197,0.227893,0.778877,0.418935,0.325114,0.586181,0.422446,0.376748,0.581271,0.344176,0.979208,0.908943,0.367071,0.85323,0.339915,0.307202,0.0241499,0.415965,0.325594,0.408857,0.466192,0.584269,0.87524,0.70182,0.61112,0.65898,0.43063,0.960696,0.485368,0.562915,0.625223,0.257577,0.707354,0.334037,0.404305,0.287975,0.900117,0.524744,0.810987,0.608811,0.0043962,0.108447,0.121118,0.543645,0.406137,0.00967693,0.750366,0.985086,0.649853,0.962451,0.0298285,0.999876,0.888244,0.0659884,0.506536,0.196454,0.159909,0.334356,0.71134,0.445591,0.730218,0.37878,0.380284,0.973799,0.0494798,0.0234563,0.533598,0.44838,0.296799,0.303946,0.205828,0.72895,0.487215,0.194869,0.538154,0.723762,0.865971,0.88193,0.264842,0.810959,0.262846,0.825958,0.849363,0.300428,0.735252,0.241129,0.609614,0.989604,0.1818,0.342493,0.200685,0.145185,0.0543454,0.20314,0.1504,0.249626,0.847758,0.697798,0.841363,0.881964,0.272748,0.287795,0.385404,0.652764,0.101309,0.935849,0.0025019,0.604743,0.356588,0.82385,0.228825,0.441526,0.398642,0.781309,0.747261,0.934271,0.962931,0.365415,0.141484,0.170702,0.339663,0.503387,0.526434,0.62938,0.283059,0.380066,0.858657,0.287918,0.866448,0.568199,0.113355,0.928625,0.27913,0.480415,0.484618,0.828437,0.903706,0.568839,0.958827,0.180822,0.387125,0.492584,0.0563834,0.396489,0.76178,0.384285,0.368751,0.794301,0.332937,0.452938,0.732382,0.431643,0.773071,0.63383,0.729917,0.0292714,0.062498,0.938034,0.849586,0.887822,0.750201,0.316636,0.14909,0.134909,0.0915254,0.890314,0.819079,0.164863,0.00010705,0.176081,0.549484,0.348028,0.287185,0.580281,0.288429,0.108369,0.356101,0.629541,0.935072,0.465402,0.27719,0.906592,0.931332,0.196963,0.544073,0.542785,0.952323,0.712925,0.191374,0.82873,0.382993,0.0387748,0.813878,0.356881,0.154491,0.712401,0.125242,0.718169,0.698563,0.456053,0.51429,0.378698,0.802541,0.523114,0.54651,0.0954385,0.407832,0.406763,0.0746973,0.0382568,0.426635,0.838545,0.595623,0.231004,0.693918,0.991036,0.0372653,0.831429,0.183987,0.779518,0.393479,0.0397215,0.188959,0.997738,0.341663,0.514351,0.468925,0.12372,0.970543,0.421898,0.23237,0.84862,0.064742,0.334128,0.446324,0.666436,0.181292,0.225257,0.174845,0.4341,0.185482,0.611623,0.574929,0.715761,0.545027,0.214491,0.77933,0.404665,0.881386,0.139737,0.858339,0.315057,0.328776,0.893369,0.177312,0.0793678,0.654588,0.174513,0.985307,0.319458,0.102438,0.355902,0.742033,0.214907,0.760348,0.131061,0.427169,0.315536,0.349178,0.109058,0.291677,0.639694,0.433349,0.587032,0.82395,0.869034,0.655017,0.788559,0.716856,0.129245,0.795721,0.0864238,0.969902,0.850314,0.314225,0.65681,0.361961,0.67045,0.755062,0.932323,0.276371,0.600835,0.225977,0.76079,0.524892,0.349931,0.629879,0.21621,0.467724,0.00796258,0.591017,0.911382,0.260466,0.559435,0.051875,0.596261,0.239381,0.809706,0.547306,0.895622,0.739149,0.620133,0.538737,0.382291,0.319274,0.049911,0.55788,0.157784,0.290303,0.338818,0.496279,0.975883,0.98697,0.342513,0.407191,0.32858,0.765444,0.544794,0.657252,0.311786,0.107239,0.992701,0.644592,0.839899,0.0245322,0.856461,0.954911,0.0449,0.552593,0.64914,0.87936,0.181586,0.793764,0.185856,0.247132,0.189051,0.520213,0.0492337,0.910834,0.605851,0.626648,0.0678541,0.859383,0.315857,0.478746,0.521263,0.880847,0.281232,0.17689,0.680836,0.390188,0.484415,0.674825,0.46037,0.354715,0.116239,0.584686,0.101601,0.462534,0.0289207,0.156209,0.933934,0.534294,0.797014,0.376582,0.521176,0.218231,0.645826,0.340818,0.991386,0.608819,0.270374,0.192617,0.0946724,0.433551,0.845492,0.0651624,0.607905,0.516194,0.898736,0.833995,0.411178,0.948076,0.695825,|0.695831,0.345657,0.111541,0.983354,0.592116,0.287774,0.279201,0.503141,0.0934358,0.964273,0.819585,0.933874,0.49679,0.75368,0.710618,0.0715878,0.875651,0.560091,0.387694,0.307488,0.106054,0.443329,0.649676,0.836509,0.299295,0.879843,0.902846,0.282397,0.979038,0.36384,0.869629,0.573687,0.458252,0.800853,0.011792,0.0758212,0.117916,0.242913,0.498048,0.58326,0.261057,0.697518,0.11667,0.993122,0.108987,0.64061,0.842041,0.987247,0.672194,0.426468,0.951534,0.407778,0.227271,0.441495,0.698655,0.307785,0.630877,0.0231376,0.483995,0.643913,0.06954,0.798601,0.590462,0.583272,0.400913,0.292959,0.650343,0.556844,0.667007,0.910212,0.701553,0.645336,0.651339,0.95569,0.746861,0.31527,0.63127,0.458746,0.996206,0.79753,0.642637,0.0525507,0.751201,0.580048,0.990767,0.0821003,0.552958,0.759367,0.0242475,0.490892,0.291781,0.684679,0.308092,0.00717199,0.151948,0.572706,0.917068,0.830263,0.776479,0.595869,0.0807682,0.923494,0.901387,0.648218,0.511768,0.0176889,0.0355272,0.857107,0.545721,0.827736,0.866787,0.136738,0.0294106,0.779304,0.536947,0.0323022,0.851752,0.103485,0.486148,0.197139,0.0260892,0.74372,0.8179,0.0395871,0.968093,0.666964,0.183226,0.960145,0.615276,0.613597,0.771018,0.523868,0.727562,0.805755,0.801395,0.6431,0.966978,0.0638274,0.695617,0.347132,0.809366,0.460922,0.59736,0.918559,0.130859,0.287111,0.708975,0.24492,0.642956,0.409625,0.572959,0.496159,0.916004,0.912895,0.536434,0.976938,0.239259,0.981532,0.724256,0.563958,0.928845,0.0354632,0.418499,0.979137,0.56424,0.244468,0.375936,0.0816938,0.129638,0.377709,0.104485,0.989169,0.694518,0.878654,0.47585,0.674239,0.704591,0.0676268,0.503434,0.807602,0.897122,0.203163,0.688652,0.599014,0.600891,0.940851,0.107999,0.0354737,0.445709,0.00928324,0.548072,0.353013,0.556336,0.600683,0.569216,0.099556,0.732706,0.354574,0.419142,0.683058,0.58032,0.154047,0.0491831,0.0694988,0.315883,0.0574934,0.629316,0.536902,0.625797,0.100769,0.241032,0.508652,0.731166,0.251873,0.76375,0.58017,0.794941,0.202613,0.372274,0.180305,0.486846,0.279278,0.0084123,0.0273955,0.124988,0.843031,0.784416,0.751264,0.805099,0.957711,0.464536,0.54269,0.457752,0.897938,0.749653,0.621519,0.666579,0.385408,0.0603605,0.533406,0.73594,0.604859,0.97756,0.585258,0.582779,0.403909,0.624059,0.300004,0.757653,0.323489,0.157406,0.268438,0.0662556,0.768562,0.607491,0.141948,0.700436,0.334952,0.683854,0.908194,0.140485,0.332165,0.833409,0.837138,0.0522916,0.310468,0.192161,0.181061,0.729602,0.649528,0.39364,0.677778,0.0921121,0.00345922,0.696912,0.571273,0.75843,0.398339,0.104689,0.0398644,0.927458,0.45603,0.401538,0.604475,0.598187,0.381226,0.791959,0.104695,0.0151387,0.306583,0.412987,0.92157,0.280801,0.604953,0.510517,0.47699,0.286133,0.626032,0.278994,0.783109,0.538171,0.610169,0.575118,0.111291,0.898812,0.04166,0.904631,0.524079,0.16822,0.652212,0.371607,0.181261,0.0204254,0.53777,0.434449,0.278565,0.756056,0.867004,0.213037,0.602407,0.452632,0.746918,0.438589,0.448949,0.00965399,0.907274,0.199676,0.430779,0.0127919,0.913644,0.630192,0.429063,0.866007,0.252618,0.544963,0.0851299,0.604615,0.110102,0.489973,0.873104,0.168977,0.226787,0.631643,0.163614,0.665865,0.470163,0.634318,0.846935,0.874848,0.78229,0.0789643,0.179757,0.846929,0.854902,0.17599,0.937224,0.49033,0.330123,0.43745,0.718956,0.537038,0.355969,0.889316,0.912217,0.870025,0.0189737,0.476971,0.000635386,0.215465,0.15471,0.224776,0.0211837,0.624678,0.872882,0.456935,0.441674,0.154515,0.776536,0.297735,0.522153,0.43871,0.0853498,0.788678,0.916171,0.15187,0.497903,0.440076,0.475439,0.700891,0.680916,0.259173,0.140407,0.209409,0.525057,0.476395,0.31842,0.0664398,0.732448,0.76044,0.193447,0.234751,0.163333,0.997504,0.992262,0.917867,0.505106,0.281117,0.306876,0.195972,0.00100011,0.767185,0.383608,0.952253,0.590587,0.548895,0.640358,0.347648,0.443167,0.590919,0.317463,0.532827,0.0936798,0.501085,0.900054,0.292667,0.26756,0.389421,0.426557,0.72233,0.856153,0.858357,0.197762,0.927288,0.831251,0.824931,0.20116,0.908269,0.633357,0.593934,0.398682,0.427869,0.96188,0.70368,0.145499,0.418287,0.529695,0.47635,0.432199,0.48777,0.567976,0.790149,0.96824,0.811909,0.0781399,0.139848,0.473447,0.924917,0.0497108,0.81205,0.853078,0.72911,0.416037,0.899657,0.0307056,0.420837,0.544049,0.563341,0.690374,0.864821,0.457924,0.911009,0.85068,0.828349,0.532732,0.137074,0.373383,0.398174,0.60819,0.984423,0.640755,0.962248,0.448966,0.659135,0.879753,0.214859,0.174651,0.103521,0.921096,0.762182,0.693704,0.398193,0.0102894,0.115072,0.595454,0.037355,0.0216552,0.205737,0.679809,0.164532,0.483639,0.505054,0.169184,0.253893,0.81279,0.787467,0.305343,0.183833,0.936342,0.628023,0.853108,0.268525,0.236401,0.102509,0.848364,0.248044,0.771055,0.384036,0.405251,0.0189978,0.195671,0.17414,0.259367,0.0547327,0.862854,0.186593,0.873444,0.945906,0.982068,0.548206,0.640367,0.606528,0.210325,0.288011,0.390416,0.435439,0.492136,0.418073,0.70515,0.249019,0.131922,0.777374,0.214194,0.489248,0.74451,0.5651,0.48742,0.865934,0.791725,0.221615,0.0433559,0.325462,0.653553,0.0589876,0.519676,0.00291413,0.14604,0.871522,0.0944284,0.134752,0.180282,0.947827,0.815626,0.345505,0.398,0.79743,0.242913,0.786322,0.997641,0.936407,0.248326,0.465293,0.465261,0.0341918,0.597688,0.97183,0.469001,0.393468,0.516353,0.156481,0.519499,0.49085,0.751562,0.834261,0.730033,0.544032,0.295101,0.892476,0.682377,0.58261,0.422334,0.249329,0.643123,0.248402,0.0495793,0.365748,0.836756,0.00230265,0.396928,0.000580907,0.673467,0.953268,0.62139,0.750938,0.648456,0.0602651,0.0992849,0.972823,0.774674,0.928799,0.386984,0.829536,0.0856889,0.793614,0.329393,0.200916,0.565806,0.808539,0.76831,0.0371407,0.395909,0.226338,0.639219,0.822917,0.0702528,0.724006,0.964406,0.238492,0.258807,0.884223,0.602079,0.46737,0.304572,0.182975,0.644036,0.980635,0.444104,0.638846,0.0655129,0.965331,0.383884,0.0593978,0.102378,0.81451,0.816681,0.805419,0.15241,0.299527,0.597249,0.726001,0.228393,0.159253,0.125192,0.753125,0.546348,0.468917,0.317471,0.138483,0.254605,0.619504,0.679077,0.389504,0.240598,0.358002,0.0831494,0.0302961,0.770629,0.355593,0.859278,0.871052,0.51627,0.174038,0.534077,0.445861,0.89742,0.174066,0.983945,0.0911267,0.894022,0.28272,0.371525,0.55096,0.587454,0.169996,0.00892848,0.389653,0.0452568,0.473745,0.617495,0.932826,0.242916,0.81414,0.270307,0.81936,0.896809,0.521886,0.739267,0.542563,0.986219,0.799915,0.919238,0.89697,0.928441,0.0387303,0.604043,0.726649,0.037195,0.426651,0.785907,0.0409347,0.609415,0.720788,0.223329,0.968937,0.407751,0.740962,0.700814,0.750008,0.116982,0.447071,0.0583162,0.256227,0.904833,0.109424,0.663649,0.192359,0.137163,0.147651,0.96905,0.481111,0.292037,0.0567668,0.166592,0.214977,0.818194,0.443429,0.109517,0.559337,0.163858,0.303763,0.64297,0.346518,0.334083,0.085706,0.855566,0.96947,0.660403,0.440425,0.855812,0.271072,0.661353,0.717233,0.876746,0.848423,0.641155,0.978898,0.741084,0.495282,0.896915,0.601241,0.659361,0.522548,0.710023,0.830459,0.635161,0.854473,0.889068,0.542502,0.265076,0.0233963,0.50835,0.245137,0.395984,0.854962,0.962616,0.385896,0.474546,0.639022,0.136454,0.249166,0.344368,0.889664,0.157426,0.857906,0.348619,0.171585,0.895663,0.719464,0.226247,0.940731,0.144174,0.619316,0.216367,0.86285,0.586042,0.356839,0.648772,0.353318,0.456842,0.00519437,0.320315,0.383481,0.511985,0.279255,0.464172,0.725259,0.69675,0.327205,0.501653,0.89451,0.283825,0.246838,0.5679,0.0332981,0.796552,0.612326,0.312706,0.964947,0.14156,0.316592,0.995759,0.360882,0.71181,0.164154,0.950651,0.804728,0.649635,0.112675,0.989686,0.799057,0.276089,0.110649,0.6561,0.338828,0.126045,0.74942,0.438967,0.333297,0.104203,0.0532552,0.006859,0.548755,0.00075382,0.746557,0.50589,0.767873,0.326704,0.905298,0.97454,0.8918,0.114305,0.226561,0.256863,0.647864,0.778997,0.791467,0.899919,0.20196,0.109748,0.273692,0.559411,0.898017,0.642658,0.285256,0.0889927,0.653495,0.00211024,0.0306099,0.829359,0.387011,0.229944,0.706165,0.600368,0.344799,0.288886,0.747617,0.534281,0.164636,0.796013,0.452964,0.700494,0.740097,0.907725,0.657062,0.196392,0.985572,0.718709,0.422541,0.443229,0.321176,0.451291,0.996125,0.385968,0.0947215,0.862965,0.510849,0.413413,0.223273,0.381642,0.393396,0.42964,0.626294,0.0967868,0.146757,0.72397,0.916166,0.776699,0.242795,0.555235,0.253021,0.419303,0.58498,0.560781,0.0402515,0.455187,0.406298,0.711149,0.256281,0.56821,0.996295,0.0403369,0.383093,0.594581,0.290348,0.875731,0.886187,0.867451,0.148163,0.0863613,0.762422,0.934146,0.051255,0.74748,0.296376,0.813886,0.96959,0.973595,0.226023,0.765211,0.193063,0.668025,0.682291,0.0878751,0.182468,0.875211,0.133514,0.0221545,0.256929,0.225708,0.539179,0.253097,0.204417,0.249609,0.169768,0.477866,0.97707,0.679155,0.967551,0.984125,0.958318,0.442979,0.450708,0.0764521,0.770734,0.711486,0.693877,0.348791,0.996948,0.177622,0.854854,0.335295,0.292927,0.653956,0.279657,0.95262,0.896158,0.950859,0.41639,0.531564,0.572845,0.703557,0.986369,0.629548,0.555395,0.486076,0.479745,0.495208,0.456665,0.702667,0.314987,0.686362,0.743638,0.837632,0.27466,0.695144,0.843247,0.151687,0.544765,0.687811,0.191644,0.154476,|0.976563,0.603598,0.627451,0.951617,0.952755,0.155163,0.743433,0.707871,0.726592,0.504852,0.755274,0.187032,0.240751,0.803119,0.278813,0.697862,0.707944,0.814555,0.647924,0.00382185,0.0257293,0.436949,0.90869,0.0110328,0.204018,0.221332,0.79322,0.495238,0.117831,0.879746,0.377632,0.522229,0.228404,0.524352,0.408461,0.194876,0.133727,0.647938,0.00644737,0.954501,0.785964,0.631906,0.0797228,0.144223,0.314775,0.247344,0.840242,0.919829,0.448117,0.184542,0.713729,0.636037,0.721078,0.686644,0.756945,0.0122069,0.168009,0.790851,0.366347,0.647178,0.804066,0.521371,0.47153,0.52904,0.725448,0.0553321,0.71505,0.210147,0.728342,0.273349,0.111216,0.0869486,0.401203,0.451016,0.115448,0.763077,0.748481,0.916972,0.870928,0.106805,0.728293,0.807051,0.125329,0.815626,0.299551,0.800932,0.610697,0.416077,0.231285,0.231495,0.24876,0.568304,0.31059,0.556504,0.125087,0.964658,0.0367292,0.964772,0.0685219,0.779008,0.116373,0.230306,0.020371,0.99181,0.371492,0.77964,0.542903,0.422986,0.615687,0.839967,0.977925,0.173115,0.746185,0.572144,0.905175,0.277016,0.45554,0.81487,0.528328,0.721758,0.959848,0.493006,0.30931,0.894795,0.554893,0.989442,0.616983,0.303008,0.644089,0.456433,0.642641,0.431229,0.0956132,0.566286,0.761395,0.173531,0.220066,0.936187,0.0867912,0.478595,0.0264633,0.647877,0.724343,0.716569,0.396017,0.659106,0.239252,0.785183,0.48274,0.972223,0.946209,0.93736,0.840959,0.968307,0.28912,0.981566,0.0324975,0.841586,0.182692,0.0321292,0.657778,0.144283,0.0536479,0.803948,0.778276,0.430807,0.743626,0.913328,0.372725,0.414947,0.387379,0.984978,0.344923,0.202982,0.0462636,0.674367,0.639433,0.676051,0.200326,0.0494639,0.618539,0.244922,0.687863,0.643706,0.0145559,0.847192,0.870171,0.190295,0.0725866,0.0869714,0.40146,0.553436,0.556207,0.546124,0.718211,0.499711,0.114184,0.499591,0.625031,0.16298,0.700347,0.496782,0.119979,0.885328,0.643967,0.720625,0.0626706,0.819756,0.790744,0.917616,0.997106,0.809032,0.75229,0.317243,0.251014,0.197831,0.439103,0.295699,0.147614,0.760989,0.20167,0.549426,0.435233,0.273508,0.764196,0.986311,0.630568,0.262622,0.67678,0.653186,0.30567,0.706593,0.635938,0.371146,0.867841,0.946378,0.999307,0.448967,0.965766,0.270957,0.145709,0.578435,0.303355,0.953854,0.771322,0.655676,0.743191,0.096077,0.647314,0.680302,0.579869,0.485571,0.477466,0.557162,0.483346,0.575353,0.630498,0.927154,0.0929036,0.854512,0.218356,0.727372,0.593587,0.971134,0.283344,0.263249,0.428913,0.17113,0.66986,0.472715,0.155808,0.236607,0.245196,0.409547,0.201087,0.177079,0.0693514,0.0604246,0.697092,0.827039,0.272529,0.700742,0.130518,0.330053,0.0198768,0.749305,0.741366,0.459734,0.56995,0.420039,0.0973362,0.127367,0.802785,0.761096,0.580023,0.918705,0.668814,0.246089,0.698334,0.19875,0.27011,0.437099,0.606907,0.950108,0.584269,0.407583,0.306346,0.687882,0.191948,0.525659,0.0433287,0.326949,0.147383,0.214321,0.547746,0.181601,0.989136,0.0299494,0.959551,0.580938,0.745149,0.961501,0.743036,0.384641,0.501453,0.930416,0.936259,0.827194,0.773441,0.618516,0.498614,0.449246,0.0142345,0.52584,0.291803,0.521935,0.499289,0.581584,0.657621,0.071214,0.223672,0.640248,0.949661,0.597488,0.35879,0.266719,0.0151896,0.945627,0.579435,0.475823,0.868856,0.25758,0.376405,0.284077,0.0545743,0.560836,0.303388,0.595774,0.553422,0.881732,0.115774,0.0835165,0.515901,0.166049,0.303988,0.388909,0.402182,0.707799,0.390176,0.0493697,0.569243,0.0359598,0.983787,0.819749,0.500249,0.608434,0.111526,0.0837653,0.904874,0.838057,0.499083,0.0341469,0.955164,0.971336,0.338076,0.554974,0.271613,0.102086,0.675186,0.339172,0.135203,0.425069,0.5135,0.690547,0.726006,0.740209,0.463419,0.687195,0.634863,0.912914,0.904292,0.610118,0.218628,0.186351,0.944961,0.649557,0.755413,0.300952,0.491678,0.162868,0.942955,0.898794,0.373236,0.58018,0.32998,0.494281,0.428794,0.127893,0.769914,0.20901,0.626543,0.728539,0.983589,0.760961,0.725369,0.849989,0.589994,0.0355844,0.720314,0.119888,0.373532,0.415943,0.801535,0.00862449,0.739574,0.338353,0.417017,0.551977,0.791565,0.315593,0.549495,0.884397,0.310858,0.281066,0.867019,0.356622,0.783847,0.675417,0.784536,0.225495,0.0211449,0.252903,0.893997,0.228303,0.964742,0.312461,0.516706,0.727584,0.885264,0.141271,0.505631,0.19554,0.684221,0.353941,0.855192,0.907176,0.266104,0.691828,0.66801,0.375101,0.979175,0.879558,0.436152,0.0214099,0.0103352,0.850691,0.700911,0.379971,0.724821,0.652108,0.467063,0.888899,0.11956,0.33114,0.675142,0.344919,0.796718,0.446573,0.7784,0.429451,0.44641,0.500356,0.635279,0.223244,0.836903,0.893891,0.795155,0.933506,0.947074,0.756394,0.190022,0.448871,0.189864,0.0363227,0.309484,0.267089,0.550036,0.965973,0.947279,0.170725,0.481421,0.0985972,0.322233,0.140644,0.780487,0.534797,0.345442,0.00989968,0.765748,0.690634,0.218336,0.349421,0.520182,0.204793,0.47395,0.820478,0.190664,0.69769,0.802911,0.356393,0.0412072,0.832471,0.995283,0.604649,0.274904,0.155751,0.19154,0.778879,0.836769,0.575632,0.464701,0.950875,0.640778,0.0419911,0.960809,0.435839,0.0335745,0.953607,0.319521,0.135902,0.639898,0.791192,0.906483,0.488677,0.99648,0.708423,0.280232,0.391293,0.489378,0.141778,0.516618,0.656605,0.587072,0.3211,0.257205,0.839579,0.112198,0.23087,0.840001,0.90986,0.705125,0.385665,0.763523,0.459806,0.431958,0.192266,0.156165,0.0607525,0.62781,0.201173,0.347619,0.87698,0.217287,0.0670598,0.119104,0.452778,0.494815,0.169885,0.931488,0.311124,0.589437,0.831361,0.853034,0.0680285,0.399632,0.464444,0.721619,0.604864,0.691434,0.475687,0.853816,0.411574,0.474406,0.0835841,0.0916204,0.343758,0.861864,0.520496,0.834958,0.477122,0.439242,0.785205,0.706204,0.28309,0.171375,0.179887,0.00399965,0.855512,0.658322,0.00901121,0.5671,0.932394,0.525515,0.804213,0.475836,0.509172,0.423223,0.374044,0.0911482,0.74326,0.948114,0.437783,0.900458,0.915656,0.335402,0.697719,0.177387,0.0539655,0.411352,0.621991,0.919294,0.637833,0.760563,0.0518973,0.959796,0.0961801,0.972689,0.103228,0.516746,0.556158,0.617969,0.19272,0.202396,0.856057,0.816073,0.0388325,0.000718236,0.668266,0.426527,0.33949,0.283571,0.561397,0.608155,0.435632,0.11101,0.526458,0.680666,0.7756,0.34311,0.582313,0.35234,0.177491,0.967315,0.464698,0.68012,0.0254651,0.720977,0.0838569,0.100653,0.204735,0.671098,0.413952,0.0954639,0.504422,0.744871,0.158041,0.0506512,0.642166,0.688955,0.786535,0.832401,0.702518,0.0689389,0.240624,0.539705,0.070299,0.630461,0.924784,0.0379165,0.21847,0.247951,0.774204,0.710632,0.96136,0.325177,0.344568,0.696866,0.951577,0.179046,0.288804,0.965925,0.771542,0.126185,0.142788,0.960287,0.340356,0.881932,0.662159,0.405555,0.580642,0.0240916,0.512778,0.104253,0.573175,0.401855,0.497494,0.491338,0.729134,0.917746,0.0129459,0.681957,0.332199,0.188438,0.425789,0.0127261,0.515444,0.858537,0.0909519,0.496591,0.902915,0.790804,0.841875,0.887673,0.208546,0.759702,0.263098,0.690246,0.697113,0.853448,0.293298,0.311198,0.00564617,0.541402,0.629736,0.822468,0.500571,0.900044,0.807324,0.200444,0.800018,0.434316,0.157964,0.694468,0.0504821,0.494745,0.809521,0.167681,0.732361,0.628646,0.524669,0.575837,0.0393002,0.533525,0.714661,0.320191,0.536251,0.969973,0.0929732,0.699894,0.305251,0.806591,0.248949,0.055755,0.0692264,0.164192,0.39275,0.564752,0.793442,0.215637,0.43833,0.460844,0.342507,0.577326,0.930802,0.874174,0.961234,0.872314,0.657147,0.791734,0.509482,0.883749,0.218779,0.190093,0.476676,0.129408,0.644695,0.64583,0.409492,0.593445,0.862064,0.376844,0.671943,0.234349,0.054608,0.0228467,0.663558,0.993569,0.333765,0.107729,0.950131,0.226221,0.425995,0.0592819,0.623415,0.648952,0.947054,0.0478016,0.690941,0.386595,0.0892488,0.0957697,0.959118,0.754321,0.509607,0.523967,0.793742,0.135452,0.384465,0.949058,0.179581,0.212726,0.209143,0.838979,0.231984,0.50767,0.565448,0.0728852,0.684922,0.2922,0.985074,0.713346,0.947028,0.709846,0.627582,0.754937,0.432645,0.08255,0.304291,0.810953,0.387788,0.590559,0.187277,0.848512,0.85224,0.00452721,0.152355,0.248162,0.558797,0.978838,0.887664,0.820827,0.304457,0.822184,0.953901,0.825455,0.125531,0.709768,0.374207,0.816997,0.209758,0.0529627,0.669679,0.457913,0.170912,0.731666,0.454687,0.1312,0.584359,0.925668,0.782501,0.800252,0.862033,0.518039,0.370599,0.586954,0.420562,0.850137,0.55282,0.847333,0.779165,0.194901,0.402617,0.825236,0.706229,0.841538,0.313681,0.170055,0.750493,0.0437407,0.643358,0.56141,0.827749,0.393467,0.590951,0.168843,0.655699,0.390269,0.486272,0.591176,0.0903239,0.999438,0.178696,0.639321,0.324105,0.45027,0.704227,0.107056,0.115985,0.722379,0.498239,0.10452,0.590553,0.0465071,0.0728669,0.00705171,0.0198027,0.87138,0.361114,0.318407,0.411488,0.377316,0.0362846,0.262442,0.891043,0.574752,0.230926,0.43771,0.532697,0.475338,0.594687,0.491655,0.298695,0.923031,0.797705,0.88655,0.83912,0.764646,0.85471,0.499941,0.940826,0.695539,0.886847,0.106035,0.166317,0.249248,0.562892,0.97232,0.605548,0.575722,0.762794,0.744992,0.934202,0.739591,0.88431,0.718546,0.0444757,0.125797,0.608067,0.907493,0.572785,0.564675,0.883029,0.887304,0.9744,0.13404,0.951647,0.889263,0.758417,0.108016,0.481758,0.161836,0.730061,0.920049,0.377223,0.374669,0.149787,0.497778,0.210427,0.631916,0.0510256,|0.577929,0.884498,0.76755,0.804719,0.873146,0.445195,0.325152,0.987978,0.0764405,0.755307,0.595516,0.070848,0.668147,0.00560129,0.339654,0.169885,0.86648,0.259654,0.672231,0.834821,0.639287,0.208435,0.0646604,0.334712,0.868373,0.619336,0.00619668,0.42145,0.914506,0.732397,0.65048,0.470459,0.874127,0.187348,0.709075,0.553898,0.334155,0.5019,0.899006,0.982244,0.784994,0.387604,0.244923,0.499149,0.385557,0.0645451,0.109315,0.595862,0.858225,0.936072,0.115233,0.700024,0.727971,0.0550487,0.213123,0.0223653,0.256938,0.672261,0.644606,0.927089,0.993234,0.150506,0.701627,0.441281,0.740809,0.568288,0.603118,0.752482,0.578716,0.178723,0.239271,0.685773,0.0374171,0.47736,0.829137,0.952234,0.439639,0.21309,0.972828,0.323641,0.886737,0.799417,0.764409,0.496589,0.39521,0.0527516,0.862139,0.450423,0.564565,0.382499,0.31295,0.476408,0.576292,0.863613,0.65163,0.340846,0.899813,0.607408,0.679936,0.480569,0.492372,0.0862802,0.0492409,0.971587,0.209149,0.48714,0.769155,0.7149,0.6042,0.675457,0.438076,0.108625,0.933245,0.419473,0.581218,0.289464,0.142073,0.386546,0.513895,0.897994,0.406578,0.15911,0.741759,0.0238935,0.761642,0.0866746,0.375522,0.662668,0.64454,0.0663757,0.988467,0.977945,0.409032,0.600289,0.592377,0.0113051,0.835679,0.27717,0.742364,0.483655,0.344047,0.967453,0.0155571,0.957633,0.64053,0.892112,0.762541,0.204467,0.302335,0.262557,0.310158,0.281585,0.721484,0.25785,0.420504,0.929845,0.953054,0.342047,0.680376,0.0225013,0.0654214,0.584407,0.906018,0.652012,0.980344,0.838276,0.791799,0.0752584,0.760654,0.154966,0.0471341,0.60768,0.581787,0.274557,0.936618,0.657644,0.91342,0.751498,0.0539327,0.197203,0.350417,0.163006,0.324575,0.794126,0.616194,0.0109939,0.687409,0.72441,0.336026,0.830915,0.237741,0.453255,0.576411,0.260766,0.851158,0.175761,0.236409,0.646045,0.191124,0.186493,0.076673,0.734915,0.939026,0.684069,0.843598,0.761143,0.816173,0.0839128,0.656957,0.0976425,0.68879,0.0312994,0.660345,0.413425,0.655888,0.824378,0.213357,0.655693,0.663058,0.50968,0.398081,0.396053,0.648882,0.904993,0.342324,0.634379,0.869891,0.612864,0.898003,0.691134,0.25531,0.78359,0.526639,0.465287,0.886735,0.186417,0.929361,0.465884,0.987537,0.313875,0.366105,0.355886,0.917359,0.916138,0.0877667,0.296638,0.160777,0.412971,0.456535,0.841599,0.472888,0.0857522,0.687555,0.672378,0.828047,0.840245,0.952702,0.896194,0.676261,0.945815,0.566427,0.922285,0.220692,0.86314,0.214408,0.328985,0.212986,0.727304,0.448975,0.765935,0.00427002,0.146465,0.213067,0.0860874,0.489616,0.574775,0.907212,0.979885,0.979734,0.377485,0.794397,0.812529,0.575383,0.063226,0.441175,0.316446,0.979109,0.132669,0.687908,0.715207,0.705491,0.545341,0.763016,0.472985,0.0868607,0.428287,0.130684,0.385977,0.931664,0.197992,0.333428,0.89764,0.779242,0.660132,0.183525,0.251333,0.825535,0.625606,0.746821,0.972075,0.887267,0.759599,0.36117,0.382027,0.131641,0.473974,0.414941,0.00240928,0.735719,0.631466,0.139195,0.461942,0.295287,0.68394,0.605263,0.65084,0.257105,0.241953,0.171709,0.978949,0.756004,0.837623,0.0371888,0.619564,0.515685,0.343877,0.330103,0.891983,0.800848,0.893226,0.907515,0.626156,0.707949,0.720448,0.142782,0.414688,0.566481,0.977907,0.955517,0.240052,0.713924,0.595716,0.908687,0.810215,0.754957,0.918412,0.994255,0.437217,0.623116,0.495993,0.0195078,0.772747,0.677966,0.648661,0.754252,0.0403133,0.240004,0.845601,0.799908,0.517711,0.24993,0.775547,0.648816,0.372095,0.0298302,0.714085,0.669087,0.658572,0.0409752,0.175246,0.647153,0.171587,0.182805,0.418613,0.260108,0.153618,0.50112,0.134471,0.242676,0.72248,0.426637,0.50375,0.158942,0.455091,0.767555,0.66534,0.699905,0.0330285,0.428682,0.502635,0.158748,0.548188,0.970254,0.865819,0.192767,0.0197901,0.4485,0.230798,0.45789,0.124316,0.587488,0.990554,0.0399386,0.460617,0.667487,0.33112,0.958437,0.673438,0.794503,0.14834,0.0409387,0.443655,0.458167,0.470616,0.953732,0.342974,0.206841,0.639099,0.71014,0.478512,0.886411,0.664985,0.718857,0.576011,0.432122,0.41797,0.612633,0.460078,0.745678,0.129368,0.381192,0.938793,0.416707,0.885949,0.136164,0.91335,0.94039,0.461743,0.183066,0.92393,0.400974,0.126154,0.00845492,0.239006,0.609623,0.197136,0.990249,0.307346,0.187034,0.97702,0.399465,0.626701,0.872699,0.0850613,0.992166,0.241214,0.593387,0.8296,0.414815,0.195471,0.359958,0.497653,0.135153,0.716603,0.405461,0.498307,0.468052,0.606551,0.897511,0.019962,0.918955,0.738651,0.9848,0.374993,0.569064,0.122839,0.647829,0.582245,0.361905,0.175865,0.803182,0.87656,0.131989,0.527326,0.858524,0.243323,0.742657,0.188196,0.122293,0.03029,0.754128,0.0161628,0.208848,0.257741,0.790669,0.480511,0.862386,0.0489637,0.00708878,0.108296,0.265055,0.596326,0.481066,0.63968,0.424455,0.664952,0.956852,0.229557,0.411361,0.234569,0.79821,0.65019,0.376967,0.293981,0.332508,0.343712,0.0552057,0.047825,0.420464,0.48115,0.0542905,0.79086,0.195792,0.996599,0.232916,0.0415888,0.827107,0.319684,0.814646,0.158658,0.546964,0.375426,0.811305,0.23522,0.653071,0.710054,0.531236,0.590964,0.942737,0.527012,0.184137,0.279367,0.0683561,0.122895,0.465033,0.682138,0.897688,0.400594,0.365591,0.337091,0.21091,0.476482,0.259233,0.110956,0.543837,0.0548034,0.779734,0.694865,0.369912,0.548436,0.443703,0.229049,0.133819,0.749122,0.857933,0.785908,0.401373,0.00561106,0.629164,0.644735,0.0363504,0.875517,0.527551,0.631263,0.291523,0.753973,0.993801,0.140032,0.575182,0.416241,0.338918,0.413251,0.565333,0.140144,0.752607,0.242237,0.785802,0.607433,0.959656,0.0366457,0.318163,0.413874,0.463205,0.906672,0.346706,0.435244,0.273263,0.424197,0.840254,0.171522,0.576463,0.120844,0.273637,0.523307,0.428304,0.725812,0.631163,0.0932916,0.622339,0.681696,0.948346,0.792547,0.927107,0.144962,0.763258,0.716689,0.632061,0.157643,0.815376,0.188394,0.325191,0.250064,0.85383,0.831327,0.564554,0.648676,0.374848,0.774985,0.127947,0.577719,0.602982,0.0453466,0.627518,0.968009,0.601563,0.908316,0.0957742,0.394875,0.619222,0.22467,0.148537,0.153151,0.161866,0.814682,0.685221,0.0691372,0.182247,0.023205,0.682514,0.487716,0.233031,0.409806,0.647703,0.391381,0.777812,0.931454,0.550651,0.8883,0.719001,0.439617,0.866758,0.780476,0.512566,0.6319,0.650959,0.447168,0.590617,0.135541,0.727899,0.728289,0.127173,0.236418,0.970108,0.422916,0.423034,0.900983,0.534533,0.884855,0.0016579,0.703974,0.25388,0.918671,0.834053,0.924854,0.340734,0.306801,0.437459,0.971401,0.776635,0.693984,0.67298,0.382404,0.974587,0.118747,0.166471,0.652947,0.618626,0.258012,0.484618,0.063024,0.970064,0.766047,0.520526,0.144706,0.488912,0.919363,0.893367,0.161537,0.667612,0.342178,0.292848,0.133127,0.48015,0.894308,0.597246,0.248065,0.279742,0.107536,0.537514,0.144724,0.0209453,0.665177,0.0126704,0.541189,0.555194,0.576454,0.434508,0.836655,0.378613,0.873108,0.648725,0.134789,0.585616,0.530458,0.385301,0.00150108,0.42705,0.264093,0.441328,0.364339,0.43827,0.433008,0.172912,0.077865,0.884047,0.830092,0.443219,0.733111,0.435687,0.651462,0.466984,0.778075,0.401587,0.00544775,0.545083,0.906084,0.708262,0.0880319,0.932974,0.766773,0.996372,0.234747,0.116766,0.693395,0.513067,0.270221,0.0405611,0.700367,0.882937,0.364184,0.957548,0.242791,0.00252759,0.381487,0.209635,0.41587,0.323683,0.268652,0.334624,0.0295295,0.941748,0.986774,0.676227,0.772718,0.0796299,0.904138,0.360696,0.0790281,0.858766,0.0776911,0.149111,0.621316,0.0351681,0.471195,0.446421,0.517399,0.363556,0.150901,0.523585,0.158808,0.855797,0.500836,0.156922,0.0767365,0.134202,0.271982,0.297127,0.102057,0.361477,0.652272,0.227862,0.669507,0.453135,0.373544,0.598159,0.0626917,0.10755,0.798906,0.550017,0.38755,0.535116,0.882508,0.671601,0.244364,0.124171,0.492129,0.069926,0.883928,0.913805,0.383899,0.0983796,0.153935,0.931502,0.95968,0.140015,0.427154,0.225998,0.561712,0.771039,0.795813,0.0753667,0.231166,0.519942,0.811936,0.302754,0.341275,0.527593,0.109695,0.664091,0.673085,0.223476,0.112364,0.38278,0.491133,0.234956,0.421754,0.184067,0.226888,0.275278,0.58225,0.0852579,0.856803,0.162955,0.598987,0.0290119,0.437165,0.271143,0.820781,0.5153,0.575714,0.883181,0.693832,0.106893,0.604919,0.933555,0.997705,0.582592,0.18981,0.78991,0.26277,0.327802,0.478108,0.735377,0.37975,0.757485,0.873237,0.598606,0.597862,0.47406,0.066469,0.176389,0.175622,0.80792,0.288495,0.0186992,0.134876,0.694614,0.72139,0.265678,0.848114,0.753738,0.467691,0.137453,0.0274369,0.973779,0.46867,0.102883,0.92685,0.175065,0.749652,0.172532,0.20247,0.773766,0.105927,0.318325,0.535737,0.561819,0.1592,0.40347,0.801224,0.262606,0.665134,0.55155,0.522686,0.899913,0.56852,0.59779,0.428932,0.621921,0.341191,0.544993,0.318515,0.525304,0.631048,0.0708418,0.509901,0.736438,0.383759,0.0636037,0.0453331,0.0632958,0.749875,0.768335,0.641736,0.301369,0.875687,0.134017,0.900323,0.395382,0.482566,0.480591,0.280462,0.600023,0.172387,0.645277,0.960227,0.83243,0.293101,0.685743,0.110506,0.578682,0.355203,0.515532,0.884484,0.895478,0.0471515,0.529157,0.516006,0.103879,0.894242,0.121851,0.790313,0.821298,0.631208,0.685483,0.124497,0.375995,0.133951,0.640396,0.52962,0.726772,0.0831226,0.0379224,0.935494,0.486094,0.282289,0.791334,0.520331,0.867846,0.512561,|0.829657,0.469548,0.33238,0.261045,0.555773,0.675224,0.469248,0.614392,0.346317,0.203812,0.474609,0.11628,0.499338,0.894936,0.765545,0.597353,0.232739,0.109249,0.214284,0.201001,0.376739,0.611324,0.967452,0.326398,0.00143325,0.0731167,0.434055,0.14469,0.603948,0.174052,0.645443,0.537947,0.184725,0.314475,0.176225,0.162859,0.799563,0.593995,0.718139,0.641119,0.696597,0.45626,0.859716,0.915366,0.820837,0.794176,0.690228,0.915826,0.725513,0.281431,0.41178,0.782776,0.21599,0.470776,0.423124,0.852578,0.822374,0.714717,0.6738,0.0936241,0.584775,0.812526,0.443534,0.207418,0.430786,0.154746,0.414947,0.071684,0.204947,0.35378,0.441924,0.99019,0.293133,0.576921,0.99781,0.35554,0.580182,0.430822,0.562413,0.723572,0.0666478,0.942015,0.0283124,0.396759,0.440868,0.87544,0.602207,0.416097,0.0144168,0.150554,0.646834,0.743108,0.378907,0.0892698,0.519939,0.0994948,0.411027,0.773718,0.026823,0.629164,0.268016,0.39734,0.204384,0.243598,0.926601,0.228134,0.44575,0.134567,0.737052,0.612139,0.126875,0.539934,0.782314,0.475368,0.139344,0.142839,0.76525,0.284401,0.0142856,0.316692,0.157486,0.961798,0.0862167,0.0981811,0.110321,0.923806,0.427369,0.561301,0.213972,0.0798661,0.207497,0.568708,0.634545,0.021943,0.789024,0.273026,0.95508,0.10449,0.862076,0.360942,0.963962,0.512278,0.356194,0.0115159,0.197827,0.206977,0.441051,0.282743,0.447094,0.34076,0.333896,0.765288,0.907205,0.151285,0.945857,0.925418,0.238039,0.600332,0.566087,0.465391,0.687632,0.779954,0.484185,0.0549645,0.988113,0.589721,0.598827,0.825167,0.159107,0.980624,0.896655,0.338582,0.891369,0.502516,0.183427,0.557876,0.0832525,0.137315,0.246239,0.729601,0.42188,0.693993,0.35462,0.904124,0.320768,0.196308,0.66938,0.322136,0.170764,0.396263,0.347097,0.659711,0.392746,0.450705,0.667905,0.565962,0.127899,0.401959,0.442991,0.281863,0.617388,0.235827,0.421952,0.20156,0.363626,0.0501438,0.518363,0.190516,0.465099,0.0397975,0.630878,0.804544,0.254029,0.699642,0.54687,0.0220079,0.0765174,0.691398,0.471088,0.671981,0.260443,0.732868,0.294988,0.114962,0.760249,0.705542,0.800529,0.348984,0.431618,0.787487,0.145853,0.0337815,0.523293,0.332718,0.382067,0.642165,0.351925,0.418381,0.0722362,0.689862,0.383029,0.367318,0.0891668,0.0803999,0.860301,0.307079,0.290263,0.925653,0.606504,0.25708,0.93145,0.20335,0.886722,0.409557,0.470187,0.175317,0.999831,0.960075,0.271587,0.0854704,0.803376,0.270964,0.31724,0.659074,0.648862,0.850605,0.0622209,0.629341,0.441843,0.0531662,0.0725033,0.755534,0.217259,0.320704,0.605215,0.17387,0.393754,0.384597,0.971337,0.495553,0.874188,0.687511,0.0737923,0.597806,0.796006,0.298762,0.735843,0.850674,0.728791,0.321895,0.745371,0.545676,0.399524,0.95511,0.424093,0.885831,0.684658,0.392087,0.679273,0.521744,0.174819,0.306589,0.56594,0.162634,0.016449,0.480772,0.935925,0.13615,0.8455,0.917289,0.420082,0.130325,0.2906,0.77139,0.358931,0.71715,0.663577,0.165859,0.843938,0.641703,0.596029,0.000415802,0.0809938,0.622448,0.208795,0.276172,0.824903,0.908069,0.891132,0.651762,0.76702,0.684854,0.420215,0.500969,0.738079,0.428641,0.181959,0.625623,0.396366,0.744141,0.207383,0.0458493,0.526466,0.75128,0.330141,0.67692,0.559937,0.558016,0.498791,0.102736,0.54666,0.178649,0.420239,0.53987,0.172024,0.985573,0.190235,0.303289,0.821518,0.791923,0.684394,0.715102,0.24691,0.178554,0.46321,0.954286,0.00886607,0.286647,0.261281,0.794078,0.395517,0.147587,0.886733,0.426871,0.618268,0.476659,0.844171,0.409288,0.0875186,0.49693,0.255656,0.830254,0.137769,0.137764,0.330622,0.333976,0.704237,0.906093,0.799071,0.2626,0.1392,0.609762,0.463079,0.951693,0.790433,0.581723,0.306501,0.602702,0.964001,0.506045,0.433283,0.0521721,0.0413154,0.0220219,0.616882,0.963357,0.214782,0.19216,0.782696,0.0205876,0.2508,0.162929,0.645887,0.736523,0.49155,0.0740278,0.595291,0.296145,0.313232,0.759586,0.261231,0.235288,0.998507,0.587938,0.46214,0.223783,0.325659,0.436588,0.277141,0.874339,0.272513,0.220522,0.587848,0.222577,0.824157,0.833969,0.964127,0.805882,0.937455,0.665709,0.280215,0.735825,0.408629,0.851746,0.547243,0.952516,0.64537,0.345706,0.228336,0.550382,0.614276,0.90003,0.519065,0.607995,0.0713151,0.695195,0.733804,0.482879,0.796259,0.825076,0.266043,0.883705,0.432176,0.615227,0.480163,0.0668427,0.639581,0.0442816,0.843946,0.129655,0.462928,0.187704,0.190186,0.0682445,0.25561,0.0717539,0.0865349,0.681043,0.373849,0.568665,0.0522105,0.563292,0.884145,0.406397,0.910743,0.418326,0.763716,0.807248,0.426775,0.472917,0.973409,0.888333,0.180021,0.509364,0.30244,0.356313,0.157383,0.918157,0.611698,0.775877,0.473098,0.689371,0.863842,0.263523,0.495955,0.769347,0.223325,0.0134717,0.652162,0.715555,0.65946,0.283596,0.330564,0.267906,0.0311425,0.424293,0.360143,0.440165,0.417275,0.837124,0.322756,0.939693,0.60905,0.948608,0.00401706,0.00957,0.436304,0.747238,0.518603,0.251226,0.505526,0.842213,0.604517,0.0824348,0.487667,0.27047,0.676125,0.973577,0.697703,0.0026831,0.152193,0.301155,0.804128,0.125166,0.584958,0.135097,0.406052,0.572052,0.173255,0.569826,0.449681,0.0981631,0.748716,0.330161,0.0917065,0.618296,0.755459,0.658047,0.379713,0.306118,0.849017,0.349608,0.335575,0.924035,0.614266,0.274662,0.473947,0.997126,0.583896,0.704293,0.930765,0.111381,0.887778,0.0895125,0.0292289,0.0822359,0.0108085,0.332477,0.727609,0.264061,0.902831,0.54261,0.252495,0.209191,0.109358,0.383859,0.00345707,0.0156762,0.432248,0.652323,0.806918,0.370273,0.604719,0.536146,0.120464,0.623686,0.712778,0.252721,0.266205,0.348209,0.101588,0.640247,0.849238,0.114328,0.94289,0.928266,0.00586516,0.0149679,0.318176,0.356611,0.863261,0.904873,0.906898,0.603886,0.415873,0.482587,0.43088,0.814157,0.683764,0.319619,0.594184,0.322214,0.309795,0.58466,0.251046,0.944878,0.326862,0.11721,0.632773,0.548459,0.981156,0.929807,0.88686,0.716803,0.0709995,0.99006,0.46219,0.239448,0.611774,0.0689058,0.194993,0.0771657,0.852381,0.737908,0.889437,0.701205,0.404204,0.132643,0.752956,0.220264,0.600334,0.49709,0.9899,0.777401,0.00745863,0.974735,0.182939,0.599665,0.41431,0.94413,0.446689,0.327009,0.0642483,0.256685,0.683913,0.101229,0.102621,0.449087,0.654833,0.390328,0.208086,0.657253,0.754194,0.365663,0.991636,0.0864549,0.303054,0.0410131,0.124792,0.895995,0.0295448,0.979927,0.0499943,0.0763632,0.547036,0.0230321,0.0945318,0.411502,0.787029,0.242294,0.965378,0.837535,0.416949,0.604669,0.0360937,0.985874,0.915799,0.754547,0.294844,0.326468,0.701242,0.158591,0.780032,0.208865,0.795199,0.634679,0.0159501,0.374969,0.463423,0.8602,0.690614,0.263101,0.963253,0.893683,0.307457,0.870463,0.512983,0.374833,0.162228,0.194604,0.220519,0.580193,0.379224,0.189673,0.614767,0.508977,0.854813,0.418523,0.928131,0.132815,0.480022,0.165698,0.475622,0.698106,0.317628,0.673141,0.489434,0.0940787,0.588892,0.312532,0.17481,0.648333,0.114296,0.578034,0.72349,0.287205,0.324043,0.307982,0.176408,0.765283,0.649077,0.316975,0.449193,0.582898,0.858346,0.881948,0.10003,0.472667,0.845429,0.352958,0.413601,0.707027,0.803516,0.0997395,0.946674,0.800094,0.111838,0.248792,0.525106,0.187395,0.068777,0.550318,0.882387,0.337033,0.563257,0.852699,0.225783,0.340918,0.208744,0.151113,0.817117,0.790189,0.455185,0.425112,0.288836,0.389831,0.936045,0.730213,0.232992,0.714881,0.293021,0.254893,0.250995,0.634676,0.246394,0.586803,0.364845,0.901719,0.532685,0.519624,0.174088,0.596877,0.688034,0.287989,0.915055,0.825959,0.859393,0.542713,0.923726,0.612041,0.520928,0.704061,0.779832,0.597841,0.326111,0.457649,0.785326,0.478345,0.71055,0.613088,0.917627,0.859186,0.986654,0.219963,0.612447,0.774815,0.079165,0.508695,0.0463665,0.505651,0.577262,0.508102,0.0778723,0.773571,0.926543,0.805128,0.173492,0.253964,0.140169,0.382564,0.942953,0.08921,0.941799,0.987722,0.438406,0.0831686,0.299274,0.200112,0.0801587,0.231999,0.204495,0.826056,0.0654025,0.79032,0.0572117,0.116724,0.245322,0.977484,0.0708604,0.835618,0.0143682,0.326959,0.177703,0.230762,0.704774,0.285239,0.374898,0.17008,0.133391,0.761054,0.748019,0.187309,0.840114,0.680226,0.701798,0.931843,0.466759,0.119817,0.457585,0.921924,0.447109,0.151531,0.189012,0.49985,0.552695,0.878436,0.762416,0.000502765,0.826091,0.0900005,0.954872,0.500935,0.31974,0.0964566,0.923117,0.485141,0.290448,0.292752,0.0577207,0.337461,0.634383,0.806916,0.642568,0.253147,0.416861,0.401812,0.132619,0.609362,0.99245,0.655654,0.0330116,0.538744,0.543704,0.690261,0.36969,0.426232,0.253896,0.679406,0.934173,0.346514,0.233112,0.401624,0.258931,0.0718179,0.105104,0.856083,0.104369,0.515382,0.44024,0.673637,0.508543,0.455253,0.281757,0.257546,0.37972,0.412565,0.759728,0.717291,0.420444,0.547568,0.316738,0.223534,0.200521,0.42785,0.258302,0.261168,0.0638685,0.263142,0.0361421,0.840896,0.756609,0.0646065,0.190436,0.0211996,0.378603,0.571679,0.127325,0.250321,0.638472,0.292059,0.988136,0.347448,0.437328,0.145855,0.199477,0.0839496,0.723785,0.224071,0.583275,0.547022,0.146774,0.275305,0.946308,0.738417,0.818307,0.36982,0.596654,0.591967,0.298953,0.889221,0.493299,0.91438,0.376797,0.127032,0.35054,0.551054,0.783603,0.0047437,0.661118,0.334562,0.64843,0.0707986,0.276062,0.0782456,0.41,0.920277,0.804897,0.660651,0.909748,0.450479,|0.156149,0.112407,0.158017,0.958506,0.662228,0.45288,0.832936,0.0785774,0.386142,0.00211155,0.678801,0.70822,0.262053,0.516153,0.317411,0.827371,0.642607,0.612969,0.224833,0.983106,0.609381,0.720817,0.266146,0.648059,0.376738,0.791698,0.13838,0.545675,0.134882,0.0414087,0.501903,0.935953,0.631989,0.580363,0.316934,0.344288,0.354872,0.0813187,0.715958,0.949203,0.247514,0.880422,0.141214,0.825757,0.336508,0.196094,0.498476,0.544826,0.667441,0.597531,0.885447,0.338909,0.0426272,0.185676,0.433598,0.440264,0.0714458,0.297829,0.491664,0.251846,0.315258,0.177782,0.0644811,0.825001,0.0741931,0.393447,0.439176,0.775403,0.472816,0.494417,0.692423,0.783543,0.127443,0.737701,0.400385,0.018409,0.94324,0.583973,0.791186,0.663669,0.385438,0.0468755,0.61097,0.272519,0.25553,0.920043,0.491247,0.781667,0.0818771,0.764533,0.707786,0.420428,0.947652,0.842622,0.280833,0.26462,0.00399876,0.973115,0.541048,0.635137,0.11758,0.526986,0.183553,0.604128,0.993013,0.871726,0.675518,0.0123097,0.73519,0.780008,0.600925,0.941682,0.722276,0.696856,0.36866,0.629894,0.0545505,0.390054,0.332725,0.00876391,0.372153,0.48006,0.475421,0.987994,0.443949,0.534977,0.52991,0.352418,0.820636,0.312496,0.587191,0.8114,0.333443,0.934967,0.27661,0.0158966,0.0460481,0.000663519,0.199786,0.666743,0.372465,0.642963,0.331318,0.21589,0.214857,0.635468,0.133085,0.245746,0.29938,0.338298,0.0726721,0.748568,0.854646,0.392217,0.159039,0.0260631,0.93149,0.452279,0.392457,0.675933,0.732649,0.878177,0.0953833,0.666577,0.688713,0.87444,0.715865,0.778602,0.531961,0.380463,0.388046,0.741548,0.588818,0.533307,0.0431221,0.052583,0.322707,0.252962,0.259226,0.729893,0.23374,0.938866,0.75063,0.788023,0.886746,0.804775,0.580745,0.225618,0.101441,0.572554,0.532553,0.0603898,0.874926,0.103028,0.911346,0.720848,0.0085454,0.068207,0.658104,0.892104,0.609537,0.7164,0.0188737,0.223443,0.0265221,0.142837,0.59176,0.504937,0.638942,0.787394,0.364216,0.408446,0.39104,0.13395,0.312316,0.655606,0.0794819,0.0892926,0.568839,0.226928,0.864021,0.52267,0.577305,0.347681,0.626805,0.0182391,0.182745,0.974816,0.521058,0.141481,0.20376,0.551862,0.227368,0.422094,0.368865,0.572149,0.328069,0.477708,0.940885,0.36415,0.383964,0.50003,0.226289,0.157596,0.477054,0.242802,0.407754,0.0406967,0.784589,0.338128,0.339475,0.0981622,0.754751,0.473967,0.778387,0.872856,0.766572,0.0753137,0.147866,0.194184,0.448238,0.983984,0.881976,0.700653,0.358092,0.851563,0.991214,0.867179,0.451216,0.431158,0.660259,0.0868813,0.70719,0.831213,0.878863,0.394496,0.647432,0.105105,0.696851,0.17732,0.283651,0.283471,0.761178,0.270117,0.511039,0.434951,0.68341,0.769323,0.781286,0.407257,0.0255812,0.688469,0.93775,0.675447,0.239145,0.504148,0.501821,0.113167,0.139924,0.132126,0.112186,0.663381,0.0226922,0.163267,0.245613,0.00929642,0.803274,0.184535,0.266023,0.255998,0.540147,0.0158337,0.504434,0.866446,0.25437,0.049005,0.225216,0.480101,0.105885,0.230533,0.124169,0.379639,0.36836,0.596609,0.404752,0.792388,0.554372,0.683733,0.912736,0.931373,0.0943173,0.596669,0.381045,0.686342,0.914217,0.771303,0.439134,0.0959433,0.725233,0.156539,0.582724,0.857508,0.357479,0.236355,0.274923,0.677269,0.382489,0.503015,0.961115,0.592641,0.369461,0.00199199,0.52845,0.606027,0.310653,0.238596,0.649352,0.135333,0.963734,0.329582,0.0379632,0.890431,0.456886,0.283739,0.810157,0.701623,0.3911,0.0902446,0.292537,0.663372,0.905674,0.150909,0.493155,0.949281,0.757856,0.839576,0.383736,0.75091,0.94966,0.376788,0.357701,0.193528,0.497056,0.578847,0.945981,0.848633,0.65296,0.74822,0.268532,0.0930204,0.151834,0.804059,0.404849,0.411407,0.798943,0.999756,0.492262,0.9214,0.503801,0.175392,0.0976108,0.795962,0.0408694,0.130366,0.668998,0.600054,0.355331,0.0424711,0.931886,0.892704,0.266334,0.510362,0.0340565,0.774995,0.487491,0.100875,0.655655,0.565535,0.522651,0.988285,0.691086,7.02143e-05,0.286115,0.384555,0.522668,0.314454,0.937259,0.48028,0.84718,0.331036,0.997576,0.800036,0.277437,0.400226,0.751701,0.490303,0.974998,0.752254,0.82005,0.892048,0.81236,0.796883,0.172083,0.789854,0.283876,0.661073,0.0694418,0.537069,0.306831,0.623035,0.561322,0.557008,0.410685,0.0742888,0.460635,0.195576,0.927767,0.854723,0.867848,0.662964,0.241064,0.786856,0.874053,0.269732,0.551884,0.333197,0.959186,0.938203,0.274669,0.85678,0.547147,0.28769,0.377035,0.521663,0.728953,0.462562,0.707557,0.598751,0.692723,0.668038,0.556084,0.544224,0.0448406,0.45731,0.115829,0.0607207,0.289985,0.273093,0.288208,0.191408,0.587541,0.581707,0.764793,0.357828,0.696325,0.136905,0.311252,0.215295,0.538542,0.70395,0.351339,0.629315,0.631003,0.729216,0.0198075,0.0276106,0.67095,0.524331,0.755103,0.630506,0.593796,0.552636,0.759682,0.588038,0.463523,0.783175,0.500572,0.191822,0.456294,0.0482049,0.540551,0.0707532,0.782862,0.150636,0.497642,0.250238,0.409263,0.643025,0.245015,0.321896,0.214351,0.956506,0.215056,0.326382,0.95979,0.807459,0.69182,0.931235,0.775864,0.81556,0.879388,0.414252,0.416985,0.866034,0.0827658,0.780131,0.449803,0.258829,0.407488,0.516917,0.878691,0.768159,0.958397,0.858679,0.946685,0.563893,0.932463,0.57711,0.0616472,0.632571,0.939802,0.991257,0.0311366,0.331552,0.869623,0.592088,0.871439,0.62384,0.794718,0.603529,0.42527,0.328203,0.690075,0.817607,0.412627,0.695878,0.663638,0.651842,0.0116051,0.0343005,0.844527,0.795758,0.497371,0.195068,0.594458,0.970317,0.659536,0.644298,0.783319,0.861898,0.167626,0.806729,0.620145,0.276603,0.71191,0.24477,0.742049,0.698833,0.592037,0.989749,0.0839466,0.0726551,0.425441,0.710611,0.0518189,0.284743,0.184773,0.344971,0.516663,0.569322,0.056357,0.739241,0.985459,0.980778,0.915396,0.85974,0.744737,0.196595,0.0873029,0.241979,0.381918,0.717275,0.802488,0.156884,0.335266,0.648197,0.811802,0.564707,0.690441,0.255435,0.425705,0.655707,0.367392,0.988565,0.378942,0.0623812,0.0699956,0.263214,0.659791,0.40332,0.89366,0.60268,0.115011,0.84197,0.632008,0.941453,0.858456,0.0409713,0.452901,0.77539,0.214872,0.850086,0.960676,0.934766,0.827632,0.550621,0.299683,0.725678,0.391602,0.45789,0.860872,0.936763,0.472701,0.130822,0.268877,0.106006,0.931487,0.551562,0.914341,0.670624,0.453763,0.0930253,0.935042,0.584261,0.969521,0.724516,0.0789643,0.346538,0.498047,0.843818,0.182907,0.948231,0.960826,0.750886,0.792158,0.226886,0.164847,0.576696,0.573519,0.531668,0.596577,0.485638,0.437453,0.914907,0.0270083,0.0351632,0.442418,0.673434,0.0849552,0.48956,0.242623,0.965141,0.06421,0.567274,0.792832,0.83231,0.63382,0.13541,0.389276,0.570731,0.725739,0.852535,0.394974,0.910723,0.13671,0.108677,0.992917,0.0608508,0.976317,0.822362,0.0202087,0.432622,0.515369,0.0191472,0.66773,0.19722,0.198868,0.598291,0.81658,0.476237,0.841301,0.8344,0.115277,0.580497,0.596398,0.156813,0.241662,0.157469,0.897156,0.281504,0.41302,0.920744,0.550995,0.130238,0.892366,0.354386,0.39201,0.511201,0.826968,0.722024,0.877627,0.373405,0.456511,0.998479,0.639147,0.970457,0.269025,0.141808,0.374553,0.0999448,0.474546,0.652138,0.149955,0.0724076,0.234317,0.137858,0.212604,0.0677445,0.480703,0.631798,0.568347,0.886741,0.987794,0.780206,0.0719641,0.0509344,0.247075,0.112234,0.618088,0.164901,0.758171,0.811883,0.318881,0.705775,0.746248,0.534361,0.625219,0.389981,0.264488,0.351582,0.962556,0.0120657,0.58948,0.135988,0.774978,0.331682,0.85381,0.125031,0.210252,0.448017,0.973555,0.55457,0.515227,0.585764,0.48624,0.549198,0.839157,0.241969,0.782095,0.647294,0.869374,0.427966,0.522423,0.376873,0.961801,0.313957,0.48559,0.291814,0.409307,0.0409175,0.134949,0.144799,0.223381,0.159102,0.180774,0.216808,0.283809,0.833422,0.897913,0.532369,0.139125,0.966589,0.424738,0.405605,0.0953241,0.707991,0.891034,0.735281,0.248397,0.430419,0.95096,0.71556,0.564958,0.246384,0.678045,0.808555,0.686172,0.980273,0.391994,0.354606,0.0383738,0.119963,0.537688,0.801794,0.762355,0.522942,0.0491742,0.830934,0.631976,0.857908,0.681676,0.178808,0.753806,0.912826,0.877341,0.947076,0.451352,0.790508,0.130478,0.88063,0.731735,0.494574,0.207217,0.346249,0.404702,0.290611,0.0530756,0.568479,0.79803,0.532432,0.716812,0.239058,0.0497568,0.939183,0.505318,0.056913,0.477442,0.708084,0.718887,0.324704,0.000584424,0.0857965,0.265103,0.428375,0.839414,0.0873172,0.381873,0.586091,0.214521,0.315532,0.0385541,0.707424,0.898041,0.795811,0.951477,0.432612,0.712078,0.913912,0.846084,0.473859,0.343419,0.978783,0.212964,0.976022,0.423496,0.878483,0.388289,0.809883,0.690832,0.558653,0.248285,0.040484,0.70395,0.157697,0.424589,0.604391,0.725536,0.735277,0.257227,0.587579,0.546175,0.0211409,0.718366,0.0756759,0.257503,0.859841,0.0113798,0.926554,0.716862,0.565304,0.746025,0.980226,0.712892,0.283519,0.638186,0.914883,0.348451,0.25461,0.98199,0.563065,0.993583,0.418413,0.509817,0.892719,0.403759,0.530627,0.985784,0.597608,0.886531,0.521745,0.0568721,0.997928,0.874953,0.587131,0.820868,0.787927,0.571906,0.449963,0.107076,0.478224,0.197403,0.479332,0.00722814,0.0415862,0.743159,0.227841,0.293044,0.670319,0.446692,0.641336,0.741099,0.153842,0.115735,0.746218,0.00994974,0.187591,0.14922,0.799108,0.801955,0.605906,0.568345,0.58975,0.7068,0.848509,0.0592943,0.648266,0.432854,0.571037,0.935993,0.621179,|0.194882,0.591341,0.122931,0.412119,0.0165656,0.791057,0.947479,0.815987,0.539798,0.956056,0.274075,0.733865,0.451383,0.00312155,0.881049,0.00387812,0.492751,0.736143,0.062889,0.0678217,0.182819,0.982179,0.536907,0.148439,0.687504,0.100005,0.667952,0.809256,0.321438,0.0947306,0.214117,0.0466006,0.523928,0.125017,0.626697,0.311112,0.990202,0.942134,0.563329,0.76562,0.0504328,0.793625,0.628894,0.27947,0.502387,0.512928,0.342507,0.0714183,0.276668,0.321347,0.113,0.83948,0.418964,0.0692697,0.673522,0.633485,0.342327,0.800645,0.920929,0.440157,0.796524,0.294202,0.187012,0.337138,0.174978,0.35398,0.727623,0.579836,0.65636,0.836664,0.725112,0.0490785,0.349597,0.332718,0.0817187,0.645849,0.988171,0.657814,0.00336719,0.526801,0.173719,0.723475,0.767743,0.485733,0.559638,0.613323,0.627941,0.817796,0.129434,0.225891,0.244024,0.0423244,0.633646,0.251485,0.61459,0.174114,0.105404,0.975582,0.59456,0.633304,0.889609,0.917811,0.105011,0.0750573,0.580339,0.313353,0.667453,0.510605,0.610901,0.943101,0.162612,0.51276,0.734053,0.334809,0.916251,0.652848,0.0254613,0.553334,0.0159116,0.176444,0.770354,0.909064,0.812495,0.983434,0.771848,0.161059,0.489589,0.155441,0.617658,0.278897,0.998663,0.187989,0.679363,0.305867,0.310776,0.525053,0.588723,0.487208,0.335282,0.681468,0.94045,0.201139,0.0542567,0.892632,0.766861,0.960811,0.767517,0.487992,0.300577,0.223907,0.503522,0.92932,0.428473,0.896643,0.869328,0.924838,0.372072,0.742406,0.669956,0.032956,0.883806,0.210816,0.281229,0.393714,0.148965,0.0824999,0.372373,0.0878738,0.107373,0.359056,0.476559,0.847868,0.470066,0.307567,0.182325,0.0841497,0.0239496,0.818357,0.733997,0.506139,0.0276527,0.277663,0.371386,0.528355,0.372252,0.404698,0.972876,0.173988,0.349302,0.929928,0.943674,0.592514,0.486766,0.296294,0.222146,0.801465,0.932968,0.615949,0.489293,0.750681,0.683964,0.298763,0.901922,0.535107,0.943887,0.175179,0.814352,0.953497,0.650462,0.854727,0.0717657,0.719657,0.19455,0.601925,0.271713,0.559608,0.414239,0.756256,0.687943,0.15068,0.587618,0.439863,0.567562,0.283376,0.356807,0.402581,0.495563,0.482689,0.170197,0.94465,0.1815,0.327091,0.733067,0.733207,0.606217,0.112176,0.165857,0.824906,0.206792,0.669812,0.510619,0.00489634,0.696707,0.494642,0.769705,0.754733,0.738544,0.475879,0.96303,0.0464228,0.470896,0.183644,0.289493,0.755859,0.219787,0.28571,0.11349,0.0645227,0.333293,0.790629,0.0479726,0.659083,0.837824,0.405833,0.960352,0.652174,0.837706,0.00515306,0.501041,0.889398,0.407796,0.674528,0.338645,0.148015,0.930004,0.775523,0.271849,0.358232,0.43804,0.578259,0.772375,0.333942,0.296047,0.235627,0.37605,0.609342,0.919166,0.233926,0.900438,0.685222,0.468675,0.0265143,0.570497,0.818982,0.611716,0.399449,0.321628,0.873872,0.950145,0.0823799,0.265095,0.352223,0.241457,0.614523,0.349295,0.700631,0.0835091,0.0244638,0.0428544,0.777632,0.313671,0.774042,0.137695,0.971314,0.509325,0.454568,0.071419,0.290136,0.147926,0.75541,0.278874,0.0087558,0.760755,0.562451,0.524832,0.411095,0.772149,0.525011,0.589325,0.758368,0.566814,0.907309,0.143837,0.231347,0.262182,0.703649,0.61496,0.851857,0.272815,0.535998,0.720294,0.796444,0.883943,0.00690949,0.331164,0.532103,0.158089,0.272389,0.310429,0.739452,0.31369,0.41975,0.521363,0.689702,0.74854,0.402679,0.338981,0.555276,0.945581,0.561241,0.461283,0.927268,0.7198,0.869452,0.0884506,0.654688,0.456641,0.455027,0.97518,0.0824547,0.63703,0.188292,0.819449,0.29073,0.144876,0.568754,0.769644,0.013829,0.428677,0.366494,0.999473,0.47199,0.923798,0.429877,0.705681,0.97888,0.654284,0.14425,0.799381,0.0574181,0.399962,0.546612,0.573673,0.438429,0.122162,0.631794,0.926091,0.766209,0.556276,0.124582,0.857834,0.960275,0.369764,0.143923,0.901979,0.4958,0.717956,0.708323,0.471661,0.295252,0.540912,0.12419,0.600562,0.394578,0.220326,0.501516,0.0494099,0.520086,0.733671,0.164476,0.0397701,0.806893,0.189372,0.352854,0.621527,0.5809,0.560725,0.23466,0.933736,0.568494,0.946983,0.100875,0.488098,0.0284069,0.57912,0.393484,0.604163,0.629884,0.542138,0.800779,0.228475,0.077579,0.328074,0.821024,0.297626,0.606537,0.0798028,0.313214,0.424868,0.774604,0.157304,0.0977855,0.881524,0.158596,0.812009,0.218166,0.899116,0.219354,0.512123,0.818023,0.474873,0.198779,0.129592,0.742761,0.263419,0.538936,0.630524,0.061979,0.964351,0.136906,0.879659,0.295572,0.10849,0.925057,0.127643,0.92808,0.572428,0.341049,0.916741,0.135717,0.0182767,0.549666,0.532425,0.264818,0.415695,0.965022,0.891572,0.810274,0.867071,0.705672,0.574361,0.194857,0.129478,0.666465,0.0221292,0.610775,0.457879,0.086941,0.151132,0.693647,0.530509,0.385823,0.00885808,0.331351,0.933634,0.240743,0.437279,0.803947,0.8575,0.573143,0.2364,0.59061,0.417736,0.322554,0.440159,0.00215876,0.0550023,0.73448,0.0106809,0.997621,0.339531,0.0871442,0.360567,0.412046,0.784267,0.725528,0.959215,0.501903,0.432448,0.438868,0.00660425,0.950871,0.0621448,0.315674,0.528485,0.135928,0.133298,0.186816,0.31813,0.358534,0.985139,0.897874,0.617835,0.498591,0.21119,0.40991,0.149004,0.503436,0.429635,0.521363,0.951736,0.529074,0.000754654,0.270782,0.336179,0.823407,0.627627,0.173603,0.192662,0.834342,0.89178,0.920628,0.779577,0.907462,0.890823,0.144309,0.597508,0.600664,0.0900739,0.979267,0.979247,0.464519,0.553149,0.761053,0.954387,0.181158,0.726842,0.458351,0.50579,0.75466,0.788711,0.667756,0.598667,0.362967,0.217782,0.0672404,0.0258736,0.111881,0.71355,0.882012,0.182266,0.837487,0.765458,0.217061,0.105462,0.397258,0.847369,0.442207,0.00472987,0.842928,0.204485,0.473777,0.991476,0.719017,0.657924,0.712655,0.296227,0.568135,0.573257,0.238716,0.372894,0.603372,0.7819,0.344362,0.914284,0.844558,0.583881,0.582379,0.557174,0.67931,0.819488,0.0712028,0.195876,0.284155,0.579068,0.511357,0.721727,0.801486,0.808931,0.217973,0.0189023,0.54233,0.638377,0.358626,0.279816,0.800715,0.0401472,0.0707924,0.00106549,0.969037,0.582129,0.788822,0.42268,0.432774,0.386718,0.684886,0.0993105,0.661795,0.768216,0.527594,0.208521,0.557255,0.332081,0.478943,0.753198,0.0685901,0.554743,0.640282,0.744491,0.619564,0.0110763,0.554293,0.581364,0.568207,0.841271,0.975145,0.764732,0.379736,0.213513,0.786709,0.358525,0.909754,0.190965,0.577989,0.510316,0.918489,0.876722,0.814045,0.840142,0.0303164,0.356641,0.048721,0.669226,0.866963,0.77104,0.218692,0.760218,0.228893,0.971285,0.561212,0.187251,0.991669,0.974128,0.28668,0.899137,0.118892,0.879588,0.254079,0.181698,0.931542,0.95199,0.140555,0.429621,0.324599,0.99309,0.722502,0.307534,0.907319,0.309367,0.966641,0.349251,0.370998,0.869642,0.482952,0.450589,0.236257,0.841483,0.124003,0.950531,0.498478,0.827673,0.347845,0.334052,0.267276,0.788205,0.598162,0.650353,0.0380394,0.00936145,0.244321,0.407875,0.204755,0.000145376,0.240708,0.217345,0.350831,0.395865,0.667065,0.648022,0.0564309,0.623092,0.434434,0.00472665,0.715281,0.253867,0.509959,0.130409,0.824833,0.0167454,0.755358,0.071479,0.892098,0.677322,0.871667,0.579734,0.673694,0.905994,0.456796,0.315772,0.941791,0.77428,0.632722,0.933822,0.181855,0.723456,0.230543,0.82142,0.621257,0.644818,0.228599,0.249084,0.13812,0.324992,0.862746,0.406301,0.788339,0.26414,0.278756,0.256422,0.478159,0.761128,0.346739,0.376214,0.591022,0.936232,0.142596,0.166551,0.265327,0.722014,0.266482,0.660269,0.796779,0.951143,0.212373,0.259797,0.528175,0.4158,0.521648,0.178434,0.907298,0.258286,0.311921,0.314529,0.988243,0.337223,0.191601,0.882629,0.719383,0.552495,0.926874,0.250572,0.807573,0.562124,0.183937,0.894567,0.879484,0.946569,0.529739,0.358539,0.741232,0.730465,0.292894,0.367265,0.783254,0.819149,0.240281,0.569935,0.628988,0.368537,0.14465,0.176656,0.505434,0.79854,0.918176,0.190583,0.0720169,0.952285,0.938383,0.810157,0.291446,0.982642,0.486755,0.413868,0.0376351,0.735163,0.0958502,0.0161626,0.665994,0.699705,0.596388,0.816301,0.857596,0.172502,0.12417,0.251406,0.104956,0.470632,0.379763,0.604002,0.143866,0.649945,0.665494,0.570845,0.018478,0.345719,0.585178,0.868687,0.391776,0.582849,0.692425,0.710505,0.469753,0.467944,0.188934,0.560466,0.0149983,0.231394,0.909327,0.640164,0.549695,0.614041,0.702213,0.545898,0.0889655,0.245537,0.815373,0.880629,0.24497,0.250933,0.0340202,0.887591,0.192177,0.433665,0.967489,0.921706,0.0133508,0.866008,0.586749,0.327561,0.204963,0.229192,0.146123,0.199661,0.643011,0.506321,0.740129,0.396805,0.938922,0.0704468,0.599209,0.434752,0.859834,0.653694,0.318142,0.0589929,0.0818446,0.971403,0.27346,0.0158913,0.845498,0.539155,0.642083,0.422953,0.498245,0.698496,0.836702,0.705111,0.106552,0.783236,0.602121,0.0303662,0.637765,0.502778,0.727164,0.715846,0.573669,0.694587,0.375022,0.87088,0.311924,0.343178,0.205456,0.611714,0.215394,0.410091,0.206168,0.287085,0.0953365,0.0663678,0.967595,0.155784,0.649858,0.0524319,0.0860853,0.76581,0.879087,0.24559,0.0518118,0.883251,0.999993,0.829596,0.953757,0.00307369,0.282175,0.191778,0.331679,0.403978,0.465138,0.928677,0.99083,0.15018,0.86979,0.990704,0.363277,0.95546,0.16855,0.25214,0.967136,0.311513,0.903274,0.524906,0.732729,0.00193125,0.870883,0.109562,0.776733,0.567138,0.116912,0.501406,0.178115,0.920782,0.552016,0.7471,0.694432,0.0561767,0.198336,0.881968,0.353194,0.847148,0.842614,|0.665206,0.134915,0.922486,0.465786,0.676877,0.232789,0.139307,0.13257,0.523849,0.208207,0.0931399,0.927649,0.671823,0.175512,0.230383,0.157683,0.864919,0.574037,0.0332144,0.403801,0.116547,0.483294,0.690303,0.515474,0.692661,0.0543138,0.0362275,0.139733,0.313615,0.783393,0.379199,0.553561,0.0155317,0.925614,0.925492,0.908766,0.449532,0.564239,0.774619,0.360717,0.639196,0.0628947,0.0427417,0.376398,0.072716,0.53276,0.814501,0.747609,0.625037,0.251176,0.43189,0.342174,0.737926,0.0190164,0.0608845,0.672102,0.311653,0.272694,0.34263,0.955026,0.602649,0.975861,0.19617,0.32984,0.927176,0.643336,0.643249,0.486887,0.453127,0.811451,0.0868091,0.899724,0.169737,0.369361,0.555315,0.770943,0.769191,0.575275,0.946097,0.226786,0.569807,0.379293,0.0167518,0.142767,0.844494,0.793913,0.68531,0.168105,0.859724,0.0171995,0.138511,0.223259,0.132755,0.694296,0.307541,0.573364,0.963648,0.88002,0.507095,0.906823,0.923937,0.845701,0.161217,0.293512,0.404485,0.966094,0.114539,0.584233,0.0162045,0.395409,0.640036,0.378947,0.567567,0.477034,0.771893,0.192075,0.0299921,0.317226,0.451421,0.443419,0.559057,0.0524472,0.297135,0.294383,0.643524,0.904666,0.333154,0.877745,0.795414,0.590379,0.834753,0.769706,0.634222,0.225373,0.628979,0.467186,0.636658,0.353355,0.591478,0.401072,0.781106,0.519769,0.158794,0.0768831,0.795811,0.097974,0.128017,0.130208,0.482595,0.679591,0.474777,0.830506,0.655374,0.887045,0.864479,0.620114,0.155461,0.104711,0.411639,0.295132,0.518785,0.52278,0.274557,0.308914,0.45432,0.277895,0.453085,0.762156,0.055433,0.868822,0.62747,0.911925,0.855423,0.00670975,0.898466,0.0685445,0.423282,0.89351,0.712994,0.103815,0.82118,0.620565,0.591055,0.337018,0.106753,0.311356,0.248421,0.83182,0.770557,0.674809,0.488831,0.673172,0.859015,0.414614,0.651593,0.716266,0.578369,0.0833382,0.974545,0.207575,0.126661,0.686262,0.139254,0.822541,0.536863,0.939326,0.859895,0.0985242,0.635491,0.830312,0.941552,0.823855,0.0126429,0.015697,0.362992,0.136518,0.0818396,0.957499,0.569392,0.276097,0.261907,0.833991,0.130405,0.23506,0.558968,0.275187,0.745777,0.964607,0.695645,0.797358,0.758107,0.961814,0.243928,0.651463,0.977363,0.404024,0.493378,0.196095,0.217226,0.193103,0.324537,0.899077,0.660848,0.264181,0.478078,0.346533,0.156335,0.255418,0.826453,0.37136,0.54893,0.63683,0.0952058,0.819323,0.607548,0.803299,0.769766,0.728893,0.800925,0.576196,0.746424,0.850713,0.981925,0.142296,0.167336,0.901212,0.358304,0.75714,0.874586,0.050068,0.25519,0.578099,0.847139,0.578703,0.307409,0.492359,0.384475,0.971014,0.482859,0.636887,0.947217,0.971287,0.98378,0.615621,0.777546,0.3721,0.284392,0.727495,0.491346,0.471601,0.727698,0.960841,0.500091,0.639242,0.403294,0.122136,0.519344,0.527397,0.321306,0.98095,0.861374,0.638046,0.158413,0.567713,0.586415,0.531748,0.192258,0.219606,0.822115,0.3536,0.350766,0.920117,0.0944318,0.790608,0.0361426,0.516335,0.280671,0.928215,0.687299,0.662779,0.976651,0.286508,0.339425,0.262197,0.514785,0.878023,0.482334,0.606862,0.525499,0.581772,0.108484,0.960116,0.607911,0.905486,0.894312,0.747851,0.644899,0.133092,0.211303,0.403742,0.395562,0.640698,0.526368,0.457914,0.549361,0.547495,0.242682,0.564111,0.811128,0.0860193,0.737942,0.38688,0.010931,0.351112,0.989779,0.661289,0.301541,0.596553,0.541707,0.911234,0.830784,0.215383,0.0434114,0.155002,0.428913,0.324707,0.942256,0.904494,0.374462,0.456388,0.169814,0.875826,0.473101,0.101063,0.171433,0.664312,0.551825,0.884651,0.842109,0.922622,0.390679,0.819541,0.789446,0.609407,0.719269,0.375971,0.990394,0.560767,0.0790288,0.997558,0.727344,0.807565,0.0480847,0.174401,0.474304,0.319027,0.107904,0.709317,0.990386,0.475358,0.574799,0.524128,0.249279,0.89404,0.0660114,0.267318,0.303054,0.92332,0.0950134,0.566799,0.771872,0.0912874,0.275211,0.1914,0.320699,0.866767,0.631264,0.761766,0.448491,0.299398,0.313734,0.0744095,0.860131,0.435162,0.500785,0.556764,0.753289,0.744417,0.407185,0.14218,0.341547,0.916874,0.938915,0.586453,0.174416,0.186879,0.808518,0.971011,0.0599215,0.95522,0.329525,0.0383911,0.936264,0.829611,0.516779,0.781548,0.196827,0.530959,0.544543,0.0244548,0.66167,0.122795,0.522378,0.0122102,0.212433,0.0584625,0.889021,0.240963,0.612564,0.951524,0.657996,0.178762,0.675677,0.68256,0.000432849,0.533309,0.07907,0.11051,0.746501,0.911385,0.923234,0.14722,0.15239,0.68538,0.85724,0.952943,0.950623,0.534798,0.918651,0.705048,0.326488,0.455765,0.546809,0.524399,0.900852,0.724521,0.821493,0.538808,0.110184,0.477911,0.0648385,0.394724,0.462419,0.372512,0.00720465,0.098968,0.0164758,0.889952,0.110361,0.594971,0.45693,0.130717,0.171467,0.35983,0.218414,0.57557,0.878472,0.126147,0.350421,0.449049,0.721466,0.955817,0.869966,0.278448,0.667961,0.468407,0.827312,0.851873,0.288192,0.56707,0.266899,0.313445,0.519336,0.682993,0.564685,0.665621,0.390812,0.135759,0.940966,0.769131,0.897923,0.423956,0.107928,0.348608,0.842423,0.324731,0.812195,0.243596,0.882766,0.203919,0.774791,0.73224,0.0729373,0.707231,0.00476676,0.891217,0.325219,0.519992,0.0817516,0.380529,0.365745,0.929842,0.139308,0.753833,0.489453,0.906214,0.425767,0.750094,0.803707,0.492176,0.888906,0.861201,0.883872,0.782778,0.894156,0.588283,0.417898,0.152171,0.168019,0.287197,0.87984,0.70167,0.812805,0.173566,0.22325,0.0540486,0.0161512,0.67827,0.838845,0.367384,0.472794,0.328524,0.300513,0.946365,0.718884,0.735339,0.78145,0.924385,0.350094,0.127916,0.262069,0.0594494,0.075646,0.695948,0.472385,0.682395,0.826852,0.197466,0.500454,0.387883,0.998188,0.0644405,0.157898,0.820334,0.0769094,0.543534,0.225468,0.916229,0.0711035,0.502154,0.312918,0.816452,0.885629,0.37344,0.240856,0.217483,0.601659,0.263601,0.127415,0.533014,0.587262,0.984261,0.517487,0.523015,0.534245,0.093847,0.49106,0.116473,0.98027,0.393407,0.10629,0.8031,0.725779,0.962593,0.370062,0.0482728,0.0902831,0.702795,0.685567,0.143788,0.312978,0.0576735,0.599495,0.291499,0.840542,0.846588,0.419276,0.285927,0.217087,0.624055,0.67737,0.116377,0.158553,0.28038,0.393175,0.11774,0.497477,0.301357,0.228116,0.126275,0.543127,0.623034,0.197897,0.491885,0.661982,0.0514475,0.19775,0.48908,0.961977,0.131712,0.127493,0.583416,0.981068,0.68541,0.534274,0.639618,0.951317,0.776158,0.906338,0.789777,0.289194,0.470079,0.520536,0.948936,0.215094,0.413897,0.0261527,0.00635225,0.999848,0.756017,0.165618,0.361005,0.139777,0.356031,0.42503,0.877429,0.186621,0.954852,0.337892,0.597228,0.0251619,0.389232,0.196916,0.121686,0.125632,0.488706,0.8938,0.172718,0.461278,0.606716,0.424618,0.885815,0.968079,0.304413,0.259283,0.347027,0.786038,0.139925,0.935317,0.34284,0.902031,0.528759,0.0979252,0.441712,0.103373,0.0998476,0.201434,0.889283,0.0936568,0.329203,0.144018,0.79779,0.161959,0.206023,0.12823,0.617847,0.402571,0.131347,0.780742,0.268827,0.148405,0.418761,0.60163,0.724109,0.789518,0.108793,0.105631,0.504391,0.579695,0.983341,0.0878628,0.786132,0.888105,0.0982321,0.842457,0.726787,0.887637,0.0238134,0.769091,0.679389,0.704459,0.696692,0.207076,0.635377,0.492663,0.638756,0.514132,0.415085,0.573451,0.148035,0.862158,0.892662,0.677128,0.499144,0.231879,0.74079,0.918198,0.130368,0.281582,0.955636,0.520554,0.568117,0.638846,0.33319,0.28328,0.325797,0.443354,0.80116,0.371124,0.717116,0.0567567,0.946953,0.0302469,0.58979,0.0417958,0.758498,0.0210872,0.0377972,0.375288,0.704526,0.717452,0.817622,0.60486,0.947813,0.897496,0.690317,0.732865,0.327987,0.459439,0.236862,0.431449,0.909147,0.376816,0.601131,0.156094,0.50791,0.253608,0.211193,0.23966,0.896998,0.778378,0.362494,0.63102,0.0888044,0.355684,0.839973,0.862264,0.0733978,0.71192,0.416871,0.428021,0.00580627,0.723205,0.560522,0.956986,0.0631651,0.537038,0.477396,0.290776,0.312157,0.843657,0.392511,0.109929,0.432796,0.276398,0.0308425,0.760606,0.144742,0.946683,0.794888,0.894059,0.266569,0.938996,0.349509,0.427752,0.974614,0.0261589,0.724792,0.0214697,0.0871184,0.632175,0.0850036,0.69213,0.98077,0.955856,0.920327,0.0341371,0.825543,0.757861,0.486335,0.823354,0.61898,0.708001,0.798067,0.922313,0.846064,0.159057,0.925158,0.097877,0.731953,0.0132084,0.792905,0.158945,0.810389,0.408543,0.585873,0.566866,0.204896,0.0506568,0.954162,0.285049,0.0609511,0.105615,0.646109,0.483971,0.0711427,0.423573,0.592291,0.904446,0.0347809,0.998326,0.597485,0.779365,0.190101,0.107068,0.760994,0.576713,0.557425,0.668716,0.243498,0.307348,0.230046,0.6248,0.0457034,0.840096,0.632095,0.614778,0.0627572,0.0663719,0.423397,0.118284,0.665899,0.0841352,0.416059,0.618645,0.960377,0.950378,0.216089,0.240824,0.865893,0.858511,0.350803,0.0164246,0.465988,0.886747,0.43679,0.696719,0.191872,0.229275,0.378228,0.523405,0.458902,0.24221,0.444201,0.0839527,0.977757,0.90246,0.686572,0.871689,0.303833,0.556387,0.316675,0.125036,0.00867981,0.910052,0.966259,0.965942,0.933622,0.0100712,0.562872,0.299975,0.180321,0.430923,0.441019,0.275294,0.302639,0.277419,0.209697,0.728312,0.0163305,0.766056,0.0308035,0.661263,0.234533,0.799274,0.866888,0.710136,0.553294,0.238995,0.542241,0.963437,0.957271,0.226819,0.204866,0.422502,0.254471,0.0304711,0.0169656,0.206265,0.965767,0.140946,0.231419,0.636697,0.9642,0.870444,0.743277,0.059948,0.469758,0.504232,0.859389,|0.591267,0.27208,0.0593532,0.996235,0.145193,0.216311,0.809949,0.649431,0.368498,0.31153,0.301235,0.00808787,0.392374,0.358585,0.685339,0.280966,0.889445,0.922993,0.211155,0.031548,0.85313,0.93156,0.501406,0.692984,0.909909,0.557949,0.316539,0.0759578,0.716832,0.0907778,0.326753,0.229569,0.958417,0.290861,0.86542,0.83573,0.882916,0.0191222,0.292365,0.652311,0.255243,0.584144,0.806578,0.955728,0.161009,0.108127,0.491005,0.876028,0.928451,0.164346,0.0386521,0.906972,0.18674,0.117313,0.0280611,0.845695,0.85165,0.302717,0.857586,0.0225174,0.808591,0.0614897,0.958773,0.968877,0.362929,0.700608,0.407479,0.404267,0.670067,0.784992,0.0240431,0.486408,0.670111,0.568429,0.544087,0.606441,0.252644,0.9095,0.75638,0.326549,0.370845,0.741621,0.193802,0.103611,0.950908,0.628164,0.019662,0.385394,0.258803,0.586437,0.935108,0.279853,0.556483,0.287969,0.00955397,0.411305,0.816336,0.607265,0.612736,0.425059,0.861413,0.418872,0.0911308,0.742909,0.517617,0.0345384,0.252517,0.278964,0.0762352,0.0368121,0.625286,0.647333,0.253474,0.145142,0.309568,0.922503,0.92204,0.156887,0.64551,0.0286757,0.0805879,0.661549,0.912099,0.578899,0.755585,0.577183,0.357732,0.633966,0.171521,0.176642,0.422823,0.740788,0.267393,0.284654,0.0730605,0.171895,0.536155,0.5245,0.31065,0.801468,0.315036,0.301715,0.188455,0.626451,0.783359,0.700853,0.422213,0.696224,0.442584,0.513191,0.855754,0.313472,0.538413,0.429585,0.286391,0.613034,0.837338,0.589352,0.466803,0.448421,0.97623,0.887353,0.344089,0.644422,0.785313,0.567874,0.163468,0.695195,0.769473,0.188497,0.952531,0.879213,0.120423,0.907471,0.493431,0.597247,0.192392,0.516482,0.384587,0.919062,0.954186,0.811217,0.0220821,0.123256,0.93234,0.361871,0.0151041,0.854471,0.759088,0.728346,0.906545,0.435283,0.945337,0.23455,0.737696,0.477793,0.948399,0.602567,0.909704,0.266105,0.509555,0.90404,0.889516,0.0837562,0.295238,0.523701,0.395834,0.757506,0.2608,0.122384,0.71706,0.792716,0.206,0.602972,0.938302,0.891444,0.806332,0.620234,0.945677,0.335047,0.135387,0.899692,0.617,0.133939,0.399309,0.0370125,0.12412,0.82537,0.282345,0.0274544,0.684739,0.449979,0.38602,0.542148,0.334773,0.933651,0.983521,0.260339,0.898946,0.471082,0.492342,0.172406,0.261819,0.408961,0.686508,0.323655,0.613941,0.285043,0.815847,0.473169,0.922784,0.380823,0.15231,0.424327,0.767857,0.928778,0.241905,0.598122,0.643343,0.498492,0.869332,0.878078,0.530093,0.791001,0.419325,0.625491,0.434308,0.890668,0.165581,0.917637,0.560167,0.644861,0.71431,0.425449,0.0249321,0.58639,0.413779,0.8272,0.884845,0.425603,0.691408,0.151606,0.242592,0.0623409,0.390515,0.651781,0.614057,0.170911,0.673517,0.774724,0.595384,0.893963,0.188911,0.945621,0.956499,0.00465584,0.12393,0.432957,0.824454,0.965532,0.0931178,0.808638,0.740675,0.485796,0.95858,0.376479,0.667569,0.243142,0.126131,0.616509,0.950793,0.335211,0.887722,0.212412,0.835087,0.46935,0.589937,0.639905,0.374945,0.0982398,0.825268,0.644735,0.577232,0.233982,0.305323,0.586829,0.354841,0.479999,0.545537,0.482891,0.530415,0.867378,0.120541,0.277608,0.0777314,0.177079,0.885735,0.659082,0.705635,0.0933875,0.257319,0.013548,0.614149,0.27594,0.680991,0.0171881,0.891007,0.974518,0.477911,0.774784,0.139077,0.526093,0.446765,0.633439,0.214845,0.237862,0.0801618,0.703821,0.00326717,0.194155,0.412457,0.251924,0.517503,0.799385,0.915828,0.744656,0.254483,0.595602,0.524471,0.684383,0.508194,0.215956,0.210805,0.381059,0.542639,0.284275,0.763132,0.937085,0.149339,0.531977,0.838269,0.550369,0.104557,0.0127603,0.90459,0.190588,0.222189,0.223484,0.971993,0.482413,0.072356,0.691033,0.211192,0.907152,0.00298852,0.413167,0.332685,0.352389,0.278242,0.03942,0.821945,0.526576,0.649443,0.639931,0.419949,0.68631,0.21268,0.647551,0.242687,0.82494,0.0965268,0.0279146,0.760622,0.347151,0.623234,0.391863,0.452285,0.764532,0.978123,0.275398,0.299926,0.986916,0.0066179,0.63769,0.52904,0.00852668,0.251337,0.685056,0.877413,0.25846,0.118096,0.0687144,0.311285,0.479783,0.607344,0.411539,0.10353,0.0990075,0.57104,0.432524,0.474357,0.717407,0.0680325,0.991957,0.631639,0.71916,0.257581,0.687319,0.592744,0.378176,0.0546738,0.822716,0.372184,0.659997,0.667116,0.184834,0.0123925,0.757523,0.274617,0.223984,0.225492,0.566306,0.129885,0.367939,0.0231547,0.104152,0.954134,0.670456,0.891656,0.916491,0.468474,0.309339,0.0464106,0.0563414,0.81031,0.264572,0.933533,0.745488,0.574191,0.603993,0.198496,0.130768,0.156958,0.287553,0.349896,0.35833,0.309224,0.00688368,0.776606,0.234842,0.0407899,0.209217,0.654616,0.0601609,0.553067,0.960826,0.851212,0.864404,0.319258,0.0889121,0.0495169,0.958346,0.369314,0.748402,0.557488,0.5628,0.986719,0.890935,0.75158,0.14698,0.694872,0.703162,0.771224,0.703184,0.515282,0.925125,0.757634,0.938252,0.460578,0.497116,0.517693,0.202529,0.288681,0.589354,0.365087,0.949024,0.311401,0.812359,0.858169,0.164596,0.607687,0.175381,0.727146,0.912473,0.753741,0.560757,0.0701113,0.293912,0.551447,0.437089,0.48137,0.658235,0.0847952,0.33673,0.462222,0.0762236,0.678676,0.516851,0.231936,0.221913,0.865377,0.783843,0.438578,0.871676,0.887184,0.861797,0.089121,0.699754,0.45073,0.0633081,0.998166,0.729447,0.459522,0.343276,0.639414,0.387246,0.953607,0.905712,0.544685,0.253705,0.985284,0.710918,0.381071,0.0157196,0.947081,0.540634,0.647138,0.718734,0.977137,0.137711,0.900633,0.829495,0.444006,0.934392,0.663702,0.894819,0.645698,0.0604591,0.953034,0.655373,0.849999,0.386722,0.826125,0.0358449,0.420151,0.725942,0.488642,0.482929,0.658346,0.541746,0.0524533,0.0667377,0.972617,0.238796,0.837825,0.280652,0.891088,0.851316,0.945431,0.683399,0.196366,0.973598,0.483836,0.325688,0.812859,0.628009,0.120751,0.984163,0.346303,0.79644,0.960979,0.269497,0.320746,0.525781,0.0542678,0.954789,0.124398,0.191969,0.547242,0.103977,0.998564,0.180216,0.676366,0.912788,0.646553,0.211658,0.88764,0.937154,0.435425,0.582162,0.140458,0.388532,0.529889,0.649659,0.710893,0.434615,0.85435,0.977835,0.80096,0.549886,0.509557,0.439989,0.414433,0.189532,0.588891,0.436264,0.484913,0.848495,0.888761,0.666441,0.512947,0.65668,0.277566,0.783054,0.649751,0.0920799,0.758257,0.00217849,0.417861,0.525317,0.762241,0.608354,0.231639,0.870826,0.0686738,0.98455,0.694507,0.984736,0.942787,0.720459,0.0738803,0.585368,0.993715,0.401501,0.95496,0.975274,0.775389,0.293859,0.513088,0.218806,0.0381507,0.137219,0.414753,0.956742,0.309671,0.270111,0.257345,0.67907,0.57119,0.302829,0.727326,0.555192,0.80778,0.634461,0.054131,0.0938442,0.329922,0.957723,0.619129,0.410619,0.719831,0.157195,0.630663,0.94435,0.111803,0.0612196,0.381537,0.505486,0.830722,0.923819,0.816473,0.579839,0.125477,0.556973,0.791129,0.823628,0.355189,0.330492,0.488138,0.24323,0.768044,0.854252,0.374641,0.559984,0.4829,0.791876,0.472123,0.555213,0.571071,0.469815,0.14039,0.526816,0.0645685,0.340005,0.325403,0.7421,0.290417,0.626565,0.938239,0.300623,0.430391,0.260556,0.871266,0.494875,0.928174,0.135148,0.447342,0.664393,0.826332,0.597536,0.488317,0.0715168,0.77876,0.887653,0.279713,0.223509,0.197013,0.0235184,0.49139,0.289345,0.678458,0.339932,0.508272,0.219327,0.98845,0.917593,0.848795,0.860365,0.248421,0.422058,0.189892,0.397177,0.0935489,0.415451,0.198565,0.274763,0.890782,0.572685,0.989591,0.143795,0.427136,0.681145,0.774642,0.0675981,0.853532,0.869872,0.439642,0.204986,0.179465,0.0874285,0.660032,0.180423,0.878459,0.767843,0.851422,0.476256,0.848362,0.0774367,0.0553411,0.471611,0.449404,0.524815,0.123015,0.905956,0.242917,0.679409,0.206497,0.899287,0.889145,0.0780683,0.133064,0.223084,0.17701,0.440734,0.890136,0.337614,0.0407084,0.318534,0.751667,0.0946701,0.645191,0.496544,0.938171,0.952499,0.477241,0.590803,0.327833,0.129838,0.7438,0.83616,0.462638,0.300292,0.10397,0.417609,0.0237395,0.638645,0.42125,0.988729,0.268414,0.717055,0.740056,0.383669,0.843806,0.344397,0.05818,0.110752,0.720723,0.847226,0.115233,0.605717,0.840175,0.105624,0.172876,0.689827,0.712338,0.685533,0.680035,0.646613,0.149776,0.815275,0.929053,0.231453,0.541496,0.727968,0.856737,0.813975,0.936566,0.355138,0.973119,0.948734,0.203151,0.967797,0.746625,0.659015,0.365373,0.650685,0.465314,0.0777192,0.306009,0.43014,0.903515,0.217682,0.426202,0.139782,0.417331,0.740066,0.842401,0.506761,0.646222,0.596226,0.0153476,0.41709,0.934042,0.931889,0.497216,0.0223107,0.545344,0.80494,0.381055,0.987802,0.533871,0.802503,0.313193,0.961166,0.527355,0.323971,0.47331,0.539762,0.171521,0.67503,0.808564,0.592179,0.28578,0.965011,0.622014,0.38828,0.0590338,0.467812,0.106979,0.346469,0.326367,0.591924,0.880181,0.382098,0.898694,0.777004,0.768162,0.662126,0.797857,0.959346,0.979936,0.569766,0.659388,0.212382,0.370601,0.795802,0.974299,0.383455,0.349699,0.440532,0.756694,0.717633,0.597447,0.186128,0.516096,0.570156,0.554783,0.995691,0.429072,0.608953,0.0425885,0.799113,0.605257,0.2782,0.290985,0.879561,0.303782,0.438662,0.0211066,0.369736,0.0487567,0.897287,0.767788,0.252687,0.842222,0.731011,0.520384,0.389943,0.67402,0.687987,0.745818,0.66689,0.701112,0.160465,0.512976,0.752862,0.509808,0.611726,0.676372,0.897597,0.824402,0.886336,0.761588,0.64498,0.31745,0.852057,0.802031,0.959182,0.379205,0.460192,|0.0519532,0.270182,0.663648,0.332144,0.280136,0.841513,0.258169,0.777879,0.306034,0.773682,0.848722,0.530491,0.577388,0.0413449,0.241881,0.739075,0.983083,0.287871,0.621064,0.482579,0.213435,0.662228,0.343745,0.146341,0.0918618,0.262943,0.939138,0.303942,0.488447,0.310758,0.558665,0.32106,0.0967175,0.967134,0.448672,0.625227,0.656006,0.3651,0.755607,0.174348,0.698706,0.00491142,0.990876,0.845182,0.588207,0.366118,0.468297,0.0930265,0.0775395,0.801242,0.10043,0.696588,0.0748436,0.971445,0.0743482,0.830255,0.197389,0.0369802,0.76097,0.40382,0.433981,0.57631,0.766219,0.605966,0.628586,0.0537995,0.111493,0.0864453,0.37176,0.845136,0.00467324,0.23051,0.54953,0.0550587,0.844869,0.487111,0.188245,0.671921,0.833545,0.542822,0.233411,0.382668,0.801888,0.701272,0.524563,0.195495,0.237827,0.209771,0.670835,0.605477,0.826334,0.884824,0.504299,0.167874,0.157057,0.699425,0.129378,0.144312,0.385739,0.414702,0.792757,0.762327,0.972991,0.434246,0.623363,0.0678756,0.708144,0.950603,0.0848635,0.136752,0.866457,0.114431,0.718741,0.437509,0.797371,0.161067,0.524525,0.00507706,0.267435,0.572057,0.0776991,0.557118,0.485599,0.385994,0.295307,0.572682,0.886617,0.0991192,0.925683,0.36878,0.201399,0.791491,0.302521,0.43908,0.232416,0.533933,0.970417,0.556311,0.962956,0.630045,0.534278,0.559644,0.897833,0.515644,0.317125,0.99983,0.867627,0.545908,0.0245818,0.154505,0.21215,0.00418854,0.841752,0.478206,0.276228,0.00749856,0.244044,0.789271,0.563898,0.640955,0.831238,0.925847,0.193903,0.298487,0.73843,0.312922,0.54038,0.275961,0.532973,0.916547,0.685758,0.5972,0.126152,0.547422,0.782257,0.977322,0.661798,0.790852,0.39601,0.420441,0.596625,0.656678,0.911988,0.91306,0.528809,0.0564367,0.738494,0.380422,0.157622,0.285426,0.0977988,0.879543,0.154337,0.0887085,0.248873,0.502709,0.970629,0.648759,0.536619,0.206097,0.110158,0.42904,0.655852,0.0822296,0.985157,0.425606,0.851671,0.93912,0.575643,0.719396,0.298211,0.0888944,0.72352,0.0548075,0.829185,0.286724,0.891184,0.340892,0.270334,0.113109,0.440462,0.365456,0.545767,0.977028,0.844742,0.443884,0.642934,0.231337,0.29449,0.88192,0.454796,0.706329,0.324218,0.0028584,0.775446,0.0423869,0.498758,0.572666,0.446534,0.0652341,0.412555,0.0112165,0.542386,0.797505,0.858046,0.242246,0.0558377,0.509463,0.461364,0.789313,0.546732,0.117,0.483621,0.00189853,0.495619,0.84236,0.318794,0.977807,0.0120752,0.00778598,0.506789,0.566989,0.726436,0.376782,0.88274,0.640091,0.682415,0.20927,0.0644431,0.609073,0.402182,0.404413,0.344955,0.718067,0.167212,0.721496,0.92491,0.321914,0.245986,0.562216,0.182533,0.700079,0.619403,0.314449,0.742538,0.378537,0.61648,0.811935,0.184722,0.735459,0.308906,0.763976,0.314368,0.235168,0.257167,0.271573,0.334399,0.706478,0.859839,0.965208,0.711443,0.664192,0.125663,0.5663,0.153043,0.443404,0.016584,0.407563,0.669954,0.0168511,0.0542859,0.142389,0.559943,0.370059,0.61025,0.895226,0.390542,0.676708,0.205731,0.646829,0.506779,0.848856,0.461779,0.981064,0.0563328,0.842998,0.806814,0.262181,0.0404821,0.278241,0.534811,0.812276,0.921971,0.875082,0.941287,0.55349,0.892766,0.990977,0.0867626,0.308703,0.983985,0.771006,0.926634,0.0666808,0.50412,0.55387,0.309199,0.444328,0.751415,0.836564,0.156251,0.0439084,0.344537,0.16899,0.284873,0.471071,0.842703,0.0578078,0.0602098,0.196227,0.375316,0.0486182,0.724578,0.914722,0.289803,0.107938,0.965024,0.841346,0.800868,0.0585015,0.238479,0.688325,0.503201,0.839688,0.869669,0.668824,0.95772,0.228329,0.73698,0.270802,0.889193,0.310355,0.5562,0.86814,0.338061,0.387003,0.397138,0.105504,0.828138,0.0429777,0.710975,0.252321,0.459307,0.976128,0.798421,0.649914,0.740742,0.200774,0.853175,0.213701,0.705793,0.532603,0.662745,0.385058,0.0473278,0.274348,0.471128,0.762832,0.519451,0.507509,0.14483,0.300636,0.300065,0.174119,0.430175,0.0147003,0.477736,0.791107,0.286705,0.679968,0.114795,0.00717133,0.646197,0.371848,0.837078,0.235108,0.428161,0.182223,0.600014,0.382603,0.108483,0.521588,0.68386,0.939397,0.280068,0.2124,0.922865,0.262108,0.426085,0.67419,0.968016,0.105918,0.0522109,0.813698,0.912122,0.900943,0.86667,0.00474483,0.189753,0.837906,0.62428,0.153766,0.522022,0.926826,0.644584,0.913224,0.523035,0.385723,0.422998,0.669159,0.929848,0.75405,0.667266,0.397912,0.185845,0.403035,0.0711842,0.535916,0.999127,0.484018,0.0928364,0.397512,0.56931,0.0630434,0.391917,0.978238,0.649908,0.45809,0.205265,0.912106,0.554976,0.184392,0.136035,0.96739,0.613464,0.324755,0.724328,0.846457,0.175834,0.139824,0.15532,0.806989,0.877258,0.199336,0.00901908,0.807589,0.530634,0.212241,0.370168,0.526142,0.603558,0.853507,0.419826,0.0667449,0.798495,0.337158,0.710139,0.739366,0.147197,0.755397,0.56938,0.328942,0.589919,0.320221,0.78243,0.674208,0.375085,0.373088,0.335293,0.605785,0.222207,0.954639,0.345725,0.70774,0.0984948,0.786478,0.396252,0.762784,0.304623,0.276122,0.392624,0.0593713,0.182836,0.00792998,0.0786377,0.542499,0.441836,0.40175,0.194918,0.187377,0.941648,0.725752,0.80769,0.0626302,0.146078,0.0462251,0.450116,0.386921,0.925621,0.160339,0.983665,0.294598,0.867586,0.789495,0.00855285,0.630571,0.012602,0.314534,0.0433027,0.309377,0.738909,0.927025,0.899854,0.791807,0.975265,0.298519,0.315974,0.616261,0.982781,0.644021,0.740944,0.285555,0.739497,0.332209,0.257049,0.411619,0.0773973,0.0637108,0.640047,0.638582,0.172166,0.542351,0.405138,0.0198421,0.824051,0.0223333,0.0569494,0.112731,0.547367,0.194426,0.637045,0.878737,0.847343,0.756783,0.891695,0.70598,0.258015,0.641169,0.748899,0.688739,0.512811,0.624302,0.731186,0.0524985,0.349279,0.914928,0.825086,0.375188,0.140997,0.223529,0.219237,0.517121,0.867445,0.526219,0.0679122,0.926124,0.777319,0.885092,0.711247,0.77847,0.977994,0.32923,0.0616827,0.218793,0.192002,0.232719,0.456563,0.861322,0.87636,0.373033,0.34357,0.213264,0.757435,0.50197,0.936261,0.00377733,0.32673,0.0808928,0.0686324,0.69553,0.488922,0.98631,0.712895,0.782415,0.586718,0.661515,0.643761,0.165921,0.837889,0.865037,0.432453,0.625476,0.600656,0.669488,0.082503,0.573345,0.133174,0.449265,0.352719,0.0927632,0.81369,0.12726,0.741729,0.667822,0.858613,0.922418,0.613535,0.0325816,0.275054,0.127639,0.0716603,0.763445,0.554547,0.193061,0.635528,0.400176,0.22952,0.157445,0.083868,0.292839,0.642239,0.731994,0.613038,0.0538602,0.428217,0.705899,0.171634,0.339589,0.138408,0.419585,0.081185,0.941622,0.153601,0.662907,0.492352,0.779658,0.395424,0.578189,0.319862,0.347702,0.0435744,0.746819,0.978857,0.727115,0.99985,0.216482,0.61318,0.985445,0.0352916,0.68382,0.846866,0.348166,0.609005,0.326473,0.974884,0.479144,0.661561,0.923911,0.673659,0.555277,0.382734,0.82231,0.834823,0.475766,0.940951,0.0304457,0.0571234,0.633666,0.639233,0.323956,0.0601652,0.644567,0.194418,0.347562,0.460467,0.152973,0.334164,0.726486,0.6696,0.923697,0.222169,0.828449,0.341186,0.585537,0.285883,0.38659,0.613294,0.475953,0.381974,0.229168,0.934931,0.208358,0.930353,0.853119,0.183183,0.239591,0.23956,0.18695,0.583459,0.79927,0.0587073,0.755289,0.18471,0.911763,0.332964,0.138339,0.259666,0.805781,0.0378086,0.183376,0.00857168,0.902019,0.499038,0.784317,0.420753,0.163418,0.77461,0.720117,0.777913,0.192699,0.527177,0.846506,0.330477,0.819264,0.965876,0.853571,0.247346,0.107297,0.0180064,0.390364,0.946997,0.259449,0.618534,0.0941869,0.468932,0.918871,0.501309,0.000763178,0.700197,0.616564,0.45798,0.722434,0.183789,0.290288,0.129193,0.449785,0.520519,0.790815,0.5302,0.484335,0.852352,0.120459,0.0118018,0.378786,0.382002,0.105029,0.303712,0.857032,0.0778646,0.104448,0.138051,0.0311124,0.466822,0.868841,0.717604,0.704164,0.735456,0.606959,0.457618,0.364413,0.816888,0.277377,0.227697,0.833486,0.311908,0.79851,0.161125,0.260277,0.224183,0.212896,0.271293,0.845747,0.545625,0.810468,0.689266,0.024268,0.720231,0.532258,0.372711,0.711402,0.218201,0.331886,0.95345,0.0851591,0.375362,0.761332,0.866018,0.442488,0.0802913,0.98016,0.664087,0.957387,0.877552,0.390781,0.410039,0.3448,0.569791,0.0435068,0.958864,0.954638,0.49988,0.201444,0.23279,0.191485,0.0751669,0.916692,0.492877,0.450585,0.063272,0.0259858,0.228286,0.212353,0.842783,0.488176,0.757873,0.784897,0.551977,0.132315,0.722133,0.548027,0.3328,0.825719,0.185927,0.409872,0.5519,0.81339,0.381842,0.361381,0.431879,0.290666,0.0882852,0.828835,0.136703,0.46746,0.482367,0.904815,0.812135,0.716626,0.912909,0.642783,0.259737,0.934723,0.702394,0.277823,0.303935,0.324184,0.093657,0.930973,0.22624,0.955138,0.392384,0.475987,0.656437,0.993078,0.246597,0.677843,0.237848,0.545673,0.0729132,0.277149,0.744856,0.860285,0.307976,0.567779,0.376414,0.364695,0.343409,0.578084,0.644408,0.649073,0.129622,0.711825,0.755283,0.615036,0.670412,0.303204,0.445497,0.283968,0.758484,0.476447,0.721611,0.522927,0.802891,0.418997,0.427947,0.197635,0.0026772,0.645579,0.064831,0.919218,0.136652,0.611255,0.427627,0.500302,0.9207,0.984863,0.0830942,0.62306,0.427327,0.408715,0.77741,0.747867,0.920454,0.183307,0.692657,0.751086,0.545201,0.887944,0.174908,0.292284,0.866196,0.838672,0.0609158,0.382622,0.151793,0.0570509,0.607556,0.716619,0.583307,0.26906,0.135942,0.065522,0.393467,0.265757,0.782767,0.475971,0.535089,0.688231,0.386122,0.881417,|0.614657,0.768277,0.428013,0.739398,0.488701,0.867662,0.632724,0.679318,0.303799,0.468824,0.637417,0.940872,0.700862,0.128393,0.928093,0.728055,0.419691,0.437648,0.0616422,0.410383,0.323583,0.118736,0.716251,0.917564,0.544391,0.903769,0.977626,0.132965,0.688209,0.406071,0.546704,0.685291,0.63186,0.805213,0.301449,0.00382775,0.282547,0.24646,0.930745,0.73588,0.441524,0.308708,0.569374,0.67378,0.834016,0.825512,0.567653,0.249245,0.0893482,0.831331,0.603515,0.585522,0.752933,0.937722,0.507084,0.811555,0.209978,0.0226787,0.854624,0.720782,0.138029,0.222222,0.294872,0.152985,0.496943,0.298963,0.710265,0.233843,0.904211,0.342935,0.495818,0.423828,0.342776,0.849449,0.953942,0.334803,0.481472,0.80192,0.0518752,0.337901,0.498352,0.832085,0.135236,0.0309524,0.346421,0.0606682,0.996452,0.475815,0.164735,0.938045,0.00526536,0.850452,0.406653,0.197259,0.927302,0.814242,0.294152,0.756126,0.536324,0.210707,0.521627,0.950477,0.936016,0.414008,0.509008,0.352917,0.763342,0.00503874,0.602938,0.879131,0.685243,0.753066,0.516387,0.298419,0.0605221,0.0124896,0.381596,0.781953,0.73906,0.0071004,0.129293,0.982897,0.754362,0.777081,0.154594,0.187896,0.541748,0.248614,0.625151,0.410892,0.0600237,0.880054,0.776756,0.684289,0.719358,0.677166,0.225089,0.274152,0.0375444,0.654489,0.368501,0.450812,0.945073,0.317159,0.964118,0.773008,0.33668,0.842679,0.526356,0.237906,0.225196,0.265258,0.598776,0.565467,0.232449,0.770554,0.776636,0.651038,0.209059,0.0422222,0.410178,0.381328,0.496126,0.474741,0.205759,0.977189,0.782099,0.909422,0.158283,0.151083,0.761923,0.722668,0.776623,0.152907,0.353053,0.796928,0.516488,0.289348,0.791541,0.950586,0.874552,0.76251,0.037595,0.569758,0.117253,0.431805,0.259872,0.00837493,0.337708,0.415144,0.59361,0.107876,0.342956,0.521875,0.0774729,0.125076,0.169679,0.479303,0.030483,0.256528,0.395513,0.828283,0.236844,0.00969487,0.799022,0.213741,0.337146,0.93262,0.379674,0.00245392,0.909638,0.997947,0.319891,0.899286,0.857942,0.913043,0.815808,0.514193,0.512409,0.227718,0.473774,0.503594,0.146116,0.194739,0.907016,0.518666,0.845799,0.915375,0.44312,0.36827,0.839677,0.399754,0.36272,0.87724,0.998904,0.90001,0.0411525,0.53538,0.382836,0.597234,0.557747,0.604025,0.906897,0.872492,0.609374,0.867763,0.407005,0.927972,0.902178,0.280494,0.496674,0.3424,0.122375,0.183988,0.149602,0.170774,0.174563,0.393209,0.161317,0.684854,0.716017,0.40863,0.983364,0.662125,0.34581,0.0829589,0.695609,0.725167,0.862654,0.999408,0.385733,0.657952,0.309236,0.670682,0.0506685,0.181165,0.754628,0.38087,0.455593,0.119764,0.84276,0.3554,0.0296946,0.50861,0.880835,0.941714,0.6348,0.11225,0.726333,0.90965,0.938946,0.0326756,0.846132,0.0915121,0.365203,0.203344,0.37663,0.758192,0.529361,0.179826,0.487584,0.713306,0.0117197,0.119538,0.251374,0.805527,0.951342,0.335654,0.186103,0.704621,0.746311,0.926908,0.0768265,0.999666,0.29312,0.290288,0.0425575,0.286439,0.462772,0.676138,0.302008,0.684381,0.696605,0.283548,0.143448,0.654934,0.108395,0.130308,0.512996,0.429888,0.788509,0.267433,0.605125,0.0966908,0.937088,0.288663,0.21885,0.625948,0.771808,0.505892,0.774721,0.920843,0.0237113,0.513118,0.808876,0.347013,0.949429,0.872127,0.898943,0.758398,0.794853,0.722567,0.243706,0.621031,0.133681,0.681515,0.462827,0.813178,0.349581,0.840394,0.338508,0.154468,0.0797636,0.459907,0.790607,0.809359,0.57721,0.4839,0.323986,0.519196,0.19094,0.951849,0.605756,0.354693,0.763182,0.737016,0.0489671,0.551241,0.984171,0.188539,0.993544,0.110917,0.165682,0.65322,0.0574497,0.665847,0.988195,0.748655,0.534212,0.567933,0.235141,0.262346,0.243658,0.269857,0.0409182,0.536012,0.177363,0.35956,0.863161,0.843814,0.0209969,0.789625,0.333843,0.348911,0.603362,0.642729,0.39578,0.586755,0.578572,0.217175,0.872031,0.280859,0.621553,0.0234045,0.3976,0.452064,0.754558,0.558667,0.32361,0.82919,0.753638,0.017711,0.805451,0.0267721,0.561603,0.645219,0.235994,0.373159,0.474495,0.446496,0.369054,0.541933,0.0444685,0.669327,0.238921,0.50089,0.955683,0.867234,0.0104329,0.159862,0.0295407,0.501431,0.604475,0.178699,0.536912,0.189694,0.66615,0.764774,0.358253,0.283517,0.399419,0.281509,0.456271,0.0687173,0.220841,0.097251,0.849781,0.455686,0.589975,0.00508225,0.758364,0.646087,0.963646,0.144116,0.156759,0.572494,0.167695,0.576683,0.561837,0.471593,0.372247,0.69461,0.303829,0.769976,0.602625,0.0358584,0.39627,0.511615,0.307048,0.141907,0.651452,0.666562,0.296504,0.66577,0.13694,0.706952,0.611313,0.880255,0.130896,0.287518,0.454712,0.834302,0.361458,0.424927,0.742638,0.0866616,0.126764,0.0692886,0.076627,0.000137925,0.145969,0.829476,0.139939,0.933414,0.57366,0.127571,0.694219,0.578748,0.585201,0.586765,0.683215,0.403364,0.0843043,0.949389,0.76616,0.132985,0.0907408,0.31545,0.63906,0.692989,0.147316,0.150085,0.657666,0.498467,0.666397,0.206562,0.985568,0.0990849,0.83073,0.49552,0.0299916,0.589765,0.146167,0.314002,0.877737,0.85298,0.960746,0.923758,0.91127,0.497651,0.726507,0.407135,0.786426,0.231249,0.976858,0.489349,0.303099,0.242373,0.802508,0.566403,0.776032,0.337024,0.748845,0.353022,0.538582,0.607662,0.619233,0.904682,0.0545656,0.928946,0.650242,0.429674,0.811076,0.193506,0.333599,0.596943,0.840399,0.185151,0.261768,0.00437373,0.415325,0.660888,0.850312,0.862031,0.465486,0.726544,0.615478,0.388344,0.926058,0.336017,0.438797,0.447405,0.998925,0.522444,0.99279,0.56177,0.37113,0.640889,0.709986,0.57987,0.315404,0.298472,0.956751,0.96904,0.74972,0.476657,0.345383,0.354471,0.109674,0.881566,0.466934,0.437542,0.246394,0.838424,0.587925,0.443141,0.753761,0.0142419,0.379292,0.928462,0.558995,0.415947,0.657959,0.249486,0.954448,0.318576,0.654952,0.212712,0.147382,0.479692,0.505477,0.859914,0.0841032,0.037123,0.91309,0.569131,0.0441403,0.0359448,0.990214,0.173126,0.540828,0.721906,0.537781,0.705148,0.448117,0.821405,0.169919,0.477094,0.896192,0.281975,0.181166,0.571644,0.0758984,0.00512916,0.357654,0.187856,0.872112,0.888283,0.455605,0.931645,0.744928,0.630983,0.583559,0.485015,0.228581,0.566357,0.356061,0.953498,0.763272,0.968478,0.59757,0.877442,0.935093,0.447992,0.759461,0.61673,0.421323,0.774067,0.566997,0.288785,0.826307,0.852858,0.382271,0.059715,0.963453,0.486112,0.110857,0.45223,0.669973,0.420729,0.790783,0.0212103,0.0990427,0.98582,0.0303769,0.488752,0.328005,0.724031,0.662085,0.924393,0.346082,0.838768,0.59485,0.490525,0.444329,0.615399,0.735571,0.941673,0.183642,0.348201,0.755386,0.708639,0.585218,0.888742,0.533437,0.360944,0.989599,0.638117,0.460818,0.526618,0.506857,0.491761,0.361429,0.934928,0.611363,0.874883,0.964518,0.0840541,0.171688,0.32685,0.203727,0.802153,0.447151,0.433196,0.685654,0.663877,0.0867095,0.998952,0.577751,0.0430384,0.835426,0.254803,0.0327306,0.801978,0.999265,0.664928,0.924295,0.387664,0.460383,0.499919,0.511797,0.833164,0.218578,0.561611,0.758521,0.574395,0.298115,0.361712,0.330857,0.591147,0.807668,0.399767,0.973053,0.411549,0.488568,0.0795208,0.884941,0.388653,0.110296,0.334623,0.218072,0.867251,0.378552,0.662465,0.0154291,0.856085,0.404853,0.699524,0.319408,0.176191,0.524743,0.720221,0.482285,0.95817,0.634122,0.493521,0.72938,0.628964,0.551382,0.390514,0.834171,0.0297447,0.590691,0.850251,0.789012,0.0677704,0.0483271,0.284093,0.918885,0.317983,0.489921,0.760806,0.395815,0.945516,0.25912,0.38056,0.109336,0.453968,0.0422628,0.771707,0.947882,0.469563,0.436115,0.904948,0.662156,0.759199,0.277022,0.602609,0.097293,0.695998,0.649735,0.7582,0.359253,0.732565,0.94866,0.135251,0.538277,0.487235,0.217709,0.304289,0.430292,0.525932,0.676711,0.145297,0.451987,0.937868,0.365567,0.214563,0.185083,0.197661,0.539756,0.760377,0.0351247,0.385041,0.733646,0.824168,0.866982,0.359578,0.54151,0.356589,0.24713,0.0307077,0.746668,0.54193,0.239992,0.0948404,0.111513,0.171911,0.527637,0.507887,0.291753,0.1789,0.843323,0.0455339,0.462494,0.431799,0.141823,0.2878,0.687114,0.378746,0.0794843,0.537868,0.30449,0.258213,0.516629,0.221867,0.907495,0.828287,0.3313,0.74224,0.64541,0.756653,0.378057,0.531737,0.490302,0.154186,0.15381,0.639029,0.543886,0.31436,0.820259,0.67268,0.682138,0.26376,0.244201,0.818879,0.963429,0.00318319,0.745458,0.891358,0.503264,0.783125,0.143604,0.876536,0.972777,0.210893,0.369608,0.152819,0.464414,0.293678,0.602742,0.683263,0.296299,0.0847601,0.0644264,0.225789,0.497503,0.619484,0.994508,0.0196868,0.906073,0.607601,0.601897,0.822017,0.545739,0.0539238,0.525715,0.767386,0.148637,0.625335,0.552776,0.8923,0.504799,0.00592673,0.109679,0.636429,0.676972,0.117288,0.0989444,0.262312,0.992788,0.355916,0.0144344,0.976211,0.0857982,0.506711,0.970216,0.691979,0.9018,0.0283974,0.286283,0.251107,0.796114,0.482456,0.608555,0.830165,0.751504,0.149047,0.918764,0.288624,0.691701,0.615658,0.87166,0.773756,0.075727,0.462788,0.601857,0.567708,0.137084,0.474149,0.463181,0.996854,0.714952,0.276335,0.319675,0.208955,0.832997,0.742546,0.312753,0.112095,0.311446,0.672791,0.714843,0.489713,0.151591,0.563781,0.726759,0.0403478,0.118802,0.799146,0.564335,0.65636,0.840889,0.569286,0.709528,0.408712,0.193471,0.577399,0.499833,0.544143,0.632151,0.747516,0.206067,0.422979,0.398469,0.638531,0.676657,0.226045,0.473119,0.593471,|0.286797,0.0109159,0.028534,0.535657,0.753509,0.182976,0.079772,0.625281,0.488503,0.747028,0.701676,0.723244,0.858301,0.998244,0.632063,0.995964,0.169489,0.360028,0.316744,0.878143,0.193724,0.337518,0.787525,0.285928,0.164277,0.772792,0.158266,0.222579,0.985602,0.468214,0.0297479,0.449992,0.105083,0.48988,0.917986,0.323622,0.103501,0.469129,0.479372,0.127797,0.964274,0.370523,0.305971,0.707325,0.677888,0.743385,0.752583,0.300092,0.568352,0.929927,0.202721,0.414969,0.663886,0.549005,0.870236,0.838295,0.292044,0.991166,0.269449,0.876524,0.527843,0.513976,0.53601,0.799014,0.944788,0.205124,0.267538,0.0797181,0.221186,0.568883,0.168875,0.0138004,0.592454,0.191544,0.983709,0.394324,0.716721,0.109791,0.788997,0.575463,0.107625,0.529784,0.949736,0.709941,0.362191,0.492351,0.870178,0.251949,0.668794,0.816647,0.994159,0.0365934,0.286886,0.632026,0.853696,0.0902393,0.433215,0.314175,0.776608,0.21853,0.785578,0.57517,0.794226,0.640031,0.976224,0.497367,0.355594,0.01707,0.617533,0.127834,0.741008,0.842573,0.189935,0.700045,0.702512,0.475609,0.738117,0.127119,0.312769,0.723098,0.293671,0.282891,0.0445073,0.97032,0.494151,0.0821255,0.61443,0.0870062,0.983259,0.492104,0.0360873,0.197162,0.040152,0.564332,0.620493,0.292823,0.494119,0.958425,0.516271,0.610143,0.566295,0.495891,0.614843,0.333777,0.0773024,0.319119,0.142569,0.643147,0.395204,0.956185,0.653012,0.0615183,0.775028,0.604728,0.796948,0.984295,0.852329,0.446708,0.954362,0.0442688,0.396833,0.779518,0.671048,0.697217,0.856583,0.549173,0.36128,0.71857,0.763686,0.0337133,0.580501,0.120425,0.790335,0.34036,0.711591,0.731097,0.521115,0.477881,0.288364,0.982611,0.268269,0.0450091,0.473183,0.262746,0.227326,0.7335,0.766006,0.748582,0.737582,0.603331,0.259639,0.796204,0.949851,0.542735,0.631319,0.687657,0.0559134,0.489273,0.328845,0.810335,0.510812,0.504937,0.630622,0.30542,0.11241,0.604479,0.43967,0.456731,0.0483068,0.34016,0.691829,0.0945837,0.820145,0.847625,0.0895075,0.975589,0.0102772,0.871358,0.985563,0.943476,0.860696,0.0841106,0.640569,0.757857,0.894513,0.00378299,0.896825,0.842007,0.956797,0.802276,0.587693,0.296611,0.64499,0.722805,0.892558,0.498949,0.231379,0.383009,0.199861,0.871579,0.367371,0.659359,0.832065,0.501581,0.0673079,0.888982,0.384649,0.406229,0.752201,0.571538,0.386731,0.452539,0.5642,0.781903,0.434019,0.548326,0.215823,0.05033,0.0682043,0.149165,0.590237,0.934169,0.164342,0.82352,0.347391,0.822396,0.756233,0.0554568,0.495004,0.0626082,0.323475,0.820938,0.350025,0.316029,0.848766,0.500331,0.509517,0.391706,0.392473,0.77216,0.605686,0.779557,0.114522,0.0626301,0.671038,0.87889,0.359497,0.886209,0.638287,0.645499,0.225432,0.268165,0.52537,0.380598,0.103285,0.509824,0.474951,0.905871,0.524351,0.850038,0.247601,0.371738,0.119694,0.367251,0.465848,0.981111,0.405335,0.559774,0.59822,0.0482988,0.39021,0.090591,0.172791,0.155482,0.461887,0.0633005,0.0150731,0.0590808,0.247452,0.859682,0.234451,0.301852,0.620866,0.782315,0.236002,0.921493,0.383474,0.17304,0.74751,0.42681,0.568612,0.967642,0.703453,0.123254,0.403549,0.57295,0.906543,0.963826,0.0779217,0.282428,0.54913,0.31905,0.0763298,0.971948,0.348754,0.406701,0.990091,0.782926,0.657405,0.344203,0.529807,0.261086,0.751836,0.447797,0.353609,0.882965,0.0900657,0.334974,0.347269,0.748372,0.519027,0.433845,0.00632888,0.214665,0.144427,0.934789,0.0230539,0.111638,0.913294,0.159044,0.724232,0.389563,0.870898,0.221964,0.287114,0.0109574,0.957982,0.194539,0.469869,0.0718887,0.515365,0.924128,0.366738,0.67258,0.375935,0.501264,0.107716,0.819378,0.214459,0.737689,0.968894,0.489905,0.867312,0.627955,0.302007,0.0577816,0.814629,0.794152,0.0245107,0.997716,0.344153,0.786757,0.505936,0.417266,0.747149,0.718042,0.981033,0.973138,0.973924,0.108932,0.0277915,0.805683,0.6012,0.78997,0.332904,0.808604,0.177576,0.21715,0.371349,0.783784,0.866619,0.720895,0.36343,0.307622,0.293538,0.761636,0.599435,0.700953,0.817758,0.558302,0.491004,0.991185,0.0812806,0.675847,0.36522,0.199272,0.107217,0.226853,0.0715185,0.639305,0.795758,0.562263,0.344335,0.942626,0.0553309,0.390831,0.436549,0.966016,0.470013,0.251547,0.756023,0.132,0.325435,0.203778,0.151394,0.344782,0.0386152,0.557095,0.605604,0.578138,0.774523,0.896553,0.936605,0.536763,0.49787,0.884897,0.588268,0.578952,0.425186,0.830464,0.668457,0.380263,0.00925392,0.404473,0.550544,0.823834,0.281561,0.605119,0.0607991,0.0388598,0.4841,0.253122,0.273997,0.537329,0.334722,0.900837,0.751411,0.507484,0.948361,0.674281,0.571661,0.0315623,0.0887767,0.763694,0.325109,0.63255,0.291247,0.308702,0.350442,0.239892,0.76721,0.251271,0.252021,0.532593,0.00311869,0.361623,0.811998,0.206052,0.615199,0.689837,0.667306,0.233473,0.405629,0.501789,0.159315,0.325588,0.535503,0.957958,0.237259,0.671909,0.692415,0.950983,0.881652,0.707839,0.923764,0.180576,0.0711891,0.62962,0.872526,0.864975,0.480608,0.145806,0.317765,0.784841,0.19477,0.80126,0.382114,0.312663,0.64382,0.407839,0.653892,0.343921,0.665362,0.351574,0.238573,0.522012,0.493234,0.785585,0.149032,0.436246,0.0289351,0.142691,0.543176,0.737391,0.0964269,0.0251412,0.17377,0.815148,0.215086,0.0711085,0.240658,0.675942,0.634158,0.302335,0.591711,0.575804,0.285492,0.561856,0.0798906,0.369908,0.26828,0.796278,0.0410452,0.192725,0.333205,0.625719,0.309824,0.852037,0.779556,0.00134057,0.891681,0.374453,0.0151572,0.507231,0.62523,0.459392,0.877138,0.103003,0.0918173,0.242114,0.302316,0.0849787,0.469186,0.911688,0.909787,0.0670276,0.365591,0.430476,0.060628,0.451169,0.295203,0.468111,0.353026,0.881587,0.325276,0.597207,0.659752,0.834746,0.577006,0.969797,0.76368,0.351299,0.682813,0.936517,0.370995,0.962026,0.587082,0.170411,0.736928,0.398165,0.57274,0.270926,0.209384,0.870222,0.0313005,0.726934,0.627104,0.973832,0.683663,0.138265,0.180801,0.815379,0.545496,0.135515,0.817759,0.974522,0.244443,0.460402,0.44233,0.723478,0.814222,0.113984,0.388839,0.125027,0.279622,0.725462,0.0503498,0.748618,0.394944,0.646235,0.781161,0.384063,0.508984,0.898617,0.293112,0.12944,0.882537,0.787142,0.22102,0.773874,0.151371,0.52383,0.749265,0.175994,0.289279,0.757918,0.21893,0.369678,0.443131,0.395125,0.0998915,0.498232,0.951362,0.309178,0.725437,0.295786,0.46943,0.509983,0.419541,0.661353,0.999958,0.0229917,0.645467,0.528401,0.951613,0.882495,0.828324,0.53735,0.848998,0.800464,0.911086,0.999505,0.614822,0.578427,0.651771,0.619907,0.564918,0.857946,0.0466673,0.32784,0.538241,0.940167,0.219447,0.508252,0.533286,0.800254,0.000907302,0.479278,0.392148,0.780343,0.534141,0.711714,0.0328503,0.685161,0.816718,0.0161805,0.751398,0.55655,0.194807,0.592272,0.727942,0.274414,0.236224,0.949221,0.362439,0.348965,0.461816,0.100472,0.384562,0.113412,0.923748,0.307367,0.0339106,0.604121,0.805481,0.754195,0.992103,0.869392,0.278823,0.53926,0.229317,0.876679,0.315696,0.791329,0.310386,0.390014,0.538299,0.0173711,0.837148,0.297585,0.777917,0.47378,0.932914,0.289174,0.190443,0.888256,0.921521,0.832,0.141442,0.608293,0.923026,0.123182,0.588362,0.80685,0.273683,0.992211,0.363272,0.364882,0.303727,0.501226,0.611671,0.552748,0.833671,0.318068,0.200368,0.212365,0.0630022,0.240051,0.912781,0.172397,0.00928676,0.728032,0.749654,0.950339,0.522087,0.887436,0.436051,0.573667,0.0887702,0.350065,0.193802,0.141564,0.0874071,0.951289,0.0463516,0.149852,0.889247,0.878797,0.742441,0.204697,0.916681,0.551489,0.180466,0.427768,0.309909,0.403957,0.863409,0.467971,0.815352,0.246351,0.0351624,0.19746,0.810209,0.973948,0.0731674,0.301949,0.925034,0.496939,0.0220773,0.587905,0.882813,0.908936,0.647721,0.87728,0.72336,0.0436895,0.642144,0.209572,0.693277,0.228408,0.653136,5.26309e-05,0.133853,0.488626,0.0469139,0.747031,0.948149,0.205407,0.742854,0.82602,0.202076,0.00735682,0.41944,0.333188,0.776075,0.744629,0.319804,0.454343,0.484609,0.552411,0.905218,0.346309,0.379842,0.343091,0.516762,0.906517,0.757906,0.948144,0.650501,0.318624,0.902116,0.619192,0.944719,0.687772,0.944955,0.365948,0.010141,0.130084,0.526509,0.935452,0.0786632,0.869924,0.643417,0.340846,0.704282,0.608484,0.360406,0.835959,0.38718,0.223276,0.669466,0.218473,0.890384,0.553293,0.132533,0.179287,0.96311,0.0903608,0.79754,0.131169,0.0952327,0.422249,0.310221,0.403978,0.225683,0.114999,0.956545,0.25224,0.518127,0.460222,0.430281,0.646085,0.878192,0.010433,0.627474,0.69477,0.77548,0.459107,0.890216,0.432436,0.917923,0.361401,0.940959,0.333421,0.662598,0.718196,0.535048,0.0250151,0.539882,0.671506,0.416195,0.309445,0.827127,0.815343,0.920925,0.25865,0.217415,0.780492,0.00668001,0.12966,0.666374,0.53653,0.549722,0.436289,0.857694,0.125574,0.710491,0.0104147,0.459593,0.106007,0.399922,0.223887,0.0843325,0.709642,0.777571,0.515858,0.269249,0.915267,0.560455,0.680857,0.197886,0.601275,0.221213,0.369885,0.621979,0.257693,0.217326,0.39298,0.417297,0.313952,0.896012,0.258863,0.867819,0.148669,0.0986067,0.0157053,0.246634,0.446894,0.907818,0.573567,0.654436,0.744298,0.0249343,0.908859,0.687292,0.885887,0.487944,0.830986,0.994469,0.724819,0.752677,0.237718,0.510036,0.504232,0.455598,0.719927,0.0201827,0.573991,0.916526,0.607304,0.998449,0.802861,0.208387,0.912399,0.247856,0.569369,0.840101,0.0325098,0.872345,0.454531,|0.290744,0.909042,0.69154,0.401101,0.883838,0.864458,0.304796,0.886482,0.306464,0.911886,0.62058,0.33776,0.776235,0.494705,0.183242,0.755862,0.757852,0.324428,0.273631,0.882769,0.31341,0.342445,0.109302,0.882724,0.602644,0.779648,0.111304,0.950715,0.42158,0.129464,0.657502,0.0363173,0.226035,0.30572,0.460516,0.531402,0.218283,0.116783,0.0125208,0.270203,0.0563726,0.858605,0.988416,0.507675,0.866479,0.879044,0.942823,0.297419,0.781168,0.726837,0.144469,0.889631,0.921884,0.481282,0.743927,0.311549,0.985292,0.951968,0.94497,0.143733,0.0836663,0.541151,0.942508,0.89087,0.685916,0.163985,0.364315,0.571041,0.656298,0.73631,0.0154175,0.474551,0.349382,0.939012,0.390727,0.496022,0.428229,0.103492,0.950321,0.771494,0.86882,0.996704,0.160805,0.950689,0.0638739,0.390567,0.283618,0.998824,0.798153,0.689845,0.467729,0.775585,0.249339,0.0255296,0.347741,0.413697,0.60336,0.367493,0.101649,0.888242,0.162187,0.919539,0.536809,0.938733,0.782451,0.41385,0.62084,0.750859,0.0644887,0.686212,0.806106,0.700101,0.121183,0.781162,0.76109,0.423598,0.655231,0.976211,0.101256,0.983444,0.0301321,0.160287,0.058589,0.111059,0.414791,0.38148,0.993926,0.829108,0.46715,0.0729392,0.420569,0.324568,0.492954,0.382623,0.530428,0.930178,0.325324,0.0769081,0.920469,0.924914,0.0292861,0.986461,0.309539,0.0298855,0.298267,0.838504,0.473147,0.0619158,0.616623,0.836306,0.114809,0.868025,0.879715,0.6125,0.683947,0.228291,0.851807,0.724135,0.611954,0.227797,0.085278,0.00104612,0.544301,0.899771,0.758867,0.550603,0.859996,0.0815744,0.460472,0.159077,0.888586,0.41068,0.631506,0.276225,0.269986,0.953081,0.994773,0.0288499,0.418065,0.213718,0.30427,0.0362057,0.76497,0.0639358,0.968173,0.838407,0.945733,0.887743,0.174328,0.289781,0.971766,0.598181,0.443302,0.850896,0.408325,0.95949,0.85028,0.866698,0.953265,0.511785,0.0259823,0.693142,0.489122,0.753057,0.00522006,0.809117,0.684924,0.0557264,0.400554,0.588404,0.742789,0.145417,0.0766161,0.6512,0.275499,0.368801,0.331456,0.111455,0.682526,0.707888,0.590788,0.177629,0.577057,0.136732,0.0656905,0.755564,0.374507,0.963344,0.405951,0.879455,0.992697,0.41251,0.825721,0.242761,0.696943,0.269682,0.430488,0.123605,0.199916,0.327508,0.469167,0.563956,0.896887,0.817405,0.890842,0.890386,0.302836,0.418733,0.945249,0.28847,0.148097,0.112005,0.360394,0.51408,0.0973947,0.916668,0.728651,0.0727104,0.623146,0.671623,0.32061,0.0780457,0.943313,0.996859,0.340471,0.83872,0.901227,0.463898,0.0456687,0.589587,0.0407453,0.308647,0.223179,0.507385,0.718208,0.338024,0.743513,0.657196,0.123729,0.910526,0.522129,0.917605,0.197801,0.265039,0.860778,0.320342,0.130342,0.195967,0.689676,0.0733373,0.342627,0.786556,0.0861377,0.695644,0.303366,0.859672,0.208216,0.352692,0.416306,0.0281183,0.086548,0.347198,0.574688,0.0284721,0.385335,0.405765,0.297681,0.457706,0.755899,0.600138,0.789135,0.651961,0.160241,0.306851,0.113389,0.528956,0.661659,0.386252,0.558365,0.510273,0.818106,0.888089,0.67924,0.129206,0.862772,0.544236,0.904803,0.160562,0.257612,0.389048,0.0709298,0.0266091,0.323416,0.682889,0.345467,0.133589,0.734447,0.8316,0.130332,0.617223,0.490501,0.1899,0.438892,0.0616128,0.870608,0.877054,0.862331,0.574489,0.315597,0.917236,0.915973,0.639387,0.264319,0.471099,0.951082,0.390059,0.295341,0.536437,0.321199,0.0275373,0.321475,0.465203,0.864501,0.136179,0.1022,0.755825,0.555019,0.773697,0.433655,0.22147,0.396613,0.139181,0.776051,0.505211,0.0564335,0.0681275,0.476879,0.577358,0.28786,0.209523,0.493998,0.613824,0.612379,0.180434,0.680871,0.463525,0.493888,0.606902,0.295379,0.0442209,0.707912,0.039368,0.138415,0.626579,0.780696,0.225746,0.97067,0.690062,0.565668,0.540025,0.0829306,0.360726,0.496388,0.617625,0.297932,0.554827,0.661748,0.217526,0.748151,0.935648,0.259896,0.0217118,0.0220732,0.0868333,0.217316,0.540952,0.00943106,0.297909,0.661301,0.0332909,0.484132,0.504905,0.942877,0.0666509,0.405838,0.992558,0.761182,0.785929,0.929103,0.801261,0.0289512,0.275298,0.745901,0.131075,0.73515,0.765061,0.0252447,0.230902,0.260504,0.905,0.358795,0.890803,0.138038,0.245281,0.142672,0.688516,0.85493,0.775892,0.725688,0.417439,0.846548,0.0702576,0.369736,0.498293,0.598359,0.00539625,0.462812,0.315783,0.041986,0.15864,0.916098,0.469018,0.129596,0.0627238,0.69449,0.273232,0.860885,0.944884,0.662827,0.117038,0.185617,0.916488,0.434992,0.159594,0.91783,0.528533,0.927511,0.179946,0.977676,0.591421,0.530039,0.0325745,0.432611,0.212572,0.592746,0.0977426,0.103399,0.0322468,0.80077,0.464998,0.324693,0.137495,0.610265,0.25045,0.418327,0.856562,0.335872,0.613951,0.948578,0.503445,0.812255,0.219597,0.475507,0.533749,0.680506,0.797027,0.451465,0.623288,0.430195,0.537899,0.989597,0.0731487,0.264145,0.959081,0.461154,0.119781,0.892846,0.843862,0.173884,0.827685,0.546983,0.568869,0.842923,0.142049,0.0514529,0.772679,0.934308,0.140735,0.710607,0.181713,0.830931,0.625884,0.245418,0.36253,0.835028,0.860685,0.248095,0.012743,0.0533281,0.492825,0.671516,0.537744,0.85807,0.582712,0.711787,0.631545,0.482608,0.98816,0.709852,0.721342,0.797717,0.604537,0.640328,0.619463,0.732857,0.830354,0.33881,0.488432,0.81766,0.398973,0.440073,0.923637,0.339537,0.892567,0.716783,0.610927,0.868709,0.27223,0.922096,0.0453354,0.04459,0.698171,0.882018,0.184628,0.628678,0.951099,0.560885,0.833417,0.900652,0.179932,0.263453,0.0691526,0.980475,0.429329,0.542594,0.115929,0.0998714,0.367388,0.886166,0.369729,0.42949,0.795622,0.156634,0.565593,0.740117,0.872463,0.281559,0.878655,0.0347818,0.501074,0.18043,0.479585,0.989102,0.864983,0.782515,0.29784,0.100405,0.429546,0.119581,0.698447,0.374026,0.869254,0.14908,0.692899,0.904526,0.758247,0.963097,0.365912,0.791002,0.872601,0.684628,0.537375,0.534655,0.494317,0.450565,0.987406,0.926608,0.886027,0.43454,0.0522677,0.454143,0.749846,0.392938,0.0755389,0.846123,0.147965,0.517726,0.184294,0.883937,0.504117,0.875781,0.903607,0.813635,0.792144,0.0531314,0.0754727,0.289357,0.585457,0.0951065,0.684265,0.479388,0.336083,0.497137,0.802218,0.0483004,0.672853,0.306634,0.795261,0.525296,0.627096,0.23089,0.0457906,0.283713,0.71705,0.613422,0.346149,0.550806,0.583293,0.0374668,0.576584,0.174043,0.668057,0.331691,0.926722,0.197701,0.474313,0.0506359,0.484996,0.74407,0.194538,0.801915,0.882432,0.16531,0.915327,0.542243,0.279772,0.15554,0.392626,0.852467,0.587691,0.397279,0.998814,0.477556,0.0979312,0.504065,0.386386,0.67573,0.506802,0.670627,0.338,0.226016,0.407803,0.152049,0.562733,0.913992,0.650954,0.75526,0.299484,0.232091,0.128889,0.402252,0.629912,0.812196,0.140321,0.25392,0.604374,0.39266,0.962498,0.322452,0.380132,0.808033,0.559579,0.726279,0.395244,0.623931,0.680029,0.836407,0.395661,0.299116,0.477996,0.977395,0.0542311,0.678358,0.852525,0.759374,0.748358,0.973179,0.66381,0.794023,0.533834,0.281448,0.0866121,0.729426,0.374089,0.257536,0.414199,0.45463,0.296945,0.253643,0.90971,0.999494,0.315055,0.91802,0.145842,0.600459,0.07845,0.420506,0.349344,0.418443,0.743288,0.774811,0.668643,0.35466,0.795369,0.176585,0.933068,0.372517,0.485453,0.257006,0.310642,0.616651,0.843144,0.178327,0.536902,0.286036,0.752064,0.819923,0.604601,0.632844,0.653723,0.334732,0.477023,0.666277,0.886246,0.0168457,0.457968,0.0671237,0.220799,0.711744,0.638174,0.725063,0.994975,0.53038,0.580936,0.831946,0.226373,0.172646,0.856103,0.447637,0.932544,0.0153541,0.0857113,0.872158,0.0510746,0.809404,0.538073,0.700551,0.73657,0.569525,0.825365,0.256238,0.652336,0.75761,0.777578,0.674378,0.052261,0.955696,0.604746,0.140889,0.806737,0.751871,0.568385,0.038674,0.647811,0.940497,0.0250999,0.206378,0.447433,0.625542,0.262575,0.784649,0.0670668,0.858772,0.731823,0.140022,0.629593,0.759575,0.773136,0.987781,0.97165,0.625557,0.88486,0.386661,0.419057,0.318851,0.242173,0.312184,0.710051,0.0511308,0.708368,0.504835,0.924567,0.524473,0.896673,0.574211,0.705222,0.215268,0.263552,0.755006,0.819718,0.8365,0.237466,0.737423,0.631363,0.03315,0.402506,0.633709,0.398393,0.869474,0.420505,0.704438,0.864081,0.328125,0.893402,0.854128,0.736426,0.423205,0.622753,0.0651463,0.637317,0.0451568,0.466544,0.544662,0.352476,0.585088,0.647547,0.050218,0.998557,0.640533,0.629132,0.104523,0.575844,0.355534,0.969338,0.220809,0.701178,0.198014,0.0946099,0.778638,0.0883811,0.749539,0.588357,0.242506,0.294588,0.173276,0.0431631,0.51923,0.248232,0.00508404,0.781776,0.166383,0.0392473,0.252344,0.244904,0.654665,0.533605,0.271601,0.791085,0.729782,0.462584,0.968153,0.445993,0.557362,0.911285,0.164678,0.549507,0.732261,0.481548,0.0282373,0.130629,0.525276,0.844272,0.258884,0.483596,0.254411,0.493643,0.480274,0.811349,0.524745,0.56,0.0996047,0.993478,0.304375,0.199278,0.644941,0.14658,0.590076,0.0772517,0.127833,0.166941,0.210398,0.265756,0.189577,0.450563,0.585571,0.753075,0.749807,0.116119,0.516822,0.598674,0.613693,0.372433,0.144735,0.271851,0.997795,0.486471,0.580428,0.623789,0.115331,0.656494,0.375594,0.983256,0.474705,0.599907,0.574423,0.377544,0.523188,0.412228,0.0905172,0.268303,0.764467,0.579024,0.924048,0.177105,0.539468,0.0536408,0.673406,0.593862,0.191161,0.69423,0.650825,0.661772,0.758838,0.0200578,0.262403,0.0223149,0.465403,0.29656,0.434214,0.164444,|0.641502,0.145301,0.493831,0.29037,0.378416,0.0760258,0.296311,0.712889,0.733786,0.61203,0.778024,0.588689,0.515746,0.353567,0.471949,0.00670046,0.029219,0.341012,0.0198197,0.523947,0.240672,0.0112691,0.142824,0.647972,0.623923,0.523663,0.288852,0.918948,0.897518,0.0719948,0.561819,0.520286,0.220189,0.718994,0.472816,0.966887,0.674484,0.103557,0.528562,0.0107138,0.926121,0.377332,0.83131,0.39079,0.474218,0.051841,0.510955,0.273332,0.150594,0.307339,0.575022,0.523169,0.0399725,0.154125,0.357632,0.276506,0.979194,0.0714678,0.393153,0.884993,0.66968,0.775695,0.963812,0.228384,0.173465,0.129914,0.651845,0.085723,0.642385,0.747231,0.798868,0.955331,0.0954358,0.949051,0.716826,0.115363,0.470924,0.379199,0.969959,0.713883,0.607344,0.586139,0.0634257,0.266023,0.323308,0.289358,0.104599,0.0282667,0.446472,0.351215,0.367593,0.843287,0.355686,0.226229,0.677255,0.220966,0.38264,0.80347,0.483502,0.250491,0.515372,0.654139,0.160289,0.998867,0.923991,0.142148,0.179095,0.050867,0.0297313,0.125006,0.462855,0.759471,0.642703,0.260779,0.0898516,0.699121,0.0733318,0.00293529,0.848994,0.79405,0.557591,0.802432,0.903224,0.145111,0.709043,0.643506,0.583817,0.0430208,0.729792,0.178605,0.742086,0.156495,0.508772,0.366477,0.0393236,0.172447,0.112094,0.139864,0.909826,0.727156,0.0477118,0.341299,0.280047,0.927949,0.0572344,0.0370979,0.951753,0.288092,0.867496,0.706567,0.115869,0.323447,0.532295,0.884706,0.0494491,0.626086,0.672776,0.563641,0.568962,0.610086,0.0358423,0.302809,0.454196,0.70771,0.919491,0.159675,0.297977,0.866403,0.0445849,0.277544,0.144454,0.955038,0.693772,0.565101,0.888155,0.229363,0.255704,0.994631,0.611098,0.274789,0.34545,0.145596,0.997842,0.128429,0.165286,0.580987,0.230276,0.0147367,0.329432,0.523859,0.499054,0.603409,0.993931,0.0847588,0.846575,0.767264,0.767676,0.303559,0.402302,0.535101,0.904956,0.680896,0.182353,0.462672,0.151438,0.255058,0.850253,0.877103,0.952817,0.0220355,0.612866,0.524237,0.955131,0.048529,0.511191,0.825399,0.21816,0.869476,0.421346,0.633784,0.480092,0.755763,0.0315332,0.408843,0.224904,0.508881,0.0492334,0.419771,0.937522,0.153846,0.874341,0.489521,0.76003,0.23524,0.899808,0.95429,0.762172,0.647905,0.0930035,0.888425,0.39637,0.165859,0.802377,0.451669,0.46822,0.298562,0.718683,0.0274274,0.0923035,0.64027,0.236611,0.759175,0.226304,0.930175,0.215153,0.815809,0.152588,0.312421,0.626261,0.291477,0.330397,0.322735,0.498621,0.214035,0.581113,0.0734897,0.156686,0.907645,0.377018,0.402752,0.882097,0.245483,0.361334,0.788981,0.530598,0.27127,0.21383,0.276398,0.756,0.554739,0.865493,0.843764,0.918815,0.109585,0.590241,0.17284,0.902781,0.696849,0.182135,0.477352,0.440039,0.99887,0.872425,0.205486,0.551885,0.969299,0.504721,0.680488,0.449404,0.38851,0.918222,0.640467,0.109402,0.0442296,0.188337,0.364608,0.361816,0.867518,0.448395,0.901604,0.91882,0.950865,0.956839,0.989011,0.534525,0.835797,0.983412,0.492632,0.463376,0.986952,0.849267,0.157267,0.710478,0.193362,0.805776,0.202503,0.656385,0.166299,0.257509,0.96136,0.191132,0.722154,0.589151,0.0847749,0.390766,0.831166,0.685339,0.0888951,0.997922,0.922572,0.214128,0.575888,0.427351,0.522268,0.677785,0.732537,0.256792,0.533989,0.764316,0.0232331,0.472204,0.850101,0.665169,0.668243,0.650568,0.628373,0.655319,0.695686,0.253282,0.262389,0.717084,0.453397,0.524154,0.305776,0.56206,0.184985,0.155906,0.695254,0.393395,0.136579,0.12014,0.420794,0.332647,0.506412,0.138255,0.590734,0.569623,0.0439081,0.383437,0.25084,0.239341,0.211248,0.206596,0.848736,0.0118447,0.000192225,0.696912,0.565505,0.155064,0.236975,0.913854,0.422225,0.373159,0.436674,0.165747,0.934192,0.914573,0.214996,0.311535,0.221207,0.291341,0.695565,0.047914,0.116724,0.269293,0.932243,0.774581,0.980387,0.465914,0.412302,0.00439614,0.680984,0.282143,0.995611,0.621578,0.691413,0.225115,0.779622,0.77021,0.454394,0.76861,0.970514,0.592194,0.568141,0.0868719,0.393451,0.243128,0.231753,0.16667,0.0726206,0.0301477,0.700323,0.0444092,0.105667,0.00142777,0.255646,0.266527,0.919179,0.585272,0.255907,0.303905,0.149078,0.760093,0.0877743,0.12308,0.142983,0.466743,0.431383,0.354681,0.571291,0.860926,0.53566,0.996421,0.536525,0.0147047,0.398606,0.557143,0.632207,0.135412,0.0721842,0.733357,0.232166,0.0554647,0.239166,0.924321,0.210531,0.817713,0.324685,0.561488,0.788148,0.33368,0.829703,0.59277,0.307149,0.19514,0.0381004,0.974942,0.513725,0.249106,0.699514,0.717762,0.614034,0.110037,0.98994,0.526086,0.807574,0.465901,0.510198,0.184054,0.773278,0.100991,0.851863,0.628198,0.56295,0.202883,0.431224,0.691851,0.101668,0.439294,0.684495,0.904975,0.574089,0.938956,0.960483,0.502871,0.988807,0.180065,0.867909,0.00532514,0.822261,0.931611,0.0196838,0.697888,0.736103,0.217869,0.818025,0.226584,0.308002,0.942335,0.45792,0.286299,0.512731,0.37368,0.432161,0.0931166,0.558971,0.298669,0.741683,0.228563,0.537498,0.610085,0.658528,0.439512,0.340535,0.962803,0.296205,0.981121,0.112417,0.989338,0.0413877,0.593816,0.862599,0.313338,0.0233085,0.569534,0.193602,0.201455,0.897074,0.981438,0.28802,0.463593,0.957611,0.792624,0.330447,0.23727,0.514967,0.607912,0.212039,0.821397,0.000569224,0.894537,0.661514,0.70207,0.633229,0.26709,0.755652,0.931232,0.402806,0.472936,0.00696766,0.705498,0.172648,0.226311,0.540668,0.0449533,0.061879,0.287007,0.501341,0.368732,0.0137341,0.782594,0.862245,0.339642,0.858468,0.345199,0.398214,0.630933,0.654152,0.463261,0.227267,0.622002,0.859005,0.318799,0.762512,0.413795,0.399419,0.599165,0.230914,0.560183,0.336604,0.966088,0.0573334,0.198289,0.140278,0.0494327,0.016567,0.0310647,0.651685,0.635756,0.776088,0.463947,0.771985,0.357663,0.522642,0.333941,0.708567,0.0312142,0.745889,0.119295,0.66365,0.89174,0.594298,0.797561,0.257202,0.577171,0.0428489,0.960635,0.788757,0.142319,0.0401546,0.804134,0.960243,0.0182648,0.811253,0.380151,0.142955,0.11557,0.294027,0.351321,0.533852,0.951322,0.241989,0.112508,0.152991,0.918636,0.353378,0.899859,0.718371,0.282379,0.700899,0.577069,0.512303,0.363151,0.701853,0.780125,0.977085,0.471839,0.294706,0.311606,0.133503,0.650794,0.124775,0.410496,0.513976,0.930235,0.679499,0.0656575,0.203775,0.781349,0.842727,0.320409,0.204598,0.595343,0.034021,0.324701,0.272225,0.112848,0.473851,0.16973,0.280301,0.898569,0.554925,0.644252,0.0885808,0.595661,0.00592083,0.157218,0.225141,0.85518,0.296468,0.996204,0.771234,0.0320418,0.537502,0.980136,0.548863,0.616615,0.139654,0.540793,0.788886,0.105349,0.540544,0.225537,0.796676,0.593772,0.893591,0.57438,0.344506,0.246842,0.901245,0.859291,0.935128,0.165103,0.199732,0.725828,0.772979,0.654765,0.70666,0.1788,0.718401,0.866248,0.0233312,0.600721,0.663481,0.346368,0.733598,0.908903,0.576456,0.331871,0.49871,0.319337,0.729326,0.34614,0.939054,0.676158,0.821898,0.474701,0.193352,0.625587,0.977383,0.431707,0.439812,0.532786,0.787544,0.763978,0.948871,0.835763,0.892644,0.704256,0.394922,0.643597,0.0026263,0.134994,0.210578,0.204937,0.494882,0.303584,0.329505,0.358764,0.609201,0.355182,0.691508,0.0629485,0.397923,0.477621,0.0164146,0.836954,0.0426165,0.617086,0.666119,0.43993,0.581621,0.00757563,0.0439843,0.68502,0.147433,0.721791,0.955716,0.00279939,0.686903,0.957913,0.63788,0.114701,0.529454,0.735933,0.254448,0.788361,0.88043,0.185614,0.106059,0.544483,0.765212,0.588143,0.0142707,0.377153,0.988898,0.473655,0.721711,0.713713,0.414696,0.991518,0.130395,0.180485,0.776685,0.0653346,0.364516,0.743936,0.520717,0.995526,0.683673,0.258145,0.368396,0.194233,0.810788,0.118405,0.0736154,0.193974,0.419415,0.325218,0.281854,0.135607,0.213729,0.570967,0.287393,0.692894,0.508956,0.601142,0.903591,0.312648,0.908248,0.0971373,0.658763,0.798054,0.266488,0.00969642,0.132043,0.171785,0.356439,0.819358,0.948536,0.197776,0.10967,0.407426,0.191888,0.325864,0.369458,0.702908,0.176579,0.141421,0.704223,0.980167,0.524937,0.29277,0.730941,0.182581,0.0727506,0.733977,0.748646,0.196053,0.114874,0.607403,0.178004,0.860794,0.354083,0.328161,0.302146,0.871135,0.836873,0.262744,0.254947,0.0373786,0.339191,0.249199,0.00817472,0.930096,0.453607,0.768851,0.575806,0.745438,0.753379,0.728909,0.0105901,0.688699,0.677459,0.0655492,0.0808208,0.764342,0.645855,0.640657,0.594774,0.290286,0.579245,0.691427,0.755,0.334115,0.505559,0.291967,0.788045,0.888524,0.309156,0.061183,0.922664,0.687047,0.768044,0.363018,0.2056,0.81715,0.668153,0.313862,0.89807,0.364203,0.483018,0.369726,0.0162409,0.275969,0.800521,0.847,0.844835,0.275991,0.958316,0.752283,0.182231,0.294846,0.80067,0.717198,0.0648328,0.930142,0.500456,0.0126809,0.949291,0.515371,0.667789,0.109599,0.663826,0.306449,0.557999,0.906023,0.00420803,0.387281,0.980136,0.317566,0.984082,0.477328,0.306396,0.871682,0.903166,0.0838661,0.986235,0.596468,0.485071,0.935613,0.165913,0.696886,0.609723,0.739847,0.190054,0.0732449,0.198911,0.504723,0.792359,0.988313,0.826839,0.425537,0.464538,0.53825,0.560119,0.125705,0.153774,0.835115,0.368975,0.442245,0.741726,0.742762,0.387693,0.692063,0.394347,0.900945,0.537262,0.290714,0.394823,0.278279,0.579033,0.133192,0.345837,0.435917,0.670165,0.404755,0.551503,0.267846,0.939,0.36863,0.698835,0.185798,0.386522,0.934662,0.558689,0.488523,0.369253,0.436565,0.24581,|0.545187,0.241607,0.787061,0.173495,0.542779,0.677663,0.689418,0.968693,0.678836,0.0574142,0.67278,0.0516792,0.702988,0.285507,0.925706,0.36855,0.887301,0.518457,0.404853,0.100188,0.698785,0.936226,0.820307,0.093819,0.199537,0.123181,0.0178298,0.74047,0.501901,0.964217,0.618673,0.709058,0.325178,0.990224,0.945879,0.723372,0.0803168,0.239955,0.192259,0.880259,0.595927,0.418494,0.952344,0.627267,0.625208,0.704148,0.812717,0.462921,0.253985,0.579105,0.165952,0.329011,0.473821,0.0773419,0.649785,0.492894,0.111681,0.231187,0.793904,0.554889,0.159987,0.225543,0.53817,0.651853,0.0960043,0.555832,0.943038,0.89345,0.146653,0.103638,0.707769,0.475152,0.0170665,0.982625,0.366138,0.952098,0.585081,0.689493,0.186481,0.815653,0.0159612,0.685593,0.175274,0.575594,0.514207,0.276497,0.215324,0.212029,0.159916,0.829353,0.102511,0.902745,0.979022,0.781019,0.965528,0.106766,0.837791,0.135446,0.23588,0.989936,0.319549,0.958746,0.518696,0.892142,0.374831,0.324536,0.103309,0.126714,0.89112,0.757284,0.536553,0.610408,0.361406,0.732921,0.414057,0.0822177,0.303139,0.788857,0.0269674,0.26933,0.0263798,0.271464,0.132832,0.712027,0.516402,0.104739,0.298753,0.140535,0.729551,0.661803,0.595598,0.347334,0.348699,0.756143,0.874607,0.809766,0.372034,0.204416,0.926105,0.190422,0.492133,0.555494,0.949473,0.224088,0.0528659,0.612862,0.0622669,0.402917,0.773021,0.207164,0.594001,0.0904025,0.087459,0.821032,0.117344,0.675816,0.619406,0.0564095,0.127098,0.877701,0.423355,0.44626,0.27909,0.547839,0.201477,0.908481,0.879287,0.579174,0.494455,0.551759,0.681395,0.692394,0.874344,0.605873,0.643648,0.368762,0.435106,0.728806,0.725881,0.971609,0.304684,0.1856,0.89384,0.328745,0.727763,0.211281,0.0174559,0.665864,0.788855,0.382868,0.422278,0.382533,0.872629,0.547796,0.053352,0.131112,0.215397,0.818619,0.587345,0.764809,0.362654,0.968193,0.299844,0.58291,0.346626,0.0684949,0.939825,0.698977,0.250905,0.621746,0.652402,0.982304,0.376271,0.694573,0.620446,0.72095,0.0110842,0.60578,0.399395,0.45267,0.685964,0.912695,0.255528,0.923433,0.721902,0.238822,0.745421,0.0520564,0.189703,0.445444,0.581288,0.774953,0.318462,0.464013,0.497225,0.400541,0.0965761,0.983875,0.864567,0.970797,0.941728,0.829185,0.864545,0.28666,0.240556,0.127428,0.456445,0.184657,0.607666,0.921872,0.732324,0.409063,0.756705,0.220428,0.410371,0.653988,0.55495,0.69281,0.231388,0.23762,0.956921,0.873687,0.639157,0.876858,0.769952,0.719362,0.285741,0.412088,0.660557,0.388065,0.272401,0.681136,0.835525,0.293323,0.877962,0.132245,0.357365,0.533377,0.484921,0.662114,0.877459,0.933648,0.631893,0.458291,0.523907,0.262309,0.265246,0.266013,0.2445,0.949443,0.719018,0.524518,0.218493,0.111255,0.948084,0.556456,0.0889079,0.00710714,0.833954,0.459084,0.804505,0.463299,0.558524,0.59003,0.310316,0.285298,0.771959,0.85332,0.838609,0.544473,0.883009,0.323923,0.427673,0.308658,0.749656,0.314226,0.754062,0.861109,0.630217,0.573953,0.270235,0.45131,0.477856,0.875593,0.93677,0.711845,0.236387,0.428125,0.871605,0.29163,0.415212,0.254017,0.281178,0.434009,0.385579,0.135459,0.554281,0.405812,0.872488,0.374207,0.717405,0.189502,0.297414,0.305957,0.788296,0.870327,0.607868,0.737235,0.495622,0.270366,0.84572,0.655712,0.0853351,0.237866,0.0164343,0.465313,0.183022,0.38418,0.958768,0.253677,0.802197,0.0132222,0.752369,0.185005,0.966962,0.165197,0.245471,0.817877,0.662787,0.469961,0.258123,0.96552,0.117217,0.120065,0.516938,0.435841,0.0491092,0.898639,0.634568,0.994138,0.669616,0.148038,0.50365,0.809794,0.978824,0.555333,0.285769,0.835057,0.905187,0.128119,0.475588,0.523295,0.677195,0.850136,0.416338,0.265116,0.52972,0.876331,0.0925506,0.971904,0.587354,0.320757,0.651312,0.304794,0.304119,0.646244,0.0364147,0.501837,0.870649,0.201673,0.455292,0.025556,0.557522,0.323092,0.362553,0.706765,0.282534,0.152517,0.468364,0.728504,0.272593,0.294935,0.558487,0.486118,0.797071,0.636969,0.31772,0.753336,0.768233,0.589869,0.80551,0.875133,0.859045,0.6715,0.472646,0.656321,0.661071,0.990338,0.955815,0.371428,0.601896,0.197295,0.985455,0.900733,0.87097,0.555287,0.400618,0.701314,0.308894,0.876562,0.791503,0.686943,0.401481,0.961057,0.475269,0.642339,0.300051,0.871649,0.816222,0.851951,0.419322,0.891512,0.162791,0.354437,0.0238624,0.0174004,0.991505,0.997181,0.977569,0.0477439,0.730634,0.564288,0.0960009,0.824379,0.198748,0.125412,0.579037,0.168819,0.977349,0.585406,0.996991,0.0113681,0.952746,0.764476,0.470335,0.730974,0.21993,0.36069,0.241233,0.0391934,0.895878,0.842804,0.522597,0.342756,0.365108,0.418761,0.17928,0.377906,0.70836,0.601086,0.34342,0.886221,0.577627,0.68979,0.685404,0.163126,0.995787,0.503656,0.775529,0.0528142,0.960667,0.187884,0.479851,0.614546,0.88325,0.592942,0.58383,0.717853,0.0548336,0.309937,0.830713,0.542259,0.402755,0.90294,0.935926,0.0155281,0.895938,0.195683,0.593947,0.983636,0.522206,0.507408,0.65715,0.203173,0.710607,0.335988,0.55639,0.565395,0.3676,0.751495,0.625816,0.440262,0.148521,0.918684,0.903277,0.79904,0.938357,0.66371,0.363571,0.847697,0.849022,0.962281,0.420802,0.710045,0.46665,0.714577,0.890861,0.854632,0.810553,0.904177,0.239027,0.50955,0.82374,0.877097,0.0233636,0.921297,0.620641,0.0294573,0.455979,0.530634,0.284945,0.720742,0.826573,0.899047,0.711499,0.176575,0.468386,0.353808,0.417886,0.185698,0.0805568,0.137166,0.633501,0.945753,0.129849,0.716732,0.0254578,0.87114,0.239344,0.205451,0.871499,0.213126,0.423996,0.470562,0.267015,0.389601,0.685753,0.750257,0.309291,0.45515,0.306532,0.967715,0.695206,0.650174,0.659409,0.848298,0.880331,0.0759478,0.594286,0.909976,0.0793963,0.361701,0.725188,0.696629,0.157168,0.597367,0.307531,0.764745,0.954856,0.821024,0.924149,0.764929,0.138864,0.0795231,0.426348,0.820265,0.245437,0.644322,0.58697,0.151812,0.514378,0.343123,0.131117,0.755422,0.939643,0.642284,0.323671,0.531744,0.434813,0.259627,0.700787,0.194594,0.668259,0.831657,0.377217,0.894789,0.444814,0.37484,0.118184,0.788614,0.959544,0.803156,0.46452,0.749897,0.421844,0.00252223,0.479344,0.022624,0.183468,0.798235,0.277073,0.862702,0.1118,0.260575,0.323359,0.0704043,0.525206,0.534784,0.0210498,0.386011,0.952088,0.262233,0.528354,0.28576,0.904246,0.327527,0.639061,0.256328,0.0387378,0.223992,0.431742,0.33186,0.898053,0.451761,0.455803,0.296144,0.159631,0.518533,0.591121,0.86068,0.487658,0.141418,0.530747,0.69298,0.794087,0.944449,0.864782,0.848491,0.852825,0.160086,0.256764,0.37947,0.49724,0.193682,0.113015,0.893829,0.211567,0.989506,0.415128,0.301189,0.399604,0.555674,0.984872,0.127713,0.684475,0.466299,0.664707,0.650589,0.555709,0.961237,0.945038,0.0365217,0.812447,0.19032,0.296024,0.114253,0.730927,0.979159,0.591426,0.205197,0.85283,0.456359,0.630809,0.925211,0.663992,0.621211,0.273632,0.800943,0.0926117,0.728074,0.710579,0.608876,0.18223,0.914138,0.479432,0.743978,0.0650473,0.848203,0.848176,0.126375,0.205699,0.943658,0.0502339,0.0826175,0.450972,0.0012269,0.692426,0.16432,0.179705,0.881521,0.0306288,0.0618511,0.127021,0.596365,0.333517,0.203874,0.0547696,0.54867,0.574224,0.625901,0.723309,0.218727,0.612492,0.181089,0.274824,0.0408199,0.545675,0.841762,0.611173,0.00823396,0.182842,0.22413,0.78967,0.690754,0.257653,0.379253,0.837252,0.29095,0.603997,0.825924,0.989448,0.224644,0.817475,0.0153974,0.665619,0.492252,0.397417,0.0623493,0.687955,0.0710816,0.836077,0.473568,0.423465,0.988808,0.807758,0.0906636,0.365851,0.140144,0.964558,0.659141,0.654512,0.735379,0.611715,0.0444251,0.222119,0.595221,0.553831,0.446313,0.877817,0.880127,0.714069,0.996919,0.0768101,0.174572,0.953373,0.298732,0.901192,0.0849861,0.351379,0.0696599,0.653601,0.856371,0.952747,0.0216875,0.764128,0.636342,0.96048,0.189433,0.252879,0.902546,0.464555,0.364391,0.240758,0.063879,0.554677,0.770788,0.742002,0.470199,0.623866,0.258452,0.504807,0.268687,0.151901,0.0981084,0.244056,0.406643,0.51519,0.289351,0.222514,0.507606,0.727833,0.806819,0.971413,0.0313234,0.887243,0.309775,0.885776,0.684309,0.258474,0.684696,0.586745,0.367858,0.422792,0.143075,0.114359,0.630673,0.804779,0.299992,0.75911,0.737383,0.44994,0.176439,0.275578,0.304462,0.956162,0.690658,0.748801,0.20506,0.938438,0.857046,0.916918,0.458368,0.892212,0.660885,0.437416,0.705672,0.319335,0.35578,0.646388,0.322228,0.716312,0.515978,0.660046,0.432752,0.939168,0.166875,0.167141,0.383939,0.807135,0.696815,0.485157,0.0318958,0.189002,0.943857,0.883663,0.728315,0.832155,0.176216,0.410395,0.40701,0.832168,0.567847,0.170034,0.717092,0.269588,0.116097,0.631399,0.969706,0.0916889,0.71781,0.558178,0.230744,0.00314623,0.22833,0.927915,0.157571,0.412194,0.662261,0.359319,0.507057,0.0582859,0.144685,0.941503,0.136074,0.0984711,0.67114,0.72161,0.964501,0.443787,0.625177,0.472178,0.124362,0.0805616,0.413661,0.72035,0.0205052,0.987686,0.106554,0.763256,0.253392,0.00432509,0.688188,0.200225,0.0370101,0.00869894,0.953128,0.397752,0.359484,0.654513,0.283561,0.164307,0.344529,0.759326,0.589239,0.740001,0.992488,0.538084,0.441934,0.155748,0.269581,0.246266,0.784448,0.0354478,0.0724471,0.457584,0.86613,0.554221,0.385997,0.570959,0.175929,0.628249,0.132048,0.972501,0.961086,0.00441951,0.669442,0.165843,0.14743,0.55973,0.984806,|0.429979,0.431253,0.826353,0.580081,0.603184,0.356452,0.977878,0.631101,0.843259,0.288264,0.533064,0.477276,0.147829,0.396667,0.912704,0.396541,0.706037,0.86257,0.462093,0.896939,0.187953,0.0460308,0.0699156,0.186632,0.723372,0.315588,0.356174,0.159262,0.100864,0.460857,0.73391,0.276188,0.100069,0.585155,0.0850518,0.898005,0.660853,0.990472,0.118897,0.709798,0.434477,0.645574,0.498229,0.171905,0.41698,0.70431,0.740721,0.429376,0.993734,0.639511,0.160827,0.775319,0.110188,0.0753058,0.23321,0.618203,0.38471,0.532237,0.146846,0.672654,0.647929,0.157847,0.767527,0.40277,0.523589,0.788015,0.110791,0.622611,0.307817,0.194866,0.89868,0.788751,0.246455,0.475598,0.186991,0.0958991,0.633728,0.748343,0.51388,0.769338,0.267444,0.286173,0.533367,0.0583751,0.292477,0.721824,0.719002,0.151014,0.402128,0.0150604,0.580614,0.353386,0.803735,0.241422,0.213475,0.397809,0.53277,0.0855123,0.523386,0.893257,0.651517,0.556679,0.854216,0.837135,0.445519,0.336773,0.887895,0.468618,0.837655,0.800242,0.614482,0.836429,0.925721,0.586744,0.284661,0.0108627,0.181694,0.937503,0.734911,0.766048,0.746109,0.544085,0.772172,0.0996351,0.0411094,0.115541,0.549537,0.757851,0.578586,0.0311248,0.91877,0.60116,0.253703,0.091998,0.117795,0.892004,0.683012,0.202117,0.568943,0.692547,0.200192,0.645002,0.630593,0.202503,0.643666,0.944555,0.677118,0.848459,0.227344,0.826231,0.690262,0.372274,0.563921,0.476365,0.569841,0.106353,0.35186,0.687298,0.578609,0.777893,0.544298,0.343506,0.290327,0.687134,0.516051,0.186774,0.490774,0.0581201,0.244468,0.789084,0.439072,0.3234,0.180198,0.923853,0.595135,0.341551,0.554336,0.398351,0.0978436,0.847507,0.798628,0.0748807,0.759355,0.851642,0.96478,0.522467,0.246978,0.308466,0.0885241,0.496007,0.233154,0.593604,0.122046,0.583984,0.139413,0.791777,0.959882,0.710564,0.900918,0.753517,0.507075,0.772209,0.832128,0.147957,0.180547,0.736867,0.238349,0.256202,0.848748,0.852561,0.458454,0.0453423,0.105839,0.388673,0.246395,0.956937,0.836774,0.398179,0.0583748,0.756402,0.339936,0.641668,0.077387,0.419641,0.816687,0.506695,0.826429,0.829697,0.635537,0.770786,0.335366,0.359749,0.526562,0.467063,0.647236,0.345311,0.164835,0.9277,0.420564,0.652598,0.407653,0.984742,0.450061,0.314641,0.565774,0.59289,0.388768,0.320553,0.0157049,0.930462,0.112956,0.390035,0.348764,0.896408,0.847827,0.675067,0.424042,0.0596098,0.293784,0.00810546,0.629866,0.0277144,0.26124,0.794101,0.959822,0.723461,0.187475,0.945256,0.999077,0.229771,0.526804,0.973731,0.296549,0.0307822,0.437747,0.898464,0.0938694,0.750042,0.692823,0.268981,0.185301,0.699843,0.508352,0.120361,0.926962,0.0889896,0.242051,0.243716,0.442417,0.779789,0.543239,0.827893,0.187936,0.52294,0.6151,0.695165,0.25743,0.21787,0.972361,0.929029,0.61397,0.790709,0.798327,0.695823,0.625105,0.28322,0.924041,0.878623,0.714343,0.628487,0.607106,0.520739,0.151133,0.267106,0.0211096,0.661661,0.470918,0.793773,0.814758,0.0294273,0.835832,0.536553,0.0243233,0.614625,0.82907,0.293211,0.619092,0.792435,0.606811,0.242432,0.934076,0.724765,0.397817,0.81041,0.644819,0.627205,0.0590153,0.667975,0.486563,0.0833675,0.156284,0.365173,0.383273,0.180429,0.285003,0.155252,0.548083,0.0446774,0.15331,0.613165,0.878266,0.557392,0.929646,0.941254,0.250102,0.395483,0.79982,0.79595,0.741197,0.0477304,0.17541,0.363126,0.141154,0.6516,0.446911,0.582982,0.101724,0.346546,0.756665,0.896201,0.758237,0.959182,0.274213,0.480078,0.333209,0.892585,0.853435,0.716631,0.259439,0.944974,0.599021,0.190093,0.872204,0.780403,0.237836,0.84608,0.346631,0.580343,0.62555,0.165997,0.752041,0.665014,0.200533,0.362889,0.835219,0.651402,0.251291,0.848888,0.001041,0.941937,0.249537,0.574513,0.852499,0.593099,0.474987,0.96717,0.37873,0.666977,0.281649,0.383551,0.75839,0.816225,0.572498,0.423149,0.990954,0.351164,0.328873,0.481793,0.304041,0.311018,0.289472,0.226122,0.0740985,0.683562,0.195575,0.100876,0.357557,0.0842378,0.445388,0.266757,0.586218,0.370814,0.871042,0.888006,0.603282,0.845198,0.283543,0.661705,0.928753,0.780381,0.782805,0.827945,0.892567,0.279193,0.0576284,0.19261,0.114555,0.878994,0.299276,0.399691,0.285097,0.479418,0.0598224,0.972928,0.874964,0.0645802,0.356082,0.0701911,0.663233,0.578799,0.0904839,0.730194,0.125684,0.0937796,0.388704,0.240859,0.321088,0.59313,0.0470118,0.260691,0.586021,0.324114,0.330473,0.116937,0.0399686,0.0692436,0.964403,0.730502,0.0953198,0.942719,0.677292,0.420476,0.249923,0.976768,0.446642,0.0504735,0.914503,0.387541,0.477252,0.339034,0.341961,0.119551,0.274626,0.0025872,0.585094,0.641858,0.082342,0.0877503,0.385553,0.477848,0.711913,0.720689,0.541885,0.882552,0.080663,0.846173,0.68497,0.756317,0.663223,0.599922,0.563346,0.653338,0.444134,0.51966,0.277985,0.193308,0.126531,0.785986,0.662605,0.961457,0.419477,0.0690592,0.570613,0.0118582,0.832501,0.530099,0.53673,0.169115,0.952282,0.303352,0.439519,0.800385,0.14957,0.803359,0.38021,0.628609,0.78205,0.224362,0.358012,0.7872,0.45656,0.426921,0.107136,0.0645852,0.29039,0.14333,0.848455,0.320813,0.790739,0.45191,0.327123,0.269763,0.517471,0.648806,0.89006,0.487385,0.695778,0.514743,0.962219,0.867517,0.519495,0.799333,0.400208,0.896227,0.756773,0.183613,0.326959,0.795061,0.266401,0.0230532,0.157972,0.452156,0.429019,0.0236308,0.993332,0.11751,0.987616,0.542387,0.978181,0.0330393,0.413707,0.0388841,0.918784,0.70353,0.786717,0.987174,0.958403,0.317928,0.757041,0.74007,0.351223,0.196739,0.4562,0.207838,0.0838869,0.844484,0.148169,0.895043,0.568622,0.977444,0.967654,0.203282,0.647045,0.605306,0.126218,0.534518,0.993793,0.765366,0.639218,0.818208,0.983882,0.153839,0.414844,0.0749407,0.164324,0.869163,0.108025,0.636624,0.935621,0.933544,0.792936,0.285372,0.827655,0.330048,0.989305,0.280649,0.197136,0.182362,0.777964,0.277626,0.0399203,0.351551,0.444634,0.635473,0.939646,0.319524,0.61022,0.862834,0.320965,0.316898,0.578254,0.101611,0.046541,0.943874,0.530883,0.463814,0.970771,0.624842,0.477186,0.00352138,0.840357,0.30166,0.373883,0.194945,0.676349,0.275131,0.288595,0.158477,0.900833,0.967601,0.81267,0.515135,0.177554,0.967545,0.955144,0.399721,0.53238,0.529567,0.797818,0.662918,0.0165457,0.599925,0.714544,0.0837043,0.23833,0.636157,0.882726,0.00652415,0.989922,0.83467,0.0487264,0.306867,0.875438,0.295363,0.459927,0.527102,0.832986,0.434249,0.131102,0.867209,0.766739,0.762697,0.675606,0.488637,0.69989,0.549515,0.931738,0.206236,0.506949,0.748473,0.668565,0.455463,0.0772744,0.571536,0.4956,0.772836,0.684161,0.471324,0.302518,0.890668,0.992927,0.310673,0.312677,0.965782,0.0405339,0.630441,0.609179,0.359378,0.194422,0.516715,0.380474,0.96894,0.198011,0.410433,0.163222,0.327444,0.474224,0.456421,0.108116,0.241682,0.036292,0.882003,0.412732,0.580374,0.733444,0.904089,0.669899,0.107914,0.972458,0.996604,0.671224,0.47031,0.179227,0.0897815,0.572258,0.400441,0.508613,0.653674,0.116802,0.488999,0.423256,0.906153,0.00340468,0.208328,0.972781,0.0243782,0.70137,0.484266,0.698726,0.406331,0.572544,0.650165,0.206372,0.927109,0.287006,0.15492,0.775952,0.554507,0.385148,0.644554,0.675979,0.535784,0.812968,0.655612,0.125854,0.394856,0.105426,0.935154,0.789521,0.13793,0.883865,0.995365,0.728977,0.782069,0.295794,0.726393,0.645341,0.728364,0.909434,0.398445,0.510979,0.859024,0.511155,0.562402,0.890911,0.846422,0.822256,0.877119,0.415333,0.462112,0.587466,0.824103,0.334821,0.678923,0.21696,0.405008,0.45792,0.239595,0.586322,0.921584,0.44135,0.373154,0.216214,0.437845,0.151641,0.75773,0.245036,0.932189,0.938318,0.340892,0.675751,0.611356,0.513224,0.203261,0.120452,0.219449,0.781618,0.359902,0.41516,0.0486719,0.0406987,0.674195,0.729388,0.109135,0.658494,0.646768,0.597308,0.542008,0.234977,0.909397,0.623167,0.524774,0.398715,0.481601,0.0629813,0.690572,0.241651,0.460614,0.578883,0.0443793,0.906021,0.975426,0.105718,0.776655,0.710923,0.338992,0.434692,0.501001,0.337364,0.218561,0.0434324,0.278462,0.233518,0.980965,0.0985582,0.48961,0.21658,0.955339,0.832904,0.646873,0.698228,0.654008,0.195018,0.242997,0.17988,0.142709,0.64171,0.646421,0.448245,0.959443,0.589404,0.710849,0.213711,0.513425,0.767961,0.975269,0.751154,0.458866,0.726245,0.972541,0.552933,0.22031,0.473737,0.423164,0.981858,0.518066,0.340289,0.444885,0.893908,0.00970995,0.566376,0.263956,0.848631,0.50634,0.0679373,0.43823,0.526679,0.854159,0.0320248,0.0854936,0.400073,0.721804,0.854118,0.0354005,0.818901,0.611357,0.339794,0.777529,0.561965,0.530001,0.233643,0.833592,0.28014,0.368923,0.831441,0.997503,0.911046,0.194005,0.848144,0.154982,0.843849,0.905396,0.564392,0.127151,0.668951,0.586749,0.223759,0.934497,0.0800061,0.18528,0.266129,0.406404,0.693966,0.633072,0.948119,0.701187,0.00903469,0.386425,0.608562,0.818344,0.747746,0.838979,0.169636,0.804542,0.565304,0.362413,0.39573,0.544678,0.117807,0.579876,0.657095,0.121264,0.0663939,0.426087,0.400336,0.352018,0.095828,0.811896,0.571398,0.452646,0.228929,0.0726361,0.150555,0.672065,0.243993,0.828962,0.865588,0.762105,0.368683,0.695456,0.301809,0.996415,0.42303,0.23762,0.241374,0.360261,0.37496,0.497891,0.929071,0.560935,0.556415,0.721736,0.442088,0.120262,0.518371,0.868884,0.650122,0.797708,0.169575,0.482955,|0.323835,0.662926,0.786546,0.0445424,0.821367,0.275793,0.355197,0.985491,0.405517,0.180947,0.945775,0.142256,0.921737,0.850964,0.0494652,0.41479,0.396875,0.610582,0.202142,0.896743,0.695317,0.413976,0.808644,0.865472,0.718025,0.618029,0.959891,0.45721,0.162834,0.899877,0.844286,0.475952,0.270071,0.533923,0.719928,0.178218,0.467631,0.774063,0.993695,0.134603,0.331612,0.574867,0.118216,0.544954,0.00613242,0.523543,0.687731,0.439167,0.609936,0.752269,0.573586,0.252776,0.846617,0.363804,0.37957,0.262586,0.221404,0.707905,0.997173,0.0662578,0.26764,0.507982,0.482414,0.916962,0.859402,0.507888,0.484728,0.000485122,0.772336,0.122497,0.124893,0.691078,0.831557,0.320892,0.996184,0.192172,0.790192,0.75229,0.000296772,0.695632,0.590879,0.436527,0.762108,0.708816,0.971475,0.254205,0.629865,0.404358,0.221138,0.779398,0.161356,0.335007,0.327453,0.923432,0.335811,0.935859,0.373269,0.0884268,0.568276,0.1136,0.718778,0.676794,0.241145,0.571247,0.694002,0.121279,0.75931,0.55611,0.879168,0.549108,0.507575,0.915735,0.587153,0.263747,0.454748,0.0672457,0.996251,0.335002,0.601807,0.166661,0.988369,0.140881,0.372406,0.155532,0.424798,0.90255,0.62702,0.366044,0.77988,0.919607,0.418208,0.141835,0.7026,0.0604519,0.354562,0.321453,0.476007,0.0665385,0.739409,0.626444,0.0942218,0.919138,0.324435,0.434554,0.938664,0.573666,0.512563,0.321626,0.924668,0.897112,0.183278,0.889755,0.207152,0.954112,0.527256,0.360955,0.215822,0.265761,0.147877,0.270568,0.767058,0.220368,0.0167397,0.801188,0.564976,0.952578,0.356462,0.396396,0.274204,0.280738,0.151692,0.253095,0.4516,0.67365,0.42079,0.949676,0.244783,0.262518,0.126495,0.872956,0.164081,0.765128,0.465863,0.0668978,0.00218999,0.348839,0.109663,0.010807,0.608648,0.0924692,0.78828,0.875733,0.43591,0.696858,0.97131,0.312002,0.722849,0.728321,0.712031,0.100114,0.0142635,0.169426,0.462642,0.187619,0.983428,0.404722,0.788026,0.401962,0.622281,0.0639928,0.158995,0.407331,0.262228,0.331136,0.545891,0.734369,0.0238181,0.547857,0.842459,0.119825,0.0244029,0.362987,0.73464,0.587269,0.340187,0.508756,0.39063,0.417643,0.720809,0.254684,0.596691,0.227166,0.43245,0.566821,0.346342,0.346863,0.649539,0.0751027,0.375922,0.402169,0.584198,0.929281,0.3871,0.622692,0.731484,0.24255,0.221034,0.838209,0.0909542,0.834576,0.15391,0.674899,0.565495,0.0332546,0.0738224,0.214478,0.663947,0.469095,0.0838566,0.549115,0.382545,0.993383,0.201694,0.448705,0.111956,0.899169,0.71282,0.175253,0.0710013,0.636564,0.613542,0.901328,0.33927,0.230036,0.20771,0.713969,0.533385,0.211738,0.491512,0.598513,0.639336,0.23662,0.336332,0.754388,0.412507,0.726225,0.124378,0.919562,0.368274,0.26025,0.480126,0.8599,0.936873,0.518457,0.418886,0.345983,0.0623984,0.57703,0.258056,0.763461,0.308682,0.339208,0.249964,0.159832,0.78943,0.503836,0.789547,0.612426,0.0364838,0.472183,0.44706,0.837325,0.383661,0.0701974,0.944976,0.790905,0.446779,0.2973,0.0130337,0.39556,0.173951,0.829736,0.778784,0.983331,0.426439,0.719022,0.428308,0.774927,0.144596,0.104889,0.756456,0.228424,0.544404,0.227269,0.734765,0.0361778,0.599422,0.579944,0.714602,0.348378,0.27179,0.27962,0.529123,0.415614,0.945652,0.45666,0.838052,0.644497,0.771934,0.545563,0.683695,0.105899,0.881117,0.547695,0.416522,0.845182,0.385918,0.754242,0.495246,0.174381,0.828852,0.779906,0.852175,0.560895,0.230664,0.614174,0.477902,0.249612,0.00679511,0.403096,0.395206,0.144309,0.0903798,0.603753,0.406414,0.255774,0.469159,0.600429,0.614767,0.758917,0.668806,0.417108,0.944595,0.404853,0.510158,0.890177,0.420081,0.259609,0.802083,0.675896,0.0947216,0.728651,0.0872234,0.359199,0.142599,0.232361,0.314008,0.387712,0.160728,0.657629,0.706712,0.488348,0.257559,0.171438,0.75654,0.778411,0.464705,0.334638,0.00308526,0.604259,0.813038,0.734799,0.507297,0.090099,0.182351,0.721801,0.692206,0.217386,0.44746,0.66358,0.0679119,0.623027,0.0750655,0.634739,0.0866779,0.0936615,0.878896,0.699154,0.521573,0.908694,0.908928,0.990423,0.00524122,0.211671,0.883058,0.898633,0.967197,0.482405,0.650884,0.0147094,0.561143,0.248006,0.422861,0.592332,0.386915,0.260547,0.329853,0.0412241,0.566277,0.0152776,0.094494,0.591693,0.195406,0.00431067,0.783703,0.380722,0.169909,0.277773,0.115408,0.511001,0.160583,0.0268674,0.134228,0.541507,0.217981,0.706637,0.568049,0.90479,0.2773,0.688647,0.854912,0.995478,0.618077,0.712829,0.726154,0.498075,0.593744,0.538224,0.625628,0.035887,0.52255,0.995585,0.100793,0.196202,0.450039,0.667917,0.0245421,0.728128,0.375908,0.464289,0.70001,0.0926576,0.349824,0.720078,0.633054,0.527773,0.276186,0.480266,0.722019,0.496481,0.32299,0.447826,0.244605,0.429993,0.140473,0.811855,0.74117,0.238477,0.883335,0.0439502,0.319919,0.420044,0.827634,0.379281,0.157377,0.57663,0.787886,0.433943,0.585542,0.543701,0.425642,0.0554851,0.0911616,0.794592,0.474482,0.949714,0.806808,0.389657,0.582884,0.980587,0.534909,0.891911,0.362899,0.254901,0.0381153,0.279814,0.501884,0.944943,0.418706,0.272784,0.17973,0.943188,0.246659,0.16296,0.29164,0.886713,0.302554,0.0519194,0.172441,0.969243,0.156727,0.381115,0.513488,0.825537,0.594231,0.783101,0.0893263,0.954705,0.818304,0.895503,0.757594,0.917514,0.394018,0.426469,0.798868,0.270606,0.820713,0.219126,0.032748,0.980669,0.298114,0.361664,0.130351,0.597968,0.776272,0.597885,0.712535,0.744851,0.138686,0.273466,0.162283,0.412139,0.668301,0.699985,0.170394,0.0796422,0.408168,0.692866,0.92625,0.478932,0.199516,0.40706,0.597485,0.972877,0.392242,0.989699,0.855401,0.704287,0.921907,0.369115,0.886546,0.801311,0.35491,0.268478,0.609435,0.336243,0.701488,0.613969,0.871594,0.91859,0.354658,0.325084,0.609517,0.332785,0.663974,0.370109,0.559322,0.914849,0.197082,0.214124,0.798838,0.286164,0.201874,0.304613,0.769185,0.120775,0.281381,0.612559,0.104864,0.592561,0.422339,0.482243,0.106256,0.0227956,0.268694,0.62885,0.363063,0.569376,0.453159,0.615008,0.622423,0.10261,0.275866,0.584962,0.0373851,0.406264,0.386482,0.982502,0.314304,0.761681,0.201354,0.857121,0.549372,0.90522,0.175673,0.431881,0.473038,0.756782,0.398495,0.959509,0.725191,0.745422,0.928546,0.000239491,0.62102,0.815321,0.969217,0.735678,0.239487,0.332659,0.766819,0.970822,0.0391052,0.270688,0.713182,0.964282,0.739004,0.872021,0.880402,0.388066,0.0766478,0.496615,0.472883,0.418124,0.523192,0.911737,0.355885,0.379514,0.617656,0.16126,0.386258,0.139587,0.900191,0.126105,0.10707,0.0286097,0.640346,0.995252,0.663434,0.939957,0.989353,0.835798,0.237328,0.759798,0.34038,0.852896,0.458997,0.953925,0.0987082,0.715376,0.410905,0.554509,0.808738,0.99704,0.754752,0.951669,0.120429,0.541447,0.224142,0.381112,0.408007,0.11428,0.778058,0.603729,0.759271,0.244438,0.472006,0.105013,0.614244,0.253706,0.854595,0.826514,0.0929698,0.0575768,0.275407,0.313323,0.784162,0.586394,0.848072,0.89434,0.010857,0.0413696,0.62662,0.158511,0.983153,0.173015,0.409362,0.0481503,0.898823,0.438988,0.585881,0.14138,0.890087,0.849346,0.7485,0.375098,0.938584,0.0191565,0.977791,0.61541,0.103618,0.809213,0.408077,0.591298,0.352851,0.78467,0.553593,0.810921,0.281193,0.238777,0.253742,0.180901,0.900697,0.507795,0.35174,0.0893808,0.235974,0.824294,0.841279,0.566578,0.895063,0.778608,0.764647,0.331026,0.184492,0.938867,0.258923,0.697641,0.171688,0.173164,0.29055,0.806022,0.85626,0.245921,0.166004,0.538849,0.608729,0.928488,0.257348,0.626008,0.665726,0.0909889,0.377905,0.560074,0.798455,0.181074,0.0514596,0.44727,0.755049,0.727216,0.864683,0.520544,0.104954,0.0495102,0.838646,0.615408,0.878362,0.460621,0.505069,0.807437,0.841831,0.774576,0.709911,0.407482,0.836326,0.639333,0.10777,0.889523,0.58404,0.919444,0.425364,0.636565,0.499161,0.216549,0.53077,0.4903,0.825013,0.345852,0.0586426,0.950165,0.0496553,0.298636,0.779308,0.645091,0.645974,0.562056,0.859483,0.991477,0.855921,0.57495,0.612966,0.350287,0.684171,0.133061,0.985717,0.215196,0.116259,0.138643,0.206257,0.973223,0.389725,0.180541,0.470391,0.825052,0.829017,0.477139,0.601451,0.00378549,0.655227,0.377056,0.0756783,0.852929,0.847732,0.751888,0.606132,0.0302361,0.0368007,0.291608,0.637813,0.111899,0.515055,0.644881,0.327862,0.707993,0.305677,0.70892,0.429666,0.665991,0.868958,0.655611,0.239716,0.218916,0.626888,0.659944,0.319608,0.155582,0.985775,0.739792,0.52193,0.488719,0.58478,0.901008,0.0572566,0.937716,0.944628,0.226636,0.229958,0.500877,0.966798,0.673517,0.523854,0.462492,0.808797,0.0120238,0.129676,0.768222,0.908882,0.805187,0.383886,0.254861,0.293712,0.0540512,0.670034,0.847777,0.35192,0.110828,0.986525,0.324944,0.778172,0.451267,0.889953,0.0150026,0.784782,0.822452,0.531928,0.0215949,0.54869,0.352018,0.979884,0.324479,0.12126,0.296061,0.916882,0.984423,0.787197,0.668282,0.0966315,0.950287,0.0412126,0.403552,0.657718,0.0576212,0.319142,0.921128,0.0373233,0.164249,0.465301,0.214452,0.299067,0.577995,0.0656445,0.929163,0.556583,0.267454,0.153992,0.852179,0.896186,0.652162,0.491061,0.570379,0.771094,0.557872,0.381372,0.681869,0.108954,0.459068,0.0839882,0.660916,0.111895,0.762382,0.393754,0.649457,0.295646,0.328298,0.686056,0.304272,0.586721,0.164558,0.646598,0.300441,0.0316473,0.175611,0.902377,0.0672665,0.205003,0.496216,0.402425,0.74921,0.595821,0.0525788,|0.415666,0.876045,0.527061,0.194763,0.20629,0.847045,0.836013,0.943069,0.440417,0.255013,0.0677797,0.704401,0.140586,0.0914172,0.120876,0.969694,0.266999,0.0982639,0.351675,0.806275,0.874767,0.050465,0.921276,0.352004,0.763773,0.10835,0.30504,0.0459358,0.370075,0.631465,0.166365,0.44881,0.36737,0.176416,0.375777,0.386894,0.753365,0.783538,0.348422,0.418062,0.382972,0.688295,0.779509,0.536869,0.220726,0.920805,0.351629,0.431755,0.260386,0.81267,0.403443,0.3305,0.36784,0.0862159,0.887991,0.505513,0.981829,0.491441,0.384867,0.315186,0.983949,0.544454,0.913687,0.5892,0.208027,0.719085,0.049248,0.268472,0.286972,0.539043,0.531814,0.398132,0.601346,0.420653,0.680365,0.90634,0.510765,0.43852,0.492752,0.943329,0.112129,0.842174,0.817158,0.265478,0.00561345,0.367701,0.0210875,0.748768,0.357738,0.833264,0.622188,0.692006,0.834959,0.901595,0.451839,0.151722,0.741339,0.112684,0.37896,0.67299,0.867683,0.557882,0.0467052,0.0791392,0.711398,0.120231,0.44558,0.419065,0.96879,0.263711,0.383176,0.0433105,0.24131,0.798436,0.856611,0.731714,0.895256,0.0513428,0.427419,0.534581,0.958517,0.757164,0.461908,0.855175,0.347773,0.326369,0.798877,0.107941,0.000735581,0.650298,0.101795,0.918768,0.0175244,0.38029,0.403293,0.0985398,0.472589,0.110971,0.683134,0.579316,0.992749,0.815484,0.70728,0.973987,0.375885,0.72471,0.895987,0.570474,0.740901,0.259598,0.954731,0.749435,0.344957,0.611476,0.0786686,0.503586,0.528097,0.896325,0.880375,0.18906,0.455839,0.241062,0.646089,0.540714,0.853173,0.826488,0.0632007,0.516903,0.435892,0.901157,0.312198,0.35497,0.639938,0.146491,0.139731,0.643097,0.152628,0.365687,0.078694,0.586292,0.9755,0.974289,0.665183,0.368624,0.755611,0.739136,0.483205,0.846044,0.180379,0.0153357,0.670991,0.381155,0.97898,0.132337,0.459978,0.0198108,0.571681,0.458646,0.922011,0.126993,0.524343,0.797064,0.51607,0.424357,0.755506,0.556113,0.697478,0.218555,0.705895,0.762385,0.0808656,0.368895,0.935212,0.857291,0.756256,0.278531,0.0749032,0.885727,0.431083,0.528035,0.964613,0.523958,0.309265,0.73451,0.742937,0.747524,0.151423,0.145118,0.806764,0.842165,0.481483,0.515939,0.19979,0.450643,0.539848,0.929051,0.704186,0.133119,0.256342,0.725123,0.752358,0.69753,0.187388,0.628261,0.319457,0.135676,0.953189,0.531451,0.579511,0.19718,0.449527,0.351518,0.100283,0.0996397,0.00520843,0.518934,0.388044,0.148356,0.31828,0.468519,0.990932,0.273545,0.328821,0.632485,0.75935,0.89414,0.0517758,0.0833027,0.658294,0.220228,0.0667487,0.464813,0.618176,0.623873,0.0356876,0.750934,0.260182,0.886248,0.941899,0.334984,0.285192,0.901021,0.235094,0.206273,0.377495,0.95238,0.532419,0.504053,0.65317,0.294841,0.595295,0.893631,0.462811,0.789492,0.32812,0.41096,0.307318,0.407067,0.393031,0.453885,0.923517,0.189521,0.855755,0.639797,0.381666,0.699032,0.548688,0.0368632,0.880258,0.715843,0.0193651,0.57109,0.203044,0.527956,0.0465392,0.868978,0.00841606,0.611277,0.75421,0.611917,0.901695,0.488081,0.636883,0.367471,0.87413,0.99612,0.431326,0.933756,0.179103,0.611212,0.51561,0.764869,0.177345,0.409419,0.372544,0.783029,0.650142,0.538878,0.34894,0.468573,0.265129,0.857641,0.452238,0.0119461,0.429064,0.498152,0.542579,0.126445,0.30063,0.32265,0.681274,0.149237,0.34535,0.562367,0.666826,0.0985804,0.260172,0.287156,0.129089,0.517444,0.285671,0.121086,0.471203,0.265877,0.63509,0.66458,0.260445,0.764162,0.70797,0.488628,0.322396,0.577528,0.386832,0.355287,0.181961,0.94565,0.259307,0.57452,0.0425777,0.00831383,0.876874,0.832447,0.718116,0.847651,0.359832,0.719983,0.484343,0.131759,0.441943,0.842391,0.300605,0.563356,0.890838,0.467308,0.0750693,0.17814,0.758012,0.755492,0.881925,0.845331,0.858319,0.465085,0.436282,0.161228,0.304013,0.976023,0.0311568,0.422014,0.812767,0.388197,0.552797,0.890645,0.812602,0.620736,0.560177,0.921824,0.610481,0.789358,0.885721,0.206193,0.485919,0.968041,0.424638,0.814229,0.200742,0.664694,0.439145,0.998756,0.70288,0.0500814,0.528348,0.00785464,0.58911,0.66667,0.254179,0.904206,0.866735,0.409858,0.743511,0.143707,0.239097,0.0245818,0.933403,0.126244,0.222063,0.434742,0.0981754,0.563796,0.230473,0.435954,0.961386,0.939698,0.139894,0.721772,0.819153,0.811037,0.401763,0.497651,0.221416,0.609336,0.942852,0.827372,0.0616741,0.327455,0.936938,0.480449,0.0472445,0.267022,0.335319,0.683037,0.258158,0.118633,0.0752434,0.135801,0.405455,0.729098,0.657241,0.457866,0.447448,0.739242,0.60029,0.641546,0.301289,0.234902,0.175333,0.87734,0.268132,0.273465,0.912026,0.366621,0.0649147,0.624803,0.795195,0.675003,0.920126,0.314242,0.864948,0.647404,0.256186,0.322607,0.938797,0.172162,0.182873,0.843051,0.00871885,0.236797,0.047217,0.859754,0.155139,0.108279,0.546765,0.091188,0.855272,0.715869,0.164459,0.801972,0.307341,0.323468,0.631759,0.994493,0.558733,0.473724,0.738441,0.707136,0.78763,0.21921,0.57255,0.93623,0.807697,0.361486,0.261005,0.0889999,0.972977,0.575252,0.045843,0.847003,0.487831,0.505151,0.116141,0.901096,0.151786,0.333905,0.312899,0.0739893,0.278629,0.896451,0.202593,0.960989,0.918254,0.279128,0.705059,0.474944,0.173798,0.809618,0.975197,0.333807,0.991784,0.393762,0.352535,0.580307,0.49549,0.354476,0.16123,0.411232,0.59237,0.64929,0.24896,0.667798,0.796692,0.419744,0.0513086,0.25106,0.280055,0.322347,0.286422,0.404744,0.447656,0.55338,0.736582,0.755587,0.0851481,0.629898,0.438758,0.628405,0.57358,0.45274,0.266032,0.619401,0.0887669,0.271313,0.788974,0.694242,0.798364,0.332181,0.702504,0.149105,0.211652,0.0550789,0.138891,0.896277,0.26337,0.21243,0.706748,0.309984,0.31545,0.89124,0.185384,0.699186,0.960208,0.0246711,0.301518,0.0355531,0.755669,0.792743,0.384755,0.426777,0.324248,0.965372,0.841274,0.0771367,0.694949,0.944426,0.54251,0.493189,0.938572,0.53911,0.92712,0.737037,0.889283,0.656502,0.635725,0.48439,0.0834417,0.267143,0.257736,0.361704,0.536975,0.382492,0.510209,0.28234,0.0411268,0.990638,0.0674383,0.0792762,0.355291,0.231931,0.962899,0.400347,0.0455772,0.937763,0.954864,0.911969,0.424614,0.896103,0.161697,0.397494,0.667817,0.842492,0.888795,0.858756,0.55449,0.510127,0.743585,0.186688,0.58065,0.66265,0.78429,0.904706,0.743767,0.0278124,0.304433,0.0671732,0.335691,0.779625,0.458476,0.368178,0.114302,0.640136,0.880148,0.0842414,0.930222,0.286561,0.708231,0.603513,0.628981,0.611889,0.688588,0.448893,0.368666,0.989127,0.448732,0.0119749,0.317786,0.190124,0.999885,0.766995,0.11098,0.756104,0.0861831,0.437734,0.704196,0.650173,0.809802,0.448586,0.741693,0.508621,0.661718,0.4004,0.551631,0.877396,0.281058,0.930092,0.613769,0.575824,0.90911,0.919667,0.444418,0.31735,0.526021,0.410234,0.643382,0.326381,0.10631,0.263405,0.778209,0.662262,0.87348,0.185031,0.244092,0.302629,0.99503,0.255883,0.1945,0.247347,0.646335,0.529446,0.747745,0.253478,0.749697,0.490204,0.260689,0.335296,0.81398,0.900339,0.42672,0.850724,0.38727,0.83909,0.21964,0.412598,0.792337,0.839832,0.0315498,0.919074,0.387411,0.167078,0.55843,0.186173,0.411283,0.014038,0.602638,0.528338,0.0300888,0.934379,0.932968,0.653291,0.986573,0.461069,0.290222,0.775487,0.884479,0.0137926,0.841745,0.509358,0.926461,0.808669,0.311123,0.122576,0.919772,0.391986,0.315342,0.0872096,0.874227,0.849183,0.232329,0.606638,0.714418,0.952661,0.29469,0.334551,0.157755,0.502428,0.096018,0.0394613,0.391562,0.429875,0.142377,0.0495815,0.388724,0.832327,0.136512,0.0922154,0.877738,0.596254,0.844761,0.834011,0.637058,0.382244,0.443181,0.575468,0.737189,0.05316,0.624223,0.577695,0.715969,0.19832,0.489964,0.243801,0.341238,0.429786,0.493904,0.0419259,0.639614,0.522723,0.882183,0.32844,0.357656,0.481153,0.636211,0.120047,0.784281,0.0976266,0.721607,0.977635,0.21192,0.398511,0.260075,0.761575,0.776975,0.348323,0.560887,0.823875,0.157096,0.950523,0.370876,0.578252,0.855421,0.0802807,0.209,0.583308,0.0586346,0.233716,0.25146,0.562022,0.832754,0.0962408,0.0515087,0.190194,0.894953,0.568745,0.0945479,0.479129,0.505853,0.202374,0.222493,0.433248,0.291684,0.81285,0.75902,0.400624,0.637844,0.648292,0.0256524,0.460998,0.0862976,0.989345,0.0212066,0.00704962,0.606147,0.0374938,0.155415,0.290999,0.46572,0.4923,0.506014,0.017353,0.562294,0.778468,0.301387,0.913072,0.84335,0.567466,0.505964,0.441031,0.603164,0.0293882,0.805068,0.839855,0.526705,0.202385,0.0837771,0.17253,0.98705,0.131051,0.525028,0.391204,0.848606,0.59272,0.901008,0.681965,0.720461,0.333744,0.81394,0.849939,0.428329,0.00121599,0.296404,0.119113,0.228244,0.0956534,0.0482608,0.405821,0.844801,0.0132099,0.0871162,0.407039,0.402331,0.80105,0.899559,0.968493,0.886897,0.544924,0.95162,0.671177,0.850229,0.222885,0.20479,0.997383,0.812286,0.479411,0.315965,0.878662,0.611626,0.545319,0.810418,0.746338,0.946548,0.893289,0.208741,0.79112,0.219799,0.365178,0.692173,0.859868,0.182888,0.571194,0.0563061,0.574155,0.383339,0.91464,0.591665,0.104122,0.216815,0.967697,0.258661,0.903064,0.571375,0.309075,0.990797,0.320911,0.803293,0.838781,0.784072,0.209302,0.523416,0.51335,0.56906,0.684359,0.596432,0.527567,0.903348,0.339018,0.681948,0.367588,0.45509,0.602252,0.865416,0.419384,0.580246,0.78388,0.813903,0.899931,0.381055,0.632647,0.161238,0.490618,0.509849,0.624788,0.798041,0.161428,|0.440845,0.0161073,0.240709,0.542399,0.596588,0.717144,0.31273,0.299519,0.47859,0.500355,0.912758,0.493042,0.980591,0.349929,0.213326,0.0453416,0.51493,0.216124,0.172211,0.642034,0.392449,0.089883,0.573633,0.605656,0.305345,0.20549,0.598634,0.917668,0.184575,0.560004,0.297987,0.195981,0.609696,0.685388,0.721742,0.583106,0.37122,0.921509,0.73931,0.436918,0.383525,0.465564,0.0753133,0.980253,0.757779,0.574125,0.683868,0.411819,0.792781,0.894362,0.991376,0.20515,0.00449049,0.929894,0.661664,0.375614,0.913383,0.0129179,0.675442,0.962193,0.330588,0.154002,0.510228,0.632687,0.704898,0.0901316,0.160628,0.452522,0.12812,0.939241,0.482027,0.636473,0.557147,0.682883,0.821096,0.319359,0.294479,0.144468,0.350628,0.744033,0.739928,0.191014,0.130415,0.221826,0.96053,0.989524,0.863191,0.844675,0.822175,0.349419,0.410724,0.269412,0.761497,0.893091,0.14353,0.636601,0.290033,0.742208,0.459206,0.687374,0.87883,0.0259655,0.686291,0.393755,0.514223,0.244656,0.899926,0.310024,0.520553,0.457441,0.755347,0.705054,0.654815,0.814886,0.337802,0.346016,0.829847,0.275726,0.79134,0.0901011,0.078658,0.65444,0.820095,0.926722,0.795222,0.636109,0.594572,0.337375,0.0814227,0.658216,0.176053,0.295988,0.531418,0.667957,0.590195,0.500864,0.689103,0.680458,0.822883,0.13205,0.98137,0.291944,0.736663,0.743348,0.391659,0.0352408,0.253305,0.184109,0.495382,0.642199,0.456501,0.71685,0.653559,0.611958,0.380013,0.736933,0.569541,0.454762,0.131256,0.497829,0.279145,0.416292,0.995903,0.279648,0.550364,0.309359,0.469339,0.499164,0.797792,0.384466,0.622865,0.216027,0.138755,0.460909,0.527778,0.438458,0.477562,0.566455,0.840597,0.286731,0.13667,0.525697,0.106065,0.120555,0.457775,0.266884,0.128874,0.538022,0.461477,0.838227,0.38424,0.564955,0.565022,0.33368,0.739802,0.0116432,0.674264,0.199228,0.260611,0.640136,0.713037,0.452279,0.943312,0.74972,0.306343,0.963038,0.392758,0.509175,0.409542,0.803295,0.00884068,0.0703155,0.39487,0.749236,0.117249,0.632787,0.964155,0.269766,0.532108,0.778626,0.645346,0.458935,0.824736,0.0386188,0.679249,0.101322,0.396101,0.774109,0.893598,0.0916626,0.730675,0.91161,0.230518,0.0946118,0.679524,0.0166769,0.517246,0.652618,0.208584,0.792955,0.300059,0.314518,0.28561,0.086861,0.00682014,0.170857,0.236542,0.383983,0.186184,0.572066,0.196245,0.767822,0.903695,0.157979,0.591762,0.460883,0.0645922,0.76374,0.941331,0.764797,0.866794,0.0426352,0.072136,0.618021,0.345052,0.411252,0.224763,0.291561,0.849459,0.695082,0.489761,0.39139,0.810548,0.651539,0.547754,0.889375,0.218052,0.563548,0.833994,0.996852,0.784582,0.416681,0.517267,0.519263,0.71285,0.814445,0.776692,0.640536,0.595191,0.87169,0.752482,0.695291,0.610203,0.201831,0.342334,0.17914,0.950678,0.187025,0.0263083,0.684267,0.768533,0.178426,0.635533,0.246519,0.737087,0.0383113,0.665534,0.919722,0.871628,0.297769,0.485384,0.703715,0.965712,0.548107,0.150785,0.61616,0.985502,0.120324,0.0359084,0.443507,0.800155,0.134537,0.510808,0.246475,0.46003,0.307667,0.584513,0.721834,0.25747,0.0375386,0.145152,0.570278,0.515266,0.897024,0.384712,0.689475,0.931072,0.481469,0.973989,0.378695,0.548306,0.511717,0.177168,0.270742,0.894501,0.819869,0.551525,0.480096,0.560063,0.702399,0.461392,0.338518,0.0143383,0.700696,0.649653,0.884405,0.694482,0.742891,0.401457,0.305448,0.918039,0.421184,0.558289,0.0220497,0.55793,0.725181,0.854594,0.46486,0.446131,0.840555,0.417437,0.376022,0.149834,0.180546,0.793457,0.538742,0.483435,0.304776,0.472982,0.285149,0.499866,0.53968,0.323248,0.939279,0.0380377,0.185057,0.953599,0.392941,0.0915072,0.206999,0.00783741,0.225426,0.224845,0.926537,0.527477,0.77704,0.192932,0.973259,0.328747,0.906764,0.433378,0.286829,0.0926838,0.28384,0.345506,0.871649,0.702962,0.429098,0.461536,0.72214,0.0586092,0.751438,0.451698,0.261715,0.420727,0.847205,0.6932,0.750043,0.602079,0.214017,0.709092,0.629315,0.097723,0.089012,0.653531,0.0319273,0.442468,0.305291,0.328437,0.70845,0.368649,0.0449314,0.896431,0.15326,0.338426,0.521132,0.0570847,0.999656,0.184891,0.921918,0.0027582,0.752655,0.0977988,0.839989,0.934604,0.843552,0.93948,0.000222921,0.610372,0.896318,0.740419,0.95006,0.778766,0.851394,0.417895,0.225097,0.868604,0.811546,0.159963,0.392618,0.79552,0.536792,0.94488,0.983413,0.893106,0.813729,0.701249,0.486435,0.65703,0.150622,0.789944,0.00967926,0.263072,0.444665,0.657784,0.141583,0.619908,0.639437,0.0173658,0.311655,0.74078,0.21911,0.151346,0.339454,0.860034,0.687135,0.9068,0.871495,0.253375,0.653329,0.29675,0.777677,0.597793,0.51051,0.492263,0.568224,0.841249,0.293343,0.284342,0.793274,0.742662,0.0284232,0.173128,0.890396,0.167651,0.823026,0.349197,0.96329,0.0332707,0.406962,0.500375,0.236043,0.534877,0.837611,0.631372,0.605972,0.77035,0.731489,0.168437,0.11075,0.185741,0.398188,0.333506,0.514091,0.499479,0.119841,0.692635,0.997066,0.03782,0.277948,0.229389,0.770137,0.386461,0.460675,0.780182,0.963902,0.49887,0.325256,0.600553,0.18959,0.327175,0.786467,0.995115,0.505645,0.0281489,0.811388,0.495785,0.0221857,0.360172,0.217385,0.589144,0.00181109,0.866961,0.621956,0.550318,0.281169,0.654241,0.566895,0.118048,0.547812,0.136779,0.964009,0.152891,0.673634,0.967823,0.60426,0.767458,0.879728,0.404214,0.828583,0.347233,0.452772,0.940856,0.698282,0.23647,0.814824,0.800727,0.852207,0.263446,0.997243,0.36294,0.263112,0.445404,0.905509,0.187753,0.678393,0.0138402,0.808498,0.146925,0.506731,0.939677,0.820554,0.399676,0.60122,0.212668,0.532841,0.00842166,0.204942,0.782859,0.678761,0.411847,0.780697,0.872096,0.122662,0.072409,0.513961,0.870691,0.640733,0.781826,0.951802,0.425937,0.19911,0.0521971,0.757473,0.120406,0.660203,0.548557,0.509364,0.818854,0.254362,0.0505683,0.220533,0.909924,0.504396,0.565693,0.150773,0.578385,0.910585,0.274934,0.380659,0.953624,0.479919,0.247724,0.956576,0.841027,0.71971,0.606325,0.0680643,0.259715,0.413794,0.558,0.240464,0.144093,0.184784,0.237468,0.430786,0.44576,0.841248,0.154436,0.527803,0.75419,0.442007,0.412444,0.591106,0.509818,0.769549,0.337892,0.724681,0.27345,0.397311,0.883859,0.378118,0.108847,0.654383,0.2303,0.305806,0.370913,0.63603,0.852368,0.422656,0.336443,0.150006,0.0724594,0.988849,0.725638,0.481549,0.458689,0.929372,0.5429,0.613627,0.591347,0.0493209,0.38019,0.43718,0.72214,0.434379,0.266321,0.513303,0.950699,0.10002,0.638419,0.330067,0.130411,0.0767225,0.366306,0.490102,0.558991,0.561185,0.0105497,0.480615,0.860227,0.954244,0.110791,0.0734487,0.764372,0.482622,0.830992,0.201189,0.285344,0.978761,0.26541,0.900022,0.729377,0.12367,0.094536,0.954763,0.517144,0.895046,0.274327,0.727528,0.519745,0.237149,0.5123,0.452581,0.450241,0.135762,0.904021,0.849564,0.799957,0.766725,0.182813,0.826243,0.719622,0.00114167,0.706217,0.962692,0.648572,0.838307,0.939765,0.465698,0.846979,0.720837,0.0807677,0.534247,0.691869,0.766527,0.495921,0.728044,0.317493,0.47345,0.328534,0.579726,0.254389,0.144856,0.848942,0.478689,0.70497,0.668866,0.621978,0.695732,0.956583,0.123315,0.318908,0.200357,0.826589,0.971095,0.402428,0.127694,0.498934,0.427866,0.396948,0.878485,0.099058,0.806378,0.865578,0.0128953,0.16719,0.844802,0.14209,0.411828,0.932883,0.271814,0.053314,0.550613,0.0780985,0.352577,0.327268,0.685328,0.0148296,0.453817,0.358035,0.435139,0.564713,0.762848,0.886711,0.310256,0.416292,0.496605,0.21464,0.383504,0.816172,0.94201,0.973248,0.244243,0.236318,0.596162,0.151716,0.971884,0.00166255,0.876504,0.562628,0.355797,0.99013,0.229094,0.227191,0.0225768,0.51187,0.362236,0.397821,0.762905,0.129363,0.164073,0.62774,0.739111,0.0491814,0.2795,0.313267,0.931516,0.810162,0.0334954,0.108753,0.030921,0.783658,0.157104,0.250205,0.962529,0.355399,0.388193,0.117391,0.461113,0.26039,0.544809,0.0608815,0.16352,0.866624,0.9918,0.526718,0.999615,0.990158,0.926914,0.0613831,0.923413,0.213017,0.076366,0.895764,0.261826,0.250692,0.180595,0.769364,0.0320173,0.441528,0.155741,0.15956,0.383314,0.420307,0.0532373,0.465474,0.392713,0.227495,0.828103,0.211395,0.6692,0.396145,0.328899,0.8793,0.902508,0.973861,0.42812,0.590773,0.928131,0.320916,0.0218689,0.449203,0.0439762,0.845408,0.26585,0.31086,0.988792,0.329547,0.338513,0.99522,0.626442,0.741054,0.280891,0.678791,0.124655,0.35486,0.469777,0.0848835,0.595302,0.599683,0.729271,0.907936,0.988392,0.833818,0.815232,0.893829,0.733371,0.314256,0.274853,0.25311,0.188553,0.916428,0.577532,0.535957,0.554885,0.193531,0.599965,0.16875,0.547806,0.904218,0.897855,0.222464,0.967589,0.978558,0.326891,0.688445,0.0287934,0.0774029,0.663993,0.55429,0.067771,0.749191,0.151606,0.207794,0.987923,0.859828,0.486945,0.198342,0.767641,0.0638826,0.106976,0.548023,0.771875,0.140478,0.551167,0.489333,0.738847,0.219168,0.898649,0.579963,0.300026,0.256675,0.936546,0.0787506,0.848531,0.566169,0.537577,0.992655,0.805532,0.895108,0.326106,0.759185,0.675321,0.625671,0.141182,0.685635,0.0272537,0.607934,0.834468,0.660429,0.0714821,0.235273,0.0410597,0.722474,0.888809,0.780309,0.0104308,0.105776,0.79476,0.901998,0.329637,0.289867,0.716319,0.518783,0.700982,0.0862024,0.541622,0.538381,0.939618,0.658193,0.772551,0.0244044,0.916243,0.326145,0.196083,0.98885,0.768997,0.0596524,0.507507,|0.079842,0.562408,0.526133,0.790641,0.531477,0.0405696,0.131371,0.408639,0.696705,0.243213,0.536456,0.67516,0.976828,0.553335,0.455367,0.869552,0.23119,0.630426,0.070061,0.477963,0.5131,0.319556,0.293919,0.137445,0.613583,0.96639,0.761559,0.191915,0.106841,0.296764,0.0852272,0.855501,0.0451956,0.674065,0.874492,0.75338,0.454452,0.650185,0.548356,0.324212,0.00756824,0.611703,0.537188,0.664687,0.06607,0.0655435,0.29967,0.386318,0.749377,0.791858,0.332769,0.305633,0.733547,0.0572295,0.512447,0.0625187,0.926987,0.0653549,0.45126,0.0370615,0.969932,0.336518,0.923687,0.557011,0.925015,0.0684416,0.808265,0.766118,0.878233,0.58498,0.867789,0.0855792,0.237097,0.0821141,0.17203,0.831497,0.660003,0.0897831,0.638782,0.430937,0.506792,0.722831,0.108732,0.567396,0.216305,0.773409,0.854689,0.917635,0.622855,0.92293,0.248194,0.889394,0.569988,0.448028,0.402893,0.692287,0.693457,0.998338,0.463135,0.0057109,0.0343624,0.282548,0.666196,0.551784,0.224561,0.966305,0.819412,0.36949,0.0580583,0.420696,0.779402,0.907676,0.240151,0.614298,0.987599,0.60744,0.883471,0.879939,0.255736,0.997116,0.748199,0.111647,0.296839,0.537499,0.771359,0.122737,0.0952955,0.327484,0.452121,0.317734,0.555413,0.775365,0.525331,0.836026,0.0366711,0.409982,0.0941786,0.630256,0.605009,0.385039,0.614914,0.201112,0.454971,0.192928,0.938581,0.334287,0.898821,0.557572,0.0467441,0.803961,0.67369,0.926953,0.951351,0.270482,0.423278,0.924045,0.644972,0.160806,0.704437,0.499224,0.670996,0.758032,0.169243,0.947048,0.225179,0.201914,0.212016,0.432647,0.744607,0.244012,0.844657,0.0526079,0.53619,0.975212,0.777645,0.114409,0.338714,0.0710128,0.0146759,0.702105,0.514226,0.679674,0.402354,0.695311,0.820418,0.741778,0.78161,0.947773,0.668114,0.182176,0.128318,0.137223,0.696324,0.869851,0.651618,0.166205,0.821349,0.514344,0.914951,0.406496,0.890523,0.299055,0.957611,0.0936198,0.227365,0.767965,0.3927,0.749223,0.874034,0.330788,0.784208,0.594431,0.70876,0.338217,0.453632,0.503243,0.222563,0.833176,0.813106,0.638674,0.934935,0.939264,0.740273,0.511618,0.372017,0.786616,0.334782,0.93932,0.656226,0.952931,0.718242,0.262203,0.533826,0.594333,0.898629,0.936553,0.417959,0.732077,0.365517,0.672673,0.995584,0.01271,0.511739,0.464124,0.659616,0.185709,0.519801,0.89196,0.297486,0.706009,0.0978103,0.78332,0.364891,0.840471,0.59003,0.0238472,0.019636,0.260555,0.190323,0.559951,0.75446,0.237002,0.614713,0.743833,0.603299,0.698361,0.83976,0.282781,0.972975,0.532722,0.809695,0.65431,0.287291,0.526406,0.623702,0.905621,0.275167,0.955455,0.351618,0.498694,0.496582,0.30741,0.739635,0.380226,0.639604,0.275276,0.832922,0.615516,0.498919,0.718532,0.456062,0.786391,0.484855,0.894812,0.908244,0.566835,0.4946,0.677723,0.786684,0.408045,0.459548,0.681309,0.154813,0.245883,0.342338,0.907441,0.79222,0.406999,0.515137,0.0949539,0.559621,0.511198,0.843609,0.014899,0.906737,0.848196,0.753715,0.968581,0.551263,0.471058,0.751839,0.705938,0.322104,0.356603,0.144892,0.237066,0.0105864,0.879566,0.935981,0.653211,0.715025,0.219265,0.755945,0.33919,0.104604,0.152858,0.945029,0.202744,0.976808,0.0640249,0.851471,0.495267,0.930292,0.54635,0.672762,0.360575,0.0281255,0.0170298,0.863589,0.995881,0.393542,0.313678,0.311862,0.926296,0.524431,0.180797,0.079832,0.0508402,0.948894,0.324529,0.165573,0.736994,0.263657,0.0210562,0.0319911,0.0161661,0.152161,0.814986,0.884649,0.953558,0.664688,0.911839,0.398068,0.833894,0.412494,0.765178,0.532866,0.113495,0.115074,0.358903,0.936996,0.429788,0.609314,0.300424,0.265738,0.0342308,0.932243,0.0291358,0.0576658,0.632712,0.800178,0.321101,0.381542,0.547926,0.60067,0.274175,0.599639,0.142752,0.92547,0.882083,0.356024,0.303183,0.000396669,0.037847,0.36542,0.00636351,0.49916,0.971254,0.523688,0.405691,0.107697,0.606448,0.369732,0.917355,0.338769,0.052598,0.025016,0.72692,0.422811,0.365101,0.357812,0.312147,0.0998443,0.655407,0.246701,0.315309,0.711339,0.104426,0.660034,0.197151,0.406757,0.854984,0.945192,0.849883,0.846463,0.979163,0.427083,0.407041,0.388332,0.614539,0.492113,0.404422,0.0292168,0.450553,0.814358,0.175467,0.196096,0.224991,0.563726,0.940105,0.150081,0.655672,0.456531,0.0574417,0.707832,0.785402,0.58669,0.528091,0.803094,0.166356,0.25221,0.0601876,0.470041,0.625874,0.44262,0.594029,0.200507,0.34825,0.585859,0.210934,0.528308,0.899432,0.925036,0.202517,0.734381,0.224456,0.842949,0.0901638,0.349305,0.892668,0.183963,0.744454,0.360125,0.130916,0.0116794,0.892914,0.95472,0.704936,0.727486,0.239027,0.645039,0.644742,0.736769,0.870666,0.944934,0.596559,0.562539,0.475501,0.215992,0.150969,0.61838,0.0860033,0.700104,0.136068,0.653005,0.526117,0.19422,0.583575,0.682362,0.709309,0.921854,0.696466,0.165803,0.849467,0.346948,0.688752,0.985555,0.190291,0.444125,0.218349,0.975141,0.920103,0.912889,0.401815,0.553598,0.460899,0.605202,0.547803,0.011991,0.384447,0.992587,0.409851,0.58211,0.937558,0.263237,0.943196,0.147563,0.985613,0.302036,0.566467,0.778225,0.3931,0.00766081,0.591152,0.0470684,0.468181,0.871352,0.625123,0.0327452,0.202078,0.642784,0.807301,0.429199,0.94094,0.953135,0.391979,0.382761,0.63334,0.36663,0.923473,0.860544,0.084825,0.701369,0.836439,0.789528,0.770884,0.771682,0.90798,0.678231,0.677149,0.533765,0.377819,0.334175,0.387409,0.48707,0.810462,0.608007,0.433354,0.676627,0.224153,0.26957,0.0305565,0.425451,0.804719,0.226417,0.998134,0.390036,0.540794,0.0898887,0.0513756,0.209726,0.857316,0.389992,0.0382845,0.387294,0.417615,0.527752,0.209843,0.822896,0.471082,0.585113,0.956047,0.427067,0.0709978,0.92352,0.162557,0.689235,0.534705,0.169773,0.72866,0.828473,0.0148173,0.782974,0.669229,0.179292,0.220643,0.889625,0.705195,0.290983,0.0243754,0.971115,0.110759,0.0103987,0.492813,0.564659,0.907072,0.138035,0.461036,0.0461688,0.944487,0.883387,0.571598,0.182864,0.619312,0.17403,0.839482,0.380696,0.407812,0.67625,0.429663,0.560448,0.288799,0.853518,0.468546,0.23466,0.730563,0.149309,0.948343,0.604828,0.228218,0.875332,0.726619,0.82346,0.451536,0.146628,0.825749,0.546357,0.904394,0.678566,0.646471,0.435447,0.1187,0.701405,0.247674,0.649915,0.825742,0.750927,0.149218,0.951611,0.550361,0.967849,0.175243,0.254741,0.787813,0.60633,0.81946,0.180423,0.216194,0.621485,0.775222,0.672723,0.868214,0.0657675,0.813605,0.748336,0.252595,0.633296,0.201289,0.000582635,0.916072,0.586223,0.991318,0.427453,0.311636,0.795069,0.0414562,0.926752,0.323449,0.141084,0.827572,0.823622,0.806003,0.894388,0.850974,0.450369,0.979711,0.363835,0.628007,0.0395939,0.978699,0.427264,0.0349694,0.842545,0.839918,0.901339,0.462677,0.574008,0.286219,0.462374,0.895921,0.0231704,0.842443,0.106288,0.530033,0.031984,0.613569,0.0343368,0.17429,0.283262,0.626978,0.118338,0.937566,0.924627,0.402362,0.878938,0.308533,0.774449,0.145803,0.131508,0.701547,0.877196,0.0629801,0.134791,0.657278,0.152655,0.744548,0.616368,0.315628,0.943312,0.612109,0.105256,0.0476179,0.540079,0.86151,0.138025,0.0550335,0.234222,0.923212,0.725115,0.582987,0.461811,0.390097,0.285057,0.259959,0.0613693,0.385707,0.625222,0.59064,0.351651,0.481221,0.939139,0.873001,0.287612,0.0634287,0.132052,0.828863,0.0308892,0.60392,0.160115,0.173316,0.116161,0.626745,0.499653,0.416446,0.564799,0.353543,0.485464,0.594726,0.363228,0.926322,0.602339,0.793026,0.881052,0.741634,0.827259,0.522362,0.578296,0.135127,0.76704,0.830336,0.258367,0.797114,0.973818,0.341005,0.565872,0.212433,0.0157486,0.423838,0.362918,0.0201033,0.0493195,0.421054,0.0637311,0.910819,0.312975,0.975637,0.551076,0.403994,0.578129,0.308408,0.94526,0.0347706,0.455243,0.348464,0.0519714,0.540062,0.627806,0.344454,0.251397,0.15863,0.221327,0.116718,0.13285,0.329896,0.713806,0.256059,0.0120395,0.264151,0.082919,0.742223,0.443095,0.835743,0.69174,0.914665,0.900002,0.0719537,0.517116,0.82656,0.821236,0.409495,0.0983602,0.263893,0.0659497,0.313978,0.389728,0.515849,0.69536,0.551793,0.107918,0.332398,0.347128,0.791176,0.377563,0.101292,0.160236,0.628088,0.675023,0.65953,0.141152,0.793966,0.082248,0.288541,0.760333,0.366784,0.136215,0.303737,0.951807,0.481278,0.948735,0.978589,0.699331,0.694791,0.752206,0.194658,0.307454,0.247486,0.757659,0.961687,0.265427,0.176684,0.681787,0.161604,0.713822,0.0330639,0.846056,0.224154,0.294291,0.953669,0.775861,0.317027,0.49712,0.723778,0.810663,0.108779,0.134915,0.366417,0.63113,0.016095,0.839306,0.728533,0.412953,0.32793,0.507425,0.817917,0.712438,0.982779,0.517376,0.926752,0.342655,0.573326,0.72755,0.304001,0.15407,0.754334,0.834702,0.853818,0.170305,0.53269,0.635568,0.735476,0.821171,0.140658,0.95076,0.321353,0.725869,0.0193753,0.714342,0.32001,0.799901,0.942253,0.131223,0.830522,0.916916,0.842867,0.68952,0.530454,0.299982,0.24378,0.63768,0.751105,0.578236,0.825003,0.271122,0.170978,0.391687,0.339308,0.450178,0.143616,0.0520254,0.668689,0.460748,0.818421,0.213281,0.0478375,0.096885,0.36891,0.289878,0.887227,0.0147418,0.341443,0.0695006,0.690501,0.306384,0.00288486,0.0525767,0.827475,0.570167,0.37443,0.238405,0.951343,0.622895,0.821982,0.494559,0.451763,0.266322,0.799423,0.0172915,0.320212,0.599456,0.944799,0.396532,0.717934,0.576881,0.120623,0.879847,0.374557,0.0452857,0.876516,0.187681,0.831472,|0.127167,0.914217,0.631172,0.92224,0.119021,0.343616,0.807443,0.777036,0.367085,0.6035,0.694823,0.931016,0.852275,0.426855,0.206276,0.265044,0.850546,0.424275,0.349281,0.934568,0.429786,0.779304,0.68976,0.792565,0.349876,0.673912,0.63337,0.573863,0.0344943,0.592593,0.491649,0.634367,0.689019,0.457397,0.134962,0.906147,0.269391,0.829377,0.140383,0.75567,0.501399,0.509223,0.440042,0.881932,0.761838,0.32113,0.0346808,0.637694,0.400662,0.424079,0.155442,0.0352443,0.316315,0.318238,0.741573,0.171274,0.806571,0.140428,0.53971,0.485444,0.445232,0.446687,0.586702,0.534897,0.61995,0.77619,0.641346,0.3934,0.757937,0.751808,0.0555562,0.535852,0.354301,0.255651,0.832724,0.324523,0.246257,0.264784,0.161687,0.153318,0.343526,0.629319,0.47837,0.462604,0.611695,0.302693,0.861401,0.116244,0.648403,0.52628,0.0425107,0.281602,0.514268,0.558387,0.609014,0.302117,0.899711,0.565162,0.624367,0.957332,0.669358,0.381069,0.937874,0.840584,0.455705,0.67318,0.031985,0.866523,0.131296,0.434834,0.274748,0.0850197,0.403569,0.743181,0.0883854,0.831751,0.823712,0.761249,0.502886,0.35909,0.162349,0.251448,0.241935,0.840252,0.0468056,0.818662,0.70511,0.803443,0.412037,0.529357,0.643474,0.510251,0.810247,0.0778584,0.585168,0.751893,0.46401,0.363798,0.108068,0.70077,0.495977,0.460271,0.13359,0.14593,0.650251,0.546886,0.384907,0.540754,0.537619,0.931361,0.438905,0.209008,0.0378528,0.609679,0.943262,0.161159,0.152928,0.384168,0.377338,0.280061,0.875774,0.0796906,0.804616,0.918065,0.730157,0.139015,0.765626,0.196238,0.316559,0.442815,0.0610884,0.696465,0.519001,0.460632,0.115565,0.145412,0.644813,0.106708,0.436879,0.658316,0.620154,0.293748,0.324628,0.610853,0.233184,0.69777,0.154997,0.550075,0.185789,0.089873,0.997699,0.447943,0.260117,0.0294918,0.387822,0.561501,0.895643,0.878994,0.26217,0.64962,0.0975572,0.350747,0.681269,0.0838769,0.330607,0.951328,0.954604,0.917865,0.401289,0.82241,0.0633292,0.00990844,0.191993,0.741426,0.559037,0.363201,0.65871,0.447085,0.630322,0.680574,0.658592,0.634433,0.230273,0.0202242,0.45706,0.738867,0.182007,0.899106,0.362207,0.777948,0.708695,0.720324,0.816545,0.450373,0.21757,0.712444,0.535546,0.728281,0.138035,0.30767,0.901593,0.94432,0.49738,0.934064,0.212554,0.274852,0.0192905,0.266076,0.406413,0.11749,0.452572,0.624615,0.657866,0.464464,0.124995,0.814459,0.448711,0.132947,0.403697,0.0827013,0.61157,0.541043,0.210585,0.693106,0.074232,0.822117,0.116977,0.00330687,0.418841,0.459263,0.0765511,0.866023,0.880409,0.271975,0.34598,0.686905,0.213096,0.840385,0.655273,0.268306,0.899503,0.654121,0.232099,0.200224,0.927715,0.555819,0.610033,0.559488,0.224111,0.189444,0.261225,0.719612,0.501558,0.653554,0.39732,0.968642,0.126502,0.5908,0.732796,0.606313,0.146224,0.749695,0.19996,0.73182,0.858223,0.807249,0.0452491,0.585966,0.484184,0.877748,0.185087,0.529324,0.19291,0.150595,0.164617,0.661125,0.841196,0.728945,0.604685,0.856839,0.675623,0.0320066,0.294996,0.0872369,0.622468,0.558164,0.567268,0.510861,0.949319,0.918534,0.0838079,0.366302,0.731801,0.156218,0.565408,0.492867,0.163536,0.592156,0.641803,0.0947389,0.807933,0.0712469,0.309728,0.632319,0.474668,0.617631,0.594282,0.992806,0.070568,0.520503,0.0114464,0.43849,0.990616,0.145486,0.591027,0.623293,0.457227,0.912167,0.314412,0.54222,0.0607035,0.779596,0.51138,0.894783,0.650188,0.189414,0.318931,0.410948,0.820626,0.240973,0.393741,0.0112678,0.0176353,0.840861,0.983364,0.45062,0.306919,0.708638,0.695597,0.285043,0.394602,0.926295,0.105247,0.955875,0.615291,0.651755,0.779303,0.105739,0.487427,0.626844,0.317188,0.839348,0.313958,0.600947,0.452494,0.332657,0.409938,0.443167,0.977739,0.744174,0.477075,0.316352,0.425005,0.868933,0.0147923,0.247155,0.441565,0.94737,0.219187,0.412155,0.478545,0.1449,0.0652381,0.228456,0.0748896,0.237156,0.378367,0.168778,0.981272,0.667522,0.631146,0.228342,0.0284079,0.806947,0.621312,0.385408,0.290802,0.186491,0.417443,0.804147,0.541311,0.564778,0.938052,0.229024,0.535999,0.849727,0.759696,0.334619,0.299767,0.152245,0.211305,0.755021,0.564946,0.317175,0.0516509,0.856658,0.857524,0.647089,0.623679,0.926365,0.50513,0.64858,0.340182,0.526348,0.0194264,0.0870639,0.886637,0.58526,0.814392,0.260682,0.368343,0.707727,0.335945,0.402103,0.112409,0.359985,0.0378522,0.758,0.29522,0.659906,0.506734,0.525529,0.454917,0.887338,0.576368,0.237626,0.519102,0.19966,0.261491,0.171303,0.0869702,0.797397,0.918784,0.772728,0.456,0.427603,0.116728,0.758882,0.713228,0.722527,0.556403,0.812805,0.516156,0.294559,0.427636,0.976948,0.392792,0.649508,0.950209,0.628941,0.838439,0.782388,0.187416,0.206346,0.245863,0.669579,0.6573,0.590565,0.91032,0.896377,0.903794,0.76226,0.67421,0.991991,0.13149,0.104715,0.841834,0.688898,0.141147,0.782489,0.123408,0.624926,0.0373597,0.360944,0.295841,0.675984,0.622633,0.553194,0.0913315,0.99597,0.93702,0.483613,0.834536,0.799353,0.942122,0.171217,0.0501105,0.027456,0.932027,0.0460421,0.158601,0.130325,0.249568,0.965441,0.577602,0.828386,0.534377,0.522594,0.624762,0.265272,0.73607,0.840488,0.63879,0.30336,0.701428,0.0914556,0.969435,0.805708,0.00782788,0.908835,0.424468,0.877814,0.668738,0.402986,0.348752,0.28901,0.518899,0.947269,0.808647,0.0407687,0.181113,0.306409,0.886699,0.293014,0.136242,0.247172,0.48653,0.158917,0.917059,0.750262,0.608702,0.547754,0.028894,0.98571,0.0592581,0.923169,0.208237,0.443303,0.487429,0.186868,0.00918263,0.256252,0.84633,0.0528094,0.537142,0.214884,0.653976,0.778983,0.0496324,0.450159,0.467911,0.0693689,0.760414,0.313511,0.458809,0.935945,0.614781,0.205469,0.400155,0.235209,0.0774738,0.965035,0.559931,0.703479,0.0820911,0.894861,0.336346,0.945039,0.663022,0.403015,0.183623,0.674837,0.990242,0.747495,0.137972,0.367096,0.0314312,0.135538,0.904941,0.978697,0.757965,0.355527,0.947543,0.0353773,0.214515,0.754897,0.705742,0.520195,0.633623,0.920596,0.843844,0.595351,0.0416623,0.714993,0.346639,0.344962,0.351339,0.681224,0.590782,0.917629,0.64828,0.663916,0.750369,0.279417,0.0314672,0.876316,0.109474,0.914713,0.826877,0.766812,0.351231,0.184831,0.714082,0.170064,0.273784,0.498879,0.86187,0.251449,0.839376,0.202898,0.213833,0.314253,0.864777,0.26856,0.478002,0.573283,0.556274,0.650753,0.933409,0.583011,0.218345,0.503119,0.376641,0.696852,0.562795,0.655631,0.880892,0.34858,0.342192,0.811899,0.886947,0.738413,0.400014,0.0722479,0.215987,0.592225,0.834679,0.92011,0.139347,0.481666,0.586223,0.195685,0.16988,0.755995,0.331817,0.119362,0.266698,0.177835,0.706555,0.143145,0.850329,0.737619,0.534362,0.168951,0.93946,0.488,0.997127,0.298961,0.948486,0.997834,0.578576,0.1493,0.493796,0.683457,0.835505,0.890781,0.842318,0.807922,0.430844,0.386112,0.112641,0.793107,0.863073,0.360032,0.252227,0.114062,0.489793,0.390281,0.490769,0.245584,0.20559,0.147076,0.651649,0.658222,0.556296,0.190904,0.674519,0.434596,0.908617,0.244945,0.532885,0.228485,0.695319,0.156117,0.0918952,0.638998,0.382241,0.675337,0.738626,0.940799,0.225618,0.836777,0.123994,0.357816,0.582012,0.942424,0.161822,0.879302,0.188625,0.023691,0.457909,0.40567,0.0128316,0.71523,0.240919,0.316056,0.759574,0.790439,0.245815,0.0493491,0.696991,0.609614,0.925439,0.816695,0.568169,0.213875,0.171272,0.184028,0.538551,0.523313,0.837207,0.370466,0.77277,0.162722,0.952885,0.701313,0.51504,0.082502,0.590011,0.756304,0.948479,0.568131,0.175422,0.42246,0.216836,0.435558,0.371888,0.192837,0.503006,0.151627,0.704024,0.211395,0.581677,0.307476,0.773552,0.479622,0.385939,0.630925,0.934143,0.512229,0.0748873,0.938116,0.433765,0.0705842,0.990451,0.292851,0.970505,0.806594,0.549956,0.0316761,0.416427,0.945582,0.0892987,0.022042,0.216541,0.479121,0.00858796,0.96942,0.378782,0.536187,0.130101,0.532626,0.349617,0.783894,0.0474137,0.704336,0.564442,0.983743,0.652117,0.852237,0.258729,0.983443,0.0735045,0.59706,0.356589,0.641478,0.175304,0.246833,0.714118,0.47686,0.639873,0.917809,0.323743,0.840087,0.430914,0.836951,0.84613,0.444077,0.117776,0.0567586,0.751432,0.625804,0.895514,0.269925,0.547299,0.824944,0.181958,0.905081,0.23239,0.962923,0.349521,0.849147,0.96205,0.129789,0.0372353,0.272517,0.718778,0.648683,0.054549,0.676685,0.12499,0.950583,0.415976,0.554397,0.48244,0.354196,0.802553,0.0359117,0.582681,0.312986,0.194902,0.191919,0.864151,0.604618,0.990928,0.952511,0.173203,0.150976,0.373899,0.0939832,0.641315,0.940116,0.651964,0.799913,0.0268264,0.545703,0.243104,0.271642,0.621314,0.0538918,0.846735,0.0866503,0.906054,0.356231,0.0659989,0.291079,0.762213,0.186506,0.99348,0.541684,0.850492,0.107329,0.883654,0.83028,0.00276053,0.894332,0.752388,0.357826,0.472634,0.359206,0.695619,0.826245,0.828244,0.273455,0.147883,0.357714,0.76992,0.206386,0.882685,0.610076,0.568134,0.707138,0.43941,0.322187,0.320488,0.818414,0.28029,0.965431,0.405392,0.986273,0.794892,0.612979,0.705383,0.617037,0.787085,0.885974,0.722324,0.0088461,0.917876,0.380566,0.895519,0.31696,0.826042,0.401419,0.481812,0.703756,0.83046,0.506877,0.352399,0.666375,0.132444,0.363451,0.412792,0.882595,0.200455,0.830372,0.619075,0.938613,0.689961,0.555953,0.276955,0.348266,0.900959,0.232336,0.0235662,0.34069,0.419087,0.760222,0.747565,0.0284402,|0.706065,0.753583,0.320243,0.461977,0.622251,0.155577,0.0384902,0.220439,0.129427,0.0916957,0.0137668,0.255521,0.633229,0.0514479,0.121906,0.525334,0.759995,0.9182,0.448244,0.336491,0.897138,0.439097,0.569968,0.227289,0.790248,0.34061,0.358019,0.128161,0.299294,0.0550629,0.597564,0.968555,0.994009,0.423049,0.865959,0.265893,0.748826,0.0537544,0.672635,0.701428,0.270872,0.299626,0.571619,0.281154,0.320254,0.812895,0.876591,0.716225,0.586117,0.830075,0.460878,0.951483,0.405326,0.113152,0.477382,0.0884154,0.403564,0.954984,0.0116785,0.688921,0.149552,0.253621,0.434653,0.555414,0.144329,0.148215,0.351856,0.468607,0.684207,0.321655,0.638345,0.642332,0.146257,0.52924,0.25912,0.274866,0.720208,0.608136,0.422929,0.844678,0.702527,0.983963,0.0476675,0.993749,0.559039,0.76491,0.0111732,0.43039,0.651709,0.213963,0.63206,0.349575,0.359852,0.344021,0.864388,0.664218,0.555592,0.0880591,0.581912,0.981501,0.123603,0.968521,0.12344,0.110873,0.837644,0.0263466,0.770192,0.315336,0.922263,0.290096,0.323068,0.86512,0.828804,0.699702,0.92842,0.564211,0.0368292,0.816423,0.499195,0.614903,0.00851071,0.199304,0.1667,0.609681,0.572554,0.0290827,0.711214,0.676793,0.149731,0.0219844,0.756055,0.61637,0.986077,0.809074,0.24549,0.101467,0.94815,0.373078,0.921185,0.791597,0.717408,0.0603109,0.863784,0.198273,0.52433,0.423672,0.560454,0.421925,0.552015,0.545041,0.699279,0.882629,0.766117,0.211833,0.113936,0.225242,0.844522,0.196263,0.693469,0.452867,0.141209,0.400841,0.530216,0.199673,0.454172,0.762407,0.388568,0.582032,0.236733,0.730546,0.503617,0.0803283,0.858548,0.330591,0.204535,0.688266,0.000459373,0.836293,0.839105,0.864442,0.400193,0.335504,0.555861,0.838201,0.885601,0.286298,0.461253,0.260963,0.47742,0.0870957,0.231909,0.466936,0.869161,0.154927,0.615091,0.780973,0.244874,0.327847,0.952051,0.865085,0.0187036,0.579839,0.735119,0.872305,0.336488,0.0370054,0.153456,0.196253,0.518014,0.631609,0.382126,0.914005,0.133624,0.429125,0.649478,0.0502002,0.802679,0.928741,0.902453,0.877146,0.627491,0.743041,0.439367,0.654328,0.815646,0.637517,0.635416,0.332436,0.390092,0.0771072,0.74079,0.145098,0.739527,0.818276,0.719591,0.519264,0.651018,0.0816532,0.293899,0.341028,0.0212452,0.583746,0.59509,0.803212,0.399475,0.566116,0.602843,0.15112,0.16558,0.787555,0.891171,0.971854,0.277257,0.7203,0.904875,0.0310488,0.944045,0.4095,0.73233,0.790098,0.560471,0.501093,0.220389,0.636992,0.920503,0.225342,0.177271,0.569265,0.190681,0.851067,0.341819,0.753247,0.255276,0.160744,0.558781,0.169749,0.563184,0.568946,0.0867251,0.205614,0.916098,0.813177,0.889111,0.0995774,0.0668323,0.970083,0.161377,0.890936,0.560116,0.770322,0.979858,0.404482,0.575217,0.052166,0.488082,0.147389,0.950746,0.444712,0.715916,0.248784,0.962147,0.556089,0.982673,0.222108,0.819959,0.381284,0.356696,0.209083,0.333914,0.560176,0.105393,0.168725,0.14844,0.899042,0.779808,0.453402,0.36819,0.716263,0.865172,0.912455,0.343587,0.669593,0.966654,0.256649,0.0198431,0.761008,0.190011,0.616784,0.741225,0.870055,0.632289,0.10067,0.0305816,0.877262,0.524808,0.545535,0.301983,0.413054,0.610619,0.188609,0.448509,0.25157,0.984325,0.675804,0.995352,0.123108,0.651803,0.475933,0.707102,0.0491651,0.0975318,0.0849437,0.480062,0.653377,0.289425,0.353892,0.600091,0.434574,0.367001,0.810593,0.536103,0.578433,0.932976,0.594706,0.630298,0.0640372,0.986112,0.593757,0.611461,0.243485,0.763513,0.647326,0.0106111,0.294529,0.29678,0.820149,0.52606,0.657798,0.373162,0.00598127,0.629558,0.192184,0.645119,0.0752528,0.773947,0.932132,0.221234,0.806921,0.335832,0.868118,0.950886,0.158251,0.300266,0.634684,0.745945,0.370114,0.653542,0.592897,0.309674,0.632559,0.545323,0.81434,0.943912,0.1353,0.0732094,0.681781,0.906591,0.639399,0.931967,0.452832,0.996718,0.0575926,0.0234307,0.167769,0.0800547,0.597297,0.698415,0.89614,0.596972,0.900806,0.894803,0.352548,0.371838,0.0417655,0.374892,0.453468,0.615936,0.155496,0.299184,0.860828,0.114954,0.865973,0.811543,0.39547,0.769568,0.872608,0.337322,0.797915,0.735397,0.945395,0.508066,0.869023,0.994385,0.587716,0.786868,0.44844,0.929042,0.917561,0.977736,0.244824,0.533449,0.83979,0.29707,0.818222,0.735179,0.77857,0.102258,0.263866,0.943764,0.208517,0.0384939,0.470865,0.551517,0.41522,0.225586,0.607178,0.561441,0.509129,0.279576,0.116449,0.350146,0.0807977,0.945663,0.0286673,0.220177,0.189246,0.142671,0.0212496,0.181004,0.668025,0.163343,0.63273,0.289757,0.0981801,0.607298,0.389753,0.747666,0.21192,0.459027,0.343093,0.365371,0.903822,0.820552,0.251082,0.678254,0.0628468,0.765152,0.0437884,0.33754,0.0657887,0.945927,0.796471,0.622679,0.918403,0.95727,0.514145,0.641392,0.376368,0.40799,0.249937,0.607104,0.21106,0.59214,0.793393,0.647199,0.761992,0.57449,0.0722615,0.588344,0.295418,0.782176,0.49781,0.591221,0.243484,0.919668,0.721863,0.221345,0.699123,0.344117,0.229773,0.0412189,0.742402,0.737535,0.857972,0.0272912,0.412088,0.293114,0.313109,0.482461,0.852976,0.972063,0.0802023,0.53095,0.955943,0.500074,0.211418,0.617866,0.305398,0.841335,0.377496,0.0868636,0.0859661,0.315458,0.605842,0.0500358,0.383221,0.376783,0.72977,0.691798,0.525023,0.121974,0.819425,0.619849,0.465904,0.554997,0.587315,0.0562807,0.18502,0.25224,0.128476,0.81414,0.73316,0.0728416,0.0557575,0.56918,0.136515,0.338743,0.630688,0.857525,0.372995,0.713647,0.226756,0.356489,0.179539,0.887275,0.749835,0.857494,0.492947,0.0586919,0.394819,0.634956,0.9032,0.118843,0.0629041,0.950884,0.227616,0.105804,0.790568,0.229478,0.649492,0.881967,0.65382,0.554058,0.546961,0.761863,0.12092,0.642745,0.589509,0.392686,0.404227,0.721689,0.995515,0.941282,0.65448,0.151775,0.714638,0.709545,0.452481,0.80332,0.402575,0.0121495,0.85889,0.375075,0.118058,0.794169,0.240562,0.233521,0.544393,0.745743,0.436633,0.572139,0.119242,0.762861,0.897696,0.0400472,0.349096,0.643904,0.742227,0.782177,0.884871,0.263028,0.282606,0.706481,0.647606,0.674802,0.740241,0.339418,0.557453,0.579648,0.783121,0.53544,0.563908,0.770406,0.942648,0.833865,0.84788,0.689012,0.59642,0.111999,0.869992,0.383316,0.405735,0.196066,0.686551,0.666179,0.900566,0.201033,0.732244,0.67793,0.0114767,0.325558,0.483509,0.351897,0.596415,0.518774,0.358184,0.128491,0.724578,0.875816,0.0437764,0.0224564,0.156337,0.822521,0.419738,0.307435,0.873897,0.496863,0.254114,0.0812622,0.874931,0.531419,0.72923,0.156596,0.469032,0.0303652,0.685744,0.199099,0.102099,0.123875,0.976315,0.472465,0.958161,0.0427551,0.331584,0.736747,0.992583,0.329032,0.873135,0.0683947,0.618032,0.575851,0.175541,0.277596,0.373624,0.787783,0.741488,0.743905,0.795471,0.892094,0.109523,0.147262,0.274001,0.757061,0.0329675,0.601027,0.439797,0.446776,0.915419,0.0387866,0.563854,0.808353,0.173525,0.806913,0.0588507,0.936524,0.250877,0.148884,0.834863,0.0979144,0.549866,0.619374,0.510559,0.363084,0.907881,0.0814679,0.412087,0.874437,0.155602,0.702934,0.625039,0.385519,0.527205,0.557724,0.246787,0.125634,0.648073,0.791308,0.708434,0.837003,0.432469,0.977564,0.190135,0.458903,0.630371,0.74204,0.621894,0.541751,0.464128,0.0701556,0.268011,0.463337,0.848073,0.788193,0.782296,0.870921,0.422065,0.458703,0.06609,0.699737,0.888045,0.522085,0.893194,0.659008,0.536181,0.625198,0.688472,0.748385,0.296013,0.750048,0.415604,0.0370117,0.637207,0.49791,0.349964,0.87288,0.306688,0.447613,0.196142,0.264756,0.317723,0.76823,0.877513,0.741403,0.364366,0.426605,0.0880115,0.243135,0.549571,0.826626,0.7677,0.588571,0.908717,0.79485,0.921563,0.000673115,0.999215,0.723303,0.647527,0.817067,0.279794,0.145876,0.978716,0.352997,0.355835,0.0244145,0.249014,0.0764691,0.399812,0.659209,0.903081,0.662669,0.0105718,0.148894,0.522145,0.120327,0.13012,0.991263,0.51802,0.076843,0.972012,0.0995084,0.346541,0.853555,0.812824,0.105207,0.812363,0.361769,0.716898,0.256954,0.485982,0.0597249,0.930052,0.181373,0.292276,0.596753,0.369762,0.317936,0.48575,0.381723,0.244597,0.309164,0.217195,0.860216,0.867088,0.0548059,0.467206,0.168877,0.257664,0.363418,0.283854,0.1441,0.248147,0.851251,0.269566,0.256255,0.947094,0.936278,0.0802516,0.0708563,0.357741,0.0465954,0.0621294,0.494309,0.853135,0.653639,0.117949,0.158613,0.812168,0.460591,0.824863,0.0441204,0.955898,0.359074,0.572459,0.64224,0.626375,0.93215,0.129511,0.971716,0.634941,0.675771,0.890203,0.969712,0.768254,0.693923,0.0944576,0.217572,0.136595,0.00779212,0.352902,0.285375,0.648277,0.0421788,0.718438,0.350422,0.871827,0.706386,0.863004,0.629359,0.920902,0.378135,0.14623,0.127137,0.802909,0.935837,0.0466182,0.319947,0.826621,0.8619,0.512968,0.800085,0.433421,0.685161,0.447069,0.124368,0.476158,0.994481,0.138426,0.0656764,0.161032,0.408504,0.187566,0.53426,0.965942,0.0437447,0.26823,0.894199,0.19281,0.1484,0.205968,0.734759,0.596435,0.432835,0.832101,0.37044,0.475581,0.294913,0.129579,0.415059,0.444715,0.740653,0.9759,0.955418,0.720799,0.629056,0.217079,0.737109,0.098235,0.568839,0.0604717,0.710485,0.279198,0.508557,0.232346,0.824454,0.611671,0.0324443,0.363423,0.63755,0.235563,0.133748,0.638908,0.961209,0.480382,0.106947,0.476555,0.819413,0.119403,0.972749,0.218222,0.237854,0.425663,0.00869811,0.0977636,0.849753,0.591447,0.571907,0.391965,0.706912,0.15195,|0.783149,0.998955,0.432968,0.641274,0.439146,0.494313,0.33061,0.734439,0.448061,0.887693,0.888614,0.929375,0.600405,0.457669,0.0273374,0.165711,0.54915,0.00587434,0.617498,0.79471,0.292643,0.175018,0.728031,0.712926,0.730149,0.01142,0.905349,0.58724,0.0112815,0.178042,0.465986,0.67439,0.191158,0.654213,0.632795,0.801801,0.0603505,0.377735,0.305044,0.432855,0.247499,0.512465,0.935824,0.991352,0.322432,0.542589,0.944669,0.686097,0.826504,0.859071,0.726668,0.362253,0.0182952,0.111449,0.55518,0.492601,0.50139,0.158906,0.423978,0.0485425,0.354685,0.11599,0.0163029,0.602297,0.442717,0.0950817,0.54994,0.603935,0.484269,0.255662,0.570396,0.613246,0.902388,0.264112,0.301368,0.350844,0.936775,0.137785,0.393484,0.0926282,0.854233,0.309544,0.885614,0.756297,0.577525,0.283323,0.922383,0.697709,0.0551569,0.597563,0.463667,0.677665,0.132268,0.669105,0.0635889,0.605595,0.742083,0.400176,0.0694965,0.466692,0.969502,0.304072,0.716669,0.783154,0.0487058,0.943278,0.955791,0.189621,0.173159,0.362412,0.158848,0.16904,0.672288,0.796357,0.993808,0.303989,0.231727,0.872789,0.896545,0.570456,0.814304,0.0337695,0.150585,0.706605,0.238031,0.545068,0.250757,0.0718375,0.298433,0.33747,0.208337,0.429103,0.129355,0.513868,0.121572,0.0859549,0.526536,0.460723,0.435506,0.562132,0.467739,0.150458,0.819332,0.369628,0.862945,0.133161,0.946544,0.832616,0.469516,0.527745,0.399931,0.228926,0.731972,0.985848,0.874361,0.867106,0.851288,0.0689182,0.670409,0.567647,0.401859,0.0264138,0.188481,0.825303,0.519665,0.649006,0.596851,0.143424,0.603797,0.146297,0.660829,0.955544,0.133333,0.164038,0.690096,0.354409,0.566948,0.899981,0.95983,0.758966,0.753395,0.750549,0.0605052,0.205259,0.219637,0.274226,0.995047,0.190246,0.211161,0.384306,0.713046,0.566816,0.124599,0.956977,0.475773,0.923947,0.051492,0.211441,0.840024,0.439953,0.894172,0.986538,0.475955,0.410598,0.211913,0.119886,0.244252,0.0425661,0.465074,0.899318,0.976482,0.482764,0.998853,0.949239,0.949455,0.536059,0.610814,0.93828,0.323876,0.8008,0.511845,0.9122,0.909951,0.256951,0.633419,0.329783,0.554199,0.0888295,0.745422,0.93802,0.448262,0.229105,0.68293,0.810105,0.774142,0.339622,0.118524,0.670059,0.287692,0.958013,0.127898,0.999589,0.424761,0.796035,0.430822,0.429059,0.892734,0.329128,0.725791,0.950514,0.344433,0.525708,0.0469275,0.488998,0.0627523,0.566353,0.0127376,0.206107,0.725468,0.74516,0.674113,0.72145,0.258676,0.595615,0.344189,0.0850471,0.148744,0.670524,0.532659,0.772151,0.00742543,0.437872,0.0621562,0.308512,0.168144,0.387882,0.503312,0.927158,0.753232,0.997541,0.720868,0.870886,0.690068,0.914505,0.258844,0.475509,0.75512,0.79334,0.275116,0.717076,0.80597,0.38232,0.756451,0.922242,0.734982,0.736315,0.490706,0.0170013,0.601331,0.217336,0.995561,0.85049,0.648669,0.788191,0.980906,0.741771,0.818231,0.360402,0.0198793,0.330625,0.0481618,0.776884,0.600385,0.555913,0.0878148,0.714544,0.715544,0.996096,0.942222,0.366423,0.2799,0.596417,0.514991,0.33588,0.690484,0.455973,0.0847814,0.168381,0.660306,0.249536,0.925885,0.80225,0.485842,0.150039,0.119804,0.435541,0.0553929,0.0444365,0.408449,0.584011,0.743656,0.462281,0.893779,0.194348,0.409275,0.463727,0.458792,0.422402,0.0415018,0.265621,0.872718,0.221618,0.465256,0.503871,0.544135,0.650632,0.694914,0.149259,0.494522,0.61174,0.332434,0.193071,0.0253984,0.581949,0.402558,0.346046,0.0740076,0.764671,0.777831,0.595445,0.511704,0.394699,0.449779,0.106676,0.123993,0.181158,0.101975,0.138485,0.0439974,0.274569,0.117538,0.096209,0.879999,0.904993,0.0415586,0.584584,0.813943,0.859855,0.977238,0.921443,0.885188,0.682627,0.432593,0.70386,0.476223,0.468382,0.664881,0.783432,0.0018701,0.128014,0.161445,0.997635,0.826251,0.258037,0.661838,0.0200424,0.732668,0.696756,0.418413,0.322621,0.974024,0.313923,0.640501,0.0898309,0.257917,0.172262,0.65974,0.242937,0.016657,0.716455,0.699452,0.619581,0.375438,0.39015,0.431908,0.968228,0.679734,0.0397559,0.16198,0.00875926,0.274444,0.0387588,0.415214,0.38567,0.820311,0.906465,0.910979,0.481722,0.196118,0.416311,0.251129,0.889706,0.578255,0.0498396,0.958359,0.94336,0.647831,0.734193,0.52634,0.754596,0.811342,0.246133,0.51734,0.254722,0.175574,0.246703,0.221826,0.150868,0.680099,0.265168,0.186112,0.470909,0.0636005,0.105849,0.47495,0.134893,0.513999,0.299951,0.29831,0.758552,0.606594,0.744345,0.707594,0.927072,0.603847,0.209829,0.379998,0.759621,0.494834,0.0978531,0.920504,0.124625,0.260799,0.745988,0.403943,0.759336,0.0230889,0.583776,0.32835,0.923639,0.417835,0.675453,0.522377,0.42116,0.320483,0.919589,0.377475,0.363259,0.40136,0.924462,0.577322,0.802536,0.849468,0.884744,0.701192,0.241543,0.450477,0.263039,0.130009,0.136909,0.480335,0.0640783,0.523402,0.739905,0.384355,0.959751,0.245587,0.821125,0.292207,0.167752,0.29951,0.0786268,0.193747,0.404028,0.657231,0.191956,0.38003,0.948505,0.249115,0.606349,0.198068,0.40491,0.615503,0.154638,0.0977395,0.361591,0.577403,0.548059,0.618414,0.828205,0.308818,0.474324,0.511352,0.433588,0.121928,0.218328,0.818061,0.0250732,0.420839,0.410369,0.699853,0.900368,0.133022,0.993079,0.203261,0.152883,0.371394,0.383745,0.115423,0.290192,0.609869,0.17034,0.954996,0.93974,0.847549,0.773106,0.18616,0.410181,0.4184,0.610404,0.858452,0.0503728,0.423916,0.536602,0.804341,0.934015,0.770581,0.518027,0.325818,0.449257,0.209709,0.727542,0.919016,0.12118,0.256979,0.487825,0.0788086,0.640004,0.798757,0.679181,0.490806,0.773293,0.666667,0.678032,0.291869,0.930548,0.687288,0.0830626,0.178298,0.655098,0.631424,0.30422,0.864508,0.65114,0.1406,0.490555,0.584555,0.514717,0.579059,0.660806,0.231103,0.547384,0.400439,0.573731,0.0387822,0.769535,0.426729,0.754314,0.571027,0.655914,0.973531,0.174273,0.445662,0.878033,0.76223,0.386294,0.060298,0.347817,0.130886,0.680994,0.287595,0.763847,0.942537,0.495167,0.0374076,0.0864708,0.16324,0.855424,0.0589529,0.326433,0.408112,0.750244,0.187994,0.256876,0.207282,0.99701,0.166102,0.975247,0.0809675,0.06046,0.557104,0.774054,0.960464,0.352397,0.573283,0.1461,0.572945,0.872954,0.00674444,0.626926,0.569142,0.960738,0.334513,0.121792,0.735761,0.0688959,0.294623,0.0594145,0.483135,0.415734,0.812077,0.16246,0.364662,0.888976,0.929512,0.32657,0.833748,0.605059,0.92844,0.588091,0.85396,0.195202,0.286753,0.691054,0.321619,0.622948,0.612934,0.754672,0.962931,0.553882,0.590116,0.209824,0.136785,0.905104,0.0541274,0.341734,0.609425,0.543337,0.139454,0.792141,0.577675,0.466696,0.379373,0.0186745,0.420448,0.968155,0.0397037,0.741607,0.259808,0.859108,0.0648335,0.822039,0.466079,0.787077,0.34236,0.301827,0.582731,0.388031,0.810914,0.54904,0.21272,0.42764,0.115483,0.681377,0.462236,0.837587,0.262586,0.354266,0.694497,0.738209,0.943886,0.281528,0.428038,0.387431,0.244057,0.976582,0.443449,0.0125905,0.800769,0.215141,0.611171,0.451183,0.851809,0.523026,0.481735,0.101427,0.399344,0.83454,0.876857,0.274629,0.504942,0.132391,0.443812,0.504365,0.786563,0.275218,0.396858,0.972862,0.463644,0.621631,0.413694,0.819361,0.299846,0.594517,0.0213855,0.536166,0.453834,0.115248,0.795641,0.558597,0.608286,0.570635,0.827244,0.229993,0.135023,0.755929,0.437489,0.251649,0.763337,0.695166,0.92929,0.73977,0.0636413,0.28144,0.0390871,0.740692,0.650614,0.44158,0.972578,0.965219,0.267351,0.390335,0.714319,0.096265,0.403073,0.885395,0.0424584,0.32212,0.167035,0.81485,0.0415843,0.665522,0.185211,0.855824,0.460718,0.219199,0.872805,0.533888,0.815921,0.445682,0.332161,0.381754,0.0734389,0.113597,0.381825,0.469513,0.213405,0.586579,0.50045,0.450084,0.2933,0.148289,0.859186,0.356205,0.761087,0.30902,0.218755,0.784385,0.250374,0.00789577,0.794693,0.602763,0.133238,0.254409,0.0033527,0.252734,0.809429,0.752088,0.704597,0.690602,0.769475,0.495401,0.659658,0.218683,0.162685,0.789004,0.10459,0.0685316,0.30085,0.507692,0.315687,0.0958361,0.496938,0.237299,0.432804,0.423287,0.177828,0.88323,0.306301,0.464628,0.61464,0.985741,0.884044,0.182341,0.331925,0.176866,0.987366,0.941046,0.344246,0.0813602,0.868021,0.956563,0.0810333,0.305202,0.146775,0.443295,0.30904,0.695557,0.590205,0.721657,0.039628,0.345535,0.540341,0.348046,0.00971013,0.00983649,0.522192,0.633335,0.909097,0.596655,0.106672,0.345998,0.0501063,0.609486,0.494198,0.530153,0.456395,0.93573,0.269058,0.907538,0.179821,0.361322,0.0900171,0.699695,0.487107,0.492038,0.592714,0.832177,0.942466,0.345294,0.890738,0.564421,0.598136,0.256223,0.763858,0.472914,0.0469827,0.0573008,0.408917,0.773912,0.225352,0.668891,0.278328,0.294287,0.222877,0.0357659,0.134579,0.622545,0.586179,0.649909,0.416983,0.814868,0.680574,0.495843,0.663692,0.147439,0.873071,0.246928,0.593838,0.96969,0.792636,0.89017,0.695733,0.41627,0.858926,0.41102,0.284356,0.949867,0.188175,0.525547,0.0733051,0.821682,0.231525,0.864948,0.909574,0.0451244,0.774428,0.229966,0.573919,0.432912,0.707591,0.536534,0.933117,0.877017,0.299099,0.217024,0.882967,0.062115,0.347099,0.844257,0.241162,0.20601,0.896799,0.452075,0.941864,0.231979,0.673088,0.815758,0.665044,0.951824,0.667476,0.649317,0.183507,0.857239,0.937272,0.12658,0.754329,0.201413,0.768774,0.630568,0.385736,0.985462,0.675206,0.471198,0.215258,0.383356,0.143731,0.12718,0.328249,0.131108,|0.193278,0.68253,0.537913,0.104837,0.584278,0.299583,0.961634,0.374844,0.429664,0.428037,0.305357,0.872254,0.469404,0.497521,0.584774,0.892995,0.340286,0.294653,0.654035,0.687192,0.621614,0.395997,0.0130247,0.765651,0.576025,0.717336,0.586479,0.0216752,0.422396,0.0112191,0.00415367,0.720817,0.403575,0.507371,0.638178,0.241579,0.291654,0.89283,0.295529,0.283211,0.704357,0.962988,0.0795491,0.484118,0.30169,0.102382,0.511003,0.963105,0.669576,0.853072,0.0904784,0.293056,0.335713,0.669118,0.845982,0.343548,0.133183,0.0820383,0.00518012,0.0857801,0.148579,0.33425,0.279673,0.235159,0.505602,0.99703,0.319669,0.872341,0.0645654,0.882375,0.937034,0.0721388,0.0327078,0.574789,0.408054,0.504682,0.537243,0.314372,0.277404,0.952273,0.269136,0.754936,0.677899,0.22678,0.870841,0.595253,0.900898,0.13331,0.535128,0.910667,0.887711,0.0977142,0.387054,0.623783,0.606436,0.56276,0.831561,0.0800207,0.085741,0.551693,0.541617,0.690621,0.796824,0.930684,0.550357,0.113897,0.87785,0.10254,0.60845,0.300075,0.73277,0.558412,0.175942,0.0349176,0.873232,0.197838,0.220674,0.387667,0.0696956,0.898124,0.309861,0.426559,0.498127,0.738393,0.0251711,0.762985,0.661165,0.0306501,0.736176,0.740288,0.789172,0.836974,0.522858,0.550594,0.258142,0.355062,0.258392,0.109699,0.961187,0.608052,0.323376,0.916386,0.888762,0.510315,0.0778555,0.459561,0.456482,0.750741,0.623877,0.673826,0.567178,0.834504,0.473833,0.181721,0.740778,0.597241,0.627735,0.281226,0.115031,0.997317,0.726403,0.899721,0.802815,0.696484,0.659051,0.949307,0.718295,0.0851287,0.202393,0.315978,0.32663,0.337133,0.704986,0.752884,0.953328,0.31164,0.530546,0.977174,0.444077,0.483453,0.851426,0.199916,0.483065,0.0917687,0.973979,0.111218,0.510107,0.899008,0.457643,0.452091,0.977699,0.533073,0.74371,0.137331,0.79758,0.876382,0.363632,0.224145,0.24652,0.285316,0.18643,0.98169,0.896725,0.231214,0.827137,0.314974,0.992956,0.520036,0.369004,0.897193,0.771641,0.374842,0.10079,0.731965,0.613753,0.501161,0.613983,0.029229,0.225185,0.88403,0.253862,0.0494777,0.0154789,0.523205,0.91587,0.102605,0.693567,0.482976,0.103807,0.579567,0.857904,0.68203,0.699307,0.761497,0.0543572,0.691635,0.547368,0.297044,0.668083,0.145648,0.859426,0.777866,0.26027,0.274782,0.837491,0.502521,0.438308,0.111819,0.938444,0.691408,0.460215,0.801791,0.277061,0.424866,0.0585092,0.700691,0.978946,0.799259,0.795414,0.437735,0.47027,0.328275,0.381872,0.538715,0.573573,0.406364,0.15938,0.486573,0.794847,0.40494,0.884141,0.721397,0.661089,0.474234,0.595154,0.130757,0.846751,0.26688,0.336953,0.860067,0.92602,0.654523,0.775461,0.526052,0.844748,0.966583,0.844416,0.721622,0.423867,0.188321,0.366215,0.808794,0.28604,0.681768,0.263134,0.245521,0.0481354,0.805154,0.74094,0.720856,0.993592,0.607691,0.190526,0.545731,0.735879,0.268961,0.93253,0.822756,0.86021,0.46107,0.846807,0.532195,0.979291,0.091644,0.0852882,0.571286,0.135366,0.154073,0.501602,0.804947,0.684499,0.517544,0.14482,0.337607,0.243343,0.629525,0.535821,0.0861185,0.607652,0.171523,0.584193,0.702549,0.228369,0.628236,0.915782,0.515801,0.154193,0.267718,0.0427985,0.639997,0.930679,0.164476,0.636658,0.930755,0.431067,0.162856,0.767592,0.907975,0.194318,0.313908,0.924107,0.206457,0.137032,0.742966,0.996662,0.425612,0.373577,0.487008,0.455527,0.316988,0.497143,0.0546404,0.994029,0.402562,0.846017,0.752208,0.304814,0.603638,0.520796,0.673649,0.86385,0.248232,0.503526,0.856196,0.958728,0.401143,0.59073,0.533165,0.12334,0.9895,0.8946,0.193587,0.581943,0.752509,0.943411,0.957811,0.796796,0.553438,0.66427,0.897263,0.512827,0.226941,0.15586,0.22362,0.555692,0.410138,0.786563,0.669984,0.0398573,0.370222,0.103485,0.868516,0.198624,0.937795,0.332368,0.169021,0.660401,0.928755,0.132761,0.824391,0.67462,0.80971,0.846097,0.0158851,0.684184,0.895143,0.917374,0.868487,0.415311,0.589937,0.968487,0.851305,0.319217,0.00379735,0.547342,0.357768,0.377356,0.166229,0.882873,0.110619,0.362206,0.128112,0.938902,0.640988,0.788177,0.438374,0.571648,0.153586,0.643565,0.195068,0.731267,0.766266,0.0903223,0.830655,0.289278,0.593787,0.113977,0.752458,0.107743,0.348773,0.319158,0.135706,0.755509,0.0707287,0.269526,0.105096,0.196172,0.899792,0.926143,0.743432,0.0845327,0.486769,0.945645,0.328348,0.452021,0.445905,0.620265,0.821352,0.845971,0.156898,0.321464,0.169599,0.43982,0.235548,0.300643,0.53292,0.414192,0.867363,0.209371,0.93357,0.948585,0.0827512,0.883346,0.349311,0.424685,0.0639446,0.670329,0.700568,0.936729,0.534499,0.142239,0.696496,0.392521,0.685279,0.306915,0.320029,0.0248289,0.873055,0.567717,0.562509,0.97644,0.0327773,0.464948,0.812509,0.11291,0.50678,0.213533,0.529941,0.107147,0.908058,0.778984,0.104587,0.38635,0.886687,0.117811,0.41455,0.26003,0.990008,0.501806,0.911298,0.372759,0.234703,0.165975,0.749553,0.338122,0.519644,0.742641,0.333849,0.259849,0.383237,0.510596,0.81583,0.313971,0.89216,0.505659,0.750689,0.710782,0.773529,0.275162,0.474235,0.415482,0.506794,0.0880135,0.114193,0.400879,0.451975,0.577689,0.303424,0.940977,0.987648,0.524476,0.606084,0.642826,0.168432,0.605369,0.426366,0.831097,0.504579,0.181908,0.00647575,0.259944,0.828834,0.777842,0.843787,0.805292,0.483496,0.392536,0.899874,0.291214,0.771725,0.382301,0.438178,0.797584,0.906418,0.0907258,0.406509,0.581577,0.233874,0.880883,0.625888,0.109064,0.595142,0.842832,0.915912,0.543153,0.28052,0.878909,0.239923,0.224346,0.798588,0.807125,0.367772,0.29807,0.358241,0.619796,0.820183,0.937307,0.508036,0.261846,0.92546,0.471558,0.733426,0.412589,0.230115,0.318327,0.151237,0.107232,0.911999,0.513441,0.271933,0.207365,0.215921,0.10352,0.244513,0.0482086,0.680979,0.160153,0.632529,0.616541,0.0490583,0.886469,0.151606,0.550583,0.794365,0.404523,0.0522265,0.406953,0.300925,0.285217,0.851915,0.630975,0.541198,0.527991,0.115455,0.056576,0.762302,0.579335,0.447962,0.481977,0.150358,0.849215,0.274369,0.922797,0.49378,0.479541,0.0125322,0.459818,0.097958,0.7902,0.805193,0.8743,0.511915,0.971012,0.0516917,0.256137,0.265657,0.810179,0.164045,0.771837,0.440079,0.127233,0.966802,0.536806,0.288287,0.113278,0.503556,0.357088,0.566859,0.672518,0.294807,0.533264,0.420032,0.559779,0.201312,0.252106,0.148783,0.189822,0.288653,0.291254,0.299502,0.402266,0.963641,0.167666,0.700178,0.711362,0.283913,0.513947,0.715668,0.705243,0.56677,0.453459,0.397453,0.520902,0.254805,0.304922,0.887442,0.408828,0.275112,0.580592,0.658852,0.871059,0.520346,0.456349,0.10346,0.499273,0.467443,0.59502,0.462365,0.626666,0.960304,0.564749,0.571774,0.500319,0.972583,0.289629,0.632803,0.19758,0.434078,0.875817,0.759102,0.745984,0.624215,0.927724,0.168861,0.943031,0.0693169,0.899107,0.206286,0.386027,0.526949,0.600781,0.157637,0.60739,0.684735,0.282944,0.919919,0.0673527,0.111538,0.337553,0.77013,0.752219,0.79869,0.0996907,0.0849695,0.658604,0.977846,0.978987,0.932305,0.140702,0.242865,0.802129,0.40772,0.708972,0.327742,0.835537,0.410083,0.383894,0.457191,0.355604,0.407096,0.451792,0.549227,0.803211,0.797374,0.653686,0.167464,0.98608,0.592416,0.806145,0.499926,0.3342,0.0352076,0.716238,0.0361692,0.75463,0.416653,0.715099,0.946216,0.149382,0.656127,0.438671,0.50579,0.757151,0.364091,0.481509,0.306635,0.308888,0.273985,0.917955,0.305655,0.581723,0.501202,0.91393,0.191285,0.770926,0.0543784,0.89062,0.992036,0.329898,0.202335,0.847342,0.326234,0.910297,0.73431,0.826788,0.115982,0.0286773,0.0539623,0.308716,0.572553,0.167454,0.930155,0.556042,0.00752437,0.630337,0.385794,0.215318,0.990867,0.9528,0.729904,0.151776,0.889958,0.496437,0.0404766,0.230002,0.637132,0.238727,0.79288,0.72674,0.526873,0.978729,0.815081,0.437308,0.812959,0.2665,0.388487,0.570855,0.753019,0.549662,0.968476,0.226458,0.027168,0.652272,0.431289,0.743065,0.0656527,0.738159,0.588955,0.983818,0.63458,0.00487095,0.580481,0.388955,0.325367,0.00164169,0.547868,0.00474554,0.73763,0.465543,0.569575,0.193813,0.329137,0.60765,0.441581,0.035779,0.328213,0.296401,0.0969132,0.467287,0.389396,0.539351,0.468164,0.623452,0.938381,0.544879,0.906297,0.573594,0.384275,0.48808,0.0582581,0.375446,0.149342,0.254541,0.644786,0.105411,0.499211,0.432158,0.585361,0.0342669,0.466783,0.801629,0.523431,0.0335139,0.438891,0.831966,0.084472,0.0824423,0.210684,0.147441,0.219153,0.490284,0.405588,0.838827,0.372458,0.570076,0.161766,0.243481,0.43274,0.590754,0.729346,0.813473,0.204277,0.618406,0.282169,0.298848,0.769972,0.937601,0.22168,0.896122,0.247022,0.814659,0.638854,0.0863482,0.556196,0.209848,0.991304,0.712402,0.667114,0.364929,0.634257,0.729773,0.582837,0.155727,0.787578,0.200937,0.754775,0.759291,0.783682,0.811293,0.45853,0.372402,0.00409162,0.114743,0.476249,0.91257,0.502205,0.0155239,0.781422,0.0550745,0.632352,0.711589,0.736372,0.82289,0.0078761,0.438054,0.863098,0.960329,0.305643,0.803593,0.341272,0.798883,0.845588,0.407497,0.913436,0.688277,0.101623,0.731058,0.0956016,0.742503,0.362269,0.357609,0.507329,0.996097,0.346224,0.202937,0.361483,0.542946,0.907229,0.0816894,0.0901714,0.209018,0.621066,0.947968,0.61894,0.850754,0.879421,0.187197,0.765369,0.057978,0.720009,0.830088,0.782435,0.995266,0.779782,0.696398,0.53704,0.458432,0.387643,0.643112,0.747231,|0.326052,0.625661,0.210566,0.0171365,0.575591,0.534769,0.625462,0.566361,0.81659,0.403747,0.914102,0.816264,0.629242,0.20529,0.331696,0.87017,0.353853,0.424815,0.175718,0.638797,0.0232641,0.114432,0.833577,0.723421,0.326446,0.124746,0.661182,0.855118,0.942219,0.441756,0.0840053,0.284802,0.971982,0.647672,0.18666,0.19996,0.51354,0.328416,0.807657,0.70295,0.50361,0.355791,0.654535,0.194272,0.472491,0.642421,0.555467,0.217335,0.262959,0.192861,0.25143,0.996274,0.830502,0.557611,0.887171,0.542034,0.918307,0.00515151,0.237029,0.213465,0.796193,0.166984,0.987201,0.635947,0.287736,0.730386,0.125846,0.444126,0.649823,0.7102,0.864655,0.625728,0.462625,0.622224,0.923765,0.125461,0.422166,0.235301,0.958558,0.606001,0.164665,0.762237,0.214185,0.885123,0.0582122,0.0343216,0.272356,0.807819,0.628243,0.977596,0.666451,0.194808,0.419156,0.817901,0.825431,0.757533,0.723658,0.844782,0.972699,0.153983,0.189146,0.914614,0.243773,0.215899,0.554773,0.963065,0.137081,0.0429372,0.506132,0.76156,0.42667,0.116859,0.748484,0.382923,0.762681,0.568603,0.330293,0.117152,0.765742,0.990025,0.221478,0.551566,0.117874,0.101477,0.476488,0.492809,0.341175,0.296857,0.0126152,0.207294,0.074596,0.092435,0.988592,0.130942,0.252406,0.155948,0.847581,0.380848,0.508641,0.784856,0.636734,0.0116083,0.526772,0.458233,0.956247,0.00637865,0.643136,0.806577,0.991072,0.0131455,0.800064,0.269587,0.984322,0.232832,0.167703,0.831834,0.761955,0.552164,0.709881,0.652333,0.881089,0.827356,0.980557,0.42009,0.594931,0.888423,0.906871,0.544075,0.453669,0.207313,0.922932,0.908363,0.974378,0.869834,0.038641,0.118756,0.892912,0.0127438,0.796884,0.874518,0.706107,0.752968,0.64838,0.174829,0.443675,0.303379,0.0319779,0.272672,0.212832,0.045018,0.137204,0.0698146,0.560511,0.425066,0.936525,0.573738,0.326257,0.421305,0.246733,0.527158,0.96806,0.912698,0.913383,0.520188,0.504568,0.385062,0.906204,0.465083,0.104239,0.188091,0.15132,0.753484,0.486898,0.0371853,0.917084,0.843394,0.930761,0.823936,0.670033,0.703326,0.244179,0.993468,0.674431,0.140123,0.573976,0.0170616,0.0604264,0.267863,0.983604,0.131199,0.994795,0.135463,0.682258,0.739055,0.853555,0.0745566,0.313396,0.644274,0.106219,0.819017,0.135291,0.942336,0.89542,0.717066,0.103529,0.740447,0.326524,0.404606,0.509887,0.189426,0.845637,0.0335671,0.00703758,0.100369,0.826284,0.821394,0.0422907,0.767239,0.45309,0.517281,0.698724,0.633104,0.378443,0.337533,0.252675,0.451184,0.260932,0.394884,0.510816,0.898465,0.260292,0.00102735,0.123018,0.28531,0.00309402,0.726173,0.257627,0.213519,0.187623,0.282769,0.788584,0.320774,0.477481,0.822701,0.850067,0.306104,0.193206,0.696332,0.951353,0.657607,0.827827,0.714353,0.569073,0.332747,0.985413,0.163649,0.421676,0.364371,0.82366,0.242014,0.0553784,0.769334,0.928945,0.348272,0.673994,0.957231,0.390532,0.231695,0.5043,0.278841,0.922672,0.964139,0.858178,0.261984,0.933503,0.907397,0.0398632,0.479065,0.969734,0.775761,0.0811913,0.847986,0.610933,0.618281,0.264283,0.305056,0.385162,0.333984,0.923154,0.493272,0.173629,0.674301,0.209185,0.110021,0.636169,0.0745244,0.259686,0.975945,0.075289,0.987718,0.435012,0.901367,0.453409,0.798341,0.3094,0.876519,0.356878,0.454979,0.210724,0.496472,0.564633,0.454254,0.415479,0.285901,0.663867,0.383616,0.552823,0.949953,0.973551,0.727535,0.467801,0.874823,0.867217,0.276891,0.799075,0.742343,0.517654,0.433791,0.548076,0.567934,0.645998,0.0571637,0.490685,0.031476,0.284474,0.157937,0.267812,0.635283,0.104616,0.510561,0.182494,0.32065,0.547481,0.313604,0.431839,0.210113,0.853127,0.874715,0.820807,0.147613,0.366127,0.744906,0.872099,0.633056,0.635203,0.0619823,0.835202,0.563577,0.970807,0.878609,0.399354,0.0853066,0.714978,0.468261,0.824768,0.137963,0.60205,0.886313,0.026913,0.966308,0.00711036,0.841986,0.369921,0.320125,0.658295,0.952589,0.396376,0.605119,0.690495,0.247993,0.140898,0.563694,0.330824,0.252548,0.230805,0.947407,0.19896,0.851737,0.671573,0.472342,0.884983,0.928501,0.650003,0.750978,0.193792,0.88943,0.441205,0.261284,0.741274,0.219597,0.295314,0.176515,0.834146,0.874312,0.949857,0.409137,0.49455,0.024412,0.931304,0.99495,0.867264,0.327021,0.814086,0.422643,0.0565673,0.0465558,0.848864,0.923955,0.142734,0.0699144,0.550079,0.587737,0.3742,0.138673,0.205649,0.393234,0.330444,0.213222,0.146878,0.0163164,0.89178,0.972753,0.158761,0.0938001,0.111175,0.732419,0.600256,0.892391,0.780936,0.675016,0.278636,0.979711,0.0851609,0.788639,0.407128,0.482975,0.0857458,0.289951,0.024147,0.155211,0.363258,0.0270892,0.513367,0.530244,0.0167423,0.881725,0.527195,0.981175,0.32968,0.369712,0.802494,0.360306,0.30265,0.698117,0.154549,0.28126,0.70539,0.140762,0.925821,0.535995,0.104632,0.639031,0.24403,0.419609,0.321902,0.660098,0.729949,0.664822,0.787913,0.568238,0.553634,0.925491,0.488151,0.394758,0.611556,0.820235,0.540461,0.699369,0.130316,0.373553,0.938016,0.907203,0.904936,0.904135,0.413302,0.101031,0.701807,0.623046,0.0885782,0.311724,0.101734,0.512325,0.312795,0.532951,0.846904,0.613799,0.300889,0.371848,0.60722,0.829847,0.56,0.769853,0.234955,0.253347,0.849137,0.562837,0.0912581,0.398771,0.281615,0.294444,0.0865752,0.940871,0.248569,0.990423,0.160718,0.778191,0.943901,0.97866,0.982374,0.483551,0.625435,0.135513,0.452373,0.551948,0.423762,0.713654,0.0102949,0.610088,0.989558,0.594042,0.786376,0.706257,0.123778,0.484711,0.117218,0.407947,0.302406,0.151033,0.101856,0.509826,0.101243,0.842544,0.131026,0.995285,0.577236,0.801768,0.606887,0.990561,0.0773707,0.292988,0.388041,0.983698,0.583417,0.535957,0.614936,0.654651,0.0916007,0.618045,0.241472,0.720832,0.397619,0.438191,0.257541,0.727126,0.527557,0.359678,0.999299,0.830822,0.831879,0.802615,0.117232,0.00428146,0.628874,0.744463,0.710993,0.481907,0.703174,0.429701,0.663496,0.457748,0.449642,0.900807,0.96583,0.195194,0.282803,0.176008,0.584952,0.307413,0.0695263,0.746398,0.102426,0.350745,0.653334,0.647746,0.690773,0.0421541,0.247033,0.280802,0.755744,0.60856,0.615181,0.287741,0.247882,0.757104,0.320585,0.131767,0.242703,0.91036,0.898022,0.0394098,0.807426,0.719422,0.164467,0.994278,0.945435,0.0939512,0.949191,0.893164,0.36936,0.703336,0.291355,0.595675,0.247441,0.165588,0.0780267,0.0985534,0.900543,0.598424,0.866898,0.764179,0.391517,0.463207,0.847377,0.847225,0.37533,0.0970033,0.38985,0.822345,0.476001,0.742952,0.524872,0.930459,0.712909,0.340883,0.443957,0.383233,0.999495,0.0624834,0.510532,0.660835,0.939176,0.318912,0.31829,0.663245,0.241469,0.663467,0.664337,0.832431,0.686186,0.27879,0.411823,0.150679,0.606687,0.578403,0.186751,0.638545,0.451633,0.67442,0.899407,0.72798,0.211775,0.0225335,0.517923,0.154812,0.612615,0.281276,0.979809,0.863838,0.667606,0.747245,0.0272114,0.355405,0.581828,0.118905,0.293433,0.148464,0.670263,0.223799,0.560141,0.618484,0.0576749,0.798281,0.401217,0.410674,0.437913,0.096137,0.394049,0.707858,0.85054,0.520833,0.902512,0.684195,0.361038,0.824259,0.311078,0.282854,0.799587,0.682516,0.682092,0.591206,0.413998,0.648356,0.520359,0.845162,0.357458,0.723223,0.0125099,0.300822,0.170861,0.0229371,0.303282,0.0693433,0.692138,0.332886,0.257189,0.298733,0.594809,0.197878,0.399717,0.17498,0.160162,0.740381,0.950147,0.527626,0.335649,0.348378,0.242476,0.369268,0.7364,0.628902,0.591382,0.64935,0.440662,0.100908,0.854522,0.959479,0.239579,0.755631,0.654418,0.0612912,0.125723,0.685673,0.577189,0.934639,0.842832,0.988656,0.337061,0.441582,0.903625,0.339083,0.789754,0.232984,0.0130059,0.39218,0.375407,0.324198,0.630319,0.563193,0.139682,0.552993,0.683761,0.765896,0.625041,0.347791,0.650099,0.150276,0.0603735,0.432805,0.438643,0.15151,0.496337,0.882853,0.327739,0.616639,0.161886,0.488377,0.79038,0.282632,0.902848,0.0941623,0.700713,0.53858,0.599499,0.0069837,0.324393,0.103494,0.608575,0.937639,0.93732,0.0353931,0.577061,0.595832,0.11913,0.926844,0.880826,0.480339,0.161541,0.614295,0.90997,0.322389,0.752821,0.373523,0.557915,0.790585,0.0247434,0.629829,0.843396,0.0451381,0.912833,0.73892,0.902932,0.862447,0.900412,0.135017,0.460762,0.231915,0.885498,0.0445744,0.304223,0.360929,0.861911,0.121537,0.027675,0.70659,0.0931825,0.950667,0.206223,0.133902,0.460165,0.120887,0.344404,0.70249,0.993033,0.24093,0.294968,0.18643,0.559901,0.381556,0.565316,0.343238,0.509148,0.921521,0.308779,0.399002,0.376348,0.16791,0.290593,0.812186,0.96142,0.784414,0.0207039,0.803423,0.700366,0.647763,0.0369272,0.24443,0.185101,0.607869,0.515687,0.540873,0.195825,0.612682,0.469508,0.0652575,0.887749,0.789008,0.251532,0.65303,0.990418,0.969467,0.26699,0.637742,0.220441,0.872416,0.829737,0.368001,0.752237,0.603315,0.341835,0.742178,0.354136,0.830051,0.0989305,0.897198,0.718866,0.263016,0.84102,0.575209,0.673999,0.681348,0.997206,0.296405,0.368845,0.709139,0.0778173,0.262566,0.228573,0.368971,0.375694,0.395639,0.879153,0.822514,0.0134448,0.0799869,0.3234,0.5618,0.147903,0.124693,0.316631,0.0188346,0.420384,0.288645,0.000570476,0.799875,0.665934,0.462892,0.00187427,0.225248,0.174106,0.663774,0.833427,0.857828,0.598932,0.237832,0.190155,0.496775,0.235097,0.0348866,0.428003,0.958465,0.703276,0.83393,0.150065,0.0374507,0.624601,0.236964,0.812857,0.137878,0.606973,0.519446,|0.740329,0.435775,0.528219,0.00726014,0.743884,0.447176,0.198919,0.881303,0.0489575,0.1295,0.85151,0.132664,0.599801,0.173464,0.892516,0.180681,0.148979,0.10651,0.170372,0.290277,0.268501,0.659249,0.322465,0.28928,0.642953,0.412382,0.617752,0.598176,0.0916436,0.857665,0.524372,0.33497,0.53284,0.582246,0.738663,0.124898,0.0598443,0.96874,0.672342,0.86888,0.418076,0.260633,0.392768,0.989759,0.324967,0.396702,0.610517,0.252687,0.304956,0.306423,0.759065,0.24833,0.242205,0.226362,0.531106,0.31537,0.30172,0.760942,0.362615,0.635096,0.706314,0.161086,0.794437,0.34608,0.945542,0.316267,0.293806,0.267789,0.236525,0.0449335,0.285848,0.888018,0.306054,0.919212,0.324247,0.273917,0.42587,0.16286,0.39604,0.517958,0.987324,0.724986,0.936612,0.686235,0.58178,0.237945,0.30857,0.349617,0.32194,0.632872,0.867401,0.724604,0.290319,0.77215,0.217469,0.561337,0.889951,0.0521858,0.832723,0.381033,0.754336,0.395336,0.653447,0.140498,0.482727,0.5678,0.158955,0.946096,0.176231,0.917125,0.24271,0.978463,0.743348,0.760519,0.549528,0.538619,0.777741,0.189989,0.0857795,0.00827521,0.066344,0.935466,0.665029,0.624667,0.33297,0.24754,0.273518,0.476273,0.341088,0.885673,0.863878,0.151997,0.553271,0.691996,0.96041,0.395339,0.426841,0.527573,0.248641,0.366047,0.148317,0.048914,0.375678,0.334139,0.296874,0.621838,0.219454,0.200375,0.360607,0.368078,0.249821,0.606589,0.871848,0.917101,0.685187,0.914039,0.860743,0.89213,0.880705,0.0827025,0.126033,0.621723,0.651204,0.0164363,0.407117,0.184264,0.057371,0.693389,0.318859,0.502014,0.706086,0.592119,0.261703,0.7994,0.662369,0.149702,0.384668,0.601082,0.544265,0.202149,0.0329116,0.269838,0.425618,0.883097,0.750301,0.601591,0.716118,0.88764,0.738586,0.314377,0.44727,0.63322,0.383645,0.597965,0.933058,0.450994,0.297031,0.674382,0.570452,0.56964,0.401522,0.119829,0.841263,0.0158645,0.3283,0.495227,0.95462,0.064424,0.321116,0.858175,0.551907,0.0485088,0.680598,0.47542,0.19625,0.98594,0.129286,0.153203,0.741951,0.482601,0.176175,0.16019,0.833919,0.0294647,0.212181,0.251352,0.861406,0.432661,0.840927,0.976979,0.300871,0.579084,0.373605,0.22483,0.229243,0.390957,0.319505,0.452545,0.328007,0.901287,0.266941,0.62885,0.25891,0.292877,0.590097,0.598519,0.107628,0.476164,0.262959,0.0667708,0.0184537,0.0577747,0.460525,0.510215,0.426677,0.453471,0.904658,0.890868,0.743683,0.0834971,0.0339248,0.42192,0.436358,0.126043,0.907267,0.55029,0.775514,0.130256,0.483333,0.907837,0.831088,0.288935,0.0674566,0.85858,0.297433,0.883568,0.324734,0.902472,0.909079,0.237886,0.0917511,0.950629,0.217672,0.0753899,0.0644609,0.00468343,0.333035,0.331319,0.733617,0.110807,0.133894,0.125544,0.735319,0.0880749,0.898435,0.291126,0.873324,0.535494,0.104334,0.220799,0.172506,0.784468,0.29487,0.00118363,0.456191,0.490408,0.472928,0.646837,0.474336,0.74559,0.0937348,0.286719,0.266995,0.816001,0.253201,0.665367,0.255082,0.516232,0.244493,0.137743,0.00344878,0.351139,0.296506,0.384085,0.689166,0.413,0.103706,0.350144,0.668431,0.207827,0.408651,0.0205275,0.258479,0.203067,0.16722,0.564803,0.671396,0.886096,0.18947,0.101834,0.0569564,0.82659,0.443233,0.97672,0.628337,0.896234,0.313669,0.0199866,0.855347,0.618299,0.885935,0.653791,0.655719,0.413325,0.559267,0.697414,0.174946,0.603542,0.256389,0.766622,0.030726,0.634518,0.0518486,0.913086,0.533335,0.579603,0.574027,0.830545,0.838672,0.76459,0.411289,0.377244,0.182523,0.493291,0.802742,0.657837,0.345491,0.263269,0.598176,0.0469495,0.584629,0.590528,0.242769,0.17529,0.211918,0.425788,0.323192,0.500488,0.197267,0.14473,0.664484,0.927141,0.325506,0.924378,0.0578756,0.558094,0.16119,0.472483,0.606718,0.366566,0.841435,0.981361,0.857481,0.0457262,0.380958,0.145649,0.551657,0.0577485,0.735921,0.260124,0.224159,0.440604,0.179242,0.071267,0.306179,0.0496904,0.188782,0.946196,0.727291,0.181883,0.255898,0.409353,0.388327,0.913738,0.567649,0.0251464,0.674221,0.826533,0.502709,0.475525,0.133908,0.784927,0.776906,0.633347,0.781792,0.0617005,0.553601,0.84826,0.747871,0.569049,0.829748,0.562781,0.00904679,0.183283,0.822843,0.0817901,0.023864,0.70785,0.338745,0.744454,0.991984,0.289882,0.463108,0.55662,0.265356,0.225379,0.166724,0.619227,0.0213692,0.379916,0.831186,0.763834,0.16579,0.322393,0.796733,0.981101,0.827888,0.857241,0.512201,0.0539536,0.377932,0.482638,0.338745,0.754381,0.323776,0.841639,0.535651,0.712005,0.18851,0.608648,0.500634,0.533915,0.315283,0.843302,0.188091,0.62986,0.677042,0.138443,0.349407,0.8764,0.146528,0.18294,0.521167,0.312206,0.10705,0.371264,0.758319,0.995111,0.594751,0.475289,0.458733,0.459949,0.285196,0.549724,0.890895,0.134877,0.586071,0.925832,0.685465,0.639079,0.781653,0.559044,0.369369,0.493689,0.71499,0.301766,0.45479,0.364618,0.0985448,0.165468,0.572859,0.295476,0.482566,0.494884,0.0184703,0.737779,0.473091,0.274621,0.603319,0.320803,0.264578,0.994564,0.671226,0.903711,0.0689706,0.489522,0.997012,0.723734,0.910555,0.707532,0.0857165,0.288739,0.685095,0.782824,0.400182,0.77608,0.00746495,0.508986,0.796911,0.187125,0.452872,0.955468,0.0355947,0.679696,0.423297,0.525794,0.207997,0.423867,0.827448,0.914554,0.139404,0.419736,0.365897,0.578706,0.594364,0.967529,0.76105,0.0488485,0.234706,0.242632,0.864984,0.192195,0.318101,0.860012,0.0241374,0.909202,0.873308,0.556679,0.461946,0.277757,0.100176,0.222691,0.758918,0.88791,0.0474805,0.299014,0.493874,0.8712,0.301283,0.707952,0.927129,0.5249,0.916701,0.17344,0.126995,0.102734,0.186144,0.0226429,0.0881763,0.974148,0.813956,0.64431,0.58459,0.800847,0.712138,0.802639,0.146751,0.143639,0.925108,0.643048,0.840088,0.295299,0.329394,0.96439,0.650257,0.254089,0.806764,0.978316,0.266314,0.731022,0.260607,0.969226,0.636372,0.778148,0.807687,0.00985157,0.921452,0.593772,0.358413,0.314247,0.45141,0.297232,0.015422,0.630886,0.953091,0.505213,0.505915,0.473786,0.114485,0.305225,0.0366384,0.523171,0.506018,0.360704,0.247328,0.943065,0.522707,0.784695,0.531941,0.276135,0.129138,0.105595,0.323851,0.0114272,0.248659,0.565872,0.936946,0.728301,0.977244,0.609168,0.0969484,0.170322,0.0489324,0.992327,0.431891,0.0740115,0.0221781,0.605315,0.483233,0.248089,0.844007,0.722782,0.854833,0.284542,0.603446,0.363542,0.471452,0.142943,0.0262153,0.766144,0.984471,0.693248,0.538719,0.664446,0.204763,0.6635,0.578103,0.0153928,0.420978,0.75816,0.413818,0.69678,0.768068,0.822742,0.116895,0.814561,0.131374,0.720267,0.253009,0.0058732,0.514258,0.121881,0.909461,0.852358,0.440414,0.401057,0.459139,0.033048,0.715743,0.178681,0.914062,0.823353,0.495445,0.705306,0.43349,0.435452,0.522352,0.391528,0.376128,0.879099,0.064046,0.649898,0.228688,0.290299,0.342349,0.328628,0.588421,0.965465,0.580768,0.00339544,0.777935,0.67938,0.778832,0.391161,0.0772837,0.856151,0.637982,0.518499,0.370273,0.60616,0.675675,0.748554,0.5711,0.850304,0.0105945,0.821292,0.821267,0.667764,0.923585,0.414753,0.482599,0.329534,0.612482,0.55775,0.993229,0.353494,0.263922,0.538101,0.214718,0.159571,0.589398,0.216987,0.456549,0.465042,0.417775,0.264869,0.0467925,0.0176808,0.878905,0.251891,0.0732191,0.596543,0.962872,0.878888,0.738862,0.0796453,0.0120808,0.232515,0.0715708,0.799073,0.57829,0.330903,0.686355,0.973862,0.249579,0.380871,0.529386,0.730773,0.526788,0.438889,0.479166,0.0666543,0.0833768,0.329179,0.988566,0.934615,0.422933,0.713652,0.710676,0.824679,0.28774,0.128869,0.949762,0.0659449,0.608332,0.0662083,0.469016,0.753757,0.509072,0.752281,0.150846,0.20256,0.89903,0.295874,0.134552,0.157491,0.477961,0.944472,0.062652,0.960335,0.196804,0.188775,0.261474,0.172229,0.154469,0.187802,0.146413,0.439069,0.833817,0.186712,0.804004,0.438633,0.565746,0.0816253,0.642986,0.979695,0.905307,0.763112,0.956209,0.0126897,0.206184,0.874875,0.763456,0.306524,0.74413,0.0841019,0.750071,0.13109,0.883632,0.51655,0.435263,0.840708,0.225123,0.756039,0.926362,0.568454,0.131491,0.173612,0.279297,0.509258,0.592191,0.0688925,0.650116,0.586283,0.154089,0.94179,0.668956,0.500946,0.991416,0.816066,0.312679,0.0739431,0.892295,0.321696,0.787846,0.326903,0.0175583,0.102879,0.402504,0.413374,0.91377,0.785833,0.527447,0.622023,0.979023,0.426127,0.896668,0.968784,0.242165,0.268405,0.381532,0.268882,0.210735,0.706447,0.0306489,0.730193,0.971085,0.973806,0.984241,0.0251893,0.857607,0.0722429,0.215234,0.89797,0.188384,0.636811,0.40097,0.708021,0.846533,0.680044,0.432636,0.849905,0.448797,0.75293,0.503546,0.0259939,0.801779,0.285386,0.583265,0.770062,0.264509,0.867849,0.0238665,0.328486,0.790333,0.536145,0.282709,0.548728,0.676862,0.651218,0.124852,0.782779,0.4744,0.989864,0.739625,0.593658,0.0443507,0.218163,0.0340017,0.565475,0.123303,0.126358,0.764522,0.504398,0.355346,0.577399,0.745516,0.644077,0.640719,0.533601,0.360976,0.799985,0.950917,0.400125,0.623959,0.521985,0.172523,0.874176,0.528138,0.0211533,0.290439,0.0848555,0.911327,0.750556,0.914546,0.275091,0.346195,0.979905,0.922512,0.0323619,0.173751,0.865547,0.365574,0.00256103,0.546424,0.857198,0.274909,0.577691,0.400822,0.229991,0.852599,0.199599,0.589158,0.374588,0.576681,0.725179,0.0415941,0.652915,0.255895,0.21977,0.939769,0.654705,0.269777,0.396352,0.263604,0.858607,0.461779,0.980873,0.405809,0.876725,|0.292145,0.831354,0.963486,0.962129,0.969103,0.879845,0.0894138,0.817075,0.489863,0.738673,0.937285,0.928912,0.936927,0.808946,0.161769,0.307114,0.979079,0.104119,0.230949,0.24197,0.887804,0.915311,0.51135,0.719861,0.445234,0.959741,0.629556,0.605197,0.709814,0.417754,0.340448,0.817725,0.44087,0.966981,0.268551,0.198915,0.557416,0.107998,0.973787,0.190973,0.526076,0.319477,0.751409,0.585223,0.116164,0.604099,0.866884,0.229112,0.796552,0.130248,0.363675,0.368125,0.550888,0.507202,0.580037,0.737236,0.0706581,0.311893,0.317874,0.652341,0.260558,0.960252,0.671887,0.61965,0.327754,0.988115,0.857893,0.268673,0.829384,0.0606021,0.27109,0.580758,0.0978055,0.939114,0.151832,0.600748,0.110245,0.580901,0.778484,0.577014,0.230828,0.814883,0.166842,0.254337,0.891375,0.174546,0.944431,0.65823,0.231892,0.291346,0.718707,0.284433,0.664238,0.0602426,0.73352,0.894898,0.945798,0.175315,0.811368,0.472762,0.639032,0.106772,0.633592,0.10277,0.8759,0.906704,0.80483,0.444588,0.0918138,0.47717,0.522561,0.341204,0.341898,0.91603,0.824644,0.24188,0.270718,0.62361,0.657069,0.685562,0.666314,0.424591,0.652211,0.115771,0.0303538,0.580875,0.261758,0.151463,0.345493,0.842407,0.267685,0.609086,0.92101,0.786331,0.244452,0.726508,0.426033,0.0598707,0.771818,0.161709,0.748322,0.189551,0.434623,0.159154,0.251715,0.433132,0.156068,0.0416318,0.577217,0.69508,0.827713,0.107665,0.0237848,0.653425,0.205879,0.42158,0.307824,0.891745,0.554819,0.105558,0.596991,0.384808,0.950756,0.699908,0.597163,0.175495,0.141259,0.194239,0.312688,0.918134,0.150782,0.859824,0.997924,0.273334,0.720312,0.611927,0.285491,0.592064,0.0826527,0.63169,0.0659104,0.541643,0.878763,0.472241,0.278795,0.918701,0.75573,0.69916,0.277379,0.485759,0.307598,0.17139,0.58205,0.0120558,0.908041,0.379757,0.309945,0.806859,0.573233,0.959679,0.550293,0.223612,0.49881,0.900097,0.317202,0.724066,0.435996,0.303941,0.643335,0.194147,0.981188,0.674959,0.44857,0.0325312,0.186247,0.090983,0.804132,0.0420987,0.859936,0.317673,0.283397,0.675496,0.67635,0.0468068,0.333463,0.17224,0.500889,0.845757,0.0366941,0.111041,0.979216,0.951691,0.414937,0.204275,0.0265735,0.549263,0.884122,0.702707,0.94294,0.537368,0.000330091,0.446954,0.196911,0.494583,0.14074,0.782932,0.226611,0.695539,0.916232,0.164197,0.727247,0.464732,0.712703,0.191833,0.0349101,0.812558,0.814342,0.501349,0.535879,0.114012,0.375949,0.668427,0.662049,0.164728,0.676954,0.647173,0.119478,0.405321,0.490834,0.990891,0.594293,0.130086,0.351088,0.925079,0.771243,0.820276,0.115381,0.278542,0.0145385,0.524473,0.256692,0.162476,0.314016,0.336194,0.472217,0.14081,0.306841,0.89382,0.530014,0.37406,0.430577,0.159479,0.951566,0.835229,0.379399,0.745985,0.828129,0.38546,0.479866,0.287359,0.996186,0.897258,0.0842379,0.315316,0.893455,0.544209,0.0410921,0.686002,0.262223,0.181425,0.736563,0.91004,0.0933605,0.404695,0.613314,0.362228,0.412673,0.169944,0.306172,0.97657,0.510115,0.268661,0.291571,0.740999,0.263461,0.822355,0.169837,0.328038,0.546114,0.42573,0.988896,0.170052,0.726379,0.213446,0.00694364,0.33516,0.533396,0.710734,0.0135049,0.552603,0.868633,0.239894,0.786276,0.360694,0.576496,0.876346,0.652977,0.817117,0.0410056,0.285831,0.0793569,0.717474,0.990229,0.765629,0.858512,0.429449,0.019854,0.0941552,0.158175,0.118711,0.907151,0.465696,0.491862,0.241766,0.00154161,0.153763,0.169989,0.585261,0.294102,0.846942,0.202461,0.784969,0.304012,0.231059,0.901676,0.417259,0.218743,0.661956,0.877476,0.102031,0.431776,0.759178,0.396471,0.429677,0.788041,0.0465693,0.372189,0.24072,0.295439,0.0169297,0.42148,0.121322,0.758045,0.813797,0.276883,0.131898,0.350064,0.693325,0.645654,0.676115,0.385369,0.0155542,0.907853,0.869898,0.258078,0.271778,0.00635052,0.226642,0.521218,0.515756,0.39618,0.581721,0.204776,0.572388,0.849465,0.27341,0.747457,0.0596479,0.683678,0.159757,0.760153,0.918547,0.0226504,0.780828,0.299731,0.384796,0.188658,0.642266,0.444822,0.893897,0.599118,0.731241,0.929633,0.570278,0.43283,0.585177,0.686395,0.174393,0.933778,0.722538,0.188104,0.760069,0.0816626,0.856994,0.82887,0.740318,0.599656,0.374406,0.316846,0.102572,0.654145,0.319276,0.308898,0.631784,0.69343,0.883143,0.952331,0.397183,0.243579,0.3793,0.774567,0.804707,0.0112275,0.37712,0.00726134,0.587197,0.00236648,0.223231,0.536149,0.464907,0.883131,0.225514,0.489308,0.330543,0.846433,0.77308,0.266113,0.608411,0.699475,0.561729,0.416849,0.141155,0.841218,0.0822201,0.0321209,0.458717,0.143109,0.614854,0.73796,0.0812925,0.862256,0.52567,0.179076,0.193042,0.0169708,0.882034,0.506351,0.851853,0.868615,0.206618,0.450286,0.066812,0.0539227,0.195475,0.882477,0.282269,0.833032,0.945779,0.0815904,0.895997,0.884221,0.356507,0.440681,0.612211,0.386657,0.213509,0.371534,0.774664,0.115924,0.0663994,0.74579,0.886991,0.433312,0.197544,0.929167,0.89644,0.96659,0.934757,0.00275356,0.272733,0.636997,0.718207,0.0462778,0.592857,0.936891,0.998176,0.904153,0.659254,0.018454,0.409134,0.857042,0.799573,0.520398,0.534718,0.146548,0.367411,0.376534,0.891889,0.473065,0.212434,0.0175743,0.940661,0.957718,0.87559,0.229364,0.921378,0.67981,0.412568,0.538193,0.875976,0.191388,0.384944,0.831391,0.233689,0.294627,0.124666,0.613569,0.173745,0.400297,0.36554,0.134204,0.971068,0.0157815,0.351631,0.607114,0.728706,0.604262,0.282715,0.395638,0.102998,0.2209,0.150359,0.085978,0.408844,0.674577,0.403553,0.685427,0.588891,0.664566,0.603601,0.157485,0.0521734,0.539086,0.295191,0.744386,0.521364,0.834359,0.469226,0.263969,0.465993,0.838873,0.958642,0.501259,0.964878,0.0033986,0.604044,0.462544,0.514506,0.670766,0.236616,0.0131583,0.179336,0.0527776,0.570801,0.153445,0.930838,0.138168,0.395909,0.980273,0.46301,0.379365,0.651778,0.04173,0.300882,0.150845,0.499391,0.177602,0.743178,0.408538,0.0475251,0.363982,0.302297,0.569608,0.446947,0.162813,0.989109,0.305555,0.633433,0.82149,0.0534149,0.208447,0.359839,0.631326,0.351969,0.700284,0.362169,0.324176,0.660292,0.15835,0.244531,0.342399,0.061671,0.364747,0.214869,0.448993,0.947773,0.0888175,0.55432,0.243209,0.72586,0.0676081,0.366751,0.183505,0.550335,0.271199,0.704673,0.25748,0.512716,0.795329,0.754052,0.124422,0.760087,0.408206,0.544239,0.38362,0.663427,0.0366963,0.290889,0.596072,0.664054,0.951429,0.105028,0.00157368,0.545947,0.423326,0.0760355,0.355116,0.59068,0.994358,0.902095,0.797081,0.987124,0.0742574,0.756355,0.906558,0.348107,0.17449,0.691024,0.997289,0.321938,0.668643,0.324901,0.751601,0.00521988,0.282808,0.284463,0.350748,0.66495,0.876467,0.362828,0.606988,0.758952,0.545295,0.733617,0.323039,0.549411,0.0398667,0.502453,0.331717,0.790108,0.379025,0.61954,0.324452,0.648913,0.686909,0.147661,0.658556,0.575628,0.877711,0.434521,0.150579,0.288414,0.850515,0.885765,0.960261,0.638545,0.472568,0.644127,0.796982,0.471794,0.0858833,0.1285,0.891412,0.772618,0.335663,0.300044,0.798493,0.546691,0.169928,0.561978,0.587514,0.364699,0.624867,0.330872,0.249209,0.685443,0.629588,0.628277,0.250097,0.800823,0.444256,0.664084,0.126797,0.347144,0.626561,0.335881,0.247592,0.2269,0.790839,0.891645,0.772706,0.594427,0.313717,0.518496,0.604596,0.560618,0.961208,0.081141,0.571057,0.571491,0.396124,0.940403,0.0826937,0.606516,0.271787,0.540057,0.0687873,0.736312,0.192206,0.0299428,0.142867,0.875305,0.682044,0.50708,0.640751,0.0858111,0.266027,0.86962,0.284484,0.547021,0.423438,0.901929,0.556192,0.172136,0.945893,0.912723,0.973628,0.951131,0.439464,0.609403,0.734575,0.853169,0.198652,0.637742,0.17667,0.394522,0.819344,0.137506,0.803848,0.970327,0.885921,0.138122,0.190815,0.264093,0.989133,0.831684,0.189488,0.790108,0.0908866,0.936951,0.167104,0.659637,0.31822,0.942521,0.217013,0.288837,0.165917,0.666494,0.79145,0.290101,0.119239,0.381308,0.420908,0.618297,0.744946,0.231788,0.967336,0.265265,0.482135,0.126846,0.128811,0.990865,0.293826,0.346274,0.573228,0.77408,0.919001,0.208699,0.333087,0.548959,0.692568,0.207866,0.741932,0.608051,0.612005,0.335199,0.597157,0.503566,0.669456,0.561064,0.229354,0.962646,0.893332,0.891503,0.889174,0.9046,0.179226,0.487577,0.345496,0.0767018,0.85897,0.246331,0.507572,0.0772575,0.768814,0.679848,0.958544,0.204942,0.697345,0.637214,0.0970581,0.161409,0.343093,0.409438,0.500688,0.494525,0.575903,0.918212,0.313501,0.658697,0.175306,0.340604,0.373823,0.0330665,0.01217,0.895756,0.749026,0.625511,0.495438,0.182609,0.68181,0.607061,0.395614,0.672597,0.796888,0.195257,0.433136,0.0989665,0.0193272,0.746227,0.370061,0.22434,0.51296,0.10878,0.672954,0.225438,0.470181,0.206393,0.612228,0.346751,0.383067,0.505416,0.76503,0.200158,0.865432,0.79339,0.591087,0.750639,0.333528,0.327457,0.414875,0.565597,0.579302,0.566665,0.551295,0.924156,0.618594,0.123332,0.254597,0.730099,0.016008,0.366498,0.772345,0.0642347,0.695935,0.282036,0.857898,0.385954,0.934128,0.776533,0.689937,0.510294,0.23663,0.00886387,0.550193,0.739555,0.579349,0.633546,0.319145,0.979909,0.104212,0.342827,0.299714,0.445657,0.104588,0.554215,0.380785,0.1926,0.830224,0.256922,0.497175,0.33315,0.038273,0.105598,0.107665,0.434725,0.439568,0.827434,0.767839,0.699379,0.439341,0.412965,0.783126,0.620217,0.102605,0.148101,0.116389,0.631997,0.440228,0.919585,|0.756708,0.602713,0.712265,0.495189,0.417202,0.216071,0.48652,0.905504,0.142458,0.616497,0.98303,0.996697,0.458677,0.845064,0.238841,0.936425,0.772611,0.823967,0.861621,0.1115,0.0396405,0.218807,0.275805,0.53798,0.835956,0.658686,0.527488,0.251131,0.937893,0.770377,0.718774,0.162615,0.454875,0.636617,0.384533,0.935577,0.371661,0.430327,0.630462,0.491915,0.345461,0.205752,0.959679,0.335402,0.495723,0.275839,0.0574963,0.466733,0.662969,0.123753,0.0158318,0.532224,0.307545,0.891421,0.863907,0.148571,0.980078,0.37603,0.715515,0.0768756,0.647535,0.510207,0.524792,0.267027,0.0518631,0.244496,0.164554,0.738991,0.331542,0.458458,0.174335,0.771841,0.874099,0.376857,0.502674,0.893279,0.726879,0.812858,0.17157,0.326454,0.598522,0.452889,0.122502,0.66394,0.100339,0.986139,0.514292,0.515301,0.496707,0.347769,0.642537,0.779736,0.265552,0.716813,0.232979,0.735172,0.179944,0.43658,0.434203,0.134162,0.785982,0.192151,0.867469,0.890154,0.472901,0.430679,0.357938,0.64057,0.538289,0.864884,0.0968566,0.346899,0.251959,0.832821,0.455865,0.999766,0.0209344,0.683523,0.952868,0.0641364,0.155979,0.696097,0.975474,0.115842,0.982711,0.526437,0.0707315,0.564167,0.88915,0.603581,0.569539,0.206164,0.879127,0.983195,0.645847,0.13487,0.240643,0.0299599,0.780571,0.331642,0.824906,0.302267,0.20205,0.931491,0.434913,0.97681,0.956896,0.688552,0.52101,0.139235,0.654244,0.697635,0.518951,0.963726,0.350244,0.119763,0.223084,0.680806,0.822865,0.754424,0.213493,0.999407,0.239241,0.643436,0.717426,0.664575,0.249656,0.815605,0.581911,0.50259,0.424376,0.0267467,0.0796942,0.646696,0.813248,0.500421,0.990338,0.710499,0.745163,0.0907515,0.863038,0.520803,0.350811,0.591204,0.228235,0.0118883,0.210544,0.155684,0.440317,0.499527,0.483741,0.217635,0.220597,0.477996,0.233461,0.658711,0.264494,0.425291,0.38462,0.602482,0.613935,0.975978,0.266742,0.752837,0.308821,0.616775,0.0558072,0.149883,0.603279,0.859022,0.774547,0.997953,0.458864,0.229606,0.0106225,0.753627,0.885934,0.796344,0.552313,0.932431,0.171915,0.767856,0.215436,0.136285,0.491404,0.213076,0.680933,0.469027,0.845985,0.0356142,0.566292,0.39697,0.678371,0.581461,0.0156137,0.755119,0.67433,0.974033,0.427325,0.758848,0.0384911,0.20592,0.00527835,0.248021,0.407332,0.669819,0.771474,0.00146508,0.767743,0.55323,0.206655,0.521528,0.120641,0.184707,0.642983,0.157985,0.858658,0.0953789,0.103037,0.516726,0.0946473,0.688808,0.791456,0.751453,0.650118,0.493575,0.0952218,0.379503,0.511216,0.682852,0.795066,0.260157,0.266465,0.33238,0.740439,0.254564,0.577623,0.35423,0.0315852,0.669892,0.138656,0.625605,0.999166,0.228237,0.369816,0.884585,0.587866,0.869238,0.293454,0.424177,0.0389696,0.192592,0.0424421,0.342521,0.565686,0.69829,0.338563,0.381527,0.941735,0.783194,0.313607,0.922522,0.237332,0.225898,0.82357,0.112666,0.0404948,0.566006,0.68534,0.204159,0.881872,0.962017,0.209316,0.64752,0.296991,0.497545,0.217163,0.828171,0.618951,0.672037,0.484981,0.462632,0.164665,0.661013,0.562133,0.208443,0.507291,0.89977,0.685862,0.46843,0.0207567,0.21978,0.27188,0.488848,0.812328,0.584217,0.456279,0.985803,0.899803,0.796101,0.62284,0.44715,0.818056,0.804081,0.305956,0.757593,0.881878,0.816534,0.511259,0.825801,0.82408,0.901944,0.74247,0.231748,0.57955,0.868668,0.279143,0.413639,0.539135,0.252154,0.84233,0.867953,0.113746,0.400539,0.74329,0.850417,0.005822,0.618372,0.560764,0.623098,0.341928,0.200221,0.415424,0.472497,0.950124,0.767145,0.328224,0.819416,0.94437,0.432971,0.928529,0.335749,0.564152,0.971343,0.832717,0.0709438,0.818115,0.21117,0.852555,0.546757,0.246067,0.495636,0.22258,0.425608,0.0486914,0.589738,0.118821,0.455593,0.923923,0.534079,0.49442,0.486016,0.635433,0.499311,0.00186813,0.46351,0.580149,0.170974,0.435472,0.482641,0.343062,0.205128,0.549222,0.264373,0.38416,0.959031,0.614089,0.883148,0.839634,0.0785207,0.45818,0.657914,0.158507,0.3212,0.569261,0.132926,0.19742,0.00138891,0.143994,0.846552,0.53665,0.588152,0.82651,0.439333,0.852386,0.467641,0.52062,0.977611,0.18107,0.167069,0.00266862,0.220937,0.437682,0.697814,0.322389,0.688403,0.547756,0.245321,0.946203,0.0651389,0.122311,0.820325,0.296177,0.301119,0.0139005,0.0918076,0.915841,0.148478,0.648103,0.521775,0.156575,0.0794859,0.0122049,0.660717,0.626301,0.525185,0.791977,0.638474,0.677954,0.301561,0.6043,0.251752,0.67462,0.100653,0.449288,0.217219,0.1793,0.438012,0.589873,0.183835,0.144702,0.99142,0.335106,0.935394,0.680478,0.997041,0.538717,0.296182,0.593562,0.78587,0.617336,0.0667571,0.73595,0.800734,0.262271,0.34866,0.949275,0.131275,0.826745,0.912231,0.292852,0.791293,0.557213,0.0544332,0.356163,0.0808724,0.636029,0.706899,0.69578,0.638761,0.368098,0.957654,0.390263,0.830216,0.676252,0.314134,0.243826,0.72627,0.128771,0.385119,0.557269,0.951619,0.47824,0.00278676,0.805013,0.983266,0.974346,0.529784,0.340617,0.51879,0.26033,0.468656,0.0893296,0.223966,0.540802,0.182899,0.296888,0.811214,0.00964481,0.480352,0.850921,0.189108,0.120332,0.774194,0.773076,0.752054,0.836603,0.900924,0.473008,0.965523,0.208606,0.941778,0.189085,0.00378388,0.423869,0.535394,0.569584,0.833231,0.487714,0.839593,0.164866,0.130231,0.785381,0.878653,0.998563,0.442378,0.675699,0.557651,0.0283845,0.922649,0.920898,0.495399,0.605049,0.699157,0.385084,0.226326,0.642374,0.434699,0.920624,0.0398529,0.496765,0.0422244,0.789996,0.832052,0.0500849,0.670459,0.626597,0.926264,0.450197,0.11218,0.925217,0.243467,0.713137,0.395089,0.285323,0.184474,0.529248,0.66893,0.639778,0.792749,0.682258,0.730993,0.310803,0.0793732,0.96299,0.213241,0.167748,0.572914,0.623517,0.098578,0.339495,0.226467,0.312226,0.0729319,0.984154,0.444935,0.74321,0.637827,0.330262,0.241059,0.974119,0.696698,0.0673775,0.279759,0.355198,0.641564,0.589151,0.72106,0.0226064,0.0680751,0.670599,0.49949,0.0910926,0.771504,0.206461,0.750573,0.897366,0.111371,0.981505,0.381509,0.0353687,0.904248,0.533427,0.258242,0.74252,0.0242617,0.945253,0.933863,0.357483,0.65288,0.531387,0.241171,0.976183,0.885081,0.00582117,0.598007,0.82516,0.0741119,0.674492,0.955513,0.621478,0.468776,0.24801,0.798704,0.982004,0.908788,0.211788,0.775179,0.959043,0.196232,0.426757,0.38859,0.470616,0.238651,0.756412,0.782763,0.697514,0.870476,0.777088,0.388298,0.985052,0.332464,0.282815,0.00935024,0.577866,0.193023,0.0871468,0.593958,0.0404807,0.366605,0.303669,0.494401,0.776895,0.0143614,0.82575,0.756212,0.882859,0.578861,0.833696,0.782489,0.527938,0.233589,0.881702,0.471506,0.429633,0.90998,0.78001,0.925252,0.771238,0.0598631,0.794766,0.252321,0.738185,0.47496,0.23294,0.910726,0.398889,0.798819,0.0985596,0.5555,0.686942,0.93036,0.929834,0.959761,0.164114,0.624344,0.235031,0.439218,0.480882,0.531407,0.619027,0.695074,0.770763,0.82649,0.396161,0.108673,0.572831,0.878457,0.904766,0.359293,0.322706,0.596477,0.711359,0.677426,0.159158,0.907246,0.00102359,0.499048,0.673973,0.440029,0.966559,0.0760225,0.289631,0.929972,0.843977,0.220112,0.224659,0.993663,0.886281,0.0270539,0.262195,0.684534,0.423998,0.336941,0.972162,0.859308,0.0639728,0.613437,0.631868,0.985792,0.0242675,0.792715,0.804598,0.352555,0.717309,0.578905,0.469911,0.153184,0.152316,0.0879617,0.911306,0.535676,0.551466,0.37937,0.792749,0.63864,0.109284,0.700476,0.188276,0.712198,0.217368,0.756337,0.71358,0.330925,0.341355,0.995658,0.383434,0.14384,0.149923,0.398224,0.261781,0.383118,0.0693359,0.0136528,0.141414,0.509421,0.510417,0.129709,0.111303,0.769058,0.290594,0.124044,0.964676,0.61267,0.178526,0.945232,0.583487,0.520812,0.915615,0.00589758,0.811108,0.893818,0.0447153,0.509344,0.0442561,0.774514,0.898251,0.685469,0.609502,0.940763,0.557088,0.959903,0.682405,0.0827569,0.391578,0.851276,0.638275,0.771898,0.642455,0.36104,0.966573,0.0204048,0.829227,0.585163,0.01941,0.637154,0.0900732,0.423284,0.306989,0.488097,0.500144,0.55801,0.534001,0.193573,0.550854,0.0579924,0.183755,0.405321,0.440655,0.185797,0.300326,0.354573,0.116749,0.177943,0.640455,0.497619,0.26286,0.513402,0.68679,0.634278,0.956654,0.867682,0.594219,0.339463,0.284371,0.55991,0.634099,0.240322,0.585506,0.870308,0.133392,0.040227,0.768788,0.77002,0.192937,0.46144,0.602063,0.692766,0.425233,0.902828,0.952839,0.951499,0.955712,0.0168471,0.504472,0.547038,0.842013,0.958681,0.53741,0.495154,0.693952,0.277876,0.50607,0.404569,0.727813,0.050424,0.233746,0.603586,0.66044,0.596606,0.930401,0.495384,0.449629,0.715291,0.236909,0.821388,0.353773,0.584342,0.235211,0.459571,0.0593812,0.499367,0.0726754,0.745528,0.565841,0.296442,0.0558813,0.787904,0.613468,0.367419,0.757242,0.256714,0.221978,0.475013,0.252371,0.913876,0.0286582,0.702423,0.971068,0.680189,0.446328,0.870244,0.546363,0.556896,0.379014,0.990293,0.131789,0.502567,0.207899,0.415227,0.919971,0.436759,0.836087,0.221213,0.684663,0.812794,0.372519,0.936815,0.617468,0.225615,0.299435,0.731883,0.0841667,0.922094,0.240433,0.253075,0.73405,0.800972,0.843887,0.295292,0.630693,0.536441,0.198608,0.497361,0.701844,0.382912,0.393267,0.423024,0.689354,0.665654,0.288307,0.857775,0.0170277,0.131487,0.0412623,0.990601,0.624229,0.0579208,0.713612,0.284909,0.375445,0.160825,0.714558,0.667689,0.156542,0.782308,0.356208,0.169963,0.133311,0.17905,|0.893256,0.0597935,0.439391,0.792201,0.8153,0.266331,0.289028,0.89805,0.315421,0.792584,0.599977,0.174564,0.782227,0.967488,0.0718275,0.309374,0.989454,0.0230557,0.188147,0.95405,0.415744,0.733546,0.469089,0.078796,0.336589,0.702733,0.868545,0.0776897,0.75913,0.791932,0.547524,0.585886,0.922608,0.776301,0.998893,0.92277,0.596373,0.23591,0.380673,0.55244,0.538914,0.288209,0.300469,0.837031,0.772702,0.79195,0.332777,0.585105,0.317269,0.893819,0.221101,0.00197703,0.836041,0.270297,0.393666,0.90366,0.0896693,0.117276,0.538641,0.597579,0.0614465,0.972415,0.457195,0.869596,0.0165696,0.0275695,0.400434,0.813556,0.691128,0.759066,0.745964,0.0135769,0.984743,0.428788,0.512936,0.188787,0.698171,0.108225,0.605816,0.335509,0.637157,0.0196753,0.495503,0.13357,0.119019,0.304142,0.692435,0.531251,0.43896,0.274062,0.679124,0.435063,0.580566,0.545325,0.607506,0.0540619,0.357236,0.66078,0.340294,0.455606,0.842941,0.671053,0.109098,0.409539,0.506782,0.210293,0.504407,0.983366,0.203819,0.0711958,0.735788,0.77368,0.0308488,0.424422,0.720443,0.574019,0.708097,0.363662,0.971825,0.514362,0.0664444,0.382565,0.321865,0.986772,0.471396,0.065414,0.632989,0.945623,0.107735,0.20606,0.0527105,0.399554,0.549559,0.298132,0.133685,0.749823,0.565042,0.00724661,0.957002,0.434092,0.502446,0.214612,0.506045,0.423882,0.678952,0.221059,0.0575209,0.225594,0.338195,0.648575,0.869553,0.41429,0.829887,0.855205,0.00685662,0.364538,0.813036,0.777576,0.335904,0.511841,0.74087,0.141117,0.521836,0.694358,0.0628783,0.322468,0.674427,0.530402,0.39635,0.34899,0.803562,0.860436,0.539174,0.123234,0.62732,0.855853,0.68114,0.155055,0.761929,0.409555,0.723786,0.770975,0.203778,0.022655,0.848037,0.819141,0.0369988,0.912178,0.268087,0.464275,0.12864,0.272803,0.875669,0.198185,0.300493,0.293509,0.0553557,0.67239,0.971123,0.442402,0.540366,0.0893295,0.623636,0.918484,0.182493,0.562572,0.0736439,0.705606,0.146471,0.0158687,0.646874,0.0573998,0.481539,0.704247,0.27945,0.19787,0.699021,0.141983,0.305218,0.579092,0.737699,0.119983,0.00592464,0.86821,0.766376,0.952284,0.367231,0.138703,0.81385,0.843834,0.605677,0.726175,0.934139,0.711891,0.420036,0.0989753,0.880472,0.797535,0.643945,0.469575,0.24992,0.79395,0.281852,0.621374,0.944572,0.735631,0.280271,0.886993,0.446048,0.027185,0.501536,0.419289,0.498294,0.768143,0.788252,0.551115,0.183713,0.171021,0.12552,0.539797,0.675346,0.92454,0.591962,0.50279,0.866686,0.762024,0.054492,0.682663,0.554937,0.194489,0.599847,0.48871,0.872025,0.505873,0.381902,0.168235,0.637947,0.175647,0.293863,0.147599,0.149468,0.638274,0.173669,0.0617154,0.799796,0.192031,0.512469,0.689154,0.604659,0.00607836,0.89198,0.40357,0.370196,0.0432643,0.0365096,0.580055,0.583888,0.21023,0.43837,0.742237,0.888875,0.297552,0.951171,0.676507,0.202067,0.777523,0.296745,0.201212,0.399128,0.563621,0.554734,0.683605,0.696,0.469141,0.642349,0.521232,0.97841,0.612884,0.502389,0.147383,0.192032,0.439776,0.390917,0.998614,0.558437,0.720014,0.868678,0.904276,0.109947,0.865427,0.901364,0.919768,0.991567,0.0740812,0.104807,0.747904,0.617758,0.151029,0.163696,0.664896,0.116077,0.56059,0.91462,0.378387,0.123312,0.390354,0.214443,0.684257,0.130899,0.800755,0.21381,0.0830329,0.22456,0.60322,0.724957,0.790238,0.543556,0.837717,0.707007,0.715803,0.629115,0.0969494,0.983261,0.934433,0.86176,0.118597,0.874672,0.628345,0.451698,0.780571,0.212209,0.790947,0.954029,0.172647,0.956562,0.431482,0.973877,0.577176,0.595721,0.734789,0.149437,0.465444,0.84411,0.796897,0.256811,0.531539,0.209008,0.838457,0.719475,0.417415,0.921269,0.828831,0.93383,0.152846,0.569218,0.214954,0.280983,0.862151,0.293902,0.779452,0.396483,0.0582052,0.187164,0.673087,0.51588,0.421065,0.955059,0.893196,0.401436,0.244483,0.292752,0.432983,0.477172,0.556022,0.239243,0.111942,0.11563,0.192248,0.753981,0.75018,0.909931,0.663061,0.599284,0.484717,0.380741,0.31197,0.555754,0.617644,0.46448,0.616427,0.0529377,0.943968,0.374239,0.5854,0.155559,0.795091,0.523838,0.508783,0.921934,0.628811,0.298798,0.961497,0.972392,0.0502146,0.434757,0.711879,0.184276,0.325313,0.962459,0.273893,0.159887,0.0105287,0.0254139,0.676711,0.2951,0.02591,0.478739,0.854233,0.0626425,0.315089,0.491157,0.661496,0.470235,0.420194,0.467865,0.833364,0.423531,0.82684,0.514615,0.240695,0.458643,0.072202,0.636128,0.556092,0.782545,0.00186718,0.301854,0.339076,0.502503,0.495191,0.460164,0.543295,0.410922,0.543703,0.0983693,0.475484,0.415878,0.122557,0.260785,0.923207,0.655794,0.460265,0.138563,0.417569,0.696509,0.757507,0.47488,0.0135666,0.648225,0.146342,0.746447,0.592897,0.673249,0.338379,0.49748,0.00609004,0.319572,0.665999,0.833314,0.562513,0.50557,0.0417477,0.344565,0.77672,0.356227,0.0657929,0.999009,0.04337,0.3239,0.231143,0.0994481,0.169072,0.614375,0.358666,0.459268,0.454796,0.490092,0.790517,0.183186,0.640327,0.860396,0.562947,0.244344,0.905421,0.468146,0.66097,0.555508,0.46815,0.609646,0.183791,0.772891,0.81062,0.613023,0.926298,0.487089,0.989371,0.534969,0.0929699,0.967203,0.453047,0.607592,0.448724,0.365322,0.788155,0.444526,0.648432,0.452263,0.306933,0.21521,0.0224153,0.680153,0.359777,0.551786,0.00749886,0.122735,0.187538,0.472907,0.488324,0.816013,0.564153,0.187441,0.932242,0.37314,0.0865396,0.180178,0.894262,0.576,0.780294,0.252923,0.683183,0.921306,0.0759045,0.210876,0.981725,0.0408927,0.910201,0.546111,0.82569,0.150496,0.770146,0.72609,0.192845,0.845365,0.642117,0.427409,0.698314,0.957538,0.2284,0.17499,0.264153,0.0152181,0.605262,0.644297,0.263955,0.139003,0.269764,0.702349,0.603886,0.086315,0.614423,0.242188,0.868526,0.479879,0.382086,0.203305,0.623104,0.792007,0.0672938,0.0601944,0.95258,0.458986,0.0131055,0.107464,0.0600764,0.0989887,0.286958,0.129215,0.763445,0.259975,0.803118,0.428317,0.00708598,0.142037,0.411652,0.78965,0.150738,0.393083,0.658833,0.48584,0.348324,0.34156,0.0702985,0.543159,0.783738,0.705224,0.996871,0.0834297,0.382056,0.0810612,0.211664,0.458189,0.991062,0.593876,0.580339,0.256438,0.821687,0.777342,0.66451,0.83265,0.0766344,0.973195,0.145341,0.608893,0.707845,0.722082,0.931426,0.855809,0.64177,0.333339,0.925117,0.705804,0.778577,0.390128,0.920338,0.260934,0.824759,0.712485,0.343325,0.437908,0.0105808,0.909954,0.971538,0.869922,0.969505,0.193842,0.49877,0.195866,0.937655,0.464969,0.77727,0.895751,0.214357,0.314426,0.983538,0.0883896,0.714429,0.604948,0.999058,0.336348,0.0216459,0.346983,0.995648,0.950574,0.570018,0.383453,0.0789285,0.75066,0.017141,0.267999,0.252454,0.0439379,0.319616,0.700816,0.278744,0.713389,0.0219639,0.154117,0.0403115,0.174215,0.47753,0.126697,0.233527,0.117863,0.183418,0.172432,0.952297,0.0284179,0.631618,0.880924,0.771933,0.247453,0.365719,0.984829,0.490204,0.89854,0.921,0.407661,0.504439,0.881522,0.620965,0.803348,0.0666576,0.359389,0.318507,0.518343,0.204649,0.832541,0.963091,0.538861,0.474925,0.69745,0.768926,0.0746492,0.561837,0.208815,0.154252,0.528983,0.0567648,0.713791,0.358087,0.0908435,0.218088,0.667266,0.428029,0.306711,0.115651,0.264203,0.494983,0.589351,0.313489,0.27755,0.32459,0.680471,0.383733,0.468512,0.410505,0.169265,0.779283,0.00655025,0.393244,0.682359,0.971884,0.142358,0.671871,0.837712,0.831464,0.716235,0.876993,0.657021,0.0308232,0.831364,0.589586,0.547205,0.0571542,0.993661,0.0959886,0.882568,0.358977,0.667063,0.231564,0.0891423,0.980229,0.820017,0.258119,0.85301,0.378032,0.146945,0.237559,0.847053,0.286984,0.985011,0.513555,0.945995,0.462244,0.0474151,0.320757,0.268182,0.928045,0.0333943,0.261226,0.907839,0.586593,0.793037,0.940469,0.630099,0.0927143,0.0944867,0.205193,0.896876,0.243949,0.35553,0.875804,0.919082,0.03614,0.960737,0.639676,0.836942,0.15914,0.361119,0.381278,0.974616,0.947986,0.626736,0.829501,0.0351611,0.325794,0.997904,0.515057,0.564213,0.748382,0.553078,0.71986,0.817761,0.273133,0.711083,0.895201,0.0531688,0.00426477,0.0529014,0.83165,0.171001,0.575199,0.100033,0.434821,0.722121,0.276609,0.928539,0.831983,0.3873,0.422543,0.834898,0.362383,0.282403,0.836017,0.429278,0.779379,0.160396,0.531093,0.727601,0.869006,0.0121685,0.676294,0.101357,0.49826,0.866434,0.180308,0.0507648,0.854927,0.814532,0.981005,0.260497,0.00749254,0.410515,0.853818,0.0522602,0.605693,0.80728,0.67,0.413148,0.449071,0.214726,0.216422,0.0849795,0.913127,0.921471,0.655423,0.812707,0.579103,0.639133,0.840261,0.0125393,0.309958,0.558345,0.450404,0.876268,0.637132,0.827146,0.780745,0.479334,0.541747,0.915832,0.0386084,0.442276,0.920524,0.533572,0.635261,0.571106,0.910505,0.94492,0.717462,0.154643,0.85207,0.606842,0.0181277,0.203704,0.673822,0.00661981,0.491522,0.483693,0.533533,0.652961,0.333283,0.916056,0.777866,0.703679,0.641959,0.216293,0.581526,0.828445,0.137782,0.517907,0.897693,0.570445,0.922373,0.316847,0.171006,0.972167,0.94268,0.267166,0.379852,0.178989,0.755339,0.153593,0.97565,0.0457037,0.654024,0.486643,0.30535,0.522109,0.118193,0.300549,0.522396,0.221852,0.0896896,0.263791,0.337066,0.00690144,0.805537,0.675338,0.809254,0.469712,0.617653,0.776956,0.434762,0.378619,0.504537,0.643231,0.606845,0.220146,0.743396,0.653945,0.96962,0.445327,0.714662,0.373139,0.472586,0.132828,0.598082,0.616121,0.13782,|0.831117,0.357456,0.250663,0.33936,0.828581,0.749248,0.137928,0.620197,0.215091,0.985054,0.964457,0.00971794,0.337796,0.910712,0.0240162,0.360817,0.15754,0.243623,0.44602,0.935223,0.567537,0.656759,0.0743251,0.654878,0.00342983,0.100331,0.817904,0.552175,0.517455,0.180656,0.969502,0.664002,0.610742,0.482273,0.312596,0.572228,0.763652,0.456226,0.218091,0.617676,0.303693,0.00279582,0.319826,0.474484,0.068681,0.406803,0.935875,0.471528,0.352777,0.901416,0.672511,0.519738,0.166977,0.664747,0.565036,0.159928,0.169352,0.902677,0.701584,0.16256,0.714462,0.778858,0.0496199,0.612774,0.671082,0.266262,0.060163,0.126531,0.201727,0.292988,0.671278,0.702445,0.946754,0.667154,0.0379804,0.767693,0.526487,0.234877,0.467548,0.911761,0.813506,0.518693,0.712197,0.203281,0.399677,0.234955,0.445539,0.702734,0.656103,0.234774,0.845476,0.444174,0.205843,0.458606,0.900071,0.716827,0.540582,0.145062,0.572208,0.846894,0.793235,0.496112,0.183896,0.271329,0.00118643,0.552769,0.517021,0.803212,0.96202,0.0102798,0.646186,0.436253,0.681629,0.344703,0.876945,0.262674,0.672486,0.363328,0.25721,0.831978,0.533404,0.580348,0.989202,0.200076,0.547933,0.173905,0.830375,0.0440557,0.105388,0.130727,0.00380915,0.348626,0.770042,0.377531,0.284778,0.489424,0.699546,0.478533,0.798167,0.0185301,0.41688,0.108577,0.257046,0.798088,0.67885,0.110062,0.581993,0.397922,0.115682,0.154783,0.837489,0.774694,0.77223,0.309267,0.895894,0.0387543,0.245152,0.185205,0.804285,0.790821,0.25888,0.10291,0.171454,0.42724,0.360502,0.471805,0.413885,0.958593,0.0417213,0.970315,0.918574,0.0178708,0.854222,0.237468,0.746613,0.599754,0.813835,0.542956,0.838693,0.367353,0.444981,0.541511,0.0202491,0.159194,0.156398,0.386594,0.0564421,0.67181,0.821528,0.774568,0.922062,0.300497,0.533152,0.0309411,0.375472,0.160689,0.618531,0.501917,0.849638,0.793779,0.494824,0.162453,0.107928,0.962749,0.293083,0.915897,0.193914,0.915534,0.264025,0.335992,0.20204,0.872482,0.0560849,0.481265,0.383713,0.147881,0.306468,0.994679,0.976585,0.863741,0.0381798,0.258898,0.888597,0.34192,0.913238,0.851349,0.352288,0.571407,0.592875,0.946606,0.0665796,0.30242,0.922067,0.221475,0.225042,0.94329,0.801819,0.118519,0.756788,0.0402222,0.721745,0.272685,0.892856,0.436642,0.748833,0.226125,0.261108,0.162561,0.335161,0.931453,0.0820253,0.413555,0.686918,0.656895,0.863365,0.390017,0.0745245,0.570729,0.775682,0.0168487,0.600058,0.145097,0.150265,0.903615,0.366233,0.562757,0.665859,0.135721,0.119964,0.799907,0.107057,0.435131,0.116879,0.686727,0.394893,0.966154,0.975564,0.170465,0.239372,0.315354,0.826643,0.657132,0.503114,0.262786,0.316895,0.540816,0.65839,0.185924,0.828844,0.97738,0.551125,0.44123,0.26624,0.500549,0.810324,0.845765,0.781453,0.0452703,0.672985,0.430057,0.300084,0.0658798,0.317836,0.968868,0.792018,0.788607,0.920541,0.309428,0.544723,0.44136,0.277499,0.39723,0.230177,0.742895,0.106762,0.689349,0.85931,0.734318,0.846054,0.707099,0.173876,0.683584,0.400867,0.829155,0.179396,0.883927,0.769557,0.535827,0.42378,0.632028,0.11039,0.707322,0.0726059,0.477125,0.267791,0.747698,0.741582,0.333824,0.0906286,0.775163,0.745892,0.458177,0.840562,0.138734,0.416302,0.668835,0.910668,0.894858,0.22745,0.19121,0.0288805,0.234104,0.610109,0.603886,0.0292189,0.122627,0.183333,0.378288,0.502704,0.388442,0.406405,0.989496,0.825273,0.640865,0.126761,0.746557,0.700937,0.641292,0.381232,0.219606,0.200546,0.667346,0.891804,0.667039,0.0210297,0.947583,0.91198,0.287925,0.499451,0.123905,0.552975,0.707927,0.91811,0.891907,0.54099,0.68706,0.645125,0.265712,0.259854,0.109255,0.211489,0.0364156,0.791315,0.930004,0.692356,0.655572,0.710387,0.133612,0.908369,0.0443325,0.412912,0.611557,0.459542,0.291178,0.659525,0.750762,0.922733,0.874223,0.0431473,0.67788,0.172532,0.350754,0.386321,0.0731445,0.427373,0.511239,0.167219,0.331096,0.0804333,0.149061,0.301547,0.963691,0.807737,0.379637,0.66735,0.425628,0.0864205,0.477953,0.512668,0.905508,0.88566,0.0759426,0.502738,0.126046,0.966913,0.957498,0.870899,0.611757,0.067183,0.0246187,0.652887,0.323293,0.480105,0.409909,0.523269,0.713368,0.328859,0.700664,0.290134,0.330392,0.737637,0.405386,0.786269,0.660944,0.634174,0.779806,0.764898,0.0328333,0.0150094,0.446287,0.956266,0.705063,0.148882,0.482038,0.788739,0.0926491,0.396942,0.619934,0.385253,0.24891,0.0675466,0.534297,0.0442035,0.0249031,0.894763,0.910298,0.301461,0.299835,0.700896,0.107267,0.106376,0.769354,0.805634,0.019478,0.5947,0.801865,0.217722,0.574504,0.194068,0.349016,0.284226,0.0929273,0.977459,0.234936,0.121466,0.840545,0.0643202,0.120324,0.460657,0.0761201,0.448391,0.151443,0.979764,0.778574,0.944336,0.72973,0.588866,0.0970765,0.936179,0.68967,0.690239,0.459989,0.696466,0.0103442,0.999246,0.11212,0.511752,0.30602,0.423415,0.248818,0.82727,0.219546,0.491454,0.15786,0.554881,0.865113,0.256185,0.955877,0.38048,0.18372,0.798733,0.704324,0.798867,0.43651,0.44562,0.285968,0.259834,0.325478,0.385157,0.215159,0.513245,0.275562,0.0634977,0.360857,0.81777,0.344212,0.737875,0.726943,0.370994,0.456643,0.934278,0.824438,0.758707,0.629677,0.20394,0.415538,0.044374,0.941705,0.434337,0.445556,0.736447,0.739383,0.566753,0.798596,0.520032,0.256966,0.149713,0.599243,0.885982,0.101615,0.617009,0.142661,0.873061,0.486875,0.573886,0.508329,0.536224,0.208769,0.284928,0.438788,0.788097,0.284371,0.25405,0.952622,0.910044,0.239681,0.147807,0.404148,0.0202247,0.173452,0.311372,0.121398,0.835403,0.4504,0.390589,0.0266397,0.0140618,0.229345,0.582118,0.350132,0.835395,0.179167,0.384427,0.816305,0.530747,0.737959,0.408276,0.926457,0.536802,0.257402,0.229059,0.430783,0.949046,0.307999,0.521591,0.997207,0.715417,0.0422955,0.936049,0.800438,0.668406,0.306204,0.534703,0.794881,0.564167,0.561367,0.526288,0.611283,0.42151,0.668841,0.0416087,0.676649,0.403691,0.0844983,0.808071,0.916276,0.849782,0.732436,0.69331,0.0851777,0.00137067,0.552644,0.348007,0.324234,0.16569,0.0949761,0.515466,0.0791031,0.945795,0.679499,0.132613,0.111329,0.144164,0.0154033,0.469214,0.0184442,0.446105,0.680565,0.271861,0.689593,0.596437,0.12702,0.737134,0.834153,0.427673,0.266527,0.134092,0.725736,0.878456,0.763532,0.995976,0.323347,0.534365,0.933939,0.672901,0.907912,0.579723,0.682377,0.520758,0.092088,0.841767,0.314388,0.602351,0.972671,0.167819,0.508117,0.231529,0.962895,0.212968,0.606452,0.0173514,0.942189,0.878115,0.725218,0.319549,0.203701,0.759393,0.122541,0.758751,0.783669,0.442248,0.786319,0.101087,0.486702,0.00321186,0.198078,0.0424258,0.365963,0.502181,0.439337,0.819072,0.174146,0.182612,0.744943,0.00908893,0.406484,0.992856,0.0241784,0.155216,0.357482,0.476644,0.216799,0.742596,0.749447,0.83947,0.218623,0.172331,0.760565,0.597341,0.888181,0.0318587,0.837214,0.397648,0.34831,0.504613,0.924142,0.36365,0.93458,0.298747,0.444038,0.434119,0.205645,0.0342212,0.80949,0.946211,0.172762,0.234447,0.284657,0.235637,0.0753959,0.791219,0.606205,0.275584,0.516501,0.426702,0.149509,0.908536,0.780437,0.820993,0.915574,0.655273,0.00631505,0.758049,0.372126,0.666224,0.138304,0.394001,0.540442,0.203282,0.482887,0.905441,0.877239,0.504035,0.033825,0.249817,0.0708161,0.316635,0.352196,0.450651,0.79102,0.046541,0.485802,0.887583,0.39695,0.516572,0.767544,0.678321,0.0780469,0.612427,0.239355,0.51879,0.747684,0.0481322,0.612797,0.853359,0.3293,0.294069,0.119493,0.271356,0.771706,0.563077,0.360933,0.107777,0.824823,0.309428,0.769358,0.707463,0.544945,0.736447,0.605837,0.340814,0.0929087,0.764992,0.336976,0.94607,0.77155,0.813933,0.406583,0.314843,0.696723,0.430206,0.923017,0.228148,0.326532,0.202278,0.211002,0.634926,0.750452,0.504026,0.963886,0.349597,0.0805563,0.230966,0.259035,0.816312,0.488091,0.100705,0.566629,0.793887,0.340488,0.980356,0.275376,0.732787,0.0412834,0.15463,0.267541,0.395593,0.253797,0.074535,0.276676,0.486792,0.176758,0.304797,0.064005,0.848634,0.0394859,0.156897,0.575595,0.670005,0.729091,0.975608,0.291933,0.00923681,0.470836,0.214334,0.808337,0.778605,0.719753,0.088104,0.96828,0.0471984,0.822918,0.935217,0.154691,0.283556,0.781118,0.443687,0.0518547,0.130221,0.367223,0.0208666,0.348215,0.958564,0.718649,0.654675,0.205084,0.483288,0.15506,0.839355,0.224636,0.287295,0.577477,0.91467,0.57354,0.453612,0.260063,0.663854,0.863592,0.201036,0.921677,0.540825,0.837447,0.274291,0.348051,0.409022,0.470561,0.0807287,0.0652444,0.551862,0.137698,0.545331,0.602593,0.108195,0.16148,0.590878,0.98604,0.0460162,0.126183,0.657376,0.570118,0.793236,0.912197,0.185811,0.769755,0.609663,0.697119,0.412964,0.935173,0.159278,0.96827,0.399776,0.223838,0.44119,0.893881,0.141697,0.108009,0.48017,0.546927,0.881478,0.290842,0.815797,0.390749,0.506285,0.406696,0.63028,0.619385,0.525515,0.125787,0.747631,0.772566,0.210179,0.180436,0.900856,0.487189,0.0133844,0.743557,0.76191,0.935602,0.78205,0.506877,0.208528,0.187116,0.657358,0.547849,0.0816309,0.0798522,0.912004,0.104947,0.480734,0.0152821,0.0789552,0.524096,0.548073,0.292738,0.731619,0.0693408,0.300993,0.0980968,0.898654,0.454912,0.614048,0.129616,0.952232,0.859131,0.278778,0.354644,0.38148,0.612889,0.40554,0.237353,0.0854891,0.826533,0.932462,0.105762,0.309716,0.966882,0.947434,0.0886204,0.653653,0.386082,|0.565454,0.447673,0.0989837,0.951167,0.780322,0.249383,0.591607,0.893537,0.704805,0.661008,0.363563,0.601057,0.679203,0.344587,0.895771,0.811031,0.264784,0.0806406,0.838869,0.0730518,0.227062,0.813438,0.687308,0.182552,0.668077,0.187056,0.378786,0.382809,0.919679,0.733966,0.126855,0.340441,0.660762,0.454107,0.352283,0.251135,0.441171,0.56113,0.140715,0.767327,0.246791,0.473281,0.960441,0.628918,0.923107,0.25402,0.192801,0.71562,0.929376,0.448417,0.729183,0.254549,0.967867,0.844177,0.622355,0.431008,0.104075,0.18063,0.210514,0.807421,0.404254,0.110534,0.857137,0.329132,0.201911,0.959767,0.501619,0.751222,0.731104,0.420186,0.410956,0.714463,0.44246,0.0430301,0.0701484,0.59051,0.220486,0.444854,0.509643,0.677813,0.206858,0.338238,0.665883,0.704205,0.124917,0.714755,0.0820349,0.209839,0.203844,0.146362,0.711962,0.916225,0.0469477,0.249652,0.360022,0.864898,0.171998,0.0668073,0.173216,0.645012,0.976553,0.484638,0.396506,0.0678033,0.64669,0.0820466,0.845391,0.804156,0.939444,0.653529,0.0668145,0.339732,0.55063,0.308777,0.160472,0.969495,0.360403,0.211553,0.256448,0.829812,0.151574,0.0872505,0.971455,0.716793,0.99293,0.492614,0.107685,0.479318,0.969009,0.950412,0.827499,0.0904731,0.846453,0.289751,0.645869,0.422644,0.883514,0.125491,0.754422,0.399367,0.664585,0.836667,0.111309,0.123325,0.450725,0.317541,0.590886,0.0342407,0.255932,0.942893,0.880321,0.584468,0.21178,0.175758,0.704277,0.902713,0.417031,0.884792,0.756638,0.987724,0.260119,0.410039,0.188153,0.478407,0.464653,0.734729,0.182638,0.196275,0.427823,0.113207,0.619824,0.392379,0.406817,0.9472,0.43742,0.343758,0.745874,0.8561,0.322421,0.660402,0.843422,0.908673,0.986529,0.975176,0.356495,0.914509,0.398757,0.981889,0.314096,0.808965,0.782891,0.374196,0.349803,0.287758,0.739352,0.941645,0.768123,0.963525,0.1523,0.968138,0.193988,0.804698,0.874003,0.746469,0.752729,0.349228,0.591798,0.533272,0.55423,0.313012,0.490999,0.573943,0.561992,0.094573,0.692698,0.827586,0.112087,0.536321,0.958943,0.0334699,0.0300114,0.82387,0.58141,0.68733,0.816703,0.0696805,0.329478,0.31807,0.15481,0.392811,0.838795,0.940656,0.859779,0.788941,0.0359101,0.25001,0.467041,0.26549,0.865555,0.692339,0.81514,0.0712173,0.113425,0.444646,0.377316,0.328722,0.466125,0.470408,0.352476,0.0360403,0.281529,0.44876,0.877585,0.0420061,0.24769,0.532264,0.527867,0.610137,0.396345,0.218951,0.552211,0.151895,0.772271,0.731515,0.521451,0.0153422,0.0775085,0.550709,0.845335,0.29447,0.89746,0.487767,0.593917,0.723997,0.169045,0.102782,0.916667,0.130713,0.757465,0.554096,0.051304,0.176724,0.422452,0.761731,0.253095,0.984835,0.792642,0.98586,0.382418,0.178394,0.00696266,0.0463222,0.837502,0.22279,0.360197,0.129991,0.0820039,0.330674,0.0968308,0.0553774,0.240233,0.343017,0.544931,0.948028,0.808086,0.124766,0.576065,0.324646,0.81657,0.402295,0.0789593,0.71968,0.571323,0.916149,0.335768,0.837097,0.254066,0.138885,0.192052,0.0430784,0.301227,0.0292556,0.890091,0.263471,0.103134,0.918999,0.960922,0.111121,0.527261,0.671669,0.29414,0.601635,0.584435,0.246204,0.100403,0.770805,0.603555,0.298874,0.781173,0.0227336,0.143427,0.380225,0.0592807,0.464574,0.162528,0.65254,0.988368,0.0250151,0.697278,0.911855,0.661146,0.63414,0.0309248,0.244595,0.566816,0.788014,0.14986,0.383081,0.514993,0.265729,0.0497708,0.584221,0.223737,0.559782,0.551638,0.584375,0.216704,0.995024,0.658744,0.674947,0.171535,0.644889,0.360929,0.497562,0.779417,0.394243,0.663148,0.640042,0.773209,0.943621,0.39968,0.818539,0.677368,0.164092,0.154427,0.142231,0.438733,0.807335,0.308446,0.608557,0.00226021,0.708552,0.729359,0.624004,0.144906,0.971689,0.425198,0.0614225,0.991179,0.942742,0.789669,0.894642,0.444295,0.996909,0.0558888,0.745402,0.585617,0.99034,0.44867,0.339909,0.937507,0.611604,0.118352,0.488839,0.301874,0.84293,0.741262,0.494516,0.6202,0.934406,0.684683,0.853249,0.530407,0.414628,0.218801,0.195653,0.837263,0.822964,0.593361,0.142546,0.69778,0.927098,0.868026,0.0507929,0.675991,0.336367,0.565334,0.314348,0.724376,0.866746,0.854472,0.447235,0.624176,0.502161,0.881249,0.337456,0.56184,0.23891,0.245529,0.668798,0.499917,0.587448,0.541712,0.0289071,0.988721,0.112745,0.605728,0.202743,0.143822,0.628232,0.487822,0.522113,0.492049,0.758536,0.376995,0.709552,0.356406,0.761001,0.435635,0.848694,0.571612,0.925957,0.013381,0.400183,0.201627,0.0648497,0.453644,0.405086,0.958367,0.388282,0.0134448,0.395436,0.253673,0.140702,0.637915,0.198842,0.774046,0.899818,0.578728,0.194491,0.803478,0.805991,0.40209,0.116481,0.010478,0.489329,0.53538,0.558605,0.977122,0.00785333,0.726764,0.885748,0.957247,0.987439,0.167748,0.904914,0.470285,0.795705,0.226577,0.569244,0.114104,0.159001,0.829021,0.145991,0.840221,0.909764,0.0910995,0.338795,0.38882,0.555832,0.367974,0.207279,0.509592,0.209589,0.70773,0.728464,0.161191,0.389806,0.540494,0.139813,0.238657,0.243587,0.282354,0.370539,0.0750483,0.523979,0.0389305,0.421773,0.37019,0.0364001,0.38687,0.754237,0.114199,0.609667,0.0281961,0.739777,0.571211,0.0393506,0.258082,0.770957,0.362294,0.14959,0.1552,0.939509,0.103438,0.040396,0.595083,0.735124,0.884662,0.0474761,0.934343,0.907495,0.834462,0.257506,0.0400376,0.561592,0.462378,0.197509,0.419282,0.116549,0.0532031,0.238867,0.244155,0.400689,0.214825,0.277677,0.530011,0.727779,0.0128362,0.448914,0.685245,0.467239,0.345473,0.488745,0.734019,0.420543,0.0377977,0.923622,0.676123,0.414368,0.326889,0.750199,0.246178,0.00226945,0.93096,0.13462,0.896659,0.822715,0.929874,0.1592,0.737181,0.616139,0.611671,0.474834,0.0404749,0.467481,0.681291,0.70912,0.886508,0.247721,0.472549,0.284584,0.206337,0.944752,0.809916,0.2221,0.998578,0.48421,0.0572053,0.665437,0.911745,0.509165,0.568716,0.939546,0.121444,0.815959,0.468681,0.869769,0.0652009,0.604981,0.826809,0.709209,0.175071,0.189427,0.666255,0.772795,0.217818,0.591069,0.248113,0.284857,0.776409,0.613746,0.263165,0.540897,0.200626,0.304273,0.774983,0.393677,0.792759,0.793568,0.63813,0.803863,0.577968,0.657909,0.493022,0.483383,0.0483353,0.0263715,0.112512,0.398386,0.661446,0.815586,0.609957,0.692582,0.751572,0.672065,0.471268,0.930355,0.22829,0.517005,0.53243,0.725077,0.184208,0.438348,0.00953835,0.0463505,0.292572,0.206361,0.920481,0.372652,0.374673,0.313627,0.324818,0.96684,0.0636276,0.0255042,0.693422,0.0159122,0.12493,0.452331,0.91479,0.0503799,0.512077,0.40303,0.359774,0.86526,0.446187,0.956787,0.866094,0.860634,0.42423,0.162051,0.324196,0.140149,0.337098,0.701392,0.231584,0.341122,0.1438,0.701681,0.82654,0.538991,0.258112,0.895722,0.863822,0.740994,0.726513,0.928417,0.632588,0.993561,0.505958,0.985984,0.776432,0.102325,0.280917,0.136403,0.277986,0.748296,0.0369763,0.803476,0.225357,0.837921,0.658036,0.994054,0.999096,0.612836,0.560259,0.124656,0.00831699,0.639507,0.157457,0.667666,0.916608,0.25859,0.290745,0.940189,0.339749,0.403594,0.243777,0.636411,0.962303,0.689402,0.564949,0.239519,0.514381,0.115817,0.958768,0.633174,0.0554586,0.808536,0.616472,0.56095,0.955392,0.727713,0.57051,0.119759,0.170242,0.184389,0.0983148,0.569526,0.406925,0.435105,0.218367,0.839854,0.675192,0.713458,0.756342,0.0094943,0.217264,0.730351,0.260652,0.504068,0.40974,0.515122,0.782852,0.0328867,0.0767186,0.745568,0.561049,0.109851,0.209924,0.0490769,0.321899,0.767602,0.614235,0.0669677,0.718996,0.225598,0.676909,0.446602,0.0815992,0.0454819,0.079432,0.807084,0.696565,0.526476,0.696382,0.404387,0.136953,0.0210783,0.848095,0.183617,0.00688285,0.207605,0.867212,0.926373,0.0923781,0.435372,0.646882,0.566272,0.312184,0.821396,0.91116,0.572987,0.729558,0.697057,0.379783,0.909002,0.119497,0.465398,0.66684,0.401522,0.586417,0.902418,0.619181,0.430146,0.557853,0.344981,0.406531,0.756244,0.478344,0.136582,0.798406,0.339363,0.803869,0.33635,0.823281,0.394902,0.16872,0.503148,0.287456,0.912769,0.519028,0.649999,0.811003,0.786935,0.515373,0.851343,0.310503,0.218532,0.19935,0.283674,0.218912,0.447192,0.726218,0.382402,0.882047,0.587442,0.403567,0.0108762,0.427567,0.342568,0.519764,0.265638,0.00979298,0.0959768,0.493536,0.415349,0.991064,0.066748,0.216975,0.115146,0.0854347,0.143622,0.484043,0.512642,0.0455599,0.43924,0.895713,0.61444,0.524131,0.945689,0.688316,0.815881,0.274484,0.824921,0.506589,0.223871,0.77488,0.213669,0.618616,0.391734,0.540255,0.836874,0.0887005,0.0563805,0.654826,0.207254,0.490463,0.770912,0.881346,0.886742,0.234469,0.90472,0.301634,0.298594,0.681107,0.137718,0.150774,0.527777,0.540167,0.781694,0.927934,0.281101,0.673763,0.877679,0.355063,0.974838,0.924069,0.537761,0.0310384,0.932237,0.933988,0.317857,0.650112,0.0864038,0.979715,0.48405,0.395092,0.861145,0.395068,0.2533,0.41364,0.703429,0.101246,0.451924,0.299686,0.891855,0.658294,0.527501,0.171286,0.427093,0.3703,0.606566,0.0879164,0.16736,0.67226,0.576932,0.989767,0.542321,0.876692,0.425386,0.942074,0.729432,0.302982,0.91851,0.670837,0.61223,0.609515,0.248024,0.213307,0.244072,0.341426,0.477938,0.828786,0.555294,0.504722,0.309778,0.239776,0.800519,0.823936,0.966303,0.695815,0.650777,0.197836,0.771222,0.748097,0.280958,0.334584,0.496155,0.427839,0.304396,0.986532,0.966918,0.270592,0.797811,0.767651,0.957162,0.609271,0.565374,|0.588182,0.863324,0.700392,0.777034,0.946526,0.570559,0.303116,0.566742,0.0557459,0.878921,0.373248,0.0665943,0.29876,0.000314116,0.829893,0.381037,0.230442,0.814518,0.185395,0.159026,0.569519,0.337001,0.910242,0.861711,0.181524,0.231799,0.681822,0.21632,0.538306,0.793201,0.525551,0.962967,0.734086,0.638558,0.727915,0.844003,0.909556,0.734791,0.656698,0.928824,0.3465,0.611858,0.957658,0.279452,0.592632,0.13383,0.084393,0.280962,0.310648,0.413206,0.489086,0.89792,0.802588,0.495904,0.309953,0.663518,0.42714,0.05261,0.111148,0.627646,0.569602,0.130989,0.742675,0.760918,0.791072,0.490805,0.589011,0.955264,0.882322,0.868636,0.87615,0.495984,0.740359,0.246737,0.792048,0.619939,0.693903,0.434611,0.389088,0.592068,0.207581,0.494344,0.350206,0.821339,0.336796,0.1531,0.840231,0.0724814,0.8428,0.0464974,0.731153,0.505623,0.0716634,0.396428,0.486099,0.711315,0.999936,0.391879,0.306631,0.365193,0.741017,0.499286,0.921794,0.0838758,0.428682,0.933796,0.915097,0.0586119,0.550484,0.734223,0.207884,0.857116,0.958933,0.486589,0.826996,0.386377,0.994356,0.511565,0.0278776,0.918668,0.240735,0.696388,0.524779,0.657221,0.224216,0.683846,0.92161,0.520386,0.348363,0.151515,0.913802,0.255571,0.30571,0.989477,0.512174,0.12805,0.011061,0.435503,0.616738,0.472315,0.140235,0.040868,0.283939,0.0292357,0.488381,0.479993,0.372739,0.562986,0.369044,0.251921,0.967659,0.327024,0.506809,0.913325,0.0667377,0.0856444,0.0686296,0.377647,0.268536,0.401412,0.800682,0.546904,0.387085,0.521547,0.349522,0.919529,0.158768,0.904249,0.30653,0.817606,0.422641,0.707754,0.423597,0.345582,0.761398,0.618408,0.754908,0.137999,0.618376,0.351331,0.919862,0.28721,0.378933,0.0360326,0.821941,0.419527,0.156967,0.306711,0.65471,0.153489,0.0146903,0.704979,0.148368,0.94901,0.308414,0.285975,0.243113,0.785592,0.50074,0.175757,0.763649,0.420257,0.585579,0.852987,0.83623,0.181066,0.688776,0.320667,0.756047,0.856016,0.546996,0.810111,0.809421,0.423158,0.0417693,0.917098,0.271215,0.550007,0.706034,0.359116,0.972531,0.237545,0.336075,0.911275,0.590992,0.154084,0.903719,0.694156,0.238872,0.260454,0.725072,0.913685,0.934659,0.205139,0.510174,0.340869,0.630666,0.634749,0.827487,0.972649,0.894352,0.853681,0.623771,0.734033,0.923788,0.68034,0.7629,0.564547,0.640909,0.548785,0.616988,0.635498,0.55828,0.175733,0.723803,0.666145,0.0907445,0.574103,0.026028,0.957791,0.889078,0.702876,0.694953,0.833185,0.958824,0.405824,0.407516,0.0374213,0.22129,0.141722,0.675588,0.636602,0.0315543,0.248744,0.917958,0.59316,0.971443,0.14305,0.247878,0.898291,0.486002,0.17538,0.275017,0.592139,0.0273905,0.933611,0.00451577,0.996873,0.993201,0.41655,0.563623,0.373362,0.852968,0.576477,0.200368,0.0429774,0.105692,0.568823,0.0287707,0.257678,0.703282,0.0284647,0.5281,0.212033,0.735802,0.418163,0.107561,0.421406,0.0314443,0.94332,0.846238,0.140795,0.292212,0.83596,0.923326,0.860725,0.988024,0.635874,0.18677,0.644473,0.481561,0.812429,0.322174,0.727174,0.0632148,0.118906,0.868411,0.0646077,0.425745,0.0684186,0.722285,0.837717,0.805975,0.946577,0.803823,0.545999,0.49401,0.31115,0.0587047,0.398214,0.172557,0.0687581,0.385393,0.606515,0.338233,0.044389,0.745251,0.414268,0.467295,0.587278,0.817422,0.352183,0.589594,0.492676,0.833019,0.702882,0.0618105,0.0680441,0.192777,0.234898,0.947269,0.111162,0.544241,0.924882,0.734433,0.153801,0.157785,0.21657,0.345901,0.290608,0.929551,0.862323,0.788029,0.0606862,0.370839,0.422581,0.241757,0.17178,0.885147,0.434482,0.947925,0.336098,0.311608,0.744956,0.502156,0.874432,0.815772,0.906117,0.780434,0.836161,0.634531,0.184511,0.549569,0.0537128,0.13844,0.0897288,0.923461,0.567467,0.172702,0.873819,0.651807,0.86847,0.040819,0.110149,0.934192,0.796409,0.14855,0.523795,0.272472,0.138524,0.382055,0.52813,0.891433,0.505847,0.301161,0.73042,0.610935,0.386025,0.994462,0.61619,0.0447343,0.773561,0.746706,0.289893,0.545318,0.698171,0.799655,0.521509,0.0163227,0.192135,0.427037,0.575914,0.923288,0.864476,0.415132,0.524707,0.305046,0.602267,0.943096,0.90887,0.627409,0.970865,0.405744,0.979923,0.45573,0.707906,0.406556,0.121333,0.132827,0.992588,0.151273,0.484684,0.397277,0.729358,0.598629,0.692852,0.851342,0.236587,0.248917,0.668613,0.307468,0.663582,0.200919,0.346886,0.669511,0.739641,0.0448,0.92948,0.320196,0.997562,0.876216,0.688293,0.440879,0.0319542,0.207386,0.323435,0.797012,0.250699,0.952365,0.401256,0.518248,0.461228,0.105531,0.74623,0.97918,0.121882,0.565618,0.419992,0.321319,0.667577,0.689129,0.671937,0.315489,0.19919,0.0623797,0.996005,0.060065,0.0807549,0.168739,0.204411,0.988327,0.83588,0.699373,0.542558,0.466021,0.934971,0.796194,0.936334,0.472315,0.294734,0.631366,0.689574,0.260796,0.386461,0.313537,0.0215186,0.410766,0.916775,0.310426,0.823998,0.568602,0.657414,0.540309,0.70316,0.226733,0.814453,0.219788,0.836285,0.695335,0.549,0.231311,0.234397,0.562433,0.0609589,0.564157,0.39174,0.00908113,0.344322,0.4562,0.608535,0.0782284,0.740765,0.492895,0.167386,0.162545,0.816063,0.992842,0.984316,0.233601,0.323021,0.540701,0.698848,0.356869,0.413521,0.931834,0.276181,0.354331,0.92452,0.875579,0.400921,0.490039,0.446289,0.563941,0.832696,0.999513,0.930754,0.234118,0.34998,0.214226,0.61442,0.679118,0.752589,0.273065,0.356705,0.697399,0.585422,0.764542,0.593634,0.387804,0.771784,0.35312,0.36393,0.304517,0.0690094,0.434685,0.780706,0.302468,0.735879,0.299098,0.820824,0.819015,0.393466,0.986209,0.962878,0.180647,0.691189,0.115056,0.922622,0.771799,0.257232,0.269967,0.83919,0.0835615,0.32852,0.906635,0.498265,0.989499,0.914563,0.221749,0.712855,0.67971,0.748902,0.29627,0.571282,0.789297,0.985613,0.245502,0.0193344,0.166005,0.572961,0.871768,0.335607,0.558257,0.220167,0.675871,0.52411,0.711159,0.204153,0.596921,0.31575,0.465498,0.627274,0.939317,0.500339,0.961673,0.433506,0.257537,0.319792,0.487867,0.875793,0.954999,0.923491,0.0712829,0.787679,0.132044,0.125691,0.975119,0.048624,0.575079,0.227907,0.134295,0.889784,0.128782,0.24701,0.993368,0.808768,0.850237,0.205117,0.208153,0.403764,0.147047,0.0611624,0.41091,0.636408,0.300756,0.480284,0.504995,0.403314,0.497558,0.166352,0.804691,0.734793,0.0405695,0.853439,0.665711,0.20354,0.263837,0.500358,0.782259,0.85111,0.186027,0.415081,0.861509,0.901311,0.311043,0.388062,0.283437,0.483983,0.185247,0.687291,0.593906,0.528177,0.515779,0.0713189,0.32767,0.88381,0.234733,0.282559,0.87281,0.261133,0.903472,0.26095,0.939083,0.572843,0.513562,0.306002,0.642262,0.109042,0.93076,0.342873,0.673136,0.614991,0.470943,0.285364,0.660703,0.468006,0.239048,0.757745,0.529478,0.77851,0.573071,0.970363,0.0681998,0.548786,0.0642,0.113864,0.990722,0.679288,0.687459,0.038985,0.400964,0.407863,0.711917,0.46895,0.94219,0.313926,0.016315,0.688926,0.133137,0.289039,0.114413,0.29377,0.125647,0.644303,0.900883,0.399681,0.0359831,0.414084,0.812783,0.1196,0.23312,0.840526,0.531259,0.720364,0.550004,0.76254,0.375093,0.938679,0.66901,0.0642416,0.53367,0.661757,0.443216,0.465927,0.356429,0.833523,0.636655,0.887558,0.723951,0.937266,0.561401,0.016069,0.380022,0.975828,0.998081,0.242485,0.858117,0.103254,0.411797,0.0642301,0.952842,0.87205,0.993583,0.977775,0.0201997,0.619999,0.161523,0.0853738,0.145746,0.761003,0.167886,0.670563,0.825319,0.575826,0.409013,0.128816,0.499625,0.942098,0.88798,0.000469923,0.479513,0.369849,0.614873,0.291662,0.17899,0.565568,0.86579,0.281455,0.897082,0.357155,0.667308,0.635272,0.0913031,0.224711,0.697219,0.233947,0.467227,0.393765,0.909489,0.339239,0.514002,0.8057,0.783766,0.755604,0.958115,0.810987,0.464109,0.445418,0.152042,0.592876,0.571533,0.68601,0.898383,0.959076,0.469965,0.653769,0.436822,0.469478,0.532019,0.885434,0.35001,0.68763,0.446691,0.0268789,0.940817,0.952843,0.0798211,0.55329,0.616971,0.134523,0.393402,0.224408,0.571791,0.541042,0.637177,0.113912,0.250684,0.640557,0.343338,0.0482081,0.99088,0.448723,0.463071,0.348316,0.317823,0.0997226,0.735111,0.799145,0.737873,0.63301,0.579379,0.994635,0.145726,0.978522,0.310524,0.0328534,0.554181,0.455486,0.430638,0.00812852,0.627333,0.608084,0.399924,0.464336,0.208598,0.487281,0.393292,0.267203,0.91404,0.207111,0.38372,0.991583,0.531704,0.0956366,0.773123,0.622793,0.132047,0.7861,0.596886,0.794091,0.456618,0.789412,0.962249,0.0155717,0.717968,0.883106,0.126721,0.602033,0.909974,0.523408,0.23766,0.607323,0.783493,0.27979,0.603202,0.347922,0.938401,0.888915,0.830572,0.874514,0.689135,0.755509,0.0958147,0.403009,0.550225,0.641284,0.0784783,0.83542,0.983746,0.82002,0.749347,0.468957,0.430525,0.0826113,0.887903,0.160006,0.138232,0.405281,0.661864,0.920738,0.144928,0.326043,0.548729,0.583175,0.202674,0.352462,0.46217,0.677737,0.638478,0.0257421,0.8413,0.592245,0.487745,0.796902,0.254841,0.0676383,0.445197,0.241441,0.585983,0.645812,0.292889,0.52158,0.247954,0.395687,0.0142961,0.31678,0.489198,0.427934,0.632423,0.0335782,0.159368,0.697196,0.995647,0.505995,0.2415,0.317702,0.650631,0.631182,0.354279,0.304762,0.31714,0.686849,0.953146,0.853096,0.989023,0.374223,0.829161,0.3582,0.0464897,0.0946506,0.477461,0.538917,0.828296,0.555364,0.891933,0.870609,0.407739,0.692315,0.443323,0.686576,|0.340117,0.652019,0.0173593,0.927277,0.0999818,0.856587,0.238265,0.72442,0.639084,0.990647,0.825079,0.792032,0.0856019,0.822899,0.893806,0.343681,0.392472,0.360079,0.167687,0.47239,0.337661,0.339399,0.978251,0.609846,0.27224,0.982038,0.611366,0.907342,0.739955,0.322115,0.147289,0.396976,0.0335404,0.422406,0.393815,0.808876,0.504225,0.55489,0.851287,0.308643,0.0163777,0.344778,0.0455084,0.92341,0.118029,0.535443,0.280995,0.424007,0.418858,0.964743,0.938811,0.772101,0.780647,0.874243,0.50124,0.304452,0.855461,0.196903,0.768577,0.651882,0.235525,0.147275,0.766466,0.24681,0.646342,0.619288,0.531943,0.757489,0.896904,0.117059,0.109984,0.974573,0.382389,0.934754,0.658462,0.936348,0.986026,0.689096,0.135213,0.88503,0.892947,0.58151,0.556101,0.503436,0.81506,0.793491,0.389208,0.814213,0.867164,0.621807,0.0156922,0.892938,0.163994,0.94061,0.0211441,0.113476,0.371502,0.571987,0.635403,0.488208,0.54489,0.620503,0.785885,0.215112,0.743693,0.267661,0.565436,0.272662,0.73187,0.698905,0.662792,0.643351,0.926769,0.0447941,0.74665,0.80579,0.522834,0.480782,0.802464,0.935136,0.229383,0.0829617,0.165093,0.0763861,0.488625,0.795942,0.486125,0.0954612,0.604465,0.827593,0.42652,0.210492,0.948139,0.320509,0.479248,0.632748,0.946084,0.859611,0.973798,0.550337,0.685524,0.900192,0.572674,0.11907,0.750099,0.863422,0.334515,0.142405,0.399339,0.987915,0.655665,0.441831,0.405605,0.565825,0.366602,0.983104,0.332039,0.470458,0.182203,0.190952,0.381718,0.0951738,0.117953,0.728512,0.711318,0.92368,0.825898,0.00519049,0.444371,0.784079,0.746458,0.535521,0.271437,0.934627,0.415646,0.215879,0.39525,0.764036,0.622608,0.0232747,0.0179705,0.0560536,0.63046,0.175888,0.36425,0.958837,0.613954,0.044814,0.51206,0.40297,0.179722,0.633107,0.281513,0.288789,0.611961,0.907373,0.0235263,0.461002,0.220684,0.883836,0.745143,0.0719862,0.845958,0.107005,0.886411,0.0404459,0.00808686,0.517944,0.964336,0.733442,0.656575,0.506079,0.631761,0.698138,0.963927,0.265092,0.0241576,0.793004,0.467928,0.401604,0.474254,0.501602,0.714219,0.90069,0.880364,0.0222244,0.40059,0.42642,0.445866,0.253968,0.806537,0.720955,0.25757,0.71851,0.193579,0.747758,0.165338,0.0511873,0.717491,0.522223,0.548753,0.478545,0.108113,0.000436306,0.745004,0.877795,0.29379,0.142205,0.559711,0.538847,0.558069,0.0339748,0.0467476,0.893041,0.996711,0.798477,0.710415,0.103343,0.56108,0.987592,0.221429,0.284563,0.82578,0.419816,0.557051,0.0977392,0.0935141,0.672126,0.0983557,0.72547,0.356417,0.120528,0.478135,0.688853,0.631092,0.448623,0.896964,0.481758,0.766903,0.730065,0.181895,0.362788,0.943812,0.193195,0.97319,0.134044,0.121304,0.0844451,0.424075,0.00109935,0.245094,0.152204,0.0746171,0.355265,0.337633,0.586727,0.980772,0.178839,0.599392,0.507358,0.564231,0.763418,0.464681,0.854285,0.270423,0.416969,0.255155,0.174989,0.695951,0.412338,0.685668,0.885475,0.694308,0.58545,0.0297737,0.977215,0.245199,0.284564,0.590279,0.269283,0.980007,0.649249,0.307959,0.612536,0.79608,0.971605,0.750406,0.269176,0.36692,0.931152,0.543988,0.130405,0.940901,0.577449,0.0444049,0.60242,0.454091,0.224984,0.788185,0.637524,0.141732,0.674709,0.462812,0.211531,0.550893,0.136548,0.888363,0.894318,0.450966,0.376959,0.440113,0.964173,0.284616,0.0164922,0.685023,0.331784,0.636016,0.284013,0.545127,0.20039,0.611819,0.0341339,0.759844,0.548586,0.611617,0.633325,0.133257,0.996334,0.0353892,0.808107,0.96298,0.569927,0.00618345,0.215678,0.47554,0.662558,0.917472,0.709193,0.428156,0.72644,0.793827,0.208755,0.43346,0.969822,0.255033,0.0354148,0.613548,0.584431,0.236575,0.0276096,0.680802,0.862447,0.345784,0.123022,0.296378,0.431984,0.756821,0.412481,0.0950568,0.259413,0.0423719,0.0403756,0.333788,0.0125716,0.0735385,0.0299922,0.960664,0.397587,0.495797,0.42425,0.188138,0.398068,0.608551,0.702453,0.456695,0.0831041,0.0578719,0.205574,0.0771002,0.600267,0.0670972,0.754172,0.759703,0.50321,0.558081,0.789269,0.999436,0.398232,0.931616,0.432535,0.0741482,0.241104,0.683224,0.236446,0.987968,0.0687591,0.690141,0.947691,0.939205,0.629785,0.00224012,0.045382,0.91744,0.455769,0.492359,0.592909,0.444422,0.0339469,0.597282,0.561963,0.268033,0.488405,0.80197,0.192043,0.0283259,0.672017,0.520116,0.744601,0.625584,0.14812,0.715385,0.855261,0.588347,0.539752,0.0446822,0.901306,0.580981,0.512286,0.384517,0.00751436,0.562292,0.770554,0.866892,0.888922,0.161974,0.417768,0.0298142,0.438078,0.123741,0.220237,0.181104,0.767289,0.331019,0.854962,0.522442,0.808476,0.314688,0.74042,0.768295,0.614929,0.158997,0.146285,0.667503,0.247192,0.13067,0.237991,0.517545,0.151468,0.269297,0.275674,0.673769,0.749587,0.494585,0.101852,0.338197,0.709818,0.917736,0.114921,0.921238,0.37796,0.938312,0.921993,0.361275,0.616932,0.838593,0.950427,0.325727,0.433955,0.343933,0.536301,0.752274,0.855985,0.150141,0.197847,0.0584347,0.323735,0.120204,0.789061,0.0185406,0.694292,0.333552,0.793196,0.185671,0.962903,0.944669,0.642069,0.750702,0.698358,0.100991,0.121353,0.661198,0.550118,0.896991,0.106613,0.19239,0.832224,0.0316698,0.850537,0.0280292,0.420833,0.0763371,0.185875,0.791592,0.952466,0.82359,0.730286,0.0452306,0.771899,0.193124,0.997284,0.113857,0.376376,0.692218,0.316895,0.645669,0.596149,0.741749,0.260166,0.767161,0.56632,0.726946,0.373341,0.7965,0.235352,0.000397801,0.871692,0.0290177,0.90884,0.109472,0.655982,0.888672,0.0684648,0.494438,0.212889,0.573837,0.819632,0.561185,0.937958,0.920901,0.480685,0.0239079,0.869535,0.348047,0.180995,0.955481,0.541628,0.91683,0.170475,0.0320528,0.0755171,0.735956,0.940189,0.192618,0.818186,0.971523,0.773986,0.300285,0.0527753,0.201265,0.345172,0.899453,0.0077709,0.312225,0.551841,0.533234,0.990433,0.725882,0.348533,0.583976,0.306642,0.188331,0.348892,0.64867,0.471176,0.186934,0.0537698,0.966165,0.783591,0.101472,0.866898,0.943609,0.0373277,0.670752,0.606083,0.0338047,0.221103,0.541165,0.800386,0.0343998,0.66422,0.399186,0.270564,0.324716,0.72369,0.67424,0.586972,0.0798692,0.292376,0.526694,0.416067,0.561393,0.197169,0.00836104,0.541265,0.360288,0.451744,0.5927,0.809694,0.364279,0.181132,0.925278,0.00906396,0.482513,0.59212,0.823922,0.547616,0.351249,0.129739,0.668428,0.0687392,0.990073,0.642591,0.357468,0.588183,0.337269,0.851725,0.291469,0.11674,0.0180022,0.574515,0.560452,0.971879,0.123589,0.131467,0.362327,0.61272,0.321228,0.0567855,0.125575,0.582187,0.065927,0.609761,0.00241822,0.609664,0.748333,0.733005,0.782747,0.554204,0.366589,0.3192,0.445779,0.82662,0.0867151,0.252517,0.788368,0.124054,0.334337,0.53678,0.516195,0.912951,0.802833,0.873938,0.926627,0.783538,0.553549,0.318934,0.106304,0.421168,0.537069,0.316485,0.826436,0.442922,0.297357,0.501231,0.216735,0.128374,0.187636,0.804681,0.0124472,0.682436,0.477407,0.513705,0.357271,0.277278,0.948647,0.328853,0.207987,0.976001,0.723488,0.654651,0.408408,0.238356,0.714627,0.968044,0.0348142,0.0340629,0.804842,0.63851,0.428547,0.0952109,0.912014,0.730928,0.0646059,0.113652,0.521709,0.378133,0.434245,0.772966,0.194157,0.562322,0.274839,0.443932,0.715616,0.271155,0.152385,0.76601,0.335084,0.290077,0.00174004,0.731339,0.217571,0.835597,0.928881,0.513891,0.839776,0.500827,0.430372,0.869892,0.438432,0.159663,0.125356,0.913967,0.137375,0.652445,0.367461,0.661971,0.806931,0.00600535,0.443454,0.227447,0.110197,0.618199,0.958342,0.78445,0.00700951,0.135731,0.437831,0.525064,0.509207,0.250392,0.0675421,0.982607,0.323633,0.351936,0.688028,0.622887,0.623078,0.745898,0.087947,0.658858,0.246687,0.145468,0.22179,0.891543,0.186514,0.794796,0.929576,0.400817,0.552383,0.671423,0.746891,0.361736,0.684373,0.668396,0.0230108,0.0831542,0.331454,0.960269,0.938257,0.830019,0.390176,0.511444,0.935843,0.950049,0.597456,0.52826,0.987964,0.893771,0.42242,0.479756,0.296836,0.325512,0.510902,0.764236,0.231639,0.00430423,0.312985,0.044888,0.381248,0.0526669,0.3769,0.850727,0.245391,0.887543,0.701054,0.304087,0.601136,0.8243,0.212972,0.422573,0.917714,0.868667,0.420101,0.228351,0.553796,0.750911,0.232703,0.329619,0.904776,0.200179,0.460533,0.016523,0.0698463,0.607946,0.871842,0.115592,0.823561,0.501647,0.978538,0.454852,0.364061,0.794346,0.609213,0.435565,0.338489,0.656138,0.777507,0.581616,0.611358,0.236403,0.723709,0.945331,0.961003,0.102701,0.101153,0.626098,0.956706,0.979625,0.545976,0.306395,0.0282443,0.908804,0.215314,0.641991,0.757301,0.906668,0.874157,0.850723,0.814799,0.418745,0.257419,0.229865,0.062528,0.587163,0.257189,0.495068,0.55978,0.474015,0.194072,0.585352,0.228768,0.934496,0.735008,0.128849,0.645101,0.487991,0.132245,0.842711,0.263647,0.0230458,0.118119,0.695883,0.500671,0.507166,0.640273,0.959515,0.362714,0.519328,0.11034,0.197408,0.648605,0.107482,0.579728,0.608711,0.650468,0.300354,0.778349,0.95017,0.898942,0.489334,0.674481,0.410783,0.648868,0.66467,0.487594,0.795878,0.591233,0.771306,0.231708,0.131364,0.517081,0.727761,0.553214,0.172083,0.771376,0.745238,0.155336,0.343456,0.359292,0.0771149,0.773721,0.110638,0.361313,0.68097,0.131104,0.663495,0.511302,0.705208,0.309943,0.194905,0.488067,0.759808,0.406339,0.786284,0.919075,0.768829,0.872469,0.129161,0.669205,0.93415,0.000176191,0.895739,0.80448,0.538369,0.999199,0.718229,0.488908,0.980868,0.581691,0.0510699,|0.763229,0.256506,0.695416,0.190176,0.220416,0.395929,0.75129,0.427368,0.0407547,0.421148,0.656666,0.330272,0.866853,0.770186,0.418453,0.665193,0.412643,0.496261,0.776382,0.170977,0.99117,0.29749,0.983528,0.511407,0.427255,0.0262213,0.170571,0.513552,0.30555,0.784864,0.959608,0.930774,0.181622,0.284592,0.259329,0.126838,0.349207,0.60488,0.55945,0.247921,0.247828,0.974951,0.640111,0.45452,0.485422,0.992549,0.735009,0.510825,0.698455,0.152384,0.802175,0.0259101,0.888216,0.26727,0.160693,0.0133215,0.667409,0.916287,0.273713,0.343433,0.375232,0.577378,0.519385,0.335156,0.675321,0.562367,0.353463,0.398599,0.467253,0.109104,0.0480016,0.546176,0.61977,0.471973,0.990694,0.214564,0.03676,0.538997,0.624883,0.712014,0.478482,0.834364,0.146631,0.0947923,0.235445,0.299475,0.400092,0.65454,0.388907,0.0720331,0.78723,0.171198,0.623761,0.502681,0.22535,0.408034,0.662295,0.987409,0.703525,0.0364906,0.109883,0.0672396,0.823501,0.420535,0.434263,0.93374,0.106749,0.964013,0.0344112,0.942643,0.443687,0.915784,0.601388,0.874054,0.258901,0.212409,0.958432,0.275386,0.635568,0.700668,0.0695856,0.469537,0.669652,0.889363,0.0518116,0.342519,0.901836,0.865008,0.782102,0.227013,0.387134,0.16247,0.908235,0.839874,0.0208228,0.373848,0.7569,0.338775,0.735532,0.223851,0.421887,0.869204,0.805169,0.196408,0.0437058,0.745851,0.497068,0.0778332,0.840556,0.601637,0.668648,0.900617,0.448955,0.748006,0.277525,0.496734,0.290696,0.945867,0.847535,0.138957,0.688926,0.725379,0.278124,0.114484,0.507775,0.944069,0.426674,0.751659,0.0966133,0.193609,0.0801833,0.775669,0.0882988,0.223478,0.640547,0.519478,0.302257,0.570404,0.72185,0.853116,0.784272,0.688043,0.100431,0.479549,0.0648911,0.829339,0.613661,0.396086,0.243756,0.0142842,0.0772015,0.206427,0.330122,0.501078,0.497723,0.886093,0.682205,0.671148,0.788234,0.59673,0.576131,0.46597,0.0671008,0.482994,0.414517,0.558323,0.514198,0.31335,0.604827,0.00144815,0.995744,0.296579,0.108962,0.732991,0.325621,0.857194,0.0713171,0.811576,0.992506,0.885645,0.176898,0.777772,0.489662,0.350677,0.133077,0.215898,0.108835,0.239005,0.971585,0.00159174,0.838466,0.621077,0.670761,0.596957,0.646392,0.214724,0.493412,0.14526,0.477033,0.592163,0.302383,0.38587,0.0241367,0.640434,0.0943447,0.72038,0.428632,0.205264,0.501027,0.766291,0.575066,0.924831,0.561165,0.467299,0.458882,0.754289,0.690601,0.300412,0.736113,0.39747,0.665714,0.195103,0.0223517,0.744642,0.757645,0.417377,0.893952,0.833266,0.758321,0.650987,0.242156,0.359254,0.274208,0.0472089,0.134429,0.494751,0.791337,0.950762,0.192937,0.309671,0.697422,0.797053,0.789525,0.0902761,0.425025,0.555625,0.168555,0.565567,0.557334,0.996669,0.518452,0.168716,0.0574197,0.66067,0.0152883,0.62239,0.299315,0.860995,0.931146,0.610275,0.245805,0.551488,0.537404,0.563122,0.347559,0.443549,0.746778,0.2028,0.887925,0.461171,0.39835,0.115588,0.320605,0.496038,0.447909,0.157455,0.267833,0.906681,0.680144,0.110356,0.425146,0.638099,0.453362,0.22835,0.504281,0.215152,0.065051,0.623124,0.862002,0.866469,0.520353,0.471381,0.955813,0.482106,0.235465,0.0330419,0.0809445,0.558923,0.209127,0.901186,0.0553858,0.791554,0.766663,0.103366,0.36748,0.831294,0.702507,0.173034,0.446957,0.31956,0.59134,0.0255655,0.805953,0.829972,0.761094,0.0718608,0.330524,0.058628,0.207495,0.234079,0.514539,0.630602,0.0908414,0.387721,0.0326354,0.923417,0.290747,0.672875,0.263669,0.23813,0.772051,0.659982,0.260273,0.0238071,0.135067,0.943404,0.215718,0.657336,0.983655,0.0997937,0.982328,0.413219,0.757539,0.271723,0.195896,0.810616,0.900561,0.997764,0.77565,0.0927293,0.0350307,0.470261,0.305532,0.614047,0.679171,0.930607,0.752948,0.812071,0.109573,0.871431,0.494926,0.859495,0.593831,0.50077,0.331231,0.511444,0.320904,0.685904,0.00306457,0.12102,0.733826,0.374202,0.544622,0.300665,0.331589,0.565532,0.910432,0.577244,0.387645,0.252378,0.873632,0.741334,0.530439,0.936882,0.218225,0.098865,0.462632,0.137898,0.650166,0.513161,0.313766,0.661323,0.883227,0.454805,0.509819,0.416716,0.145271,0.740991,0.676145,0.272229,0.559152,0.234077,0.55501,0.564069,0.690195,0.883488,0.3643,0.602167,0.191155,0.935382,0.983646,0.766936,0.355391,0.919728,0.901492,0.669743,0.68022,0.27715,0.434015,0.275305,0.631645,0.677392,0.309772,0.74107,0.0968,0.904511,0.234789,0.0448325,0.906805,0.0732962,0.442176,0.379209,0.426431,0.756225,0.0374046,0.35756,0.0497009,0.643567,0.551298,0.981789,0.482351,0.811398,0.411355,0.255835,0.52761,0.861834,0.15315,0.377943,0.200284,0.737052,0.263509,0.437238,0.319924,0.83175,0.370291,0.165812,0.00881964,0.272474,0.313155,0.0649036,0.0167248,0.776569,0.236199,0.0161458,0.939452,0.694657,0.839135,0.0796393,0.126825,0.676303,0.234127,0.736039,0.396417,0.0796698,0.146877,0.425205,0.903765,0.216448,0.156071,0.192328,0.0933504,0.144247,0.286526,0.819177,0.524427,0.258085,0.537835,0.96883,0.547919,0.00539327,0.57248,0.498853,0.804965,0.434345,0.262125,0.969084,0.117711,0.693106,0.194524,0.0117901,0.816556,0.941483,0.687377,0.89713,0.218175,0.0431311,0.438677,0.648174,0.0139537,0.782902,0.194655,0.507114,0.113878,0.755716,0.469662,0.628308,0.0304587,0.74199,0.373589,0.0477848,0.264517,0.133548,0.224066,0.180435,0.0481063,0.4168,0.46504,0.690532,0.251114,0.316841,0.249292,0.112079,0.332406,0.328343,0.736979,0.768329,0.664868,0.176715,0.329148,0.660493,0.726111,0.0575057,0.985901,0.000930548,0.373484,0.627367,0.0610384,0.399327,0.856838,0.649378,0.587093,0.738767,0.510945,0.653844,0.564961,0.406439,0.392057,0.175005,0.428281,0.956171,0.487341,0.697347,0.0721365,0.920704,0.400644,0.32683,0.920445,0.999269,0.587402,0.855921,0.993331,0.777401,0.6644,0.851269,0.804561,0.804947,0.768115,0.464308,0.395551,0.804918,0.135035,0.907374,0.241276,0.404668,0.44708,0.885523,0.604921,0.970047,0.384877,0.989678,0.218301,0.909539,0.231806,0.152449,0.705161,0.324169,0.876412,0.0175204,0.168857,0.0258812,0.988961,0.818296,0.733291,0.211625,0.377942,0.810321,0.0417134,0.186384,0.184498,0.196033,0.136465,0.313137,0.908759,0.385988,0.358602,0.306728,0.344579,0.61467,0.281252,0.547463,0.613226,0.900456,0.743545,0.780123,0.214421,0.00756997,0.703652,0.217392,0.656437,0.0640027,0.612526,0.68263,0.546801,0.457762,0.793837,0.814493,0.533022,0.66213,0.696586,0.133725,0.499401,0.635823,0.897703,0.555958,0.722451,0.680696,0.158651,0.785476,0.028307,0.637345,0.0678376,0.542615,0.0352491,0.753178,0.717107,0.582803,0.200043,0.168599,0.542987,0.310938,0.234686,0.737257,0.167858,0.755848,0.490709,0.105329,0.855294,0.25297,0.60209,0.673109,0.150151,0.846039,0.511961,0.0670748,0.621906,0.56554,0.154392,0.814236,0.564138,0.015726,0.764853,0.653024,0.159693,0.118097,0.825071,0.054212,0.838307,0.436624,0.401918,0.951558,0.501844,0.0976496,0.937033,0.824642,0.896312,0.936102,0.2166,0.935218,0.5487,0.152909,0.971359,0.476209,0.650584,0.412881,0.286441,0.538315,0.997181,0.0612088,0.672331,0.98793,0.432502,0.775785,0.44425,0.990925,0.304967,0.312275,0.652562,0.55839,0.0211512,0.455318,0.80493,0.605796,0.254187,0.774039,0.178797,0.920489,0.718205,0.0623859,0.852882,0.85213,0.364541,0.31062,0.363418,0.833424,0.777282,0.93544,0.35145,0.568213,0.232705,0.414565,0.476571,0.527371,0.278029,0.976966,0.682111,0.807844,0.528579,0.35696,0.590778,0.458574,0.304246,0.501116,0.895668,0.957406,0.690679,0.290928,0.734468,0.389624,0.307716,0.234254,0.384339,0.385341,0.793099,0.87104,0.684433,0.910626,0.804732,0.154907,0.703896,0.568169,0.44279,0.0846936,0.527164,0.410163,0.886671,0.322107,0.422763,0.54889,0.291193,0.351427,0.537024,0.869289,0.0564036,0.476475,0.997764,0.769544,0.0289867,0.0801436,0.165217,0.134176,0.0248886,0.675014,0.795901,0.167624,0.901194,0.0259078,0.267176,0.864903,0.975357,0.340091,0.545994,0.910509,0.924927,0.82798,0.781252,0.365086,0.0870029,0.178652,0.0756642,0.19384,0.17917,0.615255,0.474596,0.52884,0.358385,0.525432,0.574803,0.924989,0.530181,0.55666,0.116048,0.497834,0.00889742,0.150599,0.474494,0.296009,0.16981,0.380907,0.153058,0.680692,0.726389,0.766393,0.549242,0.563569,0.175977,0.888669,0.96004,0.524749,0.373178,0.687928,0.333884,0.0570623,0.658356,0.888156,0.950022,0.728188,0.501519,0.522481,0.123049,0.53538,0.526336,0.750056,0.0179922,0.633668,0.423084,0.654732,0.671252,0.481985,0.611136,0.588568,0.953341,0.831559,0.996608,0.822804,0.984378,0.0277655,0.678879,0.43553,0.108163,0.418159,0.933085,0.235575,0.248737,0.270315,0.847075,0.107182,0.758285,0.429763,0.052913,0.324352,0.302603,0.158275,0.520809,0.338049,0.578457,0.651051,0.10579,0.0768142,0.799887,0.383815,0.31305,0.171338,0.872817,0.651854,0.239894,0.729882,0.407578,0.463075,0.462523,0.793268,0.0346145,0.976801,0.562315,0.835981,0.487957,0.177435,0.411853,0.604935,0.444633,0.457462,0.296261,0.275779,0.158868,0.789257,0.568764,0.154154,0.809675,0.576386,0.719323,0.554548,0.750909,0.257051,0.663553,0.0924299,0.849697,0.438001,0.141177,0.580526,0.704676,0.647519,0.481469,0.805942,0.0454947,0.354903,0.787787,0.062579,0.77763,0.83758,0.480206,0.640032,0.927154,0.37529,0.723067,0.721219,0.89978,0.312733,0.254151,0.978447,0.101117,0.276952,0.325722,0.361395,0.488584,0.852579,0.755453,0.146725,0.784031,0.01522,0.0217033,0.0313651,|0.665099,0.952614,0.729555,0.487705,0.899992,0.41882,0.297414,0.741494,0.573664,0.981028,0.922193,0.399781,0.398107,0.130841,0.0252182,0.825345,0.250807,0.835388,0.355795,0.110445,0.876592,0.389178,0.363148,0.047077,0.354512,0.140431,0.445974,0.390844,0.798889,0.981783,0.0945693,0.87971,0.239253,0.43677,0.596917,0.110376,0.527387,0.592607,0.856647,0.165657,0.893126,0.523921,0.9608,0.657641,0.816633,0.257656,0.734289,0.726997,0.831956,0.931397,0.989239,0.838841,0.482506,0.649136,0.542887,0.979465,0.376206,0.258915,0.738231,0.426221,0.209754,0.621964,0.804251,0.116959,0.0998222,0.809995,0.491789,0.711293,0.702763,0.61711,0.861998,0.711881,0.805504,0.755075,0.977007,0.799441,0.230618,0.520708,0.428123,0.243274,0.13468,0.538869,0.667075,0.304383,0.653155,0.22824,0.788694,0.78886,0.403507,0.926555,0.318369,0.567874,0.952969,0.679343,0.101276,0.209363,0.568399,0.295242,0.580814,0.171089,0.174921,0.795699,0.158082,0.280642,0.810723,0.301479,0.845321,0.340375,0.742123,0.359876,0.97266,0.204513,0.259371,0.591671,0.505035,0.146606,0.529601,0.988019,0.227814,0.411469,0.634102,0.694925,0.771744,0.406979,0.691599,0.756314,0.66796,0.877998,0.477995,0.264026,0.528999,0.288795,0.414171,0.61587,0.342859,0.389226,0.0639644,0.060986,0.222128,0.132357,0.134194,0.0618072,0.427554,0.442096,0.097443,0.547203,0.258606,0.505731,0.622416,0.583799,0.177218,0.127751,0.606122,0.436473,0.110143,0.719151,0.154817,0.541902,0.264201,0.806037,0.986217,0.644748,0.435113,0.361018,0.454075,0.699159,0.00290376,0.416786,0.902661,0.79404,0.306872,0.681215,0.116202,0.844829,0.515216,0.699188,0.891723,0.979868,0.815084,0.0258264,0.248001,0.28867,0.625844,0.316545,0.392233,0.856708,0.617538,0.36551,0.829949,0.396257,0.400601,0.0722588,0.0239329,0.817666,0.830245,0.444289,0.938485,0.911099,0.796721,0.784372,0.937064,0.978659,0.110778,0.546794,0.837535,0.58442,0.545326,0.833,0.984936,0.974003,0.81044,0.669029,0.994636,0.552974,0.0240593,0.591917,0.47975,0.401314,0.443277,0.922126,0.860041,0.972712,0.0123945,0.522934,0.925572,0.601451,0.451082,0.515418,0.010098,0.213006,0.409047,0.00925356,0.381545,0.0412019,0.151717,0.226907,0.936948,0.848451,0.584832,0.169333,0.879096,0.52453,0.750588,0.565018,0.472891,0.707943,0.611525,0.110219,0.137774,0.842066,0.17166,0.0511007,0.664222,0.642678,0.475972,0.362559,0.264124,0.804315,0.190184,0.462598,0.0547711,0.524008,0.0924432,0.197492,0.258572,0.464225,0.0437573,0.315709,0.586114,0.114444,0.376963,0.570354,0.605994,0.984643,0.53272,0.212285,0.831414,0.383872,0.29597,0.59234,0.429008,0.842713,0.33103,0.99422,0.782209,0.830302,0.889609,0.579079,0.584822,0.526245,0.908249,0.474425,0.356869,0.497967,0.193269,0.325293,0.374033,0.835332,0.087202,0.859948,0.157475,0.410889,0.352143,0.282317,0.507219,0.28101,0.912456,0.0305764,0.587102,0.5218,0.882339,0.471831,0.442643,0.568458,0.422236,0.341798,0.302595,0.574906,0.174714,0.75581,0.47801,0.585892,0.812494,0.396482,0.541161,0.654794,0.12661,0.665665,0.572682,0.959013,0.584133,0.714505,0.540257,0.050154,0.624334,0.584566,0.807722,0.604013,0.332293,0.68917,0.586292,0.818395,0.812396,0.572553,0.0885786,0.638295,0.0920708,0.56407,0.697866,0.119482,0.73961,0.134994,0.976815,0.585014,0.65467,0.044162,0.829475,0.594317,0.222619,0.260262,0.461216,0.241075,0.235905,0.538833,0.573445,0.988897,0.446677,0.142632,0.646977,0.147142,0.132418,0.150998,0.55077,0.572704,0.235558,0.366324,0.464585,0.576834,0.86987,0.045733,0.0279104,0.387041,0.827084,0.257864,0.949317,0.04124,0.188881,0.38976,0.784946,0.360988,0.752623,0.675769,0.139542,0.64769,0.156649,0.255118,0.79502,0.6306,0.159477,0.6843,0.596587,0.535273,0.120806,0.296259,0.820959,0.92167,0.219841,0.725558,0.263,0.0342224,0.256239,0.055864,0.391697,0.467591,0.766424,0.513181,0.974673,0.75823,0.80876,0.179379,0.492275,0.578166,0.186362,0.443176,0.724467,0.67349,0.270674,0.579404,0.495954,0.267317,0.649805,0.195859,0.797461,0.645178,0.910907,0.20024,0.206146,0.0848382,0.419148,0.840981,0.23396,0.518142,0.631874,0.128896,0.762907,0.335379,0.505618,0.313307,0.801432,0.616414,0.624997,0.433553,0.626044,0.174376,0.531923,0.384315,0.184419,0.570503,0.703858,0.314424,0.729848,0.267264,0.655241,0.388754,0.133608,0.449174,0.848358,0.427348,0.456329,0.0364588,0.0645727,0.505336,0.980833,0.950122,0.545567,0.80531,0.459605,0.875659,0.095365,0.222827,0.535819,0.167201,0.514769,0.554009,0.176106,0.181201,0.417779,0.0732686,0.442487,0.375201,0.133602,0.890242,0.719835,0.656975,0.760716,0.788541,0.996348,0.829332,0.548548,0.0616592,0.175036,0.82404,0.480034,0.741175,0.260732,0.465941,0.760004,0.987452,0.322495,0.848921,0.894883,0.862552,0.282063,0.186992,0.0767815,0.176906,0.797911,0.00186312,0.271547,0.0936987,0.416288,0.990806,0.310977,0.0819005,0.425424,0.237262,0.786011,0.863512,0.467309,0.0930253,0.505299,0.376868,0.00712281,0.24555,0.099814,0.452271,0.304847,0.385538,0.344034,0.98187,0.589193,0.475227,0.711641,0.561659,0.873301,0.100725,0.750506,0.817789,0.920415,0.467289,0.542934,0.983505,0.818313,0.317228,0.298024,0.296849,0.558484,0.397297,0.913923,0.776735,0.886693,0.989583,0.213285,0.968328,0.478385,0.310377,0.162885,0.497969,0.84939,0.64906,0.627993,0.56498,0.791338,0.620022,0.316037,0.869179,0.277934,0.557772,0.870271,0.859177,0.328939,0.695434,0.288208,0.108984,0.449007,0.0722201,0.523678,0.362634,0.895957,0.443471,0.72516,0.819883,0.994993,0.0509661,0.597654,0.421695,0.914826,0.596383,0.0778964,0.755586,0.0732974,0.791958,0.386585,0.12566,0.190131,0.524229,0.164789,0.166393,0.253958,0.595957,0.46023,0.882555,0.417543,0.972577,0.974478,0.449541,0.932487,0.70686,0.713396,0.673593,0.566546,0.104233,0.0222048,0.921892,0.372295,0.35869,0.144168,0.520726,0.299518,0.525336,0.776529,0.772184,0.814239,0.319222,0.871353,0.444505,0.975969,0.512633,0.48064,0.803782,0.252282,0.91073,0.370566,0.473879,0.380733,0.371769,0.254877,0.0877216,0.626168,0.420634,0.754774,0.903444,0.945052,0.818965,0.0645604,0.396088,0.793834,0.525644,0.997403,0.266271,0.726468,0.939144,0.639563,0.228633,0.745931,0.987206,0.852219,0.262518,0.74713,0.465539,0.19997,0.821812,0.814549,0.141551,0.35415,0.147917,0.48115,0.241493,0.351226,0.00324696,0.615113,0.64998,0.722742,0.335037,0.879146,0.668194,0.436647,0.70631,0.613018,0.119879,0.551907,0.971479,0.764264,0.347701,0.767204,0.811526,0.305522,0.541504,0.190976,0.242513,0.941502,0.135598,0.394634,0.0751469,0.885602,0.153303,0.979038,0.683959,0.311214,0.0771019,0.754892,0.324197,0.57824,0.716347,0.808741,0.369465,0.655943,0.234664,0.749126,0.206867,0.86841,0.143838,0.862788,0.822907,0.753297,0.494008,0.65756,0.135303,0.190013,0.0123609,0.633229,0.922434,0.372883,0.0551534,0.860965,0.969046,0.240827,0.621679,0.51299,0.876402,0.731031,0.974443,0.405768,0.806683,0.774061,0.980866,0.664096,0.77956,0.221655,0.0695825,0.687758,0.732158,0.917171,0.717199,0.0967292,0.268206,0.499717,0.227689,0.359773,0.199373,0.925771,0.667775,0.129647,0.433919,0.620259,0.536571,0.653404,0.63651,0.54474,0.435404,0.111825,0.28584,0.701778,0.334777,0.82505,0.678973,0.137994,0.0130035,0.36314,0.986478,0.0223861,0.449739,0.714147,0.742866,0.16052,0.886026,0.549913,0.104704,0.312517,0.0225555,0.577359,0.0623657,0.221651,0.0554739,0.540903,0.998354,0.413124,0.164628,0.0018369,0.047619,0.992233,0.399712,0.574751,0.72865,0.0764033,0.195003,0.14751,0.915862,0.348723,0.966039,0.570994,0.562128,0.273609,0.407046,0.758988,0.169703,0.312856,0.839982,0.498875,0.195724,0.723297,0.316693,0.740623,0.314599,0.46564,0.528646,0.949312,0.926007,0.416335,0.473888,0.234129,0.73428,0.437541,0.893151,0.252006,0.952687,0.125914,0.39438,0.814065,0.482915,0.179187,0.860158,0.898918,0.253957,0.377566,0.621623,0.0241138,0.763367,0.778203,0.718112,0.796068,0.444536,0.882228,0.720638,0.124161,0.337246,0.357669,0.168903,0.0851158,0.779631,0.396074,0.731477,0.44781,0.104367,0.758886,0.222679,0.794248,0.0330563,0.359324,0.925925,0.250542,0.904181,0.556508,0.870826,0.776905,0.189175,0.926759,0.243279,0.216146,0.0256635,0.671769,0.208654,0.199884,0.279656,0.502663,0.895641,0.55975,0.589158,0.153644,0.50217,0.96795,0.56246,0.258123,0.581241,0.253836,0.43448,0.934609,0.178617,0.253638,0.88415,0.669864,0.450709,0.896837,0.498129,0.229666,0.98199,0.611625,0.0745773,0.369474,0.282423,0.39667,0.99218,0.0657257,0.221766,0.743065,0.257382,0.24761,0.579902,0.855063,0.50551,0.257953,0.0745649,0.720779,0.619277,0.758333,0.762192,0.193829,0.870176,0.100185,0.0762771,0.424751,0.476194,0.275152,0.424866,0.519535,0.0856027,0.871697,0.418988,0.635384,0.327903,0.772021,0.503758,0.7004,0.309065,0.325105,0.381544,0.257215,0.70103,0.106398,0.488177,0.528442,0.857834,0.64229,0.139605,0.778695,0.348286,0.358564,0.726025,0.125421,0.77784,0.454646,0.96233,0.822538,0.506824,0.280917,0.549316,0.0143668,0.45217,0.63978,0.612759,0.217578,0.580258,0.494277,0.453618,0.149228,0.222444,0.897187,0.00579488,0.46265,0.453754,0.400149,0.542037,0.139844,0.797834,0.913209,0.686556,0.135711,0.357154,0.425887,0.0122924,0.577486,0.965963,0.870364,0.0846386,0.260026,0.970253,0.800408,0.229681,0.851333,0.790823,|0.990629,0.590725,0.38736,0.702764,0.203673,0.704085,0.925565,0.430848,0.137322,0.0150725,0.422343,0.403378,0.954036,0.861287,0.317027,0.487435,0.797431,0.00526166,0.153072,0.252033,0.820017,0.175619,0.468224,0.175299,0.402983,0.679675,0.94814,0.64827,0.990279,0.753723,0.898407,0.352378,0.711129,0.249383,0.43738,0.490837,0.129095,0.734483,0.703279,0.199333,0.298087,0.920495,0.929004,0.238506,0.737308,0.850175,0.324776,0.764501,0.777362,0.154304,0.611411,0.319204,0.666803,0.288392,0.907518,0.416186,0.219714,0.208687,0.709236,0.348877,0.104462,0.837882,0.17175,0.903554,0.485111,0.732266,0.400102,0.351744,0.0474074,0.311759,0.610539,0.462544,0.511415,0.541516,0.835573,0.96793,0.759112,0.527982,0.512054,0.91711,0.648983,0.199191,0.55368,0.0604412,0.00992876,0.716625,0.922258,0.394409,0.438356,0.0724202,0.787459,0.19165,0.384858,0.786185,0.0262177,0.0696909,0.77864,0.0324517,0.400867,0.628552,0.799008,0.128574,0.0190666,0.425302,0.0461041,0.0880769,0.195018,0.241989,0.673189,0.224375,0.554105,0.404504,0.284317,0.77905,0.41779,0.737552,0.312203,0.293727,0.767795,0.461009,0.6978,0.97041,0.927273,0.0723649,0.130899,0.639984,0.428724,0.248496,0.476918,0.813437,0.58393,0.0657311,0.799764,0.269945,0.439526,0.0786464,0.208448,0.819872,0.536684,0.658104,0.526252,0.491427,0.18813,0.478456,0.320304,0.136172,0.203745,0.525223,0.0176365,0.39995,0.152899,0.803072,0.311613,0.0974486,0.990617,0.539046,0.789954,0.00637567,0.0465028,0.0145921,0.472842,0.414803,0.834347,0.741407,0.0910591,0.671225,0.658354,0.867244,0.302762,0.697569,0.561432,0.0872658,0.223667,0.364923,0.642767,0.100488,0.752573,0.898645,0.543028,0.345837,0.0650634,0.525488,0.678022,0.567115,0.00895953,0.0917545,0.383087,0.239418,0.654739,0.751239,0.104013,0.53346,0.578182,0.0075258,0.633444,0.100193,0.0575051,0.30926,0.3918,0.348206,0.183366,0.260711,0.356384,0.0680313,0.181404,0.776774,0.427966,0.986787,0.390371,0.9524,0.221474,0.714041,0.132353,0.351369,0.506039,0.869001,0.538578,0.695513,0.788919,0.648031,0.556906,0.205105,0.733876,0.723144,0.783056,0.125022,0.537727,0.340092,0.836183,0.0125263,0.169322,0.246711,0.815518,0.504249,0.189956,0.0523756,0.305343,0.270132,0.531258,0.904294,0.494493,0.952713,0.811536,0.490212,0.987683,0.704366,0.62007,0.53694,0.937674,0.833613,0.0706434,0.30342,0.835526,0.886635,0.907417,0.675765,0.647541,0.437705,0.296797,0.514465,0.772951,0.303228,0.573879,0.461307,0.744651,0.145322,0.22833,0.316051,0.705842,0.699809,0.934885,0.310744,0.697308,0.41752,0.059952,0.192622,0.887816,0.760682,0.471596,0.451662,0.325116,0.683687,0.830807,0.0777152,0.0615098,0.563648,0.993984,0.952748,0.0923879,0.299624,0.247834,0.103178,0.189393,0.591639,0.00987333,0.139828,0.928154,0.255927,0.366906,0.288794,0.771253,0.851254,0.579153,0.792478,0.537155,0.434637,0.403344,0.0958129,0.499645,0.551121,0.974472,0.667209,0.345186,0.374463,0.159176,0.811973,0.704709,0.589396,0.338705,0.712083,0.907705,0.978353,0.729206,0.378432,0.0572602,0.36954,0.795424,0.714765,0.563086,0.951996,0.968155,0.922929,0.472673,0.594418,0.261286,0.697842,0.248561,0.343572,0.537558,0.538238,0.277246,0.914645,0.522556,0.525059,0.681695,0.706428,0.888199,0.937954,0.724526,0.554665,0.408132,0.270098,0.271599,0.789439,0.341406,0.759214,0.270448,0.0846254,0.204738,0.202542,0.759327,0.271284,0.465094,0.475208,0.0739113,0.106384,0.185386,0.0302367,0.374411,0.968098,0.129598,0.202055,0.688485,0.940354,0.0479591,0.536262,0.21069,0.935661,0.772099,0.940934,0.0277951,0.765508,0.727804,0.776449,0.352718,0.644679,0.163004,0.855397,0.231963,0.269506,0.130335,0.142559,0.0942951,0.02513,0.167478,0.383058,0.565344,0.0184374,0.365176,0.890598,0.236348,0.494237,0.0630739,0.584723,0.640398,0.133399,0.671315,0.220231,0.578025,0.914882,0.722192,0.266165,0.443343,0.0222511,0.168809,0.758286,0.22537,0.52939,0.261025,0.943715,0.805411,0.64761,0.226365,0.760281,0.567178,0.536822,0.823135,0.753059,0.724838,0.123313,0.386307,0.742853,0.722977,0.560119,0.414956,0.91378,0.789185,0.797339,0.0961444,0.685855,0.519137,0.844799,0.436512,0.501101,0.0483751,0.575202,0.882139,0.367535,0.539001,0.687228,0.374615,0.0178241,0.107057,0.905809,0.59386,0.787372,0.411366,0.812634,0.0509293,0.598409,0.719772,0.211136,0.517492,0.862442,0.121408,0.824445,0.788191,0.208642,0.627588,0.699499,0.961573,0.767011,0.0290656,0.938537,0.126119,0.967435,0.524041,0.679927,0.111915,0.209113,0.116211,0.438623,0.460366,0.298066,0.0657633,0.0646713,0.715387,0.607551,0.76397,0.944808,0.217855,0.755673,0.36117,0.605777,0.0268336,0.207084,0.168622,0.431343,0.648097,0.946041,0.885845,0.476149,0.891457,0.70669,0.431291,0.340091,0.0886358,0.884523,0.865754,0.632711,0.59825,0.975698,0.814695,0.615324,0.696397,0.887192,0.0383213,0.33057,0.514129,0.435222,0.377869,0.460939,0.907935,0.0374804,0.306146,0.372281,0.292532,0.0339087,0.619828,0.530431,0.83622,0.406564,0.711227,0.027491,0.870807,0.607008,0.818307,0.29205,0.569725,0.865714,0.606374,0.739294,0.730517,0.938538,0.627045,0.558433,0.691695,0.482176,0.11788,0.927751,0.823308,0.927409,0.466119,0.0599529,0.102594,0.210173,0.100579,0.0776182,0.797986,0.635613,0.541279,0.218972,0.702716,0.407861,0.817941,0.380492,0.159073,0.368346,0.483825,0.280144,0.876924,0.0022741,0.372626,0.208904,0.360551,0.379018,0.358448,0.156488,0.277712,0.748587,0.871938,0.739334,0.562379,0.926048,0.676205,0.728015,0.956858,0.7892,0.83403,0.961182,0.842723,0.3285,0.195617,0.604822,0.0605631,0.0114661,0.088168,0.688993,0.604543,0.111275,0.710176,0.988621,0.269789,0.211292,0.720958,0.611261,0.371849,0.012359,0.813235,0.145711,0.340692,0.24784,0.813867,0.8286,0.164861,0.654275,0.443052,0.166995,0.623439,0.563682,0.673715,0.589189,0.869511,0.542858,0.370751,0.222092,0.681094,0.68201,0.923953,0.524165,0.34098,0.834668,0.898705,0.38679,0.254103,0.417003,0.493849,0.80158,0.264054,0.382275,0.664217,0.0901903,0.822068,0.32943,0.119386,0.399387,0.647696,0.577339,0.56778,0.613194,0.371936,0.610871,0.422946,0.206313,0.921278,0.115498,0.675505,0.268095,0.29753,0.633148,0.620492,0.55589,0.430056,0.121634,0.39406,0.793365,0.929114,0.487128,0.832473,0.456077,0.345893,0.448131,0.495078,0.34067,0.330382,0.715938,0.893759,0.211379,0.21818,0.659567,0.961821,0.955121,0.709225,0.971066,0.21673,0.0545193,0.557565,0.920947,0.978641,0.965426,0.290085,0.81403,0.650633,0.810184,0.262856,0.7096,0.416363,0.526278,0.938157,0.299935,0.724275,0.593879,0.992486,0.278646,0.238285,0.587803,0.507216,0.565388,0.809123,0.697575,0.667009,0.546537,0.37204,0.210098,0.377039,0.267167,0.220445,0.693702,0.764697,0.408465,0.403702,0.647097,0.0599793,0.614836,0.0667073,0.692627,0.622732,0.900612,0.599467,0.402923,0.190757,0.260329,0.235738,0.346727,0.245581,0.0581409,0.0739807,0.629714,0.183745,0.529389,0.796286,0.570325,0.25053,0.564703,0.744265,0.748313,0.707215,0.0781454,0.713306,0.00278598,0.742741,0.163154,0.522789,0.0936809,0.211921,0.648737,0.664151,0.199455,0.245182,0.220937,0.814556,0.790698,0.720843,0.944777,0.0827029,0.0737019,0.164505,0.652382,0.951493,0.334611,0.984959,0.911939,0.26557,0.282636,0.448683,0.336279,0.100582,0.364098,0.421368,0.0066784,0.315967,0.172387,0.957633,0.414845,0.377998,0.724016,0.611375,0.963952,0.48067,0.286518,0.236393,0.661584,0.39686,0.473952,0.675935,0.935705,0.449227,0.295727,0.825319,0.999939,0.475688,0.521208,0.998445,0.217474,0.192163,0.697011,0.102112,0.409451,0.743087,0.395562,0.807667,0.527723,0.199382,0.084501,0.414403,0.988337,0.172815,0.250173,0.386646,0.489164,0.875305,0.226209,0.0165904,0.279656,0.625492,0.84367,0.164327,0.0933958,0.324762,0.650423,0.771639,0.93736,0.0638805,0.428476,0.362141,0.260282,0.881679,0.624977,0.59194,0.65923,0.819384,0.960756,0.10494,0.139036,0.420746,0.689549,0.329936,0.285942,0.591226,0.279457,0.659692,0.216883,0.248333,0.754219,0.23296,0.240081,0.171384,0.397685,0.109892,0.467494,0.102626,0.166554,0.648922,0.567621,0.129038,0.993726,0.936167,0.559347,0.373607,0.915338,0.572517,0.159873,0.184292,0.918799,0.488002,0.263373,0.483137,0.893317,0.931795,0.767559,0.54574,0.467653,0.393386,0.909012,0.682881,0.714336,0.90179,0.39994,0.695939,0.0385525,0.564527,0.839268,0.803709,0.57058,0.288308,0.944428,0.201691,0.232971,0.775704,0.790568,0.370007,0.751462,0.204074,0.915135,0.144441,0.146655,0.143703,0.129632,0.883848,0.21563,0.122513,0.29881,0.802837,0.212821,0.842357,0.0217463,0.0935797,0.0396689,0.837079,0.346034,0.915446,0.718898,0.687614,0.450844,0.833058,0.0276634,0.882596,0.227118,0.492761,0.488809,0.400158,0.297421,0.617227,0.939177,0.0137724,0.999108,0.290422,0.794304,0.385539,0.330005,0.00522178,0.236261,0.113844,0.368347,0.915898,0.842165,0.972341,0.889122,0.620275,0.772103,0.380023,0.712989,0.0151489,0.00683784,0.812402,0.685721,0.839423,0.210698,0.658278,0.445821,0.706908,0.48242,0.819504,0.976091,0.195316,0.90495,0.000953615,0.307824,0.734086,0.265121,0.00163722,0.651037,0.0268571,0.205654,0.670586,0.240533,0.470831,0.621734,0.253199,0.840383,0.25626,0.593666,0.0261511,0.27773,0.340678,0.687884,0.507433,0.722809,0.640571,0.744011,0.0112294,0.518777,0.22529,0.0672829,0.833183,0.485255,0.014832,0.543573,0.993437,0.905226,|0.78872,0.339575,0.24565,0.622558,0.219214,0.581213,0.617808,0.245102,0.310904,0.195315,0.150409,0.150255,0.51041,0.391213,0.179818,0.137169,0.97406,0.188001,0.879843,0.166374,0.53284,0.179788,0.136551,0.69714,0.864191,0.633156,0.327168,0.184468,0.931807,0.619904,0.41026,0.707456,0.717138,0.0737892,0.243634,0.524024,0.234334,0.315364,0.825676,0.621417,0.79183,0.783526,0.715327,0.111196,0.306445,0.5527,0.34331,0.657967,0.394792,0.127029,0.150116,0.0218686,0.927431,0.267085,0.141949,0.529741,0.345954,0.534965,0.333416,0.775526,0.534591,0.6983,0.0787101,0.579595,0.909255,0.738801,0.207721,0.935043,0.415393,0.571615,0.891925,0.425261,0.549672,0.146615,0.0258901,0.500876,0.601876,0.584272,0.0775726,0.512439,0.141136,0.679845,0.415945,0.325889,0.727862,0.441515,0.532235,0.618451,0.323542,0.8485,0.23131,0.0679967,0.525957,0.318578,0.549381,0.713323,0.0660848,0.0636507,0.430644,0.21271,0.657714,0.350674,0.00671005,0.742907,0.49022,0.464097,0.138755,0.848305,0.431092,0.514975,0.0987124,0.037907,0.558899,0.640176,0.518306,0.61373,0.683788,0.861318,0.720082,0.463992,0.589722,0.774398,0.54118,0.177958,0.622489,0.730284,0.998488,0.391889,0.607153,0.504082,0.797603,0.724916,0.0157604,0.999442,0.651019,0.529904,0.529133,0.228622,0.2129,0.0708073,0.926766,0.353927,0.0356027,0.00587893,0.828789,0.316707,0.965196,0.471353,0.698716,0.122955,0.648704,0.90299,0.108127,0.445033,0.324295,0.0439444,0.923354,0.525605,0.554435,0.874863,0.275742,0.226999,0.186947,0.846229,0.88196,0.995463,0.752504,0.854927,0.753458,0.0612473,0.94118,0.198749,0.676921,0.817632,0.355631,0.687985,0.0128003,0.879159,0.967392,0.3131,0.319585,0.662645,0.198594,0.152209,0.421419,0.849989,0.721205,0.119512,0.739597,0.320241,0.0454659,0.767195,0.417077,0.654307,0.976409,0.34808,0.0828393,0.653986,0.705389,0.942767,0.130615,0.889158,0.605433,0.639419,0.587946,0.187541,0.898541,0.661623,0.617344,0.879801,0.03434,0.238819,0.291005,0.177577,0.454118,0.246297,0.874254,0.808563,0.358989,0.808145,0.838595,0.860429,0.431626,0.184057,0.198831,0.872995,0.839559,0.940124,0.0933013,0.415237,0.477593,0.377042,0.449899,0.466508,0.807975,0.544902,0.22439,0.24659,0.364206,0.816963,0.371754,0.282262,0.133849,0.375622,0.521349,0.79749,0.824112,0.135514,0.589776,0.15274,0.935571,0.817249,0.353299,0.493341,0.835357,0.718436,0.865271,0.0814744,0.203382,0.127545,0.0600372,0.974896,0.603103,0.90204,0.412467,0.499221,0.18203,0.23784,0.035589,0.613805,0.043833,0.387814,0.131537,0.871293,0.336486,0.280555,0.184813,0.806664,0.139938,0.323373,0.386264,0.919559,0.174471,0.426498,0.0404595,0.325013,0.0615754,0.552541,0.945062,0.0143556,0.898762,0.828559,0.980067,0.491711,0.111456,0.469745,0.270552,0.731719,0.506385,0.913715,0.28836,0.80907,0.0118452,0.227942,0.272326,0.736141,0.0638998,0.928824,0.672355,0.801201,0.86209,0.627747,0.913189,0.871488,0.94422,0.358689,0.139176,0.849673,0.312062,0.135567,0.765589,0.714734,0.43561,0.993383,0.595037,0.936332,0.0441371,0.934938,0.86391,0.813028,0.230984,0.0263557,0.568456,0.794895,0.992771,0.272446,0.268978,0.877211,0.240002,0.86293,0.638652,0.0116256,0.675084,0.626973,0.0471457,0.0752434,0.266366,0.756525,0.979563,0.384521,0.951645,0.326978,0.177109,0.576976,0.2025,0.800871,0.698695,0.128691,0.0467978,0.0911714,0.0670833,0.614062,0.00999272,0.465703,0.899724,0.932158,0.248416,0.0903236,0.426931,0.734787,0.633499,0.284145,0.778254,0.446808,0.40649,0.353692,0.521827,0.191235,0.581356,0.693016,0.650527,0.440546,0.63523,0.00292861,0.409289,0.552031,0.454513,0.224167,0.511627,0.143176,0.904419,0.191727,0.511345,0.855311,0.332615,0.581536,0.337669,0.28634,0.261919,0.616382,0.739658,0.733279,0.0373621,0.347812,0.883276,0.209373,0.542847,0.136,0.979007,0.934084,0.63472,0.895035,0.307003,0.189841,0.746641,0.104706,0.25568,0.692876,0.111341,0.274661,0.0424554,0.106503,0.960296,0.0491455,0.3489,0.244747,0.995604,0.822663,0.522133,0.198387,0.472439,0.312285,0.837891,0.531255,0.95667,0.17017,0.0254285,0.806991,0.89695,0.550638,0.656163,0.0609394,0.917318,0.728362,0.715312,0.790366,0.954238,0.655025,0.330257,0.672915,0.350959,0.444459,0.841178,0.614893,0.309778,0.969197,0.336351,0.121341,0.652119,0.370433,0.0921506,0.0119709,0.305262,0.586163,0.806583,0.532799,0.952758,0.947836,0.443294,0.906528,0.701031,0.28017,0.0518849,0.995128,0.714837,0.405267,0.101498,0.544093,0.380056,0.650011,0.175171,0.951664,0.104144,0.201475,0.322369,0.282724,0.475448,0.120353,0.25786,0.508578,0.69233,0.163285,0.578989,0.739157,0.325721,0.865132,0.75659,0.462843,0.92361,0.883156,0.576326,0.276802,0.580779,0.462443,0.853245,0.254285,0.168019,0.779647,0.164319,0.706744,0.33473,0.646541,0.445231,0.0655977,0.461795,0.0634798,0.719152,0.793825,0.905553,0.0727108,0.564017,0.12337,0.785228,0.143111,0.621969,0.568249,0.566246,0.837286,0.218662,0.406559,0.506948,0.0491946,0.498745,0.996096,0.257224,0.276128,0.112939,0.791308,0.532729,0.313547,0.76962,0.54225,0.727771,0.35636,0.00979108,0.165884,0.370247,0.0738207,0.766357,0.00909585,0.371599,0.807641,0.385759,0.709289,0.190996,0.710319,0.0132989,0.543911,0.345959,0.544338,0.149378,0.0625573,0.854289,0.527804,0.0184473,0.464408,0.83691,0.71791,0.235583,0.5782,0.774198,0.868415,0.846298,0.778305,0.423827,0.9663,0.427184,0.0998948,0.633741,0.950078,0.79712,0.807606,0.179271,0.601266,0.150589,0.882207,0.545735,0.532178,0.549179,0.39467,0.940519,0.524516,0.989743,0.441321,0.893673,0.248744,0.72097,0.980134,0.909906,0.161081,0.380267,0.74475,0.648621,0.125386,0.36479,0.156351,0.767335,0.480963,0.274478,0.931335,0.288817,0.40245,0.724603,0.011222,0.583749,0.666897,0.151441,0.19473,0.679351,0.0123476,0.620223,0.403779,0.615109,0.0639855,0.758801,0.941211,0.323796,0.73241,0.457595,0.331767,0.653027,0.690894,0.347988,0.574719,0.687754,0.0439557,0.456497,0.478807,0.531896,0.807328,0.845023,0.0562541,0.459071,0.544001,0.730024,0.365736,0.523879,0.533205,0.310513,0.543082,0.255159,0.565367,0.167756,0.100776,0.0654682,0.247109,0.307906,0.185527,0.689279,0.65809,0.733664,0.414378,0.867424,0.2594,0.0932378,0.206762,0.174076,0.665948,0.9308,0.516704,0.296231,0.700867,0.975588,0.206387,0.796538,0.431457,0.258509,0.555606,0.465937,0.441472,0.836516,0.377678,0.513223,0.41342,0.597074,0.0073601,0.648935,0.946868,0.695544,0.514117,0.329822,0.699311,0.579946,0.732958,0.534203,0.318499,0.349378,0.627431,0.585899,0.286788,0.27294,0.0739462,0.897454,0.432528,0.896959,0.263332,0.102332,0.632227,0.480984,0.800816,0.162388,0.289198,0.421396,0.12272,0.963964,0.136691,0.805579,0.285677,0.918353,0.492358,0.211724,0.952032,0.226448,0.649861,0.397397,0.317275,0.734274,0.695344,0.551233,0.390485,0.67707,0.0314065,0.766262,0.752385,0.967972,0.573735,0.506141,0.572754,0.620005,0.95226,0.0401973,0.477242,0.734199,0.812805,0.354626,0.166177,0.144672,0.351613,0.886952,0.519551,0.714475,0.322253,0.769731,0.651958,0.491199,0.195757,0.132524,0.908938,0.704397,0.4616,0.900284,0.168399,0.866089,0.62826,0.192082,0.714249,0.394872,0.53086,0.115606,0.510285,0.471516,0.276032,0.879746,0.239777,0.119393,0.469706,0.245053,0.943893,0.20775,0.0163199,0.509745,0.563881,0.565661,0.523669,0.751182,0.12277,0.944342,0.913806,0.538479,0.51559,0.45754,0.552897,0.883226,0.540098,0.503575,0.719883,0.321066,0.808713,0.989557,0.683171,0.945733,0.155574,0.473444,0.998078,0.28677,0.824044,0.34386,0.0854207,0.72566,0.314572,0.877263,0.42589,0.880329,0.359408,0.0548842,0.852426,0.300678,0.0908335,0.914313,0.828935,0.826162,0.0132498,0.342641,0.0830084,0.126748,0.911314,0.561769,0.408489,0.346987,0.525666,0.143277,0.191273,0.874073,0.554195,0.827194,0.996023,0.949187,0.573375,0.423501,0.037536,0.4702,0.118951,0.668375,0.763774,0.869782,0.92796,0.331363,0.413765,0.832325,0.76738,0.119886,0.950859,0.995983,0.46582,0.236717,0.945343,0.995356,0.531414,0.868897,0.571923,0.963488,0.140285,0.360618,0.382536,0.163718,0.682769,0.292814,0.216444,0.80943,0.318741,0.115676,0.442506,0.963697,0.632634,0.813121,0.902741,0.159335,0.847484,0.172712,0.54418,0.972602,0.857381,0.0733994,0.729027,0.401945,0.709453,0.581422,0.0817718,0.705821,0.617052,0.561588,0.389709,0.0423128,0.375074,0.937533,0.258419,0.159051,0.461432,0.496768,0.894554,0.482015,0.377935,0.882777,0.683119,0.610454,0.102427,0.76301,0.396891,0.0604928,0.932557,0.267405,0.630517,0.932822,0.405747,0.0758789,0.692549,0.919138,0.699506,0.18533,0.110219,0.319246,0.521391,0.868887,0.686366,0.0527031,0.431131,0.569509,0.808209,0.0512164,0.42006,0.373652,0.394012,0.18288,0.435874,0.090247,0.837076,0.827364,0.661159,0.350074,0.487986,0.626083,0.326733,0.658704,0.922091,0.559236,0.415728,0.493275,0.829303,0.778331,0.478263,0.92053,0.205287,0.660976,0.95777,0.360896,0.582268,0.306297,0.64719,0.0439054,0.348035,0.39688,0.271961,0.362784,0.391011,0.845978,0.0611163,0.0711915,0.755586,0.639216,0.384455,0.703206,0.779304,0.252794,0.775276,0.541326,0.95773,0.457597,0.621498,0.878866,0.59607,0.656352,0.0144327,0.877462,0.496908,0.728654,0.480262,0.686363,0.828382,0.0705743,0.60909,0.431021,0.700184,0.654041,0.550688,0.957333,0.313006,0.947632,0.216039,0.994402,0.407921,|0.381795,0.684426,0.468002,0.28752,0.769452,0.579383,0.424668,0.381904,0.706698,0.181691,0.914431,0.581324,0.172928,0.846543,0.606749,0.0699062,0.337807,0.494717,0.921483,0.267693,0.82892,0.696149,0.728993,0.29053,0.70638,0.0206288,0.0992519,0.428663,0.572288,0.305827,0.376008,0.863511,0.293449,0.0180002,0.399275,0.125344,0.595634,0.449893,0.877557,0.55008,0.469352,0.0363877,0.176877,0.580263,0.959511,0.431812,0.15811,0.326976,0.776183,0.947216,0.270516,0.164522,0.731933,0.975693,0.950311,0.939919,0.287452,0.83614,0.297579,0.852825,0.868454,0.806988,0.346023,0.462732,0.738036,0.896138,0.426489,0.679716,0.279767,0.117211,0.0998768,0.75995,0.051034,0.117018,0.645413,0.265287,0.0764502,0.523215,0.181494,0.171431,0.855941,0.0799917,0.639925,0.680643,0.971882,0.136485,0.416931,0.394521,0.731739,0.0700665,0.647216,0.0539262,0.698567,0.913096,0.656301,0.85128,0.154066,0.1013,0.529878,0.40138,0.805393,0.12437,0.157722,0.268101,0.0262425,0.638556,0.400725,0.403006,0.414863,0.439439,0.419417,0.557761,0.88331,0.60694,0.890945,0.100904,0.217509,0.949434,0.831101,0.57742,0.668941,0.768455,0.150504,0.380752,0.158683,0.809005,0.235275,0.66677,0.465289,0.252503,0.00576824,0.996737,0.303894,0.17806,0.554489,0.796028,0.991512,0.63518,0.665246,0.585657,0.443621,0.752963,0.763385,0.418723,0.0421578,0.614581,0.770845,0.470111,0.950616,0.89506,0.214127,0.839359,0.834632,0.337751,0.881675,0.914584,0.0260656,0.731455,0.0104077,0.807509,0.519218,0.47145,0.89664,0.817684,0.712974,0.104761,0.348616,0.880082,0.0945649,0.49596,0.246964,0.0166317,0.726421,0.467012,0.0135002,0.237401,0.127095,0.116182,0.670946,0.422819,0.602604,0.19523,0.733015,0.489974,0.973664,0.837898,0.90334,0.878044,0.737648,0.0416665,0.203588,0.437303,0.693574,0.523612,0.270407,0.0749992,0.295154,0.148531,0.491347,0.290664,0.349155,0.389251,0.484091,0.235932,0.0970924,0.961024,0.283693,0.839653,0.343474,0.705729,0.992515,0.585772,0.216304,0.884685,0.72379,0.296964,0.271915,0.794394,0.32568,0.602572,0.236806,0.943021,0.151874,0.842748,0.238911,0.359111,0.182325,0.453654,0.655096,0.289395,0.163608,0.265164,0.625608,0.815728,0.740282,0.349714,0.212395,0.489612,0.261949,0.0500475,0.940213,0.455521,0.936607,0.94886,0.796092,0.907289,0.0591102,0.902439,0.548127,0.241854,0.053842,0.814437,0.827071,0.842981,0.950278,0.558332,0.384667,0.0776365,0.212525,0.483735,0.832175,0.377457,0.341877,0.380536,0.425853,0.404817,0.266534,0.766493,0.964405,0.637515,0.951645,0.834233,0.531537,0.441861,0.633074,0.495958,0.899099,0.289791,0.613852,0.337386,0.0041495,0.957468,0.414741,0.0501249,0.966058,0.361583,0.126351,0.760714,0.0376762,0.542367,0.169138,0.0316327,0.972902,0.644763,0.109593,0.439135,0.227322,0.783332,0.827357,0.765029,0.366366,0.108497,0.801049,0.883185,0.0947878,0.285937,0.481905,0.909291,0.313671,0.664693,0.175488,0.837513,0.291571,0.808048,0.668341,0.755821,0.420991,0.289993,0.427671,0.0566194,0.684507,0.0686419,0.507974,0.808343,0.92902,0.980672,0.967899,0.756854,0.804391,0.59523,0.0840781,0.380703,0.414013,0.623768,0.291433,0.564426,0.317016,0.489181,0.0269818,0.463819,0.24809,0.138645,0.477066,0.165378,0.106742,0.206779,0.248198,0.803741,0.309315,0.961692,0.287737,0.426864,0.5642,0.0876719,0.104425,0.121212,0.846641,0.831396,0.0817909,0.87069,0.872095,0.245365,0.227688,0.790664,0.484827,0.0922269,0.422716,0.517122,0.401056,0.0391042,0.507272,0.150627,0.942428,0.483659,0.559384,0.595142,0.497859,0.82536,0.232175,0.759671,0.172673,0.540953,0.0551922,0.170324,0.215343,0.827288,0.607129,0.379756,0.645146,0.357205,0.0605977,0.35912,0.592112,0.515942,0.190108,0.284978,0.790207,0.746989,0.977933,0.0320796,0.107334,0.331679,0.0279053,0.260406,0.241332,0.881929,0.874402,0.99388,0.551267,0.431229,0.586372,0.593904,0.953364,0.279489,0.949787,0.849598,0.858821,0.12923,0.25566,0.381502,0.864549,0.208629,0.835302,0.131421,0.171745,0.597731,0.784805,0.502926,0.725687,0.702601,0.348997,0.36578,0.17272,0.907174,0.608737,0.890982,0.740022,0.0421541,0.652418,0.446989,0.138599,0.230209,0.0892198,0.957295,0.11951,0.355413,0.387573,0.752212,0.745372,0.250757,0.149052,0.628807,0.880099,0.106283,0.650587,0.30733,0.540655,0.101815,0.825972,0.690433,0.936946,0.318321,0.67022,0.366212,0.98893,0.347936,0.152188,0.278466,0.756075,0.158773,0.460758,0.493579,0.263795,0.44222,0.315967,0.417864,0.906453,0.399139,0.543106,0.939629,0.812442,0.991121,0.544149,0.722211,0.856074,0.179045,0.864739,0.0777179,0.45067,0.462055,0.750458,0.268855,0.601454,0.0298445,0.102052,0.446996,0.533441,0.719675,0.0256404,0.317911,0.586876,0.891622,0.961816,0.452903,0.593114,0.709079,0.968738,0.933913,0.843383,0.795002,0.38738,0.604982,0.342529,0.940589,0.577973,0.404708,0.444798,0.994395,0.0406468,0.199609,0.576,0.984144,0.572716,0.232227,0.35479,0.571844,0.579096,0.150797,0.611481,0.895002,0.937771,0.795733,0.0414744,0.351791,0.482689,0.232356,0.499944,0.154377,0.891452,0.101817,0.960221,0.672364,0.532157,0.360289,0.268651,0.548955,0.345184,0.402029,0.0963491,0.713269,0.0248793,0.478942,0.7378,0.0603719,0.455075,0.541586,0.335148,0.440624,0.719196,0.314106,0.590466,0.453544,0.702501,0.644564,0.706058,0.532187,0.194213,0.838621,0.89925,0.359118,0.49907,0.131516,0.516241,0.841439,0.322876,0.812089,0.331959,0.952079,0.75213,0.49979,0.231656,0.254647,0.217632,0.621237,0.315962,0.143727,0.0131842,0.677327,0.309705,0.528831,0.571159,0.654286,0.112034,0.305153,0.508932,0.776016,0.592089,0.46134,0.469773,0.262766,0.22514,0.912033,0.585288,0.102883,0.123792,0.0162248,0.465269,0.444689,0.450751,0.246509,0.552993,0.614134,0.60358,0.924295,0.115861,0.852537,0.275262,0.493223,0.503433,0.950762,0.328489,0.733005,0.23285,0.177439,0.888503,0.424845,0.0654507,0.73849,0.821371,0.173516,0.946385,0.648375,0.175461,0.772995,0.712122,0.38353,0.715397,0.146474,0.0561715,0.730478,0.09957,0.0876401,0.23536,0.503322,0.813899,0.702344,0.339743,0.500312,0.650822,0.766016,0.958216,0.107343,0.172494,0.210172,0.243353,0.769716,0.639125,0.71087,0.0887555,0.158861,0.768738,0.114308,0.986803,0.304681,0.307777,0.632728,0.59856,0.884401,0.987509,0.779141,0.967475,0.377173,0.160465,0.299511,0.279885,0.670721,0.298307,0.339487,0.169025,0.73673,0.423151,0.753945,0.90725,0.481282,0.944714,0.990121,0.351212,0.555105,0.879855,0.62598,0.436338,0.243267,0.763692,0.540102,0.486875,0.0878996,0.492644,0.833351,0.357771,0.649016,0.747784,0.0983714,0.306152,0.662032,0.522071,0.0472726,0.161618,0.384703,0.367214,0.77915,0.927075,0.309641,0.701331,0.366157,0.0270568,0.504062,0.978338,0.794846,0.0331971,0.361911,0.976949,0.501153,0.629585,0.564256,0.79832,0.754545,0.624389,0.664215,0.939373,0.0396594,0.604978,0.0827059,0.484788,0.378071,0.328303,0.759246,0.68301,0.456724,0.678388,0.443766,0.294735,0.111967,0.956753,0.31155,0.267666,0.918161,0.766297,0.632472,0.260875,0.165473,0.0386214,0.869852,0.0787342,0.758119,0.689597,0.285639,0.313161,0.0526515,0.377629,0.608348,0.425574,0.608946,0.0770515,0.0109386,0.298427,0.924654,0.238283,0.425229,0.968267,0.622051,0.298408,0.256581,0.593615,0.312012,0.759122,0.328707,0.980804,0.976634,0.382975,0.534069,0.266855,0.258033,0.7473,0.820153,0.125618,0.448672,0.0877076,0.515326,0.933264,0.169283,0.363154,0.666894,0.590184,0.28479,0.253382,0.487439,0.724122,0.430509,0.667692,0.563687,0.279896,0.460936,0.806062,0.499994,0.970861,0.560056,0.0310023,0.996772,0.690888,0.855857,0.605151,0.518369,0.360783,0.253054,0.483382,0.847903,0.715862,0.494199,0.255761,0.112268,0.018832,0.37163,0.301315,0.536197,0.62042,0.684615,0.74348,0.396596,0.744146,0.332803,0.318235,0.633392,0.944866,0.812581,0.591932,0.105949,0.704721,0.246723,0.919076,0.459847,0.292197,0.519264,0.233746,0.924833,0.606271,0.436536,0.817591,0.318382,0.316387,0.435202,0.544311,0.4657,0.335837,0.508045,0.493302,0.25381,0.895188,0.14422,0.498744,0.297664,0.251555,0.281218,0.733643,0.615862,0.348477,0.240848,0.838763,0.686486,0.566582,0.914518,0.733403,0.41601,0.958657,0.87237,0.545555,0.922315,0.946187,0.0547464,0.160496,0.272626,0.228142,0.947335,0.92201,0.363446,0.764713,0.520857,0.02882,0.494847,0.972921,0.500837,0.119918,0.461468,0.419003,0.981238,0.433142,0.190052,0.908159,0.292794,0.387808,0.924486,0.861809,0.0569812,0.918018,0.908621,0.745683,0.576992,0.99057,0.788747,0.306797,0.0574567,0.985995,0.329725,0.62632,0.377195,0.354665,0.572353,0.204946,0.148522,0.97454,0.908469,0.392237,0.893449,0.191101,0.575082,0.723342,0.685857,0.749108,0.418752,0.958076,0.0948904,0.179168,0.864673,0.607925,0.304889,0.806933,0.556064,0.130469,0.791817,0.183263,0.0594118,0.458084,0.0436642,0.949488,0.605001,0.798525,0.686848,0.619463,0.564074,0.0186545,0.935453,0.520935,0.476543,0.643028,0.103902,0.123613,0.294224,0.191707,0.443594,0.976325,0.0398679,0.968389,0.853832,0.157035,0.0184726,0.567791,0.653941,0.940728,0.533871,0.452957,0.39793,0.780431,0.461193,0.891416,0.351533,0.975317,0.930026,0.290959,0.979372,0.60491,0.298719,0.365689,0.825597,0.290052,0.947986,0.533638,0.812877,0.0230559,0.246198,0.384266,0.65657,0.436411,0.707047,0.844235,0.643536,0.848122,0.430652,0.940975,0.885405,0.521175,0.0709512,|0.806616,0.621161,0.274513,0.749525,0.87673,0.95466,0.685821,0.0360586,0.889033,0.96789,0.254601,0.130712,0.74866,0.663699,0.277847,0.526094,0.556133,0.484107,0.448843,0.872279,0.635606,0.775161,0.554499,0.465925,0.258268,0.630926,0.069712,0.708881,0.147116,0.805657,0.349858,0.441639,0.333671,0.121079,0.421032,0.880253,0.102804,0.830047,0.457951,0.417335,0.646548,0.828423,0.213032,0.88908,0.616818,0.330313,0.418989,0.916779,0.923749,0.283727,0.690615,0.15003,0.395259,0.359057,0.987485,0.9499,0.476993,0.619545,0.422363,0.800145,0.443263,0.492769,0.0353111,0.677361,0.540324,0.963933,0.401869,0.80378,0.295713,0.263233,0.00698578,0.730998,0.78294,0.260939,0.0639879,0.182373,0.544459,0.391698,0.541145,0.275313,0.442349,0.610699,0.0684016,0.83388,0.263298,0.615928,0.184246,0.58078,0.157224,0.723539,0.759724,0.180417,0.785558,0.75255,0.656932,0.62626,0.793185,0.893239,0.113793,0.767214,0.0218617,0.248044,0.222778,0.665471,0.794251,0.423598,0.381706,0.145891,0.751217,0.369342,0.412325,0.0427848,0.18982,0.726343,0.857386,0.374992,0.0385582,0.781126,0.957791,0.398097,0.649911,0.776286,0.226189,0.785766,0.647775,0.860114,0.157705,0.911204,0.934141,0.288613,0.294195,0.922861,0.41409,0.936451,0.702571,0.515811,0.199951,0.813726,0.754638,0.573675,0.758565,0.637686,0.0492777,0.822799,0.631856,0.151876,0.558143,0.469546,0.883802,0.315057,0.833538,0.102719,0.806652,0.615789,0.903607,0.271862,0.49432,0.837618,0.151344,0.499645,0.944059,0.278765,0.0670363,0.134469,0.24111,0.782114,0.322682,0.268387,0.356806,0.949237,0.277305,0.881158,0.153464,0.940739,0.427537,0.125674,0.181767,0.841295,0.302317,0.806404,0.479899,0.468918,0.0989003,0.337152,0.0934529,0.186568,0.248728,0.860259,0.0134438,0.743201,0.486556,0.292717,0.0799799,0.578458,0.251985,0.277893,0.321077,0.837925,0.0458561,0.712047,0.815034,0.140527,0.153547,0.201673,0.26691,0.49559,0.833042,0.769459,0.421696,0.684669,0.951628,0.349658,0.871096,0.977789,0.320435,0.204533,0.783557,0.566181,0.0845886,0.849361,0.00805527,0.48879,0.113458,0.011961,0.769878,0.502374,0.0489163,0.855398,0.973094,0.785182,0.642316,0.834517,0.264834,0.67006,0.132437,0.404668,0.728163,0.764645,0.518713,0.458951,0.948468,0.712086,0.0413693,0.0885453,0.636354,0.964843,0.314942,0.846406,0.191811,0.699796,0.409644,0.578626,0.839383,0.490699,0.574919,0.0474723,0.319965,0.61215,0.0671757,0.794443,0.296942,0.929863,0.102992,0.0581164,0.330317,0.66694,0.41252,0.545591,0.204334,0.508036,0.594811,0.478867,0.189459,0.39685,0.416861,0.935484,0.541863,0.741478,0.31155,0.505024,0.536703,0.890052,0.202243,0.205351,0.920079,0.737694,0.356407,0.523761,0.313372,0.430041,0.656315,0.474199,0.68845,0.541251,0.441763,0.188641,0.847332,0.733088,0.100568,0.891351,0.519221,0.806842,0.807254,0.0726382,0.717903,0.136787,0.357068,0.418426,0.336259,0.256142,0.509307,0.59002,0.928398,0.271945,0.758975,0.219792,0.654466,0.776587,0.17905,0.881365,0.987563,0.343592,0.629063,0.398474,0.179633,0.548538,0.724615,0.905264,0.190953,0.270992,0.978741,0.137558,0.709081,0.795941,0.166464,0.667961,0.21245,0.772274,0.93666,0.410496,0.62309,0.0355673,0.0213509,0.1613,0.977639,0.042955,0.426584,0.0247378,0.41594,0.877153,0.375936,0.75872,0.250742,0.240152,0.60226,0.385,0.939073,0.670319,0.0285462,0.497158,0.295286,0.406759,0.922257,0.284867,0.0730975,0.227025,0.846777,0.783478,0.946592,0.43718,0.422195,0.0859891,0.178249,0.316083,0.584594,0.97369,0.792754,0.938091,0.481518,0.551399,0.805136,0.265593,0.0936564,0.309999,0.280896,0.434736,0.0806574,0.274943,0.687528,0.319821,0.160755,0.662317,0.845761,0.845976,0.434648,0.180749,0.314848,0.176445,0.467757,0.58893,0.168238,0.619768,0.665663,0.300471,0.343998,0.184905,0.964639,0.296273,0.501941,0.535191,0.6324,0.93562,0.208564,0.688029,0.0958154,0.876878,0.248821,0.437385,0.282983,0.0723724,0.0853744,0.39213,0.090468,0.542747,0.241938,0.525156,0.197362,0.681318,0.977133,0.415805,0.80323,0.970654,0.344317,0.625422,0.420918,0.592213,0.475262,0.746775,0.221649,0.951678,0.472792,0.59965,0.865121,0.921709,0.450316,0.219704,0.695628,0.352146,0.799455,0.690255,0.207355,0.0410169,0.0622312,0.960396,0.391234,0.57641,0.531157,0.982009,0.777527,0.787597,0.0484987,0.163248,0.384189,0.17429,0.461542,0.660192,0.809141,0.673376,0.803633,0.294858,0.556544,0.263137,0.39535,0.52992,0.938549,0.271487,0.635971,0.148699,0.588885,0.561527,0.926957,0.856903,0.356338,0.530819,0.432643,0.696189,0.278972,0.870566,0.303675,0.960527,0.209512,0.163032,0.483417,0.51151,0.855079,0.123598,0.718889,0.204268,0.937628,0.139401,0.0469788,0.860389,0.430276,0.143411,0.858338,0.907585,0.305865,0.29231,0.217172,0.338653,0.849999,0.708183,0.321229,0.376891,0.391085,0.284793,0.94552,0.00358474,0.164658,0.0188843,0.435347,0.509995,0.497371,0.067805,0.304989,0.222456,0.337627,0.708473,0.0538558,0.909338,0.414294,0.889565,0.623521,0.760761,0.277237,0.306658,0.906337,0.215731,0.0201882,0.732735,0.788784,0.672129,0.878404,0.590422,0.334136,0.576428,0.0386864,0.629089,0.627034,0.463996,0.938114,0.060717,0.188106,0.642839,0.447861,0.143281,0.0835887,0.798755,0.408854,0.27214,0.457841,0.197138,0.876701,0.831247,0.135348,0.262144,0.532728,0.743024,0.0381255,0.179084,0.263459,0.791644,0.691645,0.238371,0.599822,0.897038,0.0328571,0.295664,0.372562,0.554441,0.547277,0.520305,0.26173,0.00857127,0.0491592,0.620796,0.898208,0.212629,0.531884,0.075864,0.529036,0.629366,0.845176,0.603803,0.388624,0.817453,0.948161,0.231442,0.486465,0.496037,0.119695,0.489103,0.0901956,0.387946,0.845276,0.254423,0.215179,0.97927,0.653319,0.765134,0.972548,0.763644,0.600153,0.683556,0.296721,0.876002,0.551584,0.405179,0.267667,0.172727,0.916286,0.739397,0.557049,0.153448,0.1708,0.656999,0.757591,0.943511,0.169333,0.0200998,0.37503,0.731905,0.285293,0.637593,0.954955,0.804291,0.427912,0.681984,0.978766,0.873674,0.168282,0.592098,0.736835,0.0294421,0.915357,0.523228,0.171444,0.229714,0.766594,0.334342,0.255644,0.857431,0.733154,0.790671,0.956121,0.396099,0.105257,0.806155,0.121051,0.600983,0.439146,0.617549,0.0519176,0.441731,0.279484,0.811247,0.156777,0.815076,0.412044,0.768814,0.140098,0.617612,0.172991,0.0752663,0.63733,0.663265,0.00810534,0.567204,0.355381,0.943478,0.104182,0.428245,0.6817,0.0363343,0.712928,0.394776,0.87817,0.538111,0.179653,0.506597,0.399915,0.52146,0.954221,0.148881,0.947102,0.41595,0.978633,0.417169,0.083374,0.77652,0.677595,0.634417,0.167892,0.858404,0.0437065,0.243291,0.321157,0.757701,0.493503,0.745665,0.745912,0.174325,0.372062,0.999669,0.733844,0.274114,0.664467,0.397225,0.1444,0.373729,0.229437,0.326843,0.0256051,0.800421,0.874808,0.935058,0.785524,0.00899297,0.986173,0.657503,0.892741,0.31645,0.569885,0.0742387,0.703731,0.894739,0.224981,0.714002,0.383113,0.395322,0.298401,0.927253,0.211299,0.509719,0.794914,0.682614,0.844672,0.185486,0.885986,0.763965,0.632312,0.0564486,0.0955942,0.124248,0.271726,0.595678,0.540579,0.336622,0.381921,0.14764,0.675949,0.086257,0.598493,0.0987852,0.0619071,0.110561,0.926208,0.857379,0.0946527,0.0893868,0.971043,0.343861,0.9451,0.739901,0.00606686,0.578628,0.91821,0.86679,0.23364,0.558172,0.122251,0.745053,0.90214,0.986511,0.161124,0.0583532,0.52413,0.552263,0.027786,0.663998,0.565887,0.198992,0.839999,0.369488,0.024958,0.681538,0.385,0.821491,0.361043,0.652449,0.0666725,0.535735,0.566233,0.665861,0.24225,0.145665,0.211175,0.384701,0.618794,0.606616,0.0928037,0.2036,0.777093,0.906684,0.335182,0.0656307,0.649221,0.0477469,0.31319,0.711023,0.343679,0.064655,0.225945,0.683163,0.424041,0.696875,0.24461,0.655121,0.442645,0.741039,0.136638,0.113441,0.841728,0.985966,0.318338,0.102255,0.0534875,0.972697,0.981485,0.188843,0.628316,0.943642,0.88714,0.617328,0.406405,0.188076,0.647972,0.894071,0.942735,0.60864,0.110556,0.104292,0.625289,0.432988,0.990156,0.155409,0.0328573,0.23883,0.0843024,0.491338,0.396592,0.767707,0.890305,0.427549,0.844728,0.0681559,0.161465,0.75697,0.098479,0.0824635,0.0888614,0.354093,0.844586,0.0782036,0.432547,0.963089,0.780624,0.305999,0.0361527,0.812113,0.324644,0.482857,0.363356,0.0292694,0.171856,0.988,0.743333,0.328667,0.314317,0.870229,0.444509,0.00701141,0.978354,0.288871,0.59108,0.633176,0.860789,0.548367,0.442802,0.335474,0.158101,0.163296,0.229345,0.774948,0.165458,0.712813,0.766695,0.835789,0.194091,0.11898,0.685144,0.672993,0.823865,0.687098,0.00289571,0.500803,0.277804,0.840871,0.176037,0.592963,0.12778,0.495944,0.260838,0.669531,0.741743,0.899951,0.630484,0.625904,0.924273,0.882218,0.993222,0.394131,0.851717,0.948897,0.817121,0.417703,0.247703,0.929553,0.25196,0.845313,0.546209,0.84471,0.264852,0.127076,0.418693,0.306137,0.102612,0.513112,0.452456,0.975639,0.599601,0.39731,0.499995,0.571372,0.0344883,0.12124,0.9139,0.641747,0.733053,0.373909,0.919277,0.118284,0.143072,0.277206,0.923519,0.760796,0.790555,0.699132,0.45243,0.395585,0.0600249,0.602597,0.612363,0.892642,0.225237,0.229803,0.455953,0.913301,0.09484,0.117855,0.134557,0.761592,0.0424589,0.384336,0.955725,0.712261,0.608303,0.639159,0.983044,0.838555,0.32508,0.914849,0.281117,0.664441,0.724147,0.221645,0.930879,0.99264,0.970694,0.742888,|0.46916,0.280766,0.233183,0.212362,0.750618,0.277919,0.860237,0.685586,0.526523,0.366385,0.645956,0.503192,0.734381,0.227993,0.20538,0.264123,0.087912,0.673832,0.175318,0.373498,0.228472,0.689621,0.779449,0.143953,0.773105,0.167061,0.629303,0.736668,0.244822,0.770259,0.803492,0.997934,0.433618,0.0748521,0.343299,0.844877,0.957192,0.104486,0.824665,0.974753,0.781105,0.0825872,0.714213,0.250983,0.725736,0.674689,0.736638,0.273753,0.838274,0.0665017,5.76973e-05,0.138261,0.587325,0.527348,0.130561,0.402213,0.0653039,0.011251,0.71366,0.355194,0.0422143,0.310732,0.0213326,0.101785,0.541362,0.525979,0.58785,0.316631,0.601812,0.50908,0.969622,0.269771,0.398524,0.373895,0.277399,0.790351,0.832648,0.142497,0.33051,0.67548,0.329651,0.164988,0.0336177,0.735934,0.883837,0.324328,0.235229,0.834803,0.633197,0.492627,0.2437,0.311745,0.128161,0.463241,0.68773,0.134114,0.143957,0.0135777,0.112914,0.160751,0.192027,0.752896,0.251003,0.83771,0.608704,0.0574625,0.222306,0.0658588,0.581207,0.312719,0.833599,0.527101,0.837851,0.532231,0.28151,0.834493,0.155688,0.798792,0.618554,0.932519,0.748426,0.694266,0.55003,0.471485,0.613409,0.889941,0.843448,0.190618,0.045171,0.703625,0.201459,0.609622,0.272845,0.27691,0.839773,0.0627149,0.99296,0.86398,0.222294,0.608067,0.150706,0.231723,0.686824,0.0367612,0.827586,0.458847,0.780491,0.404557,0.709848,0.849557,0.85032,0.625646,0.545774,0.245735,0.536615,0.85527,0.449535,0.702298,0.00213271,0.322542,0.8984,0.982508,0.743306,0.925603,0.0298408,0.602626,0.203862,0.496731,0.600632,0.466261,0.281061,0.331083,0.864188,0.424336,0.470184,0.654035,0.661562,0.970122,0.0902688,0.147471,0.21229,0.98705,0.852498,0.21258,0.148778,0.394899,0.0114293,0.614126,0.722322,0.0578241,0.239402,0.12892,0.490074,0.710268,0.618403,0.145939,0.416421,0.724408,0.410293,0.547361,0.885775,0.983841,0.236817,0.875724,0.381161,0.679841,0.388495,0.899265,0.946319,0.617523,0.334528,0.0674811,0.292016,0.891548,0.706435,0.603343,0.305988,0.71969,0.0956011,0.928674,0.687611,0.490436,0.391051,0.679998,0.930119,0.733181,0.520926,0.867145,0.018109,0.469192,0.905113,0.511279,0.992951,0.860436,0.119914,0.568641,0.511542,0.294189,0.676159,0.965404,0.575119,0.0678204,0.176519,0.956698,0.609174,0.107688,0.245831,0.859401,0.937334,0.217171,0.162282,0.569441,0.186339,0.181872,0.1401,0.683342,0.540911,0.382316,0.00231647,0.826201,0.799291,0.365209,0.702935,0.396452,0.816663,0.252782,0.319936,0.457742,0.298463,0.674534,0.991428,0.85445,0.648925,0.971435,0.291599,0.82641,0.644126,0.218849,0.112932,0.974115,0.514244,0.13563,0.265869,0.514198,0.36861,0.979009,0.612323,0.838978,0.408839,0.311943,0.557137,0.227631,0.553355,0.378042,0.889909,0.13714,0.409869,0.858394,0.431396,0.545557,0.20014,0.656152,0.222558,0.502648,0.0687682,0.416014,0.202938,0.642782,0.829692,0.843247,0.191871,0.23373,0.431486,0.913662,0.701731,0.335265,0.200175,0.292116,0.0522518,0.818824,0.922308,0.684029,0.810256,0.444449,0.30243,0.44901,0.524414,0.664521,0.108365,0.317849,0.387743,0.691788,0.884897,0.479131,0.758749,0.293368,0.642607,0.940204,0.0317857,0.408108,0.0649186,0.436811,0.300888,0.803404,0.552366,0.447848,0.629437,0.958099,0.303768,0.643424,0.608354,0.828261,0.790825,0.491259,0.87954,0.397074,0.0851727,0.845809,0.602241,0.56019,0.641971,0.381965,0.79126,0.00980848,0.813267,0.236171,0.218921,0.247108,0.869651,0.17934,0.273074,0.253456,0.720518,0.118524,0.443831,0.228005,0.703428,0.14012,0.676903,0.396407,0.201432,0.40215,0.533643,0.167353,0.802002,0.536404,0.899001,0.311797,0.297767,0.13084,0.530289,0.759419,0.207737,0.737154,0.582102,0.532213,0.0221508,0.146755,0.480426,0.691643,0.446908,0.231923,0.491383,0.177026,0.537686,0.101507,0.525844,0.669603,0.266368,0.431696,0.994565,0.662081,0.56022,0.3703,0.21306,0.60828,0.641112,0.461922,0.94908,0.883088,0.844108,0.468413,0.211682,0.699664,0.372252,0.87238,0.434962,0.374475,0.961986,0.0159965,0.308951,0.820928,0.854575,0.61709,0.213601,0.0687335,0.439636,0.725985,0.950093,0.861343,0.172094,0.664113,0.290759,0.729241,0.351123,0.0593209,0.658077,0.436678,0.663838,0.996144,0.122467,0.0651471,0.7808,0.494641,0.785283,0.359773,0.765372,0.624504,0.459,0.222401,0.239012,0.277708,0.245066,0.763881,0.504602,0.19658,0.320805,0.902129,0.81602,0.921969,0.60215,0.59008,0.737203,0.838164,0.729303,0.751188,0.206382,0.971082,0.587895,0.30043,0.740078,0.538031,0.0595569,0.795829,0.889179,0.714204,0.0375288,0.196021,0.174796,0.763449,0.256268,0.0904677,0.52277,0.506096,0.806962,0.66813,0.144638,0.527887,0.0450158,0.80685,0.404714,0.168314,0.87186,0.843979,0.872927,0.389042,0.188668,0.363089,0.423146,0.506807,0.148283,0.490466,0.222508,0.987693,0.292997,0.0224857,0.555953,0.991527,0.945561,0.929257,0.204287,0.105533,0.710549,0.136102,0.0186924,0.235659,0.441076,0.389307,0.287042,0.667392,0.889244,0.929779,0.818884,0.0102987,0.33953,0.380028,0.0573329,0.0688859,0.183951,0.690541,0.716133,0.517939,0.608133,0.673958,0.938816,0.475588,0.402261,0.630105,0.916473,0.531749,0.748085,0.521619,0.411669,0.407077,0.27727,0.624937,0.540614,0.143953,0.677126,0.940565,0.948725,0.157252,0.969327,0.410259,0.554336,0.0693253,0.0135966,0.134624,0.924269,0.899011,0.0153995,0.162019,0.558221,0.889486,0.218949,0.749131,0.744494,0.311303,0.237663,0.301468,0.295306,0.819011,0.924357,0.197473,0.819208,0.803648,0.993506,0.310138,0.953591,0.49606,0.290066,0.733644,0.144563,0.403684,0.566438,0.904758,0.262189,0.202543,0.520908,0.85982,0.977995,0.417538,0.696503,0.0242717,0.451463,0.741416,0.346982,0.450963,0.914492,0.887883,0.884403,0.589487,0.407827,0.605224,0.831892,0.620418,0.879411,0.877432,0.880013,0.712084,0.761143,0.583973,0.441028,0.163941,0.549863,0.702932,0.96148,0.499218,0.284218,0.722534,0.595524,0.89434,0.296537,0.432948,0.814497,0.335085,0.912063,0.133778,0.20924,0.318928,0.980142,0.569295,0.356171,0.808142,0.202066,0.176769,0.781427,0.204167,0.288427,0.53627,0.546991,0.156807,0.627325,0.52964,0.84071,0.166981,0.886845,0.873371,0.9008,0.662409,0.070433,0.434119,0.758366,0.282783,0.363112,0.707755,0.44492,0.0408024,0.753866,0.396876,0.204187,0.571631,0.775842,0.56092,0.404026,0.431316,0.876498,0.480261,0.672658,0.61288,0.264053,0.726983,0.0376093,0.312884,0.221521,0.631084,0.867475,0.204213,0.654805,0.326651,0.731639,0.311546,0.978905,0.480935,0.604661,0.441516,0.0274541,0.845467,0.53313,0.187648,0.316348,0.799947,0.179446,0.77359,0.0930595,0.757587,0.0663934,0.863039,0.332768,0.829894,0.152827,0.263515,0.949283,0.172851,0.20656,0.21893,0.629203,0.455148,0.959341,0.616017,0.114887,0.440799,0.756594,0.770758,0.155194,0.584584,0.652887,0.616651,0.308019,0.155297,0.825373,0.992446,0.805108,0.80445,0.868873,0.643753,0.831436,0.0454112,0.649057,0.231865,0.418908,0.404295,0.48772,0.33124,0.780356,0.0744029,0.675063,0.757318,0.487778,0.29183,0.900465,0.564955,0.400097,0.974857,0.142597,0.0818227,0.979992,0.502923,0.0233615,0.930724,0.918897,0.214797,0.245987,0.12927,0.0895361,0.95396,0.221545,0.718275,0.352885,0.359233,0.614293,0.706699,0.454143,0.361416,0.986197,0.970179,0.134497,0.285058,0.40256,0.00376171,0.857982,0.907195,0.992644,0.810665,0.42729,0.00320178,0.411052,0.508172,0.338351,0.78866,0.693464,0.302755,0.30284,0.234685,0.375336,0.721023,0.792539,0.424272,0.106447,0.677779,0.00695246,0.269433,0.27834,0.432839,0.564393,0.448532,0.578485,0.171824,0.455125,0.129951,0.589177,0.389164,0.328231,0.280969,0.970141,0.580346,0.70261,0.310079,0.919603,0.00446522,0.0872281,0.561586,0.386938,0.042154,0.744269,0.411181,0.7362,0.14789,0.831421,0.547427,0.320159,0.564457,0.599222,0.38443,0.324807,0.316742,0.36205,0.050869,0.0846525,0.185104,0.0310283,0.718845,0.518075,0.934785,0.610289,0.809814,0.763942,0.559104,0.631925,0.217353,0.703949,0.831282,0.888269,0.776136,0.98203,0.77686,0.203964,0.106898,0.500206,0.701981,0.419627,0.902349,0.16793,0.34939,0.434683,0.805721,0.221155,0.597829,0.938016,0.882033,0.199353,0.536919,0.678599,0.436343,0.0407069,0.721527,0.64618,0.859129,0.13305,0.810904,0.29203,0.786429,0.195285,0.253393,0.723667,0.107775,0.221509,0.225115,0.0363245,0.471559,0.160317,0.317654,0.647784,0.111325,0.712737,0.29931,0.75621,0.0705091,0.296494,0.12702,0.498102,0.809452,0.613355,0.773857,0.640889,0.182734,0.678495,0.794233,0.515441,0.468381,0.862692,0.962303,0.30891,0.382815,0.720015,0.167575,0.119137,0.091555,0.406843,0.616215,0.145445,0.0123323,0.156719,0.759183,0.303485,0.45673,0.169719,0.714747,0.300945,0.871768,0.131463,0.661886,0.822286,0.625608,0.288806,0.338126,0.637604,0.067584,0.0033623,0.0103655,0.531828,0.114811,0.653009,0.767772,0.474299,0.246628,0.210134,0.287169,0.722759,0.406449,0.223282,0.0787589,0.970293,0.288394,0.476562,0.276778,0.0463723,0.00950509,0.862126,0.0887719,0.133709,0.591677,0.835511,0.0608048,0.908526,0.655622,0.697709,0.939762,0.533762,0.395772,0.328388,0.477233,0.959698,0.820202,0.687802,0.516093,0.91549,0.124066,0.962866,0.876146,0.881017,0.755908,0.774631,0.112092,0.969683,0.375466,0.0072611,0.966582,0.251889,0.525628,0.82115,0.198541,0.817517,0.513711,0.826928,0.335516,0.0828382,0.193609,0.167783,0.0433781,|0.0779964,0.442814,0.811706,0.653808,0.450306,0.038243,0.892971,0.925301,0.689849,0.866839,0.604121,0.766015,0.109284,0.208978,0.936325,0.13675,0.0443268,0.326926,0.369961,0.204085,0.0431815,0.410961,0.149154,0.996405,0.736766,0.326946,0.707016,0.637153,0.679062,0.549082,0.924154,0.00981158,0.0941993,0.715975,0.140352,0.74254,0.0971051,0.714762,0.570469,0.509245,0.611607,0.0909814,0.484395,0.097595,0.0510628,0.647235,0.935622,0.030583,0.938806,0.409774,0.494596,0.62355,0.826535,0.791336,0.152842,0.291253,0.790802,0.850947,0.297537,0.538422,0.247083,0.860683,0.471799,0.815143,0.681397,0.885236,0.745969,0.804707,0.694419,0.653823,0.651198,0.898346,0.0605173,0.926831,0.710457,0.204323,0.105533,0.300746,0.27844,0.534801,0.544303,0.818834,0.0851011,0.622206,0.0601767,0.0425904,0.0397807,0.589748,0.920588,0.540286,0.980549,0.845171,0.716203,0.693115,0.0266557,0.185364,0.87344,0.806314,0.116605,0.753812,0.321359,0.041963,0.310527,0.294553,0.900358,0.953891,0.896819,0.576729,0.0804288,0.48472,0.603075,0.240092,0.825277,0.890026,0.442363,0.599828,0.421782,0.813465,0.71869,0.0868827,0.83311,0.907698,0.927394,0.223518,0.0470398,0.778464,0.322277,0.317683,0.95447,0.948339,0.604717,0.458117,0.349089,0.451119,0.247095,0.169844,0.922062,0.752149,0.298551,0.307393,0.479839,0.378343,0.69407,0.378386,0.264858,0.458161,0.152374,0.666057,0.555388,0.813559,0.852568,0.109417,0.621063,0.0417764,0.613679,0.660966,0.198533,0.399107,0.031814,0.908705,0.989673,0.386581,0.0795351,0.37621,0.459384,0.945926,0.412901,0.268041,0.0303883,0.341494,0.135972,0.0137046,0.517624,0.0195516,0.128444,0.981717,0.319176,0.0130397,0.182749,0.38084,0.154646,0.530013,0.230109,0.964729,0.952009,0.37563,0.139699,0.74032,0.171769,0.847018,0.567805,0.251932,0.0582599,0.179866,0.381133,0.503202,0.141611,0.280496,0.400685,0.585937,0.658413,0.647527,0.845851,0.11983,0.519945,0.307161,0.701315,0.266085,0.21734,0.818783,0.0798519,0.87458,0.567417,0.548667,0.409423,0.495998,0.528082,0.0262707,0.310971,0.366703,0.540111,0.888092,0.742033,0.951745,0.382026,0.817306,0.300526,0.355935,0.42772,0.874243,0.453963,0.829138,0.572858,0.373383,0.440575,0.840933,0.431897,0.388991,0.963301,0.828967,0.20438,0.320587,0.763852,0.411681,0.990571,0.560275,0.980604,0.562338,0.782443,0.038783,0.343436,0.982886,0.0992662,0.771666,0.34324,0.146161,0.738613,0.954227,0.314654,0.519385,0.969334,0.557687,0.229392,0.144946,0.957355,0.892887,0.638143,0.774519,0.804845,0.979166,0.591161,0.665038,0.87431,0.960963,0.530193,0.424777,0.193384,0.953682,0.534343,0.907595,0.678875,0.972109,0.578771,0.905173,0.691665,0.877586,0.252902,0.978851,0.309251,0.309554,0.0614603,0.756607,0.0948954,0.277974,0.999529,0.730241,0.842303,0.734842,0.161005,0.793266,0.782569,0.444575,0.998822,0.0103119,0.728054,0.146634,0.225454,0.978329,0.136204,0.622038,0.678731,0.699036,0.340635,0.732551,0.750259,0.605178,0.0458748,0.572846,0.408728,0.61921,0.289399,0.409066,0.00897312,0.166986,0.220055,0.0416882,0.110846,0.156538,0.409188,0.218763,0.598753,0.70945,0.664405,0.304187,0.961862,0.779694,0.86796,0.743362,0.284631,0.325791,0.70237,0.834786,0.78688,0.705701,0.448118,0.936485,0.82027,0.233412,0.694063,0.130305,0.698224,0.693175,0.848542,0.444539,0.302107,0.925977,0.502869,0.213155,0.614681,0.0382054,0.136859,0.256709,0.240514,0.899125,0.174884,0.279094,0.611594,0.714031,0.273089,0.533969,0.00660974,0.174362,0.112363,0.48674,0.509845,0.203556,0.766372,0.864484,0.977726,0.660134,0.753863,0.366602,0.864274,0.219905,0.170572,0.871897,0.555833,0.0395129,0.408965,0.234799,0.820819,0.663967,0.601474,0.789097,0.625078,0.792568,0.735178,0.496442,0.797735,0.699728,0.416032,0.789789,0.116759,0.944523,0.395863,0.616137,0.998752,0.475582,0.474202,0.625551,0.818751,0.24068,0.0336293,0.218635,0.303682,0.0154843,0.711579,0.00538206,0.976376,0.725557,0.770514,0.593431,0.0702699,0.223808,0.377476,0.962631,0.27819,0.932778,0.068711,0.726043,0.017922,0.231842,0.988516,0.213562,0.643188,0.225177,0.236568,0.766356,0.751663,0.0323074,0.0976557,0.684773,0.497419,0.956747,0.381396,0.190279,0.340693,0.504834,0.486077,0.57657,0.0385084,0.690226,0.980683,0.160823,0.432095,0.867722,0.436253,0.66696,0.833145,0.661665,0.279477,0.904729,0.432863,0.80753,0.496099,0.678279,0.0154832,0.664969,0.734504,0.999469,0.195221,0.181163,0.117922,0.592551,0.752532,0.271063,0.774413,0.594016,0.0145766,0.173561,0.352653,0.412165,0.238277,0.333628,0.0459477,0.624986,0.535611,0.224647,0.123474,0.927967,0.0164306,0.356755,0.105441,0.897139,0.771527,0.0363012,0.148296,0.715143,0.936546,0.874488,0.141896,0.754784,0.784989,0.831013,0.933936,0.0407192,0.472154,0.446185,0.60012,0.905002,0.611779,0.968891,0.844728,0.167049,0.521146,0.93914,0.177914,0.648226,0.764294,0.424038,0.287128,0.665639,0.586005,0.734835,0.831681,0.0409205,0.680561,0.0183524,0.947035,0.643136,0.51479,0.686421,0.640038,0.00663441,0.323793,0.889679,0.136953,0.115291,0.454755,0.638319,0.56926,0.887548,0.711196,0.592667,0.556363,0.917306,0.956255,0.593023,0.266049,0.14625,0.487769,0.814986,0.428304,0.182483,0.636087,0.6536,0.0958651,0.371182,0.967435,0.997906,0.599212,0.635444,0.109648,0.527063,0.267325,0.958433,0.543897,0.792851,0.976269,0.809831,0.611619,0.707026,0.688608,0.0633032,0.663229,0.186342,0.45706,0.990294,0.721611,0.426513,0.840915,0.648424,0.20473,0.926726,0.302817,0.316877,0.528782,0.594591,0.699317,0.19875,0.500975,0.628494,0.656108,0.223804,0.0574645,0.777547,0.672437,0.223801,0.519621,0.665507,0.785924,0.902858,0.663402,0.0991443,0.0490169,0.993219,0.0427921,0.625348,0.0497653,0.569758,0.823791,0.89207,0.013846,0.654981,0.188309,0.185328,0.424168,0.522149,0.457706,0.33824,0.718149,0.48067,0.309925,0.903934,0.565508,0.715365,0.834114,0.561536,0.869877,0.567644,0.426326,0.92788,0.0510357,0.924639,0.265448,0.579007,0.740388,0.941201,0.501061,0.355376,0.188368,0.799063,0.497186,0.374489,0.31029,0.936898,0.237079,0.493693,0.652995,0.149124,0.0219497,0.668308,0.745995,0.856366,0.116215,0.216459,0.785443,0.126505,0.977137,0.281366,0.450514,0.0191368,0.744883,0.701435,0.00829643,0.37099,0.414839,0.331699,0.726608,0.491899,0.502211,0.641465,0.674643,0.316973,0.895293,0.579646,0.616567,0.560939,0.577683,0.0263872,0.0178066,0.155757,0.0425305,0.446804,0.0628584,0.792061,0.789913,0.698149,0.962539,0.591802,0.167354,0.555908,0.107687,0.100471,0.335166,0.216491,0.8668,0.376644,0.221077,0.789507,0.889911,0.753729,0.828729,0.698463,0.439107,0.869326,0.912187,0.728819,0.0150612,0.0621622,0.812516,0.508413,0.940425,0.983625,0.514553,0.0230168,0.237815,0.0961603,0.710186,0.0578898,0.100189,0.587097,0.879328,0.134563,0.511399,0.15052,0.00506037,0.797944,0.333492,0.408838,0.603688,0.807627,0.798645,0.0664871,0.561819,0.877541,0.298414,0.364518,0.886554,0.757252,0.479949,0.166228,0.193876,0.859153,0.236672,0.62397,0.0557193,0.705612,0.483492,0.397356,0.0455856,0.746478,0.187248,0.135044,0.375457,0.989596,0.84531,0.185635,0.870227,0.958771,0.888777,0.657745,0.421639,0.84759,0.55463,0.733022,0.440431,0.91884,0.658084,0.654118,0.9769,0.584723,0.376531,0.560832,0.786846,0.357368,0.586886,0.765929,0.497303,0.693058,0.179584,0.0144749,0.0239897,0.948729,0.929176,0.441807,0.5083,0.133363,0.270007,0.385507,0.0326782,0.567965,0.403653,0.409577,0.928036,0.486252,0.479549,0.946517,0.0611393,0.428253,0.81404,0.880364,0.270272,0.254941,0.255156,0.676661,0.694848,0.554875,0.207361,0.95094,0.789964,0.537042,0.550597,0.271918,0.883812,0.611732,0.398491,0.0781361,0.86276,0.0189841,0.915301,0.382464,0.394914,0.675279,0.217643,0.414463,0.810911,0.352722,0.644362,0.418066,0.658901,0.482318,0.581887,0.64557,0.751262,0.772798,0.996333,0.654707,0.777164,0.695906,0.373332,0.391979,0.0838255,0.933326,0.799031,0.800263,0.356023,0.164002,0.280675,0.670679,0.768308,0.300717,0.727589,0.15324,0.858432,0.908774,0.423699,0.159645,0.681611,0.708472,0.876789,0.128089,0.378662,0.0936351,0.826879,0.231154,0.0182375,0.448859,0.167309,0.344168,0.514326,0.108198,0.375096,0.226851,0.343298,0.0601355,0.141781,0.802939,0.544177,0.36736,0.907204,0.4535,0.715602,0.727198,0.895539,0.430382,0.399042,0.0105322,0.0151191,0.196743,0.19053,0.609663,0.364389,0.432136,0.387205,0.541156,0.253902,0.329785,0.108382,0.498746,0.331778,0.563399,0.722302,0.057259,0.235756,0.660268,0.445489,0.924681,0.796603,0.108773,0.936299,0.694986,0.10438,0.073908,0.267761,0.604012,0.591509,0.919094,0.258925,0.673458,0.139605,0.0143374,0.432489,0.744094,0.922695,0.880509,0.92965,0.0755669,0.226599,0.294377,0.0859765,0.918794,0.284245,0.583191,0.778631,0.253413,0.618737,0.651945,0.19708,0.063319,0.615178,0.243159,0.0004614,0.718201,0.200978,0.103597,0.893451,0.335451,0.766091,0.465696,0.797796,0.274531,0.120622,0.190503,0.248322,0.0576867,0.173851,0.391479,0.919828,0.779539,0.526523,0.33099,0.677189,0.290551,0.681893,0.239911,0.169846,0.787443,0.336357,0.553027,0.872851,0.150665,0.0160928,0.994092,0.0798405,0.67403,0.00698543,0.824342,0.36721,0.106731,0.685851,0.48488,0.138583,0.298924,0.200151,0.825951,0.155049,0.328075,0.993272,0.119281,0.683598,0.049992,0.853764,0.262501,0.0225437,0.196629,0.901559,0.297527,0.796755,0.432844,|0.329009,0.813563,0.226317,0.61063,0.580856,0.0435843,0.90121,0.853767,0.0242456,0.820751,0.712538,0.0543416,0.565112,0.926281,0.452552,0.973864,0.60081,0.011044,0.19591,0.661302,0.236725,0.0751584,0.0266292,0.401728,0.729018,0.63026,0.691143,0.0514287,0.118982,0.253729,0.923943,0.552747,0.530948,0.843952,0.626535,0.0876209,0.193209,0.12509,0.307324,0.463045,0.0149937,0.0206779,0.520197,0.24847,0.82026,0.945754,0.0920942,0.741316,0.337334,0.612709,0.188101,0.835187,0.796959,0.994141,0.270598,0.819395,0.282572,0.9569,0.303378,0.503709,0.0309355,0.251998,0.575892,0.157412,0.855483,0.178129,0.428968,0.906258,0.913941,0.90808,0.412625,0.601817,0.474913,0.603195,0.262522,0.0469414,0.898879,0.684342,0.0858039,0.612926,0.828636,0.962867,0.543057,0.408037,0.961908,0.464495,0.505643,0.338274,0.237426,0.226152,0.279762,0.394191,0.530459,0.733967,0.347997,0.919348,0.379645,0.910359,0.0100779,0.709955,0.652938,0.312034,0.565599,0.962139,0.107836,0.982512,0.101647,0.965183,0.364214,0.533055,0.762626,0.0684558,0.611971,0.477706,0.346168,0.240217,0.168762,0.224988,0.327794,0.401105,0.672676,0.429815,0.24396,0.330905,0.690594,0.114657,0.191013,0.221292,0.404681,0.298655,0.869492,0.977263,0.193677,0.45013,0.303479,0.481018,0.972936,0.490116,0.435655,0.339109,0.77133,0.279255,0.681943,0.926598,0.0601496,0.0809398,0.264706,0.325719,0.34884,0.946263,0.0725412,0.0248037,0.92714,0.796231,0.279009,0.267222,0.0941674,0.0122163,0.0067718,0.482764,0.847422,0.781827,0.529027,0.17002,0.269628,0.26184,0.202441,0.506932,0.67117,0.695356,0.956139,0.497481,0.505565,0.697238,0.392464,0.72016,0.218798,0.908975,0.713659,0.396757,0.872027,0.956248,0.56199,0.647809,0.455451,0.225164,0.520811,0.0929202,0.862435,0.181961,0.281768,0.960702,0.783037,0.0373221,0.0584214,0.390216,0.43852,0.89661,0.352141,0.702884,0.898063,0.490032,0.925344,0.858317,0.972585,0.618128,0.138303,0.0895678,0.191419,0.865849,0.239434,0.0300767,0.932965,0.505494,0.165252,0.495756,0.351994,0.631216,0.840912,0.040926,0.236767,0.0641719,0.0180521,0.613192,0.212355,0.396916,0.985171,0.638954,0.434899,0.445683,0.330817,0.429631,0.784793,0.551184,0.607846,0.465195,0.757391,0.622991,0.567168,0.107325,0.624759,0.334358,0.204612,0.595101,0.039896,0.235093,0.576074,0.0877891,0.283743,0.550888,0.394065,0.479417,0.655562,0.602536,0.775817,0.692464,0.550251,0.11144,0.631842,0.775918,0.578622,0.0609012,0.777653,0.0467722,0.139798,0.498411,0.61448,0.765001,0.592393,0.0242316,0.622518,0.466107,0.423363,0.0635737,0.938663,0.663753,0.597779,0.462419,0.45437,0.483099,0.208197,0.665131,0.230354,0.812333,0.906717,0.453411,0.745194,0.381327,0.504029,0.96477,0.867152,0.143675,0.140145,0.33757,0.314022,0.639043,0.131091,0.444398,0.309773,0.283821,0.489443,0.696639,0.455675,0.427384,0.187827,0.16027,0.991503,0.322841,0.995817,0.914539,0.759124,0.150214,0.234811,0.902848,0.510771,0.663116,0.403225,0.0366535,0.471471,0.348524,0.683222,0.2412,0.75858,0.121636,0.245728,0.502142,0.722004,0.552255,0.20727,0.402191,0.701371,0.420405,0.751167,0.927131,0.682083,0.453674,0.0351398,0.155957,0.743202,0.0559224,0.0337288,0.345794,0.109852,0.328749,0.533629,0.757879,0.565675,0.0293564,0.703488,0.310279,0.327023,0.881347,0.106997,0.0809779,0.387739,0.416212,0.637764,0.126419,0.332569,0.338953,0.421093,0.719872,0.644962,0.50472,0.407135,0.80424,0.0684576,0.212465,0.751216,0.499267,0.17688,0.765189,0.14589,0.889437,0.424801,0.20174,0.553947,0.477274,0.78555,0.343523,0.615751,0.117698,0.56721,0.085112,0.941395,0.881706,0.678759,0.0339686,0.989366,0.531707,0.511269,0.259721,0.640582,0.241501,0.605102,0.602541,0.167729,0.843713,0.326361,0.733714,0.041473,0.131388,0.656024,0.386773,0.120213,0.478622,0.0518585,0.898874,0.672322,0.112873,0.38287,0.0430452,0.946132,0.466035,0.257765,0.605,0.395018,0.39287,0.90952,0.915254,0.574155,0.211564,0.70675,0.246138,0.863429,0.425561,0.0564042,0.896697,0.298984,0.710123,0.963181,0.997443,0.344325,0.762815,0.515596,0.94468,0.396995,0.153099,0.708017,0.631192,0.667005,0.657966,0.106301,0.46567,0.339363,0.43581,0.521607,0.47958,0.218497,0.982838,0.0754662,0.999028,0.323679,0.486697,0.361732,0.794558,0.262509,0.443767,0.220059,0.48677,0.294619,0.415273,0.823708,0.908245,0.600385,0.51708,0.144209,0.85179,0.283156,0.885099,0.774812,0.52529,0.47319,0.145491,0.302285,0.315629,0.867286,0.461152,0.838627,0.18931,0.098754,0.496832,0.933806,0.0693141,0.0221741,0.597728,0.875256,0.341651,0.977627,0.881211,0.164813,0.519835,0.510163,0.683455,0.922645,0.229678,0.284016,0.985148,0.978638,0.658143,0.181192,0.776085,0.561749,0.929796,0.0614666,0.760911,0.79622,0.205707,0.506865,0.288438,0.970885,0.559572,0.597272,0.322607,0.932465,0.997651,0.262967,0.891523,0.183553,0.16315,0.00478035,0.164133,0.198498,0.955544,0.800516,0.807935,0.347755,0.314681,0.375889,0.446211,0.474061,0.211043,0.734253,0.78221,0.0291805,0.656637,0.514261,0.661283,0.706592,0.875034,0.508585,0.554632,0.124203,0.934893,0.0977709,0.528061,0.36126,0.0485908,0.765948,0.545924,0.448564,0.496726,0.899472,0.0181401,0.372261,0.69279,0.37281,0.462885,0.953092,0.491983,0.422676,0.0842494,0.383777,0.41325,0.0501133,0.304809,0.634083,0.307157,0.515016,0.359026,0.648222,0.99153,0.886714,0.518067,0.877572,0.0254564,0.378018,0.736508,0.550242,0.436846,0.0590555,0.0593517,0.342508,0.208435,0.194024,0.0640334,0.410562,0.467704,0.896752,0.0248848,0.935255,0.958185,0.0483635,0.532512,0.0472347,0.161115,0.166723,0.234965,0.429492,0.77505,0.648728,0.980708,0.710947,0.119435,0.567397,0.489679,0.69026,0.902737,0.0324715,0.93114,0.558509,0.160335,0.735402,0.342297,0.674676,0.26052,0.629986,0.916936,0.584252,0.192965,0.966399,0.533536,0.911598,0.15211,0.735477,0.0869215,0.316623,0.999764,0.651154,0.183982,0.0150471,0.167299,0.270008,0.253538,0.532859,0.0998605,0.660554,0.18466,0.844676,0.112658,0.913565,0.76081,0.0706458,0.700534,0.401266,0.332578,0.488456,0.743963,0.239081,0.856911,0.551769,0.454533,0.535053,0.34084,0.0822001,0.682238,0.222835,0.329421,0.236908,0.357247,0.240781,0.997054,0.0227988,0.983062,0.950217,0.0544642,0.490392,0.854369,0.255503,0.575262,0.731833,0.264246,0.157042,0.0477983,0.843081,0.0440077,0.513172,0.907662,0.496725,0.658483,0.666483,0.774981,0.352474,0.720757,0.937659,0.684923,0.437071,0.513631,0.0117168,0.32003,0.717896,0.231183,0.779173,0.570698,0.0976478,0.349272,0.683867,0.326983,0.617504,0.841388,0.381775,0.555251,0.91644,0.856696,0.371114,0.822051,0.410627,0.651919,0.206706,0.399375,0.216577,0.337234,0.841069,0.506551,0.267378,0.648985,0.250186,0.0920082,0.436462,0.208782,0.25273,0.603095,0.465712,0.925892,0.685219,0.112618,0.196132,0.301091,0.48401,0.334255,0.714232,0.287344,0.178015,0.916538,0.388363,0.889045,0.196067,0.428484,0.915409,0.612818,0.799936,0.278031,0.359019,0.931027,0.468357,0.338161,0.387518,0.436185,0.785694,0.913726,0.568054,0.647435,0.290599,0.499522,0.672868,0.195703,0.0734971,0.421831,0.582411,0.794998,0.619342,0.060174,0.175269,0.846433,0.856696,0.279388,0.069747,0.67674,0.690405,0.75157,0.617311,0.606028,0.138475,0.970667,0.677725,0.0409176,0.757212,0.288278,0.21298,0.783291,0.488267,0.849063,0.696641,0.246504,0.894142,0.35611,0.917727,0.914878,0.667823,0.925871,0.528471,0.250572,0.443407,0.827903,0.329529,0.746839,0.223552,0.454576,0.794945,0.164545,0.373673,0.312617,0.901421,0.656821,0.440187,0.791492,0.476572,0.116361,0.869516,0.606803,0.884908,0.418211,0.6442,0.684993,0.487513,0.865158,0.856825,0.127123,0.650098,0.12793,0.991098,0.332205,0.398226,0.794607,0.336782,0.272844,0.142625,0.363057,0.232913,0.910088,0.839352,0.679486,0.732389,0.151978,0.614817,0.945363,0.429841,0.976972,0.925871,0.0691745,0.277449,0.344748,0.678095,0.0359551,0.749787,0.0248968,0.523654,0.878759,0.165174,0.692434,0.339883,0.0457935,0.405713,0.00808775,0.324633,0.420598,0.620424,0.594433,0.494052,0.181353,0.978103,0.185421,0.471511,0.680371,0.427018,0.921043,0.624328,0.0879408,0.330737,0.1027,0.216731,0.332308,0.75947,0.61954,0.970843,0.442613,0.590104,0.584711,0.505448,0.370095,0.98359,0.446987,0.420281,0.41723,0.0405076,0.163079,0.825743,0.900212,0.475032,0.815849,0.932799,0.569233,0.933092,0.990063,0.385179,0.831204,0.490003,0.929917,0.219372,0.928454,0.121958,0.175044,0.310894,0.382368,0.497112,0.29138,0.771608,0.629072,0.515495,0.777467,0.860375,0.634883,0.508182,0.246998,0.743774,0.768013,0.609234,0.67927,0.0761408,0.788093,0.711546,0.956761,0.20987,0.350456,0.707978,0.784111,0.761842,0.312091,0.438216,0.293096,0.842731,0.959769,0.194145,0.786321,0.34225,0.709135,0.592295,0.982936,0.522255,0.477556,0.540146,0.356995,0.168725,0.108241,0.187284,0.0127882,0.733686,0.987557,0.32172,0.725053,0.299727,0.0355445,0.900429,0.0257533,0.937715,0.954717,0.123415,0.303451,0.139443,0.417793,0.79231,0.656158,0.977022,0.380754,0.37188,0.216405,0.961787,0.348482,0.716473,0.865691,0.0135184,0.0537279,0.0386901,0.369684,0.555736,0.157287,0.103035,0.739927,0.935286,0.980611,0.29919,0.884647,0.429131,0.181195,0.380457,0.0456822,0.0554264,0.0184235,0.0995478,0.00525296,0.387379,0.422907,0.758925,0.796757,0.482472,0.437227,0.009152,0.443063,0.700362,0.791133,|0.0700399,0.516314,0.978099,0.658868,0.228701,0.152022,0.501174,0.798988,0.549966,0.654948,0.417731,0.567078,0.207048,0.528169,0.166647,0.304007,0.187843,0.936819,0.785117,0.451204,0.882506,0.855499,0.434879,0.848429,0.295758,0.9299,0.980251,0.0966405,0.101665,0.369728,0.759047,0.0452967,0.25993,0.177739,0.119028,0.34217,0.836696,0.0057987,0.779771,0.264759,0.183574,0.179558,0.789244,0.765371,0.710348,0.268504,0.434712,0.105029,0.240972,0.981877,0.163254,0.50871,0.541081,0.185868,0.976655,0.507328,0.746238,0.71972,0.740962,0.447041,0.798392,0.960201,0.832379,0.576643,0.375057,0.614367,0.633513,0.831342,0.224674,0.722611,0.839174,0.816956,0.667867,0.975705,0.693963,0.100611,0.158407,0.430155,0.385513,0.797779,0.838492,0.890803,0.911424,0.634277,0.466088,0.189506,0.443626,0.34575,0.745444,0.347928,0.291347,0.922857,0.255942,0.573878,0.183206,0.024441,0.494422,0.277734,0.849077,0.0999458,0.915128,0.761815,0.716543,0.678738,0.973935,0.249139,0.751161,0.667252,0.662127,0.440493,0.365436,0.7027,0.478903,0.959142,0.719192,0.486121,0.471101,0.0426556,0.738775,0.910602,0.498739,0.487089,0.829438,0.015457,0.00872052,0.904341,0.154692,0.687524,0.321818,0.414467,0.330853,0.224025,0.651088,0.625583,0.592933,0.649881,0.676537,0.834527,0.688694,0.677105,0.596303,0.193113,0.414886,0.93805,0.360793,0.0267286,0.173723,0.562099,0.793941,0.733367,0.979803,0.062663,0.275457,0.633974,0.52506,0.6697,0.369488,0.953683,0.890221,0.52801,0.363262,0.32748,0.258678,0.828879,0.289903,0.939744,0.691509,0.823998,0.569923,0.192129,0.996621,0.349983,0.00414824,0.983779,0.523795,0.353672,0.0112649,0.257946,0.74332,0.786209,0.155804,0.897178,0.112119,0.708811,0.757043,0.422729,0.843787,0.786758,0.66337,0.728343,0.181525,0.358087,0.934148,0.163705,0.827969,0.178051,0.349852,0.0554885,0.646971,0.0623763,0.131144,0.299181,0.282927,0.956486,0.731391,0.276557,0.908178,0.542316,0.180218,0.587992,0.66065,0.245992,0.123016,0.367778,0.0157164,0.633048,0.242426,0.916056,0.572171,0.5659,0.610296,0.752588,0.931487,0.309642,0.139533,0.522564,0.825272,0.762144,0.271421,0.771859,0.921194,0.380303,0.597825,0.0959958,0.158554,0.96356,0.831952,0.314556,0.842545,0.434569,0.320963,0.963986,0.445344,0.512011,0.132161,0.0228826,0.355273,0.0678818,0.341264,0.170338,0.442793,0.255169,0.925376,0.339177,0.68361,0.00800735,0.284499,0.148885,0.358124,0.692857,0.523197,0.0828685,0.597126,0.506388,0.252935,0.613336,0.0947106,0.47214,0.951672,0.431187,0.425718,0.408004,0.681556,0.690645,0.905731,0.419604,0.0794351,0.143936,0.497571,0.744738,0.260271,0.246334,0.497422,0.475945,0.514285,0.145232,0.362041,0.649206,0.622149,0.0632642,0.601417,0.496214,0.204052,0.722462,0.490681,0.141357,0.443265,0.136746,0.85597,0.029586,0.348639,0.580894,0.327518,0.835473,0.562079,0.705472,0.637875,0.893864,0.377997,0.78181,0.530437,0.622791,0.160365,0.0973324,0.626983,0.0595493,0.0322372,0.864198,0.541569,0.230868,0.829183,0.242887,0.822167,0.86394,0.485023,0.597509,0.965913,0.521479,0.194254,0.983725,0.259482,0.81234,0.783889,0.153191,0.172294,0.0152034,0.256564,0.213248,0.298391,0.09342,0.850845,0.0860245,0.858324,0.382649,0.178768,0.00280023,0.801117,0.284173,0.748713,0.066848,0.805778,0.122188,0.375087,0.89373,0.984835,0.0256369,0.613198,0.893065,0.986024,0.290525,0.543031,0.0654171,0.508304,0.942588,0.854213,0.111949,0.0120996,0.654556,0.3818,0.0423434,0.262252,0.0522183,0.376316,0.868399,0.276203,0.320157,0.757053,0.614502,0.155356,0.198109,0.774403,0.958492,0.581599,0.225186,0.0540448,0.988137,0.850608,0.645073,0.875582,0.856537,0.312073,0.0666575,0.272678,0.149121,0.713278,0.750379,0.648705,0.304089,0.806302,0.388683,0.622514,0.546081,0.326959,0.537633,0.153174,0.699435,0.648332,0.336175,0.557453,0.222061,0.455039,0.499058,0.258427,0.790318,0.802025,0.0489815,0.259914,0.633813,0.98805,0.747558,0.555862,0.53654,0.729994,0.0640444,0.636207,0.696325,0.414618,0.207127,0.642902,0.783788,0.466653,0.559013,0.973212,0.357606,0.928752,0.0261972,0.536984,0.944141,0.559227,0.543599,0.290849,0.566555,0.657395,0.0671479,0.60466,0.614032,0.864045,0.405388,0.182327,0.170654,0.407796,0.796982,0.928105,0.174493,0.878607,0.485367,0.957924,0.328444,0.0318477,0.303817,0.321691,0.0446352,0.247985,0.848083,0.977836,0.418777,0.165313,0.820582,0.889808,0.803402,0.279929,0.836936,0.855286,0.779819,0.275104,0.400681,0.486506,0.897652,0.838112,0.465973,0.428126,0.177823,0.42308,0.739027,0.75059,0.365066,0.861079,0.436073,0.265593,0.11434,0.225486,0.945135,0.083499,0.718697,0.347387,0.0946701,0.237937,0.0105444,0.960437,0.182374,0.717194,0.137973,0.853716,0.265161,0.849619,0.418103,0.290514,0.735906,0.10636,0.8278,0.376088,0.790126,0.897984,0.774083,0.486398,0.30395,0.966118,0.817028,0.957381,0.115995,0.767818,0.786437,0.888896,0.88692,0.9226,0.326195,0.401947,0.477455,0.94929,0.91147,0.59203,0.268819,0.658518,0.594786,0.176796,0.992278,0.0628894,0.767158,0.816224,0.998733,0.975746,0.184549,0.054445,0.00871676,0.629778,0.147068,0.174708,0.957384,0.581162,0.00260407,0.347448,0.892957,0.259463,0.229142,0.687511,0.741571,0.0939738,0.915487,0.146073,0.989955,0.957208,0.295614,0.823741,0.239479,0.67823,0.727509,0.844912,0.951859,0.0304716,0.634594,0.885023,0.856501,0.940896,0.0725201,0.595843,0.21949,0.199297,0.440851,0.943391,0.239374,0.0484651,0.0820852,0.689303,0.373797,0.119874,0.31083,0.297949,0.373876,0.0006935,0.89357,0.177984,0.130958,0.0363264,0.31504,0.445478,0.397742,0.522494,0.706005,0.683054,0.172696,0.0029524,0.0054692,0.759199,0.333114,0.0647041,0.778334,0.449786,0.304725,0.91904,0.877665,0.15802,0.0906901,0.20855,0.031085,0.586388,0.735956,0.0563339,0.471736,0.24916,0.318445,0.969739,0.813481,0.149055,0.345393,0.0706246,0.446074,0.167978,0.689391,0.533558,0.427679,0.303354,0.454294,0.567244,0.250618,0.429669,0.719601,0.872945,0.369002,0.0741348,0.26135,0.391295,0.346978,0.670411,0.243649,0.119587,0.45841,0.561592,0.507491,0.973858,0.352523,0.576281,0.224976,0.560872,0.382683,0.755838,0.493905,0.835039,0.350412,0.570813,0.344757,0.64698,0.420421,0.759529,0.345179,0.155025,0.725573,0.771095,0.55618,0.174165,0.632531,0.742995,0.657686,0.609053,0.890784,0.187058,0.868761,0.409029,0.764801,0.607394,0.791456,0.444279,0.67686,0.23772,0.894696,0.78167,0.412403,0.176654,0.151367,0.210407,0.184192,0.92762,0.176649,0.555755,0.580158,0.682296,0.11825,0.0732002,0.307252,0.63547,0.831905,0.952657,0.162302,0.482305,0.134803,0.798232,0.79982,0.980901,0.0293608,0.135593,0.563571,0.834409,0.896843,0.119671,0.116969,0.221132,0.390278,0.246159,0.560225,0.336986,0.423782,0.0204755,0.202301,0.400628,0.80014,0.560916,0.307343,0.662046,0.619321,0.393955,0.107759,0.93701,0.167505,0.73234,0.282911,0.242187,0.161993,0.434116,0.388126,0.348966,0.631871,0.997055,0.408621,0.988099,0.726782,0.55743,0.683533,0.825754,0.717599,0.236448,0.418556,0.839949,0.615994,0.76764,0.895829,0.533817,0.992573,0.483673,0.205816,0.742334,0.721262,0.440474,0.0411314,0.176272,0.168452,0.204947,0.282538,0.108272,0.119721,0.00926483,0.819009,0.548817,0.575853,0.306585,0.795271,0.739549,0.379233,0.566769,0.460572,0.851306,0.158683,0.651552,0.0176093,0.103313,0.349629,0.351328,0.0386863,0.244269,0.150918,0.325059,0.204037,0.384539,0.691865,0.331577,0.463281,0.902656,0.0394106,0.290138,0.874541,0.293769,0.953802,0.319451,0.0783607,0.237169,0.621716,0.0303848,0.933602,0.304431,0.415693,0.117066,0.436405,0.00394458,0.0801162,0.13953,0.0978485,0.144337,0.436286,0.966443,0.825205,0.141729,0.88532,0.448672,0.488448,0.606041,0.038808,0.743701,0.237195,0.919974,0.093439,0.284516,0.135088,0.670394,0.786996,0.296129,0.0149889,0.511609,0.395558,0.838414,0.457124,0.989459,0.383406,0.337191,0.344983,0.436396,0.660313,0.953984,0.49977,0.347171,0.244466,0.315326,0.992927,0.668664,0.320145,0.309667,0.413323,0.394115,0.461627,0.754364,0.90595,0.850717,0.347007,0.717813,0.981513,0.986052,0.31703,0.906456,0.293321,0.919559,0.0135413,0.539394,0.689914,0.422343,0.684981,0.313496,0.116515,0.956697,0.915536,0.468042,0.710807,0.0700998,0.455299,0.679703,0.505607,0.0490609,0.317884,0.590506,0.912747,0.551597,0.898228,0.651712,0.0637805,0.362013,0.261875,0.846592,0.865382,0.250724,0.835756,0.777549,0.24528,0.0510178,0.0933159,0.913072,0.985231,0.710197,0.211807,0.00618732,0.534769,0.167272,0.664146,0.68418,0.837857,0.570307,0.0431842,0.467267,0.363039,0.807534,0.660304,0.714713,0.731928,0.0808907,0.897606,0.0811784,0.481624,0.420427,0.931922,0.447502,0.0956628,0.830963,0.346538,0.429776,0.354244,0.0302927,0.424606,0.136102,0.562997,0.863312,0.895782,0.546307,0.329228,0.832445,0.526247,0.644289,0.561855,0.961499,0.909207,0.287358,0.910355,0.246093,0.137537,0.371464,0.550447,0.63588,0.385095,0.319372,0.29838,0.572816,0.49368,0.254104,0.000521064,0.476282,0.0151293,0.267449,0.719233,0.972803,0.606467,0.510856,0.173862,0.360045,0.504946,0.860645,0.248388,0.381941,0.733093,0.392682,0.913414,0.0207862,0.880479,0.17507,0.988673,0.817326,0.699064,0.261931,0.381641,0.311743,0.177385,0.0752653,0.94641,0.0272278,0.93085,0.724287,0.806115,0.709923,0.601291,0.702407,0.624588,0.206961,0.575847,0.69284,0.641098,0.457381,0.411197,|0.73636,0.036796,0.945352,0.0985979,0.135025,0.0712225,0.0102935,0.782056,0.99154,0.138151,0.452949,0.544279,0.149129,0.569797,0.056132,0.537922,0.241819,0.295986,0.35018,0.558468,0.262516,0.208518,0.921377,0.635834,0.707857,0.0841535,0.159179,0.684636,0.010065,0.602787,0.342708,0.0149582,0.706394,0.790573,0.278836,0.32657,0.371192,0.196943,0.0994307,0.763493,0.752946,0.0971473,0.207383,0.514185,0.6918,0.971166,0.938018,0.0538611,0.520165,0.167817,0.160813,0.887903,0.00934601,0.128425,0.375857,0.0366002,0.984251,0.611245,0.581535,0.127486,0.452474,0.422549,0.0404436,0.961541,0.782076,0.749743,0.774449,0.00453246,0.981343,0.572656,0.00996864,0.765524,0.83183,0.625944,0.401452,0.186533,0.0736082,0.658487,0.0705111,0.936072,0.790999,0.622194,0.200718,0.307021,0.583794,0.447732,0.864443,0.892163,0.467433,0.639582,0.865881,0.503103,0.10382,0.19342,0.0741686,0.719522,0.842778,0.320737,0.0448754,0.482781,0.45943,0.800305,0.33416,0.84588,0.735341,0.368741,0.298378,0.0192604,0.0939801,0.0706964,0.483688,0.221882,0.822477,0.39844,0.772239,0.630559,0.618514,0.256724,0.974454,0.448342,0.145876,0.0168577,0.629549,0.533665,0.619618,0.0349321,0.518413,0.110776,0.596471,0.541195,0.58069,0.693574,0.844992,0.866986,0.9315,0.0096063,0.331919,0.0375919,0.170827,0.644436,0.535832,0.355308,0.903921,0.892917,0.352439,0.968936,0.807429,0.877016,0.6176,0.419022,0.650638,0.487681,0.443334,0.627929,0.569391,0.458491,0.892023,0.747599,0.729849,0.507001,0.0737711,0.193145,0.533727,0.372671,0.29136,0.0809135,0.328639,0.538127,0.211459,0.303972,0.124084,0.135969,0.984878,0.936501,0.496035,0.325451,0.213402,0.900165,0.946447,0.656604,0.934557,0.225116,0.160304,0.282441,0.778137,0.21303,0.129294,0.950617,0.777042,0.952844,0.847809,0.413962,0.660295,0.557397,0.349144,0.93478,0.195625,0.396455,0.106866,0.365283,0.0482496,0.108839,0.779036,0.394593,0.147619,0.623835,0.849453,0.105259,0.731281,0.346841,0.523839,0.486614,0.179238,0.0550073,0.319037,0.06917,0.4266,0.795913,0.566001,0.995842,0.961716,0.331514,0.0386979,0.00276262,0.512516,0.826328,0.750295,0.35526,0.144124,0.729391,0.143112,0.841358,0.0494579,0.509132,0.345372,0.546411,0.26243,0.150804,0.415041,0.430496,0.802307,0.222706,0.906977,0.771446,0.322966,0.803125,0.431316,0.418563,0.286888,0.552444,0.0470688,0.320726,0.672003,0.565351,0.8624,0.875273,0.306744,0.732483,0.648202,0.0551513,0.922041,0.644136,0.294631,0.2888,0.88392,0.736246,0.274016,0.235295,0.959473,0.287374,0.0352932,0.995848,0.952085,0.693382,0.561004,0.16451,0.643858,0.263274,0.769858,0.213629,0.832761,0.310021,0.440183,0.209339,0.69847,0.542886,0.703537,0.467305,0.766773,0.235521,0.939093,0.736979,0.0131362,0.995507,0.295612,0.758564,0.412233,0.710792,0.143304,0.556589,0.378072,0.960257,0.307897,0.586207,0.339632,0.204512,0.943615,0.50013,0.815361,0.391017,0.892219,0.294284,0.801743,0.0781695,0.346104,0.544033,0.326619,0.111397,0.244041,0.767123,0.207815,0.657622,0.0493475,0.458093,0.497524,0.941921,0.050585,0.513887,0.427573,0.323589,0.645825,0.795802,0.264499,0.812088,0.634375,0.903167,0.0421085,0.708661,0.109439,0.8813,0.532144,0.855201,0.528196,0.853789,0.702654,0.921322,0.988064,0.951277,0.870056,0.403534,0.611244,0.208776,0.0317652,0.862294,0.259959,0.985509,0.563899,0.0884188,0.139844,0.818601,0.799133,0.567547,0.360968,0.617227,0.279955,0.0622445,0.0601298,0.0936944,0.164042,0.33897,0.20419,0.72064,0.302973,0.877372,0.827803,0.184503,0.681519,0.0459752,0.828398,0.771015,0.0120498,0.629001,0.850969,0.84318,0.502291,0.856263,0.70463,0.755717,0.457683,0.697287,0.171042,0.712525,0.211604,0.800205,0.939937,0.578884,0.649177,0.495848,0.510098,0.137529,0.733972,0.799558,0.337736,0.30879,0.396811,0.713652,0.78765,0.88123,0.0452678,0.667896,0.0556362,0.817746,0.309268,0.411872,0.159584,0.826758,0.584296,0.82151,0.741166,0.0250714,0.314547,0.00755614,0.60809,0.862012,0.546053,0.397259,0.587239,0.514773,0.853628,0.478977,0.352035,0.825147,0.114497,0.983268,0.443183,0.742095,0.309435,0.924313,0.900587,0.670757,0.19962,0.482239,0.766774,0.873852,0.0124121,0.606053,0.173734,0.71095,0.814398,0.965271,0.309693,0.327535,0.347688,0.270999,0.743345,0.779361,0.930638,0.0804155,0.737202,0.880283,0.118876,0.223232,0.480256,0.74615,0.0359674,0.392149,0.144549,0.221827,0.917157,0.595722,0.450761,0.350812,0.484531,0.772734,0.576762,0.863204,0.539403,0.789232,0.640252,0.467407,0.201247,0.226623,0.549404,0.890486,0.339411,0.782263,0.870244,0.325956,0.528329,0.667904,0.3012,0.0353147,0.0341814,0.596661,0.185604,0.0500764,0.38435,0.506186,0.873682,0.384934,0.147668,0.902165,0.961749,0.701082,0.453091,0.977126,0.69215,0.0624568,0.505523,0.0526935,0.0135625,0.853571,0.907155,0.45161,0.0969223,0.0742279,0.648165,0.189595,0.710794,0.189967,0.794281,0.435504,0.0295746,0.712947,0.276333,0.274471,0.0148509,0.436746,0.177798,0.152702,0.128105,0.813188,0.585241,0.791558,0.361032,0.630822,0.86739,0.443342,0.918938,0.718015,0.344489,0.565783,0.584483,0.320022,0.723742,0.223664,0.178405,0.829564,0.457502,0.587643,0.145471,0.337208,0.449166,0.849252,0.49293,0.648635,0.948109,0.175621,0.988875,0.487519,0.994789,0.259759,0.610476,0.140303,0.784032,0.914058,0.120612,0.846729,0.137961,0.707363,0.271701,0.206385,0.849914,0.545346,0.777373,0.614354,0.134081,0.318518,0.251838,0.137104,0.429265,0.059025,0.649971,0.735612,0.408884,0.218401,0.687293,0.584311,0.518015,0.595668,0.0776086,0.0202482,0.912117,0.0207265,0.9784,0.747851,0.954645,0.203721,0.68962,0.993728,0.347805,0.948883,0.847981,0.715754,0.401247,0.0153514,0.0507335,0.166826,0.373047,0.461372,0.21167,0.712312,0.72291,0.266135,0.963763,0.480738,0.0141189,0.385911,0.34407,0.563873,0.464198,0.942124,0.0415359,0.507531,0.753292,0.644666,0.212103,0.0298045,0.414265,0.910919,0.76405,0.281023,0.0480375,0.767728,0.893836,0.237677,0.673252,0.519134,0.286744,0.468232,0.24981,0.499679,0.592249,0.421775,0.612033,0.736846,0.133672,0.692032,0.114155,0.475386,0.210922,0.491906,0.279494,0.637217,0.160475,0.250252,0.00771129,0.0755349,0.796493,0.222179,0.623138,0.893106,0.189376,0.0798094,0.12192,0.253079,0.649647,0.616817,0.600361,0.751705,0.216107,0.784824,0.0293089,0.669991,0.900768,0.831468,0.15213,0.303844,0.00330704,0.0792905,0.0622827,0.500344,0.478806,0.849182,0.842248,0.202288,0.457756,0.918749,0.74505,0.907843,0.968712,0.12701,0.945902,0.916398,0.854689,0.349373,0.119167,0.853415,0.85219,0.900471,0.630561,0.528978,0.617599,0.498268,0.297439,0.146887,0.258904,0.601916,0.439802,0.718059,0.831941,0.739842,0.950008,0.940331,0.441932,0.229926,0.921882,0.679179,0.928158,0.414777,0.771841,0.814958,0.904432,0.68368,0.966055,0.482058,0.00853997,0.57368,0.855042,0.248707,0.106093,0.150146,0.367164,0.927891,0.80096,0.749733,0.47333,0.264505,0.520833,0.161313,0.578232,0.455626,0.558803,0.132956,0.896211,0.135787,0.0456839,0.621887,0.145039,0.0275927,0.150177,0.10276,0.442453,0.0638688,0.962589,0.964212,0.0627342,0.0383172,0.529351,0.9797,0.680158,0.377481,0.893841,0.359024,0.610277,0.221447,0.380553,0.27726,0.154776,0.742177,0.279998,0.177293,0.27844,0.329077,0.154096,0.869144,0.239878,0.618525,0.935066,0.955074,0.509747,0.625496,0.313567,0.54103,0.241156,0.827564,0.404299,0.0173481,0.641523,0.0217186,0.0576485,0.952399,0.578421,0.867905,0.493096,0.596148,0.0629528,0.273422,0.224341,0.725007,0.58675,0.301662,0.966787,0.9584,0.250614,0.221179,0.562641,0.0152661,0.93896,0.719366,0.25746,0.677666,0.614385,0.0691763,0.725238,0.524635,0.341081,0.747423,0.415753,0.230775,0.067749,0.944275,0.159511,0.908538,0.519456,0.194318,0.751725,0.384269,0.8582,0.955788,0.699177,0.47151,0.764157,0.763734,0.457612,0.345227,0.662748,0.341732,0.592683,0.684419,0.870235,0.837809,0.491344,0.262356,0.332302,0.363958,0.745978,0.0352723,0.328389,0.0741224,0.262565,0.0612987,0.744774,0.798439,0.347158,0.97131,0.273662,0.0809703,0.766066,0.746715,0.756812,0.815081,0.842783,0.389881,0.342013,0.362968,0.662587,0.0479044,0.557333,0.338035,0.930935,0.46313,0.9339,0.210875,0.782597,0.39691,0.254798,0.109526,0.00466293,0.0355049,0.854832,0.868047,0.787178,0.520647,0.989857,0.14448,0.804682,0.751803,0.200057,0.328304,0.467284,0.154793,0.529296,0.581555,0.531226,0.893549,0.0264515,0.837032,0.122609,0.998897,0.278824,0.550673,0.298732,0.582035,0.654069,0.0981176,0.155476,0.167714,0.827672,0.883797,0.943308,0.10229,0.173577,0.710019,0.576612,0.662741,0.462026,0.0380822,0.11296,0.508426,0.315359,0.381246,0.912198,0.726738,0.897217,0.983364,0.595273,0.882575,0.6012,0.828914,0.995241,0.473582,0.965214,0.272797,0.68497,0.316669,0.987081,0.550745,0.659326,0.211728,0.354571,0.536758,0.201116,0.578529,0.647737,0.297415,0.536868,0.246808,0.188676,0.920445,0.395297,0.729657,0.197079,0.953818,0.00784075,0.414913,0.483745,0.101996,0.843272,0.128587,0.87026,0.374901,0.368415,0.0537544,0.865378,0.764912,0.802848,0.547648,0.565529,0.954827,0.657029,0.780685,0.999196,0.0354429,0.0875018,0.780141,0.658593,0.997122,0.216343,0.846253,0.291415,0.458331,0.0768178,0.860041,0.428736,0.22442,0.599808,0.802331,0.176865,0.488222,0.721546,0.519595,0.233199,0.00830942,0.781568,0.127104,0.876931,0.998079,0.66517,0.404907,|0.524653,0.579491,0.00554538,0.625795,0.443285,0.69356,0.31683,0.950418,0.643444,0.0922358,0.451955,0.44986,0.00825167,0.511459,0.44459,0.530758,0.550591,0.308674,0.760892,0.307477,0.177924,0.417966,0.644057,0.72145,0.566135,0.0101612,0.8092,0.0352776,0.134938,0.141986,0.109449,0.496476,0.738406,0.490753,0.549347,0.46391,0.629199,0.00487107,0.3937,0.389345,0.282869,0.0402815,0.39958,0.740887,0.957284,0.348157,0.873418,0.817243,0.455928,0.305592,0.124588,0.168156,0.157049,0.408692,0.00170678,0.610852,0.972755,0.865744,0.323137,0.256706,0.664461,0.544403,0.0757222,0.357176,0.13775,0.277031,0.237234,0.0645263,0.620212,0.0195553,0.101831,0.741471,0.620238,0.691098,0.938968,0.8884,0.0636976,0.918768,0.470526,0.783188,0.837116,0.916105,0.709518,0.413594,0.920918,0.628772,0.794484,0.45478,0.357781,0.203647,0.150348,0.0674605,0.429309,0.841772,0.601474,0.00914621,0.0102187,0.762324,0.722944,0.759324,0.30628,0.677516,0.148556,0.677893,0.438437,0.393501,0.409915,0.0688954,0.952117,0.201832,0.780152,0.744471,0.581748,0.175249,0.0517362,0.788291,0.188212,0.0580969,0.824609,0.919238,0.988533,0.217562,0.679457,0.195545,0.0833576,0.521399,0.412316,0.985664,0.287171,0.220396,0.87342,0.652215,0.57345,0.507626,0.0575224,0.952219,0.527951,0.435358,0.317117,0.00462806,0.222413,0.897187,0.778911,0.0468223,0.351115,0.276457,0.549642,0.0142245,0.903251,0.668011,0.155595,0.052167,0.769356,0.147708,0.408801,0.0743621,0.38705,0.711257,0.654048,0.812055,0.514713,0.267187,0.742626,0.972714,0.893324,0.297555,0.988081,0.420783,0.769884,0.071152,0.527204,0.547836,0.208707,0.141321,0.811225,0.232717,0.687462,0.344876,0.713162,0.706179,0.920347,0.761184,0.81463,0.0121567,0.0556757,0.392333,0.569395,0.820258,0.802954,0.745383,0.89136,0.529102,0.549085,0.816196,0.663842,0.638212,0.396082,0.0238481,0.519358,0.98266,0.554451,0.0988823,0.98058,0.654163,0.997165,0.205201,0.105146,0.251739,0.691846,0.159039,0.425188,0.787518,0.859015,0.849375,0.534301,0.685298,0.442807,0.382411,0.269857,0.69859,0.0355185,0.654504,0.78206,0.118496,0.507643,0.845303,0.66446,0.142529,0.0506048,0.0432065,0.0399755,0.433908,0.441283,0.568897,0.108808,0.445907,0.567131,0.0874264,0.968017,0.421949,0.387238,0.417322,0.831801,0.272379,0.665017,0.839258,0.727431,0.346413,0.592578,0.187789,0.914308,0.0411183,0.455994,0.513416,0.776027,0.0120118,0.20208,0.348229,0.325608,0.934013,0.143716,0.239539,0.162352,0.429055,0.860215,0.140691,0.94016,0.860703,0.836637,0.208182,0.995057,0.375874,0.396276,0.615712,0.0805095,0.66505,0.534701,0.603037,0.32128,0.145891,0.709176,0.950081,0.879516,0.898355,0.571037,0.443871,0.236034,0.561816,0.215339,0.202458,0.463669,0.788708,0.890943,0.551403,0.564666,0.830122,0.394683,0.365969,0.369553,0.490062,0.0285173,0.735808,0.817754,0.0575626,0.703532,0.539957,0.335152,0.962527,0.289488,0.77066,0.404128,0.863303,0.270893,0.645764,0.555891,0.331558,0.40289,0.868531,0.0261357,0.340716,0.291982,0.787574,0.169627,0.721413,0.723201,0.432566,0.811706,0.856497,0.0825321,0.74524,0.187269,0.627422,0.351126,0.0210875,0.286802,0.0583539,0.476949,0.493591,0.620971,0.347974,0.141776,0.978002,0.610325,0.54157,0.530728,0.386934,0.298616,0.294989,0.702646,0.718218,0.403558,0.0510616,0.453538,0.78499,0.395985,0.256163,0.807328,0.140982,0.167152,0.771116,0.253937,0.707812,0.380961,0.057786,0.88211,0.11378,0.484168,0.982019,0.814323,0.538105,0.980817,0.66823,0.145648,0.0576472,0.391784,0.571839,0.309659,0.678661,0.986168,0.48841,0.444823,0.867949,0.555221,0.395524,0.128177,0.0872005,0.922936,0.756982,0.269804,0.8773,0.0693017,0.476514,0.164035,0.772937,0.590029,0.623031,0.300574,0.311746,0.764074,0.862753,0.00297195,0.826169,0.635726,0.745386,0.0504675,0.108879,0.858535,0.378657,0.602275,0.993476,0.118809,0.97621,0.0313604,0.744504,0.079469,0.483337,0.49678,0.824549,0.304796,0.996614,0.0601822,0.0318271,0.533046,0.831223,0.00748038,0.156803,0.259482,0.450248,0.00138968,0.319133,0.401554,0.30617,0.70415,0.496045,0.356978,0.585227,0.369279,0.0403714,0.0784338,0.22376,0.949093,0.95355,0.163976,0.246756,0.602168,0.837923,0.558999,0.44581,0.776617,0.217552,0.617585,0.970523,0.70137,0.947965,0.504965,0.238869,0.098472,0.308405,0.396934,0.695185,0.447186,0.370195,0.26203,0.381502,0.492669,0.542068,0.691116,0.451274,0.424476,0.2246,0.738612,0.205308,0.905809,0.729112,0.883927,0.953678,0.547637,0.376402,0.279562,0.843767,0.451012,0.537166,0.116106,0.134494,0.162852,0.547912,0.615172,0.861575,0.376397,0.571491,0.460008,0.920597,0.0304872,0.936656,0.362469,0.886375,0.7798,0.844657,0.2611,0.752276,0.369912,0.380962,0.829318,0.00223905,0.606972,0.0827562,0.0988965,0.0421355,0.802974,0.92758,0.438975,0.50525,0.147041,0.655228,0.424748,0.250914,0.327472,0.924776,0.447285,0.2847,0.909884,0.902917,0.460626,0.37622,0.309507,0.289863,0.714494,0.0248136,0.222154,0.200314,0.63613,0.514749,0.408392,0.987342,0.938218,0.734472,0.827237,0.40348,0.24577,0.698067,0.556214,0.262838,0.892528,0.886333,0.789771,0.812148,0.555096,0.499726,0.406472,0.31604,0.389482,0.699298,0.926518,0.654181,0.698385,0.733701,0.50622,0.302866,0.330723,0.605554,0.995292,0.514591,0.917553,0.902569,0.532825,0.546334,0.605264,0.878402,0.20819,0.508531,0.62494,0.730088,0.653227,0.907559,0.0516545,0.922836,0.151732,0.515062,0.0829767,0.657249,0.613423,0.558912,0.358472,0.785875,0.657641,0.810725,0.418575,0.322607,0.558236,0.749717,0.542558,0.338595,0.936694,0.958415,0.0838689,0.349597,0.341253,0.583512,0.0115806,0.199857,0.417635,0.930052,0.943656,0.0643777,0.509732,0.21115,0.264894,0.511343,0.927978,0.0581652,0.25557,0.213569,0.0784749,0.925021,0.908367,0.850916,0.0377805,0.130642,0.516565,0.154843,0.102609,0.499287,0.763008,0.620119,0.83455,0.781151,0.377773,0.378195,0.0107362,0.636188,0.354963,0.111295,0.164841,0.226537,0.11855,0.026987,0.142938,0.52049,0.278801,0.216116,0.41717,0.65898,0.360681,0.608445,0.843858,0.461106,0.268697,0.319181,0.0614955,0.174492,0.0829608,0.515388,0.649564,0.910488,0.206296,0.6476,0.996338,0.619526,0.287156,0.509717,0.658196,0.816315,0.303711,0.524695,0.0658755,0.357765,0.126122,0.881896,0.934587,0.780792,0.956303,0.305754,0.189043,0.0805516,0.372028,0.968158,0.0439085,0.844668,0.483581,0.764951,0.45627,0.0936185,0.567697,0.285749,0.640517,0.611203,0.0895396,0.0644166,0.173485,0.942818,0.158324,0.465125,0.22114,0.144714,0.0238565,0.175517,0.428023,0.439999,0.922355,0.483244,0.372961,0.100278,0.924763,0.653168,0.0996593,0.0503113,0.934862,0.601422,0.13392,0.239083,0.0439879,0.0215831,0.195833,0.237464,0.12532,0.576199,0.311578,0.726112,0.903568,0.997067,0.807142,0.630703,0.694689,0.378628,0.509221,0.492834,0.975596,0.18441,0.79578,0.654431,0.15091,0.663193,0.370317,0.651523,0.931642,0.00595897,0.827038,0.305296,0.00937068,0.82139,0.481021,0.829666,0.551907,0.378803,0.76573,0.714195,0.907913,0.907888,0.455771,0.512398,0.286773,0.267595,0.373798,0.0305094,0.971652,0.878466,0.368588,0.0923482,0.0323283,0.468466,0.0884042,0.827223,0.280729,0.119585,0.415444,0.251981,0.381353,0.63931,0.0754746,0.857546,0.377414,0.0389702,0.0516214,0.953295,0.0414861,0.449118,0.727887,0.423788,0.603759,0.925697,0.0405332,0.489939,0.826641,0.57964,0.15776,0.0705668,0.652813,0.636604,0.850046,0.916174,0.455842,0.88704,0.66664,0.213399,0.693821,0.697346,0.0643656,0.6552,0.914995,0.386876,0.861516,0.548773,0.528791,0.633617,0.291351,0.211585,0.384327,0.463305,0.964685,0.348838,0.753437,0.733391,0.274056,0.295381,0.731673,0.829218,0.624419,0.550215,0.825423,0.0838916,0.975209,0.0406412,0.629431,0.681172,0.42419,0.74606,0.0845708,0.702335,0.329012,0.748641,0.646765,0.447624,0.564297,0.497286,0.742176,0.0515426,0.0601903,0.00292724,0.489793,0.238737,0.0799886,0.605591,0.0109499,0.376247,0.91563,0.467468,0.337683,0.962193,0.924956,0.264296,0.032846,0.497339,0.18526,0.988996,0.979895,0.213461,0.181258,0.893333,0.0763804,0.792503,0.706268,0.131925,0.556066,0.660651,0.94231,0.116342,0.202625,0.19147,0.67733,0.0610525,0.372542,0.466819,0.843526,0.826426,0.996869,0.64975,0.0397284,0.608,0.582752,0.24601,0.760353,0.931518,0.415356,0.137964,0.494305,0.653144,0.737099,0.70975,0.711244,0.078739,0.814633,0.401748,0.951604,0.691646,0.269254,0.183066,0.431754,0.669683,0.909087,0.639873,0.304674,0.499306,0.533796,0.5166,0.836228,0.296925,0.644458,0.872943,0.731856,0.443741,0.887472,0.853894,0.782547,0.53189,0.461186,0.283296,0.698102,0.0534598,0.0713663,0.742108,0.543301,0.779164,0.367979,0.85095,0.0447862,0.467476,0.570485,0.905883,0.830439,0.817166,0.177757,0.822808,0.935166,0.676761,0.919028,0.300547,0.870314,0.898896,0.00169569,0.987758,0.874898,0.111015,0.395747,0.958317,0.261588,0.216437,0.888036,0.722086,0.52228,0.21168,0.405748,0.804129,0.132135,0.0148739,0.177108,0.563418,0.772093,0.256844,0.269052,0.00256354,0.9927,0.0162189,0.159462,0.275985,0.981831,0.696447,0.835562,0.430322,0.955564,0.924251,0.814417,0.827769,0.180098,0.458958,0.319248,0.0407273,0.109453,0.438746,0.214193,0.718799,0.527336,0.671225,0.290697,0.889412,0.296705,0.669477,0.223701,0.533476,0.0776243,0.97558,0.592541,0.494824,0.398536,0.564567,0.172618,0.846467,0.857864,0.555201,0.532507,0.737428,|0.256225,0.170682,0.253314,0.9622,0.0735004,0.984857,0.740846,0.198541,0.422221,0.416689,0.599656,0.217695,0.181062,0.771805,0.177358,0.324476,0.758608,0.177525,0.0261184,0.302012,0.245243,0.44732,0.731183,0.578281,0.823932,0.149307,0.0297073,0.702861,0.35526,0.711007,0.0879629,0.898226,0.953386,0.647143,0.0454847,0.00855666,0.473886,0.0653348,0.190985,0.910994,0.567807,0.115788,0.322541,0.838131,0.959527,0.952441,0.482353,0.863685,0.820305,0.214757,0.0865086,0.46502,0.586949,0.779381,0.595038,0.176348,0.634304,0.333504,0.477796,0.970143,0.94821,0.63309,0.812512,0.232298,0.0139798,0.908083,0.858953,0.302574,0.0408906,0.916179,0.278437,0.516905,0.0715648,0.627986,0.75256,0.139019,0.249467,0.164573,0.225185,0.315083,0.0322293,0.16932,0.898397,0.917334,0.841727,0.920125,0.713751,0.320023,0.619919,0.0307678,0.131498,0.855045,0.439796,0.0978397,0.844074,0.759116,0.88684,0.901924,0.635389,0.491359,0.56809,0.273459,0.70561,0.469319,0.427101,0.756507,0.157913,0.742392,0.106072,0.107738,0.600846,0.469789,0.942734,0.318983,0.870862,0.777934,0.871616,0.216291,0.41576,0.159677,0.548917,0.00484997,0.281351,0.449171,0.373552,0.573357,0.934594,0.058135,0.332862,0.272889,0.382572,0.0202559,0.880493,0.796173,0.058459,0.815979,0.89077,0.579498,0.722853,0.817017,0.309622,0.511081,0.394593,0.199907,0.503618,0.510299,0.523795,0.0404636,0.130859,0.883911,0.863801,0.275738,0.874908,0.431133,0.154335,0.542276,0.399002,0.780511,0.0873471,0.0471628,0.104075,0.749634,0.0866911,0.954446,0.564107,0.148836,0.917196,0.710974,0.806609,0.837616,0.879743,0.600409,0.76955,0.163155,0.418202,0.850761,0.715702,0.626504,0.614186,0.567164,0.189772,0.729341,0.765968,0.291145,0.592169,0.568063,0.55242,0.645196,0.165346,0.794317,0.24844,0.943351,0.832075,0.51656,0.976018,0.46453,0.650056,0.431557,0.626569,0.64275,0.79432,0.59322,0.985485,0.553601,0.542964,0.183317,0.471888,0.119183,0.397221,0.0293213,0.76684,0.140589,0.302758,0.329709,0.992254,0.544658,0.28155,0.6421,0.593869,0.276844,0.827861,0.235746,0.481458,0.0636867,0.309639,0.920616,0.375235,0.647568,0.370178,0.0820693,0.0161236,0.916961,0.366633,0.284323,0.974785,0.31375,0.943696,0.986803,0.715411,0.811001,0.682564,0.738028,0.898289,0.470659,0.967145,0.353333,0.756669,0.756422,0.568408,0.492983,0.0898336,0.614176,0.263562,0.491576,0.999538,0.119291,0.678311,0.0400189,0.89633,0.114439,0.0969684,0.000177443,0.802932,0.731556,0.449083,0.0881924,0.492412,0.925195,0.527965,0.139909,0.396999,0.421654,0.39198,0.0775117,0.270499,0.982942,0.592161,0.166285,0.369811,0.939273,0.129567,0.314754,0.858642,0.526193,0.0804687,0.995728,0.675915,0.567384,0.313558,0.576598,0.258474,0.921,0.298682,0.702679,0.653516,0.602141,0.269581,0.749957,0.79554,0.0486096,0.0504095,0.896537,0.585857,0.564607,0.421286,0.234933,0.621768,0.710036,0.872285,0.602941,0.633811,0.590875,0.634708,0.972006,0.413853,0.767912,0.500988,0.626181,0.0883621,0.94366,0.547432,0.445871,0.322078,0.752238,0.321765,0.991507,0.90855,0.0612258,0.569934,0.379111,0.209464,0.3153,0.593935,0.141039,0.121091,0.201554,0.335262,0.932664,0.884907,0.430425,0.00391537,0.142329,0.551754,0.661637,0.153861,0.900655,0.711399,0.784945,0.0308654,0.454244,0.420839,0.410277,0.985655,0.937749,0.706815,0.802022,0.165618,0.226941,0.795431,0.724503,0.683047,0.253817,0.235727,0.530312,0.190335,0.703349,0.95167,0.84211,0.237465,0.0954183,0.456193,0.264032,0.480522,0.362859,0.784547,0.634065,0.00881636,0.489439,0.505479,0.441889,0.992643,0.605054,0.494749,0.419605,0.366732,0.988749,0.90953,0.615318,0.079253,0.0225498,0.747593,0.268772,0.31857,0.904129,0.493323,0.766316,0.649602,0.776388,0.615617,0.594411,0.999289,0.499109,0.927541,0.345831,0.0517014,0.116157,0.21193,0.157972,0.926373,0.657902,0.778216,0.0685794,0.867188,0.405591,0.945795,0.792095,0.418946,0.671854,0.603415,0.781935,0.360946,0.795747,0.869864,0.555937,0.373176,0.856082,0.637084,0.656475,0.232692,0.482276,0.125645,0.853138,0.562421,0.935242,0.609269,0.253373,0.746311,0.918555,0.329384,0.906298,0.398977,0.943523,0.776348,0.0138973,0.489992,0.412408,0.302926,0.469305,0.042513,0.0178959,0.658941,0.275019,0.79072,0.0264785,0.794744,0.266795,0.96133,0.533144,0.328111,0.562132,0.819825,0.0938488,0.729952,0.867058,0.164271,0.385238,0.578633,0.99182,0.211179,0.717884,0.917968,0.970974,0.192838,0.785596,0.184866,0.765401,0.612457,0.315469,0.629387,0.724936,0.0793412,0.354226,0.116191,0.854729,0.527981,0.0329906,0.81855,0.599006,0.522759,0.131892,0.442507,0.485769,0.216658,0.622191,0.470592,0.103484,0.33027,0.220389,0.62783,0.592616,0.933198,0.349243,0.0533821,0.195569,0.456695,0.0202022,0.512677,0.343722,0.651681,0.6673,0.373458,0.889623,0.25559,0.635847,0.460339,0.401436,0.778753,0.11186,0.696512,0.61659,0.449592,0.978057,0.23044,0.460017,0.0936564,0.0425317,0.111928,0.336433,0.690849,0.887588,0.441295,0.0140681,0.667772,0.0631521,0.617509,0.316228,0.672077,0.312315,0.515646,0.104501,0.992061,0.581132,0.264231,0.03365,0.817761,0.258902,0.512273,0.189462,0.2165,0.450906,0.732873,0.919746,0.931783,0.145988,0.248431,0.39706,0.736409,0.621844,0.0620303,0.749099,0.730903,0.19048,0.999394,0.97032,0.190801,0.994574,0.344975,0.602325,0.888934,0.816907,0.027949,0.858317,0.748947,0.41364,0.287279,0.570671,0.219244,0.202195,0.138684,0.51428,0.430312,0.152983,0.727358,0.175551,0.365849,0.49655,0.453621,0.714126,0.969696,0.0818338,0.570668,0.982765,0.970772,0.0323148,0.970798,0.0170624,0.357179,0.781032,0.960847,0.105157,0.582761,0.299225,0.562168,0.79614,0.423925,0.155124,0.783305,0.0866699,0.921086,0.855383,0.653742,0.552383,0.593283,0.515761,0.426632,0.576336,0.472658,0.848953,0.8292,0.578024,0.526376,0.520136,0.901255,0.714405,0.385732,0.66177,0.96428,0.456195,0.443532,0.245724,0.574448,0.614995,0.0846296,0.0627246,0.185195,0.858735,0.0736821,0.0670691,0.285469,0.637958,0.449267,0.0590745,0.856771,0.845965,0.807065,0.14557,0.486121,0.769035,0.460846,0.579585,0.462859,0.10442,0.141168,0.712636,0.109053,0.461427,0.431339,0.249013,0.750564,0.500192,0.273714,0.968881,0.677128,0.709167,0.424492,0.405857,0.100952,0.39685,0.547036,0.401885,0.503075,0.286886,0.142528,0.182148,0.164651,0.765566,0.206456,0.446278,0.548554,0.881617,0.325551,0.921965,0.806089,0.0754493,0.0555465,0.411099,0.88764,0.512271,0.8159,0.42771,0.436506,0.138687,0.446998,0.131103,0.0578018,0.415495,0.558938,0.248888,0.242835,0.28765,0.158961,0.799288,0.745266,0.538424,0.85381,0.0741883,0.377475,0.603679,0.780288,0.500215,0.195076,0.98075,0.409284,0.122452,0.577163,0.494925,0.886575,0.102959,0.752838,0.414266,0.712817,0.0973183,0.693315,0.710157,0.287972,0.589455,0.647901,0.772455,0.0643755,0.0882079,0.225458,0.174608,0.888648,0.316756,0.390106,0.786061,0.152069,0.796061,0.363502,0.0683565,0.541351,0.829091,0.699245,0.0971234,0.678208,0.897102,0.521604,0.17894,0.165822,0.375709,0.422502,0.139504,0.780844,0.657412,0.420845,0.818502,0.907228,0.651868,0.977834,0.558755,0.701232,0.747262,0.667136,0.946161,0.0735496,0.0159303,0.28336,0.133588,0.340198,0.278435,0.617717,0.16334,0.911078,0.455968,0.834795,0.46487,0.521151,0.505577,0.209266,0.256504,0.72684,0.468032,0.706333,0.12119,0.724626,0.803634,0.678715,0.874695,0.781219,0.676623,0.164756,0.192077,0.850187,0.840211,0.498349,0.693279,0.407306,0.376607,0.146371,0.497055,0.0995198,0.148066,0.649462,0.616723,0.885868,0.645542,0.191943,0.261926,0.35855,0.0231063,0.196681,0.0420933,0.0600626,0.196613,0.658943,0.780272,0.549273,0.306815,0.256431,0.714381,0.456781,0.585004,0.721834,0.929309,0.0941206,0.871161,0.954168,0.491537,0.99057,0.0178475,0.467012,0.647034,0.352566,0.140786,0.749973,0.813973,0.705396,0.0805292,0.433476,0.775874,0.653357,0.0152175,0.606948,0.112855,0.568791,0.204689,0.763682,0.117832,0.0222457,0.845792,0.858145,0.259079,0.36627,0.95941,0.92107,0.731842,0.928698,0.484575,0.669295,0.485504,0.446398,0.737679,0.237513,0.707127,0.742219,0.494595,0.115883,0.927064,0.948854,0.552661,0.811111,0.973852,0.0398441,0.2932,0.744622,0.83879,0.330456,0.560114,0.385528,0.543316,0.960355,0.747059,0.494941,0.210526,0.648079,0.793429,0.669917,0.791548,0.106957,0.665616,0.265374,0.54037,0.0881134,0.941,0.699137,0.29521,0.667535,0.476831,0.374333,0.901167,0.858088,0.756976,0.329625,0.0872979,0.349329,0.110388,0.911041,0.485681,0.350967,0.216066,0.750511,0.457187,0.933836,0.880186,0.202485,0.681558,0.93447,0.0572047,0.742796,0.178238,0.443222,0.12224,0.979906,0.643694,0.189029,0.958768,0.689102,0.509138,0.333596,0.229904,0.748308,0.74502,0.2974,0.474523,0.368558,0.761426,0.733208,0.700788,0.487655,0.950294,0.667965,0.385605,0.875303,0.180954,0.460433,0.377094,0.000954092,0.962288,0.143361,0.0121412,0.177384,0.898383,0.536007,0.997016,0.636479,0.284025,0.224346,0.355802,0.573721,0.859156,0.288558,0.74264,0.163532,0.539394,0.208099,0.827061,0.232029,0.37912,0.636455,0.722457,0.645336,0.136204,0.703845,0.187189,0.386014,0.463171,0.916655,0.745305,0.84578,0.696412,0.344635,0.477773,0.757132,0.550156,0.621436,0.793023,0.69624,0.921791,0.395889,0.131843,0.244346,0.709097,0.82805,0.735778,0.699211,0.588989,0.231014,0.905797,0.968509,0.146856,|0.412547,0.766075,0.654441,0.916713,0.00848037,0.493899,0.689963,0.516956,0.777819,0.817859,0.0776643,0.891169,0.794737,0.328087,0.0208412,0.47996,0.434737,0.532231,0.0807298,0.640071,0.651721,0.671352,0.996255,0.640608,0.936863,0.533003,0.632492,0.813826,0.702886,0.717707,0.690806,0.556767,0.936424,0.00605714,0.0728878,0.182927,0.387908,0.134819,0.991724,0.383071,0.605888,0.803127,0.855402,0.808917,0.651828,0.0466217,0.280503,0.68055,0.475645,0.596718,0.510272,0.178775,0.217261,0.264773,0.0650371,0.500129,0.490005,0.269418,0.47787,0.0437121,0.591538,0.761889,0.901011,0.818804,0.870218,0.10605,0.586829,0.873598,0.0427184,0.112291,0.607442,0.835898,0.241877,0.674311,0.0519403,0.13946,0.998955,0.488106,0.45116,0.802326,0.626223,0.476542,0.0933033,0.690517,0.689696,0.891328,0.00361955,0.576692,0.819399,0.766338,0.908218,0.394083,0.823991,0.731701,0.233602,0.760458,0.439447,0.26437,0.900303,0.215441,0.139238,0.500007,0.797438,0.94041,0.173275,0.659791,0.113366,0.689597,0.187292,0.166973,0.391669,0.143343,0.0611538,0.588941,0.296971,0.480632,0.55022,0.389309,0.415116,0.298925,0.325296,0.258749,0.423718,0.167931,0.990566,0.228842,0.181275,0.98978,0.532619,0.0965714,0.131789,0.260689,0.175872,0.239216,0.177531,0.202266,0.099107,0.508606,0.103992,0.772358,0.293682,0.164659,0.661403,0.212161,0.548882,0.801394,0.368556,0.445126,0.929801,0.37506,0.0921713,0.250042,0.280556,0.400217,0.811365,0.142606,0.481625,0.365564,0.375691,0.458285,0.397724,0.11877,0.966046,0.970663,0.567623,0.202782,0.0764453,0.444026,0.135003,0.863745,0.251576,0.443007,0.249349,0.5589,0.826502,0.489637,0.973737,0.00304127,0.962297,0.0248441,0.878436,0.17271,0.324205,0.293028,0.782945,0.980427,0.135709,0.774914,0.482409,0.505684,0.794077,0.219339,0.697915,0.979703,0.360795,0.599358,0.131557,0.189129,0.539475,0.0847332,0.885764,0.379735,0.0937146,0.201444,0.995881,0.633867,0.0580337,0.311569,0.0902906,0.926456,0.590776,0.457448,0.450575,0.0520946,0.961728,0.424636,0.718711,0.300354,0.884869,0.940164,0.484344,0.220896,0.920394,0.741651,0.353107,0.472479,0.413683,0.041201,0.758421,0.312385,0.996141,0.48267,0.657259,0.603646,0.143227,0.397844,0.657167,0.593699,0.452726,0.465962,0.635742,0.62853,0.181258,0.99696,0.0808892,0.873877,0.281651,0.617393,0.181828,0.831049,0.719647,0.154374,0.117988,0.380996,0.615925,0.0526437,0.427291,0.950787,0.39015,0.00391853,0.449972,0.602659,0.994218,0.952969,0.517439,0.0679272,0.195181,0.422806,0.190481,0.173912,0.253344,0.603901,0.720477,0.123008,0.0870236,0.290564,0.224407,0.61426,0.0565387,0.369897,0.793022,0.0653731,0.310996,0.78906,0.821327,0.347412,0.47645,0.709838,0.839192,0.505776,0.998088,0.790643,0.0370342,0.169382,0.753929,0.0158777,0.727173,0.625377,0.836712,0.211651,0.546288,0.62709,0.23947,0.379365,0.568566,0.000777781,0.994579,0.494533,0.0296224,0.0397897,0.0157494,0.277657,0.888359,0.988611,0.109703,0.57912,0.215209,0.0782891,0.592171,0.57989,0.224183,0.148062,0.348623,0.026179,0.37098,0.503232,0.0180082,0.492338,0.55332,0.243091,0.921396,0.0220868,0.954566,0.669205,0.305088,0.882402,0.39406,0.589442,0.501211,0.781494,0.880073,0.701208,0.648229,0.641825,0.0864778,0.583917,0.410405,0.562952,0.512297,0.194378,0.785227,0.283457,0.616813,0.580668,0.279002,0.366597,0.0999297,0.0227023,0.824273,0.858542,0.675208,0.769248,0.712189,0.633535,0.916957,0.31333,0.268135,0.201178,0.543769,0.762247,0.886964,0.0139079,0.952107,0.579416,0.666037,0.450805,0.132044,0.812073,0.846681,0.889333,0.705247,0.877206,0.492554,0.948284,0.654449,0.599958,0.0637828,0.916686,0.49374,0.310728,0.707048,0.879947,0.155277,0.671939,0.803611,0.341203,0.676728,0.246917,0.857854,0.0723596,0.073272,0.865997,0.733635,0.860632,0.366198,0.577255,0.380456,0.131716,0.960417,0.426763,0.793586,0.20291,0.968475,0.962096,0.366574,0.196884,0.304091,0.982134,0.791154,0.0949395,0.0187868,0.046211,0.391429,0.210086,0.579039,0.516015,0.486611,0.682356,0.28804,0.00571901,0.422148,0.664913,0.444032,0.777261,0.99488,0.0116749,0.695017,0.288542,0.17486,0.13701,0.54789,0.0993361,0.611656,0.904941,0.327981,0.352353,0.155748,0.638218,0.808969,0.0384299,0.402449,0.628002,0.806267,0.514402,0.333678,0.217672,0.0407376,0.0591198,0.664725,0.504226,0.130309,0.106597,0.9145,0.526785,0.833255,0.720683,0.244547,0.276011,0.396117,0.0089938,0.355589,0.421593,0.734023,0.132645,0.799473,0.562057,0.724723,0.906218,0.017918,0.10082,0.343126,0.433912,0.429342,0.118664,0.742755,0.904977,0.32749,0.866657,0.116772,0.729511,0.0132003,0.780308,0.320631,0.053786,0.790803,0.3758,0.833019,0.324871,0.0890998,0.421661,0.214606,0.858789,0.601755,0.712021,0.799587,0.676205,0.897451,0.452468,0.379614,0.705142,0.55251,0.83273,0.623334,0.305732,0.940431,0.227918,0.426156,0.844464,0.065208,0.522984,0.218808,0.553841,0.318467,0.967472,0.44131,0.919131,0.292376,0.836751,0.416663,0.677107,0.388801,0.383992,0.428644,0.725097,0.266387,0.688113,0.397692,0.377887,0.589978,0.615347,0.205195,0.277281,0.257433,0.681099,0.11894,0.611816,0.479504,0.618893,0.0795609,0.298402,0.696907,0.926574,0.185817,0.73599,0.410176,0.0899432,0.836924,0.711555,0.665588,0.153411,0.926416,0.702724,0.385815,0.596158,0.125357,0.458821,0.747815,0.134667,0.636483,0.194526,0.646624,0.0386984,0.695999,0.500187,0.477443,0.690013,0.607554,0.783938,0.24856,0.26895,0.137445,0.7412,0.500552,0.85431,0.772682,0.329307,0.373035,0.680609,0.0975221,0.0612823,0.306051,0.230137,0.379856,0.878751,0.81122,0.165866,0.743834,0.106076,0.0374242,0.741719,0.229686,0.99386,0.782129,0.351089,0.368108,0.0468856,0.380557,0.264691,0.389318,0.0805993,0.158352,0.147266,0.361967,0.829044,0.219319,0.223024,0.712965,0.553545,0.256997,0.945513,0.350675,0.27982,0.603363,0.18864,0.907455,0.490992,0.343366,0.229187,0.449335,0.921143,0.593436,0.560311,0.977675,0.747802,0.32459,0.434527,0.187584,0.7403,0.667123,0.334355,0.344976,0.756486,0.137646,0.520344,0.402666,0.136629,0.993645,0.695585,0.287557,0.984587,0.222219,0.971201,0.75621,0.988011,0.833256,0.124161,0.924296,0.690443,0.0964487,0.812388,0.984322,0.907602,0.151584,0.768827,0.368032,0.838369,0.151626,0.844643,0.523113,0.750473,0.565351,0.919275,0.120968,0.541889,0.882405,0.0145082,0.21052,0.478938,0.463127,0.515426,0.181464,0.337533,0.720933,0.917006,0.93371,0.0861828,0.601587,0.223993,0.204241,0.74694,0.229831,0.30188,0.130767,0.849831,0.196253,0.0967663,0.287217,0.613928,0.783046,0.133046,0.188684,0.127915,0.81099,0.0163428,0.209137,0.584256,0.433201,0.380277,0.615867,0.596541,0.539759,0.218479,0.407725,0.643175,0.376234,0.562236,0.781319,0.372687,0.843076,0.21417,0.217102,0.948791,0.53987,0.0769539,0.0108171,0.272255,0.865642,0.671059,0.884188,0.686181,0.0565326,0.539733,0.251969,0.30975,0.63374,0.908128,0.741893,0.243663,0.515067,0.30275,0.19984,0.900205,0.565439,0.383539,0.786256,0.36901,0.257427,0.675252,0.357072,0.818102,0.949833,0.839593,0.556405,0.0692968,0.179429,0.415517,0.322851,0.586802,0.294963,0.257713,0.0481362,0.266079,0.677037,0.451734,0.0486667,0.349289,0.403727,0.252558,0.480164,0.585293,0.756694,0.358386,0.621378,0.272453,0.218852,0.0560815,0.426581,0.0800393,0.375661,0.621612,0.0975811,0.121908,0.930422,0.00893438,0.62973,0.255045,0.97185,0.194642,0.112736,0.441698,0.303799,0.817674,0.4824,0.650803,0.874777,0.825978,0.156145,0.257693,0.920112,0.320874,0.703467,0.672684,0.270056,0.335693,0.858882,0.963479,0.627615,0.162443,0.364859,0.354276,0.655812,0.181104,0.81039,0.523906,0.855509,0.680334,0.377697,0.574348,0.855323,0.857289,0.702109,0.856774,0.0891569,0.0825143,0.664491,0.459433,0.486698,0.0556629,0.437085,0.0868957,0.167547,0.862485,0.266434,0.0050568,0.585195,0.291167,0.66391,0.260493,0.45545,0.856324,0.140982,0.107947,0.419484,0.594212,0.819807,0.0999056,0.894863,0.755265,0.988865,0.210816,0.181035,0.683859,0.779424,0.763629,0.441104,0.0695736,0.492631,0.713808,0.297377,0.0532993,0.522907,0.781489,0.282979,0.69331,0.716199,0.408361,0.0511554,0.91129,0.185744,0.904902,0.0276865,0.644159,0.767196,0.378862,0.642993,0.141548,0.736794,0.0205709,0.489298,0.639999,0.886109,0.0632403,0.76441,0.667474,0.262107,0.16911,0.862661,0.928054,0.301763,0.957704,0.0755789,0.562068,0.217685,0.818957,0.555469,0.0596758,0.208335,0.194987,0.678921,0.271088,0.759204,0.323674,0.0415801,0.352585,0.00631511,0.671065,0.828965,0.563641,0.760108,0.426187,0.220071,0.240654,0.0328852,0.33053,0.158978,0.119528,0.588117,0.649787,0.0765987,0.958859,0.822552,0.170046,0.991856,0.402785,0.822207,0.062475,0.0527108,0.721546,0.0495529,0.355082,0.316737,0.107296,0.96499,0.00971049,0.0184658,0.575436,0.920704,0.677184,0.863785,0.692716,0.0858988,0.0999687,0.830473,0.327603,0.875068,0.213399,0.779796,0.699799,0.763738,0.487607,0.496551,0.254616,0.633141,0.681835,0.315285,0.82914,0.392812,0.468653,0.274084,0.636981,0.632177,0.742961,0.897282,0.0159006,0.97738,0.591653,0.933327,0.0181395,0.193814,0.838494,0.589549,0.833435,0.0489211,0.66537,0.145916,0.502674,0.150576,0.422663,0.245832,0.574506,0.230147,0.518903,0.389349,0.570828,0.323925,0.0823933,0.190215,0.742352,0.419548,0.596693,0.887819,0.228796,0.644436,0.292616,0.760263,0.216355,0.634931,0.626583,0.790935,0.84191,|0.729706,0.355169,0.511088,0.895849,0.468269,0.454133,0.739113,0.165482,0.553357,0.125452,0.731354,0.772764,0.339235,0.182942,0.908489,0.133723,0.108517,0.323916,0.393754,0.098119,0.0493919,0.261103,0.107176,0.958232,0.433951,0.440664,0.976231,0.026266,0.216921,0.942908,0.434853,0.0894596,0.00640529,0.480461,0.796352,0.401661,0.751942,0.0505443,0.539031,0.712302,0.838013,0.138018,0.0359391,0.528358,0.419943,0.752985,0.405713,0.332762,0.691807,0.0579106,0.581316,0.410029,0.310569,0.195142,0.261886,0.516576,0.20768,0.206496,0.764561,0.0249233,0.578874,0.580856,0.144763,0.947125,0.512091,0.331408,0.619463,0.812587,0.650672,0.0188423,0.230026,0.768081,0.310366,0.769623,0.963713,0.560735,0.716461,0.0815364,0.177393,0.638985,0.678048,0.03348,0.777859,0.300255,0.3203,0.166042,0.170058,0.450084,0.942899,0.229635,0.0162135,0.23363,0.206676,0.619902,0.584841,0.491475,0.67525,0.64848,0.875407,0.415301,0.757344,0.329207,0.205301,0.640817,0.965539,0.268686,0.761698,0.45841,0.238556,0.326524,0.935962,0.293557,0.303231,0.370468,0.203169,0.305192,0.435521,0.720553,0.98124,0.748933,0.149047,0.64778,0.445556,0.279249,0.394783,0.0355476,0.976633,0.718299,0.327278,0.369615,0.38144,0.207706,0.453731,0.0984233,0.207661,0.513677,0.633947,0.746051,0.766085,0.769476,0.234344,0.475787,0.294095,0.761132,0.65549,0.140299,0.362143,0.593049,0.208577,0.823417,0.410589,0.707742,0.519221,0.687543,0.997928,0.489226,0.544387,0.414366,0.689373,0.0118812,0.23062,0.286078,0.48442,0.175972,0.66384,0.00861442,0.822512,0.946516,0.310075,0.213657,0.262411,0.345777,0.512307,0.928479,0.803324,0.734651,0.81118,0.593956,0.696873,0.0185084,0.845952,0.384806,0.910835,0.482204,0.717116,0.16512,0.590278,0.723032,0.311476,0.92905,0.976095,0.498867,0.469305,0.95189,0.28795,0.148469,0.475606,0.118789,0.0777165,0.106086,0.0748085,0.0314157,0.421895,0.760632,0.642516,0.422974,0.986944,0.927444,0.10263,0.459708,0.659114,0.40288,0.860022,0.677559,0.0353768,0.0307024,0.580865,0.397339,0.313225,0.992985,0.0201175,0.726512,0.725505,0.826864,0.0416915,0.353857,0.807029,0.763817,0.733815,0.824588,0.0493515,0.985384,0.491057,0.232345,0.148317,0.445891,0.676047,0.477778,0.756273,0.851009,0.914077,0.0311697,0.037169,0.0529719,0.00533229,0.969561,0.102641,0.183119,0.457986,0.466342,0.989445,0.402442,0.942317,0.118544,0.569034,0.464909,0.326099,0.564779,0.685885,0.859908,0.193707,0.498013,0.999336,0.510046,0.680731,0.489696,0.466837,0.289493,0.212291,0.795489,0.0640171,0.465541,0.179182,0.804999,0.977327,0.681283,0.838948,0.178266,0.225114,0.536107,0.353107,0.147279,0.121578,0.394143,0.179351,0.871941,0.42436,0.888572,0.160529,0.934436,0.290424,0.805924,0.948385,0.74217,0.138068,0.0824983,0.734527,0.0412897,0.886077,0.0979787,0.733811,0.324488,0.417903,0.850022,0.521645,0.378907,0.931745,0.0617288,0.353957,0.299263,0.932237,0.79929,0.947593,0.217904,0.00279462,0.0464283,0.0305012,0.255398,0.995991,0.300574,0.61452,0.0640718,0.726029,0.00373411,0.330676,0.923934,0.774244,0.100397,0.94926,0.231725,0.479119,0.90979,0.916179,0.180862,0.649441,0.389624,0.518995,0.912602,0.454372,0.022655,0.302304,0.127183,0.116996,0.0928657,0.0278038,0.815474,0.153646,0.455107,0.0755715,0.686497,0.258653,0.691558,0.307628,0.817213,0.985872,0.766057,0.697034,0.61783,0.250292,0.00145137,0.413379,0.738103,0.979372,0.395373,0.72638,0.403434,0.158159,0.672876,0.204852,0.653847,0.666526,0.752065,0.737833,0.389477,0.517656,0.728955,0.30323,0.977556,0.791208,0.557145,0.287164,0.216504,0.587238,0.944781,0.27492,0.2269,0.384662,0.193865,0.213192,0.876947,0.945749,0.676978,0.471041,0.964408,0.175823,0.549927,0.0958534,0.987074,0.721867,0.124281,0.0403854,0.857672,0.691956,0.802498,0.728727,0.0619329,0.32393,0.788751,0.504366,0.553786,0.869131,0.946391,0.684598,0.513397,0.690933,0.64922,0.500545,0.962538,0.230264,0.253727,0.826417,0.327889,0.0172859,0.381755,0.931729,0.311932,0.595637,0.62784,0.638387,0.916846,0.840319,0.68644,0.39153,0.550063,0.325159,0.822234,0.32659,0.991145,0.516078,0.215497,0.868832,0.458264,0.428401,0.767713,0.80539,0.557785,0.8309,0.42378,0.273893,0.987241,0.202156,0.760622,0.0428216,0.391832,0.524036,0.0201304,0.135533,0.85971,0.884147,0.64229,0.0241035,0.72266,0.725076,0.044723,0.449984,0.688428,0.0209724,0.468466,0.354909,0.145156,0.312266,0.192426,0.605849,0.422104,0.493813,0.717126,0.70858,0.545143,0.935629,0.310838,0.980123,0.847172,0.503877,0.25376,0.751042,0.84417,0.453747,0.203352,0.273042,0.996517,0.578185,0.711217,0.0883007,0.198644,0.651797,0.511399,0.908971,0.0200415,0.0527819,0.906702,0.0687571,0.728027,0.178018,0.891635,0.448548,0.547913,0.311776,0.438198,0.0685499,0.878803,0.495328,0.770152,0.847492,0.212159,0.348405,0.904904,0.892188,0.516415,0.71624,0.34534,0.561826,0.312834,0.777569,0.330957,0.264681,0.864168,0.895267,0.211312,0.357561,0.233859,0.333384,0.702492,0.833357,0.409045,0.222235,0.96658,0.310905,0.0697057,0.532174,0.857901,0.90785,0.46278,0.173118,0.620139,0.067234,0.777468,0.314844,0.613165,0.0325376,0.746637,0.0255609,0.982656,0.132746,0.224753,0.251727,0.460918,0.808009,0.10086,0.676947,0.119241,0.186334,0.27105,0.523897,0.609567,0.728433,0.715011,0.13941,0.275924,0.945856,0.604061,0.408086,0.644085,0.768796,0.105372,0.283319,0.808587,0.0864574,0.395208,0.0616601,0.921845,0.177245,0.802111,0.644603,0.171961,0.448672,0.370594,0.597222,0.719387,0.282083,0.835835,0.0227214,0.697927,0.735567,0.688584,0.235699,0.689233,0.378104,0.972739,0.849719,0.946805,0.833029,0.488746,0.869686,0.18361,0.723715,0.826143,0.445482,0.167241,0.310461,0.629431,0.0169089,0.811502,0.221173,0.784714,0.0458246,0.135803,0.103751,0.272259,0.0253625,0.0304381,0.889118,0.769116,0.0735615,0.58757,0.638873,0.62863,0.747831,0.786295,0.595636,0.23641,0.455662,0.203336,0.0544167,0.458705,0.498742,0.388273,0.0165881,0.851174,0.342715,0.412609,0.663462,0.00421268,0.125981,0.12358,0.379618,0.774289,0.0145577,0.132071,0.106973,0.841082,0.615406,0.506116,0.0996951,0.818765,0.869434,0.465252,0.178355,0.697702,0.731813,0.876078,0.337953,0.425925,0.0288385,0.823118,0.0243354,0.648684,0.631233,0.647694,0.474553,0.236997,0.612085,0.383734,0.626222,0.0583387,0.413607,0.629775,0.348907,0.884014,0.429852,0.168649,0.431422,0.904142,0.775993,0.665958,0.321111,0.250527,0.54432,0.363032,0.0965991,0.745853,0.440727,0.617302,0.288887,0.392284,0.124373,0.974552,0.418391,0.984568,0.592503,0.585532,0.308154,0.634892,0.233281,0.849915,0.651228,0.0291959,0.729411,0.961361,0.900236,0.0067094,0.750913,0.542372,0.218843,0.94601,0.546461,0.350941,0.494351,0.60506,0.953172,0.0911298,0.506577,0.47116,0.109872,0.561727,0.469468,0.989771,0.76478,0.0647509,0.00722909,0.323943,0.92545,0.712862,0.62595,0.49181,0.329414,0.293784,0.81127,0.789692,0.946625,0.458655,0.0206918,0.296088,0.572979,0.37688,0.781309,0.100835,0.684304,0.944654,0.476682,0.527488,0.196908,0.748688,0.249633,0.783878,0.653698,0.421352,0.426866,0.0567107,0.923684,0.0641008,0.316071,0.105759,0.109273,0.70462,0.036749,0.163914,0.91912,0.386547,0.650187,0.270097,0.646237,0.550505,0.604932,0.434735,0.169742,0.490815,0.896959,0.744208,0.373955,0.133879,0.871958,0.641414,0.73979,0.150799,0.0581537,0.37477,0.694588,0.341882,0.216758,0.186406,0.982281,0.410512,0.871741,0.324962,0.823206,0.745923,0.524491,0.277796,0.147165,0.0415589,0.220491,0.236156,0.478705,0.0374908,0.031913,0.21685,0.315633,0.429363,0.856081,0.747411,0.386025,0.656064,0.406985,0.276825,0.633375,0.411128,0.208926,0.554562,0.434589,0.358907,0.424617,0.323824,0.689709,0.057982,0.592059,0.692787,0.355155,0.107378,0.360903,0.885616,0.172395,0.445383,0.0427093,0.793626,0.693665,0.658547,0.411606,0.967098,0.349457,0.714784,0.381281,0.845266,0.378776,0.724298,0.926975,0.0951124,0.651655,0.786272,0.324329,0.973306,0.190568,0.614443,0.148219,0.39843,0.612443,0.163935,0.808919,0.199579,0.382309,0.904927,0.586404,0.544527,0.416349,0.536939,0.279269,0.00514627,0.175609,0.733837,0.706035,0.434439,0.37589,0.227984,0.0147351,0.384646,0.0766272,0.462984,0.907299,0.816977,0.489046,0.147587,0.0847731,0.308582,0.00181174,0.360635,0.75422,0.953317,0.575793,0.3799,0.826896,0.0765427,0.4559,0.221635,0.579394,0.0167551,0.149326,0.543893,0.992172,0.764824,0.866413,0.697955,0.0779809,0.486288,0.344779,0.332375,0.227374,0.0946656,0.769217,0.424707,0.691357,0.735342,0.480055,0.00550604,0.240684,0.233602,0.757016,0.300677,0.0780928,0.249045,0.318792,0.73331,0.319829,0.486457,0.856213,0.602107,0.0341449,0.847083,0.498038,0.819829,0.878757,0.910353,0.714537,0.909491,0.357728,0.612553,0.997547,0.680317,0.46752,0.10692,0.201094,0.621161,0.968603,0.0264282,0.489698,0.556704,0.962269,0.795575,0.137518,0.15952,0.0215539,0.305811,0.744822,0.186789,0.0583373,0.51153,0.136944,0.0184767,0.0974561,0.24154,0.662739,0.532584,0.658654,0.425674,0.605553,0.336888,0.561298,0.0552449,0.950252,0.945382,0.71031,0.403459,0.604725,0.587091,0.577304,0.575022,0.871974,0.860122,0.718357,0.261241,0.202404,0.338836,0.670466,0.557415,0.745894,0.427218,0.887445,0.616349,0.6648,0.257381,0.703544,0.154066,0.962825,0.593233,0.0233967,0.276453,0.304248,0.242431,0.0737158,0.39268,0.596153,0.0487391,|0.47423,0.668459,0.930238,0.270947,0.403964,0.19571,0.113201,0.739214,0.794765,0.169579,0.354487,0.852322,0.645462,0.797155,0.444415,0.716961,0.392603,0.805572,0.532049,0.591089,0.0483021,0.166127,0.696626,0.279132,0.617904,0.990161,0.417139,0.508771,0.803064,0.798494,0.762456,0.784327,0.851191,0.8772,0.330606,0.118801,0.862114,0.0412874,0.882571,0.474611,0.493334,0.997758,0.693128,0.102851,0.650308,0.67794,0.972689,0.355115,0.0290389,0.125105,0.502084,0.020768,0.210117,0.235463,0.28657,0.98855,0.0951102,0.578017,0.782689,0.110077,0.357644,0.2537,0.844192,0.970046,0.054514,0.676775,0.654535,0.534828,0.536353,0.834091,0.38878,0.15919,0.307737,0.482406,0.181515,0.682786,0.728594,0.202072,0.635021,0.278502,0.863535,0.0971118,0.587085,0.960952,0.977354,0.296901,0.896823,0.557029,0.215177,0.856885,0.664342,0.634603,0.511302,0.236513,0.666098,0.450878,0.947189,0.0991249,0.355722,0.157606,0.179151,0.646697,0.664337,0.770761,0.469015,0.0483727,0.0276804,0.726042,0.0271994,0.929938,0.244924,0.933414,0.501102,0.256126,0.700774,0.0207497,0.648167,0.00279212,0.141718,0.985435,0.27594,0.690607,0.392333,0.327998,0.408119,0.314643,0.764327,0.653689,0.872257,0.642629,0.138013,0.67131,0.856798,0.251064,0.361273,0.551881,0.979617,0.770278,0.104149,0.551243,0.782783,0.397681,0.243275,0.679168,0.717749,0.472095,0.369393,0.295348,0.896688,0.761509,0.848152,0.757728,0.506802,0.0226269,0.00301415,0.402309,0.0706403,0.921787,0.51404,0.390922,0.803483,0.222237,0.140176,0.903031,0.940452,0.245086,0.327519,0.698804,0.177851,0.377217,0.314889,0.773175,0.649568,0.998253,0.0679079,0.783882,0.421147,0.827799,0.783973,0.630652,0.332602,0.850411,0.17274,0.947735,0.228507,0.262959,0.952848,0.727143,0.417101,0.292027,0.187944,0.432834,0.996459,0.751625,0.391766,0.562838,0.62001,0.492843,0.719595,0.433688,0.875452,0.0307995,0.494716,0.448109,0.380866,0.330392,0.670293,0.179681,0.408365,0.59792,0.0203703,0.354428,0.981719,0.484449,0.0572217,0.653822,0.126598,0.6466,0.262564,0.923383,0.0445659,0.0904587,0.339421,0.260239,0.370448,0.859617,0.395343,0.487254,0.973709,0.438727,0.056528,0.202144,0.483181,0.283886,0.557135,0.238533,0.045228,0.498411,0.799573,0.447469,0.713877,0.914197,0.643425,0.172563,0.218018,0.892572,0.923077,0.0221193,0.857389,0.401744,0.950338,0.263,0.903378,0.455966,0.108053,0.610255,0.701931,0.00758725,0.802686,0.724229,0.588108,0.894188,0.457948,0.691956,0.991059,0.256639,0.436426,0.757982,0.260228,0.0195828,0.319699,0.731113,0.226767,0.996531,0.561861,0.0541548,0.139757,0.830815,0.52346,0.676926,0.75213,0.778516,0.524655,0.584424,0.578133,0.779622,0.0483158,0.883993,0.200948,0.758385,0.717523,0.969968,0.14705,0.35519,0.66586,0.484597,0.504731,0.178434,0.457472,0.237846,0.0919837,0.577112,0.348482,0.0254923,0.546875,0.174494,0.767065,0.545975,0.75023,0.546232,0.852414,0.574825,0.29285,0.193081,0.293201,0.611721,0.163105,0.968908,0.0710584,0.343401,0.517337,0.430372,0.017981,0.471042,0.514705,0.613658,0.446929,0.223677,0.117896,0.876396,0.340059,0.272781,0.108751,0.676096,0.328326,0.247114,0.088457,0.993234,0.455559,0.183183,0.299765,0.546656,0.435219,0.797747,0.396364,0.382547,0.764078,0.070399,0.548565,0.12165,0.805477,0.808122,0.0206813,0.379222,0.763266,0.26454,0.320214,0.689862,0.414187,0.757582,0.905858,0.470972,0.599969,0.953875,0.634059,0.174025,0.355661,0.470091,0.238835,0.929398,0.219157,0.662568,0.904544,0.889962,0.7269,0.875498,0.567927,0.889471,0.855762,0.803141,0.761202,0.0676489,0.900554,0.661654,0.290816,0.706732,0.0841902,0.447693,0.926717,0.586038,0.862599,0.853522,0.645759,0.848228,0.369753,0.179595,0.968996,0.314107,0.716398,0.450035,0.91815,0.421994,0.0667197,0.399935,0.125221,0.39736,0.953937,0.564333,0.952286,0.243644,0.255526,0.537338,0.82976,0.13171,0.493295,0.573917,0.527352,0.810146,0.162426,0.624928,0.787354,0.0790848,0.138367,0.172489,0.0234118,0.319687,0.751607,0.0490199,0.868104,0.0796016,0.0768942,0.294997,0.796477,0.0231188,0.144864,0.703393,0.42499,0.725139,0.640433,0.836268,0.749281,0.842891,0.377508,0.49695,0.0814338,0.451507,0.120287,0.0950303,0.98516,0.599725,0.450545,0.861562,0.422662,0.428747,0.912133,0.962607,0.657877,0.975481,0.0804648,0.705932,0.396489,0.701389,0.3202,0.120467,0.577303,0.150091,0.517222,0.136255,0.407232,0.559906,0.796297,0.159178,0.500436,0.345068,0.345141,0.0331997,0.473616,0.463685,0.0255585,0.393876,0.497542,0.880396,0.591287,0.752521,0.654601,0.260359,0.383906,0.0850797,0.970954,0.367245,0.740101,0.294882,0.696603,0.032402,0.208265,0.207585,0.531719,0.920853,0.594507,0.554095,0.499694,0.807204,0.740871,0.274137,0.323172,0.628575,0.910812,0.0860763,0.328295,0.192824,0.498449,0.228527,0.767178,0.198596,0.106405,0.401023,0.693896,0.847444,0.51998,0.146149,0.278002,0.0127975,0.843798,0.129337,0.892647,0.104142,0.00863093,0.934547,0.319748,0.517137,0.627994,0.22537,0.503733,0.198833,0.932187,0.606798,0.96854,0.673892,0.542059,0.456833,0.302788,0.5858,0.38656,0.955848,0.742684,0.343366,0.899328,0.935139,0.120859,0.137769,0.672126,0.864068,0.619666,0.181098,0.344587,0.422278,0.81942,0.295304,0.290311,0.875689,0.0055086,0.963635,0.230099,0.77086,0.973582,0.624862,0.281327,0.360678,0.180864,0.545615,0.828326,0.877519,0.583576,0.44463,0.878112,0.213972,0.343084,0.450118,0.0273088,0.80195,0.630514,0.745705,0.704107,0.855554,0.717803,0.922557,0.409376,0.645562,0.55015,0.526619,0.432971,0.272446,0.381032,0.0395066,0.901933,0.0974446,0.933886,0.729774,0.452741,0.715471,0.477794,0.820528,0.827438,0.797048,0.715346,0.87447,0.3069,0.786538,0.365873,0.930938,0.338955,0.588399,0.321036,0.0673434,0.0233775,0.277592,0.800407,0.0704048,0.150191,0.0848156,0.303668,0.317468,0.968032,0.787803,0.222767,0.0541269,0.379283,0.00419337,0.778055,0.714164,0.568641,0.692176,0.981964,0.0914128,0.111399,0.901242,0.910966,0.0917138,0.856792,0.606585,0.507998,0.17744,0.771459,0.72054,0.14176,0.522881,0.0992731,0.046049,0.167613,0.646013,0.237584,0.905601,0.0893176,0.12503,0.51337,0.438303,0.290559,0.447609,0.85558,0.477522,0.839005,0.189995,0.103461,0.668101,0.96862,0.610676,0.918048,0.56103,0.956303,0.504746,0.352094,0.550268,0.785995,0.289359,0.0450274,0.00228012,0.290913,0.733443,0.722121,0.249393,0.729799,0.717089,0.448566,0.557983,0.871928,0.898491,0.983907,0.55773,0.0774737,0.333712,0.176239,0.826702,0.886686,0.688517,0.320093,0.903447,0.163004,0.744538,0.676228,0.127806,0.30389,0.722649,0.0268611,0.872505,0.00134367,0.816009,0.535544,0.511056,0.353173,0.743347,0.86251,0.134119,0.0920682,0.90492,0.341426,0.999623,0.051847,0.0261971,0.0291187,0.473824,0.781358,0.897556,0.64765,0.0464832,0.434328,0.639466,0.898491,0.707679,0.349987,0.0293536,0.705615,0.0768177,0.561639,0.361784,0.584611,0.460499,0.235641,0.390453,0.767242,0.500661,0.687613,0.576896,0.190744,0.571272,0.129394,0.965963,0.95884,0.500389,0.307128,0.175556,0.170255,0.827991,0.723726,0.490638,0.661496,0.46751,0.340448,0.890793,0.594418,0.868877,0.471193,0.444396,0.879343,0.434925,0.700669,0.191604,0.138852,0.514797,0.775302,0.0109998,0.0969599,0.834811,0.604883,0.576368,0.811487,0.337825,0.0877349,0.236132,0.382356,0.204228,0.0399177,0.206875,0.989805,0.909023,0.753955,0.751676,0.616837,0.442341,0.39303,0.216381,0.3257,0.206061,0.953517,0.0980152,0.0391872,0.102256,0.74129,0.790191,0.151439,0.674915,0.627458,0.906604,0.746586,0.405965,0.0976018,0.824311,0.82121,0.852354,0.125313,0.999387,0.454352,0.352785,0.765723,0.501497,0.825712,0.120811,0.584875,0.64018,0.522279,0.83742,0.712864,0.343139,0.916815,0.523692,0.291395,0.86653,0.726712,0.259593,0.355597,0.473772,0.151974,0.501776,0.825424,0.450343,0.903179,0.52574,0.250479,0.0268098,0.749377,0.800834,0.116168,0.345392,0.51306,0.134683,0.212599,0.450655,0.15356,0.36638,0.878873,0.559553,0.79547,0.188233,0.744085,0.275691,0.916492,0.500463,0.486634,0.37348,0.0805205,0.603977,0.56849,0.346374,0.603061,0.893533,0.170993,0.821413,0.991903,0.82991,0.855929,0.622123,0.0936975,0.899189,0.689252,0.158652,0.799163,0.229417,0.85907,0.823612,0.257309,0.816967,0.102417,0.499918,0.362655,0.894573,0.644245,0.587196,0.145356,0.714411,0.907674,0.40508,0.357323,0.795406,0.544916,0.113007,0.537002,0.582571,0.42286,0.153585,0.0652847,0.98553,0.855246,0.248648,0.701841,0.0308897,0.813963,0.459633,0.305746,0.205445,0.501529,0.508834,0.748095,0.485242,0.585496,0.194932,0.903086,0.135921,0.344287,0.920153,0.558053,0.348424,0.411021,0.0871727,0.26397,0.382681,0.401825,0.933353,0.820278,0.132042,0.753934,0.609972,0.687119,0.663898,0.475016,0.17531,0.310306,0.461589,0.309499,0.282494,0.347101,0.566371,0.16722,0.64625,0.343545,0.755814,0.28976,0.837875,0.45216,0.405582,0.382873,0.955519,0.902912,0.56181,0.354774,0.855518,0.719016,0.445944,0.230366,0.840063,0.46332,0.957765,0.940252,0.564385,0.192007,0.0797547,0.318511,0.938274,0.341641,0.13075,0.418566,0.65548,0.250576,0.892522,0.677291,0.579938,0.910019,0.64303,0.885423,0.332818,0.13281,0.417526,0.681636,0.560598,0.18339,0.343848,0.536143,0.742756,0.943237,0.585058,0.32212,0.112383,0.250795,0.415502,0.972251,0.951307,0.531733,0.072755,0.0996886,0.582738,0.821241,0.175701,|0.253245,0.35741,0.15512,0.864467,0.851765,0.505374,0.357628,0.154203,0.0356614,0.708647,0.508369,0.741095,0.590923,0.871273,0.390792,0.206101,0.652995,0.754832,0.135793,0.244763,0.443546,0.451176,0.546805,0.886074,0.551688,0.95029,0.0323952,0.215269,0.524299,0.25555,0.870229,0.296844,0.690187,0.251581,0.255682,0.164012,0.0677941,0.0433869,0.470699,0.426239,0.221974,0.449955,0.725279,0.713587,0.0450234,0.564461,0.127127,0.33432,0.170012,0.922274,0.381067,0.328297,0.872903,0.634749,0.180452,0.740931,0.372391,0.400807,0.616161,0.108346,0.86285,0.376688,0.714505,0.337856,0.85396,0.0697254,0.183089,0.817645,0.767361,0.253242,0.811302,0.379049,0.495809,0.870149,0.420506,0.326976,0.174621,0.248324,0.501693,0.486833,0.0702811,0.554235,0.835599,0.217243,0.871525,0.299535,0.802362,0.731672,0.0191277,0.090264,0.736121,0.181346,0.0347329,0.719215,0.467728,0.258319,0.308658,0.185497,0.820527,0.860607,0.735606,0.567391,0.33666,0.683402,0.751343,0.648021,0.49338,0.886978,0.45565,0.537396,0.276933,0.154926,0.119321,0.936745,0.00188941,0.425516,0.0413476,0.623974,0.834168,0.863651,0.382156,0.429901,0.392749,0.415749,0.0333762,0.40397,0.778245,0.948902,0.164149,0.552041,0.432645,0.412963,0.955694,0.743326,0.18703,0.550934,0.874596,0.719909,0.20848,0.496922,0.696276,0.388044,0.757567,0.489825,0.682165,0.709892,0.843527,0.648036,0.746503,0.565974,0.804202,0.669761,0.539734,0.00514913,0.186483,0.38458,0.686543,0.720721,0.456008,0.71226,0.479501,0.947318,0.400781,0.837061,0.405192,0.0314273,0.716318,0.985461,0.483663,0.429235,0.845329,0.195392,0.58077,0.0487294,0.301753,0.961138,0.459118,0.159567,0.0686375,0.169335,0.400188,0.993647,0.238883,0.273266,0.0903469,0.194986,0.813513,0.117857,0.862254,0.787722,0.549502,0.139221,0.00244945,0.152341,0.536071,0.800375,0.949175,0.805925,0.614235,0.508195,0.873653,0.734268,0.0250185,0.35476,0.169886,0.728942,0.298433,0.794233,0.0565979,0.3005,0.642641,0.558208,0.804321,0.918013,0.99992,0.0822235,0.0214533,0.258816,0.335252,0.811884,0.651155,0.709535,0.42993,0.0603607,0.187443,0.0258293,0.971069,0.198737,0.927592,0.335065,0.0607657,0.799819,0.648545,0.931836,0.51007,0.185748,0.769152,0.511514,0.821923,0.165315,0.307302,0.0365677,0.525686,0.141101,0.802275,0.0308745,0.117206,0.0976139,0.818887,0.122937,0.647583,0.766624,0.679598,0.944559,0.714571,0.146992,0.524801,0.76655,0.544995,0.136774,0.36664,0.936304,0.433957,0.497748,0.0270316,0.61713,0.475694,0.260249,0.140807,0.937655,0.720517,0.406182,0.149887,0.421035,0.0211973,0.546648,0.535159,0.48185,0.853244,0.900045,0.0365191,0.566147,0.0127813,0.0975208,0.826136,0.677252,0.0920364,0.114279,0.745997,0.63935,0.885689,0.702842,0.114118,0.239797,0.798857,0.0467142,0.717215,0.665477,0.485146,0.905482,0.843448,0.659765,0.347027,0.0796803,0.795605,0.463135,0.170639,0.84365,0.21091,0.213103,0.270764,0.962393,0.321597,0.535646,0.0947125,0.141762,0.803874,0.1449,0.853608,0.166686,0.906363,0.59043,0.301921,0.882705,0.550419,0.961683,0.277447,0.708011,0.86799,0.363919,0.927699,0.253612,0.710944,0.221704,0.113531,0.570219,0.0255652,0.0139055,0.0592551,0.993218,0.510044,0.121628,0.980169,0.516576,0.0524487,0.202537,0.0831987,0.97293,0.671713,0.205328,0.390184,0.472477,0.507252,0.7304,0.580537,0.390037,0.226968,0.0408959,0.292714,0.29196,0.490099,0.569472,0.0685915,0.99477,0.859059,0.286368,0.530536,0.215918,0.81706,0.496501,0.319332,0.287065,0.536411,0.659123,0.337195,0.273372,0.607946,0.922073,0.242244,0.965017,0.00330871,0.522576,0.959028,0.258503,0.263269,0.502738,0.878403,0.861355,0.248206,0.647763,0.225343,0.200937,0.537831,0.146686,0.0975152,0.0736139,0.686906,0.653085,0.569137,0.139043,0.302214,0.0249107,0.22492,0.671911,0.250087,0.101186,0.200072,0.252813,0.575681,0.449193,0.324603,0.7432,0.924727,0.684883,0.750599,0.277367,0.398844,0.28003,0.502773,0.99292,0.107198,0.3236,0.720223,0.852392,0.800734,0.695387,0.221567,0.0829988,0.723845,0.305333,0.0626988,0.560123,0.766972,0.643472,0.504162,0.0225916,0.752492,0.202556,0.593779,0.890488,0.960589,0.320642,0.300467,0.216802,0.456921,0.855895,0.221489,0.727171,0.335363,0.878053,0.358798,0.778955,0.646711,0.154478,0.121011,0.859961,0.926921,0.627674,0.184157,0.469142,0.0696932,0.316009,0.183424,0.223271,0.779453,0.809406,0.464953,0.062986,0.990451,0.305047,0.0741799,0.4273,0.308365,0.392846,0.069082,0.340077,0.77061,0.0569625,0.718677,0.711606,0.279103,0.382528,0.635775,0.734616,0.0841232,0.943811,0.0351356,0.442571,0.561815,0.323771,0.742662,0.500493,0.568109,0.980713,0.726825,0.206991,0.954917,0.792405,0.869677,0.831346,0.556329,0.651789,0.827727,0.911368,0.906702,0.674911,0.318213,0.484015,0.273685,0.432879,0.742523,0.845952,0.493125,0.431875,0.896968,0.429803,0.413324,0.794765,0.905825,0.303298,0.305509,0.370779,0.928991,0.396402,0.637344,0.697641,0.647442,0.368862,0.485593,0.106368,0.934661,0.702009,0.635725,0.639656,0.425085,0.0693901,0.282698,0.765431,0.582611,0.248488,0.538185,0.262395,0.543377,0.346455,0.196705,0.265772,0.709661,0.96715,0.370078,0.814794,0.0304089,0.65856,0.407396,0.216546,0.668438,0.73371,0.180026,0.934238,0.5038,0.888381,0.369617,0.49231,0.443421,0.24375,0.58081,0.458704,0.988954,0.611203,0.941926,0.638091,0.678342,0.604789,0.445068,0.0332151,0.987607,0.17535,0.586919,0.107326,0.98613,0.0977895,0.871379,0.819984,0.73026,0.0464428,0.954071,0.62576,0.913272,0.485569,0.841244,0.162382,0.0435176,0.20499,0.860174,0.149584,0.835224,0.25646,0.938537,0.552859,0.959661,0.352253,0.279144,0.853512,0.691064,0.598795,0.179026,0.0199819,0.170374,0.99163,0.838852,0.179756,0.277356,0.787643,0.200558,0.996234,0.161883,0.781354,0.550815,0.0732248,0.205467,0.0824319,0.468432,0.19524,0.83112,0.139729,0.194743,0.573498,0.455265,0.363754,0.059245,0.856532,0.341322,0.488344,0.581047,0.423267,0.836101,0.894217,0.129833,0.669611,0.95865,0.602857,0.658321,0.866292,0.467894,0.580771,0.45473,0.197858,0.994376,0.210094,0.259298,0.591156,0.857957,0.514133,0.434031,0.838599,0.224975,0.466654,0.45829,0.459395,0.821752,0.845783,0.35695,0.323407,0.74577,0.924189,0.136578,0.104368,0.9973,0.337913,0.237163,0.461798,0.996569,0.0198481,0.548844,0.874142,0.971547,0.0313339,0.0736009,0.441734,0.542256,0.413758,0.809595,0.809796,0.392226,0.303427,0.187189,0.542912,0.861771,0.458091,0.710306,0.558943,0.807226,0.453363,0.70245,0.805031,0.0459171,0.222105,0.406516,0.831905,0.742186,0.699542,0.936837,0.554217,0.0984433,0.966483,0.627537,0.552817,0.534846,0.476787,0.990008,0.764405,0.0859314,0.00465697,0.00445777,0.0479299,0.0323474,0.609677,0.720789,0.891486,0.953284,0.605706,0.444568,0.708539,0.506949,0.77066,0.612881,0.31672,0.197708,0.909673,0.700266,0.329517,0.675462,0.0506186,0.782708,0.335406,0.226073,0.226082,0.877849,0.928744,0.822136,0.112244,0.706994,0.605945,0.0317387,0.253616,0.00498199,0.854858,0.157908,0.110885,0.927459,0.510999,0.805961,0.962793,0.907503,0.0722762,0.234806,0.6062,0.0779215,0.859789,0.148134,0.629061,0.0459189,0.499627,0.575043,0.303359,0.225061,0.139562,0.0903922,0.154091,0.210777,0.495378,0.194008,0.912148,0.857934,0.0853837,0.206804,0.912927,0.465373,0.884619,0.798418,0.156518,0.383717,0.450899,0.835622,0.905589,0.722953,0.690657,0.122528,0.675529,0.270612,0.212252,0.516532,0.130676,0.0958616,0.941806,0.0351968,0.493647,0.132597,0.961038,0.237032,0.0714331,0.119617,0.245261,0.221531,0.764593,0.535375,0.531165,0.501971,0.545607,0.468678,0.995002,0.0290954,0.702905,0.596685,0.581832,0.235571,0.641886,0.798017,0.401902,0.872861,0.570639,0.477123,0.950102,0.662444,0.347502,0.0477812,0.264915,0.17005,0.796735,0.779011,0.698742,0.602159,0.873253,0.425766,0.630487,0.780176,0.630983,0.625529,0.514872,0.538208,0.349464,0.0100245,0.977895,0.117212,0.615366,0.940322,0.363663,0.423766,0.192253,0.789483,0.102927,0.682027,0.562708,0.938354,0.974626,0.672715,0.739957,0.0381546,0.565157,0.100113,0.363578,0.799807,0.0761356,0.714132,0.770059,0.759639,0.48809,0.581575,0.0638675,0.32273,0.814752,0.845692,0.187836,0.465882,0.522948,0.790671,0.869569,0.835724,0.921183,0.099054,0.222839,0.553378,0.50314,0.186997,0.228734,0.301697,0.516623,0.499085,0.658133,0.780647,0.817945,0.492347,0.171036,0.068336,0.0613487,0.321901,0.873212,0.389617,0.0448502,0.673275,0.158189,0.777609,0.900943,0.357288,0.499464,0.85665,0.949744,0.651952,0.135018,0.631435,0.645709,0.062402,0.654048,0.437049,0.487823,0.385948,0.242969,0.943248,0.478277,0.473151,0.282297,0.323136,0.163723,0.233683,0.779981,0.280822,0.944674,0.862613,0.2857,0.587669,0.378308,0.759848,0.278363,0.717292,0.203591,0.640898,0.757377,0.884329,0.977461,0.397316,0.0355423,0.939309,0.43789,0.798319,0.0168125,0.847434,0.918031,0.118951,0.956177,0.421667,0.391086,0.622437,0.0866492,0.725955,0.726309,0.488989,0.834367,0.663101,0.236166,0.704921,0.363541,0.652756,0.0808453,0.340676,0.593939,0.192663,0.252087,0.30988,0.744976,0.133088,0.412435,0.250901,0.0545046,0.638469,0.763848,0.375579,0.801294,0.7958,0.181936,0.105617,0.469485,0.852356,0.713672,0.50264,0.736783,0.691451,0.863231,0.853607,0.974428,0.367286,0.463706,0.627717,0.230973,0.856396,0.93623,0.0207233,0.0862006,0.493314,0.83836,0.567635,0.404899,|0.331572,0.783685,0.213341,0.751301,0.629543,0.145946,0.663769,0.191009,0.812667,0.388802,0.866123,0.452783,0.678009,0.738463,0.491686,0.630852,0.275732,0.208333,0.844828,0.91187,0.389275,0.773728,0.223765,0.334817,0.82227,0.855866,0.063764,0.744323,0.843881,0.919883,0.357422,0.427319,0.341054,0.336879,0.77498,0.4611,0.423439,0.68367,0.564423,0.714692,0.12936,0.690129,0.735916,0.240073,0.0683227,0.906726,0.950697,0.576067,0.361815,0.696433,0.623078,0.462392,0.00122011,0.798847,0.611931,0.726887,0.152893,0.438833,0.597004,0.640878,0.0207427,0.758111,0.953407,0.981731,0.4227,0.947259,0.459832,0.667366,0.938381,0.713662,0.870926,0.91393,0.569574,0.460192,0.372126,0.578231,0.160708,0.278384,0.743256,0.859526,0.445052,0.196791,0.56904,0.374476,0.336082,0.861378,0.460088,0.316298,0.253627,0.944354,0.367687,0.786116,0.436096,0.231793,0.886572,0.69748,0.697462,0.802434,0.88985,0.656647,0.0573618,0.557818,0.881975,0.497944,0.179497,0.66036,0.00737005,0.703688,0.504157,0.956464,0.867211,0.236857,0.409246,0.469504,0.338852,0.562382,0.461467,0.533537,0.869955,0.134185,0.792596,0.705747,0.130035,0.240871,0.343195,0.162533,0.879495,0.371015,0.644235,0.546619,0.779555,0.399749,0.449357,0.109823,0.0860412,0.236945,0.612925,0.226547,0.457858,0.300955,0.365945,0.697213,0.10136,0.549924,0.617519,0.463877,0.872757,0.0517004,0.521051,0.134546,0.256534,0.882534,0.117364,0.830826,0.113991,0.830309,0.908286,0.919811,0.168049,0.489,0.283825,0.626072,0.0184391,0.215577,0.807072,0.1126,0.5075,0.231721,0.301374,0.847643,0.835357,0.91951,0.518415,0.481023,0.380605,0.572215,0.915541,0.140978,0.363457,0.458229,0.781889,0.49611,0.869413,0.232796,0.691064,0.130613,0.363032,0.139998,0.251086,0.719479,0.337726,0.842756,0.91804,0.644438,0.955542,0.671143,0.140147,0.0616139,0.0809676,0.580122,0.804519,0.208919,0.0080291,0.466109,0.910286,0.144908,0.098949,0.778885,0.822982,0.392314,0.192584,0.91106,0.0567117,0.470909,0.628793,0.527556,0.115941,0.396671,0.301244,0.975907,0.924689,0.935884,0.447189,0.839913,0.37037,0.45362,0.168324,0.500054,0.795824,0.995143,0.701801,0.738637,0.429019,0.521417,0.521957,0.868389,0.206458,0.294759,0.204516,0.948311,0.220516,0.153739,0.613401,0.497649,0.0586711,0.81729,0.559905,0.00886971,0.162759,0.487478,0.809503,0.875971,0.608152,0.175799,0.15521,0.775221,0.285038,0.214225,0.567508,0.608414,0.296551,0.411982,0.506917,0.257182,0.464957,0.672118,0.931657,0.0163516,0.413829,0.439895,0.11693,0.82585,0.367231,0.877978,0.858844,0.318713,0.593831,0.501674,0.0600856,0.860992,0.415331,0.876144,0.609695,0.603437,0.759058,0.42366,0.411789,0.251195,0.582642,0.431459,0.0192451,0.971865,0.554607,0.584057,0.059979,0.390681,0.642003,0.336797,0.458864,0.932605,0.00126386,0.507411,0.785854,0.555853,0.856549,0.979291,0.550105,0.847086,0.83029,0.313758,0.618337,0.652554,0.737445,0.758405,0.857732,0.456826,0.786511,0.154648,0.89711,0.60248,0.890132,0.565004,0.530172,0.285998,0.442871,0.775466,0.967914,0.0788179,0.691054,0.266059,0.628125,0.76109,0.628754,0.877943,0.617123,0.440064,0.547287,0.282675,0.693664,0.959596,0.273794,0.55777,0.171181,0.453336,0.255897,0.171063,0.440577,0.548165,0.0318879,0.0303899,0.837354,0.252498,0.881613,0.996404,0.211523,0.363459,0.21247,0.382694,0.94146,0.987608,0.691321,0.600152,0.274841,0.0708545,0.361305,0.0504747,0.559223,0.569011,0.779731,0.543908,0.687919,0.546269,0.819103,0.0129462,0.984934,0.986768,0.916955,0.616146,0.532163,0.860765,0.218082,0.310163,0.521293,0.90181,0.684436,0.892345,0.832301,0.803964,0.130214,0.554442,0.849358,0.803358,0.241797,0.278258,0.427506,0.734026,0.218511,0.375226,0.394755,0.777067,0.576541,0.581566,0.716006,0.495687,0.239378,0.620898,0.627535,0.49788,0.96586,0.697913,0.675662,0.882746,0.116234,0.0293532,0.485965,0.71249,0.400438,0.283739,0.503399,0.440227,0.0906891,0.904452,0.271527,0.0598801,0.0166978,0.812846,0.956618,0.844245,0.47883,0.696771,0.550878,0.0459904,0.415864,0.16396,0.833429,0.424917,0.625857,0.495468,0.801791,0.896676,0.288092,0.638033,0.488802,0.824047,0.822114,0.639789,0.566933,0.827087,0.153327,0.0483013,0.270729,0.483411,0.647383,0.126337,0.319514,0.721779,0.946255,0.133777,0.236446,0.632114,0.100256,0.747803,0.281858,0.237679,0.76701,0.334521,0.345853,0.46457,0.0976632,0.454159,0.842769,0.205733,0.54666,0.537569,0.538801,0.138305,0.752945,0.261841,0.981249,0.204406,0.56325,0.409247,0.751336,0.20099,0.418412,0.356949,0.474489,0.470837,0.567811,0.178481,0.844728,0.404991,0.477198,0.453165,0.494964,0.228486,0.702258,0.280711,0.210317,0.0140249,0.296622,0.184215,0.697411,0.527943,0.056549,0.225412,0.577791,0.510572,0.484534,0.594519,0.0441239,0.331903,0.612037,0.250873,0.990589,0.347369,0.571462,0.0301573,0.402062,0.948325,0.0648598,0.920676,0.477862,0.0229325,0.182849,0.499528,0.203811,0.165824,0.995277,0.808779,0.798567,0.0468026,0.0387858,0.952993,0.128918,0.57596,0.0301984,0.495038,0.4221,0.317375,0.88832,0.309251,0.553988,0.656343,0.811746,0.176093,0.20608,0.352518,0.680037,0.712561,0.648754,0.498968,0.919257,0.327708,0.335392,0.719742,0.507655,0.619417,0.271458,0.513757,0.635641,0.46747,0.724559,0.918165,0.647419,0.366646,0.284716,0.179841,0.427226,0.371482,0.460037,0.478225,0.394946,0.361315,0.240654,0.76794,0.403012,0.535399,0.215911,0.117137,0.625039,0.216686,0.251136,0.0350047,0.0310124,0.426268,0.611555,0.896007,0.155871,0.957812,0.503339,0.0333589,0.28954,0.948194,0.335799,0.454501,0.481644,0.134192,0.226195,0.0404704,0.278608,0.719282,0.0245078,0.608132,0.891363,0.495815,0.409272,0.717381,0.043157,0.25128,0.196835,0.854623,0.923279,0.634009,0.17888,0.36148,0.567263,0.687834,0.937284,0.0141156,0.23279,0.109405,0.959562,0.136054,0.8385,0.584805,0.271201,0.0791624,0.835794,0.267967,0.506836,0.741804,0.206457,0.16748,0.156172,0.81273,0.673184,0.371573,0.37965,0.472119,0.571199,0.533296,0.118276,0.802965,0.483599,0.599849,0.849505,0.914561,0.0456339,0.712491,0.382793,0.897902,0.021694,0.671341,0.962841,0.428337,0.783144,0.912595,0.398348,0.467482,0.586978,0.976019,0.221238,0.0852774,0.366753,0.812815,0.216924,0.359473,0.93544,0.107518,0.915174,0.286537,0.0365006,0.513646,0.284324,0.335859,0.505188,0.402491,0.45069,0.0690402,0.678889,0.0991802,0.237577,0.287842,0.151466,0.88743,0.588605,0.415265,0.413865,0.916811,0.231848,0.0143728,0.404679,0.272961,0.0438443,0.724061,0.776169,0.113603,0.788629,0.666853,0.611025,0.727021,0.46472,0.704455,0.0980151,0.752683,0.874997,0.915808,0.00684804,0.16802,0.301276,0.0796136,0.821165,0.925006,0.86166,0.688338,0.740431,0.346782,0.274989,0.698555,0.0177041,0.560173,0.107528,0.699814,0.368662,0.423612,0.039439,0.519863,0.593243,0.0233944,0.15005,0.404537,0.386486,0.438421,0.879726,0.405944,0.817013,0.234268,0.412737,0.998556,0.390399,0.792585,0.250749,0.488218,0.302561,0.719992,0.862405,0.721531,0.519594,0.105152,0.350376,0.412939,0.525141,0.541897,0.610293,0.662014,0.966194,0.609103,0.931987,0.0492191,0.97612,0.505783,0.951732,0.934956,0.89822,0.776853,0.757643,0.0856955,0.540599,0.708654,0.390732,0.769354,0.241183,0.221948,0.673774,0.886207,0.504341,0.767744,0.220528,0.712992,0.0242581,0.281612,0.217751,0.362021,0.687653,0.256784,0.503221,0.944791,0.388239,0.924271,0.251451,0.185992,0.255088,0.674011,0.396505,0.646723,0.989011,0.79277,0.822739,0.30538,0.829818,0.0976635,0.19353,0.545896,0.925971,0.630028,0.606641,0.221441,0.572545,0.685232,0.0265757,0.140602,0.874233,0.678804,0.89337,0.707154,0.341676,0.901529,0.440017,0.372415,0.743521,0.567981,0.841072,0.326081,0.839499,0.855998,0.472119,0.462412,0.640327,0.271701,0.21946,0.483081,0.412252,0.705912,0.65667,0.267104,0.501915,0.462067,0.159003,0.0570381,0.518513,0.111489,0.63479,0.445722,0.623282,0.689258,0.233636,0.88569,0.695728,0.7268,0.267006,0.952841,0.78618,0.0900062,0.336841,0.0430702,0.106524,0.0383834,0.702969,0.142781,0.0562704,0.924342,0.112135,0.997903,0.971172,0.917588,0.50302,0.920054,0.381505,0.703475,0.308362,0.437873,0.200439,0.312439,0.985358,0.0285593,0.213178,0.243563,0.395257,0.147142,0.93926,0.141133,0.974339,0.703794,0.00927907,0.643782,0.20646,0.910169,0.726829,0.71299,0.809651,0.205393,0.594815,0.00566894,0.314722,0.428247,0.058369,0.0689416,0.654746,0.72226,0.905657,0.172976,0.853569,0.383047,0.497814,0.223825,0.433787,0.343802,0.823226,0.645235,0.0887295,0.145033,0.126991,0.245341,0.277142,0.0362337,0.571513,0.887582,0.869144,0.829609,0.0593411,0.0428867,0.889886,0.913645,0.573754,0.479431,0.677062,0.779521,0.292453,0.191545,0.133308,0.235342,0.947497,0.0596845,0.318638,0.946705,0.11545,0.410623,0.185406,0.909639,0.242436,0.433548,0.860056,0.694879,0.725786,0.326229,0.419434,0.187946,0.457346,0.991572,0.624829,0.160249,0.0716352,0.293649,0.526627,0.0406455,0.616426,0.389958,0.493777,0.71395,0.614058,0.780034,0.691068,0.928126,0.87053,0.847253,0.58712,0.710564,0.435274,0.0387074,0.542874,0.335711,0.818837,0.523581,0.130919,0.988805,0.648547,0.247907,0.966692,0.427333,0.357372,0.17186,0.819669,0.121132,0.840597,0.430968,0.592422,0.42812,0.34652,0.013577,0.264557,0.961796,0.969943,0.69971,0.57479,0.164824,0.95777,0.489625,0.472544,0.0324392,|0.606035,0.566326,0.795812,0.498141,0.603993,0.758762,0.245396,0.862914,0.536241,0.147053,0.295533,0.397948,0.0496557,0.406491,0.704828,0.793721,0.00387144,0.892688,0.130516,0.245704,0.0133521,0.179314,0.940805,0.864136,0.302211,0.149324,0.294617,0.11083,0.385396,0.8896,0.652283,0.464408,0.0224794,0.621309,0.955575,0.200714,0.374768,0.766169,0.400861,0.434969,0.947339,0.53932,0.761511,0.24356,0.301365,0.932609,0.294563,0.641851,0.953962,0.68987,0.659339,0.0773209,0.787859,0.185441,0.167131,0.0741496,0.264196,0.365092,0.554779,0.174182,0.602929,0.272299,0.510608,0.636431,0.818189,0.196698,0.769324,0.496347,0.434108,0.167494,0.0740134,0.624337,0.508417,0.0335339,0.451011,0.208502,0.616908,0.79266,0.884901,0.212629,0.991113,0.686867,0.171294,0.251292,0.971032,0.532505,0.832457,0.079192,0.0520545,0.547739,0.478836,0.162036,0.324772,0.756979,0.93609,0.0450513,0.856715,0.143368,0.601957,0.230396,0.307944,0.439236,0.396261,0.729565,0.301371,0.469405,0.326297,0.184709,0.998786,0.692543,0.786594,0.797082,0.698346,0.931862,0.847973,0.691445,0.344363,0.0699655,0.387605,0.72145,0.680205,0.0502388,0.98313,0.974539,0.710433,0.500119,0.293029,0.290644,0.869976,0.829185,0.171317,0.53679,0.779508,0.113319,0.743666,0.876328,0.054386,0.222899,0.973618,0.385811,0.675674,0.678371,0.323631,0.0507144,0.380948,0.029263,0.244424,0.807718,0.868392,0.640998,0.148119,0.434418,0.328646,0.12408,0.174175,0.663063,0.108798,0.685404,0.185645,0.209494,0.959184,0.529755,0.148984,0.627293,0.792528,0.739343,0.388197,0.303149,0.234844,0.180029,0.309581,0.778607,0.505277,0.642198,0.411207,0.711622,0.466402,0.482551,0.754994,0.706101,0.333651,0.150412,0.883389,0.0969539,0.674385,0.939765,0.885307,0.856077,0.768565,0.15448,0.380092,0.947797,0.849078,0.839997,0.267852,0.961168,0.991442,0.893347,0.577737,0.428825,0.00790697,0.40829,0.70458,0.846714,0.610631,0.671088,0.753693,0.136668,0.441217,0.55244,0.302936,0.360267,0.860703,0.902899,0.97331,0.0957639,0.607974,0.574819,0.45111,0.596479,0.597973,0.544034,0.527277,0.253602,0.535657,0.106796,0.0585333,0.972829,0.422985,0.822893,0.318024,0.113801,0.311815,0.516312,0.509503,0.837424,0.339455,0.468582,0.31012,0.151961,0.117494,0.0735759,0.492602,0.64973,0.111808,0.0551608,0.557999,0.18855,0.194779,0.34978,0.80476,0.676806,0.921723,0.442275,0.543608,0.928168,0.10156,0.632088,0.894418,0.272957,0.531963,0.589647,0.473603,0.727461,0.933772,0.496787,0.982727,0.940351,0.521358,0.469818,0.681112,0.728291,0.749282,0.0310091,0.718583,0.907068,0.144763,0.191427,0.0771718,0.521098,0.394519,0.0677392,0.701151,0.0249152,0.00550073,0.956379,0.921271,0.24075,0.799812,0.654324,0.611561,0.934372,0.226966,0.0467871,0.205638,0.4144,0.179861,0.500346,0.265605,0.688333,0.207829,0.218743,0.528443,0.265872,0.650686,0.779767,0.725761,0.393883,0.902389,0.716179,0.902056,0.507437,0.29606,0.704559,0.936501,0.146862,0.406165,0.874898,0.417463,0.251029,0.924915,0.523562,0.531558,0.45093,0.758244,0.981443,0.80888,0.972642,0.924521,0.25432,0.246562,0.83176,0.967468,0.0592697,0.778508,0.641634,0.16824,0.834321,0.49163,0.886255,0.240124,0.707535,0.853441,0.915692,0.523628,0.462334,0.353238,0.376085,0.725466,0.51035,0.782006,0.14839,0.586679,0.0731724,0.0575967,0.31624,0.37694,0.989464,0.218463,0.776293,0.569343,0.861509,0.0169684,0.867811,0.506853,0.728572,0.578255,0.344624,0.684793,0.388845,0.41791,0.849112,0.412887,0.488061,0.92245,0.830429,0.922805,0.811824,0.790505,0.194749,0.247238,0.884769,0.107839,0.912099,0.26973,0.751589,0.607597,0.27547,0.660446,0.4132,0.752395,0.0439361,0.446919,0.918784,0.817707,0.953055,0.603585,0.803152,0.0788645,0.992561,0.0689499,0.539182,0.649392,0.74031,0.188787,0.389834,0.68152,0.169449,0.369679,0.379902,0.443913,0.0409227,0.17829,0.882591,0.718976,0.360383,0.236615,0.959821,0.530297,0.576911,0.959792,0.150044,0.479041,0.544522,0.272626,0.0735343,0.553032,0.312021,0.989952,0.400235,0.0811362,0.475895,0.135831,0.0652001,0.59176,0.148252,0.615486,0.271933,0.933336,0.213185,0.9472,0.125652,0.0562698,0.848559,0.298845,0.150794,0.258296,0.348192,0.225975,0.526272,0.384835,0.55153,0.51688,0.56613,0.887259,0.752488,0.968562,0.262075,0.885837,0.17124,0.723644,0.36004,0.00673616,0.0373808,0.838431,0.409183,0.231696,0.720896,0.139222,0.786032,0.251447,0.50206,0.992305,0.238717,0.412294,0.0883467,0.135726,0.650982,0.123653,0.233728,0.100059,0.57771,0.799225,0.136049,0.758026,0.17265,0.366282,0.617473,0.3025,0.010461,0.585679,0.485586,0.842168,0.914474,0.700461,0.016566,0.145804,0.580325,0.432133,0.785479,0.751987,0.286609,0.88001,0.202565,0.576293,0.849367,0.866518,0.624473,0.285591,0.57772,0.348713,0.965517,0.538333,0.122813,0.486067,0.14078,0.20227,0.906129,0.975481,0.493544,0.379827,0.638473,0.309332,0.921986,0.904559,0.322793,0.419454,0.264394,0.755881,0.528506,0.787496,0.146962,0.307703,0.634835,0.799523,0.0866411,0.503266,0.98717,0.852972,0.507496,0.88186,0.683883,0.869174,0.277605,0.0702587,0.54515,0.101413,0.0211675,0.819848,0.124555,0.2544,0.590814,0.887611,0.637792,0.464785,0.329164,0.426287,0.128897,0.494409,0.24151,0.863649,0.946561,0.152132,0.882948,0.782339,0.281026,0.8909,0.106505,0.649848,0.353755,0.526133,0.370674,0.70819,0.0331983,0.745229,0.98603,0.0927479,0.881794,0.285775,0.218092,0.670951,0.987288,0.18448,0.569374,0.227805,0.805542,0.641372,0.872081,0.471883,0.0720239,0.139562,0.871858,0.344744,0.294595,0.345317,0.123333,0.055653,0.440177,0.679073,0.537812,0.426556,0.916336,0.195058,0.764391,0.622954,0.0535069,0.905041,0.620889,0.642356,0.461865,0.25575,0.00520974,0.311426,0.865468,0.875625,0.0824081,0.425336,0.745485,0.256452,0.373107,0.986548,0.998797,0.874526,0.481784,0.336556,0.329111,0.126022,0.700489,0.111505,0.596547,0.778616,0.479677,0.137087,0.644138,0.880261,0.710316,0.875136,0.0408772,0.912627,0.0701139,0.515668,0.335635,0.541747,0.769881,0.36754,0.594959,0.0420409,0.0161812,0.0135102,0.320344,0.555645,0.26322,0.481902,0.820226,0.310916,0.16655,0.508583,0.396723,0.441561,0.786195,0.251164,0.989056,0.446711,0.161305,0.0498492,0.936473,0.888944,0.165292,0.822987,0.782286,0.139118,0.331439,0.32838,0.507736,0.0587865,0.586321,0.927631,0.837698,0.512574,0.777303,0.250319,0.455658,0.27244,0.847532,0.865462,0.557873,0.925827,0.837673,0.628124,0.455742,0.36063,0.562882,0.0983366,0.793668,0.131443,0.00487244,0.212781,0.846478,0.638042,0.333371,0.490067,0.29889,0.0687853,0.212119,0.240472,0.652214,0.533646,0.566138,0.295495,0.250489,0.720717,0.971593,0.0734855,0.29632,0.512562,0.0701902,0.0880666,0.806925,0.535235,0.671849,0.863394,0.906029,0.0421864,0.928281,0.0349198,0.249447,0.769603,0.616175,0.956305,0.325569,0.599292,0.434202,0.270067,0.623388,0.757339,0.410787,0.0868362,0.0639112,0.505249,0.545657,0.482341,0.466414,0.131759,0.039194,0.750714,0.137055,0.654775,0.696026,0.939134,0.527524,0.118056,0.0878065,0.166789,0.0845162,0.318682,0.035403,0.438822,0.500678,0.492373,0.783895,0.167294,0.552067,0.576865,0.715702,0.0727288,0.93183,0.604283,0.260564,0.312327,0.468007,0.943522,0.415688,0.825392,0.500136,0.866322,0.695368,0.390184,0.820462,0.0802454,0.849248,0.224047,0.390739,0.325215,0.00143081,0.0227461,0.517667,0.26807,0.298981,0.894541,0.921461,0.319141,0.247503,0.0103883,0.182921,0.879346,0.903124,0.433273,0.531248,0.153975,0.89186,0.762539,0.25552,0.886189,0.789823,0.555738,0.766785,0.411531,0.673224,0.0525128,0.979312,0.861808,0.553533,0.685963,0.831169,0.319432,0.87854,0.691482,0.737731,0.480038,0.645982,0.426113,0.359005,0.686734,0.746057,0.545306,0.135681,0.373154,0.422179,0.704371,0.250681,0.247534,0.488837,0.709061,0.924961,0.149103,0.934482,0.62292,0.96416,0.825135,0.0070008,0.597688,0.0314002,0.25661,0.645375,0.745912,0.756123,0.310361,0.0828753,0.775096,0.528041,0.524803,0.11246,0.0814866,0.502519,0.545574,0.781029,0.912561,0.766994,0.190228,0.586212,0.68592,0.136623,0.759528,0.6445,0.386296,0.423496,0.0550376,0.332751,0.0771524,0.40122,0.683024,0.414391,0.838493,0.640637,0.139515,0.701276,0.828721,0.672327,0.881722,0.49665,0.0221551,0.560863,0.951079,0.537832,0.952521,0.380093,0.458717,0.0363101,0.387951,0.788884,0.786116,0.330103,0.288308,0.708232,0.949085,0.915616,0.722682,0.0272357,0.447048,0.531682,0.468139,0.749634,0.658438,0.0199046,0.396443,0.786732,0.635308,0.0704602,0.36292,0.979793,0.935276,0.954512,0.833561,0.588734,0.0917289,0.0658137,0.51402,0.572721,0.948072,0.245853,0.772933,0.416466,0.0249298,0.717673,0.831982,0.798729,0.412498,0.212977,0.795623,0.0892588,0.151158,0.492653,0.112948,0.51292,0.0718733,0.0798897,0.638426,0.629972,0.833624,0.404508,0.880702,0.695017,0.675898,0.109265,0.513417,0.302573,0.211741,0.959001,0.67452,0.540171,0.276709,0.892252,0.757385,0.95129,0.0130951,0.316361,7.236e-05,0.153063,0.15583,0.514089,0.346977,0.551981,0.761916,0.145727,0.851169,0.51531,0.058796,0.027415,0.651496,0.658648,0.231103,0.822111,0.0181571,0.343974,0.311416,0.764824,0.164028,0.96345,0.426352,0.884496,0.775022,0.210677,0.743798,0.0226454,0.427034,0.513967,0.00242269,0.420394,0.593396,0.34097,0.652644,0.790657,0.898776,0.200864,0.544715,0.519186,0.0557972,0.0397434,0.594299,0.80616,|0.837457,0.458974,0.881216,0.0690916,0.960451,0.336238,0.669282,0.765017,0.19117,0.11029,0.154379,0.755465,0.63906,0.689706,0.0201933,0.965078,0.74567,0.599902,0.596283,0.322871,0.700355,0.952086,0.216307,0.690842,0.358668,0.149815,0.479056,0.53163,0.869621,0.130733,0.537945,0.915137,0.700575,0.63752,0.444561,0.935776,0.745563,0.896611,0.543182,0.662582,0.437485,0.571858,0.88778,0.276715,0.923801,0.711615,0.860822,0.612505,0.418747,0.411159,0.694316,0.565355,0.105987,0.446108,0.700266,0.901774,0.527662,0.476008,0.150904,0.928751,0.159572,0.146033,0.965218,0.158657,0.60043,0.828256,0.495972,0.378828,0.859912,0.123357,0.851166,0.717544,0.284171,0.60482,0.582301,0.840823,0.461182,0.756833,0.968564,0.487383,0.679826,0.221597,0.753794,0.130516,0.814362,0.922807,0.958473,0.557808,0.719158,0.634406,0.0286959,0.0263191,0.821466,0.937816,0.24498,0.717934,0.290989,0.721243,0.381712,0.43733,0.864255,0.544758,0.72989,0.0694494,0.710243,0.375295,0.558905,0.522648,0.126982,0.540104,0.610454,0.0492262,0.599726,0.253961,0.340531,0.873967,0.277595,0.0915394,0.593016,0.364946,0.97285,0.070683,0.867257,0.693682,0.356988,0.584853,0.0493011,0.580727,0.557251,0.232172,0.730421,0.196147,0.373044,0.228065,0.096007,0.0239897,0.701264,0.0522095,0.477311,0.591127,0.373685,0.248279,0.978261,0.40727,0.500182,0.18373,0.487539,0.613308,0.769405,0.986516,0.279375,0.751559,0.222981,0.996678,0.39198,0.03331,0.178343,0.132118,0.774186,0.388142,0.217588,0.780564,0.609944,0.873831,0.782629,0.2591,0.0930212,0.0908674,0.0246814,0.305081,0.0188283,0.382754,0.00195682,0.129164,0.861909,0.261734,0.860941,0.180613,0.312794,0.326579,0.175185,0.946138,0.689819,0.837819,0.898751,0.978042,0.0280594,0.864955,0.109514,0.586449,0.145531,0.891098,0.623259,0.570653,0.865501,0.915896,0.228114,0.11163,0.344477,0.116669,0.979672,0.836822,0.0557408,0.301197,0.869778,0.155295,0.460248,0.899171,0.628677,0.267203,0.628946,0.775816,0.843714,0.277529,0.829689,0.545255,0.907001,0.374537,0.418192,0.862153,0.23069,0.747471,0.272667,0.42938,0.369881,0.958476,0.092133,0.697006,0.302173,0.793356,0.312577,0.43911,0.191788,0.681573,0.409645,0.439277,0.692065,0.991974,0.892966,0.403828,0.500469,0.813565,0.0327681,0.254754,0.0903147,0.136425,0.314646,0.798713,0.87668,0.239897,0.467322,0.594135,0.720306,0.35924,0.613065,0.81319,0.122262,0.26806,0.967903,0.229029,0.0475114,0.964441,0.0677006,0.234579,0.875902,0.302272,0.455348,0.906634,0.113279,0.88121,0.0483982,0.828023,0.715304,0.560967,0.584165,0.308723,0.637866,0.137455,0.16831,0.028048,0.016392,0.281455,0.273894,0.192941,0.0323511,0.814936,0.445868,0.113662,0.486358,0.258946,0.269563,0.0358015,0.185429,0.865743,0.892376,0.159155,0.306549,0.763207,0.970315,0.911678,0.804341,0.511394,0.609719,0.830648,0.676566,0.156299,0.636937,0.968744,0.705889,0.49311,0.369195,0.437352,0.646581,0.232519,0.218713,0.11847,0.49912,0.312877,0.1267,0.525314,0.0453058,0.56254,0.368041,0.303861,0.182114,0.227686,0.872067,0.23775,0.312326,0.668119,0.972515,0.644387,0.419828,0.475048,0.818247,0.985123,0.729907,0.758596,0.950212,0.754244,0.353897,0.242177,0.506269,0.479665,0.711926,0.345794,0.641556,0.626422,0.849195,0.719881,0.670991,0.272595,0.415873,0.930412,0.889308,0.834859,0.841285,0.208526,0.151629,0.0967467,0.124863,0.310919,0.551277,0.298969,0.689817,0.413443,0.954284,0.104731,0.599862,0.933891,0.0367635,0.501591,0.139907,0.606113,0.882018,0.75168,0.550255,0.595075,0.158062,0.287788,0.6962,0.211956,0.715636,0.404442,0.204624,0.37223,0.493014,0.906544,0.690074,0.744757,0.897965,0.64543,0.930252,0.312012,0.741871,0.896101,0.160425,0.994662,0.770467,0.262771,0.265129,0.808572,0.0559946,0.772646,0.419498,0.764952,0.986238,0.590023,0.589095,0.362099,0.991463,0.52938,0.645951,0.970066,0.0385626,0.226938,0.404999,0.796496,0.308264,0.900767,0.355581,0.153998,0.616093,0.490368,0.0236875,0.425455,0.950777,0.431658,0.96016,0.162535,0.326495,0.162984,0.280864,0.262237,0.646289,0.714123,0.584015,0.731755,0.242923,0.455826,0.640159,0.138936,0.780623,0.320414,0.525258,0.0906737,0.41376,0.757358,0.234305,0.663938,0.105024,0.825952,0.53049,0.652823,0.619904,0.0424466,0.99156,0.201923,0.689977,0.27202,0.340859,0.449292,0.0169611,0.519754,0.296968,0.59128,0.449463,0.422201,0.00312215,0.862638,0.656993,0.512907,0.819058,0.0161244,0.139736,0.165474,0.475816,0.982722,0.521093,0.80953,0.461631,0.325113,0.310851,0.838134,0.709827,0.0348464,0.193926,0.0493332,0.611662,0.933057,0.479458,0.464181,0.524902,0.614542,0.0106905,0.980205,0.187027,0.407336,0.551093,0.444644,0.123215,0.211876,0.00249654,0.0311182,0.41893,0.24231,0.966953,0.964433,0.496863,0.628121,0.798088,0.823275,0.245895,0.630636,0.26447,0.142799,0.0394702,0.768805,0.084847,0.740254,0.854939,0.596649,0.202442,0.620499,0.923439,0.536442,0.0619939,0.586738,0.849835,0.385801,0.216232,0.751792,0.922395,0.131297,0.00468349,0.624709,0.936066,0.608482,0.484474,0.443488,0.120585,0.250676,0.195491,0.819442,0.0233662,0.264666,0.509302,0.176533,0.52163,0.207475,0.923479,0.70556,0.442483,0.459234,0.192727,0.98456,0.778584,0.193806,0.629902,0.391617,0.388044,0.49969,0.538865,0.303389,0.390351,0.921158,0.58123,0.48119,0.300211,0.931124,0.548647,0.521657,0.779738,0.83553,0.115623,0.507394,0.36083,0.0272968,0.815002,0.570909,0.610862,0.943575,0.0590378,0.491477,0.129697,0.0547617,0.00188857,0.439556,0.966358,0.894799,0.863836,0.0553152,0.87369,0.21365,0.188037,0.913348,0.358039,0.795126,0.482603,0.856573,0.0497472,0.535196,0.963594,0.677231,0.428807,0.834364,0.93095,0.474453,0.579831,0.78507,0.853115,0.271711,0.494908,0.198578,0.874813,0.889255,0.367465,0.506077,0.474012,0.929803,0.931376,0.728154,0.962518,0.818116,0.747128,0.1081,0.978369,0.627194,0.727941,0.0115142,0.459723,0.572612,0.400226,0.78069,0.559213,0.783762,0.322645,0.246157,0.308553,0.235365,0.558454,0.883364,0.812675,0.272433,0.256718,0.921369,0.581946,0.208007,0.0213001,0.307263,0.172217,0.748402,0.83717,0.349065,0.46844,0.263384,0.184201,0.0342477,0.633269,0.646898,0.522084,0.339672,0.97872,0.958217,0.0410092,0.81537,0.988886,0.16155,0.972638,0.114357,0.466182,0.585132,0.521249,0.37383,0.494185,0.71007,0.192391,0.824652,0.475301,0.0465014,0.271537,0.207962,0.45252,0.445382,0.957925,0.921521,0.536113,0.309171,0.87261,0.195104,0.829116,0.241366,0.780952,0.980444,0.277879,0.411173,0.633856,0.89491,0.0557947,0.678302,0.45076,0.184988,0.794636,0.041442,0.550817,0.911919,0.0573317,0.656631,0.783896,0.28472,0.649131,0.528535,0.849117,0.18401,0.0480459,0.487217,0.682081,0.506619,0.953795,0.348215,0.126872,0.482446,0.515503,0.874272,0.320524,0.156949,0.575253,0.189001,0.60578,0.740083,0.333286,0.0760433,0.0981993,0.83895,0.250488,0.483149,0.718219,0.560292,0.700377,0.600086,0.555297,0.339171,0.844745,0.260756,0.464254,0.755101,0.792144,0.435555,0.775847,0.49087,0.950656,0.00725579,0.217945,0.830999,0.827831,0.0650251,0.671037,0.126282,0.947875,0.310835,0.129676,0.500429,0.655417,0.175598,0.490928,0.618259,0.178796,0.619439,0.59796,0.362018,0.0607077,0.0467325,0.381742,0.83485,0.655078,0.467359,0.484699,0.750999,0.761659,0.206592,0.789013,0.648267,0.90825,0.221636,0.195199,0.877473,0.293414,0.777503,0.753366,0.0862794,0.227003,0.711556,0.816113,0.40646,0.183549,0.735587,0.702154,0.282991,0.284553,0.941533,0.145467,0.184968,0.902422,0.902192,0.699493,0.636835,0.523383,0.531713,0.874133,0.290179,0.761496,0.354781,0.292825,0.965621,0.0931616,0.416019,0.017571,0.0417491,0.660966,0.934371,0.885101,0.69481,0.542295,0.176733,0.292388,0.429531,0.873359,0.188565,0.635597,0.515799,0.665909,0.898804,0.149881,0.0797704,0.229755,0.752318,0.320088,0.149551,0.872257,0.413827,0.793653,0.22581,0.311492,0.0713429,0.82408,0.10746,0.765453,0.826941,0.893674,0.956573,0.71798,0.504566,0.252106,0.127984,0.0959814,0.815457,0.753295,0.928232,0.901776,0.963802,0.188667,0.281113,0.971858,0.933765,0.368137,0.665098,0.554198,0.410191,0.708713,0.850292,0.505794,0.228309,0.635717,0.140929,0.708731,0.138907,0.262725,0.977513,0.816218,0.688516,0.763424,0.79703,0.667696,0.367311,0.305168,0.37467,0.540025,0.668819,0.534376,0.00188094,0.704421,0.178884,0.758205,0.447329,0.128258,0.799038,0.0832161,0.71527,0.58857,0.0827385,0.0187883,0.704463,0.0873624,0.570673,0.95482,0.0200073,0.348935,0.618425,0.407526,0.549715,0.0262183,0.526914,0.505263,0.613729,0.367471,0.56836,0.662808,0.954974,0.860716,0.963087,0.242881,0.53039,0.182721,0.68539,0.219248,0.480791,0.748318,0.244492,0.720926,0.430656,0.109525,0.694118,0.478988,0.395994,0.592262,0.731507,0.31325,0.772168,0.0729421,0.433407,0.891923,0.868246,0.966533,0.419418,0.609911,0.044787,0.54337,0.240467,0.0674639,0.553512,0.0580221,0.231347,0.226067,0.934275,0.671338,0.0802631,0.0584593,0.956015,0.873455,0.452561,0.852898,0.176108,0.648456,0.818972,0.528936,0.554254,0.0337837,0.644999,0.0481709,0.0221791,0.617727,0.683417,0.112243,0.370314,0.16032,0.938376,0.07987,0.429482,0.0614336,0.0590562,0.437172,0.135419,0.848232,0.613403,0.229883,0.620574,0.375895,0.82746,0.475429,0.654793,0.0695847,0.810183,0.715338,0.0560146,0.116268,0.625875,0.377963,0.42741,0.365627,0.63731,|0.0313578,0.723932,0.250157,0.817058,0.13563,0.850764,0.795317,0.695033,0.923041,0.41501,0.327887,0.155838,0.422693,0.414397,0.871649,0.363734,0.536083,0.520398,0.225498,0.732673,0.867789,0.302002,0.32774,0.710877,0.470593,0.179411,0.173389,0.893534,0.416804,0.124548,0.0585977,0.259514,0.227017,0.894761,0.827312,0.649365,0.874705,0.101241,0.601339,0.708295,0.780849,0.710427,0.838624,0.812942,0.852462,0.307681,0.493853,0.825833,0.0582003,0.160785,0.752242,0.224456,0.205526,0.855265,0.684361,0.174432,0.0897695,0.995838,0.255203,0.03114,0.900692,0.896472,0.561745,0.690382,0.350081,0.719503,0.842175,0.0459336,0.349447,0.0956515,0.626125,0.0780062,0.645719,0.849753,0.665543,0.786933,0.394173,0.299569,0.682531,0.604753,0.322109,0.990349,0.116431,0.84888,0.580857,0.693581,0.970909,0.949005,0.272802,0.845492,0.763534,0.306458,0.659198,0.288583,0.969679,0.453255,0.760764,0.178074,0.037048,0.786034,0.276281,0.17875,0.478926,0.999474,0.782564,0.0567564,0.11493,0.672039,0.552079,0.185803,0.346481,0.77197,0.14057,0.0930098,0.999482,0.0761145,0.29153,0.107054,0.710262,0.471573,0.935098,0.250158,0.234843,0.577591,0.132861,0.794174,0.99022,0.533443,0.0132581,0.339523,0.752788,0.295102,0.493034,0.444408,0.776626,0.957203,0.604097,0.0672567,0.554245,0.639004,0.388915,0.102976,0.579572,0.862725,0.737853,0.507739,0.685098,0.0915143,0.0432709,0.632082,0.329184,0.0522287,0.619585,0.763457,0.681475,0.472498,0.655207,0.523538,0.746006,0.952145,0.510483,0.162647,0.840591,0.791041,0.904384,0.691114,0.53472,0.429425,0.398684,0.0746242,0.0822194,0.792679,0.214003,0.670404,0.269449,0.654792,0.701837,0.184865,0.698459,0.0298712,0.394398,0.433386,0.347917,0.226941,0.627958,0.325072,0.307672,0.921753,0.830628,0.930401,0.262433,0.00252736,0.371441,0.484325,0.226971,0.929468,0.0972386,0.164268,0.158832,0.603148,0.784322,0.60535,0.941634,0.0611586,0.347675,0.041743,0.732221,0.445063,0.058552,0.710082,0.992008,0.689721,0.0132397,0.448059,0.414619,0.0442468,0.553195,0.555135,0.113275,0.494564,0.321975,0.0900443,0.648251,0.92893,0.171029,0.129203,0.12835,0.698212,0.269007,0.0702775,0.222473,0.811763,0.108063,0.356792,0.748792,0.0668125,0.472634,0.47587,0.75893,0.111306,0.291165,0.614378,0.980414,0.427249,0.231149,0.277458,0.0461369,0.523386,0.0166671,0.342088,0.35394,0.312606,0.753467,0.42796,0.179628,0.210388,0.787159,0.777757,0.148125,0.38055,0.693135,0.116259,0.0176128,0.7917,0.00562251,0.3124,0.22742,0.648082,0.939417,0.748357,0.304676,0.684517,0.988578,0.69752,0.0247137,0.212636,0.0620417,0.325346,0.503236,0.908947,0.103985,0.81716,0.443124,0.695572,0.0691684,0.202918,0.706054,0.775819,0.400037,0.231143,0.599574,0.324661,0.320998,0.758914,0.380411,0.976094,0.0401965,0.411181,0.100032,0.881354,0.0882142,0.950245,0.153591,0.284484,0.898448,0.422652,0.751069,0.493736,0.471098,0.641007,0.318319,0.954102,0.652933,0.718317,0.473624,0.098937,0.724663,0.317437,0.996837,0.317715,0.758525,0.84298,0.685233,0.220551,0.410658,0.0139613,0.356158,0.349294,0.993418,0.451095,0.756957,0.793621,0.839116,0.819402,0.865559,0.377046,0.306629,0.688425,0.0764056,0.971415,0.680853,0.0600621,0.111553,0.900986,0.087593,0.331913,0.934851,0.33003,0.443675,0.0596667,0.323739,0.231605,0.787087,0.52027,0.0772814,0.800588,0.0248385,0.260662,0.656846,0.0112515,0.918782,0.230939,0.133007,0.747782,0.10906,0.25652,0.537335,0.301706,0.938556,0.708855,0.339236,0.804493,0.318776,0.892015,0.69103,0.803374,0.123693,0.157831,0.42763,0.517011,0.520589,0.734823,0.778278,0.475032,0.024794,0.529002,0.841687,0.173509,0.0729445,0.816724,0.362046,0.131333,0.460493,0.913825,0.469508,0.517426,0.361437,0.300878,0.04272,0.159861,0.879722,0.45494,0.936185,0.726933,0.496199,0.830585,0.89701,0.681836,0.970251,0.592545,0.894037,0.693498,0.963089,0.635129,0.870671,0.977383,0.812554,0.744342,0.666564,0.787269,0.958563,0.0788152,0.193509,0.141231,0.0444411,0.698706,0.421895,0.748712,0.252379,0.571383,0.954068,0.0794043,0.913153,0.113066,0.79354,0.50285,0.394882,0.742486,0.352919,0.552743,0.640442,0.976765,0.475043,0.526354,0.444255,0.371895,0.836002,0.746331,0.300061,0.905185,0.657076,0.14884,0.738934,0.640912,0.0856916,0.488857,0.0154107,0.849481,0.809593,0.340619,0.0120875,0.188716,0.179569,0.836733,0.553762,0.497689,0.744299,0.433231,0.332541,0.233233,0.717725,0.845861,0.906223,0.656672,0.347266,0.895975,0.743481,0.097793,0.791338,0.307042,0.25017,0.165077,0.977593,0.64146,0.715537,0.377934,0.571434,0.313066,0.305022,0.537007,0.959725,0.494985,0.024667,0.62269,0.214275,0.903349,0.155981,0.227718,0.336213,0.0276085,0.890948,0.00783426,0.219123,0.0863827,0.930049,0.334176,0.0063954,0.940457,0.633037,0.0988227,0.264595,0.232681,0.160229,0.83268,0.615646,0.00982207,0.424261,0.639668,0.244835,0.682201,0.792996,0.49219,0.51162,0.567001,0.362607,0.809592,0.761172,0.52785,0.24481,0.859331,0.189691,0.723613,0.241929,0.446825,0.260978,0.0140995,0.929649,0.997125,0.0836921,0.779989,0.9673,0.480275,0.733436,0.637771,0.0279314,0.243353,0.587435,0.202851,0.444575,0.635545,0.0372329,0.940318,0.824733,0.170589,0.431155,0.593272,0.0143483,0.124331,0.403099,0.391345,0.404063,0.983929,0.690312,0.848182,0.534178,0.447156,0.311245,0.477694,0.136999,0.0947059,0.920651,0.279118,0.542184,0.669326,0.208656,0.205229,0.114385,0.796532,0.506035,0.864289,0.313703,0.528496,0.957924,0.0089252,0.661927,0.397374,0.993587,0.589831,0.529634,0.373587,0.487909,0.530405,0.58264,0.550682,0.363923,0.353221,0.80933,0.269807,0.688731,0.11606,0.949869,0.973583,0.755814,0.43155,0.301836,0.0160807,0.751992,0.422189,0.890482,0.952032,0.82893,0.18975,0.174542,0.877951,0.87465,0.523596,0.756509,0.932138,0.657574,0.426999,0.345634,0.594793,0.32613,0.731039,0.673841,0.939128,0.36971,0.124786,0.18587,0.547769,0.485831,0.121434,0.395813,0.561211,0.693956,0.965956,0.261786,0.271448,0.649735,0.666084,0.940267,0.665546,0.997279,0.136727,0.479092,0.00296932,0.473166,0.962068,0.323538,0.507271,0.0187732,0.519469,0.894598,0.889184,0.20227,0.635936,0.910683,0.255559,0.0601504,0.910037,0.298604,0.33825,0.631071,0.280523,0.0268636,0.597216,0.13062,0.0390944,0.0881316,0.941343,0.263343,0.975693,0.730632,0.0991021,0.424757,0.878692,0.151444,0.162647,0.52852,0.364031,0.0575338,0.817085,0.205324,0.718858,0.90233,0.667277,0.822296,0.738338,0.0840823,0.351738,0.497074,0.365815,0.979449,0.329027,0.70046,0.983404,0.607577,0.604109,0.111327,0.974797,0.955934,0.101237,0.935358,0.601597,0.229471,0.744893,0.300017,0.719504,0.832498,0.0452402,0.703448,0.575706,0.873078,0.378679,0.28058,0.185131,0.0542462,0.0169992,0.574445,0.244652,0.485966,0.68029,0.2297,0.575348,0.227796,0.0651268,0.630482,0.238187,0.625966,0.505193,0.352688,0.0472311,0.803396,0.315826,0.720153,0.11863,0.732335,0.549148,0.162946,0.808657,0.386923,0.92001,0.224891,0.130257,0.701876,0.217753,0.861627,0.558366,0.624783,0.681394,0.34437,0.0519492,0.0141068,0.152691,0.249549,0.99318,0.7679,0.0434567,0.869638,0.724746,0.348303,0.813763,0.0714657,0.597311,0.52218,0.0953808,0.935538,0.401937,0.05006,0.563077,0.780994,0.640806,0.224561,0.437614,0.960508,0.877958,0.610426,0.241622,0.0797428,0.283235,0.13753,0.112687,0.116884,0.53152,0.649432,0.311879,0.903997,0.679155,0.438153,0.693238,0.726695,0.862205,0.224398,0.987224,0.111643,0.612111,0.457854,0.845146,0.292198,0.091441,0.0496899,0.249771,0.470903,0.675217,0.167485,0.453103,0.334103,0.435026,0.659807,0.785262,0.88192,0.441004,0.101683,0.654395,0.768358,0.466829,0.897109,0.0793098,0.634151,0.335896,0.00150347,0.693503,0.947591,0.393931,0.433685,0.100262,0.634977,0.325652,0.198592,0.578943,0.453407,0.106113,0.228178,0.797421,0.00304323,0.231217,0.303417,0.19761,0.19053,0.0637705,0.889309,0.838137,0.0584976,0.578882,0.80144,0.597095,0.364716,0.531931,0.0446782,0.770363,0.942455,0.97827,0.767769,0.413263,0.708696,0.313516,0.799359,0.335242,0.399302,0.382326,0.581072,0.190674,0.000942469,0.737646,0.774224,0.386295,0.327237,0.611355,0.157817,0.24615,0.362866,0.659354,0.0907583,0.66628,0.643647,0.482526,0.963846,0.483554,0.313763,0.750289,0.969561,0.120549,0.834608,0.664053,0.543524,0.26675,0.992638,0.215885,0.74877,0.711632,0.982362,0.555884,0.093191,0.160735,0.395861,0.634402,0.649853,0.217532,0.0222064,0.680746,0.976251,0.590444,0.0442203,0.511239,0.714034,0.433741,0.490608,0.162501,0.431986,0.856021,0.293948,0.949554,0.331522,0.509382,0.896815,0.823332,0.28581,0.446597,0.655049,0.351157,0.644011,0.773685,0.475973,0.181958,0.610698,0.719823,0.585383,0.63267,0.148149,0.152925,0.58722,0.317313,0.794856,0.461331,0.93458,0.916571,0.227817,0.261201,0.65445,0.697473,0.276867,0.308538,0.780235,0.420843,0.247293,0.781481,0.935391,0.0303215,0.546637,0.299844,0.0194144,0.558553,0.90642,0.364679,0.117666,0.999502,0.448543,0.377437,0.880391,0.867824,0.0333927,0.933421,0.0514343,0.0181953,0.721079,0.908021,0.302016,0.0248516,0.063257,0.269395,0.342477,0.319958,0.392181,0.601432,0.903111,0.0696639,0.0446828,0.689063,0.664695,0.199302,0.7818,0.433558,0.863519,0.048223,0.854735,0.755832,0.750055,0.595528,0.91433,0.793752,0.720421,0.460805,0.180234,0.810687,0.712074,0.707948,0.371081,0.896235,0.914641,0.355043,|0.699492,0.0133299,0.754079,0.473259,0.433941,0.922077,0.677917,0.0571001,0.119065,0.117084,0.73914,0.63243,0.913162,0.370356,0.610511,0.83556,0.2037,0.0332522,0.551009,0.878461,0.371723,0.440708,0.233234,0.253209,0.245552,0.523974,0.160813,0.741088,0.614798,0.146262,0.765787,0.841225,0.178489,0.377067,0.643512,0.13583,0.813227,0.169165,0.0386968,0.398179,0.887957,0.286261,0.137262,0.179377,0.85012,0.0848401,0.726318,0.787823,0.142603,0.385232,0.364614,0.749422,0.252346,0.954955,0.935851,0.0341553,0.0546249,0.452391,0.0624889,0.239307,0.609538,0.480529,0.788588,0.690561,0.794186,0.831368,0.519636,0.309519,0.09308,0.675897,0.203641,0.795862,0.49778,0.0661324,0.216579,0.0148308,0.501315,0.661273,0.481932,0.15949,0.243114,0.61118,0.237157,0.603498,0.11352,0.593863,0.965869,0.107551,0.0280752,0.849636,0.319403,0.885364,0.976337,0.101431,0.0202616,0.160572,0.886318,0.609894,0.23478,0.467111,0.410376,0.587603,0.628405,0.682482,0.0210828,0.354345,0.830753,0.336629,0.387981,0.147997,5.88894e-05,0.301143,0.744322,0.934729,0.672291,0.505829,0.228107,0.359239,0.322044,0.762751,0.518392,0.170135,0.147668,0.280997,0.466782,0.0913014,0.284382,0.315934,0.673241,0.622999,0.086531,0.787011,0.207187,0.729093,0.00554079,0.248828,0.998314,0.72163,0.666071,0.856677,0.157193,0.207108,0.567051,0.360977,0.266477,0.869083,0.905557,0.10308,0.057994,0.52589,0.96126,0.17069,0.447899,0.881323,0.576684,0.27077,0.868973,0.143556,0.380687,0.168176,0.914861,0.986774,0.993635,0.0731493,0.135003,0.237717,0.338773,0.877754,0.114383,0.976547,0.641974,0.350687,0.783098,0.510464,0.579515,0.0453674,0.533026,0.424094,0.456985,0.458473,0.393924,0.245575,0.944291,0.317734,0.146736,0.887516,0.495591,0.915431,0.840083,0.229753,0.307263,0.724236,0.509477,0.0290786,0.953061,0.669159,0.970161,0.197764,0.203675,0.0533873,0.617444,0.110342,0.820886,0.415501,0.283344,0.953267,0.945746,0.0124701,0.866939,0.109499,0.684017,0.78761,0.582883,0.871168,0.504016,0.397759,0.404228,0.424917,0.326144,0.42255,0.821889,0.421116,0.825431,0.833224,0.246958,0.381398,0.979465,0.653778,0.330606,0.744881,0.198497,0.774545,0.461359,0.427615,0.266385,0.424094,0.389617,0.114583,0.383446,0.0881388,0.404394,0.105646,0.61403,0.403215,0.643932,0.571615,0.955628,0.299582,0.961919,0.137581,0.291821,0.6136,0.396441,0.103966,0.753961,0.0462037,0.706646,0.0875522,0.950006,0.0146029,0.888336,0.43334,0.397964,0.661493,0.768777,0.199279,0.817185,0.632697,0.883347,0.783024,0.662678,0.638682,0.134263,0.510216,0.920611,0.868271,0.463923,0.10513,0.322946,0.806855,0.0682726,0.798473,0.246259,0.240384,0.227923,0.635214,0.928841,0.477338,0.535166,0.835777,0.341144,0.581527,0.518498,0.103488,0.183193,0.539912,0.419498,0.910402,0.364582,0.56531,0.731264,0.692661,0.046922,0.654803,0.294297,0.54723,0.483576,0.947128,0.324345,0.256829,0.0828017,0.382425,0.873408,0.878912,0.146495,0.895884,0.540454,0.231345,0.764355,0.477847,0.0140819,0.556334,0.886114,0.699757,0.383854,0.307779,0.760282,0.490293,0.752384,0.85847,0.0966483,0.491317,0.83541,0.976529,0.726932,0.867319,0.767236,0.942555,0.358956,0.340185,0.265719,0.62245,0.0972106,0.785093,0.465434,0.574418,0.924177,0.905951,0.863465,0.579297,0.957528,0.332044,0.0788133,0.415033,0.59337,0.26466,0.392408,0.107517,0.931817,0.525179,0.923148,0.72334,0.439047,0.201056,0.430742,0.916692,0.358492,0.416837,0.916061,0.949932,0.486093,0.0372527,0.806455,0.761682,0.11547,0.799323,0.360091,0.168602,0.199593,0.921702,0.403649,0.63549,0.573656,0.4443,0.0379184,0.442703,0.177332,0.951594,0.325051,0.582305,0.547021,0.417151,0.801353,0.566103,0.862015,0.968154,0.482295,0.415391,0.924978,0.588698,0.175987,0.913292,0.645397,0.624546,0.754993,0.0396004,0.359482,0.820607,0.214211,0.174668,0.274132,0.660076,0.66813,0.451159,0.00667572,0.681332,0.835272,0.989611,0.969348,0.890917,0.3215,0.842508,0.190133,0.00682521,0.165823,0.352507,0.503014,0.79237,0.771939,0.585684,0.426428,0.350203,0.606663,0.161694,0.616692,0.954994,0.0771872,0.221934,0.195256,0.702058,0.54703,0.350413,0.827319,0.68726,0.504755,0.406191,0.373729,0.711565,0.141715,0.803878,0.256418,0.444339,0.63972,0.204091,0.956071,0.632737,0.188946,0.901167,0.851678,0.499172,0.594769,0.393971,0.184171,0.425129,0.535238,0.704389,0.52996,0.117509,0.161764,0.25585,0.34687,0.284128,0.123259,0.906919,0.128781,0.263822,0.562402,0.042065,0.477592,0.904995,0.631647,0.449032,0.933342,0.478159,0.839087,0.140428,0.420407,0.491679,0.978062,0.771378,0.779444,0.0896901,0.971824,0.107554,0.27906,0.536801,0.372796,0.281546,0.386274,0.75997,0.569361,0.58649,0.96601,0.545489,0.333742,0.629413,0.230245,0.373607,0.276494,0.35856,0.282184,0.596283,0.17049,0.756472,0.446249,0.00312066,0.620575,0.270912,0.308871,0.916936,0.00595111,0.696292,0.734717,0.887221,0.524228,0.993897,0.97224,0.821758,0.623022,0.623333,0.207024,0.466597,0.900303,0.386383,0.197684,0.227853,0.939628,0.664606,0.613606,0.263743,0.0918092,0.669928,0.644329,0.780811,0.506564,0.491383,0.0513514,0.697445,0.551156,0.442668,0.747541,0.762273,0.621439,0.606753,0.260789,0.76364,0.643923,0.458624,0.0277912,0.852508,0.41668,0.333009,0.306148,0.773695,0.148693,0.928798,0.729523,0.671804,0.349996,0.311931,0.656952,0.897721,0.466055,0.512373,0.826004,0.81343,0.079611,0.545207,0.683329,0.990374,0.091757,0.029833,0.384917,0.143258,0.184103,0.655642,0.78959,0.437728,0.575547,0.45793,0.854262,0.103135,0.927125,0.241305,0.489329,0.0718483,0.464299,0.274454,0.748724,0.26538,0.149,0.163205,0.95279,0.293702,0.25508,0.419957,0.0615362,0.452182,0.858275,0.910227,0.714946,0.0589508,0.683433,0.627782,0.438119,0.965806,0.696342,0.701979,0.444366,0.297189,0.477823,0.120235,0.372327,0.926134,0.598344,0.43815,0.26053,0.31877,0.0363302,0.142648,0.821235,0.493318,0.961642,0.972122,0.275182,0.474585,0.406583,0.453364,0.502687,0.448112,0.238259,0.573651,0.722093,0.863504,0.372978,0.98314,0.807143,0.593139,0.379812,0.177018,0.834181,0.366461,0.320785,0.86444,0.417871,0.616003,0.615511,0.654496,0.402299,0.0497427,0.137325,0.27711,0.25996,0.734492,0.472744,0.316377,0.632639,0.636361,0.384876,0.103307,0.211163,0.535207,0.738006,0.298885,0.515183,0.483017,0.0216908,0.568085,0.455121,0.287425,0.827427,0.312895,0.0987108,0.618008,0.74871,0.309575,0.202567,0.0145205,0.764321,0.146812,0.301648,0.00894397,0.320373,0.21157,0.0874834,0.685045,0.76849,0.0860156,0.485641,0.976874,0.409135,0.753066,0.493905,0.530063,0.807066,0.265764,0.169211,0.0995648,0.0188708,0.204514,0.359376,0.293945,0.32553,0.288164,0.459107,0.449347,0.0107446,0.157319,0.881722,0.470452,0.378998,0.454803,0.715332,0.143481,0.783105,0.242651,0.113069,0.384195,0.302789,0.246529,0.302174,0.838087,0.33629,0.054248,0.950347,0.097219,0.575043,0.465276,0.282673,0.847459,0.367317,0.732218,0.51599,0.395802,0.0107453,0.653669,0.331631,0.216173,0.881151,0.827643,0.697713,0.404654,0.429509,0.484095,0.543317,0.21748,0.709058,0.255358,0.1855,0.218545,0.357463,0.905122,0.0227278,0.253389,0.55138,0.921905,0.624852,0.784252,0.579755,0.269873,0.844501,0.240146,0.679841,0.610224,0.89735,0.325046,0.122287,0.784595,0.293089,0.773549,0.860519,0.56164,0.278517,0.0976776,0.9551,0.370201,0.960591,0.914174,0.606397,0.919433,0.447802,0.254771,0.64986,0.673481,0.202884,0.11888,0.361857,0.940359,0.266376,0.049518,0.892018,0.486654,0.980786,0.659345,0.0187573,0.768296,0.388605,0.278879,0.519033,0.97173,0.781246,0.866594,0.196723,0.463523,0.923771,0.679996,0.221732,0.467824,0.691423,0.33809,0.192672,0.159486,0.525956,0.797416,0.80083,0.60208,0.364171,0.944634,0.558495,0.623739,0.251416,0.196016,0.14782,0.954775,0.787781,0.899255,0.522737,0.327381,0.351234,0.917992,0.257537,0.606943,0.979204,0.0864932,0.468344,0.0531774,0.726825,0.915119,0.750562,0.48067,0.851381,0.217967,0.740174,0.0358328,0.0348442,0.933843,0.542181,0.390623,0.98259,0.558918,0.989141,0.138301,0.206716,0.355979,0.0807393,0.663779,0.0124062,0.0828118,0.571911,0.553295,0.663511,0.190924,0.646539,0.718839,0.128761,0.793856,0.736986,0.819792,0.727522,0.213054,0.619993,0.143079,0.738838,0.690884,0.59606,0.736041,0.367584,0.481616,0.602161,0.622863,0.266418,0.857641,0.722587,0.134001,0.0843705,0.711988,0.478228,0.540249,0.912628,0.619098,0.920779,0.582318,0.533541,0.218716,0.513793,0.168287,0.700184,0.973348,0.460041,0.325318,0.530848,0.661059,0.249854,0.837951,0.282079,0.854616,0.81584,0.0918114,0.0128068,0.482203,0.734168,0.0270498,0.378401,0.283933,0.509182,0.667595,0.479756,0.761663,0.97716,0.432296,0.393596,0.206377,0.712427,0.302895,0.430586,0.602438,0.895334,0.318878,0.0845166,0.0671966,0.0534438,0.210326,0.469648,0.358976,0.0165343,0.760027,0.288004,0.0987536,0.585066,0.93441,0.393432,0.294858,0.0736207,0.251665,0.815821,0.137325,0.972543,0.583034,0.637127,0.668444,0.0672345,0.578757,0.419159,0.565357,0.233847,0.107851,0.476586,0.570836,0.396493,0.384121,0.779242,0.533559,0.40938,0.55665,0.178787,0.580907,0.14787,0.166683,0.614056,0.64649,0.435665,0.622282,0.97429,0.205753,0.836877,0.444748,0.551022,0.938285,0.298224,0.0646691,0.386822,0.331353,0.20266,0.0234932,0.591382,0.776203,0.92296,0.613345,0.633882,0.830058,|0.593937,0.989492,0.472414,0.773638,0.583023,0.376406,0.212015,0.895395,0.626544,0.720331,0.0711018,0.936614,0.818751,0.928333,0.445974,0.473624,0.979228,0.091131,0.190337,0.423536,0.528367,0.495139,0.0432881,0.570211,0.356473,0.536798,0.291352,0.785772,0.611362,0.0339192,0.0319963,0.380461,0.297238,0.83005,0.964217,0.200019,0.39435,0.795518,0.672945,0.813303,0.864525,0.915136,0.144339,0.0511005,0.616891,0.987608,0.455026,0.697384,0.792571,0.618817,0.214422,0.908974,0.518174,0.821177,0.377998,0.736206,0.18039,0.787433,0.999675,0.871199,0.953486,0.102991,0.885729,0.840518,0.0103095,0.798803,0.416611,0.0137353,0.583539,0.597958,0.799129,0.937975,0.00752783,0.0112613,0.0945567,0.382919,0.672897,0.896856,0.61436,0.569322,0.735969,0.847094,0.439559,0.755402,0.748146,0.273272,0.31627,0.0267304,0.499761,0.407669,0.527119,0.154367,0.681742,0.0509883,0.115063,0.349033,0.0735225,0.942002,0.40711,0.902133,0.289728,0.358656,0.0234806,0.697811,0.748732,0.0128224,0.239188,0.867917,0.700567,0.970029,0.828687,0.673708,0.938655,0.559836,0.431803,0.332287,0.729251,0.470056,0.465882,0.486342,0.487459,0.66419,0.793326,0.805221,0.461912,0.104061,0.277871,0.844343,0.107356,0.796107,0.538336,0.780918,0.257377,0.898185,0.939745,0.264108,0.814214,0.602227,0.978573,0.195615,0.569051,0.0713862,0.377527,0.533148,0.32909,0.563263,0.290921,0.434402,0.934051,0.0379408,0.878908,0.70093,0.617672,0.61428,0.782059,0.0940458,0.638429,0.596683,0.714088,0.414453,0.147017,0.795035,0.174506,0.558975,0.188858,0.787658,0.614968,0.367576,0.553092,0.295399,0.8792,0.391402,0.151659,0.413871,0.34631,0.537007,0.225313,0.323229,0.933212,0.883906,0.21469,0.0609059,0.510235,0.331028,0.543064,0.728522,0.126124,0.800545,0.0922108,0.505905,0.494054,0.330635,0.331512,0.802366,0.173891,0.1188,0.790169,0.765544,0.358528,0.962547,0.578233,0.293444,0.765496,0.395533,0.437026,0.0966642,0.87518,0.909061,0.0986024,0.364921,0.0246323,0.298202,0.792811,0.433202,0.858814,0.377197,0.609613,0.529581,0.17531,0.468613,0.911954,0.486289,0.153107,0.677191,0.787648,0.681949,0.59021,0.414586,0.397022,0.584007,0.526723,0.594153,0.823897,0.124381,0.91144,0.23679,0.313373,0.526928,0.539626,0.183949,0.495532,0.153374,0.6187,0.469292,0.714925,0.876029,0.982658,0.25829,0.961815,0.0405284,0.462695,0.229037,0.708901,0.552203,0.163815,0.582633,0.54136,0.0335535,0.417512,0.997208,0.677064,0.627084,0.509309,0.807878,0.352366,0.350155,0.831432,0.275123,0.0427083,0.968615,0.174175,0.135531,0.140274,0.84313,0.258023,0.666967,0.52785,0.686348,0.0604124,0.0877488,0.0779999,0.556836,0.764932,0.252668,0.5542,0.140609,0.0684142,0.0297292,0.28499,0.783334,0.11903,0.278227,0.277968,0.626311,0.563575,0.0310718,0.845568,0.181517,0.361192,0.393191,0.42774,0.583567,0.688077,0.650788,0.228882,0.64747,0.694637,0.0182183,0.949205,0.810503,0.0338353,0.601392,0.766449,0.170892,0.0865901,0.399065,0.502691,0.373631,0.4776,0.448372,0.0716315,0.249661,0.420193,0.159102,0.694535,0.596904,0.407411,0.909916,0.0276688,0.35961,0.0139029,0.637482,0.467571,0.466254,0.544895,0.444594,0.112737,0.73632,0.804702,0.546776,0.219244,0.607346,0.286893,0.0180524,0.20637,0.791562,0.741846,0.996664,0.92436,0.0603117,0.424605,0.0707179,0.841251,0.32499,0.503182,0.526,0.622163,0.612747,0.625734,0.665447,0.927048,0.808309,0.264122,0.212923,0.623412,0.630649,0.327391,0.224829,0.071495,0.260241,0.997886,0.62821,0.672506,0.0654401,0.0082376,0.38533,0.33375,0.375821,0.939058,0.373788,0.577921,0.576763,0.435436,0.460998,0.125526,0.839928,0.0691829,0.913995,0.831476,0.784378,0.851001,0.06313,0.678781,0.761385,0.671997,0.926402,0.662946,0.176326,0.144927,0.980386,0.109348,0.68013,0.580976,0.341878,0.0165149,0.190546,0.878202,0.315613,0.924016,0.318533,0.712004,0.966926,0.00184453,0.942146,0.797272,0.742514,0.345562,0.5537,0.703632,0.966374,0.684674,0.605651,0.30397,0.538489,0.631431,0.60038,0.176517,0.734075,0.411772,0.0897012,0.846421,0.00153965,0.947626,0.936983,0.0742336,0.674992,0.992423,0.157988,0.645263,0.561049,0.080488,0.499168,0.619859,0.955827,0.824961,0.436522,0.443769,0.760165,0.0432823,0.516522,0.20125,0.48841,0.711979,0.807232,0.227402,0.1044,0.37777,0.581661,0.484275,0.63891,0.0512674,0.893425,0.316074,0.10425,0.997041,0.889961,0.524179,0.416724,0.595331,0.289258,0.233049,0.0245564,0.458683,0.880856,0.339089,0.368474,0.467312,0.356402,0.376357,0.884754,0.908953,0.699884,0.708748,0.658292,0.233421,0.694032,0.856589,0.54668,0.558024,0.654451,0.446095,0.689913,0.601918,0.749857,0.707435,0.840582,0.681405,0.784279,0.969769,0.683064,0.239057,0.516653,0.948406,0.119171,0.347713,0.94433,0.808394,0.345457,0.286209,0.206213,0.22242,0.480801,0.337416,0.477738,0.503565,0.529727,0.0763236,0.66952,0.415887,0.387097,0.246659,0.643599,0.663856,0.834284,0.546981,0.149288,0.533281,0.634482,0.639517,0.296771,0.860393,0.230492,0.721922,0.789269,0.592169,0.00110424,0.510851,0.422284,0.643413,0.535942,0.526627,0.67579,0.0509658,0.0573235,0.90511,0.682629,0.741437,0.355645,0.750018,0.0203605,0.766303,0.917005,0.456307,0.232764,0.489675,0.0755904,0.622886,0.827112,0.719801,0.384507,0.865321,0.865725,0.634854,0.327413,0.253411,0.613964,0.0836304,0.606522,0.579735,0.545914,0.974658,0.301656,0.521015,0.860746,0.60936,0.708643,0.81093,0.978338,0.549727,0.995356,0.633946,0.19079,0.799977,0.114713,0.0100895,0.547062,0.392788,0.900356,0.798782,0.569551,0.490352,0.545123,0.341719,0.889928,0.934665,0.919174,0.582211,0.613703,0.538477,0.422116,0.794538,0.414095,0.675791,0.411127,0.359618,0.0938209,0.894819,0.991936,0.455909,0.408065,0.926772,0.210323,0.356531,0.106598,0.120204,0.305016,0.806221,0.556293,0.633621,0.713622,0.35233,0.716397,0.349459,0.986056,0.283677,0.71976,0.684541,0.52012,0.82185,0.98542,0.381453,0.25171,0.993618,0.245109,0.597806,0.783862,0.670186,0.746954,0.565151,0.923429,0.830265,0.833873,0.357096,0.95694,0.169536,0.0413725,0.840947,0.472452,0.391164,0.228124,0.918518,0.618467,0.361589,0.486827,0.537526,0.615364,0.941124,0.661975,0.535581,0.578622,0.175866,0.329551,0.961964,0.320452,0.224154,0.909419,0.406842,0.930975,0.468236,0.958464,0.633636,0.696305,0.390102,0.162767,0.885089,0.210189,0.419887,0.547656,0.0571222,0.875415,0.700918,0.691819,0.275856,0.200939,0.62383,0.595103,0.253201,0.042538,0.135333,0.520804,0.651166,0.468413,0.589585,0.49856,0.16185,0.013368,0.0326713,0.148782,0.989256,0.815582,0.690997,0.693397,0.935039,0.0716764,0.240648,0.255017,0.0255309,0.301908,0.0569155,0.108146,0.573647,0.712657,0.556392,0.000910163,0.458951,0.0913948,0.552106,0.874083,0.452129,0.279225,0.362176,0.312508,0.480976,0.280297,0.477148,0.747625,0.0388473,0.997564,0.215745,0.432996,0.772483,0.102746,0.774414,0.230544,0.672509,0.228725,0.0833571,0.502983,0.463777,0.0947902,0.80991,0.836205,0.344817,0.0136241,0.981052,0.24013,0.207399,0.399946,0.528122,0.423699,0.7243,0.853167,0.154483,0.80034,0.039102,0.87103,0.576801,0.184336,0.716447,0.225732,0.0736431,0.0921891,0.98586,0.32768,0.0883477,0.848965,0.719493,0.140577,0.260596,0.872246,0.731481,0.43568,0.403975,0.679898,0.951701,0.870376,0.816502,0.555572,0.977574,0.887603,0.315548,0.564699,0.548203,0.147412,0.094566,0.985333,0.188656,0.716501,0.462235,0.306412,0.71978,0.344057,0.373228,0.0867706,0.45224,0.0210122,0.0655531,0.933745,0.551178,0.510747,0.625416,0.437884,0.206232,0.214595,0.571649,0.39818,0.767971,0.600737,0.762903,0.7587,0.676737,0.602288,0.658942,0.614381,0.728782,0.869459,0.0840467,0.15108,0.57,0.319061,0.310127,0.00392765,0.90862,0.0315914,0.998993,0.417765,0.804961,0.195173,0.133877,0.352875,0.547242,0.142533,0.0185331,0.916547,0.288791,0.629191,0.246184,0.732609,0.0257955,0.0136615,0.427384,0.671443,0.761164,0.823497,0.633122,0.0477406,0.168317,0.275738,0.122863,0.252966,0.624185,0.124271,0.384161,0.253315,0.824835,0.791598,0.851631,0.0400543,0.599988,0.62699,0.517745,0.0379863,0.791558,0.695779,0.227483,0.889189,0.261348,0.278192,0.0103444,0.0134713,0.858094,0.471763,0.204234,0.0610823,0.553104,0.0858854,0.110572,0.411176,0.102232,0.542084,0.352507,0.0370223,0.812629,0.956738,0.0227184,0.503567,0.812261,0.503606,0.80344,0.636975,0.542982,0.565949,0.987635,0.824373,0.840452,0.732134,0.653745,0.976552,0.0931883,0.0212176,0.139881,0.168562,0.214911,0.934407,0.110793,0.732457,0.256247,0.300462,0.862538,0.848507,0.185763,0.624863,0.513971,0.498856,0.988464,0.0737429,0.746617,0.175501,0.625595,0.378617,0.421352,0.96384,0.971534,0.311433,0.861676,0.422183,0.47226,0.424551,0.390983,0.265959,0.153936,0.970186,0.070562,0.742422,0.600223,0.0474542,0.178431,0.618847,0.983969,0.338851,0.697599,0.861549,0.412788,0.143245,0.392582,0.97095,0.116728,0.358795,0.32483,0.558672,0.0533396,0.396072,0.56609,0.557903,0.411148,0.879242,0.4702,0.573691,0.0611904,0.0401224,0.843345,0.0303482,0.902631,0.636302,0.229849,0.99214,0.747069,0.100783,0.107722,0.509442,0.0119423,0.951476,0.686814,0.765712,0.164072,0.174769,0.621427,0.366308,0.305701,0.103797,0.692494,0.638686,0.327321,0.901696,0.459561,0.0523951,0.714925,0.902613,0.937474,0.30149,0.0598447,0.266725,0.263692,0.325097,0.531956,0.472227,0.604667,0.0526825,0.145045,0.278802,|0.753872,0.804489,0.787831,0.866359,0.497018,0.982904,0.15757,0.962827,0.643856,0.762104,0.110656,0.133914,0.38604,0.80593,0.420735,0.53781,0.382573,0.194373,0.658561,0.06979,0.342948,0.059053,0.137342,0.482299,0.63853,0.438647,0.787119,0.829016,0.936459,0.812388,0.216576,0.225647,0.0799567,0.882441,0.928009,0.739929,0.0994746,0.694248,0.963729,0.875106,0.568662,0.796578,0.599965,0.253802,0.324721,0.216343,0.724016,0.359621,0.626676,0.301355,0.352007,0.734376,0.607006,0.270864,0.793237,0.543636,0.807783,0.21878,0.0574631,0.08722,0.800302,0.2939,0.953644,0.951641,0.0698991,0.28525,0.510164,0.614805,0.0271373,0.0545473,0.451141,0.577629,0.842715,0.841479,0.594535,0.146062,0.573211,0.481332,0.44226,0.20823,0.364983,0.823334,0.218605,0.261064,0.897256,0.807174,0.291431,0.466261,0.421902,0.413083,0.0252727,0.43121,0.226108,0.704318,0.569649,0.859243,0.00767052,0.375302,0.239955,0.60616,0.0381438,0.642959,0.212517,0.507504,0.780569,0.0174909,0.134866,0.449039,0.220579,0.302174,0.502232,0.7944,0.928361,0.571774,0.151304,0.810537,0.0889433,0.352721,0.786039,0.343537,0.729484,0.506693,0.182048,0.837512,0.534518,0.763494,0.303838,0.443923,0.29899,0.0850332,0.0303855,0.0243697,0.891439,0.49647,0.0277276,0.528618,0.227226,0.39782,0.374483,0.995793,0.692846,0.116077,0.505508,0.598749,0.747409,0.199053,0.39766,0.518523,0.916735,0.256439,0.613295,0.620104,0.390693,0.797023,0.655677,0.291467,0.233098,0.702891,0.0660859,0.0669283,0.0163938,0.320611,0.927283,0.57236,0.759824,0.384209,0.661166,0.703395,0.634749,0.210685,0.633169,0.138741,0.408896,0.760032,0.890052,0.785323,0.17226,0.958867,0.58122,0.0310121,0.5203,0.617028,0.48554,0.751128,0.242331,0.473583,0.611853,0.0176992,0.0649374,0.0284719,0.777348,0.524629,0.703111,0.872407,0.721093,0.9525,0.556941,0.867721,0.724922,0.657712,0.139398,0.0907612,0.591481,0.392284,0.652524,0.873833,0.224664,0.92912,0.374357,0.236943,0.6293,0.505139,0.322373,0.242478,0.70209,0.90433,0.790376,0.332473,0.679601,0.356265,0.863384,0.79674,0.434932,0.642078,0.833882,0.644456,0.150541,0.0976335,0.976863,0.707144,0.300155,0.467275,0.908196,0.744814,0.073056,0.99564,0.0466455,0.701545,0.0561938,0.783864,0.00890464,0.930083,0.642448,0.297056,0.485412,0.783436,0.486035,0.446949,0.856659,0.659393,0.342432,0.253801,0.836778,0.254214,0.495041,0.556492,0.112462,0.692166,0.759798,0.587487,0.706212,0.422451,0.881606,0.426644,0.770493,0.105117,0.662228,0.00168103,0.802668,0.335914,0.218125,0.72236,0.417021,0.281097,0.737159,0.756874,0.181987,0.220891,0.855687,0.948801,0.816794,0.481598,0.913127,0.592706,0.466335,0.265963,0.544789,0.557992,0.822598,0.666828,0.668004,0.731731,0.849186,0.713285,0.292381,0.944901,0.257507,0.573585,0.845312,0.596896,0.543913,0.958756,0.954348,0.86477,0.555592,0.810092,0.921485,0.649896,0.861257,0.938685,0.512291,0.645528,0.693286,0.336455,0.54232,0.939013,0.456228,0.250927,0.156169,0.483861,0.129194,0.384594,0.316943,0.775707,0.0898792,0.110762,0.0509906,0.47046,0.381002,0.837393,0.615538,0.386815,0.655261,0.142049,0.768304,0.172376,0.366443,0.16983,0.737122,0.885576,0.908484,0.344081,0.298454,0.689815,0.154157,0.761187,0.406091,0.198087,0.300835,0.539589,0.595777,0.147611,0.891902,0.254986,0.263821,0.973272,0.116425,0.0729979,0.00220001,0.312998,0.653568,0.932495,0.810335,0.243984,0.722734,0.457769,0.488249,0.787398,0.344278,0.895831,0.849812,0.513067,0.0549943,0.275408,0.472728,0.80553,0.521574,0.729809,0.443832,0.707467,0.253588,0.0319623,0.870042,0.405801,0.281686,0.152511,0.68296,0.140909,0.117972,0.242498,0.989083,0.783825,0.304039,0.623753,0.845142,0.797319,0.951506,0.880098,0.48425,0.976104,0.416581,0.401535,0.456931,0.690333,0.845868,0.0515681,0.184544,0.57096,0.876674,0.395214,0.335722,0.120508,0.594757,0.0995625,0.296443,0.962205,0.774232,0.253267,0.605302,0.430204,0.973705,0.259064,0.773884,0.77864,0.902575,0.484963,0.635818,0.0329382,0.630444,0.79374,0.292878,0.986458,0.303555,0.302007,0.00214309,0.79161,0.93832,0.656388,0.68134,0.393869,0.378673,0.126068,0.251084,0.465773,0.0910694,0.301641,0.274803,0.320585,0.246213,0.967878,0.730857,0.464435,0.273721,0.431063,0.386817,0.836783,0.317263,0.802895,0.674084,0.128348,0.611596,0.707593,0.656709,0.97001,0.696722,0.933357,0.125861,0.307351,0.0684448,0.447763,0.0533417,0.824441,0.408344,0.32704,0.978706,0.499689,0.908648,0.345953,0.0766135,0.617114,0.370687,0.76401,0.733845,0.930424,0.852291,0.717306,0.227287,0.59286,0.17472,0.337332,0.689814,0.00158054,0.441169,0.137278,0.480062,0.339278,0.981353,0.597749,0.262325,0.611865,0.900079,0.120095,0.925232,0.719581,0.143656,0.666275,0.600471,0.213571,0.842724,0.0517699,0.401528,0.135593,0.52303,0.79117,0.287584,0.482304,0.483058,0.57397,0.983235,0.342486,0.3462,0.43284,0.105482,0.950038,0.698488,0.153084,0.378805,0.0622572,0.243709,0.0305117,0.723009,0.273692,0.955323,0.916659,0.857948,0.518335,0.490626,0.995911,0.327515,0.0768545,0.910472,0.817804,0.38505,0.397503,0.463548,0.162266,0.967912,0.745336,0.210519,0.897626,0.162148,0.303823,0.102936,0.671043,0.769015,0.477536,0.263151,0.343424,0.160996,0.290481,0.0474727,0.186597,0.108962,0.738018,0.297304,0.144393,0.338373,0.861124,0.741393,0.550542,0.476019,0.201394,0.21939,0.607965,0.273464,0.0430013,0.0532361,0.694579,0.155091,0.666225,0.716855,0.751482,0.500346,0.584623,0.797628,0.56789,0.907438,0.529244,0.76752,0.399887,0.663986,0.597233,0.30208,0.50638,0.658232,0.860157,0.884661,0.849399,0.116085,0.591575,0.737499,0.0606281,0.35642,0.174736,0.426441,0.715189,0.697082,0.429233,0.410445,0.692192,0.0722036,0.905335,0.694043,0.000639796,0.0636369,0.318371,0.844939,0.479241,0.71213,0.250021,0.044996,0.454044,0.169864,0.637419,0.86901,0.563567,0.266139,0.330471,0.174827,0.846714,0.440367,0.373483,0.112632,0.91367,0.98163,0.0834813,0.503548,0.0403718,0.0804803,0.610024,0.481913,0.507344,0.560935,0.327625,0.119714,0.162262,0.324138,0.80715,0.992975,0.105232,0.498098,0.0134095,0.550175,0.400676,0.869571,0.782624,0.304509,0.63897,0.520538,0.342075,0.183079,0.352478,0.747928,0.56143,0.95414,0.5476,0.713438,0.00330877,0.856215,0.309234,0.876426,0.821147,0.688282,0.440874,0.981747,0.670923,0.859927,0.379805,0.390258,0.183531,0.959358,0.497112,0.940531,0.31983,0.579967,0.917584,0.700833,0.0510708,0.842488,0.980925,0.686014,0.0966239,0.387708,0.0755841,0.821389,0.588197,0.123131,0.967487,0.785844,0.463336,0.451138,0.311167,0.984042,0.387736,0.888915,0.904048,0.279562,0.589107,0.422895,0.625673,0.025842,0.549447,0.940251,0.476664,0.848724,0.818489,0.708465,0.904523,0.259475,0.0998545,0.679849,0.462899,0.526333,0.976833,0.0777981,0.754404,0.766233,0.203073,0.637486,0.726116,0.5015,0.589287,0.151954,0.54271,0.300992,0.702466,0.253722,0.691147,0.0147861,0.00259113,0.220754,0.360021,0.326107,0.211853,0.375335,0.0946091,0.182115,0.592317,0.735735,0.616566,0.82676,0.344603,0.517471,0.386078,0.451731,0.702429,0.742224,0.0287595,0.334801,0.394303,0.784192,0.359682,0.884265,0.897441,0.00332916,0.774634,0.212944,0.661673,0.0894105,0.658838,0.433145,0.588179,0.537436,0.794384,0.936779,0.988332,0.886729,0.598202,0.712666,0.201022,0.508608,0.03054,0.138113,0.699493,0.964995,0.660098,0.877083,0.608209,0.729049,0.923183,0.355853,0.919983,0.0123715,0.461142,0.370327,0.532878,0.685926,0.511114,0.42511,0.441584,0.780068,0.34233,0.519666,0.0430735,0.832418,0.795684,0.361538,0.482869,0.925083,0.0235829,0.0553133,0.935705,0.265259,0.947582,0.20716,0.451298,0.948638,0.0759965,0.625767,0.822996,0.799935,0.298942,0.556634,0.942114,0.48417,0.768191,0.12982,0.528642,0.0241113,0.6355,0.0910462,0.746232,0.52947,0.0112652,0.698344,0.528028,0.658837,0.619059,0.738267,0.331392,0.909439,0.00286072,0.12184,0.436287,0.616181,0.527949,0.0799255,0.601901,0.0320281,0.833839,0.118983,0.0708748,0.267432,0.988941,0.444296,0.751249,0.379726,0.892418,0.316787,0.117949,0.823798,0.825118,0.689519,0.99084,0.0583104,0.533263,0.789291,0.900859,0.79674,0.907165,0.710691,0.0368356,0.574171,0.510948,0.237926,0.16051,0.533639,0.371808,0.704309,0.787594,0.341523,0.210554,0.196338,0.426435,0.588972,0.305358,0.328738,0.0995244,0.217467,0.0113869,0.31409,0.915274,0.783093,0.826753,0.730443,0.58957,0.94175,0.182205,0.0892363,0.724388,0.73028,0.867098,0.697443,0.409089,0.368415,0.395118,0.228368,0.567984,0.125243,0.747587,0.535962,0.0809865,0.508166,0.00483286,0.703408,0.186232,0.760355,0.565895,0.475318,0.791189,0.574159,0.446547,0.0620784,0.36235,0.825103,0.927128,0.499886,0.534056,0.372094,0.452917,0.596979,0.300317,0.855815,0.202466,0.539284,0.537381,0.222059,0.175122,0.346352,0.885157,0.838209,0.299171,0.12129,0.123543,0.759626,0.0893774,0.820968,0.854791,0.328953,0.962559,0.688509,0.571181,0.703278,0.792361,0.615283,0.173482,0.256431,0.831828,0.838726,0.95572,0.678943,0.096985,0.310025,0.359755,0.309424,0.637967,0.696281,0.821549,0.088917,0.162906,0.248522,0.53442,0.114414,0.630735,0.861159,0.0550777,0.824157,0.903069,0.298563,0.985257,0.476989,0.560131,0.731302,0.666897,0.437484,0.962702,0.250459,0.86393,0.387731,0.718135,0.534068,0.161858,0.392094,0.0588906,0.727045,0.412037,0.253337,0.119979,0.90366,0.652605,|0.359844,0.439279,0.58672,0.953483,0.597944,0.240626,0.425806,0.576076,0.535369,0.597372,0.886547,0.502297,0.923578,0.400459,0.259563,0.760916,0.144619,0.792167,0.783949,0.279966,0.0152563,0.588471,0.212405,0.86707,0.162855,0.000929534,0.751894,0.770943,0.669885,0.819825,0.544551,0.440452,0.238573,0.137216,0.706628,0.0201463,0.509312,0.42244,0.94157,0.333206,0.850594,0.851527,0.204192,0.557757,0.780815,0.194948,0.683331,0.753728,0.46694,0.847751,0.936936,0.923346,0.171287,0.679256,0.144144,0.825557,0.530021,0.967699,0.389069,0.819223,0.984459,0.105463,0.688216,0.668639,0.0490666,0.384049,0.059705,0.766598,0.615321,0.232881,0.522034,0.0442304,0.868769,0.805886,0.589706,0.245039,0.598234,0.154101,0.993896,0.213376,0.121578,0.958098,0.12038,0.0593112,0.853793,0.0996868,0.133832,0.140841,0.88374,0.168778,0.313533,0.678838,0.0872391,0.438438,0.428642,0.0571859,0.322194,0.169414,0.458902,0.214745,0.539306,0.400264,0.281818,0.677368,0.735031,0.411854,0.674075,0.267959,0.955466,0.216346,0.947551,0.989667,0.564558,0.475993,0.92513,0.208173,0.293,0.60466,0.150859,0.307729,0.711694,0.478955,0.0927354,0.97231,0.748553,0.928023,0.879933,0.764073,0.64843,0.87813,0.934516,0.44112,0.624222,0.237919,0.892523,0.934473,0.21732,0.881557,0.853712,0.624886,0.0151805,0.274989,0.00848615,0.420259,0.311416,0.035008,0.967301,0.437319,0.319312,0.91465,0.559068,0.569035,0.649313,0.472051,0.649698,0.814642,0.0157264,0.972271,0.0628471,0.875039,0.384498,0.396869,0.675808,0.0164863,0.229753,0.641547,0.121603,0.357038,0.506334,0.210154,0.611102,0.0779665,0.509922,0.483755,0.0802001,0.792132,0.804357,0.111518,0.281433,0.337874,0.145723,0.746532,0.970174,0.951705,0.74523,0.599769,0.675001,0.596249,0.620468,0.746339,0.340182,0.0982714,0.313683,0.834109,0.192387,0.0232356,0.135213,0.659325,0.027998,0.52955,0.683468,0.495775,0.840731,0.0278985,0.612216,0.175223,0.536016,0.701039,0.227572,0.786198,0.781801,0.160746,0.16926,0.478684,0.00919938,0.989069,0.465081,0.384305,0.838927,0.916365,0.400952,0.533116,0.931489,0.858413,0.530379,0.409312,0.81747,0.0409656,0.481088,0.26834,0.28611,0.437048,0.0655284,0.462915,0.641331,0.208566,0.92835,0.788837,0.155549,0.0671089,0.582146,0.164013,0.506003,0.117397,0.418199,0.52036,0.583306,0.880741,0.551039,0.629489,0.257394,0.347844,0.900191,0.506883,0.0663119,0.249735,0.658693,0.112778,0.890608,0.703824,0.662679,0.376661,0.673141,0.442008,0.530869,0.985062,0.523458,0.515853,0.248348,0.336516,0.996736,0.465607,0.604084,0.854225,0.486138,0.409435,0.181522,0.189022,0.194417,0.555081,0.823245,0.828792,0.656696,0.0927629,0.59476,0.459687,0.977815,0.65601,0.476704,0.567774,0.146702,0.249335,0.685312,0.385933,0.7234,0.672083,0.472274,0.667533,0.409184,0.624457,0.743702,0.00533003,0.530519,0.203103,0.289851,0.319237,0.29944,0.257534,0.702558,0.883906,0.545557,0.861624,0.915946,0.437185,0.816392,0.752854,0.814042,0.921719,0.847914,0.855377,0.514846,0.494135,0.248499,0.152209,0.830646,0.720263,0.501737,0.728533,0.0158547,0.635553,0.355365,0.205535,0.287814,0.383974,0.791976,0.0307078,0.345275,0.0387759,0.287237,0.420289,0.797434,0.992514,0.861749,0.115073,0.896375,0.714659,0.0506408,0.048761,0.588932,0.570702,0.803749,0.48624,0.854977,0.171768,0.310775,0.31393,0.308226,0.307472,0.138109,0.330179,0.351474,0.438305,0.79428,0.529308,0.400222,0.122027,0.696351,0.943718,0.497795,0.487067,0.104104,0.941519,0.0995597,0.916323,0.904527,0.998402,0.395808,0.698372,0.162559,0.975719,0.747454,0.812121,0.594101,0.449543,0.819335,0.673652,0.710876,0.326753,0.241407,0.37652,0.11964,0.896947,0.743208,0.764813,0.385957,0.26408,0.353504,0.351104,0.77449,0.865897,0.861883,0.0633156,0.113378,0.584891,0.0797377,0.313843,0.399884,0.849618,0.894079,0.768921,0.309843,0.554631,0.395822,0.360979,0.462255,0.45255,0.453247,0.288513,0.326959,0.591194,0.499711,0.626537,0.629036,0.95946,0.00736022,0.639884,0.641837,0.849014,0.0793775,0.58815,0.558133,0.544843,0.0169218,0.0449526,0.949435,0.0700174,0.638937,0.109552,0.505978,0.421761,0.0208218,0.0127781,0.533787,0.293361,0.143819,0.940087,0.637504,0.209352,0.199453,0.780101,0.0882183,0.330337,0.760427,0.999182,0.234813,0.26067,0.134831,0.702768,0.847081,0.623992,0.466363,0.362578,0.00397986,0.0367795,0.425704,0.868159,0.0176985,0.382533,0.168018,0.297131,0.807845,0.740379,0.316468,0.221621,0.365384,0.331744,0.928079,0.0586177,0.619357,0.378588,0.798919,0.0669715,0.390197,0.879939,0.0984609,0.397607,0.837977,0.868603,0.0373064,0.940306,0.842136,0.877997,0.627348,0.05592,0.250184,0.486557,0.201378,0.614312,0.395887,0.0404477,0.567368,0.428349,0.832996,0.47573,0.706812,0.364695,0.895734,0.859922,0.440311,0.320896,0.773915,0.897745,0.178699,0.198683,0.0210627,0.753254,0.344495,0.198245,0.727737,0.353039,0.995622,0.66225,0.285304,0.487645,0.0290134,0.718105,0.542349,0.471585,0.760063,0.132336,0.0783138,0.677126,0.789579,0.939938,0.876272,0.452641,0.606472,0.625677,0.467167,0.633181,0.154606,0.302548,0.959326,0.985373,0.223232,0.155928,0.450396,0.566441,0.106115,0.317029,0.109552,0.732253,0.667913,0.613461,0.534719,0.701283,0.792011,0.119745,0.495828,0.504785,0.940271,0.265124,0.726432,0.305935,0.304099,0.986498,0.649471,0.47784,0.329923,0.462563,0.541931,0.314574,0.0658572,0.395635,0.706923,0.57924,0.798746,0.925812,0.299727,0.905282,0.934904,0.345253,0.549847,0.410498,0.454001,0.730623,0.778059,0.303059,0.430655,0.0828831,0.659297,0.0884714,0.0339354,0.395311,0.393488,0.615194,0.550411,0.398611,0.128671,0.377733,0.825948,0.745502,0.558733,0.223549,0.0700635,0.183775,0.125819,0.23022,0.363595,0.716475,0.310842,0.389562,0.225226,0.363242,0.373549,0.251174,0.672835,0.290476,0.135044,0.937216,0.642221,0.953977,0.832465,0.889525,0.408938,0.0138983,0.262835,0.104673,0.0869182,0.636946,0.196942,0.227398,0.786289,0.30128,0.514714,0.603837,0.889406,0.778032,0.684229,0.429713,0.692024,0.805312,0.112007,0.528991,0.260926,0.645765,0.395405,0.419456,0.750707,0.660785,0.187031,0.896072,0.903982,0.0103458,0.987524,0.0509213,0.470119,0.305361,0.778149,0.72997,0.109128,0.0763651,0.597294,0.928078,0.547557,0.575301,0.557628,0.302549,0.61664,0.682844,0.0398384,0.429937,0.514152,0.639893,0.86157,0.912668,0.8505,0.417105,0.537573,0.0656301,0.844907,0.940324,0.130329,0.202027,0.225753,0.5081,0.0935073,0.0185125,0.882566,0.738354,0.100768,0.342656,0.530782,0.69848,0.86411,0.730718,0.358132,0.815196,0.629876,0.700357,0.602269,0.122074,0.160942,0.189255,0.885344,0.0643331,0.0384938,0.965408,0.135674,0.586323,0.871695,0.772264,0.717221,0.884126,0.557443,0.332547,0.292467,0.00938588,0.644766,0.0639031,0.710258,0.0832009,0.567988,0.413068,0.448769,0.0679378,0.399279,0.624352,0.985438,0.762752,0.661963,0.00709999,0.954595,0.416032,0.275999,0.432301,0.895413,0.0250316,0.342168,0.593033,0.0352705,0.537024,0.520679,0.503884,0.609544,0.371619,0.942329,0.796625,0.133191,0.782881,0.186042,0.25909,0.532578,0.515914,0.886975,0.451951,0.100541,0.74534,0.445293,0.926773,0.937592,0.927803,0.270885,0.90565,0.412711,0.0632404,0.406723,0.442326,0.58891,0.741053,0.910235,0.502824,0.478125,0.417429,0.194575,0.0756506,0.292576,0.371894,0.0246088,0.203604,0.905964,0.649602,0.554043,0.283744,0.707204,0.866219,0.935367,0.39092,0.916955,0.102039,0.222452,0.0100641,0.06064,0.722751,0.866991,0.588993,0.461722,0.994543,0.564896,0.0901024,0.152656,0.212943,0.0848231,0.421793,0.775036,0.617819,0.918459,0.766918,0.112721,0.246346,0.92216,0.578494,0.638447,0.712491,0.118652,0.995174,0.401048,0.660322,0.0203386,0.420309,0.855503,0.402698,0.0291488,0.955292,0.0630358,0.423251,0.197847,0.179453,0.955961,0.00063616,0.474853,0.981562,0.160698,0.309841,0.908651,0.176961,0.514948,0.39655,0.0352062,0.17593,0.192223,0.41643,0.00402749,0.33899,0.965994,0.472331,0.724206,0.506838,0.461247,0.795981,0.614742,0.667693,0.375505,0.434891,0.7119,0.0674969,0.80722,0.366463,0.145875,0.36184,0.968271,0.746337,0.156328,0.846479,0.711396,0.282089,0.916687,0.0718117,0.714204,0.327932,0.540327,0.867636,0.112023,0.844591,0.86457,0.44083,0.727014,0.22869,0.933084,0.325702,0.826091,0.875331,0.651591,0.984911,0.639705,0.465228,0.00432122,0.681898,0.38616,0.677873,0.820656,0.142594,0.351494,0.362762,0.546347,0.12567,0.274302,0.822748,0.699399,0.503174,0.787066,0.269224,0.710848,0.716748,0.510486,0.564521,0.673552,0.54719,0.763675,0.204265,0.553081,0.922981,0.611087,0.956847,0.442188,0.42915,0.570471,0.816307,0.556232,0.523261,0.339638,0.211639,0.896797,0.711587,0.206165,0.38675,0.607452,0.409093,0.222228,0.048417,0.505085,0.0826626,0.461736,0.0145485,0.731721,0.828054,0.467724,0.26491,0.471951,0.884253,0.0348604,0.905942,0.925681,0.54149,0.124528,0.829993,0.731805,0.560569,0.150294,0.100307,0.585928,0.100614,0.166786,0.219379,0.662452,0.854503,0.238135,0.41505,0.617708,0.132223,0.530746,0.071393,0.556442,0.765406,0.721078,0.861228,0.853147,0.111025,0.235389,0.699552,0.377152,0.738979,0.796344,0.397912,0.80859,0.338211,0.558758,0.229322,0.38825,0.999098,0.875395,0.176308,0.109999,0.165676,0.197437,0.718583,0.276884,0.349572,0.0738825,0.269738,0.563193,0.103017,0.311817,0.193377,0.740662,0.610067,0.423148,0.367953,0.24995,0.816805,|0.71408,0.351394,0.00625944,0.982807,0.548219,0.220223,0.546381,0.0714306,0.693485,0.0646849,0.366748,0.730233,0.549522,0.516488,0.0753366,0.363603,0.946896,0.128688,0.981203,0.451908,0.664883,0.180825,0.858546,0.630151,0.135308,0.811763,0.987199,0.842337,0.391619,0.396451,0.749468,0.689415,0.26172,0.182041,0.0901594,0.340453,0.17357,0.985267,0.433585,0.457749,0.920294,0.115547,0.614356,0.637173,0.788112,0.0969209,0.632627,0.221702,0.959737,0.894252,0.151791,0.645985,0.635154,0.815229,0.595074,0.357084,0.916032,0.728008,0.692963,0.765373,0.208755,0.0654695,0.354246,0.445562,0.308039,0.181957,0.474857,0.148837,0.927115,0.774602,0.45436,0.590739,0.123956,0.645674,0.229556,0.955466,0.528659,0.0774696,0.895358,0.261257,0.252233,0.667229,0.632384,0.772587,0.570946,0.257839,0.27658,0.231286,0.0195873,0.101927,0.743577,0.817922,0.615456,0.583292,0.32471,0.863993,0.735722,0.792971,0.922224,0.302798,0.707011,0.344637,0.732397,0.695117,0.278756,0.605884,0.140481,0.84452,0.781747,0.0712899,0.495539,0.534508,0.693954,0.595268,0.845889,0.746342,0.0122537,0.302926,0.281706,0.301711,0.915519,0.610632,0.110152,0.0706681,0.142339,0.317748,0.746609,0.226253,0.562708,0.456068,0.456179,0.246365,0.866636,0.912806,0.481819,0.583934,0.593768,0.707883,0.894653,0.727717,0.159497,0.968252,0.896373,0.489123,0.681328,0.35946,0.171861,0.933886,0.568642,0.0411521,0.230042,0.76479,0.748326,0.705342,0.330425,0.500471,0.030629,0.184671,0.661287,0.261648,0.802948,0.805755,0.690907,0.415654,0.468949,0.546154,0.0894156,0.592715,0.358014,0.885427,0.607191,0.781987,0.384858,0.571484,0.226258,0.364966,0.0379185,0.942034,0.405811,0.629106,0.815697,0.121334,0.467887,0.544086,0.453219,0.593339,0.204212,0.486466,0.0380157,0.750412,0.921024,0.184635,0.238453,0.169409,0.518569,0.202293,0.190636,0.623557,0.914856,0.0241929,0.992185,0.322992,0.919632,0.423288,0.245069,0.567239,0.55972,0.163228,0.389628,0.61425,0.42465,0.0619442,0.421112,0.641566,0.50256,0.0952866,0.4347,0.0223887,0.26227,0.178146,0.531594,0.473527,0.935084,0.990317,0.844187,0.639631,0.895312,0.252441,0.272467,0.513137,0.502007,0.724933,0.357767,0.072095,0.640772,0.561106,0.0642482,0.837481,0.74601,0.303522,0.189745,0.282475,0.286525,0.446992,0.887198,0.877283,0.866726,0.621565,0.841962,0.302846,0.0436599,0.0539495,0.37572,0.893279,0.563454,0.139662,0.176775,0.795979,0.752303,0.495543,0.0297922,0.119349,0.459946,0.355735,0.908563,0.684853,0.222935,0.493235,0.735305,0.326993,0.204189,0.0746451,0.596887,0.673843,0.272215,0.501809,0.241421,0.938873,0.162553,0.103665,0.182764,0.353616,0.322276,0.454339,0.996761,0.00459462,0.602233,0.552687,0.211645,0.716847,0.528655,0.869479,0.408559,0.603384,0.537291,0.155836,0.0416057,0.829247,0.720059,0.311787,0.736593,0.113894,0.918165,0.533572,0.77127,0.352656,0.894171,0.516198,0.341178,0.493525,0.843773,0.495784,0.100012,0.138848,0.781184,0.0580466,0.031006,0.299865,0.148156,0.847544,0.65306,0.781577,0.339591,0.642405,0.0852962,0.655743,0.807808,0.238723,0.334332,0.380415,0.417805,0.387467,0.171187,0.950781,0.162957,0.760171,0.238096,0.933744,0.261879,0.57016,0.190364,0.722398,0.903882,0.944584,0.88627,0.0918486,0.0915832,0.0923516,0.789267,0.820063,0.237883,0.327488,0.492821,0.257358,0.0916778,0.316938,0.559658,0.132905,0.559029,0.682095,0.628202,0.358278,0.334834,0.561434,0.973528,0.0426784,0.488498,0.650741,0.870663,0.552663,0.756392,0.96496,0.977074,0.481737,0.516565,0.432706,0.845253,0.951857,0.0456229,0.498889,0.997977,0.0838113,0.688625,0.313349,0.331262,0.19245,0.607097,0.935717,0.162888,0.098592,0.488535,0.130304,0.456489,0.209177,0.321437,0.661536,0.878358,0.309253,0.102896,0.0351651,0.0126854,0.311546,0.667065,0.607604,0.704553,0.580468,0.885561,0.595987,0.0687886,0.0457862,0.824305,0.464434,0.662413,0.88512,0.149001,0.763743,0.476638,0.807867,0.900776,0.246115,0.890719,0.457914,0.762925,0.0291191,0.622559,0.458988,0.74361,0.615232,0.46942,0.656676,0.438479,0.901091,0.869232,0.338587,0.212046,0.453078,0.949099,0.507912,0.940709,0.317982,0.511743,0.0381471,0.398245,0.557657,0.578937,0.531181,0.460216,0.729151,0.57211,0.470855,0.841012,0.369986,0.13595,0.192148,0.442842,0.117614,0.515763,0.384717,0.243663,0.346428,0.873717,0.745639,0.538612,0.111666,0.765278,0.401394,0.646855,0.823208,0.188037,0.368558,0.419891,0.529294,0.00972944,0.24521,0.752412,0.455064,0.122777,0.452573,0.376644,0.164258,0.898576,0.641585,0.924153,0.0368254,0.913633,0.74136,0.225519,0.770003,0.397328,0.380878,0.806397,0.778073,0.48641,0.923501,0.792221,0.094989,0.0110661,0.148993,0.478751,0.246217,0.506435,0.301369,0.570434,0.792733,0.773852,0.378647,0.116638,0.0679783,0.647514,0.584588,0.559032,0.694776,0.884628,0.838409,0.00477517,0.59054,0.855645,0.81911,0.535311,0.569746,0.932245,0.429306,0.228347,0.411164,0.761324,0.197073,0.15562,0.0315294,0.850361,0.798263,0.163689,0.294815,0.417407,0.164624,0.281001,0.476205,0.285686,0.869761,0.202012,0.335118,0.511585,0.0739698,0.985276,0.975599,0.658883,0.668675,0.446632,0.12416,0.85905,0.21541,0.0477651,0.908076,0.915649,0.510331,0.335915,0.300469,0.204219,0.6409,0.91436,0.27691,0.725487,0.95326,0.512018,0.942218,0.553266,0.415264,0.4906,0.607813,0.205139,0.581975,0.183967,0.815553,0.285865,0.343241,0.00772971,0.0811276,0.227018,0.579454,0.440049,0.716093,0.982623,0.652721,0.889836,0.0812239,0.126201,0.739876,0.790168,0.939216,0.340778,0.478697,0.704295,0.221711,0.793019,0.841375,0.55924,0.221203,0.638008,0.0584549,0.0996473,0.060319,0.944384,0.451686,0.709167,0.677684,0.440663,0.86521,0.00977629,0.167124,0.543003,0.777289,0.167542,0.0569751,0.0722057,0.261156,0.856451,0.939702,0.65476,0.746821,0.0964957,0.834283,0.790827,0.355199,0.462804,0.764344,0.311147,0.567152,0.556017,0.893912,0.996469,0.365978,0.771047,0.485869,0.742831,0.552388,0.9327,0.779235,0.663387,0.744031,0.920685,0.602624,0.491957,0.248023,0.147524,0.931139,0.448334,0.165527,0.0235424,0.860333,0.431093,0.868471,0.971242,0.0269961,0.56268,0.541361,0.214685,0.555732,0.57422,0.109844,0.899002,0.241431,0.568613,0.151937,0.328139,0.275417,0.92573,0.0942137,0.844559,0.532527,0.0840207,0.237738,0.106522,0.146671,0.651661,0.0230084,0.419697,0.579159,0.828011,0.438678,0.950343,0.6351,0.147165,0.639951,0.349591,0.891313,0.891502,0.832695,0.645271,0.611347,0.899988,0.0513402,0.189504,0.980263,0.544386,0.245235,0.469573,0.930255,0.00525677,0.127034,0.798282,0.36656,0.127169,0.133061,0.524551,0.00770587,0.919617,0.610322,0.874072,0.37067,0.284335,0.411761,0.406882,0.314167,0.390883,0.202745,0.813007,0.42858,0.00478977,0.103622,0.977232,0.784579,0.254433,0.925194,0.142174,0.980341,0.532171,0.106559,0.0768247,0.360027,0.415562,0.974593,0.184129,0.240811,0.224883,0.33422,0.145029,0.464495,0.110397,0.459252,0.628642,0.177607,0.894677,0.413706,0.874603,0.359031,0.761598,0.756751,0.269914,0.958322,0.150867,0.563656,0.162525,0.247408,0.830924,0.837167,0.893644,0.972456,0.220471,0.859532,0.568972,0.700334,0.139486,0.392513,0.557246,0.767469,0.618632,0.696645,0.221808,0.873411,0.18049,0.0707644,0.575816,0.900656,0.0935774,0.267476,0.0858743,0.146284,0.311822,0.910857,0.497178,0.886294,0.28572,0.628492,0.714243,0.477212,0.174139,0.298995,0.44228,0.087504,0.762747,0.614094,0.00270128,0.67921,0.248647,0.449367,0.426786,0.141277,0.217416,0.356659,0.570777,0.995918,0.0801976,0.876686,0.281331,0.420429,0.192173,0.680451,0.75063,0.00117916,0.867611,0.687937,0.624586,0.874552,0.742396,0.767782,0.979287,0.273191,0.769734,0.239198,0.179814,0.928984,0.857372,0.998655,0.913833,0.242108,0.437759,0.571236,0.443326,0.24314,0.569123,0.877019,0.513456,0.39883,0.0629684,0.854532,0.637509,0.152587,0.314684,0.493191,0.763489,0.489709,0.931982,0.933488,0.467758,0.801205,0.114709,0.0222349,0.125888,0.976671,0.809239,0.760636,0.284407,0.126704,0.473307,0.274958,0.749528,0.694892,0.381091,0.959781,0.763515,0.494169,0.16415,0.165104,0.401068,0.875142,0.51082,0.128355,0.598961,0.214533,0.422737,0.579057,0.528402,0.0575359,0.672939,0.101481,0.385198,0.538936,0.119191,0.222374,0.999317,0.70722,0.719113,0.379891,0.957775,0.459554,0.710261,0.229884,0.18358,0.15165,0.335054,0.82658,0.44385,0.24568,0.659163,0.766935,0.643023,0.370974,0.279703,0.953176,0.911681,0.535188,0.310567,0.968262,0.41966,0.0165,0.0165985,0.219956,0.701062,0.143846,0.736101,0.457604,0.326694,0.65711,0.435679,0.874297,0.400992,0.353662,0.123452,0.989302,0.482534,0.864403,0.243572,0.43495,0.224039,0.476007,0.985246,0.808976,0.862809,0.127286,0.268292,0.37749,0.0201566,0.85971,0.163872,0.172077,0.717706,0.366396,0.493461,0.580803,0.0235961,0.21816,0.385143,0.344995,0.592066,0.767708,0.170362,0.127129,0.743189,0.763032,0.882389,0.0895488,0.960792,0.0442715,0.613019,0.658178,0.943903,0.255596,0.925722,0.768997,0.744835,0.609893,0.00415283,0.06525,0.624156,0.401792,0.629435,0.600507,0.118629,0.283658,0.642892,0.696181,0.208587,0.10904,0.425898,0.759318,0.746512,0.219689,0.994089,0.886093,0.879853,0.378319,0.272558,0.338601,0.437194,0.952626,0.697956,0.382076,0.857121,0.914753,0.683892,0.706903,0.421302,0.739086,0.924025,0.176652,0.329425,0.00656134,0.561702,0.804739,0.959223,0.681483,|0.0779885,0.275128,0.56634,0.149917,0.649149,0.545096,0.121529,0.162446,0.503912,0.700554,0.779852,0.356153,0.949674,0.118883,0.599063,0.750279,0.234337,0.278898,0.302326,0.0913164,0.40958,0.0609796,0.701339,0.466199,0.144494,0.374383,0.877591,0.425674,0.201789,0.572301,0.242419,0.275685,0.48787,0.733216,0.511611,0.603554,0.053769,0.898497,0.365273,0.171544,0.859018,0.614192,0.688761,0.793933,0.973536,0.00988156,0.735059,0.345127,0.958849,0.954052,0.720741,0.273832,0.424251,0.302846,0.694615,0.365534,0.791063,0.4974,0.981254,0.466863,0.42403,0.541862,0.768659,0.97312,0.157472,0.0861802,0.9395,0.98142,0.141671,0.396887,0.645707,0.848595,0.528177,0.913449,0.0252442,0.522597,0.0382604,0.927768,0.823378,0.818671,0.84326,0.691041,0.375525,0.936566,0.601231,0.51909,0.507652,0.686386,0.936094,0.18685,0.550685,0.975343,0.763751,0.604201,0.262944,0.0917666,0.86731,0.229139,0.963447,0.931179,0.0309331,0.777767,0.913793,0.265496,0.66868,0.111344,0.323984,0.188321,0.106783,0.384674,0.684267,0.966939,0.368624,0.281532,0.210517,0.904862,0.105638,0.679171,0.738173,0.649284,0.858561,0.916221,0.579164,0.791664,0.969862,0.0912445,0.212621,0.310548,0.947354,0.545934,0.418583,0.391481,0.738825,0.197987,0.730601,0.148998,0.491418,0.630178,0.506642,0.92205,0.973094,0.624289,0.417489,0.103455,0.11316,0.322332,0.736618,0.872441,0.304842,0.948922,0.398378,0.51769,0.933087,0.325441,0.321632,0.386875,0.0368478,0.23259,0.99436,0.35552,0.943561,0.657707,0.843844,0.146155,0.70859,0.873018,0.177083,0.757352,0.577776,0.84856,0.840283,0.956899,0.20467,0.839991,0.528129,0.267557,0.590016,0.090835,0.855086,0.365616,0.287847,0.265461,0.00531501,0.55475,0.71571,0.88838,0.839358,0.753069,0.0307558,0.193753,0.834581,0.850946,0.700807,0.906931,0.0675989,0.879311,0.243219,0.931355,0.0521712,0.798856,0.485141,0.199367,0.352701,0.876129,0.736526,0.446044,0.514765,0.520581,0.103487,0.14255,0.173952,0.210645,0.747713,0.956013,0.578114,0.376704,0.549385,0.866209,0.0272338,0.90898,0.58073,0.0773077,0.778267,0.244572,0.956045,0.874452,0.257263,0.445063,0.628814,0.153794,0.79788,0.807459,0.954478,0.226513,0.796167,0.822925,0.502681,0.588891,0.538506,0.959743,0.0974068,0.130027,0.184242,0.960883,0.191557,0.760872,0.677614,0.115417,0.561629,0.607162,0.821706,0.545864,0.595583,0.71372,0.287125,0.0677261,0.999922,0.15595,0.424224,0.326557,0.894812,0.216765,0.231674,0.795754,0.769439,0.924339,0.950185,0.525686,0.734598,0.747133,0.031013,0.400236,0.932214,0.369196,0.705853,0.135171,0.33897,0.859361,0.144255,0.239031,0.423908,0.981281,0.980905,0.383995,0.68207,0.531703,0.408625,0.170091,0.0795018,0.651201,0.157484,0.176306,0.696635,0.913975,0.411066,0.279432,0.0420579,0.201237,0.490097,0.421195,0.705254,0.304765,0.767498,0.420773,0.42602,0.421271,0.514938,0.161452,0.270841,0.43573,0.819877,0.412229,0.240254,0.119146,0.336089,0.365498,0.685397,0.255647,0.334023,0.815077,0.854761,0.42442,0.395295,0.896419,0.869614,0.369391,0.949082,0.417425,0.947622,0.643976,0.371432,0.50431,0.989349,0.74144,0.471896,0.248744,0.76487,0.0550877,0.569627,0.357413,0.461946,0.106759,0.780675,0.68629,0.385186,0.26294,0.290955,0.954488,0.04304,0.140223,0.799227,0.14299,0.174676,0.223672,0.875755,0.995325,0.827418,0.588711,0.905532,0.494653,0.896191,0.039237,0.909964,0.0403256,0.578168,0.285457,0.33146,0.423714,0.673664,0.784701,0.322497,0.587684,0.332958,0.909267,0.241455,0.270574,0.763128,0.786067,0.685065,0.637571,0.860441,0.077588,0.754506,0.171153,0.499722,0.392175,0.942716,0.266163,0.616109,0.929779,0.620999,0.979023,0.760706,0.992412,0.306621,0.776651,0.0543478,0.530364,0.807428,0.0405979,0.107858,0.543398,0.838571,0.110786,0.833317,0.906033,0.683493,0.272853,0.105524,0.940495,0.363841,0.952953,0.308697,0.917714,0.752019,0.580885,0.539355,0.0473822,0.309774,0.449205,0.677029,0.943705,0.796751,0.563431,0.615522,0.265985,0.973651,0.311517,0.227834,0.593738,0.607925,0.681774,0.271849,0.904786,0.124817,0.472859,0.556251,0.640151,0.640454,0.472689,0.471482,0.657174,0.113563,0.209957,0.0543039,0.499556,0.853834,0.940807,0.375915,0.369852,0.703905,0.8484,0.537216,0.714274,0.232304,0.0913182,0.753385,0.179987,0.563277,0.613614,0.276088,0.587215,0.358129,0.668915,0.838034,0.702773,0.737815,0.377503,0.515734,0.46522,0.281169,0.966275,0.327219,0.749492,0.615621,0.605934,0.134283,0.848254,0.595922,0.343774,0.961558,0.26767,0.274465,0.405795,0.967696,0.201605,0.141925,0.119394,0.194495,0.3757,0.108083,0.84814,0.872481,0.422463,0.461471,0.295071,0.203131,0.210234,0.406849,0.886228,0.812076,0.993623,0.4456,0.174307,0.951702,0.925734,0.70476,0.789485,0.0146581,0.0733508,0.119727,0.232408,0.282883,0.538364,0.31314,0.399078,0.550547,0.809511,0.205296,0.749771,0.617446,0.349215,0.250523,0.167827,0.362233,0.17695,0.938561,0.685332,0.309121,0.0840424,0.647844,0.504661,0.710078,0.561168,0.636972,0.828015,0.177436,0.355684,0.244643,0.549327,0.917755,0.502009,0.0482106,0.170407,0.561888,0.0949401,0.833233,0.107519,0.329828,0.87159,0.873156,0.668669,0.833634,0.156727,0.204856,0.651491,0.86442,0.882392,0.242621,0.11194,0.36627,0.970066,0.411096,0.817155,0.962501,0.60183,0.123379,0.598923,0.77076,0.787466,0.373665,0.162806,0.162296,0.129381,0.577136,0.428166,0.706739,0.299426,0.925901,0.641569,0.824786,0.60877,0.854326,0.4923,0.0670993,0.358363,0.7065,0.836177,0.210831,0.437906,0.505282,0.772507,0.0349534,0.377227,0.899426,0.835957,0.185619,0.059868,0.264808,0.819012,0.166967,0.885548,0.364494,0.855335,0.147353,0.167055,0.0778633,0.997566,0.49561,0.325641,0.511177,0.0653407,0.263246,0.128541,0.279888,0.722867,0.419148,0.630493,0.034215,0.870181,0.259841,0.130373,0.270744,0.45393,0.283347,0.636759,0.017548,0.873409,0.629154,0.675771,0.967929,0.889839,0.560072,0.201967,0.0407699,0.364116,0.527236,0.691609,0.547256,0.661406,0.808562,0.169333,0.82695,0.834026,0.95695,0.63263,0.195507,0.929481,0.79802,0.586398,0.0767074,0.922689,0.686695,0.829503,0.142123,0.425797,0.0673869,0.142492,0.896114,0.906631,0.308864,0.891744,0.0301491,0.672915,0.981231,0.404733,0.234528,0.499294,0.511652,0.0492766,0.286337,0.941017,0.0703139,0.965877,0.747666,0.652885,0.591269,0.656039,0.831494,0.905141,0.157185,0.589669,0.997991,0.286578,0.902348,0.380574,0.241217,0.536831,0.52427,0.424229,0.629936,0.636298,0.152573,0.606823,0.419892,0.836432,0.226475,0.986335,0.803446,0.882674,0.0679427,0.191358,0.465303,0.50354,0.148467,0.355993,0.0692027,0.617854,0.148547,0.360951,0.408841,0.723971,0.650123,0.586356,0.818976,0.476999,0.94529,0.130792,0.466235,0.423189,0.0393609,0.899497,0.531686,0.596511,0.799302,0.11582,0.73514,0.551363,0.684654,0.769938,0.0212336,0.20347,0.965503,0.747553,0.369334,0.543757,0.936408,0.957773,0.980779,0.408564,0.162267,0.497579,0.164145,0.465665,0.70784,0.510293,0.277124,0.827368,0.315673,0.179941,0.812524,0.596967,0.210338,0.43352,0.547985,0.993037,0.802904,0.473463,0.997606,0.589788,0.93821,0.295318,0.922942,0.527547,0.874341,0.423611,0.314867,0.145558,0.247097,0.955393,0.777195,0.209531,0.166785,0.455685,0.210382,0.398614,0.717174,0.164418,0.421567,0.169355,0.351591,0.65692,0.546179,0.401071,0.948421,0.01237,0.92024,0.677543,0.928772,0.618779,0.619076,0.886578,0.892308,0.965438,0.668544,0.689392,0.906943,0.0079326,0.923048,0.937537,0.848441,0.604309,0.779832,0.187166,0.336397,0.100055,0.610549,0.495145,0.548994,0.155852,0.0103565,0.101798,0.903885,0.628842,0.789941,0.23417,0.0586117,0.302502,0.630196,0.138875,0.163929,0.683301,0.361436,0.484468,0.131679,0.14154,0.52405,0.996606,0.706573,0.986029,0.62226,0.575339,0.823758,0.258662,0.585575,0.970252,0.506014,0.91121,0.716854,0.0301248,0.529581,0.130574,0.244825,0.0966601,0.195838,0.250607,0.253024,0.828345,0.754434,0.223606,0.505871,0.244625,0.268591,0.534378,0.717087,0.685946,0.621468,0.51422,0.328762,0.554956,0.728854,0.549239,0.668084,0.128322,0.488169,0.169918,0.274963,0.834048,0.183851,0.508155,0.962579,0.0885749,0.818178,0.965828,0.0913208,0.239388,0.695862,0.927958,0.747751,0.348674,0.653292,0.18825,0.58137,0.771583,0.091719,0.0290781,0.243786,0.837118,0.0224996,0.229071,0.967347,0.270637,0.433128,0.871881,0.929675,0.999148,0.453456,0.456004,0.887752,0.604575,0.833149,0.249257,0.372278,0.5391,0.793031,0.665717,0.97396,0.886556,0.289184,0.67312,0.766291,0.592051,0.840263,0.85556,0.397959,0.929911,0.1637,0.928576,0.0350003,0.00465029,0.587514,0.64081,0.146348,0.602578,0.443856,0.853268,0.324374,0.652627,0.0704354,0.547576,0.0509027,0.428198,0.776996,0.498918,0.033757,0.01524,0.519616,0.353769,0.0874237,0.228914,0.178515,0.22931,0.479028,0.36623,0.958071,0.715551,0.518925,0.914691,0.935542,0.77507,0.134724,0.447392,0.913832,0.0354152,0.202671,0.264347,0.68197,0.115209,0.24728,0.28393,0.10926,0.550686,0.144822,0.286384,0.294519,0.351387,0.731073,0.631718,0.900045,0.415819,0.889226,0.922104,0.0682817,0.331861,0.345226,0.87972,0.0451906,0.9642,0.945292,0.253402,0.518806,0.0276697,0.817114,0.911517,0.677952,0.788614,0.422831,0.962062,0.25096,0.0938816,0.652685,0.836919,0.515677,0.739206,0.31137,0.29897,0.403916,0.862058,0.0103087,0.474276,|0.137526,0.957424,0.203416,0.0704818,0.531745,0.168369,0.83942,0.42367,0.70825,0.345529,0.366134,0.874313,0.794303,0.208104,0.986339,0.845239,0.984602,0.721111,0.0267343,0.272155,0.958503,0.188983,0.385936,0.351941,0.153023,0.496215,0.455866,0.565979,0.212992,0.785435,0.586476,0.0449995,0.0415406,0.326926,0.209671,0.956188,0.17883,0.787042,0.346924,0.749237,0.363868,0.822152,0.0632648,0.123331,0.651736,0.243377,0.602755,0.952339,0.71116,0.796174,0.221443,0.629941,0.756677,0.412193,0.957723,0.406506,0.367337,0.432768,0.930388,0.200663,0.978965,0.353498,0.364072,0.97717,0.615341,0.371376,0.275063,0.917875,0.945575,0.071372,0.0149122,0.323176,0.818446,0.988913,0.735619,0.516261,0.634668,0.926692,0.370745,0.815716,0.177288,0.841252,0.36389,0.843739,0.357828,0.130879,0.295648,0.151967,0.403436,0.254991,0.944566,0.780576,0.415801,0.225966,0.32849,0.657538,0.246369,0.992633,0.451362,0.927853,0.198923,0.83406,0.332824,0.596407,0.738951,0.453655,0.582009,0.559568,0.211362,0.876163,0.762965,0.904455,0.734994,0.845972,0.079762,0.637366,0.753046,0.884557,0.200246,0.809529,0.203334,0.502119,0.0919651,0.289671,0.890611,0.854737,0.553355,0.496282,0.343239,0.503909,0.658199,0.874476,0.278175,0.48656,0.399559,0.453285,0.726716,0.0769969,0.65438,0.249968,0.118261,0.552128,0.164015,0.22996,0.935314,0.344636,0.932086,0.237061,0.0335192,0.749884,0.574246,0.745251,0.433742,0.937585,0.0825875,0.658096,0.116407,0.264145,0.657843,0.399609,0.133869,0.311411,0.713461,0.445776,0.687036,0.0824733,0.864461,0.976134,0.0733031,0.565668,0.781549,0.281611,0.837286,0.967908,0.0317767,0.909814,0.277799,0.0965689,0.230234,0.910494,0.0103121,0.332632,0.656486,0.333954,0.215321,0.945899,0.273207,0.650213,0.230155,0.878326,0.771031,0.90654,0.494079,0.458975,0.924315,0.103343,0.126937,0.746216,0.864349,0.711473,0.566215,0.899279,0.709531,0.315762,0.829302,0.544794,0.618669,0.25587,0.5883,0.263779,0.586253,0.730168,0.466234,0.488939,0.221928,0.0400926,0.503458,0.172158,0.210114,0.955616,0.611518,0.966392,0.372372,0.701004,0.840328,0.748213,0.522335,0.462423,0.781797,0.86346,0.530971,0.790806,0.205785,0.644328,0.198662,0.139229,0.179786,0.91133,0.245181,0.522465,0.629961,0.854833,0.268824,0.39312,0.644607,0.550749,0.765688,0.574676,0.986881,0.193364,0.202191,0.564818,0.699542,0.733567,0.347606,0.266931,0.511567,0.784864,0.885049,0.181616,0.860372,0.0508304,0.37873,0.200597,0.460018,0.229013,0.127438,0.937764,0.494515,0.420607,0.885975,0.579596,0.989233,0.871395,0.011079,0.605746,0.839063,0.251697,0.576681,0.61003,0.572246,0.562251,0.0189359,0.553234,0.0907825,0.704086,0.377805,0.561684,0.675984,0.337872,0.373126,0.35395,0.925235,0.012424,0.591052,0.419224,0.258602,0.11205,0.414253,0.291921,0.735888,0.508721,0.615916,0.812542,0.0523664,0.428233,0.626537,0.338248,0.951122,0.601427,0.581069,0.490422,0.922177,0.181416,0.808876,0.898482,0.991815,0.988823,0.577736,0.908687,0.369425,0.338181,0.501069,0.263128,0.0980675,0.593347,0.938676,0.125974,0.839668,0.756517,0.882647,0.067055,0.166035,0.176844,0.646981,0.0916033,0.1037,0.395755,0.950046,0.509256,0.261818,0.364,0.715852,0.708568,0.58695,0.597062,0.931364,0.504156,0.811339,0.439496,0.150531,0.273144,0.186452,0.996607,0.436842,0.628514,0.723826,0.723508,0.237495,0.384237,0.632315,0.38684,0.640268,0.410938,0.165372,0.177549,0.0397444,0.303968,0.803271,0.537976,0.741301,0.668902,0.623754,0.336637,0.875327,0.0811794,0.641327,0.598933,0.388729,0.52003,0.580989,0.486025,0.772799,0.879412,0.295993,0.549451,0.603466,0.954588,0.67257,0.932147,0.552619,0.995759,0.97971,0.472534,0.180686,0.805991,0.18731,0.464974,0.246126,0.381527,0.980154,0.192619,0.189791,0.185826,0.095241,0.659545,0.293182,0.663402,0.0167038,0.178168,0.521846,0.312382,0.991306,0.602482,0.845149,0.505368,0.214005,0.112386,0.766171,0.395803,0.661379,0.120505,0.0765973,0.341265,0.738454,0.681304,0.783826,0.230065,0.963078,0.877122,0.134905,0.716182,0.986945,0.865648,0.157794,0.349373,0.761816,0.48862,0.710852,0.141139,0.964232,0.927645,0.422823,0.767598,0.550742,0.813206,0.326246,0.87296,0.693724,0.377501,0.933575,0.571077,0.988604,0.372505,0.294421,0.63516,0.543819,0.218945,0.848042,0.880753,0.0394594,0.321758,0.691162,0.980653,0.363066,0.326825,0.863154,0.548058,0.294899,0.708175,0.171676,0.83784,0.00148565,0.81259,0.399566,0.0552958,0.74417,0.445266,0.764489,0.416768,0.60521,0.962637,0.360593,0.602498,0.737727,0.709337,0.344902,0.207326,0.915783,0.12529,0.931447,0.0357614,0.296576,0.0109313,0.0929779,0.648402,0.173084,0.612572,0.18292,0.943212,0.216103,0.68896,0.443674,0.317693,0.421863,0.538146,0.679265,0.541865,0.288308,0.171816,0.851124,0.310025,0.203102,0.743058,0.800191,0.782711,0.0850721,0.776245,0.959177,0.0521551,0.430526,0.87744,0.548071,0.992518,0.366305,0.636179,0.461836,0.39909,0.777244,0.860424,0.964353,0.76713,0.154235,0.787166,0.536549,0.367831,0.974358,0.520996,0.789946,0.022302,0.522402,0.609215,0.681713,0.125951,0.652455,0.589493,0.78343,0.640565,0.195593,0.587946,0.339163,0.468235,0.0505553,0.104786,0.440375,0.44862,0.865613,0.823129,0.0944332,0.746981,0.719351,0.508182,0.0825445,0.0906357,0.749931,0.849359,0.569013,0.170913,0.517601,0.0762342,0.426999,0.855844,0.982781,0.181417,0.531284,0.169033,0.395314,0.29555,0.736792,0.73767,0.381175,0.66127,0.21308,0.249214,0.876066,0.985184,0.0191094,0.221051,0.281458,0.105496,0.65145,0.468164,0.671049,0.951425,0.506066,0.619849,0.816947,0.323483,0.462425,0.34695,0.65335,0.768655,0.0960011,0.901879,0.819309,0.947002,0.636107,0.924356,0.540464,0.0648476,0.10014,0.54446,0.212633,0.377988,0.27142,0.177859,0.443349,0.434524,0.317095,0.82633,0.16219,0.63635,0.808287,0.569324,0.611875,0.307531,0.790645,0.424118,0.599203,0.953823,0.572235,0.079025,0.759764,0.737714,0.48288,0.893938,0.310132,0.541656,0.318564,0.604716,0.442109,0.133302,0.809167,0.186696,0.510347,0.306098,0.370506,0.453354,0.592698,0.685649,0.120399,0.326555,0.393785,0.693718,0.209073,0.524729,0.279011,0.964506,0.0614083,0.456184,0.41589,0.584215,0.909882,0.157164,0.20201,0.993769,0.129191,0.546438,0.735906,0.564024,0.603702,0.860095,0.437134,0.926808,0.332678,0.826045,0.516728,0.315126,0.636439,0.704555,0.449654,0.830197,0.175301,0.312514,0.559941,0.0819274,0.102807,0.384306,0.833553,0.633484,0.0793201,0.0695781,0.0971462,0.885418,0.994587,0.00910133,0.345667,0.268226,0.0248243,0.600091,0.733898,0.721451,0.289733,0.813245,0.152337,0.248501,0.389075,0.232461,0.615461,0.232565,0.339576,0.739721,0.954739,0.382208,0.813548,0.927569,0.257946,0.169773,0.743771,0.168695,0.674023,0.261678,0.19734,0.186023,0.0253435,0.303769,0.650101,0.969262,0.241186,0.993421,0.229173,0.363041,0.716657,0.324717,0.126857,0.973106,0.873758,0.302021,0.164405,0.968898,0.860603,0.406339,0.614966,0.251608,0.0456532,0.585981,0.0398262,0.2194,0.179957,0.102455,0.812174,0.216517,0.258571,0.267485,0.249779,0.442667,0.113103,0.688801,0.328675,0.895561,0.996416,0.134596,0.888919,0.789326,0.806625,0.50448,0.25674,0.660243,0.531535,0.203965,0.461969,0.0386077,0.865037,0.201086,0.419605,0.23702,0.974239,0.4682,0.464635,0.19025,0.0032919,0.949404,0.097927,0.699881,0.292017,0.904076,0.622466,0.908734,0.0947478,0.928616,0.621508,0.440281,0.72749,0.463968,0.572878,0.946135,0.296964,0.685642,0.329708,0.12539,0.205071,0.556728,0.820268,0.959159,0.464431,0.089367,0.281317,0.686803,0.836225,0.59884,0.481732,0.960288,0.101978,0.563662,0.0327277,0.363093,0.294644,0.474132,0.145349,0.721491,0.727364,0.812611,0.128649,0.0650176,0.500863,0.108729,0.455724,0.641388,0.488447,0.0876483,0.764091,0.425527,0.93342,0.20258,0.137493,0.29839,0.391255,0.545969,0.642091,0.942144,0.164343,0.911657,0.493705,0.154476,0.731362,0.929692,0.730621,0.780855,0.0723071,0.355529,0.340867,0.753673,0.245372,0.834818,0.181265,0.918734,0.395824,0.935908,0.21708,0.598878,0.29872,0.461584,0.996614,0.0711774,0.726903,0.0409325,0.322107,0.7272,0.452871,0.0504405,0.717418,0.830076,0.518566,0.977569,0.198496,0.949163,0.293794,0.452575,0.173502,0.900622,0.40627,0.130181,0.661384,0.811811,0.702725,0.437621,0.719828,0.686302,0.0405098,0.510887,0.308218,0.8684,0.120069,0.757779,0.115286,0.219301,0.396271,0.906695,0.0915056,0.522027,0.144798,0.195342,0.0931125,0.338949,0.202866,0.40062,0.637788,0.439482,0.52046,0.843517,0.597224,0.796736,0.681211,0.328297,0.261423,0.138475,0.085109,0.725791,0.861514,0.252803,0.71901,0.728772,0.0709837,0.965693,0.424817,0.931268,0.972977,0.690631,0.607119,0.399413,0.805672,0.852369,0.473947,0.961478,0.413838,0.262113,0.231652,0.725435,0.709747,0.725117,0.714707,0.688924,0.959427,0.718832,0.524904,0.0602778,0.761147,0.296185,0.310436,0.361559,0.559982,0.443876,0.332905,0.702534,0.885983,0.908936,0.996889,0.500634,0.967981,0.865509,0.833215,0.88147,0.766549,0.896689,0.201559,0.168211,0.688988,0.62052,0.0796642,0.345282,0.594553,0.642956,0.530325,0.647039,0.633356,0.946973,0.922045,0.48561,0.0903561,0.105713,0.228449,0.841438,0.118951,0.322648,0.872976,0.760321,0.658574,0.536949,0.787133,0.621767,0.474083,0.905158,0.665531,0.306031,0.536945,0.721808,0.859945,0.478,0.202448,0.877205,|0.768502,0.176831,0.9369,0.579047,0.654737,0.780842,0.333959,0.0605012,0.0907979,0.148166,0.0009166,0.516165,0.582008,0.429336,0.25812,0.795428,0.930165,0.736087,0.291375,0.476873,0.530857,0.540743,0.591332,0.606563,0.963262,0.00981182,0.410832,0.248985,0.208142,0.365289,0.376332,0.0518804,0.323876,0.179922,0.276441,0.435918,0.951447,0.912346,0.127612,0.28834,0.168165,0.27143,0.064607,0.307647,0.778883,0.0972045,0.845384,0.286285,0.0745518,0.0908985,0.442541,0.850587,0.032181,0.598649,0.296078,0.297243,0.548597,0.00135154,0.883391,0.752241,0.131752,0.506606,0.0217202,0.275356,0.0080539,0.253123,0.869547,0.819661,0.84175,0.704854,0.805576,0.344003,0.229702,0.438235,0.533839,0.145229,0.391404,0.954374,0.567146,0.345534,0.189259,0.0675932,0.24745,0.0212683,0.998002,0.732512,0.630902,0.957938,0.123556,0.366894,0.121698,0.47008,0.848102,0.681654,0.943179,0.228,0.301021,0.979569,0.638318,0.931296,0.120032,0.438282,0.0376594,0.130243,0.120933,0.939426,0.461532,0.422526,0.951487,0.789124,0.899827,0.503339,0.0854278,0.383435,0.530713,0.369454,0.672907,0.968951,0.927013,0.821493,0.78919,0.533132,0.542388,0.396705,0.577747,0.0540448,0.453315,0.479133,0.0934851,0.313236,0.618609,0.975238,0.853044,0.0493721,0.910572,0.305355,0.404047,0.998729,0.663966,0.94067,0.624336,0.275296,0.27457,0.409823,0.373267,0.910568,0.205948,0.981235,0.123024,0.615414,0.311683,0.91832,0.517448,0.993582,0.957973,0.146602,0.310843,0.0979325,0.129059,0.767715,0.643249,0.698525,0.7704,0.820103,0.0992188,0.736483,0.508176,0.512592,0.26768,0.696695,0.661777,0.244412,0.7308,0.791942,0.0450316,0.779072,0.26212,0.834065,0.229803,0.72735,0.0507097,0.949678,0.61358,0.197031,0.986589,0.945385,0.632633,0.707303,0.292268,0.816899,0.695487,0.359585,0.426039,0.293673,0.070851,0.982589,0.613003,0.8128,0.0459714,0.0867853,0.427152,0.849106,0.571305,0.465825,0.0471762,0.426872,0.559434,0.666313,0.451496,0.128942,0.429866,0.329694,0.235577,0.0447564,0.282195,0.615005,0.0957665,0.715212,0.122528,0.165468,0.0530107,0.673401,0.114335,0.454298,0.367181,0.54281,0.505989,0.0791203,0.51937,0.920282,0.513867,0.921715,0.166567,0.647445,0.378116,0.489612,0.840893,0.300674,0.613298,0.63101,0.551491,0.767342,0.425428,0.0918117,0.262119,0.131256,0.357238,0.315646,0.572161,0.218045,0.478178,0.874418,0.751617,0.828889,0.747291,0.682467,0.337365,0.362023,0.0852219,0.222392,0.950999,0.722046,0.86992,0.488463,0.0517443,0.677139,0.401173,0.287719,0.441775,0.608842,0.0606246,0.706254,0.71472,0.340962,0.23386,0.722722,0.247099,0.569652,0.106063,0.476895,0.71708,0.914177,0.571029,0.569621,0.889174,0.793465,0.622953,0.305525,0.0419421,0.055612,0.988367,0.139752,0.912626,0.371469,0.0613994,0.692002,0.505268,0.89121,0.187642,0.232403,0.941763,0.588875,0.341315,0.0827741,0.893053,0.186681,0.456982,0.931437,0.0345079,0.228406,0.100367,0.876432,0.175562,0.695633,0.462947,0.965646,0.62553,0.112722,0.207998,0.545397,0.932341,0.917074,0.513601,0.568371,0.479525,0.84292,0.884248,0.420251,0.609902,0.0750674,0.893468,0.0753198,0.761976,0.996959,0.995094,0.316209,0.502861,0.162131,0.406843,0.487559,0.471727,0.881766,0.40049,0.432138,0.266516,0.248076,0.99663,0.0459871,0.0168188,0.496603,0.88193,0.931015,0.30675,0.764975,0.830041,0.328243,0.10254,0.20866,0.956709,0.0830852,0.376067,0.647382,0.952108,0.453975,0.533311,0.0577056,0.678239,0.311976,0.537341,0.132683,0.166354,0.143756,0.354159,0.780117,0.479412,0.118029,0.859073,0.407046,0.0989167,0.780335,0.0784047,0.135041,0.262418,0.554083,0.810852,0.15892,0.761923,0.969532,0.753206,0.894323,0.23903,0.430377,0.4672,0.81891,0.360779,0.145567,0.0848699,0.239496,0.288377,0.831954,0.393872,0.991951,0.616104,0.326647,0.295127,0.517078,0.691779,0.308919,0.375402,0.460468,0.349412,0.768551,0.748335,0.417763,0.695538,0.607542,0.689304,0.931052,0.941123,0.116483,0.723661,0.611218,0.544148,0.786146,0.575719,0.62077,0.815774,0.934017,0.624497,0.797065,0.390492,0.293091,0.404244,0.0455453,0.437409,0.419843,0.694979,0.190269,0.885706,0.512544,0.247233,0.862751,0.471391,0.856894,0.8327,0.959602,0.272263,0.628801,0.860141,0.865178,0.313946,0.544866,0.789907,0.210033,0.618047,0.719439,0.375949,0.124429,0.179603,0.137136,0.564975,0.625524,0.535591,0.918194,0.289965,0.754138,0.561853,0.850246,0.984153,0.965699,0.562336,0.77495,0.175292,0.0854084,0.0164787,0.236848,0.866344,0.0938727,0.555417,0.731865,0.400505,0.0513892,0.848534,0.0426329,0.255016,0.174749,0.108415,0.415364,0.785838,0.0799206,0.567175,0.612974,0.0409779,0.704132,0.539279,0.186054,0.698529,0.940554,0.0182049,0.0926079,0.421936,0.602262,0.456536,0.243766,0.479107,0.115199,0.417722,0.438435,0.183147,0.916053,0.229741,0.847504,0.742093,0.209087,0.910527,0.583469,0.812299,0.85612,0.514651,0.812386,0.794355,0.460919,0.224677,0.251458,0.760518,0.552407,0.16527,0.688898,0.970962,0.0564466,0.726104,0.983183,0.168056,0.344137,0.335284,0.992893,0.45808,0.777176,0.668367,0.95415,0.355402,0.427698,0.634627,0.167216,0.550511,0.798578,0.47468,0.302183,0.525755,0.112847,0.0441405,0.00204343,0.0524481,0.578347,0.633152,0.294828,0.180848,0.735887,0.777715,0.0141609,0.851719,0.156401,0.972075,0.85007,0.792806,0.913325,0.397121,0.478707,0.579321,0.637617,0.72424,0.837386,0.458755,0.365347,0.961203,0.0494642,0.933365,0.649789,0.882441,0.500511,0.713598,0.518803,0.926197,0.785403,0.570746,0.16228,0.345473,0.362883,0.273067,0.665167,0.0992755,0.939166,0.233866,0.011094,0.181593,0.484948,0.39892,0.778692,0.646069,0.772583,0.775595,0.460952,0.881154,0.772399,0.828879,0.515817,0.183573,0.87362,0.274749,0.361687,0.333135,0.449245,0.333406,0.489972,0.0353152,0.414639,0.331881,0.770033,0.708236,0.0753019,0.442938,0.447861,0.198658,0.102912,0.892912,0.558377,0.631086,0.0817745,0.322068,0.298466,0.476473,0.411009,0.906584,0.457572,0.596551,0.764765,0.848908,0.693752,0.775338,0.81246,0.10468,0.381032,0.338975,0.126381,0.450807,0.179906,0.991089,0.057467,0.452428,0.0207444,0.958628,0.992916,0.0865902,0.347727,0.547802,0.21701,0.867652,0.560455,0.27756,0.895856,0.813226,0.214745,0.997016,0.0257038,0.657044,0.480496,0.796363,0.482274,0.583932,0.57447,0.13322,0.171919,0.778714,0.447843,0.353422,0.566638,0.966935,0.497561,0.989198,0.562839,0.430447,0.834196,0.58456,0.535267,0.300902,0.594276,0.129084,0.478249,0.741888,0.227293,0.173325,0.904026,0.784251,0.552163,0.0406877,0.146605,0.526297,0.036543,0.635073,0.465218,0.700386,0.163152,0.616054,0.275865,0.131933,0.358377,0.924206,0.999231,0.0201679,0.988443,0.047246,0.656267,0.704563,0.544048,0.980939,0.0703668,0.693064,0.756915,0.16066,0.514387,0.0459498,0.400985,0.622548,0.741373,0.571292,0.856285,0.590373,0.922949,0.519042,0.842187,0.662191,0.390931,0.746323,0.552399,0.79737,0.244279,0.182765,0.0323691,0.920096,0.0892199,0.626695,0.643376,0.794596,0.680453,0.0888119,0.0561681,0.0415346,0.969369,0.495089,0.15296,0.301348,0.509486,0.107452,0.133199,0.991105,0.254944,0.081363,0.614628,0.271643,0.988088,0.134248,0.521886,0.470058,0.535584,0.0924007,0.0583388,0.722462,0.630263,0.109597,0.360539,0.110383,0.0959541,0.746881,0.993794,0.0407501,0.868137,0.031221,0.738955,0.514494,0.845293,0.58473,0.614485,0.929075,0.71721,0.114111,0.0526207,0.393997,0.7871,0.841549,0.690802,0.758213,0.42211,0.521836,0.270565,0.0225732,0.675404,0.0204667,0.894739,0.765372,0.277677,0.719494,0.711742,0.459653,0.266868,0.433345,0.914703,0.760656,0.00147229,0.93437,0.827038,0.969272,0.91667,0.397852,0.0584689,0.956302,0.758631,0.653007,0.425288,0.612582,0.0222871,0.498365,0.858456,0.320525,0.315834,0.0750656,0.582873,0.626246,0.563973,0.749904,0.123098,0.52145,0.251339,0.391065,0.400179,0.51753,0.285379,0.876457,0.621627,0.269175,0.817227,0.352655,0.224105,0.31296,0.511541,0.0547313,0.150966,0.616782,0.451629,0.385631,0.0961045,0.346601,0.108872,0.388098,0.0818241,0.945575,0.663137,0.758599,0.650113,0.0192387,0.767301,0.654974,0.976754,0.851891,0.134157,0.143243,0.00778329,0.277045,0.789825,0.229329,0.352217,0.228503,0.387122,0.0946653,0.082988,0.795766,0.430334,0.200032,0.19727,0.460744,0.99492,0.894107,0.929924,0.305162,0.486879,0.316612,0.522265,0.176035,0.953031,0.873854,0.424294,0.945903,0.631162,0.644928,0.500237,0.0238122,0.896123,0.560638,0.972578,0.997119,0.364826,0.198623,0.00928402,0.896558,0.319958,0.921119,0.202433,0.109937,0.0966739,0.89229,0.735594,0.501833,0.417789,0.19689,0.497388,0.752076,0.71685,0.713665,0.736679,0.518799,0.877549,0.948556,0.417719,0.501758,0.899125,0.423156,0.815366,0.209354,0.104068,0.773333,0.282514,0.776798,0.603272,0.134157,0.130104,0.81056,0.553505,0.126179,0.771638,0.782874,0.936307,0.929488,0.0191787,0.548888,0.8867,0.375405,0.701129,0.927923,0.0341703,0.298283,0.47272,0.258581,0.413549,0.643546,0.0498679,0.330106,0.10912,0.0184141,0.0721701,0.635363,0.116765,0.926568,0.584475,0.887909,0.681416,0.522705,0.888365,0.220806,0.590957,0.351659,0.285114,0.938821,0.703203,0.224303,0.635623,0.828138,0.984187,0.590874,0.127716,0.388453,0.613229,0.288932,0.890291,0.745085,0.77851,0.139558,0.91685,0.75915,0.0951365,0.533483,0.740612,0.894833,0.187316,0.848879,0.734388,0.941718,0.40519,0.181972,0.82357,0.299363,0.463053,|0.585658,0.352215,0.223252,0.222864,0.885224,0.398468,0.16256,0.322275,0.230574,0.626276,0.928344,0.988729,0.962684,0.369637,0.461594,0.123279,0.516144,0.723291,0.916045,0.64499,0.7655,0.330691,0.797688,0.167734,0.54367,0.147632,0.433803,0.0561432,0.373273,0.983614,0.966208,0.371396,0.974547,0.49236,0.852214,0.318969,0.256702,0.367399,0.404245,0.852886,0.738182,0.36113,0.335334,0.282438,0.76408,0.0559143,0.0364505,0.0914801,0.0893301,0.937206,0.334199,0.11865,0.840518,0.95275,0.201544,0.751983,0.478614,0.265573,0.508009,0.933189,0.128699,0.114664,0.889261,0.407493,0.529212,0.648373,0.333808,0.522784,0.0968053,0.705635,0.399889,0.145376,0.972889,0.979878,0.325882,0.663091,0.22247,0.0142654,0.121267,0.476066,0.413414,0.478606,0.831217,0.410415,0.509678,0.531975,0.834697,0.623639,0.255341,0.743999,0.779506,0.610545,0.474633,0.821289,0.469423,0.117077,0.262151,0.280279,0.166325,0.645907,0.125665,0.224537,0.0750607,0.424107,0.592545,0.531261,0.752782,0.00876403,0.299128,0.799999,0.132712,0.826329,0.822713,0.562765,0.825019,0.0864042,0.660179,0.26839,0.309894,0.986714,0.313974,0.987585,0.541468,0.644507,0.756944,0.979052,0.209724,0.111003,0.854279,0.654298,0.270892,0.0407083,0.211982,0.856126,0.212631,0.765237,0.812302,0.322143,0.0402499,0.375024,0.356185,0.90455,0.309241,0.599742,0.771488,0.745956,0.437187,0.0362063,0.784008,0.865284,0.118021,0.114954,0.0859718,0.522228,0.0462943,0.198726,0.703987,0.755077,0.0191654,0.932401,0.958854,0.632565,0.00250077,0.636472,0.10507,0.879787,0.372539,0.242868,0.118716,0.686998,0.332337,0.0230529,0.85983,0.778553,0.00035882,0.789122,0.92621,0.401857,0.0542913,0.218109,0.217348,0.75671,0.0325671,0.568218,0.436186,0.750732,0.181984,0.747037,0.0994907,0.58993,0.661651,0.273585,0.672394,0.860391,0.149942,0.904539,0.793781,0.189242,0.300302,0.939585,0.980963,0.240062,0.758301,0.133141,0.398525,0.36534,0.858254,0.830337,0.528552,0.540526,0.405363,0.710359,0.911125,0.118735,0.680661,0.637114,0.325369,0.672522,0.094058,0.361264,0.526747,0.505403,0.959254,0.738051,0.246071,0.61611,0.866067,0.460788,0.0220261,0.180565,0.526333,0.899279,0.711177,0.0636221,0.98136,0.308629,0.729684,0.861999,0.929085,0.611049,0.244535,0.250498,0.350809,0.923975,0.786186,0.315902,0.0591902,0.0896191,0.588109,0.39397,0.318466,0.224862,0.311606,0.719223,0.0657137,0.79325,0.379088,0.376779,0.736314,0.113627,0.790422,0.457457,0.737702,0.0400932,0.270526,0.794242,0.756166,0.15925,0.655902,0.462268,0.723785,0.941197,0.403464,0.840212,0.194866,0.588393,0.12646,0.53349,0.674908,0.963479,0.792832,0.0914867,0.596036,0.650183,0.671609,0.197392,0.396847,0.245202,0.0568261,0.33954,0.525893,0.953044,0.569822,0.779103,0.0552888,0.117782,0.632139,0.271413,0.0597992,0.585372,0.353673,0.149015,0.897794,0.239561,0.823145,0.734443,0.738254,0.220343,0.736433,0.46827,0.921395,0.599041,0.310942,0.423285,0.786445,0.372101,0.243603,0.945037,0.553182,0.183059,0.48809,0.738812,0.440685,0.962668,0.65778,0.107218,0.491582,0.514216,0.184258,0.500936,0.289281,0.900653,0.259309,0.169689,0.0813897,0.475766,0.571458,0.534213,0.781446,0.353871,0.791916,0.671588,0.40781,0.915472,0.418377,0.387164,0.71643,0.860252,0.409197,0.707675,0.443111,0.431779,0.608409,0.111368,0.114256,0.10785,0.304953,0.503981,0.600333,0.963216,0.0453348,0.673212,0.181798,0.357654,0.96949,0.91034,0.748147,0.0872651,0.938095,0.766291,0.975255,0.0991974,0.369021,0.904893,0.210383,0.248099,0.225189,0.174117,0.274625,0.400878,0.228657,0.80919,0.226203,0.875898,0.781065,0.109901,0.521903,0.0514333,0.0112395,0.987109,0.255842,0.439435,0.298721,0.341929,0.138322,0.440063,0.397989,0.142954,0.184445,0.808189,0.701215,0.720642,0.201597,0.975263,0.259607,0.0498425,0.562618,0.860083,0.724129,0.754854,0.398661,0.406491,0.16567,0.977367,0.270606,0.200468,0.536151,0.509753,0.613838,0.66417,0.455454,0.493386,0.668547,0.575335,0.154518,0.266384,0.140266,0.201396,0.63853,0.59566,0.201894,0.26958,0.934253,0.273777,0.857853,0.551704,0.000759125,0.332166,0.988944,0.0353233,0.52738,0.623604,0.120769,0.944631,0.220071,0.0378745,0.10632,0.506305,0.877395,0.960574,0.134839,0.771266,0.780073,0.545138,0.698213,0.589827,0.443291,0.560357,0.183748,0.241723,0.381274,0.289313,0.256525,0.645558,0.329797,0.875681,0.0374767,0.579666,0.208747,0.0619389,0.220081,0.0962964,0.446905,0.460178,0.845704,0.207976,0.85559,0.0576475,0.00071764,0.636848,0.0248785,0.790413,0.163231,0.755564,0.408729,0.111062,0.360895,0.624344,0.614758,0.529751,0.815652,0.404115,0.787821,0.500408,0.011219,0.0495705,0.603987,0.269831,0.821841,0.803704,0.0558272,0.425664,0.744178,0.0869641,0.899953,0.935035,0.587854,0.826775,0.692891,0.351312,0.464533,0.611596,0.891151,0.220579,0.895864,0.276287,0.240217,0.0526176,0.435451,0.0185264,0.939993,0.00462943,0.803468,0.055573,0.525922,0.362763,0.659091,0.937862,0.011116,0.666371,0.512844,0.364161,0.717889,0.435129,0.855117,0.135356,0.665534,0.761566,0.558366,0.953431,0.637145,0.00869977,0.201925,0.933928,0.14652,0.778376,0.883147,0.110859,0.929117,0.260288,0.693731,0.713045,0.00717586,0.271552,0.970637,0.700734,0.24546,0.43666,0.0330434,0.536334,0.501266,0.89694,0.403402,0.51945,0.735281,0.503874,0.985988,0.549259,0.279984,0.302733,0.720286,0.702823,0.527938,0.0330738,0.873858,0.682372,0.742306,0.657057,0.911332,0.420048,0.79996,0.626267,0.391359,0.741788,0.030585,0.271161,0.18953,0.845853,0.00834906,0.807502,0.176771,0.23317,0.352154,0.0150073,0.272073,0.970753,0.766057,0.103942,0.258286,0.655887,0.125672,0.385633,0.281896,0.307416,0.854012,0.898298,0.70261,0.956082,0.227795,0.254378,0.824094,0.303444,0.888279,0.403237,0.0262692,0.35298,0.743994,0.523177,0.123969,0.392589,0.738181,0.83373,0.251902,0.640589,0.80796,0.728612,0.493171,0.168923,0.0515383,0.0724834,0.853534,0.69218,0.0628635,0.28864,0.784448,0.201906,0.436662,0.182694,0.340535,0.947042,0.515753,0.879257,0.999083,0.345456,0.57776,0.0239261,0.729436,0.0952374,0.064698,0.632436,0.519553,0.745805,0.346545,0.918638,0.625494,0.452786,0.205346,0.34656,0.433008,0.0186804,0.5284,0.118466,0.35209,0.0559744,0.0651994,0.568271,0.475043,0.263317,0.701258,0.107818,0.329493,0.277737,0.170565,0.305396,0.306539,0.602631,0.0757164,0.856743,0.605201,0.639405,0.919007,0.930949,0.958295,0.439025,0.819871,0.21623,0.180638,0.700832,0.614616,0.744555,0.294059,0.271188,0.971033,0.345071,0.545226,0.606924,0.758203,0.950938,0.928046,0.712095,0.197305,0.421183,0.857975,0.971503,0.28665,0.0597994,0.616314,0.742057,0.658384,0.956115,0.0356516,0.349767,0.422012,0.810581,0.163338,0.617081,0.316384,0.831441,0.340287,0.998886,0.871128,0.942245,0.969657,0.547265,0.323742,0.757184,0.736732,0.67534,0.0680181,0.251472,0.741927,0.703912,0.324892,0.0497041,0.0820467,0.122215,0.0256714,0.893638,0.452133,0.742173,0.364645,0.368474,0.94169,0.483786,0.76623,0.427764,0.209675,0.142597,0.130017,0.33416,0.957791,0.942331,0.464483,0.573125,0.572218,0.348677,0.0690517,0.819921,0.917528,0.0253903,0.958535,0.516831,0.835894,0.419866,0.661561,0.829983,0.796663,0.225169,0.835031,0.340944,0.147913,0.849911,0.254333,0.14536,0.55191,0.134965,0.0141824,0.960846,0.582123,0.147238,0.298544,0.213335,0.364067,0.336544,0.288714,0.606739,0.836031,0.646543,0.140056,0.933785,0.348429,0.598757,0.00270325,0.406645,0.493297,0.263827,0.671477,0.174137,0.406077,0.985215,0.83568,0.576049,0.807209,0.0779134,0.260563,0.137194,0.291609,0.768484,0.419552,0.751876,0.774335,0.493163,0.291499,0.387065,0.571901,0.915189,0.457067,0.0124434,0.593843,0.432631,0.225656,0.270626,0.950792,0.27378,0.969237,0.596802,0.927864,0.373815,0.794062,0.673055,0.0708814,0.0511013,0.689559,0.480685,0.740519,0.679671,0.302177,0.994363,0.480223,0.511507,0.338521,0.3759,0.563375,0.475855,0.594443,0.044029,0.517088,0.929236,0.567917,0.509289,0.588541,0.849611,0.470487,0.164288,0.466244,0.976634,0.295644,0.401342,0.770024,0.7716,0.12474,0.946976,0.810469,0.362115,0.370397,0.162213,0.332516,0.0441158,0.815733,0.447696,0.550773,0.97262,0.983889,0.522211,0.646869,0.490492,0.825538,0.638343,0.327971,0.778023,0.2009,0.138138,0.488531,0.847601,0.385807,0.163053,0.291329,0.348188,0.669647,0.17144,0.397124,0.386573,0.870554,0.43763,0.720836,0.904727,0.20521,0.677624,0.519888,0.12288,0.187834,0.955437,0.75375,0.0748229,0.277395,0.78783,0.0409876,0.923687,0.0524477,0.568274,0.514257,0.967482,0.882161,0.570056,0.921128,0.683653,0.813471,0.724862,0.00346237,0.447655,0.832621,0.380958,0.35939,0.176972,0.743728,0.690138,0.74643,0.0256423,0.944402,0.641979,0.792222,0.0488191,0.366542,0.547019,0.422621,0.199551,0.786871,0.192065,0.570727,0.439346,0.482282,0.431289,0.10922,0.0857614,0.470564,0.594665,0.0798451,0.0295251,0.769261,0.972219,0.138554,0.260201,0.384553,0.723031,0.69603,0.370319,0.16932,0.640146,0.353655,0.793798,0.36642,0.311642,0.663539,0.185299,0.710581,0.228414,0.933657,0.837128,0.774137,0.503842,0.218087,0.305202,0.750606,0.571376,0.145173,0.866539,0.708033,0.387101,0.487644,0.624418,0.21055,0.269124,0.933532,0.00348401,0.207646,0.642276,0.865188,0.804669,0.00824642,0.412124,0.87068,0.00506568,0.344536,0.348952,0.419953,0.724195,0.765678,0.653836,0.899584,0.336794,|0.474203,0.0888813,0.525217,0.550862,0.0692984,0.0712767,0.787046,0.0553233,0.757114,0.238609,0.382932,0.634521,0.719456,0.319227,0.373464,0.296637,0.435781,0.774279,0.449682,0.694197,0.422758,0.568447,0.331994,0.730544,0.012417,0.969777,0.385427,0.238533,0.750567,0.36649,0.602833,0.331365,0.576889,0.132887,0.885653,0.0600095,0.68092,0.0441748,0.868818,0.988003,0.478036,0.106519,0.535677,0.749086,0.151783,0.764978,0.442704,0.136085,0.584191,0.747854,0.195178,0.671758,0.2885,0.534105,0.926201,0.600909,0.258629,0.590236,0.399233,0.43863,0.503258,0.710138,0.00309491,0.926351,0.36363,0.993428,0.0283387,0.563296,0.975825,0.58781,0.357188,0.312831,0.791459,0.744429,0.43176,0.515585,0.948685,0.917967,0.288101,0.769303,0.644227,0.535226,0.711639,0.513002,0.695354,0.703993,0.496951,0.867821,0.767515,0.942792,0.251471,0.141528,0.371839,0.0887831,0.116585,0.0396826,0.228617,0.476403,0.685644,0.158648,0.58097,0.0102115,0.611889,0.707732,0.51383,0.0719729,0.05765,0.0237212,0.642581,0.145569,0.205659,0.573263,0.189348,0.0689435,0.939729,0.892989,0.344174,0.608884,0.693664,0.917221,0.744144,0.205181,0.702373,0.395494,0.766024,0.311657,0.664202,0.754013,0.238813,0.501781,0.314739,0.13425,0.881813,0.847079,0.952932,0.827252,0.661844,0.621808,0.831068,0.475525,0.641916,0.187349,0.652388,0.175144,0.607709,0.688496,0.333867,0.244274,0.679283,0.0226397,0.291031,0.516971,0.395528,0.954318,0.897105,0.0921032,0.99053,0.537546,0.189728,0.108545,0.278305,0.30994,0.506517,0.450248,0.634285,0.194677,0.00971484,0.200965,0.284783,0.0936137,0.473974,0.235105,0.224972,0.670544,0.223678,0.0319867,0.810651,0.941235,0.739774,0.700755,0.489199,0.327983,0.0471195,0.916008,0.654494,0.253544,0.527065,0.495324,0.800994,0.423698,0.765467,0.58767,0.0916099,0.74981,0.290398,0.319714,0.375874,0.851979,0.470926,0.947717,0.50002,0.938944,0.956749,0.325172,0.533505,0.603761,0.945978,0.581778,0.522187,0.300988,0.0838344,0.0913587,0.155499,0.978822,0.0816244,0.194473,0.289254,0.121799,0.936509,0.779242,0.319673,0.37432,0.549498,0.270425,0.916841,0.440053,0.940369,0.820229,0.115987,0.753578,0.337536,0.450099,0.208314,0.7601,0.356126,0.569502,0.714538,0.0913429,0.846441,0.671127,0.901933,0.359164,0.741977,0.154431,0.787382,0.880202,0.336139,0.327413,0.148758,0.958105,0.98355,0.819152,0.0591461,0.483394,0.461723,0.840268,0.687006,0.217034,0.039682,0.965055,0.669509,0.280746,0.790958,0.325342,0.0303775,0.753096,0.362325,0.105138,0.667069,0.797269,0.481509,0.695976,0.416418,0.408965,0.774683,0.293916,0.547687,0.125552,0.139466,0.107726,0.633251,0.943506,0.0796374,0.151148,0.161453,0.64542,0.00401372,0.737751,0.474716,0.375832,0.333601,0.871553,0.278198,0.300053,0.133642,0.48144,0.530313,0.373112,0.590808,0.796471,0.520981,0.478011,0.233296,0.815888,0.136892,0.634024,0.288249,0.0184311,0.251755,0.892752,0.0322396,0.873628,0.908014,0.734218,0.477298,0.06926,0.714292,0.634614,0.120161,0.165533,0.284508,0.741772,0.609768,0.424805,0.161878,0.148979,0.493553,0.132104,0.338157,0.568639,0.0817815,0.771711,0.691574,0.581282,0.379849,0.411718,0.859942,0.183692,0.465476,0.120792,0.979879,0.600576,0.589884,0.3693,0.403556,0.0551247,0.192012,0.613242,0.357361,0.943031,0.175041,0.975926,0.709933,0.156139,0.169209,0.920993,0.944234,0.856914,0.532612,0.32917,0.229408,0.822342,0.839064,0.35996,0.00531143,0.0646598,0.244607,0.947601,0.770696,0.356909,0.822355,0.794156,0.424574,0.886293,0.19643,0.527827,0.240148,0.103516,0.934191,0.0927967,0.406718,0.409146,0.0837297,0.964442,0.472343,0.186006,0.833816,0.0800099,0.912767,0.204129,0.333356,0.870372,0.378466,0.626111,0.273814,0.743232,0.17866,0.909933,0.0735441,0.990639,0.382362,0.550189,0.967714,0.108878,0.849713,0.98485,0.133903,0.741403,0.133447,0.520642,0.741522,0.225343,0.102147,0.0401389,0.943166,0.758445,0.168527,0.555696,0.626332,0.540547,0.459547,0.0598859,0.975335,0.995819,0.0739394,0.787145,0.612416,0.182662,0.916915,0.580422,0.96353,0.574096,0.418196,0.691784,0.104358,0.12538,0.681233,0.175419,0.447716,0.789687,0.945563,0.751873,0.43056,0.0692175,0.914471,0.43253,0.817162,0.834195,0.977769,0.636524,0.690637,0.93582,0.847675,0.511043,0.549971,0.421022,0.9878,0.659191,0.597836,0.0371642,0.860125,0.758098,0.887538,0.062471,0.447895,0.177658,0.774055,0.675376,0.744847,0.00687039,0.383984,0.857781,0.376787,0.792708,0.11712,0.525163,0.281652,0.0326322,0.908303,0.224753,0.404016,0.0962412,0.451845,0.20519,0.310552,0.623933,0.577268,0.924503,0.0251969,0.193784,0.0957305,0.738775,0.861246,0.622973,0.629238,0.683395,0.314998,0.936577,0.99669,0.559246,0.625653,0.51658,0.197263,0.582839,0.500064,0.947693,0.354391,0.398414,0.849139,0.72964,0.222424,0.0261561,0.397342,0.952959,0.554229,0.998446,0.840239,0.820363,0.705155,0.177793,0.206363,0.364422,0.170344,0.531987,0.581352,0.999487,0.556794,0.384607,0.528117,0.141935,0.778928,0.169711,0.924085,0.313463,0.500721,0.342779,0.160232,0.882335,0.672845,0.466588,0.764162,0.671736,0.0416619,0.390033,0.646938,0.903192,0.178928,0.830467,0.741614,0.904089,0.77369,0.269691,0.307648,0.957364,0.949299,0.788482,0.806541,0.141392,0.146214,0.100371,0.952386,0.528653,0.300189,0.683157,0.707715,0.362196,0.632284,0.805731,0.573981,0.153508,0.0232279,0.854937,0.901693,0.623892,0.762273,0.149281,0.101887,0.51148,0.721636,0.936682,0.901609,0.561475,0.665167,0.206301,0.555815,0.737393,0.736977,0.864503,0.119592,0.939718,0.579533,0.825555,0.845318,0.210486,0.460851,0.862545,0.877559,0.804561,0.574597,0.377971,0.273167,0.0286558,0.354713,0.0193508,0.108152,0.299404,0.93871,0.497771,0.792216,0.971466,0.48661,0.676761,0.654929,0.7256,0.807901,0.0162953,0.641113,0.14553,0.0104759,0.588028,0.931727,0.752427,0.103477,0.744761,0.452046,0.658488,0.13512,0.657519,0.613306,0.477525,0.536173,0.937794,0.986707,0.745679,0.721002,0.991946,0.565497,0.18056,0.398303,0.904699,0.0741242,0.145328,0.588383,0.410759,0.26138,0.877654,0.652491,0.162653,0.525939,0.851446,0.656725,0.0574073,0.512057,0.0244586,0.213891,0.589705,0.948091,0.555714,0.792953,0.586909,0.59943,0.616564,0.986486,0.472475,0.275342,0.0840883,0.859862,0.720676,0.808718,0.483532,0.151141,0.864368,0.48129,0.747157,0.13838,0.707964,0.932631,0.654871,0.363274,0.712169,0.712113,0.0157427,0.345586,0.0231505,0.409098,0.726518,0.305312,0.871493,0.0945357,0.907804,0.557341,0.290756,0.906971,0.530317,0.196877,0.286858,0.644047,0.320163,0.664892,0.0552063,0.882254,0.00264728,0.00469989,0.398196,0.66359,0.292991,0.139666,0.904829,0.356594,0.697648,0.785779,0.714592,0.689242,0.592604,0.454056,0.998035,0.267614,0.403981,0.554211,0.84585,0.977914,0.473674,0.708374,0.348506,0.885974,0.84211,0.185697,0.789919,0.0932916,0.211784,0.655028,0.423111,0.470234,0.506696,0.225982,0.73016,0.206173,0.619064,0.229256,0.525716,0.828202,0.262342,0.712857,0.08777,0.356772,0.592417,0.854148,0.724975,0.383262,0.134601,0.542625,0.659084,0.140494,0.502596,0.983689,0.324279,0.93336,0.899737,0.151733,0.426838,0.132215,0.0730439,0.493909,0.538213,0.848913,0.802888,0.257731,0.583082,0.461485,0.205671,0.61745,0.0769891,0.716293,0.9558,0.621213,0.574122,0.427936,0.0241195,0.84111,0.802297,0.0482745,0.369959,0.164491,0.32589,0.519858,0.083732,0.907508,0.73523,0.0110036,0.754428,0.399161,0.0734425,0.414444,0.664415,0.627079,0.153204,0.114673,0.291798,0.0119517,0.745647,0.997636,0.753532,0.571159,0.0513912,0.71934,0.592303,0.692007,0.128238,0.471237,0.934012,0.920267,0.986409,0.545352,0.941639,0.131242,0.330762,0.781878,0.63213,0.794019,0.483537,0.0885772,0.347519,0.950743,0.447973,0.380395,0.4405,0.0533732,0.842742,0.529,0.85865,0.147061,0.90281,0.423465,0.0173216,0.273401,0.411247,0.725493,0.221425,0.608479,0.72026,0.946469,0.91998,0.618012,0.595491,0.605969,0.64369,0.725111,0.122034,0.124961,0.666741,0.629169,0.572439,0.888069,0.14447,0.521959,0.134056,0.533816,0.908001,0.111096,0.784887,0.212434,0.899174,0.45756,0.933434,0.894537,0.184493,0.903936,0.738906,0.92317,0.0931121,0.912456,0.767392,0.240482,0.147875,0.0793111,0.597521,0.734576,0.429302,0.71325,0.757831,0.917169,0.928966,0.109657,0.640652,0.6344,0.0012874,0.0431767,0.986394,0.259847,0.877003,0.338247,0.553343,0.617455,0.934425,0.926352,0.942107,0.342438,0.0341229,0.365166,0.203558,0.208698,0.953858,0.743787,0.842693,0.132784,0.216713,0.221301,0.823556,0.860668,0.146454,0.533166,0.475654,0.916613,0.73949,0.948148,0.11696,0.0397618,0.377072,0.0508686,0.771966,0.104011,0.61661,0.327545,0.798401,0.527958,0.719108,0.91584,0.363352,0.105083,0.829313,0.0569305,0.887874,0.725001,0.679865,0.344492,0.899541,0.612593,0.600874,0.36859,0.926543,0.567565,0.41818,0.0844438,0.72267,0.478521,0.792349,0.722064,0.451553,0.357445,0.338,0.118844,0.895543,0.526486,0.410884,0.847223,0.678451,0.193778,0.633149,0.801807,0.512132,0.455805,0.471078,0.648718,0.380875,0.294025,0.0555762,0.769858,0.677363,0.885643,0.237259,0.750842,0.683688,0.928016,0.892184,0.571389,0.0969648,0.540667,0.0347422,0.361317,0.87028,0.242539,0.115435,0.0994431,0.883367,0.907797,0.429776,0.822036,0.256518,0.113448,0.825759,0.0586914,0.572513,0.297349,0.917656,0.591547,0.299598,0.974576,0.776462,0.384143,0.727569,|0.119432,0.892392,0.0913273,0.931679,0.472261,0.684533,0.750235,0.545523,0.968277,0.596694,0.828625,0.735883,0.221325,0.044983,0.85573,0.706779,0.0603384,0.621419,0.636728,0.446438,0.48944,0.482592,0.537839,0.143449,0.12646,0.474947,0.14692,0.750083,0.65263,0.0866119,0.931432,0.598128,0.61013,0.942512,0.567004,0.0101479,0.142071,0.550859,0.0561012,0.873443,0.872244,0.927211,0.895796,0.0572231,0.291506,0.917517,0.113722,0.802444,0.891531,0.549419,0.0764279,0.861785,0.382761,0.456581,0.464447,0.291705,0.329385,0.513828,0.462945,0.668249,0.787759,0.509093,0.00956541,0.135293,0.425145,0.203356,0.128157,0.679764,0.168311,0.129577,0.314352,0.415902,0.881973,0.513077,0.738467,0.814189,0.754044,0.65175,0.908307,0.540002,0.0705938,0.603431,0.0323721,0.00801092,0.96398,0.360134,0.55235,0.0224441,0.803629,0.571164,0.706766,0.0231943,0.59945,0.79279,0.850651,0.661465,0.359114,0.584674,0.687581,0.380489,0.637662,0.458346,0.607544,0.0137987,0.358188,0.117242,0.113257,0.325464,0.254287,0.855186,0.559416,0.870184,0.699253,0.425351,0.381802,0.693916,0.63167,0.242054,0.673428,0.0521696,0.212644,0.868239,0.405362,0.451887,0.806428,0.10632,0.780374,0.63807,0.179185,0.753683,0.623016,0.681937,0.862753,0.273246,0.812863,0.0205306,0.653051,0.0066458,0.587352,0.227899,0.269276,0.476064,0.42116,0.388458,0.607784,0.429642,0.911101,0.452734,0.739736,0.696782,0.551768,0.10561,0.610044,0.183751,0.335103,0.0830385,0.0220002,0.626986,0.986993,0.613373,0.638222,0.988451,0.998575,0.0707275,0.949561,0.312218,0.366521,0.980197,0.967677,0.460797,0.0970547,0.704746,0.735177,0.789684,0.887284,0.512051,0.640883,0.497637,0.877603,0.508418,0.31288,0.225786,0.448041,0.289756,0.116795,0.986596,0.941024,0.986603,0.869096,0.514014,0.148722,0.0528846,0.385123,0.704412,0.631959,0.774473,0.226247,0.433795,0.233676,0.416648,0.166541,0.721914,0.212788,0.246129,0.681787,0.0189051,0.606907,0.52934,0.464955,0.320925,0.624215,0.128826,0.776356,0.275384,0.197197,0.459105,0.218052,0.634864,0.923471,0.951928,0.0272117,0.906184,0.487266,0.602308,0.294656,0.24331,0.152827,0.751717,0.720373,0.169808,0.484515,0.853704,0.193278,0.497217,0.202591,0.710511,0.484585,0.139722,0.729002,0.143872,0.76169,0.764933,0.509033,0.741618,0.433052,0.0265528,0.788941,0.19393,0.570736,0.540783,0.938625,0.708954,0.398732,0.434007,0.212425,0.265151,0.394048,0.738185,0.101061,0.500566,0.257452,0.363042,0.281733,0.783273,0.602283,0.187472,0.632813,0.0494673,0.447375,0.613357,0.290078,0.585723,0.759164,0.679581,0.33372,0.696837,0.472792,0.89441,0.762048,0.580174,0.314229,0.481653,0.400879,0.542217,0.490539,0.477143,0.0290125,0.140081,0.384606,0.601999,0.229572,0.00355953,0.852842,0.68435,0.85436,0.484329,0.365864,0.683209,0.588356,0.269301,0.0394289,0.7082,0.828684,0.812651,0.448333,0.559768,0.392884,0.767628,0.921259,0.27125,0.145817,0.00107557,0.899242,0.844069,0.366211,0.921955,0.455723,0.462059,0.221676,0.630987,0.314925,0.0560231,0.0126415,0.127101,0.0821666,0.994994,0.906076,0.474573,0.116484,0.531729,0.686357,0.139707,0.423069,0.422264,0.912675,0.0905607,0.209579,0.937576,0.455122,0.121152,0.155905,0.970147,0.0497282,0.526549,0.844357,0.508191,0.664458,0.212343,0.428972,0.125014,0.286406,0.906176,0.529218,0.273173,0.0496806,0.341337,0.652409,0.866983,0.943589,0.202459,0.694967,0.139046,0.196963,0.0281414,0.382257,0.143369,0.0923634,0.0116547,0.0636914,0.850772,0.675617,0.240854,0.717024,0.540254,0.346723,0.0400723,0.576997,0.548005,0.805289,0.709157,0.662884,0.55609,0.677851,0.629112,0.672585,0.50342,0.797084,0.613978,0.527101,0.052504,0.604256,0.406944,0.0859125,0.933789,0.98779,0.210315,0.520369,0.830422,0.589324,0.533214,0.627017,0.911186,0.542693,0.725723,0.870637,0.826961,0.7041,0.684835,0.71444,0.638564,0.87573,0.450263,0.99177,0.555236,0.382885,0.15506,0.348636,0.819989,0.0835522,0.266685,0.064555,0.26056,0.582591,0.579766,0.550092,0.0592124,0.609403,0.0172709,0.621713,0.0408416,0.140873,0.23985,0.402331,0.857496,0.881227,0.905424,0.170233,0.341138,0.552811,0.702089,0.548093,0.961553,0.258758,0.685615,0.00390989,0.949483,0.224604,0.694386,0.0401525,0.0372805,0.780519,0.608202,0.359325,0.276624,0.575453,0.784703,0.512539,0.423839,0.170245,0.596848,0.0959301,0.384611,0.58565,0.407352,0.947388,0.685543,0.757922,0.455692,0.94519,0.129884,0.396927,0.914311,0.052696,0.472003,0.179874,0.727055,0.799896,0.104165,0.979981,0.663816,0.396564,0.536366,0.148681,0.498463,0.74918,0.790164,0.895261,0.703588,0.120454,0.373461,0.666413,0.498558,0.484753,0.0425496,0.434639,0.746026,0.100007,0.975591,0.843926,0.075784,0.896219,0.227493,0.989707,0.599552,0.898686,0.0495422,0.500793,0.440484,0.503601,0.845945,0.00211,0.827187,0.792865,0.848534,0.208976,0.0415143,0.257015,0.786387,0.878495,0.433833,0.58812,0.964591,0.768764,0.385694,0.916427,0.727102,0.29682,0.359851,0.567545,0.155972,0.837688,0.542121,0.401718,0.722724,0.386362,0.496766,0.736149,0.522148,0.0365462,0.299594,0.892918,0.577997,0.745231,0.541678,0.0836082,0.847518,0.49082,0.919436,0.326899,0.137337,0.569489,0.359603,0.0894538,0.518121,0.509723,0.547106,0.130955,0.491754,0.0230622,0.37438,0.494414,0.0648851,0.451859,0.538765,0.55211,0.630303,0.295166,0.924605,0.161038,0.70694,0.730645,0.257882,0.0839572,0.987481,0.326754,0.367662,0.853029,0.159633,0.734823,0.554402,0.240698,0.610601,0.0892709,0.580854,0.0767527,0.0887864,0.626245,0.451481,0.343393,0.910941,0.860368,0.238614,0.775668,0.333446,0.287645,0.0374413,0.447172,0.0890395,0.676853,0.890959,0.64767,0.171468,0.642542,0.857512,0.041749,0.380199,0.659697,0.816894,0.674892,0.377625,0.615901,0.347728,0.25005,0.858346,0.152308,0.446713,0.687624,0.68862,0.187699,0.948332,0.261155,0.471866,0.406923,0.614075,0.996115,0.195442,0.856515,0.603063,0.220313,0.714253,0.174344,0.590605,0.296251,0.0491403,0.101521,0.818366,0.363042,0.460521,0.632313,0.435522,0.665692,0.718926,0.882033,0.974629,0.0544172,0.795781,0.334611,0.241943,0.495666,0.254251,0.0702072,0.58566,0.45649,0.191438,0.479533,0.70252,0.0562338,0.249428,0.62875,0.898965,0.29029,0.938969,0.00814849,0.394996,0.0233509,0.455728,0.367023,0.00206518,0.967181,0.158246,0.487998,0.485051,0.843574,0.340162,0.926229,0.74527,0.854745,0.737665,0.776547,0.761257,0.739614,0.632552,0.56382,0.595406,0.267206,0.0281922,0.914537,0.54118,0.415954,0.321905,0.170955,0.168919,0.287286,0.659384,0.249988,0.324288,0.626461,0.375393,0.574123,0.761337,0.717127,0.343593,0.210382,0.78385,0.210991,0.737848,0.534374,0.860932,0.478336,0.894817,0.554795,0.590611,0.175519,0.184125,0.746956,0.703301,0.83367,0.415113,0.057743,0.285373,0.237086,0.08406,0.71795,0.379914,0.383528,0.410379,0.049978,0.173396,0.567339,0.81355,0.417817,0.623053,0.36013,0.764888,0.113334,0.523448,0.101198,0.541489,0.489493,0.0305029,0.914276,0.94964,0.299391,0.308059,0.816588,0.214879,0.529555,0.405775,0.281049,0.132725,0.649963,0.00487345,0.340949,0.745226,0.0628964,0.731671,0.834423,0.369845,0.909258,0.218462,0.993554,0.30838,0.122947,0.82106,0.540357,0.770814,0.482682,0.295658,0.825284,0.166572,0.992176,0.248484,0.264427,0.762305,0.500166,0.569787,0.530307,0.175982,0.529474,0.863796,0.570801,0.419934,0.376087,0.602539,0.801724,0.924902,0.735231,0.743213,0.0262346,0.999539,0.978368,0.156865,0.458185,0.702189,0.943455,0.111946,0.788975,0.0995452,0.940603,0.607646,0.329075,0.275365,0.686005,0.489591,0.261228,0.322477,0.926859,0.472979,0.00425416,0.741575,0.387425,0.439536,0.535309,0.536727,0.692635,0.13154,0.354346,0.542238,0.319411,0.378039,0.93492,0.500918,0.604654,0.164823,0.598776,0.78505,0.0396289,0.870591,0.949952,0.21174,0.327607,0.690205,0.238851,0.281949,0.245062,0.984256,0.671107,0.656364,0.973166,0.581175,0.260259,0.7638,0.628748,0.738988,0.427482,0.319722,0.072954,0.665953,0.0337677,0.363496,0.290726,0.0717603,0.0667115,0.884698,0.382667,0.835773,0.585434,0.671135,0.331472,0.810388,0.394702,0.271791,0.748566,0.780952,0.553779,0.115322,0.98462,0.614762,0.299004,0.875973,0.155701,0.111165,0.627063,0.560518,0.765539,0.29875,0.976751,0.589119,0.393432,0.651965,0.562229,0.217423,0.849369,0.600909,0.351044,0.996546,0.731912,0.844361,0.29301,0.0752974,0.424754,0.197821,0.587424,0.835557,0.365337,0.388442,0.287726,0.590258,0.148614,0.416544,0.152126,0.00542206,0.00501901,0.447563,0.126342,0.633024,0.486278,0.152386,0.0778511,0.160857,0.362139,0.344959,0.598885,0.214365,0.412849,0.377305,0.273746,0.0956083,0.22316,0.74656,0.172162,0.437376,0.882153,0.891892,0.231291,0.790746,0.752499,0.754154,0.493129,0.345637,0.0991421,0.375582,0.926976,0.0439925,0.986337,0.213709,0.399969,0.086617,0.479989,0.505549,0.877086,0.58834,0.473413,0.671717,0.806351,0.870283,0.73923,0.779392,0.232502,0.55149,0.136315,0.751839,0.565663,0.426239,0.554985,0.994583,0.529848,0.572752,0.623422,0.764809,0.791593,0.337747,0.873378,0.606063,0.884543,0.548684,0.436013,0.932161,0.320973,0.689658,0.610888,0.0144681,0.0123466,0.0373953,0.966959,0.71962,0.204984,0.690444,0.79578,0.361079,0.258927,0.862037,0.762035,0.338373,0.756331,0.107674,0.322421,0.186395,0.426721,0.228441,0.665434,0.618688,0.843829,0.406385,0.762166,0.928694,0.458305,0.295348,0.337618,0.412809,|0.100207,0.578457,0.756722,0.000594735,0.562355,0.199878,0.707425,0.595262,0.311219,0.480412,0.504025,0.0140936,0.334194,0.782141,0.0841101,0.851194,0.771386,0.870457,0.244471,0.69652,0.986568,0.239953,0.105039,0.319429,0.505109,0.114342,0.940763,0.650423,0.0807959,0.609531,0.209327,0.154174,0.814354,0.740827,0.934836,0.371598,0.948475,0.982746,0.18768,0.0686784,0.828618,0.626713,0.346733,0.480609,0.90562,0.874098,0.0937532,0.421422,0.443743,0.877824,0.548317,0.676602,0.345589,0.711154,0.0401797,0.301676,0.440932,0.0324894,0.653278,0.620051,0.123572,0.829976,0.877988,0.830537,0.115951,0.428915,0.346149,0.155403,0.921935,0.455116,0.591696,0.581055,0.561582,0.267038,0.441666,0.171861,0.836681,0.704385,0.914216,0.903845,0.299003,0.175844,0.292801,0.677226,0.0206095,0.0428135,0.996922,0.893652,0.0125924,0.138346,0.0830396,0.724985,0.364212,0.342064,0.354037,0.330444,0.392522,0.553936,0.46603,0.661234,0.897433,0.973636,0.69394,0.965955,0.809839,0.227879,0.0246205,0.801742,0.0463208,0.851173,0.337609,0.730154,0.617349,0.369732,0.601779,0.35976,0.61653,0.211293,0.0565849,0.0902576,0.852504,0.755606,0.585272,0.551895,0.344697,0.0819253,0.737682,0.253521,0.689244,0.0197271,0.153163,0.264768,0.830092,0.676943,0.637481,0.551506,0.454778,0.964921,0.873508,0.361484,0.882227,0.323623,0.78399,0.773279,0.770317,0.323692,0.665584,0.396657,0.234797,0.0135977,0.0251091,0.0526829,0.845388,0.931935,0.0215636,0.893847,0.984571,0.45776,0.681442,0.199205,0.170107,0.338455,0.667362,0.420584,0.40567,0.425012,0.920437,0.55155,0.47281,0.802774,0.53065,0.51479,0.316182,0.172395,0.300157,0.420105,0.627483,0.253289,0.825018,0.70417,0.527226,0.53688,0.117003,0.389221,0.839726,0.616495,0.65991,0.749398,0.183837,0.825172,0.399319,0.429501,0.492287,0.257486,0.293698,0.662543,0.77903,0.135068,0.201872,0.12072,0.833204,0.860547,0.190513,0.800518,0.647195,0.259424,0.920626,0.0552002,0.377655,0.532526,0.410312,0.279841,0.555429,0.523326,0.991524,0.752205,0.226052,0.86511,0.246914,0.0943054,0.374144,0.32527,0.183894,0.806278,0.880442,0.757001,0.478388,0.357985,0.336278,0.754235,0.962978,0.865181,0.12271,0.47418,0.508691,0.112464,0.433537,0.584086,0.625551,0.293135,0.159953,0.128445,0.987705,0.141346,0.0375476,0.99265,0.187514,0.747921,0.81713,0.208745,0.240206,0.846501,0.15596,0.475101,0.700921,0.077786,0.355981,0.277297,0.721268,0.230091,0.552486,0.116813,0.937505,0.417545,0.351603,0.803122,0.652395,0.533388,0.0604899,0.705924,0.18359,0.708963,0.157897,0.76309,0.14076,0.902715,0.930852,0.218208,0.0338565,0.022507,0.938278,0.776544,0.999821,0.938598,0.314291,0.767951,0.793317,0.86196,0.828768,0.742862,0.244235,0.416093,0.133521,0.661126,0.573138,0.190193,0.984035,0.102294,0.842632,0.223586,0.355626,0.0420645,0.759113,0.352898,0.382072,0.446947,0.770091,0.971626,0.574172,0.632933,0.218639,0.476158,0.990231,0.161217,0.967557,0.22453,0.663915,0.0686824,0.560621,0.646669,0.267426,0.628902,0.756029,0.241846,0.227863,0.686356,0.3324,0.514098,0.297077,0.0137619,0.231525,0.867254,0.858205,0.367945,0.574271,0.0992334,0.819155,0.742887,0.333706,0.549499,0.948821,0.0100843,0.266358,0.526371,0.192857,0.706191,0.749763,0.259203,0.73689,0.0297737,0.124293,0.716269,0.438229,0.753726,0.860431,0.611543,0.82706,0.209231,0.225905,0.0722938,0.518227,0.508032,0.477572,0.883595,0.421644,0.528702,0.316439,0.460736,0.42191,0.87733,0.797423,0.102598,0.219924,0.00591433,0.656391,0.762188,0.74436,0.0653302,0.582699,0.657593,0.909804,0.130945,0.945626,0.0165247,0.583462,0.145867,0.0171257,0.853476,0.0840514,0.910858,0.398896,0.560766,0.568005,0.10099,0.695946,0.818635,0.237297,0.121749,0.352247,0.288155,0.224999,0.560375,0.45454,0.416665,0.0300387,0.187654,0.0488783,0.750765,0.415848,0.823426,0.0645831,0.698549,0.959353,0.562232,0.785567,0.100748,0.843501,0.995663,0.219028,0.177363,0.976806,0.0351723,0.54185,0.140429,0.578881,0.270744,0.62462,0.0607342,0.656465,0.115637,0.186191,0.276156,0.389349,0.551707,0.360267,0.945324,0.96701,0.984664,0.377585,0.428708,0.924117,0.57124,0.236487,0.036748,0.865937,0.167783,0.944855,0.582149,0.553676,0.903287,0.446528,0.0705919,0.444713,0.954893,0.772366,0.298401,0.870042,0.708634,0.0819389,0.894455,0.581693,0.668948,0.342023,0.260856,0.232091,0.0735427,0.937156,0.0483485,0.375092,0.267511,0.43068,0.262502,0.959792,0.451796,0.679991,0.927208,0.178357,0.696927,0.519456,0.151577,0.947091,0.320306,0.380842,0.90377,0.711709,0.69968,0.0157816,0.474552,0.214463,0.766066,0.354674,0.594226,0.096884,0.287357,0.125355,0.45004,0.724598,0.30576,0.00271535,0.908643,0.279695,0.610711,0.511334,0.913822,0.78981,0.180104,0.65805,0.696107,0.394099,0.541902,0.54431,0.191973,0.124473,0.64405,0.0478805,0.864571,0.174016,0.284491,0.777511,0.986692,0.555065,0.821773,0.298575,0.26638,0.619067,0.00685769,0.9047,0.919875,0.762565,0.487713,0.47889,0.118254,0.348829,0.176155,0.814035,0.900914,0.660728,0.747631,0.491762,0.187787,0.340078,0.970357,0.866789,0.378807,0.491211,0.0911376,0.62797,0.403719,0.225541,0.757056,0.407553,0.210233,0.791636,0.688111,0.764933,0.128259,0.0994526,0.332481,0.697793,0.527834,0.428252,0.251949,0.364865,0.227007,0.590401,0.42251,0.988787,0.506793,0.345114,0.100578,0.127399,0.240206,0.880066,0.201622,0.461255,0.739406,0.879882,0.479151,0.552292,0.329554,0.529483,0.484032,0.842751,0.0791464,0.920761,0.702062,0.454182,0.448939,0.50358,0.515685,0.849818,0.968522,0.0140609,0.374935,0.512627,0.64568,0.498309,0.150715,0.0523874,0.530524,0.31603,0.0783618,0.75835,0.179711,0.0360172,0.270398,0.761503,0.633724,0.661648,0.57921,0.162826,0.608103,0.202256,0.129521,0.600348,0.7596,0.343015,0.357646,0.714897,0.149573,0.639037,0.666373,0.0616437,0.81343,0.963643,0.808239,0.521731,0.912411,0.429935,0.542151,0.826273,0.527538,0.267097,0.711413,0.0785151,0.771301,0.0158175,0.0475673,0.302059,0.570979,0.508688,0.0511017,0.0361206,0.517416,0.431008,0.227048,0.396838,0.482073,0.803087,0.81439,0.0877941,0.87171,0.355425,0.521372,0.197022,0.426679,0.809243,0.986014,0.159606,0.806372,0.54416,0.992821,0.453851,0.658949,0.703965,0.813442,0.298747,0.921301,0.727421,0.862475,0.391623,0.386814,0.0112204,0.67634,0.872783,0.544584,0.113524,0.0981149,0.354013,0.517866,0.892358,0.280896,0.789205,0.620941,0.90548,0.53982,0.96975,0.868625,0.871775,0.0522459,0.087757,0.240138,0.350656,0.707404,0.836068,0.0552505,0.11417,0.889847,0.172195,0.0262723,0.330997,0.354235,0.113556,0.735643,0.803688,0.108037,0.275527,0.114115,0.632291,0.311906,0.0392808,0.688196,0.904239,0.865032,0.511971,0.347049,0.480252,0.335975,0.408918,0.58416,0.0322441,0.039651,0.6796,0.0373808,0.108911,0.844085,0.780037,0.504352,0.628469,0.84642,0.890718,0.849436,0.392015,0.108757,0.545608,0.161746,0.182502,0.578754,0.111301,0.068614,0.592373,0.939501,0.845243,0.417418,0.74742,0.830717,0.313392,0.825648,0.228236,0.823922,0.950205,0.0652878,0.024464,0.563489,0.746327,0.699027,0.283149,0.60943,0.737827,0.377263,0.925876,0.575524,0.961467,0.529846,0.513772,0.90032,0.788079,0.293334,0.164739,0.157268,0.228982,0.867557,0.363151,0.239553,0.514884,0.215012,0.497598,0.199459,0.013849,0.942779,0.908525,0.16246,0.187722,0.0180212,0.934893,0.114095,0.880547,0.709749,0.587169,0.51532,0.7831,0.789401,0.354508,0.500549,0.613641,0.308949,0.38582,0.325238,0.176615,0.40883,0.213925,0.221978,0.2768,0.561146,0.213437,0.0384986,0.140165,0.232943,0.720962,0.483881,0.794585,0.208008,0.0934211,0.787003,0.16203,0.92741,0.803684,0.436169,0.812698,0.617764,0.682387,0.204452,0.000463963,0.900158,0.428752,0.77067,0.159319,0.803187,0.0181246,0.722432,0.470822,0.352475,0.165182,0.980368,0.481704,0.734915,0.345936,0.856037,0.947201,0.595923,0.254521,0.363456,0.95474,0.574103,0.191288,0.502052,0.73773,0.21545,0.70148,0.403167,0.252154,0.235466,0.825017,0.536974,0.257431,0.798676,0.24405,0.73448,0.39278,0.850027,0.285485,0.625736,0.0839878,0.568641,0.0648167,0.367207,0.345707,0.791078,0.236223,0.0764486,0.956233,0.967211,0.701123,0.248365,0.793691,0.506489,0.241359,0.288056,0.811151,0.729859,0.556484,0.662314,0.101125,0.0319249,0.503966,0.762355,0.987678,0.205994,0.0399759,0.496875,0.381196,0.926002,0.192959,0.878268,0.33987,0.67326,0.252725,0.116195,0.609705,0.460459,0.386068,0.346072,0.596586,0.333437,0.446368,0.0914791,0.44534,0.891226,0.872742,0.979508,0.873826,0.315827,0.543213,0.0219507,0.797597,0.0129308,0.312217,0.0655512,0.167669,0.972116,0.58951,0.127557,0.72933,0.17429,0.773775,0.425948,0.95906,0.0201735,0.375584,0.7505,0.21973,0.462218,0.134992,0.251389,0.787183,0.811142,0.693051,0.111236,0.640642,0.367016,0.699964,0.0431812,0.377491,0.23209,0.140182,0.789185,0.724939,0.40148,0.157215,0.130754,0.337125,0.222716,0.136417,0.273598,0.389798,0.873638,0.0690241,0.253889,0.0794594,0.669941,0.35778,0.556985,0.64387,0.418473,0.833706,0.995449,0.265627,0.776623,0.918855,0.701573,0.336394,0.955744,0.53268,0.785181,0.139937,0.417434,0.878807,0.433778,0.104297,0.415345,0.312165,0.576446,0.588492,0.174947,0.197517,0.924569,0.589353,0.176949,0.248353,0.46616,0.66871,0.8649,0.632738,0.560342,0.736581,0.774544,0.267665,0.227307,0.394723,0.794993,|0.840349,0.685066,0.132832,0.523543,0.318077,0.02292,0.904622,0.93913,0.74907,0.50068,0.235133,0.190865,0.490357,0.647416,0.392018,0.09174,0.716749,0.696039,0.143095,0.88493,0.64834,0.81375,0.880887,0.883973,0.939395,0.449881,0.73034,0.600355,0.0318641,0.550865,0.0365185,0.593385,0.888794,0.55802,0.708612,0.576721,0.363319,0.8879,0.50502,0.770916,0.824977,0.812854,0.262635,0.102734,0.0106529,0.98452,0.079958,0.301241,0.593401,0.428389,0.691338,0.174031,0.631011,0.148954,0.337673,0.879498,0.877236,0.977776,0.480332,0.990275,0.907489,0.80142,0.695879,0.652739,0.957009,0.0884557,0.42498,0.365547,0.964755,0.418493,0.589991,0.622043,0.94386,0.795265,0.57487,0.948941,0.791559,0.940418,0.949257,0.694013,0.920028,0.102561,0.43229,0.684784,0.282822,0.626474,0.862569,0.867817,0.340426,0.591656,0.0620651,0.319902,0.510965,0.190171,0.243425,0.733457,0.964981,0.889085,0.979748,0.263399,0.849705,0.104292,0.705557,0.330944,0.459437,0.14599,0.00900334,0.223206,0.66259,0.735747,0.695193,0.912853,0.0107685,0.677042,0.850504,0.754604,0.47435,0.657493,0.461318,0.682677,0.442399,0.652713,0.953412,0.0224898,0.285975,0.69317,0.194227,0.931748,0.0571692,0.175979,0.823317,0.922302,0.84621,0.0573235,0.664461,0.670205,0.0222426,0.128336,0.0384057,0.345279,0.0596303,0.319666,0.785228,0.360245,0.300828,0.648904,0.521234,0.806606,0.778863,0.356729,0.214687,0.244538,0.195169,0.24989,0.324413,0.647776,0.0839536,0.27915,0.228731,0.155641,0.599649,0.193405,0.100914,0.788732,0.271821,0.735864,0.758195,0.18723,0.732025,0.541756,0.748824,0.530992,0.667119,0.823153,0.135283,0.423964,0.867125,0.32822,0.475344,0.323982,0.174606,0.517293,0.628111,0.27736,0.182477,0.314378,0.86742,0.795464,0.191603,0.21808,0.491063,0.377952,0.463511,0.55125,0.475577,0.189702,0.538586,0.138574,0.461632,0.659797,0.285763,0.362068,0.00790578,0.78865,0.662114,0.393923,0.436934,0.139711,0.123417,0.364524,0.669288,0.863725,0.741425,0.362894,0.941037,0.50196,0.716613,0.591518,0.532674,0.932929,0.0549737,0.850018,0.375305,0.518226,0.282881,0.620072,0.330763,0.144796,0.263136,0.648997,0.252931,0.88638,0.457292,0.385188,0.531708,0.289768,0.191642,0.54764,0.084913,0.905078,0.219994,0.251655,0.966063,0.387237,0.520991,0.929382,0.0960589,0.36358,0.815044,0.187813,0.683392,0.598099,0.608665,0.746841,0.232213,0.231922,0.0511338,0.827963,0.252071,0.980807,0.698655,0.0566123,0.996646,0.820912,0.948726,0.0136187,0.780393,0.68953,0.82634,0.261083,0.37414,0.0824856,0.12737,0.891995,0.245964,0.993666,0.192573,0.887124,0.4127,0.635226,0.523914,0.170381,0.172237,0.797036,0.0500979,0.0425583,0.380229,0.794012,0.137308,0.999097,0.0067907,0.0912004,0.407038,0.429849,0.265522,0.996886,0.289278,0.163643,0.804166,0.431021,0.0611474,0.851647,0.0411445,0.702851,0.792864,0.242824,0.693474,0.521237,0.686179,0.905699,0.359743,0.212643,0.992867,0.231614,0.485478,0.00761104,0.257425,0.869117,0.493689,0.55219,0.921791,0.261762,0.74189,0.332671,0.0629755,0.995956,0.523811,0.0437797,0.551664,0.0601935,0.195963,0.6045,0.299663,0.952479,0.79359,0.593223,0.0525053,0.178929,0.690164,0.534986,0.301591,0.133145,0.870438,0.292085,0.262178,0.761328,0.0207243,0.922755,0.821615,0.183607,0.101796,0.424219,0.256222,0.569587,0.080577,0.0360402,0.284818,0.578272,0.985987,0.151095,0.88672,0.846055,0.189869,0.516257,0.45845,0.22822,0.574562,0.706285,0.748653,0.143726,0.308346,0.59615,0.552243,0.260405,0.39872,0.711041,0.417196,0.789602,0.33317,0.558272,0.493497,0.352879,0.549368,0.300261,0.310338,0.620342,0.911743,0.36486,0.845493,0.0572715,0.907131,0.930443,0.247557,0.511163,0.215567,0.29605,0.281028,0.159253,0.35128,0.110221,0.619504,0.417589,0.246983,0.242769,0.458094,0.346005,0.492944,0.21403,0.990493,0.738372,0.606185,0.139341,0.432861,0.627261,0.369661,0.763982,0.337553,0.336561,0.15491,0.258282,0.769332,0.973684,0.594474,0.554731,0.00224656,0.992205,0.319427,0.0935545,0.909312,0.482997,0.702767,0.462846,0.683849,0.706299,0.168787,0.65854,0.466195,0.0238356,0.110118,0.571206,0.622058,0.602707,0.705204,0.562837,0.93637,0.653381,0.888026,0.727073,0.542092,0.37003,0.539227,0.689198,0.0723851,0.611021,0.499669,0.803637,0.224679,0.169273,0.459679,0.828542,0.079765,0.834468,0.770908,0.0522972,0.64605,0.193253,0.416595,0.204981,0.190012,0.589536,0.801796,0.334592,0.385022,0.432815,0.0104243,0.783037,0.923785,0.841113,0.68415,0.156428,0.721673,0.541157,0.231832,0.905085,0.245341,0.817307,0.501814,0.312756,0.569651,0.205747,0.616973,0.808189,0.695209,0.135,0.821452,0.0621886,0.510271,0.497959,0.701976,0.87939,0.609912,0.592558,0.940017,0.248022,0.835015,0.673539,0.276884,0.541781,0.872723,0.503651,0.358841,0.117149,0.875978,0.515891,0.684412,0.190827,0.279438,0.374501,0.591038,0.927604,0.289319,0.968663,0.974951,0.118831,0.165086,0.224135,0.0347241,0.660418,0.754818,0.152381,0.703602,0.0349209,0.0348864,0.362403,0.918699,0.465234,0.534588,0.237138,0.538328,0.660218,0.0394298,0.612673,0.983085,0.826605,0.75836,0.123854,0.45775,0.267812,0.909752,0.295748,0.287163,0.803578,0.205176,0.754201,0.929585,0.0793311,0.888216,0.201116,0.201117,0.108582,0.939601,0.593851,0.408773,0.657974,0.86308,0.828879,0.485607,0.990267,0.352243,0.359835,0.394177,0.141882,0.591725,0.0833008,0.881199,0.49389,0.32037,0.129355,0.394422,0.37647,0.055297,0.826975,0.460323,0.830719,0.746601,0.661207,0.328333,0.777357,0.217329,0.706617,0.0105793,0.594616,0.391129,0.646448,0.325349,0.167319,0.773751,0.959827,0.704484,0.912685,0.61287,0.938416,0.629672,0.0727916,0.986074,0.918367,0.0707934,0.638627,0.99983,0.875964,0.0602109,0.0297535,0.861262,0.08996,0.458669,0.281245,0.355762,0.209293,0.480108,0.147875,0.14203,0.355643,0.263163,0.0836614,0.928417,0.774282,0.264226,0.501358,0.104536,0.552684,0.374834,0.884567,0.711824,0.613021,0.39292,0.0196785,0.585696,0.264827,0.999438,0.654592,0.0846035,0.30025,0.449298,0.895834,0.822185,0.522827,0.201105,0.906346,0.853465,0.513307,0.60131,0.163676,0.372182,0.296949,0.481786,0.564743,0.123641,0.784506,0.864551,0.851381,0.501763,0.169833,0.845216,0.461869,0.779646,0.178349,0.099322,0.496125,0.756445,0.0306264,0.389215,0.35483,0.0408118,0.844352,0.673132,0.900442,0.809042,0.437313,0.656629,0.69242,0.636288,0.451123,0.735214,0.729478,0.868204,0.594988,0.807241,0.147534,0.467117,0.93743,0.986005,0.37237,0.435793,0.575646,0.388187,0.0741042,0.763378,0.677902,0.503652,0.954128,0.391516,0.691863,0.81146,0.017715,0.534837,0.286141,0.727943,0.497393,0.280907,0.360088,0.907159,0.209163,0.975477,0.397589,0.889958,0.594718,0.425664,0.342087,0.878757,0.37691,0.508563,0.374577,0.937682,0.118723,0.557874,0.664195,0.225502,0.105056,0.0545123,0.0373802,0.850098,0.965235,0.624307,0.235611,0.114481,0.749677,0.452751,0.0493211,0.956353,0.211638,0.56964,0.0258918,0.827909,0.74233,0.22758,0.442251,0.474482,0.359109,0.455595,0.686258,0.0376271,0.337177,0.346302,0.201366,0.583553,0.578241,0.990403,0.74768,0.568259,0.679829,0.10734,0.033306,0.504655,0.712664,0.632048,0.454475,0.102562,0.519756,0.97472,0.390324,0.0706325,0.703757,0.581552,0.846961,0.449034,0.047811,0.601476,0.843622,0.524259,0.67934,0.242177,0.432738,0.328714,0.122906,0.311061,0.116839,0.396227,0.958548,0.616313,0.151568,0.47597,0.149114,0.838599,0.0314366,0.192139,0.350233,0.155342,0.356846,0.229462,0.531983,0.360156,0.686499,0.103248,0.651444,0.111612,0.549742,0.381866,0.68497,0.482802,0.481663,0.601318,0.206367,0.696321,0.146665,0.715644,0.0656002,0.0523884,0.467886,0.471426,0.176518,0.572498,0.708732,0.513699,0.300459,0.575616,0.0953553,0.889751,0.401074,0.654286,0.909727,0.618154,0.707869,0.566777,0.704993,0.378966,0.92486,0.734691,0.751683,0.106573,0.697986,0.909396,0.91684,0.37924,0.202222,0.796245,0.858256,0.422833,0.675917,0.360966,0.567971,0.770451,0.125671,0.175038,0.765825,0.933918,0.00917256,0.715485,0.278815,0.670257,0.47234,0.0220254,0.773395,0.269695,0.136149,0.965072,0.0522116,0.829938,0.359619,0.651726,0.728017,0.0284679,0.974128,0.335661,0.023671,0.248345,0.144849,0.266081,0.063793,0.0367029,0.835577,0.0955579,0.958442,0.849434,0.0247635,0.588341,0.704207,0.772885,0.066855,0.610064,0.805575,0.233316,0.280643,0.995889,0.543398,0.242015,0.209101,0.885243,0.0589825,0.403569,0.187181,0.797408,0.689261,0.148318,0.955382,0.285399,0.282281,0.0940661,0.712859,0.398206,0.646788,0.160348,0.0512193,0.237,0.413211,0.591612,0.884692,0.50308,0.639405,0.422463,0.884049,0.914462,0.00832355,0.434419,0.377102,0.693871,0.163297,0.645184,0.0205783,0.798842,0.586378,0.642304,0.286458,0.306602,0.052501,0.703322,0.745452,0.186837,0.777101,0.139915,0.439355,0.971967,0.0484685,0.404673,0.678069,0.605152,0.899663,0.388294,0.338718,0.457209,0.39481,0.605319,0.520518,0.849987,0.662449,0.575267,0.108178,0.729615,0.645897,0.507434,0.368675,0.805188,0.331185,0.935786,0.0756558,0.849851,0.341819,0.862441,0.487964,0.766692,0.340432,0.988816,0.85284,0.682703,0.483414,0.67707,0.68605,0.254617,0.325822,0.899695,0.32483,0.847277,0.387895,0.403461,0.0552632,0.092144,0.241049,0.0297819,0.783962,0.0892038,0.363286,0.799515,0.307666,0.615308,0.30578,0.0141892,0.0179296,0.897867,0.707963,0.60861,0.104966,|0.0997118,0.0658655,0.851699,0.925171,0.645644,0.215295,0.745989,0.0127562,0.490648,0.43224,0.756199,0.649241,0.174827,0.142885,0.767948,0.600961,0.596912,0.95853,0.156012,0.206718,0.429117,0.136901,0.708169,0.407073,0.277607,0.619518,0.377623,0.320628,0.153997,0.223195,0.0572053,0.289066,0.606063,0.850042,0.405735,0.877723,0.666908,0.216408,0.774548,0.405834,0.506278,0.15715,0.316657,0.808515,0.825665,0.0273226,0.993519,0.131158,0.911988,0.298216,0.267422,0.655381,0.465104,0.647795,0.367598,0.0253979,0.0366655,0.444017,0.949484,0.0699354,0.330682,0.337443,0.825928,0.119964,0.197397,0.912002,0.809879,0.734336,0.383653,0.423296,0.334853,0.879519,0.634573,0.53807,0.0559391,0.266243,0.908711,0.0280318,0.907674,0.679654,0.383542,0.64092,0.919014,0.0204561,0.299108,0.93159,0.740206,0.458285,0.889011,0.54625,0.809341,0.182026,0.313424,0.326237,0.00598091,0.422235,0.938731,0.65291,0.124408,0.268308,0.920401,0.602067,0.693302,0.54683,0.134789,0.655955,0.677386,0.936462,0.383563,0.406627,0.688258,0.058333,0.55642,0.734857,0.503091,0.836569,0.519507,0.859343,0.321803,0.776602,0.828408,0.80313,0.111816,0.827524,0.274811,0.220895,0.824353,0.622834,0.524959,0.77515,0.508692,0.367008,0.669469,0.167318,0.422258,0.952393,0.470161,0.606447,0.778332,0.493029,0.760716,0.440464,0.202817,0.522501,0.591807,0.741094,0.798924,0.57298,0.594255,0.542351,0.725011,0.242832,0.406303,0.391218,0.00949585,0.931918,0.616609,0.650486,0.665759,0.284472,0.684748,0.565735,0.910653,0.663196,0.108185,0.911476,0.858306,0.589092,0.804346,0.070456,0.380227,0.00924158,0.742035,0.00267994,0.589455,0.0786031,0.502511,0.519407,0.532301,0.833413,0.614184,0.139216,0.0305498,0.301278,0.508512,0.056205,0.427368,0.140956,0.746626,0.590444,0.12477,0.185522,0.3258,0.866925,0.6765,0.537988,0.638845,0.0453654,0.323039,0.334246,0.237595,0.0486646,0.627946,0.498412,0.823173,0.927759,0.795891,0.161008,0.496595,0.288933,0.211007,0.880329,0.240564,0.609484,0.900499,0.119928,0.00750697,0.668584,0.962913,0.753753,0.498077,0.544868,0.301426,0.623627,0.383201,0.245161,0.266667,0.858271,0.408505,0.91277,0.94356,0.486938,0.952295,0.81509,0.19773,0.0400295,0.127069,0.573696,0.637806,0.780509,0.659139,0.291376,0.456061,0.457463,0.716732,0.085217,0.630667,0.0528358,0.399652,0.588412,0.643201,0.596547,0.363871,0.426047,0.49563,0.265275,0.58138,0.456473,0.645102,0.710994,0.121401,0.835847,0.275761,0.767328,0.361191,0.833015,0.76124,0.0820787,0.928273,0.64244,0.106304,0.767985,0.269626,0.704069,0.734744,0.807185,0.457586,0.653482,0.792286,0.726612,0.00189441,0.882585,0.0486231,0.867393,0.398175,0.573489,0.204087,0.545376,0.44646,0.00937223,0.885185,0.952714,0.0961529,0.747576,0.981163,0.870415,0.420409,0.64079,0.888133,0.283161,0.76388,0.370122,0.819338,0.475783,0.819749,0.975242,0.663068,0.582955,0.327163,0.697879,0.363806,0.619823,0.533312,0.44242,0.166499,0.977256,0.875732,0.636222,0.856002,0.801833,0.673684,0.095695,0.661576,0.297655,0.0532912,0.0451795,0.56918,0.391786,0.0597163,0.58077,0.91977,0.809671,0.281483,0.0412439,0.105733,0.310086,0.654021,0.817785,0.603663,0.230539,0.30369,0.991942,0.99107,0.463156,0.111522,0.8091,0.859999,0.948251,0.747278,0.948495,0.255489,0.109798,0.947041,0.80212,0.076043,0.0238494,0.598492,0.942657,0.83506,0.22928,0.758047,0.288625,0.5062,0.103675,0.966821,0.94701,0.378763,0.74755,0.825059,0.724089,0.694169,0.697419,0.38821,0.345043,0.618757,0.216418,0.173662,0.0446747,0.426961,0.541019,0.230584,0.394109,0.0547812,0.542134,0.945194,0.563229,0.614369,0.0589789,0.281837,0.300107,0.601889,0.78396,0.918561,0.696599,0.748885,0.415252,0.589255,0.93754,0.0720217,0.252903,0.771083,0.668814,0.307158,0.374664,0.886326,0.274093,0.263086,0.17911,0.794959,0.635823,0.254777,0.969247,0.893284,0.518449,0.916048,0.855145,0.311703,0.724056,0.978987,0.0312788,0.121054,0.252686,0.413627,0.00196737,0.69742,0.0924407,0.893121,0.89014,0.436166,0.200387,0.656368,0.375522,0.350165,0.23601,0.0110062,0.0099988,0.472662,0.152065,0.318758,0.888574,0.486279,0.235829,0.73885,0.341018,0.680998,0.876848,0.428385,0.85351,0.390363,0.309069,0.108701,0.595718,0.426564,0.926369,0.0181133,0.982349,0.209776,0.757847,0.421317,0.0977169,0.464864,0.683625,0.735795,0.824578,0.60873,0.178424,0.0870772,0.55909,0.275175,0.796238,0.104339,0.327881,0.927887,0.833458,0.579203,0.662245,0.51138,0.202695,0.0440169,0.395186,0.36513,0.276518,0.806398,0.555593,0.540357,0.308387,0.264768,0.486493,0.117001,0.183452,0.361321,0.216489,0.436119,0.0647983,0.822239,0.28045,0.967999,0.893134,0.781166,0.661145,0.093694,0.412369,0.865194,0.598102,0.623775,0.850047,0.572792,0.899266,0.72859,0.681528,0.0195884,0.569399,0.454481,0.445696,0.713312,0.464192,0.02597,0.535484,0.820204,0.887833,0.127682,0.651553,0.902876,0.274414,0.545308,0.459275,0.313204,0.928407,0.279012,0.879925,0.956661,0.779015,0.547431,0.552101,0.0703155,0.798433,0.0628597,0.218097,0.773182,0.632542,0.23661,0.708199,0.00390106,0.113472,0.139862,0.88031,0.730746,0.318408,0.0742453,0.641349,0.00379986,0.659005,0.16732,0.628353,0.160011,0.984033,0.997694,0.140398,0.779207,0.463688,0.957674,0.506691,0.954633,0.545245,0.280163,0.00336891,0.433254,0.185876,0.0626315,0.885469,0.202592,0.125345,0.868148,0.55817,0.927515,0.188712,0.386562,0.43277,0.942735,0.302926,0.278272,0.755015,0.58136,0.52578,0.916528,0.701085,0.44878,0.468006,0.161514,0.543726,0.564683,0.559819,0.764835,0.746781,0.698329,0.112405,0.943935,0.48653,0.866934,0.867929,0.6798,0.121674,0.133539,0.152061,0.234324,0.782863,0.0919412,0.55448,0.658998,0.634499,0.28863,0.170021,0.100169,0.323789,0.218232,0.48872,0.427318,0.483248,0.120252,0.514726,0.589567,0.0251673,0.826938,0.0699971,0.346867,0.204358,0.52902,0.240659,0.292101,0.253144,0.79983,0.0481121,0.212156,0.744579,0.0955762,0.778177,0.565267,0.325711,0.452924,0.936955,0.193984,0.255684,0.78676,0.244171,0.882637,0.843807,0.39119,0.492195,0.411083,0.874811,0.236818,0.0502521,0.0177075,0.962227,0.217537,0.534202,0.561462,0.220685,0.566378,0.317698,0.999968,0.893968,0.763545,0.926278,0.697906,0.932082,0.641561,0.267562,0.0920721,0.114665,0.196123,0.502349,0.482854,0.266231,0.315652,0.250881,0.529181,0.604383,0.470647,0.568996,0.26844,0.125367,0.346631,0.228097,0.351997,0.113637,0.821323,0.843906,0.954133,0.572719,0.453425,0.803505,0.832558,0.192446,0.0695076,0.753373,0.149918,0.0665702,0.985347,0.827195,0.434712,0.945446,0.38834,0.173739,0.470078,0.603871,0.496384,0.969277,0.196811,0.734322,0.81233,0.516603,0.250753,0.162386,0.700062,0.773979,0.605517,0.0487828,0.718904,0.684692,0.269501,0.104474,0.824845,0.510974,0.374361,0.623256,0.00466955,0.831793,0.689072,0.698898,0.146644,0.912824,0.334873,0.0300286,0.550273,0.748346,0.0059799,0.627709,0.106796,0.880925,0.354822,0.244452,0.760277,0.265665,0.693053,0.833369,0.116401,0.0567035,0.263528,0.159459,0.671456,0.658079,0.759061,0.5068,0.0979478,0.295796,0.460043,0.734378,0.159297,0.784223,0.670152,0.908052,0.698591,0.22114,0.22487,0.670872,0.900879,0.927601,0.00104237,0.912388,0.387684,0.676694,0.543467,0.286471,0.477307,0.956936,0.628776,0.834589,0.386448,0.223235,0.999512,0.968129,0.935417,0.530312,0.772744,0.760758,0.890789,0.922837,0.729588,0.772519,0.324675,0.500705,0.0338152,0.13572,0.745577,0.271772,0.0904846,0.192924,0.506715,0.00519538,0.0263271,0.57819,0.588499,0.962783,0.492524,0.351785,0.63573,0.222902,0.682686,0.382599,0.470856,0.909567,0.85195,0.926885,0.322737,0.826943,0.479973,0.759724,0.945365,0.0866888,0.387616,0.575373,0.64287,0.258966,0.666314,0.97544,0.580206,0.81632,0.118835,0.0248911,0.0617977,0.582579,0.0279161,0.593023,0.576908,0.407433,0.0198327,0.775425,0.877026,0.340641,0.941479,0.459614,0.844237,0.155987,0.343594,0.481104,0.34088,0.472755,0.629967,0.740299,0.00419223,0.460991,0.687125,0.315464,0.930784,0.071808,0.667737,0.97537,0.67222,0.245675,0.639146,0.765904,0.3885,0.934056,0.0630093,0.219705,0.368495,0.477786,0.908835,0.774976,0.0432492,0.447939,0.911153,0.365842,0.240937,0.930817,0.327966,0.243459,0.384991,0.658204,0.816385,0.545022,0.763006,0.298092,0.202438,0.655981,0.900879,0.210076,0.278086,0.96783,0.97606,0.114773,0.258411,0.540138,0.535438,0.170841,0.288192,0.791224,0.203111,0.453177,0.635842,0.750795,0.149631,0.319508,0.0183628,0.749022,0.0813712,0.376676,0.909298,0.0318586,0.829454,0.253561,0.697073,0.260359,0.703567,0.948471,0.756472,0.0310785,0.602047,0.250918,0.374472,0.3017,0.342977,0.109913,0.197155,0.566349,0.758217,0.612355,0.675445,0.524052,0.618604,0.390459,0.721098,0.192444,0.335709,0.319977,0.463803,0.271761,0.781433,0.820404,0.244906,0.439977,0.0443599,0.273501,0.662931,0.834917,0.165252,0.778762,0.0906182,0.130862,0.319193,0.671726,0.586062,0.151767,0.307815,0.666778,0.752705,0.38644,0.451324,0.264894,0.90858,0.524479,0.0378968,0.916558,0.12567,0.422656,0.33545,0.0874521,0.596506,0.542407,0.377511,0.458339,0.95539,0.202226,0.369962,0.545368,0.188773,0.945353,0.430734,0.776618,0.0641298,0.489602,0.0555773,0.158684,0.770228,0.586187,0.055393,0.325801,0.13692,0.265784,0.728434,0.482074,0.888476,0.819562,0.522195,0.296531,0.223463,0.937582,0.0758263,0.951046,|0.610148,0.559953,0.396833,0.630147,0.867091,0.272675,0.62832,0.889557,0.717469,0.393167,0.432974,0.361186,0.789013,0.440787,0.968078,0.525024,0.915109,0.581327,0.187476,0.983682,0.503226,0.80747,0.356342,0.596019,0.90444,0.211629,0.498662,0.0560125,0.0102736,0.904546,0.798951,0.458233,0.669819,0.794208,0.275133,0.101642,0.0831116,0.507767,0.634106,0.271077,0.116814,0.450395,0.126041,0.176849,0.0399302,0.0391626,0.952789,0.634883,0.544713,0.448858,0.97131,0.0799121,0.938857,0.969737,0.6092,0.954125,0.934368,0.0422661,0.399922,0.474631,0.00967431,0.417798,0.673035,0.222572,0.127968,0.647384,0.588688,0.378149,0.903644,0.428334,0.302635,0.46873,0.0110524,0.541266,0.508917,0.316798,0.663413,0.0431071,0.434325,0.0609081,0.392231,0.444187,0.0518883,0.919116,0.518066,0.491957,0.607499,0.338117,0.724055,0.695745,0.354907,0.932378,0.966774,0.367096,0.690022,0.188015,0.881149,0.200374,0.602026,0.057797,0.0881411,0.865685,0.386058,0.0545952,0.35083,0.754208,0.837802,0.202244,0.0529032,0.412383,0.775035,0.330512,0.642415,0.916372,0.743416,0.449553,0.613092,0.287251,0.475749,0.304298,0.888655,0.508547,0.158463,0.4264,0.0981085,0.993987,0.594995,0.188995,0.0510367,0.574288,0.763994,0.253607,0.814711,0.205993,0.381371,0.0343955,0.764898,0.48645,0.15578,0.0981712,0.0175202,0.86856,0.0319703,0.967224,0.633357,0.611611,0.643931,0.563755,0.773135,0.101533,0.822471,0.865034,0.327336,0.103558,0.217381,0.687987,0.283758,0.160542,0.462173,0.776216,0.438754,0.459093,0.48382,0.615076,0.0965099,0.307971,0.461794,0.424472,0.412561,0.511468,0.14534,0.793548,0.268909,0.279798,0.197231,0.683899,0.159403,0.0198415,0.0163047,0.650257,0.926077,0.837725,0.216076,0.397185,0.0880212,0.761172,0.236248,0.381902,0.195072,0.242405,0.632987,0.029295,0.889273,0.436946,0.366224,0.252789,0.432269,0.981405,0.304228,0.801612,0.732643,0.560841,0.948227,0.88462,0.876243,0.25701,0.181153,0.71541,0.129331,0.0865083,0.432438,0.759581,0.255126,0.0126415,0.953179,0.388157,0.987715,0.423924,0.984366,0.554404,0.130557,0.0693322,0.8897,0.30671,0.37094,0.937351,0.349419,0.904982,0.617055,0.0590181,0.596498,0.000123322,0.16588,0.296813,0.992112,0.229307,0.813048,0.20586,0.525896,0.34706,0.44891,0.236439,0.978404,0.435523,0.503513,0.286359,0.501529,0.690933,0.00784719,0.398679,0.547953,0.517319,0.935825,0.242929,0.410757,0.724347,0.536454,0.0839601,0.603612,0.609227,0.809517,0.420102,0.770971,0.800147,0.422703,0.00585461,0.291594,0.622509,0.38232,0.928088,0.65809,0.925638,0.116617,0.247299,0.849489,0.147391,0.358482,0.477027,0.552104,0.706027,0.175356,0.473041,0.669522,0.52793,0.520493,0.46868,0.335472,0.645061,0.920325,0.359459,0.0580093,0.209259,0.392278,0.42634,0.458159,0.626538,0.00974423,0.0259086,0.205424,0.235729,0.633985,0.212507,0.0722879,0.231772,0.860699,0.241753,0.222036,0.811597,0.875264,0.462421,0.700737,0.821987,0.674681,0.533393,0.154539,0.704938,0.387943,0.667513,0.494864,0.955041,0.536939,0.682541,0.744673,0.664529,0.309009,0.491568,0.412619,0.559122,0.257903,0.157076,0.0320641,0.500797,0.185013,0.165704,0.854783,0.209365,0.964555,0.678691,0.691207,0.138853,0.658299,0.993496,0.916977,0.0962245,0.110802,0.57496,0.918385,0.2903,0.937399,0.364882,0.281959,0.899225,0.427809,0.207862,0.440567,0.977052,0.274576,0.105231,0.878146,0.0114297,0.342521,0.680307,0.379326,0.425786,0.323266,0.695749,0.0699787,0.0438989,0.888265,0.103341,0.741143,0.747789,0.0643649,0.913582,0.331305,0.326166,0.0606312,0.745802,0.113419,0.755922,0.191296,0.86989,0.503529,0.21153,0.984634,0.708512,0.990291,0.0818953,0.363541,0.107972,0.681684,0.237777,0.102114,0.186163,0.607087,0.329983,0.556069,0.511071,0.524585,0.462388,0.0754059,0.674411,0.275041,0.540874,0.797895,0.923549,0.755225,0.621,0.695807,0.552832,0.395674,0.91491,0.871744,0.0964547,0.429519,0.37891,0.920524,0.855243,0.302211,0.988491,0.711173,0.955583,0.882601,0.369002,0.676577,0.889121,0.405342,0.0965275,0.993967,0.0134023,0.780087,0.542981,0.248298,0.488125,0.628538,0.405286,0.29207,0.752195,0.892033,0.121127,0.233826,0.531225,0.924907,0.417349,0.480149,0.859753,0.128795,0.95109,0.290574,0.445964,0.726068,0.94415,0.0755693,0.700973,0.768438,0.874966,0.644173,0.167679,0.30407,0.706401,0.0210085,0.977534,0.417861,0.784905,0.875425,0.55644,0.914832,0.424541,0.488468,0.453796,0.23325,0.520788,0.9638,0.704879,0.913669,0.550707,0.928519,0.392211,0.897497,0.97229,0.996885,0.638226,0.835215,0.752626,0.325596,0.972442,0.171571,0.225389,0.154326,0.922912,0.375628,0.443968,0.880997,0.0894921,0.279035,0.839851,0.150908,0.946912,0.712536,0.976761,0.980815,0.734348,0.394489,0.176587,0.490205,0.622981,0.916965,0.0703207,0.0523669,0.878055,0.811431,0.43267,0.771671,0.00485975,0.975577,0.202188,0.311268,0.517519,0.793905,0.10224,0.439806,0.511775,0.225291,0.49776,0.102253,0.914549,0.798567,0.828149,0.527052,0.116472,0.0360647,0.292392,0.490125,0.902688,0.0882893,0.1532,0.776288,0.476448,0.811754,0.585033,0.793473,0.756268,0.626164,0.466038,0.322079,0.823127,0.190752,0.664107,0.386418,0.772646,0.224292,0.0592051,0.582378,0.20953,0.982456,0.957909,0.0111567,0.580601,0.59393,0.909145,0.0143178,0.76877,0.839254,0.538102,0.479922,0.42625,0.893156,0.303097,0.929511,0.441534,0.864332,0.71735,0.188307,0.58422,0.253969,0.585879,0.772064,0.405322,0.397834,0.580955,0.311314,0.975562,0.983417,0.991341,0.955802,0.453994,0.785518,0.79568,0.0757613,0.789127,0.791891,0.0105885,0.560088,0.237932,0.852359,0.241789,0.49785,0.71457,0.963156,0.19425,0.328147,0.487591,0.748528,0.671388,0.248116,0.827187,0.735056,0.709765,0.136857,0.435152,0.00336081,0.136834,0.630396,0.562575,0.163021,0.817881,0.211291,0.27585,0.607184,0.148168,0.207994,0.612117,0.146162,0.00480664,0.494347,0.773187,0.638589,0.255023,0.714448,0.439083,0.0367529,0.723939,0.327966,0.997591,0.226889,0.854608,0.091594,0.918721,0.0591139,0.767892,0.905539,0.257922,0.53281,0.105351,0.213421,0.728329,0.382189,0.185997,0.681737,0.967156,0.891414,0.819913,0.405412,0.856556,0.552929,0.305597,0.875962,0.0641224,0.191574,0.885615,0.297201,0.153334,0.319234,0.150303,0.0275176,0.227524,0.807504,0.149473,0.355518,0.0221093,0.328195,0.800254,0.70917,0.554804,0.746471,0.376692,0.30011,0.596348,0.736507,0.867278,0.369424,0.582682,0.0474269,0.557928,0.870749,0.22601,0.0304111,0.923329,0.915072,0.858889,0.335894,0.45481,0.717109,0.343743,0.0265079,0.986712,0.146703,0.886198,0.390249,0.102046,0.250957,0.805484,0.874605,0.10882,0.643329,0.820508,0.292439,0.17784,0.281957,0.647096,0.275333,0.503034,0.929492,0.0450885,0.214715,0.494994,0.0310996,0.767971,0.838081,0.905364,0.0751844,0.804772,0.532836,0.97313,0.159135,0.573342,0.607966,0.592623,0.824191,0.599841,0.438442,0.633793,0.108738,0.108296,0.0646647,0.485668,0.847802,0.453762,0.26295,0.549347,0.248046,0.0158604,0.430939,0.372878,0.977158,0.264045,0.955566,0.903462,0.88719,0.00293273,0.155028,0.695155,0.206691,0.811414,0.958503,0.982969,0.645889,0.464838,0.540234,0.5261,0.102373,0.143219,0.071058,0.944341,0.703001,0.10653,0.34702,0.629734,0.37577,0.133954,0.23625,0.971832,0.108738,0.660101,0.970698,0.398885,0.733147,0.766602,0.669976,0.82135,0.410843,0.110735,0.360149,0.638173,0.795379,0.658529,0.706118,0.402233,0.922856,0.0012821,0.411945,0.716297,0.178444,0.475655,0.397841,0.196141,0.520669,0.127482,0.625344,0.168891,0.126653,0.968219,0.716919,0.884441,0.0587031,0.720356,0.710257,0.137201,0.260473,0.286564,0.993922,0.217573,0.0926988,0.469114,0.772241,0.0217983,0.121306,0.423531,0.0993298,0.956878,0.82709,0.895114,0.283557,0.394711,0.338122,0.506527,0.654046,0.247125,0.677884,0.586396,0.91406,0.374784,0.850107,0.701051,0.0460192,0.212545,0.666211,0.876315,0.143858,0.366802,0.61682,0.338089,0.0174978,0.387764,0.185103,0.652033,0.669286,0.940212,0.685091,0.0382211,0.286853,0.895916,0.442727,0.767817,0.976553,0.566437,0.672182,0.78361,0.0622892,0.856481,0.302026,0.787619,0.828205,0.644491,0.704208,0.150594,0.872731,0.506389,0.626132,0.788398,0.293641,0.768789,0.790555,0.469987,0.10661,0.282085,0.383675,0.159586,0.323693,0.182853,0.448253,0.723313,0.858799,0.0251969,0.546461,0.614566,0.762488,0.680385,0.610014,0.735663,0.446351,0.343462,0.988058,0.411066,0.128036,0.239468,0.953876,0.190599,0.715256,0.633888,0.483777,0.374251,0.834488,0.145159,0.482836,0.349522,0.575655,0.00275755,0.686893,0.980963,0.425371,0.921915,0.763963,0.0581588,0.473772,0.383465,0.982895,0.924304,0.303607,0.677017,0.519896,0.33165,0.827843,0.40979,0.854222,0.0575385,0.0190848,0.0668616,0.43509,0.303105,0.51816,0.00697416,0.00444341,0.707292,0.452938,0.330651,0.800227,0.0511521,0.585055,0.878005,0.230795,0.686448,0.865174,0.0651312,0.57279,0.00697917,0.470572,0.967009,0.0611607,0.360099,0.845501,0.955125,0.493651,0.60925,0.865042,0.824062,0.726423,0.473191,0.850809,0.724413,0.206553,0.440073,0.6629,0.291989,0.23867,0.0587649,0.777448,0.977606,0.123777,0.779519,0.14235,0.451527,0.937193,0.914179,0.302707,0.274315,0.267427,0.404295,0.807411,0.169575,0.373597,0.812246,0.712521,0.620814,0.689291,0.372441,0.516288,0.44099,0.351435,0.601258,0.745616,0.941446,0.489715,0.724114,0.531133,0.0384845,0.804527,0.0366566,0.576187,0.229687,|0.112455,0.241688,0.420918,0.251378,0.12716,0.85039,0.245121,0.660899,0.211909,0.524865,0.0397705,0.287991,0.268782,0.728265,0.717989,0.802908,0.489035,0.569483,0.200445,0.131029,0.224644,0.118476,0.0665656,0.00640637,0.944415,0.424577,0.129975,0.0157856,0.770007,0.999379,0.598565,0.688178,0.998244,0.205306,0.0750135,0.130848,0.660229,0.331369,0.875728,0.790943,0.252497,0.152507,0.910303,0.774507,0.469746,0.519012,0.339426,0.924506,0.501898,0.727369,0.0460852,0.564565,0.0513305,0.276015,0.919635,0.897142,0.937047,0.236595,0.0647542,0.685684,0.269746,0.724997,0.00775284,0.264884,0.36024,0.518269,0.66383,0.0927871,0.234812,0.841149,0.461809,0.0938603,0.936686,0.674552,0.139218,0.0688861,0.28775,0.863172,0.970491,0.874365,0.878477,0.156813,0.362336,0.82188,0.198,0.159697,0.115519,0.450066,0.540061,0.594368,0.7439,0.588001,0.414473,0.690929,0.768759,0.730146,0.35997,0.237202,0.564666,0.225705,0.79118,0.543653,0.354254,0.60492,0.880389,0.353326,0.63992,0.101799,0.868339,0.374835,0.336641,0.228513,0.145798,0.755989,0.0619888,0.0933297,0.737585,0.869823,0.50554,0.649109,0.706679,0.157052,0.0605428,0.0300238,0.833959,0.670283,0.867417,0.836342,0.478035,0.621411,0.305299,0.904905,0.938955,0.12809,0.705966,0.480427,0.805023,0.584865,0.591059,0.444556,0.484794,0.700321,0.501101,0.110539,0.130599,0.24606,0.714373,0.17719,0.252715,0.222615,0.629392,0.135357,0.773439,0.951531,0.842942,0.466926,0.521748,0.560452,0.563326,0.525599,0.835155,0.296539,0.724085,0.744865,0.32684,0.191587,0.99442,0.291441,0.0938571,0.691848,0.556788,0.848893,0.762207,0.795197,0.37446,0.255578,0.108755,0.673546,0.399725,0.313842,0.585922,0.0594127,0.50988,0.480416,0.073747,0.626268,0.738804,0.530376,0.44939,0.652171,0.164191,0.87934,0.515225,0.962048,0.443715,0.66915,0.667215,0.580997,0.124863,0.245233,0.302673,0.343511,0.30471,0.0988858,0.644322,0.954684,0.455881,0.329132,0.574724,0.990555,0.461483,0.830156,0.527665,0.349711,0.918277,0.0259738,0.938243,0.901516,0.326452,0.939463,0.328146,0.334758,0.988345,0.0942775,0.716461,0.991551,0.149628,0.0185326,0.353033,0.165797,0.144398,0.849893,0.790406,0.722043,0.666094,0.289144,0.950978,0.0680736,0.220756,0.0358738,0.0448115,0.061983,0.326923,0.820111,0.393832,0.484316,0.792816,0.760623,0.916674,0.891272,0.559255,0.268736,0.363884,0.637075,0.449775,0.580713,0.614126,0.567128,0.0705392,0.505967,0.00890362,0.761633,0.355405,0.452449,0.352861,0.242914,0.564894,0.915554,0.0898191,0.47035,0.383247,0.337307,0.0117065,0.932064,0.757382,0.0933903,0.309051,0.354783,0.238115,0.675812,0.598259,0.688443,0.375212,0.536546,0.183356,0.709953,0.773707,0.29433,0.916005,0.382893,0.922085,0.984099,0.398792,0.107831,0.45137,0.189909,0.952672,0.839895,0.959489,0.434698,0.0552034,0.565081,0.536378,0.882306,0.94798,0.94132,0.532477,0.595634,0.75905,0.735998,0.880856,0.325117,0.953557,0.353312,0.229956,0.828294,0.385916,0.554553,0.1222,0.317612,0.393009,0.745207,0.00204039,0.233198,0.0492074,0.24848,0.966909,0.74139,0.0717247,0.700284,0.198503,0.110465,0.988063,0.508383,0.155778,0.713152,0.0971378,0.14391,0.788016,0.354144,0.219407,0.224314,0.115653,0.814546,0.982567,0.661355,0.13234,0.787625,0.818382,0.486223,0.460559,0.280974,0.60661,0.674004,0.244731,0.869281,0.410943,0.233368,0.849811,0.633482,0.994383,0.301418,0.912619,0.55537,0.0138993,0.0482231,0.151041,0.574075,0.0520871,0.0987683,0.808645,0.373947,0.771021,0.789608,0.789425,0.284183,0.994538,0.292153,0.687368,0.0526978,0.764222,0.782086,0.652894,0.812317,0.844951,0.295223,0.474103,0.881913,0.119423,0.533346,0.632182,0.498262,0.846948,0.0197536,0.0378693,0.0747241,0.77271,0.81175,0.873645,0.291087,0.980279,0.670879,0.923681,0.0850863,0.0557158,0.729386,0.171485,0.767678,0.295724,0.0144684,0.55585,0.659352,0.596331,0.766789,0.585141,0.144015,0.975127,0.422439,0.838143,0.0466666,0.515661,0.694659,0.660704,0.0545223,0.491722,0.059549,0.0743716,0.776773,0.641744,0.427402,0.549367,0.834615,0.31862,0.152535,0.073033,0.876561,0.411767,0.725167,0.488227,0.850215,0.897743,0.656569,0.148629,0.484312,0.896732,0.851076,0.35088,0.64097,0.604349,0.657659,0.602078,0.357545,0.464951,0.229516,0.859053,0.61267,0.0125334,0.535574,0.0624335,0.746298,0.362038,0.134728,0.196293,0.537105,0.366518,0.423554,0.702772,0.0300344,0.518816,0.900981,0.488041,0.819482,0.669164,0.933918,0.215919,0.841274,0.212673,0.694301,0.494128,0.0263066,0.618261,0.580128,0.763984,0.6868,0.0773014,0.557986,0.114073,0.714435,0.548456,0.843643,0.658027,0.11067,0.748154,0.132972,0.847926,0.913206,0.89154,0.186993,0.404965,0.308189,0.493571,0.41804,0.45335,0.296811,0.386664,0.484129,0.779396,0.0989997,0.597657,0.16162,0.150755,0.844385,0.338036,0.314728,0.346233,0.144662,0.784842,0.0667449,0.301834,0.939784,0.411663,0.530893,0.901954,0.629704,0.855432,0.786729,0.545101,0.975872,0.807674,0.356677,0.723832,0.720535,0.646374,0.25851,0.565687,0.624768,0.401937,0.577417,0.376363,0.985837,0.195866,0.997924,0.00797045,0.667529,0.578013,0.577163,0.972277,0.643247,0.76772,0.219188,0.270741,0.481525,0.796571,0.193214,0.256108,0.0733148,0.919397,0.847747,0.428118,0.531954,0.233955,0.0496239,0.678126,0.0479101,0.981782,0.108196,0.32594,0.360371,0.241282,0.801702,0.768449,0.725964,0.796659,0.590898,0.922393,0.827757,0.572422,0.0897843,0.398974,0.255143,0.836443,0.427585,0.0201136,0.109701,0.759094,0.428847,0.408197,0.158485,0.494697,0.806301,0.183347,0.705103,0.149622,0.903408,0.134524,0.42373,0.968459,0.911741,0.795982,0.728908,0.950465,0.814687,0.0386627,0.846925,0.434099,0.234294,0.995714,0.0424645,0.925017,0.849408,0.135423,0.99987,0.921153,0.149363,0.424547,0.941663,0.334389,0.490288,0.135841,0.44859,0.517639,0.939513,0.180836,0.272623,0.651242,0.162557,0.420559,0.336737,0.853327,0.0532711,0.316277,0.719465,0.650182,0.0711609,0.880928,0.633309,0.056881,0.179747,0.115639,0.334704,0.52641,0.93771,0.68875,0.868924,0.00531292,0.401357,0.128362,0.190686,0.720216,0.0552065,0.401733,0.0190427,0.112099,0.123246,0.842144,0.911719,0.561294,0.526685,0.502495,0.310866,0.690166,0.0781178,0.601216,0.0285581,0.658445,0.624089,0.43539,0.504626,0.416812,0.031931,0.386586,0.992797,0.33298,0.0368793,0.980778,0.0177352,0.17373,0.331232,0.39305,0.733609,0.527703,0.513474,0.149642,0.0471734,0.876793,0.960641,0.178399,0.557926,0.607089,0.123649,0.197757,0.801412,0.724929,0.510139,0.661414,0.672454,0.547911,0.639034,0.918142,0.768951,0.000455081,0.713287,0.0320171,0.874896,0.554345,0.538922,0.275783,0.234082,0.267224,0.177085,0.893775,0.936281,0.0454062,0.732059,0.385343,0.350533,0.131476,0.359906,0.909916,0.749187,0.503253,0.00681299,0.626589,0.277983,0.773586,0.929093,0.238841,0.92263,0.614359,0.936154,0.0820117,0.577609,0.594459,0.987497,0.274099,0.904081,0.94492,0.733462,0.820512,0.446955,0.584374,0.276279,0.224675,0.850068,0.731513,0.870377,0.978254,0.215831,0.606895,0.210419,0.944821,0.0901608,0.706545,0.764297,0.607223,0.381128,0.106734,0.00806874,0.186476,0.856173,0.963107,0.689044,0.789721,0.579911,0.416997,0.109255,0.259661,0.00852364,0.627392,0.900506,0.0429565,0.96112,0.396607,0.389595,0.0710747,0.469586,0.770747,0.617272,0.590734,0.356354,0.460068,0.717076,0.542708,0.663604,0.980576,0.935834,0.513901,0.903094,0.383966,0.406991,0.238281,0.622121,0.164209,0.955032,0.612187,0.681941,0.650935,0.6332,0.384203,0.121111,0.0979774,0.505557,0.342031,0.211984,0.0672292,0.0825235,0.495961,0.517806,0.487383,0.278918,0.635841,0.785524,0.0467776,0.120868,0.154979,0.947617,0.0679657,0.274622,0.137492,0.0599948,0.445453,0.2365,0.555926,0.568014,0.292493,0.635842,0.467533,0.437508,0.324905,0.880274,0.553998,0.690136,0.783976,0.11575,0.513949,0.833398,0.256002,0.37721,0.970932,0.91023,0.803601,0.564134,0.863522,0.85083,0.419206,0.39501,0.899332,0.00791103,0.539197,0.225766,0.481053,0.852213,0.972786,0.805748,0.940742,0.910821,0.758757,0.397281,0.116577,0.232552,0.166763,0.743607,0.0616814,0.904326,0.701106,0.170415,0.564137,0.22255,0.0276231,0.624679,0.582915,0.584613,0.185158,0.589141,0.647113,0.141108,0.00206155,0.287636,0.215203,0.386121,0.19647,0.180806,0.59412,0.793536,0.574485,0.338445,0.761562,0.57172,0.418442,0.840944,0.236894,0.448636,0.683582,0.809298,0.67921,0.718618,0.18891,0.202912,0.771812,0.545047,0.936816,0.120345,0.0606071,0.360957,0.653777,0.554555,0.564169,0.956801,0.0813621,0.540365,0.910105,0.0596165,0.122775,0.991587,0.471843,0.216883,0.336714,0.785236,0.806327,0.626953,0.942837,0.815474,0.942876,0.678441,0.497425,0.188579,0.749088,0.0204055,0.710395,0.934009,0.661415,0.458363,0.981095,0.682914,0.860486,0.800454,0.923406,0.202079,0.157546,0.817373,0.410097,0.00934708,0.519249,0.570293,0.487399,0.268061,0.0332974,0.367586,0.530531,0.547628,0.814331,0.845975,0.736484,0.12083,0.182122,0.240068,0.117675,0.271348,0.147106,0.0143293,0.40286,0.333742,0.770181,0.353939,0.193467,0.590982,0.192583,0.877091,0.294608,0.659446,0.840015,0.639199,0.257999,0.631429,0.510474,0.705222,0.0519172,0.548726,0.279775,0.664064,0.0207969,0.310805,0.175879,0.442188,0.932896,0.430494,0.0248203,0.0692187,0.415162,0.143294,0.761472,0.0991073,0.360653,0.140917,0.222526,0.0068531,0.893453,0.942267,0.237806,0.836,|0.485491,0.460449,0.917537,0.686928,0.638863,0.170235,0.477745,0.470404,0.813751,0.455578,0.657028,0.180299,0.113714,0.732938,0.187755,0.479797,0.136845,0.280291,0.576033,0.143402,0.121348,0.814235,0.50578,0.127069,0.382475,0.554148,0.6099,0.312047,0.768149,0.338555,0.243196,0.423769,0.942899,0.854717,0.0301008,0.230778,0.783425,0.878098,0.987952,0.507599,0.295192,0.190588,0.511317,0.0120043,0.244343,0.273783,0.366443,0.160601,0.20524,0.455384,0.308416,0.550154,0.156582,0.462531,0.173436,0.191402,0.171706,0.475976,0.971149,0.601394,0.851156,0.670848,0.829583,0.406299,0.739672,0.0329497,0.27754,0.771031,0.283781,0.300103,0.972963,0.475751,0.0183374,0.292265,0.240243,0.642054,0.109817,0.50375,0.735174,0.571503,0.958848,0.586768,0.841903,0.268584,0.314003,0.618489,0.258898,0.779835,0.735989,0.15678,0.436272,0.479959,0.251387,0.47598,0.68814,0.65673,0.891434,0.470532,0.87981,0.384286,0.212067,0.843881,0.0940777,0.86529,0.328062,0.609642,0.0828344,0.124167,0.50799,0.279555,0.660518,0.10915,0.386405,0.25704,0.833711,0.925773,0.748895,0.117115,0.00973231,0.946437,0.130716,0.59083,0.235558,0.333255,0.265915,0.633187,0.328747,0.795813,0.751059,0.309516,0.195837,0.853722,0.829568,0.233751,0.771075,0.158372,0.546023,0.777064,0.978817,0.617985,0.194795,0.262964,0.63895,0.403606,0.237199,0.163672,0.542999,0.951622,0.536864,0.0205857,0.785306,0.240976,0.328886,0.213298,0.629948,0.456557,0.46913,0.625006,0.432719,0.694471,0.505045,0.709733,0.370329,0.592493,0.960721,0.545678,0.31702,0.710457,0.351968,0.835178,0.905202,0.508343,0.58784,0.96184,0.851497,0.88845,0.185771,0.841231,0.469484,0.362545,0.620126,0.974265,0.427598,0.420196,0.960815,0.92496,0.327935,0.0813586,0.00239557,0.182434,0.998301,0.0218056,0.307871,0.881099,0.397391,0.277237,0.936706,0.261855,0.0905625,0.288045,0.683889,0.582222,0.478335,0.13787,0.212745,0.21804,0.722879,0.422595,0.0895234,0.498277,0.515149,0.976774,0.147208,0.897117,0.676225,0.390755,0.0678054,0.122526,0.319295,0.206511,0.761993,0.0573532,0.914526,0.196836,0.706163,0.0229434,0.701559,0.267238,0.0071736,0.338906,0.719983,0.00175178,0.598614,0.935272,0.219726,0.386146,0.723373,0.261348,0.779756,0.584596,0.15055,0.943356,0.997211,0.591998,0.605557,0.904495,0.420195,0.342323,0.108011,0.330247,0.543665,0.731989,0.890356,0.455579,0.41903,0.760657,0.641541,0.927434,0.220445,0.673841,0.0102153,0.162344,0.790797,0.201547,0.76982,0.541929,0.189835,0.00432372,0.760459,0.742315,0.8294,0.104653,0.688486,0.368365,0.519151,0.366462,0.379308,0.401073,0.325369,0.943829,0.306304,0.57313,0.845749,0.430658,0.675035,0.981051,0.943848,0.416386,0.120628,0.353868,0.847914,0.665891,0.093925,0.157685,0.0152138,0.0160857,0.441383,0.954833,0.942646,0.46949,0.886481,0.61877,0.585845,0.0635663,0.192828,0.436236,0.43978,0.8565,0.583583,0.91279,0.321996,0.105404,0.703158,0.772229,0.516995,0.531359,0.289566,0.991542,0.762016,0.471994,0.138508,0.414773,0.0657923,0.87078,0.426201,0.00485867,0.746224,0.433446,0.0163258,0.713664,0.906488,0.923465,0.252012,0.705245,0.45111,0.405197,0.583743,0.430671,0.428888,0.853794,0.920477,0.915546,0.934312,0.363645,0.346313,0.99108,0.816145,0.715185,0.929998,0.953439,0.221957,0.662465,0.715167,0.109511,0.115985,0.998791,0.182174,0.77561,0.910841,0.339624,0.611735,0.0534733,0.9826,0.710563,0.254996,0.93532,0.24101,0.454638,0.580168,0.613177,0.20164,0.796713,0.596228,0.368869,0.714487,0.0759768,0.989439,0.401938,0.448525,0.59588,0.462157,0.88466,0.580015,0.334178,0.543307,0.210966,0.89179,0.675302,0.398862,0.283893,0.121766,0.590998,0.530541,0.741098,0.824832,0.704979,0.399906,0.400582,0.542683,0.548926,0.816203,0.15883,0.675868,0.384965,0.0782462,0.337123,0.0326381,0.338194,0.0338401,0.899825,0.14654,0.649605,0.985573,0.323027,0.509383,0.453151,0.295614,0.237258,0.315607,0.605763,0.257767,0.269003,0.397193,0.428102,0.381754,0.734428,0.634472,0.92291,0.998712,0.850586,0.0265399,0.452753,0.939075,0.336294,0.359373,0.630231,0.261482,0.746597,0.134731,0.879231,0.832031,0.0246732,0.405142,0.722398,0.763068,0.643029,0.655493,0.673606,0.234999,0.654861,0.795398,0.516014,0.594435,0.497065,0.777253,0.205644,0.300269,0.165237,0.289568,0.70662,0.746948,0.84773,0.57018,0.198217,0.721062,0.368915,0.828642,0.901077,0.0353832,0.813816,0.618442,0.495788,0.740265,0.18732,0.958503,0.414712,0.85127,0.95608,0.573651,0.116624,0.173171,0.0487626,0.150321,0.935616,0.148415,0.230145,0.750618,0.0696164,0.44531,0.49294,0.680973,0.0285572,0.0950423,0.0717413,0.527258,0.473435,0.562539,0.0605428,0.779329,0.670487,0.057699,0.868688,0.187259,0.755275,0.342009,0.468424,0.808608,0.974345,0.414599,0.964092,0.482783,0.327409,0.303526,0.773406,0.523552,0.894927,0.0496362,0.796248,0.121078,0.927862,0.104694,0.176171,0.342379,0.404505,0.750887,0.257783,0.427794,0.470151,0.389595,0.948503,0.917658,0.0388504,0.924269,0.38138,0.921436,0.740442,0.818532,0.716677,0.876456,0.939295,0.206402,0.547385,0.337987,0.393443,0.391225,0.0864028,0.835993,0.135609,0.863806,0.26747,0.0887108,0.497137,0.448744,0.577711,0.122953,0.545527,0.173581,0.903998,0.696854,0.400691,0.406585,0.320998,0.363319,0.272844,0.876745,0.274591,0.302155,0.570251,0.559871,0.271082,0.693437,0.322838,0.863611,0.0133263,0.242384,0.264164,0.910037,0.924552,0.117927,0.016948,0.525758,0.0645244,0.816949,0.158524,0.337878,0.628923,0.118082,0.71926,0.963715,0.0454322,0.958206,0.440306,0.210789,0.577527,0.0554594,0.892905,0.77837,0.635485,0.986731,0.521032,0.894591,0.501815,0.744879,0.966885,0.30373,0.830954,0.86034,0.311066,0.0679293,0.907009,0.0625809,0.141982,0.391493,0.807701,0.199114,0.439761,0.550228,0.783844,0.297811,0.714311,0.783765,0.828849,0.176514,0.34224,0.882738,0.383692,0.588523,0.862826,0.609531,0.733569,0.857782,0.503181,0.23997,0.31773,0.719566,0.43868,0.72972,0.386195,0.911686,0.597767,0.560517,0.908515,0.957138,0.600061,0.242069,0.712776,0.714294,0.0126225,0.38011,0.622356,0.378387,0.0921415,0.915596,0.286534,0.808105,0.669098,0.232379,0.231558,0.342232,0.45911,0.438,0.900182,0.732186,0.996877,0.626001,0.361949,0.0937407,0.817406,0.413298,0.182777,0.997964,0.527785,0.0422633,0.734328,0.406397,0.650435,0.536393,0.148848,0.94958,0.42355,0.250378,0.122699,0.965095,0.801813,0.732682,0.921312,0.372454,0.101116,0.224741,0.234627,0.698963,0.773021,0.523007,0.997777,0.111395,0.442968,0.0440721,0.767596,0.455703,0.998808,0.437568,0.748823,0.504516,0.572597,0.158546,0.65077,0.158729,0.106708,0.660452,0.248665,0.717371,0.281333,0.896075,0.386389,0.138216,0.857369,0.755594,0.325219,0.971956,0.535951,0.968877,0.0342795,0.102698,0.465871,0.959429,0.986353,0.540528,0.9084,0.555883,0.422253,0.75951,0.398479,0.932523,0.508019,0.952882,0.0899224,0.440464,0.136924,0.870456,0.385456,0.486437,0.150869,0.0827304,0.907271,0.425628,0.970705,0.0440233,0.0665525,0.98461,0.592779,0.545885,0.840263,0.517465,0.490898,0.407088,0.577922,0.194948,0.716705,0.927664,0.30073,0.0971778,0.416762,0.924127,0.701899,0.43819,0.822146,0.511323,0.931814,0.430014,0.987801,0.912106,0.475448,0.832974,0.455793,0.0948602,0.604412,0.32076,0.666715,0.780029,0.378454,0.087222,0.621184,0.648477,0.297099,0.971996,0.873958,0.618523,0.495369,0.408691,0.790887,0.734983,0.234345,0.133845,0.580228,0.216152,0.299655,0.99418,0.0800571,0.0505978,0.820052,0.718883,0.63576,0.223147,0.0593489,0.288189,0.758683,0.447361,0.162794,0.00175864,0.731008,0.828503,0.526892,0.0487323,0.48114,0.735201,0.862399,0.328841,0.663339,0.00243604,0.438844,0.410021,0.808624,0.525118,0.990903,0.690134,0.468526,0.989628,0.953073,0.335097,0.180081,0.16702,0.999151,0.341305,0.0224297,0.300967,0.866321,0.0467454,0.0700544,0.137497,0.617856,0.283259,0.174619,0.967027,0.197458,0.767163,0.215382,0.935268,0.196501,0.694864,0.60324,0.406778,0.425093,0.136422,0.924524,0.062808,0.586375,0.622803,0.618872,0.267297,0.0530179,0.0946755,0.211992,0.96986,0.146502,0.475998,0.094617,0.633866,0.385987,0.480396,0.19993,0.0539995,0.300712,0.0360339,0.556663,0.530843,0.0852614,0.882716,0.333719,0.641468,0.800376,0.294233,0.655127,0.897854,0.0467123,0.353278,0.148125,0.991562,0.936873,0.614919,0.294743,0.864239,0.0562945,0.701126,0.0312631,0.246601,0.181333,0.603978,0.209064,0.333225,0.428487,0.921132,0.572495,0.245101,0.829987,0.979511,0.938674,0.324147,0.463329,0.999188,0.37855,0.194342,0.628896,0.188072,0.530851,0.639369,0.760341,0.623991,0.717,0.796454,0.241596,0.161307,0.226395,0.704902,0.816147,0.0117566,0.413924,0.38,0.568637,0.00590861,0.529456,0.0863228,0.59733,0.0928664,0.309186,0.823605,0.431676,0.710105,0.984055,0.101273,0.479403,0.619398,0.910094,0.451697,0.624706,0.77106,0.979526,0.289761,0.0932691,0.99128,0.0635787,0.771241,0.816987,0.390628,0.539028,0.701305,0.0509266,0.0976434,0.628106,0.293671,0.0371268,0.509245,0.296325,0.396602,0.970134,0.426197,0.982424,0.882762,0.377454,0.600599,0.273381,0.259306,0.907628,0.675021,0.408993,0.609657,0.742698,0.950923,0.551894,0.655128,0.476536,0.673328,0.229336,0.173659,0.339088,0.416246,0.538931,0.343527,0.929113,0.216941,0.492139,0.848183,0.639759,0.302688,0.740781,0.688002,0.508253,0.61081,0.0135302,0.261633,0.0709476,|0.283697,0.537274,0.465944,0.780353,0.447302,0.833643,0.468475,0.539036,0.586194,0.857834,0.219454,0.699774,0.559117,0.0686627,0.612652,0.834038,0.12485,0.706401,0.896514,0.175604,0.422285,0.302447,0.69106,0.116506,0.940601,0.99167,0.228418,0.073276,0.709347,0.242578,0.740995,0.607148,0.0515382,0.630671,0.523844,0.407485,0.468852,0.446785,0.0647399,0.253237,0.905009,0.130772,0.615532,0.26395,0.242506,0.46337,0.841897,0.154779,0.185425,0.839131,0.280168,0.110903,0.544712,0.60452,0.859117,0.997645,0.517304,0.0764053,0.592526,0.963625,0.522553,0.329518,0.780596,0.846861,0.646326,0.584328,0.881756,0.646116,0.627703,0.0109769,0.746245,0.689227,0.729215,0.216823,0.181385,0.637691,0.837757,0.364584,0.136755,0.0908064,0.542588,0.586622,0.406039,0.413325,0.646889,0.606526,0.906853,0.813784,0.837635,0.205814,0.192051,0.243994,0.0872932,0.916474,0.742421,0.905577,0.866819,0.846716,0.705801,0.737066,0.994002,0.668969,0.999642,0.18385,0.949087,0.323581,0.890596,0.33748,0.194791,0.594753,0.961178,0.239942,0.247465,0.94845,0.926941,0.426138,0.543902,0.178151,0.930708,0.52263,0.0301288,0.880241,0.395209,0.599879,0.788181,0.440933,0.794301,0.764659,0.203045,0.444593,0.376052,0.976826,0.232533,0.232863,0.733945,0.679895,0.485925,0.105855,0.254354,0.175702,0.921284,0.667011,0.974551,0.399349,0.0487586,0.0288497,0.926506,0.161193,0.347119,0.879045,0.339064,0.680292,0.908072,0.305973,0.35846,0.521153,0.173464,0.0891047,0.661229,0.379146,0.805077,0.495971,0.5979,0.104018,0.534778,0.206262,0.258139,0.916158,0.271722,0.198522,0.669447,0.175968,0.746399,0.0787033,0.346551,0.238024,0.336726,0.131308,0.710407,0.42426,0.417758,0.450416,0.414756,0.906365,0.0372402,0.4446,0.87893,0.496417,0.715658,0.45782,0.0494316,0.304229,0.541377,0.884004,0.556545,0.330947,0.846135,0.336259,0.186202,0.172096,0.978994,0.291693,0.00339478,0.585587,0.903498,0.0934536,0.355029,0.51139,0.208928,0.994933,0.53739,0.412504,0.950259,0.533365,0.177417,0.223976,0.888697,0.920741,0.766397,0.529621,0.255373,0.444628,0.11047,0.49042,0.406103,0.288363,0.277371,0.099198,0.269971,0.864264,0.504861,0.984178,0.0909091,0.94999,0.574913,0.346681,0.666318,0.499792,0.791262,0.239353,0.319055,0.669572,0.131968,0.0599071,0.25787,0.432602,0.459461,0.735868,0.267366,0.31497,0.804844,0.0778965,0.486497,0.387507,0.703229,0.0146555,0.594942,0.93001,0.0481004,0.00622988,0.15836,0.686149,0.018526,0.346552,0.374518,0.413443,0.461772,0.637652,0.644219,0.421342,0.195482,0.768964,0.949372,0.371602,0.271746,0.0639665,0.987916,0.160136,0.411763,0.277609,0.755645,0.940063,0.731886,0.524461,0.458878,0.534393,0.560513,0.1981,0.436819,0.479542,0.723128,0.492347,0.517911,0.169342,0.464338,0.877881,0.618272,0.948522,0.157933,0.109416,0.83962,0.227469,0.290464,0.887313,0.615894,0.124925,0.521998,0.740953,0.260783,0.82018,0.761331,0.169168,0.093741,0.743921,0.996754,0.652914,0.436157,0.675554,0.44926,0.407777,0.583774,0.0310518,0.523601,0.550174,0.0649513,0.112861,0.609558,0.834371,0.0803576,0.421598,0.786916,0.863563,0.297658,0.089192,0.193505,0.13294,0.381222,0.0814598,0.511139,0.527636,0.165906,0.178997,0.87289,0.672528,0.264469,0.788709,0.225924,0.862118,0.991963,0.965064,0.913327,0.331415,0.0921986,0.361056,0.915087,0.22047,0.703052,0.131633,0.934825,0.961658,0.474446,0.411121,0.452431,0.0490726,0.807517,0.408452,0.945251,0.408223,0.784983,0.701734,0.758352,0.187724,0.713499,0.167043,0.612589,0.426343,0.995365,0.338771,0.0137498,0.635859,0.591227,0.437363,0.902148,0.980586,0.932241,0.405769,0.478035,0.839014,0.651272,0.663518,0.163472,0.547818,0.822012,0.0476384,0.570498,0.89299,0.0157099,0.694256,0.989665,0.451462,0.601714,0.408241,0.850432,0.848796,0.041435,0.876421,0.758061,0.197736,0.290126,0.00788683,0.420125,0.557875,0.420206,0.658559,0.358175,0.43989,0.920927,0.476526,0.481476,0.904432,0.464049,0.606994,0.108977,0.13728,0.179464,0.951299,0.257623,0.478064,0.682101,0.429187,0.726837,0.71012,0.304657,0.371475,0.147722,0.687504,0.0109947,0.750206,0.623183,0.663518,0.86847,0.409934,0.785666,0.997491,0.218413,0.277239,0.914859,0.989595,0.388198,0.799643,0.0477742,0.612284,0.39125,0.0607767,0.738966,0.293484,0.661013,0.690713,0.917333,0.0713111,0.630965,0.465711,0.575042,0.770286,0.0356517,0.615658,0.827231,0.897963,0.650774,0.522309,0.266501,0.119433,0.119748,0.256417,0.198599,0.313148,0.589881,0.636824,0.16075,0.48399,0.711858,0.138564,0.376131,0.561589,0.721106,0.0561385,0.5617,0.508598,0.651736,0.297099,0.0477011,0.843206,0.852549,0.0123904,0.455546,0.173344,0.0752358,0.0173019,0.303101,0.535534,0.738379,0.266499,0.571012,0.563523,0.987063,0.803612,0.54569,0.785803,0.491419,0.314955,0.816484,0.340444,0.805325,0.799514,0.583502,0.916048,0.104261,0.273759,0.868288,0.677538,0.952509,0.955029,0.480465,0.643638,0.985624,0.805013,0.736737,0.526094,0.852793,0.905521,0.920619,0.543967,0.99792,0.512471,0.131996,0.285873,0.871603,0.516617,0.263852,0.776456,0.194686,0.268466,0.0759097,0.793699,0.676663,0.893696,0.55012,0.914227,0.614172,0.474056,0.863441,0.773062,0.802099,0.599286,0.2576,0.86736,0.963829,0.532359,0.46015,0.649713,0.891007,0.946517,0.116842,0.96166,0.675748,0.922748,0.512404,0.931332,0.654307,0.344346,0.704686,0.697441,0.906873,0.279842,0.749776,0.192389,0.211237,0.665613,0.594417,0.0405805,0.282883,0.761311,0.336078,0.103897,0.213605,0.76614,0.212515,0.117634,0.82559,0.0539437,0.720657,0.965153,0.548429,0.973521,0.969474,0.379023,0.364479,0.699184,0.858899,0.295715,0.207617,0.122703,0.361228,0.0537345,0.133009,0.862577,0.0300722,0.593089,0.0396575,0.328944,0.503346,0.328875,0.772413,0.622606,0.521815,0.78291,0.896762,0.689422,0.39477,0.582178,0.0434077,0.958087,0.773009,0.223751,0.197664,0.0151798,0.425071,0.118167,0.604256,0.633158,0.595546,0.894062,0.423385,0.346656,0.633878,0.0625628,0.0466909,0.410978,0.214181,0.900157,0.905682,0.594716,0.550689,0.733447,0.916457,0.000124454,0.00710303,0.90084,0.392608,0.233582,0.961451,0.151889,0.152856,0.71092,0.407604,0.617533,0.81468,0.108839,0.414332,0.534264,0.771659,0.442367,0.204183,0.0144736,0.479903,0.564178,0.224154,0.135375,0.585116,0.354699,0.103529,0.162633,0.168419,0.0688905,0.415658,0.424292,0.765132,0.558833,0.665874,0.157901,0.538515,0.767744,0.117229,0.0774692,0.508587,0.405129,0.731664,0.702821,0.478495,0.818133,0.921448,0.524347,0.393841,0.715301,0.489869,0.414299,0.334565,0.223697,0.897403,0.19412,0.554399,0.484534,0.539098,0.839039,0.700331,0.717447,0.318132,0.966902,0.967879,0.432738,0.0416107,0.624908,0.970247,0.672416,0.670173,0.0915771,0.693915,0.361737,0.112074,0.0583957,0.0398202,0.407698,0.297445,0.661825,0.896607,0.141913,0.0337683,0.140846,0.136716,0.66611,0.481708,0.51926,0.0305265,0.239625,0.0649015,0.336878,0.942105,0.765784,0.917739,0.814776,0.28304,0.805591,0.859715,0.00950193,0.842826,0.047884,0.857585,0.619022,0.316316,0.445398,0.572247,0.356475,0.0669717,0.544323,0.533006,0.782433,0.709493,0.614166,0.374179,0.199637,0.876259,0.438542,0.94796,0.156084,0.699915,0.977082,0.894382,0.226358,0.61162,0.987166,0.764281,0.459943,0.225046,0.222433,0.559639,0.60097,0.140331,0.682983,0.966714,0.467913,0.614185,0.754164,0.938258,0.688827,0.242622,0.36491,0.787346,0.83342,0.912545,0.232968,0.445531,0.19038,0.45662,0.19944,0.960752,0.358083,0.625381,0.547894,0.122298,0.851346,0.0958366,0.442903,0.437324,0.810074,0.363803,0.238311,0.51904,0.253266,0.238046,0.554347,0.756881,0.581011,0.0476898,0.763176,0.87201,0.185856,0.324662,0.414924,0.061509,0.523179,0.94143,0.612334,0.666509,0.263509,0.66654,0.030647,0.290984,0.992931,0.48532,0.146812,0.568646,0.495984,0.188578,0.019491,0.33504,0.303902,0.47364,0.383683,0.18356,0.652024,0.903239,0.173839,0.821984,0.30105,0.272575,0.645369,0.521724,0.792318,0.937194,0.421014,0.213264,0.455384,0.932591,0.146362,0.166825,0.796306,0.654318,0.856152,0.528752,0.449101,0.669898,0.238157,0.559645,0.77617,0.103969,0.444004,0.491001,0.30522,0.683195,0.559019,0.802234,0.257075,0.257932,0.393593,0.596937,0.167041,0.49724,0.42168,0.32046,0.103512,0.619617,0.416492,0.0489278,0.999191,0.476936,0.176589,0.872767,0.0794479,0.604975,0.420403,0.281887,0.0644593,0.915961,0.621579,0.573849,0.115102,0.866832,0.0158042,0.401734,0.878457,0.618656,0.633557,0.199382,0.774973,0.989979,0.561065,0.170607,0.711138,0.450025,0.240223,0.763918,0.876903,0.207615,0.405546,0.660815,0.608302,0.0717004,0.820816,0.234453,0.193276,0.787382,0.845187,0.185583,0.71974,0.971086,0.534842,0.079488,0.809846,0.556873,0.75214,0.79218,0.556743,0.726634,0.384131,0.547217,0.801376,0.442718,0.401381,0.330263,0.924787,0.904136,0.317461,0.274437,0.572632,0.0346959,0.823892,0.362238,0.843867,0.312465,0.323435,0.614772,0.885386,0.221224,0.0862157,0.882309,0.655589,0.635344,0.682486,0.916033,0.812911,0.114683,0.948117,0.57172,0.229312,0.365302,0.136683,0.0848427,0.432523,0.516345,0.792802,0.963035,0.640314,0.47639,0.324065,0.97414,0.426519,0.00850827,0.597777,0.501224,0.776824,0.925625,0.556314,0.168285,0.761341,0.675931,0.138352,0.952756,0.890999,0.283646,0.159635,0.515355,0.182304,0.254726,0.129228,0.328418,0.923569,0.822113,0.480747,0.477015,0.866705,|0.826954,0.61236,0.552262,0.919133,0.764723,0.991127,0.153964,0.642022,0.395833,0.0309047,0.870119,0.310812,0.0601652,0.211705,0.0845068,0.711505,0.114934,0.126492,0.514685,0.696483,0.207301,0.782647,0.507255,0.990224,0.900722,0.586564,0.8308,0.351876,0.417033,0.296177,0.186812,0.88897,0.415121,0.36569,0.888705,0.0936972,0.630705,0.92173,0.596964,0.752902,0.849336,0.33543,0.407607,0.883226,0.635519,0.954467,0.348736,0.996305,0.622614,0.80734,0.470628,0.527086,0.205206,0.545904,0.177368,0.777579,0.580536,0.0253124,0.852642,0.021925,0.948944,0.44193,0.547463,0.627943,0.535315,0.275784,0.84467,0.959417,0.92579,0.166687,0.38938,0.588733,0.941399,0.271644,0.116954,0.493884,0.990643,0.453803,0.588539,0.658984,0.791877,0.663741,0.143322,0.255775,0.845424,0.071072,0.885106,0.826923,0.337556,0.593996,0.00633413,0.552959,0.478518,0.0728659,0.241807,0.215829,0.545037,0.52403,0.527821,0.980028,0.946873,0.26457,0.631402,0.346002,0.030899,0.116882,0.317239,0.933689,0.736715,0.872114,0.451528,0.516768,0.685942,0.367192,0.554489,0.728766,0.787038,0.539722,0.75071,0.21853,0.824388,0.207336,0.388897,0.951538,0.121702,0.399925,0.886496,0.732267,0.541686,0.968254,0.0598532,0.991509,0.887759,0.975929,0.532011,0.816701,0.588601,0.792498,0.541378,0.63688,0.625723,0.827268,0.671025,0.818504,0.856411,0.85376,0.0440462,0.234125,0.879511,0.374245,0.990317,0.69192,0.470534,0.690181,0.780147,0.444468,0.906333,0.326876,0.567163,0.187347,0.881155,0.94621,0.48289,0.0901202,0.542685,0.092914,0.540473,0.329507,0.0968177,0.063154,0.520663,0.861529,0.668838,0.839187,0.867341,0.875418,0.121835,0.435858,0.895487,0.518312,0.283333,0.716316,0.0697787,0.149899,0.789059,0.885212,0.394561,0.766246,0.133932,0.954543,0.600985,0.352411,0.349745,0.786716,0.608454,0.646138,0.464344,0.345146,0.63562,0.867192,0.356492,0.389048,0.405453,0.265689,0.00305277,0.292615,0.638878,0.964603,0.856197,0.385239,0.876339,0.873,0.871438,0.213279,0.462831,0.979104,0.356333,0.602259,0.162018,0.393845,0.106619,0.815725,0.866192,0.144667,0.481339,0.458868,0.852228,0.637054,0.616418,0.956816,0.449734,0.810359,0.482241,0.439144,0.805014,0.892004,0.647826,0.464135,0.66892,0.555227,0.521302,0.516553,0.736356,0.368623,0.770079,0.344953,0.556721,0.727483,0.0374593,0.92454,0.821073,0.984408,0.38173,0.522891,0.538504,0.18309,0.429739,0.0522642,0.663139,0.925086,0.732451,0.523114,0.457496,0.394926,0.248129,0.186652,0.45477,0.758628,0.343336,0.95461,0.234641,0.157975,0.435154,0.570091,0.375732,0.223182,0.530145,0.224812,0.658531,0.632686,0.114404,0.0532012,0.831099,0.922095,0.0335245,0.440669,0.947173,0.335367,0.762105,0.358086,0.927209,0.738644,0.96917,0.116218,0.710668,0.355234,0.57399,0.773432,0.942508,0.546069,0.736311,0.520723,0.153891,0.926027,0.60139,0.575311,0.228979,0.556538,0.782734,0.62696,0.946741,0.913213,0.960276,0.0232636,0.227455,0.687721,0.314029,0.867715,0.0309831,0.956127,0.283258,0.934037,0.855106,0.151529,0.558689,0.280609,0.853421,0.564658,0.302242,0.361112,0.0410421,0.14404,0.595496,0.710668,0.132972,0.647586,0.46132,0.94472,0.806349,0.359608,0.364019,0.0511314,0.392247,0.904493,0.520212,0.455072,0.626084,0.491416,0.0842837,0.953631,0.805786,0.609412,0.243463,0.216906,0.666188,0.725589,0.751401,0.869442,0.766467,0.340604,0.16426,0.624186,0.246558,0.632811,0.966225,0.713564,0.736677,0.360749,0.459118,0.898481,0.441054,0.137957,0.634057,0.0355603,0.0305645,0.590463,0.661009,0.068118,0.323978,0.018326,0.424563,0.213164,0.598853,0.156842,0.347615,0.349616,0.0644484,0.942265,0.636228,0.655047,0.446853,0.246977,0.0145271,0.944682,0.311701,0.654347,0.278686,0.720119,0.947625,0.0588135,0.977412,0.342833,0.681372,0.598895,0.0320572,0.625623,0.688622,0.984782,0.8056,0.60796,0.673611,0.608921,0.590022,0.388364,0.371312,0.348007,0.820059,0.487905,0.818863,0.486293,0.450185,0.239194,0.495186,0.851126,0.783881,0.509887,0.625832,0.815392,0.0100216,0.936197,0.211716,0.28466,0.306269,0.0714323,0.0505697,0.0186977,0.950092,0.601392,0.370246,0.019399,0.297009,0.27963,0.0122148,0.69226,0.966986,0.970297,0.089893,0.36581,0.564032,0.597949,0.871493,0.387378,0.832305,0.904631,0.385247,0.19288,0.897383,0.489633,0.964241,0.296457,0.334085,0.0995072,0.281821,0.332208,0.134937,0.965981,0.71055,0.505213,0.922467,0.822693,0.992447,0.661713,0.292194,0.441069,0.10873,0.867185,0.538131,0.237777,0.488584,0.944412,0.779966,0.578824,0.920982,0.96795,0.644813,0.393862,0.98165,0.426247,0.611807,0.757335,0.299881,0.424556,0.471904,0.17537,0.135638,0.187074,0.608859,0.518357,0.553049,0.179129,0.232876,0.554471,0.522669,0.707783,0.718697,0.0582926,0.731202,0.0927423,0.917649,0.146714,0.570401,0.866215,0.911553,0.465762,0.273328,0.513937,0.504365,0.926192,0.122968,0.356824,0.774083,0.567632,0.179988,0.492668,0.653346,0.266374,0.326349,0.904395,0.622884,0.0456198,0.934203,0.0680228,0.294056,0.650436,0.283029,0.356785,0.788927,0.856946,0.46407,0.219458,0.780158,0.634091,0.992038,0.457023,0.725469,0.536615,0.946787,0.738833,0.721866,0.124552,0.38288,0.697291,0.404225,0.591141,0.986212,0.849886,0.693933,0.689189,0.361964,0.373228,0.662365,0.169823,0.24241,0.947138,0.416887,0.321374,0.231822,0.979576,0.639448,0.626583,0.0540805,0.75333,0.14661,0.506456,0.956403,0.710242,0.427599,0.929552,0.238836,0.742932,0.895311,0.34122,0.366368,0.28277,0.24532,0.525292,0.29427,0.491942,0.804972,0.536645,0.79395,0.0130238,0.984513,0.477214,0.422657,0.7084,0.519028,0.192025,0.476121,0.990451,0.809287,0.674185,0.985429,0.99232,0.855062,0.219907,0.497163,0.713394,0.555342,0.0842169,0.879719,0.730198,0.865121,0.0243325,0.734563,0.660497,0.0894811,0.108993,0.593674,0.519417,0.259656,0.76147,0.479002,0.697326,0.113735,0.417487,0.134496,0.185543,0.0399455,0.49572,0.0318851,0.902537,0.269276,0.369113,0.102995,0.731321,0.863697,0.590057,0.96391,0.191797,0.722983,0.657408,0.482518,0.985839,0.21021,0.514182,0.475442,0.438971,0.380291,0.790074,0.113598,0.505457,0.594508,0.825087,0.989055,0.567851,0.838838,0.809293,0.241651,0.927257,0.600076,0.646076,0.70063,0.398375,0.990558,0.835667,0.563969,0.978907,0.525778,0.515044,0.925353,0.743385,0.00684017,0.648069,0.798563,0.202357,0.380919,0.548128,0.986696,0.711416,0.862926,0.765527,0.632254,0.696157,0.83481,0.765817,0.683174,0.14449,0.70146,0.159907,0.919167,0.367752,0.963265,0.0230469,0.865075,0.829825,0.210748,0.543142,0.426333,0.556797,0.582895,0.0352005,0.664828,0.880684,0.473278,0.283968,0.168672,0.372344,0.323703,0.417642,0.806049,0.814141,0.423969,0.918752,0.558557,0.410543,0.63865,0.342982,0.261864,0.443108,0.737501,0.0807397,0.904161,0.606161,0.980219,0.424586,0.117683,0.88658,0.625521,0.0788029,0.37368,0.397143,0.862807,0.00749677,0.719398,0.415624,0.919452,0.882568,0.373944,0.0226735,0.56961,0.764698,0.816348,0.066299,0.483705,0.822731,0.252507,0.409898,0.483479,0.13931,0.124771,0.84822,0.388572,0.867505,0.528636,0.89576,0.0905206,0.804503,0.833892,0.194081,0.761179,0.736504,0.56499,0.100889,0.239844,0.521378,0.969159,0.379669,0.73157,0.065329,0.214763,0.979556,0.5817,0.941056,0.383626,0.259002,0.166774,0.872794,0.729272,0.163518,0.574538,0.136427,0.639847,0.32803,0.883326,0.429172,0.719483,0.976757,0.355785,0.925254,0.884021,0.27223,0.868236,0.308904,0.470197,0.504148,0.998478,0.0724916,0.0132419,0.274792,0.249521,0.334532,0.0800412,0.554252,0.784852,0.665925,0.826853,0.259365,0.798482,0.625903,0.776322,0.43045,0.678975,0.249101,0.15026,0.464781,0.507013,0.310159,0.114107,0.284329,0.336366,0.451544,0.784932,0.981025,0.460913,0.880888,0.0873604,0.910674,0.826866,0.762383,0.391515,0.524687,0.912191,0.201452,0.68488,0.575191,0.308063,0.655337,0.637465,0.970411,0.463748,0.876222,0.375453,0.448906,0.158505,0.835376,0.670329,0.711648,0.0406005,0.0411961,0.756226,0.227784,0.575489,0.835915,0.745936,0.524315,0.246499,0.910201,0.381072,0.85542,0.265702,0.943617,0.918852,0.194408,0.918981,0.438409,0.65683,0.591117,0.925798,0.572215,0.516997,0.219958,0.198275,0.935248,0.675926,0.925285,0.557911,0.582565,0.235101,0.048278,0.849096,0.230688,0.605459,0.299979,0.141531,0.850183,0.656336,0.0118265,0.280285,0.390896,0.37978,0.780106,0.923139,0.893478,0.576755,0.968785,0.76009,0.415271,0.37151,0.382065,0.637901,0.433628,0.122755,0.820338,0.956105,0.163546,0.304837,0.962316,0.3788,0.62962,0.394797,0.0697332,0.083995,0.217884,0.825854,0.23378,0.226831,0.38706,0.867175,0.171239,0.912201,0.299314,0.988955,0.343876,0.710873,0.561472,0.285824,0.54364,0.776666,0.847248,0.725535,0.495984,0.91171,0.389191,0.889309,0.671365,0.163523,0.240607,0.492751,0.364738,0.668186,0.332648,0.450372,0.136026,0.0784807,0.827629,0.546148,0.673522,0.974948,0.735258,0.0354917,0.428347,0.330308,0.475808,0.693237,0.685371,0.708556,0.264204,0.512054,0.305194,0.207116,0.361493,0.508452,0.160662,0.495986,0.218972,0.735129,0.53646,0.394625,0.546653,0.169625,0.708115,0.570953,0.00134522,0.155115,0.417956,0.768845,0.73805,0.156628,0.775322,0.736405,0.333221,0.968674,0.982425,0.281613,0.510357,0.272406,0.793432,0.45903,0.0961123,0.235775,0.78404,0.275193,0.482051,0.364068,0.497972,0.523235,0.15706,0.442182,0.740696,|0.656804,0.0789742,0.473013,0.52217,0.724222,0.760695,0.568128,0.0646971,0.462596,0.512486,0.538613,0.759258,0.0159253,0.320376,0.21148,0.00034678,0.0701147,0.813158,0.150068,0.148941,0.106772,0.499791,0.995425,0.762141,0.593402,0.180492,0.73849,0.482039,0.521929,0.494778,0.340074,0.457199,0.214261,0.854192,0.560006,0.258324,0.109904,0.0849664,0.594205,0.9988,0.0569547,0.638597,0.546164,0.374943,0.419472,0.49449,0.18461,0.597651,0.763004,0.553689,0.782108,0.729149,0.41915,0.048797,0.799115,0.554676,0.285601,0.707003,0.625392,0.928057,0.919091,0.960364,0.376142,0.669839,0.0709246,0.465828,0.751386,0.305511,0.0480572,0.405843,0.414407,0.888803,0.406609,0.610685,0.279683,0.331236,0.600227,0.60324,0.248525,0.37468,0.271591,0.133364,0.482924,0.211129,0.414409,0.0627625,0.380757,0.673808,0.133834,0.977665,0.888897,0.571344,0.375617,0.245729,0.7558,0.445686,0.4434,0.40861,0.626908,0.570668,0.438931,0.855421,0.302356,0.113554,0.203382,8.21352e-05,0.928431,0.847164,0.742657,0.250347,0.70524,0.201301,0.327103,0.665688,0.058495,0.182576,0.251931,0.388493,0.786737,0.308131,0.0764292,0.977972,0.86264,0.978247,0.0929951,0.166474,0.74802,0.933962,0.755891,0.0689505,0.343398,0.527679,0.510512,0.347001,0.198994,0.544417,0.121102,0.273922,0.834849,0.703801,0.997761,0.791306,0.161292,0.491337,0.848053,0.37614,0.200145,0.511872,0.00327313,0.0201504,0.231864,0.427881,0.798772,0.190437,0.764228,0.0345263,0.224542,0.0252093,0.892802,0.903725,0.483283,0.759836,0.75949,0.953807,0.0622098,0.551292,0.431995,0.894658,0.43964,0.458919,0.171144,0.536156,0.337508,0.00668508,0.501071,0.668363,0.22681,0.483597,0.729205,0.572385,0.689875,0.947745,0.829867,0.648407,0.165131,0.484713,0.446589,0.900622,0.537399,0.151722,0.911597,0.917158,0.647581,0.762831,0.409234,0.656979,0.93462,0.872622,0.940125,0.111148,0.264394,0.716266,0.248349,0.825754,0.711828,0.898634,0.214718,0.838613,0.322257,0.430765,0.682039,0.105497,0.675184,0.421994,0.885129,0.839953,0.446313,0.709953,0.335933,0.587292,0.376943,0.562481,0.52596,0.0262846,0.721462,0.611788,0.116854,0.948493,0.545744,0.129421,0.149395,0.436561,0.218528,0.728501,0.898298,0.190944,0.518883,0.875615,0.483163,0.375253,0.316368,0.594157,0.991551,0.118102,0.847638,0.607593,0.280595,0.183457,0.84853,0.126074,0.78956,0.848256,0.0364188,0.0332711,0.465339,0.859222,0.169256,0.232082,0.242348,0.0711695,0.586923,0.889272,0.704523,0.567166,0.120464,0.286884,0.289376,0.955445,0.981934,0.646691,0.201217,0.971637,0.885159,0.974684,0.278235,0.965638,0.947739,0.557522,0.523452,0.640084,0.74928,0.231686,0.832415,0.651918,0.915323,0.534099,0.620037,0.557306,0.130418,0.735731,0.798244,0.537933,0.453971,0.00689822,0.464494,0.573341,0.633088,0.967172,0.231452,0.819616,0.929008,0.110527,0.964172,0.259408,0.976272,0.726787,0.627017,0.0821239,0.296723,0.848712,0.0870535,0.413737,0.337717,0.416603,0.405344,0.209335,0.0545072,0.508186,0.738154,0.511824,0.716376,0.643693,0.232891,0.357917,0.156566,0.427179,0.93466,0.367943,0.558946,0.339707,0.474136,0.168516,0.501698,0.669901,0.32448,0.246857,0.479601,0.22745,0.137686,0.117415,0.616572,0.849848,0.135198,0.252041,0.264529,0.00399303,0.419696,0.369079,0.934604,0.302557,0.630896,0.700734,0.0849446,0.943081,0.866409,0.776509,0.692786,0.0784213,0.0688265,0.995849,0.941481,0.894656,0.764369,0.134275,0.831515,0.31682,0.868286,0.480951,0.234356,0.641266,0.192001,0.637472,0.304621,0.286258,0.0329727,0.246468,0.80674,0.402962,0.514076,0.962868,0.216044,0.569897,0.286882,0.66755,0.885836,0.866171,0.240281,0.878026,0.832141,0.0533231,0.790198,0.92947,0.551423,0.754443,0.304342,0.88609,0.154992,0.0822578,0.348161,0.36655,0.311556,0.479862,0.0183955,0.671565,0.440086,0.139046,0.798812,0.256348,0.461939,0.431371,0.354034,0.296378,0.40914,0.320476,0.260482,0.0192964,0.0600772,0.897442,0.629473,0.185331,0.937818,0.843985,0.0411126,0.718655,0.0678845,0.79488,0.046667,0.553967,0.479429,0.345329,0.0746503,0.110946,0.668902,0.456444,0.241254,0.873268,0.69857,0.163307,0.692452,0.817931,0.479075,0.78686,0.592464,0.393074,0.0647246,0.205659,0.823682,0.560989,0.62974,0.00228477,0.640349,0.917968,0.272529,0.49533,0.13399,0.713977,0.448059,0.579102,0.880074,0.918581,0.032445,0.287891,0.28966,0.785703,0.971035,0.914545,0.688778,0.0701069,0.595674,0.437943,0.885857,0.901858,0.847783,0.938867,0.397348,0.194494,0.846056,0.357079,0.768186,0.870654,0.114628,0.13646,0.438336,0.188375,0.361184,0.0245237,0.130091,0.083962,0.314901,0.304488,0.928724,0.817517,0.120233,0.91051,0.831677,0.625807,0.32397,0.834028,0.784308,0.170697,0.241664,0.970134,0.33814,0.826451,0.407866,0.999707,0.822388,0.0742385,0.83117,0.11966,0.0127472,0.323345,0.447226,0.946416,0.289677,0.837533,0.97398,0.773948,0.244935,0.636533,0.595892,0.90357,0.872945,0.455606,0.549025,0.596115,0.351555,0.264616,0.136015,0.950067,0.852789,0.357746,0.388368,0.988357,0.428499,0.776022,0.94326,0.565097,0.708084,0.985017,0.80045,0.710208,0.76081,0.276485,0.225764,0.163744,0.592451,0.191282,0.432346,0.774648,0.77567,0.291542,0.34018,0.382742,0.650963,0.719464,0.636254,0.74557,0.436291,0.664392,0.823174,0.629429,0.359868,0.146917,0.555649,0.902987,0.0305147,0.214464,0.43309,0.879089,0.944799,0.556002,0.990309,0.921681,0.873862,0.699576,0.766504,0.763623,0.396568,0.279666,0.00938076,0.609615,0.810434,0.752258,0.342374,0.735367,0.0154814,0.691952,0.605797,0.570567,0.275234,0.0301021,0.255368,0.746708,0.802334,0.696016,0.372504,0.390397,0.506598,0.882778,0.58465,0.860524,0.325193,0.755219,0.51835,0.398701,0.936874,0.827266,0.341406,0.397463,0.981877,0.613805,0.775953,0.674229,0.743243,0.348788,0.5011,0.938185,0.325643,0.0884709,0.0268463,0.610673,0.0013029,0.599343,0.242825,0.00122875,0.622543,0.3638,0.500527,0.134691,0.0842454,0.618614,0.00963748,0.962307,0.1324,0.12843,0.751777,0.361259,0.571088,0.213956,0.146539,0.293096,0.399566,0.756927,0.22812,0.945612,0.283533,0.301488,0.17929,0.425467,0.149705,0.826541,0.806807,0.387957,0.484667,0.835527,0.869002,0.870097,0.351533,0.548732,0.223114,0.490863,0.124682,0.121765,0.837144,0.0177423,0.823294,0.669172,0.675575,0.685366,0.797663,0.528737,0.741206,0.875221,0.302984,0.926445,0.149023,0.597418,0.31385,0.822956,0.585428,0.961905,0.483742,0.0283138,0.121235,0.0448488,0.725337,0.886632,0.820548,0.0924023,0.841679,0.372652,0.4934,0.287963,0.468346,0.0127466,0.437725,0.768484,0.204605,0.888717,0.423265,0.601114,0.531448,0.914869,0.258834,0.16785,0.689026,0.0923167,0.15223,0.814328,0.307776,0.986283,0.474718,0.637838,0.0571116,0.400912,0.36573,0.761312,0.554172,0.91142,0.205941,0.472097,0.945902,0.781921,0.0761095,0.555159,0.325256,0.466341,0.593589,0.382099,0.128733,0.200986,0.68636,0.463555,0.526799,0.0852398,0.131305,0.98392,0.42445,0.596665,0.00546175,0.581986,0.740157,0.504784,0.351828,0.590105,0.609185,0.464797,0.321033,0.851209,0.574962,0.327645,0.232876,0.291096,0.260536,0.795933,0.54497,0.401081,0.752187,0.53855,0.103874,0.785421,0.222367,0.715528,0.614677,0.195803,0.496333,0.00936872,0.165895,0.743219,0.506618,0.451442,0.055258,0.971618,0.520929,0.0288425,0.144265,0.189842,0.881024,0.148042,0.592845,0.439297,0.311626,0.540437,0.797751,0.661793,0.350401,0.276286,0.0903351,0.530361,0.789018,0.220186,0.459869,0.234938,0.938044,0.537777,0.8381,0.979639,0.719736,0.0770412,0.599993,0.350327,0.221273,0.103892,0.458699,0.371244,0.181864,0.0832618,0.895573,0.103423,0.786098,0.396147,0.00997734,0.478465,0.0362059,0.0808254,0.290956,0.17136,0.458103,0.564332,0.865914,0.152163,0.720827,0.161878,0.341697,0.785705,0.782543,0.316167,0.0358973,0.158545,0.351785,0.360565,0.313033,0.210595,0.400838,0.53723,0.974773,0.894979,0.83653,0.528175,0.760576,0.990733,0.632343,0.803963,0.761238,0.925048,0.29177,0.513375,0.606786,0.804232,0.815603,0.068336,0.705857,0.766271,0.891789,0.00546587,0.719351,0.761797,0.0452846,0.843812,0.682026,0.781662,0.702763,0.135675,0.343118,0.909213,0.260847,0.658434,0.923257,0.246014,0.533079,0.922605,0.779668,0.780008,0.209311,0.108087,0.50923,0.222704,0.639397,0.34943,0.421617,0.668089,0.584983,0.0267967,0.596314,0.192871,0.938057,0.304153,0.147581,0.529743,0.888553,0.657484,0.99326,0.637728,0.40318,0.327282,0.100569,0.0239375,0.838638,0.59578,0.979329,0.221002,0.668053,0.272562,0.0372613,0.281888,0.0302911,0.078182,0.261068,0.232367,0.26468,0.132668,0.616068,0.634481,0.466844,0.665779,0.624524,0.725011,0.344537,0.203102,0.360025,0.103467,0.944187,0.612576,0.620335,0.733923,0.0958143,0.145207,0.614527,0.299103,0.563933,0.85053,0.698949,0.14258,0.523724,0.45122,0.360852,0.110285,0.226427,0.413428,0.159671,0.0216188,0.17971,0.431738,0.54928,0.0768384,0.980921,0.632383,0.930349,0.0820863,0.710143,0.0454802,0.949453,0.37282,0.209434,0.658083,0.0578872,0.800666,0.92848,0.728968,0.475313,0.884871,0.979638,0.751094,0.598395,0.171465,0.294155,0.750026,0.165857,0.864043,0.563177,0.427754,0.792559,0.0530971,0.972211,0.597611,0.0745093,0.340601,0.644713,0.959795,0.109692,0.305515,0.591449,0.828094,0.0861571,0.120838,0.223091,0.981568,0.166645,0.0729476,0.333958,0.892255,0.1126,0.754075,0.473374,0.843771,0.483545,0.150651,0.351924,0.774598,|0.995182,0.459256,0.528724,0.580993,0.0393303,0.403556,0.419775,0.950169,0.38912,0.117929,0.136744,0.359881,0.582208,0.190388,0.342806,0.552194,0.273606,0.178618,0.523617,0.334083,0.891026,0.568239,0.969209,0.494199,0.794178,0.978808,0.109017,0.0553336,0.823243,0.565346,0.730326,0.660578,0.226143,0.952278,0.00178391,0.553241,0.410086,0.874835,0.454157,0.860446,0.192497,0.487827,0.976416,0.892462,0.944817,0.640975,0.397919,0.778461,0.613903,0.538861,0.824817,0.664174,0.681547,0.710072,0.888377,0.171712,0.93401,0.769412,0.541209,0.752397,0.425602,0.985611,0.0222296,0.68014,0.729371,0.258218,0.749877,0.718885,0.622122,0.846294,0.36502,0.640901,0.305494,0.673415,0.0274837,0.614862,0.0823553,0.836183,0.833261,0.307792,0.700809,0.17307,0.846372,0.74268,0.301219,0.0511678,0.877735,0.402694,0.6696,0.212655,0.27528,0.230942,0.321882,0.825825,0.942968,0.0950745,0.545006,0.0612891,0.421877,0.652466,0.0164242,0.171859,0.277079,0.804132,0.887872,0.847769,0.108862,0.268302,0.117278,0.664228,0.870739,0.183499,0.845423,0.276567,0.199901,0.7031,0.634542,0.618619,0.907633,0.829852,0.250764,0.364805,0.681546,0.435447,0.515107,0.364371,0.213351,0.530812,0.962437,0.136999,0.348733,0.663992,0.530981,0.757443,0.280116,0.847576,0.773025,0.354734,0.613345,0.631814,0.277399,0.0103095,0.806456,0.983668,0.384669,0.0118641,0.798127,0.109016,0.00856239,0.165641,0.987791,0.479245,0.121215,0.0797049,0.832314,0.497668,0.48889,0.579447,0.639047,0.995295,0.30931,0.31944,0.297436,0.311471,0.699221,0.915135,0.18849,0.981796,0.985132,0.811448,0.103919,0.216871,0.444428,0.485055,0.385721,0.327215,0.102921,0.606102,0.202498,0.463311,0.165724,0.332399,0.649524,0.286237,0.828529,0.140321,0.265683,0.38598,0.930648,0.825069,0.973664,0.832973,0.0762538,0.754617,0.804397,0.550508,0.864492,0.499599,0.476523,0.153388,0.87469,0.0877901,0.707155,0.139983,0.551417,0.740736,0.671688,0.178589,0.525916,0.789477,0.500183,0.732627,0.220158,0.198418,0.759112,0.672669,0.274919,0.73868,0.435076,0.95767,0.430642,0.874622,0.237816,0.274343,0.445017,0.492861,0.736496,0.130117,0.267367,0.0774618,0.957606,0.510065,0.64572,0.70476,0.946428,0.604215,0.564897,0.00228298,0.109176,0.523666,0.876661,0.21315,0.543559,0.362984,0.500583,0.541241,0.514706,0.0697617,0.175124,0.298861,0.364074,0.376989,0.896033,0.45361,0.975191,0.931957,0.439749,0.354184,0.75452,0.806833,0.562678,0.515858,0.781359,0.812148,0.204585,0.383754,0.840719,0.684253,0.189842,0.231942,0.971843,0.157215,0.649058,0.653159,0.190126,0.187786,0.501358,0.402227,0.272494,0.875446,0.611168,0.31099,0.589658,0.72402,0.120255,0.628124,0.396163,0.841241,0.164065,0.797804,0.420196,0.158343,0.273141,0.124922,0.892346,0.193541,0.134207,0.395166,0.712065,0.637752,0.434165,0.377862,0.989089,0.661758,0.792652,0.865771,0.672755,0.782615,0.807255,0.967026,0.846543,0.125692,0.578763,0.740365,0.228974,0.29568,0.113506,0.96327,0.831666,0.738212,0.149542,0.486635,0.54067,0.20355,0.837046,0.949911,0.975661,0.627636,0.205551,0.488759,0.0961093,0.555846,0.998081,0.0975694,0.945656,0.3824,0.105421,0.663118,0.545916,0.0862924,0.616481,0.821923,0.57096,0.92591,0.23741,0.753207,0.641577,0.912238,0.836832,0.900838,0.709619,0.481977,0.748475,0.516568,0.295787,0.445289,0.305452,0.555447,0.125842,0.24445,0.0145873,0.784526,0.783331,0.767411,0.20875,0.776957,0.289874,0.0457327,0.52759,0.95644,0.495896,0.0316994,0.464339,0.816922,0.697238,0.399685,0.619868,0.809124,0.926081,0.149356,0.199541,0.691556,0.71445,0.264101,0.341762,0.636638,0.0759014,0.914468,0.611665,0.38921,0.862709,0.130949,0.890374,0.237,0.691093,0.525759,0.0376397,0.0517962,0.14773,0.586875,0.771437,0.319372,0.582614,0.807905,0.564024,0.202256,0.0268612,0.212912,0.285856,0.525655,0.702574,0.888309,0.430611,0.811993,0.577182,0.653686,0.347208,0.429465,0.692127,0.407872,0.222054,0.951407,0.0659816,0.263766,0.495515,0.265334,0.905911,0.761642,0.910812,0.468055,0.0529221,0.372463,0.654553,0.376439,0.593678,0.504838,0.149199,0.100237,0.0743418,0.19906,0.0704727,0.357924,0.22465,0.676481,0.592667,0.63757,0.174976,0.0670049,0.397804,0.380369,0.336979,0.546134,0.101583,0.670279,0.250794,0.475444,0.332295,0.0385709,0.138572,0.0667408,0.113083,0.0515633,0.263487,0.173225,0.933516,0.668709,0.559191,0.000949979,0.535954,0.48796,0.210883,0.481282,0.948522,0.736007,0.155999,0.386784,0.794273,0.903861,0.770822,0.706257,0.315398,0.556799,0.702823,0.818302,0.505108,0.747368,0.780721,0.601265,0.456207,0.129017,0.234826,0.484702,0.243843,0.932427,0.605995,0.599899,0.525772,0.751017,0.923096,0.502392,0.191153,0.516106,0.720107,0.816678,0.845628,0.136395,0.0298845,0.200573,0.83777,0.161524,0.969591,0.640899,0.841807,0.8599,0.421268,0.840949,0.355191,0.187532,0.881873,0.110201,0.863375,0.663868,0.190588,0.971844,0.79072,0.143224,0.849883,0.155282,0.938818,0.754048,0.280515,0.344432,0.562107,0.773721,0.305259,0.701004,0.221795,0.183698,0.162531,0.0400605,0.731045,0.976785,0.914606,0.932651,0.869276,0.605021,0.496715,0.947471,0.93626,0.439338,0.626506,0.864021,0.717902,0.212172,0.30855,0.0874463,0.897151,0.42157,0.643047,0.506674,0.314186,0.864336,0.219822,0.480924,0.0636011,0.785658,0.506885,0.633091,0.285441,0.240449,0.943904,0.856276,0.759865,0.561565,0.446717,0.799253,0.521949,0.318798,0.446301,0.406567,0.939119,0.406016,0.175814,0.488873,0.831613,0.500721,0.146774,0.943168,0.924953,0.361098,0.825109,0.695264,0.155286,0.921749,0.876989,0.131113,0.142964,0.496675,0.833544,0.212326,0.249478,0.685428,0.7675,0.91262,0.600915,0.711267,0.392231,0.982846,0.250508,0.539172,0.185414,0.748394,0.341049,0.5172,0.399723,0.152721,0.0680164,0.563641,0.560944,0.955652,0.327538,0.926245,0.814288,0.877499,0.806857,0.911338,0.943203,0.526367,0.550216,0.924113,0.313366,0.130792,0.917655,0.05153,0.818115,0.807239,0.823847,0.110521,0.841694,0.877986,0.842241,0.722057,0.101786,0.679271,0.201428,0.454113,0.110398,0.180793,0.313205,0.385131,0.527673,0.902422,0.516714,0.138694,0.362069,0.508664,0.431133,0.741565,0.910856,0.0501204,0.282365,0.66393,0.882648,0.765244,0.176905,0.622903,0.691671,0.571945,0.50888,0.832626,0.352425,0.572889,0.563131,0.958664,0.487275,0.852257,0.639839,0.888899,0.207823,0.0200368,0.305864,0.818547,0.930165,0.0346119,0.576978,0.893732,0.323501,0.499155,0.858118,0.624024,0.0131162,0.789073,0.601371,0.216821,0.510764,0.69512,0.488386,0.14494,0.685141,0.328995,0.652856,0.266438,0.440841,0.406467,0.0695979,0.123994,0.743724,0.431025,0.122491,0.652398,0.628339,0.16593,0.748051,0.217934,0.746318,0.33509,0.873275,0.318078,0.727833,0.995077,0.126059,0.92534,0.0274577,0.138304,0.610978,0.73359,0.323664,0.654762,0.307666,0.473135,0.0886285,0.493508,0.0557396,0.63359,0.0588461,0.296863,0.89387,0.222895,0.738915,0.662921,0.701905,0.0740039,0.64862,0.850339,0.519206,0.780596,0.400942,0.0556322,0.692555,0.987404,0.539616,0.0838179,0.928558,0.69334,0.0127011,0.0611629,0.745135,0.604173,0.0995652,0.475969,0.873289,0.822616,0.281246,0.72925,0.502053,0.896157,0.26774,0.447812,0.0835959,0.786832,0.349824,0.963373,0.0773196,0.241087,0.0929322,0.166521,0.137881,0.64754,0.42336,0.985689,0.814482,0.741533,0.671359,0.221196,0.800076,0.259627,0.264282,0.845023,0.521482,0.832894,0.836957,0.966261,0.506551,0.258081,0.695471,0.988085,0.0544632,0.34737,0.818239,0.773046,0.68911,0.925337,0.302332,0.358878,0.298879,0.378689,0.415695,0.730403,0.582765,0.255792,0.689592,0.833908,0.818672,0.457214,0.868574,0.504584,0.633065,0.727711,0.386452,0.375297,0.363411,0.383726,0.257435,0.524043,0.0660777,0.505441,0.0340587,0.261789,0.997904,0.805589,0.0958156,0.113554,0.685371,0.00475609,0.338423,0.0455483,0.489428,0.316459,0.931109,0.582322,0.942407,0.666186,0.958304,0.0257838,0.68821,0.508035,0.736698,0.684395,0.114913,0.207699,0.548759,0.614599,0.79495,0.415564,0.196613,0.814393,0.302522,0.830824,0.557749,0.612567,0.35207,0.404236,0.478527,0.461224,0.638001,0.924361,0.856478,0.412805,0.106045,0.172281,0.854728,0.626229,0.284542,0.12256,0.80618,0.282184,0.16535,0.646479,0.155033,0.61189,0.079641,0.12192,0.703136,0.511729,0.539908,0.0225248,0.623541,0.373324,0.162512,0.526487,0.957499,0.119273,0.81033,0.336102,0.892656,0.344132,0.362049,0.108875,0.766166,0.561446,0.107479,0.210498,0.786297,0.863248,0.163902,0.763205,0.153265,0.718977,0.640851,0.081221,0.0738679,0.445725,0.103786,0.792931,0.851261,0.798842,0.411293,0.611228,0.0442539,0.0103833,0.333645,0.306447,0.203762,0.774049,0.66619,0.864654,0.977562,0.0333132,0.550134,0.22217,0.771157,0.0171831,0.88827,0.693244,0.0260572,0.951539,0.888722,0.157631,0.293337,0.57722,0.546551,0.208286,0.123345,0.629415,0.476058,0.647304,0.957861,0.734141,0.815561,0.088552,0.307063,0.554944,0.0275416,0.284408,0.694072,0.955368,0.940091,0.480125,0.740714,0.0998316,0.291286,0.948211,0.649056,0.031905,0.283811,0.668832,0.925735,0.400664,0.80877,0.181623,0.748155,0.207267,0.322559,0.691419,0.399778,0.956312,0.735314,0.772181,0.178077,0.567237,0.118342,0.561414,0.517181,0.446524,0.0439715,0.726216,0.4695,0.489852,0.254569,0.178545,0.0653465,0.97354,0.834183,0.00873232,0.458166,0.303336,0.356138,0.501112,0.41922,0.410861,|0.630453,0.620971,0.0126558,0.981157,0.199678,0.672052,0.680882,0.916622,0.793668,0.578478,0.972538,0.00564325,0.159531,0.933555,0.192416,0.830587,0.867756,0.639234,0.0139551,0.088441,0.00315219,0.480767,0.00425339,0.482436,0.534856,0.465343,0.394534,0.579525,0.143413,0.99759,0.801435,0.183,0.460436,0.332694,0.92683,0.503466,0.759761,0.234103,0.886363,0.149408,0.85087,0.421045,0.235345,0.3387,0.456256,0.0219413,0.752267,0.181889,0.882379,0.832621,0.922703,0.649211,0.0522724,0.00741732,0.353526,0.985462,0.903822,0.75343,0.444666,0.225928,0.836953,0.350742,0.624833,0.873741,0.119272,0.441123,0.290766,0.198746,0.0376249,0.308803,0.28318,0.237917,0.386077,0.92196,0.84898,0.696119,0.0434836,0.867792,0.483249,0.434276,0.856658,0.373241,0.730926,0.409058,0.861678,0.640763,0.020875,0.344283,0.72347,0.582924,0.253807,0.74876,0.265413,0.0267171,0.972021,0.800007,0.606683,0.73047,0.618137,0.73238,0.407131,0.445524,0.463266,0.402045,0.61258,0.46623,0.486896,0.110579,0.0328823,0.905064,0.846749,0.645664,0.46658,0.280794,0.845985,0.176436,0.831214,0.837631,0.435278,0.586674,0.486382,0.252719,0.296439,0.615365,0.185081,0.611043,0.487452,0.455895,0.501932,0.997934,0.337035,0.213743,0.68547,0.129342,0.576685,0.580927,0.264621,0.0694242,0.0961752,0.856982,0.19535,0.350446,0.264156,0.146257,0.783597,0.336516,0.0815404,0.477066,0.129154,0.306002,0.270867,0.288213,0.197112,0.883523,0.0459688,0.662538,0.652,0.714199,0.00767857,0.217093,0.317256,0.223875,0.197781,0.814757,0.671142,0.0303987,0.874167,0.797077,0.0710024,0.205376,0.249997,0.610651,0.00996387,0.321319,0.707036,0.226676,0.709493,0.923623,0.31638,0.175278,0.673614,0.63083,0.373674,0.891231,0.994282,0.821426,0.400611,0.585694,0.27285,0.963663,0.608842,0.549306,0.397097,0.26339,0.552341,0.370426,0.677284,0.391325,0.558197,0.996735,0.715087,0.121127,0.343251,0.157543,0.290966,0.568646,0.627274,0.0294823,0.246322,0.307158,0.782972,0.432767,0.799543,0.647345,0.832523,0.639557,0.014076,0.756477,0.0404806,0.511033,0.709401,0.737037,0.667239,0.9755,0.257897,0.902548,0.465782,0.434942,0.555328,0.201749,0.443066,0.889901,0.361112,0.495732,0.226958,0.902725,0.215824,0.0293961,0.341702,0.778142,0.464951,0.900677,0.297304,0.444548,0.987347,0.103418,0.539142,0.151404,0.558506,0.804704,0.853242,0.380817,0.609024,0.137625,0.143838,0.504846,0.456155,0.409308,0.865353,0.57851,0.0120403,0.483947,0.127537,0.476583,0.0324923,0.476349,0.863215,0.00835979,0.556916,0.0521559,0.101186,0.71311,0.400585,0.776841,0.144553,0.229513,0.770607,0.730767,0.212732,0.913426,0.11828,0.693275,0.823415,0.0596296,0.146864,0.277312,0.253373,0.545951,0.217198,0.910613,0.330353,0.466624,0.286548,0.141555,0.326364,0.854363,0.219875,0.977198,0.343703,0.804314,0.443125,0.663656,0.599891,0.479749,0.594299,0.432801,0.910539,0.644408,0.405177,0.487079,0.681522,0.181669,0.0813869,0.0536398,0.312314,0.466166,0.508257,0.421095,0.312523,0.616928,0.320541,0.0857259,0.0298387,0.544367,0.969607,0.0671532,0.990706,0.281126,0.721995,0.0498825,0.437712,0.377116,0.939545,0.0859303,0.308491,0.946464,0.621271,0.668819,0.356101,0.207714,0.282495,0.85554,0.51564,0.460605,0.788329,0.726636,0.996766,0.652703,0.267417,0.44424,0.976415,0.827809,0.495459,0.172785,0.616396,0.269133,0.38826,0.576569,0.346894,0.864195,0.978613,0.739401,0.0386093,0.267338,0.432733,0.2541,0.937267,0.944633,0.19223,0.326683,0.518875,0.718921,0.40789,0.0569457,0.584634,0.942796,0.968143,0.239667,0.533143,0.706773,0.61603,0.756641,0.934278,0.020236,0.576198,0.334248,0.598254,0.423792,0.131935,0.853129,0.0996148,0.317481,0.790347,0.240096,0.912418,0.358166,0.343232,0.0582051,0.74565,0.851452,0.836362,0.783013,0.691634,0.455507,0.12543,0.600252,0.574514,0.411638,0.14206,0.822035,0.203274,0.48033,0.550484,0.772539,0.99518,0.806299,0.456117,0.9962,0.766261,0.528182,0.213709,0.812355,0.502059,0.953545,0.31366,0.879613,0.22846,0.306043,0.256442,0.106521,0.909729,0.16736,0.29978,0.382629,0.701714,0.645131,0.157245,0.926696,0.145446,0.843567,0.935707,0.161951,0.120278,0.161304,0.823484,0.702462,0.979982,0.60805,0.198626,0.351206,0.0363188,0.542517,0.901376,0.28034,0.332831,0.108248,0.961455,0.970432,0.73828,0.755766,0.289264,0.0640908,0.816149,0.281083,0.362278,0.394558,0.324466,0.175909,0.792796,0.661249,0.158575,0.14388,0.138554,0.0709088,0.329452,0.644903,0.0717847,0.982147,0.00428462,0.868634,0.706628,0.949473,0.985387,0.535094,0.91542,0.565281,0.282966,0.50462,0.134495,0.881187,0.852252,0.741968,0.35182,0.651199,0.492392,0.443428,0.0723013,0.672867,0.384612,0.63562,0.444426,0.750077,0.215428,0.805232,0.0808753,0.0984234,0.780614,0.420286,0.359832,0.459868,0.886946,0.0977415,0.373374,0.81706,0.722743,0.330287,0.156536,0.81751,0.149691,0.187524,0.809288,0.620198,0.41786,0.519714,0.0616221,0.309287,0.514404,0.0162657,0.956979,0.53647,0.429988,0.991228,0.850846,0.291502,0.589144,0.0639892,0.409747,0.13925,0.288044,0.144206,0.428835,0.486113,0.757136,0.518489,0.707743,0.330965,0.325865,0.914429,0.456654,0.289559,0.420518,0.531706,0.819938,0.789221,0.296405,0.937654,0.726106,0.336567,0.446987,0.495986,0.870422,0.213979,0.226415,0.696236,0.126184,0.726992,0.743097,0.0663059,0.937699,0.549891,0.42339,0.328142,0.0843711,0.462894,0.840992,0.629949,0.837143,0.238474,0.509614,0.810892,0.519218,0.862871,0.886639,0.289012,0.946725,0.690519,0.0250273,0.431294,0.140065,0.146066,0.903644,0.109104,0.0606885,0.0831208,0.497449,0.595152,0.72885,0.141017,0.812871,0.0975177,0.615693,0.0821926,0.79011,0.207252,0.827228,0.293005,0.500221,0.697544,0.394231,0.678403,0.116532,0.265626,0.396046,0.651421,0.441823,0.970223,0.514026,0.0217491,0.712559,0.112123,0.0670441,0.220133,0.336456,0.740635,0.209207,0.645252,0.274722,0.175858,0.161854,0.545183,0.764473,0.872707,0.306562,0.60521,0.0761642,0.195656,0.791938,0.808284,0.877367,0.96397,0.897733,0.879601,0.500911,0.275053,0.187906,0.769414,0.694816,0.410971,0.546826,0.113688,0.382356,0.538366,0.543763,0.999542,0.318636,0.346433,0.00699633,0.597282,0.863768,0.759265,0.879902,0.57578,0.975746,0.373385,0.558179,0.863182,0.84252,0.475623,0.476568,0.956558,0.301314,0.508374,0.591649,0.99628,0.935028,0.991703,0.51024,0.823864,0.511617,0.355124,0.176023,0.724504,0.155639,0.21805,0.477349,0.843907,0.688467,0.0486655,0.190656,0.465889,0.625524,0.716916,0.22898,0.9752,0.90261,0.702549,0.683914,0.866332,0.670056,0.6011,0.243685,0.145103,0.494094,0.120167,0.192219,0.41794,0.242794,0.835708,0.676204,0.426951,0.89239,0.412911,0.122651,0.0416451,0.563553,0.675845,0.180158,0.142821,0.361245,0.475257,0.67336,0.414683,0.00959837,0.399758,0.0525407,0.956665,0.211693,0.227753,0.57857,0.718444,0.258694,0.1687,0.374268,0.101935,0.261418,0.34126,0.44991,0.14517,0.279933,0.4716,0.616481,0.904869,0.482495,0.745626,0.907529,0.21269,0.610766,0.0546373,0.37356,0.546381,0.0893873,0.523402,0.886033,0.634175,0.0474535,0.38906,0.154546,0.316376,0.771868,0.396423,0.949516,0.312609,0.586958,0.277285,0.427427,0.927737,0.21779,0.551222,0.191488,0.415157,0.109024,0.748875,0.418167,0.492325,0.280836,0.276311,0.47026,0.0808043,0.69006,0.674341,0.308516,0.371448,0.542615,0.625885,0.79319,0.94315,0.315004,0.54155,0.99178,0.130564,0.940975,0.340491,0.237606,0.0876846,0.916861,0.733672,0.894003,0.744685,0.530299,0.127938,0.364045,0.875326,0.218002,0.864348,0.847017,0.105775,0.540987,0.562216,0.307611,0.5982,0.493757,0.351397,0.580032,0.348521,0.154709,0.118818,0.278672,0.00565362,0.976301,0.263822,0.974826,0.682385,0.077074,0.0370886,0.635286,0.674894,0.726341,0.639578,0.871148,0.700926,0.396948,0.436059,0.370511,0.417842,0.522132,0.464634,0.0517538,0.738419,0.334147,0.288217,0.694717,0.102216,0.22684,0.132144,0.393809,0.154789,0.522824,0.243418,0.394219,0.366927,0.778328,0.25904,0.617192,0.828277,0.57596,0.652518,0.371505,0.994223,0.210462,0.293067,0.16926,0.514122,0.178476,0.118901,0.952246,0.665751,0.938568,0.43773,0.634433,0.200467,0.390084,0.358791,0.822662,0.19577,0.961508,0.933402,0.0953344,0.976802,0.726141,0.159168,0.851767,0.290659,0.757335,0.266079,0.00103623,0.927693,0.573701,0.378236,0.445832,0.183639,0.556276,0.309365,0.364819,0.984451,0.520742,0.805559,0.6272,0.0891542,0.734864,0.574385,0.871222,0.886614,0.300803,0.98129,0.296738,0.971486,0.917489,0.0495861,0.312313,0.291899,0.548923,0.131979,0.591241,0.23339,0.829934,0.823017,0.450527,0.311217,0.376554,0.0281389,0.548026,0.954365,0.62101,0.534346,0.34371,0.664244,0.220575,0.045542,0.371724,0.806596,0.962416,0.942925,0.464116,0.0381593,0.0267586,0.510859,0.254028,0.743665,0.134854,0.849854,0.836767,0.747154,0.633518,0.800844,0.301311,0.134529,0.504906,0.961709,0.657188,0.252109,0.42907,0.0866551,0.362144,0.585325,0.105722,0.00889838,0.640983,0.186859,0.117914,0.174452,0.795762,0.40724,0.707416,0.0658743,0.700525,0.378694,0.24483,0.838237,0.499297,0.248483,0.177298,0.355072,0.498571,0.0279914,0.240517,0.633835,0.37561,0.992425,0.761629,0.525401,0.222416,0.819646,0.968394,0.835038,0.760357,0.634755,0.826203,0.77001,0.882393,0.158405,0.265353,0.605688,0.633828,0.327911,0.412245,0.356296,0.459824,0.566428,0.244422,0.417036,|0.401767,0.556073,0.770836,0.863844,0.966817,0.24722,0.478934,0.57015,0.412147,0.68368,0.432039,0.329626,0.347728,0.175959,0.130773,0.962131,0.13708,0.128391,0.906255,0.377555,0.642999,0.39908,0.346036,0.158798,0.994822,0.44678,0.227969,0.418066,0.489668,0.0448095,0.227765,0.756553,0.683463,0.185095,0.68094,0.341615,0.869342,0.440584,0.260555,0.150753,0.424288,0.392203,0.172517,0.283211,0.27066,0.0404745,0.502925,0.0961583,0.996857,0.196035,0.396541,0.227716,0.139575,0.167862,0.373817,0.383448,0.173189,0.263366,0.379145,0.0254312,0.523738,0.584898,0.227959,0.466313,0.628536,0.0414747,0.206564,0.349615,0.908001,0.0169935,0.87099,0.813489,0.175517,0.0191206,0.718585,0.802108,0.341945,0.0850281,0.910436,0.708379,0.209776,0.959038,0.0524715,0.884988,0.90368,0.123181,0.587852,0.297213,0.719201,0.300637,0.14119,0.0535038,0.0921337,0.516314,0.444669,0.905392,0.901861,0.711153,0.325469,0.338322,0.700402,0.801315,0.324081,0.779142,0.462297,0.129536,0.301967,0.893484,0.336815,0.113334,0.996137,0.272383,0.476837,0.850608,0.985014,0.372872,0.365538,0.430841,0.962399,0.899666,0.450108,0.271129,0.710028,0.819856,0.0750922,0.180608,0.151141,0.695776,0.0557913,0.991788,0.985784,0.925954,0.896372,0.968147,0.907176,0.24953,0.0210821,0.609312,0.557188,0.313965,0.268291,0.410763,0.881454,0.848128,0.211908,0.0467834,0.556114,0.841644,0.682076,0.947116,0.836881,0.618012,0.350042,0.995811,0.272555,0.199732,0.375674,0.988103,0.354079,0.662699,0.0392429,0.806409,0.731075,0.748342,0.216045,0.695499,0.544504,0.944735,0.664059,0.742596,0.0838019,0.420941,0.380917,0.817828,0.795316,0.577371,0.619019,0.24591,0.414128,0.337297,0.418058,0.577418,0.211491,0.736038,0.171643,0.544899,0.900594,0.836685,0.131219,0.0490271,0.70596,0.195171,0.155205,0.990871,0.439119,0.134479,0.571243,0.27879,0.597102,0.885184,0.162702,0.272437,0.839661,0.187609,0.154875,0.389814,0.560047,0.0403312,0.509274,0.306652,0.181062,0.598773,0.828043,0.561282,0.425535,0.769148,0.636504,0.406705,0.379863,0.0840345,0.0693914,0.980918,0.0479292,0.880447,0.441023,0.698346,0.252802,0.555244,0.599007,0.858695,0.000828028,0.0412267,0.490452,0.751697,0.43483,0.00460339,0.757038,0.994916,0.474419,0.0333536,0.520331,0.15973,0.577739,0.642188,0.0371249,0.316093,0.828139,0.822604,0.433325,0.992878,0.538685,0.464619,0.976509,0.592899,0.961319,0.660179,0.852309,0.56819,0.15362,0.120874,0.10705,0.967762,0.846102,0.152765,0.486547,0.274617,0.216425,0.803884,0.0807679,0.517953,0.987857,0.398305,0.158272,0.532493,0.662097,0.445142,0.502438,0.735043,0.150249,0.784989,0.730444,0.398108,0.258816,0.0311371,0.234623,0.993188,0.0172135,0.366198,0.226028,0.887843,0.664672,0.978988,0.580274,0.814466,0.981721,0.989409,0.0249442,0.672208,0.963086,0.130736,0.974763,0.258913,0.704021,0.675245,0.137625,0.313729,0.40854,0.690314,0.960507,0.939061,0.310827,0.744003,0.55002,0.974924,0.862641,0.743654,0.592223,0.49818,0.943245,0.113213,0.739053,0.200754,0.435109,0.83422,0.0854969,0.877751,0.940751,0.748527,0.530851,0.313251,0.50752,0.313052,0.611054,0.480063,0.231584,0.914382,0.255729,0.0358775,0.212974,0.668635,0.34033,0.455219,0.224035,0.782506,0.0300437,0.640159,0.292618,0.72263,0.028075,0.768251,0.789442,0.343346,0.0574356,0.732278,0.820653,0.592558,0.0538663,0.813125,0.578593,0.264636,0.897644,0.889456,0.616196,0.175406,0.192669,0.825278,0.0155514,0.969911,0.584207,0.681146,0.0295197,0.758576,0.287455,0.400372,0.399082,0.332784,0.0259673,0.199819,0.324994,0.198343,0.0633014,0.297629,0.310198,0.849823,0.17259,0.606665,0.808621,0.0515001,0.457492,0.960473,0.710422,0.539731,0.284201,0.83155,0.100353,0.00380689,0.663985,0.398769,0.546719,0.699159,0.0782126,0.894135,0.389221,0.839918,0.275319,0.767466,0.353384,0.677317,0.47438,0.239828,0.70068,0.272401,0.826121,0.603589,0.229026,0.14378,0.835679,0.362669,0.245878,0.189221,0.020579,0.0743405,0.942833,0.85086,0.256588,0.374881,0.745916,0.583426,0.0915928,0.57886,0.176656,0.0858076,0.259625,0.152501,0.0371183,0.579369,0.93502,0.885168,0.0753272,0.71319,0.194349,0.0984449,0.863733,0.0613174,0.842582,0.49376,0.745763,0.899751,0.468513,0.648933,0.957366,0.520112,0.170031,0.468066,0.257864,0.612389,0.100615,0.174054,0.676513,0.65197,0.274696,0.419111,0.308094,0.718313,0.955091,0.898136,0.108496,0.512512,0.385764,0.79575,0.423948,0.0615959,0.409431,0.0664023,0.797467,0.380811,0.934394,0.61318,0.961881,0.252395,0.359059,0.915683,0.00174206,0.156851,0.367142,0.748324,0.490492,0.947016,0.328011,0.206083,0.977993,0.597047,0.58243,0.983535,0.393825,0.655147,0.715823,0.162587,0.397296,0.901938,0.707393,0.0916631,0.135164,0.174072,0.144981,0.620001,0.342292,0.655201,0.788818,0.81418,0.138235,0.186168,0.512565,0.0489299,0.805143,0.444957,0.790704,0.0779406,0.473708,0.444666,0.781202,0.128383,0.486906,0.619855,0.127753,0.59508,0.560527,0.0180537,0.281724,0.388355,0.435525,0.554633,0.679369,0.225932,0.0684639,0.561703,0.408417,0.268465,0.407727,0.971422,0.0774439,0.250447,0.847152,0.71392,0.0184755,0.353034,0.105106,0.212541,0.397102,0.52457,0.10653,0.116478,0.951846,0.861938,0.767612,0.215942,0.566255,0.102299,0.882402,0.837115,0.243986,0.0571938,0.023312,0.350099,0.734075,0.704928,0.499444,0.116905,0.816281,0.942398,0.984553,0.239341,0.0661871,0.926128,0.550076,0.811579,0.432205,0.873301,0.7216,0.410258,0.39887,0.878695,0.989698,0.852236,0.368485,0.861205,0.66991,0.0717461,0.748241,0.0197072,0.853329,0.217908,0.999882,0.52785,0.0204861,0.925535,0.101509,0.691432,0.621111,0.219489,0.794612,0.160798,0.448281,0.9864,0.870936,0.227255,0.729335,0.708549,0.327389,0.00779289,0.825195,0.232493,0.148965,0.0122517,0.775867,0.977773,0.562797,0.621782,0.532352,0.757143,0.676365,0.858542,0.9933,0.703845,0.105456,0.676794,0.446666,0.359325,0.809907,0.761477,0.21503,0.689455,0.52763,0.274532,0.203491,0.384644,0.845808,0.473657,0.800654,0.026749,0.00197458,0.498223,0.168752,0.0205141,0.089358,0.189911,0.546801,0.403807,0.719441,0.774211,0.483957,0.0413231,0.397303,0.202981,0.873688,0.735392,0.592558,0.403328,0.726543,0.930213,0.927225,0.193995,0.34926,0.570142,0.616661,0.85598,0.352267,0.126624,0.140479,0.810163,0.945856,0.684747,0.919057,0.458204,0.218468,0.967154,0.399703,0.440345,0.949641,0.928835,0.276151,0.231433,0.218977,0.338201,0.235293,0.450917,0.860438,0.888595,0.97345,0.757875,0.72459,0.78861,0.0984404,0.830472,0.762422,0.739804,0.199435,0.271567,0.82106,0.436819,0.790514,0.0348956,0.433264,0.902112,0.656601,0.0555803,0.272717,0.542363,0.894294,0.797183,0.700371,0.735186,0.330082,0.101903,0.570993,0.238349,0.300575,0.548255,0.626967,0.0535471,0.877523,0.705988,0.296839,0.675684,0.694298,0.00871342,0.900502,0.829591,0.0841233,0.161358,0.557693,0.836986,0.284044,0.0891126,0.806263,0.688284,0.325307,0.296289,0.286313,0.191212,0.332114,0.675629,0.775734,0.0570145,0.474356,0.855366,0.779136,0.678519,0.628528,0.126029,0.0267574,0.560041,0.910781,0.903185,0.29017,0.643982,0.103378,0.349228,0.038501,0.816193,0.376684,0.184984,0.142535,0.994178,0.605985,0.55583,0.695898,0.870287,0.49639,0.296668,0.0401121,0.948726,0.179609,0.908725,0.734473,0.008286,0.223286,0.73657,0.640577,0.33814,0.475022,0.279318,0.0474524,0.11901,0.0253702,0.0392901,0.0124366,0.79525,0.256176,0.414535,0.318408,0.962208,0.634567,0.600035,0.269705,0.274868,0.385521,0.28329,0.648665,0.862576,0.180095,0.0447488,0.969328,0.0538339,0.273938,0.617392,0.464014,0.176222,0.277574,0.736373,0.901741,0.975846,0.992108,0.829916,0.71422,0.15043,0.89463,0.620017,0.409489,0.908382,0.7013,0.887639,0.896604,0.657998,0.91062,0.29343,0.40077,0.0266485,0.493388,0.912058,0.989871,0.0849555,0.0747204,0.471596,0.883267,0.74152,0.354674,0.470734,0.727187,0.803889,0.32685,0.0381297,0.420307,0.881702,0.137471,0.581457,0.647784,0.909269,0.910141,0.0671334,0.760701,0.0549964,0.453295,0.862861,0.662558,0.463011,0.850523,0.818252,0.108095,0.389238,0.407671,0.748807,0.223373,0.152104,0.216867,0.302794,0.435018,0.496497,0.58938,0.0253294,0.679026,0.576762,0.685528,0.642564,0.121065,0.38344,0.596097,0.814801,0.642379,0.130418,0.559248,0.485264,0.47956,0.883672,0.628154,0.235166,0.72851,0.839647,0.579949,0.556021,0.520792,0.702846,0.788659,0.686399,0.854932,0.994159,0.845815,0.423998,0.563714,0.759455,0.724132,0.520021,0.428719,0.713345,0.903809,0.642101,0.154328,0.75561,0.866874,0.953266,0.514075,0.855486,0.721885,0.769904,0.884224,0.923236,0.40634,0.358183,0.906379,0.823175,0.88062,0.461625,0.602545,0.958013,0.539645,0.600499,0.495535,0.909382,0.174864,0.622972,0.201652,0.134443,0.867092,0.482217,0.578502,0.468295,0.72897,0.938827,0.160889,0.892089,0.501462,0.546627,0.0882235,0.270823,0.619573,0.86906,0.677058,0.981075,0.318939,0.848082,0.516405,0.104248,0.651439,0.996616,0.491374,0.586237,0.69301,0.0830164,0.711497,0.334507,0.401257,0.341985,0.0881494,0.409658,0.45738,0.662773,0.00514323,0.332504,0.660442,0.657247,0.941321,0.328816,0.684431,0.423492,0.563722,0.367556,0.699014,0.982942,0.714811,0.347836,0.31529,0.355702,0.120237,0.213805,0.655576,0.735717,0.567672,0.56693,0.801973,0.981463,0.134902,0.932997,0.694973,0.960463,0.515989,0.380146,0.77547,0.542556,0.682322,0.410635,|0.0762372,0.370812,0.281961,0.570997,0.338807,0.35847,0.56369,0.195365,0.0796967,0.494923,0.925892,0.246661,0.920951,0.153808,0.284662,0.63729,0.835689,0.886347,0.235054,0.5561,0.686376,0.176391,0.117051,0.0173008,0.631508,0.982689,0.426384,0.925158,0.460532,0.631567,0.154415,0.38504,0.925623,0.551604,0.490453,0.216307,0.334232,0.203234,0.498007,0.90118,0.644038,0.229382,0.827917,0.58355,0.493473,0.59611,0.137955,0.347165,0.875993,0.955865,0.852766,0.108078,0.835929,0.876876,0.302629,0.491506,0.289658,0.606752,0.170136,0.363279,0.779458,0.77174,0.205202,0.230371,0.858124,0.742693,0.492522,0.197181,0.389104,0.262855,0.424013,0.492634,0.7146,0.128345,0.876506,0.472026,0.441164,0.0954559,0.870479,0.417765,0.0481739,0.945819,0.308068,0.805434,0.686543,0.607172,0.605442,0.777446,0.818529,0.282239,0.739963,0.0424434,0.515714,0.721379,0.575657,0.476068,0.406913,0.788231,0.0853538,0.331556,0.68181,0.302881,0.294408,0.887702,0.449588,0.524975,0.609364,0.648352,0.776185,0.244305,0.0527321,0.47807,0.128464,0.137688,0.425971,0.744381,0.550763,0.925572,0.707785,0.00258666,0.428181,0.240679,0.960737,0.415829,0.965962,0.399368,0.813054,0.308666,0.481164,0.429775,0.294268,0.614891,0.296901,0.649635,0.222707,0.977461,0.709252,0.773431,0.806826,0.581021,0.775888,0.23793,0.650825,0.217917,0.546556,0.947386,0.92064,0.608719,0.944666,0.84839,0.709493,0.957796,0.41057,0.239253,0.124625,0.283296,0.164098,0.686175,0.610164,0.512789,0.0341197,0.0233994,0.0879909,0.156899,0.36502,0.964583,0.63442,0.639953,0.50145,0.321695,0.86462,0.720864,0.700037,0.0436625,0.968553,0.373351,0.0431504,0.529497,0.047517,0.742778,0.851588,0.919923,0.82808,0.216046,0.357669,0.687225,0.546458,0.923886,0.276565,0.140852,0.492637,0.502104,0.954369,0.137991,0.626103,0.704623,0.619848,0.664698,0.488424,0.988747,0.170344,0.872523,0.695712,0.491049,0.795062,0.541759,0.606974,0.650585,0.969112,0.925337,0.787813,0.926958,0.190802,0.560724,0.172134,0.1532,0.338593,0.476155,0.843342,0.890438,0.528878,0.502109,0.690172,0.374166,0.0691905,0.661747,0.535389,0.337107,0.512566,0.412954,0.323851,0.491488,0.893889,0.0818137,0.683744,0.384815,0.623399,0.0879461,0.580386,0.520934,0.167319,0.868743,0.0728288,0.694384,0.942475,0.962028,0.684033,0.243647,0.341424,0.956603,0.261176,0.998806,0.596804,0.366812,0.60754,0.0405933,0.503695,0.212756,0.0111694,0.443263,0.672892,0.942424,0.660404,0.655279,0.705471,0.13314,0.202146,0.799748,0.458903,0.493363,0.613748,0.697886,0.860286,0.763449,0.502429,0.0323042,0.085564,0.364831,0.29149,0.538781,0.548413,0.0340074,0.326589,0.991895,0.090754,0.939048,0.00886369,0.624667,0.179703,0.994981,0.726795,0.446767,0.624328,0.58871,0.570963,0.100445,0.77381,0.352782,0.282422,0.536044,0.620497,0.323792,0.794389,0.869736,0.830812,0.175506,0.720616,0.47271,0.926919,0.940566,0.975969,0.160666,0.17667,0.488578,0.523152,0.335019,0.643357,0.863977,0.534365,0.607512,0.495546,0.872559,0.532185,0.403054,0.701544,0.0308943,0.875666,0.805264,0.975646,0.32917,0.970085,0.783408,0.830386,0.98902,0.360873,0.587595,0.989953,0.405926,0.704371,0.711483,0.649073,0.413959,0.833478,0.0888013,0.377564,0.287853,0.494386,0.816365,0.446198,0.439397,0.785897,0.591586,0.668469,0.502721,0.356985,0.332952,0.0251877,0.939458,0.811501,0.831455,0.671959,0.25745,0.46047,0.128426,0.837956,0.404971,0.822044,0.500128,0.594092,0.178648,0.360981,0.569471,0.526862,0.306564,0.437617,0.581852,0.461563,0.638751,0.704724,0.381052,0.646721,0.256427,0.232748,0.0180847,0.945578,0.814818,0.606847,0.756687,0.289606,0.217347,0.687468,0.483393,0.419906,0.767373,0.20511,0.92053,0.664881,0.629409,0.463329,0.447404,0.0617666,0.433994,0.296337,0.471699,0.610488,0.432182,0.0777841,0.000266433,0.0604737,0.898683,0.305085,0.920092,0.97933,0.880767,0.766969,0.273263,0.151601,0.0221589,0.143209,0.304339,0.451047,0.286523,0.903449,0.911466,0.821586,0.84421,0.0919755,0.0966491,0.249085,0.889998,0.647153,0.882592,0.380414,0.0738955,0.222254,0.335335,0.511131,0.208731,0.739248,0.783026,0.555866,0.871648,0.257156,0.00757003,0.962652,0.615202,0.162862,0.320476,0.0760643,0.214524,0.643965,0.00553536,0.238756,0.108351,0.482072,0.292537,0.875822,0.3517,0.0550169,0.577961,0.767958,0.896859,0.492653,0.725721,0.71501,0.238821,0.842083,0.346962,0.122836,0.863177,0.144558,0.0439903,0.317386,0.279076,0.42078,0.799002,0.691442,0.535841,0.720826,0.537412,0.395017,0.0180982,0.642718,0.470548,0.0985307,0.68435,0.543662,0.930131,0.123419,0.012588,0.0279166,0.118858,0.921634,0.187722,0.520537,0.854263,0.364756,0.601419,0.93753,0.151665,0.594437,0.787576,0.100306,0.465406,0.307005,0.107554,0.150022,0.49709,0.697952,0.819815,0.13038,0.401192,0.508562,0.6176,0.0656098,0.725386,0.762322,0.414557,0.210702,0.327841,0.620155,0.708577,0.52098,0.738256,0.118939,0.427893,0.480378,0.46056,0.994384,0.650558,0.184166,0.975464,0.474293,0.944843,0.911126,0.732545,0.535261,0.339332,0.683376,0.261557,0.88851,0.700432,0.682876,0.784583,0.468423,0.642587,0.772461,0.644777,0.93246,0.39765,0.744368,0.175255,0.476727,0.528821,0.444648,0.668926,0.235733,0.670755,0.796381,0.221916,0.749029,0.62886,0.653705,0.925469,0.514307,0.558055,0.0839851,0.888707,0.483238,0.548705,0.352386,0.723611,0.546246,0.637808,0.875825,0.930658,0.205635,0.982943,0.86211,0.0358937,0.0165485,0.178292,0.756431,0.481817,0.0447494,0.126822,0.93093,0.602806,0.143398,0.292524,0.180938,0.321238,0.55999,0.528625,0.415714,0.30201,0.57786,0.985251,0.0181062,0.15432,0.188017,0.873801,0.944263,0.303452,0.907323,0.897286,0.975645,0.0910191,0.866628,0.227275,0.313683,0.303347,0.00359857,0.542336,0.978486,0.428762,0.243795,0.245198,0.940698,0.00270706,0.225142,0.302358,0.127852,0.189623,0.169435,0.551221,0.779071,0.644857,0.991191,0.803847,0.228795,0.103594,0.388353,0.668127,0.17883,0.73483,0.457621,0.763497,0.765147,0.723544,0.353912,0.741367,0.0446787,0.909515,0.997308,0.657159,0.077623,0.89545,0.07683,0.576611,0.94655,0.169449,0.720568,0.965346,0.895979,0.648551,0.389503,0.469504,0.498195,0.0727617,0.238711,0.410116,0.719256,0.919922,0.0708452,0.686108,0.253803,0.494983,0.205085,0.481306,0.942395,0.120553,0.514044,0.299278,0.234773,0.389168,0.808425,0.219393,0.884236,0.516334,0.0674916,0.0314492,0.773274,0.560476,0.983433,0.256225,0.229773,0.113732,0.0228602,0.108366,0.346543,0.360022,0.911666,0.585427,0.778448,0.829763,0.444408,0.0628317,0.601471,0.0153521,0.0568143,0.2583,0.775713,0.323379,0.831665,0.228689,0.078346,0.11867,0.470179,0.376033,0.6514,0.48897,0.207081,0.702486,0.972497,0.51032,0.435916,0.0557069,0.867493,0.959836,0.347452,0.360135,0.436282,0.733691,0.952776,0.43341,0.107037,0.892402,0.72862,0.417469,0.23206,0.737041,0.62379,0.456683,0.257632,0.60855,0.282498,0.992719,0.282303,0.0676484,0.102958,0.345497,0.541934,0.430531,0.280364,0.707298,0.0419761,0.46178,0.597015,0.99913,0.748512,0.454378,0.60169,0.126884,0.0836036,0.488389,0.0934491,0.472933,0.194128,0.142439,0.526983,0.451071,0.691341,0.422522,0.0293825,0.172334,0.449691,0.833263,0.740749,0.0277604,0.382445,0.165731,0.54353,0.084438,0.00164998,0.394323,0.459257,0.126087,0.541985,0.623717,0.134876,0.664178,0.309053,0.578911,0.745491,0.248217,0.995974,0.884121,0.458035,0.633735,0.0608091,0.490086,0.0844281,0.0649737,0.823888,0.353636,0.0125483,0.305391,0.215643,0.00310868,0.550657,0.383382,0.229781,0.374722,0.222628,0.268197,0.726601,0.635097,0.408645,0.898832,0.0895906,0.949424,0.287098,0.875487,0.645551,0.23017,0.773969,0.912647,0.887156,0.422626,0.352253,0.398131,0.0578768,0.353731,0.937834,0.760184,0.600039,0.0545395,0.619386,0.0427274,0.202827,0.513716,0.642978,0.766582,0.0233163,0.477789,0.94071,0.624165,0.0171896,0.966951,0.276166,0.045558,0.633615,0.495457,0.577603,0.620863,0.823827,0.680958,0.93107,0.246198,0.0532469,0.819927,0.579601,0.383845,0.759152,0.764719,0.131884,0.40725,0.984096,0.262123,0.456003,0.760393,0.187457,0.793632,0.687045,0.474978,0.221229,0.413773,0.308028,0.585796,0.150605,0.89253,0.73125,0.124817,0.269999,0.250822,0.592466,0.126974,0.696571,0.782126,0.229685,0.223749,0.441488,0.713195,0.174968,0.701978,0.756449,0.162418,0.238161,0.397948,0.938759,0.469292,0.206217,0.0491152,0.987291,0.0685149,0.860175,0.567743,0.101634,0.267588,0.620876,0.459889,0.142308,0.287109,0.47449,0.435543,0.628274,0.109749,0.539946,0.251849,0.00539184,0.218551,0.770575,0.231882,0.173264,0.551634,0.477573,0.0877806,0.742596,0.66761,0.0260019,0.364735,0.875728,0.727418,0.163085,0.774562,0.927137,0.0606529,0.411416,0.341797,0.727717,0.8836,0.585182,0.902941,0.421822,0.456101,0.927367,0.528582,0.126962,0.29404,0.602217,0.842966,0.454098,0.172793,0.0976729,0.981621,0.307995,0.136608,0.888754,0.970981,0.73299,0.594663,0.235256,0.538967,0.43892,0.794822,0.566186,0.748436,0.450518,0.741273,0.314299,0.0812988,0.763639,0.307366,0.889755,0.251234,0.335852,0.302347,0.554191,0.0991271,0.290538,0.921896,0.943999,0.205762,0.728756,0.635907,0.474249,0.933158,0.755758,0.586333,0.835582,0.355504,0.051087,0.418523,0.280846,0.0788869,0.926383,0.871852,0.545026,0.361933,0.542538,0.0655059,0.424842,0.192284,0.473792,0.481091,0.15084,0.717929,0.0340495,0.751015,|0.367919,0.827767,0.302383,0.460096,0.352706,0.464315,0.907439,0.355186,0.495313,0.0512124,0.585768,0.1279,0.0798591,0.0614201,0.80862,0.0706285,0.389316,0.203541,0.949833,0.626885,0.845395,0.194607,0.251429,0.376235,0.403033,0.516802,0.364165,0.218277,0.736803,0.828079,0.691789,0.960984,0.331988,0.355233,0.316623,0.744242,0.27565,0.626667,0.409635,0.496175,0.175726,0.70241,0.196929,0.869509,0.568476,0.882083,0.668467,0.0402321,0.237787,0.129827,0.389332,0.059795,0.71147,0.966979,0.964669,0.425662,0.817433,0.572253,0.49923,0.607973,0.811749,0.107354,0.62905,0.194708,0.206622,0.281687,0.70576,0.781731,0.864663,0.63584,0.761421,0.854904,0.643809,0.733246,0.794985,0.146437,0.605203,0.952505,0.783596,0.778159,0.882014,0.0121401,0.969974,0.10271,0.222833,0.15741,0.157961,0.420153,0.891457,0.28664,0.434604,0.894129,0.256968,0.439546,0.0925437,0.791142,0.894747,0.00476152,0.234368,0.926973,0.410966,0.146333,0.0255208,0.735711,0.64486,0.447339,0.790004,0.304062,0.403005,0.718192,0.840007,0.347996,0.0620843,0.563743,0.335314,0.177256,0.880621,0.581565,0.492808,0.408557,0.846547,0.279076,0.571945,0.692481,0.0320717,0.97018,0.42312,0.516925,0.0783283,0.685965,0.893493,0.797377,0.934197,0.190399,0.787251,0.099066,0.71865,0.189048,0.37175,0.493225,0.392521,0.194438,0.0600263,0.0799944,0.762455,0.268123,0.695734,0.0559893,0.335594,0.777937,0.25019,0.98379,0.0788595,0.415851,0.0847536,0.454391,0.0618308,0.26023,0.911997,0.176509,0.744214,0.108289,0.077781,0.27425,0.961833,0.29025,0.731444,0.586859,0.723446,0.630751,0.290458,0.45727,0.0137904,0.48582,0.637747,0.412657,0.798007,0.383404,0.221432,0.556715,0.0397475,0.657458,0.44391,0.121309,0.304033,0.580804,0.806734,0.3219,0.847366,0.338156,0.69016,0.564344,0.803078,0.785573,0.967505,0.959893,0.897297,0.656889,0.0806859,0.682642,0.666519,0.626292,0.460437,0.577015,0.332397,0.857314,0.96509,0.40241,0.064846,0.250187,0.395494,0.345948,0.675824,0.69917,0.466649,0.387324,0.716587,0.106864,0.489258,0.856239,0.240867,0.970292,0.0386038,0.831552,0.164209,0.602957,0.00247639,0.442327,0.288639,0.0875051,0.376226,0.428992,0.195232,0.0420051,0.709784,0.524966,0.615346,0.062719,0.6576,0.640871,0.623335,0.473286,0.411976,0.586463,0.268151,0.125727,0.20423,0.947373,0.264433,0.0389293,0.690914,0.693112,0.393456,0.429884,0.263745,0.323744,0.18031,0.555577,0.00642401,0.230998,0.44369,0.23454,0.969972,0.288403,0.776092,0.862371,0.625581,0.934744,0.691692,0.280662,0.0387173,0.047042,0.968839,0.581551,0.436778,0.268227,0.767211,0.0557033,0.0665667,0.175072,0.267761,0.7101,0.695476,0.425655,0.335031,0.0578591,0.733115,0.373194,0.858588,0.75067,0.218161,0.317889,0.284437,0.385291,0.257047,0.633453,0.0035243,0.175866,0.943797,0.418964,0.751761,0.968836,0.555213,0.532643,0.00719416,0.306343,0.993401,0.448277,0.0326775,0.757827,0.966467,0.589702,0.225769,0.20651,0.351915,0.404271,0.332326,0.181105,0.0447085,0.456066,0.683774,0.443961,0.529935,0.850995,0.914269,0.320185,0.785702,0.989401,0.476238,0.223702,0.151574,0.990478,0.282358,0.949008,0.645536,0.580737,0.895157,0.208509,0.133089,0.337587,0.00915456,0.547619,0.169792,0.832605,0.125199,0.156074,0.0126072,0.414082,0.982291,0.677238,0.00417852,0.37493,0.927937,0.113106,0.165347,0.661333,0.588202,0.0180836,0.155943,0.203512,0.20428,0.356503,0.418884,0.0792142,0.943759,0.729935,0.54341,0.539343,0.00301224,0.581836,0.187875,0.592941,0.357261,0.0661656,0.757326,0.341457,0.756763,0.54144,0.780575,0.0167575,0.259668,0.493322,0.669002,0.997281,0.937423,0.888193,0.691469,0.470144,0.235936,0.631215,0.28044,0.882803,0.570674,0.780595,0.364083,0.718863,0.779844,0.895102,0.387353,0.529006,0.945121,0.383453,0.737198,0.137234,0.739216,0.161031,0.0764483,0.832052,0.106848,0.00983149,0.347169,0.51116,0.0881361,0.629392,0.530111,0.140081,0.468427,0.162606,0.674297,0.841981,0.700935,0.998829,0.504402,0.62102,0.0145486,0.583854,0.65015,0.806683,0.921023,0.0773827,0.536545,0.956295,0.847749,0.663931,0.338766,0.107203,0.538977,0.490742,0.337016,0.670759,0.310277,0.0895696,0.0473647,0.385955,0.649819,0.164003,0.784738,0.794234,0.0152283,0.602784,0.123399,0.182424,0.665565,0.85386,0.449256,0.319887,0.972418,0.121262,0.449139,0.989935,0.145016,0.592781,0.603013,0.865689,0.604057,0.903552,0.773784,0.302674,0.462834,0.169761,0.39933,0.747084,0.799446,0.805372,0.8119,0.460836,0.300419,0.39086,0.0694169,0.835591,0.309165,0.603566,0.988859,0.187529,0.981751,0.592704,0.353391,0.071538,0.513136,0.780823,0.228304,0.103164,0.360459,0.616235,0.449498,0.157589,0.913479,0.581076,0.710021,0.131219,0.839197,0.504908,0.422383,0.298101,0.953469,0.382183,0.284222,0.196449,0.107583,0.373931,0.0722547,0.951112,0.540743,0.331301,0.746731,0.226879,0.91618,0.923898,0.206591,0.566444,0.996681,0.743639,0.976031,0.937144,0.76715,0.599193,0.267913,0.789241,0.997936,0.657885,0.550196,0.568484,0.45458,0.312989,0.454654,0.253961,0.898666,0.799353,0.449574,0.78188,0.747805,0.288777,0.0679532,0.272136,0.587918,0.861284,0.216123,0.803656,0.349755,0.046672,0.513081,0.883263,0.363996,0.513604,0.681743,0.00278449,0.377572,0.160797,0.83672,0.814312,0.00272226,0.516537,0.999671,0.740707,0.788645,0.396822,0.444547,0.388164,0.810492,0.388998,0.140739,0.824779,0.181709,0.0408845,0.93931,0.379034,0.854328,0.45102,0.516405,0.764318,0.727433,0.546998,0.98104,0.931495,0.225569,0.120403,0.189803,0.124558,0.473329,0.51529,0.340523,0.307217,0.499868,0.52045,0.134661,0.545377,0.288025,0.385653,0.116728,0.00416547,0.943261,0.15565,0.654924,0.0030598,0.202156,0.956008,0.591389,0.670234,0.125004,0.402681,0.764649,0.863245,0.903697,0.610609,0.157391,0.951648,0.158446,0.336643,0.342732,0.496501,0.496575,0.57556,0.584052,0.945532,0.985831,0.568333,0.570681,0.297166,0.360182,0.647569,0.707387,0.812815,0.865782,0.815744,0.601465,0.151178,0.629607,0.649772,0.0856575,0.375491,0.376372,0.582283,0.263974,0.650194,0.775498,0.131723,0.775539,0.960096,0.369717,0.582041,0.164599,0.182693,0.237911,0.309079,0.572726,0.268504,0.451766,0.0623035,0.993443,0.274601,0.967788,0.796746,0.530772,0.275857,0.989397,0.564817,0.60046,0.206166,0.649181,0.0964888,0.269071,0.695196,0.528572,0.622952,0.471815,0.497573,0.271136,0.313837,0.405187,0.15564,0.475845,0.0596689,0.128121,0.407989,0.970771,0.678095,0.281489,0.915817,0.68735,0.792766,0.38348,0.870348,0.528846,0.610897,0.00135809,0.20713,0.759723,0.060116,0.791048,0.711555,0.595645,0.104063,0.548975,0.494581,0.979107,0.790904,0.519369,0.0187561,0.998361,0.318104,0.350712,0.104567,0.355548,0.552982,0.888976,0.322014,0.40231,0.879643,0.790264,0.0085665,0.632464,0.134465,0.0592673,0.761557,0.977361,0.548897,0.810667,0.936594,0.0809063,0.692123,0.319143,0.0192392,0.498416,0.19593,0.72534,0.599876,0.0901244,0.446616,0.471521,0.668094,0.57002,0.073954,0.571811,0.535098,0.134631,0.419612,0.581232,0.122376,0.594373,0.584418,0.889285,0.549822,0.0575636,0.105582,0.842483,0.455563,0.483126,0.739065,0.086839,0.955021,0.900004,0.106353,0.945121,0.268398,0.0320446,0.370264,0.405123,0.476175,0.734728,0.795611,0.175518,0.300335,0.481981,0.990192,0.317055,0.07375,0.719664,0.434499,0.124104,0.0161872,0.205775,0.130103,0.815076,0.184856,0.0282277,0.422477,0.469768,0.048182,0.736807,0.870144,0.842153,0.572955,0.462479,0.960179,0.972851,0.821583,0.58084,0.239369,0.957087,0.00925589,0.738982,0.015871,0.900095,0.722853,0.85052,0.619592,0.626322,0.406864,0.120962,0.552483,0.624018,0.311719,0.397722,0.7899,0.0649145,0.896438,0.111624,0.135602,0.271352,0.191762,0.109944,0.211079,0.290768,0.439541,0.737674,0.415721,0.0592808,0.515942,0.108091,0.33012,0.668557,0.707451,0.201405,0.808001,0.453709,0.538384,0.982798,0.82951,0.427955,0.713481,0.610857,0.43244,0.778705,0.60642,0.482708,0.184931,0.783684,0.735672,0.108223,0.751724,0.233545,0.650544,0.537576,0.0546672,0.988755,0.177514,0.830437,0.960604,0.468005,0.74408,0.741214,0.997089,0.986992,0.154928,0.167418,0.683347,0.233219,0.14104,0.792302,0.681253,0.861114,0.476275,0.413601,0.302294,0.490027,0.552421,0.0692577,0.099427,0.00140184,0.490675,0.696886,0.65745,0.483267,0.385198,0.670537,0.418173,0.956762,0.64649,0.168583,0.288294,0.52836,0.153632,0.297113,0.416844,0.619182,0.593614,0.819496,0.681725,0.535538,0.618505,0.139015,0.342315,0.473083,0.266145,0.768528,0.979553,0.311287,0.322219,0.131647,0.449084,0.452126,0.848568,0.516741,0.798505,0.532435,0.385233,0.000890613,0.693909,0.420202,0.151053,0.0486002,0.463155,0.877939,0.413616,0.0777112,0.826261,0.468916,0.924512,0.386399,0.913196,0.380607,0.530206,0.936731,0.52148,0.322518,0.166589,0.517554,0.669778,0.376636,0.329086,0.125379,0.564617,0.670888,0.323287,0.480178,0.00204009,0.661411,0.62798,0.366528,0.884253,0.512342,0.639621,0.250493,0.729785,0.856578,0.54504,0.875676,0.243279,0.65128,0.274311,0.9075,0.107824,0.149616,0.224075,0.982647,0.680674,0.677125,0.44785,0.827183,0.842823,0.588121,0.354278,0.0341927,0.521707,0.0840892,0.730257,0.341664,0.19376,0.0659115,0.964194,0.213007,0.719908,0.626011,0.834827,0.335959,0.34428,0.40408,0.493664,0.847376,0.383555,0.604449,0.249897,0.822602,0.833554,0.628167,0.927178,0.620295,0.960728,0.758029,0.868279,|0.451873,0.70307,0.0233457,0.849594,0.378002,0.279109,0.352337,0.290703,0.582974,0.0449383,0.492465,0.0248731,0.737231,0.62055,0.225819,0.412779,0.456215,0.757658,0.406751,0.465008,0.530082,0.269455,0.419547,0.642906,0.0487776,0.567745,0.950963,0.764532,0.0427557,0.103743,0.289475,0.38452,0.602139,0.120794,0.240888,0.688486,0.704585,0.257828,0.651241,0.119491,0.0489795,0.954835,0.0152091,0.914546,0.693711,0.291919,0.909893,0.244915,0.429004,0.524004,0.528642,0.530517,0.827728,0.584845,0.919944,0.528337,0.0508333,0.301264,0.857597,0.791964,0.463515,0.148613,0.0555338,0.673747,0.426074,0.912313,0.49436,0.602771,0.130164,0.965024,0.87691,0.137874,0.735903,0.153059,0.279927,0.266688,0.517285,0.278534,0.103833,0.927257,0.897193,0.317123,0.301755,0.0356446,0.647365,0.804621,0.264005,0.422351,0.976104,0.716749,0.958469,0.95983,0.378732,0.227868,0.901514,0.891144,0.830935,0.824279,0.122524,0.505273,0.232876,0.819888,0.0936344,0.5238,0.942334,0.627892,0.908613,0.168421,0.319286,0.959723,0.248281,0.833814,0.0673167,0.0669554,0.133126,0.841075,0.221746,0.292413,0.936948,0.428957,0.301183,0.822961,0.182807,0.454506,0.263758,0.567649,0.205481,0.569502,0.159175,0.895628,0.502543,0.951941,0.525314,0.602042,0.4577,0.62549,0.582884,0.0465997,0.312753,0.493599,0.332209,0.946258,0.754068,0.0249772,0.76052,0.148915,0.777757,0.868429,0.285633,0.141972,0.00575036,0.996227,0.218371,0.882698,0.350052,0.0872964,0.147626,0.858498,0.837432,0.734663,0.506707,0.359587,0.482748,0.264253,0.638397,0.21054,0.786883,0.571462,0.732507,0.569839,0.78736,0.892122,0.0378008,0.680675,0.586487,0.0846351,0.892704,0.643245,0.803862,0.0285882,0.156806,0.0904939,0.770661,0.000192225,0.292461,0.935266,0.998325,0.359858,0.455529,0.41452,0.501671,0.333546,0.356838,0.0990703,0.645375,0.0429546,0.488872,0.307756,0.84613,0.179301,0.901483,0.0148237,0.559328,0.526942,0.651183,0.980588,0.55988,0.390169,0.186006,0.50374,0.142407,0.469436,0.579537,0.878745,0.728105,0.258137,0.118577,0.493783,0.294454,0.163109,0.750077,0.446936,0.703839,0.920329,0.00905156,0.551347,0.402846,0.691996,0.0116776,0.054947,0.657766,0.274774,0.650511,0.784188,0.998309,0.751187,0.482694,0.00347251,0.757594,0.893538,0.573507,0.943017,0.887627,0.773766,0.462839,0.395133,0.593116,0.0380233,0.602236,0.82344,0.474759,0.228826,0.0612462,0.0780292,0.0502428,0.275954,0.0136661,0.0785214,0.823625,0.519031,0.0165081,0.166418,0.736313,0.693482,0.119498,0.521975,0.567582,0.146799,0.282954,0.39772,0.693888,0.856893,0.521004,0.606766,0.307541,0.360156,0.887429,0.37816,0.424448,0.7538,0.79277,0.464536,0.20746,0.14007,0.830528,0.662645,0.0918316,0.944989,0.367951,0.0348535,0.521348,0.50895,0.917112,0.232743,0.0511844,0.645196,0.695986,0.946277,0.634347,0.550471,0.716283,0.805615,0.220696,0.436415,0.586819,0.259851,0.201392,0.120375,0.00582862,0.444477,0.840104,0.710727,0.838271,0.568929,0.345877,0.864825,0.322552,0.417681,0.641805,0.628961,0.791763,0.548087,0.881606,0.635271,0.390035,0.794266,0.0915787,0.640425,0.870726,0.662886,0.55886,0.247589,0.422897,0.0783429,0.865764,0.685045,0.688362,0.118341,0.647749,0.229232,0.37958,0.155399,0.74381,0.297528,0.881549,0.624199,0.418468,0.566514,0.701204,0.581342,0.219545,0.612485,0.696603,0.434116,0.570661,0.199617,0.470555,0.871793,0.110237,0.071363,0.744631,0.996599,0.154363,0.537997,0.0414575,0.186153,0.615609,0.449181,0.259988,0.0679859,0.279626,0.78608,0.743616,0.735489,0.886453,0.774994,0.835137,0.0282981,0.239787,0.228089,0.885535,0.0592041,0.813577,0.0392283,0.330315,0.373751,0.457919,0.491334,0.746838,0.152842,0.396422,0.294555,0.0250149,0.406708,0.518018,0.509387,0.554335,0.0537631,0.704986,0.741184,0.977299,0.467519,0.340882,0.903397,0.750319,0.674431,0.249238,0.485502,0.34691,0.777153,0.485033,0.99689,0.772281,0.980737,0.254972,0.26253,0.997697,0.444006,0.222109,0.285339,0.0567903,0.725582,0.865677,0.900808,0.47965,0.901462,0.414343,0.00764817,0.513607,0.750965,0.453759,0.899021,0.758268,0.74434,0.512348,0.400068,0.571894,0.992281,0.509018,0.172096,0.586608,0.584948,0.282026,0.620453,0.0660582,0.587182,0.58913,0.264935,0.277418,0.0541542,0.22607,0.865581,0.854319,0.22671,0.268968,0.572112,0.235056,0.475324,0.157898,0.314091,0.887151,0.486226,0.476413,0.861634,0.79909,0.463874,0.415098,0.172609,0.114186,0.0669734,0.199015,0.643006,0.766142,0.999574,0.631924,0.609386,0.923589,0.691449,0.0569453,0.325391,0.261418,0.0445931,0.866545,0.565836,0.772958,0.205848,0.242247,0.992937,0.0641639,0.800125,0.237309,0.966872,0.533599,0.096202,0.769293,0.785296,0.700486,0.559766,0.509055,0.138311,0.57935,0.0927863,0.18183,0.456937,0.907145,0.928505,0.828256,0.13749,0.114861,0.316936,0.768523,0.181896,0.500531,0.666029,0.404063,0.902962,0.583471,0.234671,0.60415,0.648823,0.483382,0.283017,0.635703,0.959397,0.285656,0.480749,0.966473,0.604753,0.446798,0.937887,0.967749,0.339487,0.738917,0.0402696,0.176966,0.549987,0.1015,0.0139815,0.944848,0.148269,0.548439,0.538848,0.920317,0.698304,0.00765014,0.241557,0.878411,0.35126,0.677635,0.60362,0.785815,0.718554,0.339478,0.985664,0.749431,0.802421,0.224048,0.24829,0.0675997,0.427725,0.413066,0.00172347,0.651519,0.608407,0.442755,0.668642,0.585243,0.159491,0.0199567,0.695209,0.91536,0.839884,0.190432,0.292473,0.706599,0.447947,0.433347,0.988545,0.730081,0.837547,0.652737,0.187345,0.0519298,0.910081,0.103377,0.299315,0.707581,0.187452,0.0888857,0.72477,0.295984,0.347388,0.0654385,0.339839,0.702183,0.43021,0.585478,0.176548,0.107479,0.585019,0.642154,0.120194,0.787048,0.925805,0.56609,0.336646,0.728778,0.780647,0.20642,0.938977,0.339947,0.441478,0.388392,0.309303,0.432238,0.110798,0.40676,0.215666,0.400702,0.658766,0.869526,0.144896,0.597365,0.743385,0.0861573,0.670575,0.473019,0.919093,0.038072,0.40827,0.918078,0.548022,0.510436,0.40592,0.039472,0.606299,0.37646,0.552399,0.028236,0.467145,0.833314,0.802322,0.11426,0.501597,0.217216,0.420956,0.504219,0.432046,0.350125,0.945966,0.939741,0.491378,0.371224,0.821286,0.657684,0.604756,0.695135,0.47074,0.979624,0.890737,0.7956,0.403686,0.921395,0.979429,0.487769,0.261746,0.961273,0.251649,0.414664,0.529164,0.803084,0.234618,0.0945849,0.199917,0.649895,0.0264367,0.275104,0.245932,0.634523,0.826656,0.0878928,0.427933,0.342775,0.741103,0.851844,0.624248,0.181808,0.680072,0.0463583,0.702202,0.793236,0.976211,0.0287156,0.711262,0.262774,0.666336,0.185592,0.546314,0.170759,0.943543,0.304315,0.914211,0.368886,0.548028,0.083508,0.34446,0.165202,0.234343,0.507748,0.440773,0.384407,0.969595,0.391659,0.794054,0.532028,0.956188,0.535081,0.556778,0.00576359,0.637979,0.031141,0.142392,0.530604,0.0314626,0.27585,0.170196,0.956459,0.0698278,0.2868,0.0973142,0.200389,0.0418268,0.318331,0.400658,0.184412,0.807511,0.321879,0.431652,0.974851,0.872969,0.341278,0.462373,0.562187,0.797299,0.337342,0.712718,0.256291,0.448364,0.601807,0.394842,0.515879,0.637123,0.178888,0.795325,0.782532,0.492262,0.22888,0.0241636,0.17754,0.744679,0.489646,0.763005,0.442435,0.881299,0.916257,0.533097,0.0120738,0.419444,0.512822,0.753777,0.283026,0.328531,0.693339,0.148814,0.819106,0.9777,0.180936,0.135657,0.838201,0.68092,0.250448,0.435614,0.536042,0.853391,0.175019,0.226133,0.0271656,0.992575,0.901895,0.87782,0.585179,0.16216,0.567003,0.0805249,0.554754,0.415672,0.630883,0.156817,0.728242,0.567058,0.516312,0.54222,0.50168,0.613893,0.853636,0.128588,0.905748,0.133655,0.218728,0.836546,0.98246,0.110254,0.0341015,0.247873,0.525407,0.87226,0.87202,0.784969,0.757065,0.426092,0.657402,0.101804,0.806106,0.0622583,0.601297,0.489372,0.465115,0.526891,0.166591,0.0530544,0.12542,0.0129302,0.0798971,0.371517,0.959416,0.411202,0.0422712,0.690448,0.225034,0.0341942,0.05946,0.884435,0.477733,0.114314,0.818186,0.432912,0.591451,0.759918,0.902102,0.819618,0.432455,0.787496,0.518164,0.599425,0.981171,0.508055,0.82934,0.915449,0.650802,0.628461,0.149167,0.112276,0.752216,0.525214,0.725862,0.497657,0.628566,0.076237,0.185816,0.444847,0.384115,0.983395,0.045698,0.832915,0.164955,0.129033,0.880043,0.921657,0.0148731,0.639221,0.61423,0.561868,0.419017,0.108095,0.910099,0.815964,0.276749,0.164624,0.968673,0.0150296,0.99737,0.741511,0.0902223,0.41633,0.964012,0.801744,0.392595,0.809537,0.109848,0.737812,0.414095,0.855836,0.765362,0.562609,0.245241,0.160648,0.812136,0.482561,0.614292,0.610179,0.18227,0.822132,0.296876,0.428354,0.391374,0.348462,0.229808,0.999885,0.533883,0.621662,0.0169242,0.813878,0.64525,0.118377,0.49692,0.750422,0.58153,0.780301,0.352331,0.616906,0.386138,0.198291,0.582679,0.170172,0.909845,0.82231,0.154166,0.795978,0.229713,0.124085,0.161034,0.704109,0.0360485,0.765425,0.545591,0.0669171,0.551737,0.0452532,0.637609,0.799059,0.0675255,0.272882,0.292631,0.611802,0.35268,0.264376,0.0793243,0.598115,0.978482,0.481689,0.00442612,0.409095,0.688166,0.924091,0.210377,0.131646,0.86829,0.573122,0.573955,0.397446,0.70756,0.511175,0.285249,0.725206,0.217679,0.0108731,0.607157,0.607391,0.800521,0.847215,0.665274,0.382957,0.896588,0.678135,0.28791,0.864444,0.677429,0.283616,0.961591,0.828649,0.353283,0.13206,0.965976,0.266748,0.631274,0.337452,0.726576,0.0674061,0.334729,0.759412,|0.988155,0.120325,0.0710902,0.10362,0.175776,0.679788,0.0349137,0.747982,0.741917,0.940271,0.321281,0.187634,0.557169,0.117764,0.0637325,0.364735,0.849114,0.844616,0.046011,0.705111,0.739283,0.694684,0.377177,0.116596,0.373876,0.968932,0.328242,0.492608,0.532657,0.811761,0.885519,0.44989,0.760032,0.502881,0.318782,0.623931,0.133298,0.286318,0.261091,0.0658981,0.572761,0.449211,0.260975,0.0256492,0.946919,0.888219,0.799098,0.487056,0.309763,0.162436,0.516028,0.942922,0.182825,0.843955,0.743333,0.173913,0.69047,0.633326,0.384491,0.304829,0.196851,0.646812,0.65919,0.707658,0.748679,0.470534,0.0927895,0.78413,0.94052,0.275766,0.124826,0.516746,0.6368,0.625215,0.775288,0.485144,0.464958,0.216231,0.632843,0.475181,0.738053,0.949447,0.296342,0.76836,0.550232,0.361829,0.429558,0.198514,0.807622,0.0850493,0.624068,0.16754,0.416646,0.944542,0.292772,0.347445,0.569749,0.19362,0.556358,0.779845,0.0168384,0.626163,0.786795,0.990347,0.6753,0.416286,0.368036,0.132852,0.8691,0.868091,0.373429,0.0246666,0.104321,0.918332,0.919532,0.272575,0.195485,0.69201,0.710062,0.558118,0.321238,0.291888,0.96845,0.900051,0.523305,0.85649,0.77013,0.383668,0.936258,0.657897,0.565416,0.418929,0.867939,0.218374,0.0744814,0.513421,0.97522,0.760489,0.939368,0.501373,0.0602323,0.63974,0.159557,0.0599427,0.251274,0.314191,0.678889,0.787205,0.0977651,0.799608,0.538985,0.0619492,0.697641,0.965883,0.749484,0.194016,0.151035,0.911711,0.490865,0.323962,0.61607,0.936314,0.778184,0.731393,0.0906383,0.494965,0.498073,0.823747,0.0753502,0.110067,0.479211,0.80864,0.489075,0.251198,0.33004,0.583849,0.972122,0.475523,0.134351,0.41246,0.798482,0.0136863,0.228684,0.0203622,0.842586,0.798491,0.512851,0.365057,0.651811,0.697771,0.141691,0.643378,0.261532,0.0537292,0.765875,0.102432,0.0301278,0.678578,0.87012,0.519418,0.185696,0.436738,0.393805,0.797853,0.861972,0.189584,0.591066,0.0210806,0.230641,0.163896,0.52265,0.091782,0.804129,0.873706,0.499471,0.0997534,0.905648,0.487711,0.919161,0.0754082,0.361084,0.971126,0.919333,0.63351,0.487052,0.131007,0.400084,0.0743362,0.992627,0.440735,0.0210174,0.20892,0.83848,0.697487,0.515576,0.565301,0.596987,0.390446,0.425495,0.778528,0.323559,0.90049,0.744223,0.331999,0.287614,0.285273,0.427685,0.801979,0.0355262,0.235238,0.175434,0.922661,0.848516,0.996548,0.460567,0.379699,0.694397,0.177809,0.805939,0.295204,0.871492,0.660257,0.699067,0.508597,0.0199661,0.944518,0.0202253,0.70654,0.364582,0.308522,0.190091,0.945419,0.967001,0.572116,0.499076,0.33596,0.99168,0.825122,0.615613,0.296463,0.329288,0.861533,0.816588,0.252536,0.481621,0.148554,0.580907,0.595393,0.604229,0.239331,0.366914,0.264988,0.221586,0.451288,0.240689,0.476342,0.847285,0.223126,0.316033,0.808446,0.834153,0.653556,0.533524,0.759004,0.111036,0.450346,0.275169,0.521024,0.468047,0.85765,0.413934,0.492323,0.799351,0.523482,0.661939,0.47702,0.0754752,0.76432,0.173031,0.526426,0.893232,0.821622,0.562891,0.382545,0.835671,0.806542,0.587703,0.942239,0.456978,0.524019,0.300241,0.910046,0.381318,0.527934,0.518637,0.464045,0.32928,0.0301812,0.325522,0.325894,0.16582,0.0940127,0.962685,0.795236,0.865436,0.68788,0.542207,0.699939,0.41914,0.481561,0.277621,0.300053,0.656218,0.492192,0.674029,0.243769,0.474596,0.969109,0.15868,0.605774,0.10168,0.6683,0.728771,0.20328,0.923444,0.659781,0.249377,0.656346,0.0805278,0.116685,0.97235,0.126779,0.152618,0.640405,0.554044,0.343889,0.393524,0.429268,0.77674,0.022885,0.301632,0.759472,0.690022,0.3236,0.850877,0.158426,0.831774,0.334442,0.111976,0.128448,0.487272,0.263617,0.989489,0.104749,0.52933,0.0903071,0.0608612,0.730005,0.949507,0.418861,0.548134,0.889203,0.869106,0.723536,0.928192,0.963425,0.493485,0.598377,0.584451,0.286502,0.112086,0.463085,0.991099,0.569528,0.38468,0.36218,0.653836,0.870823,0.458517,0.489065,0.646135,0.963312,0.260045,0.141827,0.984706,0.813511,0.532723,0.680556,0.881048,0.314238,0.0630987,0.525306,0.364013,0.733902,0.668126,0.968473,0.348012,0.393266,0.348342,0.550616,0.450322,0.621632,0.812046,0.172372,0.457221,0.987253,0.801358,0.470954,0.257675,0.870185,0.564389,0.235597,0.673868,0.262538,0.643408,0.255635,0.319718,0.519958,0.956793,0.0483629,0.0963388,0.47729,0.858385,0.898173,0.701377,0.0863724,0.572148,0.615793,0.498343,0.0323008,0.353589,0.326713,0.922579,0.5252,0.210986,0.954127,0.731169,0.467674,0.766646,0.812193,0.23372,0.554641,0.901604,0.948761,0.178463,0.916858,0.862155,0.192085,0.774798,0.503473,0.621036,0.157573,0.68163,0.156033,0.372405,0.813507,0.182577,0.764107,0.240636,0.858628,0.325243,0.0107946,0.671228,0.255659,0.81574,0.636008,0.11433,0.918571,0.11097,0.820917,0.837096,0.659061,0.075316,0.638397,0.516373,0.075399,0.0787123,0.317492,0.589919,0.0881438,0.394726,0.452254,0.103117,0.441852,0.895545,0.214031,0.422049,0.724369,0.804647,0.148807,0.324478,0.0345341,0.869567,0.209055,0.727419,0.858571,0.908446,0.223323,0.951591,0.919633,0.00850838,0.764076,0.428307,0.631392,0.414351,0.648685,0.925213,0.653999,0.638712,0.855944,0.968887,0.327953,0.642086,0.366661,0.322716,0.993938,0.335118,0.122309,0.991407,0.674379,0.590204,0.175798,0.800718,0.701075,0.272037,0.180051,0.875799,0.194854,0.585113,0.787759,0.347238,0.847512,0.366041,0.312191,0.274047,0.197738,0.635263,0.0103784,0.282719,0.349056,0.040637,0.0150136,0.483654,0.170277,0.864541,0.0728897,0.267248,0.574913,0.324207,0.746474,0.255473,0.598222,0.0128712,0.672063,0.983703,0.123515,0.532878,0.138863,0.679286,0.195118,0.623558,0.00674587,0.487724,0.691505,0.546341,0.232897,0.593136,0.316745,0.933495,0.994075,0.906178,0.410129,0.569715,0.639451,0.640145,0.876109,0.770406,0.300375,0.925528,0.0965779,0.291947,0.15167,0.991414,0.744079,0.0179923,0.771388,0.119725,0.442177,0.716409,0.452001,0.633718,0.847885,0.494344,0.309041,0.69684,0.503085,0.377751,0.799505,0.114933,0.288091,0.538527,0.594059,0.807271,0.697476,0.834616,0.647571,0.875907,0.614047,0.567363,0.656622,0.0603276,0.225485,0.999268,0.770158,0.865276,0.722205,0.309813,0.152974,0.348473,0.945568,0.00416678,0.924864,0.666486,0.912722,0.815326,0.0731143,0.993538,0.628779,0.824442,0.295967,0.893943,0.745282,0.650411,0.131346,0.701017,0.851065,0.574649,0.00128919,0.738321,0.0994753,0.497652,0.140048,0.95946,0.740791,0.256939,0.139823,0.219531,0.698724,0.562623,0.811713,0.769547,0.241346,0.871551,0.482928,0.205085,0.218609,0.330068,0.102695,0.416517,0.511569,0.843919,0.327754,0.173658,0.326958,0.636341,0.799725,0.0320984,0.71816,0.207988,0.903114,0.0438572,0.47759,0.549818,0.134581,0.784216,0.92844,0.322651,0.772474,0.45926,0.482628,0.0369571,0.301429,0.196732,0.250162,0.355883,0.358288,0.107941,0.523174,0.951057,0.585109,0.989555,0.414462,0.460411,0.366719,0.762667,0.541001,0.730192,0.449281,0.498215,0.373693,0.881084,0.450745,0.0109463,0.406999,0.892473,0.669141,0.974316,0.883638,0.296453,0.443107,0.0391542,0.42091,0.347952,0.685651,0.444267,0.30386,0.153138,0.58849,0.788711,0.292593,0.877957,0.423862,0.481488,0.847593,0.27133,0.805248,0.700411,0.34869,0.760622,0.428633,0.180739,0.436584,0.218365,0.473002,0.0486645,0.636958,0.512767,0.508696,0.248099,0.990261,0.510953,0.999477,0.629301,0.241464,0.862387,0.277861,0.0551823,0.297734,0.110191,0.18829,0.173037,0.232581,0.325751,0.345869,0.848184,0.941182,0.148224,0.217961,0.159445,0.427875,0.550184,0.258166,0.890074,0.82717,0.284432,0.0604705,0.86974,0.422819,0.828739,0.527982,0.35552,0.500758,0.144564,0.479428,0.282115,0.939399,0.179275,0.362903,0.789167,0.646955,0.833954,0.541264,0.503143,0.717727,0.669176,0.69888,0.011975,0.538834,0.152254,0.428481,0.568481,0.796528,0.660773,0.766758,0.21574,0.142009,0.692367,0.638628,0.18193,0.327043,0.283091,0.0294653,0.58021,0.124177,0.256915,0.603948,0.938817,0.448821,0.0462515,0.715457,0.309608,0.199903,0.790497,0.0974135,0.159065,0.700882,0.574919,0.159039,0.304336,0.471651,0.110273,0.741063,0.431042,0.703584,0.86598,0.143873,0.00469738,0.522824,0.832205,0.89894,0.142593,0.273853,0.954483,0.773034,0.189976,0.316535,0.56929,0.981403,0.30558,0.225611,0.27839,0.0128207,0.974928,0.667924,0.938941,0.833523,0.22178,0.308285,0.740228,0.691158,0.743872,0.0714309,0.246375,0.753491,0.201647,0.721587,0.720633,0.980502,0.339185,0.553871,0.344545,0.95935,0.468129,0.923829,0.476632,0.893431,0.160628,0.566045,0.501602,0.730423,0.0977275,0.728844,0.815798,0.0941173,0.726993,0.67747,0.863675,0.283221,0.545192,0.139241,0.404126,0.927575,0.825644,0.561757,0.375252,0.115392,0.944984,0.915328,0.198454,0.860076,0.586307,0.548854,0.823954,0.806966,0.639494,0.595179,0.472559,0.172362,0.472514,0.794075,0.732947,0.281884,0.757405,0.465564,0.664222,0.0109833,0.508002,0.238088,0.844418,0.0353802,0.713555,0.20973,0.216139,0.476577,0.780244,0.843436,0.106653,0.203043,0.00372511,0.0280332,0.48819,0.736972,0.365514,0.553949,0.879654,0.0380763,0.223163,0.92111,0.772893,0.869923,0.0268123,0.667541,0.698101,0.216042,0.630534,0.340195,0.905034,0.904085,0.29411,0.55056,0.160182,0.44313,0.236443,0.127617,0.774939,0.57055,0.420475,0.452301,0.957696,0.671336,0.972894,0.438917,0.320425,0.0528934,0.88252,0.684816,0.0616744,0.831253,0.3994,0.122664,|0.0483201,0.943643,0.539121,0.948331,0.804054,0.531289,0.318606,0.445863,0.200549,0.808761,0.141577,0.943742,0.410715,0.599822,0.784639,0.23344,0.449075,0.0500079,0.618659,0.220052,0.62007,0.0756272,0.357856,0.351216,0.41999,0.00292093,0.575675,0.614537,0.0950171,0.0070985,0.821066,0.239415,0.807402,0.726581,0.870068,0.462557,0.85481,0.0918047,0.471239,0.133833,0.811284,0.923999,0.306251,0.959744,0.174381,0.580119,0.977149,0.241322,0.815533,0.957246,0.321792,0.438277,0.490364,0.155099,0.330929,0.818515,0.323951,0.286682,0.586227,0.348549,0.745487,0.424855,0.146731,0.0749683,0.157828,0.957431,0.32149,0.0851587,0.813967,0.860286,0.540532,0.894362,0.687137,0.716305,0.768445,0.74578,0.549704,0.324143,0.954047,0.143496,0.639247,0.846923,0.516473,0.0659956,0.229138,0.663089,0.562199,0.345616,0.56929,0.952048,0.573488,0.531729,0.208144,0.628065,0.531661,0.937572,0.48936,0.794431,0.905626,0.398026,0.362668,0.229875,0.592043,0.736638,0.84623,0.0982963,0.560637,0.0661204,0.967151,0.169959,0.430812,0.0140371,0.467569,0.269108,0.531174,0.442316,0.227286,0.975524,0.168095,0.37558,0.854556,0.994487,0.0244787,0.475077,0.00464261,0.943493,0.348364,0.265014,0.854499,0.735317,0.902516,0.133802,0.927257,0.799875,0.377508,0.502433,0.53418,0.361918,0.807661,0.172214,0.252147,0.0791827,0.406113,0.0525498,0.379002,0.226296,0.739295,0.239275,0.389256,0.49038,0.386393,0.725008,0.211084,0.10724,0.705458,0.387363,0.385072,0.495115,0.785787,0.88042,0.766451,0.374487,0.126323,0.895424,0.895495,0.786296,0.536388,0.506845,0.0199414,0.702171,0.0312783,0.288235,0.159359,0.322328,0.674451,0.332952,0.923089,0.110803,0.248341,0.752799,0.53783,0.563932,0.411951,0.114917,0.974623,0.326778,0.179833,0.634888,0.325472,0.142538,0.899196,0.687908,0.0155946,0.143093,0.00339264,0.0886019,0.26065,0.774058,0.991995,0.549842,0.537378,0.839937,0.951918,0.555795,0.584761,0.0164179,0.101098,0.0720449,0.331078,0.165609,0.460893,0.498658,0.68307,0.903023,0.178643,0.225348,0.95026,0.141939,0.415188,0.434761,0.530193,0.569232,0.409691,0.369277,0.677403,0.049602,0.456834,0.683942,0.488263,0.532179,0.717574,0.7972,0.0610616,0.836276,0.606106,0.546356,0.187518,0.948586,0.68943,0.471965,0.591999,0.900465,0.422159,0.0524128,0.163728,0.249035,0.295525,0.683693,0.198245,0.366345,0.0894041,0.441171,0.32933,0.952557,0.620885,0.482174,0.278781,0.997243,0.119336,0.0199881,0.43296,0.156144,0.135077,0.521266,0.836237,0.111361,0.166804,0.021843,0.916378,0.712107,0.392109,0.246507,0.994947,0.0649784,0.791263,0.836678,0.165808,0.590148,0.195302,0.805524,0.39824,0.0864772,0.379965,0.878694,0.184407,0.296475,0.340637,0.284228,0.941988,0.482219,0.506879,0.766357,0.210058,0.477327,0.773541,0.607786,0.842691,0.536048,0.213966,0.744125,0.157718,0.320516,0.960414,0.997032,0.943155,0.347321,0.0173917,0.157995,0.891701,0.587658,0.132981,0.236923,0.249011,0.485886,0.254402,0.540098,0.53458,0.493232,0.678913,0.951913,0.230468,0.100013,0.524805,0.859945,0.708308,0.27971,0.659243,0.570713,0.905748,0.579494,0.215635,0.763576,0.222343,0.0704264,0.563335,0.4572,0.664684,0.661033,0.847152,0.451576,0.84173,0.453981,0.0248927,0.581061,0.71152,0.378248,0.0478759,0.0374915,0.351635,0.605974,0.80228,0.340017,0.861953,0.246866,0.622758,0.0180154,0.348027,0.044829,0.682578,0.424122,0.911028,0.503883,0.555803,0.677535,0.966499,0.403116,0.202467,0.131111,0.127143,0.757343,0.480996,0.911504,0.139207,0.601553,0.916978,0.590025,0.671392,0.157672,0.322143,0.0108113,0.647456,0.388993,0.596966,0.926397,0.865999,0.104123,0.329509,0.929601,0.59457,0.123972,0.873055,0.056936,0.00932652,0.134421,0.526115,0.186159,0.845125,0.598651,0.075097,0.75393,0.0639924,0.316805,0.124401,0.110549,0.0643036,0.0887508,0.569242,0.120262,0.760673,0.597329,0.973021,0.610907,0.751903,0.139307,0.542704,0.0920942,0.458253,0.456136,0.698156,0.781404,0.476275,0.583877,0.092172,0.416413,0.50157,0.548706,0.676756,0.632532,0.718303,0.280712,0.869772,0.218591,0.0966554,0.910092,0.491508,0.020206,0.574477,0.551482,0.276739,0.709611,0.774203,0.514343,0.280736,0.832594,0.580265,0.990863,0.758908,0.958592,0.980334,0.994067,0.799302,0.316917,0.230004,0.198678,0.579258,0.324902,0.654228,0.721782,0.217623,0.301582,0.883196,0.63703,0.0752117,0.314666,0.967866,0.446806,0.730118,0.662685,0.381535,0.394506,0.620102,0.631477,0.922415,0.206594,0.365414,0.158879,0.459492,0.0521865,0.21717,0.393743,0.991969,0.785917,0.459187,0.182011,0.0246364,0.889902,0.593108,0.29588,0.549473,0.132683,0.855189,0.268215,0.251338,0.418016,0.697675,0.388934,0.604918,0.144451,0.524475,0.200512,0.344416,0.582312,0.628246,0.435336,0.324982,0.665278,0.300444,0.814121,0.797178,0.698882,0.509281,0.218211,0.231281,0.46366,0.648925,0.56952,0.494644,0.0286798,0.536819,0.544402,0.651092,0.825816,0.785584,0.538719,0.776097,0.54019,0.319619,0.183268,0.163036,0.157319,0.360862,0.426791,0.887308,0.743443,0.291982,0.442474,0.300726,0.983617,0.721156,0.363657,0.170291,0.788853,0.702119,0.160027,0.149883,0.844503,0.452655,0.880854,0.882221,0.879327,0.500052,0.201738,0.719809,0.390017,0.798593,0.554179,0.298888,0.808537,0.811041,0.00486034,0.665886,0.145487,0.0692341,0.405522,0.0566574,0.0376083,0.691132,0.4666,0.935638,0.370777,0.508024,0.644428,0.0340863,0.306961,0.651606,0.774929,0.633728,0.25502,0.46796,0.796503,0.969653,0.773575,0.387833,0.938213,0.778248,0.14684,0.130734,0.205201,0.808024,0.378122,0.98298,0.337526,0.330346,0.139334,0.597831,0.31365,0.0581124,0.840289,0.220175,0.468108,0.452604,0.0396194,0.66274,0.404722,0.524596,0.469763,0.247242,0.669917,0.274852,0.42435,0.869142,0.465536,0.951013,0.585089,0.740217,0.652608,0.794642,0.918004,0.522341,0.66208,0.60862,0.179237,0.0950782,0.0982141,0.0450194,0.960142,0.095341,0.22009,0.484359,0.748768,0.572855,0.411136,0.731366,0.37946,0.836105,0.893334,0.1279,0.44766,0.276028,0.0893308,0.172366,0.652333,0.234547,0.781101,0.144624,0.418524,0.0562982,0.985522,0.579121,0.899232,0.345295,0.114428,0.139518,0.554665,0.00952119,0.0506243,0.543019,0.887221,0.957773,0.411275,0.268437,0.151877,0.693928,0.485291,0.830008,0.952084,0.706234,0.236289,0.603836,0.0168184,0.523914,0.712023,0.891444,0.563028,0.419723,0.119466,0.483544,0.675244,0.579842,0.931265,0.931757,0.311465,0.432609,0.847158,0.00986981,0.0696616,0.343863,0.654041,0.829408,0.341018,0.631729,0.832435,0.404808,0.635168,0.674074,0.00918192,0.817989,0.720641,0.712305,0.142632,0.265464,0.735829,0.627018,0.310788,0.0607046,0.641716,0.552359,0.80636,0.745717,0.339466,0.362461,0.210732,0.637574,0.125411,0.656005,0.298943,0.679974,0.479989,0.593305,0.434727,0.500606,0.00426698,0.533383,0.795499,0.109063,0.484702,0.75054,0.103061,0.0042758,0.202302,0.791782,0.146161,0.744178,0.13798,0.55126,0.696101,0.95016,0.226212,0.394958,0.453738,0.322264,0.502421,0.741678,0.983079,0.456013,0.667246,0.696938,0.482543,0.929922,0.254307,0.754524,0.264,0.088559,0.71009,0.601972,0.587504,0.582448,0.623931,0.366473,0.975821,0.798431,0.107445,0.168984,0.605812,0.924654,0.323188,0.371773,0.0246788,0.440554,0.256905,0.566582,0.292266,0.53843,0.205499,0.000516236,0.0895494,0.54109,0.0621932,0.365461,0.768546,0.0993515,0.221821,0.59408,0.4669,0.00392336,0.372461,0.0139526,0.388427,0.213289,0.566277,0.237422,0.975988,0.641025,0.191317,0.678507,0.767402,0.710732,0.402989,0.0580998,0.59341,0.431873,0.767892,0.282281,0.016122,0.717497,0.174206,0.647308,0.443647,0.934167,0.185262,0.106122,0.476155,0.933547,0.679665,0.00869375,0.136119,0.308782,0.112711,0.0987111,0.927922,0.29249,0.712165,0.543906,0.435493,0.486201,0.0370033,0.762523,0.553917,0.497305,0.539568,0.928566,0.53149,0.383726,0.0945414,0.899059,0.907079,0.21746,0.536991,0.349707,0.537021,0.861116,0.182701,0.766669,0.134228,0.949336,0.476576,0.996652,0.208018,0.130516,0.0677461,0.0655524,0.686394,0.0856404,0.959787,0.881798,0.384229,0.1989,0.966166,0.491925,0.42849,0.382363,0.404311,0.302112,0.963595,0.51016,0.576222,0.482228,0.724179,0.775553,0.9949,0.437794,0.962874,0.518033,0.664833,0.685631,0.796299,0.685149,0.762453,0.124453,0.135544,0.292051,0.601415,0.164189,0.659254,0.608801,0.416231,0.499775,0.345499,0.238496,0.98874,0.474425,0.103661,0.695083,0.636393,0.171151,0.331111,0.11882,0.901343,0.0297694,0.866914,0.0832898,0.319876,0.580069,0.125005,0.920171,0.790841,0.0111393,0.733407,0.648098,0.698834,0.444806,0.50874,0.465808,0.578677,0.808712,0.783955,0.776694,0.919428,0.517414,0.549577,0.388326,0.422462,0.477469,0.748064,0.275892,0.173914,0.603632,0.587607,0.912832,0.0590786,0.775969,0.295457,0.0660012,0.409122,0.563374,0.286753,0.758485,0.992113,0.0220393,0.529539,0.193436,0.062247,0.802306,0.631004,0.335107,0.0535118,0.608777,0.12285,0.929717,0.592301,0.240606,0.696833,0.789767,0.143245,0.607945,0.325494,0.924524,0.946344,0.937222,0.868662,0.605187,0.834351,0.409438,0.865598,0.89917,0.558014,0.354369,0.0806847,0.141035,0.436146,0.465753,0.648249,0.305166,0.615238,0.527074,0.289581,0.507323,0.44839,0.899474,0.558634,0.241604,0.336346,0.0441154,0.326098,0.670159,0.405057,0.807501,0.844447,0.659555,0.687348,0.571642,0.939974,0.53549,0.919545,0.947696,0.801831,0.870828,0.589811,0.44681,0.0368743,|0.570765,0.690208,0.827046,0.578883,0.391127,0.582723,0.934502,0.980202,0.992742,0.656428,0.814526,0.0685838,0.485756,0.304276,0.688426,0.554081,0.1688,0.478946,0.338669,0.331466,0.691875,0.885252,0.111173,0.0420517,0.878996,0.467607,0.861382,0.572706,0.654068,0.941112,0.587989,0.572308,0.46388,0.276367,0.940155,0.115852,0.540991,0.284461,0.541955,0.503337,0.06372,0.489548,0.286278,0.753034,0.93031,0.0170537,0.640384,0.0481441,0.996578,0.872089,0.991659,0.604748,0.0510333,0.432774,0.880548,0.304203,0.127358,0.515935,0.69005,0.0971713,0.170941,0.86277,0.764877,0.965072,0.542551,0.547122,0.635172,0.330299,0.164108,0.231575,0.0716978,0.443955,0.841288,0.371753,0.975677,0.0590715,0.776028,0.978937,0.548937,0.528127,0.0260211,0.381182,0.942972,0.582342,0.343083,0.27309,0.37283,0.261297,0.704691,0.692098,0.193289,0.657412,0.0449857,0.930556,0.260682,0.809981,0.974834,0.979299,0.762891,0.501254,0.310335,0.8656,0.100947,0.680105,0.812536,0.703541,0.160988,0.831536,0.834134,0.643155,0.718448,0.63783,0.367909,0.693493,0.818267,0.973466,0.541263,0.406984,0.0876035,0.0197855,0.0325288,0.387934,0.213429,0.85319,0.503122,0.0338449,0.732988,0.598394,0.980235,0.728773,0.885702,0.758022,0.458029,0.874508,0.82039,0.823675,0.977264,0.143657,0.369206,0.84213,0.29823,0.802736,0.195745,0.880897,0.925745,0.748047,0.71688,0.703361,0.527087,0.646403,0.853688,0.0492953,0.121388,0.465853,0.5669,0.550025,0.878506,0.643457,0.901829,0.813361,0.256391,0.834279,0.956021,0.41704,0.737737,0.408417,0.507122,0.418427,0.989492,0.375941,0.760192,0.234302,0.999172,0.122802,0.0264124,0.59241,0.613878,0.169054,0.436903,0.0679795,0.859311,0.162172,0.97613,0.0346337,0.453313,0.118382,0.316823,0.823336,0.346569,0.923179,0.779647,0.522507,0.555558,0.276227,0.506953,0.78622,0.185546,0.88146,0.756857,0.929354,0.162689,0.102092,0.160787,0.263909,0.792883,0.946469,0.203432,0.260175,0.917318,0.422836,0.346704,0.241886,0.776051,0.468829,0.0502962,0.525046,0.458437,0.28234,0.947585,0.266715,0.871092,0.0791687,0.0061723,0.0111706,0.0173581,0.998694,0.604377,0.742383,0.311239,0.333168,0.994995,0.393833,0.161045,0.197462,0.894065,0.484006,0.430965,0.973654,0.363399,0.0814679,0.717743,0.849882,0.803966,0.900697,0.711766,0.239295,0.827142,0.0462243,0.437842,0.765543,0.00459629,0.989882,0.391138,0.903027,0.195548,0.99791,0.107829,0.795446,0.944315,0.481703,0.254495,0.458113,0.166378,0.35595,0.969111,0.74427,0.963643,0.789686,0.617227,0.803993,0.356864,0.347719,0.431912,0.142796,0.306206,0.137364,0.748045,0.481345,0.174769,0.731393,0.0854788,0.393162,0.382017,0.41586,0.668206,0.00854462,0.0522754,0.272929,0.588815,0.61966,0.757079,0.613477,0.332692,0.458641,0.380139,0.0860233,0.932821,0.400781,0.917755,0.350653,0.213657,0.22078,0.641276,0.481219,0.63928,0.446479,0.124908,0.747812,0.139198,0.00872785,0.0406867,0.114944,0.803563,0.80084,0.474414,0.285298,0.582919,0.63884,0.21967,0.726418,0.937757,0.346741,0.259703,0.887904,0.737312,0.308361,0.370388,0.56682,0.187874,0.621951,0.612294,0.282121,0.175978,0.459734,0.508723,0.0946035,0.73646,0.36397,0.839326,0.344658,0.699879,0.930767,0.250127,0.572432,0.325787,0.00702006,0.540004,0.618435,0.822766,0.462398,0.147508,0.505887,0.432751,0.156602,0.660436,0.384484,0.623208,0.34285,0.151936,0.714113,0.743424,0.312852,0.00951326,0.572637,0.0790268,0.548576,0.24648,0.282895,0.252872,0.0714799,0.0633393,0.45512,0.236951,0.329027,0.239212,0.422377,0.787241,0.536926,0.203729,0.903545,0.324804,0.741212,0.932383,0.215047,0.761522,0.133938,0.895292,0.220275,0.352474,0.904532,0.315547,0.310787,0.642626,0.907272,0.430378,0.472256,0.211204,0.152484,0.0318928,0.157442,0.489606,0.407118,0.803876,0.150269,0.73092,0.553951,0.893524,0.781983,0.141617,0.483363,0.630682,0.0573483,0.881112,0.203662,0.845175,0.887526,0.866506,0.255754,0.518588,0.71946,0.829612,0.769589,0.692767,0.779093,0.679074,0.521652,0.438326,0.52348,0.745489,0.731613,0.773665,0.416666,0.117959,0.880275,0.496944,0.248924,0.956127,0.492037,0.878135,0.186422,0.412202,0.198378,0.686798,0.863725,0.673353,0.24887,0.687387,0.428577,0.711698,0.386237,0.0660204,0.557154,0.424012,0.968832,0.351724,0.210039,0.299373,0.214078,0.510715,0.773985,0.154923,0.433213,0.666064,0.983903,0.932992,0.707016,0.403135,0.977723,0.0607352,0.201389,0.169418,0.229383,0.692426,0.264523,0.324147,0.31233,0.625308,0.931207,0.845422,0.925648,0.627959,0.756285,0.12254,0.426742,0.609078,0.0271199,0.865386,0.305001,0.619777,0.193973,0.592673,0.196788,0.115905,0.978062,0.286859,0.734888,0.85253,0.765385,0.54877,0.0972097,0.760116,0.409662,0.0395543,0.46258,0.431018,0.660216,0.0871419,0.950778,0.694161,0.0358638,0.883088,0.291133,0.826783,0.880779,0.565767,0.0411372,0.73001,0.151971,0.805855,0.585973,0.120425,0.441985,0.564016,0.89755,0.541488,0.0615459,0.450302,0.0994323,0.597338,0.207436,0.280847,0.487209,0.307672,0.0541772,0.136581,0.104089,0.577477,0.761908,0.195643,0.405668,0.0435523,0.0786228,0.302321,0.0520759,0.97227,0.630074,0.847994,0.305756,0.816275,0.157198,0.175204,0.0456898,0.140305,0.107022,0.842992,0.631765,0.82759,0.899975,0.710323,0.0586123,0.322722,0.324709,0.567764,0.432516,0.161119,0.617298,0.0147159,0.198918,0.978702,0.103468,0.106212,0.542504,0.0918422,0.0131475,0.547197,0.610641,0.90908,0.0714462,0.151862,0.53485,0.662109,0.218178,0.149793,0.910388,0.271572,0.787127,0.0696236,0.575319,0.135931,0.219886,0.993877,0.496986,0.0400651,0.56592,0.530357,0.789471,0.0193962,0.534592,0.388081,0.25693,0.907567,0.984255,0.412447,0.872277,0.830409,0.0617204,0.160651,0.533017,0.600898,0.522591,0.0560551,0.948946,0.0835416,0.245134,0.844789,0.607402,0.188442,0.189982,0.253863,0.949835,0.439972,0.747365,0.16579,0.971747,0.450219,0.651786,0.0288832,0.611637,0.802142,0.0549505,0.587616,0.705055,0.0316103,0.417331,0.316471,0.682658,0.0636671,0.369206,0.489318,0.619902,0.249526,0.973946,0.286199,0.365741,0.776667,0.544818,0.599792,0.907905,0.796642,0.289401,0.253456,0.549334,0.130033,0.200134,0.653936,0.223907,0.360268,0.130878,0.862552,0.467262,0.791483,0.265246,0.700774,0.979054,0.662204,0.959737,0.715516,0.112291,0.573101,0.124798,0.134396,0.308424,0.624255,0.952778,0.920973,0.975849,0.546852,0.98101,0.243087,0.791696,0.84629,0.483503,0.887103,0.031382,0.501013,0.623068,0.213153,0.43081,0.984972,0.201222,0.114568,0.328233,0.37379,0.246716,0.244581,0.900494,0.263775,0.124814,0.767691,0.838479,0.533047,0.835804,0.0255277,0.447403,0.765621,0.989237,0.768297,0.832927,0.290111,0.561832,0.975203,0.660316,0.529587,0.508985,0.165673,0.727803,0.380904,0.571535,0.447182,0.54436,0.566325,0.938559,0.667813,0.586131,0.288041,0.529674,0.211861,0.809073,0.302873,0.563142,0.664682,0.536182,0.477135,0.493079,0.767645,0.976518,0.682482,0.226326,0.435476,0.0377762,0.122026,0.475974,0.810861,0.116838,0.00168461,0.559205,0.771186,0.721594,0.0189186,0.274701,0.622657,0.518892,0.038906,0.807179,0.173026,0.360894,0.79966,0.103767,0.557433,0.59982,0.79567,0.121854,0.612228,0.551034,0.575942,0.608399,0.528204,0.938033,0.135508,0.201957,0.23146,0.927656,0.920969,0.6579,0.966382,0.839964,0.494502,0.315657,0.0416636,0.91808,0.546876,0.65994,0.931642,0.704609,0.998003,0.507561,0.776305,0.56918,0.112894,0.736155,0.567755,0.168576,0.585981,0.631869,0.286647,0.965604,0.273605,0.846013,0.605502,0.25374,0.116109,0.397143,0.858317,0.255072,0.58631,0.618346,0.786567,0.62426,0.968501,0.662975,0.0960603,0.00111663,0.563587,0.322684,0.453953,0.134658,0.908703,0.622411,0.0279572,0.252998,0.49565,0.663836,0.600725,0.127983,0.188421,0.604335,0.322772,0.941047,0.456398,0.0497929,0.103877,0.841852,0.374091,0.21268,0.144744,0.459701,0.873238,0.583233,0.988381,0.391038,0.127755,0.0838473,0.784259,0.423007,0.770434,0.602352,0.778042,0.905318,0.37559,0.143049,0.209494,0.799143,0.151243,0.630705,0.676587,0.105508,0.046055,0.961792,0.772527,0.847291,0.194133,0.307364,0.0199784,0.580333,0.304482,0.63172,0.615709,0.593116,0.881694,0.121427,0.493339,0.0458875,0.356013,0.103555,0.734288,0.308725,0.771709,0.660464,0.139248,0.262418,0.906461,0.20937,0.246089,0.995469,0.118526,0.419134,0.0435448,0.35167,0.92182,0.951497,0.0258035,0.216083,0.0969462,0.204677,0.337327,0.886412,0.342312,0.94714,0.176712,0.470218,0.321161,0.282853,0.334932,0.703123,0.327712,0.324999,0.75387,0.172097,0.0445638,0.58143,0.0871407,0.288272,0.365272,0.140254,0.469116,0.0465521,0.910296,0.753169,0.660488,0.88852,0.558821,0.260137,0.681079,0.890959,0.135309,0.624917,0.226292,0.111559,0.718388,0.304541,0.192267,0.259837,0.34941,0.209554,0.285998,0.612932,0.772668,0.151237,0.74043,0.552086,0.973964,0.0151642,0.0547172,0.448873,0.711656,0.260883,0.845672,0.537553,0.895124,0.0727355,0.728653,0.416848,0.126371,0.884764,0.255553,0.585912,0.854469,0.745844,0.591118,0.74743,0.300726,0.601182,0.370806,0.921401,0.60044,0.812484,0.0389779,0.353955,0.940355,0.599749,0.618872,0.899817,0.999296,0.21198,0.714191,0.91849,0.0151198,0.459222,0.797498,0.378196,0.459641,0.1497,0.542272,0.846458,0.889643,0.377567,0.280445,0.192329,0.171905,0.160135,0.74404,0.224074,0.670161,0.150111,0.341378,0.694886,0.882407,0.278026,0.554856,0.901775,|0.503515,0.950153,0.613637,0.386825,0.867671,0.594047,0.611194,0.0400861,0.769464,0.981611,0.409552,0.52987,0.0623482,0.91105,0.0215832,0.0198914,0.185622,0.120946,0.0620722,0.974179,0.0971848,0.742708,0.338701,0.145627,0.636525,0.238815,0.278357,0.012743,0.0642575,0.318379,0.559115,0.950419,0.306157,0.685277,0.91079,0.00784689,0.473176,0.47601,0.0701263,0.657367,0.414989,0.311664,0.608666,0.97655,0.448915,0.143244,0.346395,0.210723,0.335583,0.0396948,0.251201,0.0114214,0.109404,0.629231,0.978712,0.831897,0.0146791,0.0675007,0.624378,0.939794,0.54819,0.272495,0.0243637,0.0989504,0.437655,0.450638,0.258161,0.219956,0.142905,0.950485,0.636391,0.61949,0.387192,0.518815,0.0873836,0.420864,0.926705,0.0343558,0.976233,0.867673,0.38666,0.114085,0.693907,0.234126,0.165395,0.561545,0.577843,0.873204,0.250426,0.168535,0.0133942,0.682716,0.773899,0.198796,0.331842,0.507545,0.154989,0.137854,0.841118,0.0572065,0.281053,0.801937,0.751847,0.907703,0.304912,0.966628,0.292425,0.488706,0.0514539,0.598533,0.0325769,0.737051,0.401221,0.462233,0.24169,0.854391,0.989349,0.149696,0.707464,0.818666,0.524403,0.0010761,0.776059,0.779616,0.181961,0.783573,0.717967,0.612784,0.852787,0.685851,0.00369227,0.643084,0.652222,0.815707,0.27945,0.324232,0.387193,0.0439363,0.542667,0.287672,0.48191,0.0862654,0.801399,0.192904,0.607081,0.0761744,0.388888,0.255944,0.207567,0.0738827,0.760966,0.236958,0.637614,0.597933,0.434933,0.326024,0.913185,0.410342,0.659538,0.115424,0.379532,0.999198,0.113071,0.725743,0.434951,0.797221,0.167341,0.0138943,0.548261,0.243197,0.877818,0.494741,0.257353,0.742829,0.502721,0.465377,0.13756,0.410964,0.531156,0.95801,0.983029,0.264894,0.488779,0.143494,0.414038,0.601255,0.890396,0.541161,0.0669177,0.269154,0.59182,0.117612,0.917605,0.27755,0.126779,0.801861,0.00184268,0.00641471,0.978347,0.115434,0.627492,0.964954,0.685598,0.846011,0.575948,0.155781,0.377849,0.887349,0.151726,0.236407,0.248393,0.0608137,0.225953,0.514723,0.744305,0.238615,0.354101,0.663412,0.94338,0.906731,0.990541,0.31358,0.842198,0.835164,0.627889,0.193579,0.278403,0.639231,0.983523,0.620021,0.566743,0.572559,0.701433,0.049549,0.572401,0.376203,0.203353,0.654419,0.772504,0.774497,0.476624,0.792528,0.148918,0.467682,0.238677,0.769587,0.181961,0.431407,0.12633,0.944612,0.663824,0.967954,0.376488,0.395891,0.150138,0.201825,0.940704,0.00970948,0.473499,0.521434,0.387246,0.753249,0.351324,0.225217,0.315856,0.664393,0.216737,0.476376,0.506899,0.601569,0.807493,0.509946,0.27391,0.199281,0.711852,0.66281,0.0540459,0.548342,0.256147,0.922962,0.510821,0.11627,0.923698,0.41959,0.161253,0.705938,0.301759,0.412876,0.600726,0.403782,0.706413,0.0945442,0.555317,0.895972,0.264698,0.717809,0.73392,0.50809,0.287791,0.875596,0.710933,0.347662,0.356739,0.140795,0.264685,0.988039,0.695433,0.753689,0.432222,0.01548,0.113079,0.717158,0.342268,0.463513,0.682932,0.612055,0.97841,0.946734,0.268695,0.778209,0.263976,0.294552,0.095935,0.979953,0.671326,0.141343,0.264098,0.740555,0.808628,0.895227,0.416058,0.707652,0.769592,0.971168,0.538935,0.589377,0.375579,0.0480999,0.57151,0.314664,0.589476,0.299663,0.305981,0.875121,0.450927,0.0391622,0.879175,0.124508,0.730415,0.833521,0.721927,0.791829,0.419879,0.208269,0.0471488,0.921491,0.902132,0.804915,0.331987,0.880132,0.860661,0.495567,0.663,0.6241,0.259916,0.966832,0.472612,0.902221,0.904431,0.346968,0.017666,0.859517,0.196802,0.647294,0.0587455,0.864051,0.192526,0.530438,0.961944,0.310782,0.279994,0.642601,0.215713,0.275029,0.406368,0.89415,0.16821,0.774531,0.177951,0.755717,0.636271,0.795568,0.59976,0.446748,0.832662,0.527078,0.866663,0.984677,0.373574,0.963459,0.713418,0.767671,0.609119,0.806554,0.167401,0.254177,0.720021,0.208499,0.73581,0.853746,0.769849,0.163454,0.235187,0.302335,0.443325,0.786046,0.399701,0.512636,0.925434,0.22482,0.933651,0.967907,0.874257,0.501556,0.422322,0.674385,0.759381,0.084736,0.148824,0.366013,0.261005,0.438815,0.971194,0.707812,0.810986,0.448202,0.508881,0.636324,0.273917,0.202658,0.702565,0.695327,0.204947,0.787192,0.164434,0.935315,0.993484,0.665685,0.481002,0.189158,0.489477,0.956001,0.350152,0.684009,0.73993,0.409357,0.924061,0.718519,0.428302,0.633893,0.999187,0.397169,0.126536,0.328526,0.685341,0.565015,0.233931,0.731179,0.136004,0.376359,0.0359902,0.290636,0.520218,0.310264,0.774577,0.39805,0.986127,0.365641,0.170369,0.599439,0.335976,0.476909,0.82162,0.105275,0.355673,0.0627272,0.493993,0.271526,0.692832,0.974144,0.378467,0.797725,0.97159,0.797703,0.141824,0.552648,0.538206,0.235116,0.570878,0.208619,0.377007,0.23665,0.709646,0.950507,0.996899,0.243497,0.515545,0.509474,0.901819,0.258417,0.99657,0.401857,0.41969,0.349301,0.15503,0.875988,0.172644,0.676096,0.260547,0.979425,0.226818,0.997737,0.186612,0.106408,0.139289,0.998524,0.418723,0.088753,0.39282,0.731151,0.0930495,0.689503,0.323632,0.117519,0.20658,0.534873,0.0632609,0.341908,0.273414,0.357759,0.573015,0.670228,0.937604,0.00918311,0.520219,0.320061,0.209893,0.943146,0.592682,0.598858,0.855202,0.67756,0.397339,0.140336,0.116857,0.420928,0.930439,0.595416,0.485173,0.215932,0.110451,0.368682,0.920439,0.844566,0.630626,0.0706823,0.615049,0.0667534,0.568397,0.444921,0.649289,0.628461,0.383561,0.981401,0.618373,0.723469,0.224263,0.965338,0.509387,0.954854,0.265056,0.231591,0.730733,0.131788,0.576858,0.313175,0.382074,0.100378,0.778633,0.817192,0.355314,0.971748,0.224128,0.0677288,0.71799,0.571569,0.0443327,0.60104,0.108583,0.638933,0.888366,0.0753475,0.848893,0.356424,0.176997,0.759762,0.619387,0.662749,0.841596,0.945222,0.171421,0.745642,0.0727933,0.0315316,0.668705,0.215643,0.489548,0.0370765,0.0842115,0.238313,0.542334,0.893267,0.577893,0.0536931,0.906952,0.00337648,0.796642,0.524678,0.929321,0.502178,0.63987,0.132673,0.581329,0.856051,0.942982,0.440902,0.182506,0.673254,0.833263,0.3728,0.950109,0.794988,0.673063,0.896229,0.0228471,0.749741,0.622847,0.220059,0.444891,0.258054,0.015662,0.0556073,0.0399612,0.0185186,0.946658,0.160875,0.389049,0.773347,0.798963,0.268087,0.219019,0.801729,0.9393,0.573289,0.319929,0.659361,0.604378,0.0899666,0.251909,0.906574,0.261949,0.915947,0.732459,0.496648,0.561768,0.701339,0.503099,0.40947,0.146933,0.709221,0.738564,0.776595,0.913916,0.0348722,0.293711,0.597554,0.806043,0.0564931,0.588711,0.595606,0.220292,0.191406,0.661096,0.178263,0.208283,0.564213,0.00520498,0.156623,0.481622,0.9561,0.487371,0.633502,0.810385,0.580667,0.564881,0.158103,0.186862,0.645017,0.882587,0.426878,0.531457,0.730249,0.800736,0.504542,0.320986,0.218292,0.48996,0.385795,0.797928,0.360972,0.69242,0.0910007,0.903056,0.0992358,0.482967,0.228451,0.625619,0.179529,0.973336,0.516658,0.106922,0.0756223,0.508057,0.0725367,0.378723,0.360854,0.523774,0.511453,0.650054,0.570694,0.171583,0.898639,0.819102,0.521937,0.273517,0.0423658,0.144913,0.0568238,0.509227,0.831444,0.923667,0.140398,0.600498,0.511251,0.294162,0.0567161,0.815755,0.311711,0.1944,0.00519371,0.86099,0.589554,0.050537,0.714581,0.770889,0.584479,0.834151,0.774836,0.263617,0.356073,0.681415,0.21684,0.648079,0.769601,0.412608,0.20342,0.569113,0.0612444,0.877804,0.790514,0.397407,0.111921,0.0759291,0.417655,0.786016,0.377594,0.933756,0.161468,0.0103571,0.0310958,0.616993,0.705542,0.881649,0.784068,0.297513,0.414281,0.811957,0.522737,0.248568,0.882448,0.888535,0.64993,0.117386,0.350823,0.0630759,0.828168,0.283412,0.905379,0.0168353,0.541832,0.623675,0.11239,0.87269,0.0231612,0.848093,0.264892,0.00417209,0.0543981,0.865247,0.255124,0.0969828,0.0475517,0.869097,0.58202,0.365786,0.363006,0.0430224,0.104675,0.716665,0.0897541,0.91327,0.583176,0.203484,0.599734,0.36974,0.805763,0.751284,0.956356,0.379273,0.666077,0.0791722,0.920023,0.490631,0.43003,0.464904,0.322857,0.484906,0.838162,0.204072,0.593692,0.865153,0.170036,0.39509,0.413872,0.842205,0.527771,0.586834,0.892177,0.617315,0.711287,0.0924755,0.16305,0.973242,0.657539,0.682377,0.244574,0.656386,0.452898,0.999304,0.865346,0.00422555,0.669575,0.274423,0.833793,0.421189,0.394383,0.879878,0.248224,0.449209,0.791378,0.297151,0.428873,0.408558,0.360002,0.239671,0.492438,0.18516,0.309029,0.869986,0.927999,0.748903,0.231003,0.378651,0.567585,0.57187,0.41098,0.685558,0.300419,0.723565,0.821584,0.876603,0.260694,0.41816,0.0416635,0.72173,0.558917,0.766092,0.676508,0.176468,0.0247718,0.497428,0.80898,0.343193,0.709271,0.998541,0.417317,0.93968,0.103512,0.0956111,0.984049,0.387634,0.969199,0.738795,0.243137,0.237794,0.757852,0.367068,0.817933,0.744267,0.270606,0.747921,0.382113,0.211706,0.461883,0.299018,0.0174667,0.749883,0.579059,0.320073,0.67302,0.853881,0.56336,0.212831,0.521717,0.517793,0.315095,0.841191,0.251345,0.390897,0.759703,0.286792,0.423224,0.140249,0.52936,0.215727,0.471389,0.987006,0.991621,0.791455,0.289694,0.217681,0.464891,0.551542,0.244971,0.535323,0.315404,0.24091,0.949442,0.143267,0.873556,0.044994,0.810039,0.0712613,0.672929,0.418487,0.104905,0.145046,0.986104,0.766093,0.721256,0.0166095,0.380561,0.182406,0.528283,0.496547,0.466667,0.164927,0.605589,0.0641953,0.0476503,0.61966,0.211454,0.651029,0.718412,0.589224,0.304772,0.882146,0.594548,0.936791,0.015827,|0.528513,0.0479856,0.319032,0.150104,0.289022,0.103273,0.000355244,0.377297,0.601327,0.464022,0.800769,0.23543,0.447988,0.680978,0.533875,0.0677082,0.134478,0.455407,0.749688,0.423212,0.624334,0.423298,0.769513,0.251075,0.994951,0.273977,0.816036,0.430708,0.433479,0.71829,0.566136,0.846664,0.793812,0.626958,0.0380264,0.440671,0.826857,0.624459,0.988211,0.442642,0.340751,0.548147,0.332101,0.63402,0.417402,0.155454,0.347737,0.0126184,0.312704,0.79492,0.807358,0.0187954,0.0367646,0.798395,0.24966,0.105029,0.156962,0.504523,0.645624,0.400639,0.580895,0.97572,0.574416,0.0249358,0.139962,0.695977,0.441523,0.118774,0.441687,0.1114,0.366947,0.942217,0.0809226,0.337555,0.120711,0.376775,0.461694,0.337806,0.996611,0.108504,0.379621,0.53201,0.775513,0.816661,0.841843,0.122714,0.977325,0.880218,0.826836,0.117058,0.0739619,0.21394,0.271903,0.157991,0.754574,0.714683,0.406382,0.672969,0.984041,0.428024,0.934884,0.494102,0.679319,0.577233,0.67527,0.970899,0.561213,0.185401,0.984837,0.111944,0.632291,0.298803,0.525731,0.310212,0.742439,0.575466,0.230382,0.803091,0.389977,0.754391,0.127961,0.620677,0.223189,0.88553,0.320358,0.893286,0.0378959,0.154853,0.226844,0.36072,0.980428,0.672716,0.787008,0.219119,0.967004,0.610281,0.154202,0.148981,0.0850158,0.735651,0.10026,0.639535,0.78992,0.97631,0.455635,0.837887,0.912135,0.760197,0.937298,0.120757,0.445794,0.912117,0.486496,0.472828,0.551042,0.932698,0.849267,0.391311,0.930467,0.67805,0.942173,0.436637,0.0390496,0.15233,0.5404,0.131806,0.83524,0.687352,0.559763,0.373283,0.0434329,0.8097,0.290936,0.411134,0.404296,0.751612,0.378869,0.352803,0.208642,0.976897,0.339665,0.436613,0.259896,0.56367,0.278477,0.304803,0.931292,0.216561,0.430804,0.768827,0.0328354,0.0868956,0.24038,0.116435,0.477359,0.236492,0.393434,0.0208766,0.291667,0.823584,0.936313,0.541279,0.883984,0.611109,0.245398,0.412433,0.573113,0.30562,0.0220773,0.184532,0.667303,0.168373,0.931636,0.593089,0.00377905,0.511835,0.832928,0.514676,0.34222,0.263267,0.732125,0.495078,0.708251,0.158924,0.496056,0.882178,0.787564,0.653538,0.866196,0.789867,0.0242115,0.1681,0.673484,0.559916,0.347024,0.670488,0.995011,0.836691,0.0251025,0.340707,0.923634,0.496488,0.729341,0.16699,0.891625,0.113994,0.92043,0.536251,0.139613,0.410558,0.666084,0.302106,0.372435,0.0286576,0.0551552,0.286454,0.190028,0.438613,0.19472,0.100993,0.457093,0.941082,0.479382,0.990445,0.715531,0.616812,0.967121,0.656418,0.813766,0.218621,0.200921,0.910771,0.907394,0.513931,0.477922,0.672056,0.834109,0.819628,0.667939,0.958895,0.673672,0.611993,0.625645,0.609562,0.840035,0.86479,0.0950001,0.62869,0.974776,0.0240807,0.578556,0.84677,0.219636,0.902176,0.649663,0.748329,0.798281,0.255199,0.854995,0.251084,0.814086,0.487732,0.720022,0.474009,0.607645,0.0905548,0.891177,0.723625,0.774127,0.964304,0.245097,0.298254,0.113074,0.751355,0.305023,0.360483,0.469049,0.618028,0.0960793,0.660284,0.292303,0.854674,0.157582,0.965217,0.0711626,0.477952,0.448783,0.699539,0.92551,0.128824,0.615419,0.952949,0.885737,0.424085,0.225142,0.388439,0.298663,0.173068,0.177956,0.749862,0.0741315,0.431501,0.828635,0.690453,0.111343,0.262238,0.00946766,0.125469,0.0710805,0.742471,0.64822,0.653773,0.489591,0.202485,0.0942876,0.633723,0.910693,0.617191,0.541565,0.843972,0.26768,0.499982,0.917389,0.142299,0.339376,0.444161,0.409536,0.846817,0.233635,0.471741,0.0851709,0.313824,0.758794,0.058772,0.406846,0.92838,0.433378,0.684172,0.594888,0.913928,0.0441483,0.324138,0.872688,0.396532,0.665537,0.132447,0.363115,0.482297,0.160662,0.126391,0.633802,0.843945,0.39829,0.718341,0.765027,0.778978,0.0277116,0.936456,0.0403288,0.568676,0.823717,0.469261,0.497976,0.952497,0.821416,0.390901,0.0376095,0.173755,0.472405,0.946516,0.363594,0.888891,0.80994,0.0965268,0.140118,0.461779,0.0551048,0.688451,0.981796,0.668189,0.198308,0.0451564,0.599285,0.473103,0.122847,0.207629,0.908062,0.773402,0.867419,0.571694,0.301487,0.547426,0.770875,0.407009,0.90638,0.0520252,0.268243,0.468005,0.912155,0.102824,0.265928,0.247425,0.0883302,0.222768,0.974502,0.911439,0.704124,0.271648,0.773844,0.0318418,0.587643,0.345844,0.0178599,0.175732,0.338097,0.281368,0.971349,0.655342,0.0534369,0.105902,0.70235,0.34097,0.866733,0.756943,0.62857,0.662203,0.345399,0.730587,0.615031,0.174969,0.0391014,0.779032,0.803858,0.117433,0.618389,0.0316969,0.494129,0.340521,0.636175,0.0159523,0.756337,0.427343,0.796325,0.793578,0.109923,0.575341,0.603503,0.847813,0.668913,0.513899,0.553788,0.0515664,0.0519037,0.530704,0.671696,0.570633,0.469392,0.143445,0.335957,0.876208,0.776552,0.558717,0.411713,0.403084,0.559705,0.84952,0.121937,0.407825,0.169382,0.334902,0.376677,0.711537,0.40948,0.143793,0.576117,0.970046,0.0859764,0.252739,0.186562,0.958058,0.109164,0.378063,0.16636,0.244227,0.960812,0.813881,0.0600969,0.0289236,0.697073,0.777455,0.488368,0.0769154,0.900583,0.448117,0.21802,0.0013051,0.20403,0.132296,0.5075,0.683266,0.737736,0.318453,0.185577,0.486149,0.630652,0.276616,0.353364,0.406343,0.350989,0.920001,0.404009,0.725146,0.326251,0.863175,0.430661,0.0073579,0.415829,0.290958,0.366597,0.893435,0.295476,0.788619,0.864235,0.890875,0.345541,0.19612,0.650955,0.989038,0.328466,0.271017,0.336675,0.288137,0.712326,0.2822,0.299017,0.115395,0.324022,0.785318,0.415997,0.403919,0.678873,0.00315088,0.105508,0.97106,0.697474,0.3286,0.715825,0.836799,0.74848,0.333284,0.735697,0.568818,0.193635,0.11511,0.1865,0.607028,0.385202,0.556736,0.0714994,0.61055,0.881071,0.276454,0.529413,0.387544,0.0415996,0.244644,0.790506,0.701087,0.412648,0.437337,0.704518,0.795184,0.2432,0.927156,0.616884,0.402673,0.580636,0.612883,0.936306,0.896671,0.532405,0.562993,0.336954,0.436224,0.515498,0.369231,0.021652,0.621343,0.754976,0.497338,0.338781,0.242344,0.260679,0.705849,0.953014,0.215298,0.92464,0.474046,0.0452049,0.507141,0.67408,0.776993,0.879935,0.862771,0.689108,0.762516,0.702862,0.320916,0.511083,0.263434,0.262243,0.90812,0.363621,0.392966,0.388921,0.945749,0.474047,0.553991,0.744527,0.888833,0.365057,0.0713761,0.857243,0.117402,0.374929,0.408114,0.0299209,0.614549,0.0114133,0.774707,0.226664,0.270501,0.467225,0.56396,0.174362,0.208972,0.305932,0.433282,0.447915,0.0141398,0.96018,0.593707,0.538571,0.77846,0.0653172,0.587433,0.36728,0.560798,0.683966,0.428871,0.980109,0.475178,0.819964,0.127289,0.513498,0.241175,0.270315,0.717586,0.466622,0.320733,0.650132,0.0758381,0.536468,0.522034,0.215084,0.905398,0.525859,0.889535,0.662681,0.321168,0.202466,0.806124,0.0443404,0.91486,0.445877,0.603515,0.946873,0.474036,0.0667186,0.636546,0.127517,0.275643,0.241783,0.0314268,0.0557286,0.531226,0.920015,0.441413,0.51187,0.875852,0.917995,0.0150225,0.240879,0.95241,0.400098,0.770155,0.95025,0.410791,0.558103,0.793145,0.324668,0.0261574,0.64412,0.118916,0.638036,0.856921,0.253091,0.626265,0.725382,0.377448,0.61709,0.44795,0.0622195,0.705356,0.441663,0.762804,0.621674,0.467145,0.661022,0.966005,0.806173,0.116337,0.0447932,0.267162,0.745967,0.726719,0.487265,0.369231,0.229783,0.533644,0.254735,0.414722,0.558374,0.551146,0.756989,0.73365,0.752415,0.0977669,0.801077,0.682697,0.192681,0.629863,0.340895,0.696244,0.900934,0.205706,0.939588,0.924063,0.620633,0.0601998,0.404728,0.547159,0.480034,0.691447,0.958423,0.453344,0.517397,0.39269,0.664694,0.749437,0.556747,0.808813,0.476864,0.0610125,0.22433,0.298445,0.997918,0.823553,0.873845,0.959474,0.0871783,0.855423,0.44023,0.178307,0.650031,0.600823,0.0848821,0.719183,0.721666,0.326749,0.231493,0.162563,0.142203,0.837711,0.818996,0.665457,0.0537657,0.103168,0.509207,0.102463,0.947416,0.922748,0.694725,0.398257,0.270325,0.358935,0.114283,0.420818,0.593763,0.409444,0.689775,0.899091,0.7409,0.168952,0.888619,0.450038,0.557338,0.240805,0.519511,0.41201,0.694192,0.499481,0.0420583,0.221105,0.645157,0.893663,0.0281115,0.642743,0.281684,0.0385695,0.407015,0.13342,0.884439,0.0942459,0.294231,0.382197,0.797959,0.327991,0.764682,0.488679,0.92632,0.355317,0.606371,0.931661,0.308154,0.629288,0.52654,0.941079,0.947912,0.978445,0.696715,0.387196,0.728416,0.0496022,0.916495,0.349131,0.14471,0.0749869,0.0731245,0.280503,0.897907,0.213297,0.100419,0.63369,0.352086,0.659186,0.672074,0.284091,0.0257695,0.0484902,0.0608175,0.499522,0.06055,0.728304,0.588648,0.391202,0.142694,0.572984,0.64352,0.352101,0.631049,0.560184,0.930842,0.0590959,0.260189,0.87622,0.829385,0.420719,0.288916,0.613515,0.911312,0.774025,0.426015,0.0624352,0.46453,0.570888,0.791936,0.460341,0.615536,0.758002,0.108727,0.971956,0.0114254,0.754428,0.519004,0.429312,0.46525,0.594637,0.455102,0.757581,0.94582,0.921489,0.824229,0.125268,0.023057,0.744308,0.978182,0.397013,0.708088,0.817018,0.255072,0.790923,0.885532,0.307822,0.256697,0.114598,0.660058,0.0406985,0.152254,0.174498,0.267485,0.0470566,0.331365,0.262745,0.917684,0.770279,0.80374,0.0792605,0.334825,0.0483052,0.549488,0.607982,0.599726,0.433618,0.601269,0.805094,0.246907,0.977428,0.395666,0.768133,0.312552,0.46326,0.285473,0.460841,0.390985,0.13855,0.701877,0.266984,0.812528,0.211818,0.0143941,0.761003,0.339728,0.159821,0.435091,0.234454,0.0242174,0.0904314,0.152538,0.440735,|0.00806844,0.74834,0.176128,0.384497,0.458331,0.697405,0.0579024,0.117434,0.497958,0.138911,0.760296,0.933256,0.970039,0.0733323,0.713926,0.22491,0.0496481,0.227867,0.617296,0.37193,0.640435,0.569922,0.711129,0.365151,0.786985,0.544779,0.573327,0.616142,0.872048,0.674404,0.141559,0.583607,0.459344,0.588768,0.896199,0.00687319,0.366793,0.0329462,0.139889,0.315807,0.879593,0.389356,0.611646,0.549866,0.112465,0.074982,0.815503,0.560416,0.273437,0.395598,0.424927,0.888859,0.409732,0.659062,0.978898,0.612702,0.167432,0.763159,0.191393,0.82329,0.906657,0.925061,0.591681,0.554056,0.395555,0.72618,0.796697,0.848082,0.382343,0.938467,0.667239,0.21742,0.488638,0.824869,0.274062,0.975793,0.275225,0.0678817,0.78013,0.978032,0.329619,0.51003,0.835258,0.805951,0.977383,0.145192,0.520939,0.644093,0.77444,0.348457,0.220517,0.384931,0.851432,0.405344,0.635292,0.392371,0.311944,0.175406,0.867048,0.0214054,0.380673,0.659642,0.156959,0.988616,0.810183,0.573608,0.0563428,0.0558345,0.315024,0.470995,0.8047,0.139159,0.500713,0.997155,0.254962,0.194924,0.0921094,0.750944,0.214861,0.50062,0.312888,0.826542,0.246181,0.735314,0.792129,0.648291,0.895308,0.822642,0.238475,0.472043,0.731774,0.216728,0.419047,0.676776,0.628735,0.608953,0.4554,0.681749,0.626156,0.212409,0.716981,0.328271,0.025693,0.39873,0.670314,0.941099,0.696122,0.972176,0.727367,0.493222,0.130563,0.247029,0.636124,0.558663,0.659867,0.320938,0.406262,0.214269,0.260866,0.614191,0.809477,0.494396,0.995957,0.509888,0.63798,0.320911,0.731798,0.148479,0.852918,0.229933,0.242099,0.813352,0.0630278,0.870506,0.709856,0.71297,0.7282,0.747371,0.933696,0.862051,0.58823,0.430619,0.138951,0.867965,0.894101,0.829234,0.881282,0.874706,0.24412,0.371735,0.996062,0.716081,0.55391,0.343986,0.655518,0.513462,0.998402,0.329517,0.0100279,0.694536,0.936978,0.677498,0.763199,0.850554,0.713025,0.66329,0.0503117,0.280399,0.79654,0.207077,0.562331,0.0199054,0.35012,0.315802,0.0823218,0.49202,0.908765,0.437042,0.680157,0.906108,0.0386535,0.688103,0.196301,0.494956,0.30339,0.649027,0.30453,0.730008,0.481956,0.172323,0.63444,0.414097,0.961012,0.459171,0.829469,0.110525,0.936334,0.111173,0.418401,0.765599,0.224828,0.510341,0.0715641,0.724845,0.809528,0.459641,0.78028,0.57898,0.626062,0.117043,0.439696,0.674497,0.881103,0.576422,0.285303,0.11911,0.522702,0.877506,0.741593,0.128999,0.0853156,0.896583,0.958719,0.405508,0.67536,0.443513,0.325925,0.841841,0.384995,0.600897,0.492191,0.792398,0.997953,0.772182,0.0822671,0.0186024,0.849493,0.547092,0.445335,0.945395,0.372256,0.0476675,0.32133,0.584921,0.131705,0.211049,0.631264,0.981312,0.857407,0.0831469,0.520945,0.723005,0.244764,0.158358,0.88586,0.245821,0.300794,0.35254,0.276896,0.389451,0.900929,0.639147,0.527611,0.572483,0.318258,0.554142,0.751712,0.486163,0.116328,0.800555,0.352335,0.0520641,0.645584,0.460476,0.623107,0.347427,0.0251167,0.337846,0.954328,0.541921,0.786769,0.862916,0.277237,0.139329,0.618889,0.885263,0.603679,0.951611,0.274806,0.78764,0.522164,0.342421,0.225856,0.400276,0.949484,0.245713,0.405217,0.937951,0.416384,0.622495,0.107066,0.521452,0.456092,0.275633,0.225064,0.74565,0.721374,0.315039,0.733909,0.669651,0.324173,0.635766,0.89741,0.908646,0.509757,0.858968,0.842843,0.215574,0.541653,0.457424,0.378415,0.0839573,0.341767,0.581397,0.752462,0.690764,0.630227,0.147175,0.340405,0.960068,0.161367,0.563923,0.757954,0.80675,0.971744,0.413913,0.750283,0.09038,0.296532,0.796409,0.739412,0.192678,0.71305,0.214289,0.256383,0.3785,0.746644,0.206125,0.64666,0.407978,0.164002,0.515603,0.291305,0.581667,0.309055,0.575114,0.128567,0.110779,0.439506,0.640108,0.976387,0.399707,0.0172154,0.421293,0.844078,0.603327,0.317312,0.82524,0.8368,0.276979,0.504651,0.872213,0.331197,0.569464,0.556855,0.533653,0.711037,0.183977,0.686907,0.280884,0.999066,0.484747,0.587628,0.618009,0.38835,0.502622,0.842756,0.971748,0.502862,0.381088,0.534369,0.802551,0.233138,0.681509,0.103614,0.439142,0.98481,0.3621,0.227014,0.702501,0.669399,0.260542,0.714372,0.935569,0.507131,0.310523,0.0139226,0.329881,0.153618,0.817927,0.396903,0.220107,0.389331,0.105117,0.404685,0.734804,0.720743,0.116822,0.151092,0.585203,0.443006,0.954358,0.0898592,0.373741,0.214302,0.827141,0.850375,0.518947,0.382193,0.706505,0.823561,0.360742,0.448653,0.927627,0.362402,0.7422,0.66421,0.496874,0.7464,0.854822,0.577463,0.94575,0.296061,0.222564,0.179581,0.209053,0.898794,0.461527,0.780494,0.217159,0.0247183,0.951124,0.546799,0.446505,0.473316,0.402378,0.659691,0.580405,0.540854,0.242225,0.662854,0.825677,0.20482,0.771107,0.656135,0.776951,0.347021,0.502009,0.690573,0.0255,0.348164,0.328668,0.221534,0.534002,0.213235,0.16257,0.669537,0.39438,0.812163,0.0328934,0.844052,0.943817,0.638909,0.791811,6.1214e-05,0.132734,0.499725,0.147742,0.687074,0.828614,0.640734,0.495432,0.746139,0.726551,0.132965,0.0180886,0.884294,0.701306,0.908964,0.272171,0.904749,0.667413,0.840135,0.773383,0.314903,0.542717,0.202392,0.511777,0.153816,0.0708706,0.529481,0.461675,0.578517,0.536126,0.452522,0.444081,0.925999,0.348272,0.0625392,0.255901,0.164417,0.584983,0.435983,0.608899,0.734006,0.569617,0.236967,0.712808,0.825631,0.982309,0.992031,0.612729,0.671877,0.67337,0.547031,0.39986,0.764524,0.726685,0.800451,0.731762,0.822919,0.585641,0.542375,0.600513,0.318332,0.514642,0.573744,0.724365,0.500335,0.137585,0.380642,0.360372,0.866196,0.887252,0.773156,0.895269,0.676189,0.467794,0.946323,0.7045,0.714206,0.570464,0.0875553,0.783676,0.772531,0.00961196,0.707461,0.658934,0.149434,0.37911,0.821897,0.466614,0.930578,0.4831,0.767322,0.609302,0.508698,0.733936,0.00325537,0.595991,0.0355363,0.418835,0.252402,0.778038,0.780128,0.16382,0.0558436,0.972815,0.641972,0.91701,0.473156,0.443939,0.346607,0.0427745,0.0900827,0.290259,0.267583,0.306135,0.504768,0.217759,0.932916,0.496092,0.321676,0.964205,0.386758,0.955563,0.532065,0.271483,0.248664,0.982929,0.736884,0.725739,0.403197,0.30903,0.701649,0.990067,0.54241,0.940513,0.767141,0.244535,0.686991,0.834153,0.339632,0.690898,0.457239,0.123062,0.698869,0.663023,0.0887984,0.11959,0.648608,0.262069,0.965247,0.87282,0.694238,0.690147,0.600966,0.582149,0.653026,0.722445,0.351817,0.170924,0.0667457,0.96633,0.0302503,0.409889,0.232901,0.961742,0.00392628,0.658891,0.323077,0.790375,0.0941033,0.0315467,0.560731,0.508881,0.0512353,0.717078,0.563618,0.666456,0.0417475,0.614628,0.123709,0.0663794,0.695456,0.710201,0.54149,0.20746,0.414523,0.918306,0.882226,0.0369875,0.500793,0.229489,0.618186,0.948931,0.607129,0.340775,0.83624,0.976449,0.104033,0.0391658,0.694702,0.683839,0.671487,0.606882,0.814938,0.164137,0.757732,0.412967,0.351654,0.78792,0.695346,0.320639,0.153377,0.0808732,0.832745,0.711101,0.831792,0.943582,0.821229,0.480765,0.909096,0.171693,0.358922,0.574061,0.386396,0.805993,0.561769,0.9813,0.133663,0.793116,0.406304,0.615306,0.790331,0.0959523,0.984017,0.319583,0.288149,0.734121,0.295465,0.469499,0.90213,0.868726,0.15844,0.40739,0.795315,0.587472,0.970518,0.484322,0.879498,0.128144,0.390074,0.916787,0.401879,0.0130268,0.140471,0.335526,0.164847,0.833584,0.576876,0.099327,0.371439,0.567752,0.386617,0.124573,0.614051,0.0509987,0.898403,0.184642,0.688256,0.369787,0.237678,0.228512,0.274619,0.0202917,0.652439,0.53859,0.922566,0.117025,0.156769,0.225076,0.133375,0.947739,0.373849,0.257064,0.0116403,0.518863,0.649863,0.093793,0.891365,0.63869,0.589185,0.578259,0.312729,0.207574,0.51675,0.291088,0.833909,0.264469,0.742372,0.753525,0.454768,0.363576,0.713105,0.303322,0.0931928,0.419744,0.659756,0.641397,0.134123,0.725515,0.511351,0.584224,0.86995,0.663665,0.519794,0.641993,0.518019,0.757952,0.746562,0.782013,0.0203761,0.583831,0.896367,0.628534,0.518909,0.674298,0.467778,0.522595,0.614177,0.432923,0.482672,0.663319,0.257068,0.621001,0.190641,0.196701,0.0116733,0.764276,0.944766,0.381465,0.557692,0.127599,0.942916,0.257924,0.473488,0.566691,0.344436,0.411418,0.334701,0.360677,0.189039,0.54155,0.389473,0.115291,0.481628,0.775505,0.595754,0.211291,0.277402,0.451178,0.607885,0.484176,0.276191,0.179862,0.279541,0.787501,0.534815,0.487347,0.863405,0.84848,0.857865,0.879559,0.428546,0.931837,0.29184,0.605217,0.794149,0.443327,0.480048,0.0513668,0.625394,0.681797,0.99645,0.854686,0.334709,0.367892,0.112197,0.323562,0.95706,0.0556831,0.695239,0.320819,0.811379,0.656663,0.786171,0.516573,0.695831,0.584584,0.847152,0.558754,0.568766,0.393824,0.00778067,0.430877,0.56548,0.623394,0.296011,0.458974,0.477361,0.42422,0.595437,0.499441,0.0613269,0.931054,0.465643,0.0341093,0.908113,0.74168,0.824335,0.885318,0.214701,0.283948,0.403603,0.57637,0.75439,0.745668,0.843771,0.0173101,0.385717,0.849457,0.722052,0.932021,0.283151,0.445704,0.381492,0.912844,0.706351,0.785695,0.635062,0.788757,0.702601,0.468741,0.0676183,0.650825,0.0152858,0.0855367,0.359246,0.760274,0.64804,0.0761231,0.795476,0.699951,0.912489,0.0616102,0.572113,0.116098,0.561812,0.166792,0.269272,0.707465,0.885716,0.974943,0.858484,0.0730047,0.897871,0.484387,0.843008,0.544544,0.680643,0.693518,0.832484,0.553813,0.663373,0.136639,0.697722,0.930142,0.860646,0.684723,|0.0450359,0.311301,0.432712,0.163013,0.899128,0.778918,0.0817263,0.133076,0.312228,0.236253,0.730871,0.732719,0.917955,0.0476328,0.000208795,0.644058,0.170347,0.3433,0.122273,0.157397,0.996544,0.965847,0.256815,0.939194,0.965151,0.499107,0.986022,0.490698,0.639826,0.836976,0.0845435,0.585945,0.651389,0.624936,0.202175,0.459751,0.780321,0.816044,0.0591189,0.987029,0.928579,0.103656,0.785038,0.879951,0.189653,0.231384,0.998738,0.221368,0.466389,0.570443,0.236544,0.00152367,0.833215,0.42766,0.492391,0.240896,0.543413,0.63374,0.440354,0.589613,0.718965,0.262403,0.0791912,0.697209,0.226559,0.504819,0.630812,0.130032,0.935019,0.971036,0.0154407,0.428955,0.152697,0.580411,0.879316,0.537489,0.688141,0.569217,0.894158,0.934595,0.951661,0.16051,0.138711,0.207291,0.893081,0.876656,0.535273,0.0199609,0.127614,0.69869,0.964037,0.251926,0.258123,0.699326,0.544173,0.845229,0.383557,0.117085,0.0754834,0.0246924,0.236556,0.554325,0.606744,0.807019,0.609701,0.462737,0.323161,0.358902,0.502258,0.377483,0.994762,0.414247,0.00540316,0.93371,0.538416,0.483499,0.336894,0.775145,0.901189,0.373824,0.571529,0.716162,0.702466,0.727303,0.0803198,0.41258,0.963,0.648796,0.593886,0.523395,0.792231,0.510971,0.975497,0.657458,0.568625,0.793312,0.780317,0.540117,0.875394,0.0333834,0.910339,0.165324,0.53394,0.30105,0.473776,0.950183,0.92794,0.0546354,0.614039,0.226928,0.23303,0.595105,0.0904747,0.713475,0.492786,0.696109,0.211406,0.991225,0.952033,0.254689,0.263616,0.078118,0.830953,0.176196,0.488987,0.371802,0.956655,0.836349,0.730056,0.471343,0.388597,0.0552004,0.848636,0.949298,0.660493,0.101825,0.91467,0.524329,0.925295,0.703049,0.923636,0.781646,0.461263,0.193518,0.0488009,0.54356,0.94005,0.573721,0.337548,0.808481,0.241577,0.176242,0.918694,0.0539221,0.310637,0.763757,0.927441,0.806769,0.274321,0.48588,0.763625,0.735401,0.919886,0.00862449,0.704743,0.23935,0.501497,0.661576,0.364569,0.963253,0.00271767,0.883182,0.454017,0.032521,0.505212,0.309944,0.747325,0.765333,0.231466,0.330195,0.673758,0.213722,0.780899,0.887643,0.467201,0.610088,0.651505,0.564239,0.346304,0.429165,0.27651,0.0489359,0.50731,0.207712,0.524009,0.903624,0.619008,0.158699,0.0103882,0.237253,0.819626,0.156296,0.0108901,0.662846,0.722568,0.773732,0.618477,0.448741,0.717747,0.451084,0.502423,0.226047,0.114111,0.479362,0.516943,0.924832,0.284702,0.0497816,0.467305,0.869218,0.828484,0.51587,0.666684,0.794057,0.159579,0.372557,0.0222347,0.577149,0.949174,0.12968,0.892301,0.968723,0.539843,0.890677,0.0274214,0.347683,0.53099,0.34488,0.456401,0.131803,0.63615,0.926386,0.967142,0.849368,0.991165,0.91242,0.221673,0.933291,0.267902,0.789047,0.477826,0.419918,0.357282,0.584168,0.456277,0.406655,0.465102,0.61371,0.670242,0.684004,0.0791463,0.343627,0.130316,0.474671,0.370838,0.0118187,0.993684,0.729482,0.345315,0.445772,0.160805,0.871014,0.873555,0.837891,0.686918,0.693222,0.939476,0.969927,0.287887,0.476824,0.0948021,0.0819488,0.565959,0.599115,0.792723,0.429765,0.589928,0.223609,0.219839,0.697493,0.993192,0.992176,0.0676205,0.484255,0.400707,0.50716,0.719912,0.222552,0.611575,0.22795,0.931734,0.292844,0.270698,0.888219,0.0798572,0.170286,0.502034,0.838278,0.229944,0.629655,0.884075,0.71469,0.51303,0.140857,0.769009,0.181884,0.014937,0.0670891,0.227158,0.668942,0.656409,0.839071,0.355609,0.711677,0.25237,0.523839,0.597776,0.128681,0.553372,0.475594,0.526491,0.528139,0.795295,0.437228,0.324957,0.940695,0.902169,0.817348,0.627649,0.146026,0.0374933,0.392956,0.628609,0.458808,0.116475,0.14768,0.200585,0.906803,0.763781,0.620773,0.832126,0.325387,0.630522,0.469244,0.188757,0.00229037,0.870388,0.624849,0.850193,0.804209,0.038345,0.621544,0.406397,0.522057,0.930508,0.0570045,0.64575,0.331238,0.637245,0.928991,0.980664,0.653832,0.425776,0.0887741,0.135076,0.194314,0.472961,0.540812,0.409385,0.146052,0.281197,0.333418,0.309499,0.309305,0.696509,0.381561,0.293473,0.0968912,0.81278,0.0725188,0.47282,0.638621,0.469097,0.0929666,0.0554993,0.880004,0.686829,0.691972,0.843723,0.596375,0.503586,0.0437269,0.800574,0.30377,0.390081,0.356772,0.209132,0.816131,0.94337,0.586132,0.0693901,0.314557,0.607096,0.309212,0.985847,0.786936,0.30622,0.750421,0.674923,0.306109,0.200065,0.684091,0.745716,0.589774,0.376397,0.963587,0.0229729,0.452377,0.998972,0.530901,0.184158,0.258888,0.696749,0.819097,0.744617,0.348742,0.236093,0.98864,0.666643,0.632983,0.0712702,0.395036,0.257381,0.405256,0.760177,0.507985,0.969186,0.607448,0.148155,0.550264,0.81489,0.66251,0.882394,0.482314,0.654506,0.81153,0.798113,0.700952,0.140964,0.124901,0.816569,0.454178,0.57473,0.00272018,0.477408,0.168581,0.538489,0.927524,0.022373,0.071015,0.711548,0.588228,0.818027,0.769717,0.0116411,0.170671,0.958042,0.194663,0.751385,0.623785,0.765247,0.750257,0.014482,0.141938,0.227531,0.0830804,0.705964,0.545954,0.499333,0.305052,0.0807902,0.240758,0.800188,0.180777,0.826574,0.349554,0.461323,0.231259,0.391975,0.633178,0.00208646,0.371954,0.533165,0.0175641,0.160158,0.654935,0.317468,0.360502,0.0978485,0.632437,0.993507,0.826715,0.90043,0.344013,0.483518,0.550344,0.887951,0.699069,0.151711,0.473968,0.88854,0.508122,0.720167,0.470375,0.32253,0.0298808,0.432778,0.23665,0.422111,0.896412,0.302218,0.974561,0.325,0.931123,0.481889,0.234488,0.847793,0.648563,0.671298,0.894525,0.00735348,0.794567,0.567056,0.678615,0.555611,0.596538,0.347231,0.294074,0.855588,0.668246,0.510257,0.0882362,0.714469,0.422802,0.231546,0.96978,0.296437,0.594425,0.4625,0.174791,0.0493091,0.59863,0.888644,0.645368,0.429499,0.222722,0.0515999,0.936321,0.361961,0.678696,0.399343,0.75584,0.0912999,0.687039,0.667715,0.965253,0.591379,0.657638,0.602615,0.431701,0.331854,0.436861,0.00228602,0.0908248,0.990592,0.281843,0.789022,0.0567002,0.286402,0.606841,0.491751,0.419412,0.563751,0.351815,0.270943,0.0845594,0.974778,0.240782,0.375072,0.692984,0.605226,0.453462,0.125094,0.595273,0.971692,0.555744,0.707433,0.754065,0.0412775,0.0891648,0.173927,0.632591,0.157936,0.273766,0.609844,0.0419714,0.972458,0.10042,0.233065,0.624097,0.202295,0.576868,0.179378,0.865822,0.439117,0.467827,0.366487,0.0721147,0.524189,0.408608,0.796064,0.717691,0.365776,0.18697,0.643716,0.905198,0.441607,0.424211,0.397527,0.144085,0.530279,0.338033,0.246404,0.247455,0.850083,0.146514,0.357751,0.419326,0.726477,0.910283,0.926107,0.698575,0.119404,0.559698,0.606283,0.547912,0.263507,0.779874,0.00179899,0.348715,0.829782,0.838798,0.212192,0.353315,0.278694,0.862935,0.492486,0.387554,0.768439,0.261487,0.315402,0.893701,0.453702,0.284303,0.72909,0.58992,0.783442,0.346131,0.748507,0.165686,0.223227,0.916395,0.319226,0.810719,0.665147,0.205918,0.441565,0.151377,0.207424,0.963818,0.097103,0.564727,0.0447302,0.491307,0.0609653,0.963104,0.0357298,0.402318,0.71438,0.983599,0.342694,0.96358,0.691811,0.532162,0.312482,0.508047,0.21239,0.664889,0.79932,0.717437,0.959503,0.836865,0.847036,0.531586,0.344853,0.711931,0.691429,0.947471,0.879525,0.201729,0.546919,0.930909,0.620383,0.65892,0.571741,0.173369,0.661951,0.562565,0.397033,0.0362481,0.507896,0.626747,0.749345,0.784008,0.460919,0.508053,0.899337,0.938664,0.417076,0.0901543,0.0110514,0.366244,0.339566,0.921306,0.414479,0.230814,0.330546,0.903906,0.886255,0.220649,0.192935,0.787569,0.513759,0.319912,0.767901,0.322704,0.518761,0.616,0.454814,0.975683,0.42115,0.236475,0.536453,0.09375,0.491926,0.198771,0.158548,0.360333,0.297703,0.952612,0.70639,0.311529,0.159845,0.491901,0.785486,0.930951,0.190069,0.312748,0.823393,0.266793,0.855981,0.497663,0.233479,0.957333,0.62111,0.936917,0.947399,0.308304,0.469679,0.118098,0.184813,0.184826,0.815334,0.433286,0.786381,0.995044,0.260104,0.813479,0.0958714,0.936186,0.279112,0.554088,0.584169,0.644167,0.716559,0.371593,0.833153,0.946369,0.723577,0.391439,0.638655,0.494241,0.1286,0.0154306,0.769058,0.361595,0.469067,0.593624,0.782284,0.147793,0.185075,0.80148,0.990313,0.399846,0.609486,0.197383,0.463189,0.0787578,0.259718,0.722064,0.571331,0.943032,0.927877,0.382706,0.658774,0.425858,0.15422,0.511963,0.954178,0.673529,0.596317,0.146558,0.885376,0.980916,0.293743,0.60136,0.815036,0.643285,0.938578,0.108941,0.886598,0.368748,0.669056,3.15905e-05,0.424341,0.473732,0.410859,0.690815,0.873863,0.713353,0.210388,0.805567,0.0815747,0.729202,0.306413,0.887809,0.493799,0.642468,0.390473,0.0723869,0.926419,0.0482349,0.865275,0.157538,0.396742,0.828289,0.675952,0.795623,0.913567,0.642864,0.114246,0.302694,0.985749,0.120779,0.672537,0.503278,0.568683,0.935867,0.798375,0.820821,0.844567,0.898517,0.944801,0.721299,0.157333,0.422325,0.55751,0.615811,0.500223,0.0384488,0.920423,0.253279,0.187267,0.975725,0.946318,0.15621,0.154047,0.272397,0.144088,0.68282,0.172938,0.267743,0.094614,0.775329,0.257525,0.978964,0.204314,0.701317,0.140895,0.735958,0.888958,0.381481,0.883479,0.23251,0.264427,0.805526,0.518532,0.415201,0.839296,0.839405,0.270467,0.786585,0.723093,0.359194,0.199309,0.692373,0.149567,0.348428,0.156376,0.160184,0.576224,0.461498,0.121233,0.0203183,0.59619,0.747739,0.345554,0.713663,0.185683,0.346301,0.664078,0.490281,0.570843,0.157367,0.680683,0.82361,0.191873,0.469949,0.114508,0.577026,|0.900218,0.905763,0.133891,0.415857,0.390689,0.11618,0.86965,0.867823,0.441276,0.926621,0.363097,0.215877,0.62586,0.300519,0.836998,0.553215,0.0205088,0.394283,0.898676,0.26775,0.518542,0.874069,0.941704,0.395874,0.326669,0.792103,0.104886,0.189946,0.768598,0.93894,0.695769,0.33912,0.605595,0.752468,0.60062,0.15454,0.862082,0.858315,0.0584651,0.615254,0.8474,0.417654,0.333966,0.991154,0.892992,0.268643,0.589525,0.298786,0.54453,0.202373,0.883448,0.168411,0.678255,0.0374765,0.382881,0.660998,0.993693,0.269215,0.931725,0.435392,0.411669,0.942133,0.385895,0.686805,0.566464,0.329177,0.934069,0.154044,0.11581,0.230949,0.971298,0.84883,0.619398,0.756796,0.987794,0.391047,0.253415,0.222239,0.860026,0.705205,0.925795,0.647646,0.148381,0.992538,0.215541,0.0113882,0.578066,0.723786,0.626799,0.570339,0.239376,0.125659,0.47956,0.0957113,0.846064,0.374333,0.150378,0.92897,0.48284,0.989485,0.405,0.823158,0.885495,0.322734,0.137372,0.541809,0.88556,0.80706,0.0854592,0.82553,0.996112,0.22399,0.571357,0.0296084,0.27428,0.309809,0.913218,0.587962,0.0984407,0.568681,0.79539,0.235082,0.774317,0.117163,0.829391,0.272641,0.573491,0.97674,0.699361,0.375713,0.422331,0.859,0.3577,0.109282,0.614567,0.39036,0.604786,0.123446,0.472072,0.359028,0.412958,0.207049,0.684903,0.641302,0.565071,0.892655,0.0839034,0.566323,0.218419,0.532002,0.111844,0.198607,0.314436,0.130197,0.468329,0.738568,0.43058,0.274041,0.32269,0.0642776,0.876021,0.161087,0.484315,0.511781,0.93591,0.180086,0.454848,0.983469,0.370991,0.061302,0.378419,0.270635,0.74907,0.491237,0.823675,0.381614,0.545652,0.456921,0.881038,0.818142,0.820847,0.297487,0.993118,0.143153,0.057851,0.89573,0.83838,0.72135,0.8724,0.895793,0.140789,0.214155,0.361064,0.884414,0.056344,0.37035,0.165724,0.159093,0.27394,0.158951,0.752338,0.361875,0.902895,0.658292,0.966994,0.643067,0.485861,0.853555,0.871083,0.921556,0.485344,0.632389,0.57585,0.328435,0.622658,0.126835,0.783222,0.318536,0.341974,0.446193,0.303262,0.157464,0.0308452,0.226536,0.0318369,0.826225,0.671407,0.631905,0.302783,0.659821,0.271881,0.441645,0.926417,0.237593,0.680281,0.712722,0.21471,0.193523,0.953388,0.452569,0.910414,0.468332,0.814379,0.358446,0.758012,0.0308738,0.0171868,0.38455,0.501816,0.844064,0.347996,0.719794,0.201788,0.418885,0.203659,0.548786,0.326208,0.355136,0.605645,0.520002,0.979949,0.912645,0.345617,0.608668,0.345932,0.155001,0.785959,0.563439,0.732452,0.00569844,0.872663,0.390134,0.21787,0.410356,0.284473,0.335787,0.957114,0.303203,0.93826,0.366634,0.0782638,0.251454,0.555571,0.875477,0.100716,0.659307,0.160247,0.285653,0.244639,0.421707,0.34736,0.395065,0.90472,0.219375,0.478727,0.203153,0.757708,0.376181,0.851372,0.258072,0.253869,0.106488,0.0527048,0.668447,0.994313,0.426656,0.407204,0.671221,0.102389,0.855762,0.505941,0.731093,0.0547744,0.321487,0.404435,0.0867288,0.0916007,0.107382,0.472887,0.0918517,0.794556,0.808405,0.0254433,0.514762,0.825961,0.260823,0.369464,0.607882,0.145257,0.998941,0.779951,0.402399,0.497649,0.900268,0.613512,0.95802,0.36321,0.832397,0.943465,0.245829,0.703906,0.717855,0.761714,0.0502291,0.984929,0.524704,0.302662,0.0431688,0.781859,0.684815,0.52258,0.829116,0.289598,0.661933,0.766662,0.139322,0.771895,0.70053,0.344135,0.0837914,0.779791,0.424024,0.371199,0.366169,0.910433,0.746846,0.490169,0.973525,0.666531,0.0481687,0.301666,0.182619,0.893993,0.355396,0.184086,0.991089,0.0351135,0.10974,0.753498,0.948396,0.732879,0.935869,0.0961005,0.107476,0.534982,0.825244,0.427263,0.821863,0.384077,0.17601,0.598993,0.762915,0.0233264,0.112486,0.358231,0.648488,0.962807,0.687331,0.945338,0.362952,0.993997,0.651281,0.509023,0.353982,0.726876,0.24626,0.576177,0.578984,0.322993,0.973048,0.225187,0.673817,0.777364,0.28221,0.696874,0.725599,0.257889,0.345217,0.35076,0.516936,0.406064,0.915812,0.952055,0.759202,0.523587,0.910284,0.618117,0.216157,0.0401487,0.971259,0.804103,0.0773516,0.293828,0.209254,0.8644,0.0125589,0.722555,0.114844,0.595155,0.187678,0.0325305,0.63038,0.0278897,0.389074,0.82671,0.314882,0.443216,0.981075,0.538982,0.107764,0.404814,0.93835,0.385855,0.107526,0.596122,0.876707,0.140019,0.259197,0.0127824,0.114228,0.461136,0.954602,0.774659,0.870036,0.32112,0.320162,0.307145,0.732027,0.482986,0.709271,0.151239,0.325727,0.0424749,0.720081,0.413047,0.928078,0.107937,0.146979,0.377819,0.682468,0.940729,0.555692,0.363864,0.847412,0.613061,0.681064,0.526129,0.711263,0.389713,0.226939,0.385446,0.579128,0.487575,0.642939,0.709715,0.643618,0.158138,0.223582,0.404009,0.0751846,0.635489,0.489658,0.911969,0.476738,0.0527731,0.683649,0.101196,0.696696,0.51209,0.332554,0.935742,0.484864,0.332623,0.639085,0.393075,0.356509,0.866949,0.355711,0.0838718,0.784206,0.912718,0.021019,0.615136,0.677909,0.218696,0.355214,0.595616,0.112305,0.62268,0.758399,0.250068,0.319508,0.384865,0.649726,0.305688,0.105841,0.511823,0.397412,0.543383,0.530293,0.161032,0.0151103,0.611696,0.987226,0.0246913,0.868523,0.07201,0.809145,0.856453,0.162244,0.474946,0.303479,0.0775166,0.793722,0.150016,0.432434,0.527371,0.760483,0.835994,0.21556,0.80749,0.0979055,0.957717,0.0430251,0.64935,0.0720058,0.32097,0.29036,0.200887,0.0106926,0.529623,0.0153615,0.306938,0.230264,0.16743,0.656993,0.0343333,0.574126,0.842254,0.380235,0.863329,0.770071,0.611892,0.150564,0.416546,0.0687212,0.781149,0.0264797,0.474173,0.171442,0.945401,0.727045,0.9618,0.437794,0.774509,0.469233,0.129979,0.516454,0.909942,0.0680746,0.119649,0.386352,0.11185,0.7095,0.452601,0.76722,0.236061,0.583637,0.591746,0.858713,0.40628,0.72792,0.491657,0.387172,0.662835,0.538737,0.397113,0.482734,0.823777,0.4314,0.302761,0.96396,0.75825,0.335308,0.0553329,0.31145,0.908856,0.48579,0.476274,0.20847,0.832993,0.463078,0.0812995,0.751764,0.756363,0.700476,0.891797,0.394119,0.331771,0.837078,0.139789,0.745298,0.917513,0.911301,0.094049,0.948022,0.898057,0.427725,0.33917,0.161935,0.740392,0.389359,0.414206,0.874716,0.534971,0.376671,0.517861,0.114199,0.12943,0.512633,0.346357,0.234288,0.637292,0.602439,0.673107,0.0676742,0.283242,0.293257,0.0820689,0.00856012,0.108527,0.238704,0.684238,0.989829,0.673315,0.43746,0.255298,0.626748,0.563129,0.889148,0.831164,0.579157,0.723543,0.0746927,0.410243,0.932966,0.723609,0.220177,0.905084,0.627834,0.489948,0.215592,0.856758,0.280434,0.753043,0.676488,0.0744766,0.271419,0.684903,0.421384,0.529096,0.893814,0.361039,0.256511,0.794917,0.054902,0.485069,0.361304,0.366343,0.0628045,0.0670199,0.25031,0.234778,0.69695,0.113518,0.967862,0.301318,0.305683,0.884563,0.544041,0.76633,0.701434,0.560798,0.943986,0.196376,0.00591362,0.191413,0.895607,0.842832,0.22101,0.300987,0.916819,0.514647,0.221535,0.88162,0.259898,0.223272,0.936244,0.804232,0.387701,0.283965,0.699469,0.880957,0.736812,0.876496,0.277668,0.715581,0.511572,0.117195,0.590006,0.341989,0.803395,0.262029,0.172535,0.20734,0.866305,0.924037,0.404108,0.263678,0.828457,0.378846,0.530111,0.984107,0.266949,0.144887,0.544252,0.170531,0.622197,0.599311,0.0431752,0.193107,0.816987,0.750934,0.299875,0.828347,0.195641,0.742223,0.292993,0.910254,0.417558,0.29351,0.910579,0.804551,0.406206,0.616191,0.385273,0.114459,0.266311,0.290774,0.643538,0.191496,0.427023,0.371286,0.348756,0.39935,0.276531,0.110944,0.306768,0.643016,0.263222,0.763036,0.463848,0.234574,0.575302,0.708813,0.116529,0.31507,0.882649,0.594117,0.0319961,0.908712,0.840115,0.681403,0.247188,0.00688416,0.141977,0.353992,0.0359907,0.939194,0.557467,0.754686,0.813032,0.617877,0.428207,0.155362,0.65025,0.477676,0.383709,0.872147,0.375437,0.0546886,0.341096,0.173477,0.406495,0.520483,0.336231,0.697771,0.437727,0.657503,0.130987,0.104029,0.855765,0.409338,0.125839,0.918762,0.972446,0.160647,0.472792,0.429701,0.166503,0.707894,0.760457,0.0478417,0.705853,0.836101,0.821668,0.865601,0.94204,0.0622188,0.429939,0.656879,0.616033,0.440752,0.938485,0.14621,0.267148,0.624708,0.329879,0.181857,0.70595,0.302897,0.280761,0.401772,0.572335,0.237716,0.168759,0.632304,0.651632,0.126584,0.223542,0.40244,0.119131,0.706739,0.880607,0.389376,0.118239,0.312671,0.508196,0.612146,0.339765,0.977798,0.776213,0.713973,0.024995,0.158248,0.136904,0.156515,0.860554,0.218901,0.534082,0.216047,0.712126,0.405325,0.986282,0.000349939,0.423273,0.292694,0.560838,0.479231,0.604901,0.172836,0.840177,0.565988,0.778995,0.54942,0.53214,0.31896,0.397458,0.815916,0.713027,0.702181,0.615491,0.23962,0.423065,0.552434,0.781592,0.949574,0.431846,0.223263,0.327468,0.726397,0.909595,0.583218,0.514082,0.632522,0.269403,0.14692,0.998303,0.234563,0.196239,0.355582,0.266651,0.749489,0.624575,0.0308871,0.337236,0.63198,0.412404,0.313165,0.791448,0.0347843,0.179842,0.108911,0.226012,0.716243,0.422203,0.497836,0.0750479,0.76243,0.507424,0.134097,0.937356,0.689223,0.138342,0.112421,0.293902,0.64297,0.476993,0.520873,0.578011,0.827159,0.63779,0.0289542,0.393737,0.833767,0.5934,0.845341,0.613078,0.79306,0.173237,0.816422,0.660449,0.06331,0.292337,0.932142,0.763301,0.295983,0.445478,0.573903,0.379203,0.216798,0.245276,0.354641,0.573675,0.458309,0.386817,0.109882,0.514713,0.59818,0.343855,|0.524765,0.163609,0.106588,0.167518,0.688065,0.981421,0.0828281,0.366924,0.063551,0.642164,0.308957,0.69302,0.209478,0.181628,0.86288,0.441152,0.140405,0.761861,0.586537,0.23147,0.0082323,0.76541,0.95892,0.110552,0.305903,0.362013,0.934412,0.85394,0.0635896,0.5284,0.71415,0.267881,0.702731,0.829826,0.00866461,0.136701,0.968223,0.832735,0.661036,0.121299,0.470042,0.935768,0.525333,0.0926183,0.851589,0.272291,0.810845,0.938136,0.464073,0.14979,0.0311992,0.641677,0.783282,0.981215,0.481302,0.563346,0.827557,0.391172,0.396256,0.390327,0.402756,0.698395,0.239172,0.825405,0.55174,0.578802,0.748687,0.648648,0.859234,0.737629,0.262396,0.625233,0.740575,0.760585,0.242369,0.763963,0.211863,0.284972,0.845417,0.446877,0.680961,0.978074,0.0271064,0.641697,0.320565,0.0231989,0.2985,0.943069,0.309148,0.508057,0.244122,0.861407,0.257351,0.189235,0.983293,0.0571582,0.645503,0.846026,0.13347,0.12924,0.31542,0.0765834,0.157944,0.861976,0.730289,0.520816,0.423526,0.31722,0.5288,0.307199,0.877229,0.801736,0.0166008,0.860824,0.174029,0.555211,0.429859,0.592481,0.0301175,0.582775,0.642482,0.236556,0.562346,0.934144,0.160854,0.868194,0.826074,0.0327198,0.284274,0.968117,0.41261,0.213246,0.340593,0.506545,0.814197,0.577047,0.021968,0.519632,0.478247,0.63282,0.510827,0.655495,0.200093,0.791534,0.345943,0.84466,0.255222,0.99851,0.904251,0.476379,0.671125,0.489374,0.462639,0.857976,0.103344,0.133135,0.404803,0.426545,0.894536,0.275883,0.436239,0.967543,0.357342,0.361554,0.488943,0.309805,0.300471,0.164437,0.272202,0.230938,0.716064,0.505976,0.151199,0.568175,0.277608,0.334264,0.304374,0.96443,0.547645,0.0631656,0.610657,0.997709,0.184005,0.158991,0.495055,0.430353,0.701954,0.434736,0.652298,0.746417,0.697436,0.345423,0.742377,0.60824,0.0734684,0.738555,0.424477,0.287296,0.641907,0.977306,0.270976,0.0562633,0.380094,0.912516,0.981326,0.359133,0.260115,0.909021,0.995766,0.89752,0.323366,0.374479,0.301047,0.0695505,0.0532134,0.918473,0.985717,0.489514,0.65677,0.411333,0.885862,0.855769,0.328669,0.692585,0.805909,0.248857,0.159354,0.847522,0.486067,0.799155,0.896191,0.305079,0.276998,0.901813,0.757808,0.256123,0.510204,0.423142,0.272249,0.0397976,0.419278,0.468136,0.0734138,0.200886,0.593879,0.714142,0.0716696,0.300409,0.0721181,0.875495,0.346536,0.152468,0.259592,0.684138,0.387747,0.180487,0.990106,0.476808,0.386858,0.46581,0.989801,0.929835,0.248616,0.185354,0.086247,0.236689,0.517849,0.983339,0.202855,0.518731,0.304984,0.844236,0.151437,0.0947255,0.154332,0.461641,0.0539748,0.975473,0.157907,0.419026,0.47418,0.633266,0.402307,0.185493,0.621973,0.942664,0.585341,0.105123,0.405245,0.901557,0.116262,0.490417,0.886351,0.123859,0.898964,0.580581,0.952451,0.609711,0.291512,0.954114,0.0279025,0.618115,0.649673,0.348264,0.108741,0.984684,0.770418,0.607724,0.692847,0.150243,0.949414,0.866203,0.81803,0.0945659,0.394448,0.351543,0.855471,0.292077,0.340383,0.264965,0.759954,0.832013,0.903184,0.77431,0.998757,0.0533016,0.578516,0.847627,0.785185,0.669949,0.16038,0.545851,0.810205,0.784302,0.0218278,0.157129,0.386322,0.235985,0.990213,0.552039,0.86118,0.869566,0.821384,0.309848,0.37802,0.46229,0.558161,0.912728,0.940229,0.614457,0.579504,0.154531,0.460864,0.72323,0.50733,0.533884,0.795566,0.354355,0.599569,0.293097,0.746546,0.726671,0.588249,0.235615,0.176656,0.0983489,0.209076,0.390497,0.071737,0.535641,0.949693,0.66436,0.632936,0.805983,0.833623,0.810108,0.454853,0.15584,0.632052,0.154155,0.878687,0.495855,0.476359,0.115013,0.553293,0.412963,0.540203,0.799083,0.380794,0.98476,0.361509,0.942158,0.887172,0.224852,0.491048,0.519054,0.697905,0.311236,0.342099,0.702701,0.00277054,0.476627,0.231618,0.420197,0.373859,0.0511715,0.462917,0.887035,0.0821746,0.250464,0.964885,0.412325,0.872596,0.129887,7.33137e-06,0.22394,0.896342,0.272964,0.824675,0.012649,0.461011,0.240133,0.975789,0.0918648,0.808175,0.887053,0.477965,0.967089,0.535561,0.798891,0.478878,0.905146,0.195586,0.939603,0.435554,0.211243,0.705981,0.203233,0.742782,0.141413,0.0656455,0.0442761,0.366051,0.214038,0.15339,0.000849664,0.580487,0.116646,0.298289,0.388932,0.517036,0.858121,0.302711,0.101724,0.831657,0.409539,0.854971,0.390436,0.234044,0.429599,0.861554,0.798198,0.424939,0.712249,0.207851,0.683311,0.168235,0.411452,0.637386,0.0825241,0.00502449,0.990053,0.303196,0.210338,0.619597,0.4042,0.953289,0.690048,0.123123,0.00117034,0.893647,0.0710005,0.334982,0.484422,0.802417,0.899316,0.914183,0.0317698,0.466626,0.740444,0.85099,0.410718,0.128753,0.0829447,0.529599,0.992592,0.00990003,0.796934,0.892272,0.67078,0.0589794,0.872774,0.773696,0.650037,0.344848,0.773535,0.282316,0.321002,0.229619,0.977762,0.873841,0.697655,0.694626,0.932576,0.345346,0.196434,0.69087,0.507325,0.845383,0.654276,0.39481,0.174262,0.922036,0.502436,0.603977,0.737705,0.302604,0.0539287,0.451168,0.543722,0.295463,0.0745798,0.312058,0.453462,0.131867,0.872171,0.507734,0.388898,0.794813,0.76832,0.0266499,0.657295,0.0645431,0.197344,0.274223,0.817925,0.767054,0.203705,0.327268,0.460544,0.985003,0.428706,0.0947002,0.971406,0.682574,0.871196,0.88127,0.7371,0.160676,0.624512,0.655297,0.311252,0.203772,0.813219,0.812193,0.457133,0.0909948,0.289344,0.254135,0.0598206,0.747887,0.940387,0.379851,0.285737,0.064744,0.594872,0.0469623,0.624036,0.996052,0.0190763,0.869489,0.88599,0.271254,0.0299752,0.242831,0.655487,0.739713,0.922519,0.197734,0.567073,0.507897,0.678858,0.769778,0.682492,0.362512,0.100925,0.879367,0.103642,0.555737,0.956927,0.118031,0.0852255,0.388698,0.408838,0.571926,0.193457,0.566797,0.31462,0.32785,0.84969,0.594121,0.156086,0.898551,0.250277,0.296265,0.671447,0.320159,0.584612,0.484429,0.678904,0.714473,0.379763,0.943607,0.900251,0.218426,0.683842,0.578343,0.711928,0.413177,0.130575,0.996456,0.25566,0.999258,0.885485,0.0106372,0.350355,0.0249754,0.869375,0.923766,0.632382,0.170751,0.299478,0.962491,0.212286,0.407131,0.883503,0.935219,0.614867,0.382536,0.376013,0.182982,0.429171,0.50188,0.192914,0.838664,0.0825394,0.0851604,0.303833,0.320238,0.576952,0.549953,0.581555,0.462191,0.958101,0.563321,0.710468,0.046831,0.354522,0.490967,0.698146,0.159309,0.608489,0.288608,0.024902,0.668812,0.539726,0.494868,0.704163,0.00808424,0.458035,0.999341,0.148343,0.648211,0.00377941,0.694077,0.961494,0.916514,0.410384,0.0065217,0.014308,0.117553,0.337336,0.930736,0.236284,0.985427,0.709572,0.465358,0.011573,0.038482,0.0891702,0.629852,0.998841,0.301289,0.58713,0.00915384,0.332647,0.540085,0.56562,0.508718,0.0540466,0.178279,0.235803,0.00328958,0.444405,0.655861,0.0789424,0.118664,0.881305,0.0828493,0.755824,0.529491,0.403546,0.565563,0.958585,0.988661,0.302532,0.835194,0.0763932,0.208536,0.00822026,0.219362,0.177385,0.799692,0.750767,0.61511,0.775943,0.646903,0.104118,0.666597,0.502903,0.978059,0.0828688,0.199697,0.869851,0.554872,0.407912,0.45295,0.0449716,0.840027,0.668863,0.644674,0.235459,0.0723323,0.749886,0.509429,0.844103,0.297489,0.189783,0.46337,0.151781,0.929846,0.112896,0.347818,0.129654,0.991246,0.583372,0.391518,0.863421,0.393414,0.873051,0.729452,0.960025,0.42416,0.0945969,0.765701,0.839153,0.480849,0.417491,0.635301,0.678966,0.571741,0.687156,0.500926,0.153137,0.91179,0.00687903,0.849336,0.150616,0.0137081,0.811795,0.760054,0.799057,0.883667,0.885916,0.889339,0.520081,0.244389,0.559783,0.393558,0.0966921,0.501455,0.704153,0.986051,0.142351,0.210924,0.547985,0.542696,0.977488,0.552891,0.746559,0.888217,0.382559,0.553749,0.510435,0.721883,0.887349,0.840342,0.564929,0.320989,0.826604,0.654384,0.108752,0.530142,0.193829,0.300622,0.974424,0.14431,0.89825,0.229912,0.0128151,0.789584,0.740328,0.68757,0.462925,0.596773,0.341286,0.422047,0.967159,0.774038,0.300388,0.163655,0.317432,0.445659,0.339495,0.307777,0.0631644,0.950824,0.750175,0.559661,0.0876321,0.512741,0.793979,0.995794,0.345717,0.551469,0.444744,0.626644,0.433711,0.0841647,0.863347,0.441157,0.894343,0.1027,0.598819,0.08071,0.173858,0.318619,0.385946,0.298415,0.844816,0.848709,0.435435,0.873683,0.361345,0.195654,0.969325,0.66423,0.586619,0.451275,0.723183,0.287229,0.965391,0.842039,0.18905,0.834214,0.70131,0.543856,0.00432742,0.796094,0.857944,0.760042,0.141684,0.276901,0.492507,0.102644,0.80922,0.550084,0.781389,0.385847,0.386554,0.146241,0.300724,0.382418,0.995887,0.831984,0.369992,0.722864,0.784429,0.430164,0.243726,0.590436,0.59765,0.711352,0.228572,0.210763,0.0569633,0.292092,0.929046,0.952178,0.0532331,0.318825,0.318411,0.446209,0.670232,0.419553,0.697141,0.175165,0.211461,0.685794,0.735694,0.131923,0.835817,0.42632,0.570361,0.21362,0.0295216,0.419501,0.409549,0.291711,0.845504,0.780409,0.579616,0.867968,0.804867,0.171757,0.348829,0.459208,0.264533,0.658746,0.397701,0.0633212,0.508438,0.146265,0.596144,0.747601,0.506193,0.595511,0.158392,0.768692,0.0271238,0.394102,0.194874,0.693211,0.411193,0.753317,0.220978,0.192653,0.374107,0.827995,0.264409,0.51491,0.702855,0.528912,0.149252,0.202902,0.0680147,0.278968,0.310664,0.0183396,0.33356,0.142189,0.697793,0.533396,0.701676,0.197908,0.301793,0.839563,0.65613,0.344282,0.0297158,0.80813,0.579246,0.286595,0.523234,0.988129,0.795799,0.902211,0.398377,0.182894,0.58293,|0.687465,0.494784,0.219204,0.735451,0.427303,0.371307,0.803769,0.496903,0.251718,0.0725178,0.00687957,0.0935642,0.538681,0.626464,0.824896,0.644623,0.38315,0.00165039,0.987949,0.0637062,0.52687,0.904467,0.354577,0.530988,0.323153,0.149022,0.678831,0.148739,0.15585,0.970142,0.892541,0.382636,0.71522,0.589904,0.102652,0.667786,0.0766082,0.29088,0.894672,0.439924,0.65987,0.7194,0.314553,0.327979,0.673124,0.924516,0.560491,0.605739,0.527209,0.317492,0.0959858,0.232268,0.807703,0.79707,0.345108,0.460928,0.711883,0.918312,0.883552,0.214274,0.79245,0.975829,0.401983,0.944631,0.562223,0.622769,0.267981,0.963744,0.154401,0.199868,0.408662,0.747683,0.0836033,0.0377091,0.214038,0.559203,0.230187,0.607017,0.808567,0.53959,0.104379,0.262436,0.617309,0.970261,0.519294,0.998412,0.932338,0.1909,0.723734,0.819083,0.721598,0.635599,0.603088,0.90715,0.501677,0.160682,0.34637,0.783712,0.989738,0.850382,0.376511,0.897367,0.140117,0.267055,0.832071,0.735698,0.162722,0.614075,0.494915,0.546674,0.868361,0.71304,0.424857,0.532026,0.294742,0.233368,0.205517,0.655781,0.366049,0.372452,0.454617,0.588538,0.618452,0.11518,0.712177,0.498992,0.169013,0.810012,0.822271,0.890582,0.927787,0.945534,0.686649,0.952951,0.696437,0.797789,0.825135,0.573545,0.745335,0.418635,0.709819,0.914453,0.201307,0.187352,0.840198,0.498973,0.750969,0.887571,0.904899,0.148576,0.305684,0.501857,0.24524,0.499721,0.0701152,0.324743,0.914529,0.903839,0.182264,0.906485,0.193997,0.18337,0.381423,0.194098,0.72485,0.951785,0.0240013,0.431141,0.436741,0.932011,0.468552,0.180425,0.976224,0.787166,0.313033,0.627733,0.65546,0.244375,0.773007,0.422137,0.812175,0.944176,0.597302,0.897391,0.64916,0.948299,0.926862,0.427924,0.355128,0.22508,0.657471,0.5376,0.219497,0.186746,0.920401,0.378718,0.759325,0.467465,0.714864,0.28179,0.928619,0.260896,0.978388,0.514258,0.436361,0.292705,0.622314,0.437482,0.970367,0.568746,0.403296,0.022328,0.0233978,0.246115,0.209434,0.45866,0.4256,0.422784,0.00974947,0.361734,0.858031,0.0853305,0.44373,0.73659,0.783676,0.116608,0.660866,0.463713,0.224731,0.232876,0.910517,0.190515,0.564605,0.0343074,0.586913,0.748836,0.499426,0.702326,0.793876,0.742153,0.115427,0.651956,0.835475,0.566437,0.838124,0.131284,0.89031,0.14281,0.716798,0.932386,0.682668,0.696118,0.0993872,0.697251,0.196382,0.390432,0.0730339,0.304885,0.668058,0.141593,0.0664756,0.325336,0.113433,0.827154,0.0246869,0.359376,0.539325,0.819812,0.585527,0.907127,0.832553,0.602777,0.463269,0.660014,0.543165,0.127293,0.198977,0.295764,0.0521297,0.585648,0.269795,0.797095,0.675325,0.244981,0.94117,0.936836,0.970083,0.465676,0.401883,0.366493,0.612567,0.547912,0.678516,0.568216,0.216386,0.0160089,0.45228,0.411243,0.7907,0.00261003,0.35113,0.530993,0.595447,0.0533755,0.282096,0.178148,0.476356,0.273002,0.725409,0.0281225,0.416625,0.968147,0.990387,0.582607,0.0923018,0.922689,0.0832385,0.696484,0.830439,0.644348,0.600706,0.118817,0.474008,0.366781,0.537134,0.203595,0.62362,0.159734,0.734439,0.783631,0.519698,0.033015,0.365163,0.826207,0.348509,0.219106,0.530109,0.443932,0.628462,0.309466,0.330334,0.927955,0.0607938,0.577338,0.252128,0.0624301,0.0996879,0.856231,0.96766,0.967438,0.758108,0.20756,0.0224497,0.380129,0.565299,0.444895,0.896128,0.803784,0.601994,0.585039,0.516915,0.802813,0.92393,0.588884,0.985557,0.130957,0.0421194,0.355651,0.152578,0.213778,0.831714,0.806255,0.462789,0.436831,0.705821,0.0691397,0.204368,0.454265,0.436125,0.0596539,0.400976,0.262354,0.774413,0.899472,0.823727,0.943624,0.664289,0.518925,0.550395,0.975381,0.796152,0.947592,0.820934,0.72063,0.39273,0.892546,0.0487269,0.379228,0.175388,0.182415,0.708228,0.149309,0.777292,0.17013,0.426756,0.929601,0.910401,0.264871,0.0752261,0.413263,0.833101,0.0820999,0.410608,0.931127,0.816556,0.821757,0.817989,0.652162,0.834374,0.653623,0.663876,0.160139,0.813176,0.862784,0.215584,0.240393,0.205284,0.308586,0.808244,0.633819,0.536558,0.393336,0.178493,0.0918044,0.168959,0.539545,0.569559,0.354074,0.75855,0.520803,0.0809814,0.565823,0.431836,0.703246,0.697818,0.173936,0.88483,0.176879,0.662094,0.323534,0.603682,0.232612,0.654899,0.739203,0.108528,0.240343,0.981285,0.0445654,0.277049,0.645453,0.105522,0.0554391,0.713644,0.558647,0.36837,0.746563,0.264529,0.0727879,0.527046,0.143022,0.478626,0.0996615,0.976466,0.513995,0.836016,0.101852,0.861215,0.430181,0.839603,0.265861,0.773908,0.40947,0.589379,0.681952,0.302714,0.548346,0.462376,0.535926,0.780377,0.588709,0.693336,0.161781,0.284398,0.740712,0.737098,0.500114,0.319995,0.865375,0.26038,0.946213,0.962214,0.985224,0.618008,0.791305,0.914697,0.724005,0.0437375,0.427284,0.825081,0.42327,0.062243,0.437618,0.405826,0.034229,0.790255,0.47333,0.502305,0.236194,0.488995,0.920958,0.286428,0.804147,0.0480168,0.0254006,0.151975,0.406357,0.408706,0.436898,0.936732,0.957232,0.257566,0.022989,0.82672,0.159863,0.50115,0.637695,0.0652995,0.862048,0.646007,0.626181,0.165168,0.571351,0.671119,0.453448,0.944524,0.652409,0.281727,0.533525,0.548469,0.814276,0.798287,0.887992,0.17238,0.206977,0.0911363,0.0024398,0.762793,0.310392,0.674696,0.202492,0.340718,0.663056,0.0928723,0.203914,0.226242,0.777807,0.260687,0.40973,0.764714,0.383571,0.778113,0.0316991,0.653282,0.777576,0.318264,0.867506,0.813711,0.8412,0.581606,0.965045,0.182579,0.91785,0.579664,0.142233,0.0186853,0.24606,0.910347,0.0412927,0.105585,0.525348,0.84414,0.773435,0.0449088,0.839409,0.613762,0.959456,0.79532,0.996554,0.898886,0.169619,0.30307,0.656128,0.635023,0.251679,0.966648,0.176322,0.83963,0.667919,0.751535,0.542623,0.818794,0.956468,0.334487,0.0863621,0.783106,0.596321,0.340003,0.711891,0.790086,0.64519,0.00395215,0.536301,0.156552,0.584503,0.664348,0.371901,0.168251,0.407435,0.432043,0.181688,0.780998,0.42737,0.0437477,0.286019,0.653175,0.612569,0.685096,0.858118,0.0710028,0.105757,0.422845,0.507033,0.91482,0.287413,0.456696,0.856305,0.09591,0.699807,0.678039,0.0491543,0.357277,0.900561,0.0563775,0.547837,0.661699,0.785008,0.995197,0.948791,0.0277926,0.699313,0.952408,0.614999,0.488613,0.0412433,0.517208,0.481378,0.633651,0.665389,0.289805,0.778267,0.226737,0.934165,0.335487,0.831733,0.503268,0.147511,0.729344,0.588293,0.546546,0.994015,0.426618,0.05594,0.54366,0.655384,0.827638,0.311198,0.74406,0.306543,0.420964,0.527717,0.205882,0.452198,0.709852,0.186011,0.697818,0.483601,0.955323,0.7977,0.271419,0.361492,0.456456,0.718869,0.75155,0.752519,0.794459,0.500947,0.0776151,0.597839,0.25601,0.726268,0.642039,0.576176,0.0719174,0.869685,0.49832,0.799305,0.788374,0.281983,0.215891,0.496948,0.486128,0.0638047,0.45104,0.0541298,0.706344,0.197827,0.719158,0.441454,0.391578,0.81614,0.584201,0.270304,0.938965,0.436323,0.846759,0.311837,0.510917,0.192582,0.599028,0.0957896,0.451933,0.2852,0.704498,0.720337,0.690912,0.338717,0.674014,0.948949,0.543695,0.397458,0.651436,0.648236,0.807146,0.877665,0.325614,0.79117,0.223483,0.88791,0.567529,0.159636,0.575188,0.613872,0.421279,0.579338,0.470937,0.291277,0.242951,0.996226,0.956934,0.843673,0.618146,0.445455,0.082602,0.67448,0.0698942,0.954411,0.0313746,0.545445,0.309888,0.106848,0.443212,0.0208966,0.23976,0.859976,0.368181,0.655814,0.414366,0.761286,0.287033,0.815559,0.354387,0.785091,0.224975,0.309262,0.626988,0.497169,0.523008,0.671248,0.989032,0.984697,0.339177,0.425229,0.628861,0.678434,0.593721,0.165051,0.475862,0.340344,0.485599,0.600394,0.18247,0.290215,0.861072,0.417294,0.863971,0.974109,0.208361,0.3021,0.371494,0.328935,0.35905,0.222376,0.429613,0.807226,0.122514,0.142061,0.64077,0.57919,0.552152,0.304083,0.775336,0.169284,0.287515,0.883504,0.90678,0.703688,0.773836,0.158757,0.593644,0.096846,0.845429,0.778549,0.532487,0.535408,0.024823,0.307337,0.250881,0.808639,0.442795,0.200308,0.132155,0.184718,0.182732,0.319261,0.215862,0.831258,0.132966,0.397788,0.428237,0.965556,0.268833,0.290806,0.417822,0.313881,0.950749,0.500536,0.104526,0.0721292,0.408569,0.0337126,0.646764,0.0220688,0.774931,0.989588,0.447757,0.788515,0.833162,0.472458,0.711307,0.272064,0.658178,0.921802,0.538623,0.961619,0.230737,0.387251,0.273457,0.778815,0.988927,0.579705,0.00868464,0.953599,0.504857,0.728436,0.834048,0.169969,0.143584,0.627723,0.964887,0.130558,0.900588,0.629735,0.993481,0.797924,0.803648,0.482669,0.850235,0.592037,0.905456,0.0420275,0.103457,0.42911,0.478463,0.666109,0.214738,0.753156,0.658686,0.0711028,0.420886,0.337057,0.48101,0.624789,0.332201,0.197371,0.299205,0.572583,0.580368,0.00806206,0.23764,0.991358,0.919608,0.967187,0.586754,0.15399,0.266355,0.873757,0.802688,0.423404,0.65094,0.91847,0.789201,0.806115,0.101322,0.277623,0.795657,0.802625,0.676485,0.315607,0.552758,0.282174,0.300381,0.782739,0.295354,0.763254,0.802181,0.693719,0.991932,0.673448,0.192976,0.202851,0.637344,0.0854814,0.774726,0.226649,0.218093,0.124842,0.825462,0.895687,0.678374,0.552158,0.669738,0.875923,0.238918,0.186012,0.0457407,0.19899,0.883271,0.976395,0.878319,0.896732,0.294038,0.996352,0.415724,0.398102,0.171448,0.865618,0.54309,0.949422,0.98952,0.398858,0.46914,0.673843,0.982197,0.582646,0.0132347,0.00156909,0.0143807,0.404422,0.957621,0.186283,|0.0177834,0.750113,0.989925,0.796878,0.376426,0.487373,0.0981194,0.0907704,0.228858,0.363953,0.404017,0.584955,0.205124,0.469789,0.650219,0.754575,0.616551,0.488949,0.406431,0.151713,0.591907,0.180591,0.505127,0.269902,0.552388,0.295977,0.996188,0.185451,0.648554,0.970033,0.157159,0.704722,0.91398,0.230364,0.776228,0.0989693,0.913969,0.864048,0.69954,0.00815302,0.0982013,0.854398,0.866451,0.417017,0.457154,0.272229,0.091224,0.52204,0.500824,0.607043,0.198174,0.169181,0.39969,0.125763,0.348545,0.855022,0.0634843,0.261101,0.216602,0.0228234,0.548623,0.498558,0.909725,0.978866,0.0762799,0.493949,0.455983,0.341141,0.422724,0.242156,0.761109,0.312778,0.751587,0.447924,0.675533,0.0989249,0.735327,0.498938,0.266683,0.478769,0.402406,0.698706,0.983887,0.231584,0.664904,0.340835,0.835939,0.129519,0.783145,0.97007,0.701314,0.416363,0.468151,0.513396,0.256397,0.827468,0.342727,0.631937,0.66822,0.682867,0.904252,0.718976,0.767858,0.608663,0.599469,0.99437,0.439505,0.501935,0.980337,0.034857,0.858807,0.231583,0.248354,0.888798,0.27485,0.880904,0.370809,0.743723,0.790581,0.584125,0.840593,0.491571,0.575554,0.915155,0.0495461,0.37906,0.0438055,0.342253,0.287554,0.96103,0.629802,0.440542,0.107566,0.955527,0.10398,0.0806737,0.487899,0.586736,0.140716,0.842659,0.12778,0.645267,0.957512,0.738133,0.324507,0.194872,0.803825,7.64728e-05,0.396467,0.221472,0.741258,0.564223,0.54886,0.940183,0.12699,0.794848,0.45529,0.275282,0.676369,0.45867,0.559944,0.0577011,0.0169109,0.0805593,0.543858,0.294339,0.953376,0.827133,0.43792,0.598021,0.545938,0.666285,0.801287,0.0429721,0.943891,0.586036,0.838858,0.0171608,0.438577,0.81876,0.977648,0.693519,0.338992,0.035459,0.626689,0.415807,0.419025,0.535563,0.976496,0.433383,0.573788,0.565638,0.694807,0.076931,0.270833,0.60791,0.824949,0.0189807,0.556537,0.631486,0.348644,0.410399,0.851365,0.371309,0.443259,0.712822,0.174208,0.0926512,0.217818,0.776777,0.0627112,0.359975,0.446265,0.961133,0.326593,0.0810913,0.099928,0.432201,0.25446,0.281901,0.387332,0.539992,0.423422,0.340255,0.682452,0.658544,0.722403,0.423867,0.489997,0.38354,0.151985,0.592132,0.25787,0.033493,0.542212,0.911969,0.057024,0.946057,0.381048,0.0892934,0.00478584,0.0905833,0.296451,0.794979,0.774546,0.389616,0.810908,0.69272,0.653858,0.732643,0.617332,0.589169,0.661664,0.305104,0.0622317,0.859417,0.626847,0.306228,0.169905,0.48684,0.0500252,0.141893,0.0523895,0.448529,0.34758,0.566501,0.102349,0.329013,0.518544,0.330318,0.0454024,0.63682,0.054931,0.595555,0.578831,0.0839296,0.189523,0.488178,0.879194,0.336652,0.919856,0.430751,0.882976,0.0886418,0.713136,0.0625366,0.433792,0.693658,0.108803,0.83651,0.510211,0.852922,0.0670522,0.782041,0.894513,0.527988,0.0718664,0.773269,0.158449,0.120158,0.325,0.249344,0.0873256,0.508773,0.748586,0.0408303,0.0853626,0.911374,0.671406,0.634802,0.111593,0.597069,0.684819,0.967701,0.434876,0.552946,0.179165,0.907136,0.974044,0.659984,0.371066,0.422962,0.222291,0.232119,0.709494,0.386143,0.120129,0.995107,0.475705,0.242987,0.795836,0.30683,0.746405,0.540483,0.36213,0.712625,0.559866,0.922364,0.023415,0.0456939,0.475383,0.83587,0.660425,0.320271,0.282035,0.205286,0.138531,0.764967,0.0838773,0.609822,0.764292,0.815497,0.814209,0.589685,0.52068,0.482922,0.468087,0.523235,0.319646,0.0423127,0.884338,0.441915,0.98616,0.400015,0.175043,0.812775,0.504208,0.804798,0.642909,0.736144,0.000776231,0.652622,0.603178,0.204669,0.663218,0.886132,0.020711,0.201524,0.0442117,0.490892,0.65604,0.567035,0.574436,0.197073,0.109833,0.88059,0.426618,0.426325,0.380089,0.313538,0.369049,0.468722,0.994007,0.324755,0.529293,0.00896281,0.992343,0.399056,0.556225,0.942284,0.00524193,0.0335525,0.83571,0.192431,0.720544,0.753158,0.832212,0.407597,0.293751,0.188464,0.783882,0.212584,0.32969,0.163604,0.0913491,0.206886,0.00562149,0.591685,0.247804,0.666966,0.801462,0.372766,0.24096,0.67444,0.650342,0.0382457,0.351172,0.0998483,0.734284,0.742903,0.219876,0.08478,0.670225,0.379631,0.16589,0.867023,0.38864,0.848535,0.648836,0.788709,0.0428888,0.327627,0.991506,0.441806,0.166869,0.251436,0.89744,0.476044,0.276273,0.491217,0.669242,0.349938,0.343974,0.321036,0.941118,0.408221,0.995433,0.846219,0.359618,0.742132,0.879825,0.416,0.398452,0.710085,0.430817,0.751899,0.100542,0.273878,0.772283,0.544058,0.417611,0.801512,0.460319,0.757589,0.885442,0.722363,0.0141453,0.474491,0.814531,0.218683,0.397592,0.286396,0.694151,0.651797,0.822524,0.247818,0.477301,0.52279,0.757813,0.424081,0.46044,0.609807,0.789787,0.158587,0.697536,0.893125,0.16323,0.508264,0.433661,0.356962,0.426487,0.714786,0.325391,0.0887273,0.976184,0.934077,0.0738519,0.261382,0.875706,0.671049,0.578059,0.0895358,0.394442,0.495259,0.00535959,0.344135,0.328458,0.611239,0.0471259,0.692776,0.515532,0.83118,0.650432,0.490459,0.705725,0.0961885,0.0269966,0.795552,0.493734,0.174672,0.932946,0.716981,0.0707252,0.220241,0.700359,0.279193,0.624967,0.254242,0.230801,0.302723,0.376197,0.213809,0.541517,0.470425,0.418506,0.623622,0.920238,0.404239,0.845922,0.526106,0.181311,0.998572,0.0180119,0.981387,0.217633,0.927647,0.764287,0.518404,0.527817,0.0883173,0.858058,0.726894,0.700911,0.851224,0.23235,0.788014,0.196201,0.992941,0.619649,0.862131,0.209347,0.808582,0.326516,0.0903816,0.521798,0.933322,0.180448,0.45212,0.565768,0.697196,0.435623,0.866136,0.85839,0.818165,0.161668,0.3489,0.382715,0.473453,0.819626,0.641852,0.553309,0.807454,0.31525,0.182324,0.632225,0.112348,0.110335,0.0308326,0.932683,0.887728,0.856829,0.361236,0.153194,0.565599,0.353916,0.152461,0.253256,0.592611,0.196145,0.229674,0.566904,0.25055,0.700929,0.924531,0.0275832,0.911721,0.146588,0.643503,0.641384,0.129735,0.217536,0.813918,0.975039,0.763187,0.755144,0.115727,0.0771289,0.133678,0.839821,0.358534,0.314058,0.66677,0.857154,0.5483,0.879638,0.245865,0.836879,0.170861,0.209176,0.14113,0.71978,0.156058,0.969075,0.699305,0.672182,0.991575,0.198929,0.659832,0.995585,0.920065,0.98896,0.00329727,0.185602,0.373347,0.364205,0.903027,0.560875,0.123447,0.535803,0.362744,0.810156,0.136888,0.896429,0.0907826,0.646203,0.414961,0.320293,0.450861,0.867305,0.928179,0.457884,0.770059,0.74725,0.349827,0.213798,0.0706335,0.496027,0.908215,0.782582,0.699664,0.885006,0.139253,0.491637,0.77755,0.0294765,0.101359,0.0901827,0.973495,0.527462,0.764472,0.546321,0.661393,0.742017,0.807236,0.791449,0.287755,0.431,0.900191,0.0140746,0.197101,0.304194,0.633267,0.206926,0.635804,0.567751,0.86707,0.741632,0.271077,0.802674,0.26742,0.0648971,0.604808,0.0275674,0.545027,0.552938,0.10092,0.757312,0.791369,0.71504,0.044986,0.182988,0.842174,0.0743594,0.276607,0.440857,0.697649,0.712776,0.791737,0.410217,0.142238,0.21259,0.549086,0.754144,0.682767,0.378867,0.474489,0.153534,0.372329,0.205297,0.225086,0.792852,0.814724,0.316992,0.814837,0.267251,0.687191,0.295063,0.393028,0.75728,0.0779053,0.925221,0.0471616,0.0344145,0.0521088,0.964649,0.192901,0.895035,0.400396,0.236875,0.459999,0.785614,0.516499,0.350652,0.113046,0.468361,0.672784,0.519364,0.891591,0.585649,0.920384,0.249214,0.79511,0.810665,0.000560164,0.542303,0.6079,0.580995,0.590963,0.260386,0.630301,0.735393,0.324593,0.704041,0.0240771,0.745807,0.701508,0.657289,0.591658,0.269293,0.174277,0.906216,0.416153,0.172187,0.090742,0.804362,0.51538,0.503439,0.329802,0.134677,0.314368,0.318574,0.487127,0.611815,0.639455,0.0762664,0.00759268,0.131905,0.80719,0.219938,0.403756,0.432994,0.80232,0.576664,0.014509,0.501571,0.0549746,0.067887,0.489366,0.109263,0.230922,0.330874,0.306192,0.471176,0.849899,0.787676,0.787204,0.446878,0.806971,0.0141974,0.844995,0.291187,0.745076,0.461115,0.511935,0.970406,0.100982,0.836941,0.053438,0.654324,0.418045,0.586403,0.789546,0.469572,0.600317,0.36413,0.868746,0.316466,0.623624,0.000206113,0.351648,0.0659099,0.0497705,0.465298,0.570546,0.772547,0.542898,0.562845,0.455834,0.546914,0.181154,0.237788,0.984087,0.303241,0.312871,0.635189,0.665858,0.906513,0.689892,0.235289,0.99158,0.772608,0.798516,0.962037,0.0167717,0.430326,0.161427,0.171761,0.871319,0.33336,0.0156802,0.000904918,0.0458424,0.771386,0.285484,0.24666,0.568035,0.662439,0.499488,0.834885,0.302559,0.910328,0.659741,0.143231,0.294726,0.971839,0.806506,0.35069,0.795886,0.339008,0.0888081,0.155467,0.695117,0.187247,0.358424,0.784488,0.00062871,0.783495,0.320255,0.461992,0.401731,0.50253,0.308439,0.607409,0.868874,0.784568,0.444516,0.539137,0.154528,0.450459,0.877404,0.0469816,0.80491,0.244849,0.192097,0.774733,0.655212,0.0660759,0.247244,0.181754,0.893314,0.286586,0.776762,0.111216,0.767649,0.338424,0.986608,0.0476496,0.89336,0.0674297,0.0377242,0.0418544,0.124708,0.13938,0.709905,0.546334,0.34148,0.698275,0.752966,0.466619,0.0482626,0.560139,0.621257,0.463503,0.112064,0.671215,0.99454,0.197817,0.0998901,0.510828,0.149955,0.927959,0.5583,0.623024,0.792323,0.225193,0.691211,0.0774109,0.333461,0.27636,0.270158,0.261779,0.236253,0.799399,0.746631,0.490153,0.563068,0.88358,0.871536,0.133509,0.532925,0.684916,0.560682,0.795623,0.662704,0.958877,0.71639,0.630447,0.598833,0.723272,0.418609,0.871968,0.854526,0.869192,0.954778,0.658213,0.150081,0.342294,0.602653,0.957852,0.918089,|0.479771,0.0828566,0.861329,0.124281,0.555364,0.654596,0.63253,0.871724,0.619393,0.400739,0.391303,0.817096,0.912487,0.023252,0.49202,0.0925341,0.141706,0.548495,0.00159246,0.709942,0.955905,0.482503,0.032505,0.365599,0.916562,0.772693,0.411146,0.56022,0.229768,0.203373,0.359099,0.0204194,0.611547,0.319447,0.903283,0.645104,0.559465,0.666694,0.0815691,0.590333,0.860484,0.515532,0.246455,0.713271,0.0148355,0.000147402,0.413757,0.994244,0.852339,0.568121,0.0452084,0.161322,0.399431,0.497386,0.117855,0.98675,0.141067,0.855723,0.604075,0.279328,0.748571,0.74273,0.208746,0.139181,0.705761,0.444561,0.449401,0.170425,0.372537,0.778128,0.893589,0.923988,0.459041,0.274586,0.986354,0.01498,0.0275243,0.185285,0.267388,0.394936,0.0574993,0.401986,0.695861,0.451302,0.0726266,0.68578,0.771839,0.95172,0.368918,0.714831,0.779989,0.692389,0.614609,0.220698,0.450898,0.230877,0.16023,0.315697,0.0676613,0.703235,0.805782,0.648057,0.0898319,0.321975,0.112795,0.49649,0.850229,0.358107,0.313379,0.89837,0.577307,0.381641,0.0305947,0.767402,0.642569,0.956696,0.487892,0.0619823,0.301158,0.441828,0.0817899,0.723732,0.907134,0.58309,0.149272,0.382729,0.651562,0.867097,0.397047,0.650863,0.914384,0.9154,0.913942,0.308563,0.591291,0.805305,0.762643,0.618433,0.792942,0.156512,0.160041,0.321619,0.53387,0.197671,0.324595,0.073041,0.220194,0.593054,0.989016,0.95232,0.305998,0.637273,0.733405,0.109053,0.832633,0.761735,0.278958,0.677665,0.0859942,0.225906,0.753646,0.56124,0.194493,0.685088,0.422814,0.0577755,0.549027,0.0813892,0.522558,0.843509,0.699283,0.554348,0.157193,0.657887,0.110728,0.486733,0.338097,0.516093,0.785697,0.0324619,0.515506,0.449416,0.433268,0.85265,0.440228,0.348458,0.902779,0.85983,0.72299,0.382745,0.22721,0.913045,0.723864,0.622477,0.237727,0.546092,0.10624,0.136802,0.747578,0.703395,0.854677,0.0268722,0.297683,0.575396,0.638246,0.670294,0.729242,0.991443,0.869398,0.392861,0.717699,0.507939,0.111358,0.132618,0.565662,0.188299,0.330236,0.324798,0.215898,0.642686,0.297108,0.946835,0.438139,0.880547,0.534162,0.394004,0.457721,0.559975,0.940635,0.884995,0.130715,0.0310119,0.716225,0.771376,0.235352,0.730184,0.0314572,0.0587227,0.144437,0.969749,0.805192,0.094984,0.505045,0.316916,0.50366,0.0992622,0.791454,0.373176,0.385925,0.601603,0.564478,0.701534,0.180913,0.867444,0.868561,0.453943,0.216896,0.181412,0.245605,0.349159,0.374654,0.726692,0.62414,0.84277,0.856347,0.611974,0.704821,0.379048,0.155055,0.715482,0.793275,0.914589,0.943244,0.817824,0.537166,0.276539,0.815233,0.504407,0.726026,0.620386,0.476867,0.398649,0.398543,0.273714,0.0399185,0.175128,0.423361,0.528387,0.41819,0.303825,0.124984,0.102351,0.0375808,0.912925,0.95158,0.438443,0.500869,0.989161,0.672918,0.766824,0.764191,0.815629,0.712954,0.71442,0.819889,0.217319,0.677753,0.443395,0.915495,0.680329,0.388519,0.779641,0.332071,0.992073,0.572267,0.857033,0.499913,0.464879,0.747732,0.757504,0.62787,0.121485,0.588449,0.654707,0.874586,0.16935,0.0333713,0.267221,0.520754,0.67161,0.145142,0.892356,0.9695,0.914453,0.121513,0.701966,0.928816,0.459672,0.253064,0.991071,0.966183,0.19489,0.113871,0.520108,0.598314,0.576673,0.826991,0.904403,0.681591,0.155073,0.51413,0.974607,0.141982,0.441529,0.384866,0.346497,0.855084,0.478411,0.529849,0.0977989,0.532378,0.946636,0.999912,0.237077,0.352254,0.577428,0.75063,0.374692,0.0471239,0.0668296,0.828814,0.0933573,0.0414322,0.8136,0.00500405,0.620876,0.584767,0.636489,0.726548,0.249324,0.686619,0.0212268,0.441477,0.108251,0.251079,0.45723,0.807656,0.673197,0.0032177,0.542003,0.0522711,0.0619859,0.803576,0.662386,0.873924,0.856946,0.0858411,0.0409506,0.915637,0.369857,0.938115,0.992972,0.0279798,0.903627,0.00748408,0.0725122,0.866508,0.22471,0.743057,0.785609,0.789062,0.627591,0.310323,0.729502,0.0426614,0.992205,0.901856,0.854129,0.466586,0.621557,0.624513,0.988028,0.756066,0.878176,0.629254,0.771451,0.574474,0.145539,0.00545293,0.920599,0.806074,0.783339,0.0342321,0.602007,0.830571,0.205772,0.865092,0.160685,0.205338,0.898077,0.870738,0.609481,0.831196,0.724483,0.135955,0.176425,0.536311,0.154972,0.676389,0.549665,0.799996,0.226275,0.420106,0.933425,0.666431,0.96622,0.11407,0.2922,0.706491,0.49943,0.250126,0.166294,0.750217,0.713233,0.474527,0.648109,0.849282,0.702713,0.248943,0.0852807,0.207273,0.078024,0.733455,0.652208,0.930551,0.447624,0.639738,0.579439,0.854978,0.875399,0.196961,0.0428873,0.82058,0.858388,0.132447,0.466781,0.217058,0.983182,0.00145054,0.144764,0.945488,0.150163,0.54878,0.573392,0.910776,0.685314,0.995245,0.986629,0.4038,0.525229,0.811682,0.50092,0.54541,0.936761,0.410802,0.606744,0.0436825,0.119037,0.828656,0.613768,0.402917,0.172564,0.226566,0.689712,0.945135,0.339719,0.967692,0.954214,0.971023,0.673202,0.827314,0.383359,0.325283,0.732324,0.150098,0.756379,0.199276,0.55884,0.976698,0.388021,0.787562,0.80072,0.318262,0.0877845,0.448049,0.81263,0.770628,0.967892,0.0533242,0.97599,0.353636,0.29236,0.966899,0.640759,0.165218,0.563507,0.410978,0.685043,0.498917,0.600167,0.645833,0.234166,0.93499,0.525559,0.338302,0.226037,0.20862,0.950438,0.153553,0.537767,0.209694,0.150269,0.498583,0.886762,0.439751,0.495333,0.282173,0.721342,0.616798,0.440646,0.651303,0.310034,0.27303,0.860478,0.725337,0.537803,0.998043,0.362163,0.640719,0.000247896,0.395817,0.490422,0.7751,0.316762,0.355221,0.657965,0.620396,0.132507,0.54008,0.297925,0.264495,0.657609,0.174171,0.839268,0.955777,0.263305,0.436616,0.26965,0.0368388,0.196867,0.39411,0.918075,0.570444,0.917656,0.823007,0.286822,0.926893,0.0081684,0.68255,0.420974,0.65137,0.695166,0.631877,0.514684,0.287499,0.120038,0.351806,0.359753,0.691014,0.579068,0.767437,0.302438,0.678123,0.299392,0.769377,0.267984,0.676722,0.900894,0.98611,0.433367,0.529562,0.0618409,0.172406,0.538232,0.250817,0.853991,0.567046,0.655754,0.703771,0.62546,0.424499,0.0530884,0.0992184,0.719832,0.270938,0.858461,0.0951695,0.253537,0.0911475,0.214483,0.98645,0.740514,0.60682,0.23632,0.72173,0.668651,0.399205,0.433899,0.742682,0.842204,0.13679,0.145651,0.547387,0.246313,0.346836,0.0895861,0.930515,0.239269,0.735301,0.525979,0.949901,0.814103,0.639043,0.632855,0.794591,0.26964,0.689751,0.349877,0.344162,0.530295,0.189951,0.808529,0.573572,0.981313,0.741512,0.825968,0.553171,0.243566,0.6415,0.698692,0.537366,0.332651,0.155008,0.623928,0.630601,0.240066,0.0399006,0.966293,0.483298,0.239771,0.211362,0.582006,0.953362,0.717031,0.479316,0.16186,0.928342,0.741757,0.952843,0.0883045,0.694121,0.769865,0.5731,0.747737,0.808,0.457695,0.626084,0.227904,0.329246,0.0858456,0.384452,0.497294,0.773227,0.845707,0.318928,0.69272,0.198041,0.791312,0.570694,0.21612,0.770115,0.0629966,0.632714,0.0764467,0.467796,0.576059,0.590599,0.315361,0.500862,0.0810804,0.543039,0.288882,0.255478,0.217047,0.151335,0.997166,0.290033,0.79024,0.14703,0.370865,0.96109,0.31738,0.287411,0.140276,0.666247,0.615725,0.615357,0.341602,0.398501,0.369898,0.102252,0.637067,0.657479,0.341528,0.70212,0.374515,0.163509,0.452781,0.987791,0.919194,0.463262,0.430774,0.287667,0.52779,0.499085,0.346221,0.371366,0.43372,0.220626,0.13673,0.130603,0.211216,0.963048,0.903387,0.625185,0.565092,0.479371,0.358598,0.262501,0.926038,0.419211,0.539764,0.275067,0.705994,0.131077,0.685536,0.402212,0.295988,0.0968374,0.527863,0.395547,0.410566,0.932386,0.421842,0.888231,0.920726,0.306803,0.0297104,0.728455,0.826741,0.887474,0.165521,0.243745,0.69056,0.380227,0.45919,0.32929,0.68461,0.270452,0.960288,0.763041,0.876103,0.974506,0.955642,0.781893,0.352702,0.211123,0.779571,0.327253,0.631441,0.256243,0.357953,0.253636,0.38217,0.442472,0.442292,0.653743,0.234068,0.784687,0.233159,0.0623881,0.50891,0.361125,0.0802899,0.400508,0.376942,0.624846,0.394875,0.715778,0.148535,0.24139,0.879458,0.00239515,0.842155,0.931418,0.268506,0.0714467,0.45891,0.82136,0.291854,0.509312,0.0979071,0.237879,0.374732,0.678202,0.034821,0.650888,0.972191,0.915212,0.246949,0.102417,0.613799,0.523279,0.734422,0.899905,0.219558,0.27792,0.193271,0.429247,0.649472,0.102899,0.898951,0.960858,0.647477,0.173071,0.604466,0.493742,0.499409,0.579488,0.784809,0.0285747,0.027711,0.602886,0.212924,0.805425,0.774901,0.874548,0.360997,0.0326989,0.483846,0.337487,0.0452914,0.875024,0.276814,0.576509,0.212307,0.0256471,0.725262,0.827443,0.999865,0.775352,0.452173,0.161254,0.439743,0.841476,0.73294,0.440222,0.547082,0.643791,0.35603,0.447334,0.92952,0.926631,0.563297,0.546606,0.253559,0.200623,0.12311,0.768759,0.68744,0.340441,0.847514,0.84727,0.480151,0.518178,0.536802,0.371104,0.196102,0.544779,0.78551,0.868302,0.716352,0.261097,0.674384,0.0813762,0.574274,0.165778,0.512284,0.854794,0.535094,0.079509,0.679557,0.886073,0.682808,0.819066,0.699524,0.907169,0.641687,0.724454,0.856962,0.162764,0.573476,0.379315,0.933707,0.988341,0.590898,0.636467,0.965732,0.166909,0.155208,0.288858,0.43454,0.518134,0.79527,0.423859,0.00193942,0.0852463,0.335643,0.606152,0.205004,0.693162,0.107132,0.912692,0.881537,0.5888,0.320027,0.71344,0.412306,0.00737119,0.77814,0.55202,0.76733,0.199905,0.342985,0.00412196,0.190625,0.0446396,0.248575,0.653821,0.272107,|0.0130588,0.0195439,0.396522,0.891811,0.595187,0.680163,0.0294756,0.255814,0.111379,0.483262,0.847601,0.633186,0.920043,0.175033,0.622568,0.423746,0.952687,0.313661,0.735229,0.55197,0.443835,0.664171,0.959687,0.924564,0.218142,0.639903,0.00258726,0.602913,0.363491,0.50625,0.623823,0.539352,0.721036,0.676661,0.786371,0.199011,0.624655,0.409823,0.0449643,0.0637054,0.861915,0.609802,0.716272,0.395447,0.0534915,0.490545,0.367676,0.030002,0.841433,0.0737712,0.226596,0.55541,0.678768,0.40454,0.205184,0.72485,0.335359,0.128351,0.720403,0.856474,0.211555,0.997967,0.240032,0.17943,0.62315,0.0716477,0.521074,0.844381,0.0815492,0.364614,0.00147289,0.339106,0.330738,0.6415,0.324802,0.106209,0.248086,0.927576,0.760005,0.768515,0.692393,0.136503,0.0452146,0.529135,0.0444862,0.72829,0.585697,0.133942,0.819613,0.55813,0.855758,0.248708,0.826561,0.11804,0.594735,0.443447,0.688494,0.0533773,0.744601,0.290025,0.368833,0.540638,0.464445,0.67795,0.145211,0.642208,0.0745989,0.201456,0.0204858,0.88243,0.549106,0.785522,0.986853,0.00737214,0.741647,0.761633,0.241189,0.830038,0.312554,0.801485,0.396394,0.726102,0.54303,0.849274,0.858806,0.41482,0.176087,0.979137,0.776416,0.129903,0.481875,0.830789,0.373388,0.397245,0.108065,0.385881,0.810863,0.0386364,0.113797,0.995633,0.0330079,0.927299,0.676473,0.25369,0.947125,0.541747,0.216292,0.492418,0.107146,0.0179619,0.155131,0.59656,0.66092,0.0967686,0.586448,0.31723,0.0499769,0.123477,0.19687,0.648029,0.89055,0.51647,0.36699,0.647408,0.419645,0.351344,0.969226,0.677385,0.466521,0.617077,0.371373,0.147974,0.577593,0.480247,0.261476,0.0335965,0.0649443,0.159771,0.705057,0.41518,0.908118,0.723122,0.0352987,0.274741,0.393377,0.398004,0.908133,0.541283,0.311376,0.935355,0.987102,0.255973,0.0037992,0.104327,0.683837,0.0379421,0.594955,0.533238,0.293859,0.504825,0.310071,0.928208,0.803767,0.464705,0.699139,0.452436,0.184233,0.159575,0.91077,0.110492,0.798744,0.694407,0.166362,0.0202203,0.838166,0.111569,0.769761,0.489632,0.22525,0.539221,0.051813,0.900431,0.207588,0.797699,0.67784,0.261155,0.593777,0.903185,0.994541,0.5499,0.239863,0.898683,0.921073,0.0425091,0.0867267,0.805438,0.515514,0.696897,0.452232,0.537004,0.0582262,0.737786,0.50003,0.715639,0.727798,0.381648,0.247288,0.424492,0.568674,0.754094,0.274761,0.740822,0.743891,0.445015,0.273664,0.428663,0.441639,0.799379,0.519796,0.144263,0.488453,0.487594,0.640954,0.988463,0.429242,0.273027,0.512829,0.461068,0.53626,0.954477,0.25192,0.96052,0.68185,0.114795,0.436257,0.331027,0.845668,0.985381,0.853543,0.579632,0.494922,0.741725,0.499846,0.00379431,0.319431,0.234003,0.53779,0.77498,0.53507,0.915637,0.126632,0.49891,0.615464,0.217436,0.92283,0.340713,0.163235,0.636587,0.128359,0.805898,0.630457,0.702743,0.399685,0.982678,0.0215269,0.0854748,0.569249,0.811998,0.0300229,0.154008,0.679154,0.109072,0.500108,0.424442,0.866295,0.312521,0.993535,0.927808,0.813577,0.936341,0.683387,0.692501,0.504662,0.988227,0.0525466,0.285517,0.665213,0.199311,0.730123,0.328311,0.239151,0.616975,0.490487,0.0339384,0.879057,0.587231,0.851272,0.735217,0.351626,0.784608,0.433471,0.552982,0.749461,0.456435,0.0326945,0.994455,0.993473,0.879995,0.882542,0.691072,0.629384,0.723452,0.643593,0.447837,0.156609,0.480717,0.209676,0.157531,0.491742,0.245271,0.695258,0.064733,0.321523,0.732592,0.78226,0.710519,0.250801,0.100146,0.340688,0.738079,0.273501,0.766025,0.893404,0.880135,0.703694,0.0897641,0.344606,0.229276,0.951295,0.419143,0.901036,0.462662,0.533116,0.425081,0.658027,0.576454,0.869749,0.782704,0.927676,0.569147,0.0327329,0.592187,0.890103,0.725567,0.869427,0.37803,0.392193,0.172087,0.826634,0.224477,0.143024,0.364494,0.441345,0.779414,0.401288,0.0411395,0.882814,0.291844,0.986864,0.043556,0.538844,0.88155,0.203623,0.562561,0.612707,0.00646985,0.237558,0.832386,0.639157,0.0314887,0.443949,0.84431,0.0515068,0.152749,0.215271,0.987846,0.971679,0.559311,0.651804,0.122189,0.657869,0.352906,0.84811,0.0692871,0.165997,0.247665,0.356334,0.478396,0.364172,0.106662,0.866315,0.40698,0.155838,0.802137,0.900847,0.950954,0.322876,0.26082,0.714838,0.0624285,0.279282,0.880968,0.853074,0.929574,0.078191,0.223782,0.291192,0.256339,0.23394,0.910512,0.912153,0.761965,0.487044,0.250744,0.657465,0.0815096,0.701861,0.113352,0.0598844,0.659766,0.559069,0.707598,0.325905,0.465433,0.753804,0.596137,0.804458,0.164811,0.52084,0.162843,0.449052,0.679876,0.727345,0.48502,0.160646,0.288404,0.560634,0.243774,0.717301,0.292182,0.631206,0.970365,0.521603,0.185921,0.857805,0.98596,0.95119,0.59418,0.242188,0.857237,0.203379,0.322862,0.056664,0.401687,0.459074,0.643749,0.997066,0.0371556,0.855255,0.64735,0.757354,0.190324,0.342595,0.232799,0.107835,0.816082,0.884306,0.309953,0.663726,0.944006,0.0411398,0.43957,0.594578,0.883667,0.961143,0.617234,0.440022,0.132122,0.525585,0.407013,0.226643,0.603806,0.109645,0.870914,0.194682,0.679435,0.871625,0.264324,0.236262,0.237929,0.325567,0.921309,0.781236,0.249412,0.237465,0.575538,0.0928523,0.0992056,0.434679,0.0808706,0.653405,0.746356,0.84721,0.102991,0.695395,0.218289,0.432378,0.145396,0.885107,0.486441,0.863079,0.424639,0.0871293,0.570081,0.0615222,0.154011,0.10708,0.162436,0.422641,0.0368518,0.913925,0.279963,0.72404,0.494036,0.933088,0.914104,0.57832,0.236527,0.550379,0.25538,0.736798,0.962235,0.577656,0.962899,0.267497,0.984465,0.778418,0.344494,0.462999,0.0129795,0.0158076,0.2044,0.737655,0.408147,0.39586,0.0299461,0.223198,0.508647,0.271505,0.481915,0.232942,0.742599,0.607161,0.641784,0.939999,0.668433,0.695071,0.278688,0.815706,0.225899,0.527435,0.251125,0.200759,0.775269,0.450076,0.182386,0.341065,0.456274,0.249487,0.570058,0.403529,0.407147,0.437247,0.139853,0.173384,0.99436,0.134614,0.677732,0.995219,0.515653,0.0127448,0.253348,0.517751,0.913921,0.799897,0.620616,0.478445,0.161608,0.838405,0.66402,0.175016,0.501806,0.639397,0.0532252,0.60326,0.167007,0.908395,0.0369828,0.251853,0.461191,0.907531,0.283524,0.745592,0.426678,0.00198889,0.579674,0.783701,0.289253,0.2701,0.571426,0.109235,0.90726,0.39334,0.606221,0.133718,0.0233254,0.966766,0.266598,0.83187,0.362382,0.014015,0.910577,0.258728,0.167361,0.00276309,0.0124872,0.728398,0.0404911,0.912437,0.638806,0.699139,0.929885,0.173747,0.280431,0.982048,0.925298,0.890226,0.438992,0.43313,0.511965,0.452173,0.230794,0.62999,0.44033,0.700369,0.909472,0.720535,0.680371,0.493228,0.425143,0.556606,0.366808,0.492052,0.795841,0.328638,0.649019,0.856115,0.800697,0.787858,0.704015,0.740051,0.178579,0.229198,0.602272,0.257912,0.0542045,0.509275,0.0570815,0.532307,0.373567,0.0811459,0.317057,0.279406,0.750799,0.798717,0.476875,0.68425,0.496343,0.497048,0.413512,0.201031,0.24392,0.543906,0.752985,0.858068,0.816083,0.181181,0.342531,0.740652,0.516145,0.320559,0.446814,0.049327,0.974661,0.046321,0.868276,0.313287,0.942704,0.193615,0.209384,0.0335208,0.234692,0.323879,0.205338,0.454137,0.109469,0.167426,0.00831336,0.722418,0.465374,0.534841,0.7654,0.647875,0.733027,0.607611,0.0264755,0.15149,0.702861,0.221435,0.263766,0.334901,0.572126,0.383961,0.720825,0.198165,0.810309,0.79344,0.433395,0.630756,0.879643,0.267389,0.711785,0.908615,0.302046,0.272362,0.654573,0.381307,0.696356,0.205285,0.0150107,0.820627,0.943102,0.167285,0.788064,0.762507,0.825595,0.507677,0.0282577,0.742389,0.078073,0.571844,0.733777,0.336129,0.472368,0.727834,0.167776,0.403896,0.0928898,0.304604,0.548523,0.829599,0.854975,0.575448,0.781901,0.908954,0.764582,0.20315,0.0887792,0.629299,0.428987,0.0860098,0.927143,0.550711,0.778515,0.403046,0.538663,0.92703,0.98505,0.557681,0.701433,0.196007,0.878861,0.613803,0.218644,0.500411,0.745276,0.651546,0.0221577,0.00372118,0.132916,0.66053,0.351078,0.666853,0.474208,0.528607,0.0415387,0.777202,0.0146342,0.226075,0.0509627,0.891496,0.425098,0.877143,0.370302,0.0378688,0.0239661,0.7935,0.63579,0.164992,0.919554,0.744716,0.478657,0.777788,0.872742,0.486109,0.833682,0.0170445,0.143308,0.77785,0.0145321,0.118312,0.576709,0.315643,0.566234,0.85972,0.668633,0.885168,0.0852281,0.685458,0.846657,0.570735,0.732945,0.0907333,0.865109,0.204492,0.13637,0.841464,0.78152,0.644562,0.158342,0.882508,0.933706,0.75893,0.44054,0.631414,0.527279,0.648446,0.286625,0.58454,0.0290083,0.417162,0.672637,0.322795,0.822422,0.239323,0.135234,0.953692,0.656789,0.493113,0.147323,0.259381,0.772261,0.481466,0.311351,0.528242,0.209842,0.639003,0.906083,0.701473,0.712915,0.492856,0.432689,0.529373,0.99033,0.295473,0.129233,0.21237,0.267974,0.832996,0.0593863,0.510914,0.252662,0.881999,0.812462,0.323135,0.759124,0.611563,0.929523,0.965017,0.627356,0.8355,0.638016,0.398367,0.373013,0.143208,0.608488,0.259416,0.648806,0.994215,0.596275,0.816138,0.635946,0.0857639,0.0310969,0.418406,0.251238,0.00683481,0.00952965,0.726428,0.55851,0.0406551,0.797478,0.325266,0.316992,0.608809,0.27995,0.334993,0.826425,0.95849,0.739177,0.490475,0.261619,0.00178665,0.659598,0.1479,0.273554,0.196004,0.83577,0.241715,0.666159,0.581512,0.689482,0.048661,0.873167,0.357476,0.196381,0.961062,0.772055,0.922011,0.285521,0.440823,0.0294,0.15872,0.210243,0.503257,0.66511,0.943605,0.754513,0.686237,0.371741,|0.0341277,0.376024,0.273784,0.454626,0.740857,0.640588,0.37754,0.442073,0.813228,0.993935,0.748108,0.545253,0.515743,0.975658,0.31547,0.967874,0.989092,0.696902,0.150379,0.916392,0.111217,0.827213,0.934341,0.178,0.519275,0.934511,0.173191,0.0897818,0.370847,0.111528,0.737301,0.332979,0.043294,0.880219,0.195637,0.660858,0.765761,0.580025,0.691917,0.0960764,0.387379,0.655472,0.56261,0.207959,0.299593,0.0155957,0.0799884,0.386891,0.378833,0.832555,0.633456,0.317587,0.0577739,0.669646,0.258702,0.51863,0.6038,0.281869,0.212876,0.712169,0.149364,0.562077,0.395574,0.340017,0.592859,0.0218718,0.398955,0.884465,0.729526,0.0858954,0.000204027,0.26273,0.763942,0.62446,0.729341,0.593277,0.679405,0.217216,0.058622,0.251825,0.605683,0.613166,0.6284,0.380964,0.154664,0.762129,0.0171357,0.385889,0.894834,0.520938,0.399914,0.35882,0.702636,0.639011,0.71788,0.66165,0.824346,0.660529,0.410495,0.0999094,0.569132,0.681528,0.265947,0.884419,0.155337,0.287089,0.931389,0.622301,0.562801,0.296608,0.157173,0.749989,0.542372,0.639284,0.23176,0.694148,0.444655,0.318542,0.24534,0.276794,0.350851,0.750034,0.00446296,0.277652,0.252417,0.435159,0.698877,0.0561109,0.612215,0.680243,0.109505,0.743993,0.298796,0.0392652,0.942644,0.236751,0.494262,0.918298,0.743982,0.353501,0.258775,0.528292,0.263009,0.880677,0.409316,0.928912,0.618885,0.204705,0.99487,0.34997,0.364868,0.0359109,0.605026,0.765535,0.696616,0.960714,0.741275,0.323634,0.754892,0.782593,0.0249664,0.237292,0.480945,0.00547862,0.502349,0.747111,0.656747,0.0560154,0.416742,0.248378,0.833715,0.223849,0.0337128,0.60256,0.0613522,0.166198,0.116053,0.466787,0.741258,0.184647,0.808617,0.529379,0.982022,0.392947,0.147193,0.429662,0.22544,0.705216,0.728551,0.535997,0.374339,0.439445,0.390762,0.410136,0.762821,0.166538,0.66188,0.38798,0.23388,0.0412958,0.147761,0.848622,0.214917,0.428676,0.237275,0.204614,0.69693,0.910091,0.9646,0.112017,0.328461,0.0385798,0.57463,0.82808,0.0245903,0.983624,0.646662,0.475569,0.0952939,0.266691,0.791509,0.0324568,0.332981,0.691048,0.842564,0.672554,0.45087,0.669816,0.641397,0.469036,0.731319,0.947558,0.572968,0.253077,0.061859,0.4672,0.362009,0.00933188,0.303793,0.0578614,0.887579,0.326161,0.804775,0.76115,0.277748,0.987825,0.858463,0.42431,0.444235,0.788314,0.631945,0.285908,0.404429,0.136499,0.986369,0.20738,0.783548,0.708727,0.441041,0.359,0.281716,0.163473,0.91437,0.78414,0.851416,0.596039,0.810917,0.367044,0.967436,0.326346,0.731019,0.0983873,0.869101,0.301149,0.990062,0.0243506,0.027603,0.668071,0.0869269,0.101996,0.738937,0.401492,0.614706,0.365505,0.825988,0.689691,0.0320446,0.838663,0.172516,0.704884,0.0374471,0.872493,0.938001,0.77934,0.266453,0.247662,0.806012,0.999795,0.435063,0.580851,0.576416,0.269736,0.107057,0.746848,0.471078,0.225682,0.922721,0.409052,0.233244,0.724369,0.224741,0.894703,0.131875,0.375727,0.594921,0.566779,0.387285,0.325358,0.673324,0.696217,0.800653,0.958083,0.610966,0.585072,0.378446,0.302026,0.834352,0.378624,0.143445,0.05192,0.931313,0.638196,0.0791373,0.950229,0.628248,0.631102,0.609326,0.985525,0.338295,0.945716,0.781929,0.441442,0.0846817,0.489302,0.767576,0.484176,0.856278,0.476876,0.345164,0.733083,0.0473786,0.0381671,0.764842,0.652212,0.1198,0.533181,0.0921287,0.121677,0.144658,0.473476,0.0635048,0.27022,0.990208,0.0277765,0.675628,0.176254,0.375705,0.00688159,0.652141,0.450564,0.551135,0.0944223,0.268788,0.926279,0.863689,0.224497,0.806485,0.85838,0.451357,0.533121,0.786905,0.421334,0.0356177,0.106958,0.795211,0.595094,0.398762,0.154134,0.493016,0.802069,0.966279,0.430298,0.739563,0.121174,0.466042,0.153989,0.816377,0.497708,0.996225,0.0934876,0.326231,0.394056,0.0660397,0.0162425,0.774805,0.893674,0.202317,0.807107,0.161189,0.542023,0.830438,0.451959,0.097074,0.277175,0.210275,0.358256,0.532258,0.670846,0.81028,0.710325,0.31431,0.140965,0.833589,0.0676212,0.404909,0.61913,0.161604,0.900447,0.326563,0.794452,0.966608,0.363939,0.636901,0.189981,0.905932,0.164953,0.361323,0.282526,0.182048,0.627526,0.691399,0.841282,0.903294,0.950307,0.150276,0.578837,0.101891,0.195628,0.271748,0.22187,0.917872,0.667943,0.453287,0.00705248,0.608177,0.90189,0.350472,0.425397,0.143727,0.890554,0.259885,0.757704,0.718537,0.923027,0.730266,0.327069,0.743479,0.104931,0.167939,0.622361,0.591063,0.186282,0.427415,0.458996,0.837563,0.056101,0.913928,0.909857,0.0324693,0.026435,0.168317,0.243122,0.78095,0.260669,0.727695,0.464772,0.0755568,0.895928,0.904237,0.798899,0.319234,0.358501,0.839123,0.464397,0.0947244,0.833274,0.945564,0.606432,0.0433494,0.670236,0.694164,0.145334,0.761505,0.977134,0.816146,0.166111,0.597342,0.47058,0.462868,0.413552,0.835247,0.00227892,0.68331,0.490922,0.219804,0.149406,0.038435,0.329277,0.617773,0.471723,0.875938,0.870896,0.830064,0.165903,0.187952,0.704709,0.708192,0.364848,0.422459,0.0654838,0.803226,0.0824865,0.882562,0.814313,0.249647,0.276826,0.847359,0.964751,0.835874,0.945859,0.802968,0.349539,0.711345,0.275905,0.252307,0.86374,0.623406,0.328808,0.668628,0.416413,0.0979767,0.0536047,0.461311,0.154542,0.373448,0.604534,0.423466,0.277015,0.260991,0.418262,0.0136931,0.196155,0.779036,0.0954565,0.443685,0.818583,0.21969,0.761917,0.720122,0.463981,0.91455,0.721148,0.434557,0.755021,0.324169,0.114044,0.0483377,0.199181,0.696472,0.5727,0.335182,0.0727183,0.40817,0.652856,0.115077,0.684935,0.5118,0.0412463,0.0782039,0.681414,0.319806,0.783132,0.691042,0.280254,0.294349,0.585612,0.154665,0.00660127,0.650133,0.128909,0.663172,0.250422,0.228859,0.698776,0.559814,0.301423,0.517122,0.810673,0.744904,0.452753,0.0318559,0.914414,0.332282,0.22792,0.12433,0.63209,0.867911,0.975597,0.210151,0.942618,0.81424,0.320208,0.635522,0.493019,0.870971,0.770204,0.553881,0.932778,0.831295,0.917058,0.412941,0.136119,0.54057,0.406881,0.360087,0.882158,0.498006,0.189519,0.682748,0.993634,0.15776,0.882578,0.484473,0.445451,0.0488631,0.202452,0.842134,0.0741705,0.798047,0.635432,0.0825192,0.173877,0.793774,0.569009,0.201657,0.186308,0.0986381,0.498963,0.257812,0.163139,0.267055,0.0866609,0.553502,0.075481,0.388803,0.439909,0.927604,0.334077,0.992732,0.71476,0.414783,0.475303,0.866048,0.0434747,0.540011,0.485644,0.989125,0.220483,0.792513,0.598525,0.639465,0.0427791,0.970646,0.455513,0.0305586,0.689816,0.300678,0.502225,0.897561,0.145122,0.0670735,0.658544,0.0195389,0.956123,0.247219,0.0268295,0.924384,0.757163,0.00205189,0.276318,0.179263,0.406283,0.934273,0.892021,0.787139,0.227044,0.978834,0.801905,0.862633,0.656569,0.845229,0.497967,0.10174,0.862453,0.719971,0.0268441,0.0528229,0.330216,0.366408,0.578934,0.484883,0.641954,0.339959,0.381458,0.49523,0.522829,0.562716,0.351583,0.484695,0.19604,0.52476,0.276907,0.724219,0.294012,0.42774,0.638074,0.669506,0.468891,0.0555279,0.379273,0.0103849,0.879745,0.941328,0.94398,0.640692,0.632192,0.66364,0.877692,0.962744,0.803303,0.45721,0.363277,0.79334,0.283193,0.574638,0.0337911,0.406429,0.66498,0.208683,0.302134,0.220924,0.853261,0.281023,0.232654,0.489576,0.588044,0.906546,0.901912,0.962502,0.47201,0.7989,0.866892,0.610045,0.458459,0.626046,0.00527483,0.918062,0.470304,0.315594,0.459579,0.292544,0.142469,0.478901,0.661677,0.939639,0.0829685,0.903524,0.228438,0.36324,0.390497,0.107836,0.0508555,0.0560575,0.860163,0.93189,0.560232,0.875832,0.994274,0.294232,0.359704,0.859503,0.923939,0.328943,0.418172,0.512162,0.754328,0.991668,0.124905,0.841604,0.557707,0.779255,0.746471,0.401301,0.938482,0.00966996,0.946105,0.176567,0.967328,0.222778,0.634563,0.736977,0.466543,0.49192,0.621448,0.467393,0.516421,0.103357,0.464458,0.274452,0.204054,0.90759,0.191601,0.509294,0.0817412,0.642002,0.361526,0.912024,0.0324451,0.903198,0.97122,0.208369,0.600758,0.466175,0.893865,0.85527,0.669252,0.419605,0.375812,0.035611,0.22674,0.495491,0.409521,0.982189,0.89858,0.510074,0.732093,0.0316352,0.130416,0.0149435,0.762636,0.583113,0.830023,0.0430955,0.739611,0.533905,0.352584,0.890643,0.485692,0.619345,0.867346,0.838901,0.0462877,0.715156,0.296451,0.665622,0.847579,0.880488,0.121928,0.741184,0.863028,0.356126,0.66602,0.823665,0.750504,0.125499,0.53386,0.389142,0.0119801,0.211568,0.660482,0.106698,0.621636,0.221939,0.606888,0.624536,0.98372,0.98703,0.500348,0.164167,0.731289,0.802786,0.979504,0.120877,0.0573942,0.495092,0.479686,0.226839,0.507188,0.566641,0.543885,0.318754,0.736401,0.283766,0.990616,0.958316,0.0929127,0.794641,0.822863,0.957062,0.663776,0.365224,0.789631,0.968221,0.596168,0.122749,0.713744,0.258171,0.934037,0.68124,0.947241,0.808478,0.0931596,0.332526,0.198701,0.0352767,0.11408,0.0808913,0.331639,0.427958,0.958093,0.327688,0.270088,0.0133587,0.136037,0.0193027,0.346433,0.001939,0.565411,0.472095,0.789539,0.710992,0.669056,0.487381,0.964788,0.349158,0.594899,0.475227,0.924392,0.355909,0.0384631,0.902639,0.948075,0.427973,0.694389,0.667763,0.985553,0.150323,0.607588,0.709686,0.626907,0.228198,0.796128,0.181496,0.782477,0.0932841,0.0181673,0.920137,0.51493,0.511754,0.120764,0.320079,0.0286672,0.824603,0.903848,0.183071,0.796407,0.868188,0.341946,0.663482,0.0611401,0.827464,0.97175,0.29402,0.0162561,0.291675,0.234631,0.158004,0.275556,0.540739,0.922828,|0.269599,0.59775,0.568455,0.51631,0.820785,0.195136,0.828271,0.688752,0.502394,0.553451,0.494687,0.556006,0.220939,0.330545,0.793637,0.517651,0.34479,0.636887,0.899062,0.0227239,0.560569,0.100303,0.884982,0.0405435,0.583077,0.471328,0.0844937,0.496531,0.816894,0.560135,0.0171746,0.0103518,0.843775,0.409515,0.0320235,0.363446,0.106601,0.491865,0.256332,0.479809,0.845376,0.241306,0.189791,0.0230169,0.291054,0.333928,0.53006,0.141397,0.30558,0.334235,0.818775,0.428656,0.690353,0.762563,0.479881,0.654436,0.967791,0.314983,0.622847,0.435698,0.97369,0.645389,0.0944908,0.7156,0.835873,0.839474,0.169966,0.292481,0.0325719,0.546634,0.173969,0.611093,0.552881,0.123671,0.455144,0.680113,0.7779,0.446317,0.467594,0.786915,0.934219,0.0716715,0.620004,0.64456,0.207518,0.0638546,0.102068,0.288669,0.749851,0.620914,0.379525,0.169536,0.672098,0.187698,0.564578,0.873919,0.166275,0.280223,0.682176,0.416358,0.0456749,0.298494,0.0113758,0.44581,0.105699,0.135848,0.888243,0.529931,0.0866902,0.751705,0.552329,0.407457,0.225963,0.775213,0.678919,0.993859,0.193951,0.328098,0.82686,0.975348,0.416814,0.484573,0.532611,0.240089,0.93312,0.854166,0.763449,0.816601,0.973487,0.0435877,0.209451,0.249322,0.825608,0.719917,0.991215,0.787394,0.759188,0.29394,0.597537,0.934604,0.682084,0.320933,0.322635,0.514327,0.755862,0.819671,0.402318,0.626806,0.544828,0.304641,0.470627,0.512378,0.523848,0.965732,0.97954,0.835417,0.0889661,0.2634,0.561131,0.744478,0.794841,0.518888,0.752034,0.670353,0.75317,0.625083,0.0747468,0.196534,0.967299,0.503846,0.743973,0.368729,0.575938,0.910157,0.0858411,0.977724,0.697899,0.273146,0.395492,0.155898,0.70268,0.760261,0.250606,0.595099,0.589335,0.106587,0.500812,0.759601,0.6576,0.604057,0.0551221,0.676794,0.17407,0.755896,0.914384,0.618762,0.961785,0.940883,0.235215,0.152875,0.143666,0.725296,0.298079,0.644592,0.132993,0.156956,0.355136,0.36082,0.979418,0.346289,0.569602,0.909922,0.473319,0.137662,0.977554,0.578044,0.8168,0.112319,0.00352836,0.153142,0.937806,0.78162,0.899343,0.553569,0.357731,0.570383,0.951618,0.812414,0.0648845,0.836801,0.793423,0.527943,0.787663,0.362925,0.883498,0.0634497,0.443258,0.762934,0.861834,0.109192,0.715756,0.342959,0.509624,0.331034,0.191878,0.780869,0.136361,0.59458,0.0306773,0.415921,0.508028,0.121244,0.796219,0.0740448,0.947892,0.108811,0.322803,0.632011,0.582561,0.80191,0.749247,0.822884,0.792142,0.581853,0.505474,0.278572,0.285099,0.549176,0.102687,0.719384,0.591557,0.174635,0.244386,0.944409,0.792406,0.48754,0.795227,0.062717,0.129083,0.427997,0.782297,0.688418,0.127609,0.46794,0.46991,0.960411,0.144664,0.41474,0.90601,0.471124,0.729275,0.269992,0.409802,0.787336,0.859934,0.111047,0.16002,0.0436491,0.232791,0.685802,0.330203,0.683755,0.480422,0.620456,0.498312,0.22944,0.895163,0.987278,0.0435802,0.0600501,0.621948,0.863719,0.746832,0.59553,0.741704,0.100634,0.550457,0.267092,0.39335,0.162949,0.692962,0.195437,0.795244,0.623699,0.465315,0.595127,0.904094,0.232466,0.120998,0.106212,0.25404,0.704802,0.0859426,0.0348272,0.497359,0.444056,0.107775,0.597797,0.672575,0.824317,0.171411,0.127767,0.230849,0.454742,0.261968,0.136205,0.664591,0.392082,0.110798,0.279317,0.927975,0.751313,0.346247,0.14682,0.327408,0.767343,0.568835,0.234497,0.489052,0.489525,0.446604,0.00657392,0.516635,0.195499,0.444741,0.695154,0.53578,0.45774,0.0731795,0.00815046,0.536323,0.460295,0.876933,0.569569,0.801758,0.475381,0.0390237,0.218917,0.126867,0.233752,0.865645,0.701418,0.373851,0.949712,0.7449,0.930825,0.890494,0.323817,0.0375665,0.91867,0.963036,0.877875,0.70561,0.348734,0.422852,0.383516,0.338565,0.751724,0.193108,0.128901,0.118358,0.906156,0.463439,0.29897,0.745961,0.399386,0.0933327,0.77487,0.600614,0.449007,0.665746,0.721736,0.288312,0.496225,0.90075,0.440487,0.583864,0.64403,0.313867,0.826028,0.140132,0.291873,0.348802,0.991504,0.00857407,0.711127,0.677485,0.340464,0.396201,0.351187,0.560647,0.89367,0.952451,0.0928509,0.575333,0.171561,0.80172,0.621343,0.798531,0.525832,0.871762,0.522507,0.494916,0.395591,0.910603,0.239978,0.163933,0.213631,0.594773,0.120329,0.494281,0.0702796,0.166711,0.473015,0.299022,0.553688,0.756252,0.569847,0.301143,0.341462,0.99211,0.915672,0.140793,0.104703,0.323636,0.490869,0.693404,0.250777,0.112559,0.382656,0.97869,0.229838,0.541395,0.0541199,0.788369,0.666792,0.0502093,0.282055,0.883127,0.823759,0.939977,0.773045,0.726258,0.0138106,0.0591876,0.739623,0.535387,0.24649,0.940693,0.72758,0.552292,0.736589,0.315594,0.921762,0.107478,0.911063,0.779263,0.944987,0.0201429,0.123612,0.064973,0.879771,0.38983,0.252224,0.697163,0.446546,0.338891,0.732412,0.280691,0.55802,0.0518582,0.421755,0.804739,0.261734,0.632903,0.928315,0.0817915,0.419864,0.734796,0.948154,0.616116,0.16786,0.640729,0.702718,0.698913,0.995462,0.5043,0.626046,0.752666,0.946006,0.650163,0.937555,0.999168,0.46457,0.466744,0.718077,0.311429,0.0108059,0.140815,0.286046,0.16818,0.590347,0.29902,0.534272,0.769787,0.163238,0.433232,0.823295,0.592949,0.0272052,0.720081,0.194227,0.87504,0.369143,0.864056,0.202153,0.542298,0.960472,0.397906,0.112391,0.745648,0.409411,0.905531,0.435502,0.535839,0.417936,0.373186,0.317685,0.649862,0.751149,0.475089,0.0920502,0.338634,0.616299,0.973624,0.698674,0.675681,0.654103,0.0968108,0.45497,0.379068,0.402128,0.487963,0.950058,0.844741,0.619105,0.981004,0.408338,0.743836,0.431008,0.676738,0.794528,0.0694757,0.92415,0.162703,0.750431,0.755189,0.332709,0.594946,0.625219,0.372582,0.61481,0.18707,0.751332,0.245129,0.217383,0.112743,0.270254,0.807949,0.901838,0.15559,0.671843,0.69433,0.833019,0.33436,0.596177,0.0356287,0.505318,0.20446,0.943484,0.877965,0.302082,0.126249,0.231046,0.522757,0.666561,0.097634,0.952504,0.468357,0.218939,0.21328,0.0218924,0.397004,0.238184,0.995105,0.059643,0.573566,0.233105,0.207477,0.902751,0.367908,0.0549462,0.234482,0.943178,0.669967,0.745717,0.478723,0.518629,0.916996,0.402609,0.221362,0.808799,0.409349,0.764863,0.693974,0.235774,0.6741,0.0619402,0.433359,0.883178,0.700054,0.797852,0.457123,0.725203,0.605795,0.20275,0.164513,0.503351,0.609911,0.0407565,0.00144565,0.545145,0.24349,0.934973,0.882397,0.100037,0.957578,0.879814,0.756399,0.0563467,0.330444,0.480833,0.865029,0.0506935,0.98839,0.69937,0.752524,0.366298,0.535377,0.514925,0.277769,0.681652,0.642161,0.935938,0.580099,0.100549,0.528607,0.255573,0.994399,0.0985625,0.321117,0.249932,0.358297,0.928485,0.804815,0.432277,0.876572,0.802762,0.695844,0.493582,0.00600672,0.143376,0.951553,0.49905,0.463144,0.42177,0.0561426,0.380525,0.878404,0.957958,0.523566,0.397856,0.205819,0.754744,0.720361,0.934997,0.24834,0.438341,0.683144,0.389801,0.273799,0.583066,0.401634,0.232196,0.387957,0.204195,0.701865,0.792847,0.673403,0.468053,0.0694219,0.10904,0.476824,0.0316646,0.0293545,0.0699954,0.38762,0.961773,0.386721,0.180156,0.826666,0.221332,0.59668,0.598144,0.0804618,0.677358,0.324449,0.661222,0.572342,0.979822,0.361235,0.305207,0.681876,0.976511,0.318309,0.698973,0.54331,0.929743,0.789342,0.204878,0.738831,0.945861,0.434686,0.208161,0.0466498,0.0577162,0.693915,0.250355,0.892127,0.0859769,0.709368,0.0839367,0.47906,0.658215,0.920028,0.996906,0.096716,0.339742,0.486584,0.468085,0.34827,0.616409,0.898814,0.260729,0.625732,0.24868,0.108093,0.667998,0.944335,0.946116,0.237829,0.827131,0.800483,0.0812268,0.791263,0.528345,0.199624,0.237034,0.375994,0.244004,0.155782,0.928489,0.876675,0.566472,0.793547,0.25189,0.82972,0.501725,0.0928799,0.0195208,0.615349,0.634106,0.592668,0.179325,0.57832,0.68626,0.29015,0.919751,0.26423,0.705496,0.289972,0.576484,0.00392866,0.526511,0.653663,0.0920572,0.427255,0.429829,0.941356,0.776101,0.860936,0.488913,0.312811,0.59075,0.899988,0.923119,0.835282,0.948079,0.0312815,0.495596,0.225445,0.593874,0.34169,0.336086,0.915224,0.853689,0.232033,0.6983,0.430657,0.00682569,0.789842,0.299366,0.128676,0.852589,0.778346,0.0755858,0.914629,0.727268,0.447755,0.732559,0.680293,0.333003,0.477337,0.327125,0.364601,0.0783593,0.933077,0.28106,0.8813,0.36792,0.653597,0.71114,0.18471,0.773229,0.201445,0.526438,0.794736,0.79784,0.965672,0.974153,0.96378,0.63174,0.437403,0.367655,0.718275,0.00588,0.716884,0.531227,0.29793,0.527021,0.259635,0.81355,0.802426,0.718345,0.816421,0.0572503,0.0960676,0.0491166,0.967262,0.492526,0.179057,0.0160604,0.319311,0.182616,0.951882,0.168722,0.569824,0.99581,0.572154,0.645549,0.354577,0.00405324,0.517793,0.179252,0.485598,0.691245,0.399382,0.584719,0.562415,0.555712,0.379614,0.780819,0.529056,0.36727,0.900813,0.256604,0.373661,0.809205,0.134496,0.553647,0.401714,0.575808,0.795193,0.673482,0.429055,0.729126,0.294155,0.0930169,0.660594,0.412549,0.125843,0.339177,0.536543,0.598265,0.155739,0.203848,0.386816,0.510529,0.672252,0.778383,0.131736,0.290761,0.839165,0.363006,0.219312,0.514979,0.842982,0.0301253,0.693072,0.555875,0.250638,0.31549,0.0634723,0.608699,0.406569,0.635709,0.890595,0.771449,0.0531948,0.591929,0.153659,0.660394,0.0990217,0.778433,0.518375,0.342161,0.95954,0.0604414,0.416628,0.749289,0.812366,0.438148,0.863825,0.578421,0.845884,0.26658,0.762102,0.249867,0.394489,0.0992519,|0.577348,0.670632,0.180025,0.739599,0.650179,0.738276,0.0868404,0.187373,0.959202,0.962219,0.0742662,0.523573,0.135827,0.348554,0.134858,0.247601,0.868888,0.828416,0.639071,0.259688,0.352636,0.317832,0.387418,0.256093,0.370586,0.0507587,0.443406,0.147505,0.869033,0.588327,0.630431,0.117883,0.195085,0.654178,0.422792,0.210132,0.465688,0.818073,0.344068,0.916825,0.986757,0.181166,0.112829,0.853767,0.465668,0.407748,0.817174,0.201906,0.4477,0.712054,0.77252,0.122226,0.67023,0.765024,0.735678,0.471715,0.829494,0.34856,0.0818321,0.931192,0.231625,0.270387,0.192714,0.144095,0.380698,0.87144,0.0934705,0.277215,0.136395,0.0722895,0.611928,0.434055,0.809025,0.389475,0.666134,0.452991,0.0154964,0.762034,0.851894,0.74962,0.316235,0.450407,0.0369562,0.684431,0.287041,0.668125,0.942748,0.271348,0.754755,0.832226,0.907361,0.808213,0.640911,0.478735,0.258054,0.656797,0.131948,0.146799,0.333009,0.675798,0.308904,0.906926,0.566814,0.426005,0.0518538,0.60956,0.907041,0.107558,0.658124,0.628684,0.126162,0.678458,0.097982,0.765286,0.108401,0.87097,0.188811,0.904644,0.0507946,0.496509,0.431861,0.409926,0.604784,0.288642,0.245115,0.154842,0.32967,0.156559,0.641369,0.705556,0.0112008,0.751217,0.483236,0.89676,0.0412106,0.315535,0.200529,0.279025,0.332144,0.33341,0.0465165,0.461526,0.409836,0.0762572,0.488282,0.898031,0.883583,0.358602,0.589183,0.272005,0.270083,0.827823,0.560975,0.347465,0.190317,0.960888,0.0156199,0.890658,0.0170953,0.90364,0.479169,0.481361,0.684421,0.315187,0.959125,0.914348,0.0687026,0.686402,0.41433,0.839809,0.642969,0.146368,0.69783,0.0693061,0.930754,0.325324,0.746997,0.346686,0.170075,0.0385391,0.0685963,0.873665,0.0476846,0.229323,0.983815,0.201553,0.631073,0.195259,0.793215,0.526147,0.741296,0.713905,0.70401,0.327345,0.403524,0.69647,0.824465,0.698859,0.355979,0.763982,0.497024,0.512141,0.803047,0.806964,0.829768,0.361233,0.753438,0.720005,0.495046,0.117362,0.282732,0.641033,0.168826,0.236511,0.805083,0.118024,0.36023,0.691639,0.305349,0.94332,0.0398111,0.698802,0.630448,0.509643,0.93975,0.396752,0.692733,0.376656,0.461614,0.219154,0.680319,0.914033,0.716748,0.286881,0.421019,0.930337,0.594727,0.330699,0.97542,0.803975,0.312104,0.780555,0.524642,0.0270671,0.805774,0.254404,0.674982,0.909768,0.969648,0.115773,0.794482,0.597529,0.489949,0.313633,0.304268,0.852068,0.538637,0.685051,0.605353,0.25178,0.0128576,0.37018,0.866421,0.948385,0.699129,0.526992,0.624115,0.221589,0.382364,0.205599,0.568735,0.314502,0.600726,0.391572,0.194874,0.524781,0.274515,0.778266,0.920273,0.0652351,0.325338,0.427899,0.981464,0.403482,0.748739,0.485499,0.545498,0.414884,0.327451,0.462614,0.0159015,0.610423,0.357273,0.543812,0.302727,0.781583,0.295868,0.479466,0.970953,0.0453711,0.2533,0.59245,0.57445,0.37627,0.297656,0.597859,0.0939168,0.239465,0.822731,0.0575542,0.579509,0.908096,0.763156,0.958437,0.0970576,0.0475707,0.918036,0.0319768,0.368024,0.128605,0.240383,0.394937,0.142607,0.21182,0.112649,0.414956,0.16076,0.887882,0.116003,0.418456,0.80225,0.596214,0.909966,0.995899,0.38131,0.850595,0.520353,0.382973,0.289345,0.130436,0.334672,0.424653,0.639287,0.708747,0.990305,0.075698,0.473233,0.166665,0.836963,0.367132,0.623235,0.0862902,0.717704,0.613741,0.496795,0.482249,0.190276,0.614451,0.52994,0.776918,0.220149,0.652099,0.363567,0.116007,0.903172,0.751759,0.690305,0.107391,0.971811,0.362112,0.98339,0.813864,0.647813,0.590969,0.106629,0.356346,0.753825,0.0331919,0.942529,0.985987,0.186941,0.396077,0.262209,0.723006,0.382004,0.408001,0.988029,0.742028,0.349554,0.457579,0.639889,0.128264,0.684353,0.38191,0.101127,0.553819,0.295041,0.716688,0.36521,0.43914,0.507527,0.129897,0.269163,0.86041,0.767796,0.538408,0.632632,0.908912,0.55357,0.0147626,0.4051,0.980218,0.269699,0.129209,0.207033,0.144578,0.447738,0.496624,0.130398,0.0857857,0.284446,0.911958,0.980512,0.834353,0.200957,0.281228,0.965149,0.253229,0.621453,0.54118,0.0444368,0.512475,0.35858,0.602454,0.0536721,0.344559,0.725631,0.0418115,0.323002,0.803729,0.00189453,0.799829,0.629947,0.295226,0.933591,0.248668,0.098446,0.194649,0.672755,0.755252,0.15356,0.207022,0.533629,0.428208,0.549926,0.126048,0.621238,0.517139,0.100185,0.575705,0.0893629,0.199101,0.888461,0.201471,0.424437,0.563756,0.957485,0.20839,0.225832,0.0227373,0.34567,0.216348,0.98285,0.946704,0.686097,0.385547,0.494794,0.846287,0.0170284,0.935705,0.865749,0.505731,0.774363,0.510974,0.410077,0.711599,0.916234,0.859261,0.857042,0.744031,0.242852,0.731005,0.974123,0.945372,0.203753,0.19127,0.16001,0.169059,0.737918,0.440628,0.53628,0.00485057,0.594182,0.226942,0.180244,0.0855621,0.237325,0.0926186,0.259425,0.0901024,0.50528,0.0871394,0.319216,0.25115,0.459824,0.246467,0.46276,0.701655,0.483665,0.758512,0.478945,0.286682,0.940217,0.914381,0.609336,0.498846,0.442572,0.548811,0.157104,0.0149262,0.274626,0.541916,0.950906,0.525131,0.880161,0.0847155,0.413254,0.520513,0.509466,0.203108,0.395534,0.87285,0.18053,0.967226,0.823773,0.183679,0.047498,0.360918,0.903077,0.619857,0.353549,0.425848,0.629661,0.495889,0.555696,0.974437,0.0621544,0.36629,0.236241,0.891415,0.518256,0.564201,0.616281,0.0173035,0.689119,0.678599,0.569089,0.661517,0.492745,0.488025,0.843114,0.714457,0.936598,0.23099,0.450644,0.940235,0.216166,0.262264,0.438981,0.358632,0.751629,0.0963337,0.602547,0.82924,0.563534,0.603913,0.122993,0.261482,0.987738,0.282997,0.667224,0.997873,0.682255,0.144596,0.616209,0.437093,0.547748,0.191878,0.501545,0.915687,0.701579,0.221131,0.899074,0.354881,0.385183,0.500642,0.935554,0.817005,0.883716,0.83663,0.668211,0.45109,0.313719,0.368829,0.774548,0.828752,0.151407,0.736537,0.16995,0.10772,0.518115,0.989841,0.0718893,0.792913,0.612692,0.193017,0.253623,0.0899775,0.0550904,0.945763,0.234471,0.41904,0.769161,0.194876,0.211342,0.414693,0.676355,0.898905,0.0787127,0.813755,0.777053,0.8441,0.405947,0.869839,0.310473,0.752832,0.990316,0.282657,0.142393,0.939021,0.769681,0.816703,0.809223,0.73299,0.895487,0.881464,0.740559,0.851052,0.7191,0.761889,0.397272,0.636125,0.615023,0.573164,0.124801,0.168808,0.645544,0.764025,0.401816,0.602504,0.379067,0.824869,0.106395,0.883718,0.789171,0.564842,0.881733,0.236697,0.0978457,0.368307,0.723324,0.913534,0.140556,0.353937,0.646763,0.57847,0.470059,0.77392,0.238137,0.542532,0.0812069,0.758865,0.201996,0.0746903,0.273979,0.329497,0.97218,0.0202954,0.455581,0.149699,0.581337,0.931218,0.585106,0.610597,0.936705,0.728026,0.387827,0.328331,0.766705,0.941474,0.101978,0.193006,0.688579,0.144248,0.436149,0.732211,0.22719,0.749034,0.47031,0.186719,0.534685,0.948772,0.68829,0.86535,0.808659,0.283702,0.436862,0.646512,0.973398,0.877827,0.973641,0.870522,0.660292,0.152223,0.46643,0.547088,0.357933,0.388682,0.995134,0.932599,0.209436,0.130686,0.720906,0.442951,0.766184,0.693723,0.310747,0.115054,0.414297,0.507122,0.260763,0.858861,0.502395,0.152282,0.513984,0.588725,0.585423,0.873273,0.11657,0.303354,0.740084,0.72068,0.491286,0.235934,0.003232,0.193711,0.720926,0.977845,0.91428,0.620848,0.861889,0.213264,0.79627,0.239073,0.367738,0.53868,0.489673,0.886081,0.70271,0.761518,0.100869,0.692505,0.385036,0.81939,0.396931,0.906709,0.989727,0.364496,0.989301,0.893728,0.483947,0.438842,0.994068,0.330828,0.891773,0.0279223,0.529234,0.289291,0.316296,0.663306,0.662065,0.863072,0.251313,0.384027,0.743541,0.996606,0.504791,0.493724,0.922159,0.459,0.385248,0.452819,0.615997,0.433094,0.933794,0.51968,0.604108,0.134718,0.200567,0.612961,0.721075,0.28208,0.041091,0.711086,0.836749,0.153091,0.953695,0.584384,0.283561,0.253749,0.644429,0.289283,0.698372,0.626028,0.238936,0.559566,0.315331,0.300474,0.543979,0.189227,0.318621,0.823299,0.00665569,0.365752,0.187455,0.428169,0.23205,0.183931,0.900014,0.16461,0.0920489,0.169591,0.449495,0.633663,0.516479,0.0341526,0.435512,0.258381,0.197236,0.216043,0.626798,0.83317,0.289864,0.0319765,0.089115,0.23877,0.232747,0.0895655,0.538328,0.816949,0.825211,0.818056,0.0343895,0.323622,0.574162,0.46385,0.303925,0.612488,0.667815,0.552945,0.485174,0.713281,0.423912,0.764065,0.220018,0.322774,0.896438,0.8277,0.242877,0.0662088,0.476322,0.519143,0.143349,0.256605,0.452025,0.693573,0.482713,0.998532,0.72172,0.418404,0.726502,0.269738,0.862939,0.196813,0.40654,0.468963,0.799099,0.996306,0.506346,0.274837,0.133409,0.541113,0.24457,0.714887,0.952689,0.702845,0.578778,0.587768,0.456365,0.579393,0.199931,0.303701,0.241705,0.743849,0.000261903,0.605117,0.0112856,0.103137,0.690578,0.242831,0.468277,0.930732,0.85442,0.278013,0.740538,0.0179361,0.696172,0.829949,0.986834,0.709175,0.128223,0.87285,0.126901,0.0341994,0.632042,0.0230561,0.0974327,0.804469,0.874403,0.374738,0.791585,0.771556,0.767078,0.945979,0.370674,0.00513667,0.455059,0.949431,0.187452,0.660598,0.462827,0.822829,0.224483,0.743064,0.691472,0.508673,0.237747,0.771123,0.655143,0.995401,0.167193,0.192556,0.390534,0.944326,0.102959,0.380139,0.463862,0.193397,0.59216,0.94609,0.718408,0.182895,0.455381,0.35623,0.247936,0.537865,0.502321,0.654077,0.364027,0.355355,0.124575,0.0584415,0.209002,0.576546,0.885312,0.873128,0.677005,0.155889,0.213619,0.590422,|0.78989,0.718151,0.0635194,0.744895,0.787561,0.65351,0.435839,0.145981,0.875109,0.206477,0.0117031,0.591485,0.355975,0.82844,0.232621,0.317465,0.928327,0.86959,0.487817,0.89475,0.585265,0.940586,0.649296,0.959463,0.477468,0.313481,0.853592,0.679749,0.415714,0.998732,0.178601,0.472353,0.929723,0.760325,0.405563,0.715075,0.752409,0.61186,0.872278,0.984927,0.312221,0.932872,0.342984,0.29194,0.116619,0.0128866,0.241935,0.137172,0.988124,0.596505,0.347831,0.459399,0.829724,0.173447,0.87737,0.993667,0.101652,0.848895,0.718483,0.5587,0.678145,0.998107,0.972695,0.275085,0.332426,0.501301,0.192319,0.963731,0.298958,0.978445,0.132798,0.732086,0.32786,0.0366157,0.154484,0.648817,0.470319,0.653783,0.427076,0.729846,0.731134,0.601096,0.397254,0.149601,0.76244,0.288277,0.0389763,0.982863,0.995456,0.139926,0.378643,0.251221,0.349275,0.231288,0.142708,0.990707,0.0415975,0.133491,0.31996,0.185439,0.755417,0.270312,0.397702,0.0876878,0.210898,0.118326,0.888903,0.766601,0.364427,0.610942,0.155848,0.189112,0.64604,0.120088,0.659992,0.480352,0.640499,0.311795,0.377748,0.755315,0.343271,0.905935,0.91367,0.838817,0.204174,0.472978,0.985529,0.653681,0.158178,0.890225,0.519259,0.852931,0.132277,0.0471541,0.0658088,0.700571,0.362053,0.691458,0.844702,0.789077,0.744335,0.734617,0.846522,0.528797,0.565438,0.406042,0.705534,0.765687,0.527109,0.488988,0.44073,0.990174,0.0704802,0.779539,0.993345,0.48069,0.873105,0.551673,0.435056,0.474392,0.33515,0.654492,0.177983,0.838617,0.5621,0.828598,0.563717,0.824094,0.431228,0.036691,0.856823,0.798854,0.60836,0.898825,0.256554,0.0970498,0.62497,0.8175,0.24979,0.735411,0.617344,0.546986,0.769261,0.370937,0.360694,0.243966,0.255252,0.642541,0.514216,0.150981,0.275547,0.387664,0.413799,0.922312,0.33244,0.264685,0.0480313,0.69459,0.227511,0.139219,0.529171,0.679371,0.929198,0.345866,0.632643,0.635085,0.593899,0.645056,0.14199,0.613939,0.397005,0.138682,0.859284,0.493444,0.450907,0.818082,0.112818,0.850607,0.44855,0.201147,0.848167,0.245227,0.658411,0.300457,0.603355,0.992663,0.8226,0.777649,0.494009,0.885809,0.519313,0.933298,0.464372,0.726209,0.346175,0.852176,0.614773,0.707374,0.707129,0.834484,0.279119,0.110078,0.171933,0.160192,0.790446,0.368916,0.836726,0.876905,0.151497,0.640451,0.983947,0.0136791,0.937364,0.401375,0.0480279,0.741502,0.657418,0.94408,0.113761,0.371276,0.608156,0.971725,0.980568,0.699095,0.307644,0.206514,0.671679,0.0792126,0.877715,0.743831,0.107143,0.0743039,0.661169,0.902788,0.518997,0.924756,0.0908669,0.751262,0.0974835,0.69008,0.313019,0.668898,0.195226,0.907229,0.0929253,0.56526,0.796415,0.917981,0.371892,0.911794,0.0897694,0.245032,0.176068,0.764236,0.0770469,0.785481,0.694551,0.158826,0.0533172,0.462997,0.760527,0.924463,0.261086,0.402708,0.773573,0.388636,0.947676,0.526117,0.335294,0.792616,0.14442,0.435988,0.510425,0.774785,0.532883,0.721206,0.347121,0.169523,0.52928,0.243449,0.612664,0.478879,0.0263678,0.0504717,0.0251037,0.352147,0.879013,0.13188,0.960843,0.278033,0.505193,0.946509,0.873103,0.367912,0.578658,0.942238,0.102751,0.304223,0.416642,0.704757,0.354288,0.293091,0.0750304,0.824769,0.27953,0.225427,0.70753,0.380001,0.38417,0.352799,0.0378125,0.683303,0.116043,0.779224,0.137854,0.429159,0.658997,0.95118,0.373017,0.0222753,0.216981,0.467756,0.790445,0.444472,0.982192,0.122952,0.825606,0.573127,0.561189,0.708748,0.406578,0.283151,0.49533,0.929605,0.579948,0.882682,0.850471,0.874202,0.71625,0.919727,0.652028,0.632467,0.364888,0.18097,0.494956,0.984337,0.00919616,0.968625,0.561978,0.944915,0.43099,0.0175692,0.625772,0.78176,0.147782,0.310761,0.618277,0.638457,0.0957692,0.914607,0.0057795,0.365656,0.117016,0.139285,0.435495,0.199895,0.979148,0.352833,0.615371,0.885385,0.890673,0.114467,0.42724,0.942629,0.11138,0.938299,0.740308,0.387937,0.187244,0.679199,0.930961,0.967198,0.182042,0.386235,0.349782,0.398528,0.586396,0.209029,0.224772,0.978518,0.105299,0.756403,0.9058,0.562216,0.67052,0.598516,0.84353,0.0780242,0.634729,0.164146,0.537808,0.471054,0.230106,0.856152,0.305089,0.030956,0.21057,0.0655127,0.831638,0.906491,0.172943,0.0428706,0.411392,0.110116,0.0146344,0.604824,0.867789,0.231535,0.718072,0.318646,0.777931,0.478852,0.0848168,0.0897972,0.606426,0.819256,0.962387,0.179864,0.130224,0.247958,0.0107161,0.451671,0.722958,0.237916,0.967838,0.199389,0.985048,0.521463,0.980861,0.953218,0.757181,0.200214,0.447869,0.914926,0.0103071,0.962679,0.70036,0.0424955,0.543267,0.88913,0.567539,0.929055,0.531923,0.182813,0.208303,0.555592,0.903575,0.739704,0.050577,0.080997,0.658244,0.732244,0.932172,0.0515471,0.306199,0.735142,0.533955,0.467304,0.665442,0.435945,0.748631,0.591305,0.97253,0.887043,0.702287,0.891738,0.376623,0.744371,0.433542,0.844188,0.158263,0.85374,0.880137,0.685096,0.991553,0.414244,0.0493472,0.00530553,0.170959,0.00220203,0.551652,0.658651,0.838266,0.350688,0.616087,0.519156,0.253346,0.527784,0.550041,0.459042,0.998586,0.749809,0.0973582,0.947582,0.399687,0.233487,0.600364,0.481116,0.706089,0.0293118,0.52021,0.271904,0.0867109,0.607906,0.464708,0.0483322,0.721134,0.854527,0.0449052,0.282221,0.259118,0.267692,0.554923,0.207724,0.415451,0.786368,0.883104,0.606419,0.0264971,0.472752,0.330294,0.547921,0.179283,0.312072,0.18516,0.235397,0.716065,0.884067,0.0593692,0.387497,0.504527,0.134096,0.952961,0.468653,0.842541,0.844638,0.256705,0.14813,0.140051,0.933883,0.354902,0.268895,0.158528,0.640334,0.745498,0.693088,0.575928,0.0858582,0.977297,0.00432038,0.597162,0.633193,0.99387,0.607572,0.022549,0.730797,0.770169,0.299122,0.737435,0.493879,0.817007,0.86826,0.258116,0.891226,0.023506,0.350537,0.33637,0.828889,0.796294,0.525861,0.631075,0.884806,0.468424,0.021594,0.0983716,0.957855,0.464757,0.71076,0.872091,0.337633,0.905648,0.598225,0.838012,0.477921,0.853528,0.743561,0.0367489,0.240449,0.626163,0.341052,0.344973,0.890209,0.44826,0.204543,0.470791,0.976398,0.637849,0.472984,0.899678,0.674827,0.476571,0.441475,0.519371,0.829179,0.36999,0.57818,0.100019,0.351889,0.834588,0.302807,0.638324,0.173661,0.548124,0.45751,0.759163,0.16226,0.366034,0.742392,0.400749,0.679574,0.200226,0.632598,0.916942,0.935591,0.568867,0.854046,0.489136,0.42721,0.750358,0.875947,0.808164,0.500978,0.0629269,0.108026,0.764783,0.38671,0.701863,0.210514,0.261675,0.261045,0.475228,0.400982,0.148964,0.790277,0.737881,0.0338053,0.470976,0.724491,0.843707,0.0368481,0.0621863,0.597217,0.868234,0.813622,0.630677,0.798227,0.241231,0.984661,0.409594,0.342289,0.545537,0.851307,0.0131776,0.994239,0.0619348,0.200652,0.548594,0.119779,0.473746,0.690155,0.860023,0.367662,0.502363,0.850184,0.292934,0.111856,0.694607,0.0439656,0.676604,0.688589,0.470881,0.778335,0.83863,0.549074,0.637712,0.751962,0.168656,0.38747,0.473825,0.607863,0.979053,0.489714,0.369478,0.069662,0.496499,0.84692,0.80321,0.00131392,0.841766,0.183462,0.168312,0.743977,0.843029,0.813431,0.0475134,0.540192,0.106123,0.0927022,0.990799,0.40387,0.230836,0.0788912,0.45576,0.128715,0.813502,0.116032,0.524288,0.280957,0.511324,0.710941,0.338968,0.0794355,0.25655,0.684668,0.699077,0.210976,0.124849,0.445327,0.130772,0.498641,0.467562,0.780697,0.250731,0.212517,0.447095,0.285175,0.171359,0.834168,0.873429,0.232036,0.149864,0.593611,0.136169,0.712879,0.548721,0.66397,0.916716,0.776985,0.300297,0.0321041,0.883907,0.638576,0.696363,0.519168,0.194507,0.912055,0.886259,0.428458,0.117105,0.100913,0.812485,0.656076,0.284061,0.648947,0.170259,0.444562,0.0412377,0.194917,0.0368782,0.424647,0.142689,0.590983,0.271852,0.718448,0.787104,0.0376955,0.33968,0.192531,0.890434,0.0271801,0.641364,0.0201963,0.0693384,0.136083,0.930473,0.524402,0.231106,0.974236,0.0398731,0.486312,0.870458,0.611704,0.162937,0.301248,0.776124,0.749831,0.903651,0.530222,0.864595,0.962544,0.33013,0.794051,0.445474,0.468388,0.890198,0.548738,0.527834,0.579678,0.406547,0.570943,0.56656,0.0915368,0.079317,0.497587,0.0127519,0.722655,0.750266,0.823905,0.502707,0.0290371,0.0413052,0.787818,0.353873,0.374863,0.581233,0.319766,0.843357,0.966481,0.929032,0.89845,0.861905,0.397049,0.243917,0.144234,0.735384,0.573541,0.644189,0.601073,0.614954,0.233509,0.684625,0.549639,0.416743,0.266271,0.576878,0.769233,0.648504,0.872642,0.520308,0.669708,0.575448,0.344783,0.433486,0.856366,0.890181,0.158788,0.39906,0.298983,0.911165,0.41123,0.92115,0.912817,0.461639,0.00754863,0.466512,0.230014,0.907606,0.979595,0.250049,0.996111,0.82462,0.101101,0.888794,0.553294,0.140874,0.0761768,0.514647,0.21541,0.0872231,0.366515,0.444124,0.552041,0.297785,0.0823888,0.374273,0.897533,0.389775,0.638126,0.329708,0.299906,0.83734,0.730058,0.53829,0.0320162,0.978696,0.539113,0.514039,0.693258,0.146879,0.00408524,0.518153,0.713348,0.229783,0.677284,0.145558,0.763458,0.114696,0.908581,0.993912,0.532688,0.663876,0.464306,0.315845,0.0717086,0.185218,0.709515,0.604884,0.691006,0.714053,0.944518,0.255747,0.153867,0.367401,0.517516,0.55496,0.916118,0.395347,0.122102,0.76835,0.010986,0.0106601,0.362174,0.219071,0.0335006,0.980093,0.546521,0.214361,0.775922,0.0910814,0.349589,0.0436149,0.435088,0.462344,0.399118,0.920307,0.618147,0.609141,0.787712,0.983724,0.329897,|0.953758,0.195652,0.259996,0.052605,0.545493,0.199905,0.644623,0.100746,0.686537,0.506021,0.0233187,0.663932,0.744462,0.0981365,0.598735,0.748608,0.998944,0.535316,0.235991,0.921905,0.558812,0.562409,0.622266,0.450042,0.7353,0.643202,0.744674,0.223036,0.409531,0.639387,0.105331,0.723508,0.938547,0.367693,0.102265,0.295278,0.550888,0.742919,0.209315,0.953722,0.261936,0.294658,0.296693,0.46167,0.0126171,0.808845,0.78381,0.456446,0.870479,0.398042,0.835065,0.713827,0.932745,0.842278,0.622621,0.564648,0.257536,0.00747222,0.84241,0.787111,0.374905,0.549829,0.641434,0.803124,0.785522,0.0280887,0.361552,0.026168,0.605781,0.123787,0.901409,0.380491,0.150289,0.597744,0.07077,0.46544,0.526623,0.328006,0.613388,0.588232,0.242068,0.405881,0.54897,0.239814,0.241711,0.894985,0.507823,0.190091,0.693974,0.434963,0.29923,0.913493,0.601192,0.112794,0.781275,0.0983732,0.873992,0.906616,0.192177,0.0169557,0.948634,0.215386,0.70095,0.456652,0.444825,0.0842549,0.0875762,0.656664,0.106216,0.231163,0.154923,0.155899,0.397827,0.0661854,0.198812,0.104707,0.263245,0.381404,0.059719,0.668256,0.209447,0.338188,0.604435,0.920557,0.13865,0.103439,0.322122,0.00297558,0.365673,0.418044,0.996404,0.701353,0.182671,0.113109,0.515715,0.594226,0.185624,0.189428,0.887988,0.247836,0.289367,0.942226,0.38362,0.45245,0.559064,0.256082,0.265822,0.573767,0.206014,0.530386,0.157524,0.556341,0.467148,0.933286,0.380202,0.963523,0.747826,0.506768,0.450863,0.625749,0.685385,0.825193,0.836836,0.655972,0.528784,0.148867,0.381865,0.0596902,0.895139,0.872469,0.0995904,0.483453,0.456943,0.791928,0.178842,0.185651,0.526551,0.202429,0.594028,0.597976,0.472343,0.90139,0.0323495,0.0761441,0.137538,0.57271,0.779904,0.747833,0.83955,0.869666,0.730084,0.882076,0.863938,0.743107,0.0707661,0.36293,0.255511,0.391683,0.421617,0.955832,0.339679,0.692298,0.403821,0.746978,0.408161,0.568077,0.408009,0.610534,0.744385,0.417692,0.465342,0.699189,0.465945,0.295957,0.459784,0.0538779,0.0812974,0.91686,0.00479686,0.491487,0.501401,0.383898,0.724252,0.0810974,0.484478,0.68901,0.366261,0.806474,0.811813,0.0469695,0.160749,0.184253,0.827299,0.717942,0.306574,0.346726,0.282839,0.931019,0.180627,0.666126,0.732781,0.495892,0.846558,0.0120429,0.996058,0.549445,0.631814,0.103462,0.178937,0.831629,0.744729,0.182953,0.18598,0.642911,0.032592,0.243228,0.33778,0.129805,0.545491,0.939778,0.909356,0.00267363,0.741767,0.52925,0.797932,0.167072,0.280137,0.405149,0.359517,0.0398504,0.547196,0.792392,0.934527,0.819829,0.698472,0.0873891,0.694614,0.0350604,0.171556,0.409042,0.35464,0.933794,0.271793,0.103252,0.41274,0.44396,0.598494,0.688854,0.690965,0.625131,0.186893,0.394345,0.344766,0.341933,0.831887,0.210644,0.0277976,0.78961,0.218913,0.880686,0.699769,0.415772,0.526009,0.226613,0.285063,0.957591,0.13705,0.290914,0.199389,0.148818,0.40689,0.414712,0.410544,0.969546,0.302095,0.602776,0.871081,0.616024,0.818484,0.854344,0.415574,0.628688,0.981085,0.935021,0.0934166,0.536325,0.715353,0.271703,0.161201,0.722531,0.411628,0.520181,0.541121,0.291841,0.247489,0.171518,0.732913,0.889396,0.0690124,0.248941,0.892204,0.414217,0.977863,0.76087,0.873015,0.844957,0.653435,0.113028,0.835711,0.250897,0.355623,0.643379,0.591567,0.494364,0.883792,0.0357797,0.56853,0.961747,0.197505,0.873409,0.849265,0.763845,0.770914,0.690511,0.49439,0.425417,0.970115,0.197972,0.175024,0.554622,0.771954,0.952821,0.608009,0.841956,0.696229,0.981814,0.330788,0.995685,0.472147,0.340819,0.404602,0.336484,0.253863,0.738071,0.819996,0.0932521,0.0520436,0.363233,0.957004,0.324129,0.154521,0.422885,0.542136,0.726974,0.937464,0.367778,0.201749,0.616406,0.35778,0.736864,0.646975,0.174541,0.269865,0.252536,0.460853,0.625519,0.352775,0.996637,0.477336,0.514922,0.618161,0.827318,0.714814,0.374533,0.75042,0.945165,0.867971,0.516267,0.514807,0.138377,0.779431,0.774935,0.24514,0.211215,0.983288,0.940354,0.847003,0.157775,0.423652,0.376293,0.07421,0.0616251,0.308348,0.077863,0.579885,0.349738,0.345136,0.227647,0.603557,0.600637,0.269221,0.262657,0.680136,0.884919,0.612838,0.493897,0.11377,0.646933,0.246651,0.284964,0.735635,0.45274,0.127935,0.295599,0.18774,0.00185454,0.270093,0.186903,0.679109,0.822887,0.457847,0.362886,0.213533,0.84312,0.678878,0.98565,0.226403,0.146676,0.0222622,0.245333,0.89774,0.583881,0.0441839,0.00307518,0.270132,0.360224,0.172346,0.55863,0.981514,0.764488,0.0546988,0.174829,0.14619,0.237516,0.132065,0.104041,0.542243,0.875365,0.0329459,0.688853,0.516342,0.363622,0.153109,0.0720435,0.211591,0.38841,0.426504,0.150712,0.0931919,0.00171679,0.766758,0.131409,0.789209,0.52472,0.10014,0.133428,0.807571,0.148691,0.884152,0.567427,0.692898,0.494461,0.890381,0.677408,0.957602,0.261162,0.867278,0.632329,0.239756,0.510305,0.364041,0.308728,0.562756,0.976418,0.051209,0.546841,0.932094,0.831846,0.773982,0.621852,0.572804,0.0441377,0.638212,0.952772,0.679643,0.899364,0.20526,0.838281,0.124701,0.782823,0.944586,0.0808782,0.965917,0.266429,0.288078,0.280342,0.721001,0.935384,0.867697,0.579136,0.902545,0.104639,0.305232,0.135284,0.960717,0.235508,0.512984,0.885059,0.00520849,0.878021,0.462514,0.209454,0.526305,0.552384,0.106353,0.385401,0.673606,0.207166,0.0545679,0.966685,0.206985,0.244803,0.632623,0.636654,0.321432,0.247777,0.703883,0.681245,0.0337844,0.536104,0.757299,0.761801,0.730477,0.0559689,0.790673,0.800217,0.381122,0.830433,0.0807142,0.687631,0.613539,0.142744,0.231821,0.974894,0.32779,0.276449,0.0669256,0.343497,0.312546,0.933744,0.80727,0.690004,0.377116,0.513291,0.761482,0.878398,0.9851,0.869021,0.510875,0.307499,0.20098,0.617696,0.839217,0.983412,0.780342,0.848605,0.0146382,0.422625,0.916824,0.138289,0.0111631,0.345035,0.54228,0.586534,0.972808,0.922882,0.175365,0.781042,0.345619,0.562957,0.304683,0.251083,0.839264,0.0928641,0.644259,0.651038,0.0919289,0.885438,0.417407,0.908835,0.350275,0.609919,0.133027,0.497111,0.253127,0.864558,0.295202,0.743309,0.978834,0.067834,0.920511,0.0520095,0.61664,0.45199,0.215079,0.881375,0.0166203,0.258964,0.933187,0.849863,0.692592,0.330675,0.499285,0.131843,0.269222,0.846232,0.313094,0.88504,0.480715,0.190994,0.459001,0.704707,0.175672,0.675739,0.415101,0.587651,0.21619,0.775734,0.979568,0.971563,0.677302,0.92219,0.176752,0.365316,0.737995,0.343821,0.0309924,0.179904,0.700031,0.146966,0.511207,0.916204,0.525171,0.894628,0.62103,0.670539,0.671757,0.322473,0.749972,0.803407,0.585515,0.321054,0.251332,0.211447,0.12984,0.769381,0.157476,0.578284,0.953074,0.209007,0.738451,0.898463,0.1172,0.116758,0.9104,0.641721,0.732594,0.263138,0.061592,0.276161,0.212103,0.710855,0.45321,0.803988,0.409391,0.376076,0.936988,0.801233,0.952257,0.941753,0.400721,0.564176,0.647162,0.989885,0.728566,0.694545,0.856467,0.90965,0.655625,0.00328243,0.274261,0.460725,0.433517,0.572518,0.877274,0.99883,0.348605,0.712182,0.701122,0.59484,0.732496,0.903495,0.484749,0.155839,0.880634,0.736529,0.618259,0.466043,0.934555,0.156614,0.634633,0.253243,0.262335,0.988682,0.36794,0.597997,0.275777,0.166736,0.136502,0.710176,0.756044,0.688567,0.17951,0.682587,0.114728,0.642577,0.647098,0.809581,0.545919,0.229623,0.144295,0.654987,0.511212,0.299381,0.37617,0.318702,0.540389,0.448178,0.227185,0.585326,0.642891,0.673288,0.227369,0.798285,0.768931,0.0632262,0.0796342,0.392157,0.177135,0.0765592,0.451526,0.682665,0.4186,0.700626,0.00664049,0.227344,0.802556,0.583157,0.832159,0.124231,0.435337,0.346824,0.431433,0.648345,0.70972,0.768797,0.568088,0.768927,0.797869,0.985848,0.390354,0.180705,0.729391,0.863095,0.263261,0.530428,0.36302,0.263626,0.611475,0.667386,0.71748,0.195564,0.456103,0.732703,0.315528,0.103981,0.313027,0.585896,0.394477,0.883884,0.88817,0.0934956,0.907735,0.249098,0.817716,0.995038,0.619685,0.124321,0.259336,0.654321,0.674145,0.918096,0.985171,0.808811,0.957598,0.347155,0.925092,0.27932,0.980835,0.844669,0.769138,0.647187,0.202255,0.397612,0.11848,0.283577,0.0997449,0.496539,0.379335,0.739734,0.27431,0.310319,0.135228,0.486387,0.59821,0.977964,0.306468,0.455045,0.603812,0.0798836,0.523576,0.146709,0.177887,0.628254,0.899592,0.119101,0.394161,0.205523,0.24256,0.260802,0.42868,0.478776,0.353431,0.0485377,0.626928,0.618519,0.678797,0.169979,0.648869,0.779787,0.931884,0.601225,0.481829,0.265715,0.372774,0.950373,0.0234729,0.925283,0.0126375,0.253351,0.846978,0.337873,0.670044,0.416192,0.248938,0.49687,0.655178,0.793393,0.795065,0.823532,0.830029,0.0205867,0.876575,0.232178,0.0912629,0.861588,0.993453,0.822255,0.761633,0.526404,0.831857,0.0150759,0.0341479,0.9409,0.430409,0.324258,0.710564,0.68114,0.277191,0.912712,0.690745,0.901444,0.253096,0.0301958,0.332084,0.967111,0.582112,0.396545,0.667067,0.17678,0.296267,0.199696,0.423318,0.356755,0.0915028,0.870566,0.801992,0.0865233,0.547579,0.794385,0.16057,0.571654,0.904168,0.807613,0.0338733,0.806607,0.383059,0.720051,0.617782,0.0645865,0.713641,0.929707,0.54282,0.65238,0.139232,0.0439658,0.307501,0.492951,0.53548,0.0257235,0.108965,0.428714,0.451978,0.138286,0.731902,0.163507,0.185608,0.896272,0.649447,0.796913,0.600173,0.127915,0.992731,0.973449,0.282808,0.892616,0.813202,0.568523,0.528994,0.774642,|0.924346,0.123788,0.84738,0.236329,0.611023,0.393609,0.0298871,0.33092,0.932576,0.466185,0.808844,0.594294,0.00625938,0.43849,0.850663,0.252657,0.112793,0.0052138,0.719797,0.933931,0.154451,0.497124,0.0139974,0.613931,0.0123392,0.110106,0.676554,0.301275,0.731671,0.390402,0.169911,0.354153,0.21632,0.830891,0.390407,0.322805,0.892979,0.697944,0.361703,0.874014,0.534474,0.292485,0.408564,0.618468,0.447275,0.794301,0.0394124,0.0728957,0.635997,0.891138,0.542234,0.146916,0.738248,0.0815771,0.113615,0.244358,0.625046,0.84222,0.482407,0.78607,0.169146,0.946636,0.846313,0.0102989,0.57115,0.149125,0.157549,0.906387,0.950247,0.670829,0.447279,0.480082,0.120049,0.997494,0.65692,0.766308,0.100752,0.540209,0.564951,0.146691,0.491298,0.602417,0.0307248,0.135476,0.0115053,0.105901,0.503132,0.924587,0.197209,0.0681289,0.624046,0.14242,0.133901,0.696619,0.0533402,0.312122,0.815395,0.354953,0.662857,0.435534,0.103202,0.475334,0.340781,0.57408,0.189127,0.934575,0.38208,0.128043,0.0620646,0.506376,0.203163,0.550584,0.904537,0.566046,0.232161,0.469141,0.381731,0.0915541,0.755439,0.548275,0.58934,0.475766,0.776611,0.332083,0.707247,0.122914,0.514983,0.069585,0.803512,0.721914,0.73387,0.384769,0.863835,0.817038,0.93315,0.885806,0.370711,0.174523,0.19948,0.720429,0.188262,0.830776,0.875666,0.974635,0.29506,0.597662,0.704563,0.425134,0.89715,0.741222,0.654062,0.363615,0.720085,0.454858,0.633716,0.627937,0.821533,0.458038,0.780422,0.366212,0.827421,0.981087,0.249924,0.501825,0.615166,0.521371,0.0976115,0.0543642,0.310315,0.399436,0.651103,0.819627,0.389197,0.449791,0.20957,0.794506,0.00784838,0.966811,0.145655,0.418881,0.864601,0.979158,0.216706,0.112053,0.731656,0.886828,0.0854484,0.505267,0.226686,0.183983,0.903518,0.458378,0.216337,0.820151,0.651217,0.749614,0.817075,0.151951,0.596507,0.831653,0.193997,0.68964,0.513485,0.0486639,0.870229,0.466749,0.437618,0.336939,0.699106,0.792238,0.492437,0.806138,0.620753,0.66802,0.0911104,0.511638,0.167757,0.534314,0.644487,0.631633,0.703206,0.478983,0.839015,0.845527,0.349646,0.572126,0.0127097,0.333713,0.5982,0.277058,0.583925,0.115571,0.98776,0.147122,0.182585,0.299835,0.653777,0.6762,0.362725,0.0461673,0.463119,0.63904,0.351401,0.458123,0.391144,0.973886,0.206843,0.171411,0.575162,0.0917044,0.117876,0.930034,0.4942,0.915707,0.992844,0.605796,0.482742,0.333216,0.321228,0.829651,0.0253046,0.934075,0.191749,0.340043,0.768057,0.0978734,0.410843,0.0133665,0.677561,0.926754,0.769814,0.678899,0.303274,0.240645,0.10654,0.102638,0.639132,0.962649,0.377768,0.216545,0.440974,0.247783,0.861634,0.129866,0.0154675,0.540091,0.574539,0.765389,0.577738,0.59651,0.496443,0.387924,0.471242,0.659796,0.989955,0.481911,0.912005,0.91238,0.856415,0.0705176,0.672202,0.32965,0.868895,0.214792,0.105438,0.871383,0.871573,0.194597,0.443641,0.0127633,0.747544,0.491438,0.57281,0.189572,0.0103146,0.129246,0.0936532,0.141504,0.03869,0.343992,0.619926,0.564614,0.618315,0.584564,0.724863,0.148635,0.598984,0.806097,0.202173,0.620131,0.676968,0.16572,0.731265,0.249838,0.608516,0.104981,0.624822,0.810394,0.547494,0.11064,0.550055,0.0668191,0.816331,0.519011,0.929113,0.553666,0.0513383,0.0134585,0.964473,0.513448,0.790491,0.726612,0.779167,0.311634,0.247982,0.029208,0.653116,0.378724,0.252078,0.638664,0.660824,0.609065,0.0917647,0.104637,0.851155,0.846904,0.655551,0.740683,0.451808,0.91501,0.293047,0.241364,0.0623653,0.777617,0.666172,0.00122136,0.909912,0.0837197,0.76496,0.656861,0.561559,0.711506,0.149153,0.602078,0.333148,0.0116262,0.255928,0.105945,0.172926,0.445601,0.108822,0.292024,0.972197,0.152902,0.239057,0.90516,0.743403,0.953616,0.617066,0.825359,0.113788,0.89049,0.0895684,0.819226,0.513057,0.761358,0.462065,0.993825,0.544196,0.842445,0.530894,0.520715,0.517474,0.850628,0.207475,0.117992,0.95162,0.735195,0.389106,0.0291512,0.56525,0.924123,0.732049,0.789649,0.949093,0.225159,0.279565,0.622179,0.00425434,0.290403,0.226823,0.998445,0.863282,0.473451,0.01086,0.912174,0.779613,0.453756,0.31077,0.264658,0.804798,0.222708,0.714998,0.402896,0.64341,0.652473,0.215889,0.514083,0.152011,0.931497,0.753843,0.954314,0.0348703,0.215909,0.523472,0.855494,0.938744,0.812499,0.867058,0.935982,0.396679,0.719917,0.122186,0.815836,0.974416,0.325116,0.381355,0.579887,0.475516,0.410686,0.739166,0.502031,0.546323,0.762629,0.60916,0.616428,0.962702,0.0588666,0.804124,0.693464,0.695971,0.886894,0.882238,0.594501,0.514185,0.78017,0.219251,0.471283,0.770001,0.145711,0.569402,0.0580588,0.760551,0.772643,0.66281,0.742431,0.724053,0.4018,0.110576,0.124367,0.492514,0.731422,0.629174,0.657498,0.649441,0.829765,0.861942,0.627519,0.667487,0.347639,0.242028,0.29374,0.0439864,0.96605,0.710871,0.570369,0.19002,0.571368,0.358787,0.190257,0.195823,0.592791,0.85658,0.139578,0.0797664,0.0201011,0.453684,0.302353,0.122461,0.810217,0.692236,0.417176,0.679571,0.561377,0.39254,0.528784,0.844797,0.275294,0.0367985,0.681131,0.22544,0.401981,0.282686,0.770805,0.776871,0.938285,0.670486,0.115321,0.71805,0.544238,0.572559,0.647537,0.168861,0.389562,0.172526,0.857804,0.479277,0.43647,0.945141,0.0334847,0.116223,0.438802,0.656955,0.0277435,0.880879,0.113364,0.113059,0.286276,0.429429,0.136356,0.869632,0.640724,0.965459,0.47441,0.559037,0.838766,0.209735,0.595537,0.942865,0.873151,0.721342,0.866323,0.700759,0.819285,0.187196,0.730471,0.885977,0.42844,0.0327024,0.819452,0.663905,0.433296,0.891633,0.867957,0.592379,0.441202,0.21754,0.353469,0.299748,0.989975,0.36151,0.125874,0.582977,0.476032,0.231214,0.5941,3.51667e-05,0.514369,0.789991,0.220136,0.533344,0.747157,0.205069,0.574557,0.503162,0.808149,0.802712,0.120967,0.805433,0.124792,0.594799,0.156684,0.376779,0.688363,0.349566,0.640033,0.866094,0.403718,0.199262,0.788505,0.73078,0.525663,0.913768,0.494594,0.626123,0.910429,0.976517,0.934085,0.11919,0.937345,0.472282,0.627791,0.530549,0.0303174,0.195083,0.127434,0.674967,0.0438317,0.819609,0.54957,0.116688,0.39646,0.825334,0.608725,0.16424,0.107029,0.160075,0.569667,0.575576,0.154419,0.7127,0.0267177,0.000830114,0.228929,0.300285,0.410441,0.786365,0.61039,0.45629,0.525847,0.153026,0.113625,0.807652,0.882193,0.638025,0.147096,0.998228,0.213032,0.304219,0.875806,0.843911,0.299263,0.889955,0.102414,0.567423,0.732974,0.746531,0.758077,0.809335,0.18188,0.616042,0.0920189,0.346654,0.774942,0.0970012,0.553442,0.132321,0.682942,0.648781,0.655613,0.850504,0.397803,0.829943,0.434481,0.184473,0.43358,0.223032,0.317102,0.542704,0.891831,0.587104,0.891108,0.644906,0.760376,0.355447,0.50155,0.78263,0.852266,0.44557,0.402677,0.768598,0.854073,0.759621,0.951006,0.495327,0.492189,0.560738,0.118098,0.7171,0.340119,0.535636,0.683194,0.4409,0.545491,0.70415,0.531855,0.294865,0.343639,0.0682847,0.596603,0.659767,0.559106,0.597316,0.959076,0.260583,0.190485,0.735844,0.632808,0.571486,0.58597,0.296147,0.0463287,0.216483,0.725124,0.0511528,0.708568,0.537379,0.92898,0.513528,0.456971,0.310692,0.521101,0.0249361,0.116773,0.582431,0.547397,0.560697,0.237201,0.305962,0.408916,0.780332,0.247031,0.00261927,0.209392,0.832537,0.644466,0.749692,0.852198,0.353581,0.844706,0.511764,0.0621842,0.252696,0.307596,0.153543,0.545896,0.480776,0.419769,0.85085,0.245465,0.83582,0.342894,0.370683,0.851293,0.249522,0.650497,0.0558108,0.280154,0.860593,0.11589,0.995258,0.77205,0.993597,0.699654,0.323583,0.158403,0.106614,0.638397,0.164256,0.892685,0.446058,0.870268,0.814007,0.859345,0.075673,0.0485889,0.59471,0.0729918,0.0462285,0.689493,0.529108,0.104873,0.913969,0.13235,0.756273,0.12826,0.632047,0.969396,0.702565,0.572843,0.495965,0.672244,0.333104,0.733378,0.900215,0.0736121,0.0283649,0.907623,0.929045,0.0941408,0.36097,0.750944,0.136263,0.569684,0.218201,0.0318736,0.662639,0.229386,0.985305,0.906246,0.979645,0.920623,0.678649,0.463771,0.56443,0.263853,0.606957,0.341082,0.31269,0.229414,0.575876,0.354907,0.763732,0.109028,0.524294,0.975261,0.302906,0.982487,0.00703162,0.730153,0.738545,0.989561,0.642343,0.298342,0.0912236,0.829611,0.376224,0.713271,0.344818,0.942687,0.668624,0.00518018,0.309189,0.638039,0.130654,0.125251,0.529071,0.500143,0.412847,0.0533537,0.576949,0.217885,0.423019,0.464075,0.0184816,0.528961,0.864643,0.677803,0.0909021,0.0455871,0.814349,0.364433,0.623591,0.145626,0.894436,0.448907,0.261191,0.573378,0.051636,0.817305,0.144405,0.279186,0.826554,0.241103,0.273821,0.775191,0.334405,0.756399,0.529219,0.255509,0.0817177,0.386465,0.20315,0.201353,0.142616,0.097598,0.218421,0.904272,0.366383,0.53099,0.362983,0.0856261,0.334974,0.732867,0.121824,0.445188,0.00691408,0.776193,0.990571,0.0627861,0.102332,0.39389,0.567244,0.939414,0.0714089,0.300855,0.909271,0.107696,0.969375,0.14828,0.498344,0.080809,0.0323452,0.501434,0.069045,0.803661,0.285715,0.0808802,0.787146,0.0506156,0.0972251,0.0463421,0.476545,0.0550498,0.0417145,0.0944563,0.921193,0.118614,0.363436,0.923094,0.940971,0.349841,0.260468,0.424809,0.346287,0.710619,0.271147,0.894612,0.568306,0.573656,0.339029,0.61962,0.922619,0.733665,0.384521,0.176817,0.572989,0.947909,0.500509,0.829466,0.437891,0.766933,0.810663,0.587378,0.0331174,0.716042,0.319558,0.967315,0.855214,0.821502,|0.0382291,0.163793,0.214131,0.633639,0.458453,0.947899,0.135743,0.610558,0.0221395,0.926525,0.288772,0.945738,0.944128,0.394681,0.269297,0.462804,0.0118986,0.581814,0.113323,0.79784,0.141129,0.801533,0.973741,0.014859,0.0033527,0.936552,0.967311,0.392937,0.499559,0.372754,0.25634,0.639605,0.591183,0.0574194,0.966903,0.234511,0.546725,0.249637,0.636937,0.698872,0.629415,0.153343,0.678901,0.393156,0.438048,0.640156,0.0344487,0.22593,0.569211,0.361719,0.853999,0.152583,0.507185,0.866892,0.398432,0.603091,0.41271,0.0519341,0.686039,0.851181,0.861529,0.414481,0.0765099,0.851299,0.759986,0.7929,0.0270079,0.0936294,0.702881,0.802037,0.356811,0.963193,0.353952,0.0926269,0.897235,0.380961,0.111312,0.735005,0.903373,0.954852,0.851873,0.713742,0.866465,0.0480286,0.799256,0.224393,0.439397,0.164161,0.0467598,0.700583,0.902615,0.58136,0.485361,0.0159006,0.807918,0.353399,0.240608,0.952215,0.0566109,0.284933,0.231017,0.441619,0.268877,0.128022,0.964599,0.919987,0.033913,0.481414,0.546727,0.614909,0.729871,0.583511,0.13943,0.374721,0.841044,0.933275,0.391102,0.286602,0.305149,0.76567,0.540431,0.0441085,0.314128,0.490364,0.640132,0.73686,0.82779,0.990982,0.884436,0.18983,0.10459,0.859826,0.440183,0.558456,0.835214,0.317492,0.821644,0.579739,0.646047,0.102699,0.939014,0.308239,0.206487,0.491787,0.943564,0.312295,0.76926,0.0622503,0.655481,0.619873,0.056821,0.415352,0.746434,0.063885,0.51196,0.823349,0.879592,0.159608,0.302959,0.595467,0.24419,0.514083,0.420736,0.657702,0.045135,0.125615,0.716408,0.846995,0.648843,0.419187,0.565675,0.19279,0.528268,0.438501,0.754581,0.687762,0.630956,0.593477,0.343645,0.809451,0.787865,0.693864,0.205602,0.965994,0.527581,0.970674,0.352404,0.909603,0.357106,0.0962008,0.85222,0.501418,0.0676927,0.918445,0.202141,0.714042,0.43442,0.304943,0.255122,0.0991089,0.923559,0.383708,0.536064,0.698807,0.618814,0.489564,0.503478,0.735747,0.605732,0.91347,0.825799,0.343374,0.0524408,0.377901,0.0188687,0.573788,0.876142,0.868135,0.84531,0.733082,0.192712,0.872842,0.138914,0.21943,0.926577,0.34553,0.747839,0.0797389,0.802498,0.824585,0.655222,0.589866,0.929382,0.081479,0.493969,0.138824,0.996888,0.13085,0.0828964,0.587495,0.647357,0.0627685,0.379465,0.470493,0.205635,0.804656,0.534313,0.342014,0.383019,0.487482,0.788454,0.770815,0.518008,0.696392,0.791648,0.40033,0.201857,0.250145,0.736273,0.284375,0.163321,0.774636,0.240373,0.353734,0.80006,0.276362,0.124766,0.673505,0.632491,0.15626,0.771919,0.194584,0.140189,0.784736,0.243571,0.977966,0.844875,0.235755,0.90306,0.348688,0.814295,0.573451,0.582962,0.739072,0.100249,0.869175,0.407435,0.582031,0.842717,0.162958,0.682001,0.666543,0.424985,0.215407,0.73094,0.0990285,0.768387,0.849049,0.412284,0.0241224,0.872789,0.474743,0.777421,0.291414,0.0519742,0.710605,0.00744671,0.0106478,0.555678,0.489563,0.481968,0.998247,0.720198,0.150354,0.281901,0.913728,0.293449,0.628608,0.0121366,0.868055,0.877622,0.830691,0.846214,0.361025,0.184765,0.690868,0.242199,0.917817,0.0761188,0.734446,0.495728,0.766063,0.818283,0.81171,0.467857,0.626127,0.131734,0.544436,0.0525466,0.787951,0.295141,0.386179,0.0389823,0.860063,0.0312713,0.575062,0.928989,0.466764,0.25195,0.850901,0.681283,0.221214,0.111482,0.912103,0.987501,0.199318,0.712509,0.4056,0.147034,0.937049,0.534286,0.475661,0.267686,0.208578,0.990758,0.538772,0.538873,0.431204,0.861747,0.973968,0.249673,0.213927,0.928135,0.445563,0.34449,0.54111,0.719026,0.796609,0.289783,0.501605,0.00381464,0.629016,0.0495734,0.441676,0.275967,0.271562,0.643857,0.0570261,0.412843,0.403638,0.607587,0.638466,0.904072,0.160422,0.690099,0.906263,0.493511,0.44423,0.0236681,0.715172,0.548518,0.790362,0.104053,0.637242,0.966391,0.425385,0.718334,0.78306,0.663337,0.691598,0.305693,0.650768,0.562844,0.19338,0.87488,0.203905,0.218516,0.614617,0.315632,0.044,0.83495,0.00519693,0.989934,0.384536,0.484169,0.341357,0.505862,0.412926,0.135787,0.475063,0.924558,0.199687,0.244691,0.588254,0.246991,0.26948,0.739948,0.373575,0.94793,0.485286,0.122978,0.439222,0.405529,0.512186,0.000666142,0.30237,0.182398,0.952086,0.759142,0.504697,0.413217,0.645418,0.930274,0.301984,0.952183,0.0603772,0.144096,0.588166,0.666659,0.25761,0.52454,0.529028,0.623201,0.999104,0.198243,0.672358,0.317423,0.797707,0.278695,0.960476,0.93664,0.669675,0.790733,0.735102,0.156752,0.57586,0.406727,0.451645,0.0888135,0.477113,0.715914,0.726244,0.282746,0.829937,0.861666,0.826257,0.0881163,0.412963,0.608383,0.554712,0.451626,0.0669802,0.60441,0.105117,0.833783,0.419317,0.664159,0.703512,0.806338,0.284983,0.657329,0.854238,0.806975,0.208716,0.195061,0.315431,0.389906,0.17866,0.922381,0.694338,0.215667,0.396316,0.135153,1.63913e-05,0.0724336,0.204203,0.737887,0.222195,0.43561,0.30695,0.395116,0.876419,0.066778,0.388548,0.225292,0.196784,0.712702,0.514147,0.0542544,0.445078,0.976432,0.132818,0.438368,0.66293,0.383221,0.634901,0.22292,0.435869,0.08955,0.171107,0.134411,0.946032,0.418966,0.137598,0.935288,0.635526,0.540099,0.0643618,0.245321,0.375669,0.892643,0.907114,0.770347,0.215833,0.44077,0.605712,0.952729,0.98355,0.32712,0.247797,0.24976,0.57372,0.264149,0.656129,0.490663,0.906827,0.47693,0.185138,0.342326,0.0281197,0.858684,0.276327,0.00599229,0.204842,0.810106,0.865984,0.15551,0.178462,0.958833,0.603968,0.4728,0.783719,0.574943,0.177409,0.729677,0.245886,0.283095,0.749979,0.72979,0.767018,0.946345,0.507714,0.76594,0.952915,0.161468,0.463336,0.826789,0.0463077,0.00439054,0.221396,0.435075,0.0979652,0.214301,0.846959,0.0209107,0.941984,0.892912,0.796065,0.180679,0.257103,0.10847,0.970462,0.794139,0.212394,0.516052,0.710104,0.556185,0.385261,0.62843,0.574346,0.915665,0.0682068,0.217915,0.841403,0.847769,0.892365,0.844685,0.353628,0.289626,0.484828,0.908604,0.295851,0.974571,0.353144,0.345818,0.400501,0.957204,0.551658,0.515921,0.921614,0.872907,0.483439,0.0190849,0.768298,0.339923,0.798114,0.578934,0.951231,0.892748,0.248659,0.388841,0.605864,0.639602,0.41502,0.790656,0.559178,0.269113,0.507774,0.94107,0.377445,0.683844,0.658153,0.293024,0.603947,0.64753,0.262927,0.216008,0.186811,0.117664,0.359083,0.465761,0.49973,0.0573909,0.69258,0.671054,0.152961,0.49401,0.741698,0.934626,0.324733,0.0289938,0.0160174,0.879849,0.844258,0.930842,0.887288,0.834155,0.117355,0.369646,0.953,0.432107,0.240514,0.231808,0.446298,0.229209,0.580121,0.943931,0.440922,0.811917,0.0122463,0.968386,0.798934,0.0607399,0.534681,0.739667,0.252614,0.866451,0.944714,0.665322,0.316408,0.298746,0.725009,0.682266,0.848644,0.817568,0.62479,0.70987,0.100071,0.985359,0.431693,0.948976,0.619145,0.398019,0.823602,0.580836,0.921539,0.913455,0.182157,0.151904,0.0154935,0.412087,0.798367,0.0829208,0.556941,0.44624,0.0583656,0.602629,0.350201,0.862246,0.338443,0.925482,0.383236,0.882633,0.310485,0.0254111,0.786394,0.476397,0.608801,0.937444,0.818546,0.180881,0.632779,0.332069,0.508274,0.686515,0.0175854,0.171009,0.583993,0.445465,0.399308,0.45883,0.689141,0.109888,0.571049,0.823446,0.464869,0.688141,0.851694,0.667283,0.0367888,0.151106,0.882304,0.687688,0.556718,0.474646,0.727143,0.303045,0.0517129,0.630508,0.632911,0.650577,0.708073,0.774352,0.413158,0.351479,0.841605,0.879092,0.368703,0.330439,0.481659,0.321688,0.491145,0.228507,0.377311,0.0211074,0.518688,0.44081,0.290889,0.755906,0.0822111,0.270867,0.647395,0.469394,0.261493,0.734748,0.67503,0.177077,0.752217,0.824271,0.719472,0.398854,0.890368,0.193035,0.951576,0.236793,0.428342,0.274525,0.840556,0.416662,0.738232,0.893818,0.494907,0.322506,0.142689,0.640277,0.383783,0.71582,0.228623,0.141013,0.432581,0.474363,0.4633,0.184199,0.741773,0.395878,0.191183,0.839842,0.0670516,0.699591,0.356514,0.755803,0.926614,0.977079,0.0578067,0.456233,0.404279,0.643673,0.328509,0.317452,0.772388,0.800965,0.748269,0.690699,0.11828,0.560428,0.375964,0.631229,0.468598,0.212764,0.19889,0.604821,0.597109,0.546167,0.547882,0.726589,0.132328,0.303566,0.362415,0.499766,0.626441,0.0520985,0.486349,0.765398,0.780725,0.698149,0.505458,0.233677,0.393971,0.694143,0.831601,0.26738,0.0422546,0.0438377,0.460812,0.406486,0.418174,0.00524467,0.646341,0.711922,0.20104,0.866934,0.155461,0.416638,0.714835,0.0133583,0.193169,0.928143,0.896706,0.447176,0.889018,0.366419,0.552725,0.183261,0.710886,0.16421,0.964439,0.32823,0.117546,0.691006,0.341903,0.00369275,0.72744,0.0503731,0.254417,0.697985,0.143619,0.371937,0.36605,0.580385,0.640947,0.109142,0.395009,0.843986,0.980973,0.431188,0.312689,0.401041,0.312322,0.0180628,0.476533,0.0230687,0.549079,0.755017,0.103288,0.669956,0.653105,0.751882,0.108913,0.76019,0.490438,0.428479,0.051888,0.277564,0.237213,0.705177,0.565749,0.539227,0.593153,0.523696,0.838257,0.266392,0.722262,0.876353,0.0731942,0.286436,0.56378,0.545176,0.525042,0.152226,0.608473,0.73709,0.558726,0.296657,0.279869,0.347848,0.802711,0.604998,0.233719,0.677264,0.367614,0.79661,0.819445,0.454868,0.793029,0.101472,0.192915,0.492058,0.0246867,0.80069,0.166431,0.875567,0.809176,0.151716,0.957521,0.840698,0.55742,0.283419,0.947913,0.127848,0.59863,0.152198,0.564415,0.618224,0.184964,0.192481,0.536264,0.51426,0.57242,0.348578,0.432303,|0.450925,0.124858,0.1484,0.245045,0.357592,0.237997,0.0829744,0.363837,0.0118573,0.671259,0.343728,0.395027,0.25566,0.732982,0.412294,0.129032,0.186452,0.693258,0.345631,0.520811,0.0462998,0.863306,0.447463,0.0868555,0.915335,0.604522,0.135351,0.314068,0.779567,0.255595,0.0986942,0.380792,0.831569,0.461701,0.292311,0.884026,0.779579,0.874921,0.31461,0.0761082,0.172554,0.718301,0.183963,0.0321161,0.297619,0.869433,0.696218,0.394545,0.0409459,0.650217,0.405576,0.853531,0.870561,0.769916,0.0683982,0.838213,0.481425,0.427984,0.928133,0.563818,0.109279,0.492106,0.409477,0.437672,0.209685,0.514643,0.840434,0.154022,0.404393,0.904535,0.194876,0.734906,0.0903952,0.611752,0.90747,0.54518,0.332151,0.575556,0.17,0.976175,0.952732,0.050906,0.462299,0.0113688,0.834413,0.947384,0.232302,0.133168,0.0593033,0.737578,0.803715,0.0723129,0.437546,0.312766,0.364623,0.54951,0.470692,0.147692,0.680727,0.751,0.0131309,0.863994,0.26318,0.340983,0.920831,0.0765523,0.000611365,0.689779,0.915186,0.0462428,0.870474,0.369496,0.388146,0.785127,0.445575,0.722681,0.768925,0.00594944,0.60757,0.46244,0.595082,0.396789,0.593689,0.32155,0.412371,0.630587,0.0347339,0.9775,0.329971,0.6834,0.818493,0.848834,0.214627,0.707075,0.329655,0.0350267,0.414518,0.755949,0.144569,0.883268,0.349283,0.149431,0.556121,0.826512,0.456371,0.487162,0.946705,0.433943,0.722096,0.736882,0.633692,0.194275,0.292259,0.388728,0.86456,0.0290994,0.132971,0.597824,0.801242,0.867978,0.861565,0.557672,0.431489,0.158907,0.31711,0.84939,0.0959786,0.565568,0.140749,0.883409,0.377631,0.141319,0.755757,0.555335,0.779144,0.671246,0.667346,0.00180364,0.652959,0.93423,0.554153,0.84019,0.783921,0.274172,0.79473,0.0654348,0.716729,0.0173594,0.702594,0.371945,0.407775,0.833967,0.653818,0.139929,0.141692,0.2738,0.0859128,0.376333,0.546107,0.090471,0.614658,0.720188,0.691735,0.595708,0.0419889,0.495266,0.256478,0.182455,0.376971,0.0675269,0.3123,0.113018,0.691348,0.107488,0.143852,0.961064,0.916407,0.594104,0.301039,0.667045,0.944523,0.390255,0.158464,0.832479,0.512679,0.291342,0.890113,0.585583,0.973247,0.0808276,0.832884,0.418539,0.730208,0.827124,0.709864,0.773609,0.0423645,0.0659661,0.394632,0.182678,0.918484,0.89219,0.106723,0.96306,0.762685,0.975383,0.630618,0.345015,0.783449,0.253315,0.543312,0.742401,0.513422,0.0220775,0.962892,0.859583,0.355558,0.784749,0.445637,0.784741,0.73723,0.0759223,0.439037,0.420307,0.956361,0.53997,0.371304,0.526098,0.945183,0.80787,0.0238762,0.279136,0.584463,0.363126,0.825486,0.617733,0.942565,0.329115,0.779573,0.764298,0.386511,0.643294,0.646839,0.396277,0.667083,0.586055,0.0586069,0.210431,0.615431,0.670063,0.843262,0.818376,0.117383,0.591747,0.244636,0.115339,0.05136,0.817139,0.838313,0.781118,0.123686,0.880903,0.223107,0.938617,0.539072,0.109631,0.197921,0.518098,0.898254,0.198601,0.315968,0.0631663,0.0167612,0.494483,0.92687,0.97927,0.733308,0.479065,0.198057,0.719499,0.0494933,0.480179,0.750069,0.696344,0.0588624,0.615475,0.358288,0.121036,0.907856,0.672598,0.443188,0.981603,0.676308,0.479171,0.526884,0.149498,0.0889708,0.669719,0.878554,0.061562,0.759947,0.163665,0.11937,0.702755,0.824673,0.988835,0.637715,0.196094,0.629272,0.153495,0.466694,0.510825,0.859507,0.815467,0.0537958,0.667282,0.660265,0.0921811,0.166035,0.543496,0.219419,0.0552367,0.143745,0.726506,0.112352,0.807302,0.0545793,0.850451,0.415411,0.886201,0.67073,0.897037,0.23782,0.618746,0.539007,0.0971357,0.488273,0.0194184,0.384641,0.00117582,0.533249,0.759524,0.0878982,0.708284,0.499538,0.976733,0.477745,0.187702,0.895984,0.304032,0.858529,0.300422,0.641468,0.557665,0.450901,0.332351,0.489025,0.848903,0.715664,0.532708,0.180064,0.0395617,0.489427,0.427426,0.456003,0.611636,0.546789,0.420094,0.0859429,0.17377,0.159167,0.769781,0.942922,0.82764,0.560619,0.961449,0.412354,0.0430022,0.11914,0.319287,0.257095,0.475914,0.234804,0.756035,0.861107,0.977136,0.453576,0.738691,0.924171,0.358065,0.560513,0.0686863,0.0466297,0.543346,0.766705,0.619489,0.494565,0.363822,0.0183877,0.165488,0.112384,0.796477,0.859365,0.253551,0.969936,0.257057,0.865807,0.473499,0.921905,0.745784,0.578861,0.967411,0.410579,0.35064,0.216344,0.894822,0.688497,0.883881,0.508105,0.0593432,0.609198,0.477984,0.855834,0.880826,0.295862,0.303155,0.0247586,0.663167,0.24663,0.6827,0.701139,0.939675,0.517632,0.794173,0.401093,0.550721,0.477158,0.850713,0.192878,0.775807,0.92644,0.972941,0.285954,0.0322603,0.0353216,0.22689,0.188194,0.225831,0.799013,0.536572,0.910789,0.205953,0.810644,0.0657408,0.761186,0.661272,0.463359,0.380239,0.696435,0.0467716,0.48872,0.963498,0.503576,0.394637,0.90393,0.916792,0.432799,0.684528,0.159554,0.187228,0.362457,0.0804726,0.76986,0.176939,0.905182,0.179083,0.426241,0.508061,0.850326,0.196612,0.844125,0.576354,0.283867,0.912846,0.557391,0.513585,0.10216,0.0662738,0.115281,0.0103989,0.383706,0.743897,0.0146657,0.566758,0.0365013,0.629947,0.247111,0.387999,0.0891283,0.58931,0.391639,0.459134,0.200147,0.794912,0.653515,0.0103279,0.510242,0.393739,0.582738,0.0886944,0.880299,0.158477,0.202059,0.335187,0.250002,0.769148,0.296905,0.0311872,0.17689,0.548804,0.555764,0.132645,0.953875,0.77441,0.905082,0.254147,0.106794,0.996343,0.220294,0.590863,0.396213,0.993517,0.366333,0.615407,0.80602,0.260844,0.967776,0.918544,0.384169,0.639458,0.679248,0.203573,0.790626,0.616106,0.883038,0.427989,0.318647,0.449759,0.97579,0.496773,0.539189,0.376811,0.161296,0.541667,0.955558,0.872032,0.948733,0.439081,0.805052,0.333554,0.231577,0.493372,0.19657,0.480003,0.727024,0.209391,0.949354,0.834924,0.300537,0.957193,0.592175,0.681593,0.65245,0.562365,0.842091,0.232493,0.62536,0.367825,0.659478,0.0285237,0.250529,0.464446,0.271498,0.549185,0.298285,0.0312239,0.0153522,0.915011,0.644814,0.0640114,0.27844,0.758831,0.71448,0.521382,0.800931,0.512276,0.504038,0.970785,0.83173,0.423206,0.291235,0.911929,0.624786,0.333416,0.796588,0.605963,0.733493,0.173092,0.913991,0.44677,0.813969,0.254964,0.18874,0.957399,0.434443,0.20685,0.357367,0.309229,0.789923,0.299073,0.0033139,0.938299,0.620022,0.220391,0.703019,0.16736,0.0236633,0.701164,0.176788,0.378939,0.408862,0.923537,0.811726,0.582391,0.134915,0.845265,0.705445,0.866571,0.556246,0.558833,0.298213,0.129969,0.679349,0.0731153,0.927451,0.177118,0.0532661,0.901289,0.918136,0.631395,0.906064,0.291821,0.61505,0.901374,0.674139,0.459968,0.234706,0.202016,0.985257,0.885958,0.610645,0.212402,0.919344,0.106909,0.225497,0.772403,0.39851,0.0131684,0.823091,0.333523,0.519434,0.356801,0.648763,0.20793,0.029395,0.958588,0.544647,0.156944,0.314116,0.306593,0.769645,0.989267,0.542303,0.45148,0.290112,0.468091,0.336866,0.715653,0.0212596,0.175516,0.59522,0.795898,0.277224,0.431451,0.589224,0.431239,0.760469,0.767531,0.521202,0.0389935,0.443099,0.74988,0.043619,0.774923,0.48308,0.361152,0.375741,0.821411,0.744043,0.970744,0.158354,0.794605,0.677323,0.955418,0.0278141,0.506661,0.453398,0.420919,0.216929,0.254263,0.51243,0.216928,0.574927,0.794115,0.176775,0.774557,0.713905,0.173488,0.814441,0.343178,0.809103,0.384524,0.206293,0.988615,0.488888,0.899965,0.890109,0.601579,0.405608,0.807975,0.0589358,0.300615,0.0339031,0.121158,0.751189,0.960529,0.838444,0.652892,0.390185,0.344885,0.151622,0.886615,0.727668,0.189903,0.447036,0.126735,0.685124,0.501084,0.32753,0.587267,0.228967,0.812173,0.221775,0.777234,0.996295,0.570613,0.26668,0.0413452,0.250815,0.245199,0.876747,0.7764,0.271281,0.974144,0.673735,0.677314,0.21711,0.0574548,0.619085,0.0600878,0.984644,0.728401,0.0171521,0.821914,0.239601,0.169804,0.309451,0.319194,0.670106,0.820584,0.999995,0.811636,0.875115,0.139024,0.48194,0.202748,0.971864,0.792693,0.113062,0.486257,0.085352,0.814569,0.00244004,0.9361,0.976444,0.635777,0.37692,0.82722,0.206781,0.502561,0.0423847,0.32762,0.787912,0.86503,0.990916,0.551499,0.562743,0.532191,0.223308,0.215055,0.577552,0.477855,0.173594,0.184976,0.923609,0.504156,0.327692,0.401098,0.81794,0.410269,0.903762,0.522357,0.741265,0.444304,0.997275,0.967942,0.155216,0.379814,0.491988,0.248905,0.877154,0.758853,0.505192,0.242966,0.294072,0.0312158,0.330952,0.0228074,0.999844,0.211372,0.211774,0.24552,0.25759,0.666621,0.0207146,0.211523,0.693095,0.112601,0.317287,0.426043,0.0652214,0.223475,0.178622,0.0182893,0.0699793,0.576107,0.422298,0.065809,0.573812,0.283484,0.919892,0.521006,0.101376,0.543078,0.764665,0.677111,0.765784,0.34742,0.250464,0.958946,0.993513,0.294112,0.395266,0.969759,0.449996,0.659394,0.558634,0.323116,0.0503457,0.85278,0.658456,0.293679,0.968879,0.302922,0.396925,0.633745,0.166354,0.154916,0.530849,0.4181,0.999089,0.105463,0.975849,0.710767,0.00325096,0.189576,0.0490586,0.196394,0.485398,0.0318975,0.429923,0.820189,0.381011,0.724661,0.891562,0.44232,0.934399,0.238693,0.653662,0.661695,0.0113633,0.997239,0.770022,0.438702,0.752058,0.719172,0.0814286,0.712988,0.534073,0.0457502,0.500686,0.0179523,0.198429,0.108638,0.937747,0.222046,0.536026,0.0903943,0.431271,0.907596,0.136559,0.690457,0.566225,0.737616,0.287159,0.496237,0.507951,0.995593,0.529135,0.999939,0.863777,0.384164,0.126309,0.803399,0.379972,0.689864,0.829812,0.624768,0.894845,0.200176,|0.198779,0.475275,0.41884,0.836019,0.736149,0.329021,0.0912381,0.115548,0.470714,0.447657,0.121156,0.73434,0.712122,0.676994,0.455268,0.334977,0.708916,0.130956,0.573452,0.304613,0.171868,0.40117,0.871276,0.659365,0.496039,0.827796,0.71289,0.336403,0.621762,0.37895,0.943812,0.681626,0.344369,0.783786,0.229008,0.642534,0.995133,0.0447111,0.485661,0.486235,0.282987,0.76595,0.518366,0.546966,0.692037,0.220776,0.316747,0.941743,0.515366,0.256077,0.362322,0.762101,0.643941,0.867456,0.488241,0.324068,0.505793,0.40666,0.76299,0.284155,0.512869,0.622497,0.569413,0.971211,0.337696,0.203488,0.648981,0.578372,0.314413,0.411371,0.245764,0.661147,0.0748098,0.272156,0.210076,0.0960426,0.889231,0.538356,0.214879,0.491022,0.771856,0.0792869,0.36208,0.696668,0.906279,0.466137,0.802642,0.00190794,0.938858,0.0595371,0.643192,0.701112,0.147699,0.925057,0.833628,0.587782,0.230984,0.423423,0.0959074,0.0687941,0.833569,0.601362,0.792237,0.893268,0.452393,0.641568,0.494982,0.546502,0.510232,0.450257,0.0831144,0.547093,0.0256211,0.493066,0.147684,0.626217,0.787741,0.432514,0.843433,0.519561,0.888452,0.36853,0.349788,0.300609,0.746094,0.166961,0.402946,0.0862539,0.256237,0.851293,0.944014,0.603075,0.372907,0.889969,0.326706,0.583777,0.734418,0.670946,0.180961,0.210191,0.765473,0.715628,0.00145429,0.228315,0.0861587,0.945949,0.275675,0.117554,0.704571,0.209857,0.500126,0.310703,0.441422,0.679965,0.213493,0.786801,0.0687603,0.630343,0.709449,0.404547,0.714927,0.833706,0.454384,0.768124,0.831904,0.338638,0.621257,0.198694,0.474487,0.10138,0.488784,0.334442,0.692747,0.653048,0.422948,0.663359,0.157731,0.857112,0.521249,0.688724,0.571608,0.952139,0.44658,0.733885,0.268342,0.864429,0.462235,0.909261,0.784148,0.759891,0.481242,0.272438,0.587063,0.348266,0.757011,0.0712429,0.712669,0.835555,0.507298,0.756171,0.0801906,0.614593,0.601928,0.709445,0.62842,0.16033,0.453627,0.687215,0.323566,0.434468,0.424045,0.685749,0.419,0.131551,0.151767,0.528836,0.861664,0.410419,0.937355,0.921175,0.188143,0.850627,0.389881,0.22305,0.909374,0.431635,0.0374535,0.462168,0.593225,0.208471,0.230938,0.860227,0.938595,0.246221,0.812994,0.721383,0.360261,0.680631,0.60214,0.859088,0.175985,0.908565,0.0336162,0.71512,0.173544,0.582494,0.266861,0.00596559,0.751169,0.845067,0.0956346,0.0492104,0.731791,0.178785,0.788806,0.264944,0.855536,0.603218,0.781873,0.252763,0.293271,0.670502,0.146403,0.866953,0.431119,0.255209,0.517207,0.0151953,0.616098,0.108748,0.0174636,0.927305,0.995509,0.987469,0.521874,0.294059,0.164947,0.765071,0.834777,0.7081,0.183976,0.836381,0.535891,0.0457378,0.18226,0.446742,0.106231,0.732504,0.142639,0.701736,0.104836,0.278195,0.623152,0.933305,0.201411,0.789752,0.227085,0.23123,0.970688,0.571816,0.223575,0.265992,0.977781,0.987385,0.540498,0.124935,0.226172,0.625702,0.776467,0.0550261,0.175313,0.548621,0.582859,0.192103,0.115926,0.657869,0.249381,0.475964,0.576918,0.376486,0.299441,0.683667,0.293101,0.810225,0.149419,0.220215,0.970315,0.698341,0.150021,0.471815,0.709663,0.744057,0.168777,0.772848,0.080419,0.209721,0.744788,0.800617,0.217355,0.270704,0.595716,0.291407,0.696605,0.666357,0.929035,0.112488,0.0993997,0.919797,0.41184,0.0499944,0.0875703,0.772119,0.376886,0.298073,0.881958,0.598235,0.300725,0.368145,0.416309,0.503046,0.821836,0.54233,0.492279,0.851194,0.864536,0.294626,0.768259,0.443508,0.205735,0.213157,0.20288,0.531056,0.198234,0.669394,0.762377,0.632057,0.515298,0.152402,0.161058,0.402974,0.230479,0.192998,0.287396,0.513967,0.0569885,0.267117,0.275399,0.0528648,0.355839,0.547586,0.463764,0.504287,0.386867,0.276868,0.324433,0.814918,0.33154,0.803424,0.83541,0.00329727,0.371224,0.944766,0.183307,0.0672056,0.732571,0.714339,0.0494009,0.746621,0.625947,0.380513,0.208335,0.341142,0.363267,0.231198,0.37601,0.62318,0.18227,0.728517,0.357609,0.792331,0.999779,0.234106,0.577458,0.794653,0.0472125,0.929004,0.418564,0.510049,0.207274,0.897103,0.582422,0.559811,0.386071,0.70544,0.0905917,0.326485,0.397848,0.734237,0.0991896,0.807342,0.64798,0.824979,0.719742,0.566892,0.917922,0.123958,0.491059,0.184678,0.918004,0.127705,0.164558,0.313364,0.441042,0.32106,0.12309,0.291388,0.631153,0.973896,0.821585,0.395543,0.239681,0.623891,0.897542,0.473788,0.170242,0.983724,0.886004,0.490556,0.343132,0.219502,0.454429,0.957848,0.545895,0.521382,0.744478,0.16555,0.377911,0.118366,0.47663,0.192153,0.83329,0.985355,0.549333,0.167834,0.89851,0.933872,0.288827,0.937283,0.183021,0.420461,0.996617,0.697515,0.729634,0.909579,0.740339,0.690418,0.272137,0.933637,0.67114,0.333554,0.0644402,0.583444,0.58684,0.140579,0.253942,0.51098,0.46818,0.593243,0.170656,0.15213,0.260239,0.472044,0.213918,0.306833,0.155684,0.0510117,0.154367,0.661711,0.318729,0.588327,0.0967649,0.265126,0.403154,0.388966,0.790036,0.490349,0.967197,0.526807,0.543406,0.223963,0.350156,0.100232,0.439362,0.791104,0.715159,0.488159,0.527535,0.0248609,0.15677,0.554001,0.848822,0.546725,0.192624,0.798902,0.19804,0.0699847,0.706748,0.872817,0.835092,0.477839,0.457383,0.210549,0.687234,0.149929,0.721172,0.525233,0.845849,0.265655,0.331423,0.232964,0.333787,0.501689,0.481855,0.85316,0.0922701,0.584179,0.115762,0.784085,0.813908,0.886529,0.561495,0.507968,0.935356,0.775148,0.735736,0.98768,0.400363,0.211282,0.777,0.00279599,0.847174,0.656201,0.292987,0.29779,0.924505,0.369736,0.677722,0.270171,0.431635,0.252638,0.650931,0.415097,0.501375,0.916729,0.92622,0.539128,0.760865,0.684852,0.0321269,0.88775,0.906074,0.410014,0.406213,0.861436,0.331183,0.866323,0.030247,0.680457,0.881982,0.749306,0.749537,0.375664,0.84947,0.445448,0.38456,0.64583,0.946327,0.199874,0.539158,0.331823,0.100457,0.0890848,0.776945,0.322206,0.266624,0.762723,0.87766,0.915535,0.171915,0.828632,0.894481,0.720558,0.874193,0.864894,0.832539,0.810538,0.618299,0.892182,0.515886,0.336538,0.650504,0.203901,0.513061,0.668417,0.546933,0.238075,0.780037,0.519261,0.194038,0.621703,0.0599113,0.0362117,0.432193,0.824529,0.0189396,0.959879,0.242545,0.141932,0.872038,0.836652,0.000565052,0.596074,0.733607,0.502566,0.568186,0.129348,0.0539824,0.394451,0.605077,0.902833,0.520846,0.126123,0.663654,0.963392,0.485318,0.102808,0.919818,0.60926,0.633741,0.625427,0.904902,0.166263,0.804752,0.0192468,0.368558,0.177579,0.621577,0.433133,0.687665,0.66236,0.673404,0.785969,0.23459,0.732715,0.703692,0.311936,0.0752281,0.383645,0.562618,0.898475,0.0649567,0.156128,0.723586,0.0869795,0.423154,0.525661,0.23606,0.677811,0.444763,0.424267,0.283717,0.890488,0.495885,0.109509,0.594641,0.447032,0.725529,0.545701,0.704857,0.809388,0.763225,0.462365,0.361036,0.643128,0.333696,0.0746348,0.350993,0.869646,0.38332,0.805816,0.971534,0.866494,0.596505,0.861565,0.871742,0.419766,0.184178,0.825097,0.58493,0.713269,0.333485,0.0455613,0.385832,0.386125,0.674082,0.35681,0.0513371,0.899424,0.00212651,0.669551,0.294103,0.149596,0.041007,0.279792,0.46376,0.804336,0.174318,0.519702,0.214723,0.98366,0.124887,0.524231,0.00570416,0.177244,0.281111,0.887359,0.579189,0.618277,0.291191,0.759242,0.635206,0.600803,0.128216,0.493889,0.413678,0.0898423,0.182811,0.719307,0.332881,0.783494,0.395709,0.582719,0.783516,0.203745,0.556918,0.392193,0.428016,0.30818,0.351939,0.372553,0.189802,0.499352,0.456569,0.74067,0.070834,0.444087,0.148297,0.61732,0.112192,0.620049,0.190386,0.941062,0.564927,0.992564,0.408257,0.689025,0.298014,0.292837,0.320314,0.648667,0.839365,0.0910752,0.584686,0.489092,0.540667,0.0377435,0.610577,0.323257,0.858729,0.11456,0.569571,0.557469,0.804401,0.0444466,0.20693,0.411994,0.737652,0.0300503,0.817021,0.198272,0.157421,0.737042,0.841004,0.184501,0.81613,0.23913,0.860179,0.222086,0.882276,0.232652,0.219991,0.0996156,0.978295,0.189189,0.705018,0.910144,0.906761,0.312923,0.893148,0.589121,0.121169,0.658559,0.207749,0.00666684,0.433743,0.64383,0.322183,0.825945,0.270786,0.357633,0.309966,0.899469,0.743521,0.0950938,0.0610069,0.639161,0.692902,0.790527,0.273538,0.0418605,0.855645,0.394743,0.166455,0.378249,0.194493,0.778557,0.850201,0.0296606,0.398561,0.0168338,0.180061,0.761339,0.669546,0.368688,0.193509,0.962278,0.339919,0.796249,0.915214,0.627459,0.305851,0.607688,0.447229,0.989777,0.68652,0.361145,0.908711,0.655032,0.552914,0.837412,0.476604,0.237597,0.341748,0.722466,0.36127,0.351603,0.359325,0.831398,0.39343,0.322156,0.0921698,0.205438,0.281487,0.89687,0.903462,0.593791,0.0627587,0.500868,0.45479,0.8948,0.133285,0.770335,0.998462,0.591367,0.684266,0.122184,0.988603,0.198012,0.131719,0.780811,0.431629,0.0947674,0.967302,0.266931,0.184232,0.422813,0.393394,0.299536,0.171935,0.472677,0.418889,0.0916335,0.974473,0.140161,0.939233,0.925435,0.147938,0.300914,0.656994,0.401111,0.0507163,0.568609,0.473753,0.877329,0.477222,0.0348243,0.0983314,0.191984,0.649451,0.666482,0.908845,0.964518,0.854761,0.257012,0.393086,0.857325,0.141562,0.385068,0.546446,0.439986,0.351868,0.298919,0.764332,0.509837,0.797521,0.150811,0.516782,0.762243,0.491662,0.796899,0.545282,0.451512,0.307921,0.470317,0.934377,0.879746,0.0970286,0.794758,0.0195344,0.0158938,0.784789,0.991598,0.0951113,0.530299,0.0231434,0.314178,0.00548631,0.261013,0.345588,0.860441,|0.713898,0.545347,0.570373,0.423054,0.86201,0.804557,0.964888,0.50993,0.698405,0.189684,0.522041,0.819527,0.0825229,0.459909,0.632053,0.943262,0.322891,0.613972,0.0531383,0.976667,0.25921,0.811043,0.167218,0.853602,0.595714,0.710113,0.920892,0.962616,0.351013,0.93373,0.375515,0.0972164,0.737404,0.662865,0.398204,0.965464,0.0796916,0.144128,0.059541,0.0565843,0.068667,0.811582,0.383078,0.82702,0.775776,0.780385,0.695951,0.989245,0.357597,0.909492,0.534824,0.503713,0.373471,0.551177,0.655576,0.422315,0.958515,0.623853,0.238881,0.280583,0.350859,0.00185192,0.91579,0.383548,0.6905,0.879831,0.703238,0.0307836,0.799721,0.518605,0.883826,0.336509,0.500143,0.682499,0.644669,0.932588,0.901936,0.89247,0.584962,0.0977716,0.395466,0.576741,0.973378,0.00207376,0.486993,0.820373,0.493653,0.0323436,0.905436,0.427734,0.838124,0.175576,0.215348,0.625729,0.0302238,0.965814,0.441129,0.577463,0.821289,0.898397,0.342236,0.377555,0.419931,0.614038,0.745815,0.648379,0.746344,0.481407,0.990878,0.999348,0.730895,0.850987,0.54557,0.607449,0.196183,0.181204,0.264788,0.54859,0.960347,0.395374,0.801675,0.261731,0.112275,0.926988,0.83764,0.571222,0.196463,0.12286,0.275499,0.264132,0.348001,0.547953,0.809338,0.467475,0.95911,0.569904,0.702566,0.564619,0.430972,0.251256,0.517029,0.427057,0.541408,0.398183,0.916612,0.00711709,0.137096,0.392556,0.960826,0.459054,0.73385,0.171533,0.297001,0.413051,0.584248,0.954073,0.796176,0.402592,0.963405,0.738419,0.678779,0.479098,0.560773,0.834009,0.373,0.751623,0.664459,0.620358,0.899797,0.606068,0.768157,0.623756,0.306861,0.72345,0.264011,0.177307,0.495802,0.0486993,0.497783,0.909934,0.815657,0.860314,0.972945,0.232046,0.836638,0.839288,0.801293,0.0900838,0.46194,0.0918331,0.392323,0.0757691,0.744085,0.0797408,0.49498,0.643712,0.349594,0.0829015,0.749709,0.324829,0.530026,0.845316,0.684958,0.479534,0.315481,0.977786,0.0637226,0.957823,0.809231,0.78466,0.980699,0.552555,0.745942,0.224189,0.327045,0.366304,0.498845,0.0806427,0.242849,0.434421,0.888925,0.0114619,0.571218,0.95917,0.343205,0.397143,0.829842,0.536387,0.695935,0.68291,0.594184,0.363861,0.631191,0.123607,0.616674,0.57014,0.646814,0.781769,0.451772,0.15216,0.817416,0.631894,0.836543,0.565209,0.559201,0.362774,0.150512,0.191108,0.0909362,0.13491,0.785688,0.652305,0.900726,0.61379,0.391578,0.586277,0.397139,0.253551,0.924614,0.47027,0.635431,0.589509,0.636809,0.70874,0.0412397,0.405669,0.924362,0.226802,0.0807645,0.324575,0.523778,0.46654,0.513856,0.0156422,0.602833,0.957065,0.78597,0.84108,0.831295,0.843967,0.190627,0.399722,0.414618,0.0755672,0.523147,0.570394,0.816167,0.455034,0.0408422,0.87411,0.291132,0.0597709,0.632549,0.262508,0.074065,0.763466,0.0423999,0.473896,0.368538,0.553372,0.889739,0.212706,0.367764,0.82174,0.755352,0.315672,0.910322,0.885931,0.819673,0.892831,0.0709953,0.347063,0.268275,0.897423,0.246423,0.709384,0.417997,0.818464,0.0867411,0.0707548,0.429336,0.950833,0.830734,0.559292,0.10365,0.610148,0.862286,0.0522576,0.0654569,0.201672,0.263147,0.204493,0.370419,0.426919,0.762057,0.384988,0.998286,0.74742,0.716258,0.742815,0.255838,0.953819,0.940562,0.104275,0.452892,0.956258,0.231423,0.599037,0.837544,0.766514,0.909619,0.654741,0.719482,0.389918,0.083291,0.09588,0.0919887,0.221877,0.790833,0.231222,0.296315,0.703701,0.561258,0.5772,0.75296,0.775131,0.392697,0.0793005,0.159586,0.551427,0.449954,0.0667026,0.572118,0.581122,0.376182,0.498752,0.282834,0.400155,0.98215,0.876592,0.00877208,0.833821,0.844596,0.0302277,0.868681,0.98359,0.213586,0.993997,0.272221,0.7865,0.287889,0.559394,0.628998,0.196681,0.787283,0.939433,0.0364751,0.0683649,0.810544,0.481375,0.566297,0.957491,0.762573,0.178106,0.692524,0.417417,0.47704,0.596618,0.901674,0.936419,0.760675,0.481172,0.735442,0.0129045,0.11695,0.469421,0.949168,0.291031,0.172146,0.895449,0.119636,0.559842,0.218453,0.116989,0.833746,0.0998976,0.563688,0.68916,0.735417,0.332804,0.0080958,0.0392705,0.356228,0.271448,0.709271,0.2279,0.326322,0.244684,0.62803,0.448737,0.325913,0.633289,0.409254,0.439191,0.0170428,0.564165,0.532357,0.373496,0.547043,0.0669197,0.921987,0.635804,0.680261,0.178404,0.371669,0.401559,0.0444649,0.792535,0.445671,0.671573,0.856712,0.3454,0.102695,0.325577,0.317747,0.834333,0.0902804,0.353964,0.968956,0.921379,0.301853,0.731474,0.785786,0.120827,0.680775,0.257477,0.556829,0.815579,0.477843,0.592609,0.223861,0.123502,0.472446,0.302422,0.223175,0.468287,0.215466,0.668254,0.508455,0.115776,0.706702,0.275347,0.219266,0.63912,0.787534,0.453987,0.41725,0.591042,0.703183,0.884453,0.536157,0.254717,0.152496,0.352145,0.235166,0.350881,0.803357,0.263169,0.957991,0.944368,0.280855,0.129732,0.74507,0.164779,0.913346,0.0470957,0.78221,0.142528,0.336738,0.838045,0.339797,0.50443,0.376828,0.637901,0.103992,0.333014,0.886882,0.584595,0.720308,0.903259,0.254245,0.443582,0.993029,0.454875,0.484638,0.4728,0.242408,0.784042,0.42579,0.900056,0.0203148,0.376014,0.0886485,0.162171,0.362903,0.791445,0.006477,0.10113,0.0109267,0.615412,0.551733,0.581619,0.297177,0.209091,0.135789,0.731734,0.974859,0.92467,0.250597,0.844853,0.829919,0.0496593,0.145277,0.817226,0.587678,0.320519,0.34653,0.689232,0.246014,0.376751,0.728354,0.0466703,0.326392,0.926527,0.393382,0.0470759,0.917052,0.249187,0.412886,0.682706,0.963088,0.322996,0.464924,0.71864,0.306462,0.30615,0.548817,0.0265965,0.716861,0.178384,0.663511,0.0833067,0.973849,0.753285,0.386817,0.531569,0.0408052,0.822515,0.171388,0.760649,0.625357,0.571215,0.810202,0.946844,0.104712,0.893082,0.921054,0.219996,0.1818,0.759485,0.0781374,0.323079,0.0452145,0.522198,0.177834,0.9154,0.0126988,0.547766,0.0363368,0.284527,0.345755,0.333158,0.94292,0.609269,0.94203,0.595147,0.837867,0.519973,0.0771766,0.124408,0.813816,0.419044,0.29984,0.376206,0.0589771,0.956194,0.222177,0.0221726,0.421711,0.511234,0.669306,0.884787,0.648719,0.354752,0.76284,0.0852227,0.698677,0.887776,0.681118,0.43662,0.677381,0.101732,0.181702,0.578865,0.837052,0.443616,0.951336,0.510651,0.719657,0.531944,0.188206,0.385751,0.617468,0.40699,0.874942,0.967831,0.01784,0.940764,0.74565,0.157417,0.503689,0.595771,0.516815,0.244841,0.67663,0.2583,0.938502,0.586394,0.749881,0.70585,0.0828469,0.611083,0.945843,0.560683,0.67937,0.704631,0.0964521,0.721125,0.151295,0.206264,0.577763,0.119427,0.182151,0.0501555,0.127244,0.986305,0.722569,0.369409,0.252509,0.600302,0.729208,0.574386,0.696913,0.521248,0.119505,0.278755,0.0222207,0.194058,0.0966005,0.871295,0.942289,0.70522,0.535619,0.53224,0.504172,0.336064,0.558889,0.960784,0.669638,0.980667,0.906454,0.337157,0.334774,0.0787916,0.835683,0.944427,0.488403,0.84206,0.591199,0.0100714,0.263352,0.912774,0.133305,0.273135,0.166629,0.0196858,0.113951,0.723004,0.668319,0.410614,0.887197,0.557786,0.0568336,0.826381,0.096916,0.789393,0.186344,0.901269,0.171965,0.660733,0.694573,0.023026,0.483774,0.915182,0.466118,0.798404,0.223128,0.193778,0.834389,0.757095,0.662112,0.0376924,0.39313,0.700319,0.970922,0.521365,0.0662456,0.340366,0.474903,0.689172,0.615038,0.577424,0.641757,0.780059,0.1192,0.875701,0.20449,0.835357,0.0880455,0.95238,0.654912,0.109295,0.969326,0.276662,0.466874,0.694205,0.922405,0.717278,0.224379,0.881267,0.10486,0.285518,0.733127,0.646319,0.909002,0.419657,0.195479,0.010366,0.194633,0.0791901,0.311413,0.500878,0.506033,0.210847,0.259741,0.0620416,0.567616,0.105002,0.615796,0.508021,0.370916,0.817222,0.463711,0.728239,0.404302,0.911756,0.179125,0.993549,0.645194,0.376216,0.973473,0.447958,0.11788,0.827201,0.229092,0.764037,0.218973,0.940814,0.424194,0.765607,0.385214,0.450098,0.73019,0.684533,0.481803,0.452314,0.975255,0.2181,0.680909,0.872757,0.73716,0.508559,0.0394691,0.89481,0.457917,0.221827,0.822325,0.321532,0.70228,0.645397,0.577242,0.959582,0.335188,0.420292,0.448858,0.913431,0.85768,0.780814,0.748717,0.0584748,0.442041,0.314979,0.985471,0.839644,0.210793,0.380623,0.246146,0.560018,0.274627,0.677742,0.0408174,0.85268,0.0772321,0.858703,0.972243,0.277127,0.341285,0.631661,0.0837052,0.681673,0.0235508,0.927785,0.123822,0.83414,0.591375,0.179068,0.960311,0.108686,0.980132,0.567948,0.489845,0.010522,0.757796,0.846533,0.790216,0.978112,0.0933122,0.862251,0.1125,0.890542,0.688818,0.716888,0.194294,0.111169,0.486747,0.869765,0.286911,0.975853,0.38692,0.444432,0.846434,0.247558,0.553262,0.384537,0.829811,0.345674,0.230628,0.0199545,0.765224,0.966966,0.30613,0.747148,0.380967,0.621262,0.531334,0.702377,0.112364,0.715715,0.560641,0.512123,0.849519,0.797102,0.423433,0.310322,0.570758,0.227545,0.849638,0.307002,0.886906,0.34444,0.636244,0.995337,0.451028,0.67298,0.00534689,0.272967,0.961612,0.0998663,0.418342,0.0855283,0.470883,0.793686,0.94997,0.802687,0.40122,0.238802,0.0124969,0.66443,0.152864,0.576811,0.175619,0.172474,0.0198189,0.193974,0.922806,0.29619,0.270451,0.0384558,0.407849,0.97625,0.668545,0.136906,0.273794,0.165019,0.999989,0.806325,0.879762,0.268268,0.474345,0.0279794,0.430861,0.21269,0.673593,0.944293,0.51534,0.94011,0.91362,0.115092,0.307272,0.264085,0.282071,0.232063,0.46003,0.0768267,0.373783,0.259514,0.928799,0.069473,0.829646,0.612476,|0.700865,0.794017,0.733323,0.467574,0.740064,0.130239,0.220938,0.627308,0.380897,0.737965,0.456274,0.0360502,0.149748,0.612645,0.208241,0.53838,0.162294,0.654723,0.42784,0.904332,0.162637,0.520781,0.968698,0.408018,0.462052,0.362016,0.395715,0.383257,0.605795,0.209778,0.889967,0.0793543,0.281249,0.103375,0.446361,0.0405943,0.731224,0.827326,0.707121,0.17491,0.523686,0.398092,0.623881,0.459995,0.10183,0.255431,0.596697,0.239977,0.0511319,0.699198,0.160715,0.218706,0.565546,0.319093,0.72724,0.941717,0.928174,0.495074,0.0609023,0.532981,0.502446,0.473417,0.507683,0.618569,0.110131,0.387627,0.654276,0.274446,0.736497,0.830201,0.884452,0.736477,0.714971,0.666771,0.134812,0.684893,0.444577,0.635309,0.432299,0.408447,0.00282449,0.711027,0.857329,0.99934,0.299358,0.20652,0.139392,0.738003,0.681396,0.544297,0.853046,0.813873,0.213465,0.956842,0.576698,0.596316,0.532989,0.401271,0.311857,0.963934,0.904897,0.539847,0.866106,0.473492,0.919378,0.141015,0.672593,0.791422,0.375206,0.446848,0.0194373,0.569556,0.474547,0.163645,0.850273,0.122311,0.356626,0.00698918,0.873664,0.762924,0.914081,0.297757,0.656075,0.186519,0.263238,0.885854,0.171345,0.745005,0.512927,0.996317,0.417704,0.906753,0.891726,0.0453411,0.807326,0.390397,0.67103,0.785391,0.811979,0.577855,0.903121,0.366393,0.23035,0.94077,0.0905958,0.568099,0.569332,0.108989,0.215211,0.330057,0.82324,0.856739,0.0617147,0.317324,0.302431,0.104491,0.447598,0.214346,0.806452,0.444567,0.337897,0.324958,0.996228,0.96184,0.214086,0.929459,0.613281,0.795437,0.883994,0.587165,0.857255,0.0660136,0.411074,0.599342,0.292351,0.942378,0.894963,0.315072,0.194118,0.0538655,0.969626,0.675062,0.151172,0.203424,0.330707,0.0370233,0.78356,0.588817,0.499219,0.945849,0.811074,0.194977,0.855734,0.362985,0.0739422,0.704634,0.0355159,0.369996,0.729475,0.0859205,0.893872,0.735598,0.13248,0.487005,0.0296742,0.830692,0.0146572,0.368173,0.722486,0.761981,0.745428,0.655887,0.190352,0.750761,0.0883963,0.429589,0.880406,0.281072,0.033741,0.847552,0.12627,0.474091,0.817907,0.271651,0.546461,0.425394,0.240071,0.456979,0.62704,0.950201,0.536273,0.0926149,0.984197,0.276605,0.0945641,0.638026,0.913062,0.299621,0.24535,0.725755,0.784664,0.752283,0.295547,0.824963,0.126773,0.114075,0.5636,0.382414,0.448974,0.320854,0.655543,0.756023,0.458009,0.458496,0.294735,0.195057,0.611447,0.16398,0.759781,0.879895,0.450809,0.883406,0.719987,0.491483,0.963772,0.807333,0.0580477,0.8247,0.0872397,0.477168,0.537898,0.722157,0.555113,0.90584,0.097886,0.128563,0.258698,0.701916,0.32076,0.219137,0.953876,0.280282,0.691932,0.600911,0.181265,0.884413,0.607565,0.796013,0.958197,0.374107,0.305773,0.251826,0.230615,0.849543,0.997647,0.82348,0.856827,0.420523,0.987324,0.0634192,0.918337,0.0449721,0.785018,0.877308,0.86491,0.423183,0.761467,0.751837,0.21898,0.0923738,0.470326,0.794453,0.91093,0.412934,0.495852,0.120841,0.385851,0.992231,0.771804,0.795914,0.26578,0.0156898,0.367295,0.024073,0.00616479,0.404813,0.182991,0.441313,0.967727,0.63625,0.0347949,0.739609,0.854928,0.22959,0.276969,0.193022,0.0916333,0.567346,0.811233,0.761775,0.185756,0.165606,0.833325,0.705581,0.185226,0.744381,0.280043,0.159089,0.553498,0.00264013,0.547664,0.0526831,0.492029,0.96562,0.579553,0.823184,0.456162,0.254407,0.327235,0.466437,0.994267,0.928413,0.0720052,0.284677,0.465159,0.881132,0.855681,0.429812,0.775194,0.244211,0.408602,0.936593,0.77325,0.8797,0.888405,0.559864,0.672328,0.638301,0.898477,0.757104,0.515739,0.365869,0.293336,0.0109915,0.802013,0.511151,0.390432,0.177945,0.00687444,0.96946,0.28022,0.227662,0.71833,0.856095,0.122347,0.275729,0.0770088,0.732248,0.952354,0.674821,0.589276,0.556862,0.0360629,0.781613,0.831489,0.105325,0.541348,0.961454,0.931414,0.143295,0.380329,0.414516,0.120937,0.331436,0.318817,0.627259,0.625491,0.675019,0.679359,0.781609,0.0330294,0.953539,0.226564,0.675485,0.580839,0.279618,0.149996,0.403531,0.266982,0.155179,0.896431,0.647401,0.609809,0.804352,0.0486661,0.21232,0.785758,0.884934,0.135047,0.0479832,0.317858,0.0084461,0.442271,0.425982,0.687597,0.646772,0.350334,0.838253,0.682634,0.504768,0.984512,0.479015,0.0494953,0.685313,0.379082,0.647172,0.877244,0.776257,0.921991,0.170815,0.651008,0.236843,0.757328,0.0143518,0.555328,0.96342,0.331495,0.7763,0.74777,0.189417,0.985386,0.448922,0.637935,0.672632,0.365778,0.455814,0.776708,0.135196,0.349696,0.78052,0.23874,0.280223,0.263619,0.752755,0.816462,0.322672,0.794788,0.923267,0.141871,0.383304,0.871543,0.48357,0.856173,0.670527,0.465105,0.370938,0.632134,0.992574,0.192471,0.0813549,0.649232,0.131778,0.411391,0.749816,0.516969,0.694885,0.134508,0.383454,0.247798,0.254967,0.0818648,0.643442,0.773167,0.505034,0.84241,0.708911,0.798019,0.685472,0.340384,0.204604,0.880804,0.997537,0.0887288,0.919348,0.314087,0.329411,0.267108,0.741337,0.174954,0.768418,0.603394,0.981299,0.494835,0.857016,0.950458,0.0193377,0.746878,0.843074,0.0595922,0.164795,0.705886,0.760008,0.642637,0.134833,0.0556696,0.894309,0.707274,0.754552,0.396551,0.476783,0.638274,0.0981646,0.826859,0.709969,0.522294,0.823705,0.427154,0.349807,0.68091,0.193453,0.680554,0.785908,0.875789,0.855657,0.68578,0.812925,0.781616,0.631348,0.394302,0.210294,0.604762,0.874537,0.0586727,0.0025394,0.484233,0.468055,0.274236,0.393279,0.287653,0.403726,0.344759,0.177407,0.406972,0.225737,0.602681,0.151763,0.198194,0.251914,0.568647,0.69733,0.0315914,0.651785,0.741019,0.686722,0.720052,0.389969,0.262471,0.537971,0.372318,0.847985,0.948104,0.436838,0.342006,0.541016,0.402782,0.712072,0.44609,0.563302,0.382412,0.892971,0.744173,0.557655,0.575261,0.898959,0.54327,0.50348,0.927088,0.638002,0.975417,0.461697,0.0207052,0.768683,0.648627,0.379406,0.0445382,0.652541,0.659907,0.55886,0.634668,0.360409,0.073688,0.904049,0.210772,0.20062,0.383839,0.557813,0.854627,0.41683,0.442827,0.272158,0.0345762,0.596589,0.865139,0.0651845,0.151609,0.170161,0.684047,0.251048,0.592355,0.833468,0.180905,0.218597,0.409853,0.333109,0.345215,0.117008,0.576184,0.277584,0.716189,0.0125024,0.869119,0.0222055,0.924974,0.0378426,0.0671614,0.815193,0.537572,0.822459,0.0117182,0.710556,0.465425,0.0351245,0.26869,0.376793,0.363454,0.329036,0.302605,0.353329,0.0140859,0.859487,0.651992,0.775788,0.560817,0.697383,0.0275555,0.331078,0.321011,0.484263,0.873518,0.278923,0.864258,0.0125895,0.832536,0.5924,0.372109,0.235925,0.836388,0.766387,0.57991,0.843894,0.323769,0.647278,0.146373,0.0419049,0.0961258,0.669741,0.888001,0.717212,0.948018,0.609707,0.0812101,0.478449,0.805785,0.431482,0.569422,0.266281,0.86982,0.653695,0.623484,0.554414,0.079132,0.722046,0.769368,0.613728,0.279865,0.121768,0.162634,0.0334669,0.308911,0.0172374,0.785525,0.150978,0.943008,0.832545,0.777352,0.129686,0.753837,0.332001,0.00548357,0.111636,0.797087,0.363159,0.551795,0.626461,0.469454,0.48225,0.722551,0.624888,0.900109,0.238007,0.123434,0.878401,0.0406051,0.983951,0.974891,0.863826,0.426022,0.307361,0.160686,0.0904601,0.481918,0.402041,0.919545,0.126221,0.803702,0.128116,0.90687,0.868189,0.760393,0.295617,0.10164,0.991377,0.151159,0.587329,0.441678,0.530366,0.856102,0.994819,0.30877,0.00937957,0.30931,0.53584,0.37858,0.0617502,0.73146,0.322528,0.942108,0.200825,0.518687,0.161515,0.916176,0.80425,0.169579,0.344275,0.694021,0.726355,0.00997162,0.317177,0.558042,0.774245,0.785581,0.929778,0.20079,0.318141,0.35003,0.595251,0.218336,0.814246,0.275791,0.664743,0.838429,0.489845,0.885983,0.411125,0.0386196,0.71127,0.22179,0.553282,0.91597,0.15976,0.715447,0.570398,0.178264,0.109002,0.324288,0.357798,0.779584,0.583596,0.831473,0.179167,0.637013,0.810009,0.639354,0.22422,0.0531791,0.51478,0.416578,0.754407,0.984846,0.356923,0.595415,0.752908,0.778033,0.00429749,0.540543,0.0178089,0.979118,0.516096,0.317869,0.938957,0.45629,0.896123,0.434915,0.909016,0.613334,0.0681905,0.965357,0.149387,0.491488,0.393009,0.5199,0.505239,0.968254,0.370576,0.563868,0.499749,0.888543,0.037177,0.542608,0.155775,0.618928,0.749691,0.829964,0.499631,0.167858,0.837334,0.695609,0.0109511,0.0139804,0.335416,0.630629,0.146338,0.831542,0.437979,0.799456,0.74298,0.880555,0.842445,0.377858,0.925051,0.0733812,0.653896,0.0581566,0.863105,0.494962,0.312642,0.998815,0.485999,0.779092,0.541174,0.301358,0.421519,0.264411,0.610796,0.206708,0.837732,0.608367,0.333031,0.479497,0.310284,0.815922,0.346323,0.182951,0.17408,0.60821,0.735866,0.236682,0.194947,0.675335,0.746794,0.971819,0.417535,0.71723,0.620353,0.274151,0.63685,0.0799769,0.458855,0.630931,0.250318,0.547761,0.0126436,0.449146,0.95686,0.792706,0.641905,0.839897,0.477816,0.29716,0.401363,0.875344,0.610932,0.472788,0.434116,0.875208,0.217243,0.750626,0.15801,0.158066,0.634982,0.477709,0.222558,0.564935,0.891048,0.559431,0.175629,0.478236,0.523634,0.979816,0.136324,0.88509,0.694451,0.230799,0.944166,0.0868041,0.231079,0.470829,0.357325,0.0758029,0.484932,0.233249,0.344922,0.741917,0.947476,0.490796,0.2924,0.655768,0.454606,0.629188,0.829724,0.258234,0.272059,0.215463,0.480247,0.656138,0.398194,0.0621803,0.129162,0.790184,0.864261,0.669364,0.987031,0.434057,0.404649,0.174252,0.129341,0.910033,0.18997,0.89906,0.307105,|0.199941,0.510545,0.596733,0.085834,0.442259,0.31734,0.130501,0.185064,0.903285,0.642015,0.787905,0.231863,0.462138,0.249591,0.891164,0.3945,0.499959,0.40773,0.305252,0.360431,0.223706,0.0893109,0.645568,0.0862378,0.630373,0.272838,0.297948,0.382976,0.957686,0.57922,0.816129,0.816754,0.911755,0.439403,0.907155,0.433623,0.685258,0.493198,0.492674,0.88143,0.867938,0.635345,0.502805,0.608156,0.693171,0.272943,0.0454788,0.304318,0.0502121,0.721103,0.691655,0.387348,0.720091,0.0193533,0.978059,0.13099,0.783009,0.122094,0.799327,0.260376,0.8749,0.971208,0.314963,0.345794,0.0764476,0.305181,0.449815,0.6109,0.388479,0.87532,0.127192,0.890646,0.745667,0.755324,0.690397,0.948186,0.422397,0.39278,0.973656,0.943156,0.00151336,0.910271,0.77623,0.0225627,0.884575,0.999381,0.666865,0.141971,0.280627,0.125541,0.946273,0.123544,0.0622563,0.659116,0.900551,0.0276272,0.837608,0.840554,0.956022,0.123213,0.0497303,0.0710916,0.811827,0.704957,0.235743,0.727962,0.0420349,0.766621,0.126078,0.302364,0.682608,0.39653,0.367474,0.673643,0.406626,0.414123,0.496246,0.774141,0.0466753,0.201607,0.983858,0.0932431,0.230678,0.38252,0.641621,0.296036,0.953724,0.655799,0.63776,0.677052,0.725017,0.630045,0.885952,0.532267,0.760975,0.775126,0.670213,0.820576,0.586962,0.519708,0.493837,0.963646,0.281052,0.195629,0.32493,0.783627,0.627829,0.647716,0.207387,0.757509,0.094262,0.178373,0.669527,0.217463,0.366029,0.61465,0.837057,0.43385,0.722978,0.283072,0.559424,0.168199,0.799275,0.139083,0.185518,0.382096,0.970996,0.88748,0.384438,0.0900959,0.0725142,0.91936,0.760113,0.63888,0.622173,0.755042,0.157624,0.599781,0.566028,0.467318,0.282363,0.696743,0.946725,0.465374,0.632138,0.409738,0.411258,0.0566018,0.745532,0.6799,0.0874892,0.497436,0.258197,0.761251,0.48035,0.67053,0.357656,0.264071,0.165523,0.400681,0.976561,0.134374,0.966682,0.576474,0.65058,0.374482,0.332613,0.317732,0.406686,0.435655,0.519992,0.170709,0.170503,0.752186,0.741815,0.92229,0.455656,0.444606,0.994617,0.145806,0.34297,0.857893,0.0735129,0.800976,0.631814,0.414955,0.625419,0.836861,0.414546,0.28497,0.351256,0.553867,0.23222,0.214847,0.0881634,0.206467,0.81791,0.250746,0.460207,0.165532,0.77177,0.92592,0.718994,0.735805,0.993937,0.331753,0.20086,0.412287,0.535027,0.870537,0.925993,0.674063,0.121392,0.291015,0.831064,0.121802,0.951073,0.854139,0.847782,0.836445,0.693408,0.329632,0.771797,0.623349,0.263154,0.930611,0.0867232,0.673024,0.13049,0.110704,0.660402,0.988996,0.31874,0.759397,0.421352,0.556367,0.739902,0.964477,0.93253,0.127917,0.962879,0.401273,0.108132,0.389125,0.176605,0.419032,0.815421,0.627135,0.680954,0.654769,0.337919,0.799632,0.683307,0.797482,0.478815,0.29978,0.982834,0.29763,0.70791,0.887115,0.45851,0.325486,0.672508,0.732698,0.105595,0.868492,0.475798,0.07469,0.196875,0.542206,0.936393,0.755073,0.211321,0.805908,0.916814,0.137485,0.287945,0.188242,0.980738,0.0226596,0.761994,0.613592,0.296526,0.847068,0.276845,0.743675,0.890858,0.798921,0.651136,0.544992,0.911517,0.690529,0.284547,0.0146722,0.783645,0.121489,0.530897,0.471606,0.301732,0.668162,0.194754,0.236334,0.58763,0.788927,0.402897,0.0264668,0.323921,0.431697,0.405309,0.892033,0.535335,0.661868,0.964291,0.784427,0.560714,0.099705,0.866091,0.0521664,0.629218,0.870578,0.434901,0.500511,0.3653,0.735925,0.499899,0.601711,0.87858,0.605036,0.307658,0.750635,0.835073,0.0278184,0.452557,0.571685,0.656595,0.480271,0.400891,0.196471,0.314935,0.325178,0.866465,0.573052,0.267461,0.0157143,0.513691,0.213672,0.801085,0.373301,0.980279,0.897436,0.0386527,0.956784,0.260561,0.539222,0.307627,0.461485,0.138718,0.390747,0.98514,0.225896,0.0801215,0.945967,0.737944,0.127388,0.80504,0.454616,0.963753,0.104437,0.298008,0.73255,0.719125,0.793364,0.168738,0.915229,0.71131,0.428092,0.309092,0.0459251,0.911291,0.972852,0.636152,0.802959,0.0712492,0.405335,0.059902,0.564847,0.0309505,0.824051,0.0135705,0.0833709,0.483688,0.28848,0.424375,0.375319,0.236761,0.762657,0.979277,0.292156,0.966996,0.900548,0.0635794,0.219049,0.425324,0.765792,0.918317,0.174888,0.241654,0.395672,0.138356,0.928287,0.115892,0.961832,0.137793,0.593268,0.8837,0.673266,0.580611,0.188086,0.200972,0.0434006,0.358051,0.530509,0.315164,0.617531,0.309417,0.79395,0.661355,0.809755,0.330073,0.401997,0.0357462,0.242711,0.268858,0.512293,0.112474,0.193806,0.0362709,0.844705,0.847583,0.341484,0.396142,0.744663,0.263246,0.501278,0.18221,0.668949,0.39379,0.877765,0.743969,0.844442,0.591829,0.146166,0.581195,0.827343,0.697441,0.469122,0.364381,0.927886,0.11306,0.903169,0.256233,0.358902,0.749703,0.571386,0.484046,0.220907,0.497182,0.18166,0.63192,0.763102,0.530718,0.680384,0.843136,0.0552311,0.2158,0.380705,0.945096,0.789026,0.66708,0.813652,0.84358,0.0656861,0.825469,0.535947,0.731092,0.32861,0.465893,0.650402,0.746582,0.869351,0.979823,0.363903,0.502635,0.457165,0.466935,0.525815,0.437216,0.568897,0.263593,0.780684,0.63162,0.0125347,0.114888,0.285507,0.840986,0.76277,0.0637039,0.958116,0.15516,0.932613,0.391259,0.0567838,0.368813,0.262045,0.355077,0.338035,0.628465,0.595313,0.263362,0.862435,0.326893,0.76515,0.217953,0.638495,0.0803607,0.895767,0.528383,0.169719,0.150201,0.91179,0.419917,0.240946,0.436626,0.281672,0.980447,0.753314,0.437721,0.990018,0.619911,0.458103,0.626854,0.480835,0.184206,0.872356,0.0279808,0.752546,0.794218,0.348298,0.911068,0.954274,0.829799,0.837561,0.121433,0.351816,0.142951,0.382709,0.379376,0.835586,0.277562,0.0418679,0.411677,0.966816,0.533818,0.489176,0.653109,0.873043,0.341593,0.434608,0.0179452,0.570623,0.499896,0.681002,0.744396,0.313937,0.913017,0.911468,0.296731,0.449036,0.0672258,0.570022,0.461049,0.810094,0.14483,0.189951,0.4766,0.356022,0.148546,0.664111,0.160324,0.576485,0.949102,0.763479,0.6517,0.980025,0.116379,0.261011,0.0441946,0.0617643,0.506403,0.455929,0.761585,0.487969,0.760001,0.551116,0.0570131,0.129199,0.501754,0.0827489,0.201738,0.308717,0.730749,0.528305,0.0583972,0.173245,0.434543,0.278883,0.715509,0.968959,0.793447,0.127927,0.815158,0.473976,0.260796,0.98264,0.498279,0.181351,0.552893,0.215673,0.251976,0.535658,0.362173,0.508206,0.570799,0.815853,0.604701,0.0499927,0.0834713,0.621005,0.920736,0.758671,0.86568,0.614055,0.0991783,0.103248,0.233205,0.857641,0.917573,0.0201539,0.292423,0.418948,0.265367,0.627723,0.97383,0.442815,0.889573,0.611685,0.124315,0.364155,0.170325,0.170718,0.727077,0.015414,0.825433,0.998439,0.0098244,0.486561,0.317562,0.793319,0.237943,0.176497,0.954617,0.501574,0.666597,0.914938,0.758836,0.8819,0.0703192,0.166022,0.514042,0.169137,0.00480491,0.847383,0.525316,0.557529,0.598822,0.727376,0.585878,0.810725,0.354093,0.423187,0.989665,0.861128,0.490424,0.666534,0.194544,0.235732,0.846746,0.775981,0.563251,0.293722,0.0976837,0.801529,0.0422643,0.493603,0.857073,0.195618,0.729397,0.151601,0.293227,0.913501,0.173679,0.119594,0.489251,0.0256053,0.753117,0.458339,0.350586,0.263467,0.630668,0.415906,0.411733,0.414502,0.0331358,0.396453,0.973586,0.839843,0.881643,0.748121,0.526282,0.136701,0.57082,0.563996,0.371248,0.149173,0.0840474,0.799204,0.756041,0.881062,0.555522,0.931478,0.252108,0.96395,0.373448,0.433893,0.253255,0.718288,0.411905,0.818011,0.420081,0.534562,0.183524,0.660048,0.581284,0.823977,0.768754,0.605557,0.876421,0.396197,0.718516,0.0903363,0.833482,0.88546,0.649236,0.873858,0.623051,0.17266,0.877854,0.424508,0.734647,0.899196,0.051254,0.44489,0.0884352,0.558644,0.526944,0.877809,0.278188,0.118854,0.754659,0.541961,0.834208,0.653621,0.9004,0.117601,0.190899,0.956944,0.963363,0.786349,0.380859,0.961461,0.0869931,0.485023,0.59978,0.975806,0.48616,0.684413,0.882558,0.649284,0.12501,0.517088,0.0185954,0.380138,0.821691,0.335093,0.908515,0.336919,0.218926,0.394939,0.583418,0.669495,0.514693,0.269539,0.261685,0.155482,0.29623,0.425527,0.417305,0.395205,0.542635,0.521785,0.611955,0.262447,0.546406,0.100324,0.52555,0.7505,0.898204,0.871197,0.287551,0.0779248,0.924674,0.559697,0.74903,0.933015,0.914798,0.957472,0.494867,0.789171,0.697344,0.682018,0.369246,0.353718,0.92919,0.91072,0.966671,0.466401,0.313047,0.778127,0.830721,0.719992,0.581965,0.416664,0.489343,0.32969,0.345935,0.168158,0.00548124,0.830959,0.719282,0.145835,0.301768,0.340264,0.206799,0.149079,0.230546,0.823274,0.83706,0.663429,0.317398,0.746233,0.720224,0.736883,0.152113,0.966685,0.742425,0.0241496,0.261757,0.00441831,0.238509,0.747611,0.853525,0.752185,0.985683,0.74033,0.986834,0.697258,0.000646293,0.763554,0.180396,0.135265,0.24681,0.194271,0.697672,0.49969,0.886369,0.0254011,0.881075,0.442201,0.186018,0.561289,0.361529,0.0117182,0.78095,0.585888,0.945378,0.80362,0.326477,0.979238,0.613631,0.401315,0.765867,0.577993,0.678741,0.712012,0.286672,0.566428,0.0742327,0.904831,0.483456,0.369553,0.396066,0.56377,0.85515,0.723858,0.746424,0.925015,0.971227,0.355235,0.476154,0.868133,0.609392,0.572677,0.182112,0.740603,0.424201,0.909753,0.942757,0.365351,0.811339,0.638738,0.212896,0.91556,0.161881,0.0991811,0.32918,0.736213,0.477212,0.762798,0.633506,0.137452,0.870383,0.400766,0.865633,0.00761461,0.790301,0.126548,0.220484,0.48533,0.862272,0.723225,|0.70684,0.437542,0.476849,0.262661,0.667674,0.827633,0.392075,0.170498,0.961746,0.276127,0.61152,0.721356,0.0192525,0.0956729,0.741396,0.843274,0.569061,0.18434,0.302641,0.655855,0.642072,0.7086,0.45749,0.515822,0.00965446,0.625334,0.700158,0.716292,0.898827,0.425271,0.439173,0.350707,0.606212,0.786352,0.501615,0.508988,0.242144,0.405791,0.576104,0.570132,0.247388,0.118417,0.053917,0.477523,0.362252,0.339014,0.627215,0.105481,0.202405,0.446512,0.641739,0.0731272,0.926321,0.714266,0.116004,0.430207,0.625389,0.890357,0.369478,0.0032382,0.870461,0.696079,0.516232,0.86463,0.102061,0.678865,0.311371,0.222951,0.141894,0.816998,0.330796,0.460629,0.847039,0.658976,0.575754,0.772682,0.344221,0.802725,0.443635,0.385399,0.129276,0.461243,0.103539,0.0481455,0.421503,0.918491,0.377606,0.00650483,0.274009,0.81004,0.227847,0.685968,0.186804,0.916283,0.0239381,0.220591,0.64105,0.447272,0.0475451,0.0192701,0.30516,0.65618,0.382537,0.723505,0.113985,0.181606,0.280181,0.957879,0.063836,0.160143,0.409556,0.504223,0.280806,0.902159,0.779022,0.313882,0.775297,0.201419,0.563426,0.454556,0.794339,0.131982,0.677603,0.0773968,0.559186,0.290694,0.196484,0.975905,0.901749,0.063077,0.216434,0.505716,0.960249,0.564526,0.514118,0.686404,0.718683,0.373098,0.196967,0.226503,0.901759,0.282119,0.495696,0.561441,0.933097,0.992474,0.694413,0.501976,0.418767,0.99976,0.0485677,0.132741,0.663184,0.392332,0.404235,0.160017,0.152808,0.826375,0.414654,0.865074,0.35863,0.866286,0.951474,0.255557,0.0102544,0.257201,0.115889,0.480827,0.800296,0.668847,0.704437,0.753649,0.108994,0.990905,0.304274,0.7574,0.086603,0.335025,0.238001,0.470354,0.58525,0.3516,0.92223,0.97389,0.287847,0.665121,0.134103,0.170407,0.57924,0.731773,0.241304,0.74529,0.0372551,0.428493,0.571205,0.750875,0.266419,0.0791122,0.571103,0.230207,0.723638,0.951972,0.0389072,0.861168,0.384061,0.341681,0.478962,0.812356,0.780042,0.862184,0.28377,0.954223,0.885728,0.307281,0.840783,0.93645,0.182871,0.458696,0.0911804,0.215073,0.889821,0.772488,0.482484,0.439206,0.379165,0.421767,0.163002,0.0383607,0.0309505,0.465151,0.621336,0.358252,0.476795,0.497092,0.0429389,0.197739,0.919992,0.69735,0.0390303,0.943213,0.113672,0.686411,0.131089,0.238628,0.257491,0.705006,0.894657,0.887099,0.549395,0.230831,0.50637,0.287292,0.212458,0.76233,0.823207,0.689576,0.868637,0.535093,0.21707,0.0825179,0.705846,0.671,0.944403,0.775644,0.152013,0.749551,0.162438,0.510348,0.53232,0.893005,0.207676,0.326039,0.115041,0.787073,0.937358,0.888136,0.45826,0.707511,0.793549,0.202402,0.745587,0.73641,0.488526,0.60294,0.905807,0.969811,0.763925,0.477124,0.152073,0.413907,0.854176,0.568853,0.15329,0.143925,0.996521,0.288503,0.221907,0.731484,0.945603,0.79913,0.371142,0.623295,0.899786,0.451258,0.227798,0.340362,0.41928,0.85893,0.934424,0.678836,0.224622,0.160743,0.397961,0.548776,0.332653,0.406284,0.356799,0.96898,0.680493,0.306084,0.841971,0.872164,0.358904,0.193289,0.038208,0.331929,0.970749,0.420617,0.847738,0.849443,0.518105,0.80916,0.565152,0.488875,0.503192,0.728729,0.0599739,0.612226,0.962634,0.282188,0.259953,0.531919,0.431182,0.594754,0.96146,0.980109,0.93901,0.867961,0.884076,0.891661,0.339054,0.334467,0.888106,0.496239,0.126691,0.819952,0.92241,0.151545,0.0681592,0.585996,0.356331,0.556243,0.868593,0.977773,0.369475,0.134155,0.456437,0.620369,0.7383,0.223567,0.631402,0.809495,0.74928,0.43092,0.126907,0.463676,0.508028,0.206743,0.642404,0.403857,0.898758,0.627602,0.337854,0.168525,0.997134,0.851835,0.907316,0.357714,0.630672,0.232889,0.879839,0.121947,0.482324,0.905034,0.729072,0.164162,0.451941,0.51,0.00471932,0.210599,0.561493,0.152476,0.521951,0.381371,0.0672212,0.996485,0.77661,0.847423,0.640905,0.899289,0.578659,0.220936,0.331643,0.701758,0.801274,0.773156,0.293006,0.181216,0.866333,0.47147,0.645383,0.228859,0.582247,0.546997,0.306037,0.721341,0.865079,0.708372,0.0411569,0.529139,0.0916968,0.0366239,0.439359,0.857866,0.44945,0.525193,0.935168,0.3555,0.742169,0.923626,0.464933,0.411231,0.580428,0.430571,0.583025,0.0455605,0.229329,0.156012,0.384113,0.735331,0.654276,0.382624,0.534373,0.625913,0.82946,0.125614,0.300808,0.788764,0.686651,0.781816,0.544649,0.481126,0.589059,0.182866,0.35574,0.500129,0.839181,0.301878,0.117029,0.246552,0.263187,0.868618,0.347868,0.761642,0.767331,0.67376,0.0107292,0.508766,0.461975,0.570077,0.494844,0.811067,0.408521,0.0727493,0.996917,0.0772093,0.365142,0.57853,0.422477,0.173374,0.378846,0.443571,0.283691,0.617982,0.566574,0.660133,0.165987,0.979253,0.544755,0.951099,0.391372,0.240776,0.657602,0.459809,0.0434631,0.329685,0.35852,0.457575,0.8503,0.568978,0.332041,0.688422,0.0456107,0.559707,0.550033,0.369509,0.848974,0.592808,0.64769,0.28086,0.312952,0.333788,0.0408727,0.233885,0.750591,0.205958,0.714367,0.229917,0.337903,0.669086,0.719979,0.817193,0.926852,0.345825,0.671105,0.320589,0.579237,0.109608,0.904289,0.982021,0.59239,0.735562,0.816028,0.664557,0.636143,0.917189,0.371519,0.360751,0.295056,0.324243,0.975121,0.945972,0.362482,0.869728,0.622663,0.250398,0.741085,0.491986,0.875744,0.570977,0.936331,0.968256,0.172564,0.358683,0.720497,0.651357,0.187977,0.302972,0.108012,0.280472,0.42339,0.601568,0.966256,0.277431,0.190198,0.00763172,0.851181,0.683389,0.0848549,0.0578769,0.388498,0.388168,0.993711,0.244296,0.875825,0.874819,0.265728,0.274119,0.652535,0.923682,0.288323,0.161629,0.0440329,0.641071,0.266717,0.159574,0.595224,0.852762,0.154642,0.343089,0.260303,0.982907,0.158261,0.361654,0.366879,0.742331,0.894282,0.040265,0.463858,0.616021,0.107821,0.475321,0.353973,0.664213,0.781972,0.258829,0.0579111,0.518459,0.24348,0.0905448,0.859735,0.103989,0.00516754,0.376662,0.602564,0.362812,0.404955,0.0608737,0.819525,0.650127,0.698196,0.38537,0.699372,0.0343921,0.985392,0.732327,0.0296739,0.800216,0.0651625,0.623833,0.511144,0.61167,0.847701,0.796854,0.809138,0.941222,0.663547,0.800039,0.0648293,0.258443,0.501113,0.326066,0.944596,0.862684,0.337656,0.790989,0.716487,0.718051,0.318276,0.463936,0.728285,0.0902584,0.463334,0.397324,0.660628,0.92554,0.407327,0.222338,0.414342,0.745352,0.0815575,0.115618,0.45358,0.67146,0.802182,0.162514,0.981896,0.419008,0.481356,0.057077,0.420716,0.507957,0.0059166,0.555742,0.185761,0.763299,0.931647,0.25351,0.590804,0.371917,0.836463,0.543088,0.68243,0.85376,0.359964,0.830381,0.147101,0.0443525,0.581325,0.834697,0.496208,0.412374,0.461484,0.426417,0.390979,0.456185,0.861893,0.318015,0.374926,0.14406,0.6294,0.916253,0.554854,0.438035,0.404334,0.493958,0.0175505,0.746918,0.754317,0.68853,0.820374,0.135527,0.309441,0.323685,0.249476,0.82318,0.263944,0.190792,0.179397,0.685355,0.346447,0.450245,0.744467,0.568686,0.697146,0.475529,0.875381,0.342291,0.511744,0.201309,0.578997,0.941833,0.290212,0.247048,0.101548,0.540019,0.048191,0.599097,0.508932,0.71463,0.772293,0.0657911,0.670614,0.466892,0.572341,0.491586,0.193089,0.48706,0.785164,0.667214,0.986156,0.437063,0.0346,0.70707,0.709226,0.793238,0.86886,0.0728055,0.265729,0.864283,0.524522,0.0943834,0.668627,0.750262,0.527058,0.412472,0.101423,0.403749,0.89092,0.358267,0.874181,0.230742,0.725912,0.738343,0.17614,0.800615,0.513426,0.379622,0.423442,0.760395,0.706192,0.557429,0.125986,0.743875,0.00645131,0.579438,0.471757,0.129628,0.610614,0.897671,0.708734,0.540697,0.872952,0.137985,0.683863,0.772528,0.996421,0.434671,0.457333,0.140359,0.45832,0.926172,0.195238,0.562039,0.0959435,0.301532,0.819209,0.857481,0.973959,0.827798,0.949573,0.0108356,0.768079,0.412046,0.339598,0.58992,0.51617,0.554007,0.933735,0.854868,0.865688,0.148568,0.363011,0.478231,0.734299,0.572827,0.100136,0.191013,0.796435,0.530118,0.441182,0.924339,0.640432,0.531381,0.0627334,0.648943,0.3288,0.160184,0.562853,0.815617,0.982132,0.839287,0.041319,0.11912,0.421406,0.13871,0.875223,0.276688,0.333654,0.814232,0.716495,0.489101,0.182635,0.221864,0.477114,0.236616,0.770367,0.8097,0.668003,0.0789427,0.408589,0.353129,0.436023,0.0908673,0.638576,0.783532,0.0194128,0.948409,0.314381,0.789912,0.518201,0.427994,0.433676,0.525866,0.310859,0.973545,0.50648,0.453858,0.801207,0.839225,0.438377,0.283677,0.622934,0.184578,0.309902,0.636534,0.696151,0.758457,0.575656,0.591453,0.924936,0.699867,0.427318,0.778886,0.902626,0.139862,0.833568,0.067052,0.254406,0.120065,0.97392,0.55,0.96693,0.192811,0.172897,0.745583,0.708978,0.281775,0.210158,0.462594,0.975618,0.494732,0.111717,0.315211,0.359013,0.481157,0.888229,0.766122,0.561889,0.86215,0.0592691,0.462274,0.895199,0.21217,0.98611,0.486737,0.714428,0.0500141,0.445895,0.422038,0.0495146,0.0105895,0.3439,0.769129,0.966338,0.358728,0.206975,0.113096,0.76318,0.0935346,0.697112,0.0442247,0.0975319,0.287667,0.490228,0.253122,0.0504584,0.310228,0.191485,0.189471,0.120805,0.880747,0.108549,0.707846,0.178417,0.674558,0.232161,0.0624706,0.750519,0.575014,0.558034,0.192538,0.028271,0.623369,0.519598,0.71999,0.0666521,0.0558076,0.869808,0.607747,0.113005,0.794312,0.50321,0.0277525,0.605874,0.32862,0.326634,0.829741,0.475838,0.540179,0.568198,0.327986,0.860162,0.834489,0.800865,0.45556,0.864638,0.298955,0.074796,0.989056,|0.728015,0.104959,0.941587,0.534069,0.0258204,0.096453,0.313447,0.56159,0.535664,0.724364,0.696776,0.178462,0.552095,0.417868,0.554219,0.514139,0.801839,0.00687057,0.170558,0.882259,0.201721,0.523136,0.239096,0.33305,0.352822,0.319658,0.516203,0.868659,0.651415,0.219457,0.95478,0.892816,0.0720223,0.15858,0.42717,0.270089,0.623999,0.884302,0.946142,0.838453,0.231371,0.940976,0.445172,0.96426,0.326671,0.304688,0.827268,0.892551,0.11375,0.0615506,0.0444151,0.628993,0.943507,0.284553,0.676961,0.155155,0.463477,0.71286,0.750292,0.615203,0.735484,0.478526,0.975108,0.868772,0.123994,0.868444,0.932022,0.569105,0.251256,0.614414,0.772218,0.959784,0.431222,0.94244,0.993867,0.551732,0.274763,0.371513,0.890257,0.32511,0.0209743,0.59985,0.220671,0.320643,0.0500511,0.485688,0.677905,0.69996,0.896038,0.438495,0.251538,0.481772,0.0133866,0.928801,0.773975,0.493111,0.446925,0.721732,0.361227,0.679068,0.054839,0.320662,0.885035,0.210213,0.954385,0.705596,0.224634,0.494272,0.180399,0.984462,0.503766,0.485322,0.702641,0.846994,0.266686,0.963163,0.826957,0.921906,0.438605,0.819933,0.0913467,0.359553,0.608627,0.865544,0.157792,0.544636,0.896259,0.346428,0.637479,0.260345,0.920532,0.36783,0.333709,0.465948,0.365114,0.998231,0.0738004,0.233494,0.355553,0.376308,0.164133,0.567811,0.313939,0.555451,0.597813,0.607751,0.216611,0.227134,0.349825,0.430565,0.0974293,0.305237,0.825511,0.459553,0.521222,0.562884,0.998371,0.623297,0.0259287,0.393903,0.839698,0.128646,0.677303,0.586826,0.387694,0.763721,0.0149239,0.519904,0.275825,0.434407,0.336527,0.118271,0.566341,0.548502,0.097652,0.943694,0.550514,0.641659,0.310174,0.776043,0.277469,0.301409,0.894232,0.951703,0.928247,0.142927,0.595892,0.984699,0.0482181,0.654498,0.219971,0.958281,0.593378,0.409141,0.962663,0.114881,0.124838,0.298167,0.332504,0.802503,0.537046,0.0307664,0.0186355,0.888063,0.704339,0.587493,0.540477,0.496486,0.126587,0.891753,0.998678,0.0833701,0.217208,0.279725,0.797365,0.662212,0.991717,0.509118,0.317951,0.471706,0.562102,0.0911601,0.817035,0.430878,0.0227123,0.277046,0.841049,0.559859,0.353297,0.361516,0.686749,0.00166637,0.929957,0.128495,0.613224,0.228162,0.184923,0.507758,0.764513,0.147918,0.331757,0.798738,0.649843,0.221019,0.458579,0.326817,0.46945,0.441429,0.410378,0.444206,0.92267,0.613196,0.52059,0.767062,0.389435,0.399544,0.853752,0.836303,0.693329,0.316328,0.0297287,0.986419,0.550083,0.699248,0.0941325,0.946872,0.24626,0.526713,0.519758,0.149634,0.978251,0.537162,0.027869,0.378931,0.102694,0.408551,0.820719,0.710662,0.548737,0.364491,0.110785,0.00227833,0.376408,0.783454,0.868807,0.0926253,0.370456,0.444227,0.189863,0.602189,0.143797,0.0463503,0.00406039,0.584742,0.184117,0.108953,0.431282,0.78633,0.917085,0.64924,0.581443,0.395953,0.294235,0.781635,0.103627,0.47783,0.205635,0.0521464,0.651094,0.30908,0.431431,0.136561,0.748187,0.693183,0.35159,0.181642,0.577616,0.566679,0.779707,0.848546,0.953993,0.00122559,0.339073,0.100664,0.895027,0.506146,0.257596,0.305049,0.862871,0.558313,0.705826,0.635731,0.722322,0.60522,0.914771,0.392461,0.961956,0.846593,0.102443,0.40735,0.466082,0.800137,0.133995,0.409057,0.564365,0.306527,0.317876,0.852452,0.411547,0.776861,0.763252,0.540037,0.256051,0.136168,0.752073,0.615632,0.403347,0.68583,0.0503414,0.482855,0.884899,0.821057,0.388107,0.61019,0.159833,0.505701,0.228683,0.000118971,0.144038,0.0431674,0.979498,0.937424,0.0137063,0.430897,0.554314,0.831668,0.0522357,0.257075,0.277048,0.289596,0.374882,0.739436,0.634299,0.303995,0.925535,0.0863862,0.536309,0.296768,0.341101,0.64229,0.56328,0.762898,0.784695,0.358303,0.218423,0.330071,0.838147,0.480224,0.111054,0.217285,0.0219262,0.624998,0.965233,0.0213603,0.595202,0.413844,0.222817,0.984937,0.418125,0.306207,0.327216,0.258181,0.493372,0.110137,0.234176,0.0575209,0.839904,0.201617,0.43355,0.91986,0.687032,0.372498,0.670056,0.445693,0.00415969,0.421037,0.365292,0.0988328,0.0529194,0.736124,0.0156472,0.185559,0.912321,0.249008,0.506376,0.0804986,0.832292,0.919048,0.186079,0.931327,0.623424,0.181388,0.740751,0.287236,0.0316005,0.672148,0.0926228,0.0299433,0.193999,0.359943,0.207366,0.926276,0.64949,0.16465,0.356209,0.284,0.910661,0.599058,0.638278,0.990797,0.245854,0.861542,0.867777,0.356478,0.800409,0.809587,0.109814,0.716771,0.096318,0.990865,0.00489128,0.799831,0.219857,0.658313,0.973475,0.819721,0.516663,0.41141,0.433419,0.274227,0.420758,0.582807,0.786737,0.897879,0.0285091,0.975361,0.566743,0.0202206,0.930135,0.563611,0.0604002,0.877673,0.681414,0.665477,0.00384319,0.900131,0.606262,0.396925,0.0300136,0.440157,0.0746761,0.801901,0.296941,0.949991,0.263883,0.398607,0.0729031,0.919371,0.79178,0.785456,0.935308,0.916672,0.483088,0.878357,0.689576,0.17322,0.8787,0.713043,0.328339,0.0189386,0.552775,0.131205,0.347789,0.104467,0.409036,0.871829,0.409582,0.935449,0.0675669,0.972263,0.288296,0.954974,0.915584,0.430656,0.563264,0.580288,0.214786,0.609465,0.156383,0.282179,0.162892,0.110017,0.0537974,0.317522,0.426461,0.658853,0.354894,0.303617,0.810367,0.203359,0.470526,0.108423,0.306534,0.394872,0.403244,0.841638,0.0577661,0.134453,0.278605,0.0527724,0.340763,0.880323,0.856125,0.271249,0.763749,0.186909,0.418732,0.910135,0.747335,0.295318,0.465123,0.190354,0.490115,0.733809,0.909656,0.483974,0.879398,0.111859,0.556101,0.809141,0.549603,0.86997,0.607829,0.286396,0.456396,0.0294661,0.257951,0.453146,0.271538,0.175881,0.672628,0.832955,0.27454,0.927758,0.19353,0.838319,0.29447,0.845872,0.387138,0.963124,0.50517,0.76151,0.28701,0.718515,0.523182,0.313634,0.635546,0.450478,0.272749,0.463012,0.00275147,0.691283,0.751744,0.656918,0.0760345,0.395188,0.557324,0.904796,0.86292,0.978802,0.079897,0.240351,0.379371,0.633717,0.715677,0.505147,0.283448,0.455358,0.899754,0.0794697,0.293125,0.946295,0.60091,0.345651,0.255336,0.0512301,0.921836,0.225844,0.715301,0.211316,0.552896,0.538927,0.993087,0.785347,0.921125,0.643176,0.38726,0.57615,0.0601107,0.425249,0.508273,0.489914,0.158217,0.629022,0.200333,0.205399,0.391179,0.463312,0.438333,0.149529,0.0110183,0.928601,0.269569,0.45254,0.906482,0.857114,0.0681791,0.358997,0.284651,0.579331,0.685297,0.190242,0.45156,0.0935981,0.106405,0.323613,0.929022,0.664477,0.327654,0.92702,0.980562,0.253737,0.727292,0.823936,0.43869,0.856926,0.238925,0.49566,0.110873,0.541013,0.259189,0.309431,0.868314,0.657681,0.392061,0.945688,0.961999,0.136667,0.0925021,0.9597,0.29808,0.192289,0.356302,0.90878,0.0883677,0.266004,0.811727,0.455763,0.578508,0.185267,0.837948,0.824491,0.855036,0.983197,0.875904,0.744599,0.298424,0.659205,0.215655,0.530041,0.239591,0.732294,0.164444,0.832721,0.907809,0.319679,0.625199,0.660353,0.766091,0.0161169,0.184575,0.950917,0.751306,0.997295,0.640485,0.370493,0.925998,0.116534,0.599197,0.78921,0.141309,0.121002,0.268767,0.134786,0.415933,0.259512,0.0871899,0.506678,0.983494,0.0713232,0.15127,0.197787,0.498285,0.478469,0.120533,0.431425,0.159349,0.809048,0.968476,0.509818,0.416869,0.614076,0.523253,0.786601,0.701243,0.640083,0.558823,0.439905,0.112921,0.259757,0.601083,0.199598,0.372307,0.0313835,0.149635,0.77699,0.902939,0.491003,0.204743,0.271608,0.211218,0.100732,0.834615,0.942832,0.848176,0.662117,0.259914,0.628224,0.81599,0.516611,0.361903,0.8186,0.404929,0.607823,0.218657,0.0933349,0.026663,0.609008,0.714436,0.44898,0.617313,0.534643,0.224397,0.202269,0.607573,0.216929,0.73795,0.554191,0.809755,0.339018,0.7998,0.100117,0.92521,0.309445,0.666418,0.797052,0.651929,0.301312,0.584601,0.511028,0.436902,0.828945,0.00955874,0.202678,0.188088,0.714258,0.681262,0.4199,0.4809,0.969656,0.273,0.775017,0.028167,0.185742,0.189002,0.212156,0.655936,0.70239,0.517163,0.132447,0.772126,0.160101,0.383211,0.267685,0.828273,0.89505,0.627506,0.0964563,0.466853,0.818542,0.607333,0.392541,0.471063,0.877486,0.288369,0.266226,0.0406443,0.578485,0.959458,0.210819,0.832765,0.766864,0.325617,0.470051,0.897955,0.00664836,0.40349,0.959551,0.631676,0.672146,0.7851,0.0942727,0.151219,0.173225,0.0898696,0.10224,0.315184,0.935926,0.789575,0.616519,0.172269,0.538294,0.905654,0.950885,0.589896,0.219281,0.428701,0.419987,0.401484,0.142901,0.988284,0.740571,0.0633746,0.834872,0.576165,0.873991,0.279416,0.699456,0.837623,0.477054,0.549996,0.548416,0.428499,0.32242,0.0548867,0.43695,0.0822259,0.919598,0.563998,0.180866,0.921233,0.194955,0.885232,0.482068,0.0787985,0.886539,0.131455,0.781503,0.648305,0.876332,0.669411,0.623785,0.172351,0.97748,0.533541,0.422375,0.22853,0.862565,0.681669,0.460529,0.126854,0.528577,0.483548,0.193695,0.617095,0.961033,0.736703,0.820417,0.196875,0.878357,0.747803,0.0943869,0.577401,0.143095,0.410426,0.719426,0.194021,0.963603,0.778765,0.765488,0.863438,0.2455,0.0690751,0.835666,0.509452,0.31599,0.0333518,0.864571,0.705278,0.818701,0.345001,0.064864,0.791522,0.364298,0.563289,0.0673424,0.82892,0.423839,0.356181,0.546895,0.994466,0.184166,0.626864,0.26804,0.848272,0.324172,0.200606,0.999631,0.610049,0.0048095,0.713746,0.360515,0.685651,0.713009,0.82118,0.773462,0.137766,0.725945,0.738566,0.656633,0.947193,0.29145,0.479269,0.84624,0.0136032,0.19769,0.758072,0.229492,0.841821,0.63302,|0.293084,0.557687,0.115109,0.0786795,0.203678,0.553187,0.995183,0.663608,0.421603,0.877905,0.980844,0.968795,0.744956,0.189834,0.908847,0.868944,0.601199,0.242572,0.353758,0.762508,0.584695,0.627423,0.350483,0.302497,0.501145,0.0176046,0.803473,0.806958,0.0421364,0.871533,0.799087,0.567547,0.401299,0.117395,0.269806,0.126112,0.84027,0.638225,0.0589633,0.353746,0.358859,0.818697,0.787373,0.600661,0.54594,0.12403,0.76526,0.0170009,0.863184,0.211257,0.407744,0.858088,0.580872,0.0809412,0.213475,0.671852,0.887768,0.858597,0.141697,0.675886,0.452709,0.4691,0.773902,0.412073,0.0968625,0.346404,0.603357,0.488643,0.64402,0.3379,0.724224,0.0996919,0.679267,0.756335,0.458851,0.163831,0.676183,0.109813,0.254803,0.467359,0.602385,0.942271,0.0718089,0.493168,0.297177,0.0948637,0.6222,0.299508,0.167296,0.833223,0.0152073,0.256991,0.914182,0.224716,0.616672,0.256984,0.988551,0.428568,0.274528,0.400567,0.197383,0.0333809,0.535832,0.799517,0.992348,0.25519,0.550568,0.204734,0.387816,0.240556,0.237145,0.841605,0.22797,0.571789,0.07428,0.202833,0.366134,0.615709,0.276129,0.285855,0.338764,0.939811,0.860005,0.0916861,0.518032,0.791995,0.907936,0.900999,0.905377,0.11376,0.0723746,0.242856,0.291993,0.710753,0.306824,0.0260511,0.604372,0.281884,0.308688,0.874944,0.0273504,0.539985,0.520115,0.521738,0.523232,0.756662,0.885854,0.960552,0.881487,0.0713505,0.795611,0.610399,0.531113,0.636787,0.56787,0.613245,0.836352,0.451552,0.748186,0.754897,0.0283613,0.903751,0.92633,0.495806,0.492522,0.9714,0.971894,0.048893,0.354113,0.0754937,0.633202,0.884431,0.411357,0.0842044,0.34566,0.358401,0.570957,0.509059,0.484285,0.920941,0.181554,0.0324962,0.671483,0.437702,0.418222,0.940547,0.71854,0.411041,0.851084,0.301607,0.585523,0.913259,0.903932,0.130826,0.610001,0.808204,0.451353,0.502563,0.638241,0.819422,0.638913,0.716378,0.307805,0.427665,0.29232,0.957785,0.866718,0.825202,0.110961,0.739554,0.633059,0.161094,0.669672,0.930713,0.00937647,0.044753,0.753628,0.204457,0.54945,0.317926,0.144649,0.268224,0.806683,0.391165,0.43346,0.69079,0.810656,0.318714,0.589706,0.0428199,0.141374,0.712272,0.747337,0.15401,0.210254,0.513266,0.220505,0.509565,0.663442,0.964559,0.643255,0.360774,0.846621,0.0576113,0.672716,0.161596,0.642213,0.18775,0.494457,0.421413,0.161402,0.250446,0.982254,0.876533,0.0949124,0.831144,0.326401,0.29722,0.867043,0.711566,0.163722,0.373636,0.614605,0.950119,0.147776,0.108819,0.323057,0.857813,0.820537,0.946467,0.367115,0.564272,0.583712,0.234536,0.276884,0.0626802,0.798983,0.0562,0.730658,0.172378,0.895758,0.0794705,0.874606,0.616066,0.645939,0.888119,0.0225035,0.801732,0.476418,0.494864,0.673561,0.593604,0.263275,0.996758,0.678431,0.718041,0.0524453,0.396686,0.340578,0.230499,0.0830641,0.930231,0.88181,0.822528,0.930817,0.880016,0.246743,0.562651,0.882737,0.650533,0.472226,0.90285,0.540075,0.0110999,0.837684,0.943956,0.827187,0.534743,0.704892,0.168165,0.0172476,0.245117,0.843113,0.00627148,0.126396,0.488048,0.805434,0.47431,0.560863,0.657598,0.0675455,0.953834,0.0886608,0.847739,0.049031,0.484458,0.412332,0.546872,0.191689,0.931767,0.648767,0.850441,0.223856,0.409744,0.739151,0.204991,0.21442,0.779139,0.531065,0.671944,0.746107,0.212047,0.597238,0.153377,0.0279608,0.495507,0.686571,0.837173,0.255401,0.326806,0.70769,0.609961,0.945646,0.87927,0.0164907,0.200085,0.927332,0.923762,0.381125,0.483339,0.253391,0.303052,0.0805528,0.599607,0.148942,0.41309,0.616028,0.721869,0.323462,0.149856,0.709014,0.193559,0.259079,0.94209,0.825532,0.39398,0.209395,0.859587,0.627222,0.912781,0.281828,0.519757,0.0310282,0.159616,0.717021,0.791113,0.183238,0.289325,0.311454,0.604863,0.997154,0.5582,0.238511,0.287037,0.735458,0.171907,0.852319,0.287828,0.189102,0.678762,0.702692,0.106947,0.84172,0.250547,0.479249,0.607102,0.167475,0.688967,0.4956,0.074275,0.753571,0.469085,0.452701,0.562442,0.0665918,0.242514,0.880793,0.791633,0.523139,0.332853,0.778233,0.31866,0.507948,0.750973,0.668334,0.101903,0.461227,0.074371,0.177316,0.982886,0.713099,0.897319,0.948604,0.145653,0.136734,0.0695381,0.692693,0.309994,0.1785,0.314743,0.14329,0.909044,0.400558,0.468645,0.84277,0.286748,0.632031,0.426931,0.043271,0.377892,0.582491,0.90256,0.632893,0.398975,0.89827,0.697318,0.150066,0.67867,0.249607,0.742415,0.802008,0.908512,0.137091,0.498739,0.305039,0.381107,0.123984,0.645008,0.331629,0.245436,0.941127,0.389775,0.421905,0.557742,0.180948,0.7553,0.523861,0.980182,0.785759,0.0449769,0.314639,0.64396,0.609038,0.480059,0.527946,0.746053,0.727902,0.828199,0.46614,0.0255662,0.627217,0.750427,0.221446,0.123898,0.754606,0.934112,0.654978,0.0372914,0.262764,0.886945,0.575925,0.109197,0.236522,0.103539,0.865235,0.789705,0.0535124,0.765765,0.865039,0.839183,0.0581074,0.693269,0.828097,0.0543694,0.742234,0.878897,0.793807,0.127677,0.534599,0.19552,0.284937,0.848314,0.830717,0.80202,0.356877,0.690587,0.945329,0.13542,0.54875,0.164282,0.505508,0.838068,0.258574,0.648427,0.84715,0.630661,0.788217,0.418624,0.162332,0.0729541,0.481179,0.776646,0.718986,0.241961,0.271807,0.248584,0.251526,0.449288,0.36117,0.372683,0.667955,0.372651,0.282943,0.147396,0.904878,0.627111,0.929117,0.201398,0.826858,0.805941,0.890499,0.396332,0.906759,0.28846,0.929033,0.58965,0.0121112,0.447898,0.0193831,0.476456,0.0591759,0.636556,0.536775,0.706964,0.736455,0.767388,0.671145,0.420882,0.835039,0.161159,0.398833,0.434891,0.907255,0.442638,0.85218,0.592836,0.870424,0.904827,0.830686,0.53743,0.625045,0.320923,0.617116,0.31308,0.580869,0.169525,0.448694,0.572586,0.11244,0.111678,0.901527,0.0389475,0.15986,0.112217,0.279216,0.994508,0.612771,0.105918,0.495049,0.553431,0.574314,0.176625,0.869867,0.514463,0.839587,0.562604,0.863262,0.445582,0.697052,0.357887,0.245112,0.483411,0.437497,0.220357,0.707505,0.894448,0.962102,0.134412,0.567994,0.0357911,0.196109,0.962107,0.33608,0.90684,0.486845,0.647454,0.0167255,0.545548,0.925856,0.62999,0.0612779,0.584913,0.998877,0.867455,0.851431,0.349889,0.101525,0.347619,0.69103,0.595778,0.675296,0.364893,0.736128,0.878533,0.37653,0.950906,0.854914,0.489034,0.671563,0.230882,0.0863016,0.062205,0.0313004,0.209302,0.043424,0.459433,0.398072,0.344945,0.716351,0.824336,0.371198,0.910606,0.0604073,0.970191,0.639231,0.809216,0.576938,0.211092,0.30174,0.797065,0.583715,0.263803,0.67434,0.993266,0.937313,0.354349,0.871782,0.620447,0.214919,0.516102,0.501769,0.788086,0.137778,0.0586745,0.681395,0.909451,0.76209,0.31883,0.131308,0.942838,0.432303,0.587977,0.759903,0.748973,0.22521,0.642142,0.630084,0.38758,0.605821,0.228986,0.316467,0.117331,0.923126,0.374856,0.869253,0.858006,0.475693,0.242349,0.894107,0.401274,0.91672,0.946684,0.975204,0.0908934,0.859289,0.735167,0.0309521,0.60437,0.220745,0.442003,0.8448,0.561132,0.358067,0.817874,0.0322703,0.853778,0.0752462,0.300205,0.817672,0.541918,0.510142,0.912678,0.343287,0.928908,0.245864,0.0731861,0.271241,0.681079,0.406208,0.0650873,0.162819,0.197962,0.0571276,0.446379,0.795529,0.111745,0.594854,0.733122,0.538551,0.0801286,0.0902637,0.0381421,0.927919,0.133677,0.986186,0.241051,0.632636,0.0507852,0.298209,0.703109,0.800206,0.516129,0.585449,0.127062,0.912799,0.829907,0.135573,0.524847,0.690639,0.0183958,0.420731,0.137045,0.942205,0.237171,0.5815,0.0918211,0.00907773,0.964969,0.473676,0.686256,0.00452155,0.442409,0.620402,0.851923,0.197111,0.31938,0.754472,0.944364,0.105397,0.824784,0.193057,0.708227,0.509345,0.45211,0.269982,0.430201,0.763563,0.781513,0.585369,0.632248,0.104319,0.774632,0.650954,0.473328,0.863126,0.0536882,0.962775,0.295404,0.825729,0.570717,0.626613,0.61219,0.842346,0.894967,0.119937,0.974558,0.064469,0.559072,0.528181,0.0380793,0.839825,0.514977,0.856308,0.294737,0.286839,0.418979,0.997519,0.715705,0.776358,0.170433,0.325281,0.98468,0.710069,0.351092,0.65886,0.385512,0.806534,0.537358,0.594171,0.0710798,0.44411,0.861643,0.318046,0.600613,0.560565,0.251905,0.0119128,0.402025,0.248953,0.817006,0.924415,0.248069,0.0989106,0.0635036,0.533921,0.158152,0.29002,0.203664,0.0922458,0.733254,0.699926,0.352059,0.531522,0.218151,0.909783,0.790211,0.158249,0.207301,0.343775,0.167298,0.804264,0.303162,0.632492,0.943074,0.497656,0.31783,0.142404,0.0897473,0.781551,0.786214,0.971705,0.783537,0.000822365,0.308178,0.397272,0.59018,0.645282,0.81222,0.276953,0.835677,0.085941,0.500848,0.349825,0.242435,0.624819,0.183724,0.240995,0.96501,0.103206,0.0753977,0.226786,0.818152,0.289436,0.435194,0.35588,0.10958,0.698353,0.237472,0.495161,0.199644,0.507458,0.290398,0.137186,0.376605,0.650811,0.101462,0.64043,0.165964,0.74778,0.148588,0.849903,0.777437,0.340097,0.389205,0.7896,0.140665,0.820439,0.603599,0.980548,0.850955,0.233582,0.0834827,0.0374016,0.603184,0.448807,0.0211566,0.661909,0.964795,0.485877,0.305694,0.196956,0.0642098,0.173809,0.515662,0.749024,0.384238,0.526678,0.621893,0.763497,0.241271,0.838995,0.428858,0.873427,0.137664,0.421195,0.241723,0.471911,0.690027,0.989727,0.502634,0.640719,0.277095,0.988596,0.0798909,0.0622404,0.825829,0.177964,0.706388,0.511798,0.732838,0.878962,0.913365,0.119528,0.174231,0.613078,0.401823,0.851037,0.236966,0.02359,0.18889,|0.256919,0.278871,0.532455,0.769708,0.66741,0.354512,0.166696,0.979778,0.397013,0.463716,0.647209,0.669829,0.33645,0.92545,0.475146,0.229523,0.437069,0.407025,0.71286,0.455766,0.189355,0.973715,0.0389122,0.366048,0.621191,0.104055,0.83026,0.903717,0.154853,0.758647,0.948499,0.330243,0.532403,0.661503,0.0653808,0.251386,0.361169,0.567317,0.632338,0.0370581,0.995297,0.795141,0.169422,0.335413,0.700812,0.217277,0.0566292,0.305934,0.98808,0.0884037,0.780773,0.234646,0.919707,0.0224764,0.809436,0.707659,0.19691,0.367315,0.457664,0.668745,0.129944,0.473372,0.0225277,0.968402,0.514755,0.390444,0.375431,0.180197,0.906694,0.133122,0.582357,0.781333,0.898554,0.020047,0.881805,0.918911,0.621781,0.478984,0.0286579,0.539756,0.44003,0.74755,0.620887,0.00607723,0.627077,0.460073,0.323195,0.189286,0.395589,0.969828,0.523639,0.838416,0.660734,0.132292,0.345767,0.220619,0.538719,0.667862,0.991947,0.887319,0.633822,0.591836,0.308649,0.985804,0.00606841,0.767802,0.167754,0.330903,0.830651,0.353294,0.204913,0.126534,0.479674,0.0572817,0.514328,0.375581,0.854343,0.807354,0.424188,0.98235,0.956044,0.0757425,0.07767,0.0882034,0.0712402,0.973088,0.203771,0.721213,0.820085,0.519161,0.957439,0.235947,0.397538,0.63614,0.282517,0.566938,0.55672,0.504629,0.610994,0.811025,0.100867,0.880296,0.419278,0.324097,0.286249,0.699362,0.185491,0.424233,0.256438,0.750766,0.558043,0.511696,0.655678,0.683192,0.538063,0.432035,0.368714,0.722955,0.936863,0.777834,0.0987877,0.940607,0.465382,0.541126,0.420635,0.664535,0.763423,0.729743,0.557728,0.782628,0.260783,0.817574,0.996265,0.398786,0.183064,0.833451,0.291554,0.0415052,0.11488,0.608594,0.42955,0.934203,0.999431,0.291417,0.832227,0.349522,0.23085,0.959358,0.833256,0.25573,0.653713,0.461703,0.138042,0.925489,0.0471811,0.870592,0.666146,0.345741,0.589423,0.287709,0.817815,0.229556,0.770433,0.754186,0.979428,0.51379,0.611983,0.666929,0.670455,0.416598,0.821406,0.774893,0.63932,0.631657,0.524089,0.324334,0.560886,0.536715,0.925963,0.87476,0.820029,0.759095,0.0382943,0.280119,0.0485519,0.427534,0.796346,0.966706,0.255978,0.189796,0.176102,0.0866016,0.959857,0.617622,0.522385,0.977714,0.0858184,0.881017,0.811948,0.21006,0.154683,0.151424,0.181939,0.117265,0.957833,0.732235,0.189612,0.956376,0.27902,0.63629,0.173188,0.824355,0.411996,0.262806,0.378731,0.162798,0.348851,0.0964241,0.587157,0.150403,0.67328,0.250352,0.0757845,0.811245,0.935525,0.950855,0.480289,0.271701,0.691088,0.967723,0.311616,0.934478,0.0661393,0.00642574,0.0815875,0.0590466,0.00853896,0.776051,0.659279,0.30901,0.383077,0.311089,0.0158578,0.272905,0.0539931,0.167404,0.944047,0.284725,0.952489,0.0372831,0.0303735,0.192713,0.742386,0.742885,0.311577,0.747012,0.576654,0.137127,0.514848,0.943327,0.80393,0.293966,0.70561,0.953266,0.234228,0.850894,0.31066,0.266899,0.461815,0.0641411,0.528589,0.0517806,0.209981,0.699122,0.842304,0.471891,0.641936,0.198673,0.626436,0.184762,0.812874,0.0350043,0.713522,0.487271,0.453999,0.853934,0.933472,0.438112,0.116722,0.539845,0.535726,0.704116,0.0986851,0.615145,0.959337,0.870154,0.182227,0.10461,0.964978,0.473641,0.669148,0.661434,0.808603,0.617857,0.849017,0.311037,0.0652061,0.788441,0.508278,0.016425,0.38776,0.0161319,0.889213,0.846712,0.768526,0.601875,0.0101187,0.0231663,0.00813323,0.173099,0.558377,0.588045,0.946679,0.0226484,0.704585,0.0956526,0.762757,0.215245,0.854419,0.652388,0.0617195,0.764807,0.845674,0.922631,0.275879,0.238209,0.836263,0.0599211,0.130767,0.973802,0.235024,0.200043,0.814434,0.720083,0.534133,0.686816,0.11461,0.152769,0.990107,0.711963,0.450385,0.495845,0.946275,0.91349,0.0743044,0.598628,0.59397,0.248758,0.658412,0.703793,0.302689,0.574254,0.436124,0.268573,0.365582,0.686861,0.803711,0.479545,0.844961,0.633595,0.189367,0.86461,0.509718,0.622894,0.983226,0.0183085,0.737777,0.739657,0.897087,0.285899,0.509265,0.883857,0.577263,0.899647,0.315813,0.0502618,0.237455,0.584849,0.688514,0.797897,0.858807,0.192444,0.0772111,0.0887315,0.0812785,0.397788,0.418283,0.43552,0.0988234,0.0681689,0.534079,0.142618,0.702216,0.640821,0.732969,0.814088,0.590558,0.020736,0.686581,0.478697,0.0337018,0.947087,0.981358,0.944782,0.66415,0.996253,0.289053,0.515479,0.0451834,0.147231,0.760807,0.0543336,0.582364,0.599232,0.60746,0.984777,0.120374,0.385644,0.632909,0.159675,0.955118,0.800849,0.188406,0.875858,0.268152,0.937409,0.17441,0.0452434,0.151609,0.303101,0.869964,0.150784,0.305221,0.0313326,0.580866,0.797715,0.340103,0.745178,0.490863,0.957027,0.817033,0.215249,0.88945,0.659629,0.82368,0.864059,0.397979,0.629023,0.24767,0.295829,0.351375,0.65669,0.0900909,0.319617,0.891308,0.190378,0.656519,0.938204,0.897346,0.631915,0.379078,0.616851,0.734552,0.971275,0.719894,0.509434,0.364268,0.495293,0.163325,0.190314,0.826878,0.757032,0.648177,0.590113,0.505611,0.330244,0.891839,0.627854,0.365634,0.439144,0.632034,0.733311,0.611958,0.241357,0.479792,0.73844,0.987025,0.0968369,0.561705,0.602706,0.397436,0.494536,0.385961,0.993535,0.599194,0.817409,0.294344,0.390888,0.0390612,0.697874,0.333889,0.431888,0.0716918,0.667281,0.941449,0.040838,0.679503,0.179071,0.453613,0.26732,0.145031,0.117866,0.173351,0.966706,0.14088,0.676742,0.82478,0.172801,0.527749,0.0882132,0.819896,0.304752,0.821793,0.87255,0.311153,0.703983,0.999765,0.13357,0.943926,0.183501,0.957915,0.205602,0.766171,0.604038,0.199906,0.31683,0.512752,0.794645,0.0994917,0.453444,0.851905,0.992905,0.789465,0.182942,0.0348502,0.387649,0.702794,0.892896,0.0172333,0.678111,0.511948,0.58242,0.405291,0.0940334,0.522574,0.76,0.769595,0.203858,0.550655,0.0479645,0.476868,0.825299,0.0164692,0.880471,0.360326,0.0943275,0.457995,0.118777,0.524486,0.779025,0.5234,0.359878,0.472482,0.561795,0.381886,0.965735,0.171792,0.546263,0.371254,0.899167,0.230721,0.379651,0.144077,0.705381,0.225381,0.873381,0.214254,0.315622,0.566996,0.837676,0.99619,0.936436,0.00506884,0.622873,0.191669,0.771899,0.263152,0.212931,0.272027,0.964539,0.835746,0.163776,0.867035,0.0501603,0.760568,0.705629,0.00260305,0.399601,0.925711,0.943635,0.852528,0.985288,0.800076,0.259457,0.744314,0.215411,0.583117,0.125457,0.880677,0.848164,0.967672,0.169201,0.281231,0.575383,0.500471,0.22597,0.356646,0.695691,0.213478,0.157855,0.433483,0.0238904,0.375971,0.68358,0.414094,0.519459,0.640839,0.569123,0.479345,0.54002,0.578245,0.518769,0.807388,0.414187,0.028222,0.0609133,0.518012,0.882474,0.919857,0.012233,0.215998,0.209637,0.510537,0.066607,0.368771,0.0624782,0.711788,0.675847,0.0547967,0.460747,0.0916387,0.287174,0.52744,0.677816,0.332363,0.172688,0.370529,0.596159,0.00992256,0.636228,0.556551,0.781422,0.227037,0.887199,0.43747,0.577922,0.0324985,0.18402,0.210988,0.193513,0.254044,0.286424,0.750205,0.979881,0.245649,0.324646,0.334027,0.425767,0.570568,0.00494331,0.419966,0.552127,0.274007,0.607171,0.47429,0.883652,0.0023706,0.863821,0.651491,0.127062,0.842037,0.134602,0.140027,0.981731,0.307637,0.403178,0.634608,0.0600842,0.0214073,0.969072,0.414931,0.457391,0.997738,0.478468,0.486403,0.880146,0.345949,0.0353886,0.136778,0.368215,0.0285013,0.438137,0.12641,0.239884,0.578512,0.0922156,0.67204,0.125543,0.408737,0.430799,0.743708,0.557208,0.335501,0.620584,0.872202,0.627748,0.639065,0.589382,0.524025,0.733957,0.151504,0.405038,0.337247,0.173079,0.986001,0.103701,0.160538,0.314252,0.845676,0.887524,0.0414846,0.941954,0.223321,0.857172,0.453218,0.50666,0.392646,0.152302,0.957996,0.810579,0.93531,0.932102,0.851611,0.127871,0.171982,0.782593,0.794622,0.0927827,0.40417,0.867358,0.198791,0.473534,0.109307,0.635957,0.963172,0.28941,0.860048,0.968226,0.670282,0.0671722,0.216776,0.587894,0.446015,0.05216,0.782488,0.323585,0.456532,0.509502,0.282528,0.0268092,0.00460809,0.842277,0.275207,0.890084,0.552674,0.663038,0.388811,0.988454,0.764753,0.707277,0.720247,0.252297,0.0504786,0.983279,0.779106,0.446879,0.501545,0.699799,0.0387785,0.931688,0.473819,0.30757,0.472757,0.802201,0.464595,0.912219,0.92538,0.890534,0.778147,0.474035,0.26538,0.827017,0.397663,0.746788,0.0396709,0.0494564,0.755261,0.394269,0.208239,0.0274848,0.912368,0.514485,0.291898,0.926417,0.797002,0.964262,0.175284,0.883195,0.133813,0.885356,0.371097,0.833119,0.173765,0.348778,0.886458,0.873878,0.607215,0.137105,0.553383,0.337384,0.443465,0.836175,0.92814,0.731716,0.953661,0.661794,0.575154,0.855001,0.453135,0.437628,0.642031,0.896703,0.102086,0.473848,0.249176,0.951985,0.133215,0.512109,0.737649,0.897486,0.756622,0.0279674,0.725946,0.848275,0.291022,0.204242,0.737432,0.299571,0.878776,0.843173,0.785775,0.245786,0.594112,0.988891,0.675635,0.0372738,0.932558,0.137308,0.709934,0.0369513,0.458345,0.272247,0.0912094,0.331613,0.588934,0.0322949,0.82893,0.651345,0.966929,0.548631,0.642716,0.563135,0.179313,0.854091,0.0575711,0.635477,0.903944,0.351502,0.636734,0.371474,0.291553,0.863295,0.337252,0.691605,0.531851,0.1927,0.32407,0.668423,0.0677513,0.392579,0.954433,0.333322,0.681977,0.178242,0.82576,0.310334,0.412487,0.554634,0.498577,0.194316,0.647506,0.482362,0.0163785,0.0547217,0.00072974,0.179343,0.840082,0.585907,0.0700184,0.454645,0.349139,0.582577,0.278669,0.262629,0.451659,0.478798,0.0590228,0.326324,0.0149434,0.380839,|0.261546,0.675529,0.18237,0.68173,0.26992,0.842399,0.686242,0.613608,0.815877,0.803744,0.200905,0.658228,0.108571,0.85387,0.746569,0.686701,0.137507,0.728058,0.936099,0.890026,0.228789,0.726867,0.0384222,0.651326,0.536439,0.82462,0.294339,0.848385,0.361557,0.524803,0.611699,0.450221,0.961747,0.17092,0.507703,0.936054,0.758328,0.289899,0.517778,0.690221,0.66373,0.567633,0.971343,0.393254,0.388002,0.932017,0.646959,0.420582,0.000620544,0.532775,0.486919,0.757833,0.989906,0.416721,0.344341,0.771271,0.764701,0.601901,0.598511,0.236636,0.274055,0.0136258,0.0613207,0.99432,0.85231,0.471937,0.792276,0.737431,0.231521,0.110157,0.183319,0.0152471,0.0550155,0.598576,0.941561,0.251924,0.41072,0.57121,0.239043,0.313392,0.493446,0.17283,0.698208,0.167505,0.935985,0.661181,0.536992,0.387516,0.0235826,0.879654,0.420203,0.112425,0.843385,0.644862,0.641896,0.308413,0.927016,0.16657,0.446746,0.370529,0.642174,0.837876,0.617592,0.0420243,0.761053,0.161778,0.722856,0.322539,0.591187,0.214241,0.53069,0.755202,0.1732,0.266141,0.537139,0.216221,0.0652951,0.113097,0.541192,0.471083,0.581387,0.847822,0.449086,0.66488,0.487947,0.489001,0.117196,0.365048,0.101858,0.779402,0.521922,0.00297773,0.286293,0.728829,0.673778,0.669228,0.500476,0.733921,0.17979,0.385441,0.371736,0.920029,0.337826,0.40243,0.266415,0.285649,0.982981,0.467752,0.403137,0.235073,0.298439,0.225282,0.888635,0.268967,0.131677,0.700552,0.772819,0.652284,0.134102,0.947285,0.828177,0.861981,0.669671,0.611095,0.947879,0.889698,0.492205,0.126475,0.629714,0.0843383,0.397373,0.201273,0.849083,0.867984,0.256346,0.985812,0.194496,0.50055,0.593858,0.703439,0.401934,0.440088,0.121105,0.327376,0.131187,0.632928,0.374126,0.115001,0.149747,0.129005,0.390258,0.919265,0.579653,0.33693,0.326917,0.276918,0.497577,0.902192,0.157915,0.413259,0.581258,0.896698,0.696634,0.361015,0.109097,0.804775,0.0429592,0.882854,0.41819,0.282178,0.129941,0.652865,0.724611,0.564666,0.582917,0.98311,0.959619,0.28783,0.285494,0.606853,0.591344,0.726095,0.469885,0.781092,0.366709,0.389508,0.16792,0.851974,0.627028,0.0530142,0.31369,0.0707915,0.371084,0.350866,0.34028,0.552472,0.591701,0.62025,0.969155,0.314757,0.416753,0.726842,0.750862,0.693086,0.185075,0.583149,0.55491,0.517278,0.345291,0.465804,0.266541,0.894128,0.622982,0.0854151,0.136901,0.826585,0.980036,0.0437579,0.891198,0.770924,0.54472,0.832255,0.876554,0.993179,0.479364,0.774433,0.312513,0.399186,0.384531,0.353389,0.641822,0.0263675,0.0134071,0.985759,0.0174361,0.7861,0.946444,0.351288,0.119083,0.426439,0.785662,0.778881,0.76849,0.740501,0.574089,0.868283,0.302329,0.730655,0.619506,0.584093,0.201531,0.0382857,0.182918,0.933044,0.52364,0.490587,0.89797,0.384101,0.122352,0.150023,0.195059,0.953975,0.555722,0.53569,0.701296,0.554193,0.620348,0.112468,0.399997,0.00906211,0.660023,0.0657709,0.0943636,0.881224,0.888308,0.130896,0.834647,0.741582,0.782907,0.0912541,0.145032,0.239433,0.399918,0.188857,0.247439,0.0632883,0.666777,0.145031,0.372376,0.928407,0.448394,0.947117,0.136011,0.702831,0.728684,0.0730458,0.570309,0.186661,0.258859,0.108393,0.918193,0.376906,0.299147,0.106815,0.217331,0.628274,0.623208,0.190991,0.74386,0.854106,0.353439,0.875554,0.639672,0.58234,0.431468,0.0187203,0.167767,0.846774,0.841154,0.104201,0.751593,0.599895,0.700446,0.547626,0.763049,0.18915,0.711448,0.968364,0.443866,0.778874,0.266607,0.704179,0.362859,0.674238,0.745885,0.0250055,0.676384,0.188582,0.483993,0.655105,0.353893,0.878905,0.939531,0.0201025,0.083684,0.238977,0.461217,0.354809,0.474238,0.414364,0.434612,0.55628,0.433726,0.654546,0.681737,0.249553,0.803843,0.621338,0.437998,0.0813489,0.522898,0.854863,0.158806,0.104952,0.727587,0.598941,0.894645,0.695507,0.122778,0.577056,0.882524,0.957651,0.970805,0.179669,0.418283,0.10511,0.495566,0.883002,0.39758,0.86427,0.87497,0.30327,0.782739,0.530714,0.155952,0.45515,0.262347,0.825366,0.10612,0.462832,0.420233,0.497332,0.854635,0.607753,0.377668,0.734421,0.44346,0.0645955,0.312365,0.490393,0.954408,0.162808,0.19122,0.380273,0.9217,0.103306,0.845035,0.604531,0.542199,0.675993,0.476375,0.912444,0.570184,0.688325,0.926406,0.648031,0.653053,0.29805,0.781758,0.500773,0.930435,0.422361,0.91855,0.779666,0.286758,0.00119889,0.990085,0.411521,0.155385,0.413999,0.00292993,0.571797,0.0170083,0.391167,0.260108,0.528756,0.891149,0.676815,0.132778,0.691116,0.922518,0.834098,0.474918,0.171051,0.0938199,0.165707,0.0969574,0.537314,0.907378,0.917995,0.830778,0.172312,0.519334,0.624545,0.953448,0.295636,0.558042,0.0807663,0.0575885,0.931583,0.412862,0.226304,0.796718,0.0685716,0.707756,0.879384,0.3652,0.649705,0.329296,0.168161,0.457853,0.550199,0.779591,0.603199,0.918304,0.481533,0.614386,0.804873,0.188758,0.335217,0.182087,0.19674,0.152331,0.972576,0.672294,0.625746,0.540512,0.474113,0.0459546,0.703547,0.755883,0.503635,0.745097,0.549079,0.69557,0.848755,0.314789,0.213771,0.955426,0.991674,0.252795,0.444008,0.845623,0.00248903,0.034831,0.808288,0.907873,0.0781509,0.684782,0.0568451,0.301573,0.84455,0.154053,0.941776,0.162775,0.134144,0.616852,0.88687,0.601874,0.256088,0.835443,0.271999,0.982746,0.804898,0.920509,0.499216,0.642066,0.461969,0.741136,0.372788,0.730361,0.402776,0.722006,0.109507,0.450791,0.125629,0.785625,0.913273,0.36701,0.148718,0.261088,0.241964,0.221487,0.129681,0.930488,0.449748,0.0923933,0.797866,0.997246,0.0315261,0.293982,0.747673,0.215821,0.222743,0.197315,0.0471907,0.351192,0.628148,0.253874,0.0547011,0.869859,0.358093,0.751225,0.553554,0.820378,0.257891,0.872244,0.705686,0.972864,0.399072,0.241141,0.379306,0.264212,0.0510189,0.209391,0.999752,0.829761,0.727876,0.19673,0.3374,0.289012,0.825791,0.794756,0.488903,0.857787,0.662981,0.730678,0.363107,0.346973,0.265277,0.0182485,0.951172,0.0822843,0.970409,0.576723,0.336569,0.212621,0.926414,0.258511,0.956771,0.858378,0.730067,0.178032,0.545359,0.560864,0.317627,0.554187,0.43834,0.1739,0.59229,0.706261,0.511124,0.170558,0.988211,0.276304,0.0797014,0.484317,0.0140393,0.746684,0.857282,0.545832,0.62994,0.150533,0.562679,0.103462,0.551636,0.527595,0.800289,0.932724,0.752219,0.403681,0.0148754,0.874513,0.722498,0.444573,0.903503,0.379631,0.508615,0.708205,0.00721312,0.908437,0.576313,0.859354,0.556623,0.117437,0.79201,0.805958,0.255437,0.759572,0.843856,0.701576,0.558763,0.0401924,0.927077,0.44615,0.0403548,0.943936,0.716183,0.846042,0.967454,0.889018,0.0491288,0.943685,0.673144,0.921904,0.586608,0.886235,0.395567,0.714333,0.548032,0.343479,0.900723,0.10005,0.349266,0.181635,0.935547,0.420315,0.393652,0.98938,0.677219,0.986648,0.824534,0.0280511,0.48444,0.608652,0.881316,0.771329,0.483891,0.0825649,0.535232,0.732532,0.786431,0.33313,0.12179,0.770993,0.16775,0.213327,0.751016,0.680776,0.72758,0.725943,0.826201,0.520794,0.184648,0.929207,0.996573,0.888486,0.0519736,0.602485,0.313956,0.185941,0.102641,0.848378,0.928087,0.226665,0.183915,0.199792,0.765244,0.145096,0.273496,0.13058,0.657835,0.549985,0.0767005,0.726634,0.698533,0.254849,0.424516,0.051002,0.532916,0.637065,0.730232,0.982018,0.262559,0.943166,0.0895292,0.447894,0.600357,0.694289,0.59446,0.590201,0.882547,0.418239,0.222587,0.359,0.439223,0.149171,0.122571,0.734225,0.139055,0.628169,0.0147117,0.0930755,0.176043,0.456614,0.744908,0.356444,0.523834,0.00592685,0.388072,0.228601,0.111671,0.384969,0.997395,0.674361,0.22744,0.617293,0.586503,0.704823,0.0457682,0.663244,0.0809637,0.0852368,0.738282,0.0365373,0.298268,0.470095,0.609808,0.757726,0.378382,0.18142,0.576451,0.840712,0.961909,0.537452,0.343248,0.910828,0.262502,0.874571,0.998278,0.192542,0.865209,0.820496,0.653751,0.525294,0.989859,0.7132,0.243231,0.789251,0.69702,0.260713,0.102984,0.12798,0.765425,0.524163,0.306032,0.715195,0.27888,0.27835,0.816649,0.488012,0.689893,0.521703,0.194001,0.251726,0.442651,0.844235,0.21669,0.986106,0.221336,0.508481,0.947317,0.419889,0.0711153,0.192657,0.412095,0.799276,0.268031,0.666886,0.504579,0.856859,0.326141,0.6754,0.774353,0.507852,0.635169,0.519862,0.386237,0.280552,0.114679,0.207356,0.218229,0.646759,0.757317,0.659259,0.779154,0.867356,0.230868,0.364689,0.719374,0.511193,0.838054,0.900497,0.0569839,0.143559,0.569481,0.409442,0.214677,0.504588,0.10055,0.294316,0.689494,0.489743,0.401189,0.431336,0.329998,0.11597,0.975204,0.597536,0.79979,0.396537,0.377066,0.0145468,0.623534,0.0155841,0.532694,0.11101,0.339896,0.424677,0.872238,0.823843,0.91541,0.492173,0.790763,0.548899,0.160867,0.267336,0.275791,0.551177,0.917452,0.0874969,0.781112,0.0384377,0.139764,0.817048,0.567901,0.482501,0.494498,0.420217,0.272323,0.132673,0.883777,0.882701,0.137597,0.191834,0.439353,0.350155,0.960169,0.602152,0.821297,0.157952,0.646598,0.0735448,0.373503,0.536108,0.942555,0.550634,0.982128,0.902276,0.543885,0.782547,0.266993,0.322836,0.439915,0.38234,0.983606,0.0908539,0.636983,0.312967,0.51126,0.363341,0.0812285,0.202831,0.308789,0.26496,0.730259,0.588294,0.402122,0.961691,0.431406,0.412839,0.0421928,0.903955,0.642216,0.148201,0.934318,0.0166715,0.485034,0.863163,0.523551,0.558157,0.284401,0.738801,0.342188,0.117702,0.893122,0.798065,0.307695,0.358667,0.45374,|0.933429,0.516574,0.206935,0.983933,0.614198,0.102058,0.440733,0.823656,0.994734,0.103103,0.12804,0.611638,0.418205,0.413354,0.543185,0.858666,0.587558,0.930377,0.116072,0.45537,0.378002,0.917956,0.023544,0.315893,0.709271,0.520972,0.804269,0.306776,0.625121,0.284619,0.744576,0.0687239,0.544905,0.994324,0.36832,0.220926,0.961441,0.541437,0.500283,0.357059,0.644023,0.13283,0.76698,0.0993053,0.316996,0.638944,0.514184,0.576122,0.599267,0.111601,0.996681,0.514418,0.952187,0.866972,0.698045,0.172041,0.244515,0.661038,0.742999,0.584787,0.151651,0.346422,0.857425,0.430982,0.287761,0.585719,0.439765,0.252602,0.848807,0.81193,0.595478,0.889351,0.225039,0.828443,0.287697,0.407814,0.783338,0.125748,0.177832,0.41413,0.518996,0.443698,0.231952,0.3189,0.118728,0.119807,0.128473,0.362231,0.236753,0.930438,0.588064,0.0296766,0.603345,0.577278,0.532597,0.440341,0.462792,0.539317,0.491962,0.0381848,0.445541,0.968665,0.880227,0.151565,0.945085,0.224301,0.794056,0.711983,0.852745,0.145731,0.199039,0.603197,0.659027,0.442573,0.871839,0.266635,0.153354,0.202556,0.60686,0.666257,0.99273,0.540148,0.606984,0.861813,0.53686,0.0736949,0.0520313,0.603996,0.82911,0.774546,0.96688,0.166901,0.508472,0.35589,0.821624,0.244298,0.679112,0.647264,0.982499,0.602575,0.563816,0.444409,0.324809,0.744153,0.189759,0.438043,0.219307,0.787594,0.626963,0.6713,0.297308,0.36701,0.270893,0.362594,0.810691,0.220782,0.0664759,0.329794,0.36789,0.707976,0.85693,0.435167,0.271985,0.838761,0.254248,0.525537,0.218367,0.676369,0.534544,0.251069,0.24653,0.355818,0.623055,0.0612546,0.961655,0.855142,0.641574,0.639336,0.200144,0.74412,0.187344,0.352115,0.586003,0.54688,0.866592,0.828263,0.396088,0.24263,0.481383,0.545504,0.202103,0.406641,0.947565,0.673626,0.38756,0.140672,0.0925491,0.189755,0.390838,0.0934359,0.933459,0.0795111,0.529241,0.865109,0.0101352,0.188677,0.2332,0.592669,0.379188,0.901949,0.732372,0.374869,0.937681,0.571234,0.861058,0.602744,0.942009,0.584937,0.891341,0.152063,0.307071,0.577617,0.947911,0.289185,0.408313,0.210391,0.629831,0.64857,0.875505,0.142129,0.0905077,0.698431,0.696311,0.862034,0.792506,0.863476,0.915106,0.216579,0.484896,0.343219,0.403445,0.427105,0.895982,0.00524139,0.260987,0.50669,0.0230982,0.43066,0.041603,0.237645,0.62588,0.444997,0.4047,0.276093,0.362717,0.453467,0.295214,0.791966,0.430055,0.174495,0.77901,0.807932,0.139434,0.0748155,0.592163,0.57089,0.000558317,0.854802,0.407402,0.259659,0.955111,0.773789,0.225518,0.759595,0.627213,0.504208,0.459078,0.725274,0.241913,0.0101334,0.772311,0.870376,0.410914,0.023521,0.910211,0.112064,0.156354,0.138247,0.508062,0.267449,0.665027,0.54751,0.928446,0.879337,0.818971,0.22965,0.522092,0.454768,0.939789,0.915469,0.336695,0.91269,0.132782,0.285682,0.834167,0.273536,0.11516,0.438487,0.146828,0.416593,0.679503,0.629619,0.739756,0.409552,0.529887,0.979561,0.331096,0.886137,0.773152,0.551987,0.800332,0.738852,0.119437,0.978908,0.603209,0.668451,0.273987,0.329359,0.913517,0.0629303,0.108218,0.668425,0.69922,0.667913,0.0733581,0.140892,0.815492,0.833103,0.296346,0.978535,0.622667,0.554938,0.279796,0.00604028,0.636183,0.0515893,0.541436,0.208436,0.476556,0.133122,0.524749,0.331905,0.859888,0.209932,0.397748,0.832113,0.360422,0.442949,0.172846,0.102231,0.148254,0.165509,0.571924,0.427763,0.181086,0.985923,0.127227,0.323673,0.271642,0.371949,0.179495,0.355844,0.472538,0.95662,0.965009,0.758352,0.961846,0.523305,0.474775,0.534453,0.423161,0.289718,0.334731,0.662719,0.309541,0.012226,0.592494,0.394673,0.798125,0.916923,0.88381,0.899543,0.12741,0.124886,0.671119,0.145906,0.54142,0.448635,0.242853,0.592465,0.379478,0.837743,0.658975,0.365338,0.721391,0.492518,0.350639,0.0595183,0.866255,0.96487,0.631658,0.681895,0.280339,0.822867,0.201684,0.870753,0.524983,0.446275,0.129779,0.52984,0.496893,0.01608,0.850782,0.330058,0.798329,0.982651,0.0833062,0.0967028,0.312091,0.802523,0.0357031,0.551203,0.316217,0.921614,0.0319146,0.462757,0.588836,0.746656,0.199811,0.328326,0.70911,0.51835,0.865167,0.229416,0.843293,0.718765,0.926851,0.348289,0.0493563,0.588818,0.04474,0.338214,0.60047,0.820547,0.39079,0.928463,0.574966,0.741248,0.206728,0.556389,0.367919,0.701476,0.281928,0.847561,0.121761,0.732481,0.330802,0.680559,0.427344,0.921275,0.95753,0.71063,0.988161,0.547835,0.818356,0.638619,0.722993,0.269679,0.799626,0.614988,0.949788,0.427656,0.361482,0.724415,0.940274,0.132875,0.988398,0.554348,0.210412,0.587037,0.69763,0.187301,0.51206,0.0778018,0.186897,0.634648,0.403709,0.869227,0.221246,0.393236,0.132149,0.617491,0.962672,0.0610631,0.0506942,0.710894,0.115324,0.691233,0.486289,0.407144,0.0681533,0.955507,0.17211,0.878143,0.361449,0.161023,0.218074,0.787217,0.116397,0.870619,0.265614,0.580626,0.210007,0.391513,0.19325,0.383737,0.721668,0.491658,0.356341,0.181688,0.0012849,0.823827,0.335224,0.00972182,0.851589,0.933705,0.859402,0.431168,0.748275,0.661586,0.96626,0.663341,0.422159,0.540973,0.880686,0.049248,0.975729,0.780235,0.795313,0.0614982,0.0993848,0.231594,0.906132,0.651961,0.449481,0.0210018,0.390255,0.779121,0.322879,0.136904,0.747259,0.0608593,0.0949386,0.555218,0.391968,0.928825,0.920982,0.663545,0.0639679,0.679493,0.436267,0.0910789,0.955164,0.43994,0.592689,0.960725,0.0586383,0.152009,0.279839,0.159595,0.245885,0.793091,0.790949,0.244939,0.942793,0.912459,0.737913,0.437477,0.933103,0.0838935,0.607175,0.657676,0.266261,0.109195,0.392011,0.11367,0.57109,0.872447,0.327648,0.0908582,0.352033,0.612874,0.27244,0.758134,0.029373,0.626349,0.372402,0.926618,0.334876,0.568452,0.0814856,0.895177,0.401859,0.387832,0.632559,0.510084,0.269584,0.417506,0.135145,0.4694,0.0749056,0.289119,0.0423738,0.991291,0.422095,0.768773,0.203532,0.281586,0.801938,0.642503,0.74249,0.633475,0.0251567,0.281701,0.515351,0.749645,0.221251,0.261448,0.594838,0.139159,0.231045,0.512283,0.321725,0.517179,0.758198,0.929755,0.465799,0.425078,0.934399,0.300873,0.979921,0.202535,0.327074,0.267597,0.41799,0.311733,0.323795,0.527995,0.403713,0.739813,0.021315,0.580722,0.653542,0.341129,0.502819,0.803025,0.49961,0.681725,0.968113,0.514415,0.00246358,0.631106,0.565488,0.368943,0.645779,0.914096,0.767895,0.292684,0.188613,0.572024,0.947108,0.325872,0.522601,0.739629,0.0767233,0.335057,0.0678904,0.157812,0.121139,0.171568,0.509391,0.192036,0.973787,0.543806,0.58565,0.683531,0.62252,0.164682,0.447754,0.277454,0.184966,0.0753174,0.549797,0.0234305,0.143692,0.330243,0.287204,0.389926,0.0438187,0.54504,0.293709,0.0466036,0.617362,0.812463,0.774338,0.021753,0.807216,0.741895,0.224719,0.80559,0.555986,0.848373,0.159614,0.697969,0.435834,0.214864,0.225865,0.844265,0.239081,0.0768066,0.0933555,0.799296,0.384984,0.0312176,0.762954,0.847086,0.641732,0.487659,0.00272906,0.711288,0.552496,0.231977,0.809037,0.416539,0.517201,0.102821,0.00971842,0.891411,0.188155,0.914755,0.0717447,0.587521,0.77021,0.602756,0.488869,0.872574,0.308381,0.366337,0.855141,0.536615,0.375378,0.480446,0.694934,0.0622834,0.738614,0.729351,0.931749,0.574219,0.353758,0.538137,0.256471,0.499405,0.279609,0.853289,0.416113,0.0614511,0.984666,0.775679,0.197365,0.804083,0.903475,0.411297,0.124992,0.806577,0.891597,0.390965,0.115198,0.400866,0.728597,0.479258,0.541143,0.973192,0.739227,0.892898,0.499695,0.188147,0.0534638,0.332568,0.626736,0.144771,0.786401,0.564378,0.704961,0.288975,0.708757,0.893011,0.0411952,0.134101,0.778467,0.379222,0.128447,0.352327,0.372387,0.965529,0.420559,0.115451,0.536331,0.273104,0.0814566,0.435686,0.441262,0.703594,0.852853,0.416861,0.504335,0.11827,0.602175,0.302397,0.24657,0.626957,0.860222,0.381408,0.261039,0.0493249,0.821257,0.810632,0.426254,0.0946452,0.539548,0.638126,0.263569,0.443407,0.538512,0.334143,0.565753,0.362333,0.981964,0.561866,0.599416,0.839848,0.487822,0.086695,0.86707,0.540824,0.570493,0.85341,0.216761,0.639627,0.144577,0.385831,0.612864,0.480061,0.752861,0.132633,0.719367,0.0205904,0.231592,0.135551,0.986607,0.0589726,0.929722,0.938803,0.851609,0.608634,0.733009,0.643891,0.931881,0.191109,0.779575,0.527826,0.32141,0.449593,0.154415,0.512428,0.879002,0.259068,0.645777,0.170313,0.145024,0.842975,0.173092,0.324956,0.11482,0.167423,0.636131,0.0433792,0.575364,0.747814,0.0301167,0.492917,0.0907544,0.814981,0.582798,0.811358,0.267888,0.814749,0.583736,0.841845,0.293442,0.878951,0.432075,0.919152,0.739879,0.839912,0.494221,0.625642,0.128551,0.381275,0.382841,0.508124,0.98289,0.667526,0.133856,0.785444,0.651704,0.880676,0.202436,0.0302357,0.0806958,0.591239,0.639543,0.595739,0.511715,0.332872,0.797069,0.588142,0.559057,0.472885,0.142704,0.899528,0.827368,0.63241,0.206172,0.126987,0.888179,0.039978,0.884099,0.228052,0.864222,0.878253,0.570262,0.0657734,0.650901,0.924112,0.463906,0.399702,0.912962,0.569493,0.506505,0.943796,0.691365,0.682311,0.818416,0.133237,0.284809,0.0703762,0.403567,0.712407,0.292255,0.563941,0.427357,0.136349,0.759681,0.744359,0.294329,0.0640213,0.660581,0.184938,0.169557,0.728814,0.389888,0.473439,0.536447,0.861681,0.599783,0.834675,0.505147,0.883421,0.723177,0.970672,0.807811,0.356484,0.151107,0.0818419,0.978716,0.0102211,0.52216,0.0123187,0.228037,0.824174,|0.674658,0.84964,0.727109,0.0914918,0.00712025,0.851506,0.404692,0.463684,0.0488386,0.444434,0.722125,0.853218,0.593431,0.609135,0.638368,0.289509,0.408027,0.0781854,0.660093,0.961832,0.0621789,0.179586,0.716344,0.927704,0.926532,0.673328,0.175342,0.21038,0.244526,0.349443,0.803917,0.590752,0.970298,0.403627,0.232243,0.255671,0.122722,0.0320359,0.997962,0.603787,0.906127,0.263583,0.265538,0.363771,0.925599,0.136025,0.687137,0.868585,0.441559,0.156605,0.338086,0.0983807,0.677063,0.0602432,0.615434,0.548037,0.076461,0.678995,0.225614,0.845541,0.4717,0.914817,0.698341,0.276303,0.389237,0.463001,0.129369,0.545583,0.523521,0.407689,0.0398914,0.477901,0.378076,0.926728,0.786331,0.824417,0.643091,0.360229,0.823296,0.134407,0.130068,0.990458,0.110167,0.665189,0.0132324,0.727837,0.251346,0.644422,0.0820321,0.412915,0.906977,0.621501,0.270508,0.503162,0.243927,0.0299922,0.62192,0.305528,0.170388,0.656049,0.516999,0.0635523,0.622514,0.47204,0.296275,0.367185,0.480227,0.114543,0.0318306,0.49995,0.659666,0.593709,0.0574011,0.501588,0.162611,0.939197,0.24019,0.675629,0.0854575,0.849483,0.919767,0.353526,0.24281,0.471574,0.215182,0.0534317,0.433508,0.896849,0.400141,0.266501,0.222995,0.608684,0.85693,0.983027,0.353715,0.00823969,0.788919,0.806487,0.39907,0.565361,0.708367,0.673469,0.157188,0.79992,0.583026,0.39818,0.10637,0.835172,0.315518,0.497545,0.238548,0.418123,0.800092,0.384215,0.625112,0.290805,0.804235,0.870893,0.61408,0.557058,0.46849,0.895193,0.0688539,0.931498,0.247125,0.0913718,0.598503,0.0765916,0.89491,0.164404,0.875035,0.482261,0.608421,0.399687,0.239651,0.324932,0.0416608,0.105006,0.991121,0.118573,0.158614,0.15214,0.922409,0.0246232,0.471416,0.220843,0.118799,0.950755,0.165749,0.126439,0.957889,0.761871,0.330124,0.995645,0.719233,0.514761,0.0177456,0.967007,0.0586672,0.414078,0.564458,0.00225884,0.00517738,0.147635,0.907963,0.777708,0.226731,0.282034,0.193168,0.348152,0.919111,0.505135,0.135484,0.46926,0.820115,0.0865172,0.664488,0.669527,0.150165,0.725891,0.481616,0.843145,0.687416,0.351656,0.536508,0.0883094,0.22172,0.892908,0.0699543,0.373389,0.476767,0.220527,0.123194,0.729681,0.786106,0.456275,0.220643,0.495533,0.556491,0.795224,0.884165,0.210206,0.55764,0.992396,0.104043,0.359923,0.936932,0.53377,0.468105,0.323868,0.662064,0.912896,0.182071,0.742299,0.738878,0.878666,0.0445373,0.0750882,0.241862,0.546999,0.367933,0.138505,0.107638,0.126709,0.127284,0.408999,0.139192,0.951918,0.877277,0.0132218,0.346477,0.998727,0.531302,0.9053,0.421596,0.828656,0.442488,0.675035,0.180617,0.913705,0.755426,0.1201,0.78167,0.893156,0.500516,0.0392163,0.226711,0.425054,0.524552,0.138561,0.426401,0.161063,0.931313,0.532694,0.923612,0.0493519,0.796416,0.607892,0.162112,0.394076,0.536465,0.16336,0.436256,0.696322,0.570572,0.498493,0.182057,0.4738,0.334061,0.656527,0.400237,0.69144,0.757228,0.418682,0.445734,0.320048,0.087877,0.538475,0.728533,0.62261,0.228409,0.726568,0.313327,0.673689,0.00556296,0.858299,0.766642,0.0590222,0.582579,0.62303,0.599707,0.42684,0.935999,0.781649,0.528591,0.564493,0.363177,0.0259818,0.598599,0.707143,0.716428,0.101759,0.877176,0.339577,0.472657,0.0587555,0.817811,0.469077,0.571837,0.420416,0.791285,0.270064,0.708005,0.432542,0.747771,0.334995,0.325568,0.463043,0.569796,0.877596,0.134982,0.799944,0.887129,0.716826,0.720885,0.0865389,0.397297,0.201106,0.531684,0.167955,0.802728,0.550412,0.828146,0.780381,0.114976,0.444809,0.112231,0.523767,0.0779041,0.128048,0.769046,0.948702,0.149114,0.856149,0.732694,0.129501,0.160678,0.806389,0.521084,0.883169,0.103135,0.833145,0.491139,0.175491,0.0329161,0.142596,0.292218,0.864343,0.346929,0.353005,0.439425,0.262357,0.363025,0.604479,0.712617,0.815316,0.763847,0.47338,0.961615,0.526758,0.0812634,0.589689,0.194043,0.550646,0.404495,0.251726,0.21197,0.381718,0.239791,0.222553,0.62772,0.101654,0.106931,0.396875,0.6752,0.278428,0.0511312,0.841353,0.934774,0.677519,0.518605,0.193795,0.627932,0.0671822,0.0283515,0.864648,0.503996,0.897979,0.1887,0.40073,0.0368201,0.354216,0.0038622,0.508937,0.759632,0.608554,0.706782,0.125701,0.214372,0.359185,0.88701,0.603033,0.491902,0.142042,0.782087,0.498904,0.114706,0.765962,0.346111,0.227717,0.347784,0.906132,0.242854,0.938141,0.377216,0.0649545,0.593934,0.999618,0.266469,0.967877,0.370019,0.810963,0.0663815,0.794869,0.420851,0.872279,0.666609,0.86196,0.275137,0.672813,0.73267,0.862138,0.690532,0.996414,0.154647,0.273834,0.5674,0.585027,0.0852813,0.353238,0.389194,0.0812482,0.602573,0.596855,0.0179243,0.906281,0.363766,0.159706,0.335928,0.697055,0.307063,0.460639,0.836778,0.0987889,0.156841,0.733985,0.949212,0.382704,0.367561,0.145655,0.528954,0.976728,0.234989,0.239175,0.901398,0.559472,0.444293,0.524241,0.787808,0.501491,0.575635,0.231166,0.375583,0.262915,0.0200992,0.840732,0.92234,0.0284047,0.512041,0.766883,0.999232,0.848488,0.968647,0.127534,0.6966,0.623315,0.0469666,0.383397,0.803159,0.112589,0.421729,0.38804,0.030093,0.624927,0.486581,0.416389,0.107335,0.758452,0.783342,0.341637,0.619286,0.0860541,0.473453,0.290711,0.731654,0.0622147,0.909799,0.136079,0.93705,0.685315,0.912979,0.529826,0.869999,0.205696,0.892102,0.992907,0.0840837,0.121338,0.627386,0.689458,0.531578,0.597087,0.561062,0.597159,0.53919,0.887814,0.418403,0.0350944,0.866008,0.340998,0.475974,0.665628,0.574383,0.871319,0.347393,0.246704,0.160609,0.32621,0.195913,0.547844,0.267175,0.377571,0.0175641,0.802297,0.162025,0.791807,0.541049,0.111141,0.886037,0.571323,0.923304,0.070068,0.867769,0.937356,0.236034,0.512704,0.294794,0.535937,0.236199,0.300923,0.633115,0.348391,0.53488,0.352104,0.569462,0.767371,0.803656,0.820419,0.238934,0.13388,0.418916,0.426917,0.67604,0.690348,0.244806,0.730127,0.363858,0.502089,0.671115,0.126304,0.0691218,0.486326,0.629584,0.157475,0.434535,0.0598508,0.07594,0.398039,0.432773,0.439,0.221541,0.433549,0.814051,0.838938,0.678956,0.665223,0.224337,0.199006,0.714181,0.164631,0.0977632,0.279035,0.974683,0.334339,0.695688,0.193943,0.942818,0.656305,0.582193,0.156819,0.409163,0.0363759,0.259602,0.560058,0.900599,0.514261,0.293026,0.113071,0.957408,0.374093,0.294933,0.710738,0.879145,0.436638,0.0382653,0.499141,0.82104,0.0387318,0.847227,0.620165,0.99112,0.00628549,0.178254,0.625905,0.368097,0.876588,0.846437,0.005023,0.384501,0.866353,0.965085,0.656555,0.328855,0.246077,0.176681,0.82268,0.0731648,0.325458,0.444632,0.795302,0.159551,0.286498,0.75542,0.468593,0.444467,0.661282,0.81106,0.35956,0.770307,0.92674,0.973328,0.471043,0.686031,0.939076,0.0721468,0.501781,0.10456,0.954972,0.910631,0.961593,0.070945,0.338488,0.311822,0.774377,0.286347,0.680005,0.833098,0.442547,0.0255122,0.739814,0.673306,0.314965,0.356708,0.874468,0.830228,0.986198,0.869565,0.988793,0.469381,0.443085,0.231213,0.685479,0.850214,0.321906,0.613216,0.6142,0.0915637,0.805504,0.396283,0.673723,0.21989,0.00407422,0.0316178,0.561634,0.772472,0.465396,0.873582,0.427086,0.62773,0.0269372,0.96662,0.826423,0.164519,0.532619,0.73769,0.820691,0.64774,0.828291,0.423755,0.595487,0.458375,0.977562,0.288802,0.525333,0.350145,0.993817,0.289724,0.0472202,0.910256,0.919894,0.673363,0.767036,0.967476,0.662095,0.66176,0.360405,0.454513,0.474157,0.202038,0.318435,0.930592,0.197128,0.236011,0.81544,0.755461,0.146766,0.956667,0.0297715,0.0147907,0.801452,0.00947905,0.847682,0.447863,0.432162,0.0700722,0.909658,0.786935,0.861411,0.46163,0.0616227,0.212178,0.0703987,0.504987,0.341492,0.0190278,0.657651,0.365424,0.762827,0.777476,0.398176,0.926432,0.29156,0.997739,0.672638,0.233416,0.111607,0.84593,0.274556,0.963659,0.53982,0.734944,0.971532,0.804126,0.0633016,0.013763,0.0815409,0.896377,0.867416,0.0688441,0.0257858,0.00841796,0.348808,0.0558295,0.518377,0.993157,0.207868,0.300907,0.9479,0.0665768,0.950366,0.930272,0.326186,0.0271857,0.628702,0.181488,0.466512,0.760124,0.90549,0.39729,0.682412,0.334472,0.00724268,0.556379,0.913724,0.230307,0.197087,0.536242,0.368411,0.140216,0.422639,0.12751,0.487612,0.734846,0.436991,0.122941,0.29967,0.809579,0.880302,0.341753,0.590439,0.0118134,0.200552,0.38673,0.399967,0.995405,0.546389,0.531446,0.251622,0.682641,0.245261,0.417658,0.980874,0.585105,0.792304,0.156735,0.0935741,0.765362,0.890885,0.599855,0.352927,0.880916,0.78966,0.692303,0.663767,0.76985,0.952502,0.112371,0.224674,0.452478,0.0612431,0.836997,0.0996527,0.538166,0.514261,0.547179,0.234496,0.0215586,0.65081,0.269087,0.901608,0.54819,0.282533,0.713877,0.483321,0.431033,0.101388,0.645762,0.0234987,0.295932,0.769951,0.174671,0.0284316,0.783447,0.446656,0.613431,0.0136554,0.507293,0.883551,0.0789151,0.944756,0.104397,0.332215,0.648457,0.228728,0.172555,0.415833,0.342937,0.900557,0.924096,0.103638,0.0430874,0.0207418,0.2125,0.797614,0.801469,0.974932,0.570219,0.294626,0.837244,0.849489,0.0476936,0.562717,0.886121,0.697299,0.433877,0.473549,0.667063,0.506119,0.51926,0.46839,0.862762,0.642871,0.151281,0.457703,0.48674,0.930589,0.588251,0.595449,0.130261,0.524904,0.137703,0.578319,0.586727,0.321065,0.69154,0.266956,0.324156,0.848397,0.514693,0.919787,0.98629,0.209967,0.0843713,0.0978978,0.566528,0.603417,0.887108,0.471841,0.635599,0.0615877,|0.571087,0.071894,0.98788,0.184666,0.733957,0.201084,0.138908,0.503451,0.339348,0.323621,0.981768,0.504655,0.38555,0.0260946,0.358369,0.349323,0.814686,0.376153,0.83202,0.341392,0.474179,0.882711,0.933548,0.190479,0.580834,0.649967,0.661048,0.146831,0.440068,0.0816325,0.857147,0.464319,0.642878,0.421674,0.547253,0.905533,0.673709,0.0122972,0.29269,0.788273,0.416749,0.74735,0.179466,0.0630801,0.465638,0.651432,0.234396,0.0862415,0.346353,0.245077,0.801868,0.796988,0.906353,0.999613,0.176228,0.0812577,0.699222,0.384377,0.134412,0.521994,0.641745,0.610165,0.2422,0.979534,0.462099,0.628601,0.619892,0.256142,0.317097,0.406604,0.72011,0.338715,0.809816,0.405485,0.862242,0.146374,0.168434,0.486675,0.575567,0.497561,0.0315399,0.412138,0.458938,0.756849,0.4046,0.0269144,0.703638,0.677068,0.822251,0.413302,0.626559,0.427072,0.56934,0.893942,0.295412,0.349894,0.389311,0.119509,0.651049,0.678142,0.0610546,0.713904,0.578127,0.6039,0.757327,0.642749,0.246976,0.560469,0.408621,0.0877783,0.404974,0.00799787,0.966472,0.245467,0.612179,0.405529,0.38389,0.963169,0.672308,0.154163,0.21737,0.812041,0.241571,0.177371,0.336466,0.325558,0.486038,0.255534,0.190615,0.48444,0.991867,0.338988,0.893705,0.925718,0.534371,0.187988,0.554704,0.712984,0.546212,0.395816,0.293444,0.976808,0.421184,0.354156,0.287508,0.42751,0.432097,0.279439,0.380042,0.169106,0.544149,0.821077,0.200516,0.311102,0.694414,0.151828,0.323937,0.886828,0.248402,0.831597,0.456384,0.330587,0.652343,0.815119,0.288179,0.772452,0.234548,0.164531,0.745456,0.361011,0.833614,0.429731,0.185942,0.147133,0.0931306,0.237708,0.916806,0.429861,0.59621,0.095367,0.0511675,0.663671,0.110463,0.859362,0.133363,0.619573,0.0148998,0.298412,0.871533,0.727912,0.336326,0.77493,0.259728,0.77915,0.507987,0.105217,0.702775,0.236375,0.410828,0.723381,0.0573885,0.121257,0.386311,0.935029,0.718512,0.94011,0.95917,0.0860056,0.821684,0.552271,0.562816,0.561305,0.918115,0.928706,0.675281,0.606988,0.168758,0.698635,0.658715,0.770921,0.71279,0.191111,0.974257,0.395588,0.872019,0.882465,0.987766,0.383904,0.995576,0.0925372,0.181177,0.838207,0.345215,0.922333,0.508307,0.576112,0.69117,0.5531,0.376865,0.67506,0.327283,0.398292,0.0463873,0.689927,0.256022,0.313776,0.400191,0.825355,0.324603,0.803054,0.62797,0.0511497,0.439654,0.220429,0.146797,0.813228,0.078455,0.810643,0.486095,0.395109,0.291661,0.170308,0.858538,0.899295,0.601488,0.289761,0.182491,0.0820835,0.546953,0.475926,0.400803,0.997547,0.661056,0.290825,0.677587,0.733608,0.836176,0.932381,0.11319,0.867661,0.0936573,0.24173,0.789589,0.512022,0.603559,0.76183,0.0922676,0.126766,0.865959,0.38803,0.0792475,0.789156,0.908359,0.0356246,0.571449,0.920004,0.140754,0.29648,0.59084,0.602675,0.707133,0.763574,0.292622,0.662078,0.644803,0.503033,0.154505,0.755031,0.343663,0.611845,0.718986,0.925845,0.934582,0.609928,0.694192,0.976882,0.470475,0.722069,0.994574,0.393744,0.702796,0.227062,0.977495,0.883282,0.7755,0.836348,0.482414,0.628824,0.148951,0.557127,0.611321,0.37648,0.837711,0.670304,0.534221,0.195179,0.0291017,0.916582,0.429685,0.640699,0.755448,0.823972,0.36719,0.590785,0.382274,0.957701,0.813905,0.969683,0.562198,0.77113,0.690143,0.887355,0.635334,0.144196,0.514088,0.868163,0.595622,0.923089,0.946212,0.0729082,0.820851,0.505438,0.54347,0.872562,0.326523,0.0322216,0.115194,0.602419,0.803408,0.931989,0.445217,0.0710653,0.380067,0.0842212,0.473029,0.123712,0.957291,0.80822,0.880461,0.0313214,0.646087,0.506879,0.791659,0.527965,0.0204504,0.48586,0.797803,0.391842,0.122645,0.398489,0.998208,0.0851209,0.0390083,0.756682,0.817867,0.93812,0.291883,0.741927,0.203947,0.270643,0.755628,0.181013,0.27649,0.449719,0.0326355,0.442473,0.80263,0.5594,0.845859,0.478114,0.511199,0.313352,0.289067,0.695183,0.575301,0.489195,0.785098,0.347175,0.437373,0.805082,0.204604,0.0114323,0.973162,0.263625,0.110857,0.725199,0.495429,0.891704,0.0368242,0.571307,0.844132,0.683402,0.31206,0.208688,0.480675,0.945085,0.229033,0.467571,0.217578,0.564718,0.752223,0.945078,0.415355,0.169667,0.00113434,0.226667,0.133467,0.165307,0.795773,0.761361,0.657979,0.614186,0.0197699,0.773494,0.482209,0.458453,0.28425,0.397776,0.0388329,0.828093,0.191551,0.98579,0.924301,0.864936,0.331918,0.894436,0.556999,0.885026,0.740804,0.718364,0.83625,0.171457,0.13276,0.132976,0.48056,0.813907,0.540772,0.106629,0.886092,0.609421,0.584866,0.338967,0.309469,0.542633,0.17276,0.590353,0.76001,0.458747,0.0129623,0.95942,0.858096,0.177311,0.515255,0.807824,0.0884933,0.695801,0.43402,0.193784,0.811064,0.269002,0.879117,0.685837,0.46295,0.150561,0.182827,0.061776,0.488172,0.829471,0.673026,0.915957,0.463926,0.0603774,0.889771,0.326367,0.834484,0.144655,0.535286,0.811746,0.317773,0.997053,0.0125406,0.513087,0.134028,0.620221,0.240102,0.862708,0.323831,0.749325,0.321199,0.20607,0.455124,0.785208,0.651475,0.161858,0.491201,0.206978,0.397081,0.136076,0.007572,0.922244,0.0267783,0.321182,0.436963,0.0351975,0.387965,0.265509,0.175239,0.531974,0.642403,0.968524,0.409254,0.544609,0.287797,0.807642,0.686119,0.0722961,0.0864691,0.727701,0.304411,0.374508,0.600334,0.0256037,0.470839,0.973544,0.375058,0.0380557,0.131199,0.954366,0.782724,0.390319,0.873335,0.253826,0.408964,0.373537,0.941053,0.273924,0.670486,0.776148,0.509748,0.194186,0.891933,0.12932,0.421449,0.167618,0.971339,0.86696,0.978872,0.508645,0.646313,0.895796,0.945101,0.096476,0.46644,0.934381,0.609608,0.789999,0.863821,0.879682,0.258515,0.855883,0.945727,0.685794,0.776874,0.406523,0.102375,0.0435638,0.266152,0.720033,0.533494,0.0521425,0.749004,0.31298,0.0705716,0.376775,0.464584,0.493985,0.300629,0.970855,0.732013,0.562495,0.483308,0.698751,0.262105,0.18632,0.892717,0.644385,0.417647,0.98613,0.526991,0.281831,0.437626,0.778095,0.0631819,0.741193,0.721298,0.0351772,0.723946,0.0702727,0.209158,0.321302,0.489864,0.239679,0.344859,0.729735,0.536806,0.867891,0.67533,0.775755,0.827686,0.0926943,0.526706,0.793318,0.437288,0.0468698,0.742321,0.487177,0.78214,0.667282,0.494487,0.0797318,0.129634,0.89555,0.0219207,0.701661,0.986262,0.88724,0.66611,0.990029,0.404074,0.77348,0.533132,0.828259,0.100859,0.314211,0.146687,0.656753,0.164961,0.133169,0.457809,0.673445,0.911619,0.140011,0.0671153,0.711964,0.820085,0.614206,0.362011,0.749271,0.634117,0.987654,0.934376,0.47478,0.84425,0.0569091,0.978403,0.911991,0.96596,0.885074,0.531762,0.908379,0.693676,0.140448,0.84591,0.857952,0.0793125,0.886907,0.221693,0.711597,0.354866,0.738728,0.90487,0.831547,0.766426,0.922071,0.417708,0.403412,0.181925,0.556558,0.937195,0.0796376,0.207913,0.884299,0.233329,0.275277,0.305049,0.592934,0.842334,0.474056,0.456109,0.516701,0.799402,0.105707,0.10695,0.746762,0.5069,0.968779,0.477542,0.976313,0.0293591,0.382056,0.845854,0.889907,0.395559,0.951702,0.971989,0.45276,0.11795,0.970145,0.751493,0.323141,0.356583,0.702086,0.877402,0.617678,0.145256,0.616553,0.480638,0.757497,0.789355,0.748572,0.40495,0.242469,0.543237,0.360152,0.406947,0.753829,0.217199,0.380099,0.458465,0.0927137,0.87023,0.244501,0.0823001,0.663582,0.719132,0.133969,0.785899,0.923347,0.890848,0.273382,0.219172,0.524444,0.98096,0.841446,0.591544,0.464896,0.923436,0.434961,0.888001,0.0213159,0.520157,0.105179,0.352977,0.452741,0.591718,0.332504,0.713307,0.916738,0.40165,0.758222,0.0330008,0.140787,0.0519149,0.986529,0.558941,0.418272,0.318292,0.758531,0.0949049,0.641739,0.342423,0.968909,0.471517,0.378827,0.747827,0.130259,0.785319,0.853138,0.143475,0.382448,0.659971,0.95938,0.293226,0.281361,0.797829,0.318869,0.664267,0.771058,0.726031,0.357169,0.739336,0.797784,0.085358,0.330565,0.147731,0.766913,0.832022,0.651946,0.257264,0.315252,0.416711,0.351811,0.696276,0.455857,0.466179,0.395399,0.980042,0.683529,0.817998,0.615053,0.832141,0.729362,0.159954,0.218377,0.664799,0.251117,0.669805,0.848336,0.15284,0.213162,0.311882,0.5734,0.174346,0.492206,0.995016,0.279633,0.627254,0.150175,0.0491583,0.400093,0.000273585,0.275962,0.99903,0.942532,0.857316,0.550384,0.27405,0.0887401,0.815632,0.768513,0.223808,0.379364,0.800782,0.79895,0.711594,0.0171142,0.771332,0.590619,0.0595263,0.790727,0.588987,0.976144,0.110503,0.748318,0.474638,0.638325,0.274065,0.211755,0.584019,0.571585,0.986443,0.0529971,0.933246,0.670768,0.480403,0.232058,0.469949,0.616008,0.251388,0.438576,0.901404,0.409631,0.753744,0.819348,0.279469,0.197333,0.484592,0.626909,0.217908,0.00627935,0.38349,0.253446,0.0278991,0.218801,0.313851,0.107189,0.136152,0.168525,0.167969,0.87325,0.85181,0.287717,0.575725,0.409067,0.639584,0.255178,0.46221,0.101735,0.461016,0.892812,0.356873,0.860227,0.749855,0.415828,0.834231,0.166033,0.396969,0.963632,0.104352,0.28415,0.800563,0.985241,0.0314671,0.447875,0.935782,0.898135,0.590208,0.558404,0.587913,0.342468,0.486527,0.302281,0.283828,0.72014,0.0142422,0.532516,0.409537,0.363237,0.44509,0.56968,0.0942894,0.970181,0.185157,0.397465,0.866658,0.619628,0.315623,0.604126,0.383642,0.935637,0.371302,0.835125,0.636185,0.483008,0.214764,0.496251,0.192254,0.857055,0.933538,0.699303,0.941803,0.00882804,0.0846778,0.354912,0.0863719,0.88474,0.0739515,0.9011,0.127809,0.857526,|0.318278,0.223954,0.0624876,0.542759,0.918936,0.18535,0.858837,0.115377,0.397608,0.671719,0.910229,0.0733647,0.227722,0.471481,0.489861,0.985043,0.456928,0.989801,0.935376,0.328818,0.699661,0.23362,0.883569,0.148919,0.554113,0.869965,0.988634,0.648679,0.128691,0.205609,0.922816,0.76289,0.517709,0.65927,0.757547,0.990881,0.392092,0.381715,0.406886,0.998586,0.313122,0.972581,0.789018,0.173188,0.103176,0.272532,0.896637,0.222232,0.531692,0.213158,0.143634,0.00287491,0.5503,0.597619,0.105819,0.0151825,0.00721788,0.185835,0.558861,0.466552,0.471111,0.798013,0.538493,0.186743,0.658124,0.634992,0.182488,0.764879,0.620275,0.663178,0.221634,0.177649,0.122546,0.837769,0.0547829,0.456859,0.115252,0.275427,0.980773,0.904836,0.605186,0.426317,0.529542,0.619128,0.863908,0.142305,0.732485,0.871016,0.89704,0.178556,0.929129,0.481045,0.476935,0.554839,0.0800583,0.988637,0.211726,0.480965,0.563938,0.887383,0.666708,0.487601,0.612898,0.770947,0.657877,0.860692,0.891949,0.852964,0.0271421,0.715186,0.8137,0.777034,0.240913,0.589459,0.627391,0.717375,0.672938,0.901003,0.558746,0.578934,0.957704,0.81666,0.444638,0.399997,0.200462,0.861077,0.171958,0.767807,0.121584,0.351515,0.903347,0.0786996,0.258116,0.0283063,0.342414,0.772186,0.527025,0.399822,0.786664,0.334844,0.372347,0.260066,0.104946,0.93567,0.928255,0.404903,0.470294,0.83945,0.424717,0.0764253,0.112342,0.879012,0.595332,0.0805967,0.679849,0.182082,0.962304,0.395984,0.392934,0.0561196,0.0583963,0.129935,0.818959,0.549754,0.679537,0.387253,0.802436,0.609623,0.00294173,0.976068,0.565176,0.199845,0.577318,0.86082,0.742876,0.859375,0.103858,0.429084,0.684319,0.483699,0.144394,0.91955,0.75074,0.978489,0.291889,0.0164898,0.63323,0.788401,0.521463,0.641548,0.497634,0.587097,0.646387,0.731122,0.920396,0.422368,0.850308,0.796196,0.55129,0.789424,0.820172,0.114418,0.620839,0.395982,0.949797,0.808897,0.920978,0.184418,0.238526,0.64272,0.856405,0.0215977,0.0456833,0.965001,0.934035,0.992128,0.886061,0.170428,0.892476,0.917466,0.954759,0.126614,0.0998677,0.884507,0.371082,0.121589,0.993004,0.658493,0.811343,0.0338909,0.93108,0.424685,0.987078,0.932952,0.339953,0.922865,0.798726,0.649789,0.466169,0.516162,0.981395,0.915245,0.111596,0.64386,0.300278,0.615217,0.933033,0.487849,0.585066,0.389505,0.93477,0.582126,0.314028,0.11786,0.940778,0.503138,0.357169,0.9336,0.0911704,0.24902,0.532462,0.264691,0.317767,0.100732,0.452385,0.546731,0.799467,0.380972,0.151147,0.183432,0.244137,0.467353,0.946264,0.668525,0.0705769,0.27439,0.913358,0.326396,0.666209,0.634303,0.452805,0.737185,0.394126,0.540538,0.706821,0.25356,0.945187,0.10282,0.211551,0.293095,0.209343,0.335273,0.645868,0.528332,0.576067,0.916555,0.293034,0.965697,0.895786,0.0514434,0.217506,0.0247667,0.00155562,0.210659,0.583454,0.972892,0.63201,0.181816,0.558186,0.747653,0.0325177,0.345891,0.71056,0.208692,0.898187,0.608066,0.0235924,0.886292,0.933666,0.486685,0.251974,0.29756,0.35235,0.804353,0.609311,0.181099,0.383461,0.900239,0.816812,0.821197,0.446809,0.638922,0.217638,0.995142,0.156107,0.823056,0.013625,0.379936,0.229892,0.943174,0.92753,0.9298,0.561952,0.31899,0.978295,0.370652,0.493791,0.0716454,0.0745592,0.19647,0.540096,0.0862622,0.782489,0.039038,0.642262,0.506274,0.586651,0.319917,0.146118,0.909368,0.512034,0.222214,0.686289,0.203336,0.983919,0.455387,0.985196,0.74662,0.287242,0.406977,0.0488052,0.417462,0.935918,0.148236,0.25473,0.286721,0.143353,0.701491,0.476986,0.0587959,0.357035,0.770113,0.963209,0.614491,0.575472,0.909587,0.165551,0.220318,0.760044,0.846449,0.785242,0.44027,0.731677,0.0390276,0.84177,0.483835,0.878118,0.097088,0.472134,0.498338,0.602522,0.399517,0.828501,0.578291,0.41177,0.883446,0.141523,0.444911,0.0848489,0.815723,0.727782,0.30131,0.579975,0.728678,0.474491,0.316615,0.921577,0.318751,0.607366,0.683503,0.299192,0.310819,0.822682,0.447668,0.92114,0.896751,0.14699,0.842123,0.159237,0.679506,0.512336,0.596745,0.0913393,0.274484,0.156883,0.180206,0.823845,0.174705,0.89571,0.867556,0.930043,0.0963563,0.940891,0.96074,0.462048,0.317865,0.122509,0.118353,0.581886,0.156908,0.907345,0.0665371,0.412778,0.179287,0.143172,0.722233,0.46449,0.457839,0.989194,0.35727,0.742476,0.594396,0.549764,0.983552,0.768154,0.854739,0.640547,0.593426,0.899463,0.258019,0.219788,0.53913,0.582468,0.195029,0.0221669,0.733915,0.883745,0.963175,0.944389,0.481189,0.927807,0.824183,0.733948,0.938843,0.124748,0.885971,0.637235,0.0908515,0.427488,0.843519,0.618599,0.640493,0.793642,0.409451,0.913665,0.0888559,0.422908,0.521743,0.769358,0.401294,0.708946,0.703666,0.710408,0.811893,0.264089,0.97689,0.993653,0.843321,0.593101,0.572436,0.645137,0.381775,0.381323,0.917718,0.515868,0.766064,0.805271,0.745539,0.268115,0.739412,0.409845,0.791671,0.276977,0.784414,0.945508,0.0592681,0.83135,0.709421,0.957225,0.863744,0.238467,0.314835,0.72406,0.895498,0.815679,0.954302,0.545071,0.970992,0.604284,0.356513,0.042378,0.757499,0.0729955,0.93091,0.863847,0.315911,0.0680596,0.0103251,0.64239,0.721807,0.598963,0.598274,0.49472,0.732144,0.582597,0.572492,0.0846438,0.443693,0.24109,0.426658,0.198651,0.537669,0.781002,0.342561,0.00708663,0.978259,0.325743,0.915905,0.368783,0.258299,0.159423,0.581995,0.989774,0.296724,0.937922,0.681757,0.571035,0.189559,0.16265,0.790885,0.11671,0.371438,0.960928,0.954394,0.719563,0.0846363,0.26524,0.856667,0.0873736,0.514676,0.617797,0.631526,0.107316,0.709903,0.496449,0.840187,0.156685,0.765709,0.728665,0.00551212,0.137929,0.605692,0.687293,0.373031,0.0703797,0.831237,0.803611,0.502629,0.681124,0.0487494,0.133479,0.887985,0.79085,0.129832,0.425477,0.160999,0.0087238,0.8133,0.101592,0.291932,0.411862,0.345266,0.152033,0.314776,0.114368,0.0989096,0.940733,0.185445,0.384747,0.574517,0.0530505,0.553066,0.0853999,0.124404,0.572869,0.44124,0.661529,0.253319,0.984842,0.985042,0.471864,0.861857,0.75207,0.100853,0.207334,0.808324,0.181826,0.747088,0.535539,0.0930099,0.865129,0.940426,0.25846,0.277196,0.861979,0.835701,0.88358,0.743176,0.630839,0.889323,0.536204,0.866923,0.703969,0.0415577,0.868822,0.0738186,0.274218,0.0706155,0.86816,0.161113,0.346994,0.542089,0.883381,0.687579,0.140748,0.155145,0.803532,0.378682,0.658565,0.767711,0.37148,0.26871,0.164376,0.528068,0.516105,0.778224,0.639211,0.73685,0.224738,0.934044,0.161353,0.749408,0.545933,0.620576,0.144259,0.324367,0.190415,0.315449,0.305911,0.328267,0.706783,0.814999,0.594623,0.732418,0.998563,0.380845,0.661748,0.0716332,0.0362833,0.604928,0.57089,0.178623,0.441523,0.641149,0.966936,0.349863,0.724735,0.330118,0.570548,0.77825,0.625675,0.587192,0.376597,0.479191,0.647103,0.253155,0.182952,0.448251,0.264225,0.466531,0.837318,0.871727,0.809003,0.654732,0.937382,0.618439,0.680997,0.233223,0.0758268,0.618909,0.457619,0.139836,0.948734,0.0640054,0.0396826,0.958695,0.952756,0.670219,0.560521,0.917645,0.805739,0.531552,0.286586,0.650194,0.723471,0.29131,0.806604,0.0911414,0.954869,0.985498,0.341585,0.148377,0.189993,0.98729,0.54344,0.931885,0.686817,0.279949,0.218796,0.725106,0.292456,0.996661,0.778174,0.12468,0.900377,0.663388,0.567864,0.12104,0.938625,0.518949,0.262297,0.135335,0.131185,0.0687532,0.844816,0.618183,0.947748,0.489412,0.243626,0.541789,0.595977,0.976301,0.379522,0.64576,0.58367,0.532224,0.690572,0.25208,0.699923,0.979868,0.708469,0.956521,0.590796,0.299029,0.895799,0.666894,0.840191,0.228627,0.28739,0.398512,0.500135,0.910403,0.491138,0.202628,0.0308573,0.59681,0.505269,0.685329,0.656666,0.587862,0.207544,0.561622,0.3604,0.00722426,0.729868,0.929299,0.692033,0.751212,0.679203,0.283147,0.0564901,0.896636,0.254431,0.562713,0.293375,0.0415037,0.0425187,0.523081,0.230561,0.221147,0.73694,0.943353,0.369785,0.716862,0.848859,0.668989,0.131617,0.550449,0.109928,0.769417,0.0795783,0.357003,0.212929,0.872858,0.818758,0.525886,0.962133,0.0102147,0.327653,0.92502,0.65439,0.585261,0.613417,0.137397,0.798697,0.72116,0.796326,0.785058,0.275339,0.957918,0.786433,0.356152,0.235789,0.453025,0.641324,0.666136,0.366917,0.462241,0.0723822,0.144827,0.475676,0.0633641,0.137778,0.231292,0.753816,0.87311,0.611424,0.742631,0.161881,0.133644,0.924829,0.76683,0.699992,0.677396,0.885904,0.406513,0.0657762,0.946151,0.7959,0.0500662,0.240215,0.633914,0.251695,0.523019,0.45273,0.229924,0.172896,0.0397916,0.934936,0.0822901,0.561158,0.831267,0.222879,0.207648,0.991553,0.922522,0.326114,0.932764,0.579247,0.66744,0.431153,0.60138,0.0354765,0.880991,0.285892,0.686343,0.192186,0.99585,0.783799,0.927657,0.910426,0.70315,0.172472,0.968877,0.873537,0.56473,0.283712,0.859627,0.746404,0.536728,0.384033,0.328423,0.687797,0.168586,0.699683,0.809389,0.0500651,0.0213898,0.34342,0.0622597,0.55422,0.183812,0.068536,0.692279,0.802894,0.71809,0.706532,0.535302,0.627245,0.813384,0.596057,0.505707,0.602236,0.5745,0.505397,0.258036,0.602681,0.67243,0.434263,0.924253,0.869064,0.526233,0.438038,0.900932,0.323195,0.784748,0.0205677,0.596499,0.347774,0.744848,0.501407,0.419539,0.383084,0.831035,0.182799,0.545935,0.0231407,0.764669,0.611562,0.972911,0.43375,0.968527,0.366185,0.390553,0.929077,0.98485,0.356052,0.575898,0.894012,0.524171,|0.130328,0.334206,0.0627141,0.0741823,0.0146814,0.915547,0.0517049,0.429689,0.339121,0.454872,0.0749473,0.191007,0.534018,0.0865295,0.0712547,0.0130442,0.210001,0.344174,0.174124,0.365415,0.531793,0.694289,0.915529,0.242073,0.288968,0.094067,0.076751,0.915303,0.842472,0.384046,0.840219,0.468311,0.632742,0.71724,0.547845,0.51586,0.720963,0.458896,0.766357,0.901608,0.941996,0.0172992,0.322159,0.500906,0.074372,0.820996,0.773106,0.991566,0.570204,0.551851,0.369845,0.152006,0.896586,0.872337,0.533313,0.855307,0.107268,0.775494,0.752485,0.867366,0.459395,0.686223,0.0303122,0.75657,0.669093,0.326084,0.622261,0.42874,0.199407,0.116549,0.365482,0.169874,0.338889,0.829355,0.486562,0.339994,0.222968,0.802413,0.92998,0.974511,0.73247,0.180846,0.204732,0.153632,0.537199,0.49851,0.258915,0.468526,0.201593,0.778842,0.146921,0.150972,0.337769,0.208826,0.151359,0.455623,0.175335,0.204995,0.931598,0.809831,0.463748,0.467208,0.705242,0.0721155,0.0719491,0.547121,0.620646,0.730299,0.808162,0.864867,0.892419,0.787251,0.473784,0.742556,0.92969,0.916589,0.453778,0.163104,0.947909,0.710114,0.365358,0.778613,0.905075,0.35872,0.488264,0.804462,0.0837919,0.501679,0.306561,0.323839,0.972304,0.328348,0.801594,0.995305,0.38941,0.156409,0.617409,0.430653,0.628037,0.202625,0.836035,0.104318,0.614222,0.815915,0.302231,0.174263,0.321618,0.000848114,0.747872,0.0916561,0.642939,0.058415,0.315652,0.530867,0.036317,0.194693,0.778901,0.121899,0.604706,0.935319,0.879934,0.83143,0.532292,0.142577,0.852483,0.19465,0.586363,0.857196,0.596275,0.249733,0.654987,0.0322375,0.753799,0.820657,0.494782,0.252522,0.377205,0.0436306,0.414562,0.821131,0.471936,0.642284,0.910422,0.435345,0.740938,0.58531,0.842932,0.932633,0.319205,0.0916365,0.560379,0.284187,0.893616,0.682389,0.443458,0.849017,0.496914,0.962409,0.751209,0.244542,0.639385,0.212901,0.0854198,0.882533,0.955059,0.633394,0.112987,0.481581,0.877418,0.453478,0.404717,0.103957,0.88939,0.262331,0.0702122,0.712488,0.740297,0.960022,0.400731,0.952936,0.830672,0.358044,0.985284,0.417697,0.813572,0.360783,0.776202,0.946433,0.00436115,0.299936,0.810492,0.372294,0.528915,0.879915,0.434882,0.212052,0.513123,0.152761,0.47458,0.790602,0.595319,0.721333,0.242947,0.872458,0.395398,0.0217571,0.0261714,0.0482329,0.377711,0.00495297,0.669278,0.00585997,0.264391,0.786764,0.2984,0.916132,0.247451,0.731106,0.694421,0.201436,0.542645,0.419659,0.676362,0.640275,0.604424,0.533734,0.89358,0.890296,0.561653,0.559831,0.749023,0.384042,0.865359,0.134266,0.491607,0.252563,0.729825,0.457316,0.163577,0.756791,0.0638299,0.215563,0.64621,0.817116,0.959897,0.0172234,0.314805,0.247655,0.277368,0.566375,0.651881,0.447875,0.977674,0.554573,0.0761826,0.706033,0.680011,0.441287,0.00788653,0.138685,0.542718,0.278429,0.162448,0.0480423,0.777319,0.821351,0.411206,0.651735,0.955848,0.415222,0.894802,0.321291,0.921568,0.357227,0.57849,0.587991,0.663014,0.241548,0.57511,0.950895,0.702705,0.908959,0.204259,0.488951,0.0904521,0.187417,0.331123,0.557188,0.310317,0.499908,0.06637,0.294388,0.0417638,0.956111,0.766753,0.84303,0.216933,0.738729,0.788117,0.156292,0.735305,0.236529,0.775453,0.98281,0.589848,0.276743,0.679923,0.923304,0.535711,0.0684469,0.470738,0.66414,0.359773,0.829876,0.515148,0.671367,0.994722,0.541883,0.725772,0.645937,0.134956,0.720371,0.486931,0.652592,0.106902,0.95686,0.337412,0.0297127,0.865386,0.831794,0.850215,0.487291,0.0541367,0.611598,0.917647,0.307047,0.717232,0.368125,0.408789,0.777481,0.642603,0.862415,0.677876,0.980968,0.956212,0.87294,0.677852,0.888305,0.0519628,0.32341,0.168356,0.99414,0.809198,0.61639,0.155246,0.0838934,0.292176,0.507549,0.642723,0.579584,0.453396,0.347959,0.479151,0.0959051,0.0164515,0.458266,0.665041,0.0814348,0.803699,0.417939,0.584612,0.00782466,0.076396,0.818605,0.220809,0.797219,0.296629,0.967023,0.518805,0.674988,0.916757,0.0310977,0.654543,0.360184,0.826375,0.176156,0.0413789,0.585746,0.46775,0.411616,0.89634,0.258425,0.963179,0.111045,0.62377,0.214342,0.0857747,0.552201,0.768869,0.809885,0.219864,0.0189515,0.642246,0.114364,0.378225,0.525235,0.488071,0.73853,0.0276023,0.478386,0.325271,0.258637,0.31064,0.886874,0.162742,0.0909905,0.0308512,0.612487,0.864084,0.5795,0.279041,0.812847,0.399918,0.826555,0.576902,0.185765,0.386032,0.609874,0.179148,0.526759,0.713589,0.477737,0.238425,0.953447,0.407915,0.941927,0.910164,0.207855,0.703816,0.183137,0.935045,0.493499,0.705353,0.644596,0.794733,0.814519,0.176019,0.994096,0.678627,0.249374,0.676338,0.103033,0.978642,0.606576,0.506124,0.690413,0.473389,0.0473766,0.811035,0.637797,0.106925,0.163487,0.413031,0.321791,0.453265,0.467643,0.582716,0.503836,0.441364,0.375251,0.519254,0.303379,0.989416,0.455998,0.444475,0.801382,0.860463,0.248421,0.615317,0.714209,0.805483,0.313228,0.433245,0.445517,0.187552,0.0268058,0.770882,0.960124,0.174679,0.316426,0.854779,0.274758,0.0750656,0.509077,0.533904,0.55869,0.536078,0.72807,0.33512,0.644706,0.757349,0.0829936,0.147272,0.520139,0.414285,0.930597,0.664629,0.620493,0.279007,0.261599,0.0740578,0.944945,0.363427,0.460085,0.34794,0.212842,0.877464,0.985242,0.746484,0.210554,0.983229,0.360671,0.471105,0.229391,0.912426,0.716044,0.818967,0.796317,0.953278,0.102143,0.909478,0.402461,0.154406,0.749677,0.220461,0.64675,0.524791,0.648727,0.723751,0.176211,0.943921,0.174112,0.840319,0.766706,0.840878,0.210754,0.0444072,0.910607,0.783885,0.0816622,0.621671,0.445985,0.59921,0.404322,0.475476,0.724879,0.0368925,0.454771,0.435912,0.434563,0.204864,0.959177,0.250995,0.479085,0.147795,0.374011,0.0605484,0.367022,0.54052,0.0870685,0.71941,0.141548,0.305036,0.888093,0.559725,0.743802,0.0273369,0.636578,0.762158,0.577913,0.56075,0.446404,0.136915,0.418726,0.27054,0.124541,0.736864,0.968763,0.742015,0.149268,0.348711,0.730376,0.533583,0.280491,0.921644,0.447718,0.359912,0.291909,0.39303,0.564032,0.609187,0.557599,0.0601511,0.471778,0.577913,0.613075,0.912765,0.263377,0.0862546,0.179582,0.724657,0.315735,0.431626,0.566936,0.0435596,0.173628,0.305323,0.864179,0.625902,0.770169,0.820634,0.718977,0.185271,0.0274277,0.525817,0.988641,0.00383031,0.847538,0.465788,0.890279,0.200682,0.387172,0.596314,0.955547,0.40102,0.873968,0.660687,0.994121,0.249961,0.476627,0.412287,0.0483456,0.12965,0.311918,0.897645,0.651274,0.133979,0.406578,0.0658922,0.738153,0.321615,0.957173,0.720179,0.283715,0.117959,0.0691557,0.0496464,0.0158846,0.784034,0.512389,0.208436,0.261913,0.662961,0.626062,0.0322285,0.58577,0.36841,0.847022,0.394727,0.82518,0.373095,0.269146,0.811333,0.428903,0.406106,0.292129,0.951554,0.950218,0.678721,0.740509,0.938833,0.826411,0.221343,0.336807,0.891507,0.819417,0.933363,0.339551,0.0258604,0.844511,0.220914,0.82502,0.665196,0.555352,0.0229186,0.156393,0.86894,0.981873,0.028653,0.130739,0.40386,0.936608,0.283083,0.694112,0.758987,0.324418,0.841669,0.201323,0.410138,0.614419,0.508334,0.977527,0.005229,0.452465,0.404868,0.504319,0.578957,0.312342,0.231265,0.383336,0.856628,0.615109,0.242605,0.548136,0.11543,0.130149,0.865318,0.839085,0.303424,0.934464,0.570474,0.897986,0.561681,0.748803,0.859029,0.0944269,0.0681186,0.679514,0.394527,0.133073,0.10287,0.215591,0.189447,0.995436,0.629532,0.527931,0.598931,0.529398,0.475299,0.490222,0.516727,0.973808,0.765206,0.439367,0.479828,0.508652,0.169811,0.121602,0.982046,0.515539,0.366093,0.859072,0.962501,0.912049,0.907439,0.965367,0.258332,0.0533162,0.792461,0.819549,0.798137,0.474956,0.0528713,0.22714,0.462222,0.146693,0.819121,0.642699,0.554082,0.128873,0.205883,0.645415,0.41179,0.615836,0.00382024,0.064373,0.592127,0.713565,0.204481,0.991567,0.593957,0.848922,0.35239,0.585928,0.215981,0.926533,0.585182,0.739721,0.0402077,0.700862,0.535411,0.766789,0.388736,0.24783,0.946444,0.472015,0.487572,0.569541,0.00813997,0.698557,0.818862,0.931367,0.172158,0.177355,0.909735,0.509067,0.219746,0.260818,0.24378,0.793106,0.845036,0.601271,0.608331,0.89046,0.267982,0.703455,0.457125,0.222909,0.743636,0.891834,0.0694171,0.512851,0.657215,0.795567,0.212475,0.962864,0.140697,0.198294,0.0818843,0.999922,0.414968,0.0351721,0.852206,0.682617,0.771692,0.457393,0.929902,0.895769,0.9518,0.46855,0.888519,0.563203,0.251622,0.680286,0.0783253,0.30416,0.0467418,0.54037,0.362055,0.656829,0.237582,0.363906,0.99531,0.17918,0.124364,0.827069,0.655247,0.324139,0.100005,0.299331,0.667471,0.731223,0.181185,0.167044,0.38876,0.893579,0.929367,0.813819,0.220208,0.0186472,0.885648,0.880054,0.395777,0.815609,0.247415,0.188118,0.37719,0.372414,0.397094,0.843388,0.893192,0.59898,0.632013,0.320613,0.92037,0.447253,0.303733,0.955544,0.416195,0.241543,0.355434,0.930211,0.129825,0.144635,0.70082,0.926876,0.0905576,0.147393,0.604987,0.912271,0.309592,0.445166,0.755878,0.503524,0.478394,0.79778,0.0827521,0.759381,0.107187,0.547454,0.710521,0.517012,0.883996,0.581242,0.72079,0.732611,0.609874,0.874493,0.680249,0.5608,0.101083,0.670862,0.772184,0.894798,0.472127,0.8487,0.497811,0.453473,0.20384,0.738499,0.0741999,0.723543,0.962615,0.956511,0.875225,0.583723,0.635301,0.82004,0.597671,0.842646,0.686888,0.424375,0.494567,0.927055,0.642001,0.437236,0.276427,0.0940264,0.339765,0.457705,|0.794309,0.57144,0.617764,0.717916,0.0900252,0.753473,0.00459296,0.0936133,0.78345,0.286784,0.71252,0.702265,0.521079,0.35876,0.78272,0.632562,0.551046,0.140186,0.230018,0.665121,0.76143,0.894604,0.500293,0.928829,0.0844937,0.863645,0.956725,0.402433,0.0725054,0.485466,0.0918756,0.0135119,0.858972,0.707159,0.555133,0.0500543,0.775617,0.838551,0.0456929,0.32065,0.900074,0.653521,0.614445,0.653156,0.707591,0.196559,0.758483,0.290007,0.439189,0.205516,0.162807,0.845341,0.995723,0.148561,0.0558715,0.633516,0.693718,0.454032,0.375197,0.0198359,0.844373,0.878201,0.487601,0.93033,0.197397,0.836483,0.0810273,0.160297,0.571017,0.607438,0.348693,0.191706,0.649433,0.449132,0.0791253,0.291258,0.992851,0.292869,0.0441951,0.683477,0.332297,0.698012,0.295648,0.310757,0.0232839,0.0549232,0.38603,0.282815,0.00927079,0.291708,0.928443,0.2213,0.581243,0.378551,0.023408,0.988653,0.184126,0.317481,0.150198,0.656689,0.65677,0.198141,0.861365,0.563402,0.603799,0.56244,0.0728767,0.245632,0.0178618,0.659776,0.21385,0.208549,0.987434,0.939278,0.194613,0.336267,0.487978,0.613594,0.349071,0.247463,0.969686,0.114308,0.848666,0.935735,0.555467,0.915359,0.984721,0.249121,0.989192,0.135778,0.253314,0.892565,0.870178,0.954415,0.768902,0.891034,0.320485,0.555119,0.908882,0.638435,0.649026,0.595779,0.781199,0.610839,0.203397,0.279502,0.740983,0.126359,0.412663,0.185292,0.787441,0.0672201,0.690662,0.671514,0.167622,0.157508,0.996392,0.286213,0.238944,0.503721,0.964632,0.566389,0.165649,0.87649,0.0232914,0.309725,0.998227,0.121016,0.664294,0.38343,0.127712,0.849622,0.198671,0.932508,0.905017,0.0334558,0.296119,0.532027,0.631713,0.255023,0.40706,0.373107,0.715234,0.910419,0.799955,0.607007,0.815845,0.679777,0.777372,0.713561,0.328914,0.385994,0.219828,0.148509,0.152475,0.740721,0.660849,0.265625,0.591156,0.619752,0.16202,0.55727,0.599638,0.255533,0.777499,0.676033,0.33795,0.0348982,0.688064,0.426453,0.509822,0.571275,0.645123,0.961514,0.662607,0.426538,0.0323997,0.292513,0.451731,0.554271,0.654356,0.24276,0.820557,0.644681,0.323938,0.0400295,0.632717,0.737068,0.28403,0.69934,0.93656,0.476875,0.882452,0.0391709,0.256555,0.0537662,0.473031,0.991912,0.362775,0.469918,0.169326,0.363676,0.853823,0.957721,0.413007,0.451769,0.82673,0.590131,0.945217,0.290062,0.985912,0.221128,0.301558,0.0547091,0.0419017,0.710949,0.0241173,0.58143,0.339137,0.259699,0.873026,0.348546,0.711379,0.672106,0.841199,0.592924,0.75329,0.664667,0.00192785,0.414575,0.0261429,0.194568,0.961808,0.803973,0.49053,0.245548,0.849259,0.629719,0.938969,0.415041,0.948847,0.0417382,0.267706,0.509349,0.744932,0.450974,0.551232,0.442674,0.995077,0.425776,0.0087713,0.357321,0.350223,0.908194,0.0156384,0.415895,0.291731,0.798359,0.91594,0.551253,0.527837,0.0338562,0.143256,0.925577,0.175257,0.790865,0.60231,0.0360861,0.721452,0.00283247,0.281808,0.998504,0.0558742,0.897816,0.320509,0.085507,0.39337,0.669363,0.560993,0.602478,0.857839,0.393677,0.69306,0.367709,0.424675,0.623041,0.641656,0.412246,0.227083,0.556895,0.393877,0.472006,0.819182,0.877472,0.107901,0.572332,0.946154,0.69828,0.604065,0.746433,0.296246,0.00984561,0.275105,0.685082,0.224154,0.0490977,0.293588,0.050193,0.713684,0.798807,0.418609,0.301663,0.744639,0.00375909,0.63059,0.269923,0.242453,0.603208,0.132721,0.668956,0.622296,0.245911,0.0750604,0.450493,0.516947,0.390321,0.614691,0.732961,0.973597,0.666859,0.974238,0.810182,0.483764,0.560215,0.354304,0.352941,0.167957,0.258099,0.64151,0.226701,0.361566,0.172198,0.376457,0.650607,0.432429,0.712161,0.222282,0.879428,0.475644,0.123942,0.737069,0.171147,0.59939,0.991496,0.193274,0.43224,0.284579,0.584912,0.733589,0.923256,0.15236,0.240489,0.715076,0.0633205,0.055078,0.39012,0.104187,0.11148,0.678388,0.294049,0.775425,0.585182,0.430988,0.96804,0.555647,0.841468,0.738342,0.016374,0.186167,0.829429,0.746008,0.462295,0.821197,0.526054,0.449542,0.778866,0.643964,0.5994,0.922439,0.221082,0.441246,0.31869,0.744702,0.313957,0.150039,0.138215,0.901174,0.967877,0.36374,0.397123,0.0552969,0.337919,0.601878,0.227439,0.699995,0.648569,0.53763,0.717235,0.936464,0.213672,0.370612,0.170386,0.0103321,0.107487,0.898655,0.326867,0.0768762,0.313121,0.782175,0.0193732,0.540494,0.777462,0.365289,0.428554,0.902045,0.160173,0.432864,0.2647,0.484423,0.134554,0.554463,0.578822,0.542596,0.559004,0.960324,0.484446,0.992358,0.184428,0.506924,0.766315,0.976587,0.885988,0.57922,0.559582,0.734216,0.0821874,0.554795,0.633895,0.617758,0.71161,0.664122,0.898976,0.607994,0.856082,0.517627,0.770601,0.815619,0.898235,0.192174,0.516789,0.379348,0.597575,0.719928,0.844973,0.0760985,0.956782,0.534127,0.101106,0.214474,0.872095,0.677827,0.824599,0.0729699,0.28563,0.157214,0.351724,0.989842,0.137081,0.109467,0.946712,0.717095,0.249299,0.766877,0.681989,0.00978017,0.711851,0.828627,0.608832,0.427962,0.00268215,0.555964,0.985499,0.585634,0.120964,0.117497,0.524612,0.998335,0.0103045,0.586526,0.768066,0.741386,0.298439,0.798692,0.901353,0.891366,0.893353,0.0283665,0.758614,0.731609,0.0973583,0.79283,0.363164,0.913649,0.778614,0.636488,0.76997,0.53231,0.671259,0.565296,0.171038,0.464915,0.351504,0.761677,0.473758,0.496669,0.17309,0.182462,0.564698,0.290149,0.632006,0.469256,0.0781223,0.376019,0.315802,0.804747,0.314855,0.725978,0.203643,0.766005,0.801105,0.619242,0.935327,0.476865,0.571994,0.422256,0.636088,0.333191,0.564028,0.716222,0.170496,0.793281,0.308719,0.0259562,0.558609,0.524679,0.694883,0.449834,0.977363,0.411664,0.171966,0.364246,0.481193,0.647913,0.193384,0.690451,0.274521,0.844544,0.568685,0.97747,0.861908,0.413365,0.302715,0.351066,0.943596,0.379924,0.0919738,0.787758,0.387407,0.787547,0.575172,0.387853,0.109913,0.237572,0.72072,0.723647,0.711575,0.747935,0.0119015,0.461176,0.147953,0.940216,0.417056,0.146615,0.254632,0.554975,0.715888,0.990535,0.500663,0.316997,0.718564,0.185989,0.108409,0.666725,0.184348,0.645543,0.857392,0.542963,0.183905,0.0246084,0.0873114,0.711426,0.743784,0.197944,0.109022,0.201231,0.908535,0.533535,0.10797,0.266166,0.794608,0.202634,0.0526615,0.7925,0.837214,0.908651,0.644536,0.331475,0.417433,0.787848,0.0628037,0.179444,0.687625,0.369632,0.384455,0.293575,0.746896,0.910035,0.0936058,0.418067,0.119084,0.895706,0.219546,0.377923,0.580816,0.260355,0.611841,0.865946,0.997401,0.70388,0.45439,0.256226,0.0613988,0.439401,0.452312,0.435994,0.868934,0.966114,0.257999,0.997051,0.832097,0.942801,0.761397,0.461383,0.613444,0.0468267,0.713702,0.333605,0.506347,0.361284,0.367373,0.722827,0.901167,0.18334,0.930597,0.0210747,0.254505,0.930676,0.652005,0.539979,0.0265098,0.508354,0.269688,0.88825,0.756874,0.510676,0.317126,0.635233,0.505009,0.73392,0.019317,0.390937,0.804946,0.530959,0.880888,0.71566,0.989069,0.442138,0.190505,0.531784,0.628208,0.426953,0.894141,0.561308,0.164703,0.685834,0.584095,0.0613967,0.105489,0.721528,0.418793,0.916441,0.529691,0.0970408,0.381472,0.884377,0.616791,0.518663,0.606664,0.956233,0.588632,0.797502,0.53625,0.134903,0.00367743,0.242651,0.193652,0.43792,0.251284,0.37349,0.37426,0.927146,0.424686,0.89284,0.73343,0.557621,0.440078,0.191455,0.478466,0.242685,0.549769,0.945786,0.253843,0.957646,0.655436,0.384252,0.117898,0.0535609,0.300348,0.606716,0.754152,0.0070926,0.441663,0.0518456,0.128522,0.677386,0.572958,0.325509,0.556003,0.951439,0.133052,0.602462,0.858766,0.0534971,0.62953,0.125737,0.403911,0.39908,0.395727,0.848826,0.947255,0.841263,0.713436,0.980738,0.162619,0.212502,0.0620139,0.0974716,0.0320688,0.315069,0.904408,0.521811,0.0362324,0.534968,0.0217263,0.0232686,0.174994,0.012857,0.530552,0.998526,0.70481,0.559685,0.191851,0.342746,0.523669,0.655921,0.37769,0.62743,0.540879,0.340799,0.0384535,0.308532,0.592733,0.472536,0.353493,0.789124,0.700804,0.256971,0.745938,0.317257,0.115169,0.820472,0.81889,0.0414203,0.768607,0.952703,0.020298,0.674535,0.611763,0.995988,0.557158,0.268073,0.60239,0.238952,0.734113,0.483507,0.312484,0.378768,0.848549,0.562483,0.949885,0.648088,0.0906956,0.917093,0.406212,0.714871,0.986677,0.713844,0.689625,0.558034,0.621787,0.665369,0.135156,0.429603,0.134104,0.519321,0.97112,0.62346,0.577353,0.967699,0.0686191,0.0248913,0.955363,0.931908,0.268155,0.0391376,0.255527,0.684705,0.734304,0.156273,0.711109,0.184085,0.392132,0.951626,0.365886,0.588135,0.272147,0.0129225,0.639639,0.238905,0.332475,0.590784,0.394066,0.286881,0.140023,0.989125,0.560256,0.975211,0.351474,0.158844,0.150657,0.379213,0.729595,0.6719,0.386472,0.239915,0.254334,0.453714,0.240976,0.840475,0.251019,0.7803,0.909967,0.714175,0.791893,0.0629001,0.813082,0.458217,0.856101,0.573345,0.85831,0.432976,0.621683,0.0710352,0.179394,0.466311,0.83472,0.279502,0.933045,0.408556,0.189796,0.0876674,0.327997,0.404452,0.0357302,0.377798,0.881529,0.752083,0.533587,0.27202,0.770202,0.804468,0.139597,0.285304,0.144657,0.755161,0.326289,0.704575,0.506802,0.97258,0.572246,0.509491,0.210024,0.95891,0.675145,0.257113,0.96075,0.564763,0.989946,0.942136,0.852005,0.944172,0.616607,0.929816,0.808089,0.650062,0.482962,0.146936,0.85587,0.440625,0.881396,0.692708,0.938059,0.634362,0.658853,0.0426564,0.85991,0.962881,0.822486,0.110585,0.294498,|0.970491,0.908577,0.828179,0.344389,0.917171,0.312305,0.104411,0.829021,0.00410646,0.381293,0.199428,0.520472,0.573923,0.445964,0.298204,0.591515,0.99259,0.623349,0.0395089,0.173889,0.905376,0.879136,0.337551,0.866333,0.366614,0.20651,0.78635,0.409141,0.443784,0.45573,0.61591,0.107564,0.341908,0.469458,0.0223817,0.376858,0.0260468,0.814189,0.850286,0.230836,0.999236,0.738838,0.227299,0.347375,0.941142,0.622557,0.426544,0.719306,0.131342,0.980269,0.739718,0.166432,0.527667,0.116778,0.21853,0.769357,0.395745,0.336562,0.870736,0.2341,0.796142,0.714631,0.223294,0.0351707,0.01604,0.744073,0.241075,0.997547,0.953355,0.95399,0.259272,0.972654,0.908086,0.153894,0.355095,0.42408,0.671303,0.0283337,0.53915,0.73865,0.818957,0.452318,0.518026,0.913344,0.11404,0.730226,0.532133,0.373716,0.831894,0.305643,0.535161,0.191295,0.142417,0.666448,0.988044,0.36821,0.368064,0.924551,0.916823,0.615961,0.062067,0.3702,0.924746,0.310486,0.949598,0.100409,0.279665,0.778101,0.119907,0.613613,0.230724,0.336224,0.598865,0.464437,0.0453693,0.169758,0.360746,0.803006,0.387942,0.0498312,0.443517,0.876005,0.614196,0.933601,0.229903,0.746695,0.630882,0.221922,0.0954908,0.782273,0.939486,0.253613,0.682,0.241811,0.0135731,0.547729,0.815344,0.25394,0.62559,0.640923,0.236606,0.146165,0.154261,0.141281,0.914328,0.9288,0.647172,0.142819,0.130028,0.580846,0.42777,0.682155,0.509533,0.650939,0.554008,0.980306,0.765554,0.515358,0.954466,0.324821,0.463717,0.0935001,0.432969,0.610468,0.286884,0.0162412,0.469983,0.578782,0.716009,0.113397,0.750701,0.673209,0.132426,0.4353,0.577595,0.871568,0.618841,0.512118,0.960206,0.867157,0.175768,0.408717,0.231728,0.841568,0.673262,0.946926,0.162943,0.721574,0.781021,0.100009,0.517211,0.995237,0.0480279,0.496284,0.715065,0.071521,0.183484,0.867619,0.491186,0.107874,0.445514,0.480987,0.468843,0.08745,0.525882,0.193424,0.967944,0.680696,0.818086,0.582408,0.315444,0.857957,0.570661,0.984861,0.971757,0.607315,0.403331,0.315395,0.0190861,0.235913,0.202099,0.503333,0.511786,0.254731,0.0980521,0.0585421,0.114998,0.413015,0.165207,0.93781,0.190841,0.446309,0.229341,0.460109,0.933461,0.131338,0.158227,0.919703,0.765655,0.396166,0.638353,0.546927,0.453378,0.205748,0.458931,0.137564,0.843583,0.843441,0.527355,0.29282,0.108135,0.0640709,0.416275,0.428831,0.0236453,0.97857,0.0629277,0.160052,0.819999,0.562221,0.850755,0.542354,0.543867,0.250434,0.900483,0.461872,0.38959,0.0655496,0.429897,0.325459,0.410635,0.994627,0.0800436,0.0127636,0.482315,0.874418,0.711083,0.689294,0.954367,0.0693225,0.0814961,0.0394546,0.865377,0.281897,0.381284,0.860772,0.077875,0.156735,0.397394,0.0578197,0.503004,0.395777,0.14303,0.337955,0.846835,0.300076,0.848017,0.25651,0.685141,0.187319,0.239295,0.543329,0.84702,0.153079,0.909199,0.938525,0.840856,0.331925,0.197767,0.431234,0.241145,0.102291,0.434653,0.984433,0.902043,0.00207758,0.747578,0.775936,0.255636,0.369444,0.588798,0.865884,0.117623,0.915129,0.758225,0.701775,0.0847846,0.939021,0.0853679,0.23301,0.469402,0.660818,0.00715059,0.176615,0.64666,0.699511,0.846767,0.725545,0.624697,0.229627,0.28842,0.307482,0.656359,0.50219,0.970967,0.434877,0.499392,0.629242,0.683743,0.997421,0.802481,0.576303,0.302987,0.87711,0.483432,0.218649,0.744042,0.600638,0.80988,0.684969,0.868026,0.680267,0.391319,0.723117,0.812385,0.10949,0.385074,0.0536964,0.559185,0.472894,0.0729888,0.998731,0.507272,0.650912,0.759719,0.721409,0.34928,0.406071,0.945952,0.358595,0.273916,0.680047,0.172771,0.0342807,0.838068,0.958338,0.963038,0.38949,0.220413,0.717203,0.497423,0.345507,0.451326,0.318302,0.670639,0.829718,0.495318,0.370387,0.410183,0.418097,0.992735,0.38117,0.527321,0.918002,0.854691,0.338158,0.946859,0.099684,0.98584,0.808374,0.787582,0.503417,0.0945342,0.382011,0.277839,0.35787,0.28404,0.698248,0.553155,0.761436,0.310288,0.511671,0.401738,0.917869,0.899245,0.0259935,0.7315,0.9539,0.471069,0.794679,0.835472,0.642112,0.194758,0.257178,0.504912,0.145332,0.967955,0.791376,0.195407,0.275747,0.761545,0.693071,0.19232,0.836085,0.000623822,0.00953299,0.0573049,0.716285,0.150982,0.667428,0.981728,0.976002,0.805067,0.780789,0.807822,0.407098,0.291873,0.36805,0.999138,0.639699,0.0244692,0.875932,0.520568,0.801982,0.524765,0.481409,0.309033,0.429886,0.614634,0.798571,0.155168,0.376744,0.428559,0.771958,0.157086,0.482106,0.901976,0.896087,0.205073,0.279085,0.802822,0.513241,0.370869,0.930748,0.905696,0.391839,0.152597,0.764727,0.628421,0.640587,0.732311,0.357692,0.383161,0.082221,0.430174,0.900539,0.184065,0.724547,0.0340126,0.374766,0.560469,0.502962,0.965706,0.593528,0.350611,0.0889692,0.494399,0.835849,0.577248,0.570727,0.614139,0.897558,0.168465,0.0382919,0.0756814,0.200465,0.0755097,0.143931,0.448998,0.569404,0.394193,0.405637,0.672787,0.851514,0.736999,0.81817,0.435148,0.911467,0.88105,0.75578,0.640945,0.273415,0.673907,0.00484586,0.332827,0.168336,0.379966,0.836085,0.266315,0.704373,0.0300767,0.365562,0.402186,0.121532,0.594103,0.498127,0.253344,0.66332,0.929879,0.986776,0.73005,0.0655602,0.78556,0.288442,0.61211,0.464506,0.400174,0.701256,0.356547,0.693484,0.735051,0.225702,0.081572,0.759551,0.946323,0.767647,0.66107,0.632022,0.690272,0.0809876,0.340659,0.398375,0.129817,0.444911,0.505465,0.661396,0.298455,0.493249,0.296817,0.0638644,0.181641,0.153178,0.362147,0.296288,0.670289,0.130697,0.80706,0.425041,0.221075,0.770213,0.171478,0.702666,0.0941074,0.970308,0.000641644,0.0951545,0.5271,0.359241,0.611603,0.967996,0.80157,0.876133,0.415914,0.780491,0.81953,0.858618,0.318775,0.865882,0.101528,0.801772,0.858739,0.0260891,0.42423,0.438736,0.728929,0.97141,0.921771,0.516102,0.835391,0.80294,0.882487,0.865683,0.25192,0.975158,0.540517,0.961897,0.221801,0.323484,0.0559204,0.712678,0.245721,0.520948,0.265196,0.210937,0.574377,0.00530791,0.389483,0.738241,0.456576,0.0140014,0.358334,0.218041,0.239535,0.706799,0.992238,0.982377,0.611661,0.59834,0.438274,0.748049,0.319012,0.801577,0.646993,0.831165,0.850677,0.480077,0.718717,0.586314,0.674186,0.127083,0.447425,0.476778,0.427512,0.177532,0.804109,0.722703,0.671227,0.604064,0.405591,0.772556,0.774526,0.622724,0.481973,0.629265,0.413511,0.461907,0.113298,0.811773,0.577126,0.510235,0.602385,0.527598,0.360144,0.364131,0.613306,0.995365,0.549108,0.445787,0.582924,0.0433854,0.678336,0.384848,0.82755,0.568156,0.902018,0.410729,0.920415,0.712184,0.688527,0.740383,0.461499,0.7067,0.748281,0.311684,0.3083,0.240409,0.0227722,0.35744,0.873123,0.165024,0.599649,0.560354,0.173579,0.493918,0.251413,0.206795,0.396939,0.548316,0.962874,0.572341,0.488071,0.00293922,0.115784,0.372129,0.426924,0.212588,0.201705,0.0578088,0.641767,0.89408,0.880525,0.0278383,0.203716,0.646657,0.0174118,0.16816,0.687203,0.505246,0.145573,0.422043,0.0481041,0.736826,0.312063,0.652368,0.496593,0.119741,0.471597,0.288846,0.691624,0.069773,0.861628,0.963415,0.634252,0.244735,0.802159,0.554683,0.361998,0.83099,0.487257,0.73739,0.61801,0.169981,0.9247,0.905709,0.71108,0.857264,0.814402,0.035625,0.393695,0.305602,0.0427014,0.764034,0.255216,0.506798,0.534942,0.86815,0.497306,0.831655,0.552892,0.607986,0.604727,0.975541,0.111186,0.560642,0.557245,0.271305,0.782773,0.54511,0.454496,0.300416,0.500556,0.618725,0.452391,0.904073,0.891575,0.735145,0.745235,0.812301,0.279571,0.750252,0.273473,0.717987,0.462053,0.800682,0.700467,0.333276,0.918787,0.948257,0.642319,0.154503,0.158581,0.779989,0.84231,0.183163,0.430245,0.0302415,0.849643,0.914102,0.46069,0.222653,0.192503,0.737883,0.032533,0.0748807,0.44085,0.366543,0.968322,0.258703,0.378951,0.0645885,0.508038,0.928112,0.914289,0.831135,0.126005,0.738024,0.668862,0.0455564,0.0327905,0.155423,0.656182,0.1473,0.544785,0.666492,0.826548,0.239428,0.454717,0.959273,0.655168,0.0633842,0.704476,0.108637,0.747177,0.5574,0.975812,0.996311,0.665118,0.0672364,0.22216,0.12474,0.368176,0.335457,0.999025,0.556225,0.451243,0.52847,0.345794,0.888717,0.0432404,0.668018,0.291284,0.616548,0.529612,0.859025,0.636609,0.609163,0.471042,0.665037,0.791339,0.0885214,0.350352,0.5592,0.183331,0.730996,0.582491,0.722607,0.423676,0.754123,0.26826,0.328418,0.550716,0.791934,0.276323,0.677969,0.361743,0.962703,0.469874,0.69814,0.136006,0.478503,0.00555569,0.899002,0.114211,0.909185,0.41111,0.118507,0.653742,0.148978,0.976212,0.930121,0.83181,0.464313,0.502237,0.436869,0.763186,0.0501574,0.0395467,0.605314,0.273759,0.62752,0.332326,0.525443,0.0299097,0.622366,0.719225,0.310049,0.506955,0.0741806,0.0953969,0.363847,0.773489,0.829432,0.319609,0.240987,0.310358,0.102821,0.186655,0.706242,0.729571,0.564914,0.264205,0.05946,0.121718,0.552589,0.538803,0.788341,0.6897,0.592664,0.522182,0.3116,0.91535,0.345018,0.54646,0.128567,0.527264,0.763944,0.0575871,0.538518,0.552861,0.974241,0.273183,0.609302,0.649193,0.458521,0.602759,0.192372,0.139303,0.971047,0.969213,0.858212,0.583261,0.328267,0.956641,0.456121,0.9755,0.0807921,0.95958,0.155726,0.76256,0.920476,0.124038,0.726672,0.256385,0.972628,0.946817,0.712914,0.716012,0.466505,0.00946772,0.414634,0.0624191,0.750378,0.668664,0.299627,0.107246,0.480069,0.168089,0.992833,0.348819,0.285067,|0.595662,0.96876,0.453785,0.253063,0.317438,0.33863,0.149108,0.941887,0.444595,0.292919,0.788954,0.175358,0.317447,0.414727,0.71778,0.146405,0.463084,0.27025,0.976463,0.175924,0.462304,0.73747,0.842969,0.434156,0.929736,0.489046,0.273497,0.456186,0.0859274,0.571925,0.9715,0.588783,0.847203,0.890422,0.730277,0.246352,0.076772,0.934064,0.813529,0.275338,0.431128,0.54588,0.40895,0.46975,0.384898,0.00261754,0.55066,0.0680608,0.583916,0.518638,0.863903,0.0840723,0.743448,0.903875,0.870995,0.863833,0.382071,0.58176,0.0422465,0.663161,0.0936122,0.960316,0.684521,0.815184,0.024375,0.804544,0.286178,0.769828,0.0985166,0.369372,0.314688,0.679097,0.699351,0.168373,0.0157173,0.826081,0.268854,0.0368277,0.428475,0.17883,0.602267,0.947341,0.130818,0.334488,0.431889,0.00937879,0.955344,0.610204,0.467449,0.30125,0.214192,0.548954,0.696697,0.367557,0.277173,0.800334,0.0701725,0.982737,0.941178,0.0725816,0.500565,0.792236,0.525516,0.0086816,0.203895,0.686484,0.800504,0.496575,0.702563,0.353379,0.768895,0.9901,0.726423,0.0922751,0.917683,0.648587,0.814476,0.160674,0.313352,0.265155,0.882692,0.979813,0.847465,0.297672,0.531637,0.773779,0.657492,0.5043,0.108024,0.820132,0.30415,0.444263,0.214142,0.655092,0.0149288,0.289397,0.843061,0.453021,0.656279,0.370586,0.479227,0.310686,0.94142,0.916034,0.704756,0.220056,0.929832,0.515016,0.845843,0.0220022,0.844018,0.572306,0.469483,0.741207,0.593326,0.759574,0.931394,0.361958,0.640667,0.339764,0.639455,0.961678,0.00157446,0.080662,0.267711,0.409581,0.274099,0.553132,0.459987,0.558899,0.507834,0.528561,0.768192,0.713067,0.411719,0.896366,0.0684372,0.320097,0.875657,0.139242,0.756425,0.902839,0.399471,0.743413,0.175908,0.488943,0.224323,0.641586,0.994509,0.0808059,0.0499386,0.750931,0.777221,0.242553,0.422324,0.0684179,0.352381,0.93828,0.709639,0.649915,0.561142,0.148575,0.565079,0.449814,0.261759,0.148553,0.0157993,0.658614,0.863349,0.65115,0.092729,0.10821,0.932119,0.0958155,0.944509,0.805775,0.188134,0.357444,0.450908,0.361173,0.82352,0.0846701,0.295701,0.98777,0.0823221,0.488768,0.412021,0.458386,0.585563,0.445836,0.652684,0.631008,0.806414,0.00909102,0.278395,0.389204,0.415868,0.909625,0.0415393,0.380435,0.806799,0.164004,0.92707,0.274384,0.806561,0.10246,0.529887,0.857763,0.779213,0.959152,0.195959,0.215835,0.249517,0.717537,0.265623,0.253457,0.590839,0.0910473,0.9422,0.990772,0.703761,0.115722,0.382237,0.74477,0.517623,0.993625,0.165383,0.319616,0.418429,0.420485,0.600129,0.82622,0.0858698,0.83792,0.673042,0.545724,0.345758,0.556134,0.98756,0.698258,0.519682,0.971396,0.230785,0.109773,0.576885,0.646907,0.862602,0.422833,0.893575,0.83757,0.987625,0.130396,0.0387637,0.960594,0.375415,0.940706,0.0407856,0.551518,0.379725,0.968303,0.118235,0.395702,0.903781,0.164376,0.468253,0.553233,0.483479,0.685297,0.368779,0.459708,0.752294,0.446563,0.689005,0.12022,0.0844666,0.648845,0.20652,0.0419766,0.560103,0.268951,0.498959,0.880616,0.0749115,0.817615,0.607612,0.439192,0.258263,0.00446999,0.162816,0.886426,0.259545,0.858398,0.76143,0.665278,0.749462,0.368212,0.0852197,0.27229,0.190007,0.962559,0.157076,0.977604,0.211997,0.300316,0.579297,0.0434405,0.0522175,0.458319,0.165068,0.771054,0.82801,0.81068,0.780474,0.13409,0.441515,0.0947222,0.432608,0.867929,0.0351742,0.229407,0.159171,0.691975,0.0222642,0.70501,0.642972,0.0523766,0.292428,0.66936,0.412523,0.203172,0.626368,0.405024,0.00483197,0.190644,0.392079,0.779327,0.472601,0.819185,0.754633,0.26375,0.963488,0.704713,0.780714,0.906352,0.473018,0.635935,0.977007,0.541681,0.586041,0.990099,0.493539,0.826543,0.952095,0.765667,0.0047093,0.132962,0.580713,0.934248,0.00174761,0.0733274,0.0810881,0.831311,0.145609,0.631615,0.611977,0.676059,0.563222,0.654062,0.60075,0.16586,0.394551,0.257258,0.585847,0.452328,0.813884,0.760336,0.499665,0.181162,0.977164,0.0660592,0.771617,0.333409,0.00752461,0.0637853,0.513389,0.768757,0.998287,0.469489,0.301265,0.0862824,0.978453,0.162915,0.256738,0.700447,0.819905,0.447025,0.307478,0.1998,0.905045,0.32321,0.671256,0.20062,0.992275,0.825859,0.885429,0.0278844,0.348973,0.681703,0.577872,0.461536,0.46342,0.755142,0.364114,0.45741,0.36641,0.47337,0.398345,0.240286,0.870056,0.146859,0.638189,0.137617,0.349789,0.569582,0.140543,0.664276,0.247941,0.657543,0.76812,0.856128,0.791407,0.364267,0.256188,0.107174,0.0646995,0.0287948,0.26515,0.00505185,0.140563,0.0701816,0.727543,0.961672,0.225677,0.710661,0.776311,0.791201,0.35604,0.0293149,0.679508,0.128201,0.417913,0.688163,0.995366,0.447945,0.897193,0.830765,0.80094,0.726049,0.65066,0.988703,0.44137,0.19085,0.0122505,0.921551,0.947419,0.545316,0.494242,0.675966,0.58955,0.937915,0.633867,0.801377,0.0677345,0.826679,0.535147,0.72436,0.881096,0.883441,0.713604,0.782205,0.782261,0.309434,0.729867,0.201417,0.449346,0.743726,0.760396,0.456269,0.00546718,0.406019,0.301839,0.891022,0.0546656,0.55936,0.496907,0.893164,0.527248,0.170539,0.134244,0.845382,0.0108842,0.945093,0.528824,0.992172,0.671266,0.98749,0.086386,0.323011,0.467323,0.584928,0.542504,0.0820653,0.771748,0.46546,0.688402,0.912421,0.621438,0.139249,0.581978,0.585687,0.330829,0.383025,0.0329933,0.490402,0.125996,0.986861,0.656268,0.171143,0.694339,0.539713,0.556667,0.729001,0.513828,0.198018,0.187134,0.485139,0.0870947,0.535929,0.259797,0.7302,0.298527,0.029725,0.0936823,0.645412,0.158916,0.079794,0.754389,0.432056,0.279884,0.224752,0.971975,0.249842,0.88358,0.373752,0.184483,0.525374,0.669064,0.669812,0.405854,0.342354,0.826949,0.165059,0.405482,0.453005,0.730473,0.377197,0.828574,0.271741,0.5536,0.684196,0.805909,0.781613,0.658997,0.943884,0.504831,0.535805,0.951497,0.736319,0.246423,0.150404,0.706698,0.328016,0.763854,0.342266,0.312716,0.534466,0.248306,0.589489,0.569504,0.767332,0.618636,0.314964,0.209181,0.618253,0.193591,0.0994658,0.549809,0.561616,0.870127,0.734392,0.50139,0.0672143,0.438885,0.58378,0.0165836,0.712334,0.295223,0.261507,0.854417,0.758453,0.839276,0.960351,0.71153,0.979393,0.176993,0.17732,0.711736,0.910514,0.667472,0.335995,0.682973,0.670383,0.927997,0.375838,0.207453,0.261516,0.465461,0.852618,0.331405,0.240644,0.641556,0.794272,0.0405926,0.946852,0.770586,0.416761,0.691785,0.529512,0.555606,0.681333,0.691662,0.457207,0.0808529,0.432698,0.343302,0.00130051,0.945277,0.171997,0.587952,0.845375,0.523101,0.203936,0.204442,0.72325,0.699491,0.528518,0.422551,0.913886,0.565544,0.340433,0.500571,0.158182,0.778286,0.879545,0.422574,0.892745,0.192948,0.21744,0.233381,0.540298,0.06831,0.461807,0.628739,0.19145,0.864435,0.0232069,0.994605,0.128388,0.0616847,0.669517,0.0318828,0.298806,0.851268,0.420496,0.857275,0.277519,0.348344,0.65674,0.863629,0.760591,0.4557,0.492335,0.712865,0.129145,0.27285,0.0354789,0.540295,0.186877,0.725562,0.590303,0.912321,0.394955,0.964933,0.679595,0.255552,0.400213,0.291957,0.775537,0.647414,0.24568,0.000525415,0.233453,0.153815,0.325716,0.458341,0.290378,0.769505,0.0477735,0.479587,0.507681,0.912568,0.369199,0.737125,0.601129,0.0935464,0.1874,0.0590365,0.55062,0.548532,0.514196,0.237392,0.934523,0.0424784,0.88687,0.202433,0.134639,0.70419,0.80637,0.327461,0.377645,0.29689,0.519526,0.155108,0.801493,0.678484,0.439054,0.267748,0.266205,0.444008,0.937268,0.515314,0.464683,0.937404,0.34172,0.544904,0.76593,0.512088,0.291397,0.0749856,0.576429,0.810879,0.98766,0.201581,0.455816,0.319104,0.407444,0.394604,0.275314,0.696253,0.371767,0.347425,0.750053,0.986447,0.337315,0.489193,0.691895,0.297291,0.549831,0.956974,0.35733,0.800113,0.402275,0.225679,0.110773,0.384018,0.96076,0.459343,0.323841,0.7624,0.799771,0.416135,0.137502,0.0342032,0.554839,0.000963867,0.356418,0.559862,0.438389,0.827549,0.17043,0.125548,0.160249,0.947282,0.114059,0.662859,0.835341,0.91114,0.661703,0.404102,0.907116,0.335624,0.625335,0.897398,0.250255,0.290357,0.131315,0.502111,0.497841,0.503309,0.208138,0.68485,0.291027,0.842607,0.348228,0.823917,0.167179,0.348105,0.244436,0.937643,0.448202,0.603585,0.980974,0.0169867,0.964355,0.545669,0.289894,0.416061,0.28639,0.511247,0.114392,0.334046,0.979877,0.265715,0.667633,0.14519,0.494115,0.645797,0.191465,0.761414,0.253229,0.752228,0.446193,0.593542,0.235094,0.37689,0.348711,0.301989,0.409697,0.613213,0.621876,0.895221,0.98088,0.42762,0.869948,0.931754,0.424501,0.622152,0.212783,0.166475,0.538737,0.678589,0.434471,0.758033,0.1213,0.763342,0.00940996,0.440953,0.30355,0.051204,0.460493,0.272869,0.343791,0.946337,0.270758,0.695422,0.048934,0.788592,0.631332,0.966634,0.669918,0.564968,0.607654,0.0188102,0.500102,0.435767,0.0990208,0.293153,0.393793,0.584586,0.59676,0.123197,0.368378,0.904809,0.14886,0.0921591,0.77453,0.67296,0.354922,0.293868,0.771913,0.082256,0.536602,0.0113082,0.562759,0.0761223,0.482504,0.652244,0.36684,0.0333082,0.0347351,0.817317,0.33606,0.475095,0.199235,0.914159,0.692242,0.578176,0.19325,0.90393,0.077292,0.227933,0.170047,0.284604,0.369561,0.717377,0.794079,0.980328,0.767763,0.506584,0.89008,0.139761,0.520034,0.47234,0.656472,0.481894,0.458,0.996232,0.854907,0.487517,0.917138,0.5893,0.282234,0.395958,0.882209,0.745219,0.442207,0.23093,0.801982,0.949498,0.913093,|0.594997,0.704971,0.51665,0.806601,0.425174,0.598145,0.826152,0.56525,0.982164,0.188611,0.403325,0.113104,0.549837,0.857467,0.340115,0.915194,0.0341747,0.456298,0.52419,0.945094,0.203477,0.0951313,0.35103,0.943941,0.174009,0.748399,0.185075,0.601204,0.795321,0.581626,0.374584,0.69362,0.764692,0.237543,0.953792,0.236681,0.4899,0.731514,0.080072,0.206065,0.65699,0.0339897,0.209791,0.543426,0.0928043,0.0313179,0.458131,0.332718,0.0267939,0.359302,0.676733,0.109958,0.912457,0.0360155,0.380203,0.704249,0.840595,0.841489,0.458058,0.335152,0.0297447,0.519787,0.928243,0.451075,0.431742,0.972143,0.7755,0.835393,0.624654,0.68426,0.780922,0.998601,0.13136,0.11284,0.176725,0.127376,0.730589,0.542046,0.699518,0.0529687,0.107043,0.854115,0.284849,0.540944,0.200029,0.115376,0.400955,0.711982,0.421144,0.184564,0.863629,0.528968,0.544467,0.331742,0.735846,0.771841,0.250331,0.516529,0.493178,0.958759,0.908033,0.103316,0.42795,0.855307,0.989293,0.477014,0.603177,0.412392,0.643706,0.795476,0.954911,0.9613,0.300194,0.859351,0.242285,0.521562,0.104865,0.0927657,0.668735,0.619808,0.415841,0.452254,0.702393,0.699228,0.261697,0.368121,0.976901,0.910228,0.389058,0.582239,0.153569,0.305523,0.293161,0.489667,0.0169305,0.747963,0.615774,0.746529,0.00588048,0.237429,0.334633,0.870977,0.986126,0.468799,0.366198,0.129591,0.915121,0.97521,0.267357,0.582636,0.444842,0.113434,0.377065,0.300092,0.767231,0.0852722,0.217403,0.76912,0.655243,0.46454,0.693589,0.914483,0.421982,0.452098,0.571456,0.148938,0.0585892,0.473759,0.151324,0.764491,0.25902,0.258041,0.570196,0.632281,0.967851,0.977461,0.266115,0.580476,0.819208,0.871796,0.319856,0.745422,0.775571,0.963255,0.631973,0.975016,0.625307,0.641203,0.188541,0.25389,0.154171,0.576306,0.809847,0.134002,0.845473,0.755875,0.15883,0.405293,0.447468,0.146417,0.86493,0.324303,0.725877,0.965697,0.501905,0.687223,0.426401,0.874443,0.123448,0.866891,0.884755,0.169923,0.704459,0.4928,0.521653,0.224765,0.26599,0.349723,0.860644,0.825818,0.968756,0.766995,0.591832,0.0522448,0.125238,0.545533,0.999415,0.0629275,0.165696,0.676515,0.550397,0.982626,0.710848,0.861485,0.131048,0.0409227,0.376922,0.197176,0.607202,0.534244,0.262477,0.924487,0.460955,0.468506,0.259198,0.153558,0.0115227,0.0582397,0.686669,0.0871219,0.773839,0.629688,0.847865,0.0822675,0.0639986,0.19392,0.566459,0.639976,0.851724,0.264134,0.00861299,0.972516,0.70304,0.556349,0.613137,0.939407,0.211511,0.69326,0.249527,0.274152,0.585477,0.679628,0.924751,0.962592,0.0402709,0.273818,0.775454,0.349973,0.178897,0.343846,0.935534,0.950782,0.809615,0.314386,0.27599,0.629661,0.647014,0.403891,0.557008,0.609977,0.586745,0.205462,0.632661,0.411278,0.816313,0.0827255,0.222872,0.166943,0.0415264,0.482117,0.125122,0.405539,0.845234,0.84898,0.116202,0.189515,0.553692,0.92493,0.271767,0.821631,0.747945,0.794166,0.830326,0.633528,0.188292,0.115118,0.336715,0.572027,0.377166,0.849744,0.994409,0.0870795,0.863075,0.489038,0.581953,0.623582,0.852976,0.48009,0.0157202,0.315015,0.372533,0.483166,0.496131,0.0915507,0.216328,0.301751,0.757032,0.048948,0.00779301,0.794897,0.422042,0.334008,0.0372446,0.486741,0.841835,0.206181,0.236439,0.653095,0.468303,0.302735,0.959552,0.643353,0.3815,0.217375,0.797076,0.107238,0.711966,0.619187,0.995059,0.817993,0.583765,0.424625,0.381048,0.485904,0.921778,0.764904,0.971133,0.315078,0.115578,0.535754,0.78412,0.224017,0.985601,0.788964,0.608897,0.705437,0.581215,0.402485,0.671878,0.952395,0.400941,0.732107,0.969151,0.224231,0.567967,0.557029,0.740117,0.375759,0.302088,0.894152,0.499742,0.419711,0.642794,0.347908,0.679229,0.879069,0.231716,0.0490626,0.966211,0.46797,0.419197,0.936897,0.420377,0.748593,0.993214,0.72333,0.664853,0.857873,0.638506,0.612393,0.0370957,0.528113,0.238091,0.700092,0.79585,0.619668,0.618622,0.0892941,0.809981,0.981953,0.174946,0.170945,0.51077,0.0617049,0.231837,0.920024,0.374345,0.202118,0.784952,0.792097,0.891343,0.57675,0.773452,0.632755,0.840317,0.336198,0.169394,0.858891,0.38308,0.321396,0.523743,0.782048,0.524029,0.480895,0.892206,0.800438,0.780814,0.733506,0.101434,0.86376,0.736331,0.0571838,0.125046,0.911844,0.685518,0.93215,0.715758,0.431244,0.127493,0.298564,0.0372019,0.824786,0.164616,0.797788,0.638832,0.584699,0.0437494,0.476844,0.18474,0.313096,0.18225,0.709032,0.275065,0.078194,0.860304,0.64955,0.434451,0.353683,0.262669,0.0484897,0.225451,0.377871,0.866845,0.323447,0.610458,0.678586,0.724162,0.545328,0.545683,0.504472,0.716929,0.632157,0.750137,0.64918,0.648965,0.600385,0.723148,0.0817841,0.815575,0.541687,0.0347859,0.766033,0.00875884,0.163209,0.310497,0.579021,0.0875767,0.44659,0.856249,0.481508,0.124901,0.705172,0.510943,0.888728,0.651176,0.934508,0.810461,0.659715,0.872955,0.0521768,0.690888,0.85368,0.195951,0.350733,0.210621,0.569051,0.609866,0.0604792,0.854991,0.021244,0.17569,0.194135,0.346495,0.751117,0.202465,0.426641,0.831637,0.157576,0.27236,0.470747,0.58337,0.467814,0.60175,0.468888,0.993058,0.230843,0.221146,0.785881,0.652882,0.065231,0.0668974,0.965975,0.835144,0.501456,0.683607,0.254635,0.0721422,0.292722,0.980619,0.393007,0.902484,0.964691,0.0203924,0.460185,0.8778,0.548533,0.712788,0.80173,0.659145,0.410664,0.611874,0.672656,0.759231,0.879847,0.326939,0.0846566,0.0547768,0.191228,0.301277,0.237947,0.355384,0.491101,0.765619,0.869257,0.887682,0.55693,0.727057,0.255598,0.700105,0.204069,0.818996,0.407963,0.0782966,0.142368,0.0382531,0.918579,0.909964,0.759948,0.0261358,0.582388,0.216842,0.31462,0.763505,0.429819,0.794257,0.346461,0.219019,0.373449,0.0737627,0.0374507,0.0196036,0.487271,0.00542575,0.187197,0.53393,0.899981,0.781656,0.164156,0.245071,0.698759,0.532087,0.293932,0.311419,0.620831,0.975207,0.205344,0.612888,0.628131,0.924195,0.81781,0.495714,0.798562,0.178168,0.326137,0.948604,0.784827,0.13481,0.0642316,0.0200965,0.890875,0.0975217,0.579917,0.228625,0.199921,0.747022,0.173715,0.392864,0.467014,0.261816,0.651075,0.525946,0.894618,0.711882,0.925557,0.154257,0.81117,0.123212,0.576652,0.50931,0.516388,0.951136,0.976684,0.757506,0.177688,0.169471,0.600478,0.22928,0.75155,0.081059,0.40654,0.454814,0.53091,0.196588,0.383072,0.368011,0.208476,0.697154,0.0959725,0.268967,0.0772449,0.371496,0.225189,0.629924,0.565101,0.359077,0.953713,0.81582,0.747727,0.773847,0.582919,0.032468,0.13294,0.415366,0.310384,0.867769,0.452032,0.802867,0.00371885,0.870681,0.51805,0.411265,0.579859,0.47028,0.40404,0.0662033,0.719988,0.972776,0.612109,0.632304,0.67823,0.513919,0.609204,0.635224,0.840457,0.479746,0.43975,0.341952,0.975313,0.766266,0.540546,0.400774,0.843273,0.214653,0.316303,0.0730491,0.863037,0.886489,0.511141,0.357122,0.606603,0.275466,0.171507,0.662486,0.715617,0.360644,0.964577,0.729237,0.912812,0.477744,0.713614,0.60025,0.546683,0.0662879,0.13998,0.779077,0.768571,0.319681,0.140044,0.613461,0.796818,0.828018,0.903987,0.456859,0.845044,0.114344,0.483325,0.789149,0.884621,0.111716,0.254159,0.845458,0.911016,0.674034,0.0987688,0.154228,0.387206,0.410826,0.728253,0.398775,0.938504,0.683428,0.302851,0.847516,0.13517,0.261422,0.397485,0.494938,0.185666,0.178971,0.192826,0.165454,0.466532,0.731033,0.190078,0.586259,0.968101,0.331982,0.932584,0.0505468,0.599863,0.849723,0.883222,0.0156215,0.34066,0.0781812,0.70433,0.0604702,0.490214,0.0138719,0.724535,0.984056,0.828419,0.490142,0.740636,0.733643,0.172673,0.396718,0.841581,0.0282327,0.317758,0.354791,0.00310981,0.765766,0.392396,0.428551,0.215951,0.2325,0.0175159,0.630651,0.724904,0.749412,0.0933643,0.263606,0.707301,0.580339,0.184845,0.878265,0.386694,0.904984,0.338055,0.522655,0.693154,0.865258,0.432426,0.736048,0.085086,0.868475,0.792148,0.690944,0.155606,0.90738,0.667165,0.761718,0.0356126,0.515357,0.817035,0.570175,0.832356,0.572101,0.579008,0.668178,0.505028,0.995255,0.136495,0.671943,0.363461,0.290986,0.49006,0.143127,0.58159,0.380055,0.772353,0.269772,0.031843,0.510507,0.294443,0.897045,0.655982,0.114295,0.292038,0.871648,0.926152,0.830093,0.123337,0.963659,0.953126,0.455412,0.458263,0.675889,0.154074,0.310915,0.298348,0.319591,0.327116,0.00165051,0.700187,0.476888,0.371734,0.539959,0.0982317,0.378178,0.757339,0.530566,0.117197,0.246627,0.674074,0.281214,0.746973,0.389034,0.677131,0.589291,0.0708787,0.0876324,0.0601081,0.0293661,0.798922,0.473091,0.111338,0.548459,0.0923876,0.36355,0.852651,0.227145,0.983102,0.74118,0.417363,0.720467,0.176071,0.109497,0.925669,0.112872,0.722587,0.553741,0.157143,0.816152,0.272035,0.85055,0.112412,0.0844803,0.887327,0.165336,0.495731,0.468867,0.20279,0.0181139,0.793396,0.812399,0.822774,0.52567,0.346939,0.89412,0.484191,0.728494,0.867519,0.810785,0.967773,0.744453,0.391969,0.438981,0.303883,0.713247,0.685959,0.48931,0.492438,0.523357,0.486466,0.763392,0.661404,0.396844,0.557045,0.774983,0.832792,0.731671,0.336426,0.670742,0.0252677,0.746544,0.149989,0.979035,0.815586,0.717262,0.0707141,0.595749,0.732376,0.798633,0.285817,0.0381733,0.162221,0.970136,0.218073,0.801407,0.91779,0.527151,0.830688,0.247483,0.653143,0.542087,0.388263,0.0395768,0.633806,0.00505632,0.409014,0.62959,0.149538,0.268708,0.134407,0.23078,0.264228,0.995433,0.641593,|0.984556,0.853987,0.0603234,0.894511,0.91401,0.789192,0.461499,0.927085,0.474591,0.388316,0.859225,0.278522,0.21467,0.967561,0.778873,0.834955,0.0930354,0.729269,0.369611,0.389908,0.812051,0.540406,0.351584,0.626104,0.255475,0.99543,0.507069,0.60955,0.610092,0.915722,0.505182,0.0391311,0.619756,0.534115,0.820224,0.534618,0.987414,0.202011,0.24072,0.0360528,0.0516488,0.677986,0.250684,0.241784,0.93476,0.0972469,0.862842,0.332551,0.445871,0.281175,0.168802,0.0956168,0.745747,0.416095,0.921337,0.279981,0.364482,0.572561,0.462475,0.580624,0.527674,0.828493,0.935601,0.681729,0.0762465,0.111475,0.449941,0.336021,0.164905,0.341736,0.60115,0.786618,0.172652,0.0183798,0.66906,0.500257,0.635127,0.518315,0.384978,0.30089,0.0839744,0.838187,0.563688,0.408036,0.114769,0.778968,0.560184,0.610749,0.0672714,0.0189959,0.715803,0.166151,0.174817,0.85176,0.872015,0.795012,0.49167,0.19924,0.809585,0.902478,0.70312,0.855841,0.553116,0.599149,0.924204,0.426177,0.424424,0.313746,0.749358,0.0099082,0.603137,0.835023,0.767189,0.482488,0.290417,0.94179,0.801032,0.284868,0.00282222,0.126426,0.782864,0.352287,0.574822,0.344365,0.1912,0.303009,0.84618,0.244426,0.152031,0.620463,0.454869,0.514204,0.117753,0.93113,0.123413,0.686282,0.0146513,0.0327514,0.792332,0.932857,0.987507,0.561623,0.210345,0.516981,0.0589573,0.71325,0.30546,0.377599,0.83596,0.37453,0.349438,0.453933,0.0418304,0.886134,0.290025,0.456893,0.637077,0.976406,0.480374,0.0460296,0.240764,0.250794,0.238687,0.550353,0.858973,0.957615,0.979734,0.612273,0.46539,0.921655,0.82981,0.760201,0.367779,0.847091,0.595766,0.263959,0.412404,0.139291,0.230435,0.160302,0.240483,0.292724,0.400911,0.496866,0.0569571,0.101675,0.543527,0.306444,0.284296,0.588458,0.905954,0.0689722,0.867367,0.333216,0.125867,0.825929,0.987232,0.215732,0.326774,0.754599,0.219089,0.227692,0.39883,0.588736,0.0781783,0.751782,0.446125,0.333932,0.692436,0.403492,0.567491,0.56412,0.863495,0.290351,0.267569,0.486255,0.839575,0.998938,0.761135,0.794766,0.497492,0.76364,0.51311,0.891721,0.0529405,0.147656,0.192967,0.248889,0.296263,0.451123,0.0536126,0.827653,0.626895,0.489319,0.0183084,0.103487,0.589817,0.655476,0.0833457,0.20877,0.429677,0.325357,0.550731,0.709166,0.121975,0.113642,0.6675,0.376581,0.736449,0.277667,0.224752,0.825157,0.0927199,0.286479,0.341971,0.670968,0.718696,0.434173,0.96854,0.498525,0.488338,0.845085,0.0712501,0.470996,0.902061,0.538174,0.411864,0.0481679,0.794007,0.665179,0.769756,0.601988,0.350062,0.890386,0.49014,0.596172,0.778139,0.230368,0.938022,0.73492,0.531966,0.421713,0.36304,0.479901,0.439584,0.342345,0.612529,0.031738,0.896573,0.634886,0.760471,0.7049,0.436595,0.426854,0.0299419,0.0990044,0.471492,0.254626,0.441579,0.642152,0.864308,0.590846,0.200537,0.414285,0.574671,0.690056,0.281167,0.0684573,0.570663,0.28827,0.104884,0.955661,0.680239,0.968157,0.726606,0.198179,0.810345,0.294078,0.114124,0.582617,0.348925,0.789603,0.0221725,0.39582,0.648259,0.29861,0.60851,0.601147,0.543742,0.610959,0.453248,0.723839,0.838232,0.912027,0.0459176,0.475828,0.124156,0.0414801,0.808439,0.981847,0.480283,0.910399,0.90669,0.449709,0.00679749,0.967894,0.494443,0.904288,0.816774,0.8777,0.810945,0.193197,0.810597,0.103197,0.238994,0.516051,0.367865,0.277002,0.829529,0.345123,0.611623,0.418156,0.295402,0.327506,0.382115,0.0112397,0.44119,0.706417,0.487434,0.796828,0.546878,0.180022,0.30752,0.181051,0.15635,0.900377,0.462621,0.808137,0.643568,0.440181,0.142456,0.756085,0.590692,0.263738,0.135999,0.317105,0.296265,0.94257,0.712649,0.874467,0.603408,0.649848,0.501993,0.48205,0.768741,0.714795,0.815877,0.932649,0.134139,0.187407,0.186411,0.700684,0.827352,0.825547,0.944509,0.886126,0.876204,0.145833,0.100291,0.210306,0.534117,0.552463,0.979374,0.849846,0.479775,0.156707,0.833177,0.14347,0.636797,0.183033,0.804834,0.494824,0.0428731,0.391091,0.337088,0.15997,0.954622,0.115388,0.191336,0.442779,0.62844,0.725709,0.118293,0.514364,0.923341,0.493395,0.241442,0.602562,0.94234,0.599487,0.264801,0.622002,0.163031,0.470705,0.0346009,0.442282,0.0221652,0.130616,0.161528,0.563757,0.84129,0.781832,0.584495,0.674003,0.586727,0.127836,0.234448,0.423164,0.226284,0.645548,0.947478,0.250918,0.901854,0.599947,0.327355,0.122357,0.704277,0.776221,0.165133,0.489109,0.343716,0.603,0.00175285,0.492684,0.861592,0.514027,0.0767925,0.864049,0.991815,0.440004,0.38875,0.83895,0.556793,0.242716,0.0442579,0.259189,0.657742,0.0549387,0.760291,0.0635406,0.677942,0.378431,0.408019,0.236822,0.0886631,0.508283,0.128726,0.4595,0.112936,0.5411,0.391813,0.751215,0.793197,0.890522,0.965745,0.922718,0.87392,0.775502,0.176307,0.196001,0.591244,0.152132,0.733165,0.723953,0.0534312,0.780057,0.988994,0.243955,0.742291,0.195255,0.610592,0.871976,0.47295,0.0678082,0.118252,0.115992,0.307542,0.692543,0.871203,0.112921,0.605534,0.537823,0.320487,0.531429,0.573284,0.0117636,0.993546,0.971714,0.388321,0.762207,0.924106,0.168727,0.597699,0.683949,0.115916,0.665282,0.91573,0.309464,0.314934,0.121931,0.215813,0.106534,0.065998,0.72154,0.0964895,0.229034,0.413805,0.77108,0.289093,0.934074,0.77449,0.364777,0.949978,0.312182,0.723479,0.955758,0.277767,0.664409,0.107901,0.719006,0.663112,0.0027225,0.584203,0.303677,0.318791,0.00506866,0.724599,0.715932,0.911518,0.829568,0.185454,0.531118,0.186702,0.838031,0.45627,0.883709,0.736005,0.433952,0.745881,0.624974,0.784727,0.0855659,0.262133,0.541324,0.0762504,0.534204,0.324051,0.216094,0.500594,0.718568,0.850549,0.149958,0.963883,0.655672,0.0149843,0.492143,0.217983,0.344156,0.529973,0.191919,0.895391,0.904747,0.668297,0.186852,0.677451,0.156114,0.346245,0.667417,0.617874,0.394804,0.724301,0.332868,0.423996,0.0947383,0.589363,0.548744,0.634772,0.944729,0.827892,0.475767,0.449099,0.451034,0.568785,0.827351,0.376692,0.425613,0.39201,0.448117,0.970003,0.685799,0.0798019,0.718519,0.308197,0.939099,0.946853,0.946314,0.336072,0.0210427,0.333552,0.645218,0.472948,0.788264,0.884846,0.609577,0.560872,0.105396,0.559026,0.0143909,0.534005,0.292591,0.847126,0.915384,0.159238,0.0651113,0.48897,0.406036,0.633325,0.734368,0.762337,0.57558,0.0591247,0.224407,0.277494,0.823624,0.0495659,0.873234,0.703531,0.676332,0.142791,0.433443,0.817876,0.910993,0.639746,0.303718,0.350941,0.694761,0.504326,0.880141,0.509205,0.423932,0.926685,0.346248,0.119095,0.915381,0.0350405,0.77241,0.667145,0.824371,0.840128,0.522815,0.0067451,0.426532,0.734056,0.618362,0.0625432,0.963096,0.592858,0.255963,0.534772,0.898572,0.976839,0.824907,0.187879,0.271935,0.596776,0.143895,0.866539,0.115697,0.00902081,0.123229,0.676669,0.39335,0.592397,0.00179839,0.0149646,0.24092,0.331887,0.512945,0.145896,0.335927,0.240272,0.871318,0.950719,0.875217,0.945393,0.713269,0.637252,0.271071,0.0499884,0.226356,0.628591,0.229124,0.755025,0.556146,0.937593,0.469437,0.775057,0.00386304,0.897417,0.765134,0.985287,0.094793,0.836185,0.406553,0.89587,0.3126,0.492077,0.940087,0.558197,0.978324,0.0028019,0.603632,0.413107,0.548297,0.854215,0.357573,0.925419,0.44748,0.633905,0.624951,0.064063,0.486956,0.870778,0.319605,0.106524,0.410466,0.506404,0.767671,0.926986,0.264462,0.835813,0.589101,0.88794,0.655948,0.771753,0.63582,0.543464,0.275903,0.283527,0.153527,0.628362,0.73273,0.353423,0.423211,0.461942,0.398904,0.540503,0.842334,0.0565205,0.433745,0.0337961,0.116224,0.558024,0.237075,0.237354,0.844157,0.925494,0.62182,0.851954,0.108294,0.246828,0.59083,0.503959,0.101593,0.980533,0.914553,0.443185,0.67018,0.363419,0.932185,0.317517,0.41915,0.684036,0.497917,0.445443,0.184226,0.904709,0.647338,0.064298,0.892756,0.237041,0.153013,0.245279,0.317646,0.696015,0.80475,0.275041,0.522733,0.170849,0.318496,0.867425,0.0899294,0.358055,0.877178,0.0600677,0.307212,0.693567,0.593579,0.303394,0.910536,0.849665,0.314772,0.0575335,0.520716,0.523144,0.0229024,0.313669,0.351965,0.114756,0.390505,0.316919,0.86521,0.181154,0.759018,0.285163,0.816881,0.288919,0.87714,0.970217,0.190972,0.154391,0.406561,0.613757,0.362776,0.105574,0.402627,0.4535,0.380366,0.746407,0.0468099,0.662886,0.57699,0.982991,0.755975,0.380105,0.338204,0.325378,0.640463,0.223356,0.384479,0.349982,0.279786,0.350648,0.0423793,0.915313,0.982721,0.565921,0.936527,0.800083,0.167853,0.924215,0.0499778,0.218329,0.71837,0.830781,0.660912,0.534996,0.98906,0.663224,0.786325,0.898309,0.00489634,0.00815779,0.555784,0.0249635,0.944482,0.396475,0.155446,0.450975,0.324643,0.874656,0.441371,0.395032,0.0705292,0.628216,0.653075,0.430363,0.699271,0.163572,0.803478,0.874651,0.957672,0.466011,0.976612,0.945697,0.508905,0.404663,0.538762,0.919602,0.559893,0.0426337,0.66169,0.381929,0.882328,0.994854,0.0444464,0.391251,0.732081,0.940022,0.0783932,0.840953,0.877448,0.281512,0.269341,0.25135,0.532901,0.666224,0.654695,0.13902,0.289713,0.736364,0.056397,0.745044,0.63526,0.217199,0.909052,0.43477,0.368198,0.871331,0.208391,0.96226,0.634623,0.800118,0.569626,0.700044,0.436419,0.333383,0.807813,0.369093,0.496791,0.498765,0.882936,0.995481,0.708823,0.13796,0.161524,0.38706,0.306063,0.821172,0.819912,0.274399,0.576527,0.820979,0.224864,0.983678,0.115028,0.916276,0.946849,0.12538,0.678301,|0.22488,0.0840828,0.286974,0.109479,0.575367,0.73864,0.410708,0.619932,0.00385725,0.20619,0.323792,0.798311,0.0647771,0.662071,0.318426,0.50631,0.924344,0.290559,0.525565,0.813989,0.710244,0.897093,0.776314,0.223178,0.983995,0.00103575,0.778276,0.859004,0.946107,0.860826,0.774028,0.455915,0.327182,0.604701,0.735751,0.195957,0.111865,0.634602,0.875684,0.719408,0.0782645,0.877472,0.820965,0.615244,0.770887,0.300609,0.283621,0.747074,0.0192915,0.696271,0.0228238,0.00909728,0.721711,0.101285,0.619811,0.897214,0.861261,0.362995,0.793538,0.223365,0.0861583,0.0350009,0.325037,0.155373,0.763379,0.412337,0.601069,0.808397,0.871743,0.874579,0.495631,0.584232,0.231793,0.14715,0.780968,0.456327,0.767047,0.601444,0.522699,0.520942,0.411811,0.542463,0.834761,0.561397,0.508911,0.339742,0.941938,0.728872,0.528626,0.413523,0.552003,0.810182,0.336187,0.114956,0.524342,0.28612,0.459678,0.202345,0.998144,0.68305,0.39394,0.996368,0.671534,0.322297,0.412713,0.54206,0.822649,0.5993,0.68661,0.827542,0.862003,0.539094,0.181545,0.468497,0.359851,0.896727,0.343599,0.288059,0.878846,0.532301,0.48491,0.905604,0.823542,0.436815,0.063602,0.917511,0.921697,0.344932,0.0479004,0.573246,0.586009,0.204421,0.730598,0.863501,0.147851,0.191903,0.410128,0.191575,0.0078277,0.761259,0.812874,0.139375,0.107106,0.465944,0.479658,0.180207,0.137753,0.148364,0.329433,0.115121,0.918833,0.493577,0.943997,0.347093,0.287902,0.625955,0.836933,0.973694,0.177252,0.731227,0.404732,0.923398,0.212873,0.204059,0.509873,0.356877,0.0973142,0.577984,0.420964,0.901805,0.744233,0.737649,0.627504,0.192664,0.324036,0.0993268,0.874272,0.420956,0.334508,0.859898,0.613606,0.813727,0.983217,0.602617,0.0567703,0.952759,0.479094,0.440443,0.698472,0.255251,0.598522,0.861734,0.655956,0.578042,0.632108,0.836906,0.893507,0.822097,0.837823,0.198283,0.300167,0.0650972,0.0274069,0.112758,0.735077,0.623803,0.575383,0.856056,0.124022,0.0973073,0.776031,0.338587,0.174013,0.572064,0.730581,0.179362,0.274518,0.924052,0.141265,0.128631,0.148531,0.314235,0.704903,0.0614977,0.724773,0.393944,0.0752949,0.933133,0.408363,0.434906,0.605839,0.944937,0.709019,0.536456,0.0115747,0.433771,0.58083,0.854114,0.167973,0.00720108,0.799805,0.922861,0.581142,0.715169,0.270151,0.253592,0.619227,0.68233,0.245626,0.983756,0.393113,0.0323871,0.447715,0.644555,0.413655,0.250826,0.745959,0.650028,0.765466,0.422524,0.930162,0.890851,0.884096,0.205348,0.625375,0.0700671,0.10066,0.977293,0.989872,0.0219418,0.540915,0.0876181,0.644279,0.990383,0.830352,0.512973,0.300361,0.342224,0.572329,0.279511,0.74746,0.22465,0.0269139,0.496071,0.320837,0.727001,0.368839,0.930118,0.382928,0.503577,0.951125,0.261296,0.990182,0.324078,0.625569,0.108149,0.702843,0.225798,0.17268,0.304481,0.411491,0.103201,0.670763,0.126111,0.0470183,0.080869,0.67465,0.889384,0.227393,0.299189,0.0766959,0.022694,0.287857,0.786054,0.525356,0.419842,0.446606,0.946779,0.67876,0.461865,0.544736,0.370411,0.836055,0.555228,0.195992,0.612875,0.552106,0.0927203,0.263425,0.632568,0.147139,0.243394,0.0875142,0.697809,0.707613,0.483371,0.503108,0.752349,0.676497,0.673384,0.811154,0.811755,0.00544411,0.886489,0.297657,0.692757,0.130089,0.493238,0.412607,0.6043,0.555152,0.647412,0.0194569,0.24657,0.23093,0.896239,0.127388,0.714296,0.974916,0.577244,0.236398,0.693718,0.776692,0.335785,0.920783,0.586351,0.595595,0.488273,0.827142,0.11065,0.310659,0.0425645,0.193752,0.432641,0.335781,0.586864,0.520501,0.322313,0.224555,0.35341,0.301386,0.399433,0.950734,0.846171,0.997499,0.944983,0.987944,0.43052,0.465939,0.725808,0.617761,0.758388,0.0835386,0.567416,0.200621,0.777577,0.544322,0.564953,0.0218655,0.179851,0.0274653,0.211237,0.803287,0.177019,0.286752,0.953686,0.607048,0.279746,0.815692,0.483739,0.303136,0.790603,0.299912,0.16471,0.768692,0.979277,0.337378,0.00326079,0.921463,0.521567,0.300889,0.108218,0.434137,0.206332,0.232879,0.609289,0.378007,0.833796,0.246185,0.0640935,0.0563188,0.228631,0.223581,0.743389,0.0624609,0.0861004,0.857947,0.251593,0.0185024,0.832967,0.205035,0.92655,0.81143,0.117827,0.647944,0.193415,0.328259,0.100751,0.239442,0.314305,0.908674,0.180508,0.999441,0.927753,0.481142,0.833552,0.681715,0.793362,0.608402,0.0911555,0.759191,0.389526,0.929649,0.945379,0.696142,0.0406929,0.882643,0.0346901,0.0158151,0.630361,0.46114,0.529898,0.422738,0.118787,0.612387,0.602737,0.909666,0.857656,0.630383,0.0969919,0.169975,0.468076,0.982739,0.107611,0.119463,0.495829,0.643189,0.211116,0.170304,0.56595,0.408928,0.661806,0.156366,0.488176,0.98043,0.396956,0.352384,0.569793,0.392543,0.161078,0.387599,0.902618,0.942194,0.508236,0.444926,0.300065,0.612654,0.448077,0.673734,0.478613,0.456701,0.0816383,0.177442,0.335589,0.192401,0.883749,0.802478,0.804417,0.583642,0.402523,0.183335,0.49892,0.417446,0.67204,0.519814,0.208034,0.00520819,0.928613,0.649937,0.743888,0.81665,0.345782,0.651625,0.327909,0.154836,0.629735,0.281759,0.986427,0.19424,0.637681,0.692575,0.696416,0.560459,0.105404,0.850872,0.885075,0.393518,0.597562,0.0679179,0.395551,0.12207,0.962368,0.0325575,0.776493,0.226708,0.82672,0.369545,0.311881,0.391929,0.384504,0.137861,0.887326,0.253528,0.75726,0.14988,0.334026,0.913895,0.526321,0.486818,0.47534,0.387979,0.694822,0.453957,0.455892,0.157711,0.94412,0.394899,0.915112,0.926796,0.419134,0.970161,0.333033,0.407749,0.238141,0.732101,0.0975119,0.245226,0.700326,0.249742,0.721455,0.903508,0.0657176,0.153394,0.774583,0.799659,0.225859,0.787636,0.82625,0.0535917,0.555596,0.113208,0.119711,0.462801,0.177876,0.266284,0.414401,0.574246,0.723558,0.317954,0.788647,0.36013,0.118652,0.0164335,0.89207,0.0759896,0.0105463,0.146178,0.553068,0.764957,0.917959,0.271665,0.729223,0.0177421,0.847761,0.695288,0.103512,0.212267,0.662961,0.338801,0.0272191,0.756455,0.191691,0.285544,0.475455,0.263116,0.156196,0.160926,0.803116,0.340393,0.487186,0.146632,0.855895,0.60955,0.824667,0.403477,0.139371,0.809245,0.141755,0.243747,0.482385,0.434148,0.54365,0.241082,0.023569,0.84751,0.333682,0.379961,0.15498,0.215582,0.0414861,0.839908,0.615887,0.207863,0.391255,0.156032,0.54501,0.0024417,0.97457,0.25603,0.224546,0.490926,0.303491,0.624969,0.686233,0.943108,0.543752,0.0784734,0.0354168,0.689207,0.0487671,0.0998869,0.0873992,0.0558723,0.583308,0.706598,0.489267,0.33608,0.699634,0.966845,0.842103,0.128236,0.649394,0.738422,0.73392,0.387453,0.127269,0.893482,0.392446,0.0585484,0.577618,0.444845,0.0248205,0.119754,0.37743,0.270708,0.0189006,0.490901,0.332988,0.129981,0.709466,0.751517,0.667457,0.494424,0.672498,0.791848,0.270954,0.108277,0.331671,0.145739,0.944168,0.689011,0.578081,0.889041,0.242484,0.336874,0.207672,0.094075,0.0913055,0.601116,0.200466,0.35811,0.0410596,0.187252,0.639197,0.485027,0.474375,0.821487,0.171587,0.410752,0.920799,0.831827,0.41651,0.780937,0.863577,0.618615,0.668017,0.798423,0.180084,0.933182,0.5115,0.0585571,0.920985,0.515864,0.0227679,0.296702,0.914211,0.762496,0.279054,0.976048,0.167997,0.434278,0.764543,0.126924,0.164229,0.531123,0.175948,0.966374,0.825563,0.797426,0.64536,0.454189,0.059686,0.669222,0.318387,0.766312,0.371725,0.353302,0.798717,0.888384,0.0223577,0.966178,0.629492,0.0679908,0.348344,0.21013,0.818325,0.104675,0.716863,0.79711,0.0652714,0.579296,0.0121746,0.651177,0.973078,0.594849,0.908963,0.677915,0.784712,0.196589,0.638213,0.270253,0.704394,0.336071,0.765223,0.935515,0.854283,0.0715596,0.311375,0.654151,0.155809,0.0244796,0.80137,0.398082,0.301086,0.895405,0.0782208,0.211845,0.367429,0.715095,0.56125,0.494575,0.385983,0.682687,0.201018,0.759459,0.685273,0.00354713,0.466345,0.86955,0.770566,0.594193,0.492269,0.841502,0.331581,0.859547,0.758112,0.444696,0.458196,0.806991,0.723442,0.0595115,0.425822,0.876421,0.596766,0.168058,0.805543,0.112506,0.482673,0.470542,0.403824,0.549969,0.605964,0.521495,0.00678676,0.21431,0.0412047,0.732122,0.516431,0.735618,0.674582,0.418093,0.511741,0.891351,0.92944,0.153094,0.570928,0.0375841,0.266894,0.44102,0.981228,0.199324,0.962254,0.815066,0.376913,0.144438,0.472406,0.458614,0.538852,0.935831,0.659884,0.322134,0.380958,0.226468,0.0286818,0.485821,0.0373567,0.622683,0.0880026,0.319047,0.119326,0.824231,0.723083,0.302046,0.959188,0.636956,0.10181,0.688137,0.325292,0.249119,0.807756,0.859297,0.269139,0.710479,0.809431,0.760274,0.66299,0.417616,0.305234,0.555659,0.0573425,0.835693,0.432497,0.641192,0.85736,0.12506,0.916856,0.576218,0.675885,0.444661,0.436239,0.367345,0.70203,0.408904,0.99547,0.658861,0.400723,0.521776,0.549985,0.0858673,0.344909,0.950384,0.527869,0.120834,0.689101,0.629027,0.226191,0.991238,0.621195,0.807114,0.0298405,0.414683,0.241542,0.909166,0.413825,0.943238,0.40653,0.0734571,0.682736,0.345322,0.348749,0.126879,0.563417,0.166753,0.0915348,0.0923999,0.574381,0.93118,0.581408,0.168828,0.952738,0.400313,0.51652,0.170986,0.558942,0.530328,0.461685,0.881008,0.135244,0.123157,0.628154,0.438655,0.434883,0.0345506,0.909811,0.459482,0.825432,0.583318,0.41607,0.208543,0.333359,0.422132,0.159867,0.572471,0.573197,0.508392,0.290145,0.915999,0.144751,0.664514,0.806437,0.273457,0.666034,0.910952,0.614955,0.235472,0.500358,0.347272,0.728695,0.681657,0.54035,|0.498569,0.0246285,0.578321,0.804515,0.345501,0.631684,0.610976,0.570386,0.167495,0.834888,0.177227,0.548633,0.0977286,0.0621175,0.969462,0.285114,0.870216,0.36156,0.951009,0.84108,0.4052,0.0254421,0.942861,0.351837,0.789162,0.436732,0.0891016,0.12372,0.58923,0.84988,0.543069,0.850079,0.601945,0.864644,0.532071,0.927795,0.985242,0.578626,0.0941694,0.706833,0.807576,0.838987,0.480068,0.0875497,0.24425,0.890448,0.139856,0.108064,0.782807,0.337701,0.789439,0.266473,0.866335,0.660682,0.21113,0.437756,0.677998,0.391672,0.0224155,0.593564,0.0323166,0.761145,0.897099,0.732959,0.661738,0.10407,0.0744185,0.940851,0.915622,0.97866,0.576118,0.687563,0.23826,0.378382,0.16075,0.539785,0.943382,0.441675,0.741243,0.308249,0.0511966,0.362456,0.968553,0.0321088,0.325078,0.172373,0.679686,0.106134,0.466211,0.871937,0.0963118,0.154385,0.763594,0.619764,0.406885,0.551946,0.575765,0.739829,0.061453,0.546972,0.287451,0.247392,0.134932,0.974483,0.49365,0.246366,0.419426,0.484054,0.134706,0.818768,0.60901,0.452437,0.160038,0.668518,0.989956,0.483975,0.32588,0.551311,0.43768,0.789298,0.436163,0.260879,0.199179,0.390551,0.972426,0.190554,0.782303,0.464482,0.450475,0.428165,0.839426,0.0915899,0.599046,0.261588,0.183078,0.777534,0.550789,0.448948,0.762105,0.244055,0.526335,0.483718,0.846358,0.993496,0.212434,0.646523,0.982574,0.924222,0.697895,0.41471,0.349615,0.296664,0.781547,0.551847,0.287796,0.633908,0.71372,0.299966,0.496359,0.792678,0.00628924,0.322503,0.713776,0.169922,0.962995,0.697504,0.541567,0.794948,0.230503,0.187895,0.0415204,0.0181324,0.0374613,0.453382,0.196053,0.512034,0.000252187,0.765953,0.261426,0.524894,0.425877,0.433028,0.706921,0.975956,0.0246904,0.213902,0.733471,0.15664,0.493258,0.638769,0.626624,0.709711,0.00714868,0.0354874,0.92912,0.797992,0.560816,0.648112,0.8414,0.0414875,0.29148,0.0553507,0.487597,0.734917,0.513415,0.486349,0.477605,0.877553,0.798896,0.0019089,0.672937,0.0924655,0.348133,0.899737,0.848749,0.619237,0.616375,0.66026,0.190053,0.81112,0.963896,0.189389,0.955033,0.688934,0.563937,0.703488,0.564378,0.403625,0.235178,0.959726,0.260561,0.959244,0.0074836,0.694423,0.255661,0.882866,0.434375,0.933376,0.064362,0.0130194,0.356354,0.48623,0.730076,0.56335,0.346183,0.620861,0.530461,0.077616,0.354989,0.927423,0.890143,0.321933,0.87248,0.936657,0.455877,0.60295,0.562778,0.71279,0.912683,0.845924,0.504027,0.376373,0.679961,0.82522,0.44771,0.55735,0.0704114,0.83246,0.50598,0.669088,0.471815,0.973366,0.952434,0.925057,0.433641,0.695469,0.593845,0.205486,0.0520579,0.765539,0.831854,0.066034,0.0651149,0.476888,0.738755,0.139044,0.338968,0.884204,0.5873,0.456236,0.138361,0.361006,0.958688,0.0924588,0.283819,0.362488,0.755208,0.542253,0.558802,0.281437,0.716833,0.433116,0.862583,0.0780197,0.280245,0.0833883,0.619126,0.522626,0.224531,0.343904,0.258725,0.892606,0.511388,0.782868,0.155622,0.217641,0.734728,0.563311,0.843108,0.758885,0.695292,0.84487,0.58547,0.599796,0.398346,0.273577,0.732784,0.624315,0.00237215,0.282384,0.878313,0.726643,0.482569,0.789334,0.635068,0.767805,0.713762,0.676909,0.835261,0.439402,0.530253,0.17762,0.355774,0.196194,0.826364,0.307681,0.262733,0.601444,0.0149643,0.600285,0.0611776,0.415409,0.057901,0.958316,0.49121,0.179655,0.248468,0.475116,0.0603303,0.764455,0.916079,0.862895,0.598002,0.816304,0.926345,0.0624316,0.581146,0.451267,0.437608,0.889772,0.503472,0.939344,0.791793,0.498783,0.209004,0.566382,0.812206,0.508917,0.603973,0.477605,0.279543,0.263465,0.483203,0.82422,0.405677,0.625454,0.292922,0.855765,0.033489,0.511001,0.711466,0.511377,0.120928,0.835103,0.408239,0.450529,0.0219026,0.576247,0.710754,0.103909,0.766888,0.902629,0.872172,0.26338,0.178993,0.128093,0.482188,0.951812,0.767828,0.328975,0.661767,0.980172,0.909633,0.895516,0.820584,0.0221,0.357121,0.142473,0.504456,0.503863,0.415754,0.632588,0.465345,0.721874,0.466897,0.908733,0.932224,0.0575066,0.591254,0.833055,0.251647,0.950412,0.0627834,0.873871,0.577182,0.108783,0.113117,0.0931853,0.615828,0.898344,0.925469,0.469736,0.887409,0.538435,0.0828884,0.396968,0.170142,0.509913,0.668401,0.603482,0.778534,0.290755,0.491231,0.670323,0.919715,0.7425,0.382385,0.874223,0.105449,0.210758,0.344233,0.73037,0.258296,0.476596,0.687613,0.566553,0.280044,0.443479,0.452224,0.689868,0.99802,0.515819,0.55293,0.496198,0.636128,0.785535,0.795334,0.0126173,0.486908,0.210231,0.8735,0.508643,0.080194,0.236581,0.608619,0.0289074,0.700039,0.820693,0.421565,0.615518,0.903293,0.543594,0.497404,0.327471,0.462443,0.420928,0.103729,0.58294,0.115614,0.941081,0.173963,0.847894,0.680996,0.96617,0.366543,0.121243,0.626524,0.376234,0.720673,0.503716,0.121735,0.808695,0.122709,0.0929614,0.303289,0.935371,0.572507,0.763873,0.300102,0.279201,0.510596,0.479228,0.46246,0.551636,0.901375,0.244759,0.45116,0.979671,0.467345,0.971615,0.0104287,0.972126,0.485622,0.39888,0.492259,0.998062,0.0110471,0.512132,0.0297318,0.271937,0.125113,0.840357,0.332145,0.442983,0.897659,0.952041,0.151257,0.826057,0.415594,0.682586,0.42818,0.894427,0.371306,0.22475,0.108949,0.0756611,0.908107,0.784271,0.323141,0.0762993,0.563221,0.52529,0.552107,0.537809,0.0340814,0.482262,0.355542,0.429803,0.809968,0.376139,0.26395,0.0072456,0.139112,0.994621,0.592791,0.140374,0.734322,0.333564,0.803738,0.212162,0.823463,0.579472,0.247534,0.692151,0.880084,0.787976,0.876338,0.466159,0.70338,0.913105,0.218394,0.519824,0.371187,0.15941,0.194997,0.656551,0.828665,0.568552,0.79132,0.309465,0.0438393,0.307305,0.14882,0.20486,0.838637,0.0839419,0.230719,0.468235,0.810935,0.863616,0.576293,0.427709,0.488762,0.341946,0.388668,0.209256,0.0323554,0.363758,0.0874273,0.716417,0.687324,0.65861,0.677241,0.0495027,0.702515,0.702632,0.499316,0.385373,0.218109,0.600223,0.812698,0.0123596,0.801443,0.606058,0.448001,0.618773,0.385267,0.832003,0.573627,0.709208,0.406009,0.139806,0.844394,0.764644,0.790386,0.726005,0.821125,0.629306,0.807686,0.445719,0.106512,0.870038,0.990211,0.669512,0.172408,0.871197,0.0765989,0.089902,0.526681,0.675814,0.445693,0.757124,0.570922,0.612714,0.353414,0.524009,0.967179,0.0350705,0.964711,0.626414,0.879023,0.505884,0.902223,0.162686,0.051916,0.658811,0.477076,0.498837,0.752868,0.549325,0.366444,0.239995,0.483455,0.879001,0.858006,0.490183,0.250084,0.471617,0.562636,0.411402,0.749833,0.635517,0.46731,0.856422,0.378877,0.791884,0.589587,0.792042,0.492981,0.571839,0.0728472,0.709049,0.566789,0.0743708,0.443747,0.256735,0.975209,0.649878,0.04351,0.709303,0.398016,0.959358,0.265982,0.761719,0.723732,0.788578,0.387237,0.0671257,0.715109,0.791781,0.948824,0.851058,0.909631,0.523413,0.394035,0.744362,0.324337,0.924913,0.191389,0.818102,0.872884,0.796296,0.636604,0.0458807,0.341253,0.844117,0.554717,0.98542,0.595025,0.789816,0.479735,0.599034,0.863138,0.898016,0.0662066,0.267682,0.103674,0.828371,0.332273,0.246341,0.488258,0.988176,0.124698,0.079056,0.351288,0.829993,0.292936,0.986034,0.224516,0.937724,0.80828,0.721274,0.497951,0.353671,0.729016,0.771732,0.525326,0.870811,0.589061,0.885989,0.6609,0.36133,0.357505,0.840063,0.827744,0.476072,0.00222284,0.582388,0.8698,0.705079,0.0393157,0.300312,0.695158,0.951557,0.605769,0.775032,0.854321,0.241542,0.515437,0.480817,0.734361,0.431214,0.60425,0.0746872,0.956392,0.742143,0.464404,0.93151,0.482035,0.441132,0.799127,0.0499979,0.365917,0.724261,0.00702715,0.865547,0.885858,0.294502,0.5518,0.180025,0.0472721,0.960815,0.51953,0.636513,0.588187,0.454196,0.78554,0.199662,0.0784412,0.972394,0.18902,0.167268,0.391663,0.755642,0.610221,0.892106,0.928583,0.680608,0.729651,0.8947,0.522525,0.309886,0.285788,0.572301,0.222822,0.173302,0.619373,0.471135,0.572757,0.47777,0.759418,0.337427,0.659574,0.840926,0.287185,0.834194,0.436329,0.304327,0.582965,0.813331,0.135823,0.543804,0.134089,0.737382,0.319343,0.924022,0.430178,0.542287,0.732435,0.0205433,0.676289,0.6773,0.341426,0.0327921,0.491789,0.0128595,0.621697,0.359729,0.2546,0.541934,0.407696,0.47297,0.724582,0.446288,0.987945,0.308227,0.0380533,0.513447,0.270645,0.758526,0.907658,0.378372,0.387103,0.00428915,0.555441,0.725981,0.624059,0.556854,0.513779,0.12147,0.45313,0.832754,0.0572878,0.944194,0.376826,0.784723,0.330277,0.861599,0.336661,0.575602,0.549794,0.0245991,0.361538,0.659421,0.121513,0.643082,0.306415,0.4827,0.924615,0.501026,0.817383,0.408498,0.12309,0.370759,0.006405,0.337067,0.443492,0.513717,0.0799342,0.801329,0.290944,0.878599,0.814149,0.760671,0.372629,0.717293,0.933113,0.222237,0.947349,0.0776752,0.63186,0.774377,0.150771,0.478936,0.894833,0.17004,0.410812,0.523043,0.387725,0.675887,0.266297,0.191557,0.428914,0.390985,0.688416,0.863539,0.937873,0.781556,0.505,0.665759,0.140208,0.578582,0.0774395,0.0991749,0.222128,0.187784,0.955679,0.114049,0.532177,0.481148,0.64127,0.285709,0.475028,0.0636062,0.559742,0.839624,0.808213,0.772846,0.314984,0.985832,0.934268,0.916804,0.576156,0.718387,0.574951,0.327695,0.088554,0.584163,0.949899,0.0964883,0.622844,0.990075,0.383191,0.0861288,0.590301,0.532555,0.144172,0.30138,0.359344,0.482248,0.151278,0.364135,0.0383257,0.470808,0.201061,0.925878,0.80842,0.131044,0.388327,0.329892,|0.846354,0.458483,0.966535,0.488411,0.447957,0.534341,0.446373,0.665621,0.583991,0.0739129,0.50251,0.413403,0.963247,0.568783,0.0922722,0.306686,0.498906,0.741312,0.211961,0.959654,0.891558,0.13551,0.460157,0.109408,0.754347,0.0685298,0.81734,0.845506,0.946429,0.0234321,0.092224,0.992688,0.459679,0.815671,0.378228,0.152748,0.731884,0.90642,0.936278,0.252391,0.576523,0.495178,0.663367,0.417289,0.937556,0.256857,0.919756,0.559253,0.558969,0.807481,0.883095,0.435188,0.316895,0.257534,0.273218,0.545902,0.112393,0.19788,0.592412,0.926595,0.241074,0.622484,0.353941,0.169283,0.47453,0.267087,0.652059,0.929401,0.612433,0.733432,0.906924,0.16813,0.239699,0.0947279,0.936647,0.677286,0.730382,0.883882,0.196361,0.376054,0.911393,0.192282,0.710565,0.0647282,0.113049,0.164422,0.91695,0.015202,0.517218,0.724511,0.321062,0.238071,0.224634,0.340491,0.984449,0.457683,0.775435,0.971361,0.997228,0.378865,0.47776,0.686442,0.60943,0.87811,0.155402,0.52058,0.0535689,0.756664,0.248703,0.282664,0.981449,0.395984,0.925728,0.949506,0.0230179,0.0819802,0.776684,0.164179,0.187419,0.879597,0.0580697,0.161638,0.879332,0.827427,0.302134,0.0907679,0.978012,0.537079,0.771954,0.748545,0.876426,0.280942,0.69533,0.214917,0.194619,0.880553,0.873211,0.129564,0.973496,0.0538749,0.150333,0.174146,0.403024,0.923126,0.441189,0.914766,0.428255,0.1612,0.311562,0.527137,0.924829,0.781017,0.962122,0.221902,0.00527298,0.31015,0.557312,0.47081,0.411764,0.00658309,0.489607,0.449076,0.427161,0.674849,0.868136,0.458306,0.651037,0.986362,0.96853,0.422848,0.479006,0.455288,0.950359,0.862312,0.112729,0.329502,0.928262,0.629239,0.747198,0.700549,0.655911,0.158109,0.216119,0.390863,0.0391204,0.30058,0.131638,0.830476,0.89094,0.403591,0.32779,0.104957,0.878617,0.859376,0.512744,0.57814,0.712974,0.843479,0.114669,0.141829,0.974829,0.678134,0.793233,0.168619,0.625509,0.208902,0.757977,0.853791,0.635593,0.458515,0.450894,0.900151,0.427436,0.938091,0.199104,0.584624,0.723989,0.618107,0.505413,0.242686,0.614116,0.760974,0.506825,0.404201,0.585899,0.0690469,0.0742723,0.0890222,0.970459,0.308451,0.460896,0.720659,0.679032,0.730492,0.772707,0.954116,0.340717,0.555853,0.0129337,0.166271,0.0872014,0.948637,0.896956,0.720726,0.0629804,0.284703,0.318057,0.599025,0.289672,0.130358,0.43731,0.960189,0.0184562,0.821561,0.46293,0.300133,0.703646,0.23358,0.014166,0.601574,0.248498,0.224392,0.962696,0.376386,0.657438,0.00576729,0.102522,0.982881,0.795166,0.174824,0.929014,0.291034,0.451797,0.929704,0.878997,0.515006,0.893212,0.64477,0.29752,0.870515,0.92945,0.458993,0.382515,0.207887,0.616172,0.824571,0.496468,0.159279,0.672683,0.036212,0.321308,0.830431,0.123158,0.366192,0.828396,0.575416,0.795554,0.0648009,0.75358,0.69605,0.30039,0.276649,0.826418,0.642133,0.360296,0.438681,0.0493386,0.463504,0.684961,0.427137,0.965254,0.219081,0.514028,0.473956,0.961572,0.920362,0.270594,0.266254,0.776325,0.816867,0.0893037,0.470358,0.498118,0.891282,0.255137,0.677939,0.142597,0.81187,0.398348,0.767467,0.143254,0.122423,0.270104,0.667323,0.962491,0.460829,0.851311,0.835341,0.64942,0.240407,0.0161463,0.365354,0.0519173,0.353226,0.995672,0.949878,0.859761,0.0508446,0.314145,0.58785,0.371489,0.110862,0.480461,0.947428,0.867222,0.304195,0.997522,0.954538,0.0957966,0.848343,0.593893,0.629659,0.211211,0.477534,0.365341,0.00781769,0.162007,0.755529,0.659323,0.790159,0.184576,0.934678,0.964822,0.348052,0.976436,0.893065,0.748674,0.0903638,0.466713,0.503412,0.107921,0.733745,0.267633,0.487981,0.751169,0.942592,0.28049,0.100737,0.931369,0.545876,0.677965,0.27038,0.428004,0.702603,0.755375,0.673306,0.317099,0.827638,0.876487,0.437756,0.36331,0.612825,0.547563,0.977624,0.0345927,0.265385,0.960455,0.036038,0.901234,0.971122,0.0807612,0.97844,0.336812,0.180988,0.512511,0.744666,0.417259,0.982598,0.670393,0.269974,0.968545,0.00327897,0.677092,0.480273,0.943487,0.544342,0.638473,0.613126,0.475563,0.865661,0.919268,0.820305,0.753535,0.826073,0.991187,0.276609,0.334408,0.672478,0.57071,0.411779,0.685706,0.320235,0.453841,0.897675,0.923472,0.524459,0.949773,0.399353,0.447404,0.770407,0.45665,0.0699973,0.762987,0.00129861,0.198779,0.760146,0.633743,0.432657,0.432324,0.271683,0.573316,0.617979,0.64666,0.715665,0.269723,0.734781,0.468799,0.247445,0.0406116,0.697395,0.171785,0.514707,0.89851,0.421254,0.765485,0.365301,0.412655,0.543706,0.399114,0.741204,0.111774,0.0196811,0.655211,0.559583,0.23512,0.414851,0.686595,0.104408,0.0643664,0.760545,0.858723,0.558773,0.179748,0.326171,0.722716,0.561266,0.13562,0.266581,0.689842,0.577572,0.301733,0.713924,0.204341,0.626034,0.54988,0.0720216,0.0836967,0.147968,0.194173,0.439462,0.224153,0.638366,0.206042,0.670824,0.605043,0.185675,0.877344,0.829864,0.0914065,0.438009,0.373406,0.322516,0.77734,0.796588,0.135382,0.208022,0.848496,0.191753,0.891955,0.290528,0.203263,0.498062,0.92878,0.684994,0.20425,0.420134,0.278552,0.7637,0.107854,0.707395,0.376699,0.212132,0.346336,0.683611,0.27975,0.604159,0.680247,0.362258,0.471937,0.793304,0.0480767,0.809199,0.200098,0.867638,0.232498,0.877945,0.798029,0.95869,0.422591,0.32952,0.51273,0.466459,0.0361881,0.227097,0.0795416,0.292165,0.976168,0.809946,0.452695,0.0666282,0.0747494,0.780351,0.216642,0.75263,0.563527,0.926984,0.413965,0.729321,0.440323,0.149549,0.599417,0.0793132,0.222496,0.643014,0.31066,0.214906,0.278685,0.710445,0.521555,0.615635,0.0219908,0.328486,0.172145,0.621033,0.322841,0.584325,0.487542,0.340481,0.931551,0.566401,0.831543,0.170406,0.592986,0.545793,0.660828,0.490004,0.470486,0.150783,0.696781,0.322495,0.728901,0.957024,0.522489,0.0736077,0.462087,0.962369,0.300594,0.22039,0.00948334,0.696984,0.3053,0.31706,0.763504,0.855494,0.40234,0.363632,0.0893766,0.434519,0.220297,0.605104,0.0523481,0.133823,0.974453,0.0157123,0.0425474,0.768644,0.377908,0.314534,0.29627,0.706833,0.107703,0.904563,0.381983,0.592376,0.916982,0.817606,0.593827,0.0533384,0.786467,0.857126,0.147811,0.870403,0.645396,0.925017,0.817786,0.871899,0.462019,0.547321,0.184963,0.695871,0.671423,0.587641,0.553441,0.398047,0.876202,0.699004,0.684606,0.79193,0.0505822,0.384002,0.163285,0.831735,0.549189,0.514875,0.500719,0.15255,0.544292,0.690418,0.587044,0.45372,0.419102,0.268547,0.601084,0.276919,0.58329,0.735934,0.53213,0.0934343,0.942298,0.847019,0.87846,0.975743,0.0692018,0.388083,0.0421163,0.620425,0.122895,0.378145,0.126213,0.854541,0.185429,0.728432,0.318276,0.68419,0.308926,0.400183,0.959394,0.597288,0.99532,0.121283,0.746057,0.104978,0.695277,0.583319,0.472545,0.749928,0.273031,0.561366,0.679602,0.758788,0.50067,0.656861,0.948781,0.789964,0.0774742,0.123974,0.873017,0.312298,0.0721351,0.47289,0.38524,0.280097,0.811029,0.164036,0.590063,0.301799,0.783724,0.0454723,0.495942,0.838018,0.345449,0.942142,0.519,0.063253,0.548326,0.632703,0.492023,0.489709,0.25653,0.91879,0.337124,0.163547,0.666371,0.536929,0.35981,0.774683,0.569341,0.797291,0.729616,0.237161,0.409566,0.584002,0.883857,0.322171,0.247544,0.134628,0.0927518,0.448019,0.802673,0.510601,0.712005,0.324416,0.244513,0.883661,0.29841,0.349726,0.326581,0.465935,0.275175,0.576633,0.760126,0.47278,0.612629,0.0881696,0.236458,0.549772,0.741821,0.467969,0.838285,0.667486,0.957971,0.526934,0.525192,0.0171229,0.330545,0.794548,0.31156,0.552443,0.924733,0.949906,0.745154,0.11108,0.818177,0.463007,0.399416,0.61273,0.298238,0.662812,0.32088,0.705964,0.854722,0.527963,0.396762,0.802202,0.648047,0.510586,0.24644,0.339037,0.491073,0.911067,0.248841,0.6256,0.693163,0.833338,0.290876,0.538817,0.270394,0.277421,0.295746,0.173341,0.809961,0.328525,0.626217,0.883021,0.225485,0.22452,0.684241,0.293054,0.215282,0.416936,0.00513923,0.922412,0.706604,0.249466,0.509535,0.385665,0.683926,0.645492,0.0174854,0.243921,0.951089,0.828004,0.725682,0.695523,0.0779612,0.974597,0.632178,0.436335,0.579214,0.510473,0.183267,0.890453,0.905063,0.345107,0.377679,0.96233,0.127652,0.387939,0.0743818,0.0201513,0.558989,0.4308,0.639167,0.0655543,0.081624,0.290121,0.2514,0.183247,0.0816596,0.689623,0.611646,0.5915,0.176631,0.274954,0.734489,0.608074,0.97865,0.686421,0.890595,0.708861,0.571068,0.645867,0.574294,0.0901917,0.403285,0.641715,0.54277,0.391989,0.94977,0.136459,0.800185,0.616194,0.11714,0.341341,0.681917,0.340873,0.981447,0.0641837,0.333114,0.117645,0.72536,0.683897,0.964107,0.644759,0.73521,0.164403,0.900282,0.842803,0.589902,0.118743,0.540906,0.322046,0.405281,0.752351,0.673419,0.35687,0.400719,0.995237,0.573999,0.603449,0.0691165,0.322962,0.440598,0.0865648,0.360626,0.196271,0.444891,0.988083,0.743942,0.639356,0.104875,0.672155,0.887384,0.957919,0.607507,0.631644,0.666799,0.342199,0.64783,0.495389,0.415106,0.346065,0.411775,0.225019,0.787598,0.213355,0.184306,0.0867567,0.123752,0.00765234,0.534557,0.527479,0.128407,0.0520026,0.23938,0.922995,0.647726,0.898491,0.471525,0.883087,0.188422,0.906824,0.0228555,0.933794,0.233114,0.856683,0.203493,0.872,0.502671,0.610743,0.57445,0.193185,0.817805,0.770922,0.122902,0.826509,0.154635,0.802661,0.944763,0.227969,0.806192,0.297388,0.484634,0.348153,0.642181,0.146055,0.511125,0.385828,0.8989,0.840226,|0.087904,0.0184369,0.838387,0.608479,0.0668017,0.93704,0.396944,0.764013,0.540064,0.290455,0.441454,0.614284,0.834139,0.384242,0.651304,0.22088,0.518592,0.306799,0.574508,0.235786,0.593932,0.557644,0.132311,0.753747,0.94749,0.668981,0.805777,0.80107,0.719843,0.0140817,0.878296,0.146321,0.848046,0.9103,0.737548,0.274182,0.252468,0.382345,0.725451,0.523407,0.897652,0.207274,0.766153,0.348144,0.26995,0.454911,0.0797202,0.673072,0.346166,0.843283,0.73361,0.243739,0.0877442,0.394327,0.150748,0.4713,0.226721,0.508325,0.917884,0.134576,0.670763,0.103158,0.527438,0.754936,0.177169,0.269043,0.47635,0.525773,0.211946,0.667856,0.899672,0.721245,0.553585,0.895623,0.618202,0.890881,0.405779,0.222402,0.621974,0.192719,0.812762,0.146165,0.0108993,0.951613,0.58864,0.324373,0.247804,0.550626,0.647773,0.842134,0.438927,0.32906,0.438007,0.0672299,0.347063,0.16653,0.570107,0.081273,0.711547,0.952172,0.493059,0.863792,0.13128,0.765028,0.698415,0.87672,0.94232,0.50406,0.419194,0.520584,0.736897,0.37284,0.854579,0.776103,0.173806,0.330338,0.964514,0.545225,0.171811,0.45929,0.114674,0.606922,0.763361,0.967908,0.639868,0.0515911,0.0726349,0.734357,0.719133,0.0642834,0.942851,0.851604,0.56125,0.528834,0.467029,0.10506,0.653243,0.0223636,0.627904,0.566312,0.726022,0.925244,0.435997,0.349999,0.611531,0.731014,0.838298,0.981589,0.385145,0.202984,0.81762,0.902818,0.324616,0.268185,0.813339,0.285928,0.402709,0.879279,0.765192,0.0838562,0.568454,0.189591,0.927513,0.940796,0.47156,0.96974,0.952062,0.613178,0.261527,0.212973,0.583225,0.586748,0.847542,0.64952,0.0804445,0.826041,0.743507,0.426091,0.687402,0.687912,0.541285,0.780697,0.861247,0.380962,0.889334,0.132905,0.644124,0.914691,0.0626536,0.52013,0.27222,0.303348,0.54166,0.969705,0.783194,0.796185,0.732531,0.640154,0.172085,0.495634,0.545178,0.880547,0.340877,0.826856,0.740608,0.412929,0.556601,0.144903,0.32199,0.343591,0.675059,0.32343,0.437187,0.568859,0.45273,0.119424,0.0910474,0.0318352,0.763562,0.681155,0.446128,0.393348,0.852753,0.98971,0.223942,0.541356,0.736841,0.255562,0.36588,0.208743,0.290655,0.771087,0.824122,0.206281,0.995593,0.571444,0.674418,0.906883,0.0600039,0.440951,0.185865,0.389771,0.766864,0.126111,0.0406789,0.886772,0.308711,0.388755,0.898355,0.394283,0.133562,0.441203,0.491631,0.756435,0.38045,0.478902,0.398404,0.616633,0.426604,0.810537,0.0570113,0.297779,0.251553,0.627317,0.828053,0.579061,0.170037,0.789527,0.544147,0.265087,0.622345,0.268542,0.672556,0.0649108,0.39645,0.969219,0.762908,0.322369,0.562292,0.416615,0.852723,0.322598,0.643245,0.322289,0.258024,0.486875,0.75111,0.857405,0.678572,0.459528,0.508096,0.0464473,0.652211,0.771943,0.452989,0.545196,0.457896,0.0742567,0.411042,0.566013,0.949211,0.338506,0.778343,0.676373,0.266407,0.388027,0.369102,0.120335,0.0649549,0.560365,0.10433,0.191727,0.685037,0.960304,0.800355,0.899072,0.229237,0.690166,0.275179,0.535279,0.796167,0.852075,0.536807,0.23122,0.411819,0.348621,0.392145,0.649579,0.320782,0.59313,0.0579797,0.739157,0.464378,0.277849,0.0599413,0.728616,0.149178,0.519259,0.93481,0.443614,0.727224,0.0704951,0.696484,0.528231,0.0190795,0.165646,0.761194,0.137905,0.0871773,0.343121,0.0827053,0.980981,0.922318,0.107518,0.0492999,0.357789,0.109223,0.00102007,0.81944,0.805889,0.865069,0.444685,0.117847,0.680698,0.832424,0.875994,0.147881,0.038819,0.0651262,0.640042,0.888793,0.671336,0.259906,0.458086,0.116628,0.859894,0.60032,0.277661,0.31348,0.63549,0.65129,0.0589252,0.0206621,0.454963,0.181822,0.848225,0.340314,0.531549,0.930715,0.496977,0.97299,0.289652,0.712162,0.702499,0.917403,0.565919,0.794632,0.334429,0.413838,0.173821,0.354447,0.109012,0.828309,0.194752,0.478697,0.944901,0.660366,0.265782,0.500037,0.156711,0.1399,0.0822417,0.413041,0.644574,0.227881,0.852983,0.433062,0.91337,0.790052,0.479171,0.00420147,0.627661,0.984786,0.197835,0.315691,0.230923,0.389988,0.732037,0.836822,0.941687,0.616963,0.866579,0.433243,0.107386,0.222899,0.82883,0.737327,0.659736,0.905687,0.992158,0.35189,0.54028,0.241192,0.642578,0.385602,0.836574,0.108583,0.894903,0.709064,0.887091,0.245115,0.370965,0.127025,0.894498,0.793341,0.460889,0.356648,0.359031,0.0447558,0.645253,0.132723,0.017864,0.665261,0.68238,0.670551,0.887236,0.951367,0.642101,0.249536,0.550898,0.885866,0.159024,0.830405,0.0723624,0.964489,0.515752,0.141965,0.779857,0.327116,0.167604,0.16526,0.180072,0.135963,0.604034,0.969495,0.745966,0.92966,0.120568,0.570375,0.366733,0.629228,0.77534,0.4244,0.0359268,0.641675,0.275708,0.337667,0.178815,0.80334,0.548482,0.946638,0.942786,0.0120143,0.0812219,0.703287,0.162731,0.774525,0.978907,0.739522,0.582159,0.198729,0.700898,0.132999,0.0444705,0.0573988,0.0933238,0.54635,0.149818,0.72385,0.432969,0.203018,0.260606,0.874696,0.0596356,0.988068,0.391396,0.561907,0.761464,0.691064,0.270019,0.282399,0.0282207,0.0230454,0.056582,0.461153,0.738078,0.391019,0.381298,0.347381,0.197769,0.954833,0.806205,0.238866,0.140194,0.807595,0.808025,0.826634,0.495001,0.706666,0.0306452,0.955492,0.763337,0.924405,0.349669,0.87995,0.331106,0.633331,0.862873,0.93112,0.397752,0.301764,0.377624,0.653168,0.634005,0.0967847,0.424093,0.353867,0.320817,0.781361,0.779968,0.499133,0.372425,0.493397,0.454774,0.671874,0.403633,0.606055,0.420197,0.144585,0.166103,0.0725386,0.135851,0.800099,0.0127237,0.559987,0.765363,0.562664,0.603473,0.685818,0.378506,0.666202,0.910314,0.935645,0.862825,0.837545,0.31118,0.564355,0.378455,0.289634,0.587018,0.289771,0.692065,0.909439,0.756202,0.399564,0.590515,0.853961,0.779204,0.47849,0.453477,0.380423,0.16006,0.465021,0.989274,0.758186,0.0247816,0.368263,0.891177,0.366562,0.0024026,0.878097,0.680898,0.692953,0.380853,0.938136,0.793168,0.771128,0.130447,0.0962499,0.259394,0.308134,0.725369,0.510363,0.897851,0.294207,0.967826,0.951805,0.996975,0.771363,0.814415,0.363144,0.818349,0.383136,0.590201,0.89879,0.0167922,0.507509,0.835732,0.931756,0.000505686,0.727457,0.830293,0.768499,0.0538675,0.475967,0.209941,0.677425,0.543755,0.0111046,0.58928,0.186971,0.58813,0.312395,0.1594,0.182173,0.603107,0.375523,0.912663,0.688447,0.862852,0.658248,0.512501,0.101508,0.885226,0.924431,0.657616,0.877515,0.245975,0.77812,0.763693,0.433718,0.351196,0.314579,0.311323,0.407413,0.502926,0.787625,0.168561,0.646241,0.717137,0.0933812,0.383822,0.968551,0.464577,0.665847,0.40252,0.0924444,0.750136,0.949483,0.438077,0.983698,0.0026567,0.67777,0.470391,0.875854,0.461502,0.738626,0.514937,0.479004,0.28251,0.860309,0.360169,0.13982,0.334012,0.827243,0.529486,0.748199,0.616114,0.270967,0.729196,0.449886,0.645467,0.481025,0.63468,0.0355491,0.663747,0.7904,0.622827,0.0424445,0.36257,0.120022,0.418017,0.849851,0.813491,0.80643,0.734737,0.680493,0.0759286,0.66611,0.369619,0.260866,0.52268,0.393004,0.55907,0.540811,0.961659,0.184457,0.346873,0.435976,0.132441,0.150412,0.643203,0.447866,0.465771,0.919572,0.730831,0.665404,0.520073,0.600909,0.308292,0.77395,0.788493,0.632493,0.839581,0.033228,0.307769,0.457803,0.23166,0.903542,0.523689,0.437366,0.210721,0.556075,0.570374,0.258863,0.107028,0.0520341,0.238521,0.94295,0.214538,0.912325,0.979234,0.668034,0.231085,0.717535,0.191171,0.966682,0.766448,0.112478,0.37913,0.163341,0.879265,0.633119,0.569499,0.97031,0.142521,0.248201,0.206873,0.448417,0.881777,0.131571,0.754769,0.497854,0.166377,0.340913,0.859781,0.344105,0.116365,0.159752,0.500629,0.701566,0.0527867,0.962155,0.445203,0.47268,0.73789,0.374604,0.371649,0.110756,0.334186,0.322812,0.375793,0.291077,0.155792,0.48327,0.0765397,0.901876,0.901515,0.9769,0.847987,0.737132,0.787806,0.130249,0.417602,0.739173,0.869466,0.990977,0.368597,0.687463,0.632859,0.909734,0.911397,0.580885,0.657176,0.192482,0.0618958,0.211314,0.865578,0.808759,0.984061,0.720359,0.145965,0.988474,0.547792,0.351162,0.986883,0.00985277,0.825079,0.652622,0.751738,0.0792443,0.379102,0.301686,0.324455,0.225113,0.718352,0.168499,0.863598,0.596302,0.923614,0.839042,0.00521857,0.166604,0.905835,0.877225,0.854891,0.640147,0.807822,0.173148,0.683152,0.0259464,0.456541,0.151948,0.147641,0.332832,0.455261,0.0425293,0.668156,0.417489,0.901652,0.292731,0.193693,0.65037,0.954878,0.348114,0.201563,0.521448,0.118657,0.930685,0.829513,0.428096,0.372039,0.0816212,0.684496,0.927174,0.717802,0.928681,0.970908,0.88425,0.645474,0.908627,0.268743,0.553876,0.73434,0.402598,0.290933,0.79863,0.488452,0.841152,0.858319,0.432884,0.444579,0.231019,0.112384,0.275648,0.195032,0.334643,0.261981,0.272481,0.177168,0.610269,0.574816,0.892692,0.564301,0.932447,0.842928,0.909777,0.282827,0.895461,0.272772,0.823559,0.776726,0.0499511,0.912,0.904257,0.837371,0.97885,0.210355,0.237785,0.191255,0.0356017,0.25723,0.156157,0.934817,0.779023,0.285579,0.577179,0.760585,0.514205,0.172627,0.873132,0.96614,0.0813701,0.92709,0.493645,0.694057,0.603791,0.475446,0.501997,0.133387,0.831163,0.00814527,0.743213,0.689425,0.483291,0.723992,0.225098,0.613976,0.327449,0.0736627,0.0186023,0.74637,0.288462,0.257224,0.937232,0.458147,0.624222,0.135971,0.751157,0.969332,0.467051,0.0119098,0.806025,0.350919,0.175196,0.900934,0.433485,0.8611,0.130831,0.696069,|0.934782,0.0511236,0.538626,0.454453,0.725148,0.61802,0.505522,0.330877,0.642101,0.223008,0.827606,0.967399,0.953948,0.0571019,0.0679876,0.173945,0.279128,0.734313,0.431278,0.0658267,0.649857,0.0588509,0.73756,0.84849,0.920951,0.531348,0.958931,0.994411,0.103602,0.332206,0.655932,0.193561,0.55047,0.978453,0.804197,0.718894,0.206335,0.0351089,0.672867,0.803764,0.762764,0.193066,0.124804,0.143241,0.441712,0.75501,0.844532,0.701646,0.646112,0.380186,0.457338,0.974209,0.387546,0.449039,0.617608,0.398808,0.101789,0.674941,0.821533,0.575899,0.900256,0.969467,0.357647,0.200816,0.997931,0.227381,0.219231,0.171882,0.104255,0.87244,0.993816,0.498462,0.674579,0.531258,0.773521,0.771843,0.745719,0.940576,0.161931,0.396736,0.857273,0.0424578,0.152487,0.248865,0.196606,0.335166,0.604308,0.32894,0.393265,0.845434,0.630851,0.493036,0.309565,0.767857,0.263614,0.848943,0.01595,0.230491,0.855372,0.128874,0.0615395,0.334909,0.339535,0.455742,0.0652848,0.0450428,0.318953,0.651008,0.650735,0.550575,0.274805,0.358946,0.286374,0.856269,0.875039,0.298127,0.130044,0.406282,0.446231,0.656778,0.270371,0.703257,0.385249,0.2951,0.513045,0.954279,0.419542,0.310992,0.134952,0.78834,0.553699,0.933171,0.339044,0.869729,0.0575544,0.413468,0.426142,0.415827,0.357413,0.200815,0.803256,0.72406,0.197537,0.402715,0.188261,0.00837398,0.114468,0.793062,0.341167,0.026799,0.26659,0.177336,0.719309,0.0394216,0.962534,0.124695,0.91343,0.135642,0.636742,0.435415,0.945011,0.957478,0.480289,0.361624,0.763225,0.589488,0.75468,0.0486085,0.777873,0.374881,0.947368,0.400394,0.542364,0.444169,0.0323198,0.0186779,0.904355,0.520216,0.691697,0.769446,0.885886,0.307786,0.653074,0.82893,0.622986,0.562509,0.375909,0.407484,0.214548,0.934893,0.314962,0.746978,0.233345,0.405429,0.707965,0.0249184,0.474413,0.338213,0.641641,0.144515,0.773121,0.900906,0.62509,0.715793,0.322462,0.456189,0.42322,0.711174,0.452853,0.462056,0.897919,0.804674,0.238254,0.552102,0.409568,0.614821,0.925397,0.543698,0.454701,0.19154,0.868864,0.0276024,0.138881,0.788978,0.658734,0.92331,0.334717,0.157831,0.682485,0.930542,0.623189,0.0982977,0.952305,0.26828,0.282907,0.232748,0.699291,0.154178,0.306147,0.490092,0.13261,0.631042,0.444657,0.827488,0.0389906,0.840506,0.166293,0.00957197,0.932735,0.344781,0.22872,0.389033,0.203499,0.261841,0.17072,0.308062,0.633386,0.772048,0.157753,0.632598,0.110429,0.295713,0.622211,0.706007,0.248306,0.760898,0.15543,0.725073,0.565334,0.890109,0.850347,0.708881,0.424495,0.483981,0.685083,0.110154,0.361739,0.198537,0.906625,0.120781,0.194519,0.38588,0.161526,0.225742,0.183748,0.486722,0.29143,0.701206,0.0140375,0.869281,0.637323,0.827509,0.469578,0.811808,0.509941,0.318601,0.789227,0.963651,0.543251,0.916844,0.944911,0.601497,0.195027,0.269404,0.538782,0.887206,0.737399,0.735415,0.99881,0.361156,0.945614,0.293265,0.345423,0.263328,0.028761,0.859357,0.842428,0.426176,0.116403,0.941647,0.367011,0.0216057,0.639524,0.743322,0.590587,0.293525,0.333377,0.222264,0.304325,0.087187,0.889354,0.159717,0.0793426,0.0978555,0.429886,0.521409,0.307397,0.828678,0.793984,0.907361,0.707677,0.511546,0.657864,0.0564356,0.266016,0.112816,0.924285,0.150525,0.117679,0.32581,0.775412,0.601533,0.0685424,0.397778,0.908228,0.458514,0.644784,0.519819,0.321214,0.410416,0.832128,0.868793,0.456034,0.43429,0.40965,0.923775,0.728761,0.772395,0.385838,0.0665239,0.979376,0.802402,0.0834465,0.124771,0.30798,0.150511,0.694049,0.335763,0.979216,0.575283,0.54041,0.252358,0.18708,0.856311,0.50077,0.764892,0.839505,0.0887801,0.357036,0.311592,0.71196,0.201248,0.200718,0.397527,0.294402,0.46283,0.0855303,0.0155017,0.882767,0.0849633,0.904068,0.888858,0.252853,0.483655,0.655329,0.726217,0.272836,0.439096,0.329888,0.0546183,0.0551861,0.712449,0.893608,0.955364,0.605934,0.492887,0.347763,0.732378,0.86295,0.96126,0.891444,0.619945,0.136614,0.383558,0.301128,0.549171,0.567112,0.489147,0.969696,0.0279137,0.420883,0.693327,0.0199125,0.630377,0.655219,0.0681542,0.357734,0.61721,0.617214,0.497991,0.512436,0.971638,0.951999,0.987238,0.679338,0.169987,0.660842,0.883744,0.385419,0.0726838,0.902745,0.442714,0.961906,0.144165,0.15733,0.659302,0.759111,0.41762,0.415719,0.335181,0.0921642,0.189956,0.700886,0.191606,0.940091,0.381698,0.0708115,0.891766,0.0984533,0.749181,0.926231,0.582274,0.269248,0.936661,0.526854,0.231027,0.894757,0.278143,0.790592,0.0870067,0.173746,0.902264,0.679416,0.286545,0.621287,0.58106,0.107601,0.405907,0.439876,0.614234,0.980466,0.794819,0.701651,0.77834,0.434414,0.976224,0.190141,0.670022,0.309931,0.672753,0.630729,0.0724838,0.581189,0.827337,0.410688,0.988355,0.250973,0.571213,0.717012,0.747384,0.148298,0.499146,0.381816,0.520186,0.248992,0.974823,0.133527,0.339692,0.937518,0.0157164,0.698429,0.22448,0.864032,0.663973,0.0821754,0.24859,0.636318,0.317148,0.827507,0.666458,0.356792,0.48627,0.460327,0.266901,0.00330281,0.0936123,0.357663,0.996925,0.371716,0.0806863,0.300562,0.229428,0.549562,0.76004,0.398129,0.758784,0.747335,0.441744,0.998925,0.577233,0.751862,0.048957,0.798864,0.121797,0.88973,0.582231,0.555378,0.660355,0.367924,0.906276,0.117537,0.773355,0.837179,0.192571,0.73643,0.713299,0.902588,0.245472,0.438882,0.530944,0.723696,0.334575,0.987557,0.599079,0.733677,0.661933,0.154138,0.692914,0.443138,0.28236,0.238545,0.324099,0.484165,0.916979,0.773276,0.236312,0.259711,0.220048,0.867692,0.53446,0.597574,0.176744,0.889839,0.284173,0.979756,0.438821,0.648763,0.5304,0.818299,0.172616,0.395037,0.903239,0.181426,0.493189,0.952837,0.0150457,0.122073,0.325831,0.362262,0.179837,0.940164,0.542723,0.315574,0.62876,0.914919,0.556655,0.510708,0.899564,0.294531,0.136203,0.693019,0.69571,0.0607148,0.918268,0.171154,0.233709,0.492982,0.284961,0.347811,0.89331,0.199064,0.00299299,0.291484,0.765354,0.827884,0.1903,0.651661,0.998903,0.68344,0.239814,0.488799,0.626773,0.859609,0.445332,0.747105,0.757929,0.949398,0.711377,0.555897,0.771938,0.940882,0.807417,0.497659,0.434783,0.328304,0.74912,0.92682,0.891379,0.226491,0.60795,0.00773191,0.44863,0.724061,0.331697,0.540195,0.458,0.606323,0.199555,0.188322,0.297461,0.947245,0.999549,0.357055,0.515055,0.150365,0.769356,0.0467929,0.725034,0.794939,0.965783,0.724844,0.3565,0.284478,0.554574,0.236905,0.93942,0.108111,0.141149,0.896993,0.479183,0.312572,0.372554,0.235338,0.0707995,0.0110838,0.0949358,0.930057,0.46228,0.596035,0.807274,0.483786,0.0978212,0.849823,0.627464,0.959826,0.494094,0.120918,0.422843,0.353484,0.259457,0.841743,0.119145,0.215694,0.840675,0.127582,0.762773,0.383088,0.584009,0.412008,0.216254,0.902667,0.413784,0.514681,0.202001,0.999991,0.160432,0.403621,0.478278,0.295092,0.307744,0.213356,0.972213,0.783277,0.607807,0.833361,0.170083,0.315846,0.957782,0.0869635,0.6896,0.334402,0.873991,0.483206,0.334587,0.0891156,0.113424,0.990599,0.79064,0.418541,0.983557,0.535542,0.487308,0.72237,0.194811,0.348454,0.14181,0.0610004,0.775351,0.148428,0.690969,0.153294,0.98768,0.755646,0.746445,0.95286,0.278668,0.051168,0.991209,0.729145,0.000762343,0.961613,0.869867,0.844641,0.466131,0.124856,0.386285,0.817246,0.0480918,0.661302,0.76323,0.582364,0.981298,0.585986,0.968864,0.129102,0.873419,0.151252,0.757831,0.288016,0.560558,0.213077,0.0273783,0.707767,0.202985,0.111801,0.505704,0.684978,0.86564,0.711926,0.635219,0.845047,0.22022,0.702212,0.450428,0.320204,0.728433,0.802189,0.546615,0.30342,0.114886,0.869225,0.747462,0.436608,0.465338,0.196918,0.400774,0.472009,0.77834,0.440095,0.751146,0.239319,0.366925,0.241345,0.904237,0.953967,0.295782,0.979381,0.844001,0.35488,0.733502,0.548264,0.587995,0.831258,0.93553,0.0755201,0.623373,0.371756,0.452856,0.903162,0.00134945,0.651239,0.197662,0.171894,0.418009,0.0237067,0.0177454,0.524892,0.871842,0.330254,0.434661,0.249396,0.690222,0.321467,0.461509,0.0423242,0.583983,0.193229,0.424041,0.158322,0.312226,0.17184,0.971964,0.0192069,0.871028,0.418061,0.241215,0.145036,0.399895,0.00881696,0.541608,0.509085,0.0313328,0.560432,0.384003,0.609392,0.979245,0.529262,0.977411,0.970283,0.778094,0.221677,0.204801,0.0481066,0.7638,0.636454,0.69223,0.480421,0.835458,0.233101,0.503723,0.176151,0.359108,0.768508,0.701014,0.247994,0.444558,0.107073,0.141962,0.673482,0.080596,0.417682,0.064446,0.769354,0.688169,0.803331,0.103917,0.790317,0.495429,0.598715,0.340414,0.428453,0.789972,0.861122,0.808636,0.823031,0.0985227,0.188839,0.0995955,0.586067,0.606895,0.438322,0.870775,0.772565,0.373607,0.570736,0.473576,0.114466,0.4028,0.980834,0.859058,0.785901,0.391561,0.124242,0.37362,0.324452,0.21123,0.921728,0.768797,0.865957,0.168308,0.694931,0.410189,0.824796,0.386872,0.431985,0.0512988,0.528892,0.964688,0.0784993,0.93232,0.0833603,0.258365,0.363173,0.70108,0.346655,0.836066,0.914105,0.852213,0.89973,0.17895,0.180128,0.685826,0.814413,0.939254,0.91738,0.345944,0.264838,0.280756,0.303606,0.516773,0.446192,0.876588,0.122188,0.922576,0.387269,0.0715258,0.420732,0.380085,0.908318,0.349,0.891747,0.432976,0.647124,0.579816,0.821518,0.475615,0.547496,0.618086,0.0359339,0.744248,0.717641,0.775858,0.117975,0.0213099,0.070488,0.535235,0.457643,0.485256,0.508431,0.0626155,|0.428376,0.280174,0.0258099,0.185685,0.769024,0.24639,0.538502,0.964102,0.49217,0.353239,0.879592,0.737455,0.820318,0.147027,0.875303,0.830278,0.824147,0.547482,0.60713,0.858634,0.632216,0.364917,0.0863845,0.156051,0.257309,0.396628,0.967229,0.677521,0.920096,0.278201,0.497214,0.355608,0.800179,0.101555,0.97658,0.231608,0.344276,0.884758,0.724882,0.778914,0.975206,0.0506118,0.260393,0.998729,0.1889,0.902141,0.372932,0.912473,0.80381,0.309807,0.733822,0.0136368,0.845963,0.952888,0.467279,0.765404,0.541909,0.599986,0.260997,0.836614,0.0790857,0.94727,0.586694,0.171695,0.602802,0.370344,0.425766,0.670258,0.550495,0.306352,0.0714365,0.38579,0.109215,0.702522,0.0306157,0.875214,0.134679,0.881144,0.631062,0.390038,0.75853,0.783342,0.991323,0.719603,0.751987,0.315148,0.979178,0.262082,0.246409,0.338648,0.42718,0.161835,0.30024,0.433627,0.718409,0.3004,0.360502,0.235406,0.951842,0.237977,0.607077,0.99013,0.987362,0.969299,0.959947,0.208779,0.630161,0.922946,0.967599,0.813021,0.363357,0.638902,0.662519,0.964083,0.756581,0.71989,0.732667,0.221397,0.401418,0.979415,0.67275,0.827481,0.792844,0.0154657,0.623249,0.781804,0.539216,0.898408,0.212716,0.0429209,0.674455,0.359709,0.175002,0.768021,0.569973,0.939065,0.830428,0.270192,0.931817,0.166939,0.425975,0.679043,0.965331,0.195734,0.0586885,0.131855,0.302128,0.49037,0.810063,0.650626,0.751491,0.454713,0.656823,0.913082,0.781267,0.58204,0.745347,0.590799,0.399284,0.461041,0.648175,0.217623,0.45655,0.636344,0.0427171,0.294987,0.402204,0.117979,0.599092,0.808799,0.239187,0.619294,0.128088,0.436664,0.0676641,0.974691,0.524414,0.258475,0.98705,0.273961,0.230621,0.0742304,0.668565,0.914618,0.899942,0.59821,0.949688,0.212512,0.326101,0.946353,0.268296,0.60245,0.675239,0.706588,0.604712,0.178464,0.661889,0.028879,0.177574,0.373112,0.921846,0.0053401,0.723211,0.394542,0.358482,0.87199,0.524269,0.156111,0.444769,0.19613,0.915403,0.170326,0.543574,0.540301,0.897252,0.619959,0.933179,0.229117,0.61136,0.747351,0.548473,0.944288,0.683082,0.221363,0.813369,0.422812,0.920675,0.841693,0.764414,0.830667,0.196363,0.171385,0.801366,0.416089,0.539964,0.631126,0.346802,0.967738,0.0474475,0.763536,0.826465,0.215129,0.710596,0.188127,0.962761,0.815447,0.0371516,0.855642,0.63783,0.204812,0.428325,0.751465,0.334939,0.674638,0.983628,0.763532,0.570499,0.249663,0.326896,0.307998,0.608074,0.798964,0.0583438,0.369083,0.881335,0.0865795,0.508399,0.913599,0.994061,0.61739,0.0848725,0.613051,0.98721,0.271487,0.793392,0.41097,0.586442,0.390777,0.844145,0.618395,0.890507,0.670062,0.556055,0.178188,0.434421,0.873906,0.173963,0.474927,0.549728,0.669326,0.628153,0.519171,0.254448,0.310976,0.56413,0.819636,0.655189,0.394337,0.577085,0.0777589,0.858401,0.62265,0.189672,0.382731,0.62422,0.266531,0.547567,0.578919,0.260069,0.921681,0.340173,0.614214,0.735187,0.55437,0.913169,0.746971,0.658119,0.771661,0.908523,0.979167,0.875113,0.38195,0.795084,0.485066,0.205288,0.575279,0.667302,0.391249,0.0601428,0.774443,0.517551,0.37386,0.848203,0.781749,0.235418,0.250847,0.913545,0.745712,0.657819,0.00353909,0.924704,0.955423,0.949137,0.205555,0.616196,0.342356,0.673669,0.447725,0.661971,0.30064,0.490283,0.917288,0.339389,0.893088,0.716297,0.596859,0.208913,0.546207,0.717169,0.949595,0.597254,0.263269,0.597518,0.671678,0.609882,0.610888,0.579568,0.660316,0.894066,0.00950223,0.889107,0.611544,0.529673,0.225679,0.103755,0.416303,0.863751,0.537995,0.400657,0.21922,0.266207,0.379247,0.401604,0.117252,0.475575,0.290688,0.284558,0.828754,0.977736,0.260522,0.657676,0.745286,0.163172,0.307112,0.340159,0.984564,0.871401,0.51181,0.813813,0.945664,0.446552,0.0682551,0.64939,0.116685,0.942968,0.329465,0.41357,0.411331,0.766179,0.547101,0.755604,0.467045,0.298076,0.173697,0.463987,0.153296,0.690443,0.507966,0.107968,0.938665,0.650366,0.581282,0.698609,0.290405,0.778163,0.541988,0.520312,0.579373,0.709014,0.0137001,0.135417,0.583083,0.375595,0.739057,0.697737,0.357386,0.758077,0.489118,0.807865,0.0895666,0.730359,0.737555,0.822893,0.464214,0.910143,0.807826,0.300258,0.105374,0.450821,0.352722,0.322738,0.52119,0.152843,0.731418,0.50792,0.550952,0.903985,0.749229,0.465368,0.321766,0.0206521,0.920629,0.583299,0.379329,0.538042,0.995488,0.198837,0.51864,0.699375,0.0260092,0.263127,0.0586163,0.473654,0.0106999,0.441716,0.847703,0.314436,0.691707,0.723168,0.479589,0.629397,0.00157756,0.124821,0.950418,0.544609,0.642508,0.973843,0.845958,0.821619,0.88814,0.610261,0.652247,0.568014,0.0429879,0.158025,0.382425,0.21153,0.343907,0.00684226,0.0876377,0.499081,0.899587,0.182848,0.181826,0.764457,0.766063,0.758439,0.0393732,0.161235,0.938168,0.566748,0.109898,0.298427,0.767894,0.633923,0.121515,0.840078,0.802279,0.779546,0.872398,0.815365,0.644217,0.232749,0.939495,0.00691748,0.881467,0.244839,0.370388,0.0890725,0.771378,0.101757,0.713716,0.472721,0.875962,0.537848,0.102258,0.0683497,0.497068,0.246983,0.318512,0.811571,0.87745,0.94377,0.491516,0.933534,0.256226,0.187771,0.149746,0.953543,0.795758,0.00716335,0.339432,0.00420505,0.641833,0.988613,0.386696,0.508682,0.742061,0.768337,0.316064,0.00304168,0.811552,0.672145,0.206123,0.833466,0.0271509,0.993641,0.305341,0.859576,0.654533,0.438946,0.953793,0.886312,0.619185,0.93034,0.654379,0.630167,0.332276,0.9591,0.533318,0.698348,0.614809,0.329553,0.38884,0.421728,0.624431,0.83124,0.12138,0.133473,0.599482,0.785185,0.179667,0.346662,0.149206,0.502377,0.568081,0.19392,0.634156,0.212243,0.98779,0.844517,0.267043,0.85505,0.967206,0.870361,0.954047,0.316027,0.789233,0.293972,0.717112,0.0606873,0.647181,0.909528,0.954318,0.532484,0.0979211,0.712224,0.89191,0.0988986,0.111395,0.491584,0.281444,0.719781,0.43598,0.389541,0.636698,0.0236754,0.614076,0.281544,0.322598,0.380591,0.977468,0.474393,0.385963,0.294819,0.397922,0.0782309,0.280962,0.349586,0.525823,0.744739,0.513455,0.7223,0.394364,0.0923349,0.493075,0.0442769,0.141457,0.537005,0.537253,0.148021,0.282731,0.76822,0.768066,0.072962,0.870059,0.0612152,0.340514,0.746615,0.7526,0.781186,0.34927,0.651146,0.265432,0.59245,0.384018,0.967411,0.554917,0.986982,0.208322,0.956213,0.708589,0.596441,0.0461218,0.979275,0.887117,0.261437,0.870693,0.342348,0.738961,0.0549061,0.888484,0.519876,0.505821,0.614891,0.505949,0.663657,0.768408,0.598864,0.312621,0.330323,0.502027,0.926911,0.847574,0.295593,0.940616,0.692494,0.600579,0.963617,0.684398,0.733934,0.611,0.289327,0.547069,0.92045,0.52962,0.856259,0.924878,0.785051,0.397039,0.379764,0.200868,0.490614,0.546356,0.648761,0.245875,0.684859,0.817231,0.762617,0.645955,0.0698003,0.614028,0.846811,0.961512,0.516216,0.632893,0.879674,0.20448,0.595467,0.799227,0.950193,0.311469,0.339364,0.886371,0.064351,0.996154,0.412369,0.668557,0.451221,0.000330508,0.96066,0.918146,0.477852,0.0649084,0.428535,0.336096,0.072093,0.835145,0.990937,0.794028,0.0947769,0.976833,0.0873013,0.484846,0.31272,0.504729,0.786497,0.416224,0.607252,0.193011,0.0631693,0.87691,0.354822,0.539194,0.589846,0.496154,0.27368,0.565672,0.125658,0.255776,0.315485,0.635852,0.044174,0.425262,0.0798416,0.000830352,0.400078,0.102746,0.929694,0.0834448,0.888773,0.771178,0.874947,0.0500989,0.153931,0.623586,0.321635,0.210422,0.515044,0.31527,0.197496,0.300184,0.374605,0.870383,0.558157,0.148914,0.0677455,0.652833,0.086556,0.844009,0.597473,0.075781,0.36862,0.515692,0.900948,0.993693,0.489723,0.403696,0.0363014,0.617999,0.717058,0.144502,0.4654,0.863123,0.167321,0.99199,0.711258,0.131029,0.385158,0.393199,0.18995,0.924519,0.764757,0.5016,0.169168,0.0574372,0.0483986,0.560601,0.393932,0.696761,0.163219,0.0191414,0.57226,0.624793,0.342175,0.44685,0.761068,0.126164,0.471685,0.518227,0.102122,0.169774,0.874596,0.846751,0.082461,0.821563,0.448167,0.179817,0.7694,0.324717,0.395089,0.057144,0.0702931,0.234943,0.315103,0.942125,0.0735903,0.781161,0.621116,0.549647,0.19472,0.568641,0.101554,0.680225,0.647043,0.165685,0.627824,0.6482,0.648949,0.808751,0.262888,0.852635,0.174541,0.772465,0.530547,0.623164,0.0234695,0.607821,0.429821,0.175434,0.70438,0.387721,0.587826,0.785112,0.621907,0.167734,0.710049,0.0544225,0.0905879,0.920771,0.141099,0.519113,0.122169,0.994506,0.442901,0.542981,0.542534,0.875485,0.641828,0.0939818,0.739589,0.306904,0.355097,0.261108,0.419351,0.238464,0.505565,0.274523,0.591438,0.872095,0.219062,0.517561,0.780802,0.485967,0.848531,0.90992,0.781361,0.299724,0.493637,0.228608,0.853456,0.0821189,0.501542,0.90661,0.924472,0.319534,0.185124,0.781128,0.434234,0.656715,0.485241,0.592756,0.194649,0.631308,0.995765,0.00266725,0.0861059,0.526234,0.969,0.33196,0.924341,0.253081,0.663731,0.363996,0.323459,0.383855,0.953945,0.548704,0.028493,0.321226,0.842441,0.958983,0.801569,0.971671,0.585175,0.272859,0.069882,0.463983,0.63372,0.136724,0.881824,0.437968,0.392654,0.118783,0.581123,0.322219,0.597223,0.477285,0.700215,0.758474,0.0465004,0.270563,0.603961,0.618524,0.923947,0.354564,0.972094,0.968391,0.131673,0.670303,0.419733,0.177049,0.469665,0.429945,0.724127,0.93773,0.243517,0.863104,0.920166,0.718956,0.0564557,0.751407,0.941853,0.569096,0.142703,0.645545,0.952061,0.13969,0.0266986,0.385301,|0.137143,0.200561,0.826878,0.344935,0.890212,0.706564,0.169338,0.00982904,0.13507,0.125696,0.189275,0.165942,0.334829,0.203501,0.197197,0.470478,0.163378,0.865494,0.663119,0.35567,0.943382,0.0846196,0.480419,0.0764647,0.528548,0.762886,0.296211,0.851956,0.459533,0.108039,0.962348,0.342092,0.97732,0.874965,0.691815,0.983542,0.848953,0.446346,0.399057,0.445099,0.212871,0.324214,0.961129,0.7586,0.248847,0.577561,0.103294,0.696039,0.138054,0.277671,0.911768,0.923874,0.873226,0.556603,0.0319552,0.054359,0.176608,0.249643,0.435069,0.97278,0.559571,0.0879196,0.883108,0.507894,0.200762,0.189634,0.886869,0.0854072,0.361509,0.745234,0.734134,0.60024,0.539344,0.776855,0.574296,0.765019,0.859345,0.746144,0.243687,0.175311,0.752896,0.432254,0.305203,0.812898,0.98083,0.570581,0.117152,0.16227,0.038057,0.896751,0.449318,0.26507,0.382449,0.405473,0.934393,0.05753,0.461148,0.350909,0.935907,0.31553,0.54905,0.118073,0.467081,0.658313,0.516091,0.870987,0.692306,0.452627,0.244557,0.00908041,0.166425,0.779948,0.424626,0.962614,0.0845919,0.10837,0.257387,0.718001,0.965385,0.798582,0.0949351,0.0465607,0.158994,0.195545,0.577652,0.46598,0.658467,0.148774,0.202711,0.332987,0.75203,0.391871,0.714093,0.796456,0.00555658,0.812386,0.851765,0.692508,0.795827,0.877322,0.831746,0.0963129,0.525886,0.239311,0.602537,0.992112,0.0727046,0.0341971,0.120329,0.748771,0.683078,0.42862,0.420428,0.605003,0.817943,0.864682,0.866425,0.289189,0.635601,0.0183303,0.200696,0.0487199,0.514205,0.281953,0.753025,0.86422,0.159546,0.144342,0.377957,0.015935,0.0185938,0.576401,0.496801,0.355947,0.0318171,0.469286,0.893833,0.36672,0.153156,0.230597,0.625772,0.980559,0.841022,0.483566,0.746994,0.404678,0.151021,0.770494,0.879079,0.371403,0.75898,0.142861,0.0699879,0.517198,0.613358,0.0829673,0.379784,0.73544,0.862848,0.676371,0.314431,0.856889,0.0170816,0.495551,0.707729,0.620511,0.896175,0.786419,0.664102,0.55938,0.948428,0.181837,0.441902,0.58002,0.390352,0.865978,0.371991,0.701176,0.991077,0.681644,0.911806,0.831437,0.259014,0.556909,0.44378,0.290801,0.757538,0.242433,0.049307,0.94252,0.637762,0.422304,0.20271,0.612236,0.741817,0.194128,0.607897,0.547949,0.224471,0.0800117,0.665124,0.981331,0.657463,0.709438,0.743373,0.550527,0.512659,0.420579,0.764643,0.776938,0.832001,0.364142,0.117316,0.125105,0.0875981,0.372818,0.590942,0.213523,0.350965,0.933891,0.538847,0.0213161,0.215311,0.850491,0.0196897,0.916241,0.182981,0.133229,0.844304,0.00110912,0.300534,0.380313,0.443893,0.949332,0.953521,0.0178294,0.881395,0.144051,0.753862,0.759421,0.824592,0.113906,0.623691,0.469903,0.768879,0.928602,0.137841,0.125917,0.225696,0.914562,0.775783,0.118277,0.7336,0.671515,0.540028,0.579268,0.958038,0.0885694,0.674671,0.87048,0.658876,0.741844,0.847069,0.855103,0.294664,0.92846,0.276215,0.0362663,0.351831,0.211072,0.374757,0.317851,0.591549,0.883486,0.7826,0.97899,0.0149437,0.460825,0.631585,0.694273,0.486678,0.752288,0.120854,0.653483,0.988501,0.598198,0.540898,0.963494,0.781354,0.00857389,0.60805,0.188456,0.0666152,0.795686,0.375706,0.326827,0.577913,0.262431,0.731201,0.659054,0.190284,0.969946,0.284534,0.171273,0.93422,0.809992,0.00210512,0.56529,0.463685,0.822207,0.635795,0.606903,0.156783,0.461778,0.489257,0.0354219,0.215725,0.395669,0.533717,0.879299,0.539271,0.0834728,0.159298,0.695867,0.994185,0.827763,0.909371,0.290333,0.120397,0.603341,0.582697,0.938065,0.957393,0.237972,0.463721,0.71349,0.19967,0.802112,0.436795,0.967744,0.0462006,0.254186,0.256519,0.833575,0.277238,0.389419,0.0366722,0.604041,0.0375178,0.518163,0.530267,0.119695,0.245242,0.483824,0.169701,0.66937,0.709773,0.0217986,0.13445,0.609111,0.566086,0.768051,0.928196,0.662368,0.725339,0.259515,0.857288,0.271503,0.648321,0.542193,0.905398,0.0854416,0.621442,0.971962,0.57098,0.546672,0.610387,0.7563,0.864385,0.350616,0.671165,0.77211,0.846555,0.103815,0.179241,0.0105494,0.612699,0.832745,0.773728,0.795745,0.211294,0.663505,0.387547,0.684994,0.659929,0.488554,0.286777,0.0916106,0.251094,0.416596,0.0802409,0.15777,0.249675,0.293575,0.654092,0.256662,0.0239049,0.884304,0.716432,0.71754,0.750715,0.702322,0.0806231,0.59414,0.886857,0.81507,0.118182,0.0095104,0.320394,0.234365,0.694905,0.430361,0.294732,0.797334,0.965819,0.111235,0.326774,0.0719552,0.720027,0.282189,0.445474,0.476286,0.0936522,0.707825,0.546354,0.683912,0.588526,0.407782,0.0208155,0.375274,0.383269,0.625082,0.694898,0.852318,0.596597,0.422312,0.0724662,0.798408,0.300956,0.203815,0.953129,0.36453,0.657343,0.0352458,0.204943,0.00598103,0.644831,0.165572,0.361175,0.0688879,0.216324,0.117636,0.364156,0.410481,0.359189,0.450516,0.0442081,0.874117,0.45483,0.18475,0.179295,0.868568,0.136175,0.633003,0.240133,0.919299,0.0797819,0.214165,0.307574,0.94066,0.150961,0.588984,0.35329,0.190749,0.0850809,0.792361,0.907159,0.494317,0.4145,0.967674,0.743389,0.174037,0.0887725,0.0757869,0.222774,0.933732,0.1074,0.401412,0.616709,0.22576,0.823543,0.0675806,0.49668,0.207871,0.641421,0.170718,0.611441,0.504001,0.0258203,0.398634,0.465054,0.764475,0.640368,0.00692999,0.535025,0.815839,0.201129,0.982488,0.639202,0.805142,0.31724,0.702061,0.198486,0.464063,0.656012,0.216764,0.781902,0.595381,0.795243,0.625224,0.199246,0.339586,0.710858,0.271968,0.0579903,0.0376067,0.148386,0.00458384,0.403154,0.926239,0.368557,0.879358,0.703856,0.377,0.936748,0.57738,0.570509,0.819038,0.45633,0.499487,0.531608,0.0699382,0.777203,0.711863,0.0151239,0.848691,0.481482,0.105031,0.787031,0.970231,0.600459,0.551563,0.801554,0.616568,0.468701,0.119123,0.192057,0.897719,0.167293,0.851052,0.729113,0.4184,0.855029,0.653164,0.812283,0.0767813,0.985022,0.561542,0.484813,0.311731,0.757064,0.544094,0.0301024,0.366292,0.48658,0.00860161,0.810098,0.286189,0.671015,0.795873,0.582331,0.299596,0.667654,0.189982,0.0890559,0.39646,0.801541,0.270925,0.181121,0.984767,0.246007,0.14265,0.439712,0.336596,0.30369,0.940055,0.863305,0.0082702,0.19489,0.918078,0.13987,0.583539,0.180237,0.372164,0.071334,0.110069,0.475814,0.230977,0.348963,0.802387,0.194943,0.994003,0.0252784,0.146812,0.962816,0.216884,0.558643,0.952385,0.761382,0.486613,0.065765,0.372145,0.220822,0.143294,0.020905,0.249997,0.434371,0.825894,0.880769,0.578188,0.909656,0.971804,0.74593,0.52856,0.449582,0.990771,0.222834,0.964043,0.58432,0.944512,0.230387,0.352104,0.113074,0.478482,0.854946,0.870987,0.748249,0.027459,0.78885,0.190144,0.136056,0.803227,0.831955,0.318669,0.813577,0.215308,0.119439,0.548076,0.818938,0.127443,0.460797,0.647102,0.106781,0.0698379,0.137786,0.02017,0.181684,0.928166,0.584353,0.415089,0.0342064,0.183643,0.540552,0.238377,0.517494,0.804239,0.149129,0.614172,0.153718,0.527849,0.904776,0.0991736,0.931616,0.901043,0.194726,0.298741,0.593199,0.24994,0.181015,0.662364,0.793014,0.597977,0.546798,0.682059,0.522716,0.966928,0.812664,0.710018,0.761453,0.00204825,0.491345,0.749263,0.448953,0.524381,0.702153,0.194642,0.815699,0.152192,0.408778,0.0758321,0.519296,0.985033,0.120418,0.153944,0.75484,0.810475,0.651049,0.415185,0.641648,0.337824,0.945645,0.115594,0.0447484,0.767924,0.640372,0.163875,0.337389,0.717786,0.50396,0.150472,0.760688,0.599643,0.382216,0.0638596,0.5081,0.306018,0.667053,0.306539,0.810782,0.256082,0.996601,0.408555,0.175294,0.460987,0.336718,0.171123,0.526222,0.746499,0.343909,0.367135,0.48509,0.511796,0.278318,0.64503,0.615045,0.507827,0.336873,0.877491,0.443715,0.0558187,0.0359091,0.812871,0.991189,0.812112,0.565367,0.731724,0.201624,0.782789,0.194751,0.968762,0.267935,0.800776,0.0316381,0.427439,0.629821,0.421912,0.263658,0.900031,0.215055,0.84183,0.50304,0.379785,0.743314,0.106213,0.470162,0.915452,0.0257579,0.77256,0.00109464,0.525906,0.303284,0.570798,0.56775,0.150272,0.777631,0.873285,0.928377,0.0703984,0.13115,0.474007,0.0858521,0.778628,0.804535,0.0206483,0.930201,0.52285,0.168266,0.387983,0.858464,0.252319,0.482402,0.531128,0.17723,0.615464,0.216865,0.288814,0.797905,0.0819243,0.37383,0.0374411,0.985785,0.0894083,0.973283,0.575737,0.925956,0.0669706,0.629968,0.182739,0.902732,0.622466,0.767177,0.669234,0.833951,0.939528,0.147014,0.426509,0.830273,0.786339,0.926656,0.672644,0.23806,0.738957,0.04844,0.569004,0.763597,0.5095,0.506432,0.431361,0.623892,0.394415,0.435874,0.548452,0.364745,0.373947,0.797827,0.237564,0.237454,0.706788,0.959834,0.0701108,0.779778,0.778755,0.956851,0.968547,0.560061,0.273899,0.128249,0.59925,0.0858287,0.952907,0.378809,0.800334,0.606395,0.283071,0.632062,0.592234,0.743161,0.202139,0.169869,0.170272,0.907533,0.836788,0.615856,0.628793,0.877754,0.759369,0.127389,0.170002,0.735125,0.432361,0.912942,0.472825,0.189944,0.973657,0.285393,0.0623194,0.0403338,0.418456,0.276511,0.606514,0.0315429,0.774981,0.0542504,0.117924,0.171415,0.302356,0.68483,0.802507,0.525197,0.989272,0.416345,0.510973,0.999031,0.618461,0.976428,0.441971,0.0417696,0.412316,0.902552,0.933282,0.846291,0.173698,0.308855,0.488331,0.781105,0.0889498,0.711807,0.835096,0.775432,0.837828,0.786707,0.713456,0.214041,0.281939,0.19179,0.257521,0.854227,0.732123,0.375314,0.335749,0.607625,0.558365,0.0851951,0.917791,0.284941,0.401498,0.599237,0.374389,0.956781,0.934436,|0.390504,0.292488,0.0939994,0.0946043,0.203719,0.236028,0.589167,0.397335,0.478709,0.176661,0.515186,0.63511,0.65586,0.116644,0.898795,0.0693941,0.0169791,0.364486,0.493581,0.890548,0.0931653,0.887669,0.905459,0.0202177,0.719633,0.82756,0.986419,0.66996,0.306765,0.290446,0.0428083,0.123912,0.886309,0.749895,0.775671,0.867927,0.725626,0.656854,0.251579,0.81973,0.35146,0.104273,0.435624,0.680973,0.286671,0.16843,0.368603,0.0301158,0.164241,0.387119,0.688119,0.85677,0.973406,0.24374,0.175051,0.266747,0.644568,0.265939,0.0967692,0.761034,0.749874,0.507645,0.779869,0.343333,0.526929,0.684293,0.397693,0.275352,0.034734,0.354699,0.902754,0.814928,0.26453,0.204254,0.289437,0.168768,0.817445,0.345113,0.168231,0.276672,0.105243,0.942057,0.12612,0.997416,0.629979,0.539257,0.017442,0.304186,0.337036,0.579818,0.934802,0.453895,0.67784,0.369144,0.551901,0.598251,0.676368,0.236778,0.550336,0.0753784,0.392159,0.752349,0.285274,0.154068,0.92416,0.319594,0.00283784,0.212741,0.123893,0.844501,0.730149,0.693784,0.0285457,0.762676,0.302497,0.961186,0.549252,0.553324,0.0023874,0.549151,0.0104738,0.844323,0.370602,0.39836,0.639708,0.203153,0.198512,0.283018,0.892755,0.60484,0.359754,0.120831,0.529921,0.329197,0.106392,0.432851,0.721248,0.273982,0.0719022,0.666208,0.211022,0.739308,0.430978,0.236555,0.764546,0.410052,0.85871,0.587949,0.559203,0.157623,0.205702,0.883256,0.0727407,0.840414,0.69226,0.105353,0.750522,0.358613,0.895004,0.792525,0.0298381,0.626159,0.969474,0.654714,0.00399989,0.124733,0.319242,0.29713,0.0219076,0.407132,0.298759,0.343568,0.809467,0.155968,0.975563,0.0961068,0.62495,0.611139,0.653545,0.943049,0.325421,0.620051,0.401231,0.893539,0.959944,0.526676,0.790731,0.278385,0.465683,0.298396,0.916965,0.171812,0.37737,0.763326,0.419185,0.968063,0.0815631,0.10169,0.66923,0.405686,0.475828,0.219423,0.269086,0.217737,0.0662768,0.0869182,0.388498,0.235905,0.208028,0.779917,0.208946,0.170512,0.411223,0.910956,0.672703,0.8249,0.274554,0.789446,0.208155,0.992193,0.19859,0.327798,0.842924,0.123666,0.399243,0.0649055,0.593246,0.381706,0.94273,0.34455,0.0131068,0.699038,0.968722,0.0221633,0.30702,0.603034,0.892401,0.649006,0.650398,0.800915,0.32716,0.284603,0.415658,0.110322,0.401571,0.864819,0.740565,0.972837,0.0675803,0.466014,0.544199,0.400841,0.148646,0.631814,0.334546,0.18939,0.943828,0.10621,0.0890366,0.665994,0.76639,0.848952,0.883521,0.53447,0.133671,0.18294,0.568481,0.0943543,0.644446,0.752446,0.379279,0.986987,0.0445753,0.956364,0.149408,0.146398,0.132461,0.913659,0.695839,0.776599,0.424969,0.0657276,0.518104,0.145569,0.861564,0.0237999,0.348522,0.646235,0.256416,0.639547,0.457272,0.961024,0.578246,0.282124,0.451615,0.397729,0.0408087,0.0193127,0.961204,0.679816,0.750614,0.936004,0.00749207,0.263049,0.966482,0.00798631,0.22843,0.725829,0.590759,0.0621968,0.664969,0.750576,0.851944,0.317418,0.319661,0.30059,0.805416,0.0961018,0.701574,0.815559,0.550974,0.626181,0.797561,0.733813,0.138004,0.262703,0.0863386,0.590551,0.699653,0.316427,0.808416,0.473416,0.360999,0.636517,0.0392707,0.950871,0.339351,0.218718,0.972876,0.949373,0.112703,0.222679,0.464466,0.266522,0.23279,0.320079,0.0477015,0.285547,0.725739,0.601203,0.674438,0.741308,0.937753,0.120393,0.43447,0.856484,0.480564,0.350938,0.702388,0.0594313,0.422609,0.333358,0.85479,0.318313,0.0851387,0.981642,0.22923,0.816577,0.572941,0.265097,0.466777,0.324362,0.698892,0.451802,0.689598,0.217373,0.124437,0.250536,0.665177,0.422329,0.701806,0.463255,0.547286,0.0173402,0.641292,0.389663,0.223338,0.526045,0.224532,0.544003,0.75346,0.338268,0.423258,0.657955,0.477796,0.946123,0.159147,0.56829,0.759427,0.163622,0.889673,0.543908,0.101534,0.0295629,0.923887,0.554501,0.342595,0.172385,0.126962,0.332673,0.411862,0.445457,0.180377,0.0586972,0.236415,0.537672,0.911224,0.153762,0.969989,0.503562,0.375061,0.956115,0.441906,0.0616699,0.594975,0.848555,0.0884966,0.189918,0.209667,0.972951,0.780609,0.744129,0.00453889,0.894665,0.158716,0.55065,0.0824463,0.49253,0.214575,0.145576,0.159851,0.903221,0.138311,0.815695,0.236088,0.770768,0.706069,0.559237,0.221722,0.878109,0.887168,0.0425146,0.521243,0.062994,0.123236,0.276672,0.507967,0.0771469,0.433505,0.615111,0.0443937,0.758902,0.0387064,0.332361,0.414943,0.767768,0.693266,0.315073,0.0611771,0.681933,0.0329615,0.761005,0.319986,0.356996,0.786701,0.377373,0.805234,0.19299,0.746068,0.672327,0.201176,0.319013,0.93082,0.748727,0.791412,0.808955,0.680008,0.727724,0.449166,0.432988,0.754803,0.858666,0.416432,0.171019,0.859981,0.859983,0.0748266,0.192982,0.164653,0.7265,0.490627,0.728826,0.727239,0.235392,0.490515,0.582853,0.573245,0.566414,0.382455,0.843792,0.426123,0.640547,0.40481,0.755217,0.14291,0.534468,0.2281,0.56742,0.739428,0.945455,0.434359,0.793127,0.70928,0.358292,0.633712,0.706054,0.746434,0.120468,0.38507,0.437354,0.940091,0.801435,0.326248,0.813269,0.591745,0.392583,0.954158,0.50069,0.345045,0.388967,0.394387,0.379814,0.555378,0.940649,0.844981,0.713575,0.612454,0.885097,0.0800877,0.929264,0.786843,0.410624,0.801774,0.435235,0.739566,0.00500393,0.681007,0.839571,0.524667,0.306122,0.605761,0.876436,0.605507,0.564668,0.898968,0.755256,0.0389602,0.621615,0.219243,0.393705,0.60114,0.842055,0.271855,0.658017,0.706297,0.215973,0.898554,0.483571,0.0664435,0.996958,0.784517,0.898605,0.833472,0.827939,0.535702,0.51102,0.244531,0.981001,0.654968,0.137592,0.198219,0.532301,0.288712,0.0139263,0.240136,0.308674,0.69153,0.502995,0.901495,0.869991,0.688446,0.290365,0.592779,0.119344,0.523679,0.421534,0.303198,0.00505042,0.376099,0.110301,0.883862,0.411793,0.654977,0.925017,0.549335,0.700622,0.408161,0.480335,0.924647,0.203079,0.648794,0.685788,0.267018,0.777724,0.503109,0.597865,0.757595,0.122525,0.160849,0.475385,0.351819,0.799585,0.501066,0.0439944,0.268542,0.942894,0.798311,0.989504,0.0524584,0.46465,0.4131,0.722495,0.147064,0.739394,0.471023,0.951095,0.559212,0.93811,0.788579,0.91756,0.142427,0.393604,0.16494,0.981771,0.135329,0.908996,0.162498,0.986639,0.291699,0.864827,0.288941,0.0374812,0.416357,0.379843,0.808429,0.759611,0.32757,0.404578,0.558643,0.601937,0.853469,0.225756,0.762689,0.844854,0.315915,0.718834,0.530943,0.155545,0.418366,0.512732,0.678192,0.407432,0.738229,0.848176,0.0233973,0.310358,0.30346,0.00697064,0.9207,0.52596,0.689716,0.43698,0.174078,0.387128,0.202849,0.97669,0.970369,0.909839,0.0871801,0.464659,0.0411308,0.459111,0.141168,0.0154929,0.255404,0.326494,0.804118,0.10308,0.263847,0.442641,0.236061,0.148477,0.772841,0.630795,0.348159,0.584355,0.81499,0.229304,0.709619,0.943228,0.611451,0.664046,0.662332,0.440814,0.254555,0.937727,0.31501,0.45856,0.847234,0.919931,0.636063,0.190464,0.853088,0.855232,0.442025,0.736613,0.553513,0.367271,0.719954,0.90337,0.0853812,0.951594,0.676262,0.23202,0.450606,0.710316,0.539659,0.686779,0.283388,0.730652,0.384457,0.107009,0.931597,0.450096,0.404018,0.655285,0.947698,0.109273,0.706458,0.531864,0.702673,0.774139,0.630109,0.107615,0.493537,0.00744665,0.0169032,0.245502,0.137469,0.321327,0.995598,0.0134479,0.355381,0.57081,0.569822,0.856139,0.761632,0.987292,0.631119,0.707242,0.156632,0.1646,0.527238,0.66231,0.698085,0.293174,0.167065,0.359551,0.816637,0.224924,0.785609,0.32938,0.155364,0.830611,0.250774,0.477861,0.454952,0.326371,0.165823,0.266879,0.47828,0.605785,0.67075,0.0170417,0.70036,0.866885,0.610055,0.0763274,0.883734,0.912682,0.382689,0.994097,0.604018,0.399686,0.909848,0.780342,0.371919,0.488596,0.579921,0.620448,0.211491,0.850005,0.591531,0.0409483,0.896053,0.342472,0.657899,0.740695,0.963131,0.103606,0.0365623,0.78343,0.252367,0.758668,0.705376,0.0520706,0.616337,0.131554,0.255802,0.0343689,0.0697823,0.679904,0.934863,0.808259,0.160683,0.826498,0.314304,0.0516803,0.907682,0.543652,0.764582,0.288243,0.616707,0.207188,0.966216,0.564024,0.243625,0.892538,0.481029,0.136377,0.939205,0.773225,0.638938,0.104993,0.01836,0.918214,0.636219,0.0674706,0.321672,0.353002,0.939683,0.846747,0.881474,0.687696,0.781672,0.203916,0.525891,0.274563,0.739484,0.764131,0.680421,0.93268,0.480221,0.649456,0.954209,0.949385,0.139355,0.86639,0.906599,0.701644,0.335777,0.478883,0.196889,0.331783,0.943204,0.753805,0.802208,0.715826,0.62283,0.856995,0.259417,0.354857,0.308198,0.490717,0.89752,0.122523,0.110467,0.969869,0.293361,0.900692,0.0557928,0.0767025,0.0782055,0.59418,0.525459,0.179189,0.249061,0.646518,0.0597259,0.876113,0.593494,0.792052,0.747185,0.140781,0.529291,0.503992,0.785634,0.329515,0.82146,0.282064,0.00950193,0.705641,0.173802,0.926682,0.881149,0.11026,0.000212252,0.28679,0.366296,0.947789,0.867658,0.201289,0.156503,0.535773,0.238292,0.879284,0.455693,0.300103,0.044956,0.368384,0.444021,0.526537,0.37804,0.59359,0.811352,0.883069,0.970876,0.808568,0.760279,0.269445,0.668499,0.600334,0.489816,0.929151,0.481192,0.707667,0.512325,0.176074,0.269565,0.668184,0.706672,0.878844,0.0467787,0.47415,0.727323,0.381031,0.737381,0.773796,0.683872,0.0860726,0.0553364,0.640833,0.785378,0.657099,0.185492,0.94686,0.859164,0.401322,0.759297,0.734822,0.257634,0.950293,0.84002,0.674793,0.718913,0.729296,0.178255,0.297356,0.856363,0.152066,|0.644323,0.523669,0.820967,0.36159,0.500642,0.848133,0.768937,0.973014,0.71107,0.524494,0.288371,0.185949,0.591858,0.132065,0.242526,0.495787,0.139904,0.0971688,0.449027,0.947412,0.0107985,0.759366,0.482614,0.249718,0.897254,0.472491,0.702087,0.724804,0.209491,0.633503,0.411188,0.577919,0.222973,0.945578,0.531952,0.614825,0.28385,0.318999,0.0151854,0.831345,0.0663129,0.941834,0.699686,0.758587,0.46785,0.249443,0.74965,0.351713,0.0825869,0.597392,0.404827,0.205301,0.197372,0.679529,0.870888,0.159362,0.257353,0.0294665,0.130809,0.40627,0.14026,0.920123,0.251576,0.620264,0.221739,0.0949762,0.0922834,0.336625,0.0787886,0.49273,0.0768121,0.178374,0.570274,0.551446,0.501747,0.669959,0.325993,0.121043,0.0150025,0.332853,0.172879,0.817589,0.306434,0.30496,0.773277,0.777712,0.453211,0.74233,0.498525,0.259364,0.203313,0.479902,0.786817,0.750373,0.374438,0.959073,0.523765,0.700019,0.32305,0.497495,0.833839,0.57102,0.917011,0.594468,0.496851,0.115011,0.629864,0.937521,0.200678,0.481281,0.565427,0.721439,0.666907,0.918139,0.677774,0.735511,0.851693,0.50187,0.894365,0.0655466,0.14613,0.282804,0.833521,0.353279,0.79937,0.03637,0.860536,0.377539,0.12094,0.0289093,0.545906,0.487868,0.923816,0.660534,0.707998,0.119622,0.134207,0.442633,0.221011,0.208718,0.111746,0.958773,0.176155,0.697687,0.935498,0.927915,0.913573,0.597746,0.726913,0.723267,0.591602,0.417257,0.0128057,0.991955,0.432487,0.764526,0.329798,0.0563147,0.0506327,0.159156,0.292323,0.222485,0.342313,0.662676,0.538739,0.122074,0.939104,0.170612,0.514984,0.408341,0.0882438,0.231599,0.138606,0.936114,0.523035,0.971985,0.00712168,0.718908,0.707708,0.662189,0.491634,0.443973,0.734546,0.474624,0.874876,0.732858,0.845392,0.211956,0.450985,0.041356,0.154729,0.76589,0.150552,0.250697,0.29936,0.192707,0.557743,0.98626,0.291773,0.283239,0.504015,0.607497,0.972853,0.471038,0.28161,0.403673,0.185252,0.261013,0.296017,0.441128,0.678881,0.116887,0.902471,0.367864,0.594958,0.818934,0.489726,0.784642,0.187873,0.600744,0.923624,0.17466,0.124636,0.377652,0.66664,0.778109,0.863241,0.495909,0.563101,0.927837,0.999291,0.409519,0.787695,0.470688,0.132013,0.861681,0.759447,0.0200745,0.816817,0.54771,0.283257,0.470756,0.688722,0.424652,0.0019291,0.0747574,0.415069,0.96344,0.939206,0.563072,0.178652,0.089816,0.961673,0.391581,0.337276,0.543087,0.460568,0.18829,0.172625,0.200251,0.812235,0.641607,0.989406,0.392658,0.909506,0.290499,0.641093,0.291535,0.744647,0.620925,0.72916,0.863141,0.356857,0.103489,0.377396,0.646936,0.811507,0.846738,0.0983632,0.960922,0.423651,0.284134,0.668308,0.709054,0.333396,0.43952,0.840721,0.940337,0.658571,0.485332,0.948258,0.213844,0.615191,0.194882,0.930665,0.435359,0.0262699,0.365496,0.583521,0.968006,0.704781,0.865045,0.743051,0.997097,0.0745054,0.934764,0.231645,0.452272,0.127407,0.557655,0.867295,0.965641,0.167749,0.385147,0.188234,0.0753434,0.735802,0.659491,0.0290138,0.697982,0.83487,0.571599,0.942611,0.897096,0.496089,0.634946,0.406453,0.472069,0.043317,0.86207,0.967315,0.0521667,0.951159,0.0995452,0.169068,0.429588,0.514395,0.431211,0.687214,0.89444,0.318511,0.800632,0.811242,0.930202,0.161423,0.997341,0.31559,0.816662,0.30834,0.970256,0.645182,0.944189,0.326861,0.710548,0.552059,0.968844,0.243165,0.191904,0.00854325,0.317826,0.554151,0.421557,0.978455,0.237756,0.953416,0.461004,0.944522,0.945217,0.483216,0.748378,0.847513,0.96357,0.996335,0.123458,0.107109,0.00169474,0.346293,0.698017,0.226648,0.339072,0.589038,0.651661,0.754881,0.171276,0.897122,0.900577,0.928162,0.211569,0.322627,0.564439,0.75314,0.451705,0.496415,0.166707,0.857214,0.371759,0.324807,0.441154,0.297154,0.845979,0.742895,0.952554,0.922534,0.355709,0.675284,0.774318,0.195303,0.725808,0.985005,0.56609,0.976339,0.174461,0.837494,0.887485,0.49052,0.147179,0.385548,0.504302,0.401171,0.552316,0.230976,0.67951,0.0135378,0.84829,0.59392,0.296423,0.457399,0.136434,0.061346,0.929365,0.424201,0.078742,0.719114,0.328837,0.284404,0.559074,0.879691,0.123689,0.601731,0.686483,0.435886,0.90452,0.283901,0.126351,0.597074,0.211152,0.88276,0.608399,0.76411,0.494854,0.650205,0.0915101,0.918409,0.749268,0.513685,0.0886373,0.933881,0.824357,0.806472,0.717121,0.977613,0.955165,0.647171,0.0693233,0.127844,0.89545,0.154567,0.459678,0.227369,0.965074,0.391841,0.978651,0.611302,0.710962,0.922872,0.50192,0.428003,0.702938,0.486675,0.955155,0.0353997,0.420685,0.409566,0.0559732,0.908524,0.282884,0.906092,0.795633,0.948181,0.425167,0.668876,0.814065,0.898499,0.121991,0.548966,0.259934,0.483149,0.735399,0.719885,0.777455,0.559363,0.0899163,0.36322,0.699089,0.877059,0.0374499,0.948238,0.458379,0.746746,0.679528,0.137697,0.204503,0.77217,0.6088,0.575674,0.678729,0.755351,0.808689,0.425624,0.545045,0.114161,0.0298177,0.668939,0.631666,0.117284,0.397045,0.274033,0.249773,0.234306,0.0401168,0.297763,0.989761,0.753918,0.803332,0.0122816,0.315788,0.326043,0.534394,0.228501,0.21564,0.976963,0.673126,0.341523,0.656828,0.200034,0.444032,0.946982,0.886994,0.935838,0.0721698,0.300646,0.830255,0.830842,0.763022,0.254831,0.779007,0.492824,0.0390231,0.0231327,0.269781,0.801597,0.86147,0.592777,0.784532,0.697245,0.612279,0.808783,0.634247,0.758533,0.103157,0.150263,0.612928,0.0694665,0.948045,0.0949001,0.839052,0.264288,0.483557,0.252529,0.469938,0.356318,0.760979,0.759521,0.0145296,0.0451121,0.588122,0.288411,0.640145,0.726664,0.132014,0.611356,0.494849,0.390284,0.654104,0.010933,0.0959838,0.745065,0.584986,0.125197,0.75226,0.246748,0.528321,0.490091,0.913488,0.0194556,0.275813,0.540425,0.975391,0.672293,0.606367,0.227806,0.990668,0.700133,0.173176,0.404162,0.666122,0.87043,0.0573047,0.861939,0.192926,0.851506,0.168614,0.235062,0.953803,0.374646,0.146812,0.71503,0.292942,0.979582,0.886741,0.918518,0.274231,0.262384,0.0927367,0.164835,0.524233,0.908997,0.172353,0.178649,0.0534467,0.761594,0.073158,0.928793,0.42968,0.0305032,0.979829,0.0211582,0.514197,0.575911,0.0977986,0.0390106,0.657553,0.302863,0.908639,0.997471,0.154939,0.132645,0.698096,0.081057,0.0965593,0.278255,0.753348,0.0354527,0.133512,0.446596,0.694121,0.643432,0.849191,0.265279,0.482881,0.333146,0.456048,0.344583,0.473816,0.745247,0.513535,0.342695,0.0909675,0.990569,0.894618,0.794101,0.803028,0.659886,0.20943,0.0881843,0.881099,0.512506,0.27127,0.51931,0.903149,0.0450635,0.00400871,0.528272,0.523122,0.877127,0.754189,0.992165,0.577859,0.680904,0.0874853,0.834607,0.885958,0.208768,0.561732,0.292886,0.604098,0.635812,0.10157,0.579898,0.471821,0.951937,0.399632,0.972035,0.526933,0.610801,0.993644,0.0272949,0.360839,0.757129,0.879071,0.526997,0.0487403,0.45286,0.0669763,0.365041,0.766958,0.58831,0.533612,0.763295,0.921786,0.924828,0.254174,0.118387,0.448071,0.672173,0.800391,0.046677,0.530646,0.0213842,0.0485173,0.992086,0.531491,0.981381,0.106339,0.793474,0.119282,0.880405,0.268798,0.199317,0.330413,0.0920774,0.824895,0.436721,0.0374472,0.153351,0.892722,0.704471,0.523841,0.102013,0.21018,0.313348,0.642417,0.78196,0.858251,0.394905,0.494764,0.469766,0.659253,0.586657,0.0817517,0.0939959,0.142743,0.547216,0.549738,0.646375,0.932522,0.0785855,0.710485,0.416641,0.733941,0.604117,0.270595,0.145463,0.461006,0.818317,0.0151814,0.888796,0.14209,0.435039,0.831211,0.178194,0.102776,0.615293,0.836721,0.568434,0.4275,0.677067,0.297841,0.679002,0.926804,0.542316,0.310954,0.482583,0.844123,0.951088,0.51202,0.331999,0.251328,0.277132,0.91272,0.829709,0.375707,0.113671,0.514583,0.960434,0.177016,0.93265,0.820166,0.602454,0.12642,0.37788,0.381236,0.469119,0.318777,0.183661,0.114806,0.583856,0.938245,0.0717511,0.524557,0.882609,0.747082,0.233007,0.646901,0.413902,0.981274,0.943778,0.233336,0.862438,0.828499,0.422209,0.861476,0.830349,0.0898112,0.966072,0.133181,0.143728,0.00297672,0.503933,0.742877,0.704273,0.59538,0.374001,0.232483,0.0946909,0.0598913,0.801602,0.435966,0.164002,0.224582,0.918404,0.804556,0.0307189,0.243984,0.23671,0.378672,0.6942,0.829079,0.230704,0.49613,0.302176,0.579111,0.870922,0.133316,0.917271,0.757343,0.666461,0.340143,0.278667,0.630543,0.939807,0.444041,0.314319,0.304342,0.445513,0.382345,0.119399,0.366866,0.963986,0.312356,0.937004,0.971856,0.849899,0.310757,0.264271,0.648526,0.226893,0.0550646,0.744163,0.824287,0.984666,0.868361,0.212488,0.999331,0.719446,0.144673,0.0394143,0.503553,0.573911,0.459999,0.607181,0.126278,0.852875,0.896125,0.716142,0.5761,0.340062,0.331732,0.707564,0.56952,0.520192,0.611719,0.0083223,0.80335,0.877753,0.370795,0.0279675,0.082577,0.70397,0.625238,0.760765,0.84923,0.947459,0.10682,0.622105,0.756235,0.746275,0.905268,0.274411,0.373452,0.406328,0.837213,0.938984,0.46834,0.586192,0.933985,0.449653,0.42029,0.452848,0.239948,0.857361,0.254725,0.471326,0.36966,0.96627,0.769466,0.634906,0.206544,0.942295,0.970025,0.168479,0.775833,0.0737075,0.139688,0.204545,0.484451,0.341842,0.150058,0.925739,0.709225,0.981935,0.537012,0.18982,0.162349,0.686892,0.650396,0.626091,0.320088,0.0263005,0.97854,0.165542,0.502742,0.666525,0.868941,0.924062,0.0985481,0.0191746,0.497513,0.691908,0.24726,0.669671,0.816636,0.0174282,0.358603,0.0308799,0.000573337,0.440491,0.314389,0.166256,0.257282,|0.251904,0.192473,0.876682,0.872942,0.259347,0.958637,0.463634,0.156027,0.0871142,0.342686,0.648129,0.477297,0.809629,0.112428,0.524281,0.46709,0.64972,0.057642,0.886729,0.410649,0.483885,0.517082,0.330244,0.698755,0.394928,0.502511,0.506265,0.920523,0.549936,0.0172785,0.741204,0.413493,0.754776,0.259427,0.698314,0.71102,0.945258,0.912398,0.77011,0.473088,0.389793,0.451126,0.994467,0.680325,0.318815,0.486557,0.188103,0.279445,0.0594847,0.481983,0.74694,0.685237,0.122573,0.865007,0.554919,0.116426,0.0772706,0.339305,0.911573,0.797704,0.00896829,0.0438976,0.390049,0.364364,0.0598173,0.274556,0.520025,0.492516,0.64364,0.521451,0.0854834,0.106592,0.386336,0.924427,0.830135,0.891425,0.434139,0.479881,0.845905,0.146272,0.321696,0.378599,0.903444,0.899286,0.278931,0.500253,0.886554,0.184029,0.767737,0.749108,0.254898,0.742363,0.596817,0.74172,0.716208,0.851056,0.0986975,0.21194,0.285574,0.949965,0.741184,0.459117,0.696968,0.678581,0.8366,0.0448467,0.215013,0.0346678,0.724628,0.901252,0.437752,0.685891,0.652147,0.765713,0.729651,0.309334,0.611186,0.501105,0.308426,0.946354,0.993538,0.0123873,0.548547,0.933221,0.659702,0.285525,0.959489,0.759558,0.663663,0.495382,0.236855,0.206619,0.540177,0.757101,0.141418,0.119884,0.766114,0.203057,0.346334,0.265025,0.0229383,0.954519,0.404434,0.81324,0.267211,0.111293,0.481454,0.453624,0.696072,0.68263,0.375361,0.539425,0.48165,0.641386,0.478628,0.820711,0.692629,0.557116,0.637197,0.225964,0.567215,0.248368,0.874155,0.786963,0.556209,0.111425,0.268862,0.841138,0.0269439,0.761326,0.350114,0.226247,0.111321,0.0226076,0.6376,0.746975,0.241514,0.920564,0.594227,0.143469,0.0797337,0.517485,0.10186,0.498895,0.562301,0.323948,0.530821,0.847522,0.62406,0.912373,0.825853,0.481215,0.289993,0.210543,0.500026,0.605943,0.106171,0.513758,0.820326,0.367872,0.559867,0.15016,0.282104,0.219885,0.837794,0.811498,0.583794,0.371604,0.149719,0.499268,0.28838,0.925122,0.534812,0.647752,0.113597,0.911076,0.477347,0.596654,0.817898,0.174791,0.738379,0.854057,0.137548,0.810777,0.9019,0.725886,0.931875,0.296576,0.617039,0.255148,0.473095,0.273423,0.0997643,0.728723,0.426218,0.335249,0.829046,0.565976,0.772734,0.554196,0.449435,0.165292,0.281386,0.812039,0.965261,0.853813,0.389605,0.841099,0.371677,0.641742,0.15056,0.499944,0.122679,0.958361,0.34401,0.573947,0.573548,0.829694,0.247666,0.915364,0.286596,0.566043,0.478106,0.413485,0.712191,0.247001,0.735342,0.913742,0.24612,0.769451,0.837976,0.160242,0.625134,0.433929,0.772161,0.665719,0.206126,0.427074,0.733849,0.388806,0.637565,0.730694,0.730497,0.457188,0.435689,0.0682049,0.228535,0.851913,0.871799,0.666465,0.0998675,0.742937,0.768774,0.597246,0.587198,0.420865,0.0792755,0.573753,0.211878,0.0216817,0.445878,0.664222,0.949862,0.148001,0.424677,0.570587,0.593321,0.956501,0.192969,0.539995,0.161136,0.230294,0.210191,0.217486,0.232051,0.309478,0.23257,0.362008,0.637845,0.398254,0.968657,0.210973,0.820063,0.157868,0.797044,0.654945,0.822805,0.513432,0.746827,0.60602,0.771114,0.599927,0.423733,0.106571,0.580889,0.648505,0.734461,0.236802,0.185745,0.629715,0.924952,0.0141435,0.278024,0.914766,0.666903,0.79989,0.758083,0.201818,0.540455,0.860978,0.383632,0.13212,0.585783,0.0469121,0.891798,0.00413495,0.113792,0.00164914,0.876363,0.256691,0.650181,0.965149,0.0236533,0.447857,0.729106,0.490612,0.0986078,0.278097,0.724831,0.827213,0.618869,0.209029,0.407192,0.918972,0.350905,0.33456,0.815102,0.427212,0.408578,0.196428,0.17257,0.716806,0.970188,0.531405,0.0295513,0.458383,0.91941,0.666614,0.247857,0.0706217,0.190181,0.998505,0.582148,0.949032,0.896805,0.499638,0.788128,0.717747,0.137274,0.298451,0.00547624,0.927072,0.23583,0.841201,0.139046,0.467029,0.527546,0.572166,0.914424,0.00375056,0.632953,0.14714,0.815887,0.198482,0.382892,0.151165,0.547474,0.877843,0.876581,0.4229,0.944776,0.455066,0.717874,0.80211,0.429701,0.310842,0.931342,0.0967719,0.54243,0.882588,0.00892162,0.831266,0.834373,0.434168,0.98164,0.0474941,0.0098716,0.369182,0.232262,0.740274,0.124645,0.188187,0.334188,0.219181,0.304012,0.818555,0.0528252,0.728561,0.442935,0.972835,0.379616,0.203924,0.965651,0.525234,0.950725,0.11732,0.715594,0.248137,0.30562,0.169117,0.964972,0.286134,0.921225,0.088201,0.481976,0.120429,0.695484,0.95608,0.86973,0.246943,0.541989,0.272665,0.062181,0.73129,0.236075,0.376193,0.878891,0.0481693,0.364048,0.126345,0.966549,0.651771,0.500941,0.0274956,0.0835246,0.85367,0.733476,0.455816,0.679244,0.4968,0.517683,0.613366,0.839978,0.0844216,0.546247,0.302483,0.308514,0.525376,0.253657,0.622576,0.292624,0.546459,0.781196,0.838538,0.00784904,0.36844,0.114949,0.652028,0.889059,0.995719,0.524429,0.25125,0.957929,0.426548,0.722277,0.541648,0.559861,0.226582,0.763888,0.356129,0.902687,0.352693,0.911388,0.394352,0.540597,0.151716,0.507252,0.806935,0.314566,0.156093,0.989554,0.851683,0.321743,0.994413,0.756273,0.689903,0.560152,0.499592,0.00190747,0.284406,0.43045,0.732724,0.603609,0.593524,0.820417,0.0673711,0.388505,0.322861,0.941282,0.567311,0.182531,0.906607,0.508958,0.427987,0.772656,0.493784,0.215859,0.439933,0.441079,0.689328,0.269725,0.703026,0.868347,0.64577,0.37144,0.859899,0.0768602,0.351017,0.917824,0.654386,0.106765,0.701121,0.611448,0.945166,0.986629,0.440735,0.84933,0.584677,0.416237,0.0574489,0.484818,0.742565,0.682003,0.00170791,0.557418,0.178388,0.229255,0.0756907,0.397168,0.676432,0.554123,0.264763,0.863966,0.506335,0.360276,0.812572,0.98906,0.49639,0.461057,0.564236,0.0735507,0.0623773,0.0993278,0.949515,0.255081,0.456388,0.256995,0.374855,0.582458,0.2675,0.771213,0.493772,0.311579,0.815374,0.145174,0.3451,0.350409,0.807747,0.0523896,0.0904083,0.465685,0.170908,0.212223,0.468799,0.295471,0.307399,0.786263,0.150877,0.13806,0.41691,0.45531,0.557883,0.297638,0.223367,0.116923,0.623775,0.787931,0.375614,0.578373,0.537629,0.96997,0.375297,0.0586492,0.325762,0.134717,0.886009,0.0299299,0.471645,0.947758,0.38075,0.918758,0.989059,0.346519,0.69708,0.55698,0.655593,0.736125,0.610097,0.334581,0.635675,0.732143,0.832283,0.0248851,0.695678,0.381661,0.0631565,0.716638,0.773495,0.106636,0.543921,0.26492,0.744318,0.080264,0.194292,0.404202,0.933241,0.442337,0.802909,0.47677,0.57212,0.73186,0.861809,0.15783,0.473717,0.176474,0.881041,0.577964,0.213273,0.995235,0.519593,0.356476,0.60842,0.725882,0.713843,0.770535,0.386197,0.47327,0.945061,0.802302,0.526245,0.519193,0.565635,0.861994,0.554419,0.845043,0.72763,0.21429,0.445224,0.0905991,0.398644,0.635504,0.749204,0.329162,0.0360102,0.298138,0.944453,0.423561,0.207671,0.0305933,0.960165,0.148731,0.214927,0.0555947,0.931298,0.442786,0.91879,0.703026,0.908189,0.740798,0.539368,0.241086,0.523427,0.149377,0.262738,0.232563,0.249234,0.701687,0.89724,0.0193163,0.0226352,0.658471,0.647075,0.193325,0.164658,0.0636962,0.925862,0.923676,0.108749,0.462885,0.361808,0.995881,0.315948,0.232318,0.272199,0.114709,0.464135,0.180512,0.213957,0.168583,0.621238,0.041031,0.776154,0.739129,0.186601,0.685185,0.0912702,0.865991,0.0483722,0.753091,0.113818,0.700875,0.462946,0.242058,0.203266,0.937801,0.363264,0.739154,0.731474,0.95162,0.0651297,0.390642,0.467956,0.85402,0.245857,0.979534,0.712832,0.0651997,0.0872275,0.846757,0.63411,0.216101,0.417272,0.437764,0.838702,0.377628,0.236659,0.16564,0.850624,0.964041,0.286087,0.47982,0.841681,0.551109,0.393615,0.376869,0.975493,0.9077,0.0197065,0.271276,0.934526,0.421522,0.348936,0.541863,0.0476167,0.733057,0.173152,0.561863,0.983159,0.293426,0.0145503,0.960193,0.541057,0.718557,0.737333,0.119356,0.394005,0.967821,0.602669,0.0741198,0.501084,0.668603,0.949154,0.57884,0.819623,0.859946,0.776205,0.0518306,0.695676,0.0639856,0.606995,0.629679,0.198633,0.649497,0.180192,0.434256,0.264747,0.937592,0.286703,0.0829671,0.633767,0.587839,0.364215,0.822974,0.604133,0.319032,0.116508,0.778855,0.493491,0.0812489,0.0105751,0.943979,0.129727,0.570363,0.0754731,0.575424,0.118057,0.513123,0.153745,0.794305,0.420578,0.97756,0.460048,0.136902,0.254031,0.683963,0.420612,0.848743,0.986547,0.0607892,0.861205,0.109357,0.356614,0.434496,0.106094,0.980958,0.443165,0.988213,0.0989509,0.187492,0.305278,0.407249,0.728048,0.531464,0.246714,0.528868,0.723117,0.637986,0.999123,0.00250447,0.848366,0.739297,0.564829,0.214712,0.893689,0.882838,0.134783,0.401284,0.22804,0.302261,0.402348,0.917674,0.604432,0.0584409,0.173787,0.202296,0.020651,0.115129,0.337451,0.106761,0.945206,0.175804,0.102356,0.0579842,0.0285844,0.179376,0.933818,0.0204193,0.406466,0.461238,0.354893,0.929165,0.820884,0.907807,0.965255,0.157848,0.33612,0.196244,0.968898,0.541861,0.0499002,0.1522,0.973457,0.396834,0.680034,0.563365,0.29333,0.819997,0.793117,0.576858,0.250003,0.518074,0.95923,0.831934,0.0448257,0.457216,0.542857,0.649484,0.62104,0.637,0.453858,0.788864,0.776671,0.859639,0.573193,0.795993,0.225612,0.274137,0.365844,0.569502,0.992234,0.74955,0.416756,0.604578,0.590007,0.868956,0.989513,0.913232,0.10528,0.323623,0.671731,0.386079,0.301967,0.928134,0.516469,0.178749,0.699786,0.547848,0.528366,0.602184,0.960044,0.308896,0.735526,0.0928552,0.205095,0.512677,0.132831,0.54448,0.454876,0.118834,0.503537,|0.58599,0.967141,0.255354,0.399711,0.724889,0.0518103,0.949762,0.346989,0.768025,0.631456,0.204716,0.644721,0.478557,0.200873,0.835107,0.595232,0.953594,0.801537,0.502603,0.385537,0.706133,0.345358,0.446151,0.812309,0.0583478,0.846364,0.460353,0.514445,0.571517,0.0337305,0.590964,0.615151,0.295776,0.867368,0.216156,0.312459,0.731921,0.215882,0.00998634,0.269516,0.34491,0.66317,0.231798,0.00846803,0.153866,0.721915,0.191293,0.111927,0.801196,0.0892862,0.623286,0.477272,0.664931,0.889303,0.5792,0.989523,0.301219,0.134041,0.583324,0.574675,0.408737,0.836843,0.688501,0.117957,0.00025785,0.982845,0.252218,0.15305,0.447883,0.734327,0.054797,0.230803,0.400184,0.623779,0.586343,0.896515,0.250971,0.55671,0.60701,0.588255,0.409633,0.837061,0.347014,0.763373,0.0159308,0.171829,0.985828,0.362833,0.664735,0.958118,0.00985134,0.283827,0.204314,0.228808,0.25435,0.497607,0.965285,0.276824,0.11026,0.46447,0.349305,0.00448018,0.0917959,0.506095,0.092528,0.412711,0.103067,0.593447,0.314393,0.395958,0.239389,0.25198,0.240346,0.858553,0.114201,0.116083,0.817537,0.962885,0.0127149,0.00627398,0.181593,0.262332,0.0198242,0.0801495,0.747539,0.523074,0.628722,0.821594,0.376653,0.543268,0.751134,0.520602,0.121455,0.375926,0.0295784,0.232289,0.281711,0.355175,0.96243,0.947645,0.289743,0.908986,0.388247,0.805661,0.1223,0.795307,0.240877,0.622334,0.824108,0.344486,0.335344,0.264715,0.548994,0.708986,0.972935,0.861678,0.705444,0.494579,0.847496,0.922206,0.673115,0.633975,0.575047,0.160891,0.490993,0.626222,0.900294,0.871025,0.0093872,0.965535,0.0632922,0.823808,0.892712,0.526689,0.499169,0.878652,0.37301,0.994491,0.657137,0.796869,0.359203,0.777672,0.930053,0.26547,0.926623,0.710321,0.528837,0.576358,0.945781,0.631356,0.898039,0.665953,0.519533,0.864012,0.395521,0.145205,0.0356601,0.998074,0.611335,0.302296,0.498098,0.206482,0.356878,0.532273,0.282806,0.0879523,0.900664,0.833021,0.187403,0.741107,0.890848,0.750347,0.692086,0.596988,0.906046,0.590185,0.450331,0.366097,0.930132,0.0468349,0.419219,0.409201,0.0135582,0.955486,0.991526,0.189249,0.387015,0.470122,0.134848,0.386937,0.729083,0.869559,0.159957,0.249574,0.225225,0.578295,0.697798,0.505426,0.985378,0.626363,0.25344,0.0470094,0.678626,0.952197,0.342958,0.885818,0.00327069,0.837674,0.993292,0.130646,0.41259,0.992914,0.413141,0.551674,0.134834,0.833384,0.83871,0.743447,0.869436,0.696239,0.476806,0.131974,0.256088,0.954319,0.700814,0.759347,0.267855,0.399151,0.328013,0.505614,0.0633988,0.0312487,0.713835,0.395906,0.239458,0.832754,0.243951,0.314845,0.536085,0.987924,0.101012,0.724388,0.37028,0.355668,0.487329,0.847385,0.949362,0.654917,0.704451,0.703487,0.597552,0.308765,0.0648106,0.0880823,0.345125,0.556045,0.453524,0.80504,0.958451,0.13223,0.992755,0.669465,0.386098,0.914991,0.160425,0.956707,0.0157042,0.864771,0.793645,0.704139,0.276157,0.337463,0.169584,0.173642,0.882,0.855127,0.408373,0.959334,0.0796164,0.476143,0.740598,0.598823,0.0141178,0.25378,0.724786,0.0859555,0.0406976,0.037133,0.915455,0.423968,0.181757,0.161353,0.994429,0.377927,0.526187,0.716944,0.494738,0.0208654,0.431235,0.206947,0.814797,0.367781,0.458851,0.950024,0.928635,0.26635,0.20726,0.0506027,0.186823,0.500295,0.442446,0.822954,0.650503,0.293946,0.366171,0.11491,0.810694,0.615289,0.162591,0.440477,0.370183,0.0200047,0.536966,0.17325,0.96877,0.973119,0.0527745,0.382088,0.915063,0.693086,0.370905,0.283941,0.409272,0.697658,0.644468,0.434786,0.990333,0.340304,0.493325,0.369008,0.0185562,0.920714,0.219429,0.768958,0.984811,0.0315078,0.0137427,0.7017,0.0278323,0.363296,0.827013,0.193807,0.222402,0.0603963,0.187867,0.47648,0.247465,0.505994,0.378352,0.532471,0.612621,0.837146,0.287633,0.622653,0.399188,0.522987,0.205765,0.40782,0.469112,0.270651,0.428287,0.532003,0.88855,0.44097,0.262169,0.577939,0.452189,0.894819,0.325385,0.704141,0.40527,0.959172,0.849551,0.19754,0.583657,0.725732,0.38895,0.479632,0.232901,0.979357,0.399668,0.459648,0.444063,0.891239,0.246906,0.985765,0.170308,0.855176,0.165038,0.917843,0.25104,0.658603,0.25079,0.992281,0.901819,0.546847,0.308325,0.886253,0.969048,0.289854,0.186419,0.593751,0.255238,0.521723,0.484441,0.848923,0.782409,0.231938,0.260716,0.989218,0.170036,0.214741,0.675532,0.426899,0.844678,0.30071,0.589144,0.569636,0.871419,0.0527316,0.0454118,0.565305,0.772203,0.378804,0.24031,0.691611,0.152186,0.24669,0.152228,0.753211,0.995668,0.558383,0.406908,0.237094,0.200366,0.85495,0.689431,0.665463,0.195503,0.101957,0.217524,0.571692,0.420278,0.896697,0.522964,0.956182,0.271753,0.0850117,0.538607,0.0733106,0.481274,0.461681,0.450015,0.522704,0.717277,0.260104,0.386721,0.285468,0.38583,0.431037,0.643976,0.78049,0.582637,0.896167,0.571306,0.0254539,0.366367,0.371483,0.700029,0.608995,0.398054,0.802038,0.211166,0.877853,0.940521,0.450273,0.574692,0.858059,0.690659,0.353206,0.812067,0.146642,0.453975,0.596155,0.836082,0.43412,0.346275,0.518843,0.413167,0.561606,0.949823,0.513226,0.264346,0.620162,0.648842,0.431444,0.788987,0.739205,0.507378,0.197405,0.350169,0.293744,0.548824,0.935317,0.556913,0.659909,0.673724,0.368228,0.682022,0.358801,0.972426,0.441963,0.867804,0.86107,0.582269,0.328648,0.468511,0.278958,0.268934,0.252532,0.00186568,0.912291,0.327586,0.242542,0.193192,0.155866,0.559695,0.00486344,0.208526,0.351573,0.767475,0.981713,0.297758,0.604005,0.630929,0.169853,0.597878,0.39641,0.623835,0.867827,0.761312,0.879523,0.517275,0.667144,0.274749,0.248298,0.508256,0.111872,0.183786,0.787504,0.0915219,0.346157,0.541148,0.43639,0.419534,0.332245,0.8092,0.781856,0.401377,0.567863,0.725843,0.357439,0.295614,0.14208,0.60705,0.271577,0.309676,0.922046,0.91291,0.334656,0.874293,0.133011,0.683985,0.772849,0.164018,0.392327,0.630354,0.550865,0.643471,0.61232,0.871461,0.271911,0.28487,0.259534,0.180668,0.199139,0.94248,0.12882,0.967528,0.460551,0.762724,0.0830498,0.469208,0.712582,0.959475,0.334836,0.57298,0.551238,0.90929,0.801408,0.532034,0.357396,0.797598,0.897623,0.17107,0.778754,0.86937,0.579457,0.395756,0.0350793,0.285328,0.481857,0.541646,0.190167,0.763759,0.547999,0.536782,0.194293,0.597675,0.226028,0.717777,0.345086,0.254876,0.505205,0.755493,0.837701,0.389515,0.372379,0.319354,0.511847,0.224104,0.685805,0.416768,0.926083,0.314575,0.865839,0.782962,0.816068,0.00581259,0.254005,0.595116,0.39349,0.945822,0.996679,0.118445,0.890327,0.487034,0.0784799,0.77662,0.587482,0.91997,0.801571,0.901288,0.900303,0.607545,0.57117,0.493186,0.00467551,0.579742,0.541593,0.608368,0.539757,0.730569,0.860866,0.965236,0.313658,0.814346,0.55979,0.288598,0.194075,0.81885,0.282131,0.436897,0.885868,0.64687,0.136244,0.158082,0.569107,0.259253,0.439163,0.885207,0.00360817,0.17432,0.380949,0.239155,0.703062,0.197023,0.021608,0.42324,0.221031,0.837628,0.086135,0.184867,0.10938,0.955605,0.352397,0.421254,0.323484,0.0977424,0.826008,0.859256,0.739623,0.556001,0.255362,0.183162,0.622707,0.761137,0.950063,0.737525,0.606025,0.920684,0.600176,0.148857,0.703995,0.164893,0.533745,0.0353632,0.999461,0.464451,0.388175,0.946823,0.822671,0.407111,0.131805,0.562432,0.815137,0.992587,0.123801,0.249749,0.570897,0.791664,0.642564,0.911723,0.178046,0.286137,0.704122,0.506985,0.945031,0.160154,0.167679,0.525428,0.876357,0.479604,0.589229,0.428468,0.496361,0.687721,0.778581,0.635682,0.903607,0.964264,0.310691,0.704681,0.552539,0.21774,0.676391,0.131419,0.00487202,0.482154,0.109871,0.993223,0.518,0.278101,0.654662,0.716794,0.499287,0.636913,0.313499,0.788253,0.984671,0.270184,0.0270262,0.486237,0.220664,0.903062,0.641464,0.480756,0.651717,0.00196379,0.723103,0.462186,0.0546858,0.781668,0.97638,0.364682,0.795435,0.0513456,0.517911,0.119536,0.0844514,0.349062,0.43036,0.864473,0.313181,0.823294,0.91821,0.768482,0.162082,0.154049,0.161138,0.221031,0.764524,0.107457,0.594391,0.183264,0.870765,0.923019,0.279905,0.0702284,0.635,0.313875,0.290556,0.942258,0.692958,0.155109,0.347244,0.31996,0.235736,0.176091,0.336158,0.653509,0.740826,0.272309,0.639806,0.314332,0.409406,0.420056,0.649045,0.436639,0.866286,0.726535,0.24096,0.279982,0.408811,0.615971,0.455953,0.469387,0.669801,0.254086,0.0326256,0.842172,0.951598,0.209802,0.585892,0.874753,0.882097,0.594386,0.0553317,0.15188,0.494165,0.973157,0.480414,0.906415,0.846993,0.61998,0.73596,0.370084,0.805671,0.29701,0.518595,0.262666,0.9034,0.765999,0.458068,0.452649,0.955806,0.094693,0.604506,0.508576,0.00880051,0.743166,0.938454,0.594925,0.978747,0.591573,0.518572,0.852821,0.015982,0.046696,0.783994,0.316737,0.698622,0.146617,0.622711,0.664489,0.642205,0.808808,0.257419,0.364542,0.812209,0.204951,0.911261,0.644512,0.194677,0.392912,0.421277,0.750713,0.241871,0.0682769,0.729425,0.572411,0.626339,0.544524,0.552153,0.0594665,0.216177,0.289573,0.758838,0.216778,0.662031,0.440021,0.9899,0.445467,0.128072,0.3779,0.8546,0.184706,0.0846271,0.196826,0.581348,0.294336,0.656863,0.135322,0.88988,0.330212,0.20708,0.683744,0.417712,0.961913,0.446522,0.340692,0.0913196,0.378513,0.384395,0.721605,0.720787,0.403454,0.615469,0.202847,0.573515,0.614518,0.552365,0.746244,0.753747,0.122771,0.706191,0.865527,0.399212,0.618048,0.505057,|0.641081,0.786789,0.126948,0.0947413,0.847176,0.0450735,0.307706,0.923576,0.300175,0.246562,0.884179,0.341526,0.583378,0.794723,0.216806,0.0793889,0.928071,0.0153391,0.439884,0.286372,0.201943,0.68704,0.00502765,0.23064,0.785184,0.592572,0.502775,0.129979,0.456858,0.136925,0.144539,0.170621,0.535857,0.827573,0.31399,0.090452,0.643309,0.746344,0.926166,0.53216,0.646445,0.815704,0.387154,0.932283,0.430784,0.0447254,0.855663,0.187183,0.238823,0.8338,0.300806,0.59902,0.695004,0.561958,0.214257,0.822309,0.809195,0.899267,0.829783,0.176943,0.79373,0.837327,0.988144,0.443295,0.784266,0.27939,0.868316,0.841872,0.308533,0.660359,0.705545,0.781323,0.804249,0.427345,0.219888,0.145365,0.515287,0.0973441,0.145398,0.510473,0.00012517,0.0129028,0.419691,0.454619,0.214085,0.996284,0.936826,0.595532,0.900286,0.222535,0.88624,0.994446,0.672681,0.933424,0.221786,0.217542,0.723498,0.269598,0.908035,0.73061,0.770521,0.489142,0.957211,0.631225,0.798327,0.595832,0.574162,0.377502,0.0939193,0.99264,0.613671,0.186174,0.387692,0.673396,0.955093,0.368053,0.177082,0.963797,0.270371,0.637884,0.527451,0.356577,0.584427,0.191441,0.1501,0.648407,0.970508,0.871097,0.811378,0.639334,0.565605,0.962986,0.0355719,0.65591,0.648159,0.460045,0.771878,0.111582,0.80656,0.685215,0.178063,0.746338,0.854816,0.777215,0.934982,0.460969,0.379934,0.336102,0.314322,0.771962,0.238971,0.0495977,0.2996,0.783261,0.130207,0.514526,0.69573,0.252051,0.456297,0.490416,0.540064,0.080523,0.325761,0.109977,0.0361282,0.505671,0.994009,0.482716,0.374022,0.610851,0.88671,0.53744,0.493505,0.681482,0.539369,0.981565,0.168404,0.686136,0.535389,0.182094,0.166773,0.50071,0.789276,0.87643,0.377446,0.815162,0.0118335,0.480046,0.806444,0.408499,0.362053,0.960936,0.429697,0.808602,0.720352,0.796162,0.119813,0.116442,0.492662,0.400232,0.122391,0.736176,0.487746,0.569077,0.432301,0.608265,0.315331,0.269658,0.615764,0.398091,0.219019,0.599973,0.0187313,0.923127,0.648299,0.333102,0.820837,0.0284116,0.0777245,0.667593,0.388621,0.300343,0.57974,0.305246,0.286074,0.848772,0.26774,0.168557,0.329179,0.56615,0.270375,0.0228774,0.88573,0.269589,0.88634,0.911752,0.716396,0.471868,0.879496,0.483307,0.831049,0.625717,0.412124,0.350402,0.149765,0.669563,0.231327,0.0449966,0.295006,0.844869,0.725932,0.601492,0.108406,0.328126,0.909955,0.156219,0.809271,0.564583,0.944185,0.74734,0.0885041,0.567863,0.900368,0.576078,0.739539,0.0978964,0.686456,0.964709,0.569856,0.902703,0.204008,0.593241,0.970925,0.491945,0.318459,0.934617,0.935734,0.235541,0.304547,0.227945,0.947953,0.141255,0.356594,0.744886,0.6043,0.692573,0.0451433,0.491447,0.246396,0.303672,0.892463,0.252235,0.468151,0.585468,0.675616,0.422196,0.319362,0.341547,0.175401,0.10507,0.918809,0.297693,0.879599,0.568031,0.230503,0.377663,0.898302,0.514125,0.0067662,0.438142,0.130598,0.644308,0.675099,0.580999,0.901885,0.489044,0.261181,0.322662,0.800077,0.147869,0.0443756,0.763151,0.870406,0.264689,0.963786,0.666074,0.17762,0.291974,0.380347,0.700749,0.775397,0.697376,0.332287,0.0265549,0.342735,0.852154,0.953218,0.460099,0.055702,0.753752,0.153243,0.185257,0.199986,0.147141,0.37042,0.181312,0.607059,0.729359,0.389949,0.278975,0.938879,0.20331,0.336909,0.183024,0.0910456,0.642113,0.239683,0.928611,0.275028,0.832107,0.462301,0.463135,0.457757,0.984394,0.678052,0.897498,0.420851,0.0237345,0.199533,0.110782,0.27339,0.625972,0.454135,0.252883,0.812043,0.949939,0.420241,0.226576,0.890258,0.352047,0.171607,0.22583,0.792135,0.398924,0.902108,0.518595,0.167149,0.610043,0.720026,0.388667,0.0456317,0.878901,0.0965358,0.21415,0.607003,0.982414,0.364134,0.464398,0.70065,0.283848,0.707426,0.58818,0.796102,0.0834192,0.539987,0.544362,0.989734,0.902707,0.226582,0.996725,0.0448101,0.144786,0.353561,0.59349,0.0867749,0.274304,0.616545,0.504357,0.379501,0.474885,0.376508,0.059626,0.96343,0.494629,0.654876,0.894795,0.680237,0.517355,0.761579,0.714144,0.99196,0.08001,0.0457876,0.459536,0.631413,0.442297,0.0667625,0.470828,0.801232,0.0472676,0.231993,0.464892,0.996649,0.746532,0.215839,0.486582,0.955001,0.0602381,0.212952,0.0426062,0.211908,0.246882,0.289431,0.746835,0.16838,0.435541,0.0163293,0.4384,0.275958,0.758224,0.523983,0.100089,0.934538,0.865395,0.262561,0.0802987,0.304508,0.0775818,0.390246,0.696792,0.888844,0.181135,0.407516,0.0331214,0.132564,0.483862,0.912669,0.640343,0.0984929,0.718786,0.678151,0.934696,0.0830374,0.856256,0.390312,0.69989,0.529221,0.990984,0.636961,0.780191,0.596623,0.0279937,0.339742,0.920744,0.624851,0.616236,0.276965,0.286174,0.311726,0.102521,0.669013,0.918327,0.680403,0.517913,0.726258,0.617134,0.980232,0.767684,0.553269,0.252202,0.544397,0.414071,0.0298051,0.653968,0.134538,0.715006,0.272159,0.85998,0.108823,0.258873,0.976791,0.598288,0.179077,0.0260724,0.262224,0.258676,0.728135,0.684937,0.665612,0.889732,0.337055,0.835757,0.203029,0.349812,0.00932723,0.113617,0.0342163,0.33057,0.516494,0.917279,0.0999963,0.122308,0.0105631,0.716514,0.348994,0.200168,0.595131,0.821347,0.147831,0.612277,0.396424,0.13319,0.737659,0.280129,0.117567,0.274275,0.284523,0.932596,0.235312,0.867566,0.868637,0.505267,0.40462,0.469,0.225237,0.320879,0.027194,0.737181,0.918769,0.515078,0.47283,0.240219,0.704037,0.876601,0.219246,0.858916,0.759871,0.215859,0.943194,0.64951,0.537384,0.0710708,0.152202,0.770821,0.652793,0.41938,0.773684,0.229775,0.781954,0.968343,0.979381,0.57842,0.0588815,0.125405,0.335047,0.915222,0.632513,0.425418,0.774282,0.98268,0.57301,0.00544918,0.70867,0.315228,0.599856,0.963336,0.941106,0.973957,0.184708,0.388022,0.373659,0.59069,0.194803,0.617508,0.00146657,0.141859,0.872131,0.872028,0.55357,0.184357,0.728068,0.899461,0.0107666,0.827424,0.18707,0.285646,0.0683733,0.95724,0.30268,0.442932,0.6368,0.726703,0.0756506,0.247255,0.598557,0.107768,0.455055,0.875472,0.20682,0.808779,0.773608,0.917034,0.226285,0.970905,0.699507,0.129283,0.331132,0.210581,0.519019,0.120974,0.016418,0.853445,0.173636,0.585816,0.792411,0.680727,0.792889,0.351506,0.111083,0.545667,0.680434,0.61348,0.111256,0.177959,0.29598,0.458901,0.540051,0.0201898,0.321261,0.99795,0.876556,0.560365,0.997409,0.0162025,0.381069,0.670415,0.989556,0.0533955,0.408274,0.395764,0.373457,0.596979,0.480073,0.275405,0.69655,0.907532,0.21317,0.70401,0.793499,0.569418,0.674675,0.660416,0.671081,0.354651,0.315922,0.490886,0.29322,0.591338,0.172741,0.8798,0.229378,0.60594,0.409266,0.763471,0.725396,0.0405806,0.453549,0.751373,0.0551842,0.571137,0.953673,0.730935,0.355855,0.0482742,0.0236833,0.67469,0.960721,0.270181,0.975934,0.897419,0.364362,0.566084,0.613226,0.247263,0.871222,0.730883,0.141595,0.607165,0.0388286,0.492677,0.290443,0.815561,0.687667,0.513012,0.49326,0.661088,0.819116,0.295257,0.273964,0.571616,0.0571303,0.866578,0.55522,0.109705,0.0759413,0.174883,0.457947,0.218252,0.870408,0.635464,0.123732,0.936284,0.859904,0.168595,0.227949,0.475315,0.214963,0.030977,0.449011,0.850589,0.00835627,0.514207,0.669373,0.101143,0.394514,0.490718,0.313637,0.413283,0.316924,0.172057,0.0755991,0.611184,0.587991,0.368055,0.95819,0.778481,0.294524,0.138463,0.654446,0.429876,0.198622,0.319805,0.642895,0.361467,0.29095,0.586607,0.900076,0.893686,0.0478457,0.102796,0.474668,0.0230728,0.0254875,0.680689,0.995492,0.413339,0.0182233,0.0593147,0.627988,0.434167,0.114714,0.682103,0.555525,0.495481,0.889475,0.510224,0.743607,0.495482,0.579454,0.236158,0.55077,0.352043,0.317685,0.409066,0.427257,0.568051,0.815907,0.884404,0.966012,0.666627,0.582605,0.180507,0.773243,0.550983,0.0449584,0.197645,0.334554,0.618724,0.680303,0.706746,0.0825647,0.654778,0.444732,0.273666,0.96126,0.994293,0.228642,0.452978,0.694027,0.898102,0.529144,0.690671,0.295822,0.0959334,0.273447,0.860604,0.293525,0.297821,0.727503,0.176613,0.197949,0.131253,0.109497,0.293634,0.571392,0.0689191,0.232043,0.551868,0.64009,0.585445,0.768036,0.585308,0.0649194,0.593732,0.457704,0.93884,0.00222808,0.324352,0.00387591,0.73059,0.898844,0.150993,0.42608,0.793183,0.618124,0.804541,0.8395,0.674262,0.331829,0.494312,2.65837e-05,0.594436,0.413972,0.313955,0.546442,0.0135851,0.476215,0.142742,0.9921,0.786228,0.778402,0.639121,0.364023,0.147733,0.539526,0.779673,0.354117,0.367111,0.766748,0.834918,0.124096,0.869372,0.599784,0.968989,0.756262,0.99702,0.514872,0.363995,0.624788,0.314961,0.758656,0.67798,0.454771,0.553789,0.193681,0.0967808,0.207624,0.119035,0.783447,0.759264,0.674384,0.73403,0.424404,0.959065,0.275658,0.735031,0.157171,0.970202,0.514789,0.215492,0.36288,0.772198,0.149761,0.318732,0.953774,0.40721,0.180995,0.774142,0.706164,0.56935,0.431503,0.231806,0.767892,0.461997,0.915102,0.42479,0.2002,0.406692,0.986274,0.965153,0.0918349,0.426643,0.303324,0.470737,0.00605655,0.0196304,0.920997,0.923436,0.430068,0.477092,0.581776,0.568903,0.990315,0.252234,0.267278,0.341941,0.908492,0.983257,0.563227,0.0636843,0.0622694,0.722368,0.594089,0.243047,0.800653,0.799875,0.294155,0.725632,0.809767,0.223656,0.249327,0.439228,0.79982,0.14243,0.398449,0.37431,0.00279385,0.190149,0.762138,0.21244,0.258803,0.803183,0.307075,0.108257,0.0210625,0.803674,0.349004,0.760584,0.0568033,0.136286,|0.901023,0.252536,0.244836,0.109233,0.640825,0.416398,0.963881,0.678182,0.862195,0.844688,0.747154,0.747675,0.668179,0.269497,0.958809,0.816885,0.751971,0.720311,0.608281,0.733093,0.0421141,0.167357,0.768654,0.559902,0.951903,0.14531,0.207899,0.695387,0.743518,0.0396647,0.0210281,0.521324,0.485242,0.242974,0.740266,0.569692,0.861499,0.507137,0.703771,0.120824,0.780699,0.0587818,0.450373,0.588889,0.56945,0.990115,0.0137154,0.849682,0.115714,0.0413533,0.273534,0.052123,0.774718,0.337411,0.171973,0.2511,0.747944,0.398205,0.987046,0.47613,0.531149,0.474498,0.446599,0.175121,0.686913,0.858307,0.899309,0.0658365,0.422966,0.987192,0.719646,0.602682,0.69267,0.924314,0.0619012,0.038964,0.331537,0.464986,0.199522,0.909051,0.904193,0.39992,0.452867,0.86367,0.811312,0.588206,0.571335,0.0290617,0.918052,0.806971,0.846906,0.438323,0.295628,0.0349566,0.398512,0.342638,0.718471,0.805167,0.354956,0.630319,0.0639293,0.275406,0.95841,0.502256,0.849242,0.859543,0.616671,0.334715,0.360806,0.607654,0.466245,0.460691,0.524824,0.879237,0.393829,0.52863,0.881066,0.0908743,0.372659,0.30945,0.507776,0.924532,0.718692,0.424364,0.118244,0.300353,0.104778,0.110361,0.43316,0.869149,0.69365,0.736505,0.428107,0.461025,0.618011,0.816803,0.45189,0.193886,0.0664267,0.572405,0.952554,0.705327,0.189899,0.549984,0.649516,0.885989,0.582423,0.775078,0.3554,0.617316,0.339734,0.484052,0.105641,0.95496,0.898008,0.449142,0.774356,0.279432,0.803246,0.650331,0.610077,0.832395,0.525368,0.949989,0.751023,0.224306,0.654041,0.749945,0.861345,0.457196,0.618593,0.236346,0.777971,0.0974397,0.707451,0.670112,0.219228,0.913092,0.287734,0.616782,0.853957,0.139079,0.647262,0.96898,0.596504,0.0973746,0.877504,0.988349,0.378294,0.324814,0.0474256,0.104133,0.79414,0.0915878,0.869688,0.357371,0.232365,0.0265982,0.44068,0.684313,0.4887,0.093841,0.262434,0.885657,0.296337,0.655987,0.364907,0.990165,0.989051,0.21377,0.599184,0.0643147,0.0416162,0.107461,0.0787128,0.252707,0.699452,0.928956,0.600937,0.659817,0.558319,0.65543,0.807638,0.88939,0.200607,0.629015,0.0294865,0.774707,0.0949855,0.672237,0.731369,0.258499,0.0563999,0.0698205,0.978494,0.197206,0.41443,0.559483,0.389133,0.442227,0.791769,0.608905,0.992985,0.50124,0.210976,0.899773,0.295958,0.538039,0.570268,0.28603,0.266535,0.919147,0.638953,0.710151,0.202796,0.782692,0.303609,0.307428,0.452816,0.135699,0.448344,0.601442,0.718072,0.814598,0.419945,0.347198,0.71681,0.0554683,0.859216,0.454664,0.18208,0.960675,0.91757,0.356164,0.692906,0.20848,0.986735,0.554917,0.964883,0.318702,0.305918,0.00666875,0.861873,0.134951,0.721,0.86361,0.904271,0.695417,0.575818,0.032541,0.517818,0.460478,0.0623062,0.577733,0.213986,0.481824,0.00791377,0.360609,0.585473,0.864628,0.375266,0.678697,0.14362,0.621985,0.553156,0.402991,0.639146,0.71509,0.403339,0.545393,0.0211136,0.657821,0.0637616,0.0465766,0.128562,0.592205,0.00842291,0.775465,0.26362,0.959154,0.327505,0.829002,0.923674,0.357771,0.827822,0.335329,0.522449,0.604019,0.982709,0.277886,0.104645,0.469141,0.129504,0.0815716,0.482854,0.745088,0.281463,0.431895,0.41815,0.0132071,0.897654,0.054228,0.204539,0.698855,0.748837,0.81739,0.261422,0.698798,0.936786,0.0356814,0.324899,0.181226,0.251158,0.15301,0.369707,0.265069,0.946351,0.449866,0.00747377,0.234578,0.231021,0.793192,0.941521,0.4943,0.459621,0.470787,0.360044,0.618778,0.94496,0.314434,0.447142,0.713773,0.809004,0.407967,0.568728,0.0448703,0.703481,0.0468492,0.136909,0.504708,0.837733,0.482338,0.208624,0.671641,0.382574,0.232614,0.846562,0.701943,0.851444,0.149622,0.439645,0.780872,0.939301,0.366947,0.0871543,0.943051,0.145201,0.409855,0.982383,0.30417,0.476394,0.212256,0.771097,0.718684,0.361864,0.939751,0.380414,0.798375,0.543631,0.598365,0.363631,0.747146,0.00295126,0.633379,0.535267,0.76161,0.607382,0.148296,0.454637,0.26064,0.723986,0.535013,0.772448,0.63222,0.301795,0.0357032,0.170739,0.778483,0.154719,0.862238,0.15889,0.175153,0.462898,0.548161,0.850342,0.449522,0.423443,0.330129,0.191615,0.980382,0.156747,0.219414,0.662565,0.247486,0.501127,0.991145,0.413616,0.551771,0.0427862,0.41791,0.876093,0.438059,0.501774,0.275773,0.368451,0.145967,0.262557,0.478811,0.45427,0.141954,0.603376,0.959163,0.588624,0.241088,0.589722,0.611946,0.0120691,0.255437,0.152359,0.984207,0.413722,0.0464819,0.412392,0.478847,0.407424,0.648877,0.171215,0.894012,0.115306,0.773612,0.0593769,0.848945,0.0604854,0.438424,0.0643858,0.227102,0.967794,0.243902,0.789101,0.941885,0.0492845,0.335936,0.131717,0.697437,0.172779,0.663376,0.0659847,0.424691,0.764407,0.762399,0.998444,0.686751,0.689456,0.841121,0.575276,0.518651,0.934345,0.678809,0.730252,0.936936,0.244892,0.738153,0.219829,0.341261,0.982123,0.52723,0.394948,0.682768,0.441139,0.987752,0.750277,0.480879,0.0204286,0.517108,0.538781,0.180649,0.0606774,0.211658,0.80758,0.933175,0.150154,0.94341,0.58908,0.139017,0.433448,0.531183,0.353153,0.221482,0.447094,0.73322,0.556274,0.511162,0.727518,0.989992,0.887135,0.116344,0.0406321,0.946468,0.251831,0.572915,0.679188,0.652028,0.324392,0.619331,0.54831,0.0360022,0.446806,0.341907,0.400759,0.534075,0.279326,0.0428871,0.750435,0.330762,0.870637,0.993352,0.415866,0.759832,0.829697,0.813857,0.415378,0.63682,0.147204,0.470838,0.896433,0.806866,0.534129,0.386679,0.72542,0.0707433,0.667423,0.967036,0.910806,0.862839,0.550856,0.412666,0.869342,0.900593,0.380119,0.856984,0.470771,0.915544,0.508474,0.039467,0.696703,0.64719,0.757488,0.402434,0.722867,0.297232,0.628229,0.468503,0.462201,0.13281,0.757261,0.583838,0.283912,0.192649,0.463475,0.447082,0.520285,0.727761,0.340659,0.574439,0.425544,0.981494,0.295505,0.757354,0.54326,0.5626,0.870093,0.149094,0.286877,0.61363,0.335588,0.437293,0.0540286,0.639083,0.617398,0.630817,0.301407,0.243273,0.288561,0.122672,0.530929,0.0181838,0.286308,0.471236,0.51723,0.477388,0.525263,0.338615,0.705736,0.870278,0.359869,0.177412,0.249971,0.356275,0.576112,0.130525,0.193621,0.957589,0.783067,0.558613,0.650695,0.736075,0.993379,0.786023,0.759269,0.0381942,0.0142863,0.236761,0.546171,0.514285,0.926617,0.0507204,0.165123,0.0618088,0.337307,0.390131,0.435838,0.0318839,0.816072,0.354226,0.104188,0.143345,0.803508,0.850124,0.717977,0.0841855,0.631679,0.701828,0.853267,0.28001,0.832611,0.215078,0.877208,0.601294,0.965169,0.335418,0.26828,0.908846,0.132768,0.351771,0.0380778,0.371459,0.0356939,0.390331,0.265784,0.486708,0.239081,0.0862358,0.871077,0.44175,0.453554,0.7658,0.58787,0.0352033,0.987614,0.470848,0.107319,0.560822,0.650392,0.988469,0.246993,0.503263,0.966044,0.474699,0.0939935,0.68046,0.877474,0.511216,0.94515,0.273681,0.148934,0.12332,0.538305,0.671396,0.277144,0.701753,0.684235,0.887523,0.836718,0.0103978,0.341508,0.812874,0.957451,0.469731,0.127863,0.310989,0.313653,0.335408,0.0350468,0.894537,0.539977,0.521382,0.827222,0.491203,0.288665,0.0731066,0.635721,0.443159,0.680622,0.639828,0.194241,0.819954,0.623546,0.940658,0.990475,0.978125,0.808444,0.00934619,0.566134,0.670915,0.907978,0.00778061,0.728756,0.172956,0.463405,0.10162,0.605969,0.614884,0.0825899,0.0583528,0.812274,0.97286,0.377534,0.92248,0.174013,0.196951,0.932088,0.71427,0.787601,0.364906,0.372788,0.12929,0.155514,0.781128,0.63263,0.52581,0.655222,0.198759,0.140934,0.783962,0.172629,0.0270261,0.49336,0.261569,0.377094,0.642475,0.281137,0.880035,0.908539,0.433166,0.396051,0.159368,0.265561,0.266775,0.996632,0.0962736,0.683462,0.316826,0.202308,0.990443,0.231127,0.218228,0.489657,0.885219,0.642209,0.00525206,0.665069,0.701377,0.606761,0.576972,0.253524,0.198141,0.0616927,0.106428,0.518223,0.200283,0.0112507,0.0400253,0.844606,0.848818,0.956634,0.224472,0.948393,0.479356,0.660028,0.0260267,0.0893058,0.269478,0.622327,0.0805752,0.860532,0.770059,0.0605843,0.477003,0.313213,0.587423,0.286239,0.137548,0.695656,0.66262,0.64272,0.0900565,0.815015,0.675354,0.129403,0.63778,0.564625,0.594115,0.656709,0.783406,0.84079,0.550323,0.0407292,0.653828,0.19766,0.104746,0.79832,0.774711,0.0108717,0.357705,0.43238,0.0040164,0.391663,0.752072,0.863346,0.592257,0.687747,0.308216,0.230893,0.35901,0.548716,0.37872,0.625189,0.419658,0.940144,0.733481,0.46984,0.702987,0.534157,0.174002,0.979148,0.16599,0.324963,0.899981,0.386312,0.354944,0.986907,0.52788,0.485453,0.850545,0.669814,0.753293,0.245153,0.142562,0.581349,0.489049,0.306305,0.447984,0.360512,0.741808,0.483027,0.180873,0.510357,0.280762,0.00729102,0.333047,0.378619,0.890853,0.226898,0.879708,0.339451,0.127273,0.879713,0.235566,0.961653,0.803962,0.372327,0.822238,0.85915,0.73451,0.0871192,0.143596,0.161899,0.420769,0.0254681,0.157426,0.604212,0.0669581,0.458455,0.648418,0.683333,0.333516,0.348361,0.797848,0.667732,0.144906,0.298961,0.645225,0.980489,0.841297,0.308251,0.416612,0.582543,0.740665,0.473686,0.718306,0.877538,0.360167,0.0554032,0.0483092,0.324911,0.797844,0.482132,0.205213,0.25309,0.344651,0.517204,0.116514,0.649969,0.633284,0.202422,0.437846,0.875709,0.42711,0.421737,0.480577,0.543596,0.741669,0.18742,0.567269,0.796488,0.0830649,0.0888169,0.385431,0.482888,0.401578,0.545592,0.226823,0.294452,0.157199,0.270689,0.319677,0.66816,0.0245767,0.0634621,0.0404339,|0.158838,0.128902,0.857554,0.831489,0.173263,0.438785,0.954228,0.770792,0.461808,0.316447,0.241418,0.859087,0.0788978,0.530154,0.150693,0.605567,0.887712,0.745041,0.819672,0.959359,0.838563,0.550014,0.762358,0.466508,0.0243104,0.435359,0.817345,0.965401,0.851927,0.488311,0.361598,0.175546,0.0380379,0.13305,0.0565525,0.719342,0.31099,0.397099,0.501613,0.123801,0.962632,0.602801,0.142006,0.991247,0.452526,0.583787,0.150502,0.339091,0.835994,0.806932,0.12516,0.563648,0.624464,0.103275,0.521299,0.949088,0.434402,0.201038,0.333943,0.997124,0.445886,0.983426,0.0701645,0.26274,0.0982397,0.486134,0.737042,0.477239,0.489233,0.266664,0.769092,0.90988,0.375544,0.784194,0.442756,0.749278,0.910418,0.986893,0.325981,0.54166,0.976725,0.905498,0.343409,0.571821,0.198376,0.98924,0.220911,0.972321,0.196275,0.629234,0.0632992,0.676036,0.385113,0.915346,0.507149,0.777379,0.518896,0.140777,0.465868,0.0700355,0.2905,0.544052,0.989112,0.20466,0.0852787,0.714199,0.753902,0.430252,0.780124,0.102397,0.594642,0.820547,0.240692,0.289538,0.718437,0.118151,0.533845,0.591922,0.13425,0.516177,0.0590638,0.378194,0.95748,0.163829,0.933777,0.959549,0.659787,0.66941,0.830291,0.779858,0.614267,0.976512,0.581071,0.8153,0.839615,0.716948,0.477754,0.726841,0.798246,0.43647,0.243292,0.831181,0.667817,0.162804,0.428689,0.104158,0.901406,0.784848,0.548208,0.902432,0.730096,0.29567,0.883917,0.326005,0.106714,0.79159,0.0169772,0.756376,0.141091,0.14404,0.300884,0.42787,0.332431,0.359517,0.89911,0.066141,0.716493,0.60503,0.566551,0.733027,0.243318,0.981129,0.318558,0.768792,0.67993,0.623668,0.954125,0.821935,0.849835,0.585431,0.90613,0.676149,0.0555292,0.142757,0.281034,0.0278976,0.915748,0.707181,0.0786324,0.645917,0.279707,0.684014,0.341593,0.908662,0.166335,0.975838,0.10412,0.27223,0.0519525,0.0151314,0.852602,0.567918,0.324799,0.114301,0.283676,0.319015,0.696802,0.349609,0.724034,0.381355,0.541154,0.0426804,0.134795,0.226172,0.619469,0.337098,0.225518,0.186157,0.401195,0.0864677,0.746511,0.896951,0.445749,0.119565,0.71166,0.780127,0.410779,0.28932,0.867991,0.818729,0.39386,0.244083,0.173702,0.292963,0.0805572,0.466055,0.155524,0.00895578,0.317489,0.414522,0.927793,0.685845,0.909376,0.945885,0.127195,0.273619,0.0712311,0.00606775,0.529639,0.334298,0.18998,0.241912,0.916958,0.356165,0.0144272,0.361592,0.907651,0.100515,0.434503,0.606972,0.00784743,0.938123,0.0213996,0.739451,0.53964,0.47727,0.626641,0.807167,0.00606912,0.832264,0.713829,0.122981,0.39534,0.407506,0.251389,0.688722,0.464377,0.397185,0.500813,0.316459,0.220624,0.149305,0.151389,0.797115,0.156221,0.47113,0.161995,0.0708445,0.38637,0.00796497,0.787608,0.942651,0.0347275,0.664042,0.610471,0.863394,0.258156,0.566854,0.90103,0.986675,0.784984,0.577385,0.318791,0.683111,0.226414,0.209641,0.403477,0.453919,0.419795,0.394863,0.190832,0.849625,0.730255,0.178584,0.946961,0.434182,0.294773,0.39393,0.975822,0.877047,0.901598,0.46574,0.813443,0.0761265,0.761084,0.17037,0.720177,0.0222377,0.831019,0.772061,0.898106,0.649605,0.0528727,0.31342,0.0321683,0.341345,0.623179,0.18687,0.572659,0.960058,0.648732,0.0622954,0.590607,0.302023,0.722443,0.488529,0.246631,0.469469,0.769393,0.453758,0.975885,0.618299,0.246776,0.509124,0.293208,0.0263619,0.34121,0.570398,0.258671,0.168255,0.808927,0.507227,0.0984181,0.988434,0.198533,0.634246,0.17895,0.744647,0.469384,0.564335,0.665132,0.852962,0.737338,0.981256,0.15162,0.685024,0.998561,0.583456,0.0336701,0.988877,0.670733,0.124922,0.228393,0.931547,0.100926,0.245104,0.405544,0.903259,0.799403,0.666646,0.884486,0.0630437,0.803232,0.242225,0.955792,0.418295,0.618745,0.936845,0.518843,0.082828,0.366078,0.484,0.765263,0.508657,0.744189,0.272874,0.0913181,0.392355,0.257558,0.823696,0.316874,0.934789,0.155071,0.00393516,0.288451,0.490713,0.546053,0.118676,0.45072,0.775969,0.673048,0.693826,0.221636,0.19134,0.78936,0.579349,0.796834,0.341302,0.531472,0.326153,0.569661,0.170319,0.650909,0.0666148,0.482758,0.0663717,0.168696,0.212206,0.272386,0.289418,0.850245,0.671906,0.928344,0.480421,0.516667,0.056177,0.328589,0.122967,0.581042,0.423217,0.383539,0.736536,0.0543612,0.543347,0.663812,0.990691,0.487812,0.877939,0.470603,0.489737,0.0182795,0.507679,0.312013,0.0640866,0.53731,0.334256,0.258212,0.99146,0.948144,0.137581,0.790105,0.421527,0.630508,0.348968,0.292242,0.065917,0.334216,0.339414,0.12902,0.0902843,0.815887,0.607326,0.714795,0.0275693,0.417015,0.347491,0.852932,0.592423,0.606658,0.217421,0.862903,0.567287,0.205044,0.734294,0.266779,0.107025,0.262887,0.837405,0.606559,0.549378,0.360564,0.777455,0.564042,0.29235,0.422912,0.0651973,0.98668,0.630845,0.796024,0.787667,0.292192,0.758628,0.266536,0.146349,0.812542,0.423688,0.848228,0.357314,0.0538967,0.433433,0.877728,0.870113,0.308138,0.116866,0.11399,0.588308,0.620551,0.0940799,0.879238,0.707505,0.9561,0.838087,0.479988,0.443013,0.00733835,0.197111,0.398653,0.489545,0.439281,0.143408,0.618485,0.123981,0.386837,0.439675,0.547133,0.378436,0.100484,0.585472,0.663967,0.304181,0.441495,0.114399,0.347342,0.129304,0.294879,0.926859,0.782574,0.558665,0.865103,0.312688,0.516158,0.336688,0.508961,0.286646,0.598435,0.506893,0.896784,0.498219,0.219628,0.213326,0.174272,0.401188,0.97194,0.653214,0.748232,0.264888,0.687613,0.671239,0.5908,0.507168,0.684616,0.140296,0.296136,0.930931,0.483437,0.946243,0.508886,0.309309,0.192573,0.672156,0.21473,0.736122,0.241191,0.551987,0.845903,0.713823,0.276357,0.149999,0.672157,0.081152,0.649094,0.533951,0.601709,0.0132874,0.875114,0.967127,0.692911,0.0788838,0.382751,0.284037,0.51266,0.985492,0.654763,0.60581,0.811269,0.28096,0.112695,0.142037,0.84224,0.15866,0.714973,0.213188,0.237539,0.80655,0.470822,0.949134,0.471915,0.507836,0.319446,0.376024,0.90319,0.695092,0.972817,0.423251,0.728996,0.295765,0.18755,0.665889,0.658125,0.296688,0.487463,0.677692,0.879409,0.675872,0.220808,0.352261,0.158695,0.749965,0.0796687,0.122603,0.264938,0.519805,0.589562,0.700175,0.123603,0.740068,0.457064,0.0648409,0.0334699,0.40036,0.299562,0.625271,0.03232,0.163958,0.888644,0.396005,0.743749,0.556986,0.540443,0.900217,0.605975,0.129142,0.761829,0.504507,0.35918,0.0285528,0.930149,0.352451,0.37061,0.665466,0.616508,0.198285,0.0557908,0.240367,0.648285,0.353609,0.922354,0.869045,0.910053,0.372128,0.702142,0.845563,0.219887,0.0369945,0.0934943,0.970423,0.604942,0.608718,0.638956,0.829647,0.154672,0.57818,0.117346,0.532291,0.548327,0.446777,0.437776,0.271245,0.531851,0.307725,0.564666,0.388569,0.781083,0.950657,0.747681,0.421803,0.301638,0.667394,0.325678,0.0679889,0.192919,0.719264,0.630759,0.609327,0.651958,0.117717,0.0854545,0.894897,0.172754,0.897434,0.22316,0.072979,0.230554,0.660355,0.403154,0.317444,0.296092,0.141499,0.743839,0.21076,0.101059,0.38249,0.566876,0.499603,0.111276,0.719769,0.578677,0.537411,0.428712,0.743509,0.728661,0.662901,0.504273,0.0420534,0.621031,0.421555,0.10687,0.93768,0.837636,0.379035,0.991163,0.182603,0.215505,0.901552,0.187295,0.202839,0.293345,0.190327,0.382608,0.647899,0.292255,0.291018,0.306076,0.751752,0.101128,0.33195,0.372848,0.41003,0.0517588,0.196347,0.531316,0.464177,0.414254,0.263622,0.0892577,0.505143,0.317367,0.738927,0.0626365,0.317375,0.924077,0.0363054,0.480391,0.105984,0.427369,0.724608,0.940415,0.577737,0.590546,0.711044,0.278557,0.524371,0.478893,0.696734,0.104068,0.647117,0.874814,0.0894629,0.504465,0.845161,0.889816,0.302063,0.841349,0.840788,0.17293,0.873556,0.655534,0.676715,0.313853,0.606207,0.158604,0.773914,0.77404,0.926602,0.559092,0.552177,0.957166,0.280496,0.817754,0.157509,0.476971,0.790209,0.172119,0.665842,0.677091,0.785992,0.264861,0.210007,0.00396359,0.0163274,0.235731,0.22431,0.373855,0.734974,0.656734,0.42528,0.481511,0.822265,0.536808,0.554628,0.650589,0.641031,0.369714,0.961612,0.585146,0.484792,0.00581324,0.91706,0.273281,0.489032,0.400181,0.406984,0.141736,0.245597,0.356918,0.902653,0.395231,0.442139,0.575956,0.552431,0.0529851,0.715415,0.0121992,0.992382,0.430868,0.00750494,0.496264,0.998661,0.167202,0.960428,0.114599,0.589151,0.972876,0.107987,0.260365,0.419929,0.0588487,0.718274,0.0299836,0.585653,0.0399324,0.681906,0.679544,0.71237,0.169313,0.638445,0.946709,0.867404,0.466139,0.458731,0.981302,0.229566,0.774093,0.207786,0.493648,0.611729,0.248262,0.525554,0.0176572,0.815969,0.79167,0.142423,0.693138,0.032034,0.705329,0.820433,0.809561,0.431353,0.712011,0.515775,0.620239,0.802296,0.66121,0.968683,0.799499,0.439536,0.410267,0.0119625,0.626305,0.853713,0.909039,0.886662,0.0973312,0.652884,0.477008,0.456746,0.0290311,0.71848,0.983855,0.152378,0.852986,0.867323,0.112638,0.465467,0.286548,0.0343835,0.903991,0.985474,0.0332177,0.173743,0.95365,0.170547,0.127781,0.216992,0.163192,0.331723,0.39122,0.537868,0.620032,0.0264166,0.587621,0.208814,0.71241,0.755792,0.512967,0.78265,0.0525119,0.960225,0.778751,0.015653,0.752178,0.291081,0.0619103,0.273889,0.20794,0.212549,0.339483,0.0882163,0.746718,0.362739,0.0909165,0.302504,0.6723,0.973007,0.358659,0.198375,0.169983,0.389664,0.607089,0.0420156,0.596747,0.947075,0.0297737,0.914398,0.556971,0.155678,0.43222,0.120094,0.67747,0.354605,|0.805567,0.449239,0.513384,0.921954,0.697322,0.0155544,0.839243,0.34027,0.0719905,0.0343421,0.801643,0.357971,0.684594,0.638759,0.536171,0.696289,0.037513,0.648516,0.305402,0.669645,0.979901,0.306452,0.300495,0.805094,0.217072,0.179341,0.31728,0.748595,0.985353,0.543322,0.48732,0.295518,0.519828,0.87284,0.231301,0.644927,0.47949,0.439706,0.638838,0.0768491,0.0601849,0.580672,0.154173,0.881574,0.898117,0.417872,0.0391909,0.766039,0.921031,0.601828,0.676498,0.788079,0.952145,0.992678,0.151196,0.940496,0.445791,0.598432,0.560741,0.788454,0.359825,0.657128,0.463574,0.847272,0.873354,0.663069,0.124149,0.376791,0.727418,0.148878,0.136138,0.218639,0.0491704,0.261469,0.228102,0.9169,0.366976,0.499642,0.128649,0.143081,0.717068,0.246675,0.775252,0.725538,0.699918,0.876913,0.210474,0.849348,0.5186,0.915268,0.748543,0.677756,0.47712,0.600746,0.200772,0.127947,0.73672,0.932208,0.0196487,0.266547,0.871607,0.367206,0.206069,0.18483,0.550666,0.5521,0.938305,0.889018,0.905601,0.643395,0.645922,0.74356,0.992988,0.66077,0.858962,0.438861,0.908941,0.539442,0.777202,0.77464,0.514109,0.11206,0.231851,0.629442,0.80194,0.015118,0.211173,0.16291,0.74245,0.643739,0.340464,0.716895,0.149019,0.837114,0.379642,0.923761,0.59545,0.269174,0.571226,0.808951,0.943007,0.0588012,0.639593,0.291108,0.0819728,0.313109,0.371575,0.546579,0.118863,0.227543,0.770767,0.965682,0.592909,0.414586,0.506518,0.384835,0.06967,0.216834,0.728632,0.279418,0.543323,0.0191517,0.19488,0.18714,0.197798,0.0164688,0.462576,0.409539,0.907602,0.922974,0.245918,0.526568,0.325755,0.980692,0.88447,0.580643,0.913305,0.28732,0.15491,0.168201,0.0386911,0.0940842,0.631129,0.643532,0.500316,0.775037,0.891507,0.979322,0.342169,0.523338,0.0427535,0.569351,0.103719,0.0190669,0.165418,0.831919,0.132814,0.161614,0.434772,0.328208,0.599871,0.24271,0.929821,0.424968,0.99017,0.659239,0.374793,0.74282,0.844594,0.0046466,0.517792,0.53154,0.154072,0.0902205,0.897961,0.221469,0.579681,0.330784,0.463699,0.223908,0.866636,0.143563,0.483981,0.581803,0.886338,0.00800496,0.250254,0.528232,0.0455147,0.0642874,0.657672,0.321451,0.858038,0.0969493,0.0490324,0.121686,0.950888,0.387021,0.274758,0.792375,0.358878,0.215487,0.757227,0.14616,0.667129,0.584922,0.405409,0.38153,0.927649,0.481594,0.7811,0.2327,0.364219,0.327812,0.102912,0.0326971,0.864294,0.914549,0.44825,0.678959,0.882173,0.917906,0.324885,0.109909,0.325935,0.967105,0.472847,0.443706,0.89601,0.773239,0.567419,0.803966,0.21862,0.660047,0.896421,0.787642,0.0618166,0.427465,0.546689,0.600641,0.0104352,0.44517,0.373114,0.61558,0.408177,0.475395,0.985331,0.898918,0.293618,0.889332,0.127477,0.721441,0.878158,0.099065,0.190376,0.441607,0.690903,0.135962,0.0673763,0.706419,0.354385,0.408976,0.870379,0.863252,0.593368,0.390623,0.239011,0.793452,0.409688,0.902789,0.793158,0.369412,0.476103,0.557734,0.936472,0.505704,0.812319,0.190279,0.392798,0.224683,0.833391,0.690237,0.296415,0.95245,0.350516,0.0736497,0.890838,0.0211773,0.137662,0.690738,0.813655,0.135376,0.645455,0.461301,0.414951,0.813533,0.259958,0.596031,0.55485,0.694239,0.689662,0.354314,0.0210544,0.357029,0.750116,0.270339,0.787265,0.0665318,0.13388,0.934382,0.13081,0.53199,0.598431,0.0781012,0.485139,0.46149,0.952441,0.804257,0.617392,0.782648,0.121712,0.500423,0.802646,0.0229391,0.736877,0.673221,0.706416,0.0561267,0.467816,0.608427,0.906933,0.254974,0.542617,0.729753,0.21889,0.654083,0.600927,0.957465,0.271974,0.662777,0.406279,0.024099,0.221052,0.993434,0.182251,0.937594,0.936449,0.431203,0.713493,0.096761,0.533414,0.139525,0.470746,0.673658,0.874749,0.304328,0.749475,0.807536,0.99444,0.386692,0.407445,0.637868,0.739409,0.509251,0.571056,0.820671,0.0666714,0.106991,0.661277,0.177398,0.205398,0.513647,0.391169,0.921359,0.284421,0.462709,0.990641,0.809107,0.978325,0.375687,0.646848,0.416371,0.70565,0.503847,0.0732791,0.355604,0.873343,0.9107,0.269358,0.521381,0.636127,0.502979,0.206024,0.233281,0.67307,0.244512,0.550086,0.894495,0.161863,0.163068,0.435298,0.638013,0.00485224,0.361876,0.0945153,0.55108,0.118576,0.189635,0.17341,0.868569,0.719476,0.978552,0.620452,0.995083,0.964851,0.79731,0.329629,0.457371,0.472059,0.577964,0.479705,0.141401,0.684913,0.812689,0.9228,0.383516,0.190977,0.400944,0.16578,0.96211,0.828631,0.923182,0.569204,0.240386,0.384844,0.990662,0.266816,0.106604,0.518583,0.0699151,0.565051,0.164369,0.588243,0.545607,0.540755,0.186934,0.21865,0.0796466,0.840976,0.743387,0.552603,0.988243,0.866861,0.741794,0.457089,0.62858,0.525365,0.398531,0.13054,0.736122,0.903416,0.192054,0.284195,0.178341,0.862628,0.193232,0.951024,0.423494,0.647695,0.282427,0.460555,0.053426,0.735109,0.132483,0.212942,0.650303,0.665896,0.948699,0.340766,0.487478,0.42328,0.839121,0.510997,0.00227702,0.239359,0.317685,0.169805,0.784642,0.395473,0.635184,0.316204,0.282982,0.836879,0.682769,0.873896,0.536697,0.893159,0.491224,0.222282,0.949772,0.0125515,0.211171,0.743499,0.381771,0.899666,0.105476,0.503683,0.511144,0.484999,0.91703,0.26422,0.497325,0.672694,0.452597,0.361285,0.339192,0.189503,0.820884,0.7512,0.0361381,0.262222,0.470538,0.208285,0.349423,0.956869,0.125759,0.124293,0.0654082,0.454123,0.825562,0.826376,0.515508,0.502179,0.691174,0.665048,0.560915,0.858714,0.259281,0.420994,0.832178,0.830449,0.109446,0.477978,0.799019,0.0865058,0.302954,0.605459,0.417824,0.286788,0.0617288,0.685443,0.0455518,0.63961,0.249188,0.279654,0.26593,0.342355,0.735563,0.808689,0.424966,0.869283,0.302298,0.892144,0.809191,0.315974,0.880996,0.604288,0.732161,0.35265,0.424648,0.0413497,0.86705,0.220106,0.598461,0.610468,0.612997,0.721733,0.209585,0.417154,0.737774,0.370037,0.197768,0.965156,0.632231,0.180126,0.208188,0.733549,0.649139,0.159539,0.981573,0.19693,0.73477,0.228838,0.116307,0.872682,0.0464752,0.509988,0.24196,0.636016,0.0939049,0.760922,0.486258,0.419362,0.623153,0.621117,0.409779,0.742173,0.920663,0.228366,0.0151258,0.389718,0.203835,0.938913,0.16921,0.726084,0.347661,0.782746,0.770596,0.337536,0.319586,0.539988,0.111706,0.265243,0.240682,0.781071,0.907591,0.902185,0.831647,0.584774,0.587565,0.0414076,0.0403464,0.182697,0.137302,0.444494,0.699139,0.382748,0.759373,0.0997054,0.262235,0.74129,0.427666,0.607667,0.473678,0.40432,0.136958,0.253427,0.162107,0.0663985,0.911121,0.26671,0.40002,0.442281,0.0720039,0.486563,0.677481,0.575817,0.935244,0.0866616,0.615401,0.235753,0.0867733,0.014697,0.623456,0.729298,0.599618,0.450898,0.118151,0.410961,0.952323,0.201417,0.989255,0.132219,0.831676,0.225381,0.493577,0.480939,0.464424,0.806647,0.676974,0.845389,0.0564444,0.646761,0.878976,0.348295,0.968649,0.809728,0.653632,0.902287,0.274217,0.0687143,0.733658,0.509719,0.622734,0.0432126,0.420853,0.422974,0.109688,0.650521,0.484873,0.736234,0.0756282,0.201029,0.2221,0.761671,0.758338,0.980946,0.155653,0.0796514,0.791824,0.718287,0.077872,0.657486,0.574437,0.0481654,0.0859733,0.274272,0.400278,0.222231,0.874331,0.665146,0.826274,0.412707,0.208697,0.0484058,0.820025,0.00605565,0.929302,0.499928,0.790915,0.259133,0.134577,0.916766,0.943018,0.350569,0.572164,0.0607699,0.689071,0.808054,0.161929,0.3658,0.389777,0.515192,0.473949,0.281561,0.0792893,0.654953,0.527045,0.324757,0.874935,0.28645,0.163679,0.70019,0.808558,0.746164,0.552431,0.483004,0.366467,0.234415,0.813666,0.966697,0.478368,0.747274,0.10529,0.452268,0.0720996,0.772791,0.666555,0.565389,0.843257,0.153803,0.0826882,0.0644761,0.362898,0.481199,0.225068,0.766625,0.328536,0.274847,0.762686,0.0710185,0.918588,0.79257,0.910748,0.248382,0.0199808,0.60854,0.976117,0.50052,0.895633,0.130903,0.316791,0.405885,0.225774,0.890722,0.421946,0.498141,0.572769,0.249928,0.15421,0.923838,0.513701,0.414745,0.736462,0.442953,0.18614,0.740432,0.580259,0.51256,0.733387,0.202398,0.126936,0.818385,0.088357,0.174944,0.631572,0.0726996,0.278169,0.833364,0.947776,0.874408,0.495466,0.951135,0.662692,0.399291,0.218821,0.258133,0.961417,0.902441,0.197173,0.515132,0.494282,0.897101,0.411788,0.731962,0.812942,0.133401,0.877831,0.551112,0.702025,0.0391671,0.239172,0.388052,0.247786,0.0189648,0.755487,0.00731742,0.880741,0.755661,0.763542,0.327617,0.429444,0.420598,0.531152,0.231937,0.77645,0.926492,0.273511,0.128071,0.701448,0.65051,0.286653,0.623332,0.534851,0.179394,0.382844,0.123627,0.49833,0.652569,0.646074,0.755016,0.770113,0.155536,0.824258,0.469188,0.404158,0.802689,0.168529,0.282678,0.0738156,0.907693,0.143167,0.984111,0.528846,0.184043,0.108695,0.39707,0.465525,0.0312562,0.384611,0.152423,0.63634,0.156057,0.722119,0.976339,0.0975964,0.396642,0.479779,0.0128036,0.218462,0.313172,0.554625,0.177567,0.890242,0.651425,0.0505615,0.850672,0.708769,0.107057,0.281518,0.805668,0.886832,0.458946,0.0560649,0.117697,0.752529,0.682517,0.822171,0.18405,0.062103,0.472651,0.791186,0.530559,0.739748,0.363159,0.258896,0.53573,0.55124,0.166004,0.0311366,0.355075,0.111539,0.11119,0.360509,0.715112,0.639331,0.944348,0.872769,0.39152,0.782472,0.616192,0.34523,0.173613,0.853772,0.244525,0.0691499,0.241722,0.94149,0.462515,0.722633,0.632573,0.935492,0.630557,0.518816,0.222088,0.411135,0.713782,0.349857,0.484614,0.526062,|0.0700489,0.246157,0.381994,0.233482,0.668356,0.0737261,0.713206,0.800667,0.232531,0.875369,0.13842,0.681275,0.457508,0.280645,0.983228,0.127916,0.882383,0.329487,0.690531,0.41419,0.599585,0.00319427,0.792888,0.563715,0.081834,0.0500606,0.529519,0.114927,0.0624563,0.0436672,0.258015,0.730259,0.736303,0.941544,0.917605,0.724263,0.708567,0.950131,0.594918,0.959191,0.496086,0.87037,0.885402,0.834566,0.689754,0.566146,0.741229,0.715632,0.602173,0.0661445,0.653925,0.802663,0.491838,0.0365005,0.348906,0.985194,0.655622,0.743797,0.484084,0.550518,0.596436,0.801707,0.533372,0.0875337,0.0899672,0.317786,0.883727,0.528178,0.185659,0.842758,0.528993,0.633778,0.59227,0.354721,0.951481,0.956254,0.418221,0.274131,0.793888,0.366268,0.29432,0.254472,0.0300903,0.959499,0.738546,0.0156857,0.472264,0.656557,0.295527,0.237788,0.363633,0.632033,0.66907,0.921638,0.438398,0.352727,0.577115,0.0633147,0.00826406,0.264232,0.743927,0.953314,0.946624,0.0305599,0.850043,0.180049,0.810015,0.78614,0.735293,0.247429,0.16258,0.396691,0.588096,0.903843,0.285708,0.889443,0.65749,0.0617819,0.569961,0.852203,0.361584,0.92501,0.554284,0.396224,0.354596,0.170339,0.0665879,0.360122,0.489854,0.0411345,0.688775,0.735016,0.244763,0.924693,0.191919,0.465624,0.26804,0.620322,0.732033,0.0310937,0.650212,0.102366,0.29927,0.683174,0.273016,0.108882,0.460663,0.105478,0.196031,0.215708,0.280109,0.710703,0.692674,0.876988,0.653553,0.335719,0.63522,0.444588,0.117273,0.0626149,0.561564,0.802686,0.198359,0.0704902,0.319809,0.424197,0.124923,0.65215,0.706138,0.0105461,0.498659,0.838853,0.327619,0.98229,0.658328,0.824154,0.145622,0.686058,0.216443,0.227167,0.394546,0.00157201,0.184665,0.608388,0.861758,0.33254,0.529196,0.359814,0.195638,0.692778,0.0249704,0.553609,0.979038,0.307704,0.425985,0.861513,0.959961,0.938774,0.281606,0.507708,0.540159,0.0673014,0.464524,0.357455,0.276144,0.318187,0.397076,0.512885,0.55416,0.7308,0.89825,0.0693881,0.0845908,0.990622,0.415587,0.480885,0.179218,0.231791,0.450997,0.355928,0.258864,0.901534,0.657322,0.252807,0.154592,0.876694,0.423461,0.83001,0.680135,0.716155,0.700038,0.928448,0.270137,0.051995,0.23863,0.857301,0.30635,0.749908,0.35256,0.0390571,0.388953,0.0997452,0.953364,0.847208,0.11528,0.295038,0.46374,0.240568,0.254163,0.146348,0.653833,0.441986,0.423488,0.922802,0.260949,0.935779,0.521648,0.472107,0.872037,0.480303,0.437367,0.617241,0.361322,0.575217,0.148145,0.558766,0.63871,0.0552742,0.0484764,0.715149,0.172733,0.0401707,0.318795,0.793104,0.31778,0.18588,0.933185,0.768716,0.990134,0.250322,0.835211,0.228979,0.781616,0.342479,0.0103462,0.0579301,0.00171548,0.959371,0.761727,0.577182,0.664828,0.0243568,0.0956342,0.259749,0.618963,0.431337,0.333656,0.55435,0.267868,0.982599,0.0941222,0.817866,0.339479,0.864035,0.323947,0.58604,0.983406,0.537338,0.659119,0.605654,0.0882096,0.0929317,0.882373,0.598268,0.784681,0.656412,0.245631,0.90761,0.32067,0.233028,0.989844,0.192599,0.0231246,0.565261,0.806776,0.302264,0.742078,0.77422,0.281878,0.771603,0.354036,0.0574844,0.911105,0.567425,0.733984,0.425646,0.410511,0.890518,0.175671,0.220351,0.5627,0.0463722,0.989436,0.068593,0.217786,0.866121,0.929923,0.755728,0.481205,0.877443,0.178354,0.000530481,0.785778,0.201769,0.167816,0.87422,0.680126,0.486876,0.879241,0.389726,0.521514,0.900724,0.298324,0.692839,0.22309,0.314617,0.403372,0.184753,0.821951,0.29434,0.282273,0.0868688,0.536398,0.0708902,0.564805,0.918655,0.498306,0.749479,0.455746,0.769689,0.667357,0.00621319,0.265783,0.744633,0.196108,0.217359,0.752689,0.557302,0.318962,0.82341,0.86314,0.56498,0.807419,0.114074,0.514352,0.896922,0.0144536,0.990937,0.986736,0.855871,0.997503,0.724187,0.858578,0.569715,0.989629,0.769325,0.549257,0.416623,0.954298,0.591393,0.012871,0.622127,0.278317,0.778684,0.500774,0.669538,0.523305,0.23815,0.95145,0.0350113,0.667896,0.823655,0.200107,0.75384,0.332912,0.671474,0.594183,0.973916,0.765441,0.355524,0.650918,0.268761,0.162953,0.88013,0.570448,0.535955,0.343015,0.426862,0.175138,0.137625,0.348677,0.883937,0.264433,0.960514,0.889894,0.438689,0.262389,0.667761,0.649717,0.131259,0.516462,0.99391,0.948518,0.870624,0.831723,0.29555,0.134633,0.513617,0.842284,0.423935,0.658623,0.0244244,0.789071,0.490716,0.895282,0.452454,0.0610063,0.858227,0.760004,0.879659,0.0913347,0.15459,0.22799,0.619576,0.179768,0.264202,0.331383,0.779652,0.177232,0.109422,0.556705,0.928839,0.351066,0.516742,0.23709,0.654082,0.260256,0.9543,0.740691,0.0289735,0.45037,0.797953,0.98328,0.946617,0.118465,0.18043,0.423976,0.716677,0.327911,0.504591,0.864943,0.043622,0.710789,0.590857,0.239258,0.455061,0.837456,0.0733472,0.134762,0.50138,0.873417,0.564296,0.166189,0.109167,0.665053,0.971059,0.327341,0.725799,0.373219,0.524676,0.668911,0.952256,0.427637,0.869436,0.399983,0.252278,0.00296181,0.539871,0.745384,0.207258,0.329713,0.231685,0.797341,0.414401,0.361685,0.851698,0.391109,0.022622,0.976544,0.791164,0.73787,0.563235,0.0736831,0.292707,0.248912,0.48902,0.967913,0.83931,0.0994214,0.640374,0.847844,0.25902,0.678863,0.0736634,0.364436,0.436512,0.646476,0.163591,0.698239,0.647696,0.728938,0.680677,0.196537,0.0896342,0.0927318,0.164229,0.502495,0.437622,0.236601,0.783268,0.302759,0.896934,0.0575795,0.688358,0.542572,0.286597,0.948348,0.994725,0.538344,0.665565,0.992311,0.0383254,0.11437,0.0523174,0.939799,0.429831,0.438666,0.83703,0.993796,0.431975,0.620876,0.393911,0.0408268,0.626163,0.595261,0.316765,0.347294,0.754038,0.429231,0.461604,0.750713,0.382927,0.598,0.270076,0.0304236,0.996171,0.172417,0.853501,0.0957291,0.203074,0.123051,0.874802,0.914082,0.777975,0.377783,0.0462153,0.522827,0.230612,0.0897432,0.534052,0.287146,0.338477,0.234056,0.642527,0.499261,0.385078,0.357659,0.910742,0.46102,0.784029,0.952974,0.308599,0.756158,0.292835,0.293974,0.539173,0.75539,0.815674,0.120222,0.552962,0.992185,0.0576414,0.0341491,0.370313,0.858365,0.437825,0.565991,0.936114,0.883126,0.0172068,0.135733,0.886632,0.0333872,0.0624088,0.57421,0.912733,0.398958,0.914936,0.20657,0.790228,0.620116,0.632293,0.43561,0.553923,0.269463,0.0669456,0.936317,0.0687692,0.0852546,0.547042,0.722942,0.0648232,0.427087,0.284493,0.0525638,0.0688756,0.994709,0.398368,0.519277,0.233016,0.971284,0.711045,0.936571,0.707323,0.212208,0.0735613,0.453656,0.90358,0.510213,0.829365,0.459229,0.941808,0.210048,0.104096,0.59731,0.0659648,0.867966,0.494538,0.706267,0.653836,0.689193,0.328802,0.0109224,0.999656,0.310794,0.764318,0.300633,0.424002,0.670991,0.923952,0.964432,0.0902,0.956522,0.316591,0.644979,0.0727218,0.668111,0.987261,0.0422416,0.515671,0.36539,0.525889,0.415266,0.722504,0.349332,0.420672,0.827943,0.298848,0.665335,0.121211,0.354231,0.687603,0.957918,0.811505,0.152437,0.916192,0.433647,0.881644,0.285495,0.196228,0.865581,0.344554,0.0507591,0.287201,0.621265,0.271318,0.707013,0.942186,0.692395,0.0544615,0.864399,0.850308,0.373467,0.0954615,0.309837,0.701931,0.140145,0.397549,0.852363,0.861954,0.728895,0.772758,0.537998,0.485896,0.912466,0.700997,0.148303,0.696205,0.688396,0.319055,0.714322,0.747848,0.18591,0.322005,0.608639,0.422886,0.266789,0.499847,0.928207,0.407983,0.201438,0.705779,0.710303,0.0180487,0.240004,0.382189,0.713799,0.511086,0.292644,0.573103,0.0819179,0.136702,0.967974,0.489326,0.833621,0.853778,0.365144,0.13572,0.382945,0.363022,0.807554,0.101378,0.507829,0.543228,0.00141495,0.309998,0.694529,0.351773,0.311743,0.101665,0.391989,0.223634,0.781348,0.608662,0.562435,0.29723,0.2525,0.512181,0.201646,0.365699,0.897985,0.492794,0.777648,0.431248,0.583314,0.978786,0.520754,0.189474,0.367278,0.753063,0.60017,0.359648,0.786728,0.175694,0.61802,0.869075,0.147845,0.47197,0.92182,0.774783,0.715704,0.979845,0.962841,0.948368,0.546101,0.996067,0.389752,0.0909534,0.727325,0.374076,0.643732,0.419916,0.0525196,0.845412,0.319177,0.108343,0.167887,0.0585753,0.471026,0.706006,0.501578,0.415261,0.595466,0.306381,0.361126,0.389893,0.738675,0.737364,0.447192,0.356064,0.911486,0.857442,0.434504,0.320061,0.232649,0.98456,0.458794,0.100197,0.145546,0.490177,0.888672,0.743018,0.599628,0.0298302,0.546334,0.308692,0.0337074,0.692761,0.0822594,0.0852147,0.978375,0.473669,0.642571,0.709499,0.818246,0.726947,0.465978,0.176782,0.874278,0.865972,0.422947,0.81049,0.882405,0.428891,0.516717,0.254752,0.286756,0.791723,0.661841,0.943226,0.970018,0.886428,0.838691,0.241472,0.921119,0.278375,0.713313,0.0318204,0.111167,0.836225,0.742404,0.300984,0.252378,0.728186,0.820561,0.534311,0.904868,0.508144,0.0330144,0.895493,0.296153,0.15843,0.735003,0.411334,0.660679,0.0367853,0.0429603,0.0793803,0.534778,0.36073,0.222175,0.883451,0.263493,0.961922,0.207102,0.277499,0.356575,0.661256,0.367832,0.752816,0.901875,0.00153905,0.662868,0.449777,0.747955,0.975975,0.575965,0.0164766,0.415334,0.770002,0.834835,0.742103,0.0864834,0.692287,0.184765,0.512036,0.623125,0.433168,0.879537,0.439786,0.281161,0.689111,0.736609,0.479545,0.790767,0.442985,0.613957,0.937838,0.462022,0.679149,0.227652,0.65766,0.425303,0.96231,0.755851,0.162395,0.289497,0.431495,0.385888,0.959382,0.0377936,0.498832,0.240013,0.258195,0.68784,0.474597,0.86281,0.804291,0.881091,0.315801,|0.330326,0.596338,0.62975,0.928276,0.909615,0.10671,0.376673,0.613662,0.760539,0.541911,0.910917,0.912866,0.613274,0.279772,0.45252,0.887546,0.959786,0.485829,0.0875247,0.282099,0.875049,0.0931782,0.906811,0.633456,0.433386,0.948623,0.571307,0.733529,0.301041,0.676738,0.883134,0.906862,0.919453,0.792623,0.157744,0.846659,0.849082,0.82698,0.679487,0.690286,0.970015,0.635247,0.515838,0.957299,0.547246,0.0322657,0.888677,0.979419,0.464641,0.0081529,0.73078,0.390493,0.486874,0.564158,0.988963,0.667032,0.205376,0.866447,0.476979,0.150257,0.806352,0.0552422,0.31623,0.388561,0.227609,0.888397,0.496469,0.596069,0.090235,0.995737,0.323267,0.125866,0.621029,0.0186425,0.398869,0.0606024,0.474231,0.0307927,0.0380364,0.771342,0.88299,0.023251,0.946074,0.55476,0.396934,0.112055,0.094105,0.152176,0.26158,0.0750754,0.907276,0.893261,0.0627052,0.647083,0.427443,0.537443,0.476064,0.602781,0.63547,0.0920708,0.162097,0.0968879,0.510253,0.813909,0.37339,0.391488,0.630953,0.963692,0.994199,0.66002,0.154195,0.939478,0.806858,0.0347279,0.318212,0.290265,0.765878,0.0929089,0.385211,0.611792,0.184469,0.278522,0.814827,0.905154,0.376394,0.0456956,0.658506,0.446611,0.684806,0.650584,0.635458,0.775664,0.819325,0.849683,0.741028,0.0547553,0.92999,0.52508,0.791698,0.822869,0.837907,0.452702,0.41388,0.696076,0.398609,0.277265,0.864031,0.570633,0.924138,0.353014,0.66217,0.304253,0.149938,0.690395,0.827121,0.609463,0.978431,0.535157,0.649712,0.591663,0.642767,0.519579,0.537221,0.10747,0.0042572,0.762878,0.473983,0.624058,0.614523,0.572732,0.566305,0.925545,0.29245,0.993023,0.952005,0.299323,0.785788,0.229359,0.465944,0.935452,0.690954,0.71549,0.271427,0.0460602,0.428388,0.0190861,0.508108,0.281596,0.568045,0.262452,0.153738,0.549607,0.718575,0.0810415,0.955118,0.990922,0.927255,0.671047,0.521425,0.537838,0.753383,0.1236,0.236282,0.099161,0.98982,0.856386,0.24951,0.735132,0.538211,0.83188,0.212022,0.109293,0.697116,0.474379,0.818986,0.17065,0.77904,0.814342,0.387754,0.671077,0.570513,0.715504,0.848694,0.695081,0.254122,0.516906,0.883603,0.206641,0.0758634,0.856959,0.0142041,0.576508,0.355531,0.53974,0.689569,0.902291,0.541495,0.559547,0.375129,0.456046,0.320781,0.919848,0.346182,0.941282,0.0285298,0.572885,0.645168,0.831879,0.983049,0.870676,0.162901,0.486362,0.276815,0.669337,0.0159924,0.100613,0.531621,0.269284,0.759168,0.368655,0.972509,0.563244,0.782056,0.789825,0.615765,0.475451,0.939284,0.504648,0.759881,0.493291,0.62111,0.239422,0.466117,0.483641,0.198085,0.231379,0.591474,0.105944,0.881736,0.890371,0.357801,0.474454,0.111801,0.401162,0.691761,0.641131,0.839316,0.469695,0.355545,0.0902475,0.0102309,0.467598,0.674605,0.366654,0.642765,0.552003,0.911995,0.400962,0.470439,0.864536,0.904132,0.165954,0.0360413,0.0911996,0.264823,0.26186,0.17469,0.754174,0.328851,0.123775,0.866063,0.0564377,0.846547,0.275301,0.149228,0.688213,0.541142,0.622682,0.288065,0.0401866,0.181398,0.866954,0.551578,0.0731136,0.780957,0.13414,0.445444,0.307956,0.496716,0.391887,0.141081,0.72249,0.398294,0.703894,0.54126,0.187462,0.560297,0.763311,0.814619,0.0326149,0.544443,0.884047,0.304931,0.599395,0.111355,0.287157,0.924983,0.487308,0.201725,0.843103,0.833923,0.890096,0.302635,0.369126,0.631995,0.58601,0.564548,0.472995,0.0508281,0.262392,0.930877,0.927159,0.529371,0.363283,0.333795,0.443095,0.295657,0.32542,0.32103,0.970385,0.758597,0.244433,0.291408,0.0933769,0.921127,0.918497,0.072953,0.996667,0.0148528,0.516383,0.63881,0.0710174,0.0354127,0.283367,0.946847,0.130165,0.758372,0.782154,0.240379,0.851447,0.66327,0.154503,0.0978718,0.240176,0.217959,0.27623,0.565339,0.779376,0.54255,0.795483,0.755672,0.291458,0.901836,0.556078,0.666733,0.817357,0.764978,0.963505,0.544361,0.156785,0.518466,0.127533,0.0695303,0.593672,0.759764,0.27505,0.271612,0.452824,0.575048,0.747801,0.600573,0.855082,0.544948,0.840212,0.346932,0.788912,0.0672528,0.919867,0.53255,0.959736,0.0634857,0.252943,0.888888,0.0672956,0.56199,0.545824,0.750741,0.393057,0.782275,0.654339,0.771912,0.701607,0.289764,0.322143,0.441433,0.336542,0.570062,0.0957361,0.212731,0.67913,0.68445,0.674232,0.753274,0.934676,0.979211,0.933044,0.0799363,0.684086,0.600928,0.306316,0.215929,0.503296,0.401615,0.642748,0.620377,0.144061,0.461933,0.8724,0.249886,0.701974,0.364635,0.338252,0.597615,0.854054,0.550652,0.200059,0.165529,0.603978,0.308485,0.0221681,0.381503,0.61676,0.630386,0.883765,0.652397,0.471708,0.906805,0.600418,0.707976,0.621868,0.440087,0.708939,0.814348,0.864826,0.56052,0.494974,0.988646,0.743364,0.907151,0.64575,0.977483,0.849008,0.65143,0.355894,0.556912,0.411831,0.901356,0.264883,0.0146729,0.244047,0.639555,0.72844,0.622417,0.820419,0.618239,0.321877,0.638225,0.00391102,0.421409,0.620619,0.651575,0.0200394,0.0973461,0.507328,0.963351,0.473433,0.859527,0.604212,0.0774933,0.0374114,0.291894,0.687228,0.0315763,0.460733,0.0266885,0.738066,0.989121,0.251146,0.14808,0.309344,0.0501357,0.415318,0.556281,0.942941,0.524463,0.657255,0.152141,0.858229,0.462563,0.436551,0.414467,0.776676,0.33182,0.482625,0.349434,0.560324,0.131092,0.301215,0.117758,0.12543,0.627636,0.903595,0.527433,0.942996,0.565977,0.916249,0.909864,0.90981,0.576999,0.997628,0.371078,0.761155,0.6474,0.97543,0.662939,0.685757,0.928842,0.664452,0.612117,0.508325,0.772226,0.276758,0.309356,0.918818,0.455932,0.455462,0.72425,0.569912,0.0822706,0.991015,0.100086,0.172008,0.9978,0.129169,0.386259,0.65165,0.982694,0.842654,0.711637,0.516068,0.765079,0.0750775,0.37068,0.883449,0.3265,0.774675,0.49728,0.665194,0.427032,0.713196,0.846653,0.727984,0.534021,0.712599,0.556481,0.298543,0.783378,0.0586292,0.903421,0.899395,0.847831,0.300963,0.999858,0.206054,0.636016,0.841605,0.618072,0.874394,0.910461,0.573226,0.363491,0.595505,0.881009,0.583591,0.121658,0.369666,0.489018,0.40322,0.613049,0.84664,0.739596,0.793305,0.921765,0.823333,0.500358,0.936274,0.387049,0.621149,0.885855,0.463467,0.870054,0.317571,0.380037,0.6043,0.818037,0.432607,0.690301,0.333221,0.641863,0.197612,0.234763,0.175997,0.0504757,0.438544,0.0571817,0.360613,0.891365,0.77645,0.422089,0.065975,0.189837,0.816624,0.017186,0.779811,0.551845,0.909876,0.89618,0.816603,0.674279,0.548938,0.233163,0.495503,0.150272,0.115794,0.517456,0.445391,0.318034,0.292263,0.452346,0.437199,0.723674,0.238914,0.722666,0.727273,0.323862,0.44166,0.454068,0.376293,0.369399,0.311232,0.786669,0.751545,0.785545,0.470211,0.911674,0.819421,0.392497,0.124991,0.0980052,0.840645,0.672649,0.762588,0.442107,0.790807,0.735258,0.468238,0.509019,0.970447,0.641747,0.289914,0.21605,0.341399,0.973381,0.422193,0.999889,0.797773,0.715697,0.943049,0.282583,0.336529,0.0777764,0.306113,0.586575,0.0717228,0.402113,0.490836,0.495752,0.886808,0.122773,0.475641,0.479936,0.380353,0.333853,0.450273,0.676479,0.00940114,0.592012,0.718973,0.304495,0.588689,0.800851,0.153327,0.397708,0.212603,0.120458,0.277644,0.271775,0.915134,0.870928,0.163945,0.796054,0.0734317,0.849161,0.594866,0.728087,0.549178,0.926358,0.462681,0.743169,0.227827,0.107535,0.590943,0.422152,0.529667,0.0400841,0.0897856,0.238479,0.252421,0.52486,0.363796,0.837304,0.157552,0.771373,0.524815,0.31161,0.828864,0.692443,0.656589,0.911662,0.0543839,0.730515,0.414269,0.971309,0.695239,0.789651,0.0673877,0.120298,0.0320895,0.315589,0.560111,0.803572,0.686746,0.864605,0.223045,0.425983,0.1761,0.701389,0.175414,0.090542,0.441431,0.615299,0.422677,0.341305,0.105433,0.93785,0.678868,0.598103,0.418492,0.569647,0.864622,0.284512,0.845647,0.518009,0.158322,0.104514,0.458785,0.455496,0.333291,0.254387,0.425044,0.0637281,0.179907,0.962128,0.882911,0.634585,0.205352,0.399001,0.026315,0.266825,0.203217,0.121461,0.384394,0.338358,0.0736048,0.689773,0.206285,0.29267,0.316411,0.515346,0.458532,0.191615,0.686193,0.647798,0.623503,0.376453,0.404798,0.771856,0.0716217,0.149902,0.457957,0.623138,0.21531,0.157309,0.840579,0.76197,0.508405,0.86335,0.465094,0.85354,0.0240149,0.53312,0.767892,0.0372839,0.123265,0.540955,0.738442,0.946898,0.295465,0.0679485,0.529867,0.212165,0.508958,0.289094,0.593311,0.822344,0.37377,0.63871,0.153884,0.816704,0.247035,0.750207,0.877279,0.785019,0.0161023,0.891787,0.658443,0.15474,0.632873,0.969815,0.329524,0.681511,0.701379,0.79377,0.172237,0.0530217,0.900668,0.134782,0.441421,0.342362,0.867209,0.266131,0.806972,0.654891,0.103707,0.645825,0.0222787,0.417425,0.925345,0.655329,0.994554,0.978725,0.297606,0.668173,0.741863,0.161163,0.584202,0.789851,0.832742,0.79263,0.530113,0.748071,0.190705,0.66059,0.0401096,0.970377,0.0509517,0.644471,0.461943,0.389142,0.979837,0.472349,0.430071,0.24288,0.487328,0.968238,0.950996,0.202813,0.591476,0.351238,0.333619,0.745084,0.518342,0.847487,0.337612,0.678688,0.53341,0.0205985,0.669471,0.347844,0.794144,0.108394,0.268866,0.17519,0.554611,0.367349,0.112202,0.320385,0.654467,0.350721,0.888613,0.221668,0.690418,0.38264,0.539924,0.632012,0.745943,0.365855,0.197669,0.0452349,0.238321,0.184393,0.108943,0.098845,0.408264,0.211593,0.158533,0.34997,0.406634,0.953585,0.701263,0.2649,0.788673,0.856245,0.838821,0.686714,0.848819,0.0797821,0.203341,0.597733,0.896043,|0.597735,0.933964,0.667665,0.113334,0.425014,0.987857,0.771147,0.180163,0.188981,0.163595,0.499782,0.371353,0.273548,0.822501,0.617017,0.546062,0.855976,0.193196,0.786585,0.104177,0.736952,0.45453,0.75375,0.76643,0.721249,0.49527,0.284189,0.60842,0.930195,0.970944,0.547527,0.137777,0.155614,0.843852,0.352034,0.405347,0.863685,0.70602,0.704759,0.247143,0.904302,0.0639371,0.331843,0.907045,0.827783,0.495126,0.915782,0.27352,0.841507,0.205519,0.354396,0.14592,0.366666,0.166613,0.271146,0.440334,0.525494,0.640424,0.373398,0.576027,0.265778,0.854255,0.740235,0.507302,0.417226,0.778556,0.647391,0.541375,0.163479,0.606732,0.723027,0.1052,0.935322,0.236251,0.379555,0.522313,0.488467,0.729461,0.782536,0.97667,0.552337,0.999587,0.345342,0.325213,0.316534,0.697984,0.263542,0.400761,0.0554237,0.302096,0.442814,0.678602,0.986079,0.46419,0.883094,0.186051,0.201639,0.576589,0.768704,0.435703,0.73466,0.287455,0.705721,0.724877,0.0777144,0.813319,0.537033,0.944199,0.972711,0.193115,0.932959,0.828806,0.16726,0.267874,0.0674082,0.214271,0.0342815,0.433042,0.523956,0.439385,0.651412,0.463075,0.713504,0.436931,0.0481125,0.99123,0.504067,0.376607,0.676749,0.483828,0.405445,0.812329,0.765401,0.449249,0.923961,0.607465,0.0606676,0.234837,0.611379,0.456508,0.319618,0.344114,0.149365,0.0692133,0.374979,0.834649,0.252746,0.430529,0.490691,0.105776,0.828882,0.509187,0.284523,0.590816,0.935262,0.489338,0.152995,0.201252,0.785548,0.0222981,0.208347,0.891787,0.820701,0.779704,0.454961,0.79813,0.174496,0.0552628,0.898207,0.212727,0.607007,0.137038,0.260734,0.827467,0.334266,0.416269,0.567334,0.209156,0.119998,0.75044,0.457161,0.650533,0.391618,0.492673,0.314325,0.805423,0.513022,0.682761,0.661919,0.134367,0.382605,0.617747,0.428108,0.822571,0.788513,0.0220198,0.0509564,0.700879,0.94632,0.573463,0.798071,0.440608,0.388549,0.556307,0.963596,0.917705,0.775078,0.760512,0.215681,0.627908,0.144715,0.493333,0.596386,0.947134,0.0388946,0.125808,0.260504,0.116487,0.269793,0.382307,0.682353,0.70942,0.0753518,0.573829,0.97934,0.00137496,0.962995,0.997104,0.386363,0.553473,0.0429204,0.288298,0.754178,0.74477,0.989032,0.348647,0.809096,0.372438,0.774236,0.653512,0.673299,0.469542,0.031295,0.201368,0.169942,0.231104,0.00648385,0.764176,0.63288,0.880433,0.694564,0.157986,0.195036,0.112133,0.963174,0.359532,0.629033,0.502819,0.269975,0.265168,0.480528,0.567531,0.815262,0.765281,0.528038,0.986634,0.0406546,0.10982,0.581638,0.446835,0.538611,0.246982,0.969427,0.317373,0.0467824,0.898758,0.955593,0.347473,0.820789,0.68249,0.184895,0.251988,0.228369,0.645382,0.96284,0.939376,0.718131,0.648615,0.6566,0.882268,0.202623,0.933548,0.188539,0.425381,0.392585,0.308458,0.252851,0.474904,0.724294,0.517986,0.346663,0.794433,0.286536,0.327262,0.684878,0.334626,0.732262,0.0100698,0.628845,0.0729658,0.0535072,0.656602,0.435828,0.996197,0.300823,0.33832,0.81631,0.779594,0.492167,0.0194105,0.483881,0.399447,0.863456,0.74508,0.744552,0.842437,0.641685,0.940438,0.740546,0.01406,0.374454,0.0471846,0.856391,0.967742,0.884212,0.415169,0.487368,0.345725,0.335929,0.219858,0.538906,0.74094,0.316817,0.40421,0.215047,0.732432,0.823555,0.0342649,0.365761,0.0460193,0.874739,0.445773,0.566108,0.477288,0.0707896,0.637705,0.236746,0.312195,0.220787,0.186518,0.86545,0.118017,0.0871859,0.985014,0.360262,0.351087,0.749589,0.551918,0.561277,0.848313,0.138593,0.509619,0.398473,0.0370322,0.340841,0.919686,0.596728,0.457794,0.305921,0.202823,0.840394,0.222639,0.918082,0.772951,0.148072,0.165717,0.703416,0.351344,0.775524,0.721387,0.750327,0.00342566,0.090109,0.257581,0.977201,0.576807,0.513193,0.793912,0.643815,0.582606,0.760383,0.843233,0.574054,0.582408,0.0406302,0.399159,0.501811,0.562406,0.0843562,0.614759,0.231218,0.245175,0.135166,0.442279,0.361577,0.863521,0.0894542,0.751931,0.732388,0.392929,0.0425187,0.440287,0.836388,0.792394,0.958198,0.922786,0.425587,0.376129,0.123456,0.0472852,0.126454,0.855506,0.714606,0.00224477,0.358443,0.399298,0.070848,0.552606,0.846648,0.876558,0.164768,0.873087,0.176176,0.609098,0.169065,0.389443,0.754977,0.177869,0.783077,0.598504,0.232766,0.277196,0.794191,0.120589,0.834512,0.022642,0.851154,0.763724,0.29366,0.303818,0.495571,0.767972,0.54392,0.582453,0.491962,0.276615,0.0536778,0.732101,0.840262,0.260765,0.698785,0.526854,0.279376,0.418082,0.15435,0.74954,0.203632,0.27715,0.145552,0.546389,0.472396,0.611868,0.122424,0.753212,0.0402232,0.928618,0.755165,0.219334,0.64642,0.864367,0.705089,0.752905,0.341511,0.630034,0.616632,0.794155,0.976733,0.238214,0.814815,0.276767,0.60979,0.988794,0.516447,0.641368,0.631681,0.918829,0.634937,0.172396,0.696035,0.500054,0.738887,0.131599,0.97323,0.435465,0.194083,0.535318,0.895157,0.713554,0.125345,0.199061,0.997218,0.695565,0.73289,0.948559,0.416269,0.517766,0.345611,0.0258254,0.992663,0.623664,0.877234,0.287783,0.809636,0.842638,0.800171,0.401169,0.10368,0.325984,0.640017,0.344134,0.0485294,0.0439554,0.837647,0.72385,0.95932,0.645864,0.112923,0.111665,0.971087,0.183635,0.442646,0.940926,0.736192,0.279361,0.439937,0.108225,0.375722,0.871229,0.795672,0.165504,0.225669,0.823811,0.429489,0.955142,0.298985,0.343105,0.748467,0.850248,0.932199,0.577837,0.0325879,0.96121,0.456622,0.224709,0.0724832,0.842882,0.91511,0.949857,0.630251,0.884722,0.667353,0.0129725,0.541761,0.233823,0.878152,0.509629,0.482671,0.898402,0.865505,0.87799,0.952467,0.511756,0.730205,0.108488,0.175544,0.358915,0.445673,0.649226,0.349958,0.712525,0.622308,0.723137,0.116145,0.738434,0.397484,0.716477,0.0100272,0.053297,0.196849,0.954792,0.41352,0.0763837,0.314456,0.466996,0.783701,0.579003,0.479943,0.643031,0.552237,0.0856224,0.414869,0.257542,0.896184,0.227291,0.822972,0.464413,0.56813,0.695699,0.615091,0.549665,0.881294,0.342789,0.950005,0.023157,0.540921,0.655459,0.47767,0.229437,0.197778,0.0842785,0.266777,0.277551,0.684168,0.322347,0.535858,0.295968,0.412861,0.0401132,0.770438,0.15677,0.815462,0.206744,0.932311,0.976718,0.61997,0.0830351,0.109572,0.929667,0.230078,0.90819,0.79304,0.456676,0.313961,0.386365,0.810415,0.941507,0.135211,0.0205063,0.359774,0.73427,0.214432,0.0930085,0.215268,0.454251,0.288326,0.935735,0.742305,0.110194,0.755805,0.561862,0.937104,0.318192,0.384114,0.779744,0.708696,0.917516,0.951282,0.976797,0.258015,0.551866,0.0409674,0.854344,0.97509,0.00375384,0.914732,0.800102,0.0347355,0.808248,0.265169,0.352228,0.626155,0.936076,0.467368,0.535263,0.70448,0.450968,0.730217,0.798364,0.583465,0.608624,0.780849,0.940066,0.45716,0.200575,0.0256523,0.926996,0.418077,0.807948,0.700567,0.145964,0.34803,0.128878,0.0882476,0.361863,0.645558,0.144921,0.156673,0.103845,0.250379,0.379143,0.948257,0.260662,0.839886,0.693798,0.285474,0.17146,0.211372,0.424487,0.980855,0.517465,0.594517,0.0439128,0.775101,0.633665,0.356933,0.308166,0.921537,0.51106,0.614671,0.0622255,0.815466,0.398879,0.489021,0.602212,0.867454,0.0285545,0.0049457,0.47754,0.820758,0.949044,0.312835,0.656571,0.770458,0.811948,0.631216,0.872613,0.558016,0.766372,0.764929,0.57737,0.166688,0.491522,0.111111,0.237493,0.934446,0.779622,0.9345,0.93239,0.647371,0.531575,0.945839,0.117518,0.680844,0.296945,0.0582149,0.839392,0.650888,0.866642,0.336173,0.274014,0.723552,0.626762,0.286264,0.244243,0.367909,0.0673977,0.875368,0.458235,0.557404,0.162533,0.268221,0.916354,0.575129,0.749389,0.621262,0.0706052,0.243065,0.0849794,0.97884,0.681781,0.947119,0.661945,0.723466,0.577081,0.3524,0.815904,0.292511,0.536772,0.97313,0.71773,0.786859,0.589945,0.910725,0.967054,0.311117,0.199525,0.487065,0.306475,0.0207427,0.697545,0.24085,0.141262,0.633299,0.0239359,0.777439,0.601126,0.70943,0.968888,0.0804728,0.29972,0.564937,0.474855,0.134084,0.272371,0.340586,0.282461,0.588926,0.192382,0.901921,0.740159,0.66497,0.0258407,0.049464,0.456375,0.0796512,0.148892,0.855417,0.899234,0.552615,0.128145,0.592523,0.593996,0.292052,0.290184,0.403357,0.528604,0.780605,0.493688,0.20844,0.581941,0.230393,0.0180421,0.551605,0.851398,0.0552211,0.528739,0.434775,0.582393,0.240593,0.569728,0.4979,0.601127,0.260108,0.00526971,0.643327,0.655738,0.952677,0.274341,0.348698,0.95905,0.304341,0.970652,0.261619,0.297364,0.414481,0.604751,0.668911,0.178474,0.785871,0.2932,0.290111,0.190533,0.389587,0.443755,0.250725,0.189805,0.0940128,0.281494,0.185601,0.278361,0.26618,0.825075,0.551116,0.981461,0.477389,0.207647,0.318871,0.666314,0.36558,0.1111,0.255226,0.426967,0.99709,0.0870662,0.637684,0.717219,0.773809,0.830727,0.0490009,0.378918,0.193749,0.162544,0.113106,0.572453,0.720289,0.034098,0.915119,0.568328,0.455873,0.078539,0.578392,0.777747,0.615996,0.249904,0.587866,0.714298,0.557922,0.345089,0.167519,0.379345,0.734427,0.0789912,0.183929,0.20067,0.682014,0.901128,0.19098,0.711195,0.184584,0.136393,0.692633,0.394747,0.905141,0.520922,0.830265,0.477585,0.749021,0.830103,0.328942,0.887679,0.0579253,0.467633,0.186223,0.0818649,0.548387,0.405381,0.932754,0.867757,0.541051,0.433676,0.940033,0.333375,0.101386,0.309962,0.756313,0.851312,0.504475,0.333068,0.044682,0.281905,0.758238,0.469256,0.96064,0.919247,0.717153,0.0640276,0.800206,0.319101,0.666693,0.311306,|0.0459071,0.857982,0.212996,0.322259,0.765751,0.4427,0.875044,0.334393,0.873945,0.854861,0.916198,0.0605668,0.0768288,0.139802,0.415737,0.251646,0.135316,0.0577005,0.595707,0.624844,0.797092,0.143518,0.696977,0.465906,0.52536,0.440125,0.0254469,0.117242,0.367439,0.510659,0.568674,0.183667,0.985398,0.231311,0.525083,0.631581,0.357313,0.413731,0.426368,0.997303,0.850274,0.387893,0.979331,0.461242,0.949706,0.489647,0.58557,0.524369,0.899255,0.727692,0.995675,0.580339,0.16919,0.373523,0.612131,0.164309,0.343996,0.0541347,0.548863,0.203719,0.578605,0.474857,0.789419,0.309488,0.627539,0.572393,0.548872,0.221239,0.0243375,0.401449,0.274719,0.684424,0.195441,0.174788,0.650477,0.104484,0.92504,0.762596,0.150471,0.0843524,0.574003,0.357145,0.13114,0.994667,0.799186,0.789012,0.0247295,0.215699,0.686221,0.605046,0.706781,0.65335,0.474047,0.0519073,0.050882,0.318616,0.691767,0.368461,0.663052,0.249514,0.815958,0.298151,0.411668,0.739049,0.488763,0.455937,0.195198,0.306761,0.810238,0.998726,0.990574,0.168777,0.665193,0.956137,0.192777,0.0399296,0.403979,0.144574,0.376238,0.731031,0.920153,0.993122,0.65407,0.349102,0.586481,0.0927839,0.381089,0.815507,0.828499,0.850317,0.752234,0.476818,0.282091,0.402582,0.0675553,0.861502,0.211989,0.930592,0.660861,0.173002,0.87162,0.663934,0.572277,0.290717,0.237165,0.254427,0.407159,0.129244,0.485,0.29522,0.801369,0.0406211,0.506057,0.933105,0.530612,0.0794499,0.115547,0.592205,0.705634,0.494029,0.999549,0.0810339,0.178792,0.587477,0.912097,0.530582,0.198877,0.60768,0.14718,0.211339,0.716433,0.966993,0.199234,0.877848,0.221561,0.911148,0.23795,0.725735,0.845407,0.516788,0.492094,0.838811,0.77945,0.794528,0.239713,0.806253,0.135987,0.568347,0.399328,0.304719,0.778746,0.489802,0.351897,0.306695,0.173389,0.599692,0.189327,0.663153,0.728159,0.105931,0.84317,0.368219,0.074623,0.742022,0.982765,0.62021,0.600948,0.0822752,0.9138,0.790001,0.877974,0.654756,0.220247,0.860632,0.779062,0.785347,0.405086,0.739203,0.035902,0.834802,0.70846,0.124621,0.401304,0.849968,0.0691077,0.8672,0.49795,0.858253,0.398786,0.890411,0.650565,0.400704,0.319918,0.461205,0.107638,0.179698,0.305637,0.883749,0.748241,0.520201,0.763836,0.648193,0.396992,0.922322,0.821796,0.639688,0.912143,0.0650752,0.94876,0.887563,0.356437,0.999811,0.745023,0.471329,0.947155,0.599448,0.497339,0.667756,0.951888,0.745964,0.428648,0.120865,0.381679,0.0649219,0.79417,0.56954,0.453441,0.229616,0.846086,0.139333,0.488199,0.890639,0.938786,0.781372,0.789589,0.806809,0.230835,0.773919,0.550217,0.416736,0.333592,0.962767,0.287317,0.117934,0.120173,0.903596,0.724532,0.323962,0.948261,0.464609,0.962912,0.568039,0.844161,0.474807,0.448435,0.0969887,0.7068,0.32081,0.78883,0.819354,0.814487,0.469,0.0254232,0.113313,0.158818,0.113893,0.944471,0.665025,0.082791,0.923877,0.578877,0.191773,0.730266,0.927624,0.370112,0.469001,0.690418,0.852881,0.423605,0.702554,0.754754,0.228488,0.810325,0.543573,0.708077,0.147281,0.786156,0.370245,0.923333,0.948504,0.0124007,0.872609,0.217218,0.704702,0.624545,0.348855,0.0196518,0.567846,0.30799,0.905223,0.304473,0.951835,0.677623,0.577927,0.594875,0.851705,0.45818,0.483491,0.417111,0.574008,0.0606854,0.544426,0.357053,0.182006,0.319004,0.506613,0.271452,0.478192,0.229303,0.239792,0.583983,0.652194,0.915274,0.549144,0.526628,0.985024,0.376839,0.906499,0.379931,0.91294,0.972621,0.865605,0.64941,0.329483,0.568095,0.411298,0.777809,0.0966112,0.306918,0.177033,0.816848,0.505618,0.157127,0.200952,0.820777,0.858573,0.540643,0.825215,0.950046,0.57697,0.795997,0.74021,0.835125,0.122066,0.230684,0.133547,0.572929,0.21389,0.178983,0.976704,0.669286,0.558539,0.0387538,0.992401,0.574059,0.304756,0.678254,0.162727,0.554292,0.0166652,0.715226,0.453658,0.95626,0.468721,0.278047,0.328479,0.471656,0.549385,0.846194,0.0290592,0.478243,0.107178,0.354192,0.235012,0.053196,0.0548418,0.297232,0.835243,0.661171,0.173864,0.245958,0.405435,0.517843,0.878445,0.208604,0.0349488,0.203163,0.0564611,0.337302,0.779107,0.909524,0.878164,0.941906,0.6341,0.914604,0.73646,0.426009,0.199716,0.26841,0.44814,0.108864,0.589692,0.340389,0.870346,0.213847,0.190001,0.942386,0.880322,0.787306,0.0327013,0.0311629,0.966064,0.842183,0.309236,0.794277,0.146293,0.213658,0.478243,0.747218,0.850673,0.594871,0.441651,0.125008,0.176658,0.805042,0.229817,0.0413213,0.332915,0.893521,0.826833,0.334806,0.937957,0.313012,0.892169,0.733751,0.0268165,0.105545,0.492737,0.888539,0.725995,0.153661,0.82225,0.636309,0.978454,0.859849,0.404467,0.900978,0.893482,0.97377,0.586503,0.425825,0.707187,0.576081,0.973592,0.0829046,0.421476,0.768352,0.167991,0.205698,0.444361,0.582867,0.0273907,0.711515,0.920816,0.668211,0.0957839,0.387796,0.342975,0.711631,0.359289,0.985334,0.680842,0.667895,0.531939,0.00579298,0.963653,0.733502,0.208102,0.686722,0.155017,0.810984,0.594789,0.41173,0.176702,0.463782,0.689921,0.369552,0.190651,0.281523,0.441323,0.964924,0.0712181,0.472099,0.050801,0.254205,0.180881,0.71341,0.104287,0.869342,0.950306,0.709854,0.243548,0.0891424,0.42218,0.069016,0.719976,0.832879,0.766195,0.382536,0.84012,0.841293,0.0470116,0.844174,0.995895,0.347759,0.714169,0.837825,0.688958,0.666694,0.0276728,0.283561,0.873687,0.513749,0.63757,0.179388,0.444535,0.609517,0.353389,0.473278,0.309378,0.0681984,0.05856,0.32197,0.355144,0.148715,0.316874,0.144145,0.937208,0.973194,0.121683,0.709432,0.412709,0.667671,0.760774,0.321409,0.408625,0.305737,0.988556,0.282838,0.635311,0.267321,0.980819,0.550567,0.242797,0.325081,0.999405,0.396054,0.281091,0.285242,0.671017,0.150951,0.0583352,0.656895,0.87636,0.472074,0.314394,0.745507,0.27291,0.261342,0.450609,0.469531,0.694081,0.0165747,0.0183863,0.869642,0.995473,0.78659,0.809966,0.57214,0.040226,0.353738,0.376542,0.523107,0.354204,0.197585,0.422995,0.467103,0.109547,0.540334,0.952734,0.428017,0.805863,0.214971,0.331654,0.823412,0.807592,0.330282,0.725637,0.944728,0.936529,0.267392,0.627851,0.00770187,0.735618,0.744384,0.695856,0.403156,0.738775,0.847394,0.907174,0.768182,0.809728,0.68242,0.713236,0.99578,0.183229,0.747148,0.568652,0.711513,0.76696,0.40662,0.906297,0.444703,0.617909,0.733916,0.477652,0.421319,0.700625,0.996487,0.723711,0.60621,0.50405,0.571815,0.265137,0.847854,0.101787,0.973988,0.00963247,0.808579,0.461434,0.927488,0.792057,0.417137,0.639941,0.898047,0.49455,0.8524,0.964404,0.647174,0.436822,0.0317892,0.855241,0.287787,0.724185,0.916232,0.473942,0.0294082,0.173077,0.72092,0.25865,0.507902,0.0331758,0.443075,0.489044,0.916805,0.63261,0.912881,0.594711,0.0368218,0.781284,0.658781,0.133864,0.406919,0.19401,0.103358,0.133625,0.268359,0.927365,0.160379,0.80313,0.179526,0.756497,0.651617,0.628769,0.679792,0.6155,0.732143,0.459976,0.823988,0.659113,0.604999,0.917565,0.697103,0.296386,0.357393,0.871506,0.615929,0.532096,0.865315,0.934047,0.651621,0.981085,0.720365,0.0854705,0.34913,0.827638,0.49192,0.0426024,0.848761,0.364063,0.954896,0.159082,0.400199,0.629377,0.414935,0.421507,0.121501,0.66657,0.727068,0.420787,0.947207,0.451786,0.17856,0.639114,0.980634,0.341504,0.139545,0.203546,0.656046,0.723023,0.944174,0.386604,0.163346,0.384927,0.50349,0.474122,0.497195,0.765224,0.413876,0.559329,0.266933,0.436832,0.498895,0.196998,0.486292,0.971437,0.29885,0.0153919,0.21855,0.512734,0.376145,0.658653,0.194693,0.0479296,0.0656019,0.990951,0.472332,0.654243,0.989335,0.306761,0.887409,0.622561,0.119281,0.647027,0.355234,0.08586,0.0459993,0.845348,0.622916,0.712463,0.222812,0.410765,0.655405,0.713327,0.175923,0.123578,0.894574,0.0245606,0.400425,0.114199,0.122832,0.122318,0.683234,0.624433,0.714578,0.955104,0.164205,0.296867,0.721561,0.315833,0.588804,0.0242382,0.140001,0.989797,0.959251,0.574067,0.931717,0.139872,0.780666,0.794723,0.870743,0.907585,0.329629,0.449614,0.612062,0.688434,0.921457,0.12239,0.407378,0.0547945,0.730314,0.334472,0.628993,0.499651,0.263064,0.564362,0.271252,0.967638,0.420027,0.0879573,0.332025,0.58104,0.283912,0.156071,0.0947299,0.0157678,0.30802,0.0939793,0.0489055,0.0486662,0.164314,0.30242,0.00263894,0.898559,0.882849,0.415593,0.971237,0.87578,0.214636,0.428006,0.384395,0.51416,0.331602,0.366297,0.718426,0.716883,0.0126718,0.283891,0.310563,0.116366,0.0260631,0.634507,0.601332,0.666046,0.319879,0.836287,0.246543,0.216514,0.745205,0.646588,0.851882,0.662007,0.102247,0.641469,0.538816,0.870936,0.159582,0.703497,0.124126,0.942742,0.881498,0.917895,0.639819,0.914267,0.772711,0.357009,0.0154369,0.870091,0.723351,0.348062,0.352441,0.581203,0.566373,0.772036,0.562317,0.622417,0.243636,0.300303,0.707007,0.82006,0.554891,0.352565,0.693872,0.478595,0.381748,0.265476,0.434469,0.137112,0.525432,0.833712,0.188071,0.474984,0.0142716,0.807662,0.808252,0.175109,0.15101,0.291362,0.570098,0.300883,0.534174,0.580302,0.013693,0.425922,0.805286,0.969519,0.893355,0.944384,0.84186,0.643199,0.0908933,0.136918,0.664685,0.372981,0.667564,0.64791,0.25726,0.46266,0.934884,0.374157,0.842502,0.0310066,0.773332,0.235047,0.554246,0.490742,0.639229,0.892586,0.212573,0.322196,0.941241,0.668023,0.698165,0.387095,0.189238,0.0861627,0.689411,0.437384,0.183986,0.500029,|0.853705,0.888902,0.460387,0.481996,0.835206,0.58546,0.766986,0.52252,0.597665,0.68418,0.676412,0.0359309,0.8568,0.286868,0.942142,0.456229,0.315604,0.189928,0.80104,0.192237,0.398789,0.738702,0.0056594,0.180781,0.536949,0.298004,0.119481,0.949068,0.219199,0.22638,0.982738,0.424289,0.398178,0.413875,0.856017,0.239079,0.641423,0.530886,0.923194,0.0846197,0.178281,0.0527313,0.0602483,0.482722,0.409788,0.309017,0.696975,0.96505,0.635373,0.42642,0.650072,0.921404,0.153036,0.552633,0.495894,0.128426,0.945041,0.523635,0.0407848,0.817368,0.410089,0.930064,0.983686,0.0791808,0.381306,0.90462,0.712836,0.595955,0.0181863,0.629158,0.0177145,0.264493,0.685141,0.954758,0.192239,0.0930757,0.00898713,0.98189,0.124608,0.510835,0.027428,0.355528,0.545218,0.591935,0.31757,0.87286,0.614805,0.564798,0.250042,0.159993,0.376924,0.489052,0.474995,0.691534,0.167532,0.276252,0.726104,0.500599,0.188054,0.8219,0.00885165,0.959958,0.214492,0.159646,0.205869,0.52118,0.339404,0.487954,0.530621,0.784429,0.56744,0.479675,0.659739,0.388173,0.876509,0.29113,0.830413,0.353072,0.550806,0.600959,0.807677,0.951245,0.342371,0.967512,0.290874,0.366815,0.312472,0.792066,0.698536,0.0913931,0.750634,0.55222,0.186935,0.826245,0.0261757,0.0282858,0.883199,0.633721,0.849755,0.359286,0.065349,0.163592,0.982383,0.924016,0.312036,0.367588,0.649707,0.0226442,0.380893,0.90489,0.209332,0.836332,0.536207,0.0540342,0.452287,0.374939,0.951251,0.573413,0.926336,0.0651211,0.184937,0.760553,0.842166,0.865692,0.65809,0.232228,0.0501354,0.207362,0.711952,0.180872,0.463566,0.607178,0.111207,0.364325,0.54183,0.822056,0.0882007,0.0450988,0.294753,0.845426,0.489926,0.397964,0.8479,0.461782,0.303882,0.783572,0.881484,0.254028,0.406374,0.413554,0.703125,0.447221,0.128556,0.710598,0.496817,0.959252,0.206317,0.195192,0.189392,0.577457,0.320798,0.654224,0.57836,0.380888,0.571793,0.851051,0.565056,0.296752,0.610412,0.340572,0.152895,0.528477,0.535734,0.93382,0.163352,0.8998,0.75162,0.738309,0.84806,0.974294,0.642796,0.29788,0.0218175,0.666268,0.13432,0.26645,0.157006,0.162167,0.227474,0.807285,0.888003,0.363408,0.14948,0.779446,0.956865,0.430622,0.722484,0.368876,0.486125,0.349913,0.732021,0.404157,0.944035,0.475823,0.808784,0.601152,0.139438,0.0747886,0.067205,0.013163,0.688375,0.554876,0.552029,0.119795,0.144659,0.375713,0.772084,0.323084,0.480631,0.829955,0.867416,0.248225,0.800632,0.0296215,0.520566,0.932218,0.839702,0.835985,0.715634,0.114234,0.35069,0.938146,0.335352,0.255345,0.249928,0.712436,0.555363,0.843524,0.816422,0.594124,0.413549,0.618038,0.324889,0.0121253,0.328485,0.00845063,0.173018,0.267986,0.290097,0.917089,0.486387,0.51649,0.0107316,0.239779,0.693375,0.336177,0.561164,0.721567,0.796992,0.38715,0.853383,0.439855,0.14241,0.957714,0.343112,0.306089,0.127295,0.904047,0.428428,0.253833,0.991649,0.0536382,0.0493449,0.301836,0.637705,0.36121,0.43444,0.527958,0.2773,0.260401,0.823493,0.947137,0.100987,0.272998,0.0811721,0.138828,0.811688,0.982428,0.861689,0.597904,0.751066,0.973576,0.544456,0.0267883,0.417263,0.882571,0.295318,0.526292,0.11561,0.624518,0.412349,0.570264,0.578875,0.827622,0.334176,0.138669,0.465896,0.607719,0.441276,0.68543,0.678771,0.625513,0.210139,0.405864,0.721176,0.407079,0.783186,0.0995864,0.0135089,0.0717109,0.917301,0.595374,0.298438,0.874543,0.301948,0.373313,0.175388,0.567226,0.185419,0.200189,0.0271659,0.498973,0.75294,0.194205,0.699138,0.661689,0.604964,0.801382,0.113187,0.234335,0.965384,0.443166,0.585214,0.607354,0.680723,0.151115,0.710465,0.724188,0.123196,0.846683,0.466816,0.374347,0.647448,0.735773,0.781668,0.0112236,0.724681,0.172,0.713368,0.214875,0.957917,0.37437,0.404095,0.451177,0.309289,0.654041,0.170109,0.321923,0.540946,0.282596,0.494168,0.285149,0.149781,0.345936,0.455202,0.0929171,0.915867,0.5965,0.896329,0.628737,0.386528,0.865914,0.302063,0.642776,0.10622,0.818835,0.812438,0.774688,0.629892,0.123376,0.636999,0.406686,0.399735,0.116358,0.819158,0.0700291,0.744781,0.705846,0.0542474,0.292679,0.483571,0.518224,0.75948,0.439046,0.8162,0.845943,0.333116,0.598067,0.495703,0.135859,0.20375,0.594449,0.0547343,0.709987,0.328227,0.898705,0.528164,0.464302,0.898477,0.235386,0.595679,0.204915,0.518379,0.30886,0.995817,0.216806,0.357637,0.901226,0.332747,0.736934,0.432132,0.015889,0.00938541,0.0502926,0.28496,0.878389,0.695992,0.00201458,0.0783902,0.0451549,0.504053,0.813586,0.819793,0.707296,0.465823,0.494703,0.965715,0.118091,0.749394,0.490373,0.157711,0.907215,0.34994,0.602145,0.187357,0.873282,0.779799,0.357026,0.919159,0.322945,0.848558,0.851089,0.686591,0.240237,0.0110387,0.74951,0.695027,0.460271,0.529507,0.388239,0.878517,0.302441,0.705691,0.602197,0.204492,0.102038,0.673851,0.35686,0.579637,0.627365,0.444641,0.729766,0.239281,0.740349,0.412244,0.205855,0.0167022,0.789784,0.0421616,0.503205,0.331878,0.0232855,0.925395,0.593564,0.230812,0.5877,0.645689,0.809533,0.691913,0.0371674,0.043741,0.381543,0.0898101,0.898832,0.54669,0.901315,0.533973,0.46689,0.8171,0.353919,0.838783,0.97137,0.703183,0.751836,0.450684,0.514024,0.466222,0.59496,0.502382,0.0869175,0.310074,0.968694,0.00274706,0.785619,0.361091,0.780203,0.918926,0.0960133,0.0658189,0.764486,0.803715,0.509797,0.0918808,0.725575,0.706737,0.108864,0.0311964,0.463184,0.344242,0.585128,0.851964,0.0746962,0.114127,0.508974,0.701527,0.291449,0.610169,0.634483,0.32495,0.213989,0.304614,0.307548,0.524621,0.236282,0.539403,0.262216,0.107602,0.950545,0.937559,0.650117,0.676752,0.765795,0.229694,0.908148,0.164844,0.855513,0.790394,0.438693,0.735365,0.794034,0.818266,0.218919,0.201275,0.219642,0.882171,0.234107,0.213764,0.976078,0.50868,0.611788,0.275559,0.0473483,0.285195,0.85763,0.40865,0.654905,0.81975,0.608529,0.23639,0.980815,0.386204,0.206761,0.170498,0.67854,0.0219039,0.85728,0.94871,0.89602,0.259019,0.239746,0.302903,0.898326,0.592159,0.769865,0.665927,0.482193,0.652246,0.117835,0.134624,0.553704,0.656228,0.378555,0.133048,0.0678653,0.821471,0.344592,0.164441,0.556542,0.898189,0.447713,0.347709,0.700997,0.436925,0.481034,0.41836,0.556932,0.302919,0.615909,0.839856,0.148775,0.300455,0.784128,0.226149,0.145774,0.903461,0.71646,0.857936,0.234086,0.369483,0.896905,0.0275706,0.0816768,0.65027,0.325605,0.417502,0.453536,0.425432,0.298668,0.35889,0.607253,0.842228,0.747436,0.607543,0.435991,0.974669,0.822428,0.44096,0.308111,0.773321,0.997999,0.398652,0.341681,0.912009,0.177102,0.637155,0.76424,0.318981,0.972793,0.409919,0.763016,0.191781,0.00644362,0.864905,0.359077,0.34159,0.22263,0.466178,0.271161,0.0803432,0.0232348,0.0311003,0.272969,0.412927,0.158315,0.460421,0.186293,0.00218725,0.234216,0.0506796,0.788174,0.501782,0.00787306,0.109542,0.436165,0.556224,0.922401,0.771735,0.460047,0.707698,0.541989,0.29183,0.843263,0.743704,0.741769,0.650269,0.226834,0.913762,0.644563,0.684112,0.688898,0.821719,0.529278,0.679787,0.973409,0.0618764,0.201031,0.345307,0.779034,0.691585,0.218314,0.945683,0.831227,0.989014,0.487888,0.867919,0.928607,0.242219,0.674544,0.929782,0.557673,0.0267567,0.620192,0.314692,0.726582,0.86995,0.583458,0.972393,0.708168,0.765654,0.700795,0.588589,0.825036,0.889685,0.194353,0.917649,0.465907,0.45798,0.0528859,0.276725,0.812929,0.425656,0.798325,0.733258,0.291583,0.513722,0.112587,0.861516,0.466897,0.275929,0.492477,0.469272,0.245488,0.418628,0.95739,0.461194,0.342162,0.049697,0.19963,0.364343,0.389108,0.109221,0.0125678,0.330911,0.784507,0.187362,0.866841,0.659972,0.774104,0.564778,0.206031,0.666869,0.131688,0.418458,0.470738,0.851661,0.920346,0.325543,0.184119,0.259202,0.779035,0.81341,0.298899,0.258099,0.117993,0.641056,0.570354,0.539591,0.856713,0.954041,0.0136319,0.780985,0.988298,0.559826,0.794296,0.543147,0.0394607,0.152709,0.368654,0.586251,0.0774378,0.283747,0.560655,0.806726,0.641714,0.461444,0.469505,0.0669684,0.22091,0.174916,0.0487951,0.956112,0.652501,0.395633,0.282868,0.771984,0.561325,0.909205,0.111815,0.489116,0.86453,0.451521,0.686253,0.170958,0.877257,0.483827,0.70937,0.330324,0.540461,0.230335,0.949428,0.167492,0.818065,0.922516,0.249399,0.0144307,0.296276,0.216955,0.571578,0.274491,0.284564,0.068681,0.215733,0.997752,0.439782,0.786524,0.157863,0.820139,0.0895404,0.922929,0.0919104,0.423427,0.238962,0.572147,0.707547,0.154634,0.883701,0.465301,0.753397,0.961532,0.852651,0.167897,0.84031,0.464941,0.44559,0.0780098,0.162329,0.371907,0.488962,0.715126,0.90338,0.218642,0.501192,0.416089,0.531066,0.754911,0.0417549,0.385455,0.647906,0.812636,0.963618,0.453985,0.994857,0.891926,0.489773,0.684175,0.389432,0.659828,0.590455,0.0461903,0.556062,0.313967,0.403379,0.0409793,0.0653191,0.95473,0.0309459,0.53974,0.997057,0.999028,0.719354,0.661939,0.182445,0.449049,0.303782,0.629844,0.486069,0.387963,0.974469,0.290723,0.94786,0.802829,0.723974,0.556462,0.0306824,0.921523,0.972092,0.578475,0.0219665,0.60147,0.589519,0.486184,0.0417458,0.807813,0.479454,0.0379168,0.197309,0.798078,0.0948997,0.995639,0.543471,0.93158,0.000559449,0.304013,0.931953,0.112741,0.315815,0.472783,0.765514,0.474122,0.802648,0.438245,0.548342,0.800234,0.106248,0.449115,0.627893,0.92627,0.677213,0.889309,0.0345182,|0.181559,0.492873,0.634613,0.35296,0.404939,0.515921,0.451429,0.552647,0.876896,0.715274,0.946886,0.267912,0.948136,0.900536,0.449536,0.682227,0.402309,0.36394,0.127189,0.153418,0.18565,0.134985,0.619355,0.3157,0.133774,0.13862,0.831023,0.298653,0.402094,0.30673,0.581971,0.252622,0.976629,0.170616,0.942862,0.341916,0.890021,0.324685,0.401131,0.579708,0.864273,0.604606,0.131832,0.647959,0.126243,0.589549,0.71367,0.964294,0.288761,0.665002,0.806455,0.676612,0.491635,0.0234698,0.886806,0.183467,0.335491,0.729007,0.372896,0.841495,0.488961,0.570785,0.115375,0.436146,0.872602,0.72887,0.374112,0.467902,0.23641,0.592817,0.622688,0.181136,0.14641,0.987771,0.940877,0.651857,0.0662661,0.144559,0.90739,0.554236,0.96456,0.746947,0.398212,0.70185,0.54212,0.740223,0.584014,0.973453,0.254108,0.170204,0.726672,0.130399,0.982868,0.656197,0.856657,0.906523,0.531175,0.823573,0.0236446,0.789631,0.965831,0.126561,0.132341,0.9183,0.688301,0.355723,0.269536,0.812054,0.989169,0.0666954,0.779793,0.562181,0.0923803,0.308318,0.572326,0.130668,0.413502,0.862432,0.71192,0.391521,0.0439213,0.796531,0.853571,0.879592,0.955846,0.576471,0.377808,0.565444,0.378492,0.605424,0.727682,0.698237,0.440731,0.912433,0.407665,0.589927,0.502843,0.678722,0.284618,0.1476,0.842038,0.656516,0.0986283,0.0284146,0.543799,0.604534,0.467179,0.343492,0.467265,0.82437,0.760008,0.453918,0.949534,0.38053,0.962384,0.176521,0.633516,0.161268,0.884617,0.259873,0.295225,0.0604296,0.88807,0.183371,0.706153,0.461091,0.339379,0.906788,0.97795,0.784113,0.98883,0.836425,0.604884,0.752922,0.854708,0.21128,0.288525,0.179838,0.596409,0.496896,0.00368273,0.127207,0.510961,0.234572,0.0417905,0.765935,0.405833,0.518706,0.397279,0.0973405,0.197958,0.699085,0.922453,0.834063,0.832575,0.698908,0.590502,5.12004e-05,0.86238,0.451317,0.375966,0.937648,0.510057,0.273968,0.381481,0.0835077,0.728039,0.682609,0.863817,0.783776,0.740063,0.595089,0.818525,0.639987,0.335233,0.306481,0.280032,0.766176,0.144867,0.967663,0.549562,0.717228,0.364612,0.80643,0.633335,0.325592,0.293916,0.18679,0.944069,0.848452,0.232766,0.0721278,0.995302,0.470367,0.779456,0.767072,0.900635,0.855721,0.110105,0.984637,0.50793,0.111607,0.346645,0.292185,0.0166678,0.370015,0.945667,0.348417,0.220253,0.28136,0.438044,0.525094,0.275868,0.740045,0.869572,0.877915,0.640217,0.704559,0.672025,0.136466,0.00250101,0.351767,0.0528387,0.854995,0.857078,0.593402,0.0215607,0.933418,0.191528,0.975916,0.947853,0.970893,0.640636,0.884541,0.568421,0.743586,0.734015,0.183782,0.890926,0.761433,0.281531,0.345211,0.690547,0.508661,0.104355,0.582658,0.345559,0.163037,0.823417,0.087382,0.792641,0.213653,0.563884,0.295692,0.230616,0.174321,0.441778,0.250892,0.241613,0.772459,0.988768,0.65602,0.881692,0.59465,0.0099349,0.631822,0.233892,0.687863,0.75243,0.566994,0.118253,0.833576,0.00523019,0.0861937,0.439785,0.340815,0.0253157,0.389353,0.224814,0.353669,0.743147,0.199249,0.282554,0.734696,0.236141,0.840877,0.558624,0.160069,0.550057,0.830092,0.609492,0.408819,0.0865245,0.444352,0.246608,0.313466,0.421379,0.271892,0.68611,0.499538,0.760009,0.717826,0.487864,0.434221,0.586286,0.60577,0.0866641,0.407291,0.355631,0.949507,0.734522,0.418053,0.19725,0.4119,0.79117,0.795923,0.720186,0.547206,0.346145,0.408517,0.359877,0.951001,0.65043,0.213857,0.529992,0.623464,0.58461,0.311801,0.152527,0.243121,0.907708,0.952884,0.349832,0.806115,0.849146,0.632003,0.8582,0.342155,0.710288,0.437862,0.99021,0.312541,0.411439,0.628127,0.0825765,0.268602,0.94294,0.787257,0.545303,0.136949,0.141987,0.605327,0.380781,0.152359,0.205167,0.0132053,0.688783,0.823477,0.420265,0.338898,0.575924,0.845831,0.868492,0.383927,0.890113,0.502935,0.0690064,0.208934,0.482305,0.489987,0.731167,0.364165,0.195812,0.457447,0.902287,0.591673,0.396765,0.790464,0.136749,0.115605,0.739891,0.873544,0.540631,0.608393,0.726462,0.122074,0.493887,0.35539,0.595442,0.332751,0.69242,0.208772,0.177522,0.401926,0.164232,0.449595,0.347732,0.776118,0.924709,0.285997,0.512663,0.430715,0.813241,0.207245,0.978487,0.757446,0.701815,0.824759,0.454286,0.329759,0.603918,0.576106,0.458622,0.248411,0.485906,0.0388358,0.259615,0.387867,0.500866,0.537475,0.611773,0.883531,0.646006,0.308538,0.523504,0.579894,0.77689,0.193577,0.710382,0.658879,0.547856,0.870673,0.528268,0.034642,0.079806,0.68806,0.97526,0.815069,0.579082,0.971077,0.1044,0.335303,0.991756,0.65032,0.768334,0.587183,0.709151,0.412754,0.0605036,0.970407,0.0566392,0.407646,0.261991,0.599499,0.841347,0.525734,0.146148,0.823522,0.29823,0.484949,0.154392,0.742776,0.191804,0.74937,0.366604,0.642991,0.687764,0.955257,0.256473,0.984539,0.00602835,0.574254,0.659865,0.621287,0.274696,0.598493,0.378608,0.0457812,0.861357,0.358834,0.338656,0.0273392,0.516471,0.846606,0.719861,0.605518,0.122922,0.504391,0.0131243,0.0171974,0.185755,0.505503,0.375369,0.442085,0.526786,0.283993,0.0776615,0.611692,0.959098,0.447954,0.158789,0.314294,0.0301306,0.799418,0.542652,0.393793,0.644563,0.0672782,0.465736,0.172751,0.721287,0.973178,0.347632,0.581145,0.970394,0.0531121,0.787727,0.0252785,0.207778,0.425098,0.350129,0.878018,0.563459,0.954046,0.59692,0.522173,0.20661,0.0806101,0.917571,0.209525,0.072362,0.669266,0.81877,0.447328,0.21825,0.691403,0.0283452,0.194399,0.900569,0.784887,0.00631917,0.447786,0.495169,0.730793,0.803875,0.385039,0.748118,0.446871,0.529411,0.404048,0.309499,0.932931,0.29068,0.0753044,0.756766,0.559779,0.565616,0.242461,0.306534,0.63497,0.763464,0.477031,0.0193897,0.757214,0.337813,0.928012,0.372862,0.982299,0.616819,0.872836,0.422201,0.289231,0.716809,0.900161,0.550925,0.543007,0.982419,0.290184,0.459409,0.257004,0.994668,0.528581,0.882195,0.247897,0.276406,0.807892,0.699219,0.742851,0.969784,0.803642,0.380014,0.448234,0.993379,0.114967,0.370365,0.444455,0.477966,0.473805,0.386737,0.145664,0.0708795,0.0638466,0.116586,0.324885,0.574278,0.388682,0.210656,0.923415,0.700255,0.577069,0.212555,0.699759,0.880743,0.922736,0.14023,0.54934,0.662377,0.262251,0.873042,0.600301,0.923237,0.670927,0.771308,0.0830777,0.044323,0.593765,0.765256,0.777565,0.160123,0.0251485,0.163333,0.127653,0.996218,0.0319185,0.8826,0.988264,0.195585,0.181883,0.494536,0.832668,0.616947,0.02427,0.442125,0.882109,0.855055,0.26471,0.263529,0.112939,0.657538,0.129494,0.566477,0.632356,0.867422,0.374662,0.522467,0.606454,0.403552,0.544109,0.641932,0.65779,0.871143,0.200842,0.106086,0.195802,0.104876,0.936084,0.743013,0.0852044,0.3526,0.241636,0.212451,0.790461,0.365767,0.153868,0.0322498,0.101521,0.203763,0.465241,0.981527,0.584167,0.187845,0.0935146,0.355216,0.668796,0.707886,0.92418,0.666963,0.191994,0.339875,0.0754741,0.578314,0.856189,0.931836,0.356069,0.533443,0.399384,0.997584,0.87418,0.397079,0.897075,0.713127,0.264749,0.949819,0.139206,0.403447,0.24457,0.0663796,0.907473,0.314054,0.280426,0.854863,0.612382,0.32966,0.532579,0.0989593,0.355699,0.00295305,0.556207,0.471061,0.221907,0.73856,0.77728,0.773572,0.0141208,0.704133,0.114921,0.0315903,0.515435,0.100528,0.436954,0.113413,0.521305,0.259165,0.164278,0.111458,0.523444,0.940305,0.351882,0.427694,0.13204,0.842391,0.691335,0.922216,0.180106,0.907518,0.999914,0.694969,0.549899,0.530815,0.440247,0.704269,0.810085,0.439959,0.585497,0.118679,0.963532,0.294413,0.153566,0.52477,0.257288,0.205073,0.887345,0.456602,0.981748,0.857771,0.507167,0.092663,0.442445,0.908988,0.261302,0.00108081,0.718746,0.918944,0.389564,0.5467,0.150151,0.176262,0.0152182,0.602394,0.653971,0.302511,0.871428,0.926837,0.830292,0.94114,0.597795,0.685706,0.871267,0.201325,0.983237,0.484893,0.378536,0.876354,0.916635,0.31779,0.696514,0.970545,0.334514,0.325579,0.152107,0.403502,0.549124,0.345049,0.724449,0.840492,0.0846242,0.993244,0.851241,0.466709,0.953657,0.105577,0.870727,0.367255,0.732971,0.76326,0.964241,0.3152,0.692946,0.44681,0.467892,0.767877,0.376098,0.381375,0.955115,0.589866,0.621817,0.237877,0.0461298,0.313349,0.362186,0.384889,0.574637,0.822413,0.923644,0.0847816,0.0197128,0.512998,0.212484,0.295045,0.232702,0.428287,0.368827,0.303914,0.702849,0.629836,0.785643,0.780991,0.729283,0.0491084,0.751126,0.799914,0.773291,0.572849,0.231108,0.0432769,0.468664,0.101963,0.47498,0.625566,0.63145,0.806208,0.687338,0.0410484,0.44283,0.145849,0.288229,0.423959,0.92007,0.983701,0.223214,0.909482,0.251979,0.641861,0.197835,0.36843,0.220679,0.417964,0.845499,0.109438,0.428905,0.661302,0.0771883,0.96975,0.724456,0.259751,0.25775,0.505509,0.405159,0.69576,0.360826,0.370805,0.388756,0.628698,0.950818,0.0449808,0.892518,0.759389,0.849889,0.83452,0.617413,0.802027,0.436587,0.772808,0.939392,0.959121,0.16667,0.170637,0.709814,0.934256,0.429163,0.409311,0.915192,0.854141,0.81373,0.577202,0.799021,0.937383,0.230831,0.00389719,0.66758,0.480023,0.389881,0.497918,0.418318,0.968321,0.219506,0.049639,0.042338,0.423948,0.0797565,0.648278,0.28925,0.101659,0.933546,0.556206,0.739362,0.0511512,0.166679,0.249287,0.881312,0.16596,0.569824,0.725299,0.0253581,0.82875,0.433583,0.200611,0.540254,0.635654,0.425653,0.801602,0.492458,0.31392,0.114706,0.825092,0.302458,0.0530412,0.261705,0.919862,0.414818,|0.0594749,0.148313,0.279552,0.120394,0.581134,0.479953,0.990742,0.437861,0.209892,0.555883,0.951792,0.145311,0.143094,0.449215,0.864377,0.688548,0.323868,0.260987,0.817228,0.545465,0.10803,0.773401,0.20304,0.518325,0.381893,0.891133,0.0533035,0.0691032,0.705694,0.11247,0.24358,0.0387338,0.926739,0.29343,0.574473,0.168245,0.328377,0.0718153,0.284224,0.25357,0.721543,0.796163,0.25496,0.320244,0.983465,0.640295,0.499827,0.0689516,0.660637,0.644976,0.785716,0.610181,0.755721,0.684537,0.421036,0.82563,0.376622,0.872112,0.574383,0.395196,0.076627,0.0451297,0.17948,0.658694,0.0821282,0.409941,0.905431,0.918227,0.351928,0.00178796,0.703686,0.917804,0.752891,0.296624,0.575886,0.969217,0.140235,0.480298,0.357904,0.433185,0.784279,0.20497,0.737352,0.00796944,0.141819,0.310794,0.668482,0.725136,0.146639,0.356762,0.801096,0.838881,0.43985,0.934988,0.528859,0.29434,0.0911383,0.802624,0.156249,0.316283,0.262458,0.150025,0.657706,0.65448,0.278829,0.941708,0.713927,0.0925543,0.0613971,0.554598,0.78868,0.314694,0.892959,0.501657,0.701145,0.695979,0.542194,0.644011,0.834286,0.74123,0.0958208,0.0419412,0.0376659,0.374194,0.705383,0.930743,0.875641,0.95186,0.873124,0.0655862,0.426289,0.511462,0.803855,0.951794,0.605726,0.164284,0.762827,0.0532106,0.990536,0.318697,0.885052,0.0705723,0.397459,0.692305,0.645018,0.615547,0.757922,0.352886,0.0455404,0.100601,0.682678,0.214277,0.307925,0.96633,0.732072,0.64005,0.99325,0.631904,0.184011,0.332741,0.49041,0.390107,0.0916268,0.30642,0.0463927,0.219354,0.286754,0.680275,0.79655,0.563668,0.844294,0.0528569,0.505977,0.660136,0.877081,0.974987,0.710605,0.0311606,0.0778972,0.713225,0.442435,0.840133,0.162509,0.0160194,0.377506,0.485636,0.537549,0.191808,0.517916,0.405393,0.815609,0.421158,0.729876,0.00238323,0.347336,0.258968,0.216134,0.128191,0.427763,0.0937374,0.231479,0.0992932,0.217297,0.936936,0.823764,0.185078,0.952587,0.403994,0.91498,0.584193,0.614908,0.177639,0.576718,0.160004,0.0730249,0.59261,0.996481,0.85576,0.770221,0.848345,0.495093,0.438214,0.663895,0.529536,0.646631,0.86861,0.96046,0.0879958,0.376607,0.797421,0.642683,0.816046,0.493797,0.790431,0.853155,0.37406,0.496932,0.593146,0.526986,0.571849,0.684015,0.831219,0.362086,0.468692,0.305188,0.00198507,0.303436,0.861868,0.568608,0.339672,0.820485,0.808912,0.415719,0.888622,0.359584,0.0445687,0.212499,0.187189,0.684422,0.431145,0.880722,0.619618,0.532766,0.621453,0.983238,0.391507,0.54914,0.805961,0.795952,0.227462,0.123083,0.0568751,0.652352,0.425762,0.730581,0.401104,0.438793,0.529985,0.195997,0.604697,0.953953,0.941523,0.866418,0.743102,0.725843,0.752951,0.189395,0.120249,0.0180457,0.147901,0.688022,0.243281,0.686853,0.871517,0.278578,0.56469,0.569245,0.120103,0.0759986,0.318572,0.426856,0.611923,0.0447803,0.834759,0.395822,0.222125,0.0949227,0.0263333,0.92758,0.288191,0.0794396,0.670613,0.46782,0.713365,0.766492,0.190078,0.907815,0.658217,0.45532,0.362277,0.442425,0.0636797,0.405218,0.193324,0.852716,0.0617297,0.71671,0.992539,0.811569,0.485351,0.200806,0.689088,0.354356,0.286765,0.859161,0.568738,0.865397,0.0717047,0.505442,0.308961,0.49351,0.903259,0.404841,0.725911,0.955763,0.54212,0.903796,0.35582,0.462703,0.54193,0.0872136,0.972501,0.798389,0.484089,0.728484,0.374574,0.327979,0.310455,0.545583,0.0215113,0.742017,0.687391,0.171646,0.885474,0.431098,0.19977,0.637187,0.120532,0.0759593,0.761952,0.333454,0.322332,0.908541,0.158674,0.0600251,0.00857705,0.631878,0.0346457,0.388105,0.457167,0.676858,0.127389,0.899424,0.140062,0.446915,0.328507,0.913547,0.262261,0.603381,0.254884,0.286609,0.905195,0.911944,0.0912312,0.398264,0.73642,0.355995,0.552278,0.638367,0.494985,0.0294277,0.621844,0.846234,0.772778,0.515962,0.780878,0.179851,0.153928,0.251255,0.461864,0.386744,0.167,0.169562,0.197652,0.681262,0.79507,0.0106064,0.921241,0.622607,0.693957,0.840847,0.611065,0.776267,0.585122,0.458099,0.414913,0.637068,0.661951,0.203441,0.232692,0.600837,0.822802,0.0339139,0.104342,0.827872,0.669706,0.0460691,0.224492,0.662405,0.49296,0.761345,0.962274,0.298762,0.277463,0.695592,0.309821,0.027908,0.64759,0.901561,0.267695,0.859212,0.397251,0.535121,0.973656,0.624971,0.680354,0.818454,0.875634,0.535369,0.901305,0.869399,0.507623,0.811915,0.883586,0.590829,0.380896,0.565524,0.0490506,0.241958,0.369504,0.295993,0.792125,0.498109,0.152153,0.315523,0.425943,0.419468,0.244737,0.0416015,0.131948,0.692927,0.962164,0.163676,0.132211,0.542107,0.618613,0.157484,0.833185,0.63485,0.234602,0.505464,0.885788,0.539784,0.965004,0.18345,0.957459,0.724258,0.637499,0.298836,0.00463486,0.264995,0.283432,0.801912,0.476547,0.830892,0.88506,0.600918,0.611041,0.303903,0.265261,0.932589,0.707078,0.118845,0.562097,0.490773,0.0496692,0.24532,0.469797,0.307335,0.407013,0.980281,0.513892,0.852337,0.522483,0.320574,0.915262,0.693577,0.507387,0.208262,0.37424,0.61477,0.0264113,0.431366,0.905978,0.12206,0.579596,0.0159171,0.0246483,0.649383,0.67553,0.490233,0.892178,0.978071,0.415778,0.351906,0.201411,0.794683,0.370621,0.685302,0.950779,0.744121,0.629021,0.804071,0.354072,0.976276,0.610035,0.228498,0.615582,0.111585,0.164659,0.416583,0.433356,0.277148,0.893675,0.602982,0.264752,0.280322,0.772863,0.122178,0.777376,0.250899,0.702766,0.602324,0.305326,0.72374,0.633154,0.730062,0.251406,0.444547,0.647401,0.0501961,0.200643,0.77731,0.694122,0.702393,0.591981,0.290034,0.830343,0.964087,0.57936,0.0779775,0.616942,0.0965528,0.40809,0.803859,0.75938,0.27849,0.881161,0.501041,0.23683,0.890597,0.452041,0.821996,0.0881041,0.578879,0.379518,0.0727398,0.144055,0.251229,0.488768,0.288451,0.592684,0.947352,0.745408,0.383021,0.2487,0.156379,0.59274,0.715453,0.560912,0.297934,0.986874,0.75879,0.575299,0.889914,0.0272451,0.153307,0.190816,0.0531803,0.777033,0.305957,0.37873,0.0566646,0.0198058,0.0917431,0.795215,0.613363,0.127606,0.618212,0.451313,0.338046,0.633785,0.169065,0.918122,0.335439,0.684407,0.653453,0.946629,0.201042,0.00558507,0.203413,0.451772,0.179278,0.58567,0.0974681,0.179395,0.108549,0.414639,0.309347,0.647668,0.56211,0.98436,0.168936,0.148227,0.488053,0.607316,0.918887,0.694216,0.745988,0.123234,0.846785,0.710415,0.779875,0.512243,0.281986,0.165124,0.0971424,0.0190088,0.493218,0.661346,0.312653,0.472244,0.310125,0.30546,0.308891,0.683259,0.554933,0.668495,0.17042,0.203146,0.0107799,0.803978,0.315246,0.786629,0.139049,0.128042,0.962165,0.766294,0.988215,0.251454,0.675155,0.621554,0.396059,0.149223,0.574257,0.772166,0.582267,0.330803,0.238363,0.303934,0.253329,0.293698,0.685245,0.430486,0.657967,0.667576,0.0840856,0.158551,0.123904,0.905899,0.726757,0.548523,0.338731,0.523108,0.536824,0.114153,0.127853,0.910354,0.27042,0.30985,0.0584407,0.645404,0.858814,0.810546,0.111468,0.886226,0.893802,0.512269,0.601247,0.452453,0.3972,0.479689,0.72452,0.191473,0.582049,0.55514,0.444507,0.594233,0.846787,0.547272,0.243252,0.150128,0.55735,0.782166,0.875778,0.192511,0.982401,0.71072,0.888131,0.210516,0.867668,0.106888,0.827547,0.53276,0.904085,0.31655,0.608486,0.282328,0.895687,0.908685,0.342144,0.592766,0.942021,0.465818,0.291408,0.135432,0.438589,0.271722,0.298958,0.999515,0.889156,0.93858,0.556968,0.135427,0.481578,0.259042,0.746227,0.101479,0.397562,0.619675,0.451753,0.562673,0.00969958,0.0193892,0.14411,0.180468,0.59215,0.825112,0.542466,0.81227,0.43326,0.466941,0.912214,0.89396,0.592804,0.711152,0.100978,0.464732,0.740817,0.777976,0.138801,0.100881,0.520105,0.0441052,0.145045,0.522519,0.509753,0.00882047,0.776112,0.426414,0.529991,0.149244,0.923304,0.22814,0.107737,0.41403,0.119308,0.455948,0.441674,0.405317,0.0367855,0.65305,0.517546,0.279563,0.928865,0.222861,0.27272,0.732882,0.452789,0.289214,0.989212,0.519994,0.860318,0.511974,0.153225,0.7019,0.569411,0.70164,0.735246,0.776822,0.647552,0.0588071,0.780268,0.0954694,0.872201,0.844389,0.640839,0.632892,0.773045,0.287015,0.817231,0.282068,0.290935,0.182162,0.811229,0.246696,0.667362,0.858904,0.555183,0.880735,0.598266,0.778865,0.318498,0.195739,0.724467,0.499552,0.0107102,0.76271,0.813927,0.816215,0.172285,0.402777,0.0981258,0.162939,0.0112783,0.135217,0.219546,0.52239,0.346644,0.683447,0.170032,0.415665,0.687832,0.902444,0.538263,0.420311,0.988626,0.525936,0.187822,0.823224,0.674346,0.328666,0.0663485,0.124903,0.694267,0.612423,0.509973,0.139204,0.361658,0.0838138,0.0882328,0.444675,0.0574777,0.945821,0.225557,0.0622973,0.571138,0.871963,0.759045,0.39436,0.370232,0.0302762,0.788892,0.627515,0.284322,0.62251,0.0947956,0.64593,0.917118,0.32746,0.64508,0.912543,0.587427,0.649386,0.695491,0.050967,0.733094,0.583687,0.526341,0.0810327,0.481334,0.729486,0.460951,0.353216,0.241598,0.929115,0.759176,0.761147,0.354744,0.915768,0.671327,0.280607,0.154465,0.62982,0.92128,0.610862,0.706962,0.313544,0.980459,0.700102,0.56084,0.422912,0.757947,0.813819,0.64973,0.0161505,0.660512,0.846035,0.0109044,0.465748,0.77412,0.608596,0.817977,0.765928,0.319769,0.803647,0.298695,0.476447,0.884316,0.423941,0.411888,0.924608,0.00367373,0.171433,0.315913,0.270576,0.172176,0.420849,0.711846,0.903034,0.517548,0.201227,0.424411,0.610499,0.664882,0.0521948,0.64235,0.825798,0.934172,0.0753364,|0.256162,0.686899,0.0302723,0.269133,0.500408,0.586309,0.616745,0.369712,0.946722,0.698564,0.11199,0.496775,0.23657,0.922163,0.871747,0.385344,0.103793,0.954328,0.0202246,0.964873,0.048561,0.634138,0.156955,0.205919,0.900977,0.0916749,0.743719,0.880245,0.805222,0.295793,0.944688,0.828705,0.674133,0.228779,0.2045,0.958329,0.805641,0.469318,0.643686,0.882061,0.410454,0.700641,0.98599,0.141987,0.894161,0.754158,0.419701,0.209041,0.975758,0.10187,0.0569344,0.274579,0.303948,0.702752,0.601244,0.899169,0.0864062,0.429894,0.99048,0.97962,0.993848,0.325829,0.0391164,0.549421,0.404642,0.928018,0.846733,0.675384,0.141632,0.245451,0.0307655,0.630364,0.896271,0.2608,0.703546,0.480907,0.788302,0.0101505,0.401472,0.590813,0.123008,0.997018,0.688382,0.944634,0.364696,0.3655,0.470179,0.925092,0.67216,0.731394,0.114468,0.0816378,0.651489,0.891712,0.830086,0.495471,0.273482,0.583209,0.386158,0.465732,0.355618,0.0502918,0.147315,0.626607,0.266598,0.23053,0.188521,0.770548,0.861069,0.426175,0.464173,0.280975,0.513496,0.203,0.165797,0.110564,0.384774,0.966839,0.509999,0.650691,0.893121,0.207556,0.925439,0.56256,0.0662672,0.0807207,0.832484,0.619496,0.964169,0.417362,0.834225,0.755389,0.927,0.981938,0.681046,0.728905,0.834276,0.796531,0.812794,0.220353,0.701765,0.445571,0.518365,0.931782,0.492866,0.369877,0.443822,0.684244,0.0824759,0.845846,0.0429963,0.789981,0.629976,0.512079,0.7971,0.00944692,0.109468,0.265637,0.170169,0.492567,0.254366,0.767989,0.663922,0.0878612,0.907154,0.892253,0.419793,0.410468,0.567198,0.203851,0.295729,0.958241,0.176375,0.756758,0.211922,0.433408,0.53822,0.0310346,0.700564,0.75001,0.416745,0.339793,0.8126,0.312207,0.868664,0.479562,0.634957,0.418581,0.723819,0.645518,0.827718,0.114195,0.833013,0.00914395,0.957541,0.989525,0.132442,0.220552,0.0590298,0.961375,0.947273,0.3129,0.0376071,0.968562,0.742643,0.771755,0.582244,0.390438,0.537705,0.158043,0.837772,0.398765,0.459916,0.346778,0.23461,0.9581,0.496862,0.627782,0.243609,0.585574,0.0208223,0.871303,0.0652162,0.491383,0.753607,0.103377,0.0202901,0.562181,0.756037,0.191446,0.0871807,0.703083,0.56242,0.276243,0.0336871,0.420128,0.0579932,0.510058,0.609845,0.62998,0.350547,0.257611,0.0895814,0.932812,0.898554,0.820161,0.689038,0.200729,0.675888,0.741092,0.777928,0.555068,0.365076,0.0109355,0.0322326,0.581879,0.0604503,0.883328,0.152232,0.980285,0.66661,0.370297,0.883272,0.452412,0.955754,0.0959296,0.594044,0.968137,0.492007,0.859467,0.122068,0.775978,0.460958,0.413305,0.570813,0.274172,0.558993,0.741457,0.779993,0.407842,0.735448,0.622131,0.109368,0.846374,0.848753,0.676816,0.578838,0.930481,0.292021,0.277007,0.592232,0.701069,0.886311,0.0909531,0.098096,0.704925,0.251731,0.893852,0.738815,0.211501,0.35958,0.242681,0.0892894,0.286084,0.293217,0.882201,0.980138,0.911358,0.50327,0.623888,0.153993,0.998373,0.33736,0.611736,0.477522,0.547713,0.32908,0.601036,0.607316,0.541364,0.0288516,0.15951,0.875572,0.658503,0.523904,0.995703,0.218517,0.310388,0.73708,0.40858,0.0864137,0.643297,0.191889,0.721307,0.364975,0.87905,0.899273,0.0322235,0.0954428,0.917719,0.928677,0.271908,0.293307,0.635294,0.672071,0.247818,0.73533,0.593756,0.237472,0.998152,0.820734,0.878708,0.626286,0.197223,0.887699,0.676372,0.725003,0.238688,0.793689,0.0345618,0.358768,0.143168,0.347443,0.722415,0.926363,0.279125,0.791458,0.99037,0.000632882,0.730103,0.823995,0.972595,0.309135,0.323668,0.263402,0.849322,0.593012,0.76201,0.648088,0.804849,0.00964516,0.634436,0.359265,0.158635,0.544489,0.43216,0.373313,0.0292285,0.82866,0.564833,0.00262928,0.667705,0.131119,0.907564,0.0227442,0.54007,0.142219,0.623731,0.681422,0.0116476,0.165354,0.646753,0.665772,0.796252,0.179132,0.74437,0.253093,0.647651,0.45439,0.0754467,0.467578,0.443982,0.333572,0.476331,0.638112,0.249264,0.31286,0.718013,0.671898,0.554195,0.524274,0.289928,0.682807,0.341524,0.993011,0.970695,0.797219,0.535387,0.843136,0.496062,0.738217,0.526672,0.78356,0.990101,0.227532,0.184721,0.734062,0.752235,0.0662893,0.437518,0.574642,0.527217,0.360672,0.996037,0.754876,0.634798,0.716751,0.213988,0.378603,0.279783,0.632565,0.673569,0.779349,0.874283,0.576174,0.487255,0.735086,0.605451,0.02248,0.611499,0.290322,0.514357,0.358031,0.295623,0.535763,0.0419661,0.652566,0.438839,0.205771,0.0800135,0.558494,0.42144,0.969656,0.87707,0.661436,0.280748,0.403311,0.351367,0.907954,0.550362,0.463205,0.449963,0.656969,0.969225,0.435611,0.789099,0.659916,0.900266,0.174804,0.766849,0.46261,0.176167,0.00972015,0.462129,0.384075,0.818459,0.186693,0.831397,0.930199,0.667605,0.429649,0.0182858,0.957792,0.151203,0.744739,0.275707,0.566604,0.297056,0.677395,0.682136,0.63514,0.124867,0.511374,0.0802709,0.14737,0.783166,0.87041,0.395812,0.818375,0.294915,0.141673,0.222932,0.765937,0.969574,0.259504,0.899741,0.513585,0.378801,0.928771,0.242297,0.925395,0.904732,0.96864,0.519905,0.98397,0.755596,0.933774,0.182519,0.32082,0.915199,0.766611,0.0332891,0.101944,0.396296,0.71622,0.513695,0.607817,0.25711,0.0064612,0.241412,0.432137,0.0992216,0.679978,0.970102,0.940988,0.515091,0.731553,0.940722,0.528332,0.518905,0.296142,0.477012,0.45061,0.0231787,0.573681,0.72083,0.0163809,0.512632,0.851131,0.54725,0.106782,0.0418729,0.8037,0.984958,0.38769,0.82521,0.17988,0.880014,0.433118,0.284057,0.0213174,0.667627,0.74784,0.579718,0.437356,0.70236,0.648597,0.0477798,0.894981,0.58179,0.164845,0.406902,0.292552,0.94056,0.506974,0.548976,0.0276423,0.363083,0.871924,0.555399,0.411019,0.173947,0.57759,0.312745,0.78965,0.0813732,0.66124,0.828114,0.633666,0.51567,0.813109,0.32343,0.362112,0.869183,0.361737,0.110847,0.727762,0.426265,0.474949,0.138049,0.738298,0.65994,0.884957,0.351025,0.758185,0.0500481,0.762525,0.928396,0.193882,0.981356,0.355843,0.130259,0.903733,0.710431,0.95246,0.881667,0.874972,0.487274,0.37903,0.502307,0.890291,0.0403793,0.812597,0.918906,0.844792,0.577492,0.949141,0.28587,0.316091,0.844399,0.296824,0.763861,0.878087,0.0846638,0.546305,0.967467,0.709222,0.165184,0.689303,0.805053,0.662721,0.605018,0.979882,0.85647,0.569052,0.0813314,0.25523,0.0352094,0.819793,0.804655,0.673722,0.617654,0.282915,0.343719,0.121794,0.619307,0.39884,0.119167,0.0248572,0.199166,0.825073,0.947934,0.275231,0.647658,0.722383,0.402803,0.713597,0.685315,0.548518,0.382564,0.357954,0.428066,0.665691,0.707002,0.618216,0.213125,0.219647,0.921371,0.067248,0.591044,0.290108,0.966406,0.687277,0.185941,0.671184,0.338001,0.689448,0.675479,0.00348508,0.763529,0.69167,0.190776,0.0443108,0.667775,0.0955286,0.157725,0.297111,0.142134,0.871585,0.381049,0.692248,0.461582,0.116612,0.871909,0.0870588,0.416641,0.106463,0.995288,0.494781,0.027473,0.51133,0.41081,0.894693,0.663082,0.11723,0.640183,0.605432,0.0262525,0.143787,0.444364,0.755686,0.259364,0.820031,0.687301,0.370355,0.712596,0.10429,0.823638,0.222519,0.43535,0.155581,0.608684,0.330192,0.277049,0.510592,0.709724,0.156097,0.962276,0.452602,0.31536,0.753409,0.911063,0.346059,0.748116,0.334707,0.149735,0.181738,0.566995,0.859712,0.0274742,0.198355,0.53312,0.304617,0.645608,0.481258,0.61872,0.338726,0.618835,0.645458,0.441108,0.631463,0.292184,0.89918,0.106108,0.901963,0.264185,0.934179,0.341753,0.812299,0.4022,0.439801,0.15666,0.161388,0.754801,0.630505,0.18163,0.0721487,0.143269,0.900585,0.469803,0.210029,0.100111,0.127358,0.0597593,0.382111,0.648088,0.619627,0.0786906,0.412333,0.164262,0.580476,0.360295,0.592155,0.911866,0.221606,0.766726,0.914838,0.553278,0.788042,0.579616,0.139673,0.188842,0.176628,0.431206,0.522767,0.769129,0.791181,0.780612,0.941077,0.252806,0.888095,0.761701,0.129799,0.0664433,0.389417,0.238351,0.139422,0.861089,0.746984,0.0876149,0.385234,0.204659,0.199476,0.124322,0.329193,0.222581,0.166357,0.644053,0.186841,0.087517,0.274443,0.849358,0.093656,0.208619,0.695734,0.942169,0.8344,0.376119,0.9039,0.669745,0.584049,0.50569,0.798349,0.720219,0.304847,0.728229,0.989629,0.995576,0.141746,0.474234,0.626416,0.337658,0.379838,0.742431,0.383107,0.134909,0.40662,0.89279,0.335011,0.315907,0.349873,0.256535,0.481152,0.442217,0.363136,0.120445,0.488363,0.977857,0.20779,0.66848,0.69146,0.302998,0.0262145,0.551334,0.481367,0.863615,0.844647,0.276652,0.79683,0.240457,0.202943,0.185041,0.847425,0.60291,0.68979,0.627764,0.197129,0.756484,0.109659,0.156637,0.455823,0.0418671,0.225631,0.305792,0.621385,0.57903,0.86826,0.959928,0.750686,0.472978,0.654609,0.137118,0.859718,0.714528,0.226489,0.00928658,0.831045,0.785087,0.5846,0.57769,0.656009,0.689451,0.96932,0.99941,0.654029,0.298667,0.776283,0.634419,0.144284,0.897656,0.250717,0.642992,0.24048,0.826874,0.355562,0.800782,0.755452,0.151794,0.35639,0.0712698,0.391101,0.532834,0.128961,0.109548,0.191785,0.94835,0.812345,0.993792,0.964374,0.68904,0.919558,0.809679,0.874075,0.870404,0.338359,0.201929,0.503844,0.910413,0.698279,0.166028,0.885781,0.625509,0.808139,0.395653,0.99779,0.297829,0.544693,0.200638,0.30769,0.922085,0.174156,0.531857,0.20127,0.245299,0.760735,0.113862,0.901443,0.718853,0.722489,0.70751,0.738459,0.0471969,0.633186,0.436014,0.38559,0.0608393,0.496069,0.775538,0.448885,0.830085,|0.32097,0.102993,0.510334,0.205867,0.505628,0.244921,0.82032,0.92808,0.628935,0.11031,0.988796,0.825635,0.187317,0.985922,0.166036,0.12121,0.611025,0.705226,0.220165,0.319486,0.243245,0.950469,0.662091,0.882515,0.0166876,0.825383,0.657249,0.948848,0.548737,0.821665,0.266217,0.14418,0.238251,0.858818,0.723821,0.225265,0.555344,0.680128,0.766273,0.588369,0.168959,0.269121,0.536481,0.00445944,0.875118,0.82114,0.164144,0.84571,0.245439,0.885561,0.735782,0.0733947,0.706091,0.871326,0.114176,0.423263,0.0324907,0.0538099,0.101966,0.831514,0.804946,0.547168,0.474391,0.364809,0.970819,0.62761,0.0783252,0.306079,0.124272,0.569145,0.0504412,0.200366,0.422757,0.391613,0.794917,0.479024,0.970228,0.134989,0.566288,0.784197,0.31815,0.770035,0.21902,0.633518,0.507975,0.219945,0.132005,0.230076,0.281783,0.257251,0.00591797,0.638308,0.343327,0.525067,0.379436,0.253223,0.132476,0.778911,0.93034,0.484269,0.793518,0.665876,0.838939,0.75688,0.0432367,0.607324,0.766848,0.482957,0.101173,0.973817,0.852537,0.82967,0.793272,0.132755,0.914298,0.746485,0.0479636,0.964069,0.104205,0.789254,0.356017,0.678845,0.45938,0.372442,0.693874,0.530977,0.498075,0.517787,0.979062,0.265216,0.470211,0.442717,0.676753,0.544231,0.669431,0.562131,0.951302,0.356803,0.937183,0.472544,0.498797,0.392263,0.659886,0.987405,0.855515,0.330007,0.439313,0.0242373,0.359245,0.292228,0.999025,0.613853,0.746646,0.469494,0.460815,0.198821,0.231893,0.549353,0.347002,0.184421,0.509061,0.114461,0.831999,0.360197,0.409445,0.226388,0.356716,0.582679,0.839873,0.278459,0.61779,0.505793,0.395553,0.636447,0.196932,0.345433,0.295085,0.788417,0.569365,0.476016,0.640858,0.71724,0.247445,0.114617,0.67671,0.856166,0.294522,0.00153339,0.18501,0.470339,0.477664,0.23776,0.475025,0.870741,0.907537,0.512959,0.401156,0.128793,0.232462,0.0924943,0.773731,0.282313,0.233567,0.95129,0.0188767,0.793782,0.24215,0.912442,0.126894,0.125895,0.896987,0.532441,0.399003,0.715337,0.00308508,0.281542,0.344534,0.237765,0.774101,0.40021,0.687501,0.545924,0.823485,0.564397,0.767249,0.167154,0.648539,0.0765076,0.260863,0.831554,0.516644,0.41843,0.000500321,0.192298,0.30298,0.386225,0.000131726,0.40303,0.344959,0.126068,0.30522,0.632276,0.469174,0.391254,0.484894,0.43468,0.839571,0.286618,0.37856,0.311271,0.203468,0.794935,0.373711,0.0625793,0.459665,0.502952,0.798501,0.633951,0.762143,0.397833,0.720059,0.451035,0.377128,0.587325,0.216883,0.471242,0.56353,0.475221,0.0442654,0.152764,0.952038,0.528877,0.823512,0.583159,0.139474,0.618955,0.634524,0.412211,0.727268,0.861709,0.292549,0.195501,0.00873959,0.668055,0.455005,0.624044,0.318025,0.761639,0.61001,0.876609,0.137874,0.667411,0.499813,0.90688,0.126414,0.618211,0.705307,0.0358915,0.433644,0.79746,0.160628,0.982515,0.492065,0.274721,0.218238,0.00696737,0.151746,0.269932,0.0830014,0.178142,0.272758,0.26182,0.24488,0.402743,0.394843,0.130334,0.488902,0.723082,0.721411,0.241072,0.61398,0.11822,0.0773506,0.76046,0.870163,0.670992,0.250706,0.413851,0.0394472,0.488552,0.338169,0.455595,0.905222,0.666534,0.580196,0.684333,0.839946,0.740758,0.104758,0.0519867,0.472708,0.170268,0.403453,0.867381,0.0463225,0.701717,0.194747,0.556823,0.735254,0.84471,0.0302359,0.648295,0.382105,0.689,0.503573,0.527699,0.428552,0.127106,0.305803,0.934321,0.480585,0.584804,0.422308,0.684566,0.495909,0.922575,0.181293,0.921175,0.940947,0.0638551,0.602731,0.0562359,0.42255,0.740579,0.783815,0.0723237,0.49813,0.27829,0.306501,0.417042,0.0164201,0.656225,0.184831,0.176905,0.478548,0.771131,0.450157,0.801594,0.747757,0.515534,0.970501,0.134816,0.513401,0.964317,0.670781,0.410722,0.953923,0.695364,0.624176,0.119442,0.477708,0.708676,0.0833607,0.221775,0.56864,0.242581,0.270134,0.286825,0.932743,0.0942157,0.693889,0.45894,0.00275552,0.582211,0.983875,0.309157,0.89302,0.830849,0.179058,0.43778,0.792929,0.872683,0.293995,0.937315,0.485794,0.913394,0.599722,0.212897,0.606572,0.271762,0.4077,0.0829332,0.581926,0.989368,0.476836,0.448247,0.35054,0.691487,0.632359,0.170427,0.874834,0.797121,0.0119504,0.0182731,0.0973174,0.961316,0.187001,0.538571,0.527504,0.632681,0.500452,0.310854,0.0650881,0.183733,0.547447,0.243269,0.912233,0.511477,0.611169,0.941128,0.0128741,0.141332,0.408563,0.231113,0.673606,0.271419,0.484121,0.502901,0.755824,0.769587,0.817196,0.707194,0.922678,0.693122,0.150524,0.944013,0.35758,0.976399,0.418007,0.185389,0.122114,0.225691,0.291626,0.591634,0.345631,0.622263,0.544433,0.240938,0.00562853,0.80467,0.702923,0.707921,0.691313,0.246347,0.944929,0.545583,0.199634,0.0527704,0.84142,0.444065,0.936789,0.00614822,0.488408,0.250402,0.415468,0.820215,0.745113,0.39834,0.144518,0.192527,0.123332,0.508443,0.353952,0.546441,0.618399,0.67413,0.976098,0.992018,0.662404,0.913249,0.439673,0.678559,0.231384,0.471246,0.496036,0.0273961,0.401793,0.566482,0.886688,0.381656,0.603294,0.666803,0.494658,0.621629,0.253564,0.542419,0.0671652,0.728744,0.774033,0.47467,0.531655,0.448294,0.330494,0.602065,0.0261227,0.697162,0.000838697,0.264446,0.808092,0.0758929,0.638344,0.973633,0.19053,0.687474,0.936518,0.188144,0.401931,0.570014,0.76499,0.974495,0.720835,0.521819,0.468284,0.561458,0.304125,0.023503,0.969642,0.698864,0.514691,0.906518,0.0665436,0.772138,0.193872,0.430114,0.421599,0.163336,0.172985,0.965981,0.938988,0.996546,0.0487292,0.603403,0.11875,0.0286729,0.979936,0.19847,0.449145,0.0585054,0.562073,0.620231,0.152304,0.619475,0.863871,0.285785,0.823162,0.00539517,0.145914,0.1574,0.94523,0.806038,0.545069,0.701538,0.0472116,0.511888,0.771127,0.623863,0.360516,0.194796,0.143047,0.469623,0.740268,0.919836,0.244556,0.661628,0.712454,0.68221,0.275631,0.878376,0.0435173,0.231409,0.382174,0.859147,0.98204,0.884785,0.245557,0.595406,0.524058,0.286808,0.24545,0.142367,0.87987,0.242559,0.928316,0.974879,0.707531,0.367322,0.0673242,0.219183,0.34802,0.799633,0.409896,0.369786,0.726767,0.406735,0.236515,0.0609183,0.943293,0.944927,0.714231,0.418905,0.261793,0.144251,0.323156,0.166039,0.29748,0.232944,0.152035,0.00768113,0.263044,0.348433,0.0433022,0.981893,0.362961,0.740211,0.0757198,0.799916,0.512062,0.674854,0.252078,0.460054,0.640589,0.208908,0.606185,0.647095,0.911513,0.183386,0.721738,0.754937,0.0958179,0.283716,0.3565,0.2754,0.722852,0.919604,0.582123,0.363451,0.260111,0.429947,0.354755,0.576056,0.582245,0.739765,0.0123912,0.403788,0.0331903,0.790398,0.275686,0.242567,0.306628,0.7391,0.622957,0.165742,0.600762,0.492512,0.452793,0.302225,0.672653,0.389897,0.511307,0.573055,0.205581,0.475912,0.40943,0.986954,0.707245,0.362759,0.159128,0.737065,0.364483,0.662608,0.931998,0.128897,0.102816,0.746173,0.339265,0.53742,0.810511,0.681581,0.963381,0.437404,0.0433205,0.305492,0.145471,0.337716,0.41135,0.415766,0.862423,0.771788,0.231248,0.0601431,0.945773,0.709527,0.145006,0.65124,0.116274,0.136862,0.662973,0.835967,0.686994,0.86685,0.252636,0.882475,0.380088,0.854072,0.472693,0.762985,0.562661,0.858338,0.179726,0.416184,0.744202,0.371531,0.435163,0.958331,0.50601,0.539084,0.797627,0.0109856,0.569784,0.973159,0.870533,0.314415,0.372932,0.839787,0.353216,0.234356,0.570955,0.590783,0.0349294,0.517649,0.378715,0.972246,0.841106,0.0829356,0.343657,0.848132,0.364253,0.499776,0.269824,0.0751038,0.905623,0.321963,0.814447,0.709912,0.0504014,0.341904,0.800972,0.174157,0.833509,0.196768,0.580237,0.732046,0.309343,0.970893,0.0668458,0.324125,0.488327,0.804335,0.44135,0.0883762,0.491594,0.399751,0.161588,0.710263,0.369145,0.744174,0.754231,0.0235361,0.953723,0.325761,0.922096,0.328334,0.613127,0.597486,0.737197,0.0240657,0.907116,0.407243,0.924879,0.87635,0.0704235,0.345706,0.686381,0.191564,0.184015,0.170949,0.181961,0.392894,0.445912,0.520107,0.528704,0.961979,0.741873,0.888348,0.50323,0.611095,0.327495,0.92088,0.669679,0.780799,0.342922,0.809428,0.615455,0.55476,0.303505,0.494818,0.62987,0.397974,0.928842,0.509128,0.210554,0.643608,0.264995,0.789851,0.410497,0.36984,0.879871,0.940215,0.558591,0.454782,0.0435004,0.947605,0.0405697,0.828059,0.321952,0.175827,0.734389,0.506083,0.166664,0.574959,0.182708,0.697251,0.493223,0.386225,0.138142,0.384054,0.884124,0.725786,0.0868937,0.454797,0.74126,0.167062,0.026803,0.709715,0.325769,0.4424,0.832897,0.671824,0.479647,0.879505,0.87291,0.148372,0.455321,0.820231,0.983748,0.350011,0.00355488,0.195539,0.229286,0.941269,0.985037,0.283097,0.566196,0.413696,0.983175,0.710217,0.250988,0.930077,0.8337,0.30548,0.615554,0.465432,0.453674,0.786828,0.506002,0.440922,0.596182,0.177066,0.217,0.519429,0.403629,0.809318,0.219222,0.657503,0.891456,0.385914,0.863333,0.167151,0.554129,0.744435,0.0613228,0.135785,0.772962,0.364459,0.315962,0.534858,0.889322,0.59521,0.552284,0.62852,0.405188,0.768962,0.274267,0.168494,0.045366,0.77363,0.938402,0.425928,0.991558,0.529161,0.165048,0.0283655,0.230826,0.207613,0.132973,0.853968,0.829456,0.959601,0.0202952,0.353771,0.443136,0.901656,0.880056,0.470003,0.251373,0.801041,0.32127,0.975777,0.1741,0.581779,0.667013,0.34174,0.913672,0.135925,0.652727,0.0615387,0.174341,0.817954,0.402505,0.087879,0.568213,0.776808,0.405841,0.598898,0.514632,0.442344,0.189853,0.916337,0.589165,0.222572,|0.115644,0.913885,0.934863,0.0696785,0.787469,0.416036,0.645042,0.202383,0.668017,0.945996,0.704173,0.272454,0.798286,0.415503,0.0958377,0.333524,0.195376,0.260903,0.249933,0.938806,0.0569845,0.101875,0.208689,0.260424,0.545558,0.082499,0.342413,0.152212,0.654406,0.377162,0.707974,0.881215,0.499436,0.468362,0.913433,0.577567,0.16069,0.54905,0.139313,0.457054,0.407677,0.489481,0.508379,0.320203,0.423506,0.996179,0.978734,0.390752,0.326587,0.0884519,0.330706,0.622608,0.233355,0.964176,0.861965,0.111756,0.478632,0.804944,0.614836,0.203517,0.70063,0.127054,0.332117,0.994304,0.897012,0.00856245,0.973871,0.536592,0.577972,0.547244,0.313589,0.186894,0.700362,0.897364,0.637504,0.0704232,0.787273,0.887047,0.894404,0.294167,0.786413,0.866849,0.162238,0.633333,0.332936,0.0687566,0.507556,0.0112837,0.0265716,0.443345,0.295176,0.957682,0.585878,0.420027,0.512753,0.945066,0.671785,0.404381,0.0172671,0.501667,0.112319,0.807728,0.635261,0.809419,0.134425,0.756827,0.93152,0.26156,0.287468,0.892697,0.902827,0.579074,0.0718507,0.740569,0.390202,0.51625,0.181702,0.775423,0.207245,0.510157,0.403179,0.0466004,0.0871519,0.669396,0.988829,0.846967,0.79414,0.0385599,0.998552,0.530855,0.418762,0.713986,0.43152,0.892556,0.132778,0.700899,0.141882,0.136313,0.0539608,0.767114,0.297791,0.170509,0.977817,0.840057,0.452735,0.509016,0.862547,0.18547,0.972553,0.0301738,0.407137,0.994105,0.850117,0.563985,0.6899,0.0640349,0.948189,0.744288,0.308743,0.608757,0.0121889,0.553501,0.22128,0.00998712,0.207148,0.667877,0.0826066,0.985396,0.156438,0.408282,0.421026,0.230624,0.271216,0.397354,0.616981,0.740787,0.505597,0.552293,0.905344,0.235635,0.966617,0.628911,0.769392,0.419532,0.13098,0.111815,0.801353,0.460912,0.484275,0.361349,0.836503,0.318941,0.357839,0.396089,0.819827,0.645721,0.970581,0.898172,0.625104,0.903383,0.475889,0.987479,0.0469236,0.728447,0.905088,0.358135,0.177861,0.629391,0.538948,0.861995,0.224924,0.925037,0.686381,0.659696,0.343807,0.69103,0.00309128,0.54455,0.124437,0.937279,0.898966,0.199419,0.353251,0.267635,0.77253,0.634081,0.882316,0.958434,0.108541,0.165175,0.341488,0.664788,0.882143,0.7073,0.0778787,0.992139,0.717555,0.755916,0.442566,0.67568,0.237544,0.96677,0.654768,0.568509,0.193891,0.901913,0.942405,0.506978,0.258472,0.219851,0.0196933,0.84821,0.0249329,0.36832,0.741837,0.90247,0.0511448,0.32014,0.611099,0.642258,0.315388,0.737584,0.0222842,0.153945,0.964756,0.236155,0.454093,0.191687,0.268124,0.409197,0.936365,0.866664,0.618155,0.343719,0.328325,0.854946,0.988283,0.291778,0.0602115,0.976087,0.889108,0.26676,0.0897508,0.875003,0.355691,0.583407,0.0876157,0.152859,0.548641,0.813884,0.114736,0.134944,0.534633,0.708477,0.226339,0.540995,0.425797,0.256174,0.0228896,0.40864,0.539903,0.527385,0.723466,0.951654,0.531867,0.0806965,0.491418,0.954636,0.853505,0.969254,0.0695226,0.0503558,0.0947545,0.319594,0.882444,0.603886,0.773849,0.25315,0.187669,0.324844,0.671331,0.570429,0.897741,0.0160462,0.0316954,0.289445,0.620145,0.433095,0.676326,0.591309,0.861256,0.939246,0.856112,0.65327,0.510154,0.0331996,0.539058,0.689324,0.305955,0.361617,0.906795,0.680005,0.477154,0.645556,0.508059,0.80317,0.0234234,0.106844,0.146929,0.0379386,0.376636,0.244774,0.758619,0.454781,0.4082,0.222568,0.214997,0.342048,0.305938,0.715922,0.250609,0.37754,0.436787,0.639834,0.0479241,0.260261,0.231475,0.186116,0.0583912,0.0562727,0.40882,0.522635,0.598143,0.39153,0.796719,0.758125,0.721313,0.908009,0.790519,0.0623988,0.295979,0.998224,0.490658,0.0700148,0.370213,0.175992,0.3934,0.335495,0.735681,0.555111,0.900177,0.289758,0.0218122,0.315295,0.681219,0.64918,0.546852,0.155665,0.522822,0.984155,0.946218,0.560562,0.616528,0.725899,0.633931,0.162036,0.26219,0.30856,0.188105,0.900705,0.0665284,0.523299,0.246548,0.984352,0.96624,0.436913,0.115009,0.61488,0.427397,0.0210908,0.304586,0.643221,0.763951,0.962292,0.327112,0.0539049,0.0655375,0.0131848,0.273555,0.0489857,0.752029,0.484839,0.489505,0.785416,0.313583,0.526115,0.750152,0.79268,0.784482,0.738762,0.463093,0.263969,0.967695,0.048805,0.943007,0.892945,0.710043,0.756643,0.957371,0.966076,0.324166,0.479182,0.0104699,0.743473,0.586374,0.691135,0.386047,0.0692667,0.727359,0.404156,0.784648,0.888085,0.688985,0.393151,0.209143,0.805204,0.878592,0.475953,0.14315,0.258736,0.335589,0.120723,0.123114,0.305931,0.485124,0.0366955,0.343379,0.755496,0.0642581,0.431055,0.600797,0.42029,0.6099,0.756113,0.573299,0.233362,0.808183,0.0856502,0.60008,0.203761,0.422569,0.0664074,0.778314,0.0174154,0.0712122,0.595815,0.173086,0.751064,0.391051,0.965507,0.903269,0.393027,0.983284,0.28059,0.551492,0.453641,0.450783,0.960237,0.873046,0.586378,0.907031,0.837493,0.912057,0.0103733,0.144464,0.680385,0.94928,0.0622473,0.580467,0.252736,0.997372,0.81573,0.942542,0.83867,0.1494,0.828769,0.307355,0.000543594,0.168327,0.511212,0.582868,0.0480518,0.0859256,0.41409,0.511297,0.908385,0.57,0.444251,0.462961,0.281653,0.989741,0.383765,0.862454,0.33745,0.775624,0.156304,0.300615,0.37249,0.629964,0.216992,0.274784,0.684791,0.522814,0.78105,0.306152,0.505769,0.475038,0.496381,0.884721,0.676284,0.444821,0.315633,0.702422,0.73197,0.994577,0.959831,0.76026,0.979172,0.201877,0.67981,0.25515,0.227211,0.356193,0.248218,0.779417,0.223814,0.501352,0.922124,0.243167,0.641419,0.214491,0.661998,0.325605,0.230284,0.769049,0.260564,0.00548095,0.0639982,0.00727743,0.905556,0.536818,0.731397,0.579962,0.949646,0.356294,0.85393,0.935647,0.0459369,0.340658,0.851831,0.791809,0.567284,0.989238,0.439301,0.881478,0.0244389,0.690397,0.000492394,0.253224,0.840388,0.470935,0.96581,0.282019,0.21904,0.20717,0.929155,0.24957,0.664901,0.000620782,0.965254,0.915846,0.498842,0.627116,0.400503,0.896478,0.520718,0.537637,0.660232,0.547956,0.0502968,0.930257,0.164327,0.837241,0.25128,0.847683,0.639361,0.293325,0.468404,0.03385,0.951741,0.245957,0.722013,0.327608,0.125147,0.239667,0.960208,0.903111,0.242556,0.0732678,0.518207,0.664129,0.254669,0.213145,0.289218,0.959819,0.655084,0.167207,0.424056,0.0601098,0.968724,0.399625,0.287916,0.0172813,0.958336,0.883286,0.827415,0.400779,0.137211,0.670158,0.174036,0.942532,0.858709,0.255797,0.141898,0.475501,0.127386,0.160714,0.360761,0.981118,0.880836,0.673143,0.233514,0.0311454,0.845047,0.213229,0.79318,0.306687,0.342056,0.713181,0.454055,0.78355,0.575705,0.250448,0.253804,0.586717,0.385358,0.942957,0.800936,0.893614,0.174218,0.014726,0.269202,0.0551092,0.318683,0.911532,0.748493,0.206033,0.533933,0.999568,0.355274,0.750581,0.105326,0.826994,0.890034,0.532706,0.333448,0.904704,0.661298,0.980362,0.835398,0.917658,0.971966,0.674162,0.101588,0.614712,0.800774,0.0603786,0.789388,0.937665,0.963767,0.125394,0.731742,0.529417,0.451111,0.400047,0.73327,0.681242,0.50406,0.218535,0.61853,0.40712,0.17587,0.252321,0.901913,0.312052,0.974777,0.666837,0.0570518,0.846532,0.590859,0.0781447,0.364847,0.376182,0.810236,0.248601,0.252364,0.240799,0.700063,0.963427,0.258586,0.054686,0.951952,0.514807,0.965328,0.77583,0.0961556,0.954625,0.268974,0.307546,0.442105,0.530862,0.572908,0.0614183,0.592718,0.384907,0.346602,0.279387,0.639747,0.807415,0.909031,0.591709,0.535264,0.231762,0.827762,0.365796,0.764963,0.0208598,0.84913,0.136605,0.613299,0.00519967,0.980665,0.281506,0.320141,0.5394,0.684113,0.675674,0.308781,0.378793,0.135507,0.741929,0.454237,0.901414,0.933743,0.876714,0.452556,0.79735,0.148075,0.208046,0.969324,0.754538,0.00971043,0.432583,0.0901113,0.627731,0.0795847,0.447695,0.769325,0.321843,0.449834,0.110258,0.256752,0.800949,0.367893,0.732056,0.384326,0.487564,0.880701,0.0227123,0.395362,0.430574,0.653764,0.71481,0.0713365,0.922243,0.801226,0.476474,0.108102,0.956339,0.00286639,0.76246,0.731992,0.770857,0.0420068,0.0643799,0.956183,0.486361,0.293901,0.00873649,0.518596,0.25675,0.61623,0.981084,0.410079,0.898284,0.901129,0.696294,0.19796,0.346419,0.272103,0.746621,0.26338,0.0395375,0.420256,0.22498,0.145896,0.0196173,0.462979,0.987363,0.271733,0.993158,0.800907,0.270748,0.708148,0.880118,0.734774,0.595745,0.337953,0.0268624,0.253425,0.52141,0.982261,0.637598,0.90253,0.411281,0.384161,0.31405,0.847828,0.936764,0.133587,0.595223,0.229719,0.840298,0.590813,0.0374379,0.0945673,0.809774,0.0429892,0.986262,0.311564,0.8699,0.808804,0.502106,0.00237221,0.726971,0.487514,0.0569157,0.471621,0.487136,0.350287,0.422289,0.38776,0.893737,0.681178,0.796615,0.650433,0.468126,0.000775278,0.528119,0.587439,0.809621,0.0822901,0.551474,0.428977,0.440324,0.71745,0.36753,0.956653,0.60637,0.682833,0.921133,0.625365,0.0496379,0.000622392,0.1638,0.10335,0.846289,0.443393,0.119739,0.658653,0.814995,0.88249,0.0939286,0.753606,0.77966,0.863147,0.00634718,0.136111,0.323958,0.359867,0.183575,0.0295909,0.170635,0.0514414,0.0911626,0.37823,0.824792,0.222289,0.380915,0.347602,0.212853,0.615362,0.957949,0.387772,0.118187,0.980104,0.655616,0.991341,0.174733,0.840869,0.216053,0.149866,0.245164,0.757356,0.160325,0.113605,0.976964,0.0657623,0.364441,0.582342,0.0299931,0.621405,0.701873,0.854231,0.455095,0.545171,0.697096,0.912432,0.493395,0.896928,0.393745,0.946122,0.830103,0.353693,0.319701,0.179615,0.241864,0.408519,0.791756,0.428084,|0.0371164,0.365322,0.553057,0.981684,0.142831,0.753644,0.714866,0.191861,0.625926,0.0104632,0.389044,0.430451,0.532997,0.351818,0.0300777,0.194234,0.989589,0.704579,0.035916,0.495514,0.339902,0.626186,0.328332,0.890306,0.152072,0.743596,0.402125,0.13522,0.921038,0.193114,0.957395,0.149472,0.49173,0.277049,0.0435597,0.848289,0.794214,0.114719,0.653688,0.459087,0.694841,0.598466,0.443363,0.598041,0.663217,0.961515,0.196889,0.660619,0.228706,0.71431,0.163085,0.878584,0.560719,0.0842398,0.506863,0.0644482,0.584463,0.329083,0.720408,0.625408,0.412525,0.468875,0.972418,0.259824,0.252887,0.413458,0.158016,0.291609,0.655444,0.23431,0.801841,0.408095,0.137473,0.814686,0.958598,0.379052,0.131529,0.0688499,0.722561,0.545813,0.632604,0.133523,0.671719,0.747467,0.0877078,0.800904,0.225458,0.746863,0.702979,0.640417,0.342532,0.660131,0.570179,0.0783655,0.507234,0.722258,0.428743,0.211714,0.0816424,0.227499,0.500211,0.732916,0.415602,0.822274,0.507163,0.232365,0.277942,0.299864,0.920898,0.269358,0.156174,0.513454,0.459245,0.0131657,0.884508,0.452579,0.743565,0.566832,0.510645,0.609165,0.492029,0.987724,0.613083,0.454052,0.546795,0.80482,0.291586,0.248015,0.298579,0.488568,0.243638,0.869977,0.942814,0.230656,0.154231,0.540589,0.810763,0.0787504,0.418278,0.642091,0.49542,0.124274,0.0671189,0.743685,0.664728,0.496536,0.877473,0.573916,0.56707,0.987506,0.530217,0.978167,0.976752,0.00168556,0.725061,0.681461,0.50667,0.0819236,0.271122,0.0654783,0.437901,0.170143,0.26551,0.201531,0.681422,0.923073,0.413816,0.342501,0.100325,0.79786,0.42529,0.871755,0.174696,0.399303,0.187331,0.799284,0.842497,0.339537,0.0243638,0.833702,0.106726,0.72265,0.653211,0.982907,0.684063,0.169155,0.625324,0.787125,0.0807219,0.776226,0.587335,0.761569,0.62925,0.170931,0.993838,0.61682,0.34653,0.553456,0.470174,0.969182,0.515338,0.165431,0.733424,0.765022,0.848437,0.0338582,0.880974,0.487924,0.540394,0.846991,0.226802,0.858233,0.379366,0.0173343,0.401562,0.322968,0.121378,0.65705,0.735344,0.744381,0.527072,0.806596,0.306223,0.689305,0.102559,0.809548,0.338644,0.698824,0.379219,0.374866,0.442105,0.893441,0.719674,0.442254,0.737012,0.0159124,0.224595,0.833914,0.384472,0.69706,0.599571,0.940679,0.671727,0.218709,0.572719,0.104763,0.62762,0.291534,0.199965,0.310061,0.74371,0.283424,0.522053,0.925365,0.406651,0.996585,0.0115806,0.168159,0.643235,0.394671,0.875942,0.293611,0.452978,0.87636,0.612194,0.148594,0.319208,0.180264,0.305793,0.337712,0.472823,0.605904,0.704304,0.372703,0.369281,0.517591,0.586804,0.192619,0.390957,0.395986,0.740313,0.783803,0.125842,0.330787,0.55927,0.579179,0.137793,0.363246,0.338731,0.604108,0.990408,0.47046,0.720166,0.241927,0.307804,0.0768714,0.744752,0.109444,0.623924,0.458112,0.406182,0.503432,0.891433,0.543382,0.412512,0.962079,0.223127,0.394113,0.233418,0.639747,0.817154,0.927237,0.832594,0.443652,0.50955,0.0385426,0.0495711,0.697187,0.716578,0.361189,0.192707,0.985938,0.823381,0.0970027,0.65443,0.53022,0.166637,0.227732,0.49046,0.16439,0.686186,0.017705,0.183423,0.740675,0.777669,0.665307,0.226489,0.829704,0.208154,0.598174,0.634695,0.439151,0.814275,0.728881,0.88507,0.660172,0.825858,0.862645,0.13001,0.760034,0.669536,0.53615,0.936599,0.859931,0.51225,0.755075,0.0113115,0.986713,0.443798,0.991265,0.8681,0.974459,0.0373779,0.10199,0.974931,0.567951,0.575536,0.109247,0.929366,0.0684929,0.903473,0.248169,0.88753,0.502125,0.24993,0.984386,0.197588,0.174764,0.825067,0.436611,0.384062,0.874084,0.834208,0.617423,0.8801,0.792251,0.359688,0.969534,0.940322,0.0338981,0.645189,0.165142,0.564864,0.723435,0.991896,0.42898,0.0451069,0.401997,0.556167,0.500911,0.30701,0.933309,0.631832,0.621437,0.238755,0.765579,0.835562,0.925866,0.0381569,0.87344,0.20211,0.878071,0.296433,0.643021,0.81856,0.49252,0.579129,0.0777709,0.893134,0.129663,0.897645,0.147379,0.223827,0.349143,0.535961,0.570467,0.671919,0.780312,0.471899,0.126601,0.030726,0.513518,0.866566,0.270201,0.264209,0.984522,0.209703,0.93947,0.915131,0.18764,0.946808,0.973017,0.28338,0.195451,0.463473,0.719914,0.425941,0.665197,0.99376,0.924715,0.128181,0.164755,0.565192,0.413275,0.229255,0.355514,0.668285,0.818758,0.711142,0.420513,0.20904,0.257204,0.330523,0.66282,0.0345497,0.551848,0.795897,0.772974,0.689057,0.852354,0.506545,0.213318,0.996448,0.957524,0.850996,0.463517,0.256312,0.857935,0.317501,0.129575,0.756573,0.20362,0.766059,0.246644,0.569448,0.508575,0.323569,0.686296,0.0817828,0.634965,0.514495,0.842077,0.743648,0.0117915,0.437637,0.241489,0.203984,0.429262,0.364371,0.71918,0.765302,0.908826,0.542523,0.187136,0.0499901,0.385606,0.30063,0.966656,0.475856,0.337888,0.382559,0.515474,0.767872,0.44725,0.213737,0.206711,0.691576,0.90783,0.315682,0.379396,0.216024,0.484926,0.532243,0.201212,0.628516,0.0671523,0.935019,0.378601,0.57785,0.60131,0.509913,0.105588,0.167459,0.984369,0.95984,0.249535,0.914948,0.656102,0.516983,0.829281,0.377578,0.351675,0.876891,0.459622,0.724793,0.545894,0.432622,0.351942,0.0206899,0.068167,0.556336,0.0960328,0.718125,0.577432,0.610597,0.98194,0.0215945,0.766992,0.0367412,0.810193,0.437905,0.564151,0.714333,0.290863,0.199501,0.385257,0.315385,0.332472,0.604311,0.0851004,0.252668,0.0642914,0.824101,0.885307,0.475691,0.865718,0.582719,0.460333,0.444706,0.202078,0.377446,0.680567,0.364756,0.293734,0.228205,0.0577109,0.392424,0.47823,0.985778,0.684493,0.260233,0.256097,0.584181,0.7552,0.218016,0.549248,0.590525,0.166918,0.376874,0.389513,0.779231,0.285832,0.404238,0.0775751,0.933104,0.636564,0.542218,0.420529,0.102775,0.392504,0.528574,0.887571,0.00869662,0.0887073,0.382703,0.19452,0.968021,0.754342,0.569968,0.10794,0.948057,0.505815,0.787363,0.553702,0.538076,0.0398491,0.916145,0.267335,0.401144,0.802092,0.0197298,0.656,0.0306833,0.763313,0.188808,0.371677,0.112139,0.643931,0.365115,0.507796,0.615661,0.855425,0.138784,0.886234,0.964021,0.548907,0.542612,0.196465,0.504301,0.188431,0.629596,0.927024,0.582077,0.625305,0.503667,0.382034,0.123809,0.663429,0.0933079,0.415126,0.115166,0.655883,0.54058,0.382021,0.257295,0.591674,0.68997,0.648589,0.215599,0.634363,0.509951,0.86302,0.206597,0.154657,0.764634,0.889143,0.874479,0.539494,0.865654,0.68281,0.374764,0.723775,0.220109,0.0746002,0.852362,0.823806,0.913013,0.213895,0.524617,0.814699,0.819272,0.718304,0.258375,0.0907454,0.991137,0.719757,0.902621,0.834596,0.591609,0.355487,0.501647,0.557098,0.227591,0.422424,0.626174,0.991621,0.510545,0.378393,0.615966,0.230859,0.717432,0.189024,0.167934,0.841276,0.575779,0.306656,0.858725,0.562276,0.94773,0.613691,0.800036,0.304189,0.158934,0.784844,0.729603,0.0576713,0.330298,0.976886,0.0516176,0.968465,0.967366,0.325412,0.168975,0.0023309,0.345752,0.366132,0.840259,0.389388,0.991083,0.292859,0.228661,0.289564,0.676959,0.532821,0.193994,0.905126,0.809665,0.215742,0.734473,0.393902,0.52486,0.11752,0.11373,0.292826,0.159127,0.662459,0.345998,0.711336,0.277503,0.897362,0.946354,0.58833,0.862481,0.31017,0.303492,0.184521,0.85214,0.0715889,0.785193,0.205677,0.316453,0.290501,0.765581,0.130085,0.0896956,0.141799,0.265364,0.870385,0.309644,0.14491,0.26898,0.314089,0.881555,0.358757,0.426729,0.5038,0.842971,0.420728,0.299863,0.669691,0.830223,0.499429,0.578577,0.625477,0.72651,0.628162,0.849093,0.288798,0.799739,0.386031,0.374968,0.344997,0.279793,0.202093,0.0584626,0.809146,0.656807,0.242288,0.320315,0.654596,0.132548,0.22883,0.672151,0.991947,0.318955,0.343692,0.891662,0.629086,0.0157087,0.0838642,0.615939,0.63609,0.982585,0.302433,0.478323,0.0629694,0.619715,0.093605,0.298167,0.390703,0.624618,0.00274873,0.88907,0.309888,0.904401,0.543042,0.645461,0.592079,0.886003,0.728787,0.764125,0.702654,0.285179,0.423925,0.146925,0.554666,0.986003,0.0369938,0.789024,0.733204,0.169109,0.154916,0.290078,0.576849,0.680265,0.923889,0.349316,0.785849,0.658372,0.69272,0.863333,0.622871,0.145731,0.266024,0.311276,0.0419147,0.749986,0.666895,0.279894,0.723934,0.17479,0.805889,0.316549,0.00826806,0.52766,0.138811,0.632961,0.742171,0.0425429,0.445683,0.725867,0.158433,0.0559657,0.507008,0.0384513,0.498557,0.417371,0.336283,0.212871,0.283934,0.915763,0.455445,0.498055,0.864281,0.961383,0.00768149,0.174381,0.868712,0.908471,0.0994133,0.318214,0.313641,0.188056,0.504941,0.514054,0.517723,0.927657,0.734963,0.38211,0.885827,0.402352,0.320339,0.739511,0.343189,0.146425,0.108563,0.629264,0.464172,0.106205,0.13451,0.303149,0.886555,0.600522,0.443619,0.942575,0.527883,0.854039,0.559073,0.911291,0.315897,0.895859,0.338778,0.00821739,0.0269029,0.6124,0.772746,0.34436,0.743899,0.749507,0.364999,0.283127,0.74276,0.874443,0.747809,0.281622,0.6979,0.878992,0.487299,0.793489,0.465018,0.397407,0.37364,0.46974,0.599346,0.359222,0.66544,0.255274,0.636416,0.460601,0.45067,0.118161,0.297713,0.0670308,0.211734,0.685516,0.875519,0.877748,0.733128,0.849168,0.773101,0.96688,0.484617,0.495391,0.526085,0.531224,0.754881,0.248711,0.715927,0.222822,0.846258,0.17469,0.81907,0.950827,0.82434,0.490502,0.625241,0.363583,0.0892953,0.308868,0.933341,0.788292,0.450123,0.606575,0.114958,0.679383,0.415805,0.616638,0.869829,0.296945,0.448606,|0.251218,0.610054,0.784925,0.133818,0.123805,0.224372,0.706047,0.0776664,0.867027,0.540104,0.69142,0.842983,0.935379,0.152542,0.965286,0.125352,0.372472,0.289862,0.408428,0.249803,0.351452,0.197695,0.652396,0.356055,0.250063,0.528124,0.71963,0.585395,0.311297,0.872244,0.927823,0.162103,0.522155,0.15131,0.687368,0.494322,0.833013,0.375835,0.932861,0.0711898,0.625352,0.960358,0.360475,0.956948,0.395467,0.717551,0.435409,0.0153004,0.115669,0.88824,0.586515,0.359858,0.0140789,0.667735,0.156468,0.955908,0.893256,0.848736,0.89308,0.992193,0.900257,0.718553,0.0691387,0.133813,0.505451,0.606711,0.829206,0.0864234,0.813429,0.741869,0.207258,0.842641,0.655895,0.841708,0.52532,0.724799,0.173256,0.315539,0.796286,0.238928,0.755151,0.522521,0.595566,0.616103,0.46911,0.599903,0.595122,0.173862,0.0853915,0.28694,0.305144,0.512788,0.168147,0.888735,0.773069,0.604522,0.910183,0.614852,0.185753,0.961998,0.289729,0.785493,0.0937261,0.224189,0.304649,0.938824,0.144383,0.218435,0.171978,0.507313,0.239518,0.928286,0.989253,0.0610293,0.868464,0.144347,0.932818,0.38491,0.119787,0.233426,0.574321,0.321113,0.643495,0.656174,0.0473205,0.791944,0.0225507,0.898859,0.952703,0.166463,0.607931,0.235728,0.203771,0.147614,0.946045,0.998866,0.483356,0.527149,0.0107421,0.141411,0.259466,0.833037,0.497906,0.404017,0.532846,0.623926,0.467702,0.160462,0.552099,0.280528,0.919566,0.792015,0.385739,0.582398,0.84558,0.78225,0.627829,0.962881,0.224922,0.213024,0.93081,0.347726,0.108214,0.133007,0.61577,0.888653,0.593792,0.117119,0.406406,0.869324,0.463181,0.579635,0.877811,0.110569,0.231701,0.484514,0.173412,0.0464733,0.33523,0.0960912,0.602936,0.66246,0.473552,0.522157,0.266137,0.43404,0.307065,0.435047,0.395096,0.504418,0.593675,0.782505,0.800506,0.75869,0.446666,0.587079,0.10856,0.895746,0.523116,0.561666,0.0453125,0.726993,0.452507,0.164107,0.663773,0.06263,0.98492,0.461352,0.304169,0.536505,0.0685779,0.674308,0.817867,0.142359,0.740617,0.0492174,0.962254,0.237344,0.598692,0.294199,0.298351,0.552225,0.944646,0.540352,0.714204,0.60377,0.45836,0.0999889,0.484369,0.306184,0.772295,0.824584,0.342256,0.781713,0.621746,0.253529,0.215019,0.462287,0.416125,0.876897,0.932538,0.0747434,0.824379,0.201912,0.201344,0.0924879,0.83897,0.684033,0.817494,0.605756,0.998413,0.546564,0.942003,0.978255,0.205112,0.569729,0.368872,0.368754,0.672655,0.7672,0.126307,0.0740795,0.594331,0.138374,0.966784,0.0292343,0.268656,0.247474,0.631823,0.498829,0.0459427,0.234796,0.297977,0.389922,0.546753,0.00479072,0.587829,0.15146,0.846161,0.893043,0.976106,0.718025,0.232292,0.670044,0.910053,0.744436,0.406595,0.0873542,0.407712,0.847638,0.588395,0.986145,0.0935139,0.537114,0.62784,0.57414,0.316303,0.0276083,0.999144,0.123217,0.127747,0.538507,0.913707,0.159983,0.66003,0.469567,0.980106,0.580484,0.833342,0.266887,0.97207,0.110845,0.849908,0.766417,0.473,0.440087,0.614573,0.646045,0.22677,0.276147,0.0979447,0.676359,0.465867,0.881875,0.178852,0.417609,0.961524,0.527606,0.821075,0.467692,0.34869,0.29216,0.392157,0.343858,0.986401,0.273291,0.0625137,0.281617,0.69122,0.283641,0.278947,0.354301,0.173451,0.592151,0.00606775,0.542738,0.631654,0.0296121,0.0113366,0.381347,0.395436,0.373343,0.511364,0.761101,0.00107443,0.320354,0.454477,0.126577,0.593306,0.72288,0.126732,0.638913,0.663484,0.71212,0.646146,0.389843,0.184956,0.0991266,0.27345,0.432305,0.28236,0.183087,0.858102,0.615708,0.163808,0.6026,0.919166,0.0278733,0.248348,0.115964,0.427616,0.146858,0.332891,0.986781,0.315992,0.393585,0.905184,0.10787,0.42717,0.459534,0.047502,0.790355,0.533236,0.530115,0.669632,0.776135,0.569025,0.325126,0.258779,0.470689,0.909353,0.42699,0.466029,0.122327,0.739851,0.388712,0.0880713,0.604836,0.908028,0.531226,0.941592,0.741395,0.0158638,0.446518,0.492584,0.630138,0.0259522,0.306476,0.566225,0.795852,0.170458,0.927777,0.369037,0.856904,0.0058468,0.777504,0.927354,0.577137,0.341601,0.649433,0.681099,0.627299,0.984426,0.547078,0.887365,0.681172,0.533049,0.469682,0.596188,0.0548041,0.982619,0.886553,0.654351,0.74739,0.482941,0.948612,0.856933,0.369693,0.633217,0.581111,0.756206,0.983876,0.0309834,0.700361,0.482085,0.280142,0.722363,0.619976,0.946827,0.499936,0.516766,0.745113,0.439753,0.5795,0.000968456,0.786962,0.952404,0.377658,0.6324,0.514799,0.82383,0.178083,0.980498,0.972309,0.957995,0.638191,0.939912,0.455868,0.527594,0.399624,0.388205,0.729091,0.22492,0.222529,0.522095,0.216603,0.382335,0.0106996,0.651916,0.770707,0.990203,0.178403,0.395927,0.44222,0.651815,0.613501,0.191322,0.251227,0.069673,0.0323811,0.922985,0.406063,0.869776,0.974088,0.92727,0.125093,0.575286,0.0844367,0.649233,0.0903426,0.13076,0.61979,0.471473,0.619195,0.549406,0.535132,0.291997,0.525563,0.605229,0.489348,0.936304,0.534948,0.552395,0.576054,0.969418,0.579872,0.0138013,0.0657049,0.170884,0.829111,0.180771,0.628896,0.274634,0.57914,0.183982,0.439366,0.968251,0.277656,0.137034,0.636102,0.85173,0.599935,0.784684,0.0680476,0.240264,0.468647,0.492831,0.790517,0.935579,0.588783,0.232451,0.479911,0.890341,0.647877,0.201072,0.622158,0.539302,0.114912,0.55999,0.453532,0.0495905,0.50948,0.79166,0.818225,0.651081,0.724426,0.39803,0.8914,0.948304,0.480761,0.188287,0.0268057,0.700472,0.685924,0.0420598,0.929036,0.924016,0.247972,0.359878,0.989465,0.848893,0.626128,0.46849,0.0403397,0.174081,0.428854,0.447051,0.801367,0.397196,0.0434479,0.544625,0.478699,0.303625,0.325051,0.749166,0.952494,0.788129,0.196501,0.485725,0.228873,0.155244,0.21645,0.517816,0.45019,0.532047,0.0779125,0.785736,0.239008,0.500899,0.365512,0.661417,0.213928,0.228422,0.543524,0.885073,0.645264,0.151919,0.829251,0.848324,0.390579,0.705105,0.0986383,0.537789,0.700248,0.19211,0.913503,0.543157,0.775187,0.753171,0.933501,0.42006,0.223192,0.749018,0.104135,0.644509,0.0672065,0.216966,0.431053,0.413609,0.0975975,0.484577,0.712593,0.66167,0.383251,0.118394,0.508043,0.541853,0.452819,0.370531,0.358087,0.619468,0.767724,0.572273,0.780321,0.183091,0.777024,0.339013,0.644327,0.251222,0.224183,0.196971,0.614652,0.995875,0.419192,0.0259144,0.713501,0.304524,0.733867,0.0504023,0.245315,0.340728,0.861306,0.812777,0.708832,0.469259,0.0418274,0.407145,0.601832,0.435625,0.248461,0.110664,0.627082,0.208263,0.297849,0.098877,0.749518,0.680204,0.368804,0.636974,0.228707,0.615852,0.277939,0.875312,0.296235,0.0326765,0.970474,0.141521,0.534657,0.719432,0.738453,0.98214,0.49095,0.785659,0.474409,0.634613,0.351897,0.503345,0.204242,0.526533,0.0955147,0.215044,0.862108,0.343596,0.425623,0.810852,0.880594,0.384217,0.248601,0.876455,0.217771,0.281324,0.123957,0.568086,0.553402,0.944602,0.415712,0.508289,0.743724,0.374158,0.0567833,0.110176,0.856394,0.889327,0.625108,0.301613,0.49522,0.376105,0.759627,0.548792,0.991274,0.147668,0.408026,0.812029,0.787839,0.789965,0.540262,0.757102,0.999165,0.27569,0.874937,0.729611,0.413339,0.0361903,0.397214,0.995937,0.205294,0.388607,0.702201,0.812796,0.166416,0.273046,0.794616,0.0392736,0.693332,0.138643,0.886551,0.238547,0.509506,0.62141,0.409064,0.0799173,0.744341,0.998759,0.766349,0.989801,0.767002,0.681166,0.294448,0.659431,0.627287,0.5438,0.478455,0.151327,0.17858,0.928279,0.959453,0.319607,0.132039,0.153333,0.38565,0.00488758,0.308366,0.174792,0.545818,0.478401,0.48852,0.807516,0.696597,0.256606,0.615036,0.911672,0.892287,0.983642,0.715895,0.181651,0.746839,0.613643,0.537838,0.0149945,0.060441,0.819766,0.573353,0.597504,0.269518,0.400631,0.873045,0.461579,0.658111,0.430038,0.913304,0.252907,0.88654,0.355877,0.196342,0.914514,0.33837,0.363054,0.588614,0.0423803,0.814682,0.578507,0.145074,0.239471,0.168664,0.979137,0.249784,0.495502,0.252207,0.521345,0.694472,0.990442,0.475142,0.619472,0.48036,0.571994,0.425476,0.0923512,0.188753,0.358754,0.11138,0.702706,0.919701,0.574732,0.981326,0.941743,0.751929,0.127294,0.476512,0.0279686,0.445414,0.430663,0.968238,0.121632,0.509847,0.18203,0.131394,0.0326157,0.544593,0.275526,0.248817,0.960477,0.630991,0.917586,0.581315,0.488523,0.547891,0.761575,0.951911,0.919747,0.500516,0.524241,0.695184,0.464005,0.677739,0.422551,0.106881,0.937143,0.0944629,0.82083,0.139136,0.160014,0.889029,0.524376,0.894046,0.400242,0.492684,0.678982,0.841261,0.193408,0.735397,0.122712,0.879136,0.678945,0.406412,0.904319,0.273441,0.404179,0.754779,0.644389,0.814157,0.865726,0.395698,0.113803,0.88878,0.296513,0.416515,0.271105,0.203617,0.0803127,0.371359,0.72079,0.753462,0.843944,0.89307,0.213885,0.942547,0.968784,0.465919,0.527297,0.413841,0.851008,0.128188,0.534638,0.937015,0.408228,0.811484,0.685429,0.219886,0.645387,0.238031,0.508186,0.00835657,0.5017,0.955184,0.754645,0.429177,0.810362,0.89197,0.727259,0.602373,0.572292,0.57416,0.758904,0.661,0.616798,0.0829018,0.233724,0.885288,0.40072,0.140519,0.0794334,0.715848,0.118291,0.944749,0.972618,0.827347,0.825127,0.715155,0.788135,0.880612,0.80386,0.993171,0.670049,0.208973,0.569304,0.704098,0.43483,0.346525,0.1191,0.353441,0.438843,0.8501,0.282333,0.523557,0.859793,0.0511515,0.110204,0.222968,0.578697,0.19218,0.860773,0.119656,0.628819,0.522787,0.892531,0.444127,0.744259,0.461272,0.927134,0.97309,|0.890314,0.189757,0.560591,0.987038,0.590333,0.830599,0.339621,0.0147585,0.973076,0.28202,0.749076,0.886111,0.762195,0.982481,0.420666,0.882127,0.93291,0.143306,0.505765,0.0796869,0.745892,0.244342,0.899298,0.819071,0.334486,0.202542,0.92378,0.44357,0.0494755,0.27862,0.920088,0.777902,0.530877,0.118747,0.272381,0.00512207,0.644823,0.36399,0.0740042,0.317823,0.717816,0.0440947,0.608665,0.0770462,0.308423,0.500342,0.740073,0.50998,0.00850284,0.762407,0.144594,0.133543,0.104744,0.946909,0.0594213,0.174953,0.508518,0.0863014,0.637998,0.019292,0.39978,0.539072,0.405763,0.507716,0.18491,0.0143704,0.285505,0.905461,0.304497,0.156038,0.0562813,0.829593,0.583866,0.623137,0.854294,0.588251,0.762682,0.01673,0.785353,0.863439,0.235445,0.673569,0.910594,0.59904,0.300955,0.44592,0.12844,0.714543,0.609463,0.867541,0.477127,0.33222,0.113595,0.164226,0.849719,0.902817,0.159992,0.802399,0.0365698,0.228012,0.521617,0.363837,0.24408,0.852283,0.469929,0.288882,0.914181,0.0646559,0.659912,0.901231,0.772552,0.588577,0.642386,0.795193,0.15842,0.593873,0.00589943,0.948157,0.197222,0.761466,0.205922,0.154096,0.71213,0.623669,0.947777,0.568841,0.20374,0.675025,0.180579,0.65506,0.536155,0.474713,0.733556,0.817533,0.397952,0.322771,0.621191,0.621891,0.0300826,0.532857,0.815974,0.00530708,0.410868,0.0247293,0.555361,0.410621,0.96252,0.720846,0.33793,0.556246,0.52505,0.308565,0.671048,0.367377,0.595858,0.882513,0.335189,0.845929,0.27652,0.600814,0.501899,0.544869,0.179782,0.882175,0.0785308,0.116773,0.192537,0.379976,0.404755,0.517195,0.337856,0.0189855,0.546648,0.0118234,0.556858,0.0771793,0.949489,0.584076,0.694623,0.875002,0.654149,0.703049,0.0180773,0.964463,0.998274,0.491818,0.612384,0.454599,0.659105,0.68189,0.477702,0.308841,0.393996,0.533829,0.375261,0.442698,0.889657,0.587778,0.89777,0.273589,0.816683,0.307576,0.484363,0.480829,0.893177,0.852148,0.395193,0.0100345,0.576712,0.890397,0.847215,0.737121,0.309149,0.235619,0.881851,0.371573,0.815743,0.913645,0.468755,0.781988,0.159851,0.048112,0.767824,0.0846999,0.63802,0.392883,0.206352,0.167105,0.787739,0.983654,0.0688019,0.453219,0.270906,0.411147,0.633408,0.796005,0.807143,0.347515,0.907776,0.411129,0.880094,0.696496,0.777297,0.29101,0.815083,0.380571,0.371461,0.860675,0.768489,0.968997,0.124387,0.970258,0.777745,0.992103,0.0145663,0.381329,0.922059,0.843115,0.92104,0.113262,0.955136,0.53303,0.585232,0.385173,0.546787,0.887813,0.706501,0.79455,0.191494,0.402397,0.541658,0.417608,0.806869,0.180858,0.226574,0.00330442,0.999761,0.940885,0.122084,0.130518,0.663717,0.366482,0.181093,0.360089,0.73664,0.862066,0.258494,0.599094,0.457496,0.668029,0.958133,0.634966,0.316583,0.56383,0.152571,0.790303,0.897755,0.600006,0.363034,0.240624,0.869725,0.547525,0.693661,0.952684,0.508637,0.938908,0.916185,0.264349,0.869355,0.0739134,0.894927,0.957384,0.775849,0.212193,0.714306,0.319159,0.657276,0.0439938,0.320524,0.911356,0.877966,0.888329,0.758144,0.671603,0.690876,0.833161,0.0101412,0.659501,0.816349,0.186546,0.452324,0.675738,0.772577,0.705092,0.225592,0.07341,0.293165,0.697137,0.827483,0.574773,0.163611,0.674569,0.748299,0.966547,0.500782,0.713891,0.139834,0.611454,0.0851344,0.0229531,0.438158,0.0813233,0.23303,0.421926,0.134727,0.385662,0.107034,0.613997,0.0522277,0.31701,0.0314443,0.280571,0.294931,0.0233612,0.905113,0.222727,0.732046,0.474937,0.802426,0.147254,0.272335,0.0851694,0.0798781,0.984623,0.268047,0.125186,0.383437,0.464918,0.895304,0.774485,0.12021,0.936095,0.621519,0.38786,0.905093,0.206744,0.844757,0.0508232,0.025092,0.758913,0.757478,0.120514,0.898784,0.577883,0.662433,0.85474,0.837213,0.82935,0.431089,0.49313,0.24913,0.165147,0.0914226,0.189295,0.620282,0.568401,0.952266,0.77292,0.503892,0.8576,0.614443,0.774969,0.350447,0.163222,0.908232,0.939415,0.930905,0.20558,0.512678,0.476883,0.935813,0.858582,0.811628,0.378786,0.0631732,0.663998,0.535949,0.126924,0.953128,0.259936,0.360796,0.76058,0.220627,0.804979,0.159286,0.0827248,0.132628,0.139778,0.226014,0.575964,0.315258,0.128177,0.441359,0.777204,0.212799,0.189524,0.906282,0.636245,0.827896,0.930793,0.30874,0.563452,0.508748,0.24802,0.7926,0.465047,0.0393795,0.657158,0.380295,0.329262,0.556404,0.88806,0.181263,0.116213,0.863319,0.436464,0.1546,0.148809,0.832645,0.689389,0.856039,0.597403,0.293524,0.0107871,0.401239,0.331502,0.417736,0.689874,0.293828,0.859094,0.200699,0.525405,0.820548,0.982084,0.415376,0.7908,0.350407,0.551019,0.808334,0.785294,0.791256,0.924389,0.105703,0.474012,0.515806,0.547033,0.319776,0.317488,0.0963025,0.287951,0.40572,0.758572,0.679994,0.942879,0.283731,0.652503,0.504273,0.327106,0.667218,0.934033,0.638162,0.230657,0.758435,0.210501,0.523726,0.219388,0.335406,0.891607,0.905163,0.320693,0.363611,0.956346,0.602913,0.509879,0.733602,0.871867,0.208185,0.27268,0.667853,0.914824,0.465661,0.195653,0.160154,0.682027,0.438095,0.960259,0.890454,0.796496,0.395007,0.392419,0.721384,0.877919,0.0486643,0.717657,0.00477946,0.691598,0.715171,0.0973701,0.159705,0.707643,0.779882,0.495858,0.987886,0.786701,0.315569,0.85998,0.609456,0.157978,0.0108028,0.791521,0.593696,0.35381,0.337794,0.382944,0.923347,0.249338,0.565077,0.034408,0.158991,0.629459,0.136376,0.661516,0.894489,0.0879626,0.211475,0.657166,0.2609,0.959517,0.524073,0.501207,0.615508,0.330708,0.652075,0.0253915,0.444187,0.462973,0.876967,0.5664,0.886152,0.195588,0.139137,0.900548,0.730729,0.119473,0.174421,0.986607,0.239977,0.797573,0.453197,0.554561,0.454724,0.928967,0.745976,0.9897,0.0249278,0.0308437,0.994362,0.781871,0.213256,0.555169,0.476654,0.456586,0.265648,0.440822,0.497557,0.503222,0.655993,0.94665,0.765234,0.243954,0.862718,0.971503,0.56293,0.0155324,0.545735,0.733341,0.404092,0.107953,0.968544,0.772012,0.393493,0.990402,0.00810069,0.800038,0.0450086,0.2175,0.376895,0.250097,0.326905,0.285493,0.258595,0.680512,0.304727,0.209704,0.349704,0.394568,0.560975,0.37361,0.155132,0.992164,0.84,0.497104,0.137423,0.896839,0.24006,0.0840646,0.797386,0.889469,0.661019,0.315542,0.243189,0.61275,0.356024,0.71354,0.640531,0.096737,0.238716,0.558892,0.908735,0.661085,0.460742,0.865943,0.736481,0.864585,0.257259,0.226459,0.530086,0.0401006,0.750723,0.235396,0.388243,0.0822614,0.706562,0.468729,0.140393,0.207453,0.957388,0.637201,0.139854,0.381696,0.360907,0.415934,0.151623,0.334891,0.476439,0.697109,0.342442,0.213263,0.83208,0.518037,0.465167,0.302627,0.893529,0.113488,0.268133,0.491364,0.0637335,0.508671,0.472105,0.241141,0.343765,0.0328156,0.588203,0.907486,0.919057,0.0306093,0.165248,0.945862,0.799319,0.535912,0.733377,0.676742,0.0456337,0.0610259,0.372467,0.719971,0.47666,0.924945,0.54867,0.503001,0.249399,0.0249528,0.731603,0.267492,0.959556,0.559663,0.564127,0.661297,0.875578,0.847257,0.77953,0.48628,0.732704,0.491451,0.710959,0.428991,0.807646,0.0995818,0.191469,0.743407,0.650199,0.408811,0.0766677,0.00950336,0.461552,0.918242,0.673373,0.614954,0.728876,0.928649,0.646217,0.0674006,0.717646,0.879657,0.658117,0.142886,0.49674,0.739083,0.330491,0.917108,0.246367,0.0611334,0.644006,0.390969,0.941973,0.129306,0.23439,0.00997567,0.163433,0.867373,0.374078,0.970309,0.1634,0.509981,0.0166416,0.266479,0.209334,0.64604,0.660553,0.430218,0.62852,0.271255,0.464644,0.587995,0.29977,0.848297,0.994166,0.915652,0.177275,0.172917,0.753797,0.887715,0.128977,0.751454,0.00295836,0.807545,0.191113,0.314915,0.253124,0.462015,0.283184,0.184843,0.0497388,0.9008,0.613367,0.411057,0.725154,0.907762,0.254341,0.841749,0.23863,0.996159,0.61699,0.185097,0.776689,0.0604056,0.23817,0.710839,0.560671,0.49976,0.0890062,0.199963,0.221467,0.0548688,0.580229,0.917532,0.102304,0.331525,0.0334343,0.571255,0.126044,0.852668,0.856345,0.241418,0.750254,0.570777,0.150524,0.949134,0.203299,0.261119,0.533101,0.250246,0.674586,0.326038,0.77717,0.681525,0.220222,0.75144,0.473152,0.299001,0.613956,0.419185,0.465652,0.690503,0.167108,0.0454988,0.0850879,0.520976,0.772637,0.395166,0.408749,0.971439,0.602637,0.613409,0.154683,0.644513,0.42459,0.00607675,0.506764,0.212284,0.983479,0.00822324,0.504363,0.591853,0.804553,0.0741639,0.350173,0.0317205,0.372942,0.0773826,0.345933,0.975047,0.505304,0.452156,0.285837,0.387752,0.494428,0.0378257,0.566559,0.647,0.885574,0.334013,0.644287,0.94228,0.490106,0.498873,0.360456,0.957226,0.303877,0.181088,0.363501,0.612589,0.143653,0.561901,0.570319,0.355582,0.160881,0.166652,0.472915,0.013603,0.378722,0.181343,0.772482,0.383498,0.617149,0.418131,0.948518,0.869057,0.842135,0.105018,0.197458,0.509694,0.823426,0.239072,0.69253,0.194004,0.714591,0.466273,0.0617621,0.611109,0.27724,0.416118,0.673451,0.24308,0.282774,0.322024,0.0186221,0.61976,0.0661353,0.601942,0.286282,0.356461,0.502115,0.520108,0.43302,0.0310906,0.934169,0.529896,0.547427,0.75001,0.200381,0.127301,0.263952,0.931962,0.297047,0.893843,0.784936,0.367035,0.22577,0.685859,0.982787,0.935085,0.341019,0.487307,0.955054,0.951393,0.803481,0.022339,0.451895,0.593418,0.0225898,0.609937,0.434136,0.516235,0.728592,0.00738668,0.885442,0.246573,0.98562,0.171693,0.341932,0.737601,0.395996,0.772274,0.901139,0.401915,0.963735,0.666913,0.430929,0.719149,|0.609644,0.279288,0.172953,0.733039,6.56843e-05,0.925212,0.431238,0.616318,0.354142,0.641914,0.608154,0.93624,0.0125426,0.181394,0.805345,0.632527,0.0906533,0.854151,0.562469,0.196562,0.432191,0.308394,0.338791,0.14118,0.292401,0.655904,0.232193,0.908105,0.19201,0.315342,0.925928,0.296099,0.577794,0.161528,0.567312,0.660926,0.776756,0.411872,0.567507,0.791309,0.0168949,0.585302,0.0729094,0.736678,0.585519,0.703665,0.454642,0.0838787,0.218552,0.44255,0.550236,0.857037,0.253365,0.861317,0.500889,0.806955,0.717452,0.291847,0.312278,0.636666,0.464402,0.879266,0.831172,0.131779,0.693023,0.588059,0.431202,0.484983,0.370568,0.511353,0.915061,0.0649719,0.370545,0.743509,0.914325,0.565629,0.938614,0.595086,0.0692817,0.746431,0.76815,0.49414,0.833357,0.0100647,0.488429,0.613749,0.314234,0.381866,0.674142,0.874047,0.730856,0.0457582,0.937591,0.79231,0.520034,0.768876,0.122867,0.213462,0.681897,0.686039,0.132752,0.299365,0.2542,0.680383,0.0976134,0.000968635,0.347331,0.225424,0.779566,0.397639,0.908282,0.718965,0.183529,0.304495,0.816033,0.140911,0.79177,0.725421,0.330102,0.192598,0.860581,0.821731,0.234564,0.572137,0.784705,0.0707306,0.565534,0.495905,0.656719,0.840665,0.598943,0.950816,0.48002,0.697508,0.686524,0.22678,0.337168,0.192533,0.0485927,0.693226,0.371144,0.0914734,0.703641,0.305907,0.0694453,0.161296,0.210141,0.166452,0.0498156,0.0622771,0.266159,0.677334,0.756831,0.437324,0.328243,0.687441,0.263527,0.910974,0.00516176,0.336798,0.989783,0.216418,0.717716,0.359268,0.722882,0.876006,0.00440025,0.721211,0.908146,0.455302,0.574183,0.59603,0.561638,0.0792171,0.054051,0.512656,0.0910897,0.620113,0.357548,0.346195,0.380411,0.577564,0.577046,0.909089,0.631457,0.663947,0.966227,0.645815,0.593908,0.0496242,0.939814,0.581236,0.958033,0.400828,0.147162,0.271097,0.587468,0.439636,0.531865,0.501522,0.367559,0.424602,0.107159,0.904112,0.309903,0.735239,0.211491,0.406088,0.324105,0.0733243,0.87709,0.302986,0.450763,0.632155,0.982653,0.514822,0.319456,0.805329,0.0344247,0.674919,0.0947846,0.735193,0.620123,0.20908,0.972459,0.046494,0.131019,0.158412,0.688528,0.121779,0.861379,0.696585,0.559276,0.823684,0.773172,0.0886773,0.436649,0.941204,0.624893,0.998568,0.185058,0.388714,0.29684,0.503681,0.00937933,0.967654,0.323798,0.41849,0.292804,0.490846,0.425157,0.548642,0.599315,0.807411,0.913234,0.747092,0.292078,0.464848,0.0532107,0.445795,0.558751,0.3596,0.880183,0.00300092,0.431527,0.0752704,0.320575,0.819391,0.13881,0.443891,0.962395,0.123631,0.617609,0.752832,0.860261,0.017992,0.195696,0.257506,0.226026,0.584174,0.744894,0.918348,0.767457,0.165837,0.769916,0.84026,0.823659,0.907575,0.656316,0.54267,0.671801,0.428848,0.438213,0.419755,0.473559,0.51645,0.255403,0.0113722,0.144713,0.36599,0.0359653,0.939569,0.0271623,0.193711,0.843946,0.984596,0.349872,0.167056,0.11848,0.317992,0.339348,0.416503,0.343554,0.620478,0.177192,0.706738,0.219496,0.631461,0.317359,0.473476,0.773886,0.432386,0.38921,0.00173086,0.521805,0.283916,0.95519,0.398236,0.40596,0.872776,0.0133955,0.614098,0.932465,0.110475,0.6496,0.665732,0.0160465,0.580678,0.171803,0.586654,0.110457,0.410151,0.847438,0.795111,0.800526,0.586771,0.185357,0.607066,0.20774,0.799491,0.831814,0.885127,0.534739,0.172192,0.336357,0.609193,0.0134411,0.461909,0.0765265,0.430486,0.321232,0.822537,0.979958,0.160978,0.987466,0.0319005,0.694637,0.765819,0.0616879,0.0723206,0.341597,0.438043,0.206038,0.185397,0.731777,0.6598,0.73956,0.140807,0.904658,0.204643,0.853818,0.337264,0.0416893,0.277811,0.721412,0.156173,0.733014,0.211054,0.582259,0.57099,0.175221,0.768857,0.760241,0.751615,0.614472,0.50877,0.212225,0.999292,0.251142,0.407452,0.640906,0.898254,0.709321,0.454192,0.355569,0.939342,0.781325,0.941475,0.815545,0.092495,0.521621,0.467579,0.369333,0.489503,0.404523,0.469643,0.779594,0.00972492,0.498703,0.0855353,0.520625,0.877924,0.895982,0.424368,0.909443,0.178344,0.118237,0.508697,0.242797,0.759008,0.826479,0.505268,0.385965,0.191088,0.459092,0.446467,0.888835,0.63275,0.983869,0.634584,0.96038,0.13467,0.922633,0.178392,0.448139,0.13495,0.768573,0.307751,0.715337,0.629575,0.928151,0.756466,0.830509,0.986993,0.93198,0.153365,0.20654,0.663291,0.00306648,0.579698,0.393497,0.543131,0.162781,0.681015,0.911932,0.545218,0.653374,0.0345273,0.0553904,0.53162,0.535632,0.532303,0.631151,0.4399,0.607481,0.019713,0.778566,0.922721,0.293535,0.32979,0.246151,0.496917,0.409104,0.451321,0.110814,0.71667,0.223625,0.652197,0.912391,0.793263,0.145939,0.680931,0.989223,0.578663,0.641635,0.847281,0.898204,0.49151,0.401313,0.738166,0.549568,0.346813,0.346693,0.0889277,0.193189,0.0171114,0.656792,0.0923974,0.884737,0.836239,0.195329,0.0575181,0.630871,0.842883,0.0855089,0.244081,0.690051,0.496818,0.423419,0.0857788,0.483921,0.294271,0.249607,0.664614,0.254297,0.205788,0.570298,0.289505,0.888738,0.382239,0.100189,0.212479,0.63965,0.673087,0.573114,0.55845,0.712952,0.690852,0.813595,0.386387,0.72652,0.990313,0.656052,0.88758,0.535392,0.659925,0.160131,0.447551,0.365498,0.237366,0.198653,0.804323,0.12037,0.802601,0.332851,0.405351,0.298816,0.353875,0.785301,0.120154,0.561414,0.760359,0.17631,0.710813,0.395985,0.121423,0.384545,0.747248,0.375502,0.0596506,0.340536,0.814318,0.838591,0.692726,0.352246,0.160427,0.547316,0.834345,0.195362,0.0867299,0.488219,0.761724,0.748087,0.38728,0.977873,0.326641,0.810843,0.135385,0.325033,0.106011,0.932878,0.978363,0.217514,0.694006,0.164478,0.218934,0.110827,0.0679442,0.545811,0.413556,0.187726,0.383914,0.228009,0.686079,0.862857,0.31585,0.376849,0.468251,0.05475,0.620997,0.0346711,0.636257,0.697123,0.910048,0.339133,0.930436,0.136697,0.386397,0.539154,0.716215,0.508792,0.0664381,0.415373,0.469352,0.57918,0.381472,0.747005,0.93951,0.659774,0.661702,0.444404,0.664497,0.44509,0.953602,0.402761,0.538867,0.129969,0.759415,0.519545,0.0730593,0.421861,0.274709,0.848569,0.925134,0.946614,0.74942,0.318502,0.602466,0.253229,0.60506,0.851283,0.467821,0.927165,0.349621,0.215079,0.243019,0.335432,0.291322,0.260723,0.132733,0.496411,0.331004,0.898755,0.000722587,0.300923,0.373389,0.983319,0.262221,0.919105,0.824677,0.750054,0.0883226,0.904642,0.658727,0.365037,0.905932,0.564018,0.478532,0.0628937,0.105214,0.719767,0.560956,0.158812,0.362838,0.2313,0.136581,0.0538132,0.935718,0.460054,0.469242,0.65136,0.474208,0.387518,0.561808,0.663799,0.851437,0.31729,0.548314,0.78414,0.411212,0.0191383,0.920821,0.543186,0.832389,0.324713,0.0135146,0.121047,0.026063,0.971126,0.23946,0.088959,0.947643,0.172599,0.0539009,0.0540741,0.538816,0.65416,0.696487,0.505042,0.449424,0.299108,0.352335,0.409254,0.421701,0.847463,0.975091,0.43646,0.977488,0.527232,0.476142,0.816469,0.355847,0.284723,0.932876,0.379062,0.596896,0.296308,0.638735,0.0453964,0.56194,0.0345322,0.396188,0.378594,0.858954,0.121859,0.0331613,0.57832,0.433903,0.508725,0.884924,0.664201,0.844863,0.239229,0.000854254,0.132347,0.544438,0.837277,0.769644,0.649844,0.749308,0.478536,0.0280561,0.33377,0.801359,0.549645,0.396979,0.0244688,0.312169,0.110442,0.183511,0.365612,0.186863,0.850452,0.753723,0.268406,0.447163,0.439442,0.929864,0.689123,0.389316,0.236105,0.998758,0.0646139,0.0239665,0.763472,0.806298,0.706194,0.200602,0.258124,0.540847,0.256954,0.619281,0.970422,0.199455,0.362109,0.752127,0.415788,0.0238724,0.347295,0.296413,0.866286,0.345997,0.823015,0.731414,0.694309,0.0787972,0.971962,0.0852977,0.740538,0.331585,0.877591,0.285429,0.535891,0.492794,0.815562,0.969533,0.0224702,0.582217,0.139295,0.648355,0.931976,0.43754,0.690135,0.3608,0.066337,0.570877,0.944289,0.108556,0.183806,0.906355,0.51908,0.247561,0.105145,0.0487507,0.325194,0.0245062,0.867959,0.527095,0.301726,0.809337,0.832259,0.891938,0.796444,0.244899,0.595751,0.0599137,0.631138,0.722134,0.83877,0.0955372,0.280132,0.898359,0.154291,0.00428057,0.423704,0.13385,0.630638,0.456334,0.308413,0.882632,0.676457,0.971053,0.675242,0.261107,0.340422,0.934252,0.406322,0.704004,0.408382,0.288893,0.395075,0.847565,0.0986105,0.741184,0.31493,0.373978,0.745952,0.727179,0.484177,0.335284,0.0915278,0.875253,0.221333,0.00150913,0.0575452,0.057373,0.943368,0.441205,0.641807,0.638738,0.634227,0.341046,0.764677,0.803996,0.744541,0.715885,0.677744,0.990547,0.891318,0.022895,0.711688,0.880201,0.247106,0.970203,0.426343,0.282742,0.124303,0.177444,0.165867,0.119274,0.595241,0.137715,0.688863,0.280158,0.597834,0.182417,0.50794,0.149778,0.977602,0.10041,0.849344,0.106167,0.25358,0.0758489,0.0161289,0.56287,0.746716,0.940619,0.314009,0.748877,0.854269,0.103173,0.811708,0.974888,0.602091,0.211507,0.359815,0.363413,0.517368,0.643867,0.632152,0.233705,0.760608,0.269432,0.887191,0.049002,0.188721,0.881022,0.447374,0.264986,0.288186,0.829233,0.900444,0.81613,0.70613,0.52295,0.746735,0.111431,0.600471,0.465742,0.0777521,0.342819,0.917989,0.904959,0.288851,0.286978,0.100341,0.978014,0.620302,0.918349,0.202686,0.197938,0.0145958,0.368124,0.537417,0.798268,0.737967,0.062642,0.659448,0.144085,0.934717,0.617996,0.638743,0.579623,0.428404,0.981863,0.451286,0.799943,0.543501,0.71246,0.267229,0.695992,0.555663,0.332412,0.990839,0.489041,0.991421,0.0350482,0.420198,0.615585,|0.196048,0.82095,0.597694,0.819908,0.797883,0.809413,0.12402,0.833555,0.462187,0.251194,0.863553,0.698467,0.257361,0.221637,0.818561,0.01241,0.999014,0.366753,0.239919,0.44591,0.574198,0.627255,0.674413,0.282098,0.719645,0.458113,0.0120307,0.748658,0.637976,0.508956,0.0219547,0.835925,0.640567,0.539784,0.241567,0.772483,0.267033,0.877371,0.371392,0.295017,0.179184,0.568691,0.372083,0.0809537,0.053543,0.057911,0.465268,0.179207,0.797907,0.953909,0.446228,0.217312,0.00177008,0.0629112,0.61852,0.492373,0.708374,0.967412,0.0535905,0.247907,0.485691,0.129613,0.133383,0.66171,0.07964,0.252957,0.400471,0.789053,0.760576,0.291483,0.369876,0.0321214,0.772008,0.718671,0.864689,0.703676,0.50778,0.285658,0.842308,0.480251,0.725431,0.62688,0.583218,0.698254,0.869686,0.842751,0.0874355,0.937834,0.792569,0.50686,0.952886,0.105279,0.601912,0.0509609,0.257243,0.323501,0.0324616,0.55493,0.462869,0.32248,0.38899,0.316735,0.314231,0.991093,0.362526,0.866092,0.201493,0.816289,0.217687,0.653566,0.647408,0.350914,0.127689,0.355661,0.592836,0.252193,0.708574,0.653482,0.0696184,0.966663,0.150672,0.854018,0.36554,0.969965,0.810995,0.869287,0.540479,0.647654,0.5704,0.649973,0.560918,0.359409,0.567336,0.502154,0.851689,0.932927,0.00887036,0.282706,0.769104,0.362794,0.566959,0.140033,0.199768,0.338394,0.732544,0.152533,0.274355,0.45514,0.318336,0.251157,0.476335,0.361022,0.138665,0.432212,0.923684,0.251035,0.059096,0.631492,0.547567,0.719285,0.211994,0.65105,0.339254,0.670705,0.95176,0.582557,0.53175,0.266014,0.261159,0.392726,0.0478675,0.57053,0.117802,0.381313,0.145135,0.624007,0.705065,0.809038,0.847972,0.563609,0.983474,0.0682915,0.322669,0.11755,0.22068,0.763901,0.121007,0.0372921,0.293428,0.488428,0.220616,0.157668,0.514894,0.0971558,0.612549,0.0775737,0.719552,0.44212,0.430358,0.71121,0.169542,0.738399,0.770407,0.1606,0.734557,0.797656,0.673146,0.941278,0.966288,0.954882,0.949053,0.109475,0.0107149,0.179587,0.997887,0.315551,0.92114,0.194791,0.728202,0.75761,0.425491,0.150616,0.472258,0.834024,0.726161,0.216131,0.00552475,0.227663,0.40648,0.706804,0.311942,0.989967,0.530559,0.073167,0.165117,0.0138833,0.810212,0.671341,0.375318,0.57074,0.289011,0.469087,0.265757,0.658282,0.696315,0.38552,0.0197477,0.680039,0.149604,0.58465,0.358773,0.206462,0.0331887,0.470138,0.13656,0.219472,0.834,0.807881,0.211469,0.759823,0.563342,0.144075,0.865417,0.354801,0.575437,0.390598,0.234958,0.311028,0.550324,0.784157,0.187698,0.615576,0.368474,0.596193,0.936184,0.848225,0.922365,0.689553,0.376486,0.772635,0.707474,0.206214,0.166627,0.619909,0.0156274,0.113782,0.270061,0.350814,0.636712,0.661374,0.859172,0.489769,0.372492,0.884164,0.559237,0.463033,0.905026,0.454923,0.930803,0.426709,0.710072,0.546179,0.123386,0.824162,0.457241,0.983058,0.930666,0.000193536,0.957347,0.610674,0.95659,0.184208,0.729817,0.360485,0.0494174,0.378509,0.26665,0.475528,0.667848,0.0257267,0.130612,0.197307,0.35141,0.763818,0.524953,0.27848,0.533206,0.675903,0.104227,0.193333,0.231654,0.618772,0.833001,0.619276,0.814092,0.65396,0.805244,0.805888,0.539111,0.59604,0.723468,0.303288,0.0980951,0.555519,0.699417,0.668784,0.159191,0.313821,0.45825,0.180385,0.179819,0.588669,0.955334,0.123377,0.360163,0.415278,0.37905,0.295479,0.942191,0.953053,0.856531,0.848458,0.226001,0.335159,0.656755,0.333273,0.0732651,0.48573,0.0230474,0.87452,0.930795,0.483527,0.44151,0.616637,0.787967,0.873924,0.292846,0.937465,0.18197,0.00803214,0.341219,0.163016,0.383339,0.980939,0.786446,0.377093,0.783568,0.489432,0.809063,0.0461016,0.46699,0.49444,0.144109,0.607199,0.132373,0.967896,0.295689,0.0397705,0.669781,0.547739,0.0108019,0.23189,0.782841,0.716222,0.739884,0.0475345,0.45949,0.275201,0.448214,0.720918,0.98542,0.634028,0.369752,0.542194,0.0236295,0.358786,0.13981,0.316187,0.483469,0.821457,0.225518,0.00201291,0.0544651,0.375965,0.522562,0.0483401,0.997331,0.262617,0.266056,0.97284,0.0940035,0.0407631,0.193514,0.107199,0.625918,0.994732,0.461461,0.51323,0.0936457,0.788606,0.820781,0.266431,0.0944194,0.347798,0.34636,0.580062,0.637698,0.418991,0.31377,0.346764,0.854079,0.388659,0.560612,0.963976,0.551432,0.232616,0.30563,0.991203,0.361745,0.0812364,0.313982,0.917709,0.363218,0.442251,0.868594,0.575218,0.636905,0.280147,0.89117,0.743179,0.812641,0.470169,0.752429,0.0603241,0.808553,0.579201,0.996573,0.0907277,0.799159,0.392656,0.622579,0.967173,0.818055,0.886081,0.385379,0.869455,0.408876,0.93801,0.937083,0.96322,0.66569,0.00459266,0.707506,0.379186,0.496446,0.813087,0.557995,0.355401,0.426054,0.525419,0.803566,0.365476,0.710835,0.648888,0.392866,0.4742,0.180299,0.0344267,0.324595,0.60789,0.998666,0.319684,0.825213,0.685222,0.238544,0.869451,0.381133,0.454441,0.113731,0.375554,0.822711,0.517732,0.926219,0.630356,0.61371,0.371355,0.160868,0.747139,0.908088,0.755126,0.717359,0.880016,0.580792,0.747138,0.626955,0.0565165,0.0564126,0.883399,0.121709,0.577177,0.446563,0.748174,0.651962,0.64317,0.558342,0.611995,0.349528,0.00153285,0.0664709,0.926612,0.103203,0.968692,0.893467,0.197049,0.342136,0.713215,0.179564,0.991804,0.796981,0.758997,0.975235,0.932503,0.888069,0.921274,0.761858,0.829741,0.311,0.302331,0.684781,0.327358,0.785627,0.657173,0.05874,0.820883,0.363629,0.895903,0.347332,0.280685,0.166835,0.0911745,0.335918,0.0575989,0.751561,0.896317,0.777622,0.895734,0.511658,0.582123,0.886254,0.384584,0.669131,0.0925229,0.942458,0.557011,0.282042,0.556677,0.756177,0.822945,0.668525,0.504773,0.350195,0.76957,0.596981,0.526542,0.649033,0.040441,0.0829928,0.093251,0.937998,0.0749009,0.380139,0.299663,0.0166584,0.0447589,0.595404,0.35765,0.00183636,0.937564,0.594028,0.63137,0.11128,0.287195,0.427673,0.627505,0.247703,0.707017,0.52366,0.69216,0.428407,0.980536,0.410394,0.518406,0.0139278,0.203206,0.634466,0.667765,0.0501938,0.99445,0.84605,0.41309,0.546354,0.87089,0.61961,0.952376,0.631158,0.528237,0.412294,0.563896,0.170112,0.102515,0.373462,0.476516,0.143199,0.617318,0.397821,0.0439546,0.809439,0.702297,0.253292,0.588173,0.54842,0.857537,0.68801,0.845991,0.406932,0.952356,0.846468,0.867259,0.232064,0.567169,0.647069,0.13133,0.732003,0.663512,0.171951,0.406547,0.529738,0.503115,0.93623,0.44338,0.69831,0.48698,0.512222,0.722866,0.521309,0.692001,0.143486,0.137129,0.346109,0.131831,0.651913,0.00260371,0.0977206,0.283565,0.0272052,0.518354,0.587639,0.878701,0.357868,0.0882599,0.252866,0.970122,0.78683,0.651601,0.243639,0.195095,0.858749,0.500328,0.607322,0.999837,0.237725,0.685725,0.397909,0.998606,0.879263,0.690014,0.964723,0.830508,0.651982,0.533133,0.323372,0.295343,0.416484,0.333463,0.484188,0.645988,0.965855,0.950933,0.923958,0.815228,0.847708,0.00443739,0.341936,0.626128,0.76587,0.45821,0.507355,0.459912,0.158334,0.981272,0.753682,0.974274,0.291887,0.652775,0.26092,0.0712295,0.425212,0.891359,0.608309,0.518804,0.996472,0.374523,0.582145,0.926537,0.231028,0.787965,0.255489,0.280153,0.961073,0.652499,0.526896,0.37206,0.776236,0.0453494,0.972183,0.721493,0.0236564,0.776112,0.441131,0.226139,0.743148,0.0235322,0.568834,0.0948963,0.745826,0.455525,0.303536,0.420675,0.249391,0.387,0.205931,0.141802,0.780247,0.46517,0.852061,0.859645,0.399705,0.378198,0.227489,0.400147,0.440271,0.620192,0.319722,0.889135,0.565565,0.321961,0.741136,0.969211,0.53032,0.339886,0.884708,0.665149,0.253376,0.840733,0.846586,0.653279,0.412784,0.0297943,0.362332,0.251797,0.414488,0.354601,0.0200904,0.585253,0.934783,0.640944,0.0311774,0.967845,0.34223,0.35137,0.84473,0.578814,0.194129,0.298395,0.911454,0.280541,0.205094,0.0616468,0.00515473,0.217209,0.438173,0.190924,0.502334,0.629984,0.959787,0.110019,0.0714595,0.668277,0.886976,0.266073,0.2811,0.0499576,0.291511,0.478345,0.637396,0.0572156,0.654393,0.261578,0.38128,0.587868,0.913491,0.0811818,0.344294,0.522915,0.955615,0.394961,0.0976254,0.210305,0.285292,0.911623,0.693752,0.942346,0.591102,0.167839,0.238723,0.406031,0.421779,0.00472862,0.788955,0.689115,0.804365,0.651311,0.613955,0.504899,0.61756,0.0664189,0.958799,0.652475,0.767677,0.681806,0.628345,0.979738,0.461641,0.620642,0.330943,0.16678,0.632668,0.814481,0.549471,0.678174,0.838472,0.045899,0.379709,0.0179604,0.075522,0.931242,0.22457,0.469843,0.300035,0.253573,0.695024,0.414979,0.821632,0.430735,0.491852,0.674336,0.663125,0.121369,0.956115,0.340459,0.421718,0.595712,0.0422977,0.650772,0.526984,0.907515,0.894981,0.154969,0.501923,0.934141,0.860023,0.781868,0.878289,0.706684,0.827738,0.439105,0.881172,0.188017,0.477175,0.417805,0.811516,0.215233,0.654861,0.131889,0.134027,0.297764,0.0100226,0.508757,0.842027,0.269667,0.487901,0.706152,0.877251,0.501135,0.413873,0.705056,0.106883,0.412996,0.241893,0.135367,0.265806,0.0447612,0.99849,0.689152,0.571157,0.0523024,0.9517,0.677928,0.992264,0.381307,0.542996,0.339946,0.729452,0.0678208,0.115131,0.541788,0.192662,0.912574,0.539756,0.487537,0.28985,0.0228415,0.607153,0.543777,0.732855,0.195915,0.153629,0.519703,0.500096,0.385384,0.0147822,0.598982,0.613294,0.579916,0.795885,0.843851,0.428441,0.0441828,0.526771,0.887118,0.0962092,0.788862,0.210638,0.305457,0.236811,0.753158,0.833835,0.121224,0.271443,0.775717,|0.148224,0.624747,0.842933,0.0678988,0.0893385,0.769119,0.334603,0.217618,0.388144,0.754915,0.301307,0.944082,0.15462,0.0101806,0.11549,0.717553,0.779939,0.186142,0.322678,0.000656843,0.658768,0.595552,0.0802941,0.57369,0.563565,0.160074,0.294833,0.177866,0.144534,0.157607,0.0504075,0.522463,0.798205,0.770138,0.955223,0.186873,0.236714,0.550591,0.720993,0.896959,0.355019,0.29761,0.778065,0.114589,0.487138,0.220728,0.554373,0.949485,0.75069,0.872625,0.469371,0.735051,0.016056,0.930425,0.182344,0.843359,0.834604,0.826874,0.0384324,0.0322751,0.487291,0.490423,0.539213,0.0281433,0.167515,0.365882,0.487953,0.14394,0.919437,0.405161,0.0153791,0.387816,0.833419,0.219279,0.52822,0.0299796,0.67037,0.778471,0.0836008,0.0260318,0.0807227,0.158352,0.275785,0.731105,0.52842,0.299294,0.0891856,0.576303,0.578687,0.199457,0.504274,0.474685,0.332819,0.00332427,0.589101,0.430934,0.406991,0.679783,0.862653,0.0213875,0.400312,0.0259365,0.232875,0.629638,0.104447,0.954893,0.0355546,0.642872,0.656863,0.464831,0.056667,0.48868,0.536671,0.10703,0.0524619,0.493743,0.510245,0.970562,0.990287,0.0674748,0.998903,0.86349,0.664447,0.318779,0.0219765,0.869089,0.116308,0.355129,0.0214151,0.502775,0.183128,0.141292,0.749294,0.788078,0.410429,0.998713,0.57772,0.613892,0.0899078,0.253339,0.599594,0.956075,0.115995,0.881941,0.0797008,0.705459,0.974205,0.672348,0.442473,0.461626,0.473818,0.278146,0.75486,0.966151,0.788843,0.808113,0.175519,0.88192,0.0404806,0.957772,0.0689589,0.389073,0.961575,0.48955,0.922363,0.351712,0.692134,0.369942,0.602654,0.832932,0.875751,0.206981,0.983003,0.494131,0.472201,0.282136,0.964454,0.715288,0.852616,0.159254,0.212789,0.349879,0.721052,0.0297363,0.975826,0.472034,0.222431,0.683801,0.254807,0.847605,0.868295,0.344244,0.79987,0.581514,0.967117,0.884759,0.297087,0.781556,0.686039,0.328733,0.558599,0.51977,0.0182042,0.616118,0.907628,0.254836,0.978959,0.988247,0.787088,0.559385,0.249214,0.989141,0.332439,0.554019,0.0863544,0.824786,0.334044,0.0371539,0.840257,0.425515,0.813942,0.678832,0.759704,0.494366,0.375645,0.485,0.0766985,0.361303,0.96119,0.389556,0.438369,0.485862,0.608686,0.826444,0.174435,0.616576,0.182798,0.558259,0.867682,0.375455,0.93543,0.526448,0.866811,0.56542,0.546224,0.689055,0.271517,0.220867,0.0609267,0.465217,0.236845,0.443233,0.793116,0.744074,0.647217,0.799837,0.668309,0.650782,0.131329,0.502851,0.733214,0.783501,0.636054,0.597546,0.375833,0.04823,0.577387,0.26099,0.979109,0.776397,0.208041,0.898452,0.731225,0.523376,0.352363,0.217994,0.788432,0.192464,0.0165538,0.783737,0.979039,0.870305,0.208896,0.627129,0.0482503,0.409085,0.425746,0.830273,0.329002,0.0277357,0.0796303,0.980532,0.269117,0.0618588,0.462371,0.310128,0.483721,0.388443,0.993094,0.498389,0.601104,0.145099,0.812849,0.423258,0.624242,0.143374,0.0920747,0.305876,0.363702,0.253102,0.232893,0.525114,0.831066,0.283721,0.618955,0.28335,0.446137,0.566617,0.254889,0.086558,0.234558,0.780853,0.922542,0.738902,0.823944,0.290379,0.262767,0.102809,0.99628,0.794608,0.646324,0.0934389,0.337044,0.932314,0.305529,0.522896,0.495618,0.25244,0.836989,0.689638,0.146812,0.414206,0.816096,0.402042,0.166429,0.100565,0.889653,0.885271,0.752748,0.340009,0.328422,0.576251,0.951536,0.554264,0.733946,0.0421404,0.579617,0.0678631,0.671277,0.692921,0.537198,0.165658,0.84218,0.445585,0.191388,0.842955,0.0373989,0.240076,0.847709,0.330549,0.175411,0.913901,0.520926,0.391407,0.456831,0.802406,0.383413,0.266615,0.251859,0.0587882,0.322907,0.890227,0.880944,0.257262,0.441169,0.543525,0.240965,0.0102018,0.254102,0.241101,0.736954,0.184454,0.493259,0.125037,0.623736,0.586472,0.112078,0.830691,0.672443,0.438633,0.822248,0.907097,0.499156,0.0795452,0.635924,0.0370806,0.405705,0.314521,0.00824386,0.361384,0.448558,0.822958,0.711052,0.158095,0.490897,0.478215,0.496104,0.212175,0.843306,0.73972,0.654398,0.625357,0.641407,0.470999,0.728516,0.785138,0.0569921,0.0740284,0.796635,0.370586,0.960159,0.662388,0.709908,0.580477,0.703506,0.0317543,0.233831,0.601488,0.803941,0.054113,0.115761,0.205228,0.0861176,0.458164,0.0142784,0.0331075,0.586196,0.449437,0.810765,0.851603,0.0745718,0.11494,0.17648,0.847635,0.401225,0.278433,0.412018,0.733306,0.100703,0.48934,0.319866,0.886286,0.90067,0.43769,0.0128214,0.581314,0.600401,0.656202,0.882704,0.135265,0.496234,0.00443822,0.643906,0.505926,0.565094,0.161723,0.535137,0.205716,0.711687,0.258191,0.190505,0.204804,0.798266,0.869984,0.677724,0.779641,0.480902,0.258819,0.604435,0.282342,0.576985,0.510424,0.0792086,0.63359,0.171034,0.200075,0.429416,0.617905,0.444596,0.101558,0.545699,0.38147,0.164037,0.806642,0.663037,0.40433,0.506076,0.744297,0.735906,0.583401,0.889065,0.588526,0.0567695,0.127426,0.336433,0.413834,0.0727775,0.172916,0.272874,0.468959,0.137794,0.426105,0.417349,0.234304,0.838266,0.294339,0.342798,0.882843,0.0190647,0.57637,0.483961,0.146722,0.36413,0.402224,0.159024,0.373019,0.506039,0.586138,0.930451,0.0392777,0.370646,0.435766,0.240313,0.714848,0.828465,0.12551,0.821527,0.852658,0.994154,0.268844,0.94654,0.591276,0.0882983,0.273563,0.620468,0.20108,0.987803,0.211114,0.461736,0.683093,0.247251,0.621001,0.716442,0.99782,0.450415,0.549312,0.609235,0.632896,0.80512,0.300721,0.0162775,0.470681,0.506556,0.0185745,0.903368,0.219801,0.0632172,0.886563,0.401566,0.0826246,0.664014,0.581433,0.185541,0.0957485,0.556235,0.0028587,0.576647,0.80834,0.771776,0.705289,0.294433,0.535762,0.679492,0.390888,0.863438,0.545154,0.861796,0.279219,0.866716,0.0572273,0.0129644,0.912235,0.152504,0.918848,0.415915,0.45528,0.285743,0.569813,0.54016,0.0119079,0.158558,0.565534,0.910204,0.13924,0.672914,0.333731,0.254544,0.0553792,0.356085,0.40625,0.707563,0.436525,0.564286,0.350354,0.0880062,0.112266,0.844958,0.626585,0.482929,0.276903,0.307171,0.590586,0.833015,0.300294,0.812817,0.167949,0.11875,0.559548,0.993776,0.313233,0.874517,0.649409,0.755567,0.271787,0.71325,0.602177,0.106934,0.928769,0.738004,0.849277,0.849127,0.450695,0.0641571,0.926174,0.36684,0.787602,0.0848922,0.980116,0.412265,0.547017,0.139866,0.193779,0.550945,0.452064,0.667168,0.86618,0.0469058,0.104927,0.558981,0.45315,0.862621,0.554717,0.126725,0.526349,0.0973969,0.534169,0.930038,0.580729,0.204198,0.771867,0.496188,0.0654031,0.477973,0.489624,0.108637,0.570713,0.63305,0.517151,0.358108,0.154446,0.505696,0.59908,0.75165,0.835639,0.03057,0.647754,0.0784952,0.6223,0.853483,0.49522,0.137127,0.703814,0.54299,0.48105,0.70277,0.568718,0.533591,0.772651,0.685181,0.237706,0.681962,0.299883,0.51066,0.144385,0.487233,0.196049,0.87871,0.419834,0.411151,0.938253,0.779124,0.257572,0.752646,0.88801,0.305211,0.764479,0.715985,0.402043,0.859792,0.0368696,0.236701,0.795338,0.853061,0.167767,0.778027,0.603598,0.289573,0.232447,0.644508,0.612189,0.270535,0.113041,0.429305,0.822415,0.588757,0.298677,0.790136,0.701948,0.0283096,0.521839,0.579212,0.0584617,0.114306,0.986451,0.933741,0.928338,0.434235,0.851992,0.253857,0.579385,0.107188,0.858129,0.641797,0.509497,0.921183,0.924597,0.0499297,0.963525,0.597265,0.533147,0.0512488,0.333116,0.788082,0.830674,0.360815,0.788366,0.070332,0.679602,0.188367,0.0256891,0.533935,0.597512,0.584486,0.0836384,0.0397483,0.56767,0.832786,0.745481,0.0714191,0.0200986,0.154408,0.418695,0.286216,0.104348,0.312327,0.270558,0.353954,0.652467,0.94943,0.714834,0.906447,0.983802,0.36427,0.417724,0.0198599,0.844762,0.217074,0.574089,0.649382,0.384265,0.951557,0.535105,0.953608,0.83458,0.57812,0.811342,0.546063,0.604285,0.966827,0.688242,0.428238,0.945664,0.246711,0.426369,0.063325,0.289601,0.542155,0.106783,0.59267,0.912945,0.604524,0.116675,0.118744,0.106086,0.546537,0.227312,0.850609,0.455801,0.852614,0.522922,0.503374,0.0771626,0.189297,0.514121,0.188913,0.436722,0.369536,0.679357,0.73273,0.997503,0.58914,0.221289,0.951948,0.214836,0.122988,0.567039,0.724884,0.350306,0.619702,0.920774,0.0791675,0.693341,0.122177,0.76797,0.60456,0.872296,0.149336,0.878791,0.488462,0.698606,0.312489,0.803622,0.715511,0.205178,0.70299,0.0167415,0.558292,0.0878519,0.00944638,0.419594,0.39076,0.372976,0.844209,0.182672,0.0621814,0.2626,0.314406,0.636322,0.755843,0.0522824,0.0668158,0.531257,0.0535535,0.1068,0.482132,0.0782886,0.766435,0.079935,0.832074,0.762764,0.213753,0.813565,0.324464,0.934439,0.898257,0.860683,0.465958,0.0760595,0.599749,0.194242,0.758331,0.512444,0.316248,0.468439,0.985989,0.0424545,0.556062,0.78669,0.701937,0.302276,0.00158,0.843643,0.317516,0.0493991,0.305934,0.345191,0.173969,0.824599,0.604692,0.223129,0.549903,0.95599,0.626225,0.131422,0.957516,0.891618,0.0586323,0.888951,0.557905,0.806963,0.141157,0.51253,0.874028,0.714471,0.316458,0.854779,0.660986,0.474121,0.979923,0.86836,0.237623,0.0953828,0.724095,0.786536,0.262729,0.940279,0.793765,0.855651,0.359139,0.993881,0.937809,0.910824,0.939632,0.20577,0.309563,0.608425,0.186402,0.077108,0.758107,0.113421,0.39935,0.362499,0.290309,0.588594,0.291729,0.732124,0.699733,0.0513474,0.0981264,0.0828341,0.52578,0.335958,0.819944,0.927076,0.955801,0.122474,0.00592005,0.654944,0.58321,0.548956,0.0733166,0.79842,0.274071,0.821775,0.434935,0.472921,0.619479,0.727766,0.39861,0.827507,|0.780217,0.842808,0.832946,0.700338,0.334576,0.509526,0.599719,0.785097,0.172978,0.529593,0.0842431,0.903236,0.256763,0.340864,0.617015,0.955925,0.00506938,0.0281496,0.260352,0.392272,0.54263,0.25482,0.3261,0.843302,0.0984879,0.671774,0.798392,0.473882,0.79617,0.653312,0.461237,0.496668,0.922451,0.844334,0.874617,0.230151,0.0340496,0.141133,0.670263,0.501451,0.0833055,0.170667,0.819123,0.0147153,0.775446,0.19098,0.470298,0.0590325,0.516481,0.628764,0.908135,0.248029,0.9023,0.921919,0.93369,0.547656,0.90015,0.202338,0.0989295,0.946514,0.829078,0.152839,0.686042,0.0105702,0.581433,0.301008,0.663842,0.146616,0.47627,0.316176,0.911001,0.299836,0.865177,0.493139,0.099038,0.484045,0.934539,0.600795,0.121503,0.209543,0.666046,0.728167,0.183673,0.302205,0.60327,0.268472,0.891035,0.0648151,0.574847,0.857797,0.575549,0.552741,0.913105,0.064491,0.0412362,0.571553,0.266055,0.097998,0.325468,0.912978,0.755117,0.149945,0.402218,0.12125,0.806121,0.375416,0.577694,0.00317973,0.0875734,0.311,0.397395,0.164104,0.535689,0.861387,0.328755,0.531774,0.454775,0.744314,0.59696,0.50685,0.721849,0.6142,0.701226,0.969289,0.443654,0.278492,0.993925,0.0190095,0.836765,0.20528,0.150124,0.12781,0.620573,0.0413037,0.691087,0.517354,0.068775,0.50224,0.920819,0.804211,0.0435732,0.266629,0.631739,0.605608,0.85526,0.049313,0.231518,0.111686,0.254875,0.808107,0.748519,0.843356,0.994221,0.444156,0.123656,0.923143,0.90891,0.0296826,0.916163,0.188286,0.79771,0.846542,0.974177,0.267026,0.297697,0.3808,0.425174,0.570291,0.823296,0.624798,0.35322,0.691016,0.64708,0.0835473,0.297636,0.78663,0.729385,0.242405,0.170155,0.420401,0.468859,0.222893,0.776507,0.667856,0.861874,0.325138,0.327954,0.462868,0.160773,0.81526,0.653128,0.522429,0.0479179,0.0523267,0.026451,0.0549252,0.859929,0.140698,0.858754,0.722898,0.318963,0.947617,0.226156,0.709793,0.765971,0.311136,0.722,0.942026,0.47247,0.156029,0.677378,0.0997383,0.424297,0.0163069,0.0554746,0.767706,0.910059,0.529922,0.872563,0.0772566,0.00135565,0.184378,0.586,0.864672,0.278844,0.142218,0.939817,0.0609858,0.879809,0.586089,0.114954,0.561362,0.279701,0.378455,0.578872,0.417821,0.510747,0.0177894,0.420798,0.430286,0.597837,0.849352,0.230882,0.787878,0.707501,0.788459,0.148701,0.764282,0.126273,0.499216,0.550968,0.313886,0.143934,0.977381,0.87927,0.00357842,0.351005,0.0673028,0.0929134,0.560587,0.119759,0.528282,0.255794,0.11165,0.779493,0.0667353,0.994461,0.479085,0.698935,0.388004,0.641573,0.632465,0.504013,0.0505869,0.441889,0.279217,0.0623062,0.117026,0.417472,0.978505,0.214221,0.918413,0.764406,0.310279,0.752948,0.843008,0.951337,0.748603,0.116855,0.497869,0.768893,0.819974,0.775138,0.186945,0.605707,0.42504,0.0234248,0.2546,0.635199,0.697889,0.227842,0.61716,0.425077,0.482044,0.177682,0.0152464,0.208894,0.494207,0.175493,0.948378,0.0898752,0.0778365,0.485874,0.37211,0.616533,0.569905,0.714465,0.00410241,0.791272,0.0167908,0.520873,0.922878,0.377899,0.952825,0.138492,0.521585,0.510046,0.652352,0.565768,0.488449,0.542111,0.120319,0.696234,0.935901,0.0424072,0.357528,0.233559,0.807619,0.19771,0.307525,0.998989,0.163482,0.24285,0.986298,0.624424,0.542013,0.202022,0.947261,0.54101,0.122827,0.940783,0.633335,0.451689,0.401473,0.34945,0.695942,0.939409,0.860649,0.20765,0.931543,0.830754,0.133922,0.17065,0.677962,0.551958,0.708426,0.6589,0.0195796,0.377929,0.0999711,0.0842248,0.230375,0.643674,0.0117245,0.434909,0.0772318,0.805778,0.782131,0.899415,0.170682,0.308653,0.848688,0.601937,0.948362,0.38396,0.0145505,0.469121,0.399226,0.0497353,0.789336,0.295091,0.308826,0.744515,0.655278,0.259038,0.449693,0.275072,0.213876,0.726,0.465383,0.470194,0.864561,0.469998,0.645255,0.707868,0.483805,0.417622,0.266294,0.443755,0.561356,0.420366,0.131,0.492543,0.0280371,0.00124562,0.415757,0.593807,0.248428,0.0114478,0.761704,0.692288,0.704842,0.934614,0.722561,0.957923,0.722691,0.870569,0.288419,0.682238,0.243183,0.891714,0.562518,0.884323,0.183769,0.812091,0.162469,0.806413,0.958231,0.116751,0.293073,0.85287,0.277068,0.77089,0.928769,0.348764,0.988831,0.465643,0.226753,0.285915,0.690298,0.207621,0.981685,0.570571,0.529642,0.220423,0.342001,0.166303,0.73453,0.103676,0.544507,0.853118,0.222485,0.455773,0.310396,0.199832,0.518432,0.865681,0.113037,0.314181,0.412751,0.0938125,0.33439,0.352059,0.282553,0.00568259,0.380219,0.204313,0.967618,0.12347,0.0952777,0.954827,0.134438,0.677354,0.113375,0.434297,0.692604,0.686877,0.26097,0.245388,0.932589,0.432512,0.981087,0.716403,0.0617765,0.0133392,0.27306,0.731741,0.847203,0.0670416,0.392676,0.618445,0.287474,0.225914,0.860598,0.115645,0.0944857,0.203428,0.23835,0.785277,0.426462,0.289412,0.467742,0.593909,0.551979,0.426283,0.167529,0.568245,0.914197,0.365572,0.0656604,0.603294,0.255126,0.117866,0.711883,0.559213,0.490985,0.201353,0.690679,0.885598,0.900708,0.033808,0.0617329,0.804972,0.663397,0.995808,0.870583,0.665768,0.300599,0.111036,0.00294238,0.604325,0.414649,0.940051,0.354248,0.780158,0.902978,0.202856,0.724334,0.805942,0.263267,0.53248,0.322855,0.510503,0.396688,0.479317,0.899229,0.328601,0.44259,0.0355619,0.956403,0.917307,0.42114,0.724271,0.982496,0.943122,0.51531,0.359285,0.897438,0.334782,0.133382,0.0519946,0.433196,0.715851,0.231661,0.105591,0.505961,0.462359,0.376193,0.408525,0.826689,0.0298864,0.214574,0.672009,0.189059,0.380012,0.644802,0.222856,0.105985,0.826083,0.185273,0.434924,0.762241,0.339725,0.858764,0.553687,0.160743,0.342279,0.993644,0.429269,0.0941426,0.418499,0.547935,0.0619552,0.187356,0.196365,0.948167,0.908014,0.0779704,0.594108,0.835445,0.74957,0.0558215,0.22928,0.292565,0.722188,0.387211,0.559046,0.733904,0.822557,0.248919,0.104502,0.0842453,0.883267,0.321337,0.543621,0.817076,0.309226,0.811444,0.112343,0.283106,0.282936,0.525441,0.396805,0.764592,0.00556391,0.242085,0.61153,0.804545,0.0613465,0.597494,0.207826,0.897102,0.490047,0.401571,0.892986,0.95163,0.171007,0.956453,0.243483,0.891646,0.645228,0.0652794,0.44936,0.254374,0.133368,0.293939,0.482983,0.876846,0.883657,0.249435,0.995917,0.0697759,0.561098,0.53048,0.165765,0.655505,0.457282,0.477285,0.766644,0.219417,0.74974,0.510899,0.414016,0.755976,0.492955,0.868586,0.489628,0.0925093,0.607597,0.31164,0.364904,0.0761919,0.520035,0.661382,0.731603,0.861583,0.35798,0.605504,0.909101,0.978545,0.283071,0.432465,0.490093,0.814315,0.647529,0.303675,0.77618,0.0188767,0.657875,0.459652,0.246599,0.535698,0.0987962,0.777315,0.684144,0.76964,0.662426,0.351568,0.874454,0.658608,0.595054,0.00180888,0.189276,0.972335,0.565356,0.73376,0.895259,0.581323,0.968947,0.281627,0.349406,0.376459,0.139756,0.181557,0.509075,0.278019,0.714532,0.27354,0.752713,0.686848,0.243614,0.846864,0.987634,0.11934,0.316257,0.675695,0.155206,0.767588,0.14261,0.608022,0.337094,0.817601,0.781319,0.587932,0.860813,0.450838,0.710753,0.238933,0.712672,0.206619,0.885672,0.854897,0.296929,0.972433,0.278518,0.11168,0.171193,0.643714,0.611847,0.895422,0.507816,0.421677,0.662681,0.371927,0.885661,0.499909,0.375312,0.969736,0.301542,0.0376868,0.754412,0.771057,0.837577,0.199239,0.941578,0.0869401,0.125744,0.875637,0.261762,0.736426,0.628752,0.15887,0.0655468,0.974028,0.639187,0.700492,0.89426,0.00506121,0.00100327,0.488752,0.769141,0.110032,0.239365,0.608726,0.233539,0.13117,0.810808,0.3319,0.964502,0.105002,0.820725,0.694866,0.825956,0.17059,0.210613,0.194376,0.806438,0.0742903,0.957336,0.108929,0.412628,0.57484,0.499902,0.171977,0.936949,0.580593,0.867497,0.193169,0.660466,0.637123,0.648584,0.615555,0.291905,0.00610596,0.0321435,0.406695,0.282149,0.43102,0.0588908,0.716602,0.303146,0.521674,0.843126,0.505464,0.0294576,0.971079,0.430546,0.28091,0.637347,0.465957,0.712598,0.155036,0.245091,0.105492,0.230544,0.407723,0.201496,0.953361,0.2682,0.088006,0.111961,0.392463,0.750696,0.00485414,0.992905,0.284334,0.972975,0.413913,0.823879,0.20697,0.883615,0.0342291,0.355322,0.548995,0.0149155,0.895201,0.335289,0.0315672,0.319668,0.681055,0.0808922,0.114863,0.431833,0.977261,0.905296,0.0670399,0.81974,0.598053,0.163886,0.757024,0.809973,0.0170745,0.47043,0.780791,0.182024,0.439797,0.731847,0.646338,0.61062,0.730218,0.62147,0.424205,0.167652,0.393953,0.278404,0.707155,0.863758,0.876442,0.386005,0.621116,0.386501,0.285034,0.127697,0.047335,0.117498,0.716832,0.651985,0.654133,0.553912,0.0332931,0.685474,0.402633,0.147739,0.410484,0.428565,0.795385,0.0528247,0.902878,0.270738,0.657003,0.15292,0.981198,0.941017,0.87543,0.0102308,0.32026,0.0655515,0.770224,0.556953,0.137353,0.233128,0.201054,0.644091,0.966906,0.71054,0.0789958,0.842365,0.0658056,0.318553,0.700661,0.20121,0.16354,0.989126,0.489131,0.0165824,0.443109,0.298661,0.600328,0.446528,0.346673,0.404955,0.102428,0.63406,0.517066,0.915405,0.993705,0.231505,0.0333343,0.547144,0.24915,0.932808,0.484265,0.00694698,0.240659,0.617585,0.0835171,0.271697,0.833106,0.480562,0.200443,0.238107,0.556875,0.363767,0.808733,0.529937,0.470155,0.231396,0.39835,0.657064,0.127044,0.74531,0.601601,0.970752,0.906464,0.829136,0.189481,0.207824,0.501836,0.835182,0.161737,0.411147,0.122287,0.542059,0.296201,0.67977,0.408543,0.501576,0.289616,0.552054,0.218791,|0.855839,0.890581,0.508168,0.412867,0.0479316,0.420326,0.879446,0.28041,0.896551,0.429923,0.00584817,0.659173,0.163306,0.273474,0.223712,0.202241,0.965048,0.856471,0.802237,0.203717,0.0743013,0.297748,0.858107,0.0170609,0.0248174,0.91757,0.207156,0.801899,0.0577108,0.119185,0.178278,0.372609,0.0348517,0.824754,0.909792,0.00148231,0.763761,0.047999,0.703798,0.420452,0.850098,0.936556,0.6344,0.668785,0.254831,0.774549,0.167443,0.230707,0.434783,0.218249,0.459264,0.617551,0.677341,0.642784,0.472516,0.247569,0.358952,0.975492,0.11599,0.66846,0.105839,0.58672,0.311261,0.826608,0.847993,0.61535,0.573124,0.0397997,0.797033,0.310231,0.975587,0.102567,0.316315,0.0223497,0.702575,0.456789,0.471695,0.311193,0.128211,0.688528,0.395378,0.222486,0.501565,0.464277,0.397428,0.0372914,0.52053,0.0406719,0.650691,0.53133,0.142569,0.350571,0.282432,0.39267,0.948067,0.272251,0.904772,0.793371,0.788752,0.335372,0.512758,0.131698,0.85616,0.0182476,0.620737,0.941207,0.704362,0.85624,0.988179,0.149065,0.0662526,0.802516,0.252854,0.35103,0.492454,0.265155,0.144832,0.571919,0.080013,0.536405,0.35561,0.0706397,0.479966,0.564182,0.455446,0.0433819,0.346714,0.28961,0.71355,0.484952,0.987755,0.306051,0.331782,0.534751,0.931898,0.66461,0.621494,0.334252,0.360798,0.312291,0.735563,0.525658,0.254608,0.948752,0.949234,0.616962,0.00721419,0.136756,0.533383,0.361616,0.782398,0.923698,0.150399,0.329166,0.887006,0.70035,0.86469,0.0690308,0.689079,0.666142,0.479965,0.262012,0.440157,0.486906,0.500437,0.317502,0.939477,0.213982,0.798086,0.535328,0.130061,0.28718,0.562666,0.664771,0.574188,0.452536,0.776052,0.437602,0.452715,0.408404,0.687074,0.285923,0.282982,0.8305,0.0127955,0.490042,0.0447926,0.0187939,0.896658,0.332785,0.93235,0.992563,0.792421,0.689409,0.621368,0.119033,0.654845,0.456213,0.508865,0.490094,0.345794,0.960492,0.585347,0.946231,0.176224,0.109038,0.480852,0.259103,0.954167,0.985909,0.438236,0.526856,0.820925,0.976571,0.0856999,0.227234,0.876955,0.983642,0.016022,0.0304642,0.768231,0.880776,0.889635,0.530823,0.433035,0.789758,0.445927,0.0496837,0.237374,0.182218,0.38539,0.669573,0.404992,0.30544,0.315713,0.159397,0.936756,0.328648,0.355655,0.833537,0.567352,0.715301,0.467872,0.407841,0.41465,0.622875,0.837402,0.334042,0.217716,0.142159,0.689264,0.794479,0.302237,0.69241,0.691264,0.0269023,0.151312,0.184846,0.636681,0.0749883,0.80842,0.785115,0.797061,0.0132925,0.546054,0.0151958,0.94953,0.49667,0.0689706,0.810162,0.478835,0.510031,0.363104,0.869012,0.204384,0.377499,0.247902,0.829676,0.819912,0.538544,0.221635,0.464509,0.243771,0.050414,0.332227,0.25197,0.286225,0.434799,0.385713,0.619936,0.601541,0.792481,0.0249185,0.808778,0.486321,0.369152,0.825675,0.384883,0.214507,0.792267,0.41943,0.19546,0.925687,0.91553,0.529804,0.983066,0.690864,0.370722,0.30534,0.0303732,0.591382,0.662837,0.188946,0.797922,0.812475,0.367783,0.14844,0.606524,0.545903,0.107118,0.604574,0.231193,0.217288,0.750562,0.795704,0.848449,0.775622,0.577035,0.870393,0.380846,0.139025,0.050383,0.258062,0.153447,0.564811,0.331175,0.569228,0.990661,0.965934,0.281798,0.326764,0.538941,0.739663,0.106011,0.201726,0.931906,0.431074,0.417057,0.465208,0.167825,0.316902,0.817902,0.810648,0.578537,0.426912,0.362614,0.218828,0.00710475,0.311436,0.171472,0.957262,0.376676,0.138735,0.344727,0.624514,0.953596,0.137999,0.66042,0.594788,0.420815,0.887797,0.165531,0.661425,0.688618,0.517824,0.972601,0.929209,0.340022,0.090903,0.0804032,0.903376,0.563346,0.0104854,0.350263,0.561518,0.228509,0.20565,0.0818183,0.958428,0.261152,0.0799721,0.339725,0.0181656,0.954366,0.670363,0.266983,0.0651539,0.434183,0.229698,0.586915,0.0294537,0.914075,0.388992,0.369494,0.480602,0.914375,0.875628,0.61839,0.299216,0.227202,0.361415,0.152925,0.554677,0.750335,0.606063,0.806475,0.829428,0.0324618,0.110321,0.55394,0.268164,0.682149,0.645204,0.463446,0.356973,0.00301069,0.238758,0.463682,0.721134,0.279799,0.775604,0.274979,0.404417,0.553194,0.760587,0.874963,0.46621,0.74645,0.273998,0.772803,0.202279,0.152883,0.327846,0.0132714,0.0656505,0.147432,0.195821,0.0814394,0.27884,0.431242,0.0581425,0.178638,0.032701,0.2568,0.293191,0.300059,0.0277586,0.841044,0.362885,0.679876,0.701782,0.517324,0.026984,0.299271,0.740813,0.7267,0.0617614,0.873929,0.662587,0.100648,0.22754,0.894736,0.28624,0.475813,0.944229,0.788123,0.9997,0.42333,0.333507,0.953753,0.359754,0.841348,0.438814,0.831847,0.422447,0.00253916,0.0713469,0.513715,0.866281,0.676844,0.949213,0.618172,0.783729,0.783883,0.412148,0.937459,0.447213,0.821351,0.915994,0.687043,0.170408,0.763891,0.45291,0.803752,0.818721,0.707034,0.157415,0.718965,0.206358,0.850238,0.127144,0.898001,0.510773,0.0480958,0.64254,0.246198,0.601407,0.955201,0.234272,0.306243,0.641401,0.218119,0.257077,0.878836,0.225368,0.109164,0.58071,0.898561,0.87479,0.911104,0.712322,0.885336,0.677159,0.0582361,0.670785,0.187566,0.436696,0.662074,0.89816,0.66968,0.989854,0.343038,0.0517349,0.952374,0.120624,0.755822,0.574291,0.444033,0.0615131,0.348752,0.722476,0.119119,0.0485917,0.127013,0.540384,0.911102,0.53437,0.423225,0.839778,0.993592,0.0054462,0.271975,0.0145757,0.034105,0.874039,0.991818,0.761167,0.87063,0.264496,0.900973,0.340858,0.536968,0.367478,0.899807,0.080682,0.698244,0.673206,0.701902,0.960837,0.0366394,0.939094,0.157452,0.653156,0.0104615,0.997909,0.240123,0.644208,0.601455,0.104125,0.978286,0.211991,0.655588,0.584503,0.282329,0.411183,0.514433,0.299317,0.687764,0.67584,0.0130931,0.766656,0.910765,0.473094,0.771904,0.738185,0.664382,0.585459,0.465912,0.829193,0.238097,0.236313,0.91173,0.311708,0.631702,0.650886,0.875334,0.125808,0.21638,0.161019,0.103104,0.51738,0.073338,0.622603,0.0367311,0.64748,0.537375,0.73529,0.0803812,0.923577,0.0628752,0.556052,0.975945,0.286436,0.795231,0.800619,0.222239,0.0526575,0.833823,0.901358,0.0890686,0.310302,0.622603,0.708531,0.456428,0.666601,0.443321,0.398681,0.589567,0.434727,0.111265,0.805616,0.868219,0.210813,0.747856,0.214792,0.644413,0.437286,0.886758,0.816333,0.943399,0.0789697,0.607276,0.482165,0.657873,0.874845,0.853759,0.484439,0.393889,0.747002,0.463461,0.844525,0.300054,0.431549,0.0996611,0.769256,0.191649,0.17851,0.967165,0.415246,0.484804,0.372781,0.806135,0.23842,0.504286,0.234385,0.658523,0.428566,0.409001,0.727664,0.728147,0.562526,0.640424,0.312097,0.286615,0.852809,0.412409,0.944156,0.329147,0.121226,0.0375451,0.577199,0.96124,0.758602,0.518042,0.746355,0.405998,0.152583,0.165116,0.403267,0.959465,0.845398,0.709052,0.562942,0.439028,0.151535,0.601524,0.78892,0.0672672,0.293306,0.758458,0.698832,0.532345,0.867869,0.444705,0.400421,0.149414,0.648238,0.156762,0.273224,0.940395,0.0291598,0.140808,0.543786,0.342809,0.305216,0.283581,0.413862,0.103309,0.301839,0.753,0.904042,0.400404,0.760616,0.956066,0.885438,0.0480453,0.126074,0.5249,0.315811,0.845671,0.889954,0.330731,0.276049,0.379731,0.541683,0.356526,0.00745839,0.403494,0.873556,0.379568,0.963695,0.309728,0.418784,0.457291,0.268012,0.995551,0.922469,0.26533,0.642143,0.35303,0.223629,0.181246,0.690014,0.341307,0.92015,0.64567,0.741679,0.137404,0.578531,0.51432,0.575141,0.794801,0.859797,0.520386,0.155649,0.578446,0.48385,0.461329,0.585582,0.56206,0.302395,0.0660923,0.0589652,0.669298,0.978949,0.51141,0.99533,0.0919488,0.307442,0.443721,0.808802,0.0577778,0.328502,0.281734,0.0438113,0.949387,0.645538,0.968416,0.888239,0.0779432,0.31962,0.742457,0.836712,0.111828,0.968407,0.41429,0.220922,0.635841,0.791178,0.904097,0.781511,0.24886,0.192448,0.724611,0.705181,0.756336,0.0643301,0.232961,0.821973,0.140486,0.0723001,0.435762,0.299841,0.904482,0.346093,0.199838,0.834511,0.129148,0.647648,0.490555,0.238944,0.0227351,0.430087,0.269887,0.427297,0.458889,0.403565,0.800816,0.657468,0.276395,0.567073,0.807161,0.152573,0.169303,0.393158,0.616958,0.263169,0.915924,0.802497,0.482658,0.325318,0.443315,0.101121,0.400245,0.849696,0.233499,0.660766,0.154267,0.452433,0.0878463,0.759389,0.207922,0.911262,0.00907439,0.379498,0.0890288,0.407114,0.943212,0.456481,0.0566566,0.666613,0.248416,0.814775,0.771856,0.903075,0.355573,0.116232,0.84504,0.406849,0.178131,0.439522,0.0429372,0.338461,0.252565,0.468054,0.744542,0.102086,0.0369624,0.354263,0.524919,0.874672,0.993171,0.403652,0.129744,0.842582,0.369104,0.473123,0.305494,0.917556,0.795826,0.854856,0.873317,0.282953,0.774671,0.506175,0.351834,0.0433014,0.438994,0.134783,0.290701,0.586055,0.119325,0.160008,0.00181466,0.281506,0.388782,0.19661,0.0281024,0.579667,0.364064,0.569791,0.950505,0.359755,0.493623,0.860812,0.306086,0.204751,0.108843,0.935849,0.349553,0.67875,0.815221,0.199552,0.0160148,0.273454,0.50446,0.831941,0.608115,0.435569,0.28288,0.759141,0.659971,0.769427,0.0123953,0.220731,0.94565,0.58181,0.300141,0.108241,0.885523,0.897401,0.816084,0.586488,0.589006,0.654822,0.0473588,0.2216,0.643854,0.752597,0.0487575,0.239807,0.94461,0.186332,0.834228,0.176661,0.883504,0.266709,0.837959,0.928973,0.424841,0.730972,0.464146,0.274819,0.0941867,0.395923,0.662648,0.482229,0.432682,0.880699,0.122769,0.257282,0.640121,0.215947,0.336483,0.241939,0.127072,0.696759,0.401886,0.471164,0.567341,|0.853805,0.728681,0.584715,0.685233,0.716378,0.0857419,0.0988157,0.576039,0.9414,0.746408,0.820399,0.319426,0.63155,0.0352614,0.24555,0.6331,0.290419,0.664648,0.017951,0.950329,0.0519937,0.456865,0.862674,0.183859,0.650121,0.89788,0.950998,0.992195,0.905293,0.973074,0.37573,0.982836,0.660056,0.15072,0.400185,0.5798,0.24838,0.428427,0.560192,0.676513,0.912942,0.458056,0.0228658,0.263186,0.656842,0.614267,0.664696,0.630193,0.230188,0.393924,0.314988,0.611599,0.0978613,0.225175,0.313862,0.0243399,0.434335,0.60569,0.819101,0.252522,0.926522,0.150867,0.326998,0.998644,0.977938,0.857925,0.711229,0.727004,0.460994,0.790377,0.954462,0.00838053,0.78345,0.380068,0.756047,0.411412,0.374602,0.697295,0.13629,0.553843,0.901349,0.439756,0.892918,0.215739,0.0272217,0.772683,0.681194,0.104208,0.766759,0.946748,0.0292527,0.47753,0.430198,0.883877,0.744405,0.320864,0.955247,0.231612,0.919884,0.451386,0.691723,0.847582,0.703956,0.368162,0.483593,0.257072,0.739552,0.874182,0.512411,0.775532,0.750083,0.732533,0.232191,0.828159,0.728991,0.819687,0.633199,0.123385,0.270535,0.959797,0.864412,0.796405,0.480649,0.938313,0.902036,0.141623,0.0244709,0.362824,0.724254,0.52898,0.487549,0.475339,0.0642884,0.64199,0.0671173,0.723573,0.590212,0.824816,0.197751,0.088459,0.00430489,0.565449,0.600363,0.526817,0.858619,0.840245,0.930684,0.615473,0.893905,0.648521,0.85565,0.108947,0.938096,0.534861,0.979415,0.729527,0.61773,0.784185,0.635803,0.810749,0.822914,0.437924,0.64881,0.911566,0.875513,0.836677,0.590709,0.676418,0.411956,0.591874,0.0653545,0.411686,0.507032,0.0331818,0.790208,0.404529,0.669722,0.651472,0.563058,0.353952,0.992562,0.264725,0.813154,0.923176,0.279069,0.0708953,0.140399,0.163442,0.621638,0.959398,0.0818027,0.852988,0.117268,0.229403,0.97242,0.729066,0.980533,0.644265,0.2202,0.66374,0.587801,0.881404,0.615131,0.62202,0.844037,0.550897,0.0522647,0.0553084,0.0690671,0.873786,0.0456759,0.0519161,0.534546,0.0445936,0.235314,0.95039,0.0303982,0.565071,0.700924,0.984613,0.310214,0.925983,0.32468,0.128429,0.975015,0.243311,0.334869,0.390703,0.475067,0.408434,0.602948,0.353833,0.0644965,0.304126,0.326683,0.417383,0.518907,0.3785,0.0413092,0.232485,0.442915,0.7508,0.937949,0.0162947,0.345068,0.813811,0.722185,0.410629,0.0425034,0.0469738,0.713625,0.820634,0.94179,0.323946,0.912493,0.668703,0.302558,0.261437,0.763865,0.342823,0.661427,0.200068,0.722063,0.790607,0.770196,0.782415,0.893298,0.229495,0.343953,0.643544,0.38432,0.735058,0.540493,0.194811,0.286911,0.4371,0.368476,0.290404,0.694398,0.314385,0.681314,0.544473,0.981304,0.719686,0.896336,0.245527,0.149319,0.78967,0.537031,0.0554549,0.389092,0.234152,0.0513498,0.0117813,0.575847,0.634443,0.0558715,0.959078,0.176656,0.760245,0.684861,0.00233585,0.419976,0.293894,0.16805,0.189337,0.929379,0.305906,0.484289,0.177589,0.00482041,0.458971,0.39758,0.515758,0.158624,0.466859,0.179017,0.65733,0.938316,0.350882,0.964679,0.907253,0.565652,0.0736095,0.680331,0.383147,0.0134531,0.74028,0.366367,0.79763,0.702221,0.331738,0.244148,0.485022,0.827788,0.348147,0.708397,0.503962,0.691001,0.23213,0.144972,0.999844,0.124585,0.46449,0.181462,0.727532,0.952747,0.29492,0.594554,0.28626,0.624716,0.265454,0.478251,0.0600473,0.603509,0.879741,0.196378,0.349407,0.247076,0.0466347,0.728806,0.322957,0.941954,0.719468,0.915949,0.333762,0.268207,0.145106,0.77582,0.377195,0.55326,0.0188745,0.524746,0.189057,0.580981,0.434325,0.353411,0.635722,0.140797,0.774943,0.347721,0.666988,0.449163,0.695612,0.272344,0.0586422,0.235815,0.36524,0.62177,0.406817,0.0129283,0.931453,0.793497,0.149286,0.786092,0.647753,0.400074,0.897363,0.647242,0.60052,0.999981,0.34268,0.192206,0.574719,0.722673,0.00462914,0.643514,0.475106,0.995234,0.503462,0.92864,0.666114,0.903271,0.22468,0.842368,0.116118,0.942528,0.579371,0.174231,0.125312,0.344993,0.701228,0.818267,0.712092,0.530513,0.816857,0.598981,0.25702,0.401647,0.291166,0.915226,0.593778,0.943839,0.226168,0.189923,0.759074,0.960528,0.492937,0.71317,0.718491,0.00567967,0.654649,0.964997,0.085068,0.232627,0.0814423,0.384832,0.614253,0.688799,0.415651,0.357087,0.834802,0.284047,0.450158,0.3948,0.649192,0.957079,0.810566,0.592968,0.691761,0.628756,0.145925,0.579106,0.127498,0.946239,0.803007,0.2055,0.309046,0.935087,0.77159,0.15503,0.551244,0.668927,0.646758,0.808771,0.393691,0.0913457,0.444903,0.520279,0.942081,0.988459,0.630021,0.887117,0.899704,0.922755,0.789843,0.508241,0.214584,0.276311,0.803826,0.464386,0.966224,0.424787,0.249166,0.144648,0.311915,0.837369,0.110594,0.4043,0.160821,0.496226,0.457939,0.482596,0.990137,0.720312,0.74744,0.725799,0.237695,0.143886,0.387303,0.680586,0.093881,0.457694,0.397624,0.0731444,0.797749,0.311585,0.457919,0.0916451,0.0191037,0.649107,0.0778788,0.210295,0.598979,0.928249,0.0411974,0.328692,0.850518,0.226832,0.049615,0.943573,0.787571,0.438565,0.0447769,0.157658,0.511029,0.410621,0.0616959,0.801291,0.1505,0.620788,0.526535,0.963639,0.965135,0.584176,0.0084793,0.391383,0.18752,0.0427535,0.396962,0.517205,0.728094,0.990941,0.930018,0.0382199,0.234072,0.679045,0.823901,0.655835,0.752185,0.037781,0.597514,0.363723,0.629253,0.857928,0.444066,0.723386,0.625761,0.893076,0.509416,0.228219,0.968024,0.368948,0.18588,0.135801,0.36034,0.644359,0.608554,0.329546,0.763833,0.819097,0.244378,0.179514,0.502768,0.0283074,0.816876,0.485266,0.330582,0.116496,0.95317,0.843678,0.213191,0.685088,0.324372,0.817277,0.510728,0.611921,0.262875,0.0163281,0.360264,0.0796416,0.31644,0.434402,0.104386,0.876124,0.433467,0.177142,0.30867,0.11298,0.160484,0.513181,0.639312,0.612335,0.871019,0.74187,0.22459,0.0780452,0.271933,0.837296,0.698532,0.629307,0.966912,0.297942,0.112091,0.807656,0.930692,0.301181,0.839132,0.167457,0.857613,0.390065,0.356138,0.110656,0.815401,0.184759,0.869943,0.346239,0.612,0.595422,0.238904,0.75966,0.319272,0.486618,0.372003,0.783361,0.301812,0.919431,0.0418142,0.280079,0.345489,0.923841,0.218449,0.635036,0.93904,0.901203,0.211873,0.529939,0.610251,0.133265,0.517721,0.125181,0.429247,0.0958829,0.272333,0.0562486,0.570247,0.437321,0.381611,0.378273,0.75292,0.257622,0.203978,0.099739,0.627841,0.750035,0.319111,0.454841,0.689618,0.383126,0.415392,0.108285,0.585019,0.571626,0.579559,0.172526,0.218267,0.00738043,0.475767,0.18667,0.723678,0.618238,0.800444,0.838764,0.781018,0.678544,0.601735,0.888277,0.520991,0.0352566,0.163831,0.126095,0.809245,0.280286,0.58959,0.166994,0.995671,0.996729,0.952952,0.29803,0.0297282,0.70822,0.573726,0.852354,0.446759,0.339489,0.0600187,0.676932,0.80356,0.999385,0.961097,0.144726,0.356074,0.508757,0.375759,0.262976,0.792012,0.0579439,0.372078,0.70099,0.979221,0.55432,0.683289,0.0306551,0.0061354,0.251139,0.0577359,0.397293,0.980615,0.311365,0.161417,0.713577,0.00210309,0.743836,0.505574,0.422377,0.538575,0.88257,0.233115,0.815071,0.791554,0.601565,0.639523,0.724578,0.957141,0.377068,0.702278,0.318816,0.703596,0.87374,0.994369,0.2691,0.752784,0.257942,0.45464,0.701814,0.341924,0.63597,0.335278,0.793267,0.892972,0.0484415,0.585784,0.752384,0.125775,0.85539,0.541064,0.670206,0.520189,0.997892,0.0585986,0.217982,0.23887,0.60632,0.422888,0.942717,0.000597537,0.388616,0.842417,0.726011,0.184695,0.232769,0.613881,0.712226,0.430589,0.175813,0.522295,0.15775,0.933355,0.713591,0.111311,0.15008,0.740547,0.33113,0.241776,0.0869994,0.243476,0.260143,0.205479,0.363394,0.347086,0.857352,0.878221,0.163254,0.41309,0.617048,0.0136674,0.366198,0.337296,0.933007,0.695126,0.624362,0.452579,0.919452,0.785847,0.895537,0.814097,0.150289,0.446645,0.15384,0.195765,0.319956,0.326287,0.0634448,0.628238,0.0877184,0.680152,0.798192,0.354377,0.965412,0.180095,0.326381,0.928534,0.493175,0.680412,0.637669,0.47735,0.0227612,0.224025,0.724822,0.374982,0.293015,0.0186771,0.76876,0.564262,0.574839,0.451034,0.968684,0.125599,0.573556,0.719851,0.288327,0.402546,0.33248,0.150665,0.713164,0.284486,0.770662,0.268975,0.700883,0.0362611,0.627338,0.696137,0.78463,0.488974,0.7902,0.313781,0.788623,0.61206,0.503404,0.922445,0.240178,0.460732,0.183452,0.668856,0.729523,0.698533,0.559663,0.874967,0.162879,0.397585,0.305523,0.015837,0.0453339,0.163637,0.50315,0.990924,0.151848,0.847512,0.475898,0.0291107,0.652489,0.218152,0.407157,0.267021,0.0265741,0.310938,0.982252,0.301201,0.970282,0.0256826,0.572103,0.172615,0.747718,0.0486641,0.381873,0.106904,0.879344,0.39219,0.684826,0.665294,0.0419461,0.655203,0.912502,0.146607,0.116848,0.0988978,0.0671224,0.836425,0.583044,0.113894,0.365621,0.945321,0.908651,0.469448,0.603183,0.10397,0.305392,0.474897,0.127989,0.49141,0.54194,0.165618,0.490925,0.0200813,0.139848,0.222034,0.717785,0.209885,0.385324,0.680123,0.838171,0.818181,0.655761,0.588439,0.0125088,0.481774,0.195009,0.477064,0.975833,0.79518,0.0714352,0.807653,0.913032,0.505395,0.707851,0.284721,0.318941,0.597125,0.254965,0.240691,0.692294,0.440178,0.0165356,0.2616,0.436636,0.806346,0.910033,0.667993,0.89719,0.843251,0.541342,0.21932,0.326495,0.589036,0.265538,0.861709,0.615486,0.341124,0.0825857,0.393546,0.90545,0.21472,0.883409,0.228127,0.722159,0.027488,0.839167,0.120858,0.171885,0.958368,|0.00359827,0.100257,0.0528897,0.257914,0.74469,0.278202,0.949164,0.427201,0.377728,0.479503,0.282223,0.743168,0.112491,0.383388,0.0750208,0.0478097,0.394084,0.42959,0.323093,0.805972,0.498054,0.748468,0.373966,0.631762,0.687638,0.0500209,0.343433,0.870935,0.408243,0.337408,0.379743,0.807062,0.82011,0.695967,0.0914093,0.756322,0.683272,0.965829,0.298584,0.803615,0.0922307,0.831152,0.68816,0.349655,0.652281,0.454678,0.306543,0.934384,0.026445,0.710492,0.74047,0.238401,0.831992,0.716592,0.0914201,0.109745,0.212174,0.942187,0.192168,0.701388,0.33831,0.519927,0.624096,0.827951,0.785101,0.246577,0.611278,0.861788,0.897396,0.284041,0.618974,0.12009,0.311449,0.6279,0.678557,0.0184104,0.547808,0.280128,0.439709,0.397277,0.832386,0.59375,0.512762,0.550959,0.309167,0.822955,0.800294,0.0770139,0.102539,0.843548,0.812085,0.603002,0.4699,0.412233,0.690007,0.271267,0.921541,0.321715,0.491223,0.897768,0.0639645,0.137034,0.138196,0.260572,0.2983,0.525791,0.188655,0.462498,0.153165,0.038004,0.564522,0.712194,0.337747,0.858565,0.819799,0.666635,0.36546,0.419616,0.818842,0.383601,0.980828,0.654885,0.391807,0.444651,0.674904,0.91002,0.692056,0.882615,0.878291,0.286204,0.682279,0.20569,0.127864,0.839331,0.905457,0.165963,0.657197,0.964575,0.75945,0.83963,0.564393,0.464248,0.504601,0.251512,0.814179,0.595759,0.201146,0.682344,0.447912,0.660633,0.924482,0.578256,0.400705,0.956168,0.585132,0.728863,0.724141,0.785907,0.647518,0.515926,0.120797,0.610506,0.483715,0.30743,0.901318,0.45529,0.971389,0.36022,0.155391,0.13805,0.671382,0.423794,0.457242,0.837529,0.676254,0.586291,0.675314,0.503295,0.403102,0.0663433,0.167213,0.793845,0.22917,0.860859,0.661174,0.157497,0.314579,0.838686,0.448766,0.159532,0.637653,0.847179,0.396841,0.426116,0.896027,0.805338,0.655513,0.177114,0.996177,0.350662,0.0885295,0.736678,0.660158,0.759664,0.596155,0.499789,0.408596,0.0700421,0.916581,0.231458,0.1178,0.320305,0.899587,0.0294793,0.680238,0.423029,0.282122,0.58397,0.767071,0.000159144,0.37312,0.636105,0.671633,0.142455,0.886604,0.666075,0.731141,0.446534,0.208706,0.17738,0.246271,0.775322,0.855242,0.272513,0.847718,0.402106,0.516241,0.139022,0.424225,0.985682,0.815833,0.303891,0.211727,0.702459,0.838755,0.482177,0.776782,0.235558,0.640822,0.202771,0.0277155,0.490813,0.0523303,0.264368,0.916657,0.29404,0.379739,0.786425,0.779291,0.87086,0.594333,0.673096,0.349965,0.594606,0.269589,0.983446,0.0301574,0.198051,0.697032,0.12324,0.858217,0.995485,0.652452,0.358558,0.305934,0.972485,0.184433,0.960453,0.694811,0.936374,0.927968,0.603947,0.689398,0.581566,0.413416,0.208611,0.352825,0.629211,0.365213,0.495103,0.758097,0.728372,0.194696,0.67589,0.306512,0.759905,0.522128,0.2138,0.936198,0.147718,0.972969,0.235441,0.279629,0.147902,0.968004,0.164595,0.131191,0.907211,0.673684,0.910894,0.607865,0.881931,0.25541,0.415159,0.74874,0.549172,0.83885,0.0759143,0.844487,0.0253017,0.126497,0.405565,0.116968,0.0238678,0.990731,0.62059,0.803635,0.0162914,0.230969,0.540315,0.440994,0.501066,0.462645,0.821567,0.669121,0.981559,0.511649,0.712033,0.197302,0.159592,0.814791,0.120165,0.911441,0.723419,0.312339,0.364166,0.415703,0.0964977,0.0039385,0.440785,0.193339,0.279921,0.542096,0.0432687,0.257853,0.177815,0.491543,0.016411,0.716345,0.111812,0.340321,0.41529,0.85453,0.709216,0.383915,0.189118,0.206854,0.595876,0.0373027,0.477815,0.106303,0.104793,0.764146,0.485745,0.172786,0.756359,0.0472801,0.261496,0.0544567,0.736144,0.108111,0.878093,0.314249,0.763183,0.597256,0.193269,0.44479,0.904963,0.462467,0.341007,0.327511,0.614187,0.460779,0.17907,0.977723,0.158553,0.959684,0.849215,0.900844,0.455285,0.974867,0.0281354,0.94669,0.521227,0.270061,0.766335,0.726858,0.55849,0.0715708,0.89314,0.482468,0.542284,0.179088,0.805839,0.544544,0.0796088,0.335294,0.20886,0.0832278,0.167527,0.908542,0.224691,0.718853,0.322181,0.29295,0.309412,0.948486,0.477094,0.884948,0.597531,0.576999,0.0679548,0.921963,0.179312,0.388092,0.854098,0.880821,0.485918,0.832775,0.615832,0.862911,0.757476,0.229172,0.657882,0.927194,0.737643,0.30022,0.909125,0.92945,0.98723,0.288102,0.0202981,0.431008,0.136176,0.784727,0.632059,0.160194,0.13948,0.929046,0.443077,0.427494,0.212936,0.56939,0.209113,0.0568175,0.718609,0.583946,0.543118,0.459034,0.194234,0.385589,0.778157,0.288538,0.825328,0.952571,0.341434,0.224139,0.485524,0.838636,0.106447,0.238296,0.828411,0.71468,0.912836,0.158722,0.987181,0.905329,0.718592,0.482612,0.976371,0.486486,0.364948,0.700634,0.441898,0.360708,0.911451,0.701221,0.224417,0.234713,0.0930038,0.96254,0.0922945,0.931223,0.932008,0.348291,0.554032,0.444078,0.787349,0.708239,0.482287,0.758926,0.685328,0.749206,0.869878,0.442307,0.932698,0.852419,0.386994,0.115692,0.960048,0.77071,0.70793,0.964689,0.648979,0.115569,0.984743,0.418093,0.879506,0.794891,0.620855,0.878673,0.906878,0.63346,0.531731,0.121187,0.411483,0.991096,0.569268,0.541704,0.586201,0.0568115,0.238983,0.250406,0.0993427,0.473551,0.121547,0.443498,0.67156,0.900233,0.730555,0.367689,0.237685,0.71696,0.651414,0.595794,0.737009,0.941995,0.429687,0.401672,0.55147,0.883396,0.503535,0.795352,0.481694,0.36889,0.869531,0.901088,0.5565,0.845504,0.227112,0.608774,0.640784,0.210455,0.443265,0.985129,0.952153,0.872254,0.647176,0.409478,0.803874,0.0985606,0.530752,0.992435,0.941436,0.561841,0.813084,0.990338,0.355879,0.723466,0.901225,0.804779,0.858348,0.0217366,0.179616,0.231931,0.881793,0.395646,0.454544,0.0877475,0.724729,0.516194,0.877565,0.15303,0.0952871,0.413348,0.935718,0.937999,0.412656,0.903576,0.808214,0.733312,0.15036,0.602078,0.243826,0.50637,0.915953,0.435167,0.964363,0.185099,0.892511,0.357258,0.909644,0.886374,0.953718,0.216418,0.856104,0.683851,0.710877,0.0477297,0.00728601,0.769047,0.705199,0.193149,0.713289,0.0777154,0.195126,0.845516,0.347176,0.0884895,0.816747,0.667853,0.490837,0.716062,0.950764,0.545787,0.841429,0.199872,0.511588,0.126382,0.0442303,0.0587251,0.532486,0.474678,0.40091,0.904412,0.347869,0.20748,0.666277,0.0279028,0.939022,0.113208,0.0255924,0.917165,0.190159,0.287063,0.456507,0.496974,0.272369,0.272867,0.0750465,0.69139,0.0849457,0.510401,0.501275,0.570524,0.705784,0.956562,0.0721134,0.104667,0.250281,0.560393,0.758239,0.832708,0.384885,0.786214,0.462041,0.97643,0.301745,0.656195,0.10127,0.785817,0.122072,0.337837,0.957575,0.16127,0.874706,0.898715,0.648488,0.420032,0.782265,0.53479,0.342141,0.401303,0.264869,0.223294,0.309775,0.205733,0.511705,0.521297,0.689695,0.61556,0.609327,0.991949,0.770161,0.459639,0.465334,0.0279453,0.703504,0.887551,0.431673,0.358204,0.0714193,0.258018,0.830816,0.252187,0.388782,0.125354,0.169193,0.865381,0.566496,0.496742,0.140937,0.0761423,0.0877456,0.572107,0.959228,0.508145,0.421436,0.139976,0.779494,0.512109,0.288553,0.715265,0.787554,0.142567,0.240238,0.40763,0.994411,0.546278,0.0897337,0.517774,0.0120639,0.190253,0.0949888,0.0171663,0.558454,0.422846,0.291239,0.516214,0.318512,0.546576,0.716115,0.619561,0.534228,0.635552,0.883609,0.816368,0.222536,0.624491,0.249916,0.133124,0.339329,0.840507,0.931375,0.290867,0.04706,0.885189,0.604404,0.253227,0.780928,0.396481,0.846573,0.753648,0.0345276,0.524586,0.94931,0.61161,0.977381,0.575695,0.404565,0.490671,0.0161521,0.0114353,0.303436,0.4537,0.204138,0.708559,0.366479,0.615223,0.30288,0.136666,0.896779,0.971306,0.560934,0.029211,0.433164,0.0617883,0.362611,0.48707,0.718351,0.884613,0.924928,0.499476,0.740446,0.173565,0.489384,0.330082,0.935652,0.21322,0.678677,0.534531,0.570582,0.916445,0.539922,0.484344,0.875354,0.47236,0.910433,0.912092,0.810162,0.903803,0.803601,0.0236421,0.349783,0.600813,0.234305,0.447106,0.778719,0.843673,0.0181116,0.00246882,0.856063,0.669251,0.0800981,0.220117,0.14604,0.833395,0.772357,0.728326,0.0657215,0.613094,0.227003,0.0255519,0.926019,0.202785,0.694001,0.457884,0.162371,0.367657,0.356096,0.349551,0.552044,0.471441,0.577032,0.66027,0.627506,0.445998,0.16186,0.93208,0.592046,0.524915,0.940121,0.988576,0.571498,0.99312,0.843678,0.00306386,0.180316,0.218186,0.180681,0.159481,0.462364,0.840516,0.913122,0.49581,0.83229,0.723523,0.995486,0.156891,0.562129,0.897069,0.266927,0.0582761,0.325275,0.50646,0.786982,0.87722,0.938006,0.147338,0.387609,0.963526,0.0979866,0.806852,0.510621,0.600181,0.287289,0.182221,0.70353,0.740049,0.133869,0.837013,0.330666,0.574128,0.568074,0.601734,0.642853,0.412875,0.402599,0.812591,0.782788,0.418036,0.211136,0.902996,0.420305,0.17604,0.386856,0.511432,0.612829,0.314924,0.933013,0.151444,0.141111,0.886599,0.772913,0.045464,0.823779,0.669681,0.191827,0.481773,0.866898,0.551706,0.327951,0.916797,0.85389,0.0759943,0.796961,0.479269,0.120535,0.0317535,0.721027,0.34556,0.354563,0.0930118,0.883386,0.00539565,0.121692,0.418913,0.914259,0.551987,0.623592,0.729702,0.0921654,0.715698,0.266813,0.265897,0.324519,0.307939,0.217381,0.199639,0.212893,0.323187,0.148691,0.240215,0.332636,0.876216,0.833976,0.486924,0.886184,0.727872,0.339595,0.375342,0.321552,0.714097,0.85816,0.842414,0.106771,0.464064,0.201563,0.302308,0.585338,0.893904,0.609711,0.331847,0.631626,0.787983,0.419041,0.598298,0.00781447,0.354524,0.220389,|0.903637,0.411637,0.298858,0.429289,0.209978,0.189564,0.577402,0.880884,0.951284,0.183254,0.679802,0.176991,0.970186,0.943972,0.532843,0.418843,0.0012176,0.424517,0.882691,0.0870734,0.921436,0.326441,0.938853,0.612624,0.221346,0.315332,0.692623,0.887933,0.0951219,0.299022,0.558695,0.442246,0.376654,0.00913197,0.236355,0.545417,0.551831,0.725694,0.0266487,0.478916,0.51889,0.95869,0.489022,0.0379406,0.497616,0.345928,0.19491,0.0047487,0.175266,0.818421,0.664635,0.72195,0.608525,0.838561,0.113802,0.418051,0.264125,0.0425553,0.791876,0.666525,0.0510134,0.428319,0.494242,0.502057,0.961693,0.271234,0.997987,0.696072,0.863615,0.254183,0.173751,0.858355,0.0174847,0.0102893,0.899131,0.337089,0.418369,0.176301,0.0396734,0.994726,0.971373,0.649811,0.148169,0.38651,0.533394,0.601539,0.347131,0.584851,0.336024,0.348104,0.553574,0.670435,0.629063,0.972436,0.496319,0.926076,0.644928,0.752458,0.48922,0.987331,0.0393343,0.0179023,0.84141,0.0340223,0.826366,0.621268,0.816519,0.719398,0.139113,0.981923,0.428647,0.800675,0.757188,0.0843206,0.769124,0.264121,0.28881,0.535961,0.461575,0.451446,0.932444,0.413684,0.412642,0.520058,0.365961,0.616595,0.955825,0.0988511,0.383949,0.791995,0.846781,0.932923,0.159731,0.00711715,0.319889,0.686277,0.661563,0.848377,0.758828,0.0709237,0.794249,0.121458,0.75796,0.0464141,0.939636,0.496375,0.857661,0.166124,0.514834,0.452185,0.6345,0.387947,0.422727,0.348943,0.331856,0.850484,0.945979,0.256243,0.421327,0.124935,0.803759,0.944469,0.537875,0.527327,0.57548,0.218514,0.240922,0.058437,0.585548,0.34983,0.3518,0.297057,0.371327,0.879068,0.283523,0.149807,0.0281609,0.803591,0.942324,0.116377,0.859697,0.411983,0.714359,0.357431,0.286565,0.934243,0.938805,0.876982,0.854295,0.65922,0.972159,0.37464,0.561668,0.114723,0.117366,0.249325,0.0593272,0.19316,0.714603,0.146409,0.439915,0.488927,0.920665,0.86026,0.560841,0.748516,0.995674,0.0315893,0.431782,0.946357,0.525639,0.140238,0.82096,0.624568,0.334159,0.760292,0.485027,0.0169222,0.0439256,0.733147,0.421129,0.300993,0.861272,0.551924,0.918702,0.749001,0.960685,0.308,0.538667,0.930831,0.435205,0.114233,0.456682,0.533147,0.373027,0.735912,0.0568082,0.446178,0.169517,0.899162,0.0828119,0.401627,0.593417,0.0958497,0.742845,0.486545,0.237907,0.332393,0.990717,0.772533,0.926253,0.762525,0.717272,0.445944,0.382281,0.000692308,0.51019,0.352011,0.689246,0.511925,0.397083,0.171243,0.343732,0.0112585,0.472394,0.55793,0.45568,0.807042,0.423802,0.0425826,0.924614,0.705588,0.801327,0.953351,0.541405,0.0055331,0.850198,0.671135,0.976978,0.778784,0.678666,0.674452,0.588875,0.707565,0.561746,0.144194,0.0712754,0.800609,0.0648656,0.113678,0.470748,0.746805,0.836292,0.684387,0.591466,0.279838,0.466221,0.84027,0.531444,0.207837,0.179422,0.976803,0.220755,0.934224,0.739463,0.552146,0.393565,0.318904,0.528473,0.0647128,0.449194,0.843926,0.884169,0.842775,0.862142,0.228003,0.395195,0.205423,0.445458,0.348375,0.368067,0.623889,0.334076,0.103831,0.135941,0.74233,0.679538,0.794495,0.513785,0.600043,0.251825,0.856493,0.798272,0.624203,0.0255806,0.317275,0.345301,0.0261989,0.360583,0.0185254,0.0569094,0.199191,0.698888,0.980913,0.0369402,0.0881751,0.108041,0.89854,0.851912,0.822114,0.226279,0.747764,0.689369,0.808996,0.833877,0.896831,0.597859,0.68756,0.350106,0.319774,0.402022,0.385214,0.913835,0.168464,0.994365,0.208044,0.841356,0.412906,0.241036,0.31951,0.508969,0.871523,0.8126,0.969845,0.746085,0.236486,0.745794,0.911783,0.0822412,0.780899,0.697209,0.507147,0.351892,0.703267,0.125665,0.663156,0.500895,0.265151,0.67047,0.649671,0.265658,0.149113,0.139296,0.626837,0.512363,0.2748,0.935364,0.917264,0.618433,0.466061,0.962606,0.329177,0.201828,0.880816,0.717277,0.756169,0.498158,0.507764,0.697044,0.513432,0.97071,0.395489,0.888376,0.808328,0.103029,0.180787,0.657086,0.303672,0.985796,0.995025,0.997338,0.110736,0.179471,0.526419,0.344167,0.347708,0.50437,0.664155,0.683497,0.465861,0.0556358,0.822605,0.688992,0.709809,0.578246,0.770169,0.814698,0.601339,0.644189,0.0909898,0.391149,0.179688,0.961466,0.0728401,0.75821,0.518323,0.353922,0.997903,0.0357882,0.345414,0.63928,0.423973,0.523561,0.0587028,0.643994,0.737436,0.189517,0.349619,0.717274,0.0449271,0.67261,0.523545,0.244171,0.876788,0.547463,0.0539834,0.788092,0.682183,0.306766,0.900237,0.836343,0.629438,0.70999,0.234761,0.98813,0.462646,0.861483,0.827173,0.653054,0.330445,0.408975,0.83423,0.503516,0.849283,0.642624,0.740797,0.565047,0.311803,0.0617715,0.651619,0.572222,0.963734,0.143131,0.457957,0.248224,0.587487,0.467777,0.57215,0.700146,0.980464,0.707265,0.541643,0.182868,0.137222,0.322277,0.515412,0.987677,0.338482,0.833495,0.229623,0.252124,0.204839,0.147111,0.951011,0.50083,0.122396,0.82447,0.145784,0.661261,0.922594,0.282747,0.936549,0.0981712,0.247671,0.256989,0.0348163,0.481254,0.952749,0.0710481,0.675294,0.0260198,0.996319,0.486022,0.0456718,0.252968,0.0269794,0.157354,0.198752,0.443347,0.955761,0.386016,0.860211,0.261052,0.114292,0.169116,0.63215,0.425687,0.0977376,0.93185,0.753454,0.686196,0.0895896,0.747791,0.961671,0.408254,0.609881,0.668198,0.979503,0.161406,0.560923,0.909268,0.800049,0.226862,0.816348,0.297782,0.845111,0.886333,0.120196,0.921705,0.704851,0.0291406,0.666365,0.0436716,0.393489,0.678627,0.4273,0.311606,0.632106,0.779456,0.178787,0.132789,0.360712,0.649567,0.832949,0.807911,0.233413,0.645144,0.328944,0.976062,0.734857,0.830576,0.171899,0.149431,0.221543,0.163007,0.546955,0.514118,0.0960888,0.792574,0.268958,0.572807,0.414252,0.177939,0.712435,0.018347,0.394545,0.587733,0.369783,0.823958,0.0332118,0.901666,0.294523,0.0308985,0.352482,0.931539,0.191514,0.169562,0.963958,0.642564,0.231129,0.90614,0.471992,0.874487,0.796426,0.275633,0.710503,0.177786,0.802578,0.462875,0.470471,0.412365,0.868988,0.997724,0.197467,0.310508,0.485626,0.824783,0.123616,0.665714,0.365973,0.381253,0.786994,0.147193,0.835456,0.679356,0.585051,0.463564,0.685041,0.964927,0.269632,0.837811,0.0645961,0.408266,0.83032,0.111794,0.91232,0.92925,0.847696,0.755214,0.0422241,0.533325,0.34828,0.270231,0.655678,0.88691,0.223904,0.0544761,0.919323,0.72841,0.203837,0.92697,0.10344,0.191991,0.126181,0.600913,0.46249,0.383439,0.571137,0.427462,0.418524,0.0580844,0.29187,0.648663,0.112336,0.0662765,0.585262,0.308501,0.720159,0.817871,0.58151,0.843309,0.860181,0.855387,0.77947,0.916101,0.825937,0.419909,0.778928,0.512787,0.692464,0.615846,0.89211,0.849597,0.020525,0.585686,0.24517,0.498975,0.793776,0.0421184,0.207166,0.788821,0.329369,0.0269335,0.0475448,0.456227,0.741786,0.822861,0.14223,0.509427,0.172159,0.426403,0.610174,0.520534,0.669666,0.479215,0.945783,0.658442,0.454375,0.625208,0.356958,0.482346,0.049222,0.321847,0.671619,0.437268,0.811889,0.1368,0.906672,0.299993,0.711322,0.309159,0.0793329,0.918045,0.0546135,0.29588,0.832373,0.449281,0.093768,0.701349,0.157839,0.742648,0.216162,0.637661,0.379386,0.858865,0.0691459,0.333206,0.259274,0.790878,0.671669,0.24639,0.02428,0.946916,0.364325,0.573547,0.341683,0.117082,0.315903,0.259695,0.443627,0.335956,0.985907,0.832227,0.485441,0.653757,0.360111,0.0702822,0.957969,0.554831,0.295722,0.891666,0.573609,0.250629,0.783269,0.720428,0.142775,0.945436,0.147008,0.708359,0.414446,0.976392,0.184138,0.0942949,0.665289,0.238838,0.0824703,0.960928,0.901573,0.845666,0.202304,0.792517,0.160693,0.412788,0.426431,0.283327,0.48272,0.218425,0.46529,0.65037,0.380543,0.578289,0.00752062,0.665167,0.309888,0.745485,0.338032,0.150774,0.943222,0.0522459,0.522235,0.00354445,0.990435,0.196802,0.629994,0.30125,0.528842,0.813001,0.982794,0.49218,0.817347,0.94016,0.491466,0.979104,0.647113,0.795316,0.515668,0.917065,0.624063,0.388832,0.452678,0.776789,0.863279,0.363757,0.427963,0.865478,0.517857,0.678381,0.753557,0.0797479,0.450455,0.969404,0.504126,0.86611,0.311366,0.991377,0.172857,0.0688368,0.633382,0.0556511,0.73998,0.745577,0.151428,0.511272,0.917864,0.15403,0.296257,0.862872,0.757532,0.507501,0.781107,0.614288,0.180045,0.44341,0.609295,0.441505,0.994737,0.487814,0.356796,0.311564,0.881901,0.620099,0.0610761,0.736344,0.608657,0.172616,0.475666,0.799815,0.126068,0.147718,0.649123,0.710558,0.845419,0.000980079,0.79123,0.647577,0.909977,0.894826,0.105607,0.491392,0.543322,0.163644,0.618988,0.237293,0.286331,0.172912,0.965436,0.571987,0.332099,0.579182,0.843389,0.822922,0.0877276,0.292282,0.636617,0.569594,0.968265,0.799406,0.505117,0.150726,0.642375,0.408969,0.88487,0.104905,0.43465,0.164786,0.221148,0.588196,0.670094,0.214091,0.528082,0.47807,0.757157,0.724474,0.315569,0.474836,0.513029,0.892955,0.425462,0.870388,0.847577,0.951038,0.392502,0.432889,0.0531613,0.824301,0.461442,0.751466,0.385371,0.823829,0.690986,0.015807,0.980516,0.963081,0.105185,0.676142,0.662538,0.0536897,0.878871,0.512366,0.5572,0.543347,0.687614,0.808988,0.558015,0.586278,0.613853,0.484224,0.680517,0.167583,0.617888,0.103156,0.0345998,0.65832,0.0936995,0.507528,0.192239,0.952071,0.000490963,0.400764,0.330903,0.198149,0.392757,0.957711,0.473159,0.966841,0.941666,0.776734,0.484203,0.643048,0.455336,0.642079,0.841096,0.708727,0.277541,0.498936,0.161132,0.646573,0.902423,0.611299,0.949308,|0.0813234,0.911531,0.381465,0.108779,0.670475,0.1601,0.799817,0.225212,0.43467,0.619726,0.563253,0.216957,0.958883,0.763021,0.110184,0.423013,0.194798,0.922002,0.0619097,0.592203,0.445256,0.576591,0.093808,0.0769576,0.242375,0.0725057,0.0616259,0.3929,0.910527,0.0201271,0.666015,0.808535,0.545088,0.959068,0.819757,0.109079,0.46182,0.610791,0.172099,0.236164,0.950924,0.592527,0.703139,0.504616,0.0289456,0.715568,0.629408,0.574573,0.773599,0.9248,0.240624,0.445588,0.430593,0.314229,0.0983204,0.206546,0.438314,0.0292182,0.478397,0.430238,0.667165,0.975984,0.0112268,0.888594,0.295168,0.969018,0.441416,0.352853,0.248633,0.200816,0.189578,0.616676,0.564567,0.399053,0.27735,0.620965,0.346432,0.589908,0.394252,0.0298336,0.815259,0.536773,0.499121,0.858443,0.670021,0.483928,0.93195,0.983265,0.0177422,0.316903,0.314235,0.512496,0.0803981,0.853673,0.670737,0.394182,0.515164,0.250931,0.831075,0.121134,0.242502,0.133987,0.749263,0.561717,0.536938,0.49305,0.159191,0.103832,0.646146,0.422464,0.639735,0.0850155,0.068542,0.0748098,0.417126,0.831799,0.634481,0.319902,0.18629,0.227129,0.519872,0.844802,0.418643,0.323153,0.884581,0.661855,0.409663,0.373776,0.200669,0.549542,0.287009,0.126967,0.141466,0.871083,0.252321,0.0978894,0.92216,0.266958,0.786967,0.644696,0.160611,0.108941,0.566745,0.345978,0.784515,0.728124,0.989838,0.800764,0.0862285,0.560734,0.219346,0.689729,0.263915,0.297568,0.187095,0.761955,0.773504,0.66822,0.792486,0.568504,0.305509,0.885297,0.658867,0.701397,0.344869,0.232886,0.514294,0.438146,0.448429,0.37232,0.130453,0.932845,0.60436,0.261924,0.918034,0.53263,0.537265,0.288527,0.0974032,0.0594988,0.835858,0.634619,0.268437,0.064484,0.0343075,0.399769,0.767305,0.630653,0.492543,0.411811,0.554549,0.721827,0.101858,0.60309,0.40149,0.174465,0.135035,0.826193,0.622499,0.990633,0.677858,0.549482,0.785367,0.632837,0.58574,0.72307,0.807696,0.716949,0.423083,0.695998,0.92826,0.0210706,0.563569,0.381097,0.657953,0.879105,0.993607,0.855641,0.791224,0.210822,0.645622,0.303764,0.838474,0.153263,0.86871,0.863475,0.197839,0.160142,0.153157,0.07876,0.0861064,0.0796666,0.859196,0.303566,0.952542,0.663991,0.33001,0.0660757,0.252513,0.956477,0.698493,0.634974,0.979451,0.633943,0.672957,0.0296081,0.124783,0.593397,0.145359,0.121697,0.233906,0.235759,0.0970396,0.255244,0.598089,0.129398,0.888523,0.0875487,0.91831,0.982748,0.830736,0.853518,0.848562,0.933339,0.766148,0.255184,0.762639,0.247906,0.0518324,0.998447,0.0459224,0.767288,0.956981,0.507813,0.813283,0.536569,0.336884,0.837001,0.43519,0.717958,0.672557,0.306174,0.847079,0.869819,0.35133,0.570325,0.985239,0.823223,0.314179,0.374305,0.172487,0.628722,0.693658,0.61907,0.37498,0.962307,0.729212,0.492619,0.513179,0.504845,0.987548,0.193286,0.870292,0.867948,0.134472,0.447355,0.661721,0.956974,0.670432,0.712857,0.537763,0.553489,0.58206,0.757422,0.688257,0.558174,0.544729,0.421477,0.302732,0.609408,0.655951,0.722913,0.197223,0.756235,0.407799,0.607194,0.368879,0.801044,0.600726,0.565718,0.253894,0.413564,0.911282,0.00103998,0.579265,0.512927,0.412913,0.435328,0.557371,0.351309,0.0976101,0.802945,0.391133,0.314993,0.040289,0.558002,0.834932,0.819636,0.220805,0.849668,0.317464,0.79562,0.301089,0.982755,0.266117,0.700279,0.0692978,0.410984,0.535748,0.560674,0.21717,0.205234,0.821571,0.116897,0.976299,0.161694,0.353077,0.351056,0.732635,0.557726,0.863686,0.0214061,0.367878,0.848373,0.41133,0.718816,0.274006,0.102186,0.856781,0.615607,0.369745,0.657732,0.225959,0.993845,0.0231282,0.741687,0.20968,0.550811,0.721993,0.722545,0.19036,0.440008,0.140994,0.537372,0.174209,0.0485416,0.25014,0.640051,0.0809159,0.011898,0.422479,0.0250468,0.059797,0.355616,0.937389,0.396365,0.682892,0.216921,0.0923125,0.0171289,0.680796,0.617922,0.847406,0.716399,0.984276,0.469802,0.877102,0.172506,0.373066,0.669539,0.586833,0.229062,0.484686,0.252122,0.898294,0.358998,0.950919,0.461609,0.134943,0.991359,0.207179,0.729943,0.932778,0.363209,0.713379,0.383237,0.293322,0.808616,0.933455,0.441141,0.943494,0.918728,0.345837,0.462337,0.629772,0.770665,0.901965,0.382449,0.439475,0.897251,0.312662,0.00449938,0.163111,0.981702,0.992795,0.547956,0.370982,0.4233,0.967517,0.346953,0.58539,0.269571,0.903717,0.891964,0.401712,0.0688366,0.545782,0.201727,0.215803,0.181562,0.053626,0.461921,0.376237,0.893209,0.948616,0.112482,0.962244,0.0748075,0.487435,0.354424,0.571353,0.961256,0.0976897,0.171498,0.490535,0.794702,0.256496,0.750908,0.503028,0.998416,0.374171,0.889901,0.58571,0.452882,0.938752,0.491217,0.0332847,0.45065,0.512539,0.635636,0.00195944,0.836553,0.754279,0.806933,0.993895,0.399048,0.160015,0.182182,0.0531839,0.25205,0.454325,0.801268,0.205503,0.737774,0.730057,0.350295,0.0891548,0.531234,0.961218,0.930675,0.457861,0.102521,0.00193441,0.707399,0.865999,0.957519,0.255542,0.341215,0.910408,0.953768,0.839707,0.482732,0.228231,0.0309378,0.925354,0.236389,0.90717,0.291944,0.86093,0.0506673,0.627483,0.570511,0.466177,0.756962,0.0683424,0.746036,0.744928,0.537034,0.478834,0.883791,0.84421,0.914946,0.493049,0.57661,0.190215,0.403405,0.291827,0.0295455,0.793331,0.429332,0.857529,0.173872,0.702966,0.16282,0.418619,0.710538,0.50369,0.568034,0.440066,0.608752,0.87705,0.762895,0.41552,0.749918,0.434637,0.940498,0.0677254,0.845434,0.051082,0.881342,0.344017,0.385469,0.970965,0.746181,0.19347,0.698347,0.114323,0.863095,0.450157,0.770977,0.975201,0.213482,0.351624,0.184512,0.369107,0.169277,0.308415,0.229153,0.674742,0.61726,0.109336,0.731423,0.502821,0.430468,0.0115972,0.0461592,0.405335,0.667367,0.605002,0.993916,0.37008,0.556457,0.411833,0.401959,0.760738,0.566647,0.153341,0.632991,0.635169,0.497234,0.42437,0.0390818,0.125062,0.368732,0.700137,0.107934,0.0932453,0.654982,0.969281,0.626402,0.568494,0.153943,0.398986,0.693554,0.312306,0.565206,0.255914,0.445438,0.41024,0.62354,0.322326,0.741001,0.0559528,0.202429,0.953592,0.0788859,0.326104,0.697025,0.50942,0.910694,0.318796,0.872862,0.897135,0.061475,0.900221,0.560022,0.22164,0.0256642,0.317321,0.703281,0.302614,0.827342,0.459379,0.52249,0.659335,0.932961,0.393209,0.537116,0.933036,0.917608,0.913149,0.117101,0.256671,0.230271,0.0179789,0.767955,0.8944,0.754348,0.574099,0.82237,0.317779,0.369146,0.638477,0.0552942,0.493436,0.731102,0.0485412,0.69439,0.431707,0.618704,0.85164,0.13772,0.418746,0.328746,0.112096,0.726874,0.416609,0.242988,0.88557,0.338192,0.634611,0.790966,0.639415,0.931565,0.0484784,0.644306,0.976561,0.792964,0.145385,0.851932,0.502156,0.841982,0.734812,0.183992,0.332799,0.62659,0.780784,0.048905,0.74694,0.193808,0.911746,0.0577176,0.904594,0.414823,0.247098,0.954026,0.647267,0.394395,0.98627,0.491139,0.0713416,0.991186,0.775831,0.589949,0.123182,0.0713279,0.927119,0.475303,0.768321,0.384862,0.827149,0.251883,0.918242,0.214359,0.266139,0.896856,0.02544,0.8244,0.253055,0.050357,0.905747,0.723635,0.771107,0.00277817,0.739887,0.139126,0.251861,0.850752,0.292665,0.108039,0.293439,0.142264,0.0837633,0.515626,0.769627,0.515556,0.776544,0.187541,0.531603,0.217401,0.105916,0.466413,0.299093,0.0508955,0.608084,0.412844,0.3708,0.0559083,0.631344,0.266177,0.69308,0.177095,0.385017,0.905287,0.855784,0.622505,0.0383241,0.67913,0.0374777,0.0572881,0.803634,0.890526,0.834582,0.516028,0.248758,0.216469,0.919409,0.240413,0.751468,0.16728,0.193996,0.311516,0.575843,0.332775,0.845225,0.685593,0.537945,0.170204,0.105513,0.773675,0.480069,0.63436,0.299638,0.475498,0.391726,0.997148,0.00767851,0.993676,0.384196,0.967024,0.275292,0.258923,0.412256,0.180138,0.461133,0.593196,0.624552,0.944435,0.351342,0.84712,0.350859,0.27133,0.882569,0.851467,0.303349,0.122796,0.1855,0.441974,0.122471,0.21033,0.0911981,0.234682,0.332783,0.733689,0.219733,0.362659,0.863863,0.0749195,0.751457,0.543914,0.19402,0.805803,0.228466,0.795014,0.352491,0.264952,0.701434,0.0998646,0.547506,0.081089,0.873834,0.393442,0.400753,0.777351,0.148112,0.345841,0.0286539,0.936902,0.84657,0.211404,0.372027,0.425909,0.654257,0.638298,0.202202,0.532682,0.84236,0.29405,0.4274,0.12458,0.496766,0.402026,0.401158,0.13584,0.634589,0.559096,0.594981,0.705216,0.866383,0.0483425,0.663432,0.742624,0.56156,0.863582,0.145961,0.964875,0.139942,0.210258,0.460162,0.952119,0.471671,0.536185,0.539681,0.610452,0.756127,0.158763,0.21304,0.603288,0.918154,0.666222,0.385038,0.181841,0.437432,0.90757,0.520218,0.087709,0.782383,0.25491,0.854175,0.462441,0.14073,0.200717,0.433614,0.754351,0.361082,0.674865,0.257005,0.441878,0.0444745,0.08833,0.0736374,0.375479,0.161164,0.19191,0.282415,0.493091,0.34544,0.932069,0.233699,0.022472,0.373464,0.489247,0.537213,0.475099,0.344962,0.808334,0.394935,0.373869,0.477863,0.39956,0.450732,0.798752,0.395549,0.772358,0.466959,0.633193,0.343656,0.266669,0.371276,0.899783,0.843503,0.0577133,0.458847,0.607943,0.304837,0.140038,0.396593,0.410324,0.656227,0.798173,0.801729,0.6347,0.425167,0.252016,0.00577575,0.992297,0.931993,0.376827,0.461039,0.870724,0.841256,0.0146185,0.603338,0.51278,0.43274,0.767147,0.00430769,0.341832,0.402416,0.0551003,0.624931,0.977014,0.796993,0.201492,0.834992,0.673422,0.397622,0.691372,0.300179,0.218934,|0.159984,0.608362,0.515922,0.491695,0.140458,0.131403,0.897734,0.00699663,0.210047,0.654684,0.847763,0.034112,0.741375,0.975672,0.980749,0.842352,0.162452,0.0442718,0.492361,0.553259,0.480461,0.525239,0.276177,0.26864,0.856968,0.600831,0.711757,0.0326725,0.0191068,0.931864,0.818496,0.303381,0.27513,0.305887,0.15278,0.261583,0.388972,0.0636413,0.469002,0.615583,0.243179,0.482937,0.221268,0.913039,0.0180798,0.912485,0.965206,0.512246,0.0795534,0.632575,0.490656,0.259814,0.251671,0.144437,0.9439,0.350714,0.736509,0.552331,0.0522282,0.0204719,0.887049,0.00519186,0.154579,0.26229,0.371744,0.651381,0.705764,0.431266,0.139672,0.172796,0.520922,0.205108,0.212614,0.527775,0.44422,0.415365,0.149029,0.584689,0.915264,0.94837,0.724038,0.263549,0.764647,0.400833,0.776848,0.136354,0.99166,0.0363854,0.755857,0.865007,0.465514,0.90738,0.903772,0.111202,0.739107,0.685884,0.555748,0.984598,0.400459,0.567964,0.0748756,0.274783,0.359197,0.936017,0.490846,0.0269706,0.000105619,0.383666,0.832506,0.700221,0.000930011,0.616917,0.835053,0.530703,0.996316,0.315439,0.85155,0.343983,0.153455,0.948853,0.23262,0.0127097,0.829949,0.790419,0.690934,0.986196,0.496318,0.0112891,0.512551,0.0254506,0.887807,0.830036,0.193425,0.269516,0.386047,0.951935,0.452646,0.255516,0.389291,0.155886,0.251486,0.935903,0.501531,0.087451,0.0663825,0.770063,0.484858,0.162302,0.39465,0.597544,0.218841,0.0257072,0.850045,0.878872,0.846372,0.523249,0.504285,0.824737,0.367968,0.617069,0.826416,0.515242,0.556113,0.894441,0.0796918,0.0883515,0.197374,0.1786,0.507807,0.0407213,0.205916,0.935244,0.0710682,0.187141,0.819074,0.444143,0.881948,0.634401,0.269064,0.862257,0.169585,0.991248,0.989809,0.37517,0.860883,0.207695,0.209556,0.139424,0.198386,0.201222,0.900724,0.874929,0.0853651,0.751132,0.509394,0.646719,0.690626,0.340064,0.549464,0.733093,0.0687926,0.614044,0.0713651,0.667642,0.0685195,0.106965,0.600644,0.798991,0.227952,0.0955379,0.123054,0.0829114,0.725996,0.832948,0.665307,0.993757,0.0528582,0.18007,0.51013,0.40184,0.86142,0.555588,0.48235,0.584925,0.379431,0.932759,0.551906,0.470834,0.595158,0.935091,0.407739,0.859387,0.55896,0.791175,0.513947,0.608156,0.917613,0.201715,0.510725,0.398763,0.95815,0.84289,0.497653,0.296074,0.372213,0.0841174,0.354179,0.810632,0.355976,0.259078,0.283958,0.390306,0.928826,0.565409,0.557836,0.335692,0.225619,0.206641,0.460425,0.0426553,0.994428,0.871675,0.250374,0.860783,0.995082,0.897272,0.167688,0.13387,0.7584,0.643373,0.329139,0.462375,0.155209,0.428802,0.587304,0.497193,0.174802,0.488608,0.459988,0.436195,0.298167,0.726927,0.419644,0.288902,0.0647804,0.67963,0.684339,0.719725,0.118389,0.10347,0.370564,0.448954,0.435542,0.720396,0.883276,0.40997,0.519156,0.759987,0.150085,0.293589,0.394146,0.825463,0.39682,0.0744755,0.925541,0.16965,0.731849,0.686463,0.947513,0.26295,0.897797,0.384854,0.172513,0.226493,0.110876,0.457966,0.282461,0.859408,0.449899,0.425424,0.332132,0.228358,0.992002,0.219679,0.0678189,0.106532,0.66166,0.754944,0.247105,0.95669,0.737298,0.109778,0.677277,0.177641,0.645968,0.98828,0.0213852,0.0974131,0.345517,0.825363,0.815471,0.631787,0.441774,0.643743,0.358569,0.186462,0.223201,0.670768,0.629715,0.0917374,0.11194,0.725395,0.354473,0.709103,0.912838,0.438157,0.439457,0.878836,0.617784,0.206153,0.52023,0.674347,0.610301,0.229818,0.762047,0.929409,0.544787,0.981784,0.174496,0.989319,0.796261,0.872972,0.337964,0.734838,0.758285,0.95534,0.743118,0.34486,0.570124,0.383434,0.733237,0.442722,0.166367,0.850842,0.296924,0.572007,0.235431,0.671831,0.167968,0.647608,0.656772,0.472769,0.0554922,0.961541,0.381027,0.4298,0.606659,0.685363,0.0805641,0.675841,0.133748,0.406947,0.31761,0.773838,0.907945,0.257958,0.0954484,0.817898,0.40135,0.298108,0.937197,0.728871,0.865704,0.853956,0.86153,0.416465,0.109033,0.78686,0.0146735,0.139962,0.882682,0.420617,0.56226,0.113549,0.853171,0.665992,0.777092,0.357881,0.330704,0.143481,0.604227,0.372463,0.231753,0.467233,0.051379,0.310936,0.447751,0.578318,0.590269,0.666629,0.0168461,0.973864,0.436107,0.13382,0.234084,0.089128,0.899942,0.940654,0.902746,0.214873,0.190036,0.526895,0.116618,0.303252,0.0659277,0.762962,0.875141,0.0205753,0.681335,0.394675,0.213242,0.623036,0.764254,0.986675,0.513751,0.376664,0.033653,0.49828,0.0758038,0.183738,0.274876,0.370148,0.422532,0.813629,0.546214,0.953305,0.846218,0.263203,0.656661,0.0771658,0.792054,0.892675,0.930836,0.467195,0.949321,0.424992,0.44983,0.7247,0.17318,0.743855,0.547338,0.774158,0.0601919,0.813231,0.965188,0.144529,0.3405,0.618674,0.396637,0.565205,0.129458,0.746069,0.662859,0.757092,0.621179,0.342048,0.934392,0.704282,0.430141,0.133295,0.736434,0.046206,0.325335,0.734812,0.0759497,0.558143,0.163779,0.998545,0.738307,0.987614,0.390461,0.672182,0.0691333,0.610012,0.365524,0.119334,0.841199,0.307756,0.65828,0.649337,0.876513,0.0645054,0.491845,0.268982,0.393814,0.0762162,0.796412,0.168907,0.343043,0.507195,0.475246,0.367823,0.583263,0.105185,0.0447199,0.224016,0.772151,0.0800259,0.285412,0.534319,0.408004,0.595863,0.40667,0.163014,0.998455,0.349501,0.598949,0.413178,0.355554,0.0192827,0.256657,0.172199,0.358062,0.319504,0.0845787,0.245928,0.596655,0.100242,0.429943,0.345852,0.408865,0.823119,0.714938,0.442522,0.250653,0.457929,0.976549,0.196204,0.716582,0.876319,0.53946,0.755659,0.188549,0.489223,0.448763,0.436028,0.059148,0.863319,0.067387,0.245534,0.895399,0.466139,0.547009,0.0476882,0.696938,0.530075,0.110862,0.855855,0.563627,0.308576,0.478687,0.953385,0.617871,0.322009,0.246879,0.981271,0.884455,0.377945,0.187015,0.235786,0.416207,0.15235,0.159645,0.617277,0.535697,0.426018,0.28903,0.278403,0.170693,0.963971,0.874534,0.16,0.120727,0.40059,0.635427,0.20849,0.204091,0.896081,0.269772,0.615975,0.464755,0.199645,0.779626,0.941656,0.724153,0.0330691,0.907846,0.674424,0.857388,0.445876,0.881099,0.305555,0.760364,0.205445,0.423502,0.70945,0.734108,0.917263,0.835192,0.513999,0.216187,0.630843,0.531124,0.727275,0.350164,0.253381,0.486688,0.142262,0.311255,0.123592,0.781415,0.319624,0.051038,0.190876,0.986842,0.384701,0.893015,0.180088,0.231766,0.721796,0.189979,0.219735,0.135835,0.342908,0.562759,0.973969,0.175208,0.159492,0.572648,0.00164992,0.910537,0.178031,0.0740806,0.633394,0.240334,0.916974,0.20948,0.209721,0.0384168,0.3949,0.101425,0.177908,0.82178,0.907858,0.534098,0.312578,0.790807,0.568533,0.247214,0.764727,0.479191,0.202337,0.230749,0.132865,0.67665,0.477528,0.32553,0.784093,0.728705,0.385348,0.00941104,0.25309,0.42828,0.683508,0.578607,0.269347,0.255725,0.262608,0.532448,0.549883,0.170277,0.708142,0.714224,0.839713,0.345055,0.830278,0.456343,0.945125,0.643303,0.659068,0.338609,0.278051,0.0413768,0.119145,0.433144,0.360714,0.194588,0.216626,0.83991,0.175663,0.216645,0.32074,0.349479,0.684682,0.594202,0.112787,0.411269,0.102857,0.331529,0.865856,0.751696,0.132853,0.30678,0.834421,0.180223,0.0126605,0.725165,0.174939,0.434663,0.796449,0.341324,0.0098443,0.718143,0.636285,0.77269,0.0916927,0.165429,0.168235,0.669146,0.802265,0.861281,0.0180193,0.367207,0.501906,0.834695,0.682343,0.699418,0.0564746,0.967022,0.174807,0.870941,0.897812,0.875397,0.88467,0.244262,0.821538,0.0190453,0.203856,0.0885789,0.46092,0.89822,0.792885,0.504738,0.261604,0.633709,0.113755,0.28668,0.41532,0.65746,0.00135404,0.177754,0.38706,0.451631,0.718509,0.378603,0.717452,0.0158842,0.996834,0.980245,0.830961,0.348718,0.813223,0.767571,0.24632,0.433754,0.728513,0.136725,0.326795,0.108498,0.154772,0.533658,0.533652,0.820136,0.161827,0.987287,0.166979,0.331286,0.0466911,0.293049,0.996465,0.796719,0.449628,0.18543,0.279043,0.563157,0.810033,0.95536,0.254999,0.38378,0.47352,0.792344,0.700573,0.186002,0.805048,0.156956,0.241781,0.202216,0.851666,0.467667,0.177577,0.645121,0.220006,0.807188,0.682533,0.820295,0.996819,0.36431,0.617594,0.0335215,0.863691,0.191533,0.558609,0.668716,0.803147,0.499811,0.0943723,0.488959,0.839578,0.951554,0.178875,0.81682,0.901208,0.200126,0.481473,0.682207,0.980165,0.551136,0.0661162,0.520348,0.120194,0.37321,0.309286,0.426539,0.364856,0.632327,0.982474,0.557438,0.633436,0.459529,0.29591,0.161814,0.31418,0.81014,0.357177,0.257682,0.184313,0.377681,0.0450026,0.371972,0.761324,0.863845,0.831165,0.134151,0.85693,0.0844761,0.428378,0.26353,0.724642,0.512716,0.571784,0.0690407,0.308466,0.918072,0.842398,0.958672,0.706851,0.61879,0.955107,0.242563,0.251885,0.559708,0.0301086,0.109862,0.567674,0.506759,0.944728,0.912453,0.419798,0.0963621,0.18465,0.900785,0.596591,0.643897,0.964102,0.203062,0.414711,0.48027,0.0945345,0.613933,0.567901,0.0749693,0.0754676,0.525381,0.277578,0.0768618,0.918991,0.363248,0.0523113,0.624634,0.741006,0.331243,0.0446851,0.682069,0.936709,0.208061,0.841871,0.222741,0.114491,0.412985,0.718893,0.460843,0.0864807,0.365666,0.919969,0.00530022,0.744835,0.964874,0.473741,0.827547,0.949164,0.203272,0.948779,0.813159,0.339405,0.151189,0.32638,0.184816,0.457355,0.323064,0.173828,0.631716,0.141559,0.511008,0.945721,0.451234,0.118536,0.547766,0.851584,0.386739,0.848534,0.960352,0.153845,0.343911,0.122107,0.624733,0.29928,0.0516597,0.715899,0.514975,0.742404,|0.0371994,0.300866,0.921383,0.653307,0.61542,0.743732,0.198255,0.547185,0.440929,0.0132059,0.962592,0.897654,0.307706,0.368106,0.109996,0.830927,0.512943,0.769773,0.0106218,0.768868,0.0644921,0.74662,0.637556,0.442119,0.861149,0.679903,0.030423,0.517549,0.26771,0.776759,0.807233,0.447717,0.508901,0.245884,0.218723,0.0385078,0.529773,0.756785,0.342811,0.465595,0.0219074,0.0403402,0.8807,0.369354,0.427943,0.303938,0.490549,0.886491,0.421731,0.566404,0.201025,0.427123,0.979487,0.642848,0.717712,0.643571,0.0555579,0.446132,0.224378,0.847243,0.106648,0.23261,0.851938,0.511456,0.785126,0.151318,0.86165,0.749717,0.430234,0.236074,0.262488,0.158714,0.0851923,0.211384,0.695726,0.866213,0.711722,0.690913,0.57471,0.62451,0.656373,0.548323,0.184326,0.984944,0.187498,0.504279,0.967353,0.424155,0.00449485,0.966367,0.890187,0.280885,0.436017,0.962307,0.317226,0.180929,0.116894,0.280632,0.819355,0.437972,0.486838,0.0708011,0.0835309,0.157246,0.600814,0.656008,0.896372,0.127279,0.987761,0.181283,0.3201,0.0515729,0.563638,0.804934,0.837137,0.842143,0.148648,0.681878,0.035706,0.516289,0.575806,0.200789,0.952599,0.00337499,0.510446,0.808137,0.769634,0.931447,0.166983,0.809353,0.631937,0.706124,0.701226,0.352556,0.825835,0.360629,0.154882,0.0201146,0.824586,0.947452,0.427255,0.85945,0.727235,0.242935,0.0573212,0.610631,0.842569,0.608059,0.263551,0.0340595,0.157885,0.3557,0.74621,0.659663,0.951968,0.137656,0.752472,0.934672,0.0183821,0.484799,0.233937,0.968665,0.826181,0.712769,0.429651,0.471288,0.370635,0.835561,0.447131,0.640258,0.756797,0.633149,0.638156,0.413651,0.951595,0.785927,0.192851,0.197067,0.999917,0.869291,0.611863,0.0766634,0.946266,0.756182,0.437077,0.935743,0.532769,0.590444,0.75445,0.687265,0.199596,0.84539,0.285158,0.876113,0.599848,0.889764,0.55741,0.150227,0.482812,0.093989,0.740194,0.85129,0.850705,0.164254,0.571696,0.681266,0.947568,0.812419,0.92273,0.42797,0.835882,0.742614,0.771179,0.564775,0.810457,0.164347,0.216842,0.888208,0.0427494,0.688219,0.448595,0.534237,0.458409,0.707445,0.560644,0.492122,0.421303,0.0574343,0.658309,0.824377,0.534633,0.236322,0.921441,0.817145,0.522503,0.676691,0.420158,0.738368,0.864709,0.686054,0.525667,0.228421,0.153704,0.466427,0.601643,0.71775,0.44322,0.458937,0.139449,0.143256,0.424028,0.978963,0.322566,0.92609,0.555881,0.407588,0.444543,0.490829,0.518947,0.553372,0.392094,0.143611,0.33357,0.432722,0.26347,0.0810233,0.175843,0.0769213,0.506239,0.326889,0.252625,0.931926,0.689463,0.986406,0.39336,0.933564,0.258493,0.291204,0.129368,0.131634,0.109817,0.315376,0.998238,0.609979,0.188533,0.99805,0.669101,0.00625384,0.880411,0.882193,0.533829,0.99458,0.413288,0.454567,0.949778,0.842551,0.258127,0.801135,0.767193,0.981881,0.49408,0.969924,0.890459,0.358853,0.263429,0.95653,0.409037,0.596115,0.3379,0.858586,0.169775,0.124857,0.655744,0.54664,0.120074,0.003232,0.266133,0.841083,0.768502,0.13142,0.52217,0.944618,0.578154,0.216797,0.274598,0.257954,0.779329,0.977549,0.3947,0.602288,0.634954,0.843755,0.26061,0.135452,0.449485,0.324607,0.33166,0.544097,0.789538,0.563212,0.956307,0.379723,0.0721669,0.106131,0.662122,0.650358,0.221086,0.591367,0.686437,0.406856,0.956091,0.961826,0.930645,0.550888,0.185404,0.589142,0.078095,0.253528,0.949187,0.682802,0.925321,0.720008,0.307785,0.586944,0.823397,0.728868,0.554663,0.167358,0.585743,0.0703308,0.512737,0.11953,0.131113,0.0849177,0.362824,0.0558321,0.996126,0.208195,0.319812,0.212616,0.810718,0.322458,0.611286,0.933234,0.750093,0.581843,0.851042,0.10875,0.0521656,0.803754,0.854486,0.320538,0.856805,0.866722,0.264496,0.460829,0.0267345,0.581,0.114602,0.534201,0.997026,0.580053,0.724318,0.797203,0.347552,0.596727,0.1668,0.771868,0.551868,0.864836,0.599387,0.894726,0.418025,0.875477,0.338611,0.834852,0.597564,0.748838,0.266966,0.495368,0.279094,0.654924,0.129741,0.971146,0.311324,0.440291,0.409337,0.154649,0.566961,0.548021,0.595452,0.609312,0.363226,0.074051,0.297533,0.0995752,0.119285,0.0875766,0.595498,0.559326,0.674368,0.950138,0.218835,0.617503,0.285819,0.417937,0.044495,0.357989,0.426775,0.783079,0.19324,0.101488,0.465645,0.421238,0.917173,0.72277,0.24107,0.155231,0.308851,0.702844,0.281289,0.208841,0.742371,0.943339,0.193376,0.406865,0.371306,0.828883,0.797534,0.392177,0.119601,0.273775,0.486805,0.227846,0.862638,0.620605,0.83931,0.0543759,0.610254,0.00497609,0.382365,0.496886,0.691924,0.376917,0.0131393,0.0519947,0.448884,0.723413,0.54017,0.879497,0.307409,0.337657,0.144294,0.626082,0.108156,0.855174,0.891466,0.460877,0.987814,0.544197,0.12704,0.316286,0.786249,0.392282,0.7616,0.783455,0.433037,0.404229,0.0390058,0.926168,0.640538,0.951801,0.0658281,0.248321,0.816053,0.47388,0.662642,0.485081,0.740911,0.644365,0.47611,0.978053,0.686815,0.346276,0.663922,0.34411,0.677102,0.433847,0.453313,0.368113,0.235547,0.423535,0.0304015,0.85338,0.410651,0.867156,0.736504,0.68818,0.637623,0.613011,0.786747,0.753472,0.47644,0.876916,0.0504901,0.47524,0.626986,0.110112,0.225954,0.32648,0.192572,0.832195,0.613794,0.13268,0.795964,0.601035,0.290761,0.83138,0.939602,0.96983,0.262728,0.480854,0.504752,0.0491006,0.0423589,0.407363,0.690245,0.836161,0.392896,0.467546,0.839137,0.969257,0.0345784,0.275326,0.66906,0.978187,0.806368,0.298182,0.351941,0.268353,0.00312376,0.624526,0.297743,0.882718,0.662795,0.229932,0.884285,0.191238,0.335309,0.116374,0.163928,0.580402,0.0700371,0.0438591,0.480908,0.221966,0.131671,0.352748,0.0679591,0.716399,0.604711,0.843198,0.728094,0.37081,0.543664,0.0846603,0.224572,0.302107,0.15245,0.0640349,0.773341,0.247846,0.116662,0.926402,0.026926,0.360098,0.402292,0.462388,0.968337,0.207049,0.956307,0.921551,0.0152957,0.54304,0.759628,0.61995,0.481244,0.194554,0.802718,0.435321,0.104007,0.70259,0.798517,0.535207,0.821444,0.509755,0.288643,0.630602,0.187119,0.0403545,0.951191,0.278369,0.1781,0.340531,0.770634,0.0420099,0.84686,0.765178,0.155683,0.0245329,0.310777,0.944961,0.925023,0.558711,0.450047,0.515824,0.794315,0.963542,0.774724,0.741421,0.229804,0.835002,0.357759,0.720347,0.880938,0.720085,0.844818,0.454776,0.846681,0.201845,0.927952,0.612595,0.498735,0.196921,0.404568,0.472483,0.700268,0.852692,0.169604,0.938364,0.341315,0.120114,0.268524,0.532642,0.497218,0.52938,0.892242,0.335472,0.32659,0.33541,0.518287,0.794627,0.553976,0.769915,0.725405,0.415087,0.766826,0.190446,0.0670176,0.615511,0.920653,0.403839,0.926692,0.209358,0.662548,0.875104,0.348766,0.185053,0.804013,0.57769,0.512337,0.906235,0.228658,0.745769,0.999304,0.663705,0.0209689,0.955487,0.717428,0.236915,0.488061,0.000383139,0.382322,0.360734,0.753926,0.877196,0.864341,0.50764,0.660994,0.512267,0.428556,0.493404,0.368641,0.219918,0.429734,0.391658,0.795217,0.814088,0.927262,0.392218,0.95779,0.701995,0.514975,0.897135,0.237927,0.352069,0.779851,0.97704,0.214186,0.21434,0.671555,0.652317,0.155764,0.913088,0.9051,0.508763,0.200296,0.48241,0.566968,0.299439,0.612956,0.451105,0.991974,0.396927,0.187925,0.255122,0.834524,0.374859,0.56823,0.896789,0.928894,0.571167,0.261003,0.0952889,0.418408,0.72881,0.333706,0.00466818,0.495146,0.821942,0.820483,0.813677,0.854451,0.247173,0.763513,0.446606,0.436277,0.115684,0.445285,0.339726,0.198479,0.234286,0.0542141,0.75141,0.853752,0.215057,0.877182,0.366048,0.967199,0.466711,0.556461,0.194794,0.250885,0.0647969,0.631889,0.435603,0.0133454,0.101714,0.888061,0.248791,0.704929,0.522263,0.969736,0.262773,0.436023,0.937071,0.665267,0.410536,0.611819,0.697787,0.616428,0.158874,0.834229,0.17408,0.773904,0.445181,0.674827,0.600288,0.751609,0.641197,0.271502,0.085548,0.660827,0.00714779,0.853446,0.930093,0.649838,0.333113,0.740214,0.0384592,0.230568,0.482711,0.501219,0.824063,0.494225,0.173573,0.400577,0.112112,0.327193,0.18331,0.546313,0.437393,0.593813,0.00865966,0.354807,0.890554,0.256398,0.449555,0.711924,0.707603,0.473255,0.821916,0.167773,0.0296339,0.651612,0.266508,0.236502,0.762635,0.416435,0.261719,0.865037,0.086596,0.315942,0.842435,0.215616,0.378696,0.957527,0.949689,0.806104,0.556241,0.983006,0.172693,0.087728,0.113582,0.194926,0.303649,0.00168979,0.935957,0.284055,0.635255,0.101668,0.195672,0.317,0.920725,0.861437,0.131959,0.781963,0.821774,0.380333,0.880163,0.399696,0.0418919,0.696788,0.143289,0.844158,0.534589,0.626704,0.955674,0.439445,0.0869225,0.892883,0.629345,0.536286,0.852984,0.327536,0.681181,0.444892,0.20967,0.732091,0.0710918,0.223765,0.941599,0.374823,0.807473,0.113679,0.582036,0.305477,0.638082,0.896898,0.471482,0.603043,0.239398,0.183921,0.565722,0.96203,0.267593,0.507919,0.725448,0.985757,0.798983,0.108673,0.143931,0.384369,0.23135,0.941194,0.525879,0.628207,0.633214,0.757609,0.490239,0.44087,0.362687,0.00355965,0.150819,0.50035,0.692526,0.621158,0.215169,0.510036,0.688674,0.5251,0.743182,0.34744,0.081399,0.118776,0.85468,0.952705,0.494389,0.710586,0.978992,0.391456,0.854513,0.846081,0.101107,0.431013,0.535825,0.359439,0.439534,0.90082,0.676247,0.47868,0.44847,0.156656,0.845865,0.417034,0.775617,0.684302,0.765424,0.338565,0.827364,0.00816822,0.0526918,0.0101342,0.912098,0.0213106,0.184756,0.632133,0.200485,0.167107,0.455693,|0.709864,0.103562,0.427347,0.839008,0.796728,0.677764,0.0317754,0.874828,0.571855,0.373071,0.412747,0.572793,0.301145,0.175375,0.0316689,0.967771,0.296136,0.247335,0.858909,0.283274,0.410773,0.010417,0.483083,0.777466,0.267562,0.052249,0.473314,0.840854,0.532813,0.393806,0.560213,0.0589221,0.653079,0.552128,0.0551865,0.969743,0.351642,0.975943,0.573868,0.2089,0.814056,0.67407,0.124843,0.160484,0.937381,0.886669,0.320739,0.114593,0.92255,0.208781,0.268327,0.859521,0.176992,0.399991,0.137459,0.484547,0.722152,0.755153,0.0197766,0.915279,0.678145,0.874896,0.802137,0.449668,0.814381,0.363731,0.355564,0.632688,0.182506,0.789968,0.911095,0.148722,0.5196,0.921435,0.175666,0.54771,0.795032,0.853282,0.169762,0.794694,0.43449,0.16267,0.437912,0.549482,0.708575,0.678148,0.886519,0.897149,0.986228,0.947608,0.622053,0.420696,0.0537627,0.856488,0.953554,0.952924,0.196629,0.640162,0.309001,0.908532,0.131558,0.12433,0.871849,0.0736074,0.194246,0.30385,0.402931,0.255526,0.330073,0.0771317,0.668797,0.979656,0.0101042,0.293869,0.0708393,0.599222,0.396414,0.0657331,0.762289,0.322707,0.705063,0.401185,0.373696,0.911213,0.650915,0.650857,0.222811,0.7858,0.496577,0.340766,0.715379,0.00493801,0.140409,0.204824,0.67956,0.784879,0.079093,0.179107,0.187947,0.166227,0.784649,0.940692,0.834721,0.300833,0.393833,0.627113,0.534307,0.173791,0.457114,0.371533,0.827879,0.764908,0.754537,0.827119,0.0931946,0.534893,0.135093,0.593949,0.107676,0.189584,0.950368,0.682648,0.302347,0.996076,0.0984031,0.577103,0.0266989,0.911972,0.132842,0.876759,0.758354,0.360626,0.401624,0.492338,0.0179899,0.931242,0.0628908,0.937884,0.84798,0.0952802,0.721249,0.911319,0.675097,0.153829,0.871326,0.287233,0.966246,0.721668,0.334632,0.975004,0.425474,0.729999,0.194819,0.986946,0.965873,0.128432,0.798002,0.574492,0.398004,0.605487,0.632121,0.684159,0.323403,0.654455,0.689497,0.39636,0.538319,0.528218,0.615258,0.55426,0.00943309,0.149618,0.0626051,0.067565,0.0536265,0.602713,0.10294,0.61402,0.23883,0.826273,0.252221,0.746003,0.394495,0.668845,0.101839,0.818674,0.673565,0.171061,0.288992,0.743805,0.572007,0.369119,0.342896,0.248888,0.683095,0.186851,0.77138,0.783753,0.139284,0.0995603,0.538827,0.737903,0.535913,0.452236,0.442416,0.807134,0.42813,0.328928,0.131273,0.687628,0.904037,0.538319,0.286677,0.797669,0.491961,0.655305,0.116923,0.125674,0.289832,0.864302,0.979206,0.814138,0.831489,0.908987,0.728704,0.509026,0.757758,0.392254,0.112981,0.442735,0.960583,0.557346,0.732421,0.611396,0.278287,0.218786,0.816129,0.263949,0.926173,0.0490836,0.846243,0.0233228,0.536987,0.813292,0.775831,0.583947,0.973823,0.407838,0.519167,0.0995966,0.161258,0.734671,0.550372,0.692609,0.705218,0.887386,0.114246,0.650275,0.594358,0.823211,0.710458,0.907453,0.919661,0.217948,0.293341,0.230106,0.954646,0.659027,0.989706,0.622893,0.625201,0.887077,0.513539,0.975244,0.214135,0.730096,0.499659,0.0931343,0.752353,0.164886,0.667631,0.479518,0.828328,0.290527,0.494025,0.122692,0.150681,0.291539,0.0146077,0.73815,0.249332,0.401737,0.0160906,0.20589,0.700573,0.74727,0.914597,0.189747,0.227077,0.0922075,0.276924,0.535363,0.284448,0.419638,0.439603,0.30537,0.342694,0.323462,0.560146,0.637465,0.827293,0.438273,0.57,0.451124,0.252782,0.218736,0.0373023,0.738466,0.967701,0.508124,0.973953,0.445184,0.310574,0.148393,0.921678,0.726447,0.315786,0.957179,0.0588158,0.446377,0.944228,0.72261,0.411129,0.863616,0.653806,0.468812,0.6303,0.786289,0.916223,0.58074,0.113411,0.410284,0.477504,0.239977,0.570471,0.430874,0.62311,0.013834,0.720217,0.0547774,0.825264,0.617559,0.787638,0.662694,0.352956,0.357917,0.184099,0.822176,0.494129,0.559656,0.386246,0.912506,0.779718,0.626182,0.106271,0.640271,0.153532,0.482847,0.895031,0.856012,0.959094,0.420981,0.299957,0.921312,0.63038,0.497737,0.680113,0.720653,0.921687,0.458807,0.767323,0.466981,0.377618,0.397143,0.944852,0.0967333,0.396157,0.170324,0.169164,0.444834,0.571506,0.246583,0.292788,0.139575,0.935195,0.412706,0.0637894,0.0245517,0.451984,0.912866,0.137276,0.876224,0.399618,0.662454,0.875915,0.500584,0.600609,0.473755,0.405977,0.0518471,0.128654,0.721035,0.190879,0.678294,0.953511,0.239262,0.508476,0.918583,0.620456,0.579369,0.675134,0.909461,0.341379,0.024978,0.447554,0.657505,0.991404,0.0880527,0.221191,0.27225,0.238506,0.430287,0.936289,0.899043,0.507261,0.610062,0.987627,0.44293,0.733872,0.206082,0.136409,0.67805,0.864173,0.502196,0.552959,0.329569,0.0283971,0.987912,0.0179003,0.105643,0.0079934,0.795169,0.477767,0.712367,0.309326,0.835179,0.357702,0.915776,0.387833,0.438006,0.94186,0.373366,0.559565,0.341676,0.893173,0.503606,0.473639,0.389827,0.926716,0.410299,0.801297,0.528493,0.781147,0.577689,0.645474,0.133631,0.775473,0.720382,0.391797,0.966354,0.868344,0.530685,0.777809,0.769428,0.522809,0.191455,0.90773,0.484212,0.0273188,0.109283,0.238655,0.890341,0.157378,0.191186,0.470922,0.43381,0.760823,0.38136,0.985638,0.540455,0.272614,0.607999,0.480268,0.497673,0.822504,0.0764055,0.0740804,0.168467,0.108003,0.318956,0.659665,0.231567,0.779932,0.0714091,0.47356,0.376387,0.70625,0.129034,0.953584,0.330818,0.255953,0.982508,0.774495,0.0302788,0.27651,0.139424,0.690152,0.442181,0.54042,0.60043,0.591866,0.794919,0.59116,0.632893,0.504863,0.69585,0.799349,0.520424,0.0517065,0.252138,0.0575716,0.440682,0.200254,0.500959,0.0628941,0.618535,0.697579,0.680245,0.0708287,0.278546,0.8654,0.465572,0.56881,0.479173,0.630254,0.808011,0.772841,0.991862,0.466559,0.967021,0.485699,0.261647,0.766713,0.089364,0.341363,0.863359,0.66155,0.829945,0.815089,0.306079,0.590753,0.0375693,0.081819,0.748606,0.950561,0.034405,0.202201,0.319906,0.793369,0.739492,0.328524,0.747095,0.911971,0.880049,0.560684,0.9539,0.917422,0.229883,0.325915,0.770642,0.446982,0.0790625,0.103909,0.422089,0.756751,0.235258,0.62726,0.605491,0.266226,0.922964,0.020658,0.914587,0.259074,0.558051,0.00339359,0.95708,0.70942,0.318294,0.221923,0.0478903,0.240072,0.451324,0.568881,0.933621,0.470708,0.302296,0.73258,0.757936,0.548975,0.54304,0.40783,0.439819,0.0762814,0.897527,0.35754,0.161051,0.0931758,0.603256,0.0337542,0.831446,0.710667,0.697461,0.992296,0.997329,0.273561,0.0268833,0.477471,0.70365,0.902685,0.0482443,0.617412,0.486315,0.629775,0.747333,0.317276,0.937921,0.988091,0.68509,0.992654,0.99153,0.0962264,0.449049,0.982904,0.483266,0.308938,0.786258,0.470091,0.927732,0.04589,0.950523,0.813199,0.423143,0.504598,0.0607811,0.18034,0.197791,0.495928,0.0298324,0.801703,0.587176,0.502581,0.887896,0.188632,0.418345,0.540762,0.879409,0.577277,0.926118,0.755661,0.90529,0.147538,0.0700249,0.862883,0.192125,0.189891,0.99038,0.0757772,0.772552,0.507972,0.871077,0.447656,0.961228,0.603136,0.00935441,0.214695,0.447231,0.727875,0.118311,0.387149,0.474299,0.315236,0.548213,0.622676,0.604177,0.326077,0.93926,0.222014,0.746487,0.0518551,0.0928362,0.937791,0.278273,0.835898,0.619672,0.202713,0.0222777,0.505321,0.28844,0.37685,0.683847,0.24078,0.633385,0.167402,0.747198,0.237755,0.776028,0.907694,0.883735,0.580726,0.422047,0.442612,0.93136,0.161313,0.373016,0.275539,0.703303,0.891721,0.494102,0.399908,0.988344,0.587041,0.206777,0.708122,0.421497,0.261756,0.20157,0.190456,0.750501,0.366749,0.842932,0.944663,0.989519,0.338706,0.899966,0.750706,0.762843,0.985648,0.0659369,0.364797,0.706225,0.399995,0.160902,0.354917,0.264276,0.315732,0.76938,0.0827067,0.393499,0.145662,0.0538384,0.592834,0.865467,0.702715,0.888235,0.316585,0.753293,0.263976,0.288159,0.226434,0.31759,0.0691092,0.788884,0.162141,0.52092,0.370436,0.946095,0.459969,0.0750983,0.393003,0.472534,0.448516,0.182359,0.650862,0.0338444,0.0262938,0.346448,0.382333,0.161992,0.237837,0.399862,0.192982,0.253117,0.0220199,0.605915,0.485996,0.95735,0.138256,0.681298,0.287037,0.62462,0.624646,0.903505,0.760875,0.489829,0.481376,0.699859,0.646579,0.845505,0.174662,0.163252,0.708116,0.0433389,0.329286,0.490102,0.468045,0.0398372,0.000611901,0.862886,0.878878,0.624436,0.746675,0.232518,0.493878,0.458803,0.134655,0.973091,0.0197498,0.94971,0.804867,0.535146,0.251821,0.309371,0.876306,0.659299,0.28911,0.751052,0.954938,0.799804,0.55482,0.742692,0.509646,0.188794,0.889889,0.460187,0.15821,0.529957,0.592817,0.583085,0.944228,0.474636,0.667619,0.513339,0.633174,0.213179,0.792554,0.919012,0.249759,0.0168443,0.118398,0.811464,0.00598633,0.948803,0.343377,0.638344,0.00973713,0.157689,0.249678,0.944917,0.501577,0.299704,0.045926,0.114752,0.539553,0.5342,0.38375,0.417615,0.602549,0.0772294,0.350903,0.766347,0.0773282,0.395558,0.531924,0.407757,0.988507,0.97134,0.60954,0.395478,0.97315,0.891143,0.0917454,0.782088,0.595363,0.983016,0.734307,0.0970761,0.177295,0.69239,0.223985,0.851701,0.927136,0.204107,0.357654,0.689519,0.467132,0.866085,0.734535,0.200226,0.950544,0.811048,0.449428,0.561721,0.466652,0.382449,0.283427,0.159275,0.908667,0.891953,0.831678,0.608906,0.924784,0.544035,0.413213,0.543307,0.694022,0.712573,0.430195,0.486645,0.88208,0.220096,0.0173913,0.87369,0.198993,0.411128,0.973929,0.838162,0.203647,0.106567,0.0686249,0.764025,0.852073,0.366915,0.378751,0.896991,0.322831,0.608551,0.131385,0.589302,0.28463,0.473463,|0.136912,0.555584,0.939631,0.342859,0.0304136,0.970121,0.628861,0.0808134,0.569442,0.941202,0.208188,0.112324,0.50441,0.806632,0.515917,0.440311,0.239142,0.169537,0.234002,0.119935,0.0780669,0.790834,0.203506,0.0125272,0.0973349,0.624298,0.163348,0.45979,0.205367,0.527629,0.157514,0.0517291,0.381065,0.955822,0.443365,0.341337,0.420667,0.98062,0.515374,0.10645,0.863693,0.936038,0.620384,0.536122,0.548157,0.287437,0.579246,0.190258,0.855592,0.244989,0.686656,0.58867,0.686436,0.548798,0.563479,0.917978,0.533751,0.834004,0.717884,0.295949,0.424975,0.219405,0.672262,0.127549,0.639495,0.819622,0.0705287,0.55282,0.15574,0.040566,0.257828,0.529124,0.106117,0.549984,0.616435,0.0960613,0.463734,0.149919,0.391924,0.0301564,0.865722,0.519097,0.195045,0.699909,0.888474,0.407268,0.430941,0.849036,0.8506,0.776738,0.885868,0.277463,0.190205,0.616267,0.329901,0.0658764,0.751893,0.291344,0.858271,0.170586,0.273088,0.192375,0.352565,0.200472,0.710727,0.274744,0.632814,0.455787,0.166944,0.634574,0.974486,0.215781,0.22889,0.772038,0.00233835,0.0234021,0.265962,0.449076,0.831652,0.00133568,0.30292,0.278722,0.208664,0.842406,0.939694,0.959473,0.416246,0.436466,0.270452,0.491415,0.892782,0.921793,0.570717,0.741819,0.789319,0.167845,0.820422,0.780449,0.805126,0.751787,0.558339,0.514735,0.427153,0.119674,0.37166,0.910695,0.460608,0.421426,0.0868153,0.312831,0.192106,0.154672,0.531236,0.237301,0.380435,0.456252,0.0867823,0.687888,0.910607,0.731626,0.865478,0.193554,0.186009,0.275061,0.409244,0.202105,0.73523,0.498193,0.695724,0.292466,0.244509,0.270884,0.208701,0.390812,0.212485,0.109144,0.515227,0.392339,0.173763,0.518736,0.253141,0.86038,0.250754,0.535237,0.173569,0.229351,0.834208,0.740691,0.60649,0.752385,0.643626,0.757385,0.352234,0.601513,0.35184,0.120909,0.404832,0.237622,0.668401,0.636674,0.984225,0.150284,0.997357,0.5866,0.0687016,0.998927,0.568711,0.0964962,0.625831,0.966274,0.787045,0.693158,0.0755465,0.233213,0.536252,0.422434,0.325584,0.466297,0.905489,0.246172,0.103859,0.739003,0.0703927,0.24018,0.89008,0.744608,0.787674,0.339333,0.270289,0.0598302,0.35756,0.896998,0.728056,0.476121,0.865469,0.687815,0.967107,0.418093,0.264514,0.238761,0.473348,0.179786,0.0148377,0.532905,0.362898,0.465641,0.53967,0.797439,0.123778,0.832424,0.8236,0.0649707,0.296706,0.832131,0.718424,0.162697,0.947126,0.339476,0.798107,0.228701,0.297219,0.71259,0.108943,0.984471,0.450272,0.0761047,0.764567,0.801327,0.888327,0.98565,0.449898,0.0799158,0.230041,0.438963,0.225596,0.260747,0.113323,0.717065,0.236502,0.948632,0.405712,0.608034,0.0117716,0.00954217,0.203254,0.441097,0.656207,0.62042,0.15251,0.186107,0.961761,0.0371137,0.577821,0.212041,0.354362,0.590388,0.307472,0.267123,0.77665,0.586442,0.849234,0.133439,0.826776,0.248753,0.444886,0.2845,0.187076,0.626823,0.649825,0.51282,0.532554,0.636691,0.152819,0.992358,0.954354,0.81359,0.789751,0.653075,0.496199,0.255046,0.912558,0.483065,0.876173,0.593427,0.294676,0.194321,0.353716,0.461698,0.742495,0.978588,0.617568,0.299066,0.313949,0.51639,0.469429,0.914057,0.554433,0.518686,0.525081,0.104416,0.512128,0.0932878,0.785428,0.12128,0.782253,0.369016,0.252997,0.808098,0.211053,0.0112554,0.423975,0.758511,0.158135,0.668037,0.255176,0.971874,0.517181,0.456176,0.55977,0.439448,0.839724,0.432184,0.858445,0.815826,0.888867,0.524725,0.481865,0.159122,0.188698,0.791497,0.529808,0.657678,0.122129,0.121065,0.91639,0.683232,0.477341,0.952633,0.860869,0.843251,0.111368,0.91831,0.0588722,0.669539,0.0670651,0.655883,0.988316,0.648214,0.406174,0.547605,0.338681,0.347302,0.492045,0.196349,0.549407,0.565569,0.671507,0.617718,0.859796,0.499118,0.0129054,0.767601,0.788762,0.571022,0.892529,0.506558,0.019566,0.20115,0.0787142,0.865798,0.571063,0.673237,0.0311137,0.100968,0.132757,0.165184,0.0788841,0.52936,0.0475906,0.351318,0.900368,0.85405,0.600814,0.0199788,0.980894,0.812487,0.675793,0.574087,0.628561,0.0563523,0.93486,0.309719,0.82193,0.112115,0.798197,0.384732,0.94997,0.162111,0.58547,0.911249,0.250942,0.6472,0.716009,0.038477,0.852166,0.409904,0.766621,0.56483,0.75993,0.0940864,0.422477,0.79367,0.468105,0.84306,0.614395,0.878891,0.416647,0.966549,0.138795,0.737049,0.218939,0.842063,0.876714,0.0951929,0.845617,0.716978,0.226806,0.188405,0.368032,0.905577,0.836052,0.688386,0.526532,0.985782,0.694638,0.485796,0.751319,0.795235,0.712177,0.221323,0.210157,0.542013,0.54419,0.848851,0.225691,0.526581,0.970266,0.963485,0.0215026,0.90048,0.251562,0.0449831,0.486242,0.283064,0.798637,0.467395,0.511806,0.0943832,0.0131556,0.61701,0.802817,0.105068,0.996106,0.411676,0.00707889,0.972172,0.877637,0.248372,0.618799,0.217884,0.0194196,0.0111939,0.806365,0.442639,0.610239,0.365473,0.694263,0.0281143,0.735267,0.918165,0.339547,0.0539758,0.00265801,0.0183069,0.755443,0.823094,0.405465,0.936644,0.984039,0.189544,0.352618,0.918978,0.431406,0.45724,0.71544,0.38313,0.688123,0.44662,0.0799549,0.754881,0.766828,0.93094,0.37143,0.0417044,0.361589,0.753936,0.721961,0.0239522,0.90992,0.933478,0.533057,0.0227113,0.495074,0.546284,0.224736,0.135485,0.974212,0.522836,0.526354,0.611652,0.728003,0.515054,0.0555745,0.756725,0.681241,0.284126,0.66125,0.681465,0.659006,0.74007,0.0827308,0.850031,0.573511,0.560623,0.770513,0.886015,0.187934,0.0047009,0.875526,0.905925,0.999115,0.123184,0.572166,0.809174,0.322205,0.813844,0.359315,0.548869,0.174831,0.023441,0.280655,0.630547,0.470678,0.898767,0.0121001,0.248517,0.724667,0.925468,0.143749,0.908966,0.114839,0.564982,0.921897,0.857311,0.777538,0.723288,0.78564,0.75813,0.500274,0.173405,0.846625,0.522671,0.541239,0.641595,0.817226,0.300782,0.261903,0.336055,0.25174,0.117298,0.851286,0.130969,0.546067,0.642042,0.579007,0.272659,0.757701,0.652278,0.552628,0.604143,0.502797,0.0900584,0.0482823,0.867738,0.331995,0.101992,0.679302,0.771619,0.194259,0.554013,0.723598,0.514547,0.122492,0.00342935,0.797385,0.307352,0.865165,0.511357,0.686294,0.519078,0.886038,0.500005,0.696382,0.641531,0.549671,0.529652,0.392288,0.449771,0.919332,0.207611,0.0020054,0.602569,0.384647,0.632998,0.984199,0.205462,0.54903,0.63891,0.763375,0.945341,0.251503,0.242562,0.52508,0.812159,0.271509,0.0248193,0.354102,0.833252,0.177569,0.228794,0.808123,0.0030033,0.433363,0.427287,0.313178,0.057394,0.00948876,0.148566,0.406046,0.686723,0.0834832,0.415246,0.385236,0.827257,0.322214,0.164935,0.531602,0.995666,0.339306,0.0276017,0.656556,0.20635,0.779296,0.0128117,0.621439,0.0735902,0.596797,0.106847,0.748825,0.185183,0.79786,0.300514,0.882378,0.411571,0.122218,0.129405,0.0626261,0.343396,0.399644,0.120735,0.519382,0.86585,0.591955,0.216833,0.692327,0.219396,0.0541443,0.593168,0.39013,0.794706,0.0886089,0.314735,0.767214,0.3731,0.32003,0.62026,0.206868,0.483664,0.464477,0.78841,0.695715,0.0363512,0.438679,0.594375,0.274516,0.104623,0.580334,0.882545,0.37395,0.913907,0.969485,0.0593628,0.980758,0.595364,0.238188,0.0334525,0.946687,0.0562586,0.674547,0.932592,0.310077,0.227477,0.202736,0.774949,0.736383,0.13897,0.0401255,0.453897,0.379265,0.73904,0.493295,0.178389,0.128084,0.786302,0.0209767,0.0515919,0.0266251,0.872476,0.979573,0.36755,0.0830731,0.373981,0.521826,0.945865,0.104764,0.66971,0.986184,0.110767,0.154775,0.897976,0.283974,0.161001,0.189039,0.677487,0.232569,0.771649,0.350809,0.871866,0.352004,0.594251,0.157592,0.235002,0.862398,0.790475,0.808997,0.609624,0.066614,0.295582,0.82608,0.0406126,0.118627,0.511419,0.385147,0.144943,0.265181,0.0451719,0.229145,0.0502456,0.690318,0.684604,0.136353,0.114152,0.863802,0.510613,0.247762,0.710369,0.921859,0.375593,0.242298,0.788399,0.936849,0.125569,0.209682,0.772779,0.889494,0.742366,0.43972,0.686339,0.699936,0.317713,0.522502,0.206582,0.82632,0.228948,0.980329,0.696249,0.875565,0.336895,0.759163,0.670563,0.458528,0.871295,0.0704771,0.733127,0.379935,0.00473464,0.912207,0.846527,0.132255,0.231392,0.634542,0.340845,0.381756,0.176713,0.893345,0.226805,0.0267128,0.865436,0.106494,0.314664,0.424519,0.837576,0.757691,0.697351,0.0650059,0.00320113,0.980504,0.196748,0.910545,0.393814,0.812895,0.145506,0.159312,0.167526,0.669555,0.91848,0.0916166,0.953962,0.181641,0.0895011,0.695752,0.614581,0.0260766,0.0323008,0.626908,0.771518,0.664729,0.261864,0.6414,0.359622,0.563988,0.03899,0.449698,0.11698,0.681993,0.431282,0.990892,0.142541,0.517363,0.422096,0.296266,0.661385,0.783469,0.78084,0.815232,0.12904,0.179935,0.227863,0.948959,0.286852,0.157605,0.360018,0.94951,0.572834,0.12934,0.833144,0.840711,0.705956,0.0867315,0.327359,0.110203,0.0250189,0.873269,0.576233,0.581255,0.746688,0.0760772,0.590528,0.369657,0.276783,0.255928,0.478329,0.506934,0.943496,0.426077,0.0754225,0.623046,0.135956,0.0170982,0.751776,0.97756,0.236309,0.952595,0.68656,0.0600738,0.295658,0.987129,0.857455,0.781141,0.359718,0.383219,0.849725,0.479735,0.438417,0.350036,0.0562379,0.120342,0.462768,0.649522,0.998849,0.836902,0.0444379,0.820193,0.256525,0.255417,0.452014,0.273738,0.176106,0.282218,0.796142,0.882891,0.736204,0.62921,0.198899,0.695375,0.513859,0.731106,0.962167,0.515833,0.371088,0.566367,0.802022,0.525198,0.178248,0.0502501,0.78436,0.278152,0.122573,0.4709,0.854533,|0.00753289,0.910438,0.572378,0.00333226,0.318702,0.890398,0.971375,0.165422,0.337789,0.590723,0.180167,0.243008,0.869574,0.120567,0.989835,0.517653,0.726088,0.836019,0.505971,0.866731,0.735458,0.00555229,0.583659,0.984331,0.629892,0.308348,0.72976,0.744133,0.229498,0.797964,0.0543354,0.236385,0.909469,0.74005,0.535574,0.765532,0.940585,0.557036,0.895938,0.58427,0.857249,0.668989,0.637831,0.546907,0.178729,0.465948,0.696489,0.58985,0.847811,0.448797,0.0175239,0.130502,0.258138,0.737994,0.722416,0.120961,0.958538,0.569674,0.919883,0.322902,0.426362,0.402514,0.846872,0.592899,0.467498,0.742844,0.713893,0.404164,0.134518,0.581537,0.121461,0.986383,0.841609,0.611353,0.939557,0.998006,0.882154,0.970238,0.10841,0.636194,0.220179,0.6989,0.588801,0.675864,0.988464,0.13637,0.646254,0.984797,0.827365,0.859879,0.951742,0.466744,0.164157,0.880687,0.821485,0.268144,0.292496,0.42737,0.0283896,0.950158,0.0209702,0.817806,0.813354,0.107416,0.41885,0.879266,0.0280336,0.262793,0.0846743,0.0600499,0.156209,0.621209,0.61048,0.767693,0.344325,0.7491,0.145685,0.47881,0.689601,0.513695,0.827501,0.973486,0.57781,0.923465,0.0458688,0.376368,0.904842,0.375686,0.76158,0.538186,0.822483,0.929487,0.647191,0.370335,0.822171,0.0549684,0.178988,0.267896,0.26771,0.443453,0.453247,0.768524,0.152065,0.915965,0.486711,0.399941,0.61657,0.0891506,0.140597,0.243223,0.463437,0.856082,0.653303,0.952293,0.611155,0.779769,0.0303641,0.0618109,0.313034,0.940807,0.449854,0.16497,0.365206,0.709098,0.119916,0.703545,0.609714,0.88451,0.929108,0.0917001,0.676283,0.673042,0.554618,0.681931,0.288512,0.524146,0.611594,0.69383,0.405624,0.887158,0.2557,0.325391,0.682125,0.688777,0.433927,0.118819,0.929704,0.583754,0.803759,0.267188,0.0804369,0.131184,0.0281561,0.762235,0.730345,0.216889,0.921173,0.975911,0.900945,0.548698,0.41812,0.97401,0.00667089,0.70931,0.92679,0.294555,0.432268,0.764486,0.265198,0.0349039,0.40056,0.949633,0.453021,0.0792545,0.0990128,0.176324,0.700149,0.703879,0.87506,0.322027,0.538505,0.405132,0.917778,0.894976,0.801437,0.672981,0.87141,0.345425,0.896639,0.480054,0.470495,0.363752,0.810073,0.675052,0.891551,0.627913,0.31851,0.0552599,0.590331,0.230872,0.287802,0.786816,0.0268764,0.410666,0.663962,0.995042,0.797922,0.734239,0.073538,0.545083,0.99618,0.147478,0.116148,0.687054,0.808113,0.715686,0.2566,0.565961,0.714381,0.544397,0.954577,0.202287,0.717856,0.463345,0.162608,0.167806,0.881901,0.122486,0.979451,0.189476,0.670215,0.990597,0.500612,0.496347,0.621331,0.774906,0.337451,0.063507,0.843831,0.283945,0.746746,0.970859,0.751016,0.314587,0.637019,0.298895,0.678053,0.501018,0.21756,0.402162,0.884564,0.549785,0.90072,0.531459,0.388489,0.324875,0.181699,0.771332,0.950988,0.514297,0.922405,0.0314389,0.93612,0.502539,0.669303,0.464229,0.442551,0.0595131,0.908392,0.846769,0.949732,0.076391,0.879299,0.0877374,0.860742,0.0735417,0.30792,0.426239,0.659187,0.473086,0.563513,0.509475,0.846221,0.762591,0.511264,0.175224,0.70536,0.765363,0.7111,0.0344831,0.317005,0.7534,0.132695,0.597812,0.671882,0.125866,0.683998,0.759333,0.260307,0.420384,0.166048,0.0322414,0.762272,0.921326,0.943945,0.681115,0.450999,0.48575,0.645101,0.105093,0.541117,0.837884,0.148216,0.952444,0.192299,0.295675,0.316269,0.260659,0.118004,0.738437,0.479709,0.0582456,0.761438,0.682639,0.946076,0.345278,0.0343617,0.112509,0.373672,0.100745,0.717897,0.287211,0.0839795,0.671423,0.551093,0.154611,0.737702,0.212229,0.366749,0.544106,0.437466,0.226658,0.561712,0.793305,0.485762,0.676748,0.341871,0.195833,0.756936,0.181573,0.324848,0.470908,0.179699,0.919066,0.115006,0.360369,0.0231043,0.702978,0.771887,0.368319,0.336765,0.274346,0.549297,0.41343,0.878471,0.188778,0.479105,0.188507,0.464217,0.0394655,0.296706,0.716355,0.602793,0.180856,0.383504,0.707528,0.000340521,0.706677,0.724033,0.183253,0.597772,0.0542913,0.379193,0.256774,0.360376,0.819182,0.415865,0.560888,0.830774,0.282084,0.0745447,0.863076,0.114713,0.833734,0.528953,0.688216,0.54625,0.656791,0.0877907,0.748338,0.114067,0.236457,0.572808,0.791867,0.862038,0.214015,0.340106,0.272017,0.586748,0.470492,0.432581,0.978576,0.994939,0.344835,0.563364,0.924685,0.283739,0.682834,0.238025,0.00362879,0.601115,0.0963279,0.910103,0.669292,0.840763,0.744168,0.671953,0.821885,0.876984,0.760951,0.245281,0.066303,0.0118278,0.291995,0.518476,0.694376,0.104654,0.585417,0.878333,0.476744,0.0944784,0.244907,0.628808,0.389834,0.714789,0.99018,0.282129,0.665537,0.298648,0.0542073,0.710197,0.987557,0.23397,0.0880294,0.265907,0.536207,0.882509,0.623966,0.763571,0.687515,0.588345,0.970162,0.40945,0.373618,0.241309,0.660781,0.732597,0.524527,0.790818,0.750292,0.873787,0.43384,0.34022,0.952695,0.83578,0.440278,0.385233,0.290186,0.356039,0.0675536,0.525612,0.581968,0.0954791,0.527939,0.879178,0.687455,0.614999,0.195785,0.529147,0.374863,0.486608,0.334468,0.956212,0.37148,0.0295678,0.296293,0.771998,0.489146,0.586675,0.667455,0.439085,0.835793,0.603573,0.27408,0.823225,0.209068,0.795975,0.278974,0.798477,0.597789,0.647084,0.527342,0.626472,0.38573,0.651323,0.394405,0.367315,0.269725,0.0274142,0.893171,0.914703,0.574637,0.31748,0.973596,0.29039,0.625789,0.529905,0.902688,0.203968,0.709053,0.342153,0.772121,0.728732,0.29022,0.534967,0.911533,0.253821,0.505498,0.197385,0.924327,0.888517,0.572617,0.554512,0.946024,0.0200059,0.724248,0.11513,0.494661,0.659203,0.805647,0.179463,0.698746,0.827404,0.374268,0.0668763,0.536883,0.229902,0.391939,0.160012,0.0517325,0.147705,0.0863654,0.498603,0.408555,0.245276,0.820323,0.164436,0.910539,0.48697,0.725575,0.122051,0.962354,0.799199,0.709202,0.201524,0.828781,0.0124891,0.788394,0.0207544,0.0506233,0.982406,0.944621,0.897756,0.681331,0.564977,0.772913,0.0796783,0.209676,0.0942576,0.289437,0.902345,0.350181,0.999537,0.80307,0.931327,0.0545639,0.0186939,0.631697,0.735541,0.217621,0.588118,0.426808,0.502068,0.799996,0.193972,0.815043,0.78033,0.112386,0.0358883,0.134908,0.551117,0.143017,0.980114,0.529495,0.334779,0.24848,0.297575,0.748752,0.638536,0.345847,0.154822,0.279936,0.0626658,0.998316,0.34257,0.744701,0.41059,0.252219,0.668304,0.784819,0.0845858,0.0110545,0.282295,0.526229,0.660423,0.25843,0.960111,0.996681,0.110153,0.255394,0.0822239,0.394497,0.782202,0.675172,0.557509,0.50124,0.420079,0.616258,0.150635,0.557353,0.687244,0.265831,0.058787,0.276304,0.381338,0.759078,0.0251171,0.0237902,0.31443,0.0243907,0.826454,0.441727,0.658139,0.387539,0.584995,0.226446,0.244516,0.928666,0.178318,0.424539,0.409247,0.672051,0.878197,0.377369,0.312181,0.347726,0.109444,0.407213,0.241922,0.178683,0.0294564,0.248546,0.647399,0.478343,0.250394,0.404497,0.168269,0.215576,0.154836,0.2578,0.480608,0.324679,0.540842,0.506101,0.632915,0.354736,0.839897,0.432287,0.512743,0.462437,0.128205,0.859898,0.357824,0.800229,0.927493,0.436679,0.957843,0.0953163,0.0559025,0.488335,0.447506,0.0141746,0.699566,0.0760244,0.784149,0.265141,0.351924,0.83173,0.00213909,0.406054,0.215759,0.716247,0.958947,0.436636,0.413836,0.494961,0.877604,0.837209,0.368153,0.145609,0.592285,0.181982,0.0979552,0.506143,0.611027,0.908548,0.152856,0.913355,0.33792,0.509335,0.30343,0.973014,0.151648,0.0820678,0.55627,0.597697,0.331809,0.56147,0.280847,0.283129,0.122308,0.58551,0.684347,0.523431,0.737303,0.517284,0.922879,0.96134,0.642204,0.612283,0.803686,0.777279,0.0667509,0.368086,0.735793,0.658251,0.659426,0.258308,0.41556,0.673247,0.333926,0.210184,0.156489,0.767295,0.403545,0.0377323,0.539624,0.213689,0.990823,0.152579,0.153731,0.176424,0.812171,0.308418,0.564498,0.356634,0.732924,0.959966,0.326192,0.561718,0.64381,0.901453,0.942589,0.616638,0.995498,0.105781,0.475563,0.0158374,0.483877,0.219106,0.236693,0.092403,0.627468,0.429758,0.839248,0.441638,0.550526,0.881777,0.402584,0.353241,0.823397,0.265467,0.340087,0.476909,0.543541,0.923853,0.63658,0.0466343,0.507561,0.842666,0.671279,0.419533,0.0084756,0.490173,0.455241,0.152679,0.641891,0.401359,0.912435,0.66676,0.426749,0.38091,0.898414,0.815425,0.0478442,0.618217,0.135642,0.380936,0.376865,0.729274,0.774345,0.232657,0.201797,0.779343,0.922161,0.403547,0.897738,0.228023,0.529495,0.680023,0.561236,0.299537,0.558429,0.26494,0.179523,0.733719,0.430642,0.0352951,0.00346941,0.168811,0.989284,0.290304,0.251623,0.110176,0.521104,0.809269,0.566822,0.80582,0.489272,0.0242558,0.764008,0.485025,0.0575264,0.69798,0.21438,0.185094,0.435679,0.0268974,0.476358,0.829547,0.875919,0.80468,0.687137,0.411259,0.499632,0.480114,0.902462,0.641009,0.722876,0.15747,0.0674905,0.394726,0.417601,0.161739,0.876359,0.226084,0.0564113,0.630235,0.0561438,0.660774,0.897257,0.821874,0.417115,0.0962489,0.685349,0.143646,0.213198,0.788804,0.933145,0.698242,0.10849,0.709599,0.951761,0.631282,0.366517,0.27349,0.982306,0.625459,0.0501968,0.0686926,0.888432,0.433489,0.20911,0.787746,0.643097,0.869977,0.459282,0.350774,0.591029,0.663203,0.0564072,0.627522,0.0778386,0.473912,0.747399,0.513421,0.132509,0.664601,0.0112054,0.959924,0.753205,0.330649,0.762978,0.507456,0.964948,0.958358,0.863888,0.936835,0.236436,0.125304,0.0844791,0.368122,0.312569,0.899079,0.861985,0.620934,0.988352,0.244685,0.495571,0.646027,|0.573519,0.479817,0.368527,0.141784,0.210713,0.341748,0.389441,0.486893,0.358163,0.669153,0.914796,0.446166,0.408063,0.391357,0.332662,0.857381,0.439343,0.353485,0.454289,0.720557,0.647849,0.119505,0.448861,0.271045,0.0156386,0.394459,0.547031,0.167355,0.57053,0.852981,0.253296,0.25037,0.937209,0.120697,0.912545,0.990318,0.851307,0.561572,0.490267,0.833561,0.376728,0.638258,0.988793,0.917607,0.3563,0.919228,0.421713,0.328966,0.0699518,0.309034,0.601236,0.744761,0.714917,0.730218,0.321098,0.371354,0.675055,0.0489818,0.376399,0.773308,0.491233,0.478873,0.29932,0.0195298,0.140797,0.569886,0.967479,0.299613,0.978615,0.356902,0.596755,0.788885,0.502175,0.609678,0.966334,0.673301,0.584786,0.94366,0.827545,0.723983,0.285321,0.26401,0.561009,0.137359,0.194143,0.408892,0.0300041,0.704391,0.0921794,0.899401,0.73674,0.018811,0.370113,0.43718,0.438295,0.259879,0.0477319,0.235116,0.904351,0.224867,0.336007,0.130053,0.708554,0.514167,0.105787,0.237827,0.14793,0.254932,0.705739,0.724815,0.942377,0.474184,0.286752,0.361179,0.815549,0.1901,0.790989,0.811804,0.349187,0.430446,0.855539,0.80071,0.349114,0.631787,0.0988188,0.409048,0.467494,0.359419,0.322073,0.802902,0.335306,0.130363,0.127443,0.070235,0.730958,0.0121703,0.147479,0.712962,0.272454,0.482696,0.0667124,0.0310578,0.831621,0.262835,0.251244,0.907415,0.879958,0.410119,0.408097,0.724242,0.620748,0.928848,0.373108,0.925136,0.0728237,0.419084,0.237255,0.280113,0.242995,0.240322,0.28853,0.256929,0.554307,0.526909,0.712675,0.25464,0.993517,0.992835,0.31368,0.719927,0.703064,0.511137,0.154273,0.0136521,0.646321,0.689585,0.0553054,0.858774,0.0841672,0.511239,0.45225,0.0572091,0.567913,0.42164,0.493565,0.758884,0.126355,0.0455803,0.238982,0.135338,0.72996,0.401305,0.453707,0.990452,0.799239,0.395526,0.559118,0.447415,0.51049,0.796754,0.251373,0.4547,0.964183,0.119392,0.851077,0.671825,0.908762,0.656797,0.539229,0.817539,0.340543,0.522704,0.879879,0.513066,0.346599,0.147442,0.166039,0.229075,0.979871,0.784621,0.327455,0.571165,0.889331,0.969064,0.291367,0.748913,0.612787,0.143577,0.715398,0.861858,0.815815,0.387445,0.161297,0.34454,0.12738,0.830794,0.401216,0.513104,0.531581,0.9821,0.388507,0.241051,0.251705,0.956319,0.333979,0.568019,0.0612891,0.283102,0.322204,0.79276,0.318143,0.459823,0.989306,0.463116,0.373268,0.64163,0.285868,0.103933,0.773278,0.570717,0.384424,0.0303177,0.99004,0.697939,0.423349,0.0731775,0.0101334,0.00412077,0.00909007,0.327026,0.116815,0.0347907,0.241984,0.816986,0.83116,0.568942,0.496692,0.904976,0.143753,0.805203,0.53499,0.500118,0.850594,0.833096,0.962952,0.0584185,0.892528,0.0258553,0.343475,0.626471,0.537314,0.107447,0.68446,0.289603,0.489074,0.319834,0.0816644,0.787949,0.114646,0.877911,0.789545,0.114644,0.765462,0.513948,0.290822,0.442286,0.256372,0.746216,0.840435,0.0809976,0.817889,0.237936,0.947513,0.475804,0.183957,0.125338,0.395815,0.121475,0.974843,0.97403,0.656681,0.971332,0.924422,0.184101,0.721994,0.578602,0.570425,0.193651,0.0812923,0.0643617,0.988871,0.414469,0.913212,0.981507,0.787841,0.0156682,0.0201085,0.698421,0.917682,0.763928,0.69182,0.845121,0.35088,0.734072,0.493906,0.394006,0.257042,0.290541,0.516617,0.0437571,0.231956,0.595876,0.506463,0.562166,0.263082,0.178855,0.710039,0.616911,0.478238,0.396811,0.882181,0.301069,0.852262,0.129046,0.54895,0.610947,0.11421,0.697096,0.964704,0.0956872,0.127784,0.232027,0.688017,0.435299,0.407331,0.331648,0.572573,0.0376995,0.434459,0.2293,0.0828468,0.276162,0.660765,0.180186,0.167899,0.926808,0.45561,0.0378959,0.873296,0.934638,0.604157,0.924175,0.589382,0.489551,0.879863,0.690886,0.190921,0.143372,0.106297,0.0610029,0.840702,0.361265,0.883827,0.987876,0.777688,0.467018,0.27292,0.84739,0.653157,0.503685,0.392238,0.00181293,0.377198,0.502421,0.378182,0.541157,0.200038,0.990823,0.501054,0.487046,0.0897982,0.619241,0.751756,0.793957,0.82791,0.0323236,0.00567824,0.896702,0.768405,0.529127,0.61079,0.0858265,0.0503741,0.614133,0.547052,0.103668,0.908501,0.909194,0.42452,0.96579,0.598551,0.490877,0.58989,0.361601,0.703022,0.105391,0.504636,0.158509,0.603934,0.505657,0.840079,0.231276,0.0639542,0.523992,0.080582,0.122567,0.244639,0.106446,0.969252,0.978636,0.0951881,0.0863557,0.245393,0.922791,0.599895,0.2074,0.351619,0.793731,0.184854,0.927123,0.735895,0.119185,0.432051,0.0676776,0.356793,0.283508,0.439134,0.336961,0.155662,0.497307,0.447506,0.770193,0.534406,0.960305,0.41261,0.0743517,0.971691,0.420527,0.434057,0.69883,0.177935,0.679231,0.561466,0.500205,0.246171,0.848566,0.372341,0.137375,0.925818,0.162031,0.764681,0.884603,0.227769,0.511209,0.844911,0.608413,0.276284,0.96715,0.953866,0.140904,0.607195,0.280183,0.624413,0.523143,0.314058,0.575825,0.753639,0.3787,0.737617,0.310045,0.750493,0.186731,0.687823,0.332635,0.769303,0.742848,0.249225,0.842803,0.352718,0.21435,0.661424,0.0999019,0.668266,0.694386,0.864046,0.254486,0.960874,0.0423966,0.481776,0.555654,0.631709,0.61394,0.58548,0.166321,0.37102,0.796909,0.775423,0.405624,0.0144798,0.924753,0.954749,0.0858994,0.939705,0.970818,0.98846,0.887824,0.436917,0.642182,0.427206,0.565873,0.913661,0.940613,0.591873,0.358855,0.952826,0.556611,0.255857,0.129757,0.116786,0.268393,0.303824,0.7519,0.372079,0.79036,0.818375,0.0710393,0.940455,0.375459,0.54482,0.9805,0.539878,0.961146,0.437743,0.272987,0.553422,0.595052,0.830695,0.151629,0.893834,0.274356,0.737455,0.717758,0.768924,0.801862,0.501566,0.39584,0.988986,0.213266,0.746513,0.0547921,0.171204,0.209295,0.856765,0.608582,0.313048,0.709155,0.821874,0.389305,0.613321,0.582935,0.182011,0.0135565,0.239907,0.453369,0.757834,0.55469,0.543059,0.853118,0.119153,0.353351,0.361108,0.626061,0.136564,0.218735,0.879699,0.904145,0.0241995,0.611709,0.827501,0.582031,0.562783,0.0995919,0.545478,0.654233,0.500785,0.0522604,0.193646,0.653132,0.143464,0.880707,0.14664,0.484149,0.177676,0.712313,0.800427,0.56414,0.92579,0.625898,0.968342,0.816579,0.159786,0.88116,0.297669,0.246977,0.058453,0.406117,0.623128,0.324877,0.544976,0.673628,0.0294477,0.90523,0.669469,0.251342,0.298819,0.828465,0.833272,0.473094,0.815521,0.548239,0.477006,0.654092,0.526777,0.0649121,0.29083,0.410464,0.0756841,0.429847,0.772367,0.492927,0.193599,0.88732,0.34104,0.331763,0.254208,0.490196,0.778278,0.790452,0.112316,0.524273,0.400437,0.11724,0.368263,0.610036,0.61751,0.848065,0.528653,0.676412,0.0610278,0.871398,0.618275,0.15255,0.487388,0.453022,0.966538,0.330281,0.997146,0.745257,0.971952,0.229812,0.61123,0.808841,0.348142,0.443591,0.939568,0.925724,0.367071,0.567189,0.84165,0.805932,0.856822,0.526557,0.687502,0.626758,0.677635,0.0360515,0.1475,0.658921,0.447041,0.405602,0.75844,0.555793,0.345425,0.869899,0.560313,0.515095,0.841857,0.747361,0.46786,0.78836,0.609377,0.417026,0.103563,0.86351,0.30666,0.554767,0.369868,0.670075,0.280769,0.441916,0.457764,0.119261,0.0188534,0.573011,0.150572,0.934883,0.0768539,0.994085,0.308744,0.12445,0.56607,0.417623,0.646697,0.842434,0.668405,0.838262,0.315822,0.332835,0.410759,0.962456,0.513105,0.750947,0.613604,0.741408,0.447471,0.131203,0.80949,0.53949,0.477947,0.286602,0.370219,0.0180561,0.891401,0.664173,0.762241,0.299638,0.975376,0.541087,0.491164,0.438356,0.351811,0.00659347,0.427744,0.198306,0.234005,0.366143,0.759194,0.832429,0.289532,0.94921,0.78652,0.972593,0.84483,0.54773,0.480143,0.201819,0.321515,0.138038,0.0755981,0.214843,0.8305,0.852717,0.951125,0.340812,0.222917,0.3716,0.594782,0.62644,0.936105,0.458289,0.436996,0.368782,0.714056,0.203561,0.0949086,0.890433,0.564921,0.767918,0.931143,0.497638,0.156773,0.578697,0.207911,0.059508,0.773121,0.462373,0.383867,0.229047,0.36859,0.181847,0.670674,0.600663,0.374728,0.515084,0.106913,0.51099,0.586613,0.34133,0.354564,0.515526,0.481271,0.598635,0.745253,0.34241,0.488938,0.658143,0.258689,0.570366,0.80958,0.579998,0.934169,0.69127,0.629084,0.727771,0.626758,0.0349374,0.315885,0.322617,0.827676,0.475866,0.356164,0.762476,0.65393,0.647558,0.135954,0.639957,0.260967,0.215903,0.544976,0.401868,0.725338,0.944723,0.760884,0.694064,0.180416,0.138427,0.39757,0.645546,0.0848579,0.43077,0.632201,0.744387,0.973122,0.852142,0.871185,0.597121,0.0352009,0.274291,0.65633,0.197096,0.0522642,0.689931,0.975572,0.0940676,0.805859,0.962216,0.016674,0.498731,0.572776,0.146297,0.810346,0.570684,0.699099,0.636403,0.795538,0.348366,0.0698403,0.0864861,0.512352,0.781064,0.425726,0.723506,0.681327,0.871654,0.529261,0.495826,0.435366,0.186987,0.166487,0.868896,0.441248,0.137296,0.12438,0.191541,0.690037,0.926706,0.373789,0.321638,0.444567,0.821032,0.411247,0.0678502,0.322819,0.980391,0.556168,0.332604,0.640256,0.780838,0.303891,0.912796,0.90691,0.365429,0.772225,0.0592473,0.0782908,0.516335,0.296076,0.577841,0.52571,0.272612,0.523601,0.607388,0.519986,0.919189,0.754337,0.349842,0.000398159,0.929802,0.846962,0.310892,0.860799,0.347051,0.171285,0.471246,0.635825,0.784524,0.640684,0.732167,0.245332,0.790621,0.677528,0.153851,0.85928,0.927793,0.57794,0.585201,0.729982,0.0918043,0.986523,0.679473,0.399407,0.874405,0.580539,0.14438,0.988217,0.72021,0.128591,0.642501,0.451394,0.683694,|0.835136,0.266984,0.252765,0.382344,0.546447,0.746007,0.331705,0.0816426,0.137767,0.385554,0.670819,0.722684,0.0756513,0.0907031,0.322563,0.392756,0.782649,0.163319,0.461956,0.808184,0.6559,0.39919,0.252565,0.652369,0.500301,0.966264,0.529983,0.898299,0.733567,0.648368,0.848862,0.380749,0.0836141,0.884454,0.937893,0.572661,0.776567,0.271157,0.729515,0.601438,0.917432,0.490428,0.593282,0.0983067,0.31777,0.332997,0.885185,0.180076,0.682172,0.107536,0.0304191,0.43641,0.425819,0.102013,0.0813698,0.157961,0.178101,0.161479,0.822652,0.940757,0.60726,0.977698,0.228977,0.731123,0.297912,0.100574,0.417463,0.908854,0.0343239,0.980914,0.600609,0.714379,0.279093,0.541898,0.484535,0.27669,0.714843,0.682864,0.116291,0.719289,0.331132,0.301791,0.643905,0.203124,0.0960882,0.348095,0.901275,0.0652279,0.587953,0.792248,0.165883,0.491811,0.862328,0.322536,0.401647,0.834552,0.495645,0.015411,0.53621,0.795469,0.522707,0.830411,0.269406,0.205734,0.912124,0.128106,0.731939,0.804713,0.0547007,0.846839,0.0357057,0.190985,0.224211,0.0636696,0.810438,0.634,0.774735,0.948918,0.216022,0.0844367,0.803174,0.0396413,0.196935,0.761887,0.294745,0.0635883,0.80418,0.0706786,0.00487131,0.910628,0.894579,0.425063,0.563568,0.951093,0.142526,0.0794539,0.619739,0.0410766,0.258843,0.722456,0.13737,0.300239,0.0296074,0.394025,0.0373356,0.224097,0.805416,0.786288,0.460675,0.36263,0.0492624,0.339151,0.0456324,0.241734,0.726713,0.449215,0.181027,0.00644886,0.26929,0.432606,0.130214,0.0503944,0.92217,0.301452,0.666738,0.887061,0.290314,0.81954,0.237179,0.878862,0.705437,0.819081,0.126613,0.357339,0.531629,0.617665,0.763011,0.473782,0.218568,0.551154,0.228569,0.218029,0.364308,0.327206,0.159817,0.845738,0.661531,0.831175,0.951139,0.188736,0.318198,0.38804,0.704364,0.442283,0.546021,0.196005,0.79156,0.208391,0.150097,0.605014,0.754112,0.268524,0.330809,0.505369,0.959941,0.521231,0.0397113,0.506828,0.508488,0.391643,0.310919,0.303208,0.12291,0.945916,0.794736,0.707734,0.813487,0.162556,0.854585,0.636391,0.213184,0.537566,0.867595,0.565639,0.343145,0.723423,0.00965744,0.874268,0.326334,0.789508,0.541189,0.0811219,0.45235,0.508177,0.320781,0.584205,0.769207,0.852058,0.924595,0.317452,0.971712,0.846555,0.806156,0.578022,0.491271,0.907413,0.335579,0.465947,0.680796,0.186237,0.575951,0.221725,0.550395,0.923433,0.86346,0.489526,0.762595,0.300115,0.599802,0.709356,0.90701,0.316779,0.929488,0.538492,0.160827,0.455391,0.720514,0.56467,0.939348,0.115774,0.719266,0.308683,0.212203,0.865309,0.500083,0.998382,0.511784,0.200719,0.512292,0.571286,0.507871,0.25852,0.260106,0.183523,0.478881,0.262255,0.962165,0.587661,0.804601,0.323527,0.930006,0.998599,0.698456,0.261368,0.9212,0.280743,0.233242,0.488931,0.387338,0.826227,0.847013,0.042562,0.400821,0.241154,0.854098,0.138412,0.180903,0.595634,0.251167,0.0785573,0.165949,0.713631,0.126794,0.861396,0.108778,0.693512,0.29374,0.0789217,0.379336,0.97461,0.190011,0.0637549,0.755513,0.765077,0.624464,0.108954,0.891271,0.175688,0.722187,0.0279841,0.648097,0.13248,0.0259037,0.217853,0.945844,0.823439,0.582138,0.737495,0.0621551,0.649212,0.891845,0.340422,0.355114,0.143666,0.741106,0.112129,0.253469,0.936916,0.91959,0.97996,0.804986,0.368802,0.533111,0.178993,0.0531273,0.0731162,0.914913,0.399895,0.732577,0.23128,0.848756,0.954894,0.156938,0.0273619,0.267732,0.90387,0.218662,0.769697,0.958501,0.953445,0.971113,0.295884,0.705188,0.7902,0.211748,0.31572,0.338298,0.189311,0.694678,0.923531,0.835388,0.00967211,0.900835,0.828656,0.552551,0.816124,0.720379,0.228787,0.467017,0.29463,0.678033,0.287186,0.492804,0.473453,0.0593143,0.470151,0.409069,0.283211,0.428238,0.215541,0.389788,0.821411,0.283511,0.0393921,0.825137,0.766566,0.733251,0.256473,0.933327,0.0238358,0.775414,0.470295,0.81841,0.867311,0.181042,0.370203,0.174294,0.941275,0.215028,0.78899,0.256333,0.0416689,0.772799,0.469113,0.464159,0.182364,0.672365,0.618835,0.917576,0.0520973,0.666432,0.752208,0.0802319,0.743013,0.0956846,0.375563,0.866058,0.702488,0.991789,0.651897,0.656928,0.888758,0.152689,0.663841,0.71549,0.857354,0.585234,0.613119,0.286909,0.183091,0.487118,0.344735,0.795955,0.616774,0.0903108,0.483031,0.796786,0.0715784,0.183616,0.733692,0.429947,0.646834,0.256343,0.397858,0.706423,0.982187,0.162701,0.997256,0.811771,0.924766,0.673534,0.237444,0.693295,0.449872,0.443113,0.995721,0.101068,0.727293,0.195977,0.780592,0.381149,0.0405078,0.946183,0.249682,0.817652,0.344248,0.367985,0.7675,0.402663,0.858945,0.799495,0.643092,0.781491,0.983945,0.555974,0.422027,0.517686,0.0971944,0.00981534,0.593027,0.186904,0.3689,0.82767,0.599308,0.221118,0.773289,0.665666,0.138598,0.128892,0.61877,0.104681,0.445334,0.211807,0.874056,0.277839,0.417683,0.00612277,0.995303,0.54078,0.675312,0.722415,0.26112,0.916402,0.391411,0.182249,0.215933,0.437749,0.143611,0.385899,0.676221,0.803741,0.0199497,0.479368,0.637308,0.487298,0.340043,0.537344,0.414589,0.922754,0.309134,0.31462,0.162733,0.665307,0.251436,0.662475,0.0791669,0.943261,0.165767,0.854376,0.0797983,0.412356,0.403303,0.862445,0.053524,0.77751,0.501463,0.344138,0.489954,0.751019,0.992245,0.557552,0.859286,0.873549,0.864378,0.188163,0.211821,0.937165,0.478433,0.794867,0.213375,0.220144,0.545716,0.682296,0.747381,0.243591,0.763025,0.475106,0.759185,0.676727,0.578449,0.923429,0.0741051,0.275605,0.0853302,0.353201,0.351999,0.980438,0.29584,0.100599,0.514706,0.618743,0.544471,0.314398,0.325591,0.771654,0.67838,0.907137,0.610533,0.110473,0.142512,0.452298,0.1798,0.558693,0.0939358,0.63739,0.962866,0.0397581,0.954534,0.878401,0.0349145,0.600539,0.960963,0.0358403,0.360932,0.846292,0.742483,0.250765,0.0989428,0.425603,0.672461,0.734808,0.754962,0.885461,0.71763,0.000720799,0.727884,0.103194,0.0961773,0.823826,0.336838,0.397479,0.0405152,0.681675,0.915559,0.76342,0.243405,0.0348026,0.539775,0.422037,0.868529,0.208405,0.963992,0.785188,0.884642,0.619702,0.234925,0.695377,0.342301,0.418178,0.592291,0.584297,0.921664,0.0908127,0.0134419,0.251344,0.627283,0.201452,0.581852,0.234704,0.304061,0.558523,0.244826,0.423134,0.914917,0.881331,0.474403,0.794079,0.473883,0.556169,0.16506,0.484754,0.683443,0.537636,0.627467,0.879904,0.161334,0.466592,0.0809969,0.463692,0.163083,0.329946,0.822856,0.121151,0.602301,0.357583,0.433255,0.730329,0.372897,0.872874,0.205275,0.474485,0.543049,0.678344,0.759632,0.191696,0.0103359,0.509741,0.220006,0.00366348,0.0457328,0.365065,0.569212,0.779615,0.967027,0.513675,0.13131,0.998579,0.704187,0.863501,0.123237,0.304585,0.0907278,0.120945,0.691169,0.774419,0.0369011,0.801973,0.518835,0.206807,0.545526,0.359624,0.517658,0.62615,0.330734,0.955908,0.0530574,0.327981,0.848881,0.0656441,0.122031,0.609709,0.253718,0.664025,0.236368,0.620315,0.295624,0.757757,0.386935,0.44598,0.0431739,0.569884,0.909475,0.945787,0.298639,0.948238,0.433984,0.84543,0.012812,0.093399,0.675969,0.1297,0.762823,0.771787,0.5446,0.828114,0.268385,0.366247,0.505307,0.0011121,0.421502,0.0984452,0.390239,0.74086,0.448657,0.265168,0.368129,0.729019,0.223152,0.371544,0.952256,0.934444,0.121728,0.31875,0.334645,0.375593,0.558072,0.403011,0.0309286,0.191083,0.648066,0.927125,0.992124,0.664915,0.736816,0.178314,0.370706,0.256847,0.0886214,0.135755,0.888266,0.40696,0.313919,0.203693,0.900606,0.531994,0.288351,0.851821,0.498537,0.327855,0.647613,0.785374,0.836226,0.0666512,0.985138,0.958222,0.830979,0.246328,0.150654,0.714936,0.582425,0.559546,0.170264,0.18587,0.365595,0.491916,0.393403,0.674443,0.940998,0.106888,0.536981,0.861544,0.570056,0.616851,0.541414,0.378249,0.255942,0.764775,0.435266,0.683586,0.268366,0.435789,0.312522,0.426818,0.297614,0.991339,0.121801,0.787118,0.180152,0.49939,0.686607,0.665263,0.201093,0.170253,0.0511591,0.276724,0.631979,0.894391,0.970484,0.945696,0.306457,0.863525,0.0429283,0.826992,0.510788,0.801493,0.187703,0.222148,0.321567,0.0626748,0.387192,0.56626,0.821045,0.784589,0.586158,0.872708,0.533771,0.916398,0.353203,0.122532,0.195551,0.372811,0.677182,0.080902,0.925811,0.462947,0.583891,0.329047,0.91807,0.0825755,0.277269,0.440494,0.123169,0.867394,0.0766968,0.232232,0.445333,0.985152,0.943845,0.200828,0.84663,0.860505,0.997663,0.757761,0.047529,0.351994,0.812278,0.927392,0.31744,0.682042,0.0612181,0.946163,0.597937,0.977663,0.612484,0.066793,0.416335,0.830876,0.518345,0.958615,0.996481,0.423679,0.354314,0.961645,0.770751,0.102999,0.472007,0.337302,0.499371,0.0133988,0.230346,0.0891366,0.618542,0.0803486,0.479547,0.981053,0.212139,0.328199,0.361354,0.854386,0.773907,0.731234,0.140206,0.125798,0.34477,0.613874,0.425213,0.434802,0.130942,0.72487,0.573635,0.442735,0.13976,0.234208,0.988744,0.347468,0.163998,0.165644,0.754776,0.884171,0.222853,0.408986,0.0684158,0.0230539,0.038288,0.741765,0.631465,0.138889,0.778891,0.790898,0.284654,0.91837,0.615978,0.824487,0.823673,0.0205384,0.0622253,0.872956,0.419611,0.658053,0.655701,0.803883,0.817256,0.715513,0.184371,0.486544,0.376279,0.459494,0.906843,0.0236159,0.0826881,0.838143,0.973345,0.588225,0.552753,0.825771,0.119171,0.796962,0.370629,0.185006,0.396108,0.421534,0.839066,0.773748,0.517784,0.259736,0.782944,0.583454,0.0219366,0.355683,0.837796,|0.314953,0.473839,0.280382,0.492795,0.365242,0.179746,0.107106,0.761303,0.54403,0.320147,0.425561,0.537392,0.983171,0.848213,0.896385,0.184588,0.877187,0.903338,0.158629,0.0737577,0.487288,0.984413,0.356312,0.544055,0.931466,0.0276871,0.308731,0.990376,0.201381,0.255211,0.813682,0.133363,0.703329,0.819894,0.27732,0.172287,0.48,0.828595,0.60148,0.824718,0.758741,0.355148,0.0474979,0.235495,0.757566,0.869324,0.170043,0.495585,0.530018,0.400736,0.717574,0.114938,0.948571,0.489903,0.939688,0.0250555,0.705007,0.623624,0.224609,0.323908,0.143285,0.51708,0.677424,0.340308,0.72679,0.379696,0.0712805,0.967318,0.57345,0.44016,0.218266,0.441507,0.427002,0.525036,0.444798,0.825821,0.659382,0.266007,0.327093,0.42517,0.760354,0.479839,0.220823,0.791149,0.196528,0.439217,0.107718,0.755505,0.471843,0.342864,0.987766,0.394111,0.799962,0.210441,0.214091,0.587752,0.876144,0.556613,0.114681,0.936964,0.624733,0.0217865,0.461635,0.231986,0.501374,0.0203153,0.169562,0.268703,0.645305,0.36036,0.103901,0.391395,0.383009,0.574165,0.00207675,0.955477,0.221648,0.509453,0.034979,0.205918,0.574307,0.794069,0.0510033,0.623376,0.631165,0.815741,0.586667,0.694322,0.957663,0.616871,0.589053,0.0359381,0.0825341,0.648584,0.88525,0.0890926,0.522886,0.107599,0.800456,0.757039,0.496324,0.288041,0.659824,0.655635,0.951124,0.990647,0.731073,0.424,0.234024,0.972707,0.450843,0.961355,0.0477876,0.563912,0.670535,0.411024,0.872513,0.186944,0.427024,0.172743,0.351115,0.242378,0.657687,0.304404,0.650161,0.0401127,0.108219,0.897146,0.662725,0.0679886,0.440533,0.975596,0.533248,0.501725,0.685979,0.88356,0.713294,0.338381,0.326165,0.541828,0.9146,0.811069,0.853445,0.866304,0.460096,0.44208,0.863125,0.882992,0.345947,0.994454,0.64716,0.847571,0.552393,0.185177,0.483312,0.802401,0.469766,0.677565,0.719698,0.711216,0.249302,0.358995,0.883509,0.401847,0.956764,0.931879,0.354484,0.998981,0.585953,0.214199,0.383743,0.241286,0.277399,0.770389,0.606413,0.79893,0.817875,0.908663,0.252205,0.58113,0.469819,0.794875,0.739778,0.175083,0.832747,0.385087,0.681284,0.304416,0.974882,0.352793,0.284364,0.109302,0.874901,0.576475,0.735423,0.452046,0.864501,0.320264,0.390226,0.957261,0.914198,0.494603,0.109652,0.250602,0.945,0.0818819,0.695123,0.607099,0.756206,0.529499,0.442773,0.526986,0.351566,0.439103,0.0432234,0.840097,0.165367,0.818307,0.662215,0.600265,0.248642,0.691014,0.993004,0.669682,0.714541,0.411536,0.396363,0.461798,0.454564,0.692858,0.995691,0.647218,0.966226,0.472197,0.0367216,0.174785,0.548208,0.442958,0.359708,0.149265,0.883568,0.965531,0.308939,0.518928,0.942919,0.919806,0.0267792,0.0603256,0.716211,0.913066,0.275695,0.902726,0.265573,0.962427,0.358786,0.535789,0.539568,0.541076,0.670481,0.682711,0.15226,0.447097,0.910246,0.93308,0.110775,0.996062,0.527192,0.218451,0.447533,0.676559,0.166997,0.982831,0.717673,0.740349,0.0190477,0.899086,0.360121,0.887831,0.00342309,0.849154,0.595569,0.940727,0.149822,0.220977,0.0700561,0.328258,0.675321,0.456193,0.584234,0.451763,0.260933,0.905717,0.32572,0.409186,0.380216,0.354287,0.605287,0.115567,0.828471,0.476946,0.207697,0.659621,0.552767,0.775778,0.516731,0.249414,0.303983,0.68312,0.664585,0.31664,0.971519,0.887792,0.394357,0.288964,0.00599754,0.768727,0.577344,0.41,0.90337,0.298894,0.171461,0.141237,0.609024,0.315232,0.17703,0.360745,0.50446,0.282437,0.0565237,0.292778,0.932863,0.522004,0.123369,0.127148,0.296354,0.471076,0.887495,0.571359,0.270196,0.183337,0.996758,0.272641,0.988012,0.371519,0.120258,0.0920659,0.546993,0.868458,0.798511,0.752885,0.0721473,0.15443,0.614831,0.190451,0.640894,0.656845,0.673766,0.304976,0.0654821,0.918222,0.202366,0.82539,0.253914,0.732902,0.368808,0.657147,0.943058,0.940047,0.59954,0.495,0.493719,0.954245,0.447613,0.425153,0.571923,0.0309771,0.346696,0.856109,0.303513,0.425794,0.109305,0.709422,0.435316,0.928474,0.76936,0.16876,0.06832,0.0105657,0.361142,0.828718,0.794697,0.523862,0.629216,0.012908,0.150805,0.419475,0.659004,0.567355,0.217493,0.610603,0.196717,0.336829,0.979598,0.790144,0.691783,0.742091,0.317468,0.305506,0.429888,0.84139,0.194737,0.132707,0.09521,0.0316209,0.0143656,0.116701,0.443304,0.505205,0.839575,0.943267,0.468638,0.657133,0.00265586,0.13868,0.0116168,0.502188,0.474222,0.973573,0.234429,0.923701,0.898859,0.0018121,0.370616,0.110357,0.302053,0.640474,0.998722,0.0324096,0.592186,0.244042,0.544492,0.149656,0.0700068,0.281796,0.688676,0.565162,0.187264,0.810802,0.647471,0.478811,0.915461,0.340852,0.19025,0.00543404,0.289401,0.333262,0.10449,0.48849,0.740743,0.975241,0.116328,0.166251,0.991171,0.475035,0.504277,0.417837,0.918977,0.498675,0.466731,0.203636,0.966301,0.753053,0.867241,0.887867,0.373083,0.136823,0.141806,0.622185,0.806934,0.791869,0.320387,0.185787,0.0629018,0.674432,0.365365,0.824466,0.789075,0.907098,0.850883,0.739918,0.940439,0.86823,0.846325,0.176588,0.574138,0.991453,0.237024,0.255107,0.188901,0.0547484,0.0685465,0.961195,0.285133,0.471874,0.802036,0.494013,0.827376,0.70408,0.491262,0.770708,0.611133,0.834376,0.625233,0.831215,0.145784,0.653322,0.290289,0.437595,0.959826,0.0706156,0.92521,0.296155,0.240723,0.85226,0.146445,0.913292,0.593889,0.0925317,0.21911,0.854246,0.825178,0.512815,0.400905,0.532747,0.835407,0.204616,0.387736,0.40945,0.346334,0.868597,0.242235,0.125938,0.946888,0.442208,0.442251,0.491058,0.120664,0.736103,0.0612422,0.22357,0.0822635,0.0150655,0.696826,0.132472,0.798803,0.0531844,0.852859,0.0308551,0.181787,0.796371,0.483938,0.900408,0.0976549,0.579739,0.893864,0.150869,0.430431,0.226256,0.694349,0.643932,0.223879,0.189167,0.363278,0.706176,0.0353609,0.226516,0.424478,0.774575,0.188745,0.209025,0.658433,0.696022,0.667891,0.142726,0.951852,0.302342,0.725119,0.0852498,0.103434,0.686723,0.73433,0.103286,0.970667,0.593475,0.989157,0.157748,0.69244,0.687565,0.684893,0.65829,0.0423515,0.910024,0.720501,0.0795293,0.41394,0.805413,0.98052,0.381184,0.672677,0.641175,0.912462,0.447905,0.55154,0.0929968,0.165743,0.790423,0.770272,0.375303,0.0528317,0.0498794,0.434972,0.850182,0.328578,0.710315,0.702709,0.727526,0.15071,0.822833,0.868478,0.22053,0.0125265,0.490011,0.328,0.490866,0.029316,0.708986,0.897162,0.0818354,0.779294,0.941122,0.715041,0.133503,0.122851,0.951326,0.568738,0.262571,0.416582,0.446099,0.144025,0.643835,0.0417176,0.507171,0.827368,0.537113,0.386106,0.641252,0.552409,0.858994,0.079703,0.46991,0.663719,0.625933,0.932472,0.545309,0.506724,0.96091,0.773031,0.159318,0.781417,0.528647,0.219391,0.796976,0.910812,0.548148,0.285185,0.0813918,0.00327462,0.125355,0.9269,0.230188,0.0209812,0.712601,0.754807,0.586306,0.463288,0.294248,0.800511,0.9251,0.376535,0.374421,0.457502,0.909876,0.567355,0.327212,0.210729,0.455232,0.491612,0.57604,0.685555,0.342165,0.477204,0.295947,0.472698,0.589661,0.27512,0.650681,0.30203,0.195161,0.314664,0.74188,0.392974,0.206399,0.735314,0.00684905,0.857758,0.497681,0.687645,0.991646,0.792391,0.953073,0.262398,0.70025,0.133132,0.00414723,0.51613,0.838591,0.77925,0.9019,0.836371,0.749023,0.364609,0.669049,0.698681,0.388442,0.694373,0.979686,0.832341,0.646741,0.232902,0.246488,0.797628,0.288144,0.893504,0.795861,0.72338,0.420397,0.851493,0.840296,0.903288,0.714568,0.585362,0.824801,0.309823,0.0996758,0.958019,0.120017,0.170991,0.279226,0.913419,0.21626,0.961135,0.595227,0.98329,0.499945,0.0468011,0.600819,0.715351,0.393026,0.869929,0.345206,0.823303,0.350133,0.620905,0.292527,0.608338,0.434442,0.734312,0.66619,0.103483,0.631533,0.829385,0.573105,0.377042,0.211048,0.271809,0.389575,0.0816111,0.229108,0.633784,0.0221782,0.304693,0.0057826,0.328191,0.429777,0.371457,0.29064,0.351323,0.154608,0.467742,0.928148,0.515919,0.132898,0.0160015,0.815065,0.00413728,0.360549,0.598314,0.667581,0.455736,0.713432,0.039714,0.0957922,0.601162,0.696266,0.396477,0.0520291,0.239641,0.677192,0.091983,0.643174,0.775943,0.914349,0.335673,0.293181,0.532066,0.645922,0.0455675,0.350676,0.19329,0.306675,0.304013,0.674462,0.854647,0.167496,0.954752,0.0676528,0.408805,0.710852,0.987311,0.389865,0.266436,0.5986,0.493102,0.693111,0.0423977,0.807748,0.282152,0.670617,0.24144,0.340604,0.534949,0.322315,0.13098,0.10074,0.0160698,0.439259,0.584194,0.207319,0.52395,0.152735,0.641199,0.142441,0.885364,0.799967,0.156858,0.927258,0.20066,0.14132,0.680197,0.671432,0.0479874,0.14154,0.545712,0.316242,0.977056,0.193611,0.80566,0.522289,0.115687,0.0949548,0.903439,0.510578,0.214506,0.848566,0.892436,0.754051,0.627952,0.114681,0.956647,0.361965,0.405815,0.480159,0.793707,0.1755,0.846652,0.817376,0.815356,0.179804,0.929765,0.00493038,0.475853,0.607654,0.0560281,0.00983942,0.0881395,0.144018,0.975532,0.847371,0.269978,0.669207,0.0976526,0.408402,0.714997,0.684502,0.410696,0.180098,0.492276,0.522696,0.291019,0.951157,0.228958,0.286318,0.561634,0.419331,0.743278,0.763788,0.218455,0.0958685,0.335719,0.355379,0.210846,0.889252,0.891833,0.196581,0.312472,0.0720478,0.378785,0.0960405,0.951607,0.931513,0.391487,0.394666,0.856352,0.0662844,0.857049,0.889781,0.501883,0.703905,0.894284,0.141352,0.990949,0.743677,0.0531283,0.899861,0.0360816,0.465694,0.00442827,0.920853,0.518406,0.857098,|0.852404,0.143076,0.605471,0.863807,0.951189,0.253193,0.573547,0.552455,0.599139,0.733278,0.140589,0.0425349,0.0782688,0.158939,0.505001,0.230335,0.157052,0.093025,0.524224,0.602525,0.728339,0.346267,0.899046,0.349006,0.548363,0.0439157,0.726041,0.192675,0.0111092,0.5306,0.879257,0.544662,0.572811,0.863092,0.194298,0.874537,0.551054,0.625328,0.821831,0.955497,0.305133,0.995378,0.819052,0.68732,0.49733,0.625349,0.621843,0.0190353,0.201619,0.751704,0.445033,0.28254,0.319181,0.0869709,0.945802,0.447928,0.556203,0.301304,0.937245,0.489294,0.28832,0.278974,0.408427,0.410264,0.928995,0.348196,0.591298,0.205943,0.492021,0.905092,0.548117,0.375048,0.598055,0.268902,0.400508,0.0232403,0.0441626,0.0905541,0.365717,0.160466,0.165305,0.109447,0.114189,0.868651,0.52525,0.725274,0.905153,0.0970998,0.289391,0.683434,0.70995,0.897506,0.702007,0.272802,0.765435,0.41152,0.677996,0.525248,0.210189,0.0115169,0.553483,0.894849,0.163554,0.80127,0.16229,0.458117,0.973494,0.00341803,0.409553,0.263555,0.645696,0.295036,0.143865,0.738852,0.300477,0.791629,0.100889,0.180649,0.199051,0.420341,0.663051,0.596963,0.187892,0.053283,0.963533,0.00728434,0.0708119,0.510894,0.632838,0.779443,0.549577,0.384845,0.980394,0.79249,0.783243,0.75127,0.727155,0.0683106,0.41751,0.0969023,0.359398,0.129052,0.053005,0.318309,0.629297,0.871029,0.0739336,0.578674,0.735995,0.93633,0.0934137,0.191238,0.46323,0.0528129,0.471485,0.434514,0.429812,0.398437,0.565318,0.112779,0.810245,0.841107,0.43219,0.68168,0.477175,0.879478,0.643178,0.572905,0.74398,0.150189,0.865445,0.38722,0.92716,0.356191,0.776858,0.894632,0.424568,0.829548,0.984784,0.728298,0.104999,0.873447,0.215253,0.9735,0.183431,0.164256,0.409426,0.781184,0.0666515,0.645962,0.187665,0.217345,0.922477,0.194578,0.997997,0.815101,0.61513,0.583693,0.116139,0.453981,0.8597,0.942141,0.236447,0.276297,0.366007,0.14794,0.712045,0.743744,0.967895,0.85201,0.246757,0.764239,0.553317,0.442381,0.573759,0.18825,0.234282,0.601972,0.554846,0.302701,0.690698,0.484901,0.239374,0.119522,0.129032,0.145425,0.124547,0.691136,0.288441,0.70009,0.541642,0.514283,0.036447,0.479554,0.922948,0.463161,0.380496,0.190998,0.454664,0.699158,0.589288,0.138841,0.873574,0.819655,0.329047,0.410907,0.203231,0.327198,0.184977,0.54288,0.924,0.825807,0.910821,0.0104784,0.981119,0.818412,0.802457,0.584387,0.658385,0.18555,0.286262,0.626449,0.338429,0.818292,0.245315,0.53446,0.151727,0.796987,0.454144,0.590949,0.392609,0.586031,0.60951,0.040054,0.844158,0.859445,0.981619,0.0706427,0.958837,0.293965,0.833586,0.383997,0.379663,0.283324,0.210308,0.124636,0.252151,0.674598,0.541284,0.413024,0.670891,0.052361,0.556914,0.0985209,0.800959,0.564324,0.965212,0.57343,0.332623,0.375178,0.418935,0.998311,0.280528,0.0768148,0.138528,0.314211,0.90603,0.807823,0.1887,0.0682569,0.698616,0.357879,0.381249,0.965829,0.344404,0.62267,0.488771,0.506638,0.0659862,0.671912,0.0030548,0.347537,0.648677,0.966257,0.182082,0.0300179,0.887262,0.53707,0.809782,0.585838,0.183274,0.72711,0.547616,0.678328,0.236124,0.43171,0.129095,0.556834,0.957387,0.600647,0.5448,0.581152,0.201141,0.15766,0.295957,0.390891,0.154677,0.730459,0.129584,0.376976,0.523073,0.27933,0.572041,0.678492,0.624581,0.585563,0.314688,0.617592,0.156829,0.700483,0.783506,0.602843,0.482977,0.157895,0.344915,0.582589,0.0417297,0.754617,0.0896806,0.687784,0.502936,0.504969,0.161318,0.690189,0.376796,0.418148,0.435391,0.337745,0.636765,0.929118,0.339394,0.274403,0.213298,0.0706299,0.578472,0.502679,0.534035,0.70473,0.483374,0.574543,0.214776,0.493161,0.663709,0.285011,0.739886,0.413329,0.425792,0.44351,0.117727,0.846647,0.693862,0.691763,0.628308,0.378376,0.84279,0.425027,0.264613,0.200687,0.594449,0.680599,0.892545,0.364447,0.173011,0.957884,0.172521,0.258714,0.42932,0.703125,0.990532,0.0104872,0.359377,0.416734,0.757093,0.28057,0.551633,0.0620329,0.773203,0.848582,0.247766,0.874323,0.243263,0.281502,0.0636276,0.650104,0.745619,0.649573,0.699283,0.133147,0.0730224,0.649787,0.598872,0.223714,0.969927,0.153837,0.737303,0.355835,0.0921495,0.478306,0.573941,0.226422,0.334362,0.436275,0.684207,0.874476,0.661832,0.951412,0.75052,0.0488917,0.572791,0.068027,0.0548069,0.802779,0.359275,0.325256,0.95201,0.0850386,0.301833,0.334269,0.0653253,0.500916,0.0604543,0.56722,0.0331277,0.0874282,0.728218,0.580024,0.81221,0.652823,0.501293,0.197434,0.131845,0.950547,0.774138,0.494089,0.435392,0.309629,0.498002,0.0872723,0.816297,0.888133,0.927446,0.753188,0.647747,0.314225,0.322618,0.0021286,0.816162,0.329104,0.335162,0.614009,0.868258,0.186401,0.218255,0.231922,0.828745,0.712549,0.333101,0.583449,0.237359,0.237885,0.0131969,0.664747,0.915201,0.896098,0.509449,0.0669318,0.347396,0.284368,0.788506,0.0827867,0.367555,0.957021,0.727985,0.983713,0.674628,0.350814,0.921499,0.00910318,0.0752811,0.917978,0.714186,0.788707,0.76949,0.807206,0.613397,0.804713,0.958889,0.38567,0.606821,0.933638,0.50944,0.119499,0.195709,0.293175,0.0209901,0.922376,0.48933,0.685218,0.0983804,0.197449,0.711524,0.467172,0.475965,0.781202,0.404525,0.236128,0.469356,0.356986,0.0379089,0.327913,0.599314,0.170135,0.749655,0.39444,0.543562,0.685117,0.41819,0.827805,0.303425,0.356987,0.836628,0.233666,0.259683,0.73489,0.763549,0.544013,0.500449,0.11584,0.0863682,0.740701,0.615868,0.382318,0.887382,0.518619,0.862923,0.606309,0.633029,0.784217,0.930389,0.56289,0.696417,0.0830913,0.813919,0.667654,0.441435,0.539212,0.085202,0.514325,0.284603,0.387315,0.743625,0.0573618,0.613407,0.0310847,0.928117,0.473314,0.885824,0.842364,0.273588,0.0449935,0.941626,0.485414,0.34495,0.917794,0.694801,0.423273,0.129019,0.104494,0.659602,0.387142,0.610145,0.82628,0.577145,0.0279633,0.830893,0.980467,0.757414,0.909109,0.207818,0.103447,0.405893,0.287273,0.506921,0.0406882,0.123809,0.728213,0.195218,0.462134,0.29357,0.883837,0.966317,0.33803,0.512996,0.93047,0.901577,0.10512,0.0553661,0.438781,0.0178727,0.585836,0.114001,0.322522,0.958835,0.839879,0.576598,0.279678,0.993865,0.536013,0.514102,0.89897,0.545216,0.256466,0.99724,0.993787,0.860253,0.583804,0.771543,0.319062,0.32191,0.50206,0.239199,0.0330682,0.150433,0.806326,0.990766,0.543704,0.352673,0.894545,0.375214,0.332362,0.615715,0.20825,0.57562,0.418878,0.480127,0.82736,0.240344,0.797806,0.12469,0.101844,0.385864,0.587535,0.645339,0.0618997,0.97586,0.732945,0.0374993,0.986433,0.238252,0.760847,0.0322949,0.930689,0.577238,0.568413,0.297724,0.10054,0.416341,0.316634,0.325233,0.293277,0.713179,0.443418,0.196479,0.133278,0.0937327,0.542141,0.0795273,0.134622,0.439245,0.404522,0.841912,0.309432,0.395011,0.853102,0.957702,0.979173,0.311657,0.834008,0.169546,0.292569,0.568166,0.990768,0.66558,0.2232,0.192874,0.409976,0.0431353,0.194995,0.384853,0.787624,0.269706,0.719568,0.863082,0.376198,0.676509,0.20628,0.393404,0.0594556,0.617675,0.368238,0.640921,0.111855,0.789174,0.230185,0.399951,0.458981,0.69211,0.932861,0.647329,0.880244,0.266963,0.0111641,0.391555,0.418144,0.389533,0.395459,0.61714,0.768118,0.294964,0.13201,0.99097,0.624473,0.575557,0.0522603,0.942986,0.9175,0.448827,0.267252,0.452804,0.363717,0.328784,0.12262,0.0830746,0.120751,0.536191,0.440446,0.123966,0.42859,0.832355,0.912152,0.718883,0.901875,0.922441,0.236757,0.705902,0.947052,0.27125,0.271984,0.174079,0.819077,0.232151,0.421478,0.309211,0.539438,0.76765,0.332616,0.123421,0.633478,0.366175,0.036788,0.192426,0.213066,0.743565,0.520165,0.821842,0.886524,0.200379,0.749513,0.0259395,0.907991,0.963405,0.0335032,0.781847,0.21562,0.6989,0.794533,0.309635,0.35517,0.0652442,0.865574,0.984958,0.191062,0.546447,0.599031,0.937905,0.53489,0.317654,0.0616927,0.427331,0.736548,0.63546,0.485715,0.890772,0.895179,0.6055,0.248101,0.660968,0.887472,0.497346,0.997934,0.788686,0.20759,0.708936,0.483473,0.15667,0.428598,0.550651,0.31854,0.51032,0.509243,0.0736846,0.888346,0.657129,0.50549,0.225266,0.122747,0.955533,0.350601,0.904525,0.707543,0.532654,0.283104,0.825881,0.514685,0.760349,0.136077,0.443866,0.0855484,0.236201,0.854618,0.694617,0.250273,0.527503,0.788633,0.185641,0.74384,0.0331695,0.978844,0.0522884,0.268361,0.490883,0.540054,0.0700986,0.57541,0.702429,0.0946518,0.516315,0.576169,0.635915,0.472645,0.458937,0.662202,0.14464,0.352058,0.396972,0.77458,0.673711,0.86162,0.891131,0.762847,0.995648,0.805417,0.0108439,0.310962,0.912326,0.755011,0.218173,0.973156,0.163265,0.561116,0.00898862,0.429906,0.994557,0.481313,0.27609,0.740624,0.249281,0.595409,0.813476,0.626379,0.00936747,0.266567,0.0296216,0.857307,0.394168,0.633835,0.847218,0.586442,0.0388563,0.580577,0.320302,0.746696,0.571061,0.782015,0.0561378,0.418426,0.124227,0.452036,0.963892,0.216913,0.845952,0.249586,0.943762,0.637644,0.778948,0.667345,0.734085,0.747853,0.605256,0.957882,0.542345,0.363997,0.485335,0.317076,0.841617,0.9573,0.632904,0.582039,0.470739,0.15878,0.901108,0.574553,0.676851,0.889039,0.416952,0.278614,0.3779,0.359116,0.969978,0.395752,0.433232,0.642568,0.471265,0.426518,0.0373253,0.667937,0.36844,0.612425,0.645423,0.585096,0.784812,0.0659933,0.0885909,0.220263,0.948853,0.649159,0.628944,0.897078,0.744067,0.605415,|0.744056,0.0913348,0.46287,0.19339,0.922824,0.314642,0.640779,0.517923,0.986745,0.245775,0.118399,0.0447127,0.753834,0.0100507,0.45871,0.529391,0.296766,0.046447,0.320998,0.881221,0.766499,0.618512,0.352513,0.115761,0.457745,0.852681,0.0834245,0.569504,0.0918735,0.77536,0.0229714,0.331398,0.582192,0.237238,0.781301,0.980045,0.0447229,0.661964,0.652912,0.511548,0.302184,0.430036,0.0735798,0.29739,0.708562,0.600738,0.151609,0.593329,0.434429,0.994746,0.0105574,0.223085,0.382115,0.244835,0.277399,0.865606,0.687061,0.0606791,0.0859105,0.36987,0.2107,0.743193,0.676652,0.555315,0.872896,0.0946656,0.963944,0.357105,0.425905,0.278766,0.0691838,0.694838,0.227999,0.413098,0.506252,0.319957,0.361381,0.728929,0.967195,0.515012,0.391426,0.858818,0.971716,0.119382,0.598082,0.546546,0.83259,0.874685,0.551243,0.799166,0.531303,0.182109,0.109138,0.133318,0.0845678,0.00804561,0.196804,0.450228,0.309247,0.788224,0.356046,0.844468,0.288819,0.672665,0.629181,0.78983,0.901904,0.175156,0.451589,0.687178,0.214941,0.581504,0.543873,0.482933,0.811216,0.780059,0.608393,0.90532,0.237572,0.355162,0.279558,0.580086,0.944346,0.799555,0.60656,0.710786,0.023367,0.708174,0.824396,0.527678,0.588743,0.863874,0.53762,0.0694943,0.847971,0.84051,0.977047,0.738816,0.366413,0.447253,0.661701,0.235911,0.742842,0.606805,0.51849,0.0873995,0.271404,0.0945628,0.679522,0.656859,0.82568,0.0361961,0.238427,0.504445,0.466218,0.474148,0.954457,0.877696,0.207335,0.587909,0.982864,0.197963,0.889557,0.766507,0.456455,0.411072,0.898731,0.519632,0.185293,0.295507,0.822884,0.353715,0.372558,0.165049,0.849959,0.391216,0.0991281,0.0604903,0.305102,0.00811803,0.532925,0.512791,0.734063,0.772377,0.95832,0.365956,0.568628,0.723326,0.268575,0.555545,0.0287271,0.0153503,0.744808,0.229979,0.243188,0.289796,0.863012,0.749531,0.0654372,0.834158,0.772949,0.572599,0.842124,0.425918,0.960534,0.480932,0.690399,0.324401,0.834639,0.653745,0.896035,0.352078,0.140485,0.363131,0.743085,0.275138,0.782569,0.969365,0.490936,0.924528,0.0741943,0.540489,0.813224,0.58381,0.730848,0.945984,0.683894,0.0636512,0.921839,0.306392,0.390231,0.422425,0.569906,0.956999,0.468025,0.336313,0.477647,0.502724,0.956088,0.252789,0.39915,0.877074,0.149313,0.824124,0.510778,0.272747,0.918106,0.509653,0.316339,0.154653,0.44031,0.141777,0.5822,0.172389,0.896924,0.906813,0.268445,0.755713,0.301168,0.35569,0.200197,0.0271813,0.100913,0.696868,0.0728954,0.866695,0.919256,0.218287,0.922098,0.649461,0.235434,0.404054,0.648904,0.181684,0.988097,0.678966,0.0342738,0.321128,0.784697,0.473373,0.822009,0.0352976,0.174537,0.587638,0.234264,0.567325,0.684053,0.257321,0.417035,0.0355153,0.841007,0.0926124,0.105281,0.300583,0.286682,0.710807,0.54716,0.185213,0.311453,0.671501,0.357233,0.465598,0.0683867,0.467856,0.862137,0.886399,0.116786,0.311315,0.358728,0.415351,0.175007,0.895615,0.944485,0.382572,0.669588,0.777641,0.059579,0.629416,0.579316,0.0625657,0.183373,0.954426,0.352775,0.0302187,0.905286,0.800853,0.393886,0.183218,0.950197,0.830322,0.347689,0.998076,0.722689,0.798051,0.499705,0.436819,0.355677,0.854698,0.303871,0.80855,0.0124274,0.021226,0.905745,0.960512,0.195065,0.42542,0.0559052,0.681068,0.765299,0.958912,0.878393,0.680568,0.645418,0.503674,0.129238,0.0195691,0.751487,0.483264,0.915217,0.880519,0.574493,0.877956,0.126312,0.728931,0.802643,0.963918,0.647844,0.0592873,0.596054,0.546766,0.710565,0.248012,0.568648,0.882444,0.0479406,0.215732,0.805079,0.312789,0.712373,0.429299,0.294929,0.977271,0.0776423,0.973137,0.153497,0.329734,0.0073216,0.800239,0.90009,0.739036,0.125716,0.46019,0.981271,0.834762,0.561125,0.546205,0.725087,0.238964,0.552422,0.284492,0.297042,0.652222,0.558371,0.182607,0.363079,0.088093,0.662556,0.474603,0.209113,0.73145,0.40552,0.687156,0.856416,0.542381,0.768954,0.491305,0.241556,0.0281622,0.823579,0.706542,0.381372,0.912248,0.114654,0.212745,0.767682,0.925469,0.708378,0.641455,0.347549,0.198238,0.662768,0.828894,0.413638,0.887978,0.267639,0.766008,0.545347,0.313715,0.67175,0.726932,0.705668,0.680886,0.0309539,0.0601894,0.705709,0.427896,0.607619,0.883198,0.0895134,0.453112,0.599548,0.961296,0.361368,0.916405,0.00810045,0.76177,0.531401,0.0630744,0.964198,0.748156,0.982034,0.0383496,0.422579,0.834437,0.798013,0.233737,0.802399,0.398527,0.854672,0.824518,0.472624,0.584931,0.100984,0.28813,0.989817,0.109763,0.227591,0.200429,0.74179,0.953121,0.95683,0.296929,0.846348,0.62091,0.924681,0.514445,0.735562,0.519584,0.140026,0.780295,0.394973,0.636247,0.00411427,0.0145013,0.330026,0.435441,0.421446,0.445751,0.265195,0.500561,0.237545,0.933505,0.959821,0.978029,0.590345,0.808217,0.977405,0.060267,0.526298,0.324693,0.0659114,0.177731,0.516872,0.809008,0.215445,0.541087,0.00035882,0.0135592,0.04583,0.293532,0.0418428,0.227149,0.203438,0.698485,0.425118,0.0577014,0.134159,0.59332,0.788622,0.131232,0.330293,0.12329,0.542402,0.477827,0.429653,0.530542,0.875524,0.573051,0.0273693,0.465606,0.241821,0.336057,0.680312,0.260928,0.799726,0.550784,0.320691,0.367011,0.35228,0.599292,0.611475,0.0900748,0.573259,0.651602,0.18442,0.299229,0.78685,0.920146,0.30786,0.111297,0.814808,0.113754,0.284015,0.662863,0.690416,0.0319164,0.977046,0.659983,0.00194818,0.380234,0.280135,0.314497,0.0627102,0.0244392,0.605009,0.319954,0.0235059,0.954205,0.734775,0.344777,0.754986,0.460325,0.583766,0.253715,0.653529,0.743494,0.327097,0.273973,0.441372,0.816297,0.931751,0.439692,0.987855,0.0631768,0.558297,0.931485,0.673233,0.619512,0.635456,0.95114,0.914623,0.0254602,0.705468,0.689896,0.859916,0.0855424,0.96916,0.900249,0.752236,0.627032,0.565111,0.976705,0.459672,0.195423,0.633598,0.566991,0.966095,0.237483,0.115041,0.453196,0.341884,0.678817,0.894326,0.252061,0.270316,0.732352,0.159679,0.693248,0.937623,0.34754,0.0239669,0.568074,0.129174,0.593997,0.464605,0.263761,0.380801,0.213098,0.673403,0.76319,0.237969,0.0369607,0.256547,0.0151839,0.107972,0.388933,0.699874,0.854696,0.479683,0.311169,0.991737,0.25346,0.991734,0.566066,0.0546386,0.0582136,0.898815,0.238191,0.701043,0.519319,0.846915,0.301477,0.703676,0.591124,0.959182,0.650361,0.406099,0.392148,0.914499,0.989142,0.276642,0.0964654,0.547993,0.908564,0.623471,0.397,0.373444,0.900514,0.558723,0.270577,0.872886,0.875709,0.668358,0.22516,0.601239,0.965304,0.602447,0.855705,0.0184063,0.505459,0.258176,0.200148,0.974431,0.393345,0.94576,0.814142,0.0316505,0.910072,0.529084,0.126156,0.470983,0.887306,0.61408,0.484478,0.204916,0.0178993,0.978128,0.733892,0.1179,0.425773,0.900385,0.0879729,0.266729,0.23463,0.850566,0.682098,0.168318,0.868054,0.372611,0.670711,0.962463,0.835949,0.986626,0.671408,0.208416,0.218539,0.0162344,0.891476,0.120749,0.402209,0.0790523,0.429176,0.283109,0.998809,0.966815,0.473281,0.431085,0.579586,0.774204,0.198339,0.493064,0.652716,0.051598,0.258774,0.940384,0.971207,0.467717,0.962724,0.741133,0.736469,0.119148,0.249334,0.139208,0.533085,0.355495,0.0758377,0.124571,0.9973,0.341108,0.690018,0.689347,0.893936,0.692445,0.62769,0.875131,0.28859,0.911311,0.620267,0.280525,0.377806,0.661032,0.749132,0.394012,0.0783819,0.240808,0.894363,0.889755,0.637233,0.617239,0.498253,0.686693,0.362717,0.616642,0.619501,0.30452,0.0555184,0.589548,0.621999,0.112737,0.771311,0.202719,0.765265,0.00561166,0.788451,0.68285,0.330172,0.224902,0.516816,0.800728,0.728572,0.569491,0.719611,0.243474,0.626221,0.373892,0.962268,0.841309,0.359424,0.539028,0.476275,0.289574,0.0138081,0.783737,0.406626,0.46828,0.886287,0.863156,0.0786757,0.0228698,0.788394,0.892713,0.332536,0.933428,0.0113859,0.252733,0.290842,0.366171,0.743882,0.0235415,0.614296,0.396217,0.9717,0.241198,0.205611,0.62179,0.102106,0.694027,0.944902,0.0234542,0.460941,0.750662,0.164572,0.11614,0.132567,0.894405,0.850899,0.212143,0.698015,0.828019,0.478404,0.154525,0.547973,0.00241309,0.316618,0.730781,0.723348,0.904415,0.353033,0.789687,0.502724,0.675083,0.849067,0.00836962,0.810087,0.983244,0.720869,0.680499,0.537622,0.796383,0.205576,0.293672,0.929774,0.236256,0.974953,0.603288,0.0127835,0.00165004,0.0700261,0.930302,0.000683844,0.159504,0.363065,0.118736,0.597286,0.890944,0.516183,0.399527,0.117669,0.596691,0.824186,0.500991,0.0798277,0.286921,0.163216,0.0931773,0.312957,0.784417,0.606557,0.486375,0.0530013,0.940891,0.0407646,0.321201,0.833088,0.428788,0.0731876,0.206859,0.344919,0.56643,0.872883,0.0781627,0.915626,0.507003,0.671693,0.686329,0.281872,0.033758,0.671318,0.0360858,0.436682,0.806089,0.614483,0.545857,0.646987,0.72293,0.754468,0.147928,0.965216,0.846483,0.532374,0.797468,0.22224,0.368296,0.468987,0.66604,0.368495,0.382141,0.530613,0.798187,0.688661,0.544387,0.743573,0.91125,0.816085,0.975722,0.530083,0.352633,0.860645,0.382789,0.49199,0.877319,0.680787,0.753386,0.75102,0.561415,0.0395762,0.908518,0.0746779,0.297586,0.895582,0.478748,0.303869,0.822137,0.391848,0.816293,0.84967,0.24095,0.553868,0.930197,0.87916,0.209305,0.535082,0.662476,0.557455,0.940858,0.697834,0.54966,0.373361,0.794864,0.0195829,0.244525,0.915948,0.890696,0.0709214,0.681232,0.837854,0.979064,0.826913,0.924597,0.89428,0.758771,0.465687,0.637284,0.0267667,0.158498,0.153343,0.424427,0.60334,0.901732,0.189036,|0.906239,0.226643,0.841189,0.956797,0.653864,0.677761,0.530833,0.804733,0.908872,0.527908,0.843391,0.352768,0.14447,0.992656,0.802034,0.561703,0.292866,0.484889,0.731159,0.64752,0.339049,0.66313,0.253211,0.462209,0.824924,0.284226,0.822572,0.353745,0.839535,0.227229,0.641324,0.421873,0.893766,0.780332,0.0726818,0.590186,0.79477,0.825746,0.846797,0.232434,0.0606272,0.676535,0.466035,0.0542957,0.169069,0.707605,0.228011,0.600513,0.158494,0.265917,0.0463543,0.826036,0.620255,0.0252476,0.0916014,0.699316,0.699705,0.544323,0.752148,0.640999,0.732986,0.136579,0.663914,0.974315,0.285805,0.538284,0.187387,0.256355,0.104936,0.671202,0.564604,0.211468,0.319976,0.628022,0.268927,0.807242,0.760183,0.23444,0.766605,0.657495,0.0331889,0.825598,0.571146,0.760376,0.154419,0.767316,0.0460076,0.237681,0.719164,0.5673,0.424847,0.819618,0.935871,0.0564036,0.973204,0.146295,0.434195,0.341142,0.615593,0.889934,0.543533,0.511445,0.354251,0.743263,0.127523,0.913555,0.0628939,0.477159,0.648788,0.745616,0.887532,0.663445,0.230048,0.52796,0.365594,0.389887,0.363429,0.360796,0.26193,0.470984,0.15774,0.934932,0.266479,0.0313039,0.671015,0.931166,0.792187,0.894709,0.654447,0.11803,0.385681,0.591601,0.2613,0.0339506,0.073096,0.497117,0.965179,0.212069,0.683374,0.00156564,0.36111,0.303303,0.896301,0.181468,0.360592,0.458017,0.493995,0.656747,0.953326,0.497309,0.892496,0.626622,0.426947,0.354083,0.832325,0.701388,0.734443,0.791032,0.490949,0.270826,0.452946,0.748296,0.0742152,0.121369,0.0725691,0.702342,0.051123,0.333817,0.352037,0.0440913,0.438365,0.541215,0.998712,0.424088,0.189425,0.172457,0.881261,0.109221,0.311651,0.303763,0.793133,0.175415,0.606005,0.644843,0.916527,0.647827,0.630404,0.224328,0.982247,0.147556,0.0675685,0.156883,0.473228,0.0323086,0.80189,0.243077,0.366686,0.810679,0.37058,0.513575,0.348636,0.559846,0.549335,0.267529,0.373941,0.763591,0.570372,0.40691,0.023129,0.0411184,0.795237,0.634491,0.441732,0.972385,0.230082,0.398719,0.573335,0.612238,0.770691,0.326583,0.740015,0.163599,0.556844,0.627447,0.128902,0.651923,0.645421,0.79786,0.855542,0.695322,0.691484,0.0885242,0.128757,0.224777,0.11859,0.599057,0.225739,0.686925,0.56154,0.96715,0.404181,0.522439,0.857878,0.338867,0.299812,0.481535,0.501298,0.156385,0.488706,0.792306,0.848916,0.611664,0.188592,0.324638,0.30081,0.912492,0.356348,0.00819558,0.458352,0.371604,0.0236952,0.84833,0.419234,0.639312,0.815865,0.960435,0.716853,0.336856,0.103325,0.324278,0.61461,0.0677332,0.823546,0.907967,0.62535,0.903281,0.480162,0.107099,0.705065,0.503063,0.591569,0.351913,0.729066,0.427099,0.263827,0.453948,0.480724,0.121083,0.367663,0.00322539,0.634212,0.707097,0.45495,0.509779,0.639065,0.76058,0.547187,0.208575,0.425794,0.47041,0.0568407,0.744938,0.496464,0.92001,0.494151,0.122413,0.870197,0.690251,0.353044,0.261224,0.310475,0.34423,0.806259,0.426993,0.660697,0.351437,0.36139,0.908818,0.826596,0.356382,0.597207,0.0190398,0.210448,0.307437,0.632853,0.419332,0.102939,0.982973,0.333771,0.353645,0.137953,0.92617,0.25404,0.91482,0.940042,0.122925,0.647639,0.119993,0.323177,0.49299,0.904048,0.797505,0.460171,0.310443,0.894554,0.647299,0.317768,0.176397,0.357966,0.403032,0.219731,0.067764,0.197758,0.325802,0.938951,0.567476,0.975366,0.0957797,0.936742,0.824475,0.482301,0.303631,0.43058,0.76833,0.386729,0.356804,0.468214,0.0449273,0.393665,0.616815,0.331383,0.420902,0.216567,0.238592,0.861949,0.469384,0.545112,0.781285,0.392904,0.45184,0.887606,0.534769,0.855651,0.322314,0.98584,0.354141,0.062651,0.416152,0.502876,0.209444,0.792943,0.320578,0.424128,0.725304,0.358969,0.440658,0.940418,0.607457,0.00910801,0.831876,0.702788,0.980087,0.898094,0.95764,0.230079,0.565028,0.528681,0.716509,0.641804,0.461306,0.199251,0.608628,0.531341,0.821794,0.702259,0.721773,0.736338,0.526102,0.19664,0.0475368,0.883511,0.347869,0.677899,0.445527,0.33998,0.130839,0.404165,0.976295,0.122373,0.503012,0.190857,0.461771,0.475367,0.227047,0.716338,0.0985085,0.819296,0.691545,0.959978,0.707789,0.353264,0.673514,0.866284,0.59028,0.271889,0.218389,0.593226,0.222341,0.921099,0.350956,0.655301,0.839454,0.621695,0.100922,0.330536,0.467131,0.0353071,0.577946,0.611353,0.572166,0.994474,0.764209,0.242135,0.0591574,0.126444,0.58585,0.363186,0.284787,0.343683,0.331504,0.968609,0.225409,0.772515,0.253385,0.824816,0.93082,0.342015,0.434781,0.843229,0.687801,0.182579,0.191042,0.678259,0.178731,0.318299,0.55408,0.0339317,0.647663,0.982303,0.409885,0.918243,0.452233,0.172297,0.461984,0.756137,0.699411,0.556849,0.239622,0.00654024,0.904624,0.291294,0.479578,0.423464,0.925176,0.67323,0.160561,0.642594,0.455654,0.531888,0.782635,0.469105,0.0202502,0.845795,0.654756,0.23636,0.334441,0.346431,0.12395,0.0609173,0.280833,0.323863,0.425378,0.145174,0.508136,0.341251,0.918118,0.691039,0.590459,0.628428,0.793114,0.664589,0.70383,0.979162,0.466347,0.86448,0.438361,0.455893,0.999976,0.905736,0.465189,0.0727643,0.61942,0.737951,0.21478,0.887689,0.608934,0.431538,0.572774,0.999152,0.262436,0.0249867,0.464237,0.772158,0.835028,0.613941,0.672336,0.715273,0.27765,0.976232,0.174341,0.726133,0.656122,0.74967,0.742394,0.407599,0.452148,0.496396,0.114522,0.268634,0.1497,0.869854,0.349976,0.208791,0.354417,0.863426,0.643279,0.845422,0.870888,0.111838,0.839505,0.617138,0.74625,0.610264,0.706569,0.0355845,0.668137,0.874892,0.00338936,0.484582,0.0340032,0.961044,0.94522,0.106342,0.455241,0.0256499,0.312757,0.139648,0.329999,0.459908,0.267467,0.621712,0.290758,0.0998369,0.963902,0.714618,0.652012,0.2285,0.45525,0.269035,0.394024,0.373095,0.188199,0.885268,0.339686,0.175281,0.167813,0.946898,0.939926,0.851748,0.683457,0.886549,0.698434,0.0349706,0.0781672,0.18195,0.464578,0.514066,0.745569,0.712163,0.851977,0.744486,0.63764,0.350992,0.722763,0.7128,0.734271,0.00251675,0.243695,0.945032,0.111887,0.68477,0.189273,0.80185,0.00389773,0.730099,0.186747,0.475991,0.649919,0.633651,0.531255,0.8976,0.724479,0.252871,0.877205,0.764887,0.135143,0.513263,0.944727,0.644705,0.589788,0.0555293,0.0709213,0.143663,0.221269,0.775957,0.61006,0.126544,0.930245,0.582444,0.425937,0.665123,0.690316,0.478624,0.81425,0.24865,0.380264,0.926919,0.0182691,0.925233,0.336037,0.0961527,0.702262,0.599575,0.0521625,0.870634,0.942723,0.667365,0.684414,0.312278,0.642302,0.0128772,0.496072,0.51199,0.0581276,0.184616,0.10601,0.750554,0.797372,0.792274,0.825374,0.0131726,0.099048,0.999346,0.812161,0.0651745,0.464406,0.856977,0.528745,0.0190899,0.803323,0.27659,0.426714,0.28546,0.528503,0.122728,0.101816,0.94847,0.84572,0.364415,0.660482,0.199708,0.339042,0.695718,0.805091,0.566257,0.852098,0.284123,0.309149,0.238464,0.902144,0.283763,0.460062,0.529001,0.906841,0.473338,0.955706,0.814797,0.335164,0.395154,0.874103,0.207851,0.372486,0.0266079,0.901827,0.285269,0.586473,0.0467406,0.971153,0.0232512,0.301252,0.964289,0.930248,0.181877,0.157774,0.318349,0.874895,0.522,0.813748,0.917527,0.886972,0.234625,0.0958492,0.671201,0.441996,0.541655,0.579215,0.228827,0.581825,0.465119,0.27027,0.10723,0.319629,0.831995,0.562681,0.948559,0.224833,0.455473,0.336915,0.89966,0.428177,0.502819,0.748304,0.280949,0.590764,0.269946,0.408307,0.55427,0.368328,0.267601,0.665217,0.427683,0.403904,0.508907,0.297998,0.69814,0.0224528,0.840548,0.495908,0.286754,0.33409,0.528473,0.255921,0.20219,0.0488682,0.118019,0.187811,0.121271,0.366931,0.0160035,0.314825,0.758517,0.315387,0.468361,0.507355,0.777232,0.85097,0.285567,0.584561,0.420341,0.209384,0.799189,0.55276,0.360406,0.483571,0.0610616,0.691772,0.495864,0.310106,0.356104,0.605741,0.28925,0.69395,0.276839,0.0164103,0.830444,0.390426,0.769743,0.630924,0.786896,0.144513,0.569442,0.734464,0.395302,0.497633,0.293033,0.213937,0.919832,0.0041548,0.134989,0.210506,0.155528,0.946228,0.200059,0.166316,0.992047,0.367084,0.0111051,0.549412,0.434466,0.809511,0.434286,0.745319,0.233206,0.849855,0.626625,0.0477856,0.616292,0.375068,0.720471,0.127642,0.145652,0.649176,0.532581,0.578157,0.82451,0.594336,0.725983,0.807221,0.241942,0.938517,0.748665,0.659438,0.442212,0.834222,0.456223,0.747046,0.245717,0.718038,0.668092,0.564813,0.177659,0.653053,0.757449,0.555966,0.502451,0.839201,0.662233,0.456743,0.0695457,0.385346,0.738687,0.187355,0.634229,0.534053,0.439621,0.0148873,0.518138,0.355905,0.243961,0.616061,0.907377,0.508459,0.955881,0.150606,0.176679,0.209021,0.154855,0.98007,0.32209,0.795088,0.0114676,0.730272,0.0491554,0.0394472,0.65796,0.281299,0.822813,0.834054,0.920524,0.56584,0.124018,0.532235,0.627833,0.419973,0.385931,0.56574,0.58027,0.475816,0.773273,0.282504,0.952537,0.158072,0.116198,0.10081,0.51169,0.468051,0.672736,0.665702,0.148037,0.473712,0.569448,0.922373,0.412962,0.986766,0.73935,0.208278,0.406325,0.979094,0.749473,0.714419,0.502142,0.372656,0.658704,0.994164,0.907136,0.613343,0.354144,0.326656,0.843691,0.168932,0.985211,0.521192,0.275701,0.209448,0.368492,0.936944,0.0733418,0.375498,0.608677,0.624225,0.868797,0.937207,0.621044,0.349418,0.375331,0.839166,0.0792191,0.916737,0.958513,0.105196,0.871497,0.932135,0.73788,0.105542,0.836493,0.125361,0.374865,0.920247,0.65164,0.188534,|0.961921,0.356643,0.189256,0.842349,0.238111,0.0971266,0.439697,0.0123961,0.123985,0.463071,0.49227,0.290797,0.714309,0.138235,0.704485,0.0989918,0.472553,0.526983,0.393121,0.453465,0.71034,0.979436,0.107391,0.69549,0.163415,0.522465,0.0189278,0.470919,0.747604,0.812393,0.996199,0.805233,0.841419,0.39329,0.325381,0.942575,0.562725,0.278782,0.0449325,0.726297,0.802667,0.440149,0.763346,0.105945,0.85036,0.394458,0.748165,0.903156,0.726629,0.612662,0.748619,0.0801429,0.0021621,0.191907,0.83739,0.650913,0.199261,0.803376,0.859434,0.435303,0.0058046,0.897079,0.217994,0.0112799,0.936598,0.106605,0.982844,0.541299,0.70996,0.460704,0.741526,0.439157,0.0094974,0.599753,0.441476,0.213208,0.617903,0.428784,0.777378,0.136782,0.0116054,0.958081,0.705104,0.456443,0.720849,0.958749,0.161657,0.720048,0.0794655,0.568103,0.543327,0.911915,0.970674,0.775521,0.697579,0.772147,0.201525,0.356219,0.581313,0.31714,0.0722671,0.000472069,0.179596,0.640663,0.804426,0.666481,0.736139,0.823745,0.657323,0.96166,0.212451,0.851312,0.338383,0.319442,0.611705,0.0139524,0.725686,0.406116,0.469389,0.453882,0.0470109,0.915529,0.914324,0.0281029,0.762771,0.633926,0.474903,0.0414333,0.79442,0.0447763,0.595825,0.741722,0.0292321,0.707185,0.58818,0.341044,0.525414,0.438936,0.213961,0.915617,0.790723,0.327304,0.829421,0.0992406,0.00222772,0.686292,0.271656,0.200559,0.823916,0.069527,0.145589,0.0213761,0.443124,0.0419102,0.754222,0.471994,0.455934,0.565855,0.336844,0.850163,0.0999309,0.348363,0.0267889,0.589701,0.842081,0.0752124,0.221326,0.389903,0.279176,0.926915,0.503485,0.392325,0.0601913,0.778957,0.0328307,0.364147,0.0729537,0.776529,0.646614,0.889304,0.0368586,0.473907,0.76599,0.0670335,0.544903,0.327491,0.0116615,0.833735,0.894213,0.911223,0.443703,0.531735,0.00453097,0.882098,0.663293,0.608755,0.585857,0.970971,0.870578,0.832875,0.450128,0.964953,0.0615477,0.946085,0.579032,0.273414,0.512263,0.996641,0.0457547,0.755804,0.954541,0.433397,0.876967,0.850597,0.66521,0.706917,0.181958,0.327307,0.643366,0.518391,0.510909,0.0396082,0.659016,0.376566,0.553465,0.404222,0.534071,0.697975,0.115028,0.181592,0.474505,0.650362,0.134245,0.925064,0.212509,0.997738,0.616022,0.865327,0.381154,0.719297,0.688126,0.296106,0.383874,0.368349,0.834083,0.0603955,0.669218,0.932797,0.750498,0.778489,0.82291,0.012692,0.938226,0.539935,0.00501686,0.533052,0.426836,0.695105,0.310396,0.888564,0.269165,0.615324,0.421449,0.601963,0.187578,0.752411,0.476181,0.410487,0.127392,0.959685,0.715412,0.0706273,0.870572,0.106592,0.462244,0.638369,0.177577,0.99586,0.168027,0.277019,0.155791,0.715995,0.299915,0.864538,0.809248,0.0486447,0.481831,0.658852,0.369046,0.233397,0.936147,0.0153503,0.494336,0.337571,0.0270722,0.0359045,0.286426,0.769553,0.0737524,0.8948,0.266919,0.727789,0.578443,0.284622,0.419891,0.599253,0.78988,0.313086,0.0272062,0.926953,0.399722,0.65262,0.205832,0.877941,0.928594,0.97991,0.583109,0.0857183,0.640604,0.315976,0.843101,0.619623,0.270481,0.337646,0.395011,0.789998,0.39366,0.705502,0.625348,0.97195,0.952216,0.522374,0.15637,0.0686232,0.613451,0.930521,0.138236,0.114614,0.257657,0.0684962,0.362577,0.596,0.168674,0.386102,0.704061,0.426459,0.13456,0.674761,0.906761,0.0417557,0.681311,0.714528,0.594237,0.233433,0.418833,0.332261,0.134114,0.68137,0.366719,0.0225132,0.369333,0.27282,0.936568,0.690637,0.626962,0.784335,0.968956,0.467243,0.350568,0.164558,0.12952,0.702304,0.174376,0.719646,0.753595,0.303297,0.859672,0.798784,0.880674,0.964738,0.702255,0.915513,0.584225,0.202388,0.509305,0.135578,0.106252,0.181546,0.734905,0.562005,0.765253,0.390073,0.950301,0.0622664,0.721138,0.0129865,0.11601,0.499156,0.878552,0.413914,0.0906391,0.00868183,0.235517,0.267873,0.296238,0.567334,0.582731,0.174782,0.0376121,0.0797834,0.855437,0.185807,0.684708,0.488039,0.723967,0.835308,0.193104,0.596247,0.701086,0.584741,0.167141,0.0602491,0.30499,0.229179,0.217758,0.817605,0.541512,0.216709,0.968665,0.567569,0.351607,0.315624,0.436297,0.717346,0.313752,0.798988,0.771444,0.516005,0.0160945,0.8384,0.220475,0.51295,0.823263,0.624261,0.840441,0.715541,0.641977,0.298307,0.368036,0.247466,0.27846,0.00821108,0.213528,0.542143,0.0880818,0.654566,0.409582,0.902521,0.551692,0.937586,0.620438,0.272436,0.638156,0.0196817,0.365678,0.525571,0.574687,0.229689,0.826078,0.676827,0.558444,0.686631,0.907843,0.140369,0.42655,0.317708,0.396388,0.862536,0.96224,0.980407,0.31877,0.939703,0.559716,0.772949,0.591064,0.052981,0.721047,0.109333,0.210773,0.381949,0.930405,0.877006,0.669714,0.972454,0.558827,0.317296,0.698223,0.544753,0.10106,0.661714,0.599509,0.46508,0.902255,0.834603,0.962303,0.0332862,0.589864,0.984765,0.0308251,0.297331,0.130994,0.177357,0.108077,0.364382,0.529537,0.919162,0.305696,0.844362,0.49087,0.10127,0.814197,0.361409,0.559423,0.209432,0.0721403,0.531272,0.919208,0.110688,0.810872,0.967525,0.597583,0.308782,0.186385,0.902257,0.927121,0.228397,0.423415,0.765705,0.783776,0.761035,0.060822,0.749473,0.559108,0.19255,0.217512,0.642212,0.295299,0.692857,0.499631,0.649381,0.524975,0.0600611,0.266518,0.604907,0.152445,0.044626,0.0331975,0.219806,0.678319,0.6306,0.747059,0.0844436,0.697504,0.233237,0.778338,0.63558,0.295749,0.357727,0.017892,0.356099,0.919061,0.539144,0.0168873,0.876185,0.00732809,0.244331,0.244328,0.267048,0.913852,0.0928915,0.615275,0.0229782,0.866933,0.257173,0.734929,0.757214,0.804061,0.208035,0.107217,0.947829,0.428471,0.717743,0.371548,0.421024,0.145757,0.0328192,0.632841,0.382842,0.13773,0.310438,0.244615,0.524299,0.941703,0.0925578,0.163417,0.761214,0.212856,0.124742,0.984138,0.13134,0.851168,0.0800573,0.617911,0.84836,0.65038,0.303923,0.298643,0.461029,0.590145,0.392817,0.7469,0.218559,0.342736,0.950817,0.254851,0.29037,0.888741,0.433711,0.13599,0.169355,0.850066,0.501099,0.986869,0.439529,0.223337,0.910745,0.16144,0.065177,0.732258,0.296102,0.792573,0.117727,0.783464,0.925409,0.435981,0.462105,0.543069,0.164665,0.750121,0.494828,0.744197,0.680141,0.344005,0.231812,0.350466,0.848608,0.640689,0.839662,0.216284,0.618626,0.519129,0.836548,0.840476,0.646419,0.945059,0.115006,0.324297,0.300103,0.0435697,0.686985,0.583324,0.663695,0.407583,0.382533,0.124698,0.616596,0.715449,0.602518,0.929797,0.293517,0.328045,0.980353,0.431203,0.272061,0.942006,0.391572,0.0485685,0.837533,0.631192,0.851014,0.0167373,0.92819,0.752241,0.654925,0.895936,0.339648,0.947376,0.948995,0.00482458,0.148505,0.374144,0.419837,0.556115,0.217342,0.973555,0.872306,0.0729105,0.333078,0.87102,0.651595,0.540467,0.906628,0.162949,0.636899,0.839051,0.485951,0.511927,0.420412,0.161908,0.745644,0.775538,0.244343,0.35817,0.0990516,0.208554,0.0818825,0.976369,0.799385,0.506809,0.348008,0.557138,0.694607,0.945152,0.858347,0.670884,0.667624,0.803213,0.145816,0.963631,0.682065,0.0318766,0.487436,0.517047,0.625286,0.945198,0.117919,0.500722,0.636229,0.49362,0.21276,0.846211,0.692018,0.972613,0.357628,0.0398416,0.452685,0.177154,0.543481,0.448486,0.768143,0.275306,0.16545,0.46682,0.282021,0.544589,0.911022,0.585212,0.895623,0.292772,0.386038,0.853356,0.284587,0.950305,0.236705,0.141217,0.855464,0.924412,0.678013,0.626806,0.104541,0.785819,0.142916,0.180187,0.701197,0.832171,0.0217125,0.574485,0.52184,0.478274,0.706485,0.679868,0.0995362,0.659131,0.740023,0.0127068,0.177595,0.130038,0.779421,0.514122,0.0619544,0.588492,0.676531,0.852118,0.451556,0.265052,0.774025,0.906029,0.42288,0.416844,0.201351,0.65954,0.178408,0.972749,0.167442,0.262122,0.0639001,0.719955,0.761219,0.483553,0.452153,0.635761,0.257191,0.610466,0.426857,0.463242,0.0156663,0.681137,0.0901352,0.794418,0.889421,0.839126,0.857191,0.54026,0.240481,0.984864,0.609028,0.0116366,0.247868,0.465323,0.3567,0.69091,0.083474,0.325741,0.675768,0.615994,0.869617,0.281092,0.690517,0.591738,0.458279,0.507913,0.988452,0.585592,0.0301504,0.205085,0.263908,0.610793,0.479477,0.130983,0.221105,0.43413,0.57461,0.624374,0.345178,0.757693,0.98508,0.12474,0.668277,0.995443,0.525657,0.549234,0.378428,0.126803,0.0716049,0.0861525,0.462439,0.499987,0.108832,0.765157,0.176503,0.662646,0.89613,0.887937,0.899042,0.333003,0.0199147,0.230561,0.292014,0.148318,0.0293952,0.18784,0.0284547,0.119913,0.982581,0.713343,0.282805,0.712539,0.637963,0.552483,0.819852,0.957092,0.653754,0.245278,0.406319,0.27557,0.368283,0.219004,0.493093,0.478768,0.01248,0.629109,0.0752756,0.516364,0.515517,0.121848,0.865877,0.832639,0.571905,0.855496,0.420209,0.184826,0.767672,0.153677,0.36696,0.397066,0.198314,0.394047,0.468278,0.968394,0.879431,0.422065,0.448943,0.0447223,0.845024,0.496811,0.59361,0.248527,0.463916,0.53927,0.251188,0.385552,0.171947,0.897248,0.983417,0.0280048,0.938852,0.821486,0.764621,0.266665,0.793791,0.304222,0.600548,0.934867,0.683494,0.110418,0.260388,0.511379,0.200837,0.208221,0.409417,0.56223,0.503275,0.105399,0.795891,0.74632,0.0241224,0.469739,0.476152,0.0515135,0.221404,0.515379,0.227686,0.451043,0.877825,0.692202,0.129545,0.103568,0.193088,0.372615,0.587004,0.782947,0.827735,0.959868,0.155295,0.744679,0.366776,0.662598,0.769598,0.800607,0.489441,0.22223,0.517839,0.548888,0.406209,0.26948,0.0212954,0.903122,0.350421,0.11899,0.395746,|0.489612,0.135038,0.406192,0.75207,0.670187,0.0803587,0.995881,0.671238,0.580106,0.114167,0.156332,0.0174839,0.0979986,0.177713,0.135309,0.986071,0.583037,0.277261,0.249968,0.765735,0.404503,0.563841,0.831033,0.305705,0.408191,0.015729,0.384549,0.40839,0.329808,0.890039,0.489159,0.152189,0.892994,0.259176,0.97305,0.168815,0.0699482,0.242493,0.446616,0.586006,0.278373,0.961238,0.38681,0.0874927,0.859175,0.25546,0.796399,0.695399,0.033061,0.0473382,0.426767,0.158191,0.450877,0.845493,0.396643,0.0862605,0.67369,0.743151,0.375241,0.437039,0.758182,0.613315,0.559939,0.839588,0.516133,0.673114,0.383309,0.689911,0.877178,0.518427,0.181525,0.0577019,0.777449,0.295186,0.582285,0.0763633,0.0763828,0.743232,0.870284,0.375952,0.524287,0.869434,0.639789,0.881004,0.0352101,0.0953367,0.813083,0.17962,0.284974,0.0124195,0.357006,0.613442,0.40359,0.534558,0.751122,0.661117,0.647047,0.0535015,0.822706,0.41492,0.46479,0.387112,0.724174,0.563572,0.0205115,0.435876,0.293863,0.364566,0.286438,0.994591,0.736023,0.924032,0.321653,0.520779,0.562585,0.614401,0.911352,0.368708,0.0497052,0.0550806,0.0438885,0.98525,0.764931,0.9503,0.555468,0.0650799,0.552193,0.0858276,0.83979,0.362673,0.38462,0.157343,0.653721,0.705602,0.207542,0.380194,0.416169,0.557652,0.474765,0.778842,0.972921,0.999224,0.321727,0.0263785,0.917979,0.0973844,0.949944,0.556136,0.250994,0.450431,0.0759045,0.149665,0.264601,0.779713,0.420932,0.196939,0.0325183,0.205758,0.0170009,0.592595,0.56681,0.339645,0.107065,0.236788,0.602494,0.937384,0.389425,0.591218,0.613434,0.649829,0.0721094,0.803437,0.598748,0.475829,0.325603,0.180464,0.888796,0.564628,0.612834,0.476158,0.118675,0.608302,0.352756,0.971352,0.229879,0.1424,0.501879,0.824855,0.296414,0.428548,0.20103,0.289881,0.164375,0.301345,0.279076,0.719204,0.528033,0.769353,0.923728,0.199303,0.338307,0.500544,0.268682,0.418297,0.108877,0.184478,0.202438,0.862968,0.556038,0.248859,0.338615,0.671239,0.684414,0.231562,0.859489,0.0403693,0.0285377,0.224862,0.720852,0.923956,0.557701,0.911585,0.645056,0.170763,0.211344,0.408307,0.0707483,0.37954,0.113964,0.688944,0.295045,0.220902,0.960943,0.79626,0.616776,0.753722,0.622485,0.646078,0.402838,0.770033,0.252332,0.140821,0.176127,0.102612,0.166476,0.844111,0.873532,0.411853,0.0582163,0.652523,0.237524,0.367724,0.568557,0.907196,0.696382,0.902798,0.0415561,0.667882,0.565639,0.873798,0.417295,0.580867,0.579433,0.793462,0.989218,0.758354,0.251418,0.799877,0.178892,0.303878,0.541917,0.489477,0.684655,0.866173,0.229234,0.850996,0.0480765,0.190916,0.123554,0.157248,0.117475,0.820709,0.746693,0.637287,0.365047,0.346333,0.273851,0.195579,0.867422,0.167594,0.0217295,0.0697712,0.78216,0.708518,0.44982,0.0160633,0.109349,0.357049,0.825141,0.834467,0.616307,0.292957,0.868963,0.0512658,0.425487,0.16361,0.340489,0.980805,0.714357,0.0592473,0.542665,0.209449,0.307107,0.00573719,0.256506,0.479778,0.660104,0.96748,0.698706,0.620924,0.429725,0.292341,0.436039,0.126265,0.591683,0.134454,0.0257512,0.381086,0.48634,0.70368,0.962371,0.614161,0.138428,0.176537,0.627405,0.119394,0.663746,0.955913,0.0400413,0.991225,0.792054,0.252825,0.294979,0.204475,0.0447953,0.824838,0.400761,0.972966,0.0552949,0.171255,0.909123,0.645293,0.78772,0.299147,0.339059,0.952188,0.16337,0.715079,0.889102,0.251581,0.792785,0.833437,0.560289,0.493897,0.0658055,0.305964,0.607843,0.74017,0.837576,0.23991,0.989541,0.916179,0.231498,0.245305,0.275437,0.978777,0.894099,0.745354,0.370401,0.149512,0.186403,0.921929,0.946087,0.868877,0.970807,0.821572,0.370925,0.537835,0.832096,0.876658,0.966484,0.421171,0.870173,0.63102,0.811694,0.698683,0.584394,0.265611,0.882418,0.0814955,0.569118,0.522317,0.130018,0.417072,0.974473,0.652879,0.917068,0.200348,0.243349,0.779839,0.579288,0.321552,0.458053,0.736434,0.910092,0.771757,0.135196,0.938111,0.453166,0.79068,0.124267,0.621744,0.51506,0.552399,0.983802,0.495524,0.0448773,0.586333,0.0881872,0.0488962,0.581562,0.626485,0.615557,0.360041,0.343509,0.828352,0.0179125,0.624967,0.877355,0.932662,0.4387,0.47318,0.298186,0.502623,0.300936,0.512961,0.941156,0.56206,0.802791,0.89687,0.276038,0.0812091,0.448638,0.674027,0.886829,0.748375,0.416367,0.308786,0.867623,0.930239,0.920105,0.0356821,0.536747,0.445536,0.190732,0.69559,0.47687,0.103895,0.541145,0.468818,0.218018,0.394314,0.954512,0.812284,0.765495,0.636313,0.912667,0.0725576,0.804211,0.504467,0.385235,0.783666,0.872091,0.338228,0.718924,0.456953,0.503622,0.792626,0.295878,0.493746,0.521468,0.334771,0.524226,0.989981,0.736439,0.429332,0.0160574,0.397466,0.90425,0.91739,0.18469,0.857477,0.159093,0.323774,0.420173,0.870974,0.189227,0.638793,0.399373,0.829405,0.185059,0.757614,0.504478,0.40557,0.468451,0.935465,0.279348,0.110653,0.470888,0.482976,0.0811095,0.939537,0.0979742,0.395534,0.560885,0.302136,0.321916,0.170357,0.185801,0.147801,0.777964,0.598062,0.364644,0.920069,0.0824571,0.432388,0.439081,0.993922,0.67847,0.618505,0.91098,0.201179,0.13457,0.64188,0.641928,0.871502,0.422655,0.227116,0.443497,0.211192,0.930571,0.369145,0.39233,0.974081,0.703962,0.382692,0.746048,0.654481,0.866439,0.0156724,0.0307124,0.742378,0.336069,0.541952,0.127935,0.765395,0.733682,0.73191,0.347526,0.723767,0.465499,0.331313,0.331196,0.268663,0.20241,0.331553,0.311305,0.873453,0.955811,0.373043,0.0806948,0.7111,0.417428,0.668216,0.530374,0.288535,0.594392,0.450722,0.136414,0.824681,0.206102,0.344808,0.927764,0.472597,0.940568,0.827593,0.27545,0.133177,0.677587,0.536653,0.402827,0.151744,0.798097,0.684874,0.455736,0.154406,0.969147,0.260204,0.531142,0.359742,0.553748,0.0718715,0.302936,0.104602,0.440787,0.552373,0.890119,0.634662,0.354335,0.427599,0.32258,0.464064,0.827419,0.994807,0.588212,0.0851888,0.268203,0.405847,0.830699,0.819913,0.0400153,0.166989,0.480066,0.73564,0.940385,0.499635,0.0692785,0.862033,0.83027,0.325938,0.594947,0.153404,0.438961,0.211205,0.532383,0.0779809,0.712409,0.191062,0.0506386,0.595484,0.906807,0.962534,0.614755,0.0836098,0.512804,0.100541,0.0121475,0.788357,0.150524,0.640964,0.814336,0.051771,0.135919,0.13409,0.905566,0.781842,0.781744,0.993546,0.671828,0.572737,0.546151,0.92925,0.536274,0.989023,0.0623277,0.23937,0.680862,0.901057,0.869434,0.656722,0.650315,0.736058,0.0872614,0.238901,0.148596,0.909598,0.372037,0.989405,0.495454,0.390521,0.714339,0.176901,0.878686,0.213135,0.714076,0.284505,0.587996,0.839818,0.586296,0.0424915,0.919284,0.249495,0.266429,0.401041,0.647828,0.557993,0.523636,0.989823,0.12193,0.978709,0.0666697,0.544196,0.358416,0.0256962,0.712197,0.823231,0.17826,0.31624,0.346368,0.60124,0.948857,0.0982887,0.614398,0.721041,0.478181,0.615532,0.149389,0.416616,0.469574,0.668841,0.957165,0.489483,0.705945,0.634771,0.919165,0.772383,0.401876,0.928072,0.641338,0.830762,0.299398,0.437295,0.811184,0.387385,0.112375,0.733194,0.393565,0.650373,0.709131,0.186333,0.968126,0.220661,0.197489,0.999656,0.699222,0.570435,0.0564476,0.564767,0.343904,0.845222,0.879031,0.997628,0.294967,0.401942,0.441928,0.718141,0.210809,0.0187377,0.532395,0.956951,0.455578,0.157707,0.526504,0.166707,0.0280777,0.315803,0.982655,0.213944,0.951922,0.434547,0.874771,0.953094,0.298983,0.693761,0.620778,0.371382,0.155337,0.372716,0.634123,0.543929,0.399723,0.0237162,0.985793,0.295205,0.935453,0.916328,0.597905,0.861263,0.0692247,0.0399783,0.804983,0.506106,0.00454402,0.851051,0.439634,0.516083,0.190009,0.0849823,0.567212,0.733358,0.284822,0.753546,0.730463,0.336988,0.744595,0.164773,0.303535,0.195614,0.40627,0.132844,0.0221745,0.102621,0.914097,0.24774,0.898428,0.287705,0.128584,0.0597842,0.989905,0.277941,0.60598,0.630801,0.52493,0.0230244,0.423943,0.365079,0.74661,0.110241,0.787253,0.0270194,0.637622,0.192102,0.539581,0.820165,0.572929,0.782422,0.0151285,0.0736418,0.620378,0.789809,0.557084,0.132595,0.955993,0.402627,0.877782,0.0534774,0.632378,0.0609917,0.741148,0.811395,0.524849,0.946287,0.741045,0.431407,0.0158154,0.263268,0.152976,0.395788,0.801381,0.476347,0.992583,0.392447,0.802119,0.82934,0.100228,0.73717,0.180431,0.872108,0.910594,0.0540488,0.882715,0.546871,0.132153,0.771336,0.673115,0.946645,0.586308,0.60781,0.80985,0.35209,0.145023,0.811569,0.891404,0.602649,0.323714,0.727616,0.206537,0.506422,0.456773,0.780825,0.358665,0.867674,0.040255,0.301497,0.0942613,0.504314,0.407242,0.239708,0.0972634,0.966789,0.98229,0.0291273,0.988645,0.462206,0.124397,0.572162,0.546379,0.28622,0.669369,0.0285882,0.345808,0.70154,0.90591,0.814475,0.107818,0.192572,0.494038,0.708308,0.0869946,0.185231,0.99011,0.636188,0.421126,0.493693,0.655718,0.770308,0.197963,0.888318,0.0462943,0.984321,0.0816835,0.815726,0.348123,0.586977,0.700217,0.500264,0.716721,0.206967,0.988678,0.1007,0.181325,0.374853,0.3468,0.948916,0.836634,0.639899,0.490539,0.371312,0.895747,0.219219,0.360964,0.88652,0.529311,0.361743,0.0459999,0.798183,0.909987,0.609722,0.710375,0.449014,0.542012,0.0284417,0.0864226,0.636832,0.9655,0.336596,0.535844,0.0714881,0.413313,0.831365,0.766134,0.384757,0.975825,0.120875,0.18238,0.472594,0.631151,0.397043,0.202721,0.290119,0.228391,0.44936,0.064189,0.435131,0.763053,0.409516,0.42505,0.585232,0.781495,0.671661,|0.218276,0.968197,0.518281,0.0227132,0.733473,0.0879429,0.30148,0.511816,0.572771,0.778014,0.279656,0.942137,0.736511,0.255351,0.189089,0.717489,0.128636,0.296531,0.395767,0.335557,0.0153638,0.612778,0.197276,0.906594,0.0427423,0.596042,0.336614,0.377861,0.326892,0.0675862,0.367186,0.929262,0.613819,0.107939,0.155524,0.100255,0.989053,0.595346,0.985949,0.899672,0.369607,0.863474,0.230208,0.149106,0.245247,0.1867,0.448134,0.719885,0.281165,0.00486952,0.848362,0.434549,0.517265,0.211153,0.971522,0.450012,0.891994,0.371629,0.799836,0.648103,0.0255585,0.581318,0.0878475,0.924934,0.931505,0.702062,0.0743452,0.374233,0.181592,0.81091,0.361829,0.586852,0.70529,0.741145,0.317724,0.513009,0.594514,0.896089,0.439613,0.669608,0.0625889,0.63852,0.25505,0.911538,0.212157,0.65813,0.318771,0.806526,0.0449046,0.495293,0.997029,0.435854,0.410778,0.0563759,0.162672,0.804432,0.970787,0.260419,0.357644,0.343553,0.935505,0.750804,0.921269,0.631711,0.14625,0.783242,0.93079,0.246313,0.151972,0.167044,0.653715,0.708302,0.176482,0.343909,0.20415,0.412053,0.27905,0.827987,0.552855,0.180676,0.729446,0.406197,0.704808,0.0398371,0.953261,0.218987,0.561581,0.31344,0.767835,0.262987,0.424888,0.553199,0.442481,0.272928,0.311418,0.203914,0.708056,0.363021,0.00770259,0.567958,0.985669,0.759086,0.271402,0.211246,0.631231,0.0107443,0.5432,0.567072,0.359033,0.44519,0.665422,0.806878,0.663458,0.448429,0.454007,0.00619316,0.73494,0.163176,0.718618,0.874936,0.363921,0.624296,0.643951,0.984868,0.116154,0.556989,0.680502,0.0105791,0.587826,0.832167,0.10554,0.673675,0.0147924,0.534698,0.138868,0.0782025,0.323897,0.10504,0.518514,0.830471,0.466153,0.917922,0.25021,0.221051,0.55325,0.35176,0.493796,0.68498,0.138975,0.644131,0.52785,0.848599,0.382969,0.369254,0.540915,0.79478,0.369219,0.397749,0.823986,0.642742,0.810995,0.956134,0.436668,0.985399,0.526981,0.592285,0.172493,0.170586,0.0174707,0.679908,0.573237,0.330888,0.373753,0.589243,0.127147,0.876336,0.446928,0.047244,0.523904,0.728943,0.313238,0.172272,0.26444,0.488883,0.795186,0.805433,0.67294,0.546373,0.025152,0.505183,0.669826,0.391709,0.980762,0.854122,0.0967346,0.489034,0.199893,0.201078,0.272911,0.143877,0.657489,0.920586,0.0906592,0.283691,0.717043,0.27089,0.0573599,0.236463,0.283599,0.153788,0.906034,0.561901,0.0146285,0.154281,0.465503,0.23842,0.126199,0.211603,0.163467,0.884714,0.748307,0.637034,0.304283,0.295294,0.160426,0.676849,0.545845,0.799464,0.095511,0.927601,0.766413,0.929011,0.978521,0.989521,0.0845867,0.845249,0.484556,0.996909,0.223918,0.950847,0.0284769,0.948305,0.390566,0.312491,0.902369,0.864913,0.109263,0.308483,0.633212,0.819164,0.717829,0.695596,0.989859,0.282056,0.32134,0.884995,0.730258,0.304386,0.721905,0.819537,0.0842242,0.373653,0.683857,0.616089,0.44474,0.324085,0.280284,0.83501,0.512111,0.320789,0.806153,0.179554,0.658094,0.29618,0.173162,0.231257,0.903589,0.903491,0.392819,0.12982,0.417869,0.00815433,0.97606,0.440163,0.79885,0.805503,0.889403,0.692975,0.787756,0.443432,0.23306,0.154508,0.696326,0.809973,0.122022,0.85461,0.204125,0.328923,0.758672,0.141626,0.676691,0.312755,0.577867,0.541018,0.703821,0.506645,0.768467,0.33745,0.617118,0.623199,0.269604,0.736782,0.876437,0.892045,0.162796,0.100579,0.47917,0.689203,0.875493,0.0258089,0.0202929,0.0563597,0.366142,0.913262,0.866109,0.770101,0.188975,0.524254,0.863252,0.887296,0.610027,0.947471,0.753024,0.538144,0.0158129,0.793116,0.443722,0.311144,0.877572,0.98825,0.452745,0.263633,0.62902,0.258303,0.00970221,0.27815,0.489817,0.99429,0.394983,0.00918168,0.314211,0.425205,0.749321,0.494946,0.0275419,0.302905,0.445844,0.482117,0.313103,0.382382,0.939874,0.451947,0.800999,0.359913,0.551669,0.350729,0.741284,0.400671,0.567634,0.751134,0.565547,0.041535,0.129355,0.527632,0.852884,0.00790262,0.635241,0.778016,0.297067,0.57883,0.980409,0.134761,0.927952,0.467173,0.228928,0.0898777,0.626825,0.565553,0.194164,0.721672,0.607112,0.870112,0.934142,0.271479,0.934084,0.695931,0.691945,0.440343,0.53412,0.123301,0.963033,0.0544018,0.85989,0.538826,0.158852,0.647347,0.9003,0.0842678,0.193401,0.529739,0.600103,0.276662,0.561259,0.0959879,0.0126584,0.21542,0.298714,0.410677,0.159522,0.577111,0.609381,0.852123,0.269158,0.906486,0.165363,0.0660349,0.376872,0.263091,0.147499,0.185158,0.221485,0.87207,0.491621,0.447958,0.684849,0.353068,0.290715,0.992524,0.167472,0.99901,0.169117,0.870123,0.391072,0.438717,0.483244,0.879533,0.179291,0.534154,0.238994,0.275083,0.289419,0.164622,0.0682293,0.20401,0.618799,0.0131547,0.831729,0.938013,0.550159,0.734743,0.724377,0.716339,0.646544,0.900157,0.0961226,0.876479,0.935067,0.795147,0.366001,0.851747,0.197806,0.479473,0.876277,0.540458,0.99529,0.657436,0.528653,0.0954478,0.131792,0.555175,0.740601,0.847696,0.150446,0.75437,0.947415,0.342933,0.3645,0.66739,0.925817,0.791647,0.22696,0.568444,0.23702,0.967109,0.0163493,0.364144,0.41042,0.875042,0.495891,0.212851,0.273758,0.378143,0.720974,0.108674,0.435575,0.808178,0.669501,0.845096,0.733396,0.793928,0.70659,0.120097,0.174101,0.267805,0.0701566,0.22274,0.916662,0.873092,0.566819,0.598987,0.402169,0.401256,0.885822,0.211039,0.0677232,0.622537,0.561345,0.0453409,0.422007,0.924775,0.685876,0.799425,0.916842,0.822539,0.52687,0.765277,0.909966,0.307996,0.473886,0.50259,0.215322,0.529948,0.799973,0.376325,0.715775,0.342733,0.479639,0.0453246,0.666929,0.836299,0.94171,0.533484,0.137049,0.759081,0.920664,0.33923,0.705883,0.535841,0.520787,0.132719,0.919626,0.984346,0.27295,0.708521,0.631391,0.0618782,0.737406,0.752537,0.579775,0.335137,0.201601,0.972914,0.900894,0.765839,0.0547,0.0164514,0.740993,0.527277,0.251632,0.148148,0.704446,0.362475,0.598968,0.618881,0.748738,0.265277,0.981694,0.0605398,0.886696,0.63264,0.0608014,0.247704,0.55933,0.816793,0.537291,0.0881987,0.402685,0.0203604,0.844633,0.379407,0.154613,0.878051,0.75799,0.699367,0.843181,0.466942,0.717175,0.710285,0.827023,0.888185,0.589554,0.309843,0.742438,0.725805,0.759603,0.0717471,0.076873,0.0450614,0.744104,0.398398,0.10452,0.284667,0.439723,0.550713,0.369345,0.438842,0.589083,0.591233,0.0829762,0.429241,0.431545,0.752054,0.667064,0.874586,0.182908,0.906196,0.139551,0.746425,0.0555732,0.15809,0.284358,0.935978,0.566327,0.989233,0.531111,0.0790365,0.467609,0.133574,0.820937,0.476405,0.365444,0.615843,0.293528,0.194434,0.641054,0.202232,0.292779,0.00845438,0.118084,0.672649,0.625757,0.729151,0.1483,0.912221,0.41934,0.942499,0.0252473,0.711661,0.828633,0.571065,0.351134,0.348094,0.250323,0.653417,0.431239,0.977641,0.383021,0.702897,0.207613,0.619828,0.33427,0.910767,0.0780864,0.132521,0.709849,0.409601,0.387033,0.951893,0.239161,0.544198,0.510886,0.0555516,0.547839,0.59369,0.531623,0.183779,0.592634,0.45912,0.478584,0.493898,0.927189,0.804892,0.028531,0.966671,0.70107,0.100382,0.438849,0.00239837,0.472557,0.22343,0.143984,0.951969,0.635646,0.723392,0.615536,0.671397,0.486966,0.929222,0.186708,0.806796,0.411864,0.62545,0.806418,0.111429,0.331343,0.864443,0.617184,0.114559,0.497294,0.683947,0.656055,0.968587,0.792963,0.499793,0.148338,0.672256,0.200797,0.628832,0.21127,0.806026,0.357003,0.265044,0.843992,0.218149,0.0902783,0.21202,0.201127,0.962774,0.842112,0.505528,0.73779,0.768862,0.957562,0.447964,0.501982,0.797555,0.311152,0.112427,0.372227,0.221239,0.686386,0.239894,0.145939,0.541824,0.8775,0.542328,0.431786,0.0421011,0.85908,0.113703,0.916188,0.341353,0.91166,0.415188,0.725494,0.747261,0.266181,0.601415,0.872621,0.724356,0.741848,0.635527,0.108556,0.19805,0.80675,0.860712,0.615184,0.483705,0.0226566,0.0897444,0.755968,0.213217,0.200236,0.0720583,0.234071,0.00041616,0.0908509,0.250184,0.150718,0.702248,0.419027,0.380099,0.20761,0.843373,0.965497,0.221815,0.239173,0.0215127,0.895742,0.618546,0.950469,0.73412,0.0907046,0.957151,0.313668,0.729204,0.955861,0.518881,0.962675,0.0244496,0.993737,0.833301,0.950113,0.855252,0.258073,0.924229,0.506051,0.734016,0.558906,0.712737,0.835142,0.475553,0.98417,0.596294,0.0133764,0.671471,0.249822,0.511939,0.50176,0.601821,0.622906,0.260607,0.874478,0.227703,0.754205,0.562356,0.0338864,0.329629,0.687798,0.847915,0.438503,0.170887,0.351121,0.0285988,0.272043,0.919505,0.0961456,0.451184,0.772276,0.953239,0.467331,0.289209,0.367707,0.759365,0.173961,0.494998,0.872642,0.573469,0.910608,0.247855,0.782671,0.903118,0.564073,0.984811,0.993649,0.018136,0.370537,0.776631,0.142311,0.734065,0.11574,0.103365,0.302371,0.118109,0.311481,0.0765737,0.993165,0.871957,0.393638,0.87852,0.918688,0.536458,0.646469,0.726448,0.993992,0.903698,0.303994,0.858555,0.303797,0.482983,0.270619,0.826127,0.626426,0.94386,0.912721,0.970562,0.613585,0.145537,0.00578785,0.695142,0.420393,0.776472,0.314676,0.479787,0.722333,0.11027,0.683616,0.122393,0.844907,0.448355,0.608084,0.327935,0.667418,0.362185,0.647478,0.489716,0.339961,0.443873,0.956729,0.678674,0.35788,0.203024,0.125166,0.7503,0.87743,0.0635107,0.684447,0.658448,0.636681,0.00141585,0.947961,0.721336,0.323726,0.0464906,0.468328,0.870649,0.371738,0.495961,0.479112,0.860813,0.968778,0.933866,0.40187,0.897017,0.503581,0.505477,0.178476,0.233038,0.613703,0.861076,|0.789031,0.306241,0.745958,0.115153,0.820566,0.148271,0.186594,0.725554,0.0129597,0.15912,0.914936,0.848563,0.398433,0.287775,0.678028,0.489259,0.442422,0.213193,0.290715,0.619324,0.561908,0.614242,0.439762,0.26681,0.331316,0.157552,0.950318,0.226875,0.65441,0.908742,0.921206,0.781031,0.353196,0.733116,0.435571,0.65425,0.748668,0.43559,0.981277,0.33722,0.833728,0.566423,0.826042,0.370188,0.352599,0.746792,0.187644,0.512168,0.0874969,0.922082,0.707786,0.511099,0.452856,0.840769,0.167517,0.546564,0.742803,0.484368,0.510015,0.460681,0.459398,0.934508,0.0869083,0.689824,0.504853,0.607328,0.898722,0.213274,0.978224,0.565804,0.480457,0.487247,0.925656,0.773025,0.473027,0.952242,0.176344,0.84816,0.314058,0.240981,0.849127,0.0707837,0.830426,0.836551,0.0916375,0.907585,0.358652,0.0580509,0.00487947,0.514754,0.540065,0.788095,0.14558,0.264423,0.72134,0.443056,0.764052,0.947674,0.293628,0.938867,0.67864,0.154729,0.527586,0.52039,0.584356,0.447485,0.408765,0.822778,0.3558,0.537253,0.846078,0.00466424,0.294831,0.766735,0.977417,0.436195,0.992749,0.41755,0.724645,0.973333,0.759858,0.299185,0.583626,0.895571,0.906929,0.966268,0.563638,0.268819,0.518657,0.0671595,0.830618,0.0570356,0.544211,0.656753,0.0621679,0.759513,0.67854,0.196968,0.289293,0.84532,0.384329,0.985934,0.783927,0.30707,0.858423,0.682408,0.98134,0.656085,0.678761,0.159764,0.351264,0.668641,0.951195,0.273274,0.233911,0.755864,0.163065,0.661474,0.190769,0.736615,0.396957,0.172449,0.174064,0.782146,0.421507,0.0116149,0.00351167,0.197132,0.472688,0.286162,0.519005,0.943408,0.621683,0.462408,0.625153,0.0298871,0.59804,0.636126,0.34689,0.373248,0.514449,0.637332,0.314775,0.73371,0.753525,0.0599726,0.13168,0.80465,0.383425,0.562307,0.574845,0.708271,0.0378179,0.224383,0.726973,0.416505,0.253911,0.503683,0.676715,0.822644,0.794064,0.716476,0.36917,0.647109,0.587107,0.750088,0.373138,0.849366,0.717849,0.756476,0.589105,0.474528,0.463814,0.619145,0.445674,0.77811,0.744824,0.125542,0.742787,0.293244,0.574509,0.581165,0.239123,0.423909,0.419241,0.348322,0.489302,0.422677,0.383179,0.385891,0.40822,0.948559,0.703907,0.386913,0.936059,0.92154,0.806742,0.848968,0.999868,0.267411,0.22274,0.296618,0.899071,0.17783,0.716756,0.720617,0.383341,0.943769,0.303575,0.440179,0.699221,0.0871331,0.254554,0.738278,0.0238515,0.912812,0.362683,0.0040645,0.240274,0.210021,0.00959802,0.789104,0.269945,0.941678,0.674866,0.660893,0.204463,0.86619,0.297983,0.306338,0.554645,0.720535,0.42433,0.673913,0.797949,0.850905,0.846379,0.385132,0.637589,0.58153,0.873342,0.0201772,0.897112,0.733642,0.893996,0.160863,0.257006,0.668361,0.267067,0.720857,0.301648,0.661957,0.152843,0.700333,0.0720609,0.915473,0.627835,0.828164,0.485825,0.668498,0.60064,0.606195,0.0129074,0.915063,0.319686,0.0334907,0.941559,0.0307613,0.559569,0.875821,0.646578,0.230215,0.553983,0.0595376,0.728146,0.643795,0.481095,0.461142,0.69826,0.0127147,0.668021,0.877523,0.481662,0.223856,0.989656,0.508058,0.242687,0.299566,0.70066,0.495228,0.176918,0.465051,0.815693,0.283271,0.170147,0.628604,0.86465,0.588668,0.490148,0.730205,0.986912,0.448276,0.3118,0.742461,0.601673,0.883564,0.343525,0.544785,0.262718,0.463498,0.689949,0.856386,0.717493,0.676788,0.00486434,0.0515935,0.531524,0.804597,0.0698182,0.00231493,0.816235,0.52036,0.203538,0.5889,0.524222,0.133485,0.00384623,0.619508,0.732511,0.384325,0.196732,0.873579,0.848991,0.617708,0.281519,0.971009,0.176702,0.0837704,0.321665,0.778711,0.438337,0.237249,0.63938,0.400138,0.257349,0.177641,0.373714,0.75234,0.973811,0.558993,0.745926,0.611762,0.693992,0.879295,0.922519,0.0975518,0.425286,0.4162,0.311753,0.899688,0.872595,0.221704,0.239611,0.475802,0.981956,0.0117673,0.599234,0.382592,0.490112,0.75565,0.354115,0.746934,0.925984,0.193544,0.389711,0.720502,0.0135034,0.492701,0.835849,0.470202,0.472889,0.477495,0.028966,0.906246,0.467247,0.282393,0.992532,0.705797,0.462097,0.483753,0.97544,0.268322,0.328977,0.329758,0.745905,0.449522,0.671894,0.209339,0.300667,0.496563,0.153008,0.217634,0.0470678,0.799616,0.0472684,0.543271,0.796445,0.443025,0.638433,0.259701,0.746617,0.234659,0.895651,0.914937,0.313332,0.863749,0.583749,0.147832,0.572888,0.612976,0.20437,0.469879,0.97216,0.679278,0.420594,0.363189,0.784563,0.590467,0.420921,0.764236,0.702659,0.306153,0.674568,0.751893,0.544762,0.620001,0.167143,0.597538,0.925386,0.954092,0.852565,0.785926,0.979269,0.0575547,0.446314,0.746535,0.677489,0.952555,0.301069,0.744353,0.454852,0.730139,0.231972,0.131725,0.670589,0.385466,0.718423,0.38508,0.759596,0.954349,0.619199,0.659311,0.60506,0.828332,0.151035,0.89557,0.860373,0.790939,0.736263,0.51725,0.0392179,0.294778,0.28645,0.590907,0.765738,0.437042,0.405225,0.082338,0.516147,0.858386,0.64528,0.617489,0.866553,0.696124,0.159183,0.125545,0.281875,0.68997,0.864414,0.749177,0.0769371,0.297326,0.819015,0.405486,0.848258,0.557296,0.517516,0.305594,0.290339,0.357593,0.343339,0.433568,0.0675005,0.0881357,0.800526,0.348018,0.240387,0.791969,0.147363,0.592008,0.661112,0.354384,0.105577,0.686862,0.0321483,0.866193,0.882187,0.691851,0.194566,0.995445,0.723681,0.583099,0.999588,0.182245,0.127967,0.775524,0.608118,0.0874168,0.703706,0.0895674,0.809432,0.568718,0.0659539,0.0394044,0.293399,0.69179,0.141238,0.135013,0.427583,0.0347926,0.958453,0.0534212,0.88873,0.261078,0.199214,0.0921404,0.294774,0.32764,0.0735741,0.329619,0.191405,0.417084,0.305746,0.793234,0.350571,0.596681,0.985454,0.778257,0.904477,0.0324491,0.193511,0.944447,0.981191,0.289176,0.572221,0.54902,0.0417688,0.990807,0.508889,0.193136,0.879698,0.999516,0.315292,0.362982,0.035602,0.338786,0.591107,0.0793344,0.896472,0.192333,0.358079,0.937974,0.739092,0.130747,0.332424,0.918943,0.496999,0.066759,0.0160155,0.934634,0.690059,0.335194,0.672472,0.902674,0.665206,0.0840561,0.411353,0.514664,0.609097,0.562357,0.840304,0.141051,0.856584,0.615358,0.511003,0.0849188,0.884912,0.215984,0.966431,0.969693,0.92542,0.225757,0.584483,0.501404,0.937272,0.26561,0.573276,0.391537,0.235449,0.629334,0.0763987,0.116394,0.729176,0.0686416,0.0673816,0.301719,0.208757,0.0778534,0.411916,0.746006,0.366726,0.490567,0.750622,0.162655,0.846114,0.103552,0.455519,0.280978,0.0333374,0.267406,0.579041,0.691721,0.325979,0.628305,0.288203,0.478017,0.674465,0.311406,0.985829,0.192301,0.218721,0.0889894,0.553439,0.155526,0.343805,0.0843448,0.450948,0.572205,0.00933462,0.907251,0.792748,0.913993,0.796894,0.768134,0.31453,0.720374,0.357889,0.0237948,0.441959,0.316126,0.847155,0.90269,0.841043,0.734099,0.66713,0.516506,0.429955,0.837786,0.864531,0.657797,0.438909,0.587532,0.787486,0.386564,0.988561,0.0220363,0.768234,0.863546,0.39377,0.138641,0.422331,0.786966,0.197359,0.551989,0.994103,0.0139138,0.759127,0.664292,0.39385,0.442232,0.963382,0.0257267,0.799323,0.159515,0.877607,0.388295,0.792809,0.090889,0.675001,0.233622,0.739073,0.888664,0.63829,0.136206,0.689265,0.649082,0.65746,0.955432,0.916686,0.703893,0.315501,0.869046,0.251713,0.192358,0.204097,0.0903752,0.219218,0.16077,0.916424,0.334157,0.425683,0.318348,0.826896,0.684826,0.857369,0.17381,0.174026,0.327341,0.10417,0.0139326,0.288004,0.421911,0.896214,0.553833,0.482983,0.971216,0.850185,0.537723,0.228192,0.855839,0.391836,0.840541,0.955064,0.41247,0.794621,0.293413,0.998165,0.145243,0.808036,0.16325,0.919637,0.273421,0.566191,0.110669,0.440825,0.613473,0.209278,0.598849,0.13594,0.227396,0.765266,0.669536,0.962265,0.145971,0.259148,0.0115945,0.94576,0.829724,0.00142562,0.539547,0.160986,0.566747,0.938274,0.78175,0.284498,0.727187,0.0880468,0.0566523,0.219521,0.599456,0.091276,0.831841,0.972964,0.561678,0.920433,0.961159,0.193572,0.955619,0.666303,0.90433,0.804655,0.504687,0.983164,0.178699,0.302859,0.110486,0.806898,0.620658,0.130944,0.242938,0.761893,0.00855309,0.155569,0.615774,0.0205155,0.0103764,0.186051,0.216461,0.101816,0.0416781,0.695128,0.782807,0.882132,0.695882,0.313731,0.357052,0.748384,0.960224,0.423428,0.261552,0.454574,0.85372,0.516756,0.28084,0.776501,0.656979,0.379485,0.570608,0.168066,0.698013,0.937776,0.484294,0.667958,0.222585,0.377063,0.0201929,0.915531,0.541263,0.0663198,0.857291,0.184878,0.497344,0.533214,0.0852789,0.109847,0.0987545,0.839302,0.253396,0.274893,0.0506403,0.702505,0.241961,0.620903,0.87341,0.561399,0.0665718,0.887834,0.348102,0.828163,0.767757,0.326798,0.215758,0.345196,0.812384,0.474381,0.0866625,0.599714,0.27105,0.970941,0.796545,0.0485145,0.647361,0.548763,0.366299,0.729538,0.408268,0.429774,0.704982,0.64957,0.470135,0.480868,0.211984,0.163547,0.0143967,0.898605,0.69399,0.697022,0.311184,0.390642,0.394222,0.660349,0.261096,0.862409,0.611045,0.545737,0.931598,0.235039,0.866341,0.87686,0.69861,0.626027,0.814595,0.402861,0.333458,0.262572,0.51894,0.175824,0.536715,0.246598,0.701623,0.679375,0.628761,0.676931,0.700478,0.755644,0.0096041,0.328736,0.252875,0.155532,0.925446,0.399923,0.56219,0.372457,0.910012,0.667793,0.880031,0.124407,0.853066,0.684748,0.687765,0.743198,0.843127,0.339793,0.194265,0.41611,0.115833,0.878662,0.952331,0.624147,0.952996,0.10663,0.0218836,0.572843,0.370975,0.59499,0.203708,0.566755,0.496737,0.599456,0.279415,|0.0497043,0.257738,0.518456,0.647925,0.0316889,0.581028,0.801809,0.846991,0.197573,0.855904,0.576762,0.24386,0.601748,0.0450066,0.487764,0.114958,0.562242,0.236866,0.178882,0.225099,0.978904,0.656155,0.153003,0.404078,0.644615,0.664707,0.40184,0.0741922,0.514735,0.213185,0.732696,0.311664,0.218463,0.47068,0.0168164,0.368927,0.413586,0.86474,0.676728,0.253299,0.267988,0.08933,0.387518,0.633584,0.469846,0.1745,0.299708,0.114127,0.828964,0.124622,0.17716,0.522178,0.0649716,0.240173,0.205503,0.864125,0.467564,0.0322405,0.508702,0.391922,0.448921,0.116409,0.697654,0.263617,0.216676,0.495089,0.143732,0.803455,0.243793,0.954301,0.352316,0.572215,0.0614682,0.586755,0.723835,0.83826,0.217245,0.494336,0.96855,0.488253,0.361144,0.265054,0.489112,0.950942,0.174286,0.399906,0.456549,0.561628,0.331485,0.0940855,0.66404,0.239915,0.415933,0.209387,0.570592,0.679731,0.510216,0.72467,0.785642,0.941087,0.0726892,0.270666,0.711722,0.774088,0.828508,0.458337,0.91717,0.236723,0.930737,0.122762,0.945691,0.380866,0.479288,0.966094,0.495567,0.934511,0.748156,0.214053,0.97756,0.95553,0.237519,0.678701,0.633315,0.866393,0.378582,0.320263,0.70362,0.133839,0.169679,0.0737686,0.0119156,0.102149,0.241573,0.482482,0.0748186,0.076178,0.561487,0.808521,0.737762,0.558617,0.865523,0.658556,0.244887,0.765874,0.554261,0.044899,0.965133,0.560888,0.0880534,0.605143,0.152921,0.884442,0.459445,0.149596,0.509792,0.100002,0.782331,0.927694,0.311228,0.367793,0.918731,0.602675,0.929847,0.123828,0.690527,0.356305,0.85357,0.982647,0.0527149,0.125654,0.456618,0.435158,0.0256283,0.802747,0.661046,0.430806,0.533201,0.0782317,0.254213,0.159272,0.362352,0.04814,0.950178,0.439652,0.567837,0.79313,0.27273,0.409501,0.445052,0.319072,0.426645,0.133635,0.0897692,0.662047,0.615888,0.700085,0.390484,0.81069,0.22584,0.168872,0.341028,0.962228,0.199424,0.0967739,0.47745,0.409487,0.276126,0.913849,0.11438,0.99904,0.244078,0.958956,0.49423,0.823959,0.397661,0.980348,0.9619,0.0931501,0.62796,0.13255,0.609432,0.33722,0.784669,0.495955,0.524308,0.251031,0.295674,0.572303,0.584237,0.679764,0.87265,0.100145,0.114495,0.805039,0.335411,0.00674146,0.210585,0.309902,0.11091,0.139123,0.100011,0.966202,0.386888,0.849322,0.781187,0.946148,0.536852,0.860986,0.372846,0.0909314,0.424169,0.552796,0.36527,0.0593413,0.275118,0.157165,0.191262,0.984367,0.0628901,0.225106,0.955126,0.531611,0.577417,0.736107,0.0697215,0.496745,0.696044,0.961514,0.043927,0.233098,0.420819,0.0783646,0.879107,0.941108,0.624033,0.354149,0.825425,0.137913,0.154013,0.408266,0.610886,0.526904,0.293558,0.0376934,0.238848,0.606081,0.694719,0.702261,0.209558,0.141322,0.81543,0.741875,0.998309,0.718893,0.140076,0.48102,0.418529,0.161314,0.543021,0.973356,0.849561,0.190169,0.541256,0.99838,0.405285,0.272801,0.737873,0.284815,0.389043,0.483349,0.987875,0.943276,0.923696,0.802479,0.400888,0.120511,0.898089,0.214845,0.62846,0.759955,0.726245,0.549862,0.57267,0.670023,0.691698,0.213066,0.892728,0.350139,0.0349019,0.862732,0.902252,0.403096,0.911047,0.669871,0.537276,0.477575,0.0193285,0.130654,0.59357,0.395286,0.110968,0.552734,0.80806,0.604434,0.591609,0.874954,0.590113,0.374649,0.326612,0.087022,0.920326,0.635947,0.853754,0.635332,0.899748,0.723813,0.487102,0.00103331,0.189864,0.371748,0.804455,0.873671,0.737713,0.209875,0.472797,0.722525,0.846581,0.211055,0.537658,0.960792,0.481563,0.162439,0.763171,0.151724,0.280747,0.883323,0.193519,0.739752,0.0417255,0.594899,0.350056,0.431503,0.141931,0.0920578,0.586741,0.522288,0.74777,0.359664,0.84278,0.0360069,0.369527,0.145365,0.335359,0.846367,0.0145225,0.429414,0.21947,0.399005,0.639233,0.744913,0.57735,0.984384,0.491298,0.730237,0.524055,0.671217,0.882629,0.405581,0.726281,0.414937,0.360933,0.0996445,0.645081,0.261799,0.536695,0.524986,0.576633,0.435657,0.506206,0.0420347,0.0830429,0.983897,0.232024,0.953259,0.0928746,0.392262,0.919274,0.966751,0.0763708,0.455215,0.702788,0.579098,0.809183,0.58359,0.932561,0.598071,0.357584,0.541056,0.0406105,0.653956,0.340564,0.811624,0.846425,0.068361,0.522762,0.818135,0.499651,0.255833,0.262108,0.857922,0.536592,0.641905,0.210021,0.0982639,0.840465,0.801818,0.903837,0.405486,0.0608819,0.924077,0.90056,0.516706,0.625077,0.00410575,0.787605,0.475336,0.895587,0.0106174,0.0463226,0.802602,0.773408,0.821151,0.77257,0.472654,0.919629,0.652612,0.754292,0.903992,0.989931,0.952883,0.567341,0.411221,0.634648,0.744275,0.966904,0.609693,0.973292,0.663098,0.933919,0.729628,0.140233,0.314049,0.866533,0.613939,0.178083,0.147142,0.752571,0.520172,0.740627,0.675443,0.449417,0.851526,0.566817,0.777261,0.664181,0.600309,0.568364,0.403382,0.107503,0.836006,0.74198,0.68176,0.86409,0.238065,0.337233,0.75708,0.561109,0.830914,0.0221838,0.464389,0.405607,0.773831,0.280431,0.00592762,0.0987672,0.754052,0.588248,0.280382,0.22494,0.164084,0.531558,0.770508,0.241128,0.0536128,0.18628,0.584875,0.585048,0.48909,0.608085,0.911838,0.84016,0.0363124,0.913616,0.00898844,0.146163,0.389323,0.389567,0.111776,0.394449,0.351553,0.372679,0.411227,0.639025,0.315077,0.839403,0.154947,0.0905228,0.712682,0.583583,0.909969,0.728166,0.965776,0.831988,0.120675,0.466428,0.597565,0.14803,0.416662,0.505621,0.80046,0.362127,0.335018,0.580926,0.959365,0.691913,0.436547,0.37223,0.802511,0.397684,0.882949,0.0808501,0.473793,0.872368,0.65453,0.805815,0.360734,0.199559,0.0992893,0.682893,0.908121,0.0576958,0.548202,0.767869,0.414998,0.234576,0.767117,0.69792,0.671259,0.0596105,0.233324,0.990794,0.744186,0.321139,0.700876,0.822826,0.615595,0.26667,0.030298,0.36597,0.366942,0.516461,0.765511,0.57643,0.255167,0.674559,0.847636,0.465599,0.604359,0.0416088,0.199156,0.633893,0.975668,0.788792,0.465452,0.992872,0.969118,0.909035,0.217271,0.922282,0.321763,0.447738,0.122799,0.445548,0.102959,0.233022,0.10555,0.487536,0.603604,0.800516,0.216919,0.038011,0.492572,0.669572,0.184318,0.747112,0.160866,0.131806,0.53178,0.855715,0.651162,0.726421,0.64733,0.247533,0.108945,0.0876343,0.132348,0.468017,0.669167,0.99639,0.665028,0.110326,0.0235986,0.369736,0.353939,0.584757,0.466721,0.351567,0.689275,0.264025,0.17159,0.791292,0.899469,0.425958,0.527978,0.561809,0.681475,0.691439,0.645717,0.929547,0.481094,0.519667,0.568556,0.253944,0.746812,0.229926,0.402432,0.80775,0.275907,0.47936,0.464746,0.00650275,0.962671,0.667703,0.934229,0.869311,0.892395,0.518446,0.926946,0.686308,0.849965,0.442992,0.115835,0.310155,0.972893,0.615547,0.652671,0.232946,0.28392,0.740487,0.0239852,0.171226,0.321036,0.486285,0.477388,0.428699,0.821293,0.487352,0.947032,0.269207,0.586069,0.374206,0.0402352,0.599808,0.198359,0.765744,0.208992,0.860569,0.436431,0.659102,0.386531,0.308562,0.12323,0.967727,0.291135,0.821019,0.430066,0.984999,0.346842,0.781318,0.440378,0.55991,0.881863,0.336487,0.82989,0.312579,0.841368,0.228565,0.274198,0.368451,0.700398,0.685514,0.336347,0.293238,0.890484,0.285914,0.00178862,0.4623,0.745796,0.120968,0.166359,0.138813,0.973782,0.530658,0.647418,0.476424,0.51341,0.237133,0.218711,0.411107,0.804162,0.03732,0.323428,0.794116,0.899508,0.927744,0.643658,0.793596,0.766266,0.131643,0.615686,0.323296,0.666395,0.444985,0.827577,0.345319,0.352184,0.369714,0.501091,0.222157,0.593487,0.785976,0.804051,0.0401996,0.36071,0.384286,0.158499,0.41018,0.744033,0.731492,0.66417,0.0766646,0.203512,0.521187,0.51213,0.811246,0.474657,0.604615,0.126729,0.219692,0.630723,0.463532,0.495275,0.970427,0.572092,0.351608,0.548166,0.263277,0.761046,0.755155,0.263646,0.0173289,0.993634,0.462434,0.369336,0.246986,0.119945,0.367056,0.866861,0.460968,0.856976,0.292318,0.330786,0.679584,0.0883418,0.763405,0.833562,0.879972,0.467473,0.18538,0.470738,0.229893,0.855196,0.974453,0.127044,0.971747,0.642313,0.278359,0.0295222,0.129966,0.733002,0.85065,0.325881,0.31317,0.659583,0.945943,0.623458,0.695628,0.348492,0.974515,0.711346,0.0470378,0.931366,0.90049,0.381606,0.443929,0.264825,0.0463306,0.483988,0.97787,0.941676,0.238279,0.291761,0.204028,0.445981,0.456943,0.817964,0.516146,0.594591,0.574268,0.0658256,0.985287,0.161891,0.290512,0.0104162,0.70443,0.891325,0.96193,0.119769,0.370516,0.0452434,0.654335,0.923986,0.509966,0.864947,0.846003,0.983531,0.968964,0.528212,0.621619,0.681607,0.711186,0.546772,0.438895,0.232881,0.141912,0.56374,0.847938,0.284552,0.507573,0.813412,0.259649,0.100232,0.0243568,0.1425,0.0693934,0.544108,0.696833,0.405312,0.717139,0.431228,0.372993,0.103298,0.522391,0.824856,0.970103,0.88529,0.871517,0.264081,0.532374,0.656645,0.467473,0.598789,0.0719759,0.214262,0.0790167,0.926369,0.769391,0.329581,0.461903,0.139994,0.12084,0.882472,0.25366,0.506177,0.73777,0.533518,0.139172,0.573533,0.915056,0.822482,0.0548817,0.00349557,0.744276,0.277626,0.42043,0.0368241,0.448425,0.300608,0.246271,0.698397,0.838016,0.213808,0.790886,0.0923906,0.713535,0.205065,0.682558,0.700886,0.452097,0.880245,0.191475,0.902863,0.150627,0.921772,0.718577,0.220053,0.844676,0.845273,0.425418,0.676669,0.914863,0.316576,0.728545,0.456378,0.6951,0.949348,0.207034,0.252481,0.535115,0.344812,0.0778774,0.269466,0.771184,0.07465,0.40987,0.543301,0.786742,0.322706,0.162383,0.81811,|0.328155,0.678418,0.419673,0.64214,0.364817,0.0551227,0.471142,0.280971,0.859999,0.478524,0.0536734,0.22295,0.481757,0.85856,0.91241,0.129731,0.860185,0.274846,0.587983,0.616189,0.56808,0.312514,0.807489,0.908476,0.0553823,0.823489,0.710728,0.464221,0.0286788,0.847329,0.958971,0.136198,0.749804,0.971255,0.849597,0.857483,0.590669,0.967283,0.399836,0.0238547,0.503541,0.316364,0.895986,0.944418,0.706794,0.0341465,0.787338,0.852731,0.486044,0.037576,0.943003,0.22085,0.433515,0.916728,0.0814821,0.966412,0.262959,0.931586,0.309484,0.0356491,0.26741,0.210091,0.748413,0.372912,0.0410684,0.122844,0.630792,0.382614,0.720244,0.45607,0.823965,0.343817,0.326989,0.705794,0.764335,0.208819,0.210465,0.524295,0.223627,0.539077,0.606892,0.448732,0.246581,0.369972,0.00463539,0.0838713,0.015081,0.0830592,0.189994,0.137176,0.52237,0.0813233,0.662089,0.775053,0.538998,0.10324,0.181067,0.780028,0.426138,0.150877,0.287544,0.105134,0.764724,0.312903,0.93811,0.959051,0.548424,0.971175,0.76758,0.746523,0.314889,0.495184,0.688798,0.717607,0.811184,0.821479,0.729373,0.686452,0.33178,0.0333567,0.870273,0.191525,0.0418903,0.81593,0.396363,0.817458,0.156996,0.25203,0.0735134,0.28766,0.979125,0.653067,0.805716,0.975974,0.466629,0.316413,0.908223,0.471154,0.587876,0.281894,0.0197555,0.250016,0.471546,0.885591,0.337282,0.969852,0.424999,0.97519,0.814641,0.212993,0.332791,0.397639,0.557285,0.0513898,0.128997,0.630004,0.752294,0.298257,0.123763,0.944028,0.706694,0.0589441,0.434926,0.0795583,0.298477,0.750315,0.599664,0.0199484,0.855375,0.719691,0.794608,0.967759,0.591375,0.284668,0.584814,0.520916,0.769627,0.717831,0.291606,0.455173,0.984619,0.648559,0.473839,0.452513,0.648456,0.425071,0.819287,0.183391,0.403515,0.150034,0.0286784,0.862846,0.990517,0.301065,0.728868,0.108526,0.323122,0.654032,0.866178,0.924814,0.447141,0.883979,0.0237262,0.769511,0.508438,0.148855,0.909687,0.251587,0.464096,0.993315,0.15865,0.457265,0.592201,0.0754461,0.265575,0.0280911,0.838558,0.743352,0.359473,0.706774,0.598132,0.678324,0.863534,0.472955,0.538993,0.321564,0.598318,0.505839,0.233229,0.316694,0.859112,0.568261,0.595483,0.311534,0.697142,0.120635,0.0264225,0.502036,0.921101,0.00996703,0.156581,0.782893,0.441097,0.424651,0.230384,0.355909,0.595211,0.856821,0.478933,0.0499871,0.445084,0.323691,0.300414,0.160304,0.418364,0.833341,0.720622,0.611137,0.867585,0.212392,0.967998,0.746749,0.841463,0.320257,0.702758,0.246147,0.645291,0.661007,0.716795,0.585994,0.349752,0.378658,0.495105,0.705534,0.975336,0.630358,0.626757,0.837467,0.0878177,0.652048,0.3605,0.0128723,0.969757,0.764565,0.712743,0.634733,0.113387,0.960077,0.736582,0.269708,0.0951276,0.131833,0.0682119,0.498639,0.649056,0.167569,0.0592495,0.410621,0.216811,0.698479,0.429021,0.151532,0.997425,0.613699,0.596761,0.0300169,0.472731,0.129924,0.864401,0.40111,0.595013,0.324398,0.15632,0.444635,0.92697,0.295266,0.36514,0.941127,0.795763,0.750011,0.00148153,0.935836,0.103566,0.148541,0.839155,0.569438,0.371716,0.533249,0.454731,0.450979,0.262671,0.46202,0.440025,0.831161,0.483284,0.0658209,0.415908,0.409286,0.32571,0.564016,0.437038,0.793142,0.728803,0.154486,0.761132,0.894538,0.137846,0.400735,0.0345747,0.532359,0.0910232,0.442002,0.739068,0.93542,0.956291,0.379039,0.212053,0.181135,0.245323,0.187757,0.413905,0.732823,0.650448,0.689326,0.43558,0.419683,0.462104,0.978603,0.78113,0.155391,0.926957,0.332901,0.366646,0.43053,0.280269,0.803227,0.34211,0.415127,0.966032,0.906778,0.896307,0.0982754,0.659628,0.0527034,0.0274075,0.722188,0.375981,0.00984168,0.491721,0.16217,0.480432,0.321145,0.344713,0.686188,0.685316,0.33056,0.375078,0.184604,0.424994,0.932788,0.0599206,0.164856,0.0803904,0.250288,0.943558,0.784905,0.151686,0.0253206,0.576802,0.283872,0.86539,0.369043,0.863335,0.057202,0.248013,0.557022,0.351736,0.432577,0.551217,0.580654,0.705768,0.429888,0.763602,0.347068,0.676683,0.437901,0.393348,0.590213,0.782373,0.890238,0.344944,0.379847,0.71312,0.205643,0.469454,0.40492,0.254522,0.856929,0.256568,0.997685,0.308904,0.943493,0.851699,0.366965,0.334907,0.878628,0.0863101,0.102614,0.0251395,0.230642,0.420924,0.409419,0.563215,0.362242,0.444318,0.409809,0.684373,0.692758,0.398314,0.569287,0.538261,0.586954,0.928178,0.846934,0.689358,0.786497,0.74344,0.0899066,0.177365,0.517767,0.270732,0.024393,0.751281,0.00615966,0.0846733,0.636466,0.569021,0.22398,0.698048,0.226183,0.62009,0.486865,0.87009,0.76631,0.202476,0.98848,0.341254,0.772312,0.401058,0.212801,0.562864,0.43721,0.83686,0.718261,0.647093,0.541177,0.780294,0.205894,0.256684,0.74219,0.219862,0.803502,0.832176,0.997994,0.382393,0.756103,0.876021,0.638387,0.220057,0.67192,0.476012,0.4864,0.639342,0.90417,0.494685,0.348245,0.388309,0.280362,0.790239,0.651315,0.784936,0.757547,0.553947,0.687176,0.260718,0.849596,0.155189,0.333653,0.33303,0.0518706,0.176654,0.488908,0.800683,0.439801,0.857194,0.249179,0.166768,0.314297,0.181984,0.523004,0.781486,0.465345,0.0609573,0.952658,0.95827,0.859476,0.0590096,0.939351,0.221613,0.334417,0.381015,0.405952,0.389253,0.278614,0.402538,0.338965,0.176095,0.151951,0.286062,0.779973,0.0952232,0.180073,0.904071,0.649293,0.192781,0.266792,0.110855,0.408317,0.84544,0.0824427,0.10524,0.416186,0.436377,0.474436,0.859962,0.302805,0.839204,0.804292,0.864163,0.423132,0.48907,0.940606,0.140782,0.138397,0.445882,0.629469,0.610597,0.26511,0.550151,0.261502,0.0366471,0.708455,0.320903,0.856512,0.419477,0.348479,0.810635,0.310065,0.385377,0.464811,0.77277,0.645918,0.813763,0.859303,0.68263,0.0710273,0.481025,0.5987,0.704448,0.258944,0.175827,0.382036,0.479907,0.832193,0.823555,0.445579,0.0636552,0.137455,0.411059,0.932759,0.372877,0.842621,0.180387,0.432732,0.629367,0.95219,0.29056,0.888101,0.86763,0.487782,0.600815,0.617131,0.614824,0.0615727,0.0335701,0.843321,0.802574,0.593977,0.0854673,0.563637,0.213047,0.772271,0.548803,0.906027,0.207556,0.379722,0.917798,0.931402,0.442029,0.75842,0.785591,0.881006,0.519407,0.64616,0.480949,0.740343,0.642557,0.879575,0.017344,0.124585,0.686075,0.579193,0.0558685,0.783845,0.526047,0.656907,0.445368,0.187481,0.9447,0.28008,0.940655,0.408175,0.737701,0.767183,0.0990127,0.817564,0.118873,0.565727,0.225934,0.875269,0.4104,0.729041,0.551147,0.569124,0.614535,0.200913,0.987324,0.929769,0.842679,0.379044,0.639341,0.0382353,0.850765,0.742088,0.0887195,0.584904,0.49919,0.200253,0.223734,0.927687,0.487001,0.101726,0.785211,0.937145,0.747124,0.721904,0.912023,0.069591,0.0219085,0.713894,0.0341388,0.886491,0.458347,0.0755364,0.0838706,0.00898165,0.0527642,0.598682,0.63368,0.12092,0.987805,0.103585,0.395973,0.52934,0.0431514,0.488097,0.268157,0.22034,0.572377,0.892857,0.997976,0.0538586,0.0213935,0.528374,0.903683,0.628751,0.457645,0.881858,0.444984,0.592252,0.667193,0.586904,0.598912,0.819031,0.875697,0.348447,0.944595,0.866367,0.724662,0.58676,0.430709,0.232821,0.252925,0.237938,0.656509,0.396094,0.836113,0.634362,0.2579,0.023365,0.211485,0.432119,0.411428,0.39102,0.0869458,0.25075,0.845159,0.430401,0.983956,0.0154985,0.20987,0.295115,0.794626,0.890634,0.308325,0.234694,0.431656,0.860142,0.817148,0.877959,0.455893,0.0920224,0.75517,0.305644,0.71216,0.649267,0.601768,0.197061,0.117075,0.450127,0.328112,0.169313,0.51344,0.889132,0.48419,0.825992,0.121043,0.0565717,0.805232,0.306574,0.0824544,0.0265309,0.275937,0.0661755,0.649493,0.495377,0.923036,0.188302,0.0261074,0.190036,0.853345,0.131057,0.00386328,0.872009,0.32255,0.947809,0.1633,0.647647,0.453892,0.678236,0.690478,0.411511,0.484653,0.349139,0.166937,0.107888,0.129175,0.288422,0.795655,0.0521755,0.338719,0.781383,0.106977,0.152666,0.842874,0.383171,0.181283,0.142822,0.576984,0.828834,0.743795,0.205035,0.00596005,0.654926,0.530556,0.00232172,0.735917,0.254343,0.175258,0.0484403,0.417193,0.526233,0.712947,0.836076,0.973853,0.197912,0.407688,0.636593,0.325374,0.203784,0.307229,0.843047,0.208548,0.998463,0.620388,0.675574,0.0355561,0.394208,0.918999,0.0626095,0.00852275,0.262565,0.0847543,0.971568,0.674946,0.587469,0.882127,0.359589,0.415591,0.187569,0.591627,0.421686,0.214681,0.553786,0.357866,0.927539,0.441037,0.299009,0.687228,0.841463,0.909489,0.966043,0.74007,0.950959,0.0954015,0.468826,0.0199901,0.957395,0.539616,0.171775,0.528575,0.153741,0.997786,0.133475,0.221981,0.692879,0.186875,0.53332,0.913383,0.726334,0.214343,0.428957,0.381128,0.608871,0.414914,0.0890483,0.600793,0.716786,0.483427,0.905235,0.893134,0.846233,0.564536,0.743612,0.164856,0.60112,0.391023,0.528814,0.196341,0.534999,0.859533,0.455528,0.964757,0.333888,0.511488,0.366319,0.632125,0.500396,0.712016,0.486079,0.322356,0.108761,0.106272,0.742788,0.293404,0.79076,0.424473,0.332442,0.0338231,0.371017,0.636655,0.168333,0.77117,0.772329,0.753492,0.865139,0.821404,0.719089,0.449872,0.244697,0.129841,0.516662,0.879255,0.211105,0.109657,0.458306,0.8193,0.23787,0.379807,0.477462,0.220084,0.184129,0.0866816,0.790607,0.942161,0.644478,0.788858,0.538222,0.957028,0.160877,0.0184707,0.788622,0.953855,0.362501,0.52308,0.756935,0.448317,0.0354916,0.636562,0.307204,0.4372,0.307845,0.135926,0.715553,0.677203,0.452299,0.0673702,0.523513,0.904127,0.308534,|0.833635,0.162489,0.370124,0.702471,0.934211,0.290316,0.543635,0.0273901,0.682554,0.994532,0.2376,0.931662,0.665826,0.0477527,0.150752,0.573021,0.98145,0.232604,0.988347,0.318225,0.783445,0.220586,0.158865,0.154686,0.175606,0.210691,0.32494,0.241006,0.246971,0.755889,0.566095,0.111175,0.056781,0.671886,0.105946,0.435945,0.563824,0.971284,0.328363,0.594853,0.306724,0.725559,0.701536,0.263723,0.150482,0.426026,0.775393,0.549708,0.94667,0.55728,0.856899,0.0614178,0.727411,0.663746,0.421584,0.198211,0.643228,0.360583,0.264711,0.249027,0.330987,0.778512,0.936819,0.539704,0.48637,0.0524608,0.682909,0.35468,0.968231,0.0974512,0.124828,0.784711,0.30564,0.104443,0.613668,0.52789,0.159295,0.0121998,0.683535,0.962094,0.140726,0.0814415,0.44637,0.504729,0.497914,0.859551,0.0705131,0.179482,0.418238,0.680117,0.920082,0.845325,0.85519,0.0789431,0.256321,0.34112,0.144323,0.761923,0.928708,0.524809,0.583255,0.063694,0.36808,0.866876,0.434305,0.706507,0.401327,0.149656,0.300224,0.448621,0.365113,0.645216,0.206589,0.638392,0.25137,0.209081,0.13656,0.854566,0.561912,0.479547,0.297485,0.390729,0.704474,0.778587,0.335957,0.205109,0.552475,0.0970144,0.020366,0.0554878,0.27361,0.577101,0.0979584,0.902786,0.37342,0.728038,0.423214,0.075455,0.550413,0.123953,0.870635,0.170178,0.390055,0.585222,0.527786,0.960799,0.533029,0.343661,0.0153068,0.902577,0.794356,0.826778,0.710187,0.172476,0.5014,0.913895,0.273419,0.657041,0.237388,0.936431,0.95818,0.486591,0.436864,0.341144,0.095241,0.691027,0.828066,0.694048,0.92622,0.815359,0.888214,0.620408,0.661056,0.6099,0.19936,0.111247,0.711069,0.553527,0.984209,0.0808357,0.177702,0.10524,0.640084,0.564392,0.799661,0.765711,0.344112,0.318266,0.842932,0.438352,0.145667,0.214345,0.0852259,0.0910171,0.0270487,0.260748,0.879342,0.741733,0.76193,0.731998,0.111326,0.946781,0.0776592,0.628764,0.228566,0.130378,0.0868533,0.503838,0.284972,0.978161,0.930757,0.78549,0.549041,0.544495,0.473001,0.550611,0.256354,0.113015,0.383534,0.711004,0.699652,0.175318,0.455507,0.657257,0.112828,0.796866,0.969908,0.444241,0.322295,0.283864,0.175431,0.327357,0.571234,0.596618,0.346267,0.521191,0.643231,0.139855,0.456862,0.390348,0.383027,0.0368925,0.975978,0.416373,0.0345224,0.585653,0.896283,0.582121,0.473249,0.178908,0.284946,0.61861,0.980997,0.694035,0.82676,0.734873,0.922213,0.829662,0.940801,0.98637,0.120155,0.444227,0.498149,0.281535,0.777906,0.97014,0.634878,0.56982,0.933657,0.484707,0.0707801,0.481831,0.648098,0.821715,0.130563,0.831778,0.944322,0.611354,0.978772,0.505399,0.880159,0.0330824,0.886082,0.093664,0.589215,0.825588,0.976412,0.493133,0.72348,0.917341,0.421106,0.747514,0.332909,0.194339,0.734087,0.945488,0.304221,0.0287009,0.329871,0.355935,0.569744,0.315643,0.299886,0.991393,0.286686,0.186099,0.132778,0.0619903,0.968057,0.376809,0.0266926,0.0771099,0.857882,0.434688,0.366775,0.987972,0.695082,0.845145,0.0987291,0.925137,0.0715419,0.524454,0.705598,0.229493,0.0758392,0.612108,0.649162,0.379745,0.292707,0.964082,0.500619,0.271975,0.49018,0.929924,0.571235,0.352304,0.0965897,0.34363,0.80051,0.873104,0.241733,0.583175,0.0126739,0.747607,0.250768,0.0245239,0.947877,0.912194,0.774904,0.387275,0.496583,0.40858,0.818488,0.0649501,0.949202,0.889211,0.34331,0.0861565,0.402997,0.523389,0.737185,0.413657,0.348063,0.113649,0.779464,0.0347801,0.42393,0.879331,0.257414,0.894221,0.317786,0.603531,0.621101,0.748578,0.0390948,0.438181,0.101553,0.0961599,0.64961,0.801549,0.931659,0.143772,0.824163,0.957111,0.0403115,0.794263,0.556248,0.444125,0.507773,0.843624,0.331,0.561847,0.974646,0.296942,0.460696,0.172635,0.921493,0.117569,0.904405,0.0732012,0.770576,0.550719,0.64063,0.770956,0.44121,0.189185,0.0181227,0.0368745,0.576107,0.30713,0.340267,0.49211,0.964012,0.0701939,0.800158,0.973597,0.839192,0.298286,0.8869,0.456214,0.692462,0.181557,0.233644,0.846722,0.242523,0.0710688,0.167687,0.870774,0.864524,0.399848,0.723589,0.555722,0.540234,0.0209442,0.18616,0.202255,0.271467,0.656445,0.515019,0.29687,0.103004,0.815866,0.711009,0.432001,0.767392,0.95751,0.147162,0.243027,0.625339,0.52155,0.365808,0.623782,0.306002,0.27625,0.907105,0.309452,0.0928375,0.197236,0.194086,0.293885,0.873834,0.327421,0.972933,0.716413,0.795432,0.888249,0.729594,0.767802,0.836895,0.237758,0.731552,0.934586,0.186629,0.50458,0.573088,0.555129,0.540765,0.434159,0.513984,0.540168,0.152484,0.152118,0.355833,0.149556,0.457381,0.509176,0.524795,0.182778,0.73472,0.658122,0.477543,0.137053,0.403617,0.661267,0.840592,0.0533082,0.52646,0.766994,0.46298,0.660094,0.0922675,0.91448,0.00949317,0.518377,0.84299,0.0313188,0.689097,0.522821,0.702674,0.307794,0.87504,0.396654,0.743167,0.314852,0.942266,0.0309381,0.481022,0.091938,0.994193,0.141123,0.65002,0.527248,0.5152,0.469812,0.521343,0.987622,0.384999,0.992665,0.423373,0.00182372,0.586948,0.635697,0.493592,0.872007,0.568597,0.0102788,0.00908631,0.385079,0.858439,0.170432,0.289303,0.190796,0.216261,0.196755,0.69061,0.435125,0.661247,0.329024,0.459617,0.754896,0.18086,0.349902,0.949682,0.687136,0.74209,0.324329,0.961813,0.349139,0.447433,0.351889,0.173154,0.325501,0.236984,0.893901,0.0910142,0.989059,0.196474,0.762107,0.537659,0.218455,0.9401,0.674034,0.565118,0.59961,0.834258,0.293457,0.0142363,0.36844,0.0810974,0.405164,0.204097,0.29613,0.684985,0.719931,0.48379,0.00232637,0.270765,0.594592,0.744716,0.0745425,0.405133,0.732796,0.15346,0.285167,0.901605,0.189443,0.44121,0.675431,0.999676,0.258388,0.143791,0.717124,0.342966,0.757726,0.683355,0.979959,0.0106817,0.96113,0.0381474,0.106758,0.543971,0.258207,0.427774,0.137144,0.199987,0.0456919,0.957138,0.913596,0.371103,0.65509,0.785251,0.646531,0.700312,0.64165,0.76502,0.348827,0.596474,0.548352,0.78934,0.283244,0.112508,0.279516,0.628911,0.932412,0.8934,0.407938,0.954856,0.51451,0.932347,0.652732,0.292139,0.313302,0.475589,0.0211067,0.496537,0.824963,0.934991,0.571499,0.864816,0.208047,0.19189,0.0429802,0.0713248,0.937605,0.0135575,0.320174,0.324188,0.102967,0.609551,0.921657,0.472568,0.779697,0.285945,0.4465,0.976918,0.92711,0.325473,0.831846,0.982294,0.286157,0.882051,0.0558335,0.95979,0.971123,0.986591,0.0639499,0.709297,0.946499,0.694598,0.894159,0.674611,0.577,0.162218,0.744304,0.372006,0.181122,0.778445,0.138689,0.254846,0.84765,0.531614,0.149167,0.346609,0.255578,0.854576,0.24284,0.295185,0.742873,0.283453,0.392087,0.983011,0.605494,0.415973,0.499271,0.844279,0.163536,0.142181,0.891182,0.85742,0.406108,0.025371,0.571125,0.304361,0.721648,0.917196,0.758532,0.35869,0.990679,0.258357,0.145898,0.230769,0.545581,0.0177707,0.668504,0.784328,0.451416,0.252453,0.994851,0.640068,0.636102,0.209164,0.814614,0.789819,0.990064,0.727705,0.68999,0.381456,0.95989,0.27939,0.136375,0.084154,0.709184,0.865022,0.597454,0.315384,0.933357,0.849685,0.800354,0.933406,0.951706,0.368319,0.666207,0.802969,0.362579,0.261878,0.322842,0.186462,0.179583,0.226161,0.0142868,0.825406,0.834823,0.493483,0.140371,0.997448,0.162455,0.653663,0.568104,0.453929,0.705025,0.221958,0.435853,0.10963,0.305866,0.762552,0.785386,0.943452,0.515654,0.530842,0.807304,0.963719,0.942591,0.908124,0.454791,0.764467,0.406715,0.596478,0.180185,0.346954,0.613579,0.0273774,0.962223,0.315531,0.651953,0.244685,0.847889,0.173773,0.216694,0.73421,0.260199,0.785209,0.47701,0.231987,0.0137349,0.592221,0.578077,0.522577,0.543823,0.241072,0.250572,0.818513,0.729165,0.986304,0.932249,0.916047,0.115833,0.457891,0.526577,0.245481,0.807997,0.346409,0.00996757,0.129039,0.0308803,0.325612,0.495338,0.787137,0.139953,0.962415,0.255155,0.140804,0.580861,0.320352,0.902048,0.0685166,0.814742,0.561909,0.574224,0.931235,0.272293,0.50661,0.103452,0.435951,0.924832,0.602246,0.98522,0.107102,0.194865,0.0619001,0.469366,0.110026,0.165997,0.737265,0.826811,0.327158,0.0948062,0.854695,0.0766851,0.330061,0.750598,0.413914,0.238436,0.194232,0.305929,0.801777,0.355657,0.752787,0.608383,0.861685,0.174537,0.66053,0.534945,0.75556,0.0989703,0.950553,0.490448,0.0888124,0.0927789,0.588821,0.434881,0.335678,0.901913,0.470212,0.483842,0.983826,0.829095,0.0127579,0.0132483,0.864262,0.579987,0.570571,0.737612,0.628545,0.33422,0.170424,0.49056,0.961706,0.802694,0.986515,0.978717,0.464089,0.977814,0.793163,0.161969,0.848602,0.927806,0.987632,0.771944,0.281701,0.244171,0.867601,0.103494,0.166785,0.305384,0.361604,0.249912,0.0741157,0.00254267,0.494221,0.280612,0.519432,0.885006,0.276828,0.801037,0.106238,0.730927,0.513432,0.75077,0.675428,0.102182,0.515471,0.0695959,0.791475,0.857004,0.614592,0.492261,0.418251,0.774277,0.764324,0.672206,0.190237,0.29662,0.369643,0.741084,0.297412,0.451249,0.911384,0.851988,0.448916,0.11372,0.666045,0.0225667,0.431604,0.522485,0.602429,0.534635,0.512165,0.261171,0.173938,0.494659,0.887956,0.989009,0.355255,0.908289,0.0496984,0.874093,0.872483,0.0602472,0.814967,0.573247,0.413016,0.308862,0.788802,0.85344,0.299318,0.196962,0.512688,0.849028,0.804527,0.479134,0.533327,0.954884,0.0414506,0.0701442,0.0820633,0.532116,0.880316,0.483076,0.217263,0.0340579,0.0680983,0.403799,0.845232,0.141852,0.338108,0.464237,0.0714719,0.191251,0.319348,0.175489,|0.307729,0.0218103,0.568986,0.393389,0.240443,0.84491,0.860828,0.509467,0.002729,0.0018301,0.664182,0.113229,0.0897201,0.534914,0.522862,0.426061,0.54045,0.961465,0.0946978,0.837542,0.530085,0.977029,0.601995,0.335012,0.252161,0.331763,0.313914,0.209377,0.6561,0.167397,0.933059,0.863724,0.225754,0.247376,0.152742,0.0894493,0.566809,0.35527,0.771497,0.565125,0.560442,0.47261,0.532074,0.221435,0.662495,0.603368,0.080203,0.977669,0.0952326,0.43898,0.348807,0.839044,0.127076,0.613053,0.280983,0.686219,0.71612,0.238069,0.741381,0.531935,0.224849,0.863471,0.459077,0.473981,0.276786,0.852065,0.955455,0.66038,0.47592,0.624536,0.711657,0.644945,0.000648439,0.438051,0.0112571,0.201493,0.13467,0.597203,0.153537,0.600778,0.66478,0.710492,0.241224,0.523608,0.235128,0.712288,0.0347065,0.0939014,0.946322,0.743249,0.346484,0.963463,0.736731,0.714899,0.2072,0.262592,0.436555,0.449555,0.657114,0.0250036,0.0374271,0.229974,0.928619,0.132955,0.1886,0.530038,0.754277,0.740917,0.133312,0.299188,0.031028,0.470886,0.789877,0.319448,0.976519,0.82546,0.257854,0.378044,0.439675,0.614849,0.358657,0.327082,0.8977,0.295011,0.0589703,0.123728,0.143424,0.831756,0.508063,0.924052,0.847738,0.896961,0.147915,0.434149,0.984086,0.267149,0.247364,0.101331,0.336073,0.237687,0.214027,0.711853,0.0392094,0.621274,0.905456,0.41253,0.134512,0.230573,0.602111,0.23709,0.403696,0.108002,0.558816,0.769102,0.277264,0.583153,0.971056,0.560946,0.906618,0.863711,0.18053,0.795228,0.627029,0.119082,0.0213671,0.621014,0.468352,0.885267,0.527589,0.134295,0.983898,0.813425,0.0102125,0.549097,0.0850843,0.231307,0.703187,0.498208,0.66824,0.253222,0.101707,0.853233,0.0248782,0.78004,0.95084,0.43589,0.110034,0.148971,0.633279,0.409184,0.862328,0.383844,0.384926,0.934961,0.223677,0.137535,0.755574,0.934744,0.140254,0.116145,0.901584,0.377019,0.655437,0.587818,0.489277,0.87881,0.340019,0.101328,0.663535,0.939569,0.0402151,0.852415,0.348122,0.143611,0.649087,0.647983,0.854685,0.635876,0.686206,0.730484,0.765055,0.37317,0.516902,0.916132,0.182616,0.0424098,0.70751,0.416264,0.0732741,0.978195,0.657001,0.234507,0.440235,0.442326,0.392634,0.307351,0.830453,0.409774,0.214371,0.158635,0.539989,0.629197,0.721773,0.0933644,0.526087,0.273739,0.0691213,0.900113,0.613728,0.933364,0.647923,0.906238,0.294358,0.910584,0.651185,0.208801,0.635067,0.98594,0.902959,0.272954,0.212593,0.546384,0.186181,0.505545,0.994132,0.467627,0.8703,0.467019,0.555103,0.196147,0.966802,0.00738078,0.762423,0.595393,0.518667,0.554019,0.305429,0.810093,0.80925,0.0748324,0.636707,0.209975,0.792392,0.554502,0.723276,0.0479824,0.773536,0.952451,0.405932,0.695255,0.807058,0.314799,0.866169,0.656223,0.304103,0.730255,0.163989,0.00660431,0.328269,0.730891,0.07717,0.95112,0.136383,0.104288,0.573626,0.874323,0.178882,0.68209,0.362354,0.466841,0.854731,0.330279,0.00462848,0.499542,0.752436,0.451292,0.866572,0.0969962,0.643252,0.739867,0.140512,0.105937,0.86769,0.219421,0.0417683,0.364315,0.663116,0.750967,0.800983,0.947446,0.116478,0.794773,0.513482,0.517925,0.734435,0.442462,0.0214339,0.805471,0.0266249,0.641371,0.40347,0.927325,0.97142,0.251888,0.0435829,0.307762,0.584675,0.0313435,0.268457,0.257592,0.533758,0.501603,0.386325,0.584475,0.919419,0.256694,0.844103,0.487176,0.74934,0.815001,0.871788,0.574079,0.603994,0.27755,0.445834,0.376383,0.999359,0.991878,0.719676,0.813405,0.487352,0.0444447,0.363738,0.736364,0.86779,0.967363,0.489081,0.347008,0.61014,0.861339,0.918798,0.696321,0.442278,0.292972,0.84568,0.575162,0.369627,0.151868,0.705629,0.579854,0.0547972,0.0878863,0.809746,0.157604,0.387082,0.26495,0.905873,0.7425,0.876867,0.939553,0.796272,0.85884,0.601704,0.0781124,0.298644,0.169444,0.00679392,0.843741,0.395141,0.531308,0.0160783,0.314307,0.898073,0.684847,0.158764,0.465259,0.829529,0.540792,0.994089,0.376007,0.223068,0.352501,0.295297,0.555663,0.912122,0.488251,0.839608,0.360369,0.105684,0.480817,0.594311,0.304124,0.22674,0.00578886,0.148012,0.309825,0.797304,0.890242,0.490628,0.955099,0.737342,0.0858654,0.661959,0.78848,0.153893,0.474265,0.475002,0.453346,0.91841,0.800761,0.910536,0.783325,0.603088,0.941978,0.659671,0.358103,0.637007,0.75355,0.791404,0.891034,0.917904,0.241984,0.0363411,0.790587,0.772978,0.604221,0.204353,0.229877,0.219397,0.89128,0.786268,0.320531,0.724282,0.155599,0.0971654,0.987027,0.824783,0.381923,0.0728784,0.376469,0.974301,0.104778,0.805214,0.138003,0.595542,0.361778,0.0171373,0.591352,0.602909,0.792401,0.548014,0.616084,0.314266,0.84023,0.120274,0.756842,0.857635,0.188476,0.278902,0.4535,0.882759,0.311421,0.586802,0.427146,0.202278,0.906793,0.281481,0.398289,0.541138,0.630338,0.70162,0.627179,0.940213,0.218613,0.750037,0.55255,0.316535,0.66585,0.84134,0.00437462,0.926192,0.911084,0.0702169,0.477653,0.496431,0.0758715,0.474775,0.42691,0.877675,0.993673,0.299799,0.0208663,0.174352,0.244437,0.600719,0.556066,0.176443,0.205179,0.708772,0.251157,0.0318086,0.185693,0.547496,0.795836,0.674328,0.903178,0.300833,0.48495,0.477081,0.0415298,0.146052,0.21968,0.218139,0.14823,0.62863,0.84965,0.23682,0.721356,0.725551,0.762757,0.631999,0.0844743,0.85266,0.0667058,0.154573,0.320318,0.835437,0.486705,0.240731,0.395203,0.129308,0.0907751,0.683491,0.0748007,0.452218,0.484617,0.481721,0.00177103,0.486523,0.101688,0.887756,0.620882,0.103373,0.339178,0.482432,0.609766,0.0718434,0.740209,0.928764,0.468742,0.744046,0.277627,0.908497,0.116653,0.515244,0.955785,0.267764,0.126919,0.325699,0.341812,0.421512,0.118748,0.355012,0.753685,0.187055,0.00881255,0.475164,0.450745,0.768064,0.572046,0.697301,0.458732,0.191282,0.461851,0.650467,0.110831,0.222641,0.855097,0.834771,0.142501,0.761425,0.94187,0.820543,0.217042,0.195268,0.556613,0.974235,0.912182,0.664348,0.753101,0.267331,0.977254,0.596408,0.714932,0.274579,0.170144,0.915551,0.664648,0.942199,0.401364,0.917169,0.863906,0.381625,0.873876,0.893277,0.972144,0.940226,0.340824,0.89885,0.654924,0.871884,0.650332,0.564811,0.0347764,0.814762,0.248617,0.48809,0.376719,0.644011,0.549884,0.194432,0.510209,0.827085,0.744839,0.572933,0.117869,0.566897,0.630036,0.40309,0.26298,0.641287,0.226833,0.670708,0.29909,0.325723,0.379512,0.753536,0.282454,0.390919,0.812269,0.308328,0.158566,0.259309,0.934777,0.892472,0.435835,0.367242,0.453315,0.202079,0.633582,0.749058,0.109486,0.125702,0.0594738,0.0316306,0.434357,0.711349,0.238781,0.818751,0.0119058,0.614746,0.561463,0.551678,0.858927,0.703524,0.644224,0.9991,0.0665876,0.271252,0.862322,0.435479,0.841168,0.83,0.317259,0.0498584,0.0526527,0.470206,0.474501,0.971896,0.186749,0.360547,0.811326,0.628792,0.432018,0.478675,0.577737,0.615691,0.272324,0.0331138,0.975289,0.323952,0.497708,0.742741,0.87101,0.554833,0.555025,0.0290843,0.833982,0.865691,0.97893,0.286057,0.0649342,0.349388,0.821095,0.646543,0.308852,0.990569,0.548109,0.786671,0.334996,0.0192667,0.710488,0.773249,0.39113,0.901985,0.549547,0.935635,0.0927746,0.752825,0.713584,0.854873,0.501275,0.590623,0.647973,0.641109,0.344523,0.0196672,0.577177,0.344437,0.835068,0.226976,0.81691,0.483966,0.775355,0.641635,0.654756,0.415331,0.470219,0.871381,0.838274,0.272186,0.258613,0.790538,0.875854,0.546905,0.664878,0.85534,0.247877,0.639691,0.220575,0.258631,0.446735,0.450201,0.54286,0.150076,0.25585,0.668142,0.123856,0.641865,0.618069,0.992633,0.381802,0.930255,0.585422,0.13494,0.227873,0.538198,0.489173,0.353656,0.131697,0.0764669,0.320876,0.496882,0.719433,0.122775,0.0780377,0.652053,0.143732,0.138517,0.259893,0.767793,0.0374807,0.885027,0.344054,0.460721,0.352344,0.0339244,0.594113,0.810342,0.206702,0.729105,0.698774,0.268862,0.924163,0.804163,0.788566,0.288063,0.499514,0.424903,0.444555,0.0416411,0.863757,0.203743,0.359425,0.259836,0.547248,0.462433,0.606162,0.325122,0.175083,0.598011,0.0221777,0.955079,0.197165,0.120724,0.398068,0.547287,0.399277,0.730483,0.945415,0.272015,0.56923,0.39826,0.588208,0.134164,0.887889,0.564044,0.287815,0.679093,0.557551,0.00296533,0.442286,0.0116649,0.835006,0.744538,0.319189,0.239789,0.70615,0.00356442,0.540245,0.037674,0.407823,0.658666,0.605385,0.570603,0.541972,0.827136,0.445884,0.346271,0.639377,0.779178,0.292626,0.473981,0.98602,0.107116,0.485491,0.0523066,0.254577,0.778446,0.205958,0.403637,0.512794,0.566542,0.915824,0.314802,0.493544,0.985164,0.675927,0.683623,0.272392,0.498483,0.88087,0.484249,0.780787,0.254187,0.157094,0.00949299,0.538777,0.506156,0.973174,0.767345,0.492761,0.707959,0.410283,0.348252,0.645048,0.345325,0.570168,0.0913564,0.321578,0.14882,0.654665,0.212945,0.7141,0.859816,0.809018,0.984887,0.276522,0.668804,0.415429,0.949895,0.38475,0.0265242,0.856226,0.129271,0.0159307,0.18794,0.663512,0.436786,0.852473,0.544712,0.542738,0.624077,0.293171,0.770716,0.868869,0.567932,0.238359,0.155251,0.238548,0.413282,0.309979,0.0667055,0.129352,0.88875,0.722589,0.452426,0.567455,0.348288,0.647248,0.117574,0.0988382,0.568965,0.457013,0.502474,0.131284,0.840169,0.818112,0.965406,0.975071,0.78796,0.517468,0.962063,0.304148,0.194962,0.697317,0.232274,0.898657,0.818251,0.873519,0.821656,0.0565715,0.996186,0.807184,0.718468,0.375692,0.0043413,0.521346,0.330065,0.896853,|0.414091,0.783698,0.0154938,0.773726,0.556767,0.156713,0.00304943,0.538394,0.952627,0.914378,0.943828,0.149215,0.993713,0.355656,0.815851,0.0651147,0.949033,0.269514,0.656644,0.361309,0.810802,0.331289,0.642684,0.452426,0.424895,0.142196,0.475725,0.264997,0.805143,0.943781,0.678217,0.272363,0.187576,0.330162,0.353348,0.497556,0.770816,0.0776722,0.205596,0.378217,0.691119,0.771704,0.0953019,0.841286,0.836513,0.246231,0.572642,0.551593,0.700708,0.998595,0.587252,0.995453,0.65966,0.409775,0.5398,0.481803,0.310693,0.554821,0.0333575,0.884132,0.440186,0.842767,0.473268,0.434052,0.402906,0.814945,0.667837,0.852425,0.734966,0.611381,0.827771,0.442388,0.84537,0.765493,0.380269,0.740645,0.833543,0.629551,0.832958,0.289166,0.362968,0.413303,0.70087,0.627752,0.139357,0.985639,0.939183,0.438801,0.672817,0.709187,0.611993,0.696348,0.545645,0.75426,0.00615537,0.978449,0.301682,0.1282,0.80947,0.202716,0.747766,0.176741,0.132207,0.275302,0.623885,0.705427,0.264115,0.272733,0.610125,0.244653,0.730247,0.289265,0.91995,0.160556,0.389629,0.661381,0.478662,0.398464,0.205132,0.727759,0.860918,0.274428,0.0238721,0.661255,0.686215,0.198686,0.883442,0.869256,0.404217,0.686976,0.29297,0.147343,0.20477,0.188169,0.319726,0.371195,0.546986,0.0496163,0.185991,0.0785494,0.0309475,0.908107,0.345701,0.535509,0.097835,0.0674312,0.150065,0.325474,0.5186,0.540956,0.139559,0.568215,0.504268,0.303934,0.363592,0.403553,0.266319,0.458867,0.817244,0.523102,0.771423,0.146551,0.674131,0.0454424,0.650711,0.295577,0.290154,0.164531,0.266214,0.99539,0.0567549,0.205335,0.441072,0.750893,0.265793,0.69743,0.596961,0.267423,0.731145,0.305295,0.625849,0.56097,0.162438,0.505514,0.153517,0.98376,0.4549,0.433936,0.377825,0.307489,0.93859,0.54946,0.496978,0.607821,0.144818,0.00677413,0.336005,0.493951,0.0927242,0.433948,0.0575251,0.638465,0.369545,0.331698,0.0749665,0.211507,0.0180401,0.746284,0.39097,0.430805,0.754226,0.59818,0.680421,0.805099,0.133092,0.753143,0.0800865,0.338861,0.471376,0.0992451,0.644848,0.523068,0.000796854,0.162662,0.119755,0.856117,0.284521,0.428629,0.305481,0.119541,0.642768,0.27521,0.614127,0.0900645,0.232831,0.756885,0.253476,0.729851,0.446011,0.917914,0.0761571,0.953403,0.767752,0.880909,0.564057,0.356053,0.0683548,0.396192,0.532636,0.185033,0.798021,0.384905,0.177708,0.364313,0.16872,0.0584003,0.382876,0.339681,0.686546,0.813561,0.568973,0.509549,0.322666,0.229293,0.963811,0.219817,0.0478704,0.827285,0.180284,0.880464,0.0927492,0.242342,0.446366,0.712761,0.392589,0.18936,0.767315,0.821456,0.112485,0.996847,0.602837,0.882322,0.213466,0.919256,0.508864,0.65072,0.869162,0.537833,0.595014,0.885363,0.662011,0.450205,0.308471,0.726582,0.231809,0.474591,0.088163,0.471609,0.910424,0.530873,0.326471,0.578643,0.360182,0.233012,0.624941,0.290288,0.0970251,0.652967,0.615291,0.933477,0.109274,0.0280941,0.579255,0.224122,0.595907,0.671541,0.24829,0.787744,0.721429,0.778267,0.601196,0.476599,0.433136,0.72251,0.709515,0.0842113,0.269303,0.281273,0.875895,0.465726,0.103992,0.17108,0.224971,0.700987,0.542413,0.0140289,0.65019,0.805377,0.625194,0.461209,0.155282,0.335247,0.0400858,0.198292,0.461028,0.318156,0.535136,0.427599,0.0313705,0.538977,0.0884823,0.157122,0.368165,0.602941,0.893275,0.83974,0.485106,0.230906,0.102391,0.751399,0.0837187,0.779651,0.108633,0.204695,0.305248,0.753097,0.877517,0.509786,0.391265,0.0447633,0.942362,0.815692,0.0321119,0.083155,0.325161,0.710743,0.207356,0.586499,0.198288,0.224519,0.536939,0.488953,0.985994,0.705415,0.311977,0.380113,0.111697,0.669365,0.417956,0.516402,0.790676,0.172009,0.575963,0.612193,0.899641,0.725082,0.355644,0.910291,0.715587,0.412907,0.781993,0.422093,0.718464,0.946098,0.776824,0.553411,0.854137,0.91276,0.0482007,0.191886,0.630238,0.994374,0.355837,0.549162,0.0871774,0.326198,0.603111,0.667,0.927478,0.0172493,0.0723086,0.763401,0.30915,0.605998,0.26198,0.562471,0.124855,0.884498,0.475652,0.518618,0.930421,0.0301412,0.533674,0.600059,0.531903,0.951994,0.210503,0.753867,0.452441,0.124714,0.652222,0.594851,0.579838,0.660071,0.766017,0.349599,0.45874,0.417942,0.514081,0.575946,0.8873,0.258418,0.990475,0.293821,0.729351,0.402599,0.177865,0.528554,0.793106,0.486826,0.291409,0.221864,0.543891,0.27318,0.0887082,0.588778,0.580288,0.546125,0.156552,0.534338,0.740006,0.161845,0.717603,0.352848,0.57409,0.0900847,0.198558,0.523193,0.773358,0.803553,0.902666,0.714638,0.416148,0.587286,0.948221,0.5646,0.604388,0.568307,0.474351,0.467859,0.263458,0.76532,0.619534,0.961772,0.805456,0.851727,0.314974,0.739526,0.914323,0.844101,0.609737,0.518721,0.996864,0.6638,0.604022,0.818387,0.109808,0.897693,0.850015,0.132453,0.104329,0.853401,0.41738,0.826907,0.309482,0.62254,0.459631,0.630659,0.184862,0.581725,0.460437,0.492992,0.686904,0.702577,0.138728,0.929616,0.61908,0.524704,0.349167,0.972126,0.0778795,0.302082,0.378422,0.559658,0.213917,0.0829943,0.881621,0.164812,0.539971,0.507074,0.153377,0.315493,0.688297,0.0771244,0.753423,0.0760064,0.497299,0.896525,0.926671,0.389521,0.96595,0.558262,0.844098,0.98445,0.537713,0.508428,0.11386,0.792658,0.534014,0.751419,0.159014,0.0832288,0.647057,0.0121788,0.524537,0.169168,0.336596,0.0640345,0.173297,0.676636,0.267016,0.987151,0.860464,0.534055,0.566098,0.581981,0.992979,0.546873,0.527758,0.322312,0.00957966,0.0965441,0.316746,0.692353,0.639391,0.723883,0.777004,0.915904,0.289367,0.277244,0.156869,0.551738,0.111427,0.666973,0.167975,0.279073,0.0802421,0.0196568,0.568677,0.0053485,0.744328,0.440319,0.583629,0.425289,0.871378,0.0459271,0.834033,0.5332,0.576438,0.529628,0.806032,0.955876,0.361199,0.0810801,0.309054,0.263702,0.114151,0.654592,0.523412,0.7613,0.682326,0.98115,0.960352,0.471636,0.538267,0.322122,0.887739,0.201524,0.00195849,0.712166,0.264435,0.236825,0.0836841,0.850313,0.550318,0.375469,0.204064,0.655887,0.610178,0.967363,0.628984,0.269105,0.152049,0.595265,0.572283,0.151343,0.76021,0.198904,0.552355,0.878242,0.823668,0.78992,0.967143,0.85337,0.340097,0.915924,0.842689,0.507172,0.370223,0.0228775,0.269831,0.86676,0.421975,0.807776,0.895584,0.515123,0.470404,0.155035,0.171249,0.697464,0.483304,0.957381,0.534135,0.285023,0.781988,0.465768,0.587971,0.688845,0.219338,0.809443,0.212228,0.632579,0.33612,0.453257,0.820549,0.736708,0.416422,0.20967,0.128426,0.637556,0.529639,0.2018,0.228011,0.619861,0.657703,0.946771,0.130729,0.692563,0.0923199,0.22057,0.991226,0.686724,0.928154,0.156027,0.595122,0.410907,0.847001,0.464065,0.184293,0.803005,0.67903,0.498923,0.133901,0.635776,0.136784,0.487294,0.614888,0.747711,0.159164,0.722369,0.230627,0.655823,0.313581,0.450464,0.0911103,0.435596,0.310651,0.0409676,0.874486,0.390325,0.591801,0.86587,0.368665,0.162347,0.755522,0.948783,0.691928,0.991715,0.359998,0.824896,0.766879,0.149214,0.27597,0.313827,0.979302,0.151865,0.146959,0.223464,0.987538,0.694354,0.509519,0.502832,0.0501788,0.568911,0.366959,0.867415,0.897657,0.324989,0.159203,0.812469,0.401822,0.487923,0.103008,0.878983,0.271344,0.609063,0.0264955,0.560641,0.251853,0.561431,0.640015,0.29049,0.893912,0.879092,0.806064,0.88093,0.851411,0.707209,0.762525,0.594741,0.831093,0.930626,0.367889,0.219642,0.0821969,0.51812,0.698762,0.542977,0.8927,0.458639,0.071268,0.470243,0.994143,0.756757,0.982556,0.679816,0.874606,0.746506,0.213469,0.885724,0.334185,0.301496,0.150455,0.507186,0.861352,0.574095,0.438315,0.0490547,0.907958,0.123712,0.827959,0.366415,0.583034,0.757738,0.121552,0.870356,0.567528,0.183847,0.45258,0.956344,0.892306,0.823677,0.649145,0.669594,0.0597436,0.759791,0.43544,0.350397,0.742566,0.961537,0.117938,0.0192335,0.572158,0.917804,0.92948,0.915489,0.923651,0.602653,0.160768,0.993397,0.779916,0.794432,0.641696,0.731759,0.293762,0.10878,0.574684,0.988878,0.00543344,0.351025,0.500105,0.507396,0.0639032,0.146751,0.53175,0.80947,0.597402,0.139481,0.402494,0.469233,0.935816,0.951652,0.543589,0.223476,0.800604,0.924908,0.0160985,0.300629,0.239572,0.987081,0.693796,0.801368,0.115521,0.0929771,0.271729,0.742465,0.563624,0.51367,0.887748,0.88236,0.498677,0.307702,0.363961,0.990975,0.699886,0.456704,0.694596,0.23984,0.519589,0.646097,0.252392,0.141868,0.781412,0.488488,0.389363,0.466984,0.0706073,0.836853,0.109417,0.945654,0.702204,0.295401,0.821129,0.997285,0.607599,0.52454,0.578179,0.877329,0.897276,0.316308,0.152082,0.918834,0.871406,0.488926,0.266713,0.806999,0.0481219,0.287793,0.893379,0.0384675,0.753048,0.208889,0.983593,0.747333,0.611417,0.230338,0.0936235,0.438464,0.531914,0.895069,0.968162,0.238766,0.798377,0.0417631,0.412467,0.472902,0.375504,0.293642,0.690459,0.545647,0.24261,0.836472,0.848933,0.310503,0.941271,0.259321,0.320361,0.409298,0.433038,0.446565,0.348073,0.361335,0.532347,0.630246,0.0306709,0.148862,0.812944,0.568546,0.560027,0.443218,0.0832791,0.98498,0.6023,0.763435,0.459188,0.0960736,0.867578,0.313914,0.585136,0.941408,0.175935,0.499275,0.532284,0.33017,0.34968,0.448893,0.408686,0.493734,0.172514,0.821545,0.441111,0.691354,0.412104,0.58089,0.647328,0.233467,0.188186,0.639133,0.443777,0.683437,0.095992,0.00659972,0.134398,0.453917,0.246891,0.504663,0.00221747,0.765817,0.888649,0.466275,|0.552052,0.0106664,0.439598,0.795777,0.68151,0.479195,0.722432,0.111994,0.157363,0.994262,0.399403,0.119591,0.742068,0.803086,0.659488,0.750261,0.515898,0.784042,0.398812,0.136418,0.607299,0.0391299,0.907342,0.138435,0.846781,0.0203906,0.646251,0.036987,0.794161,0.68428,0.555918,0.53395,0.626508,0.244496,0.179283,0.216118,0.384773,0.26603,0.587614,0.614171,0.955394,0.990188,0.371931,0.451886,0.290428,0.906035,0.568119,0.160645,0.15679,0.191602,0.670846,0.492123,0.325666,0.245533,0.87119,0.41581,0.806417,0.044286,0.0819607,0.377153,0.859054,0.945985,0.370059,0.878776,0.969402,0.317477,0.0173481,0.247486,0.129757,0.930839,0.253352,0.215367,0.877682,0.22687,0.573009,0.621297,0.10835,0.184848,0.776618,0.393303,0.596856,0.636543,0.827287,0.165144,0.589296,0.686701,0.693182,0.557452,0.672247,0.769443,0.702493,0.0642778,0.164561,0.873793,0.376734,0.15829,0.305939,0.552704,0.983095,0.089559,0.224011,0.24707,0.769844,0.285453,0.231128,0.362493,0.833765,0.964282,0.44635,0.101108,0.210619,0.399758,0.848637,0.577941,0.00674903,0.695469,0.558182,0.347214,0.236792,0.180387,0.662493,0.791657,0.70072,0.305203,0.32637,0.10372,0.107383,0.0197996,0.714992,0.905311,0.284662,0.520044,0.584283,0.120368,0.79392,0.874629,0.745783,0.713655,0.103231,0.181546,0.499393,0.434654,0.954149,0.789021,0.0662227,0.128306,0.433051,0.918777,0.99798,0.0884271,0.86144,0.935217,0.200618,0.842399,0.425604,0.741825,0.469567,0.845862,0.694854,0.613224,0.864607,0.51681,0.31038,0.207762,0.701791,0.302196,0.0182157,0.560431,0.249836,0.448821,0.205023,0.935832,0.236359,0.86257,0.758338,0.454598,0.0652099,0.82557,0.924852,0.0314909,0.852653,0.45208,0.515339,0.809671,0.314393,0.111828,0.0677389,0.61119,0.239535,0.27043,0.711838,0.507579,0.1472,0.427706,0.248693,0.291919,0.880885,0.156427,0.241198,0.979137,0.55367,0.158865,0.549892,0.0264488,0.15507,0.840304,0.827378,0.593628,0.844871,0.633015,0.274097,0.667341,0.94751,0.423541,0.901012,0.283495,0.279961,0.201871,0.987111,0.49289,0.330523,0.70368,0.400236,0.732478,0.907733,0.514816,0.589859,0.654068,0.220052,0.092957,0.688226,0.0116913,0.602235,0.754624,0.495477,0.395365,0.399044,0.873503,0.110754,0.716585,0.802075,0.506243,0.201531,0.137688,0.152648,0.638028,0.925875,0.540968,0.0931773,0.603541,0.3538,0.0136585,0.424023,0.209038,0.343616,0.187517,0.279213,0.163989,0.174667,0.272111,0.833568,0.928701,0.768601,0.0924283,0.15747,0.778086,0.701875,0.23363,0.662289,0.720882,0.394211,0.272244,0.469273,0.700739,0.74117,0.960761,0.745177,0.575508,0.0572687,0.242619,0.547527,0.570261,0.760818,0.0331522,0.256787,0.326414,0.646302,0.552496,0.614946,0.662314,0.361894,0.202979,0.933022,0.204646,0.345815,0.483396,0.318925,0.495729,0.360564,0.554608,0.571136,0.102207,0.715522,0.0414832,0.132558,0.6725,0.426115,0.665331,0.0676929,0.105579,0.0860944,0.335582,0.400929,0.463817,0.526278,0.572901,0.137831,0.969518,0.473319,0.371428,0.205994,0.349721,0.982946,0.642579,0.823935,0.378008,0.837099,0.275817,0.0432568,0.835483,0.579428,0.813525,0.203459,0.402825,0.181136,0.700132,0.989169,0.477946,0.689949,0.81024,0.727573,0.0904312,0.320589,0.635585,0.596769,0.565034,0.672102,0.438964,0.20028,0.373024,0.188569,0.0279152,0.739707,0.948605,0.132374,0.712785,0.714837,0.892873,0.018919,0.301678,0.680117,0.74989,0.994431,0.517915,0.139837,0.467084,0.0161801,0.599651,0.0776079,0.776028,0.78379,0.788937,0.980892,0.326718,0.77844,0.893721,0.239274,0.546203,0.133016,0.345521,0.385946,0.0957245,0.862268,0.742712,0.4639,0.392252,0.280282,0.544458,0.829747,0.710946,0.618483,0.0818207,0.329567,0.280219,0.278885,0.464574,0.366578,0.628565,0.454244,0.776341,0.898056,0.658718,0.475125,0.76293,0.469925,0.630775,0.131498,0.304077,0.160399,0.967283,0.897718,0.478292,0.424451,0.01826,0.333437,0.197493,0.538662,0.925945,0.333101,0.539169,0.0212895,0.615787,0.213955,0.77134,0.124022,0.983683,0.988584,0.551184,0.203158,0.431928,0.168115,0.911488,0.945797,0.0894577,0.949713,0.429651,0.303745,0.34465,0.876391,0.787297,0.170491,0.984137,0.0157994,0.214001,0.727466,0.902551,0.808883,0.475994,0.287559,0.995218,0.611897,0.661256,0.871427,0.519807,0.158806,0.0325456,0.85743,0.630262,0.168034,0.169921,0.780996,0.918299,0.51516,0.222391,0.142261,0.43226,0.360928,0.944386,0.645787,0.329493,0.732234,0.410089,0.983712,0.0319309,0.483381,0.940378,0.243233,0.545016,0.210067,0.112622,0.0100181,0.497627,0.0790231,0.355791,0.968459,0.490073,0.8667,0.101019,0.0635126,0.108153,0.0148177,0.404243,0.949194,0.416725,0.73964,0.356769,0.475151,0.797978,0.467369,0.509529,0.476986,0.623745,0.109936,0.342593,0.697459,0.993123,0.923576,0.100703,0.78016,0.196054,0.596002,0.0816952,0.0885177,0.342144,0.983211,0.350027,0.352293,0.292354,0.3921,0.433196,0.473771,0.499322,0.38786,0.0505504,0.259118,0.447838,0.339353,0.709847,0.47259,0.688681,0.526098,0.853147,0.841557,0.638118,0.787787,0.203171,0.588946,0.215854,0.864844,0.699858,0.28533,0.774305,0.163421,0.283779,0.293782,0.17812,0.906925,0.0799577,0.779957,0.643051,0.497055,0.391002,0.415929,0.801438,0.783998,0.941288,0.492655,0.0927563,0.365781,0.732738,0.760396,0.209711,0.902603,0.864449,0.836238,0.287143,0.855336,0.967456,0.116165,0.567374,0.484539,0.0113388,0.893043,0.51764,0.287197,0.142129,0.522509,0.760083,0.130441,0.486528,0.998435,0.536963,0.341803,0.397907,0.628184,0.579555,0.854042,0.905091,0.67734,0.160138,0.480788,0.290305,0.485654,0.734422,0.980012,0.0695867,0.604891,0.383348,0.267199,0.761687,0.720856,0.499128,0.394676,0.96737,0.855829,0.869832,0.878856,0.36945,0.881553,0.948413,0.23371,0.919312,0.79928,0.824882,0.0219847,0.25426,0.814962,0.632568,0.40843,0.339915,0.946594,0.00865662,0.440372,0.267896,0.704752,0.203918,0.820005,0.533096,0.0587683,0.187312,0.0105591,0.128246,0.414233,0.298619,0.548194,0.661031,0.316343,0.669287,0.387383,0.661499,0.315331,0.0369477,0.853595,0.399599,0.375281,0.797459,0.295072,0.755165,0.981964,0.884229,0.853098,0.254708,0.651305,0.848514,0.212243,0.844788,0.336688,0.854751,0.0329955,0.781942,0.412367,0.0047031,0.874234,0.682898,0.616589,0.168828,0.036348,0.416385,0.296158,0.66722,0.549406,0.86105,0.22872,0.234569,0.144434,0.825893,0.661371,0.457737,0.164215,0.174991,0.161972,0.663631,0.808305,0.836628,0.725018,0.982632,0.535215,0.099614,0.801504,0.511108,0.225902,0.321356,0.514973,0.469015,0.197464,0.276369,0.156331,0.815539,0.00294405,0.0317196,0.99648,0.600624,0.269022,0.220258,0.425922,0.718344,0.240415,0.330465,0.636121,0.58997,0.267679,0.201786,0.712184,0.544622,0.448357,0.808332,0.367028,0.219592,0.340989,0.324782,0.637215,0.926903,0.600457,0.958254,0.803842,0.366654,0.300092,0.270693,0.603019,0.860923,0.748155,0.40109,0.821364,0.79253,0.155671,0.363803,0.575378,0.370484,0.158266,0.55555,0.664535,0.62399,0.417807,0.0480273,0.110392,0.833456,0.547853,0.489916,0.235245,0.399017,0.348469,0.786492,0.477291,0.90039,0.740562,0.155213,0.870065,0.195546,0.862141,0.180983,0.860921,0.301419,0.125893,0.431952,0.163554,0.163327,0.610203,0.451713,0.855189,0.544911,0.867665,0.404337,0.585258,0.89149,0.423671,0.348961,0.725961,0.225383,0.00399846,0.653005,0.899809,0.367021,0.797433,0.615255,0.387105,0.865448,0.520056,0.361508,0.488143,0.291989,0.672279,0.81449,0.935797,0.763862,0.537562,0.741122,0.460815,0.476104,0.822112,0.985468,0.715373,0.595407,0.781378,0.20267,0.43053,0.536749,0.410689,0.554408,0.805178,0.191835,0.274151,0.800396,0.476232,0.632262,0.74304,0.96809,0.737974,0.810381,0.760063,0.421289,0.819162,0.166542,0.0265436,0.808751,0.849941,0.782811,0.852822,0.973819,0.709549,0.583828,0.417756,0.266437,0.335125,0.452886,0.762946,0.0636023,0.0438965,0.677443,0.818381,0.456525,0.282942,0.807028,0.925686,0.731719,0.358193,0.374549,0.613126,0.198845,0.179009,0.14553,0.00803077,0.717524,0.199406,0.317027,0.609172,0.0239455,0.87574,0.0164146,0.613764,0.816208,0.649036,0.515652,0.151885,0.105758,0.961374,0.533337,0.170977,0.974203,0.00673592,0.258331,0.115886,0.624339,0.891016,0.0434048,0.60168,0.124429,0.232176,0.950767,0.113534,0.240576,0.926609,0.221895,0.53656,0.116911,0.947829,0.428681,0.510229,0.528853,0.744596,0.942253,0.543634,0.710668,0.785923,0.195918,0.90837,0.440444,0.973157,0.276442,0.0910008,0.157444,0.537387,0.099718,0.176463,0.470428,0.0950426,0.303315,0.542632,0.875888,0.249395,0.116695,0.502696,0.914651,0.800499,0.722183,0.84549,0.821662,0.587985,0.79968,0.418118,0.436111,0.0771684,0.296385,0.0496569,0.349849,0.337614,0.368468,0.421311,0.918314,0.222231,0.44846,0.294543,0.746592,0.267052,0.0224701,0.406091,0.758892,0.275069,0.362773,0.138261,0.252337,0.608242,0.737762,0.183939,0.310747,0.659515,0.652396,0.1008,0.506056,0.634499,0.370544,0.65985,0.571439,0.819285,0.873409,0.13593,0.00532579,0.609078,0.497311,0.0268589,0.655734,0.702177,0.204129,0.888561,0.782647,0.598732,0.26066,0.379092,0.311599,0.00630271,0.786971,0.00355673,0.980594,0.502531,0.991793,0.857601,0.078697,0.436803,0.961819,0.934891,0.947362,0.416628,0.031874,0.48862,0.143244,0.366898,0.338856,0.783133,0.315266,0.206102,0.0231873,0.322682,0.577315,0.0979913,0.904761,0.946278,0.742891,0.928632,0.0800823,0.667531,0.770537,|0.0139567,0.9023,0.614667,0.241444,0.504117,0.736398,0.592475,0.334217,0.0495191,0.390436,0.883241,0.0657148,0.643538,0.157411,0.222494,0.792607,0.390221,0.834785,0.679202,0.427558,0.729267,0.23767,0.542367,0.222874,0.479177,0.947152,0.865065,0.739747,0.807402,0.292837,0.892975,0.697901,0.50321,0.639231,0.753361,0.686353,0.927535,0.688759,0.401626,0.308494,0.510699,0.685582,0.395297,0.648274,0.339861,0.757386,0.670614,0.517498,0.393816,0.726556,0.65183,0.50209,0.390361,0.236829,0.163494,0.252974,0.619855,0.723695,0.764306,0.989258,0.113036,0.924579,0.519213,0.774649,0.281997,0.616668,0.216719,0.0341048,0.382297,0.0436249,0.643683,0.550645,0.478561,0.743895,0.202545,0.28745,0.0966224,0.436811,0.880086,0.661134,0.862089,0.135826,0.422683,0.480996,0.767519,0.126714,0.78723,0.711537,0.841335,0.52937,0.821636,0.823379,0.189445,0.00915766,0.896031,0.786566,0.460579,0.949535,0.159515,0.409279,0.954765,0.177158,0.25075,0.227888,0.910535,0.887031,0.128863,0.92654,0.287556,0.0284089,0.976259,0.942005,0.0382001,0.017974,0.440603,0.899576,0.901715,0.629586,0.235374,0.316862,0.484365,0.270853,0.1979,0.167678,0.554799,0.689274,0.0397441,0.768778,0.957814,0.647419,0.42321,0.707824,0.0154719,0.413874,0.416307,0.976462,0.833097,0.0260903,0.220466,0.545105,0.485436,0.839674,0.238591,0.927002,0.56086,0.570981,0.537374,0.764292,0.117713,0.7233,0.289934,0.615441,0.973195,0.987539,0.330652,0.84514,0.892169,0.572779,0.669282,0.724167,0.907734,0.49336,0.0788212,0.934088,0.260167,0.478244,0.792642,0.992841,0.102271,0.967766,0.212614,0.559933,0.207325,0.636104,0.942413,0.448631,0.555466,0.914853,0.47991,0.0682259,0.679339,0.692116,0.838421,0.912568,0.884447,0.740547,0.8729,0.541216,0.708835,0.554259,0.581777,0.720794,0.195477,0.765645,0.829122,0.0962085,0.173381,0.758681,0.946572,0.0150392,0.903262,0.117215,0.350242,0.214853,0.340667,0.103655,0.989649,0.112322,0.151073,0.375484,0.816234,0.0319254,0.245704,0.633894,0.174,0.0451663,0.881416,0.409367,0.190668,0.808379,0.309312,0.454841,0.933886,0.0412425,0.228341,0.380056,0.547131,0.424555,0.192843,0.517854,0.0159135,0.993854,0.201323,0.511028,0.776531,0.883314,0.0642959,0.578869,0.501497,0.775895,0.0603372,0.0280596,0.33083,0.646404,0.842142,0.333991,0.434102,0.0985092,0.778434,0.580465,0.174053,0.751712,0.193748,0.0780154,0.307391,0.833945,0.658749,0.556014,0.448567,0.450359,0.569402,0.511438,0.771139,0.173099,0.35821,0.125333,0.0174145,0.473623,0.989422,0.429104,0.59654,0.45329,0.183978,0.126347,0.379828,0.988029,0.189358,0.122883,0.840531,0.233982,0.723635,0.888301,0.85641,0.618358,0.906624,0.467191,0.859855,0.110768,0.122987,0.127482,0.0432331,0.444338,0.300252,0.971366,0.865446,0.84575,0.730608,0.624456,0.441776,0.225325,0.209617,0.13575,0.365392,0.328839,0.621479,0.126503,0.0575632,0.0498996,0.128646,0.41846,0.796308,0.960818,0.881045,0.540159,0.0528603,0.704466,0.00365055,0.985362,0.420815,0.339321,0.0353606,0.0806391,0.703965,0.35683,0.197462,0.698379,0.949224,0.168807,0.341308,0.677977,0.441696,0.222986,0.745516,0.602582,0.318769,0.884576,0.313578,0.598067,0.257385,0.382859,0.0583976,0.0886672,0.722362,0.648418,0.0073415,0.668491,0.0123129,0.951578,0.223963,0.482624,0.539787,0.319134,0.408663,0.326789,0.942619,0.539047,0.61906,0.892922,0.972888,0.494375,0.52627,0.961504,0.586983,0.325274,0.171469,0.797482,0.0126403,0.947782,0.479347,0.266258,0.462439,0.276184,0.270901,0.405414,0.718575,0.724938,0.0858301,0.385433,0.504101,0.917886,0.0603549,0.126192,0.0165963,0.463762,0.266324,0.143261,0.817085,0.114508,0.761875,0.813799,0.455108,0.964245,0.674007,0.699647,0.0558317,0.695625,0.0701516,0.890654,0.605791,0.896788,0.411329,0.19583,0.968226,0.510517,0.0186035,0.289181,0.479604,0.238182,0.145961,0.783775,0.616392,0.504337,0.787175,0.197106,0.744087,0.169461,0.447266,0.332941,0.155683,0.0759345,0.00585866,0.736318,0.44818,0.638535,0.18459,0.435802,0.576734,0.499206,0.92597,0.787971,0.663125,0.401889,0.407355,0.47954,0.171316,0.573991,0.766846,0.386051,0.857604,0.120814,0.945925,0.768329,0.26311,0.388572,0.907291,0.722589,0.463611,0.105992,0.610021,0.476927,0.635491,0.129099,0.16558,0.290844,0.41116,0.557416,0.66019,0.00950491,0.458775,0.62381,0.385071,0.294157,0.0388545,0.475756,0.321193,0.641587,0.485787,0.706833,0.371454,0.560128,0.691321,0.0502762,0.462246,0.0190547,0.687692,0.100802,0.350708,0.605026,0.253893,0.152757,0.497473,0.00138015,0.847947,0.232761,0.97993,0.203256,0.138849,0.0848833,0.211561,0.971583,0.120815,0.717448,0.60715,0.581396,0.566804,0.799949,0.823818,0.732689,0.587055,0.0860053,0.973457,0.580698,0.885062,0.822003,0.340137,0.123645,0.370871,0.192331,0.032511,0.683259,0.573818,0.338621,0.667941,0.219914,0.213891,0.693648,0.082846,0.328663,0.42379,0.50153,0.374289,0.391819,0.195188,0.241391,0.437778,0.415868,0.435552,0.182001,0.124109,0.993038,0.573606,0.961729,0.334893,0.953066,0.219937,0.847493,0.0629874,0.37337,0.368789,0.318058,0.590014,0.283267,0.883565,0.0737017,0.446623,0.83459,0.384536,0.496627,0.132977,0.826069,0.164127,0.425037,0.023497,0.0120479,0.266389,0.998791,0.928499,0.516025,0.481417,0.715306,0.402872,0.679271,0.296706,0.148392,0.774333,0.1853,0.268421,0.520579,0.228364,0.994182,0.778913,0.346945,0.920277,0.243486,0.625906,0.842386,0.766451,0.63228,0.602368,0.549007,0.0447519,0.876179,0.256855,0.207111,0.959798,0.535327,0.890391,0.138695,0.14221,0.176718,0.24536,0.589228,0.264912,0.0460736,0.733609,0.626789,0.961325,0.244267,0.354206,0.414912,0.317689,0.742932,0.515131,0.485457,0.736709,0.191234,0.719332,0.457404,0.259427,0.672931,0.69175,0.775264,0.194821,0.00425625,0.961245,0.908838,0.355835,0.219473,0.0113519,0.683689,0.0851182,0.010651,0.00167215,0.939413,0.532926,0.46399,0.14389,0.91278,0.0259719,0.669475,0.915761,0.926386,0.893548,0.756305,0.148915,0.712838,0.288952,0.352769,0.95598,0.810091,0.604606,0.962708,0.170947,0.439734,0.501614,0.577429,0.356433,0.417782,0.971532,0.0134256,0.860144,0.555169,0.515341,0.335485,0.666372,0.697491,0.518992,0.469269,0.822373,0.56401,0.54939,0.375458,0.481239,0.980624,0.192132,0.473124,0.484742,0.813632,0.992495,0.772746,0.0993366,0.815888,0.826576,0.949974,0.796705,0.00876272,0.737419,0.0923077,0.140802,0.654996,0.39114,0.353086,0.238481,0.296279,0.721509,0.457882,0.542682,0.304325,0.905513,0.59475,0.601257,0.819819,0.828321,0.845906,0.606846,0.635136,0.959366,0.708767,0.175024,0.265695,0.562014,0.290769,0.664927,0.645967,0.473665,0.185807,0.863054,0.0723801,0.517362,0.809617,0.914468,0.887239,0.202687,0.486715,0.634871,0.48227,0.826402,0.241098,0.0206878,0.256593,0.451718,0.939349,0.331622,0.248616,0.86399,0.71291,0.476925,0.937386,0.774841,0.975902,0.478331,0.478428,0.440636,0.0087682,0.100026,0.764588,0.113412,0.00494617,0.744876,0.808207,0.619295,0.786367,0.206892,0.489965,0.348361,0.438387,0.325172,0.385601,0.946399,0.492095,0.110102,0.513367,0.530617,0.200739,0.00939524,0.134705,0.182044,0.143623,0.411795,0.69476,0.231097,0.758307,0.412526,0.800152,0.510284,0.22947,0.851886,0.721239,0.278344,0.225466,0.980053,0.275287,0.65705,0.157284,0.0652992,0.144628,0.0450216,0.387087,0.788977,0.719572,0.393299,0.658508,0.0321418,0.0867056,0.40112,0.397592,0.504366,0.0352129,0.732089,0.730707,0.243171,0.701237,0.327728,0.488062,0.528364,0.384292,0.628857,0.844655,0.394139,0.798858,0.987659,0.507874,0.413159,0.677312,0.34249,0.191085,0.660521,0.275731,0.899006,0.468214,0.833447,0.696854,0.966893,0.560788,0.32661,0.730239,0.276804,0.776077,0.144171,0.175202,0.552867,0.119112,0.200188,0.417655,0.705998,0.131859,0.151788,0.243075,0.590716,0.697316,0.384399,0.961864,0.340539,0.463498,0.317026,0.330912,0.961077,0.729477,0.747652,0.489968,0.646644,0.867267,0.118659,0.701669,0.898906,0.575845,0.652991,0.597277,0.71146,0.823465,0.775469,0.32702,0.521078,0.581585,0.0824347,0.175782,0.0965796,0.125156,0.027082,0.118906,0.177264,0.892393,0.334519,0.298202,0.140864,0.916889,0.0950153,0.205405,0.599476,0.856135,0.454515,0.182236,0.261274,0.271226,0.822249,0.225625,0.64699,0.202707,0.256595,0.249742,0.172644,0.534326,0.72411,0.827387,0.298793,0.0947977,0.182702,0.326883,0.644506,0.115606,0.012825,0.301994,0.211384,0.982671,0.867937,0.239928,0.312782,0.652263,0.105627,0.94811,0.0739653,0.148441,0.325905,0.543941,0.524633,0.391441,0.36201,0.307304,0.372009,0.0543956,0.237862,0.768667,0.0200889,0.549844,0.398369,0.902363,0.887828,0.733843,0.589037,0.83959,0.95164,0.378831,0.921681,0.133264,0.0070495,0.331111,0.656752,0.182909,0.429657,0.571097,0.97097,0.809561,0.181476,0.0628569,0.565638,0.580055,0.209156,0.0979884,0.965342,0.357264,0.561875,0.27291,0.00296319,0.671598,0.217163,0.862182,0.250594,0.715586,0.339383,0.954489,0.105205,0.0504033,0.200247,0.968923,0.42121,0.356912,0.554689,0.0907699,0.313244,0.911105,0.000521421,0.598559,0.795409,0.963697,0.134495,0.69267,0.705961,0.82961,0.974701,0.517904,0.410622,0.943866,0.82529,0.754127,0.406056,0.301654,0.320566,0.179227,0.114918,0.606236,0.573072,0.920058,0.335894,0.611018,0.959802,0.156434,0.604436,0.969383,0.175562,0.932976,0.495451,0.311004,0.0224805,0.646041,0.991869,0.413726,0.758473,0.521977,0.732822,0.495468,|0.784274,0.0539643,0.191035,0.126918,0.233288,0.010381,0.881075,0.65746,0.0340726,0.424134,0.440441,0.466072,0.312843,0.0918111,0.195305,0.171487,0.107347,0.727376,0.150613,0.227397,0.421344,0.455447,0.464266,0.461881,0.0016045,0.370498,0.315932,0.875776,0.865942,0.891382,0.832655,0.469962,0.201912,0.66054,0.0380779,0.242635,0.590189,0.0795664,0.0500951,0.464478,0.718852,0.931175,0.538325,0.543411,0.812343,0.967597,0.915142,0.528437,0.421664,0.707891,0.884413,0.404365,0.398899,0.533594,0.928659,0.759992,0.668512,0.17539,0.854201,0.382314,0.404378,0.371826,0.211728,0.114503,0.170886,0.879516,0.359394,0.0398988,0.879179,0.729291,0.25464,0.44975,0.467792,0.570965,0.371723,0.498234,0.866721,0.754489,0.983585,0.266222,0.242127,0.300223,0.525201,0.110434,0.24372,0.093767,0.319072,0.0486718,0.86618,0.914033,0.0818446,0.620772,0.331623,0.759508,0.289802,0.483843,0.233021,0.51351,0.66714,0.139564,0.0382169,0.243496,0.716348,0.289693,0.125001,0.375533,0.0651429,0.619359,0.450123,0.466682,0.298329,0.142627,0.252504,0.0761649,0.323502,0.227589,0.779524,0.350887,0.991403,0.00429785,0.410801,0.941084,0.272054,0.776067,0.965497,0.0203056,0.800345,0.858049,0.591216,0.958274,0.905829,0.575009,0.30752,0.111291,0.682745,0.383981,0.365825,0.184806,0.46275,0.107796,0.633017,0.307224,0.124461,0.27208,0.572709,0.539299,0.141275,0.0892276,0.495769,0.447035,0.821631,0.581542,0.854414,0.903045,0.578499,0.116866,0.592652,0.457265,0.706152,0.479028,0.172619,0.190633,0.595006,0.462686,0.85099,0.0582132,0.69953,0.346241,0.662082,0.437678,0.0374852,0.251296,0.818075,0.84288,0.604811,0.770748,0.355869,0.112432,0.267412,0.57153,0.281321,0.640593,0.509394,0.976977,0.250848,0.314593,0.801983,0.835853,0.393963,0.726628,0.641981,0.0732296,0.292031,0.833765,0.592377,0.0917217,0.14883,0.753186,0.328266,0.975488,0.615781,0.962154,0.535109,0.0219687,0.602976,0.901312,0.588367,0.87271,0.285895,0.221281,0.328075,0.0610772,0.300504,0.750912,0.621626,0.371833,0.83374,0.3619,0.304188,0.00469697,0.965256,0.0676597,0.426275,0.352175,0.598405,0.88225,0.611862,0.447551,0.696546,0.473238,0.964049,0.938242,0.926504,0.04823,0.00675929,0.148559,0.205581,0.360448,0.420582,0.621681,0.259993,0.903636,0.582276,0.897192,0.823353,0.595635,0.0812892,0.0145776,0.562944,0.719857,0.929825,0.866482,0.624479,0.3001,0.882844,0.19166,0.127159,0.334348,0.973019,0.929944,0.831214,0.501335,0.466368,0.0457434,0.686678,0.441698,0.649771,0.00226486,0.662733,0.528591,0.049632,0.286116,0.851677,0.0187713,0.243079,0.637499,0.396946,0.667446,0.464118,0.558044,0.323114,0.769473,0.439412,0.681739,0.118643,0.0568798,0.0969493,0.0689746,0.366641,0.756476,0.299386,0.0461234,0.539688,0.723984,0.736794,0.650955,0.876857,0.868193,0.485348,0.341518,0.0225641,0.349151,0.607651,0.717792,0.507742,0.952573,0.0206994,0.49569,0.906882,0.468448,0.115594,0.469898,0.00043416,0.382045,0.657875,0.301194,0.634365,0.761654,0.997194,0.441659,0.136983,0.271557,0.631159,0.577906,0.00571287,0.650836,0.366509,0.203415,0.289931,0.39206,0.355378,0.0179883,0.220037,0.775498,0.367892,0.68877,0.658454,0.397859,0.31188,0.586266,0.348267,0.536293,0.525958,0.742965,0.0941513,0.0180874,0.469362,0.622575,0.231973,0.776157,0.137272,0.936373,0.0993814,0.25934,0.194964,0.402244,0.128058,0.319213,0.475175,0.343505,0.48929,0.780708,0.273118,0.61717,0.589278,0.732005,0.668269,0.094724,0.988544,0.605387,0.121722,0.432551,0.824373,0.809484,0.280039,0.562781,0.285988,0.759657,0.749118,0.84854,0.878191,0.98618,0.227963,0.211487,0.26147,0.832219,0.48933,0.33685,0.165264,0.741891,0.0683062,0.857679,0.599517,0.143173,0.41587,0.452172,0.730407,0.93516,0.520999,0.261234,0.0415949,0.00668871,0.976607,0.145747,0.0580195,0.0373153,0.676498,0.98312,0.460549,0.381519,0.253524,0.423491,0.0344489,0.598252,0.116576,0.589292,0.130107,0.109197,0.678042,0.85389,0.703927,0.845909,0.111375,0.749512,0.957377,0.147862,0.828332,0.65663,0.371669,0.412556,0.618197,0.145289,0.738353,0.0811293,0.884451,0.167919,0.563194,0.558227,0.23004,0.658728,0.694445,0.973833,0.858833,0.0232273,0.627879,0.399664,0.857195,0.0326253,0.272043,0.890042,0.611993,0.865013,0.359115,0.197331,0.238475,0.80761,0.421326,0.125834,0.526217,0.849311,0.730749,0.763067,0.715692,0.45541,0.74134,0.202068,0.746608,0.481526,0.0401065,0.551159,0.195841,0.933125,0.397148,0.154048,0.914294,0.739855,0.718304,0.49263,0.193372,0.592716,0.819837,0.308501,0.261219,0.859025,0.762622,0.0349278,0.488951,0.297058,0.374985,0.236537,0.32511,0.170744,0.936683,0.951416,0.194451,0.836813,0.75731,0.99263,0.259484,0.650153,0.621008,0.363539,0.564813,0.720193,0.55461,0.362018,0.76758,0.484364,0.777234,0.680676,0.717091,0.515857,0.355171,0.0954569,0.277002,0.323754,0.771631,0.687434,0.380211,0.61197,0.521163,0.708419,0.964051,0.176241,0.872872,0.293279,0.258211,0.760787,0.458834,0.832653,0.413878,0.477026,0.869883,0.69964,0.658324,0.00500733,0.16892,0.0818863,0.835652,0.908438,0.921361,0.645829,0.319772,0.332668,0.87015,0.0824631,0.298495,0.0343651,0.445207,0.411136,0.958675,0.778248,0.110714,0.795919,0.611906,0.16734,0.706372,0.142083,0.704518,0.996955,0.687769,0.103523,0.916448,0.257953,0.534699,0.601579,0.0730416,0.206112,0.341879,0.655693,0.560118,0.913959,0.417003,0.109116,0.881833,0.226209,0.159099,0.364022,0.260587,0.0289305,0.681988,0.0977927,0.418296,0.278067,0.719256,0.203191,0.174375,0.792296,0.699855,0.560859,0.841696,0.183511,0.377978,0.728422,0.632763,0.288624,0.488695,0.274784,0.675595,0.218651,0.4953,0.387666,0.0861788,0.188682,0.308735,0.29191,0.918206,0.840094,0.639222,0.059419,0.417136,0.275493,0.0202065,0.317045,0.307547,0.479796,0.93527,0.382201,0.489879,0.728651,0.907617,0.0854061,0.896771,0.708357,0.780837,0.396103,0.709167,0.856107,0.178426,0.0182302,0.416914,0.737243,0.471087,0.0118082,0.145748,0.384153,0.217887,0.642003,0.0930415,0.248801,0.31869,0.925902,0.536595,0.126483,0.960924,0.143692,0.33739,0.385723,0.387326,0.760965,0.745595,0.741746,0.726173,0.351145,0.954965,0.835874,0.00365818,0.424977,0.493045,0.219669,0.847199,0.650056,0.356467,0.88577,0.282428,0.238371,0.240605,0.716404,0.32824,0.472414,0.736681,0.0396633,0.596637,0.698286,0.0413237,0.889944,0.494005,0.00110012,0.0654588,0.995917,0.79597,0.923259,0.151376,0.889735,0.983312,0.856416,0.001508,0.986721,0.975823,0.151461,0.497664,0.859115,0.862479,0.771271,0.84203,0.546007,0.996147,0.653991,0.706112,0.203217,0.26334,0.789142,0.414344,0.668896,0.0733864,0.786583,0.253591,0.986307,0.61143,0.862763,0.373721,0.726794,0.179735,0.957195,0.671988,0.0690187,0.986653,0.180132,0.334849,0.183217,0.803725,0.634879,0.940854,0.249778,0.0943276,0.763025,0.200164,0.346302,0.63384,0.0354368,0.005108,0.655636,0.958761,0.907746,0.937576,0.972834,0.923866,0.703697,0.532276,0.584791,0.505713,0.506393,0.571618,0.497147,0.954841,0.323672,0.722168,0.511038,0.147398,0.0305817,0.0475226,0.502489,0.176716,0.0748112,0.897547,0.384586,0.999254,0.785668,0.223115,0.116925,0.96178,0.637792,0.414867,0.241221,0.436902,0.017727,0.635373,0.911652,0.657036,0.200614,0.0534616,0.988704,0.905299,0.737634,0.304159,0.628113,0.146359,0.52008,0.436875,0.219892,0.0659415,0.415553,0.85666,0.695495,0.670323,0.40596,0.724715,0.933087,0.511852,0.405967,0.65161,0.685828,0.416991,0.171237,0.727041,0.195413,0.170549,0.879581,0.3263,0.0662072,0.17981,0.907329,0.527786,0.61621,0.961158,0.00640357,0.359486,0.744831,0.9976,0.931456,0.637168,0.588541,0.6827,0.0460651,0.993389,0.0164775,0.0573168,0.433237,0.470061,0.688513,0.691243,0.544812,0.980745,0.482661,0.327798,0.839983,0.0631511,0.677279,0.386512,0.474219,0.0782406,0.774313,0.579242,0.091008,0.175947,0.0121467,0.330888,0.75453,0.647233,0.0760199,0.823185,0.49289,0.517217,0.588375,0.0447499,0.843067,0.375683,0.76899,0.825904,0.932303,0.28462,0.422284,0.224275,0.673757,0.807291,0.758174,0.454318,0.0772916,0.246908,0.041878,0.0370628,0.473884,0.0768701,0.166686,0.268233,0.235066,0.662139,0.740351,0.769464,0.94093,0.713939,0.99777,0.507662,0.719955,0.155945,0.671738,0.941935,0.908339,0.505014,0.169439,0.474233,0.625115,0.830012,0.315934,0.422532,0.902588,0.541648,0.640055,0.565599,0.0084222,0.194205,0.352271,0.47204,0.083919,0.950264,0.521048,0.231469,0.556655,0.573223,0.100482,0.131766,0.421688,0.986394,0.913832,0.778096,0.424349,0.489384,0.871355,0.0633449,0.680815,0.576236,0.698952,0.307144,0.156192,0.837243,0.74731,0.0780202,0.611817,0.854058,0.914773,0.528848,0.032052,0.400408,0.595071,0.712008,0.623506,0.274519,0.753618,0.665586,0.586508,0.620602,0.0494166,0.827796,0.7235,0.715994,0.243834,0.641229,0.178165,0.662954,0.893124,0.483748,0.528343,0.577359,0.852605,0.446312,0.83423,0.639729,0.00765836,0.242796,0.102918,0.550249,0.0652103,0.604018,0.746499,0.0280297,0.220114,0.673826,0.58529,0.0353596,0.676801,0.278331,0.443109,0.432628,0.697999,0.756478,0.838728,0.562261,0.340356,0.210948,0.715315,0.603606,0.944421,0.989951,0.580557,0.951025,0.21297,0.200511,0.703553,0.577103,0.466323,0.566214,0.129639,0.989541,0.978193,0.596555,0.183613,0.342324,0.850782,0.932512,0.120869,0.406155,0.978048,0.372381,0.0213113,0.370294,0.889143,0.0128226,0.616684,0.698366,0.351999,|0.287582,0.384067,0.644094,0.912363,0.960525,0.773329,0.946293,0.283526,0.828218,0.910808,0.242686,0.778836,0.966347,0.370917,0.330726,0.424373,0.739772,0.572251,0.382794,0.740839,0.0244389,0.950053,0.839025,0.0168489,0.105042,0.533729,0.178801,0.201648,0.321698,0.586336,0.242173,0.483985,0.348804,0.796955,0.381605,0.79324,0.912176,0.517517,0.76718,0.28152,0.100994,0.349931,0.78298,0.146665,0.656352,0.799741,0.601721,0.0292884,0.366824,0.341735,0.0731543,0.259078,0.0845724,0.833842,0.13603,0.903396,0.970918,0.325879,0.510222,0.606888,0.87993,0.837327,0.0683283,0.903806,0.878546,0.940688,0.538774,0.369308,0.782225,0.870074,0.844111,0.093576,0.154344,0.687425,0.53332,0.15794,0.322829,0.572081,0.508073,0.421436,0.6252,0.581988,0.445509,0.116359,0.264942,0.136261,0.627589,0.927768,0.0534653,0.662788,0.960106,0.488296,0.0725302,0.816012,0.766606,0.667581,0.933535,0.205266,0.635077,0.728529,0.467031,0.291124,0.159845,0.0775985,0.737322,0.102227,0.274235,0.579088,0.345036,0.970262,0.118256,0.405943,0.314461,0.660192,0.0800681,0.372553,0.708186,0.0127659,0.224573,0.331175,0.614919,0.974521,0.994439,0.475696,0.353407,0.437834,0.140303,0.805798,0.217837,0.166967,0.305611,0.85004,0.843617,0.713367,0.642199,0.63922,0.385408,0.44494,0.711987,0.167246,0.582627,0.304794,0.492377,0.307886,0.161428,0.830039,0.775923,0.340664,0.989667,0.358341,0.690123,0.884653,0.307107,0.984682,0.40279,0.0449471,0.299044,0.367226,0.449232,0.341071,0.545489,0.641388,0.81809,0.305264,0.916636,0.0284736,0.056609,0.160788,0.645764,0.0221952,0.291651,0.590108,0.80357,0.566221,0.397048,0.00466341,0.581328,0.72364,0.955893,0.590542,0.85741,0.345547,0.794253,0.574766,0.788163,0.475484,0.454333,0.00549054,0.0245278,0.423365,0.761964,0.0833273,0.907883,0.281739,0.203092,0.330072,0.101313,0.695055,0.822816,0.122193,0.335125,0.127646,0.926198,0.277552,0.289659,0.106988,0.900597,0.551577,0.344516,0.775848,0.66164,0.932897,0.543427,0.506424,0.411753,0.894614,0.734481,0.117294,0.631544,0.0913097,0.101155,0.326345,0.712017,0.929212,0.48908,0.913737,0.80864,0.282339,0.49726,0.0445015,0.998507,0.993367,0.443979,0.193628,0.828579,0.596125,0.871088,0.111532,0.756806,0.549926,0.482311,0.711724,0.619824,0.949887,0.768083,0.798534,0.676174,0.081571,0.789067,0.0318416,0.562808,0.4725,0.437693,0.201031,0.460088,0.458902,0.370315,0.612517,0.390155,0.556418,0.344726,0.354043,0.272289,0.812632,0.29913,0.451596,0.967852,0.64665,0.447121,0.751336,0.765262,0.310207,0.287371,0.99761,0.384988,0.490474,0.764842,0.942737,0.0634515,0.900914,0.439864,0.204551,0.687114,0.582021,0.284244,0.816408,0.945204,0.602517,0.119024,0.433373,0.132941,0.526517,0.746984,0.25974,0.722503,0.884232,0.883564,0.721473,0.121134,0.693828,0.0354635,0.553141,0.428817,0.343724,0.696976,0.680221,0.960237,0.234686,0.0280302,0.7691,0.0574106,0.533793,0.621629,0.988041,0.4008,0.193145,0.851697,0.537882,0.293552,0.448999,0.323055,0.344836,0.221492,0.27581,0.246224,0.66631,0.306336,0.892441,0.533268,0.617625,0.373116,0.658879,0.4374,0.613148,0.913929,0.366688,0.558867,0.127504,0.459414,0.859835,0.608185,0.834371,0.031465,0.0991566,0.997394,0.55913,0.860564,0.0702437,0.704105,0.96622,0.12623,0.51271,0.288112,0.332684,0.436421,0.152165,0.812079,0.244991,0.231299,0.268676,0.73765,0.854202,0.341238,0.869737,0.425116,0.100642,0.687131,0.0883366,0.481449,0.710906,0.843096,0.275499,0.469587,0.988022,0.510682,0.911177,0.552416,0.958623,0.327413,0.101134,0.776348,0.44437,0.652632,0.216935,0.383427,0.230516,0.89797,0.765763,0.495484,0.66388,0.601549,0.866091,0.0807016,0.472182,0.822504,0.958427,0.694993,0.876731,0.105595,0.736617,0.251067,0.721985,0.424376,0.411987,0.976115,0.848079,0.285793,0.834475,0.922113,0.277776,0.817818,0.987536,0.360738,0.504283,0.0583116,0.962883,0.0929263,0.290337,0.466987,0.520954,0.481239,0.101096,0.00959897,0.705273,0.910131,0.717036,0.171903,0.603433,0.974214,0.0807055,0.462899,0.957371,0.681087,0.345552,0.849955,0.958842,0.970257,0.630639,0.666477,0.361476,0.474292,0.0835468,0.930258,0.549186,0.199595,0.191558,0.55289,0.218343,0.864222,0.164863,0.178036,0.919903,0.464617,0.291919,0.430167,0.981724,0.0660587,0.822081,0.964828,0.06354,0.36271,0.246698,0.821485,0.680656,0.0438229,0.122668,0.257017,0.897989,0.0672624,0.843876,0.431418,0.652007,0.147918,0.267827,0.693473,0.0124497,0.661905,0.42599,0.382147,0.773303,0.49636,0.253994,0.703851,0.885026,0.420791,0.607855,0.721932,0.554813,0.372008,0.294913,0.479954,0.269794,0.220087,0.601149,0.713321,0.908177,0.75902,0.798481,0.119372,0.816688,0.801168,0.475054,0.775244,0.5364,0.498125,0.718153,0.15043,0.744631,0.63795,0.479393,0.0342132,0.355973,0.0226836,0.246673,0.836017,0.814053,0.434909,0.734551,0.87214,0.538202,0.35879,0.878229,0.304091,0.215531,0.446294,0.689446,0.467108,0.483762,0.211454,0.62392,0.604336,0.220349,0.268596,0.411511,0.535864,0.536807,0.151631,0.92151,0.0100703,0.742739,0.00747997,0.0274522,0.676382,0.618436,0.653465,0.15884,0.785327,0.308924,0.307886,0.928377,0.225882,0.563001,0.372566,0.37946,0.477397,0.366118,0.378388,0.170922,0.109913,0.512497,0.994529,0.19865,0.00633281,0.762882,0.389836,0.268519,0.305243,0.887345,0.688662,0.724856,0.368739,0.735993,0.379576,0.234076,0.751259,0.313529,0.202907,0.360741,0.024733,0.0645856,0.337173,0.267913,0.49292,0.454446,0.873033,0.123129,0.449158,0.32085,0.210888,0.116006,0.619329,0.553039,0.299785,0.832488,0.820623,0.451334,0.751676,0.369607,0.843544,0.00376433,0.520986,0.759903,0.934343,0.870376,0.21008,0.0868434,0.1109,0.0762894,0.0343392,0.256019,0.677627,0.0327532,0.228546,0.882442,0.575302,0.530411,0.666868,0.829516,0.188089,0.922579,0.637228,0.0637778,0.111182,0.122634,0.0790494,0.108339,0.677968,0.757562,0.824286,0.941181,0.592302,0.423222,0.407526,0.0268477,0.242331,0.378374,0.0819776,0.818108,0.290407,0.339258,0.142782,0.404806,0.930697,0.511957,0.115349,0.224967,0.0611313,0.878208,0.041067,0.817121,0.102769,0.293926,0.621253,0.339888,0.361844,0.786788,0.0301343,0.301046,0.92827,0.166135,0.684428,0.293802,0.956415,0.373904,0.786169,0.318402,0.512513,0.535681,0.39873,0.553048,0.755054,0.225619,0.884347,0.0823766,0.0553393,0.994467,0.168173,0.663289,0.441345,0.556214,0.65995,0.32631,0.450475,0.946342,0.49961,0.718166,0.94398,0.434887,0.469499,0.0511466,0.896692,0.780631,0.545955,0.0514891,0.325207,0.152046,0.329268,0.271787,0.365393,0.366397,0.445983,0.48162,0.342839,0.567911,0.186517,0.768731,0.84053,0.272412,0.177002,0.837536,0.569395,0.9201,0.469312,0.184018,0.433715,0.186864,0.202234,0.835452,0.112698,0.0935125,0.0758613,0.780013,0.274372,0.0777009,0.147986,0.473782,0.0179739,0.0925473,0.391302,0.134269,0.909524,0.248972,0.31209,0.795692,0.581274,0.221452,0.290165,0.748311,0.940237,0.415993,0.556844,0.0634959,0.894981,0.280953,0.208144,0.0826262,0.609825,0.619548,0.0279013,0.706606,0.0839442,0.922295,0.846076,0.18858,0.578512,0.260679,0.858715,0.260274,0.994287,0.718702,0.815792,0.669414,0.28518,0.183307,0.385955,0.806184,0.689411,0.129987,0.446654,0.0720578,0.527935,0.890659,0.634635,0.429656,0.211716,0.00413799,0.867425,0.936472,0.99028,0.346154,0.865814,0.973534,0.683426,0.517436,0.420086,0.981441,0.817831,0.511725,0.380532,0.134318,0.137684,0.0296175,0.0878959,0.795707,0.648064,0.710856,0.507953,0.456876,0.88913,0.569221,0.282026,0.631544,0.310266,0.677129,0.23566,0.536604,0.179718,0.540006,0.63078,0.482073,0.827205,0.362647,0.668143,0.374693,0.790914,0.897736,0.143945,0.227796,0.635913,0.969473,0.151607,0.648405,0.993065,0.0105259,0.85701,0.525171,0.211224,0.193255,0.572052,0.12585,0.337949,0.739565,0.861929,0.385037,0.794786,0.470985,0.587067,0.490478,0.228082,0.732745,0.978347,0.90085,0.387905,0.965544,0.745677,0.616159,0.733505,0.619628,0.137857,0.906343,0.390625,0.32109,0.521594,0.239757,0.409265,0.370754,0.0138894,0.778989,0.183502,0.442054,0.138274,0.319956,0.235045,0.0265828,0.839315,0.335181,0.700273,0.62437,0.844414,0.657892,0.36463,0.919553,0.206765,0.525818,0.73685,0.0575184,0.112056,0.963753,0.962812,0.392976,0.183124,0.509783,0.510701,0.305213,0.213268,0.591089,0.178284,0.703717,0.389438,0.720118,0.106526,0.529199,0.211188,0.654426,0.291816,0.757255,0.406931,0.459422,0.519759,0.0485743,0.81703,0.418282,0.0102559,0.753129,0.562217,0.731423,0.466812,0.393574,0.897304,0.901024,0.416228,0.842979,0.643427,0.472936,0.453298,0.546362,0.581323,0.0383819,0.613452,0.965202,0.0985188,0.459331,0.285502,0.927713,0.789354,0.773002,0.312471,0.335905,0.279309,0.177426,0.187747,0.206496,0.591527,0.784901,0.603803,0.651001,0.325581,0.613659,0.233676,0.221561,0.996321,0.00672656,0.668408,0.140682,0.815287,0.277551,0.719088,0.262077,0.810235,0.0146994,0.429004,0.394187,0.566198,0.916083,0.667219,0.75647,0.0546851,0.494644,0.20417,0.0257171,0.869785,0.0303128,0.246463,0.240614,0.504049,0.890052,0.775311,0.174641,0.523199,0.882594,0.379531,0.11168,0.362279,0.349321,0.298962,0.173466,0.16587,0.873535,0.578343,0.00472182,0.829698,0.288121,0.0735358,0.297389,0.896718,0.305883,0.0832024,0.819954,0.133366,0.751373,0.957893,0.676816,0.338569,0.388552,0.904801,0.0816521,0.250643,0.387392,0.782676,0.781902,|0.217737,0.314653,0.37922,0.466437,0.203348,0.747097,0.121499,0.0530564,0.63746,0.261601,0.602653,0.265445,0.720689,0.55888,0.658484,0.643859,0.24433,0.9198,0.451311,0.735281,0.612964,0.612355,0.829574,0.159468,0.451724,0.612276,0.869664,0.550144,0.191117,0.994649,0.910287,0.0267442,0.626415,0.780402,0.991633,0.303738,0.65263,0.154831,0.273788,0.110305,0.777967,0.648876,0.164482,0.906811,0.801762,0.777835,0.672244,0.296433,0.745323,0.376765,0.141922,0.419118,0.695048,0.92519,0.331799,0.026,0.438911,0.545439,0.174105,0.433623,0.220279,0.154699,0.719339,0.447427,0.912869,0.808802,0.22026,0.41975,0.111515,0.90531,0.334105,0.417136,0.310637,0.535617,0.754443,0.0102701,0.999571,0.41398,0.390098,0.578364,0.888788,0.135149,0.736902,0.924062,0.178351,0.189577,0.856008,0.622452,0.475019,0.688562,0.379266,0.0495237,0.0802369,0.053107,0.276664,0.675138,0.0277165,0.297978,0.805688,0.968423,0.429461,0.712973,0.876779,0.921293,0.890471,0.870494,0.162215,0.159781,0.941547,0.677415,0.0677003,0.0916124,0.396624,0.666375,0.180818,0.447951,0.662635,0.0800849,0.476165,0.641354,0.570018,0.566372,0.400236,0.504751,0.794658,0.899731,0.346047,0.932309,0.500511,0.082884,0.778436,0.0914212,0.234456,0.418987,0.281549,0.719543,0.462607,0.488816,0.213438,0.302295,0.162554,0.326984,0.920477,0.671625,0.637669,0.990733,0.740211,0.792299,0.344569,0.423217,0.553338,0.0991984,0.351099,0.933126,0.921522,0.209234,0.2829,0.0874475,0.193021,0.950695,0.100236,0.0494807,0.864058,0.118115,0.907902,0.55727,0.0246253,0.94949,0.838356,0.694965,0.645161,0.832552,0.425015,0.285057,0.960818,0.384495,0.402608,0.176085,0.712381,0.687862,0.158642,0.362437,0.891032,0.814455,0.684183,0.656043,0.804733,0.93434,0.705329,0.754249,0.390853,0.776633,0.83272,0.694231,0.326977,0.28143,0.120669,0.881109,0.579713,0.65584,0.161892,0.57533,0.494751,0.424891,0.793295,0.0424073,0.329882,0.749939,0.630837,0.131269,0.609273,0.0866366,0.0621122,0.0295315,0.399768,0.1772,0.50971,0.831543,0.102515,0.986614,0.457956,0.942625,0.572568,0.962686,0.842523,0.295852,0.420719,0.329467,0.0955914,0.522838,0.955736,0.376368,0.163042,0.033619,0.541458,0.292082,0.871089,0.867204,0.39427,0.355179,0.623493,0.140849,0.816617,0.931949,0.457355,0.509694,0.395922,0.0477195,0.13181,0.183549,0.813149,0.217394,0.662042,0.0371324,0.615498,0.00744551,0.705481,0.0225048,0.815899,0.137265,0.555724,0.590831,0.289417,0.442944,0.883672,0.482193,0.228301,0.271348,0.0554574,0.299815,0.222618,0.628109,0.181125,0.65804,0.575234,0.396205,0.290531,0.834332,0.224361,0.859192,0.0454378,0.454134,0.830624,0.649767,0.0183296,0.696081,0.797224,0.796819,0.931948,0.41464,0.692825,0.664734,0.0615359,0.125395,0.980749,0.118206,0.998128,0.79364,0.232506,0.467228,0.847802,0.996658,0.680031,0.724783,0.576837,0.245497,0.846207,0.489924,0.698442,0.855392,0.251011,0.286522,0.0376161,0.608644,0.898119,0.935728,0.0866723,0.850689,0.0614746,0.257842,0.773441,0.555136,0.85505,0.0713277,0.491475,0.289865,0.22269,0.0717408,0.213458,0.839317,0.199367,0.619218,0.137397,0.190149,0.205441,0.778346,0.696541,0.324846,0.185444,0.203925,0.249484,0.319873,0.278772,0.859857,0.105405,0.75517,0.970792,0.406008,0.607792,0.0266917,0.982501,0.143122,0.72955,0.181947,0.196045,0.513737,0.319816,0.666541,0.252936,0.460058,0.82786,0.0386609,0.974535,0.820251,0.0940226,0.485775,0.993685,0.0718417,0.918637,0.666686,0.0469253,0.783493,0.0430706,0.203322,0.378501,0.975546,0.978221,0.290359,0.482067,0.749679,0.133395,0.476207,0.0163382,0.206155,0.452793,0.770913,0.111152,0.315476,0.338293,0.424966,0.19614,0.602543,0.00951558,0.901807,0.443432,0.681981,0.068837,0.0759913,0.435607,0.924182,0.885051,0.864134,0.640677,0.371292,0.838767,0.624601,0.922008,0.364336,0.631518,0.673029,0.590813,0.369779,0.21094,0.442696,0.156687,0.444417,0.834231,0.653604,0.826,0.380632,0.175889,0.866736,0.39568,0.491893,0.585466,0.220823,0.951384,0.847986,0.985965,0.993582,0.659183,0.790749,0.557592,0.151452,0.542563,0.684778,0.102004,0.619777,0.783438,0.216219,0.979156,0.970104,0.477199,0.000899255,0.421028,0.906687,0.927616,0.382562,0.54162,0.535446,0.584794,0.454224,0.531116,0.272977,0.503659,0.841799,0.0932149,0.379779,0.746687,0.476042,0.686215,0.32148,0.21002,0.459988,0.49996,0.948138,0.193777,0.122009,0.905661,0.746638,0.977663,0.669786,0.239767,0.330583,0.979896,0.240821,0.508673,0.352815,0.0805653,0.0108999,0.0740052,0.456139,0.641018,0.00632954,0.884702,0.0712843,0.911348,0.00843328,0.876972,0.47843,0.67861,0.0639014,0.063027,0.120192,0.385633,0.0704696,0.271216,0.752653,0.620668,0.136175,0.0495348,0.396433,0.578402,0.200674,0.0176538,0.0678658,0.902114,0.382995,0.63368,0.509029,0.684897,0.201982,0.195108,0.877082,0.68319,0.788852,0.934858,0.229146,0.728689,0.708823,0.14758,0.0965406,0.65257,0.609581,0.552247,0.451301,0.642946,0.0236526,0.209635,0.121894,0.628866,0.579971,0.354889,0.751868,0.233975,0.130883,0.431304,0.527351,0.293338,0.829889,0.398107,0.386178,0.453244,0.0654705,0.959293,0.342672,0.374705,0.58948,0.331865,0.846109,0.791792,0.671507,0.465014,0.691376,0.676215,0.906133,0.784066,0.0812075,0.068072,0.276834,0.211186,0.790591,0.138646,0.161205,0.821726,0.821618,0.747847,0.770714,0.890611,0.232111,0.755978,0.0671562,0.497487,0.662621,0.145,0.691977,0.317242,0.314076,0.338316,0.933115,0.884709,0.0361995,0.772969,0.929573,0.792758,0.224712,0.458672,0.0232671,0.749921,0.624181,0.675175,0.456795,0.0497583,0.413081,0.804834,0.323148,0.183047,0.532818,0.809873,0.956093,0.537037,0.584903,0.459112,0.729977,0.230904,0.616648,0.776381,0.0156059,0.213664,0.164056,0.0694252,0.0571623,0.135784,0.0650942,0.307364,0.38598,0.875659,0.0897301,0.281788,0.066101,0.242733,0.0164873,0.153338,0.0837425,0.539885,0.219225,0.102294,0.324791,0.0785224,0.191018,0.446818,0.567342,0.0333914,0.198136,0.533202,0.592529,0.611489,0.124284,0.99044,0.526551,0.9524,0.110766,0.36298,0.352224,0.169478,0.642584,0.135553,0.674961,0.758608,0.050877,0.181907,0.792877,0.735571,0.472539,0.574064,0.660036,0.478123,0.937314,0.898674,0.714829,0.279033,0.0481966,0.0105172,0.43501,0.0586126,0.736902,0.404562,0.119727,0.135868,0.372242,0.448911,0.627932,0.6337,0.0628148,0.668701,0.990001,0.558114,0.699218,0.863254,0.464124,0.571161,0.620026,0.556268,0.495032,0.873447,0.240005,0.0137953,0.631109,0.605427,0.780487,0.612812,0.0366028,0.423803,0.947679,0.8135,0.399551,0.559464,0.606226,0.0766767,0.753938,0.130772,0.838551,0.509717,0.315987,0.746038,0.17357,0.33818,0.009893,0.689058,0.970752,0.551863,0.282701,0.0140193,0.0881204,0.536322,0.35106,0.830289,0.532458,0.226935,0.159314,0.330213,0.0795801,0.733905,0.717513,0.0784246,0.0612031,0.547798,0.543378,0.842989,0.11446,0.140952,0.694776,0.637949,0.671948,0.791678,0.303357,0.645504,0.493051,0.881703,0.401997,0.812355,0.920793,0.863391,0.800474,0.155778,0.418625,0.267448,0.936612,0.529877,0.936827,0.801778,0.301274,0.248939,0.179608,0.912052,0.135762,0.962032,0.0709346,0.211839,0.24823,0.102346,0.749245,0.309258,0.18483,0.839182,0.872197,0.810954,0.328614,0.241199,0.678615,0.172899,0.842997,0.0250033,0.928564,0.902427,0.637009,0.55789,0.743811,0.55595,0.54216,0.696849,0.0827254,0.361529,0.0368239,0.431009,0.965892,0.822667,0.757382,0.993461,0.538321,0.6784,0.852996,0.915699,0.83976,0.81686,0.514697,0.101896,0.390536,0.536668,0.444931,0.33628,0.822299,0.641883,0.117778,0.947065,0.600765,0.693215,0.6901,0.766722,0.994659,0.628249,0.426772,0.376049,0.731699,0.421505,0.636566,0.619356,0.127676,0.0537825,0.208506,0.771275,0.518776,0.538411,0.306308,0.478262,0.666535,0.0810581,0.280053,0.928018,0.402724,0.816915,0.576334,0.980824,0.564743,0.63442,0.319232,0.248126,0.43177,0.657188,0.4957,0.684597,0.0687542,0.12058,0.996685,0.680991,0.956321,0.439473,0.299627,0.212108,0.580527,0.242342,0.851048,0.335708,0.752458,0.708469,0.935507,0.111986,0.435979,0.928783,0.932128,0.994182,0.59713,0.644445,0.685646,0.679364,0.321411,0.615118,0.438151,0.080888,0.633613,0.147637,0.753267,0.404322,0.165789,0.876259,0.222601,0.538632,0.152175,0.587642,0.149044,0.38331,0.619712,0.258667,0.519719,0.898236,0.460516,0.0183541,0.506612,0.186924,0.117438,0.498177,0.346502,0.903538,0.87183,0.898835,0.658531,0.0473757,0.08917,0.136712,0.0135481,0.0576839,0.617359,0.000514865,0.363556,0.467735,0.850167,0.0514659,0.322486,0.334737,0.489966,0.487519,0.320491,0.453453,0.752312,0.432705,0.27663,0.378721,0.434095,0.0959989,0.170412,0.808721,0.0988407,0.00223356,0.0589434,0.150717,0.588625,0.568466,0.674656,0.3684,0.334815,0.094243,0.627272,0.69608,0.52397,0.201848,0.211415,0.487422,0.218105,0.531341,0.0235344,0.87147,0.977304,0.860435,0.517223,0.452707,0.215238,0.215421,0.805118,0.116197,0.317191,0.367763,0.631408,0.0193635,0.266807,0.480941,0.534935,0.946887,0.389438,0.971275,0.886913,0.715787,0.970818,0.929038,0.487994,0.568203,0.473739,0.296308,0.642751,0.793994,0.0944944,0.275818,0.0979846,0.963069,0.62838,0.675876,0.964849,0.5708,0.050448,0.00865364,0.0467823,0.295072,0.635902,0.474036,0.985187,0.103076,0.542569,0.673185,0.977801,0.149852,0.5247,0.612504,0.260343,0.15908,0.659124,0.945582,0.994991,0.768095,0.902962,0.766747,0.655275,|0.614331,0.456956,0.916284,0.163213,0.964103,0.845223,0.736468,0.631864,0.28974,0.947009,0.400433,0.116761,0.646082,0.422164,0.0877306,0.920268,0.174163,0.76507,0.751973,0.107672,0.328882,0.0677026,0.171553,0.537823,0.850626,0.298649,0.632257,0.81428,0.173714,0.852105,0.781422,0.919406,0.521451,0.0166789,0.00549716,0.535691,0.518233,0.389035,0.806782,0.751731,0.379959,0.843571,0.61025,0.48439,0.862109,0.162251,0.869574,0.592272,0.0631672,0.344649,0.862364,0.233967,0.789039,0.0444635,0.367759,0.914297,0.908264,0.813445,0.46959,0.691926,0.322997,0.281878,0.25302,0.431122,0.276588,0.321988,0.355529,0.0165973,0.0163822,0.550368,0.581506,0.948925,0.769566,0.80564,0.715794,0.437649,0.57679,0.649627,0.0202807,0.268571,0.0999172,0.623986,0.903258,0.830531,0.441563,0.175201,0.141246,0.376919,0.0896537,0.678253,0.448053,0.0138999,0.276326,0.694452,0.325633,0.249787,0.493025,0.0163516,0.496806,0.672985,0.362581,0.0894864,0.198293,0.859937,0.840222,0.394073,0.0997404,0.991508,0.0119625,0.0764508,0.509864,0.227312,0.241398,0.463155,0.832922,0.185528,0.547587,0.137352,0.981783,0.174288,0.0650372,0.658761,0.0595323,0.7708,0.380347,0.869318,0.957124,0.688695,0.427268,0.230929,0.964166,0.147627,0.953372,0.723583,0.43211,0.373764,0.0816197,0.379892,0.799948,0.475618,0.586455,0.563607,0.459991,0.281385,0.0953972,0.0502859,0.7783,0.87548,0.242651,0.472747,0.872145,0.594161,0.96174,0.186471,0.173982,0.777404,0.252027,0.448851,0.584547,0.0274899,0.572072,0.965576,0.195663,0.540527,0.793628,0.575236,0.522899,0.765498,0.660223,0.348369,0.254522,0.0367488,0.717448,0.0815148,0.696225,0.768966,0.957958,0.356043,0.592117,0.842243,0.785245,0.903058,0.484011,0.492789,0.591274,0.341669,0.759062,0.239977,0.917244,0.0706463,0.597564,0.914138,0.550001,0.111746,0.353848,0.919488,0.364976,0.301647,0.0162095,0.20054,0.73084,0.552176,0.863707,0.206701,0.609214,0.946817,0.835385,0.970114,0.718917,0.247626,0.550048,0.249949,0.822325,0.745171,0.229351,0.544608,0.774123,0.491387,0.972411,0.166712,0.427952,0.584355,0.208469,0.660949,0.4728,0.944949,0.453511,0.175763,0.289552,0.517359,0.955152,0.330914,0.935419,0.758805,0.000131309,0.72336,0.900179,0.624905,0.429824,0.193359,0.334747,0.823022,0.850686,0.377994,0.181208,0.679293,0.577318,0.834126,0.362062,0.70341,0.489807,0.790762,0.308472,0.345514,0.240665,0.745975,0.992985,0.507501,0.458317,0.565362,0.114055,0.161616,0.986439,0.808443,0.824392,0.464348,0.245435,0.918716,0.234619,0.952682,0.53944,0.807905,0.603827,0.119929,0.126774,0.759357,0.377239,0.762679,0.237079,0.141769,0.650101,0.966588,0.484725,0.283254,0.0822448,0.645791,0.706316,0.0238065,0.0969187,0.77029,0.207384,0.87647,0.233486,0.592142,0.575721,0.295506,0.0877501,0.167564,0.37781,0.479854,0.776002,0.148708,0.531563,0.597601,0.333504,0.857808,0.904654,0.747337,0.0743436,0.581428,0.363742,0.251569,0.250733,0.133467,0.679417,0.613894,0.850643,0.492578,0.760532,0.747555,0.629393,0.702534,0.292076,0.546082,0.112966,0.468175,0.477517,0.794956,0.206218,0.375224,0.87559,0.614354,0.752142,0.996587,0.310842,0.386088,0.372501,0.408309,0.464086,0.806146,0.652228,0.259789,0.583742,0.760096,0.529543,0.634766,0.428263,0.542622,0.656607,0.593486,0.899254,0.734567,0.318514,0.614483,0.483791,0.43902,0.25833,0.256808,0.334384,0.23305,0.372322,0.93063,0.354946,0.253427,0.692534,0.954035,0.776381,0.911538,0.194929,0.581918,0.341171,0.608438,0.928029,0.445592,0.411413,0.535349,0.554992,0.488622,0.878295,0.624293,0.508199,0.0515944,0.803991,0.387544,0.7134,0.125323,0.11709,0.466203,0.75567,0.144177,0.394578,0.302634,0.813696,0.904336,0.733821,0.0355018,0.192714,0.713104,0.375989,0.243276,0.345642,0.887343,0.101584,0.618175,0.331935,0.569748,0.936738,0.624577,0.788087,0.984621,0.998311,0.137758,0.165822,0.100486,0.44769,0.339587,0.876037,0.688015,0.557092,0.434359,0.914392,0.28354,0.769122,0.286543,0.617684,0.668754,0.85127,0.0402745,0.955083,0.974142,0.758783,0.480378,0.155559,0.607024,0.848386,0.729007,0.1719,0.189746,0.619204,0.577995,0.448798,0.966809,0.107239,0.396598,0.341592,0.730576,0.39294,0.340972,0.697188,0.742795,0.981002,0.231535,0.0869178,0.953228,0.508765,0.4561,0.790273,0.368673,0.450622,0.522899,0.293368,0.9294,0.368026,0.527971,0.578408,0.950257,0.470325,0.0636289,0.779427,0.583179,0.353464,0.33349,0.219132,0.241787,0.180517,0.125796,0.514466,0.691418,0.960984,0.131767,0.452911,0.33675,0.729182,0.84786,0.212868,0.980353,0.906667,0.922511,0.616072,0.643555,0.24046,0.415208,0.472455,0.87133,0.657476,0.48906,0.0150179,0.209065,0.17244,0.383281,0.975839,0.753537,0.911688,0.937841,0.492511,0.0825213,0.080341,0.270151,0.315112,0.559714,0.167199,0.615902,0.0416255,0.156279,0.0973918,0.736288,0.627566,0.64149,0.464905,0.38999,0.693498,0.74264,0.413062,0.767865,0.684562,0.469083,0.98876,0.635355,0.557297,0.491084,0.616136,0.596395,0.37063,0.177468,0.823473,0.83239,0.559347,0.992971,0.0792914,0.413095,0.969326,0.526599,0.947614,0.890981,0.220705,0.0307784,0.804723,0.0878259,0.439328,0.773532,0.354331,0.722917,0.615865,0.719851,0.489345,0.168229,0.475719,0.862393,0.553282,0.691173,0.118375,0.803994,0.0160605,0.909567,0.585691,0.752394,0.298825,0.171677,0.752014,0.108941,0.56955,0.591059,0.707055,0.348912,0.130835,0.984948,0.112799,0.858584,0.0170396,0.880386,0.300567,0.155651,0.0976396,0.785063,0.843329,0.0764912,0.215771,0.921717,0.660779,0.991275,0.49089,0.198789,0.0814449,0.347164,0.454897,0.224096,0.217438,0.0964097,0.401897,0.608999,0.471183,0.376199,0.495839,0.89571,0.896257,0.204268,0.027952,0.824521,0.306894,0.832046,0.75701,0.91546,0.417331,0.00920272,0.822271,0.829476,0.0644619,0.891086,0.541642,0.844518,0.65013,0.528395,0.944855,0.116689,0.114152,0.92356,0.567792,0.509278,0.968655,0.255687,0.934452,0.0093084,0.271801,0.197744,0.945308,0.658279,0.880529,0.59331,0.31983,0.20311,0.828999,0.431785,0.161236,0.11144,0.0995731,0.768486,0.837386,0.115281,0.372415,0.830152,0.965556,0.62456,0.61671,0.18509,0.318195,0.499714,0.284507,0.113724,0.497563,0.668018,0.720215,0.855461,0.854161,0.991528,0.550926,0.253993,0.096566,0.799747,0.268258,0.254518,0.858768,0.0608403,0.317995,0.706349,0.403886,0.929142,0.230938,0.0998279,0.0873719,0.0138025,0.444351,0.0535207,0.811696,0.356281,0.735799,0.0691526,0.723945,0.500197,0.252043,0.975249,0.661942,0.711012,0.725827,0.533224,0.605658,0.339839,0.948319,0.701726,0.344554,0.436342,0.7289,0.899419,0.378195,0.87767,0.503715,0.846162,0.0350265,0.291478,0.306515,0.893736,0.425854,0.42182,0.978302,0.410842,0.180756,0.667967,0.0429103,0.708118,0.800514,0.719527,0.748943,0.0750012,0.0573586,0.568044,0.622343,0.376467,0.0289778,0.413599,0.0247233,0.985763,0.738009,0.201633,0.433487,0.536439,0.511886,0.949424,0.84016,0.469875,0.238234,0.103584,0.37981,0.455989,0.0531259,0.808613,0.647401,0.417513,0.246181,0.416963,0.586537,0.344863,0.608097,0.121647,0.439347,0.646997,0.851655,0.713734,0.626618,0.178396,0.1655,0.175763,0.025479,0.435648,0.37737,0.379189,0.909102,0.779626,0.460079,0.0707836,0.76031,0.651059,0.700995,0.962676,0.84539,0.589501,0.670132,0.324592,0.666055,0.97046,0.671908,0.224503,0.885941,0.111129,0.552856,0.454327,0.0207636,0.291834,0.0226099,0.392517,0.555655,0.305992,0.330194,0.222511,0.985809,0.21634,0.125693,0.0147541,0.953909,0.558631,0.449176,0.937945,0.39667,0.706488,0.0660139,0.227751,0.858126,0.686665,0.864985,0.481206,0.910447,0.526675,0.941664,0.956288,0.131598,0.609518,0.320713,0.250971,0.607916,0.0442705,0.865139,0.353169,0.654246,0.0654417,0.821587,0.611184,0.0762368,0.683876,0.741371,0.275838,0.063228,0.779158,0.0252389,0.262589,0.735666,0.697637,0.0573228,0.488494,0.0755631,0.487455,0.494428,0.911131,0.292027,0.0416849,0.160986,0.696838,0.85623,0.0693164,0.583569,0.0852137,0.817762,0.441914,0.393337,0.61223,0.755798,0.330439,0.527996,0.901846,0.119123,0.174226,0.120084,0.283647,0.0519757,0.488732,0.26142,0.364296,0.40482,0.165785,0.99803,0.655437,0.866891,0.106367,0.259169,0.489128,0.533297,0.224267,0.721375,0.300029,0.0115174,0.818326,0.902181,0.0952926,0.773907,0.237927,0.883289,0.669742,0.622191,0.913369,0.355511,0.783944,0.544164,0.497336,0.441983,0.0317535,0.12206,0.130153,0.715337,0.663079,0.365222,0.0799049,0.280701,0.970241,0.686694,0.0792246,0.0197684,0.263314,0.468981,0.778079,0.082795,0.667881,0.159561,0.218,0.0990584,0.200562,0.284897,0.67365,0.689397,0.951169,0.996137,0.0257768,0.851958,0.795407,0.110545,0.586712,0.0478385,0.707749,0.218676,0.543149,0.402368,0.576872,0.633411,0.360918,0.554322,0.950361,0.255704,0.0516648,0.639121,0.683296,0.0316239,0.493334,0.894564,0.704194,0.728575,0.118277,0.142047,0.937084,0.308048,0.753634,0.594043,0.136997,0.839017,0.798494,0.935516,0.549452,0.715617,0.87337,0.388988,0.769743,0.329201,0.369467,0.840946,0.101078,0.210484,0.544864,0.403657,0.35968,0.891023,0.573552,0.561121,0.319591,0.271402,0.114154,0.652281,0.980889,0.941742,0.467926,0.466048,0.781494,0.176313,0.865168,0.45896,0.306866,0.634609,0.17907,0.484311,0.487496,0.0367416,0.0565038,0.386958,0.424409,0.414317,0.200897,0.250572,0.0156569,0.715824,0.199299,0.225579,0.118504,0.259775,0.206955,0.803562,0.460263,|0.215263,0.399422,0.158698,0.437392,0.914962,0.120283,0.751454,0.683192,0.293342,0.294957,0.587869,0.96872,0.468096,0.68214,0.986429,0.597921,0.256024,0.681863,0.456432,0.305526,0.441431,0.857303,0.389979,0.966281,0.169481,0.585596,0.0736905,0.900179,0.0780382,0.000644147,0.512519,0.0608121,0.422288,0.211725,0.835159,0.633572,0.444173,0.363068,0.306632,0.188697,0.791825,0.554745,0.0938933,0.380697,0.40284,0.983678,0.587022,0.969484,0.654051,0.397231,0.371883,0.856435,0.363018,0.577751,0.377356,0.034545,0.0394681,0.48291,0.341887,0.944468,0.217294,0.919797,0.905278,0.600601,0.800595,0.594391,0.376637,0.927256,0.352031,0.0122743,0.0780579,0.495956,0.217034,0.802368,0.0506638,0.0191332,0.446485,0.833052,0.239511,0.170584,0.458514,0.374556,0.100459,0.308405,0.0361131,0.0133026,0.277179,0.296021,0.287904,0.383471,0.74288,0.496444,0.584519,0.82109,0.363181,0.997591,0.707864,0.841613,0.5428,0.0543147,0.480388,0.865783,0.0787626,0.883869,0.25982,0.0204237,0.516104,0.757646,0.126427,0.854791,0.292622,0.51209,0.379318,0.352905,0.0274395,0.7677,0.787855,0.808897,0.55294,0.617673,0.342343,0.184622,0.0671167,0.808833,0.957629,0.405544,0.110809,0.0758746,0.0180896,0.935068,0.136413,0.208725,0.914931,0.273709,0.883932,0.563318,0.273887,0.314501,0.832406,0.860333,0.900186,0.464866,0.325004,0.945962,0.304093,0.953394,0.493047,0.292092,0.610238,0.243891,0.557096,0.123059,0.981456,0.211095,0.984269,0.873156,0.428389,0.495865,0.906589,0.242523,0.323673,0.213952,0.819986,0.715504,0.597176,0.663878,0.898219,0.305565,0.664779,0.743975,0.444181,0.317253,0.738511,0.722748,0.959898,0.124672,0.973554,0.924271,0.132623,0.735636,0.603419,0.955333,0.380279,0.227198,0.787566,0.15088,0.600173,0.742146,0.915377,0.0119643,0.839348,0.793329,0.406915,0.60588,0.992221,0.042803,0.0282366,0.861129,0.591057,0.0116979,0.20662,0.993179,0.327172,0.169484,0.565802,0.39591,0.0743213,0.545919,0.542617,0.615576,0.320113,0.993495,0.393148,0.927404,0.280271,0.327694,0.927317,0.328426,0.600384,0.772631,0.403471,0.903452,0.887804,0.11762,0.564178,0.245085,0.0708933,0.892989,0.748825,0.00451565,0.263791,0.0942363,0.420781,0.699956,0.96929,0.476479,0.977848,0.0131279,0.782426,0.164937,0.278361,0.859477,0.918813,0.0771521,0.715874,0.581935,0.816873,0.879364,0.448417,0.341913,0.439337,0.449037,0.263167,0.0785905,0.408754,0.604499,0.735256,0.727561,0.619023,0.116999,0.4156,0.275431,0.489704,0.702291,0.940703,0.410635,0.162644,0.427246,0.907318,0.945021,0.364402,0.656991,0.865812,0.798449,0.282978,0.963728,0.350219,0.0834268,0.143194,0.0716398,0.667484,0.441971,0.588127,0.657767,0.159435,0.210715,0.0600783,0.820363,0.774026,0.504059,0.732906,0.0527478,0.288187,0.811202,0.0263296,0.800803,0.186826,0.497975,0.906852,0.511949,0.787081,0.913422,0.239178,0.569322,0.0526308,0.136706,0.722728,0.54111,0.531177,0.758785,0.229127,0.619164,0.98166,0.704693,0.633218,0.804939,0.57372,0.45447,0.847789,0.149053,0.543833,0.923283,0.693443,0.046829,0.29177,0.233007,0.612823,0.42582,0.640777,0.465176,0.49721,0.164294,0.851399,0.47326,0.140146,0.498087,0.709459,0.183642,0.497805,0.542076,0.231673,0.512734,0.619726,0.736816,0.389643,0.304788,0.380529,0.637995,0.0654261,0.947979,0.160593,0.118823,0.548612,0.763993,0.567229,0.0832425,0.0734798,0.8582,0.257245,0.531266,0.849965,0.187366,0.760444,0.0300813,0.389242,0.687368,0.985937,0.543059,0.180277,0.655009,0.33477,0.39261,0.220443,0.157276,0.741202,0.780212,0.630215,0.960269,0.456921,0.179043,0.129357,0.465814,0.0307633,0.180152,0.0184865,0.226907,0.401066,0.232983,0.264791,0.38911,0.772394,0.231076,0.00770801,0.988345,0.568138,0.781439,0.769171,0.447002,0.784009,0.573668,0.379494,0.0401235,0.758732,0.920893,0.788432,0.313697,0.964427,0.924233,0.99378,0.332942,0.774309,0.10527,0.547283,0.0593166,0.694426,0.890161,0.544551,0.252728,0.158381,0.613562,0.659908,0.0267597,0.335824,0.93587,0.848453,0.910178,0.295581,0.514549,0.50374,0.988139,0.164367,0.550045,0.546743,0.0990683,0.876179,0.559693,0.420572,0.309532,0.784014,0.371143,0.716049,0.0893636,0.498521,0.993646,0.634012,0.287446,0.921452,0.488028,0.258768,0.628398,0.725653,0.652628,0.159562,0.455016,0.971919,0.413854,0.0446286,0.248899,0.609107,0.556773,0.908615,0.846989,0.0680564,0.820934,0.57362,0.291234,0.628252,0.788743,0.239628,0.773784,0.613748,0.345698,0.850336,0.289825,0.624118,0.599483,0.71199,0.126391,0.483869,0.960977,0.813204,0.962494,0.686027,0.89178,0.256402,0.371573,0.415029,0.559453,0.7975,0.542588,0.356052,0.572112,0.799497,0.648351,0.125467,0.165274,0.287669,0.574494,0.0283119,0.541048,0.809116,0.21204,0.264456,0.153856,0.351961,0.936473,0.822902,0.174649,0.277091,0.675992,0.213787,0.975197,0.479436,0.375389,0.711851,0.956461,0.616316,0.258811,0.609074,0.316355,0.470908,0.601473,0.712019,0.430821,0.696961,0.94959,0.745043,0.528539,0.29925,0.399168,0.00902933,0.501865,0.204571,0.574008,0.22396,0.957644,0.315484,0.800227,0.424438,0.45299,0.75091,0.0171933,0.169643,0.991847,0.105978,0.66567,0.290464,0.141258,0.688995,0.37037,0.901021,0.196765,0.428156,0.309433,0.638904,0.803026,0.837483,0.149711,0.725477,0.858607,0.219751,0.689392,0.0580438,0.320784,0.714738,0.540177,0.595527,0.200943,0.214255,0.146086,0.096824,0.449782,0.412732,0.170975,0.220707,0.510499,0.333294,0.867508,0.00702119,0.549309,0.653841,0.370808,0.672956,0.988061,0.54492,0.892599,0.0733095,0.507105,0.18496,0.270348,0.299293,0.8004,0.674676,0.0474516,0.272519,0.508728,0.0531968,0.813491,0.0635214,0.366882,0.816332,0.782194,0.693672,0.158251,0.05152,0.198954,0.806491,0.839707,0.244768,0.727643,0.541582,0.835204,0.688182,0.657794,0.14047,0.871686,0.704827,0.8785,0.609221,0.445524,0.788242,0.476722,0.468897,0.737987,0.041293,0.922387,0.621772,0.139527,0.947986,0.378046,0.387572,0.963303,0.353751,0.305381,0.194196,0.653929,0.647107,0.401385,0.0610224,0.0161859,0.374337,0.302429,0.818742,0.420783,0.260758,0.559095,0.401697,0.622406,0.543513,0.498429,0.0411889,0.698462,0.211929,0.703042,0.671525,0.476645,0.765111,0.00758767,0.0296184,0.165858,0.949335,0.479968,0.373741,0.734019,0.155687,0.549004,0.481975,0.349934,0.80634,0.838225,0.282627,0.1438,0.689033,0.41342,0.456197,0.853248,0.702065,0.932377,0.801442,0.278275,0.542804,0.449197,0.878841,0.353128,0.383924,0.885323,0.564567,0.892577,0.446724,0.974937,0.805555,0.850715,0.994444,0.306169,0.692965,0.936821,0.986079,0.814017,0.124247,0.488918,0.303266,0.0235205,0.213557,0.832815,0.975432,0.64161,0.49489,0.818573,0.857039,0.108868,0.219631,0.733814,0.785256,0.957937,0.229207,0.725696,0.998167,0.94183,0.77867,0.661893,0.978736,0.134073,0.0104807,0.581548,0.692292,0.568531,0.935182,0.980897,0.725959,0.431204,0.535731,0.210427,0.392062,0.882553,0.282021,0.935487,0.085295,0.931405,0.0359558,0.478532,0.152438,0.486639,0.120558,0.790744,0.804651,0.641399,0.486287,0.862236,0.839132,0.121577,0.374213,0.0182517,0.94331,0.858339,0.674074,0.259671,0.133564,0.856159,0.81872,0.235742,0.781029,0.0296703,0.365095,0.586657,0.393243,0.863295,0.973823,0.855675,0.0275781,0.966086,0.6296,0.604975,0.766353,0.949349,0.285756,0.294241,0.684883,0.869131,0.985912,0.681495,0.708228,0.00137472,0.198599,0.0303535,0.215616,0.675138,0.686272,0.461599,0.437405,0.870308,0.830176,0.182137,0.830816,0.670606,0.73824,0.331547,0.346823,0.0155938,0.174202,0.802523,0.859364,0.833669,0.998177,0.365529,0.573051,0.244186,0.0482193,0.563395,0.35839,0.663249,0.602331,0.283068,0.486802,0.949724,0.604408,0.52353,0.268033,0.281909,0.0421848,0.163865,0.519077,0.0523974,0.825025,0.476596,0.345395,0.532684,0.699207,0.953022,0.382737,0.528069,0.789347,0.293438,0.113865,0.895377,0.884442,0.357085,0.314352,0.543543,0.259056,0.690997,0.13047,0.892771,0.145537,0.310552,0.491444,0.239552,0.648404,0.807824,0.651948,0.930987,0.408719,0.464059,0.324001,0.60658,0.51512,0.161681,0.360665,0.299425,0.609586,0.545886,0.430052,0.0520852,0.977935,0.328182,0.269971,0.473879,0.975443,0.322812,0.27031,0.504376,0.745806,0.198769,0.618782,0.788679,0.697685,0.755558,0.325812,0.199474,0.441223,0.891367,0.803883,0.501182,0.245676,0.454233,0.133882,0.553557,0.841518,0.480398,0.0708248,0.771762,0.936073,0.438995,0.794326,0.337561,0.0241909,0.866572,0.727925,0.580953,0.927295,0.748696,0.221354,0.922929,0.333472,0.537409,0.789608,0.322885,0.809555,0.0568443,0.528385,0.894596,0.36353,0.0790091,0.864424,0.236637,0.62229,0.229301,0.893446,0.16697,0.619964,0.458949,0.395355,0.790151,0.377772,0.00179744,0.274248,0.030333,0.587312,0.923474,0.502574,0.908429,0.159779,0.555211,0.886861,0.232297,0.719715,0.606875,0.136588,0.35196,0.543157,0.353972,0.039957,0.323559,0.280302,0.372683,0.938843,0.158475,0.29747,0.892065,0.963831,0.316061,0.246755,0.859817,0.61911,0.62959,0.707771,0.798965,0.171191,0.239429,0.0705525,0.604468,0.298638,0.969117,0.780399,0.29966,0.518085,0.300514,0.00383329,0.876452,0.690248,0.148963,0.890001,0.396512,0.812171,0.273198,0.474701,0.793391,0.395933,0.247087,0.145884,0.167096,0.219864,0.576122,0.704189,0.207944,0.767245,0.103734,0.718365,0.71899,0.600194,0.839043,0.207443,0.859688,0.997584,0.743412,0.71408,0.631443,0.48069,0.414507,0.852412,0.0926952,|0.698588,0.80648,0.0424627,0.863789,0.0718476,0.95408,0.0969071,0.058022,0.350199,0.232585,0.545046,0.78195,0.550394,0.120357,0.326299,0.0789582,0.426786,0.466827,0.679735,0.514556,0.32005,0.989051,0.204681,0.394307,0.0978687,0.373466,0.762429,0.823882,0.655707,0.34759,0.256001,0.910301,0.64614,0.411867,0.949861,0.734316,0.682671,0.800343,0.629698,0.0320726,0.2175,0.00122678,0.860254,0.146533,0.311689,0.46597,0.192157,0.911739,0.796102,0.40726,0.306324,0.535219,0.030568,0.919949,0.787093,0.915828,0.496622,0.0546918,0.231999,0.106932,0.277128,0.454293,0.353523,0.795791,0.897561,0.275747,0.0780122,0.195572,0.380017,0.0819723,0.911614,0.48928,0.464256,0.188067,0.163341,0.0350441,0.983283,0.459961,0.54774,0.129724,0.914515,0.755363,0.855595,0.123573,0.37328,0.087209,0.12997,0.818777,0.867356,0.564996,0.437666,0.149884,0.998988,0.603184,0.761287,0.481686,0.659633,0.321189,0.0953327,0.519406,0.0830119,0.64959,0.184875,0.586258,0.409054,0.860543,0.299153,0.740731,0.58499,0.165238,0.688144,0.11438,0.976448,0.958825,0.314291,0.411295,0.278799,0.46673,0.140055,0.928816,0.163432,0.984109,0.892668,0.0109153,0.0412895,0.427212,0.441594,0.724375,0.14929,0.909339,0.123701,0.217104,0.707666,0.450163,0.667272,0.399026,0.218367,0.0967395,0.439013,0.998973,0.424039,0.947608,0.478614,0.695458,0.563428,0.363797,0.263207,0.376501,0.64891,0.043438,0.402665,0.607218,0.258978,0.640456,0.846847,0.642545,0.116143,0.54746,0.148473,0.906915,0.135648,0.616849,0.934185,0.56853,0.119255,0.400417,0.067704,0.503282,0.845307,0.188994,0.40182,0.809409,0.952579,0.00895804,0.669225,0.112381,0.356661,0.508997,0.569868,0.996032,0.377473,0.850933,0.630664,0.387302,0.512444,0.686313,0.542231,0.706396,0.0379736,0.783586,0.200323,0.949423,0.967695,0.735442,0.693824,0.358695,0.531862,0.127121,0.806706,0.0563552,0.850647,0.451556,0.890798,0.116728,0.715533,0.0555282,0.472365,0.643763,0.912404,0.614251,0.311104,0.508888,0.577453,0.972462,0.965282,0.751336,0.266794,0.27148,0.216179,0.240903,0.983918,0.832741,0.572763,0.340268,0.841427,0.586432,0.981955,0.541851,0.583702,0.379416,0.689832,0.229402,0.190043,0.870878,0.0672927,0.107674,0.793286,0.155581,0.0334641,0.345419,0.991395,0.50006,0.461296,0.683109,0.295206,0.0493277,0.101134,0.828568,0.503092,0.412226,0.199225,0.414216,0.167007,0.231038,0.018402,0.386478,0.923322,0.502664,0.134075,0.709377,0.941509,0.952221,0.826048,0.306477,0.632525,0.686525,0.099351,0.271444,0.260854,0.632526,0.87211,0.321517,0.657395,0.951064,0.0740105,0.36735,0.87744,0.683309,0.8524,0.311452,0.800658,0.148295,0.626908,0.134399,0.365682,0.13853,0.799469,0.0193633,0.0785918,0.286291,0.537509,0.742614,0.851061,0.294891,0.550282,0.528604,0.428006,0.0717248,0.552695,0.734721,0.827353,0.154794,0.388056,0.352795,0.0218765,0.483229,0.456309,0.200682,0.932193,0.776227,0.391599,0.0348736,0.848705,0.70806,0.783411,0.307847,0.825616,0.765559,0.51811,0.913036,0.982604,0.38028,0.974453,0.685632,0.214194,0.698886,0.873302,0.265601,0.767584,0.617344,0.0346594,0.870669,0.531852,0.178763,0.654724,0.285051,0.768602,0.302391,0.187287,0.451177,0.476533,0.925221,0.569009,0.611061,0.458115,0.00765425,0.714913,0.930474,0.252977,0.694315,0.901482,0.244834,0.23527,0.24783,0.497351,0.797868,0.193195,0.99759,0.426555,0.278683,0.72901,0.611441,0.968392,0.963325,0.451158,0.459155,0.759521,0.0583882,0.916242,0.838661,0.880378,0.125057,0.340655,0.929157,0.376338,0.507075,0.893355,0.126967,0.0110449,0.991016,0.868496,0.562003,0.656092,0.63048,0.66227,0.982257,0.426407,0.263981,0.278465,0.80372,0.233059,0.301694,0.243122,0.65317,0.835377,0.754429,0.142632,0.768691,0.920028,0.598727,0.843911,0.957317,0.462429,0.177504,0.206432,0.36614,0.983484,0.943379,0.0499068,0.425423,0.777355,0.665212,0.606203,0.579834,0.224884,0.81701,0.105373,0.191891,0.393152,0.674942,0.243068,0.17689,0.150882,0.148533,0.385182,0.49486,0.673885,0.34376,0.253881,0.233854,0.197505,0.396895,0.668727,0.727708,0.11891,0.138125,0.110428,0.21538,0.401213,0.471846,0.992044,0.714691,0.167031,0.677005,0.534219,0.454631,0.548695,0.0823689,0.761921,0.119027,0.455043,0.994664,0.136969,0.0519547,0.120984,0.254933,0.753251,0.948441,0.362381,0.501255,0.454714,0.669838,0.563053,0.469263,0.502584,0.00880873,0.680983,0.210246,0.760598,0.995033,0.203188,0.126223,0.92164,0.797251,0.994328,0.672765,0.40189,0.680941,0.429897,0.714847,0.519618,0.676923,0.924144,0.501013,0.5599,0.675792,0.79629,0.487676,0.544507,0.0216956,0.978637,0.232592,0.57937,0.682178,0.603854,0.445299,0.711788,0.109694,0.689448,0.731325,0.817432,0.845637,0.211786,0.134409,0.537296,0.401024,0.510535,0.107139,0.644381,0.888258,0.092577,0.301413,0.458797,0.160362,0.506924,0.180881,0.459477,0.283064,0.496228,0.388761,0.385663,0.793506,0.805799,0.138165,0.205937,0.792484,0.525184,0.615717,0.260786,0.344985,0.44984,0.745799,0.89082,0.324974,0.29885,0.482508,0.711173,0.518792,0.0204564,0.379548,0.987908,0.366619,0.976967,0.114234,0.152134,0.360797,0.221946,0.291831,0.43652,0.0140718,0.14644,0.167044,0.838596,0.950293,0.238696,0.0606464,0.431221,0.118068,0.789386,0.44536,0.840584,0.271293,0.132664,0.597662,0.946559,0.0131525,0.864829,0.132019,0.0553706,0.720603,0.68145,0.454013,0.157696,0.0312948,0.144961,0.0607172,0.943251,0.216038,0.237462,0.169917,0.781548,0.68667,0.334845,0.0498615,0.862904,0.09447,0.576812,0.397114,0.558858,0.125295,0.563348,0.567021,0.351247,0.251764,0.499572,0.416982,0.101131,0.0944427,0.425603,0.497718,0.72299,0.176937,0.344608,0.781839,0.861875,0.0348716,0.214416,0.537674,0.480608,0.748923,0.390644,0.43009,0.402623,0.722713,0.31007,0.994342,0.601996,0.399378,0.821152,0.625135,0.439373,0.858095,0.569486,0.854656,0.667025,0.984441,0.0476411,0.100275,0.931939,0.844372,0.43708,0.936489,0.12156,0.433373,0.442136,0.689305,0.816965,0.0919467,0.760176,0.943261,0.394337,0.841309,0.504696,0.13976,0.21411,0.417589,0.576719,0.753087,0.82832,0.28025,0.668698,0.196598,0.679175,0.838782,0.361901,0.274597,0.104213,0.785764,0.611961,0.716438,0.724314,0.529339,0.30994,0.690299,0.755866,0.10222,0.653132,0.671737,0.10085,0.24113,0.427308,0.0525569,0.351565,0.30418,0.10304,0.671148,0.849524,0.905283,0.738041,0.32317,0.467569,0.405654,0.145046,0.721109,0.509231,0.769262,0.456152,0.446092,0.191963,0.647584,0.747794,0.305972,0.838698,0.00368041,0.627219,0.933493,0.615806,0.959147,0.708949,0.268489,0.433092,0.770125,0.388752,0.611392,0.375027,0.0135894,0.710097,0.00953376,0.696222,0.310928,0.440659,0.525137,0.292657,0.885255,0.214157,0.982666,0.927181,0.138224,0.143895,0.458604,0.550456,0.492575,0.965565,0.636726,0.771332,0.681608,0.108806,0.0235397,0.439892,0.190286,0.932448,0.206428,0.340938,0.812555,0.642856,0.354668,0.376088,0.207371,0.764292,0.70857,0.304312,0.335114,0.241967,0.884054,0.781398,0.793555,0.495092,0.992438,0.743704,0.0462934,0.616204,0.460244,0.393079,0.952217,0.518892,0.232486,0.910848,0.902039,0.365487,0.280168,0.153544,0.79579,0.556318,0.701716,0.418289,0.0262851,0.918074,0.440795,0.615231,0.554019,0.926743,0.270382,0.0861101,0.552137,0.966427,0.0720664,0.00695527,0.432034,0.45243,0.723906,0.107676,0.0626736,0.895575,0.581616,0.239188,0.108069,0.0531114,0.788253,0.909445,0.692192,0.227031,0.187398,0.762735,0.0234953,0.481532,0.813513,0.916106,0.935677,0.14866,0.702895,0.152986,0.340915,0.237292,0.720062,0.383679,0.040642,0.993517,0.127947,0.00776953,0.947765,0.346895,0.693283,0.384804,0.450035,0.263927,0.442504,0.829768,0.12772,0.226638,0.335171,0.931188,0.259095,0.310944,0.502487,0.686139,0.48185,0.277664,0.426556,0.430992,0.190312,0.713332,0.592481,0.738857,0.302227,0.561969,0.532267,0.855959,0.981408,0.827894,0.475352,0.48831,0.728962,0.215104,0.497382,0.471543,0.0155953,0.499195,0.969634,0.641631,0.892366,0.582816,0.386981,0.716092,0.607821,0.43449,0.974307,0.0898973,0.259407,0.887594,0.0428215,0.711447,0.39331,0.174574,0.776547,0.115068,0.229811,0.962041,0.723141,0.788349,0.43749,0.904526,0.875631,0.143642,0.678193,0.986276,0.448848,0.750968,0.336474,0.928067,0.774832,0.507674,0.932118,0.437348,0.755477,0.0108397,0.333114,0.435113,0.215874,0.243313,0.941707,0.910883,0.985051,0.223228,0.628236,0.286561,0.30713,0.336516,0.713764,0.802238,0.0452573,0.956464,0.343733,0.718578,0.63536,0.351508,0.209143,0.272608,0.0606202,0.883561,0.471063,0.866615,0.511301,0.302024,0.256543,0.384998,0.992753,0.956691,0.478028,0.0108301,0.507281,0.890363,0.172268,0.565517,0.0134921,0.817609,0.309364,0.441473,0.561633,0.55297,0.286972,0.388041,0.0217147,0.409545,0.174256,0.696651,0.713567,0.552085,0.0934075,0.871576,0.803029,0.0734495,0.971965,0.391666,0.0336633,0.43786,0.159258,0.0325053,0.189617,0.906265,0.988667,0.545928,0.586073,0.367235,0.475549,0.493759,0.885142,0.493617,0.164592,0.112669,0.0777411,0.0494878,0.644191,0.311274,0.410339,0.809011,0.843023,0.430075,0.126744,0.416702,0.183604,0.372869,0.52618,0.771903,0.338418,0.34754,0.981517,0.0523475,0.702034,0.52529,0.205623,0.529846,0.188167,0.457461,0.105456,0.77916,0.29045,0.634367,0.299005,0.0161037,0.0373831,0.793297,0.0289491,0.45093,0.948044,0.415902,0.571718,0.866456,0.948741,0.661958,0.588502,|0.816929,0.975763,0.70787,0.842212,0.339899,0.497468,0.82882,0.877255,0.0562582,0.838364,0.874572,0.135193,0.167177,0.904429,0.74197,0.784792,0.386029,0.443052,0.780332,0.508157,0.109807,0.285066,0.200421,0.702345,0.836079,0.113058,0.967901,0.808661,0.93258,0.245286,0.784614,0.924551,0.445435,0.708451,0.388783,0.293791,0.241582,0.294454,0.0161312,0.132217,0.155622,0.970166,0.584064,0.634506,0.887458,0.674196,0.627567,0.431036,0.717246,0.822416,0.547445,0.197072,0.331627,0.756744,0.444088,0.372971,0.855238,0.917973,0.9856,0.0548823,0.766311,0.948522,0.733991,0.128295,0.31688,0.353002,0.379439,0.784871,0.988574,0.831323,0.0756359,0.633147,0.856352,0.500557,0.364723,0.964257,0.131644,0.370703,0.699517,0.153914,0.0229872,0.648267,0.48511,0.175991,0.817101,0.57512,0.505977,0.903112,0.752793,0.0517181,0.685831,0.554294,0.58138,0.730599,0.892051,0.278336,0.532385,0.534248,0.549996,0.62773,0.0136931,0.762291,0.0706035,0.231786,0.429713,0.0047254,0.119093,0.0289518,0.536901,0.449455,0.056078,0.612696,0.77721,0.752513,0.601426,0.481386,0.514828,0.524187,0.716723,0.804575,0.99476,0.961839,0.383608,0.226277,0.394741,0.568599,0.732196,0.617548,0.00528592,0.0663293,0.165145,0.264702,0.773483,0.907699,0.810703,0.770253,0.454198,0.886744,0.563583,0.37415,0.591133,0.104651,0.554098,0.0862318,0.0143458,0.620366,0.333908,0.995147,0.698678,0.629813,0.428848,0.954016,0.871151,0.895983,0.682818,0.629958,0.898509,0.366112,0.134879,0.122942,0.827636,0.669722,0.0382763,0.0984018,0.654854,0.846304,0.669898,0.976335,0.175762,0.840369,0.0749559,0.685689,0.142306,0.116899,0.639956,0.988306,0.714846,0.551654,0.940388,0.718818,0.62548,0.878663,0.268634,0.739068,0.788057,0.445278,0.328556,0.508492,0.0752262,0.711526,0.0307267,0.333762,0.922199,0.49933,0.0924175,0.509878,0.433543,0.148596,0.152303,0.304343,0.0571378,0.636312,0.594795,0.582497,0.374853,0.913139,0.754278,0.665492,0.368646,0.990532,0.306484,0.835754,0.699565,0.714097,0.994793,0.0370789,0.631113,0.39024,0.979551,0.902775,0.964489,0.352434,0.0159447,0.153121,0.486512,0.787159,0.359877,0.480433,0.618077,0.44871,0.363267,0.0614412,0.210473,0.211404,0.987433,0.326942,0.460289,0.927015,0.863722,0.219495,0.181878,0.3598,0.881146,0.765669,0.550762,0.0684599,0.568386,0.793832,0.741394,0.971545,0.20912,0.598293,0.569124,0.38671,0.97579,0.934632,0.56978,0.936326,0.869086,0.535719,0.0306397,0.00787389,0.625106,0.568478,0.851192,1.74642e-05,0.279762,0.489514,0.902665,0.887678,0.754455,0.491382,0.471343,0.896631,0.906516,0.478724,0.878597,0.554872,0.496116,0.566982,0.743209,0.921201,0.710625,0.989747,0.731899,0.39108,0.726371,0.197387,0.448178,0.48486,0.225994,0.940086,0.507201,0.0760886,0.178032,0.253135,0.933708,0.572558,0.380307,0.0817927,0.904606,0.615688,0.954013,0.339968,0.206106,0.698416,0.161964,0.209765,0.163652,0.940166,0.831667,0.638932,0.171711,0.730876,0.930247,0.309752,0.665352,0.557244,0.31988,0.359413,0.727513,0.358814,0.0157281,0.0417722,0.580034,0.102625,0.258911,0.35522,0.521971,0.447926,0.480448,0.28811,0.152786,0.34186,0.921851,0.571866,0.77886,0.371296,0.706701,0.487562,0.573064,0.430185,0.419917,0.346652,0.332392,0.451772,0.914247,0.645455,0.322828,0.00830609,0.147247,0.571117,0.278115,0.466526,0.226436,0.371076,0.449081,0.526053,0.600763,0.00699645,0.697331,0.967436,0.320507,0.97991,0.239407,0.425524,0.781679,0.65301,0.167797,0.0210677,0.063913,0.0244228,0.545048,0.488941,0.423859,0.221074,0.0601616,0.495272,0.576444,0.6259,0.606565,0.0446768,0.869234,0.677105,0.174707,0.186754,0.0212396,0.764319,0.730509,0.611029,0.799436,0.834525,0.665339,0.685563,0.0190035,0.0458955,0.506724,0.311451,0.869024,0.649099,0.335614,0.68685,0.797469,0.596237,0.888908,0.290896,0.722242,0.634665,0.263413,0.0218337,0.895002,0.695896,0.2854,0.926726,0.978207,0.944945,0.3948,0.312787,0.243759,0.0951054,0.905697,0.910062,0.927928,0.625867,0.727825,0.154527,0.653987,0.57283,0.96025,0.305853,0.25419,0.459013,0.410377,0.451538,0.49885,0.500618,0.92272,0.370395,0.734422,0.599217,0.649479,0.963065,0.846757,0.7925,0.744304,0.397813,0.809173,0.811682,0.0792444,0.03881,0.958515,0.101232,0.149766,0.628919,0.221918,0.319274,0.926253,0.942731,0.971345,0.614873,0.376352,0.658801,0.564696,0.44099,0.0861826,0.0543047,0.193713,0.169119,0.417064,0.0221125,0.679438,0.35743,0.747958,0.415613,0.975064,0.142064,0.975593,0.438815,0.537636,0.99335,0.179543,0.976236,0.0906557,0.759127,0.641113,0.181815,0.954616,0.94979,0.428992,0.114916,0.940114,0.241977,0.439258,0.737181,0.243027,0.662418,0.565225,0.546699,0.780385,0.739049,0.673621,0.933087,0.374278,0.26227,0.0950974,0.72123,0.74582,0.901692,0.21114,0.268173,0.244765,0.768293,0.797316,0.197872,0.364982,0.0508798,0.418215,0.653046,0.0929881,0.115443,0.202707,0.498421,0.210414,0.593168,0.52179,0.390933,0.403179,0.984064,0.780454,0.832151,0.0552526,0.159446,0.108182,0.350766,0.601497,0.534915,0.548208,0.257342,0.259859,0.206115,0.447891,0.162309,0.205505,0.920112,0.938414,0.514419,0.108452,0.696897,0.385731,0.420775,0.350103,0.201216,0.313567,0.510351,0.213537,0.450505,0.006293,0.176732,0.990735,0.539891,0.305415,0.116506,0.350589,0.355183,0.366943,0.546514,0.487999,0.234122,0.158813,0.455508,0.235385,0.110158,0.501976,0.976472,0.00454825,0.177755,0.100725,0.556912,0.541306,0.147872,0.308846,0.380137,0.784932,0.427161,0.929721,0.747001,0.326812,0.969894,0.366144,0.534513,0.663713,0.671334,0.523301,0.823132,0.771602,0.303561,0.857956,0.680581,0.971484,0.81338,0.40889,0.757356,0.0589527,0.699493,0.793576,0.612406,0.0778174,0.218964,0.0870064,0.668121,0.683386,0.627899,0.797378,0.797699,0.644646,0.700806,0.824155,0.223164,0.527066,0.480395,0.765763,0.591978,0.594785,0.179974,0.640963,0.1806,0.432498,0.222797,0.562516,0.516273,0.48067,0.0209291,0.377373,0.590369,0.18714,0.745882,0.818167,0.944533,0.215589,0.604413,0.655378,0.22144,0.657156,0.00906909,0.207796,0.46725,0.946147,0.766689,0.751961,0.476349,0.783352,0.018923,0.968222,0.0488843,0.167097,0.927261,0.273718,0.0674116,0.335025,0.347464,0.0196781,0.286145,0.239549,0.639424,0.782577,0.578319,0.454679,0.378971,0.278279,0.0339313,0.866608,0.635134,0.901949,0.645479,0.231698,0.487219,0.123367,0.629569,0.115907,0.485635,0.381571,0.294972,0.22023,0.211923,0.630582,0.12368,0.252569,0.871991,0.938466,0.957593,0.687062,0.975552,0.286804,0.319288,0.754348,0.945376,0.720423,0.110922,0.202047,0.298682,0.154438,0.116143,0.821013,0.82717,0.0386966,0.392488,0.90875,0.439442,0.0976899,0.663837,0.310178,0.0666944,0.182735,0.075927,0.735238,0.75379,0.684621,0.601504,0.977456,0.595908,0.968565,0.986624,0.0142682,0.187752,0.23808,0.224673,0.991719,0.912177,0.603808,0.58291,0.0113356,0.89851,0.093276,0.382812,0.891523,0.964758,0.279952,0.306579,0.824718,0.334155,0.086941,0.894319,0.590863,0.171538,0.542081,0.576957,0.42577,0.373115,0.128973,0.0927342,0.36169,0.489047,0.43773,0.578529,0.297894,0.195903,0.28622,0.836877,0.591259,0.133413,0.650295,0.298829,0.138167,0.967853,0.545805,0.0529686,0.638608,0.199369,0.14314,0.906557,0.0203441,0.008591,0.831618,0.955394,0.328913,0.738506,0.305636,0.549884,0.102699,0.966172,0.25741,0.102826,0.00384861,0.740678,0.378822,0.122753,0.872334,0.808366,0.234772,0.202351,0.486117,0.614409,0.713699,0.928113,0.341204,0.961412,0.982784,0.875644,0.942161,0.402293,0.433116,0.191075,0.530399,0.974187,0.394394,0.854256,0.946463,0.0218177,0.392294,0.305122,0.118467,0.178553,0.123024,0.465664,0.859043,0.627029,0.890382,0.689105,0.237787,0.688238,0.43019,0.742163,0.404184,0.493752,0.928454,0.0823777,0.486084,0.468197,0.98949,0.0122546,0.815985,0.764738,0.250985,0.260152,0.204163,0.961538,0.240694,0.204713,0.858581,0.264051,0.0525202,0.778657,0.308098,0.668571,0.139592,0.524807,0.574584,0.716899,0.256243,0.554646,0.042074,0.717325,0.625297,0.110895,0.930994,0.809615,0.585136,0.505035,0.724922,0.751915,0.72854,0.452656,0.142026,0.539908,0.932892,0.854556,0.0132684,0.080236,0.757648,0.789862,0.0275238,0.881437,0.678699,0.681384,0.0191443,0.390822,0.393697,0.554082,0.711408,0.168451,0.0246977,0.485511,0.735598,0.490265,0.348897,0.756845,0.793917,0.628415,0.351574,0.445838,0.537266,0.0618067,0.916075,0.429838,0.0995919,0.0401028,0.680519,0.737209,0.694452,0.778374,0.0766755,0.572233,0.299241,0.613261,0.950562,0.595874,0.907638,0.321521,0.454606,0.30116,0.00298971,0.880555,0.492158,0.5908,0.465171,0.324026,0.563729,0.00750792,0.444595,0.79203,0.596961,0.871413,0.350817,0.169524,0.518595,0.335418,0.759062,0.0387206,0.000562906,0.5378,0.943952,0.901287,0.267164,0.807717,0.559037,0.824273,0.132568,0.211154,0.409925,0.946732,0.153523,0.927588,0.454967,0.501733,0.305082,0.062736,0.176638,0.631303,0.533829,0.971151,0.738872,0.492359,0.154669,0.314416,0.426001,0.670019,0.068499,0.52101,0.574604,0.197541,0.431993,0.728824,0.81,0.0697362,0.103445,0.38873,0.298945,0.604834,0.475185,0.616433,0.988825,0.120236,0.168507,0.536382,0.162301,0.470218,0.146154,0.864191,0.311692,0.181984,0.476521,0.00128013,0.568595,0.0676383,0.876749,0.914334,0.796745,0.903948,0.563246,0.585251,0.215009,0.461222,0.575428,0.797859,0.367633,0.580337,0.754334,0.0341587,0.0909711,0.245668,|0.099786,0.930289,0.793536,0.967524,0.374007,0.349867,0.494458,0.867019,0.209281,0.995349,0.601786,0.380641,0.528045,0.188538,0.920878,0.691928,0.769716,0.611406,0.0675977,0.286632,0.404829,0.0788239,0.0395555,0.0902327,0.0447583,0.372943,0.0694753,0.655352,0.613086,0.872927,0.230328,0.844962,0.329911,0.00305712,0.620859,0.943141,0.0907406,0.668462,0.518633,0.60085,0.701035,0.225715,0.737398,0.557269,0.245914,0.0639067,0.466107,0.489312,0.407079,0.467014,0.674104,0.37947,0.675122,0.973214,0.526939,0.258441,0.966011,0.18667,0.960496,0.722512,0.788399,0.189505,0.590741,0.0749589,0.263033,0.0769239,0.0805892,0.438681,0.688066,0.152284,0.633708,0.425555,0.420233,0.829597,0.85743,0.742935,0.481271,0.492933,0.677165,0.838639,0.0106764,0.999406,0.584628,0.899632,0.577417,0.474901,0.305674,0.0619964,0.699597,0.945363,0.655519,0.76796,0.157787,0.503012,0.485973,0.134671,0.526482,0.801271,0.674569,0.615101,0.259319,0.00952262,0.487084,0.764283,0.403849,0.923575,0.230994,0.0917367,0.859877,0.77679,0.413096,0.707304,0.458525,0.766994,0.24153,0.913847,0.29188,0.755177,0.77339,0.289004,0.112336,0.437264,0.28856,0.865513,0.362916,0.391515,0.7981,0.345048,0.860657,0.845468,0.240496,0.139747,0.362536,0.758817,0.119967,0.537197,0.668935,0.213493,0.452433,0.638083,0.393546,0.882783,0.391653,0.572578,0.249825,0.166551,0.616851,0.785969,0.515277,0.151585,0.599982,0.345126,0.443269,0.281909,0.413304,0.353072,0.912453,0.786388,0.896521,0.209131,0.390484,0.238093,0.632886,0.605749,0.972894,0.185756,0.07318,0.0627523,0.400046,0.745588,0.39192,0.87233,0.689527,0.0741846,0.222043,0.534051,0.0592837,0.482011,0.813638,0.956531,0.683197,0.25727,0.214482,0.385648,0.865316,0.210016,0.0826345,0.85665,0.693201,0.473256,0.72837,0.383752,0.243645,0.673887,0.864327,0.223074,0.60248,0.514574,0.974483,0.29514,0.693201,0.0466244,0.452363,0.736672,0.941881,0.925529,0.359962,0.484449,0.628212,0.624793,0.31163,0.985514,0.890279,0.937503,0.468217,0.910368,0.869472,0.997777,0.481043,0.234725,0.624882,0.539251,0.1373,0.554618,0.953516,0.808279,0.238046,0.158423,0.439984,0.15678,0.0790464,0.204286,0.39644,0.931179,0.197625,0.88536,0.522109,0.110608,0.585736,0.421163,0.443715,0.709747,0.00073874,0.724466,0.570719,0.234707,0.198521,0.329827,0.754319,0.680715,0.444725,0.863552,0.476433,0.842264,0.866903,0.764272,0.803819,0.1655,0.0541621,0.476526,0.478127,0.547941,0.0843632,0.594299,0.395196,0.715182,0.997079,0.282227,0.233567,0.253579,0.123303,0.24538,0.276991,0.618909,0.0523409,0.207193,0.868057,0.650413,0.696026,0.393457,0.276065,0.74718,0.989223,0.783476,0.281492,0.97313,0.0428938,0.980465,0.251533,0.966815,0.00760937,0.69158,0.47783,0.409363,0.776411,0.793263,0.622134,0.260571,0.943711,0.626759,0.437077,0.933125,0.390394,0.380185,0.0693215,0.549928,0.105677,0.543837,0.914274,0.786751,0.460983,0.686749,0.237937,0.920662,0.960431,0.672704,0.747042,0.0985118,0.816895,0.0944641,0.479889,0.929381,0.636074,0.528748,0.0264656,0.234297,0.643265,0.437063,0.85613,0.442142,0.946806,0.493227,0.721752,0.113895,0.0420901,0.450952,0.718929,0.747103,0.922965,0.482861,0.257174,0.223873,0.566517,0.878508,0.452602,0.649757,0.5856,0.145266,0.109709,0.0586526,0.572285,0.0511752,0.673301,0.0860383,0.685125,0.0773412,0.226281,0.644545,0.823748,0.619555,0.790214,0.142372,0.458831,0.962958,0.654747,0.696226,0.662268,0.14884,0.858852,0.927982,0.903303,0.797507,0.104396,0.98682,0.52505,0.760006,0.694268,0.833154,0.380287,0.657579,0.178865,0.366355,0.50995,0.693591,0.353186,0.748815,0.478412,0.723672,0.103925,0.459709,0.246451,0.610629,0.46272,0.127628,0.735333,0.928064,0.836333,0.441546,0.028739,0.664019,0.24194,0.879475,0.75518,0.121098,0.212203,0.884915,0.368367,0.256274,0.0944678,0.947822,0.909203,0.00343847,0.0702749,0.92891,0.375778,0.0134013,0.631768,0.816066,0.0244232,0.729569,0.810475,0.48187,0.861973,0.63911,0.0417974,0.843297,0.651982,0.46114,0.834764,0.300822,0.0802111,0.344559,0.467264,0.698937,0.39069,0.390988,0.194308,0.708927,0.379768,0.755363,0.738082,0.217816,0.950123,0.445173,0.061239,0.125325,0.533483,0.683975,0.167845,0.28356,0.615835,0.0573525,0.637998,0.536075,0.773268,0.928355,0.38125,0.975552,0.287947,0.720783,0.151248,0.645374,0.107938,0.277893,0.322479,0.600502,0.0803755,0.347064,0.395413,0.560713,0.89088,0.421282,0.172891,0.480679,0.859661,0.878598,0.950535,0.345214,0.398935,0.551027,0.81149,0.619299,0.1199,0.316021,0.516667,0.857569,0.834804,0.0763319,0.552374,0.870785,0.963605,0.651117,0.0321818,0.889664,0.680477,0.939273,0.627739,0.740774,0.484384,0.898847,0.908619,0.484468,0.371903,0.108262,0.134249,0.459567,0.168614,0.137088,0.9457,0.141567,0.954814,0.63155,0.682205,0.656002,0.368664,0.397514,0.775095,0.927407,0.451295,0.285863,0.756461,0.490619,0.849743,0.174387,0.0399876,0.906617,0.0129859,0.0830323,0.640811,0.642741,0.0618401,0.123833,0.387709,0.833411,0.302807,0.599561,0.230922,0.530482,0.758573,0.128702,0.187303,0.341827,0.584062,0.664641,0.845939,0.0374799,0.896661,0.55222,0.320784,0.204053,0.355908,0.625729,0.580698,0.732819,0.600918,0.352107,0.876859,0.467892,0.209313,0.464839,0.448688,0.970815,0.188393,0.549973,0.121353,0.116793,0.541604,0.54195,0.588788,0.453183,0.412264,0.281794,0.990466,0.306434,0.623099,0.530394,0.508918,0.996952,0.0674765,0.528567,0.377796,0.587515,0.488318,0.166266,0.410391,0.871768,0.19237,0.697435,0.242984,0.550125,0.042103,0.878938,0.838427,0.0277486,0.620823,0.993795,0.486395,0.911919,0.0653077,0.175561,0.6343,0.713331,0.817202,0.336468,0.462509,0.831487,0.114986,0.372454,0.370272,0.261185,0.533086,0.972116,0.700384,0.729654,0.0879211,0.975983,0.283347,0.470539,0.459291,0.186302,0.271845,0.68088,0.479101,0.789387,0.78533,0.467072,0.0779746,0.453282,0.497888,0.383502,0.471313,0.244985,0.77099,0.750057,0.0067718,0.963549,0.192104,0.945792,0.479521,0.744354,0.875816,0.130099,0.356337,0.256926,0.185473,0.665872,0.659274,0.207435,0.0467559,0.690451,0.861826,0.650996,0.39955,0.711443,0.867407,0.658925,0.0882831,0.0164945,0.412319,0.701418,0.925574,0.476149,0.750204,0.592738,0.807401,0.813776,0.0887741,0.518704,0.0212591,0.898349,0.0037598,0.0457686,0.819109,0.127411,0.530502,0.187587,0.936644,0.297766,0.327343,0.766707,0.681836,0.781417,0.839046,0.478242,0.353985,0.729249,0.758454,0.692425,0.146747,0.906826,0.455553,0.000761032,0.59478,0.488466,0.850707,0.138587,0.470512,0.36715,0.301441,0.648485,0.451991,0.913421,0.583252,0.994064,0.286066,0.073979,0.824922,0.206274,0.0319688,0.987387,0.344103,0.950789,0.668263,0.876074,0.392597,0.141567,0.981998,0.88379,0.231063,0.0705357,0.830052,0.608135,0.46679,0.328983,0.447408,0.917621,0.489567,0.136124,0.00642818,0.194395,0.478049,0.0625802,0.31282,0.790877,0.408031,0.998594,0.804964,0.604746,0.973285,0.678398,0.3641,0.760992,0.0691736,0.893581,0.34318,0.655573,0.707567,0.000416934,0.0290166,0.115005,0.274778,0.661651,0.315326,0.866448,0.314893,0.114166,0.258581,0.322318,0.565324,0.733401,0.312793,0.519073,0.254771,0.105429,0.26149,0.631539,0.896911,0.950499,0.737263,0.823223,0.934386,0.852056,0.243548,0.536715,0.255848,0.2759,0.667446,0.531797,0.896393,0.207381,0.386676,0.922166,0.555834,0.334531,0.302628,0.804922,0.520331,0.510213,0.273696,0.620595,0.0933156,0.650769,0.544626,0.410179,0.129279,0.510398,0.695305,0.289514,0.0305253,0.617963,0.73367,0.624065,0.380708,0.226059,0.884225,0.325839,0.627885,0.337635,0.471874,0.300512,0.588181,0.664982,0.826619,0.00967687,0.732746,0.838801,0.33972,0.585189,0.182246,0.284779,0.385306,0.312918,0.900847,0.0535096,0.791098,0.00144404,0.201496,0.59976,0.304757,0.787323,0.508571,0.894633,0.578877,0.930803,0.350403,0.605198,0.513735,0.38401,0.0630018,0.171553,0.191187,0.574732,0.687388,0.510601,0.187587,0.28186,0.327852,0.195378,0.406279,0.966191,0.302215,0.0526253,0.231543,0.927065,0.286175,0.428044,0.204006,0.900283,0.63457,0.715279,0.271352,0.00574857,0.289518,0.161101,0.431077,0.198296,0.736852,0.936404,0.516046,0.68268,0.334159,0.0235383,0.226899,0.958609,0.3009,0.281212,0.392848,0.407373,0.441343,0.813871,0.445032,0.192434,0.844014,0.459694,0.406639,0.525214,0.86467,0.66529,0.396827,0.132228,0.595525,0.985431,0.419371,0.269361,0.103387,0.114101,0.64674,0.705862,0.490161,0.907715,0.693324,0.714434,0.911864,0.737652,0.976801,0.201617,0.511963,0.935079,0.90999,0.880588,0.57237,0.783717,0.269335,0.918716,0.41315,0.603354,0.160085,0.876981,0.560577,0.00543916,0.852224,0.52313,0.692842,0.367231,0.821067,0.196845,0.524491,0.607063,0.537242,0.237655,0.359556,0.767036,0.863223,0.480069,0.521142,0.228711,0.290013,0.900548,0.750677,0.0422283,0.274226,0.518598,0.312132,0.507044,0.765726,0.295001,0.979535,0.567762,0.225427,0.335053,0.291061,0.223421,0.521845,0.231798,0.695889,0.70221,0.709231,0.279147,0.607577,0.691036,0.89695,0.642113,0.221255,0.426169,0.621494,0.496592,0.847068,0.968091,0.943082,0.0496837,0.5146,0.215651,0.118929,0.60377,0.566093,0.0328179,0.275622,0.550024,0.920964,0.554104,0.433653,0.195619,0.231423,0.730421,0.401227,0.758041,0.0259882,0.580897,0.380761,0.956734,0.844445,0.314111,0.888183,0.0432954,0.746813,0.00190103,0.630847,0.0374289,0.373918,0.421469,|0.46293,0.529987,0.12075,0.2546,0.416004,0.350105,0.617518,0.581033,0.335041,0.101025,0.0437291,0.0453766,0.499526,0.454096,0.625781,0.146821,0.83973,0.426319,0.0362951,0.086069,0.496349,0.00259215,0.304412,0.796698,0.0894173,0.331165,0.766338,0.950282,0.972236,0.73586,0.808159,0.286955,0.888627,0.995451,0.605751,0.745874,0.0103763,0.0662801,0.483346,0.518178,0.911828,0.546471,0.539345,0.483196,0.559809,0.0898061,0.218123,0.663233,0.448397,0.0860517,0.874751,0.697274,0.500524,0.175962,0.686814,0.777276,0.588309,0.910432,0.796319,0.526906,0.225565,0.379046,0.916441,0.188782,0.56206,0.947645,0.0418845,0.322463,0.703778,0.647491,0.579821,0.784539,0.0190902,0.399859,0.160578,0.584145,0.790673,0.662665,0.0858836,0.946136,0.771398,0.861046,0.226751,0.854944,0.370299,0.763633,0.382378,0.950986,0.695542,0.891965,0.275002,0.219679,0.555934,0.354097,0.46331,0.767349,0.593522,0.983799,0.220857,0.798057,0.589366,0.475196,0.505833,0.53516,0.272753,0.312866,0.297858,0.242975,0.409929,0.751342,0.37092,0.206906,0.527941,0.389342,0.734902,0.641581,0.649218,0.17229,0.452823,0.809423,0.384084,0.161552,0.581687,0.772674,0.462834,0.0681455,0.318419,0.715866,0.296016,0.680745,0.490584,0.758169,0.759496,0.0784712,0.642099,0.563545,0.0475494,0.437156,0.53622,0.809581,0.408769,0.467692,0.454902,0.377016,0.428707,0.256808,0.879015,0.232689,0.0921576,0.475547,0.572522,0.586153,0.788444,0.451547,0.404079,0.836229,0.564776,0.123499,0.347904,0.471575,0.509869,0.138799,0.599145,0.834576,0.0820891,0.419341,0.0304527,0.539574,0.965019,0.836836,0.978382,0.222439,0.976355,0.076506,0.767323,0.555578,0.957772,0.647098,0.28943,0.750619,0.55908,0.00887346,0.0394468,0.152501,0.153263,0.795536,0.485597,0.179407,0.567139,0.10787,0.26801,0.750524,0.0912274,0.492375,0.363042,0.336437,0.522165,0.169072,0.437865,0.405447,0.567694,0.575582,0.457238,0.149918,0.93677,0.860458,0.290496,0.845406,0.925317,0.0464103,0.155327,0.046118,0.261886,0.968178,0.665151,0.622874,0.13842,0.883519,0.527404,0.0349591,0.78299,0.20188,0.171429,0.899781,0.0615839,0.128193,0.173986,0.278789,0.822284,0.860743,0.832125,0.993335,0.245079,0.555382,0.917067,0.411499,0.566988,0.0980853,0.397999,0.359533,0.0171589,0.609451,0.788161,0.746641,0.481244,0.808776,0.287523,0.213955,0.519196,0.471029,0.533202,0.740893,0.607515,0.0310491,0.344542,0.0120538,0.920172,0.476142,0.891389,0.984034,0.190758,0.156614,0.609317,0.674301,0.303605,0.521079,0.871462,0.795578,0.169939,0.93386,0.827154,0.298769,0.413696,0.123421,0.867142,0.966155,0.844905,0.697967,0.341128,0.956754,0.437669,0.896177,0.971724,0.382146,0.347848,0.795191,0.538769,0.662947,0.651631,0.545537,0.344168,0.913526,0.49921,0.232114,0.733431,0.876749,0.419953,0.948059,0.62301,0.634437,0.307157,0.615676,0.923745,0.49083,0.759234,0.208045,0.0907932,0.310944,0.292888,0.579595,0.328653,0.616145,0.717671,0.999796,0.484406,0.733175,0.326077,0.907439,0.143949,0.0213204,0.0182573,0.851204,0.972292,0.167826,0.808748,0.50404,0.247819,0.908017,0.345494,0.943892,0.573006,0.10708,0.364038,0.425333,0.875397,0.134932,0.692176,0.119286,0.626333,0.990999,0.428802,0.358253,0.0625048,0.00784731,0.839244,0.562371,0.568263,0.105859,0.533322,0.428999,0.765963,0.381082,0.815265,0.344898,0.911303,0.208674,0.942238,0.859017,0.162012,0.854947,0.343356,0.563908,0.85207,0.0578655,0.499006,0.648111,0.92346,0.537833,0.835851,0.307898,0.223853,0.191159,0.533874,0.683066,0.789122,0.025587,0.211868,0.500171,0.490253,0.299117,0.833469,0.149963,0.177857,0.167313,0.195734,0.0565538,0.130687,0.843419,0.598864,0.207057,0.633206,0.454767,0.209768,0.302716,0.934973,0.658819,0.62256,0.182511,0.927797,0.83002,0.307683,0.254465,0.501765,0.958943,0.654113,0.74501,0.559104,0.0841873,0.291899,0.908292,0.699695,0.568799,0.520009,0.956583,0.695269,0.820093,0.13444,0.844054,0.755973,0.499803,0.995098,0.843491,0.315126,0.859244,0.0596474,0.335339,0.891805,0.966786,0.737957,0.765177,0.284453,0.38354,0.404778,0.478826,0.348216,0.264066,0.620602,0.129402,0.00596726,0.168261,0.40883,0.474303,0.240222,0.793241,0.64144,0.000193059,0.0162271,0.0245258,0.0497036,0.185312,0.594017,0.340201,0.312364,0.0624642,0.308919,0.629003,0.309079,0.625765,0.0189055,0.0244199,0.548039,0.069317,0.00925547,0.0709491,0.503736,0.914579,0.179051,0.592409,0.570853,0.686313,0.553924,0.118219,0.638238,0.739871,0.453927,0.704119,0.157307,0.463578,0.156829,0.953109,0.566872,0.639261,0.910356,0.404368,0.6409,0.671394,0.539921,0.13956,0.044952,0.254467,0.236854,0.709327,0.0689435,0.110796,0.668321,0.0477431,0.598962,0.600939,0.544543,0.364282,0.802392,0.505207,0.0517671,0.576319,0.948248,0.16208,0.718859,0.107563,0.0763711,0.74211,0.691085,0.368767,0.66341,0.280212,0.492757,0.326352,0.413231,0.531383,0.444034,0.422561,0.099417,0.772601,0.799448,0.370252,0.210675,0.394054,0.186712,0.38671,0.124694,0.0222166,0.159863,0.540124,0.163297,0.670913,0.791878,0.601191,0.82967,0.279086,0.86928,0.29652,0.416295,0.325043,0.495639,0.150455,0.964489,0.806523,0.507712,0.336148,0.313462,0.495687,0.492965,0.14604,0.00675309,0.546507,0.740854,0.464354,0.594258,0.537473,0.0820333,0.530686,0.351287,0.517255,0.993393,0.879977,0.677886,0.591378,0.25186,0.256696,0.537568,0.201335,0.604543,0.847391,0.833382,0.249467,0.166058,0.47451,0.0155145,0.44262,0.669872,0.699926,0.887039,0.52097,0.671306,0.850737,0.817345,0.36029,0.234962,0.497949,0.477148,0.398304,0.746688,0.690685,0.0529954,0.0839144,0.300699,0.291377,0.240153,0.893393,0.538033,0.561264,0.409993,0.554578,0.261098,0.541382,0.689999,0.500889,0.84244,0.469109,0.173431,0.716236,0.97833,0.158494,0.0956806,0.883049,0.190578,0.310808,0.501151,0.994292,0.884466,0.652789,0.575139,0.559793,0.372927,0.303891,0.308015,0.66991,0.41564,0.508594,0.88542,0.236031,0.550949,0.643435,0.0949793,0.312114,0.299556,0.608319,0.603153,0.589513,0.509312,0.273381,0.117826,0.136053,0.0190488,0.688633,0.384019,0.778711,0.388866,0.189444,0.49715,0.265421,0.294705,0.878966,0.748491,0.665886,0.646563,0.785936,0.993671,0.514292,0.361938,0.561946,0.410578,0.126131,0.23394,0.511953,0.921205,0.0791083,0.00563747,0.564644,0.494497,0.540086,0.357013,0.665486,0.22933,0.815109,0.247676,0.234288,0.69544,0.964713,0.208119,0.894338,0.948452,0.900772,0.607327,0.832133,0.397715,0.168897,0.409604,0.697638,0.996626,0.338802,0.942473,0.844102,0.893517,0.678666,0.442174,0.0171536,0.181916,0.544825,0.780202,0.111026,0.858079,0.0101386,0.69912,0.840218,0.990277,0.71431,0.95893,0.324937,0.644374,0.531851,0.394779,0.104506,0.50487,0.923217,0.900068,0.709371,0.524945,0.345033,0.898797,0.499799,0.0668439,0.741248,0.84193,0.485836,0.306412,0.663338,0.025601,0.732393,0.0188926,0.413533,0.402851,0.22672,0.700122,0.47126,0.600835,0.178128,0.589258,0.357247,0.617457,0.201288,0.0963855,0.37943,0.135696,0.896357,0.983945,0.045006,0.334791,0.0390514,0.267604,0.429039,0.413851,0.120987,0.322018,0.725076,0.665823,0.165398,0.542273,0.102428,0.069325,0.0138438,0.201618,0.000634491,0.743142,0.499453,0.578692,0.0224071,0.416629,0.172853,0.157816,0.487867,0.690152,0.854543,0.167568,0.360955,0.627874,0.0330586,0.797523,0.763109,0.672511,0.115097,0.945212,0.743869,0.249571,0.342128,0.978724,0.354563,0.627852,0.615351,0.660456,0.397953,0.195261,0.899721,0.139965,0.768113,0.273826,0.973574,0.228235,0.991854,0.808711,0.150306,0.477547,0.137688,0.172531,0.955176,0.460824,0.915224,0.930354,0.732151,0.136019,0.0318882,0.605602,0.673147,0.322103,0.919343,0.877819,0.149844,0.531654,0.344277,0.976007,0.442808,0.435608,0.154199,0.43524,0.470329,0.869203,0.718089,0.396717,0.228072,0.395306,0.916214,0.885918,0.575416,0.824484,0.2336,0.790225,0.73124,0.578825,0.740772,0.416947,0.238141,0.647887,0.971867,0.244172,0.867094,0.902725,0.526054,0.146659,0.7042,0.717524,0.795405,0.0278423,0.370059,0.206574,0.161882,0.0384668,0.589867,0.742997,0.740158,0.146713,0.461882,0.252308,0.251363,0.624388,0.355563,0.161745,0.705156,0.976568,0.158273,0.0564982,0.191848,0.514216,0.192792,0.826302,0.984657,0.776657,0.470067,0.0829813,0.491754,0.177829,0.487111,0.48843,0.227144,0.917351,0.906198,0.899196,0.091782,0.861684,0.107845,0.474296,0.386329,0.613404,0.250767,0.399895,0.207722,0.70808,0.952259,0.870155,0.96143,0.0307814,0.442011,0.419341,0.17061,0.582085,0.141889,0.0325829,0.966194,0.888042,0.46909,0.0716602,0.449257,0.607457,0.651781,0.801826,0.183191,0.659626,0.0552008,0.260202,0.520477,0.683575,0.416848,0.610158,0.840947,0.535555,0.21113,0.434337,0.367312,0.393,0.664819,0.568381,0.131151,0.00885153,0.215086,0.822447,0.114882,0.661659,0.972646,0.0831895,0.808655,0.358388,0.637902,0.413592,0.160913,0.533704,0.264445,0.867865,0.0511516,0.229029,0.216357,0.698676,0.355373,0.138748,0.733248,0.0422252,0.0169209,0.601269,0.856288,0.942097,0.994889,0.0933514,0.657424,0.473365,0.615416,0.29327,0.486414,0.640182,0.526576,0.502733,0.7287,0.844469,0.937482,0.124662,0.397448,0.397526,0.815442,0.352617,0.782091,0.560236,0.634602,0.828793,0.817161,0.249117,0.390971,0.498404,0.754536,0.111075,0.109626,0.685754,0.98376,0.981174,0.493125,0.709666,0.689036,0.446141,0.913997,0.652265,0.209479,0.860301,0.0768745,0.151131,0.282972,|0.457736,0.676076,0.199523,0.705708,0.771726,0.808544,0.0653347,0.574694,0.988805,0.0634344,0.832029,0.619062,0.27606,0.298382,0.24488,0.87874,0.144207,0.193106,0.111297,0.153395,0.634268,0.105432,0.920006,0.061021,0.523906,0.370064,0.308582,0.94389,0.385373,0.695343,0.735611,0.159483,0.66455,0.504752,0.686439,0.81493,0.412611,0.983524,0.888758,0.901377,0.564726,0.678893,0.659319,0.52342,0.323834,0.178944,0.0361896,0.63906,0.000429332,0.268837,0.142859,0.30109,0.410487,0.0204322,0.379149,0.956955,0.923256,0.075725,0.778062,0.291971,0.800541,0.186557,0.0321776,0.683728,0.302086,0.0844824,0.972308,0.965121,0.188511,0.296785,0.562703,0.435747,0.202505,0.0642589,0.791126,0.489035,0.565488,0.602663,0.365578,0.740089,0.431894,0.960942,0.0111306,0.144329,0.484629,0.219159,0.525046,0.797083,0.137403,0.198508,0.536906,0.886045,0.4549,0.970343,0.230343,0.702904,0.296808,0.477613,0.290134,0.343565,0.24077,0.532704,0.658225,0.817175,0.165007,0.843238,0.0379025,0.97167,0.911171,0.988986,0.521897,0.387237,0.413962,0.0281867,0.777247,0.639751,0.818453,0.216969,0.480631,0.704349,0.543827,0.985974,0.283323,0.126608,0.969354,0.125469,0.585704,0.784376,0.713638,0.626921,0.397586,0.42468,0.954047,0.370932,0.780282,0.0612656,0.614745,0.9894,0.241724,0.983546,0.145576,0.29416,0.112857,0.30883,0.0305858,0.918364,0.384844,0.399185,0.250331,0.0365871,0.232645,0.486023,0.158156,0.58581,0.195357,0.114278,0.326718,0.610385,0.262018,0.655765,0.0313519,0.563811,0.336719,0.549354,0.417657,0.298654,0.190429,0.745495,0.801254,0.153947,0.785577,0.518308,0.878712,0.806753,0.791771,0.655056,0.945292,0.0627243,0.240813,0.242629,0.940247,0.929816,0.388102,0.0665486,0.661165,0.772583,0.79958,0.940563,0.577349,0.794775,0.721114,0.76551,0.920633,0.305383,0.970811,0.55055,0.323699,0.772907,0.489462,0.216964,0.288534,0.0528716,0.490976,0.848142,0.412268,0.510341,0.11299,0.751072,0.447109,0.059195,0.876226,0.623073,0.237572,0.370373,0.401645,0.106391,0.77933,0.814858,0.407029,0.500983,0.742236,0.21795,0.304846,0.570592,0.655893,0.3013,0.548846,0.272502,0.641847,0.834773,0.298645,0.579986,0.209315,0.0159668,0.844194,0.34172,0.930542,0.799805,0.953813,0.0229127,0.831934,0.269678,0.273631,0.279589,0.680667,0.0471152,0.311296,0.971308,0.450058,0.278506,0.060476,0.61766,0.0338764,0.825552,0.249016,0.337704,0.92645,0.146559,0.829636,0.765276,0.587193,0.94588,0.670403,0.348904,0.802721,0.520181,0.52385,0.630834,0.120055,0.792007,0.507931,0.711408,0.526156,0.318407,0.793275,0.144659,0.0211949,0.582355,0.944093,0.698976,0.396498,0.820483,0.119512,0.193107,0.00232977,0.0537023,0.846643,0.893722,0.760299,0.918126,0.396538,0.956852,0.226578,0.275683,0.525423,0.953495,0.912629,0.789334,0.107664,0.643558,0.372384,0.698174,0.617944,0.593265,0.753342,0.0548632,0.616038,0.66936,0.384344,0.808118,0.00465423,0.822927,0.0964928,0.224813,0.146377,0.42111,0.852539,0.28394,0.885904,0.400763,0.875065,0.449524,0.183794,0.20832,0.441449,0.175327,0.614175,0.874354,0.481041,0.188219,0.808676,0.314651,0.912611,0.30613,0.790194,0.753932,0.548085,0.392864,0.517004,0.247345,0.309526,0.73155,0.628332,0.693092,0.731224,0.0724953,0.501187,0.472279,0.497698,0.516829,0.940431,0.780399,0.389932,0.616201,0.0850722,0.765798,0.256807,0.850111,0.334099,0.729478,0.24087,0.138699,0.0242853,0.196115,0.636238,0.13049,0.129178,0.326969,0.167863,0.178636,0.157859,0.210924,0.363752,0.265615,0.877158,0.214867,0.851181,0.523501,0.228679,0.0814292,0.0914167,0.0645503,0.503844,0.346686,0.0219415,0.51494,0.458506,0.531971,0.333762,0.704253,0.700513,0.426245,0.785489,0.0365444,0.976334,0.749574,0.442685,0.105332,0.454122,0.29915,0.442898,0.228974,0.406664,0.285822,0.209283,0.258166,0.153887,0.773146,0.536588,0.141809,0.575484,0.56193,0.645428,0.0215497,0.435807,0.801592,0.9526,0.162219,0.346869,0.88755,0.661451,0.89294,0.776535,0.912715,0.606584,0.560014,0.356413,0.560306,0.0657672,0.895012,0.583114,0.558362,0.788123,0.828031,0.0135879,0.679626,0.39849,0.38944,0.0137787,0.863809,0.89126,0.544005,0.413793,0.49214,0.646588,0.611679,0.136556,0.759574,0.159332,0.584564,0.22758,0.0266097,0.0440992,0.0895135,0.53972,0.176779,0.35263,0.760701,0.270602,0.992971,0.745562,0.00469255,0.0020591,0.542417,0.511192,0.944468,0.30663,0.523984,0.619908,0.30946,0.551869,0.00834751,0.211929,0.0189724,0.123619,0.312141,0.58936,0.10707,0.938686,0.0261852,0.348462,0.434151,0.0718825,0.66635,0.809346,0.146552,0.248691,0.238901,0.948074,0.552731,0.0395959,0.304551,0.975543,0.253893,0.599847,0.1775,0.345304,0.100331,0.444143,0.667523,0.693718,0.304266,0.695832,0.187441,0.417319,0.721002,0.399233,0.0591332,0.551907,0.169156,0.465272,0.45843,0.377932,0.736304,0.582291,0.282717,0.984792,0.304761,0.146822,0.74688,0.936424,0.840773,0.968846,0.344314,0.441121,0.895051,0.737729,0.884053,0.532791,0.526673,0.476893,0.86356,0.0449666,0.497601,0.0205574,0.0291038,0.759427,0.352968,0.114069,0.749132,0.902812,0.882699,0.0947589,0.351121,0.188784,0.423098,0.644985,0.194195,0.123561,0.28267,0.0746562,0.588458,0.857408,0.0730728,0.979418,0.328395,0.604905,0.76175,0.717062,0.699707,0.205217,0.953297,0.927884,0.471894,0.39179,0.979235,0.794779,0.260539,0.240627,0.681084,0.90836,0.0773966,0.886498,0.0265898,0.108359,0.924116,0.195767,0.263133,0.450674,0.893795,0.64188,0.885027,0.436464,0.871813,0.818155,0.193907,0.604162,0.949774,0.501611,0.757751,0.209227,0.345512,0.90714,0.242668,0.794241,0.803751,0.883769,0.641841,0.119009,0.517214,0.0265934,0.856902,0.810166,0.788801,0.59725,0.640681,0.312854,0.349333,0.691605,0.34992,0.26866,0.635362,0.701079,0.941743,0.473701,0.549389,0.758915,0.868742,0.637571,0.354109,0.327722,0.540673,0.424109,0.25952,0.375442,0.540359,0.771811,0.308383,0.475812,0.241222,0.398932,0.866799,0.412645,0.0465842,0.592587,0.318874,0.775324,0.410464,0.268557,0.457627,0.193975,0.931719,0.402184,0.778602,0.416112,0.543519,0.903937,0.393922,0.984,0.539555,0.0684049,0.0151632,0.906207,0.131073,0.377082,0.555012,0.425238,0.0841135,0.822817,0.12193,0.284288,0.331093,0.534444,0.77813,0.39,0.751507,0.493233,0.656234,0.34957,0.144111,0.517463,0.30465,0.123276,0.472313,0.00098604,0.699286,0.940788,0.138366,0.105471,0.245261,0.794467,0.920707,0.012391,0.312508,0.725266,0.363215,0.62803,0.740092,0.384789,0.461095,0.546739,0.862899,0.0227684,0.931494,0.698822,0.931702,0.0912625,0.41965,0.275339,0.506051,0.34037,0.0860109,0.667563,0.875849,0.507191,0.868708,0.25924,0.0721528,0.907515,0.371952,0.885944,0.230206,0.767744,0.643175,0.340196,0.0737992,0.733624,0.398501,0.895079,0.884743,0.0844797,0.654856,0.0009197,0.519868,0.594682,0.435323,0.992507,0.18829,0.256034,0.0588243,0.0272979,0.764362,0.340138,0.689086,0.351935,0.532499,0.914594,0.749848,0.0689791,0.360179,0.852449,0.896119,0.024582,0.122356,0.734251,0.58724,0.944631,0.097133,0.722792,0.710862,0.559121,0.520459,0.850675,0.317246,0.426238,0.138648,0.424142,0.459718,0.393439,0.567341,0.354354,0.765156,0.762467,0.633771,0.437505,0.888643,0.891954,0.396374,0.74087,0.233364,0.703001,0.504085,0.0161855,0.785467,0.526631,0.897595,0.329826,0.494183,0.228254,0.240364,0.412658,0.152554,0.698778,0.967244,0.319341,0.167996,0.120721,0.458935,0.459543,0.590944,0.675557,0.913143,0.680589,0.812673,0.79965,0.523489,0.538672,0.853312,0.751461,0.493053,0.889566,0.980591,0.756974,0.56974,0.435814,0.450599,0.780076,0.669808,0.747926,0.580604,0.98278,0.0563659,0.094813,0.807496,0.376971,0.624926,0.0991154,0.307913,0.893706,0.0847345,0.0111548,0.603313,0.682031,0.478274,0.0708689,0.465882,0.243294,0.609062,0.754914,0.509043,0.910154,0.578502,0.943759,0.411321,0.273894,0.60691,0.588966,0.207133,0.827335,0.164676,0.466591,0.614073,0.321466,0.930261,0.315292,0.333206,0.804096,0.153823,0.194108,0.2964,0.381133,0.735081,0.205451,0.755463,0.246852,0.258489,0.919692,0.280073,0.596657,0.427177,0.0292169,0.00108606,0.653525,0.15619,0.632209,0.506161,0.837423,0.810158,0.803753,0.627068,0.234101,0.952206,0.633256,0.276378,0.048595,0.832855,0.331594,0.363812,0.502919,0.231945,0.212103,0.558314,0.787036,0.887254,0.867621,0.898577,0.508271,0.338683,0.537034,0.587738,0.0488208,0.720699,0.99641,0.404702,0.170238,0.231629,0.138003,0.307489,0.955125,0.645542,0.426021,0.703135,0.501257,0.041889,0.976237,0.719496,0.105623,0.540672,0.421641,0.266839,0.51216,0.698922,0.703596,0.955021,0.646766,0.508417,0.876838,0.53873,0.70325,0.406935,0.17083,0.96228,0.235104,0.0516884,0.125684,0.139474,0.167932,0.862202,0.258102,0.88023,0.0982938,0.922943,0.860714,0.420315,0.93942,0.622576,0.863004,0.711221,0.528672,0.263762,0.981629,0.698103,0.380366,0.763302,0.406858,0.894417,0.246054,0.803049,0.451398,0.26471,0.852669,0.31618,0.798237,0.527955,0.835163,0.335094,0.320918,0.334717,0.02583,0.0618216,0.765193,0.821046,0.102742,0.276617,0.379548,0.867859,0.121875,0.471243,0.569401,0.17231,0.429688,0.613029,0.140413,0.609219,0.411126,0.327116,0.940995,0.456606,0.445039,0.791758,0.887918,0.148522,0.846945,0.530688,0.291152,0.00581318,0.494129,0.305018,0.843358,0.153391,0.431302,0.925703,0.117987,0.443893,0.171766,0.540894,0.0263386,0.168241,0.62829,0.339286,|0.905748,0.13062,0.113521,0.828586,0.228398,0.583464,0.576458,0.36918,0.634947,0.679118,0.208151,0.30445,0.546085,0.28382,0.206011,0.106067,0.952814,0.251021,0.195927,0.949323,0.873067,0.870466,0.823275,0.659198,0.0469099,0.496878,0.415968,0.249256,0.488996,0.108667,0.799684,0.653806,0.687125,0.506379,0.027725,0.203461,0.698675,0.684364,0.620267,0.067474,0.879625,0.681001,0.768789,0.578878,0.490537,0.989441,0.931433,0.867546,0.901772,0.0684258,0.0221332,0.297328,0.652032,0.372257,0.672975,0.980243,0.858809,0.709304,0.336624,0.68198,0.825533,0.919758,0.0631936,0.765343,0.66528,0.70926,0.318617,0.270773,0.0782284,0.451413,0.293239,0.46416,0.686683,0.334003,0.388665,0.374681,0.670833,0.982781,0.786139,0.647557,0.629163,0.242518,0.672117,0.460489,0.378702,0.561542,0.185716,0.257355,0.0195479,0.409027,0.011229,0.916531,0.545987,0.923799,0.265429,0.893982,0.581951,0.980931,0.899385,0.181239,0.183633,0.646319,0.182404,0.681124,0.628316,0.895377,0.344675,0.76623,0.341779,0.47086,0.47946,0.247426,0.014221,0.936684,0.237633,0.944145,0.640677,0.500718,0.68739,0.259997,0.694121,0.620858,0.605848,0.146173,0.686955,0.625576,0.61885,0.662912,0.879159,0.256174,0.112702,0.297688,0.00684333,0.831923,0.325897,0.805127,0.717049,0.187687,0.491986,0.348223,0.416322,0.0610538,0.0903181,0.522807,0.889236,0.0718577,0.72694,0.31629,0.967266,0.562152,0.460674,0.518089,0.18691,0.0504002,0.251147,0.730345,0.206702,0.10939,0.523201,0.323156,0.782355,0.0847611,0.538788,0.272153,0.397575,0.602539,0.00165921,0.120637,0.720237,0.403042,0.801587,0.48318,0.369156,0.94687,0.934982,0.0134977,0.926967,0.0110201,0.477144,0.845064,0.774347,0.522843,0.975315,0.108017,0.529573,0.363677,0.0973239,0.813239,0.773886,0.879843,0.515269,0.712552,0.658069,0.784289,0.809323,0.46758,0.117913,0.0951314,0.941612,0.330172,0.457077,0.713254,0.688609,0.58829,0.141729,0.299156,0.263022,0.507889,0.0710815,0.985315,0.249247,0.359058,0.439236,0.387051,0.0407448,0.759317,0.909485,0.028618,0.103247,0.840792,0.344545,0.97537,0.378721,0.412379,0.0975664,0.0587806,0.447696,0.531411,0.813656,0.72532,0.0413377,0.791896,0.107488,0.67936,0.19306,0.022324,0.455182,0.373415,0.464008,0.493412,0.63067,0.818803,0.594201,0.759492,0.984854,0.909671,0.894508,0.736597,0.437848,0.447871,0.472055,0.0242754,0.722395,0.638595,0.43556,0.0812114,0.998454,0.030828,0.524555,0.250473,0.508954,0.688687,0.305136,0.0369306,0.329559,0.444564,0.444675,0.341042,0.221743,0.175843,0.225812,0.367803,0.6276,0.62079,0.252587,0.949175,0.0855445,0.560155,0.943408,0.646344,0.539648,0.638844,0.526879,0.472119,0.752267,0.671506,0.252961,0.46535,0.662044,0.0255143,0.524969,0.332799,0.445561,0.474922,0.620653,0.74814,0.351884,0.419283,0.356778,0.0824363,0.275053,0.520575,0.322893,0.697854,0.0261346,0.439622,0.146424,0.0558949,0.562929,0.253717,0.0253857,0.67987,0.493164,0.907341,0.549493,0.860604,0.511804,0.993301,0.969462,0.20791,0.0768794,0.443651,0.314874,0.687045,0.7605,0.318821,0.36483,0.271839,0.282472,0.831664,0.992221,0.890595,0.548127,0.732791,0.59912,0.45158,0.0980462,0.525711,0.511096,0.462472,0.734408,0.807008,0.949881,0.727995,0.0673453,0.259928,0.0934557,0.301109,0.539117,0.521898,0.500466,0.283891,0.814686,0.691998,0.233656,0.23936,0.310547,0.562931,0.987378,0.501179,0.475377,0.177547,0.443177,0.64231,0.864124,0.0508816,0.325256,0.272964,0.427671,0.77684,0.0427443,0.0495294,0.63228,0.237665,0.211554,0.426136,0.257329,0.753419,0.574721,0.548018,0.627556,0.25104,0.91133,0.521276,0.382006,0.26668,0.925995,0.602588,0.475636,0.888225,0.631803,0.90059,0.176133,0.957712,0.725217,0.215025,0.997041,0.171499,0.537927,0.756893,0.679347,0.607423,0.118249,0.241672,0.706989,0.851431,0.180004,0.769586,0.214852,0.440609,0.126493,0.728196,0.844621,0.39066,0.743236,0.246791,0.32032,0.901135,0.621572,0.0128309,0.8816,0.295024,0.311782,0.545279,0.318522,0.503343,0.0716214,0.194227,0.389661,0.629018,0.436927,0.383154,0.599616,0.952781,0.452882,0.884726,0.00658411,0.980766,0.7478,0.84971,0.105356,0.682038,0.164783,0.674055,0.68532,0.978521,0.61745,0.548419,0.898173,0.283586,0.356154,0.112541,0.997589,0.765977,0.644691,0.890461,0.290574,0.501238,0.400865,0.972468,0.243859,0.570136,0.734398,0.495084,0.0938519,0.865958,0.355711,0.0217751,0.64672,0.992514,0.76997,0.863889,0.781401,0.231213,0.584584,0.860477,0.916245,0.835879,0.223319,0.564771,0.224775,0.700971,0.538052,0.495218,0.911373,0.285313,0.628444,0.0943835,0.687678,0.378992,0.944867,0.885337,0.148548,0.199248,0.470928,0.951948,0.89737,0.499354,0.224502,0.0394751,0.260632,0.431594,0.423935,0.868822,0.731773,0.663409,0.0701564,0.0547092,0.855576,0.238252,0.0256152,0.228851,0.393221,0.582801,0.329772,0.142989,0.862136,0.469012,0.459443,0.9325,0.814235,0.966654,0.777608,0.299071,0.558771,0.415973,0.298605,0.0160943,0.527515,0.897944,0.51286,0.554056,0.0879096,0.801926,0.305038,0.462087,0.575136,0.382876,0.781411,0.370252,0.0644056,0.308199,0.566655,0.636263,0.81462,0.555927,0.818366,0.239797,0.243435,0.979814,0.613723,0.703111,0.683154,0.230088,0.212706,0.144402,0.874895,0.36274,0.568085,0.969325,0.00935686,0.144735,0.8227,0.763019,0.742886,0.0853195,0.385059,0.586402,0.488916,0.257435,0.911488,0.0443965,0.467988,0.832749,0.299398,0.0391775,0.475836,0.946887,0.892054,0.752303,0.534308,0.186954,0.460263,0.651716,0.844762,0.117973,0.55653,0.424557,0.866735,0.61698,0.924538,0.50444,0.473707,0.0995504,0.324013,0.358445,0.0788298,0.0377004,0.795358,0.88806,0.370728,0.393406,0.0552239,0.140337,0.170904,0.234377,0.67799,0.662027,0.253005,0.120586,0.352443,0.767092,0.273521,0.128778,0.271338,0.205573,0.307266,0.0312305,0.728205,0.811279,0.26027,0.201147,0.232519,0.249908,0.217573,0.184639,0.882472,0.48842,0.831845,0.540187,0.020839,0.576501,0.14476,0.595255,0.622804,0.445451,0.19921,0.126153,0.677879,0.360345,0.461124,0.48453,0.572832,0.207377,0.714837,0.231281,0.342855,0.460848,0.785949,0.82696,0.68169,0.247,0.716829,0.965943,0.712227,0.0522426,0.653464,0.862499,0.338288,0.629094,0.0296832,0.708038,0.63378,0.905744,0.42383,0.95343,0.62445,0.634232,0.513061,0.744501,0.790026,0.759243,0.136288,0.0301886,0.366753,0.0606391,0.373772,0.16413,0.149562,0.540836,0.329805,0.976297,0.0171034,0.391527,0.200834,0.761641,0.733691,0.856103,0.758552,0.441976,0.470564,0.447202,0.418292,0.682635,0.633493,0.91377,0.774324,0.0959888,0.47956,0.336889,0.614244,0.252019,0.323719,0.850942,0.710974,0.222661,0.46893,0.328837,0.904282,0.777257,0.346726,0.906752,0.440596,0.291305,0.692979,0.178602,0.667678,0.0552278,0.866247,0.338161,0.488293,0.361169,0.2674,0.422347,0.986018,0.127273,0.748045,0.496122,0.756787,0.937487,0.00141865,0.814471,0.453429,0.661417,0.214709,0.312606,0.853532,0.587945,0.895588,0.942435,0.652472,0.323189,0.395865,0.476531,0.277803,0.506525,0.8565,0.953469,0.452632,0.235124,0.90875,0.266586,0.609688,0.200226,0.715674,0.183981,0.440006,0.589981,0.963503,0.510828,0.184131,0.117502,0.497966,0.0811214,0.610156,0.657922,0.964922,0.596617,0.75821,0.551145,0.811348,0.487884,0.997713,0.848484,0.696956,0.206581,0.304364,0.677823,0.619676,0.464231,0.891362,0.970338,0.0053997,0.804397,0.516044,0.798877,0.547291,0.105722,0.896521,0.335089,0.18023,0.991727,0.40493,0.165273,0.863285,0.413957,0.319138,0.583801,0.843383,0.209578,0.606002,0.65374,0.37006,0.211382,0.734655,0.778321,0.901761,0.662349,0.630926,0.668883,0.774856,0.864435,0.306413,0.201624,0.943411,0.715129,0.157883,0.43278,0.892002,0.296259,0.890157,0.250926,0.425389,0.18408,0.567353,0.847035,0.396267,0.216436,0.707901,0.636436,0.367368,0.884931,0.436971,0.638652,0.972734,0.492067,0.661712,0.583757,0.542719,0.682431,0.824798,0.0181313,0.749308,0.563578,0.893039,0.338482,0.644475,0.240181,0.172963,0.763273,0.323265,0.881336,0.74481,0.733796,0.459386,0.70868,0.429598,0.452702,0.438092,0.0406929,0.670179,0.0138711,0.536328,0.726018,0.837493,0.202101,0.984428,0.564027,0.706712,0.537895,0.253441,0.713374,0.476314,0.922607,0.643111,0.961607,0.276882,0.251494,0.167943,0.0284987,0.353913,0.907757,0.398997,0.639668,0.196331,0.342424,0.81224,0.769313,0.644368,0.614644,0.236378,0.454977,0.600444,0.612418,0.859126,0.331993,0.593804,0.81086,0.311159,0.360882,0.180273,0.314137,0.432396,0.954142,0.903157,0.00731546,0.490366,0.475573,0.0949265,0.992082,0.193461,0.806166,0.539768,0.605251,0.899881,0.860088,0.981736,0.553427,0.201931,0.0475363,0.815498,0.511145,0.0534656,0.825875,0.219888,0.440863,0.256752,0.243982,0.799493,0.26244,0.629423,0.520434,0.969868,0.539984,0.702402,0.781192,0.191875,0.790538,0.300237,0.582196,0.227112,0.674514,0.00168812,0.822983,0.26467,0.370139,0.653321,0.991875,0.431467,0.487832,0.159536,0.688205,0.738046,0.814379,0.09727,0.290542,0.888949,0.385251,0.192738,0.292003,0.162247,0.19093,0.0632633,0.874395,0.608673,0.11367,0.735755,0.880841,0.450266,0.659974,0.524205,0.382565,0.413224,0.525821,0.815391,0.057218,0.714602,0.808254,0.852723,0.558459,0.406965,0.497479,0.746377,0.929953,0.655028,0.713176,0.860054,0.836639,0.0365027,0.11106,0.797844,0.971185,0.744907,0.929431,0.524753,0.215256,0.995174,0.977506,0.465956,0.0989946,|0.471497,0.390977,0.690582,0.597245,0.109451,0.368655,0.888767,0.00934541,0.572984,0.165449,0.765928,0.409508,0.217896,0.460671,0.0797638,0.446773,0.151719,0.164967,0.0743632,0.252623,0.579279,0.657205,0.227961,0.357618,0.904578,0.236051,0.670116,0.706636,0.389013,0.742226,0.911838,0.682679,0.163973,0.240837,0.0799499,0.889325,0.104809,0.248873,0.674678,0.334135,0.970204,0.0892498,0.769492,0.606283,0.969991,0.752369,0.659539,0.396243,0.287185,0.868293,0.792929,0.832678,0.454709,0.530232,0.175066,0.831431,0.551507,0.586498,0.0961545,0.555948,0.710688,0.848233,0.579313,0.122876,0.727915,0.0683646,0.129111,0.0975277,0.821434,0.0252243,0.0538717,0.827425,0.574394,0.250124,0.877859,0.516122,0.0653663,0.445639,0.415841,0.473319,0.0410094,0.587986,0.389962,0.0012514,0.0968906,0.308038,0.830189,0.196774,0.896991,0.921143,0.587655,0.16187,0.586647,0.914067,0.891099,0.917573,0.804045,0.952724,0.0838227,0.701448,0.192454,0.657954,0.992536,0.467319,0.842993,0.817385,0.703735,0.229803,0.0864451,0.815036,0.388811,0.51181,0.477151,0.799409,0.474712,0.897102,0.825854,0.767753,0.259983,0.258102,0.567764,0.868835,0.0877258,0.36013,0.595661,0.793948,0.167765,0.219819,0.171916,0.210273,0.763517,0.991236,0.578078,0.594413,0.146753,0.7397,0.829656,0.600667,0.157356,0.525582,0.279086,0.247439,0.00334734,0.514568,0.573245,0.131068,0.911333,0.311621,0.65041,0.978022,0.754929,0.18774,0.660488,0.420679,0.476047,0.169846,0.114265,0.831344,0.180344,0.427707,0.0573198,0.964973,0.925379,0.0221945,0.426783,0.275973,0.958449,0.529569,0.710759,0.822457,0.702828,0.406864,0.808679,0.361431,0.377991,0.201857,0.165552,0.639326,0.700385,0.377552,0.709746,0.654378,0.355426,0.1556,0.156842,0.649247,0.203938,0.275127,0.0546796,0.21429,0.165415,0.460736,0.306529,0.835663,0.0356482,0.211283,0.369,0.245195,0.749633,0.41571,0.0790371,0.316947,0.389572,0.187665,0.178156,0.150561,0.307527,0.73946,0.0971684,0.219406,0.878338,0.937205,0.478793,0.691111,0.895182,0.150884,0.279216,0.156449,0.952868,0.465186,0.345917,0.950919,0.386581,0.758959,0.645016,0.582297,0.049876,0.961121,0.481102,0.459533,0.154726,0.0730671,0.315161,0.271883,0.0872897,0.0885959,0.443883,0.996485,0.777801,0.201667,0.135038,0.083984,0.417306,0.966445,0.347498,0.419696,0.935079,0.0398004,0.862506,0.851042,0.636665,0.205078,0.731497,0.267194,0.437301,0.647259,0.0225105,0.28886,0.0575026,0.299077,0.662103,0.663028,0.456857,0.920247,0.800664,0.260436,0.643809,0.291766,0.989385,0.393886,0.777966,0.230819,0.623019,0.870523,0.227561,0.355249,0.344606,0.0211449,0.132353,0.437602,0.260928,0.30193,0.915616,0.359418,0.606408,0.400942,0.951466,0.811358,0.325614,0.441257,0.701829,0.362189,0.711928,0.0185977,0.409148,0.851652,0.427882,0.489704,0.757325,0.827249,0.854642,0.0716442,0.597598,0.725887,0.589174,0.0904986,0.825271,0.742483,0.378931,0.61469,0.0726977,0.768354,0.793969,0.17494,0.434487,0.107146,0.199296,0.0264622,0.883159,0.443728,0.252914,0.418478,0.496183,0.958218,0.517778,0.646282,0.224593,0.414374,0.21647,0.184261,0.105074,0.757219,0.72496,0.668513,0.0243794,0.696173,0.739288,0.111052,0.145292,0.641036,0.141596,0.00352019,0.788378,0.811048,0.47027,0.395972,0.872353,0.187907,0.294813,0.816661,0.734614,0.923651,0.290695,0.893205,0.419316,0.808885,0.166106,0.234463,0.789415,0.285146,0.719867,0.938355,0.851647,0.231219,0.960564,0.547031,0.124453,0.184385,0.482911,0.271025,0.538558,0.434413,0.960708,0.279911,0.980741,0.251149,0.137036,0.762312,0.635218,0.435423,0.470884,0.580729,0.306143,0.872117,0.221266,0.890221,0.48397,0.683868,0.0907105,0.780202,0.930626,0.354625,0.420483,0.128107,0.00838792,0.278754,0.452568,0.529469,0.407012,0.690274,0.396878,0.241023,0.220912,0.807174,0.667528,0.810131,0.119901,0.97482,0.669311,0.147539,0.770964,0.503365,0.96029,0.145513,0.705738,0.043584,0.304305,0.160653,0.761409,0.103352,0.222253,0.427927,0.833931,0.793382,0.922782,0.629244,0.388681,0.414424,0.831431,0.588143,0.551242,0.386033,0.461986,0.775509,0.454896,0.960219,0.195682,0.982587,0.672982,0.259475,0.289997,0.782173,0.71162,0.766213,0.740107,0.207693,0.802416,0.618407,0.333569,0.20279,0.766096,0.59817,0.270903,0.0771376,0.405138,0.0319192,0.132011,0.042331,0.275701,0.670724,0.522354,0.536693,0.657888,0.00325918,0.136705,0.228958,0.584302,0.792902,0.974744,0.839126,0.49085,0.266208,0.25259,0.106894,0.101701,0.368894,0.638403,0.729756,0.554431,0.0456089,0.555091,0.365033,0.728696,0.00402492,0.0575423,0.649762,0.918316,0.663367,0.365315,0.598578,0.107592,0.527879,0.263737,0.442375,0.852538,0.23192,0.606097,0.668341,0.964301,0.676719,0.733265,0.0217209,0.2347,0.526741,0.601984,0.740633,0.827764,0.094158,0.929293,0.315213,0.330564,0.590176,0.347004,0.21683,0.0483528,0.0126485,0.931741,0.791339,0.843216,0.818366,0.216344,0.981442,0.316628,0.967423,0.954464,0.714417,0.984016,0.355995,0.758999,0.45884,0.735682,0.162516,0.300034,0.145021,0.112554,0.596873,0.84424,0.997381,0.642649,0.773679,0.931479,0.610873,0.3727,0.739122,0.179053,0.0230103,0.721805,0.842695,0.506949,0.719997,0.667441,0.311336,0.938112,0.586649,0.210993,0.600736,0.0744559,0.935413,0.00687063,0.995575,0.0700321,0.642755,0.877292,0.392096,0.568343,0.594623,0.320793,0.332401,0.622968,0.247332,0.920426,0.15579,0.174346,0.974147,0.908228,0.866148,0.566891,0.607014,0.965694,0.836002,0.920872,0.85781,0.787366,0.701935,0.182596,0.839767,0.699172,0.615168,0.82971,0.464456,0.155383,0.520529,0.762911,0.17782,0.511425,0.626261,0.697766,0.356041,0.356914,0.652243,0.701669,0.32559,0.823658,0.0014351,0.962046,0.277133,0.268215,0.889575,0.234584,0.511427,0.28439,0.242227,0.249474,0.696081,0.350379,0.431362,0.976961,0.461302,0.770589,0.31513,0.237933,0.0647473,0.0826684,0.108842,0.517857,0.372422,0.844897,0.436999,0.669445,0.219011,0.558728,0.0854824,0.878862,0.345373,0.162737,0.329329,0.410976,0.56492,0.263984,0.473984,0.34183,0.387242,0.271107,0.589473,0.438878,0.205392,0.761012,0.1293,0.320748,0.623459,0.801266,0.258428,0.16706,0.0516166,0.42134,0.0928696,0.872942,0.000814795,0.274076,0.718331,0.408943,0.577437,0.249621,0.720315,0.870204,0.358808,0.80796,0.54788,0.0666363,0.193409,0.283276,0.627115,0.910533,0.769561,0.736254,0.224143,0.213268,0.0409639,0.443952,0.884941,0.661232,0.625514,0.0260093,0.567397,0.141778,0.625015,0.153233,0.631192,0.674351,0.725085,0.340754,0.926589,0.272256,0.888528,0.179708,0.232809,0.840363,0.868432,0.738926,0.914218,0.676585,0.748391,0.109765,0.238077,0.493155,0.267624,0.982748,0.247498,0.312359,0.425104,0.651045,0.355744,0.36384,0.373613,0.7006,0.805289,0.223236,0.493435,0.123031,0.446753,0.0225824,0.0833091,0.432923,0.912169,0.794444,0.347564,0.862401,0.283859,0.606774,0.869218,0.0196721,0.643505,0.525128,0.492235,0.683109,0.354382,0.782683,0.888291,0.861512,0.58216,0.344797,0.12447,0.251586,0.355925,0.0448886,0.0235021,0.93174,0.909651,0.41392,0.0789738,0.452469,0.678567,0.485835,0.361863,0.434221,0.044631,0.644322,0.891564,0.302753,0.115878,0.330356,0.834308,0.958163,0.794602,0.346926,0.796514,0.260677,0.47544,0.64693,0.216646,0.123623,0.273738,0.401237,0.735651,0.565188,0.543269,0.846017,0.337237,0.759039,0.427655,0.902979,0.725862,0.857946,0.733162,0.924228,0.36499,0.234618,0.637618,0.00287843,0.224745,0.726222,0.816539,0.85328,0.202997,0.593226,0.0338401,0.3925,0.437743,0.541968,0.0884523,0.789964,0.160213,0.437023,0.901264,0.131089,0.270809,0.728307,0.650182,0.829039,0.989622,0.526768,0.877554,0.847455,0.467366,0.546361,0.0579349,0.54006,0.00776017,0.67343,0.311593,0.500955,0.407782,0.399207,0.465811,0.212658,0.76761,0.774028,0.444339,0.742136,0.442817,0.836219,0.543921,0.268331,0.121368,0.71685,0.483024,0.712497,0.805508,0.45574,0.0435379,0.435029,0.215313,0.507297,0.0632891,0.642019,0.00312382,0.0844095,0.577314,0.932573,0.344761,0.855943,0.270691,0.436221,0.412039,0.13074,0.672958,0.782989,0.42825,0.00655121,0.517099,0.583264,0.0608444,0.555874,0.790865,0.739863,0.0136713,0.0648211,0.588125,0.246089,0.409655,0.892924,0.392438,0.11515,0.311168,0.0377284,0.113856,0.00155723,0.533753,0.0508515,0.624431,0.970648,0.732813,0.757354,0.193272,0.510527,0.631053,0.375756,0.242344,0.821843,0.982293,0.68696,0.254255,0.198823,0.633358,0.962272,0.250817,0.374327,0.984167,0.718552,0.822511,0.468859,0.200858,0.969512,0.735369,0.985214,0.329353,0.740617,0.822443,0.447554,0.300223,0.0517722,0.312583,0.518016,0.27858,0.77841,0.321903,0.835656,0.0812207,0.533781,0.579296,0.0196044,0.322265,0.236965,0.764206,0.184369,0.270854,0.226601,0.134838,0.988935,0.0321844,0.340674,0.36387,0.251378,0.967561,0.975495,0.773111,0.385453,0.243336,0.481761,0.0784064,0.114889,0.85287,0.177082,0.825959,0.4255,0.96278,0.0439435,0.270425,0.931126,0.969192,0.453446,0.338339,0.511846,0.207441,0.324294,0.661812,0.0680867,0.772125,0.0815231,0.494427,0.782797,0.193056,0.643997,0.416649,0.565146,0.33958,0.970878,0.237683,0.32472,0.769764,0.702675,0.763941,0.387109,0.564535,0.232641,0.37867,0.0917886,0.482543,0.742173,0.927711,0.117483,0.129783,0.448676,0.603975,0.90172,0.569028,0.276621,0.040519,0.816739,0.597168,0.221128,0.972977,0.673176,0.847045,0.590984,0.640205,0.788772,0.356678,0.810205,0.818513,|0.445053,0.567526,0.463212,0.930526,0.239886,0.525466,0.78037,0.988358,0.266316,0.182747,0.187968,0.828311,0.321371,0.750854,0.40013,0.237431,0.633801,0.0201778,0.332718,0.513672,0.474811,0.00350642,0.375298,0.45533,0.26427,0.20734,0.780432,0.201189,0.273845,0.919524,0.517665,0.327592,0.624179,0.265553,0.699773,0.940033,0.243043,0.321204,0.29135,0.279964,0.451582,0.185816,0.405641,0.592697,0.854924,0.653184,0.208374,0.500776,0.317955,0.384174,0.683545,0.162844,0.98129,0.180298,0.678788,0.188333,0.444887,0.402066,0.946899,0.513902,0.618247,0.0979883,0.361041,0.300709,0.407576,0.995858,0.11064,0.17889,0.534349,0.181657,0.0921128,0.500344,0.409034,0.489998,0.681522,0.699971,0.873121,0.055837,0.814647,0.49511,0.571365,0.462765,0.806468,0.111003,0.933435,0.0776145,0.54555,0.781731,0.915361,0.676711,0.124632,0.84167,0.799336,0.442816,0.450427,0.0952548,0.0163125,0.880727,0.698157,0.427359,0.515363,0.435781,0.116297,0.752924,0.640804,0.978513,0.311628,0.858711,0.00649476,0.962478,0.821425,0.326388,0.836492,0.218488,0.483787,0.933881,0.541085,0.155173,0.490993,0.248038,0.919791,0.00714475,0.837529,0.525291,0.334785,0.25418,0.579144,0.822032,0.420654,0.505252,0.83868,0.0357652,0.14095,0.547085,0.326962,0.427839,0.312621,0.0174832,0.213501,0.0450663,0.974998,0.629631,0.0501972,0.755185,0.650959,0.177031,0.88538,0.369263,0.732946,0.508499,0.365719,0.528146,0.657398,0.780413,0.164564,0.433461,0.00799477,0.769212,0.944215,0.0244507,0.279585,0.705685,0.349365,0.913991,0.53797,0.964258,0.227186,0.978838,0.383993,0.117415,0.726093,0.232308,0.151494,0.241682,0.95558,0.440604,0.443775,0.608568,0.916318,0.391367,0.00190079,0.7707,0.885318,0.0240009,0.955307,0.230036,0.637833,0.433757,0.608566,0.402472,0.136373,0.0351908,0.584029,0.241181,0.645935,0.516175,0.572201,0.243765,0.257321,0.906957,0.1913,0.860624,0.308569,0.574281,0.807812,0.057072,0.753806,0.979109,0.621572,0.492374,0.64668,0.433813,0.42099,0.0380964,0.0324544,0.772821,0.669663,0.126087,0.457154,0.584609,0.0591047,0.780347,0.413611,0.567491,0.536811,0.0848864,0.556615,0.722419,0.31636,0.133517,0.831013,0.394317,0.116869,0.458966,0.00960737,0.703339,0.682937,0.28949,0.975746,0.471198,0.854163,0.214306,0.411064,0.0634103,0.251693,0.53389,0.557557,0.18744,0.956464,0.131416,0.721666,0.271431,0.568491,0.568817,0.178007,0.743427,0.473236,0.393857,0.0228337,0.718541,0.36204,0.0245208,0.975406,0.0757915,0.334029,0.408406,0.51931,0.725785,0.785662,0.38752,0.834681,0.890368,0.904122,0.492595,0.674228,0.203697,0.466261,0.002294,0.661216,0.922217,0.81544,0.803176,0.776113,0.40382,0.162304,0.143377,0.499102,0.0274537,0.125237,0.498526,0.276478,0.591916,0.146245,0.215371,0.661672,0.376633,0.993914,0.238215,0.582388,0.953187,0.460203,0.837373,0.0820767,0.621187,0.811982,0.828643,0.508602,0.0810553,0.420648,0.473636,0.706336,0.579132,0.501643,0.711576,0.467241,0.751883,0.0674993,0.868449,0.744185,0.878757,0.156417,0.609063,0.4525,0.450282,0.935965,0.920495,0.952905,0.258358,0.00305587,0.255716,0.600862,0.501109,0.707746,0.449635,0.56611,0.898547,0.823197,0.517006,0.354969,0.890095,0.690822,0.144591,0.650338,0.582221,0.918476,0.686417,0.26925,0.511019,0.527682,0.95491,0.273007,0.557694,0.676297,0.0557494,0.917656,0.289974,0.0176315,0.793103,0.277475,0.644844,0.0357241,0.2748,0.483952,0.509298,0.930449,0.361054,0.714908,0.381596,0.846083,0.49296,0.736384,0.119355,0.854248,0.223722,0.212415,0.473375,0.686026,0.19127,0.812531,0.734303,0.736495,0.348021,0.368697,0.844144,0.718027,0.138009,0.511293,0.631474,0.645398,0.889239,0.0047735,0.189214,0.981163,0.519983,0.0275759,0.772827,0.50394,0.0697539,0.453268,0.970426,0.687651,0.543899,0.375577,0.765878,0.209835,0.107554,0.48921,0.479482,0.402476,0.588932,0.565699,0.853002,0.659577,0.644193,0.555338,0.64824,0.584838,0.213166,0.658697,0.08689,0.271146,0.845883,0.231789,0.496752,0.132018,0.625324,0.551796,0.812776,0.138875,0.761545,0.282799,0.248964,0.072539,0.968262,0.895525,0.0831428,0.695418,0.355269,0.376807,0.0630351,0.0833095,0.212218,0.400746,0.42547,0.72407,0.763056,0.374327,0.021482,0.124051,0.0573323,0.478716,0.785544,0.888981,0.477184,0.991788,9.64999e-05,0.740035,0.103328,0.129648,0.31192,0.385902,0.182368,0.572697,0.986106,0.688107,0.235734,0.845266,0.412999,0.410224,0.978016,0.83116,0.639232,0.608669,0.72624,0.217735,0.768117,0.616331,0.775749,0.34032,0.66081,0.964739,0.171819,0.0171561,0.888029,0.618501,0.110598,0.291692,0.112956,0.84667,0.109244,0.942187,0.371267,0.443456,0.652573,0.935961,0.418973,0.711019,0.956661,0.487361,0.287181,0.554262,0.376345,0.846187,0.0807972,0.575641,0.950402,0.470747,0.614241,0.716695,0.873263,0.794504,0.549667,0.992259,0.796219,0.607889,0.624017,0.0527367,0.172999,0.306533,0.316055,0.838658,0.126933,0.818261,0.382356,0.94871,0.406775,0.311619,0.330736,0.743811,0.715395,0.262154,0.672537,0.0915762,0.237793,0.438013,0.0362588,0.676556,0.342845,0.873405,0.774959,0.510558,0.296986,0.0120273,0.0115334,0.211616,0.659303,0.142111,0.601036,0.0524487,0.118162,0.953878,0.644632,0.151929,0.439326,0.298737,0.104578,0.329204,0.0961614,0.407657,0.954832,0.961382,0.729068,0.879456,0.243414,0.309361,0.870898,0.172183,0.884701,0.251018,0.806277,0.634764,0.488591,0.787653,0.344886,0.58474,0.187877,0.390875,0.381147,0.431937,0.315359,0.467801,0.844206,0.995376,0.492435,0.283246,0.756811,0.196138,0.366207,0.842778,0.0434318,0.214439,0.644688,0.0775698,0.761617,0.473149,0.736506,0.652584,0.21587,0.832325,0.632591,0.0021798,0.196031,0.823662,0.23789,0.289242,0.547471,0.560923,0.169174,0.725221,0.13617,0.0853856,0.45124,0.343758,0.990456,0.308657,0.380625,0.737812,0.866133,0.926286,0.964944,0.703093,0.996479,0.0479471,0.89088,0.677045,0.911061,0.247132,0.386967,0.0515998,0.101465,0.504355,0.645741,0.529366,0.791219,0.0288914,0.153915,0.53015,0.505595,0.828739,0.454699,0.608685,0.171465,0.164369,0.675224,0.102883,0.249346,0.7183,0.699476,0.271748,0.140155,0.423742,0.680491,0.260064,0.576976,0.690589,0.877251,0.483647,0.960443,0.633318,0.428762,0.173392,0.684348,0.115989,0.803206,0.134772,0.537293,0.934911,0.308621,0.913197,0.89025,0.952632,0.622898,0.58116,0.517537,0.516489,0.545612,0.889647,0.503472,0.230371,0.00405294,0.183083,0.512191,0.0532709,0.278311,0.633654,0.984138,0.29486,0.953398,0.616928,0.893622,0.419235,0.277026,0.403227,0.758927,0.898609,0.923397,0.235435,0.0630264,0.62974,0.220875,0.54521,0.547445,0.187389,0.111206,0.4049,0.859374,0.230794,0.453765,0.658108,0.627486,0.172396,0.424291,0.465118,0.452208,0.386534,0.0514925,0.713641,0.577509,0.448342,0.628598,0.222822,0.263051,0.93317,0.547156,0.526787,0.430857,0.920947,0.21689,0.261767,0.32485,0.734092,0.72991,0.530479,0.200869,0.573503,0.511561,0.924107,0.64268,0.318084,0.0209015,0.17457,0.787365,0.14662,0.198552,0.0151592,0.535602,0.639238,0.291936,0.292649,0.578783,0.665697,0.891437,0.535578,0.862204,0.509662,0.667239,0.790875,0.0135493,0.340598,0.208194,0.405598,0.169446,0.701177,0.523556,0.448696,0.508496,0.444657,0.266454,0.246209,0.110159,0.197024,0.311576,0.188251,0.223581,0.880063,0.29655,0.465118,0.156407,0.872776,0.421837,0.956597,0.177918,0.988617,0.791822,0.427316,0.539955,0.245701,0.184524,0.578802,0.259205,0.170057,0.32493,0.391123,0.213065,0.532316,0.607922,0.783426,0.727914,0.126459,0.481193,0.827313,0.657326,0.406764,0.18819,0.469143,0.629111,0.308847,0.176474,0.859203,0.782127,0.651613,0.123217,0.365216,0.29726,0.217665,0.354348,0.0816588,0.373606,0.880908,0.494125,0.914676,0.0172588,0.141208,0.899954,0.567017,0.315696,0.366905,0.450066,0.25714,0.169889,0.100922,0.400249,0.589639,0.983996,0.768774,0.690074,0.352162,0.728983,0.474433,0.330742,0.921129,0.277432,0.15074,0.390581,0.431787,0.48242,0.940133,0.985796,0.818539,0.590261,0.50145,0.224946,0.348808,0.325667,0.428357,0.648234,0.328577,0.719808,0.0811852,0.924634,0.912868,0.328012,0.823524,0.91892,0.339753,0.975479,0.863525,0.0432945,0.536174,0.961979,0.592953,0.501369,0.393645,0.956773,0.993345,0.640003,0.869729,0.0603203,0.0646345,0.7571,0.948392,0.464449,0.805337,0.454925,0.0483968,0.320845,0.544253,0.809294,0.528012,0.254936,0.0805022,0.606852,0.122692,0.475755,0.599225,0.815939,0.638197,0.707334,0.177059,0.147169,0.950607,0.567434,0.854271,0.446664,0.450691,0.308681,0.883761,0.0617909,0.663124,0.0153503,0.882276,0.78244,0.756334,0.639286,0.512009,0.486753,0.815104,0.519593,0.537712,0.165002,0.840784,0.249668,0.604968,0.611936,0.320818,0.879522,0.251872,0.591635,0.241086,0.00140458,0.355217,0.49593,0.578548,0.713688,0.789289,0.349066,0.969129,0.487467,0.327865,0.504553,0.905972,0.455408,0.941513,0.15054,0.235422,0.451787,0.949029,0.576822,0.571312,0.926968,0.184526,0.720474,0.825184,0.160953,0.0860219,0.96003,0.967993,0.151568,0.339954,0.333057,0.324717,0.604428,0.923727,0.0340364,0.997067,0.851674,0.00449002,0.601659,0.965027,0.265591,0.462022,0.138679,0.389082,0.11763,0.727834,0.332404,0.284232,0.885245,0.550262,0.451356,0.487455,0.997439,0.192917,0.798233,0.427431,0.279529,0.601954,0.633957,0.529957,0.166329,0.56478,0.992237,0.155873,0.603237,0.217466,0.915602,0.531771,0.788083,0.120205,0.900412,|0.15985,0.924845,0.500334,0.53395,0.475255,0.404517,0.342634,0.114898,0.494206,0.404872,0.522602,0.770529,0.0926517,0.0698302,0.27085,0.801054,0.120692,0.533742,0.824648,0.387416,0.0377311,0.913441,0.717065,0.141328,0.44002,0.039919,0.885873,0.25336,0.129317,0.95273,0.760396,0.478077,0.719089,0.128469,0.818432,0.989759,0.0315247,0.476577,0.695165,0.873314,0.0220461,0.986945,0.55934,0.914903,0.903595,0.830913,0.388025,0.20663,0.697197,0.580839,0.113823,0.179893,0.0059008,0.990081,0.150192,0.333679,0.141217,0.0738857,0.100561,0.555158,0.200337,0.768117,0.0175361,0.443283,0.810041,0.156347,0.953682,0.760876,0.165729,0.609409,0.880874,0.45509,0.549325,0.309656,0.0111354,0.820924,0.136327,0.581079,0.41013,0.199931,0.359419,0.784512,0.167964,0.447271,0.6473,0.0884988,0.217844,0.962806,0.863227,0.545183,0.742709,0.354919,0.19178,0.343128,0.703704,0.23427,0.453677,0.726847,0.793526,0.910784,0.662876,0.804013,0.377562,0.603372,0.249549,0.853267,0.270498,0.75282,0.0896555,0.908257,0.229921,0.963788,0.730103,0.309488,0.656488,0.303671,0.593517,0.12108,0.304573,0.778904,0.441737,0.911299,0.581329,0.0523824,0.874794,0.037227,0.902927,0.719567,0.28738,0.383512,0.956037,0.626365,0.609089,0.381803,0.359843,0.724317,0.893631,0.673338,0.0909564,0.00999415,0.289264,0.021318,0.577937,0.0788443,0.358751,0.189833,0.652207,0.176703,0.213783,0.469805,0.032824,0.0613974,0.181142,0.844495,0.213076,0.929085,0.371304,0.223276,0.356617,0.901606,0.537932,0.552603,0.751513,0.612705,0.447708,0.8814,0.0206467,0.770624,0.719506,0.453071,0.865937,0.509111,0.769907,0.418467,0.44574,0.641887,0.337562,0.393591,0.354678,0.647856,0.672173,0.199826,0.393948,0.70718,0.204249,0.105296,0.357791,0.998639,0.413008,0.538902,0.679584,0.997748,0.516753,0.3159,0.66181,0.596621,0.294978,0.563285,0.795147,0.036038,0.122343,0.11937,0.877038,0.102505,0.112736,0.718227,0.708196,0.696591,0.135437,0.503174,0.630932,0.0919432,0.895021,0.829227,0.39377,0.739233,0.573733,0.59078,0.524562,0.746438,0.46465,0.775729,0.587714,0.977745,0.680961,0.64885,0.443065,0.742403,0.610227,0.358097,0.78352,0.785967,0.994062,0.569115,0.636714,0.51834,0.909214,0.241241,0.0663159,0.144343,0.563833,0.709108,0.522892,0.310525,0.278718,0.654436,0.738074,0.969927,0.0287721,0.253956,0.254796,0.930521,0.482576,0.12561,0.767026,0.718343,0.245599,0.164874,0.166049,0.264125,0.334012,0.331816,0.261085,0.417387,0.990556,0.819162,0.119178,0.165638,0.0530472,0.307466,0.533118,0.533792,0.918131,0.642191,0.211263,0.115651,0.273639,0.830232,0.652576,0.57317,0.64621,0.356912,0.465739,0.099758,0.403937,0.980502,0.59577,0.134768,0.205147,0.822918,0.487129,0.778068,0.984566,0.292739,0.870535,0.578515,0.499426,0.41744,0.745801,0.851018,0.0130727,0.652128,0.429872,0.412958,0.353977,0.506984,0.282126,0.891247,0.755399,0.657916,0.316306,0.277033,0.612629,0.188226,0.960475,0.665985,0.629496,0.326799,0.0966181,0.534064,0.0945405,0.94671,0.701637,0.863314,0.393959,0.164874,0.711484,0.719556,0.435438,0.162776,0.0901513,0.765437,0.977471,0.0358564,0.282583,0.281255,0.778615,0.568376,0.0593181,0.240247,0.81483,0.75186,0.707497,0.823629,0.874048,0.34631,0.633716,0.622947,0.937347,0.810555,0.417325,0.620933,0.965918,0.53389,0.420873,0.712983,0.934604,0.881593,0.615685,0.174961,0.53295,0.596885,0.83424,0.145425,0.993658,0.715516,0.906064,0.4857,0.0162337,0.404117,0.854048,0.475493,0.493381,0.0398547,0.614642,0.593461,0.741029,0.464991,0.267058,0.835908,0.104639,0.70502,0.137391,0.000641465,0.224612,0.506946,0.810986,0.4565,0.626899,0.229515,0.784707,0.0318719,0.135738,0.781584,0.294068,0.0392356,0.0741217,0.226015,0.448676,0.969888,0.972409,0.16897,0.0868191,0.108922,0.920018,0.476978,0.0423652,0.922716,0.00553536,0.525422,0.088465,0.818372,0.898023,0.825925,0.631862,0.32853,0.127461,0.139055,0.454415,0.432435,0.364196,0.404359,0.62375,0.368231,0.535631,0.722963,0.822854,0.149579,0.568305,0.970224,0.394061,0.331205,0.682347,0.609356,0.385797,0.22276,0.0451626,0.761884,0.537628,0.573397,0.991472,0.550175,0.0738952,0.103563,0.611769,0.294507,0.961252,0.723077,0.000644445,0.486227,0.11856,0.710422,0.426196,0.449189,0.496341,0.368476,0.300192,0.395519,0.633731,0.717708,0.524885,0.553097,0.505915,0.218056,0.52461,0.517699,0.32116,0.786846,0.748147,0.630469,0.944074,0.239623,0.511746,0.80685,0.415733,0.63916,0.169892,0.0143691,0.384692,0.884901,0.997351,0.737296,0.0558312,0.668567,0.809705,0.870759,0.862191,0.495012,0.454286,0.0331698,0.0483885,0.538456,0.308748,0.683504,0.781753,0.255094,0.486809,0.807803,0.238544,0.795109,0.950189,0.909528,0.57753,0.256533,0.424763,0.775616,0.0608034,0.8084,0.892444,0.605965,0.451072,0.0406953,0.0195166,0.460555,0.750172,0.194439,0.497318,0.146689,0.760329,0.968147,0.739387,0.398924,0.083555,0.0623509,0.840138,0.0952461,0.143324,0.596888,0.800147,0.195352,0.174982,0.70132,0.223496,0.69315,0.802149,0.480853,0.76802,0.2121,0.247648,0.392474,0.585421,0.620541,0.945534,0.638697,0.6228,0.668007,0.183059,0.130402,0.0509518,0.686616,0.582608,0.10777,0.450303,0.747486,0.811058,0.210034,0.613356,0.537702,0.860934,0.271257,0.441231,0.11862,0.462907,0.259023,0.826598,0.246972,0.599357,0.498775,0.0250319,0.178846,0.925939,0.5662,0.337524,0.850532,0.383385,0.530858,0.206915,0.21458,0.404914,0.581461,0.149685,0.227066,0.674542,0.777408,0.164408,0.776709,0.274998,0.742029,0.355515,0.0050354,0.961226,0.571636,0.653156,0.81359,0.996608,0.899945,0.566952,0.196903,0.506169,0.326124,0.731913,0.157993,0.723353,0.645609,0.771384,0.0322266,0.143032,0.380561,0.0337371,0.561091,0.576254,0.255664,0.0995874,0.0046708,0.59318,0.210547,0.0873967,0.533385,0.94038,0.0533866,0.0929262,0.952608,0.852136,0.989932,0.569909,0.344936,0.76843,0.00801837,0.458038,0.678158,0.250854,0.931506,0.00992328,0.0787616,0.118324,0.0973493,0.173335,0.698947,0.543693,0.659759,0.606312,0.522379,0.726567,0.652339,0.945408,0.280132,0.760923,0.373418,0.621701,0.493444,0.301303,0.0963504,0.0588952,0.00444353,0.238149,0.97678,0.435291,0.0781434,0.124002,0.341433,0.564301,0.809996,0.600517,0.0418094,0.0708992,0.577684,0.0671729,0.473566,0.88702,0.614875,0.351684,0.510306,0.26596,0.536726,0.134458,0.813387,0.981954,0.744493,0.561357,0.341427,0.3909,0.994493,0.805636,0.372438,0.441244,0.354473,0.110695,0.808959,0.501835,0.478303,0.683727,0.131325,0.150717,0.63106,0.608962,0.72461,0.616543,0.805744,0.341284,0.95182,0.769958,0.613219,0.791774,0.634524,0.271144,0.0634397,0.564506,0.202421,0.0799945,0.832979,0.313482,0.683008,0.796152,0.0582074,0.088374,0.0224577,0.612928,0.286977,0.118278,0.83043,0.185061,0.340521,0.394127,0.0525447,0.302533,0.523184,0.353707,0.0464526,0.222882,0.699843,0.933069,0.924422,0.606509,0.821663,0.758926,0.856442,0.216941,0.263052,0.72174,0.33584,0.00172317,0.596964,0.590337,0.822444,0.707165,0.410517,0.310774,0.208428,0.280566,0.674789,0.494354,0.0959366,0.0403868,0.584211,0.361956,0.0444515,0.680181,0.537358,0.856817,0.668662,0.710568,0.768813,0.14134,0.836691,0.239198,0.112845,0.453834,0.192181,0.186504,0.424402,0.90902,0.616118,0.862292,0.0560245,0.743789,0.978528,0.452751,0.631632,0.536088,0.00346899,0.727068,0.519069,0.849623,0.519835,0.417577,0.38774,0.185827,0.825299,0.749352,0.615759,0.627683,0.629124,0.0330986,0.0513162,0.770781,0.0567042,0.747019,0.356316,0.870744,0.458163,0.236539,0.567808,0.0196824,0.496132,0.503572,0.46551,0.925001,0.515691,0.523647,0.354333,0.332299,0.00185955,0.0972283,0.187869,0.579955,0.700397,0.650394,0.779029,0.176636,0.50783,0.349351,0.4359,0.190268,0.835431,0.865101,0.124265,0.516266,0.943897,0.871595,0.108156,0.712406,0.218438,0.669389,0.382133,0.526081,0.095019,0.397075,0.858695,0.714291,0.405808,0.560807,0.603859,0.0537292,0.950034,0.96813,0.221456,0.890448,0.00488889,0.577603,0.302104,0.473443,0.809217,0.759005,0.616317,0.354876,0.387111,0.0468022,0.315288,0.090032,0.620294,0.467672,0.0222686,0.589477,0.377078,0.565911,0.156873,0.25355,0.295399,0.657155,0.857507,0.339076,0.64748,0.693986,0.700968,0.786317,0.378707,0.720451,0.0736309,0.260823,0.693909,0.278444,0.290552,0.814953,0.711978,0.236499,0.0932091,0.624208,0.249739,0.528135,0.595528,0.87561,0.755769,0.0946671,0.796202,0.568197,0.711451,0.156466,0.511044,0.0141622,0.0958502,0.947027,0.130254,0.299078,0.746627,0.584157,0.404565,0.67841,0.322656,0.345823,0.197691,0.534902,0.988135,0.462307,0.602916,0.888927,0.428191,0.640032,0.0167232,0.68984,0.748104,0.87932,0.591375,0.973521,0.611501,0.281256,0.71884,0.746329,0.415494,0.910861,0.0895701,0.700786,0.248949,0.609195,0.250885,0.569965,0.338746,0.949347,0.405035,0.982016,0.531054,0.996835,0.192253,0.480014,0.510139,0.269151,0.130766,0.931367,0.643586,0.968897,0.0540971,0.684225,0.453208,0.424973,0.518498,0.147721,0.263465,0.554624,0.298452,0.500075,0.112644,0.746052,0.076553,0.0251443,0.411424,0.498706,0.619549,0.785357,0.466224,0.951762,0.0405384,0.960869,0.113212,0.275074,0.683999,0.453969,0.0407817,0.774457,0.61538,0.862398,0.740915,0.154011,0.580112,0.890064,0.514215,0.139746,0.0780831,0.696755,0.00126231,0.388975,0.275372,0.296408,0.544979,0.608477,0.0467874,0.939695,0.552141,0.329283,0.766027,0.648067,0.0780913,|0.969276,0.790659,0.688324,0.968114,0.657072,0.647432,0.0346221,0.814432,0.0958446,0.203387,0.748309,0.110979,0.785457,0.701964,0.996589,0.130209,0.743472,0.852812,0.0524293,0.466805,0.473614,0.134869,0.836619,0.454704,0.335273,0.673822,0.908454,0.360128,0.147449,0.782577,0.722056,0.107233,0.800436,0.190902,0.802102,0.035809,0.282169,0.727395,0.483614,0.156512,0.477596,0.765783,0.439119,0.439051,0.041455,0.891441,0.569198,0.171958,0.617168,0.385523,0.714275,0.91104,0.456235,0.600258,0.616999,0.349088,0.690218,0.757461,0.10204,0.955172,0.546134,0.270866,0.867736,0.5269,0.0760891,0.296095,0.130796,0.351013,0.910968,0.991168,0.820172,0.308393,0.126448,0.530423,0.709462,0.929411,0.295397,0.150986,0.140305,0.23311,0.884461,0.478185,0.653676,0.0167161,0.282077,0.179042,0.240018,0.264944,0.216525,0.629345,0.655214,0.418708,0.491006,0.332918,0.613083,0.735692,0.128228,0.740399,0.181946,0.164502,0.211292,0.592226,0.0739639,0.585831,0.262015,0.853783,0.94103,0.867123,0.413384,0.418814,0.948347,0.0630773,0.605818,0.433291,0.533428,0.137396,0.352204,0.0495413,0.722128,0.251769,0.699296,0.199146,0.271311,0.124896,0.718763,0.876784,0.421275,0.726224,0.686841,0.750645,0.586107,0.83898,0.319005,0.996314,0.633356,0.879911,0.0587304,0.990801,0.621706,0.166308,0.0807464,0.656032,0.84462,0.756691,0.800569,0.917082,0.28134,0.0232333,0.919238,0.591539,0.791499,0.460366,0.51486,0.936447,0.06629,0.83022,0.634782,0.260026,0.152866,0.250515,0.822793,0.387267,0.181891,0.822727,0.0292934,0.0725035,0.136622,0.433856,0.684328,0.713457,0.668751,0.758372,0.155149,0.192033,0.855242,0.260114,0.650627,0.563737,0.716533,0.537388,0.986147,0.00180268,0.0535609,0.913966,0.0980175,0.709852,0.385043,0.804472,0.575048,0.798909,0.905142,0.652749,0.563902,0.0506789,0.00137484,0.362929,0.941108,0.792759,0.531521,0.439577,0.0522918,0.248449,0.712444,0.915506,0.25208,0.329516,0.989704,0.790227,0.84241,0.800387,0.394003,0.721763,0.618148,0.332065,0.569638,0.436546,0.567689,0.522307,0.171615,0.152035,0.688515,0.493458,0.302755,0.61683,0.606256,0.0651467,0.103607,0.831138,0.949845,0.365247,0.129224,0.711237,0.772585,0.990335,0.480895,0.914256,0.524886,0.901695,0.774633,0.59123,0.262437,0.662939,0.230856,0.965327,0.566536,0.937587,0.109225,0.346928,0.160851,0.852722,0.737596,0.657413,0.0649732,0.0519506,0.966989,0.539642,0.323706,0.308983,0.647195,0.95222,0.351309,0.453534,0.729515,0.447123,0.0647857,0.336488,0.665205,0.470188,0.494474,0.43951,0.884947,0.935474,0.738174,0.0481966,0.104847,0.415868,0.269691,0.77359,0.543114,0.530648,0.992301,0.958448,0.883669,0.926932,0.00649095,0.0589939,0.882967,0.042658,0.855453,0.906502,0.698921,0.0655885,0.150706,0.554946,0.895401,0.212679,0.560609,0.623916,0.656848,0.330689,0.0253195,0.326873,0.503115,0.128037,0.275119,0.943415,0.0843375,0.685426,0.84798,0.0165698,0.28927,0.0289606,0.419191,0.514782,0.685195,0.149842,0.811769,0.846324,0.417683,0.468046,0.586615,0.842183,0.438618,0.755848,0.312971,0.267573,0.3898,0.412825,0.664037,0.879898,0.150177,0.886814,0.897473,0.625975,0.567731,0.798492,0.0361167,0.0898756,0.673984,0.341374,0.0378377,0.593881,0.983488,0.278069,0.0778063,0.387953,0.567311,0.768973,0.602264,0.60389,0.351712,0.82101,0.201726,0.991035,0.914033,0.0746747,0.758572,0.0428823,0.060914,0.48765,0.227465,0.00953174,0.811732,0.442954,0.428169,0.0458618,0.938887,0.748185,0.248702,0.143544,0.32769,0.398917,0.808596,0.461011,0.339738,0.163204,0.0535746,0.0442333,0.575258,0.0215397,0.96237,0.865503,0.624017,0.757434,0.36615,0.28679,0.48575,0.81588,0.122486,0.742784,0.902253,0.857332,0.996575,0.545465,0.495882,0.799663,0.781337,0.723407,0.0258804,0.0200092,0.0672597,0.867911,0.893349,0.439438,0.135672,0.283798,0.0515029,0.181565,0.696166,0.999522,0.276856,0.369095,0.499173,0.556933,0.829704,0.80285,0.904371,0.178369,0.855909,0.222946,0.429129,0.817519,0.892877,0.780861,0.800694,0.495746,0.339735,0.256429,0.810658,0.585819,0.341151,0.166565,0.173511,0.84537,0.801721,0.00766313,0.0684927,0.824992,0.0130724,0.563149,0.445201,0.662635,0.68471,0.192164,0.130014,0.212582,0.734961,0.100583,0.0578107,0.822501,0.534691,0.886416,0.252701,0.756265,0.128812,0.248995,0.83129,0.028441,0.80141,0.725185,0.60699,0.748758,0.056386,0.15218,0.39977,0.429367,0.0475401,0.545831,0.588876,0.300979,0.947682,0.055684,0.995719,0.242772,0.907072,0.44305,0.120453,0.565727,0.152901,0.549873,0.41834,0.44192,0.579271,0.322857,0.97864,0.908126,0.79907,0.439564,0.789219,0.523233,0.434087,0.638177,0.128463,0.13261,0.567761,0.898402,0.691968,0.323346,0.972982,0.0955887,0.714403,0.559775,0.952805,0.446662,0.00704747,0.613241,0.232672,0.110169,0.320759,0.46597,0.486458,0.996091,0.60349,0.815642,0.754556,0.920745,0.623342,0.618502,0.918014,0.850907,0.731773,0.899379,0.624804,0.607391,0.0356535,0.906766,0.708441,0.768073,0.605093,0.376244,0.278917,0.279386,0.493317,0.415272,0.265858,0.445289,0.919923,0.931633,0.917878,0.632137,0.383171,0.110435,0.916323,0.750457,0.548008,0.367552,0.115631,0.700417,0.147641,0.4399,0.859319,0.26314,0.76214,0.65737,0.513329,0.589063,0.154664,0.702616,0.766565,0.272581,0.424467,0.112005,0.777995,0.17527,0.255898,0.711119,0.257931,0.356435,0.0273628,0.576248,0.981515,0.881969,0.389065,0.953322,0.572204,0.583896,0.575474,0.249816,0.400643,0.861306,0.188356,0.655995,0.495487,0.369232,0.192834,0.58185,0.372555,0.0375559,0.860942,0.814038,0.685146,0.34655,0.629948,0.743523,0.969946,0.298731,0.640736,0.853545,0.923253,0.401193,0.590692,0.292704,0.448226,0.962706,0.210567,0.70269,0.998877,0.243553,0.51985,0.874864,0.419721,0.954176,0.887935,0.963902,0.960841,0.0353824,0.852813,0.632393,0.0817552,0.329692,0.557329,0.845894,0.151983,0.976245,0.689427,0.458283,0.684397,0.89467,0.142715,0.490639,0.248858,0.98125,0.303526,0.27884,0.717216,0.861701,0.957953,0.722454,0.397305,0.112293,0.56869,0.0903171,0.384288,0.484599,0.785208,0.711852,0.219726,0.964474,0.581502,0.00662827,0.385031,0.357,0.805355,0.152617,0.900145,0.912429,0.250233,0.695961,0.73834,0.235239,0.699727,0.472644,0.966135,0.0787751,0.281081,0.155492,0.821622,0.0315721,0.742573,0.693898,0.00930542,0.702562,0.682908,0.561682,0.363311,0.0202167,0.686961,0.176225,0.0739934,0.601523,0.727351,0.438464,0.466012,0.777157,0.668186,0.13575,0.737601,0.866445,0.731245,0.916971,0.147238,0.716055,0.037896,0.841853,0.88302,0.19162,0.888024,0.366903,0.569065,0.158221,0.725273,0.23869,0.582449,0.145383,0.524401,0.918489,0.347805,0.795634,0.788126,0.00657684,0.195596,0.028721,0.837771,0.880122,0.718668,0.902579,0.992451,0.593326,0.792672,0.912516,0.0869065,0.579345,0.254063,0.838268,0.539756,0.321597,0.242824,0.387674,0.372674,0.417857,0.672763,0.863877,0.953478,0.456127,0.844001,0.619485,0.0613221,0.406591,0.0951238,0.762546,0.70125,0.547916,0.326067,0.758876,0.283162,0.138066,0.88253,0.81674,0.232369,0.798926,0.0089705,0.26391,0.360327,0.417652,0.715745,0.577567,0.0255488,0.450869,0.797854,0.53694,0.93017,0.351115,0.718263,0.882091,0.458619,0.204962,0.306137,0.771043,0.846474,0.73365,0.188469,0.765454,0.604512,0.518057,0.178544,0.19301,0.640011,0.894756,0.0181752,0.851117,0.593436,0.531969,0.205987,0.583573,0.66196,0.321958,0.10677,0.297189,0.421617,0.5073,0.292989,0.585926,0.656431,0.974521,0.883795,0.465172,0.588145,0.949837,0.247311,0.825327,0.118973,0.112161,0.87239,0.822153,0.700504,0.946287,0.646749,0.432031,0.579485,0.384341,0.119569,0.085888,0.875861,0.417126,0.742029,0.602807,0.360385,0.286357,0.573458,0.753573,0.865374,0.85928,0.121734,0.248234,0.879642,0.886749,0.829744,0.809569,0.257072,0.751817,0.330423,0.00946611,0.346842,0.149775,0.264692,0.938438,0.993577,0.609731,0.673459,0.793004,0.483117,0.613356,0.284509,0.000845909,0.168879,0.631969,0.801652,0.52408,0.401119,0.781829,0.909478,0.241199,0.215162,0.257631,0.19019,0.312563,0.129837,0.751707,0.747757,0.679811,0.718802,0.237944,0.213781,0.131555,0.976389,0.484228,0.275488,0.524289,0.086403,0.739456,0.429398,0.380017,0.28087,0.831777,0.12329,0.840044,0.59696,0.227703,0.286924,0.1755,0.710217,0.321684,0.453771,0.329653,0.592575,0.832419,0.111798,0.706972,0.261617,0.385306,0.655627,0.128002,0.90223,0.371588,0.620933,0.519425,0.416658,0.0450476,0.48766,0.829483,0.352144,0.390179,0.443103,0.453683,0.915157,0.96761,0.3703,0.1637,0.88109,0.0267572,0.381519,0.708061,0.615599,0.246095,0.888176,0.74346,0.7594,0.633552,0.685228,0.392659,0.899578,0.696556,0.554106,0.114465,0.141763,0.930032,0.954644,0.404233,0.376799,0.0639244,0.907018,0.19731,0.0582668,0.100916,0.527392,0.377226,0.896715,0.565218,0.846117,0.961867,0.642736,0.980872,0.616981,0.00769329,0.365247,0.198292,0.116418,0.397378,0.150739,0.690693,0.122895,0.976676,0.722261,0.0019601,0.747063,0.185139,0.0333679,0.52109,0.116678,0.612442,0.151648,0.804041,0.468781,0.400037,0.581355,0.789812,0.00448841,0.23334,0.831473,0.701707,0.76474,0.12969,0.228921,0.572231,0.362454,0.000131607,0.218204,0.128272,0.887794,0.312036,0.377708,0.548417,0.36047,0.559319,0.494632,0.0485452,0.421345,0.85792,0.523277,0.676107,0.0262794,0.111828,0.783569,0.520997,0.138506,0.937747,0.569939,0.972242,0.458868,0.7908,|0.398593,0.681827,0.439034,0.87965,0.160798,0.142679,0.555063,0.0552951,0.977237,0.271066,0.337853,0.977511,0.741021,0.948007,0.410934,0.864811,0.791812,0.864232,0.583442,0.0640648,0.865529,0.479764,0.473072,0.111591,0.454858,0.141705,0.122646,0.664759,0.854234,0.550126,0.854153,0.426329,0.595837,0.557143,0.8057,0.370197,0.729002,0.0526513,0.09561,0.590754,0.591583,0.193215,0.411719,0.73506,0.223893,0.210461,0.0274354,0.410094,0.50289,0.893992,0.270896,0.55178,0.870003,0.120455,0.536528,0.312211,0.452296,0.676441,0.276559,0.678216,0.998334,0.340464,0.212458,0.255524,0.224349,0.270032,0.532397,0.20586,0.220276,0.640739,0.216371,0.618307,0.381782,0.532285,0.673196,0.500945,0.00666064,0.380186,0.903634,0.144254,0.757027,0.671568,0.211136,0.0136699,0.774832,0.62291,0.93379,0.962423,0.133326,0.498526,0.770961,0.812201,0.663023,0.303696,0.879641,0.788921,0.25612,0.441996,0.995121,0.352344,0.971751,0.815876,0.844162,0.396386,0.912757,0.586012,0.845533,0.238812,0.0920517,0.710877,0.809129,0.144312,0.718836,0.846413,0.25237,0.890658,0.997626,0.801799,0.947564,0.784553,0.606846,0.575584,0.0614937,0.285941,0.562034,0.21301,0.932019,0.0290806,0.279711,0.935364,0.928518,0.389892,0.0479356,0.988798,0.245642,0.304384,0.699125,0.396619,0.843791,0.746932,0.760211,0.11243,0.0148593,0.506158,0.621892,0.76093,0.926027,0.833591,0.683951,0.961293,0.923833,0.870704,0.0385259,0.921698,0.239093,0.809276,0.251451,0.392412,0.793668,0.548493,0.498515,0.697353,0.706307,0.445141,0.269009,0.80859,0.981972,0.647755,0.70436,0.566016,0.221703,0.700865,0.581269,0.745772,0.0667459,0.382137,0.333116,0.358295,0.370389,0.725893,0.430074,0.648618,0.348317,0.730318,0.785615,0.0187266,0.88785,0.414835,0.128529,0.0559453,0.0771152,0.0362355,0.633773,0.914818,0.188193,0.628412,0.246038,0.210281,0.438011,0.908164,0.510955,0.365699,0.249217,0.0124249,0.530121,0.153197,0.74853,0.787781,0.0126145,0.278725,0.544701,0.809799,0.035683,0.83967,0.463584,0.874574,0.434706,0.785588,0.566876,0.935892,0.0758815,0.473266,0.492135,0.181558,0.192937,0.441771,0.0127933,0.8224,0.144592,0.342877,0.583905,0.581469,0.918155,0.149653,0.773375,0.337444,0.574211,0.0364712,0.844138,0.827591,0.190575,0.943705,0.505404,0.607525,0.00947332,0.26822,0.186534,0.904159,0.469698,0.980366,0.938307,0.00489801,0.951668,0.206398,0.382156,0.965756,0.934648,0.686026,0.807191,0.0946575,0.753536,0.768559,0.906873,0.710606,0.0374478,0.916147,0.781063,0.697164,0.135615,0.979926,0.656932,0.718469,0.761592,0.836643,0.874982,0.668966,0.271479,0.615628,0.895474,0.606301,0.471186,0.385133,0.185034,0.0115675,0.313082,0.639414,0.603755,0.264971,0.284614,0.863343,0.793308,0.561924,0.825057,0.046828,0.404824,0.644678,0.456639,0.775692,0.0743802,0.64082,0.333181,0.723325,0.354639,0.328927,0.551091,0.0849679,0.0064072,0.188353,0.0830099,0.422902,0.560176,0.928683,0.735901,0.872925,0.498632,0.462925,0.877889,0.428362,0.998713,0.0879136,0.944153,0.369026,0.569224,0.913827,0.0220193,0.439474,0.831185,0.365912,0.935457,0.942703,0.317809,0.536932,0.328366,0.409922,0.0594813,0.228964,0.683631,0.0908321,0.513817,0.819454,0.672476,0.213374,0.357414,0.609719,0.697056,0.0539095,0.121573,0.0836138,0.00651371,0.268052,0.88563,0.489946,0.870575,0.636532,0.142642,0.156863,0.394356,0.269161,0.140579,0.151335,0.682768,0.327209,0.2859,0.327516,0.177162,0.538823,0.368915,0.728493,0.591706,0.973068,0.294731,0.859247,0.435673,0.911667,0.363238,0.96792,0.228562,0.647873,0.0661138,0.843835,0.312147,0.904576,0.926636,0.918789,0.885722,0.604154,0.766154,0.201671,0.852813,0.138259,0.703038,0.590641,0.738166,0.287463,0.736957,0.184877,0.174082,0.55759,0.247625,0.666782,0.687156,0.113121,0.917105,0.29585,0.0488753,0.0773015,0.134034,0.239156,0.688866,0.654318,0.864747,0.5846,0.835643,0.46613,0.668916,0.52912,0.796487,0.921391,0.922648,0.985078,0.734504,0.151369,0.145859,0.133857,0.00390005,0.379135,0.260383,0.517032,0.369011,0.180523,0.0864889,0.24308,0.628795,0.896024,0.369581,0.301047,0.543989,0.882875,0.162077,0.627706,0.0547446,0.452928,0.237392,0.0369603,0.369709,0.219406,0.497425,0.805346,0.361761,0.134623,0.576167,0.828762,0.722299,0.978162,0.691783,0.716058,0.17792,0.643216,0.682799,0.395727,0.222262,0.286806,0.378882,0.848094,0.67569,0.848618,0.360722,0.0813432,0.335349,0.772411,0.0378485,0.850075,0.0793943,0.200377,0.0307796,0.675397,0.188595,0.939804,0.220374,0.0717728,0.304721,0.710408,0.770833,0.247788,0.0914691,0.276183,0.399151,0.0854901,0.162124,0.698456,0.166648,0.747604,0.653035,0.668035,0.662383,0.752772,0.460021,0.979958,0.0309451,0.682855,0.481831,0.698599,0.763142,0.743097,0.872817,0.986173,0.831897,0.724623,0.111022,0.985553,0.420988,0.983193,0.209187,0.243653,0.299431,0.656841,0.429331,0.735198,0.9404,0.981335,0.604235,0.0670696,0.622132,0.130434,0.998267,0.639448,0.905858,0.165805,0.5525,0.244227,0.0970214,0.404682,0.0133813,0.780523,0.255832,0.425902,0.422145,0.857985,0.28823,0.39229,0.897986,0.915643,0.113342,0.57514,0.34067,0.178545,0.212889,0.320602,0.521292,0.241014,0.978111,0.709855,0.379132,0.672043,0.823147,0.544968,0.381639,0.658066,0.544432,0.662507,0.445166,0.813601,0.429251,0.629617,0.739839,0.533099,0.537651,0.883587,0.879983,0.932187,0.0141695,0.961974,0.0213056,0.276258,0.193635,0.654918,0.897533,0.618051,0.436289,0.904496,0.289643,0.481991,0.500867,0.500686,0.275975,0.00341523,0.972309,0.643273,0.265686,0.236436,0.865396,0.387163,0.459885,0.0917007,0.41933,0.0126998,0.777105,0.427,0.73584,0.607074,0.155327,0.121234,0.6738,0.205427,0.657803,0.940078,0.376019,0.658243,0.590579,0.769514,0.562724,0.00795317,0.102552,0.357456,0.137613,0.253306,0.804511,0.247383,0.821577,0.038922,0.857021,0.0809201,0.121378,0.0908005,0.662063,0.218323,0.914465,0.264485,0.0663483,0.918715,0.488963,0.908492,0.744632,0.547984,0.662114,0.0575005,0.0916401,0.891065,0.771373,0.544636,0.495467,0.404593,0.215075,0.0541733,0.256478,0.733256,0.798729,0.583155,0.147411,0.164652,0.792059,0.97658,0.355809,0.458527,0.911941,0.23785,0.946784,0.0292577,0.0185073,0.466615,0.489642,0.520837,0.11617,0.852686,0.139546,0.471435,0.884476,0.760714,0.49988,0.596103,0.99019,0.313949,0.813113,0.286906,0.819291,0.504396,0.47935,0.446792,0.619183,0.635919,0.511888,0.580112,0.506005,0.892626,0.0307128,0.553589,0.255971,0.473173,0.223865,0.695379,0.748484,0.870929,0.684894,0.98044,0.700578,0.809212,0.446661,0.236583,0.0851818,0.432059,0.556703,0.540338,0.298745,0.673481,0.957161,0.564375,0.980938,0.808446,0.59494,0.971055,0.225032,0.663419,0.939595,0.984637,0.0203002,0.259545,0.550941,0.527839,0.358466,0.00282413,0.25497,0.915786,0.334049,0.898157,0.218961,0.863703,0.256518,0.147766,0.894754,0.662198,0.158333,0.49617,0.84458,0.773184,0.25767,0.111615,0.585013,0.268276,0.75162,0.783332,0.622119,0.374808,0.892006,0.494886,0.903005,0.586101,0.97229,0.00506419,0.328169,0.304745,0.508063,0.810661,0.540267,0.612145,0.185395,0.611545,0.9037,0.0549584,0.780688,0.105049,0.166104,0.419631,0.892727,0.267836,0.458154,0.399501,0.553454,0.0776715,0.643455,0.233537,0.465072,0.95401,0.927662,0.664109,0.233762,0.660639,0.319994,0.398038,0.344996,0.25441,0.93677,0.128066,0.362851,0.468109,0.823053,0.95011,0.675471,0.591967,0.875484,0.203047,0.297621,0.22689,0.942952,0.0127018,0.371446,0.286229,0.7633,0.804482,0.584312,0.411483,0.183538,0.554422,0.804508,0.0144677,0.376684,0.816119,0.766484,0.720214,0.352923,0.740646,0.871422,0.227468,0.0664507,0.132073,0.079487,0.299715,0.541929,0.72038,0.0289819,0.842843,0.760454,0.87816,0.291772,0.669104,0.249047,0.37832,0.484275,0.222596,0.188172,0.70458,0.764526,0.62004,0.867482,0.44946,0.245061,0.658785,0.782341,0.15641,0.549199,0.799489,0.12466,0.0145329,0.822715,0.941996,0.525304,0.278,0.654543,0.07399,0.164423,0.57102,0.543998,0.214161,0.179579,0.395183,0.992518,0.865113,0.0618504,0.163636,0.247893,0.742207,0.0175222,0.616755,0.882613,0.667913,0.110842,0.0326809,0.834503,0.267412,0.706337,0.947078,0.590512,0.65928,0.475321,0.00521445,0.458579,0.115603,0.106001,0.910414,0.376838,0.0375785,0.917256,0.065181,0.866575,0.755102,0.126417,0.332289,0.285595,0.0425107,0.0163878,0.462207,0.362718,0.434189,0.990052,0.28568,0.79757,0.449172,0.365974,0.464677,0.312183,0.438493,0.971201,0.291246,0.213449,0.202189,0.831897,0.0546114,0.392668,0.587868,0.696278,0.483207,0.705522,0.894757,0.375794,0.730271,0.445517,0.262638,0.410793,0.203614,0.275732,0.92798,0.692097,0.713638,0.234039,0.349709,0.991194,0.173675,0.872465,0.671969,0.700207,0.562576,0.0248562,0.150943,0.0404313,0.01354,0.561244,0.621493,0.449255,0.837542,0.561044,0.965138,0.543259,0.0369591,0.186066,0.404031,0.602698,0.712513,0.235558,0.511168,0.138651,0.228813,0.318447,0.308134,0.790979,0.121296,0.494475,0.361482,0.60034,0.583542,0.634384,0.406521,0.601011,0.961013,0.329137,0.0696297,0.909871,0.0937768,0.891648,0.892383,0.325637,0.596215,0.532556,0.125913,0.846703,0.865453,0.508572,0.57434,0.803898,0.998552,0.0732489,0.0547124,0.624471,0.222146,0.589978,0.0355453,0.352717,0.102915,0.835714,0.751944,0.790789,0.33492,0.664453,0.361926,0.962532,0.775524,0.116528,0.604871,0.844209,0.857934,0.936493,0.0221342,|0.352343,0.210272,0.435287,0.337926,0.0964483,0.390995,0.103694,0.477286,0.81688,0.913467,0.754047,0.123051,0.149927,0.438457,0.210227,0.767004,0.537159,0.246585,0.930917,0.0106234,0.0220823,0.319047,0.668304,0.248852,0.588373,0.0775601,0.813567,0.752935,0.466297,0.100019,0.173369,0.911309,0.168543,0.0970561,0.182263,0.864951,0.564448,0.458668,0.182951,0.996472,0.85908,0.367304,0.835028,0.867975,0.168003,0.133119,0.432753,0.532704,0.900438,0.721012,0.0777918,0.847343,0.893191,0.32039,0.818552,0.556045,0.733083,0.0734977,0.571049,0.105467,0.270849,0.367307,0.0858806,0.767398,0.579844,0.492853,0.954668,0.0592442,0.866131,0.683619,0.160193,0.937703,0.00762141,0.669642,0.788256,0.755449,0.239629,0.598107,0.191195,0.457738,0.927059,0.899017,0.563356,0.374943,0.310801,0.516357,0.62213,0.236484,0.898046,0.916726,0.245564,0.206744,0.745838,0.664846,0.0691403,0.643216,0.0865258,0.593586,0.354617,0.721439,0.671743,0.558182,0.282384,0.621301,0.757271,0.0861146,0.00174439,0.515736,0.855675,0.763783,0.250285,0.487442,0.690482,0.688005,0.00823218,0.304933,0.958703,0.590726,0.1926,0.711773,0.329333,0.848202,0.0701221,0.753254,0.13149,0.29915,0.529523,0.679698,0.332287,0.412553,0.877783,0.0548329,0.666743,0.257098,0.812307,0.0899925,0.905458,0.809484,0.455682,0.688664,0.644608,0.0650839,0.229766,0.371806,0.711619,0.549474,0.299756,0.183202,0.548501,0.813453,0.194012,0.640441,0.453249,0.993744,0.346082,0.673821,0.503664,0.51671,0.510837,0.239246,0.738831,0.301231,0.595694,0.742512,0.54436,0.298739,0.683231,0.927463,0.131961,0.701912,0.901175,0.0468754,0.645622,0.0149751,0.660721,0.164267,0.391646,0.41711,0.205241,0.361801,0.543906,0.289685,0.135172,0.0245928,0.729692,0.14106,0.759491,0.856145,0.0822415,0.00522035,0.673954,0.344994,0.334057,0.918878,0.725114,0.669862,0.637701,0.208769,0.703283,0.509065,0.819661,0.907498,0.0261498,0.500937,0.600456,0.450206,0.872842,0.879454,0.837096,0.181844,0.149171,0.254279,0.247989,0.00849742,0.188173,0.841862,0.155457,0.200773,0.658238,0.739312,0.40989,0.391797,0.931757,0.302553,0.813771,0.433056,0.402519,0.431283,0.897755,0.154947,0.591232,0.0140932,0.542101,0.22357,0.984368,0.893793,0.59376,0.353781,0.676588,0.218517,0.69842,0.405813,0.225945,0.0709845,0.132651,0.421355,0.914735,0.085144,0.621599,0.635238,0.184727,0.993531,0.25105,0.988772,0.439736,0.993378,0.468485,0.214519,0.336308,0.145154,0.112068,0.0753446,0.793681,0.584086,0.0766411,0.468841,0.89031,0.396073,0.811962,0.468999,0.388909,0.640636,0.747839,0.10905,0.304491,0.672404,0.322933,0.460382,0.36615,0.86395,0.963181,0.124011,0.453614,0.0829998,0.081329,0.41896,0.249408,0.620114,0.117316,0.937173,0.710705,0.723732,0.42097,0.207026,0.757483,0.907859,0.528039,0.476583,0.376561,0.0219522,0.881909,0.325541,0.310062,0.0350501,0.0723772,0.663254,0.565885,0.627164,0.484048,0.0831844,0.309545,0.285905,0.117496,0.639063,0.844776,0.0284706,0.286874,0.922971,0.143812,0.0492455,0.285612,0.732173,0.48262,0.487292,0.0205737,0.451547,0.413632,0.762566,0.554614,0.835048,0.246442,0.232499,0.0397133,0.0613076,0.228472,0.151204,0.990755,0.194449,0.088534,0.207089,0.0744785,0.469292,0.87902,0.0942446,0.475746,0.998115,0.223348,0.490324,0.644072,0.398828,0.390803,0.583026,0.328076,0.488574,0.063227,0.11732,0.82628,0.357629,0.533469,0.630763,0.230192,0.176661,0.0426324,0.380688,0.520292,0.862512,0.855505,0.717419,0.932583,0.744447,0.732786,0.231124,0.545868,0.794066,0.194681,0.78114,0.508949,0.0461857,0.968426,0.147258,0.772274,0.967073,0.000473976,0.113039,0.338883,0.513721,0.77675,0.601309,0.909673,0.0112746,0.525814,0.0736248,0.806375,0.51797,0.466505,0.9825,0.216677,0.0999624,0.589679,0.0280987,0.982071,0.836914,0.44001,0.786798,0.0314482,0.367844,0.352458,0.260832,0.921059,0.936633,0.0373961,0.646455,0.154518,0.734571,0.929129,0.792881,0.934361,0.269444,0.855499,0.638056,0.635521,0.41124,0.756641,0.911978,0.207992,0.747341,0.478323,0.278678,0.501923,0.0124187,0.261249,0.232554,0.330588,0.174173,0.555789,0.60834,0.980387,0.878678,0.114475,0.279497,0.559473,0.95344,0.930321,0.245303,0.185423,0.0116718,0.574983,0.397517,0.628633,0.898458,0.25725,0.853399,0.270041,0.765837,0.722732,0.245134,0.879225,0.327274,0.779002,0.548108,0.439427,0.82743,0.557461,0.894458,0.875611,0.53976,0.479898,0.883422,0.0449944,0.821059,0.844702,0.0537613,0.344828,0.359644,0.559592,0.248254,0.106165,0.394928,0.568919,0.375901,0.0887163,0.128774,0.565172,0.463192,0.990137,0.256719,0.859191,0.509899,0.891512,0.0919802,0.843315,0.558083,0.6336,0.105482,0.977439,0.660306,0.0289122,0.196575,0.776868,0.640215,0.292238,0.0499349,0.400554,0.179624,0.139107,0.921461,0.597503,0.141194,0.135394,0.616711,0.323964,0.652637,0.131219,0.119883,0.600333,0.234285,0.760294,0.205611,0.552753,0.767536,0.957434,0.418303,0.061436,0.283442,0.549203,0.674031,0.741738,0.775729,0.526536,0.136501,0.15879,0.54176,0.764531,0.744728,0.0569935,0.0594262,0.367131,0.994537,0.880122,0.397658,0.304733,0.234107,0.0877349,0.393761,0.586202,0.665038,0.268472,0.39036,0.407225,0.655212,0.104132,0.757692,0.986122,0.578976,0.704412,0.118399,0.0515573,0.992044,0.153422,0.869698,0.41257,0.132465,0.133929,0.105589,0.197395,0.332849,0.650479,0.984362,0.97778,0.443984,0.191228,0.152301,0.614873,0.873657,0.304621,0.181629,0.949964,0.714889,0.397961,0.556782,0.110859,0.952427,0.109253,0.132077,0.915308,0.211509,0.732107,0.649896,0.0291598,0.301176,0.923086,0.956698,0.920731,0.867668,0.943281,0.243919,0.420995,0.714489,0.0408863,0.596767,0.415428,0.138929,0.154676,0.752073,0.573703,0.38181,0.991779,0.96809,0.936803,0.262467,0.258002,0.806368,0.718471,0.716848,0.213961,0.470853,0.853766,0.620117,0.812228,0.964021,0.453443,0.302163,0.832787,0.833379,0.00177133,0.311383,0.614868,0.324797,0.0192045,0.740355,0.560722,0.75569,0.361604,0.921171,0.677479,0.909766,0.0855634,0.598923,0.13771,0.293676,0.221041,0.257719,0.557566,0.273791,0.933788,0.896276,0.411669,0.845475,0.0306709,0.443077,0.706397,0.0474335,0.0539761,0.957858,0.756209,0.821595,0.14143,0.237166,0.924925,0.999854,0.901166,0.545285,0.540602,0.477223,0.128371,0.25761,0.993945,0.132409,0.212472,0.235412,0.889008,0.336129,0.859712,0.587395,0.652423,0.071636,0.460945,0.826653,0.491214,0.431918,0.0119942,0.762218,0.141787,0.546449,0.248861,0.19567,0.142895,0.26913,0.86178,0.657798,0.213611,0.773969,0.956105,0.582729,0.83304,0.497889,0.470168,0.221473,0.621675,0.454558,0.347606,0.73042,0.567653,0.244471,0.428293,0.226807,0.270598,0.193783,0.905253,0.277978,0.383376,0.243749,0.327475,0.411027,0.274148,0.45254,0.2167,0.972337,0.687439,0.255343,0.374948,0.959975,0.109432,0.590941,0.976641,0.375904,0.209782,0.951247,0.100363,0.503407,0.477586,0.600904,0.795561,0.732596,0.0324546,0.66051,0.702288,0.399976,0.91505,0.301511,0.136809,0.363556,0.494593,0.248183,0.906288,0.377041,0.686505,0.607703,0.0062229,0.0459514,0.647969,0.00450063,0.68186,0.527003,0.402464,0.343337,0.931628,0.554854,0.885006,0.132992,0.852737,0.271632,0.658575,0.484529,0.528944,0.956319,0.541922,0.809416,0.892017,0.530266,0.879065,0.834392,0.503975,0.60902,0.44804,0.0275907,0.626593,0.426162,0.850456,0.785418,0.168149,0.285249,0.441691,0.70724,0.0348346,0.70007,0.59198,0.628161,0.921361,0.0208769,0.719021,0.621332,0.0191039,0.48359,0.856827,0.314915,0.86583,0.446535,0.283901,0.22056,0.0472496,0.082619,0.174314,0.258826,0.603592,0.423451,0.760977,0.703361,0.0253139,0.900344,0.123229,0.930158,0.837438,0.724872,0.855002,0.30269,0.507423,0.546126,0.104008,0.162798,0.781866,0.810366,0.762204,0.110538,0.602114,0.629632,0.591678,0.600425,0.71155,0.557042,0.993625,0.0304068,0.732934,0.118353,0.178428,0.666452,0.66581,0.386513,0.89588,0.832269,0.0848191,0.574875,0.461018,0.173215,0.665871,0.652407,0.213618,0.800687,0.642572,0.273031,0.309446,0.771751,0.828482,0.520055,0.882903,0.0572078,0.0646198,0.726534,0.937362,0.445299,0.663466,0.878772,0.658263,0.629459,0.536698,0.536195,0.138014,0.734521,0.287585,0.8688,0.40586,0.90342,0.863741,0.250462,0.714638,0.754743,0.489427,0.0330245,0.645464,0.699426,0.900997,0.00959134,0.198563,0.813352,0.711523,0.343382,0.324208,0.858263,0.405821,0.688652,0.723686,0.995056,0.483534,0.874712,0.187903,0.471237,0.077046,0.89256,0.780337,0.960288,0.794108,0.569256,0.473823,0.300619,0.967367,0.555104,0.911546,0.412968,0.887352,0.742336,0.523186,0.560711,0.438259,0.252868,0.112084,0.49742,0.30354,0.657903,0.950911,0.205327,0.0408471,0.90644,0.782025,0.842157,0.0784874,0.69491,0.459736,0.325284,0.091772,0.890129,0.59762,0.419685,0.966874,0.359275,0.205393,0.974128,0.181309,0.154215,0.36045,0.372485,0.135565,0.516467,0.890324,0.38659,0.577631,0.915928,0.44271,0.607405,0.78733,0.624338,0.635694,0.838717,0.255297,0.55289,0.619304,0.103122,0.745509,0.487154,0.0360831,0.584262,0.075532,0.758607,0.033478,0.835042,0.484785,0.520502,0.250568,0.540495,0.105067,0.845563,0.826621,0.0638393,0.694358,0.534315,0.834096,0.586259,0.445709,0.552785,0.249041,0.427288,0.26084,0.29332,0.101569,0.735316,0.923355,0.0349199,0.756847,0.292112,0.847517,0.517963,0.807698,0.0868984,0.160703,0.351168,0.883227,0.378224,0.535021,0.293847,0.0309083,0.647493,|0.69879,0.623142,0.919356,0.272077,0.380321,0.0952901,0.817264,0.931538,0.441009,0.983681,0.853256,0.416822,0.511238,0.465059,0.514522,0.084305,0.902662,0.69228,0.162941,0.227545,0.248018,0.986369,0.123627,0.453937,0.332904,0.84085,0.684678,0.901766,0.206323,0.0590209,0.408011,0.661876,0.821585,0.755447,0.482917,0.667263,0.281931,0.259585,0.0487055,0.673815,0.751919,0.253212,0.563642,0.314007,0.606395,0.976617,0.956392,0.754673,0.715458,0.419214,0.60795,0.207238,0.729433,0.174122,0.029951,0.519225,0.96634,0.246707,0.493246,0.684735,0.308337,0.803129,0.727507,0.159187,0.842759,0.973015,0.133275,0.0160429,0.500619,0.0237823,0.623619,0.0474476,0.771363,0.759035,0.624752,0.037611,0.440899,0.774173,0.66637,0.429006,0.541233,0.975805,0.509315,0.781466,0.940264,0.490179,0.781483,0.841231,0.190393,0.307955,0.0272507,0.153312,0.103697,0.300386,0.0868433,0.777665,0.162223,0.717059,0.705428,0.172632,0.871031,0.266829,0.807129,0.401017,0.975107,0.0931841,0.120747,0.318712,0.600519,0.0162349,0.967005,0.248621,0.353281,0.55295,0.174519,0.955375,0.123972,0.350527,0.610418,0.37424,0.403567,0.905106,0.0044679,0.979997,0.838868,0.753034,0.145624,0.611694,0.406045,0.109583,0.113549,0.996571,0.619307,0.0941334,0.322686,0.56945,0.478878,0.360239,0.0490891,0.474481,0.659045,0.614803,0.0888308,0.480475,0.690055,0.965812,0.879966,0.838826,0.0522208,0.137171,0.481346,0.493022,0.754103,0.909278,0.55369,0.50157,0.904704,0.702043,0.148373,0.257967,0.709941,0.0713255,0.372259,0.6385,0.0315225,0.660963,0.338975,0.988243,0.806932,0.161294,0.812081,0.241797,0.29557,0.4693,0.0811956,0.381901,0.644435,0.378738,0.138905,0.0320867,0.922148,0.222279,0.644788,0.0272601,0.170544,0.764424,0.750969,0.551757,0.937646,0.357177,0.85235,0.675693,0.0849612,0.468216,0.958769,0.152217,0.459338,0.859013,0.585071,0.00425571,0.766677,0.710493,0.951174,0.0117778,0.190451,0.242014,0.976712,0.74539,0.260113,0.65478,0.194841,0.12083,0.0820532,0.36639,0.510882,0.247315,0.601208,0.0637745,0.930649,0.254871,0.219356,0.70876,0.656461,0.620416,0.987448,0.675069,0.962754,0.609389,0.948756,0.963955,0.192841,0.933381,0.932783,0.254391,0.153723,0.705132,0.202813,0.846939,0.170824,0.937907,0.398541,0.0669634,0.980138,0.474663,0.283949,0.511999,0.0968593,0.0734798,0.739306,0.2354,0.339025,0.600673,0.196321,0.307802,0.687383,0.474808,0.91677,0.768155,0.514577,0.600727,0.436491,0.885888,0.904261,0.646912,0.256259,0.703138,0.681136,0.429045,0.305927,0.280774,0.71551,0.619329,0.254171,0.834265,0.927356,0.568326,0.317548,0.359974,0.646229,0.405408,0.18661,0.398693,0.211626,0.874787,0.623647,0.0278572,0.0632378,0.396959,0.38951,0.585701,0.563667,0.716058,0.612458,0.212328,0.925422,0.949987,0.54332,0.56633,0.608912,0.267631,0.0534882,0.320727,0.277844,0.258502,0.860636,0.193035,0.0339935,0.833582,0.610769,0.494383,0.481006,0.834072,0.349566,0.889992,0.449421,0.933712,0.411147,0.132609,0.575567,0.527463,0.773707,0.134946,0.84238,0.042752,0.307415,0.874178,0.763514,0.637418,0.429518,0.847525,0.400087,0.484519,0.98474,0.283671,0.0064019,0.565379,0.1479,0.952049,0.537366,0.804557,0.0552827,0.746417,0.95095,0.129929,0.402054,0.993977,0.187398,0.433437,0.438677,0.935662,0.785976,0.326306,0.250228,0.924144,0.30031,0.036347,0.0132789,0.221124,0.751899,0.71373,0.869926,0.648041,0.380381,0.0494661,0.996279,0.718699,0.60922,0.446367,0.859598,0.285622,0.834788,0.272717,0.360477,0.0531654,0.899719,0.300816,0.734751,0.860416,0.197204,0.537419,0.996435,0.214488,0.590056,0.578283,0.206796,0.648698,0.260141,0.289278,0.517169,0.775357,0.0464704,0.0212665,0.544624,0.0427072,0.570183,0.788246,0.92416,0.776803,0.506438,0.511883,0.238587,0.855582,0.592553,0.0956376,0.897038,0.244898,0.741471,0.792176,0.821945,0.940601,0.317866,0.161397,0.492472,0.781321,0.896202,0.757243,0.118987,0.273413,0.949761,0.965495,0.403785,0.767231,0.467846,0.372501,0.987838,0.97656,0.769609,0.797751,0.996381,0.253624,0.716314,0.0837651,0.837801,0.651872,0.13381,0.358729,0.493269,0.315039,0.103111,0.922978,0.804674,0.274768,0.48156,0.0787009,0.306872,0.589829,0.498638,0.199296,0.997405,0.414009,0.921197,0.20931,0.525088,0.554354,0.9282,0.587672,0.581311,0.69014,0.756807,0.493068,0.950492,0.729498,0.00553292,0.312391,0.655716,0.89082,0.771183,0.474557,0.308932,0.258855,0.0292237,0.867024,0.812855,0.611006,0.928081,0.299859,0.662355,0.436166,0.103258,0.625986,0.379666,0.645212,0.463153,0.966213,0.0936646,0.500526,0.248249,0.638614,0.0391005,0.602623,0.899644,0.394777,0.345852,0.252691,0.0170162,0.690162,0.64434,0.908255,0.880071,0.500901,0.0658912,0.707106,0.959945,0.822789,0.557579,0.0401812,0.460031,0.0963119,0.900982,0.580245,0.248741,0.436185,0.68905,0.716835,0.278524,0.405529,0.754944,0.130872,0.958883,0.189904,0.282602,0.637254,0.903859,0.998455,0.0312358,0.4422,0.370379,0.821043,0.342566,0.687485,0.137638,0.0325945,0.737706,0.0997455,0.461184,0.459183,0.0725104,0.129805,0.66687,0.811566,0.668675,0.178256,0.556568,0.0797677,0.528341,0.718974,0.0632897,0.497523,0.972766,0.222731,0.246638,0.969706,0.585433,0.983485,0.6571,0.238197,0.654656,0.675107,0.0697723,0.67274,0.603943,0.0946178,0.692511,0.800828,0.879409,0.779694,0.650484,0.433549,0.199891,0.137947,0.142172,0.0180438,0.575381,0.250214,0.221116,0.614139,0.292904,0.141974,0.179088,0.251086,0.730188,0.0510235,0.692633,0.315866,0.524408,0.606271,0.756798,0.371165,0.180023,0.935631,0.957938,0.425949,0.0633944,0.0650047,0.320002,0.108522,0.0398201,0.476846,0.364502,0.240001,0.24504,0.616329,0.724291,0.342548,0.6125,0.956337,0.937748,0.476941,0.69997,0.222903,0.835982,0.635875,0.516976,0.796512,0.00461614,0.0395769,0.442255,0.958295,0.703167,0.135109,0.395925,0.565202,0.823327,0.144113,0.407674,0.428785,0.369127,0.397069,0.434533,0.567319,0.39393,0.586784,0.774052,0.514713,0.879233,0.0838335,0.455161,0.241857,0.0162455,0.711911,0.171965,0.322069,0.0490439,0.394946,0.117322,0.585724,0.753733,0.0617133,0.263703,0.0882414,0.716619,0.556191,0.28651,0.707035,0.518924,0.606153,0.867085,0.434081,0.175485,0.0379908,0.68735,0.0184972,0.311133,0.459983,0.107329,0.73861,0.126873,0.654485,0.527851,0.905113,0.45236,0.582324,0.442447,0.160796,0.593141,0.4517,0.113433,0.190295,0.0168816,0.937115,0.992672,0.538893,0.975218,0.419777,0.928739,0.478515,0.142208,0.848761,0.536908,0.549304,0.393942,0.939884,0.294401,0.0167841,0.47626,0.61488,0.80635,0.351027,0.51258,0.465955,0.95725,0.0309149,0.737618,0.219031,0.731433,0.354949,0.838839,0.139822,0.84834,0.404477,0.126015,0.742226,0.0883664,0.38445,0.857057,0.387091,0.252266,0.754773,0.482748,0.177003,0.99411,0.886608,0.600192,0.50105,0.504534,0.472617,0.876996,0.274567,0.602014,0.175783,0.0953981,0.457603,0.513893,0.78244,0.816873,0.961835,0.880801,0.363295,0.649961,0.528036,0.35393,0.503,0.035314,0.818189,0.18423,0.537064,0.374069,0.403491,0.0930105,0.933967,0.561257,0.592069,0.997575,0.0630073,0.548431,0.600029,0.846905,0.297599,0.727842,0.225676,0.426483,0.484288,0.825657,0.200572,0.0990248,0.164604,0.724073,0.59038,0.218046,0.83957,0.713262,0.279868,0.881856,0.572231,0.234057,0.0336585,0.254995,0.232004,0.196825,0.731896,0.627207,0.269885,0.908575,0.132292,0.15705,0.547228,0.239883,0.152439,0.903852,0.557318,0.672841,0.465307,0.806023,0.597374,0.60319,0.33498,0.662744,0.687356,0.762478,0.34229,0.00898641,0.932155,0.413966,0.824065,0.730858,0.237135,0.406929,0.333767,0.673235,0.615759,0.291654,0.649845,0.679227,0.389837,0.577385,0.732023,0.0119901,0.932346,0.0443329,0.860793,0.938284,0.163855,0.905961,0.407003,0.831455,0.640179,0.767094,0.995152,0.466418,0.219627,0.801027,0.360206,0.534163,0.084989,0.155316,0.700761,0.573358,0.650174,0.891077,0.971008,0.525235,0.84471,0.576262,0.240411,0.844148,0.042334,0.395516,0.922027,0.408614,0.577441,0.222495,0.0386437,0.302986,0.343103,0.559461,0.413516,0.428927,0.899789,0.997269,0.532957,0.389263,0.00491607,0.769034,0.93414,0.328473,0.923985,0.812529,0.16368,0.79367,0.677214,0.512563,0.896254,0.95841,0.486706,0.621971,0.906822,0.786582,0.100449,0.0304651,0.185615,0.387259,0.404664,0.737303,0.330584,0.0154791,0.157978,0.955672,0.267024,0.833179,0.223348,0.984099,0.126987,0.540294,0.82841,0.419478,0.925613,0.25831,0.564818,0.538785,0.210244,0.450509,0.502366,0.470852,0.708,0.457361,0.40144,0.423472,0.462452,0.474244,0.0358427,0.469902,0.421587,0.0631008,0.909419,0.293888,0.38629,0.846448,0.41,0.373703,0.921221,0.0799124,0.921734,0.199117,0.275175,0.918246,0.411386,0.207275,0.545672,0.472794,0.819034,0.674567,0.572096,0.310786,0.460109,0.359684,0.79777,0.865537,0.763523,0.0848894,0.204279,0.170587,0.98816,0.757308,0.468592,0.567999,0.266613,0.219732,0.52647,0.651263,0.527792,0.405683,0.347793,0.496612,0.310289,0.280226,0.933604,0.398649,0.368706,0.52809,0.856376,0.184094,0.166267,0.690445,0.202346,0.0140702,0.193336,0.525541,0.39293,0.163129,0.840246,0.330031,0.656569,0.475115,0.592911,0.0767933,0.685741,0.557646,0.0287958,0.144042,0.0875946,0.194807,0.558277,0.391128,0.186346,0.280253,0.331746,0.33004,0.158056,0.0920848,0.541173,0.92916,0.810371,0.730247,0.85599,0.121203,0.386159,0.0938298,0.668804,0.333401,0.665248,|0.316804,0.611457,0.182438,0.856026,0.747715,0.92437,0.639656,0.463839,0.100699,0.57515,0.388228,0.844409,0.936496,0.374906,0.304942,0.900381,0.968911,0.992921,0.129185,0.756948,0.61914,0.560758,0.275882,0.0997911,0.93428,0.574127,0.496946,0.405173,0.455559,0.638659,0.68644,0.606497,0.721698,0.569404,0.618852,0.395004,0.315549,0.904125,0.486007,0.685774,0.940903,0.194656,0.555048,0.277276,0.918161,0.208407,0.417973,0.907251,0.205457,0.0526162,0.507139,0.181658,0.74571,0.635643,0.77295,0.331906,0.955936,0.48637,0.365041,0.167586,0.829805,0.263203,0.455043,0.475625,0.530243,0.354767,0.983528,0.285114,0.798462,0.527291,0.0831751,0.320786,0.857151,0.2952,0.918149,0.311185,0.987173,0.498335,0.65766,0.717371,0.619199,0.769687,0.365231,0.0310459,0.0455287,0.830364,0.846646,0.98686,0.488001,0.00130653,0.220239,0.861669,0.728047,0.710466,0.879859,0.679574,0.673489,0.424812,0.448556,0.0409571,0.961035,0.130464,0.457259,0.961646,0.927434,0.105837,0.628641,0.650788,0.090161,0.387216,0.44778,0.334681,0.856073,0.0302463,0.810248,0.454948,0.103413,0.28543,0.620869,0.779575,0.381186,0.689302,0.473895,0.705978,0.522436,0.754885,0.563123,0.145838,0.334406,0.639078,0.852576,0.465465,0.13658,0.436978,0.791591,0.0801085,0.098152,0.947761,0.0137629,0.226129,0.423974,0.657768,0.668225,0.61379,0.564996,0.244209,0.470577,0.349615,0.997548,0.718941,0.160452,0.286429,0.0367677,0.296554,0.0591202,0.274718,0.792238,0.30788,0.818812,0.119833,0.766682,0.184102,0.199986,0.222296,0.924415,0.522982,0.0707625,0.402252,0.880305,0.555668,0.923249,0.786707,0.923288,0.695482,0.481205,0.0690416,0.994349,0.189014,0.625154,0.524952,0.733229,0.325017,0.217983,0.618453,0.228635,0.778258,0.322319,0.552446,0.928103,0.382892,0.536009,0.0786289,0.304035,0.951425,0.224479,0.943231,0.681561,0.536336,0.656172,0.337843,0.263136,0.0364147,0.683949,0.936244,0.864,0.896312,0.145992,0.715133,0.158413,0.733247,0.142887,0.385902,0.195933,0.966034,0.960723,0.13869,0.528988,0.193241,0.042986,0.740583,0.201717,0.893964,0.572973,0.864061,0.23465,0.999405,0.918658,0.578026,0.969106,0.647845,0.263793,0.78873,0.935795,0.982359,0.143401,0.332564,0.365477,0.515909,0.777043,0.16232,0.13733,0.866817,0.461501,0.860492,0.557103,0.557483,0.524755,0.959489,0.791422,0.0206562,0.840106,0.819637,0.234761,0.787938,0.133228,0.440362,0.175264,0.34825,0.932827,0.151179,0.264913,0.101481,0.363681,0.968996,0.373535,0.537167,0.0917512,0.427009,0.047605,0.230154,0.674566,0.232617,0.0142608,0.410831,0.656783,0.553553,0.694648,0.662293,0.564232,0.846402,0.52297,0.577011,0.938005,0.0570425,0.661679,0.120573,0.122164,0.901684,0.995513,0.437796,0.552917,0.690871,0.639934,0.720873,0.661519,0.932495,0.387992,0.345139,0.332482,0.341767,0.93282,0.196337,0.5428,0.421819,0.172694,0.514628,0.0179687,0.624783,0.219481,0.53125,0.442937,0.0212755,0.137076,0.529006,0.834405,0.824293,0.896605,0.112101,0.225628,0.423871,0.602871,0.38675,0.730996,0.453237,0.00492293,0.497543,0.483014,0.451873,0.669325,0.223631,0.590104,0.652109,0.0628433,0.549908,0.905534,0.905851,0.313494,0.102954,0.345816,0.438731,0.154869,0.395811,0.853361,0.707618,0.499968,0.838423,0.0721239,0.15988,0.647425,0.589829,0.0858774,0.830228,0.802268,0.264657,0.333563,0.194889,0.870854,0.354466,0.325444,0.519467,0.723889,0.91988,0.205655,0.682032,0.494918,0.0473946,0.931075,0.138364,0.51139,0.951562,0.920672,0.179225,0.749571,0.507568,0.910798,0.000598907,0.0538208,0.587437,0.855518,0.951601,0.85951,0.86199,0.969965,0.396572,0.902092,0.305403,0.449046,0.833714,0.534025,0.262594,0.67414,0.735866,0.0673158,0.0259057,0.743243,0.936884,0.511225,0.496924,0.0316526,0.491301,0.539812,0.71531,0.259236,0.192168,0.7055,0.427751,0.527144,0.736837,0.805127,0.838507,0.327977,0.2663,0.176139,0.556755,0.776996,0.602256,0.853987,0.734102,0.286719,0.790667,0.916058,0.323827,0.670557,0.0852888,0.0740975,0.474065,0.16361,0.943706,0.354859,0.485731,0.161764,0.299392,0.192396,0.199375,0.00618845,0.651427,0.516429,0.164529,0.168247,0.951011,0.690144,0.357014,0.728234,0.0257152,0.749844,0.870147,0.958398,0.908853,0.914408,0.75275,0.698497,0.318936,0.852859,0.00249356,0.605698,0.801838,0.13076,0.787367,0.788499,0.922967,0.548399,0.730689,0.306294,0.0209237,0.189629,0.179985,0.441585,0.124965,0.446053,0.582872,0.514734,0.647282,0.399102,0.869826,0.529333,0.416842,0.450901,0.575797,0.444641,0.347958,0.989721,0.297275,0.182914,0.609809,0.612064,0.220599,0.347744,0.686058,0.0789375,0.396776,0.0494613,0.951378,0.219242,0.42305,0.990919,0.944983,0.204506,0.860626,0.480866,0.548001,0.233612,0.838167,0.268781,0.225818,0.283421,0.785115,0.738589,0.12736,0.768379,0.732308,0.619898,0.102927,0.0485288,0.725157,0.793097,0.375988,0.760231,0.848605,0.231855,0.873545,0.32513,0.284569,0.557318,0.250508,0.498791,0.854153,0.452436,0.579987,0.628805,0.47885,0.128801,0.813139,0.392574,0.376198,0.192944,0.431175,0.336496,0.25265,0.466963,0.975718,0.570475,0.247322,0.877788,0.850679,0.163704,0.756545,0.978222,0.555404,0.0199186,0.2187,0.355771,0.421277,0.0582626,0.500289,0.0178044,0.474614,0.130973,0.659127,0.299227,0.570119,0.817185,0.140155,0.648627,0.892304,0.987555,0.612426,0.720484,0.152556,0.640632,0.476643,0.147271,0.28605,0.432048,0.62123,0.982923,0.270979,0.23389,0.525168,0.572487,0.754854,0.383054,0.870124,0.805571,0.624433,0.273034,0.251599,0.016922,0.103198,0.898048,0.256742,0.156952,0.348154,0.00189114,0.900772,0.55692,0.0789575,0.291956,0.973726,0.723854,0.747744,0.229533,0.350183,0.820453,0.94145,0.350778,0.869318,0.126377,0.98257,0.294509,0.052037,0.807772,0.201091,0.644881,0.0138917,0.640357,0.855711,0.347959,0.461461,0.51838,0.01015,0.70453,0.322992,0.628907,0.389681,0.317273,0.279547,0.656689,0.925147,0.55483,0.87609,0.461617,0.183396,0.667703,0.732127,0.72862,0.489789,0.888467,0.702475,0.421676,0.920976,0.633653,0.0745575,0.898845,0.881689,0.669312,0.807528,0.156329,0.461018,0.88063,0.298538,0.435636,0.580925,0.541678,0.167874,0.802207,0.566794,0.50624,0.102454,0.828671,0.963665,0.627306,0.304511,0.050523,0.0382637,0.12552,0.7432,0.0379817,0.524627,0.886003,0.8092,0.902808,0.0833628,0.822182,0.810308,0.739044,0.977066,0.750784,0.572885,0.763349,0.719625,0.285461,0.765731,0.911158,0.218902,0.135943,0.400356,0.617169,0.064649,0.227188,0.818262,0.561485,0.892822,0.538008,0.126461,0.341674,0.988742,0.587979,0.783479,0.616472,0.603186,0.964436,0.144975,0.0378437,0.494691,0.957216,0.740328,0.395825,0.0160549,0.267165,0.317157,0.575081,0.971071,0.710653,0.039412,0.404677,0.397211,0.967107,0.700395,0.30043,0.371556,0.765443,0.99897,0.942195,0.505283,0.867369,0.371858,0.121013,0.876731,0.113025,0.131127,0.535875,0.0921278,0.607367,0.607768,0.622829,0.0382258,0.66039,0.233211,0.12282,0.0985968,0.416539,0.703463,0.279076,0.409563,0.185355,0.160998,0.108633,0.728443,0.0195712,0.417859,0.597626,0.335712,0.648684,0.202149,0.883229,0.378233,0.875078,0.535821,0.319251,0.599223,0.575285,0.459187,0.306671,0.658655,0.909687,0.842855,0.630242,0.972279,0.0204747,0.151737,0.1968,0.682494,0.526179,0.815753,0.401666,0.157151,0.530472,0.651599,0.896508,0.820105,0.208073,0.92818,0.381294,0.683221,0.380418,0.114647,0.432917,0.301722,0.508979,0.512366,0.336122,0.02588,0.00549263,0.723751,0.465947,0.142207,0.734594,0.634986,0.593376,0.248899,0.013912,0.80758,0.378956,0.75708,0.549094,0.484132,0.869024,0.97712,0.0663729,0.173152,0.0998293,0.701377,0.107226,0.451679,0.789848,0.424408,0.581784,0.567449,0.876976,0.332042,0.747534,0.621941,0.520574,0.684076,0.805909,0.0111822,0.389993,0.670041,0.317899,0.906911,0.197118,0.877294,0.809977,0.701128,0.517129,0.00528389,0.232448,0.553326,0.380031,0.413949,0.178488,0.038355,0.972864,0.919152,0.974801,0.433691,0.484832,0.393503,0.56536,0.20233,0.081198,0.649752,0.476494,0.612803,0.376147,0.494253,0.548555,0.94981,0.00918514,0.293575,0.886912,0.862478,0.0083133,0.994308,0.232503,0.246036,0.638545,0.587646,0.567621,0.564308,0.239705,0.392363,0.507902,0.0824229,0.758582,0.216511,0.0868116,0.20712,0.402017,0.805089,0.270453,0.743571,0.646492,0.0578921,0.0296055,0.600808,0.592817,0.371713,0.11282,0.493899,0.636111,0.789424,0.569198,0.00357568,0.00677848,0.979902,0.417304,0.111739,0.229466,0.909388,0.15002,0.380417,0.344517,0.370547,0.569389,0.915009,0.0857167,0.29006,0.0411125,0.355343,0.708701,0.292125,0.0949573,0.298374,0.241477,0.249846,0.847217,0.697508,0.410678,0.0177622,0.241239,0.127471,0.488296,0.235823,0.447394,0.98569,0.491004,0.924447,0.293622,0.126622,0.112555,0.151494,0.564826,0.376482,0.289355,0.102853,0.687407,0.858769,0.981586,0.0848857,0.816205,0.5919,0.527231,0.520713,0.758614,0.633748,0.354208,0.932841,0.307266,0.616969,0.430864,0.524568,0.0650511,0.147639,0.120189,0.616545,0.313069,0.0765047,0.09739,0.639578,0.890352,0.983501,0.937209,0.113359,0.557639,0.0353732,0.782237,0.338946,0.844382,0.186013,0.393405,0.786726,0.525867,0.777033,0.00450146,0.246385,0.178151,0.00995767,0.0933585,0.876239,0.646315,0.857138,0.457608,0.643074,0.715861,0.266224,0.805409,0.583161,0.00260317,0.837159,0.516676,0.875285,0.296624,0.983138,0.0863382,0.0266578,0.276072,0.222725,0.231277,0.608591,|0.829793,0.0305299,0.522258,0.201502,0.854751,0.762872,0.181783,0.632064,0.5337,0.246603,0.373997,0.598542,0.73495,0.76005,0.131153,0.276709,0.274834,0.144618,0.817055,0.212604,0.535451,0.616016,0.993674,0.730506,0.228413,0.412102,0.942666,0.530928,0.914686,0.607444,0.489047,0.80794,0.187794,0.909097,0.244981,0.537936,0.746933,0.378766,0.727227,0.558987,0.938052,0.35186,0.554957,0.646273,0.0157248,0.740112,0.834672,0.30296,0.719899,0.637919,0.355188,0.344258,0.0695969,0.523288,0.156556,0.712247,0.933791,0.121948,0.194783,0.129169,0.363551,0.481154,0.943354,0.0659048,0.770462,0.365423,0.582414,0.265726,0.554373,0.293198,0.109665,0.637874,0.0394361,0.399783,0.398216,0.085514,0.192357,0.475533,0.325577,0.358986,0.120382,0.360622,0.845047,0.28255,0.945517,0.179597,0.187895,0.567568,0.177237,0.989275,0.301772,0.541248,0.10621,0.571636,0.952778,0.455295,0.697468,0.432793,0.152029,0.820547,0.88368,0.255072,0.732296,0.603663,0.608248,0.79302,0.461918,0.303757,0.882745,0.340284,0.697909,0.510013,0.887289,0.862618,0.231446,0.321662,0.693786,0.431849,0.470423,0.477458,0.0434223,0.330184,0.375301,0.358355,0.800485,0.872759,0.408597,0.9818,0.790905,0.692877,0.110202,0.963599,0.644304,0.0194489,0.834545,0.268954,0.989526,0.0768369,0.319181,0.232094,0.637864,0.36501,0.563218,0.956253,0.411913,0.189291,0.880992,0.46177,0.624481,0.611523,0.052488,0.616105,0.705598,0.634077,0.871884,0.230925,0.430203,0.350889,0.581158,0.97133,0.376101,0.25596,0.308449,0.291235,0.217795,0.486594,0.810674,0.64183,0.999707,0.41127,0.282275,0.667889,0.255946,0.784085,0.0933686,0.33066,0.0297531,0.685383,0.259694,0.635126,0.518499,0.114824,0.224021,0.980335,0.392792,0.655501,0.126708,0.153343,0.327769,0.243358,0.14117,0.691815,0.609455,0.430333,0.312369,0.404472,0.902026,0.22089,0.938074,0.217659,0.420254,0.465832,0.0435423,0.135927,0.0825094,0.656532,0.238267,0.0139746,0.0479831,0.857161,0.452582,0.0954682,0.760909,0.00106192,0.934491,0.930336,0.289095,0.984673,0.878823,0.736113,0.464464,0.845026,0.704261,0.445938,0.486518,0.947731,0.449311,0.640555,0.893079,0.199437,0.54828,0.37845,0.0163298,0.0413678,0.628944,0.699126,0.308482,0.259798,0.478553,0.750535,0.44693,0.0604697,0.608146,0.708777,0.807229,0.330889,0.643352,0.497079,0.422045,0.302985,0.0624675,0.202284,0.835618,0.666554,0.254598,0.841766,0.59184,0.248336,0.185556,0.775187,0.488673,0.959851,0.105457,0.670078,0.430208,0.950627,0.235378,0.666899,0.116525,0.0493899,0.993184,0.932468,0.265364,0.978725,0.125625,0.920774,0.549628,0.0454388,0.77772,0.305451,0.482195,0.105924,0.461147,0.268224,0.296483,0.086399,0.605929,0.508769,0.929398,0.588605,0.249219,0.215085,0.0966443,0.128181,0.0919669,0.0263196,0.30018,0.473965,0.748667,0.649205,0.227824,0.119316,0.593529,0.539702,0.977333,0.0523333,0.222716,0.583852,0.775427,0.88091,0.472696,0.614975,0.338615,0.891854,0.569472,0.343784,0.573105,0.182355,0.355513,0.164913,0.900655,0.191885,0.650253,0.468521,0.707152,0.569625,0.345903,0.749647,0.910066,0.50103,0.577291,0.148637,0.628279,0.642988,0.424007,0.993645,0.515299,0.105763,0.541568,0.876672,0.742821,0.882135,0.309368,0.0839881,0.357409,0.0386972,0.176094,0.340014,0.245246,0.0774555,0.368993,0.767027,0.86209,0.849946,0.768113,0.656748,0.0229037,0.165288,0.489051,0.797221,0.847551,0.0203626,0.416024,0.604096,0.317462,0.643163,0.855716,0.41876,0.765641,0.151079,0.535165,0.510954,0.662942,0.715162,0.647647,0.717867,0.0843064,0.688652,0.0687451,0.30569,0.766769,0.451632,0.788273,0.828045,0.505552,0.727526,0.650974,0.0309143,0.783582,0.504291,0.777385,0.173431,0.044986,0.042705,0.986461,0.49969,0.383707,0.07895,0.749219,0.355256,0.615562,0.310696,0.781093,0.167286,0.624049,0.173918,0.202386,0.761176,0.61594,0.18641,0.500191,0.71098,0.306593,0.812997,0.0960822,0.41415,0.730798,0.182159,0.337296,0.707636,0.563593,0.0468944,0.276976,0.0823184,0.456059,0.353926,0.943238,0.0642807,0.868029,0.977112,0.763765,0.0732877,0.774219,0.480111,0.210294,0.845274,0.223368,0.588875,0.942609,0.570686,0.748396,0.206994,0.942944,0.318331,0.404502,0.969502,0.576323,0.801553,0.896682,0.261773,0.0123393,0.533804,0.756451,0.255244,0.892956,0.643318,0.776531,0.681379,0.25058,0.454992,0.965007,0.442408,0.308564,0.883105,0.506196,0.706204,0.278176,0.66384,0.140934,0.592286,0.80871,0.0647731,0.0549349,0.573233,0.204544,0.514368,0.481851,0.336188,0.583145,0.821363,0.0157475,0.400286,0.751523,0.419472,0.525352,0.0854169,0.79968,0.720411,0.902021,0.353955,0.679702,0.399213,0.682875,0.933399,0.921411,0.685219,0.376375,0.0224536,0.491867,0.799,0.403277,0.711472,0.870091,0.969973,0.420793,0.84192,0.226879,0.142298,0.428267,0.499022,0.910202,0.757008,0.0667694,0.6665,0.644911,0.0176896,0.733032,0.732758,0.839904,0.194512,0.0819432,0.362727,0.95753,0.00743538,0.954775,0.670889,0.178903,0.460803,0.531182,0.995925,0.230758,0.481133,0.109931,0.725866,0.322808,0.163692,0.000369966,0.70221,0.191204,0.961961,0.11524,0.295378,0.055216,0.783508,0.2682,0.227428,0.451392,0.847436,0.926232,0.925825,0.664156,0.403926,0.433134,0.868271,0.284951,0.492747,0.455411,0.517727,0.616719,0.288931,0.048078,0.864338,0.333348,0.700949,0.45782,0.178464,0.714739,0.355875,0.344743,0.953919,0.860378,0.51084,0.756169,0.808332,0.693725,0.476072,0.917884,0.760288,0.225427,0.74049,0.186373,0.414313,0.368672,0.169693,0.0271898,0.321854,0.741015,0.130749,0.599563,0.903215,0.458827,0.399492,0.667092,0.834524,0.247242,0.0484949,0.562503,0.62861,0.59411,0.466163,0.901557,0.421528,0.578262,0.00478023,0.552012,0.586441,0.887858,0.16805,0.820239,0.698276,0.108574,0.215768,0.565001,0.300701,0.483155,0.86998,0.242522,0.885897,0.942525,0.400231,0.0186872,0.983424,0.424195,0.171824,0.481596,0.0948842,0.589573,0.443384,0.824136,0.629731,0.745578,0.0991758,0.321818,0.88078,0.537358,0.101736,0.398421,0.792262,0.678665,0.911103,0.850586,0.0901229,0.64076,0.855445,0.138724,0.0174807,0.0588911,0.60517,0.156029,0.840011,0.834953,0.142542,0.779576,0.898528,0.581588,0.357653,0.92758,0.760581,0.871768,0.331378,0.907068,0.164403,0.424454,0.133017,0.410402,0.546406,0.541823,0.85208,0.346341,0.558453,0.584195,0.819955,0.921925,0.722674,0.662164,0.24847,0.906152,0.971517,0.672685,0.0546349,0.891587,0.336608,0.704138,0.197771,0.436849,0.655214,0.0900245,0.0404456,0.230522,0.946686,0.974013,0.406268,0.840446,0.900561,0.189688,0.421967,0.452571,0.536965,0.859897,0.949089,0.125941,0.617874,0.78844,0.154635,0.339574,0.345082,0.548364,0.74045,0.973805,0.474421,0.699033,0.857503,0.578681,0.503481,0.773274,0.604382,0.693844,0.669756,0.944717,0.11331,0.196901,0.235442,0.365822,0.335593,0.380583,0.934587,0.360756,0.482379,0.416409,0.415753,0.752688,0.736648,0.599688,0.424296,0.111845,0.751593,0.557829,0.64339,0.649859,0.722965,0.322703,0.00354964,0.942516,0.727146,0.463221,0.798717,0.228362,0.483539,0.170657,0.168732,0.114928,0.488571,0.387706,0.15814,0.687833,0.278894,0.7385,0.343747,0.382751,0.392041,0.900107,0.724247,0.427075,0.438861,0.919906,0.824328,0.505731,0.810759,0.0695806,0.0696591,0.172769,0.871707,0.697657,0.330513,0.81065,0.491287,0.850227,0.264475,0.114571,0.927968,0.877814,0.913936,0.117503,0.277827,0.184949,0.647353,0.465086,0.440038,0.876419,0.511323,0.559612,0.531215,0.665469,0.953599,0.0476933,0.37872,0.602827,0.862108,0.936438,0.668394,0.450036,0.3319,0.642776,0.300068,0.377372,0.207843,0.611057,0.86091,0.431271,0.654336,0.123896,0.289501,0.599516,0.618661,0.361689,0.142369,0.139928,0.998569,0.567035,0.346278,0.614788,0.019728,0.50632,0.337041,0.439566,0.190898,0.493062,0.695794,0.540769,0.302004,0.31401,0.087492,0.817241,0.258295,0.22678,0.932727,0.612396,0.837915,0.654036,0.197671,0.861921,0.375385,0.569363,0.405039,0.183047,0.975823,0.56028,0.297656,0.90911,0.933194,0.838201,0.464309,0.849055,0.758593,0.238943,0.755675,0.412093,0.719026,0.415566,0.812521,0.720573,0.169559,0.679171,0.209705,0.245367,0.246612,0.263793,0.222273,0.456042,0.161913,0.836213,0.256789,0.39971,0.241039,0.993945,0.6182,0.259341,0.654443,0.0308058,0.581439,0.0813552,0.68004,0.660438,0.812291,0.212259,0.984419,0.890106,0.881685,0.322323,0.480502,0.471621,0.613329,0.953443,0.922788,0.533267,0.614533,0.269632,0.283756,0.0389248,0.938921,0.402041,0.716083,0.289102,0.125238,0.929321,0.323197,0.643206,0.333385,0.138512,0.545213,0.147964,0.753199,0.294197,0.0747221,0.0315437,0.122404,0.280093,0.43412,0.0498818,0.124181,0.34068,0.88794,0.0606676,0.693083,0.400279,0.349693,0.467667,0.345956,0.022307,0.448374,0.938916,0.951325,0.426492,0.703826,0.972982,0.523158,0.038937,0.348426,0.785357,0.413073,0.277834,0.681355,0.298439,0.14842,0.509452,0.854638,0.161458,0.698382,0.757168,0.0342549,0.465408,0.74913,0.362291,0.882058,0.672478,0.167537,0.522599,0.562189,0.237099,0.743585,0.807183,0.901929,0.0339056,0.635862,0.322671,0.081175,0.313895,0.432072,0.683745,0.73061,0.289479,0.205683,0.776906,0.663996,0.0620464,0.888684,0.0342914,0.923931,0.160441,0.76103,0.845849,0.537436,0.757466,0.918012,0.470157,0.229382,0.710604,0.307735,0.429683,0.052415,0.811267,0.203533,0.190745,0.929082,0.837927,0.126939,0.0274956,0.246391,0.950412,0.783647,|0.144678,0.357896,0.550779,0.140819,0.100543,0.260475,0.995581,0.905849,0.861499,0.413871,0.891386,0.420054,0.662479,0.267349,0.982458,0.101407,0.764513,0.376098,0.47094,0.361571,0.602361,0.237164,0.0297468,0.990112,0.692108,0.729344,0.518496,0.636854,0.451024,0.234365,0.99135,0.212222,0.132122,0.395966,0.626079,0.491561,0.982143,0.401494,0.521438,0.957725,0.154249,0.264147,0.50667,0.291907,0.0323848,0.509801,0.621289,0.479206,0.127508,0.0760277,0.911142,0.0239408,0.344522,0.944206,0.236606,0.74675,0.164014,0.865987,0.312967,0.569773,0.998953,0.198799,0.404214,0.444739,0.0188847,0.361045,0.520921,0.273566,0.272811,0.285345,0.485113,0.917687,0.978258,0.469654,0.119857,0.0958027,0.915502,0.881623,0.423039,0.656063,0.374558,0.026316,0.786391,0.896687,0.182645,0.046892,0.1731,0.29732,0.74786,0.877747,0.457652,0.0230523,0.604136,0.0151837,0.462367,0.507871,0.360888,0.582142,0.517934,0.476264,0.782544,0.631893,0.945854,0.939623,0.624645,0.309575,0.0247488,0.0976278,0.667878,0.745796,0.781976,0.0196922,0.844413,0.381965,0.65798,0.330651,0.281353,0.920537,0.0916948,0.0408441,0.954146,0.0633097,0.721832,0.757781,0.497962,0.083649,0.357002,0.391295,0.644119,0.527114,0.538178,0.402993,0.179267,0.242074,0.516349,0.171847,0.559381,0.500562,0.195107,0.57906,0.807085,0.771529,0.766801,0.981831,0.350515,0.100174,0.532107,0.206228,0.41732,0.0848423,0.784641,0.636391,0.85279,0.255201,0.883312,0.332814,0.481562,0.951758,0.467368,0.955844,0.613114,0.350336,0.839025,0.0717019,0.780148,0.438901,0.211999,0.274255,0.729757,0.919936,0.775511,0.42712,0.816949,0.553424,0.470063,0.279575,0.608665,0.877315,0.457917,0.0152934,0.0839574,0.843425,0.804873,0.569071,0.790595,0.144235,0.672708,0.677377,0.662221,0.0150354,0.119814,0.541763,0.154705,0.0834284,0.328589,0.950329,0.297763,0.546775,0.0038681,0.0545419,0.789622,0.879046,0.644245,0.453621,0.493971,0.0608248,0.0593132,0.484495,0.0319872,0.946612,0.849136,0.926177,0.156574,0.137415,0.513127,0.74402,0.420363,0.286016,0.00386345,0.713552,0.875976,0.2276,0.687603,0.851138,0.82014,0.737142,0.326773,0.496674,0.0553792,0.0423014,0.129891,0.461882,0.235626,0.802424,0.48593,0.311383,0.209002,0.0917616,0.871222,0.476057,0.0393237,0.26882,0.549963,0.819821,0.00346208,0.656889,0.200931,0.229966,0.0824583,0.659429,0.161829,0.45763,0.211349,0.677297,0.798486,0.990314,0.723139,0.192225,0.862535,0.452623,0.329669,0.791578,0.174193,0.404858,0.481678,0.30481,0.970755,0.00192571,0.0327303,0.186675,0.0678348,0.879376,0.281477,0.39022,0.0481854,0.958122,0.670933,0.30533,0.927015,0.218958,0.400735,0.472328,0.72436,0.366921,0.617116,0.0290831,0.158963,0.454894,0.356986,0.341333,0.642964,0.78298,0.195654,0.896575,0.18091,0.339829,0.550001,0.10393,0.0569476,0.0445923,0.924407,0.819317,0.570306,0.703596,0.411383,0.301245,0.345485,0.835922,0.521265,0.557808,0.557664,0.685676,0.324927,0.640112,0.189969,0.0335566,0.526438,0.410318,0.488997,0.748064,0.926866,0.796667,0.544591,0.581048,0.933,0.826986,0.277716,0.0392557,0.170774,0.51382,0.471215,0.585893,0.617325,0.578447,0.653911,0.455276,0.994208,0.462667,0.400381,0.651129,0.674007,0.6267,0.881033,0.0155398,0.218142,0.489274,0.100513,0.737234,0.961594,0.0523989,0.858957,0.0736493,0.390281,0.193905,0.985674,0.438287,0.946456,0.279825,0.852123,0.984966,0.60567,0.505302,0.920494,0.231564,0.0260152,0.101182,0.755023,0.32721,0.961876,0.0567839,0.766052,0.458145,0.402915,0.194412,0.319774,0.60179,0.635775,0.745835,0.351101,0.43643,0.120817,0.695739,0.750885,0.779517,0.665629,0.004511,0.483032,0.637879,0.136468,0.689113,0.694941,0.0913658,0.0605008,0.891606,0.0963235,0.32297,0.0888918,0.354334,0.792688,0.234103,0.352268,0.152255,0.0644388,0.374159,0.564549,0.95449,0.617176,0.788654,0.115292,0.483741,0.605016,0.309128,0.629527,0.516138,0.169713,0.964465,0.108663,0.527103,0.550298,0.30862,0.649697,0.000730991,0.112325,0.222586,0.232869,0.76273,0.31597,0.456629,0.0779805,0.487413,0.661565,0.0854484,0.30704,0.204357,0.156468,0.694796,0.399737,0.478903,0.409784,0.69751,0.400123,0.226683,0.987114,0.460633,0.914681,0.929605,0.288915,0.295174,0.705414,0.806381,0.903304,0.115131,0.122196,0.99178,0.727249,0.770778,0.875295,0.531532,0.759819,0.193504,0.143165,0.829074,0.84477,0.397058,0.761176,0.728251,0.604299,0.679223,0.943498,0.958791,0.945669,0.975117,0.652459,0.427855,0.279424,0.924182,0.762623,0.940807,0.412766,0.615254,0.0825065,0.198886,0.367988,0.38066,0.878664,0.0462039,0.674066,0.300554,0.367275,0.796045,0.72394,0.251121,0.67552,0.856631,0.820155,0.441778,0.879167,0.282133,0.164237,0.0947522,0.490912,0.405836,0.728336,0.530345,0.776996,0.43977,0.374571,0.0393803,0.379983,0.105954,0.588346,0.842378,0.0782769,0.339297,0.298004,0.47429,0.712239,0.86274,0.675522,0.494822,0.475161,0.345185,0.758048,0.725349,0.356265,0.965582,0.534608,0.38461,0.950032,0.574862,0.142186,0.572315,0.520511,0.583335,0.164943,0.156873,0.771759,0.455816,0.527992,0.27372,0.762938,0.390023,0.576616,0.464376,0.221867,0.218284,0.536443,0.348884,0.840146,0.157633,0.326447,0.807487,0.65866,0.944472,0.676206,0.0596189,0.7476,0.196572,0.502229,0.216079,0.255343,0.377943,0.584931,0.115274,0.876243,0.522896,0.979485,0.206719,0.057646,0.652603,0.502299,0.338535,0.496775,0.39773,0.489172,0.968464,0.835212,0.717141,0.00961554,0.42274,0.715292,0.046742,0.131003,0.831607,0.013545,0.864603,0.912543,0.367036,0.754678,0.898308,0.00132328,0.586682,0.516404,0.450112,0.421536,0.909794,0.783864,0.883655,0.408421,0.726814,0.526652,0.0335133,0.647239,0.724711,0.667106,0.0079065,0.449956,0.985252,0.461229,0.642959,0.459554,0.387365,0.674214,0.674127,0.849683,0.852924,0.322038,0.565173,0.509672,0.558841,0.642313,0.704428,0.203777,0.991309,0.35949,0.100914,0.338542,0.985177,0.202133,0.383314,0.889101,0.496299,0.114204,0.453593,0.775529,0.423262,0.440457,0.0902716,0.963194,0.49085,0.728913,0.429182,0.223541,0.858465,0.146015,0.00949103,0.0877666,0.803499,0.0741549,0.214215,0.937002,0.533939,0.846715,0.899451,0.214657,0.932657,0.397861,0.121118,0.0666164,0.44685,0.229719,0.608198,0.683497,0.207558,0.133803,0.846488,0.792725,0.386608,0.347348,0.618275,0.0576987,0.260949,0.329025,0.572319,0.970256,0.778584,0.0272448,0.110987,0.865252,0.593191,0.0773126,0.32401,0.962144,0.617957,0.841766,0.892819,0.851014,0.549475,0.926603,0.158004,0.951356,0.72143,0.601676,0.651336,0.400816,0.57291,0.454509,0.373633,0.477868,0.946149,0.782485,0.959616,0.597969,0.958646,0.823189,0.0720057,0.53686,0.520312,0.10012,0.6472,0.960484,0.409269,0.446067,0.153111,0.193691,0.0707746,0.996272,0.939315,0.966566,0.531007,0.636498,0.333419,0.230273,0.465682,0.994166,0.788454,0.239428,0.113558,0.656617,0.565334,0.239954,0.0510061,0.858696,0.0156904,0.538484,0.26295,0.797745,0.738359,0.598044,0.891018,0.38053,0.0935354,0.962003,0.209195,0.868929,0.800056,0.472445,0.538998,0.0957927,0.960166,0.303831,0.930409,0.55114,0.73988,0.168423,0.353159,0.394972,0.929555,0.173355,0.906006,0.804625,0.939837,0.544001,0.40913,0.774085,0.490294,0.973808,0.0982575,0.964497,0.610538,0.546832,0.345465,0.969356,0.759925,0.174854,0.475562,0.679908,0.888473,0.883054,0.94285,0.0496827,0.44008,0.997088,0.44346,0.357151,0.045038,0.860799,0.97389,0.119105,0.33225,0.836621,0.230793,0.966577,0.914171,0.463446,0.209757,0.902733,0.672781,0.600796,0.950455,0.188436,0.318253,0.310154,0.0927173,0.00932211,0.499549,0.435125,0.885699,0.813702,0.185422,0.547657,0.91952,0.858508,0.320012,0.376743,0.339453,0.820637,0.850944,0.497349,0.236353,0.923155,0.858178,0.60673,0.568586,0.602665,0.0208393,0.628141,0.351979,0.647706,0.589613,0.333842,0.92716,0.545874,0.637929,0.28349,0.559111,0.99515,0.639026,0.156476,0.622476,0.963105,0.648237,0.67324,0.226824,0.726244,0.815881,0.269933,0.218465,0.232764,0.623352,0.243467,0.568435,0.637342,0.367675,0.806663,0.324302,0.128887,0.690026,0.568154,0.379393,0.916627,0.478996,0.32124,0.315214,0.938307,0.364992,0.137512,0.694217,0.0809671,0.325779,0.674071,0.601403,0.488665,0.985492,0.327932,0.0136053,0.20846,0.332892,0.0349858,0.716687,0.272582,0.118221,0.564869,0.639545,0.0639156,0.631688,0.856208,0.305942,0.578665,0.574419,0.626894,0.315691,0.462295,0.711454,0.32783,0.184319,0.699639,0.384982,0.0532772,0.427579,0.553072,0.280816,0.331512,0.512566,0.11642,0.838406,0.229221,0.319444,0.819628,0.474051,0.352055,0.0290813,0.378449,0.586159,0.518097,0.374606,0.444188,0.216017,0.84245,0.976601,0.894844,0.441569,0.734701,0.471717,0.757523,0.390538,0.298267,0.016643,0.903241,0.0237135,0.567506,0.671442,0.55238,0.501393,0.594834,0.0170924,0.880091,0.567552,0.83844,0.0811614,0.672194,0.611953,0.349016,0.788974,0.352685,0.500504,0.762232,0.181705,0.41355,0.337741,0.406058,0.233182,0.596424,0.272974,0.69101,0.860479,0.168381,0.197833,0.860086,0.819465,0.389152,0.382687,0.370191,0.8864,0.855153,0.000326753,0.532648,0.194921,0.0713868,0.1641,0.11584,0.143412,0.852581,0.777544,0.301232,0.206515,0.42289,0.199063,0.777836,0.708432,0.470759,0.136594,0.753543,0.634625,0.939101,0.0797447,0.674903,0.101849,0.186391,0.618661,0.673504,0.696897,0.110833,0.719826,0.0479424,0.189049,0.129934,0.973624,0.288891,0.0642285,|0.678012,0.410845,0.670154,0.887355,0.875575,0.946321,0.417593,0.224973,0.0730489,0.00456393,0.678689,0.736684,0.0189773,0.597501,0.728484,0.719471,0.294898,0.212072,0.290736,0.208821,0.891523,0.221803,0.74743,0.172968,0.684735,0.342979,0.875352,0.341708,0.578219,0.584155,0.814136,0.664348,0.983271,0.882078,0.707417,0.769594,0.229453,0.170128,0.877508,0.904454,0.259501,0.233339,0.577827,0.966037,0.855796,0.593244,0.637517,0.219213,0.983974,0.0859719,0.273125,0.589819,0.466997,0.319477,0.955391,0.741703,0.78252,0.580359,0.207079,0.261669,0.0232402,0.779913,0.685328,0.0291687,0.674658,0.0122219,0.379958,0.277258,0.643117,0.180226,0.483904,0.533844,0.921017,0.585122,0.578867,0.483062,0.163089,0.813253,0.820503,0.975083,0.381947,0.894215,0.362153,0.178498,0.214543,0.832586,0.420179,0.827643,0.668879,0.662064,0.742461,0.370264,0.306576,0.71015,0.296359,0.529011,0.117792,0.704455,0.571515,0.294951,0.433506,0.736857,0.194831,0.447166,0.461914,0.130176,0.75688,0.214303,0.309934,0.0899767,0.377431,0.248287,0.104332,0.678993,0.386951,0.613669,0.932309,0.239731,0.175229,0.69648,0.402626,0.0908225,0.978833,0.870056,0.561886,0.33922,0.54555,0.290363,0.357393,0.9319,0.79394,0.611388,0.542747,0.112346,0.741248,0.333274,0.339244,0.962505,0.777713,0.640763,0.412968,0.122323,0.592879,0.0287123,0.613612,0.115276,0.933624,0.625582,0.259943,0.324519,0.524841,0.506998,0.0617113,0.914338,0.37188,0.811479,0.520405,0.938223,0.273404,0.652457,0.581966,0.237061,0.407526,0.636857,0.0583029,0.75358,0.432099,0.50791,0.427941,0.891439,0.142181,0.150292,0.115252,0.739333,0.927772,0.338639,0.754594,0.429692,0.272005,0.552582,0.955876,0.111302,0.65127,0.322089,0.859588,0.581751,0.348315,0.108035,0.0526109,0.165489,0.694848,0.741615,0.892708,0.314972,0.511089,0.19977,0.190753,0.218182,0.302221,0.588608,0.556693,0.312896,0.589346,0.0646235,0.816606,0.495231,0.0979319,0.843308,0.646884,0.06411,0.405524,0.39292,0.0410848,0.951566,0.546555,0.0500317,0.0985509,0.542298,0.572743,0.504638,0.964031,0.444197,0.994097,0.384839,0.0946115,0.424952,0.81158,0.474645,0.273833,0.805457,0.243446,0.803149,0.449781,0.0391229,0.33852,0.381333,0.967497,0.696607,0.0145644,0.480572,0.107297,0.170372,0.964616,0.106439,0.0324715,0.15661,0.555971,0.511811,0.823367,0.843927,0.54857,0.428348,0.151461,0.586627,0.942519,0.214574,0.545613,0.0681342,0.587484,0.211476,0.66979,0.760563,0.142565,0.783162,0.692308,0.226879,0.0803132,0.0785943,0.947025,0.0980856,0.247776,0.757486,0.11006,0.654393,0.157274,0.519537,0.492561,0.397281,0.632708,0.802997,0.856783,0.977211,0.234859,0.203953,0.723914,0.210674,0.666297,0.598256,0.60537,0.675272,0.743854,0.868535,0.432342,0.843388,0.747776,0.232702,0.538312,0.514324,0.74157,0.729355,0.154706,0.466751,0.574959,0.150442,0.16247,0.463677,0.28218,0.405394,0.0116082,0.0693178,0.497988,0.114998,0.653082,0.660474,0.772922,0.0093779,0.697225,0.411458,0.172725,0.889772,0.369545,0.311817,0.137523,0.949698,0.370575,0.696197,0.0755482,0.91124,0.304931,0.670177,0.64197,0.591646,0.393452,0.81043,0.0153518,0.385324,0.983775,0.451819,0.523115,0.768794,0.810783,0.0380048,0.591139,0.456876,0.920822,0.932972,0.0821291,0.378132,0.584242,0.581741,0.856868,0.804137,0.63083,0.314304,0.707608,0.616086,0.526471,0.275452,0.736772,0.23985,0.933161,0.322687,0.93295,0.223053,0.913449,0.0198458,0.882607,0.523311,0.352698,0.755824,0.871186,0.29771,0.92189,0.38468,0.219375,0.696756,0.0453411,0.27822,0.772224,0.386485,0.765676,0.960361,0.399574,0.584883,0.443558,0.504541,0.0856408,0.283455,0.255241,0.961844,0.355686,0.375382,0.0192996,0.800068,0.547688,0.42378,0.0421777,0.199672,0.262516,0.150509,0.804885,0.0534918,0.179811,0.725033,0.278781,0.297176,0.272368,0.957315,0.343457,0.206978,0.561083,0.214767,0.0643536,0.850631,0.0275347,0.781392,0.377629,0.521863,0.556537,0.766912,0.338646,0.937875,0.51569,0.439092,0.503382,0.349893,0.0409505,0.340168,0.137666,0.913856,0.353035,0.828762,0.509441,0.753607,0.117874,0.280451,0.483583,0.956732,0.648035,0.242884,0.233866,0.145108,0.540237,0.965356,0.411529,0.273226,0.31104,0.579825,0.728297,0.779154,0.593198,0.147391,0.587234,0.0158901,0.808932,0.752637,0.192092,0.418693,0.699222,0.541612,0.0652803,0.320428,0.941368,0.473221,0.37317,0.24979,0.0500613,0.295582,0.0941569,0.192272,0.773164,0.778637,0.319834,0.10303,0.923303,0.884547,0.0507773,0.656215,0.26075,0.66037,0.947989,0.585972,0.36498,0.382425,0.616136,0.00229031,0.0473883,0.386997,0.154929,0.719003,0.404441,0.57232,0.894179,0.559051,0.444735,0.290059,0.851039,0.827907,0.898133,0.818828,0.524395,0.284317,0.31874,0.410137,0.976423,0.442956,0.584009,0.459408,0.456004,0.269292,0.0669013,0.949941,0.0581655,0.50972,0.785784,0.822719,0.143715,0.0984119,0.292776,0.1311,0.0240136,0.60058,0.992111,0.173027,0.967152,0.0582557,0.295141,0.100605,0.441408,0.384815,0.787617,0.891677,0.637011,0.703805,0.375236,0.298518,0.181318,0.799996,0.32596,0.0476595,0.206818,0.0390644,0.354596,0.344053,0.76021,0.17832,0.30288,0.280657,0.558639,0.0886624,0.381716,0.00454861,0.840466,0.72063,0.0811505,0.0947828,0.342039,0.818753,0.291875,0.962439,0.539362,0.567685,0.955826,0.241012,0.580343,0.849283,0.982089,0.904837,0.87899,0.19965,0.107335,0.0714713,0.0348745,0.0262467,0.759404,0.0882124,0.0579439,0.0490285,0.460514,0.855446,0.747893,0.0579848,0.177213,0.603491,0.300679,0.690343,0.73389,0.729333,0.512314,0.620511,0.242191,0.401432,0.546372,0.18062,0.103454,0.884281,0.494914,0.838138,0.313622,0.814717,0.86494,0.518502,0.0382572,0.50158,0.619257,0.483969,0.33148,0.634997,0.25666,0.779751,0.270265,0.841389,0.826403,0.213731,0.910229,0.570095,0.47904,0.815871,0.153316,0.194662,0.413815,0.787544,0.944741,0.810199,0.024201,0.931508,0.624158,0.0994059,0.822135,0.606904,0.476978,0.258383,0.0033024,0.171509,0.559306,0.554927,0.55368,0.940407,0.0698516,0.546869,0.00698763,0.62338,0.172982,0.600329,0.144017,0.90374,0.0977036,0.147169,0.860403,0.070806,0.344502,0.460996,0.53619,0.642904,0.954046,0.541903,0.0789375,0.502176,0.945674,0.487795,0.429427,0.811988,0.574584,0.263505,0.295043,0.437851,0.0232433,0.900234,0.364799,0.284858,0.149452,0.365705,0.812269,0.712051,0.134285,0.796939,0.116976,0.630303,0.0781359,0.15741,0.32648,0.190914,0.234716,0.751573,0.00448281,0.950151,0.958552,0.797793,0.844401,0.978062,0.681892,0.793435,0.109823,0.675267,0.88555,0.736108,0.0575839,0.571406,0.0868672,0.0388532,0.832376,0.403486,0.520039,0.928172,0.927238,0.372324,0.468892,0.712331,0.303725,0.0914521,0.194953,0.834805,0.776044,0.0685542,0.426858,0.212958,0.573292,0.957555,0.0712259,0.337024,0.340949,0.289461,0.784669,0.0164604,0.498332,0.394599,0.127086,0.247896,0.792648,0.10544,0.311704,0.981073,0.244242,0.60547,0.244163,0.525656,0.574041,0.492358,0.4065,0.995044,0.00222301,0.704386,0.957034,0.338278,0.0649178,0.630306,0.018433,0.901843,0.364338,0.842228,0.622059,0.585504,0.305262,0.356045,0.576955,0.876688,0.694545,0.256,0.622364,0.238106,0.704868,0.734276,0.565369,0.981061,0.682314,0.683913,0.0251232,0.456962,0.488377,0.899094,0.853166,0.883858,0.874499,0.099415,0.456514,0.932072,0.355407,0.0317437,0.849012,0.601761,0.59937,0.0915629,0.291914,0.882364,0.487576,0.756757,0.552214,0.817792,0.317482,0.466887,0.530758,0.315793,0.541474,0.572959,0.566627,0.366057,0.194682,0.376515,0.266388,0.220311,0.647379,0.240578,0.190439,0.707072,0.864734,0.728094,0.467336,0.0577188,0.531738,0.705788,0.12449,0.0326793,0.0960773,0.0453421,0.918555,0.0105581,0.580913,0.539083,0.525633,0.190729,0.812964,0.585016,0.199839,0.875413,0.356287,0.973759,0.211741,0.522354,0.989505,0.280823,0.970839,0.118349,0.888865,0.883708,0.790218,0.214475,0.38092,0.600406,0.0583885,0.17125,0.819583,0.601737,0.572441,0.201883,0.354803,0.485519,0.645282,0.578896,0.360417,0.892108,0.0512183,0.164419,0.631984,0.686342,0.935996,0.109253,0.0752075,0.580288,0.227155,0.995335,0.042154,0.765908,0.699913,0.168285,0.765427,0.0585549,0.692394,0.230611,0.431843,0.0207504,0.724016,0.83217,0.705545,0.71964,0.343905,0.766611,0.6809,0.482775,0.538866,0.928788,0.304122,0.89733,0.190783,0.936646,0.946456,0.313601,0.0197209,0.620255,0.369882,0.553325,0.75136,0.833266,0.935838,0.859713,0.852261,0.681675,0.279336,0.287553,0.865758,0.0562597,0.0713468,0.670879,0.399271,0.409866,0.265289,0.458224,0.742963,0.57053,0.851003,0.379166,0.74966,0.822438,0.327252,0.845847,0.70811,0.264284,0.334207,0.932622,0.458514,0.745165,0.974968,0.961352,0.70517,0.954625,0.714108,0.149273,0.11375,0.272081,0.450595,0.594913,0.0855336,0.149588,0.678682,0.916713,0.925674,0.641837,0.126891,0.561299,0.703893,0.564923,0.885957,0.215738,0.985123,0.684833,0.377833,0.400516,0.326259,0.278713,0.117718,0.844424,0.282221,0.534694,0.478004,0.336281,0.522044,0.339109,0.359105,0.977244,0.852852,0.234118,0.579989,0.533173,0.714385,0.889426,0.984631,0.689106,0.949047,0.776706,0.0552071,0.963068,0.444161,0.182578,0.686973,0.19652,0.32612,0.336346,0.844147,0.441437,0.921602,0.502747,0.581724,0.859615,0.504247,0.472428,0.590853,0.814809,0.672561,0.338628,0.787265,0.944812,0.43801,0.715174,0.726339,0.856124,0.922974,0.781167,0.00175554,0.897786,0.204024,0.694317,|0.441905,0.109022,0.721986,0.448564,0.716514,0.945892,0.781841,0.474777,0.525402,0.815106,0.284138,0.599607,0.564035,0.918376,0.776371,0.52898,0.551952,0.933765,0.0414906,0.118635,0.0727881,0.643368,0.408793,0.801407,0.895845,0.286116,0.297428,0.689047,0.291867,0.356398,0.195681,0.72434,0.564387,0.908391,0.0949178,0.326685,0.210549,0.0587654,0.427388,0.422931,0.237961,0.297251,0.949806,0.000934303,0.672452,0.747444,0.478642,0.730494,0.121039,0.302148,0.883393,0.364248,0.294343,0.50193,0.795453,0.525467,0.105535,0.040729,0.926706,0.299613,0.273437,0.202442,0.391809,0.761683,0.158736,0.714848,0.898849,0.290658,0.716305,0.822072,0.208544,0.0840054,0.429229,0.329282,0.0673016,0.405385,0.0974717,0.532705,0.362814,0.103917,0.852392,0.461894,0.326631,0.826761,0.253376,0.161271,0.433698,0.581345,0.278427,0.0141998,0.648018,0.553556,0.173895,0.149652,0.226352,0.899715,0.3599,0.642992,0.815341,0.534036,0.583571,0.791359,0.204388,0.787889,0.598269,0.306917,0.865993,0.0260461,0.930022,0.381785,0.030818,0.101671,0.463926,0.602002,0.704841,0.774346,0.720344,0.580373,0.900762,0.615058,0.335464,0.102611,0.716047,0.29731,0.956128,0.148556,0.641077,0.238309,0.425475,0.759303,0.209764,0.280668,0.954067,0.742887,0.950457,0.245119,0.298083,0.716018,0.758006,0.444487,0.824043,0.0701609,0.786251,0.294734,0.36575,0.316446,0.310546,0.0292827,0.135785,0.586831,0.21854,0.312344,0.633853,0.306099,0.566513,0.871258,0.820498,0.373064,0.673876,0.118915,0.395415,0.189653,0.313034,0.91199,0.661375,0.358366,0.0363459,0.554352,0.812398,0.784091,0.220892,0.584264,0.960185,0.294113,0.217988,0.497836,0.920786,0.204286,0.864399,0.108151,0.626559,0.539555,0.427404,0.607286,0.977188,0.715905,0.66245,0.109309,0.846887,0.845627,0.697779,0.522102,0.259557,0.946369,0.854196,0.405688,0.118832,0.868533,0.224403,0.777833,0.460794,0.333316,0.901069,0.773633,0.124385,0.270034,0.722066,0.409941,0.739316,0.0414374,0.730442,0.018135,0.164749,0.856504,0.16156,0.864154,0.188625,0.22033,0.144255,0.509431,0.295391,0.0302525,0.59134,0.989826,0.120217,0.149391,0.472666,0.788431,0.651672,0.410964,0.964731,0.636837,0.177372,0.355264,0.785643,0.795083,0.352444,0.375316,0.867425,0.718618,0.863919,0.776421,0.314348,0.033089,0.0614837,0.0580385,0.0386847,0.2171,0.298489,0.0287021,0.946972,0.786483,0.837653,0.998933,0.0764041,0.161768,0.060627,0.322224,0.470679,0.778258,0.621296,0.406999,0.385045,0.876072,0.709804,0.543294,0.896723,0.905243,0.0744987,0.549225,0.912644,0.524929,0.879158,0.503811,0.661649,0.0229609,0.236242,0.712671,0.796819,0.794696,0.0942512,0.271512,0.18148,0.995298,0.135605,0.546796,0.908778,0.634874,0.28428,0.00251991,0.683082,0.984634,0.380358,0.355698,0.318424,0.880322,0.40237,0.511296,0.0726206,0.845453,0.941856,0.882808,0.741738,0.958682,0.994018,0.636196,0.377939,0.345663,0.444322,0.697767,0.300504,0.31175,0.71969,0.88403,0.626445,0.685181,0.979561,0.0309692,0.602876,0.966309,0.796145,0.713601,0.0166702,0.0494719,0.0239546,0.113166,0.468072,0.98083,0.553176,0.00183606,0.772247,0.809295,0.866013,0.983859,0.633537,0.856353,0.427661,0.562734,0.248021,0.993543,0.247402,0.537475,0.581305,0.742144,0.615953,0.317883,0.454658,0.95163,0.137183,0.599674,0.324119,0.342201,0.795408,0.609332,0.878131,0.483897,0.0875977,0.804029,0.124922,0.307609,0.308448,0.955044,0.286781,0.647067,0.214234,0.393659,0.837026,0.864362,0.850285,0.441006,0.0765982,0.345097,0.561415,0.403081,0.393265,0.0165457,0.444338,0.229825,0.6584,0.936612,0.969469,0.723403,0.337655,0.303209,0.806991,0.123495,0.160674,0.270343,0.903907,0.65128,0.952782,0.0800765,0.144332,0.962682,0.196536,0.995734,0.677666,0.543854,0.446492,0.365236,0.377366,0.893441,0.839518,0.332218,0.0960161,0.919193,0.207972,0.367508,0.790229,0.337786,0.426629,0.159244,0.853901,0.691929,0.829515,0.27371,0.727863,0.0847006,0.248986,0.721934,0.585501,0.0781417,0.444538,0.309206,0.0554981,0.463123,0.714761,0.998214,0.508394,0.719817,0.864188,0.488975,0.483511,0.952889,0.439786,0.749389,0.533389,0.431332,0.492225,0.984793,0.9866,0.89862,0.441873,0.408582,0.118596,0.669657,0.974179,0.338601,0.360008,0.0906236,0.864424,0.115454,0.746897,0.838091,0.917958,0.0995343,0.345504,0.853823,0.453021,0.604555,0.498421,0.158378,0.304897,0.0742132,0.412966,0.768477,0.59188,0.199852,0.537112,0.942797,0.600909,0.367565,0.230783,0.919659,0.479759,0.672765,0.0120224,0.544743,0.899781,0.710741,0.469634,0.432784,0.767164,0.710105,0.283013,0.822051,0.829203,0.922644,0.780597,0.406274,0.946126,0.244766,0.553051,0.749183,0.261498,0.253877,0.983893,0.0460748,0.758908,0.319343,0.844846,0.939644,0.90177,0.758198,0.08295,0.660078,0.641708,0.892067,0.077766,0.891229,0.626003,0.560163,0.677825,0.552953,0.221984,0.0919552,0.898517,0.678622,0.144319,0.241081,0.679361,0.966248,0.693005,0.825541,0.96706,0.0230746,0.83296,0.138849,0.168895,0.930833,0.0632534,0.207844,0.904546,0.165003,0.506524,0.838202,0.816505,0.209899,0.875784,0.615596,0.147985,0.195169,0.223411,0.953735,0.776289,0.893838,0.0330569,0.375355,0.921983,0.210635,0.507495,0.0775621,0.0708495,0.673459,0.575396,0.50497,0.303888,0.901478,0.26459,0.824977,0.986453,0.393687,0.875697,0.379827,0.490333,0.135358,0.803089,0.0247325,0.997553,0.139317,0.983251,0.99926,0.807633,0.723863,0.51822,0.702273,0.0489743,0.246242,0.583859,0.144777,0.646911,0.452521,0.295589,0.641676,0.509259,0.682955,0.605621,0.663553,0.553548,0.219515,0.829005,0.882584,0.333885,0.656002,0.133379,0.772806,0.330597,0.259896,0.0973162,0.744665,0.158026,0.441946,0.0827796,0.576824,0.364446,0.95812,0.646115,0.55547,0.779667,0.268571,0.199474,0.37886,0.17138,0.0843349,0.312916,0.0973945,0.848419,0.500992,0.767008,0.138877,0.0449511,0.91539,0.313434,0.0333263,0.804025,0.156058,0.427811,0.0837977,0.877311,0.629061,0.35006,0.409051,0.586969,0.965825,0.933566,0.0174209,0.942347,0.608934,0.285694,0.574896,0.79407,0.588873,0.430548,0.760673,0.852058,0.133517,0.188033,0.399688,0.369876,0.716706,0.896835,0.599934,0.425437,0.335598,0.770902,0.334223,0.0791067,0.695994,0.653068,0.49921,0.732909,0.177757,0.576514,0.251374,0.119301,0.0402759,0.165812,0.565533,0.762509,0.424079,0.753771,0.650848,0.272114,0.898088,0.900972,0.177488,0.40268,0.92809,0.463841,0.550486,0.709057,0.545772,0.633494,0.982709,0.170962,0.113886,0.470475,0.0327992,0.286377,0.297157,0.364894,0.263004,0.573993,0.463628,0.511238,0.282467,0.130061,0.918166,0.702561,0.273563,0.476581,0.587424,0.0477728,0.696543,0.071308,0.550479,0.606068,0.871004,0.594912,0.350084,0.955482,0.801604,0.342943,0.904272,0.777204,0.711986,0.256596,0.80881,0.758593,0.804204,0.283344,0.0392796,0.0560179,0.0301627,0.449057,0.71193,0.724874,0.730682,0.0575752,0.998871,0.891856,0.690649,0.46643,0.148809,0.63613,0.469262,0.38642,0.458881,0.431484,0.338005,0.676079,0.48464,0.726031,0.972987,0.626868,0.918798,0.9056,0.833398,0.798013,0.213086,0.859503,0.198973,0.507227,0.471094,0.865407,0.417311,0.64908,0.499097,0.77544,0.39934,0.69231,0.868527,0.344583,0.388339,0.0712953,0.623592,0.758108,0.545275,0.212056,0.397598,0.547309,0.232138,0.401352,0.585595,0.166295,0.238014,0.228863,0.634781,0.651449,0.787607,0.428657,0.808289,0.0568564,0.744969,0.00254571,0.238295,0.709917,0.158767,0.658425,0.819558,0.647485,0.85179,0.533807,0.654732,0.398721,0.184904,0.84856,0.443123,0.146224,0.108143,0.791335,0.68823,0.461551,0.896897,0.199965,0.21526,0.612758,0.207506,0.0498526,0.575374,0.63873,0.535045,0.490407,0.769247,0.159102,0.829464,0.910257,0.491329,0.271484,0.678319,0.124361,0.0970981,0.475137,0.149038,0.335548,0.505988,0.822729,0.897679,0.742562,0.113673,0.92132,0.787748,0.212973,0.655693,0.949797,0.212995,0.400881,0.0250497,0.511334,0.476981,0.19477,0.606147,0.219421,0.624765,0.586474,0.168341,0.988921,0.443518,0.823139,0.0467942,0.814457,0.622352,0.610044,0.788255,0.720691,0.00825429,0.301233,0.254484,0.00225532,0.464361,0.390797,0.316266,0.167437,0.0100101,0.407247,0.525547,0.898464,0.967277,0.768454,0.937978,0.538087,0.164117,0.0916933,0.412018,0.471283,0.379045,0.818592,0.400641,0.688694,0.723366,0.67619,0.0591908,0.939341,0.853631,0.871585,0.554257,0.611449,0.641349,0.171611,0.484201,0.530826,0.210843,0.517442,0.058387,0.621346,0.560617,0.885555,0.87966,0.0736232,0.722234,0.889792,0.46855,0.771902,0.20428,0.1708,0.476761,0.239717,0.0782664,0.157133,0.49579,0.190788,0.834765,0.180885,0.585079,0.328065,0.375599,0.90742,0.0234101,0.915014,0.994208,0.18607,0.372436,0.117424,0.660019,0.637808,0.77333,0.210059,0.492645,0.275526,0.508538,0.0148453,0.306156,0.645078,0.033349,0.0941969,0.277039,0.691494,0.671126,0.196412,0.750062,0.31543,0.108455,0.506623,0.630779,0.848039,0.929577,0.686814,0.118784,0.804708,0.324923,0.284049,0.739256,0.0992649,0.272862,0.68926,0.990162,0.865115,0.935274,0.975222,0.624877,0.374265,0.466106,0.238317,0.362716,0.951099,0.00684547,0.592071,0.905106,0.419971,0.298461,0.682629,0.725798,0.591326,0.135321,0.895631,0.0876601,0.634543,0.726461,0.349117,0.707111,0.462316,0.689336,0.856829,0.807224,0.403324,0.316552,0.731317,0.830958,0.206288,0.400821,0.134586,0.971936,0.222185,0.949594,0.247056,0.476449,0.98279,0.22325,0.30641,0.048727,|0.0858415,0.529907,0.867968,0.254634,0.0191031,0.326163,0.972751,0.727091,0.0126128,0.777322,0.557897,0.474377,0.727259,0.300837,0.315108,0.323976,0.708205,0.479105,0.494128,0.407349,0.014048,0.815252,0.137627,0.568045,0.608153,0.179644,0.934531,0.614592,0.566474,0.893328,0.864004,0.206978,0.550247,0.474057,0.1386,0.349392,0.782019,0.723888,0.82126,0.198369,0.14462,0.633321,0.84596,0.0718244,0.706721,0.993552,0.775234,0.853611,0.326936,0.755907,0.941156,0.173082,0.315148,0.823138,0.667472,0.95138,0.14184,0.231635,0.627604,0.287564,0.484565,0.318881,0.429381,0.248737,0.0645586,0.900937,0.140283,0.118699,0.372912,0.509133,0.721547,0.0297312,0.705206,0.0940198,0.192013,0.797819,0.795636,0.847222,0.0425573,0.235276,0.10903,0.616797,0.933066,0.262106,0.972868,0.00740147,0.497279,0.0149552,0.971874,0.26323,0.5544,0.850015,0.888724,0.365457,0.27916,0.308439,0.79366,0.741593,0.124515,0.578472,0.85441,0.679972,0.319762,0.0936193,0.164098,0.388659,0.0148326,0.884643,0.463972,0.270671,0.392408,0.0761217,0.884852,0.438151,0.638724,0.569096,0.0941855,0.794112,0.183236,0.251021,0.97172,0.645831,0.290136,0.149415,0.599772,0.495027,0.475324,0.319046,0.246499,0.523635,0.763883,0.383155,0.19489,0.443973,0.343453,0.816775,0.720616,0.954034,0.920319,0.0416979,0.525117,0.300756,0.021173,0.964909,0.167683,0.577619,0.928719,0.829917,0.679475,0.179035,0.25717,0.14064,0.631466,0.661787,0.605298,0.786235,0.820305,0.403961,0.282283,0.959647,0.675867,0.105931,0.123556,0.0206032,0.206331,0.0663919,0.0169127,0.505133,0.501729,0.507632,0.182736,0.374084,0.676403,0.924938,0.0790389,0.704672,0.153665,0.851231,0.569259,0.120096,0.385399,0.792803,0.284014,0.466657,0.82907,0.98868,0.990762,0.328994,0.774524,0.618659,0.384837,0.928978,0.0689113,0.193479,0.382464,0.747918,0.372403,0.216653,0.105867,0.947462,0.971325,0.105088,0.467233,0.888808,0.639922,0.340906,0.233659,0.0657951,0.441954,0.319512,0.798007,0.573038,0.245529,0.145438,0.894185,0.577948,0.121149,0.666665,0.836351,0.782502,0.206174,0.938026,0.376645,0.21789,0.53132,0.88958,0.323149,0.470934,0.490679,0.981172,0.289661,0.825727,0.849046,0.833028,0.584662,0.421153,0.330923,0.895173,0.230299,0.328744,0.710483,0.0947738,0.0167997,0.660484,0.613525,0.281462,0.942716,0.99103,0.877503,0.430861,0.377492,0.832864,0.147234,0.356457,0.230307,0.890736,0.745553,0.142466,0.058448,0.0176072,0.605288,0.139149,0.800368,0.720658,0.395874,0.390298,0.0353875,0.68419,0.170911,0.520992,0.0605627,0.989043,0.108235,0.288784,0.585929,0.991641,0.712426,0.133974,0.818878,0.775129,0.165191,0.866106,0.690691,0.207738,0.59676,0.365648,0.087216,0.249328,0.919544,0.3229,0.402859,0.650488,0.211422,0.499577,0.232805,0.379462,0.242793,0.656103,0.451103,0.502006,0.805909,0.00429833,0.870783,0.00112736,0.0207291,0.607249,0.3946,0.359983,0.620781,0.485709,0.42394,0.358717,0.00750834,0.358242,0.788275,0.115483,0.865804,0.0345649,0.423424,0.792086,0.179739,0.928424,0.145251,0.5019,0.346895,0.129257,0.30559,0.480255,0.551337,0.904473,0.739369,0.2683,0.362219,0.649239,0.135312,0.990025,0.639256,0.622088,0.908162,0.198403,0.619657,0.667836,0.618993,0.764287,0.452572,0.691531,0.929156,0.05115,0.0671949,0.475303,0.583182,0.0109571,0.265343,0.541335,0.964424,0.0305737,0.484481,0.84843,0.298869,0.0141937,0.567411,0.797885,0.886799,0.0233058,0.551037,0.556566,0.855297,0.367111,0.341389,0.0545937,0.671905,0.991472,0.269107,0.3416,0.740961,0.583001,0.711872,0.333161,0.0926679,0.582945,0.399474,0.978212,0.995714,0.550913,0.0770582,0.412287,0.340279,0.558028,0.619096,0.818361,0.317651,0.934183,0.592025,0.120583,0.517138,0.769734,0.858932,0.130619,0.759406,0.386544,0.0520259,0.794384,0.889517,0.323474,0.97639,0.783527,0.0760421,0.960208,0.890086,0.861651,0.0952094,0.458289,0.336236,0.284143,0.749478,0.0710795,0.640743,0.376153,0.899552,0.208786,0.914748,0.238192,0.191323,0.483586,0.152767,0.633379,0.522797,0.330647,0.252622,0.279146,0.80175,0.432455,0.553275,0.546819,0.818495,0.682085,0.00855929,0.229584,0.442696,0.604502,0.853893,0.880528,0.759376,0.506542,0.0874749,0.168384,0.728005,0.350055,0.0114791,0.977921,0.417942,0.472217,0.330779,0.340542,0.212062,0.924347,0.885821,0.520724,0.0216834,0.279001,0.38162,0.873379,0.870727,0.589308,0.923559,0.451155,0.735703,0.451979,0.0298426,0.981206,0.337282,0.745899,0.410083,0.0443907,0.843941,0.170804,0.152622,0.72715,0.643105,0.0994459,0.18562,0.431264,0.585479,0.572196,0.322181,0.350112,0.946135,0.0215331,0.998658,0.244685,0.0731732,0.714368,0.288172,0.373377,0.68549,0.206056,0.816497,0.194252,0.60943,0.929285,0.0621396,0.227493,0.594684,0.0503926,0.559908,0.66368,0.187248,0.642606,0.890918,0.263635,0.823358,0.625005,0.173082,0.365649,0.911111,0.63418,0.0475848,0.0513828,0.913936,0.82426,0.399361,0.829585,0.95579,0.411272,0.64163,0.845965,0.677625,0.529341,0.146866,0.0480984,0.611258,0.93882,0.850122,0.229781,0.0179079,0.180296,0.742895,0.442696,0.118952,0.69967,0.935643,0.0629657,0.508179,0.544343,0.698687,0.0125103,0.0192308,0.267819,0.545964,0.365798,0.310917,0.623268,0.645263,0.302335,0.574214,0.677208,0.642024,0.662746,0.677802,0.104758,0.220658,0.97964,0.126894,0.328734,0.874623,0.542046,0.774015,0.452919,0.45929,0.380846,0.189231,0.278252,0.287548,0.634044,0.784705,0.0634015,0.478888,0.478338,0.881767,0.880972,0.857411,0.176733,0.0698614,0.87504,0.228128,0.932101,0.169822,0.962523,0.0979706,0.966195,0.882496,0.424193,0.429209,0.916683,0.0802591,0.662588,0.558341,0.134059,0.983229,0.97092,0.123505,0.932447,0.598249,0.0609984,0.252392,0.701464,0.846895,0.47844,0.589242,0.659629,0.0316561,0.213987,0.535469,0.952513,0.412733,0.553943,0.640169,0.534486,0.505522,0.40923,0.135136,0.30939,0.365805,0.894606,0.582001,0.419453,0.226808,0.536719,0.075567,0.380936,0.151784,0.652951,0.298102,0.102922,0.7151,0.0600608,0.980092,0.596816,0.00740731,0.992439,0.289102,0.624487,0.316766,0.994325,0.0407938,0.303377,0.794301,0.615519,0.949946,0.341611,0.60067,0.574421,0.292169,0.48107,0.688331,0.96928,0.553843,0.0669747,0.349071,0.335076,0.130921,0.399083,0.771421,0.337798,0.535755,0.975401,0.810929,0.642464,0.626043,0.846379,0.389538,0.891847,0.869463,0.8044,0.877189,0.443,0.0233855,0.746194,0.983855,0.328542,0.333927,0.704124,0.132839,0.208693,0.885276,0.606327,0.481644,0.277371,0.736663,0.15565,0.063341,0.782356,0.342374,0.250083,0.614337,0.959213,0.292217,0.487152,0.829131,0.120767,0.143399,0.666555,0.576102,0.588607,0.134147,0.637495,0.44872,0.463273,0.855222,0.909831,0.907015,0.484745,0.789388,0.0497586,0.0188299,0.232321,0.080521,0.829266,0.422279,0.119256,0.0681708,0.699231,0.708484,0.871782,0.831284,0.558412,0.830404,0.443296,0.00413311,0.84374,0.737526,0.912168,0.4087,0.32078,0.769428,0.121713,0.454857,0.568257,0.175451,0.161905,0.817435,0.984878,0.930707,0.903798,0.667262,0.813226,0.984116,0.444791,0.230985,0.839537,0.666035,0.381445,0.418286,0.96082,0.368618,0.31133,0.761841,0.70833,0.915472,0.905146,0.786454,0.972032,0.578723,0.779868,0.76742,0.528042,0.280747,0.927054,0.87109,0.0868713,0.496565,0.789492,0.18033,0.0748433,0.3047,0.194132,0.0988277,0.528105,0.337709,0.377563,0.554189,0.793111,0.638837,0.377494,0.336679,0.0564454,0.727209,0.818927,0.491637,0.0743353,0.119566,0.0257745,0.5043,0.0616326,0.537538,0.874368,0.0475959,0.657559,0.0911515,0.912601,0.787022,0.172021,0.227599,0.817198,0.581371,0.849935,0.3798,0.776859,0.7403,0.721933,0.357092,0.663683,0.246515,0.897327,0.534677,0.916104,0.728364,0.275355,0.168717,0.739926,0.200066,0.239738,0.540488,0.324496,0.570336,0.734035,0.57761,0.69073,0.125717,0.923776,0.434781,0.24175,0.867419,0.263183,0.705408,0.791365,0.63671,0.292734,0.985672,0.557729,0.154766,0.452138,0.789129,0.687845,0.354609,0.829775,0.0820541,0.715667,0.280745,0.399739,0.0469806,0.440417,0.324976,0.150196,0.859638,0.06666,0.488743,0.136045,0.784469,0.943541,0.673124,0.0970787,0.306514,0.735475,0.431386,0.0191811,0.352227,0.185017,0.150792,0.613561,0.235333,0.579867,0.598873,0.0892456,0.0736248,0.723703,0.97422,0.667321,0.354637,0.650014,0.338148,0.597864,0.237166,0.646471,0.988303,0.597273,0.892336,0.791702,0.593688,0.988444,0.313194,0.608916,0.480072,0.904329,0.70637,0.27777,0.119993,0.898263,0.431258,0.655598,0.748932,0.533857,0.00156379,0.713806,0.0249288,0.753543,0.715539,0.615331,0.779819,0.220306,0.843585,0.497258,0.507049,0.60717,0.954891,0.801533,0.573491,0.473547,0.973291,0.933965,0.644567,0.63368,0.0487349,0.784028,0.218868,0.339861,0.325253,0.513919,0.426455,0.0312368,0.832965,0.119902,0.0549637,0.656872,0.224921,0.98525,0.633944,0.021748,0.489379,0.366359,0.0624907,0.860813,0.460778,0.921529,0.148248,0.665224,0.548596,0.594635,0.0967844,0.234479,0.730313,0.461268,0.677268,0.978113,0.957515,0.541497,0.829883,0.805912,0.781817,0.438089,0.691612,0.835977,0.820027,0.417541,0.559503,0.499902,0.841373,0.517756,0.972994,0.302527,0.861033,0.290617,0.136332,0.236654,0.374328,0.244541,0.784022,0.666187,0.231389,0.321269,0.241977,0.990356,0.00782299,0.0283942,0.695715,0.125977,0.648369,0.362887,0.513869,0.648364,0.956146,0.690487,0.061591,0.950028,0.253391,0.932996,0.0204527,0.594178,0.534918,0.467534,|0.32348,0.519153,0.20009,0.731648,0.0399679,0.213797,0.600009,0.861216,0.637228,0.945249,0.536931,0.409154,0.239258,0.887564,0.590809,0.360306,0.721613,0.279809,0.981773,0.789915,0.337238,0.522327,0.799901,0.127196,0.1945,0.256193,0.308729,0.13891,0.143797,0.490702,0.0748849,0.0628854,0.749175,0.204507,0.56043,0.681972,0.363823,0.839845,0.1243,0.0192003,0.0197629,0.841838,0.891016,0.0389887,0.912721,0.0463049,0.459763,0.207455,0.661097,0.503951,0.260497,0.0051012,0.454257,0.902315,0.0173712,0.771559,0.792879,0.0345146,0.0115706,0.999199,0.394096,0.507167,0.66979,0.887399,0.149926,0.0231306,0.277191,0.561737,0.573466,0.755545,0.308387,0.496767,0.351781,0.388096,0.205491,0.686565,0.659325,0.717938,0.780709,0.560572,0.686597,0.000689268,0.225315,0.806826,0.315544,0.556195,0.667428,0.880074,0.740359,0.715941,0.879816,0.326141,0.981435,0.167052,0.0182808,0.66011,0.937345,0.470031,0.31152,0.482466,0.490959,0.656049,0.802358,0.021058,0.727595,0.515104,0.212789,0.505449,0.0551578,0.58377,0.346102,0.395114,0.0820791,0.943311,0.29645,0.661536,0.258885,0.231558,0.714609,0.908613,0.812271,0.629926,0.888745,0.0178524,0.453039,0.571191,0.690445,0.48897,0.187434,0.0434245,0.154965,0.326521,0.125135,0.489775,0.529124,0.764425,0.696628,0.26749,0.930024,0.297141,0.199004,0.0709363,0.968541,0.28209,0.581641,0.646513,0.862897,0.296899,0.865541,0.615566,0.313565,0.0191148,0.0762251,0.27047,0.0601954,0.568425,0.626944,0.833005,0.672244,0.198992,0.887957,0.542814,0.172517,0.389635,0.386898,0.743103,0.288957,0.461237,0.953607,0.222313,0.941298,0.486224,0.388929,0.478168,0.426991,0.731987,0.381253,0.0588146,0.47186,0.152115,0.0285892,0.430205,0.431981,0.823933,0.613551,0.614361,0.0139025,0.281313,0.438926,0.546223,0.634315,0.0258313,0.675429,0.182127,0.593044,0.379512,0.21998,0.952197,0.275391,0.438287,0.68089,0.418112,0.259063,0.878506,0.734495,0.955167,0.380075,0.805588,0.233853,0.764251,0.98935,0.509092,0.69461,0.502142,0.802221,0.193263,0.0948642,0.376858,0.559761,0.315361,0.675616,0.185218,0.734812,0.529573,0.298863,0.0925408,0.292878,0.55434,0.91178,0.576827,0.447749,0.491213,0.581124,0.495176,0.815591,0.970044,0.155463,0.0612907,0.0808664,0.0934848,0.209624,0.96423,0.12969,0.769467,0.404385,0.116487,0.903884,0.946069,0.121554,0.240698,0.378932,0.859217,0.471732,0.514082,0.850517,0.513022,0.111757,0.00291145,0.919459,0.00348043,0.948796,0.334822,0.250094,0.467046,0.0149113,0.612755,0.426823,0.5247,0.917084,0.169664,0.0240393,0.593219,0.437964,0.111719,0.632288,0.754836,0.117286,0.590672,0.147749,0.454786,0.504807,0.329305,0.0341287,0.403151,0.0498475,0.0270182,0.0270119,0.803554,0.951555,0.7224,0.798408,0.844971,0.763874,0.48004,0.579076,0.590842,0.690008,0.341946,0.00813586,0.159659,0.386128,0.142786,0.608654,0.773078,0.386099,0.468942,0.973045,0.32844,0.817048,0.306853,0.785761,0.792379,0.332938,0.44065,0.97298,0.440444,0.494401,0.540816,0.31249,0.945022,0.916565,0.095097,0.774709,0.0420704,0.82571,0.76879,0.675924,0.618967,0.0714601,0.607316,0.94873,0.930585,0.0641247,0.245178,0.705203,0.624426,0.598542,0.558968,0.283858,0.0205122,0.81515,0.403364,0.249903,0.573619,0.985965,0.839355,0.57633,0.879149,0.887146,0.501475,0.336639,0.644518,0.632189,0.357656,0.651602,0.690429,0.834815,0.742591,0.452912,0.397548,0.5481,0.409886,0.0687534,0.728019,0.0915937,0.397257,0.902591,0.0352866,0.715756,0.796013,0.0179924,0.988987,0.218367,0.907369,0.359326,0.843273,0.0864066,0.91494,0.381759,0.797922,0.32492,0.416556,0.76232,0.297053,0.473625,0.797633,0.31278,0.53196,0.317885,0.508201,0.435021,0.379041,0.300105,0.592315,0.37035,0.376287,0.512875,0.486102,0.0293598,0.222043,0.714322,0.821182,0.0990029,0.975824,0.0371687,0.0550485,0.185706,0.840299,0.172409,0.0651776,0.922595,0.121437,0.258254,0.583115,0.470965,0.966364,0.0822728,0.6808,0.0272763,0.918955,0.292109,0.578289,0.543053,0.615459,0.0502237,0.065064,0.67923,0.842204,0.796171,0.843425,0.207983,0.874589,0.852605,0.666426,0.815906,0.443227,0.843251,0.522667,0.577581,0.553161,0.365312,0.855264,0.748711,0.457944,0.545846,0.113179,0.652066,0.215816,0.272351,0.977651,0.532021,0.927932,0.334731,0.314725,0.968645,0.675301,0.637215,0.482277,0.114748,0.944441,0.0420658,0.0668198,0.927687,0.861873,0.373112,0.957723,0.193407,0.49124,0.70404,0.0774819,0.809538,0.599084,0.936212,0.169913,0.418518,0.101387,0.549738,0.0108052,0.649323,0.60312,0.677695,0.387388,0.00176978,0.824454,0.216352,0.218923,0.411384,0.450922,0.746262,0.695721,0.159916,0.653686,0.388147,0.76001,0.132018,0.517769,0.840282,0.623387,0.232347,0.406529,0.336001,0.179298,0.556525,0.411315,0.308999,0.417308,0.351474,0.223581,0.89696,0.340715,0.464261,0.865805,0.0927553,0.0673383,0.584959,0.213697,0.526099,0.628596,0.877736,0.557152,0.812636,0.506679,0.0441056,0.590279,0.169414,0.383975,0.376569,0.46356,0.135857,0.00947934,0.925553,0.900815,0.75243,0.758221,0.431995,0.659514,0.183349,0.932159,0.683775,0.881379,0.707113,0.210762,0.0690503,0.970101,0.150036,0.982866,0.47629,0.828849,0.285201,0.450189,0.637318,0.656832,0.076054,0.173122,0.216546,0.934305,0.997304,0.884586,0.179519,0.497671,0.394619,0.0885566,0.243727,0.296526,0.510847,0.931058,0.86318,0.425785,0.111266,0.292051,0.755094,0.138062,0.00252855,0.583917,0.224182,0.146519,0.442728,0.389331,0.576507,0.169059,0.542171,0.291427,0.472088,0.96871,0.54024,0.710023,0.500558,0.162271,0.272124,0.855039,0.807589,0.946891,0.0358686,0.632818,0.313939,0.714133,0.224712,0.0236383,0.817036,0.811966,0.901552,0.653865,0.184324,0.170448,0.565256,0.382111,0.673929,0.856531,0.597582,0.175531,0.205171,0.808195,0.674885,0.62407,0.0894849,0.995934,0.412464,0.747085,0.61454,0.858625,0.411963,0.980574,0.899688,0.290359,0.0491189,0.910784,0.0391746,0.0190436,0.630821,0.0362765,0.484993,0.0925603,0.370373,0.151103,0.155159,0.293301,0.881172,0.835552,0.879481,0.550991,0.37668,0.548385,0.723288,0.226151,0.732928,0.00245476,0.855703,0.078364,0.759596,0.696986,0.831915,0.671476,0.227926,0.689554,0.0117977,0.0112097,0.535538,0.276964,0.0188852,0.560072,0.759464,0.610337,0.433685,0.733737,0.116531,0.157966,0.175186,0.884427,0.0372254,0.258516,0.775663,0.16658,0.523401,0.619149,0.671159,0.978567,0.720918,0.194574,0.186108,0.106585,0.979502,0.582005,0.0814801,0.138317,0.0422762,0.0713108,0.91957,0.120067,0.920795,0.771594,0.110621,0.238155,0.260826,0.887963,0.155612,0.52553,0.383838,0.592181,0.77882,0.661312,0.452303,0.1689,0.994133,0.354477,0.0864692,0.855423,0.183348,0.340588,0.555226,0.869093,0.911851,0.778804,0.893479,0.952463,0.627023,0.934515,0.255375,0.642484,0.448202,0.956128,0.758833,0.376163,0.921161,0.564927,0.847782,0.330491,0.577539,0.186736,0.518684,0.155769,0.807979,0.297638,0.00311136,0.735246,0.664122,0.649856,0.111984,0.176615,0.165548,0.980268,0.709076,0.947357,0.300757,0.879055,0.651733,0.341776,0.284182,0.469934,0.730183,0.429388,0.141573,0.748227,0.395615,0.523703,0.84326,0.230121,0.851407,0.0293629,0.0463252,0.6442,0.368609,0.984345,0.382573,0.150877,0.650616,0.386442,0.103126,0.970495,0.219726,0.110258,0.17395,0.586834,0.343314,0.251131,0.316531,0.769225,0.443306,0.302581,0.941725,0.945518,0.384095,0.33469,0.908791,0.493249,0.791685,0.509053,0.678422,0.0250583,0.119883,0.108485,0.0533439,0.951364,0.685459,0.0554574,0.976857,0.536565,0.345379,0.327537,0.824871,0.801915,0.369279,0.81837,0.807487,0.186758,0.113584,0.227415,0.64937,0.67319,0.128345,0.27495,0.379926,0.530712,0.270828,0.586496,0.0915398,0.545761,0.665489,0.924895,0.0725663,0.0370977,0.0384175,0.288392,0.192562,0.263448,0.0470506,0.348738,0.359287,0.786129,0.922799,0.758708,0.0463609,0.751959,0.363839,0.325185,0.593405,0.162394,0.110547,0.461608,0.310153,0.966163,0.944714,0.742435,0.128983,0.205893,0.0046429,0.428876,0.239551,0.0256495,0.462548,0.244846,0.0170791,0.805869,0.45731,0.652812,0.221374,0.558263,0.671208,0.904162,0.802727,0.556016,0.211496,0.549574,0.230851,0.265708,0.694774,0.97832,0.48948,0.197131,0.592738,0.315441,0.666469,0.576922,0.186915,0.230388,0.836531,0.825113,0.567743,0.896251,0.962865,0.678909,0.319757,0.859349,0.549731,0.7997,0.259493,0.0572316,0.127665,0.0633965,0.521743,0.460199,0.0443611,0.62064,0.0243026,0.211883,0.822205,0.923873,0.939486,0.0782158,0.437022,0.255664,0.332578,0.240281,0.185189,0.05366,0.554183,0.391568,0.876591,0.938037,0.866865,0.241259,0.402045,0.588429,0.0842405,0.170234,0.52194,0.146362,0.601594,0.0707067,0.593891,0.624826,0.591382,0.0115929,0.0471882,0.677062,0.753158,0.924231,0.129028,0.161957,0.429868,0.258323,0.56339,0.118907,0.364068,0.266816,0.0487227,0.189562,0.322766,0.720278,0.33737,0.417815,0.560871,0.480116,0.717046,0.656957,0.0531857,0.265847,0.506506,0.0104725,0.0828898,0.623167,0.695889,0.391124,0.334409,0.43974,0.563843,0.920832,0.393891,0.194529,0.34268,0.552479,0.46399,0.532609,0.106898,0.332097,0.0598311,0.669625,0.0721132,0.816327,0.542715,0.876682,0.165045,0.925167,0.27762,0.537916,0.886325,0.613215,0.470308,0.302868,0.712746,0.290631,0.638465,0.245361,0.113266,0.880692,0.513509,0.913508,0.623692,0.853852,0.428229,0.818339,0.177899,0.957943,0.869968,0.299672,0.45316,0.364282,0.157072,0.587315,0.686708,0.0199385,|0.266387,0.722659,0.98503,0.396279,0.731636,0.473532,0.44855,0.614464,0.169183,0.648302,0.604611,0.775128,0.881736,0.798595,0.403755,0.763428,0.470726,0.133805,0.169501,0.898945,0.181071,0.473543,0.569745,0.177155,0.536443,0.558052,0.412142,0.990609,0.513977,0.215771,0.46944,0.901692,0.333539,0.792288,0.585133,0.466428,0.970704,0.765956,0.792153,0.441567,0.263642,0.537344,0.878231,0.685518,0.640487,0.786222,0.276448,0.0815191,0.751572,0.814812,0.87604,0.370354,0.93482,0.575229,0.614267,0.56497,0.0676657,0.913821,0.963546,0.0700315,0.249979,0.712328,0.272103,0.905242,0.532723,0.859329,0.946061,0.0105182,0.754958,0.434467,0.370321,0.517036,0.946462,0.354152,0.992951,0.614714,0.758491,0.308577,0.194899,0.312831,0.656132,0.611435,0.279197,0.223496,0.117119,0.477508,0.554373,0.73229,0.630296,0.0103764,0.0047785,0.577322,0.690578,0.713478,0.073255,0.0281537,0.537395,0.712092,0.943437,0.545283,0.0301008,0.958357,0.689351,0.789707,0.49233,0.313107,0.725002,0.419437,0.042706,0.863765,0.13803,0.134689,0.912564,0.268686,0.737881,0.667967,0.550865,0.357535,0.0945616,0.297717,0.120652,0.679807,0.891315,0.587834,0.243134,0.0997573,0.976028,0.583135,0.382051,0.873987,0.319054,0.0401536,0.829804,0.824971,0.326918,0.596323,0.838124,0.0677419,0.600166,0.648451,0.220662,0.512721,0.803103,0.683536,0.293461,0.0799495,0.219354,0.536236,0.263335,0.678716,0.347992,0.475005,0.841891,0.166546,0.50447,0.640961,0.593426,0.0147977,0.596142,0.89877,0.0209909,0.07861,0.245566,0.624438,0.29375,0.834548,0.152007,0.622397,0.250089,0.254545,0.217102,0.719993,0.325511,0.071689,0.38465,0.38103,0.378758,0.747433,0.633479,0.349234,0.398578,0.621661,0.169169,0.862013,0.77719,0.84817,0.597337,0.0662047,0.886254,0.747137,0.44466,0.912656,0.925576,0.983285,0.392371,0.628752,0.550205,0.569687,0.739088,0.742279,0.345899,0.669309,0.649519,0.921998,0.258076,0.715981,0.4362,0.0967517,0.849493,0.779793,0.385789,0.46323,0.564473,0.996007,0.844716,0.619514,0.468749,0.138752,0.719198,0.823406,0.490256,0.303735,0.904687,0.545069,0.212561,0.0340714,0.259531,0.241693,0.979773,0.00904322,0.325628,0.316554,0.695546,0.0474156,0.409336,0.828245,0.261812,0.256236,0.326242,0.339299,0.451721,0.205416,0.529159,0.521222,0.405074,0.2966,0.439624,0.0211083,0.579979,0.637218,0.484113,0.283953,0.946851,0.759452,0.983528,0.70702,0.862284,0.815632,0.7374,0.673943,0.265421,0.886754,0.560314,0.497045,0.196272,0.841482,0.572393,0.543216,0.0608636,0.0601438,0.155029,0.49016,0.0316606,0.580256,0.653324,0.837766,0.360842,0.450254,0.0435335,0.990096,0.638235,0.0304114,0.789654,0.197786,0.850165,0.802326,0.672209,0.113821,0.326657,0.819015,0.951026,0.392898,0.139717,0.57102,0.488547,0.969229,0.766852,0.463776,0.965431,0.234176,0.32028,0.281532,0.498856,0.435789,0.874907,0.221527,0.662331,0.0612617,0.515153,0.72518,0.847294,0.179025,0.0071975,0.615747,0.494885,0.111205,0.338191,0.439697,0.130936,0.789558,0.697436,0.634216,0.937406,0.327079,0.977954,0.342208,0.919856,0.461349,0.666129,0.302488,0.118018,0.178446,0.490696,0.584578,0.53697,0.846452,0.566244,0.995307,0.452948,0.520462,0.862379,0.97168,0.864788,0.973507,0.973989,0.136847,0.533977,0.131855,0.549859,0.731822,0.641171,0.391562,0.595862,0.00115836,0.499931,0.95202,0.679475,0.971913,0.844108,0.994659,0.277051,0.789917,0.664753,0.954623,0.53563,0.360731,0.769379,0.202561,0.854187,0.991557,0.405585,0.769034,0.211902,0.497468,0.641428,0.964022,0.463979,0.690539,0.0913819,0.639084,0.158703,0.164257,0.537477,0.605395,0.548092,0.928661,0.571548,0.634185,0.974132,0.796413,0.440277,0.107376,0.0117624,0.497477,0.507064,0.0118965,0.145281,0.557577,0.114967,0.483193,0.33592,0.619224,0.176018,0.334117,0.0005005,0.84164,0.913481,0.216866,0.223486,0.662969,0.0212544,0.845455,0.766357,0.464704,0.556119,0.253707,0.706052,0.353047,0.523784,0.566796,0.180653,0.417156,0.218863,0.707911,0.959494,0.472144,0.474272,0.79472,0.371438,0.535728,0.31372,0.427325,0.768603,0.0125405,0.172561,0.880606,0.980461,0.533704,0.642096,0.258965,0.430143,0.412676,0.309679,0.527088,0.244468,0.0982988,0.445313,0.548442,0.392849,0.175684,0.948162,0.0811648,0.822883,0.0984102,0.435186,0.304442,0.500743,0.691019,0.298259,0.134867,0.712374,0.278571,0.363239,0.770844,0.453788,0.210039,0.409124,0.130373,0.80868,0.387548,0.134686,0.942302,0.0746192,0.700043,0.255916,0.746306,0.598852,0.236653,0.916788,0.355242,0.740738,0.239003,0.308997,0.567428,0.72583,0.418271,0.804654,0.935521,0.799285,0.145103,0.255309,0.623772,0.550713,0.0111979,0.0443056,0.616026,0.998488,0.382002,0.240877,0.304485,0.993435,0.440813,0.98183,0.941279,0.223208,0.49736,0.461108,0.512171,0.905007,0.877795,0.224056,0.414288,0.189049,0.217933,0.179603,0.98139,0.35856,0.689774,0.602559,0.613407,0.884075,0.2834,0.225332,0.712537,0.124523,0.464332,0.810686,0.346615,0.113991,0.213422,0.947945,0.247632,0.714257,0.990709,0.251967,0.397126,0.5795,0.529291,0.385317,0.685415,0.37559,0.422706,0.171076,0.752322,0.40397,0.618655,0.480661,0.771851,0.337973,0.0956417,0.834204,0.968789,0.215345,0.428155,0.969858,0.0279556,0.711858,0.535576,0.227837,0.990934,0.911759,0.955794,0.98827,0.794031,0.918086,0.0111531,0.524613,0.199502,0.475532,0.128908,0.0432779,0.324043,0.502219,0.242888,0.637422,0.525349,0.532268,0.0129147,0.469754,0.959394,0.811825,0.523485,0.0865231,0.670079,0.98511,0.572319,0.99004,0.655346,0.192649,0.211363,0.582496,0.0179044,0.306838,0.956489,0.510171,0.845274,0.226619,0.505651,0.651402,0.202553,0.119653,0.560018,0.447491,0.940103,0.998323,0.341298,0.02086,0.569383,0.894426,0.587719,0.0184477,0.777613,0.298181,0.233972,0.590306,0.638419,0.774076,0.857454,0.680839,0.76908,0.660025,0.0295994,0.400847,0.841549,0.835298,0.459342,0.798405,0.935007,0.421798,0.818332,0.332481,0.610795,0.367485,0.0257325,0.95575,0.621637,0.617424,0.512369,0.447146,0.695531,0.848593,0.047858,0.10299,0.288103,0.115038,0.348655,0.188339,0.120637,0.166277,0.2411,0.0343771,0.523808,0.469981,0.208819,0.38272,0.741683,0.476649,0.0103007,0.202747,0.933752,0.745609,0.971992,0.092575,0.730931,0.379192,0.659943,0.523541,0.879958,0.390993,0.736654,0.547564,0.0791554,0.75413,0.309407,0.0778763,0.0197535,0.128874,0.574779,0.856203,0.0446531,0.479015,0.667738,0.620694,0.0521613,0.040386,0.989194,0.361365,0.191775,0.0657954,0.742087,0.156891,0.02715,0.389491,0.10163,0.225408,0.318792,0.666585,0.173491,0.330151,0.0130385,0.494353,0.630827,0.29905,0.132431,0.929297,0.478207,0.583896,0.648435,0.262422,0.807672,0.94534,0.827634,0.549053,0.24728,0.202,0.181573,0.42019,0.202424,0.566458,0.63486,0.538818,0.0904828,0.790742,0.198424,0.0866558,0.407762,0.264376,0.00956571,0.29045,0.587308,0.867792,0.0423318,0.0632971,0.213118,0.309507,0.574208,0.570171,0.722311,0.0603847,0.369679,0.181525,0.317505,0.940179,0.495116,0.617656,0.674239,0.269404,0.180852,0.700281,0.351138,0.452253,0.0764912,0.771466,0.215909,0.88432,0.661574,0.0176003,0.52346,0.940486,0.806036,0.319526,0.590682,0.248203,0.328596,0.80638,0.632839,0.746322,0.725986,0.0567868,0.55608,0.0734326,0.462744,0.172119,0.961696,0.849703,0.11291,0.231896,0.0985544,0.386987,0.277558,0.45345,0.979149,0.955745,0.0882615,0.0407621,0.482775,0.338591,0.478158,0.040413,0.684813,0.976878,0.988228,0.129189,0.921159,0.696307,0.174831,0.201531,0.0139761,0.375414,0.50193,0.320361,0.362618,0.0710385,0.668228,0.244672,0.557821,0.505524,0.538694,0.793032,0.803036,0.435303,0.405978,0.361306,0.0636883,0.637101,0.479259,0.902621,0.178373,0.888599,0.747752,0.156541,0.968056,0.985537,0.305642,0.861145,0.522984,0.775815,0.2666,0.213538,0.259488,0.662351,0.596333,0.904195,0.941958,0.323673,0.468012,0.117307,0.298667,0.693861,0.957087,0.111133,0.631715,0.78505,0.638059,0.752941,0.556449,0.182438,0.0412934,0.992627,0.741873,0.955334,0.813491,0.339791,0.627663,0.512767,0.302932,0.118241,0.261436,0.377358,0.618737,0.937321,0.475766,0.219588,0.232924,0.464534,0.123253,0.485788,0.762324,0.0774915,0.546783,0.564876,0.36064,0.313228,0.643856,0.736666,0.933824,0.161898,0.0349288,0.22702,0.442351,0.0943851,0.238206,0.836262,0.528736,0.442735,0.547827,0.5038,0.532727,0.97548,0.699107,0.857746,0.450429,0.101782,0.515636,0.133637,0.740946,0.758197,0.1171,0.136535,0.909764,0.428951,0.210943,0.572791,0.769663,0.809263,0.344238,0.641236,0.897735,0.835883,0.503852,0.876346,0.809517,0.168477,0.840281,0.782896,0.900257,0.298443,0.750447,0.815497,0.925626,0.431097,0.741042,0.848759,0.702214,0.51341,0.568704,0.38786,0.396851,0.877455,0.24515,0.999425,0.554278,0.831084,0.734982,0.663474,0.664664,0.920359,0.841903,0.719312,0.762246,0.248001,0.513024,0.856034,0.562643,0.383144,0.366519,0.407801,0.85133,0.777676,0.708581,0.552369,0.632217,0.510062,0.929455,0.763759,0.413464,0.0755008,0.000326037,0.442015,0.945151,0.701472,0.284408,0.553249,0.69203,0.773971,0.854157,0.908025,0.0245571,0.865093,0.759905,0.491226,0.0860959,0.259799,0.77268,0.0706061,0.867243,0.578213,0.50988,0.474741,0.927271,0.228723,0.0418139,0.877587,0.831659,0.853303,0.758968,0.689426,0.784561,0.42978,0.535614,0.315169,0.0695145,0.420027,0.478565,0.849326,0.91706,0.334186,0.609196,0.281994,0.83065,|0.648039,0.557383,0.887138,0.023406,0.191024,0.7368,0.115231,0.225936,0.0479991,0.128011,0.561456,0.155693,0.818598,0.932141,0.694502,0.3983,0.649694,0.994861,0.078571,0.650734,0.87997,0.123051,0.706757,0.619556,0.766192,0.0656751,0.46177,0.601631,0.132985,0.367068,0.578346,0.00103605,0.52739,0.589099,0.412626,0.72777,0.0797839,0.475082,0.871719,0.213087,0.0236251,0.664141,0.150209,0.856471,0.99159,0.660938,0.360789,0.71457,0.328024,0.699433,0.931827,0.73617,0.690516,0.747055,0.624116,0.237748,0.0886508,0.134612,0.254483,0.0156357,0.934953,0.368677,0.327802,0.94312,0.48611,0.118833,0.541792,0.661365,0.195315,0.483125,0.643085,0.254797,0.173119,0.914213,0.0737839,0.834228,0.59276,0.911892,0.817018,0.308269,0.093882,0.884542,0.154259,0.874963,0.400864,0.659843,0.158478,0.400762,0.994551,0.941719,0.459935,0.923876,0.228488,0.650133,0.545431,0.981607,0.127461,0.825955,0.775438,0.907473,0.455854,0.969603,0.185451,0.705898,0.247834,0.799443,0.0348231,0.248047,0.15716,0.9032,0.857644,0.342933,0.0297424,0.357771,0.11705,0.625995,0.14134,0.578137,0.184061,0.84278,0.640003,0.71053,0.307985,0.196743,0.933286,0.288854,0.966711,0.713665,0.724373,0.0436931,0.452616,0.00585574,0.206622,0.241604,0.839611,0.990528,0.556125,0.746206,0.840154,0.251137,0.415235,0.554875,0.50923,0.848895,0.578633,0.879032,0.288271,0.788386,0.557046,0.515757,0.415012,0.427112,0.256311,0.594984,0.353067,0.0430821,0.340703,0.755347,0.938963,0.134722,0.513784,0.0866762,0.965205,0.414054,0.931803,0.185843,0.533317,0.888394,0.110196,0.854048,0.296088,0.301094,0.00437862,0.248681,0.488362,0.899019,0.693783,0.325483,0.39932,0.266761,0.601069,0.471491,0.440505,0.120834,0.927111,0.79679,0.932277,0.0367793,0.479953,0.8863,0.144336,0.617262,0.596549,0.0712551,0.16091,0.398514,0.624853,0.923331,0.895658,0.208167,0.504633,0.61683,0.522706,0.143098,0.583019,0.709241,0.120554,0.374099,0.121596,0.402952,0.750939,0.313852,0.411935,0.206872,0.465244,0.375733,0.956166,0.0229135,0.836117,0.258798,0.710881,0.821475,0.300361,0.781746,0.634116,0.13105,0.196489,0.758921,0.587759,0.838459,0.205146,0.291881,0.139986,0.585431,0.291598,0.16295,0.110939,0.748668,0.816577,0.3752,0.422435,0.286174,0.931558,0.922056,0.818802,0.933215,0.381088,0.882015,0.876081,0.887563,0.478083,0.314869,0.0935603,0.606906,0.205617,0.30725,0.71283,0.733349,0.548474,0.633473,0.975307,0.965084,0.0951276,0.622638,0.35113,0.198131,0.863203,0.222768,0.795926,0.652097,0.821579,0.23239,0.110746,0.164565,0.492089,0.0778285,0.716709,0.601238,0.261494,0.627263,0.372742,0.814059,0.310139,0.87575,0.467099,0.233241,0.787896,0.28331,0.145588,0.737584,0.554469,0.861075,0.848783,0.504525,0.722245,0.274214,0.919228,0.342027,0.310654,0.399928,0.264711,0.821661,0.547221,0.788402,0.586238,0.877736,0.299865,0.800629,0.5098,0.888653,0.014702,0.310635,0.114348,0.314105,0.17426,0.35611,0.0982451,0.0874971,0.556422,0.725822,0.357296,0.596281,0.0570323,0.879611,0.507772,0.555142,0.646698,0.723226,0.509636,0.740915,0.641043,0.838239,0.193301,0.791269,0.410722,0.233788,0.817142,0.237776,0.786856,0.813447,0.390458,0.458059,0.81409,0.780859,0.495898,0.0953885,0.909541,0.369084,0.286592,0.914137,0.576426,0.434768,0.638857,0.720197,0.370269,0.8646,0.999882,0.996515,0.0134914,0.706023,0.105036,0.962947,0.534888,0.493259,0.148032,0.905658,0.907406,0.479249,0.53999,0.771657,0.494216,0.590607,0.658296,0.0583948,0.413187,0.114574,0.78052,0.662394,0.403001,0.49601,0.22412,0.456769,0.162687,0.111432,0.983723,0.271388,0.497202,0.891614,0.851543,0.423097,0.16922,0.936725,0.646364,0.146619,0.0213802,0.646492,0.766254,0.18916,0.698586,0.78569,0.820019,0.853128,0.907293,0.58041,0.318778,0.915402,0.197811,0.917274,0.0151959,0.382549,0.780613,0.340211,0.556605,0.592327,0.303516,0.969588,0.394168,0.876361,0.511368,0.82977,0.188267,0.150837,0.437038,0.830582,0.829239,0.549981,0.273266,0.257058,0.558946,0.870354,0.230859,0.636107,0.0191655,0.996819,0.890299,0.229041,0.775302,0.127499,0.800797,0.828628,0.689498,0.487581,0.50044,0.130432,0.584931,0.616268,0.425663,0.0782369,0.127829,0.963902,0.364846,0.374716,0.0791367,0.581035,0.0973935,0.112957,0.279763,0.413929,0.0916327,0.978981,0.551696,0.97236,0.966694,0.175465,0.840227,0.362876,0.321442,0.791515,0.447623,0.679082,0.264536,0.912751,0.577434,0.376974,0.85511,0.237129,0.62611,0.510495,0.310624,0.800456,0.307354,0.860213,0.467551,0.573813,0.359361,0.294266,0.691087,0.126429,0.405092,0.924038,0.99474,0.29075,0.211499,0.904799,0.352551,0.204413,0.734923,0.655296,0.666465,0.0797028,0.70872,0.295905,0.636881,0.766601,0.980123,0.872137,0.266299,0.31293,0.21422,0.660483,0.492341,0.322291,0.0751849,0.405202,0.727909,0.766319,0.779694,0.012985,0.70115,0.0913271,0.533125,0.147184,0.870373,0.707021,0.760593,0.347961,0.0963312,0.511895,0.00839025,0.952321,0.380642,0.260379,0.814183,0.0876777,0.855286,0.83255,0.0722884,0.903597,0.878988,0.887848,0.0902785,0.244063,0.562415,0.54627,0.93849,0.0116015,0.337934,0.721725,0.176584,0.359742,0.666296,0.219994,0.392211,0.492528,0.845622,0.0756395,0.478163,0.548085,0.222424,0.195438,0.917074,0.433579,0.336925,0.84173,0.144989,0.114977,0.608445,0.196004,0.667149,0.948772,0.176151,0.908525,0.959263,0.0966823,0.409502,0.489643,0.710009,0.973584,0.991805,0.233714,0.621653,0.315922,0.976625,0.660776,0.1533,0.575339,0.672907,0.069468,0.667351,0.437644,0.254515,0.240316,0.677824,0.415112,0.510077,0.716549,0.93901,0.769078,0.833045,0.343126,0.981751,0.9121,0.21889,0.778931,0.583151,0.0236529,0.517973,0.714245,0.0276931,0.30759,0.932002,0.00810438,0.572706,0.607552,0.0614079,0.225066,0.716702,0.101023,0.0839759,0.89072,0.756604,0.331984,0.488346,0.186352,0.391779,0.0204313,0.258181,0.76377,0.945503,0.262021,0.628744,0.505533,0.909566,0.399062,0.715583,0.965999,0.275465,0.958449,0.3384,0.33067,0.0863311,0.511654,0.0741209,0.316524,0.612845,0.588044,0.282774,0.374955,0.32385,0.457393,0.0514416,0.82558,0.185178,0.106859,0.167544,0.0540375,0.115106,0.0244836,0.367283,0.0786054,0.283722,0.0799901,0.698883,0.764253,0.655676,0.486244,0.0460896,0.854129,0.406386,0.384096,0.333074,0.274675,0.642223,0.868748,0.525562,0.614456,0.311418,0.835242,0.302662,0.780529,0.566225,0.621138,0.458532,0.813423,0.433363,0.0981953,0.648221,0.532329,0.212084,0.310842,0.769819,0.774592,0.468181,0.770551,0.43571,0.655284,0.0541471,0.327569,0.241361,0.563745,0.192199,0.53926,0.533531,0.171207,0.969276,0.51668,0.079842,0.878271,0.413145,0.139476,0.385402,0.265926,0.0917376,0.699996,0.415,0.966793,0.714866,0.548711,0.80371,0.273655,0.873376,0.00179112,0.0476516,0.971301,0.311925,0.182257,0.318195,0.988937,0.816014,0.52079,0.740179,0.850545,0.814809,0.781064,0.0283281,0.2695,0.545833,0.50919,0.244739,0.569658,0.415661,0.592919,0.0647103,0.0888152,0.555071,0.953918,0.536977,0.0876342,0.777106,0.122605,0.281963,0.88381,0.0902115,0.961758,0.860166,0.807845,0.986327,0.179445,0.292841,0.789244,0.0637053,0.630619,0.857595,0.706241,0.0568966,0.424275,0.250395,0.328969,0.0931623,0.681144,0.132868,0.441097,0.00642884,0.230373,0.0556855,0.276524,0.811369,0.661349,0.950601,0.0633128,0.235258,0.891606,0.431886,0.269012,0.13139,0.689519,0.0295685,0.236253,0.414933,0.265653,0.76632,0.674634,0.840053,0.478115,0.881161,0.658944,0.455676,0.730686,0.0422813,0.92361,0.192537,0.496635,0.301873,0.982056,0.104824,0.869802,0.304845,0.447863,0.523221,0.333026,0.0654451,0.209766,0.634755,0.144017,0.414415,0.641599,0.599509,0.450355,0.898686,0.226668,0.589788,0.259606,0.189834,0.21138,0.145482,0.617291,0.663239,0.00845283,0.7046,0.893489,0.0599577,0.302977,0.272416,0.712717,0.56428,0.893196,0.930619,0.491814,0.288923,0.918202,0.737731,0.171383,0.795595,0.727289,0.285687,0.279365,0.473844,0.681437,0.705656,0.853892,0.541079,0.634954,0.74722,0.832411,0.664935,0.137961,0.797566,0.0915948,0.271155,0.131743,0.35269,0.880841,0.606174,0.524361,0.404746,0.479357,0.207947,0.574372,0.446849,0.49342,0.903425,0.832657,0.0911067,0.624391,0.510047,0.391303,0.397497,0.135063,0.0140208,0.791185,0.227648,0.085573,0.12975,0.721197,0.969678,0.511929,0.105922,0.730972,0.709402,0.862313,0.617089,0.998562,0.618835,0.780482,0.975037,0.250771,0.601497,0.0316834,0.153156,0.402249,0.334336,0.644685,0.4217,0.315133,0.205248,0.765456,0.721244,0.319943,0.597021,0.793772,0.267358,0.319258,0.55819,0.814849,0.914757,0.13128,0.47951,0.79723,0.26951,0.860832,0.290463,0.534609,0.0612949,0.136235,0.0935718,0.158624,0.630203,0.558227,0.804773,0.401789,0.503167,0.692576,0.505835,0.397049,0.976089,0.571755,0.254114,0.00129551,0.151242,0.973463,0.513915,0.930425,0.213928,0.452581,0.765894,0.225754,0.791713,0.33833,0.985961,0.0604042,0.404478,0.485419,0.0776843,0.0225853,0.00224441,0.0400248,0.568101,0.910657,0.159157,0.282197,0.402849,0.901038,0.880068,0.670101,0.501279,0.800467,0.705217,0.543619,0.721412,0.858006,0.0315278,0.921096,0.427872,0.899115,0.360437,0.835764,0.565412,0.899165,0.887895,0.738455,0.386131,0.848259,0.451057,0.312393,0.187439,0.593634,0.539053,0.643399,0.239354,0.242677,0.565885,0.636392,0.853355,0.543139,0.0932117,0.902286,0.149943,0.71438,0.749922,0.283703,|0.0907732,0.63547,0.115847,0.47449,0.04175,0.402968,0.269853,0.540651,0.290303,0.817784,0.71014,0.45841,0.347391,0.667508,0.0415909,0.109757,0.584777,0.570572,0.567427,0.4171,0.733845,0.587305,0.142025,0.592649,0.322583,0.236437,0.685208,0.441488,0.396874,0.769354,0.520664,0.249214,0.590868,0.764671,0.353746,0.59245,0.335132,0.101101,0.790572,0.757118,0.163084,0.0248975,0.223359,0.457744,0.784022,0.782155,0.557658,0.682143,0.655494,0.374415,0.585013,0.274831,0.85545,0.812034,0.217652,0.877769,0.653793,0.571222,0.295553,0.725189,0.546793,0.895577,0.93934,0.873308,0.207921,0.298518,0.776076,0.92122,0.831851,0.784335,0.0422863,0.980738,0.369432,0.835961,0.744309,0.635702,0.620774,0.897933,0.708491,0.336583,0.751521,0.352439,0.332951,0.880431,0.762479,0.927568,0.751495,0.0865039,0.0355808,0.978086,0.47929,0.714612,0.283961,0.741911,0.776942,0.600754,0.123458,0.744058,0.138472,0.666214,0.32797,0.743339,0.491313,0.611667,0.28323,0.427422,0.480166,0.797728,0.123067,0.837744,0.602475,0.15028,0.841428,0.23813,0.699354,0.218647,0.6308,0.37869,0.40545,0.758017,0.422174,0.462105,0.91444,0.209945,0.0907441,0.37529,0.745108,0.613476,0.769322,0.761243,0.67524,0.957038,0.447219,0.541856,0.865967,0.621568,0.144074,0.609929,0.165097,0.242378,0.17664,0.641119,0.197275,0.670264,0.290708,0.303837,0.492773,0.705774,0.538631,0.00704581,0.236747,0.968851,0.702184,0.541458,0.242309,0.97617,0.247346,0.539391,0.763811,0.628765,0.0927635,0.610638,0.887424,0.491089,0.529896,0.368432,0.0440823,0.0617555,0.17161,0.989267,0.227034,0.44127,0.392679,0.839193,0.105783,0.216778,0.189157,0.829991,0.720367,0.683719,0.345684,0.00956947,0.836362,0.00512838,0.304844,0.708888,0.0867857,0.424369,0.5265,0.896612,0.216261,0.32148,0.0505454,0.0961229,0.603084,0.592998,0.692577,0.504955,0.835523,0.758792,0.389291,0.690989,0.968582,0.0797862,0.802101,0.148618,0.0346221,0.0634509,0.863459,0.619162,0.659333,0.931455,0.335406,0.402104,0.310002,0.101157,0.287401,0.47995,0.302387,0.305312,0.037461,0.393199,0.732104,0.673974,0.973515,0.6783,0.594201,0.152966,0.00175685,0.976234,0.429942,0.553763,0.968995,0.0526704,0.25023,0.76383,0.12533,0.152077,0.16697,0.475548,0.265454,0.161435,0.342017,0.467574,0.341084,0.197897,0.951494,0.244708,0.790725,0.81424,0.680422,0.104693,0.650152,0.878112,0.533326,0.364102,0.0981854,0.853637,0.336882,0.179403,0.129166,0.230365,0.137894,0.43839,0.438512,0.404661,0.432005,0.400874,0.659627,0.26159,0.650807,0.673496,0.348784,0.235471,0.726493,0.903641,0.167176,0.919387,0.900365,0.841975,0.76056,0.136023,0.244281,0.65493,0.598142,0.213145,0.279442,0.863596,0.214638,0.0511892,0.873184,0.440314,0.163725,0.519958,0.786287,0.491703,0.389012,0.563917,0.619117,0.794319,0.0335312,0.353936,0.588324,0.389358,0.146372,0.746933,0.850805,0.533166,0.550103,0.0371894,0.831477,0.645602,0.540953,0.431772,0.588178,0.504619,0.576007,0.493383,0.095463,0.195521,0.698459,0.161301,0.866173,0.412311,0.0280788,0.243038,0.825624,0.52102,0.360916,0.337737,0.761439,0.981753,0.74525,0.0726777,0.347545,0.350436,0.382333,0.72443,0.24525,0.460976,0.115739,0.873843,0.792344,0.300635,0.205662,0.356845,0.570939,0.0107881,0.7734,0.458707,0.364959,0.899363,0.309223,0.491769,0.987307,0.324102,0.120351,0.871759,0.413395,0.110081,0.29301,0.055271,0.431476,0.594547,0.125095,0.446724,0.643622,0.766616,0.933105,0.58092,0.68408,0.872055,0.27957,0.306973,0.9846,0.6945,0.763983,0.0343529,0.261646,0.664591,0.316483,0.0547516,0.504638,0.765135,0.481411,0.832469,0.12347,0.0691902,0.0986542,0.541057,0.106097,0.846101,0.362411,0.575866,0.281482,0.213334,0.128359,0.40952,0.0422857,0.672439,0.774921,0.310159,0.179674,0.402212,0.0596694,0.980748,0.119119,0.678091,0.1421,0.176615,0.59342,0.992651,0.884497,0.457745,0.979108,0.214498,0.425231,0.892038,0.750457,0.46499,0.17641,0.951098,0.791682,0.354561,0.296831,0.645081,0.763208,0.382947,0.191558,0.409607,0.717203,0.839931,0.294017,0.792203,0.831964,0.420095,0.191505,0.496703,0.00197119,0.00526279,0.345117,0.108553,0.414788,0.924595,0.0532773,0.479446,0.549423,0.680548,0.156084,0.36411,0.0334508,0.961434,0.50742,0.892103,0.885202,0.806335,0.935671,0.945731,0.657354,0.932059,0.0736284,0.909447,0.566234,0.425593,0.509779,0.0147895,0.672096,0.324892,0.688441,0.270837,0.389555,0.595577,0.0550164,0.288238,0.71342,0.509351,0.937867,0.828828,0.149766,0.321726,0.10464,0.492843,0.478805,0.14589,0.705021,0.583654,0.82977,0.229665,0.371079,0.566714,0.0697944,0.557521,0.656858,0.740645,0.227621,0.867142,0.987086,0.434934,0.993144,0.599979,0.267112,0.900812,0.880819,0.493531,0.408717,0.102365,0.574116,0.848677,0.134977,0.39672,0.232619,0.158491,0.0591763,0.212161,0.0812113,0.984191,0.595631,0.782369,0.492749,0.877199,0.835076,0.719109,0.845416,0.266244,0.846399,0.242487,0.903606,0.947215,0.841451,0.0553632,0.303583,0.193874,0.144751,0.719547,0.82805,0.318407,0.624152,0.493988,0.399047,0.135094,0.208407,0.449072,0.276264,0.15097,0.237396,0.178442,0.659282,0.543385,0.903416,0.960632,0.269815,0.955758,0.349546,0.584999,0.64892,0.704027,0.572182,0.269318,0.980086,0.210151,0.673218,0.728385,0.699785,0.343654,0.7179,0.810831,0.547114,0.164145,0.60306,0.590652,0.504498,0.224282,0.127596,0.378819,0.449862,0.896049,0.294278,0.601708,0.895992,0.937331,0.395771,0.0838056,0.384013,0.695921,0.101371,0.39859,0.10428,0.273669,0.481012,0.768222,0.276091,0.551876,0.326685,0.781625,0.922342,0.34753,0.720085,0.276564,0.969051,0.00688368,0.486864,0.233022,0.66973,0.88662,0.23866,0.220631,0.421265,0.515162,0.68444,0.390322,0.151895,0.387089,0.876765,0.549742,0.0858261,0.215112,0.476814,0.348808,0.917835,0.614094,0.0981981,0.118361,0.604577,0.438047,0.37185,0.47595,0.465646,0.598508,0.233552,0.139732,0.326806,0.680229,0.0936725,0.426428,0.312487,0.122635,0.206781,0.344259,0.0391424,0.82367,0.153056,0.428255,0.670914,0.834885,0.0745804,0.873164,0.302679,0.499283,0.0361168,0.971043,0.446177,0.587287,0.163404,0.612298,0.849053,0.993266,0.406937,0.32158,0.585178,0.409289,0.155745,0.886361,0.348575,0.0227397,0.0914817,0.659573,0.321583,0.455143,0.847298,0.396496,0.968022,0.0986614,0.498872,0.221934,0.493546,0.270592,0.563967,0.335093,0.177463,0.980201,0.107055,0.465181,0.517945,0.390912,0.388584,0.804386,0.146557,0.496821,0.195368,0.265624,0.248537,0.563675,0.791159,0.0949851,0.104883,0.252658,0.357356,0.367048,0.243029,0.097942,0.337045,0.448983,0.647177,0.614355,0.166422,0.385967,0.0270513,0.620507,0.533379,0.919682,0.396592,0.558127,0.959606,0.00805479,0.401441,0.411037,0.969475,0.644156,0.351486,0.847284,0.0220995,0.989297,0.0891129,0.103871,0.140181,0.577429,0.127872,0.660128,0.681221,0.804326,0.2604,0.188361,0.735009,0.55282,0.345924,0.410695,0.932013,0.413765,0.359833,0.509772,0.503512,0.159069,0.150797,0.892453,0.337864,0.405289,0.389397,0.871375,0.924679,0.900085,0.815027,0.343179,0.769879,0.852319,0.646479,0.938046,0.728788,0.639671,0.486385,0.169343,0.575195,0.132834,0.426463,0.238044,0.242629,0.818953,0.902042,0.583136,0.646568,0.93829,0.693362,0.895658,0.207524,0.805485,0.138222,0.0863744,0.0166324,0.846987,0.792326,0.204442,0.176461,0.963825,0.620422,0.0262418,0.208295,0.32555,0.840399,0.401622,0.488812,0.011555,0.815592,0.926795,0.519157,0.429555,0.102305,0.235694,0.506566,0.934526,0.599035,0.508831,0.514875,0.625714,0.61064,0.653839,0.095278,0.885314,0.950411,0.565544,0.339788,0.691172,0.339029,0.155721,0.523271,0.124182,0.508447,0.802457,0.804841,0.968878,0.576723,0.341028,0.981537,0.970865,0.570535,0.0268463,0.228326,0.949653,0.804296,0.658029,0.599052,0.156534,0.68729,0.960507,0.14156,0.0714368,0.876763,0.908687,0.732313,0.336468,0.688519,0.0575249,0.812307,0.987043,0.590813,0.679686,0.811665,0.775175,0.363812,0.117448,0.794632,0.73611,0.215418,0.614976,0.121195,0.899577,0.812082,0.567614,0.735788,0.230693,0.00841594,0.0806273,0.788229,0.27376,0.169515,0.883927,0.78564,0.807784,0.986101,0.377559,0.770145,0.0931423,0.80208,0.587356,0.63225,0.622193,0.337686,0.628449,0.50349,0.667244,0.774962,0.176594,0.664087,0.0284542,0.386289,0.602883,0.682478,0.473133,0.953015,0.43938,0.144708,0.0205144,0.0198758,0.471139,0.790708,0.209814,0.0988163,0.0632042,0.628961,0.892382,0.710284,0.93033,0.0410969,0.621674,0.094602,0.222374,0.654982,0.0719191,0.0844764,0.859239,0.470837,0.138873,0.240131,0.931901,0.734277,0.279687,0.516362,0.19147,0.676405,0.965191,0.446692,0.524677,0.295974,0.698267,0.612342,0.591777,0.768855,0.333652,0.437187,0.0213566,0.940965,0.46002,0.666964,0.404573,0.942843,0.033529,0.403444,0.282639,0.340403,0.921213,0.847789,0.395345,0.478651,0.615227,0.178329,0.304689,0.321177,0.415072,0.56014,0.729813,0.248802,0.32062,0.920092,0.51358,0.63882,0.803833,0.344175,0.106046,0.884259,0.731849,0.849004,0.0176675,0.389953,0.958033,0.255907,0.640317,0.819806,0.680262,0.0252209,0.954342,0.0473209,0.0201106,0.15378,0.892132,0.952885,0.496425,0.647212,0.926377,0.0264116,0.971644,0.847724,0.371561,0.0082792,0.697154,0.654433,0.377611,0.0371553,0.14487,0.220037,0.974416,0.241834,0.503791,0.527801,0.250476,0.925471,0.0725154,0.658172,0.0807006,0.761795,0.664368,0.964297,0.0832354,|0.193869,0.251788,0.39796,0.288404,0.236733,0.427996,0.289654,0.294244,0.989463,0.878034,0.364967,0.237949,0.39638,0.899509,0.692435,0.258705,0.574582,0.767228,0.317617,0.00240499,0.468393,0.0645491,0.202273,0.569521,0.8719,0.0857181,0.285642,0.0480383,0.81034,0.121742,0.947815,0.840696,0.650959,0.426824,0.353191,0.421954,0.344614,0.0691648,0.884424,0.350409,0.0530796,0.784826,0.312182,0.0381415,0.571917,0.39823,0.964572,0.0770444,0.755257,0.437366,0.822246,0.247025,0.611455,0.387526,0.101387,0.953866,0.050066,0.471819,0.568281,0.921276,0.729563,0.53514,0.559487,0.220629,0.694893,0.687827,0.917153,0.811884,0.904584,0.0877019,0.930586,0.32771,0.345915,0.0159487,0.687474,0.508877,0.511703,0.497602,0.341541,0.484975,0.506108,0.721603,0.621395,0.230993,0.671776,0.367856,0.610636,0.430029,0.539527,0.108264,0.20544,0.603848,0.452899,0.622348,0.84752,0.821183,0.112889,0.942224,0.495848,0.964057,0.278607,0.497255,0.23007,0.841346,0.397107,0.729812,0.63562,0.450561,0.264275,0.128503,0.881782,0.496539,0.745601,0.888062,0.848616,0.96442,0.0534545,0.317362,0.322468,0.544309,0.837817,0.094896,0.469957,0.432612,0.138916,0.5667,0.0859,0.271426,0.0878334,0.584381,0.183814,0.311868,0.32649,0.798071,0.299533,0.292438,0.802628,0.923174,0.782476,0.0541157,0.634999,0.426913,0.177751,0.946298,0.488414,0.328474,0.78158,0.220974,0.189732,0.357213,0.953652,0.95463,0.273857,0.0979423,0.526888,0.412653,0.565267,0.070788,0.310135,0.697377,0.664892,0.163962,0.613547,0.144318,0.239628,0.0836961,0.400045,0.866421,0.336595,0.411413,0.487085,0.0392307,0.738407,0.983597,0.42274,0.915402,0.715927,0.504717,0.536173,0.191591,0.229409,0.873767,0.473478,0.964254,0.561094,0.508807,0.98086,0.939935,0.641889,0.0885539,0.86361,0.264705,0.00401276,0.365669,0.152949,0.270614,0.622459,0.977454,0.161854,0.746918,0.601708,0.729305,0.57682,0.47803,0.0965995,0.537828,0.166386,0.293892,0.785679,0.593329,0.0581428,0.553393,0.0787163,0.320776,0.182692,0.252873,0.380607,0.642796,0.176831,0.26079,0.207184,0.213891,0.0485679,0.0180626,0.532136,0.387349,0.657059,0.412241,0.901611,0.106118,0.380032,0.907466,0.956606,0.991712,0.882151,0.712746,0.614245,0.703505,0.0723471,0.374112,0.876237,0.98614,0.607632,0.304997,0.106416,0.921878,0.117989,0.22159,0.182238,0.462725,0.500386,0.65573,0.599774,0.033505,0.486573,0.370791,0.778697,0.121767,0.201387,0.483572,0.16699,0.0439565,0.544345,0.172955,0.333102,0.673163,0.463778,0.948858,0.7385,0.342425,0.15384,0.286899,0.978114,0.811614,0.813915,0.62667,0.25925,0.18114,0.723448,0.0459867,0.677434,0.567686,0.408018,0.559156,0.884789,0.107908,0.87285,0.976719,0.570886,0.923771,0.358847,0.579622,0.147671,0.270551,0.325129,0.417901,0.898849,0.176612,0.9308,0.384181,0.417059,0.636929,0.266131,0.618632,0.781731,0.55376,0.48276,0.400044,0.143426,0.555183,0.350609,0.381493,0.425656,0.94063,0.188079,0.717992,0.203053,0.698316,0.563365,0.255584,0.335106,0.864024,0.924157,0.836346,0.115776,0.429927,0.769005,0.462077,0.658165,0.834533,0.559157,0.207484,0.877938,0.00135219,0.242957,0.795494,0.427111,0.258603,0.184107,0.0828326,0.275892,0.639515,0.986317,0.103972,0.533989,0.190313,0.584788,0.689889,0.738341,0.678721,0.562229,0.470315,0.280566,0.295771,0.672532,0.602464,0.960921,0.57909,0.948075,0.94816,0.0308028,0.95675,0.474261,0.166886,0.72708,0.0402022,0.605651,0.936109,0.130598,0.44671,0.89525,0.599538,0.202805,0.138595,0.417798,0.405059,0.396767,0.13637,0.376196,0.619792,0.609662,0.203648,0.963459,0.469581,0.836893,0.354873,0.987015,0.0936704,0.272548,0.00449246,0.155317,0.242104,0.664715,0.750296,0.346672,0.531016,0.145115,0.880288,0.792804,0.541247,0.214947,0.559183,0.222743,0.882601,0.444941,0.553402,0.303855,0.589159,0.850864,0.51015,0.459125,0.196382,0.421191,0.150893,0.621627,0.106342,0.0815168,0.246587,0.56324,0.774282,0.640497,0.636415,0.129621,0.479116,0.899594,0.36288,0.113566,0.75986,0.943961,0.384803,0.56338,0.214909,0.261584,0.478179,0.149674,0.560706,0.871999,0.228612,0.87284,0.626691,0.72628,0.00669837,0.406251,0.170988,0.449775,0.898751,0.0641909,0.900546,0.138666,0.0343968,0.422859,0.591474,0.0421515,0.938682,0.457103,0.403008,0.52054,0.285898,0.244502,0.0246585,0.719993,0.192577,0.112551,0.489597,0.382888,0.275581,0.652111,0.604725,0.583002,0.984976,0.0228659,0.532189,0.675228,0.20825,0.839546,0.114856,0.870666,0.739745,0.10511,0.949208,0.308864,0.930878,0.688964,0.236814,0.280431,0.775556,0.396164,0.967642,0.087567,0.693019,0.643028,0.0846781,0.0478587,0.450773,0.170206,0.576589,0.399498,0.359478,0.85448,0.243155,0.979132,0.541704,0.47765,0.149086,0.00876004,0.151593,0.480121,0.594398,0.858409,0.877481,0.13,0.5112,0.785971,0.68121,0.789741,0.100947,0.570121,0.378605,0.158514,0.131733,0.86686,0.727827,0.0476667,0.266097,0.0911382,0.35379,0.302393,0.637539,0.667323,0.489844,0.635208,0.916819,0.566923,0.569996,0.489169,0.488421,0.274507,0.528147,0.0865642,0.54111,0.00322121,0.476329,0.843732,0.768101,0.885987,0.972784,0.477498,0.258581,0.958086,0.228008,0.0592936,0.598357,0.771301,0.927849,0.475346,0.814447,0.910275,0.799275,0.493626,0.212127,0.843093,0.718154,0.588958,0.554859,0.541058,0.0754984,0.616331,0.76669,0.579176,0.87018,0.495729,0.693138,0.108658,0.803069,0.0156347,0.168628,0.335685,0.00209492,0.56153,0.218495,0.782308,0.919296,0.259207,0.601544,0.00572169,0.784607,0.560326,0.901394,0.0521109,0.986638,0.390472,0.440937,0.552045,0.0326899,0.409527,0.133888,0.272878,0.148275,0.224043,0.187371,0.0464851,0.31026,0.512928,0.672698,0.578923,0.677806,0.446263,0.955168,0.551791,0.68305,0.28689,0.697684,0.481574,0.26389,0.879061,0.741413,0.690037,0.218732,0.765958,0.529248,0.239844,0.581774,0.559329,0.795808,0.388694,0.00873518,0.413843,0.831422,0.464144,0.951056,0.548757,0.0774075,0.325969,0.294493,0.196008,0.0601571,0.365778,0.153382,0.843097,0.248657,0.529054,0.00833708,0.118149,0.735952,0.892424,0.742684,0.482918,0.447724,0.330021,0.362738,0.108484,0.011943,0.280329,0.384762,0.513384,0.807892,0.30499,0.0387076,0.0236644,0.685112,0.413308,0.677391,0.510868,0.711242,0.914108,0.236538,0.990324,0.986079,0.291668,0.740956,0.843783,0.419342,0.521276,0.0392793,0.720696,0.867185,0.569707,0.51134,0.393077,0.361945,0.139908,0.377472,0.816967,0.861824,0.717396,0.26818,0.896914,0.0580189,0.40497,0.0559996,0.213298,0.805977,0.206018,0.769038,0.764652,0.720905,0.581738,0.29316,0.675502,0.74661,0.2645,0.564146,0.722491,0.390881,0.166019,0.35816,0.567613,0.3206,0.300768,0.697647,0.415546,0.775514,0.54306,0.28059,0.931424,0.456873,0.711089,0.302799,0.704642,0.115733,0.490103,0.621213,0.579311,0.698107,0.194474,0.924204,0.920615,0.559942,0.586117,0.702232,0.00931221,0.749687,0.636006,0.355825,0.452123,0.0747061,0.234319,0.722616,0.0688265,0.837796,0.32857,0.815568,0.862652,0.339783,0.993574,0.616376,0.101231,0.64637,0.550688,0.813322,0.475917,0.67655,0.636936,0.452027,0.00641841,0.401655,0.503945,0.28615,0.852646,0.931308,0.222283,0.124759,0.927609,0.286041,0.742039,0.384272,0.434684,0.197772,0.895064,0.525552,0.690223,0.0603309,0.331469,0.829292,0.533461,0.528391,0.0594446,0.0348638,0.0657459,0.526984,0.844957,0.705347,0.17349,0.693268,0.755024,0.497147,0.822556,0.342348,0.504443,0.842016,0.138052,0.547676,0.655925,0.0787539,0.282233,0.481111,0.607893,0.754484,0.879928,0.137215,0.691189,0.755143,0.938122,0.56412,0.936902,0.483698,0.0992006,0.622016,0.240382,0.0653241,0.71572,0.188576,0.824989,0.28282,0.983286,0.358155,0.448382,0.761978,0.222313,0.00736976,0.560768,0.641675,0.861955,0.104434,0.73205,0.73114,0.316411,0.242505,0.656328,0.581575,0.866478,0.508672,0.950449,0.456093,0.616132,0.68037,0.0794702,0.556448,0.562307,0.71586,0.246243,0.206392,0.411245,0.24573,0.601987,0.46271,0.716461,0.757133,0.524825,0.710191,0.745852,0.891317,0.531646,0.20466,0.724277,0.399857,0.494924,0.154747,0.742614,0.706721,0.0984561,0.845972,0.0488546,0.354671,0.469534,0.356417,0.550667,0.657099,0.100953,0.798925,0.548216,0.905811,0.601912,0.572302,0.533332,0.171278,0.667447,0.642151,0.779533,0.367195,0.0132718,0.648259,0.600504,0.548524,0.463859,0.644268,0.0609438,0.985451,0.928828,0.817348,0.563839,0.301508,0.499066,0.916314,0.0214349,0.898206,0.231644,0.268236,0.312834,0.892414,0.449456,0.168931,0.0321734,0.11572,0.795619,0.0461433,0.420685,0.856545,0.0309256,0.938094,0.437372,0.168165,0.930311,0.716018,0.616426,0.101931,0.316824,0.187668,0.432701,0.883322,0.264438,0.389091,0.262441,0.506936,0.775298,0.983665,0.40687,0.583246,0.296692,0.633127,0.781773,0.406776,0.744025,0.992911,0.813564,0.27929,0.743522,0.585958,0.356747,0.509777,0.0512029,0.219262,0.505896,0.361456,0.135204,0.301371,0.541308,0.305904,0.198769,0.103125,0.579845,0.31459,0.99799,0.996322,0.00191718,0.419735,0.482067,0.6595,0.758234,0.915063,0.957468,0.311014,0.14116,0.973216,0.369071,0.341581,0.156698,0.818011,0.248339,0.837158,0.747897,0.728572,0.558376,0.82649,0.312762,0.408655,0.107642,0.510879,0.396369,0.699901,0.091553,0.0987313,0.0958312,0.424617,0.146334,0.406141,0.404567,0.999864,0.786567,0.539711,0.901285,0.429788,0.116478,0.37424,0.474579,0.844168,0.745658,0.316716,0.392862,0.696109,|0.494111,0.623824,0.733069,0.360231,0.0992796,0.566333,0.615249,0.460148,0.870607,0.888352,0.560105,0.721105,0.197706,0.532889,0.471904,0.702692,0.0278468,0.925839,0.622079,0.697418,0.851175,0.0889719,0.00229818,0.286886,0.751329,0.381516,0.252422,0.826093,0.655205,0.219125,0.505114,0.678896,0.351751,0.951526,0.443428,0.586607,0.0271292,0.970641,0.465823,0.100205,0.636156,0.370332,0.698346,0.662846,0.490731,0.69566,0.985149,0.23571,0.729288,0.920014,0.141976,0.386919,0.427074,0.0425355,0.263179,0.766052,0.437031,0.793121,0.0299624,0.206083,0.539879,0.952149,0.778826,0.416702,0.384212,0.629535,0.708854,0.838272,0.881461,0.873401,0.374801,0.953775,0.125931,0.700219,0.431852,0.234858,0.619131,0.877327,0.476897,0.902739,0.524098,0.204877,0.693886,0.306672,0.689907,0.303113,0.493567,0.842422,0.344167,0.76852,0.0662255,0.507929,0.242291,0.11711,0.00670236,0.426938,0.713388,0.577069,0.187817,0.301153,0.185717,0.505935,0.470772,0.855486,0.907788,0.0101407,0.294625,0.0856112,0.176343,0.8091,0.774423,0.358811,0.814867,0.111772,0.549943,0.827892,0.55593,0.567319,0.460389,0.304743,0.227698,0.246325,0.0280635,0.592084,0.367142,0.0906417,0.64907,0.71478,0.300541,0.815172,0.620325,0.992308,0.657135,0.148293,0.766309,0.122961,0.15298,0.013442,0.49342,0.319318,0.239305,0.464326,0.554248,0.00291067,0.0821574,0.0369932,0.908734,0.758175,0.290413,0.241486,0.42998,0.324381,0.00691605,0.921796,0.592113,0.199608,0.812083,0.317541,0.477513,0.647993,0.417883,0.908869,0.529255,0.973969,0.415717,0.735861,0.625043,0.77027,0.961512,0.716698,0.304626,0.3851,0.497887,0.12696,0.609621,0.840636,0.52574,0.983705,0.421048,0.465021,0.790703,0.629092,0.862862,0.217372,0.872006,0.305612,0.339253,0.947269,0.40342,0.351254,0.071813,0.463486,0.868745,0.758093,0.243313,0.695058,0.841487,0.353044,0.54365,0.822115,0.887578,0.681531,0.151218,0.30193,0.0281874,0.766783,0.489267,0.948812,0.612281,0.229072,0.289481,0.932572,0.582753,0.624876,0.662338,0.48606,0.708334,0.88149,0.566991,0.386919,0.610521,0.249116,0.823608,0.00125146,0.667608,0.219154,0.82914,0.37942,0.626131,0.185536,0.958981,0.111479,0.14507,0.712357,0.0461363,0.442991,0.506706,0.763408,0.368742,0.353923,0.277389,0.88328,0.0165502,0.768743,0.854132,0.51884,0.225812,0.967748,0.628974,0.985967,0.952293,0.856962,0.813959,0.932439,0.233579,0.333812,0.892134,0.431682,0.943162,0.728811,0.990521,0.410793,0.277341,0.984027,0.984606,0.0158212,0.459157,0.644243,0.612161,0.949165,0.987474,0.830798,0.166435,0.15381,0.824922,0.122985,0.340961,0.478969,0.0816859,0.898687,0.142335,0.127555,0.0737714,0.891687,0.164406,0.906028,0.930856,0.448741,0.101317,0.193833,0.0118852,0.435428,0.989764,0.69459,0.719244,0.110366,0.335368,0.736509,0.747155,0.168707,0.368479,0.310773,0.650324,0.700129,0.644671,0.418188,0.833131,0.916006,0.633976,0.739349,0.630967,0.891959,0.944554,0.8552,0.194559,0.804892,0.416996,0.495945,0.865783,0.795829,0.510314,0.886249,0.40202,0.637289,0.232233,0.291389,0.0626146,0.472749,0.741876,0.858292,0.296573,0.03101,0.459084,0.170385,0.452883,0.326411,0.664284,0.470888,0.0097031,0.839418,0.936097,0.161985,0.208714,0.715037,0.700867,0.46129,0.220013,0.595208,0.173339,0.944001,0.452679,0.897801,0.888822,0.334792,0.562824,0.855586,0.153042,0.657638,0.889458,0.933133,0.461905,0.131219,0.441301,0.918916,0.804365,0.840949,0.751018,0.41049,0.21958,0.92593,0.0448024,0.245412,0.600737,0.295602,0.440326,0.538391,0.131439,0.763427,0.540525,0.13027,0.299623,0.335112,0.658425,0.121536,0.255899,0.319511,0.317236,0.217911,0.0246665,0.939387,0.987961,0.735043,0.214515,0.546091,0.463597,0.351731,0.610767,0.831321,0.167481,0.34772,0.593561,0.100984,0.0442852,0.0676069,0.280535,0.920461,0.227752,0.0120012,0.818065,0.566577,0.101249,0.155061,0.24006,0.257813,0.609064,0.229943,0.594365,0.409241,0.665977,0.500997,0.625121,0.995804,0.82616,0.0684422,0.274505,0.727662,0.0080604,0.387976,0.589914,0.209193,0.878429,0.319201,0.671371,0.389865,0.370366,0.66699,0.710135,0.929886,0.539739,0.873876,0.0329993,0.559234,0.80968,0.635812,0.615727,0.106192,0.339008,0.0408679,0.571906,0.690962,0.353763,0.362745,0.658364,0.674801,0.626708,0.517476,0.550057,0.0680984,0.0837467,0.936494,0.556874,0.016093,0.378906,0.826308,0.569222,0.241088,0.733423,0.289839,0.697858,0.555632,0.389606,0.748032,0.450437,0.98489,0.761751,0.892299,0.835513,0.434541,0.363973,0.276052,0.132088,0.577451,0.30725,0.739761,0.325133,0.887179,0.536411,0.812475,0.921386,0.57603,0.576403,0.135033,0.612378,0.111417,0.906304,0.77215,0.0569628,0.282266,0.563582,0.305879,0.184548,0.831471,0.990942,0.435616,0.983967,0.275166,0.330934,0.564868,0.0377494,0.168528,0.720351,0.609139,0.819932,0.98616,0.744683,0.133265,0.982713,0.0281872,0.74207,0.302861,0.932643,0.645735,0.470478,0.384652,0.159582,0.991496,0.90432,0.753728,0.00400001,0.0900675,0.00502867,0.564039,0.55683,0.784356,0.835629,0.419798,0.670982,0.877854,0.880422,0.678647,0.706009,0.212527,0.552632,0.865911,0.691455,0.334472,0.833371,0.411466,0.0408488,0.0296806,0.637922,0.14368,0.503823,0.0560364,0.731075,0.42429,0.0848482,0.259139,0.98699,0.334697,0.200003,0.654722,0.280597,0.0690839,0.275847,0.0374255,0.0841922,0.0835168,0.33104,0.70668,0.534674,0.476004,0.510501,0.427423,0.0531896,0.579829,0.54931,0.721062,0.772774,0.893432,0.11746,0.566185,0.65357,0.389646,0.868212,0.130633,0.469264,0.438819,0.649565,0.804359,0.443186,0.827087,0.66614,0.0250731,0.682596,0.504606,0.917876,0.230916,0.909908,0.838739,0.99691,0.514665,0.748933,0.579498,0.656703,0.296355,0.469997,0.177033,0.927255,0.00429404,0.673467,0.609117,0.518871,0.0870824,0.0158575,0.288675,0.869048,0.622535,0.235632,0.86023,0.963428,0.91176,0.356409,0.442128,0.617351,0.741885,0.184065,0.094888,0.924664,0.627497,0.890104,0.0564561,0.961615,0.593133,0.657112,0.362859,0.996545,0.860754,0.968852,0.952561,0.628714,0.379581,0.904722,0.321804,0.87389,0.614021,0.597741,0.431699,0.504583,0.25852,0.924592,0.760429,0.263535,0.197864,0.0664421,0.539579,0.604445,0.0813556,0.00244498,0.237582,0.749016,0.732372,0.328085,0.225884,0.971065,0.508251,0.719424,0.456947,0.046635,0.477309,0.897275,0.502505,0.413373,0.78605,0.389147,0.773406,0.979104,0.380337,0.157321,0.25504,0.58253,0.556832,0.438967,0.69833,0.509212,0.538094,0.421463,0.924499,0.475509,0.873482,0.16801,0.512896,0.275297,0.877456,0.750481,0.490566,0.892253,0.892925,0.901526,0.977956,0.0229973,0.783495,0.0475014,0.174999,0.0862951,0.668205,0.991653,0.210807,0.100641,0.572175,0.404795,0.328199,0.71774,0.219911,0.417833,0.810596,0.0920411,0.764024,0.982442,0.211953,0.717013,0.508045,0.520192,0.675187,0.886807,0.38417,0.169132,0.766761,0.87119,0.333115,0.299811,0.728084,0.629087,0.996013,0.313759,0.17247,0.102377,0.332327,0.686588,0.611833,0.439682,0.896436,0.259014,0.464634,0.46162,0.0904804,0.257278,0.117424,0.0750736,0.328339,0.0197568,0.94619,0.598745,0.895619,0.0513951,0.877747,0.331127,0.15056,0.312112,0.162669,0.863309,0.199455,0.603685,0.806805,0.00760221,0.578155,0.189243,0.100899,0.177165,0.421128,0.0247077,0.403487,0.570994,0.976193,0.601602,0.503158,0.808095,0.272219,0.0683501,0.160012,0.922854,0.3729,0.430259,0.313259,0.159692,0.00353223,0.646045,0.109212,0.328285,0.114924,0.381655,0.359166,0.173831,0.107073,0.498653,0.794232,0.0638491,0.341423,0.327431,0.480125,0.546462,0.207547,0.919646,0.566426,0.750074,0.505182,0.906811,0.970687,0.275962,0.281069,0.240674,0.289747,0.662896,0.135056,0.456827,0.526382,0.740586,0.677322,0.837223,0.0106452,0.00925958,0.870208,0.0140361,0.108881,0.333008,0.77248,0.283971,0.535309,0.66419,0.574848,0.645083,0.772407,0.934114,0.530267,0.364051,0.372536,0.719437,0.480702,0.408672,0.448713,0.092327,0.304969,0.125731,0.275438,0.892368,0.579931,0.997197,0.353654,0.474535,0.364975,0.955099,0.390198,0.0329808,0.241935,0.396473,0.798506,0.244075,0.85669,0.794036,0.984223,0.172278,0.548921,0.702816,0.539321,0.517976,0.187135,0.847065,0.819969,0.215483,0.638182,0.639884,0.749227,0.937944,0.75813,0.92454,0.265656,0.584568,0.297326,0.379317,0.579666,0.93715,0.603616,0.0262516,0.888062,0.8822,0.480831,0.931956,0.388676,0.110482,0.447749,0.59814,0.560357,0.156077,0.238676,0.501778,0.931044,0.237432,0.98396,0.532012,0.972713,0.340945,0.625091,0.000119925,0.900869,0.83282,0.298976,0.530846,0.656976,0.037596,0.939417,0.691018,0.138357,0.826388,0.272331,0.78698,0.593365,0.0110741,0.656085,0.142745,0.82984,0.447606,0.280067,0.0356631,0.233767,0.300994,0.678594,0.19517,0.801223,0.281891,0.275883,0.798719,0.0708214,0.153885,0.0421881,0.125518,0.60085,0.0715333,0.701771,0.198882,0.867157,0.619945,0.64682,0.162089,0.903435,0.238908,0.0135447,0.676344,0.400553,0.211455,0.850505,0.7558,0.783985,0.881055,0.742276,0.817562,0.337275,0.893288,0.137459,0.946403,0.578049,0.448748,0.0617966,0.882058,0.069189,0.990945,0.916986,0.608254,0.502438,0.413076,0.363699,0.689827,0.788076,0.810163,0.430404,0.77845,0.0556945,0.689955,0.965266,0.200704,0.189901,0.166318,0.0547398,0.19888,0.979537,0.0317207,0.884593,0.846546,0.68023,0.166942,0.277808,0.528922,0.171935,0.680825,0.7177,0.577434,0.118922,0.586963,0.333156,0.158847,0.990636,|0.847533,0.623514,0.443985,0.92072,0.833468,0.152329,0.981731,0.159933,0.250224,0.403954,0.229859,0.289714,0.219517,0.0577949,0.577137,0.340928,0.820352,0.916498,0.524844,0.509992,0.270629,0.606539,0.826301,0.409508,0.837612,0.751697,0.549103,0.593156,0.242967,0.261097,0.401449,0.739922,0.349662,0.760412,0.614754,0.22414,0.238971,0.631596,0.712052,0.602201,0.584731,0.00241488,0.0930532,0.51925,0.979589,0.441096,0.625917,0.170966,0.176543,0.237902,0.293469,0.937258,0.878523,0.0341451,0.719279,0.42407,0.325662,0.727454,0.84497,0.916849,0.931239,0.00193632,0.242109,0.339453,0.963075,0.250947,0.452921,0.612828,0.826714,0.376986,0.864248,0.0608924,0.113229,0.280813,0.395376,0.80175,0.645601,0.00917614,0.418561,0.767259,0.936565,0.518446,0.0915176,0.891486,0.604743,0.413703,0.702864,0.578465,0.624851,0.597369,0.0132239,0.889349,0.240674,0.506919,0.772811,0.320643,0.0536504,0.506852,0.717473,0.788266,0.274231,0.470625,0.703473,0.704626,0.918393,0.163743,0.594627,0.151108,0.698402,0.0611496,0.371726,0.514739,0.902138,0.316219,0.515943,0.811664,0.0747308,0.302437,0.651749,0.206582,0.396632,0.150786,0.839437,0.205728,0.273479,0.173075,0.122625,0.549868,0.0658746,0.889017,0.89474,0.141836,0.401701,0.169547,0.0552744,0.590801,0.24292,0.139383,0.787227,0.598093,0.685856,0.136093,0.938107,0.326811,0.415477,0.370933,0.678878,0.834926,0.188822,0.373249,0.582754,0.282751,0.222025,0.37919,0.960423,0.327004,0.0878314,0.954053,0.498015,0.0830495,0.932594,0.173892,0.273569,0.031582,0.890042,0.780034,0.703528,0.774197,0.84689,0.857753,0.923386,0.234485,0.900537,0.902787,0.64804,0.807649,0.569922,0.316195,0.850844,0.456679,0.973902,0.272504,0.968842,0.367103,0.651554,0.971925,0.254008,0.0838885,0.666514,0.673345,0.085628,0.998953,0.114369,0.1592,0.0861425,0.172042,0.708806,0.500455,0.756206,0.103167,0.639276,0.630497,0.524649,0.0666124,0.248068,0.937943,0.429467,0.144788,0.632957,0.929195,0.910521,0.97058,0.04298,0.326572,0.950277,0.248924,0.400571,0.123658,0.393546,0.748632,0.257698,0.0592468,0.890988,0.205573,0.812791,0.136996,0.885,0.622948,0.919083,0.212939,0.146126,0.204148,0.195938,0.438286,0.352928,0.821487,0.32772,0.280099,0.0202396,0.746206,0.418253,0.525349,0.122336,0.294151,0.14429,0.247545,0.197367,0.274641,0.176923,0.0750201,0.645643,0.177045,0.40426,0.220796,0.660033,0.550632,0.832573,0.226062,0.431778,0.975992,0.504029,0.177079,0.955116,0.229795,0.177795,0.777045,0.80339,0.967452,0.408542,0.239115,0.502616,0.972129,0.771646,0.648242,0.129061,0.637813,0.239639,0.111547,0.112693,0.464254,0.0746458,0.0791017,0.938303,0.16474,0.751402,0.0271233,0.915788,0.940992,0.759883,0.0370371,0.508272,0.71835,0.963037,0.287276,0.00605547,0.794315,0.658305,0.742606,0.419751,0.113685,0.753199,0.919203,0.460012,0.448545,0.155024,0.843743,0.4129,0.752884,0.650827,0.355367,0.840967,0.431531,0.99563,0.0696961,0.918874,0.862435,0.0378913,0.0798585,0.460515,0.566937,0.0197811,0.252204,0.119227,0.421957,0.949675,0.837254,0.881416,0.451965,0.345271,0.703777,0.364124,0.993766,0.66504,0.139149,0.680307,0.495858,0.37694,0.705272,0.629109,0.34214,0.581313,0.371893,0.130991,0.237324,0.486181,0.447042,0.468366,0.437817,0.421006,0.181949,0.669565,0.87088,0.033381,0.577312,0.624841,0.110789,0.199632,0.673292,0.870252,0.0329847,0.569832,0.804766,0.150042,0.540644,0.266004,0.89595,0.109438,0.41183,0.193255,0.729513,0.704443,0.330959,0.521979,0.707542,0.372932,0.399954,0.0615361,0.101872,0.81581,0.27815,0.0348965,0.472826,0.689003,0.191493,0.243602,0.629742,0.799163,0.812063,0.592238,0.699405,0.567878,0.470673,0.0916615,0.334516,0.417921,0.657258,0.351836,0.455906,0.236057,0.196189,0.650295,0.30117,0.541421,0.349209,0.814342,0.17297,0.265282,0.107099,0.379671,0.868688,0.161227,0.0179167,0.159559,0.25785,0.844079,0.274169,0.652542,0.629836,0.351003,0.384086,0.473835,0.910165,0.760206,0.528086,0.768041,0.828247,0.434656,0.0698025,0.576215,0.777941,0.905327,0.219108,0.3775,0.728587,0.0158275,0.673237,0.300758,0.708139,0.640676,0.978537,0.365847,0.413328,0.279827,0.130718,0.823079,0.263955,0.487078,0.641469,0.0977873,0.425633,0.630648,0.046297,0.578807,0.648508,0.903349,0.299616,0.580687,0.310017,0.241188,0.905052,0.740564,0.7819,0.0906888,0.207746,0.295979,0.506466,0.0950099,0.356626,0.66394,0.0888898,0.321756,0.883108,0.64963,0.235615,0.652609,0.932555,0.512822,0.0587754,0.576833,0.617173,0.133558,0.627578,0.199028,0.103236,0.4382,0.126183,0.68218,0.273181,0.823422,0.884115,0.960577,0.532919,0.0884512,0.114788,0.223582,0.0399068,0.0189516,0.388936,0.460501,0.955747,0.0961313,0.867338,0.575467,0.614951,0.505763,0.0230705,0.659747,0.451449,0.543684,0.234818,0.0486461,0.336745,0.602498,0.791988,0.153048,0.394238,0.801581,0.00704396,0.792255,0.403963,0.754118,0.106483,0.795301,0.919948,0.286421,0.871962,0.0653268,0.488665,0.139285,0.366955,0.862036,0.608738,0.573298,0.890144,0.081194,0.496305,0.288862,0.534912,0.267598,0.566026,0.73367,0.247853,0.0197347,0.536468,0.831788,0.174076,0.568639,0.736943,0.123481,0.892838,0.244809,0.921871,0.545991,0.302319,0.97633,0.898774,0.900269,0.288668,0.798863,0.676453,0.106389,0.640356,0.607255,0.853379,0.382385,0.98507,0.999762,0.620014,0.810312,0.774087,0.387788,0.171125,0.188332,0.912291,0.606008,0.676133,0.997144,0.513868,0.80529,0.668584,0.112418,0.602988,0.472891,0.22131,0.36696,0.946414,0.974045,0.98392,0.904617,0.396914,0.415135,0.069469,0.940524,0.904153,0.776463,0.17323,0.0193809,0.616141,0.646994,0.713929,0.615284,0.365152,0.153063,0.395925,0.266129,0.206839,0.389297,0.585196,0.10493,0.190803,0.68152,0.666209,0.415907,0.0465021,0.589738,0.220775,0.456876,0.114855,0.896899,0.287993,0.859627,0.953527,0.665733,0.476605,0.862713,0.443972,0.902386,0.878729,0.364229,0.350827,0.728768,0.511285,0.70485,0.875527,0.403572,0.153578,0.625374,0.130951,0.103813,0.767397,0.273159,0.252607,0.800081,0.763149,0.625635,0.237056,0.375934,0.316273,0.376131,0.994961,0.510416,0.763349,0.59952,0.360524,0.596743,0.701912,0.636388,0.869419,0.446948,0.307337,0.248687,0.733556,0.225856,0.213415,0.279039,0.756355,0.822998,0.826328,0.216205,0.735189,0.774508,0.940602,0.0409489,0.760536,0.402538,0.0960361,0.44276,0.982588,0.0544469,0.455323,0.977794,0.127385,0.537567,0.551936,0.694958,0.24373,0.458924,0.841839,0.738343,0.411754,0.749581,0.0961307,0.563918,0.157749,0.0705506,0.663883,0.488852,0.993697,0.520961,0.192803,0.45956,0.709054,0.937753,0.856107,0.876618,0.497706,0.00607908,0.0703714,0.113442,0.856848,0.133951,0.840535,0.556229,0.139343,0.00452679,0.839854,0.191659,0.154622,0.123146,0.897225,0.718976,0.55116,0.997984,0.253044,0.817945,0.781076,0.448024,0.26267,0.833218,0.026539,0.859198,0.0107846,0.257851,0.907955,0.458583,0.0602392,0.239706,0.588509,0.384998,0.951831,0.865865,0.869115,0.0711895,0.510298,0.523622,0.744925,0.999142,0.160178,0.488589,0.169502,0.615961,0.373129,0.482884,0.036972,0.449429,0.97196,0.214251,0.800449,0.494853,0.964822,0.531965,0.685955,0.559164,0.395649,0.396526,0.933774,0.0166477,0.406376,0.0530811,0.835891,0.983301,0.937314,0.782663,0.711138,0.815711,0.877227,0.0484596,0.861669,0.347058,0.986937,0.0888405,0.207458,0.0151907,0.835677,0.488938,0.614515,0.575831,0.976833,0.333066,0.976664,0.190146,0.464436,0.0631649,0.473764,0.441682,0.645825,0.313187,0.165939,0.178923,0.555603,0.383386,0.979632,0.687208,0.657439,0.742546,0.488467,0.268946,0.924514,0.274764,0.579983,0.431531,0.948059,0.527498,0.602153,0.674913,0.344934,0.717042,0.462594,0.981704,0.340733,0.470558,0.917582,0.84445,0.937638,0.158554,0.562565,0.302087,0.608908,0.387292,0.946578,0.269352,0.813874,0.394372,0.523104,0.928631,0.875211,0.286455,0.908475,0.59777,0.242417,0.950903,0.222205,0.387905,0.572347,0.756042,0.263819,0.793636,0.98236,0.507133,0.592091,0.929102,0.551741,0.29228,0.929333,0.497363,0.770446,0.106365,0.740078,0.350266,0.362283,0.12448,0.919394,0.196733,0.326841,0.0558134,0.721825,0.484922,0.295794,0.650013,0.462125,0.315308,0.69707,0.627791,0.825072,0.961751,0.489163,0.375208,0.0818061,0.567227,0.115932,0.780308,0.966921,0.278565,0.827219,0.289528,0.0635158,0.155338,0.302365,0.584951,0.482958,0.192729,0.768851,0.449879,0.0724137,0.00105476,0.928851,0.337891,0.0384325,0.534044,0.104952,0.0557719,0.17566,0.420476,0.862166,0.707705,0.928165,0.115005,0.0807639,0.159522,0.866225,0.257715,0.503192,0.121121,0.263351,0.752468,0.814961,0.726566,0.357135,0.900272,0.501041,0.811977,0.764271,0.62321,0.564197,0.480503,0.678125,0.312229,0.576427,0.988137,0.439966,0.631142,0.0370781,0.0311446,0.679378,0.0112336,0.595233,0.181899,0.11578,0.180593,0.500339,0.357097,0.665182,0.299211,0.0552768,0.153067,0.541072,0.656728,0.445419,0.567929,0.201905,0.831963,0.923839,0.880097,0.494034,0.537771,0.0440003,0.888782,0.817927,0.872919,0.992974,0.959684,0.467954,0.807084,0.623876,0.850691,0.654727,0.821475,0.417396,0.399754,0.184805,0.932649,0.954251,0.64776,0.975966,0.931555,0.0495616,0.0230961,0.952006,0.329306,0.104654,0.958912,0.0724585,0.127856,0.988779,0.0837737,0.150956,0.0168042,0.279591,0.0118724,0.406424,0.825469,0.0508469,0.474522,0.555285,0.754243,0.46353,0.669653,0.159947,0.646155,0.728958,|0.821335,0.954943,0.626555,0.123055,0.113505,0.720149,0.765058,0.167703,0.363909,0.993366,0.794327,0.0876588,0.640769,0.773899,0.377876,0.818319,0.594773,0.356497,0.741782,0.761696,0.713875,0.410162,0.943821,0.744771,0.535656,0.697185,0.260745,0.574589,0.0515356,0.833095,0.637592,0.168125,0.757769,0.566541,0.532777,0.0225376,0.0435758,0.963634,0.245912,0.131741,0.105485,0.745445,0.512004,0.538196,0.625246,0.587465,0.575345,0.547682,0.600322,0.180359,0.934823,0.379224,0.310526,0.93122,0.542282,0.794843,0.398421,0.606181,0.651848,0.809378,0.0579641,0.0374904,0.354478,0.052612,0.553531,0.800787,0.874169,0.535315,0.106977,0.780768,0.223824,0.740452,0.582822,0.19301,0.853895,0.274785,0.659867,0.00276333,0.280884,0.636491,0.0513737,0.879744,0.4763,0.0859438,0.981145,0.74795,0.00341451,0.637073,0.960609,0.178705,0.155102,0.0484489,0.557468,0.942998,0.750204,0.449034,0.962709,0.826134,0.763958,0.165865,0.617888,0.483211,0.934577,0.848591,0.598597,0.192657,0.587532,0.260268,0.947135,0.247652,0.883649,0.250346,0.403625,0.580702,0.63233,0.822058,0.302657,0.250785,0.581411,0.783329,0.515709,0.587959,0.0863486,0.859779,0.538147,0.195705,0.965976,0.637295,0.560233,0.730081,0.529679,0.43129,0.974206,0.292236,0.0102944,0.1288,0.0705803,0.319859,0.304222,0.207387,0.276762,0.707013,0.320931,0.928962,0.990354,0.941211,0.664622,0.570071,0.830201,0.252792,0.620163,0.499514,0.340238,0.470914,0.628575,0.259675,0.370184,0.979547,0.981321,0.792428,0.543151,0.67423,0.43865,0.321872,0.763125,0.901574,0.705299,0.689012,0.79285,0.353012,0.975617,0.246704,0.669362,0.0110162,0.213068,0.122343,0.14459,0.666595,0.97539,0.112527,0.0410981,0.819257,0.962699,0.221538,0.0698251,0.540597,0.126181,0.843911,0.258776,0.1643,0.851412,0.511341,0.383825,0.587078,0.385328,0.945997,0.363713,0.32442,0.340934,0.515991,0.71006,0.0500291,0.431286,0.275835,0.917536,0.265003,0.580192,0.349895,0.495465,0.353117,0.549547,0.445723,0.646429,0.555288,0.605582,0.61246,0.891094,0.274097,0.301438,0.117159,0.488311,0.175412,0.477174,0.76205,0.913855,0.518005,0.962146,0.757414,0.544228,0.582167,0.18728,0.837874,0.0155617,0.164693,0.0305434,0.224027,0.549208,0.413726,0.726698,0.561678,0.0870512,0.201617,0.617422,0.178589,0.558099,0.195755,0.399178,0.971878,0.994682,0.961014,0.700347,0.274398,0.300921,0.0757024,0.373663,0.884514,0.859627,0.414514,0.178251,0.590073,0.486196,0.875348,0.596688,0.255885,0.627708,0.527212,0.00869018,0.0625696,0.258267,0.418057,0.787208,0.918734,0.104418,0.729849,0.466691,0.378311,0.154934,0.511581,0.513492,0.490761,0.68202,0.892449,0.100903,0.11906,0.308127,0.651525,0.194758,0.0791566,0.498636,0.450161,0.597274,0.224761,0.702975,0.151149,0.616932,0.128959,0.718438,0.493503,0.20242,0.00953907,0.316899,0.508753,0.872543,0.125234,0.890521,0.384217,0.0513907,0.349983,0.87136,0.0306404,0.714118,0.368453,0.364318,0.191067,0.955415,0.19241,0.771105,0.349065,0.881849,0.823157,0.49743,0.151886,0.686431,0.950089,0.0543113,0.514848,0.0745906,0.764116,0.327446,0.728198,0.575325,0.0399995,0.0307903,0.908873,0.311272,0.670772,0.0730672,0.373415,0.279709,0.0326393,0.979054,0.146207,0.563891,0.627616,0.305583,0.329667,0.162019,0.115942,0.825685,0.49152,0.0588877,0.95663,0.881782,0.438697,0.147249,0.684211,0.422138,0.0318662,0.0978988,0.7043,0.39556,0.648252,0.468625,0.337557,0.394687,0.15511,0.428163,0.55548,0.63888,0.208399,0.193793,0.805478,0.0590702,0.112293,0.979802,0.56118,0.282772,0.304738,0.467006,0.517851,0.477449,0.107708,0.63285,0.563927,0.999115,0.290656,0.59315,0.579202,0.421242,0.155072,0.390593,0.780231,0.437144,0.374303,0.372563,0.757681,0.896845,0.270187,0.727982,0.0521046,0.319378,0.144926,0.291211,0.301432,0.71242,0.906272,0.255069,0.085053,0.839403,0.742568,0.478748,0.215726,0.616682,0.460155,0.843117,0.861564,0.772952,0.435158,0.0736782,0.833022,0.395562,0.430062,0.340146,0.852139,0.162528,0.456036,0.925167,0.813312,0.715521,0.517686,0.635452,0.392107,0.973946,0.346282,0.565843,0.940303,0.713265,0.152262,0.32817,0.836601,0.876989,0.718298,0.797216,0.754173,0.362966,0.248112,0.242057,0.629849,0.524516,0.574084,0.228725,0.524516,0.988793,0.849893,0.166375,0.707402,0.672023,0.0625158,0.992096,0.183459,0.464222,0.904548,0.890557,0.421923,0.288361,0.178445,0.419632,0.4631,0.997528,0.0296953,0.246045,0.492186,0.985495,0.523156,0.475701,0.399946,0.605132,0.583374,0.49998,0.0953627,0.396261,0.281462,0.444017,0.919793,0.0607995,0.991961,0.298502,0.128274,0.343584,0.825666,0.19625,0.181891,0.672606,0.548161,0.163964,0.238281,0.301658,0.123635,0.489031,0.672651,0.0905739,0.873593,0.00525105,0.871125,0.843876,0.187341,0.741812,0.746688,0.0428966,0.199617,0.346261,0.728385,0.146541,0.0406142,0.504613,0.867468,0.0725573,0.965234,0.158785,0.0479075,0.690578,0.700729,0.030502,0.327151,0.78998,0.160889,0.636433,0.0683905,0.0353271,0.240123,0.395702,0.512035,0.675849,0.282322,0.794662,0.798909,0.0618044,0.0829872,0.287713,0.963877,0.537818,0.00522608,0.487334,0.160393,0.426346,0.281698,0.632378,0.971788,0.786628,0.454715,0.227092,0.573925,0.97539,0.0188758,0.936086,0.800906,0.625227,0.155221,0.742366,0.449166,0.931597,0.192136,0.799564,0.276058,0.824326,0.656014,0.477665,0.0616811,0.583761,0.54284,0.381704,0.444752,0.676167,0.133761,0.379617,0.0389714,0.520904,0.0621477,0.51452,0.69329,0.835807,0.591885,0.475196,0.64539,0.666399,0.956708,0.917819,0.810808,0.215341,0.332284,0.425404,0.729627,0.00542819,0.253349,0.713911,0.879045,0.462745,0.570494,0.20125,0.889764,0.782847,0.570653,0.152977,0.772277,0.976229,0.695736,0.0573947,0.508683,0.0319209,0.867676,0.29887,0.519088,0.439963,0.0706361,0.930502,0.872924,0.450078,0.126849,0.165817,0.855674,0.737986,0.698292,0.157909,0.506027,0.240814,0.910899,0.0916854,0.493791,0.536336,0.134222,0.337075,0.864537,0.945799,0.278498,0.911373,0.234573,0.755728,0.234129,0.0345941,0.952487,0.0951791,0.822514,0.0511009,0.602801,0.145013,0.820866,0.059284,0.159552,0.371014,0.709009,0.757703,0.424022,0.889052,0.669166,0.384744,0.674085,0.956357,0.273492,0.14651,0.206125,0.652945,0.785128,0.937244,0.837181,0.371017,0.694824,0.710105,0.520247,0.239059,0.402108,0.228739,0.753532,0.0371956,0.409278,0.278955,0.628336,0.0733323,0.410255,0.565418,0.565516,0.402396,0.5244,0.751647,0.443477,0.465729,0.305519,0.577403,0.0493007,0.289506,0.122729,0.361228,0.678417,0.132864,0.355528,0.0168369,0.781178,0.793896,0.181889,0.413618,0.772229,0.0793177,0.325726,0.817751,0.165422,0.815239,0.582434,0.477295,0.326676,0.332013,0.229227,0.539856,0.00632113,0.203323,0.147854,0.273157,0.106156,0.154521,0.0496748,0.582697,0.712457,0.374223,0.104606,0.4754,0.370968,0.0717887,0.0957331,0.306709,0.0558274,0.682835,0.195222,0.394515,0.782058,0.655693,0.639567,0.608564,0.132825,0.592981,0.128168,0.761132,0.387239,0.471409,0.146464,0.94754,0.0967034,0.373148,0.580596,0.683501,0.87988,0.488417,0.105224,0.383422,0.0154076,0.111329,0.791695,0.585016,0.606049,0.124893,0.493832,0.528142,0.639616,0.664915,0.892861,0.872134,0.582822,0.541263,0.196046,0.209648,0.202715,0.843353,0.259577,0.504824,0.0817747,0.302753,0.0188984,0.441557,0.805486,0.887959,0.776516,0.495202,0.0382375,0.444258,0.177765,0.212624,0.357602,0.88621,0.94826,0.556485,0.770472,0.707232,0.23001,0.515037,0.496438,0.826063,0.927688,0.124235,0.206059,0.994261,0.882071,0.512166,0.0065099,0.45649,0.964127,0.309483,0.279904,0.462757,0.0612535,0.231691,0.0511241,0.54778,0.759912,0.0597775,0.120691,0.767909,0.428976,0.933974,0.403191,0.347747,0.562595,0.0822127,0.306277,0.0728797,0.938605,0.149233,0.0658805,0.857194,0.589659,0.861441,0.634278,0.555784,0.856647,0.619818,0.341445,0.96642,0.759244,0.463634,0.50977,0.652954,0.981891,0.902627,0.358679,0.570687,0.281308,0.328861,0.956928,0.631018,0.232658,0.670705,0.439976,0.151941,0.209548,0.349967,0.0611104,0.771129,0.367165,0.192955,0.806954,0.955649,0.882374,0.320409,0.983751,0.428327,0.40896,0.548053,0.889478,0.0727464,0.186304,0.336336,0.53799,0.622644,0.668427,0.104731,0.467299,0.610354,0.584938,0.794148,0.562106,0.0718715,0.834296,0.346531,0.0717582,0.323359,0.487673,0.403044,0.721907,0.378147,0.260608,0.0696777,0.161595,0.632011,0.375419,0.601078,0.266024,0.41538,0.286138,0.0402209,0.592856,0.194361,0.931751,0.90137,0.801053,0.855913,0.902528,0.27349,0.637711,0.545171,0.64491,0.618954,0.570377,0.575146,0.0836068,0.505494,0.340126,0.725034,0.640019,0.257114,0.725887,0.61613,0.755662,0.806279,0.943052,0.0201228,0.272308,0.218432,0.550075,0.135528,0.234432,0.849911,0.63732,0.413452,0.234999,0.175303,0.35366,0.0297279,0.713825,0.776811,0.161222,0.253893,0.83549,0.362607,0.396736,0.210244,0.679946,0.0126616,0.789147,0.699859,0.481459,0.203793,0.190507,0.952454,0.611149,0.589166,0.435278,0.851533,0.103407,0.849075,0.73993,0.763847,0.391634,0.590167,0.603173,0.235868,0.921776,0.840306,0.849575,0.191509,0.165046,0.312105,0.641067,0.628796,0.741559,0.645835,0.30227,0.853586,0.0759947,0.681972,0.776329,0.852561,0.575562,0.347806,0.479334,0.855478,0.0494046,0.0540191,0.16705,0.211877,0.750121,0.425187,0.957923,0.590387,0.889292,0.676782,0.411099,0.35082,0.976222,0.637635,0.485641,0.83019,0.303006,0.851339,0.0122287,|0.781993,0.595656,0.186814,0.659115,0.113634,0.907776,0.585238,0.90164,0.364928,0.699092,0.00661045,0.92189,0.973131,0.497185,0.104497,0.93405,0.283784,0.044731,0.778242,0.237989,0.821681,0.622452,0.32275,0.0162379,0.838332,0.574373,0.374414,0.532872,0.71139,0.125179,0.503712,0.100355,0.440476,0.313351,0.843678,0.602535,0.142254,0.386387,0.220453,0.755776,0.811746,0.0889521,0.370807,0.332058,0.923804,0.576188,0.303399,0.0865318,0.838111,0.675865,0.500403,0.161534,0.728718,0.189821,0.869862,0.14268,0.139069,0.426037,0.215439,0.377907,0.283205,0.955695,0.0797535,0.556511,0.512008,0.135092,0.473603,0.846729,0.182996,0.728316,0.172632,0.701343,0.866615,0.763192,0.606021,0.437738,0.817037,0.0726628,0.818043,0.890192,0.625229,0.188771,0.52107,0.856207,0.793389,0.361498,0.73219,0.931536,0.880406,0.264804,0.725557,0.44443,0.180797,0.56949,0.776216,0.843848,0.820757,0.749898,0.972561,0.764032,0.402517,0.964369,0.0767077,0.0315595,0.186224,0.746852,0.00215197,0.843453,0.185161,0.34772,0.179676,0.204334,0.786442,0.660032,0.292042,0.547319,0.55692,0.159922,0.20545,0.79341,0.975011,0.465375,0.512412,0.476444,0.780146,0.505384,0.0791674,0.374549,0.471514,0.476655,0.827308,0.016611,0.932169,0.554116,0.687995,0.85397,0.782167,0.592226,0.376793,0.546341,0.661069,0.160937,0.100501,0.0316365,0.0873016,0.7627,0.513376,0.446871,0.910856,0.218161,0.726679,0.819856,0.0326663,0.570119,0.356121,0.0492698,0.982599,0.805767,0.259049,0.456881,0.409863,0.213028,0.189071,0.411742,0.97646,0.196102,0.907445,0.458375,0.318267,0.376834,0.280432,0.65195,0.676947,0.471178,0.251392,0.0443004,0.919233,0.200286,0.201516,0.801041,0.580758,0.891048,0.625455,0.136765,0.66608,0.273666,0.647971,0.331105,0.853269,0.177503,0.152148,0.163125,0.721752,0.084422,0.0183292,0.604428,0.636559,0.553157,0.644953,0.22785,0.360757,0.549308,0.103769,0.343545,0.998515,0.0844701,0.748985,0.34732,0.422725,0.750798,0.339121,0.393174,0.775354,0.696187,0.882767,0.903816,0.19969,0.684755,0.37107,0.200507,0.853734,0.112223,0.682156,0.224176,0.998212,0.933689,0.5945,0.665845,0.854892,0.568136,0.118949,0.00905222,0.623991,0.821621,0.0987551,0.293346,0.596737,0.113237,0.459177,0.603599,0.0469058,0.486869,0.575159,0.890915,0.286567,0.655273,0.507388,0.88163,0.862048,0.92015,0.160728,0.961858,0.615803,0.359796,0.926025,0.398354,0.967087,0.697068,0.251002,0.915605,0.931704,0.672908,0.741854,0.0932376,0.101402,0.419143,0.150389,0.629926,0.0480543,0.636464,0.644742,0.239053,0.744204,0.851326,0.901781,0.0446171,0.322378,0.121285,0.206445,0.031304,0.925803,0.423162,0.629915,0.972305,0.234755,0.00750166,0.143338,0.590673,0.269662,0.586293,0.572366,0.0213491,0.982188,0.573138,0.566503,0.230343,0.805824,0.183876,0.602798,0.394144,0.182147,0.478216,0.663024,0.510054,0.834224,0.746065,0.709008,0.766707,0.696804,0.688665,0.366293,0.283619,0.949184,0.0648439,0.599119,0.852262,0.710181,0.641029,0.133385,0.450205,0.891694,0.238239,0.171073,0.729139,0.917282,0.0833185,0.640748,0.8012,0.229006,0.000890672,0.548639,0.324814,0.857797,0.458916,0.417717,0.242874,0.124082,0.811391,0.567734,0.397179,0.636987,0.990978,0.89485,0.580678,0.873761,0.387542,0.566289,0.184378,0.406423,0.284674,0.276872,0.884776,0.914277,0.466888,0.53177,0.440851,0.887646,0.367447,0.685114,0.512323,0.515511,0.454419,0.353276,0.0182021,0.624068,0.529881,0.358015,0.506923,0.0170557,0.157345,0.349914,0.862426,0.936653,0.991133,0.973314,0.805193,0.00434852,0.182116,0.00689214,0.01135,0.393763,0.335053,0.737688,0.23024,0.792435,0.137386,0.948863,0.872261,0.659001,0.495595,0.119798,0.0935982,0.299212,0.841932,0.975445,0.783264,0.915979,0.280866,0.482855,0.838249,0.244659,0.394247,0.596449,0.405175,0.831655,0.471458,0.134499,0.334819,0.823866,0.374216,0.120229,0.0789682,0.339864,0.720809,0.736153,0.913787,0.586952,0.463021,0.0741169,0.890339,0.878754,0.650155,0.874679,0.79574,0.745907,0.683654,0.18277,0.905306,0.494628,0.800555,0.454579,0.625435,0.433468,0.237994,0.347098,0.733226,0.783824,0.995104,0.403881,0.346809,0.544403,0.786785,0.429039,0.364203,0.55965,0.474189,0.103862,0.762746,0.813398,0.0979102,0.735639,0.187876,0.224148,0.263889,0.519124,0.284642,0.704692,0.112507,0.978804,0.535862,0.357172,0.67639,0.799666,0.227096,0.787274,0.765991,0.541102,0.378764,0.58396,0.965526,0.770269,0.301614,0.598651,0.0431609,0.942525,0.512959,0.877053,0.0482543,0.295142,0.0683414,0.970556,0.430128,0.0265523,0.550987,0.453044,0.0982971,0.683296,0.762853,0.738129,0.974879,0.996515,0.804056,0.676998,0.908142,0.258705,0.516163,0.515129,0.457209,0.484091,0.992468,0.866666,0.63273,0.227465,0.248236,0.288147,0.208813,0.969599,0.203737,0.642008,0.601247,0.526846,0.216093,0.791031,0.0257823,0.887501,0.943609,0.908984,0.465897,0.581506,0.13215,0.88979,0.813516,0.0392734,0.110867,0.622973,0.366786,0.401833,0.508661,0.44072,0.850046,0.474881,0.668049,0.328617,0.105616,0.766899,0.00702876,0.0617099,0.0040834,0.0230843,0.917121,0.337558,0.890753,0.753438,0.71921,0.117131,0.435372,0.519697,0.964983,0.0511206,0.605929,0.395102,0.0272959,0.780437,0.481219,0.520231,0.132231,0.00425994,0.624132,0.986022,0.192114,0.84956,0.174497,0.781448,0.711197,0.0111223,0.48972,0.901107,0.710451,0.181913,0.301041,0.776165,0.183963,0.226658,0.426969,0.106332,0.951226,0.80665,0.0765455,0.241747,0.820792,0.739101,0.560133,0.932841,0.652032,0.821499,0.700225,0.0168774,0.368517,0.742639,0.134907,0.247438,0.3534,0.250692,0.149113,0.864847,0.128997,0.942645,0.929508,0.080677,0.371766,0.530309,0.109858,0.0454022,0.494438,0.363778,0.922738,0.250669,0.904097,0.748067,0.742152,0.251447,0.22323,0.401131,0.256053,0.174068,0.789867,0.895774,0.15234,0.80726,0.787863,0.14373,0.317025,0.215171,0.0511857,0.453138,0.576587,0.371306,0.259025,0.831059,0.842306,0.654302,0.38667,0.013741,0.080205,0.678832,0.459462,0.471467,0.311318,0.813224,0.788589,0.530072,0.4334,0.641951,0.496662,0.12567,0.667578,0.038193,0.494309,0.818923,0.66567,0.985298,0.384481,0.334679,0.995642,0.428326,0.846041,0.206405,0.653056,0.445911,0.317654,0.202963,0.0912951,0.71229,0.930093,0.752518,0.0328092,0.757568,0.0118419,0.187596,0.33452,0.161341,0.148696,0.709834,0.555343,0.324963,0.449501,0.5157,0.943248,0.838787,0.00717038,0.837473,0.298414,0.189421,0.812489,0.398215,0.259061,0.71191,0.21979,0.252175,0.651074,0.472416,0.71188,0.580394,0.341577,0.408484,0.0777857,0.787412,0.638588,0.743394,0.98463,0.636901,0.450169,0.327163,0.871318,0.140402,0.577616,0.863417,0.42875,0.158627,0.508071,0.835961,0.674506,0.423141,0.101399,0.539176,0.499148,0.510334,0.392577,0.880464,0.45147,0.226115,0.406825,0.00155431,0.855513,0.877325,0.0869539,0.22722,0.289911,0.385399,0.742112,0.969804,0.543023,0.817,0.464035,0.511342,0.858898,0.622639,0.907171,0.430085,0.665065,0.0909971,0.674485,0.911417,0.742844,0.911223,0.773947,0.178651,0.808905,0.429686,0.207939,0.533377,0.225553,0.0263676,0.662479,0.864987,0.19778,0.929779,0.137289,0.581364,0.476824,0.849741,0.752928,0.203817,0.797197,0.251521,0.536025,0.243063,0.917947,0.753413,0.120012,0.36834,0.749364,0.869486,0.578433,0.719994,0.69797,0.240305,0.940923,0.745696,0.452182,0.80864,0.0174859,0.749125,0.894328,0.337964,0.79975,0.0250512,0.370385,0.3681,0.3421,0.0333714,0.773556,0.423294,0.821585,0.773184,0.156276,0.407677,0.20568,0.701754,0.231205,0.662549,0.416392,0.162073,0.303485,0.876289,0.787537,0.292336,0.0114784,0.95344,0.944666,0.252375,0.122165,0.816121,0.0784054,0.56668,0.889216,0.811152,0.55012,0.191269,0.875494,0.817741,0.186386,0.316144,0.385544,0.385859,0.189686,0.581381,0.629345,0.653063,0.347822,0.233229,0.48105,0.724478,0.0346164,0.156753,0.557006,0.10879,0.379782,0.901466,0.976047,0.869929,0.916809,0.0413015,0.377156,0.150021,0.0512538,0.955148,0.664111,0.720533,0.760617,0.681796,0.589291,0.256019,0.0970004,0.711728,0.552189,0.799763,0.451054,0.997207,0.773165,0.920419,0.540104,0.228222,0.0943322,0.593172,0.712866,0.62515,0.519219,0.669522,0.209582,0.44832,0.435857,0.0350882,0.272866,0.613061,0.622945,0.809621,0.881498,0.0708184,0.0854303,0.0034942,0.0592282,0.415134,0.441478,0.371521,0.331169,0.940191,0.263157,0.646014,0.809767,0.890505,0.51291,0.955308,0.889899,0.91787,0.00328887,0.984523,0.820996,0.158994,0.108187,0.838513,0.806519,0.300876,0.0853504,0.69169,0.558496,0.501646,0.209666,0.254537,0.412704,0.115992,0.340477,0.987635,0.7915,0.301857,0.163541,0.530208,0.660115,0.950308,0.559419,0.593994,0.466313,0.947721,0.708462,0.19131,0.730763,0.957641,0.443407,0.521515,0.276685,0.498909,0.696314,0.43843,0.563803,0.656735,0.0911028,0.650062,0.960113,0.314812,0.836738,0.612521,0.0750247,0.245608,0.121712,0.482858,0.918585,0.591223,0.272822,0.768201,0.896165,0.549913,0.0468189,0.932,0.311844,0.880985,0.519622,0.643278,0.225279,0.903121,0.69078,0.686483,0.70616,0.275146,0.936529,0.195019,0.365137,0.101968,0.553323,0.996961,0.120275,0.697634,0.477497,0.073442,0.367117,0.543646,0.924902,0.679316,0.631158,0.6983,0.268602,0.0188621,0.272216,0.795959,0.218279,0.935373,0.0845482,0.337993,0.983875,0.0179526,0.283802,0.315443,0.102333,0.977164,0.300799,0.442478,0.600022,0.947892,0.937838,0.294766,0.912017,|0.528181,0.60057,0.728971,0.751055,0.902937,0.53059,0.88268,0.47228,0.431368,0.725613,0.889968,0.282053,0.806721,0.842849,0.803703,0.477328,0.983553,0.693384,0.118145,0.75205,0.176648,0.21474,0.0575369,0.233039,0.0564631,0.787956,0.388988,0.848133,0.415418,0.763513,0.569234,0.390159,0.182873,0.981985,0.254736,0.859932,0.354837,0.362117,0.544014,0.333557,0.425406,0.849179,0.161729,0.650235,0.704874,0.456345,0.99944,0.818267,0.0910246,0.136373,0.989709,0.868064,0.246002,0.859219,0.761547,0.577781,0.677862,0.0348315,0.509457,0.0493878,0.617772,0.365059,0.890718,0.286998,0.569683,0.187105,0.251928,0.828951,0.201067,0.574029,0.252287,0.205202,0.980208,0.97448,0.361011,0.745227,0.466321,0.942252,0.189261,0.595672,0.488549,0.10842,0.114307,0.522606,0.0316034,0.784622,0.0986279,0.874523,0.0765971,0.542944,0.255477,0.179271,0.289929,0.0813494,0.506378,0.130052,0.61709,0.252896,0.371219,0.958896,0.510117,0.630353,0.296389,0.645718,0.796608,0.533587,0.00898457,0.610153,0.111146,0.504349,0.493172,0.552982,0.871187,0.426221,0.0108591,0.935674,0.409191,0.674091,0.31424,0.0120748,0.0970424,0.936796,0.671881,0.929377,0.301952,0.335602,0.515076,0.525435,0.625145,0.711069,0.486735,0.214963,0.966258,0.0337487,0.922523,0.573736,0.899226,0.838746,0.323123,0.00752431,0.41746,0.894955,0.517468,0.615513,0.347627,0.339428,0.326961,0.179529,0.460196,0.0857282,0.76209,0.716394,0.717626,0.0370831,0.692095,0.0543852,0.914633,0.810194,0.254386,0.64369,0.462973,0.326482,0.0898066,0.437298,0.0953316,0.994656,0.0398205,0.0482268,0.294063,0.662833,0.471342,0.467175,0.928222,0.89463,0.616245,0.690356,0.652227,0.781837,0.716864,0.196877,0.960795,0.64655,0.983233,0.875785,0.127125,0.708294,0.538998,0.733947,0.978968,0.69984,0.735512,0.282657,0.387349,0.908555,0.148872,0.138178,0.239869,0.64546,0.173608,0.331485,0.428406,0.757684,0.239051,0.317648,0.070882,0.299426,0.622904,0.907497,0.00840634,0.520317,0.0410969,0.320704,0.704899,0.360235,0.154735,0.701691,0.697302,0.707009,0.168877,0.695714,0.828154,0.555624,0.499571,0.769492,0.578736,0.418254,0.85615,0.339997,0.745477,0.617519,0.251991,0.59341,0.107507,0.789765,0.289172,0.51693,0.900391,0.686888,0.762283,0.672852,0.428002,0.0382224,0.753181,0.538805,0.842953,0.573621,0.378713,0.734585,0.704179,0.205585,0.0622865,0.21838,0.472005,0.985102,0.685811,0.794001,0.614759,0.235815,0.00572205,0.610688,0.435275,0.782461,0.525044,0.503403,0.506953,0.973644,0.952914,0.457454,0.132002,0.675038,0.611975,0.287191,0.235476,0.408514,0.642658,0.827187,0.419167,0.28369,0.09163,0.89457,0.102559,0.963319,0.940265,0.72948,0.20353,0.17107,0.786713,0.721713,0.828801,0.64264,0.453672,0.629105,0.502853,0.976223,0.460078,0.301801,0.725399,0.844224,0.601117,0.158469,0.265583,0.251817,0.687924,0.689707,0.490205,0.601748,0.948339,0.84571,0.485883,0.911631,0.461884,0.978165,0.192731,0.0243835,0.151989,0.537424,0.131025,0.151432,0.583573,0.81126,0.320626,0.249883,0.78949,0.427729,0.217913,0.118289,0.92816,0.348214,0.163703,0.822548,0.194075,0.631654,0.174106,0.371508,0.109902,0.242036,0.685935,0.593549,0.782366,0.133911,0.316851,0.760774,0.0870485,0.175697,0.513406,0.429408,0.779877,0.605729,0.413716,0.797847,0.937789,0.397965,0.952003,0.60218,0.74211,0.520272,0.360106,0.874109,0.55997,0.558563,0.464648,0.793238,0.158843,0.521118,0.499724,0.168745,0.323497,0.207718,0.485613,0.437343,0.579654,0.426236,0.398174,0.607489,0.384453,0.408283,0.731067,0.180353,0.907353,0.050983,0.934568,0.33991,0.715261,0.100805,0.574672,0.828607,0.560422,0.0993011,0.148839,0.244398,0.996562,0.196445,0.934959,0.459778,0.150271,0.540746,0.545731,0.385075,0.649029,0.313549,0.252252,0.610768,0.265191,0.467798,0.643344,0.281709,0.757858,0.387439,0.849471,0.825887,0.239887,0.809237,0.105785,0.996324,0.0801222,0.623674,0.991593,0.289226,0.710946,0.578617,0.7958,0.957171,0.0242561,0.368774,0.457237,0.411262,0.196821,0.526815,0.0604923,0.00967556,0.0258237,0.242596,0.774413,0.924631,0.17559,0.807037,0.928404,0.341922,0.668943,0.633641,0.0424052,0.168955,0.938533,0.578738,0.387614,0.829735,0.274984,0.861503,0.202878,0.841899,0.288918,0.33202,0.446089,0.86829,0.91071,0.870846,0.388228,0.128058,0.87135,0.265486,0.437021,0.746601,0.0331123,0.651511,0.267239,0.970375,0.184032,0.637304,0.936507,0.0287383,0.927409,0.21534,0.013731,0.518575,0.405139,0.516631,0.168173,0.955721,0.819173,0.217332,0.386555,0.476386,0.913462,0.250947,0.451758,0.896648,0.626802,0.113569,0.314214,0.32749,0.170634,0.454531,0.367893,0.942777,0.305005,0.121376,0.251761,0.176974,0.874772,0.8004,0.628677,0.696553,0.0184807,0.996682,0.54457,0.477327,0.885517,0.613469,0.908853,0.66353,0.266209,0.994719,0.771134,0.763131,0.0838488,0.691898,0.151894,0.520541,0.0742126,0.424903,0.565706,0.236854,0.970965,0.171754,0.949154,0.532258,0.122581,0.970034,0.226549,0.901022,0.750796,0.729567,0.844436,0.124126,0.952034,0.79729,0.704244,0.977509,0.594363,0.925096,0.58458,0.406169,0.350915,0.341034,0.649218,0.767614,0.194392,0.122213,0.813739,0.777556,0.674032,0.751777,0.0456398,0.958712,0.865095,0.1338,0.17847,0.998155,0.426754,0.517922,0.462296,0.430314,0.799737,0.495066,0.357035,0.4737,0.257925,0.356702,0.446883,0.457456,0.976382,0.523397,0.852811,0.595357,0.393785,0.537483,0.0825403,0.978475,0.553405,0.768205,0.33244,0.289901,0.699166,0.0511748,0.564087,0.823218,0.0470583,0.602229,0.112608,0.625922,0.243288,0.312134,0.197023,0.865252,0.3183,0.140631,0.387757,0.353949,0.70437,0.658849,0.923279,0.89393,0.0991833,0.131689,0.957147,0.248596,0.096643,0.882963,0.426013,0.967459,0.088378,0.697249,0.0811725,0.670806,0.374705,0.480304,0.966453,0.948479,0.711868,0.769498,0.335971,0.939473,0.51374,0.613101,0.735179,0.743414,0.393387,0.14437,0.405264,0.161604,0.541334,0.0947635,0.999812,0.902895,0.331368,0.50825,0.221714,0.851722,0.579941,0.402315,0.993113,0.217649,0.35655,0.449033,0.246156,0.359511,0.312829,0.0170093,0.229596,0.741815,0.433122,0.126681,0.197329,0.354717,0.991653,0.654343,0.614074,0.533006,0.571894,0.623977,0.483662,0.691971,0.21121,0.143649,0.769818,0.157996,0.794966,0.119401,0.278214,0.857332,0.621912,0.0142387,0.537315,0.856498,0.441046,0.144775,0.0915603,0.592951,0.129907,0.588957,0.488832,0.518481,0.96101,0.426901,0.519158,0.609501,0.303602,0.436591,0.526034,0.118014,0.0204062,0.597672,0.755191,0.0745208,0.538646,0.342081,0.624401,0.442077,0.572926,0.383331,0.371586,0.206208,0.988286,0.214839,0.335054,0.498919,0.175896,0.558108,0.231097,0.872497,0.657021,0.671894,0.264568,0.377739,0.442783,0.695664,0.473628,0.323894,0.246145,0.418721,0.673807,0.742619,0.918685,0.206434,0.787708,0.215018,0.534909,0.200471,0.657296,0.139323,0.954108,0.909226,0.614918,0.991151,0.438979,0.212558,0.409066,0.44779,0.843194,0.373084,0.30355,0.338736,0.155269,0.753051,0.70309,0.634176,0.764456,0.189543,0.661411,0.60698,0.503442,0.746279,0.230593,0.633631,0.731451,0.17426,0.520663,0.703233,0.682906,0.672219,0.599589,0.630814,0.420508,0.390409,0.701031,0.633878,0.681401,0.742115,0.827438,0.375358,0.657093,0.216243,0.815568,0.0568056,0.917103,0.22664,0.833464,0.208792,0.572464,0.621958,0.7618,0.649672,0.417251,0.693663,0.593755,0.987655,0.339887,0.970319,0.646017,0.527962,0.138105,0.0945306,0.403106,0.817179,0.306852,0.297606,0.0442742,0.669571,0.706182,0.329746,0.00182438,0.725256,0.488916,0.193617,0.659309,0.971789,0.00594532,0.520317,0.739738,0.201795,0.438274,0.744641,0.756826,0.829017,0.63496,0.968993,0.481685,0.746796,0.793718,0.558191,0.647948,0.92626,0.842762,0.519312,0.822227,0.115614,0.190343,0.726831,0.58822,0.666918,0.91078,0.1494,0.152373,0.54808,0.96182,0.387304,0.234935,0.605736,0.87118,0.559926,0.649888,0.313137,0.106111,0.933593,0.177454,0.312974,0.0272811,0.398826,0.479017,0.254719,0.969972,0.139086,0.0831719,0.852995,0.0300389,0.217926,0.273621,0.752124,0.429223,0.666395,0.218039,0.694602,0.0968568,0.130398,0.996806,0.988666,0.335056,0.65484,0.846933,0.589677,0.71765,0.15247,0.897401,0.852388,0.455298,0.176194,0.887664,0.0921007,0.73889,0.501479,0.562196,0.940473,0.76697,0.23721,0.781075,0.661258,0.0858367,0.749923,0.72037,0.0756393,0.968103,0.521845,0.986154,0.938189,0.268045,0.514506,0.603053,0.906019,0.306332,0.428674,0.634168,0.4861,0.672982,0.691566,0.20076,0.200158,0.0316522,0.342655,0.862977,0.26258,0.812344,0.582338,0.0245265,0.230942,0.291378,0.0477928,0.607161,0.827947,0.771839,0.407954,0.829579,0.858375,0.896026,0.406227,0.257291,0.335509,0.411369,0.58326,0.63483,0.392506,0.782493,0.547898,0.60449,0.0402967,0.467057,0.343008,0.566661,0.413227,0.969778,0.677399,0.302091,0.547254,0.473329,0.336251,0.964326,0.502503,0.464916,6.77705e-05,0.389825,0.184477,0.117693,0.0870537,0.767645,0.133342,0.510285,0.957026,0.0892215,0.351805,0.278027,0.541317,0.463434,0.740169,0.581399,0.779172,0.900303,0.41261,0.129593,0.664742,0.738007,0.398014,0.830466,0.713089,0.985703,0.721777,0.828846,0.314411,0.700298,0.983906,0.0715503,0.0261951,0.128231,0.229327,0.880874,0.91081,0.0188894,0.762588,0.523449,0.292708,0.857306,0.254981,0.594117,0.18732,0.324464,0.273614,0.764764,0.0961973,0.303432,0.0394803,0.997369,0.0569878,|0.66869,0.799412,0.389994,0.343257,0.996019,0.532557,0.323271,0.108198,0.491581,0.166799,0.32431,0.637544,0.545487,0.697996,0.424924,0.888425,0.967243,0.0923052,0.136377,0.513875,0.256383,0.321541,0.000199914,0.41661,0.739434,0.586871,0.471505,0.640062,0.120525,0.151778,0.961963,0.909074,0.112233,0.897672,0.554102,0.145253,0.959753,0.525285,0.93596,0.433828,0.649885,0.0880963,0.171668,0.72938,0.557282,0.414332,0.189617,0.093253,0.658916,0.268068,0.758201,0.727799,0.189358,0.327483,0.675247,0.302559,0.884479,0.653778,0.868802,0.480716,0.281801,0.833063,0.00734425,0.0882,0.586504,0.820127,0.724612,0.0314889,0.675632,0.969734,0.564631,0.826426,0.489259,0.296688,0.872296,0.617126,0.589713,0.373267,0.599184,0.191299,0.419977,0.843119,0.717465,0.454684,0.645756,0.687846,0.453648,0.308898,0.507935,0.85198,0.0346365,0.590649,0.377685,0.885128,0.105835,0.797966,0.145078,0.786636,0.605334,0.299182,0.98622,0.279026,0.061018,0.942658,0.286868,0.756601,0.641671,0.492365,0.77571,0.961971,0.0644851,0.53311,0.897254,0.668303,0.151339,0.780045,0.434263,0.804807,0.816076,0.0081777,0.784611,0.572017,0.967206,0.481893,0.47192,0.601219,0.152184,0.745785,0.92902,0.523367,0.609014,0.27546,0.386693,0.732572,0.229937,0.369669,0.795801,0.992005,0.718849,0.49417,0.315815,0.285654,0.815158,0.876591,0.436925,0.140866,0.874673,0.08106,0.0270956,0.860654,0.964307,0.546356,0.889545,0.708606,0.407053,0.104878,0.322075,0.965325,0.17422,0.170452,0.223046,0.25167,0.155007,0.337165,0.143379,0.0822272,0.241389,0.639481,0.738608,0.218584,0.37845,0.803037,0.0155485,0.873918,0.0461762,0.15551,0.708721,0.909344,0.502659,0.90744,0.157719,0.438392,0.364058,0.985967,0.191218,0.647536,0.0564104,0.457056,0.940585,0.570337,0.307651,0.504112,0.657901,0.21905,0.730832,0.337686,0.28765,0.97821,0.0760471,0.727064,0.771501,0.80961,0.367472,0.956271,0.90266,0.131809,0.105792,0.3795,0.371703,0.296045,0.946414,0.31316,0.594748,0.58399,0.0371794,0.0793644,0.897137,0.535772,0.984959,0.171617,0.0317834,0.646788,0.345211,0.312939,0.380512,0.930278,0.251185,0.745969,0.00552237,0.685736,0.597919,0.303958,0.0429397,0.670781,0.181866,0.63026,0.245407,0.876049,0.459618,0.3091,0.795854,0.827227,0.108051,0.624016,0.878411,0.67049,0.673473,0.958528,0.639288,0.0673705,0.372283,0.0544492,0.832172,0.78411,0.593072,0.61736,0.0671973,0.346481,0.0883275,0.056267,0.0715553,0.837964,0.895893,0.46164,0.411754,0.369667,0.0784032,0.751049,0.058835,0.605402,0.268436,0.703435,0.273635,0.464289,0.595119,0.632156,0.938814,0.332547,0.454596,0.900653,0.892536,0.845808,0.149518,0.888279,0.669716,0.218164,0.855894,0.250202,0.471567,0.242059,0.396204,0.963242,0.576583,0.422796,0.483994,0.348309,0.982849,0.791141,0.240091,0.799151,0.676235,0.377126,0.346436,0.224525,0.558405,0.665167,0.139456,0.330759,0.185807,0.0514739,0.96871,0.464715,0.474325,0.983278,0.172631,0.141083,0.00773489,0.559834,0.256462,0.255415,0.931637,0.694473,0.950574,0.371144,0.238084,0.809904,0.0665332,0.773053,0.230355,0.321588,0.978963,0.872239,0.959557,0.0721053,0.634822,0.794385,0.693338,0.431727,0.325317,0.566723,0.332618,0.24905,0.797199,0.253514,0.575543,0.394209,0.307588,0.714956,0.646697,0.591823,0.663007,0.849757,0.280887,0.475313,0.747069,0.503403,0.423899,0.158205,0.013831,0.636324,0.376209,0.904263,0.454094,0.0655705,0.660657,0.404928,0.462924,0.255256,0.89807,0.912939,0.30678,0.82903,0.0535948,0.532449,0.334224,0.671777,0.634982,0.769513,0.112031,0.407342,0.359455,0.991527,0.0244791,0.789614,0.935668,0.000109255,0.269149,0.340785,0.89232,0.0180261,0.0713704,0.139133,0.0609844,0.171521,0.619338,0.726866,0.690116,0.769857,0.211066,0.895612,0.15845,0.555719,0.526042,0.870116,0.99116,0.0373675,0.416,0.769863,0.98983,0.768663,0.628353,0.158761,0.954505,0.856134,0.916562,0.801805,0.868433,0.354459,0.136712,0.255555,0.0290703,0.730245,0.710993,0.534016,0.862267,0.861712,0.771858,0.607051,0.0324603,0.656042,0.601935,0.866777,0.447141,0.0701799,0.293438,0.11341,0.0357169,0.0472659,0.643239,0.892911,0.562428,0.673048,0.783286,0.833116,0.189483,0.261597,0.307761,0.0998998,0.119001,0.377929,0.608001,0.668265,0.949355,0.856895,0.580908,0.606977,0.26783,0.351213,0.859086,0.530731,0.844255,0.315215,0.807987,0.284164,0.578324,0.201839,0.584578,0.790828,0.579497,0.613813,0.72072,0.695233,0.801135,0.710948,0.641067,0.942774,0.910749,0.711147,0.864497,0.194599,0.576773,0.393706,0.176172,0.439239,0.686264,0.00527251,0.703219,0.972369,0.980663,0.851015,0.343775,0.0709646,0.120854,0.220454,0.0558659,0.876213,0.0368192,0.0677087,0.281402,0.217558,0.410276,0.658133,0.836606,0.901318,0.242105,0.616405,0.988648,0.558339,0.189943,9.57251e-05,0.297394,0.480377,0.570166,0.729634,0.117096,0.23443,0.851862,0.776706,0.437784,0.480165,0.428123,0.25269,0.899489,0.560466,0.292592,0.0680129,0.185207,0.757408,0.465629,0.469414,0.529,0.89537,0.754019,0.975544,0.370247,0.304487,0.706797,0.33008,0.929358,0.905294,0.41607,0.756318,0.0996012,0.770091,0.534163,0.72479,0.0934614,0.754002,0.416629,0.682747,0.389174,0.604353,0.372222,0.545159,0.924075,0.795913,0.759568,0.876426,0.737202,0.198419,0.446993,0.136063,0.150495,0.243463,0.995964,0.617607,0.327907,0.174444,0.962955,0.599489,0.942081,0.149155,0.159014,0.159022,0.560241,0.841374,0.511183,0.674051,0.895659,0.930715,0.885098,0.969457,0.0466258,0.3481,0.129671,0.821936,0.673162,0.0519643,0.652696,0.553558,0.239181,0.966027,0.876627,0.854313,0.56778,0.721441,0.311881,0.350712,0.969856,0.675532,0.621011,0.322917,0.785114,0.11789,0.0776249,0.464553,0.596116,0.896024,0.818561,0.126928,0.160527,0.0630943,0.307596,0.494738,0.806242,0.861518,0.0134155,0.729394,0.954092,0.214149,0.596948,0.46065,0.736869,0.314504,0.926519,0.171981,0.0660734,0.553616,0.94667,0.810813,0.22498,0.52749,0.693713,0.669593,0.496669,0.0909306,0.885472,0.828783,0.983314,0.278012,0.977409,0.161043,0.985011,0.421108,0.929877,0.755298,0.747498,0.152433,0.93952,0.922161,0.401216,0.785955,0.299667,0.219119,0.646422,0.349303,0.537479,0.2728,0.733117,0.673016,0.575479,0.473802,0.578576,0.159413,0.439211,0.59756,0.711277,0.332543,0.889166,0.23214,0.900948,0.909773,0.0755211,0.144076,0.330878,0.0452588,0.547675,0.211715,0.147078,0.0939338,0.993533,0.399052,0.427921,0.95608,0.533025,0.284093,0.299101,0.743667,0.745063,0.00181419,0.567517,0.35025,0.960526,0.0844595,0.213955,0.37924,0.456963,0.126331,0.0430363,0.410743,0.480143,0.944602,0.485873,0.17975,0.641021,0.326143,0.782941,0.713733,0.879047,0.144372,0.0264316,0.205135,0.150316,0.297246,0.291729,0.754792,0.167425,0.548089,0.768114,0.68335,0.906512,0.00193208,0.18984,0.976804,0.658228,0.561687,0.062591,0.358174,0.0107879,0.524602,0.0956388,0.742923,0.115251,0.383927,0.583071,0.0863,0.834184,0.0520349,0.390763,0.11667,0.0447943,0.45585,0.756713,0.501035,0.681467,0.934847,0.703838,0.122316,0.533308,0.101364,0.811098,0.928944,0.824342,0.258157,0.508409,0.588734,0.653289,0.495461,0.407522,0.411872,0.673834,0.0273097,0.0754506,0.561042,0.0208715,0.761531,0.198696,0.333664,0.985326,0.4584,0.937084,0.0674513,0.283691,0.563979,0.546868,0.213755,0.306725,0.596453,0.557398,0.406105,0.492613,0.233687,0.875475,0.848013,0.500986,0.357496,0.395956,0.548599,0.667354,0.551903,0.0323798,0.959106,0.521324,0.991491,0.949333,0.259531,0.271086,0.0390609,0.127146,0.104107,0.292371,0.0733747,0.434407,0.250526,0.718887,0.675263,0.34933,0.319833,0.989714,0.736926,0.0942602,0.659211,0.222226,0.439331,0.359724,0.50204,0.0100999,0.0436021,0.430968,0.440821,0.477946,0.843046,0.994198,0.603651,0.314653,0.0942399,0.774434,0.369208,0.968115,0.599724,0.788233,0.656687,0.330539,0.665783,0.439216,0.00867301,0.437203,0.159795,0.903483,0.526384,0.917797,0.677459,0.127475,0.967502,0.209452,0.111325,0.837397,0.699578,0.614681,0.471415,0.428181,0.561829,0.923874,0.00222307,0.594892,0.56833,0.183168,0.447146,0.394561,0.253528,0.557751,0.641653,0.434101,0.0906014,0.19082,0.472536,0.162208,0.147974,0.535827,0.194921,0.772788,0.689169,0.443066,0.513815,0.546428,0.772671,0.658561,0.684306,0.381327,0.209197,0.825519,0.605102,0.358,0.32071,0.0500793,0.91184,0.816714,0.281543,0.114435,0.187324,0.588897,0.267717,0.858662,0.585389,0.509009,0.547539,0.283191,0.883792,0.340939,0.810532,0.460041,0.636288,0.52232,0.375329,0.0448575,0.81561,0.345191,0.768515,0.18402,0.980458,0.562554,0.71499,0.674812,0.0428668,0.592371,0.977195,0.300116,0.374548,0.0262746,0.0497351,0.110576,0.898515,0.0256829,0.947672,0.656561,0.477299,0.904188,0.833053,0.891195,0.87355,0.189335,0.494301,0.705807,0.360633,0.925278,0.950116,0.236905,0.746839,0.486792,0.793855,0.0766001,0.890899,0.522024,0.480656,0.110345,0.957874,0.360044,0.847903,0.618724,0.279116,0.564863,0.623555,0.250693,0.912752,0.523045,0.17208,0.255356,0.682275,0.201422,0.442552,0.955339,0.90686,0.634656,0.107511,0.0144146,0.292726,0.64559,0.128257,0.225956,0.148114,0.843254,0.0315038,0.289021,0.0250714,0.372439,0.089008,0.523305,0.0402841,0.190624,0.718592,0.102536,0.121669,0.777848,0.695035,0.283079,0.2197,0.204353,0.0242971,0.725885,0.566846,0.34411,0.306031,0.619785,0.777671,0.72876,0.201286,0.0511701,0.947735,0.961478,0.971223,|0.601051,0.613423,0.736648,0.358426,0.488668,0.501505,0.0443881,0.619247,0.191813,0.0257661,0.528339,0.620569,0.661044,0.0284516,0.73071,0.241102,0.925541,0.548942,0.602973,0.587373,0.079573,0.549668,0.775121,0.085144,0.90399,0.657088,0.98587,0.887186,0.479716,0.575903,0.392681,0.682483,0.150104,0.584132,0.510221,0.294353,0.796917,0.393068,0.545922,0.0195427,0.504115,0.258633,0.676823,0.546606,0.199699,0.112043,0.152819,0.726919,0.75151,0.642586,0.56857,0.853327,0.550837,0.689153,0.802497,0.812004,0.117613,0.614698,0.207443,0.85387,0.65576,0.668292,0.472484,0.613866,0.377341,0.255041,0.568633,0.301758,0.845823,0.735381,0.608527,0.731892,0.54472,0.694021,0.466231,0.257257,0.263183,0.804039,0.157065,0.875697,0.678487,0.745502,0.883964,0.569018,0.926343,0.278457,0.237702,0.247409,0.0599155,0.751206,0.735988,0.507847,0.607376,0.010561,0.685928,0.0760562,0.0475896,0.777578,0.858973,0.510455,0.361791,0.483155,0.710962,0.423275,0.039254,0.812974,0.11893,0.511656,0.607184,0.190191,0.641706,0.98972,0.159016,0.668116,0.337965,0.608814,0.737767,0.34116,0.991677,0.30075,0.999947,0.972189,0.371998,0.788578,0.881869,0.682475,0.983434,0.189359,0.272161,0.884099,0.317773,0.331013,0.727053,0.212112,0.913474,0.0614463,0.308333,0.0528424,0.857772,0.256674,0.751773,0.83852,0.778514,0.010244,0.540049,0.672874,0.83794,0.685011,0.216304,0.304637,0.323369,0.248301,0.342171,0.601487,0.866974,0.171647,0.043855,0.135277,0.18586,0.356489,0.397928,0.805474,0.0306033,0.0155048,0.952087,0.64769,0.308075,0.638234,0.849019,0.676363,0.958068,0.111066,0.382335,0.504256,0.311041,0.514565,0.71069,0.58229,0.302331,0.663088,0.591732,0.581972,0.0953462,0.132865,0.39647,0.773921,0.094757,0.124683,0.562989,0.970107,0.552815,0.875496,0.632185,0.129026,0.976932,0.878684,0.079167,0.498731,0.0593503,0.165938,0.63947,0.0313848,0.948658,0.763279,0.960648,0.29795,0.463181,0.294793,0.838195,0.455475,0.348121,0.741195,0.496418,0.977504,0.426759,0.53323,0.784416,0.381335,0.651476,0.0741565,0.964855,0.668265,0.365329,0.0365641,0.420314,0.415178,0.744172,0.0650153,0.460395,0.255265,0.13628,0.851763,0.787031,0.816776,0.716152,0.914979,0.87269,0.523773,0.555154,0.724844,0.931695,0.193836,0.0436798,0.9044,0.863165,0.072665,0.654187,0.178235,0.314177,0.416559,0.771433,0.699506,0.306333,0.00356817,0.191751,0.810986,0.797259,0.0420119,0.833957,0.0960152,0.304855,0.848522,0.445698,0.274338,0.662961,0.423099,0.541211,0.151769,0.682429,0.823631,0.527082,0.257618,0.469873,0.118675,0.171002,0.127382,0.560927,0.272504,0.21993,0.706567,0.54969,0.478287,0.872552,0.0635029,0.0201997,0.620458,0.944683,0.209439,0.654565,0.108412,0.780827,0.858966,0.700339,0.952617,0.217448,0.538328,0.774811,0.340528,0.558172,0.449574,0.360596,0.410744,0.985485,0.939384,0.481393,0.197062,0.688734,0.24959,0.508524,0.377232,0.32661,0.890937,0.791501,0.798376,0.268307,0.553697,0.410394,0.238243,0.701933,0.969826,0.640679,0.1124,0.706733,0.356179,0.754523,0.122506,0.699349,0.194108,0.0196316,0.93456,0.549739,0.470785,0.423452,0.0253804,0.198752,0.172808,0.210676,0.234965,0.804164,0.924795,0.24795,0.491829,0.395128,0.204926,0.329448,0.0462036,0.0663019,0.159808,0.988913,0.87028,0.535788,0.277331,0.59795,0.00564104,0.635062,0.393314,0.623813,0.0743691,0.789731,0.926114,0.404508,0.934539,0.97026,0.550841,0.453265,0.742927,0.927889,0.359905,0.945269,0.96515,0.950864,0.207553,0.835924,0.976395,0.12506,0.84425,0.137735,0.0152676,0.672659,0.382361,0.07404,0.820652,0.516669,0.217121,0.967931,0.201872,0.15946,0.281851,0.414154,0.0350611,0.168049,0.601565,0.324538,0.768901,0.0879422,0.0427889,0.45326,0.456697,0.123618,0.395562,0.42035,0.664941,0.196391,0.44038,0.682123,0.476481,0.331291,0.962573,0.0415146,0.582494,0.0805607,0.827474,0.838449,0.961097,0.303501,0.112499,0.56354,0.430998,0.834325,0.61499,0.818632,0.606417,0.376928,0.57169,0.60355,0.0762388,0.362627,0.0193325,0.0267372,0.955215,0.753208,0.298979,0.512276,0.099142,0.113391,0.851426,0.425888,0.322111,0.0837062,0.288567,0.690686,0.220251,0.339475,0.642479,0.908172,0.694083,0.728379,0.988936,0.0972888,0.209928,0.111951,0.710028,0.156028,0.643977,0.0321712,0.973728,0.657003,0.448466,0.663448,0.133377,0.742189,0.535724,0.964629,0.685318,0.427493,0.822498,0.732342,0.994486,0.199676,0.85719,0.925684,0.0737278,0.322923,0.674353,0.350118,0.0792235,0.411359,0.957704,0.258389,0.902002,0.408307,0.671009,0.80221,0.460353,0.5306,0.186598,0.486171,0.511116,0.625357,0.259293,0.97102,0.395201,0.641575,0.88917,0.799366,0.46527,0.331603,0.035916,0.616408,0.295866,0.941815,0.892895,0.510981,0.0779349,0.483913,0.146965,0.129787,0.914282,0.0468359,0.334231,0.556579,0.433502,0.752528,0.509847,0.850508,0.951191,0.0960941,0.316836,0.682936,0.119504,0.696261,0.659102,0.74775,0.737746,0.449806,0.868842,0.170939,0.84422,0.854271,0.56205,0.152177,0.936689,0.0281649,0.468514,0.905436,0.0756171,0.865852,0.467594,0.768745,0.526558,0.195479,0.671531,0.986357,0.129214,0.671886,0.0895869,0.0980788,0.890823,0.734173,0.0545726,0.806172,0.712102,0.324052,0.433883,0.0352271,0.854028,0.0728578,0.557357,0.322158,0.0221975,0.342625,0.366944,0.546975,0.452994,0.539439,0.405044,0.430573,0.228279,0.169615,0.146013,0.127872,0.169942,0.11353,0.366073,0.710644,0.252316,0.697837,0.250313,0.469916,0.232856,0.650304,0.135085,0.0109442,0.072702,0.359231,0.693476,0.745334,0.881851,0.718969,0.505919,0.0147655,0.0589004,0.628654,0.252857,0.595473,0.710969,0.585225,0.346053,0.701946,0.220923,0.870346,0.418507,0.235186,0.0512761,0.74547,0.659689,0.39968,0.903305,0.378058,0.359187,0.26642,0.97531,0.495962,0.0212644,0.441604,0.393555,0.180107,0.947294,0.373341,0.039057,0.0629265,0.666716,0.92704,0.41862,0.35306,0.326431,0.262247,0.100792,0.173752,0.980785,0.484686,0.731152,0.0122369,0.623167,0.922242,0.194348,0.916487,0.222319,0.0968755,0.469208,0.0789415,0.38573,0.136451,0.508875,0.685817,0.00886118,0.237003,0.203885,0.793223,0.547469,0.57979,0.796023,0.28727,0.508458,0.564247,0.65907,0.427673,0.134169,0.866993,0.724243,0.362143,0.648472,0.254115,0.453714,0.774587,0.769228,0.988953,0.569919,0.936153,0.155895,0.353537,0.959033,0.171165,0.913672,0.560014,0.270843,0.530039,0.806741,0.27113,0.447944,0.635359,0.592741,0.142353,0.546037,0.42991,0.750745,0.11091,0.782482,0.214681,0.950077,0.383807,0.146944,0.320446,0.982002,0.032649,0.0369766,0.712883,0.935632,0.561058,0.670303,0.343817,0.261773,0.734232,0.382399,0.368225,0.357403,0.576643,0.599429,0.509865,0.644286,0.0109481,0.93882,0.819182,0.716593,0.37148,0.121788,0.924325,0.0544427,0.88064,0.902557,0.814243,0.566275,0.4179,0.911436,0.935289,0.212229,0.0713624,0.0349138,0.349889,0.766226,0.840808,0.00773275,0.587195,0.448634,0.445093,0.442835,0.875245,0.638664,0.167409,0.546208,0.590813,0.214825,0.932605,0.969101,0.501145,0.108571,0.00106519,0.88512,0.47005,0.596471,0.566258,0.284196,0.847724,0.382827,0.110633,0.901568,0.652606,0.0314632,0.443582,0.840208,0.631603,0.4933,0.504562,0.831261,0.522766,0.828222,0.0148019,0.08294,0.52766,0.22702,0.736537,0.792608,0.610423,0.489081,0.603864,0.226383,0.381322,0.105239,0.828877,0.656264,0.285751,0.384269,0.597396,0.263907,0.275548,0.0499998,0.419247,0.0449901,0.471717,0.398963,0.636178,0.965269,0.105031,0.4455,0.584842,0.399838,0.169122,0.241303,0.62019,0.643119,0.879358,0.187147,0.112704,0.405996,0.557781,0.254718,0.615592,0.183378,0.565522,0.158856,0.949383,0.0434677,0.342428,0.341915,0.559926,0.441225,0.787444,0.321449,0.651818,0.359368,0.753816,0.365194,0.0273424,0.645318,0.297213,0.741712,0.0501241,0.525754,0.87125,0.7414,0.18846,0.133427,0.655012,0.318229,0.0138129,0.039732,0.508419,0.180289,0.78026,0.430236,0.404205,0.576077,0.945869,0.614918,0.652477,0.629645,0.756084,0.182439,0.299493,0.961067,0.582105,0.556357,0.439853,0.267724,0.692964,0.558912,0.641857,0.555675,0.496747,0.454226,0.335907,0.0560221,0.933206,0.228707,0.525743,0.168727,0.0600293,0.401466,0.36904,0.270698,0.861838,0.645224,0.525072,0.820891,0.573423,0.516166,0.593348,0.87719,0.245171,0.023986,0.552617,0.0993629,0.902382,0.478342,0.983211,0.4615,0.983031,0.572048,0.425496,0.0848547,0.612726,0.865135,0.552785,0.223966,0.553064,0.828138,0.0702159,0.22595,0.413795,0.671148,0.463232,0.0128894,0.164531,0.974274,0.519378,0.200848,0.532007,0.331756,0.0953917,0.885943,0.805018,0.411801,0.486424,0.560359,0.653113,0.176718,0.496522,0.352545,0.769248,0.729518,0.844895,0.48658,0.294574,0.238477,0.00254685,0.129561,0.109485,0.12568,0.58801,0.313165,0.953332,0.764591,0.176051,0.550014,0.880288,0.620482,0.785675,0.70053,0.239634,0.50922,0.484383,0.197081,0.309792,0.713044,0.703738,0.683855,0.518586,0.42431,0.159575,0.320473,0.875668,0.235506,0.62998,0.915128,0.294163,0.906139,0.751734,0.391017,0.564151,0.297167,0.8436,0.686549,0.78685,0.683016,0.621721,0.976142,0.556047,0.377905,0.29322,0.0399066,0.665282,0.917438,0.722529,0.30426,0.995957,0.0901574,0.0460381,0.448228,0.944981,0.979047,0.612986,0.845761,0.820855,0.262784,0.916796,0.317476,0.721003,0.586316,0.670137,0.725745,0.471326,0.554007,0.463156,0.368984,0.416051,0.984379,0.88665,0.794116,0.451785,0.520576,|0.206009,0.50549,0.534252,0.846951,0.633496,0.161774,0.568987,0.245642,0.272852,0.712838,0.97003,0.687928,0.379065,0.244977,0.934045,0.800066,0.632821,0.736237,0.668691,0.146792,0.762454,0.812345,0.862893,0.394935,0.104752,0.192296,0.0764889,0.870468,0.962462,0.737843,0.596132,0.606309,0.566776,0.553475,0.0638456,0.289312,0.522805,0.173162,0.991206,0.162005,0.0570351,0.0629709,0.444979,0.882641,0.172395,0.124232,0.852883,0.7937,0.148937,0.666783,0.957797,0.862751,0.797689,0.228062,0.815979,0.365629,0.711578,0.745796,0.297262,0.986862,0.143713,0.934492,0.806123,0.186826,0.0982977,0.179855,0.293189,0.722269,0.38975,0.886603,0.268006,0.735492,0.321928,0.753531,0.46522,0.372441,0.267122,0.913008,0.0158919,0.0826917,0.244529,0.0592186,0.207176,0.623878,0.0510843,0.656545,0.504964,0.315842,0.668621,0.377252,0.496613,0.421008,0.983967,0.646254,0.483675,0.765767,0.610866,0.866809,0.423648,0.63504,0.865889,0.139203,0.618203,0.73475,0.0638737,0.0478421,0.914966,0.179402,0.185376,0.487709,0.69757,0.315755,0.139985,0.953718,0.72468,0.961306,0.0814561,0.239596,0.0123375,0.314104,0.584134,0.759544,0.474697,0.293746,0.487043,0.343219,0.909144,0.565557,0.192191,0.0729154,0.178812,0.215343,0.25982,0.0507526,0.188847,0.924059,0.183712,0.340204,0.201416,0.610129,0.811822,0.649878,0.100273,0.0589057,0.860962,0.130969,0.158918,0.211338,0.881721,0.84209,0.953154,0.29041,0.512303,0.342853,0.544969,0.723493,0.148439,0.479836,0.981009,0.651759,0.237854,0.975979,0.412666,0.686644,0.561559,0.990865,0.702777,0.446044,0.967073,0.759374,0.29965,0.0472565,0.993199,0.0418797,0.231423,0.829191,0.209367,0.680808,0.630116,0.894282,0.125614,0.0870231,0.508696,0.982545,0.0293915,0.366854,0.682158,0.510584,0.18653,0.501837,0.174202,0.327764,0.771578,0.425918,0.113717,0.839621,0.649363,0.563331,0.59563,0.718228,0.72912,0.13827,0.914665,0.998168,0.684079,0.196422,0.266958,0.210166,0.0555412,0.908734,0.0123407,0.769782,0.645459,0.545123,0.351794,0.0904455,0.856032,0.739077,0.846924,0.218707,0.333747,0.671427,0.551228,0.410171,0.783064,0.0642122,0.813331,0.16361,0.126416,0.618189,0.0709013,0.968528,0.660549,0.575259,0.642134,0.809156,0.927768,0.643936,0.0105726,0.431241,0.00311357,0.817664,0.0383239,0.144342,0.0696878,0.0938905,0.941333,0.345049,0.606094,0.154064,0.0566254,0.497478,0.249978,0.178123,0.695409,0.239262,0.960258,0.278244,0.499324,0.814441,0.00688612,0.0059492,0.955441,0.637071,0.515711,0.466046,0.618025,0.809309,0.396794,0.69754,0.918504,0.422454,0.41488,0.0456316,0.653874,0.415494,0.457565,0.772243,0.366189,0.55357,0.154955,0.733943,0.497652,0.0803871,0.355529,0.728094,0.586538,0.45611,0.0836997,0.451722,0.076721,0.488217,0.642374,0.716136,0.385348,0.264135,0.085611,0.987119,0.138926,0.0986728,0.659224,0.783851,0.446228,0.862764,0.595985,0.342284,0.299899,0.0374889,0.893081,0.345894,0.107947,0.730701,0.124367,0.253172,0.814498,0.669365,0.786064,0.00157613,0.518875,0.362498,0.952865,0.895184,0.93202,0.669443,0.878077,0.61685,0.0536354,0.684667,0.963796,0.767673,0.232433,0.638293,0.987661,0.851544,0.374113,0.0110112,0.0856488,0.334859,0.40987,0.45052,0.757668,0.671104,0.416272,0.58053,0.309505,0.201197,0.00775844,0.898003,0.2902,0.84073,0.0134064,0.197013,0.921132,0.723443,0.446114,0.965685,0.484346,0.943558,0.969245,0.358542,0.621502,0.274118,0.626262,0.308561,0.230046,0.0957443,0.821821,0.209451,0.53685,0.816171,0.696313,0.213615,0.919776,0.301638,0.464721,0.416428,0.787447,0.0721846,0.399968,0.731434,0.471668,0.520447,0.477162,0.564573,0.664726,0.0380765,0.216474,0.0900906,0.562887,0.307503,0.0614761,0.889057,0.279112,0.384511,0.881542,0.231487,0.111388,0.954794,0.26174,0.906474,0.0250828,0.322009,0.498239,0.875239,0.532849,0.245335,0.103705,0.220833,0.255247,0.809595,0.22412,0.161072,0.335556,0.10824,0.268102,0.356383,0.317772,0.024932,0.967047,0.542077,0.563651,0.908323,0.766735,0.789232,0.598686,0.711584,0.522402,0.990932,0.905327,0.76263,0.35598,0.291424,0.466501,0.807747,0.96982,0.339369,0.120571,0.658806,0.465808,0.761165,0.0949719,0.385189,0.451466,0.338115,0.17371,0.80775,0.758667,0.690064,0.775564,0.310189,0.122743,0.189979,0.716865,0.757981,0.242615,0.266788,0.236424,0.654517,0.283512,0.646142,0.42084,0.582072,0.236462,0.293255,0.942377,0.308305,0.662412,0.96667,0.412055,0.813618,0.113811,0.876256,0.00127774,0.397382,0.0153978,0.483643,0.569199,0.912056,0.62085,0.2815,0.377471,0.416988,0.627649,0.51366,0.506151,0.823897,0.507457,0.24083,0.553496,0.54296,0.715829,0.494873,0.583016,0.942578,0.626506,0.281308,0.840709,0.955285,0.0325096,0.14918,0.33324,0.00569075,0.878826,0.290517,0.538507,0.641355,0.815272,0.52379,0.544735,0.846933,0.887073,0.0524781,0.638299,0.36791,0.703373,0.508026,0.943868,0.551709,0.862731,0.939674,0.0150681,0.596506,0.793129,0.308475,0.665327,0.161933,0.897528,0.689815,0.223897,0.447542,0.719605,0.796502,0.518101,0.391257,0.639319,0.591127,0.773463,0.773422,0.548596,0.0598308,0.863857,0.457145,0.73732,0.833721,0.409067,0.160985,0.013256,0.54302,0.46711,0.83825,0.815657,0.763917,0.662458,0.271676,0.866119,0.983722,0.0891421,0.525245,0.184374,0.267563,0.307386,0.59715,0.000193536,0.226029,0.377973,0.326134,0.258594,0.653359,0.290392,0.806552,0.908549,0.258672,0.0459471,0.441777,0.366754,0.162243,0.628227,0.638972,0.635364,0.284025,0.563736,0.771235,0.896235,0.533696,0.108172,0.0430369,0.809672,0.383208,0.526108,0.415828,0.765229,0.513167,0.670005,0.428178,0.636115,0.978961,0.015964,0.225271,0.872776,0.329974,0.0716048,0.985595,0.069861,0.455416,0.760402,0.584415,0.667988,0.689952,0.759118,0.0412609,0.737723,0.135484,0.354299,0.216627,0.529424,0.527716,0.00112379,0.455939,0.514817,0.463656,0.136793,0.261598,0.20326,0.210155,0.134061,0.890985,0.456222,0.764648,0.624453,0.871629,0.877408,0.462307,0.991037,0.846059,0.388185,0.799181,0.729472,0.0402371,0.71894,0.924984,0.160681,0.659492,0.428344,0.787516,0.627524,0.797469,0.301018,0.886175,0.859151,0.178469,0.215923,0.364264,0.762149,0.71848,0.800074,0.224278,0.303057,0.0175923,0.816904,0.429065,0.49901,0.555391,0.611695,0.562428,0.137199,0.340753,0.32056,0.769404,0.374021,0.632734,0.0740588,0.320738,0.662726,0.75274,0.429037,0.247034,0.806423,0.161835,0.144129,0.558839,0.306895,0.611847,0.488787,0.329011,0.911418,0.410182,0.365997,0.663136,0.374248,0.767079,0.429615,0.0534355,0.560043,0.841798,0.982587,0.536288,0.488909,0.255915,0.00981313,0.0631903,0.46617,0.42556,0.999612,0.161384,0.0145759,0.981677,0.121095,0.193184,0.198293,0.480181,0.83937,0.0386447,0.482711,0.214029,0.912097,0.434333,0.0260504,0.872141,0.952355,0.788596,0.95412,0.965274,0.0191543,0.839785,0.949284,0.261414,0.429414,0.221593,0.583779,0.0350298,0.495239,0.300322,0.221663,0.734693,0.399538,0.639731,0.914225,0.234355,0.719137,0.388237,0.676006,0.611606,0.21694,0.920525,0.271143,0.778841,0.06122,0.442094,0.993061,0.146629,0.94735,0.948738,0.694495,0.63719,0.2018,0.696135,0.722888,0.96478,0.348102,0.286767,0.128514,0.895209,0.27155,0.870957,0.536968,0.473892,0.513288,0.432857,0.394411,0.883657,0.382398,0.326019,0.732913,0.510761,0.198578,0.416217,0.692865,0.589839,0.557802,0.428515,0.776264,0.774486,0.0171682,0.319142,0.592373,0.440277,0.672863,0.434746,0.566404,0.00223231,0.566258,0.719356,0.886234,0.810525,0.45568,0.133089,0.692381,0.257437,0.814596,0.774523,0.000665128,0.784569,0.963399,0.711864,0.465888,0.420348,0.000740588,0.012971,0.876623,0.456101,0.180458,0.870846,0.161641,0.74453,0.97655,0.289862,0.883998,0.530468,0.966537,0.17755,0.252792,0.924464,0.599119,0.643062,0.094016,0.605775,0.591948,0.147429,0.0286004,0.958423,0.446142,0.358751,0.931784,0.841193,0.00258231,0.617317,0.860289,0.539291,0.856016,0.484716,0.32412,0.861683,0.00793117,0.946158,0.344917,0.351258,0.0855437,0.284867,0.693092,0.0114412,0.483451,0.0394285,0.940762,0.547392,0.469756,0.292999,0.0845937,0.10094,0.698268,0.251779,0.113903,0.563016,0.313091,0.639208,0.514044,0.909045,0.896188,0.836786,0.159629,0.699734,0.827412,0.194351,0.596501,0.195568,0.989709,0.548954,0.885736,0.713172,0.864619,0.171402,0.0583611,0.459793,0.230098,0.239538,0.350416,0.645596,0.675349,0.905848,0.547542,0.373272,0.19293,0.96984,0.512612,0.783677,0.890314,0.768314,0.69435,0.970445,0.230165,0.360285,0.820626,0.0622771,0.618405,0.405388,0.32661,0.112856,0.910608,0.72678,0.977899,0.478367,0.192037,0.973597,0.457483,0.344,0.262338,0.106969,0.291934,0.604089,0.283887,0.497841,0.7674,0.19176,0.641179,0.623863,0.950189,0.705288,0.92332,0.671485,0.366623,0.455949,0.803323,0.484016,0.378116,0.898133,0.577399,0.693784,0.739181,0.291032,0.547599,0.638102,0.30826,0.0912514,0.853187,0.271468,0.971804,0.9045,0.565428,0.205362,0.72372,0.838344,0.409689,0.717005,0.747916,0.00771815,0.00928342,0.594905,0.334594,0.869913,0.156817,0.735831,0.368839,0.488271,0.280345,0.933582,0.325499,0.969613,0.351753,0.832744,0.472308,0.748315,0.287429,0.613171,0.0573577,0.351946,0.382002,0.617323,0.954948,0.761926,0.468919,0.591233,0.401301,0.913415,0.0547076,0.397952,0.756792,0.953895,0.0292361,0.92418,0.8896,0.289466,0.331592,0.922598,0.644183,0.854723,0.211698,0.663369,0.292374,0.653548,0.991806,0.109173,|0.45498,0.868204,0.66407,0.954232,0.984945,0.630547,0.343852,0.868143,0.935617,0.806592,0.902862,0.857108,0.72168,0.208736,0.894033,0.0619969,0.169097,0.694206,0.948235,0.747444,0.580537,0.765172,0.328784,0.67377,0.242962,0.835628,0.915804,0.759559,0.65199,0.155144,0.987327,0.588356,0.289458,0.275669,0.385548,0.625944,0.36227,0.602376,0.700249,0.578467,0.486317,0.697478,0.477379,0.0659726,0.0615128,0.912162,0.309325,0.460703,0.561098,0.326643,0.948846,0.182872,0.481169,0.615434,0.495444,0.11868,0.71357,0.719876,0.724894,0.529015,0.463141,0.358829,0.122414,0.959297,0.950956,0.62645,0.0575248,0.218751,0.338706,0.116964,0.86084,0.580921,0.444072,0.396386,0.599598,0.799768,0.567063,0.901872,0.293871,0.899822,0.27876,0.4637,0.129216,0.364537,0.222027,0.361092,0.795752,0.254846,0.0530049,0.930807,0.631488,0.0686778,0.678412,0.897999,0.0702903,0.888494,0.303066,0.437207,0.399128,0.903358,0.568232,0.377176,0.310123,0.862229,0.0453894,0.613292,0.827335,0.17181,0.955079,0.83332,0.578863,0.776497,0.62494,0.424087,0.141211,0.646163,0.107905,0.367574,0.0815574,0.810826,0.893754,0.480094,0.394178,0.00102127,0.749424,0.753665,0.61051,0.970841,0.841111,0.0220677,0.0165666,0.987673,0.918898,0.686801,0.855704,0.386371,0.0861972,0.660904,0.851052,0.47432,0.773898,0.361033,0.425589,0.530417,0.721638,0.500524,0.832234,0.899732,0.791556,0.890569,0.879205,0.267269,0.338468,0.931668,0.0254622,0.686556,0.158126,0.158199,0.0386208,0.00106108,0.0965625,0.458842,0.856183,0.426314,0.907318,0.791103,0.299485,0.354553,0.965553,0.843476,0.0789416,0.0873159,0.853118,0.441264,0.889633,0.0377875,0.978917,0.719619,0.868736,0.355157,0.217368,0.246705,0.794237,0.963191,0.832706,0.248824,0.261037,0.797637,0.354122,0.637458,0.278415,0.813147,0.724377,0.37021,0.916849,0.854485,0.108002,0.365897,0.431325,0.787635,0.0847301,0.609532,0.809453,0.0712214,0.995014,0.82546,0.629276,0.713613,0.27886,0.737572,0.700539,0.621276,0.957473,0.889421,0.790216,0.612688,0.610418,0.686466,0.815513,0.773388,0.980488,0.820903,0.441234,0.0199932,0.208028,0.425334,0.0512161,0.0123819,0.767265,0.279797,0.508991,0.991759,0.270713,0.82688,0.0288237,0.00679064,0.0760008,0.590488,0.339497,0.347455,0.126704,0.444705,0.722317,0.757991,0.101246,0.0252921,0.415864,0.580777,0.737879,0.634769,0.83699,0.587881,0.8021,0.75694,0.681568,0.500792,0.740469,0.350015,0.533656,0.0470472,0.561506,0.146251,0.943528,0.649555,0.684401,0.731043,0.157357,0.219503,0.710366,0.852898,0.349635,0.421189,0.0845097,0.74175,0.636359,0.944715,0.972193,0.0408862,0.406057,0.59156,0.480482,0.10163,0.262129,0.120018,0.696822,0.382657,0.549809,0.132246,0.525133,0.00141352,0.874047,0.472971,0.525814,0.505909,0.626113,0.397839,0.253842,0.687649,0.992757,0.785709,0.974899,0.413213,0.516042,0.798232,0.958705,0.578159,0.517661,0.620344,0.785984,0.310357,0.822992,0.32666,0.72288,0.943611,0.962975,0.209539,0.0718839,0.748186,0.893743,0.929294,0.0792271,0.996208,0.504071,0.223583,0.728442,0.26522,0.292533,0.0871704,0.161219,0.988189,0.739009,0.566549,0.954168,0.729313,0.843797,0.75316,0.682175,0.330123,0.0558451,0.424679,0.442646,0.491077,0.736542,0.11621,0.491381,0.793505,0.796174,0.984718,0.42792,0.771399,0.940972,0.260861,0.575113,0.822859,0.949895,0.894012,0.841497,0.724591,0.328964,0.843958,0.110084,0.684028,0.369221,0.523826,0.130496,0.474271,0.17042,0.400279,0.274761,0.837488,0.425002,0.057265,0.795731,0.416737,0.959082,0.215461,0.612003,0.759899,0.120179,0.662045,0.154994,0.19681,0.70617,0.906607,0.48988,0.856817,0.432306,0.964313,0.20062,0.305455,0.178029,0.751044,0.93911,0.0721736,0.477285,0.879534,0.322802,0.975915,0.953535,0.612959,0.723675,0.335015,0.638341,0.549234,0.6988,0.246098,0.935728,0.183047,0.971524,0.0739011,0.470886,0.868593,0.385138,0.816595,0.741241,0.0383254,0.313108,0.0118799,0.0629063,0.0614284,0.744067,0.45754,0.576469,0.0756189,0.0961723,0.453396,0.0228412,0.547409,0.949764,0.800693,0.392681,0.597656,0.717402,0.968373,0.138387,0.806774,0.535981,0.6013,0.39294,0.451424,0.29774,0.0717956,0.117455,0.336087,0.69548,0.448351,0.156493,0.128241,0.303795,0.288496,0.136886,0.899572,0.763331,0.389832,0.860834,0.347498,0.791994,0.363341,0.560127,0.853478,0.748797,0.025997,0.226153,0.607715,0.398288,0.749227,0.378675,0.709124,0.457561,0.997135,0.906329,0.49556,0.0601628,0.642118,0.264968,0.866647,0.334068,0.803987,0.815683,0.424213,0.634866,0.0482505,0.0523107,0.787072,0.481984,0.935811,0.986118,0.141423,0.892403,0.451022,0.847029,0.767749,0.55499,0.120228,0.691505,0.00398588,0.644603,0.539331,0.392977,0.856508,0.35443,0.852039,0.220472,0.7099,0.658984,0.847521,0.269397,0.304305,0.730433,0.507061,0.98163,0.0336967,0.112925,0.171383,0.247387,0.75257,0.889083,0.581362,0.638476,0.0774495,0.0701843,0.0365868,0.630124,0.848164,0.302252,0.272428,0.465699,0.443624,0.689441,0.2507,0.0386814,0.186567,0.923072,0.258362,0.366862,0.443213,0.595499,0.494586,0.0142251,0.898463,0.405949,0.337157,0.276037,0.53595,0.77998,0.563862,0.345314,0.747319,0.838726,0.557337,0.687205,0.750851,0.839073,0.756989,0.890802,0.257167,0.13644,0.457626,0.894555,0.461168,0.0606029,0.797243,0.99568,0.317728,0.892416,0.0500613,0.0626161,0.876906,0.308199,0.598332,0.0216244,0.654079,0.316425,0.245425,0.951065,0.583981,0.208205,0.274337,0.380573,0.29657,0.476446,0.187246,0.0972787,0.519418,0.720436,0.836204,0.635054,0.303768,0.0760015,0.250197,0.77273,0.264055,0.550352,0.675714,0.989119,0.0450498,0.0683646,0.586086,0.47424,0.694658,0.251429,0.932705,0.32044,0.0957138,0.150919,0.128282,0.916657,0.34182,0.92802,0.56704,0.0348924,0.254766,0.12016,0.402856,0.459541,0.388118,0.905697,0.481307,0.280757,0.948401,0.510743,0.7086,0.552287,0.963797,0.0441751,0.516857,0.221569,0.565298,0.47996,0.395807,0.704135,0.854562,0.828381,0.921195,0.252293,0.950389,0.680069,0.118305,0.957373,0.304582,0.707112,0.673792,0.373207,0.831042,0.465289,0.137245,0.394174,0.129042,0.748982,0.715816,0.456103,0.303776,0.411572,0.060358,0.309595,0.169566,0.658285,0.203724,0.377922,0.132152,0.603695,0.997097,0.888386,0.155346,0.729775,0.0978569,0.990716,0.246309,0.591874,0.813537,0.111057,0.0972781,0.550569,0.383275,0.296608,0.876069,0.303938,0.758937,0.828936,0.474072,0.562048,0.32754,0.499175,0.0393296,0.742804,0.926955,0.544964,0.131192,0.686095,0.729034,0.340688,0.00771689,0.795231,0.638684,0.603991,0.33592,0.271497,0.851584,0.434303,0.700907,0.532984,0.907265,0.356409,0.0419889,0.715054,0.172663,0.213499,0.667482,0.0726359,0.254593,0.940134,0.867748,0.00575495,0.0563083,0.433657,0.528741,0.79016,0.321788,0.954867,0.79758,0.565874,0.139245,0.865158,0.901909,0.939328,0.187821,0.306894,0.291564,0.263843,0.386702,0.430522,0.172681,0.0330897,0.0324625,0.0414735,0.195542,0.156067,0.584848,0.377445,0.3997,0.597427,0.852632,0.696517,0.367344,0.317078,0.344853,0.939733,0.212128,0.86533,0.068882,0.303321,0.846101,0.692403,0.634531,0.847367,0.0698392,0.276364,0.271926,0.973573,0.864157,0.208596,0.364174,0.864327,0.495255,0.150676,0.0416449,0.657217,0.382443,0.705546,0.594512,0.335337,0.218761,0.506067,0.376308,0.524648,0.588068,0.974154,0.6837,0.334929,0.914427,0.408716,0.818426,0.138907,0.118863,0.0454631,0.350831,0.530491,0.607525,0.467546,0.708441,0.680719,0.446208,0.328582,0.196294,0.965754,0.230596,0.56607,0.0654374,0.437124,0.607842,0.0304077,0.864049,0.613978,0.456199,0.93293,0.0494016,0.133139,0.624399,0.594716,0.852546,0.449042,0.190188,0.975883,0.361486,0.440397,0.717471,0.652856,0.233574,0.330032,0.222288,0.0688591,0.330031,0.346878,0.385072,0.217101,0.950107,0.0721453,0.148019,0.273622,0.0703299,0.500851,0.562371,0.621282,0.263237,0.165949,0.649479,0.956901,0.669489,0.417736,0.649694,0.41205,0.986811,0.178395,0.534471,0.148425,0.759343,0.6748,0.565462,0.0944072,0.0754736,0.311113,0.846713,0.652448,0.249334,0.348932,0.534538,0.541782,0.395886,0.281724,0.393487,0.711846,0.603343,0.465684,0.613642,0.791198,0.883944,0.280479,0.745802,0.802049,0.0969232,0.137603,0.341847,0.242597,0.500754,0.189657,0.273971,0.903342,0.799966,0.748092,0.826504,0.0406458,0.918412,0.971293,0.217195,0.533475,0.122658,0.112901,0.269548,0.206996,0.877775,0.97318,0.692861,0.790127,0.740877,0.455214,0.160111,0.833568,0.854504,0.736922,0.0963596,0.61727,0.271586,0.778295,0.324817,0.0127829,0.787475,0.205493,0.37956,0.164156,0.256417,0.936729,0.683296,0.685488,0.810902,0.125279,0.0499114,0.420803,0.937448,0.0195439,0.480519,0.469012,0.380551,0.776223,0.423685,0.834225,0.781666,0.964614,0.583553,0.753462,0.20168,0.676685,0.140689,0.367561,0.525915,0.297434,0.752422,0.360848,0.67517,0.0556321,0.822648,0.176266,0.109737,0.765427,0.160104,0.230913,0.940556,0.946542,0.545323,0.566933,0.245836,0.992184,0.786823,0.947778,0.413308,0.636735,0.976449,0.720273,0.710808,0.0910312,0.781065,0.105972,0.0110444,0.178419,0.740315,0.255834,0.124997,0.245341,0.925157,0.575681,0.329928,0.749704,0.451343,0.897967,0.224563,0.0618465,0.415219,0.473957,0.385731,0.673104,0.48513,0.910768,0.621656,0.197475,0.894176,0.846868,0.348402,0.879232,0.831228,0.409783,0.757897,0.675437,0.756789,0.982431,0.395805,0.58461,0.959615,0.66862,0.560943,0.28259,0.390572,|0.802957,0.725907,0.0232089,0.211186,0.126997,0.69506,0.283382,0.662479,0.0851438,0.977622,0.614603,0.287819,0.569622,0.877653,0.908445,0.708177,0.235467,0.993521,0.271838,0.113559,0.641913,0.328977,0.972209,0.295079,0.317309,0.0152659,0.547728,0.361327,0.870223,0.575186,0.185067,0.381222,0.665973,0.256124,0.735989,0.142984,0.955173,0.781124,0.476131,0.710108,0.75154,0.162781,0.255174,0.811817,0.0691774,0.255982,0.607179,0.135982,0.994118,0.708797,0.581636,0.166593,0.140815,0.501415,0.315733,0.39556,0.466528,0.755019,0.641977,0.703022,0.836355,0.762683,0.800266,0.195391,0.496587,0.317782,0.521429,0.488069,0.746087,0.345286,0.93914,0.309931,0.85426,0.595297,0.684,0.692738,0.324638,0.465935,0.767629,0.158061,0.834166,0.504247,0.416749,0.574203,0.635991,0.83591,0.202943,0.0752846,0.135357,0.609015,0.0572761,0.763235,0.36825,0.973604,0.817556,0.207984,0.974817,0.433841,0.632063,0.999671,0.214691,0.714182,0.358498,0.178616,0.0465939,0.648242,0.354774,0.105444,0.0729095,0.223172,0.608229,0.25039,0.187395,0.178898,0.549111,0.74362,0.193349,0.451604,0.188877,0.687572,0.200193,0.242643,0.929643,0.515731,0.872774,0.848809,0.0657405,0.107487,0.825545,0.578662,0.573124,0.470298,0.610259,0.512702,0.921498,0.0227137,0.476237,0.122548,0.324865,0.273743,0.734325,0.859451,0.0545647,0.121048,0.435012,0.156439,0.118623,0.0978145,0.29233,0.27358,0.682867,0.527367,0.678694,0.880677,0.590349,0.507968,0.433851,0.682746,0.940172,0.80458,0.75367,0.582906,0.305421,0.661933,0.538815,0.625736,0.618804,0.895242,0.240394,0.284383,0.0731037,0.490087,0.0447134,0.717659,0.163965,0.286361,0.682408,0.374063,0.299944,0.759189,0.935849,0.926989,0.120981,0.895849,0.399194,0.0841017,0.217871,0.34839,0.566146,0.435829,0.196481,0.348515,0.129434,0.960632,0.968216,0.411476,0.808062,0.492858,0.4951,0.236962,0.00287551,0.0244132,0.250342,0.363019,0.733386,0.228773,0.737817,0.98497,0.1939,0.108964,0.470896,0.315974,0.917517,0.000520468,0.208081,0.923964,0.914672,0.00552046,0.34212,0.184304,0.417369,0.612703,0.907233,0.245777,0.466763,0.68178,0.113128,0.595423,0.722009,0.456607,0.527262,0.0568148,0.694675,0.366286,0.590582,0.741672,0.266234,0.000943124,0.655855,0.485725,0.510853,0.654879,0.592166,0.639007,0.952617,0.283401,0.271518,0.201056,0.337641,0.262629,0.72603,0.998012,0.319198,0.878646,0.376565,0.0252317,0.764574,0.921646,0.744093,0.429418,0.366924,0.267457,0.281792,0.256342,0.264251,0.896426,0.53667,0.336204,0.988896,0.795192,0.476133,0.713228,0.483257,0.237732,0.0411087,0.122667,0.378581,0.662969,0.623807,0.586708,0.141817,0.306481,0.715867,0.933064,0.580049,0.0596611,0.664745,0.5402,0.40369,0.00527871,0.490901,0.653262,0.874311,0.38254,0.745294,0.0676706,0.0105355,0.373091,0.753639,0.985868,0.304236,0.833255,0.515569,0.244865,0.141396,0.497763,0.642924,0.212626,0.770553,0.890534,0.0464441,0.698835,0.438478,0.0458162,0.305587,0.463929,0.921428,0.191766,0.542716,0.625148,0.161327,0.673906,0.957835,0.927462,0.905144,0.933253,0.049554,0.565775,0.848264,0.277085,0.722762,0.397764,0.611092,0.87695,0.488717,0.88156,0.707636,0.667309,0.537723,0.220949,0.922172,0.368921,0.142489,0.363459,0.828494,0.785343,0.460922,0.594905,0.244133,0.378806,0.914565,0.0844076,0.993179,0.261137,0.0768284,0.755405,0.562693,0.980071,0.0327146,0.058912,0.721459,0.60172,0.8656,0.670948,0.0878758,0.592058,0.593234,0.0213492,0.653273,0.978619,0.515419,0.259686,0.968239,0.0589184,0.962163,0.965169,0.066792,0.336339,0.729579,0.578689,0.796406,0.83784,0.0634628,0.484962,0.679172,0.618619,0.481126,0.101292,0.0681624,0.598848,0.478851,0.427648,0.932703,0.898388,0.524292,0.403609,0.444704,0.767159,0.237739,0.503599,0.608577,0.566277,0.986959,0.690953,0.662231,0.362467,0.0614465,0.738705,0.128711,0.922269,0.26861,0.703541,0.165437,0.00303531,0.420615,0.163247,0.498154,0.56831,0.926114,0.581886,0.682553,0.126291,0.00623447,0.401279,0.0842838,0.48129,0.383183,0.397374,0.301574,0.924981,0.931238,0.568044,0.827798,0.962553,0.941439,0.579825,0.172287,0.494906,0.883657,0.310266,0.870735,0.00663042,0.166251,0.442609,0.378915,0.921595,0.35921,0.979859,0.849645,0.46459,0.532689,0.697405,0.150287,0.446743,0.140036,0.273538,0.598953,0.52753,0.597345,0.635218,0.535608,0.769797,0.91134,0.938084,0.385143,0.246938,0.660369,0.0898501,0.521854,0.595218,0.316945,0.279223,0.663831,0.238637,0.845369,0.0294606,0.748762,0.739226,0.129072,0.00601763,0.725838,0.00894856,0.401565,0.898668,0.0217187,0.229025,0.452249,0.6187,0.447613,0.17395,0.545148,0.306949,0.586783,0.698774,0.0894647,0.76685,0.867418,0.0487565,0.769478,0.322118,0.793033,0.636887,0.0962359,0.0861738,0.933008,0.121807,0.178961,0.543992,0.134777,0.629134,0.592228,0.317576,0.999693,0.271756,0.642008,0.482996,0.209048,0.0103015,0.0837563,0.527813,0.784559,0.672945,0.441347,0.724583,0.861313,0.376854,0.217259,0.334682,0.5226,0.131849,0.197204,0.945146,0.923193,0.598027,0.823596,0.29533,0.672489,0.0403987,0.699528,0.29663,0.0786327,0.00562781,0.944638,0.432163,0.530764,0.493688,0.77206,0.523081,0.250853,0.401997,0.626832,0.074665,0.401795,0.0544248,0.665023,0.308168,0.784441,0.876688,0.668075,0.330799,0.961839,0.723408,0.724933,0.728562,0.101428,0.603424,0.995162,0.590911,0.340402,0.00846922,0.189745,0.380509,0.23882,0.162119,0.0344904,0.534547,0.963473,0.401982,0.415779,0.642056,0.592793,0.00394326,0.962962,0.517431,0.322737,0.232235,0.0868052,0.295558,0.786493,0.326003,0.22102,0.00825238,0.83473,0.341134,0.168017,0.973397,0.97262,0.594593,0.178838,0.0531315,0.291064,0.479227,0.0345989,0.121798,0.841317,0.641318,0.129297,0.856943,0.218363,0.395198,0.688713,0.83592,0.359194,0.753242,0.548567,0.930563,0.698765,0.470552,0.0517814,0.331718,0.497697,0.197473,0.838537,0.181535,0.00704229,0.152663,0.447717,0.532275,0.82237,0.180579,0.743346,0.135611,0.204522,0.294913,0.874155,0.563923,0.435655,0.14889,0.455046,0.64573,0.957769,0.13674,0.509675,0.900779,0.354544,0.681409,0.261622,0.990882,0.655826,0.754193,0.0980486,0.309011,0.354479,0.826658,0.433393,0.247343,0.202844,0.0292985,0.458421,0.134897,0.599753,0.0275146,0.24544,0.125982,0.539779,0.121314,0.826244,0.780664,0.448283,0.65612,0.703731,0.0582558,0.00120634,0.874763,0.600561,0.562019,0.0755975,0.884964,0.261461,0.228176,0.258156,0.0897666,0.666308,0.719199,0.89317,0.495751,0.833144,0.760167,0.0379164,0.649731,0.430256,0.614936,0.190134,0.847784,0.957001,0.150977,0.996716,0.841198,0.950607,0.393917,0.0909615,0.0530828,0.580698,0.616907,0.0478393,0.0422913,0.822024,0.974659,0.533561,0.0491814,0.502972,0.35623,0.127658,0.195508,0.46902,0.552548,0.490293,0.800264,0.803339,0.878332,0.611185,0.683128,0.550665,0.857633,0.488368,0.920155,0.275309,0.60982,0.187742,0.835257,0.664412,0.220809,0.921395,0.867506,0.292644,0.533143,0.0475177,0.173528,0.801237,0.366212,0.390589,0.694838,0.571496,0.580723,0.596967,0.818677,0.221127,0.0762991,0.589088,0.0680842,0.186177,0.0152221,0.332329,0.914127,0.455035,0.260726,0.0088473,0.125516,0.808832,0.775799,0.65205,0.83965,0.750607,0.31737,0.382572,0.354593,0.325813,0.575653,0.787416,0.849666,0.48438,0.486821,0.0648255,0.186004,0.322646,0.0129084,0.00445557,0.330954,0.962659,0.852192,0.187261,0.219431,0.904519,0.00814432,0.747964,0.609556,0.223507,0.591077,0.84131,0.2098,0.127123,0.887646,0.754071,0.383378,0.162195,0.750454,0.230627,0.589547,0.502584,0.7044,0.00714284,0.301471,0.935407,0.17399,0.85427,0.749762,0.935148,0.53627,0.23777,0.809974,0.472541,0.753981,0.955929,0.330777,0.536504,0.666626,0.131436,0.896763,0.257298,0.512501,0.687813,0.480928,0.929271,0.705962,0.8164,0.876593,0.751603,0.907887,0.200828,0.787026,0.348958,0.885467,0.0624433,0.0843716,0.89515,0.911756,0.821574,0.573953,0.888265,0.153665,0.248698,0.138057,0.85052,0.884826,0.33948,0.203322,0.685337,0.855036,0.0625057,0.123603,0.281335,0.0603554,0.485202,0.951831,0.52883,0.722597,0.164538,0.449887,0.833986,0.929319,0.521652,0.235659,0.494834,0.555387,0.0650685,0.863833,0.541044,0.369888,0.796614,0.260362,0.323595,0.232314,0.698753,0.804501,0.373629,0.0207444,0.958613,0.743244,0.543516,0.269478,0.313642,0.152858,0.523927,0.757293,0.958014,0.516133,0.901259,0.0969477,0.645048,0.204203,0.200444,0.207087,0.812372,0.329423,0.618951,0.890616,0.478911,0.729198,0.33209,0.628844,0.114965,0.878942,0.8383,0.529245,0.287886,0.5163,0.824925,0.555447,0.86737,0.208636,0.211504,0.941361,0.021981,0.637211,0.572553,0.989528,0.896501,0.139481,0.163095,0.111819,0.0958346,0.352631,0.0473135,0.741778,0.330548,0.0364739,0.550621,0.170115,0.368666,0.710471,0.049765,0.459912,0.216296,0.875081,0.730833,0.175851,0.297628,0.838322,0.711797,0.805787,0.0370517,0.6575,0.518839,0.132682,0.392842,0.563731,0.351839,0.534609,0.103256,0.107273,0.670952,0.0342234,0.318012,0.610725,0.642044,0.23282,0.485847,0.429241,0.433769,0.904009,0.622931,0.414218,0.072909,0.272224,0.464616,0.273635,0.104884,0.116485,0.0863483,0.415927,0.88409,0.579897,0.817972,0.547027,0.153115,0.733608,0.377336,0.773551,0.214466,0.798976,0.035857,0.0111752,0.125091,0.264515,0.625367,0.475299,0.684333,0.0040819,0.199014,0.793575,0.884983,0.630353,0.908353,0.672062,0.139383,0.100038,0.815954,0.0332139,0.935878,0.397266,|0.561087,0.650408,0.313987,0.084442,0.123794,0.17813,0.334692,0.108933,0.607504,0.906345,0.410757,0.514303,0.0563699,0.268856,0.41115,0.168766,0.0870945,0.709208,0.876006,0.844096,0.235951,0.695385,0.815578,0.0528998,0.271229,0.506793,0.488024,0.239262,0.684974,0.946071,0.371123,0.170091,0.405483,0.810537,0.450042,0.406961,0.0186069,0.03395,0.654819,0.00479645,0.103414,0.684575,0.116276,0.426125,0.448831,0.774293,0.363828,0.959274,0.65599,0.648408,0.25672,0.686941,0.463549,0.781541,0.0182903,0.950789,0.057018,0.462275,0.543311,0.496077,0.18111,0.758005,0.193685,0.409184,0.32894,0.702278,0.877383,0.910627,0.790089,0.0112306,0.360015,0.96485,0.269565,0.671783,0.517196,0.80933,0.794501,0.309025,0.428681,0.42344,0.639547,0.45474,0.349674,0.646015,0.36458,0.291095,0.677292,0.95665,0.457269,0.738431,0.361877,0.116918,0.352419,0.138666,0.153857,0.738173,0.52837,0.716555,0.833116,0.103457,0.142299,0.0950881,0.453722,0.154937,0.263316,0.322204,0.0529612,0.101733,0.734917,0.708296,0.0147285,0.419912,0.724003,0.605025,0.636785,0.705936,0.768046,0.543713,0.775393,0.144709,0.79709,0.835691,0.192741,0.34426,0.391449,0.2646,0.897368,0.0945367,0.448126,0.16754,0.715477,0.841342,0.714824,0.356758,0.45525,0.424969,0.727582,0.83976,0.677176,0.251394,0.506555,0.78591,0.174622,0.903985,0.45845,0.000630081,0.189976,0.460469,0.813936,0.0746629,0.482761,0.28259,0.241013,0.82369,0.857021,0.888489,0.748853,0.737545,0.0505507,0.73655,0.799576,0.0844238,0.883778,0.598633,0.743568,0.276663,0.100847,0.49047,0.983599,0.524171,0.769813,0.732967,0.228852,0.612396,0.810227,0.988598,0.182571,0.837233,0.376517,0.965071,0.737645,0.157499,0.259341,0.6529,0.0325356,0.425496,0.253492,0.919317,0.0890221,0.14318,0.928791,0.218083,0.112234,0.892953,0.158456,0.627321,0.854787,0.0670585,0.80263,0.108012,0.780893,0.0892206,0.874194,0.499248,0.931395,0.311374,0.499639,0.328663,0.162302,0.274473,0.632464,0.642476,0.790553,0.950808,0.396052,0.962478,0.892354,0.339857,0.43296,0.30454,0.636527,0.590607,0.57726,0.300433,0.948419,0.0305206,0.468543,0.692889,0.299887,0.532458,0.553197,0.566,0.639549,0.781146,0.49257,0.681318,0.157383,0.654839,0.785328,0.432852,0.100996,0.487165,0.763487,0.27145,0.0966109,0.774203,0.928026,0.405984,0.835796,0.872896,0.963399,0.326793,0.737445,0.0622177,0.949741,0.263864,0.988554,0.438607,0.242234,0.384166,0.617135,0.386703,0.0793024,0.0213748,0.521661,0.703955,0.894711,0.0273495,0.645964,0.203278,0.945088,0.306103,0.174243,0.379216,0.890032,0.532331,0.845571,0.633501,0.258989,0.728628,0.300747,0.964899,0.0668246,0.0851628,0.320979,0.433145,0.429983,0.811527,0.160824,0.953686,0.934417,0.377989,0.564414,0.184766,0.521487,0.627504,0.431667,0.419265,0.716264,0.325791,0.655875,0.314311,0.631513,0.455885,0.415094,0.45579,0.492495,0.393127,0.775542,0.96227,0.0645223,0.163662,0.880194,0.00209093,0.0404987,0.682661,0.329254,0.975651,0.633026,0.248874,0.644695,0.391795,0.148125,0.995746,0.385606,0.449528,0.370404,0.393587,0.37886,0.639736,0.794259,0.0621791,0.918733,0.437268,0.841783,0.215461,0.670322,0.418832,0.619341,0.615768,0.296189,0.624975,0.245856,0.687276,0.00237542,0.632361,0.840128,0.904457,0.399393,0.260231,0.810885,0.854298,0.205398,0.00372547,0.335621,0.184264,0.537138,0.457185,0.0813136,0.0155591,0.327036,0.848194,0.869621,0.508299,0.238283,0.463269,0.431594,0.925127,0.577583,0.216755,0.792787,0.913831,0.610145,0.909104,0.098552,0.874373,0.602,0.379462,0.757886,0.0918137,0.334585,0.874164,0.982518,0.415448,0.816958,0.593716,0.4509,0.132854,0.433808,0.351788,0.326663,0.58225,0.353567,0.0672694,0.204447,0.842199,0.379785,0.254316,0.331856,0.302622,0.785136,0.160101,0.496264,0.106398,0.408324,0.118443,0.437624,0.13235,0.37785,0.30233,0.686253,0.742246,0.584346,0.56021,0.43916,0.663464,0.292649,0.00183696,0.72135,0.809907,0.475654,0.100606,0.69342,0.632138,0.0560037,0.464277,0.106122,0.443221,0.287184,0.95296,0.208663,0.0635656,0.753004,0.952281,0.689875,0.0724499,0.832624,0.120591,0.869069,0.441826,0.835155,0.0551205,0.978468,0.45635,0.913256,0.884076,0.295265,0.0936988,0.0649391,0.548685,0.487673,0.478838,0.917853,0.904591,0.0419158,0.807658,0.953555,0.385991,0.377337,0.512138,0.797575,0.712281,0.768738,0.887447,0.982336,0.254353,0.688877,0.513817,0.0103666,0.540616,0.775034,0.701215,0.0858524,0.90957,0.0315572,0.0757789,0.0510069,0.759411,0.977289,0.52601,0.134614,0.296979,0.612352,0.730215,0.170698,0.256441,0.0448194,0.384948,0.0670528,0.386904,0.780873,0.695023,0.484498,0.148459,0.149226,0.280681,0.653027,0.647394,0.241523,0.491154,0.126969,0.146923,0.3012,0.644891,0.4818,0.802347,0.668329,0.630392,0.816019,0.804748,0.427927,0.350293,0.398533,0.228247,0.653561,0.702189,0.000627995,0.630166,0.127486,0.479928,0.536752,0.868981,0.120958,0.462077,0.0733477,0.726622,0.859362,0.923741,0.415907,0.712477,0.148705,0.494403,0.652189,0.0676004,0.632648,0.59408,0.809869,0.473468,0.541874,0.33723,0.825506,0.014424,0.574654,0.31251,0.314627,0.868605,0.117864,0.889752,0.17898,0.234925,0.283409,0.433388,0.0507368,0.343918,0.452094,0.023198,0.365153,0.960969,0.740388,0.093285,0.338278,0.540018,0.0687767,0.39016,0.45479,0.224434,0.135683,0.252572,0.131164,0.692402,0.146434,0.94663,0.893695,0.161986,0.289368,0.712564,0.663918,0.082165,0.93982,0.893347,0.639751,0.795019,0.872343,0.379597,0.326021,0.870493,0.231585,0.088771,0.180893,0.807554,0.391758,0.610796,0.317191,0.721229,0.708209,0.704385,0.284315,0.179406,0.387621,0.269252,0.472941,0.0868189,0.448417,0.188547,0.438727,0.718677,0.633234,0.490366,0.754234,0.0456427,0.110596,0.518584,0.983302,0.0262316,0.174454,0.58848,0.0559344,0.959948,0.648134,0.503087,0.0838076,0.845247,0.055226,0.205685,0.0913159,0.57082,0.0870081,0.0221683,0.367013,0.964497,0.931886,0.195898,0.905372,0.941382,0.339999,0.438143,0.813415,0.462861,0.212199,0.392285,0.228127,0.535999,0.841579,0.468632,0.648953,0.940883,0.263364,0.372053,0.483313,0.341299,0.63855,0.647896,0.0497723,0.74814,0.734436,0.724985,0.507332,0.603474,0.534969,0.774529,0.485232,0.684109,0.302485,0.694277,0.579942,0.408922,0.708191,0.642747,0.333042,0.437854,0.975568,0.708068,0.39396,0.764098,0.32407,0.43773,0.753456,0.271583,0.982486,0.452223,0.720957,0.822281,0.324518,0.264362,0.902673,0.458292,0.831266,0.852449,0.322717,0.130941,0.936443,0.949856,0.689354,0.599197,0.190364,0.414714,0.270206,0.838382,0.946481,0.909383,0.172435,0.587063,0.75548,0.130175,0.679422,0.0811592,0.450993,0.512274,0.149172,0.945356,0.595671,0.0904332,0.346096,0.952569,0.0940933,0.11562,0.281587,0.89034,0.522906,0.427286,0.474444,0.349386,0.683944,0.880498,0.481467,0.109119,0.689252,0.767108,0.637802,0.504225,0.940774,0.641838,0.574757,0.159124,0.706694,0.53781,0.575713,0.164552,0.722336,0.289856,0.918576,0.269304,0.807385,0.5687,0.802549,0.791338,0.122034,0.00218874,0.33503,0.0407977,0.436823,0.0499718,0.726213,0.455318,0.0293031,0.297219,0.114202,0.392259,0.248715,0.654907,0.264618,0.131183,0.994567,0.385163,0.25765,0.481938,0.150115,0.402965,0.766458,0.539569,0.83115,0.770773,0.153614,0.578652,0.400393,0.0429342,0.454857,0.441264,0.950199,0.541235,0.868985,0.544348,0.433829,0.51948,0.285519,0.922878,0.495787,0.571479,0.825177,0.406647,0.955766,0.588063,0.0525697,0.548849,0.789806,0.693616,0.985867,0.685963,0.368962,0.973122,0.749269,0.460267,0.818909,0.517061,0.533463,0.505067,0.570587,0.258986,0.840052,0.622945,0.281913,0.125449,0.506644,0.738594,0.659147,0.764261,0.35775,0.774899,0.276394,0.733982,0.952656,0.55403,0.307089,0.300731,0.647559,0.900313,0.450627,0.812541,0.354342,0.045819,0.509163,0.104015,0.156614,0.100736,0.753209,0.660698,0.545326,0.896239,0.217421,0.0592333,0.524633,0.076272,0.294405,0.513256,0.366654,0.0538957,0.889019,0.500203,0.696958,0.889298,0.538534,0.593196,0.0588493,0.605503,0.58659,0.160366,0.392594,0.608458,0.189262,0.376355,0.999694,0.531143,0.544787,0.84436,0.442553,0.0489794,0.905511,0.656788,0.791651,0.89531,0.246796,0.0491799,0.64454,0.792624,0.57163,0.146173,0.00322241,0.466485,0.399741,0.582573,0.660984,0.958195,0.235611,0.740314,0.995234,0.0558093,0.886214,0.284439,0.810401,0.888834,0.126945,0.0559158,0.827487,0.774124,0.196528,0.279031,0.199398,0.536857,0.0418653,0.878882,0.658353,0.381003,0.775546,0.0865735,0.373073,0.195333,0.517126,0.217775,0.0394647,0.25238,0.545729,0.029255,0.276505,0.352883,0.528686,0.639163,0.201774,0.0996315,0.7778,0.71259,0.0665784,0.857002,0.840827,0.727692,0.627273,0.380299,0.835474,0.82267,0.554633,0.169769,0.543843,0.329699,0.516299,0.905688,0.0109245,0.447446,0.990615,0.997712,0.544756,0.864912,0.34258,0.615629,0.900385,0.70881,0.259908,0.653269,0.526539,0.393482,0.324527,0.242691,0.325791,0.778018,0.562481,0.297104,0.009278,0.922272,0.326423,0.242033,0.239217,0.661717,0.690221,0.394509,0.749434,0.653849,0.690098,0.762407,0.912538,0.804229,0.666089,0.33968,0.401377,0.787939,0.763354,0.964606,0.138716,0.0421813,0.826057,0.353267,0.423705,0.502946,0.584366,0.390768,0.182962,0.681367,0.736521,0.374686,0.950737,0.793381,0.90153,0.110082,0.62916,0.587911,0.961458,0.374767,0.518323,0.902808,0.995655,0.201812,0.987574,0.467989,|0.817053,0.568681,0.865182,0.793576,0.276638,0.694149,0.283613,0.74668,0.719738,0.247166,0.0806131,0.137794,0.336707,0.523935,0.616967,0.170877,0.88358,0.139279,0.370849,0.634672,0.114869,0.774727,0.178743,0.293394,0.924409,0.396243,0.289298,0.519864,0.539523,0.355349,0.317505,0.203014,0.21102,0.51426,0.155893,0.0305678,0.168232,0.413206,0.440367,0.151299,0.988782,0.125721,0.728667,0.00344348,0.88513,0.0624079,0.317091,0.996078,0.164051,0.492257,0.76918,0.0102493,0.536526,0.911608,0.873061,0.098538,0.0823843,0.421661,0.366406,0.966096,0.898481,0.285488,0.998509,0.468199,0.598328,0.508425,0.737253,0.846507,0.304558,0.296605,0.682213,0.804522,0.95493,0.000861704,0.0252209,0.770603,0.333504,0.7217,0.0496178,0.452242,0.898775,0.170601,0.772002,0.0676994,0.312869,0.691432,0.0280018,0.711828,0.0669966,0.308542,0.65232,0.0203642,0.219865,0.986654,0.361034,0.0412713,0.555403,0.242825,0.27233,0.544613,0.680329,0.57965,0.0885704,0.579749,0.816024,0.794689,0.705674,0.0933185,0.153481,0.878314,0.563302,0.756817,0.896373,0.766584,0.603132,0.423801,0.594166,0.448784,0.813999,0.415909,0.388175,0.451239,0.36152,0.257901,0.553746,0.677663,0.598387,0.252659,0.666453,0.301225,0.298902,0.819965,0.195888,0.207644,0.614231,0.849436,0.331343,0.637269,0.609682,0.814602,0.754583,0.19136,0.0225393,0.799845,0.760254,0.0972729,0.207309,0.347433,0.551429,0.437812,0.693107,0.608051,0.794546,0.345287,0.870375,0.0898648,0.456806,0.246726,0.408531,0.745497,0.00843883,0.225249,0.0841534,0.897662,0.352492,0.0479934,0.786616,0.0654959,0.860501,0.294935,0.992065,0.538126,0.422459,0.0340514,0.971043,0.942953,0.428763,0.837041,0.78536,0.344841,0.909243,0.240139,0.889266,0.944605,0.692366,0.686295,0.906387,0.628826,0.527249,0.540776,0.916932,0.785855,0.808731,0.145967,0.809591,0.287743,0.34138,0.175452,0.680306,0.459925,0.508851,0.436035,0.586692,0.822146,0.485131,0.288888,0.943651,0.0219583,0.717608,0.350863,0.424809,0.177109,0.641221,0.229125,0.0916874,0.0141459,0.63557,0.485228,0.970272,0.802104,0.130403,0.118093,0.95706,0.466184,0.683318,0.0368559,0.171387,0.41537,0.265266,0.310918,0.541626,0.38546,0.225015,0.248327,0.561872,0.115373,0.533028,0.540277,0.531792,0.27492,0.89574,0.865391,0.0312709,0.505138,0.450713,0.878647,0.43704,0.119615,0.850964,0.403218,0.399759,0.860085,0.701669,0.557268,0.0885201,0.161494,0.719399,0.98375,0.842568,0.982915,0.241035,0.157248,0.812894,0.123132,0.174464,0.211058,0.688265,0.768231,0.292702,0.935074,0.47739,0.30521,0.295264,0.813902,0.133793,0.731795,0.702712,0.279406,0.421945,0.0403296,0.965666,0.218826,0.998246,0.754347,0.120973,0.935141,0.633107,0.878555,0.483825,0.0083791,0.826276,0.151828,0.650236,0.352727,0.681561,0.309029,0.254306,0.279488,0.203779,0.929396,0.893995,0.977919,0.316947,0.926795,0.729491,0.0801851,0.0919823,0.222124,0.785813,0.333278,0.197837,0.380469,0.156569,0.799069,0.443242,0.97708,0.381214,0.413265,0.833705,0.104961,0.641838,0.943691,0.511337,0.79153,0.143741,0.347983,0.5873,0.651267,0.710675,0.639753,0.164283,0.817493,0.915819,0.0183491,0.465562,0.0775009,0.273325,0.618962,0.401812,0.617684,0.632625,0.700844,0.438693,0.134411,0.0133833,0.83007,0.573635,0.128837,0.547321,0.556571,0.775897,0.639379,0.975227,0.705954,0.559286,0.250717,0.781273,0.366101,0.952627,0.128499,0.338526,0.62203,0.469262,0.175172,0.626563,0.154234,0.307051,0.761583,0.372497,0.925271,0.999164,0.92477,0.641698,0.272296,0.398652,0.971116,0.823956,0.369531,0.369204,0.852403,0.369512,0.412138,0.8642,0.0467079,0.552403,0.787838,0.17205,0.910977,0.813409,0.904496,0.740074,0.116576,0.0288682,0.810905,0.312627,0.131134,0.149365,0.101157,0.905637,0.18321,0.54705,0.527086,0.830821,0.290299,0.398001,0.666487,0.732032,0.693637,0.639754,0.979098,0.0238396,0.00990075,0.748107,0.765978,0.870617,0.450455,0.152979,0.417993,0.858213,0.533363,0.743158,0.99828,0.803469,0.499156,0.805122,0.0528601,0.283358,0.524757,0.911304,0.72632,0.435673,0.219828,0.254469,0.155152,0.323896,0.961003,0.608146,0.869759,0.904043,0.0624507,0.617053,0.573289,0.0489611,0.802185,0.99789,0.488693,0.754717,0.622432,0.878097,0.502617,0.693665,0.959312,0.173202,0.198943,0.0126715,0.265304,0.487447,0.974028,0.826199,0.134796,0.77571,0.432348,0.0306414,0.168729,0.267117,0.677495,0.0871255,0.0492103,0.0624412,0.0360228,0.533919,0.999313,0.884559,0.351916,0.518359,0.041685,0.539317,0.147981,0.0268505,0.243423,0.959181,0.500756,0.439304,0.492464,0.616953,0.216171,0.753034,0.0221097,0.820181,0.76736,0.761334,0.83011,0.463147,0.797781,0.549934,0.754121,0.237759,0.30505,0.420558,0.95249,0.964284,0.451079,0.953387,0.513463,0.63228,0.668796,0.0762706,0.0708246,0.995983,0.245981,0.458861,0.435204,0.336354,0.203184,0.840476,0.100327,0.349739,0.84154,0.385278,0.756543,0.0283642,0.302406,0.635668,0.809829,0.546927,0.0732523,0.732074,0.183382,0.00912213,0.709647,0.107686,0.216428,0.551628,0.886215,0.14728,0.872918,0.663548,0.0957347,0.914871,0.268568,0.475588,0.536333,0.943326,0.523098,0.816817,0.688357,0.641059,0.420991,0.723831,0.331567,0.0649074,0.263237,0.253894,0.155618,0.567754,0.0243771,0.305862,0.367066,0.342138,0.23022,0.796016,0.0189673,0.67697,0.438216,0.940571,0.834054,0.780214,0.546304,0.00817353,0.360032,0.509247,0.821281,0.968649,0.878999,0.124532,0.996931,0.34289,0.508271,0.535452,0.803011,0.461509,0.9629,0.461354,0.213119,0.129139,0.306049,0.903076,0.849616,0.98856,0.492334,0.426707,0.73325,0.0132097,0.798494,0.566113,0.351976,0.441932,0.605512,0.837963,0.572989,0.680203,0.108258,0.221066,0.74944,0.3435,0.478115,0.414705,0.170586,0.089203,0.271953,0.787809,0.275135,0.612624,0.20184,0.32428,0.172062,0.620975,0.456985,0.346739,0.911693,0.626382,0.296761,0.327294,0.708119,0.359457,0.112567,0.742684,0.175322,0.346097,0.107708,0.391012,0.373778,0.193524,0.662465,0.77779,0.0419993,0.0814174,0.720799,0.770893,0.103556,0.240669,0.722194,0.966669,0.920048,0.711189,0.812948,0.00336248,0.826546,0.10305,0.307548,0.373061,0.306368,0.316906,0.107148,0.766419,0.312122,0.512137,0.786593,0.388885,0.367978,0.431886,0.843941,0.642542,0.937577,0.77582,0.655001,0.54915,0.301492,0.0624371,0.313032,0.955102,0.934597,0.923433,0.262371,0.32142,0.799836,0.168476,0.863725,0.969996,0.237879,0.409275,0.573675,0.674079,0.636852,0.152576,0.463901,0.214326,0.803357,0.379942,0.782802,0.0172441,0.901619,0.434794,0.421389,0.95379,0.755061,0.590869,0.108337,0.855241,0.937905,0.00183141,0.940797,0.706983,0.0905457,0.744641,0.688969,0.93962,0.289254,0.725168,0.274287,0.209488,0.679118,0.869574,0.126025,0.843205,0.590013,0.759731,0.386993,0.764863,0.706826,0.62957,0.389583,0.41091,0.816264,0.594056,0.252043,0.884569,0.800372,0.813525,0.768419,0.727188,0.924153,0.487068,0.912601,0.230599,0.0759643,0.148382,0.681764,0.217955,0.00545311,0.562066,0.471593,0.73969,0.866466,0.434102,0.776917,0.780319,0.406634,0.226577,0.239212,0.52685,0.540685,0.253955,0.261008,0.704298,0.42749,0.488837,0.322603,0.817148,0.478521,0.700147,0.465925,0.120606,0.771672,0.356366,0.714925,0.705379,0.913138,0.382231,0.57613,0.719378,0.608277,0.274449,0.0244136,0.790474,0.626762,0.12228,0.684664,0.898509,0.449035,0.304982,0.919377,0.206374,0.859279,0.753936,0.388277,0.367819,0.563138,0.431127,0.508004,0.0862557,0.38129,0.119096,0.00824094,0.587167,0.61661,0.403882,0.0931233,0.395113,0.135093,0.0788549,0.0533223,0.62542,0.950405,0.827194,0.810125,0.748579,0.925899,0.686514,0.86778,0.0393815,0.824321,0.371386,0.279279,0.644711,0.600709,0.28559,0.296631,0.897384,0.267839,0.97341,0.825101,0.251665,0.330222,0.215765,0.139155,0.668284,0.367349,0.121159,0.869834,0.90007,0.693471,0.878554,0.0675606,0.875162,0.589322,0.351782,0.677697,0.265277,0.934608,0.725547,0.189001,0.0308883,0.287032,0.0594228,0.0111036,0.64342,0.845335,0.014939,0.215072,0.955449,0.560568,0.192736,0.450323,0.870091,0.730873,0.26134,0.873546,0.739936,0.0986592,0.0701542,0.093221,0.193106,0.502146,0.00710905,0.836271,0.207259,0.460409,0.0378472,0.723323,0.982873,0.365155,0.714036,0.447451,0.736284,0.48141,0.913812,0.875672,0.0155132,0.42615,0.562366,0.988706,0.808832,0.0655992,0.497873,0.80493,0.612346,0.144592,0.924568,0.998573,0.989073,0.195606,0.244561,0.952537,0.545806,0.747894,0.752149,0.0721496,0.185595,0.675484,0.286135,0.558846,0.29499,0.415843,0.97783,0.23567,0.906557,0.0832915,0.584781,0.102394,0.56218,0.609444,0.21753,0.00387383,0.792419,0.523329,0.129374,0.498134,0.529247,0.0339913,0.184782,0.052937,0.658689,0.444503,0.521196,0.133148,0.426656,0.088469,0.608442,0.971524,0.891862,0.953263,0.245362,0.178115,0.339335,0.91942,0.354061,0.150871,0.799567,0.0105058,0.597649,0.842066,0.704809,0.0353549,0.237214,0.370886,0.92498,0.979997,0.156438,0.291761,0.61828,0.899635,0.660786,0.376614,0.993717,0.690451,0.625117,0.362025,0.634666,0.459853,0.318256,0.347595,0.238393,0.286614,0.704276,0.225082,0.949375,0.481375,0.181573,0.0479366,0.545431,0.444263,0.351839,0.35714,0.781396,0.499291,0.985313,0.319695,0.509795,0.383478,0.448851,0.6538,0.247055,0.294919,0.963667,0.383951,0.639802,0.211398,0.95604,0.469851,0.469014,0.126575,0.987831,0.0121132,0.737239,0.686565,0.131102,0.825971,0.518694,0.193204,|0.282481,0.484025,0.229295,0.381806,0.609451,0.149794,0.993924,0.15067,0.160137,0.16457,0.672251,0.439385,0.960152,0.14587,0.288135,0.434901,0.281087,0.328487,0.47791,0.344987,0.454859,0.646564,0.0813056,0.22693,0.695643,0.551086,0.968494,0.0219082,0.71104,0.43439,0.224278,0.608134,0.147353,0.233812,0.662399,0.408897,0.137934,0.329226,0.299304,0.311733,0.0610516,0.522182,0.604351,0.27011,0.928501,0.396756,0.283427,0.251013,0.367022,0.124767,0.952639,0.0171008,0.843462,0.532794,0.823003,0.923233,0.901107,0.109929,0.0871477,0.0867894,0.0765026,0.468157,0.984623,0.0198988,0.059957,0.0897179,0.140306,0.891575,0.30783,0.600217,0.257361,0.892911,0.452208,0.424922,0.122388,0.0790352,0.381729,0.761741,0.231887,0.249388,0.638203,0.0575969,0.882116,0.175863,0.925072,0.687504,0.796979,0.861121,0.904448,0.129798,0.613465,0.955496,0.10025,0.202745,0.130133,0.429481,0.78994,0.082364,0.286533,0.615772,0.942907,0.228568,0.557647,0.143213,0.017132,0.702951,0.52506,0.0241697,0.32693,0.874892,0.658696,0.36385,0.650936,0.173662,0.217921,0.537986,0.752995,0.992019,0.810359,0.344488,0.280484,0.178624,0.976441,0.300752,0.704989,0.316213,0.955149,0.561653,0.868701,0.948113,0.75645,0.220498,0.575409,0.757091,0.454786,0.751158,0.0929644,0.114456,0.24719,0.532337,0.329272,0.37856,0.574999,0.669493,0.937879,0.277301,0.325838,0.296429,0.0901703,0.0656539,0.0225,0.367453,0.033544,0.778084,0.717142,0.311657,0.180057,0.90074,0.140812,0.334683,0.524686,0.0146547,0.092539,0.338478,0.260665,0.739828,0.999691,0.806187,0.757579,0.991814,0.912119,0.734167,0.806255,0.886552,0.819962,0.128514,0.343678,0.912034,0.961488,0.233347,0.644997,0.550863,0.207049,0.28456,0.840311,0.503904,0.227861,0.746861,0.817717,0.915575,0.672015,0.532671,0.488465,0.464507,0.0284475,0.322126,0.639128,0.612267,0.984824,0.122326,0.663316,0.415353,0.0662887,0.897884,0.053305,0.754097,0.158004,0.0532691,0.155105,0.507582,0.608027,0.338624,0.616129,0.623029,0.268324,0.734275,0.29777,0.736634,0.109738,0.273362,0.910337,0.709305,0.948227,0.602446,0.312166,0.294548,0.85801,0.464676,0.268931,0.251817,0.700601,0.342462,0.297761,0.994668,0.196801,0.305604,0.95122,0.953771,0.539073,0.0811887,0.0150142,0.138893,0.516308,0.814554,0.537693,0.987195,0.647575,0.221848,0.508584,0.994317,0.195766,0.917814,0.526608,0.207302,0.215389,0.729403,0.427509,0.628348,0.602568,0.0726928,0.290096,0.898211,0.489515,0.248377,0.290292,0.605619,0.24931,0.588222,0.19523,0.705169,0.870336,0.210873,0.955073,0.216747,0.873901,0.808517,0.201244,0.519915,0.130437,0.879916,0.372368,0.826789,0.622959,0.777763,0.544909,0.543455,0.951323,0.273144,0.0252008,0.115787,0.191312,0.608763,0.0381272,0.50939,0.559618,0.042626,0.691967,0.133133,0.402937,0.193359,0.476147,0.38682,0.249821,0.888416,0.604379,0.863116,0.294136,0.587723,0.928889,0.521092,0.612633,0.486943,0.602645,0.797184,0.543582,0.21295,0.39284,0.692663,0.0985862,0.448775,0.0197154,0.595001,0.245024,0.121272,0.281806,0.350259,0.265571,0.907384,0.894439,0.580452,0.170876,0.776313,0.00501221,0.75033,0.868004,0.44193,0.259916,0.14232,0.404001,0.861139,0.0272279,0.60398,0.546102,0.28485,0.0762599,0.793976,0.405832,0.228136,0.148735,0.893144,0.158585,0.397767,0.262879,0.18205,0.812872,0.156895,0.101759,0.662872,0.476998,0.857584,0.311119,0.869555,0.919068,0.679832,0.901513,0.721109,0.337559,0.398227,0.156288,0.374169,0.762128,0.669182,0.474211,0.769945,0.409439,0.319586,0.908148,0.504445,0.323245,0.144918,0.137545,0.497637,0.914017,0.312253,0.398201,0.721012,0.287601,0.948129,0.703684,0.683988,0.91842,0.00495255,0.584027,0.809535,0.905092,0.918397,0.446909,0.00723648,0.406887,0.719337,0.439856,0.506985,0.589328,0.673847,0.0549477,0.454156,0.55372,0.297927,0.0518044,0.100289,0.250748,0.684816,0.127009,0.67451,0.721211,0.0338084,0.0245712,0.952676,0.208512,0.0607918,0.367537,0.544515,0.561608,0.229875,0.812657,0.794878,0.804889,0.804814,0.271521,0.731457,0.660074,0.790874,0.875155,0.757421,0.142059,0.265893,0.601344,0.611352,0.359516,0.364798,0.725906,0.0568115,0.499453,0.248394,0.289857,0.829332,0.473156,0.020391,0.636512,0.88242,0.737351,0.179909,0.300673,0.484248,0.562929,0.0316782,0.00162756,0.247692,0.581188,0.289758,0.770951,0.836997,0.145429,0.280716,0.159224,0.326622,0.955968,0.243855,0.301735,0.130981,0.238773,0.514498,0.837469,0.966955,0.680399,0.335488,0.390503,0.982282,0.782468,0.0510453,0.085256,0.830004,0.332272,0.359111,0.484402,0.470986,0.624385,0.825683,0.179331,0.0351655,0.832063,0.275951,0.909007,0.222263,0.225914,0.0324771,0.652854,0.103335,0.588892,0.943639,0.522122,0.804503,0.152354,0.357623,0.618182,0.701153,0.732579,0.73288,0.688284,0.911651,0.143456,0.978618,0.451468,0.624404,0.794257,0.789024,0.13072,0.778263,0.402843,0.318362,0.506895,0.911965,0.866062,0.112509,0.252777,0.261263,0.245345,0.0401424,0.497881,0.925095,0.498421,0.0413751,0.219553,0.434579,0.214694,0.686257,0.632271,0.626732,0.765572,0.929964,0.880056,0.232415,0.746274,0.959784,0.661369,0.844733,0.168223,0.78445,0.147047,0.434462,0.0539539,0.927626,0.162737,0.883434,0.098581,0.802302,0.712399,0.0751421,0.854382,0.724863,0.0316688,0.285191,0.638473,0.576412,0.0380238,0.391377,0.257829,0.94438,0.791211,0.706277,0.698167,0.0847821,0.535323,0.0184875,0.674374,0.946056,0.53477,0.398725,0.366681,0.514726,0.541439,0.0730993,0.0672694,0.0856749,0.561758,0.552776,0.315479,0.873821,0.614587,0.765148,0.296702,0.658717,0.305116,0.877553,0.642944,0.673246,0.415013,0.118817,0.310065,0.302712,0.758949,0.708078,0.300848,0.532209,0.0100783,0.80838,0.363446,0.587149,0.328122,0.538475,0.379024,0.713379,0.711541,0.168639,0.357402,0.243388,0.704917,0.373118,0.750818,0.0436808,0.440019,0.862502,0.453206,0.574541,0.756346,0.0536822,0.111641,0.354409,0.0647137,0.453919,0.939438,0.183821,0.965678,0.728784,0.543704,0.328787,0.770485,0.803029,0.476957,0.188646,0.919741,0.995149,0.058812,0.484765,0.296122,0.0934276,0.183766,0.787295,0.828671,0.909418,0.839302,0.752152,0.0683084,0.211951,0.818389,0.206583,0.110314,0.21338,0.604576,0.354971,0.103183,0.867668,0.385032,0.955192,0.155566,0.66484,0.677637,0.170561,0.433413,0.574814,0.235961,0.658883,0.689942,0.293395,0.152083,0.0164726,0.840494,0.998112,0.918529,0.433191,0.557538,0.423978,0.0284898,0.537802,0.525015,0.668703,0.12341,0.137809,0.264145,0.775101,0.203029,0.500406,0.366761,0.0489748,0.543151,0.190525,0.758959,0.740364,0.757014,0.0945766,0.489759,0.766266,0.237998,0.165031,0.159039,0.890174,0.523157,0.754257,0.407019,0.708456,0.416418,0.230344,0.91096,0.326734,0.713069,0.971068,0.0897017,0.612143,0.467695,0.444157,0.44698,0.108455,0.779752,0.919761,0.883185,0.697385,0.611967,0.92786,0.135009,0.120614,0.87687,0.939758,0.645338,0.185733,0.907249,0.772617,0.415214,0.550657,0.0658174,0.974604,0.154655,0.578433,0.154683,0.861328,0.118967,0.539495,0.0924064,0.776214,0.376815,0.615101,0.0076713,0.97207,0.571936,0.787297,0.799644,0.0351696,0.922005,0.0334833,0.455417,0.840884,0.070595,0.702947,0.611066,0.862263,0.164175,0.175058,0.971525,0.824725,0.438537,0.430051,0.207436,0.845741,0.497675,0.417293,0.843805,0.691507,0.590269,0.427453,0.570509,0.0631491,0.493678,0.306135,0.434722,0.960928,0.0907931,0.679379,0.335771,0.53463,0.292728,0.57109,0.764481,0.33521,0.0881733,0.236852,0.217614,0.26209,0.479391,0.63602,0.388889,0.531043,0.48368,0.786217,0.611802,0.0846074,0.588298,0.62868,0.977117,0.162673,0.00437087,0.414625,0.498797,0.169438,0.666875,0.395495,0.12687,0.345324,0.58179,0.208072,0.930406,0.544035,0.654969,0.08069,0.824025,0.141104,0.817345,0.0145945,0.304123,0.467575,0.499816,0.571048,0.45908,0.787317,0.0151503,0.868851,0.821977,0.968981,0.765306,0.190383,0.390033,0.547392,0.00724053,0.0737977,0.1222,0.927635,0.851643,0.982084,0.149004,0.51977,0.77855,0.317182,0.945681,0.251944,0.214807,0.874645,0.98777,0.0868179,0.535719,0.864626,0.809344,0.284181,0.295078,0.75813,0.989418,0.301932,0.816728,0.864256,0.2804,0.571374,0.94563,0.28432,0.0135695,0.0167947,0.997514,0.450201,0.277049,0.627215,0.465615,0.197088,0.737597,0.481667,0.590851,0.594968,0.422207,0.168777,0.251587,0.815588,0.820621,0.391899,0.89287,0.722573,0.185244,0.392758,0.634378,0.468821,0.49046,0.722301,0.831191,0.55723,0.571238,0.390561,0.203025,0.550231,0.944979,0.916176,0.0824485,0.76473,0.0887898,0.41075,0.657425,0.943985,0.703396,0.174121,0.610796,0.529275,0.24937,0.655341,0.722362,0.410775,0.52771,0.446031,0.0803602,0.26204,0.151519,0.698752,0.0282717,0.735561,0.99898,0.35878,0.495917,0.235109,0.345305,0.367372,0.298845,0.873335,0.789701,0.103525,0.105171,0.162812,0.384501,0.448807,0.426315,0.666641,0.216833,0.595283,0.597861,0.381644,0.141284,0.860034,0.588452,0.579735,0.136417,0.267742,0.690369,0.808358,0.39977,0.974659,0.352579,0.885409,0.02308,0.843859,0.495711,0.402717,0.587888,0.924744,0.817057,0.613203,0.0276917,0.131475,0.292139,0.912393,0.21521,0.687074,0.657532,0.296614,0.598158,0.0135488,0.502951,0.743228,0.847932,0.27022,0.339436,0.972805,0.798194,0.347771,0.752531,0.551248,0.471575,0.0363268,0.0101014,0.0357035,0.574183,0.0813791,0.841828,0.537076,0.953915,0.573095,0.871467,0.310886,0.576374,0.903698,|0.448313,0.0994346,0.144893,0.822579,0.749551,0.174563,0.277262,0.559687,0.554614,0.250962,0.562075,0.658735,0.163676,0.825002,0.15138,0.210487,0.350362,0.539063,0.0469757,0.469879,0.373155,0.557894,0.340525,0.708983,0.793237,0.936313,0.159097,0.198547,0.154298,0.741294,0.551059,0.46825,0.142747,0.867234,0.219282,0.569387,0.0230766,0.317753,0.693387,0.81685,0.163771,0.312427,0.748998,0.301148,0.441116,0.577355,0.432376,0.739361,0.215729,0.0817182,0.816097,0.959952,0.766408,0.874813,0.261829,0.733867,0.676767,0.283638,0.180333,0.0246102,0.813528,0.215193,0.053588,0.201061,0.451464,0.816183,0.0199774,0.324295,0.634136,0.245977,0.995361,0.692185,0.712323,0.101396,0.625517,0.198613,0.00649428,0.542133,0.243492,0.756874,0.17929,0.944633,0.0878553,0.267209,0.82305,0.438204,0.758089,0.758142,0.437777,0.411625,0.249499,0.160764,0.179644,0.411939,0.0667769,0.842425,0.621366,0.107782,0.862758,0.864374,0.110646,0.200687,0.580885,0.499994,0.2065,0.674382,0.065788,0.482434,0.00640905,0.667167,0.97612,0.992814,0.34498,0.4286,0.942084,0.376311,0.253599,0.398443,0.825595,0.0265372,0.0417495,0.668806,0.426511,0.10274,0.473433,0.712101,0.607291,0.0473141,0.787235,0.556904,0.396893,0.359736,0.533389,0.556297,0.231189,0.239362,0.567591,0.918479,0.569303,0.495153,0.510257,0.67812,0.860398,0.81291,0.810391,0.236464,0.640707,0.477262,0.972867,0.688793,0.984376,0.356004,0.0535682,0.92713,0.115269,0.992215,0.650684,0.359991,0.367021,0.902991,0.857395,0.529943,0.996822,0.915421,0.237828,0.051212,0.215802,0.405395,0.834745,0.13559,0.84892,0.982456,0.0195872,0.107363,0.879309,0.206351,0.852014,0.153515,0.596667,0.101654,0.769109,0.188808,0.231542,0.588698,0.0209358,0.720339,0.81887,0.558683,0.447785,0.909077,0.796676,0.457528,0.912078,0.259464,0.89266,0.892898,0.268432,0.789727,0.744368,0.0602288,0.957338,0.0913503,0.672724,0.922831,0.656214,0.635441,0.763654,0.84007,0.60504,0.859507,0.304709,0.491759,0.405683,0.66068,0.158767,0.412888,0.662217,0.101701,0.11519,0.470298,0.476329,0.947449,0.316919,0.873319,0.158989,0.810614,0.252066,0.7843,0.503435,0.434214,0.346394,0.639369,0.749253,0.0621833,0.973127,0.568142,0.419389,0.329983,0.939456,0.338006,0.88289,0.611422,0.0760633,0.312731,0.909253,0.20775,0.899795,0.737064,0.0513582,0.721174,0.00546229,0.730553,0.649002,0.40489,0.824357,0.260934,0.820668,0.407624,0.213971,0.0166152,0.210186,0.78174,0.0662125,0.470852,0.350607,0.736315,0.293954,0.618985,0.568293,0.92468,0.738096,0.627429,0.000114143,0.376021,0.672535,0.777957,0.1218,0.966914,0.61339,0.0737589,0.628493,0.32328,0.205814,0.0724694,0.756452,0.276348,0.177457,0.730718,0.670793,0.371738,0.378022,0.935933,0.881004,0.183974,0.686164,0.617591,0.605648,0.7098,0.784492,0.844513,0.749443,0.102464,0.836386,0.928693,0.97867,0.233604,0.380882,0.127199,0.97021,0.368441,0.200157,0.362185,0.320489,0.641545,0.813449,0.46718,0.168894,0.879148,0.89282,0.0406029,0.928032,0.0986338,0.888048,0.0658317,0.485084,0.62042,0.175937,0.531033,0.181252,0.759144,0.324482,0.441938,0.270559,0.443078,0.805273,0.143252,0.978514,0.120454,0.605849,0.0560872,0.394521,0.152465,0.235276,0.554697,0.898316,0.98531,0.137669,0.689997,0.951548,0.370625,0.340284,0.0485379,0.619612,0.591174,0.11026,0.782474,0.583831,0.136096,0.472686,0.662604,0.076765,0.0290757,0.26109,0.490936,0.701845,0.503362,0.650269,0.86356,0.920925,0.461644,0.569732,0.422479,0.284353,0.78811,0.48234,0.953245,0.291616,0.547922,0.0753359,0.332402,0.978123,0.0847471,0.0595524,0.339718,0.669938,0.503765,0.142407,0.383532,0.274774,0.0474513,0.99401,0.256205,0.638101,0.990778,0.24004,0.334914,0.995107,0.439057,0.80668,0.984282,0.255414,0.914657,0.340853,0.241293,0.0482496,0.100967,0.388464,0.200196,0.484125,0.556046,0.460635,0.744585,0.536813,0.98955,0.966532,0.918815,0.501289,0.284885,0.370688,0.399134,0.235487,0.179669,0.141949,0.482651,0.0471451,0.271506,0.321543,0.629076,0.11113,0.647905,0.185969,0.38452,0.489223,0.737474,0.041075,0.11247,0.453469,0.751171,0.56145,0.657471,0.905537,0.721853,0.753159,0.18777,0.956643,0.717312,0.280914,0.271031,0.399195,0.142902,0.0427629,0.221121,0.171612,0.166618,0.182685,0.187045,0.243718,0.415926,0.33806,0.532468,0.930245,0.272934,0.826424,0.616761,0.936753,0.66884,0.612104,0.00889468,0.283843,0.787491,0.853092,0.0322271,0.764862,0.965269,0.226968,0.968409,0.76749,0.542374,0.422554,0.905799,0.743579,0.366638,0.99434,0.113347,0.682033,0.313436,0.739341,0.679674,0.0212705,0.629245,0.431217,0.42045,0.691238,0.0175647,0.697008,0.582711,0.192766,0.339351,0.35542,0.36043,0.323682,0.672128,0.47246,0.571952,0.00667214,0.626467,0.0718486,0.631981,0.405954,0.883092,0.660598,0.705831,0.295961,0.935081,0.350426,0.686707,0.808366,0.464378,0.58858,0.875233,0.889943,0.772226,0.367327,0.17074,0.99868,0.501941,0.677817,0.325397,0.178147,0.567623,0.338954,0.437621,0.20306,0.475989,0.264241,0.551733,0.559841,0.232933,0.62699,0.339878,0.975625,0.578575,0.241668,0.641658,0.549245,0.694018,0.426657,0.556421,0.909555,0.815382,0.883236,0.148139,0.129814,0.449102,0.988897,0.237419,0.376971,0.339285,0.936317,0.836431,0.562992,0.187364,0.736318,0.820001,0.956497,0.24937,0.703451,0.0954542,0.258745,0.868712,0.376705,0.59096,0.0560821,0.378931,0.681988,0.552033,0.0838076,0.533606,0.968442,0.196355,0.869423,0.130495,0.0969192,0.53769,0.808918,0.860322,0.150386,0.165739,0.132619,0.350756,0.590292,0.248115,0.359778,0.500337,0.407732,0.718343,0.13161,0.490937,0.372249,0.708747,0.662252,0.825596,0.549959,0.684254,0.553207,0.926818,0.357572,0.436886,0.293843,0.637058,0.802234,0.523677,0.486573,0.99297,0.411696,0.923504,0.747623,0.792922,0.96535,0.47219,0.561116,0.0929207,0.508518,0.641031,0.302831,0.304168,0.0755185,0.480663,0.649928,0.813009,0.939263,0.549593,0.0386504,0.105824,0.272411,0.224721,0.369439,0.14858,0.998938,0.27566,0.923862,0.627721,0.209503,0.914385,0.415691,0.321142,0.767823,0.078107,0.019501,0.663622,0.66519,0.733979,0.132598,0.247485,0.0280767,0.724259,0.092253,0.294444,0.969509,0.868572,0.953033,0.878953,0.840673,0.27099,0.824396,0.931331,0.525386,0.147406,0.322179,0.997083,0.309415,0.458415,0.108017,0.710253,0.0657875,0.783542,0.652487,0.511324,0.717684,0.432077,0.527429,0.764753,0.846965,0.527107,0.676911,0.451969,0.957904,0.296669,0.148779,0.483848,0.0843666,0.603018,0.500445,0.24345,0.729751,0.117811,0.0182719,0.899009,0.785833,0.360241,0.902843,0.826676,0.696116,0.830151,0.695909,0.746565,0.628701,0.224272,0.101848,0.765327,0.671927,0.346351,0.18422,0.148393,0.374894,0.922651,0.622822,0.0315885,0.10756,0.307081,0.494395,0.0787036,0.644047,0.665305,0.981118,0.960466,0.521301,0.265188,0.635037,0.768705,0.513544,0.810688,0.65226,0.825382,0.856366,0.777222,0.495412,0.228913,0.306379,0.90077,0.315747,0.674684,0.0307079,0.740469,0.903033,0.355311,0.324125,0.519299,0.226993,0.33037,0.724154,0.937774,0.53811,0.591898,0.0842791,0.98401,0.0794289,0.740125,0.555808,0.739599,0.998601,0.332175,0.446064,0.633646,0.88576,0.710796,0.431538,0.557315,0.773011,0.970833,0.00103575,0.105827,0.103463,0.870347,0.527715,0.433804,0.13341,0.521538,0.825154,0.636288,0.187848,0.912488,0.226802,0.270464,0.973809,0.699562,0.201421,0.96049,0.0101764,0.449843,0.843801,0.78889,0.306832,0.64055,0.853038,0.0333155,0.642188,0.498975,0.253474,0.906785,0.641775,0.43585,0.911941,0.765836,0.463572,0.966684,0.508287,0.840019,0.10648,0.111984,0.939282,0.0132638,0.159879,0.764213,0.562821,0.899222,0.944444,0.0129247,0.855582,0.744471,0.892713,0.801612,0.629482,0.290958,0.437812,0.737279,0.917623,0.665134,0.0275606,0.834099,0.375098,0.117277,0.743212,0.257073,0.457928,0.597249,0.180918,0.928335,0.6298,0.206271,0.416547,0.935479,0.713837,0.511645,0.626194,0.107385,0.203948,0.0540572,0.711161,0.836992,0.798751,0.923808,0.0596819,0.939199,0.362181,0.528837,0.840966,0.404524,0.485759,0.89954,0.403034,0.489409,0.25152,0.718364,0.0850904,0.238444,0.735092,0.44473,0.349928,0.0581787,0.768315,0.228592,0.964218,0.594119,0.823328,0.207866,0.50266,0.229483,0.912157,0.892111,0.506234,0.295909,0.188472,0.37011,0.944772,0.155077,0.156233,0.0717142,0.537556,0.0723104,0.157949,0.426124,0.405585,0.173166,0.0204622,0.569283,0.980183,0.328729,0.601292,0.957369,0.905089,0.545366,0.334846,0.400041,0.635155,0.89957,0.166054,0.387311,0.510601,0.0846888,0.715745,0.862227,0.765223,0.362465,0.871142,0.591535,0.923743,0.229036,0.398214,0.783884,0.777533,0.428959,0.105094,0.903002,0.0829052,0.770742,0.0402522,0.6044,0.777,0.609319,0.486243,0.249069,0.165669,0.358497,0.970557,0.969894,0.011129,0.592275,0.161469,0.409255,0.00997698,0.491675,0.52413,0.76655,0.974868,0.223316,0.912273,0.922812,0.707241,0.371682,0.47095,0.399115,0.91777,0.699431,0.0670499,0.311933,0.984081,0.219835,0.922035,0.339362,0.525911,0.0118288,0.282919,0.0489788,0.645982,0.16276,0.767843,0.980109,0.57602,0.670107,0.84908,0.265213,0.993626,0.276695,0.0133759,0.924585,0.208547,0.456061,0.952111,0.890127,0.928139,0.687961,0.181258,0.318721,0.536889,0.614669,0.669353,0.748547,0.879723,0.998594,0.892259,0.0480542,0.178753,0.767608,0.277531,0.703977,0.949005,0.240598,0.310478,0.974053,|0.963441,0.252989,0.594373,0.812194,0.472271,0.085791,0.865435,0.893135,0.408791,0.390289,0.720592,0.262374,0.861494,0.479782,0.752692,0.821206,0.708928,0.176807,0.46073,0.658546,0.303203,0.00863177,0.920438,0.352595,0.438618,0.478494,0.427998,0.930839,0.633149,0.869026,0.633159,0.762253,0.794036,0.102796,0.774004,0.126446,0.113756,0.642119,0.640771,0.757584,0.490876,0.74042,0.148205,0.113116,0.807351,0.369248,0.386308,0.248034,0.770803,0.181708,0.0454583,0.0310814,0.735383,0.0629048,0.635417,0.142592,0.438996,0.348813,0.28238,0.565264,0.690823,0.149728,0.746391,0.706662,0.079882,0.313926,0.206627,0.414579,0.100938,0.906355,0.837023,0.549842,0.95004,0.504861,0.242952,0.205578,0.471807,0.175912,0.113043,0.80351,0.871617,0.0930623,0.991357,0.51146,0.565878,0.804397,0.634,0.756534,0.339548,0.18623,0.30208,0.992573,0.269848,0.38988,0.777638,0.719563,0.793342,0.83095,0.267386,0.175571,0.0928392,0.34973,0.413484,0.515516,0.204385,0.455168,0.371334,0.231279,0.923192,0.720197,0.993886,0.636787,0.254,0.976506,0.0634431,0.733021,0.415894,0.495495,0.849716,0.893908,0.365702,0.532083,0.884149,0.0271935,0.508013,0.487327,0.466591,0.849466,0.181269,0.14149,0.928985,0.820016,0.99534,0.351066,0.207726,0.912072,0.120197,0.919172,0.743001,0.0665419,0.569455,0.383911,0.128312,0.439984,0.757905,0.723619,0.608681,0.61142,0.554117,0.396226,0.248031,0.814029,0.0868034,0.332479,0.27308,0.162597,0.761472,0.352602,0.172919,0.687184,0.527631,0.997923,0.839018,0.965661,0.98385,0.753345,0.339982,0.247135,0.27867,0.841765,0.134194,0.639264,0.934114,0.601909,0.315547,0.612227,0.0827292,0.203301,0.854474,0.425032,0.917563,0.302125,0.807682,0.590536,0.313594,0.919822,0.56939,0.701757,0.579537,0.109762,0.603262,0.241705,0.0694454,0.998939,0.558777,0.737179,0.0903866,0.789816,0.977795,0.332439,0.804317,0.675992,0.118831,0.713132,0.99338,0.273048,0.518602,0.898137,0.901133,0.599108,0.315632,0.610325,0.0027805,0.617844,0.474681,0.735769,0.133979,0.141184,0.671367,0.0423544,0.0725179,0.142173,0.469439,0.63962,0.648565,0.705818,0.402902,0.00735027,0.407095,0.640471,0.734213,0.590892,0.0742052,0.0466767,0.939934,0.803591,0.25256,0.943332,0.0721344,0.478078,0.307251,0.918731,0.289463,0.274122,0.488817,0.973017,0.408509,0.499043,0.0410433,0.402189,0.708393,0.0748675,0.995581,0.107485,0.2446,0.519894,0.940266,0.469113,0.97093,0.748157,0.59681,0.746673,0.925659,0.524553,0.385173,0.164792,0.381879,0.5299,0.16217,0.56495,0.673038,0.16104,0.863451,0.237521,0.193615,0.600062,0.583197,0.832625,0.84104,0.626205,0.23736,0.452513,0.250577,0.532714,0.332817,0.576158,0.900426,0.569323,0.755307,0.649707,0.280242,0.298488,0.775786,0.463179,0.898802,0.420984,0.654764,0.680005,0.710516,0.999825,0.0202351,0.0785182,0.730187,0.12385,0.231564,0.437178,0.475701,0.243411,0.524069,0.0371963,0.316465,0.830119,0.916953,0.267001,0.115591,0.299962,0.21198,0.399439,0.242319,0.833367,0.959861,0.495572,0.63895,0.366021,0.862379,0.433978,0.903479,0.818934,0.384918,0.521455,0.169512,0.654501,0.701777,0.0716574,0.558011,0.589381,0.276786,0.285211,0.409521,0.082925,0.215277,0.90569,0.528705,0.468728,0.147924,0.117674,0.388194,0.431933,0.321164,0.940199,0.730057,0.611977,0.777201,0.677107,0.977748,0.254013,0.319736,0.149593,0.785852,0.129259,0.806114,0.563126,0.25598,0.237446,0.221498,0.00127411,0.996431,0.206231,0.225268,0.447931,0.182887,0.0582216,0.660702,0.349857,0.0086174,0.587822,0.0177085,0.591484,0.397624,0.117761,0.85729,0.381156,0.00947291,0.210472,0.975006,0.845319,0.0682996,0.354675,0.0233441,0.0417123,0.118665,0.708263,0.503663,0.320645,0.888826,0.994032,0.672776,0.796863,0.957638,0.162504,0.139287,0.621777,0.489038,0.42558,0.00215,0.992094,0.387093,0.373917,0.490998,0.559806,0.308545,0.0494568,0.849688,0.86935,0.304598,0.111763,0.455546,0.163083,0.599068,0.54253,0.332359,0.203015,0.409783,0.614577,0.360101,0.796572,0.0254795,0.489892,0.889738,0.963141,0.295143,0.586207,0.854789,0.374088,0.551966,0.0456418,0.819827,0.557447,0.178076,0.511949,0.337052,0.987867,0.913993,0.115586,0.0567898,0.167034,0.821485,0.578783,0.537878,0.64577,0.752904,0.415498,0.0537902,0.247535,0.186713,0.603256,0.7212,0.655527,0.891752,0.672657,0.564224,0.482317,0.447188,0.895337,0.96999,0.107378,0.0176581,0.778611,0.936044,0.162374,0.278546,0.860624,0.195587,0.823156,0.616094,0.225586,0.128926,0.985323,0.335808,0.0953507,0.778008,0.297019,0.776079,0.493136,0.913281,0.444995,0.812108,0.89253,0.00272566,0.941381,0.660453,0.302456,0.811907,0.536825,0.616549,0.0599999,0.0790273,0.324109,0.717616,0.384881,0.896221,0.491513,0.454983,0.701865,0.0287848,0.0178874,0.0993649,0.714623,0.37111,0.50926,0.792632,0.767118,0.605891,0.376383,0.536087,0.0117363,0.278507,0.339184,0.440044,0.36932,0.121491,0.783875,0.47971,0.276946,0.509052,0.862168,0.310673,0.953968,0.165228,0.519285,0.393811,0.469058,0.326119,0.213731,0.13855,0.446112,0.335514,0.382471,0.889685,0.423397,0.597917,0.953576,0.220955,0.898849,0.413508,0.797298,0.163856,0.0608554,0.162986,0.147313,0.756991,0.811992,0.0684816,0.316488,0.185668,0.357772,0.968077,0.298615,0.727123,0.909397,0.0812554,0.232491,0.840273,0.339506,0.179971,0.437095,0.526597,0.101797,0.258643,0.357084,0.0970506,0.799936,0.929135,0.854594,0.200974,0.22686,0.820176,0.423068,0.452106,0.773409,0.962843,0.751505,0.420288,0.70564,0.668702,0.236773,0.448618,0.449745,0.47836,0.345445,0.73682,0.107276,0.361173,0.918943,0.637701,0.992983,0.193205,0.49181,0.334024,0.461082,0.391769,0.19952,0.11564,0.622684,0.270182,0.83547,0.666933,0.535766,0.236493,0.683142,0.954913,0.139357,0.467198,0.52525,0.872195,0.513153,0.853862,0.120483,0.37219,0.367944,0.563869,0.754959,0.307978,0.861113,0.830841,0.979852,0.132789,0.899027,0.813916,0.335214,0.0963907,0.0605012,0.337574,0.86965,0.183846,0.744072,0.195704,0.699114,0.765405,0.557211,0.208672,0.129894,0.314309,0.893743,0.714137,0.807396,0.673582,0.683554,0.456115,0.18822,0.589676,0.742006,0.22368,0.979578,0.113939,0.0732397,0.696198,0.385529,0.676866,0.279131,0.277139,0.636312,0.185261,0.0957534,0.784075,0.309698,0.877239,0.711443,0.535443,0.888852,0.81585,0.516544,0.932358,0.263565,0.798302,0.23695,0.301288,0.355721,0.953959,0.926182,0.527373,0.921631,0.700653,0.721777,0.147037,0.745693,0.0784643,0.539518,0.960137,0.844828,0.279315,0.463307,0.866585,0.371684,0.328684,0.42417,0.0159878,0.864291,0.522754,0.131814,0.814697,0.619038,0.302989,0.559821,0.709574,0.943194,0.410156,0.118107,0.0917886,0.65069,0.474879,0.862922,0.674682,0.0566621,0.881449,0.547589,0.837088,0.0432333,0.217327,0.857287,0.640936,0.854817,0.901127,0.282621,0.771977,0.424573,0.242649,0.958286,0.147693,0.747413,0.623146,0.382705,0.0538519,0.663354,0.937948,0.260857,0.00846851,0.0905221,0.0108466,0.942769,0.261279,0.154402,0.863869,0.699457,0.674778,0.434344,0.383632,0.910266,0.00878572,0.240504,0.119307,0.336508,0.545727,0.734528,0.740997,0.528181,0.116962,0.872581,0.202574,0.862081,0.87432,0.0183219,0.0549068,0.666889,0.85547,0.255708,0.477073,0.935991,0.0544522,0.325338,0.732033,0.260308,0.249587,0.919757,0.0584904,0.226546,0.689859,0.804539,0.744012,0.866467,0.787156,0.627622,0.333639,0.104596,0.759695,0.173851,0.703022,0.380459,0.277911,0.3275,0.896518,0.583945,0.945335,0.212483,0.298375,0.914199,0.199603,0.64254,0.814757,0.723917,0.359513,0.883999,0.906276,0.128411,0.945932,0.862451,0.554523,0.959706,0.876175,0.199527,0.776496,0.223202,0.511988,0.25058,0.368663,0.292765,0.312831,0.731773,0.896181,0.707718,0.834815,0.357019,0.217956,0.344007,0.823632,0.316184,0.283,0.266778,0.64588,0.635742,0.382772,0.169798,0.695404,0.0328726,0.577292,0.511422,0.236324,0.385765,0.55492,0.467588,0.578229,0.326287,0.380205,0.933711,0.92106,0.888968,0.155478,0.39867,0.417041,0.590566,0.452907,0.130253,0.28298,0.221906,0.851219,0.964846,0.655846,0.815413,0.241051,0.0633774,0.57768,0.263937,0.180421,0.960155,0.96585,0.162923,0.960907,0.853857,0.284829,0.34204,0.314651,0.314451,0.780674,0.0320158,0.698893,0.0356032,0.986493,0.0351174,0.961856,0.583926,0.665966,0.924257,0.126624,0.512402,0.897688,0.861475,0.414865,0.085094,0.369573,0.934604,0.876364,0.915647,0.392923,0.885562,0.410174,0.76216,0.369287,0.421211,0.658611,0.884701,0.281567,0.851199,0.867582,0.219581,0.834207,0.741871,0.823868,0.990549,0.265353,0.566718,0.143895,0.146451,0.494139,0.254338,0.940853,0.266417,0.420461,0.829686,0.419356,0.388214,0.102153,0.615122,0.440071,0.736791,0.291819,0.757173,0.229272,0.652552,0.474577,0.897409,0.811626,0.269275,0.976139,0.189742,0.197178,0.940018,0.745762,0.379162,0.745106,0.777091,0.541665,0.521699,0.802596,0.29218,0.309803,0.24466,0.827731,0.397905,0.483361,0.191473,0.500659,0.302743,0.500272,0.761842,0.867832,0.434814,0.150219,0.838962,0.452436,0.171748,0.197882,0.88582,0.0524767,0.673398,0.70707,0.305434,0.11215,0.82066,0.653989,0.288414,0.794589,0.196772,0.294884,0.153786,0.953712,0.819257,0.955321,0.0110433,0.0720949,0.269313,0.157912,0.311178,0.288368,0.257506,0.189978,0.777912,0.482589,0.959441,0.035352,0.275008,0.882788,0.825831,0.25117,0.538062,0.0324669,0.0488709,0.782572,0.500518,0.921576,0.33559,|0.0562727,0.573166,0.527564,0.196808,0.635249,0.881489,0.6698,0.238248,0.6171,0.705612,0.352136,0.790014,0.401185,0.980832,0.665765,0.978182,0.0189292,0.42741,0.372068,0.735789,0.632304,0.308952,0.52605,0.167067,0.924507,0.150729,0.0743896,0.311964,0.624573,0.189503,0.66232,0.768142,0.0322291,0.275847,0.0264032,0.968722,0.0734977,0.518992,0.790282,0.198654,0.569315,0.747794,0.919988,0.641288,0.157714,0.780759,0.000987113,0.8529,0.704577,0.734788,0.516314,0.798944,0.612294,0.0722278,0.739897,0.578074,0.447157,0.0280237,0.29513,0.112215,0.452762,0.667648,0.116492,0.753447,0.316015,0.840842,0.892481,0.982867,0.79866,0.795987,0.783678,0.316747,0.6196,0.711922,0.0539692,0.663798,0.535968,0.708482,0.250836,0.555102,0.860494,0.0231309,0.345145,0.291883,0.120675,0.161716,0.909683,0.666398,0.291726,0.442511,0.792549,0.780553,0.00684369,0.44565,0.915303,0.847516,0.123205,0.70964,0.0163918,0.493085,0.615335,0.76199,0.699547,0.583959,0.575085,0.504561,0.338596,0.287718,0.704377,0.505032,0.6318,0.633625,0.852804,0.222102,0.0613962,0.11584,0.0789344,0.591635,0.251894,0.6553,0.569424,0.619517,0.379361,0.797765,0.536755,0.897389,0.505183,0.0709708,0.290987,0.249809,0.102789,0.561435,0.730665,0.516887,0.396941,0.962713,0.313531,0.531978,0.341337,0.430409,0.49464,0.889865,0.629987,0.781135,0.641771,0.166115,0.521561,0.31795,0.76347,0.598525,0.356779,0.357684,0.10457,0.530522,0.227898,0.778411,0.999771,0.00904304,0.508228,0.441225,0.252476,0.580945,0.97799,0.998245,0.0566471,0.7659,0.358958,0.96577,0.487766,0.125151,0.368242,0.547533,0.0807346,0.673126,0.421794,0.540455,0.0374548,0.497937,0.0421041,0.818292,0.922457,0.8398,0.834499,0.565362,0.794472,0.954681,0.869063,0.9301,0.390173,0.332025,0.355961,0.386604,0.188961,0.931819,0.386101,0.490563,0.765753,0.520165,0.549162,0.55373,0.55364,0.344346,0.449475,0.841518,0.327793,0.578698,0.334967,0.229834,0.379047,0.558433,0.323123,0.121159,0.0377012,0.697668,0.896072,0.935732,0.0366811,0.80328,0.321889,0.62455,0.280622,0.613049,0.404914,0.819923,0.480623,0.573677,0.13716,0.474981,0.834018,0.57859,0.326226,0.865681,0.45468,0.625294,0.0248923,0.512564,0.939784,0.328289,0.985839,0.303449,0.490128,0.0557508,0.884901,0.721488,0.351628,0.480934,0.99353,0.427825,0.379679,0.901286,0.650313,0.213107,0.215666,0.468495,0.926432,0.114358,0.717317,0.231228,0.0681791,0.385142,0.514402,0.683152,0.198214,0.398509,0.743523,0.480691,0.379843,0.0883796,0.514902,0.525636,0.474808,0.220698,0.104105,0.572129,0.760577,0.515349,0.781009,0.0962284,0.703498,0.291881,0.0556907,0.18652,0.390392,0.663057,0.8376,0.0917127,0.110473,0.819731,0.133611,0.644083,0.20963,0.445512,0.191047,0.492212,0.0323563,0.515321,0.639566,0.0914407,0.121266,0.686032,0.434228,0.549847,0.568882,0.0554433,0.590881,0.50526,0.798138,0.315435,0.817177,0.781758,0.897617,0.86613,0.63615,0.643099,0.772563,0.27047,0.829145,0.502568,0.755274,0.770928,0.617634,0.30636,0.553919,0.0513232,0.816432,0.275767,0.315419,0.125861,0.73209,0.981762,0.212473,0.835651,0.0727636,0.323446,0.727111,0.338352,0.650885,0.986387,0.775329,0.526074,0.79278,0.434524,0.731056,0.793043,0.451454,0.67251,0.739911,0.974723,0.0129312,0.628972,0.92485,0.746553,0.996024,0.649255,0.225838,0.237331,0.510089,0.287962,0.567928,0.0942622,0.264233,0.941161,0.873822,0.729675,0.210292,0.678189,0.204408,0.994949,0.268841,0.161126,0.253841,0.243446,0.31026,0.599153,0.710136,0.426265,0.883184,0.310208,0.595641,0.181212,0.401107,0.777979,0.628138,0.780188,0.266526,0.790322,0.181583,0.206738,0.944569,0.777051,0.197323,0.793005,0.842931,0.201634,0.440512,0.702812,0.35194,0.991026,0.328349,0.0450473,0.399437,0.362549,0.073626,0.473244,0.485251,0.103085,0.990791,0.0233607,0.539525,0.518785,0.0885336,0.151618,0.187547,0.18178,0.522132,0.908331,0.806992,0.717723,0.414048,0.421989,0.606094,0.340493,0.174448,0.193154,0.611911,0.147788,0.461492,0.794816,0.192155,0.623291,0.180729,0.140081,0.9907,0.93021,0.0559094,0.421136,0.796161,0.730543,0.149207,0.191637,0.151009,0.305807,0.420154,0.600653,0.235108,0.867711,0.958355,0.80547,0.206505,0.200757,0.75201,0.593395,0.275521,0.467875,0.747045,0.189878,0.339493,0.280314,0.428246,0.295156,0.108239,0.175448,0.337977,0.601038,0.639054,0.576624,0.274668,0.835801,0.114101,0.125473,0.334784,0.911843,0.616504,0.00736797,0.214257,0.929216,0.567893,0.82245,0.579138,0.407706,0.131476,0.135118,0.605739,0.707016,0.578017,0.249059,0.0241085,0.882144,0.958734,0.819042,0.210738,0.0467113,0.445723,0.409692,0.764154,0.651011,0.747779,0.154647,0.130294,0.603586,0.518837,0.725742,0.898675,0.914673,0.0709034,0.723252,0.726324,0.0384948,0.537676,0.166819,0.000424385,0.206413,0.73249,0.471125,0.302262,0.715004,0.925749,0.0524502,0.0815784,0.768098,0.0794956,0.170514,0.774943,0.208997,0.45667,0.197595,0.978572,0.543505,0.492176,0.557658,0.621144,0.393311,0.904392,0.0743339,0.959709,0.740064,0.590385,0.194488,0.809608,0.174034,0.355343,0.100195,0.46737,0.231992,0.48381,0.1813,0.381452,0.00218141,0.596288,0.204793,0.845524,0.818391,0.998156,0.516218,0.406691,0.507406,0.476622,0.994401,0.708478,0.669341,0.144394,0.0337474,0.580384,0.667996,0.853981,0.487493,0.514454,0.344084,0.965349,0.185322,0.150993,0.167321,0.46301,0.401641,0.879449,0.838722,0.66631,0.487848,0.490047,0.911907,0.520991,0.0533192,0.0111202,0.215288,0.306205,0.438016,0.894526,0.481576,0.233279,0.590355,0.262174,0.960194,0.840162,0.913597,0.267617,0.266034,0.174262,0.627788,0.767751,0.344327,0.20243,0.490734,0.494462,0.44758,0.199838,0.355853,0.991588,0.806117,0.959177,0.00804377,0.341637,0.666544,0.0260357,0.457558,0.887603,0.706146,0.749748,0.591572,0.885421,0.931125,0.930296,0.835089,0.307738,0.91766,0.292158,0.110952,0.975491,0.802064,0.355368,0.189788,0.975109,0.725796,0.825753,0.153544,0.0695444,0.944855,0.761157,0.224022,0.443229,0.96959,0.0502406,0.602393,0.811739,0.744915,0.49093,0.0322046,0.49215,0.0992184,0.0421982,0.320378,0.300085,0.0338602,0.696701,0.651981,0.169494,0.677313,0.958696,0.554414,0.327771,0.729064,0.662957,0.153241,0.526643,0.146944,0.905727,0.840981,0.305547,0.510226,0.396878,0.873545,0.922149,0.722441,0.779887,0.511056,0.344923,0.158898,0.468232,0.68765,0.77876,0.415759,0.574054,0.673334,0.306166,0.701184,0.872021,0.410789,0.15232,0.0504599,0.748337,0.539399,0.0773416,0.983946,0.331825,0.0742785,0.443371,0.10713,0.963409,0.218058,0.268545,0.67943,0.323349,0.902122,0.0866779,0.225788,0.935787,0.989521,0.556091,0.576191,0.146952,0.109548,0.299264,0.830953,0.396558,0.508079,0.431281,0.248719,0.712302,0.470269,0.571973,0.392289,0.847298,0.913967,0.0777844,0.206775,0.237439,0.542688,0.94477,0.891296,0.544829,0.148654,0.110051,0.120732,0.236185,0.045466,0.390975,0.869905,0.402102,0.602368,0.112366,0.926724,0.844905,0.997284,0.824698,0.382065,0.165921,0.29066,0.646827,0.810102,0.166878,0.0539237,0.607233,0.581721,0.124625,0.476082,0.361072,0.480755,0.667918,0.709179,0.47918,0.161305,0.856023,0.376677,0.846106,0.83351,0.769764,0.0652368,0.538041,0.311056,0.517948,0.332116,0.979345,0.599962,0.922954,0.0803445,0.431631,0.229603,0.923599,0.198111,0.270925,0.722182,0.523692,0.992985,0.267161,0.236138,0.286481,0.693863,0.762402,0.496995,0.919346,0.00221765,0.583035,0.803232,0.861227,0.579385,0.302164,0.448131,0.325928,0.978082,0.0227094,0.526469,0.0820793,0.620608,0.676933,0.573628,0.752189,0.241053,0.945054,0.236314,0.310172,0.92428,0.203604,0.701831,0.615494,0.918157,0.748233,0.973378,0.88691,0.481213,0.760499,0.861403,0.919675,0.926545,0.168708,0.698366,0.351849,0.606923,0.572353,0.618018,0.11086,0.599307,0.769288,0.365157,0.041173,0.252827,0.954228,0.919128,0.591727,0.761875,0.785791,0.151139,0.545904,0.279121,0.7192,0.649887,0.331216,0.86228,0.751498,0.386654,0.48835,0.363149,0.131356,0.564301,0.150392,0.121459,0.298877,0.306514,0.229344,0.727878,0.0943612,0.925934,0.263357,0.754604,0.803845,0.00958496,0.0830576,0.313517,0.493338,0.810834,0.124647,0.840493,0.93783,0.394297,0.804839,0.373456,0.719636,0.0996066,0.619867,0.854503,0.67139,0.439091,0.279767,0.0677041,0.389512,0.367537,0.275688,0.599986,0.721735,0.63025,0.379555,0.753403,0.503969,0.949585,0.344394,0.89476,0.460727,0.494639,0.728152,0.00811815,0.834524,0.270692,0.487303,0.0560208,0.445873,0.758699,0.571868,0.0897052,0.198244,0.261088,0.0778549,0.628848,0.972306,0.0078451,0.454432,0.814298,0.124986,0.778527,0.0449989,0.959506,0.127981,0.121507,0.00622708,0.420268,0.999556,0.105166,0.184875,0.170866,0.970908,0.0688405,0.361375,0.458205,0.884961,0.835959,0.824818,0.407486,0.462381,0.378267,0.110559,0.162119,0.719327,0.782292,0.873596,0.56197,0.937904,0.114243,0.73163,0.425641,0.0691195,0.0326055,0.589125,0.380508,0.479093,0.203459,0.646328,0.0596378,0.352326,0.918229,0.758227,0.590878,0.528754,0.508832,0.0926225,0.808722,0.740804,0.325728,0.209058,0.64082,0.868587,0.462675,0.960372,0.277334,0.575085,0.692711,0.396883,0.704436,0.504541,0.375457,0.563697,0.272992,0.0430833,0.16514,0.569388,0.203915,0.976876,0.466411,0.277357,0.181681,0.852513,0.612848,0.119282,0.383412,0.250212,0.415365,0.62216,0.753091,0.428914,0.619192,0.968544,0.54416,0.264465,0.385376,|0.115756,0.665016,0.626948,0.603737,0.956543,0.900038,0.872758,0.548257,0.356232,0.213178,0.61772,0.605317,0.0904047,0.770212,0.245407,0.773555,0.482758,0.39965,0.654624,0.33523,0.323742,0.249788,0.0844964,0.768408,0.788596,0.318778,0.744607,0.0275429,0.77468,0.82333,0.210942,0.555487,0.901608,0.3768,0.860165,0.574334,0.546744,0.598051,0.468628,0.380778,0.162678,0.723148,0.763063,0.712004,0.91089,0.16316,0.459985,0.306315,0.692179,0.315441,0.858514,0.0856357,0.00256222,0.367625,0.237486,0.801341,0.730534,0.876103,0.262865,0.0256202,0.803771,0.855667,0.920874,0.031344,0.0593211,0.396412,0.59276,0.566923,0.192892,0.576133,0.417938,0.0647568,0.470073,0.290254,0.447573,0.986915,0.423157,0.717411,0.800367,0.85177,0.323504,0.370063,0.515303,0.249749,0.851775,0.443895,0.20065,0.092553,0.989207,0.970552,0.306714,0.710656,0.390099,0.323501,0.239872,0.575615,0.181299,0.721531,0.289503,0.768966,0.791896,0.621174,0.328523,0.679887,0.695794,0.646888,0.87079,0.529719,0.24178,0.0561009,0.430362,0.11077,0.668599,0.813449,0.0856231,0.877374,0.799517,0.443241,0.798144,0.426252,0.341293,0.0227968,0.679545,0.716456,0.13905,0.789176,0.760691,0.360057,0.223607,0.346878,0.532574,0.869342,0.281872,0.732486,0.821064,0.973817,0.436274,0.709569,0.937547,0.878549,0.202347,0.777535,0.721108,0.595892,0.142917,0.75392,0.404282,0.886728,0.568057,0.898853,0.249505,0.0292712,0.278248,0.350314,0.869933,0.378256,0.75057,0.95977,0.600554,0.127931,0.886873,0.112993,0.845334,0.141143,0.492037,0.609407,0.832185,0.484394,0.943158,0.17995,0.951829,0.77868,0.711478,0.177207,0.853941,0.528273,0.266203,0.335479,0.0632694,0.865698,0.335971,0.918625,0.75459,0.678978,0.793793,0.427771,0.822025,0.688929,0.834704,0.182355,0.898849,0.418105,0.953595,0.879792,0.689498,0.479011,0.424122,0.364832,0.469194,0.863687,0.761848,0.095251,0.122269,0.854179,0.334139,0.546343,0.701403,0.180679,0.881648,0.298192,0.00558585,0.39199,0.241467,0.176538,0.650128,0.698585,0.35713,0.996285,0.378741,0.953126,0.392339,0.812934,0.18734,0.291405,0.541619,0.328999,0.86424,0.846228,0.180635,0.762065,0.778819,0.958121,0.947376,0.473525,0.46641,0.635872,0.955199,0.59698,0.317031,0.685567,0.445792,0.222116,0.789373,0.354386,0.739281,0.0712629,0.560445,0.470092,0.853274,0.394561,0.384551,0.273495,0.722589,0.784655,0.262593,0.411332,0.0860785,0.908691,0.128428,0.745902,0.981755,0.468391,0.417707,0.318675,0.823742,0.794957,0.795886,0.85946,0.836842,0.0747934,0.722975,0.0508918,0.548905,0.215931,0.0628639,0.723974,0.568385,0.354719,0.871302,0.978932,0.150129,0.136381,0.0245944,0.577489,0.136305,0.352283,0.521597,0.33923,0.185686,0.408204,0.0574176,0.0662769,0.455147,0.823091,0.34111,0.957813,0.275415,0.305902,0.793038,0.910624,0.214019,0.426892,0.35724,0.674343,0.0905803,0.42232,0.364803,0.0107667,0.986012,0.00352317,0.601903,0.14217,0.157413,0.346145,0.256741,0.157033,0.17283,0.936962,0.82263,0.581966,0.199779,0.148298,0.438382,0.896706,0.15869,0.096546,0.749262,0.749357,0.566913,0.64302,0.111158,0.993861,0.921585,0.66704,0.997967,0.719872,0.99221,0.322272,0.0423285,0.440448,0.164226,0.126419,0.87878,0.25521,0.385833,0.0127891,0.418566,0.78368,0.889493,0.445139,0.974091,0.0183348,0.366248,0.430683,0.787722,0.657867,0.682958,0.192648,0.340264,0.811636,0.0629405,0.806635,0.644563,0.40552,0.119742,0.499267,0.476742,0.484091,0.230822,0.202338,0.746035,0.159471,0.0525493,0.121625,0.59885,0.572845,0.0277629,0.261055,0.16626,0.733377,0.0622655,0.0737489,0.469597,0.126096,0.801976,0.622486,0.592785,0.563035,0.0292444,0.624627,0.649163,0.729529,0.413431,0.861852,0.622342,0.348552,0.281344,0.978807,0.0767474,0.148261,0.596464,0.420232,0.0360935,0.073986,0.254613,0.263779,0.838974,0.740505,0.286507,0.84218,0.443296,0.928478,0.370842,0.827221,0.818456,0.556175,0.442608,0.696934,0.727683,0.844566,0.209754,0.465114,0.487045,0.381539,0.846646,0.931031,0.667719,0.342166,0.360275,0.742619,0.0446932,0.496008,0.1539,0.261828,0.53559,0.377589,0.787045,0.739422,0.125156,0.590127,0.646425,0.24561,0.649261,0.0877133,0.442733,0.144262,0.798076,0.0235115,0.129206,0.571459,0.223041,0.557606,0.732776,0.744128,0.846381,0.695105,0.399121,0.207925,0.714919,0.875655,0.458147,0.491915,0.192895,0.0994177,0.288432,0.164194,0.201823,0.159072,0.808299,0.75865,0.236218,0.501004,0.335853,0.604458,0.363884,0.93588,0.93962,0.0204595,0.715376,0.439222,0.271465,0.157732,0.404524,0.0744277,0.308574,0.410446,0.0804986,0.950602,0.963612,0.29468,0.483431,0.3985,0.253234,0.53045,0.97001,0.521289,0.577769,0.141817,0.959582,0.0564643,0.837465,0.538474,0.550121,0.527355,0.489601,0.589414,0.331584,0.634586,0.170492,0.851845,0.725923,0.42371,0.408801,0.575168,0.82563,0.993254,0.535564,0.373462,0.890135,0.883956,0.519906,0.77332,0.0373484,0.51339,0.342287,0.73647,0.860332,0.85402,0.263129,0.510767,0.62311,0.517847,0.779904,0.00218296,0.237579,0.524283,0.293307,0.748645,0.519197,0.768065,0.664798,0.10398,0.582071,0.425119,0.426612,0.938246,0.943304,0.921678,0.508228,0.0390881,0.857177,0.324786,0.265632,0.34425,0.778276,0.995374,0.450883,0.42209,0.793582,0.158622,0.48377,0.777513,0.624481,0.456194,0.547886,0.629042,0.85077,0.459765,0.942497,0.0176519,0.562882,0.903323,0.773066,0.246874,0.589384,0.0961086,0.410508,0.529427,0.478732,0.530176,0.502632,0.215103,0.780803,0.358042,0.925247,0.215237,0.367144,0.27293,0.341258,0.724824,0.919948,0.0991735,0.0731164,0.168596,0.438153,0.6766,0.142304,0.336125,0.721007,0.973783,0.631753,0.0458333,0.683587,0.898651,0.831777,0.400202,0.545003,0.509737,0.817518,0.545169,0.950464,0.657941,0.336296,0.652147,0.764402,0.901296,0.769201,0.0426599,0.802243,0.297098,0.748677,0.543232,0.853416,0.959308,0.871314,0.649717,0.343827,0.779624,0.875766,0.0421343,0.108706,0.640578,0.705358,0.885396,0.409223,0.225423,0.350771,0.636635,0.369986,0.747237,0.108025,0.830026,0.162859,0.717622,0.645718,0.815699,0.288314,0.327174,0.144961,0.0743291,0.62071,0.054942,0.28782,0.0454127,0.801309,0.468624,0.333849,0.0188684,0.182925,0.613432,0.0867483,0.908507,0.00803334,0.339862,0.842317,0.654093,0.0555238,0.207598,0.646464,0.122434,0.898781,0.685052,0.00605297,0.522855,0.100197,0.486654,0.868393,0.102746,0.0828928,0.556423,0.620219,0.918949,0.150324,0.869204,0.619719,0.518748,0.10017,0.333034,0.631222,0.757422,0.122837,0.699526,0.313013,0.960162,0.855379,0.185285,0.185194,0.38761,0.353635,0.851934,0.940294,0.500109,0.272239,0.525429,0.751455,0.875703,0.538522,0.928323,0.305839,0.793329,0.496336,0.171182,0.739128,0.5003,0.0569904,0.620894,0.665239,0.328346,0.604592,0.715716,0.718813,0.0616263,0.989289,0.581699,0.367171,0.862005,0.287231,0.832431,0.421309,0.015795,0.744239,0.0781505,0.860891,0.953406,0.527508,0.586903,0.713306,0.799902,0.691179,0.381504,0.766081,0.91888,0.171758,0.0662065,0.0653229,0.940011,0.785116,0.0843631,0.151518,0.526001,0.3272,0.707255,0.821151,0.810689,0.338035,0.0307502,0.431953,0.390593,0.588041,0.315843,0.601399,0.250807,0.618831,0.264657,0.0303103,0.226725,0.328207,0.578358,0.909743,0.177016,0.4872,0.535923,0.536169,0.502252,0.201537,0.129244,0.678066,0.580151,0.305955,0.719048,0.702327,0.677292,0.679588,0.704115,0.266411,0.882479,0.454275,0.950504,0.264506,0.986498,0.582261,0.480888,0.550978,0.548918,0.601447,0.0232117,0.167998,0.455459,0.0117264,0.756388,0.226541,0.213331,0.0531782,0.892382,0.463039,0.188626,0.992567,0.826535,0.584789,0.672956,0.457138,0.460718,0.971267,0.0216569,0.0581067,0.718428,0.214644,0.3095,0.305728,0.17156,0.909841,0.15376,0.10387,0.444929,0.483647,0.333455,0.423593,0.0254999,0.646264,0.641112,0.841433,0.620337,0.760969,0.269551,0.370593,0.384256,0.133712,0.964266,0.368887,0.399172,0.716483,0.181324,0.919837,0.689004,0.447391,0.121442,0.810321,0.869341,0.912828,0.884409,0.0882683,0.189475,0.373396,0.829224,0.893709,0.754907,0.14658,0.341031,0.895072,0.76858,0.55595,0.535105,0.166013,0.310883,0.849714,0.939739,0.806313,0.527467,0.413196,0.852095,0.866007,0.611794,0.658142,0.283165,0.56686,0.690666,0.295938,0.409609,0.877055,0.611652,0.950065,0.46151,0.0577062,0.148628,0.666945,0.934991,0.0448663,0.321421,0.93391,0.963795,0.872679,0.857423,0.53095,0.462958,0.0492703,0.383101,0.0857213,0.442302,0.996235,0.516803,0.0945424,0.998064,0.706336,0.217136,0.426777,0.915796,0.153939,0.897106,0.211764,0.898733,0.0174915,0.811343,0.524088,0.929505,0.621951,0.890919,0.416616,0.0903545,0.922331,0.245377,0.256407,0.970233,0.154972,0.683279,0.622597,0.0653536,0.932822,0.130681,0.00614315,0.634338,0.582989,0.606327,0.393898,0.183699,0.0804424,0.18423,0.837221,0.259991,0.562581,0.364181,0.999894,0.16212,0.159167,0.3832,0.777995,0.518385,0.895589,0.211904,0.853464,0.50963,0.000270844,0.595592,0.852267,0.79913,0.604564,0.250093,0.411348,0.764275,0.0494814,0.461432,0.865556,0.500174,0.758849,0.558079,0.50812,0.15411,0.602575,0.735006,0.773696,0.938232,0.249361,0.0547121,0.947213,0.162991,0.479557,0.630759,0.716714,0.623384,0.399915,0.168212,0.913842,0.265106,0.215072,0.676871,0.663847,0.990775,0.555637,0.744352,0.339738,0.618808,0.292679,0.205543,0.0180662,0.807741,0.582934,0.932459,0.232251,0.516041,0.993757,0.574401,|0.681062,0.792928,0.235277,0.598433,0.268877,0.758191,0.982759,0.329626,0.503071,0.308331,0.436824,0.911831,0.820653,0.689206,0.994388,0.328381,0.818944,0.354711,0.688492,0.510926,0.119198,0.36509,0.61044,0.143576,0.767681,0.621189,0.743044,0.360006,0.445896,0.493343,0.430703,0.995219,0.625197,0.167988,0.399612,0.654079,0.663493,0.220824,0.0781254,0.0640102,0.60045,0.270591,0.819471,0.836659,0.540056,0.892616,0.714339,0.708149,0.918618,0.243804,0.373346,0.987993,0.354681,0.935115,0.616022,0.901278,0.552115,0.0916502,0.423412,0.629717,0.799927,0.349299,0.736721,0.915462,0.397208,0.467838,0.409297,0.707539,0.0655046,0.331371,0.0799599,0.173196,0.591375,0.804585,0.542471,0.755949,0.0586012,0.030686,0.953652,0.441217,0.101369,0.725027,0.485807,0.0937968,0.729551,0.702197,0.769307,0.0402281,0.946673,0.360552,0.489455,0.351879,0.546922,0.90192,0.403111,0.989256,0.0196445,0.0736405,0.059027,0.124241,0.657886,0.702997,0.657351,0.984165,0.932011,0.495496,0.518966,0.643162,0.452675,0.238415,0.28017,0.186524,0.0690864,0.090225,0.795769,0.46705,0.194619,0.452914,0.115598,0.757914,0.96962,0.363189,0.787165,0.27375,0.347891,0.77728,0.75978,0.319299,0.66189,0.0294671,0.303918,0.232972,0.312679,0.989083,0.367832,0.906076,0.25981,0.286942,0.562722,0.687284,0.206579,0.631705,0.341393,0.752429,0.0359398,0.69934,0.434687,0.186157,0.830933,0.197619,0.372743,0.843613,0.279642,0.761943,0.999702,0.0134823,0.111704,0.649854,0.569542,0.885295,0.515142,0.390408,0.935873,0.0626731,0.461829,0.66415,0.634449,0.224782,0.51706,0.666333,0.932254,0.421276,0.61075,0.454221,0.0121652,0.620672,0.96897,0.593658,0.689915,0.382535,0.0988247,0.167671,0.733163,0.904271,0.830251,0.360587,0.115139,0.295088,0.410105,0.854819,0.211325,0.36294,0.833857,0.907035,0.738797,0.38372,0.637175,0.00713849,0.314443,0.0201412,0.623653,0.941807,0.902851,0.666106,0.145098,0.178694,0.00216502,0.920828,0.592017,0.173128,0.91909,0.779153,0.471784,0.372685,0.154602,0.0719315,0.280472,0.876074,0.264309,0.255149,0.879915,0.00589675,0.381024,0.380966,0.806977,0.838723,0.943319,0.896586,0.58287,0.361514,0.705228,0.0257998,0.16592,0.319124,0.800473,0.962946,0.641301,0.663889,0.546353,0.62564,0.099124,0.333959,0.429763,0.133692,0.631812,0.298958,0.440022,0.608126,0.363085,0.461343,0.512596,0.0420266,0.255687,0.0726322,0.815182,0.836776,0.380564,0.137093,0.340718,0.905642,0.85459,0.632274,0.939723,0.663462,0.0166247,0.219902,0.205219,0.402925,0.383663,0.851961,0.671174,0.497591,0.897759,0.126629,0.221015,0.839201,0.300433,0.807472,0.946556,0.957545,0.325383,0.723016,0.0539126,0.407509,0.557064,0.416513,0.711462,0.49413,0.945782,0.727369,0.443577,0.1418,0.593183,0.905109,0.703197,0.218044,0.494079,0.0704837,0.800358,0.894463,0.202277,0.955287,0.323008,0.540265,0.809481,0.0395055,0.181961,0.709918,0.224762,0.0430056,0.206343,0.875136,0.677376,0.973676,0.28682,0.804535,0.0316637,0.57411,0.362368,0.15568,0.979124,0.966399,0.683333,0.922081,0.257225,0.726333,0.181654,0.780906,0.0434206,0.747085,0.834898,0.241041,0.867046,0.454852,0.745257,0.178884,0.233606,0.843215,0.131521,0.45651,0.3764,0.91248,0.841047,0.102907,0.361883,0.759272,0.396024,0.83949,0.422105,0.641175,0.587704,0.651551,0.047326,0.589096,0.845972,0.482174,0.370845,0.861683,0.755225,0.500601,0.485566,0.00526565,0.300508,0.616668,0.884896,0.645185,0.0322824,0.0803084,0.531034,0.483723,0.773207,0.775302,0.662952,0.157372,0.659133,0.823482,0.182806,0.871825,0.86115,0.00262278,0.77004,0.711444,0.296319,0.0646018,0.855124,0.296691,0.621417,0.174054,0.89761,0.313525,0.101758,0.740651,0.835316,0.940777,0.970979,0.250568,0.430613,0.402067,0.500798,0.890264,0.672834,0.864614,0.503081,0.0349787,0.398736,0.911714,0.319492,0.478611,0.673891,0.685141,0.661692,0.84322,0.331379,0.582329,0.529105,0.0603474,0.398752,0.776227,0.36438,0.559722,0.95664,0.771633,0.444214,0.764835,0.0940188,0.181381,0.177159,0.310259,0.97224,0.149415,0.459674,0.165428,0.950383,0.834806,0.475615,0.249015,0.358716,0.434728,0.0786453,0.424811,0.85057,0.612972,0.696843,0.392039,0.252541,0.804952,0.839351,0.490151,0.784391,0.248778,0.652987,0.307649,0.401569,0.317793,0.96917,0.900055,0.016418,0.62137,0.447054,0.114091,0.199543,0.428323,0.189628,0.0487688,0.665588,0.348307,0.291801,0.545334,0.959622,0.69624,0.339353,0.132841,0.597084,0.5056,0.0666583,0.798804,0.116478,0.284118,0.364973,0.140932,0.929398,0.701643,0.511584,0.944758,0.818985,0.365841,0.467071,0.0813891,0.566346,0.768135,0.680925,0.282043,0.706953,0.556794,0.0629392,0.844931,0.0146113,0.279495,0.594137,0.760219,0.951567,0.14458,0.493521,0.801265,0.547001,0.791302,0.159375,0.895475,0.189454,0.441094,0.683776,0.412427,0.397676,0.393167,0.604522,0.897184,0.41003,0.00374478,0.925694,0.0183752,0.269551,0.561583,0.777217,0.978001,0.216246,0.943649,0.39705,0.285319,0.644986,0.295201,0.394459,0.749561,0.650654,0.669332,0.981612,0.628124,0.978689,0.459296,0.345141,0.0903526,0.873155,0.975407,0.413419,0.92505,0.890365,0.301235,0.0877748,0.611432,0.044448,0.201949,0.887107,0.105002,0.501217,0.552754,0.255236,0.611359,0.8846,0.366994,0.464533,0.240112,0.515039,0.801459,0.400529,0.943811,0.637055,0.980231,0.685101,0.520749,0.37846,0.263211,0.241343,0.643102,0.592133,0.0586537,0.870705,0.278307,0.702973,0.368019,0.968586,0.0418268,0.783535,0.806149,0.728605,0.352907,0.106692,0.399474,0.0484207,0.0141492,0.719042,0.905136,0.947629,0.437935,0.500848,0.907666,0.802071,0.165753,0.166096,0.964735,0.363093,0.678985,0.119934,0.430822,0.428343,0.323621,0.0396165,0.532642,0.368892,0.165546,0.180529,0.0916377,0.82281,0.775919,0.485454,0.304026,0.173697,0.816183,0.419863,0.114534,0.555562,0.862011,0.818328,0.023511,0.765555,0.375708,0.77133,0.5661,0.855291,0.978984,0.754845,0.19398,0.645242,0.712386,0.592536,0.684301,0.968077,0.781157,0.0932189,0.202208,0.61429,0.871732,0.119825,0.152389,0.014617,0.709653,0.651949,0.418518,0.645703,0.617841,0.00264466,0.932012,0.629233,0.623703,0.939303,0.802695,0.451655,0.537568,0.412987,0.0814576,0.0927295,0.349067,0.58958,0.524404,0.0105058,0.822247,0.168656,0.0840861,0.908217,0.232934,0.220271,0.383439,0.445251,0.780588,0.250134,0.890421,0.0992931,0.380909,0.722243,0.304385,0.553404,0.838817,0.965627,0.239079,0.469743,0.175632,0.0182757,0.765722,0.243878,0.116399,0.58621,0.533342,0.268261,0.611532,0.157935,0.319879,0.609258,0.0628403,0.146446,0.819986,0.804952,0.352852,0.408565,0.302319,0.680824,0.493077,0.632647,0.919709,0.815909,0.941425,0.727135,0.674638,0.769356,0.869212,0.985143,0.801431,0.555999,0.874871,0.969631,0.457854,0.254019,0.622148,0.478958,0.394146,0.900873,0.0153899,0.814373,0.0561577,0.94049,0.319949,0.535903,0.500979,0.641718,0.125938,0.0787158,0.286182,0.889499,0.344586,0.259882,0.942169,0.13444,0.144631,0.348696,0.511869,0.764618,0.0502779,0.501601,0.899331,0.00713468,0.661222,0.0496479,0.441518,0.885083,0.53802,0.905668,0.217696,0.865598,0.771649,0.978449,0.398626,0.302461,0.578942,0.816269,0.250904,0.598742,0.831432,0.212083,0.373574,0.222704,0.395625,0.222579,0.616342,0.686039,0.155334,0.108575,0.0473732,0.504553,0.667292,0.698004,0.404888,0.402944,0.756101,0.917634,0.332017,0.40604,0.204542,0.000203133,0.777895,0.148358,0.463705,0.207249,0.497903,0.531607,0.373816,0.725146,0.946693,0.639384,0.454185,0.439018,0.756254,0.824044,0.269268,0.971878,0.325059,0.784646,0.0401002,0.81527,0.310225,0.720397,0.452561,0.155187,0.732064,0.7983,0.428559,0.604505,0.0160346,0.511748,0.668621,0.741215,0.368671,0.888217,0.847196,0.977077,0.266192,0.888451,0.231527,0.606689,0.391949,0.646208,0.0650675,0.140411,0.00945425,0.0569974,0.163349,0.800296,0.177637,0.549042,0.283018,0.445536,0.891573,0.738777,0.931629,0.211929,0.0450308,0.309207,0.0249904,0.461145,0.450056,0.434517,0.44289,0.0534404,0.907907,0.365518,0.112864,0.782858,0.374053,0.907109,0.206383,0.615399,0.609503,0.258237,0.499783,0.375267,0.304795,0.0435438,0.827485,0.833162,0.459309,0.974593,0.019086,0.668001,0.0299051,0.467552,0.665452,0.182672,0.235942,0.098794,0.0324748,0.530249,0.394388,0.16524,0.0133672,0.740437,0.721918,0.67594,0.238841,0.844009,0.185317,0.325807,0.134748,0.57997,0.0583323,0.513782,0.43904,0.537168,0.965013,0.706796,0.48645,0.0495265,0.425355,0.869698,0.512109,0.921897,0.581901,0.00382185,0.203753,0.229725,0.440548,0.504479,0.0119146,0.175587,0.598996,0.869693,0.0590482,0.00850368,0.738415,0.688639,0.40302,0.554553,0.233146,0.639572,0.722383,0.282398,0.194965,0.989262,0.966839,0.441562,0.281378,0.90286,0.780544,0.616601,0.642886,0.554285,0.48632,0.286808,0.714078,0.308904,0.33761,0.4292,0.641078,0.738722,0.627818,0.245814,0.318483,0.0334626,0.00622785,0.596458,0.66303,0.316573,0.782677,0.591407,0.151558,0.597564,0.66734,0.745695,0.523425,0.339507,0.455386,0.260434,0.813685,0.721281,0.590598,0.618713,0.225878,0.798882,0.262751,0.212028,0.512875,0.652731,0.258051,0.48577,0.687962,0.320291,0.310286,0.397938,0.653578,0.360016,0.225299,0.8285,0.633692,0.268495,0.549641,0.623895,0.495854,0.429262,0.511687,0.703863,0.803611,0.781223,0.705535,0.941526,0.44135,0.857635,0.284078,0.273995,0.339747,0.344563,0.0265747,0.943928,0.165482,0.625114,0.710107,|0.4508,0.610058,0.96477,0.95347,0.0373253,0.885183,0.0916135,0.670671,0.540767,0.910705,0.182891,0.699862,0.338287,0.285116,0.990246,0.286993,0.221037,0.473802,0.921961,0.961218,0.764894,0.0576363,0.586706,0.241313,0.365802,0.339648,0.197833,0.249746,0.555949,0.609535,0.900721,0.452785,0.412724,0.647854,0.265326,0.0882844,0.0423769,0.656557,0.493381,0.312743,0.841129,0.36309,0.176837,0.416879,0.000615418,0.417971,0.804577,0.41566,0.363349,0.399209,0.410231,0.847967,0.752417,0.920282,0.472779,0.101247,0.34372,0.623164,0.245067,0.307857,0.367832,0.516401,0.301646,0.998996,0.272244,0.0761662,0.579679,0.98306,0.555877,0.47561,0.94292,0.417271,0.794112,0.668933,0.225659,0.00317091,0.778997,0.0896377,0.727911,0.0358335,0.0242524,0.92101,0.844609,0.414609,0.294972,0.491544,0.768876,0.690354,0.637914,0.430927,0.987789,0.158711,0.304987,0.809194,0.668051,0.910422,0.556428,0.186869,0.648654,0.43596,0.299073,0.958428,0.0987339,0.0909055,0.349175,0.861304,0.193963,0.392039,0.602515,0.575316,0.463859,0.961923,0.562949,0.302975,0.558229,0.449716,0.304825,0.886095,0.41494,0.168562,0.485866,0.0372171,0.214927,0.917226,0.834534,0.639363,0.632798,0.819596,0.43856,0.325559,0.503149,0.139756,0.895825,0.632293,0.855559,0.941656,0.921252,0.907765,0.75152,0.95327,0.969343,0.151996,0.0756068,0.288451,0.230036,0.818118,0.274249,0.467314,0.112199,0.159716,0.694718,0.668175,0.459741,0.715157,0.79855,0.132067,0.184339,0.311129,0.247958,0.314582,0.772111,0.206534,0.439481,0.919104,0.154757,0.932577,0.392346,0.0788333,0.359044,0.694187,0.169244,0.711859,0.0902874,0.146358,0.276022,0.091108,0.806253,0.110129,0.901788,0.202949,0.995066,0.935763,0.0602067,0.850684,0.407036,0.809138,0.365435,0.620502,0.0789952,0.68093,0.773249,0.722453,0.128557,0.919177,0.711001,0.573599,0.158558,0.546271,0.491382,0.108549,0.942584,0.589467,0.715372,0.890623,0.0745564,0.490417,0.750264,0.911108,0.87038,0.514998,0.951476,0.377281,0.445103,0.270782,0.0277198,0.594144,0.687082,0.0198722,0.429651,0.723919,0.141874,0.296433,0.882294,0.822404,0.668398,0.0542399,0.645302,0.556205,0.471883,0.832516,0.772027,0.489981,0.818198,0.272747,0.830661,0.0282379,0.695837,0.541003,0.549885,0.403697,0.175907,0.354095,0.563524,0.572737,0.7922,0.648072,0.599118,0.748077,0.0777371,0.316233,0.163187,0.325025,0.922794,0.37723,0.954521,0.295763,0.0332767,0.730984,0.252318,0.406899,0.794599,0.00658619,0.589897,0.971833,0.266846,0.510333,0.0114253,0.768618,0.0623879,0.200719,0.594268,0.0424115,0.488498,0.355039,0.387304,0.103065,0.0319479,0.0287997,0.166261,0.272272,0.274338,0.205861,0.0713441,0.191027,0.33528,0.657209,0.431524,0.528561,0.0285561,0.882724,0.60339,0.355219,0.0124449,0.612852,0.0740904,0.314778,0.302254,0.134527,0.301138,0.785257,0.974251,0.601368,0.279861,0.914534,0.878435,0.273653,0.658992,0.652815,0.573322,0.0542698,0.364666,0.581412,0.94462,0.763911,0.897268,0.544075,0.525982,0.693754,0.41493,0.345987,0.0973043,0.476627,0.368242,0.631658,0.133275,0.226847,0.093098,0.182279,0.416477,0.617764,0.350684,0.598788,0.15934,0.643638,0.634101,0.985222,0.338413,0.274824,0.599152,0.711066,0.422769,0.0948286,0.0154012,0.972145,0.308145,0.732718,0.551638,0.109907,0.783115,0.692457,0.190929,0.639183,0.331258,0.802459,0.970846,0.863853,0.000428021,0.660861,0.535659,0.773476,0.671448,0.806664,0.693709,0.333005,0.797891,0.105303,0.399048,0.679222,0.966197,0.40172,0.28903,0.34032,0.738982,0.0615854,0.987829,0.378736,0.376827,0.644337,0.294933,0.89795,0.685506,0.339028,0.638571,0.540581,0.782812,0.95471,0.212114,0.433442,0.344303,0.404503,0.281086,0.0568816,0.353965,0.725461,0.557094,0.248739,0.654416,0.318589,0.99546,0.826242,0.206243,0.232237,0.00285131,0.57003,0.739049,0.184688,0.456097,0.211706,0.446403,0.759955,0.724229,0.383947,0.536252,0.525699,0.81882,0.56349,0.705843,0.233155,0.289306,0.565971,0.124283,0.524724,0.0199046,0.715331,0.873761,0.436311,0.526684,0.616343,0.306912,0.423746,0.912144,0.643994,0.703647,0.525896,0.800141,0.583257,0.574705,0.690043,0.4603,0.997087,0.950461,0.627928,0.630203,0.0633371,0.63202,0.142424,0.880976,0.335976,0.123578,0.567726,0.707991,0.639723,0.566824,0.00907421,0.809745,0.900522,0.279806,0.791334,0.190915,0.743626,0.558631,0.426149,0.0352793,0.161669,0.608058,0.370398,0.352764,0.997123,0.517702,0.766593,0.931752,0.294642,0.095732,0.308823,0.0305702,0.955897,0.615099,0.195216,0.897093,0.160953,0.732729,0.816643,0.218319,0.582254,0.138233,0.820218,0.724044,0.268257,0.0796218,0.292084,0.123213,0.310411,0.0621883,0.0248241,0.493759,0.774178,0.76354,0.837264,0.700555,0.668842,0.981688,0.508292,0.780673,0.572402,0.369605,0.917551,0.447548,0.758634,0.345568,0.421199,0.552265,0.0110013,0.520511,0.736346,0.0438989,0.0362531,0.38015,0.524473,0.771157,0.219944,0.938275,0.0988967,0.551172,0.742407,0.230746,0.444346,0.591583,0.753363,0.810679,0.234225,0.505456,0.261969,0.81904,0.181598,0.287268,0.156863,0.561899,0.445111,0.719511,0.228269,0.755491,0.661798,0.536196,0.635423,0.62408,0.663785,0.683886,0.190116,0.433783,0.908041,0.0307621,0.761978,0.886852,0.128886,0.691901,0.884578,0.876325,0.98306,0.0641648,0.726553,0.985571,0.212638,0.985833,0.890836,0.48495,0.163075,0.52576,0.619276,0.455194,0.833997,0.413594,0.649205,0.337399,0.510167,0.419695,0.0799807,0.0599366,0.208626,0.2311,0.599341,0.78734,0.897293,0.395004,0.724029,0.449045,0.843325,0.346318,0.360759,0.665753,0.688244,0.111808,0.788583,0.843903,0.454578,0.953898,0.042851,0.610316,0.622907,0.166986,0.322826,0.894563,0.904072,0.109236,0.725075,0.981519,0.37131,0.251948,0.315072,0.106414,0.610392,0.944172,0.424685,0.223925,0.708066,0.590238,0.670374,0.879323,0.75589,0.0412623,0.3799,0.213947,0.467551,0.5741,0.265097,0.168088,0.853662,0.0302095,0.643145,0.0706371,0.336832,0.811516,0.69394,0.974812,0.257322,0.830377,0.000270128,0.407565,0.610379,0.830291,0.788487,0.935814,0.550517,0.972063,0.848795,0.799047,0.247028,0.266011,0.0607525,0.487779,0.43007,0.536751,0.501955,0.214,0.485891,0.475145,0.909474,0.106722,0.621155,0.782604,0.514109,0.220587,0.663946,0.602949,0.125144,0.687744,0.0806441,0.45997,0.867905,0.279897,0.831149,0.466334,0.867611,0.486039,0.526103,0.879551,0.867268,0.986445,0.135134,0.935643,0.163834,0.519006,0.65381,0.0737452,0.167003,0.63683,0.849492,0.676136,0.349633,0.937041,0.211298,0.363949,0.287783,0.712995,0.0449266,0.40393,0.922257,0.991875,0.873193,0.241291,0.846513,0.148142,0.9806,0.758497,0.517436,0.685864,0.460683,0.122688,0.419537,0.861796,0.154844,0.726199,0.779815,0.960338,0.333918,0.0156345,0.0879186,0.360193,0.999852,0.000496626,0.961675,0.756714,0.690073,0.239969,0.0400124,0.108297,0.932134,0.480616,0.783721,0.12692,0.846398,0.262166,0.00663364,0.20632,0.302585,0.63351,0.897298,0.843187,0.0450452,0.92869,0.118444,0.12045,0.594313,0.456469,0.440277,0.515585,0.506795,0.644784,0.58518,0.128003,0.517941,0.572628,0.175147,0.634033,0.310006,0.904959,0.937967,0.072126,0.146362,0.255221,0.291247,0.561626,0.205003,0.0276588,0.0270776,0.578751,0.513559,0.158862,0.21093,0.620721,0.279989,0.786553,0.683353,0.548829,0.187107,0.79571,0.814308,0.163033,0.87448,0.170188,0.177487,0.151817,0.748544,0.57518,0.00211072,0.266975,0.0991474,0.0706548,0.706402,0.470088,0.218948,0.114109,0.820696,0.914092,0.133355,0.342597,0.825741,0.574987,0.77793,0.996975,0.877732,0.418641,0.415963,0.496963,0.0997126,0.499367,0.485838,0.612619,0.382052,0.121448,0.0498801,0.214286,0.190574,0.191127,0.0113289,0.844486,0.582901,0.595402,0.205717,0.666466,0.21136,0.378585,0.47652,0.232281,0.24869,0.167761,0.539699,0.179934,0.790958,0.827235,0.362607,0.244718,0.77383,0.246565,0.0347976,0.118017,0.226005,0.0401375,0.255085,0.919448,0.753678,0.180028,0.70204,0.57992,0.359938,0.061487,0.885246,0.858948,0.827927,0.785967,0.251628,0.542477,0.389066,0.87282,0.207898,0.541503,0.201876,0.935666,0.182844,0.922309,0.10832,0.366291,0.974951,0.898753,0.50249,0.8214,0.864705,0.0387433,0.200959,0.00749272,0.111826,0.621276,0.369192,0.280946,0.409139,0.212527,0.877363,0.341864,0.58524,0.339377,0.0183073,0.78381,0.327673,0.132627,0.870497,0.812617,0.814622,0.233428,0.336644,0.48261,0.509634,0.614665,0.558544,0.68913,0.487426,0.878807,0.625684,0.260592,0.643603,0.787648,0.685137,0.784996,0.549508,0.3277,0.386578,0.922359,0.107433,0.659936,0.393266,0.797111,0.290917,0.0060001,0.584706,0.289014,0.13857,0.345713,0.588989,0.32094,0.727207,0.161682,0.402447,0.199924,0.0510662,0.275536,0.694941,0.81412,0.756803,0.667732,0.910466,0.642478,0.367049,0.345368,0.134273,0.638139,0.302621,0.483089,0.824362,0.514154,0.946629,0.243559,0.69309,0.42572,0.367018,0.61726,0.750746,0.277859,0.757994,0.819041,0.176887,0.886878,0.331189,0.884229,0.978641,0.983667,0.00649297,0.448918,0.79536,0.218261,0.235761,0.622796,0.310962,0.665359,0.692551,0.219271,0.016111,0.877534,0.442312,0.9027,0.264228,0.424381,0.910369,0.21311,0.0753105,0.481433,0.812195,0.560977,0.224883,0.848213,0.188861,0.0751995,0.72282,0.92825,0.507339,0.883752,0.738856,0.867368,0.526449,0.0739666,0.378616,0.879294,0.710135,0.514054,0.014834,0.816699,0.0845857,0.127489,0.242009,0.00700039,0.422477,0.104913,0.61664,|0.25375,0.760805,0.351336,0.201699,0.299951,0.648604,0.563356,0.0840964,0.443482,0.845146,0.870053,0.575153,0.096152,0.140353,0.75067,0.716464,0.150082,0.759742,0.235535,0.817189,0.696923,0.333079,0.268353,0.362689,0.500169,0.777337,0.714278,0.517054,0.287709,0.989034,0.481744,0.7748,0.0498559,0.3182,0.193927,0.229566,0.462621,0.898486,0.0636291,0.77263,0.419599,0.969747,0.124309,0.881794,0.948732,0.172431,0.464037,0.592536,0.724131,0.514071,0.768302,0.734172,0.586417,0.597521,0.0164818,0.930995,0.0609896,0.960217,0.483127,0.438315,0.155003,0.174462,0.672501,0.408248,0.714463,0.734398,0.287704,0.0501453,0.448061,0.538276,0.0480242,0.384443,0.731652,0.463287,0.649484,0.949243,0.551748,0.94314,0.420077,0.533967,0.282489,0.883243,0.146829,0.0965207,0.227706,0.526468,0.691809,0.263956,0.949927,0.671981,0.446917,0.0809052,0.0631574,0.251771,0.33389,0.267796,0.559061,0.329473,0.752883,0.346205,0.990226,0.539969,0.511233,0.394577,0.363058,0.866493,0.543243,0.360777,0.252469,0.964735,0.78542,0.719704,0.981174,0.868209,0.991391,0.171513,0.629461,0.965049,0.335748,0.485329,0.664421,0.928788,0.592518,0.575858,0.388451,0.306802,0.95861,0.639719,0.661843,0.351494,0.432725,0.137953,0.602747,0.966582,0.827312,0.871184,0.0321254,0.158905,0.0399085,0.671833,0.696505,0.109064,0.680261,0.189371,0.672581,0.646886,0.262385,0.0859523,0.8481,0.865289,0.207495,0.385555,0.563378,0.143803,0.990678,0.819794,0.374185,0.337877,0.422732,0.821085,0.320111,0.264345,0.551881,0.726295,0.195463,0.462859,0.581223,0.463267,0.398329,0.879528,0.0619916,0.790432,0.155449,0.647075,0.036299,0.665968,0.144913,0.219226,0.405533,0.101032,0.877635,0.635426,0.323996,0.028512,0.680729,0.767064,0.854218,0.0451155,0.00255084,0.358912,0.673743,0.0961322,0.0798024,0.500999,0.172614,0.109411,0.376203,0.29005,0.463608,0.982036,0.565969,0.172251,0.517618,0.272225,0.0369298,0.324542,0.392011,0.685358,0.686298,0.0459094,0.202025,0.203562,0.425579,0.391864,0.592099,0.460725,0.685733,0.162238,0.391523,0.565667,0.0997116,0.81895,0.960172,0.532468,0.721003,0.621624,0.943817,0.657038,0.965684,0.303454,0.421754,0.103005,0.135328,0.629901,0.955803,0.649774,0.977731,0.65665,0.492753,0.71043,0.468868,0.546344,0.561596,0.897817,0.195095,0.657299,0.14297,0.0315817,0.873207,0.298504,0.358808,0.550807,0.696947,0.0223861,0.206228,0.993346,0.0326365,0.0770164,0.214737,0.915025,0.628793,0.0508311,0.0950571,0.395113,0.0406473,0.387952,0.493848,0.0419912,0.341181,0.747269,0.956728,0.104685,0.332171,0.766563,0.898108,0.87749,0.0136624,0.0186492,0.507533,0.781696,0.528657,0.532925,0.637415,0.35359,0.113332,0.41187,0.428018,0.509683,0.573825,0.622314,0.751839,0.72777,0.899241,0.786526,0.213677,0.412371,0.854248,0.691053,0.383709,0.419431,0.37905,0.536468,0.0791436,0.231928,0.414666,0.613979,0.935553,0.287803,0.818495,0.0499606,0.540401,0.318676,0.934484,0.823195,0.996047,0.273069,0.369645,0.38361,0.456392,0.961991,0.740131,0.774034,0.469245,0.895287,0.79204,0.342936,0.0963825,0.020939,0.812764,0.254792,0.305445,0.385813,0.266954,0.155815,0.995085,0.503254,0.565073,0.298147,0.358797,0.425689,0.0507267,0.419739,0.537426,0.743132,0.763772,0.148465,0.19381,0.498464,0.582877,0.572316,0.522607,0.648875,0.744961,0.227932,0.730611,0.757596,0.23107,0.960932,0.978031,0.762377,0.64944,0.945045,0.65023,0.981597,0.462326,0.948354,0.46701,0.34733,0.531003,0.532903,0.419299,0.338998,0.590763,0.865389,0.481586,0.382862,0.195458,0.952815,0.102749,0.786461,0.315256,0.887,0.665098,0.976923,0.167746,0.269506,0.292834,0.171074,0.675838,0.673615,0.577963,0.516536,0.372578,0.493208,0.57677,0.746623,0.101154,0.0194269,0.633471,0.590861,0.0549069,0.967168,0.851298,0.839936,0.224699,0.509286,0.245781,0.488092,0.0485337,0.850617,0.17436,0.571842,0.47153,0.755597,0.431057,0.232743,0.117914,0.928086,0.508631,0.871438,0.698795,0.574812,0.579324,0.923903,0.0351802,0.47049,0.152501,0.648944,0.800792,0.25308,0.993578,0.466124,0.452901,0.977999,0.892501,0.743528,0.274577,0.028777,0.703063,0.474728,0.725475,0.982089,0.898074,0.957191,0.578958,0.211282,0.122864,0.818278,0.598921,0.573168,0.132669,0.917914,0.302865,0.386733,0.527843,0.304835,0.678563,0.384633,0.214339,0.0841119,0.225795,0.60025,0.757559,0.227251,0.645548,0.0119327,0.177539,0.851116,0.693537,0.691014,0.0459407,0.772936,0.0528157,0.596594,0.398151,0.975035,0.856971,0.952903,0.852698,0.175083,0.431127,0.203284,0.938305,0.830716,0.100954,0.956644,0.379234,0.486315,0.484607,0.868216,0.148637,0.550878,0.990562,0.156641,0.719301,0.410675,0.234434,0.709655,0.379678,0.377424,0.512947,0.231218,0.647806,0.362246,0.789769,0.120328,0.813989,0.888663,0.347984,0.371279,0.978393,0.446925,0.230464,0.95735,0.187307,0.847953,0.117849,0.729402,0.786866,0.363582,0.531504,0.291147,0.259663,0.385349,0.940629,0.27264,0.779562,0.760519,0.424047,0.385894,0.364233,0.869453,0.908801,0.792601,0.615857,0.657401,0.314386,0.149612,0.765135,0.693815,0.692579,0.301054,0.115379,0.35263,0.997674,0.177626,0.632322,0.681226,0.249562,0.79752,0.330546,0.815074,0.941892,0.845363,0.739611,0.155212,0.317202,0.902023,0.157151,0.168056,0.695097,0.218212,0.797851,0.863726,0.42659,0.481238,0.642395,0.228781,0.202067,0.733476,0.684441,0.49087,0.19806,0.697847,0.747967,0.282753,0.129365,0.955577,0.0378213,0.919448,0.762766,0.781443,0.774204,0.970753,0.205059,0.90029,0.140884,0.406365,0.374407,0.0710032,0.234007,0.0388583,0.789073,0.500529,0.749911,0.577299,0.204139,0.823277,0.79416,0.393353,0.00266355,0.355625,0.877085,0.591286,0.903445,0.758606,0.312958,0.672773,0.251148,0.306311,0.603058,0.469867,0.730743,0.154613,0.0719775,0.384932,0.672801,0.894906,0.565209,0.345154,0.235598,0.163318,0.0344635,0.706663,0.29436,0.459036,0.776798,0.282623,0.995481,0.821119,0.086618,0.278039,0.983877,0.938803,0.39726,0.536492,0.0189133,0.890509,0.871787,0.377265,0.584674,0.991339,0.95362,0.0429458,0.164268,0.113887,0.809285,0.689416,0.0334442,0.169986,0.347779,0.41733,0.691773,0.995731,0.709072,0.916141,0.837408,0.600821,0.118804,0.0590537,0.0925899,0.594751,0.907997,0.239495,0.401488,0.686247,0.729126,0.360691,0.493466,0.748497,0.51344,0.336718,0.691976,0.824974,0.617789,0.308104,0.61587,0.791956,0.876497,0.468595,0.686241,0.0103005,0.970468,0.302533,0.969251,0.323847,0.295158,0.658296,0.601845,0.0828057,0.615438,0.368417,0.483821,0.847201,0.088475,0.0404183,0.275325,0.203378,0.167295,0.0127138,0.635567,0.210438,0.494047,0.710027,0.753563,0.519416,0.299295,0.896693,0.718341,0.943065,0.350327,0.753298,0.443599,0.233318,0.436586,0.689318,0.514272,0.373801,0.324889,0.834919,0.160018,0.410516,0.408405,0.641497,0.706207,0.0447955,0.021486,0.433514,0.760156,0.349959,0.503637,0.558263,0.305899,0.41363,0.888955,0.654602,0.817057,0.219787,0.963962,0.162981,0.207614,0.541949,0.770746,0.984376,0.280792,0.231828,0.793233,0.276666,0.352716,0.646411,0.0741649,0.805321,0.135083,0.510668,0.110607,0.509932,0.720545,0.625333,0.135323,0.452755,0.615027,0.307682,0.107991,0.919431,0.919299,0.350228,0.857138,0.740008,0.120152,0.515984,0.757744,0.423396,0.908545,0.321124,0.00776303,0.179273,0.0374961,0.017222,0.238379,0.494407,0.161122,0.891093,0.159609,0.992142,0.865973,0.252732,0.542009,0.484327,0.664417,0.672347,0.441085,0.114514,0.165565,0.105209,0.0978715,0.749732,0.265028,0.82352,0.368383,0.33417,0.349664,0.735794,0.852483,0.949322,0.0628216,0.267592,0.861749,0.100147,0.509129,0.243792,0.244938,0.113837,0.505534,0.0790343,0.751417,0.678704,0.681399,0.848928,0.0171905,0.831709,0.177038,0.931907,0.680427,0.240477,0.678757,0.185787,0.525958,0.59314,0.786696,0.0739499,0.962465,0.699737,0.232737,0.283483,0.42171,0.956223,0.108021,0.671878,0.101621,0.258052,0.103157,0.506673,0.668843,0.220522,0.231921,0.748792,0.254081,0.307889,0.187992,0.709413,0.361254,0.0241993,0.430514,0.301112,0.576342,0.62298,0.0562963,0.37017,0.616792,0.884928,0.710443,0.471213,0.584656,0.434717,0.736619,0.774369,0.261318,0.0535218,0.282414,0.930965,0.389866,0.944373,0.270047,0.0212812,0.0217667,0.844868,0.566125,0.0526534,0.879948,0.446476,0.251212,0.178038,0.572048,0.228235,0.960943,0.768164,0.485181,0.866865,0.908498,0.950141,0.828824,0.58547,0.0354211,0.863448,0.417119,0.914913,0.719502,0.421806,0.916882,0.582812,0.635866,0.630445,0.72948,0.305116,0.174335,0.56487,0.157588,0.746512,0.264379,0.473621,0.816859,0.552063,0.933209,0.206142,0.918331,0.732846,0.185603,0.616233,0.774513,0.765818,0.324343,0.293709,0.273221,0.765195,0.317086,0.673436,0.742481,0.240817,0.921953,0.807577,0.82207,0.969089,0.553031,0.43193,0.772967,0.723906,0.0960246,0.210073,0.593063,0.095719,0.788076,0.431871,0.277859,0.834159,0.383274,0.66722,0.705274,0.305876,0.432814,0.38727,0.443053,0.50723,0.800265,0.995544,0.245666,0.881357,0.80191,0.0959522,0.806602,0.00241232,0.295999,0.360485,0.340035,0.148934,0.89439,0.444051,0.0233334,0.757895,0.815756,0.206673,0.0287663,0.368307,0.94954,0.530656,0.402248,0.640438,0.770272,0.300615,0.709807,0.422967,0.00345695,0.682029,0.603013,0.641911,0.292323,0.398961,0.4385,0.381291,0.438495,0.220582,0.563019,0.808139,0.608025,0.75555,0.52116,0.708059,0.134142,0.685385,0.850798,0.943607,|0.844442,0.164057,0.352562,0.0147642,0.300254,0.0982249,0.840888,0.0354181,0.956251,0.260189,0.223992,0.712871,0.113565,0.542819,0.998285,0.225003,0.928681,0.604982,0.351744,0.215816,0.0158063,0.746805,0.742358,0.438143,0.243483,0.232189,0.510242,0.631477,0.592354,0.136942,0.177647,0.585604,0.812552,0.484045,0.630878,0.310156,0.263121,0.0911938,0.440349,0.599287,0.348449,0.556704,0.405524,0.999985,0.994242,0.966438,0.374817,0.871297,0.343715,0.119783,0.236176,0.114713,0.195682,0.732033,0.729904,0.674899,0.663308,0.697287,0.256404,0.0360389,0.19305,0.690918,0.696424,0.755516,0.668016,0.577806,0.83531,0.0305929,0.2491,0.604569,0.777206,0.640812,0.367369,0.899009,0.382029,0.610287,0.128984,0.0703976,0.0883134,0.685881,0.832388,0.476859,0.813388,0.901721,0.0576695,0.719003,0.546351,0.427903,0.872461,0.595835,0.0140143,0.0442765,0.32546,0.0983507,0.425745,0.235809,0.869942,0.533838,0.0798239,0.971754,0.86972,0.394042,0.327308,0.738897,0.324729,0.988293,0.515867,0.143215,0.58809,0.696779,0.552481,0.216654,0.349574,0.406865,0.142963,0.552289,0.977194,0.5248,0.102691,0.908727,0.904696,0.863875,0.875407,0.286317,0.211276,0.790821,0.0535132,0.431615,0.71657,0.689161,0.882091,0.52029,0.941261,0.850085,0.0571744,0.173119,0.065319,0.0341785,0.354518,0.101769,0.375967,0.785988,0.493051,0.789712,0.323685,0.816548,0.427202,0.287618,0.0655966,0.918489,0.0643696,0.432175,0.927826,0.316,0.196166,0.228466,0.575094,0.235235,0.409862,0.79712,0.391396,0.319796,0.19868,0.552495,0.110757,0.956117,0.271593,0.245974,0.714999,0.409156,0.973498,0.389562,0.0867757,0.894971,0.950004,0.579958,0.108392,0.675309,0.916993,0.489875,0.371424,0.256397,0.413336,0.750947,0.519848,0.0945997,0.107044,0.455951,0.384698,0.248633,0.066614,0.0341501,0.35801,0.569127,0.297866,0.650556,0.897704,0.217245,0.233586,0.828883,0.0039677,0.354841,0.0168499,0.847829,0.970109,0.19646,0.224873,0.784945,0.850685,0.089514,0.387309,0.502404,0.949142,0.354423,0.997953,0.541249,0.663272,0.484876,0.2942,0.424455,0.77523,0.0996293,0.668292,0.137809,0.551832,0.672539,0.138059,0.100817,0.936201,0.997151,0.95442,0.260046,0.311343,0.0524731,0.717302,0.761405,0.0746583,0.405057,0.99332,0.834107,0.725858,0.144457,0.710537,0.554221,0.655024,0.415891,0.190961,0.114453,0.260262,0.082465,0.575427,0.297477,0.0835327,0.343103,0.162513,0.488023,0.725086,0.21861,0.720018,0.622585,0.153075,0.701188,0.112662,0.500507,0.06062,0.12328,0.391209,0.751105,0.353987,0.302195,0.44266,0.922675,0.603801,0.45485,0.448759,0.561423,0.695429,0.818825,0.896455,0.00189185,0.468008,0.405879,0.619962,0.975944,0.80461,0.751135,0.0498815,0.235447,0.0238869,0.124507,0.0442609,0.340112,0.0803244,0.356791,0.569944,0.818799,0.0972406,0.990263,0.972727,0.321692,0.561075,0.379808,0.158423,0.641709,0.505772,0.979935,0.148698,0.613533,0.094187,0.0411766,0.712155,0.373969,0.25368,0.0430149,0.651331,0.845674,0.700578,0.422658,0.696364,0.722882,0.933622,0.978457,0.0845224,0.769486,0.89693,0.833821,0.327561,0.271767,0.89117,0.391374,0.901647,0.0361804,0.12226,0.00273788,0.435789,0.97828,0.455241,0.679731,0.338349,0.459839,0.00086993,0.335467,0.719937,0.245333,0.958488,0.12525,0.994748,0.220739,0.835138,0.542549,0.821122,0.399628,0.925983,0.591695,0.4023,0.0902058,0.399785,0.507333,0.110819,0.540899,0.580677,0.716542,0.889726,0.719849,0.844621,0.134214,0.781814,0.599836,0.578123,0.846846,0.172905,0.108361,0.311257,0.357033,0.203234,0.742055,0.676679,0.683129,0.813522,0.985275,0.373013,0.555474,0.104127,0.691948,0.891254,0.296146,0.443038,0.227877,0.507879,0.487867,0.772874,0.83532,0.671092,0.65045,0.859514,0.0604074,0.402036,0.786099,0.684959,0.810832,0.465303,0.277941,0.25289,0.234166,0.389974,0.0206779,0.963282,0.608444,0.0864037,0.737415,0.910395,0.569206,0.240739,0.708968,0.778987,0.593354,0.595288,0.182111,0.228359,0.759977,0.181764,0.581559,0.0857481,0.9255,0.578033,0.275451,0.132122,0.970868,0.0398816,0.892848,0.158675,0.667887,0.42624,0.586441,0.90962,0.176716,0.098794,0.298608,0.671224,0.527878,0.392823,0.68334,0.547511,0.874344,0.590856,0.419003,0.152889,0.00709909,0.987854,0.087468,0.272079,0.610586,0.410204,0.369753,0.338448,0.592586,0.036294,0.940594,0.376747,0.713422,0.232334,0.940465,0.0615544,0.992911,0.942053,0.61073,0.748805,0.38901,0.942598,0.461669,0.489829,0.232545,0.809776,0.55309,0.213507,0.905242,0.0994183,0.63804,0.512497,0.637514,0.0682395,0.646688,0.911395,0.469561,0.874973,0.344478,0.486332,0.968974,0.228862,0.315403,0.562284,0.660973,0.177852,0.914593,0.932487,0.923756,0.962649,0.690119,0.947968,0.469886,0.20239,0.894837,0.466374,0.0913638,0.0282577,0.24767,0.631034,0.221796,0.26029,0.544384,0.122986,0.335313,0.5629,0.582935,0.433453,0.442905,0.251624,0.257495,0.032903,0.036594,0.38595,0.135355,0.499478,0.00820059,0.199678,0.0513694,0.16939,0.00094825,0.31559,0.716439,0.53388,0.391147,0.0987971,0.310722,0.391527,0.323472,0.717072,0.72414,0.205172,0.11284,0.931517,0.650691,0.941666,0.712786,0.297109,0.925951,0.1996,0.0546124,0.913504,0.930048,0.408993,0.35803,0.081706,0.281107,0.787786,0.854029,0.311051,0.251766,0.428288,0.00751746,0.356911,0.0891986,0.454092,0.286864,0.757897,0.849192,0.94992,0.209158,0.00275189,0.438832,0.223557,0.258829,0.642074,0.473024,0.719472,0.426947,0.41354,0.482955,0.230936,0.540558,0.170815,0.188918,0.527903,0.4639,0.787101,0.720189,0.757808,0.992912,0.395807,0.739244,0.0431402,0.529105,0.991924,0.956427,0.74997,0.311775,0.295792,0.666034,0.703425,0.906063,0.452789,0.890933,0.604779,0.831086,0.147876,0.066657,0.253076,0.722393,0.70398,0.500734,0.62978,0.289431,0.0306354,0.220924,0.0723162,0.47067,0.414267,0.46782,0.332734,0.450881,0.226197,0.770388,0.916697,0.109183,0.224315,0.289245,0.0267051,0.223163,0.140051,0.1271,0.840572,0.926148,0.191412,0.907671,0.950324,0.111378,0.378287,0.526909,0.0608324,0.345877,0.261667,0.19489,0.280606,0.936363,0.0640635,0.0523086,0.742068,0.752573,0.329893,0.836868,0.828408,0.789132,0.243654,0.359726,0.887311,0.619061,0.287458,0.627549,0.569477,0.198499,0.876995,0.858456,0.846604,0.0432135,0.998327,0.289327,0.00489146,0.0813901,0.98837,0.910805,0.0109307,0.676332,0.228229,0.362556,0.825901,0.909302,0.13405,0.555313,0.261027,0.178324,0.287105,0.632781,0.465772,0.124333,0.212785,0.261383,0.568724,0.416448,0.189828,0.500441,0.912364,0.869954,0.630099,0.625524,0.911847,0.594136,0.11346,0.458355,0.956885,0.289246,0.683918,0.0175085,0.918837,0.379454,0.739323,0.937027,0.0739504,0.447838,0.00520903,0.575132,0.783896,0.339323,0.327016,0.838112,0.69856,0.325526,0.909242,0.682,0.925191,0.323085,0.137055,0.511204,0.00213385,0.111574,0.52987,0.811877,0.889314,0.317055,0.231335,0.624916,0.0709956,0.889143,0.68561,0.87267,0.279516,0.998103,0.826445,0.161218,0.488585,0.999379,0.203566,0.124729,0.881911,0.310654,0.603498,0.871781,0.279225,0.122438,0.281968,0.88746,0.508631,0.0524879,0.87604,0.958731,0.111342,0.93552,0.585099,0.395541,0.00955433,0.365082,0.136228,0.421246,0.0219954,0.073947,0.793803,0.323843,0.753662,0.979265,0.931785,0.112631,0.635003,0.762777,0.0821242,0.848222,0.335452,0.329861,0.4745,0.385866,0.567739,0.0994974,0.0759171,0.531868,0.513585,0.57726,0.137315,0.0403751,0.965656,0.835207,0.0948375,0.801432,0.00688386,0.170043,0.228785,0.268683,0.115072,0.993591,0.877089,0.237732,0.64683,0.894166,0.265226,0.916456,0.470249,0.602359,0.59403,0.819538,0.959391,0.331632,0.794661,0.451515,0.121098,0.0885831,0.250579,0.520083,0.617628,0.661549,0.0964457,0.271212,0.249757,0.877963,0.438712,0.0963498,0.270117,0.634374,0.0842971,0.854389,0.155091,0.3367,0.602036,0.702893,0.710245,0.626718,0.464768,0.226347,0.786481,0.334547,0.524423,0.942056,0.453815,0.383364,0.969698,0.173224,0.891931,0.825026,0.410479,0.903691,0.674045,0.559348,0.825431,0.0783954,0.827249,0.489542,0.705082,0.465137,0.63908,0.110369,0.318464,0.277829,0.466748,0.270562,0.831697,0.795481,0.463439,0.157396,0.0435786,0.085538,0.844968,0.845078,0.0376489,0.892309,0.137565,0.130365,0.241575,0.295009,0.0669149,0.611687,0.814468,0.563187,0.154118,0.275807,0.559739,0.272022,0.133141,0.0707141,0.607953,0.806773,0.165359,0.457737,0.785083,0.12006,0.941993,0.907301,0.95318,0.206417,0.408936,0.628164,0.720704,0.382115,0.515318,0.0768453,0.606888,0.755933,0.821391,0.443713,0.852425,0.128378,0.0445852,0.945918,0.664557,0.236445,0.121983,0.839542,0.402962,0.177477,0.349007,0.774185,0.680915,0.739119,0.95325,0.204896,0.444365,0.180473,0.954034,0.262943,0.255594,0.826299,0.18281,0.527541,0.863653,0.20235,0.520435,0.562726,0.744036,0.319919,0.911024,0.231239,0.179536,0.148578,0.22901,0.246669,0.515126,0.0252367,0.89588,0.0276232,0.924209,0.00367904,0.676717,0.81726,0.863198,0.892195,0.429648,0.74492,0.763425,0.81981,0.353886,0.837967,0.919232,0.0754153,0.333275,0.288568,0.0618317,0.0902476,0.434316,0.007644,0.0648619,0.0992395,0.98828,0.375839,0.727952,0.298139,0.30406,0.322085,0.844226,0.946678,0.777039,0.696598,0.395305,0.860905,0.419998,0.315018,0.464814,0.427186,0.677638,0.294892,0.456931,0.934283,0.804649,0.378656,0.585165,0.38006,0.0423391,0.554068,0.329298,0.426428,0.224911,0.088737,0.275229,0.426096,0.8847,0.301561,|0.780132,0.40404,0.238647,0.683688,0.456028,0.951852,0.872447,0.282325,0.834909,0.860899,0.594675,0.742393,0.486318,0.642639,0.00431198,0.731614,0.837578,0.0748023,0.144847,0.982854,0.0752856,0.946752,0.875867,0.97503,0.283526,0.999822,0.556159,0.664121,0.855542,0.08182,0.313519,0.934231,0.783188,0.514216,0.695996,0.952544,0.833217,0.35348,0.750846,0.191657,0.289119,0.0431612,0.626308,0.0282767,0.198878,0.268321,0.059269,0.326951,0.264634,0.0487359,0.518617,0.20607,0.971735,0.100202,0.000716984,0.201474,0.305885,0.126574,0.826222,0.0283117,0.660652,0.681415,0.841474,0.793824,0.342575,0.939571,0.424446,0.43619,0.410751,0.726534,0.272497,0.866811,0.625716,0.829146,0.918037,0.34315,0.333123,0.84715,0.543182,0.107552,0.891945,0.775165,0.871311,0.677016,0.583135,0.433436,0.253866,0.495446,0.669896,0.496571,0.926493,0.778515,0.0101256,0.428769,0.0838891,0.0412728,0.00925744,0.0819718,0.123241,0.365761,0.372549,0.153148,0.399926,0.227098,0.577661,0.117758,0.959902,0.505935,0.766428,0.724217,0.267163,0.775817,0.622048,0.726232,0.91879,0.785478,0.793905,0.548727,0.185974,0.0728264,0.643408,0.348082,0.590773,0.570513,0.830407,0.698049,0.565697,0.203642,0.732908,0.993289,0.590357,0.200994,0.5777,0.395278,0.386916,0.00468898,0.923961,0.555821,0.127333,0.129664,0.443774,0.798629,0.529229,0.696466,0.751203,0.768323,0.359141,0.293481,0.0111758,0.126961,0.589039,0.502554,0.383516,0.80544,0.119742,0.187349,0.969255,0.547634,0.358636,0.974275,0.40929,0.0706761,0.866056,0.728988,0.906118,0.800203,0.0857946,0.137991,0.537845,0.504952,0.37036,0.383136,0.129893,0.0492893,0.453084,0.595893,0.749975,0.331189,0.484012,0.489713,0.168406,0.691854,0.853367,0.890473,0.643154,0.637442,0.80735,0.745737,0.0274432,0.375952,0.990908,0.53338,0.664205,0.24433,0.273404,0.995095,0.201876,0.410388,0.443432,0.594061,0.0270914,0.822751,0.732489,0.708859,0.211721,0.238444,0.0725647,0.686726,0.957194,0.765856,0.0222856,0.796976,0.306481,0.676461,0.0510949,0.960053,0.29057,0.0147148,0.887696,0.559594,0.594676,0.236927,0.988855,0.928176,0.979643,0.727176,0.764302,0.725807,0.17367,0.537734,0.725327,0.0809394,0.319644,0.416789,0.419168,0.0621196,0.712421,0.659604,0.0821414,0.00328219,0.155724,0.924208,0.509012,0.267189,0.527282,0.0137415,0.423723,0.679812,0.619306,0.177097,0.678387,0.620078,0.944199,0.353969,0.391241,0.651962,0.977936,0.28962,0.96267,0.28619,0.604959,0.893995,0.349057,0.880442,0.975377,0.762774,0.289187,0.588059,0.192899,0.060501,0.0280148,0.117835,0.849249,0.0427774,0.564447,0.373976,0.674926,0.486634,0.823711,0.200259,0.369251,0.659506,0.956616,0.217617,0.574637,0.526447,0.827752,0.902278,0.495339,0.639886,0.592299,0.0445749,0.230589,0.0674709,0.706452,0.238735,0.47671,0.0614584,0.685365,0.0138555,0.335872,0.128289,0.63522,0.0986892,0.998537,0.958355,0.827464,0.14855,0.0147272,0.535016,0.929842,0.333774,0.404364,0.609713,0.639417,0.456762,0.323465,0.644634,0.795599,0.923741,0.511527,0.677906,0.825656,0.480664,0.0557222,0.58433,0.381725,0.531981,0.301828,0.743709,0.271908,0.774851,0.526542,0.0450905,0.626195,0.68334,0.756569,0.558946,0.964395,0.868513,0.987971,0.198617,0.617305,0.716071,0.155998,0.534855,0.781824,0.859754,0.159899,0.12642,0.528715,0.243409,0.888503,0.191222,0.234228,0.0451636,0.805871,0.246101,0.795831,0.613737,0.506631,0.69667,0.523897,0.619399,0.24102,0.575889,0.358747,0.814206,0.941494,0.31518,0.996857,0.45166,0.910099,0.584697,0.621352,0.187039,0.520355,0.178319,0.211966,0.516134,0.496753,0.513093,0.893978,0.606339,0.214596,0.757692,0.706299,0.293911,0.0531785,0.312224,0.456178,0.584414,0.762811,0.341255,0.339574,0.961888,0.117611,0.679534,0.196436,0.482843,0.92537,0.380961,0.160027,0.117032,0.282193,0.591173,0.665205,0.545978,0.551515,0.710997,0.596745,0.0305157,0.108701,0.303342,0.985936,0.22942,0.697157,0.870573,0.9914,0.25921,0.20513,0.459842,0.378672,0.783677,0.674034,0.835151,0.426809,0.644421,0.722014,0.287613,0.185724,0.00974739,0.676778,0.910057,0.745713,0.546218,0.416747,0.957069,0.21441,0.797702,0.320802,0.326604,0.17634,0.898591,0.664653,0.013181,0.820112,0.3971,0.926512,0.325743,0.725224,0.783723,0.10279,0.464027,0.611588,0.00715137,0.667603,0.765283,0.170058,0.667965,0.538745,0.365332,0.674679,0.428965,0.00823724,0.0514596,0.260324,0.52445,0.859702,0.262008,0.258147,0.617717,0.974901,0.782349,0.532501,0.237401,0.0813587,0.946661,0.918472,0.40283,0.63097,0.521911,0.493725,0.139473,0.736302,0.628754,0.450786,0.89906,0.00820613,0.00709307,0.963433,0.684401,0.858315,0.779609,0.259838,0.675328,0.08363,0.276507,0.506765,0.30692,0.0891622,0.911383,0.048974,0.0828655,0.284312,0.632723,0.298118,0.835771,0.345279,0.782696,0.236108,0.537926,0.558448,0.689654,0.550384,0.0294148,0.224402,0.249505,0.479914,0.562166,0.33062,0.627517,0.783264,0.251516,0.756731,0.764155,0.35661,0.789866,0.839432,0.536257,0.576603,0.113311,0.0862252,0.29268,0.960794,0.37887,0.629336,0.379898,0.576913,0.709366,0.454421,0.103155,0.414674,0.92114,0.797692,0.098121,0.262031,0.091625,0.969479,0.881605,0.370242,0.0911114,0.504061,0.252447,0.208566,0.641388,0.424364,0.390233,0.258233,0.524107,0.197483,0.733366,0.807761,0.382388,0.127161,0.787292,0.0764672,0.272981,0.711568,0.604802,0.644386,0.182514,0.614384,0.47539,0.614903,0.365646,0.817741,0.835969,0.237624,0.133167,0.235905,0.318657,0.0445867,0.491047,0.167043,0.927307,0.200044,0.661706,0.584736,0.143682,0.789531,0.303867,0.184811,0.925104,0.844965,0.467963,0.854098,0.497683,0.181381,0.217385,0.641522,0.742242,0.608047,0.653969,0.950692,0.126145,0.152076,0.191629,0.670043,0.37139,0.464487,0.461491,0.396633,0.567579,0.162535,0.974737,0.922711,0.181481,0.652856,0.778858,0.349881,0.70065,0.483041,0.179464,0.449764,0.829718,0.282135,0.923642,0.47491,0.677746,0.650688,0.149588,0.92576,0.165443,0.0708607,0.625927,0.466059,0.490148,0.0216823,0.126152,0.0720783,0.602221,0.96143,0.440146,0.777325,0.76087,0.971722,0.833294,0.74941,0.223741,0.886658,0.0122622,0.824647,0.00524271,0.322707,0.841164,0.406625,0.588424,0.0226518,0.156386,0.489713,0.863193,0.724845,0.272873,0.195833,0.0793454,0.48803,0.932169,0.0378887,0.894819,0.38825,0.452023,0.844284,0.111757,0.355575,0.137777,0.990203,0.00472385,0.37839,0.501984,0.218349,0.912098,0.649303,0.751846,0.165559,0.992123,0.282652,0.639837,0.782242,0.547998,0.288372,0.700657,0.45797,0.561474,0.267803,0.187175,0.170035,0.695355,0.856414,0.911356,0.532141,0.734249,0.994504,0.781322,0.473617,0.455686,0.81275,0.58024,0.13782,0.330106,0.371168,0.324789,0.34209,0.417091,0.800651,0.198361,0.779847,0.895777,0.0241839,0.107007,0.0960412,0.281307,0.170657,0.469054,0.180486,0.154066,0.928259,0.218274,0.364715,0.733017,0.392124,0.887356,0.3146,0.394378,0.504634,0.841947,0.579548,0.211108,0.333222,0.496372,0.84618,0.779765,0.241157,0.38249,0.826689,0.283548,0.571763,0.76688,0.685733,0.301227,0.493058,0.402583,0.937314,0.477559,0.00182843,0.701681,0.376891,0.595765,0.151952,0.0494682,0.526319,0.973831,0.430462,0.521564,0.399042,0.450412,0.890588,0.578409,0.69379,0.11881,0.955838,0.239568,0.0269792,0.133388,0.118566,0.713064,0.919608,0.368402,0.750454,0.666083,0.215468,0.0851243,0.825196,0.314815,0.455858,0.535465,0.476122,0.115245,0.406993,0.628522,0.419992,0.151123,0.21338,0.796292,0.359004,0.224605,0.261621,0.647768,0.353426,0.883853,0.768636,0.429989,0.0192094,0.994324,0.264815,0.308394,0.713913,0.263082,0.410943,0.653382,0.844251,0.0018028,0.977455,0.352935,0.205954,0.49913,0.0800421,0.00829899,0.395483,0.164671,0.486662,0.83112,0.534425,0.223446,0.0123395,0.485855,0.953127,0.531762,0.778327,0.915641,0.414059,0.35224,0.460988,0.993533,0.688983,0.20162,0.262573,0.370095,0.984646,0.108408,0.213618,0.957291,0.20283,0.694645,0.383362,0.137916,0.838826,0.079639,0.963246,0.619594,0.940567,0.304739,0.221761,0.657312,0.245328,0.524475,0.431008,0.651759,0.03019,0.291774,0.808763,0.0610346,0.757443,0.325072,0.265027,0.546916,0.043098,0.570782,0.0636547,0.380127,0.911029,0.550659,0.105966,0.233902,0.821816,0.530615,0.639271,0.953381,0.872158,0.84271,0.512146,0.349212,0.878606,0.387832,0.248673,0.426463,0.82189,0.626798,0.114441,0.788247,0.992149,0.567003,0.182006,0.504929,0.660005,0.116681,0.159122,0.0874919,0.709601,0.042292,0.454218,0.66024,0.0144675,0.188893,0.096914,0.563327,0.945562,0.601518,0.721963,0.17343,0.330185,0.124451,0.762885,0.760695,0.242506,0.725228,0.449959,0.666564,0.838974,0.131413,0.939545,0.364339,0.632586,0.186776,0.237074,0.84772,0.971416,0.847345,0.765182,0.955624,0.236463,0.989844,0.964621,0.472442,0.0694417,0.804178,0.854375,0.764102,0.657831,0.41553,0.903812,0.966919,0.479384,0.499889,0.848759,0.445074,0.94829,0.20592,0.265117,0.396867,0.162204,0.630872,0.743205,0.0866566,0.570539,0.14798,0.465276,0.862117,0.819495,0.0173961,0.608761,0.900546,0.0710524,0.980259,0.285356,0.176376,0.689585,0.796265,0.133099,0.488375,0.00597763,0.499691,0.245911,0.0726942,0.931127,0.527256,0.0862673,0.499867,0.834784,0.752311,0.882779,0.936062,0.268418,0.799751,0.432947,0.973161,0.00476944,0.598646,0.719299,0.600424,0.233471,0.243658,0.630876,0.67013,0.611718,0.175056,0.384926,0.548592,0.809722,0.901059,|0.047356,0.586451,0.609558,0.950304,0.647029,0.6926,0.349495,0.456608,0.0402602,0.543749,0.549038,0.525679,0.276849,0.999311,0.194214,0.177042,0.388367,0.75678,0.220538,0.331059,0.261349,0.455194,0.513343,0.260993,0.649447,0.0491124,0.773,0.439931,0.18667,0.890831,0.320487,0.00812328,0.575493,0.311024,0.00301081,0.635738,0.126753,0.445248,0.344919,0.135011,0.0659102,0.207928,0.669106,0.666187,0.34061,0.436574,0.495705,0.32502,0.791159,0.121455,0.670074,0.892908,0.390576,0.670419,0.602128,0.632743,0.647345,0.961852,0.345521,0.445647,0.808553,0.833203,0.0387948,0.515409,0.270008,0.614284,0.488583,0.400964,0.117067,0.655175,0.316626,0.925996,0.959693,0.397319,0.977099,0.827011,0.311048,0.661266,0.684475,0.217503,0.702892,0.623134,0.682921,0.124508,0.124778,0.018866,0.142029,0.514508,0.322273,0.331054,0.184648,0.926745,0.356438,0.133853,0.677927,0.540236,0.222759,0.0464486,0.36044,0.85256,0.697942,0.57768,0.98633,0.0644853,0.971865,0.600569,0.462229,0.425393,0.386154,0.930595,0.030748,0.435554,0.304133,0.349025,0.612684,0.870116,0.158692,0.573506,0.866906,0.145647,0.225328,0.925261,0.37315,0.257366,0.30126,0.959903,0.074069,0.573757,0.0805314,0.274916,0.0317405,0.982876,0.302413,0.784028,0.166868,0.893557,0.594258,0.37233,0.148285,0.112056,0.925971,0.202126,0.62735,0.0452657,0.955817,0.716635,0.0646057,0.506736,0.893618,0.233909,0.907885,0.838582,0.18803,0.874767,0.43438,0.200593,0.990515,0.478836,0.431493,0.688915,0.138407,0.670121,0.105478,0.476208,0.221348,0.118161,0.11254,0.208668,0.707196,0.526819,0.923019,0.480345,0.144148,0.637605,0.975873,0.389304,0.137426,0.0169871,0.583073,0.727893,0.50242,0.471676,0.487788,0.227469,0.00607061,0.0205861,0.00535476,0.440408,0.0329165,0.580918,0.321319,0.867417,0.902471,0.413522,0.301427,0.255919,0.577681,0.133969,0.670531,0.528887,0.694442,0.38573,0.725238,0.651755,0.000831008,0.822531,0.196842,0.115922,0.352544,0.151218,0.82247,0.0271808,0.460274,0.589751,0.992247,0.433374,0.558514,0.0941279,0.0658192,0.167667,0.258855,0.491882,0.460649,0.0311675,0.187748,0.117993,0.573766,0.0270008,0.967598,0.12788,0.674134,0.750174,0.143773,0.719617,0.772148,0.850374,0.157762,0.00178421,0.248635,0.521176,0.714051,0.151537,0.519851,0.115498,0.771512,0.35586,0.281515,0.814609,0.962811,0.616417,0.299322,0.466795,0.0312641,0.1061,0.699661,0.276225,0.394867,0.26804,0.145937,0.384697,0.192594,0.08936,0.640817,0.446929,0.655108,0.783514,0.14116,0.256774,0.932756,0.155701,0.381158,0.508617,0.236289,0.800491,0.879924,0.276795,0.542811,0.162554,0.167247,0.874751,0.282352,0.38086,0.85204,0.439519,0.242741,0.84687,0.823042,0.392227,0.539966,0.653152,0.889358,0.973001,0.655059,0.0300635,0.219254,0.197436,0.182458,0.146098,0.311425,0.742557,0.998069,0.488175,0.938392,0.438164,0.833875,0.546048,0.551658,0.1066,0.641522,0.319193,0.611318,0.0396402,0.610238,0.253054,0.400353,0.601896,0.0258072,0.944836,0.0660064,0.251693,0.542025,0.370316,0.170313,0.731836,0.153463,0.18084,0.580528,0.489951,0.86051,0.0728439,0.756445,0.329716,0.0330747,0.296902,0.926932,0.810434,0.831097,0.388748,0.940534,0.930233,0.257216,0.445959,0.437448,0.498716,0.334195,0.155767,0.177101,0.412124,0.234398,0.344565,0.402185,0.891989,0.875293,0.0671518,0.996493,0.881375,0.444493,0.177873,0.278339,0.49822,0.519974,0.325287,0.833387,0.168563,0.857252,0.489029,0.38608,0.223501,0.0191294,0.423738,0.115262,0.963839,0.71159,0.137844,0.664584,0.900445,0.343737,0.488557,0.0646699,0.356501,0.782957,0.634678,0.255542,0.107373,0.189522,0.880559,0.424426,0.075025,0.769501,0.00309092,0.745416,0.627486,0.644622,0.297473,0.737885,0.896931,0.164021,0.843142,0.39277,0.0899029,0.570264,0.710504,0.914875,0.616579,0.77118,0.971301,0.638974,0.771901,0.900693,0.0598063,0.62994,0.895739,0.488384,0.183558,0.403805,0.210797,0.808423,0.869856,0.24098,0.214887,0.128172,0.779562,0.348013,0.772972,0.654084,0.440113,0.860971,0.645172,0.855288,0.102941,0.996249,0.435556,0.842747,0.731174,0.757399,0.236709,0.330551,0.284814,0.946199,0.392896,0.989319,0.810111,0.00626057,0.837699,0.10154,0.999047,0.818813,0.790642,0.549685,0.823458,0.255494,0.620544,0.522872,0.467337,0.255443,0.483631,0.75763,0.909334,0.94557,0.150542,0.168259,0.483071,0.123717,0.358125,0.166413,0.641188,0.198795,0.868204,0.056511,0.413892,0.589544,0.599879,0.495503,0.711426,0.969749,0.601465,0.158511,0.129464,0.683164,0.294124,0.864128,0.290857,0.902234,0.970463,0.640744,0.909173,0.537541,0.551102,0.126229,0.791259,0.0464346,0.878861,0.0964755,0.258727,0.646976,0.429544,0.924545,0.737751,0.367239,0.160947,0.48013,0.481262,0.100995,0.282312,0.640929,0.660811,0.102109,0.0209082,0.423485,0.769267,0.927656,0.531659,0.946928,0.910363,0.516356,0.644158,0.116943,0.476794,0.91294,0.712032,0.593914,0.707406,0.36866,0.826558,0.35808,0.474374,0.46912,0.582217,0.779689,0.585141,0.884571,0.638659,0.425183,0.691726,0.678808,0.878584,0.281098,0.426854,0.673878,0.511054,0.947961,0.616667,0.446169,0.314013,0.225863,0.0477006,0.207929,0.633921,0.737899,0.985402,0.383354,0.119608,0.957562,0.886325,0.96427,0.405164,0.566299,0.720923,0.436033,0.116318,0.420498,0.943911,0.331702,0.926844,0.682035,0.229476,0.373003,0.238989,0.231222,0.629339,0.878066,0.914763,0.215179,0.822219,0.862086,0.962969,0.966746,0.65686,0.237429,0.307158,0.870107,0.613865,0.898517,0.865071,0.225561,0.985921,0.14553,0.319465,0.699009,0.66625,0.66392,0.07041,0.884472,0.0047965,0.19437,0.0513456,0.322712,0.685601,0.708085,0.896418,0.974129,0.811686,0.767624,0.372551,0.902882,0.75342,0.0437499,0.115888,0.437428,0.251918,0.864306,0.278562,0.815262,0.516196,0.607285,0.612346,0.734116,0.0845717,0.0119026,0.48155,0.382584,0.271033,0.335244,0.105707,0.0853359,0.7281,0.510277,0.773204,0.967761,0.0102514,0.0484525,0.832456,0.499916,0.528376,0.0850389,0.938337,0.185627,0.0697016,0.561164,0.429985,0.867348,0.604028,0.507266,0.12159,0.460898,0.275919,0.368497,0.839915,0.452453,0.104965,0.425412,0.0190071,0.110362,0.176443,0.356231,0.719463,0.832339,0.817796,0.381687,0.68932,0.766218,0.128157,0.400207,0.0605159,0.781962,0.620559,0.161385,0.60669,0.292659,0.659335,0.571198,0.485904,0.594424,0.150955,0.552598,0.133288,0.0995677,0.819371,0.556922,0.550802,0.841386,0.640693,0.293071,0.324745,0.734585,0.142457,0.275888,0.243618,0.991759,0.482677,0.722609,0.34336,0.479145,0.832315,0.407053,0.659643,0.869505,0.713684,0.372365,0.0811149,0.313003,0.279723,0.0392281,0.126822,0.144734,0.329676,0.808097,0.0854829,0.722714,0.794505,0.215155,0.744351,0.613557,0.0991881,0.106146,0.916282,0.562233,0.0225726,0.366587,0.737337,0.887279,0.0748094,0.495668,0.33773,0.210366,0.163908,0.597507,0.101434,0.0129267,0.000507474,0.0749864,0.665173,0.0800079,0.884724,0.61837,0.810755,0.798464,0.941205,0.112647,0.202501,0.84291,0.43313,0.800116,0.641544,0.910397,0.705518,0.00848293,0.814589,0.64272,0.804156,0.379162,0.779865,0.42608,0.152615,0.376446,0.390551,0.430709,0.325172,0.287317,0.632091,0.110256,0.113657,0.431907,0.738125,0.879843,0.411657,0.810105,0.867891,0.340213,0.77705,0.696193,0.69981,0.290668,0.670856,0.452366,0.480128,0.900167,0.2741,0.356573,0.735959,0.889595,0.848965,0.266779,0.00754124,0.504366,0.768979,0.440584,0.339606,0.963533,0.134823,0.460767,0.669565,0.974608,0.447175,0.279451,0.518768,0.821589,0.188558,0.481369,0.166824,0.456077,0.00377852,0.803398,0.976718,0.541406,0.738082,0.490152,0.866021,0.656959,0.553015,0.388535,0.199139,0.13871,0.171822,0.472481,0.174186,0.420828,0.389578,0.754736,0.234239,0.923386,0.849652,0.168579,0.891466,0.933406,0.245995,0.883359,0.735324,0.848604,0.0980073,0.0301685,0.998656,0.77337,0.302577,0.971093,0.654113,0.255786,0.228026,0.540739,0.116227,0.366717,0.894401,0.462528,0.402855,0.794821,0.191124,0.924804,0.846923,0.0290526,0.826901,0.286268,0.126829,0.609119,0.160324,0.118044,0.121097,0.823563,0.524324,0.457781,0.29416,0.367867,0.377453,0.760992,0.958702,0.843213,0.875786,0.704306,0.664475,0.957411,0.96517,0.403292,0.56528,0.498072,0.296238,0.323653,0.692153,0.0293943,0.415987,0.842465,0.849421,0.129627,0.730893,0.1008,0.587795,0.89693,0.438565,0.28113,0.817144,0.656409,0.717038,0.647152,0.266614,0.374864,0.967676,0.917138,0.0784789,0.330732,0.407184,0.227494,0.596754,0.95102,0.150677,0.104009,0.779163,0.762899,0.098404,0.0514824,0.625143,0.5747,0.337886,0.0818093,0.983884,0.873397,0.608088,0.457101,0.613448,0.529123,0.41942,0.241499,0.082231,0.598709,0.0826229,0.398902,0.290057,0.268735,0.797209,0.146104,0.733835,0.959608,0.863541,0.824764,0.22194,0.18131,0.102939,0.780269,0.193698,0.560154,0.0266936,0.718297,0.59684,0.303753,0.898328,0.715702,0.65017,0.57174,0.529428,0.559014,0.248087,0.93895,0.435612,0.208652,0.577758,0.948179,0.471812,0.204253,0.0303769,0.511234,0.880912,0.883092,0.43323,0.455549,0.583484,0.184631,0.861111,0.83016,0.693214,0.913282,0.113116,0.199283,0.377593,0.953517,0.894715,0.518618,0.508836,0.857169,0.643114,0.331088,0.0475672,0.0926251,0.726084,0.145148,0.84078,0.961821,0.556373,0.896887,0.638434,0.377468,0.670943,0.859751,0.309008,0.689472,0.0361491,0.548821,0.393412,0.258792,0.243824,0.223619,0.757445,0.790503,0.665015,|0.989708,0.352849,0.120671,0.328048,0.803524,0.268844,0.611195,0.114511,0.962231,0.892873,0.0498585,0.119049,0.623748,0.00761962,0.421739,0.410959,0.637526,0.331456,0.463557,0.223086,0.0533773,0.703518,0.644626,0.873414,0.617689,0.272052,0.180522,0.795856,0.895526,0.151385,0.560514,0.70621,0.700404,0.325435,0.372606,0.905917,0.229299,0.548641,0.442906,0.534042,0.387739,0.190833,0.845053,0.340086,0.714498,0.586949,0.292701,0.565618,0.419372,0.283276,0.0102364,0.0826433,0.944885,0.080973,0.266659,0.230256,0.0114247,0.588328,0.703419,0.852944,0.41418,0.229363,0.477442,0.736756,0.455966,0.281144,0.441443,0.0608622,0.604035,0.101394,0.755144,0.382672,0.648068,0.971092,0.903479,0.156324,0.747983,0.14368,0.878473,0.726121,0.970131,0.167476,0.107857,0.852385,0.954689,0.239346,0.234126,0.295327,0.20276,0.0967573,0.468757,0.611206,0.458396,0.539263,0.811434,0.846512,0.526424,0.276944,0.111685,0.0052411,0.978901,0.306059,0.906232,0.158299,0.608456,0.798989,0.770742,0.447978,0.613382,0.577084,0.566603,0.498128,0.0225295,0.233903,0.098528,0.637508,0.808932,0.366336,0.268295,0.172386,0.753526,0.0810627,0.916535,0.887626,0.244896,0.334995,0.657358,0.180368,0.414564,0.693289,0.729813,0.783958,0.356212,0.85454,0.477741,0.327202,0.798475,0.0687112,0.408196,0.90135,0.20431,0.15145,0.428563,0.364238,0.56932,0.58063,0.0257465,0.112798,0.892513,0.87572,0.111579,0.859659,0.657451,0.434343,0.145187,0.348874,0.0302495,0.7118,0.686124,0.95593,0.873593,0.705905,0.937971,0.438142,0.112205,0.56644,0.243938,0.752416,0.58169,0.575266,0.778199,0.103976,0.0157173,0.0621949,0.503139,0.972265,0.189248,0.583933,0.596963,0.806145,0.949941,0.365265,0.357213,0.0617609,0.656107,0.937608,0.293253,0.489227,0.102275,0.234167,0.926139,0.191829,0.256093,0.221503,0.505843,0.356765,0.330645,0.720405,0.843563,0.31385,0.79488,0.243502,0.0892431,0.211539,0.69436,0.422653,0.37237,0.791944,0.764389,0.867586,0.0513189,0.832001,0.136441,0.254102,0.708521,0.219878,0.722675,0.626987,0.333542,0.339318,0.554117,0.471395,0.258055,0.973261,0.937824,0.5636,0.761066,0.059227,0.993284,0.70544,0.199199,0.177266,0.450511,0.604702,0.0582865,0.575792,0.992405,0.640043,0.880169,0.690795,0.893204,0.182059,0.371096,0.318111,0.417835,0.145811,0.911943,0.769679,0.640185,0.212413,0.0877282,0.539502,0.500389,0.73912,0.766191,0.0866325,0.530031,0.0943145,0.929267,0.443813,0.874726,0.54084,0.565546,0.899275,0.397738,0.447391,0.762416,0.988869,0.480888,0.585428,0.700589,0.184041,0.235142,0.636357,0.211717,0.792813,0.798889,0.484186,0.61374,0.429514,0.624742,0.0892813,0.144795,0.271538,0.306007,0.33452,0.516299,0.42048,0.38061,0.223808,0.308275,0.42937,0.993918,0.478812,0.679784,0.0816136,0.887902,0.647481,0.485398,0.0189929,0.195952,0.640386,0.168671,0.670595,0.255595,0.808259,0.997656,0.756205,0.00134194,0.483551,0.363114,0.415753,0.598801,0.29221,0.379853,0.567843,0.194092,0.635135,0.800732,0.98218,0.0722141,0.269131,0.52169,0.171223,0.617946,0.726574,0.284596,0.883273,0.57292,0.886433,0.40983,0.560398,0.641444,0.753116,0.733608,0.7115,0.924541,0.0315404,0.102315,0.179839,0.622248,0.230811,0.784048,0.280598,0.153282,0.43932,0.291694,0.472836,0.882568,0.00424665,0.0461417,0.639939,0.685109,0.662946,0.665743,0.117593,0.433019,0.051407,0.0458705,0.134437,0.811826,0.776343,0.36069,0.344642,0.773134,0.750254,0.923235,0.0116336,0.758299,0.102561,0.84293,0.855273,0.282675,0.354613,0.466931,0.95508,0.592092,0.830435,0.141008,0.564646,0.758361,0.976306,0.22737,0.299097,0.107948,0.884594,0.896902,0.235323,0.411089,0.987547,0.642426,0.330812,0.934995,0.881807,0.765734,0.849939,0.0348156,0.254492,0.503087,0.717107,0.765139,0.175101,0.687271,0.209249,0.58344,0.460266,0.979097,0.639303,0.117712,0.916766,0.612529,0.286261,0.421144,0.562561,0.287381,0.576085,0.276007,0.450805,0.712149,0.156179,0.82394,0.963883,0.844746,0.936069,0.15216,0.82549,0.620791,0.174226,0.964455,0.0423643,0.741399,0.687563,0.890734,0.215218,0.952461,0.878043,0.317825,0.610633,0.352432,0.818228,0.462222,0.618471,0.201956,0.198641,0.503963,0.49104,0.992807,0.55704,0.707358,0.402498,0.269288,0.940329,0.604417,0.921792,0.103725,0.286013,0.538554,0.506323,0.610656,0.00484103,0.987169,0.514227,0.761484,0.489286,0.727149,0.191536,0.52255,0.300891,0.477515,0.762613,0.351848,0.290695,0.0249521,0.652613,0.69552,0.33766,0.869676,0.581733,0.199076,0.454318,0.288088,0.468328,0.38111,0.22569,0.695023,0.160151,0.940524,0.781108,0.41533,0.223179,0.375117,0.140356,0.889116,0.248334,0.173808,0.418151,0.737859,0.693826,0.151122,0.824268,0.942532,0.726334,0.316682,0.307478,0.284906,0.231735,0.523631,0.181818,0.0622634,0.129503,0.698743,0.0439574,0.376134,0.995582,0.534762,0.486009,0.382043,0.123097,0.616795,0.610185,0.678655,0.105336,0.111616,0.16073,0.880528,0.183557,0.900014,0.0698106,0.218705,0.256802,0.0648588,0.535021,0.380132,0.520579,0.500493,0.832008,0.390571,0.666564,0.240325,0.889227,0.716279,0.112674,0.36313,0.756598,0.22681,0.0392877,0.401867,0.311692,0.567735,0.270792,0.0316234,0.0389895,0.199311,0.98076,0.0547305,0.108962,0.621919,0.331712,0.424164,0.853543,0.996498,0.629353,0.999834,0.805436,0.0435812,0.138229,0.929011,0.610444,0.237982,0.561993,0.613012,0.679905,0.751619,0.565041,0.544038,0.341375,0.892421,0.775858,0.231198,0.487314,0.340952,0.827227,0.171864,0.485207,0.212053,0.496767,0.403687,0.360091,0.513237,0.124086,0.75104,0.307411,0.368537,0.872784,0.170916,0.381028,0.824574,0.0845298,0.869311,0.631126,0.407482,0.879484,0.867779,0.0553669,0.184381,0.839012,0.758124,0.837171,0.945453,0.497763,0.751765,0.00481653,0.30386,0.352817,0.0406405,0.732586,0.829396,0.482072,0.650922,0.827998,0.550619,0.983437,0.392617,0.946948,0.581865,0.720534,0.240688,0.937852,0.851227,0.590261,0.0599189,0.513414,0.373547,0.259308,0.561348,0.956595,0.872692,0.182174,0.646698,0.536603,0.385286,0.026804,0.956445,0.251236,0.580757,0.610839,0.486149,0.797245,0.0752794,0.939231,0.432171,0.469988,0.288887,0.671966,0.965964,0.836337,0.219183,0.960629,0.488138,0.425183,0.797723,0.448196,0.6313,0.479088,0.755928,0.334011,0.199733,0.263,0.341711,0.623344,0.25474,0.738016,0.300094,0.737256,0.710797,0.268198,0.302216,0.472019,0.445459,0.376566,0.899782,0.484179,0.0760469,0.919219,0.651332,0.451613,0.885283,0.638008,0.279556,0.659605,0.378638,0.819782,0.984935,0.475929,0.191378,0.894984,0.449083,0.668461,0.126117,0.543201,0.35631,0.578965,0.845284,0.560655,0.0900263,0.944327,0.867423,0.996087,0.668364,0.451051,0.432062,0.189215,0.552079,0.65075,0.466593,0.541496,0.535064,0.41928,0.435124,0.532673,0.0464035,0.223541,0.188754,0.835405,0.633369,0.175775,0.578605,0.294422,0.634992,0.0631006,0.286834,0.566564,0.207332,0.276014,0.493816,0.968908,0.409197,0.927564,0.41409,0.458596,0.326695,0.502145,0.842158,0.691409,0.874078,0.449631,0.405583,0.168783,0.654284,0.716515,0.879714,0.0302907,0.57789,0.648405,0.124157,0.234637,0.898998,0.548838,0.651419,0.442108,0.814226,0.759392,0.628856,0.5386,0.720163,0.546557,0.162381,0.288555,0.963755,0.577721,0.948159,0.311611,0.809919,0.871068,0.845991,0.338904,0.101001,0.968206,0.520925,0.297541,0.990803,0.977119,0.0877827,0.0491652,0.908141,0.789865,0.632733,0.381208,0.040125,0.282142,0.0477896,0.392823,0.388107,0.862274,0.262027,0.592921,0.259559,0.579212,0.575684,0.205241,0.684442,0.996827,0.024467,0.45453,0.658709,0.688887,0.00335729,0.711551,0.502749,0.617342,0.999574,0.0576443,0.543657,0.381735,0.285033,0.703217,0.494081,0.879229,0.604647,0.785193,0.645736,0.516414,0.952446,0.37779,0.70777,0.598867,0.859845,0.605316,0.164936,0.976851,0.00583768,0.424743,0.0188066,0.555723,0.262817,0.368374,0.683511,0.751115,0.721287,0.528563,0.0736086,0.777399,0.910815,0.905481,0.622405,0.153206,0.177418,0.396531,0.782371,0.842163,0.68744,0.851488,0.198552,0.206452,0.408779,0.191353,0.985838,0.279248,0.646616,0.906685,0.401574,0.586956,0.545956,0.369506,0.216572,0.872255,0.957903,0.14963,0.0612432,0.00577295,0.659113,0.660057,0.166987,0.133173,0.280014,0.0468143,0.220807,0.906643,0.78531,0.757268,0.17079,0.12066,0.692212,0.728983,0.374585,0.948768,0.449973,0.72944,0.6322,0.294035,0.0944604,0.6118,0.723614,0.0921001,0.727963,0.380242,0.239693,0.241107,0.868206,0.108023,0.471231,0.231359,0.352178,0.773411,0.297712,0.399198,0.722777,0.408196,0.71042,0.893307,0.866017,0.3122,0.443571,0.643914,0.172306,0.776904,0.381246,0.0560077,0.965348,0.688548,0.923599,0.960114,0.75466,0.724901,0.0263875,0.311295,0.274417,0.400194,0.336044,0.251883,0.210109,0.443235,0.991699,0.0561896,0.921822,0.748833,0.661053,0.789632,0.985727,0.410347,0.453006,0.989916,0.00142407,0.565583,0.836297,0.665126,0.0279934,0.163509,0.0652842,0.550159,0.423383,0.739626,0.846197,0.307797,0.247595,0.307484,0.648307,0.359848,0.984286,0.0964797,0.121103,0.440767,0.768759,0.890164,0.840843,0.96163,0.322949,0.932866,0.411263,0.810549,0.318669,0.484657,0.159324,0.2962,0.266897,0.953522,0.770252,0.260886,0.593392,0.437895,0.691431,0.10283,0.594154,0.0557157,0.277425,0.638193,0.0199977,0.930697,0.93264,0.978671,0.142262,0.0450468,0.823748,0.521863,0.678223,0.524257,0.451393,0.52371,0.967851,0.978814,|0.972107,0.613909,0.886475,0.833608,0.36297,0.643586,0.558487,0.699946,0.84826,0.641001,0.320121,0.397832,0.0391788,0.736104,0.0656512,0.0653647,0.719028,0.759051,0.28736,0.0576047,0.169021,0.486282,0.770177,0.531581,0.0204337,0.318282,0.493683,0.690368,0.0128154,0.195083,0.198182,0.0370986,0.484873,0.283674,0.312389,0.630424,0.262274,0.817736,0.926724,0.457686,0.187202,0.508115,0.0880498,0.473225,0.77579,0.195628,0.444635,0.52865,0.0845858,0.906689,0.599673,0.288505,0.981439,0.485793,0.237508,0.776696,0.536572,0.413548,0.670134,0.0166826,0.279523,0.757428,0.306913,0.848074,0.395884,0.232028,0.65982,0.668784,0.343784,0.667835,0.749372,0.534973,0.442936,0.00831622,0.204984,0.169495,0.982816,0.0897914,0.865367,0.149338,0.0704361,0.64097,0.271403,0.352962,0.945814,0.553147,0.0889819,0.362615,0.229327,0.699608,0.878565,0.0292096,0.992978,0.570878,0.647321,0.716271,0.615451,0.198391,0.586024,0.229639,0.576814,0.234665,0.714656,0.192106,0.605685,0.933336,0.317231,0.237605,0.686374,0.197315,0.241346,0.884046,0.277457,0.931332,0.283009,0.076168,0.771336,0.811546,0.08834,0.408133,0.433427,0.231254,0.837024,0.0363513,0.375817,0.560893,0.847575,0.0447437,0.581913,0.421514,0.734544,0.35218,0.465208,0.996167,0.711003,0.0954915,0.28578,0.453589,0.0353279,0.957615,0.69371,0.0248551,0.286243,0.787846,0.650368,0.326034,0.267269,0.522942,0.741189,0.495666,0.23609,0.487284,0.0573221,0.888525,0.0918816,0.335364,0.12584,0.403121,0.407482,0.0913589,0.513535,0.13403,0.7288,0.240328,0.515901,0.550554,0.0556255,0.63353,0.395736,0.891818,0.764311,0.334382,0.833366,0.152812,0.320069,0.144127,0.0405018,0.943292,0.941727,0.232851,0.779528,0.784565,0.429216,0.653654,0.986704,0.110976,0.896005,0.875239,0.947999,0.202725,0.902023,0.0749698,0.540428,0.0842883,0.0405157,0.768671,0.469962,0.90101,0.884627,0.218679,0.226177,0.506025,0.0679504,0.368592,0.412915,0.248102,0.788036,0.213155,0.212158,0.157962,0.866501,0.998734,0.747197,0.192423,0.55702,0.240064,0.05849,0.791477,0.181634,0.550094,0.768553,0.709795,0.956126,0.612242,0.846613,0.329181,0.323492,0.599826,0.208092,0.480516,0.800413,0.676677,0.579286,0.0780632,0.155642,0.80116,0.589066,0.267794,0.602652,0.175362,0.885014,0.62481,0.83386,0.910577,0.665951,0.355386,0.0302044,0.502591,0.59579,0.836179,0.156964,0.909018,0.133535,0.628475,0.089718,0.432097,0.871471,0.316284,0.645147,0.613825,0.802663,0.808257,0.14048,0.026139,0.782312,0.575469,0.742668,0.675828,0.627957,0.0173218,0.802375,0.923743,0.640463,0.623768,0.0168938,0.918749,0.368491,0.323185,0.68248,0.309759,0.00397205,0.137577,0.0608499,0.188442,0.489643,0.928795,0.0803829,0.249388,0.134669,0.0872141,0.909638,0.577185,0.588524,0.413162,0.649071,0.439819,0.791434,0.493918,0.704522,0.721112,0.270792,0.429796,0.0687003,0.225275,0.141131,0.57795,0.559599,0.930086,0.35455,0.55393,0.798948,0.0233048,0.469305,0.395374,0.711686,0.519687,0.506457,0.179124,0.198731,0.0779027,0.976359,0.837716,0.999273,0.498872,0.551677,0.856179,0.913625,0.560265,0.235846,0.25416,0.629306,0.352103,0.363399,0.591357,0.515505,0.123969,0.770281,0.0274796,0.0612651,0.151395,0.750623,0.968562,0.216248,0.420504,0.747147,0.661944,0.0604678,0.606534,0.825947,0.682035,0.160937,0.822995,0.292251,0.537231,0.610986,0.0370053,0.660492,0.998048,0.995393,0.808043,0.298737,0.30569,0.656519,0.766047,0.434024,0.406787,0.878149,0.400553,0.00154996,0.731205,0.663967,0.435808,0.083235,0.0334533,0.135248,0.9119,0.500657,0.595524,0.175268,0.377206,0.647302,0.402537,0.475482,0.0214844,0.107467,0.189892,0.109379,0.169306,0.388724,0.0876957,0.0320722,0.234916,0.379905,0.295222,0.71037,0.686576,0.551929,0.0112486,0.0440114,0.167389,0.534866,0.68091,0.989631,0.643202,0.189971,0.871996,0.632282,0.782601,0.761006,0.911269,0.0614337,0.832889,0.749124,0.462924,0.162454,0.405853,0.505937,0.11427,0.525989,0.858071,0.763068,0.460545,0.650074,0.754781,0.107352,0.577391,0.520445,0.99048,0.728589,0.776426,0.778698,0.305505,0.941319,0.496461,0.221333,0.837954,0.795117,0.915572,0.675664,0.766376,0.9129,0.359218,0.228913,0.567518,0.44444,0.225185,0.807661,0.339161,0.668387,0.80251,0.773631,0.235314,0.504796,0.761926,0.166177,0.0595794,0.774201,0.69445,0.88904,0.533593,0.165334,0.5535,0.0356414,0.161227,0.459425,0.430709,0.0646781,0.291723,0.601455,0.479141,0.042699,0.716074,0.162998,0.930103,0.461415,0.255902,0.6195,0.368814,0.704368,0.979748,0.625491,0.573346,0.0080685,0.0772535,0.149766,0.429286,0.760018,0.375079,0.669118,0.970549,0.781656,0.34798,0.47187,0.133253,0.707112,0.721739,0.266944,0.0435446,0.444499,0.976112,0.529703,0.303645,0.416763,0.2906,0.186362,0.597868,0.12709,0.206557,0.204622,0.556891,0.560041,0.858551,0.828442,0.744019,0.995537,0.832804,0.529725,0.0669565,0.0201609,0.934959,0.926418,0.191016,0.27388,0.742999,0.557878,0.0346266,0.591918,0.193995,0.926676,0.53195,0.188884,0.82588,0.503629,0.336577,0.0185118,0.0497097,0.573567,0.0584729,0.72088,0.0755752,0.987235,0.347771,0.972088,0.0145667,0.317437,0.587838,0.634832,0.422022,0.457685,0.44797,0.371154,0.831307,0.723733,0.0871705,0.376729,0.800161,0.866067,0.78468,0.549856,0.17933,0.406849,0.686857,0.408974,0.23074,0.815278,0.129632,0.69807,0.726664,0.127801,0.803441,0.0412581,0.44787,0.210829,0.139891,0.00923097,0.338878,0.371034,0.936535,0.468756,0.510707,0.846339,0.527207,0.76257,0.995989,0.360352,0.113563,0.274305,0.616335,0.149922,0.289843,0.241029,0.850408,0.031428,0.641322,0.566595,0.294042,0.252699,0.679607,0.225398,0.575434,0.746631,0.140097,0.308965,0.715234,0.898463,0.509579,0.919932,0.850167,0.61349,0.499298,0.964942,0.841579,0.963729,0.467515,0.616065,0.506379,0.246135,0.980678,0.166433,0.342763,0.674445,0.745235,0.343321,0.816475,0.714977,0.0686418,0.58751,0.48788,0.142334,0.217483,0.903273,0.432355,0.0294757,0.321798,0.0682696,0.496499,0.479319,0.217076,0.268139,0.531202,0.506922,0.02237,0.828874,0.991752,0.714662,0.370426,0.691718,0.808946,0.717198,0.61929,0.127835,0.946512,0.677362,0.610607,0.900763,0.771103,0.839103,0.855305,0.144543,0.462735,0.701696,0.44705,0.589217,0.548225,0.803658,0.81065,0.164839,0.777673,0.626335,0.0674708,0.95626,0.741716,0.211279,0.665207,0.48161,0.260457,0.394672,0.686966,0.43242,0.699438,0.288085,0.243566,0.543983,0.00406635,0.554924,0.666509,0.252674,0.0567864,0.905173,0.900678,0.446969,0.931109,0.567255,0.105475,0.942534,0.820215,0.735635,0.0952235,0.0346724,0.35234,0.884051,0.77266,0.056012,0.409794,0.95561,0.332452,0.1751,0.494083,0.478576,0.0431083,0.355705,0.362161,0.134005,0.22338,0.0829241,0.638721,0.870755,0.318028,0.489054,0.69964,0.217953,0.0471797,0.481547,0.408418,0.588168,0.134256,0.782601,0.77219,0.937609,0.646337,0.927388,0.304941,0.480805,0.98982,0.683717,0.791787,0.997279,0.480279,0.507286,0.658476,0.770866,0.551649,0.84972,0.214997,0.703696,0.437717,0.0096994,0.705174,0.314937,0.257677,0.185999,0.715533,0.288142,0.399732,0.0527526,0.49183,0.101475,0.300149,0.180293,0.614684,0.54983,0.936606,0.749163,0.13814,0.86268,0.278135,0.841067,0.634298,0.726509,0.998892,0.438643,0.671567,0.376366,0.894184,0.0838797,0.282557,0.512778,0.411045,0.570559,0.3527,0.711833,0.0923932,0.814613,0.819749,0.413183,0.765498,0.196165,0.388128,0.855548,0.100194,0.592797,0.665583,0.205515,0.704616,0.559354,0.089689,0.0475452,0.168151,0.767356,0.759287,0.667131,0.361824,0.478694,0.90587,0.760186,0.459166,0.945414,0.263578,0.51538,0.461173,0.361293,0.984052,0.0456045,0.208408,0.598264,0.22518,0.163846,0.343501,0.899218,0.229122,0.00323069,0.690833,0.248669,0.950371,0.501641,0.850552,0.244864,0.598472,0.724198,0.132822,0.946782,0.477001,0.518436,0.356384,0.87558,0.628795,0.82444,0.735861,0.53631,0.813151,0.368192,0.12346,0.984876,0.486395,0.137918,0.42214,0.416422,0.992974,0.0262097,0.483573,0.292774,0.361719,0.0562919,0.468548,0.990176,0.255745,0.592049,0.772306,0.293162,0.186527,0.996239,0.492714,0.839297,0.753899,0.406864,0.703925,0.149182,0.953438,0.663607,0.204891,0.694311,0.550687,0.953171,0.487509,0.509307,0.725011,0.131997,0.854215,0.218299,0.278142,0.20504,0.312841,0.214989,0.810201,0.156232,0.813092,0.806259,0.0676442,0.836708,0.783372,0.952507,0.468899,0.24327,0.893735,0.0989797,0.0383482,0.333413,0.186084,0.0442564,0.653537,0.940011,0.0698281,0.519758,0.913423,0.871313,0.225391,0.159133,0.161614,0.78393,0.0454315,0.978025,0.881482,0.996927,0.671521,0.297613,0.0132895,0.211163,0.81837,0.608999,0.390023,0.200389,0.705128,0.239558,0.259181,0.612152,0.542737,0.226904,0.0391255,0.153357,0.466655,0.334725,0.276289,0.449681,0.132197,0.467382,0.178518,0.881587,0.5473,0.321123,0.47562,0.913081,0.589073,0.906406,0.441471,0.236848,0.172852,0.552085,0.832948,0.00997972,0.0296862,0.0144556,0.961829,0.457246,0.946635,0.636361,0.696389,0.360874,0.0693999,0.442297,0.843939,0.217954,0.120293,0.313201,0.0378173,0.0744085,0.67923,0.401167,0.173316,0.159831,0.62394,0.241025,0.292372,0.720138,0.409579,0.52513,0.0606114,0.650448,0.368546,0.715535,0.914109,0.57357,0.76938,0.289138,0.0794431,0.376344,0.394552,0.769346,0.306165,0.406552,0.267201,0.976,0.951257,0.823624,0.0985538,0.21381,0.691837,0.583815,0.455974,0.571136,0.53164,|0.996411,0.977561,0.791521,0.602284,0.339614,0.212452,0.462125,0.501275,0.543942,0.95633,0.674203,0.196422,0.242359,0.805922,0.258518,0.903433,0.399418,0.794734,0.942461,0.890412,0.482436,0.704248,0.537875,0.374644,0.387507,0.437658,0.069,0.715676,0.733631,0.582848,0.227379,0.246685,0.199086,0.298271,0.319187,0.458219,0.964537,0.632158,0.426958,0.902766,0.241556,0.738314,0.621822,0.40134,0.140769,0.921543,0.54816,0.361102,0.0115141,0.776977,0.717489,0.828418,0.346072,0.432197,0.986197,0.661124,0.941104,0.924024,0.0731844,0.231159,0.709216,0.971668,0.921785,0.703132,0.231901,0.587063,0.0530766,0.684362,0.428799,0.778066,0.377929,0.351707,0.784908,0.115309,0.616547,0.86064,0.922523,0.722783,0.580023,0.11462,0.184211,0.358413,0.279051,0.496273,0.0217382,0.0910153,0.237605,0.647404,0.0198596,0.59756,0.864945,0.193616,0.874374,0.532214,0.637946,0.917313,0.809714,0.371154,0.974337,0.758585,0.216748,0.0338755,0.56202,0.72625,0.482189,0.269501,0.00349033,0.728281,0.608671,0.92893,0.255445,0.873004,0.834431,0.234832,0.697497,0.30071,0.507831,0.176546,0.830445,0.604222,0.68963,0.585301,0.731271,0.912606,0.561637,0.186725,0.124945,0.567758,0.507821,0.728752,0.418211,0.334629,0.275276,0.68863,0.0543892,0.196445,0.0229287,0.411633,0.734428,0.510916,0.387416,0.544747,0.56696,0.143387,0.23801,0.925331,0.645695,0.649183,0.477015,0.984282,0.534031,0.973933,0.699978,0.350495,0.26138,0.116467,0.968806,0.531461,0.915944,0.544983,0.778777,0.00644094,0.961967,0.47531,0.22949,0.466767,0.341027,0.528726,0.64512,0.327616,0.845725,0.347872,0.0998617,0.503149,0.842072,0.436147,0.301875,0.139171,0.914248,0.161637,0.403014,0.854071,0.569604,0.686405,0.770003,0.0644658,0.742008,0.765098,0.0177487,0.227393,0.511086,0.221496,0.128713,0.111731,0.924624,0.26526,0.783568,0.886839,0.142997,0.613383,0.361601,0.148635,0.574345,0.0181231,0.736104,0.550504,0.706949,0.182241,0.313345,0.70913,0.186021,0.138612,0.945181,0.0200913,0.0843538,0.694533,0.100308,0.583266,0.410118,0.359909,0.666908,0.687146,0.354954,0.353502,0.247179,0.767429,0.803797,0.991335,0.00114799,0.130107,0.930327,0.160765,0.398939,0.717877,0.736879,0.474638,0.247677,0.434586,0.301857,0.265988,0.211603,0.376785,0.953125,0.0150656,0.974598,0.697536,0.0982371,0.91242,0.885342,0.109185,0.212562,0.372605,0.292802,0.178053,0.479457,0.890645,0.454479,0.943782,0.693202,0.493878,0.214635,0.357524,0.9412,0.0812744,0.224754,0.838091,0.306731,0.950144,0.449577,0.282865,0.480415,0.471074,0.153423,0.0611823,0.336362,0.675253,0.98734,0.762872,0.253936,0.310036,0.703327,0.121288,0.0561683,0.941081,0.667484,0.595981,0.988525,0.632938,0.87647,0.461441,0.621181,0.822282,0.367119,0.103656,0.0335372,0.025279,0.173224,0.817881,0.132419,0.472335,0.892757,0.628991,0.811183,0.964165,0.503447,0.613853,0.512766,0.976255,0.305965,0.887263,0.0429686,0.0413846,0.771359,0.517477,0.052946,0.526663,0.377362,0.0895173,0.637367,0.883853,0.468406,0.31132,0.349048,0.210835,0.627886,0.882698,0.408082,0.903452,0.735138,0.807273,0.701179,0.694003,0.00830919,0.964895,0.139097,0.478678,0.808269,0.951333,0.830012,0.689162,0.97697,0.767126,0.512086,0.933483,0.993803,0.0483472,0.286759,0.469423,0.249534,0.379534,0.539758,0.729369,0.888213,0.0715077,0.42562,0.97539,0.276699,0.945678,0.0679407,0.498948,0.396624,0.939956,0.658731,0.540326,0.621911,0.152967,0.0265102,0.0468916,0.517137,0.456621,0.927182,0.433793,0.753317,0.181051,0.224779,0.335246,0.371148,0.527633,0.583291,0.253174,0.7406,0.725186,0.870738,0.396278,0.761616,0.748071,0.0771487,0.232551,0.0626154,0.680604,0.0950491,0.421082,0.55187,0.857946,0.564086,0.282282,0.604776,0.248622,0.347683,0.517572,0.760617,0.534731,0.0790477,0.254833,0.831171,0.038812,0.963412,0.0685606,0.480029,0.904319,0.955137,0.0532206,0.348104,0.276922,0.654825,0.346614,0.644352,0.419377,0.356866,0.0905464,0.565994,0.180328,0.137444,0.40119,0.312801,0.15925,0.822241,0.550154,0.992761,0.144766,0.800993,0.824858,0.143355,0.9983,0.363481,0.710425,0.647947,0.965254,0.259019,0.358895,0.361766,0.717175,0.0325093,0.00238937,0.198519,0.452248,0.302611,0.686802,0.517778,0.235975,0.0901408,0.453735,0.312337,0.855846,0.606662,0.24481,0.327855,0.619588,0.0860782,0.797288,0.829465,0.836032,0.810218,0.680075,0.684022,0.806385,0.894066,0.0823964,0.153326,0.784094,0.426747,0.707165,0.774926,0.368663,0.770126,0.711159,0.549493,0.142759,0.00208122,0.624994,0.695024,0.158379,0.248999,0.402386,0.582832,0.968832,0.162962,0.168873,0.386506,0.669267,0.554601,0.158352,0.646021,0.899736,0.844423,0.125714,0.977987,0.481318,0.324352,0.796345,0.830988,0.968362,0.419077,0.370397,0.668471,0.632767,0.222413,0.976008,0.590317,0.0560228,0.126826,0.00421768,0.623035,0.855138,0.103232,0.960955,0.495418,0.892047,0.596389,0.313311,0.905912,0.249145,0.907679,0.107652,0.906848,0.209087,0.808914,0.288168,0.196966,0.857113,0.933423,0.3011,0.475304,0.775971,0.327685,0.460975,0.526116,0.609619,0.251464,0.919763,0.413625,0.217807,0.399529,0.167112,0.89955,0.621537,0.625543,0.858142,0.221522,0.614893,0.242311,0.465935,0.428077,0.365394,0.46856,0.378908,0.496104,0.870463,0.85262,0.591896,0.522843,0.619118,0.343776,0.883306,0.545805,0.0576303,0.543112,0.47957,0.0569491,0.0158269,0.154088,0.923107,0.382908,0.539052,0.209036,0.460565,0.838875,0.619969,0.921193,0.0754672,0.820625,0.482806,0.604075,0.916592,0.0272423,0.712138,0.303446,0.110341,0.232832,0.256716,0.967414,0.298978,0.527782,0.366641,0.47786,0.784765,0.207597,0.118829,0.366204,0.475177,0.470601,0.0209336,0.809535,0.742188,0.425253,0.0434657,0.713073,0.0122405,0.545635,0.743622,0.621901,0.774113,0.312798,0.0456797,0.378115,0.0418563,0.185284,0.535593,0.590754,0.0169274,0.860067,0.976347,0.468845,0.845317,0.0164726,0.532246,0.866508,0.429314,0.121472,0.256928,0.826405,0.0134864,0.402499,0.150151,0.696475,0.144352,0.92506,0.329555,0.357029,0.174184,0.0784584,0.0569695,0.514846,0.871994,0.100687,0.314402,0.254876,0.224404,0.464741,0.0297506,0.451527,0.726147,0.0134589,0.128696,0.875427,0.657013,0.749386,0.477725,0.808771,0.67895,0.2103,0.996265,0.237425,0.869785,0.239793,0.732677,0.260296,0.032019,0.0334268,0.911321,0.981807,0.824375,0.246413,0.104528,0.661555,0.792677,0.324979,0.340504,0.284539,0.0491185,0.43039,0.390483,0.662124,0.785641,0.0587959,0.781886,0.379061,0.551848,0.975481,0.572976,0.0480503,0.455119,0.880218,0.724538,0.0609295,0.915244,0.685359,0.38228,0.618391,0.0811356,0.212562,0.336175,0.927936,0.125734,0.595877,0.628065,0.253865,0.449857,0.432056,0.125273,0.505001,0.175549,0.79878,0.838116,0.437906,0.367628,0.482936,0.868993,0.820246,0.706874,0.644866,0.544628,0.180201,0.0455816,0.0362355,0.789218,0.838089,0.298516,0.819601,0.545464,0.863866,0.554845,0.441074,0.474211,0.886023,0.684427,0.882088,0.681558,0.252448,0.529595,0.0751508,0.295567,0.57112,0.868057,0.0121071,0.886031,0.0137621,0.909515,0.663451,0.942629,0.78883,0.379379,0.9825,0.440253,0.118307,0.0671618,0.356736,0.451618,0.700775,0.0393836,0.596009,0.198243,0.934322,0.967095,0.360278,0.430674,0.58811,0.737543,0.133263,0.549101,0.100112,0.863873,0.575175,0.787106,0.17568,0.151238,0.673884,0.0311999,0.583501,0.56284,0.820567,0.88493,0.153601,0.672567,0.80719,0.7069,0.511378,0.106688,0.329122,0.539404,0.925804,0.306395,0.342302,0.636649,0.636827,0.169139,0.213759,0.170696,0.130516,0.343982,0.111049,0.000590146,0.999286,0.396606,0.525589,0.548478,0.864819,0.76937,0.414347,0.00301319,0.167985,0.146595,0.308916,0.911308,0.639455,0.383862,0.0270087,0.115936,0.496642,0.82014,0.123825,0.111836,0.788026,0.305106,0.417533,0.698688,0.643379,0.30191,0.568881,0.449965,0.287041,0.173246,0.497783,0.145216,0.586101,0.186941,0.516571,0.390452,0.321685,0.27991,0.175555,0.432677,0.694544,0.997247,0.395528,0.301762,0.422359,0.488351,0.00269294,0.823558,0.596557,0.599385,0.398542,0.252994,0.288682,0.60475,0.564072,0.0278035,0.405931,0.701406,0.151423,0.0903589,0.408459,0.734526,0.345751,0.458444,0.498851,0.65324,0.483173,0.38315,0.198873,0.654674,0.522283,0.255901,0.774152,0.198909,0.745799,0.539204,0.059946,0.508806,0.705732,0.412433,0.226872,0.771332,0.876125,0.74396,0.343489,0.636515,0.785405,0.574846,0.465737,0.556866,0.669124,0.039758,0.24161,0.18498,0.726885,0.00473666,0.0189629,0.275901,0.420687,0.330952,0.705807,0.972133,0.312191,0.744345,0.380649,0.495059,0.35088,0.556299,0.430915,0.318885,0.573314,0.216183,0.773031,0.0618461,0.615038,0.861504,0.230743,0.358893,0.956945,0.418591,0.89222,0.166017,0.941892,0.771895,0.0508133,0.864361,0.375917,0.512464,0.785211,0.339421,0.601251,0.395407,0.847352,0.991243,0.99694,0.746703,0.839471,0.693401,0.708642,0.662174,0.576798,0.44931,0.382323,0.0547435,0.760452,0.828034,0.870193,0.651303,0.0790914,0.890425,0.0882242,0.178508,0.461319,0.422327,0.795238,0.201996,0.805973,0.223361,0.265424,0.0540839,0.00838131,0.134721,0.126379,0.423813,0.247231,0.31615,0.189799,0.185254,0.591,0.579674,0.912152,0.601167,0.906869,0.418594,0.795051,0.284382,0.68098,0.493969,0.367845,0.254224,0.326496,0.501571,0.453385,0.844997,0.0975754,0.872546,0.815528,0.454012,0.93195,0.539818,0.809157,0.76994,0.59965,0.620351,0.944536,0.535612,0.10953,0.290874,|0.426413,0.648754,0.688877,0.078311,0.561637,0.796998,0.582167,0.752814,0.188836,0.209107,0.94051,0.125678,0.901706,0.77055,0.958366,0.60106,0.515851,0.0242183,0.101438,0.28174,0.593266,0.721683,0.624034,0.810156,0.698232,0.843572,0.13444,0.588511,0.57397,0.507554,0.989736,0.797111,0.404042,0.592428,0.567058,0.448539,0.436119,0.663869,0.398331,0.838725,0.98055,0.607675,0.959914,0.625187,0.143245,0.613483,0.672679,0.210767,0.325745,0.100845,0.905876,0.754976,0.736551,0.412155,0.359505,0.962999,0.0813069,0.863907,0.504961,0.386111,0.173615,0.364332,0.525757,0.745222,0.658027,0.779959,0.89578,0.050319,0.349553,0.298438,0.165849,0.218752,0.646485,0.615474,0.0756866,0.113663,0.347115,0.67524,0.504291,0.306231,0.0113857,0.84325,0.248948,0.634244,0.778811,0.310161,0.200199,0.416434,0.556702,0.228511,0.751755,0.628878,0.401419,0.800602,0.864313,0.959392,0.177641,0.863113,0.884713,0.0414099,0.612146,0.062719,0.414311,0.200346,0.0672119,0.0747517,0.767268,0.882185,0.830332,0.168103,0.000493824,0.99623,0.676162,0.418802,0.741811,0.824576,0.661783,0.259916,0.318437,0.106399,0.725039,0.945346,0.933995,0.245831,0.86023,0.881481,0.556444,0.525602,0.678965,0.592509,0.638619,0.648153,0.97494,0.471807,0.383277,0.173863,0.740256,0.362847,0.134836,0.661002,0.101805,0.512997,0.291848,0.141321,0.885536,0.77474,0.343641,0.525563,0.695062,0.775544,0.319636,0.513461,0.198023,0.301698,0.675754,0.363499,0.647066,0.881581,0.560931,0.669651,0.0432947,0.491007,0.493266,0.444689,0.404141,0.264557,0.566398,0.0604345,0.576795,0.229153,0.611756,0.667399,0.639884,0.206961,0.562995,0.430387,0.371044,0.0283214,0.0606779,0.589025,0.0670502,0.397565,0.745183,0.446498,0.940563,0.785612,0.827633,0.602119,0.225789,0.319937,0.33274,0.652944,0.454221,0.782601,0.519118,0.144658,0.48062,0.21867,0.593405,0.153478,0.127204,0.493031,0.284939,0.970038,0.41198,0.511775,0.862848,0.15427,0.573816,0.317267,0.544107,0.212486,0.209969,0.68318,0.322988,0.0557194,0.442939,0.326997,0.359233,0.545224,0.520296,0.0535353,0.253364,0.498021,0.989039,0.607214,0.33385,0.150891,0.251828,0.86984,0.820959,0.75643,0.00112867,0.694638,0.196696,0.965564,0.9768,0.42234,0.62779,0.0592791,0.936309,0.621341,0.741332,0.501785,0.877958,0.470607,0.245037,0.767367,0.205369,0.223787,0.779947,0.193178,0.428435,0.882241,0.91874,0.132662,0.023499,0.989376,0.157755,0.693457,0.800825,0.979089,0.523825,0.20543,0.747884,0.549807,0.978359,0.53187,0.0312109,0.414927,0.443468,0.197388,0.199954,0.89577,0.228422,0.677415,0.914418,0.311476,0.0155549,0.486249,0.956724,0.00315112,0.65369,0.718827,0.0321156,0.181783,0.820258,0.748623,0.55723,0.211464,0.135555,0.0727449,0.53794,0.0310081,0.152351,0.488794,0.217045,0.703621,0.522999,0.919685,0.523632,0.833076,0.583881,0.399879,0.01724,0.801864,0.645893,0.177123,0.136618,0.363903,0.188643,0.814976,0.977359,0.837031,0.373591,0.475918,0.157695,0.0885032,0.460142,0.750131,0.327515,0.524142,0.93437,0.952771,0.717408,0.958621,0.908787,0.441225,0.230759,0.3314,0.939108,0.895066,0.0624326,0.268519,0.905122,0.919196,0.0587956,0.075798,0.148622,0.136559,0.928415,0.560647,0.91974,0.761118,0.818848,0.00919396,0.379653,0.00488883,0.757603,0.90642,0.973901,0.717412,0.821938,0.437351,0.390476,0.333993,0.474413,0.370318,0.773355,0.431812,0.0135093,0.735099,0.378866,0.179394,0.979196,0.158879,0.0696333,0.022831,0.967842,0.976057,0.428759,0.982534,0.198969,0.565247,0.0305344,0.199772,0.506201,0.0939147,0.764494,0.0242202,0.490186,0.83992,0.282939,0.0933917,0.712517,0.703542,0.997325,0.853386,0.649577,0.0671386,0.414477,0.571166,0.811066,0.300382,0.934685,0.214437,0.104211,0.488792,0.812497,0.0722758,0.844148,0.621546,0.922663,0.90732,0.275104,0.181678,0.150451,0.572243,0.629414,0.342088,0.758959,0.501926,0.402171,0.295866,0.225637,0.360638,0.555406,0.891492,0.415299,0.814409,0.271408,0.0302298,0.539588,0.759342,0.791,0.919764,0.42058,0.290327,0.108036,0.336939,0.934194,0.542512,0.115765,0.200047,0.948993,0.867272,0.621116,0.0662783,0.958307,0.0424703,0.760511,0.388331,0.334436,0.928973,0.961545,0.600195,0.797333,0.981968,0.0470884,0.669996,0.367951,0.645586,0.679252,0.487364,0.0656034,0.58501,0.0845551,0.344162,0.194169,0.306318,0.44711,0.546191,0.141424,0.0598177,0.308061,0.0420826,0.287391,0.917466,0.697121,0.307215,0.673411,0.384816,0.91073,0.560425,0.927134,0.598686,0.798762,0.633864,0.371712,0.573148,0.583192,0.133861,0.431529,0.773943,0.641462,0.742456,0.0180745,0.256371,0.371779,0.636703,0.370067,0.602409,0.917329,0.721574,0.868955,0.644588,0.0649744,0.911563,0.718661,0.906694,0.242537,0.944784,0.791849,0.340931,0.335297,0.603537,0.37709,0.0843481,0.735766,0.0661504,0.798178,0.0951198,0.259948,0.323934,0.680659,0.614824,0.0804074,0.243502,0.814797,0.979625,0.810646,0.0394576,0.517962,0.993766,0.442832,0.704136,0.960234,0.670811,0.394712,0.354971,0.283275,0.592249,0.472289,0.665379,0.381668,0.289705,0.378193,0.272564,0.534185,0.794329,0.25499,0.325221,0.939973,0.609619,0.998944,0.0640591,0.902024,0.751499,0.298513,0.788228,0.788518,0.700056,0.465638,0.895548,0.180259,0.236525,0.638958,0.61036,0.967413,0.808013,0.0898891,0.409415,0.440741,0.970444,0.0157707,0.410825,0.890471,0.23361,0.277376,0.0943796,0.487563,0.995344,0.0117598,0.551407,0.530359,0.306726,0.492134,0.664706,0.0109491,0.895035,0.15186,0.401581,0.535868,0.146912,0.872297,0.266211,0.392361,0.605952,0.526276,0.398247,0.240126,0.8315,0.0869194,0.0180648,0.629722,0.257647,0.46729,0.67479,0.410537,0.524847,0.723688,0.545569,0.180692,0.617172,0.81481,0.456033,0.11639,0.125144,0.527902,0.385238,0.596951,0.796317,0.791743,0.890647,0.429364,0.622594,0.382164,0.784798,0.246935,0.267857,0.239473,0.903453,0.814971,0.41981,0.738795,0.966671,0.156473,0.904602,0.895903,0.572158,0.634618,0.523848,0.454142,0.988845,0.169784,0.564484,0.107504,0.868716,0.243942,0.408533,0.827246,0.47764,0.705558,0.431809,0.867479,0.763949,0.732426,0.838826,0.868033,0.594391,0.230725,0.514753,0.948181,0.358463,0.704641,0.557496,0.264125,0.176333,0.46705,0.60346,0.043996,0.791219,0.0449501,0.484245,0.619481,0.608045,0.806413,0.0743251,0.572856,0.20929,0.34328,0.0236902,0.857224,0.739369,0.653803,0.117346,0.402862,0.634869,0.627594,0.873747,0.588303,0.552272,0.44845,0.0837562,0.0927587,0.772604,0.375192,0.58452,0.252806,0.47318,0.898853,0.370683,0.447556,0.403438,0.0394383,0.358479,0.246306,0.840964,0.965547,0.731301,0.367969,0.327223,0.241041,0.257076,0.00268203,0.387985,0.877636,0.198055,0.689353,0.981908,0.430108,0.744888,0.21126,0.833658,0.382218,0.65109,0.919656,0.349304,0.136165,0.755317,0.839682,0.619356,0.097333,0.983992,0.170477,0.7203,0.328642,0.518478,0.30401,0.123585,0.696915,0.242176,0.267606,0.271619,0.175798,0.908012,0.429825,0.601946,0.168864,0.222914,0.193513,0.924133,0.697028,0.405665,0.471191,0.427228,0.932617,0.0845785,0.0465642,0.114943,0.620102,0.0995156,0.0977709,0.278436,0.58728,0.707956,0.449419,0.0597512,0.734976,0.158469,0.121846,0.264027,0.257314,0.464051,0.816985,0.922581,0.524544,0.240711,0.0397363,0.657659,0.139668,0.997892,0.863949,0.249114,0.906814,0.930929,0.44097,0.496344,0.259388,0.633826,0.059209,0.232485,0.633373,0.387804,0.114355,0.984338,0.0269254,0.85504,0.653691,0.252182,0.991039,0.507188,0.734015,0.957059,0.349098,0.681781,0.905415,0.481701,0.222339,0.410486,0.784111,0.0917275,0.225713,0.474455,0.801635,0.80285,0.638541,0.98584,0.335203,0.289384,0.41886,0.613922,0.628636,0.317197,0.938317,0.876524,0.0188479,0.68459,0.184403,0.90896,0.783575,0.328808,0.507113,0.215474,0.237698,0.331064,0.519729,0.482448,0.78841,0.158005,0.461573,0.248649,0.251467,0.894655,0.0563885,0.883223,0.762498,0.983591,0.2317,0.660497,0.461478,0.444298,0.974575,0.483428,0.169032,0.394665,0.0614545,0.883669,0.537482,0.574779,0.066577,0.799506,0.781037,0.348253,0.27578,0.338016,0.528208,0.974479,0.305683,0.583939,0.487708,0.920493,0.64554,0.847736,0.432443,0.115278,0.102219,0.440942,0.904121,0.780957,0.181529,0.334731,0.648661,0.865556,0.776236,0.755786,0.523099,0.632805,0.540481,0.0909336,0.787106,0.719936,0.476235,0.873218,0.570916,0.432351,0.709102,0.951414,0.879157,0.669218,0.96717,0.112617,0.361135,0.600267,0.896861,0.338718,0.739266,0.424945,0.220473,0.35727,0.961875,0.143817,0.481893,0.314065,0.78417,0.739108,0.337098,0.744601,0.199333,0.695038,0.255743,0.04826,0.882596,0.583625,0.115631,0.0203156,0.295405,0.243878,0.874607,0.570585,0.234931,0.725569,0.201781,0.593307,0.786368,0.0072785,0.557769,0.182799,0.947951,0.67697,0.222696,0.863532,0.806909,0.909034,0.375266,0.684464,0.818339,0.00107211,0.984688,0.767058,0.695265,0.0645563,0.942996,0.658201,0.796322,0.18347,0.325657,0.705321,0.815982,0.477598,0.569221,0.191012,0.875198,0.0359895,0.814198,0.167565,0.0402868,0.672597,0.847462,0.948586,0.948247,0.158119,0.40748,0.675752,0.449888,0.288426,0.788764,0.646001,0.447075,0.383243,0.795295,0.787706,0.716061,0.129047,0.285139,0.437286,0.427249,0.638279,0.1725,0.499387,0.0963795,0.400493,0.296114,0.43199,0.153545,0.176522,0.554811,0.991643,0.80366,0.253668,0.420702,0.940958,0.000905931,0.279662,0.995126,0.884632,0.0576007,0.328262,0.776624,0.616554,|0.610388,0.996505,0.292342,0.401972,0.0906253,0.381869,0.707734,0.112913,0.417141,0.175293,0.181082,0.234188,0.091702,0.782456,0.798315,0.207248,0.250997,0.880366,0.343123,0.00151819,0.647692,0.787533,0.208756,0.258658,0.19917,0.284277,0.846481,0.162837,0.402178,0.102464,0.401561,0.478934,0.533572,0.938572,0.813179,0.0203558,0.449707,0.473845,0.020702,0.0563838,0.936433,0.06387,0.0443026,0.581751,0.980619,0.989939,0.912195,0.452732,0.835779,0.146617,0.175919,0.497361,0.558824,0.366522,0.632512,0.404307,0.166247,0.101999,0.302954,0.287178,0.252925,0.577057,0.908132,0.106079,0.863807,0.3103,0.519551,0.502113,0.824294,0.0485954,0.425113,0.117867,0.288131,0.94554,0.55805,0.915822,0.722463,0.498903,0.907877,0.36383,0.264349,0.936819,0.989608,0.402015,0.0172674,0.418092,0.582459,0.957123,0.538361,0.41607,0.99453,0.0954442,0.708283,0.716378,0.667198,0.50344,0.942583,0.996198,0.504364,0.338093,0.927571,0.287952,0.233013,0.676724,0.232769,0.0388926,0.747391,0.936446,0.466518,0.961924,0.601994,0.296571,0.362568,0.95807,0.717095,0.613028,0.781972,0.19862,0.509105,0.0322341,0.25609,0.830988,0.215992,0.0695277,0.327959,0.237273,0.038632,0.226852,0.201205,0.712471,0.0673122,0.250207,0.387649,0.635755,0.851962,0.793797,0.346342,0.324789,0.268868,0.869048,0.791554,0.918937,0.00106025,0.507656,0.17395,0.66479,0.669901,0.283959,0.466938,0.392403,0.956867,0.220893,0.39464,0.439908,0.181071,0.331587,0.970055,0.147677,0.431611,0.771097,0.778694,0.954084,0.482856,0.290872,0.198768,0.819978,0.795971,0.544038,0.300545,0.710694,0.305234,0.591878,0.112595,0.230628,0.478965,0.243735,0.59559,0.267925,0.0607591,0.371222,0.595804,0.871392,0.538333,0.496279,0.328844,0.98393,0.364827,0.804822,0.0808291,0.0410762,0.150574,0.442145,0.594194,0.20363,0.481424,0.51803,0.0710307,0.107259,0.842824,0.748201,0.736807,0.859166,0.556683,0.741801,0.313586,0.833202,0.950655,0.0970985,0.00643981,0.0557349,0.102372,0.0692628,0.942846,0.842889,0.174179,0.666879,0.453072,0.926916,0.484303,0.78603,0.244715,0.0587435,0.342243,0.273356,0.281314,0.363898,0.0649423,0.642319,0.756601,0.414273,0.00387841,0.143477,0.233548,0.97601,0.390546,0.21589,0.433775,0.605108,0.669345,0.858987,0.633295,0.755381,0.58814,0.911873,0.555857,0.366692,0.39567,0.139819,0.611888,0.226497,0.71072,0.546448,0.249385,0.714667,0.566432,0.570776,0.158534,0.922439,0.927492,0.143163,0.563058,0.938501,0.330273,0.976413,0.716525,0.154851,0.282711,0.737069,0.912479,0.974732,0.372952,0.113072,0.790609,0.208223,0.851336,0.251785,0.566569,0.400409,0.250061,0.237196,0.468651,0.644652,0.520402,0.180805,0.951553,0.642782,0.582437,0.179785,0.424133,0.554462,0.416557,0.0982936,0.0598712,0.813204,0.091848,0.947075,0.805578,0.377937,0.776622,0.504097,0.0415111,0.867786,0.219641,0.403117,0.541063,0.663068,0.61562,0.439902,0.187384,0.652063,0.780844,0.446517,0.994239,0.0705733,0.843116,0.610265,0.0595427,0.487518,0.387719,0.802145,0.56426,0.445828,0.0751274,0.513878,0.282275,0.113243,0.208797,0.0307249,0.146918,0.799074,0.545123,0.921685,0.572512,0.775249,0.398255,0.0816786,0.355098,0.790654,0.63946,0.4084,0.766357,0.752066,0.779152,0.932229,0.173792,0.296558,0.262722,0.462175,0.976945,0.710623,0.431493,0.571177,0.701022,0.866663,0.79543,0.227116,0.742378,0.0531946,0.159795,0.60853,0.582033,0.590393,0.28864,0.140008,0.0611954,0.275565,0.455326,0.469204,0.022114,0.0665396,0.608833,0.673516,0.516435,0.386983,0.33509,0.147828,0.931818,0.448316,0.71128,0.726667,0.950219,0.846414,0.83946,0.143557,0.233923,0.209935,0.967429,0.939707,0.0307364,0.917938,0.916236,0.381523,0.384123,0.702908,0.00085628,0.767303,0.146357,0.0207982,0.672997,0.858023,0.167992,0.201953,0.751556,0.449128,0.0705603,0.496189,0.330533,0.681362,0.601326,0.618642,0.974755,0.859546,0.526957,0.170983,0.342829,0.860764,0.997548,0.616413,0.937983,0.644593,0.455136,0.0708957,0.864959,0.452551,0.0681401,0.814273,0.222978,0.734718,0.276729,0.0652635,0.94146,0.285029,0.95438,0.0517068,0.255541,0.0798766,0.470619,0.841582,0.346148,0.675629,0.64649,0.171351,0.750613,0.292053,0.740086,0.580492,0.436627,0.558426,0.730252,0.250326,0.0438759,0.801281,0.319468,0.383546,0.38308,0.151025,0.611542,0.39035,0.841327,0.193715,0.596609,0.931386,0.993201,0.916912,0.875655,0.260799,0.680184,0.0924923,0.503002,0.635368,0.0384334,0.188431,0.832161,0.10048,0.279231,0.14359,0.715402,0.137286,0.430219,0.757499,0.441127,0.270056,0.988406,0.997918,0.982892,0.348937,0.587561,0.080357,0.695932,0.537148,0.296145,0.721063,0.891343,0.139953,0.617332,0.468116,0.369778,0.835836,0.791896,0.292625,0.00480801,0.788044,0.192513,0.253244,0.147723,0.330101,0.600455,0.884628,0.895812,0.243393,0.554038,0.619803,0.392733,0.728297,0.284958,0.431444,0.909834,0.735728,0.342693,0.245586,0.998365,0.539659,0.605705,0.0544858,0.548914,0.219633,0.970321,0.342659,0.170968,0.264409,0.199343,0.0512224,0.645595,0.79825,0.0659804,0.499595,0.489086,0.517428,0.497719,0.497098,0.956887,0.210911,0.176373,0.853605,0.987737,0.217016,0.657202,0.417463,0.521254,0.735296,0.729781,0.11526,0.363503,0.68852,0.132894,0.180682,0.928767,0.219147,0.635114,0.579243,0.754174,0.569848,0.790674,0.967806,0.128999,0.781974,0.810416,0.996952,0.253197,0.562531,0.0975236,0.226758,0.461631,0.659708,0.343462,0.521633,0.249732,0.0441647,0.661091,0.271148,0.800811,0.462636,0.938811,0.218872,0.276886,0.966747,0.404663,0.979631,0.40415,0.269051,0.0180387,0.201093,0.504938,0.527909,0.41447,0.433147,0.372858,0.052873,0.225468,0.879299,0.911778,0.511081,0.799228,0.732991,0.442459,0.874832,0.414716,0.471089,0.121256,0.679763,0.328831,0.0705894,0.471785,0.261069,0.657265,0.420546,0.753291,0.00756776,0.416384,0.351745,0.964628,0.793622,0.741324,0.625637,0.700659,0.801811,0.430937,0.623802,0.429751,0.220339,0.739214,0.915385,0.344608,0.778655,0.491095,0.621024,0.636325,0.745615,0.868813,0.949657,0.581199,0.470378,0.0260052,0.531083,0.615583,0.479892,0.59847,0.40157,0.760439,0.95935,0.348419,0.408938,0.373645,0.908316,0.554238,0.66198,0.984458,0.389313,0.0644185,0.0757155,0.279801,0.164933,0.804325,0.258883,0.9127,0.34111,0.124734,0.0817974,0.647832,0.535041,0.761198,0.124166,0.593986,0.669683,0.717975,0.668242,0.986579,0.561772,0.306732,0.593783,0.688388,0.216263,0.836263,0.181347,0.567419,0.393286,0.2838,0.402586,0.305453,0.689812,0.900941,0.200787,0.129683,0.637144,0.596569,0.699898,0.558246,0.288518,0.349818,0.214554,0.242655,0.140562,0.331529,0.917646,0.655604,0.29583,0.467394,0.667316,0.037917,0.967773,0.636357,0.20153,0.753376,0.409968,0.257478,0.798129,0.178594,0.715662,0.165815,0.138806,0.101273,0.137704,0.19731,0.905814,0.0421684,0.0754485,0.303515,0.122437,0.134148,0.198174,0.989301,0.927133,0.920248,0.906854,0.814989,0.502574,0.252984,0.332023,0.18386,0.476297,0.732047,0.195654,0.472317,0.224408,0.912264,0.180734,0.714181,0.961303,0.0247752,0.821985,0.560743,0.609876,0.376919,0.232142,0.045294,0.269408,0.111924,0.0781526,0.635158,0.97456,0.519771,0.817435,0.531369,0.166605,0.257454,0.382987,0.0693551,0.0576501,0.980358,0.810102,0.581189,0.731706,0.0727747,0.319808,0.653104,0.182959,0.954409,0.616318,0.208174,0.566225,0.0073325,0.152785,0.447688,0.219201,0.209696,0.0388513,0.763549,0.941062,0.973547,0.240427,0.159837,0.716843,0.841763,0.85953,0.320693,0.718111,0.664718,0.186075,0.0955829,0.72889,0.208979,0.634404,0.78685,0.474305,0.532066,0.771096,0.971006,0.112801,0.945055,0.69292,0.838056,0.898518,0.59987,0.616734,0.621361,0.238997,0.883171,0.308276,0.454708,0.645607,0.897466,0.223982,0.279054,0.657297,0.760104,0.924279,0.330144,0.677521,0.751806,0.718758,0.511024,0.0487832,0.610122,0.80978,0.382297,0.683412,0.595131,0.57261,0.799902,0.266038,0.131972,0.791693,0.943703,0.768465,0.374241,0.669342,0.991397,0.551586,0.351485,0.406507,0.219293,0.547933,0.259943,0.846002,0.302892,0.690356,0.582749,0.95811,0.679273,0.637096,0.475507,0.527632,0.605749,0.598918,0.616765,0.67404,0.965081,0.166379,0.698417,0.957963,0.289982,0.147367,0.0855409,0.668548,0.459077,0.417628,0.187573,0.195032,0.293298,0.586106,0.781139,0.725463,0.927459,0.343625,0.488362,0.0793506,0.831796,0.426616,0.000101388,0.874843,0.681597,0.806868,0.261952,0.973569,0.315325,0.284184,0.479657,0.317559,0.881096,0.117356,0.215727,0.670436,0.0217419,0.52233,0.23876,0.62659,0.771122,0.465219,0.574309,0.465358,0.235763,0.389406,0.17279,0.643148,0.17226,0.626658,0.688063,0.625951,0.855229,0.129534,0.612027,0.524906,0.899585,0.366848,0.624267,0.675149,0.844572,0.64477,0.117861,0.785887,0.486513,0.40458,0.248724,0.679227,0.928856,0.797811,0.20706,0.372465,0.491857,0.0443926,0.13719,0.03455,0.949741,0.336874,0.933032,0.640745,0.619622,0.446608,0.45445,0.853844,0.0434168,0.00928867,0.666766,0.731759,0.0104292,0.0944271,0.497278,0.600632,0.726309,0.306917,0.764914,0.912017,0.278384,0.0682055,0.605073,0.599122,0.649244,0.108404,0.146731,0.109686,0.00782603,0.369524,0.388317,0.692588,0.246704,0.459295,0.513786,0.0649399,0.830828,0.0171574,0.436834,0.767013,0.228941,0.07205,0.771609,0.388627,0.492772,0.970734,0.317321,0.809787,0.875045,0.56812,0.276842,0.830222,0.793034,0.0314956,0.357314,0.746128,0.440495,0.965492,|0.703488,0.350401,0.194753,0.982791,0.837989,0.583493,0.94547,0.576264,0.431599,0.233443,0.959794,0.602097,0.281228,0.51469,0.437679,0.62725,0.519794,0.8942,0.484683,0.666471,0.717259,0.743864,0.276853,0.279173,0.62343,0.0202405,0.489905,0.498316,0.3138,0.316133,0.580883,0.64263,0.330369,0.637435,0.440081,0.84537,0.180002,0.578132,0.478455,0.245974,0.952026,0.80297,0.721085,0.326934,0.544131,0.139878,0.745545,0.306322,0.449481,0.395812,0.0250019,0.287456,0.854851,0.529735,0.321481,0.221556,0.274704,0.21848,0.939341,0.395107,0.0359044,0.640468,0.380901,0.286073,0.71296,0.357328,0.217802,0.522365,0.236946,0.742327,0.597816,0.40591,0.650632,0.154759,0.687796,0.0120289,0.502942,0.433556,0.676804,0.940285,0.181418,0.0378419,0.545059,0.625974,0.703422,0.911895,0.172605,0.25031,0.976433,0.141363,0.730158,0.0433589,0.985678,0.54265,0.404386,0.832007,0.537454,0.114429,0.575439,0.838268,0.537934,0.405874,0.513157,0.446353,0.85656,0.610747,0.64465,0.201704,0.901006,0.727148,0.612616,0.965105,0.0587124,0.157636,0.455139,0.249109,0.341816,0.200273,0.0842025,0.668659,0.695643,0.510471,0.259741,0.361359,0.0511644,0.761491,0.102524,0.934335,0.614604,0.164224,0.0608006,0.855978,0.679861,0.0409061,0.384873,0.27539,0.704081,0.529395,0.444241,0.618425,0.203525,0.656197,0.487261,0.0417027,0.961734,0.382684,0.688933,0.279832,0.699103,0.383631,0.85821,0.193156,0.162647,0.417944,0.10665,0.626946,0.477065,0.886939,0.934617,0.750314,0.870757,0.0898439,0.983827,0.500076,0.0792724,0.245236,0.128056,0.20188,0.0909134,0.308572,0.205053,0.68854,0.751477,0.488343,0.994261,0.734537,0.360838,0.88533,0.976425,0.216833,0.109308,0.352698,0.689027,0.794194,0.176775,0.531472,0.575596,0.293375,0.217943,0.239821,0.772799,0.153033,0.0248342,0.979422,0.387944,0.0927551,0.670714,0.0398425,0.914628,0.786028,0.843682,0.0587146,0.600883,0.424621,0.992379,0.308006,0.309501,0.0318406,0.0443311,0.0385768,0.947474,0.543592,0.765294,0.202735,0.67706,0.964577,0.678013,0.772401,0.0621303,0.670192,0.0364724,0.222088,0.0532281,0.631876,0.488455,0.418268,0.0244488,0.243913,0.710597,0.214575,0.126752,0.587973,0.617352,0.571031,0.0936079,0.771642,0.276301,0.474226,0.0994084,0.399636,0.471817,0.731032,0.963008,0.559009,0.374823,0.529631,0.425564,0.0137928,0.739072,0.204134,0.685704,0.370372,0.981409,0.664555,0.0694849,0.940075,0.285377,0.0601402,0.174521,0.531687,0.188928,0.841583,0.250862,0.887075,0.658817,0.350865,0.792124,0.954145,0.998968,0.233917,0.22556,0.999858,0.299493,0.402493,0.5957,0.345805,0.243028,0.374504,0.439904,0.70221,0.940498,0.350808,0.468764,0.30793,0.72819,0.226015,0.35072,0.610852,0.0617229,0.944563,0.482958,0.319581,0.288256,0.29006,0.214718,0.763498,0.953651,0.105529,0.475107,0.677171,0.999614,0.682657,0.625797,0.0851182,0.352235,0.271183,0.691018,0.0839416,0.462136,0.0684073,0.446092,0.627901,0.920747,0.953868,0.337192,0.49009,0.730796,0.0788558,0.771007,0.903073,0.818597,0.906202,0.0941516,0.44812,0.201621,0.716564,0.516703,0.93649,0.356764,0.530833,0.52358,0.388865,0.638886,0.282544,0.101163,0.824215,0.659321,0.685266,0.00329173,0.695822,0.0645834,0.778605,0.716395,0.291804,0.754438,0.537123,0.859793,0.0711604,0.059334,0.752891,0.514129,0.35739,0.631549,0.931096,0.798447,0.556077,0.0043627,0.159083,0.427801,0.346204,0.240112,0.257615,0.125438,0.517816,0.91617,0.275594,0.709765,0.137518,0.559745,0.168756,0.857703,0.883561,0.534899,0.603895,0.0865623,0.995833,0.397032,0.309673,0.0299292,0.290588,0.777089,0.140871,0.46583,0.508867,0.876864,0.913537,0.72216,0.342979,0.218275,0.142606,0.254587,0.0115307,0.105905,0.753774,0.418183,0.980952,0.600017,0.704194,0.237652,0.146434,0.217552,0.0126603,0.954583,0.298153,0.452886,0.978764,0.423815,0.770812,0.722886,0.939466,0.60281,0.862359,0.302454,0.727765,0.331143,0.922855,0.472926,0.109598,0.0797529,0.52506,0.877648,0.656853,0.0603872,0.329146,0.496184,0.994411,0.465582,0.216416,0.455952,0.899972,0.00685871,0.163227,0.168207,0.550045,0.627943,0.244846,0.44422,0.304466,0.88961,0.216693,0.327593,0.0786933,0.0340084,0.943219,0.977864,0.61426,0.356785,0.977139,0.739188,0.120966,0.924006,0.287577,0.496027,0.149948,0.50148,0.3455,0.522299,0.530844,0.955445,0.271428,0.610667,0.0479977,0.0875827,0.769351,0.409148,0.0395071,0.605069,0.383012,0.806451,0.479678,0.732941,0.544615,0.0772695,0.109464,0.819276,0.963408,0.640249,0.00396413,0.152122,0.409551,0.966162,0.441187,0.41747,0.828516,0.413978,0.28552,0.909923,0.954586,0.0797046,0.840935,0.809687,0.458648,0.403564,0.982525,0.0294909,0.579585,0.728609,0.971408,0.575966,0.0210014,0.661206,0.883509,0.389923,0.033248,0.200891,0.151606,0.203098,0.324655,0.380164,0.976077,0.658065,0.72748,0.0603213,0.0888977,0.586692,0.171103,0.752563,0.755015,0.199366,0.865326,0.900672,0.912151,0.0467342,0.971125,0.925845,0.664911,0.647194,0.0580715,0.0752236,0.470911,0.336623,0.654648,0.290183,0.545762,0.771237,0.895525,0.269539,0.937233,0.0612974,0.330867,0.732744,0.969856,0.648049,0.845898,0.384132,0.644863,0.567661,0.0567406,0.926523,0.0706489,0.235657,0.220897,0.95449,0.785892,0.934054,0.751616,0.96737,0.785873,0.0752001,0.489936,0.515026,0.864044,0.0978196,0.985029,0.814465,0.876792,0.359888,0.232651,0.995808,0.572846,0.676347,0.296717,0.213118,0.230943,0.763663,0.495724,0.0926749,0.0448205,0.760804,0.0399162,0.244371,0.819328,0.342385,0.198772,0.703997,0.0969141,0.749178,0.684356,0.662589,0.955127,0.849682,0.653251,0.176696,0.262771,0.613392,0.827152,0.0920191,0.846295,0.870976,0.887832,0.784194,0.605239,0.123768,0.81859,0.0422614,0.572771,0.331195,0.884978,0.801295,0.859098,0.214983,0.628669,0.644455,0.279548,0.409677,0.618359,0.955767,0.787419,0.227746,0.0233722,0.317913,0.154715,0.564063,0.622832,0.427847,0.394361,0.306082,0.144158,0.617381,0.78757,0.133438,0.525065,0.923223,0.922815,0.00391066,0.17541,0.542034,0.200353,0.9803,0.064842,0.542146,0.370385,0.85878,0.676197,0.557563,0.935864,0.734713,0.892874,0.2412,0.085376,0.591817,0.439741,0.647165,0.92543,0.470971,0.890764,0.123238,0.464416,0.0563001,0.874241,0.0750231,0.38899,0.715971,0.00795692,0.955879,0.713733,0.10219,0.199105,0.907786,0.408074,0.705841,0.949091,0.824423,0.183455,0.363141,0.183934,0.374789,0.794013,0.196505,0.331424,0.0409069,0.902868,0.912929,0.432889,0.942449,0.467328,0.575527,0.360036,0.382169,0.210435,0.0405874,0.202886,0.317593,0.504141,0.798421,0.094437,0.574523,0.0470848,0.0305914,0.850533,0.573099,0.819964,0.358397,0.669241,0.271799,0.918962,0.856034,0.199507,0.19557,0.0959645,0.264174,0.749353,0.590838,0.26202,0.115638,0.948625,0.13123,0.217109,0.744093,0.705775,0.532803,0.875964,0.660064,0.420558,0.99447,0.0143345,0.455009,0.882063,0.662228,0.543536,0.484246,0.689423,0.424807,0.513306,0.487151,0.990363,0.99409,0.137085,0.0472285,0.943464,0.783004,0.281021,0.808006,0.42337,0.420797,0.640834,0.0302485,0.715872,0.30601,0.250776,0.922754,0.158613,0.808479,0.915946,0.57184,0.275402,0.85753,0.625019,0.358628,0.248217,0.231434,0.480452,0.677254,0.161362,0.142142,0.568199,0.814824,0.731702,0.458131,0.942227,0.0073024,0.556437,0.871483,0.573491,0.931374,0.830685,0.0920216,0.523719,0.307708,0.653911,0.441478,0.210912,0.178299,0.956002,0.118487,0.130543,0.219014,0.486996,0.780291,0.414815,0.339661,0.149646,0.845216,0.977547,0.559641,0.482879,0.874885,0.00837767,0.565896,0.334427,0.0270795,0.744196,0.933317,0.983339,0.668996,0.346826,0.943877,0.0835053,0.477142,0.00364178,0.68768,0.388266,0.515141,0.369929,0.715742,0.685489,0.726639,0.81603,0.193174,0.0427496,0.294801,0.699067,0.138146,0.512046,0.212201,0.578979,0.60086,0.670228,0.0817335,0.190357,0.565564,0.917718,0.832781,0.59082,0.223506,0.823414,0.667919,0.617317,0.88322,0.286143,0.884093,0.819179,0.476816,0.15617,0.678085,0.596713,0.689683,0.160139,0.756892,0.397579,0.178848,0.643041,0.411383,0.27758,0.726867,0.466866,0.470145,0.129703,0.113164,0.00175846,0.246266,0.264919,0.373453,0.419228,0.932767,0.297686,0.501119,0.535882,0.898429,0.451914,0.146722,0.233985,0.784825,0.681702,0.966076,0.148757,0.198329,0.774978,0.420789,0.554435,0.597122,0.755848,0.856005,0.255876,0.430034,0.226459,0.87227,0.428658,0.268159,0.255048,0.00864422,0.170449,0.997947,0.712209,0.87226,0.337057,0.23726,0.978533,0.292541,0.140556,0.0265557,0.975564,0.0261834,0.00578928,0.56057,0.562366,0.327933,0.00245559,0.529637,0.629143,0.91794,0.894597,0.28483,0.274399,0.888848,0.581797,0.456635,0.927419,0.15131,0.905697,0.359065,0.902435,0.739258,0.0891544,0.881306,0.431147,0.168529,0.246133,0.574854,0.787569,0.831076,0.614026,0.976147,0.195134,0.42462,0.343318,0.942068,0.310035,0.346846,0.876112,0.955451,0.0138758,0.233051,0.414483,0.173136,0.0517917,0.48817,0.849968,0.302087,0.823619,0.676051,0.026328,0.549353,0.654931,0.243779,0.874435,0.588862,0.748579,0.658389,0.877428,0.310379,0.583128,0.39691,0.0411544,0.442563,0.687485,0.0235698,0.889515,0.914584,0.346875,0.367126,0.746885,0.0342321,0.929308,0.259049,0.698066,0.460623,0.733775,0.582672,0.204728,0.493706,0.406249,0.483891,0.257686,0.429415,0.277093,0.761,0.944679,0.933781,0.938216,0.240891,0.499332,0.608786,0.112795,0.645453,0.436595,0.404249,0.436185,0.784555,0.607167,|0.520151,0.200068,0.769271,0.851191,0.378729,0.71591,0.503288,0.00729841,0.540881,0.389227,0.99046,0.313838,0.182312,0.0183687,0.419322,0.134486,0.249739,0.3746,0.627131,0.794416,0.300225,0.370266,0.0134576,0.149339,0.73343,0.851011,0.910006,0.914573,0.226696,0.695998,0.615894,0.464397,0.289557,0.415061,0.825598,0.45502,0.371529,0.0373105,0.652047,0.119153,0.120104,0.644811,0.905635,0.142309,0.520214,0.489362,0.575607,0.778221,0.132064,0.153187,0.755997,0.709714,0.528275,0.0865017,0.688641,0.281875,0.674508,0.783955,0.190025,0.784547,0.83462,0.281504,0.557165,0.834859,0.187365,0.0712774,0.582085,0.486987,0.443157,0.139508,0.30534,0.910503,0.039923,0.627591,0.705172,0.701619,0.85044,0.348827,0.677118,0.773014,0.536999,0.455702,0.58337,0.21534,0.691619,0.218749,0.971338,0.285217,0.27256,0.448125,0.069863,0.23461,0.274352,0.0661297,0.154186,0.403252,0.828462,0.771869,0.0642245,0.759623,0.112984,0.352202,0.719453,0.0102261,0.585701,0.913894,0.610992,0.824704,0.892706,0.997654,0.105606,0.838834,0.334237,0.677822,0.466897,0.7005,0.487511,0.000248551,0.471864,0.454884,0.928066,0.465768,0.703618,0.558529,0.0383539,0.0543153,0.503653,0.358869,0.373498,0.25696,0.614481,0.559211,0.603971,0.15003,0.643783,0.308271,0.797614,0.135418,0.256206,0.104619,0.388177,0.671567,0.790174,0.817803,0.177224,0.779751,0.684893,0.0373427,0.360321,0.249973,0.853705,0.197691,0.851057,0.171991,0.594503,0.129323,0.787724,0.365966,0.711593,0.581978,0.195337,0.056697,0.349711,0.568293,0.136457,0.999935,0.829406,0.406093,0.402828,0.872799,0.443763,0.0598615,0.881379,0.673423,0.966818,0.53572,0.396947,0.0465829,0.831752,0.464281,0.436221,0.57507,0.844159,0.337367,0.427316,0.333809,0.339543,0.758605,0.379617,0.119731,0.670663,0.727524,0.218433,0.170535,0.127217,0.426443,0.976692,0.350504,0.756662,0.482579,0.309361,0.198099,0.135556,0.702318,0.923253,0.39821,0.337921,0.70828,0.0319618,0.830091,0.894504,0.548192,0.589026,0.254691,0.637663,0.925508,0.604506,0.779735,0.678072,0.665419,0.420006,0.923147,0.126652,0.150923,0.194118,0.0647836,0.961027,0.994322,0.0318972,0.398946,0.0740432,0.905972,0.611098,0.23657,0.59577,0.339211,0.595233,0.978015,0.0182733,0.414325,0.204721,0.737603,0.0931044,0.365664,0.667691,0.935442,0.463213,0.854345,0.0952605,0.118675,0.12494,0.973699,0.439333,0.413818,0.211573,0.000252366,0.947412,0.965122,0.643437,0.720707,0.097411,0.182741,0.0238656,0.0288175,0.682206,0.0204555,0.730576,0.808048,0.922262,0.509306,0.265,0.716264,0.965134,0.954471,0.857814,0.791177,0.450416,0.636,0.664067,0.308733,0.942438,0.568191,0.215936,0.0188922,0.821355,0.30846,0.328679,0.556918,0.0467891,0.938288,0.631583,0.611232,0.250009,0.163631,0.831154,0.710525,0.0225344,0.518773,0.739203,0.621902,0.718772,0.38541,0.0494921,0.53711,0.510978,0.397649,0.788312,0.60777,0.562083,0.15521,0.133827,0.794543,0.451424,0.611982,0.778392,0.461722,0.177265,0.160805,0.0211971,0.579234,0.602675,0.549474,0.73136,0.053134,0.0326678,0.257297,0.867772,0.0360222,0.785077,0.19445,0.00434238,0.399656,0.0715567,0.85012,0.277164,0.525084,0.645295,0.923807,0.0896664,0.154875,0.0504986,0.711467,0.746465,0.377896,0.406722,0.389539,0.110256,0.00244814,0.441739,0.396185,0.0894084,0.896177,0.824421,0.154544,0.532592,0.20446,0.557015,0.724528,0.550699,0.944833,0.699127,0.75685,0.29936,0.188466,0.298521,0.460351,0.38546,0.802429,0.233854,0.0423588,0.207198,0.11025,0.042182,0.753921,0.559242,0.145816,0.355969,0.934565,0.697121,0.0774221,0.976708,0.872282,0.963047,0.544339,0.0971709,0.86447,0.695092,0.816406,0.449447,0.818824,0.0384331,0.404616,0.679678,0.632367,0.118473,0.428943,0.48186,0.428216,0.0450026,0.827783,0.709496,0.367552,0.137157,0.536255,0.137269,0.578528,0.56498,0.254359,0.291067,0.249439,0.896357,0.953872,0.812412,0.0486427,0.425779,0.804703,0.370886,0.941814,0.92727,0.86281,0.18341,0.00317824,0.00734907,0.533804,0.230289,0.128679,0.543597,0.662624,0.82911,0.858616,0.384121,0.0238537,0.514149,0.138667,0.367284,0.29067,0.493968,0.548545,0.287671,0.527577,0.979287,0.739911,0.643958,0.713369,0.990836,0.736784,0.00511932,0.227454,0.735118,0.248803,0.373008,0.25749,0.967634,0.482923,0.529384,0.978174,0.338765,0.836767,0.653308,0.107243,0.459813,0.962816,0.811373,0.951544,0.44519,0.125483,0.500654,0.489841,0.346302,0.146116,0.780615,0.624208,0.335241,0.88618,0.312524,0.588071,0.335767,0.985251,0.213662,0.780765,0.477908,0.972763,0.892434,0.921922,0.00759268,0.0980136,0.796678,0.183577,0.610969,0.399975,0.668094,0.613887,0.279339,0.261508,0.364789,0.0107133,0.136565,0.394939,0.537668,0.908455,0.885245,0.232467,0.311414,0.0510868,0.222603,0.970635,0.809463,0.0259021,0.790022,0.991444,0.463783,0.690115,0.809769,0.397123,0.386257,0.496555,0.858161,0.792358,0.902955,0.131694,0.22328,0.400381,0.494796,0.158399,0.264218,0.460415,0.458077,0.43117,0.776141,0.605068,0.0648921,0.710375,0.180438,0.371263,0.0317938,0.0330865,0.304308,0.0721173,0.579125,0.314648,0.215513,0.731352,0.164998,0.0597125,0.462533,0.618322,0.667319,0.0224586,0.731791,0.388305,0.434539,0.0324368,0.395955,0.581037,0.35768,0.564684,0.452906,0.611611,0.860867,0.820159,0.975802,0.567014,0.788597,0.684025,0.458535,0.579249,0.407665,0.668385,0.963211,0.146707,0.701758,0.0560584,0.065989,0.376104,0.0952226,0.952816,0.218904,0.988447,0.83998,0.153338,0.322395,0.758791,0.220397,0.375535,0.836431,0.469903,0.939989,0.0147486,0.198549,0.768607,0.826933,0.675291,0.802121,0.605478,0.278922,0.905949,0.142551,0.478254,0.875237,0.817231,0.814096,0.803774,0.843808,0.226361,0.0204678,0.6212,0.458534,0.15013,0.532669,0.564807,0.68525,0.636253,0.513707,0.783365,0.0840659,0.419951,0.225551,0.465016,0.154452,0.418515,0.446347,0.159981,0.456335,0.276084,0.358419,0.653058,0.720814,0.649122,0.742562,0.889547,0.80195,0.261545,0.767117,0.630779,0.138852,0.846065,0.482389,0.416734,0.707902,0.63005,0.37916,0.20527,0.960731,0.884946,0.575041,0.298648,0.819961,0.973672,0.519848,0.51973,0.914855,0.655315,0.46116,0.327842,0.360801,0.19339,0.835502,0.352117,0.624347,0.915664,0.15098,0.773464,0.519963,0.438074,0.328632,0.655683,0.456373,0.415613,0.763732,0.0765172,0.730932,0.293251,0.146897,0.907695,0.527534,0.316653,0.693807,0.760844,0.405309,0.00725281,0.0425863,0.483808,0.129786,0.726815,0.86329,0.222492,0.214584,0.779432,0.486595,0.715743,0.986726,0.836199,0.770826,0.570462,0.347053,0.238228,0.632638,0.906826,0.369792,0.283054,0.649146,0.0245551,0.414713,0.0468796,0.561571,0.417229,0.149377,0.775471,0.963331,0.0622856,0.850943,0.804444,0.999437,0.501599,0.0518219,0.517838,0.895509,0.633731,0.611191,0.726896,0.963834,0.896417,0.821984,0.228417,0.578437,0.879882,0.114567,0.609838,0.576736,0.876718,0.589961,0.187649,0.439855,0.330866,0.727534,0.681766,0.0887074,0.97342,0.10777,0.355334,0.624213,0.942812,0.0747256,0.293637,0.237738,0.903486,0.463031,0.511936,0.754611,0.536529,0.171642,0.99942,0.842575,0.690523,0.522549,0.976702,0.987302,0.644423,0.614315,0.208,0.595325,0.516592,0.214477,0.454957,0.524414,0.55384,0.707733,0.846531,0.424624,0.262545,0.0140833,0.111619,0.2612,0.859464,0.731246,0.454426,0.893231,0.108116,0.965898,0.321755,0.843324,0.873545,0.646457,0.130471,0.592918,0.692381,0.340499,0.532972,0.64577,0.395893,0.366861,0.999334,0.110495,0.752083,0.170459,0.481306,0.406727,0.14723,0.916376,0.686445,0.296461,0.907389,0.698952,0.942296,0.478316,0.0403678,0.569092,0.871289,0.647308,0.850286,0.224125,0.0220912,0.0313212,0.500469,0.88463,0.16522,0.313119,0.669943,0.931241,0.0203308,0.260202,0.293218,0.973377,0.668981,0.88383,0.188146,0.250324,0.643068,0.139308,0.701638,0.472218,0.697021,0.29153,0.680372,0.733852,0.366108,0.673325,0.178971,0.200787,0.249837,0.766694,0.853996,0.0297504,0.290196,0.221235,0.320522,0.989518,0.250323,0.735138,0.974508,0.817769,0.397261,0.611784,0.914697,0.497165,0.504443,0.494105,0.285782,0.397583,0.153261,0.049499,0.332347,0.330167,0.70728,0.883613,0.0158848,0.378494,0.13923,0.146955,0.55056,0.467995,0.620674,0.427172,0.968463,0.124885,0.614246,0.81141,0.165631,0.250561,0.517139,0.463279,0.540331,0.119431,0.382627,0.842027,0.865723,0.18327,0.730552,0.698599,0.836003,0.885511,0.29751,0.578348,0.262165,0.147469,0.267071,0.832716,0.616462,0.169991,0.685449,0.205407,0.55698,0.988186,0.210338,0.720707,0.851776,0.963993,0.417202,0.895729,0.834713,0.860145,0.998898,0.0722414,0.398629,0.582016,0.348222,0.717876,0.757897,0.462457,0.859887,0.743227,0.60895,0.746246,0.298204,0.706748,0.871366,0.75244,0.0018602,0.367343,0.118517,0.0562697,0.415251,0.322341,0.312501,0.163495,0.532525,0.637996,0.302559,0.139283,0.333337,0.356059,0.543763,0.914623,0.428381,0.186184,0.864922,0.394924,0.846957,0.594616,0.526263,0.918928,0.929263,0.290374,0.722065,0.826384,0.766036,0.380101,0.953535,0.664696,0.628021,0.0689034,0.196482,0.55509,0.169336,0.0558265,0.212644,0.957644,0.482995,0.764795,0.803472,0.309504,0.38269,0.950854,0.409987,0.157574,0.6221,0.899433,0.577363,0.212337,0.136565,0.484711,0.94219,0.980677,0.0742964,0.182737,0.43537,0.0703298,0.747575,0.883051,0.361068,0.378104,0.825169,0.639813,0.106267,0.16227,0.125813,0.826507,0.510367,0.861827,0.0747544,|0.457204,0.230025,0.7262,0.0407789,0.769756,0.89391,0.0327966,0.304673,0.612354,0.634651,0.139183,0.271811,0.9397,0.515004,0.852308,0.939292,0.606871,0.505074,0.84759,0.667107,0.448646,0.869577,0.152734,0.299602,0.802848,0.39376,0.998763,0.0549076,0.200875,0.655347,0.787611,0.132539,0.412173,0.0986474,0.845722,0.693368,0.749908,0.863158,0.00039047,0.0109134,0.169238,0.574837,0.441869,0.814217,0.40355,0.64223,0.599101,0.605416,0.286626,0.434744,0.48079,0.520497,0.997016,0.290552,0.0632652,0.386872,0.865066,0.890921,0.377564,0.862639,0.389412,0.0846985,0.943399,0.952943,0.149614,0.0180106,0.961143,0.800296,0.352052,0.141176,0.390124,0.637279,0.272271,0.362432,0.887353,0.944056,0.954531,0.0866046,0.410275,0.468691,0.0186758,0.13099,0.577218,0.58058,0.723715,0.742382,0.56798,0.060892,0.158084,0.279815,0.375544,0.0295138,0.938127,0.980856,0.481869,0.730189,0.242936,0.677121,0.257839,0.784917,0.116339,0.847227,0.753481,0.272966,0.90196,0.739302,0.736977,0.653779,0.659612,0.0873602,0.642829,0.359387,0.380293,0.742327,0.264945,0.554383,0.735309,0.478804,0.44308,0.0921001,0.254551,0.649064,0.785224,0.765785,0.426891,0.671459,0.875056,0.915516,0.045995,0.221322,0.512431,0.0543361,0.0724857,0.0151541,0.593455,0.272382,0.334959,0.314078,0.526892,0.43217,0.205474,0.952884,0.709127,0.477834,0.54862,0.0379756,0.0157101,0.410846,0.679697,0.180028,0.0951396,0.671938,0.359053,0.753113,0.732143,0.419171,0.141794,0.303598,0.869405,0.466231,0.33767,0.379563,0.666495,0.92892,0.807666,0.72907,0.688472,0.740371,0.117482,0.2253,0.586765,0.963158,0.0541481,0.0218491,0.350582,0.603131,0.275434,0.878627,0.0921186,0.571623,0.921656,0.595114,0.759315,0.667584,0.0949056,0.748206,0.851009,0.600916,0.133718,0.806948,0.904375,0.0073216,0.447664,0.023322,0.128613,0.389766,0.86799,0.29433,0.201068,0.0978821,0.216324,0.888168,0.185801,0.959717,0.944338,0.922026,0.36868,0.165274,0.561279,0.558457,0.754462,0.735893,0.350149,0.450697,0.793447,0.588014,0.916087,0.244882,0.787788,0.315833,0.813617,0.734941,0.486268,0.17043,0.746599,0.31887,0.500586,0.844933,0.544044,0.995021,0.784194,0.910056,0.266918,0.068825,0.995813,0.631875,0.442317,0.251712,0.799009,0.139105,0.472288,0.631682,0.546984,0.429889,0.133989,0.0949554,0.286197,0.750009,0.255664,0.307474,0.180147,0.322934,0.979251,0.369302,0.290119,0.551042,0.0831399,0.54675,0.829843,0.398523,0.0700099,0.0782123,0.512413,0.879737,0.970993,0.688461,0.196413,0.227533,0.321128,0.170637,0.487864,0.466376,0.103283,0.567841,0.0898582,0.168951,0.23817,0.570917,0.991589,0.696172,0.117979,0.189819,0.442444,0.831857,0.764493,0.0863285,0.519086,0.260168,0.717887,0.395614,0.188022,0.359706,0.763928,0.166131,0.781925,0.37755,0.397732,0.791737,0.801358,0.671692,0.583341,0.484709,0.0311694,0.615863,0.920525,0.472486,0.916436,0.0486033,0.118199,0.881787,0.276012,0.518956,0.943004,0.823748,0.943988,0.114973,0.502151,0.232798,0.859956,0.420284,0.616618,0.271166,0.653752,0.564505,0.266512,0.510894,0.359033,0.102618,0.0959534,0.723368,0.850095,0.197774,0.183488,0.117657,0.229068,0.0697319,0.195108,0.0905111,0.794113,0.274175,0.343085,0.205404,0.831652,0.00339961,0.732581,0.661558,0.399047,0.0453242,0.972557,0.145428,0.344491,0.99406,0.506281,0.866818,0.0825812,0.157736,0.308253,0.974676,0.51218,0.503524,0.669914,0.590586,0.730709,0.347761,0.952832,0.451032,0.0246891,0.889901,0.775221,0.777959,0.988043,0.801711,0.596128,0.816391,0.689737,0.291064,0.795774,0.0415025,0.529623,0.845232,0.638278,0.291921,0.827588,0.846054,0.952389,0.947388,0.675404,0.293949,0.305246,0.202874,0.100734,0.879029,0.81476,0.0625746,0.933773,0.897685,0.201109,0.311262,0.706981,0.0186165,0.443981,0.866407,0.0315509,0.595483,0.360936,0.148077,0.699921,0.672657,0.300917,0.363041,0.0665983,0.915517,0.192243,0.834064,0.0947411,0.772607,0.0925488,0.913695,0.328002,0.310936,0.854661,0.10799,0.0447455,0.137042,0.444669,0.565668,0.376668,0.0406886,0.97835,0.953615,0.0237627,0.107334,0.320801,0.215859,0.116504,0.534019,0.999531,0.697203,0.122133,0.932487,0.711129,0.160513,0.5604,0.0665411,0.795617,0.33692,0.494896,0.0795848,0.214648,0.526758,0.49998,0.779518,0.700216,0.816319,0.96563,0.64697,0.0353953,0.692292,0.282524,0.750711,0.383827,0.728772,0.794113,0.554207,0.6002,0.36861,0.964111,0.612902,0.309955,0.232395,0.496827,0.527264,0.755075,0.761031,0.201466,0.0427116,0.573914,0.591422,0.245236,0.482287,0.100909,0.0608724,0.486615,0.661743,0.533362,0.621915,0.282365,0.244442,0.759124,0.472277,0.899855,0.537201,0.118996,0.545154,0.819622,0.232884,0.387621,0.0218397,0.317589,0.447772,0.974548,0.367897,0.733262,0.144821,0.479073,0.817782,0.540612,0.765258,0.637431,0.126794,0.179717,0.99714,0.230365,0.137825,0.10707,0.881912,0.58156,0.573762,0.68115,0.312548,0.549392,0.376367,0.655662,0.50076,0.414139,0.802007,0.305419,0.350645,0.63416,0.274727,0.236491,0.562963,0.853699,0.750281,0.208877,0.0874177,0.744104,0.933882,0.202442,0.266737,0.301317,0.402117,0.00743252,0.918687,0.919802,0.79489,0.196629,0.00598431,0.912876,0.0587499,0.230998,0.543803,0.716341,0.0536378,0.142118,0.420523,0.631754,0.321041,0.42714,0.36357,0.155113,0.236137,0.228192,0.242232,0.474727,0.912579,0.783331,0.011893,0.7981,0.787937,0.699711,0.698126,0.119182,0.207126,0.657202,0.274251,0.952749,0.400186,0.759173,0.469246,0.10704,0.425081,0.367093,0.281286,0.00742036,0.477311,0.370416,0.481823,0.673964,0.524202,0.638994,0.303488,0.216516,0.0613855,0.986181,0.856125,0.561585,0.0457057,0.72366,0.732856,0.607183,0.171899,0.210826,0.769123,0.656842,0.81596,0.887327,0.582488,0.209474,0.568986,0.521634,0.635969,0.212313,0.359584,0.0842335,0.741295,0.227109,0.00912368,0.0170082,0.670153,0.302721,0.232579,0.510001,0.068886,0.815373,0.0667461,0.950091,0.653482,0.760668,0.178943,0.278,0.68527,0.110606,0.600817,0.982592,0.86586,0.71518,0.86876,0.2708,0.0681526,0.211952,0.898263,0.073051,0.695487,0.357885,0.111609,0.351302,0.645423,0.572308,0.490189,0.971697,0.97359,0.841733,0.736598,0.241567,0.95408,0.64272,0.122744,0.212536,0.97113,0.810081,0.971873,0.603507,0.618285,0.979584,0.592052,0.263693,0.559891,0.53827,0.756191,0.106574,0.502595,0.642824,0.241255,0.593141,0.519184,0.420714,0.665727,0.0193722,0.157102,0.59203,0.779463,0.705249,0.120072,0.235978,0.70791,0.53179,0.546683,0.0259309,0.156256,0.920278,0.799176,0.651825,0.902478,0.862243,0.476561,0.614575,0.638058,0.384534,0.461976,0.869416,0.779325,0.899067,0.169374,0.379692,0.299012,0.634187,0.659152,0.561348,0.781492,0.194456,0.877608,0.98269,0.20702,0.302764,0.261988,0.269219,0.598752,0.748755,0.945256,0.315677,0.23298,0.435239,0.536875,0.893634,0.113932,0.756131,0.874722,0.831524,0.594501,0.780757,0.788116,0.454473,0.563144,0.170361,0.357942,0.144691,0.936167,0.207687,0.735257,0.092857,0.440401,0.608414,0.550877,0.918545,0.199161,0.887463,0.241262,0.305723,0.423089,0.63394,0.158384,0.982483,0.266917,0.544209,0.08848,0.918359,0.305463,0.802609,0.911651,0.350281,0.506833,0.803666,0.895012,0.383353,0.923204,0.883837,0.216255,0.213031,0.650602,0.12184,0.804214,0.409954,0.0194799,0.698618,0.819632,0.518456,0.662424,0.261804,0.599386,0.911467,0.770376,0.603856,0.937398,0.317461,0.080006,0.997567,0.3095,0.639531,0.158595,0.620656,0.983085,0.482537,0.695827,0.117726,0.483816,0.0631203,0.337058,0.487143,0.873741,0.645184,0.945777,0.673447,0.229947,0.194936,0.870316,0.489404,0.339498,0.70904,0.843212,0.30715,0.375507,0.277336,0.595397,0.357117,0.603792,0.959107,0.100063,0.316748,0.747097,0.342968,0.0967556,0.522458,0.476841,0.532137,0.27701,0.25221,0.558545,0.582603,0.132029,0.382219,0.584659,0.862949,0.758978,0.095939,0.421522,0.779739,0.713768,0.0502712,0.400608,0.457696,0.307648,0.824791,0.834552,0.191497,0.980911,0.0873434,0.88139,0.665885,0.0512487,0.542318,0.780841,0.308244,0.837872,0.626666,0.180928,0.746936,0.268305,0.56131,0.221758,0.640331,0.289299,0.211259,0.191645,0.73762,0.0894061,0.77094,0.0303299,0.177074,0.367401,0.874746,0.286396,0.564796,0.421429,0.66547,0.0502421,0.473124,0.891887,0.41384,0.83828,0.37516,0.344668,0.568489,0.277512,0.633297,0.454258,0.467319,0.0769328,0.392762,0.366175,0.203888,0.212474,0.314346,0.394815,0.945433,0.764002,0.748323,0.40773,0.510123,0.0360774,0.404437,0.0166344,0.102142,0.638577,0.622603,0.588096,0.633759,0.208197,0.290878,0.247412,0.324661,0.909166,0.780048,0.953504,0.00476635,0.811776,0.109788,0.745297,0.919768,0.268789,0.596949,0.0636416,0.188606,0.116228,0.255232,0.459029,0.640606,0.840945,0.365152,0.952852,0.756829,0.840622,0.807771,0.191416,0.234668,0.867988,0.351499,0.533553,0.0743766,0.720547,0.936222,0.322672,0.564468,0.0418007,0.544352,0.235419,0.764755,0.980706,0.0260248,0.599983,0.518359,0.278536,0.233283,0.900245,0.916184,0.412219,0.0423136,0.574147,0.110532,0.477434,0.564352,0.603666,0.284086,0.416366,0.672508,0.355735,0.747164,0.620309,0.934143,0.13513,0.0401751,0.0214461,0.432067,0.135379,0.449773,0.949932,0.531594,0.829341,0.896572,0.266821,0.534234,0.536752,0.71045,0.866812,0.713076,0.247515,0.618826,0.889737,0.805291,0.134462,0.970982,0.46016,0.753338,0.0132347,0.930067,0.632578,0.77114,0.123948,0.852224,0.833624,|0.358719,0.543576,0.563169,0.442686,0.703857,0.3919,0.560757,0.425885,0.844913,0.716697,0.404951,0.432418,0.198366,0.237241,0.908797,0.653647,0.067221,0.31719,0.476792,0.516627,0.856095,0.917153,0.521563,0.979189,0.650964,0.975797,0.467778,0.21338,0.721493,0.227183,0.512826,0.281839,0.117409,0.764139,0.576434,0.810253,0.243388,0.212359,0.629257,0.0864075,0.752973,0.551173,0.87163,0.44291,0.448291,0.557449,0.71453,0.653824,0.318296,0.0629429,0.0711576,0.497076,0.652576,0.464813,0.0591955,0.481198,0.321453,0.764667,0.3169,0.71224,0.306974,0.882126,0.105812,0.560708,0.587471,0.443746,0.794968,0.106716,0.638006,0.43633,0.930397,0.254665,0.920175,0.355398,0.506767,0.280631,0.171914,0.0703302,0.370127,0.0401092,0.268216,0.233559,0.811507,0.766613,0.793084,0.326321,0.514162,0.929556,0.0175719,0.605114,0.54659,0.434248,0.423688,0.276188,0.0368257,0.875831,0.936263,0.762113,0.720678,0.344429,0.332057,0.559107,0.734534,0.129894,0.62487,0.455826,0.088783,0.665056,0.542394,0.964044,0.819722,0.0928861,0.220626,0.123557,0.83939,0.885084,0.0573683,0.0836074,0.193529,0.903644,0.75278,0.808227,0.720463,0.965637,0.463569,0.589494,0.566683,0.650607,0.896971,0.257982,0.813874,0.985583,0.25017,0.518786,0.214628,0.771792,0.273184,0.885833,0.533117,0.185615,0.474251,0.570012,0.149903,0.915164,0.97385,0.106678,0.345507,0.0229945,0.512881,0.670622,0.721186,0.874374,0.75084,0.951855,0.976283,0.609296,0.265078,0.420667,0.403082,0.862367,0.195445,0.817373,0.901231,0.732756,0.661994,0.470335,0.536998,0.0912694,0.809161,0.00963771,0.860287,0.528494,0.694046,0.830636,0.45992,0.961034,0.36621,0.407399,0.859859,0.245387,0.473565,0.503314,0.830853,0.435707,0.583457,0.344247,0.295729,0.903348,0.176552,0.42149,0.764173,0.134136,0.488684,0.476641,0.596928,0.774326,0.988696,0.850008,0.273889,0.533199,0.789678,0.657139,0.476136,0.829039,0.326636,0.234693,0.0998242,0.184415,0.320311,0.0552396,0.613892,0.736508,0.844617,0.608454,0.00993031,0.951837,0.0464904,0.219943,0.372471,0.466902,0.699192,0.824868,0.238152,0.958638,0.559246,0.96109,0.882538,0.584069,0.104886,0.893893,0.651816,0.472084,0.356369,0.800438,0.646653,0.494663,0.380371,0.192895,0.0704432,0.946501,0.684305,0.389214,0.935497,0.265561,0.29392,0.293544,0.488902,0.0454358,0.255513,0.912221,0.060957,0.530506,0.637973,0.776139,0.691146,0.271904,0.469585,0.117974,0.61665,0.112778,0.73473,0.11702,0.16707,0.246888,0.394965,0.41453,0.241908,0.500781,0.74283,0.348545,0.979462,0.0333167,0.593797,0.377027,0.947286,0.496023,0.892498,0.200649,0.908059,0.0912043,0.679632,0.359313,0.988898,0.214188,0.395771,0.989792,0.178989,0.822226,0.557968,0.25982,0.268149,0.66592,0.753747,0.275949,0.443566,0.358409,0.0913789,0.629433,0.776371,0.845652,0.998794,0.175814,0.582466,0.184719,0.797971,0.691819,0.334476,0.65842,0.256663,0.218625,0.12601,0.203596,0.506706,0.3381,0.975086,0.978219,0.903843,0.7576,0.46079,0.789776,0.903822,0.0908715,0.182031,0.470241,0.452341,0.416209,0.03772,0.678415,0.850898,0.629666,0.433261,0.0298486,0.342177,0.653525,0.992026,0.457094,0.236286,0.00126672,0.453419,0.733982,0.0472077,0.836221,0.38857,0.582203,0.245445,0.105885,0.715699,0.934744,0.838545,0.461991,0.839403,0.29137,0.115173,0.866218,0.572717,0.999382,0.00112581,0.0848699,0.630829,0.888896,0.202649,0.902686,0.34836,0.11325,0.469416,0.178852,0.792879,0.145715,0.128432,0.24163,0.40697,0.133993,0.815302,0.657832,0.0315845,0.348074,0.2449,0.780293,0.868205,0.201631,0.591717,0.86065,0.640777,0.464932,0.851396,0.350621,0.66889,0.494257,0.186866,0.930719,0.322149,0.177736,0.249051,0.432564,0.409134,0.0508223,0.499323,0.914478,0.973626,0.596271,0.373312,0.180482,0.741852,0.805708,0.792759,0.808139,0.294393,0.0534211,0.805631,0.830286,0.553158,0.795509,0.917015,0.0177444,0.345009,0.214957,0.161165,0.42809,0.866872,0.514766,0.384542,0.459699,0.0544954,0.00647604,0.629552,0.915029,0.41322,0.174805,0.547119,0.160689,0.157429,0.9475,0.190988,0.557682,0.120163,0.373406,0.80883,0.827189,0.585184,0.318849,0.774238,0.536674,0.979555,0.952865,0.393659,0.628845,0.90453,0.268555,0.69416,0.763485,0.181707,0.172719,0.439199,0.658625,0.360617,0.901061,0.326721,0.246849,0.952941,0.264613,0.615066,0.706234,0.0228238,0.129227,0.559004,0.352811,0.683579,0.441813,0.882775,0.0840765,0.728437,0.00983328,0.712075,0.338198,0.328464,0.993039,0.473421,0.472745,0.173427,0.455283,0.907166,0.0762028,0.0238665,0.570222,0.682918,0.0715045,0.056155,0.157506,0.132522,0.844174,0.948723,0.990259,0.738884,0.275356,0.204888,0.38873,0.306632,0.998846,0.778023,0.853267,0.482297,0.565691,0.680602,0.671308,0.787887,0.107799,0.81311,0.602055,0.0370753,0.0102266,0.896065,0.307787,0.543499,0.442115,0.392253,0.169513,0.152876,0.336786,0.842712,0.452784,0.016294,0.468089,0.853648,0.481853,0.37096,0.964425,0.894503,0.813959,0.927411,0.396399,0.436764,0.273368,0.206019,0.754933,0.248594,0.635382,0.195858,0.29106,0.966476,0.283467,0.596634,0.503124,0.655668,0.459939,0.622459,0.117548,0.90171,0.671049,0.7604,0.26105,0.731153,0.608336,0.540058,0.992222,0.287758,0.10982,0.813042,0.758949,0.897938,0.505355,0.960796,0.899707,0.12088,0.457526,0.273927,0.262227,0.834793,0.285771,0.813174,0.0977526,0.217872,0.259407,0.648056,0.167966,0.822659,0.25365,0.881762,0.362268,0.0396698,0.477217,0.971486,0.343808,0.0124072,0.576531,0.48862,0.944974,0.0939735,0.221234,0.65879,0.98397,0.366098,0.704776,0.252131,0.159117,0.32478,0.415207,0.178514,0.0588762,0.865322,0.819094,0.824019,0.753139,0.473581,0.358152,0.719823,0.537231,0.184695,0.563765,0.425841,0.03692,0.599115,0.817973,0.562422,0.352905,0.0456539,0.603943,0.893488,0.626317,0.589415,0.363418,0.909314,0.120501,0.427604,0.426509,0.376358,0.480434,0.391996,0.513313,0.614237,0.321506,0.397739,0.331825,0.206677,0.473491,0.574813,0.485706,0.157802,0.826526,0.366121,0.342738,0.0927572,0.0889231,0.921056,0.318969,0.396363,0.166194,0.161631,0.933962,0.562326,0.0329266,0.958157,0.80495,0.868643,0.113936,0.513886,0.123424,0.0471188,0.756199,0.576318,0.720177,0.572639,0.317814,0.705529,0.681163,0.95277,0.403189,0.634871,0.156354,0.338872,0.331438,0.258851,0.997783,0.28419,0.154774,0.515024,0.576703,0.329374,0.302091,0.428299,0.0896089,0.606053,0.373424,0.409717,0.164574,0.791156,0.956398,0.48701,0.96351,0.610202,0.394485,0.889012,0.846594,0.741734,0.413715,0.326407,0.471929,0.798228,0.665765,0.975037,0.849879,0.418353,0.59624,0.614435,0.537777,0.710712,0.114511,0.748707,0.215615,0.22864,0.216084,0.17571,0.892525,0.599456,0.402958,0.405622,0.104387,0.485429,0.538147,0.0710375,0.578543,0.0664381,0.578746,0.193199,0.621492,0.647091,0.930571,0.290859,0.552763,0.104978,0.575613,0.724745,0.337448,0.560144,0.931813,0.854024,0.200015,0.307069,0.973554,0.94504,0.435803,0.21527,0.565684,0.747928,0.0702479,0.508733,0.521758,0.42421,0.0344795,0.649505,0.351839,0.41031,0.560544,0.0808019,0.314344,0.718001,0.512398,0.391677,0.752789,0.352339,0.250158,0.21825,0.629712,0.799519,0.0421675,0.279903,0.68394,0.0212364,0.548443,0.365201,0.199957,0.317381,0.406336,0.965829,0.824031,0.548082,0.928589,0.149168,0.316307,0.0215276,0.982391,0.80654,0.180054,0.922076,0.411045,0.912113,0.446298,0.155739,0.930189,0.634772,0.941477,0.612766,0.402243,0.191018,0.312469,0.942196,0.517618,0.989908,0.942654,0.740691,0.497958,0.22455,0.164596,0.831037,0.941101,0.1315,0.864859,0.825258,0.109135,0.185809,0.131406,0.932086,0.986333,0.237259,0.649972,0.795053,0.288437,0.881611,0.506385,0.0603766,0.473505,0.00702161,0.74784,0.584648,0.490408,0.687425,0.336113,0.000133336,0.025359,0.983392,0.599917,0.571083,0.58563,0.655289,0.184053,0.899125,0.343422,0.87645,0.499071,0.38514,0.932975,0.0482938,0.617642,0.0249918,0.519194,0.615771,0.0654777,0.29271,0.374256,0.716178,0.0999939,0.0689806,0.066968,0.730165,0.954782,0.371278,0.214249,0.339802,0.157195,0.662511,0.0148827,0.780692,0.520334,0.871585,0.979325,0.444843,0.137053,0.872103,0.0984223,0.413717,0.205733,0.947623,0.522284,0.502608,0.481205,0.422148,0.0951957,0.959948,0.438993,0.886131,0.199252,0.560835,0.707122,0.778023,0.18703,0.166301,0.0784536,0.111705,0.752575,0.871061,0.740867,0.80351,0.402734,0.494343,0.260201,0.490822,0.383552,0.0852804,0.303725,0.00193679,0.327555,0.719368,0.430886,0.325621,0.892916,0.363776,0.332778,0.196272,0.290014,0.308185,0.10981,0.985067,0.711361,0.0930172,0.475579,0.693113,0.323311,0.178624,0.147563,0.381801,0.147103,0.647463,0.136387,0.671131,0.389816,0.575969,0.324667,0.186781,0.971022,0.296514,0.532957,0.242471,0.905939,0.107614,0.272277,0.510286,0.990791,0.612113,0.635495,0.701581,0.401153,0.136212,0.752325,0.29627,0.340738,0.416733,0.982261,0.705606,0.919878,0.0678833,0.308511,0.669486,0.227403,0.473323,0.761917,0.649557,0.672837,0.922212,0.0896367,0.910883,0.926752,0.49815,0.301067,0.0995216,0.954751,0.223903,0.0197523,0.747904,0.448117,0.859737,0.269426,0.277489,0.539,0.45737,0.435714,0.960095,0.170482,0.906454,0.850148,0.151935,0.566885,0.860744,0.552658,0.247956,0.679165,0.68469,0.921482,0.576095,0.749857,0.541284,0.329481,0.639806,0.557229,0.220331,0.297825,0.231422,0.0101432,0.92247,0.149713,0.607265,0.90168,|0.794903,0.281401,0.240442,0.795187,0.00870639,0.755055,0.0749596,0.787252,0.825859,0.0356998,0.578503,0.92076,0.561295,0.491764,0.393549,0.367316,0.982507,0.0188936,0.838406,0.0696669,0.995844,0.343029,0.960449,0.776333,0.861372,0.993567,0.0216291,0.242103,0.179526,0.021104,0.200392,0.282235,0.236676,0.271358,0.411501,0.468376,0.045971,0.212233,0.553539,0.637355,0.106493,0.597972,0.693148,0.197475,0.769175,0.283864,0.34878,0.650494,0.360789,0.789735,0.512555,0.559409,0.0819394,0.324209,0.73474,0.327755,0.300477,0.989952,0.258382,0.918032,0.0933778,0.722965,0.813627,0.231638,0.781271,0.418389,0.539923,0.0391279,0.368081,0.0405354,0.659029,0.660286,0.558048,0.422897,0.349855,0.446827,0.611969,0.153665,0.723809,0.980191,0.53195,0.928966,0.861032,0.456454,0.708051,0.705916,0.745397,0.185205,0.89155,0.0956852,0.282231,0.284151,0.163261,0.0203316,0.486966,0.649092,0.588767,0.370162,0.96594,0.580391,0.282317,0.282055,0.289001,0.561691,0.987484,0.678786,0.275595,0.826639,0.90158,0.34168,0.654525,0.554618,0.0623024,0.490127,0.476823,0.611572,0.692958,0.0920171,0.545023,0.102618,0.0563822,0.692114,0.875919,0.279781,0.609834,0.802623,0.379188,0.013687,0.409404,0.968119,0.317078,0.219383,0.276073,0.375944,0.000914454,0.307662,0.822792,0.191565,0.577296,0.950317,0.155875,0.107097,0.587522,0.141724,0.319771,0.210293,0.566383,0.378925,0.781564,0.628535,0.523596,0.0979069,0.199966,0.372703,0.652482,0.648941,0.0888613,0.283626,0.867425,0.913136,0.559338,0.0911278,0.241708,0.87121,0.353024,0.226712,0.631221,0.756432,0.468803,0.865231,0.170646,0.994561,0.241893,0.113666,0.983276,0.251269,0.905531,0.0910352,0.365571,0.727496,0.284842,0.81778,0.981966,0.398481,0.156736,0.251393,0.75727,0.209419,0.951562,0.284432,0.364941,0.960201,0.64666,0.24075,0.193286,0.0761383,0.288889,0.266824,0.953548,0.323853,0.565012,0.310774,0.054195,0.264082,0.573798,0.30926,0.682748,0.387652,0.874739,0.735366,0.973907,0.0100102,0.54375,0.236792,0.482459,0.684875,0.23711,0.856556,0.267515,0.357885,0.0560241,0.22713,0.84196,0.397741,0.768032,0.570592,0.341835,0.618758,0.96129,0.458846,0.185371,0.162891,0.95647,0.786576,0.0704597,0.958079,0.95153,0.111116,0.546086,0.558426,0.193954,0.944845,0.0812834,0.872052,0.783013,0.092424,0.750921,0.491964,0.860886,0.874519,0.0536951,0.51604,0.0976872,0.648786,0.897819,0.736454,0.138102,0.22568,0.855797,0.1275,0.209443,0.721858,0.0716363,0.312208,0.382005,0.877537,0.458009,0.398466,0.234764,0.123958,0.261663,0.819511,0.657411,0.788578,0.948467,0.64807,0.667179,0.781052,0.0432625,0.853917,0.779909,0.241921,0.807242,0.980224,0.0580001,0.730698,0.459786,0.950835,0.938271,0.800593,0.313241,0.29093,0.725156,0.343674,0.906834,0.391652,0.0390713,0.49986,0.692495,0.0220625,0.35203,0.000124395,0.691527,0.442807,0.437654,0.791296,0.82265,0.441059,0.878917,0.211741,0.856515,0.193184,0.226325,0.452565,0.796836,0.438724,0.131901,0.662598,0.930747,0.327565,0.853485,0.828769,0.511078,0.110854,0.610045,0.765681,0.718504,0.808448,0.623092,0.447919,0.939991,0.726084,0.0570542,0.858847,0.780209,0.293589,0.751987,0.589921,0.505037,0.723095,0.854547,0.829143,0.30481,0.330592,0.808089,0.471786,0.631347,0.884208,0.0960431,0.896403,0.599557,0.153713,0.341951,0.158569,0.833653,0.504359,0.548951,0.17241,0.973715,0.826169,0.437984,0.182107,0.963289,0.0681592,0.124691,0.769144,0.257519,0.844196,0.591102,0.871038,0.100194,0.322032,0.569159,0.0538278,0.585798,0.973996,0.642978,0.758324,0.752029,0.369372,0.776985,0.406528,0.744059,0.0637929,0.683026,0.263805,0.59869,0.951257,0.128415,0.765036,0.899019,0.791629,0.925636,0.994854,0.157766,0.075489,0.58342,0.322455,0.210117,0.489246,0.343856,0.833215,0.990727,0.687128,0.366205,0.748663,0.461685,0.858707,0.622303,0.484707,0.764303,0.432196,0.284866,0.56377,0.719846,0.993024,0.293432,0.317386,0.231479,0.0987732,0.64389,0.244076,0.20301,0.459156,0.146438,0.674364,0.945589,0.164755,0.228679,0.217125,0.578997,0.398591,0.964606,0.716713,0.244511,0.322774,0.886141,0.652082,0.298692,0.211226,0.560125,0.892309,0.298455,0.478032,0.220949,0.891827,0.498938,0.645549,0.12804,0.927674,0.206499,0.947788,0.730557,0.902736,0.953895,0.745874,0.262424,0.167117,0.24413,0.805779,0.432025,0.076717,0.530807,0.223324,0.0204257,0.795248,0.543758,0.772377,0.0370923,0.895279,0.412603,0.683165,0.912562,0.815741,0.618481,0.720004,0.157465,0.478866,0.74473,0.780587,0.873843,0.677876,0.505995,0.69287,0.043007,0.131651,0.482925,0.432111,0.848276,0.443115,0.534425,0.955433,0.389387,0.972207,0.077585,0.521124,0.606068,0.489986,0.546993,0.662801,0.713208,0.44466,0.585799,0.466002,0.333143,0.568622,0.762858,0.669343,0.0115353,0.643511,0.91738,0.596929,0.678353,0.910053,0.364878,0.602528,0.548353,0.062831,0.0420273,0.153941,0.123882,0.22083,0.942735,0.0878197,0.975632,0.0405554,0.140657,0.813413,0.020458,0.633058,0.462588,0.471096,0.192597,0.680747,0.813191,0.10426,0.87319,0.900795,0.883319,0.230422,0.337199,0.0714602,0.287609,0.998246,0.667398,0.791801,0.258124,0.794677,0.583515,0.839724,0.666283,0.675816,0.627822,0.660224,0.484181,0.78772,0.0459569,0.819408,0.795231,0.544597,0.846993,0.386457,0.793827,0.797289,0.0876409,0.293272,0.403826,0.414462,0.397981,0.652423,0.149439,0.520848,0.560754,0.571354,0.869374,0.730072,0.91806,0.0607933,0.568293,0.0951828,0.357091,0.738116,0.757706,0.200447,0.564246,0.335553,0.955433,0.308989,0.307028,0.293542,0.0915352,0.404566,0.758837,0.579978,0.896474,0.684135,0.864508,0.0255176,0.44649,0.202363,0.922939,0.802845,0.546748,0.405417,0.913363,0.238766,0.00994241,0.755701,0.95498,0.519943,0.655871,0.776678,0.702834,0.426561,0.793198,0.197449,0.276068,0.77065,0.277587,0.211109,0.593123,0.130563,0.596604,0.978427,0.690213,0.0546307,0.823942,0.486089,0.693793,0.25763,0.404508,0.0429989,0.545541,0.153139,0.337455,0.136585,0.265558,0.77801,0.465265,0.64147,0.989417,0.198237,0.976109,0.328753,0.349485,0.2025,0.594049,0.0289251,0.516639,0.109069,0.920434,0.971994,0.780733,0.159945,0.518237,0.924753,0.53745,0.184407,0.965409,0.924374,0.757743,0.132338,0.134666,0.170652,0.484772,0.217957,0.970642,0.40174,0.3168,0.845634,0.0257634,0.609656,0.483476,0.82179,0.279833,0.373575,0.32509,0.19075,0.732325,0.326877,0.0464522,0.760614,0.940548,0.286502,0.932566,0.79774,0.641995,0.66978,0.93574,0.366147,0.108747,0.497554,0.998389,0.622257,0.803334,0.227085,0.175829,0.451984,0.42857,0.0976234,0.760352,0.538565,0.456055,0.831847,0.81999,0.725322,0.0480711,0.470459,0.523001,0.427388,0.430183,0.65653,0.86866,0.399181,0.669841,0.814619,0.369289,0.487753,0.504258,0.969993,0.633468,0.0622808,0.0763792,0.820533,0.76105,0.833511,0.0147101,0.703998,0.997778,0.301801,0.118297,0.132106,0.331101,0.0154262,0.0695449,0.881957,0.446877,0.545328,0.860577,0.575772,0.589789,0.225888,0.364893,0.966367,0.983227,0.975953,0.821891,0.156142,0.638679,0.640833,0.980215,0.289726,0.0325519,0.286138,0.602909,0.368471,0.849128,0.667407,0.930977,0.0751399,0.464261,0.610158,0.77363,0.918111,0.0859588,0.859215,0.266735,0.892827,0.0655916,0.981873,0.892576,0.415916,0.514704,0.475222,0.876112,0.402525,0.463339,0.07917,0.611575,0.0305487,0.777508,0.0828291,0.517761,0.566168,0.249088,0.510205,0.901956,0.492785,0.309375,0.419786,0.916446,0.437056,0.326536,0.124518,0.181975,0.239534,0.244949,0.371229,0.135197,0.539453,0.970316,0.190483,0.561758,0.175007,0.995534,0.44758,0.884976,0.674908,0.770331,0.818894,0.344528,0.660411,0.276003,0.141117,0.34696,0.60804,0.490684,0.843733,0.943775,0.547226,0.0998703,0.413372,0.0445535,0.342416,0.77366,0.228716,0.489282,0.180018,0.0852398,0.699013,0.843482,0.643933,0.171719,0.167901,0.406974,0.0263882,0.856623,0.217172,0.420215,0.952132,0.342766,0.616044,0.403913,0.626888,0.114864,0.102153,0.968022,0.0121959,0.666758,0.692674,0.666127,0.58961,0.947146,0.43864,0.723414,0.371803,0.394956,0.988169,0.155094,0.293432,0.968665,0.530292,0.936365,0.641208,0.12478,0.901368,0.973206,0.708141,0.413757,0.595659,0.0115067,0.811136,0.942062,0.201334,0.552386,0.288867,0.939093,0.218996,0.170442,0.605212,0.140994,0.887561,0.57025,0.263942,0.403306,0.502651,0.198656,0.994805,0.313463,0.940276,0.680977,0.707907,0.0771381,0.0195038,0.98568,0.563092,0.671773,0.77231,0.957439,0.388476,0.571126,0.0229808,0.320505,0.598817,0.291084,0.980652,0.978491,0.917732,0.0908733,0.546653,0.661256,0.716369,0.86421,0.679541,0.178349,0.084692,0.47679,0.734935,0.581912,0.053097,0.128562,0.987814,0.119054,0.164257,0.560148,0.854061,0.0813726,0.923299,0.771433,0.93467,0.00933838,0.931295,0.423668,0.772176,0.225179,0.596549,0.423472,0.99666,0.0883816,0.744457,0.659404,0.556526,0.968513,0.884284,0.504011,0.509639,0.288481,0.37125,0.586132,0.653603,0.78995,0.808065,0.692179,0.490866,0.575711,0.983805,0.47053,0.399431,0.643959,0.523175,0.0304244,0.981871,0.64374,0.764322,0.152721,0.560302,0.939856,0.334801,0.293889,0.735756,0.753173,0.0435197,0.236165,0.557937,0.775641,0.208729,0.323392,0.105043,0.743546,0.483039,0.645588,0.82577,0.814032,0.248471,0.0970734,0.228301,0.261501,0.0327575,0.872938,0.320298,0.796925,0.827942,0.20625,0.0952617,0.419381,0.898106,0.148408,0.6053,0.0597607,0.11315,|0.953169,0.811932,0.565487,0.847022,0.951792,0.0548975,0.451671,0.15599,0.760529,0.777998,0.705287,0.312678,0.579916,0.620868,0.0333557,0.436939,0.204517,0.627356,0.292449,0.759883,0.334556,0.358139,0.341688,0.749941,0.906344,0.628784,0.334507,0.954828,0.302564,0.068,0.177028,0.305028,0.630832,0.466377,0.113464,0.98883,0.983725,0.954995,0.0522156,0.0687665,0.532516,0.052716,0.715612,0.391516,0.709818,0.521675,0.394267,0.38586,0.21947,0.032714,0.210178,0.0767633,0.195627,0.189196,0.528377,0.792542,0.803541,0.718169,0.174483,0.31211,0.486872,0.0904984,0.984541,0.0444577,0.840502,0.59534,0.108307,0.393957,0.913606,0.345446,0.783088,0.135829,0.641355,0.776795,0.324605,0.242194,0.633402,0.884404,0.476714,0.951647,0.579663,0.525924,0.820666,0.0341212,0.496244,0.712492,0.936365,0.698825,0.727247,0.0754427,0.646128,0.558791,0.264488,0.782601,0.00899202,0.808634,0.949792,0.0343165,0.810314,0.496276,0.683433,0.177619,0.0201653,0.967182,0.90633,0.187919,0.763133,0.479818,0.715826,0.210889,0.950854,0.165261,0.142603,0.00763643,0.440183,0.495702,0.766022,0.817583,0.679202,0.0201777,0.238797,0.441498,0.302757,0.536116,0.368496,0.205565,0.117384,0.16035,0.227476,0.874103,0.0333207,0.232483,0.779906,0.613053,0.224529,0.979275,0.410246,0.0977412,0.496775,0.0500385,0.91276,0.84083,0.866671,0.251901,0.160242,0.511396,0.642917,0.331583,0.047833,0.411284,0.44885,0.930805,0.359522,0.880035,0.747867,0.237966,0.758758,0.67671,0.414153,0.881614,0.823975,0.470026,0.687555,0.24413,0.749955,0.398391,0.857889,0.908994,0.0783955,0.826056,0.675864,0.441943,0.844901,0.610232,0.662709,0.0772811,0.400677,0.76069,0.725781,0.682317,0.346907,0.836729,0.166447,0.261953,0.283691,0.995509,0.465539,0.668092,0.932254,0.42446,0.551964,0.307122,0.79972,0.0205321,0.545324,0.872843,0.27735,0.617539,0.522542,0.0190887,0.14789,0.34204,0.784454,0.195656,0.257792,0.278541,0.737337,0.102699,0.303213,0.665743,0.654361,0.456833,0.518657,0.0184152,0.746779,0.886954,0.0989273,0.469536,0.712241,0.560876,0.404129,0.866247,0.190189,0.00913334,0.710085,0.486955,0.657911,0.41749,0.0620751,0.847695,0.716945,0.273375,0.0667121,0.63883,0.592436,0.025795,0.019044,0.752856,0.792372,0.560888,0.271391,0.172237,0.47596,0.0427072,0.726944,0.606541,0.246684,0.978673,0.260207,0.395052,0.956344,0.0645866,0.0852133,0.650397,0.752373,0.598453,0.663231,0.277586,0.923981,0.269474,0.127926,0.283661,0.0358346,0.658086,0.198271,0.75588,0.335269,0.0408053,0.91933,0.31794,0.547512,0.252094,0.386889,0.666672,0.565531,0.482733,0.72497,0.462435,0.055468,0.524311,0.910826,0.872435,0.423217,0.935476,0.274253,0.269866,0.925981,0.477336,0.710167,0.297836,0.356491,0.0322728,0.657308,0.152371,0.0716255,0.975305,0.891878,0.917064,0.206749,0.373129,0.956129,0.999482,0.487,0.0498912,0.470395,0.666437,0.341807,0.339163,0.583959,0.435197,0.0850097,0.381174,0.361974,0.132212,0.794974,0.648739,0.476943,0.825755,0.182594,0.70759,0.774353,0.348244,0.00309861,0.057808,0.116868,0.926318,0.762813,0.83045,0.303363,0.606544,0.631107,0.367337,0.970724,0.707378,0.400069,0.100386,0.214427,0.756091,0.817453,0.183548,0.21616,0.813731,0.604505,0.859329,0.132086,0.951606,0.892046,0.480913,0.115469,0.983233,0.870962,0.634866,0.23709,0.021838,0.367277,0.65729,0.110567,0.704105,0.110078,0.216241,0.429423,0.663465,0.887427,0.735538,0.171449,0.00878048,0.74986,0.350944,0.696748,0.014258,0.195403,0.493496,0.453967,0.673113,0.0843821,0.656968,0.412978,0.540343,0.0419586,0.137431,0.73183,0.884334,0.92826,0.955396,0.159326,0.908959,0.319071,0.618796,0.712258,0.8688,0.127259,0.00366181,0.839944,0.297793,0.267535,0.74359,0.95123,0.671222,0.644624,0.65504,0.786487,0.959581,0.42189,0.867287,0.506838,0.173651,0.61224,0.259893,0.3098,0.088289,0.994206,0.163672,0.847871,0.580657,0.202779,0.800915,0.212058,0.295789,0.199831,0.122153,0.158494,0.132929,0.67166,0.356808,0.523953,0.427371,0.462927,0.194071,0.759708,0.144519,0.976411,0.0352553,0.890102,0.0931376,0.67619,0.0687721,0.29664,0.329688,0.452464,0.0326979,0.799357,0.418373,0.738721,0.70593,0.708475,0.92028,0.904732,0.275116,0.337156,0.654636,0.549738,0.419341,0.640618,0.987287,0.446466,0.536033,0.769895,0.446083,0.98031,0.687659,0.848204,0.182756,0.6996,0.997362,0.681498,0.665229,0.848602,0.570686,0.188028,0.364541,0.227436,0.00184208,0.935535,0.85132,0.568745,0.235037,0.65459,0.890498,0.904828,0.90939,0.114445,0.906263,0.116941,0.395507,0.550591,0.109886,0.291021,0.171888,0.713986,0.725876,0.324762,0.581433,0.975124,0.0311246,0.227217,0.980405,0.260864,0.200513,0.820849,0.647376,0.724618,0.21018,0.746355,0.65228,0.00590032,0.40485,0.831567,0.788572,0.660576,0.499959,0.0824324,0.0654297,0.807827,0.0830291,0.847029,0.818729,0.39953,0.836961,0.954625,0.723422,0.0684541,0.922172,0.642053,0.873612,0.930969,0.150101,0.0813658,0.373299,0.856921,0.767224,0.670957,0.504411,0.229098,0.371973,0.314698,0.990375,0.910512,0.144062,0.784734,0.65909,0.665312,0.541485,0.894737,0.638653,0.638173,0.113966,0.490438,0.922849,0.277987,0.45783,0.068197,0.122,0.424167,0.756404,0.840871,0.918222,0.512714,0.57301,0.443836,0.895497,0.556096,0.670297,0.413763,0.159652,0.526755,0.364579,0.269958,0.151592,0.144357,0.719216,0.598624,0.971989,0.122316,0.813433,0.379156,0.179374,0.802352,0.106419,0.335259,0.642396,0.18855,0.675568,0.694671,0.233455,0.0460027,0.548428,0.615915,0.169191,0.977916,0.137575,0.219422,0.187587,0.274939,0.705988,0.0161437,0.812354,0.0489479,0.173156,0.75879,0.713803,0.399479,0.567413,0.359435,0.114963,0.497098,0.895751,0.0566622,0.414587,0.923455,0.161334,0.415096,0.974648,0.318284,0.115097,0.525552,0.129248,0.372483,0.421657,0.328519,0.982646,0.884844,0.650964,0.195063,0.412103,0.48056,0.43526,0.162067,0.593674,0.609097,0.00786507,0.117777,0.196494,0.813664,0.581681,0.318271,0.577153,0.0193552,0.30468,0.0140097,0.926457,0.0993306,0.838758,0.313022,0.397889,0.712522,0.0426722,0.353224,0.730428,0.0536638,0.703171,0.00398654,0.52866,0.552267,0.984011,0.40817,0.74071,0.0916466,0.536296,0.936062,0.750095,0.698823,0.953914,0.887886,0.201995,0.394538,0.292565,0.830029,0.564569,0.293018,0.738423,0.339286,0.53305,0.287694,0.19942,0.237615,0.489656,0.227025,0.875434,0.874911,0.774524,0.216119,0.0449918,0.236528,0.329544,0.225906,0.420112,0.988941,0.580568,0.0636596,0.245638,0.641303,0.934666,0.67421,0.735977,0.13906,0.732568,0.308018,0.242507,0.423213,0.417691,0.784833,0.0655568,0.0259604,0.580468,0.838176,0.909736,0.495962,0.576714,0.799331,0.830209,0.731854,0.830121,0.953112,0.347242,0.867727,0.360199,0.385811,0.299118,0.4287,0.566854,0.844796,0.781142,0.648641,0.480072,0.347476,0.388918,0.353954,0.005081,0.860517,0.00627887,0.735153,0.489848,0.558256,0.0470338,0.0086211,0.0268907,0.687656,0.23042,0.737122,0.115368,0.781297,0.724649,0.836328,0.435684,0.274761,0.266251,0.456394,0.512465,0.670802,0.328873,0.0733399,0.441115,0.984559,0.907273,0.67397,0.0992205,0.41171,0.468326,0.355848,0.173565,0.745158,0.416517,0.937387,0.949003,0.34247,0.294771,0.65825,0.358414,0.924485,0.350701,0.821176,0.940957,0.744704,0.816653,0.196033,0.259383,0.38339,0.0022651,0.582554,0.529494,0.982412,0.819773,0.851478,0.287429,0.962398,0.0898399,0.0550312,0.0767844,0.288285,0.409172,0.69182,0.358218,0.687383,0.577904,0.854776,0.80567,0.472339,0.26322,0.547854,0.847809,0.531214,0.0948775,0.679682,0.95629,0.0417572,0.489321,0.295438,0.491046,0.783385,0.629907,0.771606,0.552806,0.204669,0.245524,0.169307,0.640654,0.654691,0.83993,0.219535,0.514498,0.253007,0.915756,0.335403,0.0631002,0.77907,0.707275,0.655089,0.895939,0.990213,0.020126,0.868915,0.392677,0.755261,0.702037,0.344206,0.853467,0.822318,0.699906,0.152635,0.124824,0.0376304,0.564178,0.449591,0.684652,0.991398,0.651829,0.755291,0.497795,0.00647879,0.618984,0.240061,0.844248,0.345287,0.245874,0.543396,0.206336,0.647612,0.129566,0.0504754,0.736169,0.342092,0.409433,0.168034,0.469453,0.180579,0.904787,0.533477,0.907145,0.23029,0.103045,0.0241843,0.0120587,0.676876,0.196416,0.84848,0.295362,0.10978,0.845657,0.65075,0.649076,0.79795,0.80052,0.272647,0.0825082,0.360608,0.525217,0.276511,0.39868,0.262244,0.680652,0.916855,0.142146,0.354491,0.895665,0.827631,0.575702,0.144864,0.226784,0.828083,0.358782,0.0100199,0.154145,0.450252,0.653047,0.260527,0.878564,0.0110538,0.292796,0.578139,0.580186,0.0239857,0.875408,0.901402,0.138782,0.1629,0.262094,0.721931,0.698046,0.0844125,0.165622,0.981731,0.00747114,0.276102,0.170329,0.595516,0.826284,0.931997,0.40709,0.360425,0.620548,0.707072,0.905078,0.618699,0.0751585,0.166736,0.663937,0.775112,0.276296,0.581475,0.523397,0.627094,0.797066,0.000587285,0.59151,0.877477,0.0163643,0.164022,0.426299,0.275639,0.353092,0.610969,0.419306,0.981578,0.478925,0.250082,0.146539,0.971214,0.839113,0.194138,0.0894861,0.367742,0.587189,0.248411,0.812976,0.933971,0.124971,0.348352,0.451644,0.397013,0.493126,0.345624,0.30351,0.887803,0.813212,0.841225,0.911583,0.967416,0.489449,0.709502,0.0779636,0.0187348,0.426497,0.793737,0.702997,0.587091,0.383053,0.609924,0.840389,0.905415,0.641931,0.975357,0.00285256,0.0653321,0.130687,0.0604333,0.945934,0.495817,0.865914,0.999504,0.355641,|0.947573,0.530969,0.288172,0.785795,0.0583275,0.586911,0.442913,0.455432,0.438506,0.122716,0.14227,0.468532,0.950096,0.326846,0.904536,0.313018,0.994577,0.246454,0.432942,0.0813804,0.57302,0.197378,0.943196,0.701206,0.176636,0.639755,0.284313,0.243648,0.307898,0.54347,0.0699865,0.016982,0.313651,0.575406,0.244739,0.689699,0.926544,0.965708,0.348845,0.80826,0.717213,0.118252,0.915269,0.750898,0.961648,0.533503,0.00283647,0.268259,0.746406,0.303496,0.793677,0.554763,0.991236,0.409597,0.751291,0.474466,0.00451285,0.491812,0.196266,0.973115,0.644681,0.366697,0.883431,0.205727,0.199661,0.992074,0.438199,0.296554,0.910345,0.270191,0.0503708,0.00772411,0.307294,0.465714,0.236512,0.0250835,0.396346,0.941506,0.18713,0.104857,0.84531,0.42472,0.277041,0.836683,0.959968,0.565917,0.954673,0.369517,0.775455,0.938303,0.483557,0.282806,0.0525522,0.24304,0.734614,0.432431,0.725839,0.553728,0.285853,0.432027,0.842222,0.241461,0.0659005,0.473694,0.374537,0.136375,0.0353773,0.596932,0.972874,0.870376,0.10621,0.897092,0.8166,0.209097,0.16448,0.48758,0.774918,0.571056,0.273778,0.28216,0.522332,0.428026,0.144159,0.502326,0.839882,0.725266,0.796167,0.101431,0.640597,0.839963,0.26463,0.713828,0.154469,0.950422,0.0791939,0.6759,0.645491,0.460922,0.628018,0.806297,0.605887,0.879252,0.286068,0.215856,0.0931981,0.215552,0.479838,0.297695,0.583764,0.38731,0.882472,0.239834,0.803601,0.0383411,0.539531,0.289606,0.965672,0.916253,0.83993,0.329483,0.839907,0.428019,0.148191,0.315731,0.746098,0.770309,0.611186,0.180295,0.225088,0.909342,0.908846,0.091924,0.468488,0.393959,0.0967029,0.665456,0.556623,0.24398,0.357299,0.752003,0.574105,0.140012,0.270862,0.581108,0.453553,0.100817,0.635359,0.902014,0.776321,0.512683,0.663002,0.720083,0.380159,0.241094,0.971696,0.460664,0.915899,0.254538,0.127292,0.0905337,0.568292,0.996743,0.172888,0.648335,0.303321,0.977381,0.135974,0.297862,0.462801,0.326971,0.331621,0.14201,0.786127,0.785196,0.269539,0.0414747,0.79302,0.351976,0.49958,0.752196,0.436844,0.537091,0.360879,0.0651644,0.0300567,0.252751,0.452095,0.277505,0.380879,0.0606494,0.681371,0.938302,0.350572,0.668471,0.377392,0.962038,0.480623,0.0697551,0.200531,0.712238,0.594387,0.123327,0.738937,0.736637,0.034924,0.796636,0.560141,0.0248827,0.959792,0.905247,0.744672,0.355869,0.0661429,0.353361,0.377844,0.806904,0.608931,0.309239,0.514246,0.415744,0.607565,0.737475,0.135046,0.824763,0.243127,0.657481,0.993196,0.345269,0.207147,0.464382,0.329686,0.806999,0.323576,0.133774,0.941064,0.35713,0.981092,0.888887,0.529031,0.00969344,0.770284,0.0374618,0.437376,0.890969,0.420604,0.42743,0.419333,0.382551,0.910901,0.500034,0.869742,0.715702,0.525203,0.650306,0.879688,0.799231,0.192983,0.35258,0.366639,0.100845,0.631926,0.832499,0.94358,0.706407,0.102381,0.747257,0.470379,0.732397,0.707881,0.891709,0.75797,0.90963,0.583643,0.865159,0.364656,0.987443,0.398491,0.784373,0.969349,0.124311,0.478825,0.534081,0.0534516,0.942716,0.489547,0.493789,0.236605,0.0211604,0.385005,0.0121552,0.257544,0.475955,0.659132,0.463321,0.170711,0.282307,0.362915,0.0269458,0.751996,0.573555,0.3444,0.75593,0.234647,0.664828,0.432395,0.965982,0.961173,0.209432,0.000759006,0.368336,0.413715,0.0128483,0.592687,0.844953,0.849818,0.344294,0.896759,0.9705,0.663396,0.459176,0.16601,0.448767,0.220867,0.981057,0.0930237,0.0961747,0.788718,0.337405,0.854153,0.925346,0.71547,0.656208,0.815495,0.432208,0.862813,0.379253,0.290734,0.382504,0.766403,0.387452,0.432617,0.934384,0.975674,0.880069,0.893441,0.35696,0.819733,0.102896,0.535628,0.758349,0.855945,0.949441,0.283914,0.725284,0.583771,0.223675,0.757572,0.871909,0.559613,0.552062,0.684629,0.266685,0.730678,0.252769,0.5782,0.397416,0.26597,0.905438,0.286334,0.51196,0.571812,0.636581,0.410226,0.626088,0.876396,0.282704,0.857526,0.349724,0.770915,0.632704,0.242781,0.111212,0.553189,0.490212,0.513296,0.479797,0.938658,0.236099,0.63724,0.653018,0.800425,0.721363,0.346929,0.627128,0.14696,0.237731,0.236395,0.419387,0.85967,0.114766,0.360855,0.655191,0.00591815,0.581526,0.939618,0.696015,0.270705,0.160262,0.56424,0.909686,0.658783,0.0491072,0.185696,0.209851,0.694531,0.27762,0.834905,0.671031,0.393477,0.699007,0.300911,0.910805,0.45958,0.733785,0.84361,0.127271,0.26541,0.701001,0.740095,0.556587,0.315627,0.67964,0.537471,0.571479,0.232532,0.737459,0.374882,0.248342,0.578116,0.755783,0.640579,0.567547,0.83655,0.281457,0.461074,0.194243,0.379093,0.929338,0.616927,0.567457,0.102491,0.581139,0.922588,0.613783,0.227927,0.421573,0.246251,0.779217,0.738652,0.19871,0.883072,0.325339,0.53612,0.317175,0.72302,0.0745165,0.245709,0.987573,0.178592,0.879899,0.775203,0.598304,0.755183,0.562288,0.668184,0.382637,0.376725,0.761377,0.635561,0.680862,0.469464,0.56756,0.576414,0.133449,0.249665,0.861782,0.435105,0.327906,0.538107,0.65632,0.996771,0.524119,0.107234,0.133493,0.415379,0.727982,0.899815,0.179948,0.618524,0.164066,0.186077,0.165646,0.911426,0.919742,0.673127,0.86591,0.979651,0.140167,0.347121,0.613581,0.29047,0.58969,0.490615,0.111493,0.245669,0.21288,0.446526,0.549136,0.944236,0.0830718,0.619874,0.134557,0.251012,0.379966,0.34979,0.923197,0.457877,0.580403,0.057099,0.690163,0.478245,0.335443,0.1576,0.261286,0.215938,0.212552,0.924302,0.032884,0.444138,0.385886,0.948327,0.289527,0.382808,0.107956,0.0315611,0.118109,0.186077,0.359268,0.305921,0.79792,0.497857,0.458779,0.190237,0.798522,0.485707,0.457922,0.306818,0.533486,0.456212,0.58145,0.35571,0.456876,0.837263,0.563764,0.701181,0.755879,0.534664,0.297073,0.682289,0.948509,0.922075,0.686447,0.834799,0.332061,0.573755,0.207594,0.0690061,0.067938,0.169493,0.342263,0.414322,0.62166,0.323417,0.753369,0.702812,0.0295116,0.492716,0.964565,0.68074,0.697102,0.386091,0.455221,0.251485,0.60437,0.953548,0.698852,0.034296,0.231827,0.11972,0.99418,0.103846,0.281986,0.770068,0.788717,0.83968,0.395351,0.339501,0.608355,0.100654,0.521582,0.087607,0.0900667,0.660522,0.704334,0.309918,0.859773,0.587908,0.96821,0.424096,0.491137,0.679985,0.215093,0.638205,0.777972,0.25845,0.725244,0.172526,0.751392,0.170641,0.208588,0.730614,0.914887,0.433686,0.812235,0.816738,0.831822,0.411738,0.033762,0.00334156,0.739276,0.832446,0.918059,0.422975,0.89835,0.0015794,0.48406,0.863349,0.815947,0.0565847,0.461766,0.917723,0.920812,0.369063,0.17349,0.0801371,0.178307,0.55574,0.0353709,0.174031,0.41738,0.299246,0.204937,0.127331,0.0679137,0.586148,0.12614,0.584024,0.869777,0.336445,0.0414466,0.571918,0.139251,0.850096,0.111677,0.233501,0.902731,0.664126,0.911641,0.523565,0.665464,0.126119,0.318812,0.512464,0.931475,0.92544,0.279501,0.662261,0.278952,0.587058,0.864951,0.118452,0.685568,0.278085,0.0753732,0.807114,0.675066,0.0179287,0.156413,0.14322,0.628375,0.565017,0.467993,0.545822,0.130011,0.64031,0.896637,0.609035,0.574826,0.897062,0.155871,0.589074,0.977695,0.502074,0.848593,0.374852,0.61245,0.694057,0.747586,0.886406,0.333949,0.238149,0.485401,0.980449,0.194044,0.545938,0.476438,0.067248,0.00970834,0.715129,0.00201792,0.964252,0.878708,0.188425,0.0179571,0.551809,0.91925,0.803428,0.267815,0.459569,0.228103,0.568752,0.311466,0.203937,0.896537,0.333835,0.747968,0.604085,0.486556,0.267326,0.651194,0.440983,0.763722,0.393243,0.787537,0.0263959,0.201724,0.254303,0.774049,0.130569,0.727999,0.637226,0.973696,0.528009,0.200329,0.967537,0.991039,0.892457,0.353159,0.0888779,0.635787,0.223716,0.497887,0.77353,0.726288,0.290372,0.687804,0.419289,0.322429,0.243549,0.984613,0.971665,0.690805,0.198402,0.446213,0.995465,0.98847,0.420313,0.752902,0.375779,0.715804,0.19134,0.624929,0.805681,0.872387,0.479266,0.910622,0.822375,0.908605,0.242026,0.0757734,0.660797,0.292529,0.321286,0.219609,0.592756,0.541909,0.381653,0.958478,0.192768,0.920715,0.683305,0.301009,0.798664,0.448591,0.865196,0.691778,0.696638,0.486699,0.834554,0.21693,0.02866,0.855773,0.645146,0.202673,0.916795,0.243291,0.218767,0.754218,0.054222,0.859106,0.165185,0.86476,0.189586,0.925004,0.72919,0.0227998,0.613896,0.835242,0.841249,0.27994,0.751873,0.966611,0.280652,0.341738,0.0470681,0.123012,0.186859,0.0927014,0.210785,0.113328,0.704178,0.255729,0.795131,0.664677,0.639816,0.656779,0.943639,0.6541,0.945384,0.510838,0.63196,0.575107,0.44147,0.181506,0.978171,0.335554,0.550967,0.625868,0.533136,0.227756,0.870557,0.47983,0.269434,0.648609,0.983611,0.745016,0.758049,0.609715,0.0865748,0.662694,0.949436,0.391232,0.38423,0.275464,0.7899,0.70926,0.397785,0.303555,0.419684,0.971397,0.154873,0.0929682,0.840083,0.463796,0.69423,0.120265,0.130217,0.365855,0.492994,0.633247,0.0841724,0.34805,0.276415,0.745308,0.421081,0.808638,0.458197,0.169183,0.905681,0.763364,0.820967,0.919815,0.13357,0.260233,0.873432,0.328815,0.759975,0.353441,0.666489,0.349773,0.375074,0.89804,0.150927,0.552656,0.975318,0.800685,0.432127,0.702669,0.635711,0.787828,0.317561,0.433349,0.657807,0.14921,0.851273,0.187639,0.0660871,0.110627,0.470561,0.679679,0.667207,0.602168,0.0295165,0.318435,0.149819,0.148516,0.743209,0.808611,0.437501,0.618157,0.428313,0.578837,0.650721,0.541426,0.752945,0.0612893,0.474912,0.530068,0.932884,0.187888,|0.867185,0.482048,0.589046,0.363472,0.496176,0.320106,0.744931,0.255502,0.419281,0.0695836,0.0817199,0.577249,0.572989,0.884068,0.472021,0.877759,0.505168,0.216419,0.166932,0.884805,0.761739,0.447429,0.968368,0.674218,0.732433,0.147485,0.604511,0.940196,0.187685,0.459822,0.413052,0.936582,0.990006,0.285525,0.679521,0.863597,0.667914,0.0337318,0.562591,0.240959,0.0621712,0.751083,0.565459,0.706365,0.0488895,0.405423,0.936148,0.801444,0.878112,0.45716,0.757656,0.834463,0.385672,0.583577,0.413518,0.128331,0.271034,0.840309,0.946537,0.846439,0.0901053,0.237387,0.937932,0.286239,0.571345,0.815529,0.0181557,0.447154,0.29508,0.407834,0.0685592,0.072367,0.0592802,0.660074,0.0695069,0.153813,0.744893,0.0488169,0.756471,0.377119,0.55005,0.597666,0.409474,0.645747,0.362133,0.17038,0.106764,0.874405,0.121912,0.047338,0.837806,0.656983,0.982353,0.961151,0.84527,0.433339,0.275049,0.962327,0.681543,0.436937,0.675591,0.0625486,0.420738,0.542004,0.797795,0.633287,0.459475,0.679065,0.461751,0.641581,0.186173,0.741066,0.671463,0.283908,0.165055,0.353948,0.93543,0.546446,0.170488,0.763682,0.149953,0.275308,0.201664,0.777441,0.390161,0.446053,0.92222,0.974964,0.104761,0.237561,0.47052,0.371375,0.352073,0.770044,0.899629,0.287907,0.79252,0.527576,0.907149,0.289494,0.28547,0.297767,0.560427,0.169061,0.91434,0.429476,0.662507,0.321174,0.301589,0.0726122,0.0300607,0.972496,0.490584,0.910062,0.890936,0.661456,0.0619565,0.00247097,0.29432,0.180116,0.893658,0.188725,0.151351,0.787124,0.738584,0.858856,0.774115,0.606746,0.280945,0.954857,0.294952,0.862677,0.77562,0.0710939,0.818085,0.877667,0.920571,0.464926,0.77749,0.254779,0.0971107,0.275972,0.59295,0.58053,0.954103,0.294404,0.199267,0.44386,0.350137,0.26777,0.73808,0.608441,0.897391,0.281771,0.688803,0.879737,0.077261,0.176771,0.534818,0.0806326,0.57346,0.539284,0.071391,0.656487,0.00363654,0.213373,0.898275,0.877913,0.135066,0.608857,0.633399,0.280235,0.989519,0.256835,0.957976,0.93273,0.0253681,0.577437,0.839616,0.634119,0.744929,0.708234,0.01243,0.122226,0.298884,0.272207,0.826123,0.50205,0.866556,0.31189,0.016525,0.289324,0.407208,0.558295,0.811768,0.181915,0.0189914,0.487147,0.25798,0.345976,0.276296,0.893771,0.41905,0.642217,0.0250448,0.756667,0.220382,0.756639,0.242044,0.53467,0.389365,0.797352,0.635402,0.175339,0.212405,0.753674,0.0836433,0.63985,0.349446,0.901949,0.240707,0.78393,0.760847,0.869151,0.305554,0.044693,0.139226,0.955724,0.903927,0.558577,0.148553,0.592554,0.835909,0.828573,0.376801,0.334271,0.0811302,0.191882,0.840082,0.116864,0.809856,0.167732,0.0848665,0.304239,0.596439,0.740848,0.464883,0.252035,0.360204,0.337284,0.206252,0.0527058,0.516696,0.208992,0.0965438,0.307879,0.961591,0.183992,0.207739,0.717985,0.178847,0.946381,0.654691,0.337693,0.879933,0.237665,0.472857,0.194957,0.36003,0.605245,0.830231,0.735995,0.372211,0.56334,0.554924,0.618248,0.738007,0.480702,0.629293,0.449995,0.663188,0.724919,0.572498,0.672325,0.141513,0.473012,0.779025,0.908242,0.11763,0.308435,0.35227,0.154126,0.466818,0.236442,0.698378,0.538003,0.913768,0.0891457,0.0503651,0.373967,0.213323,0.707635,0.177676,0.416246,0.410977,0.102597,0.961301,0.577557,0.0218226,0.0118606,0.342563,0.987738,0.985341,0.188551,0.496461,0.962168,0.668612,0.67134,0.137613,0.138088,0.272629,0.241644,0.285378,0.161624,0.464299,0.513137,0.764239,0.509838,0.0627653,0.779338,0.340573,0.151492,0.128873,0.964233,0.0715519,0.9369,0.666025,0.337076,0.696582,0.225552,0.158649,0.763769,0.567358,0.660068,0.184338,0.14921,0.163331,0.994456,0.344451,0.670621,0.553449,0.352885,0.850844,0.628071,0.817494,0.330315,0.382538,0.825488,0.938249,0.358377,0.497527,0.773745,0.405425,0.223102,0.548869,0.911662,0.515613,0.136844,0.827067,0.29986,0.527975,0.57737,0.353914,0.200098,0.0013113,0.493298,0.175972,0.992838,0.0715412,0.464298,0.164612,0.763218,0.157053,0.733034,0.817024,0.404112,0.751477,0.461695,0.668891,0.837805,0.644637,0.310072,0.190666,0.56349,0.485585,0.44338,0.896383,0.511708,0.749306,0.124738,0.649769,0.660006,0.963191,0.244511,0.586197,0.0309764,0.0332528,0.993236,0.605389,0.666003,0.57073,0.0765613,0.691876,0.707715,0.166492,0.11465,0.377076,0.44316,0.786809,0.916996,0.453167,0.0343841,0.527517,0.864308,0.457361,0.829166,0.465399,0.905391,0.883966,0.223906,0.266503,0.272685,0.744256,0.259165,0.51649,0.499911,0.479626,0.799562,0.232322,0.0217514,0.290901,0.590848,0.778147,0.946645,0.31108,0.526397,0.291659,0.684329,0.63688,0.257868,0.974456,0.289212,0.626386,0.546187,0.271093,0.475154,0.621015,0.0440329,0.401565,0.779754,0.185523,0.8826,0.791962,0.69608,0.608268,0.234304,0.420485,0.566405,0.945735,0.463676,0.625548,0.416097,0.198384,0.284844,0.985956,0.360092,0.721144,0.286429,0.795221,0.535535,0.211664,0.717806,0.319104,0.466344,0.417687,0.0563946,0.918448,0.54968,0.396295,0.288658,0.966471,0.627833,0.293207,0.64075,0.0450344,0.0655407,0.518813,0.7025,0.741274,0.864582,0.0303291,0.0690585,0.5961,0.0670853,0.839655,0.108684,0.811422,0.0638714,0.139405,0.275936,0.543544,0.0256929,0.24267,0.764503,0.269247,0.505215,0.128697,0.921787,0.713986,0.867282,0.149119,0.479317,0.930085,0.471621,0.999598,0.0853012,0.639882,0.694653,0.938587,0.693788,0.697364,0.736554,0.651169,0.412176,0.448645,0.417672,0.523089,0.803269,0.251604,0.843432,0.405084,0.486402,0.779389,0.524915,0.141641,0.36759,0.527075,0.826956,0.465936,0.437932,0.575522,0.205432,0.966958,0.966226,0.473213,0.965147,0.599049,0.844774,0.808052,0.544787,0.719949,0.847801,0.238289,0.850327,0.351816,0.354137,0.162269,0.732554,0.95798,0.184575,0.260501,0.769453,0.89154,0.921237,0.0141183,0.965013,0.794868,0.099214,0.917237,0.798839,0.387546,0.56838,0.688588,0.309654,0.835428,0.983403,0.576005,0.896462,0.205727,0.992387,0.350611,0.707734,0.105985,0.16081,0.563128,0.955033,0.0907514,0.0299402,0.438382,0.024807,0.556955,0.313168,0.532923,0.780037,0.264348,0.650145,0.954067,0.597728,0.19167,0.414705,0.152534,0.726143,0.3287,0.306489,0.0554888,0.475058,0.286801,0.601803,0.590353,0.310855,0.402758,0.427766,0.549325,0.793077,0.971919,0.561739,0.92674,0.056757,0.837788,0.147913,0.172255,0.108959,0.492912,0.962443,0.148592,0.620192,0.901692,0.786724,0.486085,0.592781,0.705842,0.698625,0.7512,0.262797,0.41704,0.91162,0.328057,0.640937,0.414903,0.901559,0.561859,0.224297,0.84028,0.908606,0.831158,0.15277,0.0945586,0.940148,0.00329721,0.0554035,0.256857,0.351979,0.328883,0.627887,0.694358,0.803005,0.495777,0.055153,0.671016,0.986295,0.12931,0.352085,0.424378,0.75901,0.902277,0.757331,0.112764,0.816779,0.0550022,0.113925,0.801429,0.83219,0.00800455,0.0656898,0.0773168,0.893464,0.778023,0.0348007,0.785882,0.292571,0.971307,0.932326,0.323983,0.482642,0.419107,0.688381,0.791098,0.302385,0.399795,0.742936,0.377674,0.318028,0.576279,0.998275,0.294598,0.765875,0.668959,0.655517,0.909048,0.871023,0.614548,0.0635117,0.00168622,0.591145,0.437179,0.768744,0.812492,0.246998,0.348573,0.863497,0.797114,0.871288,0.734051,0.995588,0.527959,0.396809,0.505453,0.340591,0.75968,0.446431,0.356739,0.307621,0.869181,0.511064,0.395719,0.492884,0.52472,0.368424,0.817975,0.430176,0.446711,0.851114,0.0709212,0.474438,0.193816,0.816665,0.350224,0.69683,0.951026,0.467669,0.33449,0.847661,0.00573748,0.764243,0.998095,0.637391,0.777221,0.621805,0.923631,0.490207,0.478896,0.901074,0.426625,0.759862,0.888436,0.273336,0.000523865,0.830738,0.925657,0.920049,0.379438,0.238172,0.260254,0.109615,0.538941,0.0412009,0.404348,0.476652,0.817343,0.333841,0.431679,0.892472,0.192274,0.602403,0.0798074,0.687687,0.976501,0.944318,0.0135703,0.404966,0.737423,0.678754,0.0793009,0.296451,0.446425,0.568819,0.720109,0.635847,0.707604,0.141995,0.455556,0.668287,0.671105,0.0435374,0.134743,0.756924,0.646021,0.424145,0.192367,0.206815,0.466936,0.0294958,0.892968,0.902468,0.955002,0.0265982,0.367141,0.199505,0.183919,0.923043,0.952354,0.754733,0.63522,0.29554,0.622693,0.674795,0.130176,0.440628,0.544481,0.321328,0.314677,0.0578764,0.801615,0.690967,0.454062,0.129904,0.291355,0.941311,0.282696,0.880665,0.49295,0.279762,0.291643,0.214322,0.718812,0.0644626,0.411429,0.153713,0.624287,0.0380703,0.116884,0.0923535,0.44004,0.0969772,0.785386,0.450204,0.18911,0.634695,0.509978,0.651897,0.49648,0.260198,0.311656,0.626842,0.150737,0.143465,0.00242555,0.798104,0.696641,0.847652,0.166423,0.982329,0.957905,0.0463555,0.434175,0.588219,0.973224,0.786113,0.0305577,0.594965,0.661279,0.437918,0.678062,0.272882,0.442621,0.867674,0.0170219,0.107436,0.592269,0.696286,0.405321,0.486639,0.661665,0.454545,0.279541,0.644871,0.179336,0.774788,0.895786,0.724903,0.318925,0.36694,0.242172,0.98848,0.198922,0.269066,0.306324,0.807287,0.222655,0.191847,0.740891,0.320993,0.542071,0.070277,0.967827,0.972372,0.896293,0.67591,0.611277,0.556608,0.806191,0.262257,0.74262,0.22851,0.18008,0.484875,0.241957,0.0812783,0.211705,0.254175,0.0547712,0.233891,0.38831,0.295659,0.537021,0.976557,0.089179,0.485987,0.447606,0.561663,0.00799775,0.265648,0.282014,0.308413,0.917719,0.0598971,0.795414,0.651029,0.100364,0.189043,0.359998,0.931009,0.570135,0.0978959,0.778508,0.701264,0.775485,0.208593,0.979564,0.743088,|0.00848222,0.355539,0.261313,0.469715,0.0575757,0.467489,0.202426,0.193202,0.255813,0.215382,0.120205,0.560284,0.0728494,0.554026,0.40499,0.726937,0.143294,0.170594,0.748154,0.492856,0.926748,0.211819,0.083404,0.887993,0.811441,0.941095,0.361102,0.149824,0.784238,0.562424,0.238121,0.252465,0.663406,0.426427,0.926659,0.127881,0.256973,0.812131,0.394344,0.989299,0.139139,0.554897,0.517849,0.212379,0.0919045,0.0819563,0.16013,0.755282,0.987248,0.0650377,0.192512,0.304839,0.381153,0.778346,0.108512,0.974967,0.385231,0.466502,0.541363,0.887452,0.21006,0.469164,0.962375,0.945111,0.411517,0.782235,0.668972,0.352717,0.123439,0.0326244,0.599981,0.495478,0.96058,0.74163,0.425026,0.570579,0.897452,0.38904,0.680825,0.30005,0.131072,0.494006,0.550366,0.796681,0.635635,0.13643,0.429421,0.753708,0.0481043,0.908984,0.199537,0.261831,0.0076552,0.218177,0.841427,0.0794421,0.554322,0.936884,0.441283,0.814103,0.318114,0.554528,0.239183,0.948151,0.63258,0.552051,0.65906,0.0621826,0.461046,0.657868,0.87865,0.378851,0.940528,0.783375,0.105364,0.882288,0.666905,0.387275,0.184746,0.230912,0.925769,0.256192,0.362737,0.806382,0.300264,0.673041,0.353709,0.391169,0.684813,0.881955,0.0333414,0.683358,0.904616,0.0451055,0.322445,0.848289,0.683348,0.975075,0.453279,0.330981,0.928186,0.464137,0.120483,0.215579,0.106848,0.634139,0.572828,0.456628,0.156433,0.601083,0.522979,0.267848,0.70288,0.17843,0.629617,0.428853,0.841442,0.528335,0.732908,0.842533,0.901448,0.876085,0.819611,0.0758457,0.0671494,0.670712,0.729271,0.783553,0.564642,0.470406,0.206235,0.191533,0.760353,0.690783,0.770486,0.414458,0.80959,0.0576625,0.594071,0.122754,0.165583,0.873785,0.606873,0.733901,0.7174,0.760365,0.269201,0.602763,0.593256,0.844478,0.531032,0.115916,0.0419134,0.0874664,0.193185,0.770823,0.329539,0.599869,0.664937,0.137498,0.0973171,0.323277,0.291901,0.844748,0.563183,0.534779,0.628823,0.807182,0.673915,0.220678,0.323992,0.792629,0.217459,0.303537,0.959552,0.474395,0.798034,0.0172415,0.135531,0.927058,0.81452,0.302527,0.635412,0.146676,0.60505,0.306069,0.792713,0.132525,0.820561,0.676773,0.461124,0.143336,0.490234,0.964433,0.545132,0.255898,0.172159,0.88029,0.917813,0.307896,0.772548,0.129815,0.57105,0.969532,0.0367076,0.846373,0.386341,0.767632,0.728869,0.812726,0.271339,0.685388,0.787124,0.847325,0.873424,0.892472,0.986013,0.392434,0.404175,0.193925,0.129013,0.459331,0.0926918,0.16861,0.233129,0.886332,0.18457,0.416518,0.967432,0.559367,0.722239,0.8486,0.930454,0.537687,0.0150921,0.703614,0.319493,0.0680543,0.587343,0.336258,0.0857872,0.269417,0.224016,0.307955,0.269244,0.140837,0.300838,0.194237,0.752741,0.152741,0.364647,0.45533,0.0720371,0.313466,0.472151,0.576166,0.552609,0.501963,0.609043,0.953998,0.651039,0.208494,0.200439,0.0789862,0.187637,0.594616,0.973279,0.110631,0.323838,0.58069,0.371543,0.8214,0.824752,0.222501,0.954982,0.930577,0.976252,0.67852,0.483687,0.179607,0.608693,0.499192,0.415951,0.820495,0.186957,0.660352,0.208146,0.456367,0.664745,0.523568,0.279237,0.172989,0.214564,0.786692,0.188918,0.276557,0.247936,0.449338,0.493815,0.127649,0.0502616,0.530041,0.159352,0.960047,0.00801188,0.865177,0.710975,0.329027,0.946229,0.310507,0.299682,0.423335,0.42345,0.974047,0.903906,0.293781,0.14793,0.238065,0.15937,0.302503,0.224066,0.559741,0.185656,0.647603,0.495895,0.365737,0.728179,0.917004,0.278876,0.160654,0.00126684,0.315574,0.472432,0.0208816,0.474528,0.381623,0.801441,0.161522,0.629781,0.334044,0.813284,0.892929,0.217739,0.6915,0.912637,0.46378,0.0727046,0.993534,0.822901,0.967201,0.678505,0.0194363,0.0969154,0.607875,0.668062,0.474451,0.0753422,0.0968777,0.221555,0.425289,0.0705496,0.176633,0.201756,0.299055,0.154063,0.45513,0.826112,0.922369,0.678992,0.497288,0.314103,0.211086,0.89392,0.551662,0.138892,0.726875,0.594115,0.695253,0.918833,0.404373,0.15316,0.31309,0.0266588,0.641509,0.538493,0.307651,0.118874,0.168781,0.00986725,0.948132,0.798655,0.578481,0.94723,0.289751,0.863538,0.460256,0.299721,0.59955,0.533848,0.772401,0.718197,0.319823,0.720944,0.853002,0.608141,0.49787,0.995163,0.033898,0.294043,0.265851,0.371731,0.496242,0.403138,0.256248,0.530534,0.123209,0.248345,0.89024,0.355837,0.151845,0.18857,0.193904,0.348738,0.579946,0.155303,0.0920573,0.772351,0.797105,0.617965,0.376929,0.873643,0.214507,0.150585,0.317037,0.602071,0.947439,0.557455,0.414075,0.562563,0.394759,0.993897,0.42952,0.485352,0.521832,0.682337,0.651165,0.346061,0.260826,0.949414,0.157296,0.612538,0.45117,0.52344,0.591015,0.288339,0.27439,0.180389,0.926582,0.963434,0.340953,0.6084,0.173855,0.372998,0.229833,0.674902,0.0539851,0.716749,0.336806,0.10231,0.399742,0.48596,0.443878,0.817053,0.833267,0.671913,0.540311,0.619087,0.933827,0.505562,0.395606,0.406052,0.307435,0.765547,0.652455,0.404324,0.3739,0.0789747,0.191455,0.278925,0.0202772,0.466822,0.738514,0.535856,0.960139,0.277308,0.762198,0.158133,0.485355,0.388231,0.86207,0.504481,0.34781,0.772539,0.777645,0.926881,0.876385,0.611488,0.0867468,0.96896,0.0856208,0.163576,0.289146,0.872951,0.896091,0.984409,0.358236,0.137291,0.583379,0.256263,0.496459,0.133426,0.636946,0.581814,0.987001,0.952074,0.270091,0.263229,0.0650631,0.922451,0.485036,0.880972,0.161591,0.148936,0.355592,0.945328,0.674036,0.759634,0.471711,0.815078,0.578396,0.894463,0.187608,0.95369,0.588143,0.850368,0.824162,0.0515812,0.309335,0.609103,0.56506,0.33485,0.275345,0.633337,0.832444,0.708625,0.0868233,0.202569,0.43984,0.537719,0.968138,0.586541,0.322781,0.883861,0.808733,0.927192,0.286038,0.256578,0.0980272,0.412221,0.784774,0.0519826,0.896549,0.164956,0.56725,0.730152,0.766075,0.269842,0.0695837,0.227221,0.0350659,0.358048,0.815515,0.858745,0.526083,0.426556,0.324295,0.393903,0.332258,0.869102,0.941182,0.275876,0.557615,0.864942,0.635157,0.554905,0.344045,0.619347,0.304946,0.608732,0.652481,0.541791,0.610669,0.638634,0.00242251,0.314881,0.0711887,0.820565,0.651178,0.982147,0.0184402,0.470187,0.81325,0.233487,0.201604,0.050922,0.554897,0.518529,0.607281,0.307145,0.735499,0.13322,0.480063,0.19879,0.409623,0.532048,0.441069,0.892177,0.232895,0.195848,0.575749,0.508474,0.84038,0.215619,0.687202,0.104085,0.14645,0.547792,0.629302,0.165312,0.42933,0.641779,0.154727,0.84635,0.509696,0.346338,0.0018549,0.885484,0.698746,0.125699,0.322203,0.342401,0.820885,0.125984,0.566361,0.851247,0.249923,0.667665,0.267777,0.448817,0.405299,0.035764,0.623978,0.975572,0.965587,0.142835,0.153116,0.419079,0.924265,0.783255,0.491863,0.951397,0.255522,0.927216,0.291681,0.991945,0.282413,0.730552,0.31495,0.295903,0.993317,0.912978,0.0301391,0.614981,0.966685,0.412309,0.0819514,0.866762,0.0742275,0.591149,0.479678,0.0056327,0.241531,0.681633,0.778686,0.348431,0.684499,0.76744,0.29506,0.291098,0.145968,0.318968,0.889827,0.564183,0.433339,0.554073,0.983016,0.912153,0.479245,0.578101,0.021504,0.157499,0.960875,0.767837,0.357563,0.846408,0.632369,0.333015,0.33746,0.537791,0.806554,0.931217,0.973469,0.0728111,0.000436723,0.628566,0.73008,0.861014,0.435591,0.784335,0.290943,0.00603878,0.288675,0.46605,0.137853,0.0173472,0.711463,0.564003,0.208923,0.590087,0.92619,0.739327,0.452285,0.685668,0.441525,0.622433,0.391138,0.281408,0.651342,0.967577,0.392812,0.339641,0.779291,0.734943,0.0583294,0.411316,0.653567,0.284977,0.960142,0.279818,0.892977,0.196813,0.297228,0.737031,0.928351,0.344708,0.140205,0.70573,0.172682,0.541533,0.635397,0.355802,0.0183777,0.501152,0.484935,0.579241,0.701971,0.910335,0.470459,0.610336,0.889885,0.746886,0.0871123,0.764834,0.658022,0.530896,0.260868,0.189304,0.885468,0.150473,0.508613,0.305334,0.396084,0.71087,0.229521,0.659566,0.140165,0.42602,0.991526,0.588241,0.725227,0.229799,0.67597,0.392856,0.434771,0.697118,0.6318,0.84005,0.557868,0.482513,0.0230907,0.073149,0.164895,0.851544,0.0320562,0.113317,0.482434,0.346427,0.563596,0.0717598,0.757346,0.865827,0.0198113,0.922819,0.308668,0.0948423,0.303367,0.378497,0.639528,0.88558,0.150713,0.744298,0.429038,0.717308,0.770136,0.943898,0.210507,0.345215,0.933312,0.208422,0.468695,0.972986,0.113399,0.519417,0.605075,0.349911,0.59085,0.239706,0.402432,0.681699,0.0272043,0.354634,0.777103,0.724746,0.200663,0.627943,0.748148,0.951819,0.897771,0.792521,0.0891494,0.992293,0.438341,0.9962,0.317576,0.0345193,0.166823,0.672162,0.701289,0.945328,0.582797,0.108818,0.0223852,0.899105,0.141918,0.241246,0.472915,0.403648,0.911015,0.0143578,0.213937,0.52043,0.318698,0.96052,0.220781,0.874176,0.586505,0.82335,0.127988,0.631565,0.128816,0.161095,0.578996,0.740355,0.406811,0.915824,0.849001,0.561912,0.393315,0.688719,0.282477,0.0188109,0.676581,0.818587,0.420909,0.678166,0.558657,0.00334114,0.275325,0.260459,0.703919,0.63567,0.475662,0.328526,0.212331,0.164435,0.278365,0.61548,0.80124,0.097886,0.98422,0.715069,0.748215,0.875088,0.242925,0.740756,0.686858,0.947421,0.955101,0.210151,0.28765,0.67354,0.333614,0.488524,0.0177045,0.464471,0.929289,0.0286522,0.304539,0.743972,0.279257,0.297566,0.764958,0.935013,0.530949,0.805554,0.80204,0.457616,0.680966,0.170019,0.908494,0.552863,0.162488,0.610731,0.167505,0.406814,0.568929,0.228424,0.83837,0.892122,0.458143,|0.89735,0.278418,0.197261,0.706468,0.792057,0.79882,0.476506,0.939236,0.879819,0.0861669,0.194708,0.118508,0.44865,0.585693,0.136838,0.0745386,0.703392,0.32531,0.826075,0.736673,0.846664,0.640864,0.468075,0.342241,0.205583,0.833069,0.872539,0.00074017,0.133179,0.77433,0.205013,0.662756,0.36306,0.692821,0.402284,0.0680307,0.600235,0.777143,0.0214798,0.111547,0.811388,0.298635,0.00737125,0.163346,0.833194,0.512233,0.775458,0.0558646,0.823131,0.0315863,0.061168,0.469841,0.982083,0.83228,0.026026,0.204437,0.246833,0.025808,0.845735,0.696034,0.0268195,0.255141,0.772002,0.330495,0.723393,0.231373,0.284229,0.317212,0.863131,0.904988,0.456297,0.0879556,0.877813,0.613563,0.355797,0.690634,0.212194,0.562838,0.396006,0.0272654,0.348069,0.618728,0.0811198,0.427961,0.776764,0.0460308,0.921894,0.628549,0.359449,0.0102404,0.20154,0.0449554,0.358949,0.181348,0.936151,0.40679,0.609941,0.294507,0.624882,0.545453,0.294434,0.476227,0.49302,0.128612,0.465614,0.302995,0.730187,0.308605,0.97438,0.936003,0.856492,0.775341,0.909497,0.453236,0.751436,0.0889443,0.736329,0.423506,0.390293,0.933569,0.858892,0.829726,0.513067,0.0206407,0.271955,0.594647,0.679433,0.86425,0.434576,0.85441,0.89379,0.999251,0.170293,0.274405,0.0543471,0.560307,0.845493,0.995629,0.865383,0.46629,0.151753,0.637756,0.0593891,0.186827,0.567293,0.686734,0.951589,0.179765,0.512217,0.728275,0.715562,0.945719,0.171701,0.41931,0.0840046,0.851621,0.583195,0.723757,0.0854428,0.0657182,0.486152,0.391368,0.650455,0.15305,0.0703838,0.83219,0.61047,0.724356,0.632825,0.563882,0.0865154,0.683353,0.690535,0.757659,0.160605,0.308554,0.833809,0.793116,0.222914,0.39748,0.998692,0.897156,0.743397,0.0378487,0.0336084,0.729606,0.820433,0.695316,0.206569,0.694023,0.553783,0.819627,0.680669,0.363132,0.327963,0.410056,0.691017,0.3839,0.190232,0.0401504,0.453168,0.300485,0.335008,0.635469,0.871852,0.258913,0.311361,0.597494,0.786632,0.319631,0.408961,0.433913,0.569445,0.832899,0.28309,0.609905,0.576391,0.883568,0.976268,0.0296642,0.0796966,0.769458,0.115365,0.164534,0.207342,0.287387,0.752894,0.718485,0.641452,0.795967,0.192556,0.700638,0.0773456,0.9106,0.952118,0.755716,0.5176,0.882312,0.005844,0.417739,0.233211,0.170906,0.43174,0.277333,0.618044,0.800855,0.533239,0.10788,0.545808,0.809832,0.624271,0.285941,0.142302,0.5106,0.434893,0.899394,0.348278,0.555167,0.49311,0.457956,0.449037,0.230938,0.722377,0.427296,0.72797,0.765741,0.356507,0.0113518,0.374118,0.817636,0.444683,0.666967,0.845323,0.41313,0.698991,0.732941,0.534309,0.478176,0.0313894,0.990482,0.00137639,0.232321,0.286392,0.518115,0.333596,0.91972,0.83161,0.722588,0.979974,0.735519,0.694678,0.0113037,0.434813,0.241008,0.719419,0.0123846,0.525915,0.374708,0.766157,0.566859,0.459939,0.783887,0.308212,0.543547,0.760094,0.12458,0.271388,0.267101,0.345862,0.581835,0.584912,0.962743,0.18173,0.409939,0.231042,0.763082,0.0459433,0.244614,0.546961,0.990668,0.905584,0.774985,0.895616,0.37058,0.595853,0.634852,0.225428,0.522101,0.199391,0.114938,0.162539,0.877353,0.205979,0.850543,0.129966,0.509774,0.70497,0.370383,0.0828595,0.388912,0.562647,0.129775,0.807399,0.13274,0.829666,0.290285,0.871313,0.142117,0.199846,0.86014,0.374057,0.995077,0.993979,0.676139,0.216318,0.901925,0.0260944,0.23533,0.57981,0.672066,0.466619,0.502938,0.374007,0.731571,0.848373,0.61186,0.488383,0.0155109,0.855178,0.975372,0.652937,0.134302,0.196884,0.811464,0.590887,0.424949,0.473087,0.846142,0.577144,0.259941,0.773679,0.879237,0.263381,0.178419,0.0898085,0.0468408,0.517801,0.836427,0.342288,0.0252695,0.842717,0.998397,0.926543,0.122858,0.474904,0.872836,0.964887,0.594017,0.108246,0.035606,0.178589,0.445917,0.410897,0.660305,0.797654,0.404894,0.0394782,0.205697,0.875073,0.95293,0.258422,0.332911,0.308768,0.926251,0.323243,0.581882,0.961502,0.60884,0.383061,0.70679,0.334727,0.599388,0.681034,0.175942,0.986599,0.0209576,0.394536,0.527056,0.559061,0.00568163,0.628768,0.795349,0.573165,0.399348,0.428015,0.0363801,0.945486,0.298961,0.304213,0.56448,0.671524,0.641705,0.286879,0.499209,0.295793,0.742723,0.479076,0.816662,0.430958,0.580692,0.10883,0.480058,0.2206,0.117342,0.822457,0.309132,0.58744,0.428931,0.809451,0.894386,0.315816,0.8552,0.828173,0.397624,0.937986,0.68726,0.132668,0.895911,0.967141,0.850282,0.45002,0.262451,0.195113,0.778349,0.417943,0.00154841,0.259905,0.948712,0.193395,0.176657,0.541546,0.731999,0.0356396,0.711213,0.153897,0.68953,0.207051,0.869123,0.914128,0.415907,0.539287,0.790438,0.470614,0.365241,0.321576,0.518413,0.114815,0.747325,0.0143833,0.241185,0.78907,0.368749,0.394872,0.624969,0.509124,0.628771,0.822342,0.736215,0.214002,0.468325,0.165087,0.240705,0.508102,0.777238,0.606368,0.805044,0.149348,0.0755022,0.0240178,0.0969379,0.713078,0.418974,0.555411,0.0240793,0.0215422,0.803266,0.503163,0.544433,0.235084,0.780412,0.198914,0.702065,0.173573,0.469239,0.610553,0.268738,0.771079,0.470923,0.457449,0.574348,0.833176,0.966496,0.546498,0.0957793,0.260369,0.842637,0.716274,0.133032,0.620429,0.430088,0.584394,0.0677581,0.547756,0.795372,0.0519489,0.558924,0.672266,0.359647,0.110835,0.275205,0.829584,0.163256,0.877762,0.559318,0.0982646,0.014273,0.356014,0.893883,0.279538,0.596053,0.84363,0.835435,0.548326,0.63392,0.780548,0.899632,0.166105,0.00615114,0.126197,0.0255326,0.357972,0.686814,0.784079,0.732093,0.170141,0.1164,0.221421,0.0858536,0.231222,0.501539,0.38671,0.383488,0.968373,0.19407,0.73994,0.0462647,0.634701,0.452683,0.0317743,0.439889,0.0858334,0.860994,0.130363,0.072898,0.4805,0.30232,0.0980115,0.841517,0.141557,0.32596,0.522487,0.641765,0.924741,0.955598,0.125506,0.846978,0.702113,0.501513,0.665869,0.00264472,0.832004,0.820228,0.903377,0.446094,0.883273,0.509664,0.865211,0.132746,0.233505,0.226891,0.817179,0.642592,0.383943,0.292192,0.950806,0.522782,0.476234,0.969961,0.0419602,0.494886,0.827918,0.371917,0.276245,0.2891,0.982486,0.0254298,0.257647,0.140848,0.675757,0.652957,0.439758,0.343072,0.990772,0.341807,0.532829,0.824806,0.248152,0.15857,0.0116726,0.766269,0.244026,0.459341,0.938256,0.219911,0.172393,0.303582,0.967556,0.155072,0.72893,0.849656,0.610622,0.078522,0.657155,0.248809,0.372642,0.169661,0.184517,0.840195,0.965334,0.764794,0.963747,0.824615,0.0479666,0.514018,0.561923,0.545671,0.589654,0.927226,0.400019,0.519454,0.527788,0.60653,0.53642,0.0991687,0.582454,0.608246,0.0258986,0.711081,0.0995452,0.0956652,0.609673,0.244681,0.796468,0.026746,0.447598,0.548646,0.475343,0.809761,0.779975,0.189405,0.240295,0.42489,0.0585545,0.483844,0.969487,0.629109,0.307411,0.414981,0.123507,0.261185,0.328054,0.134418,0.576079,0.172858,0.625749,0.513425,0.77697,0.774182,0.703312,0.602756,0.432274,0.968689,0.594694,0.00499624,0.769732,0.366229,0.837252,0.316855,0.950669,0.540415,0.889885,0.754415,0.111072,0.96661,0.277525,0.73473,0.447548,0.392406,0.364278,0.146642,0.64613,0.670619,0.514057,0.120695,0.395169,0.164708,0.892554,0.977764,0.922936,0.782312,0.0890394,0.618509,0.936835,0.489612,0.582412,0.804344,0.225883,0.996196,0.408172,0.224027,0.392069,0.915457,0.813455,0.534688,0.734948,0.716638,0.643222,0.334492,0.191275,0.589734,0.0386928,0.234268,0.140756,0.526875,0.856633,0.888439,0.30842,0.958548,0.795497,0.0389575,0.0141573,0.35136,0.429695,0.537686,0.406038,0.986355,0.038745,0.468421,0.287114,0.17128,0.654187,0.781035,0.340069,0.227695,0.789024,0.400264,0.83256,0.893724,0.751609,0.31235,0.137751,0.540644,0.78032,0.00970864,0.134076,0.995903,0.913715,0.995602,0.786526,0.576529,0.178814,0.672148,0.970592,0.480473,0.651205,0.975067,0.0445535,0.909061,0.29085,0.173889,0.971467,0.67944,0.168953,0.915806,0.715355,0.960877,0.188697,0.98885,0.413548,0.276866,0.496446,0.0715871,0.0654082,0.874406,0.207499,0.957795,0.255394,0.383264,0.366711,0.446021,0.871501,0.0787313,0.640506,0.570218,0.15435,0.540399,0.994393,0.0699648,0.597329,0.1612,0.529558,0.700401,0.941334,0.526313,0.200257,0.708895,0.686996,0.0157612,0.137817,0.112538,0.835366,0.150817,0.67646,0.464859,0.531941,0.876085,0.498682,0.620563,0.129433,0.51562,0.580726,0.783841,0.550923,0.602098,0.707124,0.961063,0.269338,0.282913,0.487893,0.443892,0.441089,0.769626,0.347099,0.697915,0.898256,0.758347,0.625277,0.924942,0.14943,0.71758,0.176448,0.880366,0.919359,0.033056,0.985477,0.0822814,0.777545,0.324005,0.0520304,0.0923393,0.432596,0.598881,0.329529,0.944406,0.457236,0.90629,0.895843,0.145266,0.935288,0.604986,0.0122977,0.534354,0.426642,0.215657,0.634287,0.0609941,0.960142,0.629825,0.84758,0.552246,0.915286,0.0103328,0.269994,0.186426,0.162683,0.960376,0.726408,0.996178,0.471667,0.34647,0.687816,0.730682,0.955782,0.735321,0.173697,0.340616,0.632242,0.910082,0.822049,0.711754,0.231228,0.0147824,0.17662,0.776226,0.555185,0.0561666,0.0111495,0.0636993,0.41802,0.683485,0.523332,0.125538,0.685159,0.91069,0.592236,0.716202,0.825115,0.593536,0.868991,0.462507,0.435408,0.399135,0.165515,0.130864,0.973239,0.354018,0.0856602,0.666037,0.491102,0.398316,0.415926,0.672011,0.860159,0.669206,0.577609,0.718775,0.924119,0.418754,0.948262,0.385313,0.7482,0.149269,0.230526,0.634578,0.00551689,0.78096,0.69571,0.120563,0.273973,0.876558,|0.310855,0.771517,0.701194,0.344784,0.557768,0.221471,0.881786,0.719814,0.238307,0.853028,0.326559,0.285086,0.479834,0.869078,0.759723,0.38322,0.344485,0.632115,0.433299,0.23444,0.516005,0.13077,0.111442,0.530907,0.439975,0.337595,0.181246,0.067439,0.993672,0.807865,0.834937,0.24692,0.118284,0.967854,0.147005,0.769431,0.273806,0.522251,0.505877,0.946121,0.80098,0.672933,0.718941,0.121255,0.918443,0.0873969,0.693781,0.407518,0.0622734,0.725594,0.143313,0.520127,0.753739,0.43667,0.675257,0.395922,0.42691,0.163072,0.626293,0.214545,0.036391,0.107617,0.531879,0.00512195,0.508774,0.479894,0.807911,0.630465,0.184749,0.889665,0.250122,0.277288,0.711792,0.0360202,0.449064,0.682238,0.736594,0.937068,0.0402418,0.956648,0.456781,0.796556,0.156908,0.91008,0.310311,0.108704,0.702357,0.0837933,0.888817,0.992088,0.319026,0.294617,0.226966,0.289357,0.0485664,0.785057,0.234355,0.736914,0.149452,0.938908,0.0428492,0.90878,0.827451,0.881486,0.0404282,0.736947,0.803039,0.150563,0.0518181,0.902229,0.402398,0.97691,0.00329912,0.579551,0.925466,0.904271,0.747461,0.572182,0.637792,0.590337,0.187075,0.299619,0.442992,0.464841,0.732877,0.382404,0.591491,0.621841,0.17932,0.988439,0.200132,0.793607,0.888489,0.854772,0.826519,0.32478,0.413177,0.0483642,0.00466609,0.603861,0.731529,0.972296,0.727982,0.132622,0.993966,0.180378,0.566194,0.260512,0.286682,0.569342,0.520993,0.193134,0.407201,0.511396,0.67453,0.652928,0.106101,0.0162231,0.280703,0.665941,0.0851807,0.937529,0.536672,0.185508,0.72101,0.0269753,0.0412177,0.0749635,0.736783,0.261007,0.50587,0.0645177,0.0185918,0.686984,0.730082,0.355345,0.881883,0.910165,0.680221,0.937037,0.744266,0.633928,0.352223,0.331906,0.948723,0.248743,0.200099,0.22359,0.828957,0.828998,0.493397,0.705032,0.824504,0.447366,0.572971,0.152387,0.0648835,0.198961,0.465459,0.60521,0.732808,0.837758,0.308339,0.159591,0.283576,0.581692,0.786581,0.694795,0.571933,0.992857,0.0772247,0.867783,0.952408,0.513938,0.5632,0.234682,0.205301,0.655445,0.301463,0.943468,0.882253,0.816709,0.701858,0.258032,0.0515018,0.760434,0.0125949,0.25662,0.127987,0.720536,0.358624,0.991124,0.420908,0.115766,0.408573,0.892506,0.220388,0.0204924,0.309934,0.415909,0.938893,0.462499,0.218711,0.222934,0.385941,0.7068,0.105579,0.165608,0.31316,0.64371,0.435785,0.323165,0.659831,0.0452964,0.122685,0.967372,0.627415,0.665493,0.95611,0.547597,0.748198,0.676256,0.303044,0.627271,0.700794,0.893236,0.196684,0.4292,0.907668,0.819989,0.667596,0.420157,0.770299,0.912931,0.122336,0.331284,0.111337,0.279433,0.919458,0.93909,0.89956,0.542507,0.641835,0.926718,0.327782,0.94123,0.864367,0.299614,0.487617,0.271146,0.989759,0.24129,0.748846,0.720296,0.467539,0.493677,0.707032,0.0852005,0.584036,0.973622,0.992295,0.347231,0.0667571,0.197692,0.369581,0.210994,0.886907,0.223039,0.851118,0.386859,0.348243,0.395832,0.856858,0.594823,0.086974,0.0673229,0.0390804,0.913581,0.756151,0.128326,0.276754,0.610147,0.163273,0.0260518,0.885439,0.146836,0.609921,0.455261,0.535141,0.744079,0.418207,0.847377,0.0180565,0.904449,0.503899,0.134943,0.224437,0.996638,0.902019,0.752878,0.416284,0.68238,0.776495,0.870301,0.0653568,0.98352,0.39142,0.842944,0.919362,0.301917,0.00414592,0.802347,0.355782,0.57195,0.645887,0.0833216,0.231643,0.363617,0.745081,0.0242537,0.22264,0.496843,0.579085,0.976375,0.953429,0.278441,0.915568,0.321794,0.678672,0.0883418,0.422484,0.0693692,0.293819,0.454857,0.444905,0.454567,0.331388,0.715925,0.472442,0.128302,0.579834,0.486019,0.402619,0.414259,0.10741,0.468973,0.828588,0.432557,0.677223,0.944281,0.562694,0.288492,0.2349,0.334343,0.61464,0.394259,0.179632,0.562929,0.978835,0.785698,0.068917,0.19157,0.550941,0.814083,0.336546,0.77707,0.214539,0.0155951,0.889149,0.641374,0.777696,0.238782,0.414509,0.282493,0.956504,0.248717,0.737584,0.726296,0.916606,0.203364,0.68695,0.450842,0.79117,0.919925,0.883905,0.701731,0.973057,0.055245,0.314707,0.646701,0.993482,0.645428,0.258116,0.693639,0.711224,0.0730988,0.980193,0.989033,0.018159,0.0152842,0.571534,0.682228,0.327842,0.410419,0.980151,0.66734,0.965303,0.190371,0.456474,0.38265,0.450282,0.672429,0.419311,0.0257468,0.560117,0.229691,0.0461423,0.889989,0.983152,0.0197141,0.890002,0.521573,0.391963,0.794232,0.439339,0.113431,0.107945,0.93073,0.882617,0.368486,0.101604,0.688887,0.359284,0.804269,0.845003,0.870316,0.798273,0.545772,0.688926,0.17624,0.232818,0.900465,0.363985,0.407956,0.834113,0.930704,0.701622,0.80333,0.737229,0.0511944,0.403406,0.253807,0.326732,0.420739,0.167648,0.595815,0.00230163,0.513518,0.934053,0.520361,0.35841,0.855718,0.242386,0.795353,0.0926612,0.655905,0.274505,0.308662,0.0148973,0.888333,0.555466,0.348163,0.589048,0.509353,0.929512,0.365171,0.972428,0.183149,0.498212,0.168918,0.412275,0.12211,0.165635,0.960032,0.38336,0.955957,0.435665,0.578357,0.220701,0.965843,0.778999,0.784241,0.00507015,0.368046,0.87115,0.169315,0.293285,0.767626,0.261783,0.340638,0.119125,0.765726,0.719598,0.946053,0.840797,0.52678,0.732313,0.694602,0.987928,0.197769,0.197855,0.663782,0.192372,0.946413,0.775538,0.651284,0.443783,0.792931,0.110745,0.567651,0.000407517,0.453187,0.181009,0.0875476,0.134969,0.243534,0.798346,0.0750376,0.00465572,0.622697,0.528684,0.135526,0.91377,0.347996,0.0509522,0.583396,0.0853221,0.232649,0.780905,0.272282,0.99684,0.697716,0.563351,0.308305,0.684732,0.446375,0.440288,0.738554,0.674288,0.00879264,0.810646,0.936444,0.467563,0.109765,0.925595,0.177074,0.684609,0.840307,0.269012,0.422271,0.954139,0.836075,0.781608,0.616332,0.132957,0.797551,0.0781283,0.401033,0.867119,0.86164,0.853858,0.148832,0.160962,0.941027,0.0894437,0.891504,0.826632,0.435932,0.57549,0.384211,0.387999,0.869672,0.100598,0.021033,0.639626,0.863437,0.93245,0.0301941,0.655529,0.687715,0.897105,0.83963,0.552048,0.567469,0.850702,0.434696,0.40339,0.680578,0.060477,0.603134,0.518377,0.0449845,0.180929,0.939394,0.267596,0.207633,0.906864,0.161824,0.327042,0.75343,0.526372,0.294316,0.695426,0.500372,0.21623,0.696324,0.0353795,0.447836,0.85367,0.399262,0.79663,0.495217,0.323559,0.90755,0.440322,0.17623,0.750032,0.00213158,0.15658,0.93513,0.983106,0.795623,0.699061,0.1453,0.615995,0.140469,0.101033,0.127374,0.735149,0.376193,0.00510526,0.666005,0.711196,0.264175,0.328916,0.00257915,0.112952,0.37616,0.547649,0.757943,0.226129,0.454191,0.848069,0.857322,0.867372,0.412294,0.259738,0.894013,0.238964,0.277608,0.275475,0.997064,0.999904,0.891607,0.162424,0.65624,0.0948392,0.57671,0.55738,0.451151,0.540703,0.0674454,0.0157539,0.2897,0.520313,0.235462,0.859929,0.159696,0.0489153,0.0841897,0.825794,0.00885469,0.300705,0.103078,0.519165,0.496359,0.359383,0.0270278,0.777327,0.327996,0.350189,0.51983,0.291725,0.718564,0.0563231,0.919188,0.180762,0.882815,0.0753986,0.863887,0.221021,0.52543,0.299695,0.765199,0.747667,0.608575,0.469661,0.415715,0.433417,0.742637,0.0457317,0.187521,0.865529,0.532121,0.0794793,0.793231,0.661754,0.662731,0.538375,0.820424,0.569629,0.943214,0.931374,0.310929,0.956051,0.447306,0.0435395,0.835582,0.440693,0.940696,0.768463,0.332281,0.0424997,0.0337619,0.458503,0.228306,0.477106,0.434262,0.325948,0.270023,0.109766,0.102925,0.694732,0.544705,0.112434,0.360939,0.439044,0.555392,0.55036,0.0791692,0.258846,0.672413,0.475368,0.957131,0.667615,0.780934,0.911851,0.0120772,0.474844,0.0499681,0.754615,0.440693,0.731956,0.629744,0.093478,0.794316,0.922672,0.799312,0.798623,0.0590911,0.510112,0.16441,0.240515,0.17627,0.955528,0.357925,0.855395,0.282066,0.263455,0.774453,0.744747,0.00737286,0.509369,0.703024,0.513502,0.946295,0.552438,0.532903,0.247571,0.466801,0.300744,0.639648,0.374664,0.0885518,0.275435,0.546907,0.76253,0.736311,0.803699,0.716101,0.191379,0.761431,0.968337,0.326492,0.519735,0.82482,0.520621,0.0789341,0.841514,0.713515,0.709881,0.351783,0.0531632,0.327433,0.640298,0.622855,0.327818,0.638294,0.844298,0.671685,0.817747,0.421849,0.350486,0.561871,0.201634,0.31009,0.666963,0.69033,0.842674,0.227363,0.41236,0.696778,0.517168,0.237084,0.518459,0.178243,0.497664,0.638517,0.252142,0.2236,0.666232,0.535318,0.717325,0.925693,0.61209,0.705292,0.575088,0.947558,0.439489,0.0504392,0.408945,0.894452,0.386878,0.405427,0.65724,0.738857,0.744059,0.130464,0.425178,0.895742,0.111216,0.356182,0.0791158,0.105856,0.996888,0.657326,0.18739,0.817696,0.975991,0.209262,0.423826,0.128581,0.883503,0.470272,0.710404,0.328228,0.983808,0.369102,0.507009,0.802657,0.723256,0.606233,0.657321,0.911736,0.679623,0.390995,0.0969834,0.460982,0.547172,0.215076,0.0313249,0.298493,0.245457,0.521547,0.411746,0.408974,0.374771,0.638238,0.326128,0.320329,0.294125,0.504837,0.733034,0.566081,0.496329,0.580944,0.0382228,0.709393,0.547285,0.640451,0.415835,0.792858,0.353932,0.542953,0.515206,0.778452,0.800029,0.756517,0.912218,0.294756,0.305942,0.82919,0.0319088,0.89344,0.349562,0.462982,0.0469794,0.125884,0.682715,0.000529647,0.856243,0.362272,0.828513,0.405425,0.844703,0.427628,0.888107,0.12271,0.657528,0.415036,0.34278,0.150184,0.221226,0.821267,0.381358,0.421555,0.199978,0.813074,0.595095,0.35713,0.58115,0.111157,0.60551,0.116947,0.511614,0.551233,0.820398,0.562859,0.309335,0.00684971,|0.43367,0.531882,0.0472035,0.257226,0.512015,0.332561,0.0378451,0.774364,0.941101,0.433073,0.269563,0.747098,0.621468,0.981277,0.680797,0.348502,0.518272,0.395698,0.459286,0.388541,0.596392,0.97902,0.0084461,0.759958,0.975681,0.568199,0.853829,0.950831,0.116178,0.209099,0.237144,0.00546652,0.658942,0.0395794,0.394023,0.544469,0.413361,0.131821,0.166128,0.0452884,0.461799,0.453324,0.915896,0.678235,0.702407,0.945817,0.991037,0.672335,0.702948,0.0683802,0.0348637,0.372654,0.236354,0.881547,0.25258,0.211688,0.0879119,0.901865,0.936568,0.866455,0.64805,0.396848,0.00887895,0.912484,0.51125,0.439439,0.672218,0.380255,0.821037,0.0635702,0.599119,0.439165,0.361812,0.241698,0.432997,0.111859,0.303115,0.767396,0.347932,0.0599018,0.261549,0.871582,0.5844,0.178425,0.135783,0.995785,0.428221,0.720033,0.167154,0.288076,0.497808,0.920963,0.687422,0.766028,0.87475,0.182189,0.496608,0.704038,0.601121,0.236535,0.74113,0.358703,0.0757893,0.324418,0.754091,0.635009,0.981152,0.481577,0.286167,0.81609,0.269664,0.96496,0.255908,0.705811,0.312607,0.207205,0.66637,0.392376,0.766567,0.731707,0.0862061,0.504476,0.345814,0.485096,0.0158791,0.624506,0.586811,0.686315,0.897186,0.1976,0.928722,0.889388,0.977383,0.549043,0.482909,0.585616,0.591576,0.711226,0.247259,0.920475,0.0769224,0.636117,0.344546,0.401683,0.145362,0.885438,0.837863,0.199569,0.216277,0.225429,0.411942,0.403117,0.987619,0.254211,0.363633,0.924289,0.20244,0.249757,0.118946,0.412495,0.163644,0.10168,0.106028,0.831989,0.475108,0.704862,0.977209,0.635071,0.0831309,0.34895,0.956459,0.169302,0.149117,0.142995,0.493454,0.770318,0.7263,0.22521,0.0224474,0.658868,0.505472,0.509395,0.212475,0.811447,0.577157,0.0870714,0.246442,0.355425,0.290784,0.777625,0.19799,0.114254,0.0982106,0.855218,0.365424,0.357377,0.481421,0.866388,0.623616,0.655854,0.472369,0.649369,0.111841,0.851603,0.758197,0.681988,0.278889,0.905425,0.0493319,0.7762,0.929952,0.37749,0.625351,0.681539,0.155704,0.209378,0.776025,0.419662,0.50564,0.595234,0.472698,0.883577,0.770025,0.481524,0.359873,0.128598,0.823651,0.416025,0.999142,0.248716,0.873817,0.183092,0.857931,0.362029,0.693262,0.1646,0.511784,0.719031,0.585809,0.572737,0.511975,0.629447,0.488127,0.258855,0.204907,0.485376,0.935389,0.190754,0.5149,0.529705,0.0858532,0.953087,0.787636,0.959299,0.862064,0.643114,0.777252,0.662312,0.441679,0.475082,0.374942,0.652715,0.957613,0.124332,0.653381,0.416526,0.496512,0.661339,0.458777,0.582438,0.29099,0.0572522,0.231146,0.325239,0.810708,0.564156,0.925021,0.0777957,0.614809,0.793202,0.968697,0.983567,0.843111,0.736905,0.595466,0.984019,0.26487,0.728584,0.890954,0.0939075,0.911514,0.959058,0.0607587,0.796701,0.642115,0.310384,0.691991,0.488299,0.731499,0.934696,0.273062,0.596879,0.346754,0.74209,0.0695553,0.384354,0.2949,0.314971,0.369489,0.266674,0.645117,0.889749,0.839191,0.625416,0.451085,0.858853,0.775541,0.708994,0.653832,0.140077,0.542404,0.94298,0.759124,0.942055,0.827182,0.475938,0.497646,0.581977,0.171562,0.105023,0.408088,0.370355,0.518483,0.339615,0.763391,0.303187,0.0163863,0.762283,0.562131,0.340253,0.350986,0.0483163,0.1868,0.0110133,0.878751,0.813288,0.191172,0.527962,0.546612,0.213329,0.897581,0.401053,0.911449,0.409699,0.14719,0.245618,0.360147,0.0405191,0.869491,0.388661,0.758091,0.170679,0.522444,0.806548,0.361402,0.115677,0.136438,0.462955,0.0711543,0.557126,0.16495,0.396487,0.0653754,0.0283784,0.713351,0.858264,0.876937,0.00605446,0.344581,0.809488,0.25246,0.636285,0.120691,0.415458,0.310175,0.924635,0.39599,0.953509,0.00998831,0.790756,0.18756,0.431285,0.975659,0.362494,0.648441,0.501383,0.406083,0.544934,0.262242,0.296483,0.41623,0.510544,0.74729,0.348862,0.929892,0.56751,0.842366,0.837758,0.691342,0.724416,0.870696,0.505437,0.680485,0.464711,0.0561471,0.602301,0.847324,0.3409,0.706863,0.489839,0.541894,0.0665234,0.410249,0.290557,0.0261925,0.303067,0.354544,0.14335,0.281567,0.440252,0.0447543,0.433117,0.470289,0.0314983,0.167758,0.671726,0.988511,0.162342,0.428704,0.0392334,0.632263,0.691696,0.436598,0.552378,0.67613,0.60317,0.655635,0.733878,0.997232,0.546655,0.871912,0.907632,0.338998,0.652941,0.264244,0.235254,0.948909,0.996388,0.539647,0.19592,0.70098,0.402616,0.106441,0.0228066,0.832902,0.862506,0.479242,0.635762,0.308204,0.179127,0.86495,0.758347,0.966482,0.410273,0.0411631,0.804799,0.719001,0.200791,0.182055,0.771084,0.550182,0.813388,0.495161,0.452211,0.134849,0.977083,0.893367,0.588591,0.717657,0.0896381,0.824007,0.395393,0.348731,0.206985,0.754826,0.594661,0.235326,0.833632,0.78119,0.188905,0.182934,0.730167,0.372225,0.834737,0.3713,0.960617,0.521807,0.140367,0.521932,0.4806,0.787591,0.321683,0.146065,0.990595,0.663948,0.976486,0.378356,0.688626,0.671092,0.208622,0.309127,0.513591,0.260772,0.699989,0.00890011,0.849617,0.449389,0.177228,0.911908,0.73932,0.579741,0.208269,0.532599,0.438652,0.0201699,0.819245,0.645889,0.0714783,0.39494,0.604193,0.704463,0.387745,0.509161,0.141585,0.408437,0.342836,0.711084,0.397627,0.629718,0.61901,0.11416,0.0235057,0.0491669,0.367697,0.582933,0.39401,0.203681,0.388717,0.443534,0.79055,0.658712,0.882065,0.430835,0.29605,0.918901,0.56433,0.951968,0.945106,0.605026,0.301985,0.143716,0.0791527,0.0820367,0.0735668,0.0359831,0.723084,0.1369,0.259516,0.673641,0.97794,0.0478851,0.99114,0.267995,0.326914,0.508701,0.629214,0.595553,0.958414,0.913427,0.258266,0.280883,0.310904,0.711063,0.692971,0.303469,0.73319,0.690989,0.661435,0.2639,0.627693,0.176978,0.380295,0.532694,0.520575,0.481361,0.289863,0.281654,0.228431,0.695661,0.829605,0.116209,0.568911,0.801427,0.755187,0.655265,0.969029,0.499922,0.577711,0.420059,0.332484,0.200213,0.437354,0.0495413,0.417016,0.599875,0.222503,0.349381,0.799102,0.803132,0.428434,0.259562,0.242452,0.74547,0.741031,0.492077,0.319485,0.525476,0.226783,0.407144,0.505487,0.248015,0.269339,0.286297,0.851934,0.312289,0.911173,0.866033,0.83621,0.0224305,0.799706,0.46721,0.319502,0.211419,0.662227,0.578399,0.261809,0.562301,0.0632794,0.727127,0.897307,0.315221,0.0741796,0.559854,0.0412094,0.28252,0.15044,0.801784,0.801051,0.494548,0.31249,0.187016,0.0928979,0.887635,0.164126,0.488439,0.996369,0.0280501,0.896697,0.356281,0.460134,0.370925,0.480238,0.933655,0.874601,0.950406,0.0302072,0.43056,0.673985,0.292831,0.117069,0.499002,0.0200099,0.593295,0.763007,0.988413,0.423275,0.294206,0.44816,0.340555,0.119304,0.323408,0.493873,0.531815,0.218384,0.22345,0.997971,0.756693,0.892659,0.245672,0.70506,0.790632,0.590236,0.936298,0.6115,0.51231,0.519096,0.203976,0.813895,0.868227,0.428864,0.726277,0.416944,0.933916,0.11313,0.871716,0.850017,0.864446,0.716226,0.189914,0.188584,0.166664,0.403156,0.296942,0.250928,0.936014,0.467433,0.902098,0.0051837,0.948169,0.35975,0.2164,0.979808,0.823261,0.581066,0.807895,0.827055,0.391384,0.101232,0.651749,0.469302,0.480016,0.443221,0.883754,0.688031,0.429514,0.879583,0.390186,0.73195,0.106008,0.0285566,0.467813,0.41033,0.995711,0.262096,0.225029,0.14914,0.0125,0.585221,0.252981,0.781672,0.763911,0.41564,0.32649,0.030755,0.338657,0.597203,0.286697,0.470788,0.176952,0.140173,0.775504,0.577073,0.341754,0.281697,0.0480994,0.953021,0.432642,0.106301,0.11207,0.353822,0.703998,0.807718,0.0871225,0.293584,0.165922,0.361185,0.380802,0.882295,0.781654,0.986938,0.804414,0.152301,0.29505,0.733095,0.31613,0.704051,0.512886,0.321823,0.683156,0.14481,0.163147,0.378109,0.631781,0.896361,0.793298,0.731093,0.23506,0.374389,0.627189,0.803188,0.127531,0.874456,0.598506,0.239828,0.905344,0.555855,0.270918,0.409949,0.712266,0.760132,0.691719,0.236273,0.707182,0.809596,0.802226,0.175746,0.292545,0.570409,0.131659,0.367063,0.947014,0.0846338,0.194279,0.607016,0.555622,0.822906,0.843864,0.862446,0.670762,0.930451,0.407953,0.882194,0.624223,0.281439,0.476658,0.563218,0.848117,0.661026,0.827043,0.0211333,0.287286,0.573801,0.766115,0.148938,0.449886,0.950923,0.542084,0.0284081,0.9893,0.490078,0.879371,0.487851,0.125964,0.312968,0.334344,0.470428,0.329331,0.702755,0.195126,0.969547,0.579506,0.629355,0.367048,0.406494,0.876465,0.500085,0.743702,0.315811,0.219575,0.36979,0.453027,0.826615,0.492644,0.0608413,0.127113,0.843407,0.787624,0.703331,0.937113,0.437805,0.555906,0.875792,0.58503,0.644578,0.283866,0.529549,0.505853,0.861406,0.162441,0.0315763,0.96114,0.724557,0.535815,0.663987,0.614753,0.122883,0.162856,0.48651,0.316071,0.589842,0.82341,0.443929,0.113591,0.554554,0.709948,0.625498,0.934177,0.26767,0.892909,0.659514,0.491938,0.860167,0.218171,0.456938,0.259249,0.44635,0.965128,0.734404,0.22345,0.426511,0.357788,0.704455,0.406707,0.974964,0.59536,0.492274,0.129059,0.914737,0.173421,0.923591,0.014957,0.929543,0.968727,0.992268,0.849146,0.611006,0.355984,0.800759,0.241512,0.363371,0.422248,0.418687,0.160674,0.178727,0.853368,0.0795671,0.974845,0.989732,0.866923,0.773484,0.636644,0.600142,0.951852,0.268387,0.0828192,0.660839,0.936821,0.825056,0.743885,0.353815,0.405715,0.753259,0.997531,0.0728611,0.547102,0.0877811,0.751319,0.680905,0.355919,0.757249,0.228063,0.767448,0.890563,0.269647,0.591672,0.999419,0.208742,0.586642,0.18766,0.965478,|0.0765551,0.760373,0.274021,0.318524,0.19401,0.191595,0.573408,0.722547,0.889483,0.248031,0.123548,0.563634,0.524734,0.692594,0.0160028,0.975354,0.717688,0.932938,0.964739,0.292407,0.780117,0.496246,0.820125,0.734278,0.495929,0.40951,0.310428,0.233934,0.314612,0.280226,0.103083,0.696089,0.705528,0.914506,0.605331,0.279824,0.618065,0.828023,0.998813,0.471642,0.532987,0.114198,0.71046,0.108654,0.175359,0.314307,0.654306,0.00840688,0.96279,0.706356,0.493955,0.859835,0.158294,0.364615,0.640508,0.457346,0.190431,0.145981,0.687234,0.472881,0.488974,0.0766935,0.236466,0.584001,0.512912,0.223677,0.564408,0.65967,0.0147187,0.545002,0.962364,0.41307,0.394153,0.671413,0.28157,0.966376,0.799105,0.72855,0.967317,0.553444,0.010321,0.486531,0.763523,0.737697,0.397631,0.487197,0.97626,0.113331,0.00208223,0.979649,0.329073,0.261762,0.417051,0.0357218,0.679655,0.707357,0.953788,0.529976,0.936984,0.529276,0.342977,0.366388,0.0905847,0.347031,0.153617,0.283069,0.790041,0.595653,0.513882,0.441188,0.958845,0.267378,0.29106,0.424985,0.635175,0.317187,0.151989,0.936491,0.629446,0.218215,0.565884,0.292789,0.0474016,0.160005,0.75897,0.0243474,0.656749,0.547217,0.192777,0.127271,0.971081,0.111934,0.482633,0.873002,0.873108,0.701478,0.699536,0.626768,0.578098,0.0823261,0.878807,0.298273,0.923274,0.441766,0.601915,0.426211,0.15764,0.856944,0.100123,0.520039,0.354373,0.188211,0.320891,0.0971117,0.426789,0.415402,0.522416,0.0827274,0.558582,0.672604,0.77889,0.723701,0.991833,0.405039,0.404571,0.598026,0.597856,0.744395,0.534706,0.757341,0.41348,0.232071,0.0640939,0.456173,0.412194,0.0834683,0.566476,0.732801,0.542623,0.530376,0.945976,0.132252,0.752978,0.229957,0.739344,0.0807969,0.0797555,0.56008,0.934357,0.0579734,0.675225,0.835501,0.00762898,0.622024,0.437919,0.277343,0.0427529,0.0217392,0.679523,0.307901,0.756916,0.997332,0.909876,0.230608,0.469336,0.585984,0.624831,0.877857,0.543115,0.296729,0.157124,0.607438,0.442993,0.0998653,0.26978,0.20376,0.799132,0.805939,0.053362,0.886675,0.492952,0.225889,0.406933,0.680482,0.266085,0.416744,0.0110646,0.3188,0.209398,0.848739,0.160574,0.571702,0.00167048,0.574518,0.136366,0.11679,0.936634,0.738774,0.992835,0.929828,0.222427,0.827646,0.52772,0.569783,0.441541,0.732828,0.562856,0.139659,0.762123,0.0272139,0.992909,0.964335,0.111981,0.246024,0.841859,0.40753,0.715515,0.444562,0.917906,0.295744,0.734798,0.360018,0.803227,0.563486,0.223603,0.536486,0.515715,0.931026,0.87611,0.300937,0.595955,0.259264,0.27299,0.941155,0.455455,0.085331,0.561188,0.820334,0.272612,0.293746,0.308461,0.165837,0.386861,0.0885726,0.255114,0.868276,0.000718296,0.513262,0.296832,0.745133,0.903591,0.0593832,0.407734,0.218913,0.14194,0.0277936,0.769822,0.61958,0.952744,0.737548,0.0993711,0.528053,0.372192,0.662809,0.0105578,0.30909,0.633679,0.190914,0.29942,0.691156,0.34857,0.468385,0.498748,0.538861,0.61106,0.548703,0.854955,0.269328,0.115517,0.545342,0.268499,0.241964,0.320577,0.991192,0.341763,0.296978,0.612535,0.760165,0.965059,0.409259,0.368855,0.918673,0.528674,0.245868,0.86532,0.0658928,0.144122,0.971806,0.228878,0.138378,0.592572,0.0509831,0.361218,0.903926,0.637127,0.793528,0.228628,0.557446,0.849473,0.485036,0.0115475,0.0900796,0.793896,0.751887,0.581286,0.717671,0.0285652,0.477056,0.636696,0.651183,0.984464,0.318808,0.450647,0.675217,0.995278,0.33187,0.866497,0.562326,0.273423,0.712359,0.336715,0.646467,0.580438,0.451093,0.613973,0.401933,0.534864,0.447642,0.975129,0.269205,0.65477,0.215557,0.652797,0.325447,0.978047,0.674577,0.879148,0.980348,0.861309,0.520733,0.650965,0.703778,0.0662884,0.0867913,0.894887,0.108962,0.753601,0.113357,0.900853,0.84144,0.821762,0.756711,0.903997,0.276359,0.374951,0.00665951,0.870846,0.106842,0.466542,0.455868,0.628391,0.243745,0.904424,0.929977,0.39069,0.154099,0.731445,0.473998,0.930126,0.158404,0.76918,0.246483,0.38831,0.837544,0.288931,0.561513,0.759007,0.0371583,0.891091,0.75117,0.860484,0.264443,0.130193,0.48898,0.520937,0.806451,0.669931,0.881743,0.155685,0.379326,0.840881,0.10286,0.447412,0.196447,0.529253,0.0193307,0.69285,0.40675,0.0428462,0.288827,0.188621,0.999121,0.890352,0.0619645,0.674622,0.757225,0.616506,0.432819,0.742169,0.376764,0.7065,0.415224,0.114762,0.383077,0.049201,0.679375,0.412171,0.182564,0.616589,0.439593,0.276641,0.168909,0.790031,0.628935,0.233278,0.721363,0.094779,0.544263,0.77322,0.132021,0.971334,0.184774,0.585445,0.301391,0.0222648,0.56289,0.633044,0.910788,0.609404,0.0272816,0.694097,0.800326,0.158386,0.709976,0.405767,0.264054,0.161686,0.677065,0.378451,0.100453,0.604127,0.879836,0.371565,0.949854,0.785845,0.527908,0.0657039,0.550043,0.045655,0.615967,0.311848,0.119656,0.31833,0.887588,0.955095,0.385899,0.548141,0.726181,0.523665,0.446813,0.538583,0.813035,0.741576,0.606705,0.325606,0.793189,0.590437,0.279221,0.212461,0.803247,0.455055,0.206092,0.125502,0.766944,0.857447,0.759063,0.29462,0.495322,0.0263643,0.439156,0.164409,0.831775,0.419608,0.368276,0.967042,0.304653,0.125616,0.0303143,0.463792,0.952041,0.78156,0.271348,0.694861,0.802229,0.368257,0.721515,0.128518,0.642923,0.0376751,0.418356,0.602588,0.326255,0.841949,0.120109,0.58961,0.711981,0.669352,0.264011,0.00412869,0.34198,0.0647031,0.863239,0.626673,0.897066,0.505578,0.260871,0.197266,0.97158,0.800631,0.296793,0.7127,0.274458,0.817874,0.7297,0.761072,0.13356,0.728447,0.536944,0.242791,0.811088,0.811802,0.777775,0.285436,0.54219,0.301738,0.642629,0.713799,0.470569,0.891375,0.708111,0.91522,0.179133,0.460482,0.0209926,0.217026,0.651209,0.198978,0.899728,0.271883,0.881867,0.377241,0.891765,0.912431,0.214917,0.355108,0.359457,0.60441,0.781848,0.191716,0.287595,0.508213,0.0754759,0.00202072,0.122974,0.389024,0.629219,0.297075,0.410643,0.719847,0.251641,0.486817,0.571724,0.235736,0.149108,0.0341425,0.59969,0.248985,0.471368,0.828934,0.698775,0.949053,0.94351,0.637061,0.624167,0.524905,0.885154,0.841393,0.983379,0.859653,0.634167,0.438507,0.376804,0.918058,0.894981,0.547537,0.437264,0.346232,0.726007,0.133808,0.300448,0.11583,0.645342,0.947891,0.948669,0.113559,0.560675,0.154473,0.306368,0.296261,0.462405,0.0483445,0.322694,0.265251,0.00743872,0.641834,0.957424,0.46386,0.275863,0.489088,0.0049575,0.0877594,0.684196,0.645419,0.416596,0.185442,0.965942,0.602878,0.705337,0.932634,0.602288,0.137308,0.7949,0.996242,0.207985,0.495815,0.199821,0.119654,0.756279,0.432346,0.549015,0.979924,0.540324,0.291479,0.789745,0.867115,0.791332,0.171374,0.0768812,0.746234,0.885376,0.997714,0.354924,0.834986,0.474489,0.721084,0.145912,0.953373,0.135343,0.11616,0.372355,0.656331,0.0930373,0.37492,0.265938,0.296115,0.0507312,0.850962,0.252575,0.321203,0.422245,0.316416,0.523359,0.819074,0.38453,0.176529,0.859675,0.781603,0.124707,0.924574,0.862239,0.149746,0.225743,0.977518,0.555253,0.380367,0.695925,0.182086,0.910099,0.0803835,0.387113,0.632519,0.703315,0.798409,0.921706,0.0508044,0.277673,0.829775,0.944587,0.171352,0.100159,0.80818,0.729927,0.563685,0.853422,0.546149,0.766208,0.265187,0.733379,0.727149,0.757995,0.508053,0.861598,0.412976,0.304347,0.64286,0.535754,0.622901,0.149173,0.110578,0.815827,0.142499,0.266063,0.901258,0.973405,0.264202,0.905679,0.665183,0.260364,0.945442,0.617923,0.654144,0.601078,0.0982829,0.378808,0.688228,0.16013,0.454823,0.201558,0.306384,0.518627,0.431434,0.790975,0.644277,0.919716,0.768234,0.85515,0.141566,0.819864,0.025958,0.28366,0.264516,0.0361854,0.388422,0.0249497,0.161326,0.0512323,0.743479,0.53231,0.920238,0.758378,0.922874,0.0357857,0.140669,0.0750917,0.194534,0.984758,0.957329,0.147538,0.11311,0.158903,0.0175632,0.298002,0.0280448,0.330844,0.946004,0.928742,0.270438,0.196299,0.565316,0.752471,0.833396,0.398499,0.455375,0.737164,0.374089,0.619675,0.604499,0.434284,0.889963,0.170049,0.18747,0.478553,0.887861,0.271038,0.203533,0.945246,0.628017,0.170343,0.827779,0.491934,0.765118,0.346188,0.928058,0.87055,0.144333,0.299239,0.56302,0.876499,0.613198,0.577353,0.280963,0.339073,0.933581,0.931081,0.897807,0.379609,0.102895,0.401375,0.164506,0.79674,0.500349,0.897274,0.334849,0.247651,0.261098,0.295988,0.770776,0.00537574,0.764621,0.042542,0.345249,0.461261,0.829726,0.136189,0.434505,0.441005,0.668982,0.931107,0.807039,0.545628,0.606348,0.0100359,0.0626578,0.531091,0.590581,0.775466,0.90927,0.208208,0.44683,0.331166,0.818741,0.366539,0.418404,0.844839,0.476558,0.598988,0.897224,0.433006,0.968765,0.38432,0.726878,0.049378,0.396933,0.636991,0.648129,0.283156,0.938255,0.680666,0.820153,0.16504,0.277438,0.157167,0.459517,0.357308,0.400458,0.670929,0.0308876,0.13051,0.469572,0.891737,0.611534,0.221178,0.574059,0.279038,0.417597,0.342628,0.493477,0.361776,0.684417,0.123822,0.544567,0.112823,0.390556,0.107529,0.36623,0.54301,0.833878,0.237448,0.841489,0.537587,0.780633,0.094268,0.270454,0.0520251,0.739282,0.0877493,0.804203,0.553201,0.231028,0.218734,0.486522,0.2168,0.928359,0.799255,0.332647,0.0865037,0.918215,0.424559,0.933594,0.964095,0.0268737,0.212452,0.308847,0.50496,0.885317,0.335001,0.592409,0.657275,0.0844315,0.65864,0.506816,0.08683,0.274526,0.98673,0.338435,0.357603,0.378174,0.913706,0.365846,0.964974,|0.240882,0.22087,0.319671,0.397922,0.973045,0.28228,0.782734,0.877409,0.663781,0.528728,0.731912,0.951919,0.453864,0.170866,0.555735,0.26369,0.180388,0.922037,0.250473,0.771611,0.651277,0.394334,0.827739,0.130174,0.384263,0.795841,0.327043,0.668148,0.721707,0.783625,0.637922,0.316296,0.247191,0.809023,0.798942,0.677406,0.0376784,0.63576,0.829608,0.516459,0.446759,0.720118,0.594505,0.445551,0.136948,0.500613,0.759207,0.79974,0.033692,0.191591,0.669175,0.118436,0.098555,0.468433,0.457557,0.756966,0.321426,0.22052,0.946898,0.721954,0.601121,0.925484,0.366635,0.431253,0.445775,0.633689,0.820187,0.981154,0.781011,0.91995,0.897778,0.227063,0.0710019,0.827675,0.760936,0.797654,0.414764,0.476608,0.721454,0.474324,0.0525476,0.36304,0.00228137,0.279658,0.707155,0.354447,0.781384,0.586948,0.868838,0.604898,0.511555,0.758012,0.0128873,0.765245,0.762391,0.961547,0.789117,0.316187,0.275513,0.946249,0.836855,0.955551,0.317883,0.889292,0.612435,0.400482,0.0815279,0.602051,0.884436,0.714397,0.638511,0.615161,0.201466,0.392108,0.495082,0.41585,0.868803,0.74703,0.0473617,0.50134,0.516763,0.310923,0.308958,0.833921,0.483995,0.717135,0.295,0.183883,0.40516,0.113329,0.602726,0.0891756,0.697508,0.337274,0.9246,0.387237,0.423008,0.29129,0.921573,0.861713,0.832611,0.961885,0.138609,0.0668832,0.0875617,0.612379,0.550698,0.825508,0.781871,0.619688,0.818159,0.888689,0.682443,0.366027,0.448874,0.731363,0.611122,0.373178,0.781249,0.340782,0.678813,0.637528,0.182116,0.582174,0.365436,0.0623158,0.234123,0.914348,0.333798,0.188999,0.732198,0.483173,0.215671,0.0420761,0.0572973,0.0588028,0.152309,0.138763,0.641416,0.115185,0.971766,0.268524,0.852301,0.793434,0.724092,0.591097,0.174073,0.561748,0.852055,0.168598,0.335558,0.519286,0.19589,0.178609,0.322682,0.0557721,0.373891,0.74372,0.817017,0.560031,0.148006,0.994744,0.601374,0.114032,0.928957,0.0286269,0.265162,0.306392,0.157651,0.260245,0.41031,0.143179,0.506099,0.514314,0.401841,0.615993,0.0465784,0.619925,0.283967,0.965801,0.241528,0.855089,0.773415,0.506667,0.131591,0.920928,0.145156,0.859683,0.815759,0.159972,0.0488616,0.946871,0.184394,0.195563,0.060329,0.863645,0.741116,0.236119,0.0122127,0.0749218,0.682421,0.469741,0.499161,0.845306,0.588605,0.491065,0.043364,0.440683,0.250972,0.13607,0.0950906,0.628724,0.390769,0.0973881,0.919137,0.88221,0.37266,0.664909,0.148513,0.0988122,0.90549,0.407636,0.419462,0.0965923,0.212461,0.789855,0.963129,0.220636,0.812455,0.53891,0.977335,0.819731,0.238392,0.741864,0.832869,0.906856,0.586991,0.867322,0.845693,0.947098,0.480558,0.414596,0.433765,0.819963,0.292054,0.919317,0.973031,0.583428,0.881274,0.325221,0.0978742,0.965842,0.741953,0.0281063,0.510433,0.30833,0.0317534,0.580404,0.109671,0.402666,0.0767574,0.807445,0.155281,0.118081,0.0433115,0.785233,0.842404,0.513277,0.594546,0.952317,0.373395,0.775191,0.53658,0.111818,0.142637,0.341563,0.0486892,0.141595,0.891832,0.303885,0.876303,0.189094,0.225613,0.553558,0.390541,0.266223,0.496993,0.0974268,0.689946,0.924555,0.787973,0.676824,0.0304351,0.574546,0.828247,0.294576,0.189349,0.643202,0.478246,0.964917,0.672754,0.999146,0.289047,0.7292,0.0260385,0.516808,0.509716,0.368907,0.842445,0.0184526,0.0917837,0.670811,0.810003,0.156457,0.667768,0.351855,0.884809,0.22425,0.558455,0.873782,0.431489,0.967446,0.903233,0.130545,0.369285,0.562732,0.500103,0.207903,0.790263,0.540898,0.174629,0.00311571,0.402432,0.0142704,0.578726,0.0979736,0.463416,0.9773,0.0563653,0.548189,0.536172,0.71672,0.947263,0.010181,0.528307,0.513444,0.0727986,0.780985,0.656989,0.888282,0.367944,0.955171,0.557205,0.971422,0.497658,0.952309,0.761653,0.55603,0.411369,0.740217,0.83481,0.777754,0.690634,0.694777,0.679829,0.515518,0.207068,0.634841,0.590007,0.968949,0.0663497,0.735827,0.691885,0.898685,0.484452,0.054684,0.360275,0.675706,0.920115,0.299378,0.630873,0.216838,0.834339,0.718638,0.770087,0.913034,0.423477,0.750616,0.744871,0.881323,0.867403,0.164552,0.429773,0.373769,0.251132,0.20782,0.923553,0.575977,0.0912067,0.981721,0.153247,0.801878,0.794997,0.253229,0.814577,0.558975,0.26764,0.581425,0.611707,0.210211,0.935538,0.92211,0.307329,0.854111,0.449713,0.596337,0.348303,0.18934,0.444546,0.46568,0.293467,0.831084,0.675835,0.0116798,0.332911,0.789219,0.60306,0.132465,0.893694,0.0640441,0.476114,0.0227829,0.383781,0.81152,0.303722,0.676,0.0127406,0.259515,0.112631,0.145553,0.121162,0.610826,0.39927,0.623572,0.606178,0.353568,0.31307,0.446087,0.810216,0.142071,0.332264,0.702854,0.637478,0.070328,0.892896,0.783506,0.633216,0.929291,0.666509,0.371377,0.502183,0.0824575,0.30127,0.137606,0.0778914,0.804571,0.384197,0.86753,0.20084,0.0137857,0.62776,0.17644,0.438904,0.982637,0.700375,0.950981,0.546175,0.161107,0.644808,0.959113,0.345534,0.480695,0.55013,0.0393156,0.812378,0.435833,0.324531,0.0478358,0.188522,0.493377,0.902702,0.943091,0.29572,0.503401,0.720904,0.857705,0.459112,0.179626,0.080626,0.524622,0.279786,0.461828,0.573933,0.687734,0.820005,0.0270588,0.899176,0.64196,0.29266,0.172017,0.513432,0.848925,0.660288,0.278183,0.114769,0.35736,0.374181,0.0245456,0.0924753,0.481462,0.116919,0.904195,0.389636,0.308745,0.958465,0.346755,0.83937,0.491622,0.393562,0.167664,0.0151273,0.186458,0.532749,0.241497,0.445283,0.749497,0.349657,0.913636,0.398556,0.687927,0.16765,0.259756,0.592177,0.548225,0.798319,0.185235,0.743563,0.33485,0.986012,0.0913076,0.387188,0.466831,0.89398,0.672987,0.359554,0.634963,0.476164,0.00959808,0.807056,0.612115,0.723269,0.968684,0.068881,0.431844,0.712796,0.0543247,0.786464,0.718519,0.585396,0.0457345,0.310813,0.434099,0.968979,0.6482,0.152122,0.573699,0.704423,0.479494,0.609024,0.790243,0.452885,0.494236,0.334086,0.490193,0.421777,0.878514,0.30757,0.12003,0.550021,0.346108,0.045923,0.297755,0.982813,0.626662,0.498593,0.897357,0.967649,0.352685,0.152919,0.861066,0.44662,0.391726,0.900952,0.964521,0.974043,0.369928,0.210261,0.849835,0.587982,0.868386,0.988526,0.319477,0.337256,0.610262,0.671718,0.357474,0.709083,0.27543,0.787848,0.394907,0.468809,0.452015,0.547832,0.0388644,0.0449769,0.270003,0.456616,0.969473,0.622806,0.212811,0.844982,0.825061,0.364765,0.891917,0.866758,0.217213,0.413671,0.0665538,0.45809,0.876853,0.412113,0.701715,0.315765,0.364238,0.278349,0.695625,0.611913,0.592871,0.0822918,0.0737341,0.441912,0.370994,0.737225,0.443285,0.0167669,0.594164,0.721207,0.515678,0.607877,0.0780994,0.474874,0.693507,0.965928,0.0293936,0.0646588,0.949938,0.983159,0.485239,0.84059,0.760758,0.430538,0.719674,0.0103845,0.535623,0.359006,0.399838,0.679398,0.860587,0.597331,0.379831,0.422489,0.288409,0.00594151,0.165647,0.901473,0.652358,0.53366,0.995087,0.388844,0.139801,0.256704,0.724959,0.117093,0.63063,0.33852,0.617491,0.724829,0.910596,0.00239873,0.754704,0.216683,0.732488,0.777538,0.285965,0.648284,0.213718,0.126912,0.208338,0.729419,0.484793,0.422668,0.410174,0.944822,0.418066,0.933299,0.210107,0.503761,0.183164,0.154429,0.611756,0.0804452,0.993532,0.495348,0.0128685,0.125578,0.753568,0.851711,0.51389,0.940404,0.37708,0.866241,0.464041,0.329127,0.490323,0.217805,0.92317,0.800525,0.0905126,0.354414,0.368087,0.655752,0.165285,0.207532,0.528043,0.119181,0.00779349,0.886055,0.91873,0.0701679,0.14721,0.9702,0.382161,0.580913,0.672805,0.393061,0.0622909,0.652622,0.763279,0.193904,0.328037,0.0616109,0.411267,0.451026,0.113486,0.61076,0.13565,0.860435,0.0984297,0.945842,0.71896,0.52162,0.583505,0.646872,0.335063,0.937406,0.503938,0.322582,0.641042,0.0404683,0.0365406,0.591808,0.229927,0.789166,0.292314,0.161403,0.459707,0.529582,0.242879,0.781468,0.0597695,0.952841,0.940175,0.417282,0.127348,0.73879,0.681405,0.734458,0.895939,0.0122703,0.110964,0.46639,0.605232,0.262583,0.283579,0.567327,0.148635,0.474706,0.39864,0.605046,0.415559,0.338317,0.0147402,0.898155,0.544758,0.975334,0.747523,0.204046,0.342169,0.631329,0.0802016,0.442105,0.628998,0.505734,0.64956,0.228654,0.455769,0.548852,0.773229,0.49707,0.841873,0.251171,0.852684,0.508972,0.789664,0.654855,0.755653,0.689194,0.213104,0.917587,0.85689,0.243331,0.949464,0.679769,0.762955,0.278845,0.80868,0.45095,0.997229,0.825087,0.271495,0.168693,0.23144,0.639807,0.277094,0.782981,0.435179,0.405646,0.491025,0.992439,0.880904,0.307446,0.0857881,0.266923,0.819866,0.576959,0.704278,0.653534,0.339685,0.774641,0.0888532,0.0615224,0.896298,0.0333983,0.370262,0.103345,0.576204,0.00301814,0.674569,0.355528,0.603151,0.0708057,0.994451,0.0820667,0.564383,0.186302,0.0923501,0.966569,0.924392,0.125091,0.273864,0.140697,0.171604,0.629138,0.937163,0.33543,0.0265925,0.290843,0.687939,0.258444,0.740646,0.0876443,0.909337,0.718414,0.420356,0.223717,0.94858,0.58743,0.672754,0.485479,0.175417,0.0715283,0.544051,0.889736,0.592778,0.197598,0.256218,0.610859,0.555245,0.488613,0.125563,0.706199,0.47224,0.618499,0.533162,0.2049,0.185671,0.620997,0.869674,0.912546,0.209311,0.880925,0.254117,0.722536,0.33389,0.0764655,0.753759,0.519718,0.0913466,0.332868,0.42713,0.031862,0.889495,0.729307,0.74608,0.000986934,0.0705559,0.698639,0.295941,0.106892,0.631134,0.85021,0.781343,0.33584,0.880605,0.0406297,0.966358,0.792787,0.0676831,0.696341,0.440973,|0.245169,0.629459,0.245453,0.201146,0.879375,0.31466,0.750019,0.291023,0.82071,0.826705,0.682108,0.126129,0.880343,0.695477,0.266338,0.657579,0.898298,0.982004,0.189349,0.941948,0.694937,0.975304,0.753498,0.567304,0.617926,0.0865837,0.641664,0.738741,0.5216,0.325082,0.477777,0.103066,0.13773,0.971888,0.837999,0.179743,0.0282609,0.707187,0.154234,0.285718,0.584078,0.909849,0.770086,0.664511,0.435501,0.76602,0.163456,0.834093,0.509733,0.921401,0.252675,0.347421,0.854621,0.951431,0.548473,0.408812,0.370646,0.403029,0.704079,0.814455,0.743233,0.00456613,0.8982,0.465723,0.336036,0.326223,0.157102,0.249833,0.48521,0.913905,0.718234,0.215608,0.990257,0.352764,0.964413,0.831588,0.742708,0.570449,0.625162,0.355649,0.549495,0.659875,0.851566,0.838355,0.469383,0.873235,0.627202,0.811346,0.736609,0.720036,0.691273,0.380853,0.239558,0.30983,0.859102,0.391715,0.295486,0.355639,0.758201,0.31662,0.486449,0.978203,0.76884,0.146784,0.0122917,0.00041467,0.439553,0.548567,0.086858,0.752429,0.837289,0.379292,0.578613,0.00320452,0.745924,0.063869,0.285174,0.546355,0.23335,0.148322,0.871604,0.397095,0.652773,0.715759,0.132601,0.0939445,0.88572,0.223324,0.985673,0.678682,0.28521,0.65162,0.58271,0.864815,0.510094,0.404975,0.274393,0.991333,0.391111,0.158508,0.771873,0.602409,0.936646,0.657573,0.123362,0.881452,0.0353397,0.350349,0.723966,0.949936,0.118772,0.619904,0.844141,0.590366,0.386597,0.0945118,0.147088,0.235721,0.420099,0.11323,0.121778,0.270013,0.535946,0.950742,0.660775,0.234738,0.0608411,0.587375,0.93677,0.379134,0.940979,0.659724,0.283989,0.989387,0.540768,0.40042,0.148353,0.921816,0.697552,0.917682,0.282105,0.764386,0.188289,0.377719,0.447267,0.557357,0.235523,0.756416,0.822795,0.503965,0.922775,0.960931,0.0554767,0.289446,0.652752,0.360293,0.549314,0.220579,0.588453,0.73314,0.947728,0.264668,0.631908,0.817978,0.925312,0.551571,0.671167,0.445004,0.50212,0.900716,0.806262,0.220437,0.691274,0.885284,0.186758,0.422502,0.991962,0.946519,0.346662,0.207753,0.742437,0.109176,0.222768,0.58054,0.772368,0.623554,0.730553,0.855855,0.760376,0.427949,0.324781,0.0830365,0.960043,0.311876,0.45763,0.292393,0.378697,0.890953,0.548016,0.191702,0.24923,0.19154,0.774061,0.283907,0.875248,0.982651,0.435149,0.668633,0.91188,0.0535843,0.792903,0.744796,0.740042,0.2264,0.441056,0.547434,0.283691,0.200865,0.243527,0.567524,0.952007,0.902737,0.402647,0.750458,0.911565,0.771234,0.63587,0.816376,0.670841,0.161684,0.67802,0.935946,0.639813,0.807667,0.0205563,0.76698,0.680024,0.580383,0.119177,0.758422,0.803931,0.811856,0.209951,0.12226,0.622908,0.155832,0.622486,0.763088,0.541257,0.107213,0.328105,0.209698,0.54191,0.497648,0.0531251,0.55023,0.770568,0.256047,0.648867,0.677112,0.379202,0.0218206,0.254336,0.746101,0.753795,0.270231,0.157476,0.0309345,0.548959,0.141371,0.547214,0.933887,0.375273,0.316237,0.9446,0.34473,0.701952,0.0842693,0.0942934,0.238804,0.248243,0.424004,0.459532,0.809349,0.278499,0.511331,0.990558,0.542149,0.609571,0.00732112,0.286461,0.884438,0.0930543,0.928654,0.361833,0.943619,0.498266,0.520629,0.975941,0.815478,0.16956,0.575589,0.355155,0.145889,0.200419,0.175313,0.562711,0.207615,0.649055,0.331146,0.824782,0.875499,0.744139,0.42779,0.166286,0.807147,0.24057,0.60518,0.354945,0.66912,0.529707,0.592095,0.867201,0.793559,0.855128,0.92365,0.783628,0.979377,0.77654,0.457902,0.182615,0.550781,0.978312,0.919482,0.688863,0.0413218,0.151806,0.539089,0.788206,0.586084,0.499255,0.608495,0.631473,0.467156,0.313971,0.123653,0.860121,0.986803,0.800542,0.70008,0.774589,0.318048,0.361521,0.858527,0.608562,0.92261,0.839207,0.881593,0.190004,0.342741,0.955217,0.76954,0.788075,0.324649,0.512154,0.679454,0.272472,0.480152,0.955523,0.0546547,0.364692,0.673058,0.786645,0.18634,0.993209,0.692825,0.634102,0.453394,0.952933,0.24403,0.931804,0.00961429,0.514803,0.467052,0.164719,0.0685596,0.165367,0.24739,0.286337,0.0412526,0.409049,0.578163,0.115735,0.0342622,0.0669261,0.291345,0.0096224,0.200826,0.210852,0.862741,0.86031,0.802282,0.457083,0.444225,0.0851889,0.340101,0.934311,0.218274,0.117781,0.0522642,0.97897,0.863876,0.430225,0.852967,0.576918,0.00162441,0.142602,0.734481,0.656718,0.5959,0.349478,0.547171,0.354087,0.506365,0.961134,0.395936,0.484456,0.516246,0.390072,0.0382103,0.33656,0.621019,0.785661,0.94656,0.174581,0.747145,0.33158,0.983562,0.36615,0.443208,0.744416,0.737853,0.751535,0.546736,0.883531,0.097463,0.432645,0.492091,0.153433,0.183267,0.990712,0.279519,0.481169,0.222483,0.650853,0.72241,0.906333,0.266642,0.415785,0.325452,0.878549,0.198788,0.326224,0.742607,0.993121,0.583424,0.579779,0.0911654,0.35244,0.951249,0.96659,0.0805789,0.934308,0.565792,0.39684,0.782476,0.145569,0.499021,0.431606,0.744465,0.351726,0.776564,0.705308,0.213824,0.00843191,0.687052,0.251538,0.772247,0.466614,0.64451,0.570283,0.598186,0.80338,0.765315,0.489879,0.15291,0.0750483,0.958081,0.20523,0.385558,0.787638,0.661987,0.517735,0.283214,0.844228,0.814228,0.153765,0.650225,0.132462,0.0989153,0.684266,0.514768,0.369034,0.792613,0.172787,0.17728,0.812963,0.248872,0.166322,0.699254,0.31798,0.334663,0.226201,0.481602,0.7562,0.904237,0.367403,0.42108,0.563608,0.215654,0.264391,0.952702,0.782854,0.688949,0.950439,0.723079,0.663775,0.729236,0.619152,0.948418,0.857718,0.796063,0.463694,0.293076,0.892515,0.5715,0.816269,0.460866,0.924471,0.893501,0.0198313,0.155239,0.0596321,0.753753,0.770999,0.903007,0.711551,0.772488,0.158272,0.95852,0.728416,0.488087,0.512252,0.420071,0.936601,0.719853,0.362007,0.519093,0.195129,0.644171,0.363496,0.801023,0.663123,0.984107,0.515091,0.142778,0.224033,0.386813,0.216289,0.902151,0.313057,0.85719,0.598156,0.211833,0.240212,0.995324,0.353411,0.538512,0.899517,0.971711,0.482662,0.671419,0.110748,0.595672,0.377442,0.876613,0.298431,0.572668,0.471018,0.896873,0.401485,0.936495,0.314484,0.135595,0.504181,0.0887651,0.0194507,0.326492,0.336411,0.442723,0.366254,0.382668,0.142006,0.0414088,0.179244,0.382268,0.132206,0.192503,0.95281,0.111981,0.920781,0.028468,0.207005,0.179223,0.056285,0.893184,0.483705,0.322163,0.575602,0.107281,0.424038,0.127275,0.940528,0.695575,0.272991,0.371777,0.631208,0.0381785,0.458157,0.444571,0.612896,0.658695,0.332667,0.852382,0.889751,0.0564453,0.867103,0.59801,0.402118,0.722008,0.0988511,0.745719,0.0754388,0.499679,0.73553,0.35083,0.939078,0.991996,0.775771,0.696827,0.367657,0.700927,0.319931,0.954293,0.0589158,0.0535501,0.021666,0.273839,0.0279765,0.0981669,0.294059,0.788202,0.687064,0.666459,0.867388,0.483085,0.270606,0.0666372,0.906242,0.210494,0.460402,0.896749,0.0508173,0.468214,0.332353,0.596575,0.739642,0.781814,0.662805,0.92929,0.276477,0.995808,0.890351,0.586012,0.979044,0.859013,0.243354,0.201989,0.0385251,0.544159,0.465884,0.0933951,0.907063,0.634539,0.843824,0.687024,0.480657,0.0727607,0.863113,0.242141,0.329722,0.503752,0.332571,0.386308,0.0900877,0.711618,0.0279685,0.74188,0.69916,0.178279,0.698803,0.0657257,0.265174,0.0773808,0.402368,0.683976,0.226371,0.305162,0.409425,0.456111,0.809907,0.725627,0.933547,0.0350344,0.986578,0.372387,0.188412,0.700163,0.406061,0.713751,0.79998,0.863393,0.644923,0.948251,0.122662,0.877752,0.871501,0.370282,0.675806,0.461784,0.602657,0.955659,0.394723,0.224226,0.0579712,0.875587,0.332771,0.398369,0.102542,0.880203,0.752008,0.188488,0.591486,0.926466,0.31655,0.900508,0.790027,0.0383992,0.903811,0.825262,0.61419,0.473903,0.363847,0.748363,0.207998,0.155026,0.65805,0.39369,0.50428,0.294957,0.0220999,0.915359,0.913109,0.525891,0.73745,0.816269,0.852467,0.941197,0.491129,0.691186,0.85296,0.0721823,0.755162,0.999757,0.518887,0.956454,0.942728,0.464536,0.848035,0.635759,0.831032,0.442759,0.867884,0.373552,0.127329,0.181913,0.489597,0.607344,0.0316834,0.543825,0.0997459,0.65505,0.809636,0.121149,0.47744,0.981435,0.0453963,0.294366,0.711113,0.15459,0.176115,0.974401,0.513742,0.301063,0.79317,0.76996,0.267282,0.855519,0.402502,0.425659,0.0523396,0.335059,0.978607,0.59925,0.287243,0.802635,0.796263,0.287111,0.896384,0.982804,0.593181,0.780501,0.788566,0.322204,0.692376,0.0986177,0.484235,0.905369,0.341967,0.246448,0.833494,0.249192,0.904721,0.228337,0.214853,0.559435,0.914494,0.497693,0.0856451,0.852425,0.0246295,0.920572,0.28477,0.884119,0.306119,0.318381,0.256868,0.318284,0.326323,0.0368421,0.233304,0.535791,0.66325,0.814248,0.443776,0.993198,0.393179,0.0376247,0.370248,0.265553,0.326621,0.353919,0.186115,0.0471603,0.871711,0.311159,0.332664,0.226402,0.364973,0.118876,0.242891,0.616884,0.144185,0.400428,0.149271,0.317487,0.734156,0.509426,0.723842,0.368165,0.0853943,0.22566,0.56969,0.393416,0.125067,0.144707,0.0600985,0.711865,0.945265,0.447214,0.792469,0.421166,0.0264486,0.536957,0.359156,0.151579,0.305294,0.142526,0.12909,0.0472462,0.784422,0.294733,0.238479,0.732772,0.326998,0.13813,0.812561,0.637026,0.764947,0.135247,0.935629,0.484264,0.823877,0.25109,0.164602,0.378837,0.471066,0.847423,0.0944965,0.446278,0.104999,0.795288,0.723068,0.235154,0.676737,0.838045,0.12839,0.753575,0.13039,0.88401,0.467585,0.868801,0.0122439,0.660458,0.308826,0.325604,0.0662372,0.563769,0.26974,0.553569,|0.314372,0.891993,0.532457,0.469341,0.600986,0.436647,0.463205,0.687262,0.487049,0.730869,0.0440934,0.722213,0.943739,0.458576,0.213252,0.820169,0.254375,0.658801,0.142228,0.145624,0.340624,0.208657,0.927866,0.209224,0.184839,0.223476,0.355744,0.166555,0.117421,0.876628,0.374495,0.128104,0.0480441,0.772195,0.301276,0.412675,0.691808,0.93821,0.36244,0.431528,0.209376,0.807424,0.790059,0.746346,0.354841,0.103334,0.198874,0.824471,0.494547,0.507513,0.0297573,0.0999449,0.446329,0.977027,0.319702,0.28169,0.305482,0.780725,0.558571,0.670337,0.872198,0.1885,0.99565,0.628154,0.0729073,0.5271,0.230237,0.310675,0.0226389,0.3647,0.299387,0.475663,0.852077,0.672746,0.380803,0.601003,0.778111,0.306698,0.542505,0.805431,0.871805,0.601034,0.506658,0.550543,0.922244,0.956245,0.937083,0.615521,0.299878,0.0184531,0.126016,0.891136,0.544329,0.898527,0.981081,0.566777,0.562876,0.276849,0.65512,0.303259,0.375207,0.564513,0.708631,0.0729677,0.645159,0.867976,0.871424,0.224529,0.649346,0.176604,0.845828,0.247854,0.372232,0.39471,0.59418,0.0330076,0.0481752,0.00279802,0.0676025,0.440003,0.727283,0.44894,0.0509648,0.108701,0.784587,0.20276,0.900432,0.379666,0.28862,0.39117,0.255302,0.91814,0.122459,0.0179313,0.161727,0.0453481,0.447861,0.333933,0.882079,0.203994,0.600231,0.246864,0.404336,0.995916,0.473988,0.196219,0.201473,0.834169,0.946413,0.406556,0.243473,0.536509,0.902572,0.702516,0.246,0.726423,0.684435,0.694152,0.834346,0.486502,0.626398,0.707222,0.487524,0.363918,0.384195,0.59253,0.860665,0.433846,0.372513,0.889213,0.929923,0.860928,0.0609942,0.344234,0.584025,0.113848,0.429006,0.674354,0.589345,0.647177,0.623624,0.27767,0.0266207,0.222374,0.144815,0.0637609,0.742692,0.743063,0.240305,0.638292,0.302388,0.472851,0.184884,0.594177,0.880727,0.521892,0.859498,0.852999,0.387811,0.728699,0.315275,0.482725,0.535794,0.725595,0.615876,0.332813,0.560871,0.233681,0.47246,0.255338,0.286355,0.336423,0.858414,0.163038,0.972877,0.786072,0.783317,0.025176,0.290227,0.411518,0.516033,0.676781,0.837526,0.233568,0.16543,0.867881,0.246617,0.866423,0.832163,0.733774,0.715452,0.1267,0.977273,0.872778,0.7909,0.269237,0.676599,0.288418,0.668602,0.797153,0.619141,0.559506,0.292632,0.621681,0.948014,0.635697,0.785749,0.274147,0.798211,0.194651,0.239779,0.73215,0.836515,0.789265,0.89766,0.708553,0.62287,0.32833,0.578251,0.0751933,0.472402,0.867277,0.850384,0.799941,0.45839,0.838488,0.632678,0.173744,0.604484,0.447601,0.219243,0.269271,0.528435,0.954114,0.115113,0.348204,0.301966,0.0170908,0.573191,0.0500172,0.888954,0.0285269,0.313131,0.0275893,0.548543,0.949924,0.638152,0.509795,0.816556,0.0722791,0.954378,0.912935,0.223265,0.343822,0.506037,0.400178,0.624829,0.61679,0.478697,0.164202,0.454276,0.207088,0.344211,0.184248,0.0852674,0.63599,0.505801,0.529131,0.607302,0.278541,0.746016,0.758361,0.586388,0.865935,0.203314,0.878125,0.594553,0.688284,0.17828,0.481444,0.0652189,0.448081,0.589216,0.89467,0.950585,0.984721,0.319493,0.526676,0.79064,0.6026,0.00355113,0.817653,0.476447,0.37437,0.976346,0.834455,0.377458,0.861096,0.166563,0.339102,0.0349388,0.332165,0.269352,0.643298,0.145368,0.864335,0.781191,0.847929,0.0451264,0.234626,0.0965838,0.343257,0.880576,0.752651,0.440012,0.790096,0.226222,0.742668,0.565493,0.353735,0.48934,0.0674389,0.590512,0.78804,0.941682,0.100095,0.549746,0.888163,0.956814,0.726095,0.102531,0.624426,0.431243,0.63526,0.951328,0.334031,0.259466,0.206657,0.27514,0.8166,0.946191,0.480981,0.144112,0.232868,0.702122,0.613083,0.730283,0.844932,0.948934,0.101194,0.294723,0.773992,0.771161,0.992603,0.931838,0.733472,0.631159,0.772569,0.215318,0.0957295,0.54483,0.633389,0.79742,0.311897,0.447736,0.861465,0.652844,0.492482,0.363447,0.559585,0.267807,0.650707,0.0269717,0.904855,0.951851,0.657757,0.738466,0.391481,0.568819,0.635303,0.532276,0.487601,0.815342,0.582324,0.989891,0.0614746,0.776473,0.422406,0.687784,0.00475478,0.602091,0.43689,0.254252,0.963846,0.0361939,0.838311,0.413722,0.147401,0.252902,0.564673,0.645304,0.85045,0.171036,0.443564,0.79535,0.121107,0.747393,0.688501,0.569524,0.780048,0.677133,0.726356,0.677887,0.29167,0.310088,0.390526,0.010188,0.251006,0.478806,0.542241,0.0225525,0.889742,0.494047,0.908982,0.812735,0.484314,0.510861,0.0513898,0.185164,0.922485,0.688934,0.618099,0.225375,0.902947,0.695048,0.596758,0.00841993,0.653694,0.992143,0.0226852,0.45136,0.947895,0.488868,0.806512,0.101342,0.530878,0.670932,0.463632,0.205884,0.917238,0.160146,0.811179,0.723158,0.885215,0.970926,0.109118,0.360447,0.998081,0.940546,0.87452,0.378119,0.390114,0.428326,0.473952,0.866818,0.864539,0.586686,0.72317,0.723446,0.95848,0.906815,0.832455,0.0629554,0.406466,0.325611,0.978593,0.917119,0.751943,0.966803,0.708062,0.947276,0.476061,0.242461,0.84415,0.927946,0.598316,0.428123,0.0722362,0.467755,0.347934,0.980011,0.00313127,0.449993,0.774547,0.475991,0.935199,0.147323,0.385556,0.180502,0.960537,0.713701,0.743976,0.467473,0.777649,0.166404,0.744852,0.51997,0.882087,0.470894,0.504266,0.0742201,0.768913,0.4042,0.495745,0.833472,0.983463,0.439493,0.80528,0.774569,0.22256,0.12439,0.702399,0.806587,0.994764,0.744361,0.180001,0.756023,0.625023,0.496342,0.0421687,0.905273,0.839013,0.718671,0.90001,0.426985,0.536711,0.502464,0.792313,0.0450507,0.297325,0.589073,0.0780507,0.223954,0.406818,0.919572,0.27712,0.659563,0.368351,0.157495,0.762333,0.849356,0.324696,0.393126,0.287929,0.712262,0.390394,0.342548,0.712568,0.803247,0.0419179,0.545182,0.172745,0.319151,0.0536637,0.460368,0.211783,0.549887,0.969901,0.0856235,0.62954,0.687656,0.365582,0.0751494,0.533454,0.608627,0.97976,0.939116,0.726551,0.85614,0.373356,0.486313,0.176122,0.0596915,0.079576,0.649035,0.0333125,0.50563,0.583635,0.630643,0.68855,0.241882,0.362595,0.545416,0.790532,0.086845,0.54584,0.129696,0.159792,0.85978,0.264056,0.313515,0.0961086,0.575503,0.231928,0.411166,0.060799,0.0628231,0.13642,0.975046,0.319959,0.760994,0.977729,0.439026,0.070043,0.584833,0.0131086,0.763324,0.148815,0.192491,0.186047,0.132844,0.903191,0.28715,0.282169,0.234427,0.332113,0.538684,0.530514,0.218467,0.562467,0.725837,0.184408,0.276439,0.531307,0.166037,0.152897,0.349811,0.883794,0.47021,0.9491,0.210828,0.599587,0.449332,0.79716,0.625148,0.627645,0.652059,0.923889,0.894619,0.865306,0.630802,0.677567,0.0788601,0.868113,0.606499,0.82047,0.62894,0.624101,0.977128,0.708682,0.579855,0.13273,0.280997,0.426515,0.364073,0.188801,0.707527,0.940859,0.408998,0.657984,0.105128,0.544836,0.702972,0.0263365,0.459773,0.682595,0.364733,0.118105,0.643879,0.143878,0.652491,0.604541,0.44534,0.0826977,0.572751,0.671763,0.623084,0.730734,0.39576,0.570342,0.630568,0.314663,0.639122,0.0373492,0.0632519,0.954091,0.758755,0.599815,0.990608,0.637616,0.0112453,0.389606,0.665354,0.933625,0.829073,0.636825,0.298996,0.268972,0.983736,0.159145,0.561971,0.78298,0.699298,0.747111,0.713222,0.172497,0.209897,0.657014,0.243442,0.139918,0.555875,0.923156,0.518764,0.891649,0.299609,0.679489,0.959113,0.023857,0.582481,0.398428,0.956972,0.160061,0.827568,0.881726,0.899196,0.254845,0.424719,0.278642,0.0116121,0.866342,0.736307,0.585819,0.846404,0.380094,0.036037,0.193144,0.454657,0.491542,0.543004,0.921918,0.855128,0.175613,0.279528,0.346358,0.64689,0.112085,0.719858,0.671881,0.272735,0.625006,0.0376558,0.0478274,0.0548084,0.347667,0.333539,0.530836,0.514141,0.101691,0.871655,0.914021,0.330818,0.826057,0.847678,0.408218,0.983126,0.976876,0.633175,0.675209,0.932603,0.203827,0.458328,0.00548226,0.761925,0.22708,0.970005,0.0106406,0.65375,0.186904,0.202338,0.0566557,0.0150696,0.294,0.623192,0.477226,0.0933092,0.594157,0.193797,0.186274,0.246125,0.238633,0.488561,0.637856,0.753527,0.18566,0.85029,0.519439,0.740807,0.409069,0.231211,0.516325,0.0640345,0.10203,0.645691,0.578284,0.10804,0.212127,0.274169,0.436182,0.300611,0.841908,0.138835,0.167648,0.986583,0.631456,0.359891,0.239846,0.255214,0.689141,0.27293,0.575408,0.987216,0.483979,0.698348,0.0088321,0.674974,0.841002,0.10524,0.947735,0.410498,0.321951,0.416732,0.524013,0.356738,0.940452,0.114532,0.854294,0.278585,0.80763,0.19249,0.45514,0.524015,0.0278915,0.119221,0.19465,0.679169,0.0800874,0.78615,0.540664,0.692685,0.0367047,0.139024,0.226445,0.679578,0.239656,0.600546,0.807849,0.735684,0.626046,0.247792,0.274708,0.798461,0.847085,0.447912,0.629153,0.23143,0.475037,0.697918,0.454056,0.564549,0.82491,0.939417,0.196572,0.753621,0.531964,0.28544,0.789043,0.565501,0.167757,0.777564,0.135641,0.143526,0.332197,0.204575,0.576084,0.257203,0.386412,0.0644326,0.339032,0.617952,0.0995009,0.219543,0.419045,0.60416,0.034935,0.767504,0.611313,0.0374452,0.853913,0.736658,0.0534549,0.924213,0.113501,0.568145,0.797662,0.882178,0.60582,0.237878,0.336367,0.559582,0.0865388,0.895191,0.661194,0.721248,0.855722,0.734998,0.833308,0.808889,0.108593,0.656345,0.745682,0.360554,0.19354,0.748587,0.267671,0.0642592,0.249104,0.589853,0.388676,0.564651,0.0831464,0.096505,0.129827,0.562859,0.539018,0.564618,0.683059,0.232124,0.366697,0.447877,0.391728,0.950119,0.109615,0.475926,0.401877,0.210906,0.838632,0.320195,0.152818,0.421657,0.680278,|0.580284,0.845688,0.789317,0.515522,0.507508,0.937133,0.921293,0.913006,0.515907,0.53689,0.177096,0.632119,0.101422,0.639847,0.56062,0.965106,0.283125,0.266917,0.208044,0.658989,0.340738,0.0230296,0.742694,0.669212,0.36556,0.222455,0.146673,0.176066,0.958273,0.498118,0.735591,0.880341,0.398934,0.209142,0.741242,0.537308,0.569923,0.662142,0.758111,0.4272,0.268735,0.0264606,0.803873,0.992767,0.131696,0.0240092,0.877548,0.74545,0.682301,0.359658,0.293032,0.391971,0.60413,0.454729,0.862227,0.774271,0.804794,0.136856,0.916903,0.887311,0.19565,0.359988,0.657731,0.647305,0.985221,0.0949387,0.157519,0.889454,0.491163,0.010951,0.479506,0.500652,0.617983,0.863032,0.79675,0.560422,0.899251,0.970529,0.162023,0.0187288,0.190922,0.382007,0.791029,0.580275,0.518868,0.180458,0.803274,0.340037,0.0061748,0.107259,0.0322503,0.168402,0.0673363,0.713838,0.515956,0.781043,0.976134,0.469746,0.905893,0.0419188,0.86609,0.0557744,0.0280043,0.0835741,0.384441,0.593804,0.302228,0.117729,0.296919,0.460127,0.521137,0.65611,0.130002,0.480107,0.843826,0.831654,0.682444,0.267614,0.666316,0.316599,0.393518,0.693664,0.274782,0.372692,0.704301,0.488048,0.465272,0.228092,0.565119,0.77433,0.819524,0.680306,0.573982,0.870269,0.179088,0.107589,0.133395,0.877019,0.000599742,0.735992,0.842364,0.570286,0.991041,0.873778,0.174493,0.11903,0.519855,0.376809,0.0340105,0.131241,0.436854,0.0158478,0.386029,0.994959,0.423037,0.0534688,0.835228,0.969953,0.919138,0.431204,0.150143,0.343831,0.728636,0.568787,0.504753,0.98906,0.403954,0.905404,0.135762,0.923615,0.751771,0.698116,0.339559,0.314457,0.914928,0.595919,0.199069,0.713124,0.449777,0.321108,0.109564,0.075308,0.309264,0.550508,0.814505,0.0357239,0.178443,0.868263,0.602203,0.764523,0.164164,0.304796,0.963259,0.787704,0.493167,0.658301,0.69606,0.94025,0.779377,0.719329,0.187478,0.603536,0.996791,0.391392,0.953451,0.296283,0.0705303,0.824377,0.226723,0.284214,0.315902,0.00306761,0.0137522,0.0886631,0.78644,0.637291,0.937782,0.394583,0.584123,0.962949,0.265911,0.936255,0.245808,0.562245,0.967456,0.527346,0.252901,0.0160348,0.942462,0.608179,0.869654,0.850807,0.932046,0.850405,0.134647,0.125569,0.157873,0.482678,0.530953,0.877354,0.0115523,0.932146,0.128442,0.364925,0.663887,0.364377,0.718492,0.0909231,0.806456,0.431284,0.273193,0.244908,0.441059,0.488007,0.129499,0.430326,0.524687,0.190496,0.489283,0.285386,0.846871,0.868589,0.46752,0.387556,0.5587,0.678851,0.131616,0.921377,0.388239,0.918431,0.805134,0.418149,0.781614,0.741165,0.53486,0.274002,0.787629,0.222736,0.962339,0.905917,0.818866,0.393108,0.070567,0.964557,0.0978819,0.401495,0.146994,0.613164,0.723614,0.393384,0.151376,0.687485,0.797233,0.956944,0.297194,0.360465,0.749898,0.951221,0.0934389,0.813619,0.468874,0.268804,0.526914,0.106961,0.34041,0.464365,0.0312386,0.774441,0.92362,0.919675,0.628888,0.103942,0.126751,0.257201,0.274755,0.102624,0.260394,0.0510251,0.486829,0.35841,0.945057,0.126675,0.554047,0.426268,0.91824,0.834098,0.238411,0.414723,0.592203,0.956759,0.266794,0.140876,0.266682,0.54174,0.465719,0.154175,0.523323,0.288738,0.0289608,0.877948,0.694688,0.553654,0.688219,0.0391358,0.286605,0.201351,0.731635,0.260772,0.672455,0.434496,0.286028,0.983625,0.619274,0.993389,0.278211,0.482312,0.957543,0.105536,0.207462,0.537642,0.902505,0.347685,0.424741,0.970466,0.00937742,0.401225,0.294517,0.983242,0.786381,0.874904,0.224842,0.0439429,0.059545,0.0606156,0.185401,0.921218,0.0113224,0.674985,0.0598932,0.325135,0.827454,0.463995,0.882783,0.332878,0.885986,0.478249,0.460168,0.447278,0.762016,0.272798,0.505312,0.505783,0.706145,0.788229,0.387614,0.612182,0.296058,0.74763,0.447146,0.56009,0.950575,0.190758,0.757969,0.709311,0.887492,0.526907,0.838366,0.136289,0.553518,0.39674,0.770562,0.142942,0.978603,0.853568,0.311038,0.109802,0.0273158,0.233963,0.0583304,0.272832,0.44109,0.841484,0.182507,0.272643,0.856237,0.1075,0.507004,0.14558,0.619726,0.170726,0.146822,0.344219,0.100546,0.716613,0.701234,0.970347,0.161503,0.256089,0.446415,0.297094,0.579646,0.405704,0.982561,0.804283,0.51162,0.75018,0.492335,0.304556,0.386947,0.0181032,0.59715,0.507951,0.561153,0.819225,0.179179,0.289493,0.980602,0.727983,0.452386,0.531624,0.809924,0.777032,0.817111,0.123699,0.623447,0.973296,0.459584,0.217824,0.0473598,0.521682,0.113724,0.267053,0.966477,0.363083,0.856192,0.121566,0.76718,0.0767204,0.959813,0.774321,0.951705,0.335306,0.329371,0.290392,0.801915,0.509747,0.185984,0.954429,0.366385,0.718787,0.169967,0.230728,0.560672,0.822582,0.139794,0.443365,0.842425,0.0128471,0.744077,0.432428,0.613469,0.290411,0.825432,0.236054,0.347572,0.556713,0.246615,0.974837,0.0834716,0.964641,0.657986,0.661873,0.545829,0.827899,0.65299,0.594,0.829548,0.39895,0.635389,0.827114,0.188296,0.498503,0.00745636,0.905545,0.644301,0.884863,0.206329,0.0891932,0.852342,0.639416,0.543228,0.442881,0.755209,0.484499,0.449271,0.83096,0.117691,0.00874913,0.196993,0.208754,0.809321,0.111923,0.44621,0.365452,0.678991,0.682553,0.619805,0.945702,0.51654,0.738474,0.179465,0.781259,0.644745,0.754062,0.370963,0.0619318,0.491247,0.707051,0.131216,0.949884,0.651589,0.588853,0.272058,0.62113,0.92379,0.233272,0.890472,0.724752,0.262175,0.354375,0.460271,0.579422,0.0208746,0.786562,0.358105,0.749505,0.00771797,0.207563,0.907725,0.780173,0.448743,0.888022,0.52573,0.945385,0.332799,0.381467,0.925523,0.757522,0.813242,0.293153,0.264129,0.440526,0.580749,0.0157432,0.126682,0.00572884,0.181051,0.218028,0.841527,0.282341,0.988947,0.0368821,0.259263,0.658998,0.306757,0.121623,0.893337,0.377797,0.00620157,0.188796,0.993288,0.817811,0.765369,0.542287,0.444335,0.709739,0.149121,0.69328,0.23191,0.764553,0.219852,0.437805,0.806992,0.218886,0.261549,0.313977,0.410017,0.0484653,0.63419,0.788018,0.113515,0.225585,0.901533,0.928167,0.284798,0.316453,0.044929,0.836395,0.69834,0.469196,0.296377,0.0351955,0.906327,0.979854,0.084736,0.535907,0.336805,0.95258,0.830102,0.246052,0.135061,0.359966,0.388095,0.55197,0.216313,0.0962439,0.488911,0.55071,0.226304,0.49225,0.0816557,0.846251,0.59719,0.637686,0.854801,0.0651578,0.89661,0.74844,0.363506,0.103517,0.879257,0.940681,0.595962,0.871546,0.0188805,0.0918905,0.608954,0.095741,0.299237,0.961724,0.565855,0.294657,0.564517,0.877018,0.361961,0.827195,0.403972,0.565222,0.752579,0.631043,0.19673,0.0492393,0.130456,0.540488,0.304327,0.54889,0.861674,0.982386,0.582573,0.794359,0.310142,0.582526,0.622842,0.395653,0.397859,0.494588,0.634869,0.183763,0.960963,0.885163,0.00556344,0.441833,0.452028,0.0350175,0.274483,0.0406804,0.702136,0.761864,0.657416,0.8751,0.672983,0.805168,0.51099,0.907077,0.718623,0.31189,0.468426,0.496355,0.909997,0.808195,0.560605,0.904859,0.774464,0.313418,0.780058,0.103419,0.901778,0.854204,0.18124,0.807733,0.149546,0.271331,0.688443,0.444116,0.855223,0.952796,0.758191,0.714992,0.402936,0.985697,0.0969595,0.970392,0.541744,0.653409,0.521548,0.980125,0.289231,0.230096,0.316199,0.877319,0.473684,0.00169933,0.800362,0.691585,0.734343,0.365929,0.03065,0.448704,0.292586,0.25579,0.70475,0.484468,0.841127,0.807153,0.506557,0.299901,0.872129,0.81276,0.230842,0.681845,0.631678,0.495765,0.575957,0.441543,0.410415,0.251783,0.457807,0.549751,0.822437,0.130591,0.738876,0.0818709,0.864683,0.975641,0.768508,0.83514,0.706976,0.145306,0.951621,0.167574,0.611901,0.811597,0.0513658,0.17244,0.343073,0.702292,0.780284,0.314822,0.422147,0.11517,0.0285587,0.954305,0.864182,0.840874,0.128011,0.97462,0.539075,0.976908,0.939092,0.245114,0.896227,0.577257,0.0933107,0.805814,0.941571,0.0975379,0.150353,0.319415,0.203953,0.643133,0.0823339,0.85466,0.302099,0.937948,0.0653697,0.23811,0.22815,0.369825,0.0291634,0.746733,0.879829,0.640187,0.474355,0.952128,0.989245,0.484778,0.533636,0.610302,0.929713,0.113906,0.388691,0.514975,0.861548,0.628168,0.163358,0.529684,0.832872,0.418659,0.951356,0.405109,0.677361,0.231,0.560387,0.0672376,0.0188518,0.642866,0.314087,0.322954,0.401751,0.00392538,0.791544,0.544485,0.456546,0.435965,0.962902,0.664584,0.153734,0.212871,0.72848,0.80055,0.450265,0.553533,0.795018,0.736138,0.461517,0.712327,0.810531,0.940775,0.811409,0.961901,0.177989,0.0985307,0.244298,0.16834,0.0861325,0.760917,0.900925,0.887541,0.990922,0.955152,0.352677,0.809131,0.325506,0.053255,0.899832,0.249096,0.349983,0.152888,0.951425,0.938913,0.589194,0.612297,0.486796,0.210517,0.405118,0.96346,0.759403,0.375519,0.16676,0.211012,0.636055,0.781628,0.165552,0.54873,0.664163,0.146767,0.0893254,0.706837,0.293531,0.620087,0.0540491,0.333645,0.294079,0.993686,0.933679,0.225917,0.468682,0.169553,0.765186,0.401728,0.147277,0.0270133,0.812178,0.888335,0.217016,0.495917,0.760044,0.59511,0.78202,0.947635,0.200637,0.984808,0.795342,0.466416,0.525664,0.727657,0.0753657,0.557411,0.691273,0.920127,0.301127,0.539521,0.973373,0.59806,0.762586,0.340528,0.134892,0.350457,0.446057,0.40448,0.351513,0.544289,0.178275,0.316981,0.319614,0.975248,0.83368,0.348484,0.0729296,0.693947,0.892534,0.481596,0.77078,0.779042,0.669829,0.124058,0.365686,0.50403,0.180716,0.986638,0.269845,0.547315,0.407576,0.781641,0.111949,0.835923,0.182026,0.052808,0.718783,0.659325,|0.508777,0.22945,0.603602,0.535001,0.851766,0.968334,0.446047,0.4385,0.808042,0.825716,0.555024,0.595555,0.670466,0.844938,0.832559,0.0692679,0.695219,0.087435,0.766909,0.310543,0.925602,0.567787,0.72583,0.994853,0.495832,0.594781,0.82373,0.562755,0.327722,0.619336,0.293712,0.676665,0.242353,0.730705,0.15476,0.825056,0.432429,0.168181,0.42362,0.704735,0.973382,0.626183,0.15935,0.157637,0.557641,0.156477,0.988582,0.860129,0.605487,0.37033,0.190376,0.310187,0.157572,0.0291259,0.556494,0.385141,0.14885,0.763691,0.482431,0.77043,0.932541,0.303911,0.63085,0.462445,0.750209,0.893564,0.435933,0.827055,0.101629,0.57928,0.555173,0.18434,0.351536,0.678682,0.593362,0.866392,0.234428,0.764905,0.0463744,0.404877,0.0407934,0.647225,0.576272,0.143958,0.840544,0.517008,0.442439,0.922237,0.520649,0.0324205,0.704174,0.332804,0.262537,0.885497,0.652633,0.663288,0.189607,0.57102,0.774918,0.295026,0.364735,0.977978,0.115902,0.461964,0.598491,0.844613,0.326359,0.461879,0.0533198,0.573026,0.178222,0.336829,0.753172,0.0967976,0.376842,0.687177,0.150506,0.703277,0.884601,0.407692,0.225296,0.478767,0.291992,0.565675,0.22687,0.105813,0.306169,0.866958,0.75391,0.792861,0.14253,0.0479053,0.740303,0.150696,0.737475,0.485521,0.963809,0.744745,0.311867,0.941741,0.028192,0.72244,0.291979,0.837053,0.666182,0.0357631,0.216397,0.40863,0.27193,0.8899,0.339073,0.31307,0.106068,0.605916,0.741515,0.97768,0.141494,0.514988,0.217481,0.82383,0.826604,0.894581,0.753668,0.650356,0.225381,0.0811448,0.665615,0.0709337,0.437981,0.860068,0.931935,0.637646,0.635599,0.452958,0.082305,0.262532,0.686921,0.145052,0.951339,0.620933,0.86003,0.954493,0.678665,0.463542,0.977778,0.478351,0.7534,0.894905,0.49727,0.57676,0.102877,0.0389336,0.219692,0.647863,0.660284,0.47567,0.627565,0.501923,0.478806,0.975257,0.687947,0.44106,0.20845,0.673099,0.961629,0.756894,0.0736743,0.99519,0.789629,0.365219,0.84718,0.619764,0.757594,0.631774,0.15663,0.189514,0.823805,0.703688,0.184164,0.0214864,0.645647,0.463879,0.229729,0.16311,0.470873,0.57228,0.066541,0.97251,0.756339,0.745877,0.0799628,0.943971,0.38933,0.290793,0.28586,0.0118719,0.266462,0.684267,0.215763,0.026341,0.766252,0.695219,0.779993,0.306404,0.645248,0.223329,0.928414,0.305051,0.197046,0.00700206,0.915843,0.77777,0.422039,0.563419,0.376886,0.305808,0.316475,0.01781,0.615276,0.774598,0.0133714,0.129447,0.812883,0.637955,0.140705,0.668456,0.755461,0.256481,0.367634,0.797989,0.0140055,0.710792,0.203421,0.805504,0.659417,0.79202,0.284212,0.70331,0.0697549,0.811304,0.958732,0.927583,0.876389,0.186792,0.0764933,0.313697,0.0287266,0.87144,0.873127,0.169651,0.116955,0.0381612,0.464302,0.359672,0.556482,0.0307986,0.703046,0.0729393,0.715811,0.32765,0.65432,0.774479,0.640815,0.814967,0.867192,0.606255,0.769306,0.38234,0.610883,0.905418,0.172912,0.0697721,0.987731,0.164585,0.27031,0.303894,0.278405,0.197007,0.525308,0.632761,0.0756613,0.67949,0.958811,0.634583,0.427351,0.654113,0.552968,0.607576,0.842462,0.416324,0.158245,0.749112,0.0974714,0.477611,0.361441,0.373692,0.74897,0.744076,0.162052,0.487963,0.0464749,0.723281,0.497535,0.753435,0.566899,0.739077,0.312753,0.126699,0.43327,0.946221,0.534574,0.157929,0.71861,0.559703,0.431265,0.379807,0.894983,0.929054,0.751581,0.500292,0.440837,0.266721,0.0322867,0.819804,0.924003,0.0121704,0.744365,0.843158,0.459694,0.858524,0.0982883,0.109243,0.612684,0.79287,0.87188,0.885056,0.967053,0.930124,0.78603,0.976855,0.802567,0.578503,0.304176,0.795387,0.132877,0.567229,0.294995,0.589282,0.900494,0.847164,0.738541,0.930321,0.493908,0.349093,0.404331,0.0925432,0.744246,0.530139,0.542317,0.989269,0.242608,0.808507,0.233017,0.0289749,0.881117,0.363608,0.327741,0.769102,0.569769,0.673895,0.884299,0.25853,0.000160217,0.497684,0.213944,0.219412,0.0655173,0.413266,0.852913,0.882527,0.739006,0.372928,0.11552,0.934002,0.470616,0.0171835,0.301962,0.769833,0.384118,0.75424,0.894069,0.596597,0.684441,0.44709,0.682347,0.480609,0.135043,0.408029,0.47413,0.810921,0.197882,0.0070945,0.777278,0.933825,0.890466,0.224896,0.77667,0.645982,0.342605,0.0736387,0.612505,0.851106,0.606285,0.929576,0.361891,0.832111,0.13576,0.943808,0.880899,0.549791,0.759236,0.683458,0.416741,0.979283,0.382038,0.178202,0.014109,0.400203,0.0484197,0.515695,0.190607,0.743074,0.171219,0.780775,0.839819,0.632287,0.660032,0.856184,0.91604,0.0676806,0.489947,0.319797,0.552337,0.946314,0.795648,0.616659,0.0677149,0.301288,0.599944,0.719542,0.370593,0.782826,0.18045,0.788285,0.819542,0.047879,0.415441,0.460476,0.131404,0.435194,0.478315,0.258743,0.956772,0.835518,0.147125,0.107245,0.579926,0.0487197,0.0281452,0.890519,0.333069,0.306997,0.714296,0.391413,0.0271031,0.0633153,0.773013,0.329639,0.336152,0.405701,0.266344,0.787564,0.59865,0.888974,0.0737876,0.83992,0.630429,0.42306,0.736782,0.0311315,0.935831,0.0829988,0.447316,0.402909,0.188213,0.568895,0.694026,0.984339,0.873132,0.120465,0.800862,0.398828,0.549179,0.472761,0.97336,0.531481,0.371511,0.501784,0.948,0.310709,0.6102,0.895393,0.614591,0.0433924,0.83676,0.70482,0.254347,0.23177,0.96169,0.983467,0.675051,0.0635986,0.427275,0.0121228,0.0463564,0.906178,0.938808,0.077933,0.683365,0.800026,0.181475,0.688983,0.708291,0.936947,0.793723,0.0622013,0.762635,0.745517,0.855503,0.764404,0.0100629,0.371525,0.15928,0.349994,0.475185,0.167393,0.767476,0.317265,0.805756,0.84154,0.196737,0.728781,0.484282,0.0540845,0.780571,0.998608,0.541637,0.583207,0.857149,0.285994,0.657494,0.965316,0.121135,0.0297169,0.0171626,0.227353,0.285326,0.457088,0.522735,0.995083,0.0756064,0.108712,0.0624173,0.156364,0.85303,0.459146,0.57166,0.108511,0.399857,0.455544,0.582816,0.716559,0.336868,0.409735,0.0780746,0.910977,0.617685,0.848763,0.878758,0.318328,0.904905,0.376585,0.575968,0.372324,0.0905621,0.0721159,0.279062,0.17738,0.639901,0.613995,0.461895,0.571868,0.092878,0.146231,0.409276,0.56814,0.0709395,0.245772,0.659973,0.570413,0.488804,0.166887,0.0673324,0.17046,0.310124,0.169542,0.421297,0.68322,0.206133,0.965056,0.865595,0.754784,0.272301,0.435138,0.980534,0.663028,0.318997,0.434519,0.840494,0.0818377,0.1535,0.555674,0.564132,0.828097,0.125632,0.0547373,0.209371,0.801763,0.47177,0.231545,0.749661,0.293591,0.672732,0.8877,0.737301,0.140589,0.730016,0.322183,0.959441,0.215291,0.184422,0.322833,0.408863,0.0836005,0.519738,0.739499,0.518204,0.417976,0.130307,0.263788,0.0176621,0.127578,0.608431,0.504371,0.07928,0.744459,0.754221,0.0144409,0.926427,0.721458,0.679698,0.70185,0.0184407,0.396013,0.93499,0.423802,0.174469,0.0615824,0.804504,0.901314,0.652914,0.373768,0.617747,0.458368,0.261894,0.899431,0.259486,0.878416,0.548099,0.776484,0.0336786,0.806119,0.92718,0.200624,0.532882,0.339216,0.989477,0.920895,0.711686,0.394316,0.390078,0.184447,0.95029,0.539912,0.813715,0.0471259,0.354482,0.790384,0.117553,0.368241,0.670411,0.00228357,0.216727,0.454577,0.111669,0.0540574,0.275746,0.26935,0.2635,0.341504,0.714616,0.130994,0.131486,0.385966,0.752874,0.432612,0.658113,0.799773,0.297914,0.858204,0.284921,0.640135,0.426759,0.826621,0.938757,0.89026,0.427859,0.554783,0.553679,0.469398,0.262769,0.681467,0.0223014,0.550881,0.722229,0.501105,0.432782,0.274964,0.915713,0.635667,0.454542,0.0271652,0.280097,0.410731,0.0599369,0.854934,0.804592,0.57859,0.512848,0.110494,0.784738,0.319582,0.902088,0.262206,0.560361,0.898061,0.278948,0.4849,0.688795,0.71765,0.500347,0.235223,0.373311,0.317844,0.762751,0.20005,0.350061,0.815677,0.463319,0.058024,0.690454,0.20575,0.530549,0.153624,0.711127,0.697261,0.304028,0.470158,0.678449,0.142899,0.26956,0.00285751,0.0817749,0.321638,0.891821,0.526697,0.592722,0.989408,0.125893,0.767153,0.727967,0.854193,0.051168,0.917206,0.521787,0.134082,0.73623,0.679272,0.172694,0.323358,0.675927,0.775063,0.607821,0.505346,0.266414,0.906243,0.174078,0.298585,0.288922,0.478479,0.165765,0.224586,0.0431663,0.132457,0.164902,0.5077,0.875206,0.00651109,0.417037,0.457972,0.86149,0.915281,0.483334,0.967133,0.515765,0.420898,0.261076,0.191196,0.863827,0.0390435,0.789317,0.377441,0.241414,0.0259869,0.242259,0.47308,0.94316,0.287104,0.795685,0.831245,0.388005,0.987285,0.875441,0.283618,0.8286,0.868688,0.74689,0.0543476,0.788205,0.305311,0.466953,0.526853,0.146005,0.674784,0.744619,0.0931161,0.331192,0.700365,0.419658,0.522451,0.618291,0.578287,0.604015,0.271315,0.990573,0.862766,0.676429,0.409401,0.630298,0.706513,0.88123,0.495846,0.950137,0.420956,0.950884,0.42327,0.96377,0.739551,0.761557,0.750849,0.400726,0.523039,0.173632,0.768527,0.145098,0.750419,0.898112,0.514056,0.303231,0.778285,0.400823,0.0538872,0.680404,0.954769,0.821672,0.177051,0.955943,0.443395,0.418713,0.521217,0.709155,0.0863413,0.179421,0.795935,0.663791,0.0445559,0.930893,0.329939,0.657817,0.978936,0.935254,0.128809,0.789999,0.454182,0.686499,0.898949,0.464408,0.123675,0.962716,0.348758,0.524545,0.165832,0.481309,0.801976,0.0286334,0.0264378,0.527814,0.971096,0.390998,0.141625,0.58985,0.477497,0.138608,0.0280519,0.920296,0.730981,0.583721,0.16677,0.368006,0.363774,0.210342,0.109883,0.214752,0.870044,0.757382,0.171296,0.697966,0.435693,0.35647,0.0153326,|0.386447,0.389941,0.831614,0.135686,0.878683,0.528634,0.464555,0.688356,0.881442,0.176889,0.0376211,0.124982,0.360408,0.933179,0.82243,0.741686,0.261779,0.151305,0.775801,0.865956,0.763863,0.317815,0.595423,0.630874,0.848826,0.87042,0.217635,0.931165,0.741318,0.152964,0.715821,0.202852,0.106629,0.319697,0.678032,0.532228,0.160154,0.993264,0.427233,0.239788,0.893792,0.209523,0.442643,0.942972,0.700071,0.563755,0.671011,0.266867,0.333931,0.933646,0.310387,0.0253717,0.806507,0.0352009,0.889287,0.185637,0.437878,0.464643,0.125187,0.23857,0.477661,0.48877,0.288555,0.811021,0.710023,0.537556,0.0598953,0.539462,0.698516,0.747174,0.724024,0.651329,0.854588,0.476488,0.732333,0.925944,0.141705,0.0408554,0.0534227,0.450671,0.374161,0.205141,0.956154,0.397598,0.968463,0.513136,0.906758,0.524566,0.431856,0.491561,0.974024,0.783315,0.0653163,0.10318,0.252436,0.864532,0.46273,0.461936,0.538003,0.27342,0.223671,0.585511,0.305153,0.751265,0.63538,0.871242,0.794435,0.930451,0.130992,0.815882,0.128304,0.590286,0.909314,0.251075,0.297703,0.107851,0.667286,0.18205,0.573355,0.507763,0.0748506,0.552842,0.922576,0.583302,0.570461,0.739009,0.0573783,0.989468,0.0559849,0.891719,0.731068,0.729039,0.430834,0.401753,0.746744,0.317958,0.294708,0.410279,0.164051,0.731581,0.181032,0.415065,0.448241,0.493542,0.285746,0.198116,0.782353,0.664663,0.694275,0.288136,0.143512,0.467778,0.140274,0.781565,0.150731,0.141903,0.878733,0.907789,0.904522,0.546902,0.458723,0.906483,0.173993,0.276145,0.393755,0.190458,0.0719102,0.881047,0.787289,0.572279,0.773856,0.0243568,0.0482446,0.00307554,0.69023,0.249914,0.107534,0.415597,0.166986,0.24378,0.280712,0.34086,0.209366,0.325378,0.0411119,0.973192,0.0718011,0.614967,0.964317,0.161368,0.741411,0.423401,0.806084,0.537318,0.443957,0.46116,0.938508,0.195602,0.128674,0.0027957,0.735064,0.670055,0.842575,0.846133,0.76047,0.643776,0.0578126,0.933971,0.923935,0.360093,0.853877,0.331087,0.115863,0.438298,0.785849,0.0170853,0.280854,0.250727,0.294176,0.570151,0.514651,0.902999,0.0867357,0.833377,0.294611,0.150917,0.125055,0.872795,0.0448756,0.0324574,0.77879,0.921886,0.814268,0.371455,0.120533,0.706791,0.234892,0.275131,0.0245014,0.574551,0.791242,0.963207,0.0334054,0.844091,0.800074,0.307721,0.867488,0.524355,0.375423,0.443901,0.371914,0.999673,0.0315426,0.89988,0.948564,0.16131,0.545576,0.704064,0.723969,0.00623065,0.674545,0.250637,0.369789,0.921706,0.0587503,0.859282,0.0448966,0.262451,0.264141,0.0721062,0.900132,0.860815,0.928353,0.494945,0.039042,0.817491,0.622542,0.111389,0.983549,0.907132,0.33709,0.170063,0.599494,0.323508,0.261498,0.416629,0.728779,0.029982,0.350534,0.368073,0.228462,0.459946,0.751373,0.636441,0.424356,0.761358,0.572015,0.810955,0.350635,0.595771,0.305717,0.499637,0.190975,0.0797353,0.928441,0.0458989,0.673272,0.0961701,0.565764,0.732449,0.0509776,0.422397,0.00190639,0.399358,0.139273,0.939166,0.37467,0.868414,0.589521,0.78035,0.0658715,0.0460898,0.619597,0.0711616,0.00546885,0.0342324,0.650102,0.874403,0.516115,0.95007,0.920358,0.66492,0.916286,0.0328797,0.0395306,0.229281,0.36967,0.401052,0.983524,0.702572,0.40354,0.311627,0.54543,0.369926,0.451967,0.211106,0.0701559,0.443873,0.189105,0.467451,0.794259,0.603794,0.447499,0.803729,0.986761,0.0998261,0.920704,0.707736,0.104554,0.0411673,0.0293614,0.850175,0.176935,0.633884,0.0963386,0.316943,0.863,0.120557,0.726149,0.170423,0.402561,0.363598,0.195125,0.644185,0.308845,0.918233,0.219597,0.986433,0.00495917,0.0483957,0.559712,0.134455,0.15886,0.507363,0.00633073,0.908457,0.765882,0.904266,0.765519,0.188112,0.542777,0.418461,0.676491,0.548146,0.303365,0.390255,0.421932,0.938441,0.136263,0.782059,0.588068,0.286923,0.680625,0.530114,0.279426,0.285045,0.886319,0.149591,0.374283,0.614638,0.785838,0.0993456,0.393942,0.771947,0.383268,0.73187,0.441636,0.961881,0.387981,0.512146,0.490738,0.87041,0.671562,0.825188,0.741825,0.448655,0.532105,0.0893914,0.967884,0.831456,0.66107,0.852758,0.309631,0.202424,0.232974,0.111215,0.0804867,0.26377,0.319533,0.107124,0.691702,0.962114,0.35824,0.122163,0.348509,0.279051,0.850241,0.819032,0.925089,0.796911,0.0082162,0.0903953,0.732942,0.916646,0.246922,0.188601,0.0978062,0.818323,0.0143033,0.60732,0.714439,0.735824,0.692214,0.835038,0.473272,0.647762,0.0154264,0.32111,0.365803,0.628042,0.740844,0.210259,0.711611,0.619574,0.0552625,0.723438,0.0619828,0.866158,0.381006,0.780907,0.146026,0.351181,0.10264,0.507269,0.294113,0.0815107,0.908277,0.719649,0.880485,0.65616,0.902377,0.147654,0.382738,0.882124,0.485314,0.117185,0.957171,0.920847,0.261471,0.721268,0.394944,0.243901,0.215984,0.762567,0.664766,0.656817,0.299003,0.610352,0.806374,0.26699,0.968005,0.616622,0.117439,0.0379489,0.286573,0.139768,0.995938,0.114777,0.487866,0.517582,0.164942,0.0291293,0.857541,0.339812,0.186815,0.854909,0.673754,0.360277,0.152488,0.208107,0.959621,0.869843,0.30603,0.638245,0.511404,0.683029,0.0511699,0.943872,0.344416,0.449638,0.988409,0.510597,0.0636781,0.232639,0.952349,0.317882,0.658339,0.555192,0.631073,0.743497,0.648141,0.627587,0.689142,0.228688,0.167197,0.836036,0.147765,0.804405,0.79507,0.130029,0.592692,0.0873404,0.0612574,0.671068,0.63013,0.0670965,0.161912,0.662979,0.637191,0.676838,0.344149,0.287184,0.385168,0.264324,0.173396,0.89372,0.197825,0.265564,0.0407166,0.714759,0.896668,0.578496,0.167214,0.15648,0.69618,0.0890099,0.398103,0.0562366,0.309713,0.337503,0.161876,0.50632,0.819636,0.0624919,0.488347,0.999602,0.530093,0.263774,0.0377463,0.329685,0.191602,0.657738,0.998441,0.109554,0.241653,0.838134,0.382823,0.312121,0.524339,0.943377,0.515314,0.825402,0.74035,0.895431,0.203748,0.398225,0.904485,0.107348,0.0898404,0.223387,0.764162,0.640887,0.51518,0.283216,0.941673,0.75942,0.506648,0.240564,0.0227497,0.744705,0.453906,0.814335,0.3039,0.359114,0.224725,0.0117155,0.598785,0.878274,0.162504,0.404083,0.0918934,0.778047,0.183914,0.289288,0.543251,0.622042,0.300217,0.44916,0.0198292,0.723956,0.139521,0.782081,0.105612,0.590665,0.824522,0.469221,0.214138,0.930602,0.803832,0.864316,0.608009,0.322234,0.272501,0.0818607,0.223348,0.386513,0.92062,0.723226,0.774031,0.331189,0.300641,0.544736,0.832839,0.251122,0.677389,0.831164,0.235101,0.0908478,0.238366,0.848382,0.846997,0.218605,0.796769,0.955456,0.70263,0.498478,0.277566,0.400253,0.0466847,0.946546,0.868321,0.687659,0.948381,0.984089,0.741753,0.937484,0.229775,0.467017,0.166926,0.604827,0.79651,0.897808,0.548844,0.820161,0.0661176,0.833211,0.756224,0.345393,0.455828,0.0153244,0.942007,0.871225,0.593992,0.608207,0.266007,0.976346,0.347823,0.751507,0.498172,0.787117,0.147248,0.737717,0.265906,0.280142,0.299485,0.868999,0.241805,0.597948,0.758299,0.898887,0.798769,0.71352,0.216549,0.473317,0.234953,0.21649,0.690708,0.644292,0.168439,0.682708,0.984342,0.588374,0.276834,0.42325,0.528907,0.908854,0.426047,0.75769,0.266849,0.216194,0.926702,0.014163,0.387026,0.796214,0.731452,0.650124,0.963947,0.0798315,0.220774,0.167789,0.641718,0.592425,0.902782,0.533813,0.397547,0.29437,0.944029,0.217612,0.588109,0.919549,0.641392,0.843879,0.295746,0.19177,0.266677,0.275464,0.175139,0.733831,0.796306,0.886706,0.0646622,0.602476,0.814297,0.886272,0.382959,0.276182,0.61561,0.637845,0.955451,0.685517,0.232526,0.818758,0.96761,0.917381,0.283039,0.613321,0.326728,0.308455,0.68829,0.269238,0.810096,0.08265,0.779543,0.463046,0.834785,0.0748863,0.920301,0.380913,0.395995,0.451915,0.613492,0.932337,0.612351,0.272151,0.119905,0.895674,0.864494,0.643599,0.135803,0.234635,0.912681,0.131692,0.881186,0.0449323,0.525759,0.651418,0.867347,0.334515,0.62835,0.951734,0.430819,0.560409,0.120704,0.65114,0.327648,0.425352,0.906125,0.154905,0.336671,0.796177,0.51232,0.657095,0.983293,0.742995,0.446492,0.0425342,0.123858,0.13409,0.530142,0.163284,0.0952834,0.257239,0.0485975,0.610789,0.202875,0.624002,0.214864,0.0219932,0.856358,0.268317,0.421669,0.504311,0.246033,0.691391,0.901567,0.718399,0.834219,0.321455,0.14645,0.0500833,0.992557,0.34457,0.623448,0.725036,0.225768,0.781134,0.059919,0.274328,0.947349,0.485608,0.64465,0.718196,0.280586,0.424412,0.504849,0.794833,0.967191,0.201727,0.861069,0.202784,0.392038,0.598331,0.35745,0.242082,0.44707,0.410037,0.967512,0.678084,0.565865,0.977861,0.0792023,0.712369,0.0299698,0.407275,0.0811495,0.989598,0.73408,0.835215,0.823251,0.968929,0.742806,0.73044,0.218716,0.555712,0.413345,0.542376,0.931861,0.884071,0.0340403,0.312059,0.661873,0.0666064,0.158054,0.505058,0.861553,0.561805,0.132368,0.340338,0.763566,0.521374,0.769927,0.860207,0.662435,0.813945,0.493484,0.85357,0.17812,0.146721,0.424834,0.767823,0.966618,0.061213,0.54619,0.997307,0.87685,0.764748,0.958243,0.128255,0.469578,0.954091,0.125718,0.726801,0.354403,0.720682,0.0972623,0.309002,0.255655,0.0610834,0.568649,0.488166,0.526606,0.653567,0.342658,0.355393,0.685022,0.375915,0.0203629,0.0856898,0.165869,0.780195,0.823082,0.473854,0.594356,0.469879,0.870532,0.818391,0.8305,0.120272,0.91981,0.126129,0.133533,0.71371,0.979884,0.714233,0.951269,0.15115,0.731769,0.311405,0.524814,0.316212,0.899212,0.433562,0.898909,0.574254,0.0264946,0.107332,0.15603,0.958392,0.0802565,0.928624,|0.766126,0.291042,0.754767,0.676984,0.156269,0.447673,0.917729,0.0987327,0.754003,0.794445,0.873914,0.666237,0.741094,0.514821,0.713033,0.17345,0.0584313,0.257795,0.269523,0.752897,0.737867,0.259666,0.544646,0.957376,0.776934,0.55934,0.364363,0.0923864,0.79891,0.497368,0.561475,0.480724,0.755685,0.941045,0.172262,0.331687,0.137693,0.99602,0.944314,0.127361,0.586239,0.841639,0.210822,0.320197,0.830734,0.825562,0.092143,0.107807,0.477022,0.312728,0.341776,0.39374,0.253755,0.985551,0.579042,0.349648,0.658859,0.826535,0.962881,0.25683,0.168887,0.207174,0.0280348,0.284016,0.173759,0.953233,0.794906,0.574479,0.111084,0.265752,0.143624,0.713274,0.460119,0.616525,0.852422,0.805844,0.938817,0.43546,0.654168,0.313344,0.307747,0.105631,0.0974262,0.25796,0.582829,0.946501,0.147926,0.781677,0.996713,0.730204,0.205698,0.471079,0.953519,0.541251,0.0537831,0.468693,0.270821,0.0640936,0.756954,0.0757436,0.377747,0.46542,0.643241,0.224862,0.29123,0.939103,0.134189,0.931833,0.777089,0.508617,0.583787,0.1743,0.0449389,0.856375,0.165136,0.968753,0.895401,0.795275,0.881638,0.591952,0.600862,0.582684,0.0727955,0.507641,0.931468,0.123503,0.0558006,0.479548,0.187847,0.495946,0.587678,0.713793,0.535133,0.754115,0.310471,0.948038,0.816703,0.227046,0.212885,0.566009,0.65038,0.405685,0.82539,0.546692,0.802656,0.979445,0.900573,0.311001,0.153156,0.0780972,0.98413,0.449773,0.019796,0.242136,0.241686,0.194683,0.151232,0.827974,0.381085,0.00896871,0.256773,0.227935,0.506705,0.117408,0.775822,0.963543,0.494166,0.917595,0.521812,0.192202,0.681849,0.677195,0.000636876,0.649541,0.325833,0.519489,0.77657,0.0489953,0.758992,0.54771,0.694293,0.13533,0.112152,0.482793,0.275895,0.218046,0.762921,0.0662539,0.275355,0.0693039,0.459127,0.0347723,0.514566,0.145064,0.350947,0.165147,0.211969,0.35928,0.603558,0.845717,0.320854,0.524049,0.136194,0.669054,0.291651,0.0690821,0.753712,0.0657762,0.983467,0.37343,0.177216,0.592291,0.555428,0.0868226,0.882491,0.389365,0.868061,0.983311,0.014269,0.765341,0.658643,0.562566,0.735714,0.376056,0.00247329,0.0190845,0.576625,0.343822,0.788325,0.65353,0.115994,0.170711,0.570734,0.444888,0.0602115,0.554595,0.163757,0.823262,0.812694,0.653186,0.703038,0.307888,0.149465,0.389406,0.517117,0.312513,0.503326,0.566811,0.211228,0.803969,0.4793,0.937809,0.135032,0.752074,0.496511,0.49583,0.46228,0.231916,0.996715,0.155918,0.787711,0.629204,0.633262,0.192896,0.537697,0.386066,0.0960581,0.941828,0.187508,0.821812,0.453969,0.806574,0.256985,0.982319,0.246896,0.195262,0.638069,0.258563,0.199112,0.405931,0.232555,0.5261,0.0868902,0.948141,0.856039,0.216541,0.203201,0.0613358,0.981083,0.532308,0.296042,0.23219,0.924133,0.272136,0.801593,0.163669,0.264156,0.239296,0.976524,0.0138166,0.444842,0.383013,0.30484,0.722767,0.569247,0.543098,0.116305,0.662276,0.303711,0.342386,0.58667,0.994893,0.554291,0.492131,0.0853587,0.0432994,0.472527,0.129596,0.560384,0.372048,0.899457,0.0142763,0.517496,0.96844,0.643148,0.468739,0.358734,0.905245,0.870675,0.129866,0.2277,0.851403,0.611739,0.0184889,0.716612,0.334457,0.980272,0.718435,0.693341,0.984091,0.120935,0.0250154,0.784436,0.07166,0.60819,0.268533,0.95739,0.679842,0.861144,0.985746,0.34134,0.248227,0.021945,0.0420422,0.303552,0.172546,0.661769,0.966876,0.7675,0.37946,0.937985,0.512408,0.318578,0.982792,0.626148,0.211795,0.110433,0.615149,0.37571,0.467584,0.689918,0.355036,0.706121,0.619693,0.51265,0.391204,0.984598,0.597675,0.588842,0.443861,0.00900722,0.690782,0.333428,0.795571,0.0313072,0.648053,0.255704,0.199257,0.274498,0.608485,0.465766,0.522249,0.202892,0.246794,0.506346,0.173677,0.27372,0.68016,0.666868,0.315165,0.0519282,0.906714,0.553498,0.798418,0.691735,0.431798,0.285014,0.635367,0.235147,0.363685,0.619979,0.960641,0.433049,0.501862,0.15586,0.707449,0.120059,0.0358859,0.418894,0.870842,0.193797,0.202627,0.644165,0.792356,0.0435563,0.44257,0.507859,0.57336,0.855067,0.83042,0.292636,0.0688882,0.990223,0.308133,0.0869505,0.0814137,0.38146,0.817715,0.646526,0.0465261,0.129556,0.307534,0.663677,0.634457,0.66921,0.528906,0.496572,0.926345,0.583749,0.0994055,0.328937,0.390193,0.190706,0.0487633,0.306546,0.700434,0.729274,0.571679,0.0206805,0.730545,0.80293,0.882509,0.976046,0.150642,0.290018,0.176561,0.642292,0.568363,0.941812,0.954326,0.854669,0.23427,0.191456,0.333733,0.59236,0.811234,0.808449,0.459447,0.654924,0.786917,0.0581532,0.754739,0.224448,0.990334,0.0507408,0.633435,0.944371,0.762727,0.93263,0.498841,0.974835,0.891905,0.588036,0.551426,0.0683174,0.56462,0.820469,0.129746,0.608433,0.910529,0.697324,0.145277,0.574078,0.731975,0.532499,0.251373,0.0367216,0.184231,0.124238,0.96423,0.669034,0.666133,0.130904,0.0532615,0.404888,0.288716,0.987024,0.575827,0.336197,0.277812,0.884997,0.10097,0.979792,0.825516,0.143721,0.867358,0.194535,0.768867,0.114037,0.0569144,0.380707,0.649568,0.155821,0.451564,0.117834,0.261882,0.731645,0.150837,0.942887,0.138259,0.670306,0.98201,0.578642,0.861037,0.686824,0.430995,0.866746,0.435645,0.592015,0.153601,0.70853,0.70877,0.0912953,0.0152503,0.761447,0.570413,0.91381,0.850854,0.512202,0.544188,0.807642,0.988321,0.155187,0.307266,0.0532436,0.203125,0.0650597,0.110973,0.987402,0.871673,0.0371989,0.115032,0.985004,0.266997,0.307848,0.0408721,0.32442,0.742599,0.7458,0.00485909,0.190101,0.182161,0.40967,0.835532,0.388386,0.28756,0.0886517,0.826098,0.442643,0.627896,0.764926,0.541028,0.0901778,0.798348,0.505998,0.78319,0.9103,0.22756,0.88779,0.731337,0.981166,0.716548,0.0817934,0.23675,0.0815474,0.517054,0.122954,0.199841,0.295774,0.590708,0.506872,0.74399,0.645226,0.405461,0.66327,0.841863,0.616683,0.173176,0.268239,0.626443,0.412701,0.0984389,0.254872,0.45213,0.731472,0.176231,0.986644,0.253289,0.0116979,0.777178,0.944937,0.24562,0.428198,0.535702,0.0738052,0.346389,0.499758,0.538729,0.521638,0.281843,0.882732,0.63306,0.260122,0.17046,0.43267,0.178783,0.0598142,0.745972,0.409491,0.679867,0.658081,0.620667,0.282684,0.360297,0.770464,0.386289,0.778759,0.112504,0.48551,0.698332,0.542307,0.174636,0.269409,0.021381,0.769232,0.52328,0.567083,0.401746,0.443137,0.898091,0.00424778,0.398241,0.277319,0.997006,0.435861,0.989217,0.109889,0.904561,0.182156,0.63169,0.106415,0.448116,0.997793,0.829716,0.512478,0.931908,0.131763,0.154502,0.0458998,0.681254,0.860545,0.19896,0.265527,0.453329,0.307349,0.722109,0.880672,0.923327,0.39611,0.565912,0.411982,0.844927,0.378405,0.467341,0.665911,0.484868,0.633567,0.927075,0.159,0.6233,0.382892,0.499102,0.287142,0.196506,0.431493,0.804503,0.82742,0.768054,0.572736,0.253724,0.634213,0.935648,0.362501,0.216132,0.931943,0.779219,0.311535,0.975295,0.669266,0.784132,0.778387,0.204442,0.385396,0.968898,0.272922,0.940473,0.859267,0.839644,0.9361,0.424895,0.323865,0.345495,0.503515,0.391968,0.427004,0.186958,0.773603,0.447161,0.264302,0.882763,0.684596,0.760256,0.65168,0.126699,0.899656,0.621607,0.53566,0.617747,0.220374,0.456279,0.671402,0.621084,0.297674,0.193318,0.829812,0.210396,0.673914,0.69565,0.157151,0.264288,0.79782,0.858015,0.966806,0.835639,0.499913,0.339033,0.203931,0.858211,0.394613,0.056742,0.0670128,0.577693,0.428873,0.388421,0.510849,0.71163,0.308221,0.667612,0.232362,0.665555,0.93841,0.174654,0.923855,0.150531,0.11065,0.798006,0.678221,0.472143,0.634602,0.176868,0.684361,0.112261,0.662088,0.765449,0.164225,0.816359,0.660033,0.794968,0.111633,0.497536,0.898009,0.349714,0.113244,0.0829355,0.428116,0.861827,0.672137,0.0993459,0.211525,0.789369,0.419772,0.540602,0.887749,0.133593,0.623314,0.489617,0.0118625,0.628364,0.537328,0.301341,0.627071,0.66705,0.863876,0.872099,0.145713,0.919839,0.730372,0.998807,0.534786,0.965809,0.15252,0.867135,0.656376,0.192954,0.682418,0.95955,0.632965,0.723942,0.0332791,0.647185,0.48827,0.488555,0.711928,0.0315939,0.349555,0.455624,0.0852241,0.278251,0.569685,0.981245,0.795282,0.622315,0.328397,0.26955,0.597388,0.889603,0.0403809,0.608041,0.80227,0.813692,0.748371,0.9871,0.823816,0.684226,0.755862,0.400718,0.366694,0.905928,0.903893,0.991052,0.826054,0.926264,0.656357,0.692072,0.39027,0.581418,0.661525,0.399382,0.600826,0.984212,0.951651,0.000833213,0.738561,0.246459,0.924887,0.0966935,0.723297,0.502358,0.291076,0.508446,0.812667,0.221741,0.615794,0.178841,0.454669,0.730379,0.0829318,0.0514352,0.593426,0.0866966,0.588069,0.455081,0.396651,0.281975,0.680533,0.27194,0.321588,0.33465,0.536327,0.856746,0.00762981,0.564782,0.734064,0.570685,0.487613,0.834592,0.617675,0.637609,0.670205,0.0172253,0.598379,0.360387,0.97764,0.478425,0.71818,0.545662,0.993041,0.446107,0.00481355,0.301376,0.196652,0.761346,0.259803,0.110178,0.445833,0.903087,0.946135,0.342436,0.511779,0.409856,0.341396,0.717383,0.888066,0.602519,0.402939,0.965279,0.275692,0.679429,0.935645,0.799194,0.219766,0.894817,0.721172,0.378316,0.772293,0.350872,0.615508,0.591184,0.348024,0.159247,0.586397,0.154177,0.320249,0.219364,0.744758,0.846259,0.990692,0.890232,0.118422,0.809026,0.551748,0.389275,0.988296,0.141477,0.392911,0.132341,0.198991,0.754089,0.823936,0.890915,0.276657,0.540967,0.10041,0.840439,0.792741,0.0740287,0.5036,0.349372,0.185749,0.30168,|0.0792718,0.893603,0.650148,0.531981,0.501211,0.395658,0.103387,0.348909,0.729063,0.644199,0.833002,0.296977,0.195076,0.95492,0.250606,0.706977,0.445818,0.564777,0.6391,0.853383,0.645516,0.611417,0.937778,0.0267959,0.583767,0.729208,0.279893,0.0606724,0.161823,0.130498,0.00201124,0.875191,0.808474,0.0625794,0.349801,0.871256,0.476941,0.430622,0.107528,0.305807,0.467183,0.0248416,0.534078,0.704729,0.556897,0.214375,0.558316,0.720026,0.0600984,0.156925,0.586227,0.723123,0.152916,0.0961066,0.900562,0.589884,0.181671,0.261503,0.865831,0.286956,0.896637,0.330799,0.637099,0.910224,0.828428,0.930059,0.00407004,0.489682,0.721358,0.621943,0.600684,0.685495,0.30644,0.379242,0.846212,0.994611,0.566188,0.238089,0.548011,0.849192,0.50179,0.589254,0.214123,0.872781,0.110442,0.528399,0.59602,0.0992079,0.928258,0.62457,0.763101,0.401406,0.678318,0.975704,0.828332,0.375777,0.228478,0.309029,0.131159,0.770221,0.781149,0.0592228,0.463635,0.278776,0.814972,0.596193,0.710081,0.652835,0.484914,0.613099,0.219594,0.809883,0.0309673,0.145976,0.794329,0.215425,0.0103056,0.13568,0.504516,0.32625,0.136465,0.624836,0.78134,0.301262,0.394741,0.85423,0.928264,0.364757,0.732618,0.296245,0.665383,0.350764,0.540742,0.557691,0.557072,0.0713799,0.0707307,0.585839,0.704936,0.30586,0.667197,0.880789,0.692046,0.621933,0.978755,0.940041,0.892685,0.709246,0.307988,0.687463,0.629367,0.858858,0.293143,0.272275,0.934999,0.840267,0.916626,0.645742,0.302651,0.668187,0.706933,0.0675045,0.749297,0.279213,0.0654266,0.634652,0.718663,0.323702,0.526611,0.630578,0.813819,0.129333,0.925326,0.642333,0.738113,0.599165,0.796305,0.342168,0.480918,0.268618,0.276004,0.72766,0.322469,0.559635,0.371009,0.333116,0.504908,0.837374,0.901448,0.892167,0.626871,0.507631,0.017998,0.291731,0.776591,0.957452,0.929602,0.116549,0.115947,0.126487,0.724147,0.679868,0.538167,0.436268,0.225444,0.804601,0.398878,0.167355,0.353088,0.86594,0.269094,0.928419,0.642768,0.644151,0.248361,0.0912079,0.717225,0.00680602,0.169831,0.602264,0.202751,0.877527,0.867039,0.0249378,0.831007,0.746245,0.837611,0.896127,0.784291,0.7085,0.286338,0.825113,0.983723,0.417854,0.98208,0.881484,0.464936,0.224665,0.699643,0.640407,0.384709,0.0867037,0.891137,0.76414,0.355261,0.796067,0.582399,0.872375,0.611866,0.108666,0.872879,0.453849,0.243843,0.935586,0.782729,0.946889,0.0815321,0.98826,0.409022,0.526154,0.836084,0.626551,0.812099,0.42001,0.596136,0.569498,0.56623,0.16708,0.519664,0.821607,0.941024,0.630017,0.906768,0.339527,0.88848,0.446794,0.349268,0.540283,0.849445,0.73462,0.489857,0.319885,0.122369,0.43014,0.662865,0.983368,0.989026,0.86792,0.735571,0.739481,0.362201,0.499597,0.951808,0.175304,0.779396,0.0119885,0.243661,0.177076,0.72139,0.996214,0.108747,0.238878,0.161164,0.429718,0.493649,0.898371,0.626829,0.562209,0.7377,0.769773,0.162656,0.471118,0.512226,0.330775,0.29967,0.545135,0.0123165,0.799294,0.208437,0.238802,0.110623,0.92849,0.804243,0.441186,0.968996,0.535397,0.253778,0.811258,0.427017,0.999,0.254675,0.0392846,0.141006,0.0119516,0.865397,0.272006,0.829404,0.133682,0.257427,0.235676,0.0905346,0.448804,0.652623,0.776949,0.276229,0.895368,0.995098,0.291956,0.893097,0.907212,0.689135,0.600643,0.252582,0.763111,0.639783,0.355218,0.383773,0.28467,0.300095,0.58005,0.0469866,0.316118,0.470069,0.498656,0.163527,0.768837,0.625925,0.173497,0.573699,0.897961,0.988494,0.0561943,0.350653,0.608515,0.723973,0.895505,0.895439,0.350858,0.697064,0.266628,0.0623856,0.708475,0.563599,0.392496,0.809238,0.963623,0.874447,0.800546,0.1008,0.422705,0.806052,0.98032,0.409116,0.0380694,0.32,0.432263,0.278234,0.927244,0.0609624,0.888522,0.0800252,0.882097,0.67709,0.219279,0.454272,0.872068,0.745499,0.703431,0.469422,0.436301,0.433788,0.305613,0.770536,0.581722,0.934166,0.40812,0.0314555,0.84768,0.760915,0.25004,0.332257,0.211243,0.681349,0.497822,0.0671438,0.091006,0.0636373,0.159459,0.884956,0.0510253,0.237989,0.873827,0.851382,0.256079,0.211656,0.760874,0.148772,0.44632,0.00955003,0.258375,0.841381,0.666164,0.109217,0.755494,0.69005,0.735876,0.662844,0.340339,0.99065,0.738997,0.855439,0.53955,0.98413,0.230636,0.894246,0.181813,0.032908,0.204673,0.914997,0.237669,0.386384,0.479791,0.862068,0.380277,0.253866,0.850294,0.660045,0.46137,0.441706,0.137787,0.278602,0.763124,0.0300605,0.619628,0.566753,0.234823,0.17405,0.362795,0.60714,0.519119,0.486963,0.91397,0.427253,0.921822,0.895438,0.113589,0.418918,0.764337,0.303832,0.518105,0.488105,0.749874,0.780601,0.972678,0.805266,0.62776,0.304655,0.905273,0.372101,0.171509,0.616604,0.0473059,0.164786,0.445002,0.435559,0.584147,0.896018,0.418438,0.488692,0.283156,0.451599,0.0997219,0.233234,0.828964,0.189424,0.439789,0.506151,0.593897,0.964715,0.506266,0.285431,0.573572,0.019437,0.546908,0.19204,0.524987,0.15797,0.307555,0.721607,0.207949,0.870297,0.0677978,0.344074,0.654368,0.602611,0.350894,0.241373,0.553181,0.74592,0.179288,0.263881,0.344851,0.925944,0.959004,0.587254,0.746019,0.332666,0.695692,0.018841,0.583359,0.520591,0.244085,0.0510784,0.0732391,0.0925844,0.641088,0.50959,0.149571,0.763489,0.365141,0.6501,0.00350958,0.915053,0.331745,0.760578,0.873749,0.602727,0.924259,0.738448,0.989536,0.520195,0.183559,0.785991,0.364408,0.235174,0.767982,0.702435,0.726,0.802878,0.637649,0.00405777,0.38135,0.994365,0.725048,0.464947,0.649503,0.508301,0.348393,0.59073,0.255638,0.52582,0.398324,0.286338,0.399423,0.99224,0.185091,0.162323,0.314407,0.0932222,0.0170696,0.631351,0.391533,0.0703362,0.808794,0.807191,0.690219,0.877959,0.541709,0.450691,0.995727,0.571206,0.598624,0.955097,0.489115,0.82839,0.219476,0.155793,0.0792022,0.483908,0.0792896,0.719662,0.325536,0.966507,0.912455,0.254602,0.607796,0.810162,0.824599,0.209362,0.0775345,0.00489479,0.455273,0.363894,0.455258,0.384637,0.676216,0.0113328,0.867204,0.4052,0.194276,0.97631,0.393906,0.477964,0.0702386,0.322192,0.571511,0.845984,0.361709,0.181124,0.295545,0.487636,0.491057,0.482484,0.995371,0.0879564,0.003434,0.231913,0.586416,0.802375,0.475138,0.834642,0.938202,0.613728,0.982673,0.311363,0.550767,0.991596,0.898152,0.806336,0.272974,0.978006,0.517878,0.315059,0.437374,0.100437,0.0282983,0.305279,0.187241,0.0953622,0.339474,0.106441,0.285756,0.0891473,0.770614,0.34459,0.409321,0.0400855,0.318912,0.709676,0.300305,0.592864,0.446192,0.466694,0.322966,0.890338,0.0427531,0.763822,0.200929,0.0213527,0.224558,0.521468,0.678546,0.601947,0.532179,0.0487174,0.57707,0.554412,0.541309,0.66205,0.75554,0.156956,0.922351,0.292681,0.335812,0.93555,0.0713432,0.0943649,0.533162,0.789948,0.944478,0.190473,0.637765,0.0423669,0.669839,0.890334,0.849179,0.910791,0.0534648,0.225876,0.0501303,0.357958,0.293508,0.961492,0.607703,0.217042,0.841634,0.585131,0.406264,0.538721,0.403692,0.25432,0.852131,0.111796,0.979306,0.876937,0.740661,0.254696,0.445877,0.836567,0.941781,0.0420641,0.809508,0.766828,0.711384,0.642754,0.293034,0.348082,0.819375,0.212,0.874935,0.538404,0.363852,0.954904,0.890461,0.0491189,0.783913,0.554226,0.625529,0.314297,0.447387,0.887594,0.018858,0.146924,0.598216,0.757842,0.483626,0.481523,0.055136,0.381704,0.974635,0.488642,0.108501,0.816378,0.77011,0.787562,0.18851,0.958292,0.0546913,0.607871,0.355373,0.9223,0.10092,0.334522,0.867617,0.892787,0.69785,0.515204,0.201339,0.0685408,0.433601,0.460149,0.906232,0.797932,0.12323,0.185651,0.785187,0.021015,0.912888,0.998402,0.537331,0.599551,0.900905,0.847692,0.127449,0.147729,0.576561,0.467216,0.576499,0.347775,0.826982,0.617537,0.551942,0.924567,0.865604,0.577181,0.48911,0.21595,0.44155,0.796024,0.974416,0.969641,0.694275,0.43035,0.246383,0.570171,0.689551,0.335208,0.659129,0.372048,0.342448,0.0315372,0.422587,0.62064,0.508232,0.627891,0.64731,0.339327,0.729561,0.192378,0.909896,0.657549,0.770018,0.947452,0.295501,0.766578,0.0174837,0.227466,0.157427,0.0897843,0.701311,0.336244,0.609828,0.448773,0.897684,0.245538,0.878147,0.852576,0.308016,0.514919,0.103,0.847272,0.748971,0.0365677,0.51633,0.44811,0.902092,0.331338,0.697111,0.773607,0.285129,0.55656,0.154173,0.515718,0.955977,0.295939,0.600246,0.258886,0.677575,0.739628,0.990701,0.749079,0.0859178,0.30069,0.838586,0.440416,0.970369,0.987207,0.488157,0.070414,0.859958,0.133424,0.412789,0.789739,0.440183,0.384572,0.565464,0.0818543,0.240336,0.0244344,0.169791,0.712034,0.176536,0.150041,0.728637,0.989305,0.789417,0.956327,0.350992,0.0341385,0.0372287,0.0443972,0.513326,0.764785,0.379323,0.702257,0.00758922,0.275993,0.542287,0.879012,0.857148,0.473006,0.049159,0.651516,0.0345407,0.781385,0.378023,0.746591,0.831217,0.968436,0.304565,0.630842,0.22513,0.143415,0.490142,0.712207,0.218604,0.783758,0.417443,0.822259,0.551043,0.657403,0.0235559,0.248514,0.46057,0.507133,0.47723,0.97143,0.825556,0.622756,0.0586914,0.118969,0.421054,0.522843,0.890926,0.333514,0.0610406,0.740929,0.715193,0.587376,0.288175,0.41622,0.192071,0.531472,0.902303,0.215878,0.0349453,0.408039,0.433749,0.822313,0.167469,0.641858,0.03691,0.441781,0.0256307,0.368385,0.12411,0.5767,0.296769,0.00567085,0.825478,0.60786,0.443464,0.347192,0.454189,0.261388,0.892175,0.507629,0.0269041,0.373679,0.470322,|0.127306,0.518446,0.274004,0.895131,0.940087,0.490984,0.970935,0.0477167,0.0461243,0.408622,0.503064,0.242153,0.602554,0.263362,0.457911,0.326856,0.898323,0.738421,0.311819,0.0645267,0.984098,0.443125,0.926425,0.312366,0.724718,0.31627,0.174745,0.290294,0.915118,0.392398,0.376747,0.117781,0.905166,0.452158,0.646234,0.0829714,0.169342,0.326484,0.610882,0.252485,0.865075,0.837375,0.802021,0.659039,0.394592,0.690912,0.936906,0.700992,0.562836,0.856543,0.801884,0.845199,0.16716,0.608619,0.433554,0.530373,0.958861,0.500696,0.0208758,0.706197,0.110504,0.733528,0.51559,0.511241,0.594657,0.566111,0.34483,0.58324,0.260211,0.0507764,0.702805,0.44234,0.337245,0.837093,0.146285,0.438993,0.82357,0.364329,0.520921,0.495466,0.00649142,0.211435,0.960189,0.489746,0.185027,0.183552,0.924756,0.414335,0.238462,0.440073,0.378655,0.552461,0.395734,0.858014,0.630426,0.339098,0.883807,0.0548383,0.11894,0.719357,0.189617,0.125437,0.753441,0.811902,0.239261,0.369082,0.381305,0.294569,0.353534,0.218789,0.191259,0.235298,0.551432,0.353166,0.641334,0.253184,0.64966,0.897803,0.0265549,0.468841,0.543142,0.271672,0.0297483,0.698659,0.607256,0.628187,0.48228,0.194626,0.948909,0.412481,0.918609,0.144751,0.0444944,0.292758,0.49753,0.126301,0.0516657,0.512483,0.0192505,0.697186,0.776589,0.403747,0.846769,0.791614,0.0931037,0.918532,0.771973,0.121623,0.694426,0.299106,0.280445,0.620619,0.449385,0.482915,0.237626,0.452365,0.780418,0.281492,0.0275296,0.212997,0.413682,0.972316,0.816892,0.868443,0.21347,0.293335,0.374162,0.737311,0.933068,0.93548,0.378727,0.732562,0.36282,0.0124485,0.741797,0.800433,0.336593,0.617562,0.335422,0.598785,0.698725,0.630256,0.0325328,0.200571,0.113575,0.318318,0.846057,0.742305,0.821079,0.57406,0.122891,0.78833,0.584999,0.82146,0.451348,0.489028,0.753778,0.352787,0.698228,0.821576,0.146931,0.67115,0.465005,0.388908,0.865953,0.374383,0.535954,0.795001,0.777425,0.785491,0.794967,0.16602,0.556197,0.0477405,0.482983,0.0477769,0.968623,0.773699,0.667596,0.265308,0.66835,0.376754,0.512671,0.258325,0.937773,0.497452,0.993004,0.292577,0.101481,0.636695,0.529304,0.339956,0.284459,0.472327,0.561597,0.747324,0.841221,0.724563,0.881933,0.25159,0.666595,0.121961,0.44778,0.891854,0.16995,0.687139,0.942818,0.280777,0.674968,0.0880624,0.746825,0.279918,0.889776,0.483844,0.874648,0.791152,0.996983,0.930122,0.880675,0.460348,0.077976,0.78577,0.0610213,0.520928,0.964345,0.107851,0.787959,0.871287,0.664674,0.46496,0.121597,0.907406,0.893857,0.085929,0.431901,0.11495,0.754286,0.857833,0.787206,0.246189,0.929952,0.961223,0.586434,0.426932,0.462852,0.508026,0.457869,0.9018,0.142999,0.94413,0.476063,0.171261,0.361557,0.917937,0.190258,0.959137,0.992303,0.776317,0.313323,0.234635,0.450925,0.695908,0.598924,0.997837,0.550792,0.175653,0.144845,0.404145,0.506283,0.0987868,0.877581,0.497836,0.472329,0.311395,0.0740498,0.719216,0.3107,0.405788,0.10898,0.91278,0.89334,0.925046,0.376926,0.244047,0.778866,0.769285,0.72042,0.638448,0.512277,0.0127718,0.940889,0.522907,0.654812,0.43962,0.937071,0.710367,0.621873,0.750013,0.477604,0.217526,0.293497,0.25962,0.211091,0.374469,0.0997223,0.456178,0.0737015,0.623074,0.0244032,0.193454,0.858593,0.621874,0.312177,0.253968,0.653252,0.79788,0.112326,0.651206,0.526518,0.254793,0.243153,0.201477,0.534188,0.515272,0.452343,0.208578,0.615153,0.290711,0.106248,0.260703,0.739066,0.140112,0.826208,0.429152,0.063014,0.711793,0.769952,0.53953,0.810159,0.0843283,0.802281,0.447305,0.443139,0.00456899,0.0952949,0.116685,0.926733,0.539194,0.829483,0.536796,0.747993,0.185057,0.238127,0.899916,0.706788,0.412065,0.595972,0.383967,0.993278,0.092229,0.540018,0.0672758,0.210916,0.783229,0.354026,0.213656,0.255848,0.587668,0.499976,0.813634,0.731703,0.146668,0.547219,0.393923,0.31932,0.67979,0.380888,0.849757,0.524498,0.425067,0.42046,0.573744,0.181826,0.19463,0.836528,0.262364,0.0938136,0.326918,0.610614,0.0415276,0.981426,0.914462,0.468732,0.697404,0.894731,0.139022,0.948749,0.204062,0.881045,0.470749,0.342083,0.896424,0.0118201,0.114737,0.250442,0.956506,0.804598,0.337114,0.955249,0.164059,0.474354,0.292407,0.846484,0.830424,0.659977,0.430867,0.352134,0.326402,0.706048,0.577358,0.612772,0.570282,0.915597,0.563992,0.0252057,0.762782,0.713293,0.312607,0.0906373,0.696856,0.0823773,0.876456,0.939968,0.982259,0.293683,0.245573,0.981549,0.703986,0.551305,0.538952,0.879132,0.148454,0.770876,0.174153,0.00343341,0.527671,0.880513,0.043519,0.157463,0.888111,0.39212,0.836511,0.197872,0.0617808,0.928978,0.90835,0.198662,0.940832,0.791339,0.694449,0.917187,0.926678,0.572927,0.0308966,0.346376,0.398774,0.497425,0.767243,0.395507,0.853791,0.817598,0.447632,0.990002,0.803537,0.328928,0.0486109,0.850256,0.506669,0.804786,0.910057,0.850335,0.914981,0.92914,0.983302,0.412903,0.42572,0.261024,0.977652,0.175847,0.10274,0.706959,0.643097,0.767613,0.8487,0.339187,0.290359,0.51182,0.145158,0.610287,0.925198,0.195355,0.975205,0.1632,0.800589,0.108816,0.379604,0.401605,0.845153,0.0903178,0.906366,0.0627506,0.91415,0.110159,0.631369,0.592161,0.573855,0.33039,0.261046,0.398573,0.994474,0.420037,0.621269,0.487661,0.732278,0.109747,0.159408,0.142346,0.224689,0.00234604,0.599327,0.427905,0.258359,0.958656,0.051662,0.254103,0.24414,0.692711,0.490949,0.714567,0.0604284,0.974994,0.929946,0.803084,0.0513839,0.29988,0.0528408,0.567881,0.318972,0.977942,0.908887,0.181696,0.940023,0.752601,0.645908,0.87958,0.614932,0.46184,0.788057,0.501818,0.748028,0.971893,0.0999191,0.193851,0.0173798,0.161978,0.816428,0.92692,0.509047,0.292744,0.380791,0.929703,0.645763,0.861797,0.131233,0.0194492,0.497215,0.292484,0.378973,0.594761,0.736064,0.119956,0.354928,0.493211,0.628212,0.921017,0.486865,0.344051,0.55065,0.308843,0.971154,0.481062,0.328815,0.208552,0.26356,0.808512,0.307792,0.694412,0.356553,0.152669,0.323792,0.965129,0.603438,0.964717,0.985183,0.34636,0.613909,0.067865,0.314631,0.0244401,0.0470473,0.0690649,0.262212,0.328256,0.417729,0.0852447,0.188451,0.886353,0.0717188,0.474294,0.746864,0.0133412,0.530947,0.0638907,0.859526,0.621853,0.159792,0.189063,0.621085,0.215147,0.651063,0.922275,0.236742,0.756392,0.377945,0.557683,0.939797,0.609201,0.442087,0.844488,0.132682,0.819934,0.940232,0.22649,0.699682,0.264302,0.696261,0.395772,0.335047,0.908919,0.995221,0.491731,0.308302,0.775295,0.962761,0.261152,0.952007,0.0989235,0.537473,0.89395,0.599681,0.301077,0.810678,0.288704,0.322681,0.0188277,0.861122,0.214931,0.291729,0.587768,0.556251,0.614786,0.446643,0.0931792,0.00267655,0.900808,0.447574,0.361062,0.858831,0.218389,0.935646,0.0742155,0.680394,0.0572122,0.834743,0.158296,0.116627,0.511709,0.879389,0.310104,0.0856005,0.485353,0.78973,0.991435,0.700691,0.0970956,0.0749855,0.802752,0.931033,0.132933,0.431764,0.410965,0.828291,0.173484,0.912235,0.712027,0.183692,0.860364,0.521143,0.447554,0.664585,0.190875,0.39103,0.380266,0.107647,0.507752,0.353306,0.88489,0.988845,0.883298,0.404255,0.297565,0.7288,0.245054,0.552713,0.665099,0.373676,0.510627,0.701351,0.0176535,0.766895,0.393428,0.18664,0.315896,0.0912811,0.5336,0.42405,0.403271,0.432798,0.555907,0.137623,0.910755,0.308975,0.974304,0.376765,0.914845,0.428792,0.478495,0.764117,0.319275,0.416375,0.47931,0.733615,0.932299,0.442367,0.621729,0.816158,0.501913,0.441938,0.504574,0.827884,0.62718,0.265271,0.695136,0.817375,0.0507206,0.455528,0.286296,0.584965,0.875395,0.152004,0.775717,0.255099,0.47732,0.410402,0.583974,0.540809,0.998188,0.494584,0.166116,0.952616,0.926649,0.734011,0.559097,0.494293,0.766431,0.0328085,0.522637,0.979066,0.314767,0.173899,0.320848,0.773417,0.483667,0.940763,0.292909,0.321871,0.643678,0.0705138,0.183879,0.25958,0.75966,0.919314,0.428319,0.960428,0.73449,0.140056,0.945565,0.684681,0.746855,0.0763028,0.729339,0.996367,0.242968,0.624773,0.965748,0.793735,0.0987061,0.908203,0.448968,0.913684,0.472211,0.0510526,0.731198,0.00379896,0.340163,0.0767671,0.082419,0.60251,0.766984,0.424734,0.393995,0.218799,0.791505,0.0487971,0.370651,0.505916,0.727743,0.408111,0.247422,0.928815,0.144012,0.445376,0.0304168,0.769935,0.0330926,0.773973,0.473418,0.495135,0.767782,0.573042,0.481558,0.913678,0.104141,0.115197,0.228366,0.209176,0.793014,0.518824,0.373399,0.749666,0.358969,0.197139,0.0273869,0.1564,0.862107,0.405346,0.606896,0.765009,0.657352,0.521388,0.850485,0.90186,0.36944,0.421946,0.303784,0.294459,0.155347,0.999862,0.0800937,0.156938,0.3916,0.76257,0.39325,0.239607,0.725588,0.915745,0.858054,0.276602,0.137114,0.696844,0.242516,0.390326,0.165058,0.706354,0.124085,0.607755,0.515781,0.764195,0.110328,0.173595,0.115714,0.461547,0.00520748,0.400692,0.844009,0.20691,0.869812,0.845623,0.356871,0.492456,0.687854,0.888834,0.0513627,0.632401,0.162884,0.830553,0.720995,0.280694,0.69147,0.311287,0.113424,0.306529,0.718913,0.579434,0.183665,0.947631,0.821067,0.915949,0.499749,0.499151,0.860277,0.23902,0.528989,0.42018,0.890485,0.0787804,0.00227273,0.213149,0.849304,0.247238,0.972816,0.628044,0.0101079,0.655495,0.942801,0.81568,0.316618,0.841302,0.332604,0.86641,0.0482779,0.28157,0.806898,0.777641,0.487131,0.467809,0.522227,0.953991,0.194048,0.794557,|0.0172791,0.831845,0.532922,0.484752,0.947782,0.510194,0.0788221,0.169266,0.658812,0.379332,0.216937,0.726626,0.897362,0.286345,0.22232,0.296381,0.49697,0.328205,0.440569,0.825817,0.869519,0.582196,0.307547,0.328358,0.0358906,0.566206,0.806453,0.709193,0.136125,0.425178,0.160544,0.756849,0.957234,0.802916,0.825352,0.481842,0.555297,0.240759,0.226555,0.666089,0.568421,0.729831,0.457868,0.443149,0.126834,0.568414,0.0917572,0.796903,0.473152,0.0330927,0.225905,0.999368,0.659425,0.270554,0.272942,0.70036,0.136203,0.182093,0.549131,0.178239,0.913932,0.0420294,0.498429,0.243157,0.258632,0.652103,0.434239,0.537847,0.904986,0.196272,0.755563,0.223843,0.143001,0.666766,0.639841,0.842992,0.523938,0.943046,0.841556,0.72506,0.233445,0.594851,0.555865,0.770292,0.850259,0.974082,0.483655,0.19898,0.211472,0.752604,0.470438,0.24439,0.558612,0.277666,0.15014,0.427972,0.84094,0.8469,0.204561,0.626304,0.0289801,0.659886,0.768799,0.759195,0.672593,0.783309,0.343395,0.317543,0.553644,0.922919,0.0213734,0.928672,0.214768,0.0823638,0.186249,0.81446,0.966074,0.738099,0.129613,0.545268,0.626728,0.32103,0.813403,0.864249,0.755602,0.0475953,0.465138,0.628422,0.918703,0.129497,0.671476,0.974025,0.103785,0.132327,0.500962,0.38402,0.538999,0.374402,0.846309,0.772703,0.139492,0.548383,0.799403,0.880813,0.400935,0.766835,0.0779436,0.838841,0.529362,0.77724,0.755024,0.905593,0.298098,0.602504,0.979608,0.617833,0.665584,0.308553,0.417145,0.767009,0.969706,0.399441,0.202652,0.866337,0.29476,0.502886,0.0200747,0.439433,0.553892,0.254463,0.547252,0.589539,0.36483,0.654938,0.140486,0.943768,0.315145,0.495644,0.873299,0.0317685,0.911568,0.966008,0.61257,0.260723,0.610216,0.911986,0.615477,0.525418,0.851344,0.461901,0.888646,0.198337,0.195266,0.707291,0.320702,0.409624,0.672958,0.27766,0.223781,0.326722,0.846457,0.969927,0.165219,0.426654,0.130293,0.712896,0.513854,0.397588,0.924388,0.778609,0.00334805,0.159107,0.716178,0.816264,0.421073,0.26285,0.949256,0.40512,0.345713,0.0287956,0.382717,0.189968,0.171702,0.940935,0.770743,0.0337971,0.907775,0.738345,0.545171,0.828918,0.978073,0.00169194,0.299853,0.46048,0.376061,0.436252,0.0729945,0.872141,0.587672,0.281848,0.923727,0.556048,0.0607978,0.544868,0.450617,0.974049,0.213629,0.387875,0.584508,0.719639,0.857629,0.740989,0.0934438,0.640014,0.720605,0.606096,0.0276024,0.604623,0.218163,0.137628,0.323227,0.590811,0.741831,0.622101,0.213822,0.644356,0.412794,0.388715,0.938738,0.243121,0.0285352,0.775572,0.655365,0.967806,0.390227,0.00380021,0.835241,0.109411,0.764513,0.0701017,0.579289,0.788388,0.414218,0.931065,0.811745,0.474057,0.97027,0.5966,0.0477642,0.0800182,0.892768,0.82129,0.357126,0.392253,0.115719,0.0891271,0.775658,0.269984,0.684861,0.97568,0.446856,0.952876,0.847883,0.855624,0.0139576,0.602642,0.597863,0.978941,0.754601,0.158662,0.362491,0.703726,0.217662,0.497794,0.274548,0.36477,0.0997769,0.309467,0.844089,0.367645,0.0569955,0.865284,0.851487,0.16982,0.745159,0.44206,0.0161303,0.469515,0.0308278,0.268282,0.629673,0.417085,0.174654,0.416859,0.651834,0.354702,0.890406,0.127199,0.740077,0.515907,0.798713,0.371522,0.4943,0.28987,0.604158,0.48177,0.699199,0.0942707,0.581735,0.197427,0.182971,0.170874,0.844317,0.48627,0.241551,0.0399939,0.508826,0.257584,0.6137,0.799819,0.105428,0.927898,0.967679,0.673698,0.448085,0.467026,0.563721,0.840243,0.72994,0.939403,0.141156,0.48769,0.219214,0.463186,0.518741,0.768783,0.111956,0.749505,0.137277,0.327302,0.822743,0.695354,0.566584,0.129781,0.987454,0.659474,0.504809,0.423178,0.653933,0.230939,0.466365,0.178342,0.000432432,0.892432,0.850042,0.161001,0.911942,0.485128,0.396541,0.867019,0.497442,0.308877,0.521954,0.665807,0.0569857,0.0293933,0.48094,0.535212,0.524382,0.10477,0.339538,0.953899,0.464844,0.0741995,0.759806,0.467126,0.711159,0.580341,0.0034734,0.12564,0.95657,0.274866,0.397514,0.166353,0.964164,0.599264,0.0526065,0.370582,0.874819,0.410865,0.803811,0.0369654,0.754834,0.788257,0.164586,0.468628,0.406916,0.466921,0.810387,0.209795,0.745794,0.802032,0.400302,0.555293,0.470515,0.929023,0.461883,0.445838,0.777319,0.266961,0.247807,0.579543,0.0432779,0.233059,0.52558,0.738604,0.590476,0.245617,0.760474,0.0760491,0.0202974,0.203898,0.973012,0.991407,0.551861,0.422728,0.872427,0.217672,0.20367,0.778056,0.106721,0.125579,0.554846,0.997845,0.244263,0.489267,0.417035,0.755011,0.44238,0.0152937,0.646484,0.18221,0.246824,0.123243,0.417419,0.66786,0.292095,0.281828,0.475175,0.932814,0.72561,0.0160007,0.501245,0.293626,0.198701,0.654196,0.848358,0.570428,0.413484,0.956397,0.769042,0.463656,0.806384,0.734229,0.455887,0.840938,0.829899,0.274838,0.406434,0.187637,0.344486,0.260685,0.493967,0.767946,0.00868756,0.892341,0.405703,0.959471,0.589272,0.391646,0.388716,0.447733,0.72612,0.340973,0.53975,0.757397,0.469499,0.883622,0.107596,0.684167,0.711902,0.373986,0.80194,0.745013,0.522569,0.00512505,0.856335,0.906868,0.482957,0.538689,0.226333,0.750281,0.967067,0.260529,0.346476,0.610969,0.808096,0.946012,0.390777,0.727926,0.401717,0.00974095,0.37936,0.54411,0.132321,0.245439,0.422712,0.821035,0.0583155,0.761595,0.466853,0.0193842,0.242167,0.541174,0.43167,0.939556,0.0691106,0.9955,0.540904,0.680843,0.729412,0.721735,0.959771,0.896271,0.149612,0.397765,0.0844614,0.91187,0.4193,0.808038,0.0462289,0.713027,0.738931,0.983821,0.478599,0.791012,0.296451,0.863744,0.809292,0.656324,0.337777,0.0139616,0.844939,0.187884,0.0231236,0.199004,0.223028,0.483794,0.876992,0.936928,0.844804,0.290583,0.144798,0.499828,0.565646,0.602489,0.19199,0.280241,0.520655,0.935282,0.294849,0.28841,0.583137,0.97369,0.906995,0.0144491,0.765979,0.0603697,0.109446,0.171629,0.267911,0.811003,0.176908,0.196753,0.949706,0.584872,0.53863,0.09708,0.469122,0.246364,0.497104,0.628726,0.466821,0.858034,0.984348,0.910132,0.628933,0.887526,0.195279,0.0572171,0.714067,0.568009,0.462615,0.497466,0.700261,0.45472,0.270867,0.664204,0.190839,0.853256,0.219446,0.398864,0.185114,0.896333,0.386389,0.43752,0.0248479,0.6306,0.547422,0.863961,0.142,0.0478254,0.035983,0.256867,0.924504,0.0399144,0.0663922,0.398184,0.982905,0.601868,0.01865,0.90593,0.319494,0.646523,0.256275,0.365645,0.724782,0.172301,0.446534,0.239284,0.472668,0.00923771,0.314934,0.194074,0.782142,0.139312,0.0482608,0.528931,0.802554,0.783727,0.624597,0.63513,0.354684,0.414575,0.562357,0.591939,0.711805,0.183855,0.667174,0.443936,0.28624,0.114626,0.0728315,0.539798,0.930502,0.323502,0.566421,0.898318,0.650846,0.391096,0.402541,0.0172868,0.312678,0.524782,0.106075,0.0567328,0.529069,0.763203,0.193937,0.47125,0.544108,0.857246,0.802963,0.727155,0.771384,0.490423,0.307656,0.774056,0.891589,0.0406528,0.821079,0.352355,0.525561,0.216429,0.578378,0.803448,0.256703,0.40731,0.469245,0.123756,0.0580879,0.454858,0.789782,0.916704,0.0550835,0.295957,0.985538,0.104295,0.0683913,0.100123,0.247309,0.724917,0.253844,0.595972,0.772976,0.893692,0.501124,0.372924,0.991148,0.6067,0.21381,0.516401,0.371642,0.587002,0.500361,0.363756,0.110533,0.133685,0.28842,0.397319,0.976955,0.420352,0.851264,0.310007,0.412596,0.881013,0.28259,0.805067,0.230628,0.182352,0.150719,0.673177,0.150713,0.797514,0.260482,0.624435,0.651908,0.118624,0.262438,0.490514,0.994773,0.338279,0.102187,0.316891,0.387562,0.441588,0.987963,0.900426,0.180025,0.540638,0.386414,0.616226,0.499738,0.551153,0.137923,0.199053,0.245433,0.540974,0.409309,0.539035,0.748003,0.520914,0.416272,0.645584,0.437983,0.811065,0.288213,0.518594,0.0879704,0.254472,0.795408,0.183203,0.358584,0.322085,0.416327,0.374504,0.501881,0.67336,0.354173,0.663436,0.0203251,0.512623,0.51568,0.857249,0.373783,0.362915,0.539628,0.674104,0.119073,0.751373,0.185531,0.269247,0.394042,0.242065,0.710222,0.17032,0.387106,0.899199,0.64585,0.398471,0.685444,0.908561,0.0328941,0.961787,0.98034,0.254284,0.759761,0.888191,0.881325,0.817718,0.357517,0.448144,0.183428,0.254062,0.968539,0.990668,0.440528,0.928007,0.359719,0.238255,0.0524262,0.977872,0.456765,0.511554,0.086419,0.941746,0.793504,0.309503,0.28242,0.110609,0.699068,0.447212,0.26802,0.906347,0.920812,0.797107,0.900804,0.722585,0.703401,0.434404,0.666855,0.835069,0.287134,0.555801,0.968742,0.507066,0.735121,0.14716,0.888392,0.450777,0.852929,0.813926,0.853015,0.926298,0.803014,0.736588,0.0726517,0.323459,0.838834,0.549343,0.741438,0.479651,0.776763,0.553174,0.322953,0.277548,0.915583,0.999024,0.0973098,0.469174,0.426959,0.423385,0.756195,0.803342,0.762727,0.763846,0.276753,0.0133708,0.819713,0.416503,0.522897,0.713877,0.0974741,0.427162,0.523821,0.809966,0.382856,0.525831,0.445018,0.975862,0.167623,0.108957,0.721055,0.728086,0.67624,0.218603,0.692448,0.435943,0.0594853,0.215279,0.582023,0.327467,0.586628,0.22566,0.0610819,0.514096,0.793246,0.0562043,0.781049,0.584421,0.374319,0.168895,0.975181,0.541885,0.23445,0.301124,0.689856,0.436359,0.217325,0.588894,0.116629,0.918212,0.937746,0.571836,0.78836,0.0122179,0.280924,0.835941,0.129576,0.222552,0.0767398,0.863307,0.597248,0.294597,0.926919,0.766437,0.164159,0.773461,0.690972,0.794155,0.644013,0.726071,0.885022,0.873393,0.168125,0.450305,0.613242,0.79268,0.238342,0.713138,|0.526825,0.720682,0.165135,0.506111,0.585225,0.0512553,0.739545,0.121946,0.94923,0.615286,0.350416,0.267382,0.804325,0.783681,0.428989,0.275436,0.832471,0.349516,0.962487,0.8962,0.360163,0.343262,0.576841,0.883881,0.39351,0.665765,0.762632,0.599223,0.31654,0.219486,0.475215,0.550385,0.921149,0.120983,0.320351,0.535581,0.818683,0.825,0.589923,0.534603,0.164885,0.810572,0.532422,0.425861,0.433859,0.873755,0.615768,0.761914,0.864988,0.0667748,0.626246,0.00594115,0.511929,0.509195,0.281512,0.266604,0.604698,0.985054,0.376775,0.236204,0.223464,0.601485,0.0642242,0.137542,0.749557,0.311413,0.14324,0.635431,0.252939,0.851668,0.112266,0.268545,0.524752,0.900865,0.547388,0.0568105,0.21275,0.702372,0.508441,0.742224,0.187052,0.305464,0.817682,0.200016,0.702895,0.94275,0.0595554,0.282407,0.432841,0.981113,0.748205,0.185563,0.723703,0.260098,0.881658,0.324333,0.217839,0.752587,0.0412617,0.981536,0.480685,0.947737,0.984319,0.872735,0.937438,0.32298,0.984526,0.291833,0.71907,0.456629,0.489686,0.406823,0.834497,0.0675551,0.712472,0.127888,0.359856,0.624093,0.410012,0.930272,0.290544,0.881779,0.661162,0.682244,0.885863,0.828839,0.109949,0.0760297,0.336601,0.246869,0.444296,0.113447,0.987532,0.276076,0.76863,0.911215,0.752543,0.930689,0.250047,0.8777,0.908004,0.706856,0.279103,0.899971,0.828625,0.499184,0.609176,0.0222336,0.796367,0.722553,0.785874,0.00553954,0.269188,0.908122,0.58355,0.316288,0.944316,0.861417,0.898068,0.886832,0.347716,0.994038,0.0498549,0.315385,0.370403,0.684667,0.513018,0.29387,0.989359,0.820281,0.112086,0.406106,0.493572,0.456751,0.0777096,0.521702,0.00657225,0.148794,0.930102,0.577707,0.164918,0.708711,0.209364,0.0296147,0.260787,0.573802,0.645333,0.531716,0.32855,0.502563,0.262298,0.656716,0.17376,0.682186,0.749627,0.832907,0.698269,0.523496,0.322492,0.56072,0.043798,0.932763,0.599719,0.555664,0.745232,0.272391,0.574444,0.349763,0.14565,0.478025,0.353388,0.534164,0.462834,0.42082,0.331974,0.388494,0.887794,0.583073,0.450183,0.484865,0.746384,0.160523,0.138139,0.534013,0.980989,0.269014,0.175482,0.244175,0.0563524,0.774464,0.523335,0.451795,0.0588269,0.416696,0.852344,0.391381,0.981568,0.453739,0.717622,0.561977,0.762073,0.685814,0.91865,0.429184,0.877503,0.789295,0.795896,0.662901,0.130388,0.469317,0.161418,0.29629,0.601797,0.701241,0.204158,0.19006,0.0120126,0.715056,0.823229,0.0784044,0.367938,0.200916,0.233419,0.867386,0.296333,0.109992,0.583323,0.786301,0.224775,0.580852,0.322809,0.218596,0.948845,0.118574,0.16129,0.545667,0.545572,0.75293,0.445862,0.892038,0.928166,0.555994,0.569659,0.471305,0.926997,0.787718,0.251158,0.00317782,0.629244,0.739251,0.704509,0.425781,0.695988,0.543035,0.368084,0.0971068,0.0392316,0.866737,0.778241,0.31673,0.976787,0.201706,0.714387,0.451216,0.708597,0.792367,0.594079,0.375063,0.841454,0.118858,0.499187,0.297548,0.680262,0.231087,0.246512,0.0719277,0.586509,0.998884,0.17866,0.115985,0.541441,0.685809,0.188639,0.936743,0.704292,0.753064,0.465769,0.821328,0.408462,0.194487,0.572771,0.0817136,0.934871,0.562193,0.104292,0.611644,0.385051,0.574097,0.828048,0.808643,0.461782,0.462486,0.137616,0.220887,0.287957,0.896103,0.296063,0.477425,0.711525,0.232275,0.494822,0.0757724,0.699859,0.266134,0.54431,0.120467,0.446033,0.425731,0.20662,0.706196,0.526224,0.0198411,0.31235,0.613038,0.792344,0.425319,0.416597,0.945161,0.184928,0.0430773,0.864135,0.0798329,0.744995,0.993979,0.617967,0.728613,0.571073,0.0734528,0.641698,0.460823,0.985431,0.387039,0.259016,0.982993,0.425581,0.946495,0.752032,0.108967,0.553949,0.801881,0.413301,0.417628,0.650397,0.612453,0.970471,0.373125,0.932229,0.257748,0.0524461,0.351028,0.294663,0.303257,0.686488,0.0396259,0.346934,0.533278,0.267247,0.590819,0.307829,0.561219,0.174389,0.974767,0.429969,0.644576,0.627089,0.107776,0.428971,0.900399,0.26527,0.152309,0.475096,0.0619847,0.969194,0.305329,0.718281,0.564265,0.605646,0.699558,0.347519,0.520396,0.91031,0.885847,0.645102,0.484214,0.970038,0.702,0.996124,0.525261,0.853884,0.855074,0.839243,0.862831,0.433281,0.0903702,0.607492,0.967372,0.575499,0.526221,0.140327,0.867676,0.534041,0.847507,0.872162,0.273259,0.698482,0.676315,0.0335413,0.217077,0.257096,0.194868,0.529306,0.859188,0.569246,0.662338,0.0317584,0.456449,0.605881,0.855002,0.811327,0.472301,0.84664,0.75724,0.714326,0.555222,0.00833702,0.79484,0.884014,0.888316,0.746727,0.86346,0.82148,0.0733826,0.0633923,0.175385,0.675105,0.955133,0.799323,0.922199,0.722781,0.1862,0.939154,0.295186,0.667625,0.908083,0.593243,0.648835,0.93809,0.635086,0.343946,0.0182447,0.790296,0.302844,0.19084,0.353506,0.129564,0.968961,0.838905,0.929829,0.573701,0.138867,0.299116,0.131398,0.267812,0.600656,0.393722,0.101342,0.750071,0.90898,0.538808,0.291019,0.286141,0.201295,0.825053,0.161733,0.478134,0.167478,0.798825,0.990086,0.520186,0.76387,0.110575,0.357085,0.0271088,0.687308,0.99937,0.867585,0.987218,0.318828,0.374681,0.286781,0.685332,0.214247,0.469556,0.0445023,0.837598,0.335247,0.29154,0.428814,0.0353435,0.0765699,0.227369,0.830254,0.810661,0.0355388,0.892537,0.805988,0.686758,0.871822,0.259979,0.230588,0.936229,0.424505,0.778622,0.667712,0.686532,0.121607,0.909545,0.541113,0.949611,0.257708,0.139791,0.0389413,0.390903,0.466316,0.703232,0.766993,0.024,0.960246,0.71886,0.53959,0.591521,0.109181,0.385451,0.235236,0.0528899,0.25042,0.0184118,0.917038,0.987658,0.79819,0.374997,0.981413,0.698365,0.245328,0.611993,0.593023,0.0873201,0.025458,0.117622,0.678495,0.265207,0.74821,0.267033,0.396116,0.167433,0.0601964,0.816939,0.26364,0.178163,0.837698,0.275602,0.809343,0.29595,0.0710803,0.960105,0.432962,0.732415,0.218126,0.376982,0.326686,0.0069567,0.164406,0.777897,0.636415,0.998734,0.0608247,0.71396,0.200772,0.783381,0.493259,0.484215,0.70758,0.735688,0.366477,0.0434029,0.765342,0.128071,0.980652,0.820089,0.976886,0.0249741,0.418731,0.117018,0.931036,0.853327,0.788795,0.256254,0.0433977,0.798179,0.827255,0.0446835,0.874006,0.825281,0.0555815,0.672231,0.0961335,0.972633,0.45271,0.716993,0.575066,0.358222,0.674494,0.530345,0.724303,0.654558,0.831964,0.480128,0.729004,0.684329,0.863198,0.385456,0.527575,0.510594,0.865541,0.63762,0.521706,0.259041,0.121368,0.839568,0.402348,0.851115,0.282507,0.467136,0.192587,0.942595,0.802204,0.629062,0.111843,0.901376,0.459769,0.656649,0.240447,0.887283,0.844573,0.143106,0.125859,0.329935,0.342238,0.356016,0.00433987,0.835529,0.507261,0.538966,0.0944973,0.219597,0.0635328,0.74608,0.777463,0.918812,0.263155,0.735456,0.735095,0.592579,0.635916,0.989787,0.83994,0.75655,0.0649408,0.1865,0.0142947,0.230431,0.479467,0.860365,0.640861,0.320908,0.994225,0.202784,0.570556,0.781957,0.559165,0.0633026,0.75894,0.718834,0.451152,0.469632,0.197011,0.446232,0.186199,0.100809,0.773408,0.854204,0.486396,0.954737,0.872193,0.847202,0.0471565,0.625492,0.434342,0.543565,0.262023,0.885154,0.556711,0.402548,0.910022,0.942696,0.471279,0.840767,0.4407,0.390746,0.110725,0.61543,0.000176311,0.29623,0.508381,0.342659,0.589606,0.242918,0.69899,0.917499,0.787442,0.81343,0.253326,0.182119,0.0271484,0.604171,0.489637,0.892489,0.583113,0.612754,0.0493729,0.797084,0.119411,0.106167,0.190318,0.465536,0.286609,0.316915,0.323377,0.684434,0.133306,0.93576,0.442201,0.0728115,0.236609,0.984708,0.0521212,0.39402,0.407109,0.397946,0.284327,0.48754,0.871261,0.390504,0.699695,0.866361,0.126877,0.192829,0.0684215,0.267235,0.663094,0.75907,0.0231638,0.146194,0.451828,0.349149,0.979346,0.0650465,0.613548,0.720439,0.739074,0.519763,0.494954,0.90882,0.342747,0.901738,0.994925,0.528866,0.429472,0.56082,0.692744,0.891434,0.515725,0.310725,0.00892687,0.623335,0.1147,0.92826,0.753768,0.414978,0.570988,0.733283,0.594339,0.458331,0.0228652,0.458198,0.815478,0.534063,0.896168,0.639644,0.85184,0.811852,0.0924754,0.579037,0.820024,0.0334823,0.453288,0.731269,0.986669,0.375678,0.748836,0.687535,0.561112,0.169605,0.144302,0.583038,0.341977,0.495121,0.687895,0.48062,0.654558,0.90034,0.123225,0.0492659,0.117403,0.11863,0.51061,0.647778,0.36769,0.0742302,0.659576,0.530854,0.185125,0.323967,0.875811,0.747978,0.296099,0.0607884,0.264306,0.461,0.756622,0.0687811,0.116931,0.162209,0.683502,0.382943,0.111858,0.575775,0.403441,0.0569877,0.989505,0.138313,0.577179,0.0671155,0.784885,0.0482783,0.733205,0.322859,0.259142,0.212634,0.9828,0.95652,0.233123,0.430287,0.756108,0.891484,0.0942796,0.232873,0.0166484,0.374906,0.0445943,0.713273,0.196103,0.125073,0.437695,0.364903,0.61055,0.0948085,0.501407,0.489821,0.609929,0.925752,0.303183,0.469276,0.0318469,0.207677,0.788464,0.39317,0.638814,0.320999,0.617793,0.990256,0.894814,0.780622,0.317466,0.253699,0.535649,0.687585,0.334827,0.439307,0.733517,0.705687,0.319216,0.121657,0.17962,0.875708,0.0925587,0.880059,0.719034,0.276753,0.679897,0.359721,0.621967,0.0666699,0.439441,0.584254,0.747366,0.340301,0.162597,0.684979,0.654678,0.638887,0.760876,0.322589,0.258593,0.180794,0.14649,0.0599147,0.796785,0.99625,0.878349,0.813916,0.581226,0.94801,0.262523,0.607174,0.742628,0.0394313,0.0873649,0.695133,0.362475,0.424519,0.36429,0.0141171,0.278458,0.93472,0.465009,0.610103,0.551251,0.196213,0.965228,|0.705668,0.128874,0.461076,0.927188,0.181654,0.591753,0.526142,0.882789,0.152511,0.552459,0.807424,0.197229,0.839419,0.993645,0.0809475,0.854057,0.97347,0.103086,0.840729,0.658237,0.67814,0.96011,0.879663,0.950082,0.105272,0.29395,0.115715,0.731331,0.590881,0.183288,0.317346,0.653227,0.635055,0.262057,0.320819,0.0897583,0.717108,0.81205,0.476014,0.0087387,0.173448,0.37634,0.168331,0.219235,0.0752152,0.965949,0.970029,0.878577,0.850008,0.0764058,0.176969,0.551526,0.20559,0.789366,0.707402,0.675178,0.929578,0.49003,0.206571,0.0878674,0.264347,0.502659,0.111652,0.989201,0.373057,0.196184,0.13299,0.292125,0.933804,0.528734,0.0403607,0.325331,0.286225,0.231367,0.0471912,0.777206,0.307074,0.790489,0.584273,0.364955,0.815561,0.78391,0.906217,0.0118875,0.35685,0.0437477,0.0948173,0.205084,0.492648,0.718563,0.987014,0.6799,0.669266,0.246348,0.293928,0.671125,0.796772,0.247167,0.819105,0.213913,0.679751,0.843571,0.493609,0.770138,0.755286,0.488875,0.108627,0.383326,0.970546,0.316869,0.151078,0.784722,0.518533,0.0478968,0.190243,0.748802,0.888447,0.6368,0.923221,0.578487,0.827556,0.0894974,0.463323,0.466809,0.452792,0.917746,0.994331,0.43908,0.427093,0.935326,0.899765,0.533129,0.923796,0.162825,0.192027,0.543083,0.448454,0.128919,0.472831,0.241261,0.197092,0.222291,0.570537,0.186033,0.26082,0.667365,0.435361,0.118402,0.140457,0.690881,0.561928,0.185573,0.596052,0.499734,0.665329,0.539885,0.745129,0.802374,0.631608,0.882408,0.990699,0.346865,0.096868,0.881159,0.0522351,0.337567,0.0396571,0.292382,0.749987,0.326216,0.741467,0.464567,0.0671025,0.166857,0.119449,0.117105,0.834419,0.446598,0.976551,0.154687,0.635371,0.818295,0.511769,0.419163,0.558694,0.433183,0.826231,0.425689,0.0322133,0.87152,0.27375,0.906517,0.296226,0.848589,0.515821,0.755508,0.781462,0.649551,0.556807,0.938719,0.953875,0.197292,0.824185,0.836568,0.83885,0.457106,0.349155,0.656417,0.134288,0.596547,0.354113,0.443543,0.724548,0.00594771,0.659953,0.539825,0.894302,0.0745943,0.101578,0.58558,0.971588,0.780947,0.941813,0.620682,0.131413,0.74861,0.00215113,0.241031,0.416578,0.143958,0.888627,0.0371016,0.444581,0.590478,0.270672,0.988048,0.85226,0.594062,0.0922994,0.666166,0.0418371,0.324752,0.928984,0.731603,0.771892,0.380611,0.002231,0.449845,0.708201,0.0714524,0.0134131,0.861625,0.786227,0.230812,0.106415,0.118165,0.830523,0.826143,0.527294,0.84119,0.620641,0.229309,0.885074,0.101725,0.328069,0.274495,0.967194,0.545058,0.808326,0.0453096,0.919219,0.43747,0.449908,0.248239,0.0546584,0.263766,0.330545,0.54111,0.734852,0.873809,0.73824,0.351322,0.981451,0.215487,0.018728,0.251151,0.487631,0.798142,0.922352,0.449682,0.862232,0.708672,0.664964,0.32638,0.217238,0.490137,0.42875,0.0361553,0.659813,0.635294,0.382028,0.27186,0.241038,0.0915953,0.470348,0.238765,0.342035,0.328331,0.911925,0.975632,0.811548,0.249156,0.610416,0.291268,0.325479,0.81199,0.765499,0.0814995,0.791953,0.0240492,0.210856,0.0424103,0.761349,0.442161,0.789069,0.475632,0.0324973,0.739342,0.738614,0.526866,0.763955,0.850662,0.554992,0.950647,0.403077,0.158069,0.339788,0.574277,0.546638,0.951953,0.648737,0.439213,0.841057,0.691143,0.0961038,0.940326,0.266962,0.181715,0.138951,0.552172,0.600904,0.58647,0.281705,0.504261,0.792103,0.119729,0.0808359,0.59824,0.0278537,0.99658,0.555613,0.930751,0.57718,0.751437,0.2501,0.673127,0.84924,0.898644,0.305586,0.649975,0.378972,0.234796,0.611581,0.866304,0.338408,0.53472,0.111553,0.0325614,0.861107,0.0277347,0.025532,0.152599,0.995224,0.479359,0.384621,0.88564,0.0159079,0.878568,0.325812,0.915406,0.36736,0.634397,0.778004,0.469084,0.224426,0.576402,0.819841,0.978438,0.0500918,0.905924,0.591286,0.653405,0.0342553,0.263223,0.7631,0.414721,0.107265,0.765072,0.571896,0.940395,0.969964,0.851302,0.135362,0.727587,0.640342,0.183591,0.0714829,0.42494,0.389751,0.466921,0.495689,0.603297,0.859969,0.108753,0.0544798,0.224916,0.192214,0.399255,0.700479,0.46225,0.473715,0.295755,0.603625,0.2133,0.595973,0.104349,0.104673,0.543752,0.526362,0.958255,0.789702,0.753542,0.916192,0.512132,0.929251,0.189667,0.00876868,0.384786,0.26829,0.14062,0.88348,0.815465,0.85443,0.128087,0.199398,0.0401376,0.682833,0.965318,0.781674,0.120645,0.717852,0.504289,0.503776,0.740676,0.86483,0.720897,0.888897,0.821569,0.302468,0.315517,0.736977,0.747751,0.695019,0.290346,0.267972,0.343252,0.846082,0.717334,0.212919,0.448885,0.536551,0.251724,0.500416,0.492763,0.472478,0.784335,0.885659,0.710666,0.225575,0.698884,0.957865,0.563725,0.24211,0.374223,0.402791,0.158001,0.296271,0.583953,0.192859,0.264395,0.879105,0.100825,0.796171,0.594655,0.844462,0.687615,0.70714,0.765926,0.967092,0.79771,0.29902,0.580571,0.824611,0.562576,0.118079,0.799378,0.490128,0.230377,0.4668,0.052765,0.349709,0.160362,0.521459,0.937796,0.537566,0.17433,0.0479947,0.131372,0.350972,0.753997,0.0346207,0.331446,0.252925,0.309271,0.288343,0.278513,0.0679271,0.616328,0.0147123,0.301022,0.41471,0.537179,0.0386699,0.297892,0.620236,0.5315,0.0412779,0.722795,0.752557,0.986663,0.782012,0.718455,0.778509,0.0977727,0.90946,0.540706,0.803938,0.655154,0.507931,0.048895,0.274222,0.729538,0.955017,0.539893,0.00788289,0.655053,0.199529,0.941309,0.906898,0.052317,0.53648,0.671807,0.525056,0.454152,0.783391,0.451784,0.763122,0.532231,0.84216,0.858644,0.0180846,0.835437,0.280248,0.262733,0.949556,0.428007,0.747243,0.271828,0.20081,0.686979,0.414846,0.657548,0.804135,0.253718,0.366048,0.541371,0.500813,0.478219,0.241355,0.844154,0.25357,0.643803,0.885583,0.531094,0.929629,0.805519,0.107695,0.402425,0.48233,0.661279,0.369442,0.0547667,0.175423,0.500404,0.50336,0.616356,0.0503879,0.489636,0.839637,0.129386,0.430718,0.244423,0.655566,0.394588,0.411127,0.671256,0.358437,0.886288,0.423387,0.209401,0.538153,0.160849,0.465063,0.319761,0.727193,0.555823,0.046701,0.440926,0.983522,0.160153,0.93853,0.59397,0.768822,0.931494,0.160455,0.439044,0.291897,0.863149,0.294534,0.119789,0.869713,0.125193,0.913527,0.363514,0.740399,0.707437,0.760833,0.286763,0.135831,0.407096,0.343869,0.186962,0.271581,0.0329163,0.139959,0.225547,0.450417,0.360429,0.806939,0.374522,0.824534,0.45492,0.533312,0.698186,0.156608,0.424162,0.60445,0.462012,0.131835,0.271208,0.190796,0.89875,0.453327,0.712152,0.868464,0.349027,0.853925,0.26039,0.717165,0.440645,0.940941,0.619462,0.0797051,0.735194,0.204676,0.499657,0.100274,0.768562,0.984324,0.462694,0.984904,0.402487,0.0978531,0.291947,0.557142,0.519654,0.209297,0.0283992,0.011744,0.691512,0.176042,0.305688,0.912868,0.373614,0.547723,0.174997,0.86779,0.701793,0.475682,0.159685,0.378844,0.108286,0.0396336,0.128988,0.61343,0.549159,0.498418,0.849098,0.200257,0.157541,0.953182,0.472142,0.262353,0.220268,0.9207,0.493998,0.291498,0.0010038,0.482784,0.492225,0.219677,0.0580422,0.552287,0.841248,0.201862,0.491836,0.249823,0.940195,0.189019,0.303812,0.401821,0.797773,0.51123,0.560577,0.0579315,0.0861706,0.427089,0.572973,0.794469,0.851207,0.128743,0.242965,0.180545,0.0447938,0.0817815,0.786932,0.558959,0.752814,0.713213,0.526587,0.170783,0.541699,0.41734,0.229418,0.889934,0.828556,0.874096,0.907317,0.358409,0.852738,0.632534,0.744225,0.579356,0.533238,0.183402,0.861532,0.154297,0.351342,0.875713,0.708047,0.794664,0.518692,0.431686,0.875723,0.73662,0.787146,0.52892,0.929593,0.925186,0.987517,0.695134,0.502094,0.194306,0.855692,0.759591,0.814918,0.800148,0.0389044,0.591422,0.911752,0.327879,0.645884,0.511054,0.172626,0.692819,0.245622,0.461658,0.541719,0.506774,0.40206,0.880425,0.908346,0.71958,0.327411,0.37324,0.141039,0.914553,0.452243,0.749727,0.357851,0.342475,0.735675,0.773652,0.891439,0.379386,0.33869,0.983733,0.663542,0.863662,0.763147,0.648149,0.044418,0.374907,0.413387,0.778923,0.335381,0.394746,0.290684,0.155257,0.923698,0.744274,0.314537,0.414134,0.915859,0.526021,0.475698,0.0911928,0.0333691,0.975526,0.188111,0.561564,0.492431,0.341551,0.547092,0.380025,0.476657,0.654956,0.917293,0.608863,0.0237182,0.236979,0.222558,0.371942,0.732262,0.291195,0.625954,0.0222327,0.386115,0.52023,0.517887,0.240607,0.666655,0.693262,0.440504,0.124282,0.846667,0.308269,0.917225,0.999406,0.28992,0.303427,0.524841,0.48474,0.681795,0.626279,0.719809,0.765353,0.732692,0.859779,0.0594451,0.0404899,0.436013,0.270655,0.855991,0.723674,0.0726106,0.550091,0.116346,0.328255,0.839614,0.208481,0.652585,0.572154,0.0121291,0.404386,0.561019,0.760121,0.817857,0.94089,0.0315197,0.849154,0.248922,0.156097,0.660658,0.980994,0.617617,0.63867,0.737232,0.307345,0.444994,0.311219,0.0841726,0.151391,0.569412,0.693137,0.21716,0.683337,0.245071,0.680787,0.0254771,0.13387,0.983836,0.91744,0.501749,0.615283,0.945717,0.200251,0.670475,0.309815,0.112516,0.581657,0.142434,0.95298,0.954307,0.615966,0.403996,0.545088,0.748901,0.0878279,0.535393,0.244053,0.904367,0.998208,0.515987,0.788965,0.717606,0.561012,0.614524,0.426909,0.463575,0.721332,0.974149,0.744518,0.832825,0.308693,0.5468,0.260006,0.736603,0.51923,0.452953,0.809443,0.672398,0.565923,0.273136,0.271616,0.983394,0.581374,0.986729,0.37309,0.3204,0.996628,0.190425,0.249493,0.746417,0.732784,0.281383,0.66694,0.561033,0.769019,0.627102,|0.80866,0.343679,0.933544,0.847992,0.530967,0.719696,0.964487,0.560436,0.439794,0.0944891,0.496022,0.375577,0.0667596,0.171246,0.0468206,0.164545,0.758301,0.532384,0.437241,0.913095,0.011568,0.295752,0.898499,0.775462,0.826373,0.228972,0.877897,0.0858466,0.874965,0.139061,0.889627,0.0980839,0.133253,0.425602,0.23587,0.318927,0.944072,0.609685,0.388303,0.0691999,0.278202,0.288104,0.80702,0.320437,0.955534,0.701091,0.88427,0.37524,0.16044,0.12408,0.047211,0.216341,0.959804,0.46291,0.0572698,0.610887,0.397581,0.912235,0.562634,0.701114,0.716587,0.104116,0.716294,0.985668,0.77362,0.277685,0.832256,0.268339,0.856744,0.61698,0.234203,0.553642,0.536256,0.792746,0.576684,0.570328,0.622379,0.515974,0.45501,0.979313,0.83902,0.0699095,0.170907,0.00263387,0.0457436,0.551716,0.572969,0.598725,0.497651,0.943846,0.603808,0.810392,0.805479,0.38187,0.649389,0.4091,0.866528,0.470429,0.121934,0.151578,0.233793,0.694304,0.955575,0.247512,0.0443775,0.276725,0.512838,0.0946289,0.831077,0.380396,0.854505,0.807633,0.449006,0.798812,0.670384,0.224454,0.751035,0.537065,0.0345982,0.326248,0.0656689,0.387829,0.791939,0.703551,0.998727,0.848014,0.710274,0.0230162,0.57988,0.19397,0.368543,0.952573,0.788038,0.300468,0.390906,0.187805,0.142758,0.986699,0.601862,0.129918,0.164515,0.372154,0.196397,0.361132,0.916161,0.731274,0.902333,0.682572,0.751186,0.605184,0.602753,0.333805,0.625107,0.160292,0.330845,0.786994,0.191952,0.356689,0.637169,0.549482,0.471264,0.617993,0.302902,0.563677,0.199293,0.749286,0.876585,0.0682141,0.97299,0.433784,0.169411,0.754579,0.30762,0.192489,0.680835,0.354753,0.522652,0.828825,0.548377,0.915621,0.125498,0.899406,0.99262,0.569571,0.98761,0.754825,0.0702441,0.363778,0.804001,0.260269,0.300349,0.226776,0.628174,0.86989,0.118964,0.0473967,0.495325,0.870049,0.125751,0.219483,0.536071,0.579596,0.770664,0.358919,0.321368,0.64844,0.357171,0.787035,0.388925,0.442295,0.865903,0.824577,0.290969,0.39167,0.251157,0.29895,0.877181,0.616461,0.417409,0.529752,0.144184,0.899213,0.286424,0.245611,0.765824,0.349881,0.752376,0.998075,0.49574,0.988939,0.569602,0.728784,0.377786,0.138816,0.232612,0.620828,0.476413,0.787926,0.430243,0.971649,0.0344432,0.950621,0.778077,0.681817,0.361815,0.859536,0.536691,0.606052,0.450232,0.257716,0.187274,0.876116,0.156043,0.0710949,0.420175,0.567922,0.6311,0.121482,0.60019,0.608665,0.375782,0.946971,0.577438,0.134146,0.681393,0.352157,0.73562,0.52831,0.147419,0.518172,0.276181,0.629558,0.627146,0.513775,0.620682,0.351953,0.53244,0.732902,0.171595,0.746912,0.740285,0.989213,0.600008,0.0178366,0.951661,0.466162,0.878432,0.383303,0.245427,0.802599,0.0269592,0.00534695,0.231227,0.876105,0.14234,0.849102,0.982967,0.890507,0.709019,0.615633,0.515729,0.656503,0.641164,0.402099,0.458697,0.869156,0.39128,0.389283,0.493235,0.47666,0.485349,0.602997,0.131765,0.403369,0.930534,0.147303,0.580159,0.862562,0.953833,0.959926,0.243894,0.917708,0.959488,0.611689,0.144099,0.625514,0.938682,0.969227,0.0156329,0.43116,0.782014,0.948359,0.0257421,0.418205,0.07665,0.812449,0.0590024,0.799566,0.080887,0.548812,0.561842,0.345085,0.711392,0.803282,0.191499,0.665933,0.663683,0.560148,0.522794,0.0729029,0.730925,0.934381,0.157068,0.54333,0.424115,0.315446,0.612278,0.00461102,0.0706778,0.51936,0.934467,0.907851,0.914789,0.347976,0.48592,0.650017,0.371939,0.684494,0.084911,0.268722,0.921441,0.207693,0.629651,0.817345,0.231097,0.617274,0.577515,0.874876,0.621857,0.0886341,0.0479913,0.335609,0.897481,0.873901,0.258835,0.398372,0.426289,0.673235,0.222885,0.980199,0.451534,0.773187,0.00113857,0.112211,0.979607,0.356889,0.954464,0.472387,0.211258,0.783048,0.612197,0.936865,0.486649,0.83905,0.119797,0.115145,0.41629,0.90506,0.983282,0.0394936,0.373275,0.390377,0.648545,0.294565,0.419173,0.968334,0.993504,0.365305,0.171174,0.32817,0.905723,0.220716,0.499627,0.247193,0.566646,0.979607,0.601322,0.179699,0.36531,0.05261,0.623014,0.0533437,0.0609236,0.472735,0.303003,0.0698211,0.740532,0.0355165,0.00118792,0.284597,0.793562,0.0676355,0.589527,0.364398,0.747838,0.523116,0.0102822,0.766353,0.71138,0.913546,0.20522,0.847345,0.0513662,0.255788,0.692486,0.805266,0.580792,0.591121,0.707622,0.784373,0.370254,0.694079,0.318774,0.0668219,0.764592,0.968267,0.448541,0.0591688,0.530687,0.901906,0.0669481,0.40374,0.655182,0.307692,0.676041,0.552065,0.488518,0.0260263,0.17856,0.643709,0.428259,0.707635,0.335536,0.470226,0.119532,0.857645,0.0206095,0.733074,0.00201416,0.8062,0.695961,0.367642,0.985137,0.833619,0.896745,0.486227,0.190707,0.144713,0.193023,0.502787,0.360056,0.220737,0.652136,0.788275,0.681938,0.347662,0.571574,0.021004,0.386941,0.744928,0.224859,0.524226,0.532968,0.196914,0.45026,0.129274,0.314735,0.398648,0.282025,0.165249,0.141253,0.847329,0.786633,0.506113,0.398298,0.331412,0.470054,0.169795,0.730794,0.872479,0.998985,0.637953,0.579387,0.137739,0.828213,0.455935,0.573644,0.712036,0.909885,0.577137,0.877736,0.984496,0.967731,0.58428,0.363521,0.210474,0.660368,0.809765,0.702728,0.136682,0.987235,0.799241,0.211791,0.922578,0.134264,0.254303,0.00791615,0.241228,0.597689,0.86141,0.116712,0.921362,0.902762,0.798628,0.580112,0.51357,0.325131,0.564593,0.783835,0.855945,0.522902,0.0884405,0.346884,0.931628,0.995427,0.488355,0.295014,0.987916,0.431056,0.470169,0.921859,0.0346209,0.108949,0.801803,0.214864,0.281305,0.597885,0.241327,0.16033,0.637822,0.683202,0.369574,0.344681,0.0240021,0.961275,0.870454,0.971567,0.866353,0.327234,0.920354,0.736401,0.31563,0.0434744,0.277435,0.507704,0.0485736,0.765054,0.0862609,0.585587,0.378603,0.970886,0.45641,0.682566,0.84884,0.0429227,0.962831,0.614074,0.172003,0.789042,0.215204,0.840072,0.153916,0.259098,0.962394,0.503983,0.852139,0.205126,0.178308,0.50943,0.716134,0.650735,0.964615,0.984022,0.246152,0.243391,0.446315,0.776082,0.393404,0.458603,0.993172,0.482207,0.260778,0.804233,0.540607,0.618159,0.884015,0.317417,0.135691,0.314285,0.168775,0.798829,0.214429,0.303971,0.714594,0.634999,0.454382,0.532902,0.829055,0.191707,0.538977,0.334064,0.761777,0.989889,0.964601,0.533482,0.0412428,0.561817,0.190296,0.654323,0.264254,0.822751,0.401582,0.888933,0.998524,0.939821,0.908005,0.431849,0.769309,0.586327,0.82621,0.550074,0.191917,0.0653276,0.0483676,0.981135,0.150278,0.963608,0.396976,0.202206,0.338095,0.284568,0.16364,0.019821,0.709833,0.793234,0.711361,0.404985,0.173738,0.853757,0.0235237,0.599354,0.901105,0.646394,0.52579,0.335672,0.26461,0.735305,0.318954,0.0253375,0.146304,0.806103,0.770429,0.24265,0.411485,0.448802,0.722926,0.0941167,0.449584,0.885251,0.508449,0.222316,0.483747,0.693812,0.0188639,0.86593,0.0571371,0.759665,0.78912,0.663359,0.906363,0.558782,0.647959,0.192958,0.764085,0.658357,0.548659,0.769765,0.975891,0.459698,0.741376,0.636191,0.732426,0.14522,0.480162,0.409199,0.414944,0.728989,0.876334,0.645614,0.472635,0.625799,0.524571,0.640628,0.363272,0.216891,0.0257862,0.472678,0.041208,0.905901,0.403161,0.590666,0.0350536,0.783592,0.856874,0.987698,0.0540777,0.173378,0.185525,0.0350521,0.0502815,0.731083,0.827466,0.544786,0.77531,0.434247,0.830548,0.639527,0.872165,0.944459,0.61319,0.52848,0.114097,0.143433,0.673985,0.912241,0.955922,0.0086537,0.240654,0.086695,0.657735,0.569222,0.218849,0.967786,0.540708,0.115557,0.260682,0.474028,0.863202,0.0832254,0.0189521,0.773881,0.224222,0.986462,0.855049,0.579546,0.536773,0.055608,0.917026,0.0640131,0.0896258,0.239327,0.356723,0.559462,0.476772,0.398571,0.232327,0.0432997,0.346422,0.00441819,0.681385,0.454176,0.848214,0.0415887,0.388084,0.825421,0.342857,0.39296,0.509949,0.542703,0.63873,0.129349,0.683027,0.0981816,0.985811,0.449356,0.297171,0.0879245,0.385249,0.766103,0.565258,0.743151,0.289097,0.791741,0.990587,0.409477,0.35003,0.544334,0.77937,0.448282,0.786488,0.886626,0.532208,0.656125,0.111574,0.432613,0.470614,0.987905,0.535194,0.425595,0.105308,0.241136,0.418173,0.341635,0.524132,0.348585,0.557523,0.0752894,0.32105,0.474972,0.328624,0.922083,0.465134,0.0115601,0.259214,0.624842,0.397651,0.290771,0.740967,0.13423,0.357557,0.98254,0.306267,0.863846,0.796686,0.260742,0.441964,0.728566,0.985615,0.564838,0.141366,0.563416,0.740807,0.609916,0.760431,0.796524,0.14775,0.771768,0.985811,0.409095,0.383829,0.704843,0.430167,0.663447,0.748713,0.223056,0.662308,0.782725,0.904771,0.205114,0.970361,0.786854,0.262614,0.880961,0.919149,0.614129,0.158602,0.519925,0.5876,0.492993,0.928573,0.417118,0.366995,0.645392,0.839762,0.912456,0.689173,0.378647,0.786013,0.500908,0.592252,0.748058,0.106512,0.867927,0.282688,0.909511,0.381698,0.729344,0.335778,0.0833074,0.482813,0.522439,0.976786,0.784659,0.081664,0.0533687,0.586926,0.885644,0.451926,0.401647,0.429874,0.925314,0.76851,0.740588,0.940049,0.267171,0.722229,0.30469,0.384968,0.784775,0.423872,0.880536,0.836341,0.99386,0.354821,0.225351,0.311025,0.180701,0.0652543,0.199191,0.654031,0.78144,0.475213,0.369459,0.00365257,0.325222,0.607492,0.499288,0.702323,0.582176,0.908535,0.803465,0.180822,0.103156,0.317412,0.163151,0.0262274,0.323375,0.443611,0.596767,0.807938,0.68868,0.205293,0.867137,0.603063,0.443946,0.17857,0.498559,0.825329,0.285848,0.22375,|0.902025,0.199045,0.806154,0.796798,0.238425,0.518984,0.506451,0.257891,0.252717,0.706065,0.268975,0.485806,0.00898266,0.665763,0.249731,0.285635,0.41413,0.83165,0.285863,0.589659,0.898161,0.171756,0.2899,0.561031,0.777538,0.236235,0.845355,0.768537,0.493928,0.785571,0.0450574,0.751983,0.46708,0.289361,0.723854,0.838398,0.209605,0.156081,0.955792,0.838216,0.0289521,0.443296,0.417554,0.192726,0.489294,0.699624,0.796396,0.356486,0.319016,0.501899,0.731565,0.461349,0.596572,0.030298,0.340869,0.778706,0.237997,0.180972,0.184864,0.250667,0.903057,0.238649,0.894193,0.43193,0.959204,0.565065,0.511156,0.0939485,0.35705,0.417501,0.530547,0.478425,0.0806926,0.395156,0.876916,0.613428,0.709372,0.777989,0.951409,0.46144,0.545552,0.916189,0.24903,0.67714,0.570492,0.169413,0.156489,0.456082,0.462852,0.394326,0.276379,0.494398,0.110256,0.955287,0.335993,0.400466,0.599128,0.457306,0.676096,0.126009,0.479133,0.798165,0.0483586,0.950985,0.146336,0.701817,0.60101,0.138161,0.846722,0.0342879,0.524961,0.0682275,0.672644,0.390415,0.0319756,0.0188772,0.0128711,0.986253,0.434235,0.325718,0.652146,0.491395,0.417355,0.200954,0.399934,0.948344,0.469878,0.779596,0.943426,0.338544,0.14747,0.804238,0.0565996,0.202803,0.36772,0.623045,0.310725,0.728894,0.940157,0.103278,0.775643,0.0672449,0.138761,0.538302,0.0098663,0.360383,0.645166,0.747908,0.252912,0.44509,0.74065,0.929041,0.0684799,0.360539,0.179236,0.668974,0.3648,0.627698,0.7279,0.23719,0.592272,0.101523,0.511158,0.77257,0.870754,0.11775,0.811251,0.0857545,0.551358,0.974909,0.639848,0.390208,0.965375,0.0942397,0.108909,0.60063,0.308806,0.860827,0.778304,0.010319,0.700016,0.248466,0.869517,0.486823,0.595802,0.322685,0.480376,0.558401,0.115917,0.622763,0.269262,0.364537,0.0205283,0.69961,0.497385,0.706582,0.252937,0.268772,0.890963,0.916948,0.0966696,0.86535,0.44394,0.56326,0.847522,0.918392,0.289778,0.98938,0.376547,0.502693,0.404159,0.527441,0.371653,0.616589,0.353409,0.631776,0.928517,0.730549,0.41307,0.221437,0.877048,0.823449,0.45689,0.178246,0.709567,0.794865,0.341339,0.0783395,0.663234,0.230081,0.704814,0.368764,0.814608,0.456558,0.71118,0.319434,0.572544,0.738526,0.447889,0.330368,0.786342,0.603552,0.991172,0.9287,0.160788,0.274475,0.020227,0.939728,0.122883,0.983956,0.48079,0.614674,0.568802,0.865612,0.343242,0.107543,0.531605,0.0169669,0.120839,0.410667,0.333592,0.166338,0.629226,0.200402,0.700777,0.621004,0.600084,0.499431,0.522947,0.447534,0.17295,0.287194,0.384388,0.0160443,0.620412,0.179255,0.829705,0.193072,0.208019,0.0161583,0.699684,0.868456,0.171489,0.0255148,0.358755,0.661086,0.258603,0.198887,0.706175,0.80823,0.439708,0.390266,0.788485,0.00930351,0.805406,0.0190034,0.35803,0.0556993,0.228723,0.6565,0.808321,0.216125,0.802161,0.590664,0.946717,0.677798,0.362776,0.650694,0.291739,0.00783932,0.991306,0.39743,0.418161,0.784169,0.610796,0.896719,0.798577,0.0805487,0.349172,0.345213,0.905115,0.747954,0.770698,0.686965,0.37764,0.768579,0.490012,0.40628,0.653365,0.694525,0.965302,0.691406,0.875685,0.124529,0.136628,0.264749,0.390548,0.429237,0.940188,0.745483,0.755819,0.276034,0.806226,0.761798,0.436775,0.0442279,0.128303,0.707192,0.266167,0.580274,0.114265,0.5338,0.876162,0.649629,0.763464,0.998894,0.0545717,0.737046,0.179606,0.270752,0.489627,0.3871,0.489355,0.498998,0.0873098,0.0766413,0.795433,0.373577,0.785168,0.965162,0.945554,0.876562,0.478437,0.28431,0.628632,0.741574,0.423218,0.462679,0.114869,0.871385,0.622922,0.989851,0.0817986,0.147119,0.97051,0.904931,0.666131,0.547116,0.0494683,0.441942,0.901036,0.771944,0.130953,0.0464157,0.0661626,0.845311,0.664452,0.0635133,0.491222,0.277127,0.561402,0.540139,0.876265,0.420877,0.639308,0.111066,0.310817,0.685028,0.830349,0.895329,0.276238,0.378676,0.428507,0.090661,0.956296,0.194169,0.464186,0.691779,0.413505,0.00486463,0.668352,0.638291,0.813205,0.931788,0.674475,0.78351,0.961123,0.20331,0.0109857,0.743531,0.444522,0.536606,0.685302,0.358088,0.930972,0.943366,0.845732,0.432486,0.0303589,0.569651,0.450774,0.263899,0.727954,0.486391,0.565979,0.691406,0.0786141,0.688089,0.816221,0.374263,0.97543,0.176778,0.265413,0.797696,0.777508,0.283249,0.409347,0.304287,0.168024,0.501988,0.550918,0.122449,0.827236,0.000599146,0.378442,0.870325,0.848814,0.0464857,0.179083,0.0146573,0.64702,0.642495,0.571862,0.720066,0.59139,0.87473,0.113156,0.00265038,0.433921,0.655316,0.667328,0.791384,0.984255,0.410233,0.123542,0.694741,0.606414,0.126624,0.956123,0.469447,0.893327,0.484281,0.161405,0.00236493,0.00387424,0.79993,0.240909,0.335372,0.358556,0.287327,0.259533,0.565213,0.162077,0.698037,0.544445,0.760494,0.220318,0.888348,0.852364,0.485949,0.875844,0.0451572,0.919885,0.996042,0.640895,0.526881,0.300098,0.797442,0.446478,0.373492,0.785777,0.993532,0.957976,0.665271,0.890893,0.162021,0.611618,0.526829,0.688933,0.421661,0.809391,0.862411,0.0453377,0.437644,0.0407104,0.308499,0.67416,0.180204,0.0932462,0.846307,0.911862,0.0472698,0.823892,0.369391,0.140622,0.536163,0.597754,0.646765,0.293743,0.947875,0.0405246,0.159002,0.257379,0.154718,0.263948,0.373974,0.372952,0.89914,0.270173,0.818714,0.443264,0.632295,0.0673517,0.8117,0.344701,0.699399,0.281979,0.0693697,0.34063,0.790869,0.515144,0.978154,0.715424,0.497767,0.264163,0.974641,0.477826,0.837009,0.0854792,0.850772,0.640425,0.0833069,0.190074,0.291326,0.556561,0.0274559,0.132906,0.278524,0.817799,0.575877,0.87468,0.620387,0.67251,0.64703,0.443219,0.678793,0.836101,0.466408,0.463762,0.0121524,0.743306,0.460064,0.720732,0.670256,0.854807,0.83163,0.629892,0.483844,0.301235,0.666073,0.963771,0.183418,0.46673,0.276622,0.0686432,0.261899,0.326445,0.455236,0.190583,0.305593,0.0158518,0.316118,0.491432,0.305019,0.149331,0.6929,0.219652,0.758651,0.739876,0.110045,0.608302,0.708111,0.798416,0.827816,0.859843,0.98342,0.193649,0.871792,0.233837,0.0763943,0.289574,0.868293,0.246695,0.292823,0.837848,0.136719,0.266882,0.92231,0.0569496,0.430717,0.56091,0.86515,0.48535,0.00672126,0.488006,0.0819548,0.713535,0.0897893,0.0743777,0.190207,0.191958,0.696579,0.85571,0.719221,0.368199,0.378796,0.56718,0.369383,0.922502,0.874498,0.431257,0.927732,0.701882,0.365864,0.0814993,0.129986,0.255152,0.786983,0.510742,0.248658,0.40423,0.428191,0.639931,0.128687,0.221817,0.897071,0.375414,0.191076,0.602121,0.905926,0.190027,0.69037,0.891483,0.000832975,0.738864,0.241264,0.557446,0.216054,0.225198,0.538176,0.130559,0.631079,0.516021,0.442917,0.683943,0.947834,0.406414,0.625199,0.105017,0.000407755,0.895178,0.119414,0.375814,0.455038,0.219146,0.0792869,0.0168403,0.908428,0.923568,0.291456,0.45253,0.0877556,0.10965,0.0196808,0.0488507,0.954654,0.104208,0.131164,0.527228,0.811276,0.907275,0.489107,0.68478,0.984955,0.272157,0.536307,0.688704,0.372538,0.33675,0.14851,0.799152,0.565108,0.373468,0.433094,0.681512,0.415418,0.932021,0.695965,0.550545,0.281274,0.351384,0.768721,0.0149059,0.283076,0.0202918,0.149779,0.271626,0.860861,0.57403,0.59861,0.747229,0.863424,0.189448,0.458809,0.885936,0.223327,0.170368,0.836562,0.745407,0.422967,0.219734,0.951529,0.70001,0.892038,0.923779,0.670207,0.261418,0.844568,0.156925,0.591971,0.729025,0.161065,0.0440786,0.602075,0.788536,0.443228,0.386069,0.0466318,0.19129,0.971912,0.382553,0.593219,0.758571,0.119868,0.372179,0.271099,0.120172,0.0689895,0.129307,0.143064,0.854595,0.458331,0.820114,0.426662,0.384747,0.209847,0.434981,0.849963,0.276719,0.489679,0.785987,0.290472,0.152184,0.672197,0.39735,0.834509,0.264943,0.0170273,0.407212,0.927016,0.547798,0.17179,0.328897,0.961816,0.912516,0.962869,0.0626884,0.355542,0.454938,0.738688,0.64688,0.650883,0.171426,0.158653,0.480005,0.69173,0.478732,0.623547,0.755337,0.57104,0.0616847,0.717693,0.630196,0.878462,0.795382,0.300967,0.89138,0.605218,0.317184,0.875556,0.19344,0.879688,0.723221,0.837196,0.673529,0.531411,0.253679,0.692861,0.562301,0.715165,0.791298,0.857988,0.864672,0.278807,0.587239,0.53738,0.337926,0.220265,0.442578,0.069464,0.376149,0.0778871,0.876348,0.415426,0.381572,0.409674,0.816257,0.367358,0.818461,0.933649,0.68857,0.766965,0.0186104,0.495042,0.161558,0.416356,0.00663251,0.971006,0.689896,0.388236,0.211258,0.512681,0.787848,0.227285,0.986212,0.982529,0.670692,0.457809,0.724675,0.521429,0.592135,0.875418,0.203643,0.243414,0.883348,0.942385,0.450234,0.156727,0.00306213,0.882893,0.78455,0.329703,0.335217,0.683575,0.36658,0.184383,0.0562255,0.780217,0.0198917,0.466756,0.546062,0.215254,0.0883031,0.14961,0.301273,0.694654,0.293456,0.479008,0.390884,0.502463,0.59241,0.76621,0.0786598,0.374963,0.993351,0.747605,0.202365,0.231837,0.668637,0.16973,0.103467,0.529461,0.94871,0.125453,0.663533,0.400491,0.971668,0.179033,0.14994,0.971472,0.527036,0.239391,0.750854,0.434815,0.271603,0.246654,0.980451,0.221347,0.0712196,0.512401,0.346843,0.990039,0.219287,0.800802,0.182462,0.0244833,0.759195,0.0362353,0.923726,0.115141,0.649449,0.133203,0.367134,0.489041,0.23735,0.997086,0.256554,0.838787,0.615017,0.409811,0.320724,0.350576,0.738835,0.825132,0.0366852,0.319058,0.995905,0.444481,0.154495,0.893806,0.79599,0.932623,0.841834,0.24292,0.967009,0.894791,0.600368,0.793971,0.582192,0.286628,|0.586754,0.772425,0.663064,0.290528,0.029945,0.749301,0.210141,0.667404,0.305794,0.849966,0.700379,0.0865397,0.96409,0.359954,0.52513,0.158506,0.834199,0.288997,0.610997,0.432076,0.62032,0.933044,0.447295,0.686319,0.566728,0.401858,0.0865741,0.770767,0.769141,0.750817,0.000839651,0.817272,0.989937,0.0521014,0.492972,0.261279,0.0958439,0.162387,0.821463,0.771747,0.833836,0.27766,0.401703,0.0265622,0.150543,0.368007,0.599481,0.519713,0.184519,0.84565,0.96203,0.256112,0.231112,0.342738,0.707353,0.132118,0.426829,0.476062,0.353936,0.0943389,0.29888,0.428962,0.800164,0.895732,0.224527,0.505961,0.615183,0.590859,0.130886,0.460206,0.196729,0.857,0.943062,0.887793,0.969725,0.572731,0.147998,0.0554399,0.318842,0.328205,0.90412,0.591037,0.416135,0.138424,0.684473,0.432412,0.0768678,0.454211,0.544826,0.716777,0.289219,0.0636632,0.10511,0.215764,0.60057,0.0907395,0.328584,0.489919,0.213654,0.730027,0.673549,0.00710529,0.733444,0.436708,0.176907,0.0399414,0.966057,0.304591,0.0652546,0.857824,0.395837,0.962199,0.165077,0.605945,0.115192,0.277515,0.495697,0.516699,0.18155,0.5628,0.101115,0.863307,0.349781,0.513532,0.937822,0.713741,0.39062,0.272322,0.632574,0.736045,0.242799,0.530263,0.978382,0.273658,0.26292,0.35873,0.651896,0.128853,0.868906,0.408379,0.280519,0.122715,0.373699,0.721979,0.311006,0.724321,0.292093,0.076006,0.68248,0.541827,0.58109,0.33125,0.143946,0.824652,0.729666,0.581272,0.644356,0.276927,0.783297,0.379464,0.569716,0.696075,0.217178,0.488699,0.640184,0.957423,0.864869,0.611887,0.805598,0.99149,0.738949,0.856503,0.301721,0.0751242,0.579216,0.203097,0.523952,0.202848,0.934319,0.936747,0.151199,0.271388,0.987848,0.100001,0.680923,0.597328,0.0681803,0.39383,0.639351,0.94432,0.175994,0.988474,0.145247,0.364714,0.618855,0.0605277,0.263295,0.679091,0.545438,0.260935,0.434216,0.593536,0.527965,0.345766,0.197891,0.784158,0.688509,0.386558,0.124551,0.731287,0.826853,0.277429,0.937667,0.897125,0.331508,0.202615,0.516085,0.804658,0.429673,0.312442,0.0725852,0.747542,0.749243,0.303217,0.931703,0.265883,0.676776,0.682436,0.753812,0.0427576,0.924597,0.499919,0.99694,0.583768,0.456503,0.592333,0.849599,0.955476,0.629167,0.763088,0.335799,0.0363104,0.260032,0.876659,0.962254,0.666071,0.102622,0.399704,0.845584,0.123997,0.354405,0.739756,0.114324,0.397545,0.976787,0.987253,0.985532,0.772797,0.428796,0.0506403,0.775435,0.94473,0.987171,0.48947,0.387224,0.327698,0.313923,0.872973,0.52058,0.515972,0.752872,0.818829,0.142524,0.656744,0.687674,0.0363036,0.151567,0.673623,0.264822,0.782071,0.321135,0.0442063,0.300863,0.89322,0.551013,0.114699,0.0313452,0.495525,0.907265,0.262273,0.332171,0.672435,0.531592,0.724509,0.0724401,0.714539,0.487045,0.157241,0.0312865,0.905838,0.0817224,0.122886,0.173106,0.448972,0.958548,0.144618,0.58718,0.186923,0.159431,0.24619,0.161067,0.666601,0.937304,0.192704,0.855962,0.198788,0.245153,0.739169,0.531205,0.0659584,0.978358,0.937834,0.258968,0.970131,0.386492,0.0636238,0.105316,0.0365815,0.16477,0.258229,0.828366,0.470924,0.431932,0.57682,0.376513,0.302673,0.284146,0.384709,0.431672,0.737587,0.0869205,0.703833,0.580372,0.463084,0.00692385,0.925893,0.998974,0.954485,0.921878,0.47975,0.300692,0.0792262,0.476854,0.215927,0.442353,0.164461,0.26244,0.783417,0.547291,0.739177,0.154018,0.581183,0.35036,0.41766,0.281594,0.649694,0.640608,0.0376618,0.900916,0.0670819,0.00298262,0.214647,0.236296,0.182209,0.915178,0.0268878,0.576895,0.25549,0.484123,0.872891,0.381294,0.919878,0.413419,0.378627,0.913117,0.761252,0.40384,0.910696,0.330396,0.990044,0.63133,0.503774,0.568774,0.192304,0.19857,0.221111,0.454022,0.509416,0.0396145,0.621302,0.327231,0.605383,0.292856,0.715908,0.389104,0.0238199,0.301939,0.902694,0.793426,0.204954,0.723314,0.985832,0.674914,0.144365,0.1141,0.681009,0.494461,0.60555,0.0503292,0.969769,0.389843,0.480068,0.762576,0.195203,0.19246,0.872505,0.926521,0.627687,0.0394309,0.387996,0.899323,0.848373,0.878518,0.834031,0.378213,0.577401,0.0938819,0.813196,0.514626,0.0814593,0.504122,0.0573426,0.828458,0.306739,0.36699,0.518519,0.703607,0.911404,0.197181,0.0502638,0.922928,0.54866,0.872829,0.0974185,0.758324,0.890412,0.607841,0.842616,0.97474,0.257839,0.625264,0.848954,0.478835,0.00327104,0.330277,0.0761951,0.0893682,0.195158,0.502032,0.749245,0.0484763,0.508413,0.075622,0.277806,0.596037,0.577739,0.632899,0.879253,0.404749,0.0310224,0.906643,0.946869,0.720595,0.243297,0.548166,0.303836,0.787738,0.913642,0.290698,0.985731,0.825801,0.650943,0.527217,0.0795954,0.85759,0.687837,0.160342,0.38561,0.514837,0.465673,0.110544,0.205374,0.24577,0.0840769,0.476374,0.435291,0.266463,0.257773,0.763804,0.221265,0.704723,0.840517,0.426317,0.363592,0.0891589,0.0432691,0.962319,0.262435,0.707458,0.288066,0.845069,0.0326088,0.906085,0.832053,0.315104,0.355281,0.32268,0.0860901,0.849588,0.573021,0.464187,0.568706,0.225087,0.577098,0.388865,0.911303,0.139223,0.533881,0.415234,0.760049,0.616945,0.483762,0.940531,0.514275,0.329597,0.204413,0.181223,0.173538,0.0104821,0.702663,0.664527,0.764185,0.965558,0.641864,0.774078,0.351356,0.86003,0.741848,0.535445,0.167936,0.830955,0.415798,0.0708268,0.163347,0.850023,0.753561,0.891133,0.156007,0.73916,0.973258,0.316705,0.990128,0.920061,0.73172,0.667535,0.477925,0.994557,0.340898,0.807408,0.954138,0.798851,0.388437,0.877714,0.414144,0.81886,0.639673,0.964286,0.807962,0.441985,0.585559,0.617185,0.987871,0.704794,0.945923,0.146925,0.223709,0.785875,0.429352,0.0132453,0.457227,0.928472,0.0556835,0.0412897,0.349323,0.402551,0.208895,0.594014,0.583167,0.504581,0.445474,0.813955,0.935549,0.58951,0.301768,0.871759,0.405597,0.15871,0.019599,0.690752,0.0888578,0.114854,0.56649,0.190531,0.946133,0.129658,0.464369,0.566233,0.732891,0.275045,0.150544,0.144717,0.208527,0.978812,0.592686,0.602852,0.554256,0.234294,0.419731,0.677715,0.439904,0.83459,0.34533,0.541723,0.0664228,0.566295,0.181249,0.372506,0.0741982,0.816644,0.270063,0.320929,0.892512,0.193303,0.601173,0.299491,0.52641,0.556662,0.696206,0.300608,0.929836,0.340863,0.55288,0.530008,0.299706,0.321682,0.236563,0.625403,0.596971,0.391239,0.178472,0.155643,0.968928,0.643917,0.0555364,0.00549221,0.580975,0.700278,0.860458,0.38763,0.88427,0.651814,0.910918,0.715793,0.863948,0.535584,0.560427,0.715638,0.653281,0.0515322,0.801207,0.459581,0.185714,0.340685,0.864966,0.230112,0.104513,0.244234,0.516241,0.649286,0.116427,0.619035,0.867575,0.989018,0.731751,0.873625,0.996869,0.560067,0.994715,0.184001,0.956017,0.812348,0.602083,0.438982,0.562214,0.183246,0.741087,0.685977,0.649771,0.181957,0.574967,0.639972,0.702426,0.0234547,0.675592,0.232023,0.369795,0.773637,0.253893,0.602502,0.960529,0.975624,0.08608,0.288023,0.326621,0.648681,0.0195552,0.333091,0.476086,0.0535126,0.190993,0.680258,0.925866,0.454845,0.34151,0.771288,0.599029,0.680698,0.435034,0.926342,0.455905,0.462233,0.187742,0.122637,0.681266,0.726917,0.460604,0.809638,0.496434,0.918555,0.484099,0.619481,0.0374118,0.325457,0.446501,0.30257,0.402099,0.439594,0.293112,0.253971,0.501842,0.00578594,0.923884,0.120447,0.273299,0.253524,0.980419,0.148487,0.454481,0.616501,0.783508,0.619284,0.737238,0.358117,0.248692,0.484608,0.674834,0.725007,0.518256,0.16459,0.825979,0.902295,0.139494,0.532582,0.838456,0.857523,0.0451868,0.73119,0.115153,0.536667,0.303391,0.0122844,0.0197852,0.229151,0.508687,0.251574,0.263948,0.765699,0.651464,0.445603,0.0500898,0.833467,0.651853,0.499275,0.0453944,0.26977,0.851714,0.815483,0.416185,0.326851,0.347049,0.601705,0.211136,0.73339,0.641649,0.0716758,0.392738,0.0363544,0.946225,0.782616,0.586779,0.808194,0.130788,0.159214,0.789296,0.786803,0.654731,0.885055,0.130697,0.26339,0.83442,0.0477005,0.790783,0.53049,0.387575,0.586874,0.519885,0.191358,0.626807,0.627058,0.561791,0.471818,0.584372,0.475347,0.252153,0.0365365,0.68381,0.59361,0.511108,0.72953,0.135875,0.821902,0.6159,0.350352,0.313585,0.87388,0.924898,0.213183,0.879588,0.585076,0.037198,0.486204,0.655627,0.308757,0.20369,0.408323,0.819915,0.60846,0.475279,0.691588,0.329375,0.292132,0.689992,0.889999,0.347182,0.0155592,0.880046,0.574966,0.438798,0.547734,0.722115,0.524886,0.246073,0.40027,0.220514,0.644808,0.9692,0.472545,0.219554,0.534804,0.841208,0.291607,0.628116,0.0436452,0.506788,0.396525,0.140341,0.76374,0.93167,0.192507,0.837604,0.248317,0.224527,0.550215,0.275179,0.654108,0.625204,0.0882123,0.890286,0.652856,0.467088,0.556019,0.758543,0.95957,0.772562,0.485882,0.672482,0.345254,0.649842,0.107996,0.220017,0.50192,0.579821,0.327351,0.189085,0.571694,0.542543,0.643425,0.730474,0.000977695,0.324743,0.119799,0.573977,0.759456,0.317775,0.642832,0.436506,0.810084,0.0176966,0.368623,0.740794,0.168848,0.272151,0.420523,0.165709,0.745991,0.734246,0.897863,0.318344,0.015173,0.770598,0.427388,0.14179,0.123416,0.859398,0.375246,0.450195,0.998663,0.349167,0.00413525,0.162244,0.671808,0.757187,0.231356,0.541081,0.0555443,0.808121,0.896371,0.164031,0.0618946,0.645184,0.497585,0.308687,0.479993,0.398559,0.0412194,0.382408,0.372323,0.886289,0.779321,0.127948,0.235192,0.00355172,0.663473,0.387769,0.769994,0.579775,0.39236,0.85975,0.208114,0.392463,|0.311689,0.878299,0.848574,0.694377,0.169278,0.668369,0.0955334,0.00967926,0.6285,0.0411097,0.882156,0.255093,0.89287,0.45914,0.28155,0.781496,0.284778,0.791762,0.282227,0.287969,0.385193,0.440185,0.997082,0.646774,0.766784,0.880055,0.214125,0.205471,0.401019,0.20921,0.598956,0.243893,0.663994,0.0102019,0.892324,0.928974,0.190585,0.961013,0.752256,0.291292,0.650718,0.502652,0.559841,0.31306,0.019174,0.980415,0.270118,0.869488,0.64655,0.428944,0.947668,0.825641,0.479631,0.574264,0.287799,0.0179474,0.788773,0.680609,0.889466,0.308455,0.0953807,0.17812,0.922774,0.969061,0.920339,0.774521,0.287393,0.179393,0.613542,0.0560659,0.323176,0.862294,0.330081,0.613556,0.713189,0.0305532,0.0713389,0.830973,0.960374,0.146471,0.29182,0.239799,0.924268,0.225261,0.570558,0.164421,0.901257,0.793009,0.276519,0.331138,0.440314,0.563385,0.324697,0.408389,0.039184,0.260923,0.115242,0.927329,0.658121,0.113999,0.132887,0.78499,0.527429,0.772564,0.76574,0.0350164,0.393494,0.355886,0.148621,0.214585,0.58327,0.405239,0.0333521,0.0638198,0.00939077,0.0668194,0.884133,0.6879,0.795066,0.925016,0.31881,0.903304,0.0350773,0.456384,0.885887,0.28991,0.578234,0.771804,0.85309,0.521839,0.766828,0.411181,0.809575,0.726518,0.285066,0.582909,0.308159,0.237607,0.711505,0.16765,0.0785991,0.9836,0.0470705,0.570183,0.362733,0.696963,0.0218723,0.981293,0.707828,0.339785,0.862605,0.0789391,0.495419,0.213552,0.823987,0.373411,0.997907,0.12172,0.0259843,0.65569,0.985092,0.88145,0.937148,0.968085,0.00413227,0.70411,0.640021,0.0460737,0.853083,0.387552,0.0913146,0.0736132,0.277221,0.886111,0.734931,0.166101,0.393334,0.00139433,0.047803,0.655654,0.54256,0.825227,0.784975,0.714741,0.916141,0.133345,0.637689,0.0838147,0.0662352,0.639425,0.608765,0.83318,0.800865,0.889087,0.193878,0.306425,0.859993,0.671916,0.893766,0.650234,0.821643,0.417979,0.530614,0.306383,0.756411,0.394717,0.452443,0.92209,0.120819,0.71707,0.681955,0.254575,0.902893,0.618384,0.480999,0.476148,0.702036,0.793286,0.626793,0.282031,0.747682,0.235482,0.666152,0.107809,0.405768,0.0264055,0.575671,0.874649,0.206127,0.168949,0.156282,0.912647,0.0530863,0.146249,0.723025,0.168751,0.897932,0.39179,0.64378,0.192124,0.592175,0.397036,0.0430158,0.929906,0.10698,0.806777,0.541211,0.0490023,0.389055,0.392176,0.891678,0.397699,0.623815,0.0167595,0.938813,0.92499,0.996377,0.614623,0.302312,0.76929,0.388378,0.989668,0.921812,0.108438,0.215586,0.610147,0.692495,0.0537504,0.761361,0.56742,0.434883,0.743538,0.472132,0.157803,0.671442,0.0818404,0.309705,0.170773,0.756793,0.57061,0.897194,0.175638,0.328613,0.0200593,0.9934,0.985583,0.0889214,0.699382,0.675723,0.287549,0.0542241,0.605682,0.502178,0.94414,0.671138,0.210263,0.882728,0.666065,0.654758,0.808737,0.495932,0.749351,0.377699,0.790682,0.480113,0.647744,0.980242,0.968426,0.646791,0.422436,0.678089,0.457189,0.988347,0.53551,0.0903788,0.0191699,0.240889,0.270957,0.256545,0.0319471,0.881351,0.813992,0.67491,0.87992,0.521679,0.100737,0.174528,0.0623431,0.681345,0.20852,0.519081,0.646716,0.27232,0.581085,0.524484,0.542934,0.869207,0.442572,0.830279,0.804489,0.552206,0.0645504,0.823014,0.454898,0.722194,0.579387,0.25181,0.338756,0.686923,0.756513,0.76195,0.817049,0.590069,0.546432,0.558973,0.174256,0.0096038,0.00122195,0.120182,0.685039,0.406711,0.0387118,0.336311,0.504059,0.127414,0.52955,0.300051,0.433456,0.28475,0.832803,0.174013,0.781789,0.603966,0.419047,0.699834,0.989548,0.742651,0.0677144,0.541605,0.587318,0.851976,0.811727,0.0444462,0.732956,0.921941,0.717032,0.767692,0.0616334,0.381819,0.184708,0.821327,0.844492,0.881166,0.0463723,0.854191,0.49334,0.242466,0.574035,0.612314,0.537189,0.848366,0.242836,0.768931,0.711133,0.671191,0.492108,0.667502,0.989682,0.0491003,0.613431,0.15684,0.458921,0.134833,0.195621,0.807417,0.325552,0.194293,0.598363,0.558246,0.986086,0.720191,0.241909,0.56507,0.990349,0.448485,0.905627,0.2889,0.278396,0.283144,0.771133,0.433147,0.605354,0.511493,0.839128,0.959809,0.0512337,0.452241,0.172219,0.0524462,0.659844,0.615279,0.170841,0.743393,0.985749,0.402028,0.0479046,0.717835,0.367188,0.0803608,0.585889,0.960766,0.623183,0.319827,0.905949,0.899354,0.43627,0.141091,0.325128,0.0402527,0.583148,0.135735,0.854276,0.217981,0.644499,0.242425,0.654828,0.914163,0.0691555,0.815102,0.661013,0.462228,0.512597,0.809077,0.754287,0.235057,0.223446,0.418849,0.375675,0.433235,0.176132,0.855698,0.690889,0.469191,0.382305,0.480999,0.431842,0.754659,0.582021,0.661085,0.260662,0.276717,0.903735,0.700323,0.31265,0.973261,0.178237,0.0581822,0.353257,0.537935,0.235666,0.486949,0.344089,0.513652,0.887097,0.356753,0.167488,0.13912,0.995061,0.00986767,0.166847,0.577735,0.694761,0.809189,0.482962,0.0152842,0.0352457,0.986258,0.729018,0.557685,0.333537,0.130222,0.565282,0.239183,0.428597,0.253794,0.287415,0.154669,0.441867,0.88461,0.965482,0.58654,0.272507,0.372119,0.220152,0.628706,0.763893,0.838257,0.340635,0.216157,0.406087,0.922094,0.702298,0.253285,0.228305,0.673537,0.0222125,0.746929,0.967335,0.10315,0.0830251,0.237714,0.785298,0.134299,0.135539,0.995714,0.93978,8.2016e-05,0.497306,0.976874,0.143558,0.0702946,0.606702,0.133146,0.0909827,0.444647,0.404407,0.391393,0.165458,0.64948,0.589616,0.511789,0.508066,0.563852,0.872885,0.931129,0.958235,0.0929345,0.486504,0.808445,0.880938,0.965446,0.752391,0.132415,0.444908,0.471981,0.659148,0.603457,0.702079,0.0766752,0.838675,0.918967,0.223811,0.158926,0.470345,0.773036,0.742948,0.865142,0.738518,0.660658,0.353823,0.713409,0.384129,0.791263,0.0681258,0.823539,0.0216767,0.262598,0.0384199,0.0612856,0.0854574,0.928741,0.704039,0.55448,0.00852615,0.683572,0.191732,0.147811,0.256246,0.635022,0.211388,0.0343859,0.96162,0.9626,0.0296068,0.889571,0.41772,0.212222,0.0367886,0.321482,0.173243,0.758615,0.0324812,0.416099,0.606514,0.237309,0.135594,0.83361,0.998346,0.486818,0.732381,0.623323,0.556911,0.103386,0.655182,0.999288,0.952978,0.900716,0.95589,0.585542,0.304294,0.962181,0.802162,0.556032,0.148762,0.53698,0.317648,0.406263,0.705831,0.388978,0.437346,0.251762,0.0431674,0.543858,0.827993,0.971262,0.0121818,0.00539345,0.314822,0.0444962,0.360959,0.627372,0.708961,0.816912,0.761997,0.317886,0.316689,0.0886719,0.20529,0.975726,0.303398,0.921662,0.490764,0.0229095,0.733941,0.674262,0.170876,0.469105,0.153196,0.751466,0.218661,0.572801,0.955944,0.812313,0.711955,0.423407,0.8626,0.824906,0.117747,0.741513,0.976193,0.471372,0.531571,0.753173,0.0699873,0.0300086,0.522348,0.990269,0.867343,0.120872,0.515572,0.0131751,0.769441,0.685073,0.596654,0.650727,0.640664,0.834623,0.379475,0.628534,0.761463,0.171233,0.631067,0.577587,0.928276,0.590783,0.589429,0.271492,0.926388,0.151854,0.590136,0.720161,0.835509,0.566505,0.383575,0.744772,0.75043,0.318268,0.921386,0.603715,0.280145,0.40691,0.0861003,0.760919,0.287893,0.658337,0.773312,0.39887,0.452118,0.983721,0.519746,0.465922,0.893564,0.17972,0.439135,0.15376,0.793769,0.772694,0.195922,0.17986,0.25881,0.0173233,0.287543,0.0200905,0.0150425,0.0262861,0.25234,0.671585,0.387136,0.610826,0.886733,0.578795,0.360704,0.672651,0.508098,0.0516449,0.777095,0.148114,0.560738,0.537652,0.0263015,0.17196,0.783065,0.466663,0.304742,0.745902,0.972799,0.140785,0.0839728,0.2994,0.846867,0.459059,0.263802,0.646755,0.383028,0.724641,0.89033,0.194049,0.233157,0.997691,0.895974,0.479402,0.141576,0.913543,0.856527,0.239447,0.0973553,0.243054,0.657216,0.666515,0.333501,0.123264,0.233699,0.605161,0.308144,0.252708,0.62517,0.016164,0.178982,0.361936,0.85992,0.137914,0.213852,0.0933281,0.787315,0.630274,0.512995,0.19098,0.415587,0.00811237,0.587881,0.840446,0.267689,0.444319,0.137554,0.339367,0.231737,0.497432,0.922103,0.00642461,0.513379,0.451638,0.901135,0.888999,0.77403,0.491777,0.553682,0.732755,0.0352755,0.746678,0.895186,0.423465,0.369545,0.248744,0.159074,0.147124,0.715369,0.618996,0.813121,0.062152,0.769152,0.683152,0.202805,0.656495,0.384167,0.0990803,0.359029,0.383531,0.396542,0.295348,0.732274,0.181455,0.798706,0.272023,0.590002,0.197415,0.422365,0.913037,0.673971,0.477694,0.0631033,0.145172,0.584631,0.240695,0.824466,0.0787731,0.667769,0.336506,0.634669,0.459666,0.106859,0.28264,0.527027,0.20275,0.70845,0.0594078,0.282094,0.550351,0.751756,0.387705,0.293255,0.119463,0.9286,0.021756,0.204427,0.808884,0.75444,0.499812,0.324454,0.206289,0.669245,0.778278,0.612837,0.243105,0.57424,0.547348,0.492242,0.782465,0.639898,0.0481984,0.920575,0.23431,0.913334,0.198802,0.105751,0.205439,0.0815463,0.801266,0.65969,0.935787,0.18643,0.979089,0.568058,0.595996,0.13221,0.410297,0.309755,0.739525,0.179654,0.903431,0.195636,0.836334,0.26676,0.475859,0.402391,0.320089,0.63059,0.315052,0.152194,0.453498,0.5026,0.63971,0.999277,0.437635,0.448274,0.202646,0.718249,0.250673,0.0594981,0.772111,0.6099,0.665039,0.864046,0.44397,0.731439,0.941056,0.460871,0.276173,0.0472198,0.750251,0.884946,0.43539,0.0529749,0.627953,0.0283238,0.519499,0.517926,0.654375,0.510574,0.0883033,0.587819,0.815746,0.582344,0.256764,0.329284,0.405184,0.413432,0.384785,0.687742,0.348187,0.523823,0.30705,0.347101,0.116253,0.0412292,0.940842,0.403194,0.403233,0.954579,0.536128,0.863084,|0.980765,0.616549,0.874502,0.103934,0.373696,0.44194,0.92716,0.418097,0.760285,0.596657,0.803437,0.964961,0.970686,0.462287,0.337753,0.901896,0.519584,0.256697,0.133321,0.322107,0.515697,0.126082,0.838285,0.442841,0.623839,0.40426,0.0909476,0.404046,0.275946,0.510703,0.628835,0.575087,0.204069,0.0144531,0.215259,0.0349213,0.775548,0.265265,0.0130426,0.522423,0.425851,0.537758,0.179197,0.767346,0.301453,0.0366045,0.133226,0.650107,0.238407,0.359963,0.168546,0.920126,0.931243,0.463621,0.94635,0.718308,0.601637,0.0188847,0.978444,0.261118,0.914075,0.420449,0.642724,0.259345,0.455931,0.707635,0.109763,0.566907,0.563795,0.126956,0.0797105,0.920493,0.0372065,0.612453,0.00466335,0.281044,0.358907,0.332941,0.691758,0.336515,0.851434,0.950099,0.318231,0.137078,0.0173131,0.526721,0.0776864,0.469198,0.798283,0.111784,0.641693,0.158696,0.80281,0.159539,0.244472,0.986061,0.206861,0.608139,0.182559,0.453393,0.830375,0.599596,0.145268,0.732586,0.146367,0.994672,0.61015,0.879517,0.374486,0.332397,0.28211,0.789258,0.440807,0.94128,0.0228663,0.874574,0.719767,0.0908386,0.777644,0.973088,0.300494,0.0126783,0.755066,0.50763,0.724951,0.648693,0.587001,0.303506,0.229936,0.664236,0.182533,0.353271,0.46928,0.397771,0.952546,0.414895,0.0139223,0.0974331,0.754457,0.329573,0.839951,0.828076,0.462818,0.737308,0.991417,0.930319,0.488838,0.958936,0.549724,0.401608,0.347864,0.909617,0.541036,0.729715,0.0286639,0.000950098,0.136473,0.451485,0.225523,0.274104,0.754863,0.351444,0.276765,0.674289,0.982192,0.633903,0.692151,0.951879,0.769886,0.427192,0.732545,0.798998,0.0801539,0.248523,0.295871,0.180871,0.0287784,0.221459,0.438442,0.190747,0.195832,0.502501,0.0933973,0.0478169,0.940057,0.369425,0.96071,0.447036,0.868427,0.46848,0.467161,0.399101,0.890344,0.0906288,0.611151,0.378566,0.56732,0.610394,0.353902,0.654571,0.440022,0.336648,0.202922,0.911359,0.78136,0.793568,0.977533,0.537953,0.986698,0.404585,0.721662,0.154547,0.720867,0.958314,0.4732,0.467903,0.176021,0.779987,0.584806,0.884592,0.420586,0.275308,0.737195,0.954877,0.774508,0.485373,0.79837,0.506519,0.585862,0.284732,0.217362,0.105147,0.270264,0.851877,0.206472,0.58201,0.785575,0.0396737,0.708155,0.361754,0.315293,0.844792,0.450796,0.803614,0.841951,0.702156,0.281568,0.997993,0.882292,0.13081,0.725091,0.446315,0.476809,0.0163275,0.0546356,0.0926713,0.978868,0.067798,0.327965,0.184344,0.138049,0.929714,0.804195,0.509515,0.0708094,0.167107,0.167302,0.0320458,0.172265,0.0897666,0.481824,0.147015,0.858114,0.0819322,0.811016,0.069631,0.867289,0.359752,0.635188,0.00516903,0.584554,0.568113,0.189082,0.0055427,0.192304,0.996874,0.768565,0.151275,0.887929,0.52126,0.971129,0.596691,0.464943,0.438132,0.884342,0.968089,0.290717,0.558699,0.738756,0.0194425,0.457373,0.0847639,0.129336,0.452679,0.339692,0.90492,0.154769,0.406013,0.981688,0.949093,0.00492829,0.724782,0.474743,0.608568,0.433591,0.864674,0.457695,0.797053,0.82752,0.808642,0.155735,0.527417,0.772098,0.66305,0.905528,0.583829,0.34047,0.5265,0.548012,0.953255,0.692114,0.68891,0.0454134,0.790958,0.0652937,0.536564,0.19624,0.921508,0.194217,0.986682,0.659755,0.772687,0.0947218,0.780191,0.901775,0.293799,0.684417,0.0364695,0.904868,0.790998,0.853406,0.249968,0.765815,0.824656,0.77591,0.228177,0.319153,0.823308,0.928357,0.0012033,0.621412,0.551138,0.823061,0.10576,0.959013,0.403875,0.630074,0.33329,0.453177,0.762052,0.245468,0.59937,0.0137174,0.216844,0.211124,0.887637,0.745162,0.0526527,0.806693,0.980266,0.0202383,0.374521,0.805584,0.154297,0.53828,0.353607,0.0696548,0.0775128,0.37067,0.0345403,0.73235,0.782321,0.408675,0.633355,0.31428,0.0313498,0.161424,0.347975,0.901219,0.844241,0.187613,0.966807,0.379886,0.903634,0.0814628,0.853597,0.816235,0.916891,0.370214,0.649633,0.395018,0.363508,0.774413,0.487823,0.872543,0.802357,0.630238,0.765265,0.23523,0.0176904,0.624796,0.855551,0.422575,0.657464,0.790476,0.812298,0.273278,0.0508821,0.205007,0.950165,0.185106,0.327707,0.174049,0.971344,0.97111,0.746821,0.321813,0.455878,0.66732,0.39334,0.0919033,0.569464,0.830158,0.0690085,0.70964,0.741922,0.526922,0.15101,0.479981,0.151806,0.0773373,0.297209,0.289449,0.295968,0.783519,0.499579,0.733581,0.674646,0.64868,0.212096,0.931686,0.754661,0.739908,0.0772172,0.867962,0.623535,0.729066,0.213091,0.360744,0.904664,0.45929,0.82925,0.438268,0.929008,0.808705,0.886811,0.0508138,0.787497,0.946751,0.885244,0.90847,0.54704,0.267535,0.288604,0.599369,0.118518,0.89143,0.139255,0.27549,0.726775,0.278342,0.39245,0.239172,0.0157682,0.212481,0.962503,0.347068,0.682974,0.72826,0.474997,0.717718,0.883094,0.660041,0.819041,0.919081,0.843095,0.042424,0.936868,0.53928,0.114739,0.0819077,0.652654,0.668932,0.624278,0.017203,0.119852,0.470147,0.458614,0.255422,0.983131,0.0226901,0.916197,0.401694,0.719631,0.366275,0.0413557,0.209564,0.613882,0.172162,0.130355,0.327648,0.0332946,0.277671,0.952306,0.576021,0.752588,0.576613,0.409588,0.256667,0.859403,0.621403,0.13693,0.715948,0.925415,0.883749,0.673514,0.901658,0.703074,0.444708,0.80023,0.988145,0.412269,0.792679,0.922073,0.678842,0.512605,0.96606,0.114184,0.317222,0.830323,0.870827,0.124114,0.226476,0.0123084,0.756197,0.545576,0.627101,0.712299,0.470207,0.79476,0.468906,0.726786,0.774688,0.894082,0.0587121,0.732188,0.177611,0.760275,0.589571,0.103059,0.330001,0.899599,0.0863974,0.897871,0.433293,0.674209,0.635609,0.724072,0.0117785,0.5698,0.181617,0.0377973,0.913641,0.0139199,0.859427,0.0772352,0.38788,0.152256,0.982429,0.598343,0.233142,0.923304,0.505229,0.622151,0.611712,0.508355,0.861912,0.0928939,0.722542,0.842825,0.289863,0.769927,0.146146,0.843642,0.0600998,0.300136,0.187493,0.110257,0.750407,0.708551,0.323387,0.0879799,0.848015,0.899859,0.362985,0.766762,0.688738,0.297351,0.0610596,0.393562,0.626708,0.0789134,0.528936,0.567265,0.0685275,0.760195,0.789144,0.1373,0.42463,0.57963,0.911271,0.89655,0.587295,0.729983,0.406978,0.252784,0.485984,0.646618,0.033632,0.489776,0.363809,0.609461,0.557912,0.0372106,0.665115,0.556044,0.549108,0.792324,0.890238,0.0785556,0.948272,0.182805,0.504396,0.00494301,0.817188,0.682957,0.173247,0.101022,0.840149,0.163125,0.203822,0.983537,0.161503,0.49372,0.734073,0.817393,0.148048,0.215439,0.866083,0.98847,0.921917,0.635582,0.607423,0.648636,0.0757711,0.403658,0.246796,0.326386,0.344696,0.195658,0.426943,0.233419,0.366947,0.163605,0.39595,0.32159,0.910666,0.623267,0.947755,0.911651,0.9967,0.408758,0.97276,0.124618,0.876106,0.953268,0.885907,0.238665,0.792244,0.90127,0.593852,0.685721,0.143313,0.30879,0.192646,0.259565,0.291887,0.904009,0.496105,0.779461,0.134648,0.4623,0.887851,0.641379,0.292554,0.322918,0.645785,0.163323,0.765902,0.90508,0.934699,0.593177,0.17596,0.414537,0.517636,0.407944,0.350772,0.0638142,0.799171,0.0592943,0.488261,0.957595,0.277136,0.780146,0.0271945,0.624261,0.383658,0.817767,0.880339,0.259912,0.956637,0.315442,0.470207,0.885936,0.928757,0.37186,0.132035,0.0680831,0.637104,0.612189,0.605909,0.601304,0.501566,0.386684,0.421184,0.503881,0.846176,0.538862,0.916782,0.944828,0.940847,0.910529,0.977214,0.511668,0.13486,0.792443,0.00831831,0.805853,0.854051,0.586444,0.739379,0.404025,0.133949,0.032174,0.298772,0.630082,0.580881,0.739182,0.578355,0.747771,0.169941,0.635108,0.83218,0.664746,0.416482,0.225216,0.0694894,0.724267,0.217825,0.0577701,0.0514488,0.344238,0.196824,0.213527,0.996714,0.892327,0.594655,0.938105,0.201845,0.388592,0.260078,0.860943,0.285464,0.795909,0.724716,0.39849,0.396193,0.523697,0.0255821,0.69609,0.862646,0.155759,0.19486,0.827169,0.325011,0.940184,0.144196,0.978123,0.82575,0.699468,0.505866,0.397598,0.50385,0.0888684,0.100149,0.809262,0.357219,0.575867,0.393847,0.424696,0.545086,0.365115,0.566353,0.457458,0.892284,0.0843074,0.632183,0.980819,0.664212,0.0198012,0.982398,0.643196,0.96091,0.057839,0.805377,0.92401,0.746247,0.909019,0.652628,0.758713,0.00349504,0.510966,0.57115,0.730809,0.599139,0.114091,0.536938,0.0736866,0.182627,0.219835,0.265359,0.831556,0.759798,0.271628,0.561305,0.202944,0.6899,0.821094,0.373878,0.721438,0.902899,0.334443,0.138745,0.560548,0.442658,0.461096,0.324521,0.370854,0.638877,0.0523807,0.225335,0.942088,0.551551,0.13993,0.441634,0.169986,0.278866,0.167588,0.128362,0.266723,0.160793,0.97795,0.0789483,0.134636,0.949583,0.102817,0.114089,0.622378,0.00157344,0.834436,0.814175,0.116022,0.830541,0.0307769,0.916336,0.0932691,0.318785,0.207322,0.0905146,0.780737,0.274973,0.858494,0.0581033,0.324741,0.817381,0.338427,0.541963,0.513169,0.816678,0.820789,0.644812,0.825628,0.880825,0.545862,0.158872,0.704678,0.890756,0.0332506,0.635215,0.201896,0.605337,0.548752,0.046461,0.490368,0.217024,0.214124,0.193883,0.244076,0.539074,0.671958,0.0305851,0.456208,0.361338,0.106329,0.728728,0.818047,0.247006,0.668238,0.107644,0.533502,0.0538331,0.273842,0.323691,0.254114,0.848368,0.0546531,0.477332,0.672959,0.217327,0.383639,0.216346,0.20976,0.702782,0.598864,0.244511,0.85191,0.395988,0.385198,0.264379,0.494937,0.0318201,0.844452,0.757905,0.0231808,0.134092,0.767159,0.828714,0.743733,0.0987707,0.86081,0.837219,0.424134,0.147623,0.224402,0.202918,0.774027,0.688065,0.356541,0.65851,0.287187,|0.167684,0.884788,0.458909,0.851691,0.52764,0.17625,0.644406,0.61859,0.12756,0.143866,0.00954491,0.826008,0.828258,0.927198,0.974481,0.76695,0.399402,0.745534,0.10358,0.77694,0.244781,0.673863,0.421841,0.764117,0.979344,0.128415,0.810469,0.165838,0.264043,0.377799,0.537677,0.062747,0.74545,0.908564,0.939184,0.000507414,0.208138,0.763403,0.588706,0.164574,0.143251,0.326635,0.477361,0.234925,0.741958,0.233298,0.180863,0.756355,0.982969,0.190754,0.8044,0.265214,0.408785,0.231953,0.723597,0.747557,0.251098,0.828826,0.508026,0.54462,0.427424,0.670565,0.415258,0.736408,0.974825,0.0865695,0.126,0.898128,0.773283,0.316077,0.73766,0.693672,0.609093,0.481278,0.780152,0.936584,0.423981,0.654803,0.512714,0.847164,0.164984,0.129011,0.481155,0.641901,0.176315,0.130781,0.372735,0.148221,0.365669,0.881511,0.423063,0.120819,0.115412,0.0515353,0.740586,0.673129,0.396537,0.104723,0.206552,0.635842,0.0135869,0.242168,0.801376,0.733084,0.461644,0.229581,0.109859,0.20059,0.87407,0.262032,0.886035,0.575593,0.511168,0.248435,0.00933963,0.66847,0.888034,0.906907,0.998875,0.938441,0.680506,0.982835,0.614885,0.231692,0.903058,0.351713,0.465357,0.267453,0.183705,0.189009,0.0239774,0.593377,0.776052,0.245629,0.339524,0.79998,0.610784,0.998861,0.387068,0.371122,0.590474,0.43051,0.404463,0.928755,0.569012,0.431783,0.928064,0.251478,0.253078,0.771614,0.777151,0.52058,0.890833,0.351464,0.735044,0.817543,0.627557,0.613474,0.513691,0.298581,0.973775,0.477193,0.852449,0.0974141,0.0708994,0.865844,0.10843,0.675186,0.211689,0.45283,0.147962,0.0924756,0.1229,0.968007,0.368418,0.00947195,0.898158,0.915986,0.00726533,0.35092,0.920011,0.395175,0.104245,0.823601,0.306499,0.166788,0.015668,0.921742,0.241635,0.790117,0.959883,0.527418,0.424571,0.664352,0.0201042,0.630199,0.444476,0.513803,0.612256,0.77969,0.180601,0.351046,0.384046,0.507831,0.0160452,0.0700478,0.170378,0.00121903,0.493515,0.794284,0.137485,0.154369,0.608434,0.435866,0.921251,0.6923,0.0216879,0.00222826,0.204693,0.236046,0.235156,0.763516,0.884923,0.487161,0.0483287,0.418397,0.8109,0.939679,0.296273,0.979435,0.124448,0.53219,0.276708,0.556842,0.861137,0.192674,0.112192,0.344615,0.745955,0.59754,0.0825405,0.0175506,0.577163,0.354995,0.230161,0.804926,0.860207,0.710396,0.249762,0.611637,0.199869,0.369517,0.185449,0.73626,0.765925,0.683906,0.968943,0.82712,0.251267,0.893473,0.0226932,0.945135,0.483413,0.762146,0.719123,0.0564008,0.419877,0.526806,0.533606,0.451241,0.570582,0.279235,0.934371,0.530365,0.781255,0.614741,0.452961,0.365649,0.643646,0.945875,0.963056,0.0882939,0.781802,0.240774,0.582906,0.0551356,0.620694,0.0287255,0.190438,0.985445,0.0674468,0.544063,0.773152,0.488406,0.638399,0.0612616,0.384811,0.11433,0.0399113,0.459941,0.327376,0.905007,0.770726,0.921801,0.37964,0.391152,0.553425,0.629093,0.384294,0.755176,0.719903,0.612971,0.0353842,0.683196,0.592511,0.401344,0.469785,0.904225,0.837031,0.67792,0.747971,0.993304,0.690083,0.931822,0.976762,0.00838703,0.0555493,0.212215,0.235979,0.355061,0.549601,0.245336,0.744482,0.551004,0.121059,0.025328,0.703511,0.822755,0.441172,0.987618,0.184604,0.569527,0.302715,0.684968,0.942208,0.91665,0.10965,0.755977,0.928954,0.88672,0.632911,0.974623,0.158827,0.786414,0.933306,0.563496,0.331175,0.92945,0.658026,0.187651,0.621603,0.744804,0.0926405,0.947918,0.549252,0.835636,0.828116,0.72036,0.693209,0.69762,0.453255,0.736443,0.324666,0.585663,0.873535,0.469215,0.558944,0.861697,0.244712,0.665247,0.334646,0.369534,0.499797,0.42038,0.36017,0.167346,0.628983,0.804031,0.0618786,0.559268,0.133873,0.225049,0.354623,0.870009,0.113697,0.786109,0.0125149,0.835613,0.263448,0.331912,0.306435,0.909685,0.534597,0.656756,0.0644704,0.253231,0.144158,0.268449,0.988619,0.849627,0.962099,0.24399,0.237911,0.930501,0.428357,0.562606,0.122412,0.140102,0.749374,0.366543,0.328583,0.761446,0.101589,0.382152,0.356681,0.179548,0.920411,0.473582,0.1002,0.847555,0.294102,0.307723,0.283107,0.792581,0.183829,0.854653,0.487897,0.617796,0.843978,0.762051,0.714007,0.299928,0.967411,0.459606,0.242456,0.390215,0.753224,0.776682,0.325652,0.586204,0.359406,0.80473,0.539065,0.285325,0.567383,0.642623,0.32123,0.142935,0.0149429,0.829166,0.233861,0.0913621,0.0881129,0.765422,0.566346,0.946451,0.625167,0.569232,0.112809,0.481817,0.943271,0.473192,0.573061,0.0504672,0.137705,0.735417,0.797606,0.601122,0.648229,0.220807,0.707472,0.314332,0.935862,0.655428,0.100155,0.160406,0.878574,0.228314,0.697942,0.812218,0.964759,0.0307353,0.224983,0.0799148,0.0974163,0.650467,0.909178,0.841356,0.0530927,0.374069,0.584451,0.341931,0.383315,0.755135,0.721936,0.780304,0.911899,0.134268,0.48254,0.37171,0.540468,0.682997,0.00280017,0.202239,0.973274,0.170903,0.99654,0.526197,0.189374,0.456204,0.656725,0.709149,0.482221,0.299071,0.33235,0.787782,0.28925,0.81414,0.397981,0.848439,0.185333,0.0184705,0.868081,0.648716,0.603198,0.991945,0.292908,0.558738,0.476404,0.855696,0.361709,0.149913,0.86572,0.807601,0.199714,0.877684,0.396114,0.0421926,0.321655,0.451905,0.538735,0.74677,0.707718,0.134968,0.235313,0.052974,0.0794691,0.232191,0.324863,0.768451,0.846849,0.580318,0.0933346,0.901426,0.524586,0.53266,0.495944,0.147749,0.911034,0.990168,0.970805,0.918596,0.806664,0.221642,0.550351,0.632319,0.169848,0.883326,0.801256,0.352651,0.109538,0.758334,0.199081,0.485294,0.21091,0.647032,0.758019,0.411786,0.279333,0.474219,0.940541,0.514091,0.860573,0.791391,0.565836,0.218022,0.217655,0.230849,0.547485,0.815367,0.144743,0.420511,0.273379,0.279865,0.531226,0.938507,0.142766,0.952661,0.667554,0.997323,0.589634,0.566636,0.891974,0.0324351,0.759537,0.681809,0.396915,0.337672,0.524123,0.739459,0.9802,0.687045,0.49778,0.633792,0.750674,0.0473701,0.903973,0.314364,0.456824,0.923436,0.118494,0.865055,0.569483,0.195839,0.408032,0.877724,0.524591,0.93951,0.558821,0.214408,0.13062,0.223886,0.510913,0.121516,0.0158793,0.506518,0.737653,0.753116,0.0108885,0.689617,0.0762277,0.340668,0.941908,0.614163,0.327222,0.0124253,0.42244,0.0262788,0.900804,0.646424,0.104182,0.782489,0.12924,0.552715,0.330432,0.607483,0.108829,0.828169,0.09778,0.19373,0.940057,0.704542,0.965281,0.96847,0.663951,0.4664,0.104938,0.684009,0.0923738,0.490063,0.595829,0.342133,0.788489,0.788242,0.886935,0.758792,0.989685,0.798009,0.479017,0.10399,0.472716,0.606182,0.551597,0.948398,0.532904,0.886199,0.0734921,0.992027,0.629793,0.940509,0.926805,0.418347,0.738647,0.244835,0.635667,0.126195,0.593628,0.10603,0.602505,0.872994,0.661838,0.86368,0.447911,0.0628414,0.0686343,0.53361,0.362741,0.965212,0.224368,0.251485,0.856448,0.347762,0.868011,0.217744,0.281154,0.335905,0.799966,0.479737,0.249443,0.0585405,0.219494,0.66193,0.561342,0.774095,0.662469,0.850785,0.0535684,0.515939,0.970921,0.149664,0.790265,0.75776,0.847047,0.657066,0.19859,0.372318,0.828115,0.199336,0.0338135,0.932208,0.689489,0.94084,0.603802,0.736838,0.695595,0.137965,0.819229,0.987109,0.606484,0.676157,0.604796,0.909518,0.942671,0.444629,0.462672,0.319403,0.128602,0.355254,0.182401,0.111606,0.709707,0.182485,0.672053,0.10903,0.522518,0.803471,0.980734,0.8994,0.79031,0.87959,0.709805,0.516117,0.0517005,0.0778906,0.34608,0.912997,0.599883,0.695968,0.973008,0.67936,0.268505,0.665672,0.525747,0.818089,0.473939,0.463591,0.920192,0.332541,0.352509,0.589615,0.898828,0.528749,0.401022,0.355721,0.503455,0.810879,0.421139,0.709402,0.478212,0.0269564,0.178497,0.27619,0.37878,0.845471,0.103323,0.00291264,0.921718,0.807898,0.0739039,0.897662,0.453768,0.589381,0.280677,0.923868,0.408718,0.128248,0.182264,0.458138,0.611686,0.698087,0.442439,0.260016,0.384774,0.842878,0.385629,0.531437,0.253977,0.521982,0.18014,0.694303,0.157706,0.866557,0.753496,0.46375,0.479217,0.555778,0.105551,0.593275,0.896552,0.870996,0.777524,0.659452,0.535409,0.282465,0.120988,0.263059,0.359477,0.369419,0.796332,0.131632,0.441697,0.537269,0.700422,0.179065,0.699811,0.404283,0.127963,0.876378,0.0126794,0.921806,0.950322,0.596599,0.401783,0.944745,0.0283464,0.282168,0.595283,0.305345,0.702638,0.494877,0.355335,0.425206,0.225581,0.752207,0.122967,0.871747,0.682915,0.690255,0.191311,0.602224,0.769691,0.260931,0.639698,0.451794,0.373814,0.499947,0.463887,0.192093,0.416229,0.335374,0.121535,0.319561,0.0697076,0.926526,0.546969,0.330339,0.187232,0.916981,0.780632,0.761983,0.232262,0.555896,0.489039,0.980284,0.853449,0.785122,0.248793,0.876308,0.0139305,0.0213726,0.282836,0.839935,0.455548,0.496538,0.27717,0.862957,0.731393,0.153162,0.509933,0.17509,0.995426,0.485447,0.149931,0.143453,0.0908433,0.947813,0.805688,0.0206645,0.476302,0.812037,0.170658,0.0895183,0.298725,0.281828,0.865935,0.456591,0.941445,0.157925,0.722837,0.810301,0.515407,0.973405,0.322029,0.337875,0.345769,0.637142,0.971697,0.414201,0.151322,0.740813,0.121299,0.432909,0.265762,0.952074,0.529302,0.974841,0.0983005,0.478465,0.0887254,0.767961,0.510688,0.0867795,0.300221,0.311907,0.28837,0.00565141,0.738523,0.535203,0.393939,0.84694,0.0547262,0.997642,0.231304,0.810611,0.876317,0.0877365,0.746835,0.227386,0.759228,0.905317,0.482068,0.187588,0.383811,0.716321,0.929217,0.981087,0.169293,0.593299,0.0429415,0.157425,|0.565804,0.00497019,0.93501,0.955043,0.331139,0.325056,0.795086,0.982306,0.796217,0.432289,0.0236848,0.280052,0.1281,0.985293,0.914012,0.0248278,0.613753,0.186486,0.614188,0.384057,0.0506576,0.592026,0.513529,0.131207,0.00465304,0.120625,0.956743,0.94948,0.0917602,0.380829,0.344563,0.974209,0.63096,0.919973,0.249179,0.127049,0.197999,0.807637,0.157562,0.998202,0.2612,0.116763,0.434255,0.98782,0.808228,0.681186,0.0806348,0.869845,0.0964744,0.495883,0.946049,0.493458,0.814505,0.149763,0.996464,0.633432,0.460672,0.0893798,0.829538,0.782528,0.619618,0.913921,0.637468,0.910118,0.257639,0.647142,0.527189,0.092374,0.161459,0.97053,0.263758,0.292364,0.594707,0.176962,0.0199958,0.435997,0.845311,0.437666,0.981303,0.446266,0.285961,0.668839,0.902374,0.476094,0.58055,0.701407,0.11406,0.588357,0.612163,0.357361,0.987605,0.340553,0.639346,0.532725,0.0137616,0.828815,0.532685,0.333758,0.401606,0.0698668,0.973995,0.34129,0.558017,0.0432245,0.820604,0.378992,0.0741961,0.0313503,0.905328,0.879465,0.649667,0.798281,0.487629,0.990607,0.415877,0.466413,0.948578,0.616163,0.00671452,0.190804,0.554655,0.587974,0.630865,0.554292,0.298396,0.737593,0.603763,0.181417,0.799424,0.59704,0.104357,0.843033,0.0987076,0.736373,0.750157,0.706559,0.669491,0.540287,0.371985,0.739334,0.405457,0.264054,0.67043,0.782178,0.80279,0.707682,0.225154,0.432053,0.47651,0.852918,0.961087,0.969763,0.62479,0.582332,0.372079,0.775437,0.516411,0.0650881,0.663024,0.688872,0.0578246,0.148836,0.941173,0.971184,0.999843,0.123631,0.927582,0.707027,0.294181,0.343567,0.961862,0.732755,0.960593,0.160198,0.6406,0.22286,0.907301,0.589645,0.257209,0.480586,0.234392,0.386251,0.492433,0.267457,0.0605676,0.977112,0.830136,0.603876,0.261382,0.668649,0.326775,0.597254,0.392533,0.736371,0.497633,0.235775,0.456987,0.371292,0.93059,0.723494,0.620425,0.0437621,0.418223,0.457144,0.501731,0.235547,0.0488113,0.904944,0.393707,0.361127,0.232568,0.797347,0.359053,0.82221,0.633092,0.0943912,0.0704896,0.224638,0.915974,0.454692,0.947668,0.918785,0.571589,0.776433,0.369905,0.738462,0.227643,0.780912,0.955791,0.0838402,0.119452,0.612691,0.26253,0.577337,0.936804,0.65855,0.061428,0.275075,0.876824,0.973081,0.934202,0.0444841,0.612248,0.131295,0.288138,0.897112,0.443955,0.175453,0.590338,0.986253,0.812224,0.729184,0.700035,0.761665,0.752629,0.918352,0.601903,0.499359,0.516945,0.493171,0.743968,0.0636308,0.397486,0.633548,0.115126,0.201191,0.414971,0.260797,0.330538,0.863756,0.162018,0.0530034,0.0224873,0.644989,0.399385,0.301436,0.98307,0.43362,0.6345,0.34348,0.181872,0.462551,0.559508,0.630922,0.14651,0.199227,0.913122,0.352325,0.0737696,0.240795,0.916979,0.670998,0.804917,0.397073,0.436403,0.371574,0.701635,0.988927,0.605655,0.326807,0.821855,0.199792,0.26562,0.547944,0.944823,0.220279,0.544184,0.864653,0.0648817,0.295645,0.070147,0.983691,0.356956,0.0685655,0.439649,0.745643,0.782147,0.904504,0.674203,0.244266,0.633299,0.842045,0.668099,0.142369,0.234499,0.420838,0.457793,0.275325,0.54,0.129412,0.448458,0.396771,0.219619,0.783878,0.831562,0.418599,0.17723,0.359888,0.965184,0.817357,0.417159,0.18298,0.876379,0.0840319,0.481412,0.862947,0.742364,0.21945,0.857408,0.0821892,0.361961,0.362914,0.150447,0.103907,0.790952,0.888271,0.57678,0.859338,0.41166,0.297313,0.465666,0.637726,0.382475,0.27957,0.723171,0.211597,0.633071,0.968274,0.650017,0.90777,0.714333,0.428478,0.378048,0.100916,0.910286,0.448512,0.25956,0.401375,0.204556,0.963118,0.370996,0.997935,0.598037,0.567424,0.491774,0.0724488,0.0609125,0.846466,0.721435,0.645436,0.0768383,0.212789,0.355873,0.089111,0.912737,0.940349,0.355702,0.587491,0.149768,0.173044,0.0951535,0.361384,0.448404,0.981558,0.979373,0.169054,0.300696,0.594928,0.379698,0.955943,0.683765,0.0957947,0.336888,0.721918,0.295998,0.623919,0.715068,0.523133,0.715331,0.555207,0.00664467,0.0607642,0.683439,0.787077,0.0322297,0.233518,0.0242955,0.452501,0.319957,0.890173,0.51899,0.581726,0.68796,0.0813846,0.0148777,0.424012,0.178498,0.6961,0.828892,0.943962,0.69021,0.307296,0.248698,0.363792,0.666311,0.849845,0.129883,0.436514,0.666968,0.501885,0.627449,0.746791,0.626031,0.201628,0.977358,0.364056,0.564711,0.529001,0.948369,0.289039,0.442568,0.165434,0.964054,0.890672,0.767255,0.668085,0.548174,0.581862,0.361409,0.556649,0.711523,0.66165,0.242365,0.939498,0.127637,0.681944,0.380625,0.79706,0.363887,0.172127,0.56014,0.720005,0.552309,0.391276,0.745052,0.903562,0.174763,0.814216,0.936477,0.771049,0.193702,0.194689,0.143583,0.257718,0.0177206,0.711842,0.946243,0.658265,0.608137,0.554866,0.239039,0.339963,0.52557,0.437883,0.207511,0.681384,0.0676492,0.461309,0.873114,0.849067,0.808613,0.593501,0.355798,0.104333,0.226155,0.42506,0.525495,0.367444,0.456255,0.268521,0.379885,0.817505,0.873194,0.3064,0.30072,0.935287,0.656784,0.715916,0.170079,0.526373,0.944924,0.143351,0.841781,0.288405,0.237492,0.671732,0.317352,0.290971,0.223083,0.144841,0.824062,0.123117,0.563554,0.0826835,0.209616,0.477386,0.955806,0.383907,0.43282,0.28863,0.573657,0.987951,0.932819,0.946646,0.529815,0.347885,0.626394,0.229459,0.954751,0.868793,0.0269751,0.188359,0.483406,0.846271,0.16737,0.049235,0.849325,0.811755,0.277708,0.673193,0.651379,0.219489,0.686409,0.0911667,0.265612,0.899922,0.268763,0.23462,0.718928,0.103053,0.455533,0.0388042,0.84792,0.947831,0.927267,0.253099,0.713521,0.887599,0.218558,0.308121,0.282696,0.233883,0.786512,0.987813,0.729665,0.567092,0.330435,0.940091,0.386281,0.92517,0.375922,0.724203,0.310139,0.944419,0.278897,0.0583786,0.528913,0.521127,0.18638,0.892435,0.394069,0.700165,0.349701,0.478824,0.642,0.883811,0.554265,0.38221,0.141593,0.785453,0.763023,0.882003,0.834744,0.191502,0.896381,0.98147,0.615943,0.172008,0.57041,0.414894,0.269608,0.161128,0.19584,0.871685,0.571753,0.315004,0.806332,0.0939464,0.361462,0.569495,0.986047,0.888775,0.105556,0.782625,0.826252,0.69431,0.339107,0.222571,0.798332,0.298727,0.719429,0.0887049,0.160045,0.939966,0.402723,0.474931,0.853681,0.838997,0.804291,0.894991,0.327257,0.807889,0.402641,0.364694,0.740176,0.152641,0.641769,0.855194,0.915645,0.270595,0.381473,0.487152,0.867705,0.0648609,0.937251,0.620782,0.294148,0.583013,0.415761,0.0332429,0.0398969,0.124886,0.958237,0.373668,0.827634,0.201722,0.15708,0.314744,0.571463,0.863525,0.622431,0.967838,0.755398,0.761056,0.236335,0.575798,0.810929,0.996935,0.426826,0.194511,0.0295188,0.0312321,0.497619,0.83104,0.599987,0.633317,0.867909,0.172039,0.0563562,0.0454918,0.312768,0.812086,0.446306,0.913172,0.694759,0.792403,0.909513,0.468671,0.601187,0.586621,0.439389,0.388592,0.834342,0.705104,0.180703,0.778428,0.138788,0.141123,0.364188,0.132972,0.344652,0.186245,0.236778,0.351127,0.853576,0.818018,0.328053,0.876116,0.420015,0.0546665,0.799821,0.924881,0.0893582,0.0740475,0.58937,0.7285,0.0810199,0.258163,0.224679,0.664543,0.661018,0.124455,0.041933,0.0422657,0.743787,0.551566,0.802242,0.608,0.423306,0.310319,0.17607,0.533501,0.196015,0.990527,0.0987976,0.294713,0.943003,0.657621,0.731327,0.208034,0.815154,0.806791,0.0203162,0.912699,0.0860568,0.613869,0.98989,0.556344,0.646376,0.388398,0.267043,0.742711,0.723442,0.157123,0.348202,0.122765,0.616378,0.762198,0.313865,0.959965,0.642844,0.114232,0.384329,0.751397,0.894697,0.761296,0.65118,0.218162,0.701906,0.0501115,0.227237,0.012993,0.821459,0.184818,0.618481,0.396127,0.180198,0.971896,0.794882,0.165206,0.790227,0.611545,0.970286,0.293306,0.394534,0.457832,0.740953,0.778667,0.856962,0.420126,0.724603,0.0523646,0.258639,0.426908,0.813402,0.127127,0.925417,0.735204,0.565108,0.218278,0.846508,0.805957,0.253873,0.793267,0.556832,0.787868,0.547907,0.47783,0.84078,0.656309,0.0784778,0.0284987,0.768677,0.414825,0.711969,0.159792,0.0984495,0.0763384,0.821038,0.0971147,0.800565,0.207171,0.412435,0.864629,0.596541,0.673015,0.218232,0.860096,0.838315,0.0509312,0.757524,0.0594094,0.434397,0.739379,0.328315,0.583179,0.496588,0.254224,0.475634,0.394053,0.572749,0.0882565,0.379589,0.957214,0.592151,0.786333,0.871199,0.396043,0.185631,0.283957,0.360683,0.806198,0.697025,0.298234,0.395655,0.810947,0.474288,0.194395,0.350216,0.0291374,0.458014,0.134315,0.79762,0.272008,0.430754,0.0752921,0.0227656,0.600155,0.681006,0.662579,0.966008,0.59006,0.506929,0.104363,0.756136,0.149169,0.707387,0.128926,0.370339,0.707871,0.727088,0.32182,0.449803,0.561396,0.534796,0.292794,0.698378,0.847261,0.625861,0.987966,0.35237,0.393427,0.00101745,0.281591,0.815017,0.369247,0.562297,0.367021,0.0807846,0.14601,0.673568,0.835283,0.877522,0.44536,0.251261,0.868655,0.438133,0.718985,0.697533,0.550638,0.624808,0.450102,0.92372,0.982279,0.106427,0.541294,0.845687,0.136972,0.0761502,0.200059,0.762923,0.239384,0.688029,0.884016,0.472075,0.0358507,0.657829,0.0608357,0.3285,0.891877,0.911962,0.752294,0.793472,0.86715,0.484629,0.0245723,0.0673816,0.612766,0.101417,0.914614,0.0525971,0.95639,0.905949,0.135742,0.375561,0.787039,0.0551947,0.965877,0.0091145,0.438923,0.076766,0.621601,0.196452,0.855943,0.401098,0.53647,0.816049,0.380853,0.800582,0.553027,0.13864,0.460214,0.547708,0.402187,0.352187,0.105149,0.373949,0.159519,0.193098,0.478123,|0.42137,0.80308,0.183548,0.871965,0.0410686,0.801838,0.710754,0.289677,0.373222,0.235481,0.539813,0.497787,0.81051,0.995222,0.392143,0.816943,0.636861,0.221826,0.423401,0.307815,0.594632,0.572571,0.21576,0.818367,0.22501,0.311512,0.899605,0.900099,0.71755,0.924072,0.720751,0.345703,0.0284441,0.587217,0.943762,0.74794,0.572277,0.98231,0.746926,0.611697,0.877728,0.378551,0.629595,0.11678,0.769003,0.394287,0.378056,0.413382,0.204787,0.38086,0.750406,0.480686,0.642757,0.770996,0.811219,0.790032,0.439266,0.396889,0.775673,0.513159,0.772256,0.828495,0.433675,0.813933,0.243553,0.470798,0.984347,0.659148,0.977457,0.344056,0.18721,0.697822,0.504285,0.548499,0.319914,0.645138,0.238726,0.888839,0.857307,0.652315,0.572136,0.441473,0.634494,0.664385,0.255162,0.428663,0.326352,0.850233,0.993911,0.527966,0.408855,0.147778,0.0370773,0.641071,0.210137,0.3649,0.785553,0.602004,0.861938,0.100167,0.132581,0.114992,0.405947,0.290076,0.716278,0.680438,0.449102,0.829495,0.38743,6.65188e-05,0.835835,0.379472,0.821199,0.235839,0.817868,0.512434,0.59888,0.97739,0.666854,0.487768,0.236274,0.538167,0.408889,0.744977,0.86782,0.329645,0.652126,0.426533,0.337856,0.334876,0.828681,0.942993,0.139999,0.0979139,0.614131,0.0182197,0.20194,0.652922,0.599657,0.0543783,0.658858,0.420007,0.427786,0.899028,0.510869,0.748462,0.837217,0.762895,0.982029,0.743441,0.993546,0.735114,0.454669,0.826007,0.988374,0.182736,0.952736,0.201235,0.645445,0.779451,0.594779,0.500538,0.338746,0.264273,0.489567,0.350302,0.0599972,0.523874,0.833238,0.0863856,0.532547,0.130522,0.610238,0.328675,0.617061,0.00333297,0.0270751,0.0304544,0.968971,0.758847,0.558236,0.691276,0.530297,0.120356,0.817183,0.292245,0.252186,0.260621,0.522381,0.226514,0.538626,0.24328,0.997233,0.0621044,0.559969,0.336107,0.794453,0.535898,0.525291,0.232248,0.373166,0.629536,0.8044,0.373071,0.472796,0.0977758,0.109333,0.146797,0.151738,0.1003,0.495275,0.443187,0.544291,0.784905,0.742059,0.863128,0.166185,0.970103,0.528326,0.0344296,0.559588,0.861732,0.00632477,0.0404101,0.381407,0.23145,0.208826,0.597295,0.715865,0.383305,0.386051,0.881369,0.336502,0.444121,0.298992,0.830109,0.373961,0.235887,0.410373,0.572941,0.0257295,0.388793,0.590794,0.84931,0.977894,0.3038,0.460183,0.227963,0.353365,0.511376,0.451149,0.191382,0.726855,0.829027,0.987513,0.961428,0.347748,0.71633,0.90596,0.0786948,0.302178,0.340897,0.437363,0.84623,0.805783,0.241436,0.538188,0.0686129,0.607201,0.69189,0.643057,0.429531,0.872983,0.371157,0.771985,0.881197,0.0942472,0.23543,0.793047,0.916877,0.836723,0.679752,0.273323,0.636524,0.0841062,0.245866,0.111168,0.840432,0.105671,0.611917,0.0396479,0.428478,0.389428,0.739463,0.568311,0.265499,0.260837,0.413833,0.130521,0.925025,0.963057,0.57245,0.13321,0.457791,0.319315,0.924853,0.379151,0.221493,0.31745,0.0360569,0.176206,0.138747,0.326915,0.787994,0.570719,0.742947,0.565259,0.334254,0.172111,0.863371,0.388886,0.265919,0.162,0.0212924,0.323143,0.738762,0.231466,0.0548661,0.592656,0.549522,0.446752,0.354743,0.0335418,0.5187,0.0573534,0.906955,0.322348,0.980155,0.678282,0.110656,0.53502,0.418204,0.687304,0.591314,0.151399,0.449262,0.478325,0.375982,0.471371,0.214942,0.288803,0.719039,0.806914,0.474768,0.0600172,0.0385052,0.36186,0.0747972,0.585939,0.942022,0.147358,0.888684,0.442387,0.811194,0.4522,0.7289,0.335496,0.0793396,0.251107,0.172945,0.511986,0.673649,0.543825,0.540449,0.230181,0.233407,0.800367,0.832406,0.944158,0.663832,0.0296641,0.563429,0.150816,0.211837,0.0605484,0.134891,0.211542,0.775362,0.0841767,0.0518145,0.982943,0.675932,0.401291,0.709827,0.389176,0.850404,0.499033,0.0923919,0.66472,0.161356,0.346863,0.938303,0.974307,0.626264,0.289512,0.743357,0.254818,0.702329,0.994803,0.471986,0.0533673,0.914032,0.870325,0.496045,0.763211,0.0368338,0.0812923,0.931779,0.13869,0.925156,0.862822,0.289299,0.435706,0.0682039,0.804607,0.258784,0.802669,0.199869,0.609208,0.785135,0.225588,0.538249,0.718113,0.520379,0.218503,0.148031,0.107838,0.254198,0.125681,0.134641,0.339061,0.951977,0.703009,0.962679,0.249543,0.635195,0.693643,0.183779,0.83084,0.163477,0.948673,0.405833,0.0129626,0.388315,0.146896,0.447669,0.877939,0.896859,0.610903,0.414357,0.0774715,0.226822,0.227953,0.386733,0.794801,0.209187,0.431995,0.405415,0.301892,0.99115,0.115417,0.909712,0.000477612,0.014532,0.881257,0.922742,0.153589,0.804882,0.166466,0.176489,0.41468,0.992139,0.41791,0.334781,0.165784,0.0668017,0.500277,0.944023,0.570081,0.296942,0.157296,0.301446,0.0249336,0.284997,0.661056,0.871116,0.525944,0.415623,0.304054,0.407002,0.158854,0.2853,0.842418,0.856426,0.703182,0.0104008,0.79214,0.458825,0.671316,0.661967,0.584643,0.416148,0.544233,0.973092,0.672583,0.720723,0.303945,0.666821,0.276558,0.737134,0.68405,0.126374,0.486353,0.433368,0.925806,0.350619,0.799808,0.188612,0.117199,0.181907,0.487773,0.905816,0.459887,0.794812,0.40763,0.801509,0.657205,0.814405,0.875971,0.671933,0.969046,0.41922,0.486782,0.739242,0.247313,0.535103,0.365959,0.480067,0.729014,0.725666,0.343956,0.282801,0.964187,0.786014,0.246594,0.650882,0.632892,0.505172,0.549438,0.604694,0.676079,0.277943,0.218017,0.180357,0.928848,0.902447,0.399612,0.143226,0.937616,0.645795,0.454406,0.579676,0.94917,0.781429,0.439767,0.97292,0.52432,0.949916,0.838315,0.539772,0.00446153,0.340274,0.214364,0.152495,0.218803,0.987882,0.976879,0.807706,0.145707,0.0946513,0.378326,0.526253,0.237178,0.206816,0.312384,0.893651,0.427269,0.648843,0.90796,0.972393,0.168846,0.263735,0.480647,0.832212,0.617733,0.966994,0.7124,0.417144,0.446878,0.850988,0.371582,0.501971,0.526156,0.145397,0.0067417,0.606649,0.53196,0.124479,0.35577,0.328514,0.805414,0.54974,0.961632,0.779038,0.970745,0.43988,0.387235,0.173758,0.773567,0.46706,0.0501403,0.571279,0.778275,0.232333,0.721319,0.762151,0.177134,0.969025,0.0214911,0.338576,0.333361,0.97371,0.573006,0.966298,0.0803717,0.918423,0.0497311,0.492226,0.0483966,0.319958,0.506018,0.1913,0.884806,0.637976,0.722716,0.146102,0.393936,0.994413,0.364678,0.544018,0.641629,0.695675,0.190385,0.969552,0.0637115,0.581451,0.236641,0.597397,0.204498,0.481704,0.787022,0.872713,0.377748,0.253324,0.742695,0.67254,0.00349635,0.0526304,0.47058,0.195035,0.744453,0.502293,0.439384,0.166763,0.377951,0.535029,0.98596,0.301198,0.987329,0.325614,0.976469,0.59827,0.859033,0.183119,0.534761,0.0195223,0.195936,0.217657,0.167822,0.316572,0.146816,0.176048,0.787976,0.28318,0.689802,0.561263,0.816655,0.885984,0.936123,0.564695,0.337198,0.21363,0.680193,0.907281,0.904952,0.0693747,0.182672,0.291085,0.591579,0.317652,0.0680187,0.993885,0.573825,0.758323,0.0710202,0.157725,0.601762,0.887093,0.660936,0.561625,0.234202,0.785669,0.0303925,0.926243,0.776254,0.880928,0.675301,0.763512,0.451432,0.0407286,0.168339,0.00934047,0.536283,0.277235,0.510278,0.779575,0.617865,0.299758,0.0951047,0.563591,0.766973,0.201197,0.718452,0.793861,0.995723,0.123331,0.0118383,0.231544,0.763125,0.606415,0.0686126,0.489027,0.169248,0.400111,0.626038,0.261277,0.402857,0.831957,0.0264738,0.909032,0.112446,0.797726,0.161968,0.656077,0.941496,0.185364,0.507229,0.864914,0.609698,0.969999,0.493177,0.619322,0.358634,0.635047,0.480542,0.674585,0.678698,0.044284,0.467964,0.601269,0.68287,0.529155,0.656089,0.477938,0.666755,0.941061,0.879837,0.780182,0.439528,0.778994,0.924385,0.0574522,0.86511,0.844467,0.72137,0.193555,0.882191,0.700297,0.932876,0.839853,0.0459815,0.448782,0.582892,0.0142724,0.925109,0.179622,0.0164731,0.670786,0.0206811,0.607808,0.342145,0.965463,0.0644807,0.899614,0.71765,0.48102,0.809058,0.596892,0.637064,0.661237,0.927453,0.105193,0.209308,0.835063,0.431718,0.740538,0.010274,0.445656,0.824225,0.859652,0.130979,0.923768,0.778271,0.610417,0.197562,0.953065,0.121164,0.997331,0.319637,0.605937,0.183553,0.992966,0.491486,0.770639,0.184607,0.348105,0.706333,0.256321,0.042845,0.405747,0.244165,0.652934,0.897993,0.192628,0.21602,0.524256,0.385863,0.314664,0.373293,0.266855,0.824377,0.545843,0.693836,0.158682,0.167338,0.912882,0.531863,0.604891,0.669869,0.993662,0.449062,0.558309,0.508783,0.506733,0.882813,0.738167,0.227446,0.480358,0.0683622,0.766769,0.73056,0.274743,0.170056,0.728481,0.57384,0.521768,0.855122,0.614083,0.380941,0.229909,0.352488,0.157711,0.987365,0.435209,0.187101,0.849401,0.616935,0.18758,0.936336,0.865032,0.848121,0.931904,0.136535,0.680339,0.526908,0.0726323,0.814535,0.79216,0.492549,0.735792,0.727071,0.410822,0.68061,0.702873,0.00735569,0.732971,0.0636895,0.0924761,0.725576,0.263995,0.739136,0.90975,0.248162,0.212258,0.787064,0.840889,0.69032,0.216235,0.489065,0.53727,0.164851,0.0578471,0.614891,0.794848,0.280281,0.123403,0.996483,0.949667,0.708392,0.975786,0.656923,0.510951,0.342064,0.692543,0.482924,0.231083,0.236766,0.671193,0.0418563,0.0562324,0.954537,0.5596,0.707134,0.279602,0.846044,0.878091,0.200715,0.013688,0.926778,0.188594,0.127674,0.225609,0.378747,0.684516,0.8848,0.123092,0.8201,0.430156,0.673961,0.954875,0.921595,0.26596,0.905945,0.291109,0.998775,0.970373,0.0794963,0.254796,0.478206,0.300213,0.293078,0.44437,0.00257552,0.0819977,0.283282,0.174641,0.166058,0.597129,0.668169,0.511797,|0.7447,0.739802,0.65739,0.566893,0.502307,0.573082,0.69886,0.200061,0.516009,0.960168,0.911344,0.280035,0.683506,0.90882,0.0286583,0.16072,0.963,0.101856,0.740205,0.62274,0.209019,0.0917524,0.108005,0.217056,0.511939,0.399048,0.821819,0.240306,0.140918,0.422863,0.957147,0.483128,0.825626,0.0898927,0.915207,0.630525,0.0110067,0.862141,0.684677,0.376005,0.683576,0.894878,0.738919,0.827559,0.44898,0.822531,0.450602,0.452992,0.792522,0.819938,0.402415,0.327608,0.329311,0.573034,0.040266,0.177737,0.475412,0.343923,0.785493,0.256876,0.669831,0.75053,0.605935,0.808609,0.309357,0.735978,0.286187,0.988556,0.491495,0.993656,0.123599,0.796305,0.0391926,0.957156,0.482797,0.828238,0.827647,0.566856,0.292383,0.778682,0.668682,0.528866,0.341508,0.814545,0.655876,0.7337,0.394319,0.436991,0.1041,0.753151,0.600832,0.781662,0.258987,0.880825,0.125008,0.969621,0.0740329,0.939069,0.0184637,0.337323,0.762774,0.968931,0.870391,0.98132,0.593932,0.0986005,0.34426,0.707172,0.244092,0.299232,0.473202,0.0664608,0.539119,0.0275642,0.552653,0.667705,0.999927,0.436461,0.841565,0.230859,0.210281,0.36963,0.969318,0.357222,0.0690984,0.515258,0.27044,0.71996,0.182002,0.216123,0.399926,0.340237,0.250993,0.522393,0.451717,0.524567,0.285243,0.628221,0.250396,0.604163,0.848788,0.606811,0.821019,0.430002,0.861881,0.745093,0.252366,0.963983,0.658266,0.643237,0.442849,0.364756,0.579647,0.961489,0.960079,0.695446,0.486767,0.167732,0.378297,0.957096,0.16638,0.0295914,0.151562,0.961808,0.837199,0.322292,0.214754,0.291228,0.831977,0.00647879,0.705699,0.283199,0.500246,0.293711,0.655389,0.423403,0.161067,0.592068,0.110692,0.0921322,0.96303,0.562324,0.615155,0.214884,0.964239,0.60206,0.573902,0.734819,0.518279,0.287844,0.994817,0.539079,0.482074,0.365861,0.746299,0.761219,0.568379,0.0651426,0.713454,0.438692,0.309928,0.655001,0.780682,0.621377,0.130089,0.776402,0.55498,0.784588,0.875265,0.861079,0.635755,0.980157,0.888416,0.0838663,0.656149,0.477913,0.939395,0.17225,0.533737,0.65528,0.883825,0.783563,0.655282,0.0811545,0.6452,0.315846,0.627775,0.219681,0.888257,0.166332,0.136665,0.716224,0.874725,0.0277289,0.0127606,0.932459,0.0697483,0.617356,0.178315,0.851021,0.194115,0.697546,0.417998,0.851617,0.476825,0.287558,0.750282,0.472206,0.140037,0.11496,0.926616,0.425338,0.966037,0.469756,0.249082,0.638247,0.775646,0.721551,0.258412,0.411507,0.243831,0.424673,0.96961,0.693305,0.615815,0.133586,0.894878,0.57086,0.347012,0.998779,0.876561,0.64463,0.860678,0.160479,0.941486,0.740789,0.890788,0.684413,0.00644892,0.134213,0.414074,0.335266,0.4156,0.491083,0.0416177,0.801596,0.226079,0.79003,0.829526,0.866213,0.908119,0.0853607,0.158108,0.0625337,0.934464,0.570068,0.23386,0.416262,0.703337,0.390185,0.267015,0.0850694,0.761934,0.365387,0.591946,0.832067,0.791229,0.740816,0.704629,0.0486919,0.788861,0.0849898,0.17641,0.967992,0.16875,0.525092,0.013873,0.469904,0.538016,0.930365,0.506813,0.311037,0.822626,0.687226,0.728546,0.460142,0.481745,0.104365,0.378506,0.911959,0.700384,0.196494,0.361329,0.244288,0.0339562,0.734901,0.668667,0.308275,0.559442,0.080501,0.195163,0.209764,0.229286,0.717848,0.795371,0.601044,0.732731,0.319099,0.544934,0.278843,0.470265,0.964539,0.899263,0.439049,0.0629067,0.561804,0.316457,0.608883,0.857491,0.907781,0.0835093,0.791672,0.829819,0.440751,0.394836,0.136547,0.17401,0.60893,0.200561,0.133136,0.786579,0.632106,0.646877,0.316687,0.657429,0.458403,0.736424,0.980225,0.4152,0.0358977,0.372308,0.962791,0.230925,0.779034,0.624344,0.499574,0.694313,0.052457,0.784113,0.655255,0.492113,0.133844,0.585537,0.631305,0.773792,0.491603,0.841793,0.378038,0.288965,0.480088,0.148679,0.194026,0.655766,0.567399,0.914633,0.118906,0.182046,0.0817187,0.542075,0.174581,0.645179,0.100686,0.0886275,0.12677,0.99639,0.511085,0.646084,0.557714,0.91433,0.518395,0.210169,0.259542,0.449516,0.240756,0.695688,0.720339,0.440369,0.593413,0.275008,0.249694,0.341712,0.450812,0.103805,0.182129,0.914984,0.0158773,0.624776,0.89319,0.19931,0.619105,0.387684,0.381228,0.695356,0.0113675,0.357053,0.391038,0.498658,0.395171,0.63235,0.185735,0.426448,0.424609,0.93275,0.739568,0.27163,0.697358,0.930481,0.241041,0.525242,0.839991,0.392888,0.164404,0.721536,0.487833,0.978566,0.437107,0.80477,0.877908,0.21802,0.903611,0.540909,0.150238,0.0661204,0.501304,0.522781,0.917943,0.265212,0.365531,0.523594,0.222449,0.627811,0.708475,0.664225,0.0433228,0.146571,0.332802,0.858297,0.964063,0.282121,0.0154748,0.911718,0.424601,0.0135109,0.436159,0.481862,0.552534,0.520764,0.201225,0.165953,0.638491,0.639998,0.139449,0.607485,0.606397,0.675331,0.00921291,0.260127,0.0247203,0.00735599,0.203837,0.788857,0.997332,0.616581,0.146371,0.701046,0.883635,0.0997424,0.689392,0.870162,0.396401,0.277973,0.238658,0.836768,0.227379,0.645742,0.11168,0.929699,0.00878692,0.839229,0.551761,0.30964,0.119704,0.104327,0.779193,0.157973,0.283998,0.547698,0.206379,0.711699,0.63022,0.358318,0.583957,0.472987,0.351108,0.37675,0.235389,0.479633,0.581784,0.946376,0.301833,0.556917,0.730302,0.743542,0.336753,0.509492,0.97441,0.105123,0.0235493,0.0881095,0.184086,0.70302,0.805117,0.452145,0.78875,0.033118,0.728857,0.574281,0.955669,0.313961,0.230346,0.825949,0.487071,0.147156,0.0766028,0.146557,0.0866026,0.857553,0.223224,0.362532,0.485541,0.0108212,0.07487,0.913713,0.837238,0.505936,0.381797,0.595811,0.445368,0.0975156,0.674407,0.914375,0.32915,0.528556,0.441172,0.337787,0.470613,0.470508,0.904783,0.415613,0.434664,0.810988,0.874338,0.222508,0.796427,0.848172,0.863623,0.605345,0.527164,0.48021,0.657756,0.247399,0.177763,0.0509454,0.64046,0.628773,0.497356,0.0815165,0.359125,0.319912,0.910372,0.651169,0.914218,0.98365,0.611715,0.953535,0.150045,0.277295,0.998289,0.840621,0.215628,0.87046,0.936545,0.692061,0.529893,0.309163,0.503765,0.0433406,0.969814,0.126709,0.722499,0.400513,0.491683,0.701833,0.220146,0.0671954,0.320064,0.0479875,0.888157,0.311659,0.607307,0.284855,0.650549,0.0220668,0.18249,0.439634,0.157633,0.593031,0.36506,0.364328,0.901541,0.23809,0.789661,0.236208,0.477974,0.0348915,0.429231,0.91349,0.210555,0.965425,0.102314,0.966002,0.0164591,0.883309,0.430465,0.9855,0.369126,0.673064,0.364791,0.200041,0.0395725,0.786109,0.239274,0.655395,0.515576,0.610954,0.846125,0.443286,0.591406,0.265183,0.3495,0.0466354,0.676552,0.372399,0.970112,0.324832,0.0550942,0.146676,0.88059,0.543645,0.833305,0.142606,0.952141,0.19655,0.432028,0.305172,0.508675,0.223664,0.953467,0.766643,0.441566,0.220829,0.53994,0.704025,0.513373,0.525682,0.476674,0.727694,0.509049,0.267654,0.416955,0.71873,0.620306,0.0402736,0.653919,0.539019,0.075564,0.260707,0.0612723,0.611219,0.922339,0.592771,0.351019,0.662808,0.0125096,0.298643,0.360066,0.952613,0.297165,0.427669,0.269285,0.15779,0.781874,0.957514,0.798818,0.0496833,0.322649,0.633315,0.561387,0.397635,0.855318,0.922087,0.916739,0.950131,0.841899,0.336809,0.896685,0.88869,0.730935,0.623726,0.306479,0.0950889,0.648307,0.104168,0.0643318,0.923318,0.327042,0.0629599,0.396545,0.941917,0.570834,0.136067,0.424459,0.947796,0.772459,0.336396,0.766033,0.96898,0.503425,0.97648,0.697831,0.993149,0.291374,0.930073,0.151013,0.222747,0.866578,0.280747,0.529503,0.459728,0.992064,0.797695,0.306039,0.726349,0.31937,0.586713,0.164202,0.348943,0.460229,0.432505,0.258515,0.258964,0.963078,0.144652,0.661263,0.795233,0.688862,0.715339,0.416846,0.0300976,0.112883,0.801215,0.760212,0.382581,0.506646,0.937347,0.3953,0.505625,0.74693,0.527773,0.487541,0.405029,0.301829,0.183268,0.00927788,0.412923,0.439405,0.799796,0.908856,0.391336,0.775128,0.211741,0.257864,0.187181,0.370028,0.00875366,0.239293,0.329783,0.13923,0.901106,0.24599,0.423073,0.864413,0.337801,0.914271,0.334121,0.545307,0.657426,0.299058,0.431421,0.286584,0.137413,0.61338,0.88994,0.17056,0.00837648,0.743687,0.421513,0.53835,0.0225757,0.929872,0.007572,0.687306,0.650421,0.523658,0.888989,0.564019,0.827344,0.420913,0.395539,0.405596,0.570257,0.00429994,0.273548,0.815441,0.802798,0.947596,0.13852,0.463946,0.833048,0.433731,0.688825,0.772481,0.797037,0.361435,0.946045,0.0494778,0.913146,0.966354,0.1177,0.86985,0.426413,0.609621,0.925673,0.36891,0.0490569,0.447713,0.606007,0.189367,0.594311,0.367779,0.621309,0.130068,0.911496,0.76122,0.188342,0.974334,0.392623,0.081635,0.740303,0.108859,0.480225,0.516339,0.205618,0.775433,0.458909,0.706516,0.0833635,0.185777,0.621323,0.967311,0.647377,0.196221,0.204624,0.481913,0.84555,0.538729,0.237948,0.204522,0.101381,0.381612,0.245561,0.0268304,0.634019,0.818416,0.807393,0.245605,0.118078,0.000899553,0.934572,0.482232,0.325453,0.578069,0.26758,0.0275317,0.456668,0.725151,0.569039,0.589941,0.656305,0.257942,0.714281,0.530765,0.266286,0.338825,0.376387,0.149373,0.830219,0.0950672,0.974727,0.813971,0.481669,0.590243,0.65707,0.694272,0.0725458,0.858952,0.0894962,0.991329,0.279644,0.30475,0.102823,0.562095,0.583297,0.603013,0.541335,0.404813,0.751072,0.51718,0.827179,0.280211,0.554997,0.0268707,0.100213,0.278505,0.51276,0.43703,0.102809,0.278926,0.678683,0.942326,0.752049,0.304735,0.513842,0.334083,0.460183,0.824228,0.536575,0.879003,0.987378,0.897682,|0.124573,0.940882,0.618468,0.863792,0.271213,0.125304,0.696227,0.563141,0.219274,0.185364,0.428673,0.965723,0.525926,0.866288,0.113022,0.554625,0.124223,0.161885,0.783519,0.44672,0.116225,0.614443,0.294368,0.227727,0.00197649,0.327699,0.173644,0.927861,0.644113,0.73085,0.622347,0.344558,0.509006,0.471938,0.040346,0.2776,0.78552,0.393062,0.0233417,0.539691,0.705641,0.449696,0.621262,0.56026,0.318661,0.715664,0.367567,0.0294303,0.100886,0.530555,0.526028,0.795463,0.980528,0.571158,0.719586,0.548839,0.841553,0.160375,0.318275,0.760769,0.184434,0.477614,0.337757,0.349603,0.268581,0.55601,0.355004,0.995341,0.0808666,0.608602,0.891731,0.228399,0.0181582,0.944192,0.552201,0.755449,0.270086,0.305989,0.630436,0.848098,0.961743,0.00199664,0.801721,0.714305,0.531386,0.735518,0.635052,0.401056,0.665873,0.126145,0.565598,0.254499,0.580792,0.56283,0.0734117,0.554946,0.569284,0.478152,0.343925,0.774777,0.427444,0.182753,0.550046,0.342379,0.437975,0.598601,0.955398,0.315101,0.916733,0.667775,0.787398,0.322739,0.747221,0.985818,0.703458,0.302628,0.788015,0.84237,0.691443,0.123379,0.681575,0.311572,0.503972,0.926453,0.0664625,0.107533,0.646553,0.325974,0.186947,0.640333,0.24827,0.145706,0.825555,0.571164,0.244588,0.46874,0.769995,0.104157,0.864794,0.923458,0.615225,0.52119,0.156437,0.268371,0.690311,0.695681,0.259845,0.911784,0.377593,0.515196,0.13278,0.634871,0.428929,0.0593993,0.932852,0.286388,0.156629,0.107317,0.859209,0.188263,0.664088,0.40424,0.487079,0.16014,0.683648,0.905241,0.531858,0.910768,0.571288,0.778725,0.176907,0.303086,0.146451,0.144498,0.798565,0.444505,0.751365,0.779167,0.834661,0.866526,0.745493,0.140283,0.272338,0.0308127,0.20622,0.886973,0.154534,0.0235432,0.66021,0.994475,0.779099,0.213246,0.857747,0.118327,0.366661,0.190851,0.361942,0.0957738,0.185655,0.51014,0.275435,0.506016,0.187837,0.774356,0.822398,0.74924,0.76086,0.695397,0.560587,0.76482,0.886909,0.729659,0.0202116,0.715786,0.537948,0.285115,0.556073,0.312327,0.800546,0.209241,0.768705,0.580781,0.250105,0.612634,0.165025,0.644935,0.748573,0.744969,0.297893,0.00280744,0.532586,0.56801,0.836183,0.515674,0.947238,0.103955,0.783469,0.164435,0.157019,0.736702,0.971513,0.387349,0.534739,0.349984,0.518356,0.599446,0.0345008,0.654688,0.386946,0.358629,0.38445,0.638174,0.448495,0.735701,0.99475,0.649363,0.604443,0.440543,0.832235,0.670116,0.210914,0.943747,0.452713,0.881245,0.996927,0.152707,0.376328,0.686586,0.929303,0.437474,0.215326,0.938051,0.394225,0.70314,0.365618,0.802363,0.965519,0.869544,0.335865,0.628294,0.440004,0.939494,0.302415,0.666359,0.803444,0.390549,0.79078,0.360697,0.844369,0.269779,0.741292,0.599009,0.332964,0.702806,0.479475,0.935578,0.769162,0.567522,0.501932,0.191971,0.307618,0.62323,0.441939,0.657305,0.0252398,0.666037,0.0201171,0.308136,0.376596,0.892827,0.79142,0.380465,0.527702,0.434794,0.113886,0.627896,0.266164,0.164489,0.291928,0.330277,0.0139804,0.991736,0.19142,0.865492,0.959436,0.652191,0.291785,0.192674,0.69772,0.610117,0.555385,0.13935,0.759882,0.679592,0.0666943,0.157984,0.647861,0.5275,0.8086,0.765272,0.315423,0.22619,0.269096,0.828865,0.207525,0.138288,0.519211,0.3729,0.354505,0.47805,0.821997,0.191069,0.169676,0.327874,0.246417,0.13419,0.329491,0.538957,0.67936,0.612254,0.604128,0.730494,0.0449671,0.750603,0.410725,0.752287,0.245545,0.371805,0.566976,0.0493893,0.143204,0.246139,0.263374,0.519716,0.473525,0.627325,0.351453,0.131894,0.705143,0.453292,0.138812,0.697311,0.192787,0.894711,0.76572,0.159508,0.799127,0.888168,0.664178,0.126629,0.871756,0.348504,0.807085,0.654621,0.500461,0.64127,0.976711,0.105377,0.694643,0.613227,0.506908,0.519939,0.379643,0.306068,0.704527,0.448133,0.234482,0.865717,0.495007,0.541581,0.281467,0.901838,0.542851,0.292405,0.563659,0.537853,0.804196,0.200539,0.959811,0.424277,0.36768,0.532629,0.801109,0.608796,0.284669,0.746457,0.296489,0.0506198,0.222008,0.156295,0.522986,0.777726,0.524905,0.0828177,0.270906,0.479767,0.27304,0.945707,0.529833,0.272113,0.482642,0.242497,0.133647,0.078291,0.943881,0.967302,0.73306,0.818752,0.178363,0.841017,0.843212,0.773452,0.514715,0.214252,0.0146183,0.332422,0.716384,0.556399,0.873322,0.721734,0.993888,0.199157,0.500885,0.865834,0.397912,0.719689,0.559268,0.903337,0.883131,0.189497,0.68978,0.778207,0.525237,0.550868,0.597753,0.771736,0.933878,0.15363,0.827395,0.934301,0.390385,0.539017,0.905454,0.522808,0.782888,0.685561,0.973498,0.871566,0.936173,0.413834,0.184565,0.234934,0.11267,0.11793,0.820329,0.105276,0.64571,0.107987,0.579241,0.948399,0.351042,0.513293,0.298643,0.727257,0.31805,0.977483,0.00219238,0.627142,0.015251,0.741495,0.213174,0.936167,0.466889,0.483687,0.4848,0.298972,0.754103,0.814212,0.97731,0.473992,0.958619,0.312765,0.256825,0.507037,0.994802,0.96332,0.01004,0.327452,0.114596,0.232117,0.724541,0.466646,0.500497,0.583678,0.0228568,0.287975,0.987892,0.609246,0.950534,0.493826,0.864087,0.363242,0.229617,0.255418,0.407605,0.185618,0.365106,0.0561392,0.911902,0.840678,0.676247,0.764132,0.309149,0.645804,0.755577,0.389024,0.622733,0.0362991,0.476493,0.27115,0.0444549,0.059347,0.367359,0.358116,0.181732,0.515798,0.124648,0.11892,0.796274,0.188779,0.984346,0.649139,0.331159,0.721759,0.157263,0.582865,0.444976,0.950004,0.273975,0.998224,0.000832021,0.98194,0.440402,0.477871,0.658254,0.427302,0.132252,0.507576,0.861934,0.793099,0.519291,0.894046,0.975041,0.483221,0.266784,0.681369,0.916695,0.515987,0.523607,0.689357,0.681827,0.625352,0.248425,0.885082,0.399337,0.0303388,0.774299,0.256062,0.333837,0.731393,0.630029,0.818304,0.267932,0.617127,0.377163,0.204442,0.0114777,0.19452,0.62493,0.249027,0.653035,0.0338382,0.207373,0.168214,0.230573,0.725457,0.518989,0.619992,0.179897,0.713084,0.153323,0.972375,0.537865,0.373126,0.172848,0.0484164,0.170203,0.946827,0.313103,0.664497,0.184574,0.138674,0.314744,0.931917,0.425641,0.758599,0.222829,0.389669,0.577069,0.714069,0.0725455,0.907775,0.151697,0.854259,0.644928,0.759146,0.894134,0.852077,0.181745,0.382187,0.407128,0.485083,0.131741,0.716897,0.00791693,0.421373,0.606453,0.257583,0.869664,0.142906,0.990001,0.166395,0.205634,0.335612,0.960995,0.350011,0.921192,0.0472077,0.71271,0.746733,0.610181,0.578047,0.969117,0.119477,0.334336,0.884988,0.287708,0.952824,0.549692,0.00192386,0.587216,0.945476,0.881573,0.86434,0.744293,0.411176,0.527553,0.73555,0.00560218,0.87599,0.44853,0.0852016,0.848329,0.731645,0.393739,0.746722,0.026875,0.361479,0.521375,0.744368,0.0611507,0.675921,0.683482,0.625529,0.77697,0.317948,0.0561331,0.657092,0.920541,0.349052,0.812871,0.256096,0.336423,0.912798,0.225838,0.784346,0.39173,0.100593,0.437467,0.610304,0.598327,0.995764,0.988219,0.579621,0.75436,0.170591,0.440679,0.273693,0.386468,0.687686,0.0419804,0.81796,0.208924,0.402589,0.383002,0.869775,0.107964,0.695713,0.00460249,0.472061,0.642148,0.143042,0.571318,0.479694,0.482952,0.541466,0.697217,0.881633,0.349205,0.236241,0.841941,0.909039,0.0130579,0.114008,0.388904,0.192256,0.0869172,0.0703672,0.898282,0.325897,0.315381,0.232326,0.487958,0.826054,0.993519,0.447796,0.315756,0.600729,0.860412,0.47085,0.872141,0.745418,0.958361,0.549376,0.123759,0.043973,0.547248,0.515581,0.49484,0.993316,0.76136,0.796652,0.850334,0.748633,0.878454,0.0690584,0.693768,0.135745,0.217556,0.0572228,0.269933,0.733316,0.219315,0.179173,0.317371,0.977559,0.232376,0.303632,0.539847,0.540933,0.397282,0.274778,0.00267845,0.130899,0.0733074,0.444593,0.809112,0.701356,0.00653714,0.856953,0.0183894,0.674065,0.10364,0.905229,0.397016,0.856647,0.188191,0.483178,0.311225,0.214487,0.898924,0.752241,0.525313,0.356516,0.235755,0.729768,0.609238,0.364094,0.107949,0.502066,0.0483965,0.736691,0.0149523,0.00655025,0.855142,0.535696,0.293505,0.546793,0.302614,0.742932,0.076331,0.36046,0.205306,0.764168,0.548992,0.808999,0.157335,0.811904,0.947253,0.0142087,0.260887,0.723106,0.742384,0.492064,0.039539,0.172044,0.0536154,0.590384,0.210831,0.678097,0.22929,0.526131,0.292419,0.85616,0.714265,0.519692,0.711925,0.497184,0.325608,0.135102,0.250845,0.0395954,0.207588,0.27336,0.637023,0.444526,0.601537,0.571892,0.857323,0.673785,0.327858,0.541048,0.418798,0.799366,0.76781,0.175212,0.262739,0.615485,0.449875,0.405263,0.352131,0.921057,0.336937,0.444573,0.891934,0.936793,0.322942,0.612931,0.0350934,0.438503,0.542035,0.930652,0.49934,0.76173,0.0834975,0.992199,0.939332,0.807868,0.886265,0.231129,0.96306,0.135443,0.122924,0.531587,0.632291,0.589124,0.247066,0.393699,0.277759,0.989419,0.347876,0.28289,0.178256,0.290249,0.107325,0.933321,0.747454,0.612269,0.32627,0.357395,0.693011,0.00608975,0.73837,0.242316,0.452031,0.780117,0.220807,0.00589067,0.630001,0.903948,0.962629,0.22878,0.640051,0.878318,0.54708,0.995541,0.758543,0.122615,0.632513,0.531337,0.573534,0.198839,0.762952,0.204359,0.275612,0.860529,0.733293,0.067826,0.376022,0.777916,0.00211048,0.378628,0.670685,0.898077,0.888957,0.175686,0.822972,0.854559,0.838683,0.701957,0.094734,0.483883,0.623971,0.681889,0.22962,0.975507,0.18684,0.600924,0.851157,0.0479071,0.906537,0.73882,0.545856,0.0258466,0.631527,0.117955,0.710208,0.354512,0.982627,0.723488,|0.0983356,0.172017,0.483881,0.670809,0.912881,0.716885,0.799977,0.475928,0.107943,0.117684,0.19243,0.251027,0.991023,0.781662,0.383718,0.224525,0.834345,0.623454,0.325152,0.870012,0.695045,0.54985,0.775013,0.966391,0.582188,0.504478,0.694135,0.626243,0.529507,0.869566,0.26043,0.862317,0.0911659,0.332126,0.337553,0.870475,0.703721,0.21874,0.859835,0.531041,0.470999,0.72683,0.854613,0.816084,0.656363,0.814155,0.852557,0.126056,0.861365,0.588099,0.960441,0.872545,0.0556351,0.822325,0.445536,0.389767,0.379454,0.324662,0.156891,0.406496,0.0217531,0.021196,0.395106,0.41467,0.0075438,0.724771,0.409272,0.773639,0.507634,0.666121,0.801949,0.125075,0.512311,0.0195458,0.656617,0.500068,0.00679421,0.857372,0.810971,0.2554,0.107283,0.260034,0.184106,0.637152,0.669521,0.876041,0.607111,0.955916,0.607449,0.409308,0.878234,0.0839918,0.592094,0.744904,0.801195,0.0419193,0.938174,0.624414,0.836845,0.286355,0.450797,0.0745358,0.584687,0.748643,0.594807,0.344612,0.0663452,0.602688,0.416186,0.72512,0.97315,0.922023,0.564558,0.270531,0.941586,0.394572,0.366217,0.0304689,0.651655,0.490045,0.189996,0.348547,0.993774,0.888544,0.421245,0.571305,0.0298628,0.433125,0.795029,0.606811,0.322819,0.398372,0.374216,0.39021,0.061972,0.873051,0.796104,0.64944,0.0375205,0.767998,0.320784,0.967368,0.574872,0.40326,0.909095,0.193344,0.109062,0.0433469,0.701998,0.719593,0.201452,0.446932,0.403713,0.29082,0.785266,0.389498,0.742734,0.266699,0.427177,0.665535,0.933907,0.71392,0.271869,0.176673,0.895819,0.70009,0.127427,0.286651,0.422394,0.425384,0.033182,0.391102,0.806091,0.626288,0.625768,0.201359,0.271789,0.247966,0.741191,0.54675,0.830108,0.491556,0.892256,0.497172,0.333224,0.600587,0.895707,0.858978,0.151936,0.650735,0.419134,0.593335,0.856821,0.331674,0.0549849,0.8799,0.138827,0.491682,0.141212,0.440644,0.451191,0.28601,0.893308,0.0160661,0.761208,0.244226,0.960305,0.742283,0.163125,0.844031,0.424435,0.788426,0.256282,0.304138,0.466972,0.91847,0.893103,0.247603,0.285433,0.144943,0.895468,0.857475,0.0757488,0.108448,0.292791,0.144982,0.386505,0.526964,0.446525,0.772651,0.690533,0.317102,0.87887,0.841054,0.591549,0.403837,0.756301,0.839822,0.612949,0.559148,0.346983,0.384522,0.0735909,0.680817,0.441319,0.615067,0.710496,0.368392,0.915318,0.679726,0.418175,0.0140532,0.786687,0.379066,0.970815,0.147565,0.131338,0.521249,0.313372,0.407047,0.37175,0.443126,0.0703659,0.732584,0.979724,0.631322,0.194198,0.355346,0.187541,0.0972082,0.100677,0.653624,0.658504,0.860193,0.409383,0.971471,0.751134,0.0461341,0.478567,0.166413,0.138709,0.783072,0.837028,0.660689,0.788055,0.645355,0.658049,0.121874,0.18792,0.940131,0.135762,0.432593,0.040795,0.905931,0.673732,0.474641,0.81421,0.447348,0.497305,0.98366,0.806929,0.608516,0.586378,0.0684388,0.364092,0.237427,0.0223292,0.926629,0.427548,0.352471,0.944781,0.856891,0.97146,0.960005,0.120256,0.439118,0.332913,0.297109,0.272605,0.409576,0.295202,0.749343,0.980597,0.517321,0.0582166,0.541638,0.598155,0.947407,0.455923,0.769945,0.169394,0.725484,0.796515,0.209872,0.301235,0.0451325,0.750616,0.950392,0.58716,0.713453,0.739486,0.785483,0.582421,0.760009,0.52526,0.82378,0.719903,0.985003,0.510972,0.647289,0.56132,0.0353539,0.654815,0.903817,0.175492,0.877662,0.818976,0.0507895,0.500199,0.312315,0.388042,0.469532,0.437722,0.0110231,0.415373,0.498445,0.307818,0.321339,0.0574319,0.166534,0.84303,0.451699,0.491844,0.125684,0.827132,0.281722,0.126962,0.890847,0.0205717,0.563807,0.986059,0.452799,0.807385,0.959946,0.759127,0.760685,0.183679,0.156015,0.371179,0.429511,0.374277,0.757883,0.0554023,0.578143,0.227696,0.689437,0.948663,0.192988,0.228982,0.170535,0.0300036,0.398615,0.190765,0.999142,0.0734385,0.837133,0.771389,0.87464,0.937845,0.52646,0.172143,0.362076,0.743126,0.384174,0.913968,0.611392,0.711714,0.942092,0.185747,0.593722,0.936277,0.607417,0.894304,0.0316538,0.660911,0.10432,0.461882,0.924462,0.363369,0.172615,0.460553,0.867221,0.756256,0.234356,0.116477,0.391428,0.297042,0.877598,0.501065,0.412907,0.691396,0.180645,0.284245,0.596613,0.162437,0.657412,0.0798644,0.623256,0.250164,0.0391654,0.663597,0.732078,0.986366,0.727024,0.223233,0.487104,0.355201,0.42739,0.86256,0.419382,0.748662,0.573041,0.674956,0.775265,0.130642,0.650056,0.805504,0.901606,0.0842268,0.599508,0.465469,0.519963,0.197833,0.792256,0.202674,0.139725,0.595809,0.550066,0.150911,0.0543591,0.158119,0.374506,0.282722,0.767575,0.821183,0.0774177,0.357437,0.0673784,0.644335,0.254525,0.617865,0.196113,0.473991,0.736234,0.98258,0.943164,0.0842682,0.441835,0.309226,0.450298,0.00626189,0.374139,0.648884,0.945665,0.15273,0.772891,0.526055,0.508913,0.501094,0.845347,0.75708,0.559521,0.936506,0.361217,0.833279,0.986629,0.970591,0.430427,0.470272,0.464171,0.42611,0.131176,0.822236,0.259997,0.419797,0.852184,0.120472,0.371665,0.34205,0.541875,0.240811,0.501443,0.0104008,0.995871,0.0836789,0.605395,0.985042,0.334768,0.706627,0.692991,0.280353,0.0106291,0.672252,0.518316,0.406862,0.00392717,0.481057,0.261922,0.635243,0.679862,0.313346,0.0103922,0.137583,0.509017,0.463586,0.0680664,0.297185,0.891409,0.686236,0.0712332,0.482353,0.204349,0.819843,0.215971,0.825259,0.969954,0.880747,0.798863,0.768867,0.204119,0.963824,0.375275,0.522232,0.491651,0.738222,0.534285,0.827154,0.596878,0.777349,0.1211,0.288919,0.374938,0.779128,0.996841,0.298684,0.973558,0.224998,0.585998,0.672933,0.641409,0.711234,0.492422,0.0234339,0.98332,0.520044,0.627891,0.909352,0.786274,0.179571,0.568127,0.139679,0.629658,0.722217,0.433227,0.416634,0.818914,0.149829,0.51474,0.949346,0.374194,0.615363,0.265054,0.498521,0.970328,0.552824,0.388671,0.079964,0.119306,0.839416,0.21647,0.140509,0.0244004,0.301366,0.296923,0.5588,0.605054,0.368959,0.647322,0.0301806,0.607823,0.233781,0.51636,0.663788,0.555424,0.949216,0.108208,0.633429,0.173192,0.669286,0.513419,0.418462,0.363617,0.736417,0.909479,0.223149,0.0632228,0.0817536,0.962092,0.327217,0.218634,0.569148,0.301336,0.302959,0.543073,0.0759315,0.0805909,0.938127,0.485145,0.503378,0.882851,0.777384,0.581703,0.267727,0.209127,0.411161,0.905116,0.214446,0.463207,0.377428,0.930699,0.818964,0.577028,0.522375,0.820528,0.41469,0.963471,0.497096,0.80049,0.743345,0.238319,0.690607,0.0258149,0.977969,0.333709,0.0558405,0.40811,0.0949101,0.0550684,0.798892,0.943763,0.534952,0.875329,0.186835,0.884354,0.094412,0.637916,0.0177667,0.720039,0.16173,0.558276,0.412224,0.575607,0.627755,0.622706,0.182014,0.897026,0.443317,0.934111,0.101422,0.892466,0.919852,0.428121,0.446577,0.5971,0.593625,0.517762,0.944726,0.235292,0.949392,0.0824383,0.981478,0.398559,0.689921,0.366512,0.166828,0.665101,0.0933585,0.493284,0.0513965,0.445864,0.288127,0.253683,0.582223,0.273129,0.819525,0.977758,0.588664,0.337097,0.159413,0.265465,0.613116,0.831245,0.419255,0.0521157,0.199082,0.534917,0.787277,0.420848,0.211073,0.231328,0.31946,0.189341,0.297666,0.439946,0.289227,0.722839,0.727163,0.550387,0.278155,0.079306,0.971589,0.751533,0.620971,0.103389,0.866214,0.202572,0.153715,0.209916,0.443108,0.0310919,0.357007,0.894979,0.648204,0.205629,0.917673,0.398266,0.537792,0.41934,0.701741,0.935427,0.19094,0.557886,0.111122,0.0323809,0.397579,0.251965,0.952167,0.540633,0.685073,0.506499,0.579403,0.168902,0.881691,0.0529003,0.43665,0.35245,0.304944,0.990907,0.141513,0.0458734,0.0469968,0.605458,0.552777,0.4986,0.506658,0.509234,0.300093,0.909907,0.47926,0.145131,0.239285,0.506671,0.808676,0.565412,0.888169,0.119246,0.533596,0.201726,0.440759,0.828684,0.652013,0.616547,0.651848,0.314914,0.531516,0.529853,0.651891,0.431697,0.447052,0.201771,0.475821,0.0951251,0.733397,0.868744,0.845132,0.987122,0.179492,0.276565,0.484233,0.824406,0.594319,0.0836335,0.0853588,0.784919,0.76339,0.739299,0.586993,0.102147,0.581423,0.902505,0.916738,0.417151,0.488823,0.301867,0.107781,0.958364,0.148177,0.324661,0.049418,0.849026,0.970853,0.0771616,0.394335,0.886814,0.415729,0.801716,0.949785,0.302451,0.0526478,0.487483,0.122196,0.731576,0.128812,0.84194,0.752979,0.0113791,0.972026,0.07091,0.642171,0.518805,0.166081,0.429917,0.194206,0.590066,0.898185,0.614495,0.218535,0.572107,0.260646,0.719553,0.621179,0.413798,0.252005,0.702936,0.128685,0.62126,0.508877,0.966988,0.318112,0.85521,0.693491,0.692064,0.837563,0.22632,0.00800264,0.982733,0.108236,0.521209,0.298948,0.79233,0.239685,0.646261,0.292524,0.105227,0.0652544,0.368899,0.464232,0.946738,0.249025,0.215081,0.882671,0.770348,0.107492,0.370075,0.659567,0.442561,0.123342,0.715806,0.110317,0.0287278,0.706435,0.733546,0.87518,0.509155,0.0451181,0.531501,0.681236,0.893813,0.509942,0.800022,0.201093,0.5395,0.886473,0.471885,0.179009,0.582254,0.479242,0.673505,0.925012,0.942046,0.847491,0.365201,0.541211,0.901638,0.312011,0.688942,0.314271,0.125822,0.296321,0.297141,0.305055,0.255321,0.367237,0.537421,0.486959,0.678511,0.563629,0.824243,0.246939,0.233836,0.933718,0.52062,0.242417,0.877361,0.248161,0.888369,0.310483,0.0941866,0.473528,0.521359,0.798582,0.507239,0.0221592,0.225985,0.0725044,0.994148,0.636529,0.54433,0.709988,0.0749499,0.135759,0.148016,0.690847,0.304045,0.0530128,0.145016,0.603699,0.432332,0.774058,0.975371,|0.225587,0.106864,0.525495,0.261413,0.739207,0.246944,0.646499,0.733505,0.909151,0.229031,0.87559,0.016173,0.468386,0.777824,0.244688,0.965771,0.39716,0.478865,0.372217,0.99722,0.0864996,0.596291,0.739238,0.442363,0.610025,0.0610439,0.747884,0.94912,0.172028,0.697396,0.770528,0.773766,0.461283,0.441533,0.841597,0.948227,0.314179,0.0480515,0.923054,0.462801,0.224276,0.0556676,0.414259,0.261196,0.0287215,0.501766,0.0572687,0.962449,0.437213,0.986261,0.0846466,0.0335196,0.836776,0.805929,0.775669,0.53066,0.352249,0.0463508,0.87368,0.434673,0.075491,0.144561,0.53593,0.985681,0.650585,0.452329,0.97106,0.545849,0.274502,0.374953,0.92334,0.614659,0.0698007,0.329935,0.186547,0.570324,0.0279975,0.563766,0.179144,0.91565,0.897286,0.415307,0.201485,0.583614,0.369489,0.682151,0.83799,0.0964572,0.825838,0.05575,0.051575,0.916301,0.455915,0.32806,0.0878972,0.85015,0.510514,0.568579,0.956235,0.13857,0.0797065,0.522366,0.218238,0.686774,0.787371,0.703659,0.108505,0.0360551,0.503559,0.293098,0.400113,0.554862,0.959166,0.868212,0.00992376,0.342479,0.673851,0.615498,0.54284,0.645629,0.309734,0.838463,0.395244,0.528553,0.26923,0.928276,0.297546,0.670579,0.568894,0.430103,0.378207,0.826866,0.877745,0.833712,0.960529,0.598228,0.860147,0.160036,0.624099,0.350696,0.59042,0.397819,0.644276,0.280864,0.0177646,0.463002,0.538927,0.981934,0.832606,0.590336,0.831703,0.90155,0.725898,0.5135,0.554697,0.341707,0.261259,0.847403,0.372047,0.982237,0.513501,0.586067,0.601613,0.280174,0.0436042,0.219297,0.443575,0.5532,0.0579427,0.0274214,0.289075,0.205801,0.117152,0.191655,0.00240189,0.767358,0.837335,0.383253,0.687139,0.91991,0.946141,0.109283,0.376653,0.0989983,0.0833225,0.57573,0.279949,0.0691954,0.905011,0.706163,0.994273,0.572351,0.380399,0.365498,0.0301911,0.325799,0.431388,0.471467,0.940415,0.998585,0.0622137,0.00225198,0.190089,0.971292,0.764814,0.782393,0.405278,0.258654,0.46606,0.623622,0.0864088,0.0762874,0.0346166,0.0490301,0.805693,0.645492,0.94517,0.935602,0.264756,0.163502,0.0886248,0.831065,0.29845,0.603732,0.891815,0.941182,0.665988,0.263244,0.681132,0.250268,0.807468,0.625751,0.467464,0.6646,0.0525795,0.506165,0.269011,0.267532,0.821148,0.160582,0.456895,0.52716,0.410326,0.288587,0.812359,0.104928,0.882635,0.39902,0.896989,0.143169,0.204617,0.513049,0.71086,0.986401,0.561163,0.0511868,0.565837,0.35508,0.142614,0.857622,0.235281,0.803239,0.437519,0.92115,0.758243,0.643763,0.0806384,0.591588,0.822836,0.291848,0.17854,0.481413,0.144607,0.754582,0.143823,0.598769,0.524084,0.341264,0.882383,0.616613,0.406996,0.955085,0.504987,0.337595,0.6896,0.176009,0.725683,0.192031,0.220735,0.453848,0.364109,0.841099,0.689057,0.0610948,0.0279233,0.0444824,0.306101,0.852052,0.173535,0.239225,0.322121,0.653892,0.921466,0.7771,0.85249,0.0471931,0.481505,0.163728,0.0733522,0.635564,0.574978,0.416658,0.563631,0.0505394,0.150359,0.641883,0.013324,0.719853,0.74481,0.999361,0.696152,0.0641196,0.726554,0.177231,0.280259,0.0599807,0.192973,0.363061,0.00738466,0.66507,0.498909,0.0262563,0.736108,0.411283,0.455821,0.84289,0.865573,0.320339,0.737305,0.686225,0.188242,0.736603,0.443833,0.254839,0.180847,0.532282,0.400365,0.575489,0.299158,0.126534,0.275063,0.743451,0.242289,0.06093,0.96905,0.546077,0.364957,0.296437,0.882957,0.429451,0.721407,0.293427,0.754354,0.411545,0.0895617,0.185863,0.943043,0.383212,0.428686,0.482793,0.68533,0.433027,0.731258,0.48674,0.425258,0.884445,0.104026,0.598127,0.729508,0.665582,0.144568,0.344584,0.460845,0.420293,0.188496,0.139925,0.234968,0.853216,0.998139,0.119522,0.0699298,0.772681,0.876563,0.655213,0.163716,0.163468,0.731717,0.686855,0.272891,0.141143,0.651551,0.145921,0.282948,0.348302,0.926303,0.620944,0.350829,0.664399,0.605129,0.0647155,0.695702,0.747225,0.367587,0.76142,0.901694,0.893946,0.384097,0.383519,0.0464453,0.230784,0.154879,0.530756,0.942631,0.24434,0.0815381,0.868622,0.394146,0.454069,0.272476,0.938722,0.383006,0.740809,0.580067,0.619139,0.673489,0.331966,0.220689,0.743066,0.264646,0.0372621,0.0821002,0.313575,0.535335,0.348598,0.340755,0.844616,0.794294,0.377023,0.332476,0.207789,0.422221,0.101368,0.337867,0.0346502,0.314957,0.717711,0.583826,0.207178,0.129131,0.855712,0.729471,0.852555,0.826333,0.623262,0.483035,0.0762545,0.105165,0.492987,0.0663729,0.693878,0.549794,0.00281328,0.0176239,0.844635,0.424286,0.402034,0.804266,0.659355,0.422208,0.646133,0.0256312,0.203115,0.784669,0.482238,0.0540006,0.210241,0.900836,0.784732,0.0114501,0.912598,0.327798,0.505271,0.546508,0.713438,0.697486,0.647008,0.655068,0.947425,0.767098,0.913547,0.416372,0.935809,0.933251,0.834687,0.176426,0.812411,0.0705394,0.206592,0.254951,0.0207724,0.544976,0.83932,0.421001,0.702464,0.423635,0.829609,0.395344,0.0789001,0.462599,0.837099,0.448096,0.456117,0.323525,0.596345,0.939572,0.0670999,0.724073,0.876661,0.756166,0.355611,0.382845,0.282178,0.709734,0.981032,0.438884,0.264878,0.132282,0.0456042,0.770895,0.53447,0.578854,0.030387,0.145294,0.185719,0.930318,0.631092,0.638875,0.554452,0.686632,0.163971,0.941109,0.542262,0.983833,0.185839,0.13304,0.0273758,0.019591,0.294577,0.670253,0.702655,0.981241,0.460885,0.0153111,0.970298,0.149036,0.200685,0.521939,0.994465,0.71429,0.183918,0.753827,0.649407,0.377538,0.658202,0.871103,0.683759,0.0890655,0.00391561,0.673819,0.0340073,0.755813,0.415178,0.592712,0.172168,0.362132,0.156849,0.775041,0.249814,0.278729,0.916088,0.329879,0.264855,0.212509,0.972683,0.352573,0.635514,0.925631,0.920943,0.494331,0.624172,0.551859,0.604209,0.443872,0.399271,0.403967,0.512912,0.634955,0.142708,0.377522,0.0263343,0.892103,0.509668,0.43385,0.790972,0.980399,0.781864,0.238229,0.0927461,0.657423,0.630577,0.500296,0.234642,0.541179,0.0825597,0.500147,0.835361,0.427688,0.220227,0.0682608,0.714645,0.621429,0.490651,0.47211,0.253953,0.28274,0.141449,0.804268,0.38959,0.91124,0.444474,0.771077,0.607224,0.765754,0.634911,0.506095,0.803259,0.528531,0.34779,0.17276,0.056223,0.0877844,0.569987,0.458134,0.753622,0.220227,0.440433,0.395613,0.143161,0.795369,0.304356,0.743372,0.923209,0.891997,0.451038,0.62142,0.151936,0.755961,0.380416,0.923511,0.756752,0.67781,0.853741,0.578545,0.201328,0.6639,0.631628,0.412104,0.850798,0.567201,0.704225,0.256719,0.563318,0.694626,0.0943931,0.0819831,0.494458,0.0511584,0.383335,0.264237,0.403283,0.571472,0.48698,0.272202,0.774486,0.290989,0.670911,0.165196,0.185496,0.952848,0.169869,0.493616,0.745983,0.668925,0.999658,0.0163184,0.24287,0.12746,0.264325,0.415343,0.963348,0.0111111,0.986452,0.541758,0.105975,0.409962,0.330017,0.714899,0.746127,0.292508,0.334574,0.667737,0.269299,0.390196,0.366131,0.217293,0.677477,0.484369,0.865764,0.345952,0.460751,0.17487,0.94253,0.026452,0.824441,0.714637,0.379272,0.453314,0.710736,0.997247,0.871353,0.239054,0.953703,0.886894,0.694288,0.507838,0.407747,0.828401,0.0137852,0.368077,0.344598,0.72695,0.512026,0.846336,0.480917,0.336567,0.554415,0.276677,0.666179,0.909133,0.511196,0.510735,0.460002,0.109444,0.430195,0.412688,0.732939,0.804463,0.601945,0.73431,0.835239,0.389214,0.0303886,0.0945415,0.0985479,0.143694,0.995213,0.485615,0.278436,0.699318,0.0644009,0.86679,0.281731,0.153742,0.65176,0.0113658,0.990699,0.160927,0.187688,0.219854,0.844661,0.294831,0.162149,0.35328,0.61649,0.396583,0.891014,0.503282,0.333539,0.349833,0.513732,0.392561,0.181754,0.143662,0.762315,0.850862,0.550738,0.803298,0.624834,0.573535,0.426214,0.468251,0.436399,0.0793139,0.962214,0.984192,0.69844,0.0627548,0.610923,0.408726,0.910964,0.86052,0.517055,0.677096,0.548363,0.0256002,0.50493,0.537702,0.178665,0.555106,0.573138,0.6424,0.727827,0.105337,0.853954,0.866682,0.32529,0.397207,0.983891,0.986555,0.599106,0.213715,0.141309,0.839701,0.329987,0.725165,0.605048,0.946305,0.379213,0.501515,0.935863,0.0043503,0.503108,0.474229,0.987083,0.31948,0.582765,0.866261,0.313578,0.697374,0.967724,0.78501,0.434833,0.516176,0.20223,0.195684,0.345572,0.631845,0.977774,0.806234,0.853438,0.0435044,0.698991,0.230219,0.747501,0.424166,0.30812,0.189876,0.514703,0.282748,0.0001055,0.697451,0.128796,0.142366,0.605922,0.128939,0.222084,0.0493766,0.308828,0.538549,0.269235,0.989281,0.067454,0.733947,0.0484744,0.168031,0.453314,0.447607,0.721469,0.299225,0.88541,0.17432,0.213853,0.0757508,0.356679,0.403441,0.688355,0.776258,0.195042,0.835208,0.757944,0.137306,0.273297,0.298142,0.489225,0.0433225,0.336955,0.00349867,0.335736,0.269635,0.154532,0.459761,0.465354,0.518429,0.854612,0.435261,0.863674,0.675953,0.812832,0.486546,0.55914,0.993196,0.745726,0.675736,0.618169,0.574269,0.801047,0.399288,0.0667323,0.0741587,0.014972,0.530851,0.947503,0.0689942,0.438465,0.0827171,0.398819,0.617014,0.021722,0.241526,0.00753826,0.62851,0.469076,0.324647,0.304867,0.382618,0.130975,0.581007,0.895945,0.338066,0.567307,0.229213,0.166651,0.592425,0.216154,0.936824,0.10743,0.102646,0.4619,0.695172,0.127549,0.956311,0.394144,0.764968,0.935807,0.441506,0.251647,0.0736378,0.455884,0.523239,0.0863616,0.358602,0.167241,0.920477,0.0941269,0.93189,0.00825536,0.741315,0.670031,0.0248533,0.912787,0.647014,0.21326,0.240555,0.718051,0.0521063,0.772147,0.620195,0.960775,0.843359,0.38754,|0.539373,0.906445,0.474299,0.640264,0.09539,0.601263,0.517371,0.357911,0.642177,0.445093,0.0821187,0.201309,0.875387,0.247578,0.580382,0.0164472,0.552181,0.109794,0.164875,0.307527,0.499792,0.310274,0.607344,0.497953,0.438727,0.708694,0.313635,0.414403,0.575815,0.414912,0.0376335,0.757175,0.82285,0.665421,0.50559,0.133953,0.709381,0.48608,0.526624,0.225954,0.228017,0.390941,0.768621,0.900931,0.823348,0.743679,0.85043,0.514889,0.705152,0.782487,0.932899,0.129989,0.12076,0.24081,0.930118,0.452543,0.178816,0.814458,0.595478,0.00480145,0.708683,0.20545,0.777347,0.360819,0.468219,0.917841,0.293475,0.711654,0.166997,0.0452446,0.37797,0.286766,0.459192,0.0743043,0.153861,0.691745,0.620809,0.0493306,0.163733,0.0436811,0.630628,0.164425,0.0710344,0.507826,0.564768,0.375735,0.32592,0.855004,0.30663,0.0130265,0.116417,0.200194,0.528033,0.669793,0.813909,0.757136,0.4542,0.0341568,0.13648,0.644623,0.108662,0.837485,0.649186,0.353077,0.879646,0.04859,0.638928,0.307027,0.308024,0.161073,0.556395,0.801453,0.817802,0.533856,0.875775,0.102135,0.669476,0.754024,0.979168,0.123675,0.559441,0.522405,0.140236,0.768803,0.945416,0.0644103,0.286173,0.442643,0.473834,0.13155,0.977247,0.802613,0.740203,0.101379,0.249682,0.00973278,0.195819,0.689152,0.899478,0.107833,0.843217,0.360556,0.520176,0.966845,0.453529,0.808788,0.652734,0.147702,0.340151,0.228852,0.0707689,0.478221,0.576768,0.785097,0.934908,0.21738,0.0654609,0.77536,0.981859,0.00101858,0.269746,0.395496,0.36688,0.564668,0.742655,0.38076,0.380072,0.298568,0.381848,0.166163,0.770639,0.544696,0.901818,0.11534,0.055882,0.356419,0.415444,0.150812,0.820794,0.890724,0.304082,0.388202,0.648739,0.159585,0.855879,0.944909,0.193518,0.398099,0.278218,0.00175828,0.162017,0.312411,0.57118,0.188254,0.719983,0.304873,0.684528,0.587339,0.263245,0.0696937,0.315691,0.0300387,0.055626,0.742614,0.463447,0.6412,0.0165746,0.54882,0.889819,0.772262,0.329083,0.561384,0.810874,0.176236,0.406395,0.6791,0.525082,0.418374,0.193609,0.687405,0.889488,0.511003,0.057636,0.832643,0.42583,0.322707,0.643623,0.574961,0.652424,0.422603,0.139028,0.319941,0.272115,0.835152,0.491066,0.648328,0.483981,0.161163,0.158963,0.284431,0.340679,0.246143,0.587223,0.639615,0.770806,0.175436,0.718483,0.752043,0.735857,0.180535,0.12378,0.838203,0.818937,0.186221,0.58051,0.522894,0.584003,0.627812,0.126981,0.947326,0.858033,0.600653,0.249158,0.656595,0.0657461,0.704403,0.0529394,0.428201,0.247548,0.477147,0.0303998,0.415717,0.768905,0.263208,0.600336,0.461373,0.454226,0.77985,0.603513,0.628543,0.709266,0.653033,0.853907,0.451239,0.969634,0.548073,0.135564,0.00538242,0.00608397,0.147175,0.289874,0.0082286,0.571215,0.224544,0.198803,0.421115,0.675168,0.539585,0.977084,0.0779046,0.617752,0.236128,0.133642,0.186739,0.347841,0.753039,0.3567,0.507655,0.348,0.0672092,0.300807,0.951586,0.198501,0.442828,0.201259,0.252597,0.325768,0.13886,0.325561,0.990091,0.19839,0.907959,0.750091,0.405239,0.266491,0.397762,0.717126,0.197887,0.163108,0.544949,0.462109,0.98354,0.184778,0.731151,0.559911,0.719172,0.403229,0.118411,0.63302,0.55681,0.39328,0.318624,0.657521,0.743885,0.242086,0.895672,0.0319991,0.550791,0.947358,0.473651,0.188768,0.903881,0.838979,0.451233,0.66242,0.831985,0.124661,0.61514,0.631849,0.0425424,0.61316,0.688617,0.527231,0.348606,0.892625,0.657414,0.517809,0.655537,0.791051,0.253544,0.256005,0.226885,0.392706,0.0883247,0.0350876,0.033215,0.392899,0.662552,0.636666,0.0402877,0.226081,0.635608,0.256735,0.899246,0.677058,0.306423,0.554909,0.295893,0.426677,0.488014,0.0568309,0.197986,0.851098,0.569283,0.903826,0.660879,0.713528,0.245489,0.9505,0.707474,0.00924021,0.996841,0.718945,0.833759,0.522588,0.319752,0.771608,0.0192721,0.930151,0.26329,0.523864,0.0491068,0.844291,0.702512,0.693693,0.169875,0.36991,0.455088,0.716322,0.775898,0.109102,0.268565,0.32391,0.380298,0.405176,0.656241,0.29627,0.932676,0.652593,0.990285,0.976522,0.685625,0.249284,0.860075,0.583041,0.336765,0.322551,0.751337,0.510894,0.910452,0.0297361,0.905329,0.442857,0.201381,0.140215,0.454811,0.584352,0.537796,0.308227,0.381632,0.718219,0.172383,0.102756,0.127631,0.341935,0.0604819,0.418495,0.10964,0.3216,0.00763679,0.517991,0.747564,0.605772,0.433636,0.574714,0.157033,0.990601,0.615654,0.68288,0.484376,0.845481,0.879349,0.357835,0.283093,0.694344,0.811888,0.379519,0.203858,0.485919,0.633977,0.598338,0.562577,0.129413,0.281295,0.0416051,0.766569,0.915463,0.0908726,0.170152,0.878227,0.364367,0.46163,0.518563,0.755035,0.101074,0.325827,0.974961,0.530082,0.766754,0.729665,0.291822,0.146403,0.379443,0.253729,0.377971,0.298149,0.671215,0.70677,0.670255,0.595707,0.655261,0.559401,0.48252,0.657117,0.364801,0.252911,0.257185,0.895014,0.102456,0.363925,0.651922,0.0839635,0.581572,0.0562822,0.244928,0.288852,0.0886595,0.824367,0.786632,0.240267,0.13267,0.226104,0.699325,0.54575,0.28661,0.326713,0.38784,0.175979,0.97666,0.980885,0.186443,0.760246,0.160024,0.169209,0.178033,0.442804,0.0259279,0.651284,0.129713,0.423389,0.835515,0.549362,0.395334,0.970136,0.291908,0.429623,0.725774,0.656733,0.35507,0.236316,0.891141,0.896664,0.465719,0.282125,0.915661,0.748072,0.720325,0.851354,0.860822,0.466519,0.06993,0.429489,0.656362,0.388737,0.0518116,0.747216,0.0804522,0.403916,0.122319,0.837384,0.395108,0.159842,0.331514,0.255367,0.686897,0.719891,0.428497,0.403472,0.15957,0.187691,0.420436,0.405634,0.99037,0.48121,0.394285,0.34544,0.0132157,0.998482,0.542142,0.364977,0.465309,0.588835,0.228646,0.53628,0.623071,0.835076,0.00504118,0.71946,0.665197,0.0963441,0.0726405,0.954437,0.778288,0.864024,0.371453,0.428837,0.569272,0.864041,0.151359,0.880334,0.277582,0.458008,0.728354,0.521894,0.0922531,0.426144,0.0651159,0.161471,0.747866,0.0897986,0.757816,0.650888,0.652046,0.719889,0.887532,0.137056,0.0496916,0.591661,0.48823,0.446162,0.837658,0.969225,0.952334,0.825602,0.892164,0.0426686,0.772479,0.0324595,0.213504,0.527846,0.206139,0.862091,0.905922,0.798987,0.506574,0.94112,0.940577,0.886242,0.725851,0.699691,0.20445,0.369961,0.463428,0.985887,0.60503,0.881197,0.454123,0.676611,0.979947,0.8235,0.409012,0.376306,0.525063,0.944692,0.4082,0.761013,0.856678,0.26069,0.29125,0.111649,0.307503,0.841127,0.977934,0.318265,0.506523,0.535028,0.769701,0.642012,0.954661,0.586133,0.720605,0.62955,0.619552,0.954692,0.930098,0.122531,0.443468,0.928301,0.356909,0.332694,0.808906,0.881833,0.317527,0.00890589,0.639028,0.698293,0.147082,0.164989,0.483595,0.257441,0.480725,0.808999,0.872674,0.945994,0.867573,0.45913,0.535616,0.823799,0.399311,0.289659,0.042645,0.187458,0.608325,0.821892,0.0371398,0.731249,0.150283,0.883197,0.782647,0.291191,0.0928832,0.794984,0.728229,0.456042,0.610889,0.748265,0.000303328,0.840525,0.718688,0.395163,0.851395,0.744725,0.627351,0.403856,0.743776,0.31774,0.1035,0.871646,0.530649,0.604043,0.239585,0.942029,0.642669,0.995555,0.250882,0.0256884,0.923428,0.833592,0.137922,0.554224,0.375575,0.331235,0.113119,0.0126793,0.15984,0.2098,0.411557,0.613623,0.588453,0.645579,0.354294,0.118515,0.568404,0.199719,0.3326,0.668292,0.1954,0.249013,0.4375,0.783622,0.37977,0.307803,0.977387,0.168496,0.707016,0.128369,0.669803,0.569795,0.283639,0.0864307,0.757481,0.678211,0.819791,0.97861,0.324241,0.499272,0.255521,0.911028,0.904221,0.303216,0.390859,0.939314,0.0251103,0.771034,0.275289,0.67259,0.26559,0.77969,0.728856,0.725371,0.153396,0.213281,0.890551,0.895977,0.414965,0.544883,0.43184,0.676516,0.112721,0.10493,0.622701,0.130854,0.554499,0.597787,0.317931,0.273291,0.48524,0.878234,0.968036,0.696215,0.115431,0.189303,0.327644,0.532589,0.988375,0.347602,0.994722,0.462951,0.675381,0.323942,0.3212,0.638977,0.509303,0.300361,0.194768,0.186173,0.582507,0.893182,0.321672,0.864934,0.264164,0.361469,0.637349,0.266891,0.713882,0.914638,0.0628101,0.758052,0.590487,0.737128,0.597509,0.157077,0.853658,0.122843,0.120253,0.992915,0.345874,0.557713,0.330382,0.608083,0.163939,0.0551885,0.889998,0.213039,0.605736,0.799193,0.67332,0.858885,0.578686,0.487356,0.950431,0.0102682,0.372015,0.111388,0.291123,0.956422,0.428144,0.209032,0.961116,0.919858,0.688422,0.275275,0.892934,0.946724,0.535028,0.795454,0.154685,0.511529,0.648756,0.387344,0.756717,0.720392,0.936989,0.91846,0.964441,0.604426,0.293286,0.46172,0.106908,0.127204,0.51824,0.690105,0.446711,0.498273,0.712493,0.378542,0.634639,0.332061,0.282966,0.14147,0.534732,0.681478,0.755347,0.482917,0.212309,0.608327,0.576607,0.799071,0.813109,0.923808,0.223576,0.380669,0.113113,0.940312,0.375666,0.818178,0.509627,0.0655851,0.743761,0.502998,0.240253,0.914711,0.148066,0.764143,0.0319233,0.0110536,0.708013,0.281066,0.0437831,0.346446,0.0279631,0.569513,0.220667,0.248894,0.733284,0.000141263,0.976786,0.211946,0.897187,0.728111,0.927539,0.532395,0.282823,0.506935,0.27993,0.239497,0.748311,0.0155451,0.651048,0.810435,0.013553,0.753979,0.290917,0.297556,0.633619,0.81279,0.545556,0.0187355,0.0157178,0.532176,0.846507,0.812944,0.105028,0.83126,0.0880538,0.84348,0.0185295,0.268784,0.921206,0.199078,0.935235,0.276981,0.388863,0.0462054,0.560641,0.324947,0.441912,0.737101,0.366633,0.0395979,|0.158719,0.834449,0.268164,0.873319,0.2878,0.527355,0.468875,0.442625,0.116425,0.697399,0.0965133,0.924577,0.0826848,0.83823,0.637781,0.880978,0.82656,0.904346,0.130322,0.11186,0.418332,0.972732,0.0839396,0.832886,0.634316,0.413292,0.269432,0.402288,0.786741,0.336192,0.735165,0.870602,0.549019,0.521899,0.901494,0.505933,0.734295,0.923347,0.0432741,0.783986,0.153175,0.821849,0.654911,0.257248,0.893319,0.0787584,0.545873,0.361596,0.122875,0.243283,0.0920202,0.60791,0.0192616,0.74592,0.69267,0.801595,0.281162,0.637296,0.102352,0.914595,0.0198212,0.949445,0.307412,0.69689,0.102129,0.464308,0.54109,0.149195,0.208515,0.641524,0.623076,0.663389,0.85873,0.044271,0.254704,0.640342,0.0440211,0.333984,0.417096,0.27357,0.811867,0.0765964,0.352121,0.16803,0.178427,0.678207,0.489133,0.306415,0.956242,0.114046,0.356219,0.296181,0.108035,0.478061,0.493333,0.321124,0.910855,0.594984,0.81417,0.891686,0.327116,0.707287,0.0792292,0.926119,0.888539,0.260893,0.349252,0.995936,0.436412,0.0346924,0.129493,0.931044,0.72311,0.106452,0.463403,0.0785763,0.377584,0.148733,0.729804,0.557123,0.294065,0.21961,0.394347,0.246595,0.0901209,0.354305,0.972399,0.722282,0.597241,0.977389,0.372987,0.94462,0.468501,0.204377,0.0600981,0.738231,0.845043,0.0232512,0.483025,0.365211,0.0823849,0.0541925,0.830609,0.882815,0.229469,0.117464,0.518276,0.649083,0.619769,0.488957,0.157663,0.578214,0.456695,0.984463,0.0630718,0.205575,0.171249,0.471001,0.778815,0.0934743,0.984156,0.289828,0.462952,0.548656,0.537632,0.846067,0.36392,0.91986,0.938319,0.908159,0.572436,0.908356,0.0261148,0.771038,0.528161,0.089738,0.522701,0.493197,0.431105,0.00700396,0.70964,0.46948,0.354424,0.708499,0.281567,0.821635,0.561558,0.134461,0.76639,0.456625,0.251959,0.510226,0.471943,0.581763,0.0886195,0.436503,0.18109,0.0213182,0.107652,0.870354,0.997592,0.538438,0.0827674,0.882273,0.666377,0.908644,0.561316,0.682647,0.638543,0.987028,0.726835,0.318957,0.96031,0.595737,0.999163,0.348782,0.977992,0.846409,0.313057,0.253852,0.926571,0.520275,0.227935,0.662143,0.491049,0.238523,0.541633,0.312211,0.646484,0.104511,0.295412,0.534282,0.304913,0.302313,0.100581,0.905977,0.228899,0.512392,0.394674,0.00715935,0.839996,0.222598,0.361131,0.327491,0.703278,0.975754,0.270486,0.94426,0.243171,0.930379,0.0888203,0.108595,0.898224,0.468478,0.647066,0.896579,0.424329,0.161166,0.166084,0.617985,0.799907,0.733869,0.309737,0.918896,0.411196,0.32352,0.470063,0.724181,0.69889,0.962077,0.880344,0.941493,0.815874,0.704869,0.0797416,0.212136,0.614244,0.464366,0.511812,0.949606,0.800764,0.0502305,0.772902,0.624549,0.372033,0.599228,0.713028,0.18575,0.757498,0.0281234,0.0876532,0.0333915,0.106105,0.514312,0.8649,0.337354,0.200416,0.416495,0.770259,0.202141,0.221957,0.0978304,0.850562,0.261342,0.116692,0.207931,0.239683,0.491835,0.396342,0.85846,0.0891903,0.130322,0.602824,0.276674,0.820618,0.750417,0.130268,0.2082,0.302099,0.751526,0.135081,0.476071,0.105742,0.155269,0.785115,0.0654454,0.263031,0.477991,0.353481,0.14642,0.985739,0.998071,0.463654,0.317204,0.181981,0.536524,0.526759,0.343654,0.91846,0.795103,0.454795,0.579469,0.0606112,0.527437,0.848054,0.180554,0.740284,0.744246,0.141431,0.698441,0.373242,0.481354,0.46354,0.488368,0.983723,0.249428,0.444849,0.228848,0.734563,0.835893,0.565338,0.749814,0.432539,0.468388,0.413069,0.41053,0.11801,0.677974,0.247248,0.142249,0.747362,0.480406,0.854152,0.948073,0.978536,0.836359,0.868018,0.900051,0.0873455,0.803163,0.463108,0.540359,0.110169,0.0637425,0.724696,0.635992,0.285795,0.457792,0.847449,0.475775,0.964988,0.716813,0.571885,0.472325,0.26742,0.753654,0.914356,0.801268,0.957288,0.855819,0.283415,0.686146,0.0719392,0.869418,0.777354,0.508284,0.744755,0.646825,0.190038,0.862966,0.0760161,0.646677,0.783074,0.966651,0.10666,0.952489,0.662394,0.958886,0.820772,0.115764,0.34814,0.0373189,0.548568,0.22001,0.967893,0.0434165,0.284344,0.000483155,0.953057,0.734723,0.620586,0.386496,0.279009,0.120716,0.423872,0.559074,0.662639,0.700438,0.813734,0.928031,0.527625,0.280876,0.492041,0.789883,0.819681,0.807031,0.527078,0.837558,0.87539,0.968614,0.892114,0.5024,0.979158,0.805801,0.589218,0.723129,0.665222,0.892783,0.487066,0.815929,0.705624,0.00028336,0.833413,0.197232,0.392993,0.287893,0.994365,0.965889,0.987821,0.52674,0.846525,0.460879,0.845984,0.172374,0.455194,0.842826,0.568096,0.467416,0.81545,0.956975,0.0739146,0.927343,0.416577,0.906416,0.859344,0.215803,0.392214,0.342832,0.364792,0.708152,0.825027,0.952991,0.333055,0.337117,0.955942,0.996696,0.898989,0.548021,0.796426,0.898612,0.261677,0.570185,0.894461,0.354786,0.905881,0.838612,0.991175,0.120219,0.170139,0.40994,0.31926,0.991379,0.517098,0.0530491,0.578308,0.71326,0.90694,0.613814,0.674805,0.517066,0.255289,0.452318,0.599209,0.840509,0.773511,0.887646,0.198649,0.0442761,0.654781,0.112555,0.604264,0.447755,0.487728,0.623707,0.151111,0.690284,0.215764,0.144453,0.636996,0.655656,0.724103,0.585526,0.955522,0.0342501,0.021246,0.721949,0.170469,0.895494,0.330848,0.875653,0.673698,0.403522,0.104708,0.320043,0.12019,0.510451,0.562895,0.548609,0.907559,0.630206,0.217777,0.878812,0.282921,0.343573,0.609399,0.882667,0.391334,0.639567,0.710379,0.682632,0.835294,0.533232,0.378538,0.197673,0.896632,0.572092,0.798562,0.74059,0.95354,0.205661,0.957472,0.615808,0.62482,0.933672,0.0935583,0.169182,0.0872887,0.936009,0.212056,0.352793,0.595871,0.170122,0.0146781,0.552362,0.78603,0.968735,0.516785,0.0454676,0.426976,0.183197,0.197349,0.0978398,0.218781,0.621095,0.477972,0.0250083,0.39001,0.897349,0.173484,0.827753,0.64529,0.351007,0.608079,0.468787,0.591042,0.866193,0.458174,0.0786211,0.332795,0.967932,0.268763,0.490146,0.429901,0.901885,0.348388,0.263655,0.133783,0.133421,0.94556,0.315425,0.680505,0.336614,0.531076,0.759151,0.943495,0.138746,0.251413,0.219858,0.450153,0.835206,0.824317,0.752674,0.466054,0.0909337,0.337861,0.874411,0.294334,0.384217,0.964726,0.925465,0.191877,0.972483,0.168856,0.564387,0.717904,0.552255,0.964319,0.953878,0.555123,0.318751,0.149745,0.361788,0.152075,0.423317,0.530135,0.657593,0.611676,0.871299,0.637665,0.484383,0.398363,0.72885,0.0182084,0.336548,0.499691,0.385499,0.352762,0.937687,0.492846,0.562747,0.363498,0.424921,0.567337,0.559057,0.546368,0.992998,0.779589,0.00443673,0.515143,0.396892,0.0454026,0.429894,0.809934,0.943256,0.132424,0.162468,0.372096,0.0149271,0.277529,0.8212,0.536372,0.0349203,0.919353,0.900264,0.732262,0.799243,0.379494,0.635284,0.188487,0.459882,0.771686,0.0880023,0.981627,0.696161,0.296003,0.355687,0.0268971,0.515341,0.545095,0.581447,0.702539,0.88548,0.696033,0.0766127,0.772598,0.209869,0.263346,0.917858,0.459135,0.56997,0.934482,0.65571,0.363159,0.480767,0.674407,0.880572,0.816751,0.734916,0.381844,0.669995,0.877162,0.994788,0.920956,0.00935835,0.644768,0.142619,0.0499442,0.265062,0.481175,0.197162,0.798538,0.606025,0.964756,0.848325,0.213351,0.44235,0.595688,0.0613187,0.0415998,0.636541,0.47091,0.574142,0.0410526,0.781916,0.267293,0.202307,0.0172666,0.602007,0.953255,0.0377011,0.573632,0.722744,0.195443,0.959486,0.468686,0.155069,0.771756,0.151998,0.239767,0.356982,0.0901551,0.915338,0.425637,0.681199,0.973942,0.983258,0.30803,0.395037,0.240451,0.293495,0.37756,0.329872,0.901309,0.427473,0.211618,0.162468,0.139367,0.401352,0.138423,0.676354,0.860203,0.495688,0.371138,0.861122,0.176939,0.0453439,0.811658,0.974913,0.797958,0.935967,0.0382187,0.359438,0.736213,0.65968,0.574602,0.402656,0.34598,0.703677,0.0296558,0.26908,0.22965,0.179964,0.0571538,0.93392,0.350516,0.742492,0.86586,0.315228,0.745949,0.749234,0.110925,0.0832428,0.545425,0.489283,0.468553,0.412473,0.083974,0.783483,0.813095,0.74292,0.568598,0.159082,0.126173,0.929438,0.409699,0.083977,0.507402,0.627608,0.357128,0.279239,0.515578,0.348769,0.286802,0.0603486,0.977466,0.0608827,0.182766,0.997036,0.424925,0.413215,0.34161,0.839961,0.840535,0.364902,0.49821,0.00339442,0.784312,0.530537,0.769406,0.613921,0.508047,0.979148,0.852831,0.352233,0.0897907,0.880708,0.375015,0.111508,0.525706,0.060885,0.685725,0.241349,0.839377,0.472269,0.488088,0.93941,0.463132,0.964057,0.126108,0.483089,0.288534,0.336893,0.876868,0.045111,0.213801,0.00651067,0.161275,0.604496,0.307844,0.24549,0.587873,0.45031,0.550429,0.18457,0.611033,0.88968,0.478134,0.876377,0.892851,0.518041,0.747691,0.784277,0.493906,0.350998,0.48675,0.473461,0.53129,0.672399,0.26554,0.720766,0.329924,0.365455,0.338999,0.140515,0.734924,0.518846,0.492682,0.677824,0.422061,0.353895,0.441076,0.631002,0.546726,0.780333,0.887943,0.601012,0.719171,0.0899809,0.380838,0.363745,0.139121,0.302672,0.425824,0.387852,0.0580732,0.878284,0.268505,0.184842,0.15401,0.483334,0.460096,0.10354,0.818953,0.409882,0.423054,0.44793,0.965269,0.0792027,0.461465,0.656789,0.416948,0.685648,0.546752,0.174223,0.256455,0.370931,0.0326062,0.848681,0.234692,0.358895,0.485216,0.955373,0.687575,0.521346,0.381602,0.854924,0.971187,0.650856,0.145783,0.31693,0.622647,0.674173,0.658243,0.70714,0.565768,0.745251,0.537392,0.988475,0.097113,0.999247,0.360536,0.368104,0.295636,0.53542,0.845418,0.935605,0.884655,0.494149,0.277492,0.477761,|0.936749,0.104609,0.459987,0.841947,0.22296,0.548458,0.56132,0.627591,0.463584,0.373844,0.811848,0.123873,0.151575,0.95015,0.329619,0.214595,0.949187,0.97101,0.447727,0.427598,0.609209,0.640922,0.413392,0.547105,0.555978,0.721459,0.115079,0.444758,0.977142,0.529406,0.375743,0.22682,0.400295,0.975569,0.535257,0.545106,0.497555,0.815935,0.153659,0.36125,0.861175,0.437179,0.95246,0.32579,0.396717,0.870822,0.14005,0.614532,0.0052104,0.432317,0.256396,0.906789,0.698904,0.607659,0.0834347,0.543744,0.386511,0.587546,0.77081,0.523492,0.74105,0.899447,0.931388,0.247826,0.922149,0.0681406,0.310006,0.414913,0.870409,0.0947904,0.133899,0.28782,0.139025,0.517932,0.818083,0.672505,0.0322018,0.894321,0.421746,0.735346,0.501434,0.615741,0.827121,0.653931,0.864764,0.774717,0.104299,0.232842,0.0595985,0.160448,0.341754,0.0430394,0.0919904,0.159558,0.856515,0.55759,0.519856,0.461132,0.148856,0.387008,0.52465,0.224677,0.424944,0.539254,0.259373,0.380398,0.706884,0.457513,0.346695,0.968407,0.62232,0.25016,0.269148,0.113057,0.644392,0.245356,0.901846,0.633433,0.170112,0.619151,0.127748,0.491636,0.503409,0.516677,0.15701,0.565149,0.633614,0.537084,0.123968,0.308556,0.245876,0.969755,0.369544,0.0754023,0.53828,0.766348,0.688362,0.910678,0.644812,0.789556,0.194942,0.243278,0.659195,0.883141,0.0280167,0.483137,0.989768,0.101996,0.0891383,0.00768864,0.811327,0.945796,0.744824,0.193481,0.111001,0.900966,0.0723816,0.84373,0.0292221,0.265209,0.223327,0.485088,0.464139,0.794276,0.830073,0.221978,0.342642,0.575909,0.0246432,0.0539128,0.962216,0.951444,0.454759,0.278684,0.399853,0.438149,0.0907547,0.626223,0.526712,0.672949,0.469297,0.802668,0.62981,0.844031,0.530869,0.113486,0.214323,0.315652,0.91955,0.367707,0.146398,0.289529,0.363561,0.309596,0.545248,0.669267,0.410545,2.36034e-05,0.881311,0.0421003,0.600306,0.427142,0.632017,0.67405,0.846723,0.777901,0.11256,0.385671,0.585692,0.395347,0.599055,0.0485542,0.887272,0.16889,0.49212,0.244114,0.810039,0.483273,0.662052,0.998463,0.206389,0.416985,0.35316,0.727728,0.206221,0.548439,0.225057,0.0858169,0.690153,0.827644,0.230067,0.779587,0.466295,0.00696826,0.973756,0.740048,0.37259,0.455257,0.980557,0.573169,0.314896,0.02575,0.645979,0.32955,0.49982,0.195446,0.552424,0.317044,0.0141179,0.42077,0.775987,0.895649,0.977413,0.978051,0.439413,0.693,0.348858,0.0685228,0.0354987,0.888252,0.402136,0.815412,0.272945,0.145789,0.700973,0.749491,0.263543,0.973001,0.613021,0.747334,0.69528,0.721849,0.940707,0.950119,0.672546,0.564888,0.677505,0.611705,0.132723,0.961875,0.720615,0.840537,0.618045,0.58048,0.833855,0.0199109,0.221948,0.248145,0.834774,0.976581,0.132715,0.838549,0.511083,0.0458549,0.719684,0.508518,0.423053,0.441004,0.605616,0.809564,0.539182,0.0768782,0.55637,0.194225,0.0953338,0.397514,0.983645,0.206959,0.635422,0.564507,0.0677369,0.56687,0.760862,0.796114,0.750064,0.114276,0.147141,0.552053,0.416187,0.923492,0.368792,0.895692,0.61391,0.244419,0.0453562,0.274784,0.981786,0.41219,0.438681,0.413806,0.575855,0.315584,0.249353,0.41046,0.268132,0.0823123,0.257711,0.541646,0.915253,0.798737,0.881086,0.584003,0.391317,0.521418,0.284849,0.707655,0.694889,0.176071,0.726066,0.186768,0.761038,0.711169,0.200751,0.431302,0.799572,0.0306935,0.273153,0.438168,0.488689,0.577001,0.534744,0.211481,0.888941,0.461166,0.227035,0.618373,0.783558,0.458399,0.178767,0.312576,0.602231,0.588175,0.350792,0.320274,0.0608971,0.405085,0.597119,0.0606464,0.162308,0.400822,0.624746,0.265135,0.502478,0.240659,0.481068,0.961807,0.0673223,0.774917,0.115419,0.718997,0.730104,0.301868,0.94386,0.200656,0.180705,0.30193,0.451338,0.82373,0.470028,0.000447631,0.861597,0.943141,0.0464166,0.928745,0.0047459,0.586264,0.726566,0.490174,0.53145,0.704917,0.161029,0.676437,0.103257,0.302893,0.961193,0.0276874,0.969508,0.893823,0.0931189,0.732657,0.593675,0.765634,0.981448,0.119439,0.640943,0.317671,0.847064,0.121143,0.109736,0.739623,0.195444,0.657105,0.396118,0.911878,0.634677,0.0321296,0.397113,0.309667,0.214941,0.356668,0.100088,0.917417,0.741172,0.628405,0.589503,0.0980341,0.840962,0.947714,0.624001,0.164876,0.807553,0.69707,0.122022,0.689324,0.0323637,0.116084,0.594478,0.813625,0.991138,0.499552,0.157885,0.385847,0.409729,0.865515,0.701433,0.368995,0.138908,0.175327,0.827729,0.908136,0.82281,0.464103,0.0251577,0.846125,0.337721,0.993637,0.916572,0.90913,0.738156,0.0493821,0.941514,0.976241,0.665418,0.488664,0.470589,0.961626,0.493373,0.215104,0.825351,0.546434,0.715031,0.607829,0.564776,0.048646,0.248703,0.913566,0.474862,0.0530072,0.644324,0.998191,0.705655,0.798669,0.545399,0.878236,0.429934,0.416135,0.75277,0.868248,0.804237,0.945738,0.446148,0.578764,0.342675,0.174355,0.218306,0.671941,0.642775,0.0409361,0.250607,0.915556,0.674765,0.176308,0.319852,0.0226783,0.221694,0.766302,0.503723,0.381148,0.379922,0.504618,0.50925,0.182795,0.803352,0.71765,0.846218,0.97347,0.00516146,0.382429,0.377186,0.258423,0.552261,0.770846,0.324235,0.583199,0.711058,0.0173666,0.401279,0.218606,0.660252,0.439945,0.140457,0.117668,0.363321,0.299284,0.328174,0.322652,0.107273,0.0935035,0.79539,0.580883,0.565163,0.345791,0.955512,0.416602,0.0596065,0.663121,0.0696446,0.456058,0.689833,0.898346,0.109959,0.642501,0.104425,0.993323,0.9547,0.600187,0.208346,0.909868,0.311776,0.345104,0.880038,0.996033,0.382103,0.93964,0.177695,0.612822,0.801817,0.393524,0.430387,0.180545,0.148167,0.417994,0.426478,0.319235,0.20625,0.10862,0.414688,0.484143,0.890949,0.703918,0.32638,0.539556,0.912934,0.093318,0.940625,0.484728,0.113211,0.108971,0.753156,0.749582,0.032195,0.53775,0.396368,0.205771,0.421133,0.782342,0.0391829,0.934795,0.430589,0.1616,0.904938,0.16785,0.805317,0.70594,0.157634,0.581059,0.784295,0.0858484,0.123483,0.350318,0.081609,0.637495,0.332667,0.0140851,0.043466,0.52819,0.992626,0.660056,0.234007,0.897907,0.214455,0.946766,0.504866,0.398076,0.931127,0.165786,0.24389,0.843774,0.143615,0.604726,0.343025,0.945649,0.149555,0.0867081,0.848445,0.538569,0.125987,0.447362,0.57916,0.313096,0.0705126,0.838254,0.576674,0.462885,0.426851,0.566152,0.909245,0.640326,0.0127112,0.713612,0.741789,0.00968719,0.5268,0.1761,0.223876,0.78413,0.808235,0.120065,0.788371,0.882921,0.813535,0.0621873,0.723026,0.97522,0.0273979,0.366466,0.941712,0.627368,0.487585,0.598424,0.962612,0.24386,0.88452,0.959054,0.576677,0.534245,0.82701,0.641152,0.287305,0.313539,0.726436,0.879107,0.129546,0.369588,0.263355,0.450454,0.649078,0.973189,0.784831,0.668514,0.333104,0.548785,0.655678,0.564527,0.698753,0.691372,0.826019,0.202571,0.194363,0.411293,0.713512,0.258207,0.575328,0.57471,0.723394,0.588943,0.109014,0.731462,0.965469,0.00857306,0.269012,0.662305,0.453703,0.28634,0.893481,0.130572,0.0486957,0.0956072,0.52951,0.678868,0.728474,0.854995,0.749059,0.84613,0.335194,0.143419,0.503521,0.587584,0.561695,0.284201,0.957636,0.35173,0.735231,0.635018,0.919949,0.602952,0.0707381,0.985607,0.770972,0.0811533,0.0477239,0.468361,0.139957,0.072321,0.5862,0.499616,0.685084,0.839987,0.0672649,0.363798,0.9702,0.596249,0.987752,0.0920826,0.408568,0.993599,0.1902,0.740718,0.149611,0.543127,0.631789,0.390997,0.500861,0.101607,0.737953,0.366713,0.110917,0.470676,0.253969,0.924413,0.997974,0.0587576,0.15127,0.946332,0.110115,0.100911,0.37718,0.800334,0.785495,0.528376,0.17345,0.0589756,0.749755,0.995193,0.994541,0.697206,0.571011,0.708879,0.34864,0.526117,0.196506,0.426425,0.0621,0.520085,0.642249,0.141473,0.397862,0.216665,0.760606,0.0247326,0.497162,0.0336211,0.0997607,0.625286,0.0660345,0.240184,0.724268,0.370088,0.186823,0.283903,0.714721,0.414488,0.839498,0.986559,0.848591,0.966168,0.567452,0.517989,0.557991,0.944858,0.783868,0.294519,0.427218,0.936548,0.485498,0.485224,0.0846764,0.969431,0.241275,0.512187,0.168582,0.865148,0.509155,0.262788,0.6877,0.673507,0.99043,0.625279,0.419618,0.564014,0.88178,0.975866,0.384762,0.273019,0.769542,0.079707,0.750419,0.116861,0.577442,0.494541,0.0769327,0.671439,0.830979,0.792444,0.613124,0.363348,0.51021,0.651223,0.134439,0.747826,0.434722,0.225972,0.464353,0.241732,0.66621,0.31369,0.169561,0.964738,0.553277,0.112612,0.70736,0.465405,0.837789,0.801311,0.940249,0.0720754,0.871663,0.183434,0.506681,0.243939,0.0441001,0.439589,0.992503,0.879918,0.0269573,0.603221,0.460796,0.539436,0.260949,0.146967,0.15329,0.465302,0.927349,0.917028,0.473831,0.537638,0.157827,0.823984,0.861847,0.954906,0.238338,0.641147,0.0874436,0.480295,0.473552,0.871046,0.0373445,0.713754,0.0824077,0.0416303,0.28528,0.477356,0.0611999,0.207699,0.866941,0.678755,0.760856,0.807918,0.192422,0.333601,0.843488,0.344429,0.682222,0.374933,0.296678,0.0958583,0.0174655,0.225796,0.321349,0.606286,0.778602,0.871998,0.498495,0.55894,0.6132,0.0483284,0.771455,0.974445,0.691626,0.782084,0.798319,0.74735,0.192181,0.937642,0.1748,0.643865,0.396009,0.741644,0.972361,0.766933,0.0952811,0.982707,0.28958,0.414257,0.496145,0.119283,0.163372,0.419077,0.452928,0.81752,0.0315631,0.0875444,0.512095,0.861086,0.34221,0.403976,0.387563,0.788319,0.342008,0.0497968,0.60156,0.706465,0.433539,0.423897,0.0562677,0.130655,0.00157309,0.229596,0.59659,0.312669,|0.628698,0.677413,0.580483,0.702396,0.0076893,0.181345,0.122156,0.608034,0.705783,0.61069,0.350825,0.992909,0.943153,0.0488744,0.486583,0.536559,0.483551,0.702531,0.366602,0.0396771,0.868477,0.162129,0.853278,0.935202,0.250686,0.697191,0.436679,0.601495,0.214648,0.86963,0.621931,0.406276,0.321887,0.79369,0.0760046,0.0226631,0.0736242,0.227644,0.564163,0.253587,0.081325,0.806085,0.772428,0.582458,0.160601,0.190584,0.870105,0.752088,0.976939,0.810926,0.805994,0.824069,0.255821,0.713417,0.732994,0.709789,0.953628,0.269987,0.887074,0.95897,0.983502,0.448484,0.627785,0.414705,0.103602,0.477064,0.299971,0.272773,0.191386,0.671005,0.966623,0.974427,0.409697,0.42294,0.280887,0.141714,0.439543,0.0677831,0.15037,0.291259,0.729892,0.942129,0.913471,0.0974665,0.539863,0.626421,0.372894,0.58823,0.669063,0.191952,0.0658213,0.581333,0.52206,0.324328,0.106204,0.87778,0.94594,0.144071,0.0880319,0.361206,0.953286,0.718463,0.272105,0.535214,0.577611,0.0913056,0.320804,0.923645,0.869206,0.823117,0.259929,0.0536191,0.314186,0.860892,0.473868,0.272556,0.166191,0.486942,0.178554,0.760216,0.51535,0.667582,0.472184,0.527698,0.205149,0.548948,0.470723,0.917564,0.877826,0.863325,0.563539,0.398802,0.369351,0.126373,0.393643,0.27576,0.968641,0.320523,0.243856,0.336097,0.100022,0.00634891,0.372506,0.637139,0.25565,0.554168,0.580234,0.37373,0.24011,0.246381,0.58474,0.418367,0.014258,0.771351,0.622201,0.91197,0.216406,0.344452,0.0806869,0.774971,0.627439,0.572092,0.901822,0.716635,0.947959,0.705899,0.653444,0.587826,0.368041,0.104209,0.290433,0.975317,0.094835,0.169731,0.953311,0.365705,0.251359,0.496759,0.444989,0.890009,0.0253354,0.0972097,0.50936,0.503575,0.655176,0.656324,0.421709,0.0701255,0.295611,0.0723698,0.668066,0.0485641,0.350898,0.655797,0.0849497,0.92156,0.915131,0.135025,0.206528,0.493255,0.896104,0.65761,0.708351,0.180961,0.415545,0.293566,0.35799,0.829438,0.60097,0.967459,0.528593,0.144337,0.219923,0.277721,0.808808,0.0379419,0.493022,0.94645,0.158993,0.56168,0.991461,0.903529,0.957022,0.433964,0.377788,0.210523,0.64229,0.101321,0.44718,0.660544,0.0688558,0.480642,0.255123,0.818195,0.750415,0.717388,0.21788,0.216673,0.611326,0.050387,0.464532,0.685641,0.222819,0.749588,0.988284,0.546096,0.509734,0.112063,0.934418,0.372423,0.540016,0.920246,0.274116,0.514121,0.185906,0.980513,0.870599,0.435264,0.739177,0.0682647,0.55069,0.751213,0.519075,0.289922,0.563419,0.454747,0.223247,0.174742,0.752776,0.173549,0.0333625,0.443119,0.743649,0.086296,0.258815,0.0272279,0.526168,0.459417,0.00182867,0.826944,0.84018,0.172543,0.945113,0.0495199,0.133987,0.91792,0.0365613,0.652008,0.581602,0.330115,0.0461962,0.0510694,0.971775,0.841326,0.865088,0.0470477,0.434636,0.156552,0.841021,0.0678472,0.984792,0.153547,0.348963,0.382791,0.527972,0.200293,0.260846,0.0242708,0.491429,0.286862,0.752801,0.446909,0.204328,0.457574,0.0995579,0.652067,0.753555,0.606801,0.283828,0.811876,0.4482,0.404427,0.90568,0.948644,0.0688158,0.736636,0.256469,0.508627,0.29821,0.871353,0.589767,0.174404,0.234101,0.697222,0.323637,0.0614715,0.218342,0.409722,0.677283,0.810904,0.131638,0.492124,0.473105,0.0455595,0.00758797,0.745863,0.511621,0.776533,0.235697,0.223777,0.432428,0.0891165,0.203744,0.103004,0.249881,0.578105,0.144419,0.179742,0.332321,0.598107,0.599708,0.418723,0.913312,0.0605577,0.664346,0.277538,0.911997,0.22607,0.441914,0.110418,0.428866,0.897433,0.460272,0.991093,0.280074,0.374827,0.749712,0.110149,0.465716,0.541982,0.64792,0.68281,0.281366,0.712566,0.0994997,0.895229,0.294541,0.371054,0.0995226,0.899765,0.156774,0.212121,0.0987384,0.116623,0.670308,0.227419,0.109964,0.675439,0.62117,0.580127,0.760692,0.044511,0.889141,0.239232,0.136093,0.256061,0.527482,0.256738,0.728099,0.0502485,0.501671,0.975359,0.594939,0.845279,0.538897,0.537552,0.923896,0.188653,0.429369,0.562606,0.357516,0.319622,0.876197,0.290907,0.047957,0.546732,0.427813,0.907269,0.807989,0.629509,0.248569,0.770119,0.838565,0.213415,0.954408,0.555775,0.425712,0.996513,0.625892,0.419107,0.273839,0.553806,0.113957,0.0641189,0.260897,0.794931,0.310399,0.53455,0.0135373,0.592608,0.64497,0.526625,0.858915,0.882621,0.46968,0.311079,0.853623,0.537306,0.0279446,0.940729,0.801769,0.953118,0.630957,0.319749,0.719537,0.160366,0.967051,0.505457,0.305634,0.869208,0.459292,0.463773,0.572457,0.50455,0.26212,0.0137399,0.17435,0.518487,0.121063,0.951566,0.873611,0.0153753,0.540886,0.422029,0.036951,0.270158,0.14338,0.844475,0.195254,0.833272,0.371769,0.957657,0.857891,0.512813,0.734224,0.757417,0.255329,0.902419,0.440308,0.399052,0.959153,0.404374,0.4571,0.849276,0.193132,0.337313,0.132529,0.443399,0.538037,0.165111,0.0976024,0.638419,0.477227,0.84071,0.384369,0.117239,0.925536,0.751343,0.644945,0.896304,0.972903,0.724059,0.499429,0.447476,0.942767,0.958253,0.540673,0.661501,0.713107,0.762083,0.429484,0.491058,0.427461,0.274577,0.110263,0.885328,0.143832,0.0517719,0.75906,0.721862,0.180626,0.0102089,0.894703,0.252335,0.914051,0.85648,0.032244,0.792578,0.817376,0.889844,0.500206,0.863333,0.870976,0.789039,0.998307,0.51548,0.970837,0.245974,0.458941,0.692161,0.696647,0.971787,0.0737184,0.872103,0.32408,0.501821,0.278424,0.980487,0.787686,0.00919592,0.101954,0.464802,0.972136,0.474976,0.748359,0.661784,0.165713,0.51044,0.830303,0.550599,0.547242,0.340271,0.441783,0.396181,0.615371,0.369378,0.477468,0.427994,0.543459,0.153008,0.135352,0.265474,0.705573,0.0767036,0.325202,0.743888,0.37951,0.25927,0.866085,0.104823,0.609402,0.149692,0.982937,0.499436,0.510073,0.971042,0.444701,0.156965,0.499325,0.808275,0.471564,0.813269,0.250468,0.111088,0.596224,0.288427,0.674558,0.710046,0.0709211,0.235799,0.586418,0.581804,0.898571,0.858025,0.518781,0.413336,0.508638,0.987109,0.629996,0.556391,0.0519225,0.750812,0.717981,0.490693,0.770323,0.301096,0.917801,0.698315,0.0872744,0.908357,0.558587,0.938887,0.64803,0.423368,0.550331,0.458367,0.75461,0.433134,0.936778,0.349089,0.454199,0.0782068,0.625962,0.579309,0.0156193,0.432276,0.67148,0.0589846,0.503362,0.380004,0.0893304,0.141786,0.649609,0.0737677,0.188509,0.483197,0.338935,0.556461,0.308941,0.0640697,0.280438,0.321261,0.374985,0.0142269,0.752735,0.167745,0.343666,0.161364,0.16479,0.298154,0.687495,0.945462,0.719267,0.294576,0.0877728,0.811709,0.937099,0.449367,0.860473,0.422728,0.932961,0.124056,0.0446941,0.933386,0.63884,0.744009,0.0248132,0.641762,0.47134,0.874579,0.500189,0.486554,0.343017,0.24878,0.916036,0.398568,0.096361,0.262124,0.0213135,0.169267,0.955063,0.252657,0.856955,0.490407,0.163417,0.47508,0.912903,0.556236,0.817459,0.0234786,0.961537,0.961489,0.0759326,0.717882,0.1084,0.317987,0.426561,0.308558,0.88108,0.496295,0.386813,0.50827,0.893915,0.070891,0.455524,0.998739,0.405882,0.34724,0.71942,0.717856,0.0555229,0.923776,0.677875,0.539489,0.76405,0.261784,0.545755,0.768075,0.471179,0.729815,0.821676,0.0557972,0.902172,0.0908448,0.49505,0.147266,0.0764714,0.863322,0.656455,0.495621,0.517561,0.587768,0.795155,0.597169,0.230429,0.953137,0.520326,0.144848,0.409521,0.0180851,0.129675,0.714686,0.183899,0.259829,0.458233,0.176002,0.85101,0.609895,0.293844,0.189161,0.0687162,0.405098,0.213158,0.817788,0.846257,0.294452,0.597996,0.67715,0.640067,0.507136,0.587671,0.810304,0.642335,0.634695,0.0383877,0.0483051,0.0174881,0.20798,0.60231,0.170387,0.920117,0.633024,0.435621,0.619897,0.75235,0.288638,0.686477,0.802898,0.202344,0.438152,0.672512,0.59981,0.756188,0.927695,0.468591,0.350063,0.665813,0.626172,0.596684,0.474387,0.0843927,0.803463,0.596352,0.982804,0.988686,0.196319,0.422872,0.771295,0.354806,0.424726,0.586047,0.106078,0.62179,0.0936903,0.808923,0.00754797,0.805026,0.0882214,0.936324,0.912516,0.385589,0.193014,0.72682,0.814637,0.789503,0.42299,0.665038,0.798278,0.581281,0.416884,0.771667,0.103378,0.273476,0.514555,0.969073,0.45288,0.710272,0.324073,0.31749,0.595413,0.35291,0.477639,0.150681,0.645925,0.515076,0.0211356,0.20877,0.388763,0.947669,0.811036,0.268702,0.468224,0.613844,0.879449,0.17902,0.51374,0.683326,0.346385,0.0608419,0.393136,0.372067,0.803445,0.542198,0.25143,0.180743,0.0222295,0.213219,0.408864,0.0296344,0.223689,0.328554,0.0475956,0.917809,0.848544,0.843021,0.196911,0.917077,0.535364,0.25502,0.0899321,0.459473,0.755397,0.0264896,0.519545,0.222537,0.384556,0.323919,0.814674,0.534308,0.827157,0.955601,0.405885,0.432805,0.334144,0.436539,0.81199,0.155773,0.195035,0.834882,0.138914,0.506193,0.140202,0.487046,0.8669,0.99062,0.287885,0.457999,0.945713,0.614694,0.870963,0.586351,0.468038,0.865405,0.62772,0.166029,0.689284,0.373754,0.232739,0.125649,0.853477,0.687357,0.365633,0.545217,0.988901,0.00271124,0.700087,0.965011,0.540333,0.487092,0.564936,0.124395,0.270884,0.443789,0.978437,0.0967042,0.444152,0.0108703,0.937545,0.382682,0.738385,0.382574,0.0450963,0.0687698,0.0484381,0.679925,0.297358,0.945894,0.174932,0.10422,0.671517,0.782188,0.931383,0.228035,0.854244,0.524859,0.82522,0.247582,0.138874,0.203964,0.555588,0.0458426,0.763856,0.447014,0.351942,0.139857,0.801777,0.358705,0.624256,0.272596,0.157907,0.168325,0.24688,0.143006,0.344593,0.669971,0.314781,0.0545816,0.877924,0.903973,0.963384,|0.805121,0.122437,0.245868,0.181029,0.386201,0.609638,0.92531,0.173227,0.90739,0.371247,0.489855,0.691307,0.480855,0.435968,0.33076,0.897783,0.837155,0.312839,0.194977,0.760096,0.70024,0.849818,0.638729,0.162186,0.797134,0.878116,0.838226,0.0229777,0.530564,0.367866,0.591658,0.868907,0.649638,0.243888,0.226788,0.559849,0.492359,0.417705,0.238793,0.954906,0.448976,0.143674,0.842199,0.566089,0.0975425,0.829517,0.541309,0.234543,0.59855,0.517434,0.844245,0.355844,0.290702,0.627812,0.246514,0.742461,0.219156,0.755238,0.678648,0.802045,0.102072,0.914655,0.864537,0.202746,0.00926745,0.0485684,0.374821,0.272345,0.0151978,0.396576,0.404858,0.95505,0.588359,0.831749,0.391317,0.36367,0.538223,0.672906,0.0730584,0.00260502,0.910948,0.0345881,0.281336,0.224875,0.410291,0.159344,0.174085,0.417691,0.0593905,0.604553,0.666254,0.88919,0.945298,0.549849,0.815126,0.778912,0.442596,0.859149,0.735615,0.598608,0.665676,0.980159,0.528165,0.675257,0.686731,0.0504773,0.5488,0.86861,0.900246,0.604178,0.0217957,0.63745,0.742795,0.137486,0.906426,0.365488,0.45,0.20338,0.588557,0.594125,0.768861,0.455788,0.468118,0.277533,0.592672,0.0865225,0.102201,0.6697,0.673984,0.239189,0.442773,0.418229,0.723222,0.50944,0.549878,0.724377,0.195236,0.470059,0.00908947,0.000609934,0.4304,0.289404,0.373849,0.137292,0.316972,0.429421,0.970209,0.881491,0.50561,0.574361,0.212292,0.011184,0.553089,0.50813,0.656853,0.53653,0.974696,0.409823,0.942027,0.086607,0.657798,0.165847,0.407085,0.216971,0.410022,0.732296,0.888758,0.309643,0.808615,0.402079,0.0598565,0.286327,0.863894,0.899117,0.395325,0.240563,0.448895,0.427284,0.812776,0.202416,0.00369793,0.789029,0.778215,0.54407,0.498181,0.574345,0.241832,0.420291,0.315021,0.987291,0.141339,0.942912,0.367289,0.995658,0.0864362,0.928206,0.675819,0.278987,0.980953,0.874105,0.274548,0.321665,0.418854,0.517468,0.909161,0.542071,0.266239,0.998627,0.250037,0.813461,0.824628,0.165964,0.658161,0.843928,0.431205,0.543853,0.406006,0.494602,0.990778,0.904374,0.669788,0.871553,0.0733703,0.891359,0.82072,0.739765,0.710059,0.333746,0.278162,0.487338,0.669731,0.29926,0.281133,0.631375,0.964564,0.396779,0.96387,0.733233,0.883467,0.972777,0.895552,0.894187,0.0246171,0.0408108,0.359825,0.47359,0.403442,0.192381,0.739369,0.367453,0.145265,0.662668,0.619337,0.494445,0.215761,0.506848,0.304076,0.948869,0.735431,0.242287,0.876433,0.0025984,0.810161,0.605691,0.00890517,0.769682,0.364406,0.819104,0.387511,0.290896,0.925323,0.834086,0.178167,0.990411,0.401294,0.0849609,0.238219,0.474459,0.146535,0.246412,0.154535,0.0458663,0.418978,0.945802,0.0945964,0.789904,0.754961,0.966013,0.777314,0.780408,0.0972623,0.06661,0.773278,0.410756,0.62689,0.875328,0.564306,0.767484,0.922565,0.862187,0.950404,0.592654,0.260967,0.71606,0.14131,0.947254,0.646746,0.532096,0.887958,0.913305,0.613926,0.949987,0.437852,0.419375,0.0182212,0.0234157,0.138843,0.30976,0.211136,0.713642,0.203263,0.992177,0.327939,0.39186,0.379451,0.365574,0.720026,0.325307,0.646512,0.60906,0.0484561,0.499468,0.423578,0.594868,0.148699,0.474153,0.520593,0.729172,0.0848117,0.490555,0.664934,0.57528,0.936622,0.0597588,0.619626,0.629602,0.72688,0.876524,0.262601,0.557262,0.183076,0.254998,0.45571,0.7363,0.639965,0.498267,0.350321,0.801886,0.769568,0.000755489,0.290391,0.556495,0.632761,0.889995,0.4534,0.226068,0.448227,0.878326,0.878032,0.446335,0.902837,0.74896,0.901266,0.600906,0.693035,0.427639,0.592907,0.956773,0.913122,0.251197,0.860109,0.155859,0.204642,0.0470076,0.558129,0.174261,0.77009,0.682801,0.271976,0.334643,0.79363,0.436858,0.970073,0.286598,0.0652336,0.930423,0.749467,0.938228,0.897132,0.939445,0.184709,0.237236,0.0503613,0.267782,0.460385,0.140513,0.351102,0.691694,0.902409,0.29265,0.645296,0.00240242,0.622076,0.808585,0.253447,0.195845,0.860181,0.740145,0.437837,0.583445,0.271501,0.75274,0.58748,0.0244688,0.288514,0.290642,0.234217,0.657186,0.227021,0.253027,0.753568,0.49237,0.511924,0.128407,0.308733,0.431058,0.965298,0.171626,0.711174,0.302809,0.168112,0.542741,0.858999,0.92027,0.614825,0.689454,0.0987756,0.174133,0.0554679,0.222746,0.242372,0.732877,0.862637,0.953938,0.833185,0.852603,0.789012,0.369156,0.14645,0.810706,0.523683,0.442187,0.656979,0.878947,0.776269,0.131574,0.135361,0.613271,0.774651,0.237041,0.473041,0.913866,0.827552,0.65311,0.187602,0.574011,0.473333,0.561675,0.0964483,0.372551,0.960603,0.0846251,0.0996315,0.0714111,0.358548,0.659139,0.56433,0.583107,0.0697504,0.797485,0.107142,0.273198,0.826808,0.688454,0.942306,0.225815,0.234917,0.746929,0.966594,0.262149,0.29443,0.704379,0.203049,0.40176,0.949225,0.46288,0.48796,0.704363,0.292979,0.00862825,0.946104,0.956418,0.708466,0.0951763,0.834655,0.76043,0.943953,0.602831,0.802736,0.666999,0.756809,0.62495,0.00784808,0.335105,0.0140363,0.62124,0.0759823,0.568105,0.274486,0.427127,0.00258011,0.666646,0.513701,0.00991619,0.771178,0.502167,0.145601,0.364833,0.951099,0.103521,0.092458,0.792073,0.525054,0.5474,0.0454845,0.600739,0.473449,0.65971,0.58171,0.40261,0.129682,0.888191,0.151927,0.230791,0.714244,0.34891,0.102096,0.505647,0.9409,0.32418,0.0733163,0.509903,0.019428,0.480823,0.925236,0.332969,0.478619,0.552666,0.919707,0.076656,0.767211,0.944713,0.642004,0.400689,0.0594714,0.410984,0.772695,0.634838,0.582547,0.538847,0.885055,0.476224,0.542616,0.219139,0.972725,0.42527,0.969559,0.278821,0.901424,0.156857,0.0519472,0.767967,0.0703629,0.97113,0.714776,0.873874,0.32753,0.00514734,0.454916,0.0536984,0.737644,0.687405,0.2802,0.524177,0.931893,0.978477,0.098404,0.742399,0.27762,0.861741,0.99872,0.373101,0.850794,0.0247489,0.884039,0.718686,0.983715,0.0941641,0.481434,0.289816,0.562295,0.496896,0.101152,0.513213,0.154622,0.0910441,0.798297,0.356295,0.562753,0.983314,0.395567,0.245339,0.188881,0.838179,0.87748,0.227532,0.337044,0.298807,0.880283,0.968809,0.54097,0.808586,0.7017,0.811692,0.767742,0.628324,0.859792,0.0244259,0.760697,0.656163,0.296967,0.905312,0.572303,0.00451553,0.223262,0.398301,0.775722,0.853248,0.0734933,0.361814,0.651176,0.580303,0.913398,0.184563,0.0942038,0.146596,0.715734,0.139354,0.68837,0.701834,0.276239,0.617065,0.21152,0.638788,0.165072,0.103757,0.11234,0.382204,0.0194637,0.370601,0.42163,0.556869,0.282977,0.134549,0.267812,0.260367,0.799528,0.824895,0.918653,0.971097,0.64719,0.347317,0.289786,0.423426,0.416448,0.76056,0.23397,0.584398,0.92041,0.720045,0.566266,0.738467,0.619861,0.975968,0.934748,0.535008,0.940422,0.0675415,0.73656,0.265538,0.928825,0.688845,0.61729,0.436264,0.151607,0.17284,0.866153,0.174985,0.192003,0.0664148,0.461557,0.920649,0.0556397,0.697834,0.668379,0.590856,0.465923,0.698896,0.833961,0.397142,0.507652,0.444492,0.282484,0.851103,0.73479,0.267812,0.524492,0.70573,0.903543,0.0311732,0.0604385,0.0949087,0.212523,0.985704,0.824182,0.166088,0.952763,0.578032,0.79238,0.498362,0.979195,0.422113,0.437723,0.271128,0.763808,0.441731,0.0586972,0.49982,0.908425,0.567,0.333425,0.303507,0.589023,0.132302,0.747062,0.603581,0.303017,0.377993,0.193247,0.875582,0.23259,0.477932,0.46718,0.231383,0.0257047,0.384865,0.308692,0.857631,0.870436,0.912184,0.87881,0.0200561,0.481238,0.231275,0.449926,0.331936,0.710089,0.00533491,0.763596,0.0581129,0.584215,0.791575,0.689019,0.302361,0.457499,0.635387,0.959513,0.395742,0.399291,0.397375,0.70342,0.0478911,0.554709,0.421329,0.494866,0.710872,0.0724154,0.436235,0.338779,0.611859,0.569501,0.987083,0.172963,0.386988,0.0927635,0.231922,0.640223,0.274484,0.577265,0.630866,0.00398397,0.185758,0.13808,0.857406,0.0106967,0.991917,0.165828,0.00145543,0.278654,0.836112,0.224306,0.275147,0.414191,0.827347,0.243793,0.0502144,0.59857,0.434958,0.760405,0.605385,0.660935,0.00702953,0.150097,0.459331,0.606525,0.271699,0.86711,0.789643,0.389651,0.466257,0.143551,0.67848,0.955605,0.245365,0.750546,0.626974,0.874319,0.232316,0.724331,0.78858,0.539128,0.424591,0.480239,0.128892,0.516493,0.737061,0.15642,0.57814,0.485158,0.406728,0.526028,0.0530462,0.15267,0.602084,0.813776,0.970584,0.972803,0.149927,0.872184,0.384568,0.173916,0.660248,0.110359,0.828258,0.0850589,0.34414,0.779024,0.534013,0.567099,0.579528,0.72995,0.084967,0.217913,0.0845467,0.527843,0.493761,0.448132,0.948569,0.451142,0.355253,0.209292,0.666321,0.032381,0.563322,0.166184,0.778209,0.470232,0.215373,0.355066,0.019309,0.401691,0.366599,0.824275,0.965455,0.0888322,0.452576,0.870889,0.534167,0.0701132,0.427014,0.0732593,0.744512,0.895242,0.608355,0.651282,0.869002,0.188478,0.319468,0.100978,0.884957,0.884997,0.805655,0.17849,0.231767,0.71235,0.32583,0.693944,0.807635,0.411756,0.917219,0.0742637,0.600615,0.650581,0.030547,0.0804634,0.243595,0.654266,0.567222,0.290291,0.931189,0.367224,0.836363,0.376587,0.889753,0.190282,0.464281,0.267067,0.989193,0.640118,0.298832,0.759548,0.701224,0.0838171,0.0199606,0.511615,0.0164969,0.235988,0.380488,0.566773,0.338784,0.251236,0.860445,0.506937,0.283082,0.636681,0.745488,0.886294,0.0518408,0.115713,0.582764,0.853232,0.11461,0.713131,0.924798,0.168286,0.182304,0.430217,0.0269317,0.175895,0.857537,0.712063,0.188637,0.139386,0.305963,0.103491,0.141836,0.845787,0.867131,0.121079,0.879166,|0.980088,0.522513,0.740308,0.946858,0.434055,0.888155,0.67027,0.483048,0.581751,0.797521,0.402859,0.0269603,0.286405,0.568335,0.293734,0.310728,0.255608,0.257757,0.242293,0.432446,0.697443,0.231572,0.824298,0.74725,0.845841,0.75787,0.931372,0.865783,0.217772,0.24184,0.864358,0.500386,0.114741,0.91746,0.445922,0.0737104,0.618236,0.309465,0.447934,0.591779,0.453151,0.474567,0.485618,0.601203,0.60979,0.442466,0.325929,0.316754,0.578585,0.587601,0.214285,0.674537,0.739709,0.770537,0.462904,0.0258835,0.230132,0.712549,0.746375,0.537613,0.83097,0.220195,0.655733,0.695194,0.679719,0.572628,0.50389,0.953014,0.309157,0.830152,0.114699,0.780943,0.695243,0.484167,0.276299,0.977874,0.0422369,0.0946918,0.604149,0.509243,0.324505,0.420849,0.457697,0.710961,0.609322,0.366379,0.726044,0.897495,0.376742,0.35892,0.200286,0.330088,0.897951,0.121222,0.791732,0.705414,0.291106,0.281543,0.2056,0.177577,0.110036,0.694822,0.0185841,0.935057,0.218204,0.425683,0.604386,0.877972,0.412208,0.344038,0.863155,0.871786,0.8102,0.0820203,0.381974,0.778306,0.394382,0.424605,0.583716,0.142938,0.543091,0.53196,0.388377,0.474299,0.770623,0.194163,0.95562,0.467403,0.992245,0.65489,0.578535,0.762827,0.707589,0.192323,0.713593,0.48443,0.810053,0.805339,0.0295124,0.723496,0.555559,0.286157,0.548493,0.340019,0.0128867,0.31821,0.283074,0.277566,0.184429,0.868914,0.205336,0.407976,0.807377,0.979797,0.573982,0.695109,0.133194,0.0496746,0.0675046,0.441795,0.127295,0.570107,0.947993,0.88343,0.784209,0.77371,0.362233,0.282492,0.659342,0.110363,0.725062,0.0292562,0.338664,0.385922,0.0311403,0.932875,0.0456983,0.71244,0.807575,0.160659,0.629587,0.764715,0.168143,0.0717272,0.826213,0.824658,0.157561,0.998595,0.907151,0.132695,0.255639,0.598248,0.495812,0.0477228,0.0656117,0.80283,0.775174,0.446424,0.430106,0.401517,0.633733,0.916171,0.307279,0.518351,0.528982,0.092591,0.782596,0.429084,0.150419,0.32102,0.362363,0.777376,0.238232,0.619749,0.845443,0.274864,0.631148,0.128503,0.243829,0.660415,0.334499,0.351832,0.98744,0.909279,0.196194,0.65009,0.140082,0.694936,0.0110942,0.766547,0.354621,0.108147,0.880337,0.63626,0.0836866,0.191493,0.0217949,0.704508,0.293676,0.204391,0.173299,0.268933,0.28709,0.187077,0.229663,0.0553049,0.851901,0.363519,0.392669,0.117751,0.116118,0.563566,0.736905,0.96464,0.988871,0.961525,0.50027,0.948275,0.951533,0.653684,0.569471,0.957845,0.274875,0.488149,0.318534,0.124783,0.857275,0.207107,0.518682,0.603473,0.610894,0.419055,0.348616,0.100556,0.437717,0.393879,0.989885,0.878953,0.367584,0.0618443,0.840308,0.947553,0.783011,0.809806,0.978537,0.297153,0.32177,0.0936596,0.865097,0.0377803,0.621764,0.826,0.686492,0.391037,0.789593,0.572165,0.431791,0.570969,0.851104,0.905789,0.439218,0.0165567,0.591998,0.539249,0.0100847,0.425911,0.915032,0.649463,0.496554,0.646225,0.734051,0.508314,0.697154,0.987804,0.753857,0.913726,0.347829,0.393583,0.950355,0.753065,0.767756,0.869531,0.587655,0.974953,0.880588,0.322387,0.861825,0.503961,0.0743707,0.221689,0.167379,0.0561576,0.697605,0.247196,0.426814,0.602189,0.483081,0.866573,0.859557,0.6629,0.109058,0.886833,0.587284,0.45232,0.952685,0.95494,0.987523,0.747697,0.209417,0.712173,0.38191,0.226815,0.512146,0.757295,0.258859,0.859157,0.0112747,0.601764,0.622352,0.165377,0.0669995,0.704336,0.488325,0.458985,0.288984,0.240965,0.685693,0.124729,0.461893,0.399653,0.991234,0.372607,0.233307,0.931101,0.820091,0.496592,0.561615,0.763311,0.106564,0.510111,0.537703,0.0775369,0.672238,0.949147,0.59044,0.928301,0.407269,0.623606,0.710082,0.69853,0.353706,0.284242,0.841083,0.68371,0.083461,0.725222,0.898974,0.651032,0.510344,0.030846,0.403974,0.0172824,0.436602,0.655811,0.987619,0.279034,0.3141,0.7328,0.179484,0.87918,0.952711,0.557902,0.957317,0.860731,0.418073,0.596501,0.909826,0.762551,0.452957,0.568566,0.525544,0.643331,0.252316,0.459965,0.534204,0.561812,0.731477,0.291229,0.198778,0.287021,0.618275,0.419392,0.903685,0.925664,0.809849,0.472951,0.405822,0.385417,0.351521,0.995786,0.780251,0.980248,0.785575,0.804187,0.234476,0.983555,0.42965,0.409965,0.674673,0.0729773,0.298279,0.204159,0.211995,0.0169839,0.83509,0.0152243,0.619735,0.875445,0.237641,0.242244,0.466367,0.77583,0.0415676,0.474526,0.523204,0.197313,0.790306,0.347769,0.514063,0.198421,0.667559,0.433692,0.0908945,0.058142,0.997962,0.890483,0.998334,0.727084,0.0818959,0.405851,0.760176,0.629787,0.31931,0.289425,0.958801,0.0934545,0.0138537,0.778135,0.480772,0.807927,0.659239,0.233312,0.345913,0.906549,0.451575,0.909369,0.362429,0.451573,0.00276017,0.905217,0.726516,0.364671,0.172429,0.648849,0.317142,0.256583,0.436333,0.25309,0.565156,0.927211,0.884787,0.806722,0.184826,0.0608712,0.713044,0.86635,0.182768,0.340349,0.627924,0.48944,0.175095,0.55284,0.259642,0.288651,0.478612,0.238701,0.150326,0.977613,0.00586665,0.782132,0.99594,0.468618,0.86712,0.973754,0.421103,0.023647,0.771439,0.920684,0.952879,0.437027,0.794408,0.765787,0.263499,0.393938,0.762244,0.613742,0.827068,0.533613,0.665915,0.708608,0.466146,0.817264,0.379269,0.548165,0.0805235,0.310853,0.0531985,0.726563,0.891563,0.644273,0.865006,0.205953,0.705004,0.796346,0.719888,0.0829881,0.141358,0.98652,0.566316,0.880848,0.658407,0.754187,0.693353,0.944619,0.773893,0.339983,0.671298,0.32914,0.864996,0.385637,0.896592,0.0725036,0.608147,0.958384,0.594746,0.732266,0.844822,0.207256,0.559051,0.93318,0.411775,0.575627,0.0830289,0.948373,0.734696,0.756212,0.737605,0.539147,0.316592,0.321832,0.440377,0.187179,0.417541,0.167744,0.159187,0.155477,0.172406,0.113269,0.00382853,0.0177283,0.118559,0.302865,0.688591,0.121743,0.936802,0.0247054,0.812806,0.623502,0.527509,0.24412,0.735788,0.0327067,0.378595,0.336458,0.578223,0.427996,0.75807,0.558881,0.321527,0.0756351,0.605114,0.161535,0.553383,0.748581,0.304367,0.482374,0.923145,0.323621,0.713711,0.0867236,0.44996,0.723892,0.701225,0.841185,0.435567,0.403245,0.962339,0.943136,0.724804,0.533734,0.800194,0.237491,0.367575,0.112099,0.351075,0.901119,0.216876,0.134815,0.472493,0.0244227,0.44992,0.908759,0.481924,0.924957,0.520576,0.0323948,0.489265,0.800015,0.99555,0.518106,0.168684,0.29511,0.805127,0.250679,0.988345,0.268318,0.158335,0.45164,0.72542,0.0874077,0.881189,0.143063,0.252614,0.220642,0.863141,0.705911,0.758727,0.709527,0.125827,0.349338,0.47861,0.267318,0.730222,0.36256,0.736069,0.528001,0.217514,0.656878,0.950488,0.28955,0.490679,0.375502,0.124508,0.418663,0.507479,0.302005,0.696973,0.476448,0.0663863,0.864422,0.587711,0.786479,0.117475,0.925183,0.842551,0.174907,0.807986,0.535236,0.98608,0.783918,0.597696,0.589186,0.67785,0.573938,0.0867636,0.110786,0.00366127,0.514567,0.929618,0.72788,0.625973,0.695839,0.260392,0.239062,0.43281,0.776538,0.867746,0.92009,0.559955,0.452295,0.963042,0.295977,0.172239,0.430493,0.792289,0.899222,0.594773,0.119945,0.719634,0.645548,0.745178,0.765007,0.35115,0.86845,0.314313,0.580452,0.0526798,0.768556,0.71594,0.350892,0.174869,0.907049,0.858963,0.397545,0.986324,0.133888,0.257236,0.113347,0.637966,0.220634,0.760901,0.0305504,0.791569,0.930448,0.0958484,0.824142,0.657574,0.0727935,0.0272202,0.703112,0.787915,0.227704,0.534798,0.946497,0.319032,0.0479859,0.0234085,0.567158,0.379913,0.358173,0.725993,0.839096,0.719229,0.834526,0.312853,0.76474,0.98959,0.321839,0.690403,0.0576137,0.91447,0.258529,0.826127,0.746741,0.410369,0.430178,0.562669,0.914305,0.207913,0.41297,0.79366,0.679845,0.0896325,0.740531,0.568634,0.207788,0.805816,0.137283,0.680208,0.334893,0.0695308,0.279371,0.823251,0.604572,0.329051,0.699106,0.713278,0.413513,0.770046,0.00170588,0.347723,0.289128,0.0929766,0.223544,0.0488879,0.751464,0.405863,0.195919,0.301629,0.329942,0.830141,0.624295,0.937527,0.341708,0.0262515,0.800379,0.415838,0.390382,0.864166,0.700533,0.632263,0.775882,0.533895,0.34954,0.651535,0.101399,0.0322087,0.618958,0.366144,0.213357,0.200221,0.803919,0.614399,0.359028,0.852056,0.160734,0.99768,0.0363309,0.705871,0.427556,0.399521,0.969941,0.436286,0.215505,0.818668,0.170883,0.095685,0.503173,0.479786,0.03071,0.573214,0.323288,0.655584,0.360067,0.275958,0.257334,0.374783,0.0255747,0.923819,0.0391427,0.852452,0.791274,0.342012,0.464787,0.553757,0.534548,0.291853,0.24441,0.375715,0.871935,0.522277,0.257926,0.935642,0.0144844,0.485967,0.587214,0.836344,0.283579,0.733502,0.419847,0.000109673,0.786548,0.953422,0.85758,0.132391,0.20122,0.625333,0.956292,0.00238842,0.435746,0.949744,0.135737,0.993921,0.710629,0.162625,0.955156,0.844841,0.276195,0.134777,0.245246,0.901623,0.248161,0.905989,0.577411,0.135286,0.0517194,0.223592,0.504513,0.300845,0.270954,0.1469,0.357937,0.869569,0.194639,0.996732,0.0441262,0.321755,0.159871,0.500372,0.757767,0.189677,0.882616,0.577413,0.507553,0.396062,0.767036,0.292714,0.649631,0.905807,0.788335,0.223333,0.641124,0.880627,0.47842,0.188722,0.62437,0.899423,0.0448544,0.136194,0.152252,0.0740117,0.648859,0.0568625,0.864023,0.0154696,0.401764,0.0546184,0.886854,0.649707,0.607658,0.216176,0.966232,0.00466186,0.691787,0.318694,0.488193,0.0151007,0.0846747,0.550189,0.911965,0.336803,0.324738,0.0726154,0.167105,0.723912,0.0182773,0.6193,0.38337,0.542949,0.884368,|0.445847,0.12548,0.669567,0.791557,0.325557,0.645203,0.559715,0.322853,0.662408,0.690126,0.577477,0.713484,0.613828,0.125751,0.480028,0.460203,0.569206,0.105666,0.375641,0.347113,0.8621,0.302633,0.0433615,0.763121,0.232794,0.577969,0.66541,0.119228,0.48853,0.772435,0.0538904,0.986299,0.676396,0.395244,0.0270674,0.946856,0.32769,0.187668,0.42133,0.463804,0.600177,0.548471,0.85134,0.581494,0.622033,0.366305,0.0394722,0.327057,0.465327,0.865701,0.352484,0.260971,0.140253,0.835089,0.428826,0.796213,0.0979791,0.447527,0.398257,0.604321,0.461586,0.829807,0.403249,0.480907,0.956175,0.231921,0.534979,0.405905,0.845429,0.255728,0.36419,0.0703883,0.516308,0.231764,0.60884,0.056563,0.423154,0.460815,0.0688896,0.137745,0.576121,0.728663,0.96322,0.0239201,0.998175,0.352648,0.628184,0.591837,0.612725,0.687001,0.334056,0.873543,0.681877,0.261278,0.490599,0.561617,0.375449,0.199539,0.0215522,0.335789,0.460363,0.663757,0.427638,0.264564,0.980286,0.751617,0.883017,0.401339,0.728203,0.821062,0.0054028,0.859324,0.857197,0.566321,0.902799,0.808861,0.0588752,0.185166,0.984,0.260535,0.647231,0.957633,0.149712,0.773902,0.107074,0.42654,0.329706,0.47401,0.0336351,0.102216,0.766362,0.0968179,0.320509,0.396241,0.912107,0.549676,0.837977,0.453502,0.0185258,0.432746,0.845551,0.815293,0.219128,0.157396,0.34325,0.394756,0.721288,0.364932,0.886451,0.162249,0.770981,0.871979,0.970712,0.914551,0.954399,0.845304,0.941541,0.39432,0.0751569,0.11156,0.917279,0.137735,0.822206,0.363856,0.459222,0.956734,0.0893816,0.425084,0.109825,0.945516,0.495435,0.0552885,0.776738,0.220282,0.575737,0.58016,0.624322,0.209381,0.454416,0.504239,0.569279,0.553874,0.887707,0.346269,0.418742,0.119281,0.394434,0.540701,0.675635,0.937104,0.242769,0.671636,0.782205,0.949723,0.928252,0.56109,0.291956,0.544482,0.487933,0.706753,0.704078,0.707847,0.332695,0.238662,0.550859,0.0155861,0.130116,0.460573,0.380744,0.311937,0.516955,0.665199,0.354863,0.437687,0.592819,0.506493,0.0677684,0.571105,0.369916,0.957758,0.664788,0.610274,0.304544,0.758314,0.738366,0.192315,0.804072,0.263157,0.338452,0.98416,0.640047,0.193854,0.411614,0.955081,0.794502,0.686256,0.413497,0.00851345,0.397812,0.32121,0.873932,0.495038,0.893667,0.0565057,0.0945573,0.310827,0.862429,0.394382,0.683036,0.668947,0.346395,0.0548031,0.784554,0.815928,0.534208,0.659662,0.339766,0.814147,0.609376,0.601073,0.156208,0.0249852,0.0447797,0.776976,0.529982,0.927849,0.946624,0.601563,0.621925,0.830471,0.963548,0.055515,0.0298414,0.962515,0.764766,0.144585,0.579254,0.238244,0.28508,0.909274,0.934676,0.340331,0.771401,0.861148,0.607853,0.713831,0.456925,0.84118,0.45192,0.692118,0.210204,0.240679,0.511884,0.674714,0.362686,0.317307,0.788266,0.168325,0.136688,0.691891,0.0294106,0.196486,0.757883,0.245293,0.306457,0.655462,0.167261,0.168035,0.28207,0.0614986,0.0905092,0.938433,0.358041,0.319376,0.256893,0.110831,0.691658,0.705432,0.00199807,0.762598,0.152425,0.207719,0.547344,0.931921,0.35031,0.424935,0.684019,0.732508,0.245512,0.848974,0.779526,0.797436,0.954618,0.0473453,0.292035,0.411009,0.390925,0.704073,0.402699,0.28865,0.982696,0.33501,0.341835,0.532692,0.92118,0.422136,0.314932,0.826545,0.182972,0.435209,0.341625,0.427258,0.0855615,0.406926,0.624519,0.370738,0.703983,0.876003,0.289702,0.8496,0.416719,0.334755,0.782218,0.594171,0.932593,0.345346,0.90454,0.153486,0.619797,0.147244,0.186462,0.296045,0.0533732,0.225408,0.648234,0.4123,0.210216,0.470348,0.874137,0.0396661,0.262752,0.132936,0.786727,0.0476939,0.614726,0.276659,0.744497,0.385453,0.5128,0.0344322,0.0839319,0.556639,0.785203,0.0566838,0.26128,0.401762,0.64584,0.236678,0.598908,0.523696,0.650707,0.704327,0.311524,0.533347,0.297757,0.199021,0.0811571,0.683789,0.771204,0.039605,0.532966,0.786274,0.855935,0.0921286,0.825922,0.899021,0.402439,0.655683,0.906988,0.0408933,0.195824,0.552225,0.991862,0.865309,0.257391,0.199841,0.720122,0.126235,0.754617,0.130134,0.905266,0.5409,0.921332,0.679354,0.12008,0.450627,0.811939,0.851087,0.828123,0.790039,0.544155,0.98987,0.445342,0.111364,0.908479,0.275185,0.168556,0.300976,0.47184,0.642737,0.636497,0.0289056,0.615997,0.941237,0.558736,0.638783,0.0674517,0.163002,0.568841,0.501794,0.25269,0.385453,0.784567,0.540121,0.230435,0.174212,0.670274,0.521978,0.578748,0.12508,0.683946,0.308724,0.427165,0.394821,0.763976,0.623039,0.670794,0.137428,0.294651,0.384483,0.753043,0.475945,0.0817169,0.51736,0.426575,0.941012,0.977984,0.75141,0.652495,0.887075,0.968868,0.292708,0.0758311,0.882311,0.00562418,0.81891,0.82627,0.630291,0.696608,0.984154,0.284646,0.936066,0.902066,0.691384,0.263794,0.981852,0.265755,0.861827,0.640768,0.320882,0.966899,0.813595,0.516266,0.701955,0.877755,0.867717,0.359525,0.878722,0.824929,0.567155,0.856224,0.0708761,0.435023,0.162006,0.361016,0.483359,0.586634,0.154025,0.931595,0.172782,0.574389,0.978186,0.464515,0.997398,0.742165,0.328587,0.729891,0.772917,0.412023,0.235781,0.863522,0.490365,0.347187,0.982977,0.109952,0.811445,0.0928326,0.376741,0.613677,0.507278,0.164445,0.777239,0.268564,0.416539,0.271346,0.409859,0.518979,0.747546,0.233412,0.528765,0.295509,0.824335,0.207241,0.372961,0.953024,0.252521,0.284746,0.0932798,0.250362,0.477521,0.598417,0.659128,0.102825,0.188202,0.987126,0.172001,0.23096,0.673687,0.917329,0.609925,0.319045,0.455323,0.892353,0.932661,0.037675,0.480052,0.351833,0.553691,0.938441,0.811967,0.680876,0.292926,0.406001,0.0929368,0.0201495,0.553222,0.723143,0.145164,0.404535,0.0974401,0.238462,0.276448,0.568959,0.724648,0.0480279,0.939451,0.838947,0.689793,0.76761,0.925035,0.215927,0.813062,0.327759,0.201407,0.892554,0.407374,0.715935,0.835836,0.301196,0.0545073,0.224706,0.507516,0.810796,0.379031,0.403506,0.639331,0.251082,0.060013,0.130431,0.127822,0.714989,0.335831,0.612348,0.384784,0.168199,0.706848,0.725108,0.7177,0.912261,0.814328,0.603037,0.621944,0.240104,0.124338,0.161681,0.00205237,0.658143,0.491707,0.991109,0.101853,0.47293,0.268927,0.544839,0.558133,0.242572,0.349297,0.927488,0.991994,0.295204,0.152471,0.276741,0.583317,0.427832,0.293926,0.171556,0.600815,0.0546064,0.607788,0.0920889,0.574672,0.715908,0.80436,0.819726,0.255741,0.586838,0.70359,0.70421,0.63866,0.74725,0.25832,0.738255,0.666069,0.651402,0.280425,0.222206,0.231268,0.38305,0.0730309,0.17484,0.5608,0.372229,0.662985,0.584186,0.864201,0.853944,0.786148,0.0125548,0.123345,0.13437,0.904486,0.934732,0.384309,0.169863,0.255574,0.514167,0.307875,0.276217,0.522588,0.690901,0.615496,0.240289,0.30733,0.570268,0.27535,0.256166,0.31408,0.268801,0.393972,0.256834,0.590966,0.908727,0.280186,0.38928,0.879704,0.833559,0.881285,0.995243,0.3924,0.743998,0.640573,0.768908,0.710879,0.894416,0.920155,0.359027,0.120677,0.273125,0.524015,0.886078,0.195438,0.697824,0.634336,0.983652,0.780856,0.472806,0.0230832,0.343975,0.118728,0.686897,0.277112,0.129196,0.995358,0.894331,0.302067,0.0255787,0.755388,0.549593,0.365606,0.938999,0.778312,0.208294,0.534371,0.415647,0.412149,0.635141,0.680403,0.662605,0.75834,0.514175,0.483136,0.762401,0.801201,0.40058,0.289531,0.716877,0.904125,0.684649,0.178288,0.0872405,0.645053,0.291234,0.434476,0.797233,0.612294,0.912186,0.524509,0.716352,0.654694,0.0175615,0.259103,0.421804,0.992436,0.333779,0.268632,0.56559,0.104566,0.962318,0.698546,0.014035,0.738795,0.505327,0.879787,0.399765,0.912274,0.413455,0.792418,0.780551,0.124026,0.437586,0.504493,0.239508,0.0468063,0.551408,0.251921,0.46101,0.340034,0.877129,0.883301,0.270193,0.713867,0.806557,0.61783,0.532767,0.537129,0.533719,0.219833,0.443187,0.348778,0.238173,0.597968,0.288309,0.405748,0.097733,0.164131,0.66655,0.408472,0.328181,0.902356,0.141143,0.768814,0.674372,0.440014,0.785744,0.384416,0.1372,0.886322,0.493249,0.169488,0.328552,0.167883,0.69307,0.759307,0.834634,0.189383,0.540922,0.215661,0.975771,0.527514,0.107613,0.622214,0.404952,0.536495,0.688285,0.556114,0.514616,0.435096,0.558745,0.471633,0.699206,0.645975,0.441917,0.96718,0.386667,0.738475,0.888016,0.776558,0.0174412,0.861342,0.0494447,0.0902482,0.316238,0.495492,0.0825205,0.0900057,0.102916,0.846899,0.73825,0.636593,0.745034,0.401297,0.23443,0.335207,0.0271605,0.406814,0.716776,0.353846,0.491914,0.259401,0.966282,0.939912,0.702766,0.900925,0.960186,0.0166886,0.565665,0.639005,0.642382,0.607987,0.996095,0.561819,0.72717,0.929852,0.816353,0.543865,0.417836,0.481587,0.102874,0.98436,0.240167,0.934854,0.88816,0.92545,0.791961,0.133342,0.762111,0.0907999,0.534364,0.200876,0.899627,0.517699,0.871593,0.124197,0.00574285,0.932749,0.429109,0.222021,0.0946002,0.382251,0.607215,0.389996,0.290972,0.178886,0.539403,0.850598,0.296918,0.446353,0.164708,0.948391,0.0312622,0.322746,0.00483418,0.710152,0.740783,0.606581,0.482278,0.0695336,0.610235,0.377227,0.0994034,0.0451881,0.254073,0.452696,0.199608,0.205138,0.063913,0.913765,0.413877,0.377757,0.220722,0.160238,0.622667,0.356577,0.955879,0.611131,0.244298,0.914284,0.571346,0.720125,0.117068,0.277932,0.735299,0.31676,0.453672,0.680617,0.576502,0.300802,0.913102,0.795071,0.263408,0.433937,0.402655,0.918139,0.905164,0.629636,0.375871,0.0330788,0.598919,0.0345402,0.0982507,0.255111,|0.286616,0.823085,0.869625,0.00627512,0.0910052,0.131407,0.342378,0.514287,0.124527,0.718645,0.470678,0.648375,0.0371822,0.478358,0.0129001,0.2701,0.39832,0.0477628,0.744792,0.686833,0.519515,0.786922,0.729357,0.951789,0.36988,0.375516,0.379772,0.753928,0.171431,0.690829,0.323241,0.937227,0.952557,0.448142,0.787701,0.0137362,0.432988,0.971961,0.0674906,0.0341213,0.863713,0.099838,0.325671,0.454681,0.905136,0.025465,0.048238,0.199982,0.944237,0.967906,0.31937,0.326962,0.458104,0.496019,0.778309,0.846946,0.616615,0.0214884,0.740467,0.404018,0.422814,0.116514,0.113996,0.911931,0.178125,0.0409185,0.46363,0.765241,0.258242,0.042491,0.718178,0.732325,0.561675,0.0657328,0.245785,0.583783,0.883453,0.735589,0.66756,0.341226,0.352108,0.487259,0.259181,0.515775,0.139974,0.71644,0.76769,0.524601,0.99825,0.978723,0.755655,0.0206802,0.228555,0.984557,0.942131,0.245244,0.0670706,0.739382,0.25717,0.498067,0.573454,0.0553432,0.122788,0.737295,0.728028,0.0966344,0.174358,0.192707,0.458212,0.551918,0.324617,0.208551,0.677608,0.0525509,0.462454,0.101139,0.0506452,0.270908,0.165073,0.198324,0.473535,0.493269,0.995847,0.439727,0.176048,0.331215,0.649655,0.370194,0.0177352,0.0357718,0.651776,0.877661,0.624229,0.280956,0.614208,0.0826976,0.512576,0.789142,0.82478,0.921572,0.581605,0.133819,0.864369,0.212403,0.840332,0.752745,0.672041,0.511793,0.806635,0.701918,0.513717,0.324945,0.670064,0.731105,0.761854,0.34957,0.0851262,0.878749,0.937038,0.824917,0.560934,0.529953,0.180429,0.593688,0.899107,0.79682,0.996025,0.969931,0.951433,0.784563,0.705196,0.224608,0.797472,0.388905,0.522374,0.877739,0.387391,0.962708,0.0832771,0.840576,0.917754,0.0358309,0.149949,0.297733,0.262072,0.22571,0.0625359,0.618132,0.817781,0.788129,0.151107,0.0975928,0.939843,0.0153529,0.209964,0.67349,0.486368,0.985225,0.0546564,0.676568,0.34674,0.465906,0.423801,0.788451,0.440982,0.699447,0.681731,0.59645,0.453212,0.21735,0.263633,0.270574,0.992114,0.132822,0.362886,0.344352,0.31076,0.156159,0.818234,0.299853,0.160216,0.154847,0.253267,0.100198,0.476053,0.207148,0.154925,0.180486,0.386657,0.357866,0.274839,0.233197,0.793412,0.00535566,0.982319,0.643859,0.872806,0.742324,0.907719,0.0448077,0.376782,0.0611945,0.586876,0.963584,0.175207,0.0564803,0.321688,0.278014,0.0789869,0.554511,0.660149,0.183624,0.297574,0.698734,0.46818,0.569238,0.894609,0.468999,0.0977209,0.01563,0.492507,0.452382,0.785149,0.990158,0.78379,0.529224,0.906944,0.553923,0.665462,0.0645247,0.243832,0.629536,0.929398,0.939698,0.299639,0.226704,0.127867,0.270665,0.837407,0.69552,0.525594,0.65914,0.748708,0.464595,0.478346,0.87983,0.718202,0.542109,0.735218,0.00604719,0.886405,0.621638,0.417935,0.165181,0.0939871,0.987878,0.922149,0.84534,0.657223,0.39964,0.806566,0.77358,0.106285,0.946091,0.2675,0.830755,0.712964,0.864589,0.100325,0.192256,0.852909,0.511954,0.689135,0.0452749,0.801459,0.457492,0.513588,0.804683,0.0277479,0.331822,0.841573,0.154974,0.96126,0.228955,0.339524,0.491073,0.125109,0.080882,0.766778,0.0451282,0.859611,0.330818,0.47838,0.0919357,0.460042,0.879675,0.386608,0.112982,0.168026,0.798617,0.274504,0.380562,0.0572,0.471924,0.510298,0.201726,0.237709,0.822012,0.95313,0.370158,0.240093,0.871349,0.15432,0.709822,0.104981,0.845067,0.503723,0.506798,0.859362,0.962836,0.192373,0.97489,0.921445,0.819913,0.642583,0.696584,0.869719,0.372783,0.131762,0.821789,0.580006,0.494209,0.693196,0.810377,0.488709,0.623281,0.236937,0.0432492,0.524974,0.764034,0.899589,0.639955,0.443393,0.513352,0.0703138,0.621432,0.483697,0.234173,0.642004,0.323612,0.309063,0.566745,0.156098,0.526174,0.410443,0.963129,0.330495,0.209615,0.254895,0.486989,0.230052,0.843139,0.457906,0.507547,0.287094,0.0885252,0.865655,0.37776,0.148553,0.886741,0.45418,0.351279,0.762003,0.526781,0.67527,0.431734,0.459911,0.401844,0.710901,0.236837,0.0414446,0.255794,0.291103,0.757108,0.455632,0.632597,0.474127,0.790833,0.463278,0.539988,0.616382,0.457843,0.730102,0.215846,0.338768,0.633022,0.174381,0.863425,0.341298,0.458395,0.731855,0.706732,0.692373,0.823119,0.891864,0.0829246,0.672306,0.451582,0.597753,0.63323,0.118612,0.761374,0.805763,0.900523,0.543552,0.466006,0.141407,0.737055,0.734868,0.557474,0.867435,0.686202,0.0658332,0.812357,0.573986,0.144129,0.256722,0.736801,0.939251,0.353629,0.946782,0.854052,0.987633,0.535082,0.599635,0.991578,0.799012,0.44544,0.0649133,0.507659,0.445784,0.219088,0.491189,0.405848,0.821227,0.346534,0.714453,0.299096,0.345507,0.1903,0.484101,0.860843,0.459447,0.505519,0.940163,0.908502,0.464509,0.812485,0.077206,0.972124,0.305562,0.52994,0.535642,0.201189,0.71398,0.916132,0.5084,0.432588,0.758062,0.329268,0.52393,0.99233,0.248583,0.879722,0.0712331,0.892386,0.305281,0.173142,0.459377,0.372814,0.109534,0.128298,0.169757,0.266715,0.979077,0.44572,0.333416,0.366626,0.559571,0.173979,0.502599,0.293816,0.118839,0.857466,0.633767,0.0468053,0.0627595,0.122634,0.833931,0.450913,0.621927,0.804115,0.837087,0.310891,0.145039,0.035707,0.654427,0.804467,0.933502,0.248628,0.762199,0.720132,0.112302,0.703352,0.938929,0.647402,0.459756,0.180327,0.582546,0.34336,0.628481,0.552149,0.68347,0.461471,0.509402,0.598895,0.0346032,0.88305,0.429375,0.620185,0.732886,0.46944,0.444103,0.57359,0.695194,0.827249,0.893601,0.0194473,0.218125,0.815115,0.0499386,0.569303,0.777861,0.0907756,0.729034,0.771981,0.843345,0.434524,0.105559,0.29895,0.853418,0.228785,0.198953,0.794994,0.615863,0.849627,0.0482599,0.991645,0.408001,0.850491,0.0846218,0.932464,0.640091,0.718359,0.403023,0.553231,0.845044,0.344346,0.996791,0.0259297,0.93022,0.344222,0.793441,0.36223,0.426495,0.964938,0.617689,0.83062,0.15587,0.51511,0.0667036,0.00498366,0.57165,0.498779,0.388546,0.9773,0.143988,0.802312,0.952708,0.216706,0.0139361,0.869375,0.0879444,0.162207,0.178009,0.672509,0.45904,0.064118,0.985554,0.731678,0.0372018,0.393459,0.531642,0.254868,0.442921,0.904191,0.180578,0.199332,0.0755925,0.305161,0.413858,0.429633,0.007379,0.797649,0.242048,0.964265,0.484973,0.100756,0.416596,0.152811,0.81773,0.348884,0.253583,0.17163,0.901014,0.149044,0.0244628,0.791771,0.718188,0.898364,0.188142,0.244526,0.150908,0.293833,0.654071,0.626157,0.103663,0.718372,0.811913,0.226739,0.242754,0.200335,0.924028,0.790571,0.0977032,0.772648,0.280944,0.245745,0.207415,0.80879,0.902526,0.504893,0.945726,0.138323,0.193304,0.376212,0.807785,0.80523,0.972134,0.0749364,0.291234,0.891871,0.770857,0.977648,0.805906,0.810684,0.686891,0.502369,0.482748,0.56159,0.615244,0.597519,0.582028,0.193738,0.939565,0.4411,0.164836,0.140475,0.157615,0.107876,0.462206,0.479887,0.39953,0.209694,0.598719,0.170612,0.320802,0.217576,0.926008,0.126011,0.906964,0.493502,0.0394033,0.10755,0.88529,0.457233,0.161849,0.790063,0.90109,0.348783,0.0155101,0.661295,0.547091,0.541179,0.118021,0.683366,0.972048,0.160807,0.626033,0.910224,0.659404,0.368458,0.730229,0.890385,0.166882,0.657917,0.507343,0.904102,0.533597,0.327507,0.331204,0.772694,0.376074,0.332863,0.0580944,0.468897,0.213163,0.278623,0.194542,0.636293,0.197521,0.763647,0.716037,0.790232,0.823591,0.0515399,0.44846,0.0629357,0.376587,0.562838,0.988088,0.351988,0.133979,0.767357,0.963285,0.35925,0.501574,0.533013,0.692834,0.385642,0.947826,0.976905,0.951462,0.267748,0.477281,0.812755,0.831933,0.419884,0.707839,0.146791,0.893557,0.424186,0.0470577,0.312307,0.542775,0.21073,0.775592,0.805575,0.610272,0.594957,0.748615,0.196413,0.166521,0.533344,0.386061,0.286699,0.229313,0.410205,0.667345,0.426959,0.303414,0.13145,0.668482,0.693388,0.0337697,0.885764,0.249025,0.723739,0.0046528,0.9496,0.80009,0.542142,0.535182,0.260824,0.327815,0.553996,0.00389475,0.732216,0.395879,0.652106,0.54208,0.538375,0.274887,0.7975,0.470301,0.865651,0.473692,0.273561,0.533513,0.953989,0.214045,0.379667,0.990497,0.911443,0.725296,0.538885,0.691371,0.206675,0.0913129,0.441833,0.963432,0.335802,0.340676,0.85458,0.0558586,0.711714,0.479737,0.320056,0.293911,0.326063,0.664828,0.885183,0.782604,0.897041,0.524747,0.43281,0.86042,0.29612,0.151276,0.0530385,0.917244,0.277937,0.389526,0.62255,0.0114944,0.01993,0.291029,0.890963,0.532423,0.778617,0.128454,0.931998,0.512468,0.862183,0.456069,0.0207198,0.745426,0.562855,0.386537,0.632039,0.799873,0.0905938,0.485866,0.227827,0.921246,0.576522,0.0101932,0.245017,0.387821,0.623292,0.0206821,0.577767,0.517182,0.370238,0.204781,0.417528,0.963508,0.467252,0.835523,0.28462,0.973823,0.92191,0.661327,0.854056,0.878665,0.0541524,0.0110187,0.913742,0.228211,0.695444,0.232072,0.759887,0.376466,0.362081,0.0852727,0.236063,0.134512,0.527367,0.129141,0.000885308,0.622122,0.337036,0.794085,0.198103,0.482927,0.33911,0.865458,0.689352,0.0381371,0.246687,0.938273,0.286806,0.207846,0.541851,0.768573,0.652538,0.162087,0.828916,0.347786,0.44664,0.758292,0.905231,0.0660859,0.659757,0.486082,0.234146,0.786344,0.186156,0.971778,0.904194,0.375668,0.0829952,0.593074,0.0320765,0.223425,0.234942,0.0059669,0.741288,0.710236,0.372764,0.470358,0.692065,0.0875202,0.304932,0.361757,0.937882,0.356427,0.372926,0.953422,0.607316,0.983684,0.016942,0.806618,0.124228,0.74113,0.179582,0.941176,0.941828,0.65292,0.777298,|0.37911,0.0118586,0.619742,0.24601,0.74033,0.336884,0.598751,0.624422,0.798476,0.85227,0.645232,0.677219,0.885089,0.69621,0.792913,0.64829,0.342117,0.547344,0.908052,0.81918,0.889522,0.735259,0.395131,0.290869,0.149793,0.0929278,0.141486,0.897102,0.866729,0.035221,0.149794,0.326612,0.740969,0.50267,0.97642,0.366467,0.216122,0.669086,0.432886,0.618358,0.0799888,0.361885,0.637748,0.30465,0.369241,0.403016,0.194961,0.64469,0.816265,0.129008,0.283301,0.945104,0.310323,0.510432,0.11402,0.904716,0.964702,0.908652,0.739441,0.476663,0.60304,0.965106,0.735113,0.668532,0.946081,0.730233,0.794032,0.739832,0.224867,0.91106,0.154413,0.951635,0.124944,0.309507,0.65435,0.0810301,0.541389,0.695258,0.49367,0.243739,0.611786,0.859189,0.0363769,0.510551,0.0401155,0.968068,0.0469236,0.710015,0.12061,0.214609,0.432431,0.191028,0.491516,0.109437,0.318565,0.277841,0.419186,0.995069,0.409786,0.563371,0.385302,0.602352,0.83798,0.405937,0.0985005,0.732043,0.276062,0.918364,0.882896,0.291568,0.20581,0.380854,0.932331,0.868623,0.145079,0.0359788,0.479931,0.59915,0.691416,0.619501,0.592502,0.0438572,0.428499,0.806578,0.801045,0.632892,0.838873,0.590862,0.438331,0.807262,0.0945334,0.944948,0.121969,0.591344,0.0657864,0.0472766,0.467896,0.0137515,0.429846,0.363142,0.0211548,0.653184,0.281237,0.418246,0.401147,0.439036,0.981247,0.464809,0.709655,0.0624247,0.0984602,0.555617,0.514934,0.508963,0.829044,0.847451,0.156118,0.859041,0.666028,0.975617,0.969963,0.802528,0.153675,0.313141,0.361365,0.587113,0.546518,0.274356,0.77286,0.354425,0.565217,0.366349,0.0949071,0.547167,0.394985,0.597441,0.667596,0.105851,0.214004,0.538185,0.403238,0.624529,0.336023,0.260098,0.0275652,0.856187,0.690476,0.309388,0.877187,0.249819,0.676256,0.441543,0.00839752,0.598053,0.409387,0.645436,0.134345,0.253608,0.3288,0.0620796,0.400136,0.270427,0.0844471,0.0474948,0.171968,0.547261,0.261137,0.590887,0.423469,0.0195749,0.623115,0.210433,0.723287,0.838417,0.170445,0.667441,0.472873,0.561583,0.838804,0.315612,0.00452375,0.604293,0.291464,0.416191,0.793988,0.276521,0.798626,0.255131,0.98351,0.160959,0.636767,0.826814,0.925469,0.630298,0.40284,0.584142,0.423164,0.25169,0.477754,0.979271,0.668477,0.247533,0.741634,0.00457036,0.831719,0.906609,0.270295,0.935254,0.120139,0.494387,0.500257,0.304525,0.948133,0.747674,0.957856,0.435617,0.198825,0.624796,0.788128,0.821709,0.748002,0.77406,0.595231,0.244818,0.119145,0.381195,0.67737,0.383968,0.129861,0.610731,0.494005,0.360343,0.0411406,0.786632,0.599886,0.316032,0.911168,0.416458,0.0876307,0.952137,0.411733,0.322224,0.843568,0.385352,0.34985,0.271489,0.833181,0.799151,0.321611,0.138611,0.609788,0.3278,0.679391,0.496164,0.996354,0.384423,0.755313,0.723932,0.330941,0.710345,0.326576,0.348715,0.223318,0.924774,0.0439136,0.0500546,0.0573742,0.357405,0.406032,0.903026,0.732814,0.951145,0.815484,0.174456,0.836051,0.774213,0.204507,0.07805,0.648994,0.934829,0.479183,0.383883,0.91444,0.996013,0.137762,0.835818,0.437712,0.316175,0.891579,0.72224,0.427568,0.598301,0.815643,0.959033,0.181279,0.225653,0.886373,0.290075,0.229875,0.456853,0.693265,0.210862,0.611495,0.419017,0.139457,0.932608,0.0510398,0.12394,0.60828,0.0477133,0.131003,0.364327,0.747984,0.722289,0.0820807,0.983641,0.724721,0.149187,0.849171,0.301737,0.198346,0.203618,0.428109,0.900784,0.65197,0.316294,0.0174546,0.199882,0.799574,0.536449,0.541629,0.025992,0.195391,0.645629,0.117225,0.737188,0.186495,0.0201102,0.307924,0.839946,0.956216,0.218946,0.93848,0.473455,0.111859,0.909258,0.179957,0.945465,0.858831,0.996137,0.672292,0.60173,0.77035,0.341002,0.25607,0.657644,0.171784,0.835679,0.659533,0.395592,0.437345,0.634395,0.563076,0.228191,0.905233,0.409447,0.28926,0.681968,0.292842,0.639725,0.386104,0.886748,0.919767,0.79528,0.88939,0.549221,0.614039,0.403441,0.496522,0.889583,0.735609,0.849403,0.362109,0.330801,0.992619,0.0160789,0.65273,0.944992,0.737916,0.0549798,0.37077,0.196864,0.368315,0.459795,0.0555592,0.690155,0.938607,0.26873,0.26864,0.42224,0.16543,0.61122,0.267304,0.0498104,0.437962,0.513405,0.848686,0.095959,0.665775,0.0366307,0.353276,0.891867,0.939317,0.290056,0.807064,0.283985,0.356288,0.516263,0.562452,0.696626,0.285727,0.773904,0.20656,0.4365,0.70625,0.515946,0.406907,0.898441,0.962363,0.480702,0.987764,0.587609,0.368273,0.552435,0.281873,0.941728,0.963045,0.626432,0.607298,0.627707,0.115156,0.953745,0.139096,0.261923,0.536995,0.73089,0.860832,0.579299,0.740171,0.87631,0.968792,0.335305,0.636085,0.867523,0.490286,0.603548,0.529682,0.581306,0.410334,0.217691,0.917049,0.629302,0.877047,0.943839,0.675887,0.490433,0.211107,0.296325,0.642547,0.244317,0.845176,0.6367,0.390236,0.251007,0.443262,0.135498,0.376787,0.178064,0.19667,0.0297107,0.81445,0.283261,0.0376755,0.153459,0.195222,0.299681,0.663625,0.867799,0.421905,0.792899,0.90905,0.413372,0.221891,0.635976,0.856729,0.268551,0.0828595,0.454595,0.189586,0.854071,0.0535786,0.843846,0.653457,0.938746,0.0910235,0.462643,0.576877,0.32037,0.585702,0.582266,0.231824,0.309869,0.0136704,0.696463,0.329128,0.397868,0.203174,0.839146,0.224417,0.474186,0.153024,0.867764,0.394194,0.0632992,0.500178,0.741196,0.884513,0.728911,0.499995,0.981234,0.396183,0.99393,0.902384,0.923168,0.671529,0.034139,0.951737,0.915677,0.34458,0.622487,0.730186,0.633332,0.203943,0.252032,0.58734,0.0981435,0.172072,0.451435,0.324626,0.839898,0.0311112,0.855247,0.0893625,0.539626,0.588533,0.23889,0.859891,0.96103,0.684024,0.583692,0.245081,0.583341,0.933203,0.238073,0.460327,0.629045,0.677662,0.541716,0.858744,0.119894,0.552427,0.881727,0.618794,0.504412,0.139028,0.379226,0.669987,0.480874,0.19978,0.889661,0.534491,0.434878,0.433237,0.994741,0.649721,0.166849,0.474413,0.470488,0.201237,0.272398,0.758109,0.793405,0.726922,0.266608,0.193986,0.146315,0.442091,0.585169,0.567923,0.0465791,0.538035,0.294556,0.723019,0.741001,0.7145,0.157311,0.966584,0.0267441,0.482154,0.250312,0.441339,0.505822,0.0543458,0.826105,0.0315608,0.109213,0.162439,0.83286,0.875709,0.575304,0.502503,0.648279,0.368772,0.0404896,0.428703,0.00543606,0.82473,0.30572,0.0926478,0.458677,0.211324,0.26821,0.633736,0.822026,0.73156,0.88448,0.0306614,0.830715,0.657495,0.713807,0.180159,0.196143,0.52222,0.930617,0.699777,0.315764,0.181844,0.375286,0.540767,0.224476,0.0361165,0.862019,0.323282,0.0791367,0.741978,0.431551,0.789896,0.393256,0.680953,0.767358,0.094537,0.0265402,0.819668,0.916069,0.668692,0.551063,0.0444001,0.531218,0.670237,0.400142,0.506941,0.86894,0.832208,0.238229,0.317566,0.895517,0.631568,0.648968,0.408383,0.0147921,0.69242,0.457548,0.9693,0.177321,0.705369,0.260369,0.242075,0.553031,0.953304,0.149033,0.348411,0.671381,0.503039,0.325733,0.586006,0.802897,0.171184,0.177268,0.78872,0.752815,0.656036,0.50668,0.0529529,0.251681,0.798236,0.836988,0.523408,0.243008,0.351628,0.375723,0.920439,0.791595,0.654113,0.354049,0.682549,0.3221,0.2036,0.961138,0.836505,0.507577,0.23947,0.777822,0.992836,0.776316,0.785855,0.352204,0.394811,0.385923,0.516705,0.99672,0.719319,0.624828,0.634015,0.320686,0.207922,0.602503,0.386274,0.765715,0.958161,0.00290984,0.543758,0.852511,0.486316,0.785489,0.722675,0.503054,0.0313135,0.684935,0.462696,0.648457,0.577621,0.325689,0.0600705,0.427891,0.0725333,0.0311893,0.812774,0.3896,0.713034,0.399851,0.882483,0.53913,0.429865,0.109299,0.943942,0.0984509,0.772884,0.263665,0.463076,0.485804,0.446842,0.857172,0.620821,0.549858,0.0366414,0.16641,0.19865,0.828029,0.232183,0.304664,0.817536,0.188238,0.606652,0.0762247,0.473781,0.734988,0.142262,0.637359,0.395766,0.116821,0.293772,0.0465334,0.606348,0.411156,0.140072,0.869258,0.187874,0.493082,0.824075,0.152733,0.289205,0.82112,0.693667,0.684322,0.462468,0.314316,0.770314,0.171583,0.472079,0.310097,0.500857,0.749061,0.411052,0.983326,0.538879,0.323043,0.575676,0.120347,0.756796,0.0659108,0.212367,0.761948,0.818365,0.114699,0.0196674,0.870838,0.874663,0.4047,0.887656,0.160322,0.80345,0.768124,0.564129,0.196367,0.0616834,0.880442,0.0813571,0.742787,0.786191,0.148484,0.810403,0.777849,0.147188,0.683692,0.843624,0.165245,0.291213,0.487863,0.671876,0.236418,0.926351,0.953632,0.032505,0.705647,0.399533,0.893774,0.167431,0.650252,0.41589,0.702587,0.115454,0.976202,0.781106,0.650431,0.19496,0.390041,0.308729,0.133563,0.272736,0.69855,0.858076,0.116776,0.763665,0.0126176,0.159887,0.290417,0.263238,0.416745,0.478705,0.636355,0.446013,0.486497,0.884494,0.360689,0.571843,0.717457,0.668418,0.361894,0.845885,0.433961,0.966873,0.282958,0.630752,0.683705,0.275414,0.908109,0.724364,0.713854,0.0302154,0.405445,0.361612,0.326761,0.664059,0.245695,0.960496,0.869902,0.4708,0.356385,0.783285,0.82986,0.297013,0.697785,0.551762,0.348896,0.987849,0.701742,0.258769,0.283165,0.238848,0.0154376,0.635654,0.0261565,0.0503441,0.479237,0.561537,0.81555,0.480367,0.226824,0.0870535,0.229577,0.276204,0.468172,0.0776804,0.538308,0.325378,0.101223,0.711767,0.215277,0.635934,0.827176,0.14324,0.403708,0.978646,0.963682,0.747029,0.591508,0.437192,0.641805,0.800017,0.621705,0.661505,0.200736,0.519588,0.476404,0.52483,0.128553,0.459949,0.785584,0.605306,0.720962,|0.421178,0.992751,0.0796626,0.445613,0.932466,0.627149,0.843973,0.208936,0.48043,0.0931411,0.289449,0.203072,0.711946,0.872231,0.638647,0.396008,0.196584,0.10415,0.0452399,0.721154,0.76016,0.681125,0.0134413,0.705773,0.343506,0.394553,0.653908,0.642391,0.0477319,0.754203,0.290303,0.826086,0.613332,0.722263,0.726673,0.655166,0.723786,0.342693,0.696181,0.451253,0.3788,0.574849,0.0399547,0.214973,0.0375378,0.308835,0.23966,0.346461,0.873119,0.34093,0.711408,0.0329204,0.256226,0.267476,0.168256,0.298834,0.0768597,0.291972,0.824876,0.194848,0.322443,0.525192,0.607093,0.134908,0.0900678,0.726538,0.273016,0.465534,0.663447,0.103272,0.769786,0.465941,0.391571,0.806465,0.257426,0.698887,0.519659,0.405137,0.988413,0.496139,0.353586,0.595325,0.598789,0.680926,0.645283,0.675237,0.932566,0.686229,0.991818,0.971736,0.403309,0.4736,0.166301,0.842967,0.0763314,0.825496,0.0408265,0.454057,0.43052,0.31381,0.598372,0.737111,0.363867,0.403203,0.43961,0.610392,0.262424,0.973883,0.0633768,0.187223,0.694648,0.660524,0.279092,0.269174,0.782841,0.61938,0.0140567,0.563913,0.240454,0.628577,0.0725513,0.185162,0.763841,0.978418,0.93755,0.0184835,0.68347,0.0648313,0.533348,0.99118,0.591701,0.633598,0.284585,0.62489,0.680876,0.0917212,0.975994,0.745045,0.663477,0.877748,0.0818936,0.967335,0.905998,0.525283,0.781294,0.836241,0.365862,0.715399,0.581832,0.719319,0.589727,0.763614,0.14061,0.412303,0.782627,0.271676,0.399021,0.839254,0.575813,0.179319,0.0264374,0.297562,0.832901,0.481374,0.455053,0.257649,0.0187277,0.151639,0.982457,0.0935965,0.741373,0.620894,0.844252,0.505507,0.297072,0.0998345,0.750008,0.30466,0.35166,0.344456,0.287926,0.7271,0.55748,0.126593,0.727784,0.384266,0.609824,0.125754,0.915883,0.119234,0.0756212,0.141472,0.203629,0.190509,0.785956,0.92444,0.930397,0.770754,0.769155,0.803074,0.869455,0.042565,0.36517,0.285455,0.422314,0.544516,0.726282,0.0358,0.271472,0.352522,0.71532,0.111771,0.0294179,0.123227,0.101744,0.83735,0.0975977,0.630297,0.525878,0.433482,0.399781,0.522412,0.690099,0.773026,0.485982,0.673054,0.857276,0.909723,0.117159,0.893115,0.278005,0.467045,0.684272,0.732569,0.940106,0.805279,0.450302,0.543561,0.397984,0.18143,0.100031,0.875508,0.0733539,0.0942556,0.992251,0.298364,0.679826,0.390932,0.657929,0.707006,0.0844099,0.196378,0.860302,0.53262,0.0225736,0.319489,0.908091,0.309147,0.75934,0.43739,0.60643,0.770695,0.39703,0.739324,0.479313,0.784053,0.447981,0.699884,0.445037,0.232476,0.755907,0.920734,0.114558,0.513569,0.491211,0.502572,0.971727,0.380798,0.257428,0.65743,0.0187636,0.541663,0.426001,0.0729307,0.868126,0.769379,0.869224,0.152009,0.381088,0.86687,0.690287,0.243928,0.652491,0.109112,0.312932,0.655528,0.0907124,0.387998,0.871179,0.140223,0.582527,0.0563854,0.718409,0.0811299,0.133321,0.237626,0.651104,0.809045,0.72613,0.783222,0.366431,0.569186,0.890092,0.829257,0.846307,0.440176,0.795816,0.782225,0.404506,0.392529,0.428624,0.109442,0.263068,0.27894,0.180183,0.771752,0.524901,0.317043,0.421489,0.475121,0.352971,0.626076,0.440616,0.369538,0.321565,0.845907,0.616645,0.282797,0.00418073,0.402209,0.379235,0.426808,0.181211,0.476287,0.861799,0.329514,0.956812,0.997506,0.0159199,0.658024,0.930937,0.733231,0.553259,0.943751,0.450128,0.0729225,0.319158,0.716825,0.210327,0.527599,0.363599,0.539641,0.0418292,0.84057,0.985805,0.568422,0.808058,0.985904,0.270997,0.814321,0.0480356,0.348448,0.82939,0.134834,0.61451,0.624773,0.149453,0.258228,0.864905,0.427368,0.605314,0.655137,0.875159,0.840339,0.0336088,0.756433,0.775615,0.180528,0.787171,0.197326,0.0284846,0.952221,0.230151,0.624153,0.329757,0.552643,0.0786153,0.201101,0.719634,0.646884,0.835198,0.334451,0.614674,0.321382,0.543827,0.465974,0.837893,0.188379,0.220521,0.451271,0.092982,0.833584,0.799883,0.228723,0.0885347,0.924119,0.339173,0.324743,0.535867,0.966571,0.646808,0.80198,0.901389,0.827083,0.00452447,0.485335,0.404911,0.0701022,0.239056,0.778724,0.392521,0.990672,0.50078,0.943966,0.150755,0.953574,0.940984,0.255582,0.399976,0.372569,0.149592,0.310279,0.00765586,0.38743,0.262513,0.335563,0.0822095,0.556204,0.145891,0.778449,0.289989,0.557395,0.0639278,0.458371,0.988808,0.848426,0.657798,0.971309,0.813967,0.722366,0.0885296,0.811877,0.204155,0.22406,0.577981,0.264811,0.605757,0.42207,0.917756,0.951081,0.955187,0.843095,0.586332,0.773638,0.664053,0.413045,0.674717,0.0317932,0.245796,0.739064,0.0248969,0.515303,0.761152,0.0720357,0.302595,0.660867,0.62878,0.0665752,0.57675,0.139141,0.401096,0.721858,0.881176,0.602515,0.729941,0.415422,0.146173,0.513546,0.948362,0.0551921,0.155035,0.462319,0.575676,0.529294,0.810874,0.319583,0.927339,0.502213,0.305619,0.902252,0.216988,0.650787,0.753577,0.598769,0.476004,0.924843,0.741281,0.802139,0.0540714,0.779589,0.565347,0.987118,0.429481,0.946522,0.23143,0.859749,0.999499,0.222139,0.367761,0.886484,0.241993,0.391632,0.715878,0.546236,0.635865,0.304868,0.371728,0.983489,0.844707,0.424554,0.467284,0.14659,0.386573,0.54227,0.0832112,0.810922,0.124814,0.549209,0.355201,0.254508,0.663229,0.348104,0.748268,0.79523,0.312813,0.866448,0.575307,0.890635,0.841453,0.54987,0.682049,0.264467,0.226343,0.67304,0.89385,0.232697,0.637966,0.265488,0.837224,0.0246987,0.776013,0.229957,0.751639,0.448888,0.48402,0.361604,0.294969,0.341278,0.413871,0.452706,0.437065,0.488516,0.072326,0.805703,0.655816,0.653724,0.806124,0.393327,0.2755,0.881675,0.746385,0.156412,0.917235,0.490831,0.994817,0.757076,0.88452,0.865822,0.794839,0.257075,0.803479,0.441016,0.746976,0.327836,0.551014,0.489617,0.628135,0.610812,0.266957,0.490948,0.987466,0.441615,0.341901,0.79122,0.490168,0.984796,0.759062,0.848218,0.128932,0.509355,0.81854,0.751117,0.103793,0.056275,0.809173,0.0639648,0.0126858,0.663645,0.233135,0.0465418,0.375829,0.368393,0.329576,0.0147508,0.621973,0.0209027,0.967417,0.39471,0.372398,0.859478,0.51897,0.72592,0.185757,0.130251,0.26329,0.548628,0.846165,0.364943,0.541872,0.421572,0.0706028,0.448508,0.620488,0.998038,0.133242,0.109834,0.577122,0.0281953,0.842728,0.91563,0.341947,0.244791,0.166568,0.393875,0.953826,0.65929,0.202834,0.232168,0.61642,0.235264,0.39117,0.126583,0.0195324,0.579433,0.265337,0.0144364,0.782185,0.877563,0.112065,0.56073,0.172403,0.0732061,0.392441,0.903005,0.711196,0.659072,0.717197,0.433873,0.127719,0.313325,0.938641,0.292094,0.538576,0.733354,0.951978,0.772924,0.554417,0.369692,0.147203,0.86632,0.485899,0.0827029,0.899037,0.546518,0.994219,0.859105,0.750124,0.206956,0.143488,0.148986,0.506188,0.550349,0.832528,0.357463,0.261508,0.770815,0.815237,0.793398,0.271618,0.814631,0.774044,0.0329961,0.554222,0.627506,0.564426,0.00582099,0.448815,0.461147,0.990817,0.845861,0.3941,0.725099,0.516322,0.0549126,0.0217628,0.466907,0.0926803,0.168462,0.168774,0.791984,0.167855,0.0566261,0.604087,0.173329,0.91603,0.104561,0.0376022,0.696903,0.826464,0.62291,0.450426,0.0750293,0.47015,0.901004,0.0894216,0.113176,0.61016,0.524721,0.0991107,0.199266,0.880024,0.828667,0.412413,0.24185,0.114761,0.595962,0.534863,0.596245,0.0667012,0.508777,0.75253,0.623811,0.483607,0.653552,0.222396,0.361864,0.377527,0.91381,0.40487,0.254196,0.0731727,0.534293,0.170392,0.266768,0.564809,0.326907,0.228459,0.535492,0.0273455,0.80783,0.0443888,0.949933,0.0427661,0.452911,0.889954,0.113929,0.272371,0.741919,0.269676,0.208025,0.610853,0.173444,0.595136,0.00184661,0.10965,0.125799,0.332055,0.0721136,0.824805,0.185953,0.590235,0.57351,0.712429,0.800502,0.428976,0.00400722,0.317006,0.580497,0.688948,0.149973,0.437347,0.830229,0.16139,0.805406,0.402741,0.149304,0.663826,0.366248,0.71525,0.463528,0.076021,0.1176,0.279853,0.29579,0.77961,0.651467,0.732381,0.167599,0.625229,0.417587,0.0887273,0.741426,0.332637,0.735113,0.593273,0.213179,0.148037,0.276427,0.848219,0.194348,0.673592,0.996327,0.125756,0.466149,0.381558,0.62548,0.00143534,0.0155955,0.166972,0.762579,0.707289,0.652852,0.402909,0.497671,0.560577,0.0981618,0.370201,0.606052,0.0288613,0.0876288,0.998953,0.909592,0.245307,0.58017,0.756646,0.730957,0.870786,0.783701,0.962779,0.82601,0.777721,0.762566,0.0568789,0.975686,0.0731688,0.108458,0.951741,0.359103,0.0511817,0.97685,0.397702,0.0529711,0.453858,0.308769,0.146533,0.902625,0.968308,0.0184653,0.368713,0.263566,0.0230145,0.878022,0.265817,0.461949,0.294202,0.0149311,0.417855,0.611988,0.751888,0.613269,0.895736,0.470611,0.785072,0.311827,0.996466,0.49193,0.055036,0.466357,0.565729,0.38453,0.638562,0.841093,0.214893,0.037338,0.310035,0.537225,0.240376,0.361695,0.705221,0.899038,0.143795,0.660354,0.536063,0.490651,0.18004,0.277873,0.0571836,0.775444,0.468461,0.458078,0.347188,0.11174,0.710896,0.630532,0.943374,0.782576,0.11235,0.833784,0.758076,0.473216,0.564276,0.503594,0.393034,0.0231148,0.635301,0.0382254,0.516572,0.679177,0.499656,0.452943,0.94838,0.126355,0.37793,0.987066,0.466443,0.785917,0.530357,0.831038,0.607228,0.75787,0.812855,0.343925,0.143917,0.339101,0.781887,0.745349,0.0380136,0.619523,0.103122,0.611226,0.442034,0.468237,0.655192,0.210217,0.82376,0.99964,0.257335,0.493667,0.921598,0.645674,0.846234,0.794785,0.426928,0.220606,0.118907,0.36735,0.275908,0.626734,0.421411,0.515615,|0.995543,0.320558,0.0741289,0.721715,0.371009,0.605261,0.114695,0.140501,0.909021,0.837478,0.0247791,0.0395344,0.472692,0.291639,0.442549,0.0216396,0.719132,0.670958,0.33655,0.20707,0.321637,0.336329,0.0233132,0.20447,0.273178,0.839621,0.932964,0.0535978,0.127409,0.134027,0.199091,0.106828,0.0216421,0.226641,0.973433,0.629964,0.188006,0.0313535,0.523719,0.88612,0.927771,0.837725,0.976216,0.786484,0.0472977,0.159861,0.55918,0.268865,0.541018,0.0565335,0.913923,0.405429,0.0728071,0.195108,0.193719,0.684056,0.35705,0.481256,0.996472,0.0850124,0.606258,0.916025,0.196239,0.96739,0.89543,0.18316,0.412345,0.828926,0.408322,0.596706,0.633142,0.419165,0.274722,0.801023,0.62492,0.858848,0.604726,0.772224,0.564365,0.314961,0.695764,0.0737888,0.700399,0.932574,0.283177,0.214786,0.666947,0.873909,0.440175,0.372976,0.0157859,0.0988424,0.95753,0.198188,0.12641,0.754037,0.663703,0.717002,0.591619,0.090778,0.480709,0.806348,0.113998,0.86734,0.889117,0.532701,0.23283,0.870919,0.445814,0.833104,0.703133,0.498018,0.534613,0.620154,0.28615,0.680382,0.0711024,0.427676,0.0527092,0.621561,0.467866,0.919873,0.010282,0.801253,0.0670356,0.472681,0.0786537,0.199608,0.0301661,0.0295436,0.0248345,0.118881,0.902923,0.767975,0.123268,0.806542,0.819177,0.705655,0.232845,0.654249,0.870583,0.569821,0.792356,0.314796,0.337243,0.693183,0.700367,0.114451,0.793682,0.270642,0.0109695,0.0790082,0.956336,0.0442083,0.0914997,0.570586,0.201807,0.811767,0.477514,0.709286,0.533807,0.758817,0.0814987,0.723705,0.418867,0.157419,0.0736739,0.908132,0.3421,0.178525,0.940913,0.114009,0.495104,0.336341,0.0377897,0.861613,0.918673,0.540823,0.887133,0.472616,0.199663,0.3483,0.282857,0.461304,0.59922,0.282595,0.626482,0.81118,0.662268,0.395403,0.850368,0.892997,0.231908,0.458157,0.297877,0.25604,0.394885,0.112856,0.973827,0.5678,0.124019,0.0598198,0.696726,0.682236,0.582111,0.293121,0.887273,0.485003,0.3495,0.798945,0.144712,0.807052,0.411487,0.187932,0.323788,0.342849,0.620397,0.0950362,0.850346,0.483646,0.752275,0.874915,0.239715,0.359123,0.794219,0.105383,0.0787596,0.234234,0.686875,0.209103,0.752382,0.863942,0.955777,0.556536,0.230561,0.226299,0.461159,0.484026,0.485778,0.722676,0.716453,0.903597,0.0887511,0.901969,0.806569,0.580908,0.15932,0.457845,0.605506,0.869957,0.359739,0.976126,0.261216,0.946074,0.544481,0.345689,0.273682,0.413131,0.133104,0.23763,0.342367,0.50769,0.297116,0.954021,0.606529,0.362405,0.698724,0.143267,0.976184,0.788461,0.881772,0.327384,0.321192,0.132436,0.23491,0.493271,0.221016,0.056132,0.448754,0.786259,0.973565,0.0589847,0.19608,0.550364,0.664349,0.331065,0.11547,0.819152,0.405036,0.377719,0.226217,0.458609,0.254801,0.742408,0.408988,0.326059,0.687934,0.665774,0.00568813,0.365228,0.984738,0.807541,0.191707,0.139039,0.961977,0.141834,0.578451,0.430545,0.360475,0.29797,0.7621,0.85394,0.139685,0.28858,0.526726,0.0265362,0.305188,0.110067,0.971128,0.786745,0.213633,0.0936853,0.077552,0.921799,0.282264,0.00746483,0.269489,0.64129,0.910731,0.032776,0.769443,0.45182,0.301447,0.0632809,0.721016,0.830155,0.266167,0.0949108,0.920919,0.133919,0.838571,0.912971,0.566605,0.930693,0.229824,0.708032,0.649566,0.993215,0.334088,0.642502,0.920483,0.7034,0.513579,0.0258148,0.612135,0.594559,0.477888,0.895998,0.5402,0.500666,0.165595,0.609773,0.150833,0.217065,0.0857033,0.312909,0.0270618,0.878781,0.179568,0.518172,0.657277,0.560807,0.718876,0.492426,0.243748,0.517161,0.647501,0.596728,0.260114,0.109829,0.766391,0.51757,0.458588,0.45588,0.227565,0.994472,0.0964047,0.116455,0.00971472,0.611572,0.150346,0.979451,0.18453,0.947649,0.605215,0.84603,0.286054,0.0823359,0.953439,0.695784,0.124655,0.957199,0.20037,0.586169,0.723292,0.255302,0.882501,0.173866,0.862067,0.384614,0.319577,0.393395,0.249221,0.542475,0.0490561,0.202771,0.282396,0.528221,0.215478,0.968234,0.418666,0.0104188,0.199033,0.697842,0.0766549,0.431409,0.921173,0.325778,0.838141,0.818854,0.894724,0.00329685,0.551508,0.586286,0.891371,0.761513,0.618091,0.836249,0.462247,0.160202,0.495984,0.944597,0.842441,0.908029,0.450535,0.848248,0.226101,0.810371,0.0304778,0.159079,0.662387,0.660552,0.798614,0.999306,0.639649,0.140869,0.38089,0.967657,0.706455,0.045386,0.167553,0.0249434,0.46096,0.68845,0.607053,0.341536,0.209584,0.700382,0.0152371,0.645512,0.0126248,0.520206,0.460419,0.608819,0.421991,0.25524,0.354397,0.427582,0.5054,0.663851,0.968524,0.664721,0.683754,0.620458,0.746593,0.539594,0.380099,0.734585,0.705839,0.924158,0.694565,0.0768203,0.734034,0.313455,0.757627,0.87325,0.328896,0.420198,0.729738,0.869423,0.961619,0.73102,0.844921,0.448261,0.369927,0.927961,0.271567,0.45845,0.545866,0.97559,0.00149292,0.589875,0.47554,0.979235,0.240985,0.802782,0.644514,0.602473,0.394786,0.789917,0.105668,0.354877,0.998592,0.0783264,0.421298,0.630489,0.035229,0.689785,0.598993,0.8402,0.920347,0.738676,0.0838501,0.272137,0.738787,0.0392654,0.0254713,0.00330955,0.953942,0.180538,0.985714,0.879962,0.640102,0.14321,0.0986949,0.0242178,0.742647,0.485803,0.851849,0.229962,0.630798,0.627257,0.728987,0.273472,0.362401,0.589319,0.407406,0.804461,0.649623,0.859696,0.340448,0.500735,0.431751,0.774827,0.217999,0.649042,0.0429258,0.716582,0.476978,0.69071,0.0107433,0.319578,0.812294,0.677843,0.582647,0.336015,0.170483,0.409246,0.799282,0.29657,0.272737,0.417607,0.374526,0.170032,0.348532,0.116674,0.601116,0.35281,0.293112,0.514428,0.464437,0.127877,0.485596,0.397629,0.611614,0.299098,0.987677,0.602646,0.0488958,0.614832,0.0692831,0.249081,0.519473,0.566133,0.542517,0.493446,0.269833,0.743436,0.74415,0.562516,0.885794,0.241008,0.654829,0.784517,0.654548,0.289878,0.993505,0.0702208,0.801516,0.03648,0.652779,0.358621,0.0963135,0.65759,0.389757,0.276181,0.901618,0.130461,0.807096,0.382841,0.985684,0.223052,0.827783,0.985197,0.833899,0.72302,0.047147,0.298389,0.823627,0.444118,0.364822,0.935432,0.9905,0.376482,0.147542,0.452456,0.548189,0.056236,0.963502,0.0673804,0.142603,0.682591,0.925359,0.086532,0.925879,0.0135397,0.665159,0.146734,0.975679,0.679659,0.935578,0.13412,0.00832933,0.505535,0.323653,0.776873,0.458876,0.655668,0.16124,0.494325,0.269315,0.26728,0.813249,0.0700479,0.557893,0.636149,0.921258,0.938953,0.759038,0.261759,0.933262,0.815325,0.810515,0.60308,0.489201,0.309768,0.548811,0.60147,0.497689,0.358246,0.424166,0.741831,0.878278,0.57785,0.564925,0.364156,0.332089,0.766525,0.628043,0.593418,0.606906,0.999538,0.697779,0.281657,0.143955,0.0940949,0.770515,0.519449,0.193641,0.321482,0.6564,0.026256,0.739416,0.713422,0.793078,0.798557,0.0877196,0.560909,0.142587,0.996533,0.876163,0.67365,0.724368,0.48168,0.425572,0.343473,0.620362,0.109247,0.185145,0.854416,0.511396,0.134761,0.386782,0.393615,0.492915,0.169767,0.200318,0.555464,0.445955,0.385975,0.921014,0.948603,0.535047,0.765151,0.279955,0.575316,0.910862,0.758644,0.00486279,0.116562,0.384726,0.26492,0.261682,0.629912,0.493929,0.853718,0.401103,0.446235,0.561868,0.648139,0.701647,0.263205,0.162121,0.913572,0.674254,0.67514,0.391657,4.65512e-05,0.925535,0.0390083,0.584317,0.16866,0.0778205,0.953249,0.190232,0.982139,0.470698,0.279246,0.0118613,0.978805,0.898859,0.0519168,0.0196813,0.330166,0.705068,0.599017,0.357375,0.829136,0.160205,0.214236,0.520748,0.740673,0.65622,0.693005,0.666583,0.5402,0.785592,0.212906,0.677645,0.309253,0.535448,0.209146,0.539564,0.545578,0.472718,0.164545,0.0340506,0.208098,0.0169892,0.178962,0.110401,0.283426,0.527297,0.0696705,0.838876,0.172155,0.207336,0.590656,0.00945234,0.387584,0.7587,0.4169,0.300003,0.635486,0.0773394,0.793681,0.00361276,0.585393,0.164649,0.672488,0.649962,0.689087,0.261206,0.114389,0.456111,0.943334,0.444291,0.865523,0.655754,0.996743,0.353407,0.639339,0.0593689,0.433869,0.315304,0.241612,0.762107,0.706979,0.00103706,0.463811,0.973335,0.472656,0.56254,0.553587,0.989088,0.272414,0.0771065,0.128288,0.270836,0.689607,0.328818,0.240128,0.425629,0.126685,0.903785,0.888892,0.315143,0.677558,0.151638,0.150672,0.945251,0.521337,0.452351,0.314614,0.587945,0.783664,0.702339,0.110295,0.709236,0.95889,0.821052,0.869864,0.52111,0.879864,0.845347,0.134985,0.18572,0.171768,0.440633,0.524714,0.836138,0.403301,0.342363,0.122346,0.0273819,0.863448,0.722638,0.928147,0.987421,0.334355,0.130046,0.213245,0.0399326,0.632602,0.783365,0.606827,0.909287,0.723374,0.10845,0.464807,0.737889,0.805195,0.0559455,0.133475,0.278326,0.670186,0.903082,0.217763,0.0183643,0.298554,0.941843,0.410276,0.688048,0.224651,0.690601,0.482572,0.855116,0.65449,0.251091,0.841175,0.563977,0.341049,0.775491,0.372817,0.176497,0.0218167,0.688133,0.706178,0.0195649,0.233834,0.990294,0.253535,0.844862,0.270293,0.877511,0.304522,0.904631,0.764734,0.368202,0.307164,0.0690239,0.136348,0.337829,0.946802,0.0410743,0.0256727,0.0286112,0.168631,0.309956,0.434088,0.751764,0.747652,0.841968,0.781603,0.175875,0.947604,0.994128,0.557252,0.203083,0.781321,0.459494,0.88342,0.588865,0.822444,0.768769,0.349959,0.0939888,0.445516,0.0477121,0.428682,0.303677,0.78373,0.228719,0.871942,0.588781,0.575139,0.851295,0.98692,0.106057,0.735665,0.585055,0.668524,0.861878,0.492728,0.111809,0.307794,0.896042,0.278964,0.509603,0.0886024,|0.787721,0.451895,0.822234,0.998819,0.665444,0.528247,0.0025962,0.0197125,0.198654,0.491124,0.00402212,0.237654,0.865683,0.0124525,0.769701,0.319036,0.014922,0.637642,0.66808,0.193987,0.244026,0.858584,0.776857,0.881837,0.733886,0.901222,0.179526,0.424244,0.135759,0.702117,0.234831,0.203026,0.128174,0.873392,0.333652,0.974351,0.67811,0.745773,0.351705,0.738453,0.305414,0.422265,0.270319,0.556428,0.624578,0.525818,0.989911,0.260144,0.947167,0.583912,0.558965,0.415151,0.905095,0.772,0.992134,0.742338,0.504787,0.414922,0.959662,0.723404,0.687375,0.937069,0.740219,0.842317,0.570109,0.775373,0.868233,0.0236605,0.712984,0.476276,0.928527,0.461223,0.00225013,0.948244,0.0839144,0.147313,0.176272,0.0364556,0.71737,0.771542,0.0186808,0.375503,0.702006,0.0351739,0.481028,0.172328,0.440892,0.844046,0.601245,0.283285,0.756524,0.309338,0.872555,0.546717,0.66027,0.832835,0.481153,0.83818,0.357856,0.110451,0.499198,0.996038,0.147081,0.671421,0.0428136,0.575626,0.307553,0.719114,0.688073,0.569186,0.826886,0.24033,0.658975,0.800942,0.184876,0.547548,0.656184,0.609946,0.293413,0.947327,0.933073,0.862136,0.78208,0.122499,0.0131223,0.193094,0.899175,0.934696,0.377167,0.577298,0.472723,0.831593,0.908254,0.618172,0.421139,0.427912,0.338844,0.158993,0.109736,0.7045,0.699941,0.790534,0.81223,0.378105,0.105629,0.870109,0.88322,0.988544,0.869424,0.219855,0.45977,0.939992,0.316576,0.504974,0.663432,0.208065,0.756695,0.463573,0.782877,0.0731348,0.795497,0.566457,0.713574,0.343902,0.0829267,0.097294,0.725645,0.35012,0.751753,0.762032,0.0695076,0.151169,0.566816,0.815474,0.706032,0.25279,0.0810245,0.728788,0.498104,0.900912,0.708957,0.553443,0.903662,0.213262,0.70283,0.299715,0.872746,0.206831,0.566918,0.585373,0.593779,0.688728,0.82597,0.966244,0.118493,0.988081,0.224623,0.0305341,0.817,0.124074,0.992485,0.797008,0.00714278,0.926577,0.687846,0.0956595,0.892025,0.175166,0.944722,0.201487,0.63398,0.31081,0.467677,0.618011,0.195245,0.779106,0.668737,0.726073,0.725224,0.6445,0.657749,0.649618,0.279996,0.736623,0.700376,0.180225,0.407041,0.913223,0.258276,0.410152,0.914746,0.135681,0.68096,0.913295,0.179501,0.733174,0.313835,0.797212,0.492399,0.779401,0.18679,0.703476,0.31159,0.849337,0.26441,0.966207,0.160282,0.395225,0.0709119,0.354931,0.960512,0.302904,0.56678,0.00133216,0.700577,0.854781,0.111949,0.209813,0.224693,0.335999,0.726742,0.445415,0.473422,0.927585,0.210352,0.264596,0.32175,0.813505,0.000681341,0.541214,0.884581,0.391279,0.0487416,0.142256,0.784706,0.512076,0.831132,0.648095,0.134848,0.197039,0.850154,0.777754,0.775415,0.588964,0.787916,0.492228,0.0106167,0.366537,0.641936,0.581734,0.447037,0.215058,0.579215,0.0159907,0.37224,0.404031,0.023098,0.579729,0.0667238,0.504079,0.117519,0.277253,0.711334,0.709527,0.442077,0.355656,0.63242,0.999446,0.927851,0.43225,0.136787,0.161221,0.84853,0.41276,0.202283,0.0164947,0.53583,0.267643,0.341764,0.302903,0.972567,0.0503988,0.669549,0.327307,0.191783,0.406552,0.67593,0.261899,0.918057,0.822567,0.779434,0.21241,0.965895,0.75528,0.793725,0.336186,0.0131881,0.455592,0.894531,0.427978,0.170757,0.936921,0.361745,0.852575,0.190313,0.626258,0.28424,0.110812,0.891056,0.425605,0.504152,0.109018,0.233079,0.286993,0.953409,0.218146,0.229577,0.10646,0.103798,0.411767,0.0792287,0.0477734,0.981144,0.326648,0.966405,0.642703,0.876356,0.115648,0.998025,0.436788,0.639912,0.00399506,0.0178574,0.70046,0.0839649,0.108932,0.262948,0.763414,0.151167,0.18691,0.730587,0.747598,0.277663,0.30923,0.968556,0.69606,0.340465,0.87218,0.066385,0.999438,0.596121,0.736092,0.463566,0.124001,0.602975,0.0609891,0.380988,0.75924,0.664908,0.872304,0.265913,0.743047,0.980945,0.943548,0.284706,0.918506,0.188963,0.26547,0.0157348,0.187843,0.542524,0.708636,0.850133,0.671972,0.687107,0.847359,0.379748,0.743492,0.657722,0.676118,0.423259,0.283058,0.702483,0.233461,0.572571,0.806377,0.268057,0.783414,0.414009,0.931799,0.732637,0.589245,0.798046,0.868831,0.302322,0.314122,0.67861,0.382308,0.236017,0.559805,0.676447,0.228773,0.294257,0.667407,0.256001,0.134307,0.782738,0.755549,0.425319,0.202455,0.718143,0.132615,0.0399414,0.792467,0.461854,0.7717,0.742667,0.555944,0.435301,0.258092,0.711221,0.50245,0.653623,0.989887,0.290473,0.00624156,0.0702729,0.75831,0.448877,0.276619,0.308951,0.375731,0.0843654,0.940481,0.534967,0.275874,0.598728,0.343115,0.0471151,0.540564,0.255857,0.252001,0.0864393,0.20545,0.710475,0.251334,0.860641,0.00786197,0.503339,0.207013,0.700855,0.857555,0.802612,0.131955,0.865762,0.901954,0.832056,0.343453,0.0942224,0.398453,0.671665,0.14138,0.518763,0.0348106,0.406265,0.1253,0.515535,0.827434,0.181894,0.436538,0.677033,0.885402,0.218553,0.81094,0.921679,0.843509,0.488804,0.95632,0.265203,0.996172,0.88556,0.724595,0.413529,0.913673,0.0821963,0.420979,0.763327,0.375656,0.293919,0.213043,0.303013,0.273935,0.28101,0.415053,0.562562,0.16935,0.00683761,0.223778,0.567664,0.734296,0.0714475,0.425115,0.809596,0.671641,0.45567,0.873992,0.544773,0.422886,0.309783,0.204062,0.510069,0.366539,0.97386,0.772432,0.212377,0.204695,0.819518,0.652839,0.889029,0.451843,0.201156,0.678292,0.327284,0.315241,0.157973,0.644997,0.243098,0.361683,0.138774,0.141808,0.614891,0.475831,0.0785099,0.729391,0.952909,0.389649,0.963936,0.922829,0.0225407,0.333137,0.230278,0.172059,0.292971,0.177744,0.614746,0.449121,0.951942,0.126781,0.603699,0.377323,0.554671,0.0120604,0.936106,0.944984,0.718232,0.532687,0.157721,0.0498728,0.54624,0.413146,0.955832,0.0427358,0.112261,0.440256,0.703931,0.491451,0.543966,0.407419,0.378198,0.800098,0.687777,0.877949,0.355258,0.0611479,0.902131,0.482187,0.843208,0.264648,0.891275,0.659285,0.685856,0.597616,0.784506,0.980016,0.825008,0.283654,0.642454,0.84761,0.172632,0.835206,0.254015,0.198739,0.899287,0.0569779,0.806192,0.784292,0.786463,0.191941,0.31345,0.074357,0.401509,0.285693,0.101365,0.37388,0.188717,0.120093,0.706772,0.0990952,0.133279,0.930245,0.566265,0.168454,0.57231,0.198234,0.209955,0.620287,0.13707,0.538042,0.213134,0.864984,0.774101,0.969722,0.0909688,0.495979,0.0323462,0.449346,0.658943,0.415,0.319652,0.625053,0.522006,0.77645,0.971108,0.965888,0.204257,0.18935,0.475095,0.961795,0.148699,0.661857,0.0329834,0.591007,0.559988,0.470798,0.255493,0.77282,0.771195,0.206434,0.781466,0.267535,0.285707,0.120372,0.903339,0.519543,0.590205,0.0638214,0.409792,0.205811,0.452038,0.843998,0.694652,0.976415,0.439009,0.177848,0.94278,0.606506,0.307391,0.838207,0.424115,0.46825,0.173949,0.111356,0.924865,0.360444,0.00576597,0.598019,0.157451,0.30724,0.655995,0.131071,0.208068,0.481759,0.819317,0.390305,0.560321,0.261501,0.371177,0.829845,0.0411892,0.759409,0.142467,0.494537,0.429359,0.618836,0.651693,0.0928427,0.0737076,0.770074,0.708165,0.467659,0.37852,0.935947,0.701887,0.644399,0.73673,0.326198,0.348613,0.676065,0.125037,0.996437,0.765411,0.642581,0.779766,0.548167,0.579649,0.233109,0.207861,0.642632,0.120832,0.695922,0.771023,0.764274,0.766129,0.783474,0.0925952,0.124609,0.732204,0.621056,0.435378,0.398949,0.267043,0.710082,0.621004,0.132775,0.280217,0.377863,0.75213,0.577811,0.173176,0.5219,0.130178,0.121167,0.349353,0.673119,0.846371,0.145695,0.527068,0.794998,0.0959343,0.569367,0.497481,0.221819,0.385641,0.562158,0.557994,0.0643022,0.187271,0.358659,0.381347,0.0472831,0.541812,0.108053,0.442796,0.32696,0.280107,0.530512,0.941677,0.200437,0.933455,0.204381,0.821852,0.822169,0.201013,0.415198,0.736725,0.917014,0.975662,0.989821,0.958798,0.865833,0.322803,0.688285,0.434537,0.23317,0.489247,0.711611,0.187846,0.473641,0.924262,0.86275,0.349131,0.579603,0.889906,0.592927,0.85771,0.0736595,0.853212,0.602757,0.919896,0.299905,0.0404473,0.241146,0.0952404,0.431006,0.203537,0.749664,0.495777,0.674736,0.8361,0.688015,0.703474,0.143189,0.904626,0.402259,0.482706,0.293629,0.706699,0.112548,0.877051,0.91564,0.868403,0.529757,0.0809707,0.135977,0.0937115,0.719857,0.283925,0.497548,0.378638,0.5016,0.614765,0.0627943,0.653518,0.256361,0.0849233,0.946751,0.166898,0.489985,0.148663,0.706264,0.118207,0.875546,0.479903,0.917052,0.805258,0.911685,0.0472857,0.169603,0.874826,0.395955,0.631364,0.486908,0.29147,0.481953,0.857022,0.0102735,0.165787,0.188894,0.983193,0.223357,0.121996,0.0139672,0.668286,0.140682,0.842707,0.0292144,0.636647,0.116916,0.609535,0.278533,0.521401,0.184369,0.519345,0.316631,0.127259,0.901953,0.192571,0.151739,0.815337,0.875802,0.471031,0.813556,0.544951,0.466252,0.679682,0.317603,0.560798,0.748789,0.879839,0.599807,0.776804,0.614349,0.0790845,0.856143,0.401802,0.165155,0.93683,0.427046,0.775323,0.936262,0.277746,0.177311,0.552504,0.273653,0.682829,0.665309,0.376853,0.942452,0.775948,0.788252,0.837147,0.000551105,0.43871,0.269111,0.199551,0.0385898,0.490746,0.00502962,0.48554,0.078375,0.185499,0.907524,0.816634,0.91947,0.169026,0.522683,0.729351,0.0807742,0.851544,0.967285,0.534211,0.769192,0.488417,0.281047,0.777167,0.571875,0.589822,0.208314,0.149111,0.141775,0.53209,0.383818,0.983364,0.745768,0.270024,0.36825,0.0863608,0.0409565,0.69047,0.354864,0.938236,0.955831,0.696814,0.1852,0.320587,0.513876,0.891772,0.857684,0.26022,0.699425,|0.645535,0.882386,0.322771,0.365559,0.785285,0.973536,0.83166,0.448176,0.986085,0.553359,0.143902,0.566665,0.245161,0.458192,0.635119,0.763159,0.911936,0.784155,0.644991,0.253955,0.936967,0.229204,0.0674313,0.763337,0.370453,0.554967,0.934449,0.454507,0.770097,0.0866127,0.904319,0.502007,0.91265,0.0421154,0.448732,0.843501,0.34292,0.385722,0.960296,0.335008,0.128466,0.29732,0.212052,0.230033,0.231482,0.791822,0.484293,0.979722,0.255193,0.778754,0.506524,0.369836,0.656341,0.359265,0.0655627,0.366358,0.498944,0.0618567,0.743244,0.550746,0.973164,0.384447,0.494963,0.0587569,0.0503088,0.00699073,0.41604,0.489429,0.581916,0.467688,0.604702,0.769179,0.687884,0.89357,0.100174,0.428803,0.579408,0.558945,0.63409,0.686983,0.908774,0.348498,0.309415,0.404379,0.819839,0.385983,0.13317,0.163397,0.827398,0.0213756,0.148295,0.753941,0.478711,0.214982,0.263373,0.102483,0.665876,0.433081,0.696964,0.0502794,0.48391,0.562362,0.863516,0.42327,0.640819,0.879847,0.493785,0.162745,0.500737,0.231521,0.23658,0.883419,0.723895,0.449212,0.593191,0.785699,0.772579,0.969968,0.633576,0.24229,0.944171,0.176757,0.729825,0.980383,0.607889,0.450868,0.200803,0.97511,0.292099,0.818263,0.102981,0.932288,0.656856,0.733729,0.286197,0.749464,0.578547,0.197804,0.915411,0.738046,0.712951,0.291688,0.667229,0.0602733,0.0227413,0.74636,0.893939,0.669297,0.270076,0.598452,0.612457,0.19312,0.902741,0.674693,0.40514,0.743365,0.907214,0.589688,0.37752,0.320501,0.880756,0.375647,0.000759184,0.00541979,0.899269,0.505126,0.766705,0.533997,0.697917,0.740193,0.246883,0.923476,0.344587,0.577945,0.743396,0.366342,0.837609,0.259889,0.744341,0.630379,0.0864104,0.863208,0.849448,0.191247,0.351808,0.14528,0.648315,0.96051,0.133834,0.40192,0.171821,0.669622,0.848422,0.348209,0.106224,0.932603,0.949484,0.160584,0.255013,0.514475,0.548197,0.552422,0.892183,0.863728,0.59614,0.0274306,0.0584874,0.597848,0.75655,0.408276,0.792919,0.540653,0.999796,0.182114,0.630647,0.959711,0.632984,0.858871,0.988314,0.776203,0.776262,0.448879,0.179259,0.908735,0.329923,0.949052,0.735426,0.473384,0.918271,0.774006,0.790505,0.410876,0.00120783,0.24401,0.51348,0.843358,0.621157,0.761312,0.650251,0.086727,0.37905,0.326004,0.511863,0.48942,0.14713,0.18505,0.857166,0.0310283,0.132634,0.134547,0.370672,0.0308702,0.437487,0.666543,0.336609,0.0809156,0.902716,0.30387,0.377345,0.24784,0.262797,0.839356,0.827007,0.275799,0.0477746,0.707872,0.968005,0.490667,0.565767,0.973491,0.515361,0.809444,0.285845,0.0917236,0.00940698,0.260218,0.520746,0.658397,0.486063,0.364699,0.606603,0.956607,0.65346,0.619911,0.357826,0.827615,0.283895,0.665207,0.297403,0.470156,0.783509,0.652614,0.140597,0.0621823,0.393413,0.983666,0.028348,0.766232,0.827523,0.946995,0.125108,0.869723,0.624918,0.797922,0.835298,0.388797,0.513956,0.0659714,0.373849,0.354817,0.109438,0.435167,0.0111151,0.495266,0.854799,0.399185,0.891423,0.6741,0.994505,0.28636,0.652692,0.992341,0.0974013,0.925184,0.688697,0.332002,0.16269,0.758294,0.602133,0.801252,0.239557,0.989654,0.375504,0.928307,0.857944,0.646898,0.963774,0.211979,0.526855,0.608352,0.861125,0.770128,0.829053,0.35421,0.356092,0.0108674,0.701354,0.505605,0.353062,0.350724,0.506563,0.133551,0.349018,0.0524058,0.636533,0.317967,0.36261,0.123197,0.522694,0.722875,0.200028,0.207369,0.0695554,0.474724,0.0643805,0.657112,0.861133,0.990418,0.681197,0.523726,0.947079,0.479433,0.0222685,0.607229,0.137248,0.359228,0.591154,0.543113,0.180695,0.607753,0.631455,0.39891,0.102546,0.304646,0.991853,0.016108,0.91748,0.308861,0.359918,0.803315,0.687873,0.386565,0.169894,0.0338107,0.190449,0.2283,0.154476,0.883045,0.871154,0.226657,0.937977,0.224541,0.194927,0.713951,0.23633,0.325086,0.250791,0.695512,0.274728,0.670688,0.500599,0.990348,0.399804,0.455704,0.71938,0.572312,0.549722,0.88563,0.630628,0.444047,0.394364,0.351471,0.115478,0.359466,0.808639,0.702436,0.757269,0.0780258,0.532062,0.3428,0.698059,0.00994515,0.556578,0.636198,0.656924,0.979769,0.0349113,0.813237,0.704775,0.58405,0.364172,0.453977,0.5628,0.107668,0.562897,0.794874,0.356263,0.938786,0.138263,0.904419,0.532861,0.758687,0.483528,0.587588,0.6572,0.538804,0.00261605,0.616404,0.391387,0.246185,0.429876,0.215956,0.0882846,0.25983,0.861713,0.0208685,0.0308968,0.780934,0.157596,0.604931,0.547194,0.0113899,0.353734,0.832958,0.849627,0.782877,0.437975,0.586288,0.957373,0.0118703,0.44349,0.30917,0.688905,0.884009,0.281329,0.30656,0.149411,0.343518,0.426644,0.545749,0.836977,0.628825,0.0759513,0.506669,0.137917,0.554298,0.134982,0.463979,0.756196,0.131744,0.890753,0.755047,0.0755789,0.111646,0.242557,0.479402,0.912804,0.669235,0.531302,0.575116,0.779293,0.63927,0.315934,0.555075,0.152714,0.259562,0.908074,0.758544,0.765888,0.61584,0.649478,0.941345,0.429226,0.578063,0.0678724,0.400164,0.614145,0.283276,0.988031,0.292919,0.272674,0.465294,0.992247,0.327336,0.412106,0.912216,0.269641,0.955064,0.69457,0.404114,0.221316,0.539494,0.426331,0.604282,0.137138,0.720717,0.390759,0.492715,0.569355,0.752328,0.264477,0.534879,0.536556,0.526066,0.739106,0.214324,0.74926,0.321226,0.0653513,0.00223398,0.922315,0.362714,0.198944,0.42138,0.491373,0.576599,0.438306,0.715236,0.974862,0.450483,0.372301,0.207068,0.799802,0.647336,0.860663,0.0977967,0.597003,0.0447789,0.29206,0.247481,0.465358,0.839741,0.211956,0.431115,0.637736,0.369713,0.373825,0.0459321,0.92754,0.182551,0.416031,0.597233,0.0273166,0.60581,0.67793,0.54701,0.880226,0.571759,0.619442,0.594961,0.406244,0.720291,0.609555,0.26693,0.0483193,0.756109,0.484972,0.914437,0.174953,0.478602,0.184458,0.05786,0.580057,0.852684,0.0812812,0.846458,0.101624,0.873951,0.17263,0.959522,0.52283,0.0111834,0.475045,0.171572,0.109147,0.543015,0.913518,0.86414,0.724988,0.589111,0.238333,0.617968,0.146375,0.683729,0.293561,0.166583,0.718761,0.599493,0.290123,0.537363,0.57893,0.0454333,0.384366,0.922713,0.0797695,0.212389,0.0881779,0.900538,0.0836886,0.510718,0.578585,0.487272,0.670389,0.665123,0.287666,0.0446891,0.728246,0.818833,0.146239,0.138224,0.116801,0.0383683,0.244897,0.259293,0.898185,0.423311,0.247703,0.92046,0.311222,0.333754,0.0331951,0.852078,0.093559,0.415725,0.409028,0.875886,0.863976,0.23861,0.928468,0.818276,0.724327,0.431279,0.214306,0.710868,0.799181,0.00694036,0.0355245,0.249263,0.230783,0.652353,0.583336,0.761286,0.389471,0.613631,0.910014,0.714185,0.698988,0.430173,0.224384,0.189257,0.284981,0.175839,0.775502,0.262227,0.330868,0.548348,0.814004,0.0218086,0.831374,0.226446,0.950316,0.37075,0.170075,0.745561,0.761829,0.962098,0.675777,0.77897,0.152977,0.70019,0.573556,0.0344128,0.495634,0.596697,0.260851,0.44971,0.77494,0.705503,0.522718,0.742906,0.00121361,0.0208634,0.972129,0.953455,0.958703,0.800377,0.62877,0.746751,0.771055,0.423098,0.865493,0.617401,0.463676,0.198297,0.411081,0.814686,0.665913,0.139375,0.351628,0.744002,0.862433,0.93432,0.0647503,0.640384,0.365677,0.0628448,0.653485,0.7771,0.145161,0.00236297,0.63939,0.874605,0.872875,0.944924,0.581105,0.00508523,0.880726,0.488729,0.712588,0.182483,0.081938,0.857317,0.609564,0.456657,0.499866,0.834666,0.072953,0.302483,0.73074,0.716083,0.482111,0.495795,0.357138,0.0988342,0.725786,0.722122,0.23505,0.648743,0.724945,0.905599,0.0362273,0.610279,0.717196,0.297208,0.84075,0.00330597,0.601956,0.668459,0.354385,0.742262,0.362823,0.543046,0.440853,0.883423,0.0173665,0.349305,0.228022,0.370688,0.561474,0.797029,0.911217,0.681521,0.424354,0.444911,0.608679,0.22597,0.971164,0.999969,0.0979748,0.623186,0.991196,0.090832,0.553825,0.814531,0.0670851,0.648211,0.871404,0.296308,0.594969,0.56346,0.619992,0.693926,0.327042,0.249672,0.251036,0.264166,0.687618,0.600071,0.115376,0.427087,0.132869,0.66608,0.551134,0.156008,0.450957,0.173738,0.296919,0.901376,0.133781,0.980418,0.9427,0.949879,0.294078,0.201679,0.285175,0.077619,0.875535,0.0740836,0.95007,0.331103,0.377353,0.135502,0.719536,0.096337,0.391979,0.910806,0.142057,0.242633,0.671596,0.0575136,0.982845,0.97825,0.297673,0.23658,0.843157,0.546512,0.239792,0.360998,0.749931,0.511138,0.143558,0.646686,0.357848,0.2181,0.165883,0.307474,0.369261,0.473677,0.675908,0.437302,0.869265,0.81859,0.648902,0.00012964,0.363496,0.57154,0.101425,0.858659,0.933962,0.096097,0.375419,0.378675,0.166487,0.0636353,0.00734162,0.739073,0.872154,0.839615,0.00492132,0.850257,0.655955,0.778514,0.226399,0.403712,0.986732,0.168687,0.694579,0.618579,0.199478,0.453246,0.290788,0.39095,0.920683,0.763881,0.455074,0.557024,0.696543,0.0937142,0.544881,0.758533,0.946862,0.0678527,0.587469,0.0105004,0.866022,0.952781,0.547951,0.892282,0.866362,0.123424,0.733091,0.46274,0.579718,0.166375,0.35615,0.18747,0.172637,0.131239,0.191357,0.775354,0.588907,0.0258515,0.094512,0.431439,0.429808,0.132368,0.325126,0.605885,0.114017,0.66411,0.760117,0.643138,0.496524,0.173072,0.191657,0.889568,0.453957,0.68194,0.064278,0.97005,0.833388,0.355627,0.396536,0.367066,0.0556779,0.576331,0.123113,0.347522,0.975044,0.363621,0.980567,0.684691,0.111146,0.892707,0.453816,0.932597,0.725278,0.772439,0.405453,0.370505,0.52632,0.929821,0.842735,0.788021,0.37367,0.400758,0.781493,0.417326,0.659083,0.0152236,|0.934119,0.297775,0.260832,0.684807,0.294356,0.970122,0.705418,0.719966,0.313416,0.493445,0.178589,0.799151,0.677357,0.99484,0.833831,0.428078,0.396266,0.357928,0.496574,0.0464064,0.738782,0.0612881,0.680426,0.977959,0.666768,0.0867452,0.661229,0.577852,0.125577,0.751235,0.580864,0.0609948,0.515397,0.451866,0.624567,0.283998,0.645188,0.998264,0.227406,0.496871,0.16499,0.552741,0.550538,0.264793,0.290764,0.012957,0.149806,0.305233,0.72755,0.133195,0.687026,0.721329,0.843505,0.295043,0.379797,6.00815e-05,0.833859,0.415573,0.0458131,0.300354,0.706939,0.179173,0.0298814,0.0604771,0.47062,0.932921,0.180001,0.331991,0.228671,0.674594,0.613958,0.319282,0.70928,0.26833,0.682612,0.679116,0.0365933,0.839946,0.283277,0.526117,0.0872307,0.958221,0.305926,0.536172,0.93806,0.626552,0.330047,0.489834,0.515816,0.127867,0.119901,0.144391,0.204796,0.485532,0.565894,0.0985476,0.813987,0.641122,0.709823,0.490504,0.332753,0.529875,0.341497,0.441492,0.512107,0.361472,0.0155899,0.937119,0.860469,0.792111,0.186472,0.993197,0.824097,0.15034,0.217781,0.404159,0.492076,0.529097,0.112564,0.504141,0.873401,0.206225,0.211312,0.324286,0.696123,0.202017,0.367994,0.0219483,0.587686,0.135294,0.0166861,0.480069,0.58649,0.0943049,0.0431022,0.321079,0.41513,0.0835936,0.773772,0.751142,0.358241,0.0912017,0.470718,0.374711,0.412699,0.7631,0.894799,0.228515,0.915697,0.689794,0.363808,0.478719,0.994289,0.421757,0.987929,0.707243,0.369329,0.302977,0.0951314,0.753189,0.951119,0.710122,0.459236,0.509634,0.796762,0.511413,0.102171,0.56362,0.658482,0.661825,0.428545,0.613428,0.0188218,0.0574892,0.106911,0.972996,0.2169,0.686993,0.755161,0.715118,0.757964,0.714288,0.901258,0.158646,0.0873368,0.689057,0.617849,0.633313,0.898184,0.448776,0.443627,0.994956,0.518956,0.312943,0.556325,0.614843,0.398002,0.135203,0.458354,0.196914,0.825801,0.491403,0.799705,0.480113,0.133341,0.0275978,0.355105,0.671382,0.504685,0.128095,0.396465,0.734748,0.791523,0.099987,0.982182,0.795089,0.950408,0.959558,0.271494,0.0245655,0.429646,0.748887,0.588454,0.0132136,0.467145,0.171478,0.340453,0.683209,0.399411,0.141776,0.623702,0.537327,0.440489,0.512963,0.48039,0.297259,0.502635,0.898021,0.535224,0.931046,0.516414,0.548949,0.891902,0.211295,0.60351,0.0193439,0.805913,0.944879,0.0258701,0.760209,0.00525689,0.122343,0.945142,0.00526112,0.612781,0.273293,0.0113136,0.789954,0.863033,0.504848,0.681281,0.0207544,0.422619,0.647938,0.269754,0.920575,0.635579,0.232733,0.731552,0.544414,0.526793,0.970668,0.339381,0.541916,0.24787,0.698801,0.133974,0.574447,0.863501,0.404294,0.451156,0.809783,0.55361,0.452571,0.372511,0.421609,0.0267119,0.0538962,0.874849,0.606002,0.650747,0.286253,0.127167,0.229614,0.227461,0.23754,0.573275,0.531987,0.502075,0.551896,0.363766,0.913974,0.0218028,0.411364,0.532521,0.97921,0.387754,0.366448,0.593972,0.960646,0.70332,0.219979,0.215074,0.435012,0.0163429,0.848001,0.397985,0.427375,0.0932947,0.435064,0.0614284,0.259505,0.6613,0.00548649,0.65348,0.140163,0.874412,0.156573,0.322449,0.343314,0.87948,0.233791,0.098411,0.781125,0.625936,0.143725,0.351546,0.374339,0.0260305,0.376476,0.423435,0.154634,0.918938,0.345825,0.875407,0.851577,0.237758,0.923571,0.760244,0.79244,0.27487,0.972735,0.1205,0.151015,0.926517,0.678753,0.791298,0.642688,0.830427,0.735787,0.0757412,0.17626,0.833628,0.789071,0.413159,0.14179,0.598099,0.809346,0.43239,0.850261,0.244179,0.185549,0.479828,0.553588,0.918813,0.452876,0.300299,0.989765,0.536542,0.757012,0.821589,0.223625,0.802127,0.353071,0.334643,0.510771,0.668276,0.104165,0.773572,0.606722,0.345786,0.764279,0.808757,0.787766,0.688608,0.475115,0.0525136,0.425513,0.239844,0.0602449,0.300738,0.536786,0.0330964,0.822905,0.945927,0.443076,0.754833,0.395583,0.170283,0.0547739,0.383965,0.330404,0.417976,0.510356,0.378116,0.073086,0.65965,0.425826,0.319202,0.261342,0.276345,0.268547,0.371219,0.772072,0.358165,0.622015,0.480829,0.192893,0.0390288,0.566249,0.460496,0.0669923,0.891006,0.481136,0.484859,0.316613,0.250851,0.834221,0.445123,0.0813709,0.965128,0.908892,0.530989,0.878263,0.146307,0.583832,0.00924516,0.655733,0.332947,0.505855,0.965682,0.852247,0.886456,0.35363,0.778314,0.941586,0.212717,0.605142,0.858442,0.807391,0.209054,0.804828,0.469012,0.933317,0.646389,0.460949,0.678328,0.854044,0.231747,0.668164,0.416773,0.370487,0.446979,0.618616,0.519661,0.66159,0.952859,0.373741,0.666691,0.191686,0.500462,0.0970319,0.0715153,0.966469,0.587446,0.898622,0.568543,0.581995,0.594079,0.802601,0.355334,0.290806,0.470096,0.489894,0.814848,0.378424,0.812136,0.43155,0.255995,0.861699,0.188452,0.442398,0.930696,0.015835,0.129899,0.797839,0.804843,0.69857,0.483837,0.618959,0.532594,0.208466,0.944592,0.43964,0.76236,0.88226,0.717234,0.271827,0.800668,0.0570047,0.440177,0.373373,0.0861605,0.351211,0.918221,0.619833,0.141507,0.630891,0.176068,0.785266,0.586229,0.697848,0.392037,0.867693,0.202265,0.334251,0.0130481,0.101642,0.787181,0.116324,0.804725,0.525941,0.949015,0.45445,0.252605,0.475046,0.977017,0.969739,0.813364,0.175145,0.402635,0.522086,0.79405,0.636729,0.828315,0.0473569,0.20289,0.0118158,0.987711,0.895298,0.68506,0.842855,0.534088,0.821873,0.0718122,0.378245,0.186323,0.8001,0.359853,0.777249,0.644381,0.770591,0.456807,0.565383,0.416148,0.467973,0.91281,0.884322,0.0308446,0.817024,0.677182,0.192071,0.692593,0.476561,0.613734,0.991806,0.326151,0.200911,0.116483,0.899614,0.139796,0.581626,0.807603,0.0712539,0.562158,0.311073,0.186,0.529413,0.310703,0.686126,0.591137,0.368827,0.479751,0.263193,0.370137,0.515164,0.504873,0.636313,0.290832,0.978576,0.725057,0.449205,0.168936,0.68706,0.399134,0.32565,0.399904,0.801609,0.194486,0.772777,0.856299,0.393317,0.0381499,0.182496,0.328111,0.498681,0.0822362,0.677435,0.119378,0.78171,0.512949,0.658748,0.143754,0.73878,0.962744,0.493936,0.960366,0.863926,0.455262,0.357124,0.37941,0.453901,0.0838204,0.0328052,0.501189,0.654474,0.778822,0.109412,0.709107,0.0820953,0.333044,0.656776,0.17221,0.0540165,0.208115,0.838986,0.800146,0.0832966,0.0167493,0.963744,0.701059,0.865278,0.322931,0.662304,0.761674,0.0320544,0.483725,0.394894,0.595334,0.986044,0.646556,0.871478,0.699725,0.67948,0.374845,0.925507,0.869115,0.637946,0.976547,0.65176,0.209937,0.177177,0.61764,0.668171,0.402625,0.142836,0.748112,0.813449,0.707179,0.235035,0.143725,0.316507,0.275935,0.6889,0.313493,0.354499,0.829868,0.325381,0.947712,0.865748,0.400119,0.474255,0.133539,0.256071,0.0847343,0.970229,0.788908,0.86227,0.900792,0.32644,0.963652,0.360814,0.943447,0.327985,0.812587,0.532681,0.112367,0.417053,0.435966,0.674632,0.637691,0.233982,0.443279,0.983195,0.51298,0.268826,0.653065,0.990821,0.974487,0.179719,0.595254,0.494307,0.80178,0.580777,0.0798525,0.803376,0.068152,0.867318,0.978175,0.285083,0.563338,0.619729,0.505027,0.606152,0.112483,0.719117,0.980711,0.0950577,0.529108,0.766526,0.0322703,0.752023,0.0144951,0.767377,0.271003,0.0981703,0.786787,0.74507,0.836207,0.870071,0.924196,0.303313,0.486802,0.772594,0.938699,0.00968397,0.566103,0.352662,0.0181238,0.684314,0.238404,0.617407,0.838992,0.239197,0.399575,0.599659,0.6815,0.220576,0.786481,0.0281493,0.724698,0.581265,0.490558,0.454654,0.793075,0.618095,0.592599,0.0258557,0.365762,0.503243,0.369324,0.309153,0.962238,0.0102516,0.698478,0.930341,0.138414,0.1985,0.669546,0.888469,0.491217,0.0933852,0.380647,0.0692816,0.225158,0.317864,0.371749,0.571689,0.594281,0.646165,0.148637,0.72601,0.577865,0.143695,0.158978,0.99076,0.0357706,0.992864,0.626979,0.523868,0.599068,0.58977,0.976359,0.428186,0.553725,0.552549,0.222991,0.499822,0.611631,0.572992,0.196782,0.798639,0.866587,0.468007,0.0877979,0.311448,0.866712,0.901455,0.274061,0.467708,0.31873,0.215519,0.456077,0.0255758,0.631343,0.826821,0.273377,0.770916,0.96627,0.837043,0.0241658,0.90471,0.760519,0.719105,0.15986,0.367577,0.837211,0.0199638,0.702307,0.630983,0.792239,0.892979,0.895,0.153686,0.87659,0.705572,0.621398,0.745331,0.290088,0.295126,0.920832,0.593111,0.310454,0.974563,0.673715,0.24382,0.46942,0.80532,0.782407,0.869451,0.992093,0.825921,0.0320604,0.797946,0.241481,0.502883,0.525258,0.633441,0.870738,0.12532,0.0943791,0.72014,0.850224,0.583854,0.290829,0.526063,0.924747,0.217908,0.367955,0.741248,0.450458,0.0963936,0.581367,0.0312283,0.361134,0.601995,0.481467,0.228213,0.906638,0.0817974,0.275878,0.832972,0.519568,0.809229,0.492191,0.176302,0.30872,0.886206,0.117931,0.37476,0.873809,0.398013,0.926615,0.926201,0.251374,0.154151,0.476366,0.944545,0.131016,0.0288804,0.124457,0.830733,0.324795,0.608547,0.545202,0.724174,0.367482,0.311038,0.828482,0.479669,0.496398,0.802466,0.180095,0.783078,0.660193,0.652588,0.593651,0.259381,0.497563,0.207814,0.171994,0.565653,0.388193,0.265497,0.110612,0.89215,0.752599,0.0168597,0.83073,0.105466,0.726837,0.606154,0.101893,0.271652,0.131931,0.806117,0.330395,0.0347565,0.0840302,0.634364,0.320939,0.631358,0.479326,0.127342,0.710018,0.64867,0.351077,0.155736,0.739403,0.659115,0.806682,0.792697,0.992263,0.746131,0.0364928,0.798523,0.652333,0.739478,0.906412,0.646891,0.440815,0.670212,0.863485,0.795474,0.262563,0.889756,0.899425,0.300998,0.981787,0.655922,|0.67063,0.737423,0.578118,0.975978,0.546666,0.971574,0.792177,0.593268,0.475607,0.387381,0.139872,0.821899,0.411812,0.0796691,0.550179,0.375617,0.233532,0.924857,0.706484,0.693637,0.753135,0.580595,0.227319,0.789716,0.843118,0.894432,0.70528,0.0558053,0.956863,0.659295,0.403404,0.598168,0.693549,0.812153,0.0803509,0.171779,0.601356,0.296879,0.816838,0.69777,0.296779,0.0512983,0.374408,0.933617,0.946401,0.361075,0.135037,0.518467,0.642031,0.871906,0.31149,0.422092,0.189041,0.454289,0.258348,0.819509,0.451515,0.508508,0.437825,0.786288,0.564183,0.685808,0.905418,0.0571945,0.457248,0.585487,0.351006,0.0922257,0.602407,0.0738533,0.366058,0.444142,0.958456,0.0379913,0.0118187,0.652672,0.950805,0.478317,0.938698,0.628316,0.947699,0.480507,0.0474196,0.939534,0.546093,0.764082,0.923961,0.61885,0.557442,0.937687,0.571085,0.993246,0.537717,0.23627,0.589784,0.650795,0.264817,0.880112,0.670405,0.973405,0.872073,0.833774,0.612438,0.566806,0.724647,0.621434,0.99313,0.859115,0.407388,0.188861,0.794031,0.156916,0.720998,0.922892,0.923131,0.229367,0.203196,0.517823,0.47494,0.580932,0.254465,0.905316,0.442029,0.550259,0.865322,0.845632,0.547688,0.164755,0.340317,0.776898,0.525118,0.680114,0.454255,0.376807,0.081138,0.123798,0.208118,0.604543,0.286049,0.961949,0.638496,0.25067,0.199167,0.214491,0.0890503,0.173311,0.155377,0.620289,0.952502,0.867008,0.811384,0.846177,0.832143,0.0593554,0.0171102,0.042743,0.723182,0.366183,0.400129,0.813802,0.994148,0.567995,0.837484,0.837416,0.910586,0.165343,0.922786,0.786649,0.786571,0.496497,0.574713,0.658012,0.406521,0.196441,0.298828,0.302787,0.018326,0.535232,0.426757,0.486181,0.490405,0.573965,0.390885,0.277131,0.189427,0.0843646,0.898352,0.412918,0.808182,0.687647,0.994266,0.000230432,0.451124,0.717698,0.627669,0.17135,0.0829368,0.264185,0.152076,0.742979,0.730695,0.454717,0.604768,0.46619,0.417207,0.417147,0.305893,0.520851,0.847969,0.731055,0.880192,0.438017,0.00923949,0.996622,0.45371,0.613041,0.137344,0.243934,0.606692,0.450366,0.987399,0.409045,0.203039,0.847719,0.406051,0.0492377,0.128682,0.957275,0.712692,0.10241,0.941837,0.658754,0.0700445,0.987647,0.0431857,0.0734496,0.157089,0.991193,0.715494,0.283374,0.235194,0.77721,0.670804,0.0380113,0.249965,0.292413,0.930213,0.570456,0.975829,0.116789,0.287077,0.353996,0.519926,0.72115,0.00332969,0.0643784,0.906025,0.615151,0.813099,0.877999,0.57537,0.888629,0.241606,0.710535,0.553054,0.949227,0.153764,0.175185,0.0220526,0.349458,0.683422,0.887309,0.590937,0.938055,0.656376,0.496657,0.315938,0.400951,0.92527,0.00401843,0.771291,0.131163,0.308879,0.976312,0.174186,0.759357,0.247971,0.760867,0.205593,0.571718,0.481487,0.872869,0.264006,0.160882,0.0255883,0.349844,0.906787,0.0267424,0.272572,0.906879,0.445859,0.32197,0.905656,0.775048,0.72082,0.383177,0.838053,0.0168438,0.826647,0.0929461,0.339371,0.744818,0.091562,0.828666,0.198277,0.0450422,0.96147,0.730667,0.385535,0.0724968,0.428355,0.873869,0.228832,0.1372,0.921405,0.964882,0.270788,0.920116,0.727696,0.0272588,0.863715,0.955816,0.706296,0.619051,0.800272,0.430159,0.670861,0.76738,0.0829986,0.72111,0.815619,0.388923,0.642737,0.307194,0.333021,0.9207,0.69993,0.572588,0.628631,0.718694,0.285699,0.100296,0.982842,0.581147,0.734454,0.857017,0.547452,0.972185,0.515934,0.375936,0.111867,0.756286,0.946023,0.392177,0.717778,0.0586538,0.258962,0.396457,0.471658,0.693052,0.985631,0.235004,0.492511,0.601221,0.263182,0.734637,0.393331,0.776934,0.708171,0.633324,0.269863,0.578099,0.0420508,0.885717,0.0816085,0.636829,0.548805,0.266453,0.459809,0.121177,0.909503,0.147534,0.0367886,0.88549,0.790936,0.553612,0.38105,0.267179,0.00147635,0.669786,0.787531,0.660302,0.630759,0.255122,0.223706,0.878893,0.0305365,0.0640351,0.930299,0.111726,0.828031,0.782386,0.803684,0.35567,0.394094,0.077691,0.0156505,0.597711,0.761325,0.443595,0.518882,0.865117,0.0495998,0.345486,0.228604,0.179505,0.323602,0.975755,0.198342,0.529978,0.849484,0.0735154,0.516747,0.223688,0.60274,0.218193,0.379274,0.880416,0.801384,0.569031,0.238125,0.134564,0.259715,0.710161,0.829257,0.873778,0.821663,0.300836,0.508078,0.420218,0.00638193,0.259013,0.876422,0.620449,0.0583621,0.594037,0.928904,0.323673,0.284437,0.130528,0.708164,0.740097,0.0391946,0.729666,0.286503,0.684331,0.922498,0.383995,0.110431,0.14824,0.914139,0.0283286,0.766853,0.604768,0.145091,0.188246,0.574361,0.302568,0.772434,0.89117,0.632773,0.493495,0.75112,0.700186,0.491177,0.653343,0.964342,0.0214877,0.71305,0.630625,0.884361,0.763226,0.0174763,0.0337952,0.855581,0.104414,0.388418,0.669934,0.587877,0.884716,0.138933,0.536029,0.437751,0.177247,0.884168,0.345853,0.553854,0.624463,0.144867,0.743776,0.320945,0.0244049,0.610494,0.611477,0.251336,0.514119,0.988204,0.64937,0.219796,0.163269,0.550608,0.653832,0.252082,0.578251,0.0489467,0.450918,0.620557,0.182794,0.811764,0.271937,0.280119,0.247221,0.178369,0.650335,0.963208,0.717064,0.684064,0.841736,0.689429,0.933749,0.170376,0.819798,0.32972,0.879488,0.54355,0.798358,0.957706,0.503971,0.584259,0.675316,0.147481,0.796817,0.553868,0.499517,0.252899,0.106068,0.177791,0.414364,0.115967,0.230558,0.675965,0.219843,0.562505,0.224111,0.160281,0.242986,0.648957,0.924282,0.630036,0.0798223,0.259975,0.479347,0.926561,0.767946,0.299363,0.170553,0.726806,0.778149,0.370441,0.366377,0.648344,0.948324,0.900218,0.314011,0.962512,0.92577,0.683437,0.06714,0.406577,0.359982,0.360865,0.781419,0.828996,0.836698,0.628352,0.832879,0.556007,0.900607,0.595508,0.232286,0.900422,0.217613,0.707904,0.396163,0.282424,0.998521,0.213078,0.355343,0.825306,0.594163,0.0990412,0.558791,0.88503,0.762251,0.252129,0.817058,0.322856,0.72388,0.575984,0.150589,0.182191,0.814487,0.648009,0.0773193,0.119329,0.975383,0.0793909,0.707587,0.121412,0.385608,0.558801,0.245807,0.193787,0.582494,0.964667,0.874029,0.0456973,0.758536,0.237594,0.375606,0.880109,0.866968,0.333497,0.796241,0.901627,0.235801,0.839096,0.934102,0.931578,0.913105,0.434285,0.252719,0.45833,0.322174,0.354477,0.802982,0.270595,0.366365,0.751366,0.436058,0.438818,0.868777,0.852104,0.419651,0.907653,0.961149,0.152097,0.0672256,0.630072,0.030412,0.341937,0.837413,0.532452,0.859973,0.469735,0.207983,0.155461,0.042173,0.101224,0.912479,0.734253,0.970759,0.373026,0.440728,0.420261,0.750574,0.332433,0.769046,0.815036,0.764072,0.954561,0.486358,0.548145,0.654252,0.106597,0.764427,0.991216,0.372738,0.825249,0.330791,0.435689,0.647717,0.986088,0.100066,0.925628,0.561038,0.270321,0.150283,0.0055244,0.485438,0.709889,0.984434,0.685371,0.512337,0.589747,0.386017,0.772109,0.774834,0.258102,0.208002,0.0892946,0.380754,0.711158,0.698958,0.531898,0.157076,0.91777,0.459122,0.334972,0.445559,0.263171,0.796627,0.491955,0.932649,0.992907,0.0388584,0.589929,0.557269,0.400594,0.933798,0.165176,0.230108,0.595521,0.167649,0.801238,0.465852,0.592667,0.422745,0.812983,0.956048,0.307249,0.715399,0.647317,0.882822,0.471429,0.320199,0.310674,0.21287,0.687021,0.36996,0.194964,0.860852,0.65252,0.932021,0.0539585,0.914062,0.975663,0.0878444,0.128022,0.665846,0.187123,0.544336,0.122861,0.36304,0.48502,0.326295,0.669492,0.0339265,0.233147,0.0235318,0.802628,0.358963,0.307377,0.764701,0.142777,0.523302,0.486276,0.929174,0.769055,0.639671,0.965071,0.017658,0.0201148,0.25447,0.967126,0.138679,0.272749,0.225142,0.941085,0.127749,0.0688062,0.861232,0.656808,0.215489,0.764925,0.296558,0.399572,0.223936,0.714324,0.959717,0.405456,0.631038,0.386591,0.358822,0.363812,0.0145327,0.0425134,0.542362,0.00709021,0.953962,0.297405,0.801557,0.979713,0.723404,0.570984,0.125263,0.662558,0.848938,0.282838,0.247151,0.684485,0.173292,0.87429,0.303642,0.188947,0.817854,0.162486,0.652313,0.882413,0.295386,0.905748,0.827344,0.669082,0.374144,0.842385,0.223577,0.697016,0.528333,0.127453,0.392742,0.925223,0.515577,0.16106,0.232312,0.962847,0.520134,0.776512,0.0845437,0.690161,0.114007,0.814133,0.835368,0.889137,0.107085,0.657495,0.136185,0.908466,0.770531,0.586888,0.956397,0.264911,0.16072,0.125419,0.0174881,0.14485,0.527938,0.658109,0.615278,0.0705456,0.116262,0.4696,0.574722,0.79829,0.281119,0.356441,0.417437,0.871326,0.398623,0.628677,0.0516378,0.318574,0.310669,0.56671,0.457481,0.557798,0.80664,0.54245,0.194498,0.363029,0.932263,0.462354,0.749148,0.336171,0.478255,0.581417,0.704539,0.579883,0.583368,0.521125,0.0517079,0.106892,0.728018,0.354882,0.805848,0.290846,0.24215,0.0875077,0.751168,0.630421,0.0707012,0.816446,0.0721081,0.977301,0.852279,0.476989,0.485986,0.680271,0.773441,0.328768,0.869405,0.0170816,0.0536751,0.0985678,0.30061,0.378148,0.374557,0.56035,0.584561,0.892286,0.685926,0.353929,0.483371,0.640788,0.756584,0.0703502,0.962326,0.717311,0.589467,0.570939,0.548392,0.67622,0.616073,0.36591,0.252487,0.88817,0.162786,0.770012,0.791657,0.878542,0.612149,0.127832,0.504626,0.312045,0.699878,0.234009,0.321103,0.418879,0.309328,0.72782,0.252344,0.605656,0.98796,0.201121,0.208775,0.0639806,0.763928,0.976365,0.334478,0.534643,0.78146,0.695003,0.903646,0.885134,0.214568,0.276994,0.416511,0.0557261,0.615575,0.563338,0.073817,0.279117,0.559846,0.417521,0.911874,0.144923,0.227609,0.678846,0.668111,0.642722,0.732579,|0.234776,0.344685,0.772553,0.0688071,0.182434,0.565193,0.959066,0.921361,0.65058,0.532932,0.847288,0.342278,0.946927,0.165484,0.625594,0.856855,0.953941,0.310749,0.0371341,0.668045,0.607605,0.435335,0.371591,0.909576,0.993704,0.677755,0.890792,0.145518,0.175331,0.234524,0.172622,0.789122,0.813742,0.751764,0.919791,0.900268,0.190995,0.559754,0.0973898,0.122069,0.100289,0.804072,0.417692,0.942163,0.293289,0.222989,0.090404,0.619058,0.618776,0.252405,0.841096,0.758144,0.534226,0.186279,0.645995,0.102922,0.315012,0.37991,0.550356,0.618561,0.103731,0.302775,0.225122,0.207907,0.358721,0.085937,0.00837505,0.618345,0.592616,0.797064,0.645491,0.0497814,0.745541,0.698894,0.319457,0.607225,0.337871,0.0985165,0.993842,0.910338,0.302419,0.420959,0.424132,0.684728,0.910878,0.590954,0.605241,0.0433877,0.0668831,0.94324,0.112736,0.434479,0.647017,0.127882,0.839951,0.425233,0.176635,0.973005,0.805508,0.261137,0.474477,0.245533,0.266983,0.311224,0.120334,0.338353,0.459008,0.78189,0.839298,0.785266,0.525172,0.118577,0.312429,0.425843,0.0647335,0.0615701,0.827368,0.771198,0.950217,0.287254,0.112254,0.328299,0.221326,0.611814,0.891273,0.664409,0.886669,0.178638,0.0473974,0.122498,0.833931,0.907439,0.0151309,0.968656,0.3505,0.946781,0.621179,0.231007,0.101922,0.89351,0.864483,0.286952,0.629099,0.508265,0.422345,0.649616,0.69555,0.918326,0.828269,0.929883,0.0247433,0.322231,0.114827,0.164117,0.911606,0.662516,0.176654,0.418285,0.620757,0.512624,0.662305,0.976716,0.901659,0.246938,0.144234,0.421157,0.739152,0.578022,0.379107,0.246826,0.596686,0.238114,0.953407,0.300027,0.812791,0.342407,0.0173746,0.402883,0.764988,0.0330294,0.206014,0.590974,0.0993176,0.117076,0.628911,0.980615,0.408973,0.8968,0.707589,0.078245,0.768242,0.960903,0.268488,0.812932,0.735523,0.0716861,0.229965,0.767235,0.481201,0.919592,0.221905,0.507547,0.475999,0.0308057,0.327162,0.887063,0.689916,0.670055,0.382831,0.392963,0.49496,0.902117,0.211,0.700133,0.907791,0.917517,0.301768,0.213655,0.235403,0.488935,0.203831,0.59666,0.978071,0.0267896,0.711934,0.405613,0.541729,0.139738,0.309973,0.474213,0.282725,0.982568,0.797201,0.378659,0.492749,0.217131,0.946809,0.968763,0.882001,0.879871,0.315577,0.478822,0.00142401,0.14998,0.912378,0.968371,0.195556,0.873005,0.775582,0.738792,0.606022,0.455656,0.201274,0.325744,0.243291,0.475227,0.390364,0.824779,0.53309,0.312705,0.602426,0.387424,0.944241,0.666643,0.711923,0.499308,0.191014,0.561028,0.0777135,0.885466,0.893369,0.632142,0.432085,0.412657,0.0259989,0.631129,0.505781,0.310283,0.716942,0.247764,0.30072,0.85083,0.242095,0.158092,0.432593,0.0970694,0.831908,0.857181,0.970158,0.406757,0.365686,0.886862,0.232816,0.0221347,0.215904,0.939623,0.627838,0.372847,0.984461,0.451877,0.685507,0.576264,0.0257343,0.0664041,0.148789,0.723709,0.692834,0.993296,0.909442,0.766557,0.798187,0.262313,0.420423,0.751192,0.750424,0.178316,0.130294,0.317556,0.785976,0.0930959,0.992318,0.170661,0.462539,0.617411,0.755701,0.293874,0.816689,0.623642,0.168286,0.418151,0.638984,0.837412,0.248252,0.618727,0.507223,0.429623,0.0543924,0.29459,0.517528,0.453049,0.773318,0.160088,0.699391,0.95226,0.923464,0.624525,0.531467,0.172855,0.414545,0.210773,0.547649,0.923147,0.925407,0.186295,0.984597,0.152119,0.973367,0.0671837,0.562595,0.135198,0.142499,0.74803,0.187957,0.292554,0.520572,0.615614,0.059463,0.463453,0.130308,0.781203,0.633285,0.0972074,0.423707,0.672072,0.758508,0.763519,0.50236,0.869802,0.393879,0.940432,0.315519,0.928692,0.780697,0.162886,0.848701,0.416819,0.448087,0.982157,0.782366,0.304772,0.558222,0.354928,0.145047,0.72771,0.899202,0.270153,0.359785,0.671649,0.113681,0.291899,0.558078,0.39795,0.720969,0.444724,0.151704,0.187076,0.294525,0.314234,0.0612602,0.982397,0.981677,0.939101,0.478006,0.443786,0.878531,0.630624,0.225529,0.826099,0.473182,0.892807,0.090431,0.533396,0.332779,0.583332,0.980134,0.61538,0.105716,0.556145,0.208026,0.845303,0.901037,0.0773318,0.119417,0.586533,0.493088,0.111679,0.321783,0.272842,0.449867,0.367195,0.549946,0.724945,0.496194,0.56054,0.0740655,0.186373,0.0164044,0.223134,0.188943,0.582155,0.976741,0.865395,0.0527932,0.593571,0.669005,0.136562,0.909715,0.90143,0.040882,0.269058,0.834918,0.0191503,0.864348,0.27602,0.837626,0.577015,0.73444,0.990386,0.846484,0.622367,0.944417,0.910626,0.495422,0.0584579,0.734473,0.379781,0.632279,0.670593,0.559176,0.844624,0.178773,0.00154805,0.070554,0.301386,0.531488,0.534457,0.263112,0.100909,0.979943,0.269509,0.746922,0.471548,0.511632,0.351162,0.816872,0.649612,0.627811,0.199448,0.365939,0.437892,0.321436,0.993616,0.610396,0.8365,0.892814,0.397708,0.374441,0.177177,0.424799,0.797479,0.152561,0.613614,0.396551,0.73453,0.818687,0.788404,0.0470382,0.788452,0.698565,0.673704,0.109529,0.641902,0.671742,0.418554,0.156749,0.714141,0.417164,0.0870153,0.427749,0.763436,0.0652893,0.373546,0.871755,0.997222,0.844307,0.855025,0.714203,0.715099,0.0559283,0.00341576,0.128127,0.979781,0.671124,0.511414,0.872269,0.17317,0.75842,0.897853,0.481333,0.780734,0.312725,0.629382,0.714742,0.190136,0.575929,0.156421,0.871173,0.298736,0.116484,0.420727,0.409814,0.940036,0.205204,0.345639,0.0663503,0.163474,0.77264,0.575762,0.789345,0.244765,0.880034,0.988281,0.836916,0.48617,0.525165,0.0505124,0.101888,0.360502,0.819435,0.966653,0.25399,0.839933,0.657994,0.758426,0.292947,0.587572,0.08651,0.148709,0.48158,0.067301,0.620827,0.475954,0.806857,0.32777,0.662208,0.54368,0.443032,0.278872,0.382588,0.767106,0.352087,0.772061,0.717417,0.298668,0.822015,0.778835,0.254626,0.823046,0.751221,0.617304,0.257306,0.914934,0.720529,0.457492,0.134383,0.819595,0.269068,0.691444,0.865485,0.455907,0.572751,0.926428,0.120858,0.598509,0.8287,0.853958,0.478922,0.672214,0.627086,0.856858,0.205949,0.478233,0.576672,0.271508,0.936566,0.0505091,0.595747,0.0292644,0.306758,0.269048,0.632933,0.456528,0.751161,0.803069,0.0825308,0.779608,0.916384,0.461222,0.725176,0.24297,0.900283,0.0150441,0.602085,0.732327,0.176628,0.502581,0.342189,0.405971,0.181467,0.256921,0.0333899,0.168279,0.639778,0.179676,0.204469,0.83229,0.224596,0.790162,0.603105,0.6764,0.573057,0.958973,0.163128,0.275729,0.462189,0.302399,0.40444,0.183339,0.00760084,0.766136,0.896657,0.653445,0.433446,0.0585977,0.913172,0.283774,0.84614,0.813462,0.66204,0.598533,0.977345,0.785212,0.369554,0.682886,0.04071,0.759351,0.125566,0.120896,0.541155,0.0810142,0.419791,0.219565,0.131255,0.947591,0.423606,0.0701594,0.447809,0.106021,0.628085,0.628586,0.624209,0.537151,0.708434,0.632707,0.658132,0.432049,0.907999,0.983908,0.993862,0.748834,0.874417,0.158502,0.338059,0.433925,0.198983,0.558636,0.545936,0.487518,0.965669,0.554175,0.843807,0.711035,0.425572,0.540023,0.616283,0.425557,0.236932,0.524261,0.0167098,0.330249,0.168358,0.441088,0.864203,0.664153,0.0398821,0.892028,0.53743,0.565373,0.185269,0.619389,0.337035,0.995958,0.605553,0.155333,0.18467,0.518386,0.808515,0.017577,0.246286,0.696702,0.743782,0.0186055,0.431698,0.609452,0.442552,0.874142,0.233375,0.296419,0.618363,0.259049,0.684479,0.657402,0.0834054,0.61508,0.0244306,0.778674,0.86129,0.778351,0.535309,0.551331,0.485319,0.525687,0.0632109,0.426573,0.206802,0.371303,0.454956,0.172816,0.282309,0.528396,0.788659,0.909469,0.905557,0.456351,0.283895,0.286425,0.462838,0.587952,0.480137,0.319906,0.16868,0.300885,0.991946,0.31862,0.89212,0.586256,0.80278,0.0200112,0.985707,0.591724,0.869764,0.108291,0.66592,0.0858453,0.630366,0.416251,0.0106422,0.0365126,0.333074,0.487953,0.386218,0.190728,0.942143,0.912838,0.355079,0.874343,0.687952,0.473154,0.00985384,0.76112,0.493656,0.154672,0.372195,0.94916,0.87766,0.384934,0.901111,0.0324029,0.125816,0.986282,0.722867,0.0513547,0.0451331,0.179228,0.54372,0.408824,0.574692,0.716284,0.752619,0.967922,0.154773,0.314336,0.142998,0.0390227,0.833137,0.822808,0.0193685,0.0544899,0.198177,0.297329,0.864156,0.31212,0.247866,0.557781,0.369442,0.583742,0.26714,0.210239,0.108896,0.287806,0.605386,0.524548,0.413534,0.533772,0.538097,0.298488,0.749631,0.135931,0.524217,0.937244,0.493341,0.728774,0.156612,0.303963,0.328579,0.167864,0.341589,0.00146359,0.850708,0.0266708,0.544441,0.0180128,0.0497897,0.699605,0.905523,0.443348,0.804034,0.606697,0.0988321,0.881809,0.0857692,0.0434037,0.00071919,0.27257,0.598746,0.844277,0.796601,0.480791,0.656592,0.985028,0.721591,0.546471,0.216925,0.36093,0.960019,0.927453,0.847981,0.816321,0.0152147,0.683309,0.72585,0.497386,0.270604,0.580747,0.459916,0.934604,0.708257,0.22435,0.584701,0.500487,0.305891,0.643483,0.215519,0.937351,0.840294,0.872809,0.577745,0.677425,0.0457728,0.464934,0.786581,0.335812,0.608856,0.246012,0.224303,0.166735,0.921858,0.286881,0.774304,0.665079,0.387414,0.235494,0.321589,0.96163,0.87096,0.757474,0.479686,0.841965,0.245826,0.57206,0.966423,0.795671,0.778985,0.775908,0.138427,0.629492,0.645843,0.277436,0.0881491,0.869201,0.227267,0.00900334,0.568729,0.461418,0.652198,0.13386,0.0815057,0.451959,0.571199,0.326634,0.745675,0.650371,0.795463,0.930058,0.221602,0.138041,0.38653,0.954486,0.10912,0.564798,0.797785,0.987884,0.393195,0.681751,0.0242795,0.657255,0.985861,0.476048,0.326799,0.958459,|0.661234,0.441519,0.302521,0.329279,0.0712434,0.353179,0.237546,0.565689,0.778608,0.0889755,0.895894,0.383191,0.574642,0.666419,0.288777,0.034406,0.39725,0.330629,0.00154424,0.315122,0.559093,0.815956,0.021391,0.921999,0.178531,0.342831,0.892481,0.993935,0.15239,0.782393,0.897542,0.407269,0.634238,0.934355,0.592069,0.105574,0.332336,0.445881,0.447594,0.741578,0.936706,0.542888,0.0685661,0.819901,0.22483,0.526781,0.159867,0.579938,0.712369,0.435305,0.273983,0.0676016,0.0586568,0.36127,0.16735,0.105291,0.428538,0.968862,0.217262,0.00339264,0.293815,0.656391,0.581429,0.166573,0.609417,0.799161,0.46507,0.0901268,0.0617808,0.13297,0.731463,0.0994304,0.216751,0.967607,0.40711,0.518121,0.271869,0.917696,0.01788,0.0888417,0.206541,0.455004,0.780551,0.801941,0.819733,0.542665,0.47037,0.711879,0.488607,0.273347,0.574733,0.00177455,0.780596,0.954101,0.055297,0.262444,0.178401,0.483652,0.256849,0.123115,0.47958,0.141755,0.605167,0.0760538,0.619811,0.224107,0.849075,0.439382,0.933235,0.685909,0.0473735,0.129759,0.0439843,0.661363,0.779184,0.184896,0.0960679,0.438239,0.142729,0.0985327,0.812535,0.197824,0.930012,0.966316,0.196357,0.121976,0.104108,0.201275,0.772305,0.0811377,0.077343,0.135703,0.185522,0.316037,0.459556,0.911732,0.932892,0.768766,0.273733,0.846554,0.322953,0.26842,0.357029,0.555565,0.982805,0.0996057,0.430015,0.875982,0.530399,0.745777,0.620122,0.696667,0.0251251,0.74596,0.414381,0.552816,0.996047,0.348017,0.0912327,0.322194,0.749595,0.680289,0.579917,0.0765212,0.112198,0.167572,0.0916904,0.814573,0.336147,0.79509,0.918524,0.929204,0.622303,0.254083,0.911706,0.228898,0.601351,0.855892,0.186256,0.26696,0.829551,0.465582,0.415582,0.0604282,0.579847,0.537634,0.413004,0.92642,0.0232673,0.869344,0.975809,0.6868,0.300065,0.142095,0.106862,0.9712,0.0996561,0.699495,0.626929,0.863476,0.549702,0.0233654,0.523412,0.0217726,0.250228,0.780122,0.584853,0.590655,0.206917,0.0758328,0.07189,0.904227,0.0451917,0.0469617,0.474634,0.30116,0.502551,0.372463,0.736935,0.821458,0.766816,0.968506,0.708663,0.967872,0.25976,0.807355,0.060608,0.595955,0.493364,0.671658,0.0432511,0.846913,0.738067,0.228914,0.711034,0.290108,0.544016,0.276236,0.890632,0.784917,0.119337,0.968308,0.267389,0.00294966,0.516813,0.838256,0.605594,0.184246,0.132836,0.550427,0.23965,0.95737,0.0364133,0.350695,0.473006,0.747963,0.50473,0.601147,0.0703352,0.6148,0.318931,0.693297,0.625847,0.551449,0.924161,0.621934,0.153514,0.452376,0.0905137,0.697529,0.334157,0.635303,0.139178,0.0592844,0.558911,0.348891,0.88854,0.346922,0.0914887,0.174797,0.470727,0.980236,0.468383,0.62774,0.610401,0.752543,0.736393,0.361619,0.657719,0.521027,0.177736,0.0142881,0.209722,0.0873184,0.344601,0.598904,0.297972,0.94742,0.200327,0.854267,0.00159359,0.312976,0.701214,0.768442,0.109872,0.91639,0.417925,0.90771,0.379335,0.467849,0.658448,0.327059,0.785041,0.474413,0.203935,0.72719,0.676869,0.476324,0.974285,0.127105,0.125789,0.730359,0.919603,0.185588,0.853494,0.451778,0.157789,0.918087,0.807036,0.590202,0.696215,0.438898,0.0129803,0.944947,0.76918,0.391045,0.0846938,0.834231,0.415226,0.423426,0.602125,0.731841,0.084062,0.973051,0.579734,0.581544,0.904559,0.572773,0.404433,0.307469,0.442818,0.44084,0.366725,0.745242,0.644565,0.51091,0.726867,0.379521,0.0984674,0.983781,0.193967,0.510841,0.299265,0.957336,0.94818,0.170552,0.440703,0.763864,0.951774,0.367935,0.520467,0.99136,0.343077,0.228407,0.294195,0.0369843,0.433407,0.0964642,0.709335,0.795689,0.348433,0.334087,0.809181,0.143304,0.26451,0.568252,0.189534,0.170956,0.974485,0.405015,0.579618,0.784969,0.846118,0.753291,0.726507,0.88633,0.0839457,0.591352,0.161195,0.868451,0.767174,0.136123,0.0374005,0.51428,0.692809,0.775297,0.460279,0.127387,0.530713,0.690087,0.251062,0.63169,0.0640539,0.14484,0.686191,0.418924,0.217146,0.411239,0.73797,0.540255,0.548986,0.457828,0.147285,0.0225047,0.286458,0.950006,0.859806,0.0219929,0.115464,0.941386,0.374114,0.519789,0.31182,0.376771,0.530057,0.435618,0.0710201,0.223656,0.00830173,0.426491,0.928039,0.760121,0.146026,0.17414,0.476464,0.370692,0.330871,0.587224,0.304627,0.675821,0.15213,0.600924,0.0380859,0.704527,0.445524,0.94163,0.12212,0.606904,0.238522,0.532379,0.422023,0.849598,0.254559,0.194447,0.958396,0.74939,0.665041,0.0923789,0.0613071,0.765691,0.771307,0.6611,0.123462,0.708534,0.00813174,0.725115,0.528976,0.691618,0.513056,0.297033,0.6503,0.292106,0.573295,0.837759,0.88109,0.415839,0.376748,0.49275,0.924899,0.177681,0.988973,0.576805,0.548414,0.23077,0.779649,0.960409,0.308558,0.69741,0.217706,0.753733,0.498368,0.677628,0.3618,0.886568,0.877207,0.0503986,0.483749,0.474823,0.0263975,0.997229,0.290497,0.873173,0.381335,0.903044,0.295229,0.385241,0.52629,0.887854,0.598946,0.224023,0.59806,0.607057,0.883278,0.368717,0.864724,0.448993,0.603776,0.228533,0.843852,0.480274,0.0697306,0.78161,0.807045,0.000703573,0.182792,0.0651079,0.0446177,0.926044,0.307594,0.363773,0.0480813,0.0305153,0.589288,0.374368,0.77106,0.570213,0.546489,0.559097,0.614398,0.245365,0.632554,0.902968,0.177875,0.599917,0.735874,0.375521,0.164649,0.372821,0.00760674,0.806976,0.821044,0.176647,0.542428,0.876667,0.383395,0.616408,0.00399119,0.460078,0.487492,0.850672,0.435263,0.308974,0.591995,0.0280409,0.985073,0.212042,0.0592396,0.431144,0.281604,0.764852,0.449617,0.111067,0.367701,0.70301,0.685796,0.999303,0.637071,0.155927,0.284342,0.0890937,0.655368,0.48071,0.849427,0.880679,0.876186,0.489472,0.525778,0.266286,0.822234,0.894535,0.341477,0.0482658,0.538564,0.154964,0.984568,0.377325,0.359243,0.554007,0.890493,0.314915,0.169044,0.388286,0.122168,0.825019,0.125118,0.538721,0.362629,0.981531,0.49894,0.528377,0.623203,0.179425,0.679014,0.93727,0.162612,0.449597,0.604785,0.099893,0.850468,0.602499,0.723829,0.674864,0.748676,0.309832,0.870516,0.685529,0.664694,0.0285345,0.760767,0.318084,0.0100082,0.653458,0.125071,0.127459,0.45565,0.858831,0.349751,0.206179,0.523873,0.164906,0.289461,0.627116,0.987775,0.575509,0.279578,0.279383,0.975823,0.273422,0.00284517,0.027978,0.636519,0.391176,0.879039,0.409606,0.251294,0.520797,0.631844,0.273926,0.558192,0.776754,0.412903,0.337907,0.367673,0.17376,0.917093,0.41421,0.659373,0.0806094,0.353653,0.812835,0.393592,0.374459,0.225693,0.118468,0.040979,0.809422,0.522613,0.799639,0.0925256,0.0149853,0.583996,0.782013,0.922622,0.308397,0.120379,0.24348,0.231786,0.656824,0.0381231,0.940881,0.545742,0.226654,0.675478,0.154868,0.579448,0.147408,0.741621,0.670342,0.381519,0.815887,0.497523,0.0588666,0.448176,0.915616,0.752409,0.415804,0.560403,0.944725,0.0333523,0.665857,0.368909,0.734771,0.943479,0.0781179,0.295863,0.282059,0.679099,0.754374,0.537838,0.593742,0.66327,0.643521,0.574272,0.081726,0.795479,0.709125,0.967732,0.982727,0.773496,0.667975,0.0386106,0.89178,0.589628,0.468813,0.514957,0.612346,0.905302,0.728604,0.0751642,0.769456,0.154658,0.297586,0.938189,0.688131,0.156459,0.00841671,0.369684,0.575393,0.367375,0.0574355,0.857518,0.247269,0.207095,0.236703,0.36203,0.103993,0.167828,0.441717,0.53281,0.535963,0.407934,0.434725,0.854145,0.117325,0.16404,0.468196,0.511194,0.78995,0.675324,0.881831,0.709543,0.780487,0.780624,0.207173,0.282256,0.189393,0.908417,0.0389225,0.61251,0.568213,0.0639215,0.0538133,0.142537,0.30657,0.963825,0.124541,0.615881,0.470537,0.389681,0.394077,0.697847,0.456072,0.578029,0.0137306,0.772728,0.957582,0.0538535,0.0525773,0.636077,0.447356,0.859142,0.0979269,0.909471,0.0938168,0.980762,0.570566,0.79291,0.673763,0.658032,0.221445,0.80686,0.285558,0.959209,0.0408329,0.59204,0.664707,0.0615474,0.0375482,0.998448,0.453704,0.201123,0.4044,0.0679669,0.586204,0.660216,0.903483,0.790767,0.835436,0.965697,0.010258,0.901163,0.0474816,0.399977,0.430023,0.168233,0.717744,0.62304,0.479181,0.995518,0.968825,0.96626,0.424337,0.0884671,0.347579,0.0523837,0.0341302,0.793882,0.105048,0.0343626,0.184745,0.0643486,0.612481,0.668429,0.656608,0.497792,0.951928,0.685694,0.0582366,0.637475,0.165182,0.324902,0.143754,0.289322,0.112632,0.564675,0.363442,0.641994,0.661482,0.00681126,0.0881241,0.405173,0.769769,0.394118,0.0747777,0.0110641,0.965051,0.953878,0.985109,0.450009,0.519622,0.876965,0.316332,0.104122,0.0320951,0.52712,0.0997504,0.400902,0.854617,0.0875769,0.435998,0.291615,0.245725,0.00376683,0.929252,0.595057,0.996482,0.545396,0.759132,0.711604,0.686455,0.849999,0.631928,0.101943,0.177585,0.621939,0.791151,0.172612,0.998923,0.531815,0.110677,0.726203,0.901034,0.329227,0.0837362,0.179567,0.647146,0.389645,0.613313,0.700214,0.464882,0.11503,0.911827,0.500231,0.985301,0.510503,0.0542029,0.152025,0.808469,0.160165,0.253082,0.65347,0.994217,0.94407,0.536889,0.526038,0.703449,0.156659,0.801757,0.19083,0.156059,0.461467,0.101089,0.936241,0.210282,0.443286,0.675599,0.17912,0.814906,0.30194,0.445815,0.269456,0.943167,0.230961,0.40417,0.965481,0.53359,0.561689,0.893854,0.145644,0.75304,0.181237,0.0621112,0.513904,0.310559,0.497709,0.426233,0.231545,0.339079,0.967548,0.645103,0.905188,0.915112,0.419042,0.970554,0.00602418,0.152141,0.242836,0.275087,0.193803,0.959384,0.694215,0.560209,0.0981173,0.183149,0.391819,0.855978,0.635308,0.842259,0.40417,0.680603,|0.475686,0.270132,0.480592,0.735398,0.344927,0.205378,0.479158,0.161645,0.568647,0.815029,0.793829,0.689589,0.487178,0.752756,0.710585,0.797954,0.698755,0.454744,0.236713,0.156506,0.0584103,0.438233,0.942127,0.313668,0.917055,0.8132,0.340084,0.881846,0.699729,0.230147,0.815802,0.934458,0.597463,0.669376,0.0765529,0.560148,0.385993,0.0644173,0.937442,0.867687,0.885699,0.796671,0.95029,0.922361,0.452443,0.0577552,0.132086,0.763469,0.431443,0.00950271,0.182364,0.597871,0.256022,0.431974,0.304606,0.0642294,0.215144,0.0720031,0.98231,0.583815,0.61677,0.614699,0.181416,0.573332,0.166224,0.855021,0.0864326,0.349772,0.337734,0.759541,0.718085,0.111588,0.588591,0.61166,0.61532,0.988736,0.28573,0.707858,0.966029,0.184264,0.231216,0.435246,0.846428,0.0707262,0.576546,0.7183,0.451387,0.701554,0.83052,0.387522,0.363639,0.213726,0.649445,0.293068,0.852667,0.113734,0.951266,0.858257,0.921034,0.172841,0.00912857,0.0494813,0.892167,0.347649,0.651294,0.133435,0.838175,0.695159,0.71019,0.359403,0.661967,0.348359,0.574989,0.19457,0.919897,0.982678,0.683489,0.0671983,0.227015,0.712321,0.965414,0.865508,0.517967,0.828986,0.0652664,0.990478,0.438799,0.24439,0.88672,0.848183,0.721378,0.54179,0.699397,0.344474,0.173057,0.979145,0.316181,0.4085,0.174673,0.269029,0.542145,0.907026,0.0814346,0.0641626,0.554309,0.79973,0.109942,0.711268,0.471382,0.40893,0.469074,0.0625252,0.937973,0.54178,0.217652,0.411167,0.799594,0.875691,0.164828,0.65533,0.363229,0.637732,0.952802,0.890175,0.216934,0.974691,0.641651,0.972199,0.181893,0.613253,0.0700853,0.2653,0.430915,0.0298644,0.0383077,0.0209461,0.63776,0.354528,0.574493,0.204189,0.589158,0.0253291,0.806263,0.252949,0.433576,0.2101,0.954364,0.972385,0.610287,0.812621,0.82009,0.416347,0.616467,0.38901,0.892065,0.830316,0.934784,0.0223089,0.126074,0.539292,0.504865,0.306318,0.0100697,0.666984,0.694177,0.228919,0.789311,0.203082,0.703582,0.999813,0.946803,0.981801,0.511943,0.956233,0.127403,0.587748,0.815952,0.0738397,0.168391,0.519009,0.716539,0.0241474,0.538663,0.092548,0.442704,0.113562,0.615501,0.300561,0.255099,0.0145915,0.688904,0.46363,0.760661,0.920642,0.834499,0.720223,0.575738,0.750585,0.651119,0.428001,0.0510867,0.819673,0.963315,0.205708,0.641905,0.316457,0.56759,0.660745,0.218426,0.035601,0.705789,0.0837153,0.748556,0.965059,0.648828,0.997325,0.450437,0.977402,0.542631,0.381301,0.2626,0.0461911,0.800051,0.491731,0.789694,0.733949,0.41821,0.0964293,0.544854,0.796216,0.476608,0.106331,0.0165712,0.0208387,0.211487,0.41991,0.783445,0.574365,0.721721,0.0529089,0.146966,0.48555,0.690889,0.856847,0.19507,0.920428,0.504867,0.152125,0.683714,0.91421,0.338506,0.373932,0.00862086,0.55535,0.454805,0.18349,0.871292,0.791871,0.761464,0.53507,0.0252118,0.479001,0.394164,0.112017,0.871586,0.420683,0.534093,0.986862,0.500024,0.875981,0.164174,0.643028,0.649133,0.00565058,0.823906,0.533611,0.514924,0.655304,0.931782,0.63824,0.866794,0.0580831,0.147819,0.618866,0.937083,0.271824,0.631825,0.0327247,0.0474377,0.238043,0.735444,0.164776,0.961993,0.317609,0.961555,0.332881,0.504058,0.799459,0.955047,0.213535,0.168932,0.88177,0.460694,0.503266,0.976443,0.289372,0.756084,0.188191,0.352979,0.323952,0.431454,0.524223,0.184872,0.538735,0.216478,0.862791,0.21699,0.0707967,0.806486,0.345953,0.583465,0.662299,0.837194,0.841384,0.435946,0.278836,0.0396638,0.491421,0.870724,0.530959,0.224759,0.214571,0.194871,0.640802,0.191077,0.951182,0.739495,0.280859,0.731008,0.419502,0.492636,0.74594,0.19001,0.556356,0.971331,0.0564589,0.868141,0.687921,0.763019,0.481312,0.37298,0.648674,0.537943,0.162343,0.89031,0.88622,0.165637,0.361684,0.96123,0.982434,0.0504091,0.136209,0.353771,0.0442706,0.742461,0.146497,0.785459,0.0225071,0.642605,0.436263,0.880399,0.487164,0.729567,0.381283,0.245282,0.536209,0.912594,0.365322,0.0773044,0.017298,0.250933,0.99995,0.10447,0.979516,0.289882,0.874435,0.161099,0.590532,0.715655,0.561818,0.799603,0.240859,0.0092392,0.129582,0.792556,0.64352,0.600864,0.247595,0.774697,0.108213,0.993132,0.0860623,0.915555,0.302838,0.671989,0.185911,0.812274,0.0351844,0.759809,0.547856,0.194429,0.00512511,0.0903124,0.451741,0.427662,0.457359,0.384577,0.208821,0.0136403,0.410284,0.822435,0.204586,0.49191,0.243695,0.510125,0.966564,0.627009,0.239566,0.33424,0.572801,0.517545,0.538254,0.552404,0.00110233,0.801161,0.617626,0.282358,0.843195,0.924738,0.563222,0.41319,0.585401,0.288097,0.0927449,0.109169,0.969149,0.619543,0.191177,0.514025,0.280949,0.998807,0.5932,0.490551,0.842286,0.801444,0.316427,0.528709,0.213629,0.616444,0.918352,0.302248,0.45623,0.610958,0.293921,0.63517,0.937527,0.246377,0.753446,0.288412,0.570143,0.809563,0.579108,0.850656,0.222396,0.136785,0.0999283,0.45236,0.0899214,0.603367,0.827663,0.767494,0.38905,0.202836,0.016473,0.174384,0.726859,0.265114,0.500856,0.491264,0.812537,0.698508,0.777249,0.716255,0.652453,0.293578,0.333576,0.196648,0.641814,0.085496,0.65095,0.266274,0.284907,0.462465,0.0745494,0.915409,0.527415,0.161391,0.0392302,0.721398,0.532098,0.504968,0.271922,0.665067,0.777599,0.729247,0.32312,0.315685,0.474877,0.152419,0.831355,0.933473,0.0143984,0.244182,0.219938,0.1147,0.834911,0.242905,0.257424,0.0706767,0.603779,0.792438,0.185314,0.431175,0.677033,0.263159,0.52558,0.417167,0.111262,0.640379,0.900854,0.380277,0.800204,0.0644239,0.0133538,0.517084,0.619443,0.537913,0.1653,0.749586,0.378147,0.975514,0.00835723,0.673099,0.0501726,0.984613,0.141687,0.411691,0.753401,0.208243,0.116162,0.842646,0.472465,0.490168,0.272698,0.80241,0.391584,0.645503,0.797796,0.752334,0.795324,0.872703,0.0511863,0.0894552,0.497563,0.574574,0.9911,0.653191,0.348944,0.167267,0.717257,0.892956,0.417746,0.472619,0.702518,0.317927,0.0394206,0.331357,0.642667,0.395157,0.76848,0.530297,0.479504,0.197088,0.672328,0.754407,0.166464,0.503435,0.642067,0.63293,0.0492945,0.555606,0.567409,0.181086,0.308933,0.570127,0.606266,0.607066,0.631845,0.169995,0.526548,0.558603,0.94754,0.228546,0.965904,0.570635,0.848691,0.577367,0.407254,0.990162,0.236724,0.888497,0.43382,0.0594524,0.0720826,0.512362,0.860848,0.161762,0.617658,0.251417,0.730652,0.0486068,0.362042,0.0393337,0.510775,0.968549,0.716677,0.244276,0.459106,0.488443,0.132386,0.496664,0.380211,0.334458,0.125021,0.298741,0.221646,0.553071,0.4464,0.738435,0.732812,0.376536,0.829518,0.980876,0.912229,0.157279,0.669751,0.459606,0.460863,0.0194311,0.96126,0.153902,0.0766506,0.287372,0.510965,0.295014,0.943859,0.0597939,0.65231,0.142253,0.431979,0.360203,0.613706,0.356136,0.959455,0.0812959,0.979804,0.50486,0.293719,0.217573,0.259539,0.878257,0.630338,0.84937,0.546506,0.725018,0.0427955,0.848631,0.822085,0.212996,0.049873,0.743061,0.112312,0.990152,0.489375,0.538069,0.0369372,0.0348995,0.05348,0.561916,0.522117,0.59903,0.350198,0.208796,0.995081,0.753813,0.467909,0.970656,0.923478,0.714889,0.286501,0.171895,0.186561,0.0207757,0.778357,0.125919,0.889125,0.635173,0.141429,0.0907147,0.26494,0.213272,0.59773,0.687019,0.592578,0.867372,0.990757,0.707168,0.098453,0.313836,0.562501,0.937061,0.735159,0.248189,0.568552,0.883651,0.849727,0.321285,0.430065,0.724554,0.512807,0.0537189,0.962169,0.284405,0.521916,0.509202,0.614412,0.814977,0.762856,0.329006,0.0999327,0.308089,0.595338,0.264053,0.552558,0.155625,0.802156,0.752232,0.725068,0.11895,0.336377,0.32543,0.116271,0.230369,0.727028,0.969908,0.230065,0.311802,0.369078,0.152843,0.793133,0.471726,0.968252,0.835376,0.351872,0.0378692,0.525887,0.837685,0.617864,0.273077,0.87868,0.88225,0.256177,0.931684,0.498733,0.742908,0.934847,0.0921707,0.870474,0.0437753,0.421959,0.639745,0.488141,0.062618,0.704591,0.440769,0.0648677,0.770965,0.0221934,0.341534,0.544646,0.323327,0.185855,0.978247,0.382875,0.200532,0.0314222,0.263314,0.219529,0.837484,0.70678,0.960875,0.834586,0.0101123,0.471198,0.905183,0.583069,0.611572,0.35546,0.509172,0.570335,0.658313,0.0605921,0.764009,0.753561,0.620054,0.946361,0.842104,0.599914,0.508865,0.566862,0.425135,0.822255,0.120486,0.336039,0.261024,0.00768143,0.691189,0.884502,0.45964,0.12473,0.552308,0.284448,0.080435,0.317542,0.9009,0.59146,0.474047,0.606992,0.581157,0.426158,0.530032,0.703761,0.556965,0.504678,0.833168,0.593302,0.377964,0.064605,0.831013,0.196199,0.729938,0.646821,0.852965,0.801758,0.597429,0.849549,0.347437,0.357977,0.822771,0.0879902,0.383228,0.50274,0.500725,0.0732934,0.162239,0.468935,0.375711,0.645075,0.622587,0.593036,0.461956,0.61305,0.455403,0.306701,0.456517,0.865214,0.339235,0.177117,0.5019,0.00742859,0.512087,0.920568,0.192386,0.683502,0.791613,0.600242,0.852788,0.229572,0.523655,0.226619,0.221414,0.343655,0.529494,0.911259,0.537197,0.499837,0.665337,0.0608623,0.304336,0.208951,0.495809,0.428503,0.457237,0.845957,0.934662,0.174328,0.408028,0.18042,0.684325,0.6297,0.745685,0.327337,0.307835,0.900101,0.2659,0.691692,0.575837,0.056059,0.986156,0.598484,0.726719,0.713077,0.41277,0.84523,0.89278,0.690135,0.199997,0.315848,0.646638,0.593036,0.397197,0.0543642,0.308856,0.757258,0.341608,0.984134,0.672059,0.239689,0.698091,0.347359,0.726153,0.881049,0.358671,0.4308,0.516595,0.85577,0.0835462,0.281897,0.336907,0.994394,|0.876302,0.798774,0.853994,0.700674,0.561819,0.114862,0.672408,0.976614,0.741669,0.603293,0.702369,0.472448,0.792595,0.102768,0.338677,0.36071,0.232625,0.599663,0.951482,0.0578191,0.678568,0.457122,0.0108964,0.293962,0.803012,0.00129944,0.0925638,0.311895,0.0397391,0.74506,0.242441,0.903964,0.901116,0.0640585,0.248459,0.632065,0.0733613,0.0579388,0.45545,0.11414,0.925253,0.00287926,0.37347,0.635113,0.0363442,0.0397504,0.808844,0.88874,0.696912,0.770031,0.0667763,0.734098,0.827215,0.320502,0.814152,0.322353,0.761554,0.837956,0.62539,0.365099,0.231356,0.512136,0.120515,0.959271,0.585367,0.749357,0.0202917,0.0702254,0.107453,0.655988,0.886616,0.960788,0.398723,0.100156,0.569515,0.364724,0.0158786,0.200726,0.638749,0.935871,0.0891279,0.729338,0.392136,0.800153,0.421332,0.514705,0.848181,0.462575,0.602574,0.499642,0.767321,0.662127,0.544963,0.439206,0.830133,0.51202,0.679491,0.45793,0.84658,0.286924,0.315007,0.22971,0.215936,0.848266,0.527748,0.851099,0.204183,0.680891,0.727751,0.689421,0.0991656,0.648338,0.893,0.334131,0.609724,0.837702,0.537116,0.259045,0.689564,0.668491,0.597602,0.692332,0.310394,0.401845,0.369109,0.73279,0.812708,0.798171,0.937842,0.57762,0.345097,0.0503927,0.251484,0.189753,0.357622,0.164092,0.56892,0.27298,0.414399,0.188901,0.0935746,0.919656,0.0425916,0.00164419,7.89762e-05,0.17152,0.0484072,0.553349,0.673594,0.719497,0.797525,0.762417,0.684421,0.976,0.327714,0.303067,0.330234,0.0626483,0.785053,0.0212017,0.91265,0.0193197,0.873444,0.440644,0.47537,0.0320891,0.553502,0.858287,0.604314,0.0461624,0.578503,0.270558,0.892933,0.58133,0.642551,0.402379,0.500117,0.45853,0.086951,0.37622,0.649635,0.304582,0.753992,0.211587,0.566278,0.387026,0.94904,0.0341216,0.243029,0.167059,0.998538,0.978561,0.922231,0.542676,0.894273,0.497791,0.468499,0.849694,0.234139,0.678256,0.177844,0.00167823,0.555599,0.94629,0.133401,0.139338,0.306815,0.565107,0.737558,0.232372,0.274103,0.0913647,0.433261,0.21179,0.801186,0.412265,0.981199,0.802247,0.922868,0.506607,0.121268,0.741358,0.050401,0.312815,0.137923,0.793873,0.862431,0.394557,0.881556,0.486203,0.888678,0.972878,0.371342,0.987031,0.0962608,0.668548,0.700847,0.634744,0.746622,0.897608,0.833892,0.71911,0.539467,0.446364,0.719746,0.860503,0.947911,0.969738,0.665783,0.721298,0.664349,0.791778,0.393653,0.33137,0.185205,0.638463,0.0897431,0.645872,0.805613,0.876392,0.255825,0.81015,0.0333627,0.524983,0.339298,0.126998,0.0532995,0.835937,0.84162,0.414021,0.362492,0.922015,0.402623,0.368724,0.104334,0.682033,0.608387,0.161768,0.27702,0.876855,0.956456,0.535284,0.256276,0.715525,0.0928317,0.542832,0.842299,0.978464,0.158014,0.561803,0.0118256,0.236213,0.233373,0.54183,0.042718,0.661601,0.759519,0.91787,0.255108,0.0278193,0.569057,0.0535911,0.85754,0.83972,0.448267,0.820475,0.243052,0.534275,0.502118,0.635835,0.583929,0.445478,0.0526763,0.882087,0.655477,0.822254,0.828126,0.52763,0.111221,0.555772,0.585936,0.0502679,0.111784,0.0339632,0.173814,0.254674,0.883047,0.299787,0.0182858,0.429046,0.0311443,0.578815,0.967306,0.375964,0.783832,0.495368,0.90798,0.990383,0.0832,0.232875,0.824409,0.523569,0.517356,0.31917,0.493803,0.698341,0.889028,0.496927,0.561621,0.413321,0.821797,0.441031,0.665057,0.28709,0.933275,0.691008,0.727665,0.386669,0.26585,0.384041,0.470116,0.286065,0.686253,0.185909,0.806367,0.427256,0.546548,0.352385,0.829022,0.360655,0.262483,0.375084,0.174863,0.252603,0.821251,0.329133,0.393144,0.652955,0.275799,0.0861194,0.388005,0.568241,0.0488583,0.955597,0.797805,0.401384,0.0998889,0.710164,0.9309,0.52844,0.340694,0.0589394,0.182296,0.750873,0.478879,0.0843335,0.802156,0.567245,0.718862,0.22194,0.179129,0.549369,0.81729,0.411846,0.93026,0.0582479,0.151595,0.482242,0.632835,0.705821,0.741034,0.498356,0.288852,0.72011,0.804741,0.136442,0.612184,0.950909,0.850657,0.412383,0.450709,0.222156,0.0687239,0.264913,0.109451,0.390097,0.719179,0.80483,0.305862,0.614133,0.791368,0.0417528,0.827364,0.428152,0.884274,0.973213,0.941155,0.718326,0.424505,0.797843,0.465599,0.0338175,0.137247,0.375408,0.423034,0.807388,0.751537,0.862998,0.480085,0.881465,0.784159,0.777625,0.623187,0.0815539,0.269939,0.443442,0.00372231,0.669455,0.565629,0.0799679,0.583526,0.752208,0.0296052,0.302747,0.194299,0.882976,0.0663331,0.00289398,0.218326,0.973549,0.52254,0.00796849,0.309867,0.471948,0.217499,0.138068,0.133264,0.660527,0.420839,0.665682,0.457093,0.472717,0.680401,0.414992,0.216757,0.606587,0.179489,0.825888,0.041167,0.155487,0.736154,0.31336,0.506023,0.531174,0.543676,0.14069,0.562276,0.201582,0.242734,0.977931,0.475237,0.409191,0.743114,0.468727,0.943442,0.0423562,0.827617,0.301007,0.164662,0.0960157,0.440493,0.562801,0.792232,0.490669,0.17035,0.662823,0.624845,0.176151,0.125357,0.785976,0.482147,0.258933,0.523222,0.698477,0.800477,0.450788,0.150805,0.916066,0.0281112,0.361096,0.95958,0.662783,0.0322267,0.428967,0.318303,0.0952028,0.497365,0.23274,0.027457,0.52703,0.0251259,0.199346,0.953955,0.458147,0.107514,0.804011,0.524491,0.30695,0.642063,0.0617748,0.65324,0.534654,0.289281,0.619213,0.00988913,0.338175,0.286696,0.315383,0.639604,0.13144,0.930861,0.190244,0.412105,0.596618,0.870788,0.263684,0.922473,0.187603,0.488421,0.826256,0.711601,0.020003,0.529609,0.165616,0.920225,0.645835,0.483233,0.819775,0.500027,0.981834,0.490854,0.140615,0.0705754,0.969287,0.58706,0.302386,0.0507243,0.324678,0.126369,0.256,0.638894,0.616801,0.0333385,0.0923783,0.962575,0.705144,0.0815802,0.364978,0.714538,0.141913,0.276459,0.817351,0.250478,0.500934,0.625274,0.560585,0.0448814,0.222094,0.729081,0.652896,0.0346997,0.748028,0.872302,0.424619,0.859713,0.442101,0.0644634,0.433938,0.772168,0.834709,0.684436,0.912457,0.121976,0.060028,0.315783,0.819839,0.0945754,0.894758,0.725441,0.00674731,0.856914,0.00629425,0.235362,0.759329,0.61456,0.88258,0.607502,0.658129,0.87166,0.435497,0.447005,0.000470161,0.60076,0.521934,0.0164909,0.549996,0.635605,0.684247,0.228766,0.932473,0.167498,0.703388,0.0116663,0.246012,0.690703,0.815016,0.667835,0.328922,0.844106,0.122877,0.393532,0.705892,0.963018,0.591195,0.774854,0.808514,0.469994,0.406814,0.98871,0.221743,0.441449,0.661224,0.81297,0.305217,0.303125,0.53605,0.97678,0.897058,0.2223,0.138266,0.487831,0.649715,0.298159,0.277784,0.250725,0.00416362,0.708582,0.301908,0.474144,0.781039,0.525336,0.327385,0.262448,0.134133,0.406879,0.074374,0.603158,0.804166,0.454979,0.74207,0.214667,0.608468,0.96298,0.809531,0.756507,0.456876,0.292078,0.369791,0.34888,0.0128168,0.479134,0.0439374,0.734007,0.0567269,0.824391,0.538546,0.633415,0.0827488,0.740525,0.735706,0.182443,0.417006,0.877609,0.359278,0.134232,0.548542,0.611417,0.962771,0.965852,0.938546,0.389881,0.106836,0.667415,0.983137,0.090767,0.60645,0.559748,0.42392,0.878958,0.0562065,0.421593,0.429833,0.220229,0.351761,0.978477,0.182426,0.90683,0.4029,0.736143,0.501455,0.814878,0.489233,0.836368,0.183072,0.0369603,0.0630247,0.670413,0.238145,0.612957,0.018952,0.544851,0.893654,0.799048,0.468036,0.735674,0.376231,0.0994909,0.184604,0.912262,0.970258,0.059786,0.376819,0.32505,0.342906,0.316327,0.332896,0.0450836,0.0711211,0.152253,0.620234,0.735004,0.932545,0.25158,0.665263,0.0960374,0.803098,0.530534,0.514032,0.961057,0.0568736,0.743138,0.163333,0.145715,0.611047,0.623831,0.661755,0.202653,0.924632,0.987804,0.626832,0.292179,0.140866,0.931378,0.365546,0.14118,0.435591,0.916767,0.982987,0.131615,0.649951,0.272103,0.0306478,0.183338,0.230278,0.191149,0.583718,0.932047,0.161701,0.332919,0.298014,0.749251,0.0133176,0.370722,0.119328,0.83575,0.455499,0.290925,0.858693,0.457904,0.0843764,0.676834,0.893251,0.858242,0.930317,0.442952,0.843223,0.0634758,0.69688,0.769016,0.0732975,0.272467,0.614829,0.19476,0.552578,0.703982,0.597717,0.822879,0.937129,0.0275873,0.108067,0.749052,0.255875,0.161299,0.455479,0.0984464,0.289769,0.487407,0.591613,0.244353,0.798354,0.774152,0.527327,0.478379,0.0383454,0.0233667,0.00999302,0.875937,0.319651,0.038694,0.904585,0.111417,0.981956,0.15187,0.441506,0.935771,0.424138,0.832248,0.879624,0.556665,0.247019,0.343846,0.894543,0.57966,0.393533,0.00934553,0.423932,0.766127,0.421462,0.659872,0.0214908,0.9551,0.810134,0.836195,0.26408,0.482434,0.884486,0.464531,0.00286227,0.351773,0.306993,0.861885,0.461299,0.668942,0.254707,0.417584,0.801084,0.417013,0.217606,0.542384,0.309765,0.456814,0.556751,0.794246,0.612334,0.608591,0.730318,0.978491,0.895784,0.265463,0.188858,0.0719603,0.554207,0.315514,0.521669,0.522536,0.698829,0.680857,0.574953,0.558445,0.97877,0.87563,0.449093,0.722416,0.627439,0.664233,0.765858,0.632578,0.233294,0.717052,0.589542,0.74794,0.42194,0.103704,0.0450037,0.230271,0.799368,0.399148,0.678353,0.032662,0.392734,0.870972,0.187242,0.219847,0.392579,0.804176,0.307511,0.864172,0.392799,0.846602,0.458517,0.239482,0.684901,0.892511,0.464725,0.816215,0.590063,0.192656,0.622136,0.357637,0.298737,0.910664,0.169537,0.890026,0.510755,0.606911,0.233675,0.627407,0.60655,0.198712,0.532463,0.914211,0.513874,0.471157,0.274674,0.0098021,0.418064,0.95062,0.362302,0.981705,0.0667731,0.0581429,0.442746,0.793423,0.00209612,0.104323,0.845758,0.811149,0.014653,0.435375,0.267705,|0.579448,0.295552,0.337929,0.391531,0.808842,0.556157,0.562393,0.125899,0.43786,0.890372,0.31578,0.653835,0.793933,0.657322,0.0368531,0.0270762,0.311792,0.990413,0.899916,0.296836,0.774865,0.257546,0.00569153,0.449812,0.480382,0.509234,0.967923,0.541377,0.145362,0.96296,0.276882,0.000632465,0.344528,0.90044,0.521419,0.704104,0.410477,0.128976,0.122493,0.117224,0.719427,0.330585,0.4155,0.986783,0.406706,0.0615687,0.40932,0.580015,0.346456,0.155038,0.159493,0.582793,0.930086,0.623279,0.00718147,0.193381,0.291816,0.162578,0.0804766,0.928872,0.63588,0.88183,0.231602,0.529253,0.573689,0.705111,0.531778,0.809639,0.155949,0.600564,0.455066,0.521121,0.401256,0.103816,0.380502,0.869117,0.223174,0.440322,0.152755,0.411398,0.354978,0.892668,0.188005,0.132113,0.947226,0.916197,0.59933,0.148803,0.453868,0.377143,0.371226,0.442752,0.210993,0.145772,0.651348,0.275391,0.633421,0.16522,0.840657,0.0429488,0.424107,0.667601,0.73928,0.825386,0.0691679,0.494261,0.654047,0.0110273,0.827401,0.456699,0.607451,0.0572606,0.34243,0.345506,0.146831,0.87003,0.00223684,0.249545,0.135708,0.223467,0.0411438,0.913538,0.929199,0.448126,0.998003,0.632004,0.672561,0.334475,0.054302,0.155774,0.728407,0.897625,0.514287,0.557441,0.626354,0.929179,0.391733,0.981818,0.336618,0.865782,0.325739,0.945396,0.984644,0.35791,0.413805,0.634885,0.0239921,0.531706,0.847608,0.288101,0.380789,0.503088,0.134133,0.540708,0.757122,0.188304,0.0563785,0.0510109,0.049753,0.759301,0.731749,0.771442,0.249039,0.78868,0.971374,0.23633,0.457087,0.573776,0.805924,0.2192,0.532248,0.745567,0.754228,0.162666,0.655999,0.197492,0.54007,0.69765,0.702621,0.46653,0.665871,0.723688,0.761066,0.0460529,0.469617,0.573072,0.488031,0.726036,0.574935,0.373965,0.638255,0.00397283,0.218635,0.376958,0.711109,0.252834,0.995438,0.961287,0.0907356,0.448098,0.473954,0.470181,0.77739,0.915072,0.530914,0.117473,0.798546,0.569284,0.323269,0.875627,0.935256,0.255266,0.474112,0.70491,0.33168,0.892982,0.405481,0.598503,0.793057,0.346311,0.0219949,0.0987962,0.454695,0.548265,0.0382718,0.41561,0.724312,0.282027,0.272031,0.778908,0.561152,0.327883,0.87059,0.488105,0.419543,0.266443,0.113116,0.621327,0.2009,0.269085,0.364552,0.283068,0.912752,0.450212,0.472071,0.00612408,0.757805,0.20856,0.815257,0.914598,0.441485,0.757204,0.0428766,0.646626,0.447203,0.391118,0.89411,0.216761,0.202053,0.650704,0.753337,0.688876,0.115497,0.986507,0.706376,0.900029,0.278649,0.137976,0.710699,0.34884,0.0247747,0.306004,0.751217,0.803563,0.971372,0.813876,0.662304,0.242408,0.334016,0.152219,0.380443,0.264808,0.614765,0.982118,0.421939,0.182779,0.270967,0.458128,0.211059,0.466503,0.375237,0.465474,0.484994,0.0929053,0.461192,0.137918,0.0492771,0.722391,0.695007,0.855027,0.202755,0.749285,0.24676,0.190626,0.59534,0.704754,0.0705354,0.769171,0.393961,0.385762,0.600945,0.705969,0.108082,0.644578,0.207066,0.543947,0.49135,0.00657701,0.463493,0.689759,0.585013,0.40493,0.376279,0.787344,0.892843,0.0121332,0.74323,0.854185,0.731171,0.616941,0.218542,0.0246656,0.439362,0.162383,0.583684,0.476732,0.317028,0.855334,0.396878,0.839597,0.961465,0.139226,0.915623,0.050034,0.740553,0.911283,0.859837,0.288406,0.390726,0.614616,0.353559,0.235926,0.384698,0.129796,0.106947,0.0902626,0.267884,0.0680219,0.84649,0.696573,0.198819,0.65262,0.407179,0.833891,0.364166,0.79794,0.677139,0.551543,0.0987392,0.0642623,0.18859,0.123855,0.830656,0.382441,0.141582,0.210555,0.333621,0.328505,0.589499,0.176477,0.29319,0.0376879,0.79505,0.310231,0.334952,0.63121,0.255565,0.00521046,0.091774,0.0033465,0.526124,0.478557,0.94023,0.753277,0.910148,0.449898,0.760675,0.355306,0.229501,0.364979,0.53404,0.661137,0.807123,0.136673,0.958473,0.849084,0.332604,0.436224,0.697408,0.311499,0.828059,0.701582,0.222558,0.759571,0.972173,0.690345,0.697832,0.190319,0.634227,0.986421,0.793624,0.651812,0.389235,0.896147,0.444932,0.260819,0.138437,0.869973,0.740186,0.740993,0.772583,0.145551,0.286042,0.266931,0.337798,0.678417,0.118876,0.867348,0.471232,0.79399,0.822898,0.160481,0.39285,0.787052,0.446176,0.276866,0.692686,0.268802,0.911942,0.19117,0.265579,0.981828,0.251088,0.598969,0.489481,0.21549,0.817431,0.240942,0.0146051,0.186136,0.88462,0.147417,0.677386,0.0801252,0.718879,0.433969,0.830797,0.348695,0.15334,0.406872,0.0325604,0.425799,0.131061,0.968255,0.618189,0.543873,0.55896,0.137804,0.267924,0.673534,0.535144,0.706639,0.31,0.863853,0.426555,0.572203,0.215547,0.0940703,0.52245,0.598222,0.180382,0.660279,0.179671,0.582286,0.674455,0.757501,0.854031,0.745366,0.143799,0.687892,0.744428,0.320964,0.484862,0.797463,0.392428,0.237788,0.689822,0.711559,0.54255,0.181218,0.725879,0.00749582,0.00826806,0.55485,0.00969702,0.778439,0.910973,0.740936,0.247637,0.0578195,0.0875113,0.00776947,0.269461,0.803842,0.397552,0.945201,0.253082,0.978592,0.442679,0.488647,0.798257,0.547347,0.361911,0.860793,0.756218,0.978907,0.351795,0.0324402,0.708366,0.934028,0.161226,0.295392,0.308143,0.781104,0.780957,0.645249,0.572051,0.434163,0.443021,0.814348,0.34854,0.277038,0.964991,0.480295,0.208615,0.0964541,0.449013,0.259082,0.796137,0.509806,0.730995,0.633909,0.575221,0.752355,0.33585,0.116944,0.165174,0.918737,0.867508,0.352897,0.821899,0.602348,0.622997,0.599144,0.854252,0.85497,0.756391,0.7413,0.596364,0.745057,0.608418,0.869509,0.247875,0.550533,0.921272,0.987976,0.821916,0.815287,0.611855,0.59066,0.78279,0.540102,0.501948,0.806408,0.803029,0.189509,0.611955,0.256385,0.463933,0.966563,0.152124,0.356181,0.650662,0.0305341,0.69583,0.93943,0.862628,0.848719,0.134499,0.531873,0.65795,0.0951297,0.530501,0.890302,0.921246,0.185421,0.326433,0.80525,0.201099,0.0782166,0.965948,0.516876,0.807574,0.710923,0.783756,0.674595,0.694914,0.501145,0.497777,0.662272,0.434741,0.485077,0.552968,0.434604,0.650624,0.999443,0.519785,0.219374,0.303438,0.690846,0.259458,0.815202,0.451494,0.476258,0.1984,0.18509,0.535044,0.400578,0.913011,0.806522,0.521455,0.383758,0.697737,0.2469,0.152494,0.286766,0.348937,0.209332,0.329369,0.753401,0.41707,0.299638,0.640109,0.0130734,0.444614,0.428253,0.380529,0.374253,0.523506,0.357161,0.3147,0.103691,0.898843,0.603997,0.506609,0.127825,0.875317,0.311878,0.0417593,0.759267,0.0278733,0.00536412,0.985443,0.804061,0.404257,0.613711,0.428514,0.376353,0.972662,0.894968,0.316202,0.235182,0.64093,0.186426,0.791245,0.965361,0.716299,0.270872,0.0436696,0.929776,0.708017,0.578543,0.534931,0.884569,0.696203,0.139007,0.679289,0.209174,0.265191,0.0119681,0.317538,0.0667029,0.987513,0.452297,0.0775782,0.841891,0.631557,0.705057,0.318222,0.98669,0.267945,0.334999,0.0965682,0.676111,0.316828,0.430927,0.802324,0.686547,0.603879,0.784607,0.00764847,0.220667,0.321496,0.864875,0.72366,0.701722,0.576666,0.028522,0.197913,0.610337,0.452496,0.836871,0.684859,0.939575,0.696456,0.327227,0.750064,0.934595,0.630569,0.691734,0.366389,0.673608,0.0303658,0.19757,0.0428972,0.211308,0.395119,0.991741,0.647384,0.755091,0.88463,0.358156,0.811354,0.0430748,0.536808,0.761677,0.124448,0.444917,0.328742,0.805745,0.605659,0.0208108,0.239823,0.0323062,0.835114,0.972881,0.991479,0.792491,0.844246,0.444321,0.0286828,0.389701,0.682953,0.420012,0.778734,0.780905,0.457265,0.390401,0.310156,0.730527,0.321109,0.300667,0.185225,0.676364,0.978421,0.186332,0.372401,0.90713,0.398862,0.0926684,0.835207,0.295195,0.724705,0.142826,0.87022,0.764547,0.610511,0.188873,0.164061,0.102737,0.266213,0.928935,0.00323421,0.966896,0.958977,0.106947,0.808202,0.886001,0.505105,0.607209,0.455851,0.0680408,0.551555,0.380006,0.295976,0.240266,0.20741,0.803045,0.553644,0.293864,0.342387,0.221791,0.75886,0.637721,0.755418,0.0839359,0.486328,0.00207567,0.375848,0.653073,0.9184,0.824812,0.285519,0.0070132,0.79423,0.0967541,0.858782,0.300822,0.0729984,0.519516,0.383958,0.636038,0.718925,0.420712,0.0385005,0.457999,0.644193,0.518056,0.57818,0.653106,0.00639278,0.0897878,0.562489,0.206627,0.937906,0.376239,0.0706048,0.0752311,0.953114,0.22092,0.19443,0.551922,0.463392,0.385434,0.653477,0.818699,0.00391316,0.119674,0.889553,0.762924,0.657654,0.303219,0.32211,0.224384,0.92361,0.79372,0.331854,0.253083,0.990104,0.0464191,0.386647,0.802373,0.155678,0.570858,0.52643,0.593271,0.317298,0.58587,0.192168,0.489136,0.828095,0.405797,0.4446,0.694603,0.207713,0.144506,0.268549,0.981537,0.0536771,0.999458,0.270429,0.467692,0.275704,0.988826,0.530101,0.357371,0.442032,0.317711,0.134796,0.495898,0.696322,0.908703,0.181697,0.589627,0.867875,0.31194,0.80031,0.2474,0.636199,0.749845,0.568943,0.390556,0.928763,0.348395,0.901709,0.486306,0.320754,0.761166,0.454925,0.628643,0.776968,0.320212,0.982286,0.351545,0.472751,0.755762,0.0460152,0.122608,0.984989,0.677745,0.312993,0.844971,0.571872,0.00142616,0.515861,0.111729,0.723055,0.086193,0.838763,0.642188,0.83344,0.806505,0.390015,0.672359,0.108996,0.568447,0.744735,0.462202,0.29853,0.453511,0.828514,0.772668,0.955575,0.509715,0.584473,0.528905,0.653823,0.0098055,0.465865,0.781046,0.268554,0.0632128,0.892311,0.597413,0.723962,0.528083,0.172174,0.307329,0.071031,0.911541,0.790614,0.92701,0.597962,0.257373,0.785675,0.0680403,0.489581,0.336868,0.334152,0.984378,|0.126416,0.937663,0.711291,0.857755,0.962941,0.262757,0.684278,0.575185,0.244371,0.453821,0.893423,0.730697,0.220449,0.218303,0.240753,0.374636,0.368572,0.0382037,0.485649,0.016518,0.133909,0.932566,0.757161,0.658974,0.951683,0.395749,0.477145,0.00847179,0.383641,0.184253,0.233607,0.129924,0.368453,0.673006,0.891905,0.0273815,0.995744,0.222827,0.603226,0.615768,0.624499,0.0153129,0.00808877,0.254681,0.313123,0.409169,0.75456,0.0878594,0.865539,0.499319,0.879936,0.486984,0.787573,0.521037,0.0504196,0.287919,0.537355,0.260593,0.626489,0.699462,0.432372,0.183594,0.918083,0.785549,0.0876223,0.38502,0.272635,0.175918,0.968782,0.187739,0.192166,0.791668,0.853313,0.370011,0.27851,0.823412,0.976526,0.0916161,0.386713,0.781029,0.462511,0.65532,0.552968,0.00304216,0.0804681,0.552517,0.577373,0.0922479,0.688774,0.810135,0.035961,0.272264,0.410509,0.449004,0.17055,0.143459,0.23396,0.361769,0.757771,0.398533,0.306458,0.82237,0.52239,0.672159,0.319879,0.241958,0.928975,0.993673,0.643625,0.292869,0.662166,0.386617,0.891024,0.0552885,0.484048,0.152648,0.23559,0.453783,0.26662,0.675277,0.516542,0.784923,0.797605,0.919376,0.434291,0.207221,0.504745,0.102248,0.510059,0.747419,0.578927,0.0458743,0.157482,0.918287,0.198993,0.683942,0.129758,0.650061,0.799424,0.570034,0.232528,0.134556,0.0261712,0.732222,0.027214,0.290037,0.369366,0.346509,0.587413,0.0786219,0.598968,0.585507,0.102945,0.844132,0.412836,0.904972,0.677061,0.160649,0.846465,0.103912,0.541309,0.164321,0.646168,0.305818,0.419786,0.575895,0.732468,0.654543,0.551283,0.228107,0.296931,0.712422,0.926395,0.933692,0.703412,0.804007,0.407264,0.808225,0.11854,0.11639,0.275472,0.532038,0.868148,0.736704,0.590021,0.773731,0.169383,0.47257,0.770209,0.780137,0.134786,0.425074,0.585008,0.709306,0.385409,0.295582,0.0640597,0.167408,0.946437,0.593758,0.645701,0.242754,0.699138,0.598039,0.145386,0.643367,0.870398,0.220345,0.551437,0.292718,0.971773,0.731048,0.230367,0.487574,0.856086,0.451534,0.0573276,0.296954,0.697156,0.541549,0.241669,0.685476,0.831265,0.317037,0.85684,0.268523,0.0495211,0.352652,0.926983,0.170819,0.643211,0.84945,0.91973,0.983644,0.538757,0.365026,0.281928,0.630186,0.965171,0.721945,0.420821,0.991645,0.572737,0.156198,0.623474,0.557565,0.520117,0.974258,0.705088,0.538175,0.752496,0.748221,0.820699,0.33067,0.087847,0.40628,0.17201,0.332456,0.939694,0.0998405,0.595637,0.0539929,0.281817,0.184224,0.699138,0.170889,0.0811607,0.275875,0.206227,0.603424,0.46548,0.190996,0.682682,0.626508,0.401145,0.938492,0.0450608,0.925615,0.499399,0.0973316,0.34683,0.122662,0.73864,0.884185,0.841763,0.649604,0.626602,0.807368,0.804926,0.769898,0.685092,0.095373,0.462623,0.230553,0.339538,0.223748,0.503128,0.268342,0.902544,0.869471,0.893451,0.19327,0.533829,0.91642,0.572415,0.781619,0.63635,0.383311,0.638443,0.155637,0.556245,0.828455,0.46646,0.757338,0.504691,0.764153,0.384296,0.513899,0.938355,0.16679,0.248946,0.501801,0.958335,0.0682616,0.339775,0.376564,0.506898,0.323543,0.308616,0.714474,0.447147,0.710414,0.309904,0.814284,0.636145,0.376203,0.47129,0.014845,0.650658,0.444714,0.044009,0.36708,0.518322,0.952254,0.259466,0.0539743,0.731165,0.66704,0.188604,0.55236,0.887062,0.959963,0.881329,0.559539,0.661764,0.0554602,0.276354,0.285594,0.703692,0.885723,0.336347,0.210775,0.350951,0.332703,0.110704,0.711869,0.617765,0.275557,0.38462,0.301911,0.537214,0.290703,0.608932,0.678086,0.118057,0.294711,0.0949441,0.145993,0.805838,0.306409,0.530774,0.123182,0.645042,0.509872,0.173277,0.583947,0.00381804,0.618706,0.78673,0.1177,0.194148,0.364664,0.313675,0.0870828,0.949506,0.317638,0.815425,0.909002,0.957492,0.326273,0.672796,0.575151,0.856988,0.681884,0.313101,0.194242,0.200847,0.564367,0.256293,0.108083,0.0738156,0.0543934,0.166936,0.938855,0.552251,0.218383,0.816642,0.0676321,0.980693,0.575155,0.32341,0.527472,0.320639,0.306287,0.162089,0.124245,0.963088,0.659346,0.874409,0.217023,0.251758,0.707249,0.422895,0.426526,0.174475,0.731323,0.581221,0.547308,0.638792,0.745558,0.625682,0.163925,0.49666,0.452528,0.0202531,0.13636,0.41378,0.808851,0.447296,0.422931,0.268021,0.209366,0.954767,0.143596,0.738545,0.356991,0.958344,0.0102231,0.976278,0.862028,0.0812299,0.969565,0.851214,0.311489,0.506974,0.0188559,0.564008,0.218254,0.952189,0.510752,0.955471,0.181693,0.738574,0.735174,0.875821,0.324104,0.0077849,0.409023,0.527078,0.977501,0.497015,0.210068,0.757808,0.910099,0.926228,0.250834,0.94651,0.409618,0.0900655,0.0905856,0.586954,0.513947,0.879773,0.0781637,0.164061,0.889884,0.250726,0.688449,0.494929,0.0472825,0.023042,0.756203,0.554622,0.834691,0.554745,0.14677,0.409341,0.576953,0.283798,0.720304,0.637668,0.137525,0.639929,0.569342,0.616092,0.946052,0.945726,0.00697863,0.267835,0.327745,0.580581,0.328942,0.731904,0.0759323,0.281051,0.742859,0.319982,0.548894,0.0553482,0.334277,0.406784,0.813532,0.387778,0.414843,0.103319,0.686563,0.18653,0.379343,0.342072,0.461335,0.201012,0.0222899,0.787562,0.0820819,0.055935,0.401698,0.8332,0.801945,0.297016,0.777274,0.511931,0.702018,0.921565,0.0526203,0.358425,0.854884,0.222488,0.83308,0.185899,0.600515,0.442597,0.21816,0.344984,0.677467,0.763151,0.654762,0.330822,0.480859,0.00560659,0.472954,0.867084,0.0510035,0.10131,0.695965,0.287145,0.31768,0.934637,0.689522,0.366818,0.417581,0.739806,0.898196,0.613985,0.903878,0.339533,0.315201,0.143393,0.470089,0.450727,0.742418,0.218936,0.959812,0.0710385,0.948161,0.0878612,0.95152,0.406822,0.534587,0.323318,0.470403,0.615558,0.117105,0.757552,0.798292,0.862639,0.94102,0.695054,0.417956,0.935911,0.12718,0.89111,0.974044,0.927683,0.420669,0.26181,0.87312,0.571995,0.211978,0.176826,0.020807,0.462311,0.155559,0.452257,0.597378,0.763351,0.328869,0.00260609,0.180573,0.384556,0.149887,0.124276,0.929284,0.0231903,0.494869,0.323624,0.714513,0.720565,0.685921,0.0544505,0.928794,0.326431,0.60615,0.2855,0.0243707,0.196784,0.723429,0.648747,0.349856,0.318555,0.807255,0.883494,0.301261,0.569933,0.0849562,0.182573,0.152096,0.476566,0.726019,0.683846,0.8244,0.617847,0.622272,0.796972,0.22342,0.558506,0.487184,0.428386,0.300372,0.948159,0.231967,0.349245,0.934027,0.828072,0.318345,0.576077,0.302769,0.473638,0.0562877,0.693495,0.61315,0.254699,0.787268,0.346649,0.102185,0.615064,0.327789,0.421399,0.980684,0.954686,0.461771,0.323918,0.688545,0.825662,0.697596,0.230504,0.123811,0.541454,0.654848,0.496956,0.0380927,0.782095,0.207506,0.27887,0.0378848,0.201172,0.389471,0.185231,0.0279651,0.197332,0.413138,0.0884104,0.246235,0.461853,0.288569,0.432179,0.62396,0.509602,0.712723,0.785586,0.767891,0.608984,0.510661,0.192533,0.31676,0.487329,0.00618708,0.885435,0.840199,0.303132,0.521095,0.935716,0.081508,0.822898,0.300132,0.925798,0.116575,0.667711,0.652453,0.231597,0.0923988,0.059291,0.604053,0.114026,0.559075,0.638645,0.104824,0.0399386,0.656059,0.0959345,0.13846,0.035676,0.981594,0.71031,0.397584,0.00497985,0.817871,0.800191,0.396106,0.542821,0.724037,0.779904,0.955555,0.10692,0.266097,0.686056,0.43204,0.447865,0.386382,0.411314,0.986048,0.407618,0.579699,0.358756,0.84201,0.267665,0.658972,0.088413,0.292033,0.698036,0.225905,0.394609,0.906024,0.934815,0.677101,0.450716,0.350266,0.42478,0.294029,0.592798,0.790607,0.128499,0.202224,0.321918,0.866782,0.999255,0.209544,0.533952,0.742473,0.450539,0.873468,0.470059,0.38292,0.536005,0.93384,0.574853,0.83017,0.4067,0.197514,0.646524,0.587753,0.407771,0.49191,0.941567,0.0425135,0.137225,0.430331,0.598486,0.931181,0.932001,0.45301,0.418167,0.6329,0.393037,0.96285,0.614715,0.800405,0.220823,0.185412,0.187425,0.0697241,0.151545,0.766053,0.74694,0.0593168,0.85351,0.0573838,0.449113,0.157207,0.916451,0.691636,0.230608,0.568332,0.393822,0.471697,0.751794,0.952061,0.66115,0.0235155,0.661765,0.251483,0.315537,0.349816,0.178838,0.0926304,0.282194,0.578937,0.908415,0.364386,0.0117863,0.346587,0.646157,0.30058,0.845517,0.810577,0.364571,0.219678,0.817887,0.649123,0.763592,0.497704,0.103711,0.710439,0.769028,0.586004,0.784481,0.684314,0.346231,0.299693,0.732343,0.347285,0.0823146,0.891519,0.719598,0.537579,0.59947,0.0653144,0.938755,0.601694,0.436381,0.0574281,0.56356,0.664459,0.300222,0.323366,0.829281,0.271405,0.841302,0.145002,0.0649381,0.876303,0.192215,0.566506,0.824482,0.455024,0.171525,0.826397,0.548926,0.0624612,0.606508,0.597637,0.0624437,0.377861,0.346229,0.966395,0.120941,0.707356,0.471065,0.417199,0.531705,0.12732,0.464828,0.640847,0.794587,0.502411,0.78896,0.196796,0.397437,0.658124,0.686661,0.467857,0.71414,0.792583,0.355726,0.878456,0.803071,0.51021,0.917468,0.222249,0.8473,0.941791,0.965648,0.885873,0.316243,0.889221,0.30492,0.328386,0.494384,0.759798,0.18437,0.717354,0.803664,0.701275,0.0157319,0.256544,0.750002,0.169579,0.101239,0.432119,0.544674,0.218557,0.752583,0.872808,0.459595,0.891011,0.881753,0.756462,0.783631,0.11436,0.587037,0.373194,0.688015,0.00867498,0.932497,0.286689,0.646547,0.128127,0.478539,0.198767,0.684347,0.88639,0.855422,0.85249,0.54917,0.897961,0.693974,0.268098,0.750363,0.755194,0.356776,0.604121,0.776245,0.589523,0.122576,0.432806,0.161171,0.514671,0.521331,0.0603269,0.117041,0.379282,|0.0731671,0.0178062,0.993441,0.975087,0.956317,0.736011,0.0674702,0.23448,0.54954,0.639851,0.110995,0.696316,0.0200235,0.0495427,0.671992,0.824462,0.826091,0.855198,0.778943,0.532631,0.651183,0.0212659,0.867991,0.0852041,0.963949,0.344289,0.707362,0.846082,0.216125,0.425465,0.566108,0.83085,0.105578,0.0132608,0.0795754,0.211987,0.564827,0.0936842,0.479166,0.558459,0.27466,0.781293,0.790401,0.468991,0.576944,0.00794339,0.14617,0.941447,0.562136,0.539487,0.980953,0.0322152,0.589587,0.133206,0.879224,0.512004,0.56449,0.995833,0.0870543,0.105982,0.473461,0.0192903,0.634955,0.983707,0.768889,0.4241,0.816358,0.68265,0.802026,0.798317,0.138625,0.196803,0.414644,0.645937,0.441258,0.937752,0.518013,0.524517,0.783741,0.507111,0.90211,0.815537,0.146393,0.820001,0.296416,0.330985,0.533955,0.365209,0.046108,0.34866,0.19517,0.976846,0.0311459,0.108272,0.881074,0.756754,0.728123,0.515752,0.730562,0.605408,0.618699,0.95509,0.493806,0.624222,0.145623,0.870676,0.200203,0.843672,0.943005,0.664616,0.43014,0.586424,0.445434,0.0028314,0.580127,0.974499,0.800192,0.61852,0.0943006,0.390071,0.115778,0.639902,0.553815,0.902413,0.969965,0.622035,0.786688,0.134232,0.129858,0.897792,0.624478,0.877241,0.17835,0.992874,0.700347,0.301148,0.315902,0.843783,0.469269,0.910914,0.262154,0.615334,0.758042,0.252557,0.904137,0.214412,0.700294,0.667325,0.223842,0.986676,0.28085,0.837493,0.843617,0.97802,0.680499,0.0980577,0.727219,0.439552,0.865698,0.964104,0.133358,0.665007,0.146932,0.544761,0.364911,0.621297,0.902357,0.703928,0.977532,0.701067,0.477654,0.599726,0.96021,0.750258,0.548042,0.253606,0.270259,0.18751,0.682835,0.311766,0.0754172,0.99575,0.867085,0.624797,0.455996,0.84591,0.42679,0.556522,0.72582,0.843109,0.574804,0.823899,0.296389,0.436524,0.0448484,0.133028,0.654982,0.357542,0.962968,0.271789,0.211437,0.932384,0.0310107,0.49417,0.0867911,0.664845,0.349493,0.761812,0.264465,0.883762,0.748521,0.29095,0.336199,0.0840868,0.321493,0.357358,0.947909,0.60913,0.451698,0.368757,0.5737,0.0623003,0.40616,0.345491,0.191066,0.0529234,0.716227,0.572057,0.874567,0.102282,0.770998,0.924744,0.210808,0.793288,0.574948,0.29324,0.757335,0.602035,0.761115,0.68314,0.0216523,0.0243628,0.780914,0.471049,0.750201,0.251383,0.730308,0.487218,0.118918,0.266891,0.43663,0.443922,0.103288,0.726221,0.075961,0.662951,0.187967,0.623077,0.692026,0.990331,0.643125,0.493225,0.0647582,0.38117,0.772508,0.428959,0.278758,0.626095,0.502355,0.804218,0.021753,0.473292,0.423411,0.831596,0.840521,0.372921,0.509217,0.377785,0.48511,0.158097,0.287635,0.0320419,0.265928,0.690157,0.0594327,0.923162,0.637884,0.312066,0.036717,0.617121,0.995332,0.96763,0.12715,0.658258,0.921858,0.962907,0.575963,0.802708,0.96228,0.788788,0.341488,0.0110747,0.499927,0.530895,0.213527,0.847506,0.470061,0.159252,0.232806,0.962313,0.706575,0.624122,0.178701,0.0160844,0.187314,0.734005,0.75878,0.0489723,0.626782,0.0504357,0.365159,0.553882,0.897724,0.180743,0.580486,0.774358,0.631605,0.165689,0.538619,0.0630709,0.713122,0.651805,0.0605749,0.947878,0.689573,0.794395,0.284275,0.426045,0.44124,0.738334,0.981387,0.872283,0.197363,0.133437,0.610343,0.134989,0.376244,0.848885,0.234596,0.455284,0.173005,0.508145,0.355611,0.32779,0.985483,0.760526,0.186933,0.810537,0.489468,0.953819,0.238795,0.401983,0.417432,0.250523,0.0304927,0.0175212,0.819315,0.20537,0.501221,0.700538,0.775078,0.62624,0.342141,0.192227,0.240555,0.392884,0.0620542,0.971751,0.36579,0.103191,0.102546,0.27666,0.243773,0.380138,0.545623,0.887334,0.889841,0.231044,0.512216,0.934088,0.484129,0.982813,0.898823,0.817456,0.138604,0.376534,0.725412,0.491436,0.398687,0.947407,0.415073,0.320596,0.709018,0.66715,0.605571,0.12821,0.206268,0.335277,0.0340658,0.586091,0.993262,0.752836,0.238799,0.837538,0.853911,0.615112,0.108751,0.324522,0.553414,0.632945,0.880509,0.479074,0.486036,0.360697,0.605147,0.184208,0.586402,0.439832,0.580614,0.035602,0.402327,0.881635,0.837238,0.246624,0.346953,0.238781,0.0171921,0.712468,0.657691,0.171782,0.357034,0.402766,0.127784,0.252204,0.772273,0.978705,0.70136,0.110507,0.0523615,0.802326,0.191139,0.506401,0.998618,0.429772,0.973023,0.325264,0.363665,0.554926,0.235755,0.141243,0.403567,0.127707,0.407747,0.405384,0.742352,0.891221,0.150235,0.599701,0.433712,0.759912,0.0747813,0.765122,0.999901,0.434957,0.726346,0.657028,0.731859,0.97434,0.615304,0.3876,0.267315,0.990905,0.26829,0.938418,0.52154,0.684495,0.104392,0.721972,0.105868,0.999571,0.919469,0.536956,0.931058,0.702029,0.528305,0.470582,0.542085,0.814473,0.511028,0.512512,0.635159,0.341864,0.218709,0.581249,0.245261,0.20221,0.55393,0.00982922,0.793735,0.169275,0.757165,0.258828,0.532729,0.361313,0.47801,0.195768,0.0135113,0.11503,0.773199,0.218675,0.686098,0.927653,0.743271,0.653141,0.941251,0.808743,0.560516,0.754252,0.441789,0.914666,0.0443895,0.237373,0.167992,0.928259,0.675103,0.297446,0.573778,0.114496,0.975966,0.235202,0.618595,0.0925636,0.82759,0.143395,0.111503,0.803496,0.241823,0.448639,0.775231,0.196722,0.596795,0.0826569,0.416709,0.92598,0.605197,0.379775,0.0983872,0.662569,0.840383,0.866578,0.29769,0.676999,0.144772,0.640824,0.640136,0.0759992,0.300429,0.318493,0.704638,0.912226,0.226349,0.49499,0.495474,0.29685,0.462888,0.642328,0.830028,0.369152,0.0468788,0.996644,0.199805,0.932464,0.586056,0.446162,0.162497,0.654958,0.450079,0.0191273,0.750476,0.352437,0.0512455,0.95586,0.791679,0.417319,0.359653,0.791156,0.0759839,0.0735477,0.76753,0.47275,0.0667059,0.584031,0.0549948,0.997966,0.583759,0.46462,0.16805,0.986549,0.382116,0.817726,0.643621,0.946275,0.845805,0.0263725,0.36436,0.167078,0.176155,0.951357,0.4726,0.850268,0.346691,0.686347,0.0131848,0.237922,0.00592977,0.523657,0.341007,0.394338,0.599598,0.49125,0.21652,0.00291228,0.754895,0.471756,0.960681,0.383906,0.355434,0.225876,0.685403,0.932274,0.595726,0.790687,0.126265,0.939017,0.185467,0.800433,0.0610216,0.517351,0.440239,0.569676,0.96038,0.360527,0.323706,0.664035,0.395716,0.223719,0.612665,0.0815462,0.321503,0.541589,0.662509,0.461319,0.805226,0.613328,0.718464,0.0154791,0.391162,0.398333,0.419468,0.967876,0.118007,0.576044,0.881553,0.89226,0.897467,0.331291,0.00220072,0.384023,0.173353,0.022164,0.908892,0.752703,0.720639,0.971668,0.318293,0.711829,0.618267,0.481161,0.908164,0.326083,0.697368,0.927554,0.52377,0.142357,0.602012,0.858362,0.562174,0.179376,0.831205,0.53219,0.773435,0.762829,0.586648,0.782438,0.576759,0.311089,0.905188,0.647068,0.862519,0.604878,0.594864,0.854643,0.406016,0.330349,0.286738,0.556601,0.92179,0.685739,0.780307,0.495109,0.822207,0.634718,0.682158,0.656195,0.41808,0.825484,0.821982,0.11236,0.250178,0.471478,0.497413,0.234668,0.15636,0.357152,0.878509,0.758192,0.303347,0.236382,0.958757,0.93018,0.973208,0.866036,0.331218,0.598053,0.726218,0.846654,0.290534,0.954673,0.510781,0.74433,0.930751,0.125979,0.380694,0.944694,0.982259,0.225787,0.561566,0.177181,0.804713,0.370411,0.0351725,0.489072,0.257951,0.986315,0.654273,0.392713,0.276643,0.502285,0.940809,0.720734,0.128046,0.354933,0.280767,0.366133,0.709776,0.582038,0.969246,0.821492,0.933082,0.0443758,0.0701606,0.0362903,0.0708185,0.66999,0.834057,0.278803,0.388899,0.115763,0.770503,0.251879,0.232217,0.920513,0.332145,0.231673,0.854693,0.926631,0.629044,0.385231,0.89687,0.345767,0.306002,0.0779268,0.279844,0.224265,0.684005,0.282158,0.268146,0.256329,0.16291,0.202007,0.334665,0.312334,0.433293,0.51761,0.669748,0.294132,0.107497,0.450297,0.687736,0.597941,0.791364,0.63615,0.969853,0.0759797,0.375219,0.788473,0.283104,0.541589,0.447607,0.474756,0.696563,0.587981,0.0435146,0.325098,0.0813763,0.284374,0.13384,0.748513,0.24013,0.176811,0.94643,0.21056,0.592768,0.787849,0.170281,0.66411,0.656263,0.154487,0.231877,0.00616378,0.28437,0.80505,0.804377,0.0455151,0.949556,0.0839298,0.769559,0.774436,0.219953,0.859037,0.141814,0.705085,0.243773,0.522171,0.236154,0.994402,0.80782,0.88451,0.610194,0.487912,0.0510192,0.0666828,0.824801,0.479966,0.257613,0.827982,0.614403,0.173287,0.108611,0.481481,0.870626,0.231248,0.790385,0.872892,0.796359,0.600315,0.800717,0.0894432,0.274888,0.0443537,0.45181,0.659965,0.53616,0.746101,0.32013,0.392883,0.261301,0.908732,0.115363,0.67255,0.840722,0.0614608,0.466604,0.528782,0.283726,0.334108,0.320126,0.463071,0.838736,0.645305,0.781591,0.00840664,0.0494267,0.0327753,0.155859,0.217407,0.713246,0.78864,0.624785,0.357733,0.992192,0.706513,0.199347,0.825893,0.455136,0.817462,0.855253,0.93554,0.0732663,0.287579,0.635167,0.408591,0.0412246,0.0251665,0.993075,0.202825,0.531025,0.453652,0.566086,0.0832493,0.887827,0.986762,0.233908,0.64016,0.484331,0.119963,0.189492,0.827526,0.468767,0.34645,0.000116885,0.523874,0.560824,0.237227,0.218928,0.395958,0.626554,0.839648,0.850898,0.00979674,0.923433,0.0999897,0.819398,0.248045,0.657604,0.187392,0.617802,0.391015,0.769493,0.94799,0.172969,0.206263,0.679384,0.705941,0.288872,0.0205851,0.230534,0.647287,0.793734,0.996278,0.5099,0.863737,0.556613,0.986012,0.72162,0.155069,0.801861,0.896958,0.788152,0.647751,0.179816,0.71619,0.0331804,0.827357,0.308631,0.892694,0.655316,0.635135,0.97795,0.647646,|0.211147,0.216994,0.274328,0.154968,0.481365,0.136909,0.527496,0.549309,0.849534,0.807776,0.967075,0.935336,0.550321,0.215933,0.101734,0.89048,0.150062,0.183177,0.540581,0.0764911,0.333407,0.936908,0.98628,0.961063,0.467551,0.701223,0.00555122,0.862688,0.668954,0.9028,0.367036,0.154024,0.868928,0.177999,0.585248,0.502314,0.809485,0.463233,0.727634,0.831428,0.892086,0.262616,0.942554,0.487148,0.833139,0.648743,0.714056,0.0440202,0.760835,0.158314,0.758685,0.352883,0.845837,0.556254,0.617881,0.8916,0.0588313,0.0554357,0.282075,0.0957602,0.0251579,0.630258,0.717096,0.962568,0.74123,0.974741,0.162899,0.398704,0.862317,0.157378,0.0654884,0.289737,0.396761,0.374637,0.174299,0.829163,0.894021,0.2394,0.498301,0.205193,0.418031,0.422124,0.362747,0.197226,0.966005,0.0341246,0.980348,0.387164,0.0448483,0.185601,0.36713,0.593185,0.994478,0.743928,0.889592,0.583511,0.274414,0.0493038,0.860392,0.860942,0.12908,0.50901,0.806019,0.150183,0.00494248,0.355319,0.398129,0.637917,0.627526,0.701991,0.818541,0.341065,0.578114,0.801579,0.0783861,0.515663,0.995749,0.658848,0.530811,0.806566,0.76908,0.380773,0.760666,0.188863,0.838336,0.875256,0.673424,0.153719,0.21995,0.715015,0.399972,0.935128,0.3975,0.427572,0.159675,0.221313,0.716293,0.307833,0.706474,0.88075,0.714194,0.0582026,0.416178,0.386506,0.984053,0.25231,0.128285,0.0379894,0.0330992,0.970698,0.342794,0.382774,0.48926,0.833413,0.734844,0.830921,0.110979,0.773357,0.261956,0.473315,0.0986329,0.396012,0.487404,0.861648,0.492275,0.534677,0.58482,0.258931,0.781272,0.372557,0.323041,0.507022,0.462353,0.286812,0.425001,0.0318298,0.162342,0.470399,0.684832,0.781517,0.64492,0.939852,0.936118,0.352423,0.396285,0.411476,0.314232,0.649262,0.262968,0.53953,0.83361,0.721014,0.275268,0.756814,0.0917244,0.14559,0.271197,0.389307,0.468783,0.427211,0.144559,0.235558,0.138667,0.178367,0.593388,0.661169,0.33998,0.00588208,0.457498,0.505774,0.779611,0.452492,0.412799,0.0736839,0.0118423,0.718599,0.120727,0.690675,0.608556,0.536369,0.50229,0.485113,0.514338,0.394291,0.0168867,0.262775,0.217701,0.775741,0.718116,0.364727,0.853961,0.809568,0.353813,0.881797,0.254258,0.715753,0.307975,0.464785,0.114377,0.486173,0.040773,0.0258658,0.418737,0.786089,0.669291,0.878723,0.417646,0.523089,0.383358,0.322325,0.331028,0.428017,0.214246,0.822554,0.698839,0.123258,0.223356,0.595051,0.72149,0.091215,0.705763,0.925978,0.797052,0.588947,0.272397,0.587825,0.797418,0.047464,0.74968,0.185325,0.316978,0.484739,0.90039,0.953325,0.163312,0.506125,0.494283,0.00711191,0.836801,0.0991123,0.325584,0.0252607,0.655691,0.892425,0.206208,0.298905,0.553789,0.368109,0.762316,0.449989,0.0507542,0.0885231,0.290917,0.975451,0.548915,0.248756,0.635399,0.901919,0.674724,0.69032,0.669541,0.209285,0.377205,0.571767,0.789329,0.766934,0.00852787,0.624851,0.658941,0.774393,0.588089,0.993878,0.0138725,0.0965624,0.101676,0.760951,0.196212,0.581871,0.700185,0.677438,0.973791,0.206411,0.94986,0.595727,0.0706628,0.737333,0.629001,0.723118,0.947785,0.158781,0.602344,0.227648,0.97936,0.0313309,0.671654,0.650061,0.540003,0.523165,0.69816,0.539401,0.0633602,0.344768,0.989246,0.207986,0.267384,0.00582564,0.671271,0.0794246,0.751502,0.69285,0.525748,0.285853,0.122099,0.90888,0.220397,0.939364,0.558341,0.198813,0.726216,0.679642,0.0167297,0.745585,0.377932,0.174974,0.786214,0.93167,0.261265,0.414281,0.389798,0.586755,0.894516,0.891862,0.662447,0.377922,0.221457,0.776346,0.563808,0.880117,0.410761,0.439425,0.232427,0.223917,0.32197,0.106997,0.61005,0.678055,0.378623,0.463401,0.0521297,0.816655,0.701366,0.261828,0.694202,0.652718,0.31432,0.176053,0.0821102,0.260203,0.981609,0.888608,0.0609613,0.101004,0.585388,0.909119,0.790131,0.779372,0.114061,0.469431,0.286449,0.288855,0.726541,0.112349,0.821471,0.984961,0.442193,0.996456,0.43912,0.533181,0.860432,0.828983,0.429468,0.00715882,0.293284,0.905726,0.341936,0.200734,0.680499,0.731473,0.567575,0.0176589,0.817829,0.411106,0.13868,0.86591,0.346009,0.977626,0.204543,0.946059,0.505108,0.727691,0.474685,0.957611,0.358436,0.51141,0.323823,0.610379,0.255151,0.461848,0.604003,0.823011,0.337591,0.972994,0.657726,0.349172,0.598362,0.543852,0.364641,0.115855,0.134208,0.525996,0.311321,0.297948,0.62173,0.357726,0.252927,0.212914,0.830699,0.481374,0.0633699,0.418217,0.508153,0.789376,0.820243,0.743704,0.733233,0.118548,0.632949,0.784153,0.755651,0.353781,0.44914,0.996503,0.143576,0.477871,0.0662668,0.591182,0.99655,0.361019,0.038968,0.191389,0.727165,0.540151,0.62999,0.777476,0.693389,0.681472,0.746382,0.659568,0.509121,0.218424,0.0931807,0.382306,0.135231,0.0702268,0.61588,0.391978,0.153668,0.828227,0.500188,0.19651,0.660867,0.358983,0.840007,0.779879,0.417328,0.182028,0.0959723,0.262964,0.234482,0.650487,0.00888896,0.298375,0.43135,0.299627,0.45884,0.484656,0.127646,0.139573,0.171193,0.0549468,0.156812,0.0541884,0.481979,0.702948,0.0776197,0.112103,0.488393,0.876478,0.468213,0.110278,0.325364,0.735018,0.640135,0.910604,0.966202,0.22014,0.31452,0.890702,0.394255,0.663005,0.888689,0.276938,0.346934,0.765827,0.966912,0.299612,0.547893,0.00580847,0.578272,0.199129,0.443765,0.293028,0.706247,0.11714,0.0929009,0.955972,0.8646,0.724475,0.5413,0.575414,0.0997425,0.0241024,0.586983,0.627228,0.231858,0.364706,0.445168,0.988346,0.382769,0.268577,0.142505,0.516072,0.105061,0.271942,0.287693,0.789628,0.0489165,0.633501,0.204778,0.772262,0.396719,0.0251575,0.735607,0.753204,0.46571,0.303671,0.36024,0.398199,0.966106,0.60709,0.926859,0.380118,0.655821,0.658295,0.831587,0.131709,0.828244,0.969315,0.216572,0.80608,0.659008,0.832084,0.465993,0.102206,0.970371,0.91969,0.692451,0.375945,0.869902,0.302105,0.345821,0.176747,0.454588,0.0629549,0.418396,0.460563,0.491906,0.35428,0.0479046,0.107326,0.297562,0.0145692,0.31297,0.0543975,0.760025,0.250412,0.913418,0.58592,0.546403,0.527828,0.406855,0.820076,0.942882,0.317518,0.968862,0.883186,0.621807,0.355151,0.458026,0.628316,0.7348,0.0875465,0.105826,0.202853,0.47809,0.820674,0.263986,0.779934,0.727576,0.597893,0.953051,0.551629,0.345285,0.207488,0.266492,0.465348,0.614298,0.504038,0.948713,0.621651,0.425911,0.983932,0.949519,0.0991154,0.302698,0.950811,0.887265,0.900027,0.416975,0.766592,0.599858,0.320259,0.0500804,0.329172,0.312946,0.776921,0.846,0.389697,0.383665,0.417275,0.693722,0.462518,0.556263,0.483201,0.0562918,0.0988076,0.467987,0.64291,0.0966443,0.885379,0.190121,0.249859,0.17274,0.716163,0.526222,0.429561,0.359012,0.548487,0.242112,0.366657,0.467514,0.764718,0.703449,0.232246,0.292386,0.755722,0.128362,0.360002,0.862418,0.413203,0.571669,0.239873,0.75133,0.602543,0.433578,0.575315,0.254666,0.0822681,0.554476,0.128601,0.348061,0.98264,0.351565,0.60884,0.306013,0.921606,0.898483,0.603874,0.639443,0.0467647,0.13801,0.773802,0.533922,0.387752,0.240196,0.351475,0.0147541,0.120682,0.0760112,0.432884,0.273779,0.714106,0.568963,0.373216,0.22452,0.733234,0.112446,0.576128,0.405455,0.445379,0.475559,0.776602,0.837557,0.298517,0.750517,0.692796,0.926488,0.892454,0.433508,0.517493,0.544822,0.559346,0.584376,0.571258,0.0568376,0.635228,0.0119085,0.747812,0.0857197,0.405101,0.310707,0.249955,0.186176,0.0685608,0.343249,0.163945,0.543226,0.381544,0.612167,0.966366,0.102767,0.746408,0.443568,0.821596,0.458185,0.92027,0.567467,0.68242,0.789917,0.891126,0.568662,0.879986,0.026714,0.957858,0.304677,0.448521,0.209938,0.234881,0.547883,0.222662,0.228708,0.667604,0.188895,0.0780144,0.144707,0.690607,0.213903,0.840949,0.0993561,0.283226,0.574964,0.215436,0.834169,0.84728,0.31515,0.191582,0.659561,0.289754,0.772054,0.789385,0.145092,0.725126,0.803146,0.322034,0.693273,0.148582,0.126534,0.247546,0.373063,0.426995,0.175831,0.758938,0.429872,0.489463,0.67787,0.836335,0.115381,0.255325,0.349103,0.350664,0.599153,0.262136,0.481769,0.256106,0.0212074,0.669363,0.576947,0.956455,0.204208,0.0153412,0.858144,0.192588,0.010084,0.761634,0.539532,0.114072,0.873843,0.374355,0.77908,0.845743,0.515465,0.734061,0.650993,0.987276,0.387298,0.946306,0.195605,0.849144,0.115967,0.61305,0.525963,0.387303,0.967868,0.282376,0.384953,0.301543,0.986312,0.615838,0.867645,0.930802,0.677028,0.836156,0.444792,0.942584,0.659884,0.00297505,0.354502,0.384701,0.935756,0.555606,0.441492,0.546308,0.115318,0.27967,0.272916,0.766732,0.316336,0.692497,0.715729,0.154403,0.25691,0.175404,0.305126,0.965763,0.165032,0.0634741,0.893843,0.360016,0.0284693,0.585375,0.177936,0.32676,0.433444,0.0297505,0.1832,0.601773,0.174778,0.0683421,0.896076,0.34009,0.468522,0.397119,0.7633,0.965644,0.35093,0.33321,0.557163,0.948726,0.346492,0.312158,0.7711,0.47103,0.1412,0.470629,0.740853,0.164551,0.579106,0.216224,0.100957,0.286015,0.655788,0.836688,0.415431,0.105701,0.131527,0.35388,0.688062,0.0324063,0.14194,0.472468,0.20019,0.389944,0.547951,0.404262,0.614354,0.121956,0.181458,0.944211,0.0127868,0.975664,0.419306,0.974113,0.201437,0.66345,0.364987,0.27887,0.992559,0.864309,0.565993,0.237054,0.222877,0.436147,0.132619,0.904982,0.650128,0.669702,0.0933018,0.113597,0.293438,0.781981,0.94345,0.389951,0.925857,0.465266,0.0807312,0.625592,0.551431,0.172784,0.864149,0.287638,|0.333407,0.306997,0.293709,0.214501,0.448271,0.880973,0.245165,0.760041,0.763712,0.0351722,0.491583,0.552679,0.621445,0.948353,0.889199,0.0777027,0.123808,0.609241,0.898356,0.442864,0.703891,0.904346,0.450247,0.354906,0.897943,0.823128,0.674197,0.508938,0.776065,0.522031,0.88439,0.646122,0.365851,0.216122,0.236261,0.310497,0.645867,0.163562,0.71164,0.140001,0.781401,0.921277,0.996167,0.946473,0.350381,0.861775,0.0796984,0.422283,0.61527,0.662915,0.559569,0.957424,0.225128,0.213038,0.409022,0.0828348,0.811512,0.252243,0.673392,0.213062,0.265557,0.85748,0.267796,0.271637,0.704861,0.872398,0.425201,0.659103,0.442301,0.659504,0.611234,0.903763,0.793472,0.537622,0.0105152,0.432133,0.387709,0.162917,0.603785,0.00697207,0.030949,0.992741,0.583642,0.471646,0.137823,0.618329,0.201725,0.22971,0.848535,0.968429,0.331232,0.443491,0.83482,0.556969,0.285992,0.493926,0.0472636,0.187304,0.347645,0.148607,0.465991,0.552287,0.0232988,0.429009,0.334795,0.990706,0.188018,0.90574,0.895509,0.614787,0.496124,0.601962,0.465364,0.89783,0.617371,0.78776,0.245588,0.896142,0.41434,0.185741,0.9124,0.684402,0.431379,0.217438,0.152698,0.975014,0.0244129,0.370693,0.180079,0.689835,0.311604,0.362494,0.42599,0.661325,0.0947362,0.883686,0.795962,0.277785,0.908411,0.943106,0.483998,0.823858,0.668798,0.855357,0.719561,0.431969,0.966904,0.983674,0.404724,0.605183,0.188608,0.768317,0.105032,0.414545,0.758685,0.816473,0.0747926,0.74534,0.579509,0.484901,0.955927,0.309837,0.861463,0.280765,0.0401781,0.0904911,0.475221,0.898463,0.383161,0.759783,0.401595,0.617418,0.470084,0.605004,0.536211,0.914066,0.494535,0.412809,0.973242,0.809274,0.595768,0.0919801,0.76469,0.689636,0.716302,0.70324,0.101261,0.332333,0.0575882,0.332779,0.418923,0.363749,0.498834,0.374497,0.25133,0.0420727,0.687348,0.422121,0.405401,0.29113,0.782608,0.917759,0.570042,0.978273,0.530564,0.619882,0.0647138,0.300776,0.425444,0.0686141,0.0385438,0.0708219,0.584448,0.171872,0.411011,0.367022,0.0164119,0.553546,0.634455,0.923362,0.589961,0.0274506,0.403321,0.999295,0.932924,0.668655,0.357902,0.735097,0.106056,0.83105,0.659793,0.378501,0.169568,0.681792,0.108071,0.877175,0.701114,0.789956,0.836467,0.571192,0.674698,0.646914,0.547885,0.494301,0.664903,0.937868,0.394258,0.0309806,0.103762,0.88266,0.150747,0.923422,0.0663255,0.545428,0.183078,0.610034,0.221394,0.790301,0.341497,0.508452,0.0917809,0.344011,0.299877,0.0375187,0.824322,0.0054841,0.671525,0.853009,0.321988,0.903203,0.817603,0.559226,0.303484,0.766335,0.00820392,0.920763,0.783902,0.440378,0.0745706,0.971529,0.521487,0.723742,0.967137,0.152929,0.546797,0.0640435,0.31947,0.152853,0.30238,0.667105,0.171265,0.509768,0.753818,0.639626,0.707337,0.799139,0.828439,0.655562,0.193466,0.792892,0.72891,0.173786,0.791153,0.78615,0.235642,0.348728,0.65204,0.581071,0.7029,0.505386,0.673525,0.901236,0.156562,0.0602375,0.914469,0.0108507,0.346175,0.285078,0.921494,0.618937,0.359177,0.974479,0.899747,0.479004,0.873179,0.765587,0.495579,0.0577013,0.545062,0.509514,0.747197,0.340622,0.709104,0.264913,0.884833,0.521377,0.96677,0.525476,0.657173,0.379083,0.895407,0.0848129,0.387439,0.851824,0.806209,0.527292,0.953288,0.66824,0.602068,0.517518,0.67781,0.761529,0.0793415,0.192212,0.322282,0.269017,0.37656,0.496882,0.823851,0.468257,0.975335,0.883311,0.276586,0.836037,0.665266,0.563393,0.989033,0.569363,0.301304,0.800036,0.389492,0.460624,0.386412,0.637614,0.613288,0.308509,0.969807,0.407602,0.560806,0.907641,0.342274,0.299146,0.4286,0.989969,0.804108,0.679255,0.641793,0.111644,0.246426,0.254499,0.295518,0.306269,0.987093,0.207419,0.548891,0.0693155,0.790037,0.840801,0.702769,0.867123,0.764768,0.128909,0.943207,0.451949,0.736696,0.0821682,0.535649,0.937147,0.815581,0.668829,0.320187,0.153409,0.394741,0.127156,0.167932,0.915279,0.411695,0.324326,0.864512,0.131103,0.503819,0.949893,0.762437,0.986206,0.861945,0.403095,0.48419,0.223878,0.256603,0.760039,0.0390948,0.701522,0.170815,0.0213537,0.590612,0.9454,0.492383,0.696355,0.0471709,0.924984,0.259455,0.218253,0.649771,0.170588,0.775933,0.262729,0.83324,0.00734127,0.0621378,0.818314,0.767568,0.600825,0.367733,0.668692,0.242735,0.249963,0.661185,0.0990988,0.496388,0.0998276,0.484817,0.841464,0.948959,0.436461,0.731821,0.603938,0.729797,0.25939,0.23102,0.679234,0.0999503,0.688682,0.911093,0.0962569,0.736613,0.775359,0.150796,0.735179,0.011674,0.491008,0.0790412,0.584517,0.0864604,0.130641,0.484058,0.0587035,0.961219,0.443138,0.040853,0.0972471,0.81608,0.833935,0.145369,0.547874,0.554799,0.370083,0.534479,0.778305,0.440779,0.365766,0.889913,0.123969,0.944584,0.283547,0.1713,0.845109,0.89989,0.591416,0.718666,0.359975,0.424026,0.254053,0.381546,0.992386,0.258902,0.434121,0.982027,0.994718,0.969802,0.246367,0.867153,0.87596,0.861495,0.594603,0.863298,0.558186,0.710196,0.939553,0.6301,0.901299,0.475534,0.79009,0.640104,0.381678,0.429073,0.60425,0.657548,0.976612,0.449116,0.464301,0.683543,0.528318,0.835098,0.238032,0.267586,0.68903,0.93436,0.439889,0.645383,0.465691,0.308043,0.472986,0.983368,0.190068,0.406238,0.387191,0.300648,0.387118,0.788857,0.418717,0.00120038,0.882125,0.455043,0.310534,0.0780284,0.234078,0.785937,0.840021,0.555845,0.634948,0.695824,0.236713,0.192462,0.751347,0.495146,0.477015,0.554485,0.119182,0.0562969,0.23306,0.713012,0.417646,0.864546,0.0767794,0.389935,0.0645158,0.305301,0.508722,0.882766,0.874142,0.735185,0.90627,0.70395,0.427461,0.229708,0.279682,0.198003,0.437937,0.70041,0.589806,0.361656,0.739073,0.929543,0.9533,0.904245,0.855941,0.435227,0.373274,0.709287,0.842645,0.155885,0.0604113,0.557059,0.776317,0.149852,0.203973,0.399762,0.815145,0.832228,0.317063,0.305067,0.503307,0.693039,0.0127139,0.876069,0.448018,0.345032,0.843882,0.219169,0.640225,0.575526,0.732105,0.965085,0.503696,0.973026,0.266973,0.685549,0.094614,0.898945,0.351987,0.804269,0.501987,0.454415,0.225138,0.243104,0.942295,0.478616,0.285603,0.0762427,0.174792,0.0454538,0.236886,0.382248,0.737209,0.463986,0.661516,0.616788,0.581165,0.488622,0.905857,0.00661075,0.695069,0.34933,0.93061,0.89205,0.908006,0.910803,0.957604,0.369382,0.647434,0.0994011,0.976518,0.146734,0.4418,0.358702,0.83419,0.874739,0.194377,0.977663,0.845573,0.478413,0.175508,0.957803,0.968902,0.434336,0.445513,0.473299,0.176641,0.102961,0.120687,0.192939,0.918213,0.909098,0.0892146,0.727027,0.606243,0.194607,0.0106221,0.785575,0.93563,0.0621125,0.907157,0.882888,0.453698,0.94032,0.317327,0.840671,0.971636,0.368912,0.352661,0.927706,0.413285,0.362551,0.111102,0.455309,0.53315,0.133402,0.236721,0.540436,0.878173,0.134864,0.984382,0.159917,0.477409,0.0646185,0.789812,0.572383,0.348538,0.717433,0.619161,0.129946,0.259529,0.10166,0.827075,0.362722,0.329555,0.943864,0.760105,0.247931,0.764539,0.649172,0.120611,0.682208,0.603575,0.295108,0.882639,0.553452,0.762482,0.199138,0.348703,0.136646,0.146768,0.344938,0.225854,0.833158,0.0659382,0.431336,0.42459,0.304825,0.967667,0.135979,0.228976,0.854698,0.215606,0.277024,0.219548,0.287699,0.983482,0.557745,0.075349,0.770867,0.738709,0.670918,0.494718,0.292602,0.768081,0.69622,0.858895,0.687752,0.721106,0.1541,0.493913,0.0105317,0.725503,0.626993,0.42955,0.0348882,0.896594,0.897283,0.244008,0.950875,0.305333,0.00567281,0.126861,0.0239363,0.769805,0.669222,0.519992,0.375105,0.764565,0.268588,0.585398,0.355386,0.829177,0.48287,0.70968,0.296204,0.985189,0.416886,0.165131,0.712501,0.457711,0.948206,0.254681,0.891692,0.503851,0.511894,0.443079,0.273647,0.44858,0.338549,0.129039,0.832252,0.447843,0.590479,0.720706,0.835938,0.652965,0.167008,0.00737125,0.0661331,0.680001,0.0995837,0.180251,0.521597,0.849682,0.0519678,0.359248,0.803228,0.957086,0.950258,0.788978,0.472681,0.327968,0.776071,0.987008,0.48802,0.0215058,0.134246,0.623984,0.0897775,0.579561,0.03877,0.429084,0.470859,0.0258787,0.307416,0.169859,0.0521832,0.582376,0.21533,0.0497692,0.895187,0.590921,0.34999,0.381631,0.595435,0.605894,0.00201631,0.252769,0.555162,0.616917,0.523121,0.387542,0.747526,0.157774,0.780102,0.448192,0.384476,0.161657,0.862518,0.827941,0.402098,0.0946618,0.434972,0.856575,0.023648,0.733292,0.0747328,0.599931,0.0740368,0.0706517,0.806871,0.208313,0.793215,0.331301,0.274215,0.393598,0.748108,0.73749,0.637695,0.187199,0.950723,0.553458,0.829642,0.532582,0.275535,0.00464201,0.449627,0.8729,0.786184,0.214556,0.709401,0.0583513,0.636671,0.325405,0.287717,0.519677,0.434928,0.538043,0.902753,0.193381,0.0647914,0.273686,0.381861,0.22859,0.332542,0.0769556,0.816427,0.976523,0.928264,0.0940948,0.303703,0.120553,0.0118543,0.814258,0.358788,0.612513,0.779989,0.972953,0.763303,0.0471155,0.301765,0.747725,0.501628,0.71404,0.86365,0.800372,0.875112,0.828593,0.965074,0.0775428,0.0850191,0.148023,0.922965,0.481989,0.798272,0.000815213,0.820393,0.603974,0.727272,0.27301,0.503929,0.0909142,0.478247,0.577104,0.485977,0.0265142,0.853547,0.218784,0.604025,0.270079,0.550165,0.318453,0.109241,0.884367,0.289811,0.908913,0.0853797,0.417639,0.981529,0.400387,0.56761,0.26617,0.603573,0.850421,0.359046,0.065736,0.30515,0.00964862,0.605566,0.948051,0.987857,0.129096,0.574903,0.152441,0.16724,0.486781,0.261126,0.0778419,|0.446195,0.898252,0.381059,0.673921,0.838907,0.00812334,0.147651,0.324515,0.512073,0.993005,0.728159,0.92527,0.547887,0.670749,0.966723,0.202236,0.281428,0.357907,0.604645,0.616493,0.133866,0.500451,0.509264,0.16296,0.103348,0.807128,0.4383,0.055066,0.434182,0.999082,0.642226,0.122654,0.379626,0.851537,0.0322227,0.982769,0.816468,0.692535,0.121188,0.129836,0.594532,0.0169863,0.115099,0.218235,0.590265,0.50099,0.699004,0.0918371,0.6347,0.0684756,0.419522,0.113481,0.80704,0.78375,0.310767,0.105197,0.363665,0.623626,0.737848,0.799689,0.346154,0.368483,0.0892515,0.77569,0.136102,0.81803,0.802659,0.343989,0.878321,0.847087,0.796449,0.154558,0.518656,0.0718397,0.261784,0.2144,0.363097,0.869057,0.983702,0.839086,0.213894,0.297146,0.994657,0.463364,0.841202,0.0641882,0.682112,0.150343,0.423443,0.708698,0.834055,0.773665,0.593547,0.876421,0.378909,0.928227,0.536984,0.102683,0.246805,0.836346,0.355147,0.163428,0.369263,0.222813,0.791064,0.28681,0.179887,0.159647,0.66899,0.718027,0.376129,0.129622,0.727911,0.896584,0.658254,0.929164,0.255383,0.743127,0.638067,0.942275,0.0999115,0.80082,0.451055,0.793815,0.25559,0.988503,0.025126,0.642472,0.956834,0.175568,0.30293,0.0967484,0.340808,0.132178,0.916862,0.580378,0.564505,0.629441,0.636316,0.208394,0.363006,0.216864,0.656098,0.25312,0.314237,0.289557,0.802027,0.612652,0.949619,0.509619,0.800917,0.508,0.125586,0.18068,0.11277,0.813665,0.505865,0.118914,0.521854,0.933716,0.960474,0.153456,0.790141,0.955082,0.398036,0.0159278,0.803859,0.517672,0.03161,0.849705,0.638642,0.541995,0.88786,0.356331,0.874067,0.61509,0.650817,0.510053,0.448651,0.790608,0.400978,0.204811,0.283617,0.789561,0.0362234,0.542345,0.460571,0.116845,0.621515,0.0264279,0.989385,0.0465988,0.820504,0.37673,0.461582,0.584822,0.96147,0.61645,0.170376,0.525213,0.351632,0.979325,0.0358243,0.935016,0.833467,0.904872,0.53605,0.470928,0.902069,0.686531,0.440768,0.00611091,0.474779,0.978235,0.576893,0.366042,0.225711,0.0238503,0.148512,0.486158,0.928045,0.389747,0.111968,0.300932,0.16028,0.903935,0.819517,0.931266,0.295433,0.775987,0.627475,0.147127,0.97341,0.242032,0.424666,0.00363183,0.111271,0.179782,0.187196,0.661993,0.812545,0.53222,0.94944,0.922317,0.999338,0.498263,0.755539,0.385222,0.932052,0.866215,0.33802,0.636961,0.214659,0.692154,0.631189,0.117784,0.112844,0.92704,0.387657,0.128774,0.414786,0.710484,0.643428,0.143451,0.539602,0.147345,0.394928,0.0596443,0.382022,0.423881,0.414255,0.10183,0.0922415,0.789843,0.958727,0.251277,0.785673,0.769775,0.231415,0.989997,0.489958,0.993493,0.314655,0.596315,0.494255,0.587777,0.62621,0.845338,0.446831,0.0418506,0.998286,0.518726,0.227859,0.705105,0.293353,0.0971677,0.24557,0.45668,0.339745,0.59153,0.0746463,0.107097,0.027905,0.377015,0.758393,0.951056,0.627979,0.235849,0.849201,0.42469,0.753918,0.540243,0.993763,0.194072,0.330053,0.770457,0.168224,0.946361,0.670263,0.63953,0.212154,0.457503,0.346893,0.961717,0.781665,0.995595,0.0752816,0.0393288,0.129774,0.0852937,0.320977,0.693746,0.6855,0.372264,0.875301,0.210836,0.739555,0.56693,0.132764,0.14168,0.868214,0.562752,0.490134,0.15419,0.386439,0.416817,0.640021,0.159094,0.317834,0.380074,0.259391,0.00115454,0.572421,0.676548,0.66924,0.815774,0.844443,0.40645,0.0907208,0.875034,0.701749,0.490627,0.351094,0.322753,0.979313,0.752496,0.49633,0.59033,0.325913,0.570748,0.513793,0.991862,0.466877,0.33836,0.132225,0.949323,0.766426,0.782705,0.176874,0.605446,0.785401,0.756315,0.865619,0.480381,0.370857,0.61437,0.989461,0.147607,0.162921,0.636816,0.779268,0.717896,0.307814,0.171319,0.458953,0.388763,0.183951,0.769939,0.688755,0.966993,0.8961,0.427991,0.568355,0.15011,0.675753,0.208492,0.0592796,0.613366,0.670917,0.293263,0.980768,0.82498,0.305689,0.27114,0.324615,0.848381,0.536858,0.54847,0.21158,0.253599,0.370738,0.630574,0.00224286,0.821278,0.314021,0.261717,0.0659824,0.233311,0.164498,0.770796,0.361605,0.297275,0.57475,0.995252,0.824499,0.777189,0.395615,0.413446,0.0605659,0.606741,0.784373,0.780992,0.537724,0.954748,0.499665,0.585533,0.147406,0.412399,0.51196,0.897521,0.267306,0.000856102,0.424712,0.621465,0.409589,0.019442,0.815488,0.545822,0.370007,0.53907,0.0949037,0.559925,0.0239055,0.111669,0.892141,0.502584,0.205894,0.403286,0.715997,0.869945,0.494916,0.00356483,0.811284,0.710646,0.768582,0.928925,0.773885,0.274721,0.287638,0.0246339,0.90158,0.854556,0.75007,0.858625,0.701652,0.263471,0.156751,0.385606,0.490552,0.488123,0.219828,0.403528,0.43672,0.815299,0.662255,0.214906,0.225703,0.542893,0.560088,0.739838,0.509213,0.614174,0.826074,0.19917,0.286978,0.43221,0.0547375,0.384374,0.0464143,0.178428,0.393408,0.207576,0.0826914,0.163898,0.00654107,0.798049,0.193867,0.623489,0.611459,0.0657811,0.439638,0.566054,0.43834,0.796006,0.692518,0.631802,0.144533,0.0539588,0.782182,0.490717,0.435723,0.59223,0.00458312,0.183746,0.330587,0.937294,0.638099,0.0923811,0.610749,0.781305,0.804922,0.544703,0.0454186,0.935116,0.619867,0.717663,0.768202,0.0482196,0.125823,0.405752,0.989698,0.0882587,0.120178,0.165097,0.839141,0.500158,0.81252,0.0329281,0.457114,0.413327,0.909028,0.0471399,0.76077,0.691468,0.693494,0.966412,0.86311,0.909794,0.19101,0.415703,0.666323,0.905879,0.601082,0.137969,0.40863,0.360758,0.461327,0.0291528,0.704632,0.0407158,0.0649996,0.494366,0.262315,0.31461,0.125649,0.198786,0.233569,0.633574,0.404221,0.433659,0.249598,0.951597,0.0103917,0.237076,0.467376,0.141522,0.543762,0.6479,0.1963,0.204371,0.72242,0.10621,0.399453,0.864828,0.318853,0.278237,0.0592338,0.360421,0.773,0.996358,0.0171279,0.743709,0.938222,0.0820536,0.157655,0.431149,0.167733,0.771863,0.0482787,0.405273,0.187577,0.831491,0.245521,0.229786,0.719936,0.0658754,0.675138,0.180762,0.0383811,0.729351,0.816658,0.683116,0.532891,0.633837,0.704648,0.0362682,0.665678,0.349374,0.189348,0.00979233,0.515274,0.131255,0.992881,0.826106,0.530662,0.769342,0.127744,0.444219,0.824533,0.370798,0.287859,0.845252,0.611028,0.263213,0.0309848,0.746398,0.57285,0.747353,0.0929556,0.981087,0.775403,0.700193,0.715546,0.975973,0.223564,0.18383,0.196724,0.218626,0.642649,0.806159,0.620529,0.323744,0.870834,0.984232,0.414073,0.963822,0.896106,0.294069,0.261878,0.977759,0.811066,0.0142078,0.198971,0.153842,0.0561986,0.18861,0.955029,0.969946,0.630654,0.165136,0.0434367,0.0889304,0.0986016,0.0675164,0.879694,0.102665,0.618389,0.802981,0.765036,0.14887,0.0832906,0.605335,0.959504,0.615845,0.349212,0.106301,0.102318,0.776237,0.0695484,0.031036,0.565866,0.233987,0.707842,0.0635449,0.781551,0.268147,0.0978161,0.190895,0.418549,0.935795,0.0992068,0.617043,0.068566,0.141073,0.322918,0.610554,0.457926,0.22218,0.974834,0.0842784,0.914972,0.979983,0.117968,0.959274,0.558671,0.427035,0.441856,0.981311,0.776583,0.724818,0.317695,0.190126,0.983663,0.402944,0.557484,0.917457,0.17606,0.442078,0.65731,0.299707,0.739513,0.583779,0.18295,0.507664,0.964947,0.364308,0.0339454,0.872581,0.737906,0.436375,0.594956,0.427426,0.45958,0.699506,0.341694,0.484787,0.710134,0.506127,0.904823,0.337605,0.363899,0.791775,0.312166,0.111651,0.259994,0.248725,0.909817,0.948838,0.893772,0.196632,0.80593,0.522791,0.974681,0.29603,0.420955,0.524811,0.408158,0.570614,0.553407,0.886657,0.586235,0.134836,0.351744,0.322461,0.672319,0.177427,0.736112,0.42183,0.567505,0.935969,0.918323,0.607231,0.327905,0.204437,0.177505,0.341473,0.410975,0.145198,0.673437,0.950114,0.832829,0.807411,0.398257,0.889651,0.723493,0.240387,0.852111,0.240537,0.523228,0.674817,0.759074,0.21883,0.571878,0.368362,0.793362,0.848273,0.693371,0.0623543,0.155383,0.879081,0.952367,0.971579,0.00903302,0.432401,0.891766,0.150481,0.120702,0.424522,0.620594,0.421472,0.965241,0.91123,0.598369,0.939809,0.662345,0.827861,0.733863,0.637107,0.438195,0.0751889,0.757949,0.860846,0.461513,0.102172,0.285558,0.456707,0.800737,0.209228,0.646796,0.737976,0.954506,0.628151,0.78352,0.93718,0.360954,0.562085,0.929458,0.902807,0.338894,0.109697,0.436592,0.341913,0.909691,0.826252,0.836491,0.642749,0.181086,0.628514,0.820764,0.702257,0.350467,0.378654,0.602712,0.185332,0.312124,0.974262,0.260533,0.151376,0.778711,0.0616219,0.0546701,0.555322,0.352857,0.318681,0.15404,0.0832875,0.622994,0.115568,0.591933,0.714145,0.331613,0.039919,0.691397,0.0494204,0.179698,0.390645,0.154813,0.620624,0.449239,0.120941,0.998779,0.977627,0.886866,0.0274674,0.859755,0.129037,0.164012,0.494832,0.126156,0.405407,0.00922722,0.935428,0.555311,0.665649,0.984987,0.906246,0.724115,0.830422,0.649016,0.501462,0.469726,0.0713391,0.659437,0.325547,0.525365,0.13995,0.571383,0.00833571,0.701105,0.803562,0.73153,0.176713,0.114239,0.347629,0.776802,0.428206,0.269531,0.532712,0.19532,0.853194,0.56602,0.769132,0.45086,0.0705008,0.443665,0.560608,0.721723,0.664336,0.268359,0.312307,0.998984,0.487525,0.94808,0.558267,0.426794,0.678877,0.459789,0.872132,0.16645,0.536019,0.4823,0.131277,0.243555,0.21594,0.0267395,0.867269,0.686621,0.997133,0.523927,0.608095,0.430815,0.0480215,0.952467,0.832793,0.265908,0.753169,0.0949733,0.894102,0.560464,0.940907,0.866673,0.703657,0.163056,0.397497,0.199452,0.421358,0.542302,0.997255,0.717756,0.361754,|0.619433,0.717165,0.326159,0.805319,0.634969,0.888135,0.856249,0.217143,0.101262,0.612887,0.786691,0.385248,0.236271,0.568559,0.0992209,0.677259,0.708503,0.0524198,0.369098,0.14057,0.787208,0.885513,0.728686,0.460917,0.580709,0.629729,0.606579,0.703944,0.866568,0.75822,0.379723,0.645195,0.969895,0.762621,0.563218,0.335722,0.383007,0.72496,0.476865,0.356119,0.893209,0.86577,0.0753969,0.686036,0.858609,0.649738,0.691058,0.207418,0.394917,0.374733,0.00156629,0.425246,0.0191635,0.584495,0.574948,0.200211,0.381607,0.612435,0.684753,0.26186,0.844448,0.406236,0.444757,0.506394,0.345494,0.0413996,0.295457,0.281706,0.19536,0.993941,0.209074,0.480401,0.241547,0.0126206,0.540955,0.428553,0.618852,0.455596,0.666173,0.601261,0.242027,0.519298,0.685509,0.832911,0.428437,0.549624,0.299902,0.0624276,0.806854,0.280337,0.248706,0.690959,0.92337,0.106863,0.0198902,0.250995,0.133562,0.178556,0.677531,0.398639,0.802103,0.396846,0.828048,0.648829,0.313364,0.801005,0.904883,0.247555,0.427912,0.0176488,0.140296,0.59535,0.919752,0.0875367,0.0880113,0.359321,0.775941,0.481275,0.830773,0.891062,0.723117,0.143506,0.743959,0.167994,0.98619,0.629551,0.201092,0.387619,0.17269,0.601992,0.645427,0.644702,0.58495,0.797111,0.510669,0.372122,0.398877,0.42122,0.0886862,0.770323,0.667436,0.308151,0.825628,0.255371,0.56142,0.0280775,0.329092,0.47358,0.415771,0.437596,0.21404,0.760534,0.514934,0.172151,0.784726,0.570418,0.581757,0.00693452,0.108674,0.100022,0.678123,0.713368,0.708455,0.342501,0.751447,0.658452,0.222322,0.714575,0.430366,0.365235,0.835617,0.00767058,0.768991,0.199715,0.7899,0.268005,0.822714,0.769978,0.622908,0.946082,0.34139,0.979635,0.863867,0.494824,0.629301,0.304988,0.583535,0.30958,0.00196105,0.502831,0.905773,0.722593,0.84834,0.338924,0.620883,0.448313,0.629348,0.945129,0.543151,0.563493,0.212848,0.624784,0.0510271,0.172827,0.402996,0.110641,0.724961,0.429332,0.761339,0.329431,0.147014,0.130078,0.798124,0.231031,0.885232,0.897641,0.470951,0.785473,0.529432,0.150395,0.973758,0.312659,0.507014,0.339854,0.0119542,0.618991,0.092445,0.669815,0.341597,0.134235,0.564577,0.926973,0.0365406,0.0975811,0.463766,0.409076,0.0183131,0.480735,0.249796,0.895693,0.320853,0.807848,0.131612,0.579683,0.422508,0.12548,0.102977,0.337104,0.00611234,0.243175,0.45,0.300864,0.526452,0.430791,0.307146,0.70152,0.825502,0.937385,0.989089,0.537813,0.907934,0.188014,0.413882,0.358716,0.681243,0.708505,0.586835,0.751879,0.969457,0.463978,0.563367,0.505769,0.21519,0.30138,0.959176,0.049826,0.0353051,0.729382,0.962737,0.678661,0.106029,0.19208,0.802855,0.463625,0.00198531,0.441643,0.723297,0.697385,0.886948,0.0917886,0.158376,0.338023,0.128346,0.464728,0.0906108,0.821272,0.918098,0.259766,0.457765,0.778466,0.971809,0.699105,0.419897,0.907762,0.052623,0.548237,0.477561,0.191445,0.256161,0.680414,0.672282,0.173246,0.384991,0.667986,0.660562,0.400291,0.0635679,0.681103,0.901199,0.214675,0.950789,0.574976,0.391181,0.689389,0.779064,0.305514,0.629408,0.273412,0.85267,0.870678,0.722742,0.504399,0.966202,0.711679,0.385989,0.518951,0.838184,0.105497,0.461817,0.0052765,0.412238,0.669161,0.831808,0.51906,0.988756,0.530429,0.896237,0.146452,0.993194,0.852867,0.680343,0.916708,0.355309,0.626914,0.157457,0.253031,0.167968,0.942544,0.133262,0.156151,0.25403,0.434586,0.9541,0.0713774,0.0389002,0.79574,0.631378,0.631171,0.407671,0.0995615,0.474108,0.564325,0.921579,0.779832,0.0381408,0.728584,0.434091,0.488358,0.281742,0.189838,0.152209,0.659484,0.880675,0.315629,0.385595,0.235199,0.510835,0.0369973,0.740045,0.25883,0.831353,0.329103,0.303208,0.284514,0.152876,0.315812,0.571917,0.921966,0.0805088,0.370077,0.36795,0.334257,0.709499,0.427333,0.342058,0.6242,0.182536,0.705867,0.318175,0.060688,0.589661,0.978253,0.482631,0.469321,0.618765,0.0620358,0.431142,0.147504,0.519801,0.547009,0.53253,0.618102,0.467414,0.845207,0.426339,0.108303,0.427619,0.683268,0.581659,0.365639,0.518005,0.70124,0.0235395,0.225154,0.0427795,0.860764,0.372689,0.889324,0.378201,0.865188,0.279975,0.402989,0.74793,0.233799,0.872107,0.995033,0.482642,0.747322,0.136288,0.709344,0.786571,0.0765052,0.150507,0.000970662,0.678563,0.491508,0.546883,0.372573,0.910624,0.0723876,0.663339,0.477472,0.0948812,0.128312,0.311693,0.00642872,0.154096,0.597319,0.539612,0.963143,0.847272,0.824774,0.57309,0.621833,0.557673,0.0845928,0.326477,0.447152,0.0278921,0.897364,0.333081,0.772978,0.218467,0.875561,0.426366,0.195069,0.328446,0.456745,0.792036,0.430035,0.0595533,0.662128,0.581327,0.822952,0.909636,0.446035,0.0977091,0.578508,0.535169,0.0998574,0.452791,0.63085,0.696302,0.0475895,0.942165,0.11942,0.52335,0.605356,0.709466,0.214594,0.180399,0.573449,0.0292758,0.308258,0.0941591,0.915496,0.91813,0.23172,0.506155,0.0811573,0.260077,0.186961,0.774229,0.196315,0.448779,0.464573,0.187815,0.714107,0.0615436,0.704375,0.0956941,0.197474,0.13293,0.289129,0.844219,0.900161,0.743452,0.160259,0.506724,0.0263404,0.63052,0.237378,0.221005,0.619592,0.887794,0.0919906,0.144641,0.655639,0.88552,0.692798,0.284685,0.474246,0.222497,0.871239,0.04689,0.398852,0.688094,0.218087,0.265787,0.228239,0.829235,0.488027,0.983597,0.309868,0.0844409,0.881936,0.364599,0.653699,0.316753,0.774575,0.913207,0.830528,0.91169,0.513774,0.231581,0.825841,0.596773,0.759256,0.769852,0.330787,0.945813,0.452572,0.656494,0.823732,0.155826,0.162201,0.0771394,0.792896,0.138768,0.49795,0.880117,0.15849,0.588767,0.799192,0.20533,0.95235,0.0365227,0.00575167,0.237328,0.232536,0.150616,0.385873,0.190919,0.847467,0.831166,0.955611,0.823748,0.0175337,0.0940335,0.279213,0.100978,0.420758,0.626722,0.984291,0.760276,0.928746,0.658837,0.502646,0.664343,0.78413,0.444122,0.89561,0.311608,0.777906,0.854218,0.928165,0.0788952,0.394418,0.307475,0.889592,0.248083,0.152818,0.180171,0.563006,0.285712,0.600151,0.83861,0.0897036,0.642423,0.648923,0.286925,0.299047,0.392817,0.860429,0.168891,0.874549,0.38255,0.988906,0.326099,0.806444,0.844189,0.710132,0.0214354,0.131053,0.0940554,0.257835,0.500282,0.124468,0.431443,0.788618,0.982327,0.319172,0.463825,0.202824,0.613437,0.159001,0.781588,0.0670692,0.767092,0.761481,0.173156,0.515043,0.954248,0.1364,0.286302,0.94353,0.861737,0.882689,0.990807,0.148422,0.612875,0.0340062,0.851776,0.620341,0.893205,0.99707,0.443616,0.505931,0.926059,0.633692,0.155261,0.979302,0.305987,0.83675,0.484462,0.248149,0.5571,0.592269,0.546232,0.774945,0.649804,0.0346751,0.291471,0.393198,0.770921,0.704813,0.435814,0.880901,0.31518,0.0142939,0.813932,0.546381,0.711372,0.886627,0.0711776,0.200451,0.305233,0.464756,0.150016,0.268474,0.755724,0.0771418,0.841896,0.808773,0.805424,0.857506,0.743679,0.760428,0.185017,0.982314,0.59103,0.728851,0.482085,0.545765,0.315521,0.879918,0.313013,0.211345,0.972254,0.398547,0.428827,0.614621,0.570084,0.583484,0.0905015,0.316056,0.446904,0.0615365,0.655503,0.227,0.948585,0.534215,0.208025,0.451024,0.857344,0.815561,0.896728,0.289167,0.513339,0.0974695,0.86945,0.727979,0.191385,0.261178,0.484966,0.651728,0.503267,0.385586,0.312497,0.0316059,0.629734,0.961245,0.0180483,0.897428,0.567612,0.222134,0.0444672,0.83941,0.988624,0.297916,0.520847,0.552154,0.75061,0.0513365,0.679643,0.0146414,0.787534,0.326445,0.948786,0.627168,0.316127,0.953446,0.459098,0.425021,0.399413,0.446283,0.22017,0.347125,0.697174,0.809525,0.360795,0.717882,0.58462,0.205291,0.926586,0.678937,0.883978,0.917357,0.131414,0.369144,0.509425,0.650691,0.179882,0.628929,0.24789,0.683187,0.453172,0.0875831,0.00504059,0.383373,0.275123,0.855434,0.173383,0.684982,0.805642,0.972393,0.677769,0.401683,0.136119,0.298504,0.588279,0.455935,0.769087,0.0169055,0.192537,0.944108,0.897865,0.547278,0.06834,0.599645,0.544073,0.666284,0.308661,0.832272,0.936307,0.637349,0.875508,0.223942,0.791769,0.82597,0.0965453,0.779138,0.930067,0.272916,0.156426,0.2126,0.0240925,0.971421,0.937581,0.298053,0.39246,0.450092,0.363394,0.724722,0.574292,0.841069,0.824051,0.579312,0.346762,0.0573586,0.731641,0.107217,0.906822,0.230804,0.047241,0.88057,0.262574,0.554279,0.157721,0.938962,0.922302,0.369369,0.0173168,0.189352,0.751057,0.925259,0.318997,0.744656,0.0905427,0.779993,0.0631894,0.619994,0.0225341,0.727367,0.0666237,0.506553,0.719731,0.261535,0.580092,0.792156,0.18902,0.616309,0.915125,0.127709,0.017685,0.697962,0.162011,0.119092,0.319566,0.129515,0.465138,0.456669,0.198308,0.464626,0.468826,0.372448,0.488326,0.0465245,0.821887,0.097171,0.0498784,0.339378,0.714159,0.902459,0.306125,0.480955,0.831538,0.945415,0.887405,0.528808,0.288059,0.0688734,0.0533165,0.197053,0.728158,0.0847172,0.172839,0.947541,0.74721,0.189168,0.915208,0.594474,0.219491,0.256396,0.545642,0.83406,0.109216,0.892039,0.413646,0.415637,0.00850457,0.665888,0.987563,0.172286,0.974553,0.014518,0.395745,0.524506,0.00966638,0.95115,0.884268,0.643613,0.769868,0.298313,0.0794597,0.217454,0.524314,0.41969,0.470733,0.485117,0.619717,0.404445,0.21238,0.20904,0.00561094,0.730714,0.155474,0.99473,0.633838,0.277925,0.570404,0.327539,0.322246,0.881021,0.89639,0.836846,0.402515,0.0602338,0.4911,0.850636,0.115262,0.465117,0.421288,0.168944,0.341803,0.449301,0.714247,0.86766,0.305705,0.168842,|0.606441,0.817515,0.812744,0.321339,0.637888,0.0111544,0.319508,0.0153838,0.969661,0.599004,0.480295,0.171309,0.266372,0.392343,0.296521,0.872182,0.052995,0.654959,0.306596,0.0356518,0.312939,0.555047,0.998255,0.587648,0.717196,0.591455,0.532148,0.645428,0.516064,0.984562,0.839846,0.357598,0.269773,0.77046,0.91071,0.424243,0.328472,0.14511,0.573444,0.848877,0.779835,0.261375,0.920991,0.512674,0.559551,0.591054,0.895716,0.0143622,0.54463,0.71922,0.639233,0.505533,0.790761,0.751823,0.825321,0.311549,0.928922,0.574042,0.640471,0.389288,0.838803,0.0432855,0.124721,0.991346,0.448671,0.632465,0.794437,0.910087,0.65941,0.152872,0.146676,0.640852,0.16329,0.736969,0.741173,0.569709,0.773042,0.352165,0.374231,0.875865,0.942511,0.996008,0.256078,0.999816,0.786122,0.498134,0.692884,0.56796,0.0532181,0.726939,0.859866,0.966991,0.639045,0.991617,0.374889,0.627334,0.227011,0.0846893,0.0361509,0.791621,0.212875,0.0460694,0.424595,0.961801,0.725616,0.370896,0.653072,0.378592,0.944355,0.449348,0.804492,0.652475,0.338425,0.283581,0.674881,0.491155,0.166044,0.132992,0.680731,0.363186,0.0111326,0.428778,0.176194,0.257931,0.349205,0.0883901,0.121807,0.885868,0.912347,0.110891,0.0171207,0.174424,0.741522,0.846055,0.906696,0.499891,0.768375,0.142326,0.814656,0.705251,0.791095,0.703908,0.887025,0.545792,0.211,0.970666,0.150982,0.446094,0.746759,0.596601,0.259683,0.010919,0.312687,0.670422,0.315934,0.158244,0.976533,0.3231,0.44134,0.662373,0.6592,0.588097,0.966655,0.265963,0.264641,0.978704,0.612797,0.755661,0.396774,0.191074,0.038672,0.196515,0.762497,0.476312,0.0850356,0.342174,0.216943,0.413137,0.660871,0.35026,0.868308,0.19608,0.633127,0.918259,0.908588,0.223494,0.423227,0.35429,0.651375,0.797691,0.643159,0.548969,0.644627,0.453089,0.437177,0.667957,0.180154,0.0324732,0.106136,0.822398,0.431751,0.00452584,0.443961,0.646493,0.0499292,0.299977,0.993027,0.974225,0.820312,0.434727,0.0693343,0.894247,0.621255,0.00245559,0.0660736,0.49486,0.199241,0.520679,0.0686051,0.832374,0.514841,0.395562,0.805319,0.240051,0.0967423,0.769158,0.753485,0.392488,0.161263,0.840321,0.825531,0.570173,0.539919,0.261343,0.599998,0.0677273,0.676639,0.801198,0.466014,0.493288,0.405226,0.936244,0.950099,0.327938,0.945884,0.121486,0.0563353,0.268795,0.796542,0.489529,0.914142,0.154803,0.257108,0.884692,0.571763,0.545372,0.178557,0.0158818,0.383645,0.593829,0.559822,0.261696,0.804081,0.988522,0.965144,0.76548,0.150232,0.099251,0.228754,0.958339,0.694239,0.780725,0.562167,0.34691,0.351935,0.313495,0.723542,0.211931,0.815697,0.457096,0.127957,0.522411,0.142012,0.740997,0.934309,0.38736,0.776458,0.640552,0.112592,0.969441,0.101243,0.202873,0.00848722,0.476354,0.100642,0.0916405,0.375185,0.750959,0.350403,0.596465,0.653285,0.434417,0.581064,0.765486,0.936833,0.678694,0.35971,0.24657,0.671386,0.584625,0.159292,0.942271,0.0840261,0.783132,0.650211,0.987639,0.292485,0.390613,0.576669,0.707096,0.0860584,0.81322,0.984423,0.299882,0.25295,0.990883,0.666378,0.776977,0.826311,0.299666,0.6452,0.0120117,0.599807,0.292799,0.281737,0.375991,0.900027,0.806252,0.256583,0.772065,0.100515,0.751232,0.101206,0.150978,0.814659,0.491,0.635933,0.453067,0.773912,0.956352,0.820103,0.830233,0.830436,0.455318,0.940107,0.143615,0.859871,0.80637,0.449154,0.938419,0.447483,0.0445381,0.0614587,0.706172,0.503673,0.342229,0.664915,0.510589,0.517103,0.156922,0.613393,0.566731,0.480487,0.533849,0.0115994,0.709774,0.697098,0.7833,0.87005,0.995688,0.896721,0.184697,0.341292,0.691397,0.355607,0.435644,0.653858,0.951018,0.836173,0.783873,0.298818,0.762317,0.654058,0.953212,0.382176,0.771501,0.0918482,0.300758,0.756521,0.219341,0.514185,0.68701,0.892528,0.120706,0.377325,0.454576,0.0571508,0.729406,0.435744,0.981128,0.5323,0.143726,0.437132,0.693283,0.717812,0.716881,0.631665,0.504297,0.636009,0.061763,0.460171,0.785634,0.696522,0.248971,0.0924594,0.432148,0.672799,0.329268,0.204804,0.741566,0.302951,0.0681345,0.515418,0.196619,0.877368,0.19642,0.229549,0.352873,0.671502,0.95505,0.178843,0.839881,0.906129,0.655239,0.0176857,0.41682,0.151325,0.670986,0.412848,0.858616,0.816649,0.184596,0.173089,0.721829,0.313964,0.216501,0.772455,0.417581,0.478787,0.515024,0.202377,0.834624,0.486733,0.0659574,0.388564,0.103348,0.0433831,0.614986,0.0499566,0.488025,0.299711,0.901128,0.334773,0.337971,0.923917,0.632184,0.847605,0.607539,0.481668,0.626966,0.191008,0.246743,0.591217,0.679697,0.139189,0.612518,0.734202,0.0443958,0.712879,0.31452,0.982186,0.103659,0.8136,0.000317454,0.599123,0.786204,0.0782771,0.932562,0.334977,0.828615,0.764082,0.966328,0.674481,0.456858,0.267013,0.219916,0.573018,0.459619,0.155776,0.447657,0.651706,0.720365,0.0496277,0.245405,0.603302,0.321976,0.180859,0.587079,0.233942,0.377042,0.247615,0.683928,0.533777,0.609291,0.707128,0.687964,0.0502859,0.884668,0.527524,0.745119,0.79336,0.00260842,0.118244,0.328813,0.947632,0.646961,0.514043,0.484566,0.544042,0.853421,0.986867,0.94309,0.0827935,0.465336,0.448082,0.664366,0.782198,0.791205,0.452928,0.548331,0.774125,0.84183,0.011872,0.765003,0.423635,0.295536,0.169319,0.105074,0.453567,0.9381,0.396873,0.487478,0.644262,0.786336,0.953064,0.00339192,0.300094,0.166156,0.840698,0.302118,0.0792156,0.154896,0.634893,0.263955,0.760567,0.147843,0.235841,0.338412,0.951537,0.745866,0.453525,0.0960899,0.641379,0.286908,0.577299,0.112823,0.242686,0.72682,0.217496,0.331104,0.370158,0.79143,0.742428,0.153863,0.428487,0.913075,0.766483,0.0636257,0.292903,0.341122,0.100819,0.157636,0.406005,0.961699,0.321348,0.659437,0.79718,0.178392,0.831129,0.866015,0.574977,0.557317,0.137836,0.928163,0.395327,0.515196,0.577794,0.033752,0.365845,0.352605,0.486678,0.509761,0.71044,0.316197,0.542717,0.500236,0.524784,0.576896,0.646542,0.488979,0.143418,0.184733,0.71953,0.914198,0.385105,0.863096,0.687459,0.300183,0.332999,0.671462,0.840931,0.747487,0.0197636,0.423483,0.387741,0.597487,0.815027,0.288972,0.523341,0.365998,0.566002,0.185964,0.864439,0.305376,0.439013,0.705839,0.912766,0.141428,0.725463,0.81985,0.858784,0.68168,0.257543,0.596413,0.441072,0.0958308,0.318361,0.533651,0.681192,0.133626,0.214366,0.559579,0.17909,0.416442,0.379393,0.908679,0.593719,0.0662552,0.258833,0.239655,0.924142,0.17714,0.595249,0.40314,0.784343,0.379691,0.845027,0.965983,0.0119734,0.941886,0.790593,0.323785,0.844397,0.0164154,0.828649,0.0698807,0.107005,0.420785,0.986574,0.172203,0.992592,0.523704,0.203138,0.261378,0.495482,0.661189,0.40744,0.82597,0.721992,0.00759137,0.245195,0.376055,0.985311,0.603949,0.0384236,0.0449939,0.555083,0.241915,0.535621,0.961186,0.751593,0.453108,0.110521,0.35313,0.545294,0.344365,0.694948,0.452097,0.0555948,0.75523,0.107811,0.732296,0.212174,0.732509,0.219486,0.639185,0.225572,0.773561,0.272669,0.974975,0.365906,0.827137,0.518392,0.351619,0.0926464,0.795453,0.831266,0.27898,0.603158,0.63759,0.470867,0.214953,0.87012,0.302785,0.0550812,0.358301,0.052386,0.0179958,0.440109,0.515758,0.660277,0.600893,0.57383,0.120349,0.87789,0.876039,0.804477,0.0169954,0.781323,0.238422,0.172392,0.160394,0.748725,0.750828,0.587965,0.306869,0.86879,0.803851,0.981667,0.539897,0.253792,0.175232,0.157809,0.388654,0.247608,0.154588,0.158698,0.369319,0.917385,0.284793,0.833035,0.804484,0.642595,0.062681,0.450752,0.286947,0.667454,0.200255,0.983357,0.502199,0.895209,0.160803,0.854019,0.69102,0.47839,0.372005,0.997634,0.594687,0.471163,0.890734,0.443193,0.460732,0.266394,0.780133,0.123191,0.891826,0.261563,0.125743,0.670983,0.780488,0.0360577,0.796216,0.545451,0.0537993,0.456521,0.502204,0.413194,0.283101,0.668964,0.159293,0.617808,0.7744,0.0255578,0.294729,0.434719,0.636155,0.0583382,0.953951,0.425155,0.646933,0.156884,0.072525,0.54021,0.649651,0.497748,0.145616,0.76972,0.467673,0.0197935,0.367615,0.0519247,0.730384,0.191575,0.0609783,0.708943,0.374735,0.0741242,0.444515,0.808824,0.462195,0.932096,0.123447,0.264041,0.437026,0.438784,0.641783,0.678584,0.666923,0.0841057,0.29151,0.52479,0.171288,0.0639612,0.182135,0.400434,0.926973,0.533885,0.228916,0.593723,0.462676,0.830598,0.150094,0.515372,0.24763,0.105526,0.0355608,0.558028,0.248762,0.327345,0.250718,0.388843,0.963637,0.517677,0.102071,0.177848,0.0305021,0.00609493,0.126268,0.332628,0.994217,0.634289,0.134823,0.159953,0.11934,0.34722,0.91086,0.447157,0.488626,0.915152,0.52725,0.476509,0.381364,0.807319,0.660099,0.583695,0.0559205,0.768604,0.54344,0.978421,0.110117,0.162614,0.0641093,0.622096,0.665949,0.266583,0.38488,0.774262,0.714813,0.513944,0.317597,0.416006,0.819356,0.486924,0.116159,0.0546243,0.0166196,0.133905,0.866201,0.806841,0.283314,0.523124,0.590044,0.914686,0.166616,0.937753,0.707793,0.219647,0.03528,0.689088,0.000957668,0.845676,0.216718,0.969089,0.939327,0.1951,0.286337,0.301254,0.993114,0.178037,0.526402,0.939691,0.0226335,0.00617069,0.41329,0.104342,0.0448099,0.815178,0.54997,0.16909,0.342941,0.216068,0.383647,0.206575,0.133006,0.244766,0.672725,0.574662,0.764713,0.952353,0.508172,0.450941,0.740462,0.359354,0.851469,0.613654,0.465496,0.679579,0.208179,0.928159,0.466181,0.778515,0.914876,0.822498,0.233535,0.772006,0.521678,0.853675,0.360894,0.647779,0.41529,|0.92346,0.933532,0.975169,0.555141,0.885171,0.677053,0.280381,0.479066,0.22999,0.14153,0.301819,0.800144,0.530342,0.367669,0.238837,0.188115,0.718571,0.758453,0.427729,0.663371,0.281153,0.0770534,0.380128,0.865543,0.8773,0.400107,0.157188,0.0424303,0.683756,0.385248,0.150577,0.708758,0.826044,0.253129,0.540197,0.572214,0.045324,0.504185,0.858879,0.867583,0.326545,0.0880879,0.631419,0.994546,0.20741,0.374343,0.580954,0.11549,0.0860924,0.737341,0.698372,0.0705449,0.706997,0.773827,0.817009,0.549939,0.102694,0.962115,0.707776,0.759275,0.916371,0.307326,0.03851,0.243307,0.464894,0.563384,0.981896,0.459406,0.330587,0.183207,0.265005,0.516391,0.378044,0.34562,0.553008,0.698389,0.183549,0.927615,0.0508399,0.738924,0.395473,0.870648,0.1705,0.299118,0.497062,0.899638,0.0227157,0.295068,0.948599,0.512061,0.22014,0.726726,0.636406,0.495881,0.343322,0.144805,0.114374,0.410809,0.172623,0.481183,0.063592,0.664263,0.700456,0.656638,0.7645,0.443921,0.937782,0.287385,0.732456,0.180799,0.560417,0.583608,0.967101,0.674207,0.131337,0.773302,0.312102,0.685363,0.702216,0.257792,0.16818,0.282418,0.561763,0.195006,0.0123889,0.464297,0.975429,0.312114,0.33045,0.625661,0.9409,0.968191,0.774678,0.0419728,0.549321,0.417382,0.626471,0.266505,0.406138,0.379639,0.642196,0.831072,0.178859,0.553355,0.509715,0.465443,0.422442,0.673402,0.597436,0.126062,0.199618,0.584489,0.416946,0.448753,0.965961,0.529217,0.0397627,0.38377,0.799643,0.852501,0.396559,0.855998,0.974053,0.711303,0.738638,0.925748,0.3522,0.0939364,0.0758768,0.533832,0.304696,0.452087,0.837469,0.73676,0.628266,0.312339,0.825314,0.0698038,0.559903,0.435541,0.190354,0.0335521,0.385548,0.596485,0.405857,0.653174,0.835934,0.431591,0.72539,0.443114,0.490107,0.84399,0.992302,0.904022,0.632612,0.145779,0.620356,0.576099,0.207549,0.906599,0.523767,0.623913,0.903554,0.691897,0.83386,0.0928348,0.151045,0.382244,0.677153,0.309296,0.268859,0.63711,0.450889,0.7034,0.995585,0.284757,0.482341,0.975106,0.510369,0.224347,0.45348,0.196554,0.943679,0.107188,0.721667,0.214614,0.0589306,0.87037,0.318484,0.684497,0.494638,0.183582,0.0940367,0.760669,0.820942,0.534302,0.629814,0.229089,0.975915,0.980313,0.0918196,0.824687,0.545391,0.778112,0.322016,0.130897,0.213726,0.651224,0.367027,0.794148,0.527675,0.218206,0.137855,0.0261301,0.0625594,0.759199,0.726563,0.316899,0.323494,0.426631,0.445262,0.715063,0.227339,0.951811,0.215285,0.418262,0.369143,0.0422721,0.718284,0.0759885,0.579762,0.480424,0.938408,0.828338,0.902603,0.043083,0.616192,0.935292,0.795124,0.348875,0.195723,0.731381,0.196035,0.881846,0.0928261,0.547646,0.750805,0.627166,0.194754,0.982041,0.0503502,0.863664,0.0510321,0.210209,0.926222,0.971361,0.049842,0.132502,0.52573,0.163937,0.457828,0.572679,0.105356,0.118291,0.861302,0.584569,0.739133,0.0748793,0.599649,0.120811,0.964086,0.735687,0.444752,0.828583,0.746822,0.435405,0.416847,0.744399,0.418309,0.198975,0.592053,0.80589,0.00420511,0.617216,0.626846,0.164184,0.763613,0.245822,0.176426,0.343143,0.706667,0.838932,0.358274,0.351041,0.635852,0.528246,0.73599,0.982213,0.0711396,0.294905,0.544342,0.414434,0.82467,0.0165709,0.74263,0.306734,0.227034,0.958797,0.257166,0.076714,0.31617,0.169407,0.402774,0.126902,0.841327,0.327188,0.113075,0.539847,0.432465,0.294308,0.395036,0.846405,0.971533,0.419543,0.242105,0.175105,0.646552,0.998804,0.835915,0.642857,0.64567,0.70272,0.567451,0.0986508,0.00321764,0.799261,0.209847,0.187926,0.689056,0.284167,0.964111,0.927319,0.0278111,0.365302,0.867923,0.753905,0.680908,0.857711,0.699131,0.828802,0.302432,0.239683,0.9787,0.822688,0.924988,0.655542,0.352265,0.645271,0.390751,0.286631,0.383747,0.000815332,0.728003,0.524703,0.46711,0.130017,0.571722,0.595042,0.984186,0.270288,0.305118,0.138337,0.759208,0.895266,0.861406,0.587927,0.485228,0.337227,0.888943,0.0733333,0.878091,0.942709,0.834673,0.218451,0.330746,0.323398,0.289512,0.52046,0.664549,0.909212,0.823206,0.072888,0.141028,0.788257,0.00879723,0.284106,0.0212646,0.955919,0.901257,0.66849,0.733422,0.653661,0.536947,0.143942,0.621459,0.849319,0.98455,0.400367,0.345202,0.720996,0.987437,0.934242,0.0668853,0.157253,0.244648,0.0972413,0.176587,0.790583,0.320678,0.428404,0.796427,0.305896,0.0725979,0.483481,0.162855,0.413408,0.200451,0.0376869,0.0997753,0.268426,0.36339,0.348436,0.3998,0.161483,0.163639,0.307435,0.938294,0.750033,0.295798,0.213453,0.748435,0.997531,0.909147,0.327443,0.200789,0.0494772,0.190113,0.49342,0.317229,0.190601,0.727312,0.77437,0.48812,0.249191,0.0979903,0.697775,0.537541,0.124888,0.66601,0.343135,0.313297,0.0519097,0.630152,0.318236,0.435876,0.35731,0.336626,0.637341,0.726867,0.862968,0.0759783,0.877347,0.912755,0.307272,0.439588,0.116283,0.795451,0.0624022,0.383579,0.54609,0.617337,0.49436,0.887488,0.669779,0.681285,0.113071,0.765131,0.296462,0.620208,0.254004,0.884968,0.763169,0.494609,0.440654,0.0325592,0.17929,0.0726689,0.700346,0.304173,0.581624,0.952013,0.313127,0.304709,0.517502,0.104193,0.0224215,0.566589,0.53316,0.124044,0.0250773,0.334446,0.834635,0.00913352,0.705387,0.143824,0.270208,0.501873,0.459342,0.894948,0.0259549,0.595504,0.866388,0.657036,0.606188,0.350001,0.238064,0.276087,0.539494,0.668471,0.0953388,0.301048,0.705559,0.32657,0.722442,0.619112,0.320596,0.356239,0.685404,0.700492,0.602581,0.32374,0.612952,0.166118,0.889018,0.225485,0.0593117,0.765461,0.859115,0.410259,0.899774,0.61674,0.344101,0.339455,0.863923,0.625325,0.29517,0.336064,0.56428,0.40263,0.663504,0.35974,0.925734,0.624202,0.812338,0.231773,0.657498,0.610913,0.670971,0.937075,0.735477,0.0804791,0.445166,0.112448,0.752235,0.64896,0.175319,0.0832207,0.486605,0.781854,0.123174,0.714254,0.748482,0.869444,0.187311,0.652291,0.814161,0.425497,0.174659,0.638731,0.705696,0.22429,0.633478,0.462677,0.182706,0.960922,0.89486,0.542538,0.79772,0.0320203,0.752081,0.953196,0.507477,0.326051,0.949076,0.789767,0.780821,0.13545,0.162216,0.162155,0.223546,0.0715442,0.361228,0.0599468,0.608448,0.705442,0.465879,0.595418,0.0721,0.651248,0.553393,0.125555,0.894627,0.756388,0.876198,0.342293,0.705135,0.99756,0.0487971,0.236307,0.123273,0.724358,0.485073,0.297834,0.567626,0.146686,0.655264,0.822241,0.119096,0.402489,0.340653,0.196832,0.176559,0.243671,0.646115,0.595309,0.402296,0.807509,0.0459681,0.143001,0.65031,0.0337607,0.357557,0.156729,0.610437,0.558152,0.904169,0.793876,0.2347,0.919246,0.840156,0.330075,0.442401,0.605323,0.150326,0.360495,0.622904,0.507406,0.274146,0.91203,0.0485588,0.16271,0.0445937,0.0417922,0.420283,0.128473,0.00810713,0.107158,0.270344,0.182037,0.78886,0.0157061,0.452905,0.886664,0.205494,0.840198,0.981634,0.940274,0.623984,0.0240701,0.410167,0.35372,0.596681,0.67851,0.66232,0.325646,0.080177,0.902141,0.392437,0.925471,0.543824,0.444211,0.399006,0.632815,0.856585,0.699248,0.725525,0.813857,0.802816,0.197368,0.0046823,0.147168,0.306367,0.160103,0.958316,0.934218,0.875951,0.36565,0.418989,0.535724,0.588616,0.215951,0.217541,0.696711,0.851171,0.294898,0.576518,0.681667,0.808445,0.441791,0.514131,0.756838,0.710594,0.218715,0.187941,0.0465301,0.107678,0.675852,0.903346,0.288603,0.583378,0.85,0.838807,0.398619,0.325352,0.699791,0.465011,0.241702,0.267192,0.701028,0.425464,0.00557709,0.955398,0.404626,0.88932,0.444486,0.232283,0.864182,0.0751795,0.28201,0.247518,0.932443,0.396528,0.0949944,0.133639,0.6322,0.79675,0.462073,0.599936,0.0349238,0.599756,0.314662,0.975683,0.859422,0.887124,0.365264,0.933952,0.211702,0.592113,0.698329,0.658509,0.00255132,0.204656,0.102906,0.239101,0.474522,0.307089,0.382021,0.81414,0.940542,0.553263,0.673331,0.831939,0.538695,0.169927,0.190752,0.586428,0.935439,0.853307,0.570854,0.322171,0.0198712,0.293074,0.460746,0.471815,0.890391,0.861219,0.213539,0.972325,0.981276,0.333092,0.398174,0.0903327,0.058138,0.0966773,0.10718,0.199857,0.623736,0.0298019,0.347171,0.58787,0.16831,0.230663,0.238447,0.965046,0.760861,0.668939,0.821208,0.268619,0.523968,0.815466,0.554611,0.970638,0.0823848,0.443383,0.329248,0.392406,0.841043,0.186976,0.925084,0.405639,0.207643,0.807497,0.992335,0.806186,0.52185,0.812554,0.855789,0.284627,0.402925,0.403534,0.744908,0.383705,0.283157,0.0971462,0.982924,0.691501,0.608966,0.817593,0.199472,0.770326,0.420153,0.984763,0.409571,0.68402,0.0970809,0.976933,0.626033,0.508841,0.339109,0.229654,0.724276,0.426588,0.797252,0.511636,0.870944,0.985906,0.860623,0.768286,0.543971,0.686459,0.937365,0.969283,0.949717,0.332455,0.317378,0.196179,0.546318,0.0105066,0.718293,0.0147614,0.324746,0.376661,0.871546,0.288584,0.780202,0.00398403,0.850868,0.657691,0.907615,0.782189,0.770673,0.990336,0.0226215,0.646096,0.924832,0.847662,0.197116,0.601512,0.391436,0.646594,0.348721,0.0194013,0.514755,0.128189,0.286837,0.49557,0.258361,0.845606,0.0750263,0.978093,0.524373,0.493377,0.983251,0.391193,0.690775,0.0788779,0.212268,0.449476,0.185538,0.341708,0.381262,0.328213,0.874179,0.324174,0.116564,0.800285,0.0295891,0.774981,0.107034,0.0733445,0.452569,0.297307,0.713073,0.0418705,0.200549,0.331995,0.698858,0.561715,0.667521,0.714116,0.750678,0.799785,0.984839,0.77712,0.768922,0.72365,0.816306,0.682015,0.242357,0.845951,|0.992841,0.570177,0.728083,0.957796,0.312913,0.630746,0.67356,0.125946,0.468865,0.181074,0.969004,0.403489,0.0435737,0.411867,0.350431,0.338659,0.144369,0.979336,0.665055,0.488254,0.0324258,0.926531,0.447801,0.378865,0.970652,0.701261,0.922472,0.900099,0.696607,0.657619,0.314171,0.61223,0.436749,0.246629,0.389299,0.679789,0.210963,0.144912,0.247431,0.259134,0.816932,0.499768,0.544694,0.830962,0.35544,0.625439,0.978123,0.541972,0.475483,0.501723,0.326463,0.84431,0.193898,0.103511,0.639216,0.189136,0.818039,0.923622,0.860007,0.742202,0.338304,0.535193,0.468573,0.725899,0.550384,0.0966406,0.212656,0.517339,0.382314,0.16708,0.267153,0.682205,0.560574,0.0719225,0.392983,0.907504,0.460296,0.671228,0.724476,0.511125,0.929196,0.793815,0.840766,0.657799,0.00613642,0.46058,0.210196,0.204685,0.443574,0.936797,0.453568,0.00645667,0.203554,0.0027889,0.488241,0.037097,0.277423,0.53714,0.313734,0.0889955,0.683567,0.13015,0.979623,0.96554,0.210208,0.639245,0.519789,0.353143,0.96835,0.443985,0.28536,0.379117,0.112377,0.623673,0.687462,0.212424,0.247344,0.928903,0.0174568,0.815256,0.35022,0.730705,0.469941,0.946889,0.167544,0.519577,0.280019,0.0195982,0.884317,0.855907,0.905322,0.720558,0.991752,0.137668,0.372203,0.107076,0.546907,0.855506,0.141569,0.724599,0.421464,0.81154,0.42182,0.309882,0.534002,0.926173,0.253903,0.133904,0.686982,0.303751,0.896838,0.426294,0.608483,0.24766,0.378301,0.536133,0.244912,0.642486,0.681553,0.812783,0.053196,0.0381599,0.510055,0.428265,0.150884,0.857139,0.906026,0.386169,0.925731,0.886651,0.77101,0.505946,0.0831662,0.346766,0.985684,0.847814,0.296486,0.914376,0.4925,0.772956,0.0450796,0.853933,0.538056,0.828023,0.53462,0.0893235,0.41609,0.433872,0.362271,0.583192,0.636644,0.378724,0.212146,0.412748,0.564153,0.365342,0.708689,0.648288,0.962682,0.477427,0.845837,0.646323,0.896087,0.944401,0.872133,0.225068,0.348665,0.745913,0.376103,0.619912,0.197655,0.192851,0.377835,0.670992,0.692574,0.824033,0.961046,0.653956,0.534519,0.459323,0.138225,0.891664,0.516833,0.958506,0.881474,0.260489,0.316925,0.21273,0.820604,0.177524,0.792459,0.352846,0.643631,0.291253,0.0419424,0.952822,0.585691,0.460344,0.635355,0.277118,0.561434,0.922213,0.687009,0.00406384,0.773584,0.490285,0.354296,0.0170703,0.0712909,0.681268,0.00164306,0.470016,0.436455,0.525691,0.119626,0.544819,0.717838,0.754645,0.171305,0.155569,0.349113,0.655152,0.395968,0.561471,0.89675,0.109551,0.733887,0.373207,0.301486,0.83953,0.223173,0.809021,0.898353,0.513676,0.904114,0.104182,0.516268,0.10895,0.31262,0.790579,0.915577,0.546456,0.998033,0.314478,0.731197,0.0686288,0.611836,0.466052,0.456559,0.4224,0.701385,0.291144,0.521546,0.41125,0.332102,0.564743,0.0905827,0.408798,0.156278,0.482665,0.219604,0.0925841,0.832881,0.807684,0.452995,0.288628,0.122791,0.147808,0.271651,0.761818,0.108488,0.132605,0.347704,0.0502453,0.0155428,0.452814,0.836043,0.109199,0.196441,0.690096,0.532567,0.497592,0.134806,0.146511,0.344273,0.500579,0.897215,0.0769958,0.254864,0.103353,0.0397331,0.0599649,0.14104,0.771277,0.627901,0.579515,0.438834,0.681279,0.53841,0.369508,0.360081,0.193649,0.920792,0.207417,0.958826,0.147353,0.53613,0.400857,0.644295,0.664008,0.267998,0.312414,0.00456417,0.852415,0.416911,0.003712,0.992293,0.333904,0.164879,0.729613,0.264588,0.175161,0.662715,0.522759,0.985964,0.158943,0.289538,0.923447,0.352425,0.46572,0.774179,0.132562,0.11383,0.50982,0.731215,0.49145,0.104594,0.360013,0.131931,0.0411943,0.857655,0.599452,0.721022,0.579241,0.295774,0.173025,0.276314,0.309887,0.132867,0.712538,0.0127869,0.259343,0.797018,0.287045,0.0141513,0.504184,0.0879613,0.398907,0.0871154,0.720558,0.705245,0.224333,0.626141,0.044519,0.373178,0.0996075,0.145757,0.810987,0.322798,0.656532,0.756366,0.520828,0.390669,0.0826245,0.522581,0.460315,0.298242,0.642993,0.731658,0.848038,0.423546,0.0647933,0.0227393,0.962686,0.055681,0.750552,0.739687,0.313136,0.410962,0.818155,0.482067,0.331436,0.263598,0.474489,0.312739,0.188974,0.677796,0.774456,0.935656,0.0570925,0.867393,0.123262,0.121827,0.210329,0.409474,0.912811,0.182718,0.751125,0.899269,0.884656,0.316039,0.425123,0.177479,0.308885,0.806146,0.187652,0.571491,0.358213,0.0921339,0.457292,0.511959,0.111896,0.352703,0.345497,0.191842,0.163488,0.0885,0.27985,0.581086,0.800641,0.768075,0.0891374,0.529325,0.560309,0.475786,0.148023,0.13891,0.777685,0.093217,0.160641,0.428934,0.946213,0.185607,0.30116,0.0250939,0.612697,0.837571,0.706274,0.217622,0.89536,0.199716,0.483966,0.0173834,0.673266,0.200775,0.0634561,0.604463,0.8404,0.404411,0.845285,0.336758,0.545715,0.361805,0.618635,0.0622295,0.620345,0.352362,0.602372,0.693434,0.339804,0.406339,0.689478,0.108521,0.793281,0.294908,0.734666,0.0769894,0.691619,0.141024,0.662743,0.337533,0.0170304,0.563054,0.758509,0.870446,0.0779446,0.899928,0.0652405,0.465286,0.647047,0.547965,0.0692143,0.880984,0.874957,0.132568,0.0196449,0.720834,0.178914,0.486045,0.879554,0.0623782,0.30001,0.118532,0.575218,0.0270513,0.787876,0.964022,0.561559,0.762023,0.247163,0.199366,0.579261,0.149092,0.229837,0.564397,0.142623,0.304038,0.460402,0.717844,0.118176,0.221513,0.580086,0.222012,0.719591,0.34095,0.264795,0.201767,0.73019,0.471673,0.825479,0.678923,0.751317,0.814645,0.862894,0.510911,0.488618,0.836281,0.477754,0.292583,0.503632,0.287771,0.754637,0.637856,0.315749,0.50695,0.757401,0.107211,0.0262637,0.882831,0.821856,0.709534,0.659158,0.973308,0.927726,0.846731,0.460654,0.966284,0.843749,0.272057,0.751823,0.388757,0.240892,0.207417,0.884265,0.0348092,0.885035,0.950592,0.99384,0.320254,0.0400435,0.141488,0.655019,0.811169,0.626185,0.916764,0.00999457,0.246353,0.844387,0.855102,0.605603,0.880517,0.596911,0.86133,0.221653,0.360202,0.35186,0.642638,0.553875,0.834093,0.131143,0.850286,0.414226,0.515987,0.996685,0.0896233,0.639754,0.337374,0.828469,0.837661,0.0886765,0.729513,0.94142,0.496396,0.494487,0.413513,0.0327989,0.950248,0.0925575,0.520967,0.126249,0.574631,0.97336,0.00126535,0.620548,0.945343,0.238956,0.0902866,0.658622,0.369046,0.623454,0.496925,0.620046,0.745326,0.756147,0.129944,0.571976,0.0974458,0.699654,0.78639,0.753455,0.116371,0.130436,0.917146,0.193975,0.646519,0.354746,0.861821,0.277271,0.402835,0.387312,0.133842,0.109353,0.951542,0.275984,0.176997,0.879342,0.571061,0.915966,0.281049,0.538365,0.57706,0.724187,0.942317,0.0331168,0.501304,0.459605,0.978315,0.601525,0.896393,0.454185,0.128924,0.609117,0.60147,0.308929,0.188811,0.302533,0.725955,0.496239,0.522325,0.385325,0.0409099,0.776315,0.963498,0.71334,0.208421,0.832415,0.548533,0.369063,0.193155,0.882703,0.942069,0.311114,0.0396953,0.0412098,0.34805,0.863608,0.691567,0.798149,0.49642,0.786136,0.0608342,0.36991,0.0148922,0.459304,0.757465,0.337388,0.923875,0.754959,0.948358,0.168794,0.356625,0.470502,0.959269,0.803999,0.103892,0.202953,0.60302,0.715148,0.646196,0.0453575,0.614103,0.0997954,0.702578,0.867729,0.210354,0.256613,0.442626,0.199577,0.450929,0.545431,0.963165,0.560294,0.973022,0.0468647,0.303002,0.294,0.921171,0.580947,0.930667,0.10706,0.37651,0.48093,0.918498,0.812827,0.112358,0.119688,0.845798,0.463619,0.881496,0.941614,0.982342,0.993578,0.510284,0.513494,0.722179,0.634528,0.851572,0.281397,0.120787,0.126975,0.214954,0.0476279,0.0545005,0.985566,0.0700811,0.692244,0.86682,0.245821,0.626405,0.94792,0.932966,0.998113,0.665871,0.268613,0.6854,0.534616,0.65588,0.0161148,0.77699,0.858436,0.367399,0.642705,0.8672,0.117444,0.982588,0.014533,0.512317,0.219362,0.730566,0.756054,0.86726,0.565142,0.14067,0.778138,0.423998,0.622215,0.231753,0.182852,0.141572,0.786586,0.966779,0.45107,0.668429,0.383969,0.61964,0.0867679,0.570355,0.0430869,0.0708416,0.519461,0.542653,0.734926,0.183105,0.605298,0.0881985,0.180909,0.549734,0.494499,0.339725,0.505565,0.0985264,0.690594,0.389471,0.324022,0.339738,0.953311,0.307723,0.0870835,0.859131,0.632695,0.290995,0.755567,0.309973,0.921784,0.319274,0.751863,0.107104,0.969418,0.127118,0.559558,0.784388,0.0579865,0.913548,0.0631046,0.80158,0.297603,0.12037,0.452102,0.502276,0.536589,0.188195,0.877256,0.313646,0.809041,0.228394,0.614482,0.312996,0.921111,0.172744,0.820812,0.00976914,0.77259,0.574057,0.49304,0.419089,0.00266498,0.48114,0.509404,0.792263,0.378656,0.72583,0.366917,0.544425,0.0566074,0.820817,0.0469691,0.916831,0.108377,0.741535,0.195988,0.918456,0.808458,0.213388,0.771393,0.66042,0.861716,0.925048,0.794996,0.159173,0.0590256,0.496886,0.441887,0.858946,0.290556,0.961451,0.0346996,0.616956,0.155957,0.138676,0.598615,0.448309,0.760777,0.754557,0.347135,0.348489,0.137849,0.160575,0.224359,0.0970616,0.204967,0.1075,0.804871,0.311499,0.800445,0.79005,0.31636,0.446006,0.231183,0.509824,0.883097,0.488788,0.470694,0.885758,0.687536,0.668248,0.755753,0.535434,0.930099,0.30478,0.664572,0.555913,0.219885,0.186048,0.277763,0.241007,0.709253,0.895508,0.3647,0.0159734,0.603633,0.775528,0.437017,0.230697,0.0702075,0.587583,0.45825,0.995152,0.0587249,0.0021947,0.267316,0.298187,0.527779,0.717522,0.499647,0.55872,0.142019,0.799237,0.257815,0.341614,0.780073,0.341151,0.852455,0.402991,0.26021,0.470401,0.843775,0.161551,0.7924,0.485329,0.509829,|0.825792,0.0568937,0.16351,0.41517,0.903627,0.440487,0.795981,0.235053,0.622405,0.9941,0.505226,0.856078,0.411164,0.586737,0.65258,0.725163,0.879521,0.072766,0.303457,0.243411,0.584723,0.261877,0.214018,0.956391,0.520185,0.110522,0.904623,0.110813,0.415601,0.558545,0.658144,0.362075,0.161422,0.233731,0.729614,0.468176,0.311857,0.962737,0.220202,0.981674,0.536779,0.200754,0.386194,0.568408,0.328767,0.737936,0.299656,0.381451,0.887473,0.0605826,0.700703,0.816953,0.422655,0.150384,0.393533,0.207229,0.640234,0.708385,0.320763,0.311038,0.294275,0.0973421,0.391802,0.594577,0.523279,0.411882,0.123769,0.795966,0.458093,0.515968,0.762109,0.895401,0.398245,0.435577,0.85369,0.767406,0.312194,0.713569,0.460597,0.190591,0.538609,0.131607,0.754498,0.478753,0.750535,0.0478464,0.162612,0.0880231,0.062165,0.912685,0.814308,0.701777,0.476274,0.570351,0.199593,0.049139,0.526629,0.9866,0.576937,0.546017,0.998917,0.917776,0.92965,0.548223,0.162531,0.343342,0.874798,0.880819,0.154938,0.983127,0.375906,0.1312,0.971241,0.540021,0.0869309,0.452666,0.957326,0.091862,0.583034,0.525835,0.151504,0.142586,0.774766,0.318352,0.968297,0.907737,0.407275,0.484357,0.503388,0.974709,0.654698,0.392687,0.322525,0.116388,0.994267,0.018441,0.894014,0.460616,0.836801,0.100552,0.629976,0.533182,0.126321,0.27739,0.916226,0.688526,0.25751,0.372332,0.396681,0.103616,0.478966,0.497466,0.882018,0.733054,0.342801,0.36871,0.827628,0.720866,0.966632,0.325684,0.170552,0.987756,0.0194408,0.943994,0.111461,0.535103,0.612009,0.35896,0.229175,0.164655,0.497294,0.210345,0.111176,0.528602,0.518268,0.0932418,0.633387,0.0628256,0.572091,0.6992,0.437032,0.310024,0.767937,0.11669,0.717087,0.964241,0.316119,0.973204,0.471004,0.801896,0.185196,0.0101306,0.424061,0.689683,0.17945,0.958655,0.521303,0.729137,0.709957,0.252146,0.825837,0.176005,0.236336,0.468461,0.479082,0.590522,0.841483,0.0943407,0.854285,0.141755,0.426737,0.456072,0.591058,0.0969017,0.586894,0.0108402,0.745034,0.732254,0.0694053,0.8803,0.00578225,0.0507715,0.924536,0.0341794,0.560214,0.939145,0.498538,0.986542,0.379872,0.736062,0.482612,0.925833,0.847916,0.116533,0.0208939,0.635072,0.199788,0.647752,0.891015,0.120482,0.160879,0.110131,0.539808,0.327826,0.0170572,0.0608333,0.640194,0.387035,0.729345,0.266274,0.722415,0.340227,0.322509,0.259061,0.644824,0.294005,0.0178229,0.74789,0.28213,0.295189,0.662522,0.322822,0.857286,0.0730896,0.93535,0.00335819,0.31177,0.0458195,0.395885,0.0417606,0.997635,0.533851,0.080874,0.195685,0.334535,0.94329,0.898967,0.36077,0.321216,0.589522,0.820594,0.0145551,0.164548,0.268383,0.0768545,0.395504,0.51389,0.150801,0.592093,0.435104,0.70925,0.283743,0.378425,0.577952,0.943853,0.33918,0.653057,0.643299,0.00546157,0.0649286,0.678443,0.984508,0.727438,0.239313,0.0190524,0.299775,0.134856,0.740791,0.964146,0.683771,0.80203,0.267841,0.451906,0.652866,0.831463,0.241442,0.935996,0.796382,0.494273,0.339144,0.948856,0.0507819,0.205842,0.600201,0.0859214,0.847654,0.844681,0.6077,0.166711,0.573582,0.56494,0.237076,0.703699,0.558888,0.0837576,0.384025,0.663313,0.636873,0.587851,0.898386,0.715544,0.405631,0.320533,0.28165,0.342363,0.270208,0.0564965,0.594076,0.294086,0.6873,0.921534,0.115849,0.795682,0.842777,0.862169,0.0611593,0.249201,0.036493,0.821638,0.793124,0.28441,0.445259,0.25755,0.296705,0.887121,0.0427096,0.0332491,0.0582117,0.267763,0.358848,0.368697,0.69251,0.555338,0.459001,0.130895,0.480935,0.116996,0.45863,0.484132,0.639464,0.0579129,0.800468,0.909161,0.511137,0.106773,0.578416,0.00907606,0.310662,0.270419,0.712701,0.95076,0.623573,0.0764425,0.640268,0.151528,0.183076,0.993394,0.87987,0.935863,0.0408089,0.636816,0.179137,0.927483,0.360873,0.658244,0.681508,0.824803,0.66052,0.373626,0.657877,0.419784,0.958589,0.168905,0.838704,0.904492,0.730394,0.784322,0.351153,0.523041,0.389728,0.751259,0.780962,0.361691,0.406858,0.0415368,0.168126,0.247391,0.119845,0.0787292,0.725244,0.192232,0.960725,0.469957,0.585738,0.638224,0.934883,0.777624,0.904173,0.999702,0.719263,0.600006,0.0909628,0.50599,0.734116,0.300094,0.26464,0.974463,0.130007,0.229426,0.220292,0.882061,0.798663,0.411559,0.0234029,0.303673,0.843392,0.849009,0.866197,0.264357,0.368176,0.790033,0.162781,0.23529,0.618409,0.824545,0.87923,0.592201,0.374435,0.0354554,0.670105,0.969891,0.832405,0.0664592,0.698536,0.642981,0.979007,0.451858,0.333056,0.371756,0.130863,0.253014,0.512628,0.723752,0.542073,0.335387,0.0389053,0.448903,0.200866,0.521769,0.848663,0.0954932,0.513502,0.962752,0.514527,0.869424,0.72674,0.11334,0.356794,0.0932205,0.812629,0.0390571,0.522835,0.906156,0.608616,0.349199,0.205612,0.507532,0.436664,0.408841,0.0344859,0.923454,0.273963,0.154984,0.305635,0.918592,0.840841,0.304304,0.499883,0.922343,0.46121,0.0540789,0.971896,0.891222,0.00234801,0.0650228,0.966336,0.223383,0.0344636,0.326717,0.67239,0.112419,0.587231,0.513629,0.0364774,0.842186,0.130269,0.812746,0.603587,0.9035,0.705659,0.679341,0.0844856,0.291222,0.428719,0.0598977,0.924572,0.104211,0.323261,0.239042,0.557939,0.641664,0.843531,0.730138,0.0276138,0.686978,0.185017,0.823152,0.0385951,0.394587,0.634371,0.237296,0.980725,0.749283,0.427495,0.733156,0.812338,0.920353,0.850447,0.388821,0.742299,0.351824,0.58347,0.159605,0.641263,0.924998,0.848984,0.708986,0.213726,0.192864,0.368205,0.141634,0.127108,0.643176,0.522723,0.746542,0.0816047,0.210378,0.427865,0.873155,0.252096,0.237774,0.0390774,0.68161,0.493147,0.552367,0.462797,0.0659038,0.889339,0.800315,0.276786,0.197716,0.380403,0.902599,0.476482,0.411169,0.407018,0.922007,0.167888,0.40943,0.51205,0.992957,0.61569,0.0502138,0.967217,0.777234,0.836783,0.705486,0.720001,0.420537,0.770867,0.250057,0.941904,0.882872,0.855369,0.818161,0.473413,0.173433,0.493791,0.676837,0.794039,0.463161,0.975537,0.257992,0.810764,0.0969094,0.757306,0.316856,0.209937,0.572498,0.936355,0.512591,0.179151,0.975726,0.0226792,0.157542,0.585019,0.36277,0.030894,0.514345,0.846107,0.460851,0.71927,0.224054,0.0868809,0.0921562,0.0743186,0.489151,0.81665,0.805601,0.513074,0.117245,0.90407,0.0826572,0.303164,0.25011,0.706929,0.945471,0.791251,0.827321,0.0826575,0.569603,0.105551,0.227302,0.0466117,0.392092,0.353258,0.166025,0.346004,0.360187,0.637292,0.0184836,0.100189,0.77598,0.935956,0.614298,0.990844,0.0524768,0.155989,0.912899,0.484414,0.35877,0.552845,0.181428,0.3607,0.382328,0.964168,0.743255,0.395417,0.166278,0.0588805,0.678321,0.811463,0.592471,0.431474,0.745147,0.666016,0.204686,0.196772,0.770833,0.473326,0.804922,0.0896788,0.796277,0.884211,0.0522681,0.304274,0.919137,0.614471,0.0300236,0.237564,0.489738,0.0647668,0.237344,0.969995,0.138057,0.944864,0.549072,0.844028,0.348963,0.416232,0.540253,0.676278,0.418828,0.594929,0.150421,0.414667,0.262729,0.210066,0.398461,0.255228,0.344498,0.607043,0.245275,0.461352,0.240132,0.648602,0.163151,0.260295,0.0893409,0.107551,0.708785,0.305061,0.0955644,0.974974,0.281639,0.121808,0.519406,0.147782,0.614246,0.0193253,0.358073,0.133428,0.81332,0.449651,0.530638,0.588622,0.345169,0.437812,0.24779,0.324077,0.489803,0.399738,0.595033,0.502098,0.324442,0.860665,0.79655,0.475136,0.532506,0.0695609,0.411688,0.448511,0.879477,0.369716,0.756349,0.112546,0.716146,0.925085,0.310083,0.2254,0.0884209,0.221034,0.720277,0.133334,0.950137,0.87533,0.903915,0.38127,0.336175,0.767563,0.459324,0.566331,0.298832,0.0393002,0.757859,0.457741,0.823715,0.273881,0.659281,0.158526,0.346434,0.486591,0.801079,0.0854278,0.173917,0.0198461,0.709997,0.770262,0.433018,0.642307,0.604728,0.732893,0.433771,0.887604,0.482781,0.48407,0.448142,0.874989,0.426753,0.783473,0.351354,0.845289,0.665924,0.606532,0.390139,0.847339,0.802047,0.809606,0.720004,0.88216,0.0702696,0.297051,0.731615,0.853051,0.847866,0.0389592,0.496898,0.543745,0.529752,0.66399,0.987913,0.900988,0.694263,0.592232,0.230572,0.907491,0.878911,0.970866,0.173899,0.628,0.650453,0.749914,0.498215,0.506801,0.947383,0.203358,0.223854,0.681298,0.763424,0.240075,0.896166,0.34537,0.0849124,0.420432,0.793225,0.582506,0.416542,0.180344,0.14188,0.432196,0.651736,0.911307,0.849689,0.203673,0.0583515,0.140182,0.169845,0.00621784,0.334413,0.489445,0.993521,0.309197,0.726622,0.0248432,0.965189,0.384908,0.260485,0.0402719,0.167271,0.64877,0.713181,0.948822,0.0693269,0.128423,0.119776,0.868496,0.967662,0.152104,0.230787,0.00593507,0.231249,0.42862,0.999756,0.342322,0.680692,0.732154,0.928015,0.699489,0.681806,0.657088,0.85373,0.540944,0.314198,0.964265,0.803984,0.213618,0.663602,0.97975,0.375193,0.335696,0.334244,0.40905,0.745149,0.729762,0.356772,0.482462,0.835251,0.950808,0.555851,0.160185,0.353434,0.685307,0.330272,0.032321,0.0563944,0.311549,0.348024,0.636061,0.160833,0.229731,0.416141,0.341451,0.19837,0.419707,0.908479,0.648196,0.450492,0.010519,0.69815,0.514354,0.143577,0.741741,0.764133,0.042792,0.869714,0.421241,0.485336,0.086389,0.877432,0.728999,0.62893,0.770463,0.317176,0.343787,0.514044,0.749092,0.508111,0.817774,0.77471,0.424309,0.48226,0.390378,0.477791,0.304966,0.143295,0.405743,0.821218,0.18181,0.975778,0.20796,0.754986,0.781313,0.286773,0.225648,0.129534,0.381789,0.677796,0.724562,0.121688,0.422193,|0.121658,0.266588,0.922875,0.205942,0.0849881,0.511673,0.31724,0.789346,0.538746,0.100383,0.683991,0.128598,0.730232,0.233737,0.975929,0.233845,0.438339,0.859478,0.970058,0.545335,0.0267197,0.0185252,0.778377,0.579985,0.50009,0.805848,0.880671,0.399227,0.32061,0.90931,0.569854,0.251738,0.855259,0.82337,0.0980979,0.107451,0.501633,0.876804,0.645958,0.00771207,0.701006,0.833562,0.256405,0.200373,0.0132785,0.575764,0.203012,0.36129,0.883643,0.31643,0.923367,0.44177,0.999934,0.626517,0.585375,0.901631,0.446009,0.772949,0.573368,0.156985,0.509255,0.369748,0.0443953,0.293136,0.910991,0.226755,0.200805,0.0405343,0.514674,0.811778,0.259498,0.328312,0.156239,0.682954,0.375854,0.967746,0.436234,0.28639,0.393494,0.967791,0.275803,0.585735,0.855842,0.867361,0.490367,0.521344,0.698597,0.415904,0.698211,0.928014,0.839774,0.556599,0.949604,0.0302076,0.888866,0.400594,0.0565557,0.116167,0.907877,0.931097,0.519943,0.000146031,0.0430778,0.340451,0.888634,0.473223,0.743111,0.568319,0.912886,0.852491,0.144563,0.319599,0.0240299,0.0854236,0.420598,0.331448,0.241697,0.304118,0.0829145,0.814708,0.803732,0.119855,0.0775664,0.177453,0.774249,0.212843,0.545552,0.62701,0.424048,0.680091,0.315363,0.29054,0.423912,0.997296,0.722993,0.0859573,0.900143,0.934334,0.268756,0.0552692,0.876686,0.125671,0.358702,0.952151,0.465962,0.187446,0.018515,0.502345,0.663712,0.369191,0.0183012,0.530933,0.455606,0.66438,0.375628,0.503646,0.281705,0.0646834,0.535567,0.0659894,0.658153,0.0752073,0.060077,0.22576,0.4632,0.917795,0.639884,0.0324673,0.931804,0.632697,0.536162,0.859328,0.70559,0.525849,0.532035,0.0870226,0.567141,0.318064,0.38222,0.671909,0.230985,0.277809,0.679853,0.211589,0.966239,0.0965649,0.497273,0.796978,0.972001,0.423025,0.975824,0.121301,0.0764515,0.00528151,0.0310674,0.747356,0.170162,0.181042,0.148333,0.893196,0.491127,0.0454909,0.0152443,0.267058,0.724016,0.0761783,0.738328,0.410287,0.0526124,0.476318,0.467406,0.88172,0.804319,0.133079,0.643377,0.956556,0.223395,0.424608,0.454083,0.692605,0.267538,0.73513,0.593907,0.956748,0.396672,0.489948,0.444993,0.987692,0.370181,0.579919,0.265198,0.942185,0.282601,0.89357,0.224786,0.0573531,0.673318,0.826241,0.363331,0.469839,0.130508,0.576669,0.737732,0.973547,0.210474,0.796645,0.423526,0.221097,0.00291431,0.335273,0.625715,0.607445,0.626304,0.109135,0.68467,0.466715,0.00425845,0.599216,0.0792634,0.588185,0.298621,0.656998,0.0672326,0.636658,0.620751,0.188813,0.882218,0.167841,0.895979,0.471174,0.382743,0.763815,0.273255,0.519659,0.285306,0.79173,0.630322,0.884995,0.643142,0.794413,0.484211,0.19787,0.570235,0.134878,0.066735,0.856846,0.34228,0.0203275,0.362166,0.768023,0.126688,0.463618,0.978499,0.387065,0.537297,0.177492,0.796648,0.713823,0.249728,0.34282,0.338885,0.431578,0.928511,0.590898,0.521762,0.00799346,0.190987,0.089479,0.36772,0.931912,0.719691,0.496231,0.229831,0.674565,0.339462,0.594833,0.0183976,0.422885,0.164415,0.147757,0.0183954,0.877618,0.222521,0.0134438,0.565798,0.308753,0.758784,0.160448,0.284546,0.0551186,0.257914,0.560124,0.025608,0.0149382,0.70998,0.92852,0.839959,0.602983,0.637529,0.885139,0.0691619,0.112189,0.349439,0.24637,0.809992,0.812011,0.796392,0.486542,0.24623,0.625074,0.244608,0.882615,0.839378,0.956898,0.0571603,0.655811,0.879545,0.870264,0.870955,0.875461,0.343326,0.0320965,0.0834107,0.0115074,0.659771,0.808567,0.300892,0.0346239,0.819165,0.100001,0.984802,0.576605,0.729756,0.270406,0.128507,0.231184,0.89495,0.183186,0.47296,0.813971,0.575204,0.56315,0.0860625,0.498748,0.0383597,0.462368,0.864588,0.421821,0.474011,0.908078,0.443286,0.103078,0.775752,0.423468,0.9308,0.659832,0.136459,0.711648,0.0482463,0.796459,0.572766,0.364977,0.95645,0.820216,0.00849724,0.725469,0.798925,0.319527,0.95376,0.417634,0.346743,0.696388,0.620463,0.391893,0.974398,0.119226,0.602891,0.233951,0.693923,0.335816,0.907869,0.432333,0.156062,0.791344,0.0285441,0.0472062,0.472571,0.394799,0.66358,0.383426,0.276674,0.840562,0.0198736,0.229647,0.0647168,0.583305,0.668137,0.184438,0.928024,0.808541,0.475204,0.158699,0.750562,0.365915,0.515333,0.323711,0.694954,0.174351,0.0664614,0.192675,0.978009,0.815295,0.930107,0.126759,0.238201,0.135022,0.652934,0.312857,0.864302,0.20559,0.627153,0.637461,0.198501,0.168507,0.715917,0.546455,0.499309,0.670029,0.804605,0.954355,0.50553,0.374907,0.501424,0.170175,0.177374,0.120894,0.858348,0.449263,0.443267,0.696116,0.471712,0.166035,0.727128,0.524315,0.928117,0.779685,0.994274,0.123652,0.410053,0.921681,0.0702516,0.0952922,0.726429,0.315864,0.525998,0.259199,0.77609,0.263515,0.527416,0.663628,0.140822,0.932781,0.374913,0.455303,0.841742,0.784519,0.65206,0.877869,0.562428,0.0805962,0.762133,0.572093,0.422331,0.271889,0.0501297,0.442191,0.13103,0.367944,0.889406,0.713432,0.849774,0.0791129,0.228041,0.228546,0.402612,0.158845,0.332502,0.547897,0.666258,0.984457,0.847949,0.311746,0.227723,0.0562266,0.19387,0.0943732,0.881764,0.329446,0.866093,0.299488,0.643209,0.474867,0.381137,0.177546,0.495565,0.201634,0.099784,0.648318,0.100644,0.971851,0.0330819,0.559196,0.200283,0.159996,0.676814,0.676285,0.128809,0.926151,0.0893542,0.054162,0.237425,0.354112,0.192067,0.634761,0.994394,0.969368,0.603096,0.32967,0.364167,0.152146,0.826565,0.367065,0.169108,0.298189,0.0872676,0.665077,0.44091,0.700011,0.610706,0.15047,0.804531,0.0699933,0.121751,0.140659,0.136584,0.727745,0.560073,0.074715,0.612317,0.920434,0.474118,0.928082,0.454393,0.511099,0.835838,0.0245783,0.778009,0.397121,0.297448,0.224086,0.142895,0.232629,0.995927,0.510632,0.279592,0.997886,0.234972,0.77432,0.80265,0.250631,0.0527735,0.852262,0.228602,0.13868,0.246361,0.454437,0.855423,0.719183,0.288408,0.285493,0.417467,0.277785,0.341186,0.60147,0.141778,0.657505,0.0974003,0.960523,0.0513963,0.321094,0.869652,0.808927,0.509003,0.782629,0.0974228,0.27751,0.16955,0.705162,0.523482,0.46966,0.635942,0.510305,0.221387,0.965519,0.491709,0.907877,0.336523,0.486848,0.636988,0.656742,0.762137,0.515732,0.332153,0.603345,0.902279,0.0597056,0.688785,0.35529,0.364264,0.287798,0.367318,0.960879,0.415706,0.596224,0.218532,0.702005,0.448255,0.962746,0.654191,0.76877,0.525209,0.905857,0.592633,0.136532,0.846643,0.876851,0.192452,0.317886,0.411248,0.24834,0.422319,0.899312,0.777405,0.725459,0.930785,0.178129,0.625459,0.420759,0.585429,0.595822,0.987215,0.876671,0.362342,0.089317,0.75049,0.900033,0.193723,0.780405,0.484471,0.215802,0.409135,0.248367,0.242117,0.883491,0.7676,0.75823,0.205655,0.21155,0.304349,0.532163,0.920928,0.0871615,0.102998,0.711583,0.948012,0.126305,0.732306,0.923967,0.640121,0.186885,0.228003,0.479428,0.848708,0.574286,0.127946,0.117404,0.0353589,0.206778,0.00672299,0.913738,0.872942,0.884169,0.806781,0.0120299,0.939603,0.810005,0.418785,0.722046,0.909477,0.780155,0.68504,0.332213,0.761228,0.313848,0.957894,0.866502,0.824146,0.746183,0.672117,0.523037,0.571246,0.550811,0.772836,0.0624384,0.532787,0.954328,0.810754,0.13754,0.994168,0.689854,0.178172,0.722901,0.385595,0.446777,0.00425696,0.779027,0.566967,0.10091,0.353336,0.746746,0.0870311,0.410919,0.0601867,0.738512,0.480851,0.984661,0.994905,0.00153112,0.450959,0.289096,0.763134,0.430507,0.252756,0.283364,0.90585,0.767395,0.22668,0.952216,0.057731,0.906179,0.644597,0.677033,0.314837,0.596765,0.311024,0.162287,0.131214,0.274045,0.93963,0.225477,0.579731,0.85598,0.884138,0.940904,0.774171,0.756468,0.945436,0.871936,0.246235,0.499543,0.353025,0.873304,0.816324,0.0779914,0.0102945,0.467025,0.806747,0.260886,0.886766,0.0834603,0.564406,0.894903,0.715525,0.632316,0.783134,0.331408,0.514495,0.394559,0.210704,0.551603,0.162768,0.838901,0.546007,0.130962,0.961347,0.440259,0.0790721,0.833035,0.965412,0.29941,0.342565,0.688368,0.441077,0.0708045,0.562584,0.168328,0.0017699,0.291715,0.402169,0.650942,0.255226,0.248056,0.2432,0.708074,0.42816,0.694121,0.546955,0.414548,0.695257,0.961476,0.612717,0.748951,0.0846708,0.410673,0.887282,0.516121,0.126826,0.962414,0.364384,0.694124,0.42905,0.0656056,0.743089,0.954555,0.963448,0.488679,0.361666,0.00861633,0.454833,0.840704,0.890175,0.0152715,0.112311,0.0620404,0.531695,0.785531,0.354304,0.43229,0.72804,0.0447628,0.101517,0.612972,0.344257,0.915751,0.064546,0.457834,0.528096,0.934632,0.899384,0.173,0.154976,0.661297,0.00675547,0.552997,0.167475,0.880234,0.475866,0.838163,0.32508,0.478385,0.250265,0.979362,0.503435,0.656335,0.49468,0.178435,0.468399,0.915576,0.671247,0.968738,0.958591,0.571489,0.360861,0.704319,0.585902,0.388176,0.233626,0.89662,0.0385093,0.325757,0.430254,0.269401,0.00574672,0.708262,0.118567,0.778856,0.491903,0.789364,0.8235,0.528272,0.779586,0.837672,0.337784,0.659806,0.43014,0.700146,0.621422,0.913441,0.0521781,0.76569,0.935812,0.735282,0.994463,0.163793,0.89272,0.366523,0.77775,0.199557,0.268082,0.577525,0.197263,0.420377,0.253625,0.855494,0.049304,0.100108,0.234889,0.203958,0.479403,0.483577,0.330273,0.821986,0.538536,0.951475,0.225831,0.528128,0.207834,0.233828,0.361866,0.569296,0.162652,0.299008,0.412262,0.622668,0.138087,0.76987,0.933601,0.369972,0.867206,0.18828,0.174397,0.280004,0.725027,0.367324,0.223522,0.56481,0.0393332,0.112723,0.682114,0.289501,|0.0511286,0.395513,0.28175,0.467487,0.851253,0.607858,0.758551,0.161604,0.429235,0.0734934,0.108176,0.773112,0.529552,0.755676,0.874265,0.625801,0.292544,0.617811,0.910105,0.356511,0.642311,0.657471,0.816956,0.321523,0.552864,0.69448,0.069016,0.617395,0.480116,0.939853,0.837917,0.389531,0.4708,0.454722,0.581984,0.796133,0.687722,0.664323,0.127598,0.115002,0.214508,0.743461,0.795375,0.66665,0.759181,0.162204,0.540336,0.0770897,0.376332,0.74718,0.481173,0.998026,0.218191,0.21495,0.6045,0.804652,0.324914,0.879057,0.178165,0.213724,0.692212,0.490447,0.71889,0.969048,0.947878,0.956536,0.201489,0.901154,0.181063,0.192959,0.210195,0.346379,0.433957,0.362797,0.31376,0.116805,0.787241,0.601302,0.204761,0.467922,0.171231,0.513296,0.379684,0.960262,0.523951,0.245454,0.578423,0.481695,0.890065,0.210261,0.84146,0.453153,0.796172,0.13283,0.929575,0.641817,0.835781,0.925791,0.0783319,0.67268,0.0113454,0.496257,0.948632,0.0968641,0.88686,0.173456,0.299955,0.765801,0.617903,0.698339,0.968252,0.695741,0.652318,0.328224,0.220779,0.188862,0.413422,0.776019,0.834087,0.558402,0.695295,0.56412,0.935223,0.980986,0.763271,0.564196,0.169436,0.388126,0.577082,0.447631,0.413884,0.564331,0.184365,0.638983,0.778273,0.169266,0.517539,0.363775,0.94631,0.948713,0.2414,0.200025,0.0550025,0.339754,0.424404,0.840807,0.622243,0.426955,0.823822,0.822423,0.4215,0.168669,0.638716,0.191016,0.247166,0.71428,0.761833,0.293702,0.895626,0.123835,0.575595,0.558914,0.0844943,0.827408,0.712362,0.144842,0.616358,0.0445945,0.418941,0.604738,0.460014,0.283718,0.168912,0.734561,0.349092,0.971329,0.937271,0.0839656,0.993802,0.162165,0.146716,0.0918128,0.482466,0.830022,0.418459,0.829559,0.658759,0.150218,0.574637,0.629375,0.133194,0.0829256,0.653086,0.515978,0.936278,0.323807,0.496121,0.812099,0.201958,0.385915,0.825817,0.240497,0.492022,0.836435,0.672744,0.573132,0.635016,0.502127,0.231446,0.844054,0.623539,0.548914,0.0849202,0.948084,0.548129,0.147477,0.366818,0.11899,0.599565,0.0394826,0.0726385,0.74708,0.703411,0.404561,0.774569,0.512102,0.142859,0.142628,0.986786,0.869026,0.829539,0.61233,0.942969,0.919285,0.988871,0.109272,0.722489,0.610874,0.027509,0.703317,0.161336,0.847153,0.437967,0.955668,0.515201,0.848944,0.299839,0.310972,0.853282,0.0147095,0.0860814,0.236403,0.539998,0.666063,0.427118,0.839311,0.632979,0.693437,0.96302,0.491618,0.166413,0.420422,0.0796139,0.276422,0.379356,0.934186,0.320813,0.787785,0.149544,0.475342,0.926426,0.093524,0.196968,0.0741382,0.67723,0.269962,0.785705,0.212155,0.695738,0.378252,0.0961877,0.462429,0.672671,0.856261,0.286791,0.396903,0.567662,0.36247,0.872732,0.324492,0.92071,0.457625,0.804041,0.266038,0.54051,0.672707,0.0283177,0.216385,0.391206,0.562444,0.0966326,0.0462682,0.0806236,0.559566,0.295809,0.913399,0.778779,0.93101,0.230911,0.832399,0.132145,0.787364,0.823802,0.758687,0.621057,0.848964,0.881052,0.65744,0.62919,0.175286,0.287501,0.705046,0.804905,0.82599,0.0222873,0.0117137,0.410555,0.584417,0.604957,0.865712,0.63188,0.0601708,0.552369,0.826091,0.582401,0.424165,0.419437,0.865113,0.44493,0.139506,0.317529,0.833591,0.395848,0.820695,0.251492,0.973609,0.924656,0.420592,0.849882,0.649985,0.47551,0.883887,0.500831,0.629384,0.249445,0.909273,0.82397,0.0578386,0.765975,0.204725,0.835026,0.425058,0.820705,0.704657,0.752899,0.405332,0.33707,0.373501,0.274405,0.0611175,0.606146,0.89795,0.668466,0.787146,0.341788,0.292849,0.947721,0.122275,0.76272,0.608764,0.905146,0.4155,0.533031,0.825563,0.791237,0.366074,0.455699,0.288848,0.397158,0.420835,0.322804,0.896036,0.1476,0.805781,0.338356,0.817061,0.804074,0.726272,0.621578,0.171066,0.452073,0.239548,0.23894,0.661465,0.778018,0.978715,0.862203,0.0892007,0.0439681,0.260935,0.502608,0.680915,0.577321,0.0612087,0.829467,0.764085,0.974099,0.0393824,0.829089,0.0413088,0.0463821,0.042144,0.903733,0.229515,0.0266948,0.201782,0.917003,0.854957,0.130971,0.770075,0.739365,0.614918,0.633455,0.136615,0.601483,0.87887,0.281069,0.131841,0.126898,0.748783,0.932153,0.227677,0.579576,0.525765,0.254215,0.316169,0.155904,0.732195,0.490385,0.124916,0.0269634,0.323438,0.673182,0.914627,0.580849,0.256805,0.272793,0.967389,0.290011,0.43913,0.969308,0.581415,0.734319,0.191801,0.436647,0.475373,0.643619,0.719379,0.911029,0.93654,0.668942,0.59533,0.621413,0.260443,0.492787,0.782142,0.419656,0.496908,0.755374,0.477531,0.587421,0.0221555,0.508056,0.00825661,0.997094,0.962735,0.381948,0.108876,0.27737,0.786866,0.704887,0.310078,0.242233,0.586708,0.0858757,0.315796,0.28449,0.934569,0.792613,0.162848,0.328093,0.715642,0.942134,0.265481,0.909735,0.472156,0.482175,0.297501,0.502764,0.0951322,0.942233,0.989592,0.848994,0.185247,0.13424,0.0091809,0.191649,0.204745,0.888755,0.158076,0.14228,0.883845,0.420787,0.852359,0.579257,0.613389,0.487986,0.492889,0.286172,0.413763,0.0715463,0.281954,0.380247,0.526157,0.185589,0.0520808,0.379703,0.417867,0.783295,0.943895,0.788748,0.3232,0.40158,0.572769,0.07999,0.581669,0.0127499,0.954086,0.541113,0.935278,0.24111,0.476818,0.682652,0.598748,0.369438,0.885183,0.362662,0.364828,0.370225,0.141471,0.680573,0.0169308,0.545344,0.0381774,0.540138,0.929075,0.875643,0.842842,0.920626,0.915895,0.986284,0.706786,0.792795,0.968043,0.243434,0.212778,0.243822,0.578276,0.69242,0.8332,0.480566,0.759202,0.26536,0.063929,0.86147,0.531768,0.474179,0.626369,0.412396,0.874703,0.944322,0.406554,0.0554032,0.926496,0.997839,0.0614936,0.765815,0.845138,0.971116,0.295859,0.216786,0.570694,0.599548,0.718155,0.41649,0.504426,0.344621,0.0627413,0.407535,0.673887,0.981286,0.385847,0.888453,0.699274,0.871923,0.192438,0.809327,0.499788,0.802301,0.0603878,0.793156,0.275963,0.0831971,0.0945657,0.717936,0.358924,0.501424,0.336205,0.472307,0.933099,0.271888,0.261666,0.187436,0.34297,0.787363,0.0539828,0.00641227,0.268857,0.569679,0.829538,0.637934,0.568829,0.0188583,0.987861,0.0781806,0.204317,0.0647384,0.349966,0.365002,0.43229,0.170433,0.472802,0.698676,0.421353,0.872951,0.223928,0.892433,0.0286662,0.676044,0.334278,0.0557892,0.559629,0.225864,0.0886512,0.639169,0.42239,0.802483,0.0579325,0.769894,0.617643,0.434755,0.863481,0.997328,0.287575,0.256402,0.145136,0.477211,0.163878,0.393321,0.569256,0.057385,0.253512,0.679782,0.274524,0.121003,0.0814186,0.973835,0.433986,0.742201,0.263402,0.726254,0.803958,0.468848,0.021521,0.310587,0.492761,0.245817,0.935011,0.612277,0.686518,0.352147,0.767771,0.202695,0.910244,0.0368373,0.275157,0.249921,0.0528095,0.0485986,0.0300149,0.359006,0.171288,0.574523,0.399312,0.517571,0.071724,0.604607,0.927194,0.936905,0.389627,0.116885,0.290505,0.450399,0.296603,0.919425,0.717839,0.743928,0.0655066,0.642978,0.849937,0.58515,0.276114,0.811733,0.45216,0.692363,0.251057,0.248776,0.901222,0.784575,0.328736,0.257126,0.177046,0.813907,0.595906,0.566144,0.00829947,0.185113,0.892582,0.0616051,0.533947,0.689713,0.297347,0.604411,0.820561,0.0931987,0.248366,0.883562,0.216902,0.343632,0.947014,0.758583,0.00339097,0.0373968,0.254741,0.634966,0.574532,0.0565672,0.780475,0.215972,0.882137,0.355909,0.951394,0.397938,0.882611,0.528788,0.616733,0.579716,0.404752,0.393632,0.121571,0.757483,0.0361773,0.220816,0.237758,0.774994,0.239002,0.457896,0.825726,0.858824,0.614104,0.934609,0.306787,0.629198,0.253287,0.407374,0.331199,0.912231,0.475942,0.112175,0.21689,0.871899,0.334069,0.695019,0.723391,0.592118,0.966073,0.891756,0.576657,0.980674,0.223599,0.580837,0.413733,0.0720267,0.319457,0.581036,0.580281,0.240884,0.27733,0.872372,0.519079,0.725817,0.487625,0.566465,0.338132,0.425976,0.419397,0.260336,0.209843,0.905744,0.806966,0.999043,0.783655,0.563555,0.333402,0.307326,0.786124,0.147406,0.561427,0.920685,0.878415,0.366569,0.00527507,0.358563,0.387604,0.00871485,0.607369,0.884592,0.426466,0.988516,0.984558,0.123432,0.988143,0.151221,0.729475,0.686267,0.765603,0.46026,0.538652,0.513938,0.422512,0.773406,0.332278,0.0923809,0.811934,0.647283,0.455471,0.154467,0.424864,0.0231787,0.738213,0.41931,0.508488,0.718139,0.787578,0.200018,0.0084998,0.67469,0.0383816,0.902093,0.246629,0.0449431,0.930415,0.640906,0.397431,0.456947,0.661747,0.637434,0.410686,0.513617,0.681402,0.902645,0.409834,0.995754,0.406664,0.0395976,0.570709,0.187514,0.57962,0.694514,0.943752,0.395773,0.955139,0.271705,0.439599,0.98606,0.533423,0.490768,0.823836,0.972925,0.669356,0.105748,0.235726,0.711605,0.46259,0.154243,0.926404,0.499587,0.506975,0.95858,0.293625,0.480109,0.724324,0.289946,0.555938,0.593021,0.678324,0.676381,0.190375,0.556063,0.133425,0.161732,0.93712,0.657124,0.466002,0.235747,0.470797,0.778678,0.98358,0.357604,0.775082,0.631828,0.40186,0.787414,0.75751,0.244653,0.852047,0.191585,0.865326,0.107215,0.908753,0.501932,0.52979,0.0958035,0.583036,0.620692,0.708985,0.829008,0.276354,0.37377,0.0857194,0.567414,0.980298,0.671847,0.264926,0.611747,0.923405,0.215719,0.692365,0.0546495,0.280256,0.248992,0.292259,0.94011,0.991307,0.14067,0.890698,0.327766,0.986364,0.566855,0.035123,0.840784,0.969689,0.943902,0.768958,0.863528,0.820786,0.304653,0.455159,0.571888,0.71505,0.698925,0.0751284,0.501857,0.246618,0.0881748,0.606101,0.21795,0.196403,0.0736681,0.970531,|0.0701169,0.738412,0.0814995,0.554262,0.0707526,0.081364,0.299354,0.513663,0.976203,0.573943,0.100686,0.888804,0.0321693,0.267338,0.813811,0.742803,0.307016,0.676147,0.0811333,0.721014,0.660874,0.158747,0.0897382,0.631235,0.856744,0.290518,0.19643,0.315383,0.57982,0.149559,0.399006,0.469583,0.275159,0.140901,0.930866,0.928715,0.625181,0.345352,0.223562,0.404073,0.86068,0.0597451,0.65673,0.249129,0.864308,0.434431,0.798378,9.39965e-05,0.627071,0.558164,0.60507,0.643762,0.775649,0.919907,0.547523,0.561845,0.196924,0.911845,0.330112,0.248223,0.809974,0.842811,0.931281,0.284173,0.0761013,0.76295,0.170059,0.338253,0.393595,0.24615,0.635912,0.30605,0.0658582,0.0618833,0.0347394,0.141023,0.192113,0.708852,0.0450019,0.0726908,0.465864,0.167735,0.661745,0.499736,0.0311413,0.625151,0.697549,0.184008,0.360695,0.208125,0.056383,0.14177,0.29114,0.382562,0.209434,0.87244,0.962866,0.545448,0.30346,0.0551912,0.569799,0.679641,0.930526,0.100212,0.40779,0.467678,0.752409,0.426815,0.333382,0.0628977,0.40861,0.165585,0.797906,0.703778,0.128717,0.831449,0.35421,0.930047,0.57817,0.927974,0.959613,0.615385,0.171382,0.753451,0.440691,0.0356327,0.372384,0.891563,0.999471,0.495697,0.520841,0.632391,0.364712,0.543381,0.10939,0.0152788,0.342135,0.343296,0.195095,0.0900978,0.322716,0.987884,0.892286,0.847714,0.529229,0.619942,0.798767,0.501742,0.521821,0.213731,0.29632,0.970198,0.0656158,0.998632,0.647685,0.432947,0.700733,0.0793179,0.533105,0.21371,0.289899,0.810092,0.390631,0.767347,0.327647,0.333759,0.457523,0.814342,0.806063,0.0885276,0.380388,0.151754,0.638218,0.31309,0.46809,0.592665,0.971852,0.821647,0.798751,0.593941,0.345147,0.157083,0.82151,0.0515768,0.135278,0.22876,0.400647,0.872919,0.730759,0.846228,0.565392,0.1994,0.0592182,0.0142761,0.713006,0.378517,0.418551,0.939054,0.558021,0.325714,0.855233,0.102439,0.304018,0.193758,0.494929,0.047981,0.364885,0.957455,0.139283,0.321435,0.728704,0.0805231,0.389372,0.768153,0.966942,0.244007,0.725763,0.816731,0.0707301,0.470556,0.253188,0.43193,0.557785,0.742394,0.310434,0.803159,0.508521,0.255577,0.0137189,0.0679841,0.327411,0.0497828,0.228403,0.34452,0.0626763,0.100526,0.661524,0.120971,0.145568,0.985256,0.312911,0.62415,0.348337,0.153483,0.609847,0.949039,0.283482,0.30328,0.304711,0.361838,0.698317,0.142026,0.249027,0.177846,0.0284886,0.180901,0.883508,0.120051,0.533151,0.542865,0.378585,0.446939,0.0846074,0.593709,0.0491168,0.891502,0.195117,0.734978,0.446555,0.585001,0.970766,0.830047,0.566701,0.128959,0.491041,0.599871,0.560422,0.708666,0.0869656,0.380827,0.675823,0.984076,0.0808361,0.0801595,0.906256,0.782592,0.0705836,0.478416,0.875081,0.281013,0.770224,0.781888,0.970638,0.715753,0.610079,0.37721,0.864324,0.522214,0.341978,0.754223,0.247893,0.0770457,0.0402296,0.648453,0.899633,0.343844,0.81866,0.947824,0.562987,0.872062,0.302658,0.649143,0.64598,0.250453,0.526618,0.780959,0.242332,0.17487,0.933676,0.906963,0.946466,0.326126,0.12044,0.511374,0.413956,0.665745,0.207029,0.0582064,0.622409,0.89524,0.588808,0.522881,0.118321,0.233588,0.743134,0.909188,0.683709,0.707355,0.996259,0.0186557,0.120006,0.51716,0.526095,0.667244,0.0915085,0.326068,0.0336658,0.658109,0.982997,0.129353,0.740127,0.471783,0.0748331,0.314763,0.225235,0.363177,0.197155,0.32882,0.338031,0.0719497,0.80987,0.956532,0.686482,0.63809,0.46875,0.504072,0.628814,0.544504,0.995213,0.817684,0.808996,0.867798,0.314455,0.945065,0.100681,0.392182,0.394,0.272235,0.547386,0.00916213,0.952813,0.0400698,0.729188,0.386175,0.445994,0.851602,0.603633,0.183796,0.0346332,0.611301,0.44227,0.458139,0.925206,0.940691,0.720122,0.422093,0.209969,0.150637,0.901357,0.436473,0.57125,0.781508,0.624891,0.159191,0.366352,0.426873,0.424636,0.194731,0.14995,0.168321,0.490092,0.815797,0.330602,0.48375,0.357436,0.586406,0.733302,0.491497,0.196791,0.626161,0.225268,0.201541,0.790685,0.715688,0.992821,0.852453,0.124661,0.765843,0.0172665,0.143709,0.119456,0.978341,0.156979,0.603051,0.312418,0.25065,0.495055,0.0477973,0.294714,0.91817,0.0696134,0.00199234,0.387629,0.122797,0.495787,0.235409,0.387816,0.784704,0.235844,0.56915,0.598795,0.102847,0.798737,0.690703,0.376207,0.601992,0.591033,0.206349,0.313106,0.884944,0.294634,0.30547,0.721957,0.981478,0.667899,0.329871,0.0389085,0.107082,0.257021,0.557619,0.712492,0.791306,0.136509,0.0144358,0.474991,0.994378,0.621184,0.113375,0.973957,0.886456,0.848917,0.389738,0.999427,0.865242,0.204212,0.220893,0.67327,0.725905,0.568015,0.772755,0.0429165,0.395379,0.256791,0.519826,0.267893,0.618572,0.0684226,0.347424,0.299542,0.970054,0.374701,0.546316,0.938194,0.991635,0.970352,0.078229,0.957969,0.300385,0.612119,0.462817,0.266702,0.711662,0.93209,0.895311,0.0648084,0.537326,0.768654,0.596442,0.31019,0.795058,0.574614,0.214104,0.416857,0.68536,0.0645051,0.799674,0.566832,0.127699,0.95047,0.467492,0.192528,0.910393,0.53533,0.902187,0.803357,0.842931,0.88399,0.282056,0.842488,0.526864,0.5836,0.0135491,0.168306,0.0300042,0.843699,0.286279,0.336413,0.353405,0.845836,0.280206,0.477012,0.99662,0.998192,0.717354,0.423969,0.20451,0.499202,0.241009,0.396027,0.686298,0.958434,0.652387,0.693438,0.21217,0.910132,0.254707,0.0126359,0.798232,0.3238,0.993128,0.763958,0.630024,0.670842,0.94282,0.194354,0.0629366,0.10498,0.341469,0.112991,0.21883,0.965732,0.403395,0.552405,0.63716,0.750781,0.807132,0.426761,0.962951,0.655167,0.456181,0.649833,0.431466,0.164536,0.260118,0.739136,0.170221,0.159114,0.296756,0.648045,0.7869,0.560942,0.45856,0.108394,0.832526,0.511534,0.272909,0.741454,0.91237,0.915357,0.522088,0.121493,0.630941,0.861992,0.850579,0.0101067,0.564763,0.0246877,0.645148,0.22975,0.315819,0.680471,0.627859,0.611103,0.497925,0.704014,0.706945,0.00714296,0.586051,0.60185,0.613637,0.969249,0.116572,0.447272,0.77213,0.913891,0.707901,0.806762,0.132018,0.571601,0.657148,0.630527,0.523708,0.912166,0.354036,0.0372511,0.792835,0.98109,0.109544,0.359785,0.4474,0.159489,0.900985,0.549249,0.816152,0.6828,0.81767,0.132167,0.853826,0.00292516,0.0345969,0.994089,0.618098,0.848808,0.955467,0.767612,0.320557,0.1748,0.513755,0.931271,0.743257,0.521336,0.972441,0.759606,0.259781,0.651918,0.982906,0.730724,0.03202,0.185004,0.118418,0.545838,0.959718,0.96681,0.921691,0.176907,0.679668,0.218563,0.453908,0.13631,0.426531,0.64101,0.391534,0.236348,0.70872,0.762815,0.36534,0.304899,0.643503,0.862332,0.0857314,0.389265,0.392953,0.608147,0.562542,0.193132,0.760085,0.271986,0.441051,0.434255,0.170316,0.499892,0.742282,0.126631,0.492529,0.0830166,0.0301052,0.359451,0.198594,0.0701052,0.0592786,0.259077,0.190763,0.549973,0.29818,0.402162,0.575577,0.459251,0.602038,0.715372,0.625604,0.777426,0.528186,0.1202,0.953421,0.704455,0.230259,0.0158005,0.935988,0.131158,0.442183,0.817591,0.108607,0.683627,0.957787,0.853245,0.0110888,0.753999,0.192351,0.923298,0.682365,0.926381,0.0829768,0.427945,0.450789,0.722397,0.167686,0.404431,0.0750768,0.671901,0.174628,0.782943,0.587459,0.0795048,0.760082,0.0152441,0.442556,0.551952,0.406407,0.639868,0.335178,0.80021,0.63761,0.916607,0.688601,0.665311,0.634118,0.981106,0.766222,0.987121,0.155326,0.646913,0.280207,0.466931,0.886038,0.422989,0.119933,0.0682928,0.312242,0.759666,0.616716,0.480914,0.971924,0.576912,0.054188,0.707205,0.193761,0.664832,0.756204,0.511426,0.524926,0.772549,0.208197,0.252696,0.300646,0.201591,0.835406,0.63705,0.0633089,0.0163447,0.534618,0.34529,0.0269896,0.419017,0.696726,0.790717,0.455423,0.294745,0.142874,0.634983,0.51009,0.15977,0.448064,0.968372,0.534326,0.422711,0.150297,0.426097,0.763117,0.978762,0.855087,0.756638,0.186712,0.559102,0.134453,0.425956,0.780232,0.0729538,0.586162,0.886223,0.90021,0.341121,0.907248,0.424548,0.288954,0.588655,0.518434,0.491458,0.197887,0.520982,0.919783,0.20307,0.721835,0.18988,0.0624924,0.827759,0.625648,0.285735,0.914622,0.338091,0.819066,0.749905,0.877019,0.482398,0.452293,0.558549,0.450768,0.388969,0.863892,0.141432,0.492462,0.325477,0.913101,0.222174,0.867178,0.835682,0.736045,0.266993,0.43709,0.482496,0.06331,0.0495445,0.357494,0.530283,0.890412,0.224657,0.664059,0.47533,0.692414,0.528156,0.189651,0.726479,0.819491,0.963438,0.149327,0.777568,0.118237,0.770365,0.297288,0.783852,0.210541,0.081722,0.00399268,0.483416,0.234126,0.885863,0.510491,0.687596,0.981228,0.975952,0.348739,0.0506423,0.242048,0.953587,0.831644,0.905244,0.0124905,0.149557,0.77462,0.840484,0.961958,0.823433,0.161099,0.795605,0.0383357,0.721748,0.223791,0.0690454,0.705326,0.125328,0.897403,0.999428,0.554331,0.204429,0.948127,0.482334,0.1588,0.909753,0.077808,0.891319,0.210019,0.424878,0.595084,0.836712,0.868991,0.856728,0.777032,0.141452,0.448336,0.992174,0.747993,0.0998783,0.929789,0.722551,0.73849,0.0741073,0.86584,0.802796,0.0995184,0.0859745,0.990272,0.542278,0.739037,0.289852,0.823071,0.797986,0.264101,0.0625454,0.115762,0.993012,0.19734,0.501972,0.498252,0.407906,0.667818,0.880063,0.566715,0.197736,0.250825,0.81566,0.970167,0.340243,0.492539,0.537658,0.0258072,0.167715,0.482799,0.465065,0.0806015,0.0725632,0.408748,0.612865,0.86819,0.642424,0.660155,0.471728,0.165727,0.160192,0.253365,0.274398,0.911712,|0.680478,0.214871,0.821854,0.849064,0.368409,0.729601,0.110001,0.0742121,0.441275,0.171465,0.945049,0.007994,0.385932,0.816735,0.219221,0.811526,0.440151,0.61463,0.918211,0.962698,0.839369,0.694767,0.248276,0.821655,0.511916,0.720591,0.757088,0.948982,0.322888,0.124038,0.669946,0.988464,0.847418,0.474921,0.970099,0.46714,0.603182,0.362125,0.882862,0.310387,0.228903,0.515318,0.0868812,0.309804,0.38313,0.387989,0.990886,0.785547,0.825793,0.23771,0.416411,0.90973,0.881882,0.832007,0.548308,0.0513844,0.49854,0.507464,0.989207,0.848895,0.262062,0.962134,0.0680634,0.75846,0.805048,0.0912517,0.46617,0.602474,0.963176,0.178919,0.185442,0.94635,0.0823068,0.389315,0.909155,0.321149,0.891126,0.814103,0.722922,0.0141085,0.275576,0.213996,0.208505,0.0109515,0.332226,0.0492418,0.877558,0.35227,0.970347,0.026623,0.191459,0.643662,0.175699,0.0837312,0.486273,0.786306,0.706734,0.934085,0.832846,0.171181,0.90783,0.453644,0.271354,0.983015,0.521915,0.496963,0.615631,0.859478,0.492758,0.896244,0.714205,0.785658,0.831474,0.171866,0.0835331,0.559602,0.892674,0.0464127,0.0715076,0.846218,0.336696,0.8195,0.524538,0.124172,0.439095,0.426759,0.121922,0.879874,0.934629,0.735135,0.342761,0.749076,0.790262,0.0142969,0.214634,0.45709,0.841291,0.325387,0.0996938,0.804277,0.859028,0.492328,0.891108,0.180116,0.728942,0.227617,0.527935,0.562004,0.220519,0.000815034,0.745187,0.802057,0.92654,0.527542,0.547355,0.439677,0.208551,0.1772,0.295174,0.435956,0.25557,0.93031,0.134151,0.0238679,0.511412,0.881787,0.649277,0.314079,0.0659789,0.809552,0.342823,0.716897,0.742477,0.203529,0.0877199,0.150309,0.0692554,0.990031,0.169624,0.658077,0.914647,0.441197,0.0473537,0.785132,0.141273,0.865766,0.57952,0.4454,0.0288662,0.385152,0.945109,0.931946,0.0596724,0.360269,0.0602274,0.576901,0.462168,0.164474,0.966433,0.351955,0.15692,0.544967,0.0342051,0.749748,0.741217,0.779652,0.264713,0.5351,0.924803,0.418685,0.0650007,0.19168,0.246501,0.460971,0.334225,0.30197,0.225832,0.861621,0.0841246,0.256215,0.396667,0.793361,0.0925478,0.81414,0.341174,0.943518,0.768157,0.40234,0.871962,0.42402,0.134574,0.673276,0.00825554,0.022925,0.649799,0.0660631,0.347953,0.0541824,0.96841,0.695644,0.743541,0.280842,0.817023,0.697464,0.114762,0.686799,0.262171,0.431762,0.951164,0.612371,0.721991,0.831322,0.550316,0.278376,0.289218,0.512767,0.67248,0.153072,0.371106,0.749831,0.650301,0.111053,0.902337,0.611026,0.713411,0.802559,0.70604,0.898552,0.9716,0.118619,0.855033,0.677865,0.677294,0.807406,0.11786,0.398771,0.608898,0.803218,0.807693,0.894356,0.244788,0.638446,0.270893,0.57789,0.879262,0.231102,0.957186,0.0398077,0.37052,0.824052,0.839785,0.991805,0.34638,0.240839,0.788997,0.937936,0.401329,0.470464,0.121724,0.160538,0.533857,0.67166,0.453435,0.277451,0.103813,0.890708,0.936861,0.809025,0.560867,0.347117,0.161125,0.342405,0.911611,0.616693,0.095548,0.903277,0.075051,0.428286,0.579924,0.417328,0.3792,0.0368823,0.508296,0.107293,0.656392,0.512149,0.550879,0.0483379,0.968555,0.78725,0.889847,0.31157,0.346914,0.87083,0.146137,0.945031,0.669466,0.624374,0.432513,0.0255666,0.188914,0.591852,0.389314,0.288634,0.715028,0.487664,0.0657657,0.296599,0.953328,0.0903627,0.962146,0.00217146,0.201419,0.772963,0.363485,0.582537,0.785344,0.0195342,0.405957,0.623891,0.179135,0.842434,0.610142,0.531761,0.00314409,0.672011,0.456039,0.791062,0.421726,0.204859,0.0680875,0.473093,0.578218,0.700487,0.437556,0.04383,0.726447,0.127052,0.60768,0.894267,0.921379,0.614991,0.234235,0.580612,0.608837,0.844719,0.572665,0.713126,0.692623,0.137726,0.390396,0.559917,0.866402,0.210492,0.0239694,0.756946,0.0484993,0.421294,0.97468,0.872468,0.0316953,0.440117,0.430873,0.444467,0.966254,0.207005,0.847629,0.00517863,0.625163,0.549949,0.2515,0.217791,0.538963,0.758451,0.542445,0.562552,0.0648553,0.53944,0.642461,0.663164,0.435796,0.122635,0.513076,0.723009,0.0479123,0.179238,0.97304,0.822191,0.329164,0.224652,0.265309,0.235213,0.399303,0.970889,0.457806,0.47004,0.2614,0.995415,0.450851,0.00690573,0.398195,0.71206,0.15638,0.861315,0.0473894,0.542617,0.0231557,0.521889,0.447266,0.483291,0.249202,0.160653,0.262267,0.651576,0.119042,0.382526,0.325187,0.532684,0.334106,0.432381,0.923247,0.0172744,0.495303,0.523944,0.781449,0.768637,0.00827289,0.943994,0.660965,0.70412,0.174469,0.472658,0.893242,0.376213,0.206715,0.954314,0.936368,0.343699,0.59529,0.843707,0.122727,0.587105,0.445681,0.718686,0.52458,0.0433024,0.170513,0.20594,0.398077,0.391493,0.683147,0.0592954,0.296978,0.576778,0.416717,0.563513,0.585829,0.767047,0.735499,0.763939,0.0150919,0.952902,0.657958,0.250542,0.711146,0.137861,0.953855,0.403518,0.33586,0.630292,0.290617,0.163895,0.42301,0.625066,0.93118,0.210579,0.742666,0.596519,0.675578,0.772505,0.0680708,0.232969,0.317056,0.87146,0.487536,0.829862,0.292652,0.239169,0.882534,0.138505,0.48628,0.932779,0.165121,0.697818,0.319238,0.231671,0.0512365,0.537618,0.125318,0.331059,0.873634,0.103245,0.326518,0.41866,0.00586838,0.309969,0.809232,0.853681,0.712118,0.852818,0.167399,0.385438,0.082036,0.946504,0.472479,0.976698,0.330453,0.566206,0.0857294,0.466901,0.404142,0.811608,0.869156,0.176736,0.540978,0.582978,0.27189,0.542033,0.885182,0.523716,0.51595,0.51857,0.554491,0.846438,0.0712497,0.748163,0.176167,0.741563,0.768847,0.627304,0.845458,0.883254,0.622343,0.923763,0.482029,0.51174,0.24765,0.106871,0.784,0.882198,0.160454,0.348007,0.737903,0.818858,0.0876035,0.154222,0.986983,0.0940561,0.886361,0.842431,0.815887,0.0686824,0.596762,0.311291,0.438812,0.222919,0.71046,0.850941,0.189773,0.858338,0.846183,0.0918465,0.257781,0.92938,0.580881,0.562388,0.294415,0.376664,0.897458,0.569046,0.879847,0.77887,0.0347803,0.321693,0.624238,0.782989,0.512914,0.300495,0.902281,0.657379,0.813054,0.0536526,0.377359,0.488149,0.161552,0.39325,0.62426,0.258346,0.502456,0.269127,0.222469,0.663652,0.268792,0.123376,0.471235,0.345587,0.578434,0.159865,0.616063,0.959396,0.751637,0.962929,0.971419,0.958266,0.480745,0.884696,0.631048,0.931153,0.132268,0.432063,0.363227,0.355439,0.40987,0.345255,0.289748,0.489299,0.539964,0.777881,0.87949,0.851871,0.734692,0.54356,0.408304,0.223727,0.770999,0.744775,0.690159,0.498482,0.182405,0.637387,0.264355,0.182587,0.782978,0.840028,0.890568,0.625849,0.345359,0.825391,0.498688,0.206257,0.397836,0.338066,0.478535,0.499279,0.429129,0.889108,0.51495,0.745454,0.691035,0.186907,0.891275,0.8721,0.472337,0.296871,0.417636,0.540643,0.801361,0.273446,0.479068,0.819191,0.211771,0.798058,0.437557,0.993182,0.290144,0.655643,0.803941,0.0042941,0.94341,0.35355,0.32788,0.197325,0.660856,0.899933,0.566653,0.143999,0.123229,0.417682,0.110373,0.0686885,0.98805,0.880875,0.384949,0.320123,0.563709,0.15888,0.0408118,0.3152,0.801581,0.594063,0.81612,0.227292,0.0895391,0.635689,0.967893,0.463056,0.030107,0.298028,0.29874,0.646596,0.451742,0.17474,0.228681,0.120891,0.220655,0.249376,0.490364,0.526483,0.27691,0.919318,0.462563,0.607985,0.000785112,0.06769,0.166228,0.328785,0.406583,0.407915,0.863261,0.17899,0.571965,0.0921079,0.103568,0.940332,0.322459,0.425985,0.699463,0.593296,0.446316,0.257013,0.964844,0.796588,0.792731,0.963301,0.279228,0.547787,0.943423,0.307539,0.310042,0.191769,0.407315,0.266387,0.320753,0.364546,0.360036,0.921845,0.383661,0.500441,0.655605,0.616087,0.451783,0.201271,0.312876,0.552178,0.0238955,0.375327,0.502729,0.00238359,0.580312,0.77138,0.759982,0.70462,0.442234,0.836872,0.370897,0.557125,0.424972,0.378875,0.0610881,0.74375,0.364381,0.859416,0.85234,0.70711,0.052318,0.762545,0.775034,0.319282,0.35849,0.284822,0.803761,0.977224,0.996732,0.480923,0.298114,0.0488729,0.642022,0.788749,0.583572,0.743044,0.549163,0.504184,0.139773,0.055859,0.406397,0.0217752,0.962205,0.250991,0.0111268,0.0560697,0.405821,0.770253,0.6082,0.0821157,0.990342,0.459206,0.738978,0.346959,0.431709,0.468985,0.918704,0.572396,0.47146,0.846622,0.146903,0.544186,0.0807973,0.839417,0.329284,0.294375,0.568642,0.612276,0.809468,0.191451,0.971886,0.171284,0.810652,0.67426,0.111023,0.324613,0.444703,0.322775,0.438255,0.841683,0.327524,0.219843,0.672852,0.172371,0.177775,0.479834,0.738108,0.51919,0.0956602,0.98041,0.716256,0.683278,0.770661,0.261144,0.740652,0.898509,0.267155,0.428059,0.73862,0.459927,0.636354,0.194964,0.329415,0.089669,0.962151,0.875467,0.886683,0.0785275,0.947118,0.552404,0.146876,0.493287,0.713409,0.368631,0.637579,0.371768,0.302399,0.427811,0.836504,0.709338,0.776419,0.568087,0.495572,0.943621,0.778249,0.0984216,0.790491,0.901987,0.674082,0.671221,0.48808,0.378161,0.998207,0.858455,0.101732,0.222427,0.85568,0.259197,0.35983,0.0960417,0.7467,0.575276,0.685306,0.237854,0.750867,0.129984,0.665774,0.621596,0.370013,0.734867,0.815718,0.878012,0.13778,0.0478386,0.0187017,0.985617,0.804282,0.910863,0.619036,0.759333,0.139262,0.223548,0.862772,0.0774758,0.841607,0.361639,0.877612,0.445041,0.0771294,0.991579,0.565484,0.796166,0.665068,0.145883,0.913093,0.48555,0.0535783,0.101715,0.537886,0.411444,0.553649,0.409267,0.343439,0.252867,0.392648,0.0182406,0.459616,0.9205,0.510451,0.0654415,0.00587267,0.506754,0.706838,0.224826,0.890511,0.816127,|0.352715,0.760338,0.508578,0.0766761,0.377435,0.354697,0.152918,0.693815,0.280477,0.771121,0.158665,0.685694,0.0201991,0.910851,0.17395,0.562864,0.869773,0.0181664,0.760424,0.698622,0.490526,0.944521,6.27637e-05,0.458159,0.636537,0.779764,0.0420591,0.993269,0.777488,0.0133353,0.653436,0.465955,0.729115,0.633309,0.096333,0.0240635,0.503831,0.0731015,0.348214,0.0963411,0.0462485,0.799619,0.419945,0.761127,0.0278307,0.209735,0.919213,0.551173,0.396708,0.399229,0.875757,0.490994,0.208353,0.210666,0.0471972,0.492365,0.312591,0.700136,0.967287,0.807274,0.307683,0.988281,0.777294,0.870031,0.374829,0.770959,0.294231,0.443404,0.949331,0.557263,0.0649467,0.815324,0.529061,0.775621,0.214673,0.947205,0.637288,0.21222,0.541787,0.654466,0.962497,0.255682,0.704858,0.903128,0.895457,0.710258,0.51744,0.131152,0.883777,0.0786583,0.67653,0.407095,0.997088,0.226826,0.50828,0.162041,0.279103,0.231974,0.0656163,0.178103,0.318442,0.108942,0.265847,0.0897983,0.643512,0.868663,0.323215,0.360067,0.309846,0.783084,0.522937,0.345201,0.791693,0.309878,0.491758,0.167208,0.181305,0.704623,0.0954559,0.540483,0.899305,0.782318,0.791158,0.680303,0.570556,0.263874,0.338887,0.0668409,0.792811,0.994193,0.478575,0.210331,0.26947,0.0103044,0.148102,0.56778,0.824201,0.997817,0.152866,0.626961,0.775952,0.651939,0.000346959,0.987742,0.0905876,0.783041,0.893058,0.192489,0.639104,0.551666,0.348532,0.148003,0.860229,0.608761,0.0320335,0.765843,0.868038,0.879148,0.172025,0.23494,0.518309,0.951718,0.0134828,0.569645,0.275045,0.409898,0.530208,0.220431,0.492636,0.863304,0.511835,0.272148,0.934196,0.710501,0.159862,0.131772,0.36791,0.445461,0.811838,0.577687,0.599015,0.191749,0.264067,0.501215,0.517614,0.680325,0.0151312,0.596318,0.907217,0.543855,0.428424,0.101231,0.210402,0.837025,0.147821,0.24272,0.647677,0.537179,0.169107,0.750482,0.129182,0.385204,0.080927,0.182415,0.0154043,0.0501173,0.834508,0.623556,0.750081,0.0236158,0.599219,0.970919,0.708099,0.286344,0.38346,0.671858,0.372812,0.851237,0.28616,0.587344,0.764035,0.811066,0.854825,0.275002,0.838001,0.76445,0.495072,0.846933,0.790807,0.660969,0.933264,0.81373,0.166336,0.952739,0.891711,0.390228,0.0668526,0.656219,0.217936,0.811803,0.601679,0.963306,0.110279,0.237949,0.0853083,0.530565,0.96113,0.831426,0.890241,0.276608,0.0430716,0.0216703,0.30698,0.733656,0.916739,0.946542,0.72894,0.213362,0.104987,0.497233,0.0640609,0.809505,0.416665,0.115927,0.542258,0.121733,0.128516,0.92297,0.570512,0.110751,0.709413,0.651504,0.649334,0.355435,0.23629,0.119369,0.325965,0.00943458,0.268081,0.703762,0.291091,0.730403,0.724199,0.381245,0.229067,0.842163,0.424922,0.149773,0.695586,0.461179,0.502446,0.0622169,0.296495,0.229072,0.427515,0.319971,0.0784914,0.998872,0.22995,0.186377,0.155091,0.818147,0.195177,0.839104,0.00902861,0.417018,0.28082,0.782162,0.0897533,0.129498,0.401409,0.785,0.760403,0.377766,0.864423,0.797951,0.139015,0.409614,0.959346,0.836611,0.0886275,0.889322,0.746121,0.948798,0.905276,0.264602,0.898062,0.878423,0.577486,0.400929,0.726306,0.0003317,0.814884,0.944906,0.895187,0.815243,0.457009,0.895261,0.397801,0.481391,0.823176,0.0183515,0.180287,0.886612,0.893417,0.105506,0.138455,0.228129,0.190354,0.556355,0.896307,0.0923158,0.985629,0.567326,0.144817,0.890935,0.345987,0.844227,0.269801,0.34403,0.324396,0.0712053,0.891476,0.052781,0.839389,0.284931,0.899972,0.235975,0.453462,0.591823,0.0668529,0.059303,0.447974,0.290918,0.277022,0.814221,0.29367,0.614357,0.193844,0.278971,0.787293,0.4259,0.938308,0.311694,0.619466,0.729726,0.80863,0.203283,0.107277,0.555267,0.0949304,0.454886,0.348769,0.830784,0.576719,0.00182271,0.603982,0.322238,0.653659,0.345521,0.230141,0.279425,0.725327,0.995122,0.0406359,0.344175,0.691673,0.179496,0.28228,0.533954,0.745994,0.393722,0.58054,0.923772,0.584793,0.199409,0.755167,0.855859,0.979933,0.253649,0.858007,0.880666,0.597324,0.060676,0.735282,0.890403,0.705196,0.34451,0.140106,0.78154,0.259009,0.833794,0.925671,0.0202435,0.468663,0.469774,0.467138,0.0852137,0.799952,0.968013,0.243833,0.436249,0.318209,0.928469,0.158465,0.729508,0.980858,0.639843,0.625098,0.881603,0.140611,0.68884,0.2727,0.536374,0.337965,0.65935,0.375149,0.377056,0.805959,0.413202,0.479044,0.495852,0.90068,0.0753692,0.983189,0.453502,0.136664,0.936257,0.200627,0.025545,0.396895,0.360931,0.915724,0.999119,0.439286,0.844029,0.592537,0.249996,0.218769,0.44545,0.0393521,0.993325,0.173259,0.56915,0.31243,0.593119,0.0125152,0.0167122,0.505463,0.163298,0.155862,0.59642,0.869925,0.826065,0.00674015,0.183546,0.637004,0.457111,0.0775437,0.813406,0.74929,0.714083,0.731692,0.482208,0.683522,0.854408,0.711499,0.289567,0.890871,0.158667,0.247477,0.646814,0.693121,0.603887,0.0995172,0.289878,0.328255,0.532894,0.509801,0.0847291,0.0170342,0.495492,0.261091,0.770639,0.0694363,0.115882,0.632942,0.239043,0.537554,0.748562,0.791435,0.515794,0.403309,0.759655,0.861664,0.353521,0.395751,0.0284739,0.730885,0.252802,0.628952,0.215016,0.337147,0.661492,0.906713,0.919147,0.436056,0.636856,0.0834776,0.316602,0.589418,0.199124,0.017514,0.420548,0.0897206,0.313954,0.426819,0.46991,0.726281,0.619773,0.535042,0.370016,0.135315,0.347188,0.392975,0.929624,0.342006,0.116863,0.688523,0.496461,0.900471,0.121677,0.297587,0.583995,0.201729,0.578491,0.705531,0.872764,0.586972,0.307535,0.552506,0.802318,0.305334,0.0185078,0.846462,0.351521,0.10118,0.0612776,0.0114515,0.768282,0.456515,0.359611,0.509409,0.830517,0.454853,0.54298,0.51085,0.153888,0.37217,0.101307,0.43357,0.0707023,0.627201,0.147192,0.753743,0.349608,0.286629,0.544208,0.230749,0.668244,0.564021,0.538264,0.841895,0.316679,0.1628,0.66272,0.784629,0.545692,0.0270985,0.478064,0.196718,0.891875,0.122255,0.730063,0.207532,0.412436,0.716276,0.739016,0.160385,0.598148,0.0286775,0.903189,0.745629,0.117776,0.466622,0.765832,0.629603,0.844108,0.898547,0.427409,0.198165,0.930121,0.900536,0.286937,0.129511,0.396975,0.170962,0.896723,0.239927,0.133628,0.564573,0.612326,0.892077,0.580454,0.798723,0.793795,0.302904,0.0336761,0.0517043,0.21053,0.690988,0.643679,0.858614,0.701828,0.166289,0.895233,0.213997,0.158175,0.303528,0.274402,0.105322,0.0831329,0.247485,0.401626,0.0272516,0.321778,0.658716,0.613524,0.255287,0.69964,0.986826,0.148509,0.468276,0.3061,0.293174,0.682441,0.870544,0.123792,0.775024,0.719545,0.378087,0.865697,0.656875,0.000163913,0.302788,0.62833,0.581321,0.694427,0.561202,0.245608,0.545436,0.0441123,0.375738,0.468635,0.617425,0.672975,0.03516,0.499129,0.541517,0.779734,0.440143,0.420647,0.496412,0.201104,0.341105,0.408603,0.406953,0.330436,0.588751,0.935088,0.717421,0.987396,0.86953,0.0725338,0.353574,0.486017,0.387622,0.877184,0.586516,0.964016,0.997026,0.487401,0.74975,0.59322,0.534194,0.958108,0.338885,0.261983,0.134145,0.965253,0.992346,0.846007,0.115764,0.0115786,0.0522443,0.563048,0.78104,0.780738,0.323682,0.441505,0.360478,0.221378,0.382712,0.0180548,0.620259,0.743889,0.998754,0.471747,0.410858,0.631613,0.482233,0.415599,0.0609688,0.546132,0.15139,0.117334,0.854315,0.618234,0.472555,0.238792,0.192623,0.271124,0.572884,0.574622,0.628589,0.148489,0.808969,0.817802,0.843938,0.520978,0.133162,0.343328,0.0332671,0.431383,0.0965503,0.121505,0.839451,0.976511,0.346269,0.584835,0.160254,0.334417,0.945617,0.673142,0.263289,0.2228,0.487731,0.727755,0.445364,0.754519,0.85097,0.603643,0.152492,0.834881,0.541055,0.189977,0.638041,0.473345,0.0566652,0.541014,0.739166,0.0617463,0.369485,0.496241,0.826074,0.786191,0.939503,0.0365828,0.768147,0.0389157,0.698259,0.0860133,0.640118,0.58597,0.756129,0.805196,0.712404,0.221056,0.449259,0.361373,0.698329,0.746842,0.0262859,0.651401,0.45811,0.751705,0.113242,0.74576,0.296981,0.365216,0.167557,0.433175,0.0091635,0.234751,0.804622,0.530322,0.183717,0.945975,0.571827,0.931628,0.300226,0.147327,0.624017,0.855806,0.218022,0.681437,0.203327,0.0130101,0.970453,0.635971,0.712578,0.612669,0.965103,0.042246,0.780498,0.40602,0.95192,0.254635,0.667603,0.664856,0.00832868,0.372685,0.450795,0.83798,0.995638,0.663238,0.372171,0.439685,0.463761,0.0954726,0.580829,0.789844,0.0511534,0.105671,0.60123,0.107401,0.81067,0.498239,0.748719,0.954761,0.525111,0.581609,0.311423,0.75018,0.624101,0.103893,0.0334172,0.601106,0.421529,0.0737187,0.550161,0.112744,0.259944,0.466435,0.882997,0.174582,0.679261,0.941557,0.401781,0.181204,0.0865666,0.450857,0.768412,0.593454,0.172234,0.66629,0.47664,0.709269,0.646883,0.463494,0.0366081,0.609681,0.766273,0.275003,0.563441,0.859672,0.38995,0.268881,0.920768,0.255626,0.775712,0.281466,0.405444,0.200882,0.847972,0.687754,0.0205725,0.0916834,0.202622,0.492662,0.784687,0.425965,0.678998,0.094803,0.701437,0.44538,0.401849,0.0717092,0.422713,0.366925,0.940014,0.464314,0.682631,0.889774,0.813207,0.897429,0.572574,0.228035,0.408553,0.738347,0.578792,0.297311,0.5009,0.836649,0.710735,0.0068624,0.147828,0.954914,0.845084,0.787839,0.130814,0.00362444,0.828269,0.468217,0.74701,0.303602,0.295716,0.785805,0.0193483,0.721106,0.341694,0.0150751,0.888039,0.0231149,0.177127,0.533885,0.631913,0.769239,0.150089,0.921597,0.0880772,0.998091,0.97468,0.241207,0.456236,0.460389,0.953208,0.394872,0.0760732,0.207303,|0.603164,0.495207,0.739564,0.398165,0.549983,0.792488,0.0643585,0.674229,0.262765,0.202271,0.703799,0.614494,0.660821,0.0258523,0.719738,0.96977,0.896851,0.820882,0.622863,0.666439,0.536305,0.546344,0.639898,0.77726,0.340876,0.660669,0.342139,0.762315,0.202782,0.547577,0.894406,0.219168,0.927841,0.33261,0.873843,0.120353,0.701709,0.819472,0.0666177,0.476359,0.405146,0.915098,0.745901,0.120925,0.444049,0.372034,0.34211,0.795793,0.549476,0.116457,0.338393,0.171922,0.281192,0.937663,0.401162,0.151378,0.534249,0.246072,0.837025,0.304353,0.972145,0.0579045,0.924718,0.545603,0.509076,0.91236,0.953161,0.918858,0.859795,0.00295812,0.241841,0.539767,0.446715,0.0567555,0.576482,0.826212,0.916001,0.732316,0.565644,0.0365378,0.528522,0.803663,0.728139,0.0754593,0.791146,0.919131,0.661807,0.538003,0.236032,0.927918,0.168689,0.514106,0.214848,0.35795,0.699973,0.200187,0.636621,0.451847,0.570917,0.156259,0.312656,0.121458,0.922607,0.770707,0.315281,0.912518,0.984039,0.861148,0.807027,0.136512,0.677225,0.154681,0.707328,0.436828,0.0640998,0.0573665,0.618463,0.182827,0.298068,0.591316,0.93649,0.368529,0.383131,0.568471,0.0603197,0.765606,0.566867,0.925826,0.980602,0.683603,0.721179,0.373996,0.0716133,0.996355,0.812426,0.337017,0.662113,0.866681,0.238175,0.388893,0.0599775,0.0438654,0.160179,0.477009,0.229088,0.0389619,0.191653,0.97617,0.888595,0.0134008,0.966644,0.936328,0.43541,0.106853,0.773096,0.818156,0.885924,0.213832,0.175021,0.400647,0.667872,0.0874828,0.324237,0.532778,0.363296,0.0285218,0.47904,0.195669,0.818037,0.533128,0.884659,0.128427,0.659823,0.99936,0.0726091,0.181083,0.00208187,0.255177,0.469713,0.512678,0.79,0.255727,0.144338,0.314869,0.0488824,0.337074,0.671463,0.390791,0.979921,0.13339,0.566958,0.8642,0.948571,0.59427,0.661889,0.808383,0.716305,0.515617,0.349429,0.735842,0.855886,0.772887,0.0291383,0.273336,0.314826,0.663466,0.234918,0.938685,0.868638,0.0458547,0.0911689,0.527212,0.629825,0.645216,0.830382,0.963387,0.379668,0.2614,0.248868,0.356314,0.406106,0.121825,0.830086,0.988795,0.913252,0.96048,0.82662,0.397174,0.429176,0.255466,0.552111,0.927223,0.570175,0.692824,0.105155,0.703814,0.683946,0.384976,0.346875,0.574254,0.684471,0.972222,0.675606,0.959191,0.125597,0.178913,0.235002,0.750142,0.202164,0.0268956,0.293738,0.932921,0.953136,0.241938,0.361598,0.771214,0.915851,0.401818,0.234847,0.344582,0.458899,0.225376,0.930441,0.311101,0.893824,0.00765514,0.26022,0.363675,0.7114,0.515634,0.342184,0.0299118,0.783441,0.913277,0.644971,0.992431,0.35155,0.548895,0.346011,0.975831,0.922769,0.498323,0.00885022,0.0152107,0.650101,0.353843,0.300138,0.339524,0.370838,0.416225,0.236196,0.463213,0.220202,0.0836496,0.58755,0.215082,0.588229,0.0726518,0.185456,0.920724,0.47233,0.250486,0.87712,0.383298,0.239199,0.454636,0.672123,0.99417,0.102381,0.563646,0.906149,0.659918,0.706099,0.723538,0.461482,0.830285,0.989541,0.629422,0.107083,0.444843,0.933427,0.270251,0.0745617,0.633232,0.973102,0.760226,0.848592,0.571251,0.371758,0.676611,0.288688,0.762324,0.923291,0.54696,0.636808,0.957106,0.99968,0.543305,0.89277,0.304214,0.691121,0.405211,0.992485,0.112994,0.0945179,0.663037,0.505318,0.390079,0.805043,0.654413,0.775916,0.870706,0.551704,0.553787,0.561884,0.163131,0.438793,0.278522,0.420627,0.351036,0.213567,0.958809,0.723697,0.531225,0.187288,0.856278,0.994774,0.795078,0.848441,0.971141,0.166343,0.168957,0.517256,0.293311,0.0916499,0.298356,0.468652,0.79128,0.838852,0.302091,0.0323579,0.116493,0.177305,0.940209,0.895539,0.088012,0.726364,0.434924,0.658664,0.913749,0.87929,0.10329,0.134265,0.0540588,0.621737,0.941949,0.521062,0.120086,0.858972,0.664288,0.009247,0.550761,0.48427,0.114936,0.315101,0.860182,0.710069,0.372626,0.550605,0.788286,0.886591,0.157292,0.0774473,0.624489,0.87709,0.62783,0.761624,0.67775,0.111457,0.806321,0.0519081,0.519228,0.177766,0.418479,0.240576,0.586708,0.526372,0.606003,0.480972,0.236765,0.486926,0.433416,0.0977292,0.106418,0.196845,0.0631397,0.435849,0.559791,0.0976124,0.918515,0.540186,0.743616,0.509615,0.476283,0.185569,0.81279,0.772399,0.301353,0.726725,0.245675,0.0327697,0.401652,0.532739,0.58935,0.798486,0.702519,0.837422,0.461129,0.0490897,0.274554,0.432655,0.283176,0.120473,0.0475121,0.470706,0.581443,0.160104,0.619029,0.278546,0.951057,0.654034,0.749139,0.998121,0.131914,0.905515,0.660861,0.227772,0.456322,0.43293,0.213696,0.596299,0.624402,0.122737,0.367674,0.261087,0.474468,0.457064,0.367222,0.449061,0.884541,0.494949,0.571048,0.110327,0.133253,0.275738,0.987267,0.765182,0.185487,0.274876,0.621289,0.10839,0.842075,0.00175011,0.952983,0.984817,0.0563936,0.664888,0.148679,0.00715655,0.42976,0.131707,0.425178,0.128806,0.360116,0.054198,0.100185,0.84427,0.395324,0.843668,0.65823,0.78372,0.313514,0.0840906,0.88959,0.971478,0.496994,0.825426,0.831401,0.0677618,0.75376,0.180244,0.465205,0.0462871,0.143998,0.977559,0.806713,0.326687,0.812268,0.511331,0.824609,0.943904,0.798545,0.191115,0.0537295,0.774778,0.237756,0.825868,0.940293,0.999452,0.982867,0.196674,0.870275,0.694934,0.434855,0.674803,0.758631,0.326474,0.947299,0.00517064,0.371668,0.539473,0.63157,0.484733,0.401442,0.369171,0.0706279,0.972538,0.181886,0.460334,0.722175,0.625278,0.370619,0.613128,0.908422,0.278736,0.346663,0.485673,0.383974,0.801242,0.530473,0.837404,0.193615,0.119102,0.736274,0.0474617,0.175122,0.303748,0.247695,0.0885803,0.787664,0.517297,0.912383,0.178299,0.456491,0.855999,0.616498,0.82658,0.0341542,0.143145,0.824743,0.154974,0.205473,0.46925,0.543823,0.314631,0.44772,0.263667,0.502986,0.939404,0.706929,0.021849,0.307253,0.773742,0.507897,0.868967,0.0125561,0.814117,0.339052,0.537725,0.603012,0.813708,0.175317,0.758995,0.203846,0.0224823,0.803203,0.868846,0.804023,0.877838,0.83724,0.693142,0.762814,0.501263,0.570998,0.687736,0.489879,0.144804,0.206959,0.148708,0.577616,0.606754,0.436926,0.831291,0.541928,0.603623,0.957713,0.0614289,0.547284,0.377156,0.570098,0.48561,0.25302,0.219984,0.673276,0.859353,0.368382,0.443043,0.822311,0.891291,0.967414,0.309337,0.598665,0.0290011,0.411032,0.193849,0.418016,0.719688,0.921366,0.506913,0.0852923,0.372125,0.31037,0.570021,0.878046,0.845735,0.16633,0.4192,0.83947,0.24503,0.739865,0.796552,0.925142,0.489849,0.00223845,0.0998263,0.0461628,0.931679,0.925387,0.449136,0.639758,0.844786,0.601294,0.110325,0.0436049,0.277076,0.572179,0.75322,0.261502,0.848148,0.033151,0.765792,0.0393828,0.561905,0.62314,0.839299,0.699545,0.627323,0.502498,0.484415,0.869735,0.800685,0.0372703,0.277543,0.692313,0.506219,0.862362,0.789811,0.814285,0.626458,0.132852,0.0843446,0.0138484,0.847876,0.132709,0.869814,0.798757,0.456464,0.710011,0.802335,0.145583,0.862167,0.757527,0.137177,0.203386,0.325845,0.801037,0.363134,0.504704,0.960305,0.289048,0.352655,0.819049,0.524284,0.361151,0.201177,0.454497,0.504406,0.532759,0.645804,0.138484,0.350604,0.0549612,0.185069,0.699122,0.853805,0.26555,0.882875,0.19258,0.0191697,0.375216,0.623964,0.730079,0.479859,0.241616,0.54467,0.324992,0.798411,0.870409,0.667574,0.776169,0.572744,0.466806,0.125143,0.111102,0.375606,0.890008,0.175334,0.63014,0.126309,0.999225,0.826503,0.122011,0.801099,0.438287,0.649022,0.0352331,0.517591,0.335594,0.122515,0.951528,0.38804,0.96589,0.398388,0.967372,0.0472709,0.889636,0.858879,0.960886,0.970944,0.676726,0.547391,0.894334,0.638404,0.238161,0.440471,0.495914,0.223662,0.838207,0.258307,0.790059,0.547478,0.132015,0.211962,0.510774,0.453583,0.277341,0.0634566,0.509234,0.981837,0.232529,0.210902,0.412928,0.479424,0.158613,0.903322,0.240699,0.18999,0.578675,0.884139,0.121006,0.791261,0.909475,0.417929,0.865423,0.806428,0.914996,0.120438,0.431087,0.503232,0.121692,0.970077,0.268275,0.323409,0.099659,0.441884,0.223139,0.471299,0.610297,0.824621,0.539848,0.354462,0.0578153,0.796897,0.180969,0.936332,0.788826,0.844552,0.866538,0.0679109,0.198154,0.371375,0.845585,0.879056,0.790033,0.148693,0.372708,0.361007,0.178856,0.695552,0.407891,0.479639,0.230864,0.453565,0.927018,0.993189,0.051422,0.690957,0.494218,0.326948,0.301081,0.960625,0.179419,0.23924,0.366618,0.46918,0.402909,0.324252,0.518133,0.0410016,0.070344,0.789805,0.279646,0.100235,0.182779,0.910597,0.366761,0.791486,0.608448,0.737283,0.954198,0.755312,0.40253,0.406385,0.586348,0.293966,0.94602,0.43474,0.447508,0.366615,0.0196135,0.690069,0.370412,0.81121,0.592735,0.591471,0.419569,0.234159,0.424028,0.881965,0.334208,0.938224,0.0525028,0.653276,0.721619,0.240141,0.399313,0.0264012,0.827723,0.948037,0.0153089,0.141578,0.333199,0.398405,0.212653,0.00714618,0.0417208,0.689191,0.34167,0.0436665,0.872588,0.939406,0.0350986,0.391718,0.290035,0.228445,0.567836,0.516953,0.669507,0.42401,0.0553688,0.449179,0.961594,0.0837675,0.248825,0.282489,0.879058,0.384501,0.227623,0.864653,0.916972,0.267534,0.722753,0.261372,0.171687,0.525804,0.104882,0.85386,0.981666,0.455417,0.289636,0.599516,0.113284,0.52146,0.797785,0.680639,0.575053,0.926615,0.482909,0.392329,0.906763,0.344437,0.496407,0.874423,0.745699,0.135141,0.0862354,0.665768,0.283582,0.317475,0.301526,0.281715,0.17816,0.216769,0.681555,0.612246,0.959724,0.671297,0.916017,0.265629,0.485305,|0.471938,0.490425,0.58327,0.710827,0.889097,0.54664,0.140169,0.900692,0.16781,0.993079,0.206215,0.147913,0.846334,0.531435,0.359412,0.408218,0.577975,0.561661,0.408194,0.219349,0.188206,0.358334,0.294539,0.170362,0.54017,0.929926,0.651509,0.84929,0.702835,0.857461,0.383468,0.123427,0.852763,0.800556,0.69289,0.725269,0.879613,0.650044,0.712683,0.0440084,0.713932,0.221728,0.350612,0.858375,0.257776,0.931993,0.479559,0.481159,0.461146,0.0407013,0.266573,0.729472,0.512299,0.393593,0.708891,0.189489,0.356268,0.196632,0.589307,0.999905,0.340186,0.0848208,0.179414,0.412465,0.409452,0.59396,0.219614,0.895981,0.990283,0.283182,0.255592,0.561403,0.202397,0.0705291,0.415508,0.358779,0.723877,0.438353,0.294708,0.0104933,0.115504,0.656298,0.61372,0.908841,0.290593,0.929236,0.280468,0.612494,0.813233,0.600809,0.00152194,0.679754,0.691207,0.659354,0.651675,0.897764,0.224143,0.279103,0.735569,0.319417,0.99195,0.0344664,0.558952,0.349852,0.722016,0.0515394,0.225746,0.180272,0.547303,0.055944,0.264319,0.0891561,0.260559,0.637218,0.932043,0.984462,0.28232,0.967159,0.0456164,0.340451,0.485733,0.521201,0.225728,0.87477,0.13789,0.985652,0.955532,0.878167,0.239683,0.251989,0.352794,0.66716,0.234611,0.874444,0.920975,0.928779,0.863037,0.58273,0.696188,0.354228,0.163368,0.73318,0.867562,0.200285,0.396573,0.128766,0.445605,0.883633,0.411274,0.555229,0.8754,0.982467,0.336825,0.145634,0.430886,0.10564,0.488348,0.785141,0.357546,0.892313,0.305336,0.325219,0.64445,0.130523,0.36395,0.747706,0.318033,0.0549862,0.772198,0.559029,0.683207,0.127539,0.709442,0.0365592,0.237201,0.346219,0.45291,0.286473,0.293332,0.412886,0.998629,0.00221813,0.908819,0.460051,0.524095,0.520063,0.521807,0.9179,0.100567,0.415784,0.740806,0.313601,0.439956,0.878052,0.505983,0.323719,0.979154,0.414045,0.954726,0.0185451,0.919739,0.653907,0.211668,0.223452,0.752324,0.191354,0.401991,0.871462,0.408085,0.0532671,0.892693,0.130267,0.577506,0.166984,0.290585,0.716942,0.234489,0.139404,0.853816,0.652738,0.150044,0.542362,0.269306,0.0293151,0.797706,0.941048,0.141718,0.968008,0.558941,0.330607,0.159141,0.816689,0.361414,0.598693,0.693448,0.584961,0.352214,0.0406027,0.579475,0.454309,0.927354,0.616018,0.616875,0.616216,0.856955,0.304038,0.89632,0.559141,0.0351928,0.0604373,0.397591,0.820066,0.138072,0.781804,0.917873,0.97798,0.397741,0.246274,0.128181,0.481042,0.774477,0.799391,0.929594,0.102323,0.174794,0.346887,0.903318,0.233835,0.11557,0.64429,0.882211,0.583493,0.4596,0.91665,0.457937,0.534344,0.669917,0.0496331,0.602447,0.462384,0.663248,0.449084,0.3251,0.727122,0.234666,0.491785,0.264455,0.635177,0.226177,0.342219,0.0530345,0.217658,0.173202,0.777663,0.567344,0.846376,0.243519,0.934248,0.989181,0.627447,0.526545,0.372405,0.677094,0.034035,0.974227,0.62936,0.36162,0.705951,0.102394,0.323641,0.893405,0.0639376,0.353859,0.183211,0.233777,0.258312,0.268481,0.558922,0.41254,0.452375,0.613682,0.824115,0.583318,0.546924,0.738864,0.976058,0.625944,0.579839,0.337428,0.78944,0.841109,0.982265,0.517453,0.186333,0.977372,0.0855244,0.24591,0.219308,0.997458,0.22066,0.0323946,0.544374,0.0921635,0.0531488,0.804838,0.756335,0.288583,0.0501778,0.381588,0.447797,0.179218,0.53338,0.872745,0.923695,0.878468,0.683768,0.494281,0.877171,0.542331,0.88025,0.798054,0.00663459,0.420481,0.391393,0.0401194,0.240167,0.770775,0.0721681,0.873585,0.719363,0.684306,0.527241,0.399578,0.258264,0.563569,0.185223,0.42564,0.781343,0.0727763,0.685858,0.491464,0.316628,0.796482,0.615535,0.229545,0.0363607,0.891965,0.483284,0.335997,0.631535,0.494616,0.441534,0.982221,0.6636,0.591614,0.735219,0.448017,0.31991,0.34608,0.232418,0.700222,0.237269,0.457248,0.476335,0.76901,0.613593,0.999151,0.739154,0.101917,0.139335,0.314249,0.30832,0.160788,0.542204,0.147739,0.783719,0.761796,0.860177,0.815356,0.427519,0.34639,0.454953,0.258669,0.976891,0.0553346,0.66957,0.715671,0.640803,0.415258,0.341957,0.107609,0.206784,0.0531415,0.628358,0.371507,0.140847,0.0497473,0.955535,0.891778,0.961773,0.0884631,0.456644,0.468994,0.197477,0.370584,0.724208,0.091179,0.979336,0.45145,0.955613,0.643605,0.282506,0.331109,0.729922,0.801306,0.805529,0.124323,0.422606,0.666991,0.330049,0.712337,0.786044,0.438289,0.0322303,0.665508,0.714597,0.707195,0.0510005,0.0155843,0.764779,0.0051266,0.274865,0.351517,0.287155,0.596553,0.333283,0.0827823,0.082756,0.856779,0.518827,0.804503,0.625658,0.749944,0.986544,0.318923,0.262029,0.46821,0.975073,0.192265,0.168663,0.796865,0.832949,0.506437,0.0416788,0.14058,0.721029,0.97326,0.558792,0.959837,0.262984,0.911647,0.0442804,0.896896,0.175421,0.858133,0.351895,0.933017,0.374453,0.815714,0.690487,0.124191,0.147156,0.961239,0.688487,0.00224757,0.884181,0.101367,0.595499,0.297468,0.612381,0.43,0.0764948,0.881492,0.966553,0.697715,0.956602,0.696145,0.228842,0.458104,0.6004,0.813528,0.270164,0.0117874,0.139967,0.736344,0.840629,0.828514,0.205746,0.399635,0.426813,0.932133,0.81076,0.0657994,0.441169,0.644064,0.991384,0.961475,0.0409874,0.128788,0.70034,0.745319,0.913988,0.793873,0.791857,0.76539,0.715104,0.0429835,0.333196,0.751328,0.388729,0.392352,0.163351,0.847181,0.16081,0.894175,0.315445,0.155928,0.539795,0.255875,0.077408,0.708008,0.81349,0.675141,0.2896,0.323686,0.133894,0.129061,0.525991,0.51677,0.124574,0.571844,0.679822,0.367308,0.0748276,0.174538,0.686552,0.204935,0.701203,0.774442,0.880164,0.850919,0.0242465,0.992982,0.852102,0.527367,0.938437,0.212962,0.616745,0.0506916,0.387019,0.485312,0.541357,0.116784,0.424729,0.347612,0.916112,0.0977131,0.732356,0.994533,0.0932169,0.882139,0.0591057,0.882222,0.0149038,0.402396,0.377268,0.604929,0.196103,0.174628,0.856135,0.593805,0.606993,0.110976,0.177098,0.581431,0.646763,0.416143,0.697538,0.497696,0.212822,0.147005,0.963256,0.266597,0.212339,0.718704,0.412865,0.351043,0.457384,0.385974,0.0646439,0.0741377,0.581314,0.584739,0.966572,0.692626,0.799119,0.0973805,0.0289652,0.395595,0.857032,0.074044,0.640969,0.429698,0.889562,0.891411,0.648319,0.920997,0.816001,0.795108,0.589948,0.670396,0.804495,0.138675,0.639017,0.532587,0.377214,0.721061,0.571237,0.284022,0.514728,0.907822,0.711939,0.0914445,0.102018,0.28653,0.981743,0.0753911,0.678701,0.174684,0.101401,0.7636,0.743052,0.835778,0.34136,0.891086,0.375316,0.977689,0.0954148,0.0145177,0.264463,0.438383,0.412333,0.349349,0.410694,0.352956,0.0233837,0.209945,0.181561,0.421506,0.653168,0.0493978,0.794053,0.93898,0.614807,0.806854,0.960809,0.897521,0.317399,0.854642,0.843512,0.416047,0.832883,0.758803,0.636103,0.466212,0.431235,0.632695,0.357982,0.275488,0.449615,0.891226,0.328197,0.952422,0.911833,0.0805084,0.49734,0.0790887,0.894778,0.912814,0.709778,0.509445,0.516312,0.151393,0.380083,0.088816,0.535128,0.0205596,0.125521,0.671199,0.686725,0.757089,0.350644,0.129224,0.0845951,0.2317,0.283603,0.551643,0.673587,0.643294,0.240583,0.61451,0.679351,0.567187,0.319199,0.489828,0.983002,0.337467,0.269209,0.0593436,0.706627,0.130017,0.0637304,0.473007,0.741625,0.585754,0.948939,0.234153,0.307324,0.977474,0.240998,0.879579,0.735917,0.437622,0.923694,0.357225,0.973789,0.246113,0.931098,0.155325,0.593901,0.106627,0.0864497,0.885744,0.17805,0.997438,0.473747,0.354521,0.284208,0.777579,0.0591825,0.837937,0.955894,0.297928,0.9833,0.710776,0.586296,0.299527,0.110135,0.645906,0.174575,0.765384,0.253746,0.427203,0.422149,0.889407,0.487156,0.505419,0.21798,0.805223,0.73798,0.749046,0.830984,0.904291,0.505292,0.0221024,0.985263,0.684593,0.484206,0.150001,0.247965,0.68168,0.941913,0.645159,0.23974,0.0141588,0.0792622,0.093245,0.625043,0.314496,0.795107,0.38921,0.0945774,0.640547,0.798011,0.662127,0.0639978,0.187126,0.114584,0.721112,0.58328,0.390766,0.923502,0.392078,0.962556,0.0136368,0.548068,0.987867,0.488748,0.483342,0.987778,0.306564,0.347015,0.304762,0.983602,0.506404,0.750859,0.655053,0.310241,0.894637,0.479903,0.409951,0.775263,0.0285271,0.832412,0.692499,0.854315,0.646673,0.580121,0.402294,0.0342495,0.695387,0.362847,0.38568,0.377351,0.956919,0.999875,0.805508,0.405597,0.483646,0.395498,0.278826,0.113053,0.136436,0.00340456,0.590181,0.153795,0.29275,0.815768,0.289086,0.241646,0.344531,0.426549,0.751857,0.949378,0.664509,0.989976,0.944288,0.17214,0.428823,0.723299,0.650237,0.251496,0.96259,0.425145,0.905487,0.972951,0.669223,0.467829,0.425601,0.301426,0.165776,0.343991,0.998952,0.571323,0.996978,0.364985,0.790319,0.00511998,0.0260607,0.396358,0.226762,0.69658,0.177382,0.558569,0.0952068,0.121294,0.258161,0.878835,0.858318,0.701843,0.633873,0.141142,0.302368,0.36615,0.0113322,0.386173,0.0486341,0.884434,0.394953,0.680198,0.11736,0.555619,0.638089,0.953463,0.943,0.97296,0.789455,0.658809,0.986312,0.264414,0.59596,0.0540774,0.098775,0.347955,0.459026,0.323803,0.644188,0.969244,0.0987075,0.245601,0.888606,0.019568,0.0934633,0.675148,0.509817,0.405153,0.786883,0.898324,0.492578,0.0681418,0.000535131,0.982592,0.253868,0.480853,0.818753,0.644118,0.445379,0.0156746,0.236933,0.465166,0.0758405,0.541249,0.309415,0.810479,0.645658,0.825365,0.369911,0.909056,0.180837,0.399102,0.239825,0.969044,0.779639,0.712225,0.74189,0.189923,0.165837,0.662463,0.382433,0.675429,|0.827714,0.386233,0.528288,0.818981,0.665223,0.953208,0.702619,0.651637,0.894086,0.519401,0.727399,0.0919812,0.600038,0.866861,0.69341,0.691352,0.938786,0.327707,0.454143,0.800521,0.173466,0.422213,0.294405,0.150036,0.253467,0.183277,0.866995,0.800064,0.411515,0.376615,0.989316,0.385779,0.762111,0.257279,0.650816,0.32995,0.77611,0.344458,0.887432,0.052689,0.204872,0.441184,0.855784,0.607611,0.19257,0.300418,0.739948,0.835254,0.605965,0.563582,0.583376,0.273804,0.610351,0.880402,0.47695,0.691794,0.520662,0.798181,0.667052,0.265672,0.393527,0.467042,0.478903,0.015532,0.137995,0.693597,0.897321,0.97709,0.406093,0.676332,0.0956295,0.789912,0.240753,0.486058,0.641241,0.763725,0.367356,0.740483,0.951689,0.243888,0.290043,0.384398,0.150403,0.808449,0.357681,0.0318667,0.247686,0.80124,0.0939145,0.335472,0.399207,0.338672,0.373101,0.615613,0.583131,0.324352,0.973345,0.471804,0.096166,0.598588,0.26091,0.885123,0.385074,0.294305,0.700227,0.173048,0.232291,0.883954,0.769326,0.112747,0.754443,0.52895,0.57871,0.51598,0.929944,0.987063,0.234001,0.595633,0.56611,0.639788,0.163558,0.938597,0.0356629,0.19484,0.153483,0.432276,0.320367,0.0373287,0.96779,0.600223,0.599144,0.0777461,0.669029,0.284623,0.568716,0.497314,0.42187,0.309888,0.217496,0.780799,0.00140673,0.743532,0.849812,0.915754,0.796642,0.842739,0.746772,0.87821,0.910373,0.366772,0.26603,0.516454,0.462132,0.854583,0.70649,0.25588,0.164244,0.757002,0.53733,0.785052,0.874667,0.800475,0.167886,0.952754,0.717218,0.562575,0.651556,0.309912,0.155386,0.106821,0.146235,0.0342016,0.72978,0.619837,0.889162,0.991356,0.437796,0.151741,0.0269248,0.1352,0.825214,0.885639,0.644497,0.369764,0.212926,0.129348,0.777327,0.152695,0.623877,0.0697464,0.641335,0.935469,0.439367,0.353614,0.443579,0.0449424,0.269755,0.632378,0.517094,0.304823,0.867195,0.730858,0.608528,0.525514,0.45858,0.141378,0.753097,0.216678,0.0312504,0.108562,0.893021,0.269254,0.478231,0.182473,0.881195,0.0569407,0.637263,0.567901,0.132571,0.598662,0.0688373,0.144387,0.738301,0.634581,0.999875,0.360489,0.487916,0.364266,0.256039,0.0071196,0.849171,0.699546,0.275884,0.0404926,0.0176072,0.908061,0.617044,0.798108,0.743592,0.467045,0.94543,0.675838,0.0886633,0.523966,0.344239,0.427581,0.277609,0.434647,0.499612,0.931995,0.560069,0.322858,0.980737,0.987499,0.583278,0.660885,0.0342223,0.923821,0.879351,0.644861,0.913806,0.330639,0.467079,0.173609,0.513224,0.418606,0.134735,0.722259,0.0449187,0.360605,0.00700128,0.962461,0.903781,0.193068,0.682248,0.178661,0.335708,0.822095,0.979858,0.0358589,0.297396,0.756333,0.880036,0.524729,0.814983,0.113508,0.678175,0.195536,0.582471,0.496683,0.314215,0.553587,0.891991,0.996495,0.502855,0.712573,0.915882,0.30523,0.540451,0.530809,0.55225,0.316161,0.124496,0.13914,0.152746,0.605011,0.435057,0.437362,0.322578,0.977448,0.770443,0.589334,0.131296,0.951284,0.513565,0.150623,0.21874,0.879381,0.856041,0.298015,0.231489,0.537783,0.249729,0.0614139,0.452692,0.558839,0.757559,0.0659733,0.820967,0.666458,0.590715,0.271347,0.275562,0.457478,0.157556,0.723692,0.574203,0.80613,0.0935258,0.793971,0.831533,0.199517,0.238228,0.451905,0.401299,0.950756,0.123819,0.317321,0.525857,0.653508,0.493996,0.232762,0.0889957,0.984518,0.97021,0.832626,0.832921,0.373326,0.187244,0.00780737,0.741616,0.605777,0.692079,0.683276,0.93854,0.305763,0.781212,0.401073,0.262099,0.431145,0.111021,0.111189,0.259653,0.556279,0.602098,0.83804,0.670814,0.338503,0.511254,0.0765311,0.490418,0.403468,0.104961,0.0836789,0.330558,0.848539,0.526793,0.342818,0.830262,0.556664,0.336434,0.180565,0.739145,0.579816,0.913555,0.865852,0.00631219,0.16659,0.738048,0.70677,0.675931,0.0475147,0.456253,0.384125,0.334869,0.733865,0.446433,0.0194556,0.117679,0.681277,0.333166,0.515457,0.416298,0.281404,0.887848,0.879921,0.837413,0.831405,0.831842,0.671851,0.332574,0.621842,0.343262,0.195944,0.611034,0.212526,0.481876,0.10683,0.103131,0.297441,0.539932,0.856676,0.0599368,0.283301,0.558065,0.836528,0.192403,0.703108,0.955755,0.375334,0.788243,0.155145,0.576594,0.851635,0.669957,0.834366,0.435709,0.178408,0.930232,0.976142,0.245408,0.806655,0.583883,0.693624,0.300311,0.722721,0.866082,0.847434,0.233295,0.255984,0.0500882,0.671561,0.723081,0.550967,0.752349,0.88649,0.628891,0.415944,0.523927,0.0209303,0.182942,0.572495,0.566337,0.557028,0.685244,0.291701,0.848069,0.856504,0.983193,0.396814,0.972118,0.830481,0.480363,0.13969,0.630682,0.573932,0.738087,0.0371985,0.0540962,0.999634,0.836714,0.468005,0.459329,0.788792,0.289374,0.957573,0.983156,0.506083,0.960951,0.401057,0.57258,0.756635,0.0998912,0.21611,0.854935,0.190848,0.283437,0.546554,0.976896,0.437766,0.479833,0.495814,0.759795,0.979201,0.166789,0.119248,0.184597,0.432498,0.691611,0.498882,0.284677,0.314885,0.0577275,0.947995,0.878615,0.767409,0.0335753,0.00628352,0.190364,0.0124326,0.530145,0.703485,0.236124,0.236831,0.81448,0.395673,0.942517,0.636486,0.715493,0.0643817,0.766105,0.929893,0.724308,0.76151,0.353987,0.8874,0.559865,0.756553,0.797065,0.27151,0.102393,0.0292857,0.669552,0.428667,0.842262,0.765526,0.839687,0.717419,0.121349,0.958962,0.188214,0.225895,0.238375,0.760592,0.0129774,0.918845,0.442472,0.503639,0.17088,0.0467765,0.312598,0.32496,0.878236,0.986654,0.108677,0.128347,0.442927,0.469701,0.463123,0.0483434,0.342386,0.483749,0.990289,0.460525,0.852987,0.870185,0.0128595,0.489862,0.813295,0.38481,0.481548,0.604857,0.478991,0.203231,0.749907,0.815344,0.799521,0.66597,0.0636365,0.10296,0.390739,0.959399,0.196522,0.0782914,0.501385,0.659482,0.494794,0.060089,0.0205454,0.547784,0.132747,0.915995,0.124054,0.127093,0.85441,0.0466338,0.112209,0.52405,0.228961,0.883474,0.215962,0.475349,0.0324822,0.1352,0.619219,0.992298,0.371243,0.107372,0.624842,0.0177052,0.863084,0.103305,0.679325,0.0994977,0.566836,0.973325,0.583626,0.757261,0.59722,0.0990974,0.358527,0.512333,0.559964,0.230104,0.669038,0.0377982,0.00774246,0.538718,0.552969,0.16878,0.978664,0.7632,0.113384,0.869614,0.115184,0.0585698,0.80664,0.463837,0.244824,0.915588,0.715827,0.393245,0.805128,0.996723,0.682619,0.763979,0.539938,0.591658,0.130883,0.0373952,0.2553,0.235862,0.69205,0.259307,0.5075,0.242041,0.296765,0.342488,0.266675,0.194581,0.371023,0.377318,0.774878,0.631291,0.940418,0.454813,0.258407,0.840328,0.695299,0.923862,0.601678,0.106626,0.24946,0.910745,0.000884533,0.182452,0.510593,0.530856,0.228674,0.357119,0.197364,0.547909,0.424957,0.664785,0.381198,0.214379,0.036985,0.872382,0.886144,0.637028,0.858675,0.475468,0.854549,0.239003,0.774423,0.700461,0.947988,0.989317,0.524358,0.925295,0.676272,0.62308,0.102988,0.483024,0.998676,0.166959,0.849259,0.917512,0.8402,0.234392,0.313866,0.542325,0.667241,0.0349147,0.966997,0.0829731,0.261476,0.683213,0.575367,0.358447,0.275675,0.588736,0.760663,0.351214,0.114207,0.916319,0.564828,0.887899,0.627676,0.518053,0.0860813,0.0612814,0.614125,0.300326,0.918207,0.897729,0.249514,0.443176,0.225083,0.0665058,0.991299,0.730282,0.730597,0.347095,0.309497,0.486803,0.746312,0.854214,0.151341,0.0174765,0.985585,0.259926,0.626966,0.239923,0.622054,0.325953,0.714611,0.73465,0.63765,0.345778,0.150501,0.656304,0.837809,0.058907,0.236594,0.575422,0.823225,0.814823,0.351348,0.320318,0.151776,0.683785,0.518513,0.653557,0.75979,0.3508,0.71393,0.0699776,0.198713,0.044014,0.46685,0.809087,0.851692,0.997679,0.915115,0.626872,0.536548,0.736085,0.354154,0.354951,0.704285,0.960161,0.0234957,0.678626,0.547737,0.907481,0.745555,0.163303,0.306973,0.585171,0.866389,0.370392,0.21175,0.519467,0.637858,0.984616,0.128823,0.342861,0.638997,0.0705097,0.381524,0.645744,0.303827,0.943913,0.634784,0.0673208,0.58494,0.140137,0.315429,0.733345,0.827461,0.0684284,0.621808,0.464129,0.618934,0.516408,0.964581,0.303616,0.0538155,0.629265,0.400582,0.495686,0.601272,0.13233,0.831847,0.0220246,0.352292,0.839451,0.957816,0.420359,0.625566,0.456374,0.022534,0.341878,0.625541,0.703902,0.0463888,0.84993,0.791403,0.596056,0.654314,0.530681,0.18736,0.667617,0.444858,0.411656,0.928065,0.84654,0.701868,0.199639,0.593928,0.0657651,0.178544,0.513275,0.412424,0.758799,0.857135,0.406947,0.116626,0.562673,0.64486,0.161272,0.095235,0.414635,0.976284,0.334902,0.526404,0.835822,0.709337,0.978814,0.789271,0.902303,0.4379,0.300991,0.679419,0.34124,0.867007,0.683365,0.0627989,0.783008,0.635543,0.491469,0.598604,0.604107,0.156156,0.721649,0.902369,0.516259,0.134463,0.211824,0.600361,0.3544,0.498065,0.631071,0.808106,0.705348,0.224758,0.867327,0.753849,0.246944,0.488237,0.672894,0.91839,0.429466,0.437187,0.439818,0.666032,0.00753284,0.0516349,0.752131,0.353114,0.143367,0.00206542,0.830211,0.557276,0.425303,0.489585,0.9398,0.25312,0.559753,0.896435,0.0512581,0.865061,0.644267,0.83107,0.408059,0.201585,0.0185704,0.78359,0.692416,0.0696768,0.61734,0.352904,0.954266,0.295426,0.757041,0.586354,0.604968,0.223666,0.685975,0.201104,0.584776,0.279523,0.270643,0.344326,0.648805,0.599654,0.734435,0.147714,0.391405,0.961619,0.284932,0.6138,0.274015,0.0137296,0.465405,0.247405,0.653282,0.890381,0.475071,0.97995,0.649118,0.606056,0.154859,0.0503225,0.0655438,0.820974,0.805767,0.385858,0.217998,|0.585858,0.325518,0.189743,0.555039,0.350927,0.200455,0.606454,0.121248,0.684692,0.811334,0.640243,0.655736,0.927308,0.45039,0.12704,0.109476,0.363721,0.0624419,0.0936854,0.0571151,0.837156,0.0148853,0.444913,0.523725,0.711759,0.141432,0.44128,0.782485,0.637375,0.750202,0.251864,0.693002,0.137506,0.609659,0.893955,0.762346,0.926788,0.0932716,0.0789657,0.767056,0.654249,0.547473,0.844874,0.963164,0.338917,0.452175,0.435962,0.408321,0.999744,0.235106,0.512363,0.348797,0.145836,0.0959942,0.398557,0.753831,0.0820548,0.490903,0.597584,0.325369,0.111476,0.119874,0.492053,0.44319,0.333559,0.429476,0.0608794,0.783667,0.708778,0.447734,0.666167,0.998065,0.323102,0.158097,0.653876,0.882012,0.464603,0.334215,0.982944,0.246785,0.56057,0.973021,0.488603,0.724598,0.0320311,0.645063,0.124352,0.139881,0.416464,0.0526653,0.959689,0.316224,0.906647,0.413217,0.578099,0.977434,0.574652,0.413008,0.598646,0.321218,0.984342,0.966955,0.438102,0.277029,0.948662,0.205196,0.58979,0.602787,0.584835,0.60343,0.428083,0.918207,0.0352309,0.995604,0.567659,0.192434,0.38953,0.626575,0.701998,0.889146,0.581949,0.751108,0.920727,0.34816,0.475775,0.800408,0.482831,0.151697,0.944699,0.769634,0.289097,0.867457,0.0423438,0.921597,0.565633,0.476614,0.320435,0.671195,0.648594,0.407279,0.823587,0.394401,0.985885,0.0982503,0.229699,0.754033,0.250595,0.469911,0.946243,0.715782,0.420091,0.175658,0.236512,0.845496,0.27435,0.628558,0.758919,0.604885,0.464689,0.664999,0.65463,0.00420189,0.49125,0.658753,0.731771,0.255329,0.268613,0.293451,0.382463,0.230792,0.425351,0.851315,0.237936,0.424223,0.0972628,0.198151,0.370308,0.256932,0.92424,0.023864,0.0378156,0.751618,0.831902,0.776009,0.643515,0.468968,0.524271,0.580812,0.514186,0.841017,0.068574,0.15301,0.535956,0.266162,0.452447,0.105636,0.968747,0.251645,0.495944,0.991557,0.901802,0.0975139,0.964232,0.320841,0.817907,0.853442,0.408254,0.0708096,0.0840439,0.024455,0.202663,0.331441,0.686142,0.0741032,0.484053,0.778474,0.578835,0.49285,0.539653,0.447725,0.56981,0.712501,0.412818,0.547919,0.913737,0.264809,0.802173,0.315674,0.12614,0.995555,0.537915,0.294364,0.308235,0.0794488,0.457483,0.0735114,0.373641,0.684646,0.308845,0.145368,0.534317,0.363549,0.593572,0.559929,0.182394,0.843034,0.615981,0.5183,0.968203,0.986906,0.149678,0.0005126,0.133784,0.913755,0.935762,0.770276,0.920683,0.0423762,0.756837,0.797637,0.189677,0.831587,0.153958,0.587174,0.80004,0.915722,0.540362,0.852606,0.902894,0.457972,0.347036,0.369954,0.942149,0.722456,0.943184,0.0250763,0.388008,0.834079,0.44461,0.529962,0.172895,0.774008,0.0047375,0.703093,0.835349,0.283906,0.370777,0.409533,0.358015,0.0544012,0.704102,0.173675,0.647564,0.743935,0.268299,0.580682,0.70901,0.0166934,0.938919,0.95198,0.0207947,0.745757,0.808089,0.209184,0.252675,0.0471027,0.282055,0.580608,0.409102,0.296275,0.0450841,0.709848,0.787559,0.210709,0.121068,0.38812,0.372956,0.13868,0.85888,0.419884,0.755349,0.517756,0.0775532,0.830079,0.82272,0.521865,0.799162,0.900715,0.842434,0.956259,0.475361,0.753187,0.932937,0.18362,0.837535,0.747346,0.232054,0.252672,0.559421,0.236601,0.268152,0.0320607,0.383445,0.521425,0.892643,0.649591,0.848845,0.895136,0.269695,0.20074,0.281978,0.699879,0.0192822,0.355373,0.214724,0.785769,0.0797347,0.794494,0.480115,0.878332,0.615764,0.450385,0.859026,0.858349,0.616389,0.120593,0.230125,0.824844,0.142761,0.240172,0.640442,0.0226869,0.676995,0.0591165,0.398033,0.483821,0.11575,0.448564,0.290123,0.995538,0.778696,0.516337,0.540315,0.232215,0.664274,0.594804,0.268672,0.130346,0.11483,0.588903,0.243177,0.884221,0.846495,0.722301,0.312823,0.0233611,0.674071,0.946155,0.579418,0.552848,0.165109,0.61764,0.155133,0.332239,0.613853,0.151391,0.838106,0.453199,0.38015,0.354858,0.0742832,0.621412,0.386766,0.81249,0.0766187,0.426454,0.803133,0.246755,0.798025,0.494069,0.144952,0.970251,0.327736,0.221721,0.776178,0.793254,0.874592,0.818643,0.501758,0.0525339,0.0867203,0.0601443,0.936062,0.497017,0.217401,0.599048,0.498284,0.684415,0.378426,0.899733,0.287452,0.607861,0.390056,0.981408,0.550199,0.86793,0.658424,0.157039,0.345989,0.739197,0.69819,0.122395,0.0515935,0.47741,0.109415,0.829587,0.725006,0.314148,0.729163,0.098469,0.242196,0.718598,0.366055,0.935083,0.929972,0.944322,0.386175,0.841088,0.488003,0.320648,0.649695,0.622104,0.7339,0.654488,0.0441803,0.574737,0.306379,0.525577,0.409341,0.177208,0.661778,0.71125,0.611818,0.112215,0.570638,0.0419725,0.616859,0.161489,0.203973,0.491482,0.0820107,0.146271,0.44406,0.0930844,0.523489,0.835536,0.981507,0.840142,0.293881,0.675639,0.335825,0.861036,0.408386,0.821792,0.978571,0.185687,0.143508,0.337862,0.711438,0.477037,0.925748,0.849649,0.108122,0.420556,0.949817,0.701703,0.559008,0.341479,0.752557,0.321237,0.0499449,0.211329,0.519333,0.846309,0.0556638,0.928134,0.111042,0.944237,0.906826,0.476905,0.408382,0.16332,0.680995,0.572027,0.519364,0.119423,0.945605,0.511986,0.70431,0.233077,0.267719,0.21089,0.0757318,0.825691,0.594094,0.700324,0.774664,0.849865,0.29172,0.969283,0.790643,0.505428,0.956661,0.437419,0.780618,0.411552,0.341889,0.561649,0.835953,0.76768,0.341923,0.143778,0.637289,0.962651,0.78507,0.58991,0.830914,0.931417,0.917577,0.925265,0.781899,0.177238,0.0426161,0.370647,0.470472,0.0492206,0.744036,0.0359136,0.892226,0.523663,0.50352,0.627742,0.0564045,0.205112,0.645004,0.598767,0.0156279,0.956004,0.866148,0.267838,0.788272,0.904056,0.546911,0.753776,0.528677,0.686914,0.104477,0.861572,0.676719,0.758083,0.786853,0.361393,0.0374256,0.442963,0.944734,0.43637,0.188545,0.20072,0.0191389,0.818742,0.847477,0.499048,0.469349,0.806955,0.219157,0.153,0.285646,0.840925,0.886803,0.94868,0.760534,0.539437,0.842295,0.400477,0.719333,0.321738,0.315252,0.661234,0.599544,0.977591,0.293436,0.0544047,0.522881,0.366386,0.0557169,0.817779,0.881326,0.283308,0.691811,0.0813088,0.288685,0.155257,0.204115,0.0874875,0.375104,0.971584,0.463703,0.404498,0.138225,0.422173,0.270979,0.867637,0.00536299,0.412305,0.198299,0.87525,0.28418,0.875685,0.177805,0.772884,0.174761,0.722421,0.385275,0.0348463,0.189978,0.305563,0.51691,0.106358,0.525322,0.199906,0.395188,0.0697125,0.237326,0.926492,0.650383,0.982234,0.704907,0.921242,0.0719808,0.775481,0.151432,0.450707,0.596708,0.253467,0.308029,0.019607,0.964735,0.154603,0.920211,0.945664,0.247908,0.881271,0.486857,0.774383,0.320572,0.288219,0.191163,0.214469,0.965307,0.359086,0.0777841,0.742944,0.752485,0.974166,0.828171,0.163607,0.443118,0.785195,0.583334,0.692207,0.576533,0.991542,0.499092,0.511506,0.811407,0.410148,0.0819125,0.4404,0.111463,0.316523,0.993351,0.729046,0.189184,0.459524,0.931756,0.647336,0.253991,0.894204,0.133314,0.0119136,0.82713,0.15031,0.604925,0.678379,0.832676,0.899338,0.482267,0.523348,0.535035,0.13051,0.112858,0.122549,0.231377,0.332474,0.818749,0.933375,0.754708,0.523025,0.633216,0.8757,0.800188,0.527865,0.090556,0.497546,0.0644616,0.323861,0.221866,0.820758,0.29998,0.615898,0.454355,0.123071,0.319281,0.955715,0.146703,0.818341,0.566347,0.488823,0.380441,0.5535,0.0388413,0.893013,0.958971,0.716771,0.919295,0.445348,0.419733,0.898966,0.222608,0.856454,0.898083,0.515887,0.15391,0.700092,0.5739,0.924203,0.0508174,0.242905,0.63899,0.569934,0.241099,0.96722,0.921276,0.834852,0.656901,0.0373865,0.671591,0.845068,0.947573,0.488517,0.868803,0.551833,0.795901,0.457447,0.552315,0.442325,0.164538,0.823583,0.149551,0.33466,0.399419,0.0500389,0.842401,0.0553866,0.579288,0.948038,0.269308,0.534311,0.500115,0.488746,0.53476,0.253805,0.327776,0.734842,0.158981,0.0576073,0.972422,0.534459,0.686509,0.633853,0.953749,0.0747094,0.21074,0.526473,0.881755,0.291332,0.104333,0.353353,0.0558506,0.5708,0.252129,0.643542,0.363968,0.0704569,0.718515,0.535176,0.147595,0.130433,0.125561,0.598888,0.172979,0.110709,0.35273,0.124868,0.119763,0.371184,0.65071,0.0780114,0.105948,0.808539,0.461258,0.850837,0.825782,0.200935,0.972416,0.584253,0.822549,0.644024,0.7805,0.638208,0.593308,0.498138,0.828734,0.905777,0.797094,0.105862,0.16746,0.716189,0.463029,0.503882,0.949956,0.20998,0.646055,0.0321442,0.908465,0.0723155,0.0218141,0.727125,0.582579,0.842213,0.309971,0.576028,0.659998,0.690913,0.177055,0.254932,0.514283,0.170298,0.797771,0.886578,0.119699,0.869565,0.366482,0.770526,0.907507,0.293466,0.252011,0.780558,0.0598078,0.404291,0.69411,0.731726,0.443014,0.751481,0.0543707,0.492641,0.50668,0.226175,0.361783,0.382412,0.25345,0.963364,0.187182,0.261989,0.211212,0.382944,0.34999,0.826042,0.974189,0.690938,0.936266,0.979398,0.681679,0.0760184,0.397367,0.752638,0.873976,0.78831,0.886415,0.827609,0.741391,0.578009,0.463886,0.681353,0.202836,0.385994,0.269457,0.249064,0.793789,0.499215,0.522227,0.0796343,0.903928,0.327854,0.843337,0.854715,0.0916796,0.151069,0.512061,0.629691,0.36215,0.665167,0.735275,0.83717,0.91352,0.482834,0.51784,0.409101,0.174263,0.637744,0.466814,0.789404,0.909407,0.809816,0.534344,0.263233,0.796819,0.160333,0.248858,0.357094,0.678309,0.00759137,0.705909,0.376066,0.923723,0.0475154,0.221222,0.406796,0.865079,0.711594,0.802287,0.517835,0.0628549,0.130948,0.66147,0.0610926,0.217965,0.200775,0.599584,0.50744,|0.843243,0.773834,0.315534,0.046703,0.821252,0.632956,0.461164,0.893897,0.178112,0.34477,0.338944,0.714996,0.718278,0.0266937,0.420424,0.276149,0.941516,0.873984,0.358788,0.44329,0.943312,0.184237,0.941047,0.638635,0.401095,0.00377828,0.981504,0.851373,0.246248,0.241807,0.200761,0.266841,0.301735,0.665806,0.381485,0.485097,0.127816,0.550024,0.363802,0.631015,0.265005,0.824181,0.520062,0.994385,0.255828,0.656675,0.598462,0.494626,0.504273,0.980379,0.990445,0.306877,0.91079,0.872425,0.877889,0.150539,0.22258,0.4419,0.94028,0.840753,0.658531,0.299099,0.836719,0.729925,0.948895,0.579463,0.85163,0.866702,0.189185,0.451259,0.257301,0.0677124,0.609665,0.293836,0.601721,0.350816,0.429827,0.324997,0.302876,0.419775,0.615586,0.834245,0.457304,0.47829,0.341855,0.127159,0.471237,0.0236332,0.669158,0.357018,0.0619405,0.569643,0.147284,0.246571,0.61141,0.225644,0.249598,0.141792,0.385048,0.295382,0.694132,0.146432,0.130219,0.528655,0.892186,0.307048,0.0179603,0.115562,0.319062,0.773962,0.0866913,0.962964,0.802169,0.718103,0.977111,0.656109,0.288528,0.30929,0.980693,0.151529,0.0929727,0.817354,0.935756,0.0330638,0.0921668,0.23177,0.347926,0.200242,0.155401,0.767406,0.919504,0.881877,0.0127574,0.960917,0.783881,0.0553672,0.155258,0.621685,0.446492,0.796409,0.211875,0.6545,0.659447,0.0899701,0.625961,0.804728,0.0752959,0.627523,0.816742,0.240634,0.995209,0.203103,0.132685,0.0132138,0.908966,0.4217,0.191993,0.00807232,0.374038,0.262628,0.736848,0.0420684,0.625877,0.733001,0.782134,0.750294,0.726667,0.368764,0.921174,0.850812,0.831398,0.46055,0.99594,0.0360947,0.332679,0.343519,0.455521,0.646443,0.552026,0.123276,0.401044,0.97506,0.713096,0.130113,0.17693,0.709925,0.422422,0.985965,0.294073,0.00763285,0.241407,0.619442,0.119003,0.212745,0.646078,0.221418,0.134675,0.704833,0.0742816,0.265847,0.0613723,0.441805,0.168122,0.0603669,0.681147,0.375345,0.455023,0.674611,0.688337,0.971553,0.283816,0.232114,0.712365,0.882432,0.0903983,0.733437,0.936963,0.459663,0.673128,0.312292,0.141856,0.746059,0.967677,0.169307,0.956331,0.155508,0.596803,0.415138,0.790901,0.368507,0.79773,0.0283884,0.722603,0.550544,0.281645,0.840278,0.912241,0.656754,0.728726,0.236823,0.215622,0.254524,0.385065,0.242097,0.380531,0.959804,0.213411,0.928632,0.904078,0.912753,0.853848,0.664181,0.421783,0.0600516,0.731333,0.655654,0.538438,0.230945,0.382883,0.940286,0.907292,0.938281,0.356794,0.116169,0.561672,0.737308,0.428007,0.139331,0.693564,0.544949,0.737442,0.889979,0.166787,0.87144,0.325469,0.400869,0.619673,0.182013,0.599574,0.146502,0.528652,0.0555874,0.488612,0.329986,0.40274,0.861791,0.674584,0.239961,0.47865,0.743979,0.279795,0.819784,0.0937583,0.491214,0.856643,0.35813,0.371171,0.191386,0.844561,0.467288,0.589294,0.812141,0.976433,0.557542,0.909795,0.76184,0.343306,0.0588035,0.363173,0.757378,0.500333,0.357077,0.133903,0.381512,0.340462,0.502138,0.994737,0.403468,0.120258,0.872416,0.0280551,0.91092,0.242279,0.120614,0.545249,0.357169,0.59145,0.526006,0.782526,0.932202,0.04518,0.167878,0.130896,0.363487,0.965689,0.448057,0.938734,0.63214,0.23131,0.764342,0.657643,0.319066,0.476737,0.234348,0.647614,0.962253,0.242251,0.280945,0.428225,0.429754,0.562877,0.71891,0.166119,0.689378,0.336715,0.936779,0.944934,0.28422,0.953484,0.406836,0.772582,0.118228,0.386735,0.185662,0.977985,0.80861,0.131778,0.160589,0.414238,0.798295,0.998046,0.0841841,0.234761,0.0689751,0.720496,0.698321,0.764063,0.149109,0.444709,0.355209,0.0547616,0.221147,0.223229,0.917746,0.409355,0.791412,0.928108,0.673015,0.744886,0.78839,0.28528,0.463587,0.64731,0.934534,0.00600696,0.14162,0.963376,0.972625,0.0505497,0.565947,0.734109,0.348916,0.054476,0.0173763,0.930441,0.609403,0.998995,0.84677,0.587372,0.199023,0.119688,0.856994,0.289133,0.0615846,0.419014,0.198944,0.737982,0.724547,0.295695,0.373276,0.414718,0.376459,0.229772,0.133549,0.794346,0.702008,0.619664,0.471645,0.560978,0.735435,0.808686,0.752385,0.325817,0.380623,0.033294,0.868051,0.39637,0.396766,0.648907,0.820782,0.855601,0.524979,0.550747,0.974589,0.431664,0.74846,0.565515,0.840355,0.521455,0.305368,0.955105,0.716353,0.663188,0.496824,0.412934,0.0757043,0.617695,0.0273921,0.441665,0.482848,0.728227,0.732068,0.11234,0.270293,0.553621,0.992003,0.0130991,0.472304,0.57493,0.163912,0.63947,0.00152683,0.379579,0.0992419,0.0760289,0.209872,0.820457,0.226671,0.600661,0.456616,0.129561,0.69807,0.693328,0.0241902,0.569491,0.030452,0.381294,0.550801,0.845401,0.409472,0.106484,0.620216,0.760661,0.249549,0.718697,0.582685,0.713177,0.865576,0.512148,0.522934,0.869086,0.241687,0.0644618,0.50243,0.0275046,0.653031,0.0844864,0.207876,0.173209,0.258142,0.413772,0.055112,0.659891,0.0452269,0.317401,0.785599,0.284384,0.0590121,0.535607,0.730411,0.776555,0.846785,0.797067,0.11015,0.834566,0.490417,0.400731,0.336966,0.469604,0.729148,0.590522,0.0566589,0.0970725,0.331498,0.370555,0.398629,0.677945,0.94462,0.124524,0.132419,0.429845,0.375802,0.364073,0.515219,0.587147,0.248265,0.230047,0.68759,0.800384,0.925207,0.0249926,0.62087,0.959762,0.158795,0.300487,0.413305,0.34623,0.516363,0.0479492,0.446909,0.51716,0.653433,0.989171,0.639869,0.118154,0.54107,0.579937,0.831516,0.996902,0.631343,0.985986,0.117571,0.294487,0.125501,0.0482803,0.926564,0.790766,0.493166,0.883682,0.483859,0.547973,0.99129,0.76163,0.263346,0.519499,0.751212,0.7843,0.741747,0.176601,0.409202,0.935003,0.401392,0.656784,0.598093,0.506466,0.667029,0.891777,0.107509,0.30165,0.862932,0.252628,0.604678,0.572012,0.411522,0.142521,0.460242,0.142282,0.955764,0.585351,0.297567,0.0346811,0.4597,0.609099,0.727732,0.514673,0.734686,0.468373,0.765139,0.749349,0.923724,0.94621,0.117322,0.317726,0.507844,0.260451,0.633389,0.111636,0.301584,0.00177032,0.199383,0.33418,0.459438,0.665703,0.941307,0.274386,0.410931,0.457803,0.136713,0.470767,0.475955,0.784965,0.641931,0.826488,0.459994,0.951037,0.333111,0.905374,0.565341,0.877212,0.719769,0.699885,0.66637,0.233123,0.406561,0.0389631,0.833235,0.370966,0.243232,0.365882,0.897337,0.869033,0.682729,0.13614,0.614161,0.774398,0.188955,0.677983,0.357552,0.601817,0.476573,0.154347,0.305467,0.476945,0.580746,0.500538,0.610376,0.132048,0.697055,0.724661,0.442872,0.354369,0.0429948,0.554921,0.119831,0.343132,0.643217,0.289053,0.488614,0.622049,0.603917,0.117027,0.744719,0.749319,0.0853649,0.542344,0.162985,0.714302,0.391581,0.793483,0.678289,0.924189,0.680003,0.170063,0.950359,0.0388981,0.350481,0.648805,0.268169,0.991609,0.199145,0.949562,0.859044,0.502715,0.575116,0.400946,0.976144,0.171819,0.566802,0.901789,0.0165226,0.423095,0.912429,0.424095,0.435255,0.777134,0.672462,0.626469,0.612037,0.656878,0.0780385,0.132846,0.382254,0.415578,0.79912,0.10231,0.40091,0.688546,0.207788,0.0504192,0.926422,0.998485,0.160818,0.0734658,0.581355,0.543641,0.251703,0.0687845,0.0811012,0.93526,0.937336,0.939796,0.606178,0.562531,0.0267229,0.0114515,0.688963,0.892127,0.599099,0.409791,0.664911,0.945715,0.890376,0.992542,0.114521,0.300413,0.632767,0.0119469,0.611443,0.404569,0.982781,0.829735,0.23195,0.586515,0.0557519,0.337593,0.190229,0.0670876,0.229043,0.103704,0.385405,0.333009,0.21952,0.594191,0.193668,0.0371882,0.348474,0.927513,0.192234,0.280375,0.173039,0.904294,0.367772,0.540206,0.626673,0.0592946,0.260945,0.917905,0.221323,0.590452,0.569668,0.511474,0.714516,0.667785,0.335076,0.94198,0.924337,0.655999,0.986756,0.648662,0.793751,0.239959,0.950836,0.107228,0.539404,0.623283,0.0467761,0.242654,0.5626,0.873055,0.761046,0.366161,0.369045,0.630417,0.0298951,0.270109,0.264599,0.00637603,0.635813,0.108512,0.712832,0.949356,0.45835,0.386557,0.127448,0.257641,0.308674,0.0718961,0.506927,0.424786,0.0960894,0.0428824,0.485072,0.0545304,0.295094,0.355263,0.24896,0.463677,0.365832,0.0957379,0.0207748,0.336366,0.00448769,0.122533,0.686915,0.0768485,0.765265,0.181851,0.384091,0.915729,0.0157751,0.624337,0.0803154,0.586209,0.308212,0.307734,0.888726,0.161307,0.0499608,0.325136,0.299047,0.68716,0.168552,0.221808,0.294318,0.739315,0.73933,0.585662,0.152074,0.422679,0.619962,0.416334,0.0348222,0.326326,0.936064,0.42309,0.0891082,0.734521,0.0986706,0.272939,0.459389,0.928811,0.544417,0.782673,0.425844,0.344175,0.685475,0.634082,0.594346,0.921867,0.603809,0.921082,0.411931,0.987189,0.0157742,0.549752,0.830089,0.0749153,0.262874,0.739338,0.34183,0.729556,0.816942,0.671618,0.966691,0.571267,0.68679,0.851789,0.540034,0.277441,0.796428,0.0461903,0.767812,0.854845,0.333191,0.906072,0.679833,0.319389,0.166546,0.91966,0.515759,0.892119,0.260614,0.582255,0.313972,0.326126,0.722467,0.815723,0.0432567,0.303578,0.162005,0.290765,0.279811,0.658194,0.895136,0.0512658,0.000416279,0.75186,0.828706,0.697048,0.0484611,0.996911,0.226883,0.537114,0.624438,0.811864,0.216182,0.956286,0.998534,0.761915,0.246627,0.38621,0.331948,0.431868,0.717434,0.369364,0.659086,0.233392,0.00372821,0.990818,0.0677025,0.331702,0.954159,0.523242,0.93723,0.774264,0.129574,0.459714,0.0136976,0.355369,0.723528,0.390639,0.31645,0.373526,0.71521,0.425581,0.618812,0.526466,0.180449,0.912822,0.99696,0.45205,0.562934,0.0650462,0.201101,0.250375,0.340504,0.118118,0.773261,0.356898,0.102013,|0.0688838,0.427945,0.951809,0.309754,0.291768,0.427589,0.0462478,0.342752,0.520521,0.220763,0.561305,0.105738,0.664245,0.66556,0.772953,0.766025,0.75629,0.792302,0.590032,0.787879,0.212798,0.82177,0.433805,0.851389,0.033676,0.342999,0.84831,0.832577,0.192772,0.660575,0.682902,0.0959412,0.316123,0.105651,0.575031,0.549379,0.229357,0.558568,0.818411,0.532884,0.720158,0.405242,0.276988,0.613099,0.711593,0.388882,0.252399,0.43508,0.221822,0.79091,0.353913,0.0686291,0.0659296,0.746436,0.440302,0.860848,0.578321,0.403914,0.649025,0.217718,0.667997,0.8708,0.105708,0.576617,0.388427,0.257839,0.119877,0.0400888,0.418657,0.732505,0.169931,0.741877,0.123128,0.876881,0.936224,0.844183,0.85615,0.0991233,0.531842,0.337169,0.166009,0.234934,0.31899,0.822656,0.845235,0.991283,0.437727,0.37971,0.920611,0.879796,0.731242,0.0849132,0.310782,0.0954656,0.38906,0.102294,0.101812,0.966391,0.872624,0.021569,0.863018,0.462284,0.974281,0.935043,0.685085,0.464813,0.783953,0.913303,0.0457024,0.663685,0.305229,0.543605,0.123025,0.100313,0.670008,0.85811,0.313351,0.0846025,0.937072,0.938633,0.857026,0.259528,0.731694,0.105287,0.73955,0.0265159,0.00124937,0.30628,0.0220886,0.282444,0.577083,0.447744,0.10231,0.234894,0.265616,0.095567,0.780199,0.987021,0.796138,0.962736,0.769376,0.0438436,0.688146,0.89735,0.753182,0.0549215,0.637478,0.425499,0.485707,0.307454,0.0787222,0.0798781,0.957449,0.312857,0.447309,0.719731,0.216253,0.835392,0.0946472,0.0827145,0.28837,0.837475,0.141456,0.949837,0.484959,0.0604294,0.552967,0.167496,0.259215,0.520755,0.0727408,0.837512,0.117786,0.315065,0.089784,0.718776,0.388008,0.596242,0.901178,0.516645,0.0218581,0.788733,0.705418,0.468736,0.859561,0.283134,0.139326,0.96788,0.202496,0.235999,0.0397415,0.341868,0.724801,0.551961,0.0331821,0.0882471,0.304815,0.143396,0.485711,0.60441,0.958685,0.000707686,0.714387,0.301461,0.897765,0.89863,0.0477655,0.333322,0.248362,0.651594,0.851972,0.883593,0.47435,0.83459,0.522336,0.234856,0.0593985,0.922468,0.386034,0.775965,0.715119,0.0271584,0.942676,0.805129,0.897237,0.462798,0.614117,0.253475,0.186914,0.0329813,0.37528,0.764715,0.0613758,0.358333,0.622982,0.69533,0.116422,0.024555,0.721513,0.76849,0.585497,0.594176,0.152362,0.220336,0.0110156,0.470105,0.938991,0.141728,0.22681,0.916235,0.507328,0.231488,0.797148,0.269406,0.0823399,0.173734,0.0968322,0.519482,0.336868,0.703989,0.906681,0.579592,0.64353,0.0128476,0.660785,0.590969,0.0796967,0.209213,0.0154635,0.808142,0.490925,0.760099,0.805543,0.031151,0.74287,0.210431,0.368443,0.0309626,0.0694852,0.0876823,0.435436,0.119334,0.315299,0.752653,0.0387366,0.430843,0.626355,0.423834,0.0451354,0.894287,0.396723,0.480739,0.418671,0.944939,0.810755,0.198931,0.45698,0.792964,0.20398,0.39137,0.224502,0.34196,0.822311,0.480559,0.419486,0.733345,0.392744,0.476088,0.835682,0.247879,0.523643,0.49029,0.180659,0.209856,0.519445,0.429278,0.133831,0.759938,0.1165,0.107089,0.708409,0.105483,0.899519,0.977355,0.031752,0.884513,0.0804352,0.141625,0.499812,0.643183,0.394468,0.368556,0.970532,0.618604,0.741985,0.814514,0.218404,0.543127,0.993741,0.490636,0.0104356,0.975586,0.383674,0.337462,0.0338671,0.98744,0.595834,0.655935,0.991006,0.33885,0.374089,0.544627,0.755396,0.258687,0.242303,0.481122,0.234005,0.155076,0.5332,0.293598,0.188344,0.148945,0.0860065,0.672088,0.900121,0.288393,0.315302,0.52196,0.584438,0.55982,0.841022,0.807094,0.933173,0.199848,0.932404,0.852075,0.270825,0.912662,0.49928,0.416629,0.882173,0.111529,0.266808,0.314761,0.361886,0.877891,0.593523,0.885757,0.705167,0.0663634,0.224346,0.319786,0.635625,0.0630284,0.146821,0.0994509,0.0989984,0.584191,0.877631,0.815486,0.100321,0.919473,0.910435,0.0685943,0.569973,0.224734,0.470374,0.573816,0.897224,0.27336,0.275467,0.88111,0.441704,0.956203,0.885817,0.6651,0.594932,0.239091,0.655692,0.529279,0.676203,0.954743,0.372458,0.785249,0.538528,0.00672436,0.177624,0.414802,0.665412,0.271146,0.90882,0.524886,0.718992,0.675647,0.931595,0.888849,0.218206,0.597368,0.953912,0.0946828,0.958768,0.59782,0.903977,0.13767,0.486223,0.367273,0.2945,0.0613064,0.925988,0.87838,0.911515,0.321914,0.274457,0.357808,0.890463,0.113809,0.623577,0.297181,0.696747,0.0481376,0.565586,0.151115,0.623081,0.657484,0.390117,0.439,0.260161,0.452855,0.558831,0.898863,0.928614,0.943555,0.971675,0.378229,0.876239,0.3099,0.493855,0.416937,0.927061,0.766563,0.409226,0.825813,0.978831,0.10319,0.413932,0.998758,0.144609,0.646489,0.205334,0.612363,0.117248,0.0265241,0.19911,0.26094,0.150042,0.185405,0.817717,0.781638,0.537665,0.119945,0.260947,0.522094,0.571168,0.811142,0.883704,0.13637,0.290556,0.695153,0.309429,0.196644,0.64408,0.976593,0.321414,0.568187,0.0197146,0.36544,0.117476,0.872336,0.587559,0.00518769,0.40963,0.752139,0.778763,0.0905586,0.975811,0.0510438,0.162392,0.697225,0.410288,0.87729,0.163566,0.733551,0.114154,0.714562,0.893508,0.347388,0.373385,0.641976,0.609728,0.489478,0.582763,0.69397,0.651636,0.869923,0.802802,0.697973,0.124624,0.0786265,0.754199,0.492714,0.13809,0.822943,0.395971,0.165585,0.358699,0.482267,0.380344,0.205593,0.028191,0.524304,0.706487,0.734907,0.544543,0.506125,0.6077,0.200371,0.755569,0.629889,0.249277,0.903234,0.156124,0.778914,0.404249,0.635309,0.116527,0.672336,0.816953,0.141642,0.610369,0.477113,0.0769095,0.555631,0.508438,0.97923,0.777308,0.348934,0.56272,0.321425,0.386747,0.778564,0.477053,0.5228,0.256828,0.501784,0.289097,0.929687,0.348783,0.47945,0.220449,0.0859044,0.550412,0.379452,0.821202,0.802968,0.484899,0.27411,0.825544,0.413961,0.100316,0.775638,0.47405,0.928679,0.221322,0.856428,0.79392,0.847607,0.728286,0.727701,0.0341236,0.899347,0.769208,0.964912,0.334913,0.853224,0.0578308,0.547919,0.737578,0.769066,0.661977,0.0615091,0.632966,0.524948,0.838032,0.605169,0.92315,0.786367,0.431563,0.596801,0.451899,0.128549,0.798409,0.863023,0.628741,0.625017,0.7716,0.992586,0.693982,0.337548,0.365088,0.792074,0.634641,0.807072,0.893763,0.667979,0.800314,0.693066,0.87037,0.796516,0.175841,0.106125,0.299338,0.528581,0.555446,0.0350359,0.264099,0.728396,0.982952,0.668843,0.49353,0.725222,0.720818,0.0838304,0.654309,0.955801,0.480002,0.203677,0.875153,0.86183,0.562885,0.660468,0.010501,0.676135,0.350166,0.453743,0.608862,0.180371,0.598636,0.325467,0.608094,0.422173,0.0349692,0.882209,0.175516,0.275886,0.252177,0.624489,0.950147,0.0764174,0.119848,0.780794,0.701251,0.356209,0.791191,0.621558,0.365287,0.981234,0.484413,0.179936,0.222877,0.174553,0.04331,0.737923,0.560956,0.0427504,0.262874,0.806522,0.527574,0.50606,0.250628,0.0244402,0.533555,0.153425,0.143124,0.0360797,0.916512,0.284419,0.621865,0.9461,0.756203,0.749839,0.834891,0.861386,0.734272,0.0401057,0.409097,0.896022,0.728558,0.633374,0.652261,0.0553787,0.810261,0.77425,0.418634,0.408348,0.105646,0.668067,0.637956,0.708063,0.638472,0.31608,0.603793,0.521056,0.911708,0.226622,0.459586,0.911197,0.893754,0.569855,0.461841,0.716331,0.330531,0.279643,0.552135,0.321262,0.588971,0.185708,0.508588,0.59295,0.632115,0.125111,0.245424,0.393472,0.957499,0.0624854,0.0075646,0.871894,0.843792,0.0186083,0.598757,0.670056,0.52206,0.522072,0.172253,0.0375515,0.31251,0.303276,0.391835,0.943047,0.270822,0.818186,0.131351,0.843475,0.388451,0.406658,0.805383,0.0758209,0.722315,0.872095,0.0137952,0.2595,0.0878375,0.947887,0.562392,0.224386,0.344573,0.753161,0.539334,0.0118171,0.643601,0.539889,0.106835,0.662603,0.461533,0.188018,0.3692,0.855122,0.87596,0.972887,0.636043,0.637414,0.923388,0.649061,0.232526,0.500118,0.958662,0.427661,0.288328,0.237049,0.277685,0.643174,0.413322,0.068729,0.606525,0.829029,0.244841,0.49179,0.5933,0.207959,0.448031,0.209448,0.0338036,0.63598,0.976731,0.708304,0.896202,0.463442,0.306345,0.107622,0.266997,0.955453,0.350508,0.992969,0.208031,0.12895,0.390221,0.64608,0.142047,0.596484,0.997417,0.56246,0.0670595,0.44757,0.542009,0.650779,0.525938,0.616335,0.58916,0.114132,0.299217,0.0869833,0.772086,0.700658,0.636415,0.141186,0.984404,0.74019,0.467254,0.844821,0.919174,0.308473,0.838061,0.494755,0.65241,0.458648,0.27033,0.970996,0.285757,0.201726,0.325809,0.159303,0.993335,0.530065,0.522133,0.508231,0.616012,0.177068,0.873699,0.0170103,0.470569,0.0232669,0.154102,0.441986,0.563125,0.024173,0.388336,0.900668,0.438706,0.426078,0.775557,0.101271,0.0520761,0.574977,0.30355,0.469419,0.968086,0.61546,0.367961,0.0365727,0.304724,0.882177,0.76569,0.0833865,0.560988,0.0378145,0.28566,0.446729,0.673893,0.877859,0.601941,0.223325,0.727485,0.532384,0.737665,0.157869,0.124708,0.554007,0.564494,0.609246,0.863807,0.945734,0.954668,0.552082,0.613426,0.624834,0.116377,0.766623,0.861083,0.539266,0.0618851,0.456644,0.738922,0.370138,0.573134,0.600163,0.823445,0.269879,0.271945,0.997351,0.723896,0.583854,0.560964,0.538297,0.916437,0.578437,0.580044,0.0842631,0.455355,0.63408,0.381278,0.793976,0.464331,0.580432,0.653215,0.758132,0.877078,0.282205,0.527551,0.701417,0.521875,0.175025,0.934448,0.304964,0.160934,0.837719,0.355809,0.0835845,0.725486,0.699266,0.94909,0.757526,0.590077,0.664983,0.0395746,0.698692,0.860486,0.688257,0.830722,0.205896,0.747953,0.735549,|0.823923,0.274246,0.936297,0.151968,0.999562,0.14949,0.237761,0.291988,0.840012,0.843805,0.46043,0.125615,0.645518,0.861263,0.293775,0.953721,0.553418,0.791482,0.395549,0.151681,0.369197,0.366333,0.576657,0.373037,0.23634,0.57559,0.328537,0.590659,0.0939583,0.366893,0.0278878,0.81325,0.921767,0.428583,0.464994,0.622423,0.512662,0.677718,0.204891,0.554507,0.754658,0.0847262,0.148003,0.922631,0.306165,0.33058,0.316462,0.989146,0.987322,0.990058,0.398765,0.386951,0.658636,0.264641,0.577718,0.388968,0.1425,0.570071,0.677133,0.100097,0.176921,0.551522,0.67831,0.21342,0.289909,0.958368,0.334641,0.263815,0.582815,0.925513,0.866497,0.600848,0.00576705,0.0836897,0.0224245,0.738386,0.660291,0.602219,0.134398,0.889111,0.240499,0.240058,0.169223,0.989863,0.0352467,0.966449,0.202897,0.956452,0.43314,0.564878,0.0349861,0.838737,0.533766,0.227089,0.265887,0.630921,0.01638,0.326419,0.277248,0.241169,0.358012,0.522864,0.106652,0.639222,0.834031,0.123673,0.488923,0.0411472,0.237842,0.131445,0.393702,0.2332,0.923608,0.56063,0.0585595,0.340279,0.608155,0.474313,0.444601,0.12833,0.625768,0.944343,0.364645,0.927999,0.310062,0.0204743,0.992454,0.269208,0.381235,0.98272,0.295854,0.0298147,0.472397,0.982506,0.750682,0.653701,0.0803649,0.887341,0.378079,0.945106,0.336065,0.401219,0.0385754,0.884307,0.632687,0.905029,0.606826,0.984105,0.741797,0.977876,0.65248,0.185155,0.192081,0.174004,0.713107,0.695804,0.0195427,0.98183,0.815557,0.823836,0.91893,0.114563,0.548949,0.94805,0.986587,0.932485,0.0502027,0.387166,0.507503,0.583698,0.265279,0.916666,0.670284,0.805593,0.0825673,0.746585,0.259255,0.432045,0.746824,0.540949,0.0051648,0.67739,0.446014,0.604616,0.0909469,0.280901,0.482349,0.780229,0.390614,0.494208,0.170278,0.512921,0.751179,0.160176,0.910142,0.969242,0.815731,0.468929,0.796664,0.915887,0.983822,0.257402,0.578472,0.959706,0.554831,0.564485,0.318263,0.29286,0.00904399,0.142949,0.956247,0.36499,0.339124,0.765733,0.653791,0.975013,0.475378,0.186335,0.571888,0.684209,0.998749,0.756603,0.693837,0.554444,0.433765,0.121092,0.118621,0.700964,0.164079,0.234259,0.916515,0.172551,0.420067,0.114366,0.150871,0.912891,0.270872,0.235706,0.545771,0.0135903,0.665881,0.410093,0.996792,0.875641,0.93802,0.897372,0.109418,0.329747,0.321369,0.0420389,0.452037,0.833911,0.755495,0.366021,0.510939,0.360447,0.902664,0.375102,0.847299,0.294649,0.380015,0.614304,0.535418,0.857044,0.191711,0.687176,0.455794,0.169572,0.172333,0.703661,0.573788,0.917563,0.549809,0.454728,0.283377,0.858593,0.343749,0.71399,0.051169,0.87841,0.461552,0.554415,0.449241,0.912697,0.893856,0.902272,0.875787,0.322552,0.936391,0.691963,0.442858,0.937436,0.818381,0.154336,0.512803,0.0565341,0.635203,0.360366,0.684147,0.486513,0.865844,0.664078,0.0471035,0.485361,0.917447,0.731949,0.156715,0.145579,0.377284,0.873646,0.305325,0.0819359,0.53118,0.885557,0.441747,0.289187,0.679201,0.00529885,0.3554,0.715903,0.982981,0.199131,0.50805,0.607235,0.841114,0.187116,0.329643,0.2059,0.0225326,0.927109,0.391012,0.478898,0.324192,0.854585,0.730979,0.202758,0.468747,0.533827,0.841088,0.335056,0.470481,0.469066,0.281145,0.580291,0.327036,0.730916,0.591546,0.153063,0.942427,0.788254,0.999544,0.361152,0.180584,0.283138,0.767633,0.574003,0.518871,0.00915664,0.618763,0.0202235,0.759111,0.860094,0.747119,0.597518,0.849168,0.910266,0.611372,0.165904,0.724938,0.957428,0.70836,0.372853,0.79298,0.630901,0.811164,0.288063,0.5195,0.0859094,0.184012,0.63431,0.500093,0.599898,0.610854,0.889688,0.803682,0.920908,0.837485,0.866679,0.383486,0.936827,0.431897,0.0605149,0.104913,0.289811,0.451929,0.285169,0.61308,0.640174,0.904421,0.896386,0.155943,0.311295,0.839915,0.0567898,0.599989,0.833951,0.0141323,0.693976,0.0995701,0.00614411,0.689872,0.211071,0.2822,0.864668,0.784358,0.904691,0.611963,0.576723,0.987207,0.630347,0.27937,0.866239,0.240786,0.634913,0.54903,0.441161,0.780059,0.441002,0.168039,0.959472,0.249096,0.370503,0.934734,0.682041,0.760997,0.0243194,0.689102,0.958311,0.313732,0.315584,0.0203435,0.545795,0.973181,0.208013,0.891306,0.688064,0.72706,0.106631,0.151424,0.526364,0.403761,0.370921,0.72793,0.46731,0.703822,0.097393,0.752928,0.471203,0.971242,0.993927,0.922738,0.490265,0.456582,0.289859,0.767813,0.959642,0.42405,0.416982,0.536112,0.664977,0.417666,0.0810777,0.490336,0.883408,0.745609,0.720864,0.458122,0.237944,0.57266,0.0943406,0.546267,0.970735,0.183165,0.140531,0.555327,0.489738,0.573336,0.740506,0.114595,0.631859,0.138181,0.0613312,0.438364,0.544374,0.737118,0.443573,0.8054,0.677343,0.371254,0.998964,0.139258,0.134966,0.183397,0.818485,0.651574,0.1129,0.192065,0.191535,0.52063,0.151407,0.494185,0.549105,0.713216,0.706097,0.0777569,0.668209,0.091212,0.817788,0.680995,0.747963,0.876748,0.70326,0.926494,0.945638,0.871369,0.151341,0.296662,0.22173,0.792377,0.00613248,0.152534,0.0615869,0.140135,0.0679109,0.0608035,0.745376,0.623055,0.391519,0.357319,0.923108,0.861193,0.0192029,0.865279,0.548449,0.69368,0.00481063,0.857284,0.191206,0.90401,0.985548,0.52525,0.374849,0.0514734,0.798134,0.0800981,0.558774,0.89885,0.62721,0.813594,0.956628,0.257666,0.932155,0.42609,0.420692,0.6707,0.0577379,0.580883,0.0869199,0.0411443,0.347492,0.6895,0.253869,0.855899,0.119541,0.760018,0.347323,0.815047,0.670315,0.839338,0.0419471,0.777882,0.488073,0.528734,0.14984,0.0848988,0.712385,0.974961,0.274402,0.652659,0.58342,0.478798,0.89381,0.0255539,0.70633,0.992986,0.75706,0.275429,0.373562,0.394163,0.231311,0.0858886,0.330211,0.821546,0.0779071,0.719165,0.412902,0.246095,0.0642424,0.989188,0.577538,0.993023,0.953613,0.816212,0.573086,0.924736,0.93792,0.347473,0.649531,0.167413,0.834654,0.498501,0.425648,0.391238,0.18727,0.242311,0.385149,0.605464,0.404287,0.46343,0.624767,0.383182,0.162453,0.876748,0.153584,0.214394,0.864644,0.456004,0.890267,0.598165,0.584436,0.667296,0.0650948,0.0534115,0.96634,0.0597712,0.689424,0.324623,0.812204,0.76565,0.960621,0.209511,0.627276,0.792715,0.746813,0.342636,0.273447,0.638746,0.327947,0.845976,0.591547,0.0582915,0.213366,0.911144,0.915749,0.413839,0.207848,0.32979,0.419405,0.661719,0.803718,0.678487,0.47512,0.997012,0.624231,0.732655,0.935359,0.0449978,0.489915,0.162001,0.396543,0.344851,0.799784,0.929032,0.560491,0.542685,0.499072,0.0818908,0.813806,0.878154,0.25202,0.354228,0.632713,0.10323,0.719225,0.776068,0.281033,0.116007,0.873007,0.943203,0.0913629,0.828827,0.928547,0.105357,0.436864,0.850169,0.279428,0.464879,0.287257,0.503838,0.838558,0.625628,0.43471,0.0392814,0.0201481,0.227724,0.963463,0.786112,0.323932,0.0480643,0.63962,0.108075,0.223699,0.688652,0.803212,0.137094,0.221142,0.697669,0.877045,0.170495,0.368149,0.960986,0.543074,0.501937,0.127603,0.887153,0.755146,0.0311469,0.954583,0.7549,0.987215,0.514914,0.370453,0.381201,0.0131276,0.153906,0.794544,0.00989062,0.20113,0.633623,0.294321,0.00345618,0.934588,0.627268,0.641563,0.375692,0.36004,0.307768,0.510733,0.630831,0.108272,0.901586,0.778611,0.399434,0.620323,0.989599,0.922899,0.84313,0.331243,0.881566,0.0523633,0.736477,0.520769,0.354592,0.164219,0.375988,0.480059,0.81397,0.413453,0.261478,0.0328343,0.0719928,0.807437,0.691441,0.998,0.261282,0.487438,0.975283,0.0852482,0.163051,0.725793,0.897447,0.166144,0.245087,0.0217268,0.541132,0.116759,0.96004,0.699881,0.0111898,0.917923,0.28219,0.773747,0.149207,0.725744,0.368156,0.343921,0.163387,0.654848,0.0898803,0.813559,0.161888,0.196852,0.841888,0.308238,0.326453,0.0440418,0.179102,0.944242,0.729749,0.564759,0.641441,0.714781,0.141138,0.260673,0.921218,0.335748,0.806966,0.903793,0.791915,0.951641,0.995646,0.67118,0.494501,0.142552,0.137079,0.590308,0.108408,0.246595,0.385023,0.624669,0.0301127,0.634941,0.0856251,0.862355,0.912957,0.906379,0.00834477,0.767682,0.220565,0.630629,0.397397,0.989245,0.1981,0.8455,0.576953,0.87283,0.916951,0.00223637,0.819789,0.48063,0.711343,0.0319126,0.349271,0.400991,0.263062,0.723802,0.129953,0.51123,0.872155,0.0526075,0.143631,0.23423,0.513852,0.982773,0.811786,0.692936,0.489072,0.91476,0.042634,0.916825,0.916606,0.132282,0.93978,0.694636,0.0663205,0.284957,0.114019,0.676807,0.1443,0.999324,0.0429641,0.289588,0.55653,0.641779,0.766654,0.725536,0.714678,0.250734,0.268982,0.63621,0.736438,0.229764,0.0692251,0.9682,0.176249,0.158386,0.471243,0.158828,0.154183,0.62368,0.392165,0.9753,0.383034,0.186466,0.737768,0.549761,0.39539,0.693337,0.999321,0.644188,0.546842,0.733963,0.164056,0.559579,0.937921,0.682449,0.605675,0.542226,0.255459,0.599618,0.765322,0.501305,0.132392,0.666759,0.45827,0.940879,0.374262,0.299116,0.0427961,0.861145,0.681732,0.265837,0.739881,0.463964,0.374867,0.486473,0.587025,0.804402,0.486239,0.331791,0.784731,0.990713,0.0127207,0.546272,0.912848,0.945662,0.366815,0.74273,0.379254,0.0733708,0.0505098,0.317264,0.514313,0.374429,0.453619,0.40657,0.363298,0.496354,0.643495,0.435756,0.792045,0.0778922,0.707024,0.97919,0.263323,0.409914,0.608777,0.207923,0.315755,0.752963,0.303309,0.172387,0.00737977,0.0876608,0.193517,0.394855,0.481836,0.204194,0.655164,0.80151,0.638639,0.252785,0.421662,0.147996,0.0163162,0.305674,0.6026,0.120596,0.566087,0.735693,|0.0725449,0.174894,0.186496,0.71769,0.970009,0.0588221,0.123291,0.938934,0.80009,0.0622147,0.254443,0.0597183,0.0644963,0.75694,0.564968,0.751652,0.255549,0.76823,0.393373,0.22942,0.640075,0.331392,0.992283,0.146222,0.692795,0.285525,0.633322,0.00316769,0.365016,0.121916,0.840472,0.566696,0.462517,0.595119,0.283399,0.493155,0.840946,0.968334,0.755182,0.330151,0.597076,0.056776,0.410543,0.0428704,0.989269,0.495159,0.896536,0.558706,0.221482,0.269927,0.0145328,0.834303,0.34851,0.213181,0.0634156,0.178602,0.253425,0.388279,0.970442,0.544103,0.313757,0.092687,0.144684,0.866187,0.539567,0.185378,0.900053,0.759084,0.355965,0.82511,0.826321,0.235069,0.40288,0.879929,0.452545,0.192041,0.111675,0.331802,0.942231,0.175168,0.510128,0.131416,0.456503,0.75528,0.453919,0.280649,0.694255,0.199217,0.123382,0.247975,0.805466,0.758617,0.137062,0.782875,0.229244,0.881497,0.674838,0.712639,0.643968,0.283334,0.860084,0.126578,0.887908,0.385594,0.0491829,0.198456,0.574571,0.303061,0.460141,0.0393419,0.573621,0.0242667,0.734269,0.243949,0.681949,0.435322,0.255001,0.867679,0.391845,0.791703,0.733742,0.20037,0.111967,0.0850164,0.897378,0.445862,0.170659,0.112118,0.759534,0.955855,0.00254852,0.628619,0.961791,0.673811,0.495858,0.243821,0.295956,0.254433,0.488179,0.383763,0.957891,0.99376,0.655064,0.124782,0.908044,0.104229,0.901746,0.461364,0.63506,0.848558,0.724551,0.603149,0.604737,0.0612131,0.106034,0.635362,0.745101,0.855805,0.0775769,0.618362,0.895285,0.991611,0.663807,0.606712,0.734876,0.723991,0.124143,0.527362,0.268729,0.986647,0.450519,0.740597,0.233731,0.996884,0.328506,0.893075,0.765753,0.308498,0.609648,0.155423,0.769908,0.594369,0.104801,0.268814,0.862608,0.124004,0.145152,0.888554,0.249946,0.152975,0.129234,0.0727051,0.379516,0.914608,0.789166,0.104722,0.306652,0.991655,0.0165316,0.164962,0.801451,0.267145,0.838264,0.507257,0.850768,0.0371414,0.671557,0.514939,0.536493,0.629529,0.894602,0.918598,0.124376,0.083586,0.211542,0.612686,0.791908,0.85058,0.936128,0.335506,0.235003,0.489645,0.755879,0.366672,0.391582,0.428435,0.626394,0.549649,0.159443,0.420231,0.364581,0.609939,0.853697,0.486714,0.556915,0.745055,0.403857,0.646593,0.0439191,0.116303,0.537911,0.86593,0.473164,0.632833,0.338457,0.925821,0.625814,0.549197,0.898759,0.836804,0.983786,0.0119386,0.61039,0.994604,0.220446,0.658297,0.385027,0.791716,0.381713,0.883218,0.673693,0.487869,0.730916,0.0158218,0.403329,0.212383,0.0558475,0.701594,0.430538,0.467277,0.26294,0.783238,0.0946742,0.134551,0.701991,0.400439,0.725821,0.166436,0.0652184,0.330971,0.823919,0.138398,0.762322,0.542419,0.343185,0.42681,0.680522,0.735773,0.926727,0.497911,0.828254,0.356932,0.0731399,0.373281,0.276455,0.168083,0.634096,0.270743,0.248543,0.521368,0.881604,0.458798,0.621523,0.940742,0.0948516,0.839252,0.166587,0.242671,0.031008,0.647127,0.403112,0.904484,0.430415,0.342455,0.581593,0.874751,0.343312,0.0490196,0.0219957,0.207246,0.982183,0.996148,0.975562,0.45316,0.638212,0.0828703,0.901294,0.131608,0.0533413,0.359537,0.136509,0.596168,0.16004,0.696982,0.364966,0.450033,0.789888,0.968998,0.997264,0.849554,0.111216,0.445076,0.498322,0.766884,0.844142,0.93229,0.465261,0.563108,0.789613,0.970521,0.246282,0.808209,0.0382988,0.716528,0.794843,0.88897,0.848894,0.198804,0.565851,0.567273,0.55956,0.660943,0.810589,0.266693,0.922069,0.314515,0.781571,0.713215,0.987608,0.475398,0.761352,0.142162,0.560137,0.772245,0.134856,0.582166,0.146251,0.0820183,0.598678,0.574968,0.861704,0.554926,0.494251,0.234228,0.276703,0.813121,0.686448,0.380671,0.502434,0.863496,0.76635,0.359895,0.354706,0.867098,0.214717,0.989994,0.0368311,0.638745,0.617509,0.748101,0.564695,0.366504,0.15833,0.406102,0.930972,0.0703816,0.797239,0.235006,0.791754,0.314475,0.437216,0.732413,0.133505,0.0189758,0.315307,0.19762,0.16649,0.954296,0.0912234,0.637773,0.644635,0.832961,0.635575,0.99956,0.204253,0.262702,0.0398735,0.812803,0.185295,0.784184,0.947734,0.730645,0.901803,0.87665,0.220551,0.95705,0.787949,0.187453,0.217968,0.329457,0.688888,0.167717,0.621983,0.0610734,0.67236,0.653248,0.800419,0.246918,0.0991323,0.804128,0.0878948,0.669932,0.513418,0.560506,0.804203,0.56158,0.986159,0.843494,0.626263,0.177606,0.903709,0.068125,0.0947075,0.270056,0.310169,0.899623,0.531784,0.496174,0.467515,0.828791,7.70688e-05,0.522818,0.845377,0.895894,0.41533,0.133801,0.363241,0.048126,0.918448,0.152826,0.0709847,0.504049,0.543555,0.922115,0.969828,0.249326,0.145167,0.198409,0.780681,0.702854,0.610126,0.708258,0.428803,0.546154,0.0364705,0.69425,0.543364,0.89757,0.699815,0.126117,0.835077,0.290333,0.715258,0.920386,0.0389458,0.443482,0.327833,0.143193,0.867414,0.337242,0.0737825,0.0669559,0.831452,0.722519,0.304899,0.571458,0.876678,0.222962,0.153613,0.398036,0.288677,0.0225115,0.0173439,0.207185,0.770225,0.0382152,0.359274,0.732197,0.235935,0.613164,0.143393,0.882085,0.94573,0.778049,0.887406,0.285115,0.530516,0.202517,0.448681,0.0853066,0.428633,0.181259,0.105731,0.345273,0.544299,0.505206,0.94987,0.129975,0.35464,0.541875,0.488021,0.815047,0.768065,0.952365,0.219998,0.619633,0.194153,0.335822,0.750934,0.688699,0.791698,0.554945,0.741048,0.168053,0.624848,0.0365549,0.704426,0.153974,0.246353,0.468352,0.265534,0.642736,0.0336457,0.0729946,0.125188,0.752842,0.233064,0.220845,0.39898,0.689799,0.593848,0.375461,0.359441,0.616984,0.149538,0.760986,0.11326,0.546704,0.0351968,0.475459,0.833449,0.753348,0.533934,0.0270073,0.750153,0.372832,0.129123,0.270843,0.306469,0.372537,0.066744,0.149788,0.069495,0.395166,0.397494,0.13873,0.00230813,0.959289,0.900526,0.819293,0.65285,0.590538,0.606287,0.380185,0.145041,0.198949,0.273026,0.686101,0.592804,0.601262,0.00727451,0.941346,0.234397,0.695413,0.27474,0.424053,0.666666,0.398579,0.372736,0.374552,0.621009,0.27601,0.924501,0.0868074,0.728512,0.825255,0.0728174,0.355816,0.242841,0.949471,0.174798,0.257262,0.152324,0.718029,0.940303,0.329085,0.903042,0.369896,0.287993,0.989715,0.820292,0.592131,0.175365,0.363024,0.446565,0.609227,0.569196,0.533111,0.284682,0.690625,0.952476,0.88008,0.0403832,0.747698,0.595574,0.282807,0.780298,0.652297,0.722222,0.368585,0.847235,0.498942,0.997117,0.868655,0.649288,0.36008,0.592368,0.0629642,0.633377,0.553048,0.659829,0.161058,0.617495,0.849153,0.553238,0.800723,0.938477,0.664682,0.716934,0.113442,0.0684518,0.339616,0.274304,0.547015,0.437436,0.892857,0.0778134,0.819882,0.37433,0.0620154,0.665235,0.0972766,0.590307,0.834853,0.301773,0.718544,0.725643,0.74417,0.171649,0.208627,0.170411,0.60991,0.869948,0.535723,0.247108,0.222259,0.152485,0.0914999,0.346585,0.950339,0.58204,0.0340322,0.768986,0.429838,0.414806,0.770668,0.44475,0.108903,0.189099,0.333552,0.668817,0.367008,0.445372,0.706812,0.515282,0.903798,0.148823,0.495004,0.0464562,0.204617,0.491168,0.662363,0.637008,0.668201,0.406669,0.102006,0.140838,0.00200844,0.599284,0.00103015,0.0707126,0.470914,0.160522,0.779122,0.433315,0.100386,0.28812,0.789882,0.6569,0.881204,0.412547,0.0503327,0.598358,0.459399,0.169552,0.856191,0.788214,0.25485,0.674632,0.151013,0.530875,0.618358,0.90522,0.451285,0.674297,0.931875,0.666475,0.523781,0.713669,0.47334,0.512899,0.0955317,0.573123,0.100552,0.632819,0.374077,0.381798,0.471547,0.651466,0.603737,0.205071,0.426693,0.994262,0.00889856,0.260643,0.332108,0.233296,0.0477107,0.260847,0.898227,0.602102,0.968308,0.756163,0.617525,0.503933,0.672825,0.954101,0.936393,0.0904387,0.0759353,0.9329,0.691789,0.681459,0.255505,0.510461,0.734607,0.465493,0.837677,0.710694,0.272511,0.0640778,0.0216911,0.887626,0.909539,0.382161,0.448988,0.545114,0.926655,0.205718,0.608126,0.240734,0.0838535,0.630222,0.452865,0.599041,0.810318,0.370502,0.300232,0.960878,0.249839,0.275716,0.725778,0.419629,0.736304,0.952531,0.193233,0.976176,0.266744,0.83481,0.137315,0.159929,0.0096308,0.90457,0.786092,0.30226,0.198133,0.82163,0.368986,0.335069,0.939995,0.427995,0.874876,0.0546028,0.155286,0.474278,0.688592,0.506003,0.568063,0.613662,0.88115,0.792791,0.329963,0.203364,0.592817,0.99711,0.0929855,0.737371,0.477578,0.646347,0.162217,0.22056,0.489075,0.653654,0.723728,0.145131,0.415153,0.579454,0.63041,0.72856,0.452066,0.351199,0.260803,0.722569,0.773367,0.844261,0.81843,0.449284,0.00061512,0.0961429,0.154035,0.698771,0.983897,0.637645,0.953748,0.801726,0.759621,0.866029,0.394153,0.279023,0.612285,0.846473,0.146897,0.33547,0.517725,0.921205,0.14344,0.176581,0.308693,0.989681,0.812659,0.395309,0.138491,0.736675,0.100636,0.127549,0.816707,0.668678,0.612269,0.284205,0.870026,0.501231,0.289106,0.840201,0.811379,0.0386608,0.611064,0.411069,0.0862697,0.392784,0.681415,0.399681,0.44648,0.583042,0.732656,0.155235,0.80378,0.0767167,0.24372,0.131672,0.726607,0.193232,0.812626,0.514929,0.315652,0.0835925,0.0559425,0.523605,0.858371,0.680814,0.113847,0.936469,0.756971,0.311236,0.0922613,0.88139,0.824409,0.657495,0.470643,0.836446,0.952948,0.203415,0.357542,0.00322586,0.999354,0.05087,0.680854,0.42601,0.284991,0.113337,0.333512,0.860802,0.909758,0.73278,0.813487,0.594922,0.912756,0.710163,0.561469,0.182397,0.154976,0.761587,0.540121,0.128595,0.498915,0.158942,0.362999,0.864886,0.439278,0.315149,0.481406,|0.813702,0.0902951,0.60978,0.290589,0.226271,0.124234,0.508761,0.784092,0.14696,0.380755,0.546371,0.337078,0.656301,0.560549,0.3077,0.757877,0.393799,0.746016,0.66304,0.802287,0.52359,0.119851,0.0623414,0.964757,0.457326,0.686717,0.0278241,0.911444,0.638633,0.293167,0.664257,0.544966,0.550208,0.0353058,0.324554,0.659506,0.784289,0.651957,0.577927,0.0214292,0.14766,0.379853,0.19528,0.695876,0.467572,0.850208,0.645385,0.283461,0.31574,0.968901,0.217293,0.840061,0.813468,0.335914,0.60586,0.894365,0.350454,0.121183,0.829532,0.220037,0.912896,0.452495,0.567956,0.0987924,0.0384242,0.694789,0.807246,0.295896,0.0307031,0.690335,0.24111,0.5348,0.132076,0.553973,0.78004,0.394583,0.587425,0.639617,0.365759,0.60667,0.659109,0.0465412,0.969057,0.555693,0.7289,0.479383,0.704342,0.017538,0.768532,0.416988,0.738763,0.233898,0.0473124,0.872661,0.917943,0.986052,0.230693,0.369796,0.0329864,0.933753,0.129607,0.882698,0.374617,0.11257,0.2795,0.129822,0.895691,0.401449,0.102251,0.369673,0.048507,0.0377495,0.913141,0.65074,0.611014,0.831844,0.124035,0.474079,0.484678,0.624,0.339148,0.440742,0.612197,0.0821122,0.452731,0.0370923,0.722825,0.0318231,0.28942,0.813859,0.329886,0.641962,0.096096,0.25967,0.438858,0.0492189,0.100248,0.216197,0.127131,0.125581,0.256492,0.185657,0.948275,0.199484,0.437886,0.293124,0.630344,0.392624,0.885661,0.870676,0.87388,0.379216,0.75236,0.930182,0.461468,0.10175,0.432197,0.636762,0.0892422,0.773172,0.549921,0.685151,0.748,0.276923,0.613278,0.776182,0.623225,0.122843,0.194356,0.260295,0.676413,0.341014,0.629049,0.81504,0.674924,0.425368,0.539328,0.15577,0.246691,0.710963,0.586989,0.924232,0.462852,0.178549,0.199688,0.50665,0.385518,0.433196,0.574472,0.0286897,0.782739,0.433347,0.502675,0.226912,0.243212,0.917487,0.585739,0.810671,0.794638,0.264538,0.690523,0.0299132,0.422531,0.710678,0.680998,0.762524,0.538155,0.991924,0.778265,0.473255,0.410219,0.21351,0.746959,0.300428,0.980312,0.742431,0.730697,0.549645,0.954399,0.531473,0.335777,0.278884,0.239462,0.0767531,0.12646,0.238808,0.482735,0.0600663,0.847432,0.136233,0.608416,0.823139,0.408942,0.233087,0.480898,0.705951,0.151871,0.0740709,0.424376,0.855349,0.590681,0.884354,0.328114,0.455319,0.933329,0.181406,0.660921,0.211238,0.15092,0.711681,0.31108,0.558168,0.378313,0.0871571,0.996086,0.936843,0.814599,0.345525,0.412424,0.943668,0.163046,0.118436,0.153847,0.949399,0.946988,0.452907,0.892298,0.346657,0.20002,0.941572,0.43508,0.974099,0.925945,0.955923,0.357127,0.643591,0.20079,0.769504,0.527235,0.80818,0.648016,0.326079,0.423774,0.626884,0.255822,0.0207128,0.717254,0.993449,0.136858,0.98617,0.957254,0.445503,0.761008,0.369955,0.213236,0.672673,0.60893,0.363732,0.593735,0.0842892,0.620993,0.0425047,0.893141,0.40641,0.417003,0.650975,0.889136,0.605752,0.379893,0.907568,0.133655,0.0392724,0.437719,0.275393,0.574321,0.229799,0.368664,0.285352,0.0721072,0.906361,0.920883,0.901742,0.976948,0.957841,0.655468,0.68917,0.0193304,0.78081,0.654195,0.522184,0.860265,0.892174,0.672469,0.393784,0.0544077,0.536168,0.571208,0.979112,0.460916,0.945213,0.460655,0.337945,0.812047,0.469463,0.59506,0.399091,0.320523,0.278696,0.0784438,0.896055,0.438446,0.0111455,0.773682,0.800098,0.435298,0.441705,0.449452,0.344691,0.172114,0.0106509,0.589956,0.243795,0.524181,0.239652,0.569714,0.193639,0.722329,0.576762,0.641725,0.796738,0.26008,0.277993,0.603415,0.317744,0.125648,0.142984,0.723856,0.191423,0.728275,0.879548,0.971954,0.551521,0.439139,0.125282,0.20047,0.869663,0.0964901,0.281882,0.977794,0.336453,0.968148,0.759978,0.123947,0.697456,0.573928,0.994265,0.0291607,0.0111799,0.873717,0.531147,0.609919,0.421665,0.340783,0.606272,0.471474,0.892888,0.720366,0.0882603,0.899817,0.391785,0.0760819,0.933293,0.904491,0.446845,0.527122,0.67487,0.775079,0.61479,0.559696,0.990726,0.972774,0.49913,0.935912,0.723348,0.104726,0.603731,0.745669,0.943301,0.472885,0.824721,0.95822,0.656169,0.0539515,0.782693,0.976692,0.349687,0.0532589,0.536896,0.0842589,0.71627,0.564773,0.844329,0.0745423,0.861324,0.354006,0.73408,0.769063,0.594472,0.744618,0.115077,0.047244,0.789096,0.0743539,0.25684,0.729794,0.994113,0.628818,0.640425,0.146053,0.63199,0.857714,0.0482584,0.2999,0.562806,0.527263,0.555027,0.509586,0.551036,0.835657,0.30831,0.0457402,0.311494,0.0836248,0.680785,0.628688,0.625765,0.464585,0.195751,0.478287,0.485117,0.98538,0.084057,0.37849,0.392022,0.475166,0.514757,0.133169,0.0842433,0.0212643,0.607882,0.321687,0.499812,0.127866,0.0679907,0.395695,0.537145,0.607281,0.82477,0.625074,0.241559,0.37285,0.421022,0.988876,0.584312,0.471483,0.705153,0.714518,0.50586,0.998098,0.0460367,0.997873,0.946449,0.739804,0.784117,0.769792,0.35018,0.762176,0.724738,0.126531,0.706539,0.495197,0.772928,0.529657,0.190182,0.449235,0.738496,0.799648,0.832947,0.486486,0.559362,0.408307,0.401857,0.223886,0.80311,0.874461,0.96402,0.647086,0.744663,0.429662,0.29093,0.141011,0.658732,0.411308,0.571143,0.103549,0.915095,0.459281,0.24731,0.591006,0.086064,0.518574,0.963979,0.233165,0.689155,0.167908,0.498205,0.549615,0.375674,0.999657,0.784044,0.446115,0.589303,0.227659,0.555913,0.223576,0.509412,0.168906,0.870581,0.699045,0.539369,0.757489,0.396476,0.361936,0.999507,0.377131,0.901823,0.0822071,0.520347,0.368011,0.773538,0.82064,0.180032,0.308255,0.0954178,0.0959448,0.295507,0.913387,0.0460506,0.877343,0.199458,0.135784,0.597094,0.444955,0.120215,0.512491,0.312472,0.541098,0.114795,0.964373,0.915631,0.666363,0.190145,0.709305,0.150109,0.108728,0.372359,0.832751,0.2144,0.375124,0.600142,0.641096,0.219844,0.193061,0.782681,0.879435,0.100912,0.84084,0.486418,0.174566,0.496509,0.0836537,0.463502,0.903198,0.882899,0.0525605,0.0210612,0.122289,0.515611,0.248562,0.0170287,0.592816,0.874122,0.549652,0.00275266,0.810598,0.716142,0.44121,0.865167,0.648395,0.95024,0.788186,0.320854,0.207512,0.52024,0.705416,0.0580685,0.682701,0.204081,0.732734,0.571955,0.763544,0.54642,0.579247,0.850219,0.237583,0.203262,0.638309,0.370296,0.421284,0.759578,0.495142,0.889191,0.0996011,0.00715303,0.942603,0.314129,0.212926,0.206499,0.701962,0.384593,0.862115,0.1917,0.880951,0.945195,0.621975,0.362506,0.348166,0.434719,0.467748,0.62565,0.418137,0.871696,0.641679,0.48133,0.656177,0.298049,0.723131,0.878286,0.823638,0.232971,0.134177,0.0827451,0.69049,0.196929,0.429502,0.534931,0.678884,0.928302,0.376173,0.0532697,0.884396,0.935672,0.385343,0.335024,0.666338,0.347481,0.883631,0.0425348,0.589957,0.868346,0.574347,0.530251,0.616033,0.389003,0.934374,0.136872,0.128295,0.948528,0.142804,0.0405073,0.978935,0.678347,0.0379253,0.260282,0.510267,0.849695,0.18619,0.794366,0.910886,0.636009,0.801881,0.345768,0.080112,0.272709,0.111435,0.188021,0.291353,0.657221,0.684526,0.392272,0.603642,0.218129,0.105987,0.372725,0.114737,0.137374,0.764205,0.252951,0.317824,0.904736,0.154538,0.20257,0.484232,0.600413,0.330318,0.100092,0.680011,0.298505,0.123227,0.652109,0.463806,0.537084,0.220786,0.35377,0.996854,0.921634,0.233603,0.940271,0.0400366,0.495078,0.983434,0.533979,0.225512,0.594759,0.679532,0.0501944,0.35482,0.0169623,0.332466,0.111331,0.0230396,0.0717382,0.230346,0.273605,0.0756521,0.414185,0.443661,0.319669,0.466999,0.786515,0.215721,0.0259421,0.661792,0.651876,0.483055,0.904022,0.0857481,0.0817062,0.206519,0.19011,0.628032,0.601316,0.47076,0.506549,0.62803,0.311543,0.0860651,0.622853,0.721155,0.836451,0.978571,0.934646,0.103563,0.508604,0.660284,0.649667,0.995156,0.767621,0.0799451,0.523277,0.936179,0.376793,0.834256,0.376454,0.18771,0.926959,0.219071,0.598723,0.194884,0.980782,0.176658,0.651975,0.31747,0.247007,0.208445,0.775373,0.42449,0.393632,0.245458,0.109392,0.0381343,0.432372,0.139802,0.477155,0.865621,0.224395,0.455013,0.419595,0.825548,0.446738,0.251197,0.308316,0.337755,0.267194,0.239671,0.988484,0.210241,0.602744,0.576815,0.561468,0.526141,0.803873,0.712,0.186319,0.866486,0.130615,0.753584,0.162853,0.239408,0.77785,0.972195,0.0465145,0.519952,0.338605,0.658618,0.30163,0.775761,0.111119,0.512207,0.176099,0.937096,0.632222,0.285313,0.0495113,0.119521,0.685659,0.742444,0.621875,0.991113,0.82997,0.601888,0.203563,0.0856015,0.475032,0.144581,0.893227,0.400447,0.41229,0.380386,0.541155,0.431595,0.641904,0.838783,0.604387,0.961289,0.347843,0.296299,0.371897,0.713892,0.648274,0.2405,0.541385,0.565512,0.893277,0.611328,0.257924,0.16981,0.708665,0.094238,0.65781,0.158572,0.939766,0.824116,0.364916,0.250206,0.577179,0.855071,0.99654,0.630684,0.774866,0.162326,0.875391,0.893554,0.791092,0.710472,0.642067,0.709791,0.153055,0.806785,0.771576,0.72256,0.18657,0.887026,0.0154198,0.701517,0.00953966,0.918305,0.697535,0.447698,0.763064,0.982028,0.280903,0.00436288,0.840708,0.777738,0.911891,0.375267,0.413716,0.0015803,0.264286,0.9577,0.309995,0.91497,0.288677,0.471912,0.609143,0.820968,0.658131,0.155774,0.262904,0.97814,0.690845,0.29519,0.226804,0.0917398,0.30631,0.978974,0.168812,0.536246,0.297537,0.128589,0.722144,0.0685925,0.511773,0.703412,0.605888,0.368532,0.204306,0.199723,0.836446,0.356389,0.388535,0.345597,0.301597,0.0234742,0.0175487,0.161941,0.932399,0.627137,0.430957,|0.710378,0.459755,0.751104,0.336442,0.852624,0.673332,0.939455,0.314709,0.405593,0.79313,0.318944,0.716114,0.990439,0.104659,0.815427,0.555517,0.736205,0.129516,0.310635,0.448558,0.471004,0.880891,0.136876,0.835234,0.451423,0.739081,0.744106,0.69411,0.969301,0.978097,0.716706,0.730141,0.274672,0.676628,0.600211,0.775526,0.477241,0.899006,0.877368,0.612513,0.240176,0.773061,0.329765,0.79078,0.190656,0.0470694,0.433731,0.300305,0.298805,0.761989,0.669608,0.624721,0.584729,0.688894,0.750812,0.830103,0.327627,0.389142,0.260335,0.813619,0.710458,0.66911,0.262042,0.433446,0.71935,0.431437,0.554031,0.309715,0.599675,0.00310475,0.65467,0.731499,0.401936,0.310397,0.477375,0.635095,0.528776,0.507774,0.261186,0.154869,0.755742,0.906225,0.65491,0.0400152,0.56429,0.0117582,0.183645,0.735009,0.834247,0.580247,0.416966,0.151207,0.0672413,0.288746,0.504174,0.326755,0.639084,0.433343,0.526937,0.59249,0.680346,0.647785,0.778787,0.179905,0.996067,0.349698,0.890247,0.056685,0.579981,0.13202,0.556374,0.517649,0.35245,0.394694,0.921421,0.482074,0.480241,0.953654,0.62635,0.220107,0.944413,0.615894,0.90498,0.958166,0.47844,0.816658,0.521486,0.63318,0.532496,0.146667,0.611959,0.363976,0.809037,0.291291,0.526035,0.255984,0.723446,0.768963,0.749051,0.553216,0.689964,0.169373,0.757649,0.316583,0.318122,0.586856,0.557787,0.788034,0.638026,0.204136,0.1449,0.760559,0.723068,0.889165,0.20226,0.627528,0.065161,0.0411619,0.313634,0.770015,0.00232625,0.368552,0.879952,0.090465,0.715485,0.796498,0.0286148,0.273411,0.441002,0.565056,0.518559,0.246777,0.289514,0.23898,0.950269,0.171423,0.706338,0.250743,0.74027,0.0374741,0.80945,0.0836181,0.457143,0.911258,0.551071,0.142333,0.256078,0.197364,0.243882,0.446534,0.361398,0.339289,0.4921,0.601266,0.0171914,0.611488,0.574386,0.607804,0.188253,0.165958,0.344512,0.628424,0.822324,0.115778,0.989856,0.851187,0.494318,0.00834614,0.773227,0.670485,0.378651,0.794288,0.261038,0.491911,0.824101,0.0168729,0.0871071,0.110566,0.140956,0.0764574,0.959642,0.514844,0.891426,0.248178,0.102647,0.421323,0.800536,0.810098,0.0817176,0.723048,0.104512,0.851863,0.701363,0.0559223,0.121706,0.228373,0.503026,0.611079,0.0170782,0.932909,0.999842,0.272501,0.170174,0.112319,0.0144942,0.478844,0.353286,0.876237,0.312706,0.952772,0.776429,0.365039,0.542155,0.199954,0.0154553,0.971503,0.323239,0.665685,0.325154,0.649582,0.333466,0.122561,0.374378,0.665484,0.667278,0.317522,0.208864,0.109361,0.49092,0.729319,0.483648,0.180479,0.817653,0.948131,0.934892,0.152674,0.420788,0.851541,0.467379,0.277843,0.393514,0.163111,0.770119,0.92024,0.57411,0.0859964,0.031067,0.777048,0.767391,0.985733,0.440345,0.735208,0.0478962,0.57813,0.574769,0.748773,0.042447,0.0830182,0.866988,0.19887,0.775943,0.245034,0.121286,0.372719,0.550319,0.00454265,0.627262,0.245538,0.638488,0.0941704,0.70448,0.637845,0.601136,0.835828,0.423464,0.128055,0.122246,0.964639,0.83348,0.414501,0.434736,0.681639,0.824612,0.959477,0.314489,0.540827,0.80332,0.715869,0.574993,0.600981,0.799822,0.642293,0.508163,0.129203,0.0593242,0.518268,0.278543,0.426808,0.0379174,0.91157,0.648087,0.641607,0.896934,0.327416,0.953858,0.908418,0.996035,0.763817,0.283841,0.41272,0.284531,0.034672,0.127667,0.614943,0.449003,0.125946,0.205895,0.248848,0.311912,0.845807,0.866641,0.558378,0.392741,0.326875,0.114484,0.0998971,0.965549,0.494263,0.846204,0.25866,0.726494,0.883971,0.0871333,0.960829,0.376332,0.0698514,0.841999,0.296488,0.929983,0.249328,0.825769,0.414889,0.312602,0.97,0.589989,0.443118,0.60837,0.973839,0.610989,0.674942,0.593187,0.279173,0.122636,0.436547,0.220928,0.269413,0.0708425,0.973717,0.0791243,0.138375,0.00919241,0.515543,0.595793,0.369176,0.854728,0.372708,0.497302,0.287902,0.647404,0.207447,0.920491,0.49884,0.100645,0.736657,0.40241,0.137293,0.216795,0.670076,0.2197,0.638189,0.625692,0.528742,0.81721,0.86566,0.551127,0.294267,0.623998,0.402166,0.0559223,0.807377,0.118375,0.163459,0.121869,0.212569,0.553312,0.829856,0.258853,0.179107,0.792987,0.232968,0.536925,0.783686,0.478333,0.508151,0.323556,0.826153,0.216106,0.636548,0.00946295,0.298312,0.231117,0.421276,0.552778,0.380246,0.0838649,0.0050962,0.719315,0.462902,0.83628,0.803996,0.256954,0.938678,0.0677733,0.838982,0.971548,0.559912,0.833505,0.0216614,0.195797,0.558766,0.874732,0.811876,0.491814,0.184496,0.0905769,0.69441,0.916703,0.0618842,0.316289,0.0869021,0.445899,0.683805,0.0978253,0.657125,0.458509,0.895694,0.14813,0.563166,0.194401,0.644329,0.252616,0.532401,0.861861,0.127053,0.814707,0.746872,0.995555,0.83187,0.0380248,0.211501,0.803935,0.502493,0.820572,0.277066,0.835037,0.243257,0.0162444,0.664469,0.765674,0.867416,0.140875,0.851974,0.220141,0.746202,0.984897,0.299768,0.0512289,0.945278,0.859401,0.72761,0.835299,0.882454,0.382726,0.845982,0.371698,0.846547,0.0630989,0.498204,0.249115,0.919639,0.0597739,0.704669,0.975611,0.377438,0.208062,0.358191,0.937022,0.440885,0.902567,0.204509,0.0998002,0.806921,0.471157,0.607138,0.993078,0.60942,0.452263,0.0647458,0.600784,0.389425,0.0493559,0.118817,0.748223,0.961603,0.574288,0.848448,0.514601,0.242213,0.753903,0.885847,0.857779,0.721398,0.636114,0.363842,0.65476,0.971879,0.78421,0.351872,0.535364,0.979196,0.0959511,0.498463,0.197887,0.868984,0.193514,0.710768,0.786135,0.847642,0.076806,0.527927,0.449737,0.277049,0.735813,0.483374,0.0608445,0.415733,0.933451,0.458371,0.803059,0.347466,0.322095,0.45046,0.27938,0.960621,0.722024,0.341795,0.517772,0.732482,0.123904,0.938553,0.108629,0.613282,0.107449,0.0833449,0.70125,0.477517,0.620586,0.699495,0.634981,0.336751,0.693589,0.711124,0.771624,0.973156,0.468564,0.335521,0.0234591,0.248308,0.666893,0.652949,0.76807,0.752936,0.110507,0.334409,0.702319,0.989736,0.94841,0.0794123,0.457454,0.0451921,0.194796,0.921475,0.546206,0.446319,0.679574,0.678078,0.992343,0.188119,0.990313,0.57278,0.936799,0.129374,0.834154,0.575268,0.316789,0.10814,0.845242,0.951452,0.797008,0.10674,0.83639,0.975214,0.53295,0.506344,0.746972,0.106101,0.914896,0.277959,0.338782,0.0322117,0.244619,0.289629,0.079872,0.0251549,0.413223,0.575978,0.549102,0.121374,0.265958,0.171001,0.656694,0.635945,0.821804,0.80424,0.749971,0.778857,0.404365,0.0884643,0.606793,0.496873,0.091997,0.440485,0.960708,0.87312,0.863144,0.363241,0.985902,0.385316,0.623302,0.221839,0.438878,0.381153,0.205254,0.270236,0.706959,0.0175208,0.354457,0.0946214,0.402359,0.343097,0.430718,0.306696,0.43888,0.720537,0.457625,0.773237,0.532278,0.0738635,0.461594,0.802114,0.266378,0.616226,0.96843,0.488318,0.180031,0.0380737,0.331327,0.26633,0.622504,0.645834,0.603922,0.436943,0.682537,0.69891,0.444494,0.0284349,0.240728,0.0593291,0.915595,0.264681,0.680507,0.75451,0.644216,0.255786,0.356014,0.85821,0.764475,0.13541,0.206255,0.456993,0.829957,0.13385,0.918675,0.786087,0.476504,0.0739197,0.729066,0.233178,0.442656,0.310528,0.939405,0.593043,0.826474,0.182817,0.172249,0.894995,0.786511,0.80814,0.729152,0.711091,0.526499,0.843021,0.828269,0.253396,0.757108,0.0958031,0.012845,0.98256,0.505998,0.0516775,0.570753,0.00643373,0.0971169,0.705202,0.16891,0.956313,0.996061,0.181778,0.0386413,0.647147,0.892078,0.911269,0.612209,0.65232,0.559141,0.252876,0.590584,0.699452,0.0434164,0.59222,0.310291,0.434741,0.101045,0.757096,0.0194597,0.14962,0.0363942,0.00132471,0.722392,0.927633,0.912285,0.544031,0.647858,0.633673,0.0252299,0.970035,0.128071,0.993732,0.649721,0.633252,0.626824,0.165181,0.0101417,0.0472078,5.93066e-05,0.456615,0.0913967,0.821099,0.483943,0.293789,0.643433,0.803043,0.0844515,0.765447,0.13212,0.500974,0.451493,0.368336,0.821614,0.676934,0.624186,0.249225,0.779648,0.122886,0.123425,0.814865,0.934888,0.206506,0.225373,0.213254,0.572337,0.787523,0.164586,0.723012,0.778689,0.99982,0.157264,0.20568,0.288393,0.182895,0.491879,0.870304,0.816799,0.0618568,0.611665,0.849482,0.876382,0.395168,0.292364,0.108377,0.737881,0.1289,0.213659,0.0193179,0.84808,0.465911,0.387549,0.408283,0.00122112,0.172763,0.0341575,0.584318,0.332601,0.161212,0.897252,0.230192,0.552502,0.852159,0.211526,0.573864,0.152431,0.423243,0.47349,0.873255,0.26034,0.316651,0.618639,0.995043,0.716722,0.103622,0.0503525,0.838183,0.829439,0.564094,0.780055,0.345028,0.472268,0.799286,0.59255,0.018335,0.0307581,0.886783,0.0293465,0.293224,0.911286,0.419623,0.913442,0.940553,0.498265,0.649098,0.195626,0.513313,0.961595,0.47013,0.0661475,0.448533,0.772111,0.0366608,0.581933,0.534913,0.0951515,0.226529,0.742302,0.431624,0.783604,0.300497,0.104185,0.213389,0.81654,0.00490606,0.330993,0.565109,0.0561202,0.339659,0.98765,0.812303,0.334497,0.69485,0.975048,0.699756,0.332719,0.370636,0.643021,0.33802,0.790481,0.693409,0.170401,0.465625,0.823984,0.733535,0.528788,0.146539,0.97945,0.613608,0.264076,0.20302,0.850692,0.0881909,0.577162,0.628801,0.605362,0.572931,0.745385,0.106588,0.724269,0.920018,0.344946,0.611647,0.679895,0.130902,0.501762,0.0790974,0.950187,0.00279361,0.911023,0.372235,0.0906962,0.808281,0.68992,0.904196,0.403894,0.795178,0.70138,0.944181,0.266871,0.532471,0.712113,0.989072,0.868205,0.220232,0.246805,0.99087,0.894394,0.474937,0.167261,0.464131,0.613929,0.560527,0.179483,0.219979,|0.342667,0.305581,0.0980139,0.999439,0.498903,0.641646,0.343545,0.893227,0.346135,0.642492,0.862517,0.349754,0.450465,0.428377,0.0167105,0.0413815,0.535088,0.266538,0.231478,0.71692,0.196075,0.436259,0.810084,0.44644,0.252764,0.00720572,0.73293,0.781293,0.446277,0.297635,0.552417,0.635228,0.108259,0.990518,0.908974,0.795995,0.295027,0.043083,0.0934547,0.892328,0.728683,0.536822,0.80918,0.21812,0.695752,0.632193,0.722777,0.136594,0.326781,0.427039,0.545208,0.670825,0.513478,0.517634,0.196902,0.756377,0.844241,0.733684,0.132672,0.537324,0.241627,0.226124,0.579678,0.323204,0.90016,0.241743,0.705084,0.445154,0.109045,0.554605,0.858014,0.842517,0.172937,0.137389,0.947949,0.0800382,0.861309,0.589985,0.181054,0.269955,0.217128,0.569188,0.56741,0.860598,0.567416,0.191128,0.495154,0.530097,0.358934,0.886687,0.699969,0.301721,0.400118,0.976998,0.0915651,0.455108,0.220616,0.783899,0.897231,0.311773,0.472972,0.646787,0.46569,0.0226659,0.583795,0.0751271,0.164153,0.0646349,0.431659,0.164434,0.473007,0.710375,0.544046,0.760985,0.781914,0.0813738,0.496368,0.112951,0.816961,0.0842969,0.401775,0.903915,0.969651,0.373124,0.760116,0.664935,0.552743,0.147253,0.26765,0.369148,0.00523895,0.271163,0.222314,0.812868,0.545236,0.786839,0.955119,0.575485,0.616577,0.515321,0.968189,0.692561,0.364014,0.351973,0.131995,0.478196,0.787471,0.805613,0.274247,0.0736089,0.130678,0.139166,0.647274,0.733519,0.421085,0.423391,0.795806,0.000193715,0.747144,0.217091,0.904361,0.765827,0.555936,0.966376,0.271416,0.851101,0.670887,0.804233,0.369812,0.636184,0.660813,0.938514,0.0184805,0.815158,0.594723,0.668193,0.904033,0.293707,0.237122,0.78666,0.832675,0.193388,0.658102,0.781322,0.675497,0.132247,0.796075,0.804726,0.114441,0.723693,0.833145,0.343458,0.372792,0.505636,0.714338,0.131809,0.190068,0.31143,0.584303,0.0471446,0.527641,0.652914,0.896626,0.870008,0.274604,0.0682848,0.882242,0.888279,0.724233,0.316897,0.599205,0.256179,0.833479,0.336136,0.760352,0.563742,0.0132613,0.207413,0.764567,0.127374,0.0923469,0.269577,0.752701,0.553087,0.911529,0.401699,0.208944,0.57074,0.792526,0.0255104,0.523753,0.194155,0.93741,0.731494,0.705732,0.848872,0.478377,0.140682,0.174258,0.832761,0.274117,0.878287,0.644848,0.0993868,0.650666,0.639035,0.236136,0.221343,0.89243,0.877219,0.177491,0.78322,0.732476,0.71215,0.0241324,0.955036,0.691268,0.925839,0.380719,0.772267,0.62822,0.687499,0.819192,0.143399,0.762618,0.327532,0.0884274,0.050621,0.102097,0.738679,0.895776,0.0311339,0.718377,0.0101844,0.95157,0.77002,0.197876,0.566339,0.170202,0.237252,0.410358,0.0617456,0.266661,0.475951,0.130554,0.601862,0.168675,0.842513,0.558318,0.763709,0.042224,0.614379,0.654821,0.453574,0.147347,0.047513,0.286763,0.436839,0.32144,0.600163,0.679144,0.347798,0.55457,0.52477,0.593424,0.859176,0.137141,0.989181,0.0736682,0.292918,0.318984,0.894109,0.731881,0.81755,0.27759,0.242883,0.622442,0.143609,0.318191,0.528815,0.397966,0.887737,0.292435,0.231801,0.438833,0.298455,0.239199,0.964804,0.577217,0.0862046,0.860577,0.756672,0.923984,0.840842,0.800299,0.754986,0.131227,0.116366,0.889867,0.283392,0.278444,0.725572,0.834956,0.71361,0.875116,0.093524,0.471549,0.992182,0.606408,0.482036,0.782927,0.23971,0.393834,0.469226,0.729789,0.787768,0.565936,0.7649,0.092084,0.505311,0.509918,0.83561,0.102666,0.986351,0.790388,0.0986359,0.218457,0.794341,0.412542,0.513274,0.943274,0.235628,0.250044,0.212258,0.79027,0.142404,0.920611,0.273717,0.393152,0.601243,0.625978,0.370142,0.0485346,0.615395,0.21704,0.39077,0.998478,0.321653,0.259672,0.409636,0.612425,0.932952,0.706701,0.908935,0.51102,0.0549709,0.454692,0.976943,0.106268,0.747458,0.0843392,0.279359,0.564937,0.469264,0.635236,0.55326,0.190784,0.133233,0.0638207,0.528248,0.926604,0.63845,0.889259,0.67876,0.25322,0.47321,0.209366,0.199943,0.69861,0.728845,0.821029,0.637216,0.557482,0.702214,0.289728,0.737306,0.292185,0.0780334,0.514122,0.665718,0.774882,0.549801,0.406448,0.0250869,0.620318,0.0370777,0.160534,0.0343046,0.819228,0.689709,0.312977,0.70017,0.328651,0.791695,0.533571,0.0163208,0.328498,0.0574687,0.979513,0.287197,0.0859019,0.86392,0.815207,0.110875,0.768165,0.779585,0.886753,0.535404,0.350022,0.486037,0.954176,0.933141,0.989766,0.504206,0.858743,0.239465,0.407759,0.841676,0.680665,0.353732,0.411615,0.589245,0.636523,0.696467,0.0205784,0.799412,0.247649,0.125141,0.40019,0.624093,0.207718,0.851431,0.656599,0.100152,0.87813,0.817102,0.671827,0.508114,0.519169,0.693687,0.273684,0.203688,0.891701,0.642394,0.610918,0.386531,0.684282,0.887131,0.410057,0.450126,0.818696,0.0571425,0.904914,0.24522,0.683088,0.81819,0.00152034,0.95556,0.168064,0.0916182,0.249202,0.615563,0.253054,0.45954,0.653876,0.214944,0.767514,0.162755,0.474938,0.0779359,0.870726,0.237671,0.466668,0.475372,0.27523,0.271551,0.92326,0.486105,0.746423,0.0581852,0.0556124,0.518077,0.619063,0.411479,0.506648,0.527622,0.398906,0.63353,0.0544619,0.493964,0.448012,0.368871,0.618078,0.760164,0.696852,0.0862142,0.529097,0.0350258,0.233372,0.0858465,0.0347002,0.237717,0.416798,0.06752,0.643568,0.841116,0.951314,0.375304,0.867889,0.20825,0.974429,0.449777,0.861467,0.737682,0.0110916,0.404688,0.0381683,0.445824,0.352584,0.253167,0.357861,0.868857,0.135291,0.454681,0.683032,0.0439249,0.391935,0.46793,0.267041,0.648694,0.389335,0.313291,0.0535197,0.326173,0.502488,0.445098,0.255877,0.524175,0.10972,0.17261,0.319034,0.0576181,0.646864,0.99772,0.546479,0.920413,0.870659,0.633697,0.222786,0.406467,0.311417,0.266452,0.487829,0.69725,0.519173,0.0506166,0.467054,0.10037,0.811279,0.381745,0.460039,0.216917,0.754569,0.528566,0.880722,0.227177,0.703819,0.792567,0.609835,0.515993,0.791598,0.752663,0.670598,0.292321,0.33567,0.309752,0.935547,0.815346,0.345361,0.570997,0.118311,0.983451,0.0155761,0.527645,0.568234,0.134042,0.592035,0.71548,0.592106,0.0936156,0.46801,0.516184,0.260257,0.0238526,0.993682,0.0223176,0.0460603,0.93386,0.0130375,0.390545,0.74084,0.749777,0.975955,0.893421,0.410554,0.374085,0.396865,0.00690889,0.736964,0.993157,0.255135,0.417666,0.91747,0.803246,0.458701,0.788002,0.215324,0.959457,0.577686,0.0234895,0.960552,0.898209,0.928974,0.379112,0.301055,0.863505,0.797502,0.388886,0.498073,0.0281652,0.206111,0.621899,0.92502,0.263558,0.425144,0.0697846,0.356034,0.768127,0.0855348,0.198076,0.837083,0.067009,0.876563,0.117386,0.0927793,0.347266,0.877484,0.0157374,0.883153,0.930758,0.69429,0.345651,0.935956,0.998818,0.559092,0.874899,0.657634,0.752355,0.636457,0.584295,0.331999,0.386088,0.190368,0.696022,0.853104,0.0495737,0.311998,0.260669,0.222324,0.375822,0.768036,0.649293,0.640195,0.505197,0.570409,0.52294,0.229218,0.555905,0.284527,0.256217,0.563489,0.00667846,0.991368,0.393525,0.818835,0.25675,0.0714838,0.157769,0.612423,0.00661469,0.821543,0.223007,0.965924,0.939863,0.319528,0.94367,0.519855,0.706901,0.881138,0.186514,0.479279,0.377136,0.934195,0.243044,0.283217,0.0486314,0.512596,0.905426,0.337499,0.518464,0.558043,0.824822,0.822272,0.866774,0.696192,0.201066,0.207264,0.260318,0.12388,0.0657706,0.837794,0.125313,0.632727,0.210751,0.262954,0.276577,0.218964,0.958553,0.214961,0.46669,0.752359,0.882747,0.544512,0.939189,0.421192,0.335472,0.166594,0.304141,0.453408,0.836379,0.501823,0.379913,0.221088,0.77846,0.0230761,0.720699,0.474747,0.67515,0.232356,0.316472,0.469746,0.801319,0.0758413,0.147752,0.053674,0.716258,0.811766,0.303266,0.737266,0.852773,0.326858,0.955225,0.793649,0.394255,0.415831,0.772228,0.0368947,0.623389,0.29751,0.976581,0.113356,0.201045,0.259728,0.464021,0.319926,0.89667,0.761147,0.734872,0.871251,0.103393,0.841266,0.944672,0.914867,0.969234,0.295817,0.801247,0.338329,0.773468,0.450214,0.754939,0.475547,0.101996,0.858695,0.165455,0.692795,0.246773,0.603415,0.672048,0.54973,0.670174,0.170141,0.830582,0.584165,0.694918,0.536007,0.491507,0.197418,0.490507,0.862581,0.988528,0.595579,0.755957,0.841436,0.777776,0.948787,0.298091,0.0408058,0.664971,0.0857041,0.966851,0.818557,0.0472956,0.902634,0.886027,0.570803,0.245717,0.434954,0.838479,0.3031,0.584749,0.58336,0.00512362,0.0312127,0.719484,0.452225,0.682797,0.694379,0.00417006,0.519233,0.360577,0.0777712,0.943066,0.547077,0.799018,0.278757,0.924785,0.768036,0.0389711,0.210428,0.045631,0.957133,0.426659,0.56737,0.0444382,0.48011,0.440923,0.0674095,0.68402,0.0850453,0.189137,0.321596,0.0643539,0.0479337,0.883585,0.856263,0.745657,0.296979,0.314098,0.450347,0.220558,0.717647,0.560048,0.233127,0.49429,0.187382,0.86655,0.98282,0.984578,0.435793,0.847185,0.633255,0.895426,0.218939,0.545506,0.509619,0.30973,0.180226,0.817193,0.352019,0.893891,0.258074,0.277727,0.994022,0.454843,0.830542,0.487381,0.0640348,0.891618,0.444609,0.378291,0.531495,0.228365,0.157122,0.587601,0.0680299,0.185564,0.511997,0.1509,0.997086,0.655971,0.282304,0.709207,0.189861,0.519864,0.302134,0.439299,0.985906,0.618244,0.656669,0.693933,0.719769,0.110988,0.472459,0.319495,0.556801,0.306355,0.944345,0.479926,0.294415,0.904686,0.0180569,0.430022,0.85218,0.502016,0.606056,0.604185,0.439948,0.765691,0.46527,0.306418,0.914005,0.217793,0.406265,0.412602,0.343789,0.575869,0.358202,0.439475,0.881095,0.529707,|0.040712,0.0869349,0.074107,0.521037,0.616992,0.582627,0.797463,0.351476,0.799307,0.470554,0.231781,0.618631,0.428748,0.932167,0.211059,0.520738,0.10129,0.0807569,0.206872,0.744103,0.593161,0.3381,0.00648183,0.939397,0.524837,0.430837,0.145808,0.95361,0.57706,0.0757061,0.408277,0.909499,0.845358,0.985308,0.101529,0.76885,0.812417,0.127267,0.585775,0.599473,0.249558,0.397476,0.557822,0.575722,0.607011,0.456633,0.285518,0.97338,0.0849445,0.787626,0.883096,0.0464487,0.345828,0.975775,0.0836792,0.77136,0.162037,0.267027,0.813118,0.275375,0.811923,0.998292,0.507128,0.337782,0.204066,0.00606799,0.594041,0.403029,0.730965,0.124023,0.00860339,0.0161118,0.26225,0.460403,0.418649,0.820829,0.305027,0.0179982,0.617037,0.943894,0.543628,0.981617,0.215183,0.140219,0.561275,0.580519,0.0647765,0.756377,0.843118,0.598862,0.927501,0.0359995,0.0219294,0.59111,0.997399,0.00988448,0.11889,0.61281,0.839233,0.0812207,0.22401,0.987493,0.120651,0.138055,0.876921,0.741879,0.412771,0.516679,0.548529,0.880609,0.726248,0.710898,0.500299,0.193726,0.448349,0.10185,0.943989,0.800523,0.859037,0.0646662,0.673783,0.300185,0.560341,0.132236,0.799184,0.93407,0.208054,0.626304,0.703086,0.736131,0.242967,0.9957,0.457454,0.296242,0.528726,0.0765835,0.707654,0.971411,0.306563,0.578568,0.834196,0.12618,0.0833212,0.732375,0.513829,0.984003,0.485761,0.752578,0.288991,0.597253,0.222827,0.384153,0.00462979,0.887515,0.305251,0.455483,0.700872,0.438553,0.443018,0.402166,0.791841,0.325955,0.726166,0.658482,0.858278,0.831923,0.0133697,0.381379,0.970203,0.0912927,0.216526,0.449451,0.230511,0.109226,0.314805,0.342626,0.448326,0.232703,0.0297161,0.572668,0.887962,0.73933,0.939054,0.866577,0.0853801,0.366284,0.116296,0.463358,0.254016,0.264317,0.637442,0.612442,0.337464,0.0294534,0.791096,0.587458,0.502127,0.994053,0.525894,0.164382,0.12324,0.360278,0.0716834,0.646473,0.965726,0.440337,0.64665,0.455041,0.327516,0.052123,0.530534,0.466347,0.600582,0.224008,0.677511,0.469628,0.984183,0.133512,0.542302,0.400077,0.0621959,0.547962,0.234425,0.102519,0.449341,0.69638,0.678389,0.178703,0.551147,0.266444,0.102934,0.411352,0.371932,0.675865,0.90788,0.029896,0.052103,0.284533,0.891155,0.589789,0.481515,0.340791,0.151213,0.734214,0.445818,0.537249,0.12058,0.118236,0.260813,0.218451,0.327827,0.134389,0.0707045,0.820031,0.522625,0.95071,0.432352,0.426066,0.14819,0.923457,0.945573,0.301423,0.587196,0.722886,0.154402,0.340069,0.717881,0.308158,0.648301,0.261187,0.839998,0.295805,0.803021,0.23374,0.401326,0.0489246,0.381159,0.953281,0.125982,0.669,0.799262,0.993646,0.848546,0.140607,0.384668,0.867143,0.819773,0.653668,0.926834,0.0750112,0.55811,0.417552,0.0152874,0.574846,0.183421,0.538692,0.273688,0.159408,0.535082,0.827517,0.658769,0.974697,0.260021,0.39953,0.61827,0.232558,0.334647,0.394324,0.943418,0.699769,0.544684,0.0867915,0.198866,0.911656,0.217176,0.281959,0.269351,0.785078,0.604926,0.147588,0.410172,0.240525,0.84088,0.932167,0.264374,0.652297,0.722211,0.963661,0.721954,0.691923,0.569645,0.945151,0.264235,0.718779,0.218265,0.613774,0.500023,0.442588,0.989542,0.408737,0.429516,0.0801897,0.838579,0.535783,0.136846,0.770919,0.0562198,0.668641,0.869595,0.872792,0.583813,0.479508,0.793753,0.0844769,0.734289,0.965727,0.453794,0.351274,0.164936,0.0256894,0.994362,0.380163,0.945802,0.0263838,0.998359,0.493643,0.241622,0.892221,0.0236667,0.13036,0.93973,0.487333,0.596897,0.931571,0.38837,0.128352,0.747626,0.887657,0.314719,0.0608805,0.70423,0.56722,0.191308,0.329303,0.721408,0.0289486,0.709481,0.360918,0.336001,0.381367,0.388803,0.587763,0.732159,0.316122,0.404595,0.530311,0.809895,0.899509,0.644631,0.943483,0.925174,0.482876,0.950876,0.515321,0.0762342,0.477319,0.0229753,0.395037,0.894851,0.891302,0.876776,0.781039,0.605967,0.494773,0.566894,0.161221,0.776569,0.549161,0.538093,0.206842,0.552114,0.670467,0.796632,0.356858,0.566634,0.849628,0.618124,0.84446,0.511775,0.595394,0.749959,0.311876,0.0257248,0.0254297,0.537648,0.805465,0.430923,0.051467,0.920108,0.209945,0.170155,0.635283,0.276696,0.487756,0.0805944,0.988159,0.964769,0.279412,0.115395,0.61769,0.983465,0.206254,0.390761,0.504794,0.959282,0.0323725,0.440599,0.282552,0.49438,0.967819,0.0304357,0.128853,0.963419,0.435843,0.0621413,0.736087,0.555782,0.979753,0.155761,0.42832,0.0163019,0.773808,0.912383,0.36551,0.106036,0.352065,0.721963,0.724719,0.000292301,0.782392,0.646282,0.411593,0.0412244,0.115285,0.030497,0.501494,0.157386,0.711908,0.607199,0.0878071,0.502506,0.609631,0.941422,0.0493994,0.96299,0.63408,0.384461,0.795482,0.791855,0.719679,0.782524,0.301387,0.371686,0.33896,0.702457,0.617931,0.00765568,0.44416,0.54109,0.767784,0.605096,0.940476,0.303159,0.902288,0.0287167,0.0574938,0.874894,0.455307,0.922646,0.269934,0.899368,0.565913,0.44041,0.21047,0.341919,0.687487,0.334579,0.252777,0.983962,0.472682,0.388954,0.357886,0.818706,0.0863314,0.959895,0.301889,0.774304,0.123672,0.00626582,0.777921,0.919378,0.454309,0.17706,0.565924,0.0398241,0.024481,0.494582,0.490668,0.765936,0.934661,0.906863,0.969559,0.315279,0.774303,0.380541,0.460944,0.00719345,0.832884,0.917632,0.79452,0.834106,0.0725673,0.176357,0.724941,0.721856,0.112349,0.762741,0.473506,0.669989,0.644083,0.231615,0.976818,0.636306,0.808641,0.201614,0.964903,0.863899,0.830533,0.418628,0.89521,0.674846,0.102305,0.491443,0.525989,0.940159,0.12942,0.880397,0.293694,0.466879,0.766094,0.927417,0.175872,0.38826,0.075431,0.939673,0.400406,0.927132,0.905741,0.597088,0.609271,0.854403,0.794725,0.905784,0.977658,0.25191,0.727197,0.360298,0.289752,0.0936369,0.777364,0.907076,0.684268,0.338253,0.534903,0.687838,0.89342,0.234831,0.343915,0.462063,0.328826,0.646092,0.680782,0.51841,0.368662,0.393022,0.107607,0.762712,0.320242,0.812506,0.182022,0.7846,0.277351,0.947871,0.687419,0.856442,0.685032,0.934927,0.542201,0.272093,0.199487,0.259938,0.569601,0.7782,0.382264,0.763653,0.755249,0.980098,0.285701,0.0324532,0.965042,0.788736,0.682095,0.551689,0.936996,0.761555,0.38287,0.825255,0.314422,0.388589,0.279704,0.535034,0.992827,0.89682,0.684099,0.534557,0.616401,0.445757,0.880099,0.20063,0.205957,0.278709,0.568753,0.476944,0.509,0.170374,0.563206,0.312295,0.445535,0.646399,0.27352,0.342079,0.948275,0.0491321,0.841225,0.931715,0.560325,0.69558,0.710117,0.11182,0.119886,0.557362,0.390673,0.0189577,0.0222754,0.514678,0.336219,0.513902,0.10757,0.889007,0.658897,0.566695,0.474259,0.472749,0.509627,0.488072,0.665191,0.832068,0.626175,0.143146,0.0613778,0.0622647,0.493924,0.221092,0.0216274,0.739076,0.421827,0.620361,0.0368078,0.27807,0.293261,0.632366,0.21643,0.762974,0.261461,0.910239,0.380383,0.340408,0.555901,0.84011,0.109574,0.239878,0.543838,0.87631,0.170776,0.730751,0.181973,0.55442,0.172279,0.1227,0.862858,0.739925,0.888713,0.917435,0.715418,0.927814,0.431375,0.982502,0.533462,0.510656,0.481101,0.606867,0.530192,0.169154,0.504793,0.678997,0.620199,0.766401,0.239089,0.0975499,0.687711,0.439503,0.502142,0.65312,0.264865,0.288083,0.571501,0.13567,0.927191,0.699214,0.501903,0.150355,0.961741,0.770537,0.483849,0.549422,0.674908,0.236679,0.910957,0.118032,0.111139,0.876774,0.171765,0.170697,0.811932,0.716577,0.272396,0.926088,0.728326,0.683535,0.395176,0.370442,0.138466,0.644312,0.124734,0.797568,0.521364,0.329475,0.523072,0.208694,0.892632,0.778631,0.506199,0.0483362,0.132829,0.176152,0.00393438,0.742392,0.161298,0.635147,0.00217456,0.534955,0.890064,0.460792,0.54592,0.17825,0.215638,0.740767,0.78796,0.974872,0.719066,0.0319963,0.452085,0.502509,0.747245,0.760959,0.714653,0.684238,0.938743,0.232443,0.188467,0.661821,0.448059,0.0639656,0.139864,0.230875,0.791609,0.57442,0.16032,0.489501,0.23887,0.710577,0.421006,0.31374,2.5034e-06,0.900061,0.296669,0.995189,0.41283,0.763453,0.157251,0.972679,0.828949,0.708533,0.264578,0.962608,0.435619,0.735671,0.85647,0.692405,0.824847,0.7314,0.665578,0.322381,0.638248,0.144378,0.870171,0.451779,0.230511,0.654268,0.233114,0.604385,0.979078,0.391395,0.657108,0.016761,0.171896,0.995126,0.782942,0.421418,0.0341702,0.117766,0.571716,0.299136,0.465478,0.53113,0.994447,0.853466,0.906987,0.509421,0.305477,0.862179,0.643041,0.145553,0.898685,0.0749982,0.252573,0.620573,0.585171,0.524228,0.769254,0.357056,0.950158,0.450635,0.139357,0.0475458,0.476284,0.200631,0.727625,0.982748,0.325862,0.433031,0.954063,0.831809,0.444106,0.43494,0.17607,0.69388,0.604312,0.737254,0.304606,0.837905,0.883423,0.989689,0.527789,0.936259,0.970663,0.00658941,0.0767595,0.984105,0.10214,0.809094,0.252603,0.453292,0.288927,0.578113,0.0194767,0.976375,0.897727,0.633139,0.479652,0.169779,0.807234,0.0330291,0.100362,0.424414,0.86457,0.177062,0.958233,0.138541,0.374377,0.0950564,0.730737,0.730576,0.182054,0.218192,0.0141942,0.250719,0.861231,0.683653,0.560593,0.276886,0.424133,0.975112,0.0356397,0.0995958,0.946835,0.675779,0.986237,0.765438,0.312078,0.0143562,0.293183,0.967423,0.465057,0.747577,0.755607,0.211295,0.928009,0.65707,0.286851,0.813932,0.456811,0.221725,0.278158,0.317383,0.641298,0.429717,0.0167437,0.327422,0.833258,0.965265,0.796672,0.527777,0.686539,0.0301887,0.440787,0.337016,0.418646,0.714996,0.686252,|0.60713,0.42829,0.83455,0.453812,0.409355,0.612399,0.446935,0.461143,0.487322,0.991711,0.362974,0.0956353,0.0595877,0.638863,0.767195,0.942092,0.373286,0.511711,0.433368,0.310834,0.149465,0.603463,0.887514,0.251377,0.203118,0.196048,0.38592,0.845434,0.733714,0.584959,0.97259,0.655277,0.808829,0.626206,0.300898,0.748325,0.285215,0.920435,0.775607,0.523605,0.709967,0.47762,0.823759,0.751329,0.816964,0.922063,0.948772,0.696902,0.918483,0.109496,0.204482,0.341924,0.771073,0.511799,0.963752,0.78772,0.788545,0.41226,0.56158,0.719378,0.920902,0.496832,0.215133,0.757099,0.601261,0.207918,0.0803056,0.635349,0.302992,0.481539,0.629716,0.639382,0.521708,0.418884,0.647329,0.579668,0.305337,0.758965,0.0631275,0.991535,0.453773,0.187099,0.00946128,0.226444,0.784153,0.384664,0.709876,0.545106,0.982122,0.466679,0.0941105,0.537501,0.764653,0.0820757,0.452231,0.154794,0.360372,0.843441,0.826473,0.514266,0.250949,0.727427,0.870875,0.571362,0.819197,0.360925,0.0444738,0.801465,0.10578,0.883887,0.276735,0.512494,0.980182,0.224175,0.81105,0.270278,0.703056,0.568744,0.11279,0.29793,0.661586,0.149203,0.0984604,0.212101,0.940516,0.262462,0.0140407,0.909192,0.182626,0.00791776,0.473649,0.277344,0.701137,0.773865,0.515882,0.181182,0.368915,0.136621,0.577333,0.0680099,0.278853,0.436433,0.625138,0.0876352,0.206573,0.60511,0.990317,0.170512,0.48886,0.543593,0.071103,0.720576,0.436771,0.17019,0.721048,0.484073,0.243032,0.912595,0.778196,0.328371,0.574865,0.795065,0.262606,0.0693801,0.416678,0.00120395,0.0217992,0.447213,0.485164,0.616716,0.84071,0.486844,0.996437,0.203406,0.0833635,0.094828,0.385149,0.396815,0.876038,0.373808,0.0236293,0.55752,0.894899,0.40331,0.210337,0.362692,0.842972,0.206729,0.0288067,0.89216,0.210925,0.468424,0.66349,0.463394,0.590431,0.548921,0.529666,0.462795,0.131285,0.402517,0.0552605,0.365189,0.851864,0.167651,0.635708,0.803051,0.362395,0.0565025,0.859514,0.393305,0.293283,0.911415,0.497466,0.903037,0.708292,0.669559,0.0830758,0.0682808,0.819054,0.216162,0.737143,0.260041,0.0531312,0.750481,0.379085,0.277706,0.660117,0.354664,0.0952492,0.0540012,0.223035,0.484821,0.511547,0.13032,0.205087,0.789802,0.261612,0.961622,0.878849,0.79483,0.529498,0.590201,0.50905,0.0686156,0.688356,0.801238,0.742467,0.868638,0.35698,0.534167,0.533229,0.230225,0.742036,0.697383,0.768388,0.0880555,0.360184,0.995246,0.383697,0.523895,0.726327,0.722989,0.99113,0.94145,0.383936,0.194628,0.699471,0.903621,0.433016,0.246332,0.0673546,0.540836,0.341866,0.678998,0.268751,0.352813,0.58551,0.408341,0.781561,0.354306,0.814178,0.183893,0.0307932,0.365674,0.56785,0.359775,0.373408,0.475228,0.250563,0.892215,0.162558,0.20254,0.910653,0.0702066,0.238255,0.632199,0.448489,0.278321,0.353519,0.642977,0.839036,0.0630836,0.199439,0.952393,0.911677,0.96219,0.603148,0.894144,0.71532,0.682648,0.0584209,0.492274,0.437718,0.738975,0.224034,0.880262,0.147563,0.735238,0.832612,0.757193,0.0300936,0.309934,0.907159,0.271152,0.391838,0.542011,0.0854058,0.203116,0.952273,0.118091,0.577363,0.933895,0.99007,0.550673,0.35511,0.838817,0.351872,0.852502,0.273643,0.545016,0.153855,0.703273,0.568255,0.048016,0.84578,0.325495,0.119246,0.862006,0.211257,0.562094,0.267854,0.889651,0.754337,0.715237,0.568076,0.109451,0.419086,0.0317444,0.518765,0.275323,0.8483,0.183458,0.885176,0.476684,0.14279,0.210653,0.693646,0.839382,0.720876,0.410501,0.804312,0.83109,0.85451,0.24589,0.0355396,0.385374,0.454935,0.331219,0.646812,0.36761,0.919473,0.127174,0.975712,0.288743,0.0186456,0.749747,0.447383,0.975283,0.988052,0.267545,0.419573,0.655135,0.632689,0.467653,0.583583,0.519355,0.490022,0.464033,0.496223,0.651963,0.0225364,0.694005,0.372004,0.746606,0.641755,0.422872,0.0983332,0.512992,0.25718,0.909782,0.570495,0.00515687,0.744788,0.12291,0.739937,0.201371,0.0424973,0.556862,0.0438627,0.438343,0.598347,0.26166,0.298835,0.734207,0.730555,0.291199,0.282809,0.532139,0.399633,0.108353,0.869609,0.23033,0.286613,0.531257,0.914241,0.20244,0.329826,0.685126,0.762537,0.00971848,0.299051,0.318029,0.936732,0.568836,0.892961,0.656059,0.943441,0.117892,0.851476,0.0802019,0.00275785,0.462636,0.094499,0.214188,0.300386,0.0400316,0.94754,0.674144,0.408632,0.87558,0.546576,0.688268,0.409521,0.56255,0.203911,0.415875,0.0567397,0.127584,0.508477,0.728361,0.0511932,0.35655,0.0435801,0.0349672,0.531049,0.823972,0.568787,0.362912,0.909603,0.425585,0.95976,0.796064,0.451363,0.368958,0.616723,0.0938131,0.545978,0.405728,0.368543,0.994735,0.802311,0.280897,0.399317,0.380297,0.731272,0.647629,0.724504,0.818778,0.442566,0.44326,0.271674,0.241848,0.809343,0.674873,0.689915,0.172462,0.610851,0.525627,0.751989,0.245486,0.0911077,0.861545,0.96527,0.167901,0.466027,0.550172,0.269388,0.59663,0.206101,0.496726,0.207246,0.196881,0.545252,0.747271,0.888428,0.681993,0.139107,0.178194,0.843558,0.707046,0.924355,0.0500517,0.00491649,0.351181,0.823967,0.467426,0.506906,0.712679,0.703891,0.619394,0.412085,0.204722,0.985013,0.924936,0.755317,0.62919,0.203284,0.540851,0.521351,0.835244,0.21403,0.405276,0.716335,0.405795,0.309993,0.689074,0.362652,0.452242,0.198901,0.921742,0.513198,0.814715,0.0197906,0.528496,0.834931,0.1466,0.780789,0.304116,0.915214,0.246493,0.0221742,0.189529,0.191854,0.518285,0.784872,0.289668,0.501186,0.767011,0.0353223,0.6027,0.991212,0.0353134,0.158898,0.503997,0.666683,0.527707,0.481113,0.545285,0.0350909,0.041831,0.985066,0.87609,0.389758,0.826649,0.178346,0.409669,0.200508,0.599085,0.122686,0.19278,0.878317,0.662926,0.30453,0.390033,0.288119,0.189876,0.657787,0.264465,0.969303,0.993526,0.568407,0.737374,0.984134,0.285627,0.547173,0.738463,0.408215,0.889708,0.733872,0.464163,0.392448,0.863447,0.0325502,0.439158,0.704739,0.48392,0.900008,0.89524,0.654831,0.458811,0.435369,0.575772,0.103878,0.513974,0.676356,0.13598,0.918908,0.61041,0.752869,0.26124,0.579279,0.272705,0.83775,0.224204,0.354594,0.405916,0.669144,0.176743,0.217606,0.291024,0.81411,0.540671,0.477465,0.0225223,0.922308,0.515568,0.0739466,0.944787,0.911966,0.155427,0.958099,0.650105,0.536101,0.892968,0.74353,0.434042,0.0222561,0.427852,0.797819,0.773248,0.247806,0.151646,0.837946,0.109388,0.607687,0.401274,0.68525,0.709053,0.212456,0.366559,0.145172,0.010262,0.801774,0.208275,0.197756,0.0900289,0.632992,0.366284,0.585073,0.764925,0.819387,0.00410271,0.128405,0.200423,0.467164,0.988852,0.887713,0.777881,0.769882,0.360338,0.414583,0.992888,0.536869,0.283709,0.475332,0.189961,0.686501,0.230404,0.579131,0.646049,0.272716,0.981668,0.727036,0.900539,0.303263,0.148145,0.823523,0.520563,0.434834,0.755414,0.0747914,0.307265,0.0303556,0.349971,0.925213,0.129734,0.700802,0.0128106,0.0337021,0.322509,0.29213,0.953335,0.566932,0.520872,0.0885307,0.727555,0.270087,0.934367,0.84808,0.583803,0.773725,0.28596,0.879839,0.372682,0.672892,0.912825,0.223497,0.254487,0.420642,0.518535,0.0246102,0.436195,0.400632,0.946387,0.10654,0.0570051,0.373622,0.993349,0.777031,0.2022,0.490649,0.402389,0.259319,0.32421,0.420804,0.292745,0.30045,0.467858,0.780661,0.562569,0.00943065,0.181799,0.669139,0.958382,0.234357,0.953392,0.830292,0.863143,0.36236,0.0451726,0.813935,0.321447,0.107606,0.745752,0.789873,0.610826,0.450752,0.188128,0.108083,0.991263,0.0855671,0.207202,0.475756,0.892764,0.425916,0.720242,0.186512,0.616698,0.142992,0.0193224,0.523969,0.0618719,0.634913,0.832612,0.502164,0.212423,0.0693103,0.0158862,0.272221,0.658396,0.869665,0.120227,0.903874,0.750092,0.309157,0.236656,0.78712,0.0562323,0.845032,0.216309,0.373826,0.736243,0.887791,0.698796,0.614757,0.377479,0.55912,0.460929,0.421802,0.721947,0.76145,0.928885,0.0439532,0.117095,0.57215,0.346304,0.851116,0.296555,0.739176,0.896405,0.112958,0.816101,0.519306,0.143989,0.615036,0.332562,0.547927,0.424361,0.695527,0.836086,0.305242,0.482383,0.368269,0.813,0.174002,0.198095,0.605626,0.474092,0.583935,0.779109,0.7941,0.800597,0.752852,0.518799,0.562797,0.319948,0.119384,0.496708,0.22521,0.47531,0.456107,0.776477,0.0207376,0.202086,0.978378,0.877127,0.313383,0.415811,0.831357,0.487153,0.631203,0.171647,0.748932,0.307278,0.965172,0.59141,0.130994,0.310874,0.196044,0.471109,0.222394,0.376263,0.931828,0.791363,0.15646,0.837944,0.343757,0.451533,0.961123,0.28002,0.0282721,0.475221,0.647102,0.00639379,0.881522,0.132761,0.665785,0.139616,0.450606,0.287916,0.834737,0.956904,0.26074,0.521797,0.537851,0.419832,0.921741,0.942644,0.0776265,0.271299,0.736927,0.940546,0.649001,0.0701861,0.050657,0.211062,0.490181,0.310009,0.910867,0.745423,0.619578,0.363326,0.567255,0.869053,0.971793,0.790094,0.137603,0.129742,0.819708,0.557329,0.410542,0.616791,0.240266,0.111241,0.0645537,0.233889,0.836463,0.40713,0.419855,0.679787,0.133285,0.108918,0.844523,0.139062,0.0943071,0.556688,0.995197,0.280702,0.4803,0.416931,0.245701,0.632638,0.674643,0.575362,0.874734,0.729367,0.554269,0.672693,0.244439,0.684611,0.551829,0.190721,0.200694,0.859406,0.206051,0.0511907,0.743143,0.691419,0.0288892,0.777264,0.941162,0.741332,0.184294,0.438079,0.0379257,0.76645,0.592155,0.215652,0.27502,0.809404,0.656317,0.562726,0.158266,0.377323,0.710268,0.785346,0.471318,0.880034,0.150488,0.0188878,|0.926584,0.217619,0.440116,0.0245191,0.319606,0.455106,0.30389,0.680201,0.983388,0.138765,0.0572649,0.111963,0.978086,0.0110765,0.756501,0.592311,0.7986,0.0277635,0.718442,0.239862,0.884823,0.424701,0.334762,0.765174,0.97824,0.500635,0.616052,0.278949,0.0194153,0.18406,0.66004,0.48501,0.0562981,0.0191758,0.863177,0.812095,0.563704,0.397846,0.48935,0.282899,0.897337,0.572169,0.00791883,0.228267,0.667316,0.304058,0.613379,0.747464,0.877808,0.442093,0.523389,0.124937,0.477482,0.0493816,0.751091,0.0125892,0.0827225,0.560405,0.636838,0.97288,0.0904332,0.721187,0.800003,0.364013,0.335826,0.669058,0.462201,0.764398,0.840046,0.864428,0.684876,0.317791,0.131043,0.807414,0.811407,0.574385,0.899787,0.897401,0.210449,0.323802,0.699978,0.90591,0.160559,0.918875,0.585743,0.802575,0.102144,0.285223,0.509004,0.15714,0.92288,0.0378249,0.917237,0.564811,0.27225,0.759137,0.345184,0.0325617,0.914781,0.205528,0.759348,0.566844,0.313424,0.184073,0.392548,0.794405,0.359124,0.350993,0.511077,0.000206709,0.964841,0.710379,0.350163,0.793567,0.491259,0.46039,0.59963,0.405648,0.977325,0.343018,0.896135,0.9432,0.999696,0.334718,0.998187,0.627882,0.832845,0.622659,0.71805,0.497507,0.720292,0.915684,0.466238,0.217345,0.069871,0.0201783,0.955239,0.707949,0.714175,0.639395,0.184533,0.160614,0.381458,0.275262,0.22879,0.697017,0.165248,0.0865209,0.913646,0.906433,0.390934,0.432591,0.832181,0.0956247,0.0386059,0.368939,0.660588,0.708401,0.384093,0.883463,0.54549,0.5376,0.110861,0.00819737,0.97752,0.0546931,0.353535,0.148658,0.612917,0.731933,0.478047,0.118453,0.500006,0.532123,0.209392,0.824483,0.100383,0.772205,0.431608,0.667734,0.627828,0.97885,0.347048,0.565573,0.10841,0.689942,0.226561,0.810596,0.582576,0.332184,0.438715,0.00133187,0.42794,0.699546,0.763546,0.54754,0.107232,0.666289,0.780804,0.354766,0.208267,0.0192373,0.722127,0.701956,0.0359606,0.97533,0.00571257,0.657679,0.306272,0.50877,0.176051,0.391747,0.671598,0.478564,0.76516,0.700891,0.907054,0.777029,0.657802,0.625285,0.426813,0.219175,0.416754,0.076156,0.0117239,0.548626,0.374197,0.254646,0.733409,0.41332,0.40683,0.128632,0.318242,0.537353,0.645529,0.0725257,0.735303,0.258194,0.7001,0.731541,0.659465,0.690438,0.0944459,0.692628,0.94401,0.267862,0.378292,0.711926,0.479471,0.623992,0.824577,0.281247,0.406786,0.812827,0.422671,0.55466,0.208636,0.0831641,0.947207,0.552322,0.35719,0.633429,0.827012,0.207508,0.711372,0.740794,0.652585,0.415339,0.479664,0.0576504,0.452648,0.232312,0.622533,0.362437,0.0730456,0.823943,0.862516,0.562715,0.482277,0.359092,0.859902,0.951354,0.563754,0.501044,0.860651,0.642328,0.336417,0.100652,0.705064,0.633375,0.698699,0.559685,0.745903,0.970629,0.467218,0.801154,0.649896,0.866036,0.75319,0.0430596,0.566725,0.98786,0.106006,0.136303,0.336563,0.647489,0.777318,0.0326981,0.481101,0.530223,0.570552,0.497738,0.797507,0.61977,0.811214,0.591179,0.311392,0.862463,0.189411,0.231763,0.680056,0.208519,0.313082,0.249321,0.377704,0.631044,0.721821,0.0729472,0.770285,0.595919,0.43332,0.922261,0.21611,0.685292,0.445986,0.645311,0.623803,0.244507,0.0431995,0.579301,0.14402,0.880779,0.503476,0.0751487,0.427653,0.510066,0.0449605,0.233615,0.226002,0.656042,0.119355,0.523269,0.364604,0.962073,0.172158,0.779594,0.538357,0.956453,0.479186,0.759853,0.788835,0.651433,0.675578,0.884595,0.987683,0.107776,0.582732,0.1894,0.557878,0.923982,0.663742,0.288072,0.380259,0.185172,0.855535,0.57112,0.762528,0.469578,0.556527,0.296205,0.879514,0.211,0.681167,0.838528,0.387537,0.548354,0.211226,0.32751,0.983826,0.421208,0.620805,0.630068,0.279466,0.977387,0.67865,0.873572,0.142061,0.00125426,0.0104732,0.170239,0.816897,0.293661,0.724286,0.056567,0.880323,0.299369,0.711607,0.610587,0.507756,0.439699,0.116794,0.783137,0.694945,0.195067,0.0412412,0.774687,0.0920232,0.820342,0.881068,0.764563,0.818098,0.470409,0.634801,0.256105,0.19249,0.446855,0.945533,0.690402,0.469537,0.874565,0.627196,0.0478476,0.865316,0.987117,0.521768,0.537511,0.886916,0.0313325,0.970038,0.583301,0.509974,0.381969,0.0800071,0.488439,0.134953,0.0618653,0.866074,0.179134,0.848303,0.864135,0.235974,0.164318,0.226032,0.829074,0.378854,0.361454,0.591795,0.221386,0.491753,0.212452,0.661022,0.762276,0.71979,0.717568,0.644062,0.669928,0.0205139,0.852692,0.789751,0.0511122,0.975619,0.554142,0.76576,0.292247,0.0553197,0.967327,0.780837,0.594085,0.0949072,0.789578,0.806809,0.406947,0.0363001,0.107399,0.362444,0.408241,0.304423,0.417572,0.744338,0.543769,0.872093,0.140141,0.683972,0.308953,0.724105,0.381901,0.351695,0.249581,0.939429,0.25929,0.761326,0.387742,0.00964475,0.874188,0.0537784,0.611345,0.447542,0.549012,0.981175,0.728672,0.306732,0.824423,0.221988,0.147286,0.250261,0.227565,0.135354,0.499961,0.301676,0.745642,0.844916,0.744053,0.890316,0.299797,0.0313961,0.74735,0.810057,0.927547,0.951776,0.411598,0.711451,0.111185,0.996452,0.826356,0.384481,0.705273,0.376778,0.390643,0.0372663,0.805068,0.961495,0.607429,0.720972,0.999424,0.975182,0.00421095,0.275082,0.656717,0.88207,0.348309,0.439272,0.565335,0.694752,0.706888,0.352573,0.134898,0.502182,0.412178,0.443484,0.945067,0.00055337,0.165389,0.545123,0.787358,0.0352483,0.105433,0.521221,0.182681,0.482491,0.414318,0.625391,0.935543,0.993864,0.639359,0.860055,0.0545374,0.255298,0.345157,0.0988356,0.511848,0.128405,0.396824,0.943091,0.926719,0.0385036,0.283585,0.676302,0.527414,0.761393,0.46282,0.293779,0.28888,0.0674057,0.263187,0.726789,0.942857,0.233955,0.65497,0.275331,0.0390598,0.76898,0.157319,0.497971,0.999025,0.455391,0.0988293,0.60771,0.533746,0.0298062,0.0840055,0.473333,0.522718,0.133119,0.90288,0.412564,0.412322,0.094984,0.866139,0.831456,0.248358,0.437403,0.471949,0.684208,0.921866,0.489873,0.182616,0.346657,0.644737,0.0571517,0.619191,0.374148,0.114203,0.595002,0.642981,0.205105,0.161967,0.288662,0.946361,0.150854,0.719415,0.821008,0.53277,0.620136,0.287332,0.0785167,0.751699,0.73988,0.639178,0.752323,0.331607,0.597801,0.759276,0.293527,0.221701,0.620692,0.804781,0.333061,0.548375,0.795729,0.96293,0.803928,0.0873387,0.816779,0.984645,0.579842,0.908483,0.784633,0.0869241,0.67858,0.684805,0.189044,0.74024,0.0889742,0.302938,0.779458,0.937567,0.584898,0.34252,0.337171,0.535749,0.53292,0.233928,0.309013,0.727565,0.918152,0.168109,0.30473,0.959248,0.824519,0.714498,0.23574,0.520521,0.250278,0.815376,0.637734,0.077366,0.605977,0.535127,0.300829,0.716305,0.727138,0.720654,0.05305,0.866374,0.597199,0.180383,0.764557,0.442414,0.340211,0.0199475,0.867348,0.788148,0.69636,0.778251,0.739225,0.379435,0.329312,0.969498,0.962015,0.00936055,0.265363,0.309892,0.219521,0.532686,0.173005,0.30096,0.331406,0.7408,0.602006,0.367596,0.764949,0.209395,0.0851767,0.345286,0.708343,0.564745,0.979738,0.132036,0.519244,0.684377,0.0569083,0.815711,0.920162,0.257988,0.133373,0.449021,0.247634,0.512805,0.0544645,0.303315,0.715613,0.655684,0.838317,0.174023,0.573899,0.847373,0.238774,0.515755,0.929681,0.664608,0.686156,0.0153393,0.395955,0.608523,0.0466487,0.591437,0.046607,0.448198,0.2734,0.140811,0.673664,0.493962,0.296994,0.400794,0.689248,0.325992,0.558553,0.778802,0.152678,0.943428,0.422959,0.507338,0.311003,0.56245,0.497082,0.978004,0.449557,0.00142092,0.695732,0.162609,0.293998,0.980767,0.585721,0.583221,0.28102,0.739721,0.464167,0.470437,0.794566,0.624056,0.343752,0.26839,0.439413,0.988458,0.443015,0.938161,0.242099,0.833549,0.825649,0.612011,0.128555,0.00617212,0.269673,0.174746,0.135729,0.0844508,0.190147,0.470901,0.99356,0.0444037,0.815538,0.4776,0.678992,0.89832,0.676454,0.473986,0.749728,0.497227,0.724581,0.810592,0.204513,0.823718,0.529171,0.417458,0.147,0.525039,0.129001,0.728074,0.357383,0.204065,0.722366,0.363666,0.667713,0.187066,0.187833,0.786139,0.804653,0.192852,0.987893,0.427883,0.731316,0.76086,0.501679,0.885464,0.792434,0.0933798,0.325695,0.810491,0.947954,0.109813,0.38661,0.182061,0.614998,0.0986102,0.314683,0.625229,0.742892,0.832758,0.357274,0.311291,0.141456,0.914541,0.641478,0.589709,0.426574,0.556628,0.204783,0.88018,0.916041,0.202062,0.274798,0.895706,0.366429,0.961225,0.861203,0.0470699,0.681906,0.378464,0.506585,0.834521,0.295477,0.754995,0.317853,0.00947726,0.637837,0.801352,0.40735,0.603691,0.386231,0.747133,0.863612,0.936163,0.956184,0.155692,0.0261434,0.576998,0.169388,0.434401,0.280922,0.0946612,0.661556,0.195097,0.792641,0.638654,0.507966,0.185383,0.0296991,0.0342259,0.46432,0.253882,0.0988662,0.207856,0.286393,0.582651,0.73509,0.09397,0.0815142,0.00461781,0.839312,0.515821,0.85352,0.630886,0.984749,0.60172,0.269671,0.961147,0.23902,0.948687,0.496862,0.354299,0.880184,0.019152,0.458527,0.664771,0.29059,0.213154,0.120725,0.961893,0.720114,0.0777792,0.835905,0.128763,0.571707,0.552175,0.954469,0.531692,0.140355,0.710431,0.550085,0.136005,0.415187,0.971006,0.331908,0.318998,0.777686,0.449748,0.961224,0.809162,0.801838,0.703404,0.0514187,0.125057,0.549296,0.146563,0.786146,0.631346,0.93137,0.407272,0.627534,0.768722,0.538021,0.104676,0.328284,0.945096,0.259595,0.765557,0.375095,0.71076,0.610359,0.497304,0.0735048,0.46514,0.482934,0.359633,0.159151,0.803856,0.741046,0.475196,0.384871,0.420745,|0.500994,0.662832,0.127013,0.717919,0.596668,0.273978,0.741677,0.37049,0.0469093,0.190581,0.0177503,0.147688,0.989661,0.570826,0.427331,0.296266,0.753366,0.660463,0.244136,0.420273,0.34094,0.715886,0.576921,0.412976,0.768047,0.384907,0.725279,0.536767,0.366004,0.174648,0.443607,0.343137,0.328207,0.195138,0.623489,0.283861,0.565344,0.664896,0.417472,0.168012,0.465226,0.28579,0.252291,0.582526,0.860175,0.261472,0.552471,0.736429,0.0105544,0.261887,0.585327,0.446677,0.759196,0.787732,0.742691,0.335202,0.792372,0.117267,0.710001,0.391012,0.871222,0.0255359,0.547526,0.0916762,0.89365,0.225772,0.943581,0.885452,0.0907238,0.343662,0.895304,0.742018,0.915223,0.557733,0.197972,0.0787714,0.82404,0.152588,0.839435,0.496211,0.150907,0.931457,0.414093,0.78354,0.497944,0.445473,0.902059,0.863141,0.704663,0.861424,0.53536,0.385943,0.335927,0.39104,0.322298,0.420554,0.0485377,0.695207,0.0302304,0.241016,0.403679,0.405957,0.68506,0.369244,0.458383,0.415737,0.284209,0.644599,0.339082,0.810107,0.791444,0.804832,0.926595,0.132899,0.161336,0.831849,0.0460768,0.384711,0.964461,0.647154,0.441294,0.365066,0.625556,0.2994,0.685295,0.480164,0.882814,0.333358,0.783525,0.858662,0.1402,0.160236,0.548014,0.241163,0.182266,0.626797,0.0399759,0.521726,0.687204,0.639169,0.162728,0.0215225,0.954957,0.555182,0.164336,0.684867,0.578019,0.773414,0.08661,0.872208,0.0826135,0.353625,0.34642,0.204835,0.0332476,0.474502,0.0894947,0.330494,0.101425,0.872366,0.612517,0.706856,0.989836,0.998086,0.0937009,0.30502,0.425371,0.826929,0.598255,0.160282,0.518888,0.649626,0.459225,0.0766082,0.885536,0.745294,0.513663,0.409578,0.152144,0.489191,0.212628,0.360803,0.240684,0.155041,0.376666,0.464529,0.426536,0.146231,0.677699,0.533962,0.932088,0.443955,0.81684,0.173481,0.973665,0.416902,0.563496,0.313198,0.14162,0.778831,0.448291,0.814497,0.76702,0.733257,0.719668,0.855973,0.852058,0.869027,0.775803,0.80535,0.703334,0.15722,0.129776,0.00526679,0.57273,0.756506,0.745076,0.777893,0.403862,0.362492,0.99199,0.163415,0.87359,0.427799,0.477534,0.0224925,0.271295,0.35828,0.801496,0.622198,0.111418,0.262678,0.363406,0.605863,0.0692861,0.223751,0.0440428,0.863293,0.592548,0.394433,0.735552,0.74251,0.88438,0.129314,0.313777,0.416682,0.410842,0.539938,0.0394607,0.709239,0.617956,0.676419,0.484895,0.696075,0.328177,0.939191,0.613584,0.96118,0.69029,0.243147,0.81614,0.94416,0.117067,0.970668,0.0288428,0.209088,0.808355,0.739532,0.928603,0.179393,0.0797487,0.609069,0.959998,0.435785,0.541962,0.235665,0.449454,0.514632,0.429777,0.120515,0.465308,0.785318,0.416509,0.872226,0.92693,0.531131,0.784089,0.439172,0.0543748,0.765115,0.569715,0.598074,0.00969774,0.909455,0.712061,0.487885,0.811844,0.637282,0.273792,0.958001,0.462629,0.0533797,0.979049,0.851928,0.0685161,0.0102843,0.386059,0.158214,0.233745,0.933707,0.23176,0.606884,0.618856,0.347255,0.64017,0.236481,0.32895,0.941278,0.504672,0.859472,0.906959,0.271012,0.911687,0.866321,0.282532,0.347537,0.746298,0.0831951,0.6539,0.947934,0.66648,0.287287,0.471665,0.259915,0.210982,0.262775,0.462929,0.7501,0.226622,0.450069,0.584833,0.338593,0.78386,0.331693,0.86343,0.77071,0.996465,0.363269,0.678093,0.875384,0.263187,0.166721,0.607765,0.432267,0.227667,0.702065,0.711583,0.335447,0.717131,0.500768,0.615676,0.749695,0.390649,0.531168,0.325,0.145769,0.00908577,0.941828,0.446947,0.147239,0.435118,0.0398448,0.523319,0.388548,0.50517,0.778813,0.901479,0.249347,0.558709,0.562754,0.406782,0.658155,0.46613,0.898413,0.0848634,0.367175,0.862673,0.238417,0.270857,0.683078,0.111385,0.757643,0.816899,0.132888,0.88032,0.455853,0.821465,0.718432,0.188779,0.884881,0.618836,0.529597,0.0548236,0.867643,0.478772,0.860558,0.700509,0.400247,0.6988,0.455172,0.280538,0.307577,0.637996,0.561576,0.643811,0.796984,0.67358,0.642789,0.783989,0.556538,0.572929,0.257806,0.0245594,0.628658,0.0570261,0.335139,0.643229,0.220354,0.110542,0.846496,0.765166,0.619336,0.579342,0.149012,0.0460148,0.381912,0.563263,0.853499,0.129123,0.54217,0.737264,0.164976,0.986992,0.899911,0.953851,0.319009,0.64546,0.244206,0.0869747,0.302868,0.0932617,0.185323,0.851256,0.474046,0.891272,0.629226,0.00720698,0.153111,0.169824,0.864732,0.0198728,0.16023,0.462768,0.601043,0.773388,0.971454,0.369927,0.850769,0.704016,0.698246,0.677834,0.713608,0.130009,0.84466,0.493197,0.397573,0.76825,0.39597,0.0829414,0.108156,0.454685,0.0766606,0.333964,0.657526,0.82218,0.136679,0.123998,0.266312,0.0994097,0.689121,0.727784,0.213702,0.494641,0.697654,0.687887,0.972672,0.209236,0.759158,0.608616,0.765811,0.374954,0.423485,0.743015,0.657612,0.914735,0.145711,0.716647,0.577904,0.102287,0.23228,0.917607,0.327569,0.817384,0.860989,0.990094,0.055724,0.725034,0.250664,0.613664,0.341123,0.232714,0.83642,0.818917,0.57285,0.100712,0.7833,0.214448,0.372541,0.630112,0.758418,0.0635647,0.590997,0.564778,0.808319,0.153943,0.357007,0.0741119,0.107343,0.282027,0.0680318,0.820061,0.0298803,0.450371,0.105417,0.806621,0.217778,0.9912,0.278417,0.112174,0.877564,0.98793,0.0442522,0.969546,0.181228,0.620304,0.270861,0.76746,0.095414,0.69629,0.333307,0.225918,0.333467,0.609382,0.0166849,0.205693,0.432787,0.0531443,0.720278,0.98103,0.145748,0.860421,0.991548,0.813857,0.889831,0.638935,0.681369,0.269414,0.563164,0.674215,0.5758,0.827517,0.788171,0.0758564,0.440113,0.189868,0.590719,0.444303,0.951857,0.381246,0.65819,0.859839,0.84522,0.750316,0.0983094,0.422109,0.00452685,0.882429,0.0795013,0.186388,0.820964,0.292502,0.908579,0.540846,0.255087,0.650652,0.419707,0.257472,0.151344,0.602884,0.799062,0.806594,0.662141,0.662142,0.891074,0.846246,0.146163,0.415357,0.0854735,0.264171,0.472575,0.186643,0.1298,0.706268,0.790501,0.60943,0.853297,0.657004,0.926625,0.100299,0.790662,0.842925,0.652033,0.528445,0.0128363,0.572794,0.533152,0.200019,0.133832,0.95401,0.34229,0.0870011,0.737269,0.724296,0.201062,0.502749,0.0416301,0.199958,0.159126,0.067881,0.550258,0.34252,0.869221,0.671811,0.212592,0.239892,0.647574,0.0437152,0.606547,0.169953,0.968959,0.987255,0.149202,0.957241,0.842449,0.820047,0.772175,0.0661446,0.69392,0.689188,0.650248,0.0128448,0.893403,0.547747,0.970138,0.818909,0.991854,0.572739,0.059137,0.864723,0.853135,0.706381,0.747643,0.235577,0.830836,0.939623,0.761656,0.350025,0.28177,0.860767,0.0725057,0.747003,0.826677,0.586754,0.864061,0.879781,0.032697,0.0589768,0.754539,0.521259,0.515798,0.618572,0.560285,0.425507,0.881397,0.500696,0.399705,0.580798,0.611921,0.188103,0.48364,0.208426,0.799778,0.520892,0.895324,0.674733,0.818172,0.535918,0.0984026,0.298285,0.374765,0.00986612,0.903093,0.34723,0.794507,0.141652,0.521727,0.423022,0.547103,0.958251,0.496869,0.358856,0.990753,0.255761,0.752295,0.134555,0.0751938,0.412364,0.783524,0.532211,0.228743,0.861908,0.165673,0.48212,0.913671,0.695923,0.0816318,0.740892,0.556474,0.652621,0.0467321,0.120259,0.620917,0.74116,0.51544,0.629092,0.474925,0.975808,0.539949,0.00150824,0.497829,0.97715,0.914609,0.580757,0.230093,0.0998397,0.782043,0.975795,0.674127,0.601194,0.880422,0.16914,0.625298,0.359679,0.76587,0.211311,0.787934,0.193945,0.894648,0.344708,0.844357,0.193136,0.252816,0.585441,0.151285,0.0576966,0.579208,0.9985,0.619357,0.680728,0.262626,0.740796,0.684511,0.170559,0.409824,0.776004,0.571016,0.537176,0.559469,0.88805,0.753452,0.137902,0.435084,0.773364,0.435906,0.0167462,0.564472,0.0737517,0.200074,0.30521,0.500516,0.965777,0.607356,0.0698666,0.29407,0.993002,0.822351,0.604674,0.968283,0.803186,0.995928,0.0819921,0.0739434,0.921657,0.416951,0.86281,0.736108,0.836325,0.423846,0.595394,0.177003,0.739655,0.641918,0.469984,0.213008,0.72347,0.991135,0.0373492,0.806594,0.95796,0.204207,0.178409,0.397364,0.827712,0.747253,0.0672621,0.00621235,0.182258,0.572034,0.189159,0.639539,0.258909,0.6896,0.317304,0.12411,0.102038,0.513652,0.519786,0.330538,0.180115,0.453274,0.0163526,0.909904,0.875083,0.60486,0.453636,0.8863,0.342554,0.215289,0.920842,0.907329,0.170379,0.41382,0.105032,0.863974,0.792713,0.0525153,0.690792,0.0253208,0.0844294,0.27654,0.462986,0.459973,0.664158,0.484089,0.734607,0.805577,0.445837,0.0390981,0.20078,0.651223,0.739934,0.830328,0.0639809,0.194582,0.451037,0.171478,0.0797331,0.829035,0.191209,0.614869,0.367505,0.0887388,0.12247,0.414997,0.604192,0.595498,0.194418,0.399574,0.0824477,0.0967516,0.595361,0.736318,0.233381,0.36768,0.968279,0.891554,0.356034,0.909085,0.537316,0.334867,0.164141,0.602236,0.154335,0.326334,0.282016,0.956672,0.749488,0.543586,0.887502,0.760338,0.497493,0.152951,0.13208,0.218092,0.840727,0.303797,0.643793,0.921728,0.994325,0.871481,0.978658,0.991416,0.583906,0.243298,0.691746,0.542733,0.839742,0.0205797,0.41866,0.518165,0.514759,0.0428137,0.77361,0.370347,0.558146,0.931316,0.143293,0.252905,0.968661,0.552798,0.0174033,0.569158,0.274482,0.884277,0.518577,0.313759,0.349725,0.431413,0.217231,0.520021,0.0259943,0.887553,0.443409,0.903198,0.480473,0.87964,0.373151,0.572678,0.980353,0.895082,0.224926,0.252642,0.630054,0.865564,0.0397381,0.93774,0.203624,0.6451,0.752,0.328352,0.465695,0.550192,0.72285,0.684115,0.753522,0.653234,0.0102737,0.0217369,0.584928,0.538728,|0.30235,0.102496,0.661584,0.838424,0.502222,0.120526,0.975065,0.368984,0.976759,0.827278,0.20017,0.507902,0.319273,0.848983,0.157298,0.176789,0.864498,0.789392,0.594012,0.969254,0.592805,0.930714,0.683881,0.703099,0.725975,0.408099,0.00789911,0.512537,0.746983,0.840079,0.204219,0.162459,0.993067,0.928968,0.505332,0.330942,0.90664,0.70616,0.80488,0.635823,0.25218,0.610374,0.833526,0.722664,0.024836,0.554125,0.571159,0.561958,0.053746,0.972323,0.746117,0.637398,0.22821,0.0205128,0.404687,0.518906,0.67625,0.598236,0.0281191,0.522691,0.373696,0.643274,0.816246,0.540855,0.470637,0.119553,0.270406,0.211659,0.373324,0.51573,0.611141,0.584371,0.999312,0.23588,0.108431,0.425815,0.901188,0.591273,0.885488,0.103927,0.186751,0.891324,0.186796,0.23394,0.963773,0.131635,0.195016,0.799613,0.378395,0.631771,0.112847,0.72395,0.695253,0.514072,0.96306,0.266886,0.368732,0.228762,0.276697,0.254228,0.614911,0.807594,0.958976,0.965127,0.271081,0.912286,0.780354,0.341414,0.122005,0.922714,0.586738,0.375038,0.102941,0.232832,0.116805,0.399821,0.356603,0.178498,0.687123,0.582802,0.585502,0.442175,0.643164,0.181892,0.756459,0.170879,0.0886509,0.713896,0.0374048,0.182955,0.322492,0.2197,0.0429734,0.0529299,0.391731,0.580486,0.270212,0.392973,0.0389091,0.403491,0.696346,0.715085,0.0324936,0.859884,0.168667,0.55819,0.804538,0.721833,0.961507,0.342235,0.180916,0.485278,0.0240346,0.603091,0.0381549,0.521695,0.607401,0.694067,0.539357,0.224132,0.345902,0.23003,0.426151,0.190596,0.260818,0.0412536,0.800887,0.00881445,0.815427,0.00210667,0.741822,0.678525,0.499957,0.779185,0.272425,0.113578,0.609357,0.58091,0.783204,0.930364,0.499625,0.476149,0.609923,0.933696,0.174492,0.609591,0.630949,0.964254,0.128851,0.0349767,0.340169,0.927372,0.568142,0.776853,0.84664,0.28483,0.662121,0.929011,0.302554,0.872399,0.531271,0.636791,0.877793,0.581631,0.824991,0.61684,0.947621,0.587338,0.287285,0.275765,0.188521,0.988603,0.739535,0.833901,0.562244,0.64479,0.15979,0.0684106,0.0609773,0.688335,0.340166,0.669483,0.542177,0.969076,0.565945,0.126408,0.20878,0.794452,0.344993,0.457026,0.507212,0.520458,0.280283,0.80917,0.349415,0.223777,0.00071919,0.128003,0.413201,0.793162,0.553462,0.198444,0.87263,0.733039,0.899182,0.78579,0.0415996,0.167036,0.176726,0.00623327,0.396279,0.540858,0.0292544,0.416429,0.329228,0.407743,0.352043,0.10371,0.305205,0.602918,0.898592,0.615775,0.229903,0.769267,0.736471,0.639217,0.8765,0.820607,0.615174,0.20495,0.495454,0.426428,0.229666,0.117977,0.204759,0.954263,0.378078,0.0889047,0.0759323,0.55509,0.263312,0.903795,0.577408,0.158974,0.0575255,0.808002,0.950698,0.101174,0.862425,0.195213,0.0225751,0.508704,0.504883,0.846608,0.575119,0.885729,0.340827,0.569656,0.660999,0.975797,0.522749,0.46406,0.360159,0.143314,0.544959,0.679575,0.967128,0.507787,0.928953,0.151834,0.296256,0.938555,0.54068,0.726067,0.745019,0.499079,0.039506,0.0335809,0.968956,0.106442,0.778838,0.310938,0.994905,0.33669,0.213682,0.857337,0.696005,0.477871,0.0205017,0.0135383,0.680459,0.888611,0.35746,0.682009,0.642039,0.876651,0.583084,0.584246,0.0089556,0.0980865,0.210663,0.461224,0.218711,0.174065,0.137605,0.280535,0.466013,0.831794,0.934763,0.685241,0.697971,0.431507,0.658597,0.575833,0.376551,0.721857,0.794456,0.659289,0.82151,0.631306,0.796024,0.270101,0.607446,0.104915,0.650823,0.860201,0.878772,0.661397,0.075164,0.125499,0.857397,0.687326,0.598071,0.247671,0.802657,0.934165,0.968229,0.328153,0.322782,0.294746,0.378476,0.854616,0.252964,0.446699,0.854566,0.691426,0.860408,0.741131,0.0285946,0.316558,0.936814,0.391796,0.619218,0.996124,0.596595,0.490527,0.12842,0.649276,0.590554,0.235463,0.560772,0.659108,0.389249,0.0497342,0.0773757,0.722454,0.645522,0.840617,0.818625,0.829175,0.335307,0.488922,0.973679,0.0250684,0.170509,0.634409,0.990537,0.348034,0.851106,0.383929,0.228752,0.648296,0.682822,0.55512,0.147013,0.137314,0.357073,0.364192,0.377163,0.6835,0.584956,0.605791,0.229702,0.325275,0.745574,0.553746,0.324282,0.381981,0.158139,0.538331,0.0818761,0.83846,0.000494182,0.184892,0.33211,0.150886,0.186812,0.181697,0.993495,0.217158,0.139895,0.748635,0.211418,0.425902,0.74773,0.972297,0.290837,0.225589,0.25684,0.167585,0.170119,0.710199,0.745168,0.851817,0.602314,0.126059,0.916087,0.43311,0.859318,0.872885,0.808594,0.396935,0.444452,0.0365031,0.545739,0.139334,0.554995,0.812873,0.842399,0.472256,0.363141,0.555648,0.41751,0.985027,0.0992656,0.823712,0.198165,0.644051,0.434188,0.626729,0.541375,0.736736,0.779813,0.626028,0.6332,0.348054,0.392912,0.135446,0.0976757,0.54559,0.205139,0.0596564,0.975327,0.735131,0.233607,0.384768,0.198339,0.214764,0.988351,0.689544,0.732453,0.573732,0.19904,0.0617686,0.413066,0.625296,0.979319,0.529492,0.360991,0.508297,0.150831,0.948252,0.432716,0.0823377,0.215616,0.91648,0.785032,0.688138,0.986887,0.312904,0.393141,0.732209,0.787384,0.638429,0.334747,0.46378,0.243017,0.106673,0.187058,0.694812,0.216027,0.353992,0.286415,0.562751,0.861479,0.870576,0.016168,0.778198,0.196724,0.781918,0.860646,0.0471544,0.888444,0.610404,0.97958,0.133089,0.520938,0.260017,0.642934,0.359096,0.119855,0.788727,0.446455,0.762282,0.0296985,0.140988,0.387436,0.119704,0.49125,0.952814,0.365014,0.847096,0.0906315,0.141285,0.509036,0.788442,0.218634,0.329223,0.11495,0.173148,0.227946,0.258826,0.362028,0.691789,0.968289,0.264088,0.856169,0.573778,0.150358,0.728556,0.405779,0.492792,0.734652,0.180355,0.953393,0.277331,0.0238824,0.105759,0.0701061,0.834565,0.841449,0.818886,0.73638,0.199325,0.42416,0.476791,0.919045,0.563996,0.548851,0.205085,0.889105,0.436192,0.381724,0.771966,0.466226,0.187934,0.872778,0.659541,0.0576885,0.977977,0.447081,0.781169,0.479083,0.669247,0.329995,0.248258,0.734876,0.361974,0.86979,0.559,0.422789,0.165402,0.0638663,0.851049,0.911398,0.47559,0.161553,0.526836,0.534105,0.408771,0.460898,0.517404,0.249094,0.522859,0.0122178,0.364273,0.71529,0.315016,0.683397,0.629637,0.0856436,0.376704,0.730814,0.0668358,0.0333033,0.156391,0.498216,0.111621,0.645862,0.594966,0.142854,0.333102,0.21971,0.724405,0.0549986,0.722636,0.0445136,0.276092,0.487506,0.117644,0.122995,0.190431,0.0950368,0.968683,0.992898,0.296815,0.307796,0.547035,0.146913,0.0506822,0.120348,0.510627,0.0235442,0.261614,0.932365,0.803564,0.0941818,0.942944,0.0604615,0.666822,0.911532,0.739622,0.28922,0.315073,0.324732,0.736435,0.919876,0.132304,0.919644,0.134727,0.707501,0.972298,0.111892,0.704782,0.119062,0.489715,0.685283,0.077768,0.277563,0.470427,0.244838,0.14489,0.88251,0.669831,0.437329,0.145455,0.589122,0.483797,0.697924,0.75658,0.620207,0.439775,0.756596,0.69071,0.368608,0.715767,0.54731,0.987725,0.879628,0.975593,0.109561,0.469925,0.17922,0.00119358,0.948934,0.797548,0.921006,0.307154,0.963927,0.770174,0.63323,0.938735,0.971487,0.546241,0.144132,0.370292,0.168733,0.394916,0.963001,0.485948,0.493413,0.47404,0.268926,0.118398,0.996191,0.873569,0.73013,0.974475,0.128497,0.922307,0.020037,0.917528,0.206734,0.357352,0.0492814,0.452611,0.311174,0.916272,0.494514,0.0316584,0.154204,0.109102,0.0213348,0.54317,0.173034,0.692466,0.104196,0.537611,0.496351,0.841873,0.986137,0.784494,0.94036,0.0375149,0.297221,0.425423,0.35966,0.642995,0.00304401,0.393071,0.74203,0.528504,0.154926,0.822877,0.455306,0.110808,0.790028,0.70638,0.705818,0.206008,0.607468,0.68211,0.612969,0.732331,0.0408282,0.281197,0.667024,0.746515,0.796258,0.795214,0.197937,0.733936,0.198022,0.00896239,0.395626,0.653419,0.673411,0.220318,0.282808,0.930854,0.0846177,0.468159,0.792423,0.729976,0.115809,0.686721,0.286618,0.587744,0.169054,0.292067,0.501365,0.214351,0.801211,0.387237,0.269308,0.398225,0.896164,0.0638972,0.473876,0.232887,0.455862,0.686617,0.920206,0.92976,0.0813581,0.849452,0.542388,0.998459,0.0813349,0.256277,0.557276,0.018406,0.708251,0.735285,0.376676,0.104882,0.891582,0.438006,0.0997185,0.914196,0.496248,0.835883,0.29815,0.640255,0.76646,0.34307,0.521951,0.663241,0.709042,0.329783,0.104894,0.490247,0.437352,0.0923735,0.749575,0.437932,0.420974,0.403159,0.197277,0.234912,0.854349,0.573506,0.744335,0.635382,0.320505,0.107367,0.825079,0.423912,0.728803,0.22079,0.520195,0.992451,0.973989,0.778264,0.97576,0.45922,0.345161,0.692259,0.894827,0.276283,0.448719,0.812204,0.257752,0.245882,0.0505783,0.174224,0.477875,0.98789,0.0640752,0.888135,0.0997676,0.377666,0.696342,0.400855,0.138341,0.50939,0.198172,0.0242218,0.128876,0.858582,0.885661,0.26388,0.936687,0.532184,0.239531,0.693294,0.00842029,0.630365,0.300831,0.205825,0.555909,0.713329,0.0806224,0.471641,0.547953,0.111693,0.629559,0.58205,0.723815,0.0830529,0.528159,0.590928,0.928952,0.653205,0.83759,0.654653,0.745803,0.787807,0.784698,0.815293,0.322841,0.347517,0.836587,0.585539,0.117631,0.896214,0.617221,0.196108,0.504427,0.693461,0.940039,0.743233,0.343133,0.876381,0.355047,0.175676,0.0803319,0.14307,0.772873,0.717071,0.878689,0.241886,0.437839,0.101335,0.956393,0.261258,0.124925,0.344065,0.435142,0.432395,0.318991,0.76442,0.0832534,0.264684,0.722271,0.00566649,0.236072,0.102657,0.693695,0.0881806,0.974491,0.376033,0.776917,0.938187,0.504767,0.426917,0.0863403,0.553632,0.519446,0.358729,|0.0807901,0.324816,0.874772,0.983098,0.72092,0.658078,0.306567,0.11116,0.483802,0.882957,0.299929,0.888117,0.951198,0.862413,0.190957,0.144714,0.310929,0.41956,0.5711,0.247523,0.785663,0.923474,0.305661,0.164425,0.0488946,0.302317,0.149067,0.436872,0.904411,0.242004,0.542575,0.258138,0.7,0.759315,0.693638,0.815847,0.769517,0.604869,0.302211,0.142843,0.483366,0.446603,0.725475,0.278626,0.0564631,0.402252,0.395478,0.268809,0.820722,0.803946,0.395194,0.972508,0.978502,0.624634,0.724445,0.282829,0.251164,0.954295,0.379071,0.779392,0.117659,0.362751,0.908885,0.924019,0.22384,0.5902,0.859579,0.261793,0.827781,0.0464136,0.401156,0.659282,0.0187806,0.747932,0.757956,0.897096,0.371309,0.743305,0.0148207,0.925216,0.0149519,0.379413,0.919229,0.242616,0.114246,0.031821,0.297423,0.688851,0.327104,0.145024,0.52728,0.280218,0.718322,0.224856,0.941418,0.103067,0.961466,0.713461,0.0151117,0.908094,0.0840598,0.381426,0.897593,0.477167,0.987703,0.0349669,0.952127,0.998414,0.475843,0.17144,0.821267,0.681476,0.63437,0.0451863,0.36572,0.806587,0.434002,0.308728,0.60512,0.774089,0.916495,0.367137,0.148792,0.0794148,0.670346,0.460058,0.48781,0.131903,0.368266,0.430374,0.255504,0.336227,0.0775561,0.936773,0.0946593,0.046865,0.230958,0.713311,0.370854,0.936026,0.366294,0.771535,0.428898,0.291178,0.0871281,0.184105,0.0466223,0.966871,0.757561,0.270683,0.897013,0.460544,0.511171,0.5658,0.904474,0.714052,0.455135,0.589556,0.308452,0.306569,0.239954,0.12214,0.464407,0.563747,0.926999,0.901506,0.691175,0.556743,0.501906,0.521011,0.220522,0.489231,0.80477,0.295358,0.501147,0.18239,0.451225,0.951768,0.500357,0.649719,0.462402,0.412982,0.626528,0.406774,0.444737,0.585949,0.559726,0.0552509,0.292812,0.750543,0.803434,0.641901,0.845024,0.509704,0.0287221,0.261994,0.45858,0.703367,0.639116,0.514706,0.676675,0.62341,0.0782229,0.120853,0.0391201,0.585298,0.757505,0.948682,0.877301,0.908796,0.960864,0.590877,0.00681758,0.254791,0.608585,0.670612,0.5915,0.643538,0.844963,0.635584,0.984129,0.739821,0.302448,0.844473,0.307217,0.0202613,0.470904,0.886916,0.822038,0.63922,0.309609,0.58141,0.144342,0.668521,0.604555,0.849896,0.590209,0.866834,0.754781,0.133738,0.848418,0.493029,0.868626,0.00944805,0.925726,0.631008,0.691497,0.631679,0.259346,0.282821,0.582589,0.53954,0.705123,0.0265727,0.774226,0.0186477,0.177302,0.86663,0.00215101,0.880674,0.0653014,0.911796,0.957604,0.515127,0.358949,0.719938,0.411698,0.00922126,0.360027,0.514931,0.941608,0.271106,0.0341082,0.198901,0.952972,0.111436,0.944063,0.575219,0.94893,0.865407,0.782948,0.166477,0.893107,0.821991,0.327873,0.990635,0.373875,0.6123,0.361062,0.850367,0.378045,0.783398,0.646329,0.109872,0.585771,0.220718,0.233093,0.323123,0.325152,0.299144,0.178135,0.640715,0.0797991,0.990036,0.95399,0.0135341,0.386975,0.503909,0.825497,0.513395,0.95884,0.860143,0.930474,0.869947,0.128155,0.190615,0.306756,0.0741605,0.140901,0.894101,0.713663,0.454169,0.791155,0.815682,0.576165,0.0181187,0.172832,0.79142,0.836586,0.208714,0.0750163,0.928751,0.290163,0.136179,0.247487,0.815402,0.42153,0.378056,0.723502,0.165563,0.384036,0.309492,0.150311,0.67213,0.672373,0.00686449,0.816412,0.00368446,0.941583,0.459343,0.785591,0.437151,0.762611,0.0600018,0.625338,0.621567,0.58325,0.487888,0.504921,0.220946,0.87337,0.587983,0.372039,0.785625,0.747924,0.190846,0.93962,0.74241,0.840176,0.906979,0.826996,0.191631,0.526642,0.309173,0.563717,0.872174,0.357147,0.189596,0.198629,0.148881,0.58787,0.752533,0.126217,0.419507,0.269668,0.970788,0.999054,0.063466,0.865326,0.934745,0.606312,0.7793,0.398107,0.858083,0.791803,0.396468,0.645287,0.0374535,0.846064,0.921051,0.306085,0.603324,0.446809,0.766897,0.140828,0.424523,0.3794,0.653208,0.161542,0.474364,0.244829,0.945311,0.439562,0.142701,0.657005,0.989104,0.312826,0.0789534,0.909588,0.821837,0.892063,0.997475,0.996931,0.393671,0.9028,0.916221,0.865736,0.703833,0.698349,0.181155,0.474239,0.484901,0.743319,0.149622,0.0471754,0.230921,0.383007,0.181277,0.944314,0.841822,0.303729,0.579232,0.928593,0.609006,0.51912,0.940954,0.806828,0.819875,0.724898,0.455976,0.663175,0.374781,0.33556,0.554193,0.609519,0.772905,0.668459,0.209407,0.899194,0.00968152,0.585237,0.704736,0.529407,0.907897,0.154164,0.00185484,0.781683,0.0878596,0.351937,0.809419,0.0095976,0.619341,0.273089,0.22047,0.568396,0.0116889,0.370337,0.660412,0.561652,0.00999296,0.692314,0.839917,0.170711,0.428075,0.0955615,0.563391,0.252518,0.94363,0.200667,0.6346,0.179901,0.803668,0.64482,0.620279,0.821959,0.983282,0.891008,0.219416,0.90159,0.6747,0.0595998,0.415555,0.00509351,0.131862,0.660448,0.0392747,0.640157,0.157759,0.69897,0.248356,0.747617,0.0331887,0.787263,0.920964,0.000333428,0.617266,0.0368582,0.292815,0.109386,0.476266,0.237951,0.0749694,0.31636,0.288547,0.867105,0.0264517,0.702745,0.285273,0.830415,0.655738,0.829973,0.531529,0.985431,0.125515,0.532026,0.910666,0.65177,0.191289,0.555238,0.950813,0.56432,0.942612,0.29807,0.73653,0.329255,0.691108,0.861448,0.89987,0.786627,0.497343,0.776833,0.962962,0.389081,0.215878,0.0781536,0.361092,0.377203,0.983916,0.725341,0.706631,0.756969,0.115227,0.309226,0.929898,0.304125,0.393632,0.441639,0.580409,0.220838,0.190159,0.177594,0.307206,0.373586,0.767526,0.0542735,0.49529,0.156541,0.0603207,0.534464,0.979367,0.787376,0.599546,0.513787,0.0462481,0.956982,0.225511,0.215795,0.149605,0.314997,0.260672,0.73307,0.362582,0.927169,0.600357,0.579028,0.628034,0.537506,0.653513,0.730249,0.297799,0.384787,0.753595,0.857134,0.49684,0.646127,0.947497,0.0457684,0.43404,0.206572,0.375871,0.60607,0.0650554,0.801503,0.245474,0.0543074,0.590031,0.986705,0.240007,0.755857,0.579219,0.179117,0.377909,0.0369108,0.234384,0.784718,0.321539,0.508575,0.102573,0.646245,0.363985,0.520541,0.666521,0.624574,0.463404,0.904007,0.153019,0.617487,0.887061,0.0598491,0.634188,0.485951,0.646427,0.0396572,0.937546,0.0529719,0.00239432,0.61515,0.228997,0.44704,0.992701,0.307034,0.229222,0.584789,0.374123,0.851638,0.392641,0.300013,0.0224783,0.933804,0.805724,0.423059,0.677448,0.0606164,0.93949,0.225695,0.030875,0.383248,0.343774,0.38814,0.273406,0.460672,0.150869,0.115345,0.872978,0.128802,0.839321,0.849421,0.275908,0.69781,0.190511,0.572755,0.825797,0.514656,0.818642,0.918594,0.263048,0.996765,0.858126,0.0784175,0.846078,0.509864,0.535735,0.197112,0.888425,0.550964,0.629157,0.269335,0.443985,0.870037,0.206184,0.731767,0.376728,0.532029,0.757147,0.829665,0.601658,0.764501,0.614857,0.741109,0.197031,0.544845,0.823571,0.266487,0.0948392,0.152562,0.237602,0.986038,0.135288,0.331856,0.674136,0.184195,0.785405,0.286492,0.4231,0.835947,0.20459,0.439395,0.373879,0.286652,0.86401,0.374919,0.0858886,0.0861071,0.812714,0.217081,0.968967,0.347313,0.720532,0.827465,0.724565,0.719834,0.3583,0.505077,0.42188,0.825041,0.343249,0.639694,0.183134,0.451615,0.981706,0.254739,0.94186,0.435263,0.574502,0.971659,0.112885,0.598937,0.858337,0.76441,0.165342,0.760422,0.388111,0.145712,0.355827,0.259174,0.794946,0.509444,0.892957,0.160245,0.658111,0.926765,0.552664,0.232007,0.575284,0.937461,0.310461,0.734447,0.655629,0.440302,0.239864,0.227817,0.946388,0.281796,0.0434579,0.200474,0.625992,0.93526,0.367832,0.333921,0.132821,0.171938,0.436278,0.151444,0.0389194,0.182198,0.212761,0.896069,0.627146,0.407895,0.221451,0.197796,0.0282065,0.811938,0.660444,0.351674,0.678092,0.59929,0.402457,0.791344,0.34256,0.927763,0.141716,0.0376702,0.822638,0.537005,0.638758,0.187532,0.0113934,0.525738,0.999123,0.487276,0.734266,0.943197,0.195741,0.0225173,0.76618,0.867465,0.411751,0.216077,0.822322,0.951639,0.760744,0.0501638,0.290202,0.144994,0.684609,0.850592,0.86792,0.606981,0.0384663,0.748512,0.485035,0.902808,0.780278,0.636884,0.945259,0.862692,0.0640863,0.305566,0.182014,0.122791,0.934874,0.440232,0.306071,0.255739,0.534649,0.99506,0.294346,0.820507,0.627704,0.538809,0.467324,0.970883,0.194436,0.254506,0.815504,0.635438,0.457758,0.13568,0.434088,0.869239,0.0740737,0.21713,0.51929,0.79404,0.194705,0.987699,0.321706,0.745774,0.73118,0.771881,0.766404,0.65263,0.534885,0.168404,0.48245,0.0674831,0.229571,0.562165,0.548073,0.718139,0.875031,0.260085,0.385987,0.989302,0.142615,0.718723,0.395372,0.882917,0.53355,0.325518,0.966044,0.433523,0.262322,0.387992,0.250703,0.282692,0.0514483,0.106534,0.769044,0.309176,0.310933,0.788679,0.854662,0.336849,0.23994,0.609617,0.378046,0.887231,0.711828,0.51585,0.26712,0.546154,0.439474,0.511581,0.729912,0.0589352,0.528096,0.852246,0.262424,0.122608,0.341646,0.389463,0.708158,0.442687,0.0392315,0.221307,0.892986,0.909284,0.62944,0.432482,0.553076,0.195171,0.972866,0.116555,0.838423,0.805142,0.594036,0.915222,0.311588,0.128895,0.285334,0.370094,0.392403,0.956928,0.764095,0.554265,0.46309,0.687514,0.667398,0.722582,0.128523,0.768232,0.805296,0.642181,0.1934,0.0497962,0.899995,0.108609,0.548204,0.674058,0.457704,0.198592,0.730863,0.44829,0.42547,0.843011,0.249557,0.373512,0.530427,0.459993,0.861635,0.323821,0.818513,0.267405,0.12331,0.685336,0.437499,0.168818,0.391329,0.834935,0.55857,0.694087,0.10946,0.884408,0.51424,0.184891,0.899811,0.618269,0.249502,|0.721447,0.400744,0.161999,0.864217,0.350519,0.54086,0.817771,0.910676,0.519971,0.676162,0.540926,0.185299,0.276501,0.714058,0.0274211,0.875203,0.885693,0.419988,0.183525,0.825011,0.714381,0.884558,0.517687,0.853458,0.902147,0.751198,0.302881,0.769338,0.144285,0.0948192,0.655919,0.644642,0.83747,0.945236,0.232508,0.731626,0.0997462,0.971422,0.31152,0.81179,0.756002,0.155285,0.111533,0.840353,0.43513,0.0198274,0.344657,0.33625,0.243179,0.756823,0.534258,0.953931,0.7422,0.929821,0.302387,0.801961,0.446032,0.138809,0.249697,0.65658,0.65729,0.181725,0.757795,0.683014,0.439049,0.0409661,0.234404,0.915261,0.189922,0.700816,0.0775934,0.488906,0.696095,0.295502,0.926934,0.926773,0.791765,0.136512,0.866556,0.542484,0.0908931,0.637944,0.795691,0.479361,0.824982,0.374752,0.496068,0.368542,0.574818,0.417672,0.563121,0.529335,0.500084,0.843318,0.810798,0.239347,0.225359,0.759345,0.885646,0.0970849,0.932433,0.30749,0.289273,0.443902,0.833273,0.258616,0.962173,0.510679,0.275614,0.662371,0.139692,0.898469,0.777756,0.30037,0.557604,0.928203,0.0160806,0.308067,0.385475,0.771556,0.146372,0.151582,0.0254624,0.510255,0.545059,0.148212,0.534199,0.0668417,0.174751,0.344966,0.82838,0.866124,0.978163,0.000551283,0.999534,0.425491,0.786061,0.0875921,0.995728,0.691916,0.111358,0.276859,0.762106,0.214816,0.296048,0.276715,0.659024,0.190679,0.845098,0.671683,0.064074,0.279316,0.952861,0.875311,0.783845,0.404687,0.454236,0.859663,0.611577,0.830767,0.565925,0.995709,0.38013,0.968032,0.319816,0.757223,0.608173,0.134958,0.215997,0.841245,0.0415316,0.64413,0.75503,0.985064,0.498222,0.509612,0.771853,0.613247,0.897648,0.190505,0.678904,0.751942,0.840801,0.574353,0.104668,0.0749813,0.271359,0.259915,0.599586,0.626669,0.8957,0.968793,0.893989,0.636205,0.460212,0.822999,0.646482,0.652931,0.612811,0.710561,0.479363,0.403091,0.320731,0.129229,0.79447,0.611007,0.404996,0.679173,0.793796,0.653635,0.478806,0.719742,0.937855,0.754176,0.675857,0.329753,0.543043,0.0976325,0.799513,0.402484,0.918945,0.106624,0.319172,0.108624,0.220765,0.0353645,0.699589,0.00188386,0.399876,0.470746,0.670097,0.334204,0.0151863,0.0443984,0.471545,0.18704,0.00690019,0.395724,0.800632,0.0227948,0.431006,0.108544,0.504663,0.205135,0.706016,0.899436,0.36066,0.831208,0.7584,0.499014,0.76741,0.272197,0.594735,0.46967,0.0259473,0.974281,0.100848,0.885811,0.305338,0.474503,0.387706,0.751844,0.792326,0.563488,0.923518,0.167154,0.453636,0.480783,0.0776844,0.754267,0.0389776,0.925565,0.788878,0.755458,0.698564,0.988732,0.00434548,0.856952,0.460847,0.817167,0.0357004,0.271689,0.285444,0.0333269,0.776856,0.874215,0.0327378,0.42874,0.901428,0.673206,0.287067,0.609005,0.913745,0.276351,0.856906,0.998771,0.055761,0.321329,0.952999,0.336949,0.778565,0.469471,0.881417,0.0685791,0.558046,0.855744,0.736619,0.923418,0.338846,0.719287,0.563761,0.814514,0.540433,0.267409,0.342488,0.19743,0.0522687,0.409569,0.203922,0.392952,0.0139741,0.8185,0.227233,0.187333,0.815341,0.0295416,0.897552,0.125159,0.922962,0.986494,0.130279,0.274626,0.697068,0.0181318,0.849576,0.848056,0.403945,0.633974,0.513901,0.183809,0.213689,0.774732,0.259392,0.617643,0.350748,0.512588,0.228087,0.73973,0.275273,0.640897,0.24765,0.873517,0.813856,0.572569,0.777646,0.254681,0.68246,0.751817,0.870277,0.479605,0.973619,0.706249,0.473479,0.829287,0.197775,0.290034,0.0531093,0.427809,0.164803,0.278552,0.472863,0.646739,0.00479609,0.079451,0.912243,0.47804,0.0853509,0.77107,0.554163,0.707889,0.824578,0.599416,0.690451,0.985466,0.195769,0.882229,0.329696,0.467295,0.976857,0.841175,0.176734,0.642497,0.173728,0.206745,0.163363,0.370238,0.297716,0.548896,0.498576,0.53888,0.865486,0.751082,0.815036,0.863151,0.815635,0.705323,0.631148,0.201297,0.349587,0.663643,0.106948,0.673755,0.93018,0.431484,0.969833,0.0416966,0.387616,0.614796,0.193638,0.114327,0.570216,0.383348,0.393699,0.368869,0.067997,0.0729862,0.297736,0.160712,0.637137,0.79146,0.8416,0.851213,0.0216138,0.452707,0.58655,0.988653,0.358811,0.510438,0.0471488,0.756739,0.881227,0.767242,0.508007,0.0106491,0.137537,0.274307,0.703729,0.599049,0.0825939,0.0680379,0.150378,0.489333,0.644872,0.718868,0.301425,0.130577,0.565298,0.679989,0.883579,0.539385,0.667872,0.0970282,0.762758,0.974403,0.615749,0.84634,0.0880085,0.158239,0.419633,0.340992,0.718894,0.567755,0.0919221,0.195473,0.583042,0.283029,0.280693,0.910248,0.840927,0.459493,0.801297,0.874961,0.958261,0.00691378,0.801236,0.732309,0.0907334,0.24294,0.91494,0.700043,0.366395,0.774519,0.236317,0.255662,0.081054,0.694071,0.670055,0.633697,0.874952,0.853176,0.237401,0.440372,0.848392,0.445823,0.261096,0.335573,0.969168,0.107216,0.956425,0.907318,0.737864,0.451262,0.407616,0.754317,0.16366,0.0263732,0.324895,0.0688641,0.209432,0.0524877,0.586167,0.421958,0.634768,0.30213,0.591633,0.499496,0.653337,0.236181,0.174212,0.482541,0.148106,0.0696606,0.988889,0.900782,0.25509,0.742507,0.0263653,0.824166,0.344455,0.118553,0.787832,0.923108,0.150219,0.559253,0.738696,0.992539,0.997434,0.937985,0.684932,0.610453,0.551554,0.666288,0.753599,0.200334,0.187906,0.767669,0.503701,0.313603,0.106958,0.397396,0.77756,0.883791,0.12003,0.720668,0.035149,0.0904388,0.571138,0.619459,0.174755,0.417373,0.67778,0.780519,0.462855,0.990244,0.690644,0.191148,0.0686719,0.042478,0.732006,0.936334,0.523396,0.44066,0.889624,0.0283316,0.31056,0.890843,0.0636665,0.773659,0.00287151,0.408536,0.95259,0.312344,0.274004,0.625128,0.543227,0.773684,0.873557,0.956267,0.813704,0.284104,0.0227653,0.601184,0.429018,0.590011,0.39518,0.435329,0.90676,0.775884,0.4026,0.581529,0.825808,0.0886376,0.91965,0.207809,0.13177,0.884052,0.955402,0.918405,0.674125,0.333682,0.225218,0.336417,0.0872638,0.14922,0.514982,0.956359,0.4204,0.402338,0.762173,0.434678,0.0231874,0.231901,0.784159,0.117462,0.952897,0.505008,0.466613,0.325297,0.81927,0.134613,0.04185,0.520859,0.240273,0.160196,0.862919,0.691655,0.462908,0.10691,0.863404,0.781114,0.159102,0.302547,0.0484256,0.465809,0.434287,0.819932,0.122508,0.791243,0.392737,0.891027,0.478793,0.887724,0.332462,0.261751,0.911786,0.503363,0.978271,0.891211,0.8571,0.420654,0.902223,0.455506,0.679825,0.000669062,0.0300537,0.752941,0.697128,0.0561728,0.489986,0.696841,0.474039,0.542588,0.0631008,0.911618,0.0919347,0.79814,0.176496,0.185123,0.939139,0.160062,0.319185,0.204121,0.543132,0.576349,0.113936,0.125092,0.53605,0.791766,0.990526,0.341495,0.476605,0.293902,0.0632542,0.983766,0.485973,0.830516,0.112612,0.836746,0.623542,0.202151,0.880144,0.259509,0.268657,0.547093,0.406362,0.114171,0.224837,0.744986,0.168949,0.168058,0.282334,0.572098,0.554269,0.289944,0.873886,0.991586,0.95242,0.786532,0.762675,0.218533,0.391967,0.345788,0.545959,0.987738,0.502292,0.925184,0.756384,0.0430403,0.65938,0.809916,0.273548,0.220624,0.733796,0.243056,0.883294,0.608054,0.331239,0.513584,0.5456,0.506759,0.794059,0.101222,0.348381,0.158214,0.0465648,0.488128,0.91367,0.87565,0.728097,0.235158,0.562231,0.616086,0.75074,0.384284,0.796347,0.648356,0.675386,0.18165,0.187944,0.831764,0.563421,0.51831,0.56023,0.329792,0.0110538,0.863585,0.31437,0.68547,0.60632,0.785057,0.0411232,0.337334,0.185407,0.980772,0.165894,0.575724,0.0202544,0.835583,0.726059,0.367359,0.917743,0.898559,0.128944,0.481709,0.475068,0.722146,0.699099,0.0923539,0.38096,0.0130822,0.0516911,0.338325,0.670756,0.0972188,0.185877,0.329798,0.163059,0.316192,0.829823,0.0449514,0.275975,0.596763,0.831514,0.742588,0.0215921,0.326573,0.072987,0.0607249,0.0180836,0.108548,0.679962,0.817382,0.574177,0.51917,0.423313,0.449313,0.790548,0.880791,0.743255,0.543803,0.373043,0.798058,0.259441,0.980528,0.997595,0.0727339,0.372166,0.830024,0.861984,0.264395,0.211357,0.953703,0.19761,0.760164,0.184098,0.179576,0.287501,0.175578,0.912948,0.530208,0.9333,0.379267,0.171083,0.400661,0.443053,0.284668,0.174835,0.239867,0.667726,0.159763,0.973719,0.19683,0.00603271,0.971569,0.867066,0.704356,0.474491,0.603396,0.766237,0.229707,0.16287,0.193322,0.44883,0.379598,0.713724,0.798497,0.228417,0.960238,0.575067,0.801383,0.124382,0.929003,0.0326505,0.801246,0.993656,0.148965,0.763277,0.873598,0.414577,0.475367,0.49133,0.993333,0.82316,0.78303,0.407182,0.345595,0.679466,0.350596,0.0653101,0.0272303,0.495371,0.179727,0.544473,0.137272,0.122674,0.233994,0.85742,0.69116,0.932867,0.891197,0.779042,0.624406,0.277842,0.382188,0.300729,0.174781,0.578566,0.777565,0.809425,0.748983,0.941966,0.75885,0.435487,0.16145,0.755677,0.0586346,0.521604,0.589862,0.864195,0.951562,0.588556,0.82871,0.614335,0.923927,0.523864,0.416866,0.599775,0.749981,0.589868,0.868607,0.181454,0.472056,0.657975,0.888446,0.15926,0.0058223,0.598436,0.519378,0.0457934,0.302222,0.319474,0.935544,0.817648,0.0212998,0.833584,0.688557,0.585143,0.304308,0.568743,0.384742,0.406344,0.310656,0.519843,0.77283,0.0300645,0.19901,0.297576,0.212258,0.581651,0.067443,0.866333,0.346258,0.302918,0.779543,0.612806,0.993922,0.877094,0.417506,0.770475,0.789778,0.628375,0.87009,0.175551,0.416675,0.453908,0.219796,0.195657,0.592933,0.214037,0.372499,0.220455,0.789263,0.267985,0.145826,0.984458,0.683575,0.605736,0.550923,0.279772,0.835887,|0.614822,0.700586,0.785869,0.469605,0.451364,0.144365,0.424436,0.0396371,0.148754,0.504243,0.962506,0.378172,0.59742,0.325261,0.396153,0.532655,0.758889,0.686867,0.815742,0.668278,0.156074,0.132727,0.631732,0.380019,0.513568,0.626717,0.038038,0.273179,0.879876,0.124822,0.0610307,0.60733,0.081499,0.693111,0.398586,0.372088,0.89017,0.90463,0.219488,0.679161,0.750119,0.609277,0.914535,0.128119,0.366013,0.592607,0.197196,0.540212,0.0910408,0.385401,0.16475,0.98235,0.615759,0.309432,0.00474787,0.748603,0.688203,0.0809327,0.535009,0.0574591,0.153762,0.757168,0.159574,0.827273,0.0137858,0.495284,0.524766,0.424256,0.48506,0.0295075,0.825197,0.148497,0.319051,0.553705,0.960711,0.69641,0.830886,0.939776,0.297661,0.68125,0.0209402,0.681249,0.590053,0.922704,0.0094943,0.5232,0.903876,0.236057,0.794235,0.847773,0.734715,0.571126,0.614391,0.507433,0.145434,0.544196,0.85289,0.336729,0.685994,0.079358,0.743657,0.384639,0.568228,0.347294,0.486503,0.897589,0.021174,0.0557438,0.283975,0.576336,0.320894,0.19831,0.791625,0.848523,0.411763,0.517468,0.953134,0.650508,0.457249,0.237111,0.0192959,0.926909,0.940081,0.819821,0.363716,0.573278,0.53317,0.642165,0.537045,0.689581,0.213906,0.19489,0.625143,0.13214,0.0400353,0.15261,0.944888,0.627349,0.756983,0.474456,0.982311,0.256652,0.846636,0.590801,0.883368,0.411686,0.648321,0.631119,0.282352,0.291103,0.914927,0.949632,0.590904,0.510763,0.327656,0.856985,0.201092,0.172712,0.317562,0.307678,0.120217,0.579061,0.0647966,0.534069,0.991253,0.48758,0.879619,0.136152,0.192163,0.592754,0.923618,0.295921,0.423751,0.453615,0.162861,0.559499,0.623079,0.333424,0.455481,0.316286,0.0809423,0.0119607,0.288345,0.392385,0.956119,0.138135,0.258632,0.273533,0.813188,0.0908326,0.672333,0.400567,0.42338,0.831605,0.522983,0.268207,0.157077,0.209459,0.867083,0.291514,0.93548,0.786609,0.0372553,0.906412,0.149604,0.544908,0.811784,0.878262,0.763035,0.807282,0.876294,0.383244,0.167739,0.667863,0.909837,0.378485,0.82748,0.806853,0.19482,0.0803244,0.216002,0.0765526,0.865174,0.220227,0.465387,0.585084,0.235372,0.687047,0.093914,0.601601,0.587734,0.709388,0.961374,0.523821,0.583633,0.469736,0.331582,0.463581,0.19501,0.336907,0.562481,0.026559,0.63929,0.307752,0.688584,0.750902,0.534872,0.118483,0.382156,0.824632,0.530504,0.620219,0.109469,0.756703,0.058507,0.13584,0.25603,0.896598,0.251604,0.578714,0.604759,0.0448648,0.449806,0.741593,0.0594433,0.567916,0.893325,0.819321,0.393705,0.264955,0.0283316,0.83933,0.0598946,0.7387,0.186343,0.623523,0.204406,0.709188,0.440273,0.464091,0.479768,0.565571,0.981601,0.301419,0.523603,0.27105,0.58526,0.358885,0.718007,0.084639,0.586507,0.837796,0.257994,0.0575029,0.269359,0.386607,0.710717,0.663735,0.939909,0.0948558,0.774225,0.503469,0.839184,0.138749,0.979032,0.661981,0.128902,0.591005,0.521315,0.296105,0.179221,0.812731,0.59576,0.737123,0.367571,0.525285,0.994188,0.988976,0.884122,0.0742918,0.403985,0.436614,0.507827,0.557277,0.178316,0.841746,0.509252,0.0432508,0.279616,0.634865,0.949294,0.918664,0.0451994,0.386821,0.436863,0.882907,0.346796,0.259001,0.159078,0.81717,0.864191,0.394469,0.318873,0.233038,0.882944,0.899443,0.285721,0.540153,0.482123,0.552666,0.38049,0.822524,0.0893416,0.922774,0.871405,0.660382,0.727027,0.351094,0.933338,0.0248896,0.0540196,0.549337,0.89666,0.870634,0.427594,0.366155,0.119636,0.797483,0.224391,0.756789,0.493944,0.148152,0.364544,0.623449,0.435353,0.306947,0.7751,0.200982,0.0610446,0.390725,0.100122,0.241741,0.305224,0.983072,0.536125,0.491859,0.0594466,0.0603865,0.748701,0.107993,0.908132,0.187698,0.001046,0.82305,0.0833665,0.264173,0.0325352,0.724712,0.428688,0.915855,0.581517,0.546698,0.18087,0.411441,0.570834,0.161853,0.106939,0.486972,0.27782,0.862492,0.449389,0.773771,0.209554,0.400601,0.690623,0.691438,0.787012,0.0758496,0.489538,0.526918,0.0753297,0.0381755,0.819005,0.168232,0.282365,0.519432,0.967741,0.00495416,0.27372,0.936337,0.810233,0.164365,0.131724,0.774981,0.390052,0.0534113,0.812273,0.451958,0.822344,0.969925,0.0427045,0.660265,0.870604,0.817139,0.805905,0.343479,0.303515,0.848626,0.132927,0.237693,0.4578,0.32181,0.99559,0.477977,0.981063,0.284525,0.190512,0.971323,0.600088,0.166813,0.59565,0.370024,0.454379,0.116604,0.758849,0.913354,0.874867,0.45771,0.5228,0.628606,0.841222,0.423785,0.95267,0.62407,0.783045,0.092515,0.306669,0.122026,0.0130109,0.0479402,0.0973675,0.79526,0.97811,0.422388,0.100543,0.555484,0.428748,0.449499,0.283141,0.290983,0.744025,0.805724,0.612651,0.738024,0.602133,0.190366,0.580857,0.799049,0.45761,0.470834,0.743284,0.920976,0.481769,0.0444874,0.353708,0.637692,0.546863,0.426604,0.0591089,0.814081,0.245024,0.614916,0.258476,0.414775,0.60419,0.75008,0.253852,0.134031,0.148538,0.828722,0.216579,0.776793,0.593333,0.823132,0.469552,0.763607,0.311146,0.266057,0.127888,0.228038,0.253058,0.506473,0.728266,0.884836,0.301657,0.775964,0.794177,0.711837,0.675585,0.605372,0.124581,0.891728,0.947176,0.758733,0.494118,0.894672,0.241147,0.740146,0.191202,0.702757,0.52171,0.875609,0.681527,0.0191145,0.0443229,0.813435,0.0568025,0.201508,0.507231,0.547266,0.944697,0.604752,0.663689,0.240905,0.246165,0.448895,0.433453,0.589621,0.775351,0.501188,0.950263,0.078428,0.211592,0.634153,0.916296,0.766362,0.599627,0.679406,0.17284,0.775284,0.701162,0.472533,0.326924,0.922143,0.0734753,0.213309,0.120203,0.510253,0.320572,0.713132,0.822378,0.360118,0.584809,0.496655,0.874421,0.916957,0.0291489,0.792758,0.688944,0.456296,0.457001,0.71312,0.349344,0.716663,0.167875,0.365023,0.603683,0.716528,0.588679,0.749535,0.187675,0.991512,0.0104294,0.256949,0.659145,0.25952,0.39335,0.574692,0.800279,0.341985,0.562543,0.364698,0.469044,0.756333,0.32812,0.119601,0.394014,0.649325,0.473355,0.157236,0.211251,0.275784,0.494434,0.816322,0.343772,0.840471,0.253103,0.223331,0.746439,0.606779,0.725601,0.872486,0.843446,0.807602,0.153606,0.469387,0.189994,0.447076,0.252085,0.646855,0.382146,0.13361,0.129509,0.684731,0.585961,0.134233,0.136812,0.766584,0.787296,0.567625,0.873054,0.316994,0.398562,0.680814,0.964616,0.0824789,0.359872,0.594919,0.91173,0.0248038,0.907754,0.922363,0.164687,0.607322,0.207247,0.443132,0.70457,0.853224,0.899041,0.308439,0.0890086,0.0443086,0.936373,0.096139,0.650096,0.617647,0.454956,0.709521,0.378718,0.0333397,0.289666,0.612681,0.713625,0.395385,0.168131,0.412126,0.258729,0.7567,0.292428,0.184665,0.704445,0.435891,0.465285,0.550393,0.181569,0.0832886,0.854996,0.717852,0.664346,0.757965,0.208846,0.0401542,0.802748,0.233452,0.760256,0.434366,0.339756,0.865174,0.938927,0.993352,0.760596,0.632644,0.292876,0.272721,0.852442,0.77192,0.337099,0.387657,0.757005,0.984083,0.624643,0.400629,0.737917,0.19248,0.005557,0.423688,0.425623,0.1975,0.104649,0.900498,0.938864,0.929823,0.501408,0.929405,0.212533,0.338114,0.0718015,0.680762,0.610825,0.690442,0.336418,0.915509,0.356455,0.387745,0.294908,0.542357,0.0837386,0.148208,0.0578657,0.0483903,0.16571,0.826689,0.0270172,0.0981286,0.811692,0.281675,0.338478,0.95858,0.650928,0.730593,0.00699759,0.23728,0.598924,0.580673,0.531256,0.503781,0.0295257,0.705162,0.543439,0.296771,0.498627,0.53659,0.520001,0.808089,0.701147,0.854683,0.815168,0.648219,0.68508,0.140471,0.837232,0.79602,0.594235,0.526622,0.0294204,0.207833,0.845185,0.92218,0.303869,0.741117,0.220346,0.894152,0.0263773,0.832676,0.660462,0.900112,0.853982,0.980682,0.953383,0.67002,0.661832,0.545587,0.347417,0.217549,0.902859,0.824831,0.116143,0.51688,0.788213,0.717644,0.29422,0.902677,0.484804,0.385676,0.691433,0.871816,0.488033,0.929851,0.524738,0.338132,0.12034,0.00880367,0.527542,0.622164,0.431864,0.424685,0.55281,0.0486211,0.076826,0.550572,0.787158,0.886694,0.405626,0.22867,0.746081,0.674129,0.988744,0.381198,0.84692,0.9615,0.877349,0.723864,0.680228,0.188656,0.743967,0.831367,0.942584,0.523998,0.473506,0.350631,0.680542,0.992245,0.959074,0.215247,0.952635,0.255044,0.277878,0.117451,0.219817,0.630789,0.177362,0.566717,0.758501,0.452289,0.176066,0.94702,0.917997,0.729459,0.762019,0.727673,0.414274,0.68267,0.516956,0.445358,0.836792,0.459233,0.664519,0.0189627,0.175221,0.927353,0.202943,0.283667,0.936537,0.439937,0.654973,0.0441845,0.520229,0.724325,0.255451,0.156691,0.244416,0.45121,0.472842,0.240561,0.377854,0.614892,0.758682,0.545324,0.543914,0.896654,0.415937,0.216826,0.402131,0.527097,0.431126,0.280104,0.500644,0.651267,0.544776,0.457449,0.323104,0.572885,0.552057,0.220495,0.0749795,0.93018,0.303582,0.458617,0.753345,0.737141,0.517157,0.906101,0.0839925,0.00876439,0.46642,0.398226,0.567174,0.344918,0.234223,0.00987673,0.314415,0.87442,0.186326,0.697162,0.145888,0.555879,0.198511,0.431594,0.132209,0.00899208,0.565405,0.425762,0.65087,0.705057,0.0686361,0.210077,0.270849,0.400594,0.135996,0.389899,0.788796,0.767883,0.337767,0.977561,0.0346169,0.935505,0.155512,0.131642,0.419217,0.461017,0.455894,0.0369062,0.629553,0.876584,0.340282,0.592351,0.148938,0.844244,0.909759,0.883638,0.691398,0.083785,0.492335,0.15695,0.504832,0.441103,0.939309,0.891245,0.190643,0.494478,0.0390043,0.245509,0.904453,0.0993348,0.289882,0.466336,0.490411,0.379842,0.25431,0.0852312,|0.821261,0.292779,0.16178,0.711906,0.0683391,0.00861043,0.541823,0.0925656,0.0609164,0.159201,0.52652,0.425261,0.204973,0.803102,0.810408,0.528849,0.370827,0.222242,0.108235,0.698418,0.190124,0.779228,0.00803411,0.333993,0.912857,0.53838,0.0872512,0.0916145,0.133836,0.727179,0.458971,0.88554,0.851075,0.477665,0.803138,0.108376,0.130662,0.583778,0.998071,0.60411,0.321274,0.764565,0.591453,0.564138,0.749613,0.496783,0.876276,0.733657,0.449726,0.507514,0.355809,0.836403,0.909507,0.504555,0.370407,0.537936,0.824946,0.683352,0.628365,0.474509,0.919362,0.598404,0.262922,0.187862,0.447985,0.145009,0.634522,0.480982,0.917084,0.328306,0.677215,0.561063,0.965108,0.676002,0.792105,0.490091,0.749851,0.121891,0.911368,0.0783443,0.428593,0.413965,0.636685,0.0775594,0.969689,0.779759,0.822245,0.582782,0.931829,0.148368,0.981325,0.947354,0.0223272,0.631153,0.19421,0.749126,0.440372,0.187756,0.564046,0.383965,0.411383,0.140454,0.870319,0.287826,0.266237,0.400956,0.356084,0.225877,0.574888,0.29305,0.371767,0.959107,0.876695,0.298936,0.479609,0.865478,0.267349,0.701868,0.813634,0.909288,0.620839,0.685747,0.793595,0.286667,0.494849,0.806469,0.473389,0.0139951,0.522354,0.790447,0.529849,0.668518,0.683761,0.249823,0.235969,0.519268,0.807767,0.19497,0.111768,0.561205,0.754501,0.542933,0.111803,0.381363,0.0727783,0.0376629,0.997931,0.943052,0.283889,0.959983,0.473131,0.194294,0.140224,0.378535,0.832008,0.815335,0.370647,0.215103,0.646985,0.0955877,0.165616,0.334877,0.950232,0.372061,0.227993,0.52231,0.461931,0.326259,0.691442,0.999336,0.349386,0.702021,0.611408,0.914739,0.992858,0.806115,0.403363,0.801383,0.234931,0.130138,0.600026,0.886452,0.794392,0.897742,0.348908,0.674509,0.560106,0.369435,0.0998918,0.229172,0.555967,0.428852,0.309659,0.959683,0.71426,0.336452,0.635102,0.969287,0.0283715,0.0387951,0.143395,0.553305,0.886776,0.454796,0.706193,0.529749,0.622673,0.490031,0.34246,0.738471,0.368294,0.640331,0.93815,0.823448,0.307519,0.60816,0.851991,0.41542,0.140302,0.349472,0.344424,0.538738,0.431003,0.119916,0.721201,0.743608,0.469959,0.410975,0.839397,0.939297,0.0252808,0.43028,0.561652,0.372013,0.631941,0.808499,0.322721,0.382625,0.904699,0.226181,0.599472,0.00607395,0.494903,0.725637,0.0847495,0.700254,0.465046,0.871467,0.52617,0.378397,0.250466,0.453967,0.405666,0.347533,0.471771,0.784231,0.355788,0.631725,0.487803,0.753392,0.456715,0.77609,0.748004,0.0208728,0.922302,0.195571,0.495019,0.349939,0.137573,0.666917,0.245723,0.276218,0.503663,0.0189015,0.207521,0.979468,0.21951,0.0884307,0.825989,0.259841,0.853455,0.0512898,0.0493156,0.662595,0.736213,0.85673,0.678803,0.187718,0.00469464,0.739372,0.51331,0.959651,0.826661,0.149396,0.205372,0.810083,0.967393,0.425576,0.925726,0.324307,0.272755,0.484734,0.709624,0.872646,0.118524,0.183097,0.936317,0.779581,0.560475,0.319261,0.53684,0.728386,0.681226,0.75688,0.35483,0.761093,0.585293,0.576154,0.199756,0.0013575,0.246918,0.682862,0.0434921,0.257084,0.0290922,0.390074,0.604288,0.627516,0.104809,0.148231,0.48228,0.298975,0.0824445,0.456297,0.0205918,0.142155,0.763579,0.25725,0.575922,0.901114,0.763364,0.792289,0.328393,0.685321,0.129374,0.758159,0.836391,0.742633,0.290127,0.0748835,0.0438123,0.0864918,0.484117,0.103494,0.598303,0.315651,0.82505,0.642402,0.0764778,0.156068,0.279403,0.0314605,0.990781,0.408563,0.554459,0.649636,0.360114,0.208899,0.747674,0.827661,0.745614,0.0371807,0.421338,0.244665,0.884506,0.757641,0.281769,0.918224,0.872979,0.295387,0.17949,0.0533535,0.572833,0.0807697,0.659622,0.0837953,0.479947,0.471405,0.610932,0.670994,0.73289,0.433702,0.56415,0.110157,0.211429,0.390016,0.943295,0.243417,0.326136,0.468221,0.884215,0.597259,0.532123,0.72684,0.820953,0.117016,0.694801,0.95029,0.346898,0.829366,0.839553,0.378432,0.783988,0.407395,0.760358,0.621973,0.969751,0.0205862,0.747124,0.737286,0.588549,0.51342,0.0422862,0.556096,0.688075,0.0745365,0.558053,0.0588015,0.367403,0.623669,0.831371,0.128225,0.431024,0.969728,0.591104,0.820852,0.477943,0.778053,0.968057,0.171186,0.988876,0.159018,0.00907189,0.456969,0.63805,0.778907,0.137053,0.035074,0.549236,0.411906,0.546181,0.976102,0.458699,0.917535,0.710917,0.683071,0.52371,0.627803,0.691405,0.185054,0.0303012,0.364323,0.533419,0.154327,0.051752,0.535205,0.00100261,0.686398,0.670533,0.137941,0.172659,0.00536782,0.798734,0.39032,0.579091,0.611047,0.027665,0.410091,0.855805,0.800071,0.839113,0.851805,0.0459899,0.322507,0.530078,0.639618,0.855,0.645589,0.964825,0.509046,0.141954,0.0493482,0.834692,0.489972,0.46361,0.0528503,0.454573,0.165432,0.613335,0.84516,0.912784,0.987093,0.569815,0.125803,0.315606,0.75311,0.508056,0.958509,0.0129735,0.180979,0.570595,0.96097,0.0869945,0.676834,0.363562,0.580561,0.497018,0.343732,0.304321,0.417342,0.647405,0.433436,0.391283,0.307723,0.449471,0.13556,0.852666,0.172249,0.384494,0.478895,0.727003,0.304672,0.798004,0.841866,0.764362,0.376338,0.742726,0.446006,0.601907,0.00348645,0.550429,0.204876,0.682435,0.659172,0.610832,0.636268,0.150412,0.0490284,0.200539,0.902357,0.52642,0.404294,0.541567,0.513898,0.753163,0.805095,0.571,0.220574,0.639139,0.0691038,0.717078,0.928616,0.460324,0.244293,0.802003,0.929984,0.772627,0.677401,0.302486,0.255704,0.673932,0.195059,0.301551,0.136563,0.681642,0.287285,0.128306,0.585026,0.109623,0.132243,0.420603,0.808541,0.80681,0.846671,0.278084,0.311945,0.610697,0.0911683,0.476488,0.346159,0.064418,0.74119,0.507732,0.0331693,0.486111,0.575077,0.890845,0.668835,0.280333,0.522662,0.676963,0.644709,0.438803,0.144246,0.194085,0.889878,0.722287,0.322728,0.63971,0.921138,0.455958,0.43956,0.85789,0.897294,0.348399,0.0447927,0.864849,0.236224,0.550413,0.699055,0.41434,0.373244,0.441545,0.0475993,0.932519,0.714608,0.50296,0.480156,0.475997,0.644932,0.0966944,0.939956,0.141889,0.436639,0.45004,0.91372,0.47654,0.207188,0.456412,0.721153,0.215338,0.614064,0.061039,0.97506,0.221151,0.965805,0.0333237,0.565844,0.223277,0.574261,0.561797,0.864923,0.772544,0.267604,0.943285,0.499145,0.352016,0.957978,0.0420892,0.801563,0.53574,0.916893,0.0959194,0.454633,0.756974,0.890802,0.689427,0.42543,0.610314,0.130372,0.985546,0.298225,0.784891,0.104475,0.899466,0.297747,0.728599,0.925732,0.434888,0.503786,0.46331,0.645705,0.231885,0.188852,0.786984,0.562526,0.878958,0.260857,0.536516,0.787255,0.83294,0.245788,0.751431,0.280686,0.0745787,0.307372,0.871769,0.603241,0.313739,0.306983,0.0104095,0.643657,0.281204,0.568043,0.079729,0.831329,0.034891,0.64757,0.0636173,0.625846,0.287357,0.377784,0.626622,0.97088,0.215866,0.339126,0.828482,0.760293,0.0838161,0.727326,0.515994,0.847547,0.466038,0.415981,0.798809,0.366571,0.887245,0.150193,0.333564,0.389468,0.257308,0.652532,0.772082,0.754531,0.305311,0.0812343,0.0932276,0.312819,0.359808,0.829836,0.0362698,0.874592,0.70293,0.654471,0.254627,0.152402,0.0396802,0.607264,0.131116,0.257873,0.180512,0.861582,0.216713,0.103047,0.597393,0.423788,0.648687,0.599559,0.36482,0.73385,0.547525,0.913064,0.013886,0.199478,0.832265,0.232557,0.357191,0.354417,0.7425,0.701808,0.942568,0.0298871,0.538989,0.772134,0.877601,0.518905,0.597111,0.338116,0.682039,0.544899,0.903306,0.763746,0.750654,0.141907,0.260035,0.122618,0.719114,0.773129,0.758363,0.986994,0.452979,0.388682,0.295752,0.892305,0.636514,0.804924,0.964932,0.939714,0.0239986,0.0389628,0.970519,0.170592,0.194415,0.0967465,0.983942,0.311147,0.455367,0.187564,0.0514553,0.683918,0.63932,0.96514,0.113449,0.00265992,0.555961,0.211289,0.081397,0.661482,0.65659,0.336387,0.880563,0.0165593,0.2959,0.0197741,0.539311,0.615014,0.279202,0.941479,0.825756,0.801789,0.0898759,0.813122,0.522634,0.827105,0.0477057,0.146148,0.0868877,0.754088,0.41977,0.856727,0.763948,0.106123,0.161131,0.350215,0.540033,0.608083,0.394989,0.972519,0.776666,0.846026,0.343566,0.0393921,0.764144,0.528457,0.977071,0.805349,0.522892,0.180962,0.684598,0.377959,0.227311,0.170384,0.676202,0.750174,0.0161372,0.752307,0.220516,0.572068,0.792267,0.971737,0.358603,0.64765,0.9433,0.315707,0.91594,0.0463039,0.53587,0.442522,0.342942,0.663675,0.674939,0.714305,0.913289,0.297674,0.305707,0.472348,0.419314,0.197472,0.197437,0.753469,0.984565,0.327362,0.93162,0.927714,0.273759,0.830627,0.42724,0.225741,0.395683,0.0466634,0.726414,0.906346,0.877832,0.00753444,0.529273,0.30249,0.169465,0.407905,0.294216,0.862934,0.00553596,0.632118,0.803694,0.667772,0.700857,0.991669,0.169864,0.568262,0.0954785,0.596484,0.481231,0.282462,0.151471,0.101108,0.759061,0.798267,0.47548,0.997268,0.0858366,0.125074,0.569332,0.340388,0.771293,0.290076,0.553023,0.411693,0.762645,0.994955,0.185509,0.756945,0.14472,0.0964727,0.171689,0.0479625,0.47358,0.444388,0.893162,0.832302,0.816195,0.944284,0.526721,0.803098,0.707002,0.832144,0.833779,0.203064,0.436754,0.911808,0.385759,0.629978,0.159968,0.609364,0.253515,0.765258,0.524021,0.0406911,0.724091,0.996855,0.0298812,0.453459,0.475778,0.331655,0.0867898,0.311091,0.162582,0.679878,0.655822,0.517071,0.0622184,0.0306158,0.685511,0.0881453,0.0705572,0.74144,0.951538,0.353926,0.134433,0.458935,0.75512,0.569869,0.216734,0.425688,0.445679,0.29926,0.167499,0.635051,0.55315,0.672515,0.669748,0.0715815,|0.585106,0.580231,0.0325107,0.155524,0.475736,0.90413,0.528772,0.169478,0.627065,0.170704,0.176772,0.866751,0.775329,0.243899,0.459002,0.584912,0.579334,0.291317,0.0476404,0.66167,0.302438,0.336724,0.796776,0.519291,0.307523,0.458967,0.352013,0.187207,0.25668,0.536404,0.342096,0.190653,0.163127,0.457656,0.394431,0.332794,0.332508,0.442334,0.813801,0.176497,0.272824,0.642062,0.202661,0.879222,0.116296,0.868367,0.747655,0.480017,0.378785,0.515723,0.579075,0.815397,0.0388394,0.644693,0.144245,0.459229,0.114386,0.268902,0.160851,0.928905,0.125673,0.744322,0.86925,0.17854,0.613204,0.976105,0.559435,0.57543,0.905896,0.335855,0.129912,0.932724,0.537645,0.928143,0.821594,0.0320404,0.139292,0.53528,0.5633,0.771098,0.786397,0.55846,0.724743,0.0807481,0.483857,0.158266,0.375095,0.553304,0.625427,0.781493,0.485576,0.664823,0.227587,0.19238,0.711521,0.413597,0.80004,0.0988833,0.969385,0.00594133,0.0288451,0.225727,0.166573,0.244304,0.693943,0.157988,0.587053,0.676616,0.336895,0.581684,0.605879,0.050994,0.522787,0.225464,0.275702,0.0271063,0.169189,0.0418659,0.68719,0.765651,0.978662,0.427759,0.124416,0.566184,0.735312,0.65953,0.148662,0.425082,0.540753,0.341005,0.175309,0.665454,0.585971,0.876026,0.7511,0.0673174,0.39025,0.649576,0.536541,0.91338,0.463968,0.955882,0.385472,0.333708,0.219453,0.944116,0.0107575,0.762426,0.936175,0.0859417,0.898177,0.547134,0.513523,0.0284949,0.800774,0.649536,0.447822,0.255598,0.641466,0.507946,0.909085,0.405826,0.197779,0.968879,0.726443,0.767168,0.756959,0.525857,0.603868,0.343517,0.51239,0.105952,0.507686,0.137202,0.745684,0.722796,0.925012,0.656995,0.633303,0.0321403,0.60652,0.444435,0.921957,0.443422,0.640929,0.664815,0.422612,0.290519,0.266516,0.161158,0.490287,0.400428,0.176678,0.078022,0.782035,0.290345,0.963,0.915017,0.352944,0.95902,0.170161,0.452736,0.312277,0.0181127,0.63989,0.554991,0.516887,0.526771,0.556771,0.115931,0.437291,0.577108,0.887979,0.274905,0.937214,0.188067,0.334471,0.729104,0.0161922,0.618575,0.0626341,0.32101,0.173889,0.450879,0.720286,0.592083,0.665577,0.694625,0.536653,0.911011,0.512176,0.0195133,0.87764,0.750257,0.345916,0.54288,0.755837,0.971782,0.108087,0.290612,0.763378,0.826641,0.05931,0.895863,0.00711173,0.456971,0.926629,0.661642,0.448433,0.413925,0.643967,0.934751,0.933983,0.223608,0.0175985,0.642149,0.637526,0.890185,0.374271,0.795826,0.172307,0.075766,0.332717,0.362397,0.786277,0.739472,0.642195,0.351536,0.870764,0.246111,0.349765,0.461723,0.58328,0.524943,0.182974,0.471404,0.45681,0.237254,0.994142,0.595592,0.651687,0.91113,0.932606,0.174654,0.177119,0.97408,0.673522,0.318147,0.743213,0.740653,0.216675,0.615841,0.812728,0.536989,0.682674,0.78282,0.416655,0.296886,0.185998,0.791635,0.456665,0.784041,0.145573,0.792004,0.268111,0.438877,0.416861,0.344257,0.805285,0.421352,0.359983,0.569887,0.765609,0.494919,0.895342,0.63009,0.780515,0.183056,0.0979169,0.935315,0.898805,0.207444,0.400971,0.751465,0.677633,0.808487,0.438232,0.239819,0.564939,0.0895527,0.273401,0.588914,0.980408,0.0612261,0.879148,0.0401096,0.447893,0.643903,0.906563,0.610764,0.0267527,0.493612,0.366684,0.298742,0.780913,0.86452,0.454962,0.220159,0.221612,0.584279,0.462991,0.527041,0.812804,0.6991,0.997946,0.568638,0.813275,0.459168,0.788926,0.564084,0.45451,0.0815877,0.401236,0.46399,0.622365,0.570717,0.402785,0.441268,0.735312,0.333754,0.732519,0.32192,0.860368,0.367198,0.638254,0.751553,0.447773,0.874152,0.653988,0.565573,0.276664,0.868431,0.470782,0.790355,0.867168,0.971024,0.727731,0.976906,0.211284,0.788205,0.771091,0.306286,0.490304,0.317398,0.792492,0.442073,0.219595,0.593784,0.567224,0.547238,0.173635,0.940799,0.640138,0.668553,0.442704,0.553669,0.512154,0.31999,0.500815,0.701821,0.114603,0.132049,0.526528,0.033491,0.376647,0.118183,0.264666,0.42151,0.968878,0.168546,0.902255,0.155728,0.259237,0.733201,0.285862,0.268828,0.889227,0.834472,0.625849,0.447103,0.0185084,0.260233,0.81709,0.0893742,0.713212,0.894385,0.0554223,0.380096,0.683353,0.704684,0.157964,0.688421,0.381077,0.534806,0.343424,0.175822,0.0835086,0.386817,0.625407,0.8185,0.636762,0.365323,0.0465333,0.917945,0.10645,0.00225163,0.101531,0.315696,0.447717,0.0921975,0.909519,0.518884,0.121337,0.448104,0.234185,0.0586482,0.901099,0.00213695,0.89955,0.0387672,0.331581,0.388529,0.141606,0.130024,0.907815,0.478919,0.721467,0.820839,0.765334,0.983174,0.430226,0.0674928,0.513601,0.702826,0.150434,0.207487,0.748953,0.370219,0.949941,0.219628,0.43116,0.789689,0.998861,0.588982,0.283538,0.221374,0.900869,0.934526,0.0261415,0.698663,0.575182,0.527123,0.826826,0.739127,0.0965328,0.840666,0.790864,0.517389,0.279202,0.427959,0.806648,0.992018,0.950664,0.420352,0.776123,0.59652,0.787528,0.244564,0.383868,0.958737,0.530455,0.0123354,0.622095,0.17499,0.0239083,0.0551224,0.897317,0.10657,0.344272,0.476826,0.455935,0.722646,0.607663,0.687735,0.668802,0.873132,0.11655,0.830326,0.593774,0.618622,0.169143,0.473674,0.152671,0.444097,0.693311,0.92178,0.246356,0.665261,0.182981,0.497611,0.452954,0.783062,0.16541,0.70394,0.81516,0.999086,0.66173,0.0554046,0.139732,0.181805,0.423795,0.706858,0.931976,0.517238,0.571414,0.194725,0.406655,0.796701,0.31904,0.392803,0.171385,0.816102,0.960355,0.118889,0.57237,0.626948,0.927717,0.0284819,0.119949,0.174069,0.860852,0.788444,0.929646,0.0261889,0.693381,0.580309,0.00966489,0.316354,0.0275549,0.0824954,0.725741,0.974698,0.168496,0.641448,0.490479,0.805448,0.511847,0.160773,0.768973,0.471302,0.895134,0.733741,0.313387,0.771792,0.768453,0.669215,0.467499,0.142258,0.811772,0.982101,0.0922924,0.454674,0.172148,0.194347,0.854742,0.728433,0.0184238,0.443568,0.373941,0.320939,0.494792,0.270561,0.842202,0.546131,0.910263,0.625997,0.0716168,0.706917,0.0769904,0.0279754,0.876746,0.395228,0.513478,0.467635,0.946342,0.519116,0.834368,0.985032,0.0954742,0.811217,0.885575,0.611072,0.438186,0.541925,0.580955,0.962073,0.683595,0.160706,0.719882,0.449345,0.277711,0.626509,0.769389,0.354515,0.780323,0.842558,0.798058,0.898435,0.800155,0.89583,0.777037,0.0599716,0.117164,0.799619,0.302892,0.0122127,0.501867,0.577287,0.689531,0.468711,0.264024,0.492079,0.576503,0.492824,0.0752314,0.955113,0.733007,0.315913,0.156278,0.57373,0.938289,0.936407,0.797577,0.0683028,0.626656,0.024571,0.709377,0.0447553,0.877171,0.212066,0.689441,0.830252,0.0218062,0.734666,0.305684,0.782048,0.841932,0.0806408,0.108543,0.655803,0.653012,0.950636,0.897793,0.323056,0.0843458,0.302461,0.841264,0.753803,0.695598,0.185444,0.164663,0.598418,0.0166283,0.983572,0.686255,0.548546,0.915193,0.543986,0.290795,0.0361329,0.512634,0.513464,0.378836,0.861027,0.686483,0.204624,0.771793,0.030753,0.46159,0.136994,0.446581,0.981745,0.535843,0.227779,0.581934,0.0154518,0.984971,0.795587,0.940609,0.0833376,0.396469,0.271266,0.167114,0.0980244,0.839265,0.547168,0.626865,0.847272,0.38294,0.856247,0.799292,0.240729,0.969781,0.352276,0.421508,0.61799,0.498895,0.0711061,0.953675,0.814274,0.135307,0.543236,0.953314,0.487713,0.0792724,0.986095,0.949503,0.320594,0.340611,0.139759,0.911199,0.268561,0.103849,0.70766,0.376525,0.422911,0.489695,0.386659,0.0985045,0.587932,0.410965,0.375976,0.91799,0.441359,0.612004,0.11006,0.401909,0.804376,0.698325,0.332854,0.359789,0.280192,0.410818,0.592846,0.608415,0.510169,0.869287,0.942707,0.171831,0.575919,0.984086,0.88505,0.321573,0.130196,0.98304,0.195423,0.950307,0.647015,0.167106,0.0805243,0.12947,0.465782,0.345354,0.21952,0.553285,0.569469,0.647459,0.147973,0.297029,0.526856,0.337071,0.699674,0.067239,0.675631,0.654382,0.730237,0.784734,0.699192,0.255539,0.773467,0.912867,0.694309,0.174739,0.440344,0.702989,0.997363,0.582475,0.0816261,0.7766,0.111111,0.468569,0.869055,0.90172,0.303274,0.982674,0.539953,0.156665,0.90998,0.461124,0.953049,0.556285,0.769673,0.779121,0.272646,0.939476,0.528643,0.943827,0.256336,0.373778,0.205724,0.186805,0.828876,0.539288,0.688006,0.979325,0.806544,0.92456,0.712285,0.0231452,0.180338,0.839731,0.0588683,0.740577,0.0863197,0.067916,0.757562,0.0581425,0.376212,0.508206,0.0239968,0.732462,0.406815,0.360321,0.475644,0.609605,0.726583,0.479664,0.54373,0.730321,0.317755,0.1367,0.690313,0.365623,0.446521,0.743847,0.931359,0.593488,0.0503672,0.435621,0.0543235,0.0471265,0.153589,0.998718,0.0357473,0.382563,0.828714,0.745539,0.637918,0.281935,0.716977,0.310998,0.19282,0.0268424,0.959883,0.233213,0.270626,0.996495,0.160337,0.433194,0.289313,0.567724,0.350848,0.784409,0.983221,0.995748,0.84326,0.151095,0.0333614,0.163097,0.887317,0.0606697,0.210145,0.921214,0.0814821,0.954958,0.257742,0.349966,0.0823045,0.401423,0.0302591,0.231268,0.958167,0.647868,0.380576,0.771458,0.726549,0.224686,0.00766778,0.156832,0.127896,0.533981,0.892484,0.573284,0.588819,0.501704,0.953392,0.598955,0.110483,0.973054,0.352168,0.989503,0.853489,0.581645,0.574181,0.476109,0.770191,0.872367,0.976138,0.423005,0.157094,0.499893,0.472386,0.949367,0.638505,0.94421,0.480732,0.693689,0.0485148,0.56721,0.135705,0.322176,0.0683551,0.202122,0.610344,0.407874,0.785337,0.438056,0.759002,0.0192768,0.505983,0.245119,0.429213,0.278902,0.886395,0.436101,0.0121768,0.940847,0.896823,0.528739,0.393441,|0.128619,0.759751,0.667171,0.840467,0.741994,0.296677,0.996126,0.782122,0.846025,0.565277,0.602205,0.504318,0.899388,0.878974,0.245598,0.546428,0.301013,0.176118,0.950953,0.111104,0.875524,0.788972,0.995152,0.948434,0.598533,0.646623,0.603592,0.641576,0.756837,0.0305461,0.13169,0.484813,0.377959,0.204593,0.291162,0.657425,0.437896,0.766067,0.53771,0.126779,0.357409,0.889975,0.536051,0.408334,0.474026,0.738736,0.714448,0.295527,0.555468,0.0622702,0.511465,0.977362,0.426313,0.437868,0.631146,0.252276,0.378324,0.666341,0.673213,0.240833,0.77249,0.125613,0.153442,0.502828,0.836608,0.945908,0.450268,0.311315,0.620283,0.76105,0.896574,0.12827,0.905956,0.566037,0.427448,0.9291,0.0110388,0.073236,0.499949,0.871639,0.458243,0.899762,0.667556,0.59708,0.73549,0.453678,0.246198,0.290742,0.977196,0.125529,0.26159,0.420826,0.612908,0.490167,0.103533,0.861206,0.784881,0.313379,0.737494,0.980113,0.775185,0.175745,0.63244,0.915049,0.0575063,0.429043,0.243324,0.481203,0.621723,0.0508135,0.169716,0.33435,0.994234,0.889491,0.415404,0.24138,0.964623,0.0624282,0.424705,0.839641,0.0193514,0.208275,0.435216,0.660619,0.715402,0.612772,0.772596,0.539537,0.863499,0.467366,0.503345,0.35509,0.424117,0.172731,0.169719,0.293563,0.868425,0.567267,0.483907,0.959223,0.14541,0.849436,0.802944,0.183663,0.523575,0.74868,0.905076,0.0283633,0.397482,0.0741451,0.418879,0.266415,0.614212,0.103009,0.230805,0.676292,0.162029,0.327163,0.508201,0.619674,0.260655,0.584553,0.458654,0.86982,0.0378667,0.182781,0.359382,0.785854,0.756968,0.348106,0.108808,0.499886,0.770512,0.926379,0.797304,0.219138,0.527756,0.52777,0.368889,0.372047,0.528598,0.306272,0.941009,0.241324,0.375071,0.956773,0.521979,0.463737,0.177973,0.0110437,0.913014,0.508203,0.0334118,0.5915,0.397201,0.261064,0.564122,0.37709,0.716795,0.176055,0.717133,0.131749,0.521406,0.624514,0.253095,0.0847803,0.135068,0.779809,0.836205,0.51046,0.372573,0.918095,0.892953,0.834953,0.40719,0.0793538,0.14282,0.351722,0.730444,0.871237,0.114155,0.540589,0.874606,0.865803,0.205295,0.840737,0.373027,0.104714,0.108805,0.945183,0.613948,0.333527,0.759141,0.921245,0.0253318,0.447815,0.167386,0.388705,0.749593,0.588803,0.20948,0.893268,0.909321,0.396543,0.825162,0.503373,0.918209,0.889198,0.646885,0.913433,0.76589,0.126776,0.114198,0.669975,0.359387,0.474304,0.687347,0.394681,0.15472,0.212879,0.253034,0.4062,0.802174,0.609313,0.970453,0.429338,0.590782,0.156938,0.327569,0.542461,0.25925,0.558551,0.0746509,0.0182528,0.772241,0.177398,0.956622,0.705554,0.33873,0.817524,0.114723,0.145009,0.804233,0.543296,0.938856,0.159039,0.662871,0.832455,0.999588,0.341744,0.7785,0.562615,0.818233,0.496829,0.381668,0.418954,0.203146,0.230496,0.184485,0.825364,0.953152,0.544512,0.496795,0.575132,0.519284,0.601794,0.555192,0.0377323,0.357753,0.380961,0.21461,0.116025,0.247686,0.769725,0.611663,0.921313,0.831445,0.526678,0.343763,0.156431,0.868272,0.425269,0.244204,0.915327,0.0870755,0.242244,0.530513,0.220479,0.182396,0.702279,0.788995,0.684381,0.652235,0.285895,0.449163,0.332377,0.900794,0.711037,0.397605,0.862989,0.200115,0.791451,0.728953,0.927711,0.00230992,0.593232,0.370471,0.864068,0.150601,0.202676,0.387304,0.388508,0.116497,0.297251,0.519303,0.528763,0.873437,0.596564,0.632131,0.824714,0.710718,0.970931,0.0540109,0.95266,0.970507,0.492134,0.699319,0.176611,0.595263,0.676527,0.604068,0.36942,0.399675,0.868696,0.57811,0.38457,0.367688,0.46111,0.528243,0.821084,0.377015,0.849293,0.671466,0.282201,0.174384,0.948772,0.798757,0.486631,0.729198,0.578868,0.432083,0.959047,0.909568,0.774757,0.092482,0.60692,0.0690574,0.0155809,0.836998,0.414671,0.409475,0.532322,0.788856,0.879151,0.428499,0.570218,0.348114,0.945144,0.319117,0.413039,0.510926,0.234677,0.427438,0.508765,0.967577,0.450477,0.331868,0.274142,0.34506,0.495308,0.063632,0.864268,0.18333,0.764485,0.535245,0.389546,0.857635,0.402099,0.341641,0.216844,0.526746,0.48724,0.4061,0.960765,0.593032,0.74288,0.289092,0.942707,0.967046,0.842105,0.636419,0.701654,0.822501,0.363677,0.631765,0.0390711,0.942169,0.267995,0.505931,0.348579,0.676972,0.500957,0.887789,0.181313,0.618509,0.489408,0.233979,0.396327,0.687639,0.594039,0.478768,0.0678598,0.255806,0.0103996,0.29429,0.296555,0.532138,0.338843,0.576346,0.837275,0.295387,0.965216,0.256875,0.271149,0.197999,0.663051,0.177138,0.0959445,0.497124,0.397098,0.746223,0.206553,0.755773,0.546298,0.203525,0.361977,0.509838,0.263075,0.483746,0.976059,0.602972,0.61364,0.781508,0.34284,0.849122,0.744759,0.938118,0.0641545,0.0924892,0.293564,0.297074,0.323046,0.799763,0.0554388,0.187735,0.879062,0.687562,0.670072,0.511016,0.634581,0.919035,0.519277,0.353036,0.924959,0.997987,0.061113,0.879084,0.382886,0.303951,0.709938,0.0540303,0.775538,0.234778,0.506777,0.858567,0.115143,0.292857,0.053732,0.231443,0.56477,0.147703,0.222506,0.21834,0.959343,0.427431,0.863725,0.811702,0.519536,0.154686,0.786959,0.479295,0.698997,0.145843,0.373417,0.708898,0.196225,0.46099,0.486393,0.24493,0.219563,0.858724,0.0675717,0.29077,0.934126,0.644922,0.567981,0.462472,0.193815,0.0338146,0.384553,0.157379,0.465618,0.271931,0.411145,0.650091,0.694589,0.871209,0.251117,0.455908,0.470462,0.0923746,0.0971439,0.313945,0.385998,0.330063,0.294617,0.536743,0.525862,0.421922,0.790357,0.166992,0.908787,0.466358,0.488742,0.078514,0.129425,0.737273,0.270681,0.590006,0.948297,0.493779,0.413009,0.0181804,0.203521,0.0474322,0.360658,0.968875,0.663575,0.939827,0.191579,0.0011577,0.59343,0.712727,0.718659,0.565096,0.670229,0.413108,0.0854391,0.717306,0.881312,0.284372,0.23454,0.185376,0.651368,0.0436689,0.524439,0.655991,0.671866,0.953968,0.187428,0.503645,0.782893,0.224354,0.47203,0.691336,0.754542,0.336161,0.56826,0.148902,0.495609,0.131209,0.301191,0.694615,0.268766,0.453439,0.591849,0.936587,0.708762,0.549254,0.614344,0.600745,0.147981,0.475815,0.73744,0.728207,0.0433362,0.261353,0.911898,0.315994,0.686836,0.402012,0.0547891,0.073253,0.878054,0.753119,0.855066,0.764364,0.934542,0.720726,0.661029,0.324584,0.172081,0.626677,0.316155,0.258008,0.835014,0.353729,0.0808053,0.475016,0.0324964,0.722849,0.481572,0.766082,0.558376,0.538838,0.12699,0.974354,0.961888,0.255975,0.613117,0.141519,0.273762,0.126834,0.153103,0.236018,0.680949,0.322463,0.573034,0.378533,0.755083,0.0924519,0.512667,0.417918,0.324492,0.688728,0.0745813,0.323326,0.701661,0.697504,0.324813,0.480509,0.376253,0.889736,0.235693,0.270542,0.14462,0.0621181,0.533744,0.757889,0.0739444,0.0466288,0.930437,0.343419,0.636157,0.880493,0.393896,0.0383729,0.671386,0.812277,0.270828,0.371775,0.226239,0.264774,0.940337,0.880287,0.587476,0.911299,0.0245627,0.61713,0.251358,0.101874,0.124717,0.0974349,0.243358,0.38475,0.883845,0.945184,0.241779,0.382365,0.944513,0.655752,0.939078,0.55051,0.642535,0.930063,0.585674,0.601761,0.400942,0.3188,0.540314,0.0347419,0.307546,0.582674,0.643774,0.0637885,0.248401,0.635625,0.400926,0.225187,0.0202032,0.823193,0.264063,0.45149,0.592457,0.881378,0.968677,0.094707,0.98744,0.0204852,0.846811,0.240925,0.292899,0.0133165,0.31285,0.2672,0.393766,0.59107,0.730157,0.271373,0.139841,0.9882,0.115338,0.352172,0.52254,0.196345,0.126773,0.915115,0.669284,0.354933,0.528145,0.976797,0.836584,0.497017,0.205818,0.03481,0.356122,0.524918,0.55522,0.539565,0.434199,0.825566,0.1705,0.44538,0.519513,0.805968,0.109842,0.744285,0.530981,0.897306,0.825337,0.785551,0.185577,0.967312,0.127482,0.831668,0.876283,0.201088,0.910665,0.274135,0.200206,0.538187,0.139257,0.237247,0.670495,0.968897,0.833797,0.320413,0.0311214,0.452398,0.598286,0.908091,0.56236,0.88623,0.377519,0.361154,0.824661,0.693859,0.678676,0.70871,0.59566,0.732973,0.413934,0.100792,0.580994,0.165084,0.202714,0.236224,0.294582,0.623344,0.499254,0.761832,0.795828,0.275497,0.926728,0.896567,0.559914,0.619616,0.734095,0.737176,0.888795,0.616052,0.369954,0.115372,0.619528,0.138677,0.402166,0.304136,0.362168,0.0354458,0.498776,0.371093,0.198993,0.388502,0.0844263,0.445539,0.625289,0.509801,0.661345,0.648853,0.473315,0.827002,0.0207602,0.366114,0.194719,0.682178,0.652098,0.265859,0.4574,0.55612,0.0609462,0.238784,0.785638,0.0950302,0.354,0.251289,0.0823564,0.204647,0.606253,0.243279,0.656855,0.836903,0.689301,0.83719,0.0263805,0.188852,0.329942,0.468798,0.290411,0.806668,0.3317,0.267291,0.069315,0.833385,0.853563,0.778598,0.43276,0.465679,0.847166,0.550563,0.493281,0.618871,0.500866,0.305737,0.36245,0.3397,0.757766,0.0223232,0.281305,0.475066,0.763083,0.525452,0.837858,0.378881,0.51179,0.898138,0.828173,0.286264,0.748599,0.638104,0.709165,0.379582,0.149777,0.525527,0.30193,0.59112,0.118245,0.662659,0.821205,0.422307,0.942411,0.404645,0.978064,0.148063,0.980281,0.991381,0.409229,0.60662,0.620503,0.43591,0.394091,0.367559,0.371699,0.837652,0.798357,0.563086,0.956334,0.649962,0.490406,0.496104,0.491556,0.0432827,0.132456,0.454128,0.523092,0.000124991,0.964341,0.914982,0.582625,0.409268,0.548721,0.274211,0.694989,0.47968,0.334217,0.944229,0.988713,0.391712,0.14505,0.0800256,0.878201,0.879954,0.478492,0.795462,0.0546529,0.86858,0.565854,0.983228,0.565043,0.442218,0.490195,|0.892381,0.26557,0.0167791,0.826163,0.695594,0.993158,0.455028,0.901628,0.39393,0.761215,0.414278,0.054562,0.744827,0.527362,0.879141,0.682394,0.654122,0.183686,0.515636,0.271171,0.651836,0.393783,0.994362,0.126958,0.701509,0.248875,0.470433,0.624761,0.313736,0.888059,0.130073,0.794596,0.669477,0.63402,0.443557,0.122929,0.193332,0.936098,0.57631,0.0380735,0.535581,0.679996,0.948167,0.307991,0.391905,0.199427,0.351923,0.00246376,0.944351,0.0770362,0.838014,0.628288,0.610646,0.873597,0.418057,0.125693,0.797928,0.282568,0.382124,0.454863,0.745279,0.789712,0.972759,0.305605,0.0998387,0.276034,0.158841,0.581553,0.80431,0.994959,0.616111,0.215043,0.0932057,0.991453,0.36574,0.986864,0.950875,0.0354698,0.532111,0.77162,0.515101,0.550402,0.22967,0.253163,0.622068,0.668929,0.91369,0.0758785,0.46266,0.797673,0.956119,0.106395,0.402964,0.971823,0.534393,0.563065,0.381607,0.138251,0.561891,0.0686395,0.458641,0.298959,0.60879,0.636445,0.995799,0.889247,0.221331,0.415665,0.909152,0.177635,0.789916,0.336861,0.00978458,0.506259,0.375113,0.291885,0.39877,0.942484,0.575955,0.841455,0.214281,0.809115,0.352206,0.777719,0.369644,0.180125,0.418883,0.94695,0.75779,0.151376,0.756015,0.0613236,0.820858,0.921308,0.335971,0.898747,0.0521994,0.507398,0.92316,0.427796,0.296394,0.105825,0.316449,0.478045,0.909427,0.954755,0.627002,0.0943363,0.175819,0.361074,0.0153044,0.398779,0.59739,0.867165,0.0159376,0.633856,0.706673,0.649342,0.986142,0.79912,0.54843,0.864319,0.437528,0.501962,0.499084,0.700571,0.829977,0.810583,0.944266,0.257578,0.876857,0.12582,0.0549638,0.463864,0.580535,0.950865,0.95095,0.591755,0.841185,0.394039,0.727991,0.740686,0.80652,0.863379,0.0265756,0.8017,0.0456348,0.115838,0.866324,0.932627,0.0974871,0.933135,0.0514044,0.43869,0.448313,0.680475,0.031086,0.668115,0.71798,0.340526,0.792283,0.951767,0.698444,0.69607,0.808014,0.135272,0.50061,0.940084,0.439834,0.0722148,0.961472,0.283862,0.202455,0.647775,0.288534,0.0893362,0.624235,0.434597,0.301838,0.117502,0.332348,0.458138,0.458621,0.67849,0.350487,0.951225,0.269012,0.729363,0.447163,0.245059,0.477547,0.689065,0.021472,0.168795,0.643749,0.714372,0.422059,0.101803,0.589583,0.769972,0.968766,0.913763,0.4524,0.97942,0.986938,0.679225,0.0242211,0.085317,0.734663,0.576445,0.765702,0.804263,0.963005,0.580156,0.629814,0.16031,0.674488,0.582692,0.425941,0.143309,0.247569,0.264908,0.654881,0.747468,0.308584,0.98021,0.0561556,0.375095,0.513344,0.887251,0.342229,0.876079,0.763317,0.564523,0.0142094,0.114675,0.0153117,0.247603,0.438512,0.182625,0.0879529,0.181252,0.698178,0.993278,0.0401759,0.0738119,0.301565,0.0042696,0.360782,0.0606217,0.685266,0.41801,0.0397591,0.0323017,0.67523,0.521092,0.244407,0.0262715,0.890344,0.0223315,0.347556,0.405974,0.114676,0.912194,0.465515,0.300496,0.794177,0.921339,0.304822,0.294215,0.112239,0.0163931,0.604603,0.197908,0.211203,0.898069,0.87857,0.00190842,0.457572,0.0231423,0.907271,0.136065,0.777851,0.875869,0.721313,0.71662,0.354046,0.841887,0.307144,0.65383,0.334978,0.8122,0.745273,0.807889,0.567248,0.513213,0.120726,0.516819,0.571069,0.201097,0.863153,0.755064,0.0349783,0.681536,0.920382,0.044494,0.888662,0.768554,0.859453,0.642008,0.546235,0.348507,0.755296,0.80368,0.0326909,0.49882,0.113315,0.533699,0.572371,0.384159,0.345073,0.351325,0.600412,0.440007,0.119073,0.376131,0.568057,0.188917,0.979907,0.863221,0.251788,0.149815,0.0656313,0.606983,0.14067,0.0115995,0.00418752,0.664346,0.83581,0.274244,0.599839,0.0951735,0.638054,0.650751,0.362093,0.429951,0.347026,0.845818,0.562485,0.247804,0.548822,0.935633,0.939478,0.017082,0.715958,0.706601,0.858959,0.0114673,0.797283,0.253848,0.886384,0.35624,0.36558,0.723435,0.0148558,0.792437,0.464957,0.0902997,0.202788,0.526514,0.571935,0.51692,0.629091,0.636821,0.520701,0.777113,0.694746,0.524854,0.0690646,0.626258,0.428216,0.956661,0.162393,0.0417342,0.712949,0.389044,0.534087,0.419897,0.763383,0.974341,0.233771,0.0712457,0.390192,0.51621,0.423594,0.00657684,0.931878,0.428763,0.157173,0.0125728,0.023524,0.293121,0.347332,0.554239,0.170212,0.637686,0.347481,0.836587,0.537277,0.444495,0.617018,0.377369,0.0962535,0.975554,0.876067,0.218617,0.35023,0.768794,0.00182688,0.0192917,0.12799,0.490463,0.74839,0.698404,0.700918,0.644332,0.803002,0.787337,0.650208,0.147677,0.53752,0.0522745,0.0918844,0.726075,0.674052,0.200826,0.574264,0.493044,0.679562,0.110053,0.945127,0.050077,0.155511,0.93782,0.129154,0.313545,0.855311,0.657463,0.352313,0.0232688,0.997861,0.425967,0.316911,0.747325,0.638169,0.676534,0.932765,0.239125,0.00340629,0.433566,0.598759,0.0668367,0.891213,0.402322,0.851593,0.00557965,0.788727,0.606827,0.415664,0.137477,0.309345,0.841969,0.709973,0.303939,0.3188,0.626616,0.382422,0.692723,0.684336,0.797256,0.685045,0.935995,0.574891,0.771972,0.357486,0.875806,0.348958,0.492094,0.185374,0.546449,0.643189,0.45662,0.776623,0.362572,0.14737,0.131069,0.539597,0.851337,0.799677,0.906055,0.0109478,0.400306,0.592893,0.414641,0.184273,0.289861,0.688119,0.00124007,0.675515,0.416234,0.730455,0.340193,0.0681846,0.875346,0.705438,0.320343,0.96096,0.468914,0.320874,0.149415,0.797321,0.69923,0.243458,0.934085,0.852024,0.437276,0.717257,0.359301,0.16558,0.591944,0.348286,0.358087,0.645741,0.627039,0.12175,0.52523,0.593174,0.499404,0.29223,0.762235,0.67756,0.715759,0.311904,0.00103801,0.891296,0.568515,0.518254,0.695651,0.431202,0.629833,0.0940654,0.411707,0.684605,0.866136,0.219528,0.558011,0.762273,0.696914,0.0598663,0.34844,0.453869,0.868037,0.629822,0.504345,0.829729,0.768102,0.436929,0.449126,0.832227,0.607583,0.491976,0.99084,0.996023,0.554128,0.465555,0.485853,0.411341,0.23174,0.79564,0.789036,0.826552,0.6576,0.594133,0.413057,0.697406,0.194798,0.423418,0.192955,0.951917,0.459763,0.148194,0.720773,0.635104,0.282662,0.18482,0.538145,0.362545,0.374163,0.433463,0.325685,0.361581,0.44332,0.396456,0.902579,0.663792,0.739867,0.222748,0.592546,0.844689,0.575059,0.44222,0.674629,0.186222,0.166518,0.417889,0.639897,0.999949,0.552652,0.508141,0.736174,0.396226,0.689001,0.548814,0.783864,0.758322,0.651232,0.118045,0.823528,0.680806,0.387185,0.980049,0.445438,0.216552,0.0685898,0.111546,0.302958,0.0823296,0.827075,0.807479,0.942208,0.972478,0.689663,0.0770605,0.377649,0.945172,0.43161,0.883785,0.997496,0.612601,0.346367,0.860957,0.206126,0.491758,0.184334,0.986792,0.100033,0.786855,0.526258,0.874824,0.523207,0.773778,0.16965,0.647812,0.932236,0.68213,0.729545,0.540722,0.61206,0.7444,0.533139,0.735832,0.302185,0.773248,0.361291,0.396784,0.558393,0.857382,0.506661,0.850976,0.565531,0.219549,0.122324,0.378577,0.217358,0.772972,0.652444,0.101476,0.23528,0.900433,0.299941,0.0231457,0.636429,0.672221,0.836996,0.795579,0.662658,0.228001,0.345532,0.9442,0.925218,0.756479,0.321548,0.868998,0.994075,0.972419,0.266102,0.803703,0.509491,0.471952,0.503048,0.561744,0.31542,0.0727471,0.169155,0.911721,0.228438,0.743836,0.0446448,0.80968,0.579184,0.990629,0.478823,0.592908,0.625076,0.64811,0.0351222,0.175199,0.919102,0.393547,0.993342,0.163638,0.480522,0.600446,0.418861,0.631763,0.0577433,0.865236,0.1969,0.59966,0.084613,0.505337,0.19084,0.764602,0.821699,0.984068,0.52546,0.447509,0.805737,0.0774661,0.7079,0.694163,0.814018,0.68784,0.0367548,0.0157626,0.737518,0.0479554,0.211305,0.863962,0.487336,0.352331,0.565856,0.454804,0.0550962,0.666444,0.313332,0.92322,0.672014,0.925696,0.132475,0.271469,0.196772,0.671758,0.141774,0.706326,0.999556,0.708275,0.095718,0.575172,0.575281,0.384861,0.985179,0.576619,0.0444815,0.788135,0.343432,0.492719,0.0649027,0.173866,0.520491,0.629059,0.614312,0.404903,0.578545,0.726617,0.37259,0.653492,0.73316,0.301818,0.862556,0.379543,0.841758,0.600125,0.387576,0.870874,0.328039,0.867582,0.27303,0.159293,0.808557,0.350138,0.295156,0.52946,0.429883,0.0289712,0.426606,0.241027,0.596257,0.963161,0.883927,0.850131,0.972942,0.641838,0.711333,0.555925,0.226273,0.481846,0.702193,0.283916,0.178987,0.797939,0.98429,0.125909,0.275246,0.399949,0.990576,0.87857,0.973134,0.149859,0.931684,0.741798,0.298148,0.0866435,0.0798725,0.365196,0.515516,0.00876141,0.179358,0.699644,0.225877,0.152915,0.984599,0.393069,0.576903,0.601423,0.40116,0.892975,0.0413865,0.488891,0.962884,0.792652,0.415132,0.0114298,0.209683,0.0716356,0.659141,0.00593513,0.753873,0.970393,0.420508,0.867496,0.63803,0.863628,0.080075,0.396913,0.144539,0.0215781,0.712571,0.582098,0.834553,0.282228,0.978368,0.209158,0.322097,0.768439,0.737194,0.87197,0.24963,0.596388,0.25457,0.605908,0.956471,0.116809,0.736572,0.882764,0.396138,0.183769,0.00201106,0.999916,0.449735,0.686263,0.0433735,0.989194,0.903191,0.878214,0.984551,0.34575,0.335473,0.656986,0.297921,0.48139,0.749695,0.302804,0.696379,0.370931,0.338862,0.311873,0.516073,0.621827,0.0254213,0.0411234,0.939894,0.798355,0.360634,0.347625,0.33288,0.66704,0.443593,0.0975831,0.36705,0.297186,0.548383,0.388284,0.0176553,0.239593,0.720472,0.246973,0.582866,0.480513,0.758106,0.114493,0.504747,0.202981,0.0856352,0.410299,0.417313,0.789167,0.651228,0.283045,0.27507,0.666889,0.385601,0.0302098,0.0992758,0.0612407,0.645014,0.236371,0.467907,0.275226,0.758174,|0.0325194,0.170396,0.248824,0.481349,0.456737,0.570232,0.569615,0.807293,0.197883,0.23164,0.459342,0.35579,0.678053,0.426486,0.0471216,0.631989,0.53425,0.797521,0.911561,0.469999,0.887844,0.355385,0.184593,0.0138443,0.670789,0.153883,0.891201,0.26561,0.876596,0.865805,0.647212,0.499197,0.173734,0.326544,0.355884,0.0217251,0.0246809,0.468644,0.898085,0.545238,0.414988,0.498692,0.151372,0.950863,0.521505,0.424296,0.159177,0.0907247,0.807998,0.327318,0.912569,0.598007,0.59987,0.701015,0.507906,0.609065,0.859787,0.360913,0.455889,0.00919706,0.567377,0.508815,0.844549,0.946883,0.576201,0.398172,0.810345,0.888557,0.556286,0.274672,0.515338,0.904223,0.795705,0.862776,0.269153,0.317764,0.697615,0.638629,0.130207,0.980358,0.873194,0.365593,0.397066,0.325062,0.631425,0.988021,0.417643,0.400683,0.514692,0.608855,0.784501,0.188577,0.85492,0.0964329,0.286837,0.578507,0.354914,0.58378,0.0318154,0.295275,0.860572,0.127499,0.678088,0.214682,0.115413,0.45522,0.194812,0.0700507,0.185036,0.535498,0.730754,0.85364,0.00344288,0.438104,0.712377,0.286343,0.172975,0.719799,0.385911,0.0243362,0.817168,0.00327265,0.458054,0.726965,0.753697,0.225072,0.858694,0.21873,0.4886,0.40263,0.974194,0.554544,0.00553447,0.54418,0.578409,0.785277,0.806628,0.935589,0.717659,0.417773,0.298733,0.728475,0.0799689,0.440319,0.0744846,0.713985,0.239425,0.150465,0.148672,0.306204,0.567083,0.908936,0.49935,0.102965,0.925348,0.614344,0.459039,0.796944,0.0588723,0.0293818,0.512417,0.125299,0.457722,0.792964,0.0679047,0.8416,0.916899,0.21625,0.792082,0.666822,0.168334,0.011119,0.056506,0.330662,0.631918,0.638764,0.186291,0.0625746,0.434833,0.589913,0.0656255,0.152658,0.219451,0.0857283,0.123202,0.785764,0.101091,0.575017,0.53147,0.229596,0.248665,0.888131,0.368372,0.159125,0.149537,0.276928,0.097599,0.488333,0.432003,0.673577,0.189747,0.115957,0.490683,0.363149,0.368267,0.586977,0.255846,0.633075,0.479079,0.0804477,0.432142,0.160601,0.975152,0.0777096,0.0219067,0.641144,0.414636,0.630208,0.765266,0.942828,0.107194,0.919736,0.736707,0.834237,0.0472903,0.904771,0.393088,0.0997024,0.735507,0.528637,0.796834,0.48272,0.188159,0.918241,0.206524,0.210817,0.262999,0.48767,0.662796,0.735113,0.924038,0.36385,0.250345,0.410335,0.0445682,0.385942,0.471305,0.587275,0.614119,0.211334,0.89947,0.0537621,0.662078,0.317384,0.773793,0.149744,0.167114,0.714008,0.722214,0.353371,0.408349,0.907005,0.064795,0.209438,0.153331,0.0557118,0.808866,0.706171,0.529222,0.999299,0.535047,0.169761,0.635832,0.655484,0.452246,0.528158,0.450423,0.441247,0.619517,0.969297,0.433726,0.508002,0.0749878,0.270338,0.808421,0.0880064,0.470147,0.835629,0.396183,0.213692,0.489543,0.336613,0.563719,0.989697,0.196329,0.706734,0.427947,0.650267,0.927279,0.224308,0.703626,0.459146,0.246583,0.0132546,0.139156,0.0198122,0.530851,0.00743741,0.421814,0.612862,0.234618,0.636132,0.205405,0.467299,0.485924,0.693236,0.525263,0.423178,0.67225,0.164423,0.521641,0.103893,0.540669,0.247821,0.159506,0.492899,0.42649,0.800069,0.74708,0.194532,0.0182925,0.398671,0.0625131,0.466092,0.0167668,0.0144135,0.857292,0.0621126,0.578209,0.122371,0.910503,0.0519955,0.617161,0.39955,0.952998,0.130405,0.593077,0.156839,0.966288,0.888076,0.204763,0.557983,0.703856,0.388689,0.712959,0.868095,0.24707,0.465309,0.322422,0.365382,0.28494,0.711175,0.116548,0.357109,0.0187397,0.273907,0.769498,0.172881,0.599382,0.289075,0.271005,0.836741,0.498825,0.393953,0.207318,0.175037,0.0869048,0.905248,0.0721031,0.498395,0.790082,0.712097,0.991617,0.0744907,0.964115,0.685972,0.0244573,0.482586,0.759616,0.134129,0.818683,0.216307,0.903932,0.0393533,0.158083,0.325054,0.206979,0.331875,0.745929,0.529231,0.103676,0.112808,0.536287,0.676997,0.191641,0.268831,0.534492,0.109211,0.693668,0.95264,0.0512669,0.747108,0.925759,0.758971,0.976836,0.248895,0.570107,0.311876,0.250836,0.77415,0.544163,0.364418,0.013546,0.950507,0.0845181,0.812559,0.560111,0.624441,0.042623,0.274632,0.554923,0.942927,0.245621,0.636293,0.317278,0.0163769,0.85264,0.862717,0.808429,0.276535,0.132193,0.63748,0.427364,0.386837,0.231272,0.504124,0.769539,0.877123,0.496153,0.571955,0.711841,0.584413,0.0334623,0.82427,0.101443,0.604204,0.273975,0.853862,0.194503,0.0949703,0.389549,0.623703,0.749316,0.92501,0.69635,0.467286,0.310935,0.606953,0.431832,0.739694,0.411683,0.841239,0.786956,0.774945,0.611109,0.949936,0.525244,0.882527,0.695903,0.932073,0.175208,0.753952,0.908647,0.621586,0.973711,0.717998,0.665627,0.700758,0.301571,0.233531,0.582338,0.635975,0.590344,0.48465,0.118055,0.421995,0.501561,0.273045,0.909807,0.203977,0.69785,0.860865,0.359651,0.554977,0.542825,0.945894,0.311227,0.119485,0.793611,0.0894905,0.10144,0.849395,0.568269,0.830692,0.417877,0.191873,0.447062,0.0688166,0.328032,0.587684,0.62863,0.825578,0.224912,0.212251,0.964788,0.483417,0.399933,0.580084,0.477297,0.521071,0.601604,0.768671,0.243061,0.929312,0.385168,0.991634,0.876185,0.364032,0.107692,0.493934,0.562084,0.195855,0.960523,0.810632,0.660085,0.0850832,0.688465,0.241395,0.946879,0.976767,0.043433,0.381418,0.870778,0.75528,0.0246689,0.664906,0.44267,0.659218,0.918803,0.599009,0.449644,0.400174,0.0607312,0.106906,0.657482,0.925244,0.566712,0.7161,0.893137,0.465739,0.474662,0.175261,0.597523,0.572564,0.937198,0.239441,0.786727,0.819096,0.0339971,0.607832,0.712722,0.882716,0.698748,0.90998,0.540944,0.00899136,0.955267,0.542698,0.664874,0.886706,0.270625,0.851408,0.640559,0.217454,0.084898,0.205462,0.418356,0.104794,0.658746,0.187381,0.0346746,0.465133,0.16065,0.698979,0.505238,0.87668,0.392318,0.407786,0.660182,0.981178,0.99864,0.245937,0.20521,0.163317,0.186996,0.528493,0.314041,0.209333,0.358819,0.651936,0.785882,0.874746,0.221721,0.268735,0.58576,0.231597,0.550845,0.115058,0.90501,0.443816,0.160873,0.427306,0.660847,0.374881,0.431576,0.658473,0.179752,0.973512,0.929301,0.181943,0.806227,0.687388,0.368519,0.297234,0.830791,0.225498,0.862491,0.988721,0.800368,0.0816258,0.169291,0.512943,0.391074,0.949781,0.0713636,0.45403,0.68864,0.717426,0.658734,0.0738429,0.414693,0.321424,0.870289,0.705485,0.520463,0.147864,0.892568,0.859512,0.228359,0.159701,0.348196,0.104328,0.00962245,0.179903,0.15438,0.343938,0.262103,0.656369,0.295006,0.509585,0.793225,0.224237,0.00538719,0.751805,0.676611,0.0546725,0.654413,0.245846,0.041612,0.127968,0.502621,0.194989,0.461681,0.0256674,0.467332,0.161999,0.491106,0.21394,0.902964,0.143518,0.369118,0.780118,0.305739,0.683548,0.721939,0.525935,0.946687,0.415198,0.982,0.385454,0.843509,0.33968,0.0990632,0.84845,0.276975,0.871223,0.857588,0.18261,0.314345,0.426241,0.59154,0.362184,0.310965,0.523654,0.615269,0.852762,0.412022,0.0980047,0.816061,0.421448,0.201604,0.0465814,0.848901,0.388988,0.835734,0.73139,0.772603,0.25794,0.552122,0.69501,0.730668,0.735472,0.112273,0.0469611,0.789817,0.111769,0.274963,0.34862,0.597377,0.452201,0.56912,0.127737,0.833408,0.812845,0.483928,0.908034,0.865267,0.448389,0.0776399,0.963136,0.0672358,0.714521,0.967003,0.941559,0.0800359,0.512695,0.629342,0.234176,0.954704,0.67266,0.167015,0.925694,0.578448,0.795635,0.682088,0.86081,0.452119,0.104463,0.391759,0.132381,0.363123,0.360158,0.0544648,0.102249,0.557129,0.632346,0.804773,0.0756713,0.147201,0.322035,0.801136,0.945635,0.435766,0.136729,0.373628,0.69778,0.728162,0.312982,0.228793,0.9857,0.239372,0.472707,0.192278,0.903467,0.361205,0.291201,0.811794,0.797893,0.228659,0.757862,0.0150086,0.934993,0.663836,0.837946,0.546537,0.480835,0.62431,0.433983,0.448785,0.261745,0.579273,0.387193,0.908259,0.156453,0.223417,0.425412,0.44891,0.295935,0.655532,0.113506,0.542216,0.551187,0.909949,0.813446,0.526923,0.685442,0.0105159,0.57658,0.506086,0.161696,0.920736,0.502386,0.55564,0.275139,0.590985,0.634355,0.165262,0.258267,0.223629,0.502114,0.520429,0.789953,0.980414,0.369854,0.673667,0.506969,0.65327,0.56346,0.474775,0.668178,0.109171,0.178795,0.734097,0.575687,0.295784,0.355741,0.223604,0.884613,0.967842,0.24259,0.791909,0.431946,0.0755613,0.601304,0.282079,0.432181,0.482889,0.918653,0.65667,0.0169515,0.860267,0.122901,0.701711,0.759298,0.989435,0.538349,0.850139,0.563085,0.134908,0.780922,0.429348,0.573248,0.863104,0.588346,0.509972,0.160515,0.567417,0.262915,0.518262,0.628803,0.570532,0.127275,0.848671,0.328131,0.43669,0.0923714,0.36149,0.855566,0.835947,0.169366,0.852265,0.860805,0.144038,0.15829,0.448477,0.464721,0.112329,0.153696,0.433947,0.949584,0.0640493,0.548826,0.719048,0.440626,0.22304,0.426404,0.429947,0.795948,0.542219,0.621712,0.994112,0.516394,0.264449,0.837214,0.534537,0.355563,0.514058,0.643878,0.0454684,0.0397008,0.623654,0.335511,0.756702,0.0229849,0.72706,0.900766,0.437113,0.616542,0.399679,0.38536,0.770933,0.488177,0.870719,0.729456,0.568683,0.570388,0.799418,0.745384,0.899207,0.0453491,0.588587,0.278918,0.310083,0.580234,0.194847,0.258867,0.856186,0.99632,0.215445,0.224109,0.734972,0.45635,0.751629,0.991233,0.137203,0.177485,0.199291,0.921044,0.0723445,0.980832,0.827779,0.19436,0.908874,0.691106,0.929457,0.695968,0.221051,0.144511,0.683742,0.945057,0.501948,0.888063,0.661693,0.0649355,0.813277,0.675622,0.727587,0.55283,0.955106,0.0917356,|0.0131564,0.0240591,0.330555,0.232842,0.353155,0.296636,0.280074,0.866861,0.116952,0.0560545,0.868952,0.824543,0.53206,0.041105,0.731889,0.454539,0.419744,0.0619383,0.502482,0.723038,0.127063,0.332011,0.602733,0.44933,0.887155,0.651675,0.477227,0.73401,0.0573074,0.633559,0.482153,0.128435,0.0120146,0.172994,0.070301,0.0837306,0.951707,0.363632,0.685084,0.192083,0.91541,0.138088,0.63813,0.964178,0.85693,0.499363,0.576425,0.620354,0.399926,0.0862316,0.179731,0.699355,0.673401,0.555553,0.919869,0.684635,0.608699,0.41744,0.230279,0.55742,0.599187,0.433477,0.58192,0.3097,0.035964,0.934036,0.0776795,0.732269,0.0822609,0.147448,0.895338,0.787598,0.259822,0.416868,0.416845,0.181387,0.306629,0.497183,0.644177,0.907954,0.207597,0.540783,0.788104,0.728484,0.513662,0.579032,0.170523,0.016819,0.92469,0.0743052,0.745164,0.516069,0.979886,0.152762,0.18739,0.481082,0.0151368,0.128668,0.662625,0.38248,0.160772,0.600586,0.158486,0.826369,0.179552,0.0704456,0.0189865,0.529795,0.422657,0.563764,0.0960774,0.724307,0.987038,0.113631,0.948833,0.119319,0.118648,0.0613638,0.689813,0.239161,0.353688,0.374843,0.592269,0.513788,0.764263,0.577794,0.999584,0.754618,0.219317,0.531682,0.0918191,0.6801,0.281263,0.818606,0.7408,0.616217,0.209789,0.187062,0.182711,0.171472,0.800121,0.786332,0.308866,0.89015,0.183694,0.612015,0.838589,0.936854,0.323525,0.768493,0.559872,0.00253659,0.654373,0.953525,0.138029,0.879502,0.803957,0.439789,0.255942,0.680723,0.923113,0.355209,0.165743,0.36427,0.710507,0.410207,0.265679,0.291867,0.509117,0.93942,0.633133,0.489818,0.1883,0.835732,0.00903076,0.782036,0.661703,0.316251,0.705829,0.64406,0.833955,0.680372,0.474599,0.241744,0.411513,0.803287,0.757637,0.167724,0.233898,0.394581,0.736047,0.387696,0.152757,0.956012,0.0895171,0.702842,0.441346,0.904381,0.764144,0.504001,0.881383,0.0528127,0.648313,0.828012,0.657335,0.0276538,0.958514,0.662829,0.581438,0.650458,0.975782,0.196254,0.820383,0.158022,0.645711,0.96492,0.530266,0.869118,0.672678,0.49075,0.623758,0.708951,0.355383,0.617891,0.391637,0.960193,0.957734,0.306684,0.257121,0.588205,0.691049,0.351652,0.971056,0.872198,0.382067,0.799274,0.674633,0.476731,0.925222,0.759316,0.670212,0.307371,0.438366,0.487294,0.814447,0.150307,0.34148,0.706352,0.623913,0.528816,0.736303,0.41363,0.871246,0.435146,0.444368,0.274322,0.94645,0.26062,0.758502,0.848545,0.117143,0.44763,0.00905645,0.265183,0.0331739,0.838034,0.187293,0.74516,0.718821,0.689725,0.967261,0.264623,0.358704,0.907938,0.97366,0.922316,0.648891,0.141982,0.536035,0.557446,0.96761,0.23476,0.133116,0.412794,0.768976,0.683299,0.887422,0.398054,0.938797,0.319113,0.540253,0.401223,0.578303,0.365569,0.130417,0.125267,0.681539,0.865123,0.660757,0.163325,0.816342,0.135071,0.853855,0.602238,0.26682,0.69229,0.924513,0.418531,0.264223,0.191895,0.544501,0.355183,0.094254,0.473342,0.957375,0.907139,0.820534,0.404971,0.191818,0.0379629,0.521472,0.962382,0.0344525,0.685388,0.292538,0.842797,0.963704,0.720285,0.572857,0.965834,0.325888,0.508972,0.655976,0.379947,0.41199,0.326797,0.295445,0.40679,0.560693,0.868971,0.19637,0.663101,0.679851,0.110523,0.622764,0.258219,0.743361,0.641583,0.329603,0.383143,0.396754,0.698344,0.814795,0.372888,0.15558,0.000699699,0.406195,0.222774,0.629102,0.239348,0.967393,0.134572,0.472906,0.631985,0.201052,0.175029,0.572866,0.461991,0.166763,0.676615,0.156511,0.899709,0.0230731,0.432053,0.626506,0.354435,0.486058,0.534832,0.235498,0.571544,0.884842,0.193131,0.10126,0.352426,0.308983,0.529025,0.732653,0.483549,0.880636,0.431667,0.653293,0.498328,0.462436,0.317549,0.000137031,0.376003,0.658656,0.32681,0.221462,0.69573,0.809998,0.313906,0.957494,0.950284,0.535288,0.909701,0.787387,0.786153,0.0624749,0.071995,0.130067,0.109903,0.872099,0.644241,0.691345,0.182258,0.0570757,0.104997,0.18886,0.764887,0.467365,0.238739,0.645719,0.795687,0.340129,0.326178,0.488422,0.024212,0.907099,0.958455,0.582766,0.536611,0.948186,0.296759,0.439824,0.852633,0.882342,0.679819,0.749416,0.378009,0.598754,0.27257,0.739778,0.749202,0.333538,0.491181,0.511723,0.843937,0.273289,0.857459,0.162657,0.0992867,0.915358,0.776165,0.328222,0.0113031,0.734844,0.559455,0.682374,0.928334,0.635477,0.954439,0.618978,0.8484,0.98926,0.986496,0.559083,0.938699,0.928204,0.30089,0.714106,0.404692,0.84994,0.534375,0.571542,0.249483,0.950217,0.409736,0.391227,0.551319,0.133405,0.435925,0.578247,0.223835,0.217217,0.223584,0.677556,0.296385,0.376032,0.175045,0.741073,0.834803,0.530435,0.469568,0.226129,0.944967,0.275113,0.702772,0.982437,0.375793,0.132837,0.57579,0.692202,0.607504,0.293602,0.052062,0.776665,0.00343299,0.696975,0.0529953,0.932066,0.211938,0.418682,0.234969,0.703948,0.693535,0.83322,0.897314,0.963918,0.924252,0.497866,0.803597,0.00674647,0.636459,0.255205,0.139446,0.962278,0.566311,0.494247,0.197942,0.157129,0.84675,0.594572,0.237377,0.318573,0.31725,0.263373,0.345259,0.852083,0.871936,0.87404,0.456437,0.0761796,0.0364085,0.679543,0.107954,0.247669,0.217199,0.437673,0.823505,0.724476,0.143537,0.262793,0.534845,0.769269,0.334675,0.26076,0.729159,0.499296,0.655047,0.493868,0.669379,0.525988,0.127471,0.0725194,0.388458,0.994402,0.493183,0.333517,0.620889,0.402042,0.655201,0.931371,0.912119,0.240226,0.868618,0.201014,0.132075,0.998906,0.89879,0.0180211,0.109552,0.965697,0.0329515,0.635253,0.17227,0.151053,0.920368,0.163729,0.754628,0.315042,0.0899855,0.178981,0.387833,0.208735,0.562387,0.965134,0.157006,0.883877,0.24951,0.337004,0.962955,0.918034,0.901536,0.778175,0.349168,0.652362,0.891794,0.738544,0.463857,0.030336,0.405726,0.943562,0.134889,0.655344,0.09219,0.43708,0.594118,0.44995,0.696913,0.846305,0.718391,0.982355,0.828595,0.366366,0.602092,0.937018,0.913406,0.84598,0.612982,0.145731,0.723134,0.283947,0.378933,0.267244,0.160513,0.834956,0.256675,0.634702,0.0659034,0.30179,0.976161,0.90497,0.658372,0.337379,0.855471,0.262069,0.444709,0.0112683,0.861443,0.00641519,0.454278,0.561873,0.248645,0.299911,0.354621,0.841502,0.329865,0.927798,0.4362,0.98252,0.450114,0.0577216,0.600031,0.47658,0.811215,0.924453,0.2643,0.0910754,0.546836,0.05632,0.47394,0.568277,0.34211,0.305055,0.462363,0.516283,0.0401812,0.484126,0.403372,0.528549,0.10463,0.707552,0.637568,0.882566,0.586525,0.384358,0.707499,0.583701,0.751459,0.5877,0.384606,0.203644,0.744452,0.604653,0.699383,0.455883,0.697539,0.718356,0.198322,0.189796,0.522164,0.798712,0.827987,0.857022,0.2351,0.335743,0.745259,0.739034,0.309886,0.0886497,0.971611,0.388747,0.223709,0.813665,0.767668,0.0577431,0.60215,0.478675,0.141079,0.387429,0.255474,0.572192,0.0541523,0.933627,0.210188,0.209463,0.701517,0.667651,0.0409854,0.593876,0.226577,0.294487,0.0690129,0.298385,0.763156,0.784029,0.874699,0.744767,0.54455,0.88088,0.629096,0.948363,0.581613,0.306002,0.45156,0.991132,0.321738,0.124083,0.612283,0.520324,0.912637,0.295499,0.797755,0.206432,0.391181,0.277756,0.483907,0.810272,0.651383,0.564795,0.359255,0.97568,0.254304,0.440192,0.338747,0.652228,0.141242,0.489413,0.0977318,0.00765586,0.217868,0.952356,0.814112,0.0827433,0.570084,0.0111797,0.981898,0.138781,0.26839,0.664669,0.985572,0.258987,0.421614,0.844159,0.00336003,0.443885,0.82475,0.275907,0.396234,0.376439,0.572033,0.161379,0.0254828,0.00615656,0.987587,0.147586,0.739896,0.454988,0.385882,0.899539,0.344859,0.768081,0.977577,0.327173,0.00900507,0.120552,0.230329,0.0958,0.198294,0.830427,0.756963,0.269913,0.553225,0.242638,0.720847,0.589671,0.0849514,0.738848,0.350691,0.313914,0.0246207,0.0496666,0.947541,0.111364,0.883963,0.927525,0.819189,0.71304,0.176559,0.831378,0.370461,0.0789155,0.854637,0.403479,0.286996,0.00263363,0.40048,0.856801,0.976673,0.79026,0.743836,0.364673,0.23214,0.543693,0.671156,0.523945,0.38617,0.868189,0.7608,0.498141,0.277468,0.0333735,0.0690374,0.988113,0.38951,0.904476,0.525615,0.983764,0.0723127,0.477075,0.186556,0.0154301,0.33034,0.925579,0.447447,0.763639,0.961609,0.489455,0.0898588,0.741817,0.215261,0.568262,0.987979,0.706769,0.164143,0.0935525,0.883476,0.757709,0.114878,0.0449916,0.560925,0.381879,0.592155,0.665513,0.53,0.512222,0.770601,0.960706,0.785757,0.593923,0.824158,0.816992,0.149905,0.134947,0.092229,0.217834,0.178803,0.0308913,0.0830466,0.115801,0.936489,0.467171,0.0526171,0.384465,0.376263,0.689458,0.386049,0.145466,0.170099,0.292295,0.11601,0.161586,0.690663,0.211335,0.846448,0.338529,0.512652,0.433077,0.121625,0.759044,0.0490509,0.952691,0.337183,0.724728,0.170297,0.0923481,0.628129,0.427778,0.387884,0.140401,0.850149,0.665362,0.482205,0.466962,0.745491,0.6024,0.687991,0.695904,0.345,0.664473,0.137468,0.141892,0.15416,0.390208,0.581254,0.334898,0.466811,0.75099,0.994309,0.415303,0.464407,0.418777,0.328552,0.481204,0.465146,0.582668,0.358745,0.443874,0.788735,0.975959,0.907485,0.781734,0.884693,0.471619,0.0933636,0.60871,0.711224,0.202501,0.820489,0.356454,0.420146,0.168677,0.255314,0.476952,0.384999,0.949313,0.600823,0.66481,0.72387,0.0300962,0.94568,0.0419517,0.593355,0.147019,0.384897,0.381588,0.790967,0.070239,0.450761,0.802511,0.332993,0.986428,0.388021,0.797503,0.215856,0.580585,0.529104,0.156058,0.044072,|0.830491,0.311277,0.225389,0.734867,0.528671,0.602705,0.378072,0.672056,0.195194,0.400231,0.706843,7.56979e-05,0.310389,0.875912,0.471007,0.754844,0.576693,0.550696,0.192802,0.313113,0.607067,0.750294,0.486848,0.875566,0.821062,0.174137,0.229211,0.0513599,0.685679,0.373301,0.00359499,0.884485,0.352854,0.316662,0.141785,0.904286,0.861608,0.799356,0.980771,0.220427,0.580683,0.951985,0.810604,0.0593885,0.702683,0.583398,0.621787,0.809383,0.188255,0.160002,0.212303,0.511201,0.804131,0.24054,0.642189,0.888099,0.622809,0.762471,0.0405484,0.209492,0.185591,0.487674,0.302649,0.457354,0.363732,0.807233,0.851013,0.26816,0.609182,0.617792,0.230229,0.1412,0.836965,0.751322,0.354962,0.955587,0.0696799,0.796005,0.628831,0.261656,0.978605,0.751039,0.98083,0.682835,0.017765,0.480524,0.0884988,0.399499,0.669814,0.803687,0.0581853,0.253311,0.880624,0.53645,0.759997,0.433514,0.762142,0.658621,0.417848,0.425562,0.0257211,0.981833,0.217089,0.717422,0.507518,0.773403,0.939613,0.0866115,0.476974,0.167987,0.573138,0.416167,0.577849,0.0355937,0.775016,0.797118,0.638007,0.193024,0.280166,0.0443073,0.973751,0.677174,0.396715,0.931034,0.987148,0.837663,0.637765,0.105341,0.792181,0.168819,0.741445,0.00329173,0.12379,0.609846,0.650933,0.0105198,0.868545,0.765939,0.413158,0.216933,0.418112,0.781623,0.370066,0.540768,0.866683,0.247646,0.563073,0.699893,0.0503976,0.700381,0.139208,0.407307,0.194838,0.918686,0.85103,0.211032,0.954128,0.00839663,0.827833,0.546035,0.743358,0.419579,0.443257,0.492774,0.848958,0.812623,0.319058,0.0348216,0.0407049,0.298875,0.818538,0.430247,0.491693,0.0747888,0.98042,0.199312,0.173477,0.692349,0.0552577,0.107828,0.219912,0.695552,0.900873,0.792433,0.487249,0.998381,0.629415,0.383199,0.838766,0.802361,0.995586,0.712548,0.410758,0.278797,0.599336,0.187149,0.143888,0.879913,0.797501,0.623759,0.499918,0.896664,0.154241,0.521364,0.165115,0.582876,0.206532,0.139021,0.565811,0.797571,0.100858,0.377379,0.192816,0.870419,0.621455,0.537476,0.635455,0.908094,0.483968,0.337691,0.537379,0.840109,0.934351,0.0583126,0.303783,0.662581,0.15735,0.923725,0.0625787,0.585066,0.281267,0.567358,0.910706,0.147139,0.604826,0.0199024,0.159575,0.736449,0.905835,0.463022,0.785118,0.867217,0.802716,0.546267,0.0573409,0.375393,0.680992,0.27938,0.429906,0.263455,0.474427,0.551631,0.97084,0.469092,0.968521,0.489064,0.555559,0.282472,0.598024,0.83534,0.0612782,0.00980723,0.827266,0.406964,0.313811,0.451973,0.716654,0.34345,0.395614,0.294673,0.406146,0.290354,0.687281,0.156758,0.199194,0.624048,0.221013,0.323211,0.174892,0.56335,0.834538,0.11417,0.455406,0.510705,0.34534,0.177634,0.690197,0.0910123,0.284256,0.672334,0.088294,0.62727,0.947842,0.636194,0.284572,0.990246,0.367663,0.0496404,0.918106,0.0495568,0.384309,0.543591,0.189185,0.964123,0.239396,0.364311,0.585551,0.633918,0.255481,0.101508,0.941454,0.46592,0.286356,0.651223,0.877672,0.419952,0.827244,0.650164,0.33535,0.727638,0.756559,0.572942,0.7127,0.939961,0.298614,0.726629,0.0673611,0.549865,0.874021,0.898865,0.595026,0.745586,0.436841,0.69214,0.714108,0.293636,0.337007,0.82496,0.706685,0.978048,0.960946,0.411082,0.406796,0.702225,0.112642,0.631421,0.506672,0.961468,0.111539,0.553345,0.271912,0.193209,0.487601,0.647646,0.0691332,0.387231,0.484036,0.372039,0.557099,0.761223,0.492245,0.0345444,0.0173517,0.644205,0.165356,0.734462,0.893251,0.513718,0.854189,0.115348,0.785999,0.404328,0.200267,0.0732173,0.525247,0.895774,0.971375,0.220933,0.395478,0.379712,0.803208,0.223556,0.379258,0.375494,0.0482414,0.507684,0.709828,0.676644,0.362273,0.665925,0.540154,0.222803,0.80098,0.22027,0.701066,0.143803,0.117912,0.32403,0.270665,0.245322,0.38252,0.328589,0.0255873,0.85925,0.125541,0.34051,0.497232,0.177815,0.129835,0.0220567,0.676277,0.993931,0.230974,0.512034,0.92151,0.24235,0.525125,0.713202,0.976889,0.84795,0.49835,0.759506,0.260512,0.228016,0.93996,0.874286,0.988006,0.245439,0.63693,0.357421,0.345279,0.099834,0.0208642,0.593233,0.480494,0.730034,0.927217,0.0579684,0.297209,0.761113,0.385693,0.187908,0.102583,0.129012,0.262376,0.210882,0.870733,0.847926,0.978026,0.544577,0.288104,0.724474,0.821618,0.221512,0.0300254,0.586307,0.53406,0.136281,0.893662,0.106176,0.167772,0.169146,0.117134,0.882746,0.981484,0.733985,0.332111,0.467517,0.0885624,0.294905,0.96667,0.17619,0.467081,0.547553,0.0680602,0.42377,0.873127,0.317257,0.780855,0.347699,0.0357541,0.270791,0.92644,0.560223,0.302131,0.808255,0.434401,0.669701,0.918727,0.422493,0.0197175,0.206599,0.390806,0.800046,0.152227,0.528304,0.636736,0.770528,0.861219,0.508336,0.834073,0.21018,0.00157326,0.122342,0.368434,0.335182,0.954994,0.797666,0.246003,0.501967,0.587923,0.728624,0.844484,0.268171,0.494332,0.674165,0.205961,0.488636,0.194328,0.472635,0.65098,0.494618,0.863789,0.833468,0.110735,0.823702,0.824556,0.289836,0.182687,0.565169,0.593147,0.907356,0.0242834,0.261717,0.9973,0.0883449,0.390879,0.0225793,0.742637,0.878429,0.748173,0.507908,0.169676,0.68622,0.801582,0.143501,0.308354,0.710672,0.943661,0.473993,0.781122,0.861779,0.277931,0.734847,0.613116,0.74472,0.544999,0.664547,0.459621,0.804262,0.842372,0.811962,0.00132358,0.342387,0.234824,0.807282,0.493031,0.159026,0.667851,0.624047,0.510464,0.105354,0.555239,0.496232,0.489906,0.390381,0.909788,0.379815,0.474161,0.851986,0.50434,0.190367,0.2483,0.915761,0.117635,0.486443,0.564771,0.756392,0.609646,0.405909,0.484133,0.187412,0.63946,0.1753,0.113069,0.657122,0.15739,0.161475,0.7053,0.337515,0.511109,0.306917,0.539014,0.493339,0.182446,0.795647,0.759358,0.572774,0.0894786,0.984299,0.465908,0.853766,0.312221,0.891054,0.232405,0.52717,0.112696,0.0385864,0.713623,0.169106,0.955848,0.848568,0.329304,0.666787,0.998042,0.154393,0.857843,0.891092,0.782546,0.555246,0.947784,0.149269,0.182491,0.755928,0.310148,0.222288,0.114976,0.417274,0.308481,0.613672,0.712897,0.290113,0.498077,0.881486,0.260373,0.158587,0.0088082,0.389594,0.723324,0.902495,0.435781,0.988691,0.797666,0.0028137,0.330139,0.0399609,0.215585,0.933123,0.703555,0.945674,0.0786232,0.938028,0.313324,0.104212,0.508375,0.114563,0.321644,0.38716,0.87631,0.840831,0.870023,0.622149,0.798384,0.777111,0.92682,0.493524,0.56246,0.796103,0.756634,0.752033,0.872773,0.0604327,0.753673,0.55212,0.776167,0.632603,0.856743,0.543275,0.302784,0.392939,0.968177,0.547148,0.977286,0.272042,0.00806922,0.699809,0.290183,0.46199,0.229192,0.555256,0.698417,0.67867,0.0844002,0.415544,0.678816,0.110132,0.96486,0.723293,0.248321,0.691913,0.964571,0.855251,0.428552,0.983821,0.847674,0.567201,0.444435,0.81802,0.477468,0.516944,0.0416052,0.288954,0.874833,0.561184,0.818643,0.52562,0.57442,0.711385,0.640064,0.831265,0.0561291,0.580265,0.0110357,0.540439,0.465103,0.428768,0.886124,0.189787,0.146785,0.129878,0.519611,0.476016,0.333892,0.314538,0.854641,0.0200029,0.815655,0.881606,0.391712,0.565325,0.215425,0.790987,0.818262,0.997441,0.0165768,0.340136,0.30879,0.189356,0.320979,0.00182259,0.84176,0.836216,0.0102156,0.168121,0.423333,0.270364,0.227938,0.556231,0.184816,0.232545,0.721078,0.0149441,0.350009,0.0872485,0.518733,0.599595,0.017457,0.233301,0.940871,0.0558002,0.659264,0.393094,0.573247,0.485589,0.204121,0.79857,0.955646,0.501588,0.787592,0.0320432,0.365706,0.00442958,0.224905,0.334351,0.346158,0.788734,0.0618348,0.0237653,0.133884,0.721164,0.876543,0.917227,0.813112,0.218004,0.418166,0.661278,0.97622,0.189442,0.353149,0.549477,0.838347,0.645295,0.194651,0.277269,0.763822,0.389968,0.646401,0.0892785,0.141379,0.969093,0.55874,0.27614,0.410416,0.448774,0.750488,0.529887,0.328494,0.444298,0.951072,0.493634,0.340394,0.287887,0.779806,0.680757,0.245005,0.340354,0.492871,0.42026,0.04554,0.589452,0.723705,0.341664,0.903259,0.713627,0.0454968,0.0832496,0.0944621,0.611414,0.413087,0.0239459,0.727599,0.962013,0.582945,0.450763,0.714015,0.128649,0.488171,0.765387,0.458567,0.493426,0.272722,0.011529,0.893849,0.054605,0.731937,0.847649,0.114591,0.966447,0.954262,0.696212,0.611976,0.289341,0.315016,0.685279,0.911758,0.332828,0.25283,0.752372,0.290445,0.925092,0.0444112,0.652706,0.0821189,0.889428,0.641271,0.194477,0.173249,0.424624,0.0149244,0.628017,0.884712,0.690543,0.867442,0.393719,0.688589,0.0116805,0.75953,0.998063,0.607533,0.684297,0.134512,0.527559,0.0153108,0.800265,0.379451,0.802099,0.208309,0.556845,0.313919,0.446637,0.105028,0.111805,0.503255,0.0929273,0.944739,0.33208,0.0979648,0.201392,0.0619406,0.320436,0.129307,0.725576,0.4803,0.683527,0.679975,0.948714,0.803713,0.024291,0.664358,0.360135,0.404123,0.315617,0.310144,0.289793,0.40714,0.667076,0.594605,0.814375,0.0816976,0.546399,0.747164,0.662522,0.80464,0.936252,0.128592,0.899576,0.0364693,0.173925,0.392115,0.276557,0.125035,0.0349232,0.869424,0.469161,0.784718,0.999508,0.11637,0.166341,0.260249,0.18095,0.258655,0.0192268,0.846842,0.669014,0.619684,0.790164,0.942788,0.194521,0.410433,0.122975,0.244573,0.171387,0.51025,0.240198,0.655477,0.226471,0.966177,0.954669,0.226902,0.832699,0.39989,0.342105,0.927641,0.760407,0.22195,0.905325,0.207182,0.106716,0.716479,0.239148,0.225541,0.589246,0.531808,0.375899,0.408223,0.136377,0.387148,0.603341,0.484701,0.920917,|0.227513,0.622296,0.325312,0.394117,0.306778,0.787752,0.3403,0.744817,0.0522998,0.40565,0.676997,0.632941,0.528726,0.636523,0.584236,0.488709,0.0566342,0.797315,0.992562,0.93993,0.811177,0.0262201,0.0853697,0.233363,0.824059,0.805547,0.932105,0.148521,0.611414,0.526314,0.311475,0.514971,0.952028,0.760451,0.205094,0.652192,0.267663,0.429335,0.496247,0.642182,0.215546,0.932683,0.0349405,0.264718,0.294003,0.877486,0.104065,0.0450865,0.334959,0.606893,0.448886,0.99328,0.604683,0.218831,0.828942,0.305521,0.0739263,0.88616,0.933897,0.48547,0.192944,0.76378,0.719586,0.34234,0.280506,0.957468,0.230798,0.787795,0.108804,0.951281,0.565704,0.557496,0.767052,0.712282,0.436863,0.620789,0.438038,0.736232,0.0328273,0.315102,0.419919,0.95442,0.458789,0.932421,0.125086,0.0565969,0.714626,0.049764,0.435846,0.714523,0.252958,0.60848,0.254539,0.94065,0.51029,0.0829573,0.682114,0.648783,0.170952,0.490102,0.0979875,0.0358008,0.0552144,0.195645,0.684431,0.531633,0.738528,0.0846865,0.37601,0.902842,0.756494,0.278657,0.532993,0.809215,0.869643,0.287661,0.380076,0.593814,0.983155,0.547279,0.441285,0.496468,0.247981,0.473295,0.04021,0.860788,0.205284,0.780725,0.910327,0.792396,0.418544,0.493443,0.0347321,0.275357,0.942372,0.156102,0.528458,0.982485,0.946911,0.195548,0.236827,0.606839,0.641476,0.915659,0.898835,0.797175,0.756109,0.124913,0.20766,0.0923001,0.485576,0.117142,0.723453,0.393096,0.873491,0.560769,0.990028,0.485664,0.243724,0.671242,0.920742,0.887922,0.816885,0.0562531,0.600292,0.167769,0.215031,0.531657,0.513019,0.0942159,0.245709,0.0197715,0.2799,0.889501,0.206719,0.217578,0.464369,0.745356,0.396678,0.738753,0.459181,0.754844,0.763842,0.994565,0.149999,0.388817,0.483476,0.394855,0.292169,0.200736,0.839122,0.593769,0.444808,0.0532691,0.701086,0.672543,0.702338,0.937103,0.224848,0.203756,0.915638,0.297557,0.124397,0.705791,0.70604,0.913307,0.759546,0.27604,0.553108,0.58339,0.111513,0.761613,0.351546,0.403982,0.130147,0.530375,0.300949,0.34266,0.143615,0.428232,0.310479,0.919562,0.787978,0.577244,0.869204,0.350825,0.408891,0.464325,0.0971403,0.0209933,0.379072,0.361199,0.874728,0.00744879,0.351339,0.159513,0.501697,0.487903,0.672143,0.240484,0.970466,0.727695,0.866753,0.188857,0.244506,0.812621,0.681692,0.366709,0.541753,0.496613,0.770957,0.365888,0.0664358,0.0363611,0.123023,0.314262,0.83068,0.360472,0.183717,0.543554,0.341522,0.230735,0.302402,0.544454,0.337938,0.432242,0.0669938,0.42237,0.311261,0.239012,0.545915,0.876446,0.891626,0.442746,0.999368,0.543252,0.782815,0.359006,0.261433,0.580631,0.533449,0.172386,0.666721,0.711221,0.353377,0.566518,0.450979,0.735564,0.427739,0.483911,0.721851,0.581744,0.571086,0.36057,0.102306,0.9065,0.649568,0.843139,0.627628,0.13873,0.185383,0.218322,0.0858254,0.813352,0.605209,0.342572,0.645916,0.426583,0.526319,0.682904,0.0793792,0.802426,0.302534,0.423342,0.508709,0.439372,0.222805,0.0725871,0.0909566,0.335769,0.24443,0.259992,0.972817,0.0696326,0.496167,0.622895,0.448925,0.0959516,0.0112541,0.465337,0.599447,0.678864,0.891773,0.222086,0.350638,0.184336,0.450137,0.595643,0.349567,0.974746,0.654941,0.997705,0.491565,0.0547858,0.0651663,0.470443,0.402236,0.386251,0.201377,0.356801,0.938866,0.737651,0.485151,0.649489,0.383586,0.13553,0.972925,0.55011,0.442684,0.811504,0.0743423,0.473599,0.216074,0.00119555,0.779911,0.0865972,0.199538,0.947245,0.603469,0.118134,0.266584,0.234306,0.0791729,0.0202125,0.0921804,0.749795,0.0234176,0.642653,0.492993,0.171583,0.0840364,0.99704,0.288561,0.288257,0.0831381,0.852057,0.685988,0.161162,0.687966,0.608247,0.991721,0.926553,0.714453,0.831825,0.385418,0.580895,0.0753724,0.879007,0.297429,0.468123,0.831175,0.397308,0.178284,0.455265,0.78651,0.320225,0.0400413,0.0333791,0.842996,0.686371,0.4456,0.0116463,0.0951695,0.056527,0.245572,0.0533567,0.329439,0.906776,0.126209,0.334041,0.648781,0.420548,0.305164,0.776912,0.400176,0.99864,0.777462,0.198531,0.528351,0.818766,0.326086,0.828674,0.463983,0.15387,0.305425,0.252196,0.0229125,0.113533,0.297463,0.75336,0.405851,0.92941,0.0813012,0.429478,0.333334,0.925438,0.840518,0.956115,0.484473,0.817505,0.257894,0.49646,0.109727,0.0349512,0.807816,0.636164,0.501267,0.442614,0.518337,0.0241494,0.796876,0.662812,0.612987,0.445456,0.193238,0.821221,0.79887,0.842025,0.79185,0.675326,0.73393,0.152986,0.396267,0.609952,0.754405,0.25491,0.986269,0.603712,0.203914,0.65952,0.695708,0.563909,0.254315,0.657933,0.713207,0.404991,0.691954,0.162048,0.400999,0.816765,0.288276,0.757631,0.73122,0.622524,0.852805,0.10122,0.811208,0.0218396,0.321527,0.37372,0.843301,0.991419,0.299361,0.466604,0.780802,0.769285,0.218898,0.195895,0.841855,0.657032,0.772071,0.779061,0.836156,0.219731,0.214186,0.166733,0.472259,0.879696,0.708745,0.019125,0.340952,0.78742,0.386263,0.203037,0.2373,0.619444,0.00456691,0.136053,0.906305,0.953038,0.0129857,0.97926,0.970895,0.663467,0.308441,0.33149,0.925831,0.803627,0.869722,0.289619,0.399758,0.473532,0.272815,0.423769,0.637708,0.205409,0.564699,0.248663,0.703809,0.635074,0.920071,0.374983,0.0225059,0.947984,0.0340938,0.201992,0.42257,0.760407,0.927142,0.732463,0.174853,0.415716,0.329577,0.519146,0.467139,0.924873,0.633809,0.785044,0.861895,0.97441,0.943836,0.500642,0.159602,0.10944,0.371828,0.826697,0.0150067,0.253157,0.138249,0.889991,0.973961,0.35246,0.00263625,0.898541,0.22769,0.287075,0.950928,0.210679,0.128804,0.20801,0.167136,0.943155,0.509575,0.318082,0.9494,0.813988,0.61829,0.159612,0.980225,0.503576,0.583698,0.105408,0.575105,0.0248012,0.147196,0.190662,0.625946,0.865777,0.309457,0.741771,0.903448,0.124371,0.171814,0.305029,0.245283,0.833341,0.744496,0.541549,0.840263,0.980688,0.470682,0.596515,0.987789,0.985638,0.508228,0.404081,0.519429,0.471359,0.665722,0.106863,0.670986,0.674979,0.0770573,0.302901,0.246737,0.335358,0.480535,0.978441,0.19991,0.383735,0.253811,0.446133,0.633513,0.355605,0.400027,0.828223,0.526249,0.509098,0.486512,0.965575,0.29111,0.375079,0.72538,0.246368,0.00873363,0.992345,0.968184,0.661434,0.481799,0.498823,0.58992,0.00835955,0.639022,0.564477,0.0242705,0.628862,0.56568,0.583009,0.220262,0.519614,0.445587,0.650781,0.823018,0.00371742,0.986498,0.423652,0.56865,0.484468,0.0960419,0.151884,0.561436,0.297864,0.635022,0.685314,0.162903,0.872951,0.530671,0.372073,0.0947928,0.488093,0.172687,0.78723,0.258332,0.725144,0.307775,0.83868,0.640214,0.246611,0.174294,0.900612,0.366302,0.928057,0.573974,0.769396,0.288833,0.335334,0.341069,0.134413,0.0834827,0.138657,0.638084,0.146786,0.83209,0.789762,0.0197796,0.190695,0.630691,0.0791398,0.381261,0.265461,0.725468,0.47299,0.369297,0.853716,0.101383,0.0739714,0.0804106,0.686351,0.532398,0.314641,0.812479,0.0730234,0.0682969,0.503043,0.710793,0.574356,0.495324,0.148625,0.414783,0.917672,0.386953,0.248041,0.913818,0.120055,0.0414535,0.0336335,0.292715,0.528415,0.116406,0.17299,0.134393,0.248924,0.0834428,0.359696,0.0959949,0.744725,0.905846,0.959906,0.758408,0.312777,0.705959,0.447833,0.576878,0.766473,0.252877,0.799651,0.902076,0.417252,0.588136,0.549285,0.0547498,0.150639,0.445675,0.936883,0.280528,0.843483,0.267846,0.082877,0.503588,0.59977,0.273066,0.94503,0.0747721,0.974081,0.30172,0.225465,0.238814,0.4663,0.951395,0.0566896,0.829727,0.52325,0.610825,0.515709,0.628022,0.873496,0.0426253,0.402357,0.724564,0.983695,0.075469,0.58759,0.175932,0.992639,0.414746,0.300018,0.524625,0.190422,0.678859,0.277427,0.419662,0.0149174,0.428134,0.275168,0.125525,0.5177,0.0773112,0.261909,0.453118,0.129751,0.602507,0.712851,0.816494,0.381537,0.484835,0.639715,0.763006,0.55964,0.013631,0.685913,0.598983,0.85983,0.0543451,0.305714,0.161904,0.936351,0.563086,0.130719,0.548308,0.983989,0.350117,0.301282,0.0722812,0.419296,0.0722194,0.78622,0.840216,0.0933115,0.174957,0.871252,0.245897,0.980587,0.336473,0.497199,0.489401,0.537721,0.420434,0.033619,0.887539,0.570795,0.903267,0.769953,0.287148,0.560408,0.275918,0.711829,0.0889279,0.958335,0.553511,0.0020417,0.371564,0.0503439,0.567772,0.695615,0.811116,0.86995,0.901147,0.0879414,0.404559,0.551686,0.631491,0.237395,0.67943,0.544103,0.474801,0.115287,0.00718665,0.497661,0.351838,0.844047,0.653237,0.625686,0.392353,0.945147,0.548474,0.262235,0.964981,0.914918,0.860652,0.958568,0.488168,0.871699,0.844889,0.0210249,0.453551,0.409256,0.391695,0.536663,0.0990375,0.411936,0.0450791,0.279103,0.121706,0.0302089,0.346253,0.773447,0.0378125,0.515709,0.634432,0.350335,0.436084,0.489147,0.898811,0.314528,0.694809,0.422383,0.434503,0.00837344,0.292946,0.0274881,0.488344,0.459769,0.642978,0.0622743,0.769105,0.234599,0.512098,0.384754,0.587334,0.995434,0.610674,0.839623,0.276186,0.500758,0.477311,0.867159,0.638759,0.340551,0.840103,0.465174,0.165855,0.234018,0.772307,0.992472,0.607374,0.417038,0.311906,0.788266,0.510879,0.476452,0.265425,0.499594,0.592333,0.185728,0.395749,0.250786,0.735022,0.903588,0.00267053,0.404076,0.231663,0.117858,0.0914413,0.714308,0.144744,0.809041,0.538944,0.454397,0.846133,0.482033,0.902907,0.755316,0.731268,0.888541,0.128906,0.245643,0.0480626,0.203184,0.865644,0.598627,0.947769,0.600721,0.642403,0.535613,0.244883,0.714623,0.90243,0.995147,0.547504,0.620029,|0.543759,0.408457,0.999106,0.166729,0.879313,0.238061,0.383738,0.765773,0.238057,0.0758355,0.731197,0.912002,0.624335,0.795667,0.069828,0.391018,0.850947,0.259531,0.885051,0.525494,0.861266,0.112595,0.692084,0.696811,0.204643,0.928226,0.359051,0.988632,0.160642,0.87597,0.00651872,0.227405,0.88415,0.352325,0.758582,0.92268,0.905071,0.365033,0.492191,0.846386,0.781181,0.373734,0.556872,0.6162,0.113031,0.560733,0.466401,0.197366,0.503651,0.279168,0.442508,0.376126,0.473453,0.600465,0.00401169,0.124394,0.676965,0.769022,0.922873,0.398032,0.891434,0.231986,0.544241,0.731149,0.0893217,0.9038,0.363933,0.888518,0.564466,0.223211,0.00660098,0.0255796,0.0911573,0.025551,0.798457,0.0104213,0.381702,0.138162,0.536258,0.990257,0.658227,0.172299,0.978007,0.114194,0.225691,0.0892917,0.161606,0.109309,0.349033,0.0821925,0.565615,0.382678,0.675465,0.815343,0.106325,0.0867788,0.819215,0.620156,0.645186,0.326394,0.966205,0.934169,0.601132,0.242672,0.863964,0.299983,0.758395,0.752807,0.900309,0.849661,0.859495,0.356853,0.164186,0.989153,0.366792,0.855463,0.371368,0.252472,0.699292,0.88749,0.095035,0.691686,0.371556,0.461844,0.301638,0.920554,0.723161,0.787526,0.901441,0.763917,0.246608,0.345299,0.628144,0.0646321,0.742146,0.296999,0.886456,0.260496,0.538874,0.209885,0.0237217,0.506347,0.701134,0.274303,0.660325,0.483159,0.540557,0.144215,0.462255,0.308101,0.741624,0.406395,0.834613,0.400674,0.337221,0.789969,0.276967,0.663302,0.377562,0.00881755,0.726142,0.799044,0.865932,0.77418,0.976445,0.949525,0.760879,0.968006,0.173072,0.741655,0.588584,0.340434,0.292073,0.639126,0.343011,0.525863,0.410157,0.65791,0.0610673,0.419365,0.63402,0.846068,0.790366,0.252307,0.755664,0.481515,0.148752,0.438591,0.0515888,0.975452,0.438667,0.216661,0.345416,0.391352,0.99076,0.425721,0.777356,0.185359,0.29763,0.249393,0.499687,0.960054,0.0686479,0.776305,0.181288,0.432969,0.137313,0.224544,0.967754,0.512361,0.514845,0.441077,0.149827,0.901514,0.953854,0.466366,0.468498,0.134036,0.699895,0.779807,0.669842,0.219992,0.136988,0.820032,0.421171,0.667918,0.808486,0.258441,0.332929,0.485433,0.659182,0.0607412,0.328431,0.111739,0.0618708,0.250689,0.763463,0.740132,0.34435,0.863486,0.441082,0.1234,0.86902,0.149457,0.516291,0.993804,0.628147,0.809622,0.878861,0.476209,0.893067,0.219392,0.408854,0.589652,0.719034,0.722234,0.817124,0.878929,0.898746,0.636792,0.436554,0.311239,0.849272,0.660944,0.860094,0.073884,0.414916,0.137753,0.680181,0.994277,0.301794,0.343882,0.692693,0.607429,0.223969,0.972904,0.881541,0.765512,0.31105,0.207728,0.365422,0.899895,0.722993,0.199155,0.392126,0.000619113,0.528722,0.665719,0.941285,0.649407,0.661445,0.319696,0.212834,0.0941263,0.585597,0.361744,0.298572,0.308237,0.528634,0.616076,0.524493,0.388653,0.688731,0.266136,0.534249,0.416988,0.772683,0.612809,0.112831,0.231298,0.072846,0.95509,0.714511,0.604745,0.0890272,0.488258,0.597205,0.235424,0.464059,0.874116,0.810553,0.341186,0.949437,0.458715,0.821218,0.432208,0.381528,0.320561,0.628846,0.966429,0.126601,0.0628006,0.781795,0.275259,0.531907,0.512818,0.375078,0.725317,0.174538,0.775849,0.192208,0.751843,0.4096,0.00582242,0.270061,0.798484,0.722361,0.160835,0.564037,0.182978,0.230803,0.767052,0.499994,0.890341,0.713905,0.461065,0.478578,0.950686,0.700605,0.176484,0.575432,0.896662,0.691983,0.954935,0.715586,0.358611,0.294688,0.17817,0.995107,0.41829,0.415299,0.136988,0.85454,0.710032,0.151367,0.184721,0.119444,0.678061,0.11045,0.716658,0.838463,0.774604,0.269636,0.125254,0.846052,0.0588121,0.451034,0.374349,0.402794,0.137198,0.533895,0.910693,0.204162,0.303674,0.657369,0.625699,0.560933,0.203369,0.88625,0.100482,0.95652,0.294063,0.464175,0.204027,0.585998,0.716248,0.95807,0.609771,0.623368,0.852466,0.813246,0.5879,0.456541,0.494973,0.113436,0.67352,0.518178,0.45157,0.674157,0.497476,0.50267,0.641349,0.0897318,0.87113,0.716551,0.613728,0.456138,0.0598559,0.299589,0.0984711,0.338475,0.0266931,0.727926,0.250653,0.134493,0.410708,0.110577,0.961616,0.603699,0.730314,0.414962,0.0966491,0.937772,0.835857,0.413484,0.893633,0.761593,0.678169,0.604689,0.209519,0.63086,0.885405,0.521227,0.105369,0.940678,0.520566,0.932518,0.0200952,0.027397,0.750135,0.399098,0.720221,0.847141,0.207662,0.0815839,0.441746,0.804685,0.00746775,0.405057,0.26028,0.691104,0.71619,0.356984,0.889821,0.160274,0.727562,0.857982,0.824838,0.165499,0.288569,0.509468,0.59847,0.181249,0.207485,0.801783,0.152465,0.139971,0.546412,0.574528,0.342245,0.451806,0.976076,0.195471,0.36101,0.661574,0.516903,0.94401,0.364988,0.0456834,0.387332,0.556218,0.790001,0.768632,0.412965,0.134085,0.98723,0.101621,0.899104,0.969188,0.67202,0.510449,0.866538,0.509431,0.585621,0.0355577,0.0892748,0.187863,0.521018,0.645593,0.721972,0.638337,0.631438,0.996706,0.352151,0.790527,0.569389,0.264493,0.551014,0.216213,0.475903,0.0857061,0.892442,0.638093,0.460186,0.87328,0.483538,0.016961,0.190498,0.283172,0.567926,0.352261,0.364196,0.224331,0.576222,0.830108,0.686307,0.928523,0.240617,0.792601,0.837513,0.377171,0.269201,0.162675,0.120285,0.479659,0.527448,0.363577,0.381804,0.904652,0.723283,0.476617,0.586816,0.430116,0.484733,0.702234,0.249892,0.92566,0.839108,0.492758,0.703935,0.917814,0.0521194,0.862754,0.950847,0.706336,0.840806,0.88884,0.412261,0.714639,0.418873,0.0258088,0.587711,0.893875,0.0852945,0.301062,0.0161999,0.621859,0.411536,0.410596,0.260685,0.445605,0.689643,0.000524402,0.742723,0.919835,0.301489,0.152133,0.778933,0.741781,0.0237185,0.269198,0.962653,0.210439,0.888983,0.703168,0.426372,0.696953,0.253381,0.429534,0.418423,0.376208,0.644242,0.611554,0.260458,0.728162,0.309115,0.713708,0.708537,0.425323,0.874467,0.767423,0.444369,0.57227,0.648618,0.457591,0.220407,0.348409,0.214463,0.416902,0.238977,0.19267,0.158973,0.597246,0.468977,0.185286,0.251179,0.806708,0.168511,0.616417,0.607988,0.374586,0.0127338,0.989469,0.987913,0.668097,0.730137,0.331243,0.785271,0.301992,0.0572272,0.167323,0.622168,0.954453,0.245645,0.764396,0.101371,0.346501,0.811269,0.637795,0.709973,0.251186,0.465934,0.728726,0.52392,0.837965,0.379442,0.0347946,0.664329,0.460972,0.346438,0.809463,0.747277,0.191487,0.712586,0.118476,0.590169,0.108088,0.150544,0.434519,0.227659,0.221125,0.840909,0.154069,0.275207,0.213896,0.98369,0.491637,0.329018,0.177129,0.35891,0.305858,0.640861,0.783777,0.160191,0.802403,0.718515,0.649111,0.354915,0.742146,0.861033,0.787775,0.699812,0.173618,0.840191,0.849973,0.30685,0.437886,0.05857,0.457279,0.366576,0.0401825,0.723174,0.158562,0.988825,0.271232,0.275309,0.987677,0.376364,0.0790954,0.0855825,0.467972,0.752015,0.766839,0.0639124,0.397327,0.548746,0.822541,0.346593,0.831882,0.78145,0.30176,0.35403,0.301605,0.580663,0.922282,0.535321,0.890232,0.144569,0.496178,0.706772,0.258163,0.750823,0.435604,0.65441,0.210267,0.87077,0.397128,0.891982,0.740601,0.910986,0.673158,0.841915,0.346474,0.53755,0.194869,0.224717,0.557697,0.991368,0.087781,0.226448,0.257944,0.973042,0.655405,0.583606,0.00691682,0.678408,0.303209,0.231279,0.58772,0.630113,0.0482157,0.651282,0.454221,0.918437,0.175851,0.40987,0.503225,0.0139886,0.811823,0.116281,0.0714034,0.677758,0.487437,0.676839,0.822837,0.963813,0.778987,0.246248,0.131895,0.409359,0.85619,0.570338,0.0771269,0.380409,0.298217,0.475502,0.018448,0.302425,0.708786,0.74439,0.766315,0.589925,0.112433,0.015255,0.0909032,0.38811,0.0659129,0.181323,0.340716,0.844375,0.828345,0.690022,0.183682,0.896994,0.830537,0.77706,0.924088,0.116967,0.618935,0.844799,0.949255,0.957531,0.15503,0.631602,0.432845,0.632469,0.164805,0.265794,0.890859,0.266256,0.119465,0.83221,0.652538,0.176211,0.527041,0.385023,0.328048,0.984601,0.0964023,0.544653,0.0356233,0.490655,0.818976,0.228468,0.033308,0.659916,0.742266,0.516578,0.312298,0.402227,0.197154,0.991121,0.882474,0.0564438,0.788441,0.376667,0.0582612,0.705942,0.125141,0.669773,0.0179855,0.932487,0.833214,0.893986,0.0444694,0.288772,0.0144214,0.365889,0.435365,0.463344,0.590759,0.496871,0.60503,0.904181,0.508661,0.221011,0.732083,0.874435,0.574403,0.430034,0.597524,0.363354,0.118354,0.0188273,0.70443,0.741046,0.76711,0.84674,0.369163,0.818164,0.311551,0.688209,0.0247619,0.0565934,0.728305,0.00780708,0.588899,0.0109853,0.859549,0.20595,0.838835,0.913406,0.883006,0.241022,0.65202,0.843965,0.264699,0.129687,0.0353788,0.221376,0.568292,0.419947,0.878251,0.274968,0.910388,0.0382029,0.0177994,0.0715722,0.390188,0.991108,0.998589,0.02808,0.763218,0.827476,0.634728,0.867801,0.18008,0.531875,0.375244,0.547791,0.446447,0.731726,0.440885,0.970649,0.360195,0.199833,0.633365,0.0738919,0.132422,0.797339,0.922287,0.394722,0.147263,0.284753,0.965669,0.3192,0.203083,0.562442,0.777235,0.65927,0.747644,0.0892024,0.73608,0.653901,0.710233,0.704129,0.528287,0.642294,0.842219,0.142027,0.532226,0.584103,0.642269,0.683579,0.6555,0.262313,0.607018,0.635429,0.954229,0.087674,0.194053,0.76765,0.368222,0.643444,0.566932,0.582115,0.785279,0.134191,0.532616,0.481468,0.274405,0.823735,0.110798,0.0485336,0.406934,0.486553,0.366546,0.590378,0.575457,0.381364,0.645799,0.311986,0.808254,0.411272,0.302393,0.966759,0.892161,0.750295,0.571738,0.121499,|0.31607,0.987739,0.9898,0.19343,0.24033,0.546758,0.362301,0.542122,0.472394,0.0396288,0.661352,0.113455,0.710665,0.101605,0.520489,0.618797,0.191964,0.0159546,0.0311807,0.237543,0.420182,0.105867,0.166964,0.70924,0.657782,0.342651,0.457859,0.976755,0.296567,0.197227,0.950177,0.744374,0.25518,0.25432,0.977107,0.677913,0.567583,0.128294,0.200974,0.423638,0.582373,0.693774,0.351465,0.750455,0.271281,0.960763,0.819462,0.044113,0.298719,0.389949,0.506333,0.754554,0.594943,0.798308,0.873003,0.786282,0.44194,0.789914,0.365573,0.080561,0.610646,0.598399,0.363841,0.318057,0.397099,0.10625,0.518301,0.684509,0.0102521,0.458564,0.284932,0.927444,0.38036,0.347349,0.363055,0.464652,0.434886,0.950695,0.112917,0.748914,0.308317,0.0305674,0.301584,0.12946,0.7885,0.869685,0.745804,0.682366,0.0671698,0.859864,0.00546837,0.0460802,0.982499,0.143512,0.348595,0.481202,0.0758948,0.981625,0.740493,0.47179,0.110833,0.769708,0.262258,0.322196,0.489212,0.962806,0.680383,0.207789,0.517842,0.247293,0.259466,0.792682,0.438301,0.0116681,0.164162,0.971495,0.994579,0.480599,0.00227702,0.0349914,0.959109,0.996512,0.60818,0.209465,0.914769,0.118099,0.043882,0.166408,0.0973757,0.980468,0.103031,0.391167,0.878955,0.868794,0.725697,0.0425962,0.0779353,0.549002,0.209827,0.970825,0.388538,0.753569,0.137734,0.825664,0.583095,0.325908,0.570829,0.778772,0.420476,0.241727,0.139248,0.423675,0.973039,0.65749,0.0644591,0.375177,0.16478,0.990816,0.171472,0.802346,0.27509,0.595827,0.258402,0.577411,0.336524,0.217859,0.39229,0.34355,0.260168,0.313208,0.567059,0.64817,0.775565,0.579323,0.686972,0.222024,0.896282,0.976166,0.937626,0.528738,0.890566,0.967984,0.926929,0.540911,0.14021,0.49102,0.429481,0.422812,0.759431,0.610421,0.533933,0.328915,0.632845,0.855589,0.370497,0.0658823,0.773044,0.707871,0.633614,0.325925,0.649254,0.603362,0.919858,0.190087,0.0875596,0.233549,0.00365609,0.442125,0.773461,0.294892,0.706317,0.543467,0.433195,0.613761,0.477955,0.971098,0.567887,0.351784,0.112807,0.4943,0.680068,0.471192,0.89364,0.235531,0.0996988,0.35154,0.449356,0.422083,0.296816,0.421786,0.304833,0.694086,0.70672,0.591757,0.855899,0.496173,0.781783,0.179025,0.270429,0.997003,0.484458,0.488412,0.339688,0.667804,0.782341,0.566331,0.382804,0.93272,0.744539,0.62462,0.804021,0.615798,0.661502,0.879127,0.366044,0.383718,0.845284,0.621361,0.187595,0.601756,0.0116277,0.896352,0.658936,0.250741,0.0981132,0.943138,0.362079,0.506198,0.372157,0.69028,0.902108,0.125206,0.831924,0.654134,0.00688243,0.233194,0.162999,0.728116,0.500045,0.465233,0.371005,0.291491,0.292749,0.119436,0.612922,0.491599,0.682772,0.154542,0.662131,0.928067,0.179105,0.607773,0.661466,0.147921,0.364182,0.49771,0.241111,0.846282,0.240147,0.650492,0.730961,0.836859,0.399591,0.990684,0.380969,0.909243,0.998785,0.29943,0.273956,0.969969,0.174269,0.392766,0.148251,0.871738,0.201896,0.125015,0.351389,0.160712,0.328467,0.955453,0.741854,0.215083,0.443973,0.905067,0.194386,0.744858,0.339975,0.7291,0.370606,0.541644,0.424046,0.647592,0.382014,0.874617,0.504265,0.601839,0.131341,0.166025,0.62795,0.839172,0.865199,0.621764,0.983352,0.148962,0.794701,0.842823,0.494386,0.710451,0.224303,0.774638,0.81089,0.453087,0.633355,0.306028,0.830118,0.886845,0.461992,0.106838,0.817518,0.112572,0.285889,0.0315683,0.713278,0.707443,0.160038,0.73543,0.174279,0.145265,0.13212,0.345007,0.703927,0.986367,0.533768,0.510623,0.842461,0.00710231,0.0124091,0.405085,0.800029,0.911948,0.753965,0.10607,0.799956,0.337865,0.68314,0.222483,0.0319629,0.301838,0.640474,0.776653,0.620276,0.315202,0.30731,0.476377,0.875267,0.132008,0.210291,0.07941,0.0977351,0.0637456,0.915553,0.234146,0.471345,0.151968,0.672053,0.848225,0.225999,0.786141,0.451129,0.00146031,0.11616,0.703999,0.0179386,0.62509,0.803663,0.68476,0.488903,0.394968,0.0142928,0.377419,0.258709,0.924236,0.98465,0.26728,0.887695,0.805524,0.539167,0.130606,0.244546,0.935668,0.378925,0.345226,0.14578,0.183271,0.57273,0.379081,0.890015,0.117025,0.355891,0.0070219,0.20252,0.642847,0.713195,0.10902,0.871173,0.796663,0.257514,0.662048,0.108803,0.522946,0.274538,0.458939,0.611513,0.0506251,0.913685,0.970052,0.237371,0.0285033,0.710965,0.407641,0.285778,0.696188,0.247299,0.703556,0.72866,0.788123,0.230609,0.37516,0.356578,0.614494,0.769436,0.866054,0.824375,0.257199,0.982017,0.419566,0.75145,0.199227,0.410893,0.52735,0.539676,0.968287,0.52424,0.957475,0.662276,0.413384,0.207403,0.468037,0.54967,0.858496,0.529677,0.681267,0.249732,0.546365,0.553925,0.330478,0.682514,0.0404978,0.482121,0.422247,0.761842,0.528569,0.87084,0.223026,0.592502,0.610898,0.251922,0.933722,0.121535,0.696087,0.0494788,0.468437,0.23112,0.746988,0.504538,0.22696,0.198947,0.30045,0.955114,0.0189195,0.00348032,0.00456959,0.605501,0.093103,0.937933,0.0832307,0.419696,0.995673,0.0696762,0.68177,0.535687,0.436074,0.284674,0.5745,0.946921,0.679993,0.797508,0.471423,0.824607,0.412467,0.0429747,0.746557,0.441468,0.160837,0.63424,0.3063,0.125538,0.427963,0.847389,0.967347,0.727814,0.950335,0.717969,0.291678,0.312443,0.329888,0.282661,0.248368,0.0135673,0.0410287,0.696779,0.0451046,0.731008,0.687517,0.764543,0.883167,0.617577,0.894622,0.507559,0.101756,0.663009,0.941285,0.45426,0.143793,0.571578,0.456006,0.999117,0.85253,0.0342208,0.2885,0.896264,0.471109,0.565739,0.0574166,0.87413,0.483889,0.265315,0.885106,0.401898,0.790616,0.760566,0.747733,0.543521,0.730164,0.758875,0.744175,0.266962,0.060704,0.106696,0.592543,0.449512,0.33109,0.333844,0.684798,0.211877,0.495369,0.793826,0.255004,0.0857948,0.221052,0.543451,0.35265,0.467179,0.727512,0.326091,0.852131,0.594683,0.296529,0.536845,0.380448,0.640629,0.235839,0.915826,0.231499,0.293988,0.601169,0.175772,0.335816,0.968773,0.172357,0.784272,0.414884,0.620538,0.658208,0.125252,0.801229,0.123004,0.372323,0.979831,0.78906,0.827092,0.105834,0.451064,0.260434,0.438959,0.662477,0.775755,0.322705,0.53162,0.202747,0.557918,0.966287,0.513345,0.205372,0.568864,0.792241,0.638837,0.794983,0.764027,0.340355,0.695977,0.481877,0.561342,0.585791,0.315737,0.499068,0.0197894,0.560009,0.94551,0.22591,0.513036,0.523059,0.14481,0.084711,0.35146,0.90624,0.558108,0.772412,0.557361,0.304775,0.0693066,0.689981,0.531271,0.83616,0.901412,0.396912,0.0733091,0.86276,0.52821,0.153025,0.0265117,0.148976,0.500833,0.197094,0.223891,0.530854,0.146958,0.693597,0.286213,0.803828,0.588747,0.170553,0.497186,0.96294,0.555853,0.588609,0.33978,0.801678,0.0441315,0.786529,0.96423,0.750091,0.234449,0.688324,0.842666,0.837353,0.00942993,0.94135,0.389274,0.637222,0.456028,0.652039,0.278592,0.801589,0.846734,0.243888,0.390417,0.909421,0.60425,0.723937,0.211563,0.725399,0.387109,0.352161,0.648162,0.812145,0.43823,0.815961,0.428527,0.693332,0.430375,0.339903,0.647078,0.278891,0.989246,0.173932,0.750004,0.619442,0.790819,0.0286135,0.862941,0.529844,0.0140342,0.60214,0.2674,0.0342013,0.887324,0.499236,0.289227,0.704355,0.582924,0.474409,0.538566,0.584959,0.862477,0.502153,0.38993,0.625351,0.259442,0.881003,0.242672,0.00573671,0.790629,0.725071,0.788911,0.947342,0.238316,0.0715823,0.230545,0.462812,0.545392,0.702756,0.428571,0.479941,0.85756,0.786515,0.417648,0.400421,0.296607,0.846081,0.893033,0.8584,0.59022,0.963992,0.166725,0.881527,0.558301,0.608334,0.0487093,0.156485,0.576765,0.782805,0.148744,0.522713,0.634282,0.69489,0.976487,0.148129,0.200706,0.322358,0.165261,0.443028,0.283516,0.416806,0.401038,0.480223,0.322899,0.627598,0.827054,0.132334,0.230581,0.73649,0.777012,0.155458,0.87333,0.161691,0.781915,0.740777,0.251956,0.181899,0.16155,0.105536,0.0270891,0.547553,0.942275,0.0873688,0.4807,0.0147554,0.911936,0.718759,0.0439546,0.190661,0.800674,0.233856,0.91699,0.732101,0.00674158,0.894062,0.721928,0.216781,0.769526,0.441138,0.85346,0.273324,0.862788,0.871187,0.0434873,0.435515,0.973599,0.411275,0.238558,0.128535,0.0744302,0.794748,0.69117,0.102246,0.735207,0.857976,0.909718,0.0874054,0.0298101,0.132515,0.33439,0.155813,0.257891,0.485733,0.156656,0.663888,0.837709,0.217039,0.230475,0.393205,0.761515,0.739201,0.344249,0.47314,0.0632306,0.537349,0.856822,0.67085,0.934311,0.45062,0.892094,0.630132,0.646191,0.137994,0.3961,0.00202715,0.957891,0.601838,0.576167,0.103002,0.980709,0.0541053,0.410463,0.475465,0.240442,0.0906458,0.909246,0.980256,0.354233,0.411595,0.898528,0.678362,0.138252,0.932581,0.761807,0.00673062,0.456624,0.537776,0.628079,0.00653058,0.200646,0.20415,0.281295,0.656669,0.66972,0.786405,0.778959,0.477615,0.948678,0.430587,0.947106,0.00297511,0.377526,0.708892,0.169596,0.104186,0.707513,0.960265,0.38325,0.16385,0.303646,0.0493053,0.378288,0.674184,0.980422,0.578404,0.1351,0.250925,0.903444,0.675276,0.63515,0.205028,0.490215,0.198103,0.201727,0.358768,0.894852,0.594646,0.583189,0.328979,0.303833,0.773803,0.407335,0.295166,0.934134,0.500401,0.872296,0.846872,0.48546,0.601914,0.80714,0.303902,0.948546,0.283114,0.795327,0.101348,0.338894,0.795705,0.726313,0.078531,0.174025,0.464357,0.192062,0.50315,0.29294,0.804943,0.0801844,0.428892,0.638617,0.409255,0.403325,0.853032,0.434739,0.0494692,0.484527,0.283647,0.00466377,0.556721,|0.0238991,0.825937,0.586315,0.470803,0.669304,0.537579,0.732629,0.682391,0.422989,0.0484744,0.795487,0.695173,0.8719,0.755914,0.826581,0.329236,0.0524913,0.0948384,0.064649,0.818211,0.073252,0.352735,0.366213,0.382271,0.858521,0.0175117,0.0272542,0.0733366,0.881073,0.141018,0.628666,0.916991,0.403691,0.258798,0.284665,0.367298,0.00326997,0.0879493,0.323932,0.0185665,0.236093,0.36895,0.440271,0.537193,0.0258598,0.374229,0.622734,0.649054,0.777177,0.331896,0.372451,0.971541,0.0718675,0.629964,0.969907,0.855566,0.559073,0.903166,0.868366,0.221656,0.884136,0.982847,0.182376,0.183074,0.0359101,0.243641,0.576355,0.644205,0.787868,0.908165,0.215883,0.587528,0.351995,0.632556,0.646514,0.374674,0.825471,0.0314536,0.274276,0.477809,0.257201,0.934608,0.508246,0.916012,0.426392,0.761405,0.680427,0.980473,0.26382,0.642671,0.337611,0.896538,0.5018,0.108955,0.168986,0.866756,0.83097,0.00374621,0.164417,0.523618,0.394976,0.896828,0.164769,0.930476,0.551971,0.581572,0.790778,0.229809,0.741211,0.485246,0.160363,0.667513,0.0146559,0.845688,0.119741,0.940902,0.0851398,0.136671,0.130635,0.408958,0.194823,0.787373,0.697031,0.146836,0.0820847,0.490485,0.415945,0.182549,0.363401,0.095439,0.309885,0.268597,0.176087,0.749707,0.714806,0.166773,0.990815,0.251565,0.0509433,0.571036,0.491087,0.496921,0.782671,0.30204,0.836055,0.582335,0.515431,0.73933,0.374502,0.598774,0.359987,0.696949,0.231244,0.799356,0.149104,0.502446,0.0845804,0.28337,0.977138,0.196727,0.906921,0.811799,0.912664,0.369515,0.560384,0.166699,0.993457,0.408698,0.102749,0.460728,0.798427,0.657794,0.447183,0.131493,0.0723333,0.559125,0.722778,0.166999,0.0711222,0.887069,0.482475,0.255279,0.0508918,0.123895,0.707612,0.814141,0.706346,0.551084,0.0755924,0.446578,0.120489,0.0693859,0.9964,0.732105,0.310044,0.798807,0.332563,0.849994,0.60903,0.00434035,0.754891,0.950453,0.849795,0.985994,0.824278,0.567618,0.701603,0.538372,0.226867,0.693157,0.357219,0.195145,0.0632703,0.215946,0.894058,0.537953,0.47637,0.599044,0.0774293,0.472633,0.418428,0.336758,0.197951,0.345662,0.575557,0.444507,0.299931,0.210052,0.415017,0.238573,0.64105,0.528072,0.890766,0.46307,0.549651,0.180378,0.963289,0.739944,0.399675,0.222647,0.544253,0.23178,0.49698,0.293219,0.878302,0.33895,0.432108,0.312791,0.72969,0.310744,0.33885,0.790211,0.120719,0.848227,0.520308,0.108349,0.334542,0.72166,0.702437,0.054513,0.594428,0.440479,0.202828,0.243413,0.948725,0.00706542,0.501197,0.827041,0.042069,0.945435,0.176923,0.637499,0.103591,0.0750495,0.510474,0.305179,0.0751939,0.34455,0.160761,0.896468,0.810765,0.0131007,0.962797,0.0470909,0.75222,0.497042,0.0984635,0.515871,0.641976,0.916141,0.881092,0.13675,0.989064,0.143065,0.769074,0.974271,0.968993,0.227978,0.500909,0.521622,0.560997,0.539802,0.295437,0.633318,0.831454,0.173433,0.255426,0.60285,0.223342,0.495648,0.139215,0.283754,0.370939,0.0738674,0.657272,0.177335,0.243983,0.738745,0.72116,0.732575,0.230833,0.194103,0.0823621,0.899294,0.895861,0.439702,0.687506,0.772694,0.811231,0.39578,0.978264,0.222417,0.161632,0.254146,0.844887,0.0961744,0.340409,0.120022,0.263866,0.144688,0.168834,0.244891,0.08005,0.130566,0.254142,0.913805,0.8589,0.571294,0.16622,0.725908,0.411854,0.483229,0.467837,0.369317,0.805988,0.504301,0.6215,0.0751255,0.0461984,0.0356928,0.743305,0.923317,0.119365,0.51582,0.690891,0.189919,0.358594,0.787272,0.226035,0.938486,0.37327,0.648717,0.222222,0.822647,0.468709,0.329948,0.855427,0.862484,0.205037,0.665653,0.225292,0.877501,0.154931,0.830646,0.500907,0.881959,0.246273,0.11083,0.0207235,0.912221,0.601847,0.305661,0.105466,0.95774,0.428978,0.470046,0.621409,0.824445,0.750008,0.445,0.0606696,0.194806,0.838564,0.395853,0.0676029,0.803576,0.99724,0.749128,0.0462363,0.603766,0.93965,0.218864,0.251572,0.602396,0.772276,0.192672,0.856026,0.731249,0.168334,0.960566,0.0422164,0.880956,0.860027,0.0719333,0.653473,0.695678,0.711689,0.553353,0.0631092,0.257944,0.305305,0.554516,0.225581,0.212294,0.0865657,0.752689,0.868007,0.841749,0.364739,0.330774,0.529214,0.192174,0.13543,0.782186,0.860816,0.271375,0.171762,0.604314,0.334306,0.0365608,0.835714,0.897144,0.290281,0.997386,0.282332,0.191469,0.434406,0.733758,0.548818,0.409939,0.637628,0.257325,0.0545499,0.665246,0.553166,0.348662,0.730051,0.131814,0.102736,0.286367,0.822771,0.910671,0.889307,0.160471,0.223479,0.413347,0.288372,0.578567,0.872653,0.533792,0.65768,0.257562,0.426011,0.589271,0.535349,0.134596,0.521465,0.490463,0.963081,0.729274,0.87671,0.189992,0.386695,0.117151,0.0595378,0.851579,0.114878,0.15616,0.63104,0.759074,0.264559,0.0966281,0.507719,0.570529,0.14966,0.845272,0.615923,0.529922,0.0769386,0.969298,0.929407,0.565586,0.148126,0.630124,0.197043,0.62472,0.183647,0.02246,0.701556,0.262441,0.0819474,0.808758,0.17031,0.917821,1.13845e-05,0.621272,0.749523,0.0450808,0.0692856,0.631332,0.374809,0.180903,0.788849,0.263293,0.44021,0.631306,0.519215,0.339422,0.219974,0.702266,0.594904,0.0610101,0.81131,0.687898,0.118028,0.539982,0.722171,0.860193,0.413892,0.391818,0.146912,0.0542195,0.554342,0.41584,0.680036,0.528502,0.999651,0.780542,0.537961,0.924787,0.413023,0.866307,0.324445,0.365999,0.507813,0.752988,0.326722,0.827076,0.271754,0.0945525,0.102675,0.620629,0.294534,0.382177,0.928423,0.227013,0.490635,0.0349591,0.262504,0.140742,0.315645,0.784546,0.854136,0.253895,0.682299,0.767877,0.540237,0.408067,0.925322,0.306075,0.203019,0.925401,0.13555,0.972875,0.987305,0.552479,0.539121,0.251095,0.584063,0.942694,0.78862,0.557485,0.571689,0.693714,0.686633,0.895815,0.694308,0.878781,0.392403,0.964411,0.258408,0.747542,0.195559,0.43176,0.499983,0.55391,0.996423,0.267967,0.684809,0.923796,0.336962,0.0893092,0.278015,0.00651932,0.153413,0.468391,0.0115457,0.326435,0.158925,0.524947,0.209965,0.968225,0.1233,0.407027,0.706929,0.435336,0.220622,0.0906506,0.776998,0.402354,0.428032,0.680302,0.43728,0.498098,0.721467,0.00206202,0.56154,0.677744,0.435293,0.785098,0.110783,0.686537,0.824941,0.118259,0.095084,0.991153,0.419434,0.757122,0.15236,0.659989,0.146633,0.676679,0.733368,0.82992,0.082739,0.152436,0.197277,0.743349,0.964074,0.0274199,0.785783,0.187132,0.845554,0.292205,0.899793,0.844767,0.688745,0.373125,0.349581,0.723944,0.836275,0.273081,0.622087,0.510705,0.101785,0.0696641,0.949535,0.976728,0.656372,0.286791,0.117234,0.842789,0.865934,0.953596,0.338335,0.447728,0.472805,0.436814,0.517063,0.914292,0.380842,0.3541,0.267152,0.622798,0.440143,0.391426,0.513932,0.385337,0.843354,0.801621,0.441209,0.597483,0.745611,0.769051,0.112199,0.621844,0.218864,0.46686,0.791233,0.638985,0.345697,0.975946,0.969979,0.0764349,0.478086,0.2666,0.40617,0.310216,0.0996931,0.723888,0.0108609,0.159942,0.091302,0.872066,0.797415,0.158451,0.595096,0.852569,0.275122,0.532713,0.391225,0.52762,0.109557,0.40696,0.201453,0.914931,0.115685,0.635962,0.888368,0.717307,0.459433,0.974307,0.861046,0.513366,0.929125,0.826272,0.483651,0.651174,0.460264,0.38213,0.793345,0.856661,0.110312,0.33354,0.438772,0.373577,0.999955,0.204731,0.511705,0.945178,0.777545,0.754841,0.628529,0.105638,0.609575,0.0059036,0.492651,0.843226,0.0674866,0.404057,0.879891,0.624917,0.674125,0.108576,0.075618,0.841189,0.0531755,0.945969,0.273535,0.426334,0.129252,0.113106,0.172026,0.687482,0.458589,0.831341,0.204032,0.516406,0.99014,0.798847,0.524112,0.412898,0.809723,0.969682,0.324843,0.935303,0.115266,0.294532,0.773605,0.736842,0.344539,0.965096,0.371588,0.914122,0.621339,0.310117,0.146062,0.0889057,0.35109,0.559847,0.7693,0.254177,0.88196,0.630736,0.581526,0.337421,0.779212,0.489137,0.296124,0.0517968,0.640855,0.039506,0.219607,0.814229,0.459188,0.230604,0.914152,0.794058,0.73841,0.00533551,0.417531,0.309604,0.0761327,0.364847,0.805521,0.346836,0.154976,0.122981,0.0799889,0.635313,0.647299,0.870816,0.764585,0.129787,0.958444,0.0870315,0.501701,0.088579,0.328201,0.959449,0.0144619,0.334865,0.442216,0.055641,0.864411,0.449863,0.345129,0.871677,0.821812,0.0488582,0.231101,0.49366,0.90793,0.316381,0.717761,0.788538,0.883416,0.192303,0.609389,0.44305,0.605039,0.390779,0.534989,0.537508,0.849775,0.977628,0.831971,0.547845,0.405735,0.0902254,0.588096,0.282056,0.0946501,0.560282,0.106447,0.244242,0.869054,0.00505102,0.962863,0.315313,0.148788,0.91466,0.406542,0.291902,0.148258,0.373132,0.211193,0.312706,0.663797,0.457762,0.864745,0.464172,0.105572,0.724254,0.176419,0.40657,0.834636,0.623615,0.428088,0.612666,0.258929,0.939062,0.463973,0.733709,0.481929,0.728086,0.737649,0.0599445,0.265959,0.38851,0.779028,0.792911,0.927051,0.0662007,0.938114,0.65513,0.0433254,0.600073,0.825269,0.932888,0.949252,0.604755,0.501178,0.973501,0.806611,0.0712352,0.258833,0.130144,0.389705,0.280022,0.701254,0.164234,0.438952,0.928433,0.967404,0.143456,0.627547,0.901374,0.177777,0.534832,0.643819,0.200014,0.186355,0.197361,0.172609,0.989872,0.525098,0.107263,0.378794,0.205844,0.793283,0.737106,0.271398,0.27016,0.223095,0.557453,0.213594,0.984877,0.189581,0.803055,0.520112,0.509341,0.471577,0.519902,0.536799,0.598536,0.544947,0.220616,0.718788,0.867933,0.999937,0.311941,0.944565,0.808354,0.790954,0.90724,0.0034281,0.0271145,0.887757,0.660112,|0.788214,0.224425,0.0996063,0.603153,0.738867,0.0614095,0.165852,0.781996,0.415827,0.727065,0.803631,0.668926,0.161411,0.766465,0.170148,0.841806,0.0707217,0.418894,0.739787,0.154465,0.880444,0.946417,0.595498,0.548728,0.3251,0.199908,0.691816,0.839238,0.563026,0.511735,0.331924,0.00406343,0.754474,0.0175279,0.979434,0.593428,0.467127,0.134205,0.714874,0.758451,0.151756,0.189585,0.532126,0.162287,0.0545025,0.423967,0.360884,0.641376,0.804926,0.0819163,0.228307,0.587045,0.669842,0.350951,0.0825225,0.579686,0.325531,0.858725,0.228369,0.73084,0.193504,0.109763,0.328056,0.895048,0.823178,0.157542,0.553227,0.203873,0.297008,0.248701,0.252882,0.432628,0.926636,0.643053,0.232506,0.63451,0.649139,0.10024,0.345061,0.0243028,0.702639,0.724097,0.415963,0.915784,0.41291,0.457164,0.0538443,0.948573,0.0734851,0.330339,0.610463,0.818495,0.00296515,0.372225,0.113334,0.934263,0.230499,0.753453,0.726953,0.534753,0.54182,0.131594,0.172671,0.321743,0.0391959,0.246906,0.813762,0.562656,0.900085,0.205308,0.10726,0.143073,0.357914,0.143089,0.949968,0.650776,0.649515,0.698838,0.418244,0.788956,0.88729,0.0836575,0.897288,0.634854,0.966301,0.545647,0.663458,0.854293,0.247865,0.100679,0.508364,0.145425,0.58232,0.376906,0.626243,0.736384,0.558278,0.105484,0.70944,0.705621,0.321759,0.630369,0.116127,0.960432,0.209427,0.708448,0.825782,0.953847,0.957376,0.579918,0.615032,0.126668,0.725922,0.372411,0.86379,0.828493,0.947908,0.944061,0.172141,0.2146,0.916219,0.313765,0.389261,0.915382,0.340694,0.435618,0.470283,0.802975,0.204047,0.802713,0.146381,0.632567,0.130547,0.595796,0.818811,0.868744,0.543222,0.106596,0.017675,0.561906,0.0710266,0.634737,0.889819,0.344867,0.926215,0.392579,0.286288,0.162258,0.385687,0.276599,0.899843,0.957012,0.0593283,0.151038,0.306546,0.610226,0.667804,0.41344,0.783177,0.690468,0.369387,0.990793,0.819535,0.348841,0.0778839,0.158126,0.700286,0.939524,0.671735,0.338608,0.671211,0.0723916,0.130269,0.976683,0.186821,0.0598637,0.431431,0.921367,0.511853,0.590959,0.259952,0.834605,0.466967,0.00939518,0.50934,0.0711417,0.983888,0.187017,0.228698,0.627098,0.90468,0.0575634,0.198143,0.6386,0.427791,0.81488,0.616044,0.198385,0.0546072,0.252944,0.882104,0.755785,0.292517,0.105562,0.875074,0.663972,0.915228,0.617851,0.763465,0.611231,0.669305,0.772236,0.416995,0.258539,0.984501,0.618164,0.952447,0.282013,0.202377,0.0591064,0.4972,0.626417,0.186055,0.974035,0.78655,0.380191,0.141407,0.976201,0.599163,0.601712,0.0595691,0.477591,0.503119,0.821274,0.0796319,0.346939,0.625797,0.115951,0.886928,0.863904,0.787496,0.511556,0.274739,0.100388,0.260017,0.628304,0.88668,0.882014,0.645364,0.142362,0.125093,0.016573,0.0196005,0.291543,0.837737,0.91557,0.299099,0.00493956,0.39212,0.621546,0.160415,0.788437,0.222374,0.76358,0.426161,0.57496,0.180427,0.484916,0.801331,0.540934,0.129346,0.772851,0.272012,0.407006,0.992731,0.586382,0.213046,0.856658,0.791242,0.356514,0.856126,0.510116,0.0276367,0.318806,0.370367,0.0257756,0.259974,0.715429,0.00852603,0.258321,0.135913,0.220154,0.557132,0.481572,0.794092,0.9319,0.129978,0.319819,0.130377,0.774626,0.611365,0.785039,0.298495,0.320504,0.407592,0.749541,0.614445,0.273313,0.161016,0.378667,0.874,0.191249,0.478717,0.263127,0.430634,0.0511659,0.876907,0.760799,0.0892382,0.770666,0.994621,0.999807,0.385828,0.685238,0.148576,0.311457,0.118335,0.0662233,0.578148,0.0449201,0.168343,0.0606307,0.390574,0.231829,0.741715,0.706717,0.290345,0.0399812,0.295276,0.0254495,0.0509289,0.498695,0.515738,0.932409,0.957709,0.326642,0.381492,0.762357,0.0325888,0.410666,0.595935,0.876169,0.988239,0.481819,0.525532,0.786116,0.317676,0.690627,0.690787,0.5556,0.288558,0.772293,0.972974,0.0371864,0.0523785,0.559559,0.21017,0.905726,0.94834,0.394297,0.656722,0.58466,0.296865,0.370104,0.444794,0.888561,0.535333,0.707276,0.0904771,0.813789,0.828513,0.12031,0.12456,0.481873,0.488703,0.171358,0.509158,0.277839,0.134597,0.551764,0.440617,0.319457,0.643195,0.0161052,0.0578497,0.901189,0.0356628,0.771565,0.520983,0.512852,0.19899,0.0524111,0.373572,0.809731,0.591088,0.718255,0.870994,0.735086,0.610053,0.190336,0.280121,0.0351261,0.484246,0.575556,0.841256,0.957117,0.421678,0.523807,0.14712,0.854699,0.726432,0.817335,0.416928,0.449194,0.541004,0.786882,0.490355,0.472633,0.572704,0.00666076,0.610893,0.300625,0.930024,0.932905,0.185652,0.0869028,0.159407,0.852484,0.350114,0.245666,0.203566,0.0708433,0.843435,0.913032,0.826325,0.914803,0.724201,0.433377,0.852094,0.308178,0.964402,0.199025,0.0299039,0.211825,0.639944,0.107712,0.630101,0.711593,0.74618,0.878148,0.127456,0.733935,0.93977,0.908264,0.956762,0.999006,0.585462,0.844239,0.480261,0.98153,0.115614,0.79496,0.982299,0.687497,0.304458,0.603793,0.772043,0.500391,0.815987,0.412804,0.777988,0.00436544,0.626451,0.312057,0.240397,0.36269,0.673086,0.728961,0.875297,0.302654,0.0684628,0.615634,0.566991,0.455744,0.807114,0.90724,0.745273,0.879827,0.22062,0.828817,0.949817,0.544163,0.917724,0.562938,0.68789,0.229407,0.754221,0.978899,0.613671,0.981747,0.862944,0.954755,0.458338,0.384389,0.810898,0.316604,0.708873,0.591415,0.281207,0.557246,0.10487,0.440235,0.679796,0.239966,0.416634,0.249277,0.629358,0.841789,0.024147,0.0872676,0.955292,0.0867945,0.275028,0.779169,0.943866,0.98986,0.412064,0.397377,0.0729686,0.41612,0.425995,0.213582,0.849387,0.616857,0.726882,0.962712,0.803306,0.00512248,0.410923,0.184756,0.860226,0.932228,0.725145,0.706679,0.684377,0.162756,0.415445,0.109662,0.120044,0.496343,0.471853,0.590382,0.348491,0.122123,0.934059,0.214523,0.428122,0.140266,0.904469,0.497063,0.253714,0.578421,0.242817,0.339357,0.460278,0.255807,0.173881,0.576679,0.0133825,0.704997,0.443944,0.318275,0.866011,0.389875,0.954224,0.461042,0.997325,0.542716,0.0394102,0.858492,0.49347,0.288238,0.215324,0.812804,0.971435,0.325722,0.267777,0.514281,0.953592,0.834452,0.851814,0.776736,0.243684,0.785459,0.944826,0.133832,0.512498,0.958962,0.25321,0.169786,0.174823,0.0640005,0.838876,0.0616139,0.253994,0.881918,0.936562,0.551588,0.348155,0.177761,0.996378,0.148861,0.677865,0.680647,0.673663,0.605606,0.720699,0.943623,0.19164,0.575247,0.18877,0.106079,0.62715,0.19318,0.623127,0.0866669,0.564119,0.571568,0.360612,0.63595,0.203311,0.423611,0.772878,0.970932,0.830272,0.372939,0.62011,0.386762,0.934898,0.891962,0.108033,0.0776602,0.611075,0.067146,0.156585,0.0545202,0.410081,0.453169,0.598452,0.425765,0.778702,0.0957693,0.749773,0.585012,0.894437,0.288195,0.896307,0.763771,0.0818224,0.76698,0.561874,0.770476,0.468481,0.517622,0.661598,0.704359,0.645384,0.124463,0.233024,0.200621,0.404536,0.108995,0.265722,0.0306945,0.611841,0.50185,0.0881005,0.159108,0.251477,0.49647,0.675779,0.97774,0.489066,0.161187,0.134703,0.428505,0.746547,0.381094,0.26148,0.701988,0.237784,0.850177,0.236768,0.211673,0.136845,0.72134,0.0875,0.629265,0.0980839,0.53863,0.229525,0.0326394,0.67253,0.515314,0.764447,0.638794,0.513131,0.215546,0.00573856,0.732977,0.785047,0.175025,0.118151,0.788146,0.508047,0.720617,0.285401,0.234494,0.165273,0.0982075,0.392266,0.0548843,0.233503,0.454141,0.00326383,0.891834,0.721232,0.668168,0.882552,0.637461,0.746423,0.975955,0.481985,0.383082,0.751824,0.0222999,0.740091,0.449328,0.910687,0.932044,0.56115,0.959133,0.317698,0.230864,0.540782,0.950092,0.389648,0.44395,0.28955,0.0613604,0.0399716,0.593966,0.216724,0.905932,0.605269,0.158212,0.987904,0.000490129,0.500816,0.0516168,0.640881,0.625812,0.912527,0.14726,0.959084,0.433248,0.48997,0.872567,0.953683,0.43666,0.906379,0.744641,0.509452,0.674467,0.908731,0.010213,0.419791,0.0461935,0.780037,0.0714958,0.0972486,0.611404,0.41364,0.721998,0.712427,0.253403,0.176397,0.823164,0.154405,0.396139,0.39662,0.823456,0.473377,0.280138,0.139341,0.588149,0.6823,0.479011,0.93399,0.786283,0.654474,0.785268,0.322287,0.753989,0.327692,0.280107,0.459638,0.395411,0.0962237,0.709547,0.332655,0.143766,0.335455,0.898414,0.823284,0.73955,0.369479,0.33026,0.63239,0.148679,0.452156,0.687606,0.556337,0.440646,0.222285,0.376315,0.981966,0.86604,0.821412,0.762034,0.582466,0.077195,0.133814,0.495521,0.880615,0.866206,0.873146,0.77513,0.344732,0.83221,0.343533,0.231515,0.0700111,0.36948,0.448991,0.404557,0.745522,0.925413,0.683293,0.365799,0.103744,0.666379,0.072296,0.82966,0.948897,0.439723,0.74873,0.38978,0.0316133,0.727691,0.947155,0.919527,0.0922047,0.296682,0.379708,0.218127,0.163299,0.405466,0.67329,0.833948,0.748286,0.355905,0.0445811,0.188094,0.285791,0.985088,0.266501,0.219941,0.132039,0.973755,0.718442,0.690982,0.400678,0.962152,0.325116,0.23488,0.841645,0.328217,0.181347,0.969963,0.847403,0.382314,0.176996,0.270846,0.382692,0.912609,0.161841,0.774331,0.356862,0.853592,0.153516,0.853483,0.268677,0.0735778,0.943286,0.0379197,0.176801,0.851947,0.348069,0.0967933,0.698464,0.725061,0.243861,0.883359,0.324115,0.0834877,0.750018,0.63338,0.16753,0.646848,0.113225,0.378058,0.703983,0.0838363,0.731385,0.323846,0.721848,0.743559,0.0174941,0.863595,0.667325,0.365758,0.264283,0.225746,0.290012,0.353856,0.163046,0.16964,0.885791,0.645128,0.542255,0.0106714,0.1886,0.947072,0.16917,0.0668068,0.488198,0.417881,0.166323,0.119477,|0.208829,0.932932,0.0900034,0.361187,0.711372,0.469278,0.22751,0.935094,0.255091,0.207623,0.099879,0.0349342,0.0474998,0.311131,0.787284,0.0120359,0.973557,0.799733,0.951304,0.634267,0.505789,0.900035,0.389726,0.938692,0.0555697,0.196633,0.823216,0.185461,0.0510657,0.0764039,0.299832,0.230184,0.62204,0.620987,0.852175,0.61183,0.522268,0.155992,0.650284,0.439483,0.989496,0.740224,0.538275,0.706276,0.619314,0.935933,0.125842,0.506512,0.492822,0.228222,0.750287,0.319102,0.383621,0.747838,0.0824848,0.540128,0.896296,0.431276,0.38078,0.434521,0.539012,0.335065,0.238106,0.410378,0.710654,0.954421,0.159354,0.454407,0.681965,0.287434,0.0285224,0.705627,0.530174,0.592471,0.31339,0.585027,0.486476,0.80331,0.573583,0.924648,0.811353,0.134803,0.553866,0.464558,0.588935,0.406717,0.408102,0.259045,0.947841,0.711543,0.346789,0.904663,0.805553,0.862357,0.710994,0.853633,0.574999,0.998041,0.403049,0.645949,0.63118,0.737829,0.717665,0.851331,0.0968423,0.905314,0.418685,0.497098,0.782249,0.798016,0.00684935,0.403933,0.821304,0.158648,0.888561,0.441198,0.717109,0.749331,0.202915,0.597426,0.525294,0.0368847,0.936981,0.261441,0.819479,0.188454,0.0347126,0.0316563,0.0574994,0.796506,0.235473,0.054378,0.741172,0.25549,0.0998319,0.275171,0.363363,0.33651,0.116533,0.249926,0.69733,0.63306,0.52805,0.836819,0.512266,0.776389,0.528884,0.325486,0.640029,0.857317,0.0267281,0.0603494,0.857457,0.144427,0.392536,0.0520396,0.743621,0.833621,0.508336,0.839393,0.900988,0.142907,0.631494,0.20372,0.929123,0.966014,0.689371,0.778685,0.0107278,0.525458,0.153778,0.449303,0.781217,0.238599,0.000503123,0.643971,0.862477,0.420817,0.970751,0.125923,0.170585,0.791246,0.361807,0.395381,0.241964,0.0306539,0.399974,0.948207,0.26437,0.697871,0.215556,0.195613,0.048251,0.831597,0.453934,0.339278,0.303762,0.732279,0.327518,0.445064,0.567269,0.48745,0.476083,0.376288,0.44522,0.301387,0.772272,0.0255111,0.621526,0.246841,0.759046,0.228994,0.610187,0.0691479,0.597668,0.813144,0.596704,0.0435486,0.615634,0.534253,0.889735,0.315809,0.941838,0.308335,0.690983,0.0749311,0.200005,0.282289,0.446547,0.694555,0.743766,0.393752,0.279365,0.874085,0.0709774,0.767424,0.922998,0.428508,0.967503,0.459538,0.629554,0.704786,0.573309,0.568218,0.656754,0.762473,0.888154,0.820387,0.15195,0.586014,0.66448,0.14963,0.300579,0.403775,0.526334,0.620839,0.0471449,0.0322182,0.373288,0.797092,0.160629,0.89363,0.200474,0.902873,0.0468209,0.866576,0.0107361,0.330313,0.831913,0.19929,0.313917,0.0550508,0.645141,0.720125,0.188666,0.907937,0.734505,0.401234,0.407404,0.0620266,0.0549595,0.301884,0.542367,0.186292,0.151898,0.316355,0.900378,0.794276,0.513141,0.6656,0.704501,0.749585,0.254732,0.709085,0.290254,0.954442,0.356896,0.197833,0.100036,0.876959,0.371026,0.776668,0.840436,0.518891,0.655764,0.843483,0.206412,0.609771,0.355787,0.220828,0.460396,0.587644,0.431847,0.0935133,0.940885,0.831911,0.674087,0.934511,0.560513,0.211153,0.44942,0.348754,0.379512,0.240944,0.929279,0.0876398,0.545084,0.276471,0.148581,0.273758,0.381986,0.940006,0.468516,0.696901,0.451532,0.977899,0.924695,0.150055,0.885903,0.676614,0.630955,0.539418,0.507632,0.337109,0.55789,0.277439,0.181545,0.170499,0.17945,0.0563699,0.716212,0.129966,0.503182,0.256278,0.735794,0.485374,0.217348,0.0997046,0.0592489,0.157654,0.307578,0.797701,0.062082,0.0455751,0.566715,0.206528,0.868738,0.628029,0.431061,0.530528,0.619938,0.305929,0.215948,0.628083,0.0306427,0.302462,0.315821,0.276093,0.482143,0.87955,0.114331,0.897754,0.712942,0.024171,0.597188,0.999627,0.528308,0.914663,0.815148,0.979712,0.336805,0.805627,0.327538,0.00240988,0.205221,0.499985,0.472487,0.5046,0.814881,0.998925,0.802612,0.259203,0.401987,0.0679582,0.822182,0.578259,0.0809673,0.4925,0.450982,0.658062,0.735359,0.539559,0.709302,0.480262,0.443161,0.815336,0.405763,0.713741,0.728974,0.570774,0.238666,0.288051,0.779801,0.864985,0.242168,0.354291,0.573896,0.729926,0.864777,0.865534,0.942612,0.293796,0.0426067,0.453658,0.742148,0.509139,0.835623,0.00414824,0.759373,0.499389,0.518578,0.0182323,0.4112,0.832437,0.912897,0.914501,0.946227,0.687229,0.651224,0.193714,0.1016,0.30782,0.648209,0.259924,0.856627,0.0623586,0.786944,0.99195,0.387733,0.143755,0.317775,0.178602,0.597422,0.613055,0.0932783,0.598312,0.712329,0.846398,0.146846,0.548789,0.686281,0.314393,0.902348,0.161254,0.44081,0.562078,0.928579,0.756684,0.497809,0.660527,0.00681448,0.241721,0.773932,0.055223,0.151059,0.926395,0.580284,0.0294574,0.311233,0.642295,0.325134,0.717596,0.888174,0.267174,0.543122,0.643591,0.488208,0.123281,0.824695,0.67838,0.270793,0.493447,0.5949,0.928512,0.801332,0.0705616,0.594243,0.827783,0.703554,0.54869,0.321162,0.197061,0.533208,0.333892,0.420532,0.294531,0.360924,0.897415,0.305114,0.463413,0.901209,0.223219,0.300996,0.462397,0.731723,0.675762,0.173789,0.821727,0.677481,0.687186,0.913877,0.439058,0.251128,0.725572,0.369841,0.545851,0.88143,0.187974,0.692388,0.830611,0.178928,0.472376,0.473528,0.884471,0.420371,0.477248,0.543686,0.627896,0.584048,0.245871,0.096592,0.810708,0.354768,0.798764,0.575829,0.805317,0.988681,0.220228,0.951882,0.859487,0.255309,0.677891,0.538595,0.186203,0.86664,0.71203,0.598541,0.982473,0.602678,0.250191,0.527618,0.794177,0.0758733,0.57717,0.668737,0.341171,0.0977602,0.379484,0.228889,0.968605,0.171376,0.795717,0.830487,0.0418869,0.899117,0.103759,0.237118,0.0439655,0.485415,0.251174,0.614219,0.0423445,0.806033,0.0920169,0.919999,0.404964,0.773322,0.422899,0.917898,0.737347,0.692508,0.429588,0.0607848,0.480455,0.89939,0.654666,0.426551,0.0646069,0.406524,0.473845,0.448004,0.447787,0.9605,0.79476,0.565102,0.486735,0.456916,0.113276,0.651971,0.0944865,0.0403538,0.0758986,0.36735,0.376637,0.677182,0.510954,0.786856,0.386313,0.309985,0.674849,0.349937,0.787362,0.058115,0.669561,0.430298,0.348495,0.863327,0.698385,0.170651,0.148526,0.805426,0.932474,0.955731,0.690586,0.278166,0.859361,0.927785,0.29698,0.0242032,0.984155,0.874758,0.250274,0.802455,0.872166,0.858654,0.952446,0.945085,0.125835,0.89245,0.29163,0.0799052,0.249479,0.915013,0.973603,0.517384,0.0187232,0.22607,0.322104,0.589258,0.458553,0.102784,0.912099,0.354406,0.882666,0.366971,0.736676,0.401602,0.186363,0.378266,0.0296083,0.380472,0.106757,0.11233,0.771355,0.640312,0.455664,0.965168,0.733697,0.0231315,0.151628,0.29678,0.985973,0.430407,0.934299,0.779898,0.924092,0.0356315,0.817051,0.726666,0.519787,0.970341,0.803104,0.305917,0.125665,0.0973176,0.953698,0.618402,0.543476,0.814955,0.911965,0.219438,0.90596,0.0874671,0.696358,0.436287,0.316091,0.80908,0.460292,0.964981,0.785507,0.0890499,0.257513,0.719966,0.230507,0.28078,0.559884,0.525972,0.632991,0.451236,0.834219,0.571945,0.230822,0.262764,0.197382,0.295873,0.44768,0.219534,0.560565,0.647363,0.746648,0.934149,0.287584,0.0141216,0.888422,0.882864,0.361588,0.344396,0.219702,0.945736,0.634548,0.626386,0.305614,0.433076,0.82352,0.41325,0.539412,0.714538,0.949285,0.40789,0.915744,0.740413,0.42038,0.917437,0.821212,0.395296,0.425454,0.177674,0.112663,0.3171,0.581658,0.368254,0.290615,0.58237,0.339818,0.671537,0.802706,0.730551,0.112998,0.0283317,0.91715,0.976676,0.644949,0.416082,0.4905,0.0830861,0.399469,0.73967,0.00946414,0.315778,0.518669,0.571514,0.115557,0.452536,0.692062,0.746694,0.87128,0.488883,0.136849,0.629877,0.794666,0.117183,0.719652,0.00850439,0.582068,0.37351,0.649041,0.774077,0.737706,0.691854,0.526202,0.849768,0.713858,0.0449685,0.540009,0.5712,0.244347,0.309119,0.825613,0.414329,0.98312,0.672788,0.120965,0.92012,0.334771,0.280278,0.81466,0.579659,0.147103,0.825141,0.649639,0.815293,0.0444735,0.877656,0.482084,0.882103,0.96968,0.516964,0.0657374,0.962383,0.0095551,0.629306,0.587421,0.110919,0.865877,0.978465,0.653845,0.406103,0.0185466,0.679232,0.780453,0.43952,0.758393,0.982707,0.837997,0.895415,0.626133,0.610845,0.949279,0.103296,0.916625,0.738665,0.402824,0.896864,0.73583,0.0271024,0.914056,0.663418,0.255664,0.406637,0.771102,0.896822,0.129757,0.66096,0.591315,0.179168,0.0810559,0.93277,0.885528,0.366002,0.104638,0.694367,0.987974,0.0955054,0.615949,0.851704,0.794132,0.820948,0.419564,0.535146,0.207455,0.614821,0.257872,0.232904,0.101636,0.429976,0.228153,0.43753,0.0721621,0.053188,0.522939,0.324395,0.119993,0.989018,0.289277,0.71206,0.336454,0.233189,0.553477,0.742693,0.0203268,0.374224,0.837696,0.0998408,0.689268,0.887795,0.0179254,0.83834,0.537008,0.914578,0.781324,0.515863,0.806398,0.978938,0.5981,0.997576,0.0896734,0.22176,0.47302,0.877222,0.193666,0.744158,0.841089,0.937491,0.185203,0.788069,0.305419,0.317242,0.226588,0.34837,0.666877,0.949643,0.21448,0.91778,0.231909,0.714034,0.903558,0.414941,0.786384,0.844878,0.0645676,0.567444,0.482086,0.0280418,0.190492,0.17785,0.167502,0.337306,0.287457,0.289093,0.347144,0.0487505,0.0835347,0.780161,0.604036,0.318396,0.326655,0.675678,0.998116,0.97593,0.381044,0.490089,0.995017,0.267462,0.691464,0.740595,0.719895,0.730389,0.518815,0.723833,0.71381,0.602474,0.187877,0.555175,0.413879,0.595959,0.805332,0.481397,0.173909,0.522021,0.244793,0.136169,0.920874,0.222047,0.838614,0.480196,0.0991593,0.210073,0.631982,0.985177,0.896658,|0.140375,0.90832,0.51016,0.640184,0.700448,0.244448,0.237718,0.342243,0.995441,0.398772,0.347267,0.221649,0.898662,0.167581,0.437798,0.116836,0.412274,0.805496,0.0349478,0.10057,0.101169,0.557807,0.869043,0.16409,0.487125,0.592986,0.192897,0.849019,0.787146,0.199994,0.129072,0.629049,0.00496024,0.424172,0.207512,0.377778,0.0234975,0.433061,0.989133,0.965182,0.57732,0.727827,0.58528,0.728037,0.332246,0.856188,0.858316,0.988064,0.313905,0.798057,0.309072,0.261297,0.735556,0.596108,0.0370564,0.0308822,0.361166,0.36145,0.239794,0.860135,0.812767,0.113918,0.995679,0.909774,0.881005,0.266313,0.455157,0.757766,0.0675896,0.57195,0.568715,0.460373,0.0821247,0.233355,0.631819,0.0805385,0.393574,0.259812,0.99104,0.519046,0.4319,0.912026,0.167721,0.362643,0.240456,0.805848,0.397664,0.873802,0.340494,0.179282,0.540386,0.0908356,0.580378,0.678128,0.368134,0.0389748,0.823247,0.452977,0.0149795,0.204057,0.00140893,0.289476,0.873575,0.754591,0.732349,0.596351,0.0457851,0.180893,0.638792,0.461325,0.487252,0.380161,0.532187,0.455817,0.220432,0.633146,0.157162,0.389257,0.551039,0.559231,0.622222,0.814494,0.257959,0.170393,0.476056,0.012326,0.550412,0.841616,0.726951,0.432563,0.173303,0.0692196,0.22195,0.634302,0.54043,0.0578219,0.299521,0.694045,0.035572,0.0768306,0.773622,0.304157,0.518903,0.654556,0.544725,0.015933,0.326027,0.585329,0.818759,0.6826,0.231152,0.411474,0.670774,0.728149,0.694541,0.640322,0.656644,0.114775,0.775075,0.362886,0.281393,0.83644,0.438412,0.803023,0.141728,0.886675,0.280651,0.761786,0.345266,0.26093,0.449821,0.15929,0.570179,0.816889,0.407282,0.0437458,0.337568,0.0195895,0.808292,0.297201,0.392072,0.0460362,0.268998,0.91732,0.544503,0.990472,0.59661,0.790145,0.543303,0.0137643,0.606959,0.950723,0.0428852,0.945233,0.202632,0.473011,0.972396,0.200179,0.787779,0.236174,0.514415,0.08947,0.519981,0.88651,0.991239,0.267073,0.545716,0.588555,0.687608,0.188001,0.534991,0.413985,0.317799,0.706785,0.709427,0.708732,0.203384,0.522013,0.890103,0.94123,0.590529,0.144055,0.0936673,0.0853232,0.139712,0.902149,0.71866,0.912062,0.472861,0.958493,0.380152,0.168785,0.519149,0.838671,0.783967,0.884091,0.440223,0.206567,0.131719,0.564078,0.36968,0.367444,0.098931,0.866667,0.438303,0.981496,0.809343,0.752401,0.870249,0.0261138,0.593161,0.56627,0.611484,0.969495,0.504871,0.127045,0.854504,0.498019,0.483543,0.804861,0.286048,0.264736,0.453911,0.624869,0.595157,0.837356,0.666387,0.339023,0.12344,0.882518,0.546685,0.807426,0.7025,0.0216594,0.367879,0.169131,0.880616,0.32036,0.87295,0.454493,0.261534,0.459652,0.666912,0.129921,0.539005,0.0965133,0.940806,0.517633,0.927259,0.904491,0.902105,0.433715,0.415397,0.972235,0.929277,0.0300724,0.805417,0.464032,0.650985,0.313643,0.620036,0.408541,0.849791,0.988604,0.591635,0.524921,0.317014,0.46342,0.0445575,0.795812,0.810102,0.214358,0.0596368,0.3535,0.0179099,0.927351,0.0724249,0.724921,0.458568,0.32703,0.215988,0.588034,0.154928,0.554591,0.387392,0.0183856,0.355892,0.686608,0.620652,0.0314389,0.986706,0.0663567,0.305512,0.62351,0.71853,0.480327,0.246359,0.154164,0.728465,0.571087,0.893775,0.815374,0.599601,0.416081,0.607358,0.266004,0.194774,0.446044,0.0150807,0.505898,0.328185,0.223122,0.116574,0.0223558,0.925724,0.184822,0.858404,0.603972,0.622947,0.890609,0.0298582,0.278236,0.562536,0.825409,0.697973,0.130306,0.972042,0.780517,0.0379964,0.681491,0.965255,0.225552,0.216581,0.38309,0.0969612,0.394982,0.935752,0.944385,0.251409,0.556193,0.920795,0.825601,0.33843,0.464657,0.79866,0.343485,0.471193,0.456126,0.873049,0.361438,0.0198525,0.252924,0.080748,0.515669,0.2273,0.727577,0.129482,0.433141,0.872433,0.759535,0.33967,0.795113,0.253104,0.513852,0.586665,0.136131,0.98768,0.103995,0.654709,0.605794,0.115561,0.642638,0.209313,0.379314,0.568387,0.502565,0.0219327,0.127741,0.0757378,0.875502,0.331388,0.117314,0.310505,0.603364,0.439684,0.275405,0.664422,0.43351,0.021201,0.128699,0.166381,0.120421,0.680823,0.668009,0.798274,0.106048,0.269314,0.753785,0.59047,0.402734,0.715627,0.699518,0.759,0.591658,0.499544,0.0430763,0.128404,0.535358,0.803897,0.914892,0.322989,0.283723,0.697029,0.959907,0.361244,0.254577,0.448388,0.880049,0.312322,0.833776,0.0552992,0.0593891,0.0967637,0.925205,0.25226,0.0216818,0.0519242,0.31443,0.950091,0.167256,0.307595,0.032508,0.584554,0.514451,0.265431,0.197558,0.418501,0.566536,0.303093,0.970011,0.598265,0.159228,0.653911,0.941463,0.455537,0.386668,0.915265,0.255334,0.298928,0.921242,0.35756,0.145478,0.706398,0.601922,0.697438,0.118659,0.443213,0.030958,0.566139,0.553309,0.146846,0.541203,0.115006,0.853388,0.894365,0.538899,0.337217,0.835851,0.728413,0.382933,0.663729,0.811611,0.609222,0.523704,0.195976,0.117209,0.871824,0.0785192,0.789461,0.908004,0.566131,0.891727,0.441079,0.939541,0.465214,0.877619,0.70942,0.401317,0.0687879,0.123426,0.552805,0.589858,0.746259,0.521621,0.194934,0.197318,0.691972,0.317664,0.826672,0.0169251,0.0800472,0.7137,0.660081,0.570346,0.558609,0.891973,0.608159,0.0202489,0.619703,0.23297,0.109146,0.556256,0.923544,0.192292,0.549323,0.578047,0.0583646,0.406268,0.0429381,0.26726,0.680172,0.414602,0.17236,0.290279,0.428382,0.403181,0.573165,0.314375,0.891046,0.52396,0.271212,0.962977,0.49693,0.0800931,0.876296,0.686233,0.8609,0.389402,0.132847,0.880381,0.582587,0.151398,0.93137,0.16495,0.267628,0.874671,0.620089,0.238636,0.793954,0.942618,0.922004,0.0567518,0.14225,0.19717,0.831439,0.214167,0.873739,0.918054,0.516022,0.824781,0.859106,0.118165,0.283431,0.0464306,0.139207,0.452784,0.659004,0.817047,0.14054,0.783014,0.62452,0.93539,0.734508,0.598828,0.514129,0.386264,0.707012,0.46072,0.391253,0.908253,0.989469,0.149622,0.384838,0.402625,0.471269,0.12508,0.907241,0.782534,0.871308,0.950578,0.644245,0.526104,0.653725,0.42632,0.346005,0.13853,0.956117,0.0475127,0.895878,0.990032,0.345769,0.628104,0.34963,0.756745,0.679525,0.854981,0.768365,0.864435,0.147236,0.725029,0.249328,0.380578,0.236466,0.467128,0.11229,0.422388,0.225505,0.408764,0.534466,0.993655,0.611248,0.515671,0.727009,0.305658,0.794741,0.908374,0.133265,0.234909,0.368607,0.394305,0.0473955,0.18751,0.99636,0.760462,0.462238,0.847653,0.364315,0.333972,0.783085,0.644323,0.215736,0.104439,0.586812,0.987156,0.444629,0.975861,0.230784,0.161722,0.878633,0.664978,0.0156484,0.0231802,0.966539,0.480061,0.946447,0.65696,0.965358,0.286754,0.00859302,0.0481048,0.720277,0.779344,0.415635,0.95904,0.378674,0.623118,0.759864,0.660286,0.386453,0.392565,0.726651,0.816656,0.596004,0.686609,0.430505,0.346673,0.180018,0.808842,0.337731,0.459912,0.241891,0.784798,0.140279,0.694724,0.0833066,0.185505,0.396533,0.264743,0.070197,0.504578,0.65969,0.662154,0.835552,0.268231,0.138717,0.195456,0.516659,0.832442,0.577191,0.379023,0.157487,0.242429,0.270496,0.347828,0.645052,0.696539,0.411995,0.427189,0.442552,0.308051,0.475304,0.990117,0.575664,0.179601,0.364884,0.500323,0.452636,0.276177,0.615807,0.996284,0.153554,0.63349,0.705115,0.973571,0.0882024,0.272552,0.772588,0.638075,0.279576,0.069414,0.119788,0.341845,0.852403,0.899205,0.712636,0.381241,0.402647,0.487436,0.501152,0.756596,0.78235,0.711564,0.997211,0.055362,0.311116,0.0303852,0.918776,0.0969437,0.926055,0.350889,0.525131,0.0787539,0.358482,0.580586,0.214761,0.492071,0.18062,0.32332,0.696154,0.608161,0.405031,0.579309,0.542867,0.294638,0.385302,0.740309,0.361178,0.180727,0.711126,0.208408,0.620922,0.129843,0.591139,0.735409,0.790039,0.846651,0.624771,0.549364,0.647632,0.164503,0.856321,0.705905,0.815087,0.335036,0.0887533,0.841211,0.370947,0.246113,0.397477,0.395967,0.408418,0.119553,0.449782,0.949581,0.114887,0.159995,0.0505332,0.0513191,0.947416,0.304206,0.049626,0.491048,0.274153,0.0140137,0.66517,0.80646,0.547859,0.45563,0.316874,0.510415,0.218094,0.354439,0.438275,0.324921,0.862755,0.10659,0.0207404,0.846188,0.878479,0.768883,0.343877,0.171289,0.0685347,0.730914,0.193609,0.769693,0.463781,0.737977,0.659776,0.208954,0.94368,0.0208212,0.926879,0.646139,0.892402,0.570487,0.936548,0.0619889,0.813214,0.0366277,0.0867318,0.368866,0.865889,0.38608,0.0808139,0.189674,0.232597,0.376318,0.810111,0.137255,0.96577,0.873526,0.998136,0.521989,0.75918,0.463878,0.804499,0.73711,0.61656,0.815058,0.275244,0.0847974,0.281551,0.47452,0.827149,0.838223,0.340752,0.432551,0.881862,0.844769,0.864669,0.860501,0.861877,0.601944,0.82058,0.441148,0.569068,0.881676,0.415904,0.0455507,0.393769,0.226332,0.890068,0.633347,0.267532,0.774993,0.661765,0.39202,0.724715,0.203809,0.168574,0.873669,0.567325,0.422107,0.903425,0.443352,0.475222,0.447699,0.852882,0.0354884,0.405193,0.0364443,0.845878,0.540442,0.618673,0.689234,0.678363,0.187743,0.422758,0.910325,0.569212,0.637156,0.441801,0.776043,0.449064,0.246512,0.875915,0.941934,0.622814,0.269371,0.378089,0.156037,0.802415,0.3859,0.875142,0.501984,0.657577,0.302264,0.815293,0.863345,0.289418,0.0450227,0.413904,0.634999,0.689821,0.742068,0.862061,0.27027,0.827917,0.153054,0.989435,0.754103,0.371144,0.468282,0.680458,0.975314,0.0737013,0.853505,0.112052,0.989408,0.181348,0.531444,0.557858,0.256306,0.942764,0.816127,0.350532,0.125755,0.220077,0.7546,|0.186182,0.131789,0.592423,0.284446,0.823213,0.803319,0.14433,0.641342,0.800628,0.286426,0.952665,0.218086,0.266948,0.761568,0.642141,0.535689,0.637816,0.38219,0.61541,0.460729,0.681756,0.150579,0.0783151,0.147418,0.985343,0.353637,0.854512,0.578493,0.705299,0.679598,0.836751,0.745087,0.343406,0.108993,0.422852,0.651506,0.975919,0.898846,0.135475,0.692803,0.137232,0.411718,0.136585,0.534153,0.841154,0.592688,0.0148908,0.575365,0.870062,0.413569,0.185093,0.0625499,0.259798,0.763227,0.470752,0.616167,0.876827,0.219763,0.781234,0.991832,0.0813733,0.794793,0.591665,0.0471522,0.146524,0.693378,0.924891,0.556697,0.564155,0.839114,0.112996,0.716556,0.715146,0.329295,0.0459728,0.273078,0.524357,0.667116,0.839708,0.0517917,0.429044,0.969848,0.896529,0.336933,0.941842,0.55939,0.986269,0.925813,0.565708,0.382004,0.795129,0.924253,0.442136,0.761342,0.856412,0.833234,0.0761673,0.0696174,0.0934018,0.538262,0.8838,0.856854,0.230858,0.930601,0.0903553,0.445979,0.47035,0.690076,0.145608,0.162831,0.736479,0.327968,0.11182,0.163386,0.156443,0.064881,0.336295,0.0454173,0.163525,0.97977,0.342517,0.302615,0.141713,0.657506,0.928436,0.938173,0.721948,0.821496,0.948342,0.326583,0.355906,0.643174,0.84824,0.220438,0.440266,0.237629,0.412954,0.177778,0.972555,0.22718,0.912181,0.57756,0.663927,0.632325,0.561424,0.688906,0.725438,0.566333,0.963867,0.530976,0.344081,0.543763,0.463297,0.771997,0.428147,0.491683,0.109112,0.74025,0.545856,0.771984,0.263739,0.505278,0.353296,0.053825,0.124105,0.58576,0.386838,0.21999,0.444982,0.49474,0.98408,0.945172,0.776456,0.483512,0.275987,0.567642,0.384917,0.384088,0.612408,0.569247,0.861081,0.0809262,0.921959,0.770081,0.520382,0.745704,0.877094,0.886104,0.130491,0.858955,0.821195,0.274567,0.178152,0.530329,0.627474,0.065845,0.751787,0.100244,0.955378,0.925518,0.635998,0.191139,0.50984,0.614421,0.498755,0.650975,0.679617,0.469513,0.955812,0.317984,0.68354,0.44217,0.611797,0.155365,0.796766,0.0284354,0.750435,0.583044,0.390125,0.789542,0.939586,0.344366,0.277825,0.791058,0.234641,0.164437,0.0438684,0.101621,0.310672,0.952172,0.770322,0.390109,0.959378,0.0961689,0.217262,0.328986,0.849683,0.564861,0.528142,0.850104,0.162913,0.711167,0.600243,0.236668,0.617547,0.168491,0.894558,0.487808,0.927681,0.638427,0.687364,0.701832,0.318217,0.00333434,0.771912,0.0805309,0.677964,0.495744,0.927812,0.78767,0.857916,0.492879,0.450663,0.859346,0.322675,0.677093,0.172336,0.468322,0.330088,0.983839,0.682496,0.237944,0.450712,0.698249,0.909909,0.267518,0.0918713,0.3175,0.957224,0.178656,0.0110944,0.392991,0.158315,0.994141,0.672376,0.639578,0.181004,0.912266,0.275082,0.00494379,0.803157,0.307723,0.354363,0.60985,0.779688,0.710467,0.24821,0.725911,0.155446,0.207743,0.200471,0.160196,0.173752,0.388394,0.383504,0.748354,0.56959,0.458668,0.220838,0.64982,0.751544,0.382787,0.961077,0.420245,0.267813,0.481723,0.613012,0.00540662,0.825002,0.82461,0.685505,0.830631,0.492117,0.804234,0.45774,0.392058,0.87331,0.301936,0.340303,0.21683,0.855887,0.215701,0.99667,0.713862,0.77177,0.373001,0.545921,0.635153,0.071133,0.257225,0.984171,0.0826969,0.0577067,0.39629,0.255414,0.120864,0.0193415,0.0970761,0.242241,0.931061,0.21647,0.295399,0.735818,0.383445,0.489024,0.536311,0.325406,0.199767,0.503052,0.0560373,0.0305694,0.515274,0.368888,0.864532,0.230228,0.98448,0.122533,0.736016,0.838032,0.280292,0.463538,0.377063,0.366465,0.4946,0.300163,0.419336,0.619342,0.240554,0.471934,0.885053,0.1139,0.814866,0.478782,0.313479,0.149363,0.766206,0.868328,0.338613,0.490842,0.736821,0.962817,0.118823,0.541323,0.775106,0.184995,0.105199,0.310869,0.845195,0.179937,0.992612,0.997655,0.0196147,0.781355,0.453959,0.165243,0.546905,0.375748,0.797391,0.929864,0.0164403,0.670493,0.923325,0.0463541,0.802041,0.249965,0.256939,0.628972,0.565015,0.451439,0.495082,0.592013,0.0590102,0.189559,0.180578,0.946549,0.103801,0.776035,0.405208,0.097817,0.732756,0.728701,0.0672998,0.0556925,0.233686,0.965804,0.723514,0.733151,0.769585,0.153692,0.798177,0.866615,0.922501,0.983939,0.601289,0.95783,0.365792,0.180816,0.726457,0.629578,0.478926,0.573096,0.573815,0.296908,0.612973,0.971659,0.153537,0.223724,0.253245,0.0574166,0.364786,0.419919,0.983099,0.672017,0.858969,0.536424,0.0351102,0.586491,0.540142,0.353477,0.236292,0.482843,0.0615643,0.831497,0.734804,0.869747,0.434327,0.19755,0.684348,0.882683,0.867079,0.0958341,0.159734,0.821057,0.808512,0.62835,0.518955,0.928981,0.0157567,0.835939,0.263427,0.269929,0.0989926,0.44321,0.109173,0.58592,0.752577,0.124543,0.00546819,0.730108,0.865229,0.574082,0.903185,0.0519828,0.414398,0.182545,0.710784,0.751036,0.105633,0.511568,0.0839496,0.188866,0.575923,0.90466,0.223603,0.597397,0.884822,0.196235,0.751621,0.425331,0.590377,0.70009,0.159772,0.762006,0.712626,0.96284,0.178649,0.653743,0.348383,0.681932,0.478079,0.830048,0.44417,0.662868,0.790247,0.464286,0.73229,0.474257,0.0464693,0.514215,0.309158,0.92409,0.988321,0.914281,0.267415,0.447872,0.2812,0.765818,0.780767,0.629948,0.168321,0.398957,0.00986665,0.866432,0.23866,0.247462,0.563926,0.334659,0.547188,0.12146,0.444018,0.970164,0.174874,0.401439,0.863148,0.381123,0.45789,0.0271038,0.766834,0.62974,0.711397,0.811889,0.609403,0.109156,0.329526,0.617634,0.386615,0.92044,0.467296,0.974535,0.480723,0.571768,0.62723,0.0207145,0.481898,0.933669,0.350141,0.378911,0.614707,0.676355,0.851772,0.0726282,0.689947,0.179613,0.52503,0.628102,0.741309,0.648358,0.695595,0.178536,0.480722,0.805017,0.0242971,0.458244,0.388053,0.219152,0.461592,0.37577,0.792437,0.613272,0.533471,0.285117,0.164369,0.192177,0.506859,0.218058,0.949466,0.205315,0.591309,0.401054,0.51688,0.574835,0.120646,0.183114,0.774673,0.608742,0.0945631,0.530114,0.132025,0.0683543,0.0494038,0.312795,0.520023,0.679932,0.461448,0.912072,0.466135,0.629491,0.772138,0.533256,0.0640926,0.700072,0.220431,0.808167,0.570848,0.990709,0.0844442,0.750093,0.613264,0.776449,0.672632,0.584936,0.581374,0.735506,0.365897,0.644782,0.180061,0.937548,0.627414,0.427333,0.685532,0.21176,0.480434,0.1452,0.749265,0.291086,0.738561,0.446692,0.445759,0.781451,0.634643,0.618205,0.592429,0.336652,0.662933,0.517316,0.908665,0.780893,0.730369,0.142894,0.757405,0.545391,0.0607478,0.247805,0.773323,0.197046,0.887544,0.755634,0.710534,0.399649,0.636222,0.782652,0.131723,0.191049,0.296735,0.218664,0.939404,0.959889,0.57727,0.228136,0.164869,0.452742,0.911059,0.0844464,0.54855,0.611358,0.755875,0.511908,0.133481,0.248819,0.835279,0.0302967,0.0613072,0.458422,0.718873,0.928568,0.979099,0.87777,0.346157,0.217104,0.442931,0.788544,0.857682,0.85898,0.727219,0.628029,0.323289,0.238026,0.88771,0.924758,0.869993,0.500489,0.0869525,0.68246,0.895958,0.484374,0.527566,0.64494,0.016019,0.835892,0.545769,0.466387,0.10352,0.839296,0.938365,0.868836,0.265257,0.22709,0.057483,0.358255,0.46696,0.0416597,0.262327,0.435233,0.383918,0.722853,0.368713,0.825736,0.593202,0.0897387,0.145944,0.840521,0.936925,0.83863,0.407208,0.760198,0.193116,0.130273,0.326219,0.213451,0.402898,0.882685,0.671611,0.826211,0.165056,0.833121,0.968103,0.742193,0.647649,0.203558,0.696879,0.516039,0.519444,0.617581,0.785861,0.404968,0.699248,0.887417,0.846766,0.17038,0.527739,0.472129,0.76274,0.260615,0.443426,0.297046,0.818041,0.0170962,0.285407,0.104137,0.878527,0.670925,0.901657,0.443003,0.322407,0.460966,0.177632,0.925601,0.297461,0.281438,0.8566,0.809392,0.45024,0.413898,0.429427,0.0016098,0.479804,0.274882,0.117354,0.442318,0.674632,0.602494,0.696677,0.962533,0.829484,0.0482873,0.0247909,0.609036,0.973498,0.252167,0.00820625,0.27834,0.525687,0.033535,0.26337,0.26245,0.943114,0.809789,0.380007,0.92262,0.770336,0.102258,0.359019,0.745117,0.863195,0.314033,0.675689,0.953801,0.715913,0.565033,0.679815,0.878431,0.0861508,0.966906,0.93436,0.128007,0.258196,0.12699,0.530358,0.923479,0.181104,0.936117,0.368568,0.960666,0.243267,0.970101,0.345712,0.98942,0.218391,0.909234,1.38283e-05,0.987329,0.597704,0.553986,0.850836,0.596266,0.159779,0.528943,0.0682948,0.588463,0.496369,0.568945,0.243646,0.524831,0.28454,0.0481188,0.260462,0.422745,0.078917,0.424915,0.0213408,0.44371,0.128937,0.809581,0.770577,0.235857,0.176462,0.0545701,0.220025,0.297474,0.982031,0.834921,0.456873,0.265512,0.912136,0.514282,0.946024,0.725222,0.211508,0.236436,0.438065,0.243585,0.308979,0.62091,0.624544,0.0440663,0.169994,0.800116,0.398631,0.443269,0.999486,0.502519,0.244998,0.945104,0.773966,0.244596,0.0839052,0.578144,0.0670258,0.262347,0.263893,0.951294,0.918986,0.501668,0.127865,0.978984,0.351306,0.648401,0.547952,0.732337,0.489926,0.624121,0.374231,0.00294691,0.0781671,0.0476566,0.423211,0.653907,0.980276,0.169809,0.0963326,0.661754,0.156985,0.15495,0.346374,0.835518,0.329783,0.620328,0.703868,0.782949,0.819428,0.869617,0.822447,0.80234,0.81563,0.15506,0.406966,0.882329,0.273596,0.903232,0.354024,0.410649,0.0706325,0.0138059,0.000284016,0.644603,0.970799,0.0878981,0.221421,0.163518,0.186319,0.180723,0.286986,0.796471,0.57816,0.683947,0.261278,0.422516,0.62297,0.300461,0.016341,0.180852,0.22705,0.0350108,0.732737,0.0332879,0.32641,0.955884,0.875121,0.0711268,0.236765,|0.638024,0.45541,0.704689,0.485797,0.50543,0.987221,0.645855,0.373905,0.45663,0.385278,0.191634,0.814408,0.292423,0.700987,0.994475,0.670516,0.99356,0.638693,0.13225,0.10902,0.423711,0.872534,0.831616,0.148029,0.495757,0.605739,0.155038,0.527531,0.000937402,0.826192,0.00956935,0.943,0.0973021,0.608832,0.648847,0.355868,0.557629,0.614879,0.592495,0.200038,0.16876,0.0586361,0.5326,0.321163,0.142051,0.763459,0.840544,0.536206,0.463164,0.474153,0.0511011,0.712571,0.266664,0.522078,0.985698,0.558725,0.294178,0.66671,0.059022,0.583303,0.830449,0.733114,0.386317,0.828529,0.236668,0.910811,0.532092,0.27063,0.133395,0.477249,0.869926,0.989327,0.699884,0.324784,0.896071,0.956459,0.56329,0.744336,0.885571,0.900504,0.588685,0.611544,0.319518,0.560019,0.905411,0.457524,0.172204,0.244104,0.667234,0.440465,0.767611,0.531919,0.519295,0.828877,0.579889,0.772624,0.674754,0.683591,0.537916,0.736762,0.141145,0.320444,0.411157,0.851518,0.426566,0.00725091,0.690867,0.202916,0.505624,0.424094,0.998113,0.728357,0.200433,0.966858,0.797034,0.424284,0.248297,0.101204,0.0392077,0.643539,0.718832,0.947092,0.886341,0.807949,0.746682,0.321874,0.710322,0.82574,0.689914,0.452577,0.838982,0.908037,0.76027,0.844103,0.116475,0.394804,0.772548,0.586716,0.293889,0.71611,0.887719,0.748937,0.720672,0.178235,0.111707,0.169846,0.0747652,0.397844,0.121323,0.935542,0.030251,0.40027,0.210222,0.916466,0.147268,0.43073,0.971235,0.180544,0.634444,0.0897217,0.100669,0.543614,0.175493,0.996907,0.656008,0.323787,0.174846,0.686042,0.680618,0.0530793,0.204503,0.164231,0.966902,0.908522,0.7959,0.859375,0.996084,0.174131,0.793155,0.793844,0.588257,0.716265,0.667361,0.214634,0.0526556,0.819469,0.136588,0.013808,0.218102,0.542526,0.527272,0.872954,0.601207,0.917493,0.370299,0.769426,0.249825,0.237569,0.0937181,0.305993,0.621157,0.609003,0.179007,0.239727,0.133044,0.640521,0.323586,0.864512,0.715053,0.614633,0.541568,0.421853,0.92467,0.341385,0.52153,0.424675,0.59203,0.233044,0.582493,0.403858,0.842277,0.750847,0.97366,0.775754,0.510966,0.300762,0.674313,0.245197,0.235052,0.00969505,0.219346,0.200952,0.429031,0.176851,0.877898,0.966138,0.681318,0.992054,0.690702,0.623439,0.219699,0.5515,0.459498,0.603668,0.701536,0.889168,0.0633098,0.562244,0.762385,0.0521505,0.71617,0.652555,0.459062,0.785742,0.334069,0.851505,0.809858,0.737949,0.600525,0.0337,0.0361094,0.459511,0.619429,0.399407,0.90253,0.371469,0.231032,0.752435,0.953185,0.571764,0.923548,0.10063,0.307109,0.183307,0.358809,0.432615,0.170377,0.105548,0.588436,0.135068,0.287893,0.737599,0.868461,0.606881,0.113983,0.455872,0.17882,0.341702,0.868347,0.0730892,0.435924,0.174423,0.0611321,0.555363,0.263964,0.711498,0.07101,0.29505,0.780452,0.526083,0.802065,0.419672,0.754594,0.947452,0.635378,0.091222,0.876916,0.675864,0.584786,0.115491,0.358456,0.136468,0.752566,0.087342,0.949113,0.675064,0.223286,0.283104,0.522349,0.295015,0.472328,0.077651,0.909872,0.56615,0.211125,0.819269,0.0326353,0.782449,0.443901,0.0129519,0.83122,0.136538,0.0468738,0.370938,0.33601,0.793346,0.997186,0.742487,0.103312,0.92657,0.625915,0.454128,0.311178,0.899079,0.519038,0.134439,0.723654,0.0411027,0.299982,0.543916,0.579101,0.94434,0.246278,0.533629,0.365434,0.608546,0.722547,0.426617,0.345105,0.503461,0.0511611,0.0182129,0.392365,0.624031,0.321164,0.0135732,0.680825,0.0746022,0.815404,0.892416,0.820654,0.763844,0.840203,0.052862,0.22345,0.439825,0.117497,0.889266,0.910133,0.491104,0.58749,0.695539,0.253373,0.118712,0.734604,0.193264,0.941908,0.871587,0.268614,0.294515,0.360993,0.129344,0.357124,0.277513,0.890923,0.803476,0.886291,0.730303,0.342473,0.505487,0.336666,0.873617,0.411221,0.967198,0.172551,0.723446,0.442561,0.445405,0.0682504,0.323251,0.358006,0.426142,0.956764,0.436377,0.972205,0.124008,0.793607,0.252601,0.857335,0.450842,0.874324,0.182576,0.676357,0.241808,0.80118,0.459059,0.16754,0.576718,0.17805,0.981221,0.320731,0.409553,0.369101,0.0355918,0.788028,0.809177,0.0767704,0.539074,0.740651,0.728878,0.596524,0.0222542,0.631024,0.0298606,0.860974,0.725424,0.102708,0.936996,0.0660323,0.726945,0.523342,0.10614,0.636688,0.592921,0.824249,0.0947747,0.426955,0.764439,0.764898,0.905571,0.990106,0.75673,0.411967,0.638061,0.292372,0.468501,0.331659,0.718464,0.419757,0.22895,0.598871,0.625265,0.854181,0.323325,0.479279,0.4725,0.967484,0.441608,0.869001,0.911237,0.223457,0.131482,0.648813,0.976387,0.850638,0.920643,0.660184,0.239849,0.619888,0.412266,0.0281348,0.0144672,0.234344,0.680622,0.324604,0.178707,0.777971,0.434738,0.670259,0.363676,0.672383,0.121816,0.00400406,0.253603,0.378546,0.149245,0.62828,0.819626,0.638794,0.0824718,0.810539,0.76028,0.896607,0.62963,0.211749,0.712785,0.638,0.836573,0.559329,0.127454,0.308594,0.346388,0.971611,0.610722,0.760203,0.0347151,0.0677562,0.685199,0.802004,0.338922,0.534572,0.833162,0.317028,0.0542789,0.512388,0.768603,0.0826478,0.547123,0.722716,0.552968,0.667104,0.679918,0.472434,0.904539,0.384856,0.184824,0.16929,0.574553,0.351235,0.445024,0.988449,0.385031,0.880698,0.119621,0.620641,0.385873,0.86833,0.529243,0.659215,0.910066,0.00833833,0.435405,0.527649,0.76005,0.729972,0.30265,0.114317,0.387394,0.636634,0.171202,0.638461,0.769772,0.403727,0.0997269,0.122439,0.935284,0.276398,0.0403786,0.570948,0.444894,0.807566,0.552231,0.265334,0.655592,0.228405,0.723989,0.347418,0.227452,0.645398,0.886165,0.996443,0.3124,0.449589,0.211824,0.222916,0.908933,0.115957,0.923353,0.663584,0.622449,0.048128,0.151365,0.226697,0.40168,0.181249,0.0600387,0.959457,0.707522,0.278607,0.968714,0.656377,0.601531,0.28005,0.569094,0.342911,0.084709,0.157336,0.890743,0.559116,0.693871,0.573189,0.886525,0.134511,0.562631,0.821342,0.690361,0.586121,0.85675,0.5698,0.31083,0.237442,0.437045,0.718371,0.930752,0.37275,0.360061,0.136561,0.586055,0.0698892,0.271044,0.927039,0.470699,0.506949,0.0376025,0.759765,0.25314,0.287028,0.338874,0.989878,0.0831862,0.385017,0.587524,0.0906736,0.986151,0.123306,0.721319,0.0719013,0.166237,0.303301,0.182785,0.814292,0.144094,0.89441,0.669746,0.567521,0.925731,0.0615116,0.269469,0.700878,0.211598,0.346385,0.61219,0.743823,0.243344,0.954123,0.159492,0.869058,0.653238,0.118363,0.554412,0.776313,0.56546,0.861737,0.830779,0.810626,0.313461,0.5975,0.717214,0.834355,0.00585908,0.332588,0.978746,0.979525,0.956187,0.156646,0.634468,0.853754,0.532099,0.819398,0.902795,0.0629289,0.27168,0.180439,0.802426,0.570237,0.931446,0.823957,0.406236,0.00212163,0.388324,0.217256,0.22508,0.969039,0.340891,0.860727,0.554487,0.10446,0.71345,0.247572,0.201218,0.100765,0.577296,0.384085,0.168095,0.945016,0.39051,0.551345,0.946725,0.492194,0.943631,0.797396,0.912126,0.932902,0.98529,0.209266,0.979199,0.179633,0.908992,0.915737,0.0819157,0.90506,0.334087,0.27678,0.933251,0.316422,0.33682,0.712733,0.270433,0.115944,0.357265,0.824297,0.467757,0.97,0.926931,0.530926,0.583816,0.876862,0.840611,0.724232,0.714507,0.456064,0.556309,0.985044,0.284829,0.79906,0.133053,0.837867,0.978693,0.837304,0.382668,0.533906,0.923512,0.990324,0.604156,0.477788,0.622777,0.271302,0.622904,0.477753,0.819278,0.778342,0.132326,0.791305,0.160207,0.19039,0.319806,0.647049,0.288246,0.853663,0.841056,0.549006,0.633918,0.435635,0.761383,0.885181,0.622646,0.0106894,0.705728,0.0338304,0.995104,0.694715,0.406336,0.805282,0.994952,0.979061,0.581355,0.860377,0.333405,0.268609,0.711591,0.984004,0.246095,0.170891,0.346278,0.917473,0.911773,0.147033,0.380975,0.620475,0.657964,0.507082,0.212268,0.491843,0.42358,0.486773,0.232459,0.99138,0.00643957,0.138518,0.146101,0.895348,0.818774,0.936355,0.818429,0.0393704,0.661405,0.338678,0.376141,0.954232,0.265032,0.927349,0.953028,0.778116,0.663031,0.972681,0.127347,0.23736,0.740236,0.289112,0.930735,0.185708,0.0418542,0.163093,0.722798,0.464296,0.00739574,0.242788,0.514818,0.560354,0.279605,0.657875,0.782512,0.338266,0.486179,0.241225,0.59054,0.590675,0.194517,0.939857,0.387567,0.640649,0.414115,0.580866,0.970855,0.433553,0.499114,0.408388,0.610704,0.784453,0.911913,0.791298,0.531431,0.347626,0.201749,0.145715,0.142072,0.903573,0.506005,0.431717,0.827209,0.712801,0.575378,0.0704863,0.873033,0.933964,0.944451,0.537343,0.749918,0.52825,0.755281,0.66299,0.547911,0.636001,0.243565,0.6024,0.915627,0.374461,0.380211,0.643535,0.780177,0.130571,0.114121,0.204978,0.815915,0.488368,0.868813,0.858285,0.233053,0.124342,0.748074,0.395335,0.260297,0.34995,0.469904,0.493133,0.237128,0.45261,0.356886,0.206519,0.298801,0.235554,0.355668,0.508051,0.782995,0.0915915,0.535719,0.812971,0.200364,0.544606,0.914378,0.505455,0.685236,0.0530719,0.282229,0.647859,0.908719,0.862399,0.621927,0.262736,0.694976,0.508356,0.076297,0.389901,0.783939,0.255381,0.041686,0.577515,0.596594,0.413164,0.425254,0.208814,0.283216,0.85794,0.337196,0.653661,0.161091,0.628515,0.420185,0.597069,0.26841,0.503979,0.709559,0.0126243,0.0446094,0.770238,0.219668,0.142129,0.483134,0.00791728,0.217288,0.301959,0.362671,0.487628,0.561059,0.973923,0.707387,0.0107616,0.502713,0.593035,0.125057,0.960103,0.139226,0.778743,0.0947522,0.753686,0.809156,0.383338,0.14921,0.496592,0.853926,|0.860478,0.0299647,0.0144593,0.541862,0.209738,0.824668,0.739877,0.427356,0.692384,0.935241,0.284369,0.4019,0.999491,0.818979,0.0605325,0.580905,0.503076,0.0135425,0.990247,0.203303,0.545888,0.0477711,0.128615,0.720185,0.392855,0.433478,0.400749,0.639226,0.4644,0.859102,0.209364,0.846777,0.764347,0.757697,0.612312,0.0025875,0.479226,0.741816,0.5097,0.70309,0.748965,0.26623,0.00533485,0.0350618,0.364499,0.415736,0.209301,0.600889,0.0386978,0.140299,0.817555,0.596179,0.834027,0.585637,0.22036,0.197307,0.498793,0.576605,0.670549,0.295905,0.354805,0.0173107,0.156333,0.2151,0.233174,0.76333,0.691389,0.219554,0.249763,0.727528,0.825576,0.334921,0.696983,0.866326,0.277687,0.197381,0.853304,0.999839,0.381966,0.856733,0.451961,0.781474,0.122903,0.108724,0.976628,0.830206,0.730051,0.0742698,0.00902885,0.736507,0.366175,0.995929,0.817978,0.880902,0.440988,0.926062,0.0948569,0.213042,0.506344,0.492515,0.170482,0.645415,0.949853,0.599541,0.195967,0.0536229,0.889085,0.389977,0.93542,0.311406,0.877669,0.262265,0.325725,0.803355,0.678642,0.566326,0.304932,0.718791,0.818061,0.45119,0.0174001,0.558668,0.382282,0.604474,0.310547,0.954096,0.638495,0.0891258,0.989563,0.0992524,0.641022,0.46288,0.031279,0.319253,0.185546,0.435104,0.290714,0.0421433,0.385735,0.400711,0.785689,0.43819,0.668559,0.518256,0.0585722,0.342447,0.498288,0.722041,0.245759,0.942297,0.921357,0.169941,0.417424,0.439616,0.105415,0.491476,0.351594,0.923728,0.000683427,0.490309,0.883442,0.176046,0.0508093,0.708183,0.658293,0.529748,0.322603,0.0254326,0.560312,0.501276,0.855724,0.507452,0.764828,0.542911,0.347946,0.445086,0.192333,0.970203,0.139321,0.280257,0.594637,0.691973,0.837525,0.498181,0.772577,0.864822,0.950466,0.327822,0.583799,0.159418,0.642256,0.0622845,0.239527,0.781409,0.359689,0.137911,0.932391,0.0869192,0.0272871,0.294279,0.508136,0.963265,0.539043,0.662181,0.826669,0.746171,0.755111,0.44299,0.407231,0.00563097,0.343364,0.193403,0.816949,0.507539,0.608582,0.737488,0.417955,0.854636,0.376632,0.361773,0.209121,0.867841,0.66897,0.211201,0.318648,0.651686,0.665403,0.753916,0.653353,0.174628,0.178,0.0971445,0.13993,0.795692,0.361046,0.0108418,0.901638,0.991957,0.300904,0.28345,0.0802425,0.810244,0.000580668,0.145909,0.180865,0.949116,0.943022,0.486282,0.18385,0.666299,0.973646,0.502876,0.343632,0.481173,0.161288,0.0148666,0.109174,0.118632,0.985983,0.113147,0.630298,0.812215,0.143973,0.224653,0.457416,0.588972,0.439934,0.823147,0.889642,0.743242,0.0393537,0.369424,0.0308018,0.830517,0.833706,0.393466,0.307506,0.473378,0.972854,0.550112,0.315695,0.831656,0.0770822,0.888821,0.139993,0.985051,0.974323,0.908063,0.553437,0.211269,0.918143,0.517286,0.471052,0.0200517,0.528194,0.767953,0.724341,0.874333,0.00335491,0.413114,0.591876,0.103856,0.173186,0.204886,0.644334,0.953041,0.0868021,0.240588,0.542202,0.954999,0.809942,0.609357,0.143091,0.392597,0.986428,0.349581,0.991897,0.865044,0.170521,0.0302118,0.983173,0.0181578,0.44244,0.556568,0.444018,0.955492,0.983562,0.432731,0.172662,0.880683,0.0876135,0.633207,0.689969,0.580207,0.81927,0.9207,0.443775,0.736874,0.557912,0.408525,0.846306,0.200783,0.530166,0.23739,0.71538,0.348479,0.723271,0.0744739,0.670014,0.599275,0.24215,0.0753067,0.697203,0.781555,0.760551,0.234308,0.385315,0.881913,0.256152,0.796755,0.369204,0.643885,0.792637,0.633738,0.962667,0.699206,0.716397,0.0779024,0.983724,0.701404,0.57986,0.942699,0.147794,0.96324,0.191091,0.328796,0.258411,0.993563,0.624866,0.256332,0.0925385,0.571688,0.356126,0.961543,0.309822,0.384104,0.514325,0.779526,0.83465,0.335476,0.470242,0.973057,0.82442,0.100936,0.578965,0.36162,0.523101,0.385884,0.244606,0.780051,0.31579,0.00415152,0.10325,0.0669768,0.404614,0.368482,0.958226,0.317401,0.0666539,0.209689,0.566006,0.504676,0.571691,0.423471,0.598824,0.864968,0.426617,0.286369,0.956077,0.616808,0.71237,0.579048,0.921566,0.653671,0.635218,0.715949,0.770067,0.501576,0.631444,0.27891,0.576889,0.990113,0.0143801,0.508037,0.882028,0.497495,0.225781,0.724602,0.893168,0.471615,0.598388,0.944571,0.281328,0.578279,0.329086,0.439367,0.842703,0.232844,0.921535,0.0281927,0.334861,0.70894,0.599818,0.260657,0.97973,0.160486,0.313619,0.0045079,0.14696,0.0426424,0.954039,0.960843,0.58637,0.0641329,0.115277,0.940624,0.251422,0.238226,0.848617,0.421468,0.655912,0.0726106,0.210386,0.0166003,0.0573226,0.175137,0.5488,0.758291,0.204587,0.827761,0.0188214,0.660017,0.710559,0.518277,0.894597,0.39393,0.979643,0.919322,0.994294,0.254956,0.2826,0.591175,0.958205,0.99714,0.665421,0.014778,0.732958,0.893122,0.551064,0.837815,0.432029,0.655604,0.349935,0.660996,0.548183,0.104555,0.634696,0.40232,0.0204483,0.711918,0.397651,0.522511,0.0726328,0.294738,0.587877,0.270296,0.172697,0.491572,0.595757,0.704257,0.639579,0.577961,0.779234,0.00566173,0.756868,0.245845,0.688435,0.783265,0.31366,0.881076,0.628221,0.42088,0.452607,0.28601,0.185349,0.876563,0.618441,0.97935,0.1609,0.692523,0.591736,0.160556,0.557496,0.365583,0.330925,0.0717159,0.296362,0.334097,0.439498,0.554315,0.211354,0.0892714,0.383868,0.450906,0.414255,0.348414,0.558074,0.531222,0.880971,0.20931,0.182912,0.533523,0.103042,0.733592,0.707437,0.609157,0.632985,0.45912,0.100129,0.266921,0.985341,0.917876,0.744994,0.224289,0.0992601,0.926802,0.977534,0.421442,0.423041,0.0294712,0.264412,0.991278,0.174794,0.0543568,0.0562952,0.061431,0.655315,0.732849,0.291898,0.847414,0.960259,0.915039,0.288696,0.71351,0.404037,0.772411,0.911262,0.406808,0.567578,0.301841,0.0914067,0.792631,0.736901,0.334006,0.492359,0.689331,0.62876,0.625625,0.93206,0.602254,0.410166,0.425722,0.484601,0.98438,0.10161,0.361077,0.370694,0.50059,0.585618,0.939111,0.0184987,0.707474,0.245805,0.558175,0.491459,0.355626,0.250016,0.463001,0.129139,0.815344,0.102449,0.518225,0.38827,0.478822,0.484743,0.644874,0.770754,0.0795761,0.816523,0.448478,0.205298,0.994215,0.608667,0.787485,0.418214,0.0754652,0.855862,0.214685,0.233818,0.107583,0.094426,0.959966,0.164218,0.40259,0.650715,0.814006,0.362797,0.808644,0.724435,0.560906,0.896773,0.863116,0.95342,0.953089,0.978674,0.274791,0.53429,0.338101,0.64886,0.844793,0.928852,0.0181825,0.316306,0.581531,0.34445,0.486237,0.575004,0.210092,0.112961,0.575649,0.00879657,0.434512,0.0563757,0.554646,0.41646,0.0747787,0.674785,0.75675,0.482808,0.365812,0.871388,0.644662,0.803938,0.133908,0.370684,0.733986,0.505696,0.957296,0.456599,0.856422,0.104438,0.615327,0.392305,0.512615,0.206106,0.241546,0.143319,0.313963,0.262539,0.767023,0.742048,0.599487,0.648015,0.755134,0.485478,0.411286,0.369601,0.467013,0.964969,0.279564,0.352024,0.771103,0.469335,0.447374,0.635253,0.0372916,0.136217,0.00739908,0.215095,0.523259,0.955124,0.896527,0.601436,0.805351,0.736378,0.923942,0.878106,0.206852,0.42623,0.628829,0.921498,0.883347,0.479959,0.325484,0.721852,0.26588,0.263495,0.303328,0.352977,0.875374,0.872768,0.866144,0.0285485,0.467455,0.729787,0.488414,0.540817,0.369793,0.646932,0.598886,0.979324,0.439277,0.00625521,0.275617,0.0241444,0.421578,0.695439,0.520331,0.707285,0.0513817,0.875556,0.887359,0.824201,0.200112,0.923024,0.433648,0.964624,0.739049,0.635428,0.591588,0.565091,0.249077,0.163304,0.726924,0.860231,0.928243,0.0301185,0.303821,0.223321,0.268897,0.145162,0.281977,0.0615796,0.304198,0.599912,0.573612,0.613514,0.859157,0.837173,0.00262731,0.542562,0.752585,0.548949,0.525528,0.936822,0.631831,0.837108,0.154417,0.561596,0.468626,0.879222,0.1418,0.476647,0.165546,0.444131,0.644662,0.957743,0.908187,0.516399,0.152279,0.454039,0.555541,0.491049,0.666228,0.859211,0.861053,0.224719,0.519741,0.0130229,0.768796,0.975352,0.98328,0.708327,0.34808,0.211375,0.462306,0.976721,0.532408,0.880705,0.490385,0.784282,0.749085,0.555344,0.206127,0.763829,0.967938,0.925322,0.548912,0.670985,0.108976,0.657533,0.970943,0.296586,0.522788,0.949652,0.163329,0.962182,0.148208,0.45087,0.220059,0.740509,0.25068,0.0548307,0.332524,0.843808,0.595695,0.914743,0.0786626,0.085157,0.788032,0.00932819,0.436551,0.745814,0.46637,0.128689,0.783302,0.695873,0.81062,0.417938,0.685403,0.558845,0.867314,0.486293,0.968184,0.327839,0.681901,0.386518,0.105389,0.76433,0.274779,0.872926,0.487438,0.125493,0.378621,0.289524,0.501072,0.803787,0.678165,0.726422,0.821835,0.191757,0.436008,0.272921,0.996709,0.0235725,0.523605,0.218215,0.574444,0.671949,0.229651,0.171375,0.541146,0.514437,0.065679,0.642845,0.0351246,0.160462,0.340057,0.0753217,0.830682,0.0242529,0.600934,0.9355,0.390136,0.4491,0.434558,0.169303,0.376217,0.532332,0.70343,0.81974,0.373618,0.146017,0.37792,0.398806,0.506314,0.304774,0.803728,0.247674,0.436944,0.975695,0.579639,0.686009,0.352178,0.301811,0.477375,0.102514,0.544695,0.144131,0.636856,0.21824,0.937239,0.899246,0.780736,0.36619,0.468197,0.515266,0.886357,0.730581,0.897248,0.108802,0.215252,0.697763,0.421552,0.202042,0.676804,0.443812,0.608641,0.614659,0.110107,0.969646,0.820241,0.687259,0.759564,0.36053,0.0202786,0.507938,0.198096,0.454201,0.988399,0.269335,0.489683,0.90715,0.21752,0.275531,0.664996,0.308339,0.756666,0.691815,0.31649,0.570289,0.778755,0.29625,0.747713,0.183207,0.558852,0.244876,0.0966861,0.3997,0.341633,|0.892447,0.911622,0.384188,0.813444,0.205189,0.364783,0.737134,0.122318,0.733674,0.671022,0.523091,0.707503,0.198793,0.956409,0.208648,0.161613,0.488098,0.456255,0.0644643,0.18191,0.0018329,0.0652466,0.308463,0.230585,0.391374,0.695345,0.372556,0.465908,0.271475,0.685793,0.464803,0.512471,0.882969,0.823175,0.872281,0.501722,0.123297,0.737088,0.679251,0.0438099,0.129485,0.647729,0.371231,0.825662,0.524568,0.616008,0.777681,0.723183,0.30914,0.321495,0.243794,0.852693,0.754397,0.0181154,0.694801,0.0761757,0.0383162,0.327839,0.931952,0.0396202,0.478916,0.153951,0.858964,0.449578,0.864906,0.909255,0.620206,0.176224,0.100751,0.473198,0.261515,0.361791,0.180201,0.151919,0.803787,0.184272,0.0406392,0.354646,0.0405545,0.461467,0.00659966,0.0750263,0.247961,0.339163,0.766974,0.0870482,0.731853,0.295869,0.431418,0.200572,0.302927,0.203882,0.693243,0.327186,0.920677,0.138881,0.676887,0.482113,0.16614,0.329924,0.142955,0.304547,0.53438,0.893705,0.751186,0.20385,0.817055,0.11592,0.672927,0.933181,0.857474,0.809971,0.188252,0.735724,0.868735,0.925901,0.923412,0.294249,0.321612,0.662437,0.39504,0.276294,0.0591168,0.959029,0.707431,0.0700091,0.525052,0.0524062,0.311336,0.628956,0.0122803,0.168281,0.377503,0.593684,0.848095,0.219007,0.0717184,0.540569,0.329317,0.875891,0.621061,0.651581,0.188735,0.362098,0.194076,0.933801,0.51738,0.25686,0.544273,0.693235,0.0195944,0.974478,0.29174,0.751254,0.822629,0.871309,0.978121,0.27759,0.375469,0.632322,0.134898,0.218796,0.230159,0.801429,0.822875,0.17075,0.842155,0.0624969,0.168081,0.175098,0.167418,0.861519,0.0372642,0.876273,0.154429,0.143809,0.648214,0.0882654,0.0323941,0.160131,0.804141,0.945561,0.0913341,0.481319,0.592258,0.263778,0.624328,0.948994,0.714013,0.287225,0.472385,0.437063,0.344159,0.641785,0.014548,0.389559,0.83415,0.220244,0.0339048,0.403242,0.208001,0.295643,0.470946,0.0229668,0.436343,0.342364,0.242861,0.577689,0.554385,0.815788,0.764155,0.470832,0.58231,0.0421478,0.430033,0.381854,0.621731,0.489248,0.946962,0.426964,0.705472,0.337081,0.28784,0.700694,0.598986,0.949816,0.871758,0.660346,0.2242,0.759383,0.992883,0.0214793,0.00499356,0.889861,0.268973,0.475378,0.679381,0.328815,0.543526,0.705997,0.518291,0.4251,0.441521,0.103039,0.712632,0.0870463,0.345256,0.565914,0.869261,0.502445,0.73389,0.690075,0.49975,0.857111,0.502122,0.672076,0.127126,0.0240985,0.58998,0.444167,0.512538,0.332932,0.10814,0.929402,0.715626,0.830474,0.727994,0.822371,0.482774,0.300286,0.183639,0.425885,0.142853,0.268214,0.0997754,0.541583,0.0801688,0.0208053,0.114419,0.776368,0.0488665,0.870775,0.0394491,0.0202649,0.693668,0.909554,0.964499,0.158512,0.724206,0.932442,0.91407,0.888166,0.0138169,0.369778,0.245463,0.399344,0.16545,0.279881,0.590973,0.384165,0.998247,0.689261,0.615854,0.771162,0.0639321,0.770708,0.455525,0.142014,0.770341,0.535639,0.989256,0.985774,0.0713638,0.999337,0.321551,0.810647,0.289343,0.474479,0.852758,0.124857,0.237592,0.464915,0.111474,0.173937,0.905358,0.999827,0.134508,0.808325,0.0728337,0.704283,0.97166,0.54815,0.0150623,0.195942,0.667755,0.780464,0.9244,0.438063,0.973448,0.501161,0.297861,0.272246,0.172966,0.483071,0.622862,0.91763,0.189943,0.160711,0.187045,0.982831,0.90994,0.716724,0.504611,0.581251,0.709839,0.781825,0.354254,0.572484,0.636887,0.434633,0.440319,0.769936,0.542633,0.492561,0.812573,0.225303,0.323095,0.782224,0.884983,0.543146,0.05654,0.835541,0.79293,0.972885,0.393349,0.604307,0.518843,0.809464,0.852461,0.41738,0.685884,0.0965042,0.98478,0.568902,0.38847,0.248686,0.703675,0.920423,0.995275,0.370858,0.286218,0.371967,0.444067,0.639897,0.158444,0.0680008,0.659438,0.333811,0.214699,0.183523,0.10068,0.324887,0.367697,0.145277,0.687501,0.0563856,0.466336,0.31568,0.270927,0.736965,0.310141,0.633421,0.165028,0.414049,0.578603,0.0965768,0.781938,0.963104,0.691185,0.345697,0.703555,0.75826,0.761542,0.351149,0.263195,0.692377,0.243619,0.0976173,0.319629,0.805451,0.815198,0.915604,0.36516,0.880501,0.426136,0.212808,0.313602,0.00717014,0.357186,0.181344,0.43412,0.978734,0.30538,0.090548,0.336101,0.921619,0.447158,0.784895,0.335957,0.335554,0.979896,0.6928,0.763019,0.390111,0.888378,0.883873,0.206374,0.181341,0.117185,0.95332,0.603856,0.805408,0.681495,0.00984037,0.807426,0.202207,0.296531,0.626148,0.874881,0.862806,0.285083,0.990894,0.727692,0.476346,0.401466,0.573727,0.311266,0.565428,0.463815,0.43878,0.408528,0.914253,0.23808,0.556614,0.610291,0.276608,0.938302,0.828006,0.0932804,0.542985,0.656166,0.633978,0.720955,0.211651,0.622993,0.967175,0.649742,0.0210193,0.733814,0.296207,0.919883,0.166218,0.879493,0.417318,0.494621,0.392173,0.0709161,0.284265,0.0388869,0.478392,0.707813,0.334241,0.769724,0.199489,0.679767,0.936051,0.257371,0.436562,0.515192,0.967793,0.533151,0.705589,0.330587,0.697079,0.225961,0.719083,0.944814,0.21203,0.294455,0.785252,0.590374,0.845654,0.831401,0.56603,0.597732,0.555184,0.179262,0.233844,0.370459,0.409087,0.592619,0.0465764,0.505356,0.0680982,0.0916618,0.576393,0.599912,0.579323,0.197388,0.720392,0.228283,0.646286,0.784614,0.777906,0.0956241,0.395135,0.367431,0.776482,0.747406,0.889035,0.145643,0.134602,0.624148,0.51243,0.809468,0.865862,0.388046,0.230548,0.78913,0.73057,0.0960307,0.362682,0.763754,0.68063,0.66208,0.639835,0.936109,0.0644777,0.663093,0.568254,0.0290613,0.573699,0.960971,0.712472,0.697933,0.740861,0.603546,0.502371,0.365898,0.754043,0.199071,0.994541,0.234703,0.269243,0.519543,0.0602005,0.441251,0.574528,0.208088,0.437325,0.878604,0.469755,0.966413,0.744427,0.901437,0.137488,0.173929,0.837956,0.837153,0.480148,0.975407,0.745827,0.173957,0.308147,0.329794,0.290398,0.11661,0.820783,0.8748,0.296832,0.0543519,0.977959,0.540228,0.958693,0.723191,0.891521,0.652734,0.221509,0.841726,0.06964,0.316751,0.622861,0.651996,0.162971,0.207624,0.345999,0.103102,0.364036,0.54185,0.454562,0.556249,0.316881,0.946918,0.15938,0.844454,0.610981,0.974408,0.635957,0.660544,0.642024,0.147909,0.223027,0.0308409,0.31917,0.399646,0.461837,0.0457922,0.194309,0.616037,0.609616,0.785599,0.798127,0.360182,0.165573,0.691925,0.748101,0.0865452,0.0126206,0.745966,0.0811312,0.0899292,0.659995,0.221389,0.275142,0.00828433,0.347405,0.158846,0.557546,0.170961,0.854354,0.539897,0.982406,0.609543,0.390367,0.826523,0.499693,0.770977,0.105412,0.356885,0.538419,0.0731323,0.0165217,0.279436,0.737577,0.175821,0.784913,0.634104,0.312846,0.864714,0.873847,0.400492,0.908862,0.666927,0.829004,0.137134,0.958658,0.705728,0.561279,0.0952514,0.0384907,0.984632,0.983084,0.523524,0.0260596,0.142729,0.173799,0.316045,0.223453,0.674581,0.738232,0.51091,0.0179235,0.167765,0.636759,0.852525,0.566359,0.766654,0.8384,0.200041,0.651691,0.93203,0.0699002,0.691071,0.493198,0.36127,0.390662,0.0030548,0.629745,0.571223,0.126057,0.720071,0.269187,0.996359,0.219458,0.629639,0.167343,0.0350353,0.0729349,0.560736,0.386025,0.506152,0.728962,0.34237,0.817193,0.955698,0.752449,0.188878,0.715223,0.254294,0.589463,0.688719,0.255843,0.253846,0.473861,0.67021,0.0631664,0.744699,0.164652,0.917327,0.375328,0.211334,0.0104113,0.194593,0.956015,0.839218,0.130676,0.817291,0.843428,0.457093,0.96648,0.80264,0.424579,0.680406,0.902962,0.483315,0.270437,0.783292,0.886864,0.054505,0.796125,0.945546,0.843354,0.373356,0.322589,0.0357082,0.710875,0.528615,0.168717,0.969817,0.48236,0.802525,0.669734,0.298238,0.0699558,0.236611,0.602681,0.651553,0.809563,0.79042,0.884724,0.925193,0.160769,0.335383,0.612146,0.849885,0.396559,0.894277,0.431967,0.324719,0.517433,0.663165,0.869098,0.842005,0.132762,0.322216,0.529134,0.537756,0.915375,0.460749,0.736833,0.627566,0.37839,0.555911,0.134693,0.36107,0.31547,0.349696,0.989873,0.0373908,0.829206,0.686091,0.501589,0.92099,0.389691,0.238356,0.381038,0.593162,0.383848,0.165994,0.747833,0.284889,0.585218,0.590227,0.00528526,0.845348,0.710612,0.376861,0.972169,0.663851,0.477624,0.697631,0.353262,0.70618,0.148531,0.919908,0.572804,0.346969,0.936968,0.674074,0.474796,0.410718,0.490105,0.951962,0.392083,0.485814,0.881725,0.485645,0.0277001,0.994758,0.785035,0.245509,0.756408,0.503656,0.637282,0.27896,0.758768,0.227189,0.131767,0.472271,0.354033,0.29698,0.482141,0.515541,0.89829,0.908583,0.713018,0.240648,0.0348842,0.38697,0.646698,0.743347,0.726138,0.998394,0.0742605,0.703778,0.243374,0.958091,0.599329,0.342179,0.0133086,0.272293,0.546431,0.410306,0.292051,0.870547,0.40945,0.558894,0.279582,0.259278,0.923703,0.0539169,0.653145,0.29177,0.429031,0.0537288,0.652959,0.142642,0.132348,0.914606,0.289942,0.837084,0.981416,0.891692,0.355636,0.281288,0.902271,0.000926554,0.163557,0.892411,0.602248,0.450134,0.900025,0.528336,0.800685,0.168837,0.242324,0.421043,0.30589,0.292636,0.616474,0.941367,0.139562,0.399196,0.699699,0.717157,0.177264,0.598741,0.0615823,0.761074,0.718089,0.561287,0.0322362,0.646668,0.75031,0.608472,0.913366,0.244738,0.275708,0.892254,0.092489,0.51197,0.70695,0.822291,0.101964,0.397777,0.229222,0.379549,0.802159,0.200998,0.666127,0.745353,0.0691237,0.677639,0.723278,0.204005,0.207173,0.837408,0.465268,0.064953,0.297121,0.791079,0.000749707,0.125422,0.0593511,0.294396,0.932902,0.495484,0.994525,0.465667,0.337517,|0.730977,0.574381,0.531092,0.689858,0.0647449,0.872422,0.119692,0.0552522,0.930357,0.478155,0.930299,0.704072,0.436366,0.733194,0.916223,0.771646,0.570678,0.274922,0.585289,0.0679326,0.458574,0.011169,0.945517,0.905699,0.583953,0.141029,0.418481,0.165275,0.995466,0.332462,0.0215201,0.0604147,0.522514,0.741609,0.265112,0.364056,0.723449,0.127402,0.540359,0.545078,0.636765,0.124142,0.128346,0.584759,0.56229,0.066384,0.890665,0.812666,0.327074,0.275572,0.735946,0.0127967,0.0733707,0.836067,0.453045,0.0287241,0.567295,0.72067,0.649012,0.195272,0.53972,0.755024,0.92945,0.619967,0.567679,0.382969,0.21242,0.847503,0.357053,0.582086,0.26742,0.238997,0.843869,0.472843,0.696563,0.377389,0.582114,0.150686,0.424588,0.218582,0.102207,0.99104,0.44119,0.954597,0.103847,0.21636,0.392085,0.582665,0.424248,0.45594,0.540999,0.977822,0.193127,0.131057,0.112069,0.374098,0.123758,0.580792,0.552435,0.133156,0.871574,0.525741,0.682759,0.501735,0.839828,0.392831,0.780794,0.840846,0.440592,0.651716,0.0450558,0.752897,0.118324,0.0422186,0.639093,0.833568,0.447466,0.970033,0.543745,0.725443,0.268517,0.962532,0.437783,0.687554,0.149004,0.683124,0.644051,0.835524,0.535382,0.103586,0.103692,0.997397,0.988633,0.415221,0.898548,0.421002,0.867206,0.111334,0.4173,0.059875,0.41209,0.160215,0.942173,0.327953,0.85242,0.314838,0.124526,0.507726,0.0693132,0.35582,0.577165,0.362332,0.849823,0.294942,0.211264,0.536419,0.00378543,0.298726,0.957141,0.336488,0.337548,0.773359,0.963706,0.275275,0.195658,0.48646,0.0636792,0.269083,0.630856,0.752869,0.161399,0.80951,0.628451,0.703457,0.616375,0.76224,0.875151,0.258624,0.944824,0.992486,0.528879,0.202583,0.417777,0.840048,0.32345,0.327287,0.337673,0.138842,0.396141,0.863829,0.183008,0.816999,0.51129,0.224407,0.503024,0.439282,0.51273,0.52492,0.297869,0.828706,0.0522536,0.979554,0.650522,0.390027,0.110537,0.560916,0.889791,0.978952,0.0554551,0.296672,0.261771,0.782429,0.696063,0.666883,0.022343,0.554861,0.347857,0.905727,0.764552,0.765681,0.671045,0.589632,0.206043,0.371927,0.1812,0.754095,0.823472,0.199154,0.85613,0.655993,0.34723,0.653302,0.978237,0.890854,0.803575,0.0678362,0.696981,0.981443,0.307804,0.4836,0.495636,0.255359,0.49947,0.448637,0.129363,0.693902,0.949037,0.0270523,0.336553,0.169079,0.636936,0.0046801,0.925121,0.683481,0.320751,0.756838,0.575312,0.30747,0.595202,0.821969,0.573108,0.274631,0.602893,0.156637,0.866949,0.220392,0.543206,0.0228174,0.330192,0.572768,0.794518,0.257868,0.257836,0.0987555,0.307346,0.885706,0.618133,0.777714,0.00296915,0.522994,0.30273,0.536484,0.526201,0.813785,0.599467,0.141685,0.16145,0.994515,0.518567,0.980637,0.079946,0.800741,0.937723,0.00897819,0.555921,0.53583,0.18467,0.134012,0.764468,0.276713,0.135298,0.143601,0.802442,0.718778,0.468318,0.793464,0.211252,0.208388,0.191996,0.803974,0.468927,0.344113,0.878378,0.836079,0.708081,0.990982,0.384371,0.101347,0.704654,0.908212,0.56999,0.918706,0.191459,0.156335,0.843388,0.722229,0.571726,0.048647,0.354048,0.0799339,0.641907,0.797429,0.551751,0.375724,0.772221,0.425584,0.35109,0.662383,0.144492,0.200571,0.936954,0.881666,0.167752,0.6525,0.379335,0.22625,0.888577,0.49355,0.602911,0.112481,0.679384,0.516679,0.059735,0.423687,0.495245,0.419165,0.121985,0.973597,0.289094,0.818818,0.809924,0.416468,0.686098,0.806451,0.534229,0.215575,0.844064,0.415731,0.809107,0.467586,0.0592206,0.966756,0.409683,0.689917,0.57814,0.708194,0.898826,0.715698,0.138842,0.226904,0.10464,0.407677,0.722821,0.324585,0.660055,0.715737,0.399686,0.283099,0.47872,0.475445,0.70973,0.777488,0.683258,0.988645,0.0187601,0.649766,0.905096,0.830611,0.968259,0.356419,0.105541,0.709404,0.663727,0.587272,0.57357,0.996406,0.725423,0.940615,0.182467,0.782021,0.517537,0.228742,0.0789824,0.531953,0.287831,0.295379,0.265283,0.677814,0.0709811,0.524339,0.44317,0.65859,0.427878,0.629523,0.596076,0.66768,0.0969431,0.383667,0.410333,0.643011,0.971395,0.600615,0.148637,0.835146,0.968663,0.772129,0.91526,0.963067,0.65403,0.75106,0.639839,0.0890182,0.453209,0.339157,0.197976,0.457856,0.960122,0.371406,0.31528,0.587906,0.314812,0.709362,0.537418,0.407197,0.463851,0.043338,0.910765,0.292925,0.521579,0.386443,0.681331,0.143508,0.553217,0.421529,0.949644,0.892388,0.329178,0.483696,0.0719454,0.0972567,0.951318,0.242169,0.645987,0.648877,0.670302,0.664892,0.585831,0.798844,0.0104915,0.296923,0.78809,0.927363,0.119824,0.182004,0.320215,0.582348,0.747255,0.837116,0.0919935,0.911152,0.404898,0.311217,0.51369,0.315623,0.248702,0.367459,0.0658795,0.0617017,0.776376,0.362094,0.680498,0.790585,0.996637,0.964307,0.555441,0.732994,0.136592,0.622721,0.390488,0.424875,0.724064,0.554783,0.832611,0.273999,0.0400201,0.538929,0.845455,0.783288,0.434599,0.324978,0.468702,0.70037,0.930967,0.899005,0.258062,0.432566,0.720055,0.530027,0.312611,0.910926,0.301466,0.738704,0.819034,0.597639,0.468852,0.65754,0.168942,0.359584,0.451437,0.155247,0.176195,0.995721,0.733053,0.322551,0.749431,0.481057,0.20415,0.689662,0.354195,0.593421,0.166569,0.557942,0.736683,0.428884,0.738381,0.774721,0.734351,0.240379,0.571141,0.197137,0.156787,0.0697102,0.238773,0.967736,0.164201,0.562815,0.196377,0.24163,0.629052,0.670104,0.692228,0.833796,0.554842,0.51905,0.850333,0.32091,0.977021,0.421826,0.555361,0.10384,0.678459,0.956866,0.953234,0.47004,0.716794,0.101848,0.128747,0.716257,0.878908,0.0278315,0.0402228,0.974135,0.985767,0.844881,0.33176,0.501729,0.636269,0.859523,0.614707,0.383478,0.641974,0.074984,0.997138,0.170489,0.404356,0.497137,0.348688,0.26129,0.359073,0.388156,0.503111,0.0954652,0.683592,0.732592,0.847701,0.519474,0.934113,0.195539,0.49176,0.464254,0.506969,0.453628,0.240834,0.157785,0.533778,0.340095,0.964484,0.926543,0.600947,0.117423,0.142989,0.396244,0.0944924,0.814309,0.350444,0.064617,0.206455,0.206693,0.706851,0.685028,0.704873,0.224805,0.811174,0.918724,0.0411935,0.496803,0.846353,0.904896,0.748679,0.160313,0.0415651,0.683325,0.373371,0.118815,0.386151,0.132893,0.181358,0.0177867,0.847963,0.137819,0.430752,0.00497407,0.491783,0.653272,0.0585615,0.675773,0.367198,0.620307,0.907018,0.224803,0.850234,0.97443,0.146757,0.293531,0.904499,0.274812,0.413939,0.710939,0.995069,0.0197673,0.906867,0.0431194,0.455296,0.584365,0.0383554,0.992795,0.348467,0.898836,0.0672476,0.334473,0.334064,0.305169,0.715178,0.705245,0.190673,0.394101,0.263003,0.63782,0.195399,0.937245,0.919798,0.114356,0.107709,0.993575,0.113677,0.180543,0.715349,0.358776,0.640014,0.202477,0.975014,0.806636,0.92591,0.393636,0.933839,0.775856,0.250414,0.826288,0.54171,0.433364,0.853853,0.677228,0.278598,0.632677,0.913765,0.131233,0.358702,0.871647,0.526733,0.853511,0.15894,0.910979,0.792139,0.00663501,0.201629,0.991518,0.862677,0.918126,0.384265,0.643788,0.911813,0.0483775,0.272051,0.948083,0.48878,0.0407098,0.894141,0.229891,0.624805,0.243165,0.00653607,0.657503,0.904626,0.470394,0.0776097,0.131207,0.762732,0.55578,0.789585,0.991262,0.44814,0.12542,0.00346005,0.21335,0.758434,0.831123,0.94809,0.222763,0.612722,0.50492,0.757105,0.266806,0.17679,0.948811,0.734289,0.883493,0.384292,0.06521,0.76682,0.631173,0.618763,0.967141,0.507436,0.286861,0.546556,0.163509,0.979525,0.442185,0.609125,0.226012,0.786559,0.715725,0.535965,0.31298,0.68472,0.0363251,0.621315,0.602406,0.412998,0.442118,0.710785,0.411461,0.592951,0.642939,0.077204,0.118534,0.32523,0.648096,0.72882,0.0313765,0.457722,0.0728273,0.364085,0.170149,0.9608,0.619601,0.797148,0.0573371,0.595806,0.174797,0.214774,0.388237,0.961465,0.669582,0.477025,0.643756,0.077927,0.379806,0.746592,0.810989,0.0269102,0.451796,0.0728067,0.998093,0.166024,0.0809671,0.336703,0.568298,0.152299,0.297495,0.356336,0.915428,0.143929,0.761492,0.746844,0.796853,0.818414,0.270903,0.713373,0.351497,0.656428,0.912797,0.988069,0.928833,0.289365,0.943122,0.573494,0.500521,0.0477382,0.969921,0.536158,0.703777,0.221324,0.0802317,0.632475,0.131955,0.130446,0.293626,0.0517923,0.323691,0.192623,0.840078,0.454921,0.545555,0.124719,0.0827226,0.994671,0.613527,0.467802,0.274583,0.74162,0.26891,0.0286597,0.816685,0.101684,0.461665,0.765268,0.00888234,0.616709,0.290994,0.690722,0.310833,0.928141,0.41513,0.243228,0.458244,0.173461,0.931871,0.503771,0.945462,0.584092,0.627218,0.595908,0.502842,0.645728,0.510883,0.841697,0.725345,0.171844,0.512905,0.771557,0.394059,0.076978,0.128711,0.912061,0.793837,0.75819,0.447175,0.176864,0.542691,0.346109,0.667182,0.851452,0.455766,0.736985,0.366509,0.0232804,0.586305,0.259302,0.46389,0.391459,0.369883,0.738441,0.531128,0.961066,0.384359,0.71301,0.81893,0.208205,0.994411,0.864334,0.906514,0.315107,0.064546,0.121656,0.446929,0.568151,0.55943,0.243659,0.267262,0.220274,0.943938,0.662945,0.324522,0.765178,0.791967,0.696855,0.135671,0.511369,0.967667,0.579787,0.371692,0.863706,0.382828,0.472358,0.364647,0.281295,0.952935,0.0762743,0.967619,0.36042,0.371615,0.0336586,0.912831,0.943142,0.686624,0.431873,0.719913,0.441388,0.695851,0.889308,0.117166,0.0386695,0.668731,0.1077,0.943683,0.382943,0.892085,0.184192,0.160361,0.265137,0.760446,0.97577,0.648396,0.851012,0.96415,0.22853,0.85285,0.49387,0.0565425,|0.502422,0.501821,0.758128,0.700852,0.28654,0.120358,0.582555,0.796932,0.208552,0.264746,0.879853,0.210172,0.44959,0.374673,0.825846,0.0233847,0.283527,0.780682,0.325843,0.303665,0.312813,0.86182,0.361632,0.574882,0.124999,0.745206,0.612773,0.122808,0.22435,0.491878,0.814238,0.252536,0.590347,0.298059,0.419786,0.93457,0.540882,0.828839,0.57292,0.563908,0.089181,0.0699555,0.216435,0.409637,0.383495,0.629554,0.914796,0.607993,0.52995,0.776024,0.572325,0.826301,0.639358,0.322281,0.262836,0.871281,0.488144,0.0649741,0.298837,0.228897,0.0304575,0.144289,0.43493,0.363054,0.623489,0.935651,0.103607,0.448737,0.869264,0.211376,0.320451,0.268025,0.813692,0.543543,0.366583,0.599771,0.921633,0.485956,0.536291,0.761448,0.66769,0.578109,0.935128,0.792437,0.0226183,0.0735645,0.157037,0.650847,0.0551022,0.770914,0.823518,0.70264,0.724052,0.178145,0.740006,0.21659,0.554946,0.910371,0.477341,0.280156,0.0548437,0.408507,0.178909,0.677543,0.466889,0.576793,0.706782,0.630846,0.208742,0.263567,0.866329,0.890935,0.238983,0.555301,0.374352,0.161947,0.659316,0.196959,0.112257,0.132159,0.0661671,0.0495384,0.495882,0.542314,0.75626,0.728514,0.130463,0.833742,0.380966,0.689837,0.216553,0.92508,0.21589,0.899111,0.417674,0.258931,0.139392,0.630089,0.4825,0.721602,0.314551,0.584487,0.523676,0.92188,0.899996,0.845779,0.190525,0.946694,0.664101,0.196129,0.462663,0.421593,0.903075,0.80235,0.702641,0.635076,0.454729,0.474837,0.851254,0.248062,0.0187523,0.31568,0.777775,0.116838,0.892086,0.166616,0.585293,0.346649,0.745062,0.328224,0.560919,0.826442,0.508481,0.519156,0.798113,0.523436,0.299302,0.762922,0.204973,0.949405,0.153767,0.353402,0.919751,0.088352,0.353719,0.932378,0.0862588,0.869478,0.563575,0.67521,0.0591328,0.0636555,0.178345,0.493021,0.730223,0.758056,0.96187,0.0723892,0.658057,0.67565,0.703327,0.133478,0.0583754,0.410268,0.565148,0.307986,0.190288,0.786916,0.360529,0.934752,0.242748,0.267614,0.996791,0.863251,0.543098,0.0271159,0.261664,0.0950169,0.278904,0.606199,0.0710492,0.277796,0.047474,0.613595,0.902708,0.329215,0.168533,0.913604,0.746565,0.9794,0.0146735,0.268636,0.903667,0.269128,0.121961,0.41171,0.136652,0.188017,0.287335,0.653097,0.249965,0.138352,0.655683,0.163795,0.378587,0.17151,0.593328,0.123508,0.473152,0.448833,0.0527615,0.124604,0.310864,0.600621,0.759958,0.1959,0.120183,0.293688,0.513449,0.503895,0.53507,0.456899,0.740662,0.537686,0.71015,0.277865,0.341793,0.821707,0.410787,0.178402,0.245822,0.3824,0.259863,0.0409837,0.242696,0.422587,0.987226,0.742458,0.849877,0.618207,0.442973,0.995104,0.833226,0.600579,0.626975,0.474485,0.909451,0.838715,0.878939,0.898536,0.971535,0.49436,0.278314,0.458912,0.136247,0.631777,0.094503,0.834665,0.24185,0.8592,0.682344,0.18415,0.046876,0.661411,0.879176,0.816957,0.00223124,0.912161,0.98313,0.343083,0.449952,0.715441,0.165716,0.234459,0.525967,0.55994,0.307344,0.467648,0.317345,0.610267,0.745479,0.865938,0.770732,0.100487,0.0471506,0.500568,0.349114,0.175171,0.369077,0.285283,0.343168,0.597151,0.217378,0.749059,0.117189,0.265087,0.0515909,0.107486,0.135172,0.607893,0.89646,0.439241,0.0715127,0.799808,0.737725,0.510429,0.452986,0.872653,0.98155,0.418234,0.80327,0.792758,0.320548,0.0504104,0.828197,0.0625156,0.7193,0.513763,0.254968,0.222172,0.88399,0.762147,0.922544,0.743376,0.558953,0.163323,0.624656,0.94364,0.563301,0.973997,0.0237142,0.659912,0.59294,0.0539737,0.208443,0.369541,0.893707,0.150545,0.162821,0.974633,0.796438,0.666096,0.722288,0.958696,0.452656,0.599579,0.488038,0.375009,0.196791,0.255207,0.792876,0.528865,0.326448,0.458662,0.822367,0.283558,0.68481,0.420228,0.589719,0.779898,0.85319,0.875109,0.552541,0.256174,0.831826,0.99656,0.754166,0.0139806,0.151628,0.762719,0.200973,0.591563,0.628157,0.589004,0.363255,0.771088,0.0701498,0.375983,0.281568,0.646385,0.020187,0.315251,0.372466,0.215486,0.140321,0.724353,0.116454,0.257674,0.0162954,0.149779,0.183898,0.544909,0.815429,0.572316,0.988091,0.737737,0.859039,0.642833,0.0506029,0.951722,0.942972,0.737225,0.805759,0.874848,0.429784,0.336406,0.511733,0.690681,0.577012,0.101456,0.956028,0.850427,0.7241,0.694986,0.875405,0.494757,0.819436,0.781521,0.763,0.932249,0.357213,0.370207,0.503951,0.0341046,0.499377,0.610442,0.825532,0.875439,0.250307,0.051813,0.914738,0.244816,0.173846,0.338522,0.31147,0.689841,0.601373,0.573278,0.233939,0.323997,0.683974,0.534239,0.15068,0.425682,0.722023,0.433372,0.272968,0.241258,0.886084,0.63781,0.726743,0.699879,0.359227,0.660707,0.996247,0.228793,0.667062,0.922877,0.400957,0.585711,0.722799,0.735667,0.962905,0.485973,0.729197,0.65924,0.742671,0.943808,0.457608,0.155993,0.419387,0.679519,0.873084,0.115556,0.501147,0.751391,0.915242,0.994381,0.32722,0.790085,0.0891409,0.0322242,0.573282,0.520472,0.1564,0.601151,0.234101,0.646351,0.819535,0.751863,0.357862,0.971131,0.120056,0.903058,0.93923,0.0881569,0.638739,0.463587,0.526498,0.71711,0.449931,0.693601,0.834017,0.186999,0.10597,0.716887,0.942466,0.198904,0.821662,0.175468,0.625359,0.339787,0.834726,0.723362,0.735309,0.0894352,0.0646093,0.352908,0.944405,0.0528044,0.696649,0.403357,0.335643,0.261054,0.477998,0.524005,0.264382,0.00691444,0.676828,0.858135,0.295509,0.388936,0.830213,0.808862,0.130202,0.313811,0.425765,0.966794,0.757763,0.596821,0.217788,0.929505,0.320362,0.992211,0.489348,0.873214,0.0442165,0.666689,0.27747,0.193747,0.816731,0.362986,0.279976,0.89922,0.0673906,0.621268,0.144626,0.738669,0.616117,0.0972405,0.833983,0.787364,0.404826,0.804663,0.0976101,0.268707,0.0200961,0.297832,0.778152,0.937895,0.325593,0.438031,0.503393,0.895649,0.0266981,0.278033,0.320092,0.372928,0.185039,0.488217,0.374786,0.661208,0.501378,0.479594,0.768722,0.046888,0.229518,0.758077,0.06574,0.83677,0.423852,0.710989,0.0527772,0.972984,0.849845,0.827769,0.303573,0.322596,0.498939,0.856148,0.0121066,0.412987,0.681546,0.87098,0.513974,0.584657,0.273758,0.408946,0.469489,0.350992,0.848872,0.958737,0.410173,0.13968,0.331626,0.421446,0.696357,0.952222,0.634628,0.707567,0.887678,0.0689854,0.339489,0.259251,0.369569,0.131862,0.401283,0.555709,0.906007,0.563436,0.731076,0.199114,0.81954,0.107439,0.980478,0.952117,0.326985,0.680884,0.108544,0.512308,0.641844,0.617978,0.167266,0.913464,0.826972,0.444803,0.326955,0.228265,0.51849,0.16664,0.407528,0.399375,0.594472,0.804254,0.766921,0.741222,0.253207,0.874833,0.462647,0.458944,0.599526,0.0660442,0.0369694,0.118543,0.363415,0.830444,0.204069,0.0862526,0.191144,0.517986,0.0880108,0.800637,0.59008,0.442838,0.397301,0.192152,0.129498,0.879615,0.440987,0.972108,0.23897,0.565599,0.920488,0.489099,0.841504,0.600763,0.99621,0.96757,0.419965,0.402217,0.536957,0.740179,0.346966,0.185933,0.384059,0.651335,0.398487,0.451698,0.101253,0.794475,0.170866,0.540764,0.381778,0.551635,0.58733,0.843935,0.186673,0.898361,0.0266444,0.300811,0.656109,0.119226,0.399353,0.290855,0.705883,0.520126,0.802968,0.722461,0.641689,0.303688,0.603396,0.176405,0.086208,0.648416,0.142898,0.120303,0.73732,0.150688,0.843715,0.596296,0.479302,0.425181,0.181882,0.304653,0.119836,0.151798,0.610943,0.649048,0.920545,0.761315,0.795649,0.982284,0.824475,0.62604,0.264969,0.954176,0.211339,0.940351,0.970761,0.326873,0.146503,0.580801,0.669425,0.170535,0.789957,0.226902,0.273552,0.979529,0.717115,0.764318,0.286902,0.154219,0.0692653,0.582408,0.945119,0.893718,0.178634,0.475756,0.532354,0.59941,0.492205,0.526637,0.728487,0.413862,0.844115,0.211746,0.912335,0.28858,0.248409,0.495941,0.689315,0.778758,0.594983,0.600531,0.961529,0.401771,0.669039,0.0730705,0.461382,0.229151,0.432468,0.433793,0.722344,0.641723,0.811869,0.931114,0.923187,0.103516,0.582539,0.137613,0.418666,0.736715,0.194308,0.191113,0.833899,0.880856,0.254492,0.893682,0.979338,0.172263,0.664031,0.904455,0.26965,0.539517,0.825134,0.563266,0.00907189,0.648843,0.85071,0.55544,0.12522,0.406339,0.29292,0.96967,0.406528,0.0533234,0.134464,0.186044,0.511382,0.472409,0.564356,0.930385,0.396629,0.858435,0.0855013,0.747475,0.155435,0.755834,0.340583,0.83155,0.408091,0.812357,0.088817,0.398391,0.823509,0.895185,0.0410171,0.0242545,0.808684,0.342722,0.0830285,0.905606,0.22488,0.173959,0.687693,0.028633,0.92676,0.449273,0.59117,0.217708,0.633608,0.0866667,0.479971,0.234517,0.542212,0.108965,0.857276,0.360334,0.565775,0.484116,0.668621,0.546901,0.729347,0.147834,0.900263,0.926883,0.503554,0.542173,0.0489952,0.638381,0.834297,0.856303,0.524579,0.610442,0.271409,0.701881,0.169955,0.532569,0.779673,0.441051,0.925623,0.0717577,0.367783,0.431741,0.348262,0.0658964,0.153063,0.867117,0.83116,0.0613627,0.46454,0.643504,0.727431,0.549635,0.0977907,0.187091,0.149641,0.728465,0.976832,0.312952,0.615328,0.119614,0.102314,0.182747,0.372439,0.698292,0.29255,0.844772,0.802141,0.686073,0.365065,0.335413,0.734025,0.541161,0.617339,0.506836,0.971047,0.299161,0.474257,0.716988,0.977335,0.923373,0.750817,0.720171,0.632203,0.27183,0.497984,0.866221,0.137,0.945849,0.43325,0.0281557,0.615699,0.136539,0.831791,0.0433127,0.621773,0.837115,0.483639,0.0681513,0.949782,0.833617,0.257859,0.38383,0.177296,0.597444,0.968587,0.789524,0.202176,0.792515,|0.076616,0.472822,0.395375,0.805482,0.772295,0.120546,0.170143,0.68212,0.380505,0.849855,0.252397,0.541119,0.510301,0.350072,0.690354,0.661744,0.7774,0.690263,0.0865783,0.00813854,0.656267,0.649547,0.988708,0.0281907,0.965366,0.50919,0.509458,0.00507981,0.72128,0.732047,0.555051,0.968254,0.588799,0.337234,0.195862,0.201478,0.154454,0.856177,0.511268,0.151744,0.525207,0.0585389,0.312796,0.739401,0.745823,0.0947371,0.663923,0.717984,0.0315306,0.464902,0.253701,0.908473,0.354711,0.930608,0.208883,0.146669,0.867297,0.321854,0.135062,0.221448,0.117174,0.523327,0.658451,0.301296,0.553996,0.776018,0.229518,0.416437,0.228219,0.948568,0.384513,0.0737345,0.996574,0.115612,0.0465789,0.461993,0.991818,0.380442,0.482746,0.131998,0.850154,0.26735,0.434917,0.22843,0.12119,0.909083,0.347413,0.347064,0.829473,0.412359,0.348789,0.0871459,0.12584,0.118891,0.990795,0.259619,0.177262,0.292512,0.847638,0.485914,0.823875,0.391631,0.0819281,0.362469,0.408773,0.757906,0.67357,0.798293,0.768492,0.363504,0.303588,0.417444,0.912639,0.777242,0.0116282,0.445949,0.0791946,0.907714,0.817113,0.357553,0.305903,0.719023,0.542974,0.323335,0.834405,0.23875,0.324077,0.858125,0.991736,0.10288,0.826837,0.410337,0.836713,0.522617,0.46141,0.698548,0.248961,0.786567,0.982146,0.97237,0.939586,0.209783,0.0144212,0.184257,0.445287,0.464019,0.765831,0.662391,0.926742,0.377655,0.295078,0.351986,0.446881,0.258477,0.486521,0.78859,0.940779,0.731978,0.133461,0.341485,0.697272,0.981621,0.480358,0.309578,0.782646,0.412196,0.589924,0.330792,0.832892,0.320184,0.401109,0.248544,0.154544,0.194608,0.510518,0.806216,0.586664,0.394734,0.757415,0.559149,0.638055,0.658301,0.119203,0.205679,0.0416105,0.0447946,0.277095,0.232091,0.827221,0.394327,0.15556,0.868815,0.305367,0.104297,0.99511,0.50739,0.0539333,0.96915,0.322896,0.509828,0.116921,0.116863,0.907454,0.500449,0.528606,0.569645,0.652127,0.953145,0.545507,0.0838953,0.279485,0.574717,0.7612,0.0134334,0.787081,0.042254,0.876566,0.652637,0.483175,0.906222,0.636266,0.0549993,0.966743,0.529031,0.847523,0.59217,0.812437,0.465804,0.170294,0.338223,0.65885,0.096362,0.108079,0.538536,0.610614,0.729944,0.0999019,0.911263,0.0194505,0.109101,0.857844,0.668417,0.124904,0.882986,0.781238,0.852388,0.528987,0.825808,0.12635,0.212161,0.869404,0.45172,0.00274056,0.675089,0.507845,0.404906,0.730915,0.86612,0.988061,0.452932,0.700019,0.438763,0.253758,0.089118,0.241453,0.249961,0.65711,0.435278,0.0761926,0.821485,0.377641,0.81886,0.875976,0.420106,0.746013,0.167002,0.777996,0.28199,0.356336,0.188409,0.0527229,0.344479,0.350519,0.127555,0.505964,0.882751,0.189501,0.171292,0.0264652,0.429974,0.48666,0.652125,0.398516,0.604563,0.238303,0.702022,0.244074,0.865581,0.0184509,0.657328,0.693921,0.203714,0.896783,0.415772,0.228592,0.964175,0.0705472,0.0161191,0.405252,0.153371,0.366254,0.468958,0.0313236,0.103503,0.521803,0.958834,0.105614,0.923271,0.35294,0.762844,0.654941,0.65842,0.639586,0.898742,0.817131,0.438096,0.793629,0.641164,0.126126,0.256278,0.320952,0.339995,0.586583,0.590698,0.762296,0.333966,0.826706,0.496824,0.552492,0.5416,0.440073,0.662372,0.655665,0.358687,0.0923432,0.817611,0.551949,0.541753,0.795793,0.727956,0.643253,0.0608096,0.817245,0.779392,0.770753,0.672366,0.153476,0.335453,0.128227,0.503086,0.885893,0.880727,0.0700746,0.499156,0.270291,0.0858663,0.0305712,0.506498,0.252003,0.804573,0.681773,0.993778,0.670007,0.0619903,0.33909,0.215258,0.581416,0.0227457,0.14688,0.980597,0.147143,0.748415,0.156782,0.266623,0.252363,0.935998,0.962817,0.656537,0.528659,0.0381692,0.118075,0.711588,0.521174,0.266463,0.320883,0.781317,0.801417,0.181714,0.771536,0.0857891,0.775875,0.712211,0.656654,0.753859,0.140113,0.647055,0.0381731,0.378996,0.532512,0.540865,0.172681,0.540668,0.864977,0.725912,0.252633,0.905312,0.689652,0.417787,0.074307,0.579166,0.183839,0.232584,0.0683867,0.571688,0.924201,0.0702376,0.754026,0.960742,0.810361,0.880124,0.392496,0.991812,0.748398,0.00586897,0.769042,0.367006,0.849865,0.257661,0.954627,0.639996,0.873961,0.850588,0.223189,0.0747218,0.976287,0.0735058,0.539888,0.600079,0.29242,0.160453,0.854871,0.0176695,0.653881,0.340296,0.936493,0.791017,0.374333,0.786878,0.945267,0.947426,0.245816,0.665109,0.382066,0.891142,0.0110164,0.194288,0.500895,0.872049,0.260641,0.700469,0.481131,0.210917,0.701983,0.300638,0.769229,0.462267,0.613551,0.202553,0.0817471,0.295745,0.534142,0.0617884,0.479458,0.816806,0.497274,0.883046,0.79957,0.757793,0.430828,0.660369,0.169917,0.526938,0.610331,0.30562,0.830975,0.677114,0.075667,0.339893,0.430261,0.670947,0.742528,0.559343,0.00825417,0.00332212,0.896128,0.872031,0.489173,0.0409452,0.608684,0.807488,0.977112,0.931034,0.609591,0.345528,0.861365,0.31616,0.859682,0.906339,0.554343,0.632775,0.162145,0.661512,0.338269,0.305317,0.847906,0.809827,0.746138,0.257066,0.372412,0.37346,0.615796,0.621698,0.57853,0.705327,0.631057,0.919625,0.487335,0.86862,0.485146,0.586088,0.140359,0.203116,0.610186,0.515946,0.229567,0.565454,0.157644,0.871495,0.908116,0.386935,0.105439,0.762942,0.406938,0.592428,0.421633,0.792404,0.297702,0.932237,0.961721,0.540469,0.318278,0.862176,0.924606,0.106067,0.257104,0.536321,0.250388,0.0419428,0.629225,0.031964,0.423296,0.154608,0.941785,0.600732,0.0275405,0.428587,0.146943,0.507844,0.749033,0.273013,0.917131,0.296032,0.0106486,0.683926,0.466277,0.495436,0.662547,0.400631,0.934646,0.0304138,0.16927,0.342899,0.136207,0.358666,0.149126,0.0123282,0.214696,0.808094,0.589368,0.916183,0.240764,0.0220299,0.248157,0.48426,0.773884,0.377529,0.675286,0.740576,0.928212,0.482832,0.687003,0.500353,0.0318582,0.263954,0.0749335,0.756542,0.597844,0.848571,0.898684,0.369871,0.862085,0.589063,0.782174,0.854553,0.508381,0.294518,0.020872,0.248437,0.617902,0.275738,0.773138,0.371927,0.664703,0.767209,0.682948,0.0662139,0.914237,0.305318,0.561564,0.0973256,0.262006,0.0717227,0.639494,0.784398,0.168831,0.58438,0.415191,0.263367,0.211343,0.762683,0.666464,0.283073,0.594869,0.989041,0.71985,0.230727,0.33847,0.323679,0.111977,0.920368,0.592537,0.599784,0.35541,0.532113,0.0128631,0.141373,0.221165,0.118149,0.239932,0.79619,0.455158,0.576053,0.00694847,0.468145,0.100048,0.10723,0.881421,0.0827245,0.706006,0.454857,0.455721,0.146977,0.535048,0.267174,0.611273,0.817701,0.269598,0.560564,0.793827,0.537707,0.102121,0.212703,0.277626,0.402617,0.328245,0.280785,0.66793,0.564527,0.367032,0.404845,0.371034,0.39141,0.784567,0.159075,0.933156,0.433974,0.894975,0.599172,0.402131,0.115055,0.26311,0.528457,0.251786,0.56953,0.438174,0.352803,0.795176,0.804724,0.129483,0.985712,0.705031,0.176315,0.461033,0.487867,0.456117,0.998488,0.91348,0.504864,0.750338,0.876174,0.476098,0.0261647,0.573124,0.949523,0.601516,0.220739,0.0921941,0.332331,0.628494,0.0442603,0.368388,0.350302,0.368271,0.917301,0.00346386,0.211563,0.304823,0.94123,0.0248967,0.393996,0.430608,0.100527,0.390357,0.115557,0.763684,0.761335,0.779834,0.83901,0.141043,0.889028,0.364166,0.428106,0.177282,0.831292,0.607992,0.417376,0.467111,0.615342,0.870741,0.168373,0.767217,0.158743,0.496535,0.156513,0.908766,0.85493,0.266644,0.351213,0.404979,0.202889,0.00104326,0.398867,0.186961,0.329639,0.247333,0.507811,0.878826,0.344336,0.719911,0.729173,0.976382,0.227084,0.828076,0.136785,0.0409876,0.93067,0.470571,0.490941,0.720434,0.173725,0.106311,0.00030756,0.219329,0.456856,0.546467,0.706181,0.838789,0.1464,0.695,0.377136,0.876632,0.163214,0.438553,0.438212,0.30986,0.310067,0.73154,0.831268,0.534335,0.0400989,0.464265,0.55725,0.692849,0.781564,0.64959,0.629795,0.39069,0.37007,0.312833,0.751512,0.939587,0.182278,0.400482,0.797536,0.614922,0.508773,0.128068,0.409081,0.479422,0.537216,0.377376,0.963604,0.676427,0.963309,0.426752,0.986945,0.55776,0.754124,0.969326,0.0845272,0.262624,0.519389,0.734548,0.0937052,0.0565107,0.803233,0.815632,0.147155,0.0467353,0.806644,0.320835,0.242771,0.597365,0.860371,0.595474,0.806081,0.852068,0.239034,0.947516,0.485754,0.695268,0.239005,0.832938,0.701732,0.182427,0.834925,0.841388,0.11189,0.837689,0.613446,0.0752357,0.123697,0.959715,0.96899,0.781923,0.193979,0.490503,0.467312,0.541379,0.645323,0.348571,0.820439,0.47499,0.570647,0.0743959,0.864564,0.771825,0.844287,0.0460687,0.231762,0.950183,0.225195,0.0781325,0.0416454,0.769723,0.254765,0.283035,0.7998,0.525283,0.550862,0.759596,0.110558,0.322145,0.143292,0.744698,0.514026,0.625407,0.313436,0.547607,0.504663,0.711271,0.602803,0.296452,0.194552,0.351418,0.569708,0.443148,0.0165258,0.946127,0.68486,0.636617,0.269741,0.353717,0.220793,0.427829,0.807536,0.371751,0.576276,0.64084,0.522716,0.0526392,0.44171,0.863648,0.1845,0.497599,0.693715,0.841486,0.568358,0.116393,0.675833,0.841278,0.96006,0.431352,0.682877,0.814398,0.413599,0.125988,0.811348,0.308204,0.951392,0.911606,0.908636,0.154874,0.0640965,0.719957,0.393805,0.315001,0.811823,0.398223,0.87721,0.492737,0.303902,0.837429,0.788872,0.700067,0.0892298,0.651807,0.595077,0.385245,0.336858,0.657814,0.74414,0.284114,0.538138,0.502313,0.22818,0.384227,0.764024,0.307084,0.89432,0.774516,0.990382,0.321872,0.31748,0.175817,0.984325,0.896254,0.377603,0.160218,0.782561,|0.941407,0.331931,0.591995,0.536363,0.0008412,0.516954,0.539937,0.090142,0.928716,0.547395,0.629288,0.193744,0.188735,0.124314,0.0752782,0.494858,0.648115,0.259398,0.274886,0.293296,0.142979,0.0368258,0.771925,0.0452778,0.77443,0.95744,0.0474555,0.673678,0.391014,0.280417,0.00730258,0.459103,0.398934,0.884137,0.337394,0.711754,0.463408,0.550607,0.478446,0.132225,0.713537,0.817566,0.447828,0.0654781,0.959558,0.255695,0.669682,0.93763,0.896547,0.145923,0.580331,0.687323,0.508428,0.397614,0.895424,0.782994,0.603271,0.280412,0.439476,0.857929,0.998149,0.0408143,0.637573,0.728005,0.78732,0.106188,0.734667,0.0639492,0.449684,0.426973,0.7747,0.214087,0.705814,0.232796,0.647696,0.0667379,0.0725909,0.165953,0.118418,0.416137,0.339298,0.327234,0.0439606,0.448802,0.737772,0.285609,0.871744,0.969162,0.334311,0.423934,0.721035,0.727443,0.0220592,0.76042,0.657744,0.508681,0.44352,0.0972334,0.863598,0.957916,0.366242,0.273374,0.154058,0.323215,0.746008,0.0406059,0.0368962,0.287232,0.611931,0.701779,0.399143,0.0236172,0.898716,0.362699,0.972812,0.192449,0.503337,0.253512,0.535585,0.37464,0.799456,0.812152,0.580587,0.415247,0.032005,0.411956,0.376827,0.202098,0.0413252,0.238634,0.820378,0.198453,0.613689,0.996312,0.9468,0.0932318,0.0718327,0.441763,0.920095,0.174809,0.359797,0.166341,0.512857,0.985788,0.755761,0.496225,0.144496,0.0151196,0.549259,0.149615,0.0406086,0.255722,0.390621,0.819304,0.353683,0.0281826,0.999764,0.935962,0.859854,0.342851,0.265355,0.461003,0.0851187,0.480524,0.807707,0.26682,0.864481,0.0821823,0.535018,0.263306,0.324425,0.062896,0.671375,0.119606,0.760499,0.956142,0.696561,0.843885,0.312136,0.969267,0.475225,0.327069,0.240389,0.0420927,0.961426,0.8138,0.738562,0.64155,0.362881,0.662918,0.829964,0.434471,0.496523,0.9354,0.692264,0.263958,0.689572,0.644904,0.521521,0.684497,0.569401,0.966008,0.391722,0.612895,0.666603,0.927145,0.268801,0.21107,0.938016,0.983153,0.710325,0.922803,0.84249,0.403138,0.78497,0.784849,0.526838,0.33182,0.0934232,0.187484,0.254868,0.6183,0.912736,0.79382,0.642524,0.36392,0.404817,0.259516,0.964005,0.491785,0.679365,0.959958,0.818757,0.600557,0.746066,0.110875,0.390194,0.773508,0.0881572,0.761516,0.864148,0.4484,0.875541,0.850292,0.231704,0.667457,0.898009,0.935616,0.173629,0.342534,0.182505,0.199665,0.872943,0.238846,0.949264,0.0104511,0.620669,0.686391,0.509743,0.39246,0.683012,0.383146,0.804795,0.159675,0.142198,0.256791,0.96661,0.640074,0.578089,0.0150347,0.560521,0.157815,0.0736768,0.218001,0.210447,0.304381,0.899183,0.535518,0.272745,0.688854,0.850879,0.698678,0.752249,0.342501,0.0863342,0.515248,0.701385,0.0919069,0.66684,0.691892,0.976574,0.932561,0.61464,0.881096,0.294482,0.652853,0.841256,0.14955,0.276938,0.148939,0.247566,0.301326,0.571225,0.333729,0.166062,0.368185,0.398589,0.916262,0.352911,0.840133,0.184431,0.459133,0.287083,0.0427452,0.396926,0.482004,0.636078,0.790987,0.177192,0.701502,0.064769,0.821696,0.911666,0.276744,0.693002,0.884212,0.691721,0.164411,0.0797035,0.0442583,0.0366633,0.291466,0.201667,0.988679,0.816787,0.928206,0.0315273,0.378808,0.234683,0.577569,0.894216,0.616699,0.828489,0.504156,0.581152,0.370168,0.857131,0.804273,0.157215,0.812633,0.561015,0.188703,0.666307,0.592588,0.660805,0.00350982,0.281456,0.265054,0.805343,0.845583,0.385637,0.777221,0.567134,0.239451,0.864129,0.628545,0.239127,0.410357,0.318034,0.865948,0.135715,0.16854,0.135003,0.383202,0.490538,0.576773,0.785405,0.0781389,0.0957868,0.691096,0.735004,0.488664,0.419617,0.835599,0.679454,0.362444,0.0797155,0.334547,0.791893,0.359471,0.205325,0.129375,0.157787,0.639861,0.794939,0.683067,0.267027,0.923845,0.279149,0.203586,0.310151,0.65779,0.23572,0.750402,0.950607,0.232669,0.670294,0.0878709,0.340657,0.793268,0.569789,0.721371,0.632852,0.145324,0.15801,0.155379,0.178398,0.767196,0.231005,0.679502,0.402484,0.592162,0.713275,0.614116,0.450978,0.982245,0.454633,0.759341,0.962518,0.589899,0.868705,0.425403,0.731979,0.538345,0.761673,0.288433,0.230895,0.133878,0.366223,0.973338,0.506784,0.209408,0.366205,0.966493,0.691307,0.133498,0.234012,0.245857,0.000312567,0.440936,0.505315,0.342776,0.380893,0.294222,0.495275,0.42693,0.106983,0.64448,0.30243,0.00234503,0.682637,0.902231,0.646747,0.298593,0.398114,0.260214,0.687769,0.992243,0.896195,0.3098,0.0394953,0.23626,0.110414,0.540563,0.135522,0.388102,0.379192,0.751144,0.669905,0.879992,0.387088,0.295914,0.486119,0.883662,0.927005,0.4662,0.248668,0.275967,0.258096,0.205659,0.0777407,0.987418,0.0566851,0.861922,0.794667,0.762347,0.224294,0.862687,0.81796,0.944722,0.115833,0.445732,0.713485,0.817573,0.336613,0.788677,0.117405,0.495076,0.0554186,0.0735231,0.0176724,0.755665,0.397641,0.493929,0.427331,0.750456,0.724685,0.0552518,0.355284,0.0269001,0.826531,0.0348513,0.166321,0.171165,0.196395,0.839895,0.100681,0.378443,0.589984,0.362523,0.0670705,0.754686,0.907012,0.566071,0.894738,0.354978,0.907835,0.384104,0.0402569,0.479703,0.371713,0.645151,0.535538,0.838031,0.0188724,0.254868,0.868527,0.826905,0.847597,0.926591,0.886762,0.280825,0.0931619,0.290733,0.735662,0.354349,0.990802,0.540142,0.639937,0.485994,0.74285,0.252988,0.576329,0.530456,0.68947,0.31325,0.668961,0.700863,0.132954,0.24925,0.736685,0.507906,0.727091,0.735998,0.36394,0.0593859,0.386137,0.790961,0.638886,0.794367,0.777217,0.601955,0.0489275,0.0760478,0.59049,0.76341,0.641612,0.467391,0.168966,0.759535,0.429126,0.177465,0.220236,0.706578,0.53404,0.731783,0.42771,0.144957,0.419034,0.301902,0.950278,0.161301,0.65278,0.222209,0.257924,0.121699,0.715639,0.859963,0.347617,0.687066,0.559444,0.770554,0.956639,0.147373,0.501566,0.176404,0.599188,0.465903,0.176892,0.853663,0.16207,0.404652,0.842276,0.902994,0.0720646,0.882974,0.553309,0.902471,0.0138149,0.529015,0.0108738,0.0956424,0.166709,0.366719,0.142163,0.792604,0.405994,0.311818,0.647729,0.0544186,0.0618752,0.342487,0.907802,0.470274,0.801608,0.313022,0.619016,0.487105,0.316509,0.350906,0.946029,0.839399,0.129353,0.357644,0.813704,0.0629577,0.425487,0.204203,0.22372,0.663117,0.333452,0.535088,0.764838,0.459252,0.997182,0.30695,0.481997,0.883904,0.524107,0.393656,0.657583,0.742134,0.192063,0.586804,0.0881293,0.0481739,0.110556,0.237706,0.133021,0.177468,0.854344,0.748119,0.675984,0.242097,0.167048,0.792752,0.803399,0.231139,0.758429,0.559552,0.762637,0.493397,0.40971,0.792678,0.927763,0.605493,0.899571,0.632072,0.175861,0.0950601,0.447963,0.0708582,0.442154,0.919553,0.0134117,0.423858,0.59331,0.492633,0.26049,0.487822,0.69226,0.952549,0.802773,0.575292,0.370695,0.429976,0.757176,0.348569,0.821488,0.178975,0.358762,0.390567,0.00645632,0.82679,0.552433,0.665694,0.332981,0.790117,0.483015,0.804303,0.701857,0.763475,0.89672,0.318227,0.575274,0.251227,0.477802,0.158202,0.848305,0.150705,0.561794,0.188426,0.840277,0.455684,0.1639,0.661498,0.513618,0.857711,0.537359,0.360217,0.927453,0.176429,0.0788799,0.861032,0.178517,0.2807,0.977014,0.385609,0.631365,0.30422,0.674053,0.235302,0.481958,0.0104938,0.205301,0.316784,0.858747,0.756059,0.194042,0.784335,0.409559,0.000422776,0.912435,0.364576,0.725531,0.486546,0.889181,0.140291,0.529919,0.139087,0.034847,0.469734,0.582648,0.845496,0.246765,0.479628,0.447129,0.788755,0.241108,0.427898,0.81578,0.153772,0.111684,0.119845,0.867292,0.671435,0.511151,0.467167,0.470257,0.725145,0.0513678,0.067901,0.979648,0.528647,0.178077,0.381533,0.776087,0.00615853,0.52622,0.585511,0.410755,0.707336,0.902597,0.663248,0.257575,0.679394,0.782579,0.134299,0.0206754,0.320454,0.717587,0.76274,0.449174,0.612443,0.484339,0.377268,0.282752,0.397081,0.555718,0.0486087,0.972115,0.124012,0.675162,0.0478211,0.432245,0.363921,0.597134,0.213774,0.880405,0.177218,0.43954,0.0644132,0.946952,0.748831,0.0752251,0.147943,0.252568,0.377979,0.0443987,0.107726,0.758956,0.693837,0.910453,0.85994,0.563082,0.0156007,0.72834,0.191443,0.595214,0.861491,0.590802,0.0950984,0.0873384,0.757908,0.647859,0.544046,0.665564,0.899716,0.633221,0.91983,0.482817,0.0944831,0.955631,0.231833,0.176739,0.980318,0.0979134,0.488466,0.94274,0.635072,0.478208,0.40432,0.489937,0.0329913,0.0981362,0.649259,0.354163,0.230477,0.322387,0.479864,0.454786,0.154476,0.487723,0.999003,0.736103,0.183062,0.83337,0.401358,0.672195,0.743397,0.508989,0.556483,0.901575,0.34605,0.657171,0.516247,0.652845,0.686062,0.309104,0.867301,0.94585,0.745802,0.24349,0.0539402,0.287915,0.100062,0.660435,0.943899,0.768716,0.883239,0.105331,0.798266,0.466434,0.31274,0.26101,0.819574,0.127694,0.650918,0.653695,0.17669,0.512607,0.386783,0.221086,0.362241,0.606091,0.0976762,0.88377,0.790152,0.442428,0.745222,0.455628,0.809255,0.397683,0.3747,0.41992,0.456785,0.058025,0.421348,0.53859,0.790131,0.672172,0.751554,0.123463,0.082651,0.956899,0.599333,0.555626,0.771812,0.357867,0.653032,0.666438,0.519725,0.472349,0.876538,0.0554452,0.31314,0.691706,0.572193,0.391819,0.675136,0.959582,0.666982,0.633685,0.816496,0.81306,0.476417,0.478687,0.200013,0.608846,0.885319,0.946737,0.555815,0.140988,0.751026,0.0347954,0.700671,0.438102,0.661497,0.147429,0.688119,0.994157,0.634674,0.242802,0.611366,0.234655,0.248578,0.884363,0.147382,0.313409,0.392853,|0.320554,0.583449,0.567674,0.270761,0.623866,0.909949,0.548426,0.282793,0.968508,0.509013,0.918659,0.923194,0.633213,0.906638,0.627348,0.276696,0.259272,0.976475,0.64531,0.613803,0.721171,0.266498,0.84012,0.914688,0.390913,0.0641496,0.223053,0.966896,0.753835,0.498192,0.00962186,0.0809109,0.576886,0.317676,0.702183,0.535874,0.714032,0.18726,0.523183,0.0904773,0.341792,0.459491,0.322627,0.877888,0.436203,0.0610465,0.382521,0.604805,0.224939,0.636862,0.640156,0.814192,0.847928,0.542068,0.992781,0.419831,0.867313,0.316075,0.900754,0.154599,0.296299,0.611955,0.298891,0.874569,0.673881,0.876388,0.379695,0.733941,0.917502,0.768553,0.752358,0.780868,0.209991,0.800242,0.899488,0.492607,0.760367,0.249881,0.705063,0.271518,0.154809,0.847694,0.360455,0.708536,0.278358,0.494698,0.320993,0.722053,0.320599,0.412867,0.224041,0.988005,0.926907,0.654825,0.448973,0.276116,0.0294835,0.367108,0.54466,0.840982,0.211566,0.472492,0.529744,0.00107199,0.838976,0.929729,0.996033,0.0329424,0.963803,0.59952,0.973752,0.46107,0.00496835,0.999992,0.985683,0.107959,0.0735916,0.211774,0.902588,0.545255,0.113604,0.796702,0.557957,0.891565,0.0776163,0.609484,0.365443,0.860727,0.978976,0.065221,0.034533,0.611566,0.705757,0.0825194,0.226653,0.162483,0.044426,0.76884,0.40123,0.881092,0.00591081,0.280218,0.552015,0.925379,0.332487,0.656188,0.827045,0.167686,0.843627,0.791096,0.8332,0.956162,0.674188,0.892444,0.343261,0.467928,0.641723,0.964684,0.437461,0.770675,0.153818,0.414224,0.0573602,0.342605,0.491644,0.752575,0.978316,0.81496,0.158879,0.142417,0.599569,0.0352797,0.188782,0.230046,0.298284,0.935683,0.198102,0.852045,0.867574,0.908602,0.506412,0.677532,0.229181,0.254017,0.148281,0.57047,0.362831,0.0151396,0.282553,0.0463064,0.0418348,0.281389,0.18254,0.264473,0.369408,0.786998,0.29926,0.950475,0.513808,0.498178,0.64231,0.985398,0.876085,0.56122,0.536116,0.110463,0.202653,0.304281,0.130094,0.595132,0.947762,0.734761,0.743257,0.159371,0.834526,0.880849,0.201301,0.893445,0.803937,0.561321,0.307016,0.619406,0.340038,0.0315557,0.176053,0.0856035,0.639784,0.638111,0.766216,0.313104,0.624138,0.16364,0.554804,0.417156,0.928395,0.180731,0.772498,0.154073,0.537134,0.197924,0.441656,0.263594,0.870436,0.567861,0.641237,0.455311,0.258858,0.686265,0.671705,0.560483,0.0764386,0.263466,0.24805,0.175568,0.150435,0.858568,0.417194,0.544988,0.432443,0.324309,0.360608,0.781888,0.721667,0.481567,0.724037,0.650846,0.443935,0.281835,0.314156,0.419943,0.685063,0.678186,0.979186,0.195248,0.0726612,0.612999,0.944729,0.312842,0.411636,0.961088,0.802657,0.728075,0.0606363,0.923663,0.865224,0.885806,0.947757,0.913801,0.181447,0.877637,0.515389,0.0546452,0.336382,0.67384,0.779962,0.6732,0.985822,0.934193,0.315127,0.163902,0.0921488,0.51214,0.499868,0.904127,0.0661097,0.599591,0.28378,0.869874,0.920888,0.613201,0.162798,0.480752,0.0623732,0.282648,0.688617,0.050288,0.744178,0.701685,0.243061,0.139031,0.522058,0.538172,0.869055,0.367806,0.168761,0.716178,0.0880837,0.333582,0.579648,0.286521,0.704317,0.58732,0.270205,0.581741,0.180446,0.937352,0.647383,0.241175,0.0216973,0.983833,0.421324,0.815696,0.68364,0.876694,0.12646,0.906471,0.256121,0.00680059,0.424975,0.877035,0.267601,0.609352,0.494816,0.256901,0.108384,0.151327,0.0236409,0.403433,0.643705,0.822914,0.165719,0.601773,0.348569,0.599122,0.363297,0.785456,0.720964,0.785909,0.328375,0.914592,0.0488831,0.845367,0.257883,0.21577,0.23973,0.226245,0.385293,0.397329,0.680789,0.808582,0.819584,0.433477,0.210999,0.701695,0.818107,0.0228816,0.195815,0.609117,0.696388,0.334996,0.584219,0.873771,0.320762,0.314341,0.120662,0.178258,0.893998,0.283551,0.900099,0.461652,0.584167,0.819485,0.403766,0.04294,0.936866,0.565939,0.246139,0.200917,0.700961,0.528432,0.343388,0.289632,0.760238,0.56723,0.581341,0.789616,0.127283,0.815008,0.133492,0.960763,0.0238237,0.115751,0.752834,0.495113,0.381093,0.801489,0.895955,0.05455,0.894402,0.264349,0.329947,0.675372,0.430051,0.593542,0.131535,0.532462,0.11526,0.804866,0.741809,0.348682,0.278681,0.412816,0.895405,0.176336,0.214716,0.132985,0.702784,0.49611,0.0741963,0.749441,0.494379,0.682443,0.491229,0.517624,0.245403,0.548523,0.759544,0.645655,0.923785,0.190821,0.165694,0.995854,0.831688,0.924317,0.479316,0.725241,0.49242,0.351026,0.909941,0.0714192,0.927137,0.0235098,0.792747,0.632854,0.507426,0.693115,0.732107,0.830779,0.15893,0.93271,0.374943,0.321278,0.915248,0.367037,0.223903,0.935222,0.254778,0.284474,0.888958,0.27577,0.51698,0.889249,0.120519,0.0659882,0.94942,0.233801,0.998633,0.604604,0.239644,0.986252,0.961471,0.138852,0.321225,0.550486,0.989369,0.710334,0.182682,0.0479885,0.901246,0.172827,0.081194,0.624683,0.450134,0.581933,0.484084,0.864492,0.297007,0.738264,0.769383,0.457311,0.351853,0.213208,0.565212,0.156485,0.305918,0.419173,0.0205551,0.992465,0.183074,0.0754142,0.485888,0.562153,0.984766,0.332136,0.690558,0.0396276,0.111134,0.668502,0.421533,0.804607,0.372601,0.568654,0.150251,0.354383,0.737547,0.678953,0.978029,0.481471,0.285224,0.875552,0.740015,0.989573,0.238185,0.786522,0.677833,0.744014,0.219676,0.649007,0.470123,0.768602,0.556266,0.74813,0.676127,0.398194,0.410817,0.365186,0.738288,0.142956,0.238797,0.490443,0.767409,0.550298,0.468728,0.485459,0.865657,0.0532854,0.109255,0.0708499,0.576559,0.859768,0.834342,0.172056,0.553623,0.00162607,0.432248,0.0528638,0.283222,0.528051,0.129305,0.0706965,0.737496,0.301097,0.862147,0.777459,0.235283,0.409867,0.132111,0.936373,0.828019,0.5212,0.569092,0.180209,0.207771,0.734337,0.907569,0.926298,0.917116,0.0309376,0.897546,0.581704,0.285153,0.26242,0.710383,0.304393,0.134955,0.195203,0.961965,0.303275,0.769431,0.408892,0.760604,0.113404,0.728978,0.807854,0.754851,0.728875,0.385251,0.100056,0.0340081,0.289913,0.65636,0.619575,0.553811,0.192391,0.206139,0.594371,0.527939,0.510207,0.769553,0.0901548,0.499243,0.306175,0.414006,0.285188,0.992772,0.850833,0.974988,0.751552,0.324196,0.829818,0.844768,0.284385,0.676426,0.262382,0.193512,0.867065,0.544469,0.530593,0.406174,0.683585,0.929311,0.696293,0.64207,0.402233,0.813424,0.98274,0.45316,0.308805,0.964666,0.681741,0.91906,0.233749,0.35917,0.216664,0.105991,0.749509,0.187333,0.946198,0.211956,0.622004,0.358334,0.971809,0.313011,0.86217,0.732503,0.837287,0.0458967,0.918962,0.44922,0.484465,0.0324169,0.461347,0.603327,0.134189,0.19619,0.805303,0.222989,0.746301,0.392342,0.7681,0.480001,0.282634,0.587173,0.441792,0.960742,0.541183,0.824474,0.983134,0.12449,0.311393,0.102885,0.764432,0.480835,0.317773,0.00590402,0.794006,0.928162,0.00854605,0.250475,0.442528,0.401379,0.44385,0.468554,0.304867,0.517133,0.482664,0.389497,0.594647,0.845556,0.230559,0.71585,0.129204,0.625152,0.230521,0.364221,0.657158,0.739997,0.672859,0.76954,0.509502,0.871772,0.285128,0.477465,0.715298,0.829801,0.137204,0.41682,0.0966783,0.0699921,0.480185,0.360239,0.522365,0.0789156,0.793734,0.00700164,0.54535,0.311114,0.821964,0.161618,0.0789294,0.177391,0.322409,0.392375,0.297162,0.868874,0.28987,0.506355,0.674079,0.0111305,0.49872,0.309592,0.519782,0.961975,0.336501,0.618942,0.406664,0.36633,0.208886,0.318742,0.285103,0.962161,0.155533,0.11585,0.175646,0.839085,0.0427015,0.118849,0.982071,0.282109,0.108037,0.125579,0.4096,0.88027,0.817997,0.565416,0.707489,0.747746,0.303297,0.704225,0.0617569,0.0424049,0.993917,0.257868,0.814852,0.731227,0.821222,0.288153,0.846525,0.476621,0.12124,0.227349,0.695874,0.353817,0.524708,0.351983,0.366826,0.173711,0.879464,0.256068,0.404904,0.272859,0.946099,0.377927,0.622158,0.228375,0.193745,0.0208639,0.736121,0.458402,0.570747,0.730313,0.472792,0.579473,0.0703977,0.590665,0.580863,0.015814,0.850773,0.928803,0.12643,0.117805,0.514755,0.730499,0.635362,0.410642,0.440689,0.0124752,0.327972,0.642565,0.285756,0.218603,0.532203,0.337782,0.0507349,0.143738,0.830886,0.962841,0.944986,0.950116,0.62859,0.994687,0.413413,0.270711,0.696819,0.13215,0.00363958,0.135927,0.238481,0.943803,0.0504681,0.008928,0.353574,0.229798,0.739422,0.524945,0.834336,0.535716,0.592741,0.750687,0.120131,0.791152,0.338524,0.23826,0.41027,0.289374,0.447316,0.199351,0.815294,0.456345,0.369261,0.507771,0.659492,0.0805775,0.0928808,0.0742408,0.259242,0.533284,0.843404,0.549021,0.61357,0.248193,0.286697,0.617027,0.496848,0.853011,0.755116,0.0878282,0.558721,0.499101,0.418389,0.48103,0.254995,0.569736,0.150398,0.422987,0.852194,0.964729,0.929939,0.153621,0.385683,0.735337,0.57876,0.155448,0.165524,0.38266,0.858734,0.0743772,0.75085,0.306691,0.790997,0.914607,0.359292,0.260649,0.571906,0.835974,0.766891,0.391649,0.0112317,0.661014,0.280482,0.0238729,0.1885,0.738685,0.595257,0.0072906,0.383627,0.847773,0.686812,0.341422,0.504107,0.738393,0.946514,0.908015,0.949166,0.207931,0.315224,0.97092,0.966661,0.454218,0.153014,0.396861,0.904152,0.689712,0.593459,0.298435,0.00208968,0.465572,0.390386,0.756931,0.810886,0.386797,0.502563,0.803655,0.791108,0.60591,0.704028,0.380843,0.0138105,0.184576,0.695417,0.227859,0.856008,0.71334,0.0910633,0.0157731,0.831661,0.34312,0.192866,0.688625,0.262611,0.3515,0.444256,0.900055,0.6187,0.479653,0.300157,0.376554,0.589207,0.578935,0.551548,|0.126059,0.195527,0.930296,0.0662274,0.0514419,0.805655,0.309155,0.0574814,0.97845,0.113403,0.75503,0.963609,0.632838,0.0606049,0.0616097,0.522855,0.218413,0.300627,0.0152645,0.971415,0.707478,0.604199,0.436013,0.246023,0.125948,0.864067,0.688292,0.506795,0.187441,0.305257,0.334293,0.90935,0.564777,0.342243,0.495251,0.154063,0.873805,0.290487,0.721525,0.211144,0.84058,0.192688,0.639714,0.402632,0.763612,0.593033,0.618773,0.270545,0.80221,0.311622,0.239927,0.138355,0.378957,0.163177,0.357319,0.919406,0.44339,0.229658,0.332393,0.91681,0.807047,0.16287,0.208369,0.863388,0.795231,0.99185,0.287818,0.378443,0.292949,0.209547,0.260503,0.32023,0.997151,0.859942,0.843393,0.537605,0.295451,0.395634,0.483031,0.914421,0.69291,0.736298,0.184015,0.93346,0.461009,0.435404,0.730138,0.0658678,0.25791,0.959888,0.297901,0.241021,0.0456553,0.127334,0.941658,0.635165,0.022418,0.593113,0.687079,0.0661959,0.476065,0.931755,0.730476,0.38022,0.661116,0.56664,0.406153,0.36286,0.243926,0.629654,0.644845,0.564204,0.618122,0.296277,0.694551,0.326096,0.043223,0.739443,0.303067,0.966901,0.742202,0.190306,0.739681,0.456124,0.77153,0.617493,0.256234,0.628993,0.0115798,0.269388,0.34244,0.155259,0.352099,0.644463,0.960058,0.728478,0.889388,0.398838,0.0791612,0.670891,0.62234,0.554862,0.846014,0.56742,0.671934,0.657617,0.932817,0.762288,0.772886,0.23928,0.412629,0.129551,0.137883,0.179435,0.840635,0.115035,0.767485,0.19543,0.338307,0.144393,0.355829,0.190124,0.217462,0.649268,0.833441,0.631321,0.939021,0.612943,0.39348,0.835547,0.416926,0.629241,0.0638666,0.125601,0.060663,0.331355,0.182697,0.221466,0.832574,0.938853,0.0788346,0.439459,0.115779,0.424167,0.597514,0.669149,0.325729,0.44079,0.965151,0.0107843,0.00996381,0.23903,0.913475,0.346357,0.590855,0.625337,0.53275,0.675379,0.497338,0.41572,0.63624,0.000727415,0.307667,0.52077,0.630054,0.983315,0.77347,0.912772,0.916469,0.53163,0.233194,0.349502,0.704274,0.127429,0.784691,0.549448,0.107948,0.0668138,0.317583,0.904957,0.971902,0.219112,0.992964,0.914732,0.735677,0.814896,0.777432,0.0501766,0.901502,0.761816,0.906153,0.800463,0.0756826,0.786088,0.551924,0.0136701,0.796989,0.98074,0.223733,0.256586,0.35825,0.516148,0.295181,0.746264,0.703994,0.209857,0.466558,0.92793,0.497924,0.087796,0.590359,0.428038,0.0765496,0.619841,0.285939,0.432313,0.630688,0.276171,0.0182975,0.977347,0.444437,0.770014,0.608575,0.325476,0.305807,0.318825,0.273094,0.292222,0.282126,0.104477,0.557555,0.701765,0.0578718,0.328974,0.333652,0.933335,0.827567,0.884945,0.67041,0.250579,0.719951,0.21442,0.440421,0.500254,0.972747,0.253922,0.85489,0.441038,0.577837,0.711763,0.235851,0.717643,0.686052,0.653791,0.607391,0.265965,0.654615,0.247569,0.13177,0.283962,0.570244,0.971001,0.514724,0.339296,0.69182,0.656326,0.202125,0.818378,0.848321,0.1683,0.938258,0.196872,0.977678,0.53129,0.264422,0.472303,0.361611,0.0104226,0.370702,0.942408,0.516223,0.122229,0.840638,0.0516225,0.697342,0.455048,0.788265,0.123975,0.0935072,0.047316,0.424127,0.410697,0.151637,0.53362,0.705433,0.289791,0.0250148,0.21714,0.0431132,0.079805,0.196184,0.692804,0.364802,0.173277,0.926771,0.775699,0.578038,0.313663,0.916509,0.728185,0.100174,0.253661,0.736199,0.163402,0.802574,0.511953,0.253882,0.173082,0.245171,0.887237,0.221062,0.440168,0.398793,0.676713,0.541813,0.897057,0.587193,0.0990071,0.637298,0.736147,0.432751,0.909485,0.569878,0.631112,0.453105,0.330988,0.980359,0.951557,0.974157,0.724951,0.605356,0.578746,0.459902,0.0803427,0.263648,0.761386,0.743666,0.145711,0.111253,0.364441,0.292714,0.723338,0.596484,0.65095,0.619495,0.956153,0.611746,0.709444,0.638403,0.77406,0.502828,0.306089,0.0976874,0.85822,0.198296,0.927433,0.75486,0.121398,0.506379,0.228173,0.509125,0.514329,0.512866,0.601017,0.335171,0.715301,0.263117,0.832719,0.377677,0.58905,0.0634313,0.375338,0.255442,0.107027,0.136675,0.54329,0.176112,0.0168241,0.10927,0.693979,0.677806,0.578932,0.495928,0.597917,0.178244,0.704803,0.717624,0.865685,0.955287,0.159384,0.561829,0.890563,0.438146,0.457874,0.068691,0.948377,0.595159,0.072767,0.0150036,0.76266,0.493653,0.841256,0.248345,0.109372,0.883851,0.154015,0.839295,0.247943,0.318233,0.951546,0.797533,0.302138,0.933807,0.273242,0.182783,0.158231,0.103096,0.541627,0.0856514,0.830446,0.722386,0.367639,0.580307,0.740554,0.328825,0.0108169,0.6448,0.659044,0.00795829,0.215639,0.0858825,0.268746,0.357751,0.653208,0.742911,0.528138,0.733772,0.433696,0.352393,0.965102,0.467613,0.043375,0.680366,0.621417,0.0904544,0.0313529,0.948648,0.62512,0.310239,0.172406,0.0279095,0.516573,0.667769,0.306093,0.990845,0.0201411,0.252476,0.0918115,0.563196,0.284756,0.670447,0.931323,0.634621,0.0218967,0.742437,0.286099,0.726871,0.666912,0.0614461,0.105792,0.558778,0.573351,0.496341,0.506846,0.421212,0.276601,0.627263,0.723594,0.963308,0.399153,0.179268,0.755565,0.455018,0.666973,0.504866,0.0490782,0.232189,0.974775,0.96315,0.413665,0.17095,0.0872551,0.202994,0.673263,0.00442439,0.473952,0.501489,0.123523,0.163972,0.810368,0.890334,0.664189,0.163132,0.329824,0.935794,0.149447,0.351655,0.557404,0.53651,0.0953466,0.920496,0.139646,0.275133,0.120535,0.725028,0.74152,0.985537,0.552206,0.935453,0.559007,0.181758,0.363248,0.829315,0.796524,0.191811,0.0492631,0.373113,0.33595,0.642624,0.262913,0.17732,0.379178,0.638714,0.567736,0.317944,0.678747,0.252396,0.648903,0.319879,0.359495,0.658178,0.925321,0.347081,0.905254,0.823753,0.760017,0.12506,0.0927454,0.845911,0.884724,0.571897,0.598988,0.974595,0.551196,0.313973,0.296608,0.256876,0.10144,0.590981,0.200305,0.326881,0.64623,0.346058,0.177769,0.949804,0.432282,0.682463,0.622078,0.0530605,0.0696995,0.0256857,0.888659,0.544086,0.500591,0.396867,0.385452,0.465784,0.948289,0.555348,0.922172,0.884779,0.486354,0.254381,0.0536319,0.909896,0.880056,0.8617,0.238063,0.158807,0.48015,0.419608,0.580544,0.462828,0.510125,0.0666438,0.845033,0.209331,0.819812,0.523801,0.973164,0.869397,0.97716,0.697566,0.0981153,0.506305,0.0934346,0.957246,0.262112,0.384486,0.308451,0.843005,0.700935,0.0800181,0.287051,0.873777,0.234809,0.577341,0.381256,0.244807,0.287532,0.887984,0.975717,0.488806,0.67813,0.0864239,0.952745,0.385736,0.252421,0.545616,0.390603,0.288412,0.337215,0.29926,0.681165,0.699489,0.358298,0.855981,0.694868,0.235991,0.434909,0.0149786,0.426217,0.944273,0.94319,0.564042,0.73304,0.557938,0.85274,0.218443,0.670096,0.397636,0.504978,0.904819,0.0639938,0.90816,0.296756,0.73164,0.893475,0.721806,0.86108,0.276608,0.111136,0.567835,0.88636,0.0170748,0.232723,0.348683,0.102749,0.00565368,0.91488,0.758266,0.26397,0.288092,0.714616,0.506084,0.437526,0.907206,0.735295,0.111064,0.434983,0.367922,0.553787,0.253969,0.421523,0.821046,0.401776,0.319373,0.110206,0.764287,0.0841671,0.488289,0.673881,0.618205,0.37139,0.201264,0.636612,0.820743,0.993414,0.160304,0.0211301,0.634143,0.485781,0.720354,0.645275,0.0212428,0.911324,0.371432,0.642453,0.325364,0.993044,0.0225982,0.0605578,0.647803,0.698007,0.739504,0.027057,0.442414,0.841237,0.0902329,0.0920305,0.0311075,0.767417,0.133114,0.734071,0.553285,0.119066,0.123511,0.0545921,0.40063,0.126415,0.000991225,0.0917332,0.0370227,0.949597,0.934972,0.144311,0.219809,0.0482163,0.11712,0.0709116,0.772639,0.198123,0.209015,0.506808,0.920148,0.977029,0.716021,0.889964,0.537282,0.266403,0.858089,0.715336,0.511636,0.255767,0.807377,0.87858,0.194426,0.647205,0.663197,0.342809,0.911014,0.539607,0.982359,0.995966,0.966294,0.597027,0.205489,0.627365,0.634969,0.572447,0.20456,0.682192,0.326405,0.450474,0.620502,0.39406,0.126064,0.550592,0.314943,0.0725868,0.0405114,0.239227,0.459197,0.0544595,0.733313,0.378243,0.46372,0.245286,0.163222,0.562855,0.98659,0.152926,0.254892,0.67466,0.10852,0.695744,0.509954,0.063267,0.59054,0.126026,0.836325,0.756295,0.311062,0.534436,0.866258,0.739532,0.726602,0.753646,0.21598,0.0697019,0.840937,0.0362684,0.991086,0.411257,0.136756,0.452053,0.711007,0.619304,0.34291,0.383026,0.314545,0.18184,0.769287,0.895839,0.650783,0.480724,0.545639,0.952679,0.466936,0.726625,0.704722,0.566264,0.469653,0.845366,0.62585,0.833659,0.998705,0.270723,0.455782,0.813242,0.0110084,0.500223,0.703646,0.477717,0.774728,0.698868,0.454828,0.317312,0.641771,0.336024,0.454461,0.307018,0.24751,0.349813,0.0711926,0.960432,0.927359,0.242579,0.721984,0.985578,0.0364147,0.450816,0.817139,0.511854,0.560167,0.298393,0.326893,0.190475,0.824313,0.576976,0.582067,0.808704,0.724775,0.509769,0.835298,0.698151,0.878774,0.942801,0.817303,0.78056,0.683605,0.600494,0.347098,0.187097,0.688305,0.488642,0.179566,0.917837,0.660164,0.00862324,0.621328,0.918966,0.180833,0.481751,0.0221773,0.447489,0.0897235,0.781905,0.530217,0.764839,0.0553564,0.764559,0.872471,0.0564989,0.791538,0.907796,0.60389,0.19427,0.224933,0.635024,0.304133,0.404151,0.600374,0.16809,0.211785,0.336034,0.604981,0.193567,0.269196,0.520643,0.466617,0.388605,0.565103,0.027557,0.661896,0.506031,0.0928355,0.528814,0.959773,0.951548,0.983025,0.134739,0.233225,0.0735771,0.786955,0.0342505,0.0837866,0.0236362,0.186116,0.924232,0.832219,0.0241058,0.153417,0.271572,0.428079,0.562311,0.0215948,0.35582,0.830094,0.493278,|0.0414641,0.867466,0.964817,0.911788,0.00313115,0.235922,0.620165,0.845404,0.483415,0.540419,0.0964103,0.212466,0.909033,0.333132,0.925979,0.0343794,0.0925798,0.0459636,0.187135,0.179209,0.798363,0.159711,0.0945148,0.0041815,0.140935,0.302476,0.426448,0.69257,0.605044,0.10143,0.95108,0.923815,0.250815,0.355737,0.955142,0.406954,0.0932149,0.819803,0.399417,0.33094,0.532028,0.905169,0.454585,0.32306,0.211629,0.298307,0.6245,0.285459,0.625538,0.494509,0.888832,0.238521,0.790355,0.731235,0.626887,0.659902,0.912943,0.603438,0.890468,0.27414,0.912769,0.927953,0.31885,0.663438,0.016574,0.237484,0.0601832,0.876947,0.641772,0.476702,0.134564,0.014504,0.778457,0.522471,0.43459,0.785472,0.916933,0.626827,0.338303,0.656783,0.0738694,0.309171,0.411814,0.925907,0.325174,0.493763,0.290381,0.776072,0.685799,0.56192,0.981234,0.936594,0.696635,0.397321,0.43668,0.801967,0.561581,0.274395,0.0393936,0.398819,0.849448,0.233401,0.201314,0.320156,0.191665,0.854286,0.896682,0.572209,0.162767,0.5835,0.555118,0.213839,0.282977,0.033305,0.254264,0.234322,0.0930887,0.855738,0.511128,0.283239,0.332641,0.449813,0.80173,0.0774883,0.744526,0.729566,0.409083,0.238629,0.563863,0.502647,0.549794,0.90329,0.676108,0.450105,0.304938,0.2142,0.14538,0.134036,0.895602,0.708173,0.176824,0.0829774,0.0408408,0.0217693,0.750073,0.677583,0.715259,0.531018,0.853634,0.409021,0.199313,0.492224,0.508077,0.304566,0.217998,0.955508,0.413568,0.519453,0.916206,0.302616,0.299472,0.742325,0.0609123,0.207121,0.311007,0.582936,0.551694,0.0501963,0.176229,0.844992,0.864801,0.635213,0.00477505,0.369142,0.365531,0.952157,0.351195,0.901196,0.93725,0.606164,0.174431,0.00458658,0.875098,0.339246,0.432845,0.756377,0.130517,0.231782,0.634543,0.820209,0.741919,0.0963157,0.582524,0.596693,0.590319,0.354776,0.672201,0.968246,0.717246,0.94902,0.0433406,0.589304,0.54477,0.405227,0.888579,0.0718326,0.0938121,0.529191,0.87851,0.623549,0.0747669,0.728667,0.192483,0.9444,0.243812,0.668008,0.045543,0.34775,0.484161,0.706548,0.323271,0.731178,0.302137,0.376396,0.496901,0.612241,0.81537,0.394399,0.636021,0.890223,0.591728,0.376706,0.47962,0.742388,0.837834,0.348162,0.304624,0.853778,0.0772604,0.233842,0.547348,0.383878,0.457907,0.100387,0.708649,0.155332,0.594756,0.912357,0.830619,0.893243,0.435356,0.677091,0.165486,0.533866,0.58291,0.444694,0.614931,0.802962,0.917628,0.896215,0.168084,0.270334,0.680605,0.766833,0.783337,0.567204,0.685888,0.683839,0.264812,0.679974,0.172581,0.794117,0.964501,0.58733,0.718489,0.635687,0.131326,0.090524,0.60137,0.0303741,0.746131,0.695737,0.358395,0.0421295,0.247777,0.838259,0.956807,0.150638,0.588308,0.972486,0.345385,0.441679,0.451888,0.0565275,0.594556,0.349686,0.767277,0.177242,0.867703,0.97645,0.767676,0.321384,0.706488,0.299344,0.354835,0.536603,0.525783,0.225187,0.661059,0.405024,0.875297,0.272398,0.46423,0.945075,0.849846,0.800377,0.386286,0.242362,0.378347,0.863934,0.915921,0.777084,0.182447,0.342662,0.81595,0.655459,0.983887,0.588043,0.934666,0.702947,0.954633,0.0165163,0.88359,0.876828,0.165629,0.31064,0.898404,0.587316,0.453006,0.779054,0.437728,0.738303,0.0715899,0.348077,0.935756,0.349758,0.343087,0.83284,0.457482,0.949979,0.645997,0.737732,0.681814,0.309405,0.277119,0.472758,0.327629,0.478395,0.871678,0.26491,0.329206,0.606621,0.0955321,0.585778,0.925788,0.765947,0.937857,0.882359,0.427328,0.405203,0.101467,0.101177,0.825495,0.186371,0.854417,0.568729,0.573245,0.651518,0.7554,0.792858,0.54254,0.358213,0.178453,0.684145,0.945261,0.184502,0.276447,0.181309,0.809106,0.375514,0.628656,0.595155,0.39455,0.123763,0.0810131,0.975648,0.224316,0.953908,0.404432,0.823207,0.321958,0.927615,0.525733,0.530621,0.800982,0.506531,0.133769,0.528967,0.9123,0.175101,0.855942,0.49612,0.949899,0.953466,0.740752,0.819433,0.667645,0.0724223,0.316656,0.481672,0.337482,0.39098,0.578841,0.527455,0.455297,0.323719,0.654538,0.853847,0.194823,0.188782,0.650743,0.989969,0.775169,0.209874,0.385743,0.935079,0.847767,0.0767866,0.179863,0.212335,0.24986,0.616955,0.396301,0.461544,0.168814,0.618677,0.845923,0.373393,0.298383,0.615583,0.764442,0.975502,0.8381,0.680991,0.45547,0.820481,0.0070824,0.150656,0.277145,0.45847,0.417636,0.521813,0.14866,0.43584,0.183235,0.760355,0.0362922,0.408809,0.100897,0.31056,0.351565,0.245181,0.63984,0.775823,0.957362,0.559688,0.569771,0.91139,0.924684,0.516451,0.310322,0.299747,0.898839,0.776482,0.914593,0.683457,0.383244,0.108997,0.153947,0.297629,0.643775,0.375483,0.52254,0.319112,0.591726,0.385453,0.395342,0.976232,0.110825,0.689474,0.476736,0.827814,0.821724,0.598767,0.51371,0.0270787,0.73539,0.0670502,0.906692,0.85516,0.346342,0.449941,0.901887,0.267189,0.772832,0.433254,0.234949,0.42463,0.79016,0.662262,0.587652,0.925272,0.630475,0.54361,0.913661,0.54695,0.851923,0.954705,0.763793,0.342421,0.671281,0.795031,0.466677,0.112164,0.53865,0.470295,0.57131,0.929968,0.824266,0.990223,0.541451,0.985381,0.943589,0.606663,0.485038,0.645589,0.878862,0.820521,0.988257,0.254193,0.693751,0.21492,0.553591,0.0268757,0.78301,0.778354,0.807219,0.332721,0.650042,0.644691,0.489786,0.303123,0.772045,0.999354,0.037675,0.779206,0.545804,0.0374681,0.530897,0.819991,0.375498,0.0450188,0.65343,0.615743,0.731886,0.59185,0.313681,0.868325,0.413727,0.932393,0.484908,0.680825,0.328736,0.449555,0.244733,0.620906,0.246872,0.00499797,0.323896,0.940546,0.806727,0.53277,0.513718,0.0140871,0.390922,0.604572,0.634905,0.742872,0.0702729,0.422579,0.0018602,0.594433,0.352957,0.544472,0.098596,0.910714,0.592305,0.509439,0.796341,0.902734,0.995996,0.589707,0.0116432,0.556417,0.672942,0.139239,0.762537,0.942215,0.704425,0.896909,0.3765,0.289024,0.0572174,0.833027,0.339662,0.78607,0.373703,0.93443,0.484038,0.347269,0.356118,0.871665,0.107169,0.869949,0.711817,0.0380981,0.326654,0.911721,0.899688,0.0975275,0.573994,0.975276,0.62288,0.577699,0.306108,0.0794736,0.00736648,0.314812,0.94458,0.305795,0.406861,0.430879,0.34343,0.351218,0.627875,0.290762,0.787652,0.512398,0.453579,0.686313,0.699218,0.487441,0.240158,0.021627,0.78866,0.634398,0.512275,0.275179,0.0562967,0.268911,0.46225,0.488116,0.649224,0.22959,0.17201,0.0454218,0.170381,0.888915,0.140162,0.444383,0.700876,0.366743,0.76466,0.639862,0.160684,0.824876,0.227806,0.16937,0.872072,0.640078,0.744407,0.723769,0.619001,0.531451,0.95584,0.571283,0.360376,0.458924,0.0429721,0.476482,0.91037,0.588458,0.186824,0.46717,0.689009,0.453927,0.3258,0.748325,0.258538,0.017985,0.940898,0.655825,0.63811,0.166767,0.460169,0.0883684,0.98747,0.189896,0.206634,0.302613,0.574835,0.670467,0.745579,0.624282,0.567562,0.262413,0.0350749,0.35304,0.856304,0.215484,0.585132,0.210252,0.579122,0.0691674,0.522608,0.0368955,0.593217,0.375963,0.919718,0.55477,0.487516,0.255236,0.708819,0.125965,0.318489,0.19338,0.304034,0.269744,0.506392,0.695817,0.130554,0.0302625,0.820714,0.302888,0.583027,0.757431,0.269887,0.58594,0.304579,0.756751,0.0519884,0.946597,0.36403,0.83606,0.134363,0.288392,0.849452,0.246085,0.802943,0.364432,0.51774,0.0331238,0.280226,0.592184,0.948502,0.319579,0.845707,0.945121,0.0945469,0.845565,0.731107,0.0568327,0.499147,0.591054,0.576395,0.165823,0.863451,0.661368,0.832493,0.930203,0.773771,0.0308622,0.0996004,0.351507,0.10245,0.120777,0.700237,0.528651,0.155438,0.27694,0.483499,0.408392,0.875666,0.653659,0.108777,0.235967,0.441488,0.594294,0.583085,0.405366,0.149407,0.0401259,0.791447,0.243144,0.997604,0.816775,0.28341,0.121709,0.94128,0.173249,0.973884,0.384451,0.0520906,0.124695,0.372382,0.404574,0.480577,0.571889,0.470873,0.48745,0.350847,0.766264,0.682539,0.742875,0.371518,0.0552917,0.234334,0.0325125,0.859888,0.758616,0.665213,0.175871,0.539859,0.708731,0.982728,0.85939,0.307925,0.211169,0.242416,0.664486,0.967202,0.0404967,0.325632,0.45058,0.139241,0.791324,0.228383,0.947917,0.956646,0.727397,0.597569,0.295657,0.210076,0.0303011,0.716937,0.882115,0.263374,0.680544,0.261117,0.925125,0.545959,0.559206,0.191377,0.226379,0.0854157,0.365901,0.29034,0.661154,0.124057,0.852948,0.854152,0.997279,0.183328,0.35902,0.366708,0.207758,0.788962,0.516822,0.0778376,0.901252,0.900838,0.612207,0.930979,0.452845,0.118056,0.919904,0.148758,0.613012,0.0127082,0.56417,0.208096,0.910246,0.162507,0.734252,0.984148,0.700511,0.274408,0.618009,0.118762,0.741382,0.975008,0.597997,0.582291,0.959592,0.607324,0.41248,0.139916,0.033555,0.159426,0.794109,0.505592,0.440108,0.671175,0.428537,0.0788409,0.181678,0.856945,0.747749,0.0245825,0.0386213,0.18857,0.679686,0.910075,0.530953,0.763777,0.232886,0.339233,0.621495,0.146877,0.690859,0.476759,0.942529,0.0422252,0.769215,0.783521,0.367249,0.620909,0.324633,0.155873,0.899538,0.92181,0.965287,0.978008,0.0771235,0.467783,0.612389,0.757113,0.922546,0.0448226,0.515044,0.32105,0.733322,0.221954,0.343279,0.610336,0.770003,0.550635,0.600926,0.932903,0.278896,0.408763,0.443444,0.0672492,0.691467,0.419891,0.040787,0.354899,0.198641,0.344922,0.615204,0.693675,0.66016,0.635085,0.525276,0.497664,0.972191,0.922172,0.275915,0.682125,0.675053,0.725489,0.922197,0.412707,0.897772,0.579294,0.867593,0.889218,0.390687,0.0672368,0.643327,|0.331327,0.80277,0.471562,0.945402,0.874684,0.841453,0.678096,0.803389,0.708556,0.678296,0.657435,0.604044,0.387775,0.187567,0.20806,0.617216,0.381922,0.107195,0.248452,0.541165,0.915956,0.407882,0.627079,0.266227,0.0245655,0.954493,0.846352,0.555533,0.711106,0.58857,0.930074,0.230034,0.233889,0.0883631,0.550129,0.744386,0.693849,0.726344,0.19176,0.831678,0.278654,0.27267,0.857681,0.0733876,0.551448,0.639029,0.846011,0.0151919,0.619701,0.915674,0.71704,0.874377,0.172517,0.0759469,0.361657,0.855136,0.0757931,0.431033,0.413913,0.325958,0.551964,0.90419,0.335794,0.775174,0.583354,0.282469,0.370548,0.764202,0.207393,0.640566,0.341813,0.610274,0.144,0.369893,0.460874,0.0346845,0.886368,0.865154,0.904402,0.866085,0.0252771,0.808747,0.881978,0.790873,0.890221,0.731186,0.936912,0.722363,0.62771,0.611197,0.488662,0.640685,0.190464,0.721182,0.290226,0.445484,0.400212,0.0677165,0.621596,0.434036,0.990995,0.234593,0.0118689,0.946102,0.336341,0.829767,0.960207,0.792553,0.790722,0.30494,0.257208,0.886294,0.433833,0.830528,0.381716,0.592673,0.684083,0.686385,0.08799,0.600765,0.0657287,0.212177,0.0583384,0.133879,0.0975947,0.673782,0.878331,0.123977,0.120693,0.369135,0.218613,0.529845,0.563724,0.595297,0.847065,0.960177,0.776763,0.395661,0.677551,0.112187,0.690874,0.733638,0.515329,0.357694,0.99157,0.604625,0.343777,0.720057,0.155057,0.912216,0.684825,0.948305,0.264451,0.341222,0.552891,0.902545,0.689845,0.327165,0.777445,0.769377,0.245392,0.204837,0.769118,0.957324,0.172178,0.999652,0.00508803,0.57889,0.899296,0.673484,0.905873,0.221563,0.641368,0.540305,0.754861,0.290645,0.46139,0.278102,0.563577,0.274148,0.625939,0.937037,0.853049,0.601267,0.885067,0.936742,0.736331,0.299993,0.000701487,0.64817,0.0451471,0.0333965,0.958161,0.865123,0.284319,0.853801,0.536211,0.845166,0.317036,0.336001,0.812842,0.488564,0.991411,0.784918,0.693829,0.568326,0.769471,0.31634,0.553679,0.028379,0.230032,0.447112,0.0382089,0.453104,0.718225,0.0267721,0.0867144,0.476415,0.854087,0.351909,0.592682,0.674707,0.476095,0.329733,0.613615,0.281666,0.664187,0.420818,0.399807,0.124989,0.563177,0.758045,0.935838,0.91829,0.657188,0.881826,0.724316,0.237627,0.857004,0.930951,0.454115,0.795577,0.91085,0.3757,0.253447,0.648338,0.608926,0.760862,0.704304,0.206458,0.558454,0.220289,0.725494,0.296781,0.966239,0.953223,0.371365,0.069369,0.541634,0.771431,0.983756,0.891502,0.153228,0.466323,0.959491,0.860101,0.264879,0.256138,0.314706,0.476181,0.360567,0.59724,0.513323,0.692541,0.0140432,0.330572,0.939659,0.893725,0.784944,0.79098,0.294822,0.882015,0.916641,0.584327,0.0455676,0.194039,0.679324,0.684203,0.604486,0.809114,0.448042,0.724754,0.504788,0.779872,0.409174,0.216076,0.155414,0.770259,0.824549,0.507731,0.653335,0.157684,0.364292,0.319042,0.0526908,0.406169,0.713087,0.458854,0.301401,0.586044,0.204199,0.706341,0.818997,0.0490221,0.736604,0.882366,0.484805,0.816357,0.024673,0.223876,0.420066,0.588483,0.746352,0.762508,0.562309,0.315973,0.603432,0.581267,0.498248,0.675696,0.434769,0.183194,0.414598,0.0474809,0.838646,0.996714,0.282488,0.907609,0.381698,0.653532,0.661167,0.360204,0.527492,0.588829,0.514328,0.433765,0.0870548,0.793373,0.889455,0.999406,0.731414,0.459762,0.708598,0.881995,0.759834,0.548586,0.309065,0.804328,0.466123,0.82268,0.826732,0.876776,0.479664,0.753566,0.979425,0.697735,0.174437,0.445046,0.177803,0.846685,0.447382,0.506937,0.353826,0.91747,0.232896,0.569507,0.727794,0.098177,0.69005,0.209372,0.428978,0.233808,0.509095,0.983664,0.675226,0.769845,0.991272,0.964755,0.604713,0.555905,0.329662,0.31415,0.184425,0.412511,0.202426,0.0904265,0.0229797,0.973579,0.962981,0.221503,0.214514,0.0061115,0.30858,0.750644,0.920238,0.247874,0.66556,0.152163,0.484215,0.92192,0.703034,0.444879,0.0904995,0.0970591,0.951957,0.222985,0.736375,0.130939,0.184816,0.34244,0.146069,0.548649,0.28271,0.0456644,0.468153,0.711004,0.846244,0.0523943,0.455031,0.157342,0.870739,0.627435,0.19125,0.794908,0.282346,0.92695,0.388526,0.597942,0.272723,0.209572,0.788088,0.858949,0.990475,0.917644,0.580587,0.485909,0.00620359,0.388688,0.518264,0.036946,0.0852352,0.201323,0.812633,0.20154,0.723273,0.0476658,0.754223,0.558895,0.494613,0.75289,0.720409,0.181681,0.406432,0.0826598,0.680421,0.493072,0.815407,0.474739,0.567988,0.416878,0.860474,0.153281,0.565994,0.627472,0.0598524,0.513267,0.556165,0.7334,0.28071,0.735008,0.462961,0.653825,0.327103,0.443216,0.964109,0.904484,0.483174,0.400519,0.265344,0.700701,0.052345,0.454511,0.073589,0.928864,0.72398,0.138196,0.0132959,0.0472783,0.916725,0.436212,0.644354,0.063581,0.549301,0.729385,0.61856,0.453589,0.303405,0.994269,0.983475,0.393531,0.297187,0.31556,0.451527,0.546946,0.365854,0.519085,0.00499398,0.198295,0.0876194,0.157941,0.555771,0.361628,0.219387,0.323418,0.985518,0.495166,0.532527,0.210594,0.541029,0.665707,0.876868,0.725812,0.631349,0.124931,0.112396,0.123646,0.427963,0.910349,0.995581,0.943866,0.28484,0.30915,0.48865,0.269356,0.219307,0.637671,0.57617,0.673691,0.368472,0.14789,0.47017,0.290175,0.685206,0.318923,0.0407814,0.242503,0.0138802,0.503304,0.411493,0.147153,0.772429,0.997351,0.401064,0.284213,0.00757366,0.049249,0.391194,0.613429,0.877845,0.711881,0.0984843,0.739881,0.0696329,0.306405,0.186131,0.753481,0.407318,0.448202,0.840181,0.957035,0.237409,0.504861,0.872037,0.22309,0.311871,0.792351,0.267291,0.932464,0.0396169,0.548828,0.942144,0.527244,0.832332,0.488844,0.973049,0.195143,0.79927,0.530083,0.763915,0.666356,0.747966,0.207991,0.643448,0.972165,0.369971,0.94298,0.876131,0.127538,0.137923,0.231953,0.618489,0.596481,0.152326,0.934798,0.131681,0.206918,0.690354,0.382198,0.367162,0.67802,0.666537,0.228586,0.821662,0.906079,0.282336,0.123357,0.0997763,0.479267,0.259435,0.131625,0.0229968,0.351667,0.854578,0.534138,0.816374,0.845192,0.381002,0.723633,0.527858,0.836168,0.694756,0.766828,0.303093,0.8814,0.0720234,0.471372,0.803003,0.121862,0.910757,0.262,0.599385,0.369784,0.984082,0.967544,0.571225,0.492553,0.364495,0.430762,0.219025,0.246801,0.670014,0.460028,0.490119,0.703866,0.704232,0.522786,0.217825,0.0184683,0.289944,0.719432,0.172078,0.870123,0.353412,0.825552,0.117119,0.579843,0.0861954,0.601957,0.218859,0.609687,0.759153,0.628872,0.233737,0.428159,0.194966,0.560107,0.834712,0.971587,0.182356,0.218563,0.619726,0.676134,0.887153,0.833207,0.84208,0.0577478,0.750167,0.687328,0.545484,0.8038,0.110679,0.578428,0.710811,0.453114,0.695065,0.63645,0.234675,0.299683,0.681141,0.351329,0.8612,0.420357,0.340439,0.57362,0.575779,0.501869,0.204368,0.205824,0.483983,0.27233,0.566635,0.919299,0.438448,0.147684,0.9911,0.555594,0.45692,0.219645,0.937427,0.807659,0.502375,0.228242,0.930207,0.686156,0.416135,0.394471,0.35944,0.458802,0.981648,0.0330448,0.0220819,0.134644,0.304949,0.6313,0.0914397,0.781375,0.0322878,0.917618,0.384047,0.900729,0.148204,0.774202,0.337627,0.0963224,0.509947,0.0408058,0.0699844,0.0658494,0.0592313,0.314496,0.852137,0.975352,0.226197,0.857932,0.881417,0.0895281,0.640325,0.910768,0.552552,0.682405,0.953966,0.449817,0.956926,0.487894,0.738769,0.0360402,0.506859,0.771522,0.874184,0.726479,0.120433,0.102251,0.967043,0.863811,0.205891,0.643742,0.192209,0.369149,0.430865,0.603238,0.135569,0.10221,0.561252,0.884746,0.0145974,0.888635,0.429083,0.517904,0.730244,0.790565,0.600668,0.903635,0.98873,0.299548,0.820625,0.972102,0.833036,0.292615,0.202442,0.30741,0.173238,0.797697,0.388955,0.28734,0.640346,0.656079,0.129354,0.772703,0.931292,0.127478,0.974099,0.0128044,0.986862,0.621386,0.517426,0.859535,0.532228,0.126479,0.109565,0.548069,0.825496,0.69146,0.325196,0.212533,0.270725,0.168133,0.385864,0.672163,0.711209,0.963487,0.845442,0.971394,0.884026,0.105834,0.524892,0.490652,0.220898,0.43611,0.194278,0.0594268,0.85839,0.500687,0.630853,0.0308884,0.177221,0.718544,0.101528,0.60272,0.137894,0.798548,0.366441,0.78423,0.201483,0.218628,0.688695,0.796578,0.406295,0.445649,0.107238,0.290223,0.494331,0.419137,0.0562985,0.271702,0.792645,0.177381,0.03576,0.28596,0.587234,0.264187,0.610561,0.819368,0.67127,0.220691,0.970999,0.0851833,0.995485,0.770529,0.471001,0.196624,0.558691,0.0957058,0.732492,0.505499,0.501193,0.324027,0.326126,0.0727279,0.435123,0.24612,0.439502,0.545793,0.202561,0.181336,0.476796,0.232639,0.733544,0.993354,0.800576,0.633415,0.103379,0.814601,0.347547,0.851031,0.755764,0.57336,0.716051,0.733209,0.130414,0.0763562,0.0212234,0.218548,0.519883,0.986792,0.436411,0.742418,0.303281,0.795871,0.764056,0.139067,0.480968,0.759034,0.967907,0.875005,0.281942,0.576755,0.434488,0.453873,0.58618,0.322834,0.424022,0.100705,0.184206,0.380228,0.219076,0.243596,0.158378,0.514056,0.219313,0.122803,0.549908,0.291433,0.876497,0.305181,0.00417918,0.676275,0.429086,0.469569,0.321272,0.859693,0.181097,0.313566,0.294285,0.145581,0.197511,0.660962,0.930377,0.330213,0.894393,0.304523,0.370612,0.219175,0.738646,0.372543,0.932679,0.463046,0.0864151,0.846776,0.495372,0.134648,0.586017,0.0887101,0.301872,0.311617,0.893039,0.656379,0.391482,0.269998,0.138667,0.282598,0.582908,0.4071,0.810221,0.802574,0.455518,0.598066,0.508028,0.0500283,0.86791,0.785611,|0.474051,0.959771,0.210238,0.875189,0.33698,0.195456,0.201422,0.743467,0.694553,0.224445,0.916902,0.404836,0.405065,0.0909902,0.897074,0.999936,0.661736,0.287524,0.273177,0.621187,0.47319,0.179479,0.391405,0.431352,0.580577,0.248193,0.872647,0.611403,0.980499,0.91083,0.00391698,0.286441,0.71656,0.328541,0.213742,0.439767,0.757396,0.153804,0.0265007,0.687417,0.878077,0.0997165,0.254754,0.257903,0.630714,0.849461,0.814513,0.259928,0.626204,0.386367,0.344213,0.673243,0.785297,0.414557,0.928383,0.792099,0.551254,0.945817,0.140305,0.0979838,0.47186,0.139936,0.876616,0.148111,0.918427,0.815095,0.718282,0.871232,0.25838,0.26627,0.000606239,0.647171,0.597442,0.996197,0.191889,0.697605,0.399007,0.516524,0.245357,0.311526,0.288259,0.938505,0.924358,0.2304,0.298344,0.526625,0.813363,0.330303,0.0831265,0.00648993,0.762704,0.0710983,0.68105,0.463793,0.551374,0.604703,0.604786,0.978513,0.437843,0.962057,0.00293052,0.55928,0.144158,0.547108,0.597896,0.402052,0.0269265,0.160235,0.306176,0.942585,0.42771,0.960406,0.573378,0.621249,0.826615,0.966913,0.447443,0.142144,0.480228,0.636696,0.395409,0.865233,0.891104,0.599858,0.769156,0.998843,0.927067,0.510627,0.920017,0.478093,0.898438,0.0753957,0.642211,0.891993,0.283886,0.918609,0.371172,0.10149,0.77428,0.143687,0.550251,0.328085,0.288517,0.25126,0.72718,0.513824,0.496217,0.495939,0.717872,0.185915,0.998319,0.0128356,0.929084,0.210103,0.612734,0.867936,0.805505,0.623147,0.0957323,0.0113144,0.771282,0.255556,0.835174,0.333268,0.280881,0.641854,0.844803,0.592177,0.810033,0.976488,0.783809,0.149996,0.38912,0.117907,0.661529,0.810328,0.793485,0.059577,0.38968,0.659988,0.752549,0.340976,0.66662,0.72781,0.713674,0.579519,0.678813,0.657388,0.690966,0.888367,0.312914,0.36707,0.947505,0.959121,0.773266,0.323843,0.11287,0.3191,0.82844,0.405683,0.46699,0.931639,0.408021,0.306479,0.289824,0.00157505,0.806475,0.945887,0.636272,0.997506,0.0480554,0.62401,0.637373,0.119059,0.826285,0.170793,0.8181,0.684052,0.456388,0.140027,0.342258,0.272576,0.118421,0.591463,0.481489,0.438977,0.549889,0.45496,0.826396,0.812037,0.354896,0.519702,0.699596,0.642886,0.649536,0.0104629,0.478417,0.803516,0.979662,0.595725,0.812766,0.191838,0.238546,0.551851,0.447513,0.0759813,0.977126,0.544479,0.961295,0.107978,0.473535,0.0281735,0.849613,0.580478,0.482748,0.00675386,0.402935,0.786805,0.326666,0.79086,0.644746,0.5867,0.684729,0.701622,0.749141,0.403811,0.721924,0.799372,0.391658,0.069712,0.268018,0.954194,0.745225,0.999977,0.887024,0.611846,0.346441,0.913439,0.702249,0.809501,0.569011,0.377038,0.218582,0.131585,0.897388,0.197449,0.626638,0.870104,0.687283,0.692413,0.181713,0.784723,0.651644,0.874498,0.188627,0.826535,0.0456353,0.581148,0.127264,0.659025,0.441034,0.0986965,0.43413,0.848236,0.256082,0.422432,0.126091,0.986072,0.424935,0.46574,0.0990557,0.0404761,0.859627,0.243956,0.20229,0.995661,0.6979,0.874254,0.220185,0.667833,0.0816665,0.263684,0.928188,0.551099,0.260349,0.43561,0.99739,0.616159,0.693927,0.330517,0.155664,0.877862,0.34893,0.462147,0.124405,0.986158,0.9743,0.15386,0.487722,0.342489,0.568245,0.492966,0.496553,0.709014,0.201717,0.494246,0.833718,0.733769,0.00470591,0.80647,0.891357,0.679612,0.313867,0.45858,0.0745389,0.648642,0.842925,0.873052,0.852912,0.71725,0.501422,0.572153,0.702957,0.827905,0.632366,0.92146,0.668861,0.933441,0.109891,0.379087,0.528948,0.913778,0.905842,0.970173,0.78739,0.0465235,0.710972,0.460858,0.941293,0.581769,0.485662,0.53306,0.900118,0.297438,0.948198,0.719915,0.161123,0.132376,0.776431,0.992913,0.211682,0.273659,0.233192,0.550311,0.108822,0.27821,0.682989,0.210031,0.549818,0.569183,0.993112,0.66525,0.938854,0.417804,0.315255,0.987426,0.855467,0.474517,0.876682,0.373923,0.373986,0.171378,0.954925,0.184319,0.990634,0.619395,0.607324,0.0884203,0.221545,0.526072,0.465091,0.660723,0.163431,0.330441,0.325105,0.370451,0.910053,0.576981,0.391693,0.804875,0.232678,0.209166,0.895019,0.596019,0.087088,0.318343,0.361285,0.63277,0.710356,0.747363,0.318631,0.447118,0.151505,0.0258101,0.97853,0.329887,0.423181,0.993834,0.924171,0.102963,0.625993,0.2021,0.357048,0.0779042,0.242112,0.12891,0.654887,0.329803,0.507724,0.307942,0.834504,0.849562,0.635769,0.81213,0.509682,0.92741,0.344035,0.215933,0.854636,0.592359,0.81332,0.844856,0.787465,0.954135,0.0378969,0.457136,0.577494,0.677768,0.16897,0.495135,0.624775,0.833694,0.632184,0.916031,0.714971,0.452106,0.0274994,0.170036,0.116872,0.0113685,0.828133,0.86249,0.0960097,0.0979348,0.771093,0.157361,0.130384,0.917123,0.933945,0.425963,0.720244,0.0145563,0.167173,0.25414,0.461422,0.96402,0.137065,0.939529,0.517856,0.448835,0.711177,0.843041,0.743998,0.351383,0.822264,0.250414,0.847167,0.43602,0.73988,0.624957,0.0968937,0.153201,0.755245,0.588464,0.627608,0.0969383,0.40832,0.422424,0.378107,0.821047,0.49169,0.409362,0.350526,0.187507,0.596556,0.443699,0.377868,0.662444,0.417092,0.754351,0.0255996,0.145645,0.557987,0.00882173,0.733707,0.128035,0.75126,0.400809,0.152694,0.672367,0.961933,0.615595,0.791448,0.898662,0.916238,0.684771,0.71997,0.63352,0.657875,0.212649,0.767126,0.371945,0.397076,0.64497,0.840695,0.00336307,0.992376,0.33784,0.685798,0.212368,0.0171163,0.642907,0.903659,0.396942,0.910702,0.513065,0.324505,0.997073,0.952729,0.526384,0.706439,0.348325,0.0424006,0.371309,0.9753,0.230613,0.14165,0.123563,0.805979,0.858799,0.464668,0.185623,0.0380787,0.0706125,0.116541,0.470385,0.548724,0.901142,0.0960774,0.063729,0.53705,0.260473,0.249637,0.251344,0.345892,0.495298,0.674751,0.615206,0.288609,0.540247,0.17557,0.263482,0.254643,0.650392,0.436903,0.115566,0.388769,0.218668,0.295639,0.0683684,0.255113,0.264926,0.200499,0.286574,0.0871546,0.252446,0.199997,0.74596,0.478315,0.595207,0.662555,0.169395,0.583042,0.174839,0.181229,0.976471,0.167968,0.998823,0.720081,0.791842,0.893342,0.116305,0.413352,0.679522,0.903706,0.144442,0.922893,0.714406,0.899692,0.853634,0.413432,0.164988,0.301004,0.792031,0.22602,0.962125,0.974543,0.345202,0.981771,0.674154,0.016385,0.166157,0.0763896,0.353369,0.24781,0.795882,0.435485,0.559501,0.958336,0.132597,0.817797,0.833438,0.845929,0.589302,0.719364,0.869699,0.8214,0.242916,0.309896,0.0899441,0.0549899,0.537507,0.234352,0.790076,0.770322,0.661512,0.356888,0.70431,0.853465,0.926743,0.458629,0.102817,0.353495,0.57795,0.549835,0.635498,0.662562,0.555207,0.50048,0.15547,0.941353,0.27088,0.719908,0.712876,0.847601,0.694188,0.24806,0.481386,0.287958,0.922541,0.243564,0.598318,0.565031,0.880019,0.100642,0.130959,0.46326,0.78926,0.633923,0.684789,0.0468916,0.17093,0.926587,0.344345,0.465072,0.390199,0.847943,0.361972,0.754521,0.226241,0.951063,0.435412,0.232928,0.59651,0.723757,0.936557,0.947897,0.586257,0.451563,0.478291,0.74896,0.22941,0.780098,0.639065,0.100462,0.0805359,0.818839,0.0889115,0.609133,0.64943,0.799393,0.0523797,0.175582,0.731337,0.736502,0.254489,0.961973,0.0345904,0.142283,0.964067,0.812769,0.872634,0.287203,0.94287,0.0514013,0.230113,0.00466126,0.513047,0.631301,0.241623,0.595661,0.605177,0.270039,0.200595,0.324754,0.350785,0.264121,0.337855,0.041135,0.629297,0.57247,0.35199,0.673417,0.267846,0.296177,0.639391,0.440829,0.935666,0.506594,0.163482,0.492368,0.0324005,0.0550569,0.27179,0.0774179,0.0132239,0.624358,0.637855,0.105238,0.507464,0.694189,0.940336,0.87494,0.877544,0.675898,0.316214,0.635624,0.121304,0.829932,0.52076,0.657014,0.672687,0.46039,0.149238,0.75923,0.300676,0.939069,0.633315,0.807871,0.274577,0.78174,0.215173,0.972132,0.795263,0.72676,0.567587,0.626528,0.00833952,0.798935,0.337547,0.045262,0.660466,0.103477,0.0978805,0.474444,0.453245,0.699109,0.805843,0.659216,0.464151,0.419628,0.481004,0.562577,0.383542,0.427946,0.975979,0.668529,0.237141,0.97032,0.0113019,0.603465,0.401276,0.0434069,0.117586,0.668693,0.99187,0.138377,0.651675,0.899785,0.0150866,0.950288,0.193421,0.349851,0.774943,0.109789,0.139193,0.269365,0.43844,0.395372,0.463919,0.522926,0.190323,0.580595,0.412418,0.572471,0.345065,0.78594,0.477969,0.404708,0.35212,0.843831,0.319487,0.42223,0.660774,0.461871,0.574378,0.214493,0.230606,0.181034,0.441462,0.0316084,0.261377,0.355774,0.595339,0.0215231,0.170834,0.9759,0.650913,0.224764,0.912384,0.0492705,0.0709631,0.629144,0.279261,0.587856,0.203727,0.330261,0.587911,0.982185,0.249813,0.132788,0.417806,0.83801,0.237939,0.919165,0.789151,0.0899359,0.678313,0.404613,0.218902,0.0594357,0.936296,0.0794351,0.917209,0.934497,0.297992,0.189635,0.581803,0.803765,0.412252,0.0356485,0.21546,0.635447,0.0586312,0.18457,0.152416,0.669275,0.692723,0.274715,0.131388,0.600044,0.574715,0.773892,0.757769,0.39395,0.963663,0.927787,0.457092,0.0857933,0.110306,0.832172,0.696655,0.456558,0.887285,0.116836,0.897349,0.933318,0.803521,0.719777,0.287663,0.945235,0.506144,0.482968,0.147762,0.204186,0.674227,0.724501,0.883453,0.671204,0.910605,0.1816,0.519001,0.153434,0.64999,0.294883,0.457339,0.471113,0.286287,0.819793,0.58796,0.0926969,0.586788,0.0920649,0.258105,0.176711,0.230357,0.642184,0.466281,0.796473,0.643206,0.719757,0.409477,0.695424,0.740188,0.370864,0.231671,0.858488,0.803606,0.688019,0.570881,|0.987592,0.306106,0.932764,0.830891,0.2994,0.447725,0.439542,0.054373,0.427439,0.419781,0.118507,0.438032,0.574337,0.761218,0.695668,0.461086,0.72396,0.923393,0.83584,0.0366548,0.666941,0.365136,0.470337,0.658556,0.833832,0.185584,0.02713,0.224329,0.0680784,0.0937961,0.319022,0.830022,0.145827,0.489059,0.373391,0.977044,0.777806,0.924955,0.738062,0.138577,0.0272505,0.258465,0.146492,0.429329,0.467475,0.826541,0.954327,0.493575,0.927964,0.940047,0.981143,0.185199,0.337379,0.819924,0.359181,0.604514,0.762974,0.809054,0.702047,0.49558,0.0871775,0.80796,0.955793,0.66423,0.442019,0.585288,0.607666,0.541847,0.991042,0.758208,0.972119,0.536907,0.099983,0.452274,0.979442,0.225586,0.379488,0.722763,0.956388,0.923232,0.302362,0.643398,0.20983,0.487995,0.965113,0.946064,0.952559,0.178211,0.970424,0.0462458,0.7233,0.75918,0.350827,0.489017,0.552024,0.392009,0.7634,0.844123,0.881415,0.961103,0.161553,0.849584,0.885198,0.513725,0.961823,0.87489,0.226196,0.056132,0.356722,0.639901,0.935612,0.782183,0.694963,0.372883,0.363627,0.0835626,0.0278819,0.231167,0.593641,0.204576,0.358491,0.0202224,0.401543,0.166936,0.334298,0.581278,0.174774,0.775188,0.963479,0.478267,0.125325,0.287047,0.19481,0.0972004,0.422877,0.813288,0.452805,0.34407,0.328135,0.38183,0.251617,0.997322,0.164883,0.472786,0.70786,0.712553,0.269,0.621694,0.190493,0.305361,0.752029,0.355421,0.748708,0.176459,0.662873,0.303761,0.950656,0.577079,0.920327,0.199935,0.909361,0.0916638,0.966152,0.521225,0.870823,0.228534,0.570289,0.963757,0.283599,0.977656,0.820469,0.0285135,0.467488,0.461833,0.0566608,0.372572,0.912441,0.275469,0.346041,0.991999,0.330222,0.472612,0.391343,0.855573,0.852867,0.456081,0.819577,0.304609,0.714342,0.240042,0.880095,0.65768,0.991195,0.864907,0.0706393,0.964642,0.662463,0.706389,0.824321,0.987305,0.309863,0.78529,0.398476,0.137964,0.97006,0.974326,0.762211,0.0516207,0.470754,0.435518,0.984866,0.654195,0.874348,0.00635976,0.87556,0.417067,0.710544,0.680982,0.651046,0.322244,0.73681,0.267133,0.314126,0.629321,0.0223687,0.628728,0.0106235,0.791937,0.0460565,0.93038,0.357631,0.776783,0.2052,0.461348,0.361705,0.958314,0.356372,0.517759,0.185227,0.352339,0.469475,0.0240203,0.102207,0.490613,0.887823,0.413138,0.0738252,0.424726,0.368174,0.578124,0.626702,0.520602,0.559283,0.648813,0.849969,0.53069,0.767217,0.826135,0.0728784,0.000789762,0.43593,0.491251,0.488716,0.0665271,0.941798,0.154349,0.364898,0.388326,0.771233,0.652516,0.317765,0.851148,0.206608,0.912308,0.234457,0.544057,0.382368,0.890931,0.279404,0.233316,0.80461,0.890898,0.204149,0.662459,0.629277,0.251611,0.204531,0.561878,0.852911,0.904718,0.328899,0.0476552,0.473503,0.768718,0.785755,0.324622,0.522527,0.766576,0.229043,0.940432,0.256643,0.586117,0.157763,0.877312,0.580116,0.665331,0.953416,0.552383,0.450268,0.00102884,0.893636,0.39876,0.495846,0.815961,0.13803,0.559696,0.617818,0.756238,0.821351,0.144985,0.856611,0.245381,0.458582,0.496068,0.125922,0.382024,0.123368,0.312558,0.886854,0.797707,0.701627,0.890146,0.950877,0.727328,0.382354,0.846255,0.513018,0.907954,0.903958,0.0972731,0.969548,0.707785,0.609423,0.745997,0.895575,0.531233,0.0300969,0.618281,0.210559,0.697985,0.624413,0.609922,0.627176,0.60013,0.480147,0.7514,0.168448,0.78277,0.734365,0.506497,0.194234,0.229049,0.551552,0.740515,0.266139,0.223459,0.206559,0.169781,0.180721,0.355901,0.699881,0.783037,0.207402,0.270933,0.183231,0.552331,0.438599,0.0783488,0.614971,0.0556092,0.48904,0.446775,0.0474975,0.276963,0.269186,0.818575,0.189448,0.401296,0.289181,0.476163,0.486457,0.271379,0.674586,0.309221,0.00969654,0.738345,0.935665,0.558027,0.684127,0.645959,0.747766,0.480173,0.14485,0.231179,0.868688,0.77367,0.556669,0.185162,0.733387,0.157624,0.695882,0.212942,0.301369,0.653487,0.484619,0.62519,0.599341,0.582518,0.945925,0.32618,0.988623,0.636892,0.846612,0.635999,0.388818,0.650341,0.347634,0.743935,0.91228,0.651779,0.153265,0.171887,0.289623,0.0476751,0.676442,0.990472,0.769724,0.363237,0.214938,0.730344,0.475908,0.923803,0.151503,0.82167,0.55909,0.472118,0.688481,0.407289,0.767579,0.581068,0.742145,0.935393,0.094443,0.600585,0.907705,0.230077,0.599488,0.148174,0.829703,0.085631,0.502275,0.679962,0.941075,0.957103,0.341686,0.935396,0.193218,0.211411,0.714829,0.222178,0.741926,0.876289,0.742018,0.847773,0.188184,0.485009,0.336682,0.8105,0.379829,0.233494,0.354088,0.859394,0.166531,0.571738,0.235546,0.386835,0.935092,0.194653,0.110285,0.26994,0.939624,0.775482,0.308266,0.657085,0.295823,0.150683,0.810041,0.0425918,0.581656,0.867866,0.00817955,0.252461,0.348117,0.901623,0.322275,0.734832,0.523987,0.32716,0.936625,0.356178,0.387488,0.94807,0.0612453,0.906235,0.682404,0.923153,0.566741,0.707204,0.248132,0.937004,0.013765,0.35352,0.862665,0.226083,0.747976,0.237689,0.815228,0.408519,0.531329,0.378228,0.704201,0.110014,0.165669,0.778488,0.44715,0.763239,0.994715,0.694818,0.0519207,0.992081,0.62748,0.993419,0.789405,0.421216,0.0237496,0.448156,0.200377,0.743047,0.328928,0.0513997,0.127798,0.697673,0.710564,0.525263,0.447048,0.362486,0.599463,0.21335,0.30797,0.351674,0.140441,0.651386,0.681642,0.162389,0.156618,0.26085,0.518246,0.477258,0.667056,0.893455,0.52676,0.20179,0.0863525,0.821153,0.802958,0.99758,0.571545,0.0185256,0.89375,0.362192,0.893786,0.791363,0.182718,0.298381,0.758172,0.876841,0.182388,0.487091,0.414133,0.779764,0.874894,0.941692,0.77964,0.520953,0.239707,0.0132948,0.689849,0.544139,0.57656,0.755602,0.154323,0.339588,0.773371,0.840031,0.986394,0.442966,0.227545,0.596259,0.445163,0.823779,0.468597,0.382749,0.685692,0.284174,0.314764,0.819241,0.631415,0.169118,0.206144,0.770653,0.846956,0.74079,0.488956,0.885857,0.6099,0.88101,0.0324818,0.39497,0.607447,0.350665,0.763524,0.381075,0.439128,0.781776,0.363456,0.835351,0.0170422,0.931046,0.276864,0.159767,0.259679,0.968428,0.0150169,0.0103249,0.0285228,0.438224,0.116922,0.328642,0.363092,0.20538,0.448646,0.716183,0.16576,0.944806,0.812677,0.384098,0.5318,0.514355,0.941307,0.0608872,0.936126,0.464149,0.278486,0.926361,0.274643,0.970498,0.639553,0.372029,0.440613,0.385697,0.443684,0.268989,0.206627,0.561538,0.297234,0.629481,0.512184,0.128061,0.544987,0.154426,0.763383,0.825759,0.88428,0.164232,0.726013,0.557747,0.384469,0.667269,0.460839,0.360885,0.249767,0.154384,0.172978,0.776782,0.846637,0.976083,0.286404,0.427211,0.929657,0.148317,0.593367,0.0532548,0.203212,0.297725,0.974509,0.31719,0.418351,0.628026,0.288838,0.212063,0.756857,0.0254038,0.964067,0.294275,0.910906,0.866827,0.693842,0.704544,0.183262,0.734082,0.187712,0.902664,0.779238,0.475866,0.915358,0.0611555,0.153122,0.819584,0.257388,0.0470074,0.264388,0.75442,0.612915,0.509265,0.921979,0.62367,0.514845,0.166843,0.767492,0.221579,0.568763,0.788722,0.632921,0.872809,0.414295,0.733989,0.0831483,0.930226,0.847679,0.172534,0.663516,0.313689,0.381024,0.894309,0.151168,0.887479,0.227202,0.309128,0.682397,0.93841,0.0475863,0.389955,0.0145445,0.0221409,0.642888,0.637781,0.162169,0.49666,0.127339,0.376567,0.657364,0.903461,0.534393,0.119529,0.667151,0.401,0.132705,0.539429,0.168527,0.315198,0.0958623,0.469255,0.176396,0.443812,0.260073,0.489701,0.648146,0.105303,0.814079,0.736841,0.731196,0.39896,0.408572,0.552398,0.774225,0.675791,0.176399,0.595228,0.941699,0.632354,0.541814,0.728166,0.674923,0.106994,0.821727,0.330156,0.455671,0.769426,0.135518,0.595002,0.63934,0.901552,0.0574228,0.449577,0.657535,0.469953,0.477925,0.039122,0.451394,0.276133,0.253391,0.528528,0.872669,0.866809,0.453788,0.98695,0.452872,0.252245,0.234931,0.12704,0.145035,0.402179,0.667764,0.360935,0.0324284,0.960119,0.5614,0.53343,0.190614,0.0267933,0.391878,0.460543,0.742528,0.0386846,0.28517,0.655,0.920373,0.941303,0.545625,0.258633,0.707458,0.838806,0.0961868,0.672892,0.0222653,0.0778868,0.619354,0.482971,0.981744,0.996042,0.00389045,0.448827,0.269017,0.689984,0.775766,0.690969,0.624138,0.359542,0.0839049,0.643358,0.495996,0.58688,0.428457,0.376743,0.779886,0.991262,0.118859,0.845076,0.824097,0.228383,0.793246,0.344119,0.217401,0.199952,0.864709,0.657972,0.788647,0.339369,0.336844,0.149767,0.491047,0.383335,0.511629,0.002707,0.0764073,0.989284,0.0188664,0.0168358,0.803147,0.43681,0.252909,0.84927,0.646411,0.502997,0.975139,0.619461,0.856957,0.979098,0.446173,0.432916,0.157,0.376692,0.868658,0.244964,0.74504,0.983111,0.89026,0.278119,0.866583,0.359619,0.22684,0.370973,0.42915,0.337475,0.913841,0.483046,0.191526,0.798786,0.564126,0.321971,0.119907,0.539907,0.279773,0.0127789,0.7267,0.93025,0.520099,0.0707418,0.957034,0.530313,0.0741842,0.334981,0.623798,0.107463,0.0312811,0.813595,0.983632,0.155323,0.63457,0.310453,0.805997,0.820465,0.0367978,0.232648,0.949916,0.0726926,0.813242,0.526721,0.0224965,0.541501,0.852706,0.457903,0.992638,0.340635,0.299864,0.745322,0.0278116,0.864754,0.755836,0.85534,0.936453,0.258251,0.796562,0.529469,0.211664,0.630194,0.00911427,0.347304,0.201725,0.503711,0.613572,0.252407,0.13921,0.462688,0.750113,0.732309,0.709952,0.47097,0.13025,0.229317,0.151518,0.487055,0.643084,0.789092,0.376868,0.281753,0.558217,0.523393,0.802026,0.240589,|0.779567,0.713542,0.129164,0.286701,0.956515,0.724186,0.670284,0.512966,0.529722,0.709079,0.34464,0.0130515,0.157377,0.484378,0.568183,0.177906,0.447903,0.0600441,0.99673,0.533456,0.325197,0.11594,0.481297,0.443038,0.917124,0.924445,0.929279,0.516626,0.66939,0.926942,0.986478,0.791471,0.53152,0.356089,0.272714,0.0476335,0.313033,0.50194,0.800957,0.480999,0.233788,0.310352,0.691369,0.370198,0.359526,0.320405,0.857178,0.236979,0.165359,0.0273063,0.263975,0.752274,0.58961,0.125224,0.0410835,0.12875,0.379678,0.678955,0.601861,0.261467,0.610429,0.829086,0.910367,0.839181,0.191674,0.60857,0.995657,0.92472,0.680504,0.0782194,0.901019,0.119116,0.914262,0.986005,0.716394,0.247775,0.642803,0.718339,0.221786,0.29893,0.981831,0.839744,0.288081,0.68418,0.10987,0.354953,0.241102,0.815718,0.696177,0.712509,0.728146,0.227657,0.991233,0.998091,0.554802,0.619112,0.637966,0.812906,0.593184,0.212892,0.257312,0.414087,0.44886,0.31005,0.412897,0.705903,0.106928,0.545543,0.821489,0.0765831,0.0553461,0.747615,0.369289,0.626109,0.0340995,0.837168,0.40509,0.122564,0.685031,0.0489991,0.167218,0.170913,0.737825,0.031629,0.43403,0.369133,0.553503,0.666235,0.206357,0.686055,0.348516,0.969758,0.836288,0.449212,0.02741,0.667539,0.848928,0.456302,0.329223,0.526941,0.434492,0.422238,0.686802,0.585392,0.930264,0.964965,0.359757,0.0319673,0.158375,0.718473,0.00705636,0.58552,0.589749,0.397976,0.774491,0.316607,0.442669,0.398324,0.775145,0.349648,0.686451,0.17889,0.568986,0.168117,0.294655,0.150088,0.470336,0.466395,0.901333,0.999506,0.0307361,0.645221,0.521324,0.300874,0.61323,0.193138,0.91558,0.606933,0.0681828,0.26894,0.255091,0.0378764,0.877436,0.38371,0.910839,0.144814,0.0539142,0.544917,0.0548156,0.406991,0.306798,0.455002,0.601268,0.0107395,0.371212,0.553782,0.497289,0.783935,0.45286,0.509752,0.767289,0.923465,0.994318,0.8151,0.0213221,0.867239,0.566691,0.772878,0.0111415,0.342128,0.730031,0.599909,0.92388,0.642205,0.0100728,0.168278,0.343928,0.976779,0.0843351,0.00946671,0.729708,0.0696602,0.774862,0.949872,0.667731,0.61134,0.347062,0.891213,0.604837,0.206829,0.633349,0.394228,0.558765,0.489508,0.54797,0.734182,0.119444,0.267015,0.492332,0.199848,0.570579,0.588978,0.654818,0.801144,0.876358,0.758284,0.607042,0.788071,0.929488,0.289574,0.0552536,0.850322,0.771516,0.233247,0.376093,0.430217,0.504547,0.758694,0.699237,0.0735757,0.492949,0.136481,0.24888,0.81,0.215483,0.252609,0.235889,0.16803,0.0604884,0.988996,0.314227,0.420938,0.712232,0.787315,0.7597,0.578599,0.698941,0.831966,0.446688,0.0968735,0.624363,0.901371,0.812712,0.980018,0.569897,0.573964,0.162626,0.212842,0.986168,0.415882,0.490657,0.981765,0.486849,0.0743083,0.194274,0.388999,0.113788,0.601544,0.176006,0.301141,0.963007,0.43284,0.39208,0.650718,0.242475,0.685257,0.701267,0.570188,0.711288,0.560083,0.289001,0.672489,0.671446,0.426534,0.770147,0.589571,0.752195,0.976811,0.292521,0.704118,0.205877,0.866587,0.591552,0.119611,0.0579785,0.904237,0.0446102,0.768918,0.768315,0.831812,0.951789,0.0986933,0.753611,0.665002,0.102987,0.714816,0.555482,0.177933,0.30059,0.343298,0.488279,0.943418,0.133186,0.865588,0.0886918,0.804265,0.0195897,0.0850379,0.0190222,0.486575,0.268944,0.888865,0.811677,0.392549,0.716216,0.158013,0.878781,0.923863,0.667009,0.860311,0.592575,0.376979,0.415569,0.655296,0.940719,0.152986,0.813603,0.497516,0.197332,0.534124,0.254006,0.547281,0.48027,0.206074,0.426613,0.891857,0.567717,0.459664,0.518416,0.374034,0.479754,0.278158,0.509394,0.463683,0.803733,0.0145161,0.941098,0.0889483,0.548877,0.78416,0.0439072,0.998754,0.538394,0.257665,0.718502,0.976566,0.289132,0.869294,0.890469,0.695886,0.971734,0.114185,0.155787,0.292256,0.316427,0.141267,0.764154,0.781788,0.281314,0.406516,0.492598,0.374796,0.802081,0.594245,0.530935,0.900415,0.973653,0.0297517,0.99685,0.676266,0.231649,0.638597,0.340865,0.691425,0.812875,0.0577561,0.837416,0.935901,0.580981,0.740426,0.333069,0.812995,0.620856,0.237143,0.260292,0.648034,0.827936,0.15135,0.367634,0.366601,0.500684,0.436998,0.815452,0.351146,0.13544,0.395218,0.182551,0.151987,0.826451,0.576312,0.943025,0.366986,0.985722,0.898316,0.735164,0.453749,0.289664,0.389485,0.185994,0.660124,0.897441,0.62803,0.174539,0.746813,0.706765,0.64615,0.929839,0.804675,0.750539,0.0692324,0.125993,0.309625,0.775475,0.275984,0.354824,0.797731,0.772072,0.937698,0.169553,0.353402,0.045464,0.423956,0.86265,0.532342,0.489231,0.964597,0.445404,0.703198,0.403398,0.301504,0.708546,0.0722147,0.498769,0.366921,0.0428709,0.461845,0.934234,0.208708,0.00445169,0.0102214,0.948807,0.115346,0.191129,0.206492,0.406719,0.784096,0.069319,0.564229,0.195293,0.27324,0.409832,0.266424,0.575494,0.948336,0.251042,0.0229064,0.716137,0.408456,0.644993,0.79031,0.565376,0.0323855,0.191768,0.556458,0.346436,0.672654,0.252479,0.0815162,0.382514,0.560639,0.646846,0.0778913,0.159049,0.41623,0.905675,0.0645801,0.228156,0.930299,0.794053,0.417984,0.712751,0.155475,0.368963,0.560539,0.469148,0.994953,0.649178,0.342464,0.12302,0.336454,0.0495988,0.847675,0.396372,0.910682,0.206104,0.229543,0.790033,0.186089,0.750599,0.991667,0.763956,0.928703,0.159029,0.762206,0.198313,0.528033,0.0676688,0.48136,0.381291,0.584068,0.718927,0.318356,0.770033,0.875071,0.233974,0.298267,0.755218,0.0456238,0.302403,0.985048,0.262145,0.473957,0.100922,0.171464,0.63712,0.547109,0.00127679,0.280692,0.904037,0.844426,0.602489,0.496734,0.462233,0.578636,0.412019,0.556275,0.889957,0.277205,0.150257,0.0355082,0.414109,0.520135,0.803764,0.120656,0.605363,0.107089,0.00948828,0.012518,0.508381,0.746989,0.423733,0.289617,0.149034,0.978217,0.424165,0.770528,0.305567,0.188402,0.356785,0.617815,0.939507,0.500688,0.163514,0.54852,0.495547,0.686001,0.313442,0.92366,0.603311,0.0964267,0.86859,0.114908,0.234014,0.539551,0.436246,0.445098,0.158327,0.621173,0.0523462,0.106013,0.988107,0.106896,0.71201,0.33433,0.932764,0.293621,0.75113,0.293372,0.445521,0.0640749,0.692608,0.65571,0.179038,0.817441,0.0587434,0.532094,0.56606,0.739357,0.75508,0.575343,0.567887,0.0227341,0.401592,0.0696638,0.107279,0.646211,0.644319,0.557476,0.550704,0.300547,0.821636,0.441261,0.617889,0.396064,0.860677,0.968785,0.0566666,0.789414,0.536043,0.0842151,0.168858,0.934193,0.899994,0.567699,0.785698,0.113578,0.462015,0.219012,0.893784,0.0528347,0.393306,0.660339,0.253738,0.867536,0.701916,0.557866,0.111596,0.330687,0.572775,0.296391,0.630116,0.434024,0.26124,0.832041,0.737561,0.873589,0.468706,0.745086,0.613787,0.244436,0.46141,0.264035,0.362292,0.493432,0.479447,0.0510636,0.726808,0.879668,0.319442,0.000791788,0.528388,0.29893,0.0257024,0.102948,0.329079,0.220369,0.396047,0.616831,0.651956,0.500224,0.448276,0.755268,0.291584,0.892907,0.294041,0.0703367,0.25933,0.412344,0.127043,0.140305,0.103072,0.1565,0.308246,0.112138,0.227768,0.648847,0.424138,0.337826,0.537397,0.537263,0.315459,0.21453,0.0825267,0.559323,0.555951,0.284427,0.76312,0.593236,0.484138,0.60695,0.917961,0.0556071,0.837563,0.616214,0.170472,0.577037,0.21202,0.805253,0.367693,0.371648,0.192821,0.087595,0.387079,0.957524,0.776726,0.482189,0.958052,0.941023,0.0489507,0.216602,0.2402,0.684534,0.941686,0.904579,0.371162,0.554089,0.346588,0.489826,0.960671,0.852846,0.361681,0.236331,0.606516,0.825684,0.316643,0.231716,0.762297,0.735296,0.7159,0.263628,0.712438,0.81711,0.537298,0.838389,0.413194,0.199952,0.663951,0.142305,0.122712,0.51902,0.385938,0.9715,0.755605,0.675887,0.190951,0.131017,0.154161,0.049397,0.490155,0.131916,0.346774,0.481015,0.572264,0.939385,0.763891,0.676904,0.0675985,0.197069,0.977842,0.146227,0.076978,0.443977,0.702882,0.203893,0.411569,0.825749,0.309973,0.74632,0.252218,0.683112,0.056918,0.929283,0.953946,0.967298,0.0250108,0.474123,0.217579,0.946471,0.537994,0.893682,0.665802,0.156885,0.228563,0.977476,0.19604,0.666691,0.317974,0.776435,0.172676,0.311162,0.106346,0.947282,0.319205,0.869168,0.176306,0.0955941,0.755971,0.396803,0.110444,0.580108,0.189934,0.739081,0.626267,0.544132,0.839496,0.53367,0.233663,0.190148,0.0291018,0.209178,0.736367,0.63765,0.257479,0.605206,0.257923,0.564224,0.925917,0.315869,0.141415,0.0125796,0.548426,0.550386,0.0657415,0.442737,0.911411,0.117212,0.745605,0.770308,0.899944,0.819631,0.0592944,0.352447,0.695844,0.626995,0.0565612,0.00624192,0.785142,0.185113,0.356206,0.0391065,0.917466,0.847514,0.0514251,0.250085,0.0944029,0.112465,0.904883,0.817814,0.472924,0.482453,0.725913,0.125895,0.647666,0.0945491,0.0843012,0.589811,0.501758,0.561015,0.338126,0.645723,0.256056,0.265055,0.14221,0.10205,0.874033,0.59976,0.804509,0.61947,0.349783,0.424687,0.216371,0.433755,0.638029,0.0452778,0.939475,0.0724185,0.0985056,0.169594,0.352948,0.135931,0.826635,0.848018,0.26723,0.82975,0.190502,0.836688,0.333517,0.176976,0.162679,0.403513,0.741306,0.476477,0.0112431,0.724107,0.279785,0.40486,0.470121,0.968535,0.644616,0.775753,0.43425,0.866282,0.130837,0.247745,0.127365,0.653987,0.433696,0.449328,0.733154,0.280357,0.800997,0.935324,0.62071,0.74582,0.628067,0.496976,0.851684,0.408766,0.391641,0.615937,0.963817,0.374776,0.187946,0.965702,0.694095,0.75954,0.447915,0.579675,0.000844538,0.506541,|0.576603,0.77071,0.450195,0.689826,0.499355,0.66551,0.177517,0.620747,0.563949,0.0260788,0.791429,0.444283,0.83487,0.113302,0.947645,0.698669,0.650296,0.103764,0.0102185,0.779097,0.0546606,0.247766,0.217635,0.488908,0.54568,0.379551,0.686577,0.0235122,0.85969,0.162126,0.163516,0.176955,0.617777,0.783327,0.670093,0.486432,0.929714,0.773833,0.853462,0.866526,0.42237,0.329123,0.322175,0.974582,0.238315,0.926134,0.809244,0.184832,0.0489313,0.88741,0.227674,0.291281,0.0100998,0.589905,0.782089,0.183881,0.0565618,0.369796,0.0304979,0.509547,0.230105,0.435222,0.744798,0.224459,0.825841,0.197265,0.351384,0.490858,0.298409,0.60736,0.0439261,0.977673,0.154821,0.175344,0.476267,0.627738,0.584647,0.344105,0.955581,0.811919,0.612808,0.738151,0.614989,0.141146,0.40558,0.20626,0.179861,0.386923,0.411831,0.794375,0.618171,0.775594,0.974885,0.579563,0.990108,0.345185,0.0127518,0.907069,0.890466,0.688351,0.138983,0.688836,0.47891,0.449217,0.372019,0.184167,0.79159,0.984782,0.65034,0.208926,0.759752,0.414164,0.295557,0.851239,0.884147,0.574876,0.763964,0.358251,0.699943,0.0450801,0.534304,0.500137,0.326173,0.900156,0.4565,0.513305,0.585299,0.36416,0.344703,0.786211,0.987686,0.637091,0.103596,0.233291,0.0553234,0.798023,0.996049,0.553266,0.379935,0.821363,0.298926,0.281591,0.151231,0.814746,0.468118,0.94408,0.14352,0.672332,0.340632,0.631894,0.911143,0.54564,0.988352,0.867076,0.567535,0.270184,0.675958,0.888131,0.119733,0.746053,0.252799,0.616789,0.679429,0.791163,0.960825,0.00304627,0.0614417,0.540854,0.277203,0.855819,0.729667,0.679244,0.527335,0.830386,0.939897,0.188639,0.0984229,0.308873,0.465449,0.829822,0.591799,0.997544,0.282799,0.702046,0.708172,0.540082,0.331217,0.956523,0.948714,0.837928,0.125107,0.474574,0.258575,0.504832,0.00206095,0.0793881,0.685584,0.799976,0.811552,0.204015,0.608692,0.461492,0.644996,0.821974,0.942277,0.693418,0.475817,0.93941,0.849114,0.809395,0.767352,0.759895,0.71838,0.384844,0.589646,0.119335,0.279762,0.747604,0.865588,0.932412,0.601368,0.060974,0.931591,0.00997669,0.695017,0.106181,0.598137,0.59034,0.407154,0.970399,0.477785,0.0329471,0.42199,0.584996,0.663149,0.710399,0.561179,0.557834,0.676094,0.691404,0.77748,0.560609,0.324695,0.364609,0.564119,0.911963,0.667302,0.7621,0.573788,0.807495,0.706779,0.405535,0.844367,0.820537,0.687205,0.750228,0.422035,0.258392,0.00357068,0.658949,0.10633,0.226451,0.103838,0.949683,0.397256,0.803132,0.675296,0.139641,0.20102,0.815266,0.0204275,0.979658,0.492949,0.0521507,0.29298,0.124954,0.393534,0.0403134,0.984541,0.294333,0.817687,0.794581,0.882056,0.289224,0.659634,0.30097,0.355005,0.634896,0.60509,0.948601,0.789048,0.206714,0.905812,0.266186,0.871432,0.547681,0.986771,0.703677,0.734313,0.485929,0.869148,0.809222,0.598702,0.710877,0.099678,0.125881,0.75662,0.908977,0.226221,0.158504,0.433255,0.949501,0.866135,0.710428,0.0649059,0.208534,0.341196,0.644693,0.534209,0.257551,0.392765,0.896082,0.5956,0.676076,0.0786025,0.066134,0.850969,0.575678,0.559198,0.837132,0.729361,0.504699,0.524361,0.00622362,0.117255,0.0174326,0.971678,0.895965,0.685801,0.778069,0.208321,0.812346,0.210538,0.66184,0.473327,0.166681,0.552774,0.608104,0.0159808,0.204279,0.60977,0.580749,0.0517312,0.376069,0.466896,0.917032,0.156461,0.702319,0.454527,0.201618,0.305246,0.666297,0.90638,0.323748,0.913722,0.122389,0.501391,0.621463,0.236114,0.988774,0.318397,0.981879,0.898833,0.280864,0.00618398,0.321063,0.382349,0.834423,0.98172,0.747505,0.562179,0.60027,0.105718,0.830107,0.679087,0.921226,0.252119,0.923557,0.995354,0.475355,0.404678,0.0155568,0.153229,0.381547,0.540563,0.875641,0.803306,0.821028,0.780993,0.955199,0.627723,0.44426,0.688164,0.516122,0.339308,0.238665,0.29341,0.587621,0.00731725,0.157634,0.164619,0.419509,0.117609,0.433377,0.524296,0.584086,0.309043,0.745264,0.532475,0.01347,0.963365,0.188733,0.846394,0.4605,0.871158,0.415088,0.913687,0.324844,0.580344,0.269717,0.625388,0.558605,0.81356,0.128319,0.66337,0.280513,0.00415194,0.0906066,0.370576,0.204656,0.647944,0.422657,0.247253,0.683642,0.576551,0.744755,0.115935,0.961975,0.656533,0.461096,0.669642,0.350752,0.297246,0.70547,0.572631,0.516585,0.26829,0.356005,0.658274,0.398992,0.22221,0.0919121,0.599741,0.764524,0.257972,0.680532,0.426022,0.471312,0.256426,0.469735,0.37561,0.59681,0.279175,0.291466,0.365319,0.953872,0.402285,0.135347,0.961544,0.757508,0.310302,0.844085,0.217725,0.732445,0.897955,0.619525,0.931326,0.00857556,0.183007,0.646787,0.357192,0.752389,0.88344,0.762592,0.353854,0.895285,0.0533354,0.00256062,0.0147576,0.50582,0.647829,0.236604,0.0987518,0.975702,0.968768,0.873164,0.45339,0.0463974,0.811818,0.0256298,0.579089,0.265645,0.474154,0.499485,0.588423,0.287112,0.212797,0.284527,0.838131,0.97944,0.811676,0.993279,0.630554,0.375656,0.218103,0.229943,0.761781,0.145386,0.0116524,0.692299,0.919814,0.53766,0.111697,0.496386,0.633989,0.243043,0.534703,0.928367,0.353769,0.727796,0.212891,0.29299,0.769457,0.878246,0.454348,0.817839,0.323225,0.0838862,0.0367793,0.0781595,0.778133,0.272321,0.0114307,0.794064,0.972479,0.541381,0.537185,0.964059,0.856904,0.153717,0.489717,0.836219,0.492762,0.700358,0.805983,0.387684,0.598629,0.617441,0.556448,0.974988,0.223775,0.901965,0.737924,0.161558,0.59983,0.57965,0.92548,0.413796,0.662826,0.936271,0.494429,0.358778,0.727622,0.0425931,0.880606,0.828656,0.245048,0.0738837,0.330612,0.639791,0.819376,0.253767,0.232196,0.00943524,0.136598,0.801027,0.823094,0.866569,0.479447,0.304684,0.226216,0.276752,0.964499,0.704301,0.0280438,0.0824232,0.0897568,0.489719,0.997653,0.995266,0.15282,0.0546282,0.887623,0.34516,0.790474,0.898288,0.77057,0.499937,0.876722,0.991848,0.641701,0.380947,0.888117,0.861839,0.551474,0.683668,0.809413,0.765867,0.29837,0.888647,0.311142,0.340212,0.750039,0.162057,0.829958,0.427556,0.298224,0.429979,0.653304,0.899969,0.391069,0.757248,0.102248,0.612789,0.733842,0.248879,0.50322,0.444917,0.795677,0.700883,0.968395,0.173213,0.234275,0.172411,0.267535,0.397489,0.502714,0.292372,0.672945,0.872159,0.218526,0.146544,0.345727,0.594832,0.99985,0.468307,0.299988,0.267169,0.875452,0.505986,0.863822,0.0708719,0.210837,0.531384,0.810046,0.852787,0.410186,0.243528,0.707245,0.11913,0.347273,0.961453,0.955038,0.488521,0.344128,0.373554,0.895304,0.294381,0.180862,0.758752,0.746237,0.255642,0.253696,0.374782,0.605338,0.0966274,0.52543,0.880651,0.00336337,0.783941,0.110154,0.692444,0.887235,0.956818,0.75619,0.562842,0.860442,0.321975,0.260569,0.0670609,0.230537,0.262291,0.886161,0.479908,0.0928991,0.964457,0.823983,0.123619,0.73994,0.679104,0.789626,0.0127724,0.363833,0.853688,0.550237,0.737833,0.788148,0.466483,0.684394,0.406799,0.357931,0.0524997,0.29436,0.204524,0.100438,0.0317936,0.288905,0.21543,0.345078,0.664936,0.294881,0.393152,0.880629,0.772765,0.0436985,0.537897,0.897894,0.444934,0.25498,0.288721,0.813645,0.892358,0.0459844,0.146609,0.821426,0.410779,0.864073,0.0969833,0.986573,0.240551,0.000356019,0.89436,0.596489,0.0374974,0.166028,0.874448,0.234761,0.37976,0.291155,0.333837,0.00273067,0.493499,0.0195984,0.316603,0.481867,0.666284,0.398971,0.158978,0.071479,0.187907,0.498756,0.806302,0.94741,0.0720962,0.129618,0.639443,0.0162374,0.644616,0.252744,0.246566,0.560065,0.641976,0.12103,0.148081,0.7119,0.404057,0.886594,0.714168,0.933096,0.203961,0.608419,0.296066,0.769903,0.680077,0.959478,0.683817,0.916585,0.72976,0.302011,0.859756,0.585322,0.451489,0.0284396,0.651424,0.71985,0.588634,0.374548,0.946732,0.605397,0.588996,0.670906,0.626783,0.366491,0.146554,0.713054,0.292378,0.204342,0.207082,0.75504,0.554797,0.740417,0.435778,0.0573358,0.959882,0.215301,0.210998,0.110554,0.0741384,0.908193,0.63614,0.757759,0.492472,0.487981,0.946358,0.909131,0.115864,0.36732,0.26208,0.319326,0.867875,0.510166,0.126038,0.0846034,0.661251,0.109414,0.573316,0.8362,0.914928,0.541656,0.896293,0.029713,0.0901152,0.516708,0.149625,0.272329,0.919464,0.0130758,0.886734,0.941851,0.0814568,0.611643,0.212367,0.664704,0.710677,0.257298,0.579526,0.568301,0.143907,0.913333,0.226993,0.663336,0.162332,0.597434,0.812179,0.848023,0.325908,0.723875,0.288585,0.836066,0.707683,0.364376,0.142002,0.916271,0.924083,0.829794,0.175094,0.847096,0.484204,0.451812,0.986154,0.143893,0.786135,0.583086,0.105023,0.173961,0.50725,0.0219733,0.210923,0.48493,0.744568,0.766659,0.667688,0.650946,0.969377,0.389182,0.820064,0.324018,0.268327,0.6436,0.851519,0.925616,0.865434,0.95603,0.922773,0.485627,0.573762,0.804297,0.200413,0.961984,0.990083,0.926741,0.0575578,0.651861,0.482466,0.427826,0.234069,0.794075,0.629855,0.513263,0.0857695,0.917241,0.895857,0.426312,0.231813,0.716654,0.971085,0.144641,0.150607,0.115886,0.0915533,0.772019,0.299634,0.274189,0.362241,0.620698,0.0751297,0.508177,0.612573,0.810964,0.963144,0.0857791,0.659657,0.723701,0.594024,0.625737,0.794808,0.666848,0.654768,0.0813734,0.122879,0.0686721,0.0508229,0.190548,0.158182,0.41849,0.530427,0.212092,0.428466,0.859401,0.543616,0.812468,0.0413619,0.457003,0.0541034,0.235329,0.126231,0.0876251,0.916924,0.59755,0.854777,0.925517,0.0742147,0.665156,0.843277,0.355634,0.732479,0.0135245,0.880765,0.708364,0.395085,|0.79893,0.0557342,0.715046,0.799085,0.530862,0.46712,0.762729,0.187953,0.532324,0.000539243,0.2745,0.973489,0.72629,0.885078,0.443321,0.328161,0.182195,0.102523,0.64697,0.937884,0.546351,0.21377,0.28165,0.901092,0.272155,0.834959,0.265001,0.858018,0.903124,0.80214,0.178764,0.911024,0.399033,0.761406,0.664886,0.669518,0.555431,0.957571,0.288039,0.873635,0.431536,0.571806,0.181076,0.724579,0.0328589,0.993504,0.371009,0.944867,0.110205,0.730429,0.469417,0.0342569,0.719889,0.232751,0.205385,0.723701,0.789051,0.262989,0.0760657,0.118045,0.273533,0.307429,0.00699645,0.328193,0.632478,0.837522,0.0197329,0.931173,0.403573,0.038889,0.21378,0.504763,0.0504069,0.343619,0.972687,0.250244,0.152101,0.536725,0.437117,0.420616,0.480443,0.771756,0.957708,0.570609,0.563878,0.9732,0.865381,0.0110041,0.802274,0.80229,0.953715,0.451411,0.0747873,0.764514,0.743591,0.0275146,0.277205,0.181975,0.486641,0.061437,0.989809,0.912332,0.658653,0.744913,0.876279,0.459129,0.978111,0.127299,0.801355,0.550548,0.819704,0.922587,0.397888,0.38813,0.772087,0.343599,0.587103,0.288671,0.458288,0.93802,0.7705,0.986488,0.0641877,0.175966,0.820668,0.97825,0.544326,0.412217,0.890014,0.543071,0.970731,0.543407,0.0645547,0.300083,0.594668,0.72679,0.20084,0.261075,0.13512,0.842181,0.394662,0.50483,0.412422,0.908948,0.668161,0.418962,0.663622,0.489796,0.561527,0.376384,0.704053,0.261524,0.791831,0.740735,0.711538,0.762717,0.594944,0.267326,0.736529,0.133593,0.0747172,0.185778,0.270199,0.0880951,0.614715,0.733756,0.754673,0.623494,0.120606,0.869909,0.0198846,0.742303,0.216492,0.713743,0.550112,0.233657,0.338741,0.971922,0.908051,0.882982,0.831747,0.536542,0.507684,0.323962,0.417276,0.558006,0.652916,0.467818,0.806974,0.556966,0.247213,0.417033,0.731656,0.437325,0.791277,0.9777,0.404508,0.843137,0.631185,0.184649,0.292954,0.675858,0.158444,0.121717,0.852041,0.401097,0.293374,0.171702,0.525078,0.188773,0.814139,0.481612,0.393732,0.917253,0.363127,0.840231,0.701877,0.0535954,0.591295,0.91399,0.644003,0.138804,0.570624,0.635056,0.955931,0.203603,0.615824,0.176308,0.845903,0.0458583,0.0438425,0.194985,0.493537,0.945125,0.155445,0.0475965,0.141645,0.66236,0.704836,0.91572,0.37624,0.849482,0.753089,0.757066,0.977421,0.661975,0.407989,0.38237,0.94664,0.183551,0.461505,0.732144,0.112831,0.48875,0.538975,0.504257,0.583766,0.0138895,0.546434,0.88344,0.014945,0.108473,0.263514,0.357526,0.933158,0.405629,0.744207,0.00600761,0.470715,0.406651,0.469451,0.659657,0.503215,0.775877,0.823067,0.43844,0.987449,0.217933,0.605466,0.0784587,0.0718645,0.432309,0.655019,0.232593,0.67595,0.416843,0.798589,0.180755,0.199034,0.17507,0.845472,0.0892931,0.305066,0.531022,0.613155,0.453012,0.325908,0.0952124,0.867603,0.944779,0.848024,0.966652,0.800114,0.128744,0.70289,0.423307,0.135665,0.301891,0.361774,0.424607,0.489851,0.472986,0.635968,0.967492,0.715146,0.663546,0.95405,0.238217,0.345327,0.253434,0.429164,0.183509,0.527518,0.672513,0.378108,0.959446,0.00725687,0.874816,0.678981,0.180072,0.069259,0.128677,0.945177,0.760635,0.323419,0.13978,0.396098,0.406366,0.738742,0.982943,0.543018,0.785275,0.0658653,0.685587,0.966743,0.861984,0.973119,0.921382,0.659092,0.224075,0.0124248,0.896152,0.724531,0.378111,0.969222,0.0672357,0.876673,0.131037,0.767949,0.293557,0.548719,0.686951,0.788847,0.195285,0.12375,0.683283,0.927687,0.160812,0.400301,0.374976,0.220087,0.946393,0.282892,0.147449,0.719672,0.816213,0.860102,0.0521213,0.211187,0.265757,0.768765,0.285378,0.582565,0.821477,0.488905,0.479935,0.74519,0.729494,0.248567,0.479696,0.105304,0.165678,0.164164,0.285188,0.0558498,0.173076,0.768521,0.117066,0.257113,0.0479082,0.406045,0.476299,0.674335,0.902463,0.544846,0.577449,0.0808165,0.841447,0.612453,0.361822,0.727771,0.100034,0.117065,0.518363,0.201484,0.876187,0.17782,0.771873,0.942128,0.211046,0.231287,0.254054,0.149295,0.645472,0.709061,0.497079,0.135141,0.811494,0.778748,0.590168,0.873588,0.540449,0.747016,0.614756,0.814262,0.749079,0.14132,0.102348,0.207733,0.426056,0.883645,0.879401,0.34777,0.196296,0.0812269,0.228953,0.570735,0.0430492,0.76043,0.0801174,0.210109,0.840788,0.575017,0.681999,0.548722,0.0140574,0.731156,0.0460227,0.0732518,0.581199,0.272105,0.743168,0.565815,0.230303,0.0398767,0.500772,0.415686,0.441953,0.380785,0.360569,0.0479903,0.684075,0.519187,0.812613,0.475959,0.062359,0.598658,0.165834,0.556501,0.674488,0.169826,0.674103,0.571916,0.94856,0.939008,0.0802048,0.42415,0.12638,0.281185,0.692767,0.67208,0.394362,0.895246,0.872589,0.921718,0.0826216,0.266661,0.848106,0.967172,0.846959,0.46483,0.406268,0.16828,0.894982,0.442641,0.0464339,0.546007,0.868314,0.0341068,0.139816,0.852824,0.646608,0.580413,0.843109,0.405489,0.0813397,0.160145,0.950895,0.648288,0.641999,0.081354,0.219876,0.301494,0.124909,0.18767,0.900445,0.374975,0.280429,0.631413,0.102784,0.731792,0.883577,0.386507,0.0967268,0.581825,0.327825,0.0258491,0.960395,0.727076,0.829009,0.812984,0.709485,0.50368,0.439396,0.100896,0.720139,0.733229,0.151889,0.717736,0.750447,0.60935,0.622522,0.544146,0.22189,0.132783,0.248227,0.273676,0.854145,0.0340383,0.384184,0.318491,0.324212,0.928085,0.445091,0.0811991,0.957793,0.816564,0.292376,0.57312,0.522951,0.799941,0.889986,0.212534,0.789203,0.846649,0.342025,0.560741,0.320177,0.0802161,0.615347,0.80407,0.861328,0.0057047,0.795738,0.216402,0.110969,0.779285,0.895878,0.0630635,0.205776,0.266722,0.0382584,0.953625,0.20683,0.745706,0.157141,0.24957,0.953086,0.340484,0.774618,0.0628557,0.344322,0.124484,0.633731,0.377023,0.554187,0.468085,0.956045,0.882747,0.238085,0.0245732,0.48852,0.0395136,0.196511,0.154786,0.506746,0.432324,0.198432,0.474256,0.614124,0.602996,0.705577,0.99989,0.0954053,0.402065,0.949272,0.236605,0.12063,0.515407,0.212396,0.541381,0.601266,0.317379,0.735328,0.779188,0.723056,0.400411,0.872734,0.1944,0.00426966,0.109123,0.345903,0.2702,0.838692,0.518926,0.720842,0.0587184,0.847722,0.467805,0.580284,0.0260378,0.0510752,0.831349,0.361719,0.503136,0.730564,0.83176,0.981958,0.106151,0.592659,0.528399,0.574174,0.301224,0.0412036,0.394466,0.321083,0.9697,0.561222,0.905404,0.215561,0.761326,0.826453,0.518526,0.645884,0.672852,0.706128,0.650915,0.690227,0.620111,0.757819,0.463338,0.276305,0.305352,0.865994,0.557561,0.142834,0.33069,0.58072,0.506595,0.941275,0.258637,0.335791,0.950279,0.424359,0.88574,0.182837,0.774433,0.543189,0.425814,0.336021,0.963564,0.382926,0.0980959,0.880443,0.0306913,0.873294,0.0502809,0.166606,0.868551,0.566683,0.193687,0.218467,0.581765,0.0463678,0.302766,0.685019,0.578027,0.902838,0.597935,0.563661,0.074535,0.9798,0.539346,0.777453,0.852051,0.396377,0.407746,0.574777,0.320058,0.29503,0.576999,0.807826,0.511563,0.302737,0.97858,0.065351,0.474845,0.772101,0.363497,0.135005,0.955086,0.509682,0.105748,0.544925,0.480298,0.996706,0.146775,0.756303,0.94436,0.686366,0.444057,0.598912,0.203475,0.582063,0.240067,0.730348,0.508494,0.640671,0.189787,0.60797,0.694917,0.234342,0.138791,0.764087,0.663255,0.178221,0.524801,0.0839648,0.90094,0.640738,0.99279,0.994217,0.240253,0.457541,0.209237,0.0110909,0.687962,0.357742,0.938313,0.759982,0.863412,0.268193,0.706585,0.612732,0.141298,0.231394,0.660696,0.188609,0.160757,0.642597,0.910506,0.920128,0.374521,0.828306,0.176165,0.518146,0.159054,0.704559,0.364685,0.751918,0.569294,0.381873,0.0934075,0.397813,0.670782,0.0624766,0.783083,0.475523,0.206254,0.429028,0.818345,0.639991,0.31077,0.359232,0.627316,0.225948,0.683996,0.303886,0.586641,0.382945,0.722308,0.998895,0.906235,0.188744,0.1905,0.208874,0.370565,0.743855,0.705479,0.970528,0.209545,0.859768,0.13288,0.684864,0.069557,0.968149,0.054795,0.940344,0.171949,0.79411,0.571321,0.342064,0.623788,0.931623,0.886819,0.554526,0.260993,0.149209,0.0696462,0.143527,0.0301321,0.930496,0.95153,0.0988984,0.474879,0.156926,0.87924,0.889445,0.272625,0.766919,0.363486,0.440972,0.526649,0.0595405,0.0800756,0.351599,0.306278,0.377487,0.312571,0.874372,0.249854,0.616571,0.887881,0.255856,0.389717,0.638531,0.990912,0.911534,0.506797,0.164392,0.00306565,0.587899,0.0663102,0.410861,0.145102,0.0230486,0.425476,0.0954121,0.819754,0.716099,0.353691,0.843625,0.14101,0.0348849,0.493378,0.813068,0.782195,0.387838,0.756079,0.412466,0.591047,0.827834,0.777669,0.95485,0.269118,0.139342,0.609961,0.595995,0.796814,0.861562,0.677971,0.182145,0.712457,0.889678,0.776223,0.772555,0.928535,0.213241,0.894978,0.774195,0.40111,0.871733,0.94575,0.131,0.0620815,0.539623,0.488014,0.401124,0.507886,0.981813,0.755055,0.0146858,0.0606025,0.189616,0.53772,0.0806157,0.506647,0.553845,0.525987,0.0677897,0.749724,0.0242314,0.272401,0.635413,0.645174,0.108631,0.386898,0.979306,0.00275785,0.312784,0.153474,0.965531,0.693637,0.923938,0.726384,0.0303607,0.698372,0.483475,0.294771,0.396827,0.527867,0.420057,0.258562,0.328043,0.111305,0.872817,0.779027,0.592301,0.735696,0.00789332,0.712823,0.795865,0.47419,0.246697,0.276081,0.262745,0.263061,0.530506,0.155051,0.0847893,0.777544,0.724495,0.299123,0.608828,0.819028,0.954094,0.683164,0.236578,0.777202,0.598708,0.20515,0.0671654,0.262315,0.354167,0.107024,0.802665,0.109252,0.0896732,0.549468,0.639746,|0.0566718,0.973092,0.434319,0.618618,0.114649,0.341034,0.850509,0.954073,0.989278,0.185322,0.597601,0.575314,0.503192,0.429667,0.12074,0.891946,0.688187,0.393723,0.182838,0.319125,0.853685,0.398903,0.861492,0.893222,0.979228,0.360693,0.183412,0.86863,0.524731,0.342599,0.2548,0.437573,0.0391011,0.881849,0.590638,0.317281,0.591023,0.238709,0.37285,0.807191,0.490836,0.0561128,0.182717,0.181228,0.946199,0.930505,0.605682,0.31669,0.823874,0.76551,0.779527,0.414519,0.701386,0.260028,0.257266,0.546034,0.438603,0.757709,0.407945,0.265535,0.611494,0.098132,0.759411,0.0312724,0.582352,0.852737,0.991343,0.833038,0.921185,0.211615,0.572867,0.237628,0.708772,0.993632,0.500197,0.881925,0.669596,0.555609,0.740762,0.553644,0.981655,0.401193,0.65928,0.821226,0.0538197,0.374979,0.100701,0.0451062,0.518061,0.063958,0.0982132,0.527072,0.672283,0.595377,0.551889,0.46838,0.425818,0.82481,0.443143,0.632646,0.707759,0.107435,0.439175,0.403439,0.961861,0.979045,0.193697,0.925714,0.522336,0.359357,0.520475,0.623561,0.599341,0.639688,0.546795,0.520025,0.140845,0.750939,0.588978,0.638108,0.91173,0.653343,0.130179,0.353887,0.329332,0.444844,0.931462,0.976895,0.318655,0.665542,0.584646,0.52402,0.744728,0.595568,0.66374,0.687647,0.065198,0.854971,0.541245,0.805897,0.157313,0.537101,0.620716,0.126524,0.511946,0.35592,0.935483,0.845244,0.438053,0.301058,0.287098,0.736933,0.987749,0.73341,0.215841,0.127293,0.642889,0.379639,0.42891,0.732406,0.99551,0.897633,0.453507,0.107959,0.316331,0.137096,0.243122,0.246608,0.709357,0.890858,0.758786,0.939951,0.889115,0.756096,0.900848,0.959488,0.994345,0.319077,0.937627,0.530242,0.373914,0.0980808,0.460176,0.208183,0.670347,0.364528,0.611542,0.0770342,0.386068,0.207526,0.368716,0.538646,0.0205072,0.707566,0.756912,0.828665,0.659376,0.917689,0.0510674,0.562098,0.848372,0.537033,0.894876,0.488518,0.723106,0.450795,0.165836,0.140779,0.448207,0.667777,0.327975,0.704264,0.796369,0.440023,0.525821,0.231254,0.314101,0.264996,0.0810538,0.165645,0.0497152,0.26971,0.826901,0.430058,0.0978099,0.552295,0.415448,0.121972,0.0218877,0.108704,0.518103,0.574997,0.569267,0.638573,0.316416,0.18847,0.858261,0.330609,0.95589,0.643172,0.955615,0.457218,0.0209049,0.124349,0.962869,0.648453,0.610004,0.139171,0.0108793,0.13804,0.0145438,0.637911,0.587374,0.723565,0.747433,0.504229,0.686189,0.769033,0.899634,0.933922,0.0652589,0.655835,0.89069,0.883181,0.707483,0.677167,0.109751,0.719496,0.999851,0.71106,0.841159,0.20519,0.530557,0.41507,0.293151,0.793613,0.795284,0.190368,0.812312,0.504961,0.0585482,0.886581,0.579611,0.456556,0.587935,0.517461,0.87301,0.523238,0.231925,0.316676,0.259861,0.919935,0.0120702,0.392266,0.477039,0.900827,0.61297,0.719051,0.60648,0.638705,0.764557,0.114735,0.010472,0.446303,0.0532078,0.178398,0.244628,0.480179,0.237779,0.146002,0.227649,0.524963,0.538952,0.793144,0.826414,0.327435,0.392852,0.879625,0.100174,0.883081,0.515389,0.173512,0.35935,0.241885,0.412351,0.464377,0.339769,0.338323,0.565579,0.755413,0.495301,0.136967,0.866228,0.69422,0.994326,0.294744,0.762537,0.81153,0.28558,0.675472,0.603666,0.180267,0.59537,0.457535,0.721543,0.478136,0.601266,0.680255,0.735021,0.9848,0.514269,0.659065,0.163247,0.491393,0.854611,0.16284,0.0406132,0.330327,0.131808,0.390511,0.122117,0.85886,0.52035,0.209351,0.559892,0.2741,0.113115,0.97074,0.839534,0.972711,0.126204,0.540625,0.886765,0.468296,0.294486,0.0995929,0.370804,0.723569,0.298394,0.795277,0.573687,0.673411,0.356383,0.460757,0.214161,0.266508,0.0145319,0.0110017,0.419343,0.72239,0.776165,0.368746,0.489641,0.205424,0.375568,0.667245,0.843873,0.620314,0.161826,0.924118,0.619188,0.700599,0.54815,0.522971,0.602429,0.821696,0.0942919,0.966008,0.487932,0.839097,0.529272,0.534041,0.548064,0.266182,0.345882,0.405108,0.203796,0.436343,0.13715,0.0141666,0.329033,0.743691,0.272104,0.196218,0.465168,0.548837,0.489169,0.552967,0.680636,0.718084,0.867164,0.995979,0.0637389,0.13674,0.677475,0.562753,0.3067,0.979663,0.412238,0.514369,0.954014,0.652713,0.380332,0.65257,0.217682,0.0937382,0.308711,0.435402,0.17868,0.659618,0.737207,0.221618,0.629712,0.312525,0.790411,0.129957,0.822637,0.455082,0.155319,0.978568,0.39764,0.473025,0.935846,0.429071,0.0823188,0.84608,0.179113,0.445345,0.686821,0.955817,0.580624,0.702108,0.886632,0.0183544,0.551444,0.193891,0.117588,0.575865,0.647331,0.608877,0.0859396,0.730557,0.16291,0.214095,0.674101,0.285928,0.156326,0.387324,0.0635674,0.0473825,0.890764,0.603622,0.752203,0.129973,0.0732428,0.063715,0.0415685,0.377391,0.0100644,0.860008,0.627134,0.293013,0.420075,0.313238,0.893228,0.712251,0.0452284,0.21682,0.808864,0.00878054,0.564407,0.263741,0.388784,0.467992,0.975262,0.411141,0.971736,0.597043,0.800963,0.955259,0.328911,0.358776,0.880087,0.452533,0.713571,0.751347,0.97812,0.0383081,0.153325,0.369623,0.448413,0.321329,0.105944,0.332695,0.86671,0.729889,0.032311,0.435155,0.416653,0.155439,0.55407,0.365532,0.790865,0.371398,0.935849,0.574039,0.330007,0.0900378,0.688763,0.741445,0.827344,0.126861,0.427363,0.460857,0.819821,0.335561,0.961199,0.722961,0.30447,0.808473,0.349274,0.553856,0.490308,0.0580497,0.53519,0.354569,0.257737,0.630083,0.948385,0.075503,0.825529,0.775487,0.489966,0.141367,0.690476,0.901508,0.514334,0.885537,0.439985,0.416967,0.603243,0.0656646,0.670353,0.095367,0.404444,0.288732,0.429898,0.0896925,0.0455388,0.429551,0.529769,0.839535,0.116298,0.362723,0.364622,0.890763,0.635257,0.324487,0.343118,0.912251,0.272808,0.276822,0.206142,0.887965,0.167626,0.548279,0.269831,0.810838,0.954741,0.79573,0.934063,0.44698,0.510114,0.88502,0.0518923,0.828334,0.622278,0.955577,0.56294,0.369421,0.625357,0.986327,0.377891,0.88662,0.868852,0.591194,0.478575,0.71216,0.250762,0.683124,0.677231,0.771822,0.661642,0.16716,0.574699,0.908269,0.673143,0.0562601,0.718632,0.537778,0.0573455,0.935154,0.640194,0.00437939,0.313072,0.775323,0.47281,0.664165,0.769194,0.436775,0.874078,0.849713,0.331932,0.248893,0.0506192,0.646933,0.619695,0.819533,0.684914,0.798231,0.436276,0.311091,0.0022583,0.570659,0.0929717,0.76955,0.756172,0.109548,0.491499,0.31048,0.623058,0.752763,0.025476,0.0313526,0.558998,0.0776806,0.456865,0.929769,0.546808,0.74946,0.346914,0.0521841,0.610086,0.795408,0.398136,0.0691282,0.774295,0.083724,0.0827175,0.360326,0.681448,0.394308,0.545733,0.0954771,0.25909,0.394757,0.500625,0.531556,0.799833,0.332587,0.0467092,0.165024,0.997437,0.6767,0.544376,0.954328,0.195706,0.365121,0.743265,0.253426,0.765235,0.574529,0.293832,0.342546,0.0178168,0.358669,0.662754,0.816462,0.55673,0.339196,0.617357,0.579756,0.50454,0.414885,0.242564,0.643363,0.166952,0.231362,0.489525,0.341646,0.935097,0.441917,0.252381,0.371437,0.679047,0.359622,0.575095,0.46898,0.636067,0.871785,0.21516,0.837738,0.482593,0.561219,0.139666,0.68812,0.82994,0.493358,0.278279,0.183102,0.0250549,0.39934,0.0148881,0.0310702,0.10105,0.163512,0.916619,0.850223,0.938994,0.0147649,0.506278,0.0414059,0.215072,0.215169,0.972661,0.638996,0.650878,0.545904,0.686461,0.0905079,0.885931,0.644869,0.366091,0.130143,0.189629,0.603526,0.293462,0.67406,0.188959,0.263865,0.963323,0.719629,0.381206,0.04589,0.699503,0.439758,0.364889,0.753313,0.0192133,0.200037,0.4829,0.0884441,0.266508,0.875324,0.96553,0.266482,0.565881,0.348371,0.602159,0.0425432,0.691236,0.796913,0.138725,0.439212,0.838089,0.40374,0.286916,0.465561,0.590347,0.38742,0.693925,0.134061,0.379378,0.972609,0.369704,0.796439,0.13594,0.103595,0.662154,0.60264,0.793342,0.0561065,0.560521,0.0817368,0.529543,0.604603,0.817708,0.752056,0.846003,0.580693,0.817779,0.634937,0.821078,0.13434,0.887886,0.677075,0.243117,0.946172,0.193604,0.103314,0.822316,0.748433,0.982947,0.138455,0.479226,0.419777,0.437105,0.931104,0.390311,0.0753328,0.0911208,0.12626,0.765639,0.394988,0.84809,0.213628,0.326896,0.145179,0.60246,0.514884,0.55707,0.4282,0.034789,0.878363,0.208067,0.797091,0.209652,0.353386,0.0124502,0.148852,0.45526,0.837355,0.792274,0.44412,0.230868,0.644396,0.603072,0.95152,0.540361,0.833698,0.241463,0.572936,0.97301,0.462989,0.599652,0.982355,0.812257,0.748252,0.391137,0.395542,0.708554,0.740249,0.975482,0.0565147,0.549611,0.592333,0.466011,0.934906,0.41811,0.530645,0.573493,0.533369,0.105157,0.869001,0.337087,0.493806,0.197565,0.413404,0.161549,0.684254,0.794751,0.462332,0.660736,0.0861674,0.611553,0.236585,0.619513,0.755941,0.40116,0.0480767,0.0509568,0.174114,0.532705,0.840737,0.523024,0.595373,0.106555,0.601411,0.44044,0.645009,0.05657,0.589893,0.664701,0.596857,0.0122504,0.052678,0.81752,0.607272,0.668303,0.660678,0.867654,0.1764,0.0683391,0.438631,0.972639,0.934225,0.838016,0.653147,0.0448948,0.318232,0.81409,0.360387,0.706797,0.639274,0.691064,0.52389,0.406621,0.319949,0.435786,0.0287012,0.352838,0.252465,0.94013,0.746402,0.0222815,0.374319,0.501912,0.636866,0.84783,0.437659,0.152221,0.726225,0.920867,0.155118,0.527459,0.763707,0.4949,0.554569,0.327478,0.800573,0.706167,0.991952,0.0558751,0.27337,0.93918,0.127479,0.174862,0.933433,0.388925,0.0907779,0.847176,0.837756,0.0372741,0.683557,0.674495,0.771982,0.0734832,0.812896,0.714936,0.474584,|0.660025,0.420829,0.921028,0.739793,0.136497,0.548757,0.345734,0.978878,0.63281,0.630089,0.169758,0.661938,0.320458,0.654892,0.410352,0.0127247,0.44874,0.302087,0.369608,0.449311,0.287145,0.591779,0.801518,0.962844,0.701464,0.856988,0.633978,0.459179,0.34667,0.743244,0.532715,0.465744,0.436731,0.384864,0.395984,0.891222,0.797991,0.530092,0.891222,0.449281,0.827843,0.80366,0.0698482,0.244595,0.316766,0.694037,0.552,0.649919,0.819235,0.260722,0.590707,0.160128,0.651751,0.386727,0.622036,0.121536,0.993759,0.561872,0.599005,0.973793,0.231948,0.458362,0.760699,0.153088,0.554121,0.248763,0.661717,0.182881,0.353301,0.303461,0.0138513,0.129701,0.858176,0.276561,0.748167,0.468871,0.613824,0.27571,0.0044446,0.0464578,0.148657,0.718596,0.307109,0.571076,0.0221303,0.231399,0.0194247,0.530828,0.101203,0.318978,0.54058,0.475895,0.0094772,0.281197,0.988408,0.744648,0.26624,0.272369,0.874581,0.562156,0.103919,0.576272,0.451251,0.931631,0.651887,0.209109,0.503679,0.803368,0.503923,0.122593,0.542313,0.930928,0.375563,0.671909,0.0727566,0.301835,0.921027,0.997205,0.442856,0.976102,0.776516,0.0807699,0.810973,0.308306,0.317222,0.507085,0.276988,0.468507,0.135893,0.845419,0.783782,0.613165,0.860913,0.555494,0.233746,0.114101,0.274335,0.924964,0.702276,0.830599,0.0228392,0.228644,0.0322435,0.232864,0.734735,0.697185,0.25034,0.214255,0.936067,0.856783,0.728814,0.720391,0.128024,0.669474,0.732906,0.429561,0.778483,0.550153,0.814771,0.925794,0.577522,0.270573,0.941014,0.392601,0.461385,0.236345,0.440705,0.492845,0.977302,0.545207,0.709932,0.460398,0.10283,0.119202,0.00353861,0.580983,0.91082,0.64602,0.358676,0.787749,0.614392,0.693049,0.674028,0.598082,0.0540364,0.668151,0.0351685,0.034681,0.254949,0.980183,0.983581,0.748101,0.0531248,0.519991,0.247314,0.264515,0.0236218,0.557477,0.633241,0.108035,0.264669,0.720713,0.170205,0.55448,0.0746346,0.000612676,0.850992,0.477035,0.204011,0.907469,0.820704,0.762804,0.555956,0.0262818,0.709695,0.24215,0.435537,0.387754,0.760918,0.634458,0.0157893,0.424007,0.828038,0.0589988,0.630599,0.502698,0.532715,0.769908,0.961753,0.445677,0.244136,0.486421,0.257602,0.263219,0.861351,0.303721,0.925805,0.420217,0.289448,0.894127,0.470225,0.692759,0.511031,0.109557,0.841062,0.723394,0.715096,0.780829,0.977257,0.221461,0.226849,0.288593,0.553931,0.676463,0.0311807,0.828847,0.332728,0.774524,0.275402,0.566089,0.140452,0.627505,0.759391,0.691712,0.782151,0.766607,0.554238,0.110815,0.214526,0.424223,0.662573,0.898861,0.446621,0.725538,0.413,0.100596,0.616075,0.997275,0.858245,0.80605,0.570662,0.0943955,0.421424,0.827736,0.0662625,0.333701,0.324781,0.326391,0.674514,0.292674,0.721266,0.187028,0.848267,0.635328,0.603285,0.311922,0.20547,0.864917,0.608383,0.853302,0.319522,0.980479,0.796444,0.289563,0.197127,0.264404,0.606802,0.587645,0.743153,0.214214,0.436934,0.467659,0.520422,0.262015,0.455548,0.905671,0.942943,0.77487,0.676798,0.304264,0.229443,0.543488,0.663317,0.210721,0.0143287,0.486907,0.709171,0.604586,0.145039,0.629633,0.323149,0.767964,0.397246,0.128525,0.168128,0.213885,0.962359,0.13459,0.159309,0.531448,0.680425,0.794669,0.765215,0.092692,0.0252326,0.974479,0.0316127,0.598844,0.251922,0.121166,0.428535,0.300012,0.323914,0.962937,0.211844,0.36823,0.827475,0.260225,0.0723727,0.226222,0.733387,0.590414,0.0555067,0.188096,0.216356,0.553994,0.77996,0.997945,0.611575,0.282598,0.523025,0.81837,0.442417,0.828968,0.859687,0.281019,0.51086,0.989687,0.612657,0.278744,0.0320029,0.0292178,0.732983,0.011059,0.126504,0.630327,0.605807,0.430155,0.879865,0.0241433,0.385341,0.538798,0.806687,0.963584,0.977985,0.11682,0.301209,0.558398,0.990238,0.84019,0.487335,0.973842,0.912707,0.95952,0.392559,0.582171,0.869931,0.566085,0.577018,0.247245,0.586762,0.757919,0.71626,0.883013,0.406053,0.0931975,0.970312,0.754183,0.946115,0.737298,0.561809,0.167406,0.189011,0.355576,0.973326,0.555702,0.629129,0.932818,0.166616,0.313111,0.00921893,0.469407,0.886222,0.436423,0.732996,0.844205,0.291353,0.802399,0.899183,0.770793,0.438335,0.204612,0.0758845,0.171985,0.277758,0.86849,0.708504,0.782054,0.560408,0.791373,0.599883,0.778183,0.129653,0.97674,0.270972,0.767163,0.0187382,0.533319,0.876873,0.123781,0.169272,0.803837,0.873208,0.176692,0.318739,0.353944,0.725436,0.839313,0.0695188,0.124828,0.233155,0.780639,0.0814056,0.549951,0.78894,0.846717,0.473756,0.543682,0.613899,0.357087,0.661744,0.100783,0.60784,0.0927909,0.134943,0.685327,0.942373,0.103802,0.946662,0.326157,0.670529,0.0440712,0.495363,0.920032,0.863439,0.765778,0.388493,0.742698,0.810428,0.914482,0.0236564,0.591398,0.665288,0.654195,0.0858846,0.541314,0.382203,0.780269,0.728295,0.566504,0.30229,0.532795,0.274692,0.946232,0.745012,0.0128617,0.664733,0.785314,0.0376425,0.500721,0.767518,0.153431,0.666765,0.169152,0.172953,0.548936,0.0212166,0.555453,0.835644,0.371042,0.843095,0.0201276,0.615891,0.557533,0.768507,0.279551,0.471991,0.467773,0.808407,0.442625,0.348689,0.297414,0.254425,0.64779,0.505209,0.854054,0.843186,0.291443,0.655186,0.756277,0.232552,0.0424271,0.249384,0.421389,0.907166,0.57152,0.260847,0.579427,0.119834,0.882432,0.633899,0.0176346,0.344283,0.957817,0.323872,0.934522,0.744794,0.609755,0.626556,0.308557,0.890132,0.0815582,0.542566,0.36342,0.414199,0.691966,0.22143,0.839266,0.0452219,0.153803,0.710748,0.686726,0.127802,0.0279174,0.913592,0.911322,0.24544,0.0306589,0.31951,0.563995,0.964314,0.0965047,0.719964,0.844883,0.405749,0.481531,0.812344,0.73216,0.708258,0.0141169,0.649408,0.794368,0.335511,0.727168,0.524545,0.924383,0.253784,0.549428,0.265004,0.616888,0.700455,0.21956,0.0811667,0.504076,0.763712,0.183017,0.627489,0.991719,0.588287,0.993492,0.442892,0.148285,0.177902,0.879534,0.349028,0.445245,0.709655,0.743635,0.970121,0.596714,0.837064,0.11037,0.862696,0.526919,0.810292,0.515652,0.124898,0.806299,0.832928,0.860263,0.263157,0.0840338,0.596215,0.951268,0.824124,0.609975,0.401573,0.562155,0.214623,0.383204,0.0802262,0.396286,0.769685,0.989656,0.626779,0.605077,0.124004,0.101047,0.417316,0.855441,0.547784,0.210847,0.541969,0.817652,0.894173,0.201634,0.585484,0.204937,0.30469,0.27289,0.164269,0.525001,0.327392,0.588886,0.545061,0.261265,0.326907,0.600209,0.707465,0.379887,0.149246,0.868988,0.04232,0.222191,0.866023,0.347757,0.945131,0.835798,0.801119,0.584799,0.643204,0.97782,0.0144983,0.437977,0.073555,0.115247,0.699931,0.211984,0.814571,0.410431,0.763512,0.285615,0.58999,0.87323,0.253027,0.218748,0.781155,0.105595,0.725408,0.708306,0.501533,0.462742,0.354913,0.0056414,0.583528,0.279203,0.231,0.750884,0.323435,0.538657,0.344418,0.674827,0.818289,0.110764,0.428308,0.113244,0.359594,0.279703,0.943127,0.166592,0.976642,0.0678949,0.864492,0.171965,0.281092,0.636217,0.374899,0.420535,0.161116,0.538302,0.398408,0.26249,0.317164,0.100316,0.527693,0.776199,0.576453,0.32613,0.899815,0.164806,0.743006,0.488001,0.218835,0.0919796,0.610844,0.708817,0.879729,0.807074,0.241936,0.307481,0.0103431,0.812327,0.167789,0.564302,0.927013,0.633789,0.614242,0.970028,0.0755488,0.284755,0.900418,0.237372,0.155855,0.281408,0.308561,0.136106,0.0692981,0.59389,0.0247241,0.43923,0.925891,0.0772783,0.980864,0.943493,0.360337,0.791909,0.639338,0.160701,0.662127,0.640294,0.457,0.549834,0.955528,0.810591,0.0968049,0.438061,0.184544,0.914037,0.611068,0.592405,0.0387018,0.237932,0.428797,0.474243,0.0878255,0.372773,0.520227,0.257581,0.850402,0.998033,0.0907584,0.047929,0.233089,0.248303,0.974303,0.783175,0.448622,0.409079,0.565257,0.694157,0.672509,0.179582,0.664254,0.913981,0.377577,0.0132887,0.733035,0.505584,0.133804,0.214084,0.396366,0.729739,0.95692,0.477273,0.850617,0.936973,0.99978,0.538926,0.874711,0.34406,0.77059,0.432237,0.372368,0.0877818,0.934463,0.836284,0.0201326,0.993699,0.77763,0.0482216,0.357947,0.0361935,0.570327,0.11095,0.813446,0.8849,0.634338,0.221924,0.178389,0.0693287,0.632127,0.699286,0.210377,0.532106,0.526871,0.0753074,0.830664,0.952909,0.515597,0.289114,0.729141,0.413417,0.696019,0.0550682,0.39732,0.404615,0.000883043,0.43782,0.515658,0.899612,0.246161,0.922237,0.102386,0.96124,0.00262052,0.746964,0.61924,0.49011,0.800346,0.364582,0.924979,0.401189,0.639785,0.988123,0.321545,0.0854586,0.32876,0.34651,0.844152,0.963768,0.760453,0.391636,0.579081,0.506244,0.0851243,0.822687,0.494865,0.531804,0.801062,0.241136,0.151506,0.991758,0.486037,0.136738,0.230753,0.4811,0.412157,0.542164,0.601707,0.334871,0.745192,0.432361,0.404896,0.95435,0.0944497,0.941514,0.216861,0.970335,0.0908047,0.566354,0.817876,0.883855,0.742847,0.983509,0.740893,0.477839,0.681263,0.805561,0.474547,0.119472,0.703399,0.34205,0.452618,0.611082,0.996083,0.545057,0.864782,0.517018,0.420136,0.657144,0.66086,0.84622,0.786245,0.935869,0.366625,0.0535793,0.81088,0.670623,0.840279,0.369795,0.879729,0.361787,0.13948,0.437796,0.0442299,0.918518,0.263497,0.938897,0.0765569,0.2353,0.341253,0.538528,0.645846,0.45854,0.0381425,0.674218,0.837628,0.591778,0.00969529,0.115571,0.875693,0.0825908,0.194265,0.836249,0.65046,0.943276,0.119973,0.144832,0.998807,0.942241,0.795835,0.463346,0.0792284,0.945053,0.948673,0.725448,0.00880396,0.476344,0.655038,0.103618,|0.801849,0.274041,0.581734,0.95425,0.0811079,0.239971,0.249457,0.16009,0.613296,0.36151,0.593748,0.760869,0.217105,0.475829,0.624718,0.29125,0.224016,0.946551,0.960455,0.302049,0.0149057,0.817156,0.516407,0.512376,0.623019,0.0911032,0.00657779,0.304059,0.787248,0.575699,0.118962,0.522667,0.832607,0.839493,0.744085,0.135912,0.472351,0.783438,0.909937,0.263708,0.0087415,0.176625,0.935161,0.507933,0.196746,0.295637,0.946272,0.146261,0.0713311,0.221317,0.52762,0.120025,0.647037,0.704127,0.433988,0.898977,0.487128,0.0201135,0.0644968,0.55714,0.987831,0.630497,0.727364,0.0917534,0.945896,0.962098,0.472462,0.734461,0.394516,0.404567,0.0806367,0.143596,0.685331,0.950049,0.684975,0.285949,0.885935,0.386174,0.0138856,0.392419,0.387762,0.235474,0.82613,0.469924,0.768314,0.119917,0.750851,0.923143,0.202176,0.0420841,0.94736,0.615002,0.597272,0.340201,0.831057,0.908293,0.761524,0.123251,0.0462679,0.91859,0.917425,0.576407,0.940871,0.453764,0.522891,0.015067,0.57724,0.733105,0.548549,0.465759,0.901298,0.737661,0.31832,0.240601,0.5093,0.523289,0.162565,0.378088,0.00814557,0.843395,0.56939,0.807354,0.116226,0.655066,0.598583,0.0635223,0.258396,0.936001,0.934564,0.652322,0.526814,0.83446,0.910418,0.812759,0.106069,0.020815,0.130296,0.674627,0.830598,0.74527,2.93255e-05,0.496104,0.622829,0.215715,0.0117377,0.558718,0.0790055,0.189042,0.647547,0.354443,0.361868,0.284919,0.409302,0.379432,0.0546045,0.119089,0.394029,0.756304,0.766151,0.612304,0.540634,0.650713,0.322579,0.404971,0.929771,0.0254066,0.9939,0.367345,0.451765,0.679226,0.783615,0.906831,0.695159,0.546075,0.174932,0.0087024,0.314994,0.920952,0.858806,0.891254,0.12203,0.669927,0.419724,0.674238,0.645263,0.475301,0.760514,0.784044,0.0582467,0.941865,0.125199,0.414849,0.838254,0.867564,0.369921,0.0872236,0.827172,0.496738,0.843877,0.3134,0.948991,0.193516,0.0880029,0.359533,0.00562805,0.469177,0.331752,0.668987,0.266731,0.503433,0.0709224,0.781972,0.846695,0.964023,0.58919,0.781601,0.462483,0.175645,0.71841,0.999944,0.640805,0.29319,0.911819,0.231057,0.505312,0.00439453,0.0576244,0.160858,0.299917,0.560819,0.427382,0.176723,0.730651,0.975952,0.889737,0.182608,0.402027,0.473608,0.694376,0.310061,0.771516,0.348027,0.725055,0.92325,0.928069,0.353257,0.203603,0.912265,0.972162,0.422865,0.0923401,0.493293,0.556187,0.369948,0.832143,0.539562,0.841653,0.691512,0.250482,0.819152,0.286903,0.913108,0.215389,0.752004,0.879491,0.312405,0.36945,0.83868,0.122268,0.947419,0.76971,0.190462,0.280524,0.883252,0.775618,0.65814,0.508483,0.893717,0.785809,0.151365,0.871986,0.952497,0.601814,0.78401,0.485436,0.759109,0.169895,0.901361,0.763117,0.951698,0.895454,0.450766,0.409938,0.698437,0.0164832,0.0479211,0.888184,0.354351,0.751633,0.904983,0.303708,0.0498389,0.549949,0.762953,0.681299,0.870065,0.937903,0.380212,0.440358,0.238029,0.772965,0.698427,0.317159,0.196528,0.408076,0.442137,0.792294,0.270573,0.440374,0.74229,0.955062,0.128198,0.816975,0.629225,0.101177,0.0504844,0.704433,0.423965,0.898226,0.0966751,0.19509,0.0410243,0.866731,0.783578,0.344457,0.106932,0.455919,0.793196,0.32063,0.43348,0.262143,0.927052,0.879357,0.896802,0.637924,0.509368,0.646398,0.553635,0.955323,0.0986108,0.342645,0.137114,0.605514,0.621292,0.289292,0.772324,0.861769,0.123829,0.390654,0.595316,0.415972,0.418907,0.810432,0.706824,0.898785,0.708905,0.291444,0.396778,0.099537,0.0865555,0.286277,0.470906,0.477614,0.954704,0.522851,0.540585,0.942741,0.518297,0.855394,0.177342,0.394125,0.166035,0.102097,0.399336,0.72219,0.194174,0.884016,0.376662,0.974655,0.489174,0.172177,0.466921,0.884306,0.383747,0.808043,0.066754,0.726417,0.454236,0.887941,0.362607,0.812955,0.656908,0.28772,0.0278279,0.756202,0.00215322,0.237631,0.29006,0.31933,0.700057,0.386734,0.147526,0.0764179,0.612075,0.0126112,0.818879,0.324197,0.887659,0.40197,0.223735,0.725515,0.476036,0.515415,0.839759,0.218834,0.655736,0.796238,0.263755,0.123887,0.617724,0.589172,0.0831912,0.638593,0.154621,0.036641,0.579202,0.709894,0.435498,0.599646,0.922523,0.787077,0.154078,0.767717,0.705777,0.518065,0.0133315,0.0988849,0.326809,0.14291,0.638498,0.892395,0.338024,0.291987,0.896075,0.343563,0.0925673,0.442397,0.739199,0.79914,0.954413,0.913602,0.870074,0.488865,0.72015,0.754679,0.870288,0.633816,0.786722,0.933436,0.932167,0.3349,0.593761,0.140548,0.414936,0.162454,0.467914,0.241957,0.425964,0.246449,0.711081,0.3743,0.444268,0.730509,0.153148,0.116095,0.628495,0.161911,0.1386,0.545317,0.20077,0.996,0.804472,0.460459,0.371624,0.663639,0.125099,0.361359,0.482096,0.881318,0.584905,0.953298,0.161258,0.232705,0.280669,0.906666,0.892968,0.749625,0.049915,0.188067,0.173181,0.606103,0.18007,0.122159,0.222761,0.542644,0.551901,0.253202,0.167574,0.945793,0.366397,0.95537,0.230403,0.535271,0.740773,0.88499,0.980484,0.46769,0.573865,0.930392,0.809147,0.038169,0.770411,0.302892,0.926031,0.779555,0.456923,0.858178,0.0228239,0.0247037,0.181425,0.643161,0.848531,0.833955,0.0217783,0.473286,0.341066,0.709968,0.599658,0.999612,0.703988,0.611036,0.690507,0.0596122,0.280865,0.576512,0.887911,0.672605,0.662799,0.0496212,0.0567209,0.616333,0.63264,0.00323671,0.34577,0.847841,0.0612696,0.29104,0.453806,0.936091,0.214133,0.252192,0.598281,0.897311,0.932436,0.620611,0.433024,0.409906,0.381734,0.859818,0.693166,0.0566037,0.341772,0.392716,0.178162,0.350595,0.430578,0.885279,0.576525,0.651234,0.898361,0.488717,0.0438828,0.515477,0.833851,0.969981,0.929459,0.552284,0.574351,0.308135,0.422115,0.201248,0.784911,0.150643,0.528064,0.709977,0.102537,0.802606,0.247818,0.198781,0.321651,0.786071,0.430359,0.22606,0.85039,0.16952,0.65009,0.994304,0.311654,0.357142,0.732536,0.296058,0.0392367,0.0949949,0.997601,0.40422,0.929034,0.460774,0.28859,0.325257,0.986265,0.599547,0.75787,0.448227,0.899926,0.498946,0.778517,0.396186,0.83559,0.101242,0.236949,0.387741,0.807854,0.510008,0.256965,0.399779,0.0994228,0.0258984,0.201959,0.224145,0.076993,0.857993,0.540219,0.18676,0.530428,0.893749,0.425832,0.973232,0.630383,0.0536844,0.0853073,0.218891,0.423995,0.464787,0.324372,0.536225,0.730139,0.85066,0.296921,0.85496,0.438157,0.982127,0.951032,0.754459,0.370196,0.601506,0.129975,0.657751,0.597094,0.905966,0.378828,0.491442,0.358569,0.651705,0.275376,0.571694,0.972078,0.697132,0.693348,0.732766,0.76705,0.0349061,0.372949,0.813114,0.226457,0.578264,0.0463869,0.19319,0.145136,0.381399,0.486319,0.170926,0.709913,0.874325,0.650918,0.213913,0.208915,0.828159,0.0186458,0.252438,0.0276132,0.964017,0.529181,0.650489,0.100212,0.456493,0.198148,0.303695,0.72506,0.674634,0.834416,0.0144619,0.619917,0.499432,0.803498,0.632356,0.511561,0.309152,0.347269,0.920405,0.860231,0.764128,0.35672,0.69746,0.116481,0.654851,0.173786,0.778368,0.805943,0.0848223,0.769609,0.0864346,0.0746669,0.85567,0.794221,0.651833,0.184486,0.364017,0.579101,0.243005,0.735226,0.711892,0.83613,0.149102,0.136816,0.0652721,0.281203,0.172298,0.321578,0.0222078,0.285963,0.922293,0.530134,0.00912249,0.90998,0.952576,0.482386,0.183439,0.811237,0.97418,0.380796,0.594107,0.870886,0.70789,0.933409,0.325973,0.158148,0.628926,0.140374,0.514235,0.41426,0.297689,0.0242808,0.0624886,0.109506,0.523083,0.420506,0.910258,0.583856,0.0485719,0.133131,0.990827,0.945979,0.277181,0.425746,0.714337,0.654222,0.87062,0.371454,0.43005,0.0352734,0.99378,0.40601,0.84562,0.839656,0.467165,0.418492,0.550221,0.010334,0.503484,0.31129,0.801348,0.652234,0.862561,0.29938,0.201847,0.901024,0.277515,0.283952,0.714509,0.482658,0.326951,0.492125,0.366752,0.823865,0.417234,0.628883,0.102867,0.326552,0.744737,0.178564,0.129779,0.0216063,0.0529506,0.754441,0.188717,0.650221,0.584257,0.200802,0.266961,0.580624,0.458901,0.216877,0.971955,0.345146,0.834923,0.365815,0.213166,0.425803,0.0902446,0.464382,0.876367,0.977815,0.32838,0.0778283,0.135499,0.420052,0.633682,0.452002,0.00711316,0.00239676,0.44573,0.565031,0.674217,0.59823,0.997865,0.504746,0.228509,0.253042,0.455423,0.44561,0.177321,0.475647,0.508938,0.478343,0.771917,0.654005,0.555994,0.901634,0.555719,0.589951,0.416111,0.530607,0.641396,0.741343,0.530108,0.471084,0.749829,0.315261,0.0796723,0.964055,0.362908,0.703677,0.358025,0.299487,0.584206,0.555084,0.168191,0.944608,0.581418,0.280931,0.60937,0.411067,0.759978,0.939207,0.501468,0.992298,0.138922,0.83404,0.234503,0.322942,0.0694394,0.219143,0.609125,0.277126,0.47373,0.406958,0.731484,0.250339,0.820646,0.970419,0.165135,0.969247,0.8555,0.618251,0.0480886,0.149445,0.189884,0.887094,0.247262,0.524173,0.0701137,0.534075,0.117752,0.957283,0.111155,0.769482,0.829857,0.760056,0.00991184,0.779994,0.921034,0.737515,0.583513,0.10964,0.0718746,0.919468,0.491201,0.0365884,0.627359,0.0473204,0.836191,0.801172,0.0454589,0.686584,0.743801,0.49399,0.746584,0.633873,0.135884,0.372151,0.144989,0.870878,0.350131,0.648319,0.856085,0.00816655,0.613041,0.660073,0.893496,0.737032,0.744454,0.662553,0.142057,0.187394,0.637146,0.438037,0.64399,0.506878,0.289476,0.258369,0.9727,0.774844,0.677912,0.934877,0.841987,0.108314,0.0373541,0.637759,0.212305,0.475629,0.258982,0.757381,0.97377,0.396795,0.55827,0.651523,0.78176,0.189921,0.427386,0.803852,|0.284317,0.194441,0.301613,0.404448,0.134265,0.054408,0.153699,0.2681,0.896977,0.775666,0.972242,0.775243,0.889919,0.0239109,0.0240669,0.230076,0.516799,0.791139,0.253694,0.132138,0.226853,0.185102,0.2613,0.965851,0.933229,0.631397,0.499871,0.773232,0.241144,0.240125,0.242047,0.129001,0.559803,0.544262,0.871979,0.675933,0.780088,0.0515381,0.621557,0.111055,0.0796553,0.871335,0.0866351,0.213113,0.62314,0.30052,0.795594,0.300454,0.0967913,0.161251,0.147891,0.0391877,0.353269,0.646154,0.514068,0.239337,0.221005,0.298167,0.383179,0.671467,0.265262,0.524462,0.842113,0.305898,0.398967,0.25876,0.546579,0.808034,0.801619,0.121759,0.407866,0.486236,0.689608,0.43173,0.140191,0.765282,0.238873,0.8104,0.897901,0.613622,0.129262,0.766212,0.0970938,0.0226968,0.827268,0.600486,0.844249,0.898523,0.0734363,0.660344,0.812893,0.770661,0.575273,0.523541,0.355214,0.203594,0.888137,0.829142,0.538305,0.207125,0.444865,0.781664,0.420099,0.497118,0.946242,0.338392,0.222485,0.905597,0.377416,0.807333,0.488496,0.117956,0.916918,0.914453,0.98146,0.0488388,0.422842,0.208277,0.24477,0.342483,0.862381,0.767007,0.26949,0.652098,0.458155,0.832568,0.317648,0.298962,0.487015,0.794582,0.825935,0.928734,0.166726,0.905192,0.125953,0.473988,0.722562,0.353528,0.502004,0.476812,0.823575,0.843606,0.94769,0.621245,0.305882,0.952664,0.425918,0.920631,0.537525,0.455417,0.814712,0.461026,0.760515,0.892081,0.0377002,0.711321,0.480961,0.510051,0.29827,0.789183,0.0547628,0.457737,0.0525255,0.75065,0.293248,0.65582,0.56486,0.750002,0.625129,0.314645,0.757138,0.87369,0.237026,0.278613,0.0678802,0.0532798,0.599159,0.135015,0.927057,0.877922,0.672442,0.640041,0.286532,0.318849,0.215664,0.174229,0.63177,0.548986,0.396264,0.123046,0.138025,0.481688,0.494857,0.340153,0.179617,0.764171,0.404774,0.539745,0.105139,0.180645,0.775134,0.292428,0.300274,0.360946,0.81765,0.730249,0.511336,0.423475,0.169459,0.160603,0.752286,0.897356,0.655787,0.621909,0.697157,0.81585,0.590287,0.759395,0.496204,0.154064,0.303166,0.665517,0.286488,0.588987,0.662545,0.897488,0.476833,0.891981,0.3091,0.413405,0.126294,0.751002,0.610192,0.472561,0.376642,0.213694,0.690422,0.110038,0.770888,0.488644,0.72444,0.578314,0.337712,0.460991,0.188267,0.373449,0.348392,0.542113,0.800951,0.972266,0.937856,0.165092,0.592361,0.256959,0.621489,0.215042,0.507222,0.589605,0.625287,0.491262,0.7703,0.909482,0.894352,0.382497,0.641382,0.129841,0.152864,0.727219,0.695826,0.466383,0.895045,0.339289,0.838818,0.798198,0.828149,0.719056,0.906817,0.775547,0.218712,0.732642,0.0939579,0.492252,0.976399,0.514134,0.0349247,0.505467,0.67749,0.606971,0.481179,0.293585,0.0118194,0.254155,0.68836,0.0542693,0.531208,0.667797,0.270082,0.0611534,0.00565577,0.726409,0.575132,0.554586,0.713891,0.896933,0.776397,0.245117,0.914402,0.875285,0.28944,0.764407,0.436219,0.0129812,0.0144385,0.602499,0.563883,0.31429,0.244216,0.425134,0.395188,0.737578,0.55515,0.431017,0.601583,0.0638971,0.433651,0.313001,0.750798,0.307274,0.033444,0.0866648,0.0675713,0.915473,0.580436,0.825826,0.633837,0.210698,0.527973,0.878172,0.207169,0.293882,0.805163,0.428644,0.20912,0.259327,0.583667,0.54433,0.612532,0.778517,0.692046,0.683702,0.0857072,0.590727,0.226217,0.219462,0.492766,0.135111,0.492837,0.244525,0.312455,0.614108,0.61406,0.983353,0.753573,0.11885,0.874166,0.833605,0.217859,0.681177,0.448052,0.338014,0.220144,0.519857,0.500409,0.00364602,0.364984,0.131527,0.755879,0.267816,0.322799,0.141294,0.595426,0.372626,0.798596,0.731748,0.762413,0.958783,0.898949,0.893123,0.113474,0.677092,0.699266,0.987213,0.851977,0.131851,0.366322,0.00155956,0.587628,0.930797,0.637193,0.903825,0.897663,0.0644739,0.356403,0.0922217,0.907632,0.930079,0.403162,0.241614,0.669053,0.907983,0.915164,0.419645,0.33901,0.788162,0.998917,0.762589,0.577098,0.624248,0.740065,0.0392005,0.986155,0.675752,0.844152,0.108877,0.53402,0.601149,0.652218,0.58899,0.10506,0.233936,0.406358,0.100234,0.684922,0.204431,0.599996,0.544634,0.796727,0.585781,0.568455,0.423702,0.230486,0.611425,0.33836,0.0926976,0.430449,0.821834,0.471313,0.779474,0.490401,0.238506,0.830269,0.787858,0.0709259,0.962094,0.136749,0.476974,0.972843,0.970877,0.818689,0.358417,0.875062,0.732009,0.898588,0.727063,0.638698,0.47658,0.899966,0.281349,0.512883,0.0792389,0.0329836,0.288708,0.0554265,0.206223,0.690261,0.305734,0.53036,0.0364857,0.3719,0.273609,0.732791,0.438747,0.56348,0.84148,0.0340156,0.278688,0.517903,0.452211,0.691251,0.205742,0.975276,0.699053,0.479911,0.115467,0.814663,0.593541,0.0522537,0.848204,0.897446,0.140932,0.688555,0.0281461,0.953071,0.920853,0.866161,0.233907,0.471666,0.816441,0.295089,0.921986,0.386524,0.177402,0.526077,0.285106,0.787805,0.879286,0.0745474,0.0784124,0.179168,0.810277,0.547873,0.903912,0.108284,0.885705,0.786774,0.950646,0.10537,0.680573,0.250845,0.0946597,0.574232,0.628004,0.317861,0.708797,0.844167,0.307899,0.898222,0.6305,0.721033,0.667819,0.601627,0.244791,0.774092,0.502513,0.481475,0.632018,0.795441,0.66059,0.218438,0.77436,0.077444,0.173002,0.0957883,0.262964,0.455455,0.187329,0.0262055,0.101351,0.121812,0.530386,0.725481,0.963311,0.267756,0.514993,0.86564,0.901145,0.193158,0.105206,0.904836,0.147836,0.222509,0.832717,0.681771,0.976415,0.791888,0.599634,0.0245786,0.0830424,0.15758,0.444142,0.118169,0.563011,0.439594,0.848797,0.871287,0.336484,0.898639,0.0744717,0.719878,0.658647,0.440033,0.32047,0.65078,0.247518,0.982277,0.957095,0.153328,0.891638,0.554611,0.516916,0.639148,0.347331,0.132168,0.258416,0.4215,0.951983,0.64778,0.762971,0.591776,0.431631,0.383234,0.539393,0.653426,0.570056,0.518025,0.892702,0.135657,0.89521,0.229713,0.211079,0.689161,0.776273,0.28428,0.210195,0.530717,0.530166,0.0335702,0.124883,0.698893,0.932857,0.0217214,0.0617319,0.373901,0.602101,0.702788,0.235691,0.634224,0.546225,0.354763,0.572629,0.0575768,0.973539,0.121217,0.237463,0.777655,0.614037,0.275412,0.0503713,0.982911,0.0975141,0.489,0.715261,0.451162,0.0353025,0.898219,0.621683,0.512915,0.810235,0.359571,0.346559,0.962896,0.571782,0.803857,0.564628,0.967374,0.894061,0.472642,0.145302,0.774953,0.13156,0.0656173,0.14583,0.271692,0.622085,0.115497,0.422528,0.488556,0.267721,0.745063,0.52757,0.688916,0.0895812,0.679454,0.63564,0.345883,0.217983,0.330249,0.925157,0.680409,0.632285,0.437653,0.564249,0.895281,0.885532,0.312392,0.362624,0.911142,0.555429,0.932909,0.725204,0.446481,0.869594,0.498728,0.366005,0.560759,0.437718,0.337443,0.362623,0.92175,0.145244,0.00789976,0.0273248,0.883736,0.371644,0.408221,0.200808,0.675176,0.926293,0.81317,0.79455,0.658825,0.570204,0.172715,0.775769,0.776905,0.71636,0.441866,0.578057,0.52823,0.220431,0.259062,0.716642,0.0730375,0.867377,0.821613,0.85206,0.751167,0.318487,0.626965,0.799031,0.624677,0.27433,0.577944,0.185339,0.802426,0.792156,0.868207,0.353823,0.798659,0.0915566,0.516195,0.093326,0.0643324,0.40533,0.200794,0.609001,0.544542,0.374968,0.803246,0.458102,0.602722,0.485304,0.411679,0.94897,0.683461,0.800934,0.471574,0.310507,0.594745,0.701421,0.0963876,0.537754,0.136108,0.479632,0.20179,0.661248,0.566415,0.254053,0.221776,0.383373,0.329876,0.355049,0.794521,0.729179,0.391935,0.73017,0.814346,0.439493,0.343513,0.598519,0.543605,0.806444,0.915306,0.117777,0.750392,0.657466,0.57976,0.635727,0.424723,0.547819,0.46385,0.610438,0.391183,0.771751,0.389972,0.783667,0.709682,0.713476,0.0504121,0.529751,0.101683,0.373313,0.549406,0.655275,0.417523,0.671025,0.166022,0.255057,0.590448,0.111967,0.476536,0.628176,0.809377,0.561565,0.868149,0.302348,0.513068,0.899742,0.922774,0.423802,0.594413,0.948032,0.841802,0.825389,0.995889,0.709865,0.00293332,0.288339,0.899332,0.0543069,0.532923,0.419074,0.217779,0.397419,0.586139,0.57509,0.307501,0.457416,0.744306,0.894329,0.446111,0.595335,0.760592,0.0981454,0.787625,0.231016,0.359852,0.246657,0.227894,0.035364,0.793375,0.638188,0.713664,0.366772,0.980059,0.466455,0.895569,0.300769,0.450726,0.792532,0.803101,0.601869,0.139092,0.331964,0.720346,0.288898,0.152633,0.360172,0.939083,0.847254,0.645264,0.64474,0.152971,0.222079,0.227251,0.604467,0.12575,0.192042,0.811527,0.30721,0.272916,0.710932,0.250797,0.0311698,0.578046,0.219541,0.276599,0.390419,0.483947,0.929311,0.466511,0.997693,0.849957,0.720279,0.194794,0.85802,0.535491,0.656303,0.0598484,0.924272,0.72719,0.610664,0.773575,0.849443,0.418743,0.626048,0.561634,0.825276,0.0632048,0.633959,0.621272,0.926044,0.453003,0.21999,0.115607,0.928746,0.67067,0.0496998,0.289562,0.233018,0.291469,0.019022,0.00629336,0.782061,0.908,0.783746,0.23795,0.700099,0.361472,0.232802,0.686927,0.576974,0.0285574,0.847291,0.306809,0.499665,0.476555,0.429732,0.649241,0.745993,0.500329,0.720779,0.48022,0.191548,0.0262953,0.35673,0.264099,0.177875,0.699651,0.883836,0.0824326,0.109171,0.450489,0.682303,0.841318,0.955376,0.924651,0.532712,0.593869,0.887309,0.163664,0.510268,0.313595,0.414665,0.174039,0.869492,0.369491,0.290605,0.75074,0.720719,0.242702,0.670865,0.424435,0.463021,0.818989,0.114551,0.354684,0.686094,0.419851,0.732374,0.866029,0.682498,0.891425,0.646191,0.23364,0.230342,0.353264,0.725883,0.397036,0.426256,|0.631072,0.555807,0.661183,0.657765,0.527679,0.302374,0.612002,0.636119,0.944429,0.988628,0.225717,0.128163,0.889998,0.0869425,0.0587395,0.906152,0.837407,0.991787,0.0638285,0.660592,0.0993699,0.0279192,0.638928,0.456184,0.400921,0.828248,0.256258,0.598968,0.910254,0.0638121,0.148878,0.285206,0.697111,0.514769,0.722369,0.923741,0.485422,0.945866,0.253923,0.785632,0.998411,0.0173838,0.564079,0.208444,0.228938,0.824237,0.683209,0.453688,0.520021,0.943903,0.0260256,0.967465,0.932303,0.185162,0.31351,0.236472,0.00747806,0.4067,0.0572678,0.384848,0.939111,0.145161,0.810326,0.425597,0.396177,0.819447,0.348332,0.729425,0.812814,0.84564,0.605387,0.140897,0.861483,0.726979,0.459524,0.865681,0.010755,0.920166,0.972118,0.474469,0.620665,0.710397,0.837597,0.254639,0.563005,0.685269,0.040633,0.718094,0.267822,0.147571,0.245903,0.121501,0.727077,0.318604,0.304675,0.0359286,0.658273,0.893796,0.272132,0.470882,0.176576,0.714899,0.0453542,0.787639,0.844817,0.33823,0.462113,0.652019,0.786927,0.12994,0.357401,0.495093,0.747983,0.665665,0.901525,0.379169,0.578355,0.0341654,0.344552,0.548168,0.745109,0.932722,0.983454,0.540747,0.348218,0.00594062,0.0334237,0.54411,0.0195007,0.172426,0.400156,0.986462,0.595916,0.629067,0.809147,0.537859,0.0319977,0.37259,0.542662,0.737839,0.47176,0.724231,0.514111,0.331989,0.953204,0.0604875,0.434758,0.542281,0.41565,0.0306987,0.920876,0.437981,0.948623,0.114318,0.76662,0.516197,0.0394878,0.837319,0.276008,0.0380195,0.459563,0.0108887,0.257998,0.0426521,0.630353,0.298166,0.527091,0.454042,0.309183,0.691393,0.168971,0.698334,0.517175,0.364513,0.235479,0.579041,0.421959,0.332194,0.539432,0.923348,0.742266,0.136274,0.672123,0.738622,0.287802,0.933558,0.364363,0.0703207,0.468378,0.44584,0.160085,0.934858,0.794846,0.24908,0.701035,0.426306,0.501561,0.107502,0.208861,0.766031,0.0455579,0.666004,0.398587,0.174799,0.783955,0.12989,0.53609,0.171522,0.133869,0.309799,0.722099,0.0879523,0.136436,0.962758,0.0844696,0.379011,0.691727,0.349568,0.717418,0.184501,0.871439,0.632294,0.363717,0.610186,0.603994,0.382497,0.409616,0.342737,0.183372,0.237312,0.442483,0.399955,0.317505,0.530468,0.743644,0.779311,0.071533,0.889726,0.97395,0.884873,0.25963,0.0120289,0.275025,0.65917,0.0303494,0.257357,0.461416,0.931649,0.485674,0.993366,0.305726,0.579827,0.92241,0.813858,0.515475,0.963804,0.207173,0.00926131,0.184847,0.438806,0.53626,0.337462,0.656657,0.798607,0.918257,0.940929,0.99299,0.166906,0.129605,0.620103,0.509584,0.121593,0.936482,0.327053,0.800852,0.91632,0.945675,0.122681,0.388972,0.212617,0.756004,0.664721,0.596794,0.705028,0.504952,0.0310137,0.530234,0.116109,0.954449,0.45994,0.429581,0.357972,0.741067,0.48634,0.0314315,0.0260409,0.375548,0.250662,0.142954,0.336539,0.272851,0.588951,0.781236,0.104354,0.128024,0.935421,0.552908,0.978342,0.0218583,0.512386,0.69532,0.556612,0.806568,0.0858015,0.555517,0.0744542,0.233301,0.370158,0.920761,0.674866,0.396987,0.721231,0.0520015,0.365962,0.993735,0.625825,0.529107,0.201251,0.171089,0.777391,0.0821728,0.228735,0.394385,0.0162555,0.542747,0.203215,0.665515,0.00390607,0.217665,0.0804744,0.914934,0.0558415,0.573888,0.211609,0.975223,0.887518,0.0984877,0.232179,0.350458,0.437021,0.417174,0.512502,0.0488339,0.828122,0.402395,0.624018,0.607861,0.097351,0.0679314,0.443964,0.602983,0.230413,0.578414,0.908051,0.964809,0.411227,0.0916492,0.275969,0.993805,0.113954,0.188884,0.245127,0.710972,0.986233,0.719303,0.511983,0.532966,0.636045,0.577004,0.731516,0.847261,0.898834,0.690847,0.973409,0.41934,0.124115,0.106886,0.0802675,0.658942,0.879449,0.814227,0.790756,0.629873,0.607203,0.403902,0.371235,0.668622,0.544462,0.765314,0.549075,0.251492,0.534552,0.730557,0.690033,0.782663,0.572273,0.472385,0.0920486,0.0996936,0.32594,0.805941,0.878101,0.35597,0.56861,0.510327,0.806468,0.165516,0.77565,0.485904,0.638534,0.0281624,0.622083,0.577669,0.0372518,0.39392,0.605829,0.610854,0.601273,0.665363,0.784171,0.68967,0.0985274,0.344616,0.335108,0.547154,0.269481,0.534143,0.586084,0.147317,0.483501,0.690526,0.0559467,0.0902865,0.158324,0.111767,0.836591,0.47458,0.257921,0.954751,0.854454,0.999688,0.177748,0.442801,0.447695,0.423223,0.706663,0.195176,0.0612988,0.896069,0.0521312,0.407687,0.120352,0.673918,0.777499,0.263662,0.34807,0.0273368,0.496314,0.176304,0.310242,0.0533299,0.95475,0.787721,0.391277,0.302585,0.744309,0.737684,0.795064,0.0620451,0.40609,0.10807,0.326683,0.963987,0.612593,0.659438,0.0505344,0.964318,0.779893,0.215015,0.849791,0.288699,0.975284,0.806362,0.17573,0.477688,0.833329,0.936184,0.472164,0.433364,0.245638,0.678628,0.811675,0.302833,0.0978997,0.0998977,0.0679644,0.388253,0.78368,0.229861,0.491896,0.341916,0.504449,0.116159,0.545246,0.766388,0.347761,0.24005,0.258433,0.183216,0.176812,0.696335,0.657979,0.316732,0.701048,0.374462,0.506176,0.098772,0.130058,0.706653,0.518916,0.652184,0.00811493,0.994091,0.520285,0.00276309,0.266326,0.81803,0.0958621,0.82408,0.136751,0.00492525,0.355177,0.405917,0.6647,0.888292,0.888964,0.69805,0.66033,0.171065,0.63131,0.127126,0.542936,0.824273,0.672783,0.600136,0.102234,0.998958,0.492104,0.0677221,0.768952,0.469815,0.646042,0.682742,0.746352,0.470091,0.0682374,0.381527,0.327285,0.799404,0.814762,0.418514,0.871968,0.0336524,0.0297444,0.433134,0.698495,0.924619,0.895843,0.215623,0.403391,0.811857,0.595556,0.927485,0.79912,0.788796,0.716397,0.139052,0.682661,0.2617,0.214721,0.833842,0.283693,0.683992,0.095292,0.894773,0.235379,0.713021,0.787975,0.894766,0.400141,0.876114,0.146876,0.0319178,0.34545,0.0866339,0.754946,0.405657,0.780555,0.922818,0.844743,0.0568883,0.63089,0.802107,0.773083,0.614185,0.965463,0.765348,0.097064,0.977903,0.338488,0.98586,0.822569,0.876053,0.0379509,0.503686,0.204006,0.274115,0.405037,0.479716,0.382145,0.380557,0.940228,0.805922,0.508235,0.442019,0.0418,0.389984,0.614349,0.956656,0.733372,0.567822,0.593616,0.502608,0.0989419,0.0294877,0.972927,0.273265,0.716051,0.362456,0.964431,0.664615,0.345931,0.808658,0.691958,0.831911,0.441439,0.66593,0.912045,0.614299,0.757394,0.475877,0.825374,0.263217,0.4672,0.644776,0.363114,0.528773,0.35887,0.169751,0.999766,0.835542,0.695657,0.463532,0.941194,0.189411,0.921455,0.658672,0.995911,0.488341,0.94265,0.664971,0.479471,0.894981,0.707637,0.756193,0.0579095,0.605603,0.111019,0.945409,0.458231,0.176884,0.121153,0.633966,0.188966,0.782459,0.961668,0.162061,0.524714,0.686624,0.53207,0.163945,0.724192,0.370489,0.798701,0.138771,0.128096,0.14197,0.845411,0.555938,0.622516,0.542629,0.202897,0.594243,0.696589,0.0962915,0.180995,0.645009,0.939331,0.929613,0.660514,0.0820501,0.300468,0.592257,0.0769265,0.430954,0.804839,0.499995,0.855266,0.0803117,0.828388,0.265729,0.620492,0.880519,0.81108,0.30671,0.577017,0.41694,0.533914,0.132024,0.083243,0.795699,0.881017,0.914724,0.184562,0.39941,0.474622,0.342868,0.616793,0.942995,0.0920954,0.705886,0.659078,0.823663,0.538467,0.419183,0.0917242,0.229337,0.0834404,0.569859,0.0310087,0.102949,0.978388,0.428624,0.280871,0.610678,0.581993,0.446855,0.128435,0.102201,0.734075,0.993078,0.535369,0.698365,0.0807145,0.851548,0.589053,0.250044,0.194047,0.103711,0.861469,0.0436026,0.691373,0.218633,0.50824,0.698738,0.166029,0.141017,0.21508,0.472738,0.28052,0.00293064,0.936471,0.964774,0.426587,0.756387,0.7354,0.99301,0.335625,0.90858,0.76735,0.518755,0.782439,0.0589209,0.999087,0.00144047,0.672811,0.182633,0.590495,0.664245,0.206658,0.138396,0.943448,0.417081,0.221326,0.128055,0.26946,0.0383977,0.740463,0.37399,0.764437,0.901605,0.0904743,0.735459,0.501064,0.274234,0.665852,0.713601,0.873499,0.330413,0.55522,0.792102,0.557803,0.292012,0.8359,0.0631053,0.227018,0.168584,0.548243,0.687428,0.431823,0.97136,0.395884,0.788819,0.438793,0.698485,0.15404,0.630314,0.354911,0.213013,0.37869,0.0722048,0.975743,0.671747,0.219438,0.376064,0.798064,0.935727,0.249269,0.978644,0.83067,0.409172,0.582468,0.561678,0.0457154,0.548246,0.55561,0.107238,0.987992,0.960295,0.851282,0.321025,0.557115,0.40003,0.375892,0.243741,0.0933628,0.457922,0.109304,0.912643,0.964851,0.461233,0.15093,0.565126,0.524681,0.184487,0.822216,0.011087,0.644031,0.525136,0.314826,0.000394583,0.36161,0.073111,0.116085,0.498531,0.39955,0.893509,0.454221,0.889815,0.728699,0.329937,0.575739,0.804288,0.485027,0.764632,0.388915,0.52004,0.485794,0.112557,0.500882,0.0786467,0.13179,0.612123,0.958079,0.989154,0.898918,0.065353,0.750616,0.512779,0.483983,0.514272,0.311268,0.264418,0.891773,0.484209,0.505778,0.136322,0.882486,0.241601,0.768232,0.394405,0.0354149,0.770128,0.513308,0.658597,0.477745,0.788699,0.383034,0.435668,0.14363,0.647182,0.863329,0.325213,0.186405,0.199432,0.176719,0.592322,0.29465,0.666031,0.0207987,0.429374,0.462833,0.361862,0.0736955,0.106119,0.836678,0.69542,0.685503,0.838539,0.107201,0.45832,0.480028,0.129113,0.0857919,0.939367,0.660488,0.0722753,0.381306,0.139872,0.510757,0.750017,0.271521,0.934001,0.0325716,0.929055,0.690301,0.516922,0.759785,0.113757,0.0414079,0.0451973,0.723996,0.54474,0.993295,0.293989,0.849561,0.623702,0.824572,0.837068,0.661264,0.267194,0.00640833,0.546091,0.375432,0.405773,0.407083,0.909606,0.681489,0.358096,0.0872438,|0.147384,0.327036,0.183922,0.487779,0.0809498,0.122502,0.682608,0.333373,0.5581,0.748921,0.481733,0.637735,0.665859,0.218274,0.6477,0.925379,0.660526,0.535701,0.132792,0.363823,0.151937,0.469179,0.447316,0.0827286,0.386705,0.895988,0.211769,0.742127,0.0887301,0.100916,0.505711,0.29568,0.158676,0.48345,0.537792,0.0500792,0.31824,0.458242,0.480131,0.251281,0.317823,0.56072,0.170587,0.49418,0.191262,0.708085,0.617228,0.476335,0.42237,0.327956,0.703018,0.779373,0.19158,0.332171,0.687675,0.0538741,0.425032,0.48293,0.219061,0.10475,0.480313,0.168268,0.530886,0.796431,0.668958,0.493264,0.12852,0.233546,0.100308,0.795358,0.906427,0.952457,0.992119,0.529058,0.628508,0.0273541,0.145719,0.0601134,0.620295,0.351643,0.830095,0.0449914,0.806208,0.899313,0.930417,0.667938,0.0367455,0.932939,0.6819,0.408442,0.529908,0.939302,0.607138,0.14199,0.761878,0.613647,0.680304,0.941016,0.348071,0.237742,0.576993,0.358847,0.671975,0.43236,0.723175,0.862204,0.703196,0.0653917,0.750301,0.345567,0.501512,0.852598,0.691473,0.683325,0.773655,0.723326,0.149594,0.290756,0.64266,0.0828949,0.890915,0.783805,0.96532,0.907267,0.148903,0.161232,0.989528,0.817765,0.41585,0.847756,0.263361,0.466332,0.211819,0.843308,0.0403945,0.144634,0.0404794,0.692744,0.19685,0.181331,0.315262,0.0739457,0.307324,0.854103,0.287779,0.482182,0.61465,0.155444,0.423082,0.125924,0.179689,0.149083,0.0366077,0.508857,0.154202,0.437419,0.412375,0.933911,0.372648,0.573083,0.177366,0.36849,0.363971,0.494295,0.034081,0.72306,0.974404,0.609905,0.412298,0.320247,0.041024,0.300631,0.36623,0.634819,0.724692,0.149819,0.589359,0.124521,0.106723,0.415737,0.339924,0.998597,0.787037,0.371271,0.591922,0.700156,0.581679,0.996685,0.162348,0.0722182,0.505432,0.386981,0.422807,0.583436,0.0832171,0.549804,0.649145,0.672518,0.453249,0.751853,0.371,0.552886,0.337354,0.469453,0.232295,0.686152,0.779241,0.0751006,0.150853,0.789142,0.080119,0.956884,0.504928,0.896678,0.168679,0.423754,0.477008,0.203442,0.459878,0.676612,0.474507,0.352192,0.0595281,0.746957,0.476897,0.834187,0.825578,0.416162,0.737042,0.221698,0.546821,0.741623,0.955578,0.646854,0.426984,0.4498,0.628323,0.867741,0.304033,0.824589,0.435526,0.75232,0.914808,0.490613,0.0257666,0.62217,0.13587,0.125381,0.161361,0.995852,0.901212,0.492715,0.407272,0.388939,0.58458,0.390673,0.35825,0.238935,0.695715,0.572045,0.113499,0.447163,0.00864917,0.20581,0.367316,0.291039,0.718756,0.79488,0.343106,0.836344,0.50694,0.639481,0.633207,0.905616,0.76232,0.396853,0.325331,0.768513,0.869255,0.0896528,0.108864,0.854996,0.911664,0.220418,0.0278103,0.855854,0.754705,0.1348,0.335839,0.12394,0.29231,0.538677,0.448508,0.683255,0.419735,0.269667,0.997637,0.208528,0.940956,0.468644,0.604316,0.241274,0.110113,0.891821,0.532983,0.708542,0.251913,0.621019,0.377371,0.522735,0.847646,0.456154,0.0631955,0.0451197,0.233152,0.743548,0.23904,0.64764,0.881402,0.774517,0.993153,0.0925179,0.189699,0.355065,0.375271,0.434622,0.0130439,0.218717,0.445397,0.386407,0.345776,0.530767,0.4004,0.156308,0.407521,0.662414,0.638259,0.0670402,0.509518,0.449623,0.55843,0.15692,0.0432776,0.632242,0.0116536,0.426766,0.0982043,0.14173,0.380303,0.546144,0.0738132,0.757093,0.325108,0.0468081,0.92403,0.950445,0.246296,0.405463,0.465189,0.9355,0.552114,0.851981,0.91518,0.234863,0.818274,0.56208,0.617753,0.900352,0.355882,0.147784,0.63113,0.282174,0.369834,0.298199,0.343412,0.565627,0.662691,0.635522,0.116838,0.829962,0.192806,0.669378,0.377258,0.973051,0.0170036,0.656081,0.667901,0.883293,0.315349,0.618435,0.796278,0.455183,0.880862,0.958281,0.73338,0.103396,0.322624,0.143117,0.33166,0.939681,0.120332,0.577432,0.994074,0.354885,0.717394,0.173998,0.206919,0.087472,0.91789,0.808004,0.0245197,0.505494,0.0872302,0.686881,0.306423,0.121869,0.271699,0.453565,0.776544,0.109437,0.574575,0.515822,0.239167,0.247179,0.371544,0.45162,0.204723,0.488279,0.759599,0.731684,0.105204,0.486345,0.252999,0.442598,0.309328,0.184368,0.0352951,0.300747,0.33887,0.37555,0.551994,0.712231,0.0518797,0.279188,0.850989,0.450541,0.675884,0.521889,0.0188223,0.253058,0.661527,0.0175526,0.96815,0.0818463,0.522216,0.526887,0.124604,0.131625,0.228734,0.321585,0.54417,0.930971,0.471659,0.952887,0.959855,0.224841,0.420522,0.542892,0.0650484,0.176176,0.967778,0.700743,0.716163,0.108019,0.0742463,0.561183,0.974958,0.216114,0.480872,0.429953,0.86038,0.61687,0.25768,0.0339646,0.755549,0.764415,0.798788,0.772238,0.924036,0.17853,0.365076,0.115092,0.861688,0.992599,0.711392,0.918593,0.2076,0.89587,0.727582,0.784238,0.652863,0.139472,0.0841891,0.302316,0.995339,0.0661925,0.953341,0.953825,0.125847,0.854494,0.680494,0.982467,0.314141,0.854704,0.328889,0.383317,0.957874,0.14752,0.959719,0.266733,0.933795,0.227768,0.728058,0.738305,0.258879,0.248663,0.455676,0.0618363,0.0320635,0.11987,0.231405,0.66728,0.886321,0.194676,0.344711,0.194541,0.732102,0.844547,0.600928,0.234509,0.726317,0.820144,0.51597,0.00557917,0.149893,0.900978,0.859587,0.155925,0.0322527,0.383066,0.936899,0.191008,0.509479,0.890549,0.225363,0.96853,0.695138,0.996768,0.590461,0.840662,0.316195,0.0587732,0.841289,0.513804,0.36926,0.0251812,0.812848,0.355343,0.117804,0.731875,0.986952,0.640772,0.550328,0.158313,0.401331,0.258655,0.0749534,0.900891,0.82281,0.720855,0.48012,0.551628,0.929452,0.628705,0.70881,0.62493,0.578183,0.879247,0.84678,0.436639,0.644028,0.0223732,0.488754,0.713018,0.665461,0.426813,0.311201,0.289743,0.735206,0.706959,0.204683,0.412449,0.624971,0.520795,0.616862,0.0131604,0.72648,0.00716519,0.160011,0.609245,0.252347,0.561831,0.233272,0.37099,0.448204,0.309611,0.267839,0.182963,0.387844,0.0790859,0.309887,0.538899,0.267161,0.871952,0.874275,0.0791309,0.0353397,0.154453,0.992543,0.863023,0.403748,0.729305,0.456685,0.11647,0.998481,0.997316,0.616538,0.517878,0.325555,0.376858,0.858388,0.379681,0.0528222,0.440061,0.0187778,0.400808,0.454391,0.577465,0.66802,0.605439,0.597382,0.36088,0.733852,0.0995282,0.182012,0.171668,0.671884,0.808153,0.251003,0.0207866,0.824948,0.991947,0.684186,0.740232,0.631666,0.433854,0.35529,0.421532,0.650903,0.668378,0.732995,0.967233,0.214491,0.609054,0.801133,0.777918,0.900571,0.505929,0.674343,0.40306,0.999933,0.404602,0.452379,0.307272,0.338069,0.0311974,0.864491,0.336885,0.582686,0.602601,0.392404,0.38835,0.260032,0.161171,0.574251,0.423972,0.488461,0.757928,0.960978,0.461924,0.811996,0.622035,0.438527,0.265118,0.131449,0.124598,0.0327869,0.112751,0.571699,0.685461,0.441599,0.0423429,0.0864882,0.50509,0.112745,0.83802,0.587878,0.0993708,0.425476,0.0971036,0.843143,0.651731,0.26053,0.71276,0.593445,0.292957,0.974989,0.550204,0.836272,0.107281,0.170563,0.28224,0.281563,0.814569,0.337976,0.907738,0.0106759,0.348024,0.788974,0.602956,0.23447,0.467106,0.758495,0.545587,0.0155342,0.814852,0.183934,0.0073148,0.255987,0.384482,0.350396,0.561019,0.859633,0.20849,0.9993,0.221856,0.373437,0.234407,0.503553,0.00255811,0.038989,0.344391,0.458552,0.454244,0.0174106,0.13647,0.129269,0.824536,0.710122,0.784767,0.105559,0.143765,0.733954,0.327662,0.340206,0.225398,0.0527275,0.427496,0.528772,0.0905179,0.251379,0.712362,0.153696,0.38664,0.509013,0.183846,0.439231,0.231798,0.257026,0.814982,0.669135,0.656064,0.855536,0.735427,0.475457,0.584797,0.262024,0.307769,0.213454,0.838528,0.31451,0.205229,0.141046,0.43825,0.636162,0.997393,0.70161,0.533622,0.106707,0.387058,0.269172,0.10479,0.580379,0.60853,0.620792,0.539331,0.720251,0.936534,0.0201768,0.528681,0.252366,0.312387,0.623045,0.159959,0.304627,0.100621,0.416826,0.222175,0.176681,0.519434,0.469012,0.866392,0.356217,0.632042,0.430456,0.653627,0.175173,0.354227,0.501505,0.21729,0.817272,0.0783525,0.810631,0.409456,0.662862,0.680462,0.47162,0.930163,0.677348,0.34872,0.905999,0.809263,0.377819,0.172011,0.79672,0.758961,0.744464,0.526229,0.516875,0.450788,0.811996,0.123449,0.276134,0.506893,0.394947,0.769991,0.529399,0.091782,0.874045,0.804904,0.259427,0.416968,0.685984,0.0150697,0.726419,0.766255,0.487643,0.872262,0.862157,0.233065,0.640576,0.442622,0.912785,0.402147,0.160076,0.923267,0.771281,0.997259,0.595404,0.157687,0.440135,0.805516,0.399,0.723524,0.947098,0.951711,0.242832,0.75727,0.040223,0.689465,0.839429,0.600186,0.939327,0.616989,0.68028,0.00327063,0.623431,0.220515,0.856181,0.0342602,0.89808,0.43449,0.581505,0.00924414,0.9622,0.191385,0.703588,0.356612,0.43205,0.316664,0.981728,0.293952,0.850607,0.486092,0.913396,0.347986,0.246105,0.873889,0.0842853,0.184057,0.920586,0.4158,0.56856,0.193961,0.00510633,0.117952,0.696753,0.947806,0.344321,0.343652,0.432534,0.554418,0.195731,0.149782,0.507208,0.95074,0.20579,0.925257,0.36516,0.496335,0.212004,0.78854,0.757337,0.685432,0.941236,0.382442,0.00219041,0.857781,0.595846,0.272042,0.467354,0.876486,0.900249,0.654868,0.872511,0.556747,0.692721,0.357225,0.171138,0.47795,0.828649,0.0518383,0.227055,0.17333,0.433138,0.720227,0.957362,0.339375,0.605799,0.971461,0.728186,0.762751,0.980041,0.94359,0.392361,0.671445,0.678038,0.841401,0.341295,0.550805,0.234543,0.340616,0.569901,0.160952,0.588844,0.975956,0.966716,0.872098,0.763851,0.663975,|0.872515,0.514804,0.800924,0.490912,0.306036,0.169596,0.0166505,0.213502,0.208455,0.482518,0.44534,0.896024,0.379142,0.410753,0.646533,0.610242,0.387043,0.782775,0.746186,0.676153,0.486238,0.0866445,0.861446,0.709318,0.973008,0.394099,0.186702,0.318997,0.669161,0.80244,0.534147,0.0316702,0.958382,0.468197,0.434251,0.48632,0.585037,0.286904,0.665096,0.475639,0.931816,0.0130316,0.510467,0.545279,0.0150283,0.0571037,0.395883,0.5254,0.756421,0.311457,0.494177,0.877323,0.513407,0.893535,0.274927,0.395795,0.421948,0.418876,0.778025,0.372503,0.0553745,0.764496,0.237943,0.888599,0.351871,0.620252,0.232379,0.561211,0.621203,0.872483,0.441911,0.536692,0.329733,0.725594,0.402848,0.566531,0.634423,0.644306,0.747548,0.887813,0.963482,0.0100445,0.0408404,0.260618,0.757809,0.610303,0.89774,0.613939,3.91006e-05,0.9001,0.146978,0.216193,0.606701,0.454722,0.983229,0.799094,0.0441208,0.983854,0.0704731,0.282979,0.831923,0.262116,0.228585,0.833759,0.65651,0.904317,0.585903,0.897651,0.0770583,0.792597,0.153257,0.222359,0.933138,0.525767,0.720156,0.635844,0.670944,0.610599,0.0918685,0.848383,0.708744,0.878267,0.0626935,0.0689989,0.650085,0.741508,0.124637,0.953065,0.93116,0.560702,0.501684,0.382966,0.737486,0.678545,0.400733,0.449669,0.139941,0.575284,0.462823,0.0967218,0.688252,0.561733,0.826035,0.956502,0.527503,0.0440065,0.201277,0.771634,0.912668,0.392603,0.877629,0.742894,0.627225,0.968722,0.644555,0.772814,0.334687,0.726068,0.687606,0.860096,0.985911,0.091674,0.454813,0.754017,0.439217,0.924395,0.244497,0.342566,0.0287232,0.828786,0.416111,0.521823,0.263908,0.185417,0.747247,0.215304,0.885168,0.202939,0.84721,0.636262,0.828157,0.375041,0.244627,0.873951,0.20652,0.629547,0.539977,0.943371,0.397237,0.0939406,0.806316,0.605928,0.571594,0.0914755,0.42422,0.73096,0.228575,0.311735,0.43675,0.16877,0.799064,0.610408,0.103621,0.921349,0.694621,0.639744,0.774258,0.717111,0.335059,0.622708,0.996555,0.214634,0.718922,0.0306624,0.488583,0.477979,0.602777,0.959324,0.137911,0.829817,0.436878,0.569158,0.482681,0.836514,0.285366,0.445258,0.939879,0.93035,0.986809,0.384548,0.120834,0.739769,0.235154,0.694934,0.443915,0.865707,0.466813,0.224123,0.303913,0.996258,0.69647,0.037342,0.699516,0.865433,0.388078,0.213303,0.944645,0.394121,0.447083,0.214579,0.678271,0.482884,0.146049,0.073944,0.853339,0.142251,0.450483,0.195074,0.0472296,0.03321,0.298848,0.908332,0.201728,0.0224346,0.668542,0.0117839,0.158888,0.590692,0.189553,0.409907,0.431456,0.585131,0.181226,0.910146,0.275455,0.1813,0.903788,0.494821,0.452795,0.265669,0.0626503,0.386322,0.997883,0.85227,0.379457,0.406582,0.543285,0.896924,0.465498,0.109354,0.477265,0.372676,0.964629,0.151873,0.959465,0.74803,0.843331,0.780691,0.486924,0.247216,0.204544,0.0786695,0.707943,0.289685,0.868468,0.585513,0.574399,0.734487,0.190807,0.0269557,0.365885,0.0257306,0.294431,0.198315,0.0438792,0.258672,0.98065,0.26613,0.774253,0.807815,0.951528,0.926068,0.350111,0.826943,0.318345,0.755522,0.449087,0.129124,0.711833,0.592266,0.516296,0.110168,0.742612,0.838885,0.623546,0.175082,0.216233,0.387354,0.800681,0.830503,0.399107,0.721767,0.603296,0.94348,0.189285,0.139354,0.637504,0.673549,0.0768623,0.61972,0.18798,0.00971794,0.935824,0.876901,0.216227,0.470585,0.180252,0.479638,0.158527,0.301188,0.63323,0.854597,0.502956,0.930728,0.739829,0.0469311,0.241284,0.737973,0.216478,0.299789,0.991179,0.497321,0.976126,0.342658,0.681548,0.988232,0.989198,0.686824,0.499958,0.956231,0.889037,0.348751,0.0220776,0.32588,0.0761595,0.0147313,0.158596,0.233267,0.651907,0.142111,0.251758,0.662206,0.34773,0.607597,0.499412,0.0546595,0.772063,0.915855,0.700485,0.392828,0.10624,0.470981,0.540131,0.546912,0.220525,0.694393,0.453391,0.139361,0.2012,0.289496,0.835358,0.962732,0.552234,0.857341,0.968389,0.523108,0.925537,0.302292,0.29943,0.954745,0.929347,0.692415,0.987738,0.451943,0.331254,0.652457,0.759143,0.240241,0.913118,0.603551,0.0427833,0.806189,0.0338271,0.455938,0.0996151,0.305298,0.986369,0.427604,0.523088,0.116569,0.278732,0.888736,0.449609,0.564428,0.744086,0.990112,0.0200957,0.285801,0.14759,0.821069,0.369134,0.948302,0.148611,0.927869,0.784642,0.674072,0.841266,0.141673,0.432501,0.610766,0.255052,0.92144,0.428659,0.461986,0.416574,0.00732654,0.935464,0.0386665,0.520242,0.144105,0.336651,0.0764544,0.829175,0.806005,0.433907,0.917076,0.391078,0.270551,0.142709,0.957424,0.43627,0.27301,0.365269,0.008439,0.885501,0.493587,0.0135083,0.713695,0.519483,0.843829,0.777932,0.929254,0.59626,0.821341,0.573615,0.932991,0.410707,0.63861,0.985032,0.668141,0.996363,0.135872,0.303201,0.67776,0.0711958,0.0343537,0.00125283,0.148228,0.547672,0.881654,0.264194,0.647486,0.0484792,0.76796,0.328356,0.77655,0.855431,0.969421,0.386885,0.293772,0.0328876,0.00643963,0.592373,0.939326,0.188918,0.120834,0.503248,0.256462,0.278143,0.72419,0.248376,0.4574,0.707813,0.90462,0.229499,0.650681,0.320795,0.357535,0.106151,0.993326,0.412938,0.995965,0.28389,0.400106,0.504835,0.429194,0.62901,0.040679,0.836345,0.69684,0.260503,0.0364056,0.696998,0.475037,0.04067,0.155181,0.0266518,0.0739068,0.577868,0.858007,0.817923,0.740722,0.145946,0.164713,0.651758,0.460534,0.286051,0.0602399,0.285425,0.887803,0.858087,0.502717,0.229328,0.0151123,0.429541,0.450686,0.581359,0.507221,0.145938,0.19177,0.170125,0.0197362,0.708802,0.299515,0.842811,0.20162,0.627478,0.290726,0.199895,0.369498,0.919405,0.200429,0.849258,0.6147,0.715331,0.515993,0.0511621,0.291139,0.588263,0.892752,0.529681,0.713687,0.825523,0.980209,0.0592301,0.550916,0.307272,0.632785,0.236078,0.692199,0.612014,0.250434,0.649431,0.651182,0.899596,0.267266,0.733086,0.970137,0.322311,0.591901,0.0642028,0.0152152,0.215413,0.646525,0.274868,0.398829,0.253563,0.137871,0.00375736,0.684945,0.372372,0.025044,0.994168,0.256692,0.735781,0.243688,0.155772,0.428439,0.220222,0.220358,0.210151,0.835038,0.390706,0.757327,0.164252,0.697494,0.476087,0.742792,0.413083,0.585417,0.86452,0.829372,0.288738,0.0493724,0.194945,0.417836,0.868344,0.441201,0.692376,0.189494,0.828932,0.350996,0.430754,0.729389,0.661548,0.823357,0.595244,0.758053,0.583481,0.524645,0.775558,0.622954,0.709756,0.148302,0.243291,0.104087,0.96321,0.733248,0.416304,0.890836,0.301499,0.291333,0.983885,0.925502,0.325996,0.804394,0.425401,0.253312,0.0998419,0.411097,0.0910676,0.802384,0.771948,0.956723,0.105273,0.34452,0.820711,0.907761,0.652021,0.203871,0.812041,0.955063,0.307106,0.527459,0.551485,0.260027,0.240774,0.467155,0.371768,0.968046,0.986304,0.754419,0.0413636,0.875765,0.179589,0.261758,0.502595,0.408087,0.713901,0.270141,0.875028,0.360568,0.750205,0.659397,0.593359,0.449813,0.45236,0.724501,0.263734,0.231362,0.519657,0.245163,0.680678,0.744718,0.687631,0.638904,0.390365,0.731439,0.634179,0.13844,0.302773,0.659928,0.693699,0.92526,0.42208,0.175496,0.216707,0.828965,0.967969,0.0477145,0.393423,0.692975,0.223043,0.955395,0.219286,0.687133,0.0957059,0.629935,0.368864,0.736705,0.950279,0.0940281,0.078351,0.427867,0.629804,0.392755,0.389615,0.555215,0.392992,0.43475,0.849722,0.973984,0.916339,0.505549,0.0436008,0.428073,0.30967,0.233657,0.269784,0.559838,0.342953,0.635499,0.612774,0.807663,0.944815,0.887405,0.114998,0.3499,0.323321,0.486463,0.750317,0.229655,0.37222,0.490315,0.13096,0.671815,0.623866,0.650116,0.0750451,0.0494229,0.47933,0.663272,0.876234,0.654609,0.293699,0.389196,0.0147135,0.198735,0.400511,0.66874,0.949371,0.717493,0.10968,0.0472808,0.744034,0.771943,0.945505,0.910527,0.670437,0.895674,0.909144,0.929689,0.161047,0.486433,0.23784,0.990048,0.949127,0.730298,0.243602,0.139646,0.421725,0.973586,0.902694,0.106286,0.630405,0.654911,0.251081,0.471533,0.382001,0.638764,0.807699,0.37952,0.078536,0.781671,0.841065,0.868285,0.969608,0.909549,0.693637,0.481597,0.571123,0.157849,0.613256,0.882029,0.838792,0.0491942,0.6862,0.549071,0.622212,0.594188,0.570916,0.745914,0.11216,0.190879,0.368499,0.716918,0.26698,0.895485,0.0255926,0.362064,0.00308824,0.500363,0.922027,0.402455,0.479106,0.680026,0.784632,0.833641,0.420362,0.0922818,0.0971709,0.208066,0.269673,0.471391,0.797646,0.928795,0.331749,0.9577,0.89291,0.621905,0.988469,0.179535,0.67314,0.0922091,0.461046,0.368612,0.730947,0.0361257,0.598923,0.803628,0.211,0.400826,0.0674237,0.648764,0.0757993,0.969485,0.949043,0.598736,0.685598,0.115688,0.610277,0.834799,0.0767304,0.800304,0.619313,0.95015,0.18855,0.671027,0.355533,0.146723,0.471797,0.910943,0.272879,0.634243,0.52209,0.489693,0.451114,0.860182,0.61611,0.0882202,0.363434,0.906305,0.00018996,0.934203,0.5019,0.829319,0.12312,0.920171,0.0397539,0.521846,0.500588,0.941543,0.264602,0.0324686,0.943426,0.698269,0.0112932,0.364322,0.368575,0.692435,0.467333,0.219331,0.926484,0.171678,0.10161,0.122314,0.818107,0.0803554,0.013746,0.919323,0.56157,0.226722,0.0519201,0.414285,0.275466,0.276823,0.706713,0.805181,0.59555,0.927007,0.660895,0.800201,0.0712911,0.924368,0.270727,0.931381,0.948626,0.988639,0.705834,0.573548,0.00679761,0.751772,0.274314,0.191522,0.630073,0.137172,0.955701,0.183366,0.372009,0.707318,0.406037,0.230653,0.483767,0.00438672,0.695677,0.09337,0.0805211,0.720002,0.567168,0.714847,|0.0565664,0.992165,0.946304,0.110935,0.729896,0.154247,0.78151,0.599537,0.0865272,0.0421966,0.653303,0.122682,0.859513,0.859243,0.356508,0.852628,0.898951,0.857666,0.117079,0.985056,0.886503,0.00875312,0.255438,0.403835,0.111026,0.222577,0.268775,0.680834,0.845144,0.409315,0.60828,0.358727,0.741834,0.77486,0.377985,0.598983,0.768828,0.87895,0.0727784,0.218925,0.383957,0.00704014,0.950586,0.221126,0.716742,0.657478,0.588766,0.276137,0.109823,0.470327,0.375292,0.911679,0.394154,0.686784,0.871008,0.575156,0.802924,0.587327,0.654754,0.75113,0.973306,0.916699,0.645531,0.713112,0.469093,0.250347,0.176313,0.66073,0.780881,0.714545,0.49195,0.0678809,0.15947,0.695707,0.139353,0.748229,0.39202,0.522951,0.750992,0.35692,0.280841,0.840869,0.654329,0.549336,0.473171,0.587021,0.552176,0.655367,0.942656,0.545356,0.995537,0.209835,0.206519,0.498951,0.163576,0.345444,0.90868,0.149059,0.373421,0.493697,0.752345,0.0538126,0.95617,0.601815,0.950949,0.827761,0.976169,0.605428,0.250429,0.821458,0.550163,0.870349,0.66207,0.820084,0.670065,0.838724,0.959039,0.480565,0.729469,0.22348,0.538036,0.213624,0.27252,0.654144,0.692773,0.143501,0.297122,0.932013,0.788422,0.840602,0.8289,0.697895,0.972155,0.652219,0.262479,0.64542,0.0980843,0.255797,0.209482,0.734363,0.171372,0.714961,0.572496,0.29068,0.785623,0.175291,0.917792,0.863746,0.237287,0.33358,0.768325,0.766962,0.157595,0.619337,0.84405,0.85273,0.813019,0.228968,0.46556,0.24658,0.326732,0.705,0.918756,0.762672,0.113442,0.505636,0.618143,0.99395,0.791774,0.4847,0.757129,0.0860291,0.776894,0.462131,0.303381,0.444413,0.801992,0.659564,0.80882,0.186093,0.273009,0.902987,0.799068,0.181158,0.13364,0.35404,0.600408,0.329919,0.884453,0.429536,0.441351,0.329446,0.667328,0.937712,0.0124718,0.701666,0.669453,0.578111,0.393373,0.544223,0.657782,0.192903,0.100106,0.347081,0.428363,0.753255,0.403047,0.35664,0.837491,0.655551,0.829057,0.470404,0.0641911,0.962679,0.378884,0.135135,0.917025,0.118575,0.204321,0.850516,0.42739,0.191409,0.996484,0.619276,0.367096,0.865747,0.81654,0.889413,0.717626,0.581186,0.446465,0.473979,0.834022,0.800945,0.631133,0.981548,0.699876,0.0451704,0.947306,0.248926,0.780254,0.999145,0.549248,0.447727,0.609155,0.102096,0.833926,0.658229,0.333821,0.992281,0.714372,0.223653,0.421223,0.323467,0.167488,0.442327,0.284565,0.466347,0.829736,0.775028,0.533397,0.802512,0.162211,0.985344,0.376112,0.48179,0.830172,0.371848,0.66113,0.273048,0.55603,0.396381,0.225207,0.528907,0.74211,0.524685,0.322718,0.031533,0.430085,0.60013,0.519934,0.750874,0.152507,0.72995,0.984486,0.0274556,0.456189,0.856066,0.677611,0.278735,0.735436,0.18912,0.946238,0.809293,0.47224,0.987982,0.546179,0.295387,0.613558,0.525429,0.541025,0.305872,0.771005,0.706565,0.170624,0.250055,0.286978,0.18897,0.191883,0.691968,0.605241,0.663381,0.106863,0.12194,0.19722,0.161947,0.363636,0.474219,0.20669,0.33059,0.0583239,0.375284,0.916932,0.696773,0.305721,0.246694,0.385926,0.767142,0.914177,0.359345,0.512896,0.344292,0.313908,0.136783,0.784986,0.493621,0.0758618,0.271774,0.601398,0.969826,0.93122,0.613067,0.985376,0.766444,0.527659,0.495376,0.0117836,0.537355,0.408754,0.29095,0.917458,0.487226,0.444763,0.571252,0.255866,0.816842,0.499614,0.243224,0.219886,0.684331,0.0454217,0.103245,0.95216,0.393277,0.192572,0.472651,0.20247,0.434723,0.565009,0.644452,0.947286,0.854304,0.890676,0.168744,0.716139,0.501662,0.2773,0.00459838,0.219516,0.842314,0.522244,0.956426,0.64514,0.934213,0.663148,0.776321,0.766284,0.147362,0.946192,0.816776,0.745529,0.112984,0.799466,0.0183843,0.435358,0.450318,0.884082,0.719755,0.429979,0.614572,0.814784,0.811902,0.468137,0.963547,0.283503,0.305234,0.681595,0.64468,0.702815,0.57866,0.56065,0.150959,0.701452,0.685716,0.59302,0.0551929,0.509255,0.863981,0.348606,0.770225,0.369019,0.610647,0.363141,0.386829,0.304039,0.553982,0.155473,0.309965,0.413838,0.83445,0.537429,0.0219627,0.251534,0.34332,0.487916,0.399598,0.747433,0.285518,0.327884,0.785162,0.858708,0.825658,0.638952,0.136085,0.797989,0.524155,0.286827,0.656427,0.465427,0.751268,0.38975,0.176426,0.244197,0.936952,0.521893,0.777494,0.740321,0.963929,0.770877,0.122961,0.923724,0.152274,0.900155,0.909648,0.0529437,0.759596,0.726893,0.852448,0.742014,0.888295,0.945256,0.448721,0.575044,0.820893,0.925029,0.104883,0.807201,0.897278,0.933398,0.887354,0.120204,0.625568,0.106346,0.811049,0.464274,0.716875,0.86486,0.356079,0.374959,0.11691,0.791232,0.167896,0.221285,0.536101,0.108217,0.985781,0.863085,0.456623,0.657996,0.160625,0.051138,0.873319,0.064414,0.708962,0.0382072,0.672479,0.00902104,0.373792,0.558735,0.0860293,0.119948,0.0188288,0.803794,0.959293,0.374236,0.589523,0.791902,0.0886835,0.445665,0.803971,0.988624,0.211713,0.139341,0.62488,0.0568113,0.500437,0.396394,0.494766,0.405957,0.0122198,0.960716,0.928051,0.524979,0.832521,0.450932,0.769003,0.244789,0.928726,0.971984,0.02266,0.469652,0.750899,0.355287,0.095605,0.592932,0.35303,0.290927,0.103018,0.756379,0.970152,0.955724,0.43462,0.092267,0.95284,0.954253,0.649347,0.0484845,0.99492,0.927729,0.0949004,0.373363,0.931785,0.673801,0.441297,0.920946,0.255923,0.85112,0.820141,0.390878,0.869757,0.0814532,0.775017,0.293728,0.0379354,0.0908777,0.486636,0.631588,0.661227,0.17174,0.323599,0.213894,0.938581,0.677922,0.569953,0.906464,0.745558,0.652799,0.171985,0.468574,0.00870252,0.0603149,0.126031,0.139819,0.531327,0.171483,0.640617,0.465521,0.605881,0.668093,0.141713,0.862623,0.589588,0.548285,0.987062,0.987185,0.903815,0.297905,0.397238,0.863149,0.0451551,0.0810863,0.519761,0.159447,0.54856,0.655801,0.5693,0.913685,0.00219226,0.977862,0.358758,0.812312,0.405576,0.685383,0.778053,0.547182,0.936569,0.310285,0.465111,0.992879,0.161883,0.814041,0.892417,0.436668,0.950096,0.373962,0.299701,0.315312,0.0406932,0.315398,0.401835,0.834338,0.291919,0.460247,0.49225,0.458845,0.314863,0.544315,0.117642,0.51827,0.323229,0.69454,0.628431,0.282478,0.919508,0.558069,0.414962,0.26924,0.912075,0.642916,0.234619,0.410563,0.122887,0.297283,0.342725,0.724672,0.938549,0.967207,0.189336,0.209839,0.348919,0.337644,0.859757,0.481773,0.172188,0.943397,0.230626,0.650497,0.762308,0.0984136,0.00482714,0.0516068,0.700471,0.589557,0.0503886,0.999551,0.936217,0.224727,0.501927,0.899746,0.75015,0.688114,0.257661,0.741441,0.103719,0.925822,0.265404,0.950375,0.626188,0.971622,0.298496,0.0250042,0.28409,0.570634,0.126898,0.529228,0.753086,0.798601,0.956712,0.714919,0.54997,0.266263,0.894324,0.922405,0.0593886,0.874662,0.710571,0.18956,0.631733,0.747545,0.0959193,0.564781,0.27958,0.594714,0.108352,0.719188,0.141334,0.416958,0.600676,0.351985,0.664948,0.965313,0.39038,0.417085,0.929829,0.766706,0.0452254,0.643367,0.800634,0.184921,0.233468,0.898476,0.0753567,0.994357,0.624628,0.589109,0.340757,0.077729,0.546604,0.0268863,0.970892,0.436291,0.755956,0.323426,0.959813,0.405564,0.896836,0.390771,0.266476,0.706653,0.301925,0.314803,0.614527,0.700399,0.681846,0.965731,0.606495,0.513558,0.429074,0.124569,0.225053,0.0300017,0.648106,0.40719,0.467555,0.134765,0.999493,0.895548,0.539583,0.147739,0.943444,0.197103,0.814253,0.240251,0.795656,0.682663,0.76303,0.844874,0.814113,0.54847,0.912453,0.672128,0.495667,0.641307,0.370653,0.256953,0.64816,0.219923,0.550596,0.664117,0.9957,0.494991,0.164146,0.263502,0.222858,0.432614,0.834041,0.615759,0.892209,0.302229,0.301901,0.381511,0.650072,0.183289,0.395526,0.378197,0.447331,0.631547,0.873028,0.867209,0.650214,0.683139,0.864256,0.992025,0.285865,0.414272,0.167398,0.510758,0.0844415,0.675583,0.371188,0.566611,0.453033,0.91899,0.591381,0.936624,0.402777,0.686664,0.8578,0.744947,0.136683,0.0515352,0.812856,0.243928,0.654594,0.441939,0.362299,0.190152,0.181899,0.169034,0.33316,0.265361,0.988664,0.84638,0.455873,0.845998,0.21424,0.925162,0.03358,0.12901,0.85679,0.83913,0.486317,0.0211109,0.213104,0.626041,0.839354,0.536654,0.44355,0.0203448,0.819189,0.745852,0.974527,0.633154,0.351816,0.909984,0.0398885,0.485294,0.0366805,0.558263,0.3615,0.366497,0.93539,0.780235,0.398257,0.280593,0.120333,0.176718,0.534354,0.976531,0.904855,0.62174,0.707012,0.317237,0.438015,0.421544,0.946362,0.330983,0.770265,0.495806,0.595493,0.324621,0.624535,0.763359,0.0146366,0.136403,0.982013,0.331397,0.869971,0.155865,0.467503,0.644216,0.0938061,0.7118,0.51215,0.615703,0.968731,0.299635,0.371818,0.277665,0.876698,0.951205,0.51501,0.680947,0.780751,0.54403,0.982348,0.73486,0.284002,0.868897,0.752051,0.296287,0.219124,0.828347,0.293246,0.434878,0.741138,0.630881,0.825151,0.10194,0.108855,0.688393,0.431668,0.0164157,0.297737,0.898486,0.152214,0.367105,0.163998,0.378802,0.443405,0.446329,0.897838,0.772103,0.602436,0.628027,0.551106,0.999267,0.00419116,0.214886,0.681757,0.872869,0.237389,0.0779072,0.76317,0.999824,0.427785,0.425717,0.204215,0.975303,0.417329,0.389416,0.431509,0.311577,0.270958,0.693046,0.161228,0.411076,0.875762,0.552737,0.841006,0.603982,0.156583,0.611834,0.951486,0.185126,0.960488,0.729563,0.918336,0.389027,0.128388,0.573848,0.209281,0.887254,0.749916,0.106096,0.706482,0.0484621,0.654706,0.796067,0.914955,|0.1822,0.887912,0.730597,0.364222,0.623247,0.867881,0.102455,0.307898,0.548205,0.604518,0.28245,0.927765,0.795294,0.0231773,0.978497,0.320797,0.400842,0.171935,0.0190188,0.0610248,0.868271,0.805168,0.693103,0.681328,0.555412,0.032997,0.325861,0.869289,0.226878,0.307312,0.846008,0.346767,0.252629,0.00270993,0.855042,0.542355,0.554494,0.421401,0.187877,0.928988,0.231936,0.857,0.331181,0.617921,0.402362,0.257983,0.641846,0.040597,0.326252,0.132596,0.0248601,0.825257,0.131791,0.315577,0.779076,0.253917,0.367467,0.339709,0.291077,0.869343,0.581145,0.520149,0.839169,0.624603,0.438629,0.895367,0.289284,0.935724,0.942528,0.789978,0.54759,0.175532,0.0821784,0.0863999,0.865455,0.284837,0.918344,0.575609,0.529793,0.786804,0.694004,0.065765,0.757975,0.333056,0.25292,0.9663,0.896536,0.736502,0.331385,0.398533,0.764229,0.849656,0.105229,0.134596,0.32956,0.246614,0.310943,0.605451,0.207048,0.420015,0.981878,0.39164,0.694324,0.130601,0.735106,0.587372,0.704521,0.417157,0.576424,0.715016,0.848358,0.821252,0.0244829,0.0126128,0.679089,0.370152,0.192399,0.101001,0.569246,0.438993,0.83617,0.634097,0.312096,0.0994263,0.357773,0.847926,0.329984,0.684938,0.0639101,0.486775,0.222328,0.487131,0.097219,0.31464,0.426795,0.731128,0.553725,0.571573,0.163792,0.41816,0.192845,0.258851,0.940114,0.756667,0.501248,0.405971,0.824997,0.0771274,0.900069,0.19034,0.312604,0.0663669,0.0773627,0.668308,0.464391,0.993302,0.241738,0.692534,0.732753,0.303196,0.429195,0.469141,0.770288,0.00673288,0.2304,0.868373,0.625963,0.56251,0.612472,0.668896,0.737285,0.355515,0.139019,0.871162,0.925708,0.626452,0.991011,0.599529,0.237403,0.946999,0.398261,0.861579,0.868643,0.477329,0.683513,0.683428,0.87394,0.993111,0.693451,0.820166,0.140733,0.37374,0.287579,0.598713,0.554876,0.860739,0.492497,0.267116,0.179825,0.276254,0.950054,0.932355,0.0469581,0.139325,0.0766913,0.313569,0.252006,0.485313,0.143025,0.662008,0.944215,0.623324,0.143684,0.185527,0.850185,0.382152,0.652548,0.789987,0.138928,0.229227,0.511152,0.98804,0.696507,0.136381,0.206269,0.372495,0.600147,0.983515,0.88817,0.529083,0.109083,0.94253,0.268599,0.319617,0.167526,0.376322,0.64485,0.659291,0.20257,0.981929,0.949272,0.714232,0.471724,0.19572,0.219214,0.780815,0.0424273,0.905401,0.257048,0.212702,0.326903,0.286039,0.89025,0.175014,0.0603454,0.251049,0.689938,0.899821,0.906347,0.43552,0.305175,0.871548,0.844673,0.117582,0.497619,0.17962,0.195344,0.0172678,0.769111,0.312481,0.362833,0.773389,0.128629,0.0343876,0.418232,0.865375,0.349201,0.118642,0.505642,0.241631,0.829105,0.815683,0.718819,0.564153,0.264278,0.629841,0.0719715,0.249069,0.425906,0.344764,0.652462,0.995772,0.609844,0.194387,0.130239,0.0257396,0.19244,0.783993,0.0537705,0.341001,0.108001,0.0110365,0.992009,0.618295,0.976979,0.865988,0.940853,0.434202,0.533741,0.424487,0.631065,0.468771,0.73143,0.970991,0.960832,0.914441,0.55913,0.215735,0.0496073,0.565887,0.397176,0.0435509,0.288663,0.17731,0.945972,0.203851,0.652474,0.671164,0.569072,0.800451,0.446876,0.245839,0.549389,0.155319,0.615306,0.281384,0.222855,0.00194144,0.379484,0.485436,0.173497,0.86196,0.225259,0.0726552,0.707896,0.773617,0.916007,0.444896,0.565165,0.595319,0.824868,0.449591,0.576217,0.423001,0.211358,0.99937,0.729396,0.996255,0.320498,0.959869,0.601286,0.760592,0.788613,0.606613,0.94224,0.0841146,0.796441,0.731514,0.364071,0.965248,0.188438,0.176452,0.616197,0.265785,0.252907,0.389799,0.874741,0.30226,0.395023,0.668626,0.308031,0.517714,0.95509,0.065226,0.502422,0.336441,0.169811,0.359823,0.491199,0.808821,0.0732606,0.538256,0.959904,0.826466,0.767472,0.306691,0.593133,0.806658,0.887783,0.924018,0.359042,0.199534,0.443488,0.0891035,0.315014,0.589638,0.578132,0.966018,0.29446,0.475287,0.695523,0.432207,0.501056,0.647334,0.592696,0.856428,0.102505,0.639021,0.631416,0.10761,0.865302,0.313919,0.608616,0.769062,0.642475,0.168542,0.254559,0.79885,0.577954,0.752229,0.0477252,0.771703,0.383286,0.233941,0.730655,0.630862,0.714664,0.623042,0.346881,0.509826,0.118527,0.943921,0.670061,0.88027,0.713166,0.337674,0.24652,0.930111,0.422754,0.202346,0.89876,0.595417,0.773628,0.667505,0.685614,0.75058,0.224652,0.236312,0.027954,0.481957,0.0635955,0.544746,0.366033,0.0101309,0.192731,0.570403,0.574316,0.19403,0.0420351,0.955413,0.502781,0.637568,0.733393,0.433558,0.964571,0.986808,0.940062,0.67851,0.0731009,0.639487,0.268925,0.803763,0.822031,0.262139,0.759142,0.741313,0.283726,0.925691,0.559319,0.854247,0.566365,0.592851,0.993984,0.412325,0.0128604,0.523819,0.465544,0.344334,0.32564,0.760611,0.731002,0.762565,0.224101,0.304474,0.313042,0.102782,0.985615,0.0624785,0.435935,0.643894,0.982829,0.812333,0.839902,0.756507,0.257349,0.82167,0.904541,0.0719929,0.698499,0.997104,0.966992,0.285848,0.122414,0.124879,0.829756,0.44036,0.378981,0.0976666,0.0117651,0.0245143,0.396448,0.115783,0.561361,0.485844,0.418187,0.909202,0.760605,0.286454,0.565534,0.556136,0.277955,0.19543,0.763385,0.443668,0.693586,0.55892,0.970309,0.0565684,0.430221,0.658584,0.824314,0.772802,0.931485,0.920117,0.693185,0.124396,0.663386,0.866685,0.178747,0.500371,0.341576,0.746206,0.335951,0.141646,0.968921,0.890762,0.828945,0.770402,0.175904,0.81287,0.00716817,0.690306,0.776843,0.000837445,0.435548,0.509358,0.0564048,0.795888,0.233958,0.866502,0.490663,0.140354,0.134783,0.26475,0.0954782,0.282529,0.78097,0.948493,0.525362,0.418776,0.857448,0.628434,0.99882,0.0648628,0.125932,0.785811,0.831601,0.856219,0.403519,0.811538,0.249248,0.96791,0.043846,0.330912,0.993616,0.939728,0.712028,0.390064,0.494537,0.256641,0.513265,0.71435,0.245923,0.0364782,0.821594,0.512057,0.201657,0.978298,0.602027,0.728395,0.495063,0.682596,0.0390227,0.0288212,0.940036,0.897361,0.941006,0.0231391,0.841552,0.847502,0.584151,0.701016,0.503975,0.44311,0.190339,0.634481,0.533592,0.523059,0.752119,0.838347,0.858457,0.468795,0.791402,0.533605,0.0568492,0.727378,0.404327,0.418741,0.575392,0.945347,0.111235,0.943278,0.457116,0.327728,0.858539,0.330329,0.818267,0.529402,0.819802,0.76171,0.0672893,0.452726,0.401555,0.824316,0.158679,0.800405,0.397325,0.146474,0.745676,0.788585,0.249184,0.259371,0.579896,0.112307,0.244049,0.911895,0.929142,0.381417,0.40277,0.502452,0.435481,0.552884,0.320318,0.721128,0.382756,0.625186,0.308638,0.17368,0.369268,0.269035,0.134794,0.0388218,0.774931,0.928743,0.748274,0.0331764,0.314302,0.0911506,0.0399694,0.395542,0.830658,0.178777,0.952314,0.491042,0.416706,0.530137,0.744018,0.689615,0.404568,0.139564,0.360507,0.746416,0.804132,0.256162,0.382701,0.106163,0.120318,0.555736,0.514573,0.22993,0.392057,0.375258,0.000909209,0.645463,0.609941,0.526794,0.984089,0.551546,0.148132,0.946997,0.965345,0.39491,0.393222,0.803895,0.434354,0.130439,0.835871,0.854271,0.00592184,0.534318,0.74558,0.907784,0.499927,0.743171,0.763892,0.844542,0.246682,0.403877,0.781826,0.941982,0.880868,0.66683,0.257623,0.267172,0.654538,0.935674,0.10553,0.81014,0.770641,0.533334,0.660567,0.529906,0.746304,0.384566,0.581299,0.227048,0.0627577,0.971327,0.412645,0.134723,0.20448,0.151647,0.352318,0.677537,0.0169441,0.213849,0.261742,0.625635,0.800452,0.185497,0.567905,0.64977,0.987302,0.894839,0.32111,0.599845,0.772091,0.142517,0.236217,0.827721,0.975026,0.374453,0.797772,0.305469,0.740603,0.307252,0.699662,0.592426,0.916469,0.836015,0.725039,0.0532634,0.998003,0.446137,0.625223,0.0899596,0.547876,0.357868,0.919405,0.998278,0.18426,0.163339,0.397395,0.141794,0.640432,0.302774,0.838945,0.850841,0.465695,0.656104,0.607766,0.802562,0.44685,0.611254,0.203925,0.965858,0.4414,0.37154,0.874682,0.308471,0.408513,0.746215,0.924159,0.509171,0.40089,0.193994,0.191674,0.470182,0.208564,0.266313,0.663188,0.0965933,0.850195,0.606575,0.396271,0.82088,0.837468,0.103456,0.947002,0.661436,0.845185,0.991439,0.504466,0.520211,0.470442,0.563291,0.114056,0.85252,0.573253,0.235039,0.463672,0.582983,0.983408,0.035774,0.107035,0.725262,0.925937,0.657999,0.332265,0.713053,0.612914,0.643474,0.479209,0.603412,0.924515,0.879148,0.674581,0.496732,0.0498394,0.0145653,0.994723,0.34527,0.271521,0.613349,0.502038,0.809394,0.158873,0.490247,0.649094,0.966864,0.661916,0.763707,0.0931751,0.584054,0.977823,0.882521,0.21002,0.297761,0.352161,0.971018,0.376146,0.264142,0.907189,0.0815336,0.181503,0.251899,0.156413,0.0124921,0.691972,0.0777266,0.992967,0.467474,0.548787,0.490684,0.746647,0.281994,0.445512,0.983085,0.490462,0.875872,0.950856,0.728128,0.760572,0.116498,0.983083,0.31921,0.251694,0.520288,0.426749,0.50488,0.551002,0.644593,0.665999,0.421509,0.340959,0.696505,0.737736,0.116576,0.568628,0.437816,0.611687,0.515135,0.201542,0.0598878,0.216452,0.684181,0.521618,0.0720648,0.346279,0.437571,0.506836,0.791996,0.322816,0.791707,0.648224,0.471895,0.182135,0.362268,0.560149,0.192503,0.271124,0.444914,0.475884,0.238609,0.00289154,0.789936,0.207383,0.319335,0.0688704,0.402194,0.436793,0.926316,0.286047,0.212747,0.845874,0.995365,0.349065,0.822677,0.829511,0.599814,0.0699621,0.829504,0.542057,0.250975,0.687307,0.702332,0.273944,0.915525,0.242556,0.10889,0.545856,0.958915,0.211468,0.764795,0.667983,0.437737,0.539746,0.565736,0.872208,0.998041,|0.928926,0.502285,0.202128,0.808783,0.999521,0.30343,0.913623,0.534797,0.728569,0.99202,0.696474,0.968995,0.745655,0.389213,0.318892,0.30428,0.608177,0.915633,0.899294,0.322827,0.943819,0.332951,0.785694,0.226691,0.70453,0.720639,0.648714,0.897747,0.978786,0.540056,0.824596,0.523623,0.160765,0.254216,0.44137,0.726863,0.254234,0.652057,0.563008,0.353848,0.100532,0.6268,0.810885,0.277018,0.778784,0.155811,0.102141,0.124638,0.336172,0.481057,0.797961,0.0852264,0.128676,0.724452,0.440818,0.768459,0.665126,0.151815,0.869328,0.464332,0.456093,0.208934,0.381679,0.187632,0.455973,0.435749,0.282414,0.0442334,0.178334,0.276148,0.658165,0.408716,0.352412,0.210545,0.301482,0.0776919,0.0774005,0.393241,0.385772,0.0299063,0.271903,0.230627,0.663068,0.17507,0.866914,0.740114,0.945648,0.402901,0.0907694,0.248345,0.00496346,0.210318,0.443934,0.498736,0.992167,0.605635,0.209105,0.649778,0.709553,0.0865003,0.522167,0.0348068,0.891872,0.625493,0.655308,0.107365,0.0287652,0.812638,0.237035,0.180688,0.817994,0.200254,0.915964,0.3503,0.73781,0.795905,0.149098,0.31607,0.85616,0.790782,0.90935,0.907908,0.82886,0.222302,0.974821,0.139074,0.871503,0.920394,0.103036,0.114474,0.788016,0.270287,0.368858,0.613278,0.609221,0.704763,0.269657,0.745024,0.84796,0.599008,0.116116,0.853303,0.908187,0.443996,0.73721,0.0571182,0.0789996,0.581287,0.00807428,0.906716,0.915176,0.412367,0.0471734,0.617073,0.666116,0.142008,0.435963,0.915705,0.220173,0.894323,0.0105636,0.176787,0.61493,0.62656,0.193126,0.752944,0.295269,0.0262163,0.762445,0.389499,0.509999,0.734987,0.670625,0.0108652,0.487186,0.496816,0.461733,0.823974,0.295481,0.0601513,0.357097,0.15218,0.408415,0.300808,0.881947,0.976131,0.609034,0.849185,0.69074,0.431111,0.606115,0.280217,0.914927,0.268154,0.386646,0.0265104,0.277053,0.73502,0.189863,0.129395,0.316674,0.904926,0.0886258,0.888879,0.279648,0.856073,0.609124,0.249426,0.353797,0.841849,0.173225,0.716355,0.558722,0.539524,0.824931,0.862521,0.404706,0.155888,0.775741,0.948089,0.732936,0.989835,0.363327,0.277473,0.511174,0.567681,0.388999,0.867843,0.901103,0.898859,0.433178,0.489024,0.348298,0.132075,0.149892,0.0359099,0.96636,0.829546,0.898786,0.119968,0.328145,0.406884,0.181931,0.946364,0.606163,0.235005,0.591604,0.566067,0.95237,0.204105,0.800081,0.751408,0.359467,0.749515,0.114674,0.563895,0.293242,0.579681,0.291323,0.0455245,0.252827,0.90755,0.348542,0.82652,0.997547,0.908085,0.952505,0.790479,0.42871,0.635586,0.484142,0.399302,0.768649,0.0606815,0.0771672,0.730842,0.490933,0.393042,0.251191,0.728555,0.591648,0.508414,0.997493,0.0196001,0.147268,0.239376,0.385662,0.288005,0.137685,0.826317,0.859316,0.249373,0.691144,0.59995,0.93136,0.0589707,0.290823,0.778666,0.220969,0.967541,0.341952,0.925375,0.991492,0.723697,0.264824,0.613341,0.51304,0.754211,0.704946,0.0586045,0.540417,0.577439,0.703708,0.709457,0.252785,0.581852,0.693519,0.249737,0.471445,0.75443,0.258723,0.672117,0.282494,0.00990719,0.188061,0.957238,0.82241,0.746584,0.572598,0.362982,0.469895,0.245915,0.549637,0.2039,0.41745,0.847588,0.726038,0.100015,0.0781937,0.261769,0.904539,0.432369,0.285173,0.285445,0.0981067,0.593701,0.166657,0.166839,0.0293542,0.365708,0.264756,0.355709,0.0538005,0.211558,0.477992,0.742706,0.495584,0.937307,0.110369,0.672241,0.143294,0.754752,0.117083,0.296782,0.812785,0.879108,0.15117,0.894892,0.474705,0.223036,0.271741,0.910689,0.685727,0.682754,0.540572,0.614713,0.782793,0.852958,0.790151,0.849196,0.923431,0.836957,0.685262,0.177953,0.635496,0.751172,0.562137,0.257505,0.329842,0.28672,0.198547,0.590759,0.88552,0.858407,0.395853,0.737013,0.865386,0.938815,0.847536,0.751284,0.154434,0.0722994,0.809192,0.274097,0.889058,0.847609,0.753362,0.742593,0.369171,0.666105,0.49944,0.0848548,0.255407,0.648428,0.962815,0.911519,0.255385,0.250936,0.458218,0.683835,0.721747,0.57947,0.380197,0.303359,0.325356,0.226545,0.0386522,0.429812,0.54034,0.718889,0.121776,0.843037,0.897112,0.740668,0.473802,0.239926,0.383948,0.681566,0.785948,0.416347,0.250896,0.463666,0.826777,0.764351,0.724994,0.160866,0.190281,0.150273,0.105922,0.776298,0.71973,0.55756,0.648839,0.631302,0.670376,0.92715,0.834136,0.075709,0.506215,0.897266,0.833044,0.559936,0.813358,0.722966,0.28806,0.482883,0.947837,0.231521,0.342711,0.399892,0.797338,0.291005,0.198088,0.923583,0.749697,0.591757,0.280931,0.0593457,0.38446,0.562525,0.341767,0.632909,0.978612,0.260667,0.253662,0.100738,0.996929,0.823568,0.48433,0.222284,0.229978,0.0545508,0.516023,0.821543,0.554927,0.804202,0.849701,0.862248,0.819488,0.628959,0.360012,0.794916,0.80872,0.633757,0.217178,0.359743,0.765883,0.722306,0.182109,0.0368395,0.925789,0.527222,0.605881,0.530282,0.256642,0.709242,0.934567,0.327476,0.843775,0.1476,0.252036,0.826382,0.249809,0.236219,0.709685,0.520233,0.872717,0.888837,0.815656,0.272693,0.0330256,0.973434,0.663365,0.57999,0.634912,0.557025,0.688328,0.0597261,0.382361,0.332658,0.165312,0.402118,0.962546,0.893279,0.257408,0.432013,0.335622,0.780195,0.442741,0.447739,0.34526,0.474938,0.702988,0.87398,0.931287,0.427826,0.821326,0.495856,0.901255,0.751664,0.91046,0.19765,0.0547055,0.23377,0.447986,0.664166,0.532752,0.481416,0.085649,0.889935,0.446573,0.80998,0.0858555,0.957602,0.508169,0.71474,0.865778,0.399794,0.524284,0.0544901,0.00228119,0.893745,0.421779,0.938327,0.308432,0.150903,0.70039,0.453558,0.229634,0.978248,0.528209,0.158323,0.368893,0.86992,0.249664,0.303146,0.158123,0.444024,0.905551,0.531571,0.785671,0.604041,0.752857,0.118668,0.161753,0.280585,0.122136,0.00507128,0.981477,0.373168,0.0555224,0.723286,0.298733,0.540948,0.433214,0.631645,0.563157,0.711721,0.992852,0.0459505,0.614559,0.558759,0.780634,0.0896736,0.147005,0.862583,0.1107,0.684796,0.962481,0.593565,0.302163,0.958399,0.192129,0.588775,0.367806,0.315236,0.338711,0.217943,0.770942,0.999407,0.53284,0.267761,0.262619,0.0531686,0.344114,0.942929,0.210387,0.624382,0.224344,0.385987,0.227105,0.996151,0.245251,0.345122,0.367577,0.192618,0.677802,0.752373,0.103246,0.543743,0.488632,0.951607,0.690207,0.497871,0.89663,0.822266,0.768707,0.255613,0.744939,0.963276,0.843343,0.670612,0.46751,0.339582,0.910794,0.67695,0.523134,0.792919,0.395695,0.11349,0.446382,0.13648,0.0168759,0.465122,0.401873,0.585223,0.237392,0.611679,0.52286,0.463756,0.388599,0.319993,0.006787,0.369898,0.510927,0.977794,0.0534005,0.784849,0.164288,0.0682604,0.649286,0.402311,0.542191,0.403281,0.33272,0.827442,0.972498,0.885602,0.523216,0.0564442,0.716103,0.939442,0.15423,0.406746,0.31758,0.191371,0.160532,0.0356495,0.446374,0.966941,0.524419,0.876777,0.60267,0.639156,0.669856,0.584732,0.646635,0.719427,0.469658,0.9106,0.243621,0.509697,0.821605,0.509076,0.133019,0.419567,0.00561404,0.44315,0.735287,0.932674,0.615718,0.929527,0.932623,0.170006,0.641083,0.860343,0.925299,0.846015,0.159763,0.455281,0.750056,0.0588028,0.451713,0.196087,0.454561,0.817102,0.382672,0.445708,0.570381,0.96635,0.409211,0.321085,0.270628,0.494968,0.643324,0.644649,0.0807016,0.203653,0.527565,0.370963,0.539257,0.935319,0.699364,0.400371,0.955022,0.890364,0.936642,0.337736,0.559962,0.23859,0.187345,0.223906,0.107516,0.335522,0.794556,0.594962,0.49635,0.0680902,0.913728,0.800441,0.562217,0.369239,0.295844,0.269725,0.910718,0.830915,0.579988,0.328961,0.0290014,0.931571,0.534784,0.50778,0.920218,0.289472,0.975102,0.0376155,0.617649,0.773448,0.479281,0.62259,0.376123,0.47521,0.280565,0.952145,0.493702,0.198741,0.49188,0.260593,0.399589,0.527352,0.854556,0.244137,0.363674,0.527153,0.0719826,0.692625,0.130912,0.220701,0.447497,0.824065,0.504809,0.35389,0.137472,0.36027,0.907991,0.23181,0.952822,0.887034,0.501698,0.711486,0.0835949,0.585072,0.236307,0.457635,0.434931,0.701674,0.0641593,0.41741,0.803213,0.32949,0.978962,0.0327896,0.424495,0.732532,0.757215,0.385142,0.896014,0.654122,0.722306,0.0299246,0.976485,0.90342,0.228736,0.914852,0.18111,0.150507,0.0904327,0.853789,0.109138,0.55766,0.138679,0.859508,0.770088,0.899925,0.663434,0.519233,0.656337,0.249518,0.745936,0.34908,0.323012,0.753106,0.172468,0.795742,0.855833,0.472188,0.472887,0.867151,0.685891,0.861569,0.820684,0.61098,0.142363,0.93795,0.826252,0.990948,0.902679,0.214182,0.18699,0.201704,0.222034,0.396332,0.0022279,0.195712,0.907712,0.579137,0.790384,0.229033,0.975693,0.795188,0.67165,0.655905,0.640738,0.931271,0.228304,0.968686,0.927616,0.878191,0.660254,0.290927,0.293343,0.181203,0.515175,0.450928,0.663358,0.446038,0.417939,0.247033,0.625815,0.500018,0.298867,0.821237,0.245255,0.998969,0.493213,0.114214,0.22197,0.344714,0.431031,0.604797,0.818463,0.85513,0.840325,0.131526,0.406467,0.742171,0.134438,0.0654465,0.240355,0.964713,0.943044,0.549451,0.756957,0.996981,0.139735,0.0208787,0.571913,0.558618,0.495672,0.578121,0.172785,0.611998,0.502768,0.682368,0.117865,0.854193,0.676465,0.59954,0.743339,0.560271,0.69821,0.21085,0.118756,0.136635,0.3961,0.111686,0.405699,0.361231,0.430781,0.898191,0.132522,0.869864,0.978986,0.985681,0.640508,0.768002,0.0977221,0.622553,0.111078,0.376225,0.0292358,0.993921,0.140061,0.650207,0.15596,0.940347,0.651779,0.654459,0.526267,0.129784,|0.720297,0.0263318,0.710933,0.998943,0.804767,0.629622,0.213994,0.51303,0.686394,0.177555,0.335833,0.584605,0.860795,0.909588,0.230228,0.305976,0.88232,0.792815,0.621335,0.782547,0.851452,0.736246,0.035686,0.863978,0.483205,0.343042,0.430717,0.23548,0.978387,0.141404,0.170568,0.900498,0.776234,0.565834,0.450355,0.20182,0.112141,0.75906,0.33636,0.74643,0.299965,0.406086,0.915488,0.26806,0.263294,0.025436,0.442236,0.0338658,0.922611,0.671838,0.540385,0.242268,0.361056,0.707081,0.761349,0.130217,0.863242,0.540074,0.6642,0.750884,0.0210195,0.260235,0.671477,0.148233,0.539108,0.808092,0.0920861,0.306534,0.78712,0.0634517,0.200659,0.389028,0.170413,0.647048,0.889481,0.107964,0.367612,0.142292,0.735095,0.819959,0.805855,0.790306,0.13735,0.834299,0.290125,0.363578,0.612285,0.99672,0.530857,0.527634,0.230361,0.274017,0.907514,0.0162552,0.236807,0.16806,0.184026,0.157933,0.171536,0.555255,0.616727,0.974277,0.338484,0.065872,0.641157,0.271028,0.655739,0.135434,0.786427,0.233805,0.364825,0.546438,0.955897,0.204815,0.63504,0.420868,0.15532,0.200715,0.913875,0.047264,0.181714,0.630407,0.183014,0.740378,0.653864,0.70414,0.794928,0.257649,0.0299693,0.978908,0.537772,0.441445,0.779363,0.186356,0.357034,0.329983,0.221598,0.215163,0.478326,0.0796423,0.537691,0.706253,0.522086,0.634902,0.812572,0.0160472,0.76364,0.11284,0.23757,0.740552,0.636151,0.584875,0.0916377,0.372452,0.128047,0.757833,0.758854,0.528551,0.0722137,0.650102,0.396787,0.312086,0.042235,0.99845,0.396387,0.728945,0.949299,0.170061,0.539485,0.963179,0.880424,0.30101,0.91162,0.658926,0.159923,0.820089,0.337538,0.359217,0.552433,0.7839,0.291449,0.380468,0.953093,0.265885,0.931227,0.0901095,0.463289,0.691555,0.372069,0.766161,0.288363,0.823069,0.489066,0.657707,0.94985,0.156414,0.637075,0.261268,0.528754,0.770536,0.294374,0.868463,0.87698,0.46967,0.797522,0.927942,0.200486,0.353705,0.822634,0.381364,0.561304,0.209465,0.982043,0.672482,0.470568,0.673574,0.891419,0.162262,0.429349,0.0552915,0.230111,0.352899,0.893458,0.355114,0.283162,0.0182645,0.157954,0.504438,0.427249,0.0388831,0.528093,0.998704,0.563288,0.808497,0.33624,0.270253,0.124528,0.964383,0.0743806,0.809509,0.368554,0.129573,0.782012,0.689875,0.0863065,0.388323,0.133602,0.638474,0.560814,0.550996,0.979336,0.92042,0.869738,0.745719,0.68831,0.577224,0.176965,0.709081,0.133869,0.881114,0.640718,0.423206,0.720167,0.866026,0.109639,0.922537,0.491436,0.371575,0.0720813,0.173184,0.394131,0.95869,0.68397,0.206543,0.110141,0.590184,0.637645,0.110556,0.220246,0.46654,0.45162,0.107371,0.190228,0.939592,0.410812,0.656308,0.0417818,0.412866,0.420294,0.562339,0.214457,0.523759,0.274156,0.554379,0.581499,0.962552,0.413169,0.713885,0.00727254,0.354575,0.572108,0.111374,0.526826,0.655253,0.778319,0.0725841,0.0754884,0.247562,0.273988,0.808372,0.51337,0.860473,0.89741,0.692761,0.76567,0.495166,0.796423,0.109322,0.92513,0.162052,0.303814,0.12208,0.746975,0.228698,0.0915114,0.785906,0.808119,0.0691609,0.246036,0.440774,0.76319,0.647312,0.830737,0.584399,0.863375,0.946841,0.343809,0.59475,0.58783,0.852496,0.0908949,0.501101,0.732618,0.333113,0.71929,0.791601,0.263383,0.769585,0.496573,0.740622,0.217701,0.683626,0.125696,0.953725,0.0431727,0.209018,0.0508182,0.610285,0.35778,0.25067,0.463385,0.392777,0.0551963,0.629082,0.217804,0.426627,0.41845,0.922318,0.759749,0.524442,0.530886,0.000991881,0.733046,0.177186,0.828623,0.985313,0.617964,0.97893,0.801476,0.43141,0.406926,0.143945,0.556507,0.323192,0.542875,0.802118,0.733538,0.82744,0.460328,0.99292,0.800834,0.686907,0.488198,0.547762,0.653457,0.805014,0.307314,0.586077,0.267635,0.72761,0.20462,0.873444,0.937761,0.948105,0.617556,0.73409,0.887857,0.415276,0.558859,0.677078,0.395279,0.772565,0.347218,0.766717,0.952896,0.647481,0.143686,0.074895,0.493379,0.0823437,0.00617641,0.480775,0.992738,0.115178,0.454769,0.450404,0.333722,0.631145,0.362615,0.376833,0.116659,0.426936,0.309499,0.312525,0.492069,0.40583,0.22832,0.88434,0.0356817,0.3934,0.651856,0.738827,0.174846,0.233633,0.0956036,0.404954,0.0999979,0.653464,0.0253301,0.913812,0.408846,0.00583458,0.319265,0.0123789,0.195494,0.484551,0.392001,0.237018,0.046159,0.314805,0.455404,0.00383425,0.255334,0.566141,0.363909,0.952923,0.191832,0.904364,0.0213792,0.582482,0.0928513,0.101436,0.39116,0.400068,0.442443,0.198556,0.950083,0.603281,0.759731,0.382894,0.562193,0.789332,0.0153253,0.478221,0.237965,0.150812,0.15123,0.353151,0.890119,0.715058,0.500572,0.0721248,0.37626,0.278376,0.944212,0.54439,0.490313,0.487046,0.427184,0.446745,0.0505228,0.7981,0.41313,0.673611,0.145313,0.830849,0.344638,0.0923345,0.455256,0.786693,0.230645,0.0358982,0.789038,0.373855,0.173699,0.999874,0.095399,0.268867,0.997039,0.0638634,0.688313,0.289952,0.813155,0.540928,0.790481,0.672008,0.410521,0.177876,0.842668,0.597796,0.797771,0.319497,0.991369,0.623649,0.702598,0.970787,0.874073,0.452625,0.439045,0.502785,0.482955,0.206456,0.0156085,0.0394491,0.556697,0.736001,0.992917,0.696012,0.818318,0.526569,0.12814,0.224911,0.00222075,0.626833,0.997953,0.0917124,0.700392,0.337557,0.413212,0.171967,0.435471,0.285856,0.578678,0.62866,0.829249,0.891214,0.127916,0.152305,0.971635,0.272443,0.366946,0.699837,0.00187802,0.00498617,0.908846,0.69774,0.718074,0.288041,0.349032,0.372981,0.853165,0.683086,0.148556,0.312966,0.370593,0.220465,0.824144,0.150573,0.635776,0.605923,0.881473,0.153359,0.277573,0.8055,0.913684,0.586812,0.331391,0.773962,0.655987,0.315698,0.773488,0.51477,0.908966,0.665284,0.619202,0.255491,0.705405,0.325428,0.0668947,0.29965,0.365498,0.807686,0.271234,0.437324,0.00469643,0.585609,0.518956,0.899572,0.542985,0.874914,0.00485665,0.119956,0.720841,0.879162,0.882536,0.507869,0.43622,0.512807,0.309286,0.269754,0.928362,0.583488,0.169427,0.923981,0.527488,0.760945,0.183708,0.815108,0.0314393,0.405169,0.346725,0.273466,0.761913,0.493465,0.523238,0.636875,0.0658183,0.596232,0.965158,0.981083,0.13936,0.259855,0.654493,0.267701,0.650673,0.596292,0.701663,0.222197,0.722156,0.751575,0.928137,0.444462,0.648269,0.409301,0.225192,0.790129,0.733769,0.828894,0.071474,0.135882,0.0133445,0.476407,0.0429913,0.248567,0.717075,0.286252,0.91144,0.308925,0.502694,0.447456,0.134807,0.594816,0.141235,0.387288,0.252646,0.0394191,0.421135,0.615838,0.455965,0.950701,0.769018,0.592926,0.646503,0.0653832,0.18108,0.646363,0.373041,0.206204,0.309372,0.455509,0.696603,0.503475,0.86704,0.059933,0.99773,0.180735,0.966597,0.786047,0.302242,0.253063,0.856406,0.880865,0.389285,0.996953,0.580203,0.523392,0.52365,0.904886,0.63947,0.958377,0.0588355,0.363734,0.519631,0.80916,0.906448,0.0321038,0.951656,0.294629,0.821612,0.522845,0.483215,0.0980055,0.81045,0.702613,0.104111,0.912272,0.637604,0.149452,0.609093,0.998934,0.599906,0.586604,0.432739,0.579038,0.875054,0.708446,0.960543,0.592174,0.600258,0.854037,0.715444,0.523228,0.325989,0.735027,0.275768,0.569664,0.209966,0.842218,0.398516,0.47918,0.47571,0.460702,0.491799,0.362147,0.727883,0.382232,0.171657,0.815307,0.463723,0.478956,0.870341,0.702969,0.561641,0.296824,0.298111,0.875871,0.558293,0.234121,0.408856,0.495084,0.3098,0.870149,0.249301,0.220978,0.334076,0.10623,0.116902,0.292849,0.658867,0.962729,0.938776,0.799868,0.790673,0.758269,0.203088,0.296796,0.0103592,0.856046,0.150072,0.138628,0.854643,0.151689,0.797686,0.504688,0.133498,0.468869,0.576045,0.557136,0.922718,0.462646,0.293661,0.171784,0.860656,0.482217,0.749741,0.851394,0.375083,0.471319,0.444999,0.502101,0.111286,0.106845,0.66155,0.424072,0.911993,0.254108,0.585449,0.207102,0.350302,0.200265,0.227021,0.645138,0.479066,0.910661,0.495082,0.408309,0.0772281,0.648175,0.175509,0.0337866,0.91072,0.419466,0.470622,0.631251,0.383281,0.71145,0.951231,0.379005,0.242777,0.603248,0.0435912,0.847513,0.576389,0.351464,0.918356,0.00595623,0.833568,0.539671,0.93995,0.439601,0.322877,0.818997,0.3813,0.0321184,0.357364,0.354114,0.494304,0.110473,0.20266,0.488172,0.419509,0.748058,0.648972,0.770559,0.425395,0.225896,0.425249,0.744298,0.118206,0.340073,0.476331,0.0913824,0.164415,0.388517,0.380203,0.170414,0.620256,0.420212,0.648954,0.961766,0.617079,0.431062,0.246179,0.393051,0.230814,0.0179935,0.803796,0.101497,0.530787,0.843916,0.857898,0.942752,0.0133104,0.598248,0.947309,0.940207,0.503696,0.61041,0.189488,0.694422,0.160198,0.266101,0.62223,0.703433,0.753061,0.375189,0.942714,0.43144,0.958047,0.024826,0.257755,0.578729,0.569137,0.691783,0.348252,0.0341539,0.358917,0.942225,0.414299,0.501098,0.54075,0.199562,0.865413,0.621959,0.213959,0.176987,0.196982,0.586939,0.486312,0.235613,0.900395,0.280718,0.509824,0.339746,0.790121,0.759287,0.835424,0.459358,0.188306,0.233992,0.571421,0.0988066,0.267678,0.815451,0.122345,0.420269,0.00589424,0.991414,0.826082,0.737503,0.636096,0.377691,0.586246,0.423052,0.746464,0.249713,0.0218149,0.915984,0.467426,0.236172,0.466701,0.394782,0.621394,0.877137,0.00541848,0.59854,0.334936,0.874174,0.982258,0.607118,0.856012,0.0745732,0.165949,0.878441,0.0508481,0.246097,0.748385,0.0751518,0.670632,0.361212,0.717948,0.0508471,0.857818,0.338438,0.778134,0.262695,0.511788,0.181337,0.861938,0.614129,|0.330617,0.461085,0.00544995,0.0247445,0.381895,0.411339,0.426716,0.575212,0.717183,0.116179,0.475945,0.688147,0.753222,0.449299,0.0674198,0.335764,0.0679235,0.969663,0.158993,0.814865,0.349954,0.658033,0.822711,0.277175,0.78125,0.963269,0.906492,0.870628,0.0721852,0.146703,0.640269,0.342786,0.727668,0.437292,0.386215,0.312761,0.644743,0.0817552,0.938752,0.711391,0.100018,0.505714,0.910275,0.377552,0.753464,0.805683,0.831457,0.463473,0.966628,0.856086,0.800129,0.296045,0.0721474,0.614171,0.215248,0.772553,0.708196,0.532149,0.0487387,0.765101,0.256406,0.108195,0.091671,0.578277,0.8062,0.86719,0.5676,0.300145,0.761581,0.505386,0.0289924,0.754299,0.886524,0.291343,0.76532,0.64124,0.518366,0.292493,0.922179,0.507762,0.787504,0.838634,0.865714,0.517765,0.151756,0.151111,0.369859,0.791672,0.494072,0.550586,0.846347,0.906549,0.686971,0.382892,0.941261,0.84722,0.562933,0.358367,0.238932,0.442957,0.161076,0.428296,0.885925,0.503123,0.484254,0.652799,0.228531,0.0302464,0.713073,0.954923,0.966992,0.631017,0.936454,0.663378,0.573869,0.652963,0.654957,0.498202,0.192186,0.112598,0.432309,0.143643,0.116933,0.553915,0.120279,0.745791,0.400993,0.619218,0.782382,0.546213,0.544758,0.0113283,0.929945,0.697859,0.841584,0.0776783,0.0557018,0.654967,0.397676,0.759358,0.0382764,0.550228,0.46713,0.471987,0.742311,0.00720155,0.342942,0.882456,0.941777,0.674012,0.860791,0.36687,0.878728,0.812265,0.627423,0.664616,0.446344,0.480423,0.207023,0.636836,0.475646,0.193906,0.801753,0.691534,0.404708,0.131885,0.0204499,0.970549,0.441794,0.161365,0.429129,0.219874,0.665887,0.780513,0.725894,0.207658,0.718675,0.240577,0.88561,0.642493,0.724599,0.0232975,0.0272872,0.790328,0.281671,0.307573,0.677143,0.340853,0.32078,0.863943,0.432852,0.0296088,0.821486,0.81609,0.94316,0.530602,0.210475,0.809746,0.0207353,0.0721477,0.633239,0.924603,0.554545,0.650359,0.206131,0.501337,0.86656,0.361043,0.416918,0.595249,0.942328,0.589439,0.199586,0.104361,0.335841,0.480793,0.272798,0.989192,0.937678,0.522196,0.447549,0.358459,0.866297,0.0628288,0.810033,0.578718,0.951137,0.791578,0.198902,0.610936,0.962814,0.0354444,0.367835,0.323218,0.448948,0.246622,0.89203,0.574483,0.182893,0.662801,0.748688,0.539784,0.695258,0.159038,0.831055,0.853803,0.0573031,0.239137,0.518884,0.604905,0.802849,0.317122,0.517082,0.363645,0.173385,0.624977,0.18019,0.43891,0.506782,0.736126,0.00436717,0.79558,0.167307,0.401884,0.0928466,0.54185,0.299569,0.275024,0.94119,0.865333,0.777484,0.97118,0.433391,0.888929,0.0653504,0.390105,0.899509,0.176563,0.904663,0.492071,0.88848,0.873813,0.567025,0.0758918,0.333775,0.994265,0.743638,0.92463,0.478871,0.464238,0.269177,0.0735937,0.916789,0.676882,0.646036,0.748189,0.109898,0.697312,0.321298,0.476931,0.109113,0.369293,0.649987,0.298214,0.228713,0.358726,0.565655,0.455504,0.0571361,0.566668,0.852619,0.424486,0.955651,0.442046,0.75492,0.995212,0.979737,0.661986,0.204821,0.0464866,0.262004,0.882505,0.441999,0.555322,0.64162,0.269295,0.216856,0.430439,0.891647,0.144032,0.134251,0.113572,0.98663,0.219929,0.902705,0.184146,0.938688,0.590654,0.646061,0.837875,0.156687,0.878197,0.283265,0.632053,0.253242,0.53707,0.182614,0.162705,0.457874,0.510718,0.365014,0.632538,0.384294,0.735757,0.116804,0.0823794,0.0490244,0.561154,0.539457,0.179529,0.544966,0.906255,0.0416182,0.997043,0.137433,0.787896,0.303267,0.782821,0.739897,0.935997,0.206914,0.391002,0.385469,0.592696,0.547748,0.385689,0.89835,0.0429121,0.191451,0.836515,0.703905,0.144945,0.723678,0.810867,0.945172,0.57611,0.90088,0.39504,0.931786,0.569234,0.00935751,0.0663543,0.989525,0.00869668,0.0860333,0.103703,0.56221,0.722916,0.59536,0.842774,0.568761,0.927092,0.243576,0.187387,0.75921,0.933199,0.246733,0.675703,0.395396,0.212309,0.309335,0.996961,0.5718,0.228575,0.740521,0.0662814,0.913652,0.806182,0.548756,0.412609,0.446858,0.634632,0.763626,0.255469,0.195177,0.236381,0.189778,0.204621,0.273634,0.676545,0.666911,0.158892,0.574945,0.00159973,0.559094,0.351261,0.0279787,0.0579381,0.610086,0.370547,0.826265,0.862875,0.634098,0.796683,0.215451,0.65531,0.881625,0.766087,0.18005,0.285661,0.563437,0.721281,0.281727,0.78995,0.362476,0.0563789,0.150953,0.571193,0.3913,0.990133,0.572331,0.0354989,0.977967,0.101517,0.0202789,0.742934,0.897821,0.913458,0.435224,0.493288,0.344431,0.905808,0.843573,0.734576,0.377768,0.631844,0.782851,0.536776,0.301069,0.124211,0.578172,0.530033,0.687598,0.33055,0.0838526,0.567161,0.843848,0.242809,0.161137,0.124024,0.212108,0.0423072,0.622799,0.100461,0.354675,0.480342,0.2379,0.194913,0.552231,0.477277,0.655222,0.314227,0.0261843,0.757421,0.315453,0.0756446,0.0188253,0.99741,0.666331,0.790604,0.561035,0.929743,0.868242,0.77179,0.170413,0.997757,0.274202,0.93255,0.712868,0.150804,0.738155,0.891397,0.950085,0.582766,0.615772,0.454799,0.651901,0.561927,0.0930561,0.862838,0.120147,0.00940669,0.212958,0.0565088,0.762162,0.320027,0.715063,0.474571,0.395996,0.800276,0.500331,0.910473,0.439887,0.204449,0.187358,0.159264,0.0893631,0.295256,0.251736,0.963388,0.260192,0.501426,0.93407,0.187775,0.973474,0.860938,0.0589837,0.64052,0.0480326,0.0746479,0.0130274,0.029097,0.268888,0.111942,0.0305094,0.660865,0.288471,0.262133,0.979632,0.227154,0.881904,0.636835,0.991587,0.756406,0.259943,0.777551,0.00129497,0.390375,0.248146,0.590336,0.759873,0.657325,0.105555,0.208308,0.0592508,0.377802,0.35381,0.973062,0.503123,0.529329,0.249395,0.685545,0.120598,0.378881,0.640354,0.0374823,0.471665,0.584963,0.108113,0.969978,0.456637,0.374748,0.203218,0.350648,0.600189,0.709123,0.951171,0.423268,0.390083,0.30345,0.748322,0.662595,0.205309,0.0372466,0.291599,0.0467705,0.0123674,0.0727472,0.759677,0.707009,0.00293308,0.477079,0.0608672,0.477892,0.324855,0.877129,0.553813,0.617907,0.112613,0.568373,0.101767,0.476193,0.751891,0.750905,0.571466,0.0857053,0.133697,0.998195,0.725786,0.741059,0.849283,0.328163,0.00657946,0.110467,0.306428,0.469028,0.764631,0.304408,0.122557,0.963664,0.659585,0.844709,0.469212,0.749039,0.169611,0.744524,0.13088,0.909896,0.666838,0.634442,0.683266,0.904383,0.231123,0.548398,0.130751,0.907464,0.857637,0.34379,0.333036,0.59719,0.217469,0.277522,0.0690507,0.742388,0.628384,0.14217,0.118551,0.206802,0.347653,0.529317,0.333195,0.743353,0.0864961,0.215004,0.0934529,0.442519,0.185577,0.892018,0.144567,0.421,0.928871,0.871844,0.795481,0.396107,0.0921793,0.0865384,0.219206,0.93572,0.315628,0.977901,0.518315,0.319695,0.0177025,0.623008,0.471391,0.184764,0.677344,0.241576,0.334276,0.419229,0.0123547,0.549013,0.544151,0.0701604,0.585034,0.965632,0.413222,0.659637,0.671612,0.4764,0.0662679,0.190462,0.0839072,0.686295,0.740789,0.915941,0.011834,0.191274,0.907808,0.882186,0.554699,0.905033,0.656365,0.107788,0.493075,0.851442,0.709844,0.483004,0.980927,0.758288,0.162709,0.295308,0.386485,0.391866,0.751998,0.289972,0.488426,0.122012,0.0635365,0.329584,0.886458,0.880287,0.174688,0.776876,0.496059,0.84048,0.858924,0.378479,0.0879746,0.290314,0.277066,0.337581,0.911647,0.116999,0.233669,0.840289,0.552202,0.901661,0.682273,0.0197948,0.11123,0.393661,0.759569,0.962757,0.190628,0.833934,0.745397,0.908555,0.609832,0.00575805,0.640856,0.766287,0.0282349,0.403054,0.889313,0.40947,0.06535,0.573476,0.247335,0.473912,0.498357,0.050482,0.882728,0.475403,0.823393,0.0217441,0.100897,0.402136,0.57109,0.00460422,0.907562,0.37253,0.850437,0.25653,0.698379,0.494932,0.956359,0.687686,0.451054,0.565322,0.38112,0.574401,0.221682,0.806278,0.424363,0.713233,0.417236,0.627897,0.906491,0.999711,0.803178,0.589396,0.997994,0.428929,0.714587,0.341429,0.551299,0.36481,0.706625,0.271792,0.637333,0.992077,0.373993,0.415622,0.281008,0.475666,0.579766,0.148671,0.955382,0.743483,0.0233744,0.475776,0.433202,0.919464,0.796463,0.924666,0.660593,0.685152,0.847743,0.792318,0.359577,0.439929,0.037951,0.915409,0.10375,0.171099,0.768298,0.183596,0.577771,0.000757575,0.28772,0.169365,0.215862,0.763709,0.573633,0.443289,0.0950124,0.419942,0.561858,0.612669,0.187192,0.81044,0.141328,0.804018,0.513292,0.0325169,0.106561,0.520238,0.779581,0.111237,0.259944,0.93334,0.940785,0.0170444,0.418589,0.406939,0.219971,0.399713,0.42694,0.776934,0.538275,0.748706,0.370708,0.156068,0.438497,0.089754,0.0979941,0.790811,0.48837,0.27705,0.0933837,0.573588,0.470161,0.144961,0.874804,0.688225,0.547732,0.806473,0.685105,0.938029,0.0988102,0.669596,0.739074,0.952205,0.233792,0.466437,0.0199122,0.814066,0.248065,0.848874,0.735364,0.428378,0.194759,0.128656,0.639333,0.884085,0.603995,0.743641,0.948871,0.125381,0.735032,0.0556738,0.456144,0.310748,0.489076,0.204322,0.564743,0.255142,0.658734,0.0813166,0.234926,0.245996,0.545984,0.181599,0.638074,0.537813,0.774834,0.550642,0.259287,0.0851654,0.816589,0.481572,0.601591,0.133427,0.241848,0.258585,0.720545,0.290289,0.398203,0.509078,0.180717,0.546253,0.954196,0.198597,0.557612,0.803252,0.775953,0.882174,0.798236,0.949354,0.337097,0.43867,0.42844,0.562855,0.414273,0.0621055,0.971555,0.814289,0.432119,0.491919,0.667808,0.610047,0.118561,0.368003,0.0644149,0.293566,0.470597,0.880013,0.977638,0.451348,0.597497,0.683721,0.527268,0.679128,0.718086,0.725545,0.497932,0.548105,0.45462,0.673627,|0.925357,0.306345,0.368619,0.704717,0.673509,0.566174,0.0900226,0.177669,0.563616,0.373488,0.635359,0.361431,0.501544,0.555144,0.258767,0.83027,0.0377321,0.818402,4.78625e-05,0.161369,0.898215,0.56031,0.905783,0.558455,0.362756,0.530592,0.0130562,0.479357,0.874317,0.489923,0.693131,0.736842,0.00848603,0.312851,0.706534,0.750667,0.908917,0.046456,0.814903,0.266294,0.857775,0.683384,0.158871,0.740116,0.882125,0.974929,0.108058,0.0104676,0.647727,0.65119,0.316385,0.672706,0.976112,0.347676,0.805202,0.246252,0.562104,0.727415,0.87209,0.119272,0.27635,0.589613,0.00211966,0.5313,0.0461057,0.51851,0.718879,0.86834,0.94157,0.649444,0.94644,0.863222,0.16073,0.431029,0.557002,0.932946,0.354587,0.544663,0.535749,0.557409,0.513065,0.714705,0.75934,0.0583012,0.131629,0.759366,0.953993,0.777555,0.311656,0.108065,0.621649,0.761305,0.596299,0.213206,0.889012,0.240993,0.0887032,0.0293072,0.796986,0.872736,0.926241,0.469008,0.675176,0.742492,0.410364,0.539979,0.835471,0.77761,0.995645,0.153288,0.827547,0.380071,0.806201,0.837165,0.284382,0.252461,0.077033,0.236211,0.997897,0.253544,0.230831,0.311285,0.585612,0.89123,0.232775,0.979152,0.291671,0.472815,0.285645,0.079379,0.0612457,0.267403,0.154456,0.528923,0.332658,0.342516,0.358038,0.361543,0.705383,0.341496,0.898377,0.557976,0.238748,0.416864,0.578737,0.964548,0.071609,0.931478,0.645927,0.150388,0.319394,0.45366,0.338811,0.608031,0.389841,0.286522,0.705763,0.89972,0.411493,0.677673,0.169826,0.685438,0.223542,0.933433,0.736061,0.101731,0.185994,0.667893,0.286842,0.0361336,0.0455834,0.446874,0.857378,0.0246838,0.277357,0.421994,0.622004,0.0890445,0.790632,0.954597,0.760662,0.796118,0.13415,0.549392,0.615011,0.217361,0.518249,0.22194,0.0188581,0.835946,0.337921,0.515787,0.40039,0.41696,0.672334,0.0974662,0.0998687,0.125088,0.0427005,0.52982,0.421828,0.370708,0.445003,0.949693,0.0435278,0.810759,0.544705,0.148071,0.556651,0.949706,0.606591,0.756037,0.150463,0.287899,0.0255753,0.477255,0.951544,0.768089,0.100538,0.0821704,0.608651,0.720313,0.593407,0.128764,0.954514,0.287098,0.26454,0.758553,0.294407,0.206012,0.286255,0.577844,0.853544,0.611752,0.440733,0.420518,0.856725,0.204813,0.911019,0.418973,0.807383,0.694345,0.701015,0.540652,0.531919,0.0982961,0.758403,0.717029,0.90739,0.0280893,0.152527,0.64854,0.724061,0.487939,0.325022,0.426662,0.0977173,0.910527,0.609246,0.0463003,0.569568,0.303806,0.296773,0.812187,0.571306,0.533418,0.911897,0.163831,0.0262622,0.3706,0.104913,0.752813,0.477772,0.904323,0.685843,0.342001,0.28608,0.200944,0.310988,0.849045,0.75626,0.858171,0.606045,0.714689,0.818798,0.766363,0.153137,0.136695,0.78311,0.551479,0.410854,0.145699,0.00962818,0.908041,0.736507,0.941163,0.323012,0.528947,0.436952,0.546281,0.84647,0.514669,0.00764662,0.281406,0.366996,0.782506,0.621578,0.923407,0.345801,0.460842,0.510758,0.949598,0.176219,0.921407,0.796199,0.976144,0.0323724,0.615583,0.251741,0.954776,0.118007,0.652296,0.287954,0.0987113,0.488604,0.316807,0.0234224,0.538065,0.340987,0.2375,0.84761,0.237184,0.88278,0.213755,0.188553,0.450532,0.940175,0.459867,0.677342,0.925634,0.50359,0.496133,0.31463,0.751038,0.0145682,0.873981,0.431561,0.844517,0.873571,0.0143704,0.959515,0.129191,0.282482,0.7883,0.876907,0.346143,0.795186,0.541239,0.764299,0.102237,0.713208,0.0784457,0.214522,0.152797,0.249979,0.798708,0.174332,0.0919698,0.957158,0.00639057,0.255564,0.253919,0.0547037,0.261925,0.172164,0.915538,0.196086,0.645897,0.702891,0.573418,0.131463,0.251677,0.233888,0.465066,0.0331386,0.211771,0.608322,0.982775,0.0286589,0.0704142,0.479578,0.646628,0.710232,0.949737,0.536377,0.549068,0.753472,0.180857,0.266804,0.0567576,0.0461063,0.908957,0.794897,0.536358,0.444481,0.19465,0.667234,0.706993,0.807027,0.354479,0.814727,0.878737,0.807495,0.761565,0.229471,0.908562,0.401504,0.230606,0.899228,0.411164,0.877823,0.307616,0.396238,0.35011,0.948311,0.375488,0.629673,0.622638,0.387559,0.85778,0.402291,0.658839,0.408414,0.737516,0.158633,0.498666,0.149984,0.769102,0.276724,0.141348,0.079813,0.248348,0.0441788,0.90206,0.112006,0.750134,0.413842,0.143781,0.862996,0.700512,0.615804,0.0144037,0.538415,0.547041,0.921819,0.640378,0.942873,0.698914,0.169192,0.64382,0.640632,0.264435,0.143992,0.21282,0.721812,0.646447,0.311938,0.101623,0.488318,0.216857,0.344003,0.0838776,0.742987,0.585437,0.531727,0.727796,0.922989,0.251916,0.236522,0.974797,0.621244,0.175057,0.221028,0.122957,0.390952,0.683546,0.643709,0.689736,0.482762,0.895196,0.389296,0.481702,0.753517,0.934299,0.0645179,0.0101296,0.0666491,0.130216,0.699198,0.933232,0.921802,0.317191,0.0359699,0.246435,0.684643,0.699103,0.318681,0.0872256,0.667737,0.711723,0.591201,0.178149,0.0962153,0.0837594,0.268,0.656876,0.386549,0.84017,0.989554,0.522501,0.878905,0.167604,0.665181,0.341457,0.884068,0.932844,0.746396,0.141222,0.227845,0.711265,0.0492709,0.531716,0.434787,0.249853,0.713743,0.856011,0.133518,0.284183,0.439185,0.134941,0.945999,0.654209,0.38141,0.347292,0.663005,0.148352,0.864424,0.558349,0.807733,0.949143,0.460161,0.319853,0.225562,0.0948028,0.628989,0.00154835,0.160411,0.696835,0.285504,0.274615,0.922764,0.320578,0.403551,0.779529,0.431923,0.986874,0.636674,0.992644,0.166831,0.551416,0.812598,0.634562,0.806631,0.876624,0.974443,0.661263,0.475528,0.161721,0.543475,0.932144,0.764712,0.254674,0.206556,0.0519286,0.460248,0.0957469,0.34524,0.100359,0.601551,0.390441,0.886132,0.501037,0.756141,0.563989,0.408797,0.154589,0.230775,0.70568,0.183899,0.951732,0.611447,0.621094,0.24781,0.54728,0.314163,0.693867,0.676604,0.352501,0.208677,0.12819,0.343524,0.129864,0.852652,0.70943,0.140359,0.198205,0.575707,0.429131,0.308499,0.65668,0.604741,0.28267,0.0966765,0.681311,0.636257,0.076297,0.0888116,0.338949,0.121322,0.842493,0.815213,0.128317,0.217086,0.144283,0.797456,0.824018,0.50575,0.244362,0.305551,0.538537,0.141656,0.810474,0.13988,0.814088,0.85496,0.367556,0.295631,0.228382,0.192241,0.210841,0.420886,0.964749,0.344107,0.238396,0.16209,0.316595,0.88662,0.439106,0.509913,0.613519,0.106984,0.176245,0.874782,0.19238,0.14183,0.623677,0.785238,0.328914,0.0814323,0.89038,0.334988,0.693759,0.85312,0.404175,0.632935,0.530374,0.0464954,0.677129,0.749036,0.751276,0.604838,0.0804815,0.540692,0.76828,0.078913,0.47353,0.409805,0.825526,0.729806,0.86709,0.0785231,0.540209,0.6933,0.0985228,0.539345,0.664385,0.658282,0.255499,0.449006,0.775442,0.401862,0.35987,0.802829,0.465538,0.91433,0.878963,0.940865,0.516137,0.326749,0.354113,0.816611,0.325619,0.939209,0.8847,0.876093,0.0597057,0.694212,0.0605298,0.537438,0.301206,0.179231,0.461394,0.697246,0.847786,0.0267267,0.766901,0.98204,0.925057,0.111268,0.0622936,0.394399,0.178808,0.491417,0.164786,0.170602,0.574046,0.995862,0.867853,0.916284,0.800594,0.330347,0.751214,0.591257,0.831162,0.941576,0.187479,0.693521,0.180665,0.786244,0.0997038,0.431304,0.628279,0.73773,0.797968,0.290782,0.378491,0.968289,0.391924,0.979251,0.941922,0.968387,0.0565234,0.945008,0.253946,0.252395,0.520425,0.420442,0.833623,0.913527,0.611368,0.116087,0.20738,0.3911,0.175907,0.408287,0.426708,0.477547,0.711602,0.233984,0.0579355,0.414781,0.607278,0.331039,0.503548,0.677101,0.351966,0.76767,0.643695,0.215391,0.12245,0.440664,0.803164,0.150981,0.691828,0.257672,0.748179,0.645793,0.356733,0.875673,0.163206,0.247007,0.753127,0.361612,0.860888,0.663801,0.119712,0.543688,0.778493,0.0664203,0.729068,0.436958,0.626863,0.156628,0.93877,0.192095,0.552472,0.927429,0.621416,0.653061,0.363048,0.12609,0.852762,0.669985,0.933393,0.332076,0.0181069,0.0761425,0.967449,0.0687274,0.764293,0.0475779,0.0260876,0.984522,0.385483,0.181703,0.691919,0.914206,0.0416229,0.210689,0.273996,0.694411,0.0444178,0.788879,0.350184,0.114645,0.853852,0.742158,0.509609,0.86948,0.939543,0.852662,0.0925725,0.70319,0.696146,0.844183,0.59441,0.845788,0.354018,0.561628,0.615537,0.667637,0.789412,0.26262,0.900456,0.241134,0.639872,0.113242,0.971482,0.797323,0.968996,0.24126,0.77621,0.425805,0.539681,0.492607,0.015087,0.885496,0.747812,0.292997,0.742115,0.935878,0.750156,0.453503,0.550973,0.298917,0.377866,0.113822,0.394098,0.471973,0.594673,0.747125,0.969276,0.879499,0.713634,0.916487,0.644443,0.486987,0.428126,0.143949,0.9961,0.622206,0.837332,0.36998,0.820743,0.141911,0.0486332,0.509555,0.72969,0.837595,0.0848212,0.609724,0.48304,0.778898,0.156506,0.801701,0.255675,0.185483,0.878069,0.0213308,0.212014,0.912018,0.53095,0.454683,0.797244,0.580188,0.304149,0.83275,0.806746,0.249416,0.244245,0.0902283,0.405641,0.192194,0.648123,0.925187,0.965684,0.373342,0.29619,0.0873736,0.385564,0.232603,0.78266,0.120301,0.403948,0.600132,0.181347,0.516212,0.288009,0.0426182,0.433876,0.904984,0.493809,0.386979,0.0902794,0.278418,0.942479,0.861834,0.219665,0.113842,0.825589,0.219908,0.504699,0.273179,0.350175,0.531471,0.609204,0.756151,0.343992,0.175468,0.0196786,0.0728579,0.536014,0.631344,0.105981,0.188125,0.392442,0.995764,0.271341,0.352208,0.321828,0.423204,0.287289,0.864411,0.97325,0.787617,0.944529,0.130509,0.929715,0.771325,0.791804,0.607013,0.149198,0.203924,0.0544033,0.343778,0.222588,0.710168,0.416512,0.695339,0.52515,|0.175475,0.176708,0.114891,0.47857,0.946017,0.32529,0.476659,0.913941,0.434479,0.191412,0.810126,0.412501,0.279732,0.75295,0.822679,0.201435,0.803592,0.805535,0.0449005,0.0932769,0.863456,0.898543,0.725249,0.14971,0.634926,0.956664,0.0936574,0.461719,0.633638,0.988009,0.90498,0.251812,0.628395,0.992859,0.792106,0.880954,0.129352,0.699824,0.842672,0.239927,0.142772,0.409738,0.60924,0.94862,0.916397,0.210025,0.0580789,0.110389,0.875951,0.976505,0.70753,0.623741,0.867402,0.417357,0.562919,0.177494,0.213854,0.138602,0.725056,0.392509,0.772956,0.421733,0.478129,0.990875,0.792999,0.466381,0.873061,0.924093,0.492948,0.8813,0.855049,0.996193,0.301305,0.684374,0.435289,0.124656,0.602127,0.737779,0.387826,0.119552,0.000368237,0.363076,0.57758,0.979043,0.455095,0.151352,0.868814,0.747097,0.786283,0.824871,0.453391,0.668186,0.989838,0.362478,0.142838,0.983535,0.318558,0.00583518,0.892777,0.112904,0.380725,0.755607,0.346446,0.272555,0.821728,0.02882,0.142326,0.671853,0.445978,0.384265,0.161704,0.288129,0.65015,0.358184,0.675344,0.858544,0.281412,0.240214,0.851176,0.777146,0.971105,0.566377,0.262061,0.12453,0.964791,0.39622,0.716492,0.726447,0.827292,0.298348,0.430344,0.611794,0.732302,0.113791,0.490526,0.727181,0.343288,0.48732,0.0805262,0.267855,0.192692,0.414197,0.609642,0.940721,0.505931,0.464879,0.774077,0.867347,0.00782287,0.266001,0.208518,0.632481,0.0717235,0.0825959,0.257934,0.884929,0.423224,0.198173,0.777838,0.909797,0.791399,0.335699,0.0552097,0.249413,0.337162,0.548994,0.639369,0.0474665,0.427445,0.148007,0.653382,0.68234,0.199638,0.593912,0.0410452,0.830806,0.216609,0.0210728,0.827431,0.146955,0.214622,0.836113,0.294897,0.405701,0.190147,0.696052,0.0260822,0.154073,0.921919,0.448616,0.0713235,0.679102,0.637573,0.478924,0.730403,0.664902,0.00110853,0.304961,0.0920638,0.853003,0.411646,0.575175,0.49436,0.491781,0.767084,0.432762,0.356711,0.559898,0.782314,0.916008,0.300261,0.570743,0.582064,0.728723,0.843536,0.757529,0.603182,0.703281,0.601376,0.755125,0.380897,0.918488,0.719395,0.593293,0.0765356,0.217635,0.0811849,0.671006,0.998718,0.374858,0.47647,0.392105,0.297056,0.595211,0.714874,0.510392,0.132731,0.347496,0.196851,0.290443,0.501664,0.817064,0.348031,0.577226,0.394071,0.154383,0.421536,0.887381,0.401326,0.90373,0.719595,0.112391,0.644727,0.210972,0.0906978,0.753101,0.673818,0.852481,0.114301,0.132555,0.241729,0.0640325,0.411648,0.833298,0.131085,0.6418,0.991904,0.608954,0.364621,0.857836,0.913957,0.029618,0.432846,0.277874,0.56219,0.374762,0.619957,0.870259,0.532464,0.910868,0.11401,0.570442,0.207897,0.913736,0.399805,0.538829,0.351834,0.953008,0.825298,0.915223,0.0684702,0.192184,0.234356,0.0459355,0.474926,0.878991,0.542198,0.867582,0.234132,0.868356,0.368952,0.440206,0.131753,0.807807,0.407306,0.742897,0.944848,0.268407,0.296818,0.780883,0.798765,0.227314,0.0669748,0.854095,0.578784,0.701023,0.0765484,0.694259,0.645194,0.179021,0.455537,0.582806,0.487596,0.528155,0.0421977,0.474864,0.767442,0.055328,0.320387,0.621895,0.160798,0.892598,0.46316,0.0489495,0.249177,0.765414,0.340352,0.815778,0.990592,0.895762,0.76936,0.385316,0.127926,0.886456,0.609465,0.744647,0.498607,0.158221,0.761896,0.964882,0.512154,0.441018,0.603698,0.819618,0.476588,0.00292122,0.37214,0.160606,0.613347,0.214744,0.491009,0.450201,0.294891,0.348375,0.741749,0.663084,0.867477,0.804547,0.893035,0.376598,0.798468,0.376209,0.469967,0.162259,0.61668,0.897134,0.751946,0.483523,0.691555,0.304365,0.16546,0.638288,0.672004,0.956391,0.111507,0.657887,0.85738,0.0207375,0.149108,0.834318,0.163601,0.74429,0.832596,0.130953,0.724392,0.569614,0.859545,0.914769,0.793809,0.36935,0.0861953,0.471596,0.49296,0.376354,0.0876386,0.275355,0.312227,0.420905,0.0103622,0.0420427,0.340069,0.501461,0.257878,0.0604514,0.921522,0.0110711,0.984363,0.524257,0.0756696,0.891297,0.0282767,0.719497,0.442797,0.449014,0.387134,0.701849,0.590424,0.614236,0.578319,0.47931,0.177237,0.35132,0.14432,0.307935,0.334006,0.0430675,0.668236,0.231515,0.923359,0.633654,0.572124,0.12256,0.680595,0.182834,0.548759,0.698253,0.436766,0.650915,0.820763,0.871421,0.91769,0.306954,0.451952,0.853385,0.825795,0.417598,0.704411,0.458316,0.436298,0.155988,0.919258,0.1,0.68114,0.0273329,0.599422,0.443231,0.384846,0.531302,0.869914,0.392787,0.944374,0.763826,0.568733,0.584194,0.177774,0.0263637,0.831361,0.0200471,0.968609,0.766697,0.0497507,0.054558,0.576664,0.614076,0.563803,0.633909,0.468094,0.0954235,0.905684,0.960188,0.407514,0.894111,0.580735,0.0597682,0.129572,0.808853,0.0545411,0.931863,0.0570872,0.0231021,0.234112,0.971247,0.237253,0.859739,0.435387,0.534432,0.414742,0.152231,0.0699064,0.47869,0.910662,0.402702,0.539786,0.592103,0.735003,0.379136,0.496372,0.056685,0.29158,0.461512,0.700442,0.58324,0.556447,0.274729,0.0803407,0.853887,0.660728,0.273981,0.905451,0.409248,0.879119,0.767308,0.156215,0.906219,0.00622326,0.15536,0.688424,0.938618,0.905927,0.770247,0.677966,0.552292,0.207821,0.285499,0.41419,0.373065,0.446593,0.711935,0.974092,0.103913,0.964999,0.904696,0.0696968,0.989549,0.701182,0.835813,0.604093,0.71739,0.453314,0.119806,0.755317,0.297355,0.77837,0.953039,0.455704,0.580314,0.409528,0.362928,0.0347906,0.0969979,0.980306,0.836737,0.83755,0.635295,0.207719,0.151849,0.0100352,0.187132,0.557897,0.791699,0.936702,0.324356,0.190218,0.498129,0.0988719,0.418411,0.110651,0.732575,0.311319,0.809151,0.323073,0.0819144,0.685783,0.582007,0.716261,0.102857,0.0601398,0.717816,0.863955,0.926637,0.918258,0.164903,0.197208,0.620385,0.181049,0.431571,0.0137463,0.494932,0.909503,0.0475799,0.68612,0.907266,0.293665,0.198352,0.671051,0.0162975,0.475918,0.186459,0.602352,0.60002,0.971403,0.949611,0.925056,0.167562,0.0212575,0.687161,0.0823235,0.445228,0.23902,0.626122,0.545608,0.602657,0.678118,0.726461,0.620538,0.114646,0.892175,0.756708,0.937307,0.946906,0.683865,0.625677,0.98007,0.361625,0.455434,0.321362,0.912242,0.481067,0.963561,0.167337,0.0694306,0.35026,0.949165,0.216308,0.533617,0.232514,0.853248,0.959665,0.269244,0.14409,0.0974742,0.0678321,0.431147,0.845162,0.98326,0.796231,0.961886,0.880338,0.546215,0.214229,0.866121,0.707019,0.418229,0.178278,0.920993,0.940866,0.218267,0.12934,0.635921,0.555983,0.873958,0.587168,0.921711,0.582608,0.0730071,0.174737,0.29573,0.697322,0.579854,0.655585,0.87874,0.666621,0.445269,0.917373,0.546464,0.955172,0.154414,0.559925,0.799479,0.101594,0.633931,0.739071,0.64655,0.611741,0.604705,0.45253,0.727495,0.977131,0.174704,0.0807261,0.519489,0.196071,0.738675,0.836981,0.909548,0.233086,0.952041,0.25086,0.673874,0.709277,0.396505,0.239349,0.0492271,0.896645,0.327893,0.763651,0.0535843,0.0179186,0.394234,0.503405,0.520803,0.441502,0.956359,0.841463,0.188168,0.749413,0.938014,0.804097,0.728465,0.935558,0.541002,0.129467,0.864746,0.731383,0.577205,0.798712,0.146783,0.824507,0.260155,0.165238,0.962229,0.0985371,0.944894,0.999239,0.951039,0.848941,0.724031,0.250428,0.0188155,0.64254,0.607285,0.155136,0.992513,0.818961,0.0769228,0.213957,0.274898,0.490326,0.126527,0.272659,0.496456,0.594959,0.33387,0.994083,0.11931,0.427418,0.941834,0.0235212,0.786616,0.462764,0.152099,0.244135,0.631697,0.372689,0.114646,0.636405,0.719979,0.294858,0.399971,0.343386,0.53686,0.0600597,0.940203,0.637829,0.379641,0.0947137,0.796613,0.11111,0.291932,0.0717643,0.893407,0.587369,0.609142,0.0189202,0.20912,0.675262,0.37867,0.559127,0.572631,0.438174,0.114006,0.685854,0.876345,0.461117,0.539392,0.535843,0.198104,0.653709,0.989102,0.847952,0.26595,0.346975,0.199582,0.313689,0.29874,0.541641,0.77461,0.48819,0.644372,0.659037,0.621827,0.437826,0.492276,0.773623,0.360319,0.049458,0.918142,0.0113973,0.316503,0.0197706,0.143913,0.211804,0.673835,0.677903,0.107462,0.952908,0.978937,0.653042,0.35991,0.937841,0.779076,0.291065,0.705735,0.429858,0.917835,0.0733528,0.734901,0.577406,0.923677,0.645993,0.92221,0.127771,0.566412,0.00198662,0.0127503,0.140555,0.601525,0.954883,0.0824768,0.817511,0.28981,0.804348,0.720184,0.765431,0.42072,0.751928,0.222288,0.690766,0.242246,0.622542,0.23591,0.437373,0.836557,0.167928,0.053295,0.909584,0.678381,0.279893,0.297406,0.0357931,0.499795,0.624526,0.350773,0.29696,0.0917473,0.324603,0.514812,0.278137,0.264156,0.868663,0.325404,0.957525,0.84538,0.468992,0.160684,0.184359,0.488968,0.724341,0.472484,0.934942,0.338265,0.155676,0.571919,0.539673,0.659366,0.900729,0.629981,0.166039,0.771633,0.13811,0.710407,0.132112,0.35952,0.566932,0.738763,0.484211,0.278291,0.600879,0.253845,0.222912,0.532831,0.411297,0.0726927,0.224506,0.313075,0.386047,0.00226581,0.0413427,0.592481,0.556952,0.271052,0.440218,0.387775,0.372423,0.862977,0.0351296,0.939598,0.699714,0.818436,0.821866,0.486578,0.960119,0.104534,0.0627776,0.642255,0.341566,0.368017,0.115489,0.0608782,0.637176,0.020164,0.704647,0.335811,0.83746,0.0222158,0.19148,0.778186,0.270987,0.867672,0.245992,0.933794,0.893684,0.259989,0.19135,0.654103,0.992944,0.242272,0.770121,0.489641,0.694618,0.174471,0.935653,0.836024,0.528143,0.890248,0.856348,0.72208,0.626016,0.801477,0.238112,0.846415,0.296803,0.48641,0.546042,0.638041,0.338837,0.598103,0.648176,0.110543,0.620814,|0.784352,0.107914,0.0898363,0.460392,0.59583,0.357314,0.709569,0.622984,0.441164,0.372499,0.477222,0.735385,0.44426,0.534854,0.532189,0.0276422,0.381064,0.679443,0.44293,0.405296,0.239565,0.148165,0.719102,0.710326,0.822777,0.577313,0.949463,0.969938,0.119054,0.481069,0.31269,0.050675,0.592085,0.409337,0.732013,0.347254,0.0590882,0.135458,0.289518,0.452695,0.750166,0.121388,0.903061,0.299395,0.385211,0.777117,0.371541,0.547698,0.0169083,0.899785,0.631427,0.800117,0.0769721,0.295888,0.267627,0.965949,0.326825,0.578204,0.642257,0.738906,0.156825,0.236004,0.509534,0.497423,0.982789,0.154916,0.154478,0.642291,0.0625673,0.173855,0.670395,0.820857,0.606292,0.301307,0.877153,0.526177,0.814119,0.9486,0.368782,0.515576,0.676337,0.483748,0.11906,0.0196724,0.797853,0.998865,0.711795,0.713507,0.499729,0.217011,0.783056,0.601621,0.883814,0.191263,0.229342,0.534745,0.248291,0.234882,0.108819,0.408478,0.0530647,0.689061,0.752423,0.395178,0.925918,0.957615,0.796705,0.621446,0.967566,0.416342,0.178646,0.598083,0.179674,0.732988,0.268716,0.888708,0.498137,0.381758,0.993601,0.0778857,0.38434,0.673612,0.752286,0.206051,0.0731139,0.491185,0.00974709,0.791196,0.632055,0.20418,0.833322,0.00681144,0.0360692,0.988123,0.29915,0.877591,0.459851,0.784737,0.814861,0.554573,0.510308,0.165278,0.255565,0.548188,0.597225,0.651112,0.774954,0.361098,0.0202791,0.818505,0.719529,0.526746,0.324595,0.182007,0.0151752,0.959598,0.625427,0.292048,0.431856,0.702087,0.0510978,0.74313,0.51936,0.783375,0.978163,0.198867,0.974185,0.524697,0.478645,0.663378,0.855752,0.6892,0.455128,0.758149,0.821512,0.72413,0.335617,0.25941,0.577709,0.47503,0.941617,0.912789,0.312165,0.559207,0.176329,0.132327,0.897559,0.49189,0.735444,0.520429,0.581531,0.190875,0.891312,0.281125,0.0349069,0.377889,0.751193,0.483436,0.846488,0.463726,0.112873,0.144672,0.0427676,0.574347,0.453265,0.784899,0.923424,0.170473,0.130057,0.830733,0.823188,0.678717,0.969297,0.292772,0.930088,0.948376,0.660404,0.297957,0.635014,0.671653,0.295914,0.787011,0.584363,0.159768,0.512832,0.636975,0.840833,0.667068,0.898667,0.631432,0.693993,0.504506,0.840603,0.318417,0.302406,0.669023,0.0674807,0.950142,0.449385,0.552386,0.7598,0.793588,0.542619,0.857765,0.534411,0.663882,0.796718,0.821486,0.17871,0.279888,0.197946,0.235188,0.5297,0.495829,0.460669,0.418789,0.521014,0.480764,0.820019,0.427666,0.794404,0.543257,0.736273,0.625423,0.783539,0.653543,0.405362,0.795228,0.82544,0.0143098,0.33263,0.198198,0.880996,0.0344526,0.148952,0.202018,0.154266,0.269012,0.454398,0.371819,0.934165,0.825642,0.198422,0.0876591,0.21578,0.991859,0.561449,0.613515,0.610186,0.743403,0.970212,0.227834,0.606683,0.872538,0.524103,0.747352,0.591091,0.153034,0.528847,0.990928,0.174978,0.0137994,0.322745,0.661205,0.38828,0.836996,0.642871,0.739202,0.375149,0.715537,0.674416,0.976906,0.110538,0.182362,0.531047,0.066869,0.659183,0.946386,0.227671,0.0398352,0.864704,0.836593,0.920808,0.681757,0.540898,0.946805,0.745013,0.936961,0.338564,0.362538,0.547463,0.868299,0.0953037,0.474369,0.140323,0.792837,0.0037201,0.394345,0.149578,0.562666,0.100062,0.740152,0.302893,0.296588,0.433779,0.653888,0.696108,0.59547,0.61453,0.64164,0.349695,0.667825,0.524588,0.729991,0.850382,0.167144,0.639473,0.243086,0.986821,0.907788,0.318323,0.162364,0.912885,0.613275,0.748308,0.583948,0.494334,0.817934,0.178498,0.275091,0.738117,0.920906,0.848294,0.69548,0.874051,0.815377,0.348332,0.316812,0.70925,0.940524,0.151192,0.468907,0.019128,0.392284,0.0675926,0.414708,0.292398,0.589048,0.0839664,0.463462,0.0622631,0.566101,0.427168,0.594606,0.0282803,0.567337,0.425393,0.107864,0.728032,0.147842,0.230031,0.0625652,0.990319,0.410614,0.810309,0.550871,0.374989,0.265883,0.705729,0.294267,0.132246,0.71304,0.0499703,0.770527,0.495669,0.825289,0.378579,0.781549,0.0424541,0.0986844,0.493515,0.821555,0.413669,0.511238,0.247742,0.200859,0.767057,0.595472,0.0429636,0.169438,0.680573,0.686452,0.0122778,0.512114,0.780571,0.375842,0.0547132,0.295159,0.479654,0.612978,0.480916,0.905837,0.209161,0.519644,0.716461,0.274576,0.662926,0.167079,0.35378,0.0045259,0.807158,0.985627,0.0537442,0.402334,0.973936,0.737684,0.394362,0.482362,0.884304,0.588159,0.196704,0.186823,0.578095,0.623259,0.179299,0.534877,0.600805,0.177374,0.128608,0.0139095,0.642917,0.995698,0.0465296,0.0420268,0.103489,0.155939,0.425698,0.546925,0.368662,0.267187,0.186531,0.246712,0.806636,0.0674941,0.109008,0.183222,0.168056,0.756727,0.0988816,0.397392,0.347662,0.706268,0.0189867,0.261036,0.664457,0.9111,0.340701,0.621957,0.580244,0.603207,0.071267,0.525079,0.451708,0.370017,0.291454,0.907894,0.944167,0.934773,0.13974,0.419638,0.758075,0.677817,0.365454,0.109556,0.240134,0.525721,0.930711,0.882572,0.518191,0.712651,0.227632,0.173793,0.506001,0.56444,0.187844,0.765478,0.242414,0.0579171,0.00418735,0.865399,0.536028,0.9732,0.384531,0.924626,0.12827,0.932925,0.414614,0.472851,0.71592,0.7715,0.954875,0.794611,0.478661,0.722286,0.918321,0.296082,0.530372,0.280404,0.66678,0.222505,0.268138,0.738843,0.802763,0.318348,0.399939,0.75763,0.142342,0.434647,0.0330507,0.609228,0.75958,0.0851393,0.412525,0.618154,0.357465,0.560584,0.0615667,0.909092,0.0326079,0.684345,0.534197,0.968352,0.972339,0.93677,0.685361,0.74848,0.565353,0.824771,0.0512785,0.176034,0.746512,0.682329,0.827411,0.297867,0.131365,0.0187961,0.803797,0.957583,0.536049,0.679206,0.553758,0.474064,0.132207,0.605554,0.111715,0.802136,0.693066,0.848969,0.740259,0.970261,0.150005,0.973633,0.750298,0.615084,0.484813,0.705782,0.174873,0.870704,0.96038,0.661092,0.682448,0.182234,0.348016,0.316679,0.811413,0.870049,0.529124,0.251342,0.941725,0.4587,0.434872,0.882389,0.601584,0.143043,0.350991,0.250144,0.80673,0.415098,0.558305,0.962987,0.0534689,0.569848,0.889093,0.653386,0.023978,0.299696,0.905428,0.619683,0.827589,0.00142097,0.53261,0.359834,0.0562442,0.316636,0.520744,0.555465,0.290847,0.113874,0.993437,0.966329,0.638613,0.840906,0.46901,0.912293,0.0772587,0.366002,0.880748,0.779765,0.727027,0.474423,0.0848445,0.105208,0.472236,0.426182,0.55243,0.842533,0.490732,0.727988,0.627355,0.305501,0.110015,0.863144,0.329506,0.109989,0.137804,0.243741,0.265236,0.763934,0.658008,0.279201,0.428342,0.814592,0.198637,0.868329,0.289502,0.019756,0.825539,0.327661,0.18544,0.261034,0.868047,0.713248,0.451442,0.075613,0.0183268,0.030363,0.70777,0.0892354,0.88025,0.987092,0.208849,0.958291,0.225913,0.486584,0.38583,0.747097,0.401687,0.458479,0.372979,0.153634,0.96402,0.836075,0.0925922,0.0290457,0.882004,0.170868,0.0342205,0.557661,0.20734,0.781175,0.0203725,0.495469,0.855645,0.917392,0.965582,0.778528,0.535546,0.0841508,0.512855,0.0106966,0.507655,0.770573,0.459877,0.599212,0.182327,0.991283,0.435512,0.781715,0.96094,0.871525,0.686031,0.873164,0.834272,0.176857,0.923132,0.0909939,0.340075,0.172072,0.25476,0.0421412,0.194998,0.606584,0.729121,0.335523,0.60353,0.864147,0.571289,0.291464,0.488871,0.00845379,0.343481,0.139108,0.249439,0.949192,0.878149,0.0976637,0.878104,0.824697,0.31279,0.732239,0.57963,0.108429,0.22603,0.669019,0.511282,0.926277,0.0314235,0.951552,0.289236,0.427346,0.257855,0.030117,0.549425,0.0615779,0.203088,0.401745,0.36193,0.956581,0.933525,0.553173,0.965888,0.22325,0.724306,0.725594,0.57884,0.149965,0.141747,0.110149,0.667233,0.741646,0.321132,0.0350906,0.926773,0.854289,0.6485,0.200273,0.536373,0.0770052,0.463291,0.347408,0.573232,0.646273,0.519497,0.983038,0.343297,0.649614,0.93059,0.36811,0.838383,0.680191,0.532687,0.233077,0.902739,0.299651,0.880252,0.425255,0.565458,0.92657,0.816998,0.834644,0.0929646,0.340197,0.796141,0.227487,0.02857,0.76545,0.520774,0.969914,0.159004,0.37316,0.71551,0.369498,0.586976,0.40681,0.32874,0.152548,0.0494487,0.430148,0.913024,0.622625,0.790272,0.799,0.889693,0.925834,0.868031,0.337924,0.0376655,0.174037,0.989074,0.58452,0.347414,0.140851,0.655627,0.812628,0.149986,0.500775,0.955391,0.36507,0.20664,0.81882,0.777719,0.494348,0.568492,0.498002,0.96966,0.226414,0.801699,0.890382,0.914909,0.341681,0.160565,0.923601,0.718864,0.0276292,0.778003,0.229368,0.597114,0.864845,0.485707,0.930218,0.950864,0.654225,0.145505,0.123081,0.0725805,0.596245,0.751548,0.844576,0.371341,0.729256,0.367277,0.978945,0.592693,0.67703,0.30365,0.901814,0.137679,0.61151,0.527671,0.611031,0.606698,0.546108,0.761925,0.539186,0.73359,0.397183,0.311106,0.941527,0.555957,0.33057,0.0667886,0.476087,0.706953,0.350311,0.615433,0.658392,0.354315,0.822662,0.965425,0.574849,0.827634,0.140887,0.979154,0.496949,0.752312,0.291488,0.269432,0.0761001,0.609407,0.929553,0.220947,0.508896,0.206023,0.702008,0.986992,0.564831,0.170547,0.89262,0.0100188,0.319834,0.148367,0.307159,0.63995,0.111263,0.553694,0.657903,0.196673,0.142365,0.515384,0.442265,0.650251,0.968933,0.933111,0.569873,0.515992,0.554592,0.774694,0.880673,0.508386,0.178801,0.653514,0.594462,0.448788,0.4973,0.591747,0.572252,0.173367,0.292297,0.987156,0.880949,0.231844,0.742495,0.0148273,0.740144,0.216493,0.465752,0.8384,0.950423,0.0601732,0.232129,0.696304,0.420425,0.500267,0.656672,0.764559,0.90304,0.728902,0.941784,0.394842,0.200417,|0.930252,0.381869,0.575002,0.655593,0.143129,0.500082,0.4194,0.268361,0.845225,0.911484,0.757965,0.004852,0.0188165,0.407966,0.430174,0.0700358,0.945034,0.704027,0.764714,0.589214,0.194512,0.645852,0.0783446,0.293685,0.819785,0.649879,0.522472,0.266637,0.615353,0.356033,0.539023,0.167031,0.179812,0.948073,0.0115901,0.778474,0.252919,0.534931,0.279056,0.682007,0.679324,0.0774878,0.549958,0.708633,0.926033,0.514439,0.229947,0.992641,0.207824,0.487079,0.0658335,0.120274,0.230293,0.176724,0.347251,0.506782,0.958525,0.612859,0.290073,0.353149,0.402591,0.922399,0.0720555,0.103189,0.375805,0.405974,0.490879,0.693303,0.423986,0.249483,0.991123,0.589619,0.332837,0.819648,0.397071,0.648464,0.910866,0.763935,0.898794,0.997489,0.0734845,0.419832,0.692444,0.246408,0.653419,0.892198,0.679159,0.875421,0.361507,0.404103,0.524055,0.620623,0.160969,0.180896,0.108821,0.184325,0.212568,0.662023,0.168842,0.773422,0.719833,0.640493,0.767582,0.702446,0.996316,0.562052,0.741969,0.926296,0.943239,0.774885,0.671376,0.0766218,0.131567,0.122705,0.288385,0.56038,0.200354,0.78705,0.519599,0.76,0.550502,0.374821,0.956577,0.952466,0.3847,0.843488,0.299346,0.862266,0.97616,0.844552,0.163268,0.0905669,0.764508,0.654047,0.989787,0.792431,0.899364,0.454073,0.0976908,0.354819,0.0434381,0.260932,0.864742,0.734438,0.307826,0.514567,0.187833,0.471986,0.956095,0.152143,0.436084,0.301353,0.111035,0.043439,0.909343,0.144719,0.915764,0.452172,0.184831,0.594697,0.0994716,0.0824283,0.06859,0.875713,0.350437,0.446356,0.679793,0.0896704,0.469898,0.402008,0.93423,0.23403,0.0536682,0.00750786,0.111322,0.351,0.98565,0.882679,0.974906,0.721233,0.516851,0.858077,0.496286,0.33479,0.565967,0.0965297,0.0372171,0.987224,0.977686,0.629794,0.0161986,0.535613,0.599239,0.501206,0.587251,0.0469335,0.968017,0.593695,0.99423,0.723636,0.0388287,0.302499,0.159186,0.419793,0.542046,0.310339,0.230905,0.907144,0.03693,0.882957,0.204236,0.340444,0.999981,0.855764,0.140381,0.908318,0.660282,0.169069,0.541709,0.370183,0.962329,0.495056,0.939339,0.373226,0.653107,0.725878,0.193951,0.534417,0.53436,0.465293,0.275367,0.906823,0.775334,0.7986,0.728201,0.905427,0.321435,0.273043,0.406128,0.0827518,0.0323156,0.0654936,0.722089,0.408657,0.693406,0.814801,0.305949,0.0506777,0.78252,0.957907,0.650706,0.482571,0.107638,0.735932,0.96515,0.0897804,0.158116,0.454947,0.81723,0.204546,0.395705,0.720073,0.996803,0.326747,0.489348,0.60988,0.696115,0.310068,0.705445,0.732355,0.93215,0.869918,0.424411,0.136213,0.147109,0.521729,0.314969,0.523001,0.165704,0.446811,0.728201,0.754091,0.69029,0.071122,0.367018,0.570294,0.76109,0.444062,0.921491,0.295275,0.742786,0.0536278,0.808834,0.522432,0.841599,0.284257,0.187907,0.294509,0.10452,0.0198475,0.19246,0.631564,0.69902,0.648712,0.962768,0.167193,0.992748,0.964676,0.72664,0.13784,0.908995,0.511319,0.114392,0.919269,0.471043,0.370398,0.263753,0.748072,0.973303,0.197054,0.0473897,0.83507,0.409083,0.108849,0.355269,0.967575,0.503149,0.78989,0.887654,0.932156,0.118135,0.315537,0.347177,0.0668967,0.637093,0.246455,0.802818,0.814635,0.750932,0.450846,0.0513409,0.891773,0.200559,0.890079,0.597324,0.695036,0.933565,0.285961,0.686813,0.272446,0.151334,0.976607,0.421214,0.139688,0.804012,0.0836975,0.0252357,0.0449772,0.795628,0.111579,0.114229,0.982807,0.52341,0.746784,0.63246,0.471131,0.0265704,0.0838828,0.04827,0.139263,0.717027,0.0673209,0.871237,0.967691,0.00857103,0.48378,0.968201,0.899754,0.681863,0.690103,0.150902,0.717014,0.994385,0.864476,0.537303,0.247336,0.623514,0.718421,0.295028,0.173379,0.368604,0.0600855,0.631417,0.762974,0.103951,0.0138216,0.649024,0.362623,0.06759,0.535666,0.691803,0.790532,0.336997,0.999282,0.19367,0.456863,0.879564,0.706526,0.699372,0.790835,0.0910494,0.919451,0.976632,0.329693,0.690132,0.341031,0.644655,0.515969,0.464296,0.0337369,0.252842,0.342923,0.660378,0.0929435,0.678451,0.514122,0.859254,0.51483,0.288172,0.244001,0.861304,0.737267,0.456056,0.890883,0.928778,0.472491,0.606687,0.0214936,0.720961,0.430185,0.365182,0.539143,0.0672138,0.853873,0.0716008,0.214495,0.281852,0.0901099,0.495386,0.648238,0.980441,0.450606,0.115938,0.143344,0.457368,0.705372,0.973362,0.251626,0.172962,0.120658,0.599096,0.291983,0.756422,0.408484,0.583935,0.771681,0.70556,0.199169,0.496706,0.772501,0.560002,0.510539,0.6912,0.0750523,0.832394,0.722216,0.430073,0.301537,0.756622,0.385822,0.613535,0.861153,0.685301,0.757632,0.896509,0.353988,0.950577,0.508933,0.227532,0.473615,0.0909884,0.528831,0.529514,0.825945,0.850079,0.9157,0.693914,0.793118,0.960308,0.418882,0.159205,0.246162,0.464493,0.444729,0.814645,0.858312,0.615255,0.538821,0.74556,0.112748,0.577679,0.0674807,0.663811,0.189013,0.392815,0.96849,0.449952,0.744495,0.0567814,0.266847,0.448368,0.803639,0.505064,0.858127,0.460443,0.0931563,0.75297,0.147104,0.336304,0.547445,0.235006,0.431,0.433188,0.660962,0.0142561,0.516858,0.173845,0.155179,0.0571752,0.606033,0.106637,0.288553,0.0685253,0.255226,0.167554,0.0139025,0.220713,0.615867,0.795506,0.789729,0.39135,0.314985,0.86688,0.738065,0.504193,0.227995,0.849894,0.466956,0.743849,0.730923,0.910395,0.843431,0.0949238,0.706797,0.690058,0.6012,0.887107,0.767558,0.483121,0.969962,0.688093,0.879526,0.493218,0.814845,0.0416895,0.177617,0.685884,0.886872,0.982649,0.363512,0.0504487,0.971799,0.114115,0.399438,0.290868,0.64729,0.157163,0.540911,0.898606,0.440047,0.335533,0.045756,0.400565,0.195334,0.383339,0.88372,0.599135,0.554688,0.941672,0.678115,0.1013,0.893881,0.244734,0.748637,0.301903,0.809387,0.467659,0.400576,0.973975,0.533477,0.503418,0.328075,0.0553886,0.523082,0.896559,0.447682,0.553413,0.302908,0.439189,0.629959,0.379589,0.864661,0.963274,0.937444,0.0458983,0.189705,0.910948,0.534628,0.27239,0.976627,0.488902,0.38926,0.902004,0.12322,0.804347,0.231253,0.618665,0.0528895,0.624498,0.721971,0.218515,0.0681397,0.821413,0.678072,0.228255,0.932524,0.309517,0.176753,0.550987,0.592114,0.498001,0.59554,0.831832,0.685237,0.251713,0.513575,0.206165,0.981072,0.927237,0.578264,0.826912,0.0278084,0.87691,0.571197,0.342867,0.0100744,0.38276,0.10395,0.943596,0.948961,0.656079,0.93458,0.67065,0.110901,0.491711,0.464355,0.301969,0.915969,0.964577,0.648004,0.333697,0.679249,0.0654352,0.624823,0.305694,0.804012,0.280633,0.107564,0.28782,0.524602,0.311745,0.228057,0.858366,0.0106054,0.0837625,0.576196,0.0693934,0.81326,0.130259,0.364152,0.927238,0.791839,0.298868,0.390243,0.0525149,0.301077,0.144175,0.357472,0.729071,0.464474,0.87007,0.902624,0.566345,0.507798,0.827647,0.743656,0.18667,0.715478,0.493799,0.534435,0.902744,0.32555,0.452876,0.706574,0.455327,0.42099,0.725955,0.789623,0.208087,0.713996,0.280812,0.0718739,0.0645761,0.273311,0.514268,0.164206,0.382062,0.836347,0.411105,0.988147,0.689563,0.634315,0.431753,0.640825,0.757278,0.700639,0.551585,0.586498,0.384096,0.742239,0.839223,0.493467,0.988188,0.696396,0.0795212,0.622068,0.455596,0.487832,0.063557,0.678522,0.649648,0.989917,0.102707,0.130727,0.670949,0.727531,0.26985,0.502446,0.367457,0.899022,0.3993,0.10324,0.0888989,0.626344,0.818258,0.455359,0.891817,0.708215,0.594088,0.915802,0.811047,0.67735,0.315292,0.530696,0.377778,0.0829627,0.185939,0.12257,0.4317,0.528189,0.155661,0.0560937,0.31953,0.912526,0.478881,0.768779,0.408865,0.674,0.902888,0.879583,0.935982,0.942026,0.328312,0.216503,0.874958,0.447892,0.444228,0.492368,0.536364,0.960246,0.195953,0.941044,0.443231,0.783831,0.251292,0.304941,0.488973,0.487259,0.0593362,0.680903,0.783702,0.835779,0.837476,0.918324,0.627954,0.931058,0.683844,0.0919188,0.662819,0.0282137,0.934326,0.988,0.109721,0.000927925,0.447475,0.74413,0.451509,0.81898,0.232425,0.43924,0.600451,0.524293,0.118797,0.99019,0.705222,0.615385,0.453858,0.883352,0.0116574,0.775298,0.538532,0.287801,0.959559,0.583894,0.133226,0.52553,0.30019,0.592758,0.58796,0.122443,0.941567,0.39561,0.199355,0.478948,0.135753,0.245619,0.386549,0.134522,0.189571,0.998871,0.223086,0.943971,0.0854336,0.934568,0.844933,0.32385,0.0752633,0.0840427,0.233065,0.606067,0.943285,0.991744,0.346166,0.442153,0.190093,0.14639,0.674841,0.693993,0.675879,0.18018,0.725212,0.153995,0.163841,0.0203965,0.744628,0.802927,0.619885,0.523589,0.342311,0.453669,0.775459,0.295989,0.856536,0.600624,0.403855,0.315963,0.566484,0.393861,0.377297,0.150403,0.535918,0.853942,0.826685,0.487384,0.381533,0.742096,0.953365,0.990977,0.889173,0.0145737,0.382403,0.4774,0.355208,0.47439,0.0896658,0.541528,0.915165,0.291974,0.28114,0.992536,0.189898,0.00775987,0.734783,0.665671,0.669995,0.590634,0.0131715,0.668098,0.476839,0.742817,0.791185,0.43737,0.427343,0.799203,0.266993,0.041656,0.957455,0.489462,0.346588,0.331442,0.915004,0.468164,0.984616,0.609231,0.32268,0.443106,0.641906,0.444272,0.0600665,0.184944,0.640328,0.753824,0.245801,0.413676,0.101085,0.24813,0.62182,0.207974,0.0816498,0.557157,0.136292,0.970695,0.342599,0.880095,0.347549,0.353858,0.913893,0.235564,0.704777,0.837737,0.88369,0.123117,0.53513,0.0102323,0.624841,0.766872,0.386601,0.960265,0.0738533,0.300928,0.544405,0.285363,0.227258,0.149856,0.802128,0.533916,0.919038,0.0221255,0.496146,0.779321,|0.540662,0.0400407,0.0989562,0.754472,0.343618,0.659131,0.131102,0.820899,0.268424,0.435331,0.613423,0.42424,0.127825,0.771518,0.524488,0.659726,0.447053,0.711908,0.57053,0.580682,0.993912,0.320823,0.305698,0.200445,0.331456,0.236781,0.787574,0.449895,0.662408,0.0405253,0.705884,0.285375,0.194827,0.450285,0.606994,0.52109,0.0633804,0.383518,0.326776,0.183512,0.424541,0.544856,0.370585,0.479383,0.730828,0.178899,0.171229,0.721817,0.148851,0.859017,0.781383,0.606144,0.221055,0.42222,0.904662,0.462177,0.383204,0.203415,0.542322,0.0828683,0.799176,0.479631,0.404727,0.454443,0.735689,0.0566335,0.547006,0.311512,0.340871,0.479612,0.825413,0.433857,0.00270009,0.820594,0.860074,0.221326,0.287403,0.784453,0.405892,0.336578,0.10905,0.638817,0.412641,0.912716,0.0541944,0.912196,0.165032,0.0545394,0.960615,0.132104,0.137077,0.14386,0.320974,0.960505,0.611799,0.736928,0.288231,0.444819,0.141576,0.930846,0.290448,0.615924,0.685441,0.527231,0.956177,0.397752,0.334708,0.483311,0.322465,0.360793,0.714548,0.0631284,0.109687,0.24743,0.75408,0.319765,0.119933,0.663163,0.83581,0.520085,0.561479,0.85007,0.53458,0.857249,0.579443,0.236939,0.8106,0.691305,0.331545,0.929076,0.221058,0.540299,0.0362456,0.147654,0.826692,0.363935,0.525282,0.666478,0.352428,0.463587,0.199016,0.336773,0.895287,0.767028,0.190937,0.716715,0.452989,0.869421,0.769132,0.960387,0.365711,0.503762,0.856897,0.492532,0.612239,0.253583,0.350256,0.966486,0.56255,0.056417,0.742546,0.944185,0.175931,0.201777,0.463925,0.733137,0.28489,0.649386,0.101657,0.0157939,0.651043,0.758982,0.129502,0.780393,0.882034,0.573552,0.918172,0.327723,0.371148,0.452991,0.0340211,0.280616,0.592579,0.999684,0.962622,0.942933,0.678632,0.751281,0.325776,0.932947,0.420134,0.682788,0.196693,0.236292,0.827787,0.403271,0.456469,0.455048,0.683634,0.240512,0.0856162,0.798617,0.0365294,0.639017,0.755481,0.833109,0.847031,0.45257,0.996867,0.426931,0.470832,0.172904,0.706788,0.555769,0.996717,0.70955,0.727655,0.919618,0.150776,0.195141,0.927655,0.975624,0.406018,0.253381,0.655554,0.0934118,0.495018,0.854337,0.95619,0.908309,0.109896,0.96961,0.540036,0.187847,0.0403466,0.622329,0.273536,0.499976,0.906251,0.85361,0.752364,0.43281,0.47429,0.0794141,0.457646,0.504175,0.0394675,0.753347,0.896996,0.467138,0.856275,0.987694,0.467424,0.0628571,0.128559,0.836773,0.875683,0.769348,0.617237,0.050597,0.605326,0.443604,0.31504,0.700286,0.161345,0.262877,0.871769,0.19695,0.977935,0.498874,0.230834,0.390099,0.153538,0.53815,0.623254,0.484994,0.620644,0.3287,0.204981,0.533878,0.53386,0.740634,0.239259,0.155817,0.363257,0.25492,0.749586,0.32104,0.638301,0.0440219,0.124885,0.160106,0.345077,0.827544,0.861023,0.635318,0.123582,0.0683438,0.782438,0.599481,0.782043,0.190799,0.558411,0.827898,0.673728,0.0725163,0.358893,0.82048,0.895881,0.394554,0.728115,0.534434,0.227715,0.425004,0.118712,0.250761,0.255157,0.971517,0.716384,0.235251,0.734358,0.315762,0.28983,0.0258118,0.770085,0.585674,0.365732,0.390304,0.885599,0.192062,0.818158,0.00632954,0.839969,0.614954,0.569216,0.504519,0.545729,0.0417354,0.710033,0.767918,0.298251,0.528328,0.969801,0.920479,0.72469,0.623833,0.304423,0.325528,0.821183,0.349419,0.971231,0.145919,0.0197629,0.561231,0.566616,0.555879,0.383547,0.497996,0.289414,0.16363,0.340028,0.172531,0.636779,0.538769,0.838856,0.318957,0.872997,0.654305,0.51408,0.0704058,0.379784,0.923765,0.0303624,0.0260714,0.927497,0.855779,0.0636342,0.124432,0.0331274,0.648736,0.584542,0.655348,0.221427,0.0660163,0.703221,0.934169,0.206727,0.903652,0.415327,0.345249,0.585477,0.940202,0.214416,0.413505,0.0570085,0.922491,0.573057,0.355229,0.833138,0.864819,0.922379,0.195851,0.285389,0.516926,0.343865,0.990209,0.721391,0.0194136,0.0309595,0.467639,0.0360122,0.0769225,0.148353,0.16336,0.0339186,0.950012,0.429285,0.282666,0.14039,0.685948,0.243538,0.241497,0.934676,0.120552,0.974257,0.172578,0.912785,0.447099,0.212419,0.347166,0.088655,0.648929,0.447437,0.799759,0.937936,0.118501,0.200144,0.379286,0.452397,0.227663,0.724306,0.498678,0.20236,0.235324,0.919535,0.350071,0.018959,0.517348,0.303802,0.638296,0.509008,0.354198,0.553591,0.954788,0.956546,0.8695,0.97863,0.599225,0.316852,0.194305,0.785959,0.400471,0.278405,0.166107,0.360857,0.328906,0.322617,0.275658,0.39608,0.107185,0.755505,0.240956,0.734044,0.0845982,0.180848,0.493771,0.44628,0.852871,0.774619,0.582323,0.164561,0.471104,0.569243,0.233331,0.281306,0.72609,0.114613,0.656723,0.356839,0.799709,0.685943,0.00397795,0.48768,0.123433,0.41228,0.0788953,0.283701,0.043241,0.54366,0.091358,0.102635,0.0131223,0.351591,0.48934,0.802028,0.343179,0.642682,0.424611,0.211537,0.0597216,0.317308,0.576773,0.791873,0.742128,0.358773,0.866192,0.0382951,0.0443577,0.0277199,0.920195,0.830758,0.883048,0.767468,0.442859,0.352192,0.637304,0.289429,0.203659,0.153144,0.578571,0.625231,0.698249,0.914093,0.0174851,0.60587,0.924238,0.975714,0.564384,0.175132,0.456336,0.38309,0.851935,0.48232,0.927087,0.0362867,0.292951,0.847373,0.321577,0.854215,0.859353,0.241733,0.937406,0.228689,0.34846,0.032537,0.655425,0.276411,0.85881,0.855296,0.135015,0.479545,0.488916,0.89459,0.0169644,0.0524106,0.900241,0.767298,0.881836,0.991651,0.570004,0.63708,0.483945,0.774848,0.321254,0.679766,0.0479844,0.208294,0.254548,0.176749,0.833605,0.405341,0.11828,0.851264,0.497777,0.446172,0.0901574,0.14358,0.604799,0.84832,0.854064,0.410368,0.441757,0.229593,0.569842,0.109253,0.843007,0.443389,0.297066,0.602382,0.728251,0.973816,0.898204,0.499443,0.130999,0.760355,0.868297,0.922157,0.360524,0.572054,0.515686,0.0442501,0.506364,0.139224,0.411183,0.366955,0.656239,0.933438,0.06217,0.114104,0.95384,0.492525,0.184742,0.0583172,0.565133,0.493122,0.589478,0.707831,0.751432,0.0236549,0.700918,0.967498,0.323233,0.920953,0.487981,0.775751,0.648208,0.0852519,0.84734,0.0589123,0.886265,0.953433,0.609069,0.0119818,0.838502,0.489369,0.518725,0.555685,0.343495,0.167398,0.322408,0.00424123,0.882342,0.162852,0.377475,0.906656,0.189017,0.861842,0.308888,0.307188,0.633191,0.484769,0.110546,0.884241,0.322895,0.0141882,0.497978,0.945005,0.631984,0.104324,0.0112732,0.438731,0.854906,0.312962,0.712561,0.290302,0.901271,0.224944,0.304976,0.899386,0.701902,0.958809,0.136806,0.874523,0.799915,0.497275,0.349513,0.552001,0.387012,0.695163,0.872502,0.937799,0.467166,0.987015,0.254218,0.26108,0.445667,0.463735,0.777101,0.220628,0.131092,0.526708,0.600512,0.641377,0.0145268,0.29173,0.337423,0.0708382,0.616257,0.806561,0.898091,0.867396,0.408506,0.437669,0.881089,0.713355,0.51813,0.935568,0.371027,0.474937,0.559315,0.397304,0.30467,0.0591728,0.707407,0.623422,0.848588,0.765866,0.766335,0.292391,0.109028,0.651886,0.358787,0.932787,0.334918,0.599158,0.854337,0.674802,0.718119,0.92314,0.120571,0.185212,0.963324,0.194965,0.752899,0.576745,0.176825,0.252097,0.190932,0.984938,0.684478,0.595662,0.208771,0.130812,0.902119,0.0418572,0.278896,0.518225,0.685746,0.961163,0.589219,0.00328553,0.0037623,0.519685,0.482024,0.869929,0.169226,0.800743,0.982992,0.371863,0.212567,0.865597,0.643375,0.488792,0.00656897,0.268331,0.122867,0.935684,0.752441,0.950543,0.844403,0.876207,0.695811,0.825761,0.891576,0.961055,0.226188,0.237541,0.13728,0.783785,0.319409,0.677466,0.645786,0.584603,0.232272,0.469448,0.921848,0.880608,0.0729948,0.837833,0.972038,0.719707,0.279414,0.879588,0.983913,0.265527,0.0711443,0.851096,0.161843,0.565285,0.0533825,0.404508,0.509121,0.906412,0.225056,0.993293,0.198789,0.251344,0.648422,0.418932,0.669886,0.026198,0.639839,0.672871,0.578694,0.357744,0.421597,0.0100952,0.776535,0.768049,0.348053,0.679064,0.391658,0.0378422,0.836224,0.220934,0.114738,0.532669,0.723168,0.160405,0.0196906,0.00119489,0.250124,0.881708,0.652477,0.301942,0.135329,0.278636,0.365976,0.440317,0.762267,0.580047,0.69725,0.842464,0.00404269,0.237358,0.684504,0.903491,0.635751,0.0305049,0.96231,0.567326,0.99094,0.742983,0.44212,0.151398,0.61364,0.10228,0.873852,0.83992,0.610674,0.175461,0.828754,0.777934,0.858331,0.517763,0.129764,0.730098,0.101735,0.306582,0.893478,0.505384,0.0950226,0.948019,0.525317,0.118556,0.424963,0.00069803,0.87252,0.474839,0.993497,0.235669,0.158346,0.176228,0.0356767,0.734379,0.143728,0.366672,0.309577,0.796023,0.179835,0.815384,0.227619,0.416928,0.527281,0.113247,0.623717,0.789021,0.367923,0.99261,0.433744,0.376445,0.304173,0.62388,0.269363,0.71832,0.82553,0.00782669,0.879341,0.240553,0.264447,0.57585,0.91175,0.167701,0.690513,0.920773,0.85838,0.280685,0.560266,0.291842,0.168079,0.865101,0.563957,0.69036,0.205154,0.0249417,0.842095,0.893598,0.0862828,0.0141397,0.49788,0.723145,0.208304,0.181152,0.790457,0.56049,0.245062,0.750877,0.862421,0.705455,0.487121,0.638544,0.647876,0.467304,0.0403062,0.82239,0.313321,0.196218,0.108755,0.977683,0.938678,0.316263,0.589557,0.304706,0.992655,0.634823,0.948744,0.186845,0.610155,0.442174,0.520304,0.376449,0.825871,0.339778,0.397739,0.251557,0.624873,0.591964,0.616688,0.934202,0.351542,0.665812,0.179899,0.138817,0.852552,0.314923,0.992598,0.132999,0.339029,0.947921,0.0116339,0.902499,0.6969,0.861089,0.307329,0.829214,0.398572,0.873704,0.609252,0.642681,0.949293,|0.122031,0.597771,0.763702,0.751498,0.934403,0.736764,0.305299,0.487417,0.590329,0.859825,0.563696,0.162339,0.198784,0.917376,0.348262,0.999283,0.310861,0.858503,0.184514,0.990153,0.0526938,0.612625,0.16753,0.161142,0.646795,0.441313,0.679909,0.799109,0.0802567,0.380201,0.040558,0.941808,0.406936,0.994841,0.547767,0.849664,0.801844,0.90175,0.599632,0.893109,0.660016,0.588943,0.241954,0.950309,0.233827,0.360863,0.250641,0.118554,0.250286,0.745197,0.521284,0.62209,0.230701,0.750977,0.775035,0.388206,0.047253,0.306826,0.977797,0.181488,0.524904,0.788047,0.700013,0.89279,0.957317,0.969951,0.105569,0.298462,0.140476,0.251789,0.328836,0.0298457,0.81301,0.467773,0.759386,0.238445,0.769299,0.919571,0.917799,0.561835,0.498552,0.0598231,0.335158,0.499649,0.842354,0.889023,0.638089,0.00111181,0.939406,0.109211,0.13197,0.629884,0.97336,0.112246,0.362917,0.0431409,0.57904,0.642178,0.313143,0.764805,0.00264567,0.974062,0.0182269,0.328975,0.259042,0.832752,0.460712,0.818824,0.753905,0.555418,0.0456266,0.0306929,0.945856,0.21308,0.506383,0.211911,0.670428,0.281199,0.693712,0.935005,0.62305,0.286816,0.644115,0.626141,0.921084,0.143536,0.145697,0.163179,0.3304,0.213267,0.171135,0.105069,0.214971,0.116126,0.49246,0.259913,0.211226,0.369672,0.375338,0.991346,0.0328696,0.334024,0.270586,0.0556796,0.70346,0.225126,0.221229,0.921133,0.587911,0.131555,0.670838,0.84633,0.118662,0.203391,0.16937,0.385818,0.21153,0.651997,0.984683,0.520722,0.317519,0.595496,0.15999,0.164998,0.0474642,0.651483,0.333613,0.49276,0.0189469,0.122451,0.248392,0.521593,0.494197,0.272657,0.967287,0.00788653,0.291806,0.822218,0.771886,0.369875,0.700346,0.00365406,0.859434,0.968307,0.349673,0.413617,0.530095,0.925951,0.935923,0.40766,0.104892,0.746193,0.665053,0.912043,0.361383,0.199684,0.411317,0.17161,0.658822,0.579053,0.770963,0.40584,0.144655,0.625844,0.421043,0.928239,0.135971,0.494188,0.920277,0.342105,0.354591,0.398199,0.880052,0.725899,0.71433,0.621227,0.877583,0.327287,0.102623,0.883172,0.208063,0.954772,0.0178322,0.127861,0.590448,0.31064,0.880499,0.154941,0.940431,0.0514362,0.546558,0.288104,0.071853,0.162039,0.0200589,0.872013,0.584684,0.297592,0.492577,0.771785,0.568957,0.661854,0.987451,0.159904,0.332193,0.945277,0.0854955,0.623173,0.0194992,0.706544,0.65563,0.183465,0.034156,0.988407,0.474376,0.128064,0.688895,0.287058,0.365705,0.238717,0.701192,0.28928,0.0954339,0.133598,0.868301,0.428687,0.326665,0.773027,0.103196,0.145006,0.99329,0.190683,0.73399,0.565664,0.290334,0.00830919,0.837378,0.520253,0.366847,0.28559,0.0747429,0.464171,0.813045,0.503617,0.780872,0.760368,0.617444,0.0485289,0.187542,0.440995,0.291203,0.773444,0.326342,0.119314,0.157175,0.33107,0.811117,0.694743,0.935039,0.517056,0.0132329,0.397568,0.457368,0.189762,0.52525,0.648571,0.0160551,0.0537905,0.975662,0.353098,0.651487,0.895641,0.0206163,0.22457,0.0681772,0.929543,0.681304,0.769838,0.570432,0.657737,0.834024,0.0804722,0.478307,0.0465724,0.961353,0.196784,0.970375,0.644206,0.625846,0.962113,0.992313,0.319447,0.468169,0.540245,0.598233,0.704078,0.704178,0.0883164,0.337954,0.669186,0.368434,0.0797037,0.972436,0.97128,0.0807207,0.444,0.355772,0.776761,0.195513,0.474339,0.355574,0.394931,0.00952095,0.403657,0.627059,0.178673,0.686376,0.735789,0.0289267,0.185499,0.992462,0.301675,0.779045,0.628849,0.263119,0.916597,0.48837,0.205739,0.977702,0.7589,0.62923,0.417452,0.343417,0.389358,0.932545,0.690582,0.134815,0.0725591,0.813448,0.721858,0.778339,0.86004,0.311164,0.669578,0.170321,0.632882,0.771688,0.762073,0.0831769,0.334463,0.993853,0.86428,0.337551,0.641563,0.278434,0.895132,0.482864,0.20361,0.743452,0.402054,0.0991653,0.560578,0.71442,0.0868536,0.882832,0.790574,0.0102369,0.793154,0.112868,0.722244,0.839466,0.197206,0.291859,0.6139,0.513336,0.450756,0.274612,0.768096,0.0576186,0.494727,0.382133,0.620576,0.386745,0.448693,0.713443,0.403451,0.092887,0.244504,0.319916,0.00532609,0.692903,0.42965,0.427797,0.418114,0.375676,0.699297,0.299685,0.265534,0.631487,0.464882,0.16578,0.869895,0.251438,0.557104,0.726937,0.643627,0.438145,0.934671,0.368816,0.312885,0.904307,0.682585,0.8542,0.0638177,0.722034,0.182971,0.76815,0.766376,0.36748,0.556393,0.811394,0.456839,0.828159,0.00707924,0.471885,0.890435,0.92448,0.855049,0.721757,0.526968,0.398477,0.787656,0.215249,0.959338,0.609232,0.233934,0.662885,0.912411,0.750015,0.63198,0.242731,0.780989,0.266475,0.0269844,0.539519,0.750434,0.700784,0.243293,0.63855,0.288,0.443907,0.602753,0.554608,0.77663,0.0991789,0.18545,0.0729828,0.917742,0.786879,0.349084,0.417408,0.630146,0.214007,0.859109,0.751862,0.642181,0.560333,0.516404,0.832325,0.204395,0.416395,0.839438,0.0814694,0.972432,0.288362,0.0593169,0.856333,0.154355,0.124809,0.647971,0.0105891,0.447855,0.44801,0.736285,0.860041,0.668467,0.953278,0.358492,0.626931,0.0330448,0.0919661,0.919904,0.0637739,0.0604686,0.812868,0.562039,0.119337,0.634428,0.00216496,0.362422,0.00659305,0.379251,0.695417,0.127665,0.311511,0.279813,0.0592638,0.577719,0.819486,0.434478,0.00795585,0.118251,0.859003,0.180055,0.148972,0.457693,0.922495,0.445758,0.289275,0.879968,0.864777,0.245265,0.394238,0.776268,0.606973,0.829889,0.486512,0.368947,0.868822,0.615451,0.728274,0.0212156,0.86497,0.495842,0.156911,0.199515,0.273616,0.60755,0.979978,0.593668,0.726386,0.236154,0.838315,0.509714,0.863493,0.164346,0.312138,0.358317,0.660241,0.945407,0.373368,0.35096,0.107054,0.934036,0.776383,0.509668,0.0512649,0.671649,0.204101,0.997494,0.194058,0.614624,0.261195,0.131367,0.355525,0.762396,0.955894,0.69785,0.549269,0.876312,0.0919,0.66565,0.369443,0.442807,0.386442,0.374823,0.282854,0.342734,0.918861,0.117246,0.315901,0.27954,0.27314,0.490042,0.41794,0.482382,0.113012,0.572939,0.0258539,0.909458,0.635827,0.698677,0.648688,0.894001,0.261804,0.157874,0.870825,0.0117876,0.229758,0.201978,0.139618,0.187286,0.382214,0.575117,0.38335,0.501797,0.625372,0.0137898,0.547811,0.735334,0.858771,0.511188,0.37479,0.122093,0.760583,0.696495,0.951937,0.974937,0.62866,0.457872,0.0669274,0.179752,0.277378,0.808627,0.126766,0.779032,0.706281,0.0902918,0.856008,0.143546,0.798066,0.605386,0.810657,0.0261211,0.714904,0.112345,0.358792,0.399641,0.266818,0.375307,0.999349,0.685499,0.0955175,0.559917,0.850751,0.525414,0.205528,0.421145,0.278035,0.781562,0.318606,0.978938,0.501898,0.772098,0.980278,0.261918,0.719555,0.0951672,0.321823,0.915516,0.270501,0.40618,0.997594,0.649364,0.697029,0.682226,0.0421257,0.525135,0.258253,0.326441,0.0786886,0.515044,0.34124,0.448005,0.344171,0.836528,0.407713,0.180198,0.999742,0.916244,0.564167,0.542656,0.282242,0.810384,0.785158,0.884253,0.383332,0.613124,0.419578,0.216312,0.0733796,0.0658471,0.198083,0.861528,0.988711,0.412299,0.252153,0.538446,0.373785,0.353361,0.433328,0.37411,0.426549,0.716026,0.0082556,0.568466,0.564442,0.862273,0.930261,0.664229,0.130635,0.238704,0.393561,0.432897,0.960574,0.687811,0.531334,0.341708,0.819528,0.396925,0.0282413,0.36396,0.973276,0.890039,0.996531,0.339384,0.176462,0.704412,0.92283,0.789115,0.428553,0.888491,0.251554,0.233274,0.319388,0.819149,0.701564,0.891989,0.408834,0.259579,0.186898,0.40189,0.125279,0.148744,0.453618,0.169512,0.64704,0.0467376,0.297638,0.599152,0.775269,0.0485123,0.170404,0.522901,0.944943,0.344351,0.641462,0.775453,0.937486,0.709332,0.789855,0.218857,0.481123,0.891762,0.241541,0.503367,0.797299,0.977241,0.0334585,0.508579,0.881596,0.790308,0.361837,0.480038,0.337804,0.743573,0.690677,0.131101,0.546289,0.760792,0.981292,0.197483,0.260282,0.282204,0.201601,0.482114,0.804782,0.3516,0.0602717,0.62576,0.461472,0.775158,0.236576,0.146451,0.0267873,0.913212,0.248393,0.476353,0.861275,0.57307,0.52634,0.827908,0.803831,0.236405,0.988749,0.529798,0.578901,0.0997414,0.59427,0.668781,0.547262,0.984093,0.0577211,0.193997,0.755616,0.984389,0.297345,0.521344,0.493907,0.179783,0.784782,0.461526,0.592127,0.962236,0.602659,0.383519,0.239983,0.75961,0.476691,0.478074,0.682571,0.174041,0.178745,0.890438,0.791014,0.244086,0.143377,0.45146,0.386318,0.591855,0.443158,0.9843,0.723073,0.681277,0.354008,0.048789,0.776598,0.314725,0.928595,0.677882,0.299586,0.0831003,0.621549,0.737568,0.950772,0.304325,0.261258,0.670803,0.582574,0.559609,0.407871,0.116942,0.222504,0.145651,0.804056,0.631597,0.130981,0.593988,0.811891,0.941238,0.549681,0.0545214,0.775215,0.337991,0.241554,0.578529,0.566569,0.419569,0.416871,0.519192,0.737023,0.944108,0.271955,0.544447,0.607208,0.801302,0.725908,0.840856,0.980692,0.494808,0.686206,0.50011,0.0695677,0.544151,0.511234,0.875613,0.263973,0.578359,0.552919,0.969104,0.389618,0.55869,0.661618,0.257304,0.949524,0.731394,0.301239,0.276045,0.764984,0.539382,0.61644,0.60896,0.329057,0.280029,0.360294,0.139145,0.288094,0.715805,0.129632,0.766555,0.293528,0.963375,0.922233,0.981526,0.373405,0.242909,0.656917,0.864246,0.28519,0.962219,0.675359,0.292581,0.727395,0.908935,0.345861,0.210738,0.861913,0.358029,0.891274,0.709324,0.343757,0.299777,0.784145,0.772239,0.322474,0.880028,0.287779,0.0318726,0.303106,0.261912,0.330455,0.235353,0.713271,0.439979,0.0471516,0.600612,0.212397,0.0579633,0.748187,0.607874,|0.285066,0.579503,0.0650094,0.106769,0.0220846,0.31908,0.894729,0.782922,0.571047,0.908882,0.135002,0.294692,0.894027,0.720047,0.261032,0.156379,0.976939,0.40474,0.303763,0.328414,0.907314,0.275833,0.0382057,0.416285,0.374667,0.242561,0.99452,0.787319,0.158476,0.560638,0.698473,0.754104,0.895502,0.377656,0.786888,0.839109,0.456068,0.742566,0.0955752,0.785994,0.0374472,0.944455,0.262321,0.393422,0.00147325,0.573557,0.609375,0.095579,0.536032,0.00983167,0.0904564,0.722359,0.0865886,0.660074,0.223589,0.17841,0.505774,0.371478,0.908781,0.621091,0.309328,0.265365,0.135503,0.570186,0.412225,0.824548,0.918773,0.797082,0.240588,0.389337,0.712213,0.890906,0.573435,0.0201141,0.999454,0.898957,0.677293,0.684238,0.511472,0.793604,0.98813,0.184359,0.710191,0.13311,0.522929,0.192728,0.780844,0.944196,0.379625,0.742662,0.909364,0.650278,0.0321496,0.261398,0.953081,0.762659,0.0936799,0.431351,0.175754,0.77074,0.47936,0.798002,0.619699,0.411956,0.92374,0.85292,0.637088,0.370606,0.022217,0.7755,0.977298,0.988019,0.598378,0.323376,0.254451,0.552529,0.473675,0.334955,0.455603,0.0923393,0.55406,0.570617,0.0767365,0.341125,0.452439,0.143079,0.39715,0.408581,0.412009,0.810278,0.0337177,0.842352,0.761434,0.402304,0.139712,0.468149,0.673249,0.903428,0.858333,0.315631,0.862782,0.78245,0.528792,0.754072,0.208328,0.315493,0.986805,0.890044,0.366522,0.850553,0.0974319,0.420029,0.800831,0.391118,0.0995635,0.370073,0.724083,0.686994,0.675809,0.552601,0.449231,0.845223,0.0463791,0.263185,0.43593,0.239999,0.142362,0.413492,0.966361,0.197786,0.441767,0.511044,0.857939,0.727149,0.0787058,0.531429,0.923184,0.018277,0.587818,0.271568,0.905506,0.342698,0.810187,0.866973,0.174967,0.388432,0.0158755,0.0430181,0.526675,0.456616,0.0447833,0.387205,0.655246,0.660245,0.671499,0.766612,0.969644,0.899252,0.0581898,0.327795,0.439818,0.842435,0.771005,0.482027,0.407577,0.222556,0.491286,0.745185,0.0816826,0.543938,0.903871,0.683058,0.542457,0.996452,0.923149,0.735549,0.947604,0.816486,0.483785,0.538573,0.133923,0.557681,0.0938812,0.178395,0.722397,0.292915,0.584958,0.332771,0.0432073,0.378475,0.763466,0.11252,0.950555,0.786756,0.248576,0.81549,0.610069,0.364109,0.911041,0.0523314,0.686678,0.903392,0.769933,0.697358,0.329897,0.935793,0.132932,0.0952942,0.092001,0.591171,0.152401,0.856019,0.586034,0.200883,0.902852,0.714096,0.455138,0.797545,0.345624,0.513864,0.86246,0.0435013,0.824313,0.290609,0.811629,0.00812948,0.522045,0.155368,0.112156,0.442638,0.617556,0.710367,0.981934,0.199332,0.275706,0.851642,0.356759,0.901957,0.224361,0.452383,0.924298,0.270351,0.992357,0.609301,0.212488,0.460337,0.962605,0.985863,0.85824,0.384506,0.045917,0.735117,0.09878,0.837497,0.774966,0.126361,0.456159,0.804107,0.779241,0.354487,0.942234,0.365284,0.959573,0.213126,0.500084,0.579718,0.823075,0.10415,0.060822,0.828468,0.373048,0.643582,0.683176,0.498976,0.90292,0.95209,0.720788,0.609496,0.845578,0.72721,0.745867,0.978327,0.435155,0.388858,0.825721,0.126518,0.149174,0.555874,0.604619,0.837193,0.554325,0.00663733,0.4695,0.927588,0.194091,0.857159,0.479916,0.0988348,0.289247,0.84152,0.0705984,0.478286,0.951453,0.954139,0.871034,0.909395,0.990697,0.717874,0.992944,0.294801,0.0208281,0.215364,0.429837,0.608553,0.827124,0.478106,0.411671,0.622452,0.0867597,0.955656,0.55066,0.948271,0.827977,0.639398,0.56583,0.392565,0.650641,0.64706,0.84382,0.542763,0.0767679,0.840646,0.281683,0.162563,0.577119,0.264087,0.285493,0.40796,0.792539,0.276051,0.494633,0.539713,0.826754,0.629416,0.117826,0.266259,0.405927,0.14814,0.163689,0.369901,0.640384,0.46424,0.125698,0.753644,0.899422,0.657464,0.955487,0.691842,0.438414,0.649669,0.0853265,0.442944,0.0901248,0.871422,0.267897,0.885741,0.836493,0.411947,0.150775,0.725802,0.648675,0.963742,0.20723,0.582709,0.873533,0.790003,0.396488,0.899106,0.775096,0.958719,0.540445,0.914786,0.359308,0.94832,0.512014,0.128514,0.144545,0.0734211,0.399437,0.534312,0.599352,0.392659,0.189374,0.189749,0.0509044,0.97472,0.00168395,0.650203,0.741532,0.127731,0.199586,0.350009,0.978938,0.588694,0.151779,0.419185,0.366152,0.41866,0.517399,0.743934,0.627156,0.135919,0.0854557,0.158313,0.884112,0.455876,0.0654067,0.708423,0.906508,0.0866109,0.210125,0.3162,0.378382,0.621044,0.0546518,0.755706,0.645475,0.210556,0.664277,0.756916,0.00748765,0.270683,0.253365,0.800032,0.040567,0.166174,0.000932515,0.317771,0.0116612,0.289047,0.641554,0.17281,0.59312,0.547208,0.993863,0.974953,0.817667,0.210082,0.643923,0.7566,0.554254,0.961458,0.809134,0.309879,0.939966,0.938581,0.579686,0.947842,0.474632,0.899397,0.388624,0.755684,0.00139391,0.528233,0.040325,0.0828084,0.691456,0.72095,0.598036,0.563959,0.449721,0.454961,0.629512,0.785489,0.921106,0.920724,0.369434,0.980732,0.382685,0.1123,0.253773,0.692683,0.543957,0.492032,0.622735,0.884245,0.308201,0.162922,0.71782,0.00450176,0.242553,0.39162,0.509777,0.196643,0.806561,0.0482659,0.20544,0.0166056,0.984326,0.432657,0.369784,0.680952,0.952946,0.896954,0.836,0.0208838,0.576174,0.0452667,0.615792,0.337818,0.997842,0.0470193,0.0130134,0.69983,0.656916,0.361079,0.477106,0.992931,0.651863,0.410498,0.853446,0.0792731,0.61704,0.521711,0.573843,0.325801,0.384774,0.850945,0.310645,0.544577,0.24222,0.18967,0.725246,0.853764,0.884906,0.702192,0.767203,0.121283,0.223183,0.161279,0.077473,0.0197588,0.300263,0.655185,0.305079,0.562644,0.727315,0.850155,0.655883,0.687218,0.298193,0.238197,0.325643,0.782624,0.582627,0.90329,0.378777,0.102201,0.289232,0.918074,0.559236,0.165005,0.121634,0.817211,0.126237,0.895884,0.684785,0.569574,0.732153,0.195632,0.946543,0.1159,0.0437822,0.286102,0.73362,0.587793,0.849493,0.628225,0.777641,0.54091,0.372172,0.147964,0.402387,0.514077,0.13851,0.91383,0.27244,0.875511,0.110022,0.0352576,0.459117,0.555193,0.511351,0.438331,0.303204,0.535781,0.455344,0.659873,0.661954,0.823648,0.582648,0.908425,0.913913,0.406916,0.463849,0.0896493,0.337957,0.84826,0.464669,0.0271241,0.38714,0.0903113,0.344488,0.0756735,0.772677,0.534867,0.0537094,0.777143,0.25119,0.53457,0.619131,0.583169,0.606792,0.470336,0.80558,0.086233,0.835166,0.123229,0.928499,0.37502,0.73698,0.0292541,0.958373,0.0861967,0.39946,0.38171,0.0111701,0.829053,0.805361,0.61855,0.375581,0.967612,0.655351,0.429305,0.654608,0.256188,0.417308,0.829431,0.824883,0.750207,0.533816,0.991177,0.607766,0.623711,0.785149,0.199221,0.708492,0.170428,0.360653,0.370189,0.121446,0.102253,0.280216,0.385879,0.585332,0.0508443,0.112716,0.554518,0.162431,0.258322,0.104217,0.688877,0.551074,0.497833,0.869176,0.469008,0.775108,0.549448,0.301454,0.977834,0.523853,0.483322,0.0824032,0.915601,0.566403,0.128102,0.748276,0.239377,0.0719587,0.28191,0.932214,0.823222,0.13826,0.322747,0.796128,0.209501,0.870489,0.0257827,0.754725,0.600759,0.180202,0.33953,0.851768,0.130349,0.960206,0.902266,0.846924,0.958121,0.103598,0.839718,0.536248,0.411507,0.799816,0.237598,0.2264,0.384153,0.183081,0.839731,0.185474,0.467647,0.082617,0.808877,0.716193,0.999387,0.0102333,0.112312,0.672222,0.509053,0.178205,0.432735,0.42517,0.759849,0.395609,0.28313,0.803807,0.303317,0.377014,0.460292,0.796127,0.243638,0.896136,0.70871,0.171837,0.218006,0.0701309,0.950275,0.32629,0.880836,0.333107,0.55943,0.095014,0.812262,0.859943,0.853782,0.503132,0.43588,0.157881,0.192252,0.298096,0.815416,0.867595,0.352302,0.830698,0.674394,0.969989,0.00274295,0.60716,0.0957726,0.341764,0.0753868,0.434414,0.488488,0.110174,0.742185,0.290123,0.123737,0.779717,0.88767,0.734903,0.673319,0.528657,0.0186198,0.835887,0.544571,0.931022,0.733172,0.472703,0.949878,0.312533,0.877762,0.255383,0.780532,0.877023,0.311515,0.620539,0.995844,0.407334,0.22583,0.649992,0.774638,0.72552,0.252525,0.601272,0.874642,0.576419,0.453227,0.00405258,0.466435,0.848742,0.17839,0.84867,0.0262203,0.515829,0.125621,0.935934,0.288331,0.93923,0.178791,0.252842,0.0953879,0.51657,0.686956,0.860016,0.445496,0.86531,0.0592704,0.866007,0.493304,0.303345,0.981954,0.720637,0.305718,0.955875,0.590439,0.498228,0.95514,0.896851,0.75918,0.772069,0.570242,0.902265,0.66337,0.367191,0.0747761,0.968853,0.834718,0.689364,0.407324,0.832928,0.0268209,0.897953,0.353346,0.525468,0.829647,0.124436,0.949032,0.836418,0.102338,0.625509,0.220726,0.250973,0.449821,0.0632041,0.399494,0.697043,0.0328487,0.146397,0.680514,0.121696,0.81452,0.464328,0.379028,0.63083,0.736735,0.289373,0.321921,0.468609,0.0324882,0.699896,0.704846,0.222792,0.772327,0.937683,0.283,0.822511,0.344821,0.219728,0.511107,0.575144,0.729666,0.226406,0.0819817,0.493917,0.344799,0.161915,0.765105,0.0788079,0.384538,0.856624,0.419617,0.174223,0.518943,0.885937,0.835437,0.187202,0.219378,0.114839,0.782326,0.132651,0.370913,0.751997,0.897324,0.0324618,0.959885,0.136455,0.866642,0.663292,0.615587,0.102106,0.535813,0.219057,0.74974,0.215237,0.98552,0.823577,0.163764,0.22688,0.731152,0.346019,0.746692,0.162008,0.488923,0.665087,0.184893,0.497091,0.810558,0.664405,0.853321,0.719382,0.00598389,0.543652,0.95493,0.216261,0.706131,0.666901,0.667071,0.522907,0.612164,0.287985,0.352362,0.907423,0.9999,0.275329,0.614307,0.392197,0.465356,0.810696,0.819508,0.0755327,0.569996,|0.300301,0.599101,0.510315,0.925723,0.73201,0.475062,0.093913,0.860743,0.786618,0.324243,0.718078,0.0661845,0.97874,0.017284,0.829864,0.628737,0.86972,0.648025,0.361637,0.462543,0.3351,0.679685,0.781329,0.492099,0.144671,0.558315,0.342822,0.364375,0.0267954,0.0763156,0.312564,0.0884061,0.702991,0.302011,0.517155,0.821292,0.557291,0.429045,0.236545,0.759877,0.595683,0.34807,0.273886,0.159995,0.193127,0.603209,0.254514,0.873293,0.230485,0.679416,0.410698,0.0571844,0.045952,0.709869,0.955697,0.141461,0.897861,0.70453,0.99619,0.262401,0.0207493,0.082044,0.342779,0.132977,0.143078,0.111324,0.219701,0.632195,0.44656,0.931854,0.891478,0.6096,0.319715,0.294353,0.102553,0.212543,0.032836,0.226398,0.797097,0.984267,0.118222,0.189504,0.228558,0.766123,0.918899,0.138949,0.587346,0.388649,0.27338,0.634436,0.541935,0.36794,0.238377,0.932468,0.260169,0.359045,0.69891,0.0323562,0.453865,0.990743,0.992534,0.197932,0.0628912,0.405795,0.00306785,0.183368,0.0753188,0.68064,0.434925,0.375398,0.433403,0.989016,0.501527,0.469575,0.802642,0.869254,0.693339,0.4722,0.0142192,0.62488,0.895143,0.523558,0.240066,0.419218,0.879678,0.391242,0.955625,0.0923674,0.585069,0.588957,0.0140586,0.0270244,0.19451,0.686673,0.802754,0.257879,0.0322664,0.116054,0.857116,0.264559,0.904518,0.177043,0.784121,0.141171,0.362916,0.229173,0.902641,0.319396,0.612603,0.808499,0.370051,0.427414,0.0350814,0.913227,0.547811,0.906371,0.225342,0.993341,0.968979,0.850162,0.602538,0.410026,0.884486,0.285863,0.397193,0.373917,0.187399,0.94121,0.743078,0.704308,0.509441,0.492504,0.838704,0.0924713,0.572647,0.819113,0.427385,0.85844,0.506803,0.358975,0.87354,0.682035,0.940281,0.608159,0.335198,0.788623,0.0066601,0.979941,0.897619,0.453072,0.855995,0.745487,0.439454,0.262977,0.334522,0.397904,0.867073,0.209148,0.441415,0.550705,0.102499,0.340211,0.405795,0.641483,0.853432,0.198099,0.764681,0.722613,0.515931,0.759644,0.424343,0.717513,0.136333,0.884756,0.441015,0.605834,0.113398,0.977078,0.22852,0.341797,0.125511,0.18802,0.391365,0.277862,0.796999,0.270711,0.872667,0.739047,0.354388,0.134278,0.793442,0.372205,0.951516,0.219786,0.0470417,0.095149,0.282084,0.964921,0.411916,0.895945,0.907931,0.952528,0.918589,0.636378,0.3772,0.445458,0.270525,0.383172,0.172585,0.426043,0.556612,0.299464,0.992745,0.0897338,0.2126,0.624184,0.304637,0.189685,0.442596,0.837648,0.458203,0.946064,0.611621,0.112555,0.147496,0.214924,0.35668,0.67158,0.432913,0.157394,0.424712,0.03646,0.557608,0.355848,0.845266,0.644641,0.750954,0.216579,0.76766,0.362762,0.686954,0.0966756,0.174525,0.56185,0.519384,0.49879,0.484799,0.29884,0.975608,0.562991,0.5376,0.334803,0.206249,0.0489488,0.788371,0.30985,0.395986,0.330253,0.180769,0.340517,0.729518,0.510964,0.0382889,0.788944,0.298891,0.00045687,0.611506,0.0590692,0.69431,0.516259,0.996319,0.435357,0.0147449,0.74405,0.745515,0.426403,0.542112,0.958826,0.983401,0.00750881,0.155586,0.975137,0.826992,0.142277,0.130147,0.798011,0.548545,0.206988,0.368244,0.798043,0.959915,0.733995,0.581684,0.592295,0.644948,0.0542204,0.10636,0.141179,0.401819,0.989368,0.477903,0.693637,0.0343635,0.789534,0.384288,0.335059,0.887613,0.430426,0.974224,0.0935947,0.0436686,0.337497,0.291761,0.566559,0.672742,0.202201,0.881343,0.269086,0.187445,0.165563,0.19359,0.945202,0.920802,0.262237,0.389723,0.0989842,0.954305,0.736158,0.726598,0.585205,0.339989,0.806605,0.840485,0.849039,0.771727,0.0270772,0.212502,0.995212,0.617463,0.985827,0.626332,0.774593,0.874718,0.885445,0.0795822,0.534017,0.627455,0.536408,0.0626966,0.768887,0.275362,0.875256,0.965716,0.996131,0.386765,0.0610062,0.603859,0.15036,0.487403,0.64808,0.856716,0.643836,0.652628,0.875194,0.875364,0.759032,0.835526,0.149214,0.708651,0.255995,0.776584,0.276134,0.903538,0.274024,0.220252,0.515489,0.180936,0.941316,0.0782332,0.342063,0.33511,0.196353,0.794758,0.128259,0.111704,0.189643,0.886549,0.102236,0.12432,0.188066,0.928905,0.550995,0.501202,0.0308012,0.537834,0.522076,0.0183912,0.378754,0.315138,0.35711,0.0550549,0.306346,0.854214,0.902329,0.732898,0.0108433,0.0675966,0.499782,0.103102,0.959278,0.309851,0.168156,0.788391,0.567669,0.683413,0.433162,0.303414,0.0703357,0.879615,0.711032,0.653778,0.500031,0.0770206,0.546072,0.149446,0.313936,0.475672,0.979312,0.822613,0.814399,0.600032,0.371312,0.368594,0.498752,0.350005,0.399095,0.876209,0.218,0.829872,0.3237,0.167482,0.340525,0.511894,0.398548,0.369318,0.230914,0.792432,0.324632,0.803524,0.456833,0.786555,0.295853,0.894524,0.993468,0.604759,0.597005,0.456082,0.234715,0.27274,0.903134,0.968007,0.960926,0.379659,0.719989,0.131642,0.409459,0.612554,0.645167,0.164553,0.76008,0.614089,0.865228,0.921528,0.128023,0.743629,0.67352,0.26747,0.305666,0.478963,0.897424,0.223211,0.905796,0.436649,0.780713,0.437558,0.556116,0.379385,0.816557,0.876682,0.27519,0.43441,0.64151,0.347738,0.555083,0.360338,0.14384,0.771814,0.08381,0.658366,0.134976,0.162538,0.3336,0.831232,0.0701648,0.71278,0.159353,0.339253,0.792213,0.151155,0.470956,0.820792,0.726071,0.99989,0.53116,0.826097,0.783364,0.241616,0.474948,0.998861,0.588263,0.895746,0.502382,0.960698,0.249109,0.523285,0.17377,0.760225,0.0821877,0.767834,0.668116,0.404372,0.921495,0.762126,0.953046,0.233729,0.408853,0.138379,0.689115,0.0412557,0.586952,0.948689,0.370379,0.0632493,0.966847,0.952446,0.531524,0.76569,0.123902,0.944227,0.136186,0.559056,0.0834552,0.772114,0.252096,0.0586193,0.302096,0.502701,0.840978,0.140875,0.699726,0.400315,0.1254,0.311779,0.0300683,0.983159,0.744642,0.692161,0.535793,0.538152,0.635062,0.0899513,0.827111,0.518605,0.0681649,0.0649128,0.343317,0.911521,0.180763,0.0282813,0.123712,0.621904,0.0766041,0.456237,0.176709,0.714383,0.346236,0.489936,0.34265,0.462629,0.223984,0.969898,0.769462,0.234014,0.95666,0.365378,0.794271,0.791001,0.39282,0.0806199,0.213772,0.702959,0.00249106,0.296134,0.14859,0.376223,0.177209,0.185914,0.902998,0.500737,0.370167,0.310521,0.639759,0.518204,0.131697,0.134741,0.656059,0.508018,0.277883,0.872561,0.0942692,0.197312,0.235329,0.277008,0.765447,0.103603,0.901291,0.956319,0.0606531,0.654564,0.419684,0.21388,0.540636,0.310899,0.760873,0.802523,0.654786,0.193318,0.362886,0.0923196,0.603393,0.547068,0.619113,0.140108,0.936237,0.911535,0.796562,0.326287,0.479506,0.997894,0.850698,0.120657,0.811369,0.846992,0.969889,0.780599,0.821921,0.335442,0.87424,0.467133,0.734536,0.885918,0.500363,0.312973,0.904383,0.298126,0.78015,0.294604,0.113317,0.236401,0.377582,0.394239,0.185457,0.93268,0.432019,0.265059,0.626949,0.467043,0.478688,0.123735,0.268415,0.988366,0.270801,0.885739,0.467376,0.907862,0.773309,0.79127,0.130629,0.549047,0.351591,0.269009,0.241232,0.452019,0.764181,0.576081,0.444256,0.8573,0.180591,0.338802,0.896665,0.031273,0.958802,0.908794,0.0857687,0.516522,0.0977935,0.245788,0.431665,0.484036,0.718829,0.146447,0.95114,0.35789,0.870966,0.0378868,0.274615,0.207908,0.779575,0.0786126,0.210871,0.464342,0.310725,0.314103,0.509197,0.803697,0.395863,0.676854,0.186678,0.622234,0.711903,0.611087,0.846945,0.0518704,0.397113,0.0822496,0.261832,0.581502,0.549532,0.740828,0.165987,0.139376,0.460318,0.861306,0.324931,0.1232,0.0742502,0.204663,0.369141,0.276634,0.115741,0.635427,0.01779,0.555544,0.56678,0.355619,0.75347,0.314017,0.808133,0.699516,0.730684,0.997123,0.0875984,0.785413,0.533176,0.495059,0.751903,0.859074,0.262197,0.667607,0.857233,0.102394,0.500979,0.376708,0.548294,0.901366,0.14099,0.148375,0.846519,0.890662,0.525283,0.836994,0.433307,0.513904,0.998082,0.624354,0.984341,0.26389,0.568208,0.00604916,0.724257,0.421067,0.917158,0.808873,0.906872,0.848503,0.495211,0.749836,0.21687,0.62304,0.668034,0.159854,0.647322,0.826582,0.697998,0.276936,0.0320243,0.886226,0.395295,0.563586,0.76643,0.794139,0.751885,0.510579,0.427819,0.675713,0.0381092,0.413472,0.667793,0.927728,0.9172,0.315208,0.582012,0.902086,0.682227,0.111314,0.236048,0.303859,0.249706,0.628833,0.821441,0.261723,0.462233,0.9009,0.601275,0.859986,0.928648,0.223637,0.460299,0.131746,0.714046,0.802372,0.308726,0.27163,0.946871,0.969296,0.762656,0.827199,0.735297,0.846296,0.110942,0.289416,0.799182,0.0845019,0.378067,0.621663,0.482668,0.0557602,0.985188,0.324347,0.0379311,0.852018,0.676438,0.63179,0.458235,0.446734,0.353543,0.563549,0.30823,0.76407,0.903918,0.85624,0.777206,0.311965,0.295348,0.296966,0.70233,0.219706,0.22585,0.190087,0.7618,0.55028,0.0534101,0.627214,0.13993,0.644583,0.634548,0.586936,0.755396,0.546823,0.795262,0.0011664,0.0899202,0.928702,0.0067659,0.91693,0.27584,0.666977,0.156078,0.0951555,0.637363,0.884455,0.811263,0.661986,0.849151,0.866816,0.842601,0.936092,0.35049,0.8179,0.496464,0.786211,0.10832,0.526777,0.0311686,0.0765436,0.653094,0.396013,0.145354,0.271952,0.264869,0.161256,0.862516,0.527482,0.544532,0.829183,0.170684,0.834569,0.848337,0.454591,0.405054,0.348272,0.365767,0.782342,0.670201,0.249145,0.476675,0.0171932,0.587314,0.257921,0.375651,0.855825,0.110335,0.458182,0.0935922,0.591258,0.654725,0.302584,0.0644246,0.061147,0.36979,0.135753,0.960183,0.164168,0.627673,0.0542143,0.479799,0.38445,0.423244,0.29659,0.0771663,|0.683179,0.999905,0.123213,0.517497,0.721185,0.990732,0.450001,0.997873,0.920984,0.240534,0.822856,0.298367,0.544543,0.716883,0.805713,0.443355,0.0924386,0.980761,0.886744,0.982397,0.282798,0.433343,0.645034,0.839966,0.498159,0.772511,0.243767,0.549617,0.610671,0.0797455,0.767487,0.641523,0.119108,0.687944,0.502322,0.787286,0.327522,0.683842,0.566163,0.763546,0.951745,0.597154,0.792673,0.557525,0.465811,0.77241,0.818851,0.400532,0.655195,0.304088,0.36824,0.62185,0.188432,0.288185,0.623774,0.725327,0.272372,0.796745,0.792519,0.242571,0.201755,0.0646976,0.655672,0.546639,0.130774,0.707715,0.599652,0.21311,0.869715,0.51091,0.0375426,0.155926,0.564313,0.219432,0.700559,0.559766,0.805534,0.419328,0.2225,0.633816,0.631656,0.362602,0.0912231,0.150935,0.386318,0.546987,0.485152,0.059052,0.54776,0.751411,0.123748,0.0562131,0.22712,0.892003,0.837783,0.335109,0.600524,0.201835,0.33815,0.468488,0.074907,0.119891,0.340762,0.23747,0.373629,0.645013,0.887349,0.922267,0.433073,0.530209,0.421543,0.0494704,0.0811357,0.316637,0.67669,0.378529,0.887957,0.154778,0.0255994,0.671657,0.690635,0.668181,0.331615,0.763842,0.463105,0.608787,0.345337,0.0902047,0.195494,0.801453,0.28707,0.551666,0.247206,0.536367,0.792184,0.110604,0.154004,0.346157,0.936488,0.478137,0.998709,0.622464,0.388604,0.702492,0.260932,0.570827,0.706803,0.538867,0.0945486,0.408339,0.278596,0.115478,0.656962,0.110126,0.0624162,0.521803,0.248893,0.897109,0.718759,0.680227,0.172276,0.674039,0.260755,0.789911,0.708259,0.111834,0.364272,0.0902538,0.745878,0.754626,0.316874,0.369044,0.0438062,0.286996,0.245314,0.817717,0.714984,0.818361,0.778361,0.358912,0.0457698,0.149201,0.975467,0.147656,0.611454,0.169996,0.463496,0.688513,0.226652,0.376942,0.0272427,0.968645,0.211117,0.509967,0.868695,0.378729,0.496864,0.780086,0.732701,0.820903,0.244366,0.250533,0.984803,0.188848,0.470684,0.864514,0.509096,0.290219,0.657299,0.620193,0.295218,0.383028,0.646587,0.323997,0.766058,0.409476,0.832909,0.775798,0.334285,0.906255,0.365044,0.315655,0.908752,0.711658,0.480009,0.61946,0.888457,0.485397,0.0499848,0.892941,0.812562,0.97491,0.0805371,0.240332,0.129565,0.726909,0.137259,0.468696,0.220446,0.425009,0.67688,0.41551,0.570072,0.109936,0.678363,0.542618,0.811314,0.982538,0.412346,0.856061,0.961936,0.941971,0.972929,0.184704,0.700086,0.768133,0.226411,0.842491,0.719535,0.427558,0.00470066,0.080501,0.247849,0.275156,0.393517,0.0308003,0.446857,0.877187,0.386582,0.812001,0.432786,0.830573,0.994414,0.444266,0.191521,0.64314,0.570496,0.183559,0.300259,0.0514503,0.997186,0.910035,0.0638168,0.586444,0.625448,0.951399,0.129603,0.259196,0.326048,0.739294,0.641749,0.175681,0.600743,0.231384,0.411275,0.753883,0.159056,0.182731,0.0244086,0.628273,0.629716,0.37459,0.259825,0.885873,0.523815,0.389537,0.951537,0.272903,0.0901334,0.100046,0.497103,0.622375,0.536475,0.366206,0.569431,0.681034,0.831463,0.962047,0.335342,0.894613,0.0790866,0.785185,0.502633,0.595234,0.0351542,0.448371,0.656182,0.970994,0.98499,0.407738,0.528459,0.0348733,0.857285,0.925457,0.350727,0.00120389,0.690332,0.0260576,0.0146392,0.997188,0.393822,0.120495,0.0598617,0.24815,0.0096699,0.569915,0.949193,0.837266,0.291889,0.792628,0.667108,0.154002,0.521506,0.0620552,0.646204,0.311964,0.80689,0.96329,0.679105,0.0120486,0.708885,0.55551,0.139032,0.635106,0.843056,0.756937,0.401864,0.976484,0.724935,0.175128,0.284901,0.47735,0.77633,0.23251,0.460542,0.140819,0.0263019,0.574006,0.993943,0.880627,0.190114,0.706133,0.358641,0.6865,0.297907,0.480647,0.356402,0.337434,0.0351118,0.269372,0.86846,0.256494,0.0968788,0.356858,0.457337,0.592957,0.473627,0.956752,0.676644,0.323356,0.0986094,0.573168,0.131295,0.240991,0.192918,0.881756,0.653007,0.236382,0.0105333,0.10358,0.443948,0.524152,0.0090701,0.967381,0.826427,0.485998,0.590275,0.611965,0.0129669,0.960123,0.403451,0.888356,0.664178,0.704693,0.056236,0.231307,0.203092,0.535925,0.731807,0.374011,0.698969,0.666037,0.506884,0.0401432,0.523362,0.232473,0.336838,0.686605,0.0739007,0.154939,0.61364,0.594391,0.207163,0.365278,0.226445,0.244824,0.719478,0.507151,0.468322,0.110411,0.510575,0.188982,0.00140119,0.581486,0.34192,0.780367,0.965302,0.241533,0.0037964,0.941016,0.575785,0.631339,0.0945595,0.805988,0.440451,0.363485,0.511282,0.852555,0.96303,0.0116757,0.529473,0.983713,0.0986177,0.165924,0.980853,0.296029,0.663078,0.187516,0.734406,0.469127,0.387644,0.387651,0.824137,0.150871,0.468159,0.442989,0.638674,0.0335113,0.911031,0.538675,0.709829,0.994694,0.738167,0.748313,0.74512,0.869078,0.63005,0.459845,0.573897,0.94632,0.320472,0.775712,0.115005,0.947519,0.305579,0.627198,0.572425,0.0502244,0.85959,0.982625,0.538381,0.905765,0.95742,0.962505,0.267813,0.123798,0.576811,0.810596,0.216776,0.278791,0.971319,0.824531,0.946738,0.114403,0.920156,0.238408,0.722052,0.435543,0.362631,0.552509,0.19511,0.691933,0.742002,0.869276,0.550468,0.412353,0.701574,0.809128,0.228404,0.527894,0.0622875,0.429571,0.979922,0.221322,0.163886,0.073262,0.442453,0.508045,0.135296,0.625036,0.736197,0.701274,0.319009,0.825717,0.0932281,0.395047,0.115735,0.211109,0.816779,0.158637,0.683436,0.365124,0.579235,0.660357,0.0389241,0.306738,0.862201,0.831276,0.72241,0.741089,0.498949,0.561388,0.284717,0.159954,0.717219,0.137977,0.0960108,0.066545,0.206813,0.557635,0.344444,0.282222,0.388369,0.360902,0.692116,0.170552,0.049108,0.500726,0.571202,0.381717,0.957146,0.769982,0.667882,0.224564,0.274027,0.669817,0.294374,0.195747,0.148329,0.472706,0.0574611,0.655414,0.198263,0.33439,0.913045,0.192353,0.0584698,0.350156,0.81023,0.728744,0.717606,0.109261,0.794275,0.441985,0.490357,0.442818,0.192513,0.415812,0.510182,0.903768,0.959356,0.945983,0.903347,0.0416524,0.0380226,0.917272,0.631613,0.230796,0.494749,0.849918,0.789855,0.688492,0.26556,0.895718,0.624956,0.193875,0.779966,0.6752,0.915557,0.882543,0.622676,0.64064,0.924304,0.128974,0.547474,0.541419,0.299766,0.855012,0.998893,0.965124,0.590489,0.202777,0.764119,0.601649,0.270637,0.0856376,0.391294,0.768784,0.225103,0.782065,0.700724,0.368278,0.182363,0.697509,0.494481,0.0231681,0.678777,0.859957,0.738049,0.369671,0.978639,0.365006,0.0194998,0.335208,0.793595,0.696141,0.895571,0.439623,0.142726,0.704165,0.25902,0.664193,0.611929,0.301401,0.740865,0.881913,0.476553,0.684253,0.265637,0.240833,0.124192,0.889195,0.270395,0.377768,0.144798,0.411247,0.425127,0.220334,0.227311,0.178411,0.159772,0.639293,0.865759,0.659136,0.172493,0.615548,0.495451,0.607231,0.487915,0.337624,0.754501,0.280875,0.566689,0.681979,0.577506,0.329094,0.723355,0.347817,0.809164,0.208693,0.813884,0.858511,0.498671,0.383921,0.789,0.0158973,0.451985,0.327443,0.469488,0.346458,0.824398,0.738879,0.724405,0.631254,0.956079,0.762256,0.234358,0.340894,0.933677,0.628297,0.222865,0.5362,0.941072,0.919918,0.432779,0.64752,0.881332,0.989648,0.146367,0.500308,0.053001,0.393297,0.276803,0.964095,0.701469,0.611389,0.69974,0.0456076,0.127893,0.798676,0.850719,0.0504522,0.345986,0.00860369,0.759809,0.112336,0.972595,0.900552,0.934416,0.461629,0.396012,0.0390327,0.00376034,0.912864,0.327062,0.423949,0.771756,0.100079,0.897032,0.69198,0.500366,0.185778,0.641342,0.694216,0.776326,0.0183609,0.654775,0.682002,0.0580968,0.68032,0.695125,0.121614,0.706236,0.0849845,0.499743,0.659876,0.619268,0.961367,0.441553,0.546641,0.0882902,0.838584,0.961136,0.96366,0.848807,0.0238142,0.617764,0.449576,0.346507,0.355558,0.435172,0.0914437,0.632875,0.12402,0.466936,0.806881,0.664396,0.353132,0.0238946,0.140284,0.886146,0.333052,0.650412,0.11401,0.303848,0.365587,0.908417,0.648986,0.172383,0.922462,0.010754,0.294428,0.646739,0.0656559,0.051106,0.895823,0.900377,0.235294,0.425903,0.362897,0.762486,0.418244,0.826341,0.65921,0.933857,0.630303,0.463213,0.562911,0.158933,0.783512,0.546649,0.191896,0.714728,0.172246,0.887876,0.261423,0.33389,0.0498233,0.907077,0.988141,0.597876,0.283411,0.380482,0.444421,0.971325,0.843562,0.324468,0.887269,0.274148,0.439764,0.381325,0.370879,0.642306,0.25871,0.548039,0.0315134,0.792922,0.940403,0.784807,0.290814,0.202429,0.84831,0.304097,0.855119,0.520179,0.0149472,0.00670487,0.877671,0.345695,0.595181,0.708076,0.645913,0.697691,0.0230899,0.132168,0.81662,0.361564,0.938967,0.974216,0.804235,0.549358,0.237001,0.471042,0.184117,0.18156,0.150739,0.504822,0.160883,0.297584,0.621739,0.0858016,0.327318,0.864241,0.615167,0.626694,0.065257,0.200239,0.849056,0.210247,0.714261,0.015698,0.652432,0.297968,0.508879,0.572718,0.967002,0.211667,0.671665,0.853523,0.279261,0.188285,0.673203,0.0586221,0.336442,0.822782,0.514982,0.692381,0.53297,0.136825,0.0517882,0.243297,0.550662,0.0539379,0.199761,0.158587,0.479254,0.0968135,0.912103,0.0967234,0.633564,0.642979,0.821892,0.111257,0.840073,0.0416588,0.60046,0.47756,0.178718,0.391691,0.193426,0.281638,0.326975,0.331766,0.773415,0.28642,0.660376,0.921718,0.476115,0.361612,0.663393,0.0370929,0.642644,0.789154,0.698155,0.353663,0.630211,0.0238039,0.701505,0.704534,0.645842,0.475155,0.870952,0.915016,0.210072,0.813672,0.628511,0.229945,0.935907,0.291788,0.39243,0.223305,0.740423,0.893941,0.40455,0.944507,0.169438,0.259873,0.812826,0.31359,0.000494301,|0.652582,0.991608,0.851235,0.000279844,0.307043,0.4068,0.62578,0.356516,0.867182,0.253856,0.314892,0.174514,0.879952,0.60453,0.03162,0.318847,0.31193,0.172195,0.802295,0.700276,0.262475,0.10475,0.142242,0.925392,0.840856,0.251555,0.978369,0.798871,0.278567,0.000938594,0.162607,0.696952,0.52946,0.0175155,0.462533,0.918754,0.181543,0.975694,0.598171,0.705537,0.945433,0.503047,0.0441275,0.252359,0.252085,0.359295,0.176375,0.293317,0.30261,0.314949,0.513859,0.759082,0.976399,0.898396,0.849385,0.79517,0.985269,0.288989,0.380652,0.997804,0.785499,0.91978,0.191094,0.429163,0.749399,0.77839,0.930578,0.447789,0.356815,0.675696,0.735283,0.141953,0.585029,0.690841,0.62518,0.289793,0.654799,0.408951,0.925402,0.0917013,0.39807,0.177315,0.217189,0.451908,0.931206,0.0484349,0.365871,0.135547,0.196519,0.733488,0.28988,0.474802,0.455653,0.610638,0.228729,0.131348,0.494435,0.0879593,0.384006,0.738361,0.968495,0.884493,0.875849,0.841439,0.788159,0.839529,0.767006,0.0363536,0.0954334,0.0405697,0.762109,0.22307,0.367536,0.998397,0.820693,0.906698,0.546172,0.389118,0.0861319,0.679557,0.0308912,0.912974,0.534658,0.250783,0.555992,0.0647877,0.390248,0.641635,0.365981,0.525042,0.671668,0.740756,0.425609,0.714266,0.928434,0.579112,0.186141,0.234335,0.153808,0.905052,0.0287341,0.347349,0.0941661,0.620932,0.322067,0.792695,0.368832,0.60547,0.0983713,0.565601,0.684052,0.730428,0.744176,0.0852814,0.155731,0.806143,0.096783,0.711828,0.253947,0.856372,0.697059,0.106101,0.0232326,0.563141,0.840886,0.311895,0.936693,0.156706,0.302006,0.148347,0.244686,0.603734,0.373589,0.127292,0.00559425,0.52952,0.260427,0.112283,0.756757,0.743339,0.410025,0.367066,0.808381,0.0256009,0.385111,0.964804,0.866375,0.297601,0.279519,0.931561,0.374373,0.417753,0.905978,0.604263,0.38561,0.129935,0.231541,0.0969455,0.467221,0.40278,0.938419,0.0602624,0.742979,0.466935,0.935534,0.189271,0.830951,0.698134,0.220042,0.826391,0.614554,0.925245,0.525874,0.0146052,0.137179,0.063805,0.831139,0.83477,0.981387,0.466215,0.831594,0.886609,0.14199,0.370491,0.0928029,0.77675,0.240731,0.28751,0.536104,0.841733,0.98121,0.16491,0.939875,0.996861,0.0039469,0.0179988,0.571588,0.408431,0.523597,0.748652,0.672161,0.18787,0.608059,0.117709,0.943594,0.960896,0.434282,0.846668,0.135708,0.647605,0.449206,0.106795,0.683596,0.239875,0.153722,0.0734987,0.643428,0.332651,0.441879,0.0788074,0.937572,0.825178,0.23866,0.732285,0.731706,0.85035,0.950793,0.895774,0.724906,0.817285,0.0860674,0.99586,0.499117,0.129586,0.865284,0.249023,0.540296,0.939254,0.597339,0.121904,0.44414,0.452807,0.861554,0.150239,0.851411,0.464986,0.667424,0.880572,0.718622,0.153104,0.703777,0.133432,0.102815,0.516348,0.833889,0.532692,0.23593,0.844933,0.176876,0.475088,0.589699,0.65646,0.829493,0.280578,0.122132,0.462722,0.718009,0.380753,0.0933607,0.198938,0.714641,0.0399986,0.690443,0.219302,0.308667,0.406702,0.402278,0.200546,0.0571045,0.577641,0.36123,0.538646,0.554311,0.134664,0.878738,0.820257,0.938757,0.468527,0.864163,0.573097,0.849533,0.38015,0.381536,0.961425,0.761785,0.682173,0.983191,0.995906,0.515894,0.859932,0.523054,0.664896,0.12546,0.210302,0.433622,0.440493,0.178133,0.991069,0.728373,0.504829,0.546816,0.96548,0.304985,0.780451,0.80723,0.63255,0.504423,0.796595,0.667632,0.0382801,0.0195807,0.920743,0.329324,0.948372,0.908739,0.866947,0.331798,0.258205,0.0795859,0.781432,0.484154,0.865383,0.206404,0.523486,0.00201327,0.74466,0.752968,0.519034,0.984812,0.686074,0.0400803,0.549787,0.180165,0.894857,0.472357,0.125291,0.0146829,0.934089,0.34042,0.490079,0.993913,0.610846,0.743406,0.671763,0.506287,0.964016,0.467458,0.535147,0.37012,0.218206,0.162643,0.449725,0.413216,0.916624,0.154927,0.443753,0.735557,0.86365,0.974447,0.176741,0.587053,0.4388,0.259712,0.797463,0.59425,0.0425587,0.471639,0.829695,0.802993,0.902268,0.152163,0.645258,0.790648,0.110694,0.250489,0.75804,0.545485,0.409973,0.379948,0.446428,0.948589,0.851431,0.807078,0.379536,0.58858,0.499736,0.725215,0.988858,0.723251,0.903434,0.267979,0.729532,0.52193,0.433279,0.30002,0.251081,0.54343,0.0679556,0.186321,0.359354,0.751662,0.559263,0.420306,0.397447,0.223138,0.59459,0.713704,0.545701,0.730551,0.518498,0.789658,0.617163,0.0933508,0.836474,0.13203,0.551737,0.0371928,0.0162897,0.321864,0.930537,0.75417,0.701407,0.577907,0.033085,0.735876,0.945834,0.795182,0.747063,0.0782204,0.927424,0.132005,0.00653762,0.195476,0.690258,0.63324,0.424972,0.534974,0.317464,0.32413,0.0568439,0.569892,0.468834,0.546765,0.386555,0.916524,0.388345,0.352129,0.651783,0.163939,0.737196,0.128366,0.531286,0.90609,0.154559,0.54032,0.131303,0.120376,0.762527,0.844191,0.75986,0.396049,0.545083,0.441168,0.156343,0.63898,0.923826,0.811891,0.65196,0.327682,0.339052,0.199344,0.728706,0.48297,0.112258,0.349673,0.206921,0.976403,0.0220405,0.215584,0.360611,0.762757,0.296996,0.792233,0.505416,0.861851,0.227393,0.265377,0.936343,0.782836,0.539493,0.0586357,0.653023,0.659419,0.67865,0.717687,0.470738,0.339645,0.975014,0.690456,0.952898,0.00705802,0.739953,0.228485,0.897606,0.199175,0.692093,0.33155,0.577906,0.331497,0.0262284,0.180795,0.547517,0.31134,0.755309,0.44929,0.462478,0.832381,0.431073,0.634132,0.699533,0.472009,0.610089,0.0226417,0.171031,0.131268,0.89086,0.602409,0.209966,0.207702,0.190765,0.293934,0.336893,0.888278,0.207404,0.182812,0.0731369,0.665516,0.413271,0.174148,0.800489,0.946113,0.36435,0.421314,0.158295,0.622611,0.976784,0.997649,0.226976,0.461579,0.681687,0.47694,0.481107,0.776664,0.000221848,0.990046,0.425515,0.149483,0.760159,0.466132,0.965205,0.815238,0.382065,0.671752,0.539225,0.595258,0.724643,0.622761,0.349743,0.64798,0.876446,0.124319,0.809425,0.702231,0.697189,0.380133,0.807328,0.457669,0.415909,0.129512,0.690435,0.344119,0.746958,0.064989,0.113231,0.0798954,0.174654,0.832584,0.635089,0.549622,0.61118,0.103128,0.749439,0.0925346,0.0326145,0.282955,0.341154,0.477115,0.129734,0.98132,0.0971873,0.22951,0.410471,0.217977,0.875182,0.284215,0.861441,0.276203,0.223559,0.823693,0.842285,0.43266,0.737682,0.858104,0.645246,0.170368,0.489755,0.547767,0.541989,0.404963,0.477953,0.362869,0.262752,0.0492069,0.145428,0.343644,0.0509384,0.600896,0.509406,0.0488322,0.999359,0.617948,0.692132,0.154392,0.887427,0.754928,0.834695,0.225956,0.98845,0.91672,0.917829,0.727893,0.79176,0.0438233,0.133405,0.978805,0.634032,0.149567,0.0935788,0.642572,0.681679,0.386231,0.192036,0.396566,0.348192,0.379712,0.337208,0.608032,0.649922,0.524655,0.269134,0.874281,0.567679,0.569963,0.240509,0.725583,0.410485,0.173413,0.528844,0.305739,0.154295,0.252791,0.957173,0.146434,0.341869,0.063437,0.0921351,0.240573,0.0624474,0.594338,0.774742,0.292528,0.205256,0.686567,0.398304,0.203774,0.180221,0.356642,0.345447,0.142534,0.43652,0.35366,0.419059,0.976617,0.994456,0.912772,0.440659,0.59111,0.905083,0.22989,0.614142,0.0439838,0.024083,0.325681,0.740091,0.366956,0.781115,0.0169225,0.263272,0.949954,0.134644,0.174975,0.0357407,0.885021,0.613678,0.547104,0.0873008,0.233411,0.533279,0.549745,0.965626,0.976235,0.372027,0.452007,0.21022,0.493335,0.423594,0.250211,0.957677,0.996274,0.398625,0.00819445,0.713117,0.31416,0.69504,0.166751,0.24921,0.900851,0.95721,0.564901,0.784427,0.843287,0.796186,0.1293,0.877746,0.592105,0.894614,0.790849,0.321435,0.653421,0.129112,0.310235,0.973205,0.402495,0.168404,0.140997,0.676949,0.810467,0.752768,0.751571,0.582165,0.506299,0.32827,0.930709,0.0069108,0.541735,0.564902,0.279106,0.205121,0.228223,0.35491,0.571813,0.1664,0.01118,0.318677,0.0252075,0.895853,0.26436,0.453967,0.572151,0.601719,0.688362,0.223338,0.659006,0.691339,0.490271,0.305963,0.0891613,0.58174,0.211601,0.838836,0.622667,0.0845895,0.0225264,0.434138,0.698636,0.982198,0.272854,0.493113,0.565331,0.247496,0.786241,0.697917,0.336885,0.141274,0.16705,0.743305,0.353323,0.166327,0.942944,0.133374,0.196974,0.587181,0.307332,0.369231,0.303283,0.742388,0.987462,0.528881,0.254385,0.214521,0.0557888,0.229232,0.852301,0.159149,0.106675,0.0984016,0.112508,0.293575,0.947315,0.611003,0.735062,0.13562,0.329942,0.504272,0.177985,0.339984,0.44696,0.278303,0.7111,0.783916,0.718794,0.565372,0.39756,0.533903,0.520394,0.1143,0.997795,0.0236638,0.664652,0.558377,0.218408,0.905393,0.375047,0.077624,0.244718,0.318112,0.955843,0.454101,0.613478,0.797109,0.338576,0.337692,0.614457,0.863234,0.731982,0.603803,0.147338,0.971052,0.369931,0.420433,0.0182906,0.864888,0.150968,0.0768862,0.330995,0.387345,0.426152,0.109764,0.870639,0.753528,0.0439047,0.317626,0.767398,0.71092,0.458887,0.708274,0.139789,0.965735,0.235114,0.600649,0.915702,0.0231177,0.510285,0.344881,0.544188,0.0712261,0.719409,0.917626,0.215706,0.6444,0.962295,0.226377,0.777426,0.26932,0.907774,0.443977,0.365339,0.20699,0.548252,0.238912,0.398921,0.0450429,0.218169,0.39942,0.406001,0.0390345,0.487355,0.943296,0.121303,0.348124,0.938235,0.184008,0.684055,0.511559,0.727703,0.913402,0.256983,0.678559,0.145482,0.689051,0.276145,0.871931,0.801849,0.850151,0.905965,0.188875,0.785798,0.984926,0.779855,0.365098,0.461587,0.835496,0.285061,0.580074,0.102959,0.820402,0.489912,0.853025,0.279964,0.503682,|0.423714,0.210451,0.189015,0.647847,0.713207,0.388462,0.198948,0.167517,0.926759,0.118491,0.811278,0.589937,0.336173,0.576866,0.252367,0.993588,0.442189,0.642491,0.608544,0.80425,0.230834,0.362199,0.15224,0.554912,0.029201,0.557493,0.71159,0.340604,0.945738,0.125869,0.187976,0.953283,0.400159,0.64665,0.501062,0.78928,0.00558007,0.661552,0.736227,0.164491,0.520973,0.91388,0.66009,0.76956,0.667255,0.0329428,0.0448187,0.341078,0.423242,0.54421,0.289126,0.702739,0.107581,0.12754,0.447591,0.656004,0.815138,0.974947,0.781013,0.272575,0.7091,0.948516,0.362321,0.138713,0.459413,0.545522,0.52776,0.372706,0.884013,0.938365,0.219992,0.059051,0.785198,0.892206,0.638722,0.899408,0.604474,0.155131,0.991323,0.591438,0.214454,0.306416,0.828492,0.357551,0.662992,0.777771,0.691548,0.133245,0.505471,0.0594216,0.653966,0.98695,0.587148,0.227901,0.875626,0.308327,0.639819,0.581291,0.386491,0.321779,0.306514,0.937671,0.253108,0.964644,0.34565,0.0367718,0.490703,0.0533525,0.231486,0.940358,0.666761,0.447037,0.095787,0.562277,0.713795,0.25991,0.805788,0.0528067,0.388957,0.829926,0.862803,0.240455,0.590027,0.472794,0.671769,0.837498,0.574831,0.0492799,0.89511,0.892711,0.639502,0.268742,0.761101,0.295622,0.16248,0.907864,0.729403,0.168265,0.266268,0.590046,0.502303,0.811313,0.875795,0.0690753,0.332298,0.411368,0.973675,0.116718,0.996953,0.408996,0.210147,0.520136,0.22057,0.00921732,0.690586,0.314364,0.481,0.894257,0.925861,0.549173,0.732813,0.77944,0.640403,0.463239,0.108836,0.0146403,0.607374,0.662229,0.504639,0.836587,0.476127,0.567607,0.247343,0.262406,0.105573,0.281528,0.249856,0.823778,0.751382,0.965056,0.305092,0.497395,0.672529,0.816536,0.910399,0.717308,0.705414,0.299191,0.565113,0.173148,0.837485,0.826053,0.729313,0.466789,0.542276,0.421994,0.894836,0.0135256,0.997649,0.668152,0.136547,0.219537,0.638351,0.701289,0.954543,0.643323,0.281852,0.639994,0.527159,0.138763,0.208717,0.333328,0.646422,0.851879,0.847496,0.978753,0.188276,0.564905,0.0675809,0.352193,0.811836,0.0450355,0.820948,0.275475,0.914054,0.799431,0.382899,0.898221,0.828415,0.182071,0.569303,0.130763,0.355034,0.594815,0.453555,0.0391294,0.259846,0.973929,0.812479,0.655033,0.733931,0.900419,0.642188,0.52133,0.211804,0.175173,0.459296,0.807201,0.287379,0.72919,0.90287,0.877441,0.184608,0.973525,0.235935,0.119699,0.640642,0.518598,0.110016,0.681261,0.95672,0.94048,0.921362,0.546661,0.270493,0.876426,0.196392,0.0243883,0.392292,0.943369,0.875669,0.468858,0.588659,0.447983,0.627671,0.137551,0.402174,0.66661,0.936539,0.360316,0.155254,0.441502,0.858179,0.852251,0.730765,0.725352,0.43855,0.457305,0.911157,0.973837,0.926074,0.943392,0.300744,0.753186,0.244393,0.478677,0.182438,0.231651,0.196736,0.966692,0.936118,0.0788959,0.605764,0.384586,0.9345,0.399603,0.452024,0.0723099,0.675389,0.670521,0.711639,0.80969,0.242476,0.741714,0.436134,0.274244,0.747288,0.0918053,0.404043,0.40855,0.871318,0.674052,0.52401,0.534512,0.450635,0.284813,0.747112,0.53593,0.398284,0.347074,0.344596,0.0805476,0.636879,0.449115,0.270002,0.415928,0.8361,0.898373,0.60171,0.0269748,0.667185,0.509344,0.0137953,0.1728,0.613242,0.788923,0.810704,0.803152,0.880804,0.679208,0.870389,0.864752,0.21328,0.556642,0.168765,0.389456,0.941753,0.772465,0.240075,0.728638,0.828063,0.83617,0.0484805,0.241415,0.27223,0.757661,0.600533,0.450719,0.644473,0.99034,0.670604,0.797875,0.910242,0.0827922,0.0769628,0.921409,0.951423,0.0184281,0.265443,0.27457,0.305902,0.621904,0.425457,0.105196,0.452654,0.95118,0.993734,0.366878,0.855954,0.157846,0.758151,0.221052,0.23533,0.363933,0.925748,0.0649229,0.546852,0.973083,0.970693,0.864333,0.709933,0.966822,0.759513,0.49026,0.0845456,0.986976,0.358012,0.647896,0.11589,0.716756,0.169275,0.650171,0.684806,0.867572,0.62852,0.207926,0.240099,0.613151,0.76865,0.221554,0.485678,0.657294,0.417265,0.491296,0.403371,0.375343,0.340201,0.645068,0.309395,0.841043,0.114951,0.651336,0.177495,0.724819,0.757443,0.400451,0.55242,0.451867,0.0482724,0.927753,0.0303333,0.847557,0.378378,0.41344,0.235907,0.424862,0.910898,0.487518,0.453506,0.742897,0.288945,0.952302,0.263265,0.717802,0.213863,0.862725,0.0862172,0.944473,0.0571033,0.526357,0.440372,0.351383,0.267503,0.792421,0.418597,0.293621,0.909127,0.232044,0.120482,0.600449,0.303671,0.539324,0.334671,0.461936,0.222401,0.545898,0.862925,0.890088,0.270397,0.360625,0.493797,0.939331,0.503033,0.937861,0.191687,0.0636526,0.915642,0.729632,0.870497,0.196307,0.304209,0.470911,0.315496,0.160228,0.712688,0.5087,0.220195,0.709292,0.602592,0.34936,0.0546483,0.562607,0.806681,0.402031,0.555706,0.598105,0.262331,0.413668,0.0783893,0.631777,0.557269,0.239072,0.982965,0.404215,0.951837,0.398496,0.598285,0.908043,0.426703,0.33875,0.507691,0.967717,0.360539,0.52104,0.268278,0.736438,0.445631,0.901027,0.395039,0.687883,0.894898,0.790628,0.0212809,0.140395,0.502614,0.937111,0.765843,0.658058,0.172212,0.0115629,0.896685,0.52031,0.906662,0.541378,0.949546,0.226679,0.432643,0.332879,0.363495,0.195685,0.972344,0.764199,0.00550228,0.587448,0.942249,0.880272,0.469782,0.512179,0.0828277,0.975932,0.188674,0.315136,0.994225,0.0448701,0.0514352,0.39571,0.00454432,0.931947,0.541705,0.58981,0.558049,0.253394,0.674452,0.322055,0.0249213,0.689317,0.633476,0.958675,0.476029,0.735412,0.589299,0.41779,0.84429,0.727003,0.215832,0.653598,0.285968,0.694747,0.775073,0.324591,0.894974,0.445839,0.710596,0.907544,0.115576,0.439444,0.0107599,0.997037,0.829188,0.266964,0.779876,0.734575,0.132515,0.408081,0.782966,0.137013,0.526861,0.717123,0.489436,0.614383,0.0601212,0.00538313,0.644354,0.413169,0.280124,0.717702,0.446951,0.901257,0.261065,0.540068,0.649304,0.479996,0.877986,0.160666,0.479739,0.188254,0.463224,0.475309,0.558884,0.402647,0.517041,0.544206,0.548398,0.376098,0.259096,0.497522,0.788056,0.569155,0.823292,0.53578,0.65344,0.9572,0.442343,0.97002,0.107187,0.036792,0.583427,0.765485,0.0499279,0.0456603,0.968154,0.412585,0.202862,0.513384,0.228953,0.900211,0.827773,0.557981,0.248652,0.390727,0.896501,0.122002,0.267781,0.0598968,0.259708,0.236877,0.902065,0.320503,0.0338755,0.633569,0.631776,0.467627,0.524521,0.0431326,0.0823975,0.791453,0.594642,0.827836,0.814228,0.389505,0.586138,0.203354,0.710719,0.517891,0.48296,0.148441,0.0997432,0.432969,0.678649,0.741833,0.696372,0.0659662,0.0985079,0.799274,0.514922,0.701743,0.176471,0.0282235,0.781315,0.910217,0.768354,0.168352,0.947473,0.467155,0.989825,0.732003,0.305333,0.557302,0.302198,0.0929396,0.296146,0.333526,0.939289,0.712891,0.504349,0.659945,0.728048,0.35353,0.70149,0.429193,0.189682,0.413118,0.018061,0.972301,0.411538,0.775876,0.756596,0.816831,0.838934,0.560691,0.407986,0.796351,0.364438,0.950668,0.026742,0.762188,0.420649,0.276752,0.330835,0.423063,0.745982,0.880316,0.210868,0.142536,0.235649,0.102381,0.371983,0.0425692,0.575501,0.700639,0.503292,0.734778,0.839373,0.872513,0.45192,0.330446,0.378495,0.340794,0.35161,0.999137,0.443539,0.165748,0.176278,0.195467,0.523267,0.922724,0.262667,0.80227,0.307105,0.212528,0.604596,0.0656118,0.556786,0.91138,0.843461,0.719345,0.0736563,0.765638,0.937394,0.259443,0.603281,0.943113,0.697349,0.963032,0.0688397,0.212133,0.985253,0.637583,0.202384,0.680199,0.257777,0.614996,0.724757,0.831073,0.3373,0.0273366,0.369223,0.734978,0.356027,0.256007,0.742463,0.61064,0.637179,0.844597,0.782335,0.715798,0.931314,0.471436,0.968068,0.842736,0.112571,0.0165709,0.861468,0.318274,0.469621,0.0048244,0.184902,0.823099,0.974593,0.520242,0.224984,0.0242788,0.429457,0.0619899,0.27791,0.416949,0.0760747,0.811487,0.108836,0.276046,0.277489,0.581589,0.0980024,0.580918,0.483576,0.0534638,0.905635,0.0836184,0.852507,0.596256,0.680729,0.532472,0.542526,0.487704,0.753516,0.924732,0.788701,0.877662,0.58227,0.772844,0.688816,0.37038,0.549743,0.99149,0.698745,0.175262,0.487404,0.180505,0.131201,0.688317,0.798033,0.75241,0.759364,0.0527125,0.107921,0.20992,0.274902,0.638422,0.831447,0.512484,0.704788,0.747278,0.271914,0.0680484,0.511561,0.774073,0.0284235,0.367007,0.548015,0.348947,0.490181,0.270319,0.645704,0.457074,0.197997,0.0371637,0.825647,0.19571,0.678471,0.938441,0.02961,0.0942158,0.583392,0.738054,0.907795,0.939671,0.774952,0.157732,0.757108,0.882894,0.781553,0.705226,0.115634,0.185558,0.541551,0.137509,0.816841,0.396142,0.537311,0.0799213,0.360205,0.733476,0.552793,0.850975,0.419389,0.834423,0.445132,0.385626,0.307149,0.431359,0.444554,0.520901,0.246473,0.45954,0.926986,0.114664,0.318355,0.829851,0.951515,0.264789,0.51952,0.519761,0.797617,0.0372051,0.68967,0.182998,0.0341284,0.462656,0.105392,0.439202,0.19883,0.338395,0.178581,0.771853,0.6385,0.690772,0.44052,0.691286,0.502311,0.857661,0.332519,0.735872,0.395223,0.183341,0.955519,0.823402,0.381452,0.080008,0.56396,0.430961,0.745962,0.395665,0.579744,0.552054,0.66959,0.189248,0.980996,0.470363,0.169764,0.478826,0.74878,0.218547,0.21014,0.607985,0.182909,0.651043,0.29994,0.627351,0.714887,0.743854,0.199352,0.00653023,0.0835049,0.955494,0.264908,0.12676,0.579743,0.810257,0.295799,0.256833,0.885459,0.61675,0.368765,0.631433,0.902428,0.0398815,0.315438,0.417003,0.852519,0.702158,|0.427033,0.98674,0.0370761,0.611647,0.995615,0.0487514,0.162764,0.468552,0.464492,0.200621,0.513919,0.348325,0.49619,0.304968,0.850169,0.149412,0.536221,0.182553,0.91835,0.540693,0.728317,0.853762,0.147745,0.690646,0.832786,0.804161,0.560969,0.891104,0.149604,0.203279,0.68897,0.509335,0.664934,0.0607024,0.131502,0.493937,0.996154,0.866133,0.84345,0.734717,0.207101,0.810787,0.00170386,0.854564,0.262305,0.605976,0.945645,0.433191,0.891607,0.701387,0.250625,0.0861946,0.303412,0.218404,0.692217,0.00998616,0.779581,0.277101,0.968465,0.691089,0.332131,0.350514,0.983328,0.810656,0.374761,0.78188,0.272147,0.582594,0.698584,0.312937,0.410263,0.495813,0.36486,0.87645,0.330723,0.433314,0.914933,0.596098,0.00441629,0.111611,0.813555,0.864795,0.505569,0.846505,0.781987,0.127617,0.755315,0.831854,0.621787,0.159113,0.36195,0.491216,0.387541,0.510191,0.784712,0.934107,0.935618,0.567313,0.274688,0.751777,0.0507007,0.150571,0.735446,0.679925,0.51573,0.705893,0.328941,0.52946,0.593232,0.119467,0.960189,0.960699,0.404258,0.414005,0.276494,0.36849,0.388916,0.690523,0.475895,0.181831,0.28985,0.792871,0.818195,0.955534,0.0635992,0.335371,0.667126,0.953842,0.674764,0.29255,0.850591,0.759775,0.444733,0.112601,0.636257,0.0899463,0.773268,0.870128,0.674937,0.390738,0.196674,0.915869,0.263293,0.798521,0.369346,0.458859,0.361245,0.413378,0.166587,0.970749,0.274989,0.165684,0.14927,0.347003,0.592044,0.434176,0.0423954,0.87824,0.459632,0.144929,0.951271,0.900118,0.0271922,0.592223,0.83026,0.582933,0.246517,0.511912,0.234491,0.386819,0.847442,0.232098,0.528285,0.149325,0.487518,0.356912,0.987212,0.793252,0.224226,0.724369,0.859687,0.599038,0.623996,0.745355,0.927113,0.139286,0.667337,0.560606,0.609459,0.366488,0.357887,0.345392,0.751427,0.67072,0.888873,0.551034,0.637055,0.421096,0.635741,0.0769413,0.861111,0.463492,0.950865,0.427253,0.0151396,0.312988,0.385714,0.690287,0.948143,0.736138,0.955765,0.394909,0.183934,0.854042,0.857795,0.481908,0.374736,0.797227,0.219961,0.923486,0.109166,0.982456,0.773795,0.388274,0.400584,0.029231,0.440966,0.985157,0.350618,0.705007,0.0285575,0.276623,0.871841,0.345117,0.702267,0.292594,0.0149055,0.810597,0.284575,0.626353,0.232026,0.709289,0.479895,0.772771,0.698214,0.639953,0.718804,0.0262536,0.886036,0.855822,0.819384,0.722956,0.604008,0.480473,0.782174,0.608726,0.127966,0.356076,0.783968,0.961619,0.886377,0.42288,0.347055,0.362872,0.693215,0.62909,0.552807,0.614392,0.156918,0.475642,0.537669,0.885571,0.00513363,0.205946,0.814608,0.308999,0.600338,0.0835729,0.203016,0.642533,0.600204,0.999631,0.833714,0.47194,0.773518,0.486764,0.0525293,0.734628,0.877326,0.831661,0.130343,0.950286,0.190093,0.771471,0.272241,0.384359,0.0311651,0.57268,0.248081,0.181303,0.330368,0.670715,0.318318,0.918479,0.437075,0.817882,0.305251,0.196261,0.177974,0.0456963,0.165398,0.872131,0.600956,0.944208,0.758581,0.95454,0.312552,0.14058,0.743083,0.134374,0.149311,0.361532,0.238162,0.735233,0.176302,0.416828,0.40824,0.410553,0.0926234,0.217556,0.00170547,0.781096,0.942959,0.102067,0.225957,0.248981,0.429628,0.571732,0.257078,0.89376,0.195022,0.863418,0.149893,0.732808,0.95355,0.0599638,0.210834,0.101558,0.927455,0.980175,0.0818864,0.184723,0.531494,0.430859,0.487522,0.500166,0.278279,0.912174,0.823004,0.0889493,0.583527,0.788885,0.212025,0.965072,0.506469,0.992184,0.0721647,0.531258,0.868502,0.0252891,0.879593,0.642846,0.488938,0.101332,0.575169,0.994714,0.690511,0.832184,0.511618,0.481718,0.515109,0.797818,0.857583,0.188994,0.591883,0.90852,0.399893,0.76419,0.93943,0.585176,0.499689,0.900213,0.91571,0.433681,0.858851,0.432962,0.297129,0.617943,0.10273,0.451064,0.407962,0.210187,0.705184,0.670709,0.421863,0.807708,0.689436,0.590998,0.380091,0.473446,0.864749,0.8656,0.689502,0.160768,0.325924,0.319826,0.630091,0.00637203,0.976404,0.387134,0.7066,0.118098,0.469907,0.136732,0.395948,0.26141,0.217097,0.476151,0.40293,0.636546,0.523199,0.128525,0.749568,0.446173,0.0874334,0.790639,0.513938,0.783929,0.901982,0.204968,0.670365,0.263085,0.787554,0.630653,0.0771099,0.281627,0.348711,0.726686,0.0682319,0.0491365,0.798909,0.0672405,0.158009,0.265999,0.967537,0.918309,0.254306,0.0376081,0.140046,0.916165,0.133319,0.86621,0.138106,0.424434,0.86093,0.869026,0.105247,0.238515,0.267525,0.83243,0.135898,0.00413013,0.594835,0.283169,0.415821,0.332337,0.370691,0.86883,0.672311,0.860809,0.56315,0.750025,0.24955,0.0720253,0.461636,0.972652,0.501675,0.132804,0.699398,0.179286,0.883188,0.768629,0.442603,0.952573,0.107366,0.123736,0.379945,0.626744,0.846911,0.365941,0.269994,0.304973,0.270529,0.962073,0.636694,0.568551,0.360333,0.596208,0.482795,0.796013,0.847105,0.646436,0.456773,0.681212,0.0484062,0.363806,0.0409237,0.197472,0.342199,0.090821,0.319839,0.068786,0.242817,0.854916,0.522484,0.420424,0.756468,0.426658,0.486159,0.0567092,0.634276,0.119768,0.269208,0.949746,0.162943,0.575341,0.209934,0.703546,0.242485,0.106392,0.392284,0.575725,0.942091,0.519715,0.295724,0.116555,0.923218,0.816205,0.0509977,0.47752,0.610934,0.255164,0.0705216,0.0939405,0.995987,0.77307,0.393867,0.239222,0.526894,0.85453,0.562532,0.886428,0.27756,0.804121,0.289128,0.244073,0.497986,0.216577,0.163743,0.467295,0.0229518,0.405671,0.256257,0.340201,0.636838,0.0992424,0.182561,0.603529,0.703337,0.710372,0.232684,0.377064,0.260653,0.884997,0.416097,0.836033,0.474633,0.904439,0.681974,0.633809,0.334927,0.300861,0.54104,0.0911325,0.161538,0.435792,0.318695,0.970149,0.928606,0.867581,0.389713,0.122473,0.751685,0.15144,0.374334,0.662996,0.101579,0.379461,0.0606574,0.58968,0.10292,8.52346e-05,0.95617,0.157702,0.543895,0.219727,0.890172,0.384037,0.236719,0.818581,0.532203,0.376737,0.309611,0.259541,0.845631,0.801801,0.203195,0.0354579,0.353001,0.626165,0.127797,0.389464,0.775015,0.545258,0.66787,0.959093,0.69284,0.65898,0.879216,0.965081,0.866462,0.333976,0.479901,0.405881,0.66634,0.016082,0.684367,0.854079,0.97741,0.599599,0.716606,0.870952,0.779307,0.70265,0.802886,0.270676,0.02587,0.222944,0.952975,0.345065,0.799998,0.654691,0.578087,0.979253,0.106336,0.745412,0.46766,0.157074,0.642244,0.258456,0.584154,0.470477,0.0807741,0.380315,0.787119,0.548373,0.360361,0.52472,0.738613,0.574107,0.555069,0.716015,0.479484,0.518505,0.338009,0.928058,0.970606,0.749927,0.538266,0.935853,0.842837,0.90997,0.437834,0.447081,0.915175,0.0158073,0.351772,0.846545,0.460695,0.23008,0.440205,0.796341,0.170459,0.899906,0.671047,0.769997,0.754332,0.956548,0.259295,0.205526,0.899951,0.196384,0.235146,0.533007,0.260752,0.188782,0.457577,0.738926,0.803532,0.848956,0.901933,0.69257,0.472773,0.53655,0.86608,0.734306,0.705848,0.108472,0.653715,0.0904853,0.797912,0.142971,0.466885,0.226671,0.178671,0.228282,0.606151,0.0676525,0.469124,0.354674,0.779254,0.811419,0.527952,0.785745,0.509473,0.270723,0.98604,0.878281,0.402125,0.856365,0.867764,0.898127,0.949592,0.617767,0.127155,0.95443,0.315531,0.733427,0.749199,0.441902,0.823792,0.324431,0.0375405,0.145434,0.472544,0.538045,0.0977886,0.846047,0.647062,0.906166,0.955643,0.329296,0.334694,0.0629295,0.960568,0.895058,0.443691,0.577942,0.940186,0.430893,0.530977,0.128789,0.711493,0.971845,0.778733,0.798197,0.119522,0.829943,0.390701,0.0618454,0.741417,0.745319,0.484951,0.156844,0.882108,0.925405,0.094271,0.088385,0.369351,0.818836,0.27122,0.667917,0.966729,0.321503,0.452594,0.45251,0.800011,0.901164,0.188581,0.0164401,0.325226,0.528511,0.375184,0.0964349,0.221737,0.871444,0.642891,0.878563,0.32106,0.504209,0.352903,0.7949,0.954064,0.00278342,0.292943,0.224217,0.344011,0.350306,0.653982,0.41756,0.495366,0.409651,0.379989,0.627222,0.276664,0.624349,0.4613,0.585834,0.766268,0.645473,0.411799,0.794679,0.452811,0.565738,0.0298005,0.91178,0.121446,0.518279,0.0347436,0.683125,0.807081,0.193363,0.767815,0.558033,0.649178,0.963536,0.511234,0.520587,0.352148,0.954945,0.723448,0.0907838,0.264975,0.107402,0.266427,0.0880453,0.96067,0.887427,0.74299,0.95008,0.717734,0.0436747,0.035678,0.561958,0.951806,0.940586,0.422713,0.144119,0.0251498,0.139664,0.588924,0.482296,0.165771,0.623907,0.128133,0.793404,0.150819,0.260881,0.645367,0.357952,0.121796,0.559662,0.0188673,0.281526,0.0168699,0.190187,0.773678,0.162607,0.814762,0.283263,0.908239,0.891466,0.279113,0.295997,0.65587,0.37005,0.644556,0.0926215,0.793253,0.532038,0.0926655,0.665946,0.709701,0.285913,0.447831,0.00426626,0.991988,0.166212,0.224847,0.721323,0.736484,0.156938,0.223265,0.0199834,0.275979,0.85774,0.209139,0.643166,0.902592,0.866812,0.847224,0.0784706,0.653884,0.672372,0.557035,0.644188,0.988828,0.993464,0.855482,0.161087,0.809307,0.372225,0.833517,0.131904,0.396501,0.187031,0.124752,0.623547,0.00658894,0.15374,0.169125,0.690513,0.0861553,0.21753,0.309495,0.483932,0.443761,0.564013,0.443676,0.574793,0.26223,0.351037,0.936114,0.397463,0.431806,0.0362291,0.180632,0.320209,0.758597,0.53418,0.590907,0.115304,0.0561116,0.614048,0.988509,0.405289,0.436545,0.0569065,0.624899,0.0332251,0.360359,0.251763,0.232623,0.967627,0.246129,0.590807,0.527344,0.236925,0.860226,0.265868,0.857394,0.659112,0.744973,0.531523,0.221391,0.951532,0.185689,0.703862,0.710205,0.396116,|0.653022,0.889607,0.0728834,0.436768,0.45015,0.267834,0.150665,0.229896,0.610222,0.809244,0.922819,0.0798902,0.276052,0.780147,0.852441,0.0660719,0.784464,0.392309,0.382808,0.635301,0.721199,0.96516,0.652245,0.907156,0.351104,0.569265,0.0944244,0.466401,0.157334,0.73473,0.716569,0.173251,0.189342,0.223223,0.493524,0.187384,0.0344461,0.120722,0.0268185,0.944275,0.455833,0.0113558,0.147323,0.25251,0.402962,0.221674,0.304964,0.670442,0.262795,0.912371,0.559923,0.663096,0.356193,0.78253,0.534436,0.434124,0.0369986,0.524705,0.835888,0.353516,0.153335,0.223514,0.45185,0.721535,0.794811,0.499266,0.808208,0.521007,0.695897,0.472747,0.622218,0.643988,0.0331957,0.364662,0.100053,0.296562,0.531033,0.634754,0.614886,0.762633,0.87676,0.93699,0.469992,0.0376962,0.576384,0.892997,0.151384,0.00250512,0.978962,0.462925,0.611492,0.938968,0.717124,0.266803,0.318922,0.526494,0.132893,0.686428,0.205185,0.724848,0.746605,0.509513,0.246039,0.180555,0.85135,0.768398,0.021161,0.0618623,0.709236,0.438318,0.679798,0.150628,0.518103,0.659599,0.451801,0.05645,0.789336,0.114951,0.540694,0.0878862,0.160043,0.717338,0.255619,0.48359,0.872978,0.126764,0.423048,0.274692,0.915103,0.3404,0.133294,0.947302,0.122527,0.130527,0.24683,0.966086,0.679868,0.104268,0.314452,0.300003,0.319213,0.768283,0.299757,0.144917,0.13934,0.650605,0.133848,0.520649,0.243772,0.330722,0.266385,0.443671,0.520547,0.105847,0.375384,0.891768,0.536315,0.0356078,0.595155,0.199876,0.282809,0.282595,0.197905,0.944291,0.913004,0.2404,0.487841,0.60186,0.272817,0.522169,0.279593,0.789584,0.959364,0.899386,0.0163022,0.177971,0.596627,0.876526,0.760853,0.136829,0.13855,0.46567,0.627697,0.422078,0.482021,0.678063,0.146602,0.0841745,0.0519881,0.221248,0.662156,0.193714,0.336887,0.793742,0.546884,0.529794,0.704565,0.725046,0.839188,0.246804,0.53377,0.555406,0.749463,0.735261,0.98467,0.949613,0.97591,0.258218,0.600684,0.12556,0.653811,0.134924,0.723217,0.273917,0.589864,0.222623,0.857077,0.751664,0.672298,0.469288,0.295897,0.207625,0.956885,0.341153,0.497827,0.0684433,0.910921,0.299723,0.0401009,0.912948,0.475972,0.786611,0.25805,0.627976,0.569695,0.798928,0.582422,0.947437,0.00763905,0.833302,0.878477,0.546192,0.250677,0.353491,0.504722,0.324128,0.885745,0.974395,0.649929,0.273405,0.459408,0.211397,0.867,0.285876,0.0370117,0.52398,0.252205,0.864352,0.925925,0.601918,0.310781,0.945646,0.41121,0.103172,0.275001,0.785053,0.681273,0.527244,0.133948,0.973197,0.696024,0.174069,0.677384,0.4062,0.0248188,0.84525,0.768048,0.258903,0.29232,0.485039,0.776644,0.355045,0.163456,0.415578,0.653539,0.0703563,0.43809,0.427931,0.338996,0.333841,0.873771,0.196632,0.0948938,0.652136,0.625218,0.964309,0.960621,0.962889,0.403097,0.472872,0.560345,0.174787,0.118518,0.714085,0.164833,0.224639,0.575692,0.419953,0.308773,0.266674,0.771662,0.430427,0.0821485,0.839449,0.347481,0.958394,0.0880018,0.971952,0.570269,0.878859,0.217268,0.982919,0.808564,0.527183,0.370129,0.24301,0.219328,0.193979,0.128225,0.479323,0.0438865,0.054509,0.00440896,0.374664,0.946043,0.0733033,0.954333,0.464003,0.443538,0.334509,0.499454,0.0690058,0.406135,0.899222,0.548459,0.238907,0.954268,0.599572,0.0798526,0.625195,0.540672,0.225448,0.266654,0.0458196,0.707566,0.856309,0.353403,0.999675,0.154809,0.629622,0.61033,0.761725,0.00583404,0.197413,0.652177,0.144282,0.92868,0.4939,0.187768,0.636949,0.15179,0.203875,0.849533,0.833563,0.30097,0.801275,0.131197,0.62573,0.659117,0.854632,0.840081,0.10122,0.13437,0.439373,0.151208,0.550556,0.519985,0.37213,0.534296,0.231132,0.453908,0.446463,0.165878,0.285902,0.611785,0.489796,0.264215,0.955867,0.0520266,0.473421,0.841044,0.356744,0.557738,0.469216,0.690032,0.792082,0.755616,0.956963,0.143276,0.518305,0.355376,0.567356,0.0756575,0.587735,0.823798,0.0520238,0.576858,0.442841,0.187024,0.829273,0.471519,0.333259,0.750607,0.373167,0.790446,0.134095,0.217072,0.0111309,0.745323,0.301086,0.602361,0.508632,0.626723,0.575403,0.329651,0.884831,0.699248,0.120665,0.855082,0.127785,0.021917,0.656968,0.76205,0.888026,0.780534,0.76504,0.119434,0.807511,0.0804441,0.701572,0.0679865,0.596201,0.872307,0.489508,0.689259,0.554402,0.307567,0.564427,0.481311,0.229008,0.0992265,0.366729,0.674769,0.556796,0.6067,0.525006,0.46343,0.0139384,0.829976,0.391264,0.728369,0.744322,0.607339,0.341986,0.508877,0.587386,0.0606781,0.333631,0.0410114,0.934857,0.968055,0.732657,0.584858,0.876346,0.406773,0.261517,0.236644,0.0711886,0.954734,0.817728,0.0554225,0.831089,0.499611,0.73801,0.923503,0.723373,0.803657,0.815422,0.642734,0.277365,0.344014,0.320637,0.439306,0.779372,0.191084,0.437613,0.976793,0.640943,0.6495,0.629552,0.931544,0.887008,0.753931,0.998067,0.810558,0.974383,0.54122,0.261623,0.382067,0.063954,0.576553,0.780959,0.599904,0.99657,0.84119,0.581267,0.354759,0.814984,0.0145742,0.655022,0.169564,0.228856,0.734049,0.0162341,0.628841,0.938514,0.00392509,0.101641,0.246982,0.033082,0.0136784,0.993116,0.244806,0.973897,0.600362,0.387445,0.102524,0.408758,0.40797,0.401384,0.525558,0.755483,0.116471,0.573391,0.989401,0.820693,0.671287,0.946253,0.74937,0.51912,0.269725,0.907804,0.3805,0.387013,0.901149,0.910847,0.698554,0.785095,0.606539,0.374292,0.138717,0.879288,0.023867,0.387818,0.297167,0.284221,0.152782,0.355604,0.456209,0.049176,0.344022,0.439419,0.312814,0.818688,0.573836,0.479027,0.202896,0.378804,0.605531,0.564818,0.998108,0.445652,0.45217,0.0989017,0.0927566,0.0959529,0.68729,0.72763,0.2319,0.0982665,0.526111,0.385329,0.662081,0.074261,0.441813,0.784922,0.911152,0.125061,0.478284,0.883337,0.161481,0.282622,0.251128,0.708657,0.737379,0.903417,0.479176,0.673858,0.768313,0.777781,0.182773,0.146291,0.880818,0.99525,0.643014,0.687315,0.766995,0.469463,0.666448,0.243825,0.748656,0.37488,0.608546,0.749986,0.650494,0.174385,0.656011,0.0270964,0.314563,0.181734,0.027256,0.970168,0.512971,0.282159,0.582181,0.883622,0.0628603,0.502471,0.470959,0.481446,0.237953,0.93384,0.219242,0.067237,0.723477,0.899817,0.170135,0.814591,0.799853,0.442864,0.74684,0.759398,0.848789,0.467226,0.261521,0.975135,0.695743,0.643819,0.430028,0.792974,0.239249,0.647577,0.348421,0.0998852,0.919174,0.486772,0.95229,0.493542,0.368931,0.275687,0.610238,0.999934,0.113349,0.407398,0.0377063,0.664579,0.626567,0.825019,0.534223,0.42659,0.939087,0.188063,0.630094,0.895362,0.930465,0.312044,0.185882,0.576643,0.682616,0.64868,0.329519,0.0752933,0.41667,0.692067,0.796736,0.254228,0.379814,0.847638,0.516257,0.734435,0.412088,0.391726,0.817785,0.844479,0.887088,0.160764,0.0155182,0.610973,0.0623245,0.616953,0.223604,0.820413,0.369631,0.166973,0.665123,0.0200241,0.503214,0.00126898,0.196161,0.671496,0.253227,0.424778,0.0679165,0.636223,0.466617,0.765711,0.334916,0.846961,0.78728,0.256034,0.566174,0.512515,0.757613,0.427301,0.0829186,0.697176,0.688832,0.358212,0.84749,0.907709,0.0334238,0.576914,0.904105,0.115489,0.890554,0.608305,0.843864,0.71288,0.266904,0.784151,0.395042,0.442214,0.96665,0.901064,0.285393,0.818638,0.238927,0.780572,0.795796,0.328807,0.545008,0.198068,0.522506,0.47236,0.515138,0.223203,0.32847,0.100009,0.622091,0.255663,0.492061,0.551569,0.856708,0.981535,0.991721,0.0572996,0.43946,0.262143,0.309179,0.926154,0.134637,0.997483,0.264434,0.885938,0.326088,0.211483,0.351486,0.86029,0.937769,0.273167,0.677254,0.97531,0.528156,0.911341,0.530834,0.104972,0.904548,0.772436,0.486741,0.56912,0.802127,0.812315,0.796989,0.377427,0.0350184,0.150953,0.625698,0.151913,0.65619,0.946253,0.908697,0.81839,0.507299,0.595737,0.169915,0.186174,0.582537,0.800314,0.843206,0.56082,0.0824038,0.527615,0.160172,0.318988,0.427747,0.542036,0.119877,0.998046,0.389804,0.632244,0.284515,0.726872,0.533414,0.543713,0.221694,0.563628,0.183595,0.562918,0.214567,0.0540929,0.441891,0.27025,0.267745,0.545752,0.776894,0.239152,0.297726,0.0553042,0.293466,0.207626,0.63801,0.922795,0.0892395,0.924216,0.264814,0.855161,0.750081,0.26801,0.784823,0.765088,0.527285,0.755644,0.202304,0.717129,0.489398,0.792471,0.520939,0.141921,0.145436,0.0684458,0.380873,0.357467,0.969882,0.878892,0.993494,0.323735,0.821263,0.184909,0.591914,0.79635,0.653039,0.321968,0.577383,0.303203,0.995345,0.0564221,0.546458,0.958967,0.00752908,0.912498,0.55149,0.620809,0.838281,0.576082,0.921255,0.463229,0.30384,0.148715,0.658565,0.563128,0.421578,0.488161,0.783337,0.563279,0.986766,0.94081,0.65314,0.45925,0.522946,0.387288,0.73194,0.306306,0.434405,0.939129,0.365028,0.2987,0.885423,0.00567526,0.291447,0.630608,0.121945,0.360506,0.32848,0.419401,0.675194,0.357315,0.880223,0.960083,0.638553,0.526079,0.986546,0.198595,0.478581,0.979641,0.171066,0.96792,0.465494,0.331488,0.246629,0.420613,0.194125,0.332509,0.291426,0.336129,0.146691,0.299778,0.487773,0.373916,0.988231,0.179071,0.276169,0.644134,0.948897,0.941978,0.204714,0.13667,0.0619836,0.122739,0.216101,0.248913,0.478369,0.593041,0.915119,0.449605,0.595259,0.978578,0.208918,0.269539,0.773949,0.0790373,0.387112,0.512381,0.713773,0.15066,0.675838,0.0468503,0.850526,0.638498,0.331257,0.51627,0.11134,0.70368,0.670974,0.612134,0.324877,0.735821,0.202688,0.413551,0.916963,0.364455,|0.166625,0.148929,0.180594,0.49372,0.22413,0.737977,0.936428,0.23632,0.530564,0.106416,0.792111,0.383315,0.522798,0.684317,0.519606,0.0819081,0.87726,0.785298,0.204643,0.745937,0.895334,0.874728,0.467322,0.3294,0.264511,0.215037,0.111697,0.635425,0.737055,0.0630406,0.354283,0.428995,0.533406,0.140855,0.986622,0.6156,0.911568,0.397425,0.2223,0.322686,0.0589254,0.864521,0.394906,0.972652,0.554005,0.810246,0.978897,0.196127,0.655846,0.442596,0.155303,0.540036,0.633255,0.736124,0.815664,0.0487162,0.895832,0.835691,0.37454,0.994056,0.424324,0.0415592,0.667482,0.896671,0.836582,0.0560911,0.674097,0.565152,0.460629,0.951443,0.521048,0.791619,0.866609,0.405682,0.596293,0.429779,0.496067,0.783316,0.668288,0.307849,0.129172,0.0758521,0.246016,0.70245,0.962471,0.645925,0.811101,0.253378,0.201313,0.510296,0.466895,0.68541,0.824349,0.918699,0.239463,0.946027,0.0186623,0.985176,0.51518,0.389693,0.776043,0.371748,0.840737,0.849173,0.965341,0.10184,0.528241,0.594802,0.464987,0.752811,0.863534,0.942118,0.262742,0.833926,0.67583,0.00122893,0.0982752,0.793377,0.754675,0.333369,0.515265,0.509712,0.729336,0.780716,0.290736,0.06995,0.111079,0.542331,0.563541,0.508942,0.953525,0.089165,0.0775281,0.475017,0.367052,0.636164,0.347754,0.553233,0.411253,0.325175,0.224147,0.223114,0.583001,0.498648,0.425056,0.230579,0.058479,0.377685,0.644287,0.2436,0.207847,0.436775,0.845026,0.11764,0.840336,0.168651,0.787081,0.580926,0.699041,0.82648,0.69143,0.752423,0.837693,0.943643,0.340881,0.582585,0.89351,0.971259,0.606906,0.839355,0.0582641,0.24779,0.954575,0.405357,0.338025,0.862962,0.775327,0.48973,0.336989,0.21694,0.311898,0.799107,0.605928,0.958716,0.934747,0.407902,0.349447,0.998868,0.352171,0.944909,0.101272,0.44772,0.440189,0.610497,0.027747,0.535203,0.90171,0.364,0.144069,0.905032,0.254473,0.589754,0.10518,0.585729,0.749017,0.281799,0.31231,0.184874,0.345387,0.379804,0.0277643,0.952215,0.33305,0.879504,0.920752,0.660538,0.739352,0.249684,0.766641,0.160267,0.039301,0.130112,0.833601,0.0752822,0.79637,0.360065,0.577188,0.311426,0.959882,0.102835,0.530094,0.730984,0.548321,0.030232,0.497443,0.166962,0.758429,0.794832,0.746337,0.875799,0.418802,0.146557,0.817896,0.674812,0.608533,0.271808,0.46535,0.0944181,0.468956,0.557704,0.509748,0.191725,0.86655,0.621879,0.653572,0.323403,0.279687,0.242929,0.860591,0.486151,0.219851,0.0956986,0.372413,0.658471,0.209576,0.588957,0.65227,0.977687,0.003654,0.362652,0.819659,0.347469,0.518274,0.904242,0.0452347,0.162238,0.893555,0.107388,0.861849,0.724298,0.340641,0.863428,0.343217,0.640928,0.808383,0.94925,0.588051,0.303794,0.731833,0.369676,0.514213,0.111391,0.19795,0.162482,0.616592,0.643614,0.0951731,0.566401,0.554828,0.804346,0.182409,0.14666,0.15811,0.279009,0.865574,0.829955,0.698668,0.150785,0.418803,0.910685,0.632985,0.0579712,0.305187,0.891484,0.531734,0.737366,0.913614,0.549639,0.945271,0.271614,0.770987,0.815599,0.687012,0.815968,0.405954,0.756038,0.820239,0.550455,0.379052,0.862819,0.889387,0.165178,0.604268,0.832466,0.270972,0.985816,0.402812,0.491986,0.422443,0.154157,0.835678,0.969536,0.0732253,0.265337,0.18556,0.394856,0.732464,0.32742,0.205075,0.487652,0.27023,0.660996,0.554481,0.864216,0.962859,0.0300339,0.439485,0.878466,0.331162,0.314883,0.307038,0.611759,0.26178,0.0729186,0.784147,0.739904,0.928829,0.0031634,0.0428995,0.706896,0.844944,0.525673,0.45804,0.00154382,0.716755,0.411186,0.724457,0.627153,0.410376,0.0877367,0.144883,0.603148,0.960171,0.223675,0.802187,0.152026,0.585311,0.277666,0.0289636,0.725999,0.472254,0.747206,0.988486,0.154033,0.187724,0.783257,0.473294,0.0571652,0.669453,0.706474,0.740038,0.636218,0.614701,0.209373,0.747501,0.0224842,0.163904,0.335142,0.141498,0.479549,0.446656,0.813917,0.610825,0.130063,0.819676,0.490724,0.227881,0.777391,0.638055,0.791088,0.44032,0.0242208,0.799377,0.40365,0.0547194,0.855895,0.0156074,0.96215,0.780039,0.739124,0.977976,0.526598,0.685007,0.502062,0.314405,0.476863,0.192101,0.87694,0.762403,0.802426,0.181483,0.577106,0.552218,0.636392,0.632098,0.6398,0.948427,0.549591,0.100971,0.564731,0.464487,0.142138,0.561204,0.104212,0.291231,0.493517,0.115771,0.347311,0.121123,0.730656,0.563667,0.284203,0.460772,0.696807,0.383322,0.487828,0.708534,0.572419,0.740834,0.363277,0.492586,0.796867,0.9074,0.0963932,0.602428,0.0676187,0.692536,0.0695847,0.0240875,0.825451,0.819157,0.123591,0.497039,0.718662,0.0987365,0.868147,0.312982,0.635757,0.746339,0.749419,0.390058,0.190148,0.865876,0.861491,0.930632,0.0258458,0.952087,0.17835,0.863966,0.29575,0.500804,0.00454789,0.178697,0.244935,0.470762,0.563214,0.912845,0.986455,0.50625,0.624906,0.359899,0.169589,0.865841,0.236923,0.807584,0.860164,0.590442,0.761799,0.787865,0.834519,0.948101,0.939573,0.802076,0.735524,0.126454,0.230341,0.662951,0.921178,0.282914,0.654848,0.777543,0.125221,0.515245,0.350359,0.172706,0.773908,0.249585,0.83595,0.362402,0.271855,0.181307,0.206698,0.0633973,0.465151,0.141818,0.735567,0.698937,0.497704,0.519888,0.00288653,0.0761371,0.235317,0.731691,0.562442,0.119209,0.0627532,0.214109,0.804288,0.550965,0.1876,0.846486,0.307397,0.310998,0.485574,0.0191108,0.524592,0.577114,0.390795,0.972359,0.908587,0.076148,0.643243,0.426721,0.900842,0.717908,0.255303,0.499,0.939087,0.663815,0.695101,0.29787,0.0256936,0.502917,0.920507,0.170511,0.436144,0.128147,0.911746,0.230218,0.959256,0.645782,0.665244,0.133988,0.0873774,0.478159,0.86057,0.32153,0.603358,0.895645,0.276117,0.597068,0.947583,0.263008,0.801677,0.645557,0.0913715,0.271088,0.203935,0.605558,0.494603,0.011417,0.542814,0.179357,0.0864873,0.681017,0.153328,0.851045,0.860585,0.837039,0.553562,0.0392342,0.202458,0.229577,0.666701,0.646297,0.610029,0.856535,0.514527,0.429622,0.523195,0.323935,0.384389,0.292154,0.0244049,0.0451382,0.909058,0.657027,0.840435,0.592496,0.794869,0.689876,0.0187631,0.518713,0.670978,0.860658,0.10814,0.899404,0.406571,0.49113,0.0266874,0.466057,0.887776,0.525669,0.627451,0.192403,0.264407,0.934747,0.774877,0.265118,0.558996,0.25261,0.899014,0.074145,0.48284,0.172232,0.757494,0.925204,0.545462,0.131646,0.0969733,0.658986,0.595303,0.53563,0.903949,0.30527,0.863362,0.755885,0.45487,0.155789,0.244863,0.178664,0.722089,0.446523,0.812867,0.315934,0.167861,0.65751,0.288893,0.572499,0.0961607,0.126268,0.807366,0.790741,0.950549,0.352273,0.781096,0.38309,0.325372,0.430888,0.569605,0.434332,0.432474,0.371595,0.628356,0.41146,0.432419,0.398532,0.265635,0.0943082,0.483282,0.278072,0.203057,0.216166,0.704059,0.514055,0.922898,0.212324,0.834389,0.0648127,0.787001,0.648754,0.573568,0.101704,0.594168,0.321187,0.945796,0.132873,0.714973,0.0913161,0.217745,0.52592,0.0416902,0.255459,0.760113,0.00801122,0.4399,0.150022,0.992545,0.361471,0.108257,0.509773,0.855963,0.967047,0.279471,0.389144,0.847048,0.00152421,0.259313,0.193458,0.161283,0.716739,0.387976,0.769579,0.847491,0.441165,0.511277,0.594631,0.849512,0.825547,0.0616992,0.731797,0.336546,0.980227,0.572225,0.837467,0.00572085,0.0386039,0.12007,0.889109,0.517849,0.466017,0.120363,0.715247,0.265371,0.441735,0.834767,0.130199,0.0399556,0.869199,0.0823129,0.615079,0.572439,0.902867,0.567452,0.266144,0.374841,0.385629,0.980611,0.516619,0.219023,0.132408,0.793526,0.176314,0.562668,0.867526,0.209758,0.83141,0.231506,0.517347,0.235334,0.299234,0.814668,0.32888,0.0132486,0.293167,0.0851145,0.484008,0.506356,0.263371,0.0757918,0.981423,0.29937,0.705605,0.272246,0.639866,0.5398,0.885378,0.312023,0.600535,0.624449,0.502462,0.668738,0.502319,0.0353032,0.195193,0.439031,0.0214893,0.605272,0.122775,0.0793706,0.711091,0.319845,0.188669,0.801986,0.664175,0.102395,0.0483602,0.812853,0.0145741,0.138406,0.921746,0.0521966,0.64906,0.736544,0.786608,0.66634,0.544552,0.2975,0.592161,0.235401,0.454091,0.334554,0.324415,0.410581,0.441108,0.734415,0.232631,0.775445,0.600477,0.66466,0.628978,0.994508,0.702608,0.568183,0.928824,0.315193,0.312043,0.241131,0.819626,0.050609,0.308422,0.631514,0.203113,0.557735,0.802625,0.505484,0.191392,0.570082,0.735577,0.614397,0.973417,0.376061,0.840145,0.967711,0.117937,0.0195891,0.379442,0.118183,0.919095,0.123,0.726696,0.632879,0.895292,0.456772,0.0663521,0.900753,0.854356,0.471883,0.817497,0.29254,0.256076,0.788888,0.186627,0.471971,0.316086,0.0207824,0.72349,0.896361,0.989219,0.388171,0.21967,0.305791,0.404976,0.927979,0.187335,0.115769,0.56166,0.502655,0.999656,0.58665,0.42896,0.163168,0.100817,0.614155,0.0131239,0.249717,0.765743,0.29544,0.0032208,0.519634,0.473843,0.204616,0.982519,0.427302,0.72634,0.845101,0.0857812,0.659836,0.584055,0.676698,0.971906,0.670517,0.290352,0.802551,0.357021,0.742953,0.0156083,0.486478,0.158553,0.947431,0.632499,0.753049,0.218186,0.811171,0.847452,0.0273097,0.121907,0.411508,0.319462,0.206316,0.415514,0.49661,0.996433,0.191664,0.176315,0.821676,0.638682,0.229287,0.562131,0.396601,0.739864,0.455061,0.791122,0.769319,0.428658,0.893679,0.00203919,0.807927,0.735101,0.68963,0.174643,0.564374,0.723441,0.553708,0.334782,0.901725,0.959696,0.691546,0.0609136,0.654513,0.734771,0.860228,0.42423,0.838526,0.835103,0.137721,0.0721018,0.682219,0.517696,0.0279927,|0.531603,0.362946,0.675259,0.800763,0.480022,0.403262,0.346588,0.0562965,0.977862,0.209921,0.440387,0.935959,0.941329,0.253584,0.339352,0.307546,0.957519,0.528333,0.474977,0.0289686,0.235534,0.941033,0.83407,0.964545,0.0691605,0.169431,0.404906,0.85385,0.326344,0.00419348,0.604647,0.0822186,0.621611,0.683069,0.601575,0.121283,0.50985,0.176686,0.154806,0.778197,0.981335,0.318389,0.717691,0.892543,0.811796,0.502425,0.236806,0.215888,0.340103,0.0149018,0.0768318,0.110377,0.900579,0.952786,0.41033,0.184155,0.620263,0.07266,0.21854,0.738021,0.247162,0.413743,0.124696,0.941229,0.91205,0.19092,0.925518,0.934534,0.329646,0.0120142,0.177217,0.284787,0.0876492,0.419642,0.0118452,0.371475,0.285875,0.189895,0.580372,0.220494,0.231962,0.777705,0.828569,0.837926,0.702237,0.681219,0.143743,0.0538997,0.891244,0.0999647,0.885661,0.068643,0.184102,0.499697,0.150525,0.439043,0.0783598,0.945286,0.397033,0.054328,0.339857,0.529568,0.86299,0.720903,0.626426,0.579721,0.402441,0.599943,0.917802,0.789419,0.255807,0.501086,0.49503,0.529559,0.908936,0.180127,0.0703745,0.602908,0.326947,0.602428,0.326846,0.965259,0.680977,0.965712,0.189352,0.367574,0.182551,0.872828,0.681685,0.0672156,0.386444,0.85658,0.895716,0.373685,0.558419,0.534428,0.964206,0.654959,0.0583172,0.627756,0.254657,0.618503,0.379479,0.0585927,0.637552,0.96392,0.686091,0.696105,0.709735,0.0545169,0.73991,0.111648,0.0874441,0.085705,0.976002,0.456747,0.131461,0.63861,0.552249,0.78124,0.229967,0.550629,0.225331,0.376535,0.239605,0.445978,0.717706,0.574468,0.173644,0.412058,0.106664,0.370668,0.37023,0.0902147,0.0539727,0.47711,0.937549,0.492538,0.927031,0.82446,0.189125,0.934578,0.679947,0.0379265,0.398851,0.483862,0.566692,0.72091,0.637494,0.633253,0.721616,0.540121,0.231842,0.555607,0.919761,0.948336,0.320752,0.615364,0.36851,0.641273,0.928516,0.904075,0.345095,0.916321,0.768833,0.99229,0.211423,0.598072,0.480869,0.326768,0.911803,0.092068,0.986241,0.781786,0.575191,0.811229,0.831424,0.714784,0.647399,0.560871,0.789291,0.716787,0.568283,0.442854,0.514727,0.54479,0.909525,0.409652,0.874261,0.258155,0.336091,0.642525,0.688569,0.839632,0.921918,0.690056,0.230355,0.833642,0.319419,0.970368,0.284309,0.199266,0.574115,0.981364,0.638041,0.448596,0.191112,0.0925649,0.388713,0.489174,0.552226,0.344351,0.356082,0.651474,0.967717,0.427029,0.158026,0.0697228,0.634978,0.580849,0.201215,0.455557,0.413736,0.00565714,0.0422782,0.743938,0.380636,0.796501,0.493539,0.665372,0.88329,0.21958,0.185508,0.183769,0.896829,0.893212,0.100944,0.411025,0.220926,0.606122,0.554757,0.799421,0.878585,0.0699803,0.454574,0.121858,0.758683,0.251892,0.285946,0.0665392,0.0795307,0.526758,0.743846,0.168525,0.150417,0.794869,0.903275,0.0556168,0.567359,0.909006,0.379872,0.522834,0.709394,0.356619,0.0393366,0.491398,0.125252,0.538156,0.631616,0.329179,0.880586,0.607464,0.672069,0.163687,0.267924,0.929257,0.166361,0.0820213,0.0504019,0.701045,0.578285,0.0412422,0.67297,0.717558,0.41065,0.0607719,0.452581,0.134955,0.638794,0.24511,0.756576,0.976345,0.675833,0.565419,0.634976,0.307564,0.731634,0.23022,0.417026,0.139448,0.951441,0.113376,0.0632147,0.356823,0.383963,0.835101,0.0457511,0.561568,0.720605,0.142148,0.507434,0.14149,0.0810346,0.323996,0.528275,0.53464,0.918929,0.938803,0.805735,0.428659,0.883636,0.260625,0.149611,0.0846911,0.940027,0.363086,0.553283,0.481265,0.413333,0.676167,0.996097,0.849905,0.53044,0.395672,0.119809,0.211603,0.931142,0.375166,0.574364,0.226958,0.0961146,0.0554505,0.952598,0.724075,0.717527,0.392593,0.230383,0.342182,0.187984,0.348841,0.471723,0.778513,0.90923,0.434251,0.377401,0.360142,0.296169,0.0633239,0.0942242,0.605686,0.964707,0.599479,0.298522,0.799796,0.605211,0.923482,0.466621,0.796761,0.897923,0.696774,0.822094,0.92884,0.817777,0.46277,0.0596172,0.0606759,0.264933,0.783781,0.74533,0.619249,0.687924,0.237987,0.319866,0.359327,0.490314,0.951643,0.46944,0.232392,0.581668,0.761944,0.0621747,0.0608778,0.369578,0.518445,0.751118,0.0931556,0.995983,0.550475,0.99076,0.314168,0.812407,0.268771,0.394006,0.987773,0.703367,0.792003,0.956889,0.198168,0.271359,0.48986,0.192787,0.0848075,0.292257,0.565066,0.153681,0.444226,0.247799,0.975866,0.835452,0.572071,0.982818,0.968183,0.805257,0.149494,0.576414,0.292638,0.185608,0.32268,0.21694,0.283206,0.202526,0.634783,0.38756,0.0972732,0.20348,0.231958,0.520365,0.809291,0.9249,0.302906,0.197662,0.310329,0.131583,0.416831,0.957241,0.298323,0.156889,0.588665,0.774123,0.795731,0.53089,0.755679,0.984523,0.75111,0.997247,0.333802,0.0524377,0.00686091,0.82391,0.586664,0.665385,0.343258,0.331445,0.0729733,0.172739,0.653961,0.32851,0.175056,0.286398,0.366283,0.890138,0.438452,0.460296,0.317183,0.942567,0.387392,0.553398,0.359786,0.555244,0.0843031,0.787138,0.781857,0.648571,0.834161,0.233315,0.363953,0.628383,0.671043,0.285125,0.191528,0.363137,0.4824,0.27002,0.809064,0.59519,0.297244,0.313258,0.308973,0.530497,0.0601876,0.814529,0.0983933,0.12068,0.430721,0.255167,0.556749,0.0751245,0.0275168,0.219908,0.429627,0.285464,0.47055,0.467861,0.399127,0.146979,0.0402931,0.356896,0.470818,0.0437286,0.664417,0.945274,0.880204,0.682282,0.517296,0.674337,0.746623,0.996415,0.517246,0.886327,0.104063,0.862757,0.877972,0.228068,0.010285,0.814325,0.320179,0.84921,0.322538,0.420784,0.103409,0.412226,0.67899,0.298663,0.642642,0.736313,0.086982,0.932314,0.0253369,0.118291,0.56586,0.464874,0.302429,0.352634,0.687406,0.644048,0.662822,0.859773,0.309675,0.604811,0.392816,0.635914,0.804361,0.428476,0.402057,0.583824,0.355861,0.0229921,0.190138,0.670148,0.771876,0.0954575,0.440212,0.510046,0.11756,0.100536,0.686704,0.056972,0.570952,0.314523,0.877847,0.501671,0.0871946,0.10544,0.283118,0.449347,0.895752,0.162692,0.867813,0.702729,0.342787,0.470449,0.200259,0.813555,0.487916,0.670513,0.856633,0.379574,0.113989,0.252037,0.951564,0.364836,0.99655,0.638094,0.52854,0.335385,0.368632,0.702425,0.639973,0.0727094,0.136315,0.010593,0.572108,0.721856,0.3497,0.0508624,0.737542,0.571973,0.247396,0.210549,0.304467,0.111406,0.804775,0.279526,0.976216,0.0506842,0.643878,0.647116,0.533011,0.4029,0.790277,0.0205786,0.366266,0.551717,0.328891,0.256681,0.689153,0.203843,0.547846,0.845213,0.478074,0.732202,0.90984,0.403966,0.892236,0.0817323,0.438845,0.78428,0.528881,0.768983,0.404223,0.0122634,0.231627,0.43144,0.861876,0.769173,0.69273,0.929484,0.625817,0.216948,0.842988,0.467118,0.298189,0.375052,0.454205,0.411773,0.262811,0.430664,0.879905,0.020301,0.629752,0.268843,0.542929,0.506109,0.906055,0.821436,0.0271524,0.0220687,0.510497,0.229883,0.764186,0.48788,0.37975,0.656051,0.503419,0.554186,0.385854,0.180626,0.947775,0.77906,0.546279,0.465921,0.0176476,0.52937,0.830356,0.0907755,0.143465,0.761001,0.89617,0.898742,0.264123,0.242384,0.757063,0.664915,0.074003,0.763408,0.920788,0.611756,0.03738,0.565079,0.849557,0.482093,0.8167,0.129224,0.715141,0.201561,0.721864,0.151706,0.301103,0.10809,0.667447,0.210122,0.402678,0.508594,0.278695,0.832054,0.814106,0.675324,0.636177,0.137444,0.532837,0.15634,0.484771,0.914055,0.0311382,0.140606,0.708062,0.496657,0.666924,0.577415,0.579428,0.118631,0.922146,0.983771,0.939678,0.140561,0.999587,0.959526,0.557382,0.318371,0.87101,0.854893,0.103268,0.847026,0.237088,0.563508,0.453993,0.348973,0.463895,0.248673,0.580513,0.148404,0.770967,0.689756,0.13772,0.406958,0.641453,0.429617,0.997103,0.424792,0.287124,0.431923,0.049978,0.245015,0.549629,0.971608,0.915199,0.897948,0.926213,0.790853,0.892912,0.356266,0.950739,0.370885,0.2074,0.2826,0.788603,0.554122,0.313393,0.552402,0.274986,0.397608,0.316221,0.574984,0.329947,0.0043782,0.39187,0.394617,0.834947,0.438592,0.120294,0.974587,0.0501623,0.365627,0.327571,0.821862,0.922828,0.179874,0.121531,0.70576,0.0202752,0.235382,0.321835,0.464249,0.558695,0.798893,0.109962,0.671198,0.156883,0.648207,0.883228,0.676766,0.344514,0.861147,0.694034,0.00283337,0.286338,0.0968384,0.18564,0.810202,0.609939,0.573469,0.594024,0.0327809,0.32169,0.322627,0.392877,0.184552,0.0687494,0.827852,0.283112,0.548306,0.777802,0.152448,0.651285,0.45407,0.811126,0.177971,0.174533,0.996466,0.769567,0.775215,0.233376,0.0927833,0.534145,0.329373,0.609647,0.571438,0.0800886,0.778441,0.282002,0.0805864,0.172568,0.345883,0.641742,0.686599,0.125242,0.0853012,0.69707,0.967,0.626391,0.145068,0.742425,0.205503,0.898813,0.134686,0.615974,0.812914,0.467655,0.94846,0.23418,0.77905,0.824359,0.303985,0.362509,0.549578,0.406327,0.421012,0.883552,0.318098,0.878898,0.369371,0.356167,0.250893,0.439408,0.528762,0.302168,0.759692,0.413772,0.75858,0.993622,0.385747,0.368823,0.558954,0.558386,0.867708,0.515945,0.519002,0.509045,0.264255,0.99328,0.654667,0.881388,0.151461,0.847677,0.0121347,0.367324,0.99702,0.197746,0.188347,0.294649,0.4933,0.998174,0.873262,0.305704,0.276427,0.248096,0.187569,0.974512,0.485372,0.264161,0.892273,0.290655,0.468903,0.320558,0.0178738,0.2835,0.680612,0.731608,0.509827,0.184909,0.84814,0.446759,0.926954,0.661585,0.773527,0.760019,0.595934,0.199565,0.456365,0.333285,0.693468,0.888226,0.866662,0.473937,0.285703,0.247935,0.908635,0.613893,0.899033,0.349296,|0.292703,0.0112139,0.44651,0.850088,0.792181,0.873721,0.410476,0.530957,0.062104,0.726974,0.719892,0.835893,0.633623,0.917535,0.87295,0.796186,0.247686,0.329095,0.908085,0.910583,0.444201,0.639883,0.213565,0.823582,0.819595,0.499838,0.850967,0.335352,0.890422,0.929819,0.230165,0.515338,0.798997,0.583571,0.662176,0.769075,0.0481727,0.823243,0.490161,0.612857,0.718879,0.815199,0.283421,0.517035,0.971178,0.246562,0.211554,0.997129,0.31991,0.968344,0.781132,0.939322,0.0937499,0.0439773,0.274468,0.500045,0.445331,0.575091,0.922579,0.286067,0.82529,0.00385123,0.426128,0.807185,0.672841,0.480383,0.549786,0.967687,0.489947,0.757497,0.807848,0.167024,0.839901,0.822339,0.798949,0.217547,0.68951,0.25576,0.287473,0.726458,0.671664,0.866629,0.627705,0.687814,0.873428,0.386776,0.554731,0.297109,0.294464,0.942523,0.639721,0.916467,0.04792,0.151684,0.935729,0.530117,0.0350181,0.804735,0.966225,0.320318,0.95114,0.0919739,0.884765,0.49901,0.975202,0.345176,0.607091,0.723226,0.656623,0.173729,0.272999,0.219741,0.755101,0.304806,0.124638,0.317527,0.70035,0.00792098,0.0428049,0.734477,0.0296704,0.670914,0.726243,0.84439,0.842205,0.290802,0.767807,0.0636882,0.127605,0.889135,0.196168,0.726034,0.547309,0.933491,0.672011,0.378161,0.162506,0.459127,0.534728,0.376778,0.54818,0.983389,0.153643,0.808684,0.722116,0.0397637,0.47024,0.89444,0.102103,0.251098,0.016827,0.151831,0.0326888,0.91936,0.205888,0.897612,0.229797,0.815711,0.709443,0.263237,0.502972,0.115846,0.538714,0.33652,0.273023,0.75379,0.981793,0.285884,0.68462,0.85119,0.263165,0.726454,0.781836,0.543219,0.433297,0.426415,0.868751,0.299927,0.808404,0.555854,0.967484,0.254066,0.966582,0.536611,0.517828,0.23961,0.914535,0.972227,0.8102,0.115273,0.310948,0.774081,0.652563,0.28001,0.873573,0.0869587,0.656231,0.350278,0.735046,0.180423,0.0909125,0.513097,0.222626,0.0144511,0.352761,0.73179,0.810184,0.13928,0.965227,0.659651,0.461875,0.144282,0.349384,0.523774,0.958024,0.280553,0.798879,0.680249,0.800473,0.736612,0.779051,0.712992,0.589179,0.62936,0.847753,0.575637,0.732519,0.993485,0.0194537,0.058746,0.888119,0.152069,0.00172156,0.499301,0.255914,0.449893,0.518389,0.67078,0.112102,0.528178,0.333789,0.684211,0.5539,0.990155,0.691361,0.879726,0.738641,0.166767,0.878654,0.582695,0.180025,0.940471,0.21876,0.45262,0.110867,0.207439,0.979086,0.216595,0.267235,0.100903,0.358001,0.827042,0.85201,0.0277402,0.499218,0.239549,0.817613,0.804192,0.906445,0.08689,0.478974,0.759113,0.377989,0.2578,0.595771,0.558316,0.142231,0.764458,0.473423,0.548588,0.502369,0.277023,0.916518,0.382313,0.113947,0.74699,0.213048,0.107133,0.154585,0.244062,0.865515,0.913719,0.703761,0.821855,0.945112,0.596476,0.327822,0.228027,0.655762,0.750149,0.115042,0.396049,0.322384,0.899878,0.946328,0.847661,0.134037,0.406242,0.531046,0.772468,0.0199904,0.748296,0.903408,0.521485,0.99389,0.596813,0.290829,0.384158,0.90408,0.835076,0.854019,0.3431,0.802405,0.427077,0.204316,0.284078,0.925779,0.69577,0.305899,0.262844,0.497957,0.483598,0.967633,0.876044,0.405675,0.481032,0.0824792,0.575118,0.305346,0.230724,0.541051,0.680164,0.23438,0.640359,0.0672489,0.679857,0.207242,0.258644,0.531206,0.159991,0.734184,0.524745,0.183998,0.591199,0.218911,0.952134,0.0860826,0.686741,0.967686,0.468769,0.551966,0.178901,0.382915,0.865485,0.322342,0.531822,0.766713,0.980131,0.314149,0.232454,0.641213,0.742202,0.536446,0.173251,0.171765,0.782193,0.858203,0.476284,0.69785,0.869236,0.29552,0.813657,0.458507,0.390273,0.136957,0.698329,0.979054,0.092298,0.838818,0.665237,0.197372,0.682607,0.688601,0.162167,0.126143,0.175853,0.203331,0.662673,0.415077,0.884496,0.500675,0.914461,0.304779,0.654288,0.70551,0.673645,0.778234,0.684362,0.00199997,0.573268,0.319912,0.929598,0.747239,0.828068,0.212342,0.982708,0.00668168,0.793517,0.132777,0.00958431,0.898752,0.189022,0.62872,0.547389,0.513222,0.865646,0.0376489,0.160637,0.657327,0.93226,0.399758,0.9869,0.849347,0.344981,0.99001,0.981109,0.883841,0.729945,0.726036,0.515151,0.94554,0.129894,0.692217,0.730438,0.327262,0.68963,0.713443,0.662621,0.764613,0.170715,0.089457,0.741065,0.725955,0.677436,0.206474,0.271558,0.471549,0.0111128,0.442833,0.862943,0.475416,0.164773,0.102479,0.759566,0.608745,0.347287,0.31869,0.855857,0.935681,0.0144323,0.434157,0.810416,0.838393,0.548045,0.260918,0.0945934,0.0469906,0.100323,0.761736,0.246595,0.166869,0.52702,0.0801979,0.292891,0.579768,0.206422,0.016822,0.992359,0.655501,0.536779,0.530191,0.458138,0.947047,0.0152791,0.777358,0.406067,0.245467,0.411574,0.241995,0.778737,0.392289,0.82827,0.960477,0.72401,0.0168921,0.0580048,0.784259,0.615994,0.30824,0.495539,0.30251,0.760914,0.0112511,0.362589,0.0903739,0.752508,0.188937,0.396239,0.649863,0.795039,0.245499,0.87116,0.536782,0.166159,0.243492,0.742261,0.346712,0.905991,0.931819,0.761553,0.543501,0.733698,0.998316,0.135654,0.426112,0.196099,0.692711,0.228456,0.541358,0.892283,0.788076,0.63067,0.58772,0.683989,0.0257309,0.940158,0.272023,0.334107,0.740754,0.9659,0.53264,0.812038,0.347843,0.959229,0.212804,0.0445668,0.682806,0.691577,0.572595,0.800339,0.389148,0.0883985,0.346595,0.162484,0.830992,0.276441,0.69963,0.1636,0.71869,0.686229,0.00424898,0.0839133,0.534338,0.761489,0.218007,0.698597,0.643127,0.801732,0.478797,0.760979,0.4052,0.105675,0.0624096,0.467699,0.954382,0.953026,0.77601,0.289078,0.241024,0.411532,0.0566162,0.107507,0.619882,0.29569,0.836489,0.49464,0.980582,0.460773,0.607489,0.713627,0.120855,0.938524,0.0736581,0.684918,0.519478,0.500605,0.481674,0.656271,0.00911969,0.274285,0.108172,0.331418,0.937391,0.918066,0.0342255,0.92524,0.768058,0.219114,0.361344,0.254831,0.486397,0.0296731,0.86504,0.665438,0.964975,0.0259913,0.262589,0.556994,0.275718,0.815013,0.927461,0.929406,0.984953,0.948403,0.692331,0.630761,0.560948,0.402286,0.404951,0.230536,0.213297,0.628057,0.0520133,0.836993,0.824999,0.0937437,0.620233,0.391852,0.841718,0.575895,0.971392,0.730345,0.864706,0.523615,0.0527304,0.0168766,0.0589849,0.803119,0.869425,0.853644,0.98975,0.476354,0.602061,0.334437,0.314927,0.513557,0.671957,0.721535,0.985398,0.098942,0.0868745,0.676486,0.208227,0.620175,0.0321699,0.233792,0.281218,0.689847,0.417871,0.595925,0.62047,0.82961,0.909847,0.364392,0.131278,0.438904,0.96246,0.190666,0.673627,0.838289,0.958223,0.656329,0.488948,0.0341584,0.976823,0.21321,0.29021,0.735449,0.36527,0.509948,0.22039,0.511202,0.335859,0.503158,0.855674,0.820504,0.0728673,0.256998,0.543549,0.999136,0.084295,0.241887,0.830603,0.42823,0.297992,0.987668,0.539308,0.0853456,0.929533,0.842551,0.196613,0.636648,0.948404,0.679337,0.617029,0.137841,0.753791,0.934087,0.359604,0.816328,0.534081,0.538712,0.458326,0.838093,0.480709,0.893574,0.246067,0.488536,0.484764,0.333946,0.385628,0.540176,0.418244,0.344827,0.256147,0.0695717,0.228771,0.72675,0.575345,0.0151159,0.817028,0.0540354,0.549005,0.472776,0.435146,0.369725,0.547451,0.453413,0.617023,0.0680692,0.0259474,0.915021,0.185327,0.273883,0.560024,0.420806,0.894468,0.485487,0.286584,0.0828365,0.899354,0.356329,0.510965,0.050459,0.175461,0.609559,0.443952,0.350134,0.289321,0.217103,0.8161,0.633444,0.0300876,0.300706,0.77395,0.628284,0.898488,0.571911,0.257236,0.187127,0.744152,0.0137972,0.317704,0.349529,0.541918,0.238218,0.467114,0.402114,0.302777,0.532714,0.899254,0.212518,0.137185,0.83839,0.307795,0.894706,0.200674,0.133754,0.167397,0.0417032,0.574985,0.939161,0.979566,0.153244,0.381423,0.332281,0.138494,0.0523,0.684527,0.953779,0.641314,0.645631,0.0987967,0.162167,0.655165,0.099274,0.699758,0.653044,0.34699,0.409654,0.354905,0.342887,0.617188,0.708698,0.345626,0.140561,0.868364,0.780381,0.846763,0.797627,0.399136,0.070087,0.290309,0.855164,0.958454,0.14002,0.80829,0.481147,0.831289,0.289967,0.173843,0.636209,0.621804,0.124352,0.358626,0.184592,0.45244,0.90579,0.742028,0.754796,0.583363,0.91027,0.34753,0.269966,0.365154,0.817764,0.953417,0.620536,0.709613,0.942899,0.479037,0.619614,0.674352,0.7246,0.728559,0.563527,0.312371,0.571373,0.699257,0.613525,0.0493984,0.0244757,0.600489,0.620041,0.62421,0.247246,0.358674,0.4714,0.949742,0.153311,0.871898,0.439739,0.616902,0.769842,0.215821,0.754054,0.671827,0.865775,0.932011,0.591705,0.554617,0.703116,0.692812,0.728327,0.235328,0.446243,0.797794,0.969319,0.770601,0.928703,0.197341,0.062153,0.411393,0.894327,0.76496,0.311241,0.382827,0.719232,0.720749,0.552333,0.708323,0.596554,0.801398,0.253989,0.880521,0.738733,0.562225,0.815376,0.0143663,0.481502,0.105894,0.652479,0.215336,0.576863,0.296259,0.241495,0.245109,0.140433,0.604952,0.0411118,0.889485,0.506595,0.625397,0.0210772,0.209603,0.256288,0.0567588,0.239186,0.664812,0.999609,0.00138259,0.423906,0.618528,0.92626,0.327082,0.858027,0.896835,0.862373,0.237796,0.41333,0.776812,0.150955,0.86417,0.00969696,0.239259,0.784469,0.0214571,0.183781,0.414526,0.0973353,0.177729,0.368181,0.613142,0.206526,0.616674,0.108525,0.0895973,0.225251,0.596555,0.831049,0.643709,0.823117,0.192823,0.93499,0.66797,0.715566,0.474888,0.84839,0.508497,0.357162,0.111951,0.702535,0.426016,0.138196,0.734478,0.53005,0.561969,0.492603,0.133275,0.265507,|0.878634,0.0765678,0.581193,0.27681,0.481758,0.56598,0.434969,0.170101,0.354931,0.568829,0.6707,0.30456,0.907203,0.0506316,0.564956,0.207662,0.914299,0.45433,0.0115658,0.886602,0.188692,0.487103,0.791182,0.927036,0.447838,0.99477,0.819166,0.606941,0.340537,0.842637,0.986795,0.693043,0.403014,0.0987647,0.964705,0.682456,0.426251,0.441905,0.961834,0.0691789,0.989061,0.989263,0.145889,0.0486492,0.425777,0.99585,0.0793316,0.48637,0.697335,0.30588,0.0995185,0.593047,0.844287,0.744013,0.331013,0.218773,0.310161,0.606699,0.211582,0.976844,0.648697,0.689441,0.439918,0.275416,0.376771,0.573468,0.380699,0.220287,0.679617,0.874731,0.765117,0.422713,0.459614,0.86831,0.448242,0.655977,0.124237,0.120806,0.0643526,0.918269,0.0031302,0.063337,0.142436,0.484658,0.648561,0.504345,0.7561,0.696063,0.836359,0.762852,0.118664,0.23232,0.0952075,0.849478,0.858419,0.748565,0.0670965,0.568427,0.20184,0.856018,0.416034,0.0744896,0.254351,0.537908,0.073633,0.821223,0.925149,0.0277691,0.325052,0.269183,0.537119,0.122897,0.641974,0.453096,0.178744,0.756553,0.154351,0.582483,0.622659,0.462241,0.10169,0.91522,0.684572,0.546131,0.542491,0.669844,0.280533,0.689141,0.714549,0.63392,0.30532,0.0138879,0.139472,0.188123,0.506371,0.143402,0.641306,0.0663669,0.502409,0.236618,0.287538,0.741403,0.667548,0.0906023,0.732641,0.573526,0.125888,0.40842,0.963366,0.277009,0.72897,0.300953,0.981888,0.296718,0.8526,0.635785,0.460983,0.647159,0.302561,0.414618,0.461586,0.561406,0.535305,0.509494,0.907197,0.561517,0.381549,0.96918,0.699993,0.396988,0.467199,0.522927,0.173788,0.390374,0.39118,0.337383,0.273946,0.980568,0.374109,0.626645,0.731395,0.717441,0.205746,0.461554,0.160963,0.67137,0.650493,0.926326,0.986139,0.0130344,0.40799,0.560032,0.140185,0.607095,0.190247,0.910758,0.203468,0.692282,0.688032,0.392762,0.399858,0.889685,0.784729,0.194185,0.902838,0.425012,0.232373,0.430544,0.39361,0.243487,0.42673,0.997245,0.683661,0.156403,0.498083,0.363096,0.542805,0.515608,0.836051,0.223384,0.599133,0.114151,0.721205,0.684048,0.131176,0.0597178,0.700326,0.401219,0.856446,0.234818,0.57536,0.46673,0.715485,0.382539,0.88392,0.323369,0.984183,0.967869,0.286148,0.532688,0.584675,0.98254,0.538344,0.0792509,0.40408,0.549908,0.875673,0.393115,0.548652,0.716922,0.208839,0.470048,0.578057,0.00864214,0.484707,0.229954,0.210421,0.333921,0.606567,0.394197,0.543958,0.705627,0.695685,0.170079,0.796219,0.56257,0.939145,0.672755,0.912094,0.762826,0.207508,0.418186,0.17279,0.801403,0.727389,0.779111,0.572321,0.144433,0.133535,0.257593,0.0586389,0.862876,0.740905,0.113194,0.181322,0.0135471,0.702375,0.0883834,0.515943,0.560739,0.681222,0.562985,0.229851,0.140903,0.884626,0.752761,0.946406,0.670414,0.803077,0.114041,0.643885,0.222793,0.703445,0.368601,0.769451,0.179645,0.772544,0.0721352,0.920649,0.988775,0.181498,0.810271,0.0674769,0.727412,0.393163,0.0012747,0.947948,0.392556,0.577565,0.148467,0.560987,0.256206,0.377118,0.0944115,0.171429,0.790019,0.555369,0.910387,0.737921,0.0262155,0.593566,0.927279,0.850086,0.72024,0.629731,0.202988,0.144317,0.0172231,0.15841,0.397749,0.277009,0.765112,0.552622,0.704713,0.875475,0.900975,0.802059,0.571845,0.928504,0.994837,0.110754,0.330429,0.796558,0.981596,0.672482,0.640569,0.543786,0.866874,0.0503851,0.199744,0.592089,0.365164,0.312544,0.0563718,0.973678,0.216356,0.654974,0.782187,0.0923889,0.655253,0.848313,0.547976,0.663837,0.260882,0.016836,0.873686,0.123657,0.412388,0.897209,0.374274,0.0618628,0.172248,0.271471,0.337546,0.338645,0.0615852,0.132242,0.95594,0.657393,0.812445,0.508284,0.125084,0.364591,0.299608,0.370242,0.752825,0.974081,0.296195,0.979826,0.775913,0.264598,0.992079,0.121391,0.859738,0.862278,0.858785,0.0132825,0.834704,0.0886608,0.241227,0.933236,0.802862,0.0544441,0.596518,0.67816,0.170163,0.324345,0.0127778,0.732607,0.0683873,0.957542,0.787161,0.306531,0.376612,0.954499,0.115451,0.614367,0.391375,0.0209357,0.0647682,0.187622,0.95453,0.271674,0.319641,0.981636,0.845883,0.549353,0.454835,0.22838,0.848356,0.772271,0.892339,0.700682,0.398463,0.223194,0.240418,0.445545,0.119762,0.13439,0.0569805,0.301102,0.689166,0.483159,0.960479,0.155206,0.746536,0.240412,0.600921,0.849293,0.856722,0.325589,0.311099,0.245518,0.517032,0.352058,0.361646,0.171397,0.636868,0.150483,0.168418,0.626437,0.362801,0.442065,0.571361,0.396285,0.00291526,0.645162,0.15477,0.835442,0.874914,0.552725,0.0914273,0.671981,0.853339,0.648445,0.294445,0.102447,0.425389,0.275283,0.150763,0.838589,0.947154,0.86318,0.326479,0.555937,0.627288,0.460442,0.496087,0.565947,0.0333999,0.406663,0.00191903,0.630267,0.866562,0.176886,0.139025,0.950943,0.16977,0.599046,0.554988,0.382106,0.320332,0.535278,0.935706,0.626095,0.974686,0.087151,0.863696,0.585202,0.925781,0.800843,0.879937,0.396244,0.811288,0.0036419,0.494027,0.398107,0.012723,0.432059,0.48653,0.832798,0.101081,0.451993,0.632074,0.268735,0.0355765,0.013512,0.405197,0.248432,0.353377,0.771502,0.219609,0.476718,0.771402,0.508679,0.585468,0.565979,0.834222,0.177003,0.0743809,0.331289,0.286502,0.809996,0.542539,0.993526,0.905725,0.258428,0.0777677,0.521817,0.87857,0.922021,0.609691,0.427132,0.064745,0.292257,0.576652,0.00236768,0.266998,0.343453,0.201613,0.251991,0.942116,0.19643,0.826982,0.311449,0.624517,0.603962,0.486678,0.442229,0.487527,0.0527932,0.555363,0.0573664,0.486326,0.163014,0.181458,0.211477,0.00969177,0.000978112,0.0278938,0.120424,0.469396,0.947326,0.14103,0.596094,0.0997443,0.724011,0.390755,0.786888,0.352722,0.201479,0.794116,0.283899,0.77895,0.290055,0.016046,0.447847,0.17511,0.501785,0.910587,0.585209,0.38241,0.677087,0.754635,0.168007,0.13573,0.365353,0.804637,0.400174,0.256148,0.334763,0.513139,0.39341,0.591321,0.0287548,0.0399446,0.68416,0.0418872,0.485171,0.474021,0.147318,0.0353669,0.11585,0.498605,0.212606,0.951352,0.686113,0.0174269,0.486535,0.217109,0.944637,0.916567,0.486216,0.194271,0.536446,0.64114,0.175004,0.0241995,0.868615,0.859647,0.600772,0.660887,0.288943,0.94536,0.719408,0.655015,0.337027,0.948364,0.46757,0.484891,0.120771,0.503557,0.555813,0.387899,0.636714,0.570518,0.257455,0.912774,0.247776,0.295241,0.975276,0.227169,0.178005,0.320345,0.380671,0.12147,0.204418,0.986428,0.801524,0.954467,0.0877239,0.371923,0.581968,0.824655,0.586774,0.0672891,0.436166,0.654146,0.180219,0.0604585,0.142096,0.700865,0.0420899,0.563137,0.705766,0.170237,0.695801,0.906946,0.00564003,0.00112057,0.173172,0.734765,0.885885,0.649964,0.386394,0.0839524,0.904916,0.349907,0.248534,0.657289,0.396762,0.355117,0.612995,0.630322,0.0684801,0.155369,0.735165,0.955959,0.684835,0.303988,0.780192,0.843143,0.300127,0.0212254,0.79728,0.830415,0.210098,0.988913,0.623192,0.630248,0.993983,0.629039,0.163997,0.0984415,0.0807799,0.570709,0.0929573,0.213971,0.320988,0.32955,0.276929,0.627513,0.785892,0.810939,0.443761,0.372038,0.222401,0.268299,0.644441,0.350016,0.705286,0.835542,0.15721,0.434526,0.510435,0.700569,0.893598,0.0708783,0.135992,0.631979,0.100088,0.779167,0.831723,0.620079,0.885659,0.679195,0.157335,0.0770156,0.172443,0.256291,0.0259179,0.0902924,0.414565,0.518987,0.998854,0.437334,0.0883875,0.160821,0.950911,0.449753,0.66881,0.85017,0.226944,0.779375,0.498428,0.157295,0.603422,0.950993,0.424555,0.968435,0.389984,0.814813,0.648032,0.374315,0.12873,0.0262824,0.458249,0.389277,0.362817,0.821123,0.830972,0.525646,0.576536,0.573395,0.723905,0.0946059,0.680606,0.137034,0.0516458,0.927144,0.218426,0.728562,0.554841,0.483941,0.807143,0.537276,0.903599,0.320692,0.69619,0.680557,0.533131,0.457219,0.665454,0.0529333,0.216788,0.497258,0.699802,0.0798208,0.752195,0.792224,0.618578,0.783892,0.11961,0.703037,0.907583,0.262798,0.060378,0.616072,0.361455,0.238666,0.872588,0.79919,0.850412,0.0750864,0.978542,0.6946,0.167386,0.851277,0.682551,0.28308,0.442129,0.423419,0.00707054,0.473979,0.800701,0.362889,0.808999,0.0470839,0.367261,0.270207,0.406172,0.0824769,0.330562,0.292119,0.953198,0.750667,0.419138,0.113847,0.160242,0.216802,0.839664,0.958994,0.685135,0.804112,0.569593,0.676405,0.624018,0.556426,0.771335,0.11356,0.194623,0.163386,0.488159,0.275699,0.212998,0.545145,0.0952176,0.264718,0.762759,0.801405,0.262982,0.815433,0.10801,0.496667,0.872706,0.80105,0.50773,0.272322,0.356592,0.522505,0.00789315,0.864592,0.0132335,0.692153,0.653665,0.08245,0.924484,0.933802,0.190724,0.288027,0.119887,0.720663,0.704025,0.0932261,0.698982,0.263125,0.621044,0.882409,0.577368,0.915088,0.0889865,0.136844,0.167063,0.271598,0.796905,0.834359,0.165924,0.753761,0.0136332,0.195735,0.490702,0.66845,0.787544,0.232883,0.225427,0.359726,0.0797535,0.65808,0.676445,0.0609981,0.660614,0.40561,0.515577,0.147161,0.961046,0.13115,0.799252,0.941752,0.795149,0.0160443,0.930136,0.803082,0.518965,0.306124,0.205238,0.31727,0.917492,0.535778,0.528388,0.699671,0.110423,0.00785249,0.95809,0.0428299,0.676076,0.164066,0.478096,0.982035,0.37972,0.150759,0.0408681,0.135834,0.5122,0.530441,0.614593,0.709413,0.657508,0.295707,0.317605,0.313517,0.233568,0.411374,0.997361,0.708006,0.205741,0.952062,0.543685,0.586964,0.733665,0.769241,0.0352632,0.910981,0.345724,0.896466,0.312621,0.396529,0.855038,0.0485694,0.909083,0.983199,|0.242683,0.926754,0.345976,0.989487,0.544943,0.548282,0.515436,0.490348,0.779002,0.270092,0.536615,0.628271,0.516863,0.0766234,0.40638,0.404522,0.395252,0.360636,0.835985,0.11404,0.124146,0.941861,0.592987,0.222597,0.642472,0.31812,0.206901,0.378135,0.773279,0.183344,0.223744,0.410332,0.399877,0.807909,0.860106,0.819349,0.644303,0.793299,0.940285,0.484324,0.383871,0.383168,0.345665,0.347338,0.247182,0.538422,0.556204,0.385856,0.813784,0.750508,0.099808,0.844887,0.618456,0.661496,0.806901,0.683879,0.865521,0.968471,0.844565,0.827647,0.34423,0.93328,0.943641,0.25457,0.636352,0.769622,0.507057,0.300426,0.608662,0.325019,0.779442,0.669014,0.0360197,0.559888,0.981567,0.418247,0.169371,0.762798,0.25264,0.0304274,0.45403,0.734358,0.797399,0.814154,0.247704,0.797464,0.715952,0.983276,0.285097,0.916331,0.623774,0.244738,0.998428,0.826996,0.960294,0.207823,0.418798,0.096244,0.701213,0.230652,0.931064,0.38582,0.704293,0.978714,0.273716,0.216321,0.767914,0.509192,0.784616,0.801724,0.0945666,0.385733,0.446077,0.325838,0.1466,0.688468,0.409009,0.813865,0.540299,0.0996964,0.155348,0.689129,0.576116,0.0263661,0.2338,0.173411,0.256964,0.463206,0.454893,0.273853,0.617575,0.297186,0.868686,0.942844,0.432266,0.568173,0.37746,0.0387145,0.779167,0.22897,0.823219,0.752171,0.902588,0.439734,0.940161,0.903167,0.146433,0.845577,0.054584,0.779136,0.890176,0.707269,0.465328,0.209533,0.72964,0.70179,0.0053314,0.00410753,0.372946,0.549433,0.849535,0.753857,0.929077,0.370495,0.219675,0.8038,0.664204,0.412338,0.988364,0.214131,0.904308,0.204849,0.868496,0.173781,0.846607,0.813477,0.119867,0.492921,0.723211,0.168063,0.704361,0.182544,0.448657,0.919412,0.339403,0.136936,0.859318,0.603582,0.486636,0.734585,0.327703,0.473552,0.506798,0.956004,0.530927,0.570351,0.308623,0.591688,0.0537512,0.775159,0.561448,0.360579,0.351297,0.818226,0.0359071,0.12155,0.205769,0.155174,0.875225,0.0751151,0.715837,0.0540496,0.889639,0.297043,0.957126,0.492341,0.551932,0.833888,0.282858,0.243613,0.0519985,0.718546,0.217875,0.0488531,0.593515,0.722026,0.592332,0.800199,0.886018,0.379809,0.959539,0.198665,0.9078,0.224492,0.476448,0.143123,0.0719395,0.282848,0.990267,0.177048,0.530497,0.55598,0.0716686,0.778259,0.323864,0.370061,0.732791,0.781259,0.288937,0.81961,0.365449,0.928902,0.922948,0.147147,0.973946,0.760637,0.911219,0.0215301,0.311993,0.694811,0.226434,0.987206,0.492396,0.295892,0.323378,0.226806,0.593421,0.641314,0.42546,0.134288,0.734852,0.642673,0.130927,0.607759,0.27961,0.734643,0.366619,0.525024,0.5462,0.487468,0.448735,0.458634,0.173976,0.461646,0.794724,0.59644,0.778932,0.588573,0.2987,0.984531,0.0350247,0.933583,0.486692,0.4459,0.86963,0.951616,0.0863439,0.529062,0.470674,0.496526,0.282581,0.772305,0.204583,0.112108,0.282264,0.607117,0.262162,0.85019,0.778039,0.724452,0.653114,0.887001,0.843021,0.66907,0.839302,0.585965,0.743813,0.0103844,0.199259,0.536649,0.82736,0.484091,0.501476,0.328486,0.209734,0.341777,0.128775,0.407558,0.106334,0.896653,0.076657,0.429351,0.407161,0.11541,0.307524,0.756072,0.270482,0.548633,0.234239,0.677025,0.126692,0.816281,0.843987,0.11995,0.272513,0.80508,0.208419,0.963454,0.375439,0.474496,0.2346,0.626905,0.37419,0.56488,0.403983,0.919091,0.26642,0.804939,0.446036,0.817032,0.352107,0.00235045,0.951658,0.0772787,0.439311,0.380393,0.298903,0.065818,0.0373811,0.356139,0.342548,0.268837,0.938796,0.897435,0.534492,0.61066,0.834136,0.898634,0.629888,0.86159,0.746401,0.33671,0.628843,0.0965929,0.729401,0.223209,0.984402,0.592629,0.554882,0.573815,0.213789,0.186589,0.558537,0.691452,0.782854,0.960894,0.460119,0.80988,0.217752,0.0531461,0.600203,0.964339,0.578085,0.226185,0.0884892,0.569004,0.468409,0.56019,0.943411,0.0907531,0.99304,0.308606,0.570234,0.864921,0.77421,0.949196,0.145441,0.419953,0.224309,0.645711,0.164011,0.152962,0.8391,0.956436,0.878687,0.322743,0.774279,0.209921,0.796141,0.144493,0.0252904,0.751073,0.242451,0.399022,0.416436,0.672962,0.680155,0.33413,0.228971,0.815582,0.909609,0.893084,0.394451,0.783578,0.36695,0.362224,0.439045,0.0826452,0.774296,0.399226,0.975138,0.764581,0.642575,0.419584,0.889647,0.408041,0.0849146,0.453444,0.993886,0.272856,0.278732,0.622018,0.285447,0.277327,0.505275,0.171737,0.337715,0.941663,0.757421,0.559291,0.584215,0.240135,0.320577,0.846516,0.270189,0.055065,0.339026,0.75147,0.412758,0.996843,0.134498,0.541858,0.734796,0.909239,0.512053,0.257341,0.329732,0.616899,0.409144,0.780909,0.195988,0.926678,0.404623,0.312828,0.677387,0.630991,0.823947,0.226866,0.403669,0.82674,0.0567017,0.834052,0.472368,0.87805,0.916666,0.32246,0.414063,0.603697,0.548356,0.39275,0.896041,0.0811559,0.519696,0.560157,0.493724,0.0695434,0.244482,0.926414,0.809042,0.536858,0.513775,0.953445,0.839551,0.383314,0.8094,0.885819,0.994351,0.705423,0.123811,0.621524,0.180317,0.443271,0.761939,0.0744213,0.0210632,0.121884,0.821459,0.462054,0.418504,0.0279797,0.921976,0.800114,0.722436,0.726751,0.809594,0.925377,0.387707,0.182614,0.100149,0.345209,0.308653,0.918984,0.810155,0.321694,0.824269,0.209282,0.17972,0.826714,0.180542,0.719812,0.45057,0.0644404,0.516947,0.105969,0.506594,0.773297,0.448677,0.379478,0.749493,0.00812,0.0279354,0.0696432,0.152267,0.409591,0.659196,0.315424,0.659535,0.871689,0.462395,0.4447,0.804837,0.0586619,0.755041,0.739761,0.891484,0.938349,0.110684,0.355714,0.00970227,0.755748,0.254309,0.656618,0.306501,0.103355,0.763506,0.670063,0.517463,0.239661,0.0515249,0.0954064,0.361005,0.245638,0.77335,0.129135,0.396446,0.949504,0.138472,0.638555,0.00234532,0.315164,0.41712,0.498269,0.717192,0.705616,0.140231,0.244843,0.639537,0.136027,0.728775,0.292999,0.347727,0.0817146,0.859198,0.449933,0.40243,0.607342,0.986812,0.774471,0.173999,0.707251,0.385627,0.964564,0.684252,0.83857,0.430258,0.445154,0.810159,0.618344,0.474308,0.102504,0.597333,0.152538,0.239208,0.951524,0.216873,0.53252,0.792861,0.917929,0.112731,0.586555,0.915995,0.349117,0.281415,0.892047,0.382651,0.8459,0.0148966,0.458726,0.275254,0.951796,0.0925125,0.656147,0.820836,0.706983,0.194994,0.364096,0.0456742,0.299122,0.0126821,0.952373,0.242915,0.596251,0.327366,0.535934,0.283315,0.418257,0.855789,0.852432,0.120336,0.299685,0.691237,0.753857,0.219506,0.00649655,0.919452,0.480213,0.849257,0.620107,0.0188935,0.0862539,0.583893,0.1302,0.730944,0.652825,0.975751,0.281231,0.481129,0.60333,0.400851,0.42939,0.998631,0.749887,0.971066,0.821402,0.734095,0.313314,0.0719196,0.189174,0.530608,0.468907,0.466155,0.0781842,0.663687,0.756038,0.389873,0.528625,0.726769,0.757742,0.984486,0.873703,0.419575,0.949908,0.957953,0.441546,0.768863,0.730523,0.153184,0.694298,0.831979,0.433411,0.260539,0.785909,0.656017,0.0236369,0.567224,0.126231,0.395175,0.503901,0.349002,0.750926,0.650284,0.499286,0.4727,0.238862,0.443606,0.534433,0.137991,0.800017,0.693795,0.747409,0.347244,0.424954,0.695388,0.134801,0.660911,0.417651,0.209263,0.652111,0.644199,0.473624,0.976368,0.279804,0.849058,0.329668,0.344532,0.59425,0.72458,0.919995,0.502273,0.818626,0.441297,0.355724,0.853629,0.457182,0.232918,0.0370548,0.277311,0.153272,0.559319,0.0439353,0.964177,0.350179,0.18513,0.156922,0.14807,0.0479205,0.227042,0.865132,0.720642,0.418276,0.92857,0.00772375,0.112421,0.470503,0.717709,0.199577,0.492188,0.776798,0.15594,0.178167,0.459851,0.419879,0.880334,0.797938,0.0692291,0.309891,0.497191,0.173538,0.109839,0.817571,0.234185,0.75754,0.583577,0.491353,0.788754,0.0520231,0.675274,0.223949,0.107397,0.782381,0.566773,0.322142,0.043434,0.641089,0.46579,0.577236,0.312441,0.435563,0.0490062,0.843264,0.0587423,0.520697,0.637232,0.137455,0.798144,0.389905,0.0514818,0.157027,0.667019,0.542784,0.596784,0.50987,0.569829,0.680093,0.841431,0.235836,0.29113,0.654495,0.867485,0.555981,0.353828,0.955947,0.119412,0.885623,0.925741,0.905059,0.67133,0.116567,0.865118,0.636413,0.40822,0.653126,0.792221,0.40185,0.990865,0.63932,0.503566,0.743779,0.207443,0.300167,0.366483,0.243289,0.827073,0.448601,0.0892416,0.875204,0.223597,0.660144,0.812342,0.51019,0.641826,0.543998,0.468094,0.888429,0.0653715,0.747691,0.691644,0.448771,0.184055,0.717851,0.98711,0.595767,0.127661,0.210857,0.954684,0.223671,0.681877,0.361094,0.376931,0.168243,0.547386,0.707891,0.0588864,0.207228,0.860036,0.431297,0.182402,0.37366,0.0986486,0.409476,0.181681,0.0111253,0.811351,0.634993,0.994927,0.243247,0.47736,0.839825,0.00306243,0.463542,0.921214,0.595568,0.14016,0.891591,0.338165,0.52379,0.572201,0.229796,0.469383,0.670381,0.520619,0.112378,0.416879,0.338589,0.527043,0.61847,0.90214,0.0491162,0.375155,0.917774,0.0565705,0.455752,0.218476,0.822739,0.550186,0.880612,0.0766214,0.446921,0.296663,0.485559,0.194334,0.361979,0.932462,0.835855,0.648616,0.267467,0.211089,0.807185,0.91139,0.930264,0.658729,0.94002,0.651732,0.760368,0.768475,0.961084,0.00347781,0.435532,0.0761728,0.424631,0.865405,0.776684,0.603565,0.235958,0.028747,0.63539,0.195035,0.174971,0.283842,0.15061,0.981376,0.21242,0.835333,0.56703,0.80712,0.501866,0.382447,0.768918,0.375439,0.00940293,0.199726,0.375767,0.954467,0.0208251,0.704896,0.209989,0.368958,0.659853,0.237057,0.0369316,|0.756817,0.1828,0.335823,0.861581,0.800285,0.8125,0.466407,0.0981187,0.470741,0.265302,0.531072,0.690441,0.666713,0.537514,0.0106347,0.0597907,0.356615,0.933222,0.281807,0.035237,0.509179,0.150491,0.721107,0.560139,0.86492,0.450164,0.773826,0.307946,0.063557,0.345619,0.292955,0.950309,0.986009,0.344015,0.194689,0.693919,0.894167,0.422701,0.852934,0.85761,0.328887,0.0577699,0.269289,0.0990516,0.889438,0.831513,0.212057,0.405199,0.918015,0.694348,0.536001,0.347121,0.758086,0.98192,0.324123,0.800109,0.543161,0.464776,0.477618,0.597483,0.124638,0.377421,0.353025,0.726899,0.624744,0.965296,0.528643,0.163164,0.922342,0.833615,0.496724,0.00131744,0.895674,0.17069,0.494797,0.510876,0.417502,0.861077,0.395348,0.111164,0.717133,0.98037,0.493408,0.753638,0.369806,0.954777,0.0121819,0.173779,0.11659,0.114936,0.564752,0.309057,0.69691,0.318938,0.64199,0.79193,0.315288,0.897913,0.84359,0.25878,0.448389,0.577852,0.375443,0.2755,0.462849,0.084832,0.740614,0.772888,0.365361,0.702054,0.314793,0.472003,0.212124,0.00375092,0.892825,0.405758,0.601217,0.753383,0.374961,0.0790725,0.389643,0.991162,0.498275,0.740142,0.307908,0.386883,0.68657,0.164287,0.765518,0.347378,0.387561,0.500503,0.544927,0.364704,0.214779,0.932985,0.658508,0.208714,0.0768535,0.41046,0.250519,0.0318955,0.192551,0.242331,0.199068,0.479086,0.073558,0.631495,0.813764,0.944773,0.150217,0.410055,0.843018,0.946892,0.966778,0.875315,0.891845,0.223445,0.374476,0.813998,0.0669007,0.0197745,0.866821,0.595041,0.00713325,0.593798,0.542722,0.350285,0.626408,0.644556,0.729644,0.307087,0.0122712,0.68184,0.0250027,0.0695121,0.00749099,0.68524,0.70095,0.126656,0.337467,0.405925,0.484363,0.827613,0.17175,0.337453,0.998182,0.125296,0.231012,0.0952415,0.725273,0.53618,0.711313,0.333248,0.329666,0.695946,0.388798,0.510177,0.259204,0.306914,0.142447,0.804172,0.567637,0.0768416,0.970596,0.320777,0.725102,0.610185,0.836361,0.640256,0.495525,0.178852,0.813798,0.73431,0.787285,0.752434,0.733983,0.585854,0.98863,0.700461,0.8266,0.288055,0.919513,0.529839,0.669175,0.650589,0.286356,0.0298529,0.807313,0.0239241,0.967872,0.680099,0.911269,0.995385,0.613613,0.232289,0.244507,0.0318297,0.964735,0.172037,0.160127,0.565113,0.956768,0.570576,0.651087,0.151412,0.653032,0.0251589,0.592113,0.257799,0.689016,0.0494904,0.285035,0.113854,0.0780522,0.525521,0.46359,0.768612,0.344272,0.510932,0.855305,0.201647,0.179452,0.337238,0.873951,0.00667959,0.815412,0.418533,0.0548698,0.707425,0.482382,0.888778,0.142548,0.251855,0.85537,0.781196,0.187305,0.960068,0.921507,0.276446,0.44985,0.103446,0.876949,0.193621,0.573364,0.920323,0.3098,0.985656,0.88518,0.272192,0.423714,0.981431,0.720306,0.247804,0.860135,0.694642,0.0866869,0.5019,0.855305,0.371134,0.716867,0.439196,0.967418,0.815487,0.355354,0.504583,0.317023,0.224442,0.506323,0.287083,0.401587,0.750602,0.404494,0.895735,0.49356,0.0313153,0.890997,0.280608,0.720959,0.241,0.481988,0.828022,0.738291,0.682007,0.318056,0.410887,0.744959,0.805939,0.0280688,0.309447,0.619837,0.183714,0.777238,0.0739385,0.165511,0.0777761,0.74623,0.0416788,0.902444,0.416172,0.508367,0.852365,0.981575,0.658434,0.926942,0.136094,0.401095,0.447168,0.760693,0.303169,0.652576,0.559214,0.205543,0.871193,0.424835,0.153811,0.976942,0.0928681,0.371929,0.0219582,0.144274,0.970197,0.300506,0.890545,0.532645,0.560107,0.239035,0.590702,0.716416,0.942143,0.451898,0.525389,0.37852,0.700952,0.472561,0.541025,0.801313,0.0593788,0.554016,0.247,0.797231,0.00557536,0.43093,0.298542,0.328266,0.0880143,0.444008,0.601855,0.00521171,0.665664,0.910111,0.839891,0.161862,0.997719,0.948217,0.159299,0.0701781,0.987262,0.462343,0.598298,0.621954,0.654867,0.720334,0.345828,0.85619,0.259146,0.225164,0.889532,0.769286,0.943518,0.596512,0.575345,0.587371,0.498626,0.368149,0.594405,0.0190409,0.677262,0.316027,0.754661,0.671131,0.0175498,0.254349,0.581601,0.594821,0.975181,0.211885,0.134296,0.86769,0.513924,0.692742,0.916836,0.514565,0.906507,0.311613,0.704495,0.408435,0.955824,0.42468,0.539782,0.181674,0.270286,0.785975,0.223929,0.630754,0.335139,0.963404,0.809277,0.386218,0.0454783,0.438164,0.19759,0.282624,0.489686,0.412054,0.661119,0.558522,0.734838,0.336212,0.478149,0.195251,0.36726,0.683412,0.681278,0.667781,0.895567,0.0816727,0.827649,0.0514878,0.322826,0.804249,0.0154007,0.271386,0.87581,0.497777,0.502713,0.590709,0.535382,0.117205,0.766729,0.618355,0.618381,0.342562,0.715225,0.202259,0.842179,0.305659,0.289491,0.643297,0.200043,0.599426,0.638858,0.796059,0.98498,0.998427,0.732839,0.374785,0.608259,0.941885,0.563968,0.518705,0.480985,0.391011,0.538789,0.980449,0.287982,0.010669,0.882968,0.611577,0.289453,0.959764,0.753555,0.715114,0.458054,0.263622,0.524886,0.411515,0.0566458,0.848772,0.335976,0.108709,0.74432,0.789355,0.161602,0.93579,0.229087,0.967264,0.132722,0.982584,0.294235,0.229559,0.845263,0.472664,0.60926,0.387338,0.0838003,0.964288,0.796011,0.640131,0.449764,0.0627809,0.140629,0.97644,0.906191,0.664221,0.494029,0.368506,0.128983,0.571584,0.556884,0.930502,0.946289,0.914391,0.863943,0.16729,0.182654,0.413454,0.12496,0.717698,0.435737,0.694832,0.150903,0.568619,0.24827,0.178635,0.24832,0.744886,0.0587946,0.898992,0.172405,0.130831,0.383701,0.953031,0.723959,0.941138,0.0768226,0.911054,0.224471,0.988681,0.842059,0.375018,0.504317,0.51726,0.0779282,0.421025,0.656126,0.255239,0.222581,0.275949,0.199812,0.359047,0.142996,0.758375,0.627812,0.240425,0.36838,0.396431,0.531803,0.105847,0.929421,0.249157,0.655486,0.655799,0.900994,0.912051,0.421753,0.583014,0.534651,0.547602,0.0333607,0.393409,0.837271,0.171906,0.210691,0.371298,0.131072,0.173401,0.57597,0.856211,0.463131,0.0519491,0.269801,0.262943,0.226986,0.1193,0.976552,0.235734,0.803772,0.130758,0.976672,0.952571,0.295587,0.351252,0.0384465,0.330362,0.652195,0.228783,0.107181,0.403585,0.848899,0.68901,0.358908,0.200179,0.85629,0.526562,0.730059,0.486324,0.824326,0.845094,0.200868,0.310341,0.0615497,0.140162,0.241098,0.0439432,0.151928,0.327868,0.819142,0.102289,0.74732,0.66551,0.435885,0.523317,0.119591,0.797525,0.271304,0.235297,0.775326,0.343905,0.703464,0.29958,0.0550812,0.70432,0.0649745,0.248116,0.034481,0.0415708,0.803834,0.161374,0.27233,0.143772,0.521613,0.610624,0.739112,0.869472,0.311826,0.278573,0.647727,0.764981,0.322819,0.236526,0.217886,0.210986,0.319099,0.232118,0.430394,0.93753,0.486864,0.0931801,0.153466,0.00938904,0.666916,0.718048,0.595687,0.256237,0.45104,0.477024,0.584695,0.67045,0.125466,0.498076,0.130683,0.707013,0.61924,0.455197,0.947664,0.417148,0.0429569,0.0921856,0.234747,0.569992,0.22345,0.751545,0.708986,0.683627,0.105387,0.549052,0.108976,0.993629,0.767616,0.716886,0.00434184,0.869164,0.848692,0.0912967,0.800188,0.670834,0.0832046,0.895123,0.476577,0.30534,0.998731,0.00410444,0.442983,0.868988,0.674153,0.98172,0.655559,0.125859,0.783804,0.643308,0.583816,0.354792,0.390855,0.424392,0.276342,0.332873,0.926393,0.358226,0.946927,0.46959,0.640441,0.571045,0.568899,0.11175,0.0434709,0.84046,0.00277972,0.0100899,0.134437,0.423422,0.132123,0.189494,0.0505063,0.888293,0.737692,0.664514,0.0609683,0.14567,0.503161,0.930135,0.49386,0.634925,0.353143,0.567488,0.134646,0.873904,0.170043,0.74747,0.306071,0.252277,0.684168,0.237668,0.567958,0.522041,0.416152,0.222399,0.146213,0.958494,0.53907,0.131652,0.180621,0.881943,0.0448335,0.493696,0.863528,0.964884,0.138306,0.816889,0.872975,0.242383,0.411373,0.284765,0.892522,0.0607867,0.961235,0.222507,0.636243,0.0269873,0.411095,0.790576,0.155856,0.941217,0.90935,0.460668,0.566155,0.319144,0.971683,0.16296,0.682582,0.678498,0.135365,0.507479,0.758614,0.897846,0.569635,0.390312,0.38715,0.684603,0.0233665,0.14885,0.336994,0.150425,0.835139,0.449773,0.911795,0.503239,0.454602,0.0663143,0.505371,0.0325432,0.73617,0.273798,0.536735,0.0528352,0.947186,0.700083,0.310056,0.0248994,0.186971,0.730451,0.837563,0.880485,0.359981,0.750158,0.00747412,0.0882701,0.567845,0.43264,0.749711,0.891038,0.876838,0.696292,0.0218728,0.912397,0.540895,0.629504,0.556069,0.409074,0.287932,0.589346,0.645649,0.745777,0.787731,0.747253,0.88569,0.0181623,0.715704,0.404221,0.335014,0.616683,0.435536,0.132607,0.929493,0.129898,0.281275,0.524703,0.722843,0.707487,0.164918,0.658994,0.149429,0.20011,0.508307,0.459287,0.687966,0.899775,0.837482,0.971237,0.783609,0.418595,0.595194,0.373272,0.697551,0.367425,0.675958,0.804032,0.901037,0.335997,0.143061,0.861214,0.776484,0.736847,0.654573,0.0837584,0.953852,0.398423,0.524582,0.855412,0.398372,0.686472,0.324865,0.433623,0.545789,0.679476,0.517014,0.382955,0.132735,0.261047,0.467921,0.0794654,0.329663,0.0662956,0.779887,0.985241,0.0754431,0.924952,0.887313,0.891309,0.0907141,0.543076,0.0215037,0.716308,0.396404,0.227624,0.467761,0.73684,0.159852,0.850524,0.307841,0.299791,0.509926,0.34308,0.857062,0.612163,0.0960022,0.828811,0.666619,0.658362,0.507109,0.314927,0.485631,0.331819,0.00827581,0.65645,0.146484,0.992058,0.0598187,0.595633,0.74904,0.329427,0.69035,0.425933,0.126753,0.0919928,0.361572,0.183115,0.80817,0.954046,0.165091,0.901763,0.334506,0.779885,0.744466,0.881477,0.387522,0.731597,0.305691,0.219959,0.181169,|0.146306,0.861412,0.312003,0.315897,0.072891,0.488824,0.337522,0.927257,0.606175,0.857234,0.463469,0.843717,0.79399,0.273651,0.120724,0.775147,0.775983,0.266334,0.868936,0.724512,0.247759,0.27586,0.55691,0.83528,0.252812,0.54887,0.534411,0.305287,0.56668,0.350284,0.765329,0.910351,0.466922,0.785284,0.193825,0.309735,0.193259,0.495592,0.641013,0.230363,0.435155,0.177538,0.510499,0.403732,0.586882,0.620743,0.264277,0.331241,0.76289,0.780901,0.154954,0.831921,0.0123215,0.11787,0.709593,0.984464,0.203574,0.915826,0.836092,0.0537661,0.203467,0.658483,0.857196,0.799984,0.172471,0.280934,0.330928,0.864589,0.552986,0.47656,0.906696,0.346601,0.0966876,0.433175,0.101174,0.793866,0.953822,0.7581,0.366366,0.655319,0.157697,0.184801,0.759802,0.986107,0.890055,0.460868,0.544893,0.354743,0.862441,0.386704,0.443115,0.996526,0.714808,0.359294,0.283589,0.84958,0.0634137,0.511086,0.60738,0.869154,0.135079,0.637054,0.431696,0.525386,0.373882,0.81663,0.878225,0.936024,0.196961,0.637271,0.861707,0.170715,0.518363,0.30571,0.472947,0.270212,0.414508,0.284175,0.849635,0.0159527,0.293025,0.15945,0.683679,0.864402,0.377199,0.784633,0.731973,0.000378609,0.257234,0.172622,0.665851,0.367903,0.145386,0.148361,0.268861,0.787517,0.348903,0.348716,0.641349,0.030379,0.593588,0.643796,0.485076,0.680444,0.639876,0.458154,0.95577,0.147095,0.133773,0.151857,0.627996,0.0392568,0.430399,0.748255,0.980805,0.436555,0.921889,0.862065,0.153006,0.0320977,0.638199,0.198639,0.961203,0.647509,0.847783,0.731031,0.208209,0.784634,0.365872,0.855699,0.341725,0.843782,0.477586,0.356063,0.823412,0.929265,0.658822,0.607408,0.184653,0.342474,0.647367,0.52471,0.659053,0.531012,0.60175,0.578105,0.96158,0.147675,0.571968,0.247449,0.415069,0.511355,0.48436,0.485389,0.552136,0.0877911,0.0904281,0.695297,0.101532,0.364117,0.690549,0.932257,0.79561,0.555223,0.461615,0.156001,0.890395,0.542014,0.154845,0.843227,0.677447,0.0062322,0.155484,0.244974,0.930145,0.418478,0.109235,0.821144,0.228466,0.0496129,0.424359,0.370321,0.734669,0.796507,0.87929,0.394886,0.928701,0.906432,0.403453,0.333908,0.143656,0.623454,0.0292677,0.818492,0.146993,0.503834,0.343418,0.0834464,0.042466,0.372944,0.32168,0.896568,0.800147,0.651313,0.603886,0.346456,0.618993,0.887205,0.330177,0.366856,0.486044,0.592192,0.621783,0.118398,0.726022,0.872502,0.761242,0.834718,0.331656,0.941392,0.421451,0.192309,0.105973,0.550417,0.522879,0.63067,0.0941001,0.692025,0.985967,0.666145,0.0541117,0.606946,0.439263,0.651149,0.138712,0.297786,0.203049,0.903253,0.684563,0.103098,0.705677,0.48276,0.437944,0.308403,0.0138854,0.20061,0.66488,0.748739,0.449516,0.491557,0.714875,0.770177,0.975265,0.923541,0.397762,0.445741,0.0620629,0.196372,0.811845,0.311334,0.622733,0.942949,0.989566,0.976975,0.911463,0.108894,0.588874,0.860333,0.828292,0.909952,0.81883,0.980779,0.258574,0.134565,0.949533,0.206663,0.455214,0.0461231,0.00843579,0.626884,0.645723,0.719195,0.954806,0.816199,0.822921,0.889752,0.845376,0.623238,0.737245,0.539909,0.407097,0.691747,0.0577395,0.889968,0.179024,0.276898,0.228051,0.235268,0.569543,0.730397,0.52116,0.672599,0.880972,0.208191,0.343543,0.720124,0.147021,0.529378,0.432464,0.926901,0.207149,0.568115,0.869734,0.298908,0.515613,0.427812,0.187141,0.939561,0.755467,0.415179,0.439164,0.465958,0.326473,0.484702,0.893773,0.171939,0.639809,0.555227,0.881648,0.222977,0.292053,0.309967,0.797373,0.88752,0.778713,0.138896,0.0838256,0.224521,0.99236,0.867086,0.532165,0.418045,0.126986,0.592447,0.029025,0.0433795,0.752918,0.57639,0.895242,0.121971,0.74711,0.787666,0.715691,0.0715623,0.149205,0.699836,0.00944173,0.770141,0.365152,0.645495,0.638564,0.414792,0.305384,0.00723112,0.42374,0.63148,0.654155,0.212043,0.0677007,0.551875,0.691357,0.0551785,0.428307,0.266493,0.486914,0.920798,0.663551,0.781587,0.348985,0.828574,0.382287,0.569035,0.0983168,0.325749,0.275461,0.418659,0.610072,0.294573,0.447426,0.565437,0.909163,0.0565916,0.763502,0.298649,0.480396,0.771968,0.258927,0.720451,0.37322,0.00899464,0.303897,0.0843655,0.190889,0.571864,0.261866,0.751052,0.924613,0.72817,0.314985,0.301628,0.898395,0.905489,0.167686,0.943794,0.808622,0.202442,0.689796,0.224373,0.328751,0.474999,0.233153,0.853602,0.0597958,0.405754,0.901333,0.920035,0.136285,0.642891,0.293815,0.218334,0.66384,0.674754,0.595427,0.318721,0.791619,0.81653,0.779431,0.395318,0.0101396,0.50582,0.310787,0.632551,0.779332,0.0039432,0.86968,0.6984,0.232549,0.66306,0.948941,0.775588,0.549735,0.463068,0.420176,0.689848,0.996741,0.466477,0.15801,0.151618,0.802031,0.877471,0.254627,0.130186,0.24364,0.0534773,0.86756,0.503445,0.80474,0.174389,0.851581,0.57246,0.944301,0.666886,0.993651,0.76395,0.38786,0.343665,0.132012,0.715264,0.762852,0.162472,0.559691,0.208855,0.392291,0.55777,0.573227,0.937363,0.0869107,0.797561,0.57138,0.920052,0.551932,0.0787455,0.671272,0.712204,0.673058,0.697211,0.612637,0.143735,0.665635,0.766595,0.904935,0.754535,0.789565,0.139836,0.0484176,0.234579,0.595795,0.824865,0.567262,0.141992,0.0738431,0.175635,0.576503,0.556214,0.877571,0.296782,0.739578,0.942214,0.57942,0.39391,0.778122,0.457943,0.223594,0.20252,0.739903,0.183621,0.0214583,0.574589,0.382861,0.737185,0.0171001,0.128883,0.0906712,0.160289,0.751279,0.889602,0.960147,0.161865,0.525932,0.107557,0.931784,0.687643,0.183645,0.680954,0.436955,0.368261,0.194166,0.314896,0.208996,0.849493,0.861315,0.331949,0.535458,0.745648,0.195592,0.0537445,0.252771,0.821288,0.47694,0.510207,0.28892,0.419951,0.431059,0.426771,0.388853,0.385229,0.497579,0.0209154,0.0660986,0.99196,0.613639,0.149132,0.246389,0.336897,0.995978,0.849041,0.85373,0.268201,0.0222314,0.155804,0.33167,0.619682,0.251398,0.928653,0.362215,0.913586,0.616876,0.734706,0.832461,0.922114,0.636399,0.663925,0.505849,0.277151,0.811564,0.905354,0.0712566,0.117769,0.480824,0.0985021,0.996111,0.185472,0.675389,0.845401,0.62516,0.117842,0.0785505,0.0704241,0.138529,0.889194,0.286068,0.534157,0.213978,0.000910461,0.514095,0.338372,0.904753,0.143511,0.0641012,0.940729,0.105637,0.518878,0.377404,0.0761672,0.974058,0.994166,0.56504,0.505375,0.699281,0.548472,0.804464,0.536361,0.242082,0.142368,0.159428,0.26922,0.2241,0.291465,0.00283867,0.20908,0.348958,0.377984,0.866383,0.0474002,0.775481,0.886141,0.128432,0.644137,0.669066,0.00649637,0.407284,0.712765,0.910465,0.496472,0.0959712,0.135132,0.803078,0.931315,0.847895,0.270744,0.573688,0.982109,0.523388,0.187167,0.080828,0.522832,0.987974,0.280011,0.0974308,0.510373,0.0616432,0.231545,0.525482,0.924608,0.249117,0.422422,0.740155,0.932518,0.766877,0.0195416,0.865206,0.612119,0.670928,0.588313,0.35553,0.0535314,0.816561,0.223503,0.0571079,0.32376,0.6532,0.25023,0.288649,0.538184,0.35952,0.579968,0.639704,0.745247,0.288527,0.639876,0.0227348,0.735846,0.0468578,0.762358,0.222633,0.766069,0.982782,0.624745,0.418951,0.97285,0.0904586,0.695756,0.491252,0.392234,0.439454,0.882273,0.987394,0.458705,0.609509,0.857949,0.434388,0.206253,0.360979,0.435357,0.352353,0.417164,0.541409,0.46927,0.310098,0.0311414,0.192979,0.16496,0.0320625,0.760249,0.250265,0.891272,0.373104,0.0325069,0.712537,0.531585,0.109977,0.437237,0.955759,0.0808906,0.472909,0.0649123,0.733851,0.306489,0.929197,0.719258,0.239765,0.990925,0.184927,0.186443,0.233028,0.541774,0.190004,0.491664,0.171851,0.29915,0.797041,0.944574,0.103707,0.883828,0.77636,0.749503,0.0706961,0.725455,0.508891,0.31925,0.429139,0.457305,0.324229,0.589661,0.00745714,0.368633,0.85395,0.0684435,0.16715,0.367958,0.936445,0.243439,0.475356,0.229276,0.619419,0.529516,0.364631,0.00165248,0.505302,0.576442,0.348848,0.0938921,0.6823,0.171433,0.963957,0.558452,0.241965,0.379382,0.404832,0.155118,0.614131,0.826876,0.889287,0.0691603,0.74219,0.91012,0.974388,0.713088,0.0795084,0.737002,0.952912,0.184186,0.0188717,0.191961,0.179365,0.58599,0.417898,0.680594,0.837639,0.405153,0.13432,0.162489,0.541621,0.993751,0.221211,0.383089,0.153769,0.821601,0.446726,0.951352,0.575134,0.210546,0.311052,0.583975,0.466726,0.133196,0.56864,0.454826,0.398036,0.180602,0.202781,0.967692,0.651586,0.740945,0.357883,0.58191,0.0204957,0.578354,0.0607532,0.179822,0.183111,0.245912,0.820298,0.354919,0.227069,0.85755,0.0472069,0.398806,0.315831,0.778961,0.654754,0.100263,0.311329,0.599336,0.369692,0.152869,0.300773,0.154508,0.568482,0.0500469,0.345689,0.201963,0.467847,0.987063,0.798783,0.321074,0.647445,0.479005,0.60597,0.253506,0.993038,0.0654532,0.00371957,0.865565,0.442334,0.607332,0.416796,0.124143,0.801086,0.248906,0.0964553,0.477107,0.13574,0.884926,0.31772,0.54321,0.879081,0.698998,0.692982,0.309341,0.947797,0.659541,0.65498,0.239565,0.127275,0.0810012,0.0856349,0.166909,0.69606,0.352758,0.887151,0.531474,0.769053,0.859165,0.0376204,0.966038,0.963361,0.707932,0.627799,0.149913,0.87331,0.649374,0.168989,0.983983,0.929622,0.99218,0.715734,0.884429,0.646864,0.582123,0.860445,0.533835,0.632458,0.818552,0.762234,0.0192435,0.431449,0.336969,0.661776,0.0972649,0.216739,0.948986,0.121329,0.860459,0.971231,0.845456,0.548307,0.947316,0.350014,0.81064,0.815837,0.458671,0.510718,0.0583779,0.84772,0.0023939,0.442513,0.88734,0.863976,0.594694,|0.998111,0.0170379,0.87052,0.253819,0.0238054,0.982067,0.989701,0.223696,0.168873,0.54066,0.433444,0.0564618,0.0496087,0.382378,0.104531,0.326829,0.758141,0.662721,0.276268,0.120828,0.336797,0.040554,0.985226,0.366855,0.859883,0.447582,0.604996,0.590582,0.484722,0.0784269,0.735446,0.0544262,0.342648,0.636534,0.276936,0.447337,0.0383134,0.393289,0.21244,0.269064,0.421589,0.688223,0.890689,0.443022,0.415915,0.836532,0.14902,0.198105,0.986002,0.569818,0.0809609,0.643816,0.131243,0.167274,0.892375,0.547461,0.805024,0.929486,0.197385,0.233505,0.594396,0.381584,0.961514,0.75723,0.0744544,0.869882,0.904945,0.806187,0.730621,0.622863,0.533051,0.165522,0.808775,0.993768,0.167111,0.311158,0.936914,0.973314,0.361893,0.660074,0.590354,0.0418462,0.680433,0.225016,0.708113,0.998564,0.315255,0.450384,0.397718,0.0476577,0.34082,0.165438,0.252246,0.0278416,0.266374,0.120542,0.183507,0.492772,0.0643665,0.566181,0.449995,0.632151,0.309979,0.0286192,0.924196,0.225112,0.632465,0.889168,0.461529,0.710569,0.821151,0.148899,0.813771,0.593882,0.0248166,0.133805,0.283134,0.665424,0.641972,0.984607,0.535736,0.847953,0.919142,0.0665553,0.515481,0.881336,0.545763,0.00437993,0.501106,0.865397,0.104793,0.105636,0.782062,0.291042,0.494552,0.63452,0.832416,0.569773,0.975816,0.639171,0.736358,0.0621501,0.984112,0.871034,0.679044,0.808951,0.045426,0.849432,0.346594,0.576543,0.835575,0.243768,0.278136,0.272678,0.584022,0.499083,0.289327,0.522348,0.963262,0.363614,0.327205,0.742837,0.417558,0.89451,0.774611,0.934999,0.44198,0.949985,0.281722,0.387067,0.348597,0.49791,0.405533,0.1606,0.676164,0.0492538,0.278974,0.927993,0.884641,0.0110331,0.157688,0.66699,0.735064,0.428569,0.256171,0.127546,0.475189,0.439503,0.563947,0.0545872,0.714767,0.37216,0.607417,0.835184,0.324605,0.0313557,0.0557886,0.392901,0.790955,0.744166,0.706977,0.370005,0.102688,0.88588,0.896385,0.736523,0.313046,0.513774,0.950085,0.65359,0.303822,0.396661,0.742145,0.492081,0.746032,0.877466,0.678463,0.888637,0.357219,0.328925,0.0612161,0.631215,0.637844,0.986881,0.800593,0.601669,0.993971,0.126905,0.486761,0.301079,0.0755624,0.959862,0.233045,0.621718,0.529666,0.488527,0.738064,0.329349,0.122002,0.501134,0.75622,0.372293,0.426531,0.00450283,0.0595134,0.290924,0.758626,0.473431,0.328845,0.86908,0.79205,0.407471,0.837932,0.6099,0.982007,0.514617,0.243463,0.709417,0.0901338,0.778889,0.143274,0.840966,0.0486743,0.563848,0.599205,0.027599,0.306526,0.570629,0.605679,0.504899,0.600817,0.135017,0.0173185,0.968082,0.977131,0.287632,0.116424,0.901237,0.880388,0.572065,0.646051,0.543753,0.325321,0.635917,0.574646,0.593269,0.775514,0.575999,0.00872809,0.825227,0.639051,0.305664,0.171848,0.0105819,0.995843,0.706425,0.960638,0.0264952,0.623103,0.427237,0.950555,0.83187,0.708958,0.371904,0.928413,0.551836,0.99257,0.0053829,0.673959,0.733005,0.508642,0.576941,0.293678,0.596027,0.954444,0.640438,0.461388,0.0363417,0.90408,0.987865,0.967364,0.723993,0.469145,0.487054,0.160673,0.0599499,0.391067,0.239637,0.352955,0.138515,0.69305,0.376324,0.827438,0.751112,0.405944,0.19972,0.683763,0.582455,0.195921,0.385531,0.585219,0.761473,0.580015,0.551553,0.95869,0.954182,0.587829,0.38878,0.0986543,0.508597,0.769035,0.983972,0.582762,0.939215,0.578866,0.938583,0.674406,0.795685,0.75376,0.0101708,0.0641882,0.948221,0.63816,0.890624,0.393378,0.865176,0.820334,0.812464,0.831828,0.192686,0.717447,0.109442,0.644565,0.57883,0.349921,0.602905,0.620071,0.747436,0.203514,0.202703,0.0240157,0.308471,0.364416,0.200706,0.967781,0.133431,0.59629,0.10636,0.714619,0.398386,0.991045,0.335579,0.439098,0.187277,0.262253,0.906179,0.793703,0.196485,0.966053,0.902121,0.0303389,0.266482,0.667173,0.197285,0.103603,0.177928,0.0427091,0.128374,0.278439,0.661291,0.389156,0.0810708,0.241782,0.43448,0.246618,0.516923,0.301839,0.725538,0.77096,0.394971,0.557838,0.516573,0.524674,0.184348,0.456331,0.0377068,0.105149,0.443368,0.197801,0.698071,0.38434,0.819619,0.0550994,0.156734,0.126686,0.199353,0.173658,0.523504,0.118143,0.61181,0.236564,0.513266,0.870753,0.209672,0.844843,0.299192,0.132198,0.254105,0.581541,0.953187,0.30894,0.273257,0.885704,0.0651038,0.291548,0.976197,0.21029,0.246645,0.752318,0.873914,0.492187,0.535372,0.679469,0.776529,0.707464,0.419059,0.864699,0.328296,0.830968,0.463438,0.336587,0.677845,0.216496,0.155337,0.630468,0.0954615,0.981349,0.219956,0.72822,0.257411,0.714914,0.710531,0.330451,0.143958,0.0512703,0.856292,0.838594,0.69883,0.461645,0.599482,0.926508,0.0718066,0.912447,0.347292,0.0828297,0.68954,0.554367,0.265787,0.0186228,0.948717,0.0147277,0.586345,0.416379,0.505759,0.433606,0.688091,0.936533,0.401406,0.793358,0.521616,0.75076,0.803065,0.291824,0.0410777,0.0279067,0.18379,0.679033,0.381519,0.623862,0.461111,0.357981,0.933271,0.41917,0.480515,0.809595,0.0486987,0.768703,0.975084,0.826686,0.842341,0.499893,0.744623,0.997867,0.0188671,0.916886,0.439714,0.862682,0.763484,0.293583,0.67915,0.350907,0.983052,0.758097,0.450727,0.911686,0.623936,0.841369,0.445283,0.180881,0.10878,0.0538988,0.336076,0.518182,0.140547,0.214585,0.274194,0.374786,0.00941336,0.163933,0.634779,0.40987,0.424641,0.852383,0.424935,0.794785,0.230669,0.33609,0.238835,0.74029,0.501247,0.724279,0.59183,0.399444,0.951448,0.766144,0.000958502,0.683587,0.870658,0.874155,0.951786,0.119514,0.160215,0.381274,0.0537186,0.953976,0.0667387,0.736695,0.4901,0.264563,0.918668,0.544956,0.13252,0.0285864,0.277256,0.940565,0.64882,0.814066,0.212798,0.485956,0.474684,0.974144,0.0303916,0.841181,0.99752,0.330409,0.591036,0.874904,0.831249,0.139902,0.344758,0.508356,0.0818456,0.987379,0.239932,0.0253539,0.255262,0.876124,0.353056,0.220332,0.00241518,0.888595,0.688911,0.473208,0.558976,0.516912,0.278691,0.292824,0.108618,0.356072,0.402838,0.667584,0.230295,0.941019,0.455472,0.213773,0.700901,0.0841614,0.749951,0.628951,0.93059,0.424531,0.62133,0.215381,0.990984,0.680524,0.524212,0.0514864,0.630465,0.492499,0.750884,0.363549,0.143157,0.69072,0.280988,0.583157,0.176886,0.203933,0.244038,0.696362,0.332958,0.799122,0.153436,0.919826,0.601855,0.142303,0.7784,0.956999,0.300659,0.0631925,0.722853,0.208475,0.805512,0.632936,0.308224,0.88256,0.350559,0.524392,0.789301,0.836664,0.100668,0.142853,0.163578,0.113716,0.777263,0.313883,0.785551,0.386364,0.963971,0.145349,0.967494,0.123937,0.91865,0.916609,0.335386,0.772101,0.0796015,0.0386271,0.87582,0.311774,0.787314,0.437746,0.959829,0.0638762,0.847488,0.1803,0.130283,0.537213,0.330389,0.781097,0.359551,0.214669,0.0187021,0.979389,0.975298,0.419036,0.704764,0.683646,0.00143379,0.530194,0.672696,0.263574,0.946383,0.758137,0.750098,0.387638,0.773955,0.0687789,0.929138,0.334969,0.332158,0.262831,0.742128,0.718418,0.268153,0.78128,0.470016,0.284295,0.535165,0.322575,0.0318519,0.91646,0.298569,0.926209,0.0470886,0.326282,0.284803,0.41891,0.762418,0.759524,0.46226,0.631543,0.312078,0.969959,0.602051,0.248165,0.785332,0.871436,0.917739,0.217893,0.64812,0.783344,0.493478,0.545983,0.935766,0.541314,0.881932,0.845897,0.602953,0.657449,0.529489,0.328113,0.207503,0.420229,0.787065,0.823367,0.546381,0.887843,0.498948,0.859036,0.526409,0.818776,0.825087,0.0306,0.972518,0.652986,0.335094,0.760663,0.129447,0.321467,0.649204,0.221337,0.505213,0.332288,0.126569,0.866751,0.259199,0.301026,0.189969,0.840498,0.638482,0.772927,0.778761,0.534097,0.52044,0.308067,0.0351022,0.0741515,0.567566,0.964052,0.270508,0.748178,0.49135,0.0583835,0.984558,0.094858,0.16611,0.441997,0.990848,0.494827,0.0931764,0.425543,0.0859858,0.425519,0.815161,0.301786,0.019848,0.550701,0.792462,0.172503,0.0539594,0.869329,0.714773,0.904985,0.485044,0.17167,0.346952,0.587672,0.902052,0.240639,0.537467,0.04444,0.459747,0.135557,0.796409,0.275403,0.73136,0.445621,0.769607,0.463185,0.994568,0.52158,0.638484,0.286955,0.503998,0.214243,0.797751,0.685511,0.820131,0.62097,0.467597,0.918662,0.817774,0.187732,0.755639,0.188662,0.742998,0.43994,0.78962,0.611802,0.470199,0.273846,0.784132,0.545488,0.742373,0.0131211,0.13956,0.489221,0.805171,0.763929,0.162627,0.203406,0.843886,0.743167,0.39797,0.242624,0.416924,0.449681,0.104272,0.864808,0.714847,0.221614,0.400152,0.338148,0.616179,0.171531,0.685537,0.0168478,0.152973,0.637342,0.1901,0.387804,0.627556,0.873534,0.275374,0.436705,0.0539209,0.0747913,0.740416,0.487319,0.198252,0.802094,0.893004,0.506676,0.819362,0.335479,0.605436,0.525083,0.506323,0.834086,0.294878,0.960114,0.0236909,0.530582,0.713316,0.509166,0.672089,0.767315,0.0635559,0.826326,0.746839,0.535767,0.457742,0.29819,0.958019,0.0784028,0.388824,0.184904,0.324153,0.699956,0.727301,0.0571907,0.90193,0.343982,0.149303,0.7528,0.908051,0.13693,0.935444,0.0950281,0.285686,0.796663,0.832939,0.476515,0.489173,0.993068,0.305706,0.398768,0.501877,0.561741,0.367869,0.864626,0.453879,0.333958,0.432515,0.101348,0.898437,0.727345,0.425149,0.116516,0.376637,0.794615,0.663891,0.163044,0.626237,0.423983,0.329901,0.644015,0.0455369,0.398288,0.588649,0.138932,0.00362593,0.362607,0.908605,0.981768,0.427242,0.674374,0.407957,0.386701,0.383872,0.0650675,0.0496383,0.476698,0.272089,0.273606,0.193004,0.654109,0.47416,0.56912,0.938197,|0.980648,0.106844,0.0163099,0.0142727,0.146722,0.570982,0.519044,0.614385,0.636532,0.472995,0.582077,0.638443,0.787027,0.723648,0.0758703,0.364198,0.418019,0.518895,0.216424,0.828569,0.469024,0.505812,0.951316,0.119542,0.308802,0.584766,0.409427,0.596831,0.648009,0.243505,0.923527,0.696737,0.867219,0.413482,0.17101,0.242902,0.638988,0.504265,0.744799,0.00540435,0.496322,0.99178,0.848269,0.895077,0.20102,0.970269,0.8973,0.312219,0.561225,0.85048,0.83352,0.585123,0.0592809,0.325857,0.986866,0.435199,0.0508843,0.543579,0.854138,0.516626,0.630306,0.212689,0.100546,0.521055,0.406025,0.952329,0.412496,0.89203,0.890895,0.775956,0.414152,0.903468,0.879294,0.740986,0.793705,0.71998,0.762724,0.379118,0.945853,0.786181,0.0335796,0.711294,0.945668,0.972902,0.393139,0.393878,0.666252,0.130579,0.100335,0.568732,0.30762,0.192377,0.907182,0.152046,0.69655,0.526758,0.639076,0.921461,0.714795,0.93117,0.01464,0.520088,0.415413,0.902654,0.247872,0.748992,0.713392,0.560917,0.39002,0.524282,0.636306,0.217994,0.363795,0.370016,0.306376,0.671976,0.366259,0.338331,0.718378,0.706968,0.864139,0.102138,0.201452,0.14788,0.971112,0.176185,0.497136,0.65763,0.441514,0.453004,0.637195,0.340569,0.281125,0.559486,0.902746,0.977156,0.676469,0.603423,0.133674,0.931182,0.598956,0.0628296,0.545266,0.587218,0.0710766,0.830692,0.483944,0.215262,0.665498,0.23525,0.856347,0.628736,0.841944,0.0310336,0.76345,0.588575,0.825033,0.865565,0.915383,0.508322,0.554639,0.586446,0.0471894,0.459395,0.79144,0.0672149,0.379716,0.323477,0.666293,0.0149334,0.561524,0.506653,0.124765,0.970303,0.452137,0.940099,0.00850385,0.0483872,0.162654,0.00774765,0.133502,0.825337,0.951272,0.60578,0.0662634,0.424076,0.852013,0.654189,0.0405573,0.202367,0.218503,0.0196149,0.547698,0.0648208,0.746032,0.400481,0.836842,0.502353,0.553969,0.924237,0.756284,0.394306,0.512012,0.910185,0.54392,0.688868,0.614453,0.992967,0.780057,0.0919833,0.0444456,0.618151,0.865403,0.571169,0.183937,0.0550103,0.420475,0.818177,0.0590361,0.467174,0.495319,0.917395,0.752009,0.0466814,0.467384,0.392989,0.612274,0.412417,0.483403,0.809764,0.729035,0.884036,0.814696,0.550636,0.254311,0.757756,0.488853,0.0852147,0.396744,0.599344,0.868483,0.82838,0.350359,0.663388,0.547626,0.490189,0.0318344,0.96645,0.98433,0.550797,0.53208,0.254641,0.0144345,0.509351,0.00716466,0.49089,0.94722,0.172627,0.544705,0.788594,0.704467,0.856273,0.199734,0.840029,0.330225,0.301708,0.0888744,0.471638,0.93908,0.279255,0.231016,0.675855,0.206877,0.0635427,0.866338,0.767701,0.0236213,0.803747,0.79135,0.527066,0.759776,0.766508,0.858813,0.337158,0.706509,0.817823,0.850766,0.344149,0.473873,0.400837,0.696321,0.256573,0.126188,0.129359,0.980262,0.3784,0.0791171,0.269212,0.632057,0.741316,0.710717,0.0834112,0.423169,0.158731,0.459138,0.618486,0.0529647,0.575272,0.19811,0.116164,0.523018,0.759222,0.735842,0.463205,0.0448963,0.781746,0.330982,0.679172,0.661522,0.12621,0.750386,0.302273,0.886603,0.140632,0.250941,0.662535,0.0993482,0.688901,0.0780658,0.927507,0.0936428,0.399834,0.554357,0.493392,0.0277568,0.190468,0.55171,0.22896,0.0430167,0.17956,0.898042,0.770896,0.463161,0.0953042,0.939729,0.349209,0.390048,0.292294,0.638064,0.80799,0.319332,0.324945,0.511762,0.653485,0.012591,0.531999,0.229528,0.337335,0.193299,0.526799,0.715638,0.38246,0.140896,0.123946,0.488427,0.0442013,0.634575,0.645607,0.99799,0.595744,0.866207,0.372753,0.23324,0.846943,0.68371,0.831974,0.574328,0.829736,0.243656,0.425709,0.0325063,0.95344,0.0355899,0.0776067,0.244172,0.0735453,0.649298,0.997672,0.222323,0.973978,0.180884,0.179779,0.401888,0.0991254,0.968803,0.759761,0.0200711,0.224793,0.548903,0.253365,0.178953,0.395961,0.0266684,0.494024,0.749618,0.96884,0.703758,0.198005,0.0581272,0.17522,0.912332,0.143275,0.459421,0.838721,0.23804,0.341122,0.370497,0.274728,0.458771,0.635151,0.760583,0.70636,0.403849,0.0881191,0.231686,0.749475,0.0209694,0.336452,0.713846,0.0920208,0.739591,0.57978,0.74606,0.51313,0.532513,0.858929,0.6662,0.393497,0.62259,0.760105,0.568991,0.732005,0.0945359,0.378562,0.440288,0.624402,0.857982,0.850698,0.822515,0.276243,0.424498,0.158289,0.0434884,0.133709,0.764426,0.274467,0.0402799,0.321425,0.356842,0.255454,0.970271,0.433743,0.0474196,0.29163,0.901521,0.467024,0.757523,0.242047,0.876261,0.512005,0.423144,0.765071,0.255733,0.871988,0.990628,0.729541,0.824541,0.837387,0.603298,0.398421,0.159907,0.136362,0.360647,0.619479,0.814832,0.0319167,0.773213,0.857462,0.876226,0.651654,0.173849,0.863658,0.841629,0.538004,0.767701,0.858046,0.987528,0.87087,0.0134941,0.597925,0.349859,0.489955,0.794183,0.599653,0.187278,0.915932,0.268824,0.157324,0.190355,0.0990018,0.260025,0.417057,0.528374,0.585409,0.12023,0.441055,0.937138,0.889532,0.12922,0.0616229,0.65149,0.470361,0.490736,0.935919,0.782395,0.952231,0.731385,0.276345,0.0975116,0.691033,0.0668303,0.924197,0.514664,0.705948,0.50088,0.742562,0.311028,0.59514,0.625562,0.898768,0.152527,0.489889,0.571464,0.497575,0.843202,0.389382,0.649729,0.334795,0.224664,0.476052,0.917474,0.90782,0.503885,0.906796,0.952752,0.907829,0.240835,0.0115153,0.79457,0.299933,0.0540661,0.928859,0.159726,0.0659636,0.682793,0.723407,0.907233,0.325939,0.0928514,0.368631,0.621703,0.148859,0.430568,0.990547,0.183369,0.127205,0.938646,0.363601,0.671216,0.230254,0.943298,0.704038,0.912834,0.225601,0.389718,0.708018,0.817299,0.301104,0.8899,0.70159,0.426588,0.336975,0.780389,0.549833,0.367852,0.251086,0.945443,0.0508257,0.18597,0.0620301,0.421375,0.606391,0.463632,0.430684,0.0742943,0.709144,0.842741,0.692895,0.736892,0.438712,0.1835,0.677636,0.744671,0.744597,0.346862,0.214298,0.687248,0.469809,0.81439,0.535315,0.0866048,0.430266,0.0293655,0.299491,0.18607,0.401955,0.449785,0.238095,0.116963,0.135421,0.464182,0.348447,0.798814,0.814435,0.243662,0.650031,0.420668,0.775141,0.900923,0.40836,0.740107,0.792258,0.395425,0.484489,0.649397,0.750361,0.697703,0.0395261,0.572094,0.93242,0.552169,0.690405,0.0620626,0.88498,0.355567,0.0797684,0.858874,0.696929,0.180835,0.425241,0.515709,0.37223,0.00926214,0.493291,0.261336,0.936644,0.45667,0.478638,0.14401,0.538817,0.649492,0.532813,0.604812,0.563403,0.323347,0.652835,0.528779,0.126719,0.596924,0.41548,0.602686,0.649548,0.923936,0.446006,0.316649,0.482481,0.62056,0.282501,0.499609,0.859649,0.045071,0.13381,0.223668,0.189334,0.262202,0.643357,0.209999,0.535802,0.889841,0.964389,0.97442,0.722016,0.905575,0.046241,0.411008,0.551493,0.606226,0.850169,0.889654,0.57513,0.613202,0.32866,0.864157,0.54836,0.90256,0.836106,0.699029,0.556381,0.789598,0.613256,0.624699,0.621363,0.631818,0.137334,0.0237171,0.600546,0.878122,0.225484,0.639518,0.829572,0.946684,0.770434,0.0156518,0.985485,0.831114,0.539108,0.10516,0.430601,0.697102,0.439012,0.867161,0.0980395,0.578386,0.646938,0.666829,0.0143942,0.525949,0.731531,0.0116843,0.988574,0.446482,0.800272,0.702113,0.0812017,0.665781,0.030852,0.321088,0.790214,0.91845,0.858008,0.413706,0.528213,0.101149,0.574761,0.60445,0.93921,0.552884,0.79461,0.0599216,0.670929,0.870038,0.643142,0.670745,0.662284,0.0646125,0.788129,0.609924,0.620235,0.053022,0.713431,0.958407,0.480889,0.169961,0.809456,0.620303,0.285883,0.348714,0.835351,0.00502455,0.375497,0.981759,0.275277,0.608979,0.719775,0.539051,0.264321,0.659456,0.274221,0.653811,0.107584,0.875067,0.750389,0.634733,0.761319,0.00072217,0.342503,0.569162,0.103062,0.775645,0.496783,0.879439,0.828143,0.0460954,0.123552,0.886319,0.381673,0.174025,0.50696,0.745191,0.0154777,0.55624,0.649484,0.691972,0.141392,0.422831,0.619888,0.761762,0.343441,0.564598,0.847195,0.310739,0.363943,0.505177,0.937699,0.466761,0.69174,0.179209,0.0772842,0.758392,0.551269,0.196045,0.9044,0.730314,0.542675,0.855619,0.497023,0.971122,0.900573,0.731331,0.845373,0.396477,0.630413,0.432312,0.632009,0.649571,0.580049,0.638912,0.604235,0.705272,0.819289,0.766673,0.741941,0.942452,0.854594,0.778395,0.837727,0.33604,0.605646,0.424103,0.685956,0.440074,0.208637,0.240408,0.439181,0.789684,0.928836,0.988669,0.250489,0.547853,0.349246,0.250298,0.807151,0.740521,0.706056,0.605708,0.0977265,0.435667,0.683087,0.897195,0.736047,0.867435,0.0893391,0.682429,0.93956,0.157976,0.990478,0.709725,0.652954,0.011251,0.6221,0.0635216,0.465482,0.310209,0.0807997,0.536401,0.995092,0.654514,0.188986,0.505319,0.879161,0.800088,0.594964,0.0585014,0.783885,0.660673,0.0774637,0.654045,0.414981,0.782522,0.192483,0.111738,0.410423,0.24502,0.841012,0.0981154,0.497053,0.160897,0.632899,0.291159,0.667438,0.987155,0.322532,0.295281,0.364903,0.51168,0.914981,0.248943,0.177003,0.433076,0.739088,0.988119,0.0812427,0.63973,0.936451,0.952224,0.236845,0.384964,0.639192,0.0175007,0.109412,0.560061,0.360745,0.409267,0.639362,0.237158,0.918519,0.567109,0.695704,0.394633,0.820808,0.935957,0.00783163,0.495179,0.154372,0.733252,0.425664,0.401368,0.129603,0.79592,0.649479,0.30012,0.344177,0.0394439,0.635767,0.727139,0.0791149,0.638199,0.680471,0.425012,0.576282,0.165854,0.615511,0.145913,0.848263,0.83926,0.213224,0.774391,0.679339,0.579324,0.466661,0.261327,0.353275,0.0549819,0.0578979,0.713839,0.778737,0.746188,0.855647,0.781857,0.588153,|0.809417,0.140255,0.397179,0.281374,0.892337,0.559619,0.88936,0.256278,0.102652,0.251102,0.65851,0.730174,0.836981,0.429428,0.00940949,0.568813,0.680455,0.415372,0.566113,0.391011,0.948052,0.666133,0.639883,0.552252,0.460605,0.220642,0.348752,0.558349,0.453133,0.746011,0.5629,0.254532,0.999176,0.26762,0.60459,0.404041,0.11217,0.309838,0.217529,0.0695279,0.408911,0.979856,0.0795724,0.367369,0.945684,0.152875,0.629458,0.233633,0.495992,0.445979,0.793326,0.993538,0.335495,0.747451,0.232898,0.679511,0.431954,0.496812,0.765679,0.898251,0.207022,0.128556,0.917917,0.077982,0.700539,0.0394821,0.257183,0.956667,0.877859,0.977467,0.297389,0.564529,0.574544,0.363186,0.275335,0.370416,0.644704,0.600251,0.89481,0.616806,0.979452,0.824149,0.0902821,0.871642,0.955285,0.600684,0.4076,0.502231,0.181446,0.784184,0.908095,0.931393,0.814865,0.0878936,0.406099,0.197783,0.523459,0.794833,0.190621,0.407352,0.94457,0.819109,0.327192,0.136893,0.00177717,0.181758,0.472956,0.142546,0.700039,0.350739,0.460056,0.292656,0.0334579,0.692598,0.543114,0.871816,0.0197747,0.782233,0.337475,0.164633,0.803366,0.23266,0.736505,0.950372,0.156137,0.929,0.565918,0.902212,0.250185,0.0644068,0.1019,0.292045,0.795231,0.959036,0.796254,0.306565,0.447968,0.850427,0.871838,0.724648,0.800613,0.525202,0.583212,0.208701,0.473616,0.0495768,0.254251,0.855539,0.574158,0.965805,0.434124,0.271354,0.65661,0.47491,0.19189,0.59482,0.371568,0.771093,0.570755,0.66214,0.634115,0.549492,0.513254,0.0316101,0.906611,0.346769,0.308006,0.894354,0.736755,0.0133933,0.0469646,0.208776,0.251203,0.629216,0.567398,0.410045,0.0200373,0.983589,0.700725,0.237475,0.791704,0.982762,0.0291858,0.613638,0.412568,0.875677,0.614611,0.292384,0.0651645,0.720295,0.822436,0.643795,0.67074,0.0794984,0.738697,0.315192,0.535281,0.0348939,0.37797,0.977039,0.467457,0.0327569,0.304055,0.00773114,0.838485,0.328549,0.517449,0.48875,0.0762786,0.578932,0.724476,0.694186,0.212118,0.517545,0.445893,0.60219,0.327028,0.6055,0.259128,0.527338,0.608134,0.986107,0.355003,0.730851,0.848939,0.523229,0.77484,0.909196,0.535693,0.998741,0.206322,0.429672,0.738448,0.627462,0.131583,0.0450249,0.444403,0.87833,0.00152642,0.423695,0.197715,0.171048,0.604617,0.455225,0.247427,0.898791,0.763529,0.883564,0.647548,0.942905,0.284644,0.343136,0.887987,0.498518,0.247113,0.656059,0.363918,0.610454,0.594903,0.00498199,0.697968,0.477951,0.35414,0.0803332,0.694364,0.0907758,0.966888,0.250074,0.497005,0.257433,0.893076,0.217257,0.960021,0.789198,0.545793,0.608917,0.0474172,0.349706,0.410677,0.0686272,0.879941,0.208114,0.884448,0.70516,0.392019,0.977623,0.577538,0.472299,0.54657,0.46962,0.460113,0.281135,0.15385,0.0688506,0.864567,0.850228,0.248039,0.870365,0.230536,0.856374,0.822191,0.970354,0.728888,0.352124,0.538519,0.135663,0.958468,0.468127,0.869642,0.914562,0.130192,0.20827,0.287608,0.945678,0.741244,0.135901,0.0115761,0.0851778,0.385759,0.461677,0.152006,0.849957,0.265037,0.676154,0.145276,0.142105,0.245806,0.0561586,0.688388,0.56028,0.0816978,0.255985,0.984568,0.00482821,0.650012,0.94633,0.187378,0.817886,0.0411078,0.590113,0.143837,0.574954,0.0329152,0.521131,0.818452,0.989986,0.967893,0.507825,0.776637,0.417362,0.11087,0.429136,0.0744816,0.300313,0.00283492,0.764296,0.276125,0.743403,0.619584,0.695209,0.267441,0.902153,0.91681,0.547912,0.34059,0.402668,0.0897136,0.564262,0.551893,0.281523,0.785801,0.963711,0.177217,0.196214,0.521269,0.183346,0.223337,0.562577,0.841197,0.491682,0.169531,0.259637,0.842358,0.273248,0.870631,0.869969,0.218156,0.313401,0.955764,0.0360485,0.4064,0.777043,0.17282,0.214098,0.544776,0.487922,0.359801,0.141505,0.186108,0.573872,0.0580797,0.844467,0.628962,0.455825,0.191537,0.41631,0.608039,0.209649,0.453645,0.151539,0.844502,0.066784,0.693313,0.915215,0.437745,0.0685709,0.270312,0.600187,0.757611,0.681001,0.74853,0.813976,0.140352,0.869494,0.331703,0.905545,0.575245,0.950425,0.83988,0.732826,0.711545,0.784862,0.587608,0.933619,0.781913,0.00783288,0.591788,0.502372,0.965333,0.171753,0.845281,0.00469887,0.187429,0.606849,0.0543635,0.369196,0.914756,0.844648,0.52748,0.56921,0.452323,0.766711,0.527683,0.883176,0.245932,0.144399,0.313837,0.17571,0.841992,0.248515,0.860166,0.872725,0.65841,0.015911,0.0200347,0.3951,0.257857,0.578359,0.490663,0.496675,0.48957,0.787302,0.482744,0.347602,0.663377,0.560262,0.41832,0.0886586,0.107178,0.889187,0.164609,0.631382,0.485943,0.722669,0.315646,0.740243,0.26728,0.799156,0.51339,0.356063,0.803527,0.93695,0.449215,0.0847247,0.512062,0.116903,0.0870017,0.688537,0.403087,0.866593,0.974943,0.674113,0.181797,0.832384,0.880417,0.884833,0.249207,0.137963,0.899148,0.769538,0.405538,0.626224,0.877666,0.607592,0.893192,0.42097,0.541821,0.183094,0.320444,0.965925,0.545437,0.307044,0.272055,0.456212,0.913954,0.891135,0.565091,0.501712,0.944973,0.167566,0.443256,0.678825,0.969873,0.136569,0.25149,0.754341,0.901417,0.811283,0.715981,0.889703,0.631944,0.977499,0.708961,0.754563,0.795575,0.761728,0.492207,0.206948,0.183526,0.317547,0.978294,0.479945,0.871312,0.801417,0.586815,0.215062,0.303696,0.700697,0.818039,0.864368,0.811969,0.377882,0.385026,0.221367,0.0457113,0.319411,0.33939,0.992931,0.0386282,0.950431,0.241403,0.69549,0.430208,0.650792,0.456051,0.875412,0.25593,0.264918,0.178775,0.934422,0.670824,0.602033,0.457391,0.173266,0.84377,0.0949004,0.335372,0.00418562,0.687668,0.538792,0.654289,0.00242102,0.359529,0.597274,0.376726,0.738282,0.382109,0.105678,0.860509,0.46986,0.999342,0.384318,0.950713,0.698194,0.665881,0.330202,0.980857,0.473484,0.337211,0.881448,0.499816,0.358169,0.516502,0.545846,0.959467,0.61224,0.433128,0.0775445,0.993067,0.157486,0.682292,0.13153,0.393992,0.730512,0.284077,0.921589,0.260163,0.630695,0.0213368,0.555873,0.29209,0.514204,0.975624,0.0451919,0.372734,0.5255,0.744466,0.355644,0.530839,0.576962,0.00990963,0.60271,0.381174,0.780178,0.708028,0.747669,0.122033,0.225606,0.855151,0.528995,0.72355,0.181324,0.293786,0.19065,0.791457,0.827723,0.258635,0.419518,0.187312,0.583082,0.217794,0.259343,0.169018,0.892053,0.487506,0.433461,0.916871,0.314251,0.12315,0.86212,0.874458,0.333473,0.679473,0.132247,0.498413,0.768232,0.324847,0.223958,0.904985,0.667886,0.163516,0.0276616,0.195586,0.904855,0.752678,0.216737,0.683953,0.334327,0.0710009,0.401831,0.000174642,0.135222,0.521164,0.506748,0.894177,0.289532,0.0799771,0.670239,0.652158,0.375914,0.13136,0.207721,0.186473,0.719862,0.0496454,0.436854,0.733779,0.186324,0.669787,0.546337,0.201956,0.257275,0.139456,0.357593,0.963133,0.696437,0.582846,0.690028,0.789837,0.769785,0.914543,0.723946,0.0559715,0.835752,0.702864,0.237811,0.261058,0.928087,0.785088,0.30592,0.392233,0.401557,0.518838,0.841721,0.822661,0.452837,0.576648,0.914657,0.678309,0.378131,0.523863,0.600318,0.173946,0.323456,0.0618946,0.831866,0.901221,0.509781,0.999087,0.446432,0.785872,0.862041,0.688675,0.151972,0.657721,0.291557,0.847538,0.868671,0.542127,0.332923,0.895683,0.0074262,0.731768,0.152505,0.581143,0.0448769,0.819982,0.978358,0.523004,0.463831,0.765249,0.07929,0.489547,0.255507,0.667962,0.769448,0.862017,0.907158,0.0355203,0.300238,0.956448,0.411832,0.597238,0.17576,0.462985,0.800296,0.979968,0.880697,0.566661,0.678654,0.0299128,0.590644,0.011649,0.904448,0.86684,0.683816,0.619021,0.905106,0.48433,0.517774,0.0911326,0.973726,0.382156,0.686328,0.217363,0.102844,0.332653,0.930337,0.88995,0.850908,0.311568,0.610054,0.798841,0.707431,0.540474,0.643904,0.934463,0.591273,0.285254,0.254321,0.178091,0.35525,0.988552,0.72393,0.20775,0.533464,0.52796,0.832088,0.131151,0.410594,0.400178,0.31142,0.521766,0.756679,0.708408,0.768647,0.252254,0.631807,0.469039,0.770107,0.788571,0.41106,0.435722,0.82927,0.153748,0.048238,0.417746,0.784508,0.801297,0.836983,0.329796,0.421011,0.492909,0.925186,0.893121,0.423956,0.529661,0.770559,0.757406,0.987431,0.652368,0.333683,0.561258,0.497127,0.188847,0.753567,0.525731,0.695107,0.882612,0.650691,0.302113,0.984942,0.8754,0.160739,0.926831,0.544884,0.0337901,0.598549,0.431351,0.0960566,0.516732,0.902661,0.424027,0.812237,0.878935,0.383909,0.626124,0.80731,0.345444,0.233555,0.0778125,0.986823,0.559739,0.458106,0.0424064,0.501752,0.355324,0.17039,0.937696,0.391854,0.252094,0.350986,0.0456417,0.141977,0.427844,0.508675,0.015154,0.9673,0.420084,0.618175,0.733282,0.779086,0.514323,0.0301204,0.441023,0.196957,0.588414,0.850874,0.0712661,0.237974,0.546981,0.384298,0.470531,0.0082826,0.188476,0.979408,0.245687,0.857693,0.325541,0.999188,0.139543,0.744516,0.422942,0.331797,0.726525,0.430661,0.0268941,0.233898,0.111017,0.984173,0.676735,0.836986,0.634407,0.736724,0.405234,0.0907924,0.87317,0.546757,0.879297,0.282486,0.645672,0.699704,0.192148,0.841599,0.358172,0.0752966,0.990639,0.244415,0.603529,0.832098,0.269476,0.803571,0.817422,0.58687,0.661438,0.673181,0.726096,0.685404,0.403369,0.510067,0.82335,0.853881,0.114065,0.129134,0.0335307,0.650801,0.784769,0.557971,0.529316,0.53726,0.979593,0.759156,0.329715,0.0982848,0.307475,0.956806,0.778856,0.457607,0.648761,0.0203356,0.254466,0.252721,0.183328,0.510325,0.805815,0.204275,0.369052,0.162497,0.30678,0.094826,|0.138878,0.496783,0.403449,0.130641,0.0524413,0.0931726,0.503395,0.953687,0.00281096,0.76312,0.524122,0.984604,0.102309,0.155825,0.115169,0.554981,0.753564,0.106921,0.786119,0.946756,0.360143,0.685937,0.322824,0.681106,0.720884,0.00558388,0.86242,0.510769,0.384011,0.502166,0.400252,0.352706,0.233908,0.865456,0.697973,0.150436,0.864705,0.805868,0.244966,0.123289,0.142002,0.194024,0.38001,0.373312,0.0123231,0.0177459,0.367129,0.115072,0.638278,0.677641,0.0663213,0.455663,0.520438,0.224661,0.00659889,0.193806,0.714742,0.885303,0.353219,0.154086,0.165136,0.54129,0.302312,0.259971,0.0260055,0.124623,0.996047,0.665605,0.402973,0.247988,0.197614,0.806185,0.422653,0.998993,0.788399,0.112096,0.534005,0.944209,0.825819,0.77729,0.392915,0.914909,0.981142,0.720754,0.311529,0.983444,0.283087,0.849666,0.907748,0.12922,0.49007,0.119569,0.490999,0.669003,0.174368,0.160903,0.228063,0.0635593,0.163522,0.804438,0.621139,0.318258,0.902507,0.00970185,0.548189,0.585028,0.298322,0.182114,0.502482,0.952885,0.646545,0.260527,0.825062,0.527391,0.281581,0.195505,0.678079,0.267838,0.494107,0.820397,0.683636,0.0414357,0.156325,0.584205,0.985147,0.374386,0.789832,0.059189,0.753219,0.608935,0.207902,0.329367,0.428233,0.966018,0.786764,0.732454,0.261634,0.0857192,0.38502,0.886621,0.264554,0.510948,0.176847,0.381819,0.696647,0.571368,0.588448,0.00313514,0.181727,0.244081,0.595642,0.970691,0.0830545,0.488143,0.515864,0.898362,0.200658,0.431622,0.773831,0.772504,0.340854,0.321952,0.954271,0.387919,0.244885,0.17945,0.623455,0.100185,0.444951,0.582574,0.507468,0.34399,0.546658,0.317393,0.144053,0.423904,0.676951,0.836129,0.368008,0.376803,0.320512,0.452696,0.831198,0.713467,0.707024,0.128354,0.256131,0.392049,0.443887,0.340377,0.644237,0.152073,0.350961,0.768052,0.50723,0.993172,0.172059,0.827455,0.533822,0.617526,0.429638,0.699954,0.22739,0.244356,0.12311,0.0853946,0.240001,0.212851,0.837722,0.284461,0.975366,0.677226,0.902969,0.3976,0.220061,0.510272,0.993213,0.945739,0.213737,0.171714,0.692923,0.492426,0.096735,0.510984,0.197851,0.100866,0.536885,0.462407,0.542594,0.976097,0.622068,0.0445013,0.602449,0.149046,0.601891,0.81454,0.0899968,0.577412,0.545287,0.271039,0.743627,0.914633,0.443264,0.870682,0.528271,0.597977,0.0690877,0.159286,0.467578,0.0269216,0.587733,0.669222,0.0390478,0.847088,0.790922,0.324025,0.766057,0.866253,0.329262,0.954841,0.796838,0.0850959,0.871542,0.756457,0.923232,0.45907,0.354278,0.932185,0.132232,0.582971,0.820703,0.0555925,0.179897,0.581845,0.30958,0.259569,0.680796,0.310629,0.0661317,0.76471,0.263688,0.062021,0.00294822,0.279211,0.584976,0.288254,0.2186,0.0658072,0.0948208,0.590542,0.1001,0.952215,0.190717,0.915556,0.155396,0.586206,0.500306,0.304754,0.287372,0.24503,0.625799,0.516791,0.00885218,0.435284,0.512494,0.185824,0.367172,0.97745,0.411587,0.72444,0.407264,0.790288,0.731132,0.803845,0.678357,0.866681,0.098944,0.118986,0.590866,0.427893,0.158685,0.0133857,0.924848,0.421275,0.0787849,0.170105,0.683165,0.616784,0.212907,0.131911,0.426955,0.108066,0.325656,0.0964735,0.476225,0.620269,0.221979,0.308841,0.269883,0.500312,0.924126,0.752066,0.129101,0.106264,0.446077,0.356929,0.872797,0.0705116,0.961942,0.851995,0.448216,0.337062,0.70802,0.949042,0.956789,0.859195,0.65015,0.057671,0.877379,0.71308,0.541873,0.107866,0.192165,0.113218,0.978581,0.607059,0.24358,0.508679,0.422218,0.902256,0.459631,0.0087316,0.72832,0.741159,0.317922,0.756555,0.44862,0.211565,0.286883,0.326369,0.775555,0.11296,0.513552,0.505819,0.58752,0.471176,0.520977,0.644742,0.950993,0.477661,0.553682,0.345564,0.954444,0.111692,0.737146,0.378584,0.824273,0.0147808,0.460669,0.439359,0.0134817,0.986052,0.650269,0.192209,0.227051,0.344329,0.641613,0.454078,0.930373,0.455724,0.601554,0.190955,0.941735,0.0789397,0.893268,0.607254,0.433506,0.932706,0.00971675,0.59051,0.0118653,0.345894,0.136101,0.449122,0.350115,0.532641,0.698191,0.15127,0.169683,0.477836,0.370063,0.607326,0.591035,0.668573,0.926639,0.245461,0.12967,0.207997,0.68156,0.295367,0.0757309,0.849368,0.351479,0.960236,0.844917,0.877772,0.0619783,0.750615,0.728094,0.79359,0.639228,0.786145,0.269829,0.107665,0.030679,0.675637,0.114888,0.837584,0.0294158,0.38703,0.219154,0.716715,0.869232,0.682851,0.627345,0.843978,0.189809,0.515936,0.33809,0.601563,0.905707,0.977047,0.762999,0.603746,0.429451,0.840552,0.106522,0.790128,0.852179,0.034724,0.0663235,0.0706245,0.492024,0.0912736,0.225223,0.839552,0.499622,0.739215,0.318038,0.726411,0.899969,0.828161,0.619051,0.925766,0.435853,0.786226,0.0434616,0.2865,0.170426,0.800292,0.11514,0.991699,0.457635,0.207225,0.732172,0.456879,0.582635,0.503918,0.504158,0.601519,0.751359,0.641208,0.356736,0.58237,0.92042,0.450992,0.475768,0.145769,0.357931,0.65926,0.295062,0.30295,0.863488,0.618392,0.996017,0.206177,0.318498,0.81538,0.0727882,0.502185,0.410253,0.854991,0.183107,0.0508134,0.434232,0.634805,0.180823,0.199135,0.285507,0.0583636,0.0223655,0.885104,0.942999,0.770719,0.659188,0.415726,0.298684,0.650838,0.815753,0.0571807,0.569539,0.845246,0.396955,0.379777,0.31122,0.0284712,0.366094,0.59706,0.608134,0.161052,0.157423,0.715528,0.668278,0.206295,0.864232,0.838408,0.488902,0.635386,0.688587,0.919382,0.335882,0.074535,0.766219,0.104308,0.914992,0.247363,0.37145,0.854745,0.734413,0.55232,0.51658,0.134195,0.432783,0.603948,0.27276,0.765357,0.750106,0.833204,0.784458,0.693669,0.171308,0.514273,0.311452,0.27153,0.360052,0.0823138,0.789187,0.486229,0.077457,0.832501,0.369195,0.924659,0.979992,0.414981,0.337745,0.349961,0.0343202,0.872741,0.183568,0.823905,0.823637,0.93851,0.287027,0.909585,0.890658,0.305885,0.69976,0.513847,0.473746,0.329823,0.48727,0.152388,0.130825,0.78137,0.815981,0.918125,0.361656,0.696251,0.987351,0.727298,0.115605,0.173483,0.550877,0.783375,0.500924,0.771614,0.636495,0.624883,0.560431,0.10879,0.290686,0.813174,0.0722733,0.541473,0.628309,0.251526,0.752027,0.389497,0.0161145,0.132112,0.520131,0.652463,0.226359,0.915035,0.996863,0.205487,0.256034,0.0171294,0.92159,0.780659,0.836087,0.639307,0.723743,0.473926,0.429426,0.431337,0.485468,0.123516,0.243207,0.69965,0.333696,0.0624399,0.399132,0.290325,0.392827,0.0522099,0.989497,0.952724,0.93991,0.474229,0.503342,0.806948,0.249383,0.863545,0.270893,0.715365,0.491418,0.500121,0.273912,0.283978,0.561432,0.309653,0.680045,0.817771,0.688547,0.129218,0.570182,0.149344,0.134125,0.817555,0.261338,0.90717,0.207469,0.951789,0.0797775,0.752358,0.569623,0.279887,0.831656,0.0914423,0.297536,0.883274,0.980247,0.125877,0.388842,0.664595,0.632006,0.467461,0.953193,0.443426,0.325998,0.181341,0.419977,0.57238,0.507625,0.955679,0.743993,0.716926,0.0886985,0.182561,0.318116,0.406417,0.885853,0.978,0.0349226,0.306954,0.672357,0.163535,0.777799,0.658307,0.798901,0.497403,0.576271,0.824072,0.750681,0.000155389,0.933651,0.272735,0.363421,0.221911,0.671072,0.540278,0.819605,0.55467,0.443163,0.400033,0.950694,0.0223904,0.0891678,0.62694,0.853986,0.650104,0.357826,0.136983,0.661158,0.210993,0.374946,0.277642,0.359121,0.306672,0.0539257,0.303591,0.356146,0.955077,0.955043,0.90247,0.716159,0.402691,0.712313,0.487682,0.379457,0.504054,0.539799,0.336276,0.0693736,0.523519,0.432226,0.944139,0.341478,0.0177177,0.983843,0.753641,0.0942371,0.928094,0.474114,0.679148,0.106082,0.134185,0.1043,0.117291,0.593319,0.419818,0.664718,0.772661,0.452036,0.764809,0.97507,0.788745,0.457037,0.777083,0.0920593,0.181975,0.191828,0.0740373,0.475899,0.545974,0.993765,0.516307,0.940938,0.710778,0.92318,0.323995,0.455808,0.857167,0.912596,0.12147,0.98469,0.343499,0.850929,0.495124,0.186829,0.434191,0.240622,0.795847,0.10002,0.246122,0.0579423,0.164854,0.428325,0.728227,0.0401559,0.536974,0.922047,0.913316,0.748461,0.0165048,0.730736,0.631655,0.773114,0.129641,0.744071,0.358771,0.357798,0.621892,0.993396,0.905536,0.282198,0.170635,0.647133,0.912061,0.509156,0.658871,0.0601305,0.778205,0.539371,0.650187,0.231793,0.20731,0.731137,0.242464,0.475687,0.131276,0.618605,0.274462,0.631764,0.542474,0.50313,0.449749,0.714743,0.190794,0.224334,0.689189,0.98055,0.0508775,0.734732,0.89896,0.987901,0.834238,0.606623,0.0153688,0.906766,0.611455,0.573653,0.390182,0.047632,0.54767,0.912093,0.620949,0.841034,0.254943,0.797855,0.532118,0.181621,0.903872,0.936313,0.0392802,0.204318,0.5421,0.620489,0.60791,0.575447,0.588132,0.32129,0.217914,0.941101,0.0134872,0.84059,0.645265,0.189738,0.284352,0.48498,0.0123186,0.212592,0.370176,0.524743,0.486832,0.315037,0.928976,0.763654,0.684092,0.414623,0.341964,0.101018,0.684388,0.372231,0.992807,0.785191,0.219147,0.328052,0.57745,0.423652,0.918058,0.43527,0.242493,0.0995125,0.147289,0.825086,0.428201,0.370561,0.168367,0.962559,0.969057,0.185013,0.756598,0.721624,0.722567,0.48132,0.488981,0.426581,0.747359,0.719318,0.0698025,0.666232,0.132315,0.285797,0.438592,0.460716,0.94204,0.431241,0.479766,0.32937,0.199297,0.43059,0.0990271,0.00396657,0.317859,0.258393,0.660961,0.058083,0.01286,0.20484,0.860264,0.628463,0.820174,0.850078,0.691584,0.307792,0.262976,0.664077,0.889042,0.39266,0.609613,0.375403,0.767872,0.425004,0.973139,0.659235,0.677459,0.114317,0.559661,|0.631634,0.21258,0.64082,0.755849,0.200064,0.983339,0.502072,0.299881,0.230074,0.234611,0.528633,0.482196,0.125193,0.535239,0.973795,0.728809,0.535838,0.913121,0.303874,0.0961402,0.464078,0.308472,0.854651,0.219412,0.825772,0.386746,0.580634,0.328763,0.563873,0.581885,0.991385,0.719895,0.0844984,0.110292,0.440517,0.294833,0.965984,0.598085,0.500803,0.862285,0.413197,0.733659,0.653441,0.986125,0.72667,0.793282,0.494929,0.0965753,0.235651,0.867079,0.955082,0.417398,0.985715,0.0313814,0.464537,0.357232,0.764747,0.319049,0.632792,0.25517,0.94483,0.243368,0.355595,0.793111,0.357001,0.125084,0.314169,0.180581,0.245854,0.491531,0.983745,0.255825,0.672911,0.104539,0.52249,0.851682,0.581444,0.296251,0.96615,0.297937,0.189285,0.787277,0.0304736,0.916252,0.340073,0.51085,0.284803,0.102051,0.435366,0.393111,0.878564,0.825381,0.223382,0.0623638,0.359005,0.257091,0.609819,0.609113,0.321988,0.465915,0.0872046,0.591649,0.309583,0.799239,0.466132,0.864412,0.0990332,0.687059,0.698186,0.9663,0.312791,0.0132959,0.988225,0.954012,0.902326,0.389485,0.262492,0.0559587,0.188594,0.874437,0.360842,0.419096,0.621877,0.917156,0.774957,0.105909,0.532208,0.196173,0.971012,0.934679,0.995066,0.998478,0.523326,0.500748,0.810335,0.650478,0.487474,0.826863,0.108569,0.443753,0.288926,0.444137,0.307412,0.0390589,0.197119,0.666206,0.183007,0.962571,0.265686,0.651067,0.00612557,0.476575,0.97086,0.413107,0.514683,0.819616,0.061056,0.421509,0.400211,0.617531,0.950933,0.818467,0.305615,0.903163,0.0317894,0.841346,0.578572,0.552892,0.0397974,0.934469,0.208947,0.8532,0.532223,0.842439,0.076629,0.127834,0.509935,0.381915,0.666839,0.98185,0.206828,0.636451,0.543769,0.759349,0.869292,0.396191,0.799292,0.408916,0.776411,0.706013,0.210278,0.605379,0.930709,0.396165,0.548688,0.305189,0.242491,0.0272213,0.720728,0.562997,0.075995,0.997872,0.929664,0.34462,0.49299,0.474687,0.408968,0.73591,0.272811,0.0397353,0.953307,0.371847,0.939267,0.279428,0.191605,0.266534,0.0491424,0.739746,0.927811,0.248427,0.781558,0.0619911,0.233012,0.492985,0.955304,0.864615,0.581848,0.883299,0.850475,0.371726,0.42818,0.218989,0.662378,0.849091,0.732809,0.172318,0.731643,0.196048,0.229383,0.974779,0.0852088,0.813361,0.477164,0.870476,0.476116,0.955967,0.988732,0.416029,0.718496,0.471141,0.030903,0.366135,0.325562,0.375988,0.113197,0.703836,0.0625478,0.0868189,0.126142,0.0963404,0.0492468,0.4,0.53033,0.0954218,0.50518,0.175367,0.740032,0.556649,0.841647,0.0859075,0.42699,0.888594,0.401031,0.695671,0.863743,0.125541,0.651242,0.483971,0.792885,0.970144,0.255702,0.909947,0.202594,0.452237,0.808031,0.864913,0.758872,0.748859,0.0926317,0.914752,0.257304,0.29195,0.179186,0.956111,0.828084,0.75062,0.910535,0.693572,0.794733,0.616625,0.701256,0.113838,0.990498,0.495193,0.781811,0.365759,0.956424,0.826403,0.218842,0.383292,0.204451,0.396946,0.937283,0.913987,0.226431,0.390755,0.282745,0.993003,0.725792,0.0173995,0.827356,0.579179,0.349517,0.0926995,0.966426,0.128459,0.365369,0.707399,0.0807018,0.213483,0.0373006,0.132844,0.300139,0.827367,0.899203,0.67174,0.414316,0.534897,0.12254,0.802048,0.380101,0.879359,0.740722,0.155719,0.167356,0.646779,0.153973,0.223522,0.0472091,0.166137,0.842949,0.45098,0.0987721,0.309423,0.0084486,0.678322,0.280182,0.775607,0.693022,0.44507,0.943524,0.652628,0.63055,0.380735,0.573434,0.568758,0.536796,0.780013,0.760618,0.0243659,0.921562,0.463957,0.823761,0.685491,0.406889,0.311025,0.871617,0.474213,0.125254,0.653417,0.618895,0.462713,0.190701,0.49472,0.952846,0.148377,0.0978172,0.0809206,0.0136365,0.2237,0.268238,0.874516,0.19623,0.468274,0.55167,0.594268,0.371832,0.602217,0.929781,0.509985,0.855592,0.671027,0.12119,0.355078,0.416317,0.762128,0.640895,0.459213,0.664733,0.950495,0.329787,0.0663816,0.309166,0.468689,0.363505,0.431588,0.249815,0.741308,0.14411,0.482852,0.128286,0.638308,0.0879931,0.115389,0.805969,0.530483,0.583463,0.709897,0.614705,0.707768,0.945735,0.0442843,0.442206,0.0135846,0.0998952,0.342689,0.177182,0.179606,0.801781,0.45308,0.921284,0.0990428,0.7288,0.368449,0.320998,0.773684,0.205519,0.889331,0.651382,0.994126,0.0369549,0.132213,0.828746,0.281687,0.490129,0.321875,0.17734,0.0432821,0.346846,0.736524,0.801505,0.362804,0.974711,0.595409,0.928562,0.365099,0.334537,0.166645,0.9189,0.921473,0.976077,0.347946,0.249178,0.097207,0.502653,0.0513453,0.0405006,0.952083,0.510063,0.905556,0.615938,0.448797,0.645776,0.134579,0.80239,0.961992,0.173482,0.956967,0.246164,0.803396,0.814558,0.905946,0.454597,0.940073,0.989811,0.665091,0.941782,0.222749,0.279915,0.0494764,0.177147,0.858366,0.730861,0.32568,0.327447,0.473795,0.970789,0.113572,0.657288,0.254612,0.377608,0.338,0.763024,0.440536,0.448822,0.108738,0.829138,0.0759737,0.86949,0.309403,0.441883,0.798536,0.703012,0.600959,0.600733,0.219504,0.166803,0.374796,0.298362,0.519767,0.95033,0.157295,0.0327502,0.0594917,0.339717,0.753191,0.671559,0.566534,0.587536,0.793617,0.518125,0.552788,0.583297,0.0958858,0.463743,0.795792,0.183385,0.425451,0.10206,0.388654,0.0427526,0.574229,0.297457,0.0553592,0.746875,0.450737,0.369172,0.593112,0.185484,0.636814,0.0246582,0.370688,0.635357,0.897936,0.533904,0.429237,0.680004,0.0287175,0.773221,0.377535,0.603895,0.606423,0.678664,0.0551031,0.932068,0.588419,0.967667,0.191383,0.268257,0.0557683,0.876637,0.202588,0.353902,0.771695,0.516668,0.58867,0.413153,0.0717757,0.718496,0.814578,0.570199,0.901667,0.711852,0.14278,0.372581,0.771871,0.131444,0.864608,0.6483,0.609683,0.183991,0.764622,0.104324,0.744702,0.886084,0.539553,0.557329,0.582462,0.43947,0.347116,0.931419,0.0193641,0.0466595,0.309487,0.553962,0.711351,0.317158,0.345832,0.0378421,0.738557,0.380957,0.493527,0.718864,0.834688,0.24604,0.613998,0.384086,0.225572,0.30927,0.00982332,0.115681,0.315489,0.223456,0.683721,0.737346,0.22665,0.758493,0.469914,0.708182,0.237695,0.150136,0.358924,0.563512,0.119189,0.522143,0.642649,0.19644,0.465434,0.311927,0.661247,0.500445,0.404842,0.746436,0.026321,0.100446,0.104935,0.716076,0.339452,0.682888,0.671943,0.587802,0.0865759,0.0288474,0.450281,0.416231,0.98062,0.347857,0.799801,0.505949,0.880709,0.199301,0.23899,0.969546,0.523416,0.0919691,0.780878,0.0526714,0.971734,0.154453,0.834236,0.0451607,0.657946,0.409366,0.435978,0.176404,0.0311368,0.232354,0.148375,0.29924,0.141799,0.538005,0.552663,0.836056,0.830147,0.154035,0.315751,0.294104,0.839354,0.801181,0.555238,0.579863,0.0567784,0.998391,0.203911,0.75645,0.828752,0.209932,0.415778,0.111518,0.529577,0.479765,0.22457,0.428413,0.714256,0.19226,0.519847,0.921174,0.898288,0.131819,0.331945,0.9968,0.498438,0.145702,0.637315,0.275689,0.520566,0.652557,0.32259,0.208186,0.296161,0.443725,0.232361,0.626791,0.899151,0.0781395,0.727367,0.130916,0.494434,0.520069,0.919271,0.86214,0.332866,0.0889778,0.250227,0.437326,0.964013,0.931866,0.75166,0.685249,0.647086,0.412848,0.876878,0.126338,0.931346,0.528166,0.748698,0.0304247,0.351811,0.173078,0.194515,0.235869,0.494842,0.296709,0.146563,0.1897,0.487432,0.598723,0.169355,0.535628,0.420839,0.30784,0.452325,0.125414,0.428872,0.683603,0.87894,0.610815,0.209196,0.323495,0.48736,0.604447,0.655161,0.832989,0.123924,0.458567,0.934471,0.163648,0.235384,0.549068,0.12696,0.403135,0.790607,0.723133,0.0777163,0.518486,0.986135,0.0760794,0.346557,0.53763,0.556509,0.0286455,0.343988,0.412405,0.652005,0.606749,0.599911,0.397477,0.611701,0.623,0.953766,0.00718027,0.732802,0.240126,0.13376,0.783718,0.633175,0.378694,0.566066,0.872677,0.000708997,0.829817,0.539126,0.539854,0.137222,0.30761,0.27584,0.146056,0.866419,0.787135,0.86096,0.807645,0.254438,0.71716,0.870421,0.936633,0.0187637,0.839685,0.370616,0.509409,0.381084,0.519031,0.503677,0.326998,0.32054,0.882468,0.180202,0.645832,0.638753,0.855973,0.576538,0.460076,0.845397,0.395726,0.56759,0.994879,0.204939,0.7199,0.991252,0.606047,0.41712,0.603071,0.0129831,0.627353,0.130326,0.371741,0.579117,0.345018,0.152915,0.889736,0.572686,0.884491,0.0537569,0.163154,0.431272,0.219053,0.967449,0.642823,0.731237,0.0470749,0.819345,0.268927,0.625837,0.178595,0.87753,0.27399,0.678093,0.310545,0.170885,0.107488,0.942855,0.252149,0.37294,0.853918,0.311149,0.88124,0.26962,0.942339,0.403773,0.402016,0.0383645,0.329013,0.0236263,0.0284361,0.408281,0.323398,0.89262,0.98755,0.0595649,0.720746,0.707573,0.739242,0.314521,0.531518,0.637584,0.301455,0.138602,0.812329,0.10578,0.0984117,0.108786,0.910864,0.160386,0.284441,0.150306,0.598022,0.950633,0.768989,0.850203,0.502577,0.848467,0.153424,0.561137,0.178423,0.147104,0.328455,0.84507,0.825521,0.041346,0.548247,0.948407,0.900828,0.78523,0.516023,0.789229,0.929354,0.580303,0.765411,0.479849,0.5601,0.470484,0.935888,0.659186,0.526988,0.923553,0.581195,0.136311,0.755997,0.259372,0.937506,0.586456,0.682299,0.211381,0.552624,0.598245,0.535856,0.149021,0.730109,0.49084,0.981524,0.610706,0.302359,0.159252,0.227065,0.862814,0.302173,0.777467,0.476802,0.870092,0.962967,0.219153,0.0132753,0.0318205,0.208262,0.110139,0.7019,0.576501,0.112796,0.884967,0.170366,0.106722,0.157236,0.748538,0.912233,0.419881,0.720461,0.816187,0.780634,0.421116,0.761466,0.201256,|0.0912108,0.490877,0.277684,0.324599,0.379796,0.762258,0.347224,0.848528,0.724185,0.415467,0.845979,0.398778,0.929931,0.513298,0.366118,0.0327311,0.769666,0.426944,0.847098,0.289734,0.618841,0.0864486,0.553058,0.475355,0.0489752,0.218474,0.598768,0.763005,0.799873,0.308145,0.221212,0.550011,0.192694,0.263422,0.231544,0.775884,0.195178,0.475293,0.998706,0.469535,0.944777,0.402732,0.669128,0.719581,0.346923,0.990105,0.215817,0.538898,0.989261,0.499389,0.179045,0.779305,0.202534,0.0495499,0.976598,0.591209,0.225048,0.700229,0.85808,0.259357,0.486305,0.185768,0.99252,0.0123705,0.022325,0.295632,0.108578,0.943971,0.377291,0.190752,0.646106,0.932162,0.770418,0.114378,0.311817,0.352285,0.637617,0.609116,0.725212,0.496631,0.090736,0.766623,0.378066,0.200134,0.162541,0.441052,0.923241,0.118465,0.972669,0.622937,0.147288,0.207922,0.684109,0.725504,0.768013,0.0150542,0.191637,0.962953,0.0472814,0.985423,0.665335,0.374636,0.887942,0.941538,0.215656,0.349254,0.296174,0.746198,0.973337,0.490511,0.571255,0.224225,0.950644,0.973731,0.0832349,0.544539,0.90407,0.487365,0.405035,0.89182,0.296683,0.232574,0.171197,0.575773,0.15265,0.00272447,0.785213,0.162582,0.401722,0.980634,0.871389,0.336364,0.85612,0.751091,0.389003,0.475735,0.404869,0.998834,0.396055,0.0790548,0.0300637,0.0494438,0.0437641,0.483981,0.134682,0.821254,0.225327,0.60485,0.94487,0.45665,0.809383,0.295831,0.236534,0.726607,0.107033,0.115652,0.984534,0.583709,0.763238,0.752286,0.600613,0.485233,0.846085,0.717654,0.708533,0.147007,0.717176,0.507344,0.22029,0.195934,0.590799,0.569303,0.163387,0.377908,0.899073,0.131866,0.231763,0.592657,0.00710535,0.83245,0.0586724,0.619195,0.671507,0.789844,0.70878,0.996586,0.928651,0.00858861,0.568878,0.745189,0.284121,0.306933,0.0818141,0.417018,0.781356,0.909697,0.23706,0.751836,0.729197,0.994651,0.347766,0.710849,0.656578,0.606758,0.577406,0.672187,0.723451,0.526883,0.231395,0.180575,0.171184,0.136694,0.952877,0.547347,0.719241,0.950121,0.455749,0.929521,0.96542,0.495166,0.701564,0.229046,0.40975,0.471176,0.0716874,0.484692,0.713657,0.453529,0.266922,0.105307,0.203305,0.765966,0.242905,0.853537,0.367074,0.461051,0.580258,0.930381,0.500897,0.316905,0.225861,0.105216,0.422648,0.58493,0.0960957,0.57943,0.523113,0.293736,0.168016,0.867347,0.466725,0.277074,0.908228,0.430914,0.120702,0.19957,0.5439,0.677335,0.708246,0.627442,0.159971,0.714577,0.697464,0.342738,0.0518752,0.671695,0.768598,0.134509,0.820168,0.245291,0.330138,0.938943,0.716738,0.602154,0.505793,0.768855,0.641455,0.0142595,0.87729,0.583966,0.558585,0.250595,0.734875,0.660538,0.992172,0.0480249,0.106471,0.306866,0.0851287,0.208521,0.276167,0.144056,0.070628,0.686055,0.281483,0.951592,0.602531,0.571014,0.0660335,0.30476,0.921418,0.976784,0.0160847,0.390467,0.986548,0.984428,0.892398,0.766437,0.37312,0.107953,0.812982,0.490261,0.518501,0.0140074,0.85561,0.834738,0.439515,0.50489,0.0162716,0.0731691,0.154236,0.754466,0.0920627,0.785977,0.729451,0.808781,0.88699,0.171293,0.67242,0.00710958,0.543573,0.0521692,0.61381,0.891097,0.498936,0.0471077,0.274335,0.159832,0.380382,0.977592,0.395329,0.0710385,0.335636,0.600637,0.0507373,0.566864,0.850159,0.371903,0.551502,0.954531,0.498271,0.152823,0.181221,0.216433,0.892339,0.493339,0.406901,0.816546,0.503471,0.351712,0.977789,0.652687,0.426681,0.0647123,0.83204,0.753602,0.168732,0.975174,0.773644,0.360577,0.386426,0.628867,0.00999862,0.467497,0.740674,0.53316,0.048329,0.179778,0.845547,0.109008,0.0112236,0.342734,0.420219,0.345129,0.601488,0.102957,0.413327,0.931877,0.362517,0.808051,0.541265,0.48176,0.716521,0.693955,0.315953,0.0176807,0.724543,0.725014,0.830203,0.751831,0.106116,0.310657,0.702945,0.745944,0.166611,0.00955492,0.567046,0.965379,0.614866,0.366872,0.626382,0.0754864,0.359726,0.961588,0.671273,0.263258,0.18579,0.00355637,0.397361,0.215421,0.958805,0.470434,0.88903,0.557303,0.362848,0.0609677,0.672968,0.96073,0.97624,0.822297,0.475949,0.43144,0.758881,0.915688,0.115906,0.209838,0.447186,0.0506006,0.228904,0.0353374,0.408182,0.118765,0.109232,0.06688,0.680315,0.47257,0.164588,0.162415,0.362965,0.113579,0.906378,0.889822,0.564783,0.850681,0.984122,0.0735061,0.0701786,0.163769,0.675623,0.0683509,0.305313,0.667836,0.342236,0.36953,0.472873,0.767773,0.0174002,0.526034,0.760397,0.769658,0.656051,0.177587,0.111603,0.321387,0.413303,0.415573,0.347261,0.507639,0.833643,0.743953,0.623473,0.448191,0.520613,0.744289,0.96473,0.178259,0.0796802,0.746952,0.888535,0.973328,0.724731,0.841421,0.59673,0.072083,0.35242,0.963308,0.134527,0.886027,0.296567,0.286622,0.776836,0.24786,0.736845,0.933998,0.1377,0.854824,0.942646,0.732575,0.966693,0.890538,0.4218,0.499569,0.218368,0.712002,0.781632,0.799889,0.0888649,0.0680415,0.422644,0.0550731,0.606146,0.645373,0.479879,0.0117609,0.525539,0.919478,0.038657,0.299805,0.297344,0.190094,0.501462,0.475296,0.398332,0.0523703,0.155738,0.58154,0.902208,0.0298724,0.328876,0.050633,0.798708,0.32728,0.922842,0.298303,0.0839563,0.452664,0.494959,0.0057528,0.46221,0.769361,0.613505,0.370197,0.952919,0.109871,0.690408,0.894558,0.295892,0.238769,0.614087,0.675322,0.232995,0.635618,0.877804,0.992747,0.827881,0.0462198,0.648996,0.755443,0.495351,0.00312895,0.168492,0.991331,0.464244,0.26732,0.0737437,0.92192,0.982623,0.170982,0.929896,0.19368,0.658562,0.69164,0.188163,0.482971,0.120092,0.986249,0.0885706,0.121588,0.576073,0.764872,0.0334728,0.991659,0.142174,0.654944,0.257295,0.449229,0.979256,0.287981,0.498782,0.430018,0.82037,0.871855,0.652042,0.434687,0.482814,0.134938,0.0420571,0.333517,0.589902,0.0424782,0.748272,0.908143,0.594102,0.985497,0.463076,0.361895,0.636237,0.406286,0.845435,0.706842,0.457656,0.358447,0.695367,0.863042,0.849929,0.183909,0.155315,0.374922,0.997328,0.734742,0.328015,0.746046,0.621381,0.224636,0.653824,0.0305257,0.625799,0.823123,0.347817,0.824838,0.812791,0.837346,0.785382,0.35351,0.436414,0.680587,0.0132193,0.655833,0.502535,0.557609,0.848635,0.448688,0.482524,0.15827,0.682772,0.21691,0.0363027,0.79326,0.453557,0.710438,0.997678,0.106883,0.945031,0.655891,0.749307,0.00540906,0.218394,0.961474,0.414944,0.187451,0.180361,0.993502,0.738707,0.47438,0.462863,0.197559,0.102553,0.987149,0.659757,0.270941,0.989763,0.838091,0.734062,0.815825,0.336917,0.283063,0.904439,0.902585,0.197193,0.387287,0.336603,0.131173,0.957763,0.215755,0.48404,0.306086,0.643637,0.286832,0.472794,0.52652,0.126785,0.162656,0.522077,0.391858,0.115947,0.851292,0.966093,0.137396,0.764839,0.672794,0.290359,0.361519,0.496214,0.372304,0.882206,0.532367,0.0921646,0.927707,0.315751,0.215073,0.1467,0.452923,0.817745,0.0597393,0.780246,0.319593,0.704967,0.942586,0.732953,0.714288,0.501868,0.206726,0.24858,0.473372,0.950076,0.867344,0.391436,0.0952827,0.668687,0.570336,0.875223,0.737511,0.305464,0.172188,0.381632,0.608591,0.934153,0.762004,0.617519,0.323436,0.197639,0.660742,0.436764,0.510221,0.79978,0.831893,0.561975,0.653874,0.991062,0.409381,0.671434,0.658714,0.794571,0.302099,0.373929,0.987794,0.908901,0.048097,0.976322,0.635982,0.305196,0.624131,0.0671835,0.477287,0.000290811,0.906744,0.0811077,0.202508,0.816521,0.456171,0.275887,0.674115,0.252847,0.746757,0.856181,0.868076,0.792583,0.803574,0.408554,0.916427,0.000773072,0.415696,0.763177,0.714625,0.63863,0.422742,0.0767751,0.392485,0.749799,0.297118,0.990514,0.0625159,0.300068,0.310433,0.787748,0.445052,0.793614,0.0795107,0.114497,0.744921,0.969449,0.526552,0.0173705,0.0261352,0.251583,0.150941,0.381437,0.281295,0.388223,0.041456,0.545057,0.281446,0.168613,0.540772,0.858303,0.977641,0.289467,0.242534,0.170566,0.672655,0.88218,0.43921,0.057025,0.790679,0.398735,0.956836,0.745238,0.836957,0.691866,0.326129,0.666905,0.134413,0.340179,0.676727,0.0338564,0.831427,0.856375,0.181986,0.997482,0.802443,0.0194011,0.468923,0.936025,0.106338,0.224355,0.482045,0.64028,0.75754,0.548406,0.683692,0.131348,0.162321,0.879674,0.474318,0.852868,0.0842004,0.635336,0.370444,0.947063,0.84516,0.741146,0.215518,0.499837,0.776185,0.00659424,0.647689,0.455203,0.258639,0.598893,0.673482,0.56658,0.157532,0.0703943,0.697182,0.27705,0.071489,0.425335,0.00966835,0.558627,0.203962,0.0369747,0.977976,0.874661,0.0795395,0.30635,0.634598,0.246536,0.938063,0.73898,0.183601,0.0200679,0.517172,0.102116,0.225857,0.284044,0.392886,0.73175,0.200614,0.647527,0.0126458,0.167487,0.0029313,0.271167,0.470975,0.334802,0.83091,0.0304994,0.83872,0.0516989,0.653194,0.726939,0.161219,0.0497268,0.644401,0.45045,0.75493,0.311498,0.646758,0.61301,0.94743,0.846919,0.326233,0.430371,0.382174,0.968279,0.870738,0.159422,0.588044,0.120683,0.657787,0.0611809,0.795349,0.4264,0.608571,0.330584,0.031529,0.682063,0.916814,0.486373,0.861708,0.44612,0.47728,0.696968,0.657565,0.871644,0.578214,0.542548,0.334889,0.489385,0.758829,0.969703,0.520077,0.499548,0.211314,0.534511,0.29041,0.792923,0.862313,0.845229,0.0545896,0.248923,0.0937437,0.00956732,0.691909,0.569556,0.554374,0.748909,0.665079,0.471134,0.481782,0.422291,0.67268,0.924739,0.40991,0.195195,0.231844,0.26774,0.480186,0.0239377,0.941833,0.494298,0.808881,0.175631,0.0969216,0.520236,0.421926,0.706373,0.465275,0.478469,0.0835088,|0.468513,0.527428,0.662699,0.256836,0.365549,0.820021,0.600879,0.664118,0.811113,0.493013,0.629855,0.0662485,0.802583,0.584729,0.379906,0.866139,0.544452,0.430705,0.0613195,0.922046,0.216308,0.538656,0.120187,0.222106,0.516381,0.0955868,0.720807,0.463459,0.774501,0.835636,0.32307,0.522183,0.258919,0.616516,0.424986,0.133403,0.367176,0.446071,0.623833,0.227108,0.301455,0.926428,0.45444,0.0885315,0.173301,0.966502,0.199154,0.967881,0.103359,0.885544,0.40421,0.62949,0.946555,0.708834,0.932642,0.86055,0.604598,0.724762,0.0638184,0.710077,0.778013,0.278296,0.422105,0.618579,0.450113,0.067256,0.120726,0.693835,0.476409,0.264992,0.351496,0.924051,0.235024,0.0486912,0.292772,0.29727,0.181227,0.893983,0.840935,0.60732,0.537298,0.557831,0.378919,0.243087,0.598204,0.996523,0.0712949,0.16423,0.857429,0.338293,0.959277,0.100201,0.873501,0.110284,0.924714,0.525136,0.2465,0.377288,0.278356,0.879864,0.437027,0.0542422,0.170478,0.233573,0.704013,0.196742,0.923309,0.422108,0.859005,0.962185,0.16933,0.413732,0.31076,0.411978,0.773638,0.976315,0.863656,0.980899,0.865224,0.924637,0.736833,0.0105318,0.59116,0.904737,0.356079,0.753264,0.365941,0.763059,0.268817,0.205175,0.653683,0.49382,0.914171,0.85785,0.205503,0.959544,0.0207034,0.596545,0.482936,0.367989,0.360335,0.197316,0.66519,0.236339,0.643424,0.905459,0.0459657,0.97106,0.631561,0.849074,0.767974,0.786787,0.624805,0.373663,0.130366,0.33314,0.937521,0.989559,0.207982,0.633279,0.314718,0.48712,0.761675,0.462974,0.818431,0.678229,0.830617,0.390907,0.588829,0.758592,0.837727,0.903691,0.590932,0.50444,0.384535,0.0820509,0.857005,0.703865,0.107006,0.797434,0.12475,0.834452,0.769941,0.819258,0.636793,0.407789,0.496392,0.932472,0.954055,0.0270127,0.625076,0.636694,0.176866,0.642091,0.617698,0.304298,0.557235,0.431113,0.844227,0.923638,0.660059,0.921241,0.183091,0.509848,0.176287,0.610148,0.67661,0.983737,0.401842,0.245975,0.510694,0.0878322,0.407837,0.794112,0.349444,0.42009,0.0830084,0.683209,0.0763164,0.673398,0.477433,0.827128,0.488898,0.276311,0.493023,0.865142,0.299884,0.136769,0.630263,0.477561,0.748776,0.555651,0.244021,0.577561,0.36562,0.918866,0.517711,0.0223088,0.0275948,0.70295,0.590147,0.951523,0.0993012,0.0554187,0.244846,0.344038,0.920889,0.743736,0.0296537,0.898952,0.24784,0.877177,0.579838,0.885876,0.624079,0.973491,0.673554,0.143125,0.0473471,0.952712,0.713058,0.594318,0.293172,0.032929,0.398605,0.586191,0.0349064,0.859775,0.69702,0.186183,0.422322,0.104535,0.741404,0.693587,0.485339,0.207092,0.946896,0.397118,0.168451,0.620236,0.264402,0.439883,0.490477,0.599817,0.277458,0.884164,0.602866,0.594418,0.720324,0.219161,0.958477,0.622922,0.926998,0.301231,0.767761,0.222185,0.519754,0.497378,0.0820229,0.374862,0.2276,0.477261,0.108838,0.403558,0.638443,0.288523,0.83887,0.126714,0.0221884,0.680963,0.143236,0.146248,0.386136,0.27878,0.388145,0.0750666,0.992108,0.604035,0.724421,0.392426,0.643007,0.440548,0.691574,0.343772,0.502467,0.0228662,0.644791,0.631617,0.520124,0.18262,0.0175912,0.662375,0.846359,0.0627146,0.0886999,0.725807,0.735214,0.241793,0.882174,0.409558,0.579942,0.693982,0.684343,0.862317,0.796477,0.696385,0.353002,0.115297,0.919649,0.827761,0.318621,0.760625,0.904323,0.73895,0.10399,0.365258,0.926284,0.818125,0.260387,0.918961,0.0179722,0.590922,0.608525,0.291607,0.140211,0.174005,0.806567,0.217387,0.686267,0.598856,0.124013,0.772346,0.392728,0.401619,0.0526793,0.360384,0.161388,0.297962,0.544735,0.617774,0.0687112,0.527069,0.885725,0.0688239,0.982163,0.258859,0.445652,0.567377,0.807796,0.175101,0.0122992,0.209968,0.390352,0.0159977,0.868313,0.616121,0.625747,0.865352,0.558694,0.0899716,0.798225,0.517127,0.333145,0.807804,0.251983,0.0763425,0.929602,0.459267,0.590095,0.543883,0.216984,0.178705,0.810718,0.947099,0.0649503,0.964676,0.81602,0.510731,0.502267,0.898238,0.278866,0.155312,0.351952,0.28983,0.485321,0.927209,0.454959,0.642507,0.910077,0.782809,0.133209,0.0954517,0.182122,0.638053,0.107364,0.890646,0.789181,0.972734,0.15978,0.862425,0.190655,0.133574,0.996842,0.953465,0.960339,0.63372,0.990406,0.928343,0.529711,0.462483,0.361318,0.0889434,0.470707,0.44669,0.549355,0.950978,0.467975,0.830683,0.963817,0.278643,0.305146,0.410313,0.740564,0.418245,0.945589,0.742501,0.730591,0.255524,0.885493,0.536848,0.535369,0.24515,0.731654,0.570495,0.857173,0.278788,0.177162,0.179416,0.321146,0.749945,0.704292,0.598672,0.713764,0.307025,0.536643,0.467105,0.463114,0.663643,0.638547,0.924804,0.436052,0.839668,0.627694,0.539238,0.134209,0.0952253,0.723382,0.338156,0.991466,0.518756,0.702794,0.569732,0.906242,0.809971,0.0804661,0.255404,0.978817,0.647585,0.651862,0.581469,0.982875,0.438696,0.254294,0.48608,0.273567,0.643129,0.495868,0.664371,0.159597,0.910343,0.474673,0.179617,0.393261,0.149633,0.324309,0.475372,0.224307,0.360175,0.99674,0.836148,0.818159,0.372814,0.468592,0.876762,0.475386,0.33009,0.255119,0.360273,0.858466,0.685883,0.943016,0.654499,0.8838,0.783717,0.634809,0.276472,0.185239,0.691548,0.957957,0.151038,0.279127,0.0300201,0.758839,0.0554443,0.715441,0.195299,0.597706,0.17236,0.737636,0.67653,0.248138,0.312556,0.431481,0.240847,0.902369,0.955321,0.0161356,0.230659,0.522833,0.574732,0.235249,0.290827,0.221002,0.460375,0.498756,0.566319,0.819453,0.0210324,0.181989,0.223573,0.770258,0.0572531,0.333565,0.842541,0.871911,0.633933,0.70496,0.760202,0.771256,0.824159,0.320452,0.800021,0.978302,0.726406,0.494986,0.756697,0.959963,0.981384,0.225012,0.696273,0.556972,0.747408,0.419535,0.662567,0.980795,0.184516,0.801535,0.142531,0.721055,0.735651,0.258751,0.719957,0.452431,0.778225,0.850866,0.169713,0.98583,0.389336,0.916675,0.968077,0.722246,0.772363,0.127249,0.238922,0.391644,0.148906,0.955388,0.229879,0.984984,0.0404733,0.23466,0.622262,0.50054,0.739342,0.370431,0.586514,0.180427,0.66287,0.211477,0.510661,0.158184,0.722428,0.30126,0.0427442,0.0352853,0.873768,0.714001,0.286489,0.877978,0.864201,0.0514153,0.260437,0.710018,0.318515,0.871351,0.0627569,0.680625,0.0925236,0.177356,0.808589,0.245726,0.466202,0.96987,0.264608,0.848969,0.413854,0.925469,0.239646,0.0209789,0.0415289,0.28652,0.00970501,0.555023,0.974113,0.623133,0.238873,0.084798,0.0195017,0.500268,0.522562,0.477916,0.455085,0.917393,0.650696,0.873137,0.0690826,0.723798,0.52131,0.918666,0.221069,0.178284,0.868454,0.245087,0.498983,0.0994399,0.115943,0.172095,0.176796,0.518876,0.65299,0.908102,0.875632,0.188305,0.441967,0.262974,0.704482,0.0931405,0.118538,0.290144,0.450652,0.496086,0.0331935,0.137315,0.0670696,0.547213,0.851533,0.102673,0.169541,0.843477,0.0970932,0.812857,0.615122,0.10105,0.486516,0.617396,0.575199,0.151588,0.38846,0.187134,0.351083,0.992998,0.653614,0.0693712,0.937472,0.14366,0.294306,0.966027,0.0444441,0.414551,0.809495,0.60193,0.108679,0.24381,0.013536,0.274904,0.755498,0.470797,0.636559,0.658515,0.601574,0.945346,0.438144,0.498022,0.55636,0.963049,0.754012,0.102925,0.784269,0.515881,0.880181,0.840267,0.684754,0.652137,0.976569,0.176068,0.0191572,0.312134,0.768314,0.371027,0.0219573,0.163298,0.841612,0.378145,0.985514,0.618954,0.155541,0.168482,0.476426,0.443878,0.583584,0.727371,0.556188,0.999713,0.901166,0.490199,0.416714,0.858814,0.963112,0.199367,0.148259,0.607432,0.931736,0.191855,0.691508,0.634576,0.182348,0.348508,0.22468,0.662351,0.377018,0.580927,0.80427,0.853312,0.537735,0.828347,0.608601,0.244997,0.24228,0.935336,0.914425,0.37304,0.168625,0.874767,0.0272753,0.461143,0.0321229,0.151911,0.427914,0.313329,0.342153,0.855619,0.00500757,0.679989,0.462235,0.775608,0.71918,0.779401,0.11515,0.123318,0.847518,0.649966,0.449745,0.585968,0.0623666,0.49384,0.778155,0.901333,0.155606,0.200639,0.585212,0.285307,0.377612,0.0613598,0.0889859,0.145607,0.937415,0.829647,0.755954,0.970199,0.607127,0.128758,0.924563,0.302428,0.589236,0.0852236,0.193656,0.128003,0.950653,0.0287354,0.323556,0.718021,0.343283,0.0501708,0.202342,0.635376,0.550874,0.554657,0.780731,0.274949,0.88715,0.746009,0.465623,0.574892,0.913481,0.890969,0.305675,0.0369637,0.128141,0.822371,0.164878,0.781756,0.628861,0.608689,0.562598,0.790529,0.51477,0.00250995,0.531839,0.136824,0.242765,0.526509,0.0994735,0.87963,0.501821,0.445484,0.010794,0.22217,0.549366,0.388708,0.161431,0.00934649,0.877578,0.383984,0.943976,0.934082,0.385031,0.801165,0.467401,0.168707,0.698514,0.566028,0.448096,0.578818,0.250791,0.563434,0.480676,0.326526,0.234378,0.0513861,0.519195,0.791406,0.660083,0.82064,0.318417,0.996965,0.303771,0.599976,0.28433,0.468964,0.436231,0.00258482,0.0776407,0.796104,0.698514,0.129533,0.325929,0.221784,0.860167,0.0667741,0.368669,0.223706,0.00370306,0.87931,0.292338,0.492698,0.985711,0.559887,0.886923,0.515509,0.428239,0.885414,0.742298,0.605276,0.235046,0.259043,0.578335,0.455289,0.983565,0.0900198,0.552434,0.824474,0.431221,0.879311,0.0306648,0.631928,0.0973189,0.444592,0.431528,0.343994,0.950985,0.152385,0.403546,0.143896,0.394977,0.91936,0.619849,0.881788,0.311649,0.765578,0.296884,0.711852,0.0364472,0.444242,0.857507,0.0266389,0.450064,0.304198,0.560242,0.400197,0.578964,0.30468,0.513187,0.953228,0.601261,0.76639,0.820689,0.824017,0.79627,0.0286891,0.194878,|0.417587,0.0182287,0.071858,0.892165,0.696648,0.103756,0.375265,0.285866,0.209998,0.109262,0.708144,0.984806,0.953177,0.378134,0.250104,0.439256,0.568536,0.00914955,0.616073,0.52575,0.794956,0.571953,0.567204,0.652086,0.11343,0.452707,0.403543,0.360406,0.127918,0.504157,0.672325,0.120369,0.0385345,0.799764,0.242406,0.589806,0.484078,0.186994,0.829844,0.780463,0.93983,0.582771,0.901823,0.841126,0.425427,0.802594,0.541034,0.859741,0.478293,0.791008,0.720485,0.0982224,0.75638,0.864351,0.47612,0.298714,0.715022,0.315996,0.266735,0.838218,0.408177,0.385747,0.222093,0.154934,0.239099,0.508748,0.848034,0.193428,0.456299,0.316094,0.533214,0.558542,0.884675,0.761821,0.396207,0.645062,0.60926,0.587084,0.942938,0.171418,0.379145,0.162166,0.578032,0.116749,0.280465,0.589629,0.389088,0.921921,0.702426,0.0771796,0.0672316,0.432298,0.125716,0.388824,0.935432,0.427266,0.721386,0.27162,0.0241404,0.330773,0.73194,0.801675,0.297402,0.301189,0.808889,0.933801,0.00608283,0.548032,0.0290853,0.90009,0.25209,0.641976,0.40752,0.362983,0.477234,0.347422,0.914513,0.0818835,0.523808,0.56877,0.867305,0.800418,0.600327,0.372439,0.551079,0.314306,0.285478,0.00607806,0.874918,0.30035,0.300529,0.574572,0.256639,0.894636,0.544946,0.716772,0.887636,0.748045,0.29536,0.692525,0.081254,0.81907,0.445162,0.252003,0.973831,0.599321,0.989718,0.81583,0.735943,0.000956953,0.583522,0.461134,0.0330361,0.240468,0.0118843,0.57957,0.799372,0.902619,0.381698,0.630666,0.143943,0.442851,0.13252,0.564532,0.164097,0.974468,0.18552,0.562034,0.858923,0.606214,0.442192,0.293711,0.894935,0.499422,0.491211,0.794422,0.786372,0.623444,0.266867,0.888654,0.162845,0.872398,0.873896,0.376731,0.966827,0.115226,0.10889,0.863737,0.197555,0.061654,0.613005,0.210466,0.244507,0.169923,0.622419,0.204178,0.478173,0.735655,0.79473,0.747181,0.146162,0.786411,0.136154,0.980229,0.968696,0.691733,0.0878925,0.408916,0.901817,0.739925,0.652003,0.371976,0.474303,0.386055,0.95563,0.25606,0.0150708,0.551918,0.00788975,0.544515,0.989215,0.741569,0.102676,0.741998,0.649574,0.0716522,0.238839,0.702311,0.244711,0.758249,0.540269,0.257902,0.965971,0.295105,0.617919,0.954184,0.557441,0.809996,0.368166,0.0684744,0.241512,0.68278,0.123358,0.107062,0.449576,0.0572574,0.323038,0.120744,0.0311233,0.862863,0.111102,0.167097,0.937959,0.747127,0.73373,0.228254,0.0594434,0.922555,0.890502,0.823328,0.125279,0.967587,0.976798,0.458911,0.378138,0.0273788,0.845997,0.225984,0.454954,0.751687,0.711925,0.904604,0.432222,0.479096,0.797,0.146393,0.242939,0.321085,0.972109,0.989926,0.534813,0.296152,0.00784439,0.416118,0.790695,0.379566,0.123976,0.451356,0.957422,0.141483,0.871244,0.666082,0.585928,0.0772967,0.528879,0.211506,0.104278,0.70257,0.082279,0.195854,0.910745,0.877097,0.369143,0.912824,0.765812,0.965977,0.439806,0.395242,0.516104,0.167641,0.79268,0.604965,0.00276864,0.0834322,0.506556,0.912096,0.62529,0.807759,0.532372,0.673472,0.0814073,0.968191,0.108542,0.180955,0.525372,0.885782,0.354058,0.0785121,0.427827,0.585769,0.742982,0.182144,0.756937,0.739804,0.0398721,0.0214092,0.209416,0.403384,0.63911,0.290731,0.974221,0.241584,0.905186,0.910381,0.231196,0.270886,0.894203,0.643371,0.583984,0.701386,0.118677,0.486937,0.775512,0.823611,0.663128,0.851571,0.767516,0.443767,0.889584,0.550653,0.879907,0.0841201,0.431542,0.667123,0.981651,0.539105,0.520274,0.560671,0.761908,0.0804701,0.519807,0.594685,0.640385,0.499866,0.366493,0.660199,0.336525,0.0672781,0.319493,0.963217,0.723903,0.979667,0.833852,0.662147,0.513679,0.254416,0.165225,0.67673,0.19503,0.39523,0.714779,0.00269926,0.77651,0.710319,0.918953,0.355716,0.670004,0.167068,0.0969185,0.483172,0.127124,0.77879,0.988616,0.0974165,0.266763,0.00223255,0.415649,0.482973,0.99507,0.641758,0.551475,0.639451,0.378224,0.685083,0.38928,0.213323,0.648552,0.313648,0.793312,0.723822,0.763941,0.958273,0.980458,0.902167,0.778772,0.249766,0.903624,0.238213,0.754143,0.441265,0.660926,0.987183,0.96546,0.148216,0.912277,0.562236,0.59568,0.768687,0.90831,0.638339,0.0952625,0.090382,0.773952,0.135525,0.312333,0.764966,0.233341,0.191716,0.293169,0.288948,0.221424,0.69877,0.972319,0.871794,0.0944268,0.931866,0.300935,0.635087,0.560835,0.387833,0.0670786,0.477593,0.268454,0.961071,0.959091,0.835845,0.155428,0.802774,0.122959,0.614019,0.484149,0.521038,0.593275,0.524404,0.569546,0.306799,0.364509,0.453723,0.275857,0.852917,0.0172675,0.755007,0.856626,0.27416,0.00491208,0.576057,0.325594,0.302323,0.595792,0.678635,0.118302,0.986359,0.0164769,0.0277191,0.616855,0.0499611,0.444664,0.271418,0.998417,0.324417,0.767149,0.115584,0.71661,0.698395,0.101218,0.418081,0.170758,0.752688,0.226359,0.573874,0.534575,0.789688,0.966443,0.935693,0.892526,0.286873,0.783819,0.89563,0.999688,0.284949,0.73793,0.715857,0.588623,0.266156,0.0868989,0.521376,0.284238,0.206825,0.921936,0.945519,0.14245,0.73408,0.358026,0.873297,0.33836,0.79114,0.195318,0.154174,0.019851,0.765326,0.542274,0.913445,0.965173,0.303915,0.676934,0.345394,0.782886,0.822029,0.132614,0.355282,0.917427,0.593953,0.398292,0.0270895,0.875595,0.852327,0.017858,0.192253,0.653568,0.551167,0.510559,0.975471,0.194984,0.20142,0.901367,0.867605,0.355652,0.040054,0.407608,0.992309,0.145235,0.827725,0.142109,0.952054,0.960133,0.847941,0.916464,0.649714,0.115818,0.522535,0.851313,0.00532532,0.744672,0.157236,0.751469,0.66863,0.332804,0.793606,0.502008,0.589262,0.890456,0.409553,0.640704,0.259877,0.863811,0.313183,0.893498,0.572731,0.169609,0.926101,0.535765,0.451253,0.462691,0.294535,0.282146,0.799748,0.68812,0.0262179,0.531755,0.573378,0.576421,0.0530869,0.453481,0.674198,0.665374,0.695101,0.204401,0.257215,0.0870188,0.425188,0.462989,0.969234,0.561958,0.438705,0.353889,0.97932,0.62775,0.913895,0.978635,0.539906,0.746879,0.670177,0.508076,0.214379,0.209373,0.819672,0.697753,0.708772,0.277476,0.497651,0.56897,0.161345,0.683245,0.935305,0.571226,0.801996,0.596836,0.981517,0.173883,0.562191,0.53477,0.389775,0.836297,0.794212,0.561556,0.61135,0.404872,0.135599,0.362441,0.617718,0.753747,0.785482,0.880665,0.290263,0.534356,0.683969,0.813346,0.623106,0.362441,0.303798,0.155279,0.883479,0.372559,0.415203,0.010945,0.966807,0.57859,0.311962,0.810767,0.560301,0.721845,0.141109,0.171007,0.95425,0.488719,0.86248,0.821077,0.711773,0.616221,0.604754,0.759955,0.0647978,0.497011,0.866534,0.31339,0.453105,0.839,0.30759,0.14428,0.358434,0.608487,0.641768,0.552753,0.731381,0.144484,0.997021,0.626957,0.0353534,0.356249,0.0893255,0.79571,0.680647,0.297781,0.164709,0.838741,0.13318,0.715823,0.899146,0.56388,0.684671,0.0811801,0.185268,0.0735595,0.983331,0.399786,0.538667,0.896696,0.854783,0.45014,0.0666079,0.579382,0.773188,0.233326,0.864907,0.761127,0.892763,0.780759,0.179001,0.317591,0.83992,0.621762,0.988781,0.912591,0.16384,0.0676025,0.571157,0.73567,0.482094,0.264434,0.467046,0.429813,0.0906085,0.179658,0.363104,0.409838,0.69609,0.626249,0.495227,0.567297,0.0204602,0.114492,0.0683581,0.287476,0.176648,0.498764,0.890231,0.0180522,0.547242,0.318094,0.909166,0.152747,0.402612,0.0273596,0.174627,0.882065,0.286801,0.446451,0.989478,0.184399,0.153616,0.561646,0.662996,0.800661,0.936161,0.343452,0.176056,0.76964,0.771517,0.926616,0.111357,0.116114,0.730201,0.594227,0.137931,0.119398,0.30119,0.361327,0.392081,0.846253,0.610465,0.257271,0.348877,0.79073,0.695414,0.479339,0.207067,0.50103,0.530816,0.453066,0.614924,0.370006,0.611245,0.210403,0.49956,0.803093,0.0175928,0.736153,0.637182,0.0139721,0.777426,0.974209,0.616736,0.972999,0.783476,0.420769,0.409094,0.707691,0.163571,0.148053,0.597738,0.107892,0.459406,0.0735083,0.727986,0.772999,0.565787,0.0331519,0.40758,0.567509,0.0987147,0.416209,0.502635,0.901131,0.468182,0.0407581,0.828404,0.3436,0.802216,0.285965,0.624723,0.337722,0.485223,0.767043,0.801255,0.461146,0.21486,0.745504,0.28463,0.321143,0.380816,0.555203,0.198331,0.499712,0.133547,0.206747,0.972893,0.350347,0.864208,0.107679,0.0564727,0.806141,0.884648,0.843245,0.754747,0.856285,0.468702,0.423778,0.535574,0.744128,0.416774,0.724867,0.884982,0.891269,0.338877,0.666247,0.394559,0.23406,0.630167,0.766182,0.999682,0.298035,0.0493766,0.431539,0.676919,0.025229,0.305403,0.298929,0.126037,0.37749,0.128988,0.267474,0.162629,0.926721,0.0745912,0.344084,0.0692258,0.849533,0.891683,0.198804,0.372483,0.689679,0.790611,0.372926,0.674238,0.878381,0.274995,0.378783,0.24898,0.282163,0.923302,0.582936,0.848716,0.349905,0.696612,0.746676,0.99536,0.895613,0.873851,0.729194,0.252574,0.961998,0.514772,0.00425333,0.0632349,0.162948,0.0657336,0.606363,0.424011,0.441438,0.214287,0.61653,0.943537,0.34031,0.738156,0.500596,0.0546593,0.500805,0.657929,0.471042,0.45515,0.125,0.628251,0.391696,0.0377243,0.438859,0.543535,0.990123,0.679655,0.651453,0.118097,0.70549,0.591267,0.756743,0.962667,0.662898,0.148986,0.00310761,0.296955,0.240075,0.132999,0.974399,0.183182,0.552471,0.392865,0.511835,0.926172,0.149809,0.116342,0.898834,0.297928,0.284051,0.225926,0.186474,0.746172,0.899395,0.98252,0.781628,0.910077,0.903326,0.458332,0.102216,0.418681,0.387478,0.219819,0.876239,0.80231,0.940247,0.912877,0.773644,0.184057,|0.427404,0.772537,0.683,0.60404,0.376604,0.0494046,0.604348,0.657547,0.375208,0.244628,0.414706,0.588977,0.0546572,0.449919,0.648851,0.611449,0.662019,0.389144,0.262397,0.455467,0.427125,0.971313,0.064168,0.520716,0.80402,0.372785,0.306733,0.474178,0.229281,0.134995,0.511939,0.698803,0.00166881,0.504377,0.935931,0.313164,0.775036,0.670303,0.090895,0.8477,0.0481811,0.364502,0.951606,0.256631,0.972137,0.689957,0.832167,0.44052,0.772272,0.440466,0.582336,0.660021,0.255279,0.721822,0.458834,0.253192,0.700399,0.966632,0.340494,0.75161,0.105034,0.817868,0.939088,0.852739,0.832099,0.236653,0.24128,0.594103,0.280657,0.632987,0.292718,0.283902,0.679689,0.628625,0.330575,0.214836,0.228341,0.845003,0.621868,0.698615,0.872833,0.280845,0.622945,0.635585,0.653256,0.666985,0.473741,0.235615,0.236264,0.261716,0.283971,0.711429,0.10329,0.89588,0.98496,0.0213463,0.651068,0.16186,0.388762,0.408534,0.407328,0.5583,0.239193,0.199072,0.013959,0.47417,0.00878602,0.399797,0.838625,0.257064,0.190259,0.606581,0.248824,0.0734087,0.765575,0.908423,0.556804,0.82455,0.350973,0.166236,0.926502,0.953544,0.282222,0.525864,0.40049,0.230852,0.991366,0.969629,0.940857,0.127121,0.644939,0.698116,0.214809,0.161648,0.730405,0.876203,0.418495,0.966897,0.866211,0.913505,0.232817,0.376101,0.704525,0.216971,0.81518,0.869688,0.213164,0.200904,0.294954,0.201172,0.476741,0.0582759,0.0295532,0.794529,0.190709,0.797488,0.0725266,0.0294703,0.571695,0.842977,0.126483,0.513626,0.288223,0.0390249,0.96668,0.392702,0.536487,0.0483379,0.0197126,0.825909,0.342979,0.434219,0.798519,0.754187,0.754845,0.401155,0.82351,0.332174,0.0419294,0.403111,0.282266,0.182636,0.0317115,0.0603053,0.977913,0.455753,0.734058,0.790975,0.0640227,0.142047,0.282032,0.382019,0.782303,0.485296,0.794874,0.826753,0.279988,0.595585,0.90761,0.892804,0.635102,0.221743,0.477937,0.284629,0.115483,0.964793,0.5504,0.892563,0.568692,0.19899,0.125435,0.0298996,0.984865,0.297613,0.741499,0.0732616,0.246871,0.619601,0.547029,0.263285,0.693123,0.296079,0.641418,0.59454,0.670147,0.239981,0.675171,0.620955,0.0640372,0.337527,0.129199,0.602184,0.29075,0.787722,0.0876792,0.921864,0.0445668,0.0728397,0.469827,0.376682,0.539657,0.10569,0.842657,0.599487,0.76259,0.30412,0.0881199,0.420688,0.457086,0.528295,0.794128,0.934812,0.332368,0.538938,0.438801,0.812685,0.553051,0.758251,0.489488,0.636345,0.249818,0.282539,0.0828657,0.00870746,0.725503,0.420282,0.0687942,0.564093,0.663621,0.838143,0.113871,0.0445957,0.385365,0.331161,0.989767,0.457834,0.929344,0.122849,0.941841,0.607886,0.343916,0.552637,0.750729,0.471019,0.211272,0.53962,0.891834,0.0283827,0.464846,0.221307,0.324927,0.203417,0.372037,0.187786,0.38542,0.0519875,0.377687,0.93673,0.836669,0.0377407,0.30995,0.291268,0.101005,0.663233,0.477963,0.809269,0.745456,0.0805964,0.411271,0.634849,0.0800799,0.901151,0.16762,0.188905,0.171163,0.0268195,0.825717,0.576878,0.533079,0.961984,0.561206,0.850609,0.408055,0.28625,0.390191,0.277325,0.729463,0.657931,0.880859,0.295217,0.106058,0.223251,0.405723,0.913711,0.512877,0.466463,0.587329,0.289701,0.0889174,0.414881,0.789194,0.56282,0.57692,0.704671,0.0351252,0.961783,0.977759,0.420684,0.684704,0.842626,0.410381,0.569964,0.346871,0.172597,0.993136,0.87892,0.155883,0.598104,0.824417,0.422242,0.963274,0.854765,0.0284498,0.199867,0.0990422,0.137774,0.0379249,0.85827,0.933914,0.890001,0.680998,0.56533,0.746778,0.908575,0.265347,0.252348,0.341731,0.19662,0.449411,0.872278,0.191683,0.207649,0.326598,0.561579,0.184059,0.562127,0.665544,0.781774,0.0954396,0.854231,0.731592,0.810679,0.213482,0.91205,0.102314,0.296567,0.0954371,0.276144,0.788992,0.113446,0.491662,0.926714,0.253085,0.654968,0.653282,0.856319,0.199207,0.913357,0.683831,0.0288782,0.31132,0.279324,0.8122,0.412832,0.0565661,0.239815,0.232281,0.302146,0.0902173,0.433105,0.108706,0.293138,0.944832,0.376875,0.462961,0.285378,0.429623,0.311591,0.707606,0.604447,0.689365,0.353225,0.33468,0.077431,0.646274,0.851373,0.439709,0.90341,0.4869,0.247768,0.640433,0.741674,0.834833,0.308721,0.277135,0.79867,0.534274,0.953819,0.738669,0.451899,0.213827,0.729562,0.446254,0.874209,0.717435,0.916325,0.695075,0.357999,0.478928,0.985034,0.920661,0.168666,0.74099,0.311288,0.694908,0.15863,0.176334,0.613661,0.643023,0.608388,0.196225,0.248843,0.613358,0.784882,0.0867357,0.0667133,0.891857,0.326616,0.528415,0.472948,0.53359,0.430187,0.196596,0.621406,0.585484,0.703649,0.818059,0.509826,0.426591,0.5264,0.111905,0.643229,0.797953,0.452545,0.0393659,0.750191,0.182145,0.391252,0.0373527,0.747184,0.600895,0.832263,0.545452,0.433377,0.43144,0.734708,0.187924,0.90539,0.321895,0.817335,0.688589,0.652985,0.36523,0.521838,0.786318,0.959396,0.579449,0.815911,0.0514498,0.542855,0.808485,0.846682,0.826756,0.351345,0.544527,0.262307,0.24137,0.0907292,0.994319,0.411656,0.575372,0.866372,0.610982,0.267785,0.472463,0.865025,0.975935,0.841325,0.66593,0.0689777,0.729823,0.617507,0.306123,0.167588,0.0750834,0.58054,0.936139,0.768607,0.60114,0.718194,0.79891,0.454911,0.0858312,0.729243,0.78116,0.294249,0.325779,0.688364,0.994901,0.723715,0.654546,0.810057,0.429223,0.639284,0.570004,0.582886,0.880637,0.638533,0.296568,0.588267,0.384469,0.256178,0.0328776,0.985083,0.569793,0.200105,0.656227,0.98043,0.579216,0.259854,0.566781,0.0312473,0.0733466,0.933762,0.91598,0.622108,0.00615239,0.848124,0.529115,0.424313,0.204193,0.179848,0.145675,0.0399156,0.447698,0.150279,0.849864,0.612438,0.882188,0.464992,0.617437,0.510591,0.497837,0.0542051,0.161388,0.835415,0.88685,0.318373,0.529579,0.303477,0.378043,0.91931,0.732206,0.971744,0.938694,0.262345,0.0403682,0.177784,0.956385,0.621846,0.77352,0.943723,0.514777,0.951065,0.0974498,0.350886,0.448603,0.969311,0.636965,0.354135,0.205932,0.86963,0.243939,0.0540696,0.949148,0.395549,0.29721,0.551906,0.771655,0.488629,0.0814509,0.0826938,0.0523944,0.89681,0.255479,0.165323,0.576447,0.0976962,0.473598,0.0610878,0.866722,0.237422,0.509512,0.246415,0.0718744,0.907376,0.0523524,0.138313,0.287659,0.594464,0.370208,0.637925,0.959131,0.564641,0.579474,0.078398,0.286336,0.628577,0.0380968,0.300478,0.75495,0.32785,0.119791,0.479068,0.317897,0.0712732,0.604504,0.617307,0.800741,0.540966,0.0151627,0.574335,0.231127,0.70166,0.589893,0.819787,0.0945567,0.544652,0.409118,0.476947,0.177607,0.266165,0.465901,0.904685,0.181978,0.963185,0.219398,0.135878,0.416458,0.217881,0.900168,0.770119,0.201934,0.236471,0.187659,0.389671,0.613164,0.529998,0.379924,0.584916,0.753374,0.787139,0.354288,0.346859,0.652239,0.378655,0.429126,0.197421,0.575559,0.0017187,0.644939,0.561924,0.435554,0.0180483,0.477009,0.13877,0.291795,0.680573,0.240223,0.100071,0.732068,0.719389,0.0315872,0.175943,0.856963,0.468218,0.557031,0.461098,0.902904,0.926214,0.562897,0.152514,0.382999,0.128246,0.230063,0.800171,0.805673,0.0923904,0.254196,0.687049,0.236999,0.542422,0.810771,0.848361,0.174885,0.298549,0.383744,0.401954,0.339603,0.816182,0.608049,0.686019,0.278679,0.568607,0.16908,0.622363,0.549198,0.801797,0.13058,0.663052,0.0248957,0.727324,0.312882,0.265015,0.159481,0.0809706,0.971698,0.429618,0.729202,0.767488,0.111041,0.822832,0.899915,0.242237,0.290914,0.725261,0.429461,0.107775,0.455427,0.447276,0.945688,0.902131,0.340715,0.895502,0.470367,0.136812,0.425453,0.664653,0.295174,0.362231,0.265539,0.6514,0.310555,0.0906926,0.195512,0.683733,0.33316,0.795421,0.148343,0.651998,0.498195,0.660188,0.397958,0.250013,0.228954,0.844126,0.715967,0.7821,0.345463,0.823526,0.186604,0.336761,0.955153,0.893894,0.872698,0.615515,0.0331281,0.80085,0.156984,0.976694,0.348152,0.223772,0.228408,0.834233,0.312327,0.252338,0.0344254,0.468683,0.625598,0.874345,0.373209,0.331803,0.420592,0.862132,0.699413,0.517333,0.00529307,0.623685,0.569265,0.309763,0.986647,0.799338,0.540247,0.947927,0.137879,0.663943,0.24467,0.696063,0.0590111,0.10341,0.333936,0.0814286,0.544243,0.97653,0.0405695,0.932515,0.633772,0.247494,0.567313,0.274422,0.161884,0.596768,0.790142,0.0412964,0.876057,0.396482,0.715874,0.803659,0.544182,0.0246317,0.938322,0.374627,0.395845,0.807046,0.162436,0.257206,0.342675,0.61926,0.176756,0.0440977,0.197918,0.786824,0.317639,0.195491,0.853965,0.594896,0.206223,0.620744,0.213539,0.901168,0.600676,0.103051,0.448591,0.171995,0.220442,0.9622,0.967219,0.673184,0.270466,0.432264,0.340702,0.587275,0.110052,0.29084,0.261784,0.379428,0.603936,0.561234,0.329754,0.635139,0.400186,0.455577,0.530713,0.0446218,0.732446,0.57036,0.416743,0.998046,0.0631958,0.146457,0.0794529,0.675555,0.317255,0.698552,0.344891,0.791685,0.315568,0.0705836,0.413334,0.075662,0.918791,0.338745,0.555416,0.48456,0.660597,0.188629,0.202632,0.568655,0.308888,0.964448,0.457659,0.261618,0.0871467,0.454692,0.470402,0.661407,0.404547,0.542935,0.731025,0.265393,0.522976,0.731277,0.544871,0.483778,0.231022,0.0325423,0.838661,0.65122,0.500014,0.16118,0.209785,0.933688,0.785509,0.775522,0.448304,0.751271,0.281962,0.00199986,0.27348,0.490457,0.769751,0.563037,0.191634,0.596414,0.677232,0.446471,0.350753,0.269032,0.365186,0.781005,0.391294,0.84862,0.607116,0.847167,0.651002,0.653046,0.929812,0.532139,0.881903,0.245631,|0.376355,0.66859,0.30686,0.693241,0.792838,0.0614452,0.822897,0.739463,0.858186,0.88883,0.269165,0.892402,0.682455,0.212035,0.171624,0.440784,0.969765,0.273507,0.0491822,0.0896283,0.416564,0.400414,0.209759,0.0774579,0.0636707,0.34196,0.540935,0.492307,0.338033,0.941093,0.0538291,0.360212,0.750035,0.0998655,0.499832,0.560178,0.467842,0.621173,0.310981,0.530283,0.49596,0.247872,0.449317,0.159794,0.110309,0.901631,0.40583,0.246044,0.818596,0.721407,0.299282,0.843522,0.722779,0.390092,0.99776,0.528563,0.487552,0.0820747,0.261648,0.230995,0.275959,0.501912,0.220847,0.900634,0.461073,0.827887,0.752843,0.283436,0.0670557,0.575602,0.398847,0.879767,0.108687,0.157907,0.551292,0.661543,0.880139,0.157049,0.0222991,0.93664,0.370534,0.139399,0.704882,0.613769,0.861077,0.990879,0.142927,0.246638,0.421166,0.200077,0.0428695,0.49228,0.984381,0.152205,0.862391,0.196985,0.972139,0.296218,0.000412345,0.726274,0.851094,0.9404,0.164364,0.499605,0.630034,0.286282,0.181676,0.035719,0.665048,0.47095,0.483155,0.661038,0.730418,0.538055,0.335522,0.23958,0.335873,0.55316,0.0430126,0.528479,0.79247,0.364225,0.682712,0.287971,0.115813,0.0421212,0.715106,0.489775,0.382526,0.814376,0.939542,0.179994,0.71095,0.316765,0.312254,0.205408,0.377458,0.416824,0.903704,0.0919442,0.818532,0.0634217,0.717423,0.385982,0.909205,0.788161,0.435952,0.0564013,0.0447839,0.173804,0.636369,0.745625,0.768171,0.344845,0.476685,0.204102,0.77239,0.849939,0.627179,0.91496,0.048561,0.00266504,0.381278,0.584682,0.252204,0.205074,0.937238,0.108979,0.607246,0.230015,0.633069,0.137931,0.807413,0.729676,0.424098,0.999475,0.120995,0.563911,0.830888,0.524844,0.0849947,0.253259,0.47963,0.688533,0.553488,0.503063,0.555924,0.00407416,0.488799,0.94642,0.243182,0.267643,0.952933,0.45092,0.135157,0.44744,0.475396,0.472945,0.904698,0.121488,0.973593,0.113536,0.238871,0.943158,0.155019,0.438186,0.684831,0.609335,0.486546,0.979521,0.583559,0.722671,0.324988,0.859986,0.689661,0.931735,0.329239,0.122854,0.814093,0.956417,0.177183,0.72502,0.890856,0.238895,0.407276,0.655565,0.403518,0.802833,0.0116771,0.577631,0.703364,0.887027,0.00529265,0.989303,0.0733691,0.532673,0.251022,0.828414,0.820877,0.208811,0.812371,0.703315,0.119175,0.169247,0.891494,0.958939,0.0589476,0.353287,0.446765,0.514766,0.541215,0.468409,0.31647,0.696575,0.330395,0.768872,0.705341,0.132246,0.477414,0.594813,0.0609848,0.52582,0.544535,0.120852,0.515176,0.351209,0.640832,0.169023,0.824308,0.0468823,0.577344,0.922112,0.0735652,0.529362,0.347759,0.303469,0.0432621,0.471109,0.765251,0.942576,0.541655,0.362835,0.183109,0.607665,0.0112316,0.163613,0.1925,0.915707,0.154986,0.332544,0.286639,0.157872,0.0589037,0.453098,0.978561,0.0860006,0.124883,0.44369,0.239944,0.928325,0.641577,0.111356,0.070105,0.577052,0.389466,0.339013,0.272539,0.509407,0.365402,0.659972,0.24386,0.993937,0.0260218,0.793298,0.591638,0.103767,0.808742,0.554657,0.614192,0.422756,0.593279,0.390794,0.306936,0.866488,0.809597,0.250947,0.48044,0.950647,0.239603,0.866182,0.540342,0.311943,0.122531,0.951801,0.468264,0.351864,0.341098,0.295017,0.188579,0.0191699,0.83991,0.752769,0.691975,0.759122,0.7877,0.950261,0.705944,0.443701,0.331734,0.486533,0.236443,0.00056529,0.271438,0.541401,0.760728,0.275059,0.5884,0.0846911,0.574699,0.32814,0.923295,0.772492,0.411547,0.711293,0.175766,0.579647,0.737798,0.272809,0.265996,0.549431,0.242936,0.313428,0.616966,0.554422,0.135471,0.513053,0.372881,0.909251,0.337112,0.622963,0.206896,0.149327,0.791906,0.699579,0.051623,0.0798792,0.0648787,0.908759,0.431868,0.764592,0.46542,0.55496,0.834875,0.011028,0.322532,0.136554,0.525422,0.827345,0.964816,0.337694,0.958954,0.911761,0.0850807,0.00172204,0.694971,0.0324694,0.687043,0.83895,0.505472,0.0513999,0.0106368,0.510114,0.297718,0.487099,0.390565,0.491141,0.913023,0.708616,0.339608,0.538883,0.292312,0.319947,0.616115,0.702917,0.170302,0.594127,0.538973,0.71473,0.374566,0.943403,0.890597,0.816905,0.63308,0.863048,0.86433,0.0892656,0.151417,0.982822,0.336292,0.463689,0.661172,0.274193,0.959306,0.263827,0.825253,0.988137,0.42779,0.561106,0.382257,0.226758,0.378745,0.138541,0.267894,0.578417,0.557075,0.880684,0.905959,0.0711832,0.362003,0.998198,0.451848,0.743229,0.365137,0.607767,0.7232,0.663154,0.444112,0.524275,0.199602,0.489375,0.606906,0.554049,0.29036,0.128537,0.612475,0.413077,0.283386,0.275091,0.634843,0.439399,0.715669,0.768575,0.0186049,0.0497402,0.402679,0.884805,0.672991,0.696655,0.587253,0.301268,0.65682,0.299385,0.0652076,0.653506,0.231312,0.844649,0.151606,0.471612,0.949011,0.638853,0.495078,0.563646,0.516451,0.530462,0.310184,0.694646,0.38707,0.880596,0.635884,0.833683,0.559028,0.137424,0.70732,0.932322,0.296468,0.928795,0.529906,0.52217,0.472032,0.728586,0.48633,0.437992,0.770719,0.143708,0.887166,0.782934,0.889705,0.552148,0.436772,0.328233,0.43607,0.547779,0.137048,0.0189984,0.396893,0.0496484,0.041425,0.273228,0.237189,0.593809,0.487432,0.0427091,0.277699,0.25029,0.173066,0.86284,0.121321,0.289734,0.222136,0.323004,0.0453115,0.966292,0.145023,0.345814,0.229406,0.872189,0.686802,0.903586,0.0653346,0.971677,0.936047,0.335977,0.639518,0.741111,0.997789,0.0946901,0.733107,0.589243,0.65115,0.592679,0.267084,0.189374,0.350555,0.268639,0.524721,0.460656,0.863346,0.139186,0.667958,0.651179,0.555656,0.773179,0.614018,0.21593,0.340167,0.30713,0.593531,0.732414,0.546369,0.47804,0.250575,0.616281,0.705868,0.572107,0.119713,0.848786,0.900144,0.221391,0.903864,0.166982,0.659508,0.0618522,0.734467,0.9684,0.299352,0.397383,0.541188,0.175988,0.0752536,0.745392,0.767004,0.160941,0.0871395,0.57354,0.504563,0.398531,0.749242,0.996284,0.260191,0.875885,0.34627,0.461648,0.502659,0.0885192,0.869711,0.989834,0.643619,0.757544,0.795683,0.753304,0.247811,0.89521,0.698627,0.423976,0.89789,0.831284,0.577384,0.0279422,0.594884,0.257392,0.530113,0.159502,0.186068,0.404058,0.0999396,0.87287,0.644297,0.313641,0.393145,0.317847,0.352263,0.742218,0.406304,0.728172,0.903573,0.867985,0.556067,0.95774,0.466378,0.311531,0.0163541,0.314814,0.046689,0.546596,0.958974,0.293397,0.53414,0.594198,0.745612,0.576454,0.52788,0.740617,0.299554,0.91227,0.446366,0.775196,0.139552,0.796176,0.591347,0.839617,0.632702,0.206055,0.341541,0.298386,0.218974,0.249822,0.693699,0.639562,0.208544,0.0413908,0.461422,0.128941,0.370772,0.124382,0.212451,0.0753923,0.208015,0.118319,0.113028,0.969388,0.515698,0.215459,0.482358,0.92338,0.897005,0.333861,0.538129,0.333803,0.858384,0.0377447,0.795273,0.800729,0.906728,0.204021,0.202468,0.0555775,0.863376,0.588958,0.538987,0.964172,0.205231,0.781462,0.263824,0.704469,0.151836,0.52985,0.256454,0.89475,0.17217,0.520873,0.963278,0.753195,0.587093,0.0567313,0.866642,0.320592,0.93175,0.908563,0.58365,0.361037,0.246369,0.577846,0.722248,0.712719,0.19957,0.408218,0.53724,0.32168,0.085145,0.809622,0.511292,0.489307,0.980873,0.141951,0.111738,0.422694,0.400255,0.449925,0.74684,0.214626,0.609154,0.871337,0.0563729,0.886232,0.317987,0.947661,0.436902,0.562891,0.274167,0.00917214,0.580718,0.130317,0.774094,0.895215,0.548649,0.596498,0.55582,0.150949,0.978803,0.384551,0.41735,0.292087,0.181826,0.66023,0.408326,0.323075,0.0661266,0.0562521,0.574009,0.0988142,0.311709,0.682358,0.382464,0.134975,0.618683,0.727104,0.398028,0.772341,0.227845,0.615868,0.443945,0.0289488,0.779448,0.5469,0.177618,0.26352,0.917865,0.0763524,0.301497,0.888602,0.178156,0.405224,0.643664,0.391726,0.722282,0.183002,0.520343,0.137983,0.997165,0.734289,0.00293547,0.674751,0.652561,0.254319,0.0844643,0.350159,0.215762,0.571675,0.361342,0.513589,0.511971,0.95595,0.40549,0.898743,0.062338,0.755199,0.294131,0.680981,0.192426,0.434218,0.612696,0.644912,0.673975,0.0588263,0.552305,0.512609,0.603874,0.724194,0.440227,0.00083667,0.726816,0.58057,0.499784,0.192925,0.279738,0.445116,0.0962616,0.262551,0.539445,0.878484,0.684791,0.439852,0.977452,0.0766397,0.809964,0.797066,0.100755,0.509524,0.815406,0.767235,0.431061,0.638176,0.214946,0.133246,0.937244,0.98935,0.882098,0.041481,0.620642,0.49634,0.469038,0.980186,0.442841,0.187636,0.917808,0.970851,0.837779,0.715555,0.0632227,0.876453,0.83982,0.387393,0.308473,0.0631445,0.742992,0.451094,0.249184,0.768415,0.98318,0.885468,0.582575,0.278136,0.909214,0.40627,0.803104,0.877976,0.766825,0.411719,0.789576,0.288897,0.252524,0.53087,0.154555,0.262371,0.530864,0.974096,0.330187,0.446923,0.293669,0.0139706,0.585636,0.95541,0.750406,0.603534,0.309827,0.923115,0.118275,0.239659,0.370835,0.266913,0.755962,0.980525,0.397135,0.0662292,0.506165,0.154634,0.175567,0.458148,0.84786,0.521674,0.340391,0.342072,0.107266,0.616573,0.0294339,0.165442,0.399737,0.401682,0.414664,0.469627,0.647883,0.747891,0.0497515,0.324342,0.871947,0.332353,0.123124,0.210272,0.460802,0.112137,0.209319,0.965267,0.94491,0.108914,0.177384,0.848913,0.363329,0.591556,0.723139,0.0615954,0.204572,0.55872,0.376887,0.269235,0.911585,0.545235,0.467635,0.202541,0.380222,0.822491,0.617305,0.937828,0.0140795,0.845466,0.682251,0.160997,0.470022,0.625986,0.825283,0.144638,0.575312,0.435241,0.651064,0.509963,0.872927,0.497703,0.481936,0.104806,0.411473,0.3231,|0.568143,0.13559,0.466873,0.807707,0.164977,0.657267,0.63538,0.810563,0.105815,0.91759,0.540161,0.779042,0.191501,0.174491,0.260262,0.962254,0.621147,0.209199,0.459621,0.853057,0.780471,0.931287,0.492441,0.0187117,0.439512,0.575156,0.44726,0.306862,0.498199,0.359345,0.827027,0.68645,0.764913,0.491979,0.484751,0.730242,0.473074,0.0396613,0.144822,0.175952,0.615038,0.372319,0.155595,0.955602,0.822529,0.557388,0.565669,0.142383,0.831939,0.813605,0.644432,0.931766,0.475572,0.878445,0.286669,0.884618,0.549005,0.819158,0.931341,0.66949,0.489187,0.909258,0.929429,0.5148,0.238847,0.57926,0.329825,0.0194634,0.414779,0.160408,0.379944,0.417431,0.737441,0.658227,0.00570375,0.360154,0.376707,0.796829,0.848657,0.144841,0.862462,0.190147,0.0066787,0.460589,0.12573,0.950804,0.265333,0.488122,0.562484,0.948252,0.347543,0.377025,0.513499,0.396483,0.758987,0.828556,0.272179,0.548658,0.19094,0.357188,0.457904,0.754112,0.126125,0.869305,0.278948,0.158065,0.904515,0.987508,0.29539,0.0305073,0.818689,0.484624,0.204724,0.722798,0.351987,0.15417,0.994413,0.0716332,0.958478,0.638952,0.229329,0.336895,0.963558,0.355614,0.315218,0.581829,0.326813,0.477023,0.390705,0.43142,0.627515,0.615232,0.232246,0.304723,0.923146,0.114475,0.493665,0.102981,0.187948,0.764104,0.633641,0.659366,0.526935,0.356369,0.374892,0.966121,0.176708,0.408516,0.830478,0.529395,0.614789,0.21582,0.779051,0.59324,0.136461,0.240198,0.980012,0.439987,0.986272,0.386101,0.971754,0.579821,0.416604,0.113728,0.0438045,0.303468,0.637559,0.209098,0.819286,0.917608,0.967361,0.940179,0.0109423,0.237714,0.204394,0.109912,0.721249,0.390876,0.410507,0.713197,0.102597,0.0347618,0.443811,0.283983,0.204435,0.935512,0.95919,0.58875,0.426377,0.551516,0.542243,0.30163,0.418142,0.718111,0.427209,0.527561,0.0366332,0.954349,0.048089,0.304171,0.771232,0.33131,0.348348,0.421462,0.266386,0.546855,0.198066,0.815768,0.416014,0.424947,0.946562,0.156768,0.601827,0.140902,0.798139,0.810577,0.0178356,0.29154,0.0790634,0.483968,0.994516,0.480951,0.51937,0.5189,0.207061,0.936334,0.799319,0.32307,0.817423,0.971026,0.119876,0.981337,0.636286,0.173908,0.512091,0.372543,0.875938,0.992269,0.418411,0.869897,0.646604,0.643114,0.0599362,0.626902,0.907422,0.263927,0.772666,0.170103,0.191195,0.218026,0.688573,0.600985,0.715055,0.618095,0.443739,0.260487,0.554855,0.0993002,0.940639,0.223786,0.574309,0.546824,0.218183,0.935891,0.694364,0.828299,0.161736,0.860978,0.630378,0.179654,0.502154,0.606739,0.721788,0.332781,0.137821,0.534284,0.780355,0.188114,0.597945,0.294171,0.763534,0.454432,0.911131,0.3522,0.851662,0.975742,0.900052,0.372997,0.218102,0.980581,0.373994,0.771573,0.565957,0.148493,0.45386,0.295878,0.97259,0.134871,0.618241,0.272926,0.556367,0.188218,0.585479,0.89576,0.694691,0.804666,0.413329,0.536103,0.201608,0.253061,0.215422,0.486651,0.780038,0.0725199,0.21295,0.328514,0.458085,0.915464,0.725917,0.964026,0.0492744,0.404827,0.366269,0.0925679,0.509624,0.53775,0.936267,0.848545,0.20868,0.419955,0.555321,0.291837,0.823538,0.609125,0.343354,0.403932,0.803468,0.373426,0.814532,0.343235,0.461332,0.207388,0.564788,0.657704,0.318851,0.40241,0.925374,0.0575578,0.327394,0.611554,0.364796,0.736124,0.0924383,0.809535,0.676156,0.150852,0.979135,0.109414,0.718751,0.959008,0.32792,0.866898,0.813231,0.166017,0.333791,0.340015,0.472436,0.501088,0.0752267,0.58044,0.459938,0.303723,0.467623,0.229935,0.175136,0.388871,0.19705,0.75772,0.13805,0.0536691,0.890198,0.804795,0.66012,0.55165,0.222931,0.53042,0.9375,0.583627,0.0502446,0.661599,0.415143,0.892149,0.182235,0.824916,0.310738,0.864842,0.73987,0.847464,0.118075,0.180019,0.804781,0.0624813,0.0978138,0.879548,0.542402,0.554076,0.0512064,0.670568,0.38502,0.883738,0.587312,0.078068,0.959431,0.532373,0.340054,0.787473,0.110978,0.367815,0.17863,0.169957,0.675514,0.300249,0.210523,0.650091,0.122143,0.952391,0.386447,0.438111,0.615295,0.0992559,0.544908,0.10055,0.392751,0.0789435,0.663861,0.757497,0.219155,0.269954,0.712539,0.702372,0.150224,0.190399,0.417142,0.749696,0.738891,0.124376,0.690298,0.171369,0.0642709,0.683778,0.908609,0.723383,0.788022,0.983812,0.691193,0.62322,0.791689,0.490179,0.189946,0.500379,0.871129,0.21577,0.277769,0.00286043,0.957499,0.209981,0.749334,0.578363,0.374942,0.617047,0.313501,0.906945,0.125929,0.93179,0.545379,0.593209,0.884479,0.20417,0.689764,0.103899,0.56733,0.886694,0.831704,0.185956,0.731707,0.428304,0.766111,0.539236,0.906411,0.170587,0.619393,0.80446,0.341185,0.0961861,0.465785,0.175101,0.751281,0.202853,0.594808,0.639289,0.938071,0.494208,0.969515,0.25427,0.305007,0.299461,0.0217924,0.86999,0.103968,0.142006,0.364369,0.289618,0.714038,0.958141,0.204662,0.0151748,0.879398,0.697579,0.38304,0.345687,0.558526,0.956545,0.864011,0.724688,0.509842,0.229492,0.915227,0.344223,0.352327,0.612297,0.774468,0.115394,0.424604,0.486539,0.523093,0.351964,0.039776,0.408381,0.158492,0.347229,0.0618986,0.619969,0.895444,0.585684,0.363999,0.596752,0.633472,0.571897,0.925972,0.90184,0.354089,0.11851,0.349219,0.684217,0.148071,0.151027,0.478842,0.485415,0.421624,0.574746,0.0711465,0.410866,0.0884793,0.0417328,0.521681,0.722786,0.942098,0.567222,0.391589,0.1978,0.637304,0.222818,0.613165,0.555276,0.731085,0.502822,0.734868,0.649569,0.450485,0.014236,0.690294,0.582838,0.959434,0.174471,0.172545,0.519446,0.572958,0.232077,0.846999,0.21555,0.140053,0.0581223,0.98778,0.87239,0.197555,0.115706,0.00458914,0.546853,0.886228,0.352279,0.795592,0.265971,0.712889,0.19306,0.78105,0.899636,0.895666,0.939891,0.374642,0.682223,0.644854,0.961837,0.231263,0.847145,0.549594,0.798983,0.96588,0.898605,0.588793,0.380678,0.0206437,0.129326,0.541655,0.323726,0.735859,0.0875537,0.71527,0.821942,0.0137139,0.66124,0.303397,0.434429,0.569791,0.663661,0.351651,0.187028,0.941823,0.744348,0.216821,0.152074,0.537744,0.281929,0.580038,0.648199,0.107069,0.492923,0.29727,0.263503,0.836806,0.744457,0.277536,0.281264,0.455638,0.250879,0.350256,0.0673356,0.0156986,0.0904936,0.654472,0.611328,0.663402,0.3619,0.602834,0.301513,0.130352,0.847539,0.837615,0.0270107,0.507129,0.214146,0.712874,0.0571703,0.680624,0.888412,0.120171,0.557946,0.436216,0.269929,0.308182,0.265004,0.479526,0.391322,0.646313,0.0911993,0.314697,0.175207,0.279324,0.20323,0.472289,0.158116,0.326407,0.245274,0.172095,0.193216,0.896268,0.265424,0.0986274,0.805483,0.81064,0.578204,0.883732,0.784586,0.683202,0.669925,0.279777,0.757129,0.0646067,0.721322,0.807569,0.358124,0.209215,0.80882,0.981915,0.157326,0.511912,0.32113,0.559844,0.218244,0.229465,0.10987,0.868506,0.514041,0.497341,0.368492,0.884197,0.771931,0.37125,0.0836281,0.387062,0.304788,0.639032,0.163819,0.535453,0.152804,0.0916173,0.811552,0.376003,0.83562,0.897267,0.195175,0.26663,0.526916,0.645972,0.984106,0.767958,0.825337,0.207297,0.0383465,0.472521,0.339424,0.216018,0.913369,0.829557,0.0914378,0.845882,0.604258,0.225635,0.249539,0.783753,0.0273915,0.437912,0.171212,0.01502,0.931795,0.652872,0.383056,0.0747188,0.267378,0.815473,0.628879,0.117579,0.899929,0.0315051,0.167358,0.373483,0.425924,0.463099,0.723638,0.939821,0.270605,0.957257,0.823987,0.528819,0.141895,0.990073,0.640817,0.375893,0.299042,0.873767,0.0194438,0.832751,0.488941,0.978163,0.634591,0.0887375,0.133997,0.259864,0.834072,0.404651,0.652626,0.850183,0.579266,0.380898,0.732419,0.183492,0.979412,0.897936,0.147197,0.791959,0.051892,0.186073,0.279918,0.0952517,0.155276,0.555452,0.534078,0.334846,0.278314,0.530782,0.835692,0.590624,0.509,0.0976502,0.41616,0.107651,0.867298,0.365931,0.521389,0.545217,0.689281,0.522243,0.665047,0.0944327,0.734127,0.248624,0.613318,0.0608324,0.691462,0.732542,0.431339,0.473948,0.395979,0.414404,0.252375,0.0269252,0.86349,0.977033,0.383868,0.834506,0.0581041,0.346928,0.880098,0.416845,0.591841,0.507627,0.551431,0.254819,0.336261,0.403508,0.191242,0.905715,0.544574,0.0875375,0.581397,0.019227,0.0139796,0.776406,0.831966,0.916367,0.0127017,0.132966,0.352586,0.365831,0.629474,0.34217,0.952373,0.613083,0.335972,0.788937,0.305171,0.175819,0.505958,0.585288,0.342102,0.425957,0.993143,0.270804,0.922544,0.384794,0.244527,0.730443,0.470186,0.162052,0.74393,0.157356,0.882137,0.74297,0.692856,0.599562,0.63827,0.20901,0.895322,0.854511,0.451266,0.66063,0.582363,0.113476,0.550834,0.635912,0.959024,0.622979,0.785607,0.876478,0.57954,0.776227,0.181215,0.236502,0.0651456,0.153312,0.448586,0.547905,0.146151,0.971153,0.995593,0.139018,0.0947511,0.440204,0.171381,0.113519,0.480876,0.909635,0.154768,0.708172,0.220654,0.632711,0.678499,0.649628,0.88644,0.702996,0.984044,0.431027,0.760413,0.895558,0.194951,0.870028,0.844952,0.812823,0.665185,0.202263,0.87143,0.937041,0.970427,0.991189,0.0181473,0.940645,0.11083,0.147628,0.136281,0.879886,0.12009,0.821755,0.800725,0.770381,0.941505,0.214145,0.0925445,0.480689,0.837541,0.226385,0.406815,0.0461106,0.444452,0.78349,0.383598,0.921491,0.280055,0.321932,0.079796,0.123797,0.494145,0.512496,0.789818,0.653561,0.713562,0.485005,0.976845,0.792487,0.180537,0.745537,0.15822,0.79095,0.262002,0.493156,0.520429,0.820669,0.080273,0.397256,0.649805,0.975459,0.605799,|0.874256,0.706406,0.985479,0.679787,0.372252,0.468836,0.732783,0.467105,0.908042,0.719999,0.167767,0.896047,0.382663,0.199387,0.278123,0.590466,0.82277,0.213384,0.623069,0.986445,0.52989,0.499582,0.148563,0.308115,0.48551,0.211481,0.532451,0.967685,0.365619,0.959775,0.312729,0.819229,0.912783,0.0632105,0.472833,0.0848422,0.312676,0.75996,0.75185,0.812175,0.97091,0.678745,0.0143065,0.947892,0.527913,0.654056,3.58224e-05,0.777814,0.767887,0.432139,0.0727364,0.766545,0.519412,0.832806,0.70393,0.329953,0.22255,0.288923,0.236145,0.470764,0.0372944,0.365782,0.417193,0.0057559,0.960496,0.50688,0.0148183,0.269815,0.206015,0.639655,0.669172,0.468599,0.803427,0.735181,0.612523,0.17752,0.227004,0.617153,0.974503,0.779889,0.848399,0.200365,0.407121,0.0104041,0.93082,0.523137,0.660114,0.556884,0.0382197,0.170204,0.663998,0.406625,0.299758,0.0569282,0.458282,0.788234,0.444537,0.544027,0.866377,0.732365,0.167342,0.623036,0.288351,0.350136,0.150292,0.586679,0.515086,0.742288,0.771929,0.941717,0.240923,0.602672,0.0322423,0.706981,0.592552,0.17526,0.892337,0.520324,0.019165,0.0311139,0.397528,0.220991,0.678306,0.793483,0.204471,0.543712,0.923278,0.452405,0.124932,0.0419027,0.623944,0.128142,0.244388,0.690334,0.933239,0.826285,0.133392,0.0392007,0.646774,0.0248235,0.407731,0.816571,0.669106,0.447668,0.238826,0.679858,0.69281,0.642343,0.980325,0.344358,0.883782,0.392543,0.0567454,0.848064,0.108485,0.339425,0.946711,0.705747,0.539342,0.15639,0.85881,0.314631,0.145221,0.1619,0.521973,0.830568,0.345778,0.379023,0.92434,0.15082,0.702192,0.533263,0.091068,0.740708,0.0915933,0.600726,0.62347,0.110496,0.243315,0.380761,0.256632,0.781036,0.152027,0.290428,0.455096,0.462051,0.91526,0.129408,0.189371,0.520985,0.307942,0.92663,0.715577,0.906795,0.907368,0.050962,0.0725282,0.271048,0.286244,0.813973,0.386815,0.926282,0.990122,0.657876,0.094929,0.041901,0.132156,0.796622,0.221909,0.202809,0.000816286,0.342428,0.464202,0.751468,0.106959,0.206331,0.474547,0.771758,0.898798,0.962788,0.481244,0.864617,0.129328,0.810252,0.208081,0.984443,0.395676,0.11039,0.108644,0.628976,0.401082,0.422756,0.472756,0.335916,0.98291,0.585519,0.0915341,0.56099,0.328171,0.347192,0.52988,0.431254,0.662455,0.395326,0.543548,0.366144,0.420427,0.0945281,0.290677,0.220676,0.774745,0.99974,0.621774,0.0340481,0.682124,0.415661,0.425321,0.931317,0.385635,0.538536,0.825777,0.363946,0.750228,0.0406626,0.507444,0.339487,0.725883,0.386655,0.511779,0.52315,0.276341,0.711469,0.963489,0.373487,0.958992,0.866972,0.460083,0.557388,0.311276,0.30166,0.0977383,0.135473,0.776954,0.738033,0.969049,0.439093,0.667045,0.65416,0.0700575,0.0343675,0.523783,0.361003,0.26852,0.491086,0.694771,0.214837,0.584477,0.534294,0.469895,0.446901,0.269048,0.0438231,0.351404,0.872426,0.0787793,0.56085,0.153085,0.646625,0.0423582,0.492462,0.442552,0.222111,0.849743,0.367419,0.220818,0.0190258,0.1063,0.926324,0.962505,0.287134,0.486725,0.270051,0.657692,0.633517,0.603047,0.331397,0.598248,0.368537,0.547192,0.975505,0.232718,0.191078,0.654455,0.314059,0.553438,0.216617,0.845196,0.411166,0.736037,0.118113,0.0902435,0.621454,0.429899,0.0978833,0.345965,0.174056,0.694521,0.403046,0.748459,0.118444,0.375566,0.196133,0.572751,0.994209,0.768944,0.335554,0.835695,0.940127,0.588007,0.924379,0.970552,0.891103,0.330968,0.806427,0.103811,0.0571586,0.0666606,0.432273,0.828852,0.542694,0.510679,0.0800917,0.0351629,0.602237,0.468897,0.205667,0.763708,0.133198,0.63046,0.844683,0.543149,0.287467,0.22412,0.976591,0.62423,0.5037,0.742246,0.988382,0.155781,0.571855,0.709611,0.392324,0.843894,0.784719,0.744764,0.69727,0.295744,0.539911,0.17154,0.138226,0.946297,0.576524,0.715755,0.580958,0.717447,0.886704,0.0679212,0.327428,0.239397,0.747404,0.335623,0.675882,0.500645,0.541149,0.113155,0.385147,0.353876,0.794633,0.28216,0.850463,0.927669,0.681241,0.846345,0.189091,0.951569,0.65279,0.504703,0.197955,0.149401,0.660797,0.391962,0.109745,0.97512,0.175644,0.48625,0.674589,0.24406,0.797879,0.67108,0.473263,0.47324,0.323266,0.91544,0.934011,0.118015,0.575751,0.169374,0.183898,0.560389,0.664009,0.00288224,0.139019,0.403003,0.414459,0.959785,0.347624,0.297481,0.474418,0.523424,0.796609,0.574995,0.991903,0.446856,0.817983,0.0825862,0.697289,0.391698,0.495393,0.822309,0.0415218,0.334213,0.0777028,0.655166,0.393249,0.600308,0.400062,0.982436,0.558562,0.916385,0.415116,0.0792199,0.936345,0.184099,0.697206,0.00802678,0.485762,0.5001,0.867451,0.450136,0.541413,0.801278,0.667709,0.900139,0.757219,0.390267,0.0511769,0.999043,0.66855,0.937257,0.987555,0.340134,0.59896,0.598658,0.13081,0.625412,0.425145,0.135092,0.266458,0.703502,0.515951,0.364811,0.516298,0.863025,0.704433,0.263006,0.958579,0.570969,0.644972,0.459524,0.365115,0.287951,0.958662,0.756395,0.424541,0.643915,0.183515,0.350695,0.0504323,0.61568,0.291029,0.179071,0.108207,0.0514163,0.378894,0.773213,0.883054,0.486178,0.607389,0.394867,0.587072,0.18592,0.072203,0.56976,0.173998,0.447721,0.563189,0.479775,0.658865,0.593628,0.892046,0.0191809,0.418422,0.939978,0.937961,0.285101,0.158975,0.597631,0.164402,0.24206,0.379001,0.409816,0.471974,0.575536,0.324453,0.514385,0.474012,0.717949,0.679977,0.617926,0.799145,0.826144,0.930586,0.607538,0.88278,0.604181,0.415822,0.22688,0.652103,0.111795,0.168445,0.636393,0.113989,0.46675,0.76761,0.0124073,0.792799,0.550793,0.635433,0.438354,0.220541,0.394088,0.0593494,0.152608,0.869148,0.619568,0.945406,0.850203,0.236568,0.97148,0.682002,0.487943,0.0176311,0.484245,0.0769752,0.28786,0.871586,0.238631,0.403345,0.0192297,0.321262,0.998253,0.458986,0.0682145,0.0156552,0.0497426,0.619409,0.156026,0.816475,0.811914,0.911801,0.87832,0.42877,0.321885,0.694442,0.0366861,0.95023,0.755929,0.797413,0.777969,0.118675,0.334018,0.0152624,0.889526,0.527993,0.526586,0.674853,0.071623,0.388459,0.311486,0.217222,0.264867,0.574509,0.614696,0.873428,0.481958,0.117221,0.16968,0.75451,0.412697,0.829917,0.359686,0.443882,0.486038,0.398966,0.358827,0.276591,0.0874865,0.804908,0.524258,0.0489299,0.976644,0.829932,0.734512,0.585951,0.501167,0.132403,0.828702,0.120709,0.863575,0.382523,0.231148,0.541803,0.773854,0.878302,0.0181307,0.107568,0.244023,0.382344,0.137153,0.620869,0.781096,0.938956,0.741677,0.0826165,0.426661,0.400646,0.29129,0.252203,0.944304,0.672049,0.171547,0.0595425,0.227219,0.494927,0.516352,0.0814021,0.318699,0.432061,0.202492,0.217795,0.0582808,0.88073,0.996599,0.674516,0.0833376,0.650733,0.679726,0.387146,0.540904,0.424876,0.549766,0.257852,0.827549,0.539441,0.634994,0.172462,0.985915,0.767905,0.757198,0.384685,0.638547,0.435704,0.0346755,0.534044,0.279592,0.859409,0.922614,0.20297,0.836949,0.413003,0.710015,0.924757,0.836349,0.463553,0.0675833,0.491162,0.9257,0.0588183,0.854443,0.291732,0.774001,0.800712,0.336132,0.744324,0.728957,0.61437,0.777381,0.17132,0.786149,0.442087,0.519406,0.504359,0.194376,0.737999,0.24023,0.209263,0.550491,0.123959,0.131298,0.674948,0.496015,0.154515,0.537699,0.395479,0.875136,0.452113,0.151025,0.693258,0.421767,0.428297,0.0872521,0.312174,0.340921,0.673977,0.78819,0.959676,0.0102034,0.0376831,0.422609,0.483179,0.329709,0.204797,0.997581,0.273739,0.494077,0.119142,0.177906,0.548879,0.407034,0.899164,0.345591,0.77889,0.219993,0.460158,0.360413,0.576719,0.574692,0.329757,0.873632,0.185097,0.680708,0.236683,0.127462,0.432728,0.0974746,0.753013,0.914364,0.800246,0.980133,0.369141,0.287739,0.947332,0.05453,0.180432,0.337714,0.796787,0.50708,0.615247,0.49924,0.873966,0.214676,0.30123,0.368449,0.00195825,0.775661,0.0800351,0.254833,0.127241,0.208221,0.568967,0.321041,0.643573,0.0191512,0.345181,0.475563,0.218298,0.63517,0.888352,0.0597438,0.964377,0.958941,0.819539,0.708895,0.778974,0.00202239,0.125443,0.436652,0.563898,0.889064,0.97008,0.732206,0.850635,0.339927,0.14042,0.816989,0.402122,0.324673,0.544345,0.732719,0.0395682,0.90355,0.400809,0.364933,0.825435,0.941924,0.130433,0.332352,0.123084,0.593995,0.141723,0.25849,0.777107,0.976454,0.584731,0.619511,0.886959,0.217963,0.817234,0.984074,0.78921,0.239569,0.00631094,0.607227,0.693101,0.617604,0.980472,0.199314,0.709011,0.682051,0.657593,0.1537,0.249969,0.231852,0.745547,0.252255,0.242813,0.372475,0.743804,0.417585,0.493357,0.0620578,0.545793,0.591511,0.827723,0.590907,0.747211,0.362951,0.89554,0.144921,0.411056,0.66964,0.880312,0.952699,0.507371,0.700257,0.895944,0.64192,0.554496,0.337705,0.672575,0.923732,0.381551,0.429248,0.68509,0.52496,0.671019,0.687984,0.290382,0.321009,0.0798725,0.00169092,0.394625,0.162437,0.0220873,0.784092,0.838759,0.300718,0.0428648,0.499268,0.527293,0.692244,0.635424,0.0819419,0.72738,0.896392,0.668841,0.365532,0.916801,0.271587,0.569479,0.686333,0.245137,0.726557,0.173211,0.758802,0.719092,0.683674,0.0352687,0.845504,0.946773,0.88114,0.53089,0.74001,0.646513,0.348072,0.687342,0.490201,0.545148,0.544677,0.0595606,0.748909,0.435716,0.00205177,0.73862,0.654102,0.542957,0.486558,0.917611,0.686844,0.946089,0.141535,0.126656,0.11489,0.492502,0.636566,0.0397919,0.228427,0.418022,0.691622,0.875029,0.591938,0.416394,0.250963,0.640746,0.320859,0.597803,0.595127,0.894793,0.400672,0.646403,|0.352901,0.724857,0.578539,0.29542,0.859105,0.95606,0.959602,0.684062,0.436888,0.779998,0.030912,0.429525,0.366893,0.700717,0.477387,0.0621515,0.14761,0.298867,0.704541,0.665473,0.303608,0.957643,0.115506,0.11032,0.956652,0.456715,0.675765,0.0181023,0.711585,0.229294,0.462522,0.540535,0.599399,0.190944,0.82747,0.048192,0.344124,0.822798,0.539185,0.544101,0.266642,0.339372,0.797772,0.857537,0.809839,0.483918,0.922294,0.021742,0.982253,0.797716,0.921127,0.0336258,0.608469,0.322196,0.747401,0.0125505,0.26817,0.829318,0.703193,0.0763444,0.337229,0.877664,0.139511,0.870204,0.387429,0.484941,0.995208,0.359843,0.408734,0.606502,0.402542,0.531987,0.26154,0.744578,0.814006,0.408649,0.500917,0.420383,0.0878561,0.120319,0.30961,0.634297,0.030582,0.890252,0.319557,0.609313,0.859097,0.550131,0.254695,0.55181,0.772814,0.849095,0.494471,0.394421,0.941726,0.173794,0.701688,0.606499,0.282123,0.163336,0.570461,0.0851139,0.0195892,0.32371,0.882556,0.424395,0.0618724,0.354473,0.576397,0.892764,0.937155,0.597973,0.17464,0.0179977,0.401384,0.256431,0.395288,0.0262531,0.660534,0.666252,0.657323,0.718194,0.861975,0.381311,0.635831,0.272672,0.523818,0.61567,0.0440865,0.0372295,0.0512174,0.0828264,0.496488,0.935995,0.668227,0.257873,0.651468,0.00228739,0.937033,0.906088,0.539569,0.886972,0.664965,0.85135,0.677557,0.307296,0.625896,0.152131,0.471503,0.643741,0.421091,0.578452,0.426865,0.181758,0.545943,0.501681,0.939989,0.121393,0.910973,0.443507,0.634608,0.773328,0.598159,0.382863,0.181411,0.310655,0.473721,0.612126,0.222224,0.733736,0.392739,0.315437,0.624457,0.667325,0.343888,0.202078,0.782304,0.01114,0.780231,0.506436,0.0807584,0.748507,0.658763,0.992714,0.807636,0.183978,0.978991,0.829781,0.857425,0.911424,0.200231,0.513507,0.64058,0.357852,0.454895,0.344904,0.374723,0.525383,0.0721142,0.895325,0.4325,0.838631,0.12134,0.20519,0.803656,0.598998,0.130514,0.760577,0.219708,0.587227,0.814776,0.756091,0.816821,0.152312,0.139869,0.637293,0.214236,0.452907,0.956714,0.89338,0.56565,0.0775239,0.268522,0.638839,0.856722,0.711985,0.724471,0.105173,0.871226,0.11517,0.370175,0.522576,0.744592,0.0443458,0.828863,0.979177,0.466225,0.0834414,0.808596,0.801531,0.607516,0.664481,0.913404,0.0714217,0.459547,0.598902,0.836622,0.0210259,0.174689,0.450539,0.266246,0.694648,0.44293,0.879979,0.809067,0.753429,0.829342,0.593422,0.812035,0.317744,0.116385,0.441333,0.413542,0.0364206,0.121881,0.930965,0.266335,0.601707,0.940281,0.948244,0.88921,0.962562,0.0970829,0.253114,0.177699,0.0523862,0.309805,0.729175,0.942908,0.0497218,0.707937,0.566877,0.724,0.581491,0.524991,0.288944,0.460477,0.482915,0.805141,0.226155,0.20697,0.941159,0.0266162,0.423482,0.340672,0.217643,0.0980262,0.252025,0.018181,0.967582,0.537277,0.640582,0.593469,0.707626,0.872492,0.447795,0.636707,0.329294,0.567299,0.754388,0.943914,0.924156,0.600457,0.140628,0.038977,0.453003,0.960581,0.343505,0.433701,0.231828,0.206551,0.267423,0.160469,0.451297,0.517115,0.191326,0.916956,0.490804,0.346751,0.0940935,0.321463,0.204046,0.830349,0.107332,0.462127,0.808401,0.955591,0.242816,0.614553,0.637152,0.379453,0.0885172,0.974187,0.331663,0.812112,0.436457,0.904923,0.935847,0.620291,0.117467,0.0945484,0.0684779,0.526084,0.190456,0.177229,0.818239,0.10834,0.743986,0.726111,0.566022,0.941236,0.740295,0.518465,0.694128,0.711302,0.479907,0.0213892,0.514819,0.525368,0.683385,0.149888,0.750996,0.331293,0.153788,0.164166,0.841583,0.555972,0.261225,0.15772,0.983724,0.988291,0.860821,0.551738,0.285639,0.475661,0.261193,0.943407,0.394041,0.572827,0.0610394,0.403794,0.255988,0.208673,0.00432497,0.512423,0.089774,0.355751,0.494792,0.0544775,0.250745,0.522018,0.982747,0.855773,0.822967,0.521587,0.501098,0.423631,0.958294,0.815917,0.746509,0.486749,0.104818,0.89835,0.813161,0.949663,0.914241,0.166142,0.940551,0.00890964,0.297994,0.165387,0.758972,0.673923,0.595526,0.413494,0.483734,0.807288,0.556941,0.656735,0.201111,0.466422,0.602195,0.534298,0.0873706,0.852788,0.959582,0.194158,0.583735,0.730919,0.679386,0.301682,0.968652,0.915285,0.564599,0.585468,0.315727,0.590122,0.475614,0.679427,0.926888,0.709829,0.73431,0.190695,0.710776,0.249401,0.497917,0.0467623,0.807773,0.318732,0.296286,0.859789,0.646362,0.620608,0.0486953,0.562444,0.662733,0.966605,0.557677,0.510787,0.697473,0.177686,0.515434,0.359997,0.718988,0.820967,0.687187,0.181438,0.31372,0.604174,0.0193092,0.174672,0.68113,0.311685,0.488269,0.706434,0.129759,0.881143,0.731516,0.805992,0.496484,0.790656,0.72367,0.271505,0.980804,0.0778712,0.598216,0.545272,0.99975,0.972571,0.21839,0.91905,0.0356013,0.861187,0.155362,0.988261,0.915549,0.396129,0.182652,0.845836,0.291842,0.428975,0.611905,0.905695,0.407477,0.50851,0.559944,0.232878,0.874157,0.984743,0.800554,0.784129,0.181762,0.205936,0.704076,0.833751,0.550275,0.0643628,0.257255,0.612945,0.829073,0.385702,0.398279,0.965115,0.206296,0.0222256,0.570259,0.161379,0.0281955,0.727411,0.524943,0.281567,0.311685,0.2367,0.266306,0.588646,0.914962,0.73984,0.249441,0.390733,0.0510151,0.727449,0.416645,0.969354,0.237955,0.960661,0.935041,0.887819,0.0108252,0.119875,0.682894,0.308913,0.542806,0.133812,0.816585,0.245718,0.763625,0.188447,0.914855,0.980813,0.592966,0.376733,0.707587,0.273044,0.445315,0.673649,0.357529,0.919077,0.531762,0.283156,0.656276,0.734414,0.943667,0.88998,0.869988,0.0708938,0.979725,0.555305,0.19791,0.14878,0.729286,0.601234,0.141681,0.0744,0.283448,0.382197,0.508363,0.219618,0.133718,0.928394,0.663498,0.47283,0.214559,0.602693,0.223603,0.462271,0.190257,0.772929,0.496876,0.372989,0.984775,0.907509,0.414795,0.741807,0.410155,0.117822,0.666781,0.7336,0.916433,0.448613,0.640519,0.0961179,0.203051,0.0790664,0.0579064,0.0386859,0.0714771,0.450933,0.785999,0.107946,0.0110056,0.337293,0.455841,0.192589,0.486011,0.940115,0.656505,0.527774,0.102101,0.872081,0.577066,0.0128448,0.87479,0.0784824,0.778798,0.955113,0.137392,0.990199,0.878069,0.197409,0.650728,0.337388,0.482536,0.867009,0.626749,0.662732,0.462604,0.440558,0.595602,0.779827,0.891144,0.49021,0.566384,0.847655,0.0123624,0.866493,0.285566,0.0834265,0.612965,0.619381,0.840381,0.406527,0.981611,0.20663,0.511333,0.0972995,0.756705,0.0845132,0.770436,0.490366,0.746653,0.968949,0.624503,0.51307,0.527806,0.0571698,0.0156554,0.968339,0.831387,0.887404,0.563076,0.493661,0.73222,0.427861,0.79535,0.871952,0.685703,0.684251,0.961697,0.811672,0.343057,0.23688,0.792064,0.660703,0.934046,0.849394,0.121457,0.973298,0.423495,0.18521,0.978835,0.635327,0.991432,0.894414,0.429796,0.93033,0.965146,0.730617,0.840826,0.417129,0.849244,0.40577,0.775659,0.682889,0.786602,0.176425,0.78552,0.253022,0.370512,0.0953284,0.856093,0.131686,0.453929,0.84599,0.788459,0.107699,0.215402,0.752073,0.773418,0.645129,0.302314,0.716922,0.544192,0.224757,0.00332522,0.701314,0.864868,0.640467,0.463344,0.0959049,0.95388,0.809726,0.113899,0.78069,0.61111,0.353735,0.436215,0.0834584,0.14093,0.806668,0.267858,0.151035,0.195118,0.393858,0.56206,0.466386,0.873594,0.212106,0.706005,0.66633,0.0340137,0.843512,0.638277,0.0112012,0.909807,0.766888,0.518343,0.372658,0.779862,0.610077,0.374221,0.446938,0.253657,0.564799,0.262138,0.545744,0.585619,0.00992447,0.931742,0.857949,0.485608,0.761172,0.522575,0.922095,0.867249,0.184676,0.428006,0.783663,0.523028,0.688551,0.45347,0.683607,0.24518,0.43672,0.996778,0.692852,0.707996,0.528804,0.312329,0.478789,0.347501,0.671696,0.641049,0.784019,0.291918,0.480105,0.58027,0.549482,0.599697,0.170452,0.11608,0.562732,0.728489,0.464807,0.682098,0.309448,0.174465,0.512448,0.916497,0.214405,0.0231508,0.334955,0.0402473,0.347165,0.726488,0.682908,0.746949,0.130756,0.418838,0.287732,0.613794,0.713831,0.34761,0.842264,0.105632,0.260252,0.680211,0.394773,0.947436,0.291025,0.0102895,0.82404,0.251063,0.647358,0.688939,0.89849,0.930567,0.696342,0.226729,0.064801,0.505204,0.196423,0.620907,0.808717,0.517246,0.0982895,0.600736,0.00031662,0.893153,0.78495,0.284066,0.971126,0.639293,0.877108,0.898061,0.185554,0.261885,0.602423,0.897238,0.104154,0.338365,0.345171,0.468571,0.658283,0.162452,0.35179,0.759936,0.227182,0.999322,0.308108,0.738166,0.316802,0.102616,0.104316,0.368539,0.129492,0.315603,0.30173,0.367487,0.887952,0.87165,0.983864,0.444199,0.422696,0.370535,0.784945,0.412322,0.460564,0.528699,0.353064,0.891668,0.639856,0.51389,0.435397,0.0150632,0.877854,0.98367,0.451677,0.773722,0.53918,0.261314,0.378007,0.503132,0.695689,0.776495,0.207296,0.0128316,0.107044,0.296012,0.194406,0.116747,0.482082,0.337473,0.436121,0.390467,0.453547,0.212224,0.397475,0.690316,0.978009,0.960999,0.609641,0.713374,0.717246,0.948588,0.0344121,0.166188,0.99304,0.558137,0.806739,0.182337,0.531033,0.59075,0.443977,0.044608,0.844578,0.828447,0.145058,0.0240641,0.450552,0.62013,0.883711,0.825837,0.459961,0.700586,0.945143,0.746997,0.611082,0.719769,0.654228,0.770764,0.058911,0.333838,0.296225,0.591765,0.3903,0.323722,0.969549,0.608556,0.571582,0.598647,0.862164,0.956994,0.813825,0.490541,0.647551,0.857659,0.767724,0.0298492,0.789093,0.670692,0.340425,0.134949,0.657508,0.986147,0.243624,0.704623,0.718794,0.63496,0.207543,0.251259,|0.0623664,0.703707,0.572134,0.697986,0.0616405,0.213323,0.154398,0.193263,0.262556,0.0915526,0.0112545,0.263727,0.513204,0.20562,0.97319,0.987482,0.619329,0.664266,0.252752,0.256288,0.557088,0.15603,0.02947,0.917098,0.327083,0.756029,0.548538,0.485442,0.105278,0.496725,0.618906,0.847519,0.195722,0.672468,0.294237,0.434609,0.426277,0.937102,0.929692,0.797177,0.197791,0.947943,0.642817,0.317364,0.460945,0.976273,0.841032,0.581734,0.281329,0.546983,0.293172,0.111939,0.345602,0.99891,0.216136,0.182442,0.6304,0.591926,0.0564099,0.139189,0.896085,0.75265,0.37298,0.446891,0.949054,0.117187,0.814622,0.515476,0.918991,0.627161,0.487842,0.734941,0.20243,0.0645774,0.0939301,0.334732,0.250503,0.378529,0.725612,0.0248651,0.888584,0.128813,0.57761,0.601797,0.608465,0.409602,0.427857,0.0366858,0.39288,0.779239,0.197352,0.464953,0.352787,0.872775,0.527497,0.83215,0.899485,0.338701,0.858183,0.174271,0.00349313,0.920491,0.1101,0.143648,0.66895,0.223912,0.922415,0.985533,0.0783079,0.0910392,0.329351,0.24695,0.608053,0.124761,0.35566,0.592417,0.181195,0.269952,0.555821,0.53012,0.716452,0.106959,0.63842,0.869011,0.628394,0.216924,0.126016,0.570376,0.510876,0.588559,0.979097,0.916411,0.602512,0.355476,0.308548,0.353549,0.269593,0.263091,0.9285,0.728658,0.263478,0.764542,0.110686,0.737326,0.316702,0.396143,0.696613,0.56926,0.516351,0.247848,0.734733,0.496868,0.943511,0.433747,0.78242,0.971844,0.436157,0.282981,0.744173,0.459576,0.499156,0.965089,0.474502,0.21818,0.105248,0.303528,0.585341,0.186937,0.0322249,0.263194,0.954244,0.601189,0.820136,0.831242,0.156699,0.802075,0.143682,0.86808,0.320681,0.214144,0.653565,0.600204,0.893965,0.123288,0.749762,0.0725226,0.873906,0.0580818,0.513801,0.915411,0.24577,0.389562,0.345819,0.120629,0.12388,0.106095,0.747844,0.254914,0.467917,0.918189,0.0228053,0.114873,0.832121,0.586232,0.94307,0.463044,0.549371,0.896805,0.38071,0.978172,0.88559,0.76819,0.636979,0.107621,0.698535,0.368374,0.274879,0.97248,0.852843,0.266129,0.512289,0.957069,0.206277,0.333187,0.887517,0.198949,0.0240935,0.169407,0.178931,0.751037,0.666747,0.589568,0.588186,0.533297,0.830064,0.446971,0.51024,0.726183,0.351949,0.580872,0.0792165,0.691816,0.433059,0.149089,0.705053,0.394491,0.832884,0.730515,0.31751,0.674345,0.38821,0.412529,0.998136,0.646627,0.329238,0.292133,0.0868096,0.0947044,0.559108,0.868023,0.0736409,0.236163,0.851665,0.687139,0.0545774,0.764741,0.471031,0.604741,0.852174,0.372042,0.227051,0.0823308,0.591109,0.270841,0.732319,0.149285,0.157595,0.475044,0.595662,0.698392,0.928286,0.404082,0.183606,0.943065,0.729731,0.992298,0.636491,0.887227,0.376728,0.251387,0.502395,0.0406049,0.964506,0.915418,0.830231,0.0760198,0.813332,0.00506228,0.801973,0.880526,0.672979,0.67133,0.345309,0.200532,0.311901,0.83862,0.71995,0.347325,0.553983,0.256158,0.278336,0.83315,0.81776,0.590266,0.832128,0.351937,0.481186,0.544527,0.477283,0.508788,0.607662,0.0109048,0.792865,0.196554,0.11034,0.240127,0.635207,0.421283,0.807107,0.624438,0.344544,0.578084,0.156208,0.895997,0.428766,0.266763,0.389375,0.499,0.372139,0.300914,0.652663,0.566503,0.809826,0.254984,0.761074,0.108299,0.204406,0.765701,0.396381,0.965565,0.219445,0.57966,0.930456,0.848275,0.9981,0.0447248,0.0531715,0.275035,0.744658,0.398918,0.300145,0.596254,0.0293904,0.315088,0.828842,0.885023,0.256062,0.107023,0.865595,0.281435,0.588238,0.476341,0.44089,0.649306,0.0522817,0.33578,0.428591,0.325314,0.810589,0.41308,0.202461,0.91741,0.321492,0.916018,0.43059,0.899727,0.698238,0.197321,0.471098,0.86189,0.221492,0.661076,0.385863,0.0665382,0.748627,0.619351,0.0698467,0.0282173,0.808291,0.210312,0.833905,0.969987,0.76118,0.742994,0.663493,0.374472,0.766717,0.942549,0.505263,0.815984,0.510181,0.252184,0.302789,0.00869924,0.263766,0.940569,0.277307,0.0652187,0.790088,0.0414925,0.810849,0.308407,0.206043,0.994839,0.14267,0.00408691,0.13864,0.808272,0.93668,0.464902,0.781944,0.638986,0.123191,0.512798,0.185909,0.563032,0.838577,0.897489,0.848799,0.0692169,0.713582,0.278439,0.886784,0.0707361,0.251474,0.820987,0.21239,0.54836,0.243017,0.0285568,0.538192,0.441808,0.61431,0.279906,0.604014,0.757708,0.646488,0.873151,0.986666,0.148652,0.849106,0.3142,0.817081,0.414011,0.970754,0.758326,0.791183,0.00296801,0.151119,0.796471,0.642269,0.355938,0.255126,0.519817,0.829768,0.583834,0.158662,0.632048,0.211389,0.518278,0.587761,0.854073,0.396688,0.962771,0.37738,0.0274752,0.693442,0.202734,0.319478,0.293041,0.273182,0.374126,0.878389,0.583888,0.799536,0.82221,0.729105,0.802767,0.180108,0.35505,0.326515,0.17321,0.000588477,0.960022,0.783438,0.481701,0.0213817,0.597098,0.587906,0.436647,0.983951,0.194965,0.620003,0.666366,0.476911,0.919105,0.824092,0.852086,0.582073,0.410895,0.901079,0.995472,0.079528,0.544871,0.595361,0.49897,0.138431,0.70798,0.898992,0.110157,0.414995,0.0884425,0.434705,0.490979,0.750009,0.344928,0.982147,0.674192,0.94543,0.748934,0.798958,0.36944,0.439009,0.212862,0.75455,0.44387,0.872173,0.842679,0.589281,0.658831,0.836612,0.372543,0.0877023,0.69424,0.0569562,0.207169,0.868019,0.624917,0.716092,0.978789,0.485121,0.196918,0.413313,0.0611263,0.0133806,0.8015,0.231824,0.419509,0.621569,0.580037,0.221474,0.33407,0.499044,0.684994,0.278897,0.00722748,0.509687,0.12203,0.872036,0.426611,0.889278,0.916767,0.639957,0.308797,0.396568,0.548774,0.261929,0.236399,0.84215,0.862192,0.135185,0.0980747,0.453142,0.133922,0.0763329,0.152595,0.899561,0.703084,0.0989268,0.425831,0.718573,0.000430167,0.0894389,0.501312,0.908493,0.550295,0.496116,0.99267,0.592066,0.679491,0.970533,0.0643451,0.713443,0.258307,0.0596794,0.792714,0.388556,0.0808908,0.178743,0.872347,0.927817,0.464279,0.736327,0.137501,0.298891,0.0723631,0.824199,0.515311,0.306424,0.861165,0.839517,0.874119,0.866258,0.0976821,0.290737,0.660638,0.607275,0.762277,0.653974,0.527078,0.401202,0.363791,0.541311,0.0029273,0.937221,0.843261,0.433696,0.889725,0.417827,0.102893,0.611081,0.65691,0.536457,0.714061,0.557711,0.257687,0.40152,0.0443518,0.178898,0.0948963,0.433287,0.823516,0.973801,0.846663,0.984706,0.56768,0.889227,0.315771,0.370077,0.360237,0.433394,0.337988,0.554567,0.564559,0.841818,0.19574,0.374297,0.53393,0.80485,0.221874,0.0754495,0.915669,0.50841,0.471782,0.216647,0.330214,0.44446,0.142055,0.667741,0.0361103,0.108868,0.176088,0.307286,0.151733,0.929732,0.892831,0.296697,0.946145,0.978871,0.92873,0.342771,0.362266,0.810041,0.55042,0.393796,0.851111,0.188612,0.0527125,0.325134,0.149178,0.103371,0.261054,0.597959,0.0406557,0.529284,0.743136,0.193021,0.556421,0.988242,0.59183,0.832867,0.412278,0.401471,0.671369,0.760892,0.505674,0.747318,0.676838,0.931291,0.124929,0.0744453,0.255359,0.342819,0.522882,0.354973,0.220757,0.607482,0.730231,0.638773,0.118762,0.998224,0.922585,0.589083,0.549874,0.835293,0.987864,0.69795,0.580759,0.737079,0.929669,0.553305,0.0753785,0.672285,0.202723,0.633025,0.752981,0.072886,0.574369,0.706671,0.291269,0.439443,0.58705,0.0362801,0.169274,0.142712,0.797215,0.100159,0.234374,0.450465,0.399558,0.749839,0.789908,0.706667,0.146461,0.252528,0.134997,0.294542,0.965889,0.740145,0.670307,0.655243,0.990514,0.289194,0.268776,0.0943439,0.676392,0.468953,0.807452,0.0631399,0.562214,0.042915,0.485173,0.816696,0.455746,0.719221,0.566878,0.407,0.953144,0.301368,0.460269,0.843923,0.525822,0.368208,0.658224,0.0444231,0.331398,0.196168,0.139473,0.116065,0.783255,0.381121,0.782806,0.72034,0.587781,0.326215,0.61249,0.276581,0.462843,0.491979,0.668351,0.19666,0.340504,0.224926,0.175878,0.480754,0.481378,0.628061,0.0990905,0.898348,0.731965,0.754724,0.267833,0.355562,0.210254,0.764707,0.159043,0.811379,0.20484,0.74677,0.335388,0.63644,0.0990276,0.655094,0.0461226,0.564812,0.551944,0.241899,0.445039,0.978912,0.851958,0.867047,0.32871,0.275085,0.372083,0.280207,0.31858,0.508919,0.676933,0.520638,0.31919,0.761421,0.504591,0.304657,0.156446,0.964015,0.633031,0.525782,0.483823,0.257777,0.158372,0.903488,0.756382,0.277977,0.615116,0.174446,0.997588,0.0221413,0.964998,0.993509,0.0497304,0.82334,0.926698,0.173859,0.387197,0.510129,0.142079,0.408521,0.68807,0.340085,0.98619,0.258649,0.0971869,0.0574396,0.0281029,0.536726,0.220786,0.554433,0.717778,0.499787,0.35428,0.408576,0.169999,0.5753,0.603776,0.10008,0.0844572,0.205687,0.644825,0.41996,0.201362,0.838188,0.714332,0.0414552,0.571937,0.756987,0.136547,0.452173,0.522833,0.209404,0.534733,0.943568,0.985395,0.689427,0.664046,0.839426,0.51851,0.0761575,0.858958,0.0169046,0.124258,0.724442,0.872046,0.167821,0.0892945,0.493482,0.75222,0.967895,0.93047,0.984013,0.618798,0.614551,0.883869,0.410522,0.850638,0.0959206,0.265986,0.114552,0.136599,0.37063,0.553712,0.894695,0.866465,0.942418,0.583888,0.76028,0.288054,0.769986,0.550508,0.882783,0.265075,0.664761,0.859778,0.0889549,0.797565,0.100959,0.785407,0.473944,0.674208,0.588719,0.291341,0.678999,0.377114,0.79259,0.0844171,0.596878,0.415383,0.467784,0.408968,0.0453594,0.923226,0.595727,0.509669,0.475613,0.242815,0.641737,0.689808,0.0776794,0.248315,0.270499,0.308466,0.631051,0.389667,0.059552,0.900003,0.558961,0.448883,0.948606,0.211656,0.347783,0.494001,|0.100319,0.650625,0.644857,0.614673,0.145349,0.0691134,0.00170749,0.341408,0.569019,0.491421,0.228968,0.4575,0.36177,0.298173,0.169619,0.0293902,0.421199,0.139116,0.884176,0.342438,0.785241,0.765807,0.19508,0.390255,0.610427,0.692148,0.495135,0.628576,0.264319,0.74268,0.904765,0.369456,0.978755,0.0880073,0.424181,0.0807871,0.878985,0.294446,0.299534,0.258643,0.448338,0.0960531,0.30354,0.405069,0.505798,0.96158,0.597151,0.608223,0.383331,0.264386,0.956981,0.010181,0.960018,0.86943,0.44412,0.789108,0.0463246,0.179751,0.194174,0.790732,0.529408,0.128671,0.138341,0.513615,0.740674,0.540112,0.814509,0.207357,0.480617,0.579122,0.888848,0.487804,0.364893,0.452131,0.863637,0.704665,0.947635,0.215652,0.152274,0.520754,0.835719,0.158852,0.635487,0.978415,0.0298188,0.377783,0.0553263,0.117496,0.0631103,0.872121,0.278989,0.503532,0.921618,0.600004,0.872282,0.906832,0.124345,0.337041,0.656439,0.225997,0.598382,0.305622,0.252265,0.586687,0.448076,0.331726,0.783952,0.494852,0.840088,0.0667717,0.519126,0.59807,0.069299,0.20166,0.914816,0.886528,0.357672,0.0372484,0.876997,0.927187,0.931248,0.212781,0.22849,0.353119,0.543412,0.484131,0.619782,0.446451,0.62278,0.723877,0.588919,0.112284,0.568358,0.845031,0.0260502,0.242592,0.568629,0.635288,0.881935,0.164388,0.64035,0.31512,0.491931,0.665391,0.238529,0.882126,0.113903,0.737965,0.013244,0.632251,0.98535,0.699195,0.0157038,0.0738011,0.718465,0.735853,0.307206,0.41627,0.897146,0.907928,0.58817,0.789173,0.80378,0.247866,0.309567,0.761869,0.228141,0.786462,0.577287,0.156984,0.827761,0.384719,0.487131,0.7499,0.747681,0.406502,0.55688,0.0617803,0.353749,0.258139,0.160764,0.79204,0.183871,0.826094,0.997908,0.817082,0.0171014,0.464919,0.638538,0.524474,0.541705,0.594965,0.142761,0.886377,0.229955,0.6992,0.999312,0.636202,0.0294628,0.896875,0.998111,0.0527119,0.479162,0.418471,0.736135,0.0325553,0.572674,0.626029,0.928626,0.787184,0.772402,0.662264,0.95661,0.402037,0.0143462,0.446064,0.337319,0.931625,0.283214,0.918988,0.345915,0.370108,0.573856,0.833497,0.665558,0.491088,0.494897,0.424883,0.805141,0.0524178,0.449823,0.968143,0.751695,0.168124,0.680296,0.118081,0.281509,0.795487,0.138181,0.738658,0.169291,0.774944,0.0645158,0.838571,0.297756,0.169117,0.718385,0.305029,0.916836,0.820935,0.105296,0.193895,0.707437,0.981365,0.0128293,0.77248,0.758172,0.282631,0.653048,0.662326,0.927362,0.869793,0.791532,0.969466,0.882738,0.471326,0.955097,0.0779345,0.82454,0.24978,0.919552,0.0837314,0.429394,0.0951353,0.78051,0.185907,0.594478,0.250845,0.985127,0.0699959,0.762282,0.712744,0.351822,0.989274,0.439902,0.496521,0.341692,0.0123968,0.679761,0.187706,0.11158,0.817821,0.961129,0.865946,0.126401,0.554101,0.846676,0.284904,0.362484,0.225254,0.533025,0.980504,0.715056,0.114565,0.235668,0.902738,0.975324,0.59725,0.991694,0.261821,0.122061,0.138411,0.721093,0.254364,0.8465,0.495148,0.0317069,0.00433558,0.425545,0.222178,0.428902,0.755566,0.155567,0.927447,0.298302,0.421645,0.949677,0.858843,0.567539,0.261091,0.311147,0.0817752,0.713099,0.764518,0.79342,0.622962,0.24567,0.286437,0.301039,0.5772,0.843244,0.589705,0.867996,0.527952,0.347253,0.29372,0.972483,0.4088,0.540294,0.979249,0.310659,0.594563,0.121159,0.35333,0.152401,0.601087,0.611718,0.928327,0.14606,0.506657,0.87628,0.332619,0.995558,0.0559619,0.412179,0.551578,0.131083,0.229751,0.532244,0.924379,0.372769,0.397533,0.623311,0.617459,0.325628,0.585124,0.5352,0.0994957,0.581119,0.428075,0.958344,0.254629,0.282556,0.802475,0.268338,0.793186,0.517382,0.183263,0.461489,0.469138,0.953013,0.786959,0.639275,0.0895541,0.587316,0.393333,0.918447,0.368618,0.212282,0.429335,0.755319,0.860477,0.0722486,0.216001,0.122421,0.216346,0.0145791,0.0343643,0.778036,0.690329,0.360067,0.0149717,0.913512,0.31804,0.513739,0.817772,0.864649,0.4427,0.492142,0.405682,0.905152,0.304933,0.203148,0.262032,0.0734785,0.6716,0.373856,0.46459,0.285127,0.189296,0.80456,0.279689,0.335939,0.789964,0.343693,0.363356,0.202458,0.929006,0.276758,0.295201,0.20523,0.810318,0.050082,0.0430348,0.991593,0.0140604,0.432078,0.385272,0.912204,0.222994,0.425028,0.368803,0.442193,0.421131,0.463095,0.935835,0.149928,0.291651,0.29979,0.481545,0.814127,0.355246,0.831422,0.999694,0.716783,0.357941,0.876068,0.523055,0.201718,0.438818,0.655953,0.196567,0.578375,0.878274,0.387619,0.803495,0.00266659,0.312301,0.68614,0.949018,0.0854988,0.417283,0.385117,0.903527,0.126741,0.754556,0.717493,0.949619,0.474178,0.665998,0.166268,0.838891,0.419221,0.948658,0.544359,0.7825,0.227367,0.277267,0.74308,0.230993,0.216596,0.279096,0.30223,0.260731,0.0725688,0.730725,0.773282,0.346006,0.375653,0.384327,0.105,0.427635,0.946586,0.904273,0.0141507,0.229407,0.676055,0.837561,0.115792,0.372043,0.737566,0.585054,0.86797,0.0270653,0.616297,0.889123,0.407497,0.680246,0.285945,0.420396,0.574114,0.419318,0.0466794,0.812292,0.532363,0.515691,0.590918,0.0614047,0.308561,0.959411,0.808487,0.604767,0.657315,0.751257,0.909614,0.384106,0.942699,0.0698789,0.764437,0.00509483,0.030772,0.132688,0.155661,0.452141,0.988524,0.372452,0.409906,0.886685,0.130501,0.0756228,0.164622,0.908951,0.0965371,0.820428,0.857057,0.184459,0.818523,0.340856,0.174473,0.901153,0.0501479,0.741698,0.804114,0.652031,0.00236958,0.664154,0.885993,0.191122,0.89971,0.0603428,0.12256,0.889501,0.675244,0.141708,0.735332,0.286721,0.342714,0.120231,0.147553,0.872075,0.938291,0.630826,0.210454,0.673783,0.272293,0.58665,0.541454,0.322447,0.796491,0.784541,0.64517,0.29101,0.657469,0.743175,0.0364553,0.339864,0.0449454,0.90269,0.394159,0.501976,0.415058,0.463988,0.483424,0.969746,0.262791,0.438738,0.353081,0.317876,0.790317,0.940486,0.241682,0.712742,0.498568,0.456487,0.570334,0.942417,0.801677,0.192473,0.00104195,0.817963,0.62998,0.404015,0.638552,0.01783,0.137074,0.843251,0.898159,0.589932,0.314558,0.341945,0.643337,0.702575,0.394601,0.40307,0.454082,0.854904,0.460976,0.411061,0.181064,0.662684,0.204718,0.787858,0.699661,0.181327,0.76234,0.469384,0.130383,0.584829,0.132375,0.0832161,0.949832,0.396688,0.351057,0.126639,0.984467,0.113802,0.43324,0.755265,0.706133,0.902329,0.437092,0.83989,0.615514,0.709133,0.408047,0.0167972,0.306121,0.336743,0.553038,0.498722,0.657199,0.230376,0.686981,0.999865,0.226739,0.100536,0.367813,0.477039,0.574574,0.403286,0.657781,0.588778,0.361146,0.223904,0.0339352,0.0778257,0.0569663,0.84402,0.809647,0.235816,0.166881,0.683103,0.64491,0.804027,0.982502,0.0918236,0.721543,0.581813,0.630539,0.403174,0.0524396,0.298507,0.590992,0.342737,0.202024,0.736226,0.295113,0.281538,0.969744,0.0212671,0.791118,0.722051,0.833179,0.344439,0.119117,0.887014,0.10463,0.910171,0.152308,0.348647,0.882397,0.689457,0.133645,0.152924,0.788437,0.370363,0.453923,0.810528,0.931294,0.510963,0.0757833,0.865785,0.227408,0.0481781,0.438407,0.746764,0.639059,0.523003,0.977613,0.0675535,0.323981,0.262528,0.762171,0.0257065,0.876062,0.016269,0.361885,0.477099,0.134693,0.643574,0.262793,0.172099,0.457272,0.473735,0.969183,0.588428,0.992377,0.192939,0.425153,0.797369,0.0559846,0.63215,0.266112,0.28094,0.173625,0.703598,0.638323,0.837519,0.987574,0.556844,0.457834,0.674302,0.119444,0.797914,0.593147,0.566294,0.603193,0.221415,0.688427,0.100067,0.146837,0.97778,0.966257,0.842722,0.528585,0.96252,0.427662,0.0530834,0.315835,0.0422724,0.57693,0.0871417,0.635018,0.584632,0.61741,0.996987,0.419971,0.874901,0.0846875,0.29381,0.975991,0.639253,0.726784,0.0253642,0.889944,0.948294,0.312777,0.603812,0.780848,0.684052,0.651929,0.382497,0.740981,0.318903,0.88598,0.325905,0.117097,0.860446,0.320079,0.195751,0.404956,0.126223,0.186511,0.809419,0.224003,0.93133,0.802783,0.0620592,0.21774,0.140023,0.463094,0.390216,0.233573,0.268914,0.719048,0.367952,0.690828,0.319035,0.606596,0.879424,0.113016,0.422051,0.531436,0.314016,0.386511,0.0663335,0.160082,0.871261,0.406055,0.98154,0.86513,0.380427,0.571302,0.242099,0.627065,0.728083,0.717252,0.338971,0.962065,0.140566,0.873794,0.90375,0.310721,0.163437,0.557195,0.738009,0.29733,0.00841528,0.289694,0.0442086,0.485064,0.221695,0.434409,0.018926,0.510227,0.910362,0.659575,0.260508,0.887007,0.599604,0.744048,0.615182,0.934764,0.551866,0.43102,0.777837,0.899521,0.742972,0.293236,0.0323751,0.483499,0.714626,0.0614425,0.255882,0.083761,0.0582093,0.57113,0.606862,0.55321,0.375055,0.282859,0.590161,0.327051,0.191557,0.159044,0.174894,0.505554,0.422401,0.724947,0.626244,0.952512,0.177161,0.984552,0.925189,0.134917,0.516685,0.519848,0.793261,0.721209,0.980261,0.34125,0.150742,0.0499087,0.324621,0.928132,0.326407,0.232658,0.374902,0.0110649,0.221049,0.0513931,0.658728,0.0881981,0.674572,0.623237,0.842557,0.0674689,0.98876,0.791732,0.34059,0.841631,0.0417899,0.163177,0.851406,0.296375,0.196231,0.937966,0.0559943,0.528672,0.808561,0.504209,0.945771,0.662951,0.165552,0.951921,0.7037,0.28072,0.276763,0.796444,0.563715,0.527032,0.741878,0.797452,0.205027,0.578786,0.200175,0.659096,0.351725,0.288742,0.170659,0.40817,0.480555,0.518399,0.535004,0.559317,0.762068,0.902463,0.824219,0.818381,0.31813,0.273385,0.712662,0.841005,0.72833,0.337164,0.258389,0.591855,0.496321,0.440657,0.169177,|0.302041,0.542273,0.841636,0.234422,0.642532,0.381445,0.689581,0.571535,0.945076,0.606239,0.896869,0.581215,0.340363,0.396232,0.584792,0.451726,0.995301,0.703296,0.228953,0.525981,0.686725,0.751621,0.366178,0.00814193,0.343807,0.38453,0.35142,0.922487,0.154561,0.650276,0.77422,0.134285,0.221466,0.422788,0.0749915,0.922664,0.640036,0.982046,0.712638,0.573611,0.742435,0.29384,0.492906,0.753515,0.394578,0.1994,0.658379,0.493318,0.876333,0.0237306,0.537392,0.858588,0.505227,0.585625,0.340599,0.849729,0.519336,0.962406,0.612074,0.156506,0.317928,0.269413,0.350849,0.808204,0.0090732,0.147315,0.305153,0.133143,0.52498,0.475917,0.702977,0.0653206,0.906242,0.545404,0.581525,0.363969,0.415606,0.282976,0.528275,0.0224512,0.570528,0.783123,0.389519,0.672874,0.830761,0.628224,0.857927,0.871148,0.193614,0.00472176,0.224868,0.842548,0.134943,0.984902,0.841065,0.252078,0.520582,0.96087,0.966622,0.82675,0.281112,0.796791,0.617468,0.124176,0.0502746,0.026099,0.512755,0.247099,0.768209,0.901441,0.463304,0.278682,0.662424,0.817532,0.349753,0.18864,0.247874,0.229797,0.140416,0.454239,0.870868,0.0738695,0.874104,0.478622,0.693054,0.586577,0.981338,0.31132,0.687419,0.828778,0.378662,0.100397,0.263024,0.624559,0.555951,0.451171,0.860952,0.262968,0.880937,0.979941,0.528436,0.657906,0.970063,0.770675,0.0787497,0.893129,0.483098,0.510716,0.654984,0.981059,0.37532,0.935866,0.739944,0.00568581,0.896968,0.241328,0.668242,0.704198,0.135339,0.519631,0.822631,0.359994,0.235988,0.381772,0.0428139,0.782422,0.445087,0.176286,0.525225,0.0820902,0.679923,0.112712,0.433379,0.744408,0.155855,0.325208,0.416295,0.765882,0.0378377,0.789433,0.287258,0.802088,0.818994,0.02817,0.736382,0.096338,0.831243,0.410289,0.489914,0.531933,0.87027,0.793907,0.278904,0.924352,0.168961,0.490344,0.390216,0.247255,0.930883,0.148647,0.933008,0.641568,0.903529,0.428691,0.787877,0.783864,0.178338,0.318249,0.102975,0.448353,0.134604,0.445253,0.377456,0.473369,0.101658,0.222647,0.464585,0.488027,0.966463,0.356555,0.549297,0.781759,0.279562,0.505807,0.575244,0.245073,0.800553,0.978643,0.202206,0.370197,0.141241,0.826233,0.157613,0.509228,0.69325,0.0883744,0.143977,0.0732322,0.324818,0.247968,0.342947,0.905075,0.967037,0.401383,0.237376,0.810006,0.454815,0.516434,0.485603,0.554274,0.894195,0.917492,0.650515,0.427672,0.946181,0.0225936,0.753614,0.633017,0.811536,0.175467,0.901234,0.1416,0.826166,0.911649,0.197582,0.0188758,0.211938,0.0613867,0.202732,0.411302,0.685105,0.400331,0.996057,0.0172188,0.597067,0.287953,0.0629893,0.109752,0.585357,0.440158,0.719951,0.510538,0.0911872,0.766769,0.026111,0.367338,0.467953,0.192513,0.202752,0.0821955,0.254066,0.0699733,0.640536,0.70329,0.294524,0.615621,0.0691711,0.304336,0.33006,0.367051,0.0954155,0.784306,0.252161,0.239854,0.169991,0.0702922,0.0425152,0.181394,0.819923,0.70191,0.235274,0.598386,0.627045,0.859823,0.87448,0.762336,0.299308,0.0474073,0.767339,0.848698,0.982902,0.133475,0.791096,0.712871,0.878346,0.787752,0.0129841,0.940807,0.622678,0.299748,0.610317,0.406853,0.391602,0.719532,0.80319,0.82122,0.633354,0.321549,0.823579,0.36905,0.836838,0.168504,0.119752,0.975338,0.186952,0.637144,0.379392,0.73252,0.701333,0.46661,0.158372,0.0413348,0.699207,0.974801,0.0432845,0.878125,0.870571,0.483283,0.721299,0.818404,0.278987,0.322912,0.0371599,0.13257,0.467553,0.964862,0.475599,0.570489,0.292092,0.791536,0.654857,0.476051,0.767055,0.582627,0.427531,0.729679,0.758864,0.139315,0.732437,0.332557,0.189244,0.205584,0.502058,0.113626,0.262488,0.958628,0.292891,0.309701,0.106345,0.170378,0.420384,0.436793,0.00821257,0.674864,0.147877,0.500207,0.396277,0.0598269,0.694773,0.333274,0.00026089,0.265779,0.942832,0.641151,0.701876,0.216493,0.115361,0.213355,0.0813633,0.63298,0.175435,0.587299,0.167732,0.952771,0.325786,0.817309,0.713668,0.509983,0.653139,0.468192,0.660718,0.551424,0.229114,0.893959,0.0658608,0.67069,0.0104195,0.423301,0.578081,0.542248,0.274076,0.393729,0.982539,0.942623,0.911942,0.596593,0.988258,0.783111,0.279749,0.18707,0.545678,0.707555,0.0931463,0.343643,0.608102,0.0155916,0.797195,0.554243,0.759059,0.4143,0.443142,0.246476,0.411391,0.502901,0.859831,0.765775,0.128854,0.0571666,0.627556,0.269794,0.466979,0.850831,0.549299,0.570988,0.42966,0.658394,0.359068,0.698864,0.868348,0.109679,0.928757,0.873109,0.976761,0.133871,0.863262,0.0662848,0.566146,0.928575,0.0449374,0.446628,0.253165,0.903861,0.701225,0.1429,0.817895,0.11904,0.613529,0.956613,0.0370017,0.487494,0.612759,0.182376,0.605882,0.522146,0.0332434,0.431638,0.2583,0.943122,0.199336,0.123409,0.274642,0.434101,0.597299,0.961064,0.491656,0.36703,0.988708,0.0202683,0.34049,0.85233,0.005041,0.649238,0.844267,0.388572,0.0283308,0.900632,0.28086,0.575593,0.318386,0.606641,0.623212,0.895315,0.405531,0.12997,0.681272,0.240261,0.583575,0.310967,0.733542,0.035526,0.067625,0.374112,0.118205,0.221783,0.238843,0.54238,0.851282,0.81855,0.706736,0.643298,0.0737077,0.615887,0.0195615,0.18589,0.497146,0.513307,0.711613,0.0103952,0.263788,0.119325,0.449411,0.956468,0.420028,0.863755,0.12769,0.268229,0.447296,0.975031,0.244049,0.289046,0.979966,0.828887,0.131333,0.123196,0.410265,0.586778,0.998275,0.0781726,0.00861913,0.880707,0.915698,0.688061,0.284747,0.98117,0.181415,0.861716,0.123734,0.690325,0.087377,0.838964,0.556002,0.292957,0.0766724,0.811061,0.236603,0.270179,0.258018,0.723423,0.367461,0.0843922,0.419731,0.796619,0.46199,0.159255,0.809987,0.388594,0.187455,0.992984,0.686646,0.925195,0.920473,0.142484,0.296961,0.842905,0.258356,0.875657,0.420448,0.192493,0.130072,0.6806,0.0654407,0.75625,0.902631,0.431867,0.164542,0.876146,0.227792,0.055996,0.348721,0.761833,0.158001,0.3378,0.495501,0.466519,0.459227,0.654469,0.534746,0.615058,0.38807,0.261207,0.594548,0.518595,0.843373,0.565966,0.0994548,0.469685,0.0691719,0.253099,0.720465,0.741561,0.288258,0.0773613,0.917925,0.44739,0.730574,0.541528,0.0244591,0.854778,0.674418,0.840233,0.461979,0.506708,0.369999,0.183125,0.0452458,0.660725,0.553926,0.376545,0.240692,0.471157,0.814313,0.65325,0.774727,0.291781,0.431772,0.235084,0.436783,0.552434,0.219459,0.516156,0.359433,0.59611,0.248848,0.252089,0.67027,0.217227,0.367418,0.385411,0.997189,0.760664,0.229432,0.765729,0.598769,0.47833,0.817498,0.743498,0.838052,0.117793,0.431141,0.998545,0.799504,0.203001,0.778949,0.154751,0.563266,0.0194474,0.450934,0.00778431,0.991423,0.653734,0.109082,0.566082,0.145922,0.000711739,0.287533,0.180285,0.973714,0.554605,0.713484,0.328014,0.260847,0.327021,0.908463,0.329448,0.354856,0.473821,0.647101,0.161786,0.441464,0.193349,0.230796,0.511615,0.181029,0.409576,0.815636,0.957222,0.388957,0.874893,0.269884,0.351887,0.937025,0.085377,0.449887,0.416168,0.686054,0.45514,0.567971,0.636657,0.647497,0.203084,0.508823,0.825742,0.516921,0.480282,0.0379807,0.616396,0.815802,0.602259,0.899023,0.013603,0.478838,0.730258,0.900827,0.0427433,0.594323,0.8369,0.698743,0.978604,0.553644,0.844949,0.893089,0.590369,0.238606,0.582734,0.3109,0.563253,0.636877,0.501283,0.968552,0.567491,0.0257817,0.724193,0.102082,0.965277,0.851972,0.944617,0.131915,0.941027,0.601471,0.461914,0.44924,0.666724,0.457622,0.819736,0.439825,0.127663,0.907002,0.975996,0.713111,0.0189284,0.895785,0.366151,0.636203,0.434495,0.544503,0.878666,0.125688,0.876966,0.541581,0.790543,0.182731,0.0368737,0.92562,0.567693,0.491347,0.182427,0.735008,0.299733,0.552052,0.420435,0.138,0.98322,0.584093,0.779994,0.363873,0.116781,0.774494,0.279683,0.337057,0.446383,0.52167,0.564217,0.980254,0.682453,0.585132,0.870511,0.219396,0.196847,0.578883,0.844452,0.0718513,0.875152,0.783987,0.920008,0.23477,0.0139577,0.0662856,0.380444,0.399728,0.65841,0.599707,0.682637,0.213349,0.380888,0.0315736,0.232302,0.939404,0.191279,0.501739,0.29206,0.0816787,0.579502,0.0245336,0.0554355,0.458015,0.00763345,0.783808,0.176885,0.639162,0.267555,0.650763,0.217527,0.680843,0.775539,0.744166,0.858629,0.771224,0.988264,0.0800211,0.834305,0.340761,0.521448,0.50758,0.49017,0.760489,0.30005,0.692046,0.1512,0.0976232,0.552935,0.898023,0.0860162,0.994492,0.56625,0.0306132,0.25233,0.517306,0.687339,0.0249835,0.47758,0.301998,0.263438,0.0277454,0.850817,0.764604,0.236257,0.7311,0.683035,0.432976,0.559427,0.471782,0.464765,0.111161,0.177074,0.626603,0.540933,0.935125,0.356777,0.950635,0.706148,0.772951,0.0212218,0.731092,0.90899,0.754321,0.101672,0.704001,0.545756,0.892828,0.090749,0.987817,0.308116,0.00775349,0.864475,0.58372,0.753384,0.967079,0.333511,0.981471,0.11934,0.675629,0.548207,0.294129,0.999085,0.161032,0.531358,0.517648,0.959979,0.99498,0.91443,0.334582,0.388907,0.336087,0.780351,0.518604,0.0617318,0.510809,0.382148,0.944189,0.142753,0.265683,0.665055,0.0790948,0.556485,0.191674,0.607455,0.483556,0.314158,0.165285,0.502964,0.237927,0.759931,0.663681,0.573598,0.321058,0.497719,0.660449,0.308962,0.291364,0.719588,0.8426,0.874315,0.308884,0.517726,0.14571,0.0122173,0.475345,0.661544,0.937032,0.839768,0.749169,0.392559,0.417381,0.888595,0.291398,0.227955,0.95087,0.169354,0.812155,0.0129296,0.144441,0.722463,0.265127,0.60099,0.501103,0.603462,0.615229,0.284096,0.0668963,0.987467,|0.509061,0.543076,0.820886,0.388981,0.632889,0.617549,0.598913,0.227151,0.848675,0.229908,0.593681,0.104876,0.570068,0.720829,0.124918,0.834602,0.114207,0.807963,0.80119,0.0954783,0.448047,0.108701,0.793495,0.423286,0.459641,0.285121,0.178999,0.0515259,0.465412,0.58893,0.966405,0.768728,0.0179467,0.118332,0.960935,0.361738,0.361105,0.993122,0.72919,0.333317,0.649996,0.156243,0.00356334,0.579785,0.818511,0.293056,0.0091334,0.0578713,0.679387,0.866619,0.701224,0.111027,0.0140865,0.319006,0.736448,0.291699,0.394898,0.723475,0.228017,0.543866,0.360041,0.0767866,0.449045,0.38568,0.590018,0.924274,0.437514,0.300018,0.264102,0.0132654,0.0628686,0.588917,0.23991,0.338315,0.319991,0.711462,0.268038,0.906259,0.154479,0.765023,0.760649,0.304394,0.673186,0.658273,0.259397,0.450043,0.799117,0.218173,0.0583546,0.976625,0.0162954,0.797743,0.430117,0.169755,0.871838,0.441227,0.116771,0.60587,0.929429,0.736049,0.583611,0.660798,0.465893,0.665015,0.569145,0.36593,0.642999,0.497501,0.514718,0.375992,0.0292582,0.284519,0.700792,0.908642,0.503063,0.273355,0.340113,0.494976,0.666261,0.092667,0.19187,0.593067,0.862513,0.169761,0.5706,0.422896,0.832729,0.786584,0.756031,0.825886,0.667504,0.0840616,0.263092,0.194261,0.436389,0.491127,0.300703,0.231374,0.570604,0.0152621,0.207915,0.945421,0.222409,0.944198,0.0164872,0.17233,0.352364,0.0991981,0.594901,0.501154,0.245721,0.337966,0.958721,0.366971,0.120814,0.204783,0.792715,0.944213,0.122931,0.196657,0.851699,0.657248,0.860736,0.764768,0.471392,0.597358,0.563925,0.370983,0.638887,0.372282,0.453395,0.297706,0.360537,0.775239,0.783633,0.931253,0.406685,0.116533,0.464868,0.48917,0.853166,0.711032,0.168976,0.864778,0.86697,0.581739,0.444493,0.773319,0.33208,0.534293,0.953875,0.402192,0.21935,0.625885,0.688285,0.10834,0.225567,0.379387,0.787809,0.711301,0.310639,0.653363,0.816,0.827065,0.988559,0.15687,0.543603,0.489636,0.445821,0.762767,0.661628,0.119834,0.488522,0.871695,0.864296,0.272827,0.467109,0.0538086,0.73415,0.605737,0.468468,0.73073,0.385909,0.492298,0.19755,0.384769,0.815814,0.763743,0.372153,0.364624,0.587743,0.785849,0.924181,0.777086,0.176129,0.784167,0.660078,0.215295,0.100499,0.720003,0.534891,0.575217,0.375939,0.807331,0.406179,0.4274,0.824357,0.29853,0.323451,0.325428,0.64918,0.963436,0.339985,0.133195,0.3109,0.134257,0.176298,0.556578,0.422914,0.739614,0.588152,0.117205,0.905991,0.18456,0.0938548,0.13473,0.233261,0.99084,0.640191,0.581862,0.00408179,0.787604,0.763863,0.575898,0.564106,0.750414,0.0723129,0.767469,0.809575,0.411722,0.307438,0.139226,0.873617,0.787918,0.346769,0.13853,0.916677,0.717687,0.604852,0.14083,0.63596,0.711881,0.969994,0.553655,0.12345,0.505639,0.844997,0.321524,0.537568,0.8418,0.469886,0.166984,0.624222,0.844163,0.572339,0.614705,0.932509,0.509235,0.918703,0.780947,0.880468,0.571485,0.138168,0.149335,0.16375,0.540424,0.751819,0.9991,0.597377,0.50888,0.657125,0.810706,0.294709,0.287553,0.463866,0.291088,0.621876,0.612609,0.840331,0.614366,0.554409,0.808196,0.589461,0.620461,0.172721,0.363579,0.237887,0.504018,0.0482665,0.547971,0.23254,0.0161767,0.867704,0.800332,0.107971,0.73761,0.867297,0.895138,0.960519,0.669803,0.726364,0.180682,0.0107038,0.797768,0.628916,0.523448,0.56064,0.335637,0.77096,0.701277,0.149997,0.0312608,0.524088,0.522862,0.306245,0.841549,0.227662,0.232203,0.275538,0.0668597,0.90998,0.884443,0.891391,0.426125,0.958758,0.114998,0.147409,0.234948,0.185318,0.371642,0.645279,0.192888,0.383389,0.790804,0.639592,0.677378,0.24108,0.285504,0.132659,0.278905,0.855986,0.56073,0.125174,0.757536,0.144978,0.747819,0.700404,0.930974,0.468287,0.0523442,0.191311,0.844681,0.813529,0.400625,0.905516,0.447464,0.618493,0.917106,0.668718,0.213745,0.290634,0.818738,0.0627297,0.363755,0.890264,0.314205,0.30636,0.604672,0.234837,0.825377,0.905292,0.0326346,0.825684,0.900407,0.499048,0.703514,0.14804,0.428104,0.521986,0.292413,0.276755,0.784351,0.325842,0.465489,0.962205,0.946006,0.126081,0.356532,0.130931,0.667614,0.834073,0.391776,0.415403,0.600546,0.711193,0.815765,0.676599,0.441723,0.181742,0.675251,0.179847,0.868278,0.0436164,0.273335,0.0190156,0.797477,0.489187,0.522101,0.716259,0.641521,0.284885,0.0617973,0.831245,0.479261,0.25063,0.0550128,0.0918442,0.909244,0.0199143,0.70166,0.0226055,0.511657,0.782862,0.718297,0.677309,0.406344,0.876893,0.557247,0.937207,0.00239211,0.462655,0.393768,0.235877,0.460684,0.878928,0.22912,0.896834,0.603049,0.0611653,0.0875998,0.862497,0.925995,0.0902675,0.172555,0.372955,0.836581,0.428642,0.349588,0.425203,0.254039,0.580512,0.685866,0.564582,0.0700497,0.181668,0.315188,0.751774,0.657958,0.272189,0.551045,0.519766,0.742861,0.0730888,0.681355,0.445104,0.68801,0.448288,0.957549,0.194724,0.731212,0.768047,0.146511,0.771649,0.0528315,0.457623,0.519335,0.23068,0.600547,0.830223,0.525809,0.780081,0.815756,0.0148723,0.661633,0.0694566,0.733054,0.70494,0.240077,0.989883,0.197219,0.299785,0.37443,0.564601,0.172778,0.291599,0.692749,0.936117,0.442247,0.77876,0.167671,0.443463,0.138936,0.98223,0.258955,0.965497,0.0656416,0.566386,0.742658,0.696436,0.776547,0.180646,0.890899,0.31264,0.664275,0.306171,0.756969,0.817676,0.687231,0.321657,0.947829,0.939872,0.774446,0.481508,0.46817,0.853933,0.261917,0.919746,0.899263,0.450238,0.598645,0.991446,0.802793,0.25889,0.701525,0.918836,0.221236,0.440299,0.799052,0.441001,0.669943,0.619789,0.868478,0.386732,0.316843,0.977099,0.960084,0.0456893,0.744375,0.842871,0.384431,0.676732,0.724792,0.311267,0.307507,0.366507,0.453706,0.434595,0.816274,0.905136,0.140072,0.89855,0.489399,0.982473,0.399811,0.44992,0.292683,0.0646241,0.406985,0.311503,0.340552,0.972831,0.1048,0.407044,0.784302,0.766401,0.75008,0.806028,0.329045,0.904881,0.0595043,0.348704,0.00738418,0.973554,0.00238818,0.624968,0.539286,0.520452,0.977362,0.383974,0.598537,0.216402,0.644204,0.547295,0.153923,0.62889,0.127991,0.0866929,0.113182,0.334112,0.716577,0.0267273,0.859484,0.053392,0.176559,0.901975,0.0711691,0.380083,0.27915,0.0217889,0.894004,0.467156,0.503331,0.407916,0.273278,0.542255,0.426644,0.384901,0.921669,0.392116,0.926334,0.456948,0.231225,0.10135,0.254378,0.162447,0.0550894,0.704069,0.233284,0.554698,0.674396,0.224432,0.994833,0.15966,0.434117,0.246897,0.458718,0.476928,0.0547543,0.898678,0.906405,0.655457,0.612166,0.114101,0.674095,0.149736,0.501933,0.957771,0.511175,0.871639,0.331181,0.708884,0.841975,0.088299,0.113877,0.0428008,0.358745,0.741312,0.742634,0.029493,0.453984,0.37658,0.652052,0.918448,0.682861,0.102067,0.762116,0.133796,0.323911,0.0762153,0.549017,0.752999,0.343657,0.883017,0.839899,0.989786,0.281611,0.540709,0.880952,0.143915,0.946699,0.637429,0.667886,0.896548,0.619798,0.410905,0.851918,0.405498,0.0404916,0.286084,0.618794,0.545695,0.989666,0.35824,0.637175,0.0813927,0.679853,0.805021,0.179929,0.620937,0.0208182,0.241339,0.534881,0.031209,0.38939,0.725761,0.718393,0.821647,0.687281,0.459216,0.232569,0.791624,0.459432,0.70326,0.241497,0.912941,0.369541,0.253613,0.0359122,0.954634,0.229898,0.79166,0.918735,0.580717,0.374355,0.788725,0.557209,0.242506,0.0174617,0.104199,0.176741,0.281523,0.25348,0.196269,0.665254,0.68678,0.719804,0.857444,0.863466,0.659475,0.201138,0.501228,0.784275,0.769104,0.8526,0.206915,0.342511,0.231055,0.722779,0.489574,0.657448,0.292368,0.113501,0.739634,0.288745,0.32925,0.223379,0.519499,0.318801,0.90429,0.508167,0.467298,0.447006,0.832893,0.540394,0.202505,0.0190743,0.611007,0.586742,0.555894,0.979458,0.747038,0.0582886,0.642535,0.123951,0.567539,0.880925,0.414982,0.493354,0.543015,0.809392,0.902361,0.801213,0.427468,0.800917,0.524078,0.417179,0.563247,0.0946612,0.0764863,0.174537,0.420674,0.93892,0.124898,0.103774,0.171849,0.518233,0.75343,0.350894,0.110411,0.889263,0.180415,0.0756984,0.841069,0.591995,0.745174,0.899421,0.475474,0.107177,0.372133,0.979227,0.738011,0.321997,0.259103,0.094869,0.7977,0.233998,0.0185013,0.0950775,0.675855,0.580402,0.275921,0.184097,0.921153,0.242427,0.425083,0.213866,0.772934,0.377492,0.484868,0.379245,0.352045,0.868987,0.885811,0.78801,0.0298933,0.86687,0.190788,0.78938,0.447329,0.835187,0.681291,0.344618,0.726783,0.470324,0.0843219,0.172931,0.911955,0.849195,0.239313,0.115267,0.41556,0.0919629,0.53454,0.756021,0.544341,0.965371,0.717956,0.73582,0.264724,0.094048,0.691231,0.854212,0.989807,0.405659,0.540981,0.746571,0.389848,0.0314159,0.183034,0.80396,0.208572,0.386415,0.402813,0.150546,0.488961,0.257777,0.054785,0.218183,0.62241,0.355933,0.876819,0.828817,0.463931,0.670658,0.968153,0.498721,0.0593807,0.899128,0.664926,0.0448832,0.208007,0.180947,0.819266,0.22744,0.824449,0.616732,0.994269,0.966712,0.405237,0.554775,0.222553,0.298333,0.86398,0.196663,0.626571,0.403502,0.225854,0.929222,0.138252,0.037073,0.321162,0.355974,0.0847135,0.140695,0.0716053,0.520356,0.323107,0.0393249,0.0850545,0.458196,0.218397,0.214449,0.0358942,0.106243,0.74207,0.229094,0.135382,0.767543,0.72147,0.722592,0.155648,0.145596,0.239012,0.37382,0.410511,0.0227937,0.700435,0.00856781,0.682387,0.756261,0.313998,0.124479,0.6154,0.0161455,0.123195,0.580099,0.216987,0.0376322,0.101522,0.521721,|0.919103,0.469865,0.776786,0.770658,0.633346,0.740431,0.98962,0.091228,0.986949,0.799828,0.26151,0.639437,0.397587,0.332194,0.215951,0.015177,0.789429,0.41336,0.567801,0.174966,0.678668,0.861636,0.65426,0.346537,0.066772,0.16296,0.0221055,0.728071,0.889187,0.0722328,0.909191,0.957181,0.962462,0.201968,0.57737,0.369095,0.584286,0.868064,0.229428,0.316917,0.55108,0.774996,0.987149,0.264405,0.86234,0.000195503,0.612196,0.730376,0.740419,0.363913,0.821435,0.495911,0.861477,0.115284,0.188303,0.49024,0.102086,0.823336,0.593083,0.0724145,0.19204,0.432685,0.894853,0.207522,0.578195,0.398647,0.316652,0.954087,0.430341,0.383794,0.822969,0.425435,0.717729,0.1006,0.881661,0.611572,0.419498,0.291086,0.227571,0.75692,0.00539863,0.595869,0.143877,0.0467213,0.453927,0.551375,0.507307,0.974047,0.173429,0.662005,0.208213,0.302249,0.329075,0.397461,0.380738,0.985312,0.363292,0.143975,0.685888,0.747998,0.402754,0.19811,0.885889,0.708006,0.860495,0.983963,0.860156,0.794058,0.38635,0.353032,0.394109,0.958851,0.544191,0.761546,0.852391,0.422318,0.838112,0.868414,0.845042,0.146631,0.10269,0.35805,0.374745,0.938284,0.51925,0.00271565,0.86677,0.074303,0.684756,0.321644,0.0411672,0.620379,0.856284,0.804036,0.0617439,0.397306,0.166245,0.726919,0.26313,0.0708488,0.736735,0.675937,0.132538,0.220461,0.7274,0.958136,0.223055,0.838725,0.338545,0.556207,0.897696,0.43285,0.947572,0.904256,0.255745,0.461199,0.867071,0.988484,0.983988,0.107301,0.985847,0.769053,0.617397,0.321803,0.930482,0.41277,0.096682,0.443227,0.813908,0.496717,0.749166,0.180129,0.305171,0.616932,0.73205,0.70941,0.98732,0.318291,0.673313,0.915689,0.790477,0.17935,0.795068,0.258518,0.0523046,0.60404,0.168259,0.981153,0.170989,0.680544,0.462658,0.385102,0.0735751,0.630175,0.44729,0.175416,0.543305,0.719431,0.872107,0.0168961,0.038096,0.326223,0.033498,0.00957757,0.058931,0.126799,0.309161,0.644566,0.85793,0.32018,0.037966,0.144592,0.0398373,0.542502,0.651134,0.470552,0.817162,0.603402,0.959476,0.300042,0.420658,0.0970856,0.998922,0.139283,0.361148,0.948661,0.0940737,0.512336,0.587135,0.535918,0.030414,0.597376,0.395249,0.646549,0.183946,0.184648,0.182454,0.682767,0.901695,0.20502,0.346817,0.224129,0.310112,0.604384,0.0819895,0.882706,0.35465,0.969036,0.366088,0.0865943,0.0192561,0.992953,0.67251,0.703544,0.53904,0.587895,0.963265,0.758037,0.62987,0.720201,0.24876,0.361745,0.0140301,0.371181,0.269018,0.136472,0.177028,0.830426,0.539876,0.638031,0.731898,0.479745,0.846517,0.497801,0.920059,0.866647,0.558125,0.322818,0.477333,0.774082,0.790319,0.663557,0.486501,0.0590507,0.668104,0.0559376,0.665969,0.526012,0.12053,0.371096,0.921079,0.370435,0.55554,0.493689,0.0834795,0.719279,0.0641976,0.679606,0.92754,0.294955,0.327131,0.713571,0.952475,0.66835,0.106939,0.0112871,0.217647,0.780637,0.627849,0.308549,0.904413,0.363513,0.0519392,0.712563,0.365916,0.926159,0.912418,0.944092,0.450974,0.835894,0.570735,0.836501,0.352989,0.176623,0.545402,0.0650578,0.940947,0.533366,0.253515,0.035403,0.757706,0.528414,0.888249,0.0835529,0.782519,0.894787,0.0168843,0.0527781,0.496831,0.599054,0.752659,0.225481,0.451536,0.212321,0.959732,0.182378,0.234372,0.415801,0.0418641,0.204696,0.542543,0.0221526,0.390266,0.0948347,0.825433,0.321874,0.405821,0.720786,0.732264,0.927751,0.526788,0.228998,0.499574,0.673123,0.47792,0.911771,0.678488,0.392805,0.573947,0.75753,0.531731,0.900004,0.471205,0.0419377,0.337373,0.414225,0.958173,0.32776,0.604686,0.780894,0.207095,0.877676,0.818809,0.428228,0.825641,0.39736,0.780376,0.863434,0.556427,0.728104,0.542634,0.00764227,0.181269,0.553082,0.793738,0.815088,0.828731,0.368799,0.638447,0.993327,0.394199,0.84602,0.919836,0.776449,0.284235,0.62868,0.988692,0.173462,0.154665,0.477342,0.599116,0.430222,0.748202,0.931582,0.631691,0.358726,0.144041,0.133613,0.269131,0.563941,0.984146,0.992066,0.715555,0.997788,0.523307,0.686541,0.072999,0.862243,0.532078,0.963872,0.959338,0.962763,0.226465,0.919157,0.981494,0.668846,0.316242,0.416048,0.994394,0.730642,0.973856,0.107212,0.492273,0.793469,0.786474,0.0985388,0.238033,0.251251,0.486819,0.311841,0.0646369,0.587577,0.294315,0.209081,0.975015,0.52652,0.275097,0.882038,0.581844,0.584798,0.424429,0.606503,0.42367,0.89908,0.0720921,0.105512,0.11297,0.423018,0.942769,0.0530977,0.103665,0.513401,0.514308,0.437053,0.80758,0.674698,0.805688,0.611407,0.686125,0.378455,0.297171,0.374147,0.152142,0.385054,0.87706,0.869927,0.719929,0.979365,0.858541,0.891498,0.116026,0.269238,0.625951,0.609246,0.689542,0.60096,0.055372,0.255729,0.740975,0.584552,0.715221,0.0934974,0.444112,0.836517,0.092878,0.211234,0.288769,0.508423,0.773088,0.29447,0.835544,0.366523,0.0218624,0.151937,0.0161957,0.188585,0.98332,0.07804,0.997843,0.0938308,0.378283,0.27083,0.321464,0.00319356,0.490986,0.47209,0.192409,0.65901,0.834482,0.99745,0.891363,0.420082,0.950122,0.905992,0.0169004,0.934247,0.121581,0.516256,0.316432,0.508355,0.351296,0.00198287,0.443069,0.393179,0.219315,0.448185,0.0361522,0.65638,0.986266,0.427363,0.163198,0.891163,0.535851,0.779967,0.238644,0.76829,0.26602,0.375482,0.816286,0.367421,0.509708,0.697852,0.478565,0.0229517,0.632549,0.706195,0.415504,0.551447,0.0531819,0.622622,0.480272,0.183552,0.237069,0.93746,0.522532,0.745683,0.147324,0.892066,0.303677,0.512724,0.394115,0.857023,0.794401,0.470032,0.0999665,0.0603521,0.206817,0.377285,0.0458569,0.435856,0.108888,0.52678,0.268603,0.245316,0.923266,0.758471,0.294727,0.752385,0.541853,0.744037,0.366716,0.878083,0.477323,0.517674,0.340759,0.945223,0.029487,0.898472,0.507842,0.18603,0.382219,0.582705,0.459856,0.853592,0.472918,0.192139,0.0473256,0.924415,0.793288,0.0442281,0.683879,0.287115,0.410924,0.507194,0.168316,0.260818,0.625994,0.170245,0.805769,0.0656356,0.970542,0.20625,0.764545,0.607655,0.405556,0.649125,0.0666465,0.370267,0.0220859,0.868039,0.252576,0.249844,0.868864,0.212069,0.309443,0.39435,0.642334,0.298112,0.569059,0.222188,0.0860752,0.681798,0.056302,0.47785,0.959346,0.416313,0.0350883,0.27012,0.974194,0.852218,0.952919,0.663576,0.0292637,0.780334,0.413911,0.600013,0.340863,0.42306,0.146071,0.485239,0.273529,0.19906,0.56208,0.96551,0.455215,0.727763,0.291957,0.22865,0.25574,0.00724405,0.851383,0.99964,0.363061,0.623105,0.494463,0.520414,0.287593,0.831089,0.608309,0.655738,0.792753,0.684676,0.665162,0.474309,0.529472,0.440971,0.619935,0.145353,0.516248,0.993814,0.538963,0.532545,0.691078,0.623508,0.667042,0.942955,0.398693,0.469774,0.448423,0.587687,0.765359,0.367474,0.750142,0.424491,0.0562727,0.805884,0.902677,0.450951,0.310767,0.0929113,0.996821,0.893299,0.871346,0.899349,0.305656,0.103755,0.858424,0.402814,0.0823064,0.865453,0.665207,0.487968,0.145285,0.898819,0.932371,0.499036,0.153219,0.329933,0.67544,0.697692,0.0934428,0.270866,0.441004,0.286612,0.76289,0.501162,0.217577,0.951305,0.951058,0.617646,0.480697,0.0467817,0.585026,0.658589,0.0429785,0.855646,0.993206,0.259462,0.334396,0.357745,0.0402598,0.951677,0.537453,0.312104,0.499367,0.226367,0.322384,0.323004,0.0429336,0.470338,0.0489023,0.644129,0.643721,0.0228524,0.557193,0.978949,0.898824,0.051389,0.00326276,0.312422,0.376389,0.790106,0.703067,0.932676,0.452331,0.632048,0.400925,0.515368,0.975952,0.36249,0.428908,0.509482,0.987756,0.909644,0.626011,0.918096,0.803305,0.615824,0.457385,0.802583,0.299922,0.449537,0.319713,0.969741,0.920202,0.0941983,0.712732,0.761283,0.710712,0.689224,0.158114,0.318247,0.773394,0.730681,0.597921,0.772467,0.627827,0.197776,0.448766,0.311454,0.292203,0.355782,0.964766,0.720041,0.55562,0.541825,0.13206,0.888677,0.631674,0.729614,0.917245,0.868973,0.0275944,0.642872,0.0915789,0.110392,0.256362,0.687802,0.70979,0.280764,0.847298,0.732887,0.572083,0.824103,0.435879,0.304031,0.148368,0.501105,0.0159891,0.880612,0.837721,0.793872,0.555257,0.869358,0.646639,0.948294,0.777827,0.8187,0.726044,0.696194,0.600942,0.112287,0.139129,0.415423,0.616057,0.124799,0.820653,0.611195,0.511724,0.307876,0.602274,0.0450866,0.960216,0.379236,0.257823,0.65087,0.521412,0.993552,0.540081,0.52717,0.848134,0.140386,0.672479,0.880286,0.580407,0.536532,0.794325,0.546672,0.257481,0.0738795,0.923091,0.438193,0.788506,0.593009,0.572364,0.638582,0.421427,0.497099,0.729277,0.181879,0.527498,0.814662,0.526557,0.556792,0.815121,0.329591,0.0931785,0.652238,0.756133,0.285259,0.81967,0.628339,0.744913,0.958823,0.409123,0.625577,0.856955,0.119555,0.0701298,0.0750499,0.598242,0.572901,0.525867,0.582105,0.455323,0.721734,0.856807,0.638611,0.985904,0.908341,0.702553,0.0674199,0.0969898,0.93008,0.906234,0.265213,0.650343,0.0541186,0.622626,0.816837,0.906187,0.631146,0.0600523,0.290535,0.486467,0.100673,0.991683,0.762799,0.928759,0.624365,0.631195,0.109715,0.840575,0.11829,0.911388,0.684555,0.938893,0.793885,0.986692,0.54253,0.0231329,0.62947,0.680646,0.312047,0.457061,0.420518,0.306783,0.0565907,0.966079,0.642783,0.783468,0.841881,0.327704,0.878969,0.668496,0.815823,0.579438,0.0332506,0.975765,0.189303,0.355485,0.00409561,0.66029,0.956682,0.660226,0.299575,0.798775,0.118849,0.947658,0.24668,0.131056,0.195337,0.593669,0.245845,0.0187284,0.939706,0.329221,0.151004,0.495827,0.423114,|0.353979,0.203866,0.471283,0.929975,0.409228,0.10679,0.374605,0.627129,0.861936,0.855103,0.150805,0.191694,0.242304,0.729244,0.506605,0.370797,0.611898,0.870943,0.564731,0.365675,0.347697,0.71898,0.290795,0.571145,0.68689,0.907685,0.41209,0.288961,0.583,0.527154,0.212194,0.91616,0.847243,0.241264,0.992747,0.122648,0.637596,0.0918776,0.424665,0.101867,0.630732,0.15448,0.461043,0.268004,0.338691,0.568657,0.602115,0.0536252,0.614123,0.246649,0.447842,0.0397657,0.229084,0.279732,0.00923032,0.432893,0.769251,0.6822,0.181051,0.0171564,0.753096,0.106517,0.177066,0.957372,0.371413,0.437237,0.22878,0.322717,0.89445,0.586236,0.724083,0.247533,0.577557,0.253908,0.655636,0.342548,0.0516025,0.382971,0.941477,0.439481,0.687387,0.320645,0.333474,0.407856,0.253231,0.609258,0.020191,0.835086,0.698664,0.783493,0.359903,0.68833,0.379885,0.479695,0.295009,0.934258,0.895952,0.640547,0.103428,0.578779,0.737454,0.519129,0.625711,0.351994,0.171183,0.156551,0.680244,0.79435,0.285543,0.697402,0.915859,0.335792,0.362084,0.662887,0.874728,0.431619,0.827864,0.126073,0.242027,0.407378,0.51009,0.647369,0.956187,0.745311,0.0367917,0.0868375,0.904718,0.515804,0.14249,0.902281,0.911387,0.922693,0.413232,0.840319,0.36606,0.421967,0.724116,0.591688,0.362541,0.490547,0.272115,0.633116,0.512187,0.350039,0.282895,0.757205,0.294856,0.331331,0.57974,0.513226,0.361797,0.332167,0.981291,0.540421,0.440063,0.45977,0.639231,0.871712,0.184658,0.679689,0.0878501,0.777979,0.531127,0.924751,0.0735661,0.264584,0.896497,0.518646,0.54491,0.0266066,0.700687,0.218004,0.638882,0.310504,0.770303,0.945451,0.303513,0.0413809,0.584069,0.0280556,0.160722,0.575536,0.175089,0.813396,0.77687,0.865687,0.937376,0.820004,0.349433,0.299026,0.198831,0.390653,0.841264,0.562565,0.0238262,0.342011,0.612156,0.484587,0.198355,0.252564,0.713663,0.727343,0.554246,0.883231,0.984458,0.585461,0.0888238,0.953211,0.370338,0.623028,0.63953,0.699616,0.918166,0.412955,0.689379,0.919264,0.75174,0.00521058,0.99124,0.575817,0.182166,0.0367306,0.907352,0.248034,0.797637,0.495257,0.203203,0.157395,0.188817,0.0605911,0.588186,0.0302075,0.256804,0.274863,0.603187,0.603644,0.0795382,0.433718,0.263474,0.203547,0.420535,0.333265,0.689638,0.49804,0.73995,0.807089,0.61848,0.945185,0.0314681,0.199136,0.990273,0.407702,0.544779,0.319901,0.128047,0.620639,0.632692,0.0756733,0.504496,0.439059,0.0134545,0.345028,0.61363,0.716527,0.377016,0.73019,0.685947,0.310029,0.433156,0.284463,0.713368,0.988917,0.495248,0.237917,0.527507,0.85393,0.135852,0.251217,0.74847,0.6946,0.966952,0.780973,0.74204,0.78173,0.162483,0.633246,0.307231,0.883192,0.340875,0.610941,0.30145,0.880092,0.929823,0.533486,0.866048,0.690255,0.119171,0.881796,0.271358,0.693601,0.508223,0.687057,0.949255,0.413937,0.556701,0.896273,0.0559379,0.0376595,0.986282,0.175969,0.7835,0.784374,0.708589,0.688688,0.633213,0.573345,0.767546,0.880898,0.254262,0.6425,0.791937,0.882986,0.413004,0.133201,0.753742,0.743301,0.348597,0.291653,0.401903,0.565631,0.360683,0.763876,0.879786,0.397342,0.0066697,0.752171,0.21676,0.947124,0.808001,0.127235,0.735155,0.692189,0.582539,0.451537,0.777279,0.414974,0.974106,0.530565,0.598425,0.399428,0.217591,0.0636005,0.0606474,0.824002,0.708889,0.353344,0.142915,0.137407,0.486649,0.902513,0.743422,0.459226,0.565662,0.245208,0.652295,0.706601,0.644193,0.0669938,0.647305,0.193961,0.675118,0.455176,0.171007,0.998616,0.372489,0.482926,0.286471,0.933125,0.422028,0.923638,0.124807,0.817043,0.63386,0.210473,0.86327,0.531197,0.140064,0.446539,0.11117,0.895626,0.906775,0.95397,0.754154,0.88246,0.0651429,0.07157,0.963258,0.388216,0.613375,0.868904,0.00557315,0.439165,0.137453,0.92843,0.740322,0.649332,0.30363,0.771067,0.880687,0.642177,0.0528404,0.608263,0.779502,0.49198,0.629937,0.891775,0.316042,0.391661,0.525606,0.823268,0.885116,0.314368,0.52803,0.559891,0.391586,0.642103,0.971078,0.289808,0.225978,0.372739,0.105676,0.120087,0.816734,0.264542,0.826452,0.578371,0.694761,0.721817,0.15727,0.105505,0.431874,0.0839032,0.941178,0.115088,0.798795,0.335295,0.00473726,0.161757,0.505415,0.611725,0.529359,0.31794,0.722735,0.498669,0.174997,0.279065,0.743011,0.0588913,0.188091,0.356119,0.614085,0.373064,0.156771,0.456139,0.554103,0.925593,0.266168,0.658231,0.774175,0.908854,0.605613,0.501006,0.412957,0.301454,0.721282,0.479615,0.0705457,0.228411,0.826341,0.743223,0.135406,0.455618,0.0421821,0.795074,0.976034,0.774581,0.774587,0.890404,0.632852,0.539491,0.42907,0.875538,0.408148,0.34959,0.736707,0.664703,0.434117,0.522477,0.624298,0.640011,0.764068,0.580634,0.227834,0.769052,0.956696,0.535127,0.241426,0.82359,0.965572,0.124812,0.968319,0.893956,0.595697,0.624753,0.247099,0.0542382,0.0162898,0.645467,0.679542,0.00521773,0.368057,0.850824,0.0123954,0.103096,0.941194,0.798436,0.624645,0.0359653,0.336976,0.988828,0.936524,0.0976807,0.142164,0.884307,0.890517,0.474511,0.629058,0.421926,0.30737,0.197978,0.101242,0.971942,0.29883,0.678617,0.0961831,0.579134,0.694529,0.528275,0.144655,0.875642,0.194252,0.168085,0.667179,0.798933,0.876664,0.192065,0.426653,0.0961969,0.727469,0.926506,0.58031,0.545048,0.435311,0.894737,0.841754,0.552206,0.00657171,0.344908,0.685711,0.545072,0.936293,0.319829,0.717496,0.792887,0.477231,0.0128649,0.989232,0.782739,0.261492,0.500114,0.361859,0.774316,0.848272,0.712132,0.358573,0.0377292,0.538134,0.250726,0.184967,0.372217,0.672829,0.686159,0.323686,0.180136,0.63802,0.326357,0.533122,0.48073,0.858141,0.0455206,0.341646,0.35377,0.927587,0.0862651,0.638981,0.507348,0.135899,0.76574,0.342076,0.851552,0.641313,0.0533173,0.382164,0.670399,0.233025,0.939769,0.828722,0.023501,0.41063,0.0737531,0.202606,0.667207,0.418523,0.820148,0.508179,0.107903,0.803726,0.285104,0.988954,0.377762,0.157291,0.850829,0.609858,0.877206,0.455991,0.709887,0.572856,0.798229,0.16724,0.624874,0.843897,0.423623,0.289012,0.407966,0.865219,0.699496,0.675103,0.0111075,0.487928,0.198512,0.764056,0.0521798,0.367493,0.473449,0.72946,0.371478,0.482339,0.99437,0.654862,0.573393,0.736576,0.876642,0.860812,0.414761,0.394315,0.158793,0.00997466,0.0462844,0.96569,0.42284,0.398966,0.54782,0.133303,0.721361,0.238165,0.632244,0.038986,0.348865,0.235397,0.172965,0.800753,0.0584354,0.842702,0.48153,0.414269,0.32887,0.0458257,0.900512,0.857146,0.979947,0.419498,0.344316,0.279534,0.783974,0.0407724,0.620465,0.948114,0.196334,0.293852,0.419735,0.00167269,0.0826367,0.658416,0.142019,0.854174,0.759163,0.588221,0.681867,0.00562555,0.247583,0.407352,0.971482,0.630052,0.92855,0.485508,0.0769481,0.437136,0.768495,0.677528,0.192443,0.921619,0.183654,0.390901,0.366602,0.769437,0.585965,0.304729,0.283224,0.479127,0.90169,0.64553,0.0809377,0.988114,0.0822234,0.41542,0.634982,0.439015,0.806116,0.105072,0.640955,0.160071,0.685659,0.0841055,0.682371,0.930696,0.0384745,0.13227,0.83754,0.509727,0.699103,0.146792,0.568136,0.850756,0.902804,0.702274,0.320399,0.255776,0.498511,0.0617597,0.833426,0.36698,0.745828,0.925387,0.644249,0.0822603,0.985561,0.495775,0.922655,0.521851,0.172367,0.866307,0.15123,0.119949,0.866965,0.176546,0.803849,0.903849,0.0204151,0.952198,0.379769,0.111609,0.157852,0.499717,0.879014,0.0799859,0.841946,0.0978166,0.9355,0.673134,0.842705,0.821527,0.491189,0.741376,0.570189,0.745424,0.521082,0.601752,0.431289,0.099704,0.770437,0.100626,0.0509331,0.482848,0.377645,0.682683,0.419137,0.0500696,0.49596,0.461383,0.246485,0.448729,0.369122,0.620639,0.845432,0.114535,0.0625944,0.81509,0.394407,0.30275,0.40778,0.0712517,0.918423,0.933565,0.421244,0.288442,0.111954,0.709888,0.056456,0.529814,0.480423,0.213491,0.594109,0.511528,0.926624,0.685645,0.100977,0.687881,0.140334,0.483933,0.289974,0.395482,0.160283,0.243317,0.528142,0.452951,0.159782,0.183793,0.41974,0.81913,0.626956,0.62905,0.0438518,0.653421,0.465652,0.998448,0.858248,0.750846,0.396656,0.955691,0.814361,0.338601,0.917972,0.853039,0.200066,0.56948,0.0730886,0.355533,0.00386059,0.94356,0.148829,0.875188,0.893409,0.722098,0.328839,0.653264,0.834844,0.0415308,0.334437,0.670829,0.732564,0.974195,0.282531,0.843431,0.94051,0.360442,0.519848,0.685349,0.136644,0.945437,0.654604,0.511999,0.0629979,0.598431,0.394777,0.906223,0.812091,0.290151,0.447754,0.958111,0.180291,0.584987,0.525037,0.166987,0.753012,0.18371,0.0625142,0.717074,0.0279658,0.299351,0.314016,0.807735,0.573341,0.0639306,0.7294,0.670483,0.539158,0.318213,0.209733,0.907574,0.745122,0.612217,0.0564641,0.343518,0.930916,0.0903678,0.255482,0.36037,0.952094,0.423353,0.663695,0.827065,0.60846,0.699754,0.0714971,0.513742,0.821938,0.0819203,0.65271,0.458149,0.833746,0.580327,0.567331,0.760653,0.373102,0.0953404,0.720414,0.391256,0.340994,0.558207,0.411528,0.550114,0.479285,0.294435,0.459004,0.0831142,0.916801,0.425865,0.485234,0.204388,0.478197,0.601255,0.53318,0.0592663,0.967037,0.382556,0.790262,0.123752,0.0476482,0.111986,0.369076,0.816765,0.263763,0.664986,0.154324,0.823529,0.00262636,0.309288,0.684416,0.19852,0.946514,0.604131,0.41606,0.916475,0.853987,0.984944,0.838144,0.246386,0.718784,0.030696,0.26103,0.246434,0.00395751,0.745294,0.801249,0.543522,0.513996,0.196414,0.500954,0.489589,0.243815,|0.518742,0.573281,0.555543,0.607853,0.232831,0.0850768,0.382685,0.565359,0.718371,0.159069,0.0604708,0.69787,0.0323994,0.141079,0.667259,0.136543,0.440878,0.299594,0.805494,0.278032,0.144624,0.806456,0.204103,0.873038,0.0706043,0.304175,0.589482,0.973271,0.491011,0.390311,0.94164,0.453737,0.0735099,0.176135,0.787552,0.304216,0.0280133,0.978802,0.719821,0.871881,0.259875,0.525808,0.206057,0.682624,0.547527,0.343477,0.733386,0.452159,0.450938,0.0284563,0.803141,0.716645,0.376599,0.149942,0.601157,0.992671,0.168385,0.494467,0.164716,0.187878,0.19437,0.971366,0.242599,0.0558512,0.545469,0.763305,0.661409,0.799164,0.343323,0.910755,0.437382,0.482689,0.800465,0.226475,0.561901,0.0322419,0.89657,0.952084,0.157028,0.473294,0.29045,0.0374068,0.600595,0.500434,0.591066,0.582722,0.516779,0.671918,0.563752,0.998936,0.0231449,0.743326,0.517138,0.612066,0.850173,0.254752,0.375506,0.76089,0.872081,0.0351966,0.241541,0.952119,0.917615,0.947628,0.608647,0.190516,0.906783,0.867982,0.826802,0.395063,0.121401,0.420197,0.1537,0.284703,0.689756,0.430888,0.0671032,0.307305,0.459316,0.504122,0.940419,0.70878,0.616871,0.150332,0.187557,0.896288,0.525677,0.365478,0.654574,0.753611,0.433245,0.36941,0.336075,0.326994,0.330463,0.650098,0.168919,0.530275,0.919472,0.925107,0.656496,0.0854049,0.552986,0.694509,0.318391,0.10983,0.865994,0.0656423,0.420029,0.956338,0.8273,0.0425351,0.480992,0.130378,0.427359,0.551303,0.109638,0.223531,0.215317,0.400892,0.604675,0.451204,0.171663,0.0110444,0.368265,0.0695223,0.994073,0.538695,0.932935,0.552384,0.792041,0.988532,0.952455,0.624267,0.734467,0.546115,0.796524,0.507228,0.309681,0.940589,0.684025,0.422807,0.998655,0.508054,0.570703,0.58559,0.874688,0.406034,0.110363,0.368927,0.721817,0.786874,0.923337,0.403869,0.284272,0.278279,0.527982,0.394938,0.597707,0.175406,0.52598,0.852446,0.271981,0.181417,0.943117,0.0741999,0.289572,0.138847,0.014025,0.164767,0.263199,0.682759,0.903717,0.400743,0.624366,0.454626,0.702402,0.280354,0.100276,0.341736,0.743312,0.580218,0.900278,0.597584,0.21296,0.74535,0.238254,0.25842,0.951984,0.704877,0.649349,0.996944,0.582421,0.594864,0.090128,0.998524,0.219485,0.436786,0.554484,0.662803,0.174753,0.789941,0.986945,0.0535845,0.0760449,0.806909,0.0327666,0.628004,0.991531,0.762674,0.0372787,0.786166,0.42076,0.723189,0.852433,0.49103,0.658866,0.898842,0.593226,0.405775,0.728119,0.427637,0.0834329,0.793772,0.994102,0.452289,0.907225,0.909539,0.745386,0.673066,0.366879,0.530223,0.372979,0.106281,0.0651252,0.808472,0.1439,0.520983,0.505739,0.102362,0.518216,0.0123979,0.587249,0.416739,0.886023,0.3575,0.192782,0.868003,0.494638,0.523219,0.844511,0.293471,0.276918,0.211309,0.734453,0.72225,0.552881,0.0513163,0.213673,0.239368,0.22787,0.911938,0.300009,0.625652,0.470779,0.832669,0.104411,0.79877,0.452162,0.112382,0.325787,0.310854,0.746284,0.124172,0.761049,0.631523,0.145603,0.194671,0.644509,0.892864,0.39343,0.520246,0.0388799,0.241618,0.447241,0.57967,0.381111,0.985098,0.327777,0.301297,0.610933,0.488095,0.488688,0.835899,0.361694,0.35083,0.0149147,0.720925,0.716714,0.0626799,0.443198,0.206969,0.659744,0.393221,0.865445,0.581106,0.701362,0.0325297,0.45522,0.524267,0.596801,0.275988,0.984976,0.628854,0.0752412,0.118462,0.75563,0.734604,0.818269,0.823905,0.0537738,0.0106621,0.714133,0.466633,0.359742,0.943492,0.636996,0.580449,0.397256,0.201164,0.0530322,0.0672694,0.990025,0.403597,0.801197,0.798924,0.415124,0.267671,0.682244,0.941471,0.291372,0.440185,0.932402,0.80288,0.154474,0.0602632,0.790986,0.195674,0.715102,0.467499,0.178776,0.288584,0.810558,0.490369,0.308472,0.272605,0.173648,0.991832,0.355173,0.950507,0.749835,0.211596,0.125775,0.930467,0.495758,0.615547,0.393721,0.139788,0.995984,0.0169414,0.476282,0.333837,0.937368,0.915466,0.0773985,0.852072,0.00633472,0.809983,0.314178,0.420639,0.837288,0.934883,0.70588,0.314889,0.894388,0.362069,0.150694,0.730979,0.217158,0.577164,0.0380955,0.733207,0.379158,0.369148,0.425469,0.446837,0.133049,0.955512,0.389494,0.168326,0.238224,0.986139,0.63434,0.00540829,0.13983,0.477458,0.889537,0.180435,0.977726,0.387901,0.058179,0.472157,0.660456,0.477914,0.394632,0.323546,0.68283,0.808319,0.80918,0.954015,0.658225,0.672481,0.68585,0.371669,0.804714,0.749515,0.171665,0.366726,0.296021,0.834637,0.916615,0.186487,0.973912,0.686817,0.545954,0.0111463,0.879194,0.874894,0.72201,0.812193,0.263473,0.638577,0.803362,0.43863,0.417452,0.501933,0.314369,0.924258,0.592458,0.763824,0.944597,0.582418,0.0492824,0.245281,0.525894,0.68334,0.743044,0.295066,0.668486,0.453617,0.325499,0.550305,0.876456,0.644446,0.610415,0.659446,0.00650895,0.875285,0.83262,0.824494,0.940669,0.294285,0.396712,0.172375,0.493139,0.517062,0.469077,0.358536,0.945837,0.318448,0.29115,0.32708,0.634545,0.899949,0.604079,0.863848,0.435776,0.280228,0.775179,0.107327,0.549142,0.961196,0.776419,0.661592,0.0568064,0.093267,0.604484,0.274093,0.951344,0.501242,0.122603,0.0855808,0.0742043,0.235429,0.271233,0.273064,0.918221,0.820694,0.87946,0.760654,0.89617,0.652888,0.0697106,0.381297,0.0763483,0.385383,0.343049,0.80965,0.00682211,0.845331,0.338523,0.475169,0.818806,0.678131,0.309063,0.784908,0.423177,0.814155,0.837665,0.616999,0.137588,0.833973,0.418192,0.952233,0.470299,0.475109,0.629337,0.570319,0.298544,0.396293,0.637224,0.503696,0.147314,0.525756,0.758597,0.903323,0.700753,0.662838,0.513965,0.834671,0.179388,0.39451,0.805019,0.140902,0.376198,0.108277,0.301564,0.170709,0.33753,0.022402,0.304078,0.294747,0.446798,0.263203,0.286209,0.872712,0.822991,0.00785768,0.969303,0.276187,0.0341652,0.944552,0.574452,0.562371,0.180541,0.532404,0.037787,0.62387,0.495158,0.744131,0.647818,0.927455,0.168838,0.746484,0.94216,0.200674,0.463199,0.823327,0.554745,0.227249,0.317893,0.703984,0.552893,0.572111,0.826326,0.115725,0.439565,0.599934,0.374438,0.707106,0.22388,0.817303,0.0227588,0.445957,0.221149,0.76008,0.737431,0.264779,0.512868,0.477309,0.749673,0.373483,0.571088,0.684325,0.768948,0.236668,0.629575,0.0076282,0.93143,0.31532,0.631615,0.0337343,0.563563,0.144764,0.649171,0.900335,0.831396,0.592583,0.138145,0.678436,0.840229,0.808275,0.954717,0.995191,0.0953379,0.287953,0.477456,0.316063,0.0768012,0.254056,0.173972,0.0680774,0.302702,0.772669,0.276053,0.23902,0.592026,0.279653,0.164331,0.098691,0.420796,0.452939,0.630397,0.479358,0.134206,0.783493,0.290862,0.930109,0.382576,0.884688,0.178948,0.784177,0.771487,0.432448,0.492422,0.200206,0.586345,0.946364,0.605251,0.979297,0.963323,0.854957,0.385001,0.112801,0.385487,0.8696,0.643479,0.636459,0.680554,0.607961,0.300327,0.155944,0.473742,0.0255608,0.768961,0.28075,0.287888,0.981275,0.0939062,0.276558,0.342332,0.284227,0.50853,0.729844,0.826249,0.134411,0.0516654,0.42402,0.123074,0.384817,0.367347,0.455826,0.244955,0.228656,0.878898,0.30274,0.527931,0.984211,0.390735,0.205436,0.922506,0.726647,0.873509,0.504901,0.700809,0.966986,0.510956,0.749786,0.342221,0.0315814,0.0494294,0.145106,0.403803,0.743714,0.474837,0.592279,0.68774,0.0019381,0.0985278,0.129329,0.891631,0.317364,0.164564,0.266905,0.508976,0.064384,0.349595,0.593376,0.912608,0.967014,0.518711,0.730995,0.00309682,0.461357,0.475604,0.00406563,0.116797,0.867884,0.176596,0.160809,0.304147,0.323879,0.100084,0.825583,0.934538,0.855746,0.28372,0.658204,0.114767,0.0610994,0.0408872,0.894176,0.287738,0.0534422,0.11457,0.568891,0.945364,0.00644284,0.136217,0.358212,0.787423,0.438438,0.105875,0.0467184,0.36175,0.529354,0.205047,0.859169,0.950174,0.702171,0.212583,0.579673,0.251751,0.36481,0.240017,0.518884,0.18276,0.148449,0.630735,0.173911,0.123986,0.382764,0.589451,0.121803,0.940832,0.385727,0.0944926,0.779724,0.0996751,0.0441034,0.821096,0.711777,0.450455,0.99324,0.187048,0.338101,0.415325,0.425202,0.524473,0.375545,0.59548,0.19396,0.860504,0.704424,0.41007,0.96452,0.256372,0.984806,0.647337,0.895226,0.848493,0.00436866,0.906969,0.747477,0.930184,0.699363,0.724444,0.502118,0.163735,0.371667,0.939692,0.25759,0.449301,0.788372,0.664413,0.936795,0.475415,0.879659,0.203633,0.970225,0.324841,0.472542,0.298891,0.750729,0.11545,0.99665,0.035731,0.713287,0.414825,0.594561,0.704268,0.743148,0.311812,0.57609,0.627529,0.299233,0.923357,0.885946,0.918194,0.350069,0.712117,0.229436,0.643707,0.314041,0.0678322,0.522865,0.279536,0.547285,0.483553,0.0641868,0.777793,0.403487,0.183001,0.283099,0.5662,0.366208,0.234479,0.466501,0.304439,0.728155,0.0409948,0.943319,0.560254,0.73265,0.664484,0.0259206,0.0516201,0.524847,0.891166,0.756017,0.132404,0.641282,0.78003,0.930619,0.338368,0.161083,0.376099,0.888131,0.0190367,0.626225,0.192188,0.434093,0.436231,0.282231,0.3678,0.363964,0.523904,0.106834,0.822059,0.242484,0.957079,0.0140287,0.598488,0.615046,0.451083,0.00733787,0.891839,0.201809,0.0573702,0.92833,0.151967,0.533711,0.388611,0.226421,0.311969,0.718058,0.0976782,0.438762,0.423551,0.540129,0.795004,0.527207,0.556796,0.889646,0.494618,0.701442,0.597182,0.0572613,0.0453532,0.763921,0.856324,0.648177,0.838446,0.120016,0.669734,0.868716,0.219136,0.469415,0.97371,0.790071,0.9532,0.230646,0.0865206,0.771716,0.272459,0.76713,0.94313,0.638186,0.124833,0.667441,|0.616242,0.519306,0.0833629,0.0384048,0.20964,0.87771,0.843531,0.776137,0.435789,0.343775,0.76465,0.153605,0.110623,0.686311,0.986895,0.89825,0.471968,0.400274,0.724656,0.423829,0.0110446,0.0594366,0.0618003,0.304629,0.213267,0.336146,0.91986,0.460307,0.121557,0.0516961,0.81906,0.382527,0.0232577,0.503287,0.395123,0.894698,0.103336,0.501768,0.845889,0.714087,0.885142,0.891072,0.699837,0.444775,0.386521,0.851105,0.622637,0.965786,0.285203,0.79473,0.406615,0.693267,0.247723,0.0322039,0.14838,0.811706,0.0102909,0.509052,0.39496,0.238708,0.600663,0.319325,0.52161,0.576563,0.82129,0.164242,0.524756,0.590233,0.335289,0.970851,0.557514,0.869844,0.00806487,0.257809,0.85514,0.453039,0.802625,0.327595,0.140941,0.061108,0.499021,0.829715,0.202277,0.466128,0.183288,0.496457,0.264564,0.980771,0.173132,0.0665349,0.804302,0.937707,0.638811,0.930051,0.338879,0.356196,0.21842,0.453077,0.203506,0.142352,0.507291,0.550505,0.420063,0.280434,0.993551,0.372879,0.0950808,0.0317051,0.150252,0.316654,0.903169,0.410376,0.705382,0.0535975,0.237908,0.877405,0.794347,0.903849,0.382732,0.732352,0.729473,0.622172,0.18036,0.189444,0.500143,0.437092,0.0718709,0.479876,0.945747,0.0079248,0.576546,0.677699,0.206127,0.697003,0.00617486,0.00107354,0.280126,0.139834,0.159226,0.213072,0.403221,0.154653,0.421856,0.980312,0.648726,0.139085,0.996047,0.586744,0.449659,0.766253,0.786001,0.523292,0.819823,0.11103,0.527518,0.795876,0.259967,0.802374,0.64435,0.378935,0.715643,0.616171,0.930953,0.222851,0.900575,0.141409,0.136487,0.496572,0.674909,0.200806,0.282408,0.667462,0.0731884,0.49861,0.784549,0.821929,0.839547,0.911123,0.653376,0.752357,0.427436,0.0194429,0.154453,0.951791,0.637837,0.860452,0.0464208,0.497065,0.444882,0.344898,0.370792,0.670091,0.0106128,0.414762,0.208315,0.711259,0.470257,0.848806,0.707132,0.416159,0.858421,0.1758,0.0639957,0.249299,0.437092,0.966303,0.728935,0.0221332,0.00901103,0.752838,0.66088,0.950616,0.848257,0.140821,0.855625,0.69713,0.371431,0.422788,0.451209,0.812653,0.0949101,0.0953096,0.510154,0.400391,0.727746,0.173305,0.621884,0.883327,0.305505,0.393681,0.599161,0.476366,0.215755,0.412622,0.128521,0.666085,0.119905,0.0603622,0.883365,0.769802,0.66307,0.330948,0.58112,0.783625,0.203568,0.521326,0.834997,0.588377,0.646967,0.412511,0.514091,0.719981,0.408552,0.328386,0.418739,0.780644,0.27445,0.964646,0.605217,0.762141,0.278487,0.959057,0.861555,0.0321857,0.185916,0.453306,0.645923,0.993869,0.729103,0.964822,0.131581,0.898883,0.123553,0.229747,0.25862,0.397058,0.712279,0.066615,0.390719,0.392596,0.227473,0.907431,0.512828,0.593636,0.876472,0.749406,0.604003,0.530512,0.688228,0.998796,0.658078,0.370127,0.9803,0.734053,0.974179,0.585026,0.261772,0.214259,0.628435,0.545632,0.537903,0.969487,0.803385,0.976004,0.9184,0.00285983,0.967087,0.624329,0.604847,0.54247,0.00650418,0.791722,0.914818,0.939713,0.890505,0.86644,0.639218,0.148979,0.545445,0.418989,0.384665,0.757796,0.369993,0.814909,0.657897,0.0010882,0.836644,0.156472,0.0121652,0.677892,0.627825,0.970728,0.127755,0.629384,0.073024,0.0414617,0.674861,0.664596,0.365424,0.370375,0.580202,0.492142,0.430057,0.0898734,0.295303,0.719188,0.281973,0.840496,0.164881,0.647531,0.997058,0.161574,0.184188,0.803306,0.114199,0.0294109,0.319516,0.823164,0.872906,0.414957,0.290725,0.28956,0.746239,0.533278,0.837853,0.852388,0.0742533,0.759064,0.367668,0.114682,0.0270177,0.875137,0.258969,0.869498,0.718748,0.788836,0.510826,0.0492811,0.111635,0.116662,0.908505,0.397882,0.661434,0.231806,0.127711,0.569846,0.663147,0.718356,0.992977,0.297016,0.969037,0.995184,0.29331,0.388854,0.0115362,0.0451753,0.356211,0.774428,0.242572,0.59466,0.111609,0.980173,0.952075,0.530056,0.943872,0.0905254,0.940162,0.143246,0.811396,0.679373,0.600507,0.490316,0.278155,0.416167,0.837802,0.0421407,0.648491,0.689434,0.1492,0.321661,0.689297,0.407295,0.424019,0.309791,0.777336,0.319797,0.146891,0.576121,0.254909,0.361107,0.313661,0.810729,0.740924,0.00823504,0.686441,0.866494,0.911394,0.763673,0.497086,0.939362,0.604689,0.944668,0.614908,0.876701,0.33976,0.350985,0.34044,0.600554,0.318356,0.487228,0.98392,0.676033,0.575539,0.0426599,0.684509,0.663686,0.376024,0.828697,0.295662,0.0336754,0.413384,0.326095,0.692656,0.103457,0.237108,0.0740266,0.111493,0.226389,0.960836,0.440365,0.731789,0.609377,0.740049,0.327713,0.995486,0.0354655,0.555367,0.669976,0.68192,0.972085,0.483586,0.826043,0.968866,0.589077,0.974342,0.37857,0.932134,0.969627,0.959045,0.216006,0.142493,0.39653,0.938423,0.499873,0.727813,0.0163897,0.169986,0.0766869,0.98486,0.91012,0.425507,0.641013,0.222032,0.232748,0.691022,0.0634055,0.127559,0.49081,0.679389,0.11188,0.459036,0.794558,0.92149,0.381165,0.293722,0.714368,0.129486,0.909748,0.769691,0.416387,0.559976,0.52275,0.105108,0.991297,0.555536,0.670285,0.703086,0.810667,0.19766,0.021116,0.118219,0.764163,0.93425,0.743872,0.314545,0.120444,0.0244818,0.100536,0.673683,0.137487,0.792238,0.677684,0.160656,0.400283,0.218547,0.310293,0.830489,0.172303,0.59574,0.735948,0.348675,0.383785,0.368862,0.940729,0.173739,0.791026,0.760824,0.775275,0.526382,0.436025,0.485835,0.203249,0.116168,0.577574,0.503232,0.35757,0.386668,0.54174,0.417953,0.574037,0.497495,0.636846,0.531955,0.167064,0.0962536,0.524666,0.175653,0.774011,0.679513,0.922498,0.623653,0.765473,0.351587,0.588796,0.0831035,0.721295,0.375356,0.550163,0.850798,0.913054,0.926592,0.0447211,0.44825,0.109402,0.115879,0.263317,0.359947,0.513034,0.815258,0.554145,0.535431,0.0153021,0.28459,0.60886,0.798445,0.880839,0.71583,0.666932,0.467117,0.511533,0.508798,0.365336,0.0315285,0.529839,0.846487,0.203123,0.955266,0.630063,0.837734,0.344016,0.965425,0.551558,0.657962,0.544101,0.144048,0.99555,0.345607,0.133966,0.642902,0.684312,0.520895,0.86183,0.480439,0.258451,0.234227,0.42149,0.76611,0.304296,0.489938,0.0110162,0.405372,0.170198,0.833039,0.486432,0.479064,0.816224,0.0810524,0.39449,0.0903721,0.691977,0.34698,0.421685,0.710822,0.859945,0.776323,0.469285,0.644978,0.973482,0.566249,0.089146,0.0860983,0.208623,0.259726,0.185948,0.163719,0.575573,0.896522,0.0261657,0.384088,0.764033,0.872174,0.0128415,0.691856,0.212359,0.294915,0.169582,0.117444,0.044435,0.41759,0.661229,0.299,0.1236,0.700152,0.911173,0.163808,0.776785,0.154452,0.162184,0.799227,0.84534,0.0607548,0.7116,0.925765,0.342006,0.101941,0.660549,0.360102,0.371668,0.382865,0.0827416,0.156208,0.678485,0.125212,0.162236,0.859957,0.0977634,0.109454,0.247744,0.975194,0.109539,0.766143,0.375719,0.654514,0.366558,0.669151,0.987536,0.0532343,0.66476,0.0185773,0.883123,0.245312,0.298177,0.239632,0.541628,0.758295,0.19124,0.858092,0.342251,0.271054,0.685382,0.783598,0.68426,0.447985,0.234669,0.15331,0.522656,0.890979,0.549808,0.1813,0.985453,0.294945,0.363958,0.64071,0.788007,0.922735,0.225691,0.770612,0.665602,0.888725,0.260726,0.763347,0.539645,0.228206,0.10106,0.372079,0.956037,0.426564,0.624989,0.0219774,0.612837,0.318098,0.325506,0.507708,0.718131,0.903235,0.205798,0.173729,0.426983,0.441087,0.990985,0.250303,0.575507,0.168759,0.271435,0.00263864,0.431389,0.130905,0.566829,0.0340099,0.806636,0.754517,0.620866,0.857909,0.761808,0.453952,0.101292,0.891175,0.709032,0.58225,0.0453026,0.982793,0.260481,0.66121,0.811917,0.695388,0.557071,0.0953304,0.459537,0.979475,0.114614,0.827266,0.931965,0.435599,0.103438,0.668607,0.10678,0.373526,0.677005,0.373804,0.0196477,0.333507,0.680852,0.894811,0.579787,0.0779366,0.349621,0.262811,0.286615,0.164519,0.945105,0.868447,0.647591,0.691681,0.57534,0.435727,0.877511,0.84409,0.669383,0.0228319,0.379867,0.647959,0.756103,0.63683,0.0863174,0.376788,0.67477,0.155585,0.0944422,0.246352,0.408713,0.447635,0.93134,0.782733,0.63266,0.142966,0.00476271,0.020535,0.747597,0.162633,0.116518,0.794842,0.288802,0.408435,0.228758,0.924572,0.806641,0.135045,0.368081,0.729626,0.465393,0.650529,0.736177,0.439412,0.212686,0.593017,0.829748,0.555375,0.269586,0.576486,0.184118,0.451795,0.227714,0.458549,0.744613,0.881722,0.167797,0.473133,0.524089,0.140274,0.81279,0.563514,0.896543,0.74541,0.450629,0.896593,0.606166,0.193322,0.0402734,0.271396,0.343035,0.821341,0.587751,0.477214,0.829678,0.897147,0.499876,0.981139,0.848032,0.614834,0.926333,0.870672,0.379819,0.548773,0.989093,0.612035,0.406968,0.132734,0.536982,0.538438,0.672568,0.383182,0.978462,0.0584552,0.0140768,0.388699,0.721187,0.931781,0.971194,0.0992317,0.408685,0.682241,0.391492,0.923979,0.0463086,0.385971,0.542499,0.62377,0.322814,0.599447,0.111367,0.640628,0.255706,0.445442,0.380131,0.859439,0.17191,0.298879,0.867694,0.581274,0.747839,0.770306,0.60167,0.476584,0.666516,0.737249,0.714568,0.0200982,0.0667312,0.873753,0.0737869,0.415334,0.641455,0.909999,0.0701252,0.877153,0.588802,0.174238,0.258362,0.854667,0.920167,0.0169834,0.0616216,0.936638,0.794421,0.497137,0.651221,0.478778,0.816207,0.807389,0.00209427,0.740605,0.393814,0.510458,0.54849,0.155023,0.169743,0.484441,0.220628,0.1886,0.244547,0.957416,0.254786,0.280177,0.379929,0.420441,0.231955,0.94338,0.216496,0.559639,0.11525,0.882187,0.303384,0.192205,0.621136,0.121658,0.904657,0.129162,0.251512,0.752582,0.13497,|0.790224,0.936409,0.554445,0.890656,0.641405,0.781055,0.1521,0.571278,0.61453,0.666448,0.883693,0.423343,0.477556,0.328239,0.664547,0.219864,0.0432674,0.360316,0.474037,0.227624,0.350331,0.781737,0.221528,0.196098,0.247076,0.847581,0.833687,0.645389,0.629953,0.0540454,0.490535,0.796017,0.0342904,0.922221,0.00859028,0.689235,0.665398,0.596017,0.480707,0.853045,0.0335919,0.293404,0.490243,0.276881,0.739602,0.606449,0.940536,0.266742,0.582372,0.277357,0.4255,0.769072,0.179793,0.648542,0.293675,0.892192,0.115133,0.565295,0.654678,0.769925,0.663824,0.98682,0.453752,0.869276,0.180709,0.898422,0.648004,0.611248,0.79546,0.902969,0.968656,0.592418,0.244295,0.803539,0.423005,0.607579,0.681227,0.162023,0.549193,0.203338,0.698887,0.566467,0.853522,0.323815,0.382771,0.228952,0.614191,0.600516,0.760936,0.40844,0.144285,0.441711,0.382854,0.14229,0.673036,0.90627,0.557464,0.53568,0.968475,0.897013,0.926307,0.922217,0.41323,0.953406,0.15252,0.105892,0.133851,0.909146,0.949472,0.856627,0.834278,0.501809,0.180881,0.642396,0.00494581,0.0681168,0.606312,0.639779,0.333605,0.655824,0.462471,0.0310848,0.765525,0.91629,0.925408,0.989468,0.268174,0.898691,0.122827,0.980789,0.27431,0.591212,0.257214,0.442169,0.00194669,0.14511,0.635682,0.337088,0.610052,0.0374579,0.766836,0.108953,0.287696,0.11689,0.0789079,0.611994,0.914696,0.521574,0.266431,0.245163,0.10527,0.509342,0.760176,0.716228,0.270115,0.658864,0.885669,0.207055,0.200042,0.551007,0.0920514,0.331742,0.813435,0.882297,0.795806,0.490208,0.983264,0.898028,0.908735,0.988441,0.0168531,0.15076,0.361682,0.206888,0.518451,0.148004,0.381731,0.369456,0.654875,0.730555,0.883517,0.655162,0.144785,0.961397,0.032034,0.746341,0.830167,0.535995,0.919803,0.26299,0.825978,0.47339,0.345506,0.694523,0.493072,0.173329,0.37485,0.369038,0.0544328,0.0827906,0.927694,0.42135,0.34682,0.266745,0.48278,0.752905,0.171595,0.336153,0.319744,0.710499,0.626086,0.230146,0.0733418,0.404746,0.973536,0.166697,0.0153096,0.625412,0.490338,0.96522,0.00853789,0.633825,0.890418,0.594836,0.117219,0.445003,0.825834,0.110444,0.67794,0.252753,0.723332,0.204793,0.794278,0.214665,0.692439,0.139851,0.495194,0.0806177,0.728278,0.212927,0.97999,0.0564132,0.438281,0.85158,0.0395417,0.959928,0.0990785,0.443626,0.0627452,0.449294,0.46144,0.574135,0.85714,0.645779,0.536807,0.349051,0.710172,0.206389,0.595168,0.0714085,0.332007,0.139227,0.52851,0.507687,0.138543,0.165656,0.779201,0.764424,0.565103,0.184956,0.411711,0.626133,0.571729,0.111936,0.303802,0.0838226,0.433495,0.0623874,0.890774,0.6197,0.105479,0.93678,0.964402,0.895333,0.245266,0.855143,0.713145,0.915129,0.782945,0.628923,0.79508,0.879533,0.583699,0.952592,0.414131,0.340362,0.0772947,0.417315,0.238645,0.2489,0.674199,0.84417,0.709999,0.095015,0.336813,0.300248,0.29154,0.180185,0.298602,0.874296,0.469693,0.300065,0.488096,0.438348,0.314864,0.778089,0.450506,0.455376,0.490196,0.702944,0.47134,0.498849,0.981636,0.558389,0.820246,0.696412,0.747819,0.253768,0.640115,0.899413,0.675672,0.178789,0.647508,0.0370201,0.916339,0.257946,0.417929,0.738416,0.24159,0.563986,0.207388,0.916458,0.702439,0.588774,0.228997,0.752686,0.529336,0.578269,0.302873,0.244193,0.198496,0.811842,0.392565,0.975981,0.477592,0.315589,0.796237,0.219204,0.694989,0.895549,0.658852,0.827784,0.436982,0.464468,0.884818,0.900407,0.267192,0.470408,0.697816,0.771693,0.552323,0.484551,0.514962,0.35904,0.25701,0.760429,0.618982,0.997858,0.740072,0.938639,0.42118,0.0607858,0.341313,0.217294,0.945206,0.725015,0.635484,0.517706,0.716528,0.131899,0.550326,0.437181,0.846503,0.290841,0.543491,0.568705,0.130328,0.556383,0.285122,0.990563,0.599933,0.377958,0.547621,0.883728,0.897731,0.973402,0.0784753,0.829971,0.692453,0.73946,0.811051,0.632003,0.54404,0.26695,0.243657,0.945941,0.0390121,0.0288267,0.193836,0.269463,0.582292,0.56345,0.607396,0.976264,0.720919,0.816018,0.293492,0.0975381,0.422239,0.740041,0.931705,0.156919,0.324632,0.963695,0.148618,0.84073,0.69203,0.478669,0.531547,0.534699,0.0330973,0.551984,0.373507,0.107984,0.527679,0.107556,0.665949,0.952445,0.105074,0.398413,0.90742,0.596123,0.545104,0.904689,0.78507,0.924968,0.871331,0.535231,0.602974,0.355863,0.640429,0.857331,0.40903,0.113939,0.238546,0.341312,0.199984,0.188795,0.344264,0.836913,0.83407,0.402872,0.265744,0.19962,0.747928,0.875268,0.56004,0.789547,0.428121,0.148884,0.502461,0.279667,0.747754,0.598991,0.362472,0.852767,0.162275,0.698004,0.173886,0.73615,0.369166,0.640793,0.504778,0.141364,0.744508,0.0710809,0.927332,0.743922,0.65161,0.581643,0.48253,0.72722,0.0559757,0.467542,0.0843714,0.403696,0.880867,0.413884,0.384521,0.57469,0.561621,0.600332,0.465464,0.237311,0.357966,0.922346,0.768907,0.231969,0.71582,0.488289,0.486045,0.447702,0.983161,0.693611,0.421708,0.579287,0.737381,0.0927218,0.732399,0.0385177,0.548734,0.565516,0.0417633,0.572006,0.376338,0.786789,0.646036,0.269324,0.566154,0.554277,0.661575,0.715258,0.311601,0.89791,0.768144,0.486278,0.0440612,0.153584,0.440711,0.70829,0.903931,0.78886,0.326707,0.480705,0.491952,0.675916,0.313932,0.456111,0.181044,0.623948,0.933748,0.280504,0.360412,0.669788,0.247078,0.689415,0.0777055,0.466194,0.601628,0.234723,0.230485,0.146448,0.363593,0.239771,0.280135,0.0614207,0.831501,0.000740409,0.990096,0.774845,0.443999,0.110988,0.790016,0.000348568,0.968741,0.372756,0.95864,0.90716,0.435762,0.911218,0.238953,0.460015,0.219695,0.449785,0.416858,0.732949,0.586689,0.290335,0.434399,0.690325,0.378622,0.200478,0.823577,0.996994,0.837235,0.0767991,0.0892004,0.168861,0.411213,0.437353,0.13201,0.554232,0.826143,0.882188,0.153403,0.155347,0.0172926,0.582443,0.983692,0.422856,0.682446,0.628098,0.466532,0.401491,0.329774,0.641142,0.0791802,0.835632,0.668352,0.736035,0.0224058,0.242837,0.987262,0.502952,0.128779,0.890388,0.948814,0.0673959,0.576551,0.145976,0.606489,0.1397,0.337648,0.327506,0.605535,0.30875,0.0156062,0.16991,0.309128,0.629824,0.608316,0.790104,0.257058,0.134062,0.983503,0.0400596,0.356664,0.763762,0.93999,0.724733,0.233451,0.275698,0.4276,0.0884129,0.348235,0.959994,0.589994,0.64622,0.101663,0.206457,0.135778,0.823881,0.689456,0.381918,0.775891,0.234682,0.304884,0.0867166,0.690093,0.643715,0.254041,0.807045,0.451054,0.120489,0.0770385,0.668816,0.295798,0.684961,0.3634,0.425732,0.191862,0.0123241,0.726971,0.328297,0.313305,0.607458,0.234604,0.267289,0.7972,0.347947,0.0125591,0.317543,0.0464799,0.224135,0.987269,0.921861,0.513384,0.755903,0.869356,0.280679,0.825163,0.126757,0.785572,0.101336,0.240479,0.165056,0.405795,0.852623,0.0801685,0.78923,0.0983268,0.10015,0.580476,0.170646,0.948439,0.36275,0.604037,0.743384,0.393391,0.316621,0.418667,0.485923,0.481293,0.736672,0.825492,0.436171,0.175619,0.246448,0.888953,0.62098,0.360611,0.381299,0.640174,0.434206,0.60973,0.113451,0.838176,0.72881,0.574577,0.543416,0.787462,0.137553,0.551709,0.676848,0.802451,0.249479,0.73821,0.597893,0.724302,0.794014,0.559843,0.773116,0.934201,0.738329,0.0279149,0.0462713,0.224765,0.88718,0.96792,0.200326,0.722737,0.915807,0.09604,0.731664,0.6177,0.244571,0.235187,0.741219,0.943771,0.131682,0.458338,0.607217,0.0421621,0.180741,0.685228,0.66094,0.577137,0.232814,0.0732986,0.0961495,0.657392,0.405354,0.724032,0.54429,0.595921,0.557086,0.691039,0.678253,0.646244,0.551785,0.935443,0.577897,0.459699,0.936982,0.0129318,0.591027,0.530233,0.853092,0.48175,0.289483,0.502342,0.0919752,0.473959,0.715387,0.89287,0.561646,0.555403,0.856148,0.48321,0.537682,0.69244,0.864236,0.213517,0.111238,0.638206,0.0448654,0.136836,0.0481929,0.131917,0.118673,0.545781,0.598422,0.499601,0.559917,0.744646,0.800701,0.334055,0.281463,0.972477,0.353367,0.95626,0.929174,0.491681,0.347089,0.263096,0.468034,0.284252,0.86946,0.439442,0.692494,0.440882,0.186034,0.882686,0.717935,0.482438,0.496994,0.511126,0.971433,0.044834,0.134863,0.58191,0.643939,0.0696022,0.475984,0.467629,0.966944,0.344744,0.0208479,0.681892,0.825511,0.0839901,0.368199,0.847136,0.787788,0.786195,0.15468,0.618995,0.0405975,0.0716216,0.578088,0.254464,0.907903,0.145002,0.877088,0.511308,0.630933,0.183488,0.781157,0.0308059,0.806642,0.698991,0.328917,0.400673,0.871803,0.834332,0.60858,0.553413,0.261067,0.241606,0.661477,0.986555,0.147027,0.879064,0.416506,0.0894291,0.960039,0.66989,0.0387632,0.617081,0.727973,0.605728,0.730405,0.592027,0.135232,0.195792,0.286222,0.273677,0.038989,0.319686,0.376134,0.247447,0.693841,0.569406,0.794802,0.833246,0.626346,0.791608,0.553997,0.986636,0.77449,0.174792,0.072459,0.400642,0.441545,0.433588,0.434607,0.75481,0.0825239,0.110417,0.947106,0.893863,0.412559,0.404418,0.0662366,0.966561,0.70032,0.245994,0.227655,0.117561,0.932038,0.0198249,0.636545,0.978919,0.747028,0.0524195,0.178519,0.800408,0.22314,0.47515,0.177943,0.232633,0.939897,0.474211,0.195605,0.867628,0.469766,0.285182,0.0101982,0.834229,0.291481,0.956106,0.425941,0.309263,0.653457,0.814115,0.875403,0.739793,0.626056,0.861256,0.239747,0.0407182,0.623814,0.764487,0.107975,0.811726,0.51511,0.930406,0.732956,0.796905,0.31969,0.542745,0.754482,0.202042,0.598826,0.405862,0.5284,0.988907,0.40098,0.432403,0.475135,|0.442071,0.478685,0.0193408,0.606208,0.737008,0.613523,0.0378115,0.163543,0.0891697,0.932126,0.190775,0.362414,0.63509,0.479722,0.0803112,0.738587,0.183145,0.51898,0.200444,0.827562,0.15512,0.526283,0.817294,0.732572,0.888113,0.94423,0.32693,0.752065,0.952818,0.388333,0.209516,0.569569,0.520006,0.509849,0.644765,0.738546,0.737632,0.526852,0.323533,0.184322,0.719664,0.4315,0.625227,0.0445628,0.595399,0.601038,0.490187,0.383776,0.132253,0.635984,0.203916,0.226613,0.179963,0.994805,0.663642,0.9248,0.514288,0.27795,0.281748,0.099474,0.201578,0.616647,0.772443,0.336947,0.275402,0.535681,0.593815,0.865957,0.85085,0.446548,0.00222141,0.810402,0.638022,0.177939,0.925628,0.515326,0.367935,0.726969,0.668824,0.886227,0.896737,0.702655,0.211798,0.63875,0.565866,0.838577,0.386978,0.3685,0.452381,0.877439,0.0292027,0.214515,0.0695607,0.0756966,0.438351,0.415314,0.739253,0.105261,0.924256,0.473717,0.816723,0.245118,0.284175,0.456626,0.272949,0.383846,0.507258,0.927608,0.920388,0.519723,0.904643,0.101734,0.836191,0.425126,0.351524,0.71276,0.428238,0.954604,0.965274,0.944329,0.490588,0.0619118,0.64746,0.918148,0.969399,0.691906,0.857302,0.781926,0.864019,0.354123,0.761295,0.728417,0.473159,0.459764,0.113514,0.602136,0.739741,0.379364,0.0964189,0.825449,0.0330301,0.324053,0.212802,0.917895,0.395821,0.990241,0.366572,0.673021,0.939877,0.583289,0.0716704,0.170224,0.921528,0.579206,0.956863,0.165018,0.898864,0.433373,0.126369,0.412587,0.177213,0.29744,0.107455,0.607056,0.800777,0.983359,0.524298,0.190262,0.726658,0.995565,0.743472,0.268664,0.288718,0.758239,0.913443,0.376662,0.739846,0.225443,0.415282,0.100582,0.469437,0.470709,0.12113,0.280306,0.751084,0.515125,0.148584,0.6105,0.87838,0.748495,0.472917,0.935932,0.512111,0.611643,0.136512,0.987284,0.785162,0.905634,0.14903,0.720126,0.815158,0.112391,0.659061,0.741398,0.110089,0.646288,0.0243471,0.62759,0.389602,0.639534,0.354649,0.326732,0.698324,0.348464,0.576834,0.517533,0.732693,0.830477,0.310834,0.0336534,0.896418,0.0055663,0.353313,0.866717,0.711193,0.146784,0.398724,0.995245,0.668857,0.572279,0.894249,0.0312833,0.361473,0.651958,0.798817,0.496131,0.838419,0.230306,0.212953,0.223569,0.981408,0.236048,0.303988,0.415232,0.841041,0.726924,0.750993,0.98594,0.0727924,0.122719,0.149363,0.378388,0.844746,0.998737,0.835279,0.0309584,0.97366,0.389827,0.23757,0.651626,0.967403,0.734394,0.448837,0.393751,0.508358,0.527339,0.134993,0.888931,0.971178,0.95977,0.597905,0.00428289,0.31769,0.991274,0.779544,0.967763,0.410227,0.675368,0.81481,0.539365,0.815571,0.364763,0.810154,0.823449,0.915519,0.525512,0.0550858,0.19941,0.530611,0.829754,0.992401,0.309278,0.0604988,0.128442,0.306096,0.289748,0.149935,0.404251,0.897456,0.302865,0.647368,0.603194,0.0790379,0.655702,0.254121,0.825732,0.714969,0.589031,0.407269,0.267412,0.456447,0.855395,0.0286741,0.466186,0.465745,0.797962,0.0828996,0.252786,0.449336,0.50364,0.139953,0.917264,0.585142,0.163444,0.169741,0.254034,0.868646,0.279663,0.834579,0.314649,0.877197,0.256819,0.835935,0.136948,0.326645,0.74617,0.210616,0.600438,0.579256,0.787934,0.772202,0.758262,0.594609,0.719646,0.736829,0.409568,0.628091,0.63131,0.489319,0.278602,0.391525,0.725668,0.782248,0.559679,0.271559,0.558311,0.387181,0.667739,0.897012,0.796807,0.557706,0.0930466,0.251164,0.440297,0.825839,0.83607,0.0716059,0.930923,0.894065,0.555696,0.675814,0.201587,0.48427,0.629695,0.718139,0.727997,0.292866,0.555785,0.105527,0.717421,0.655342,0.36111,0.560088,0.975982,0.741876,0.945368,0.72364,0.218123,0.240894,0.377109,0.626837,0.970543,0.565945,0.641627,0.905349,0.813016,0.356619,0.0675259,0.239561,0.0255511,0.3681,0.798183,0.661709,0.213475,0.281534,0.21266,0.169689,0.654432,0.0764527,0.456676,0.765858,0.433763,0.521886,0.506564,0.827039,0.693399,0.202456,0.698717,0.295102,0.135538,0.224338,0.147595,0.632127,0.359545,0.113266,0.703861,0.353399,0.269979,0.0382875,0.788096,0.539821,0.390373,0.109755,0.220065,0.961924,0.559257,0.387059,0.598693,0.19292,0.127029,0.999018,0.604483,0.0762876,0.941393,0.86143,0.399339,0.344821,0.701566,0.98536,0.862812,0.710072,0.173519,0.757439,0.0790952,0.381278,0.0510961,0.516118,0.0179144,0.450003,0.506256,0.0859405,0.903603,0.0106801,0.682338,0.863671,0.758412,0.974246,0.569489,0.654024,0.814057,0.251657,0.668784,0.291986,0.600059,0.562215,0.19321,0.788267,0.772077,0.438591,0.322729,0.427724,0.217471,0.770374,0.631253,0.063861,0.809383,0.210364,0.0674543,0.627722,0.943196,0.470196,0.287406,0.511485,0.740625,0.223847,0.783026,0.330086,0.510027,0.0402339,0.154157,0.223399,0.083469,0.514748,0.549495,0.191178,0.709175,0.999354,0.942396,0.479656,0.0240184,0.377069,0.327528,0.630033,0.352082,0.795319,0.623071,0.985569,0.720271,0.102401,0.249352,0.0422439,0.38741,0.294541,0.463859,0.231566,0.146137,0.930064,0.960865,0.827042,0.776152,0.788564,0.848556,0.536583,0.793673,0.0945868,0.232593,0.0458168,0.393174,0.937264,0.172634,0.119413,0.00570673,0.131811,0.559237,0.407481,0.333631,0.233178,0.305728,0.614239,0.107865,0.184236,0.926643,0.288776,0.435962,0.756012,0.551763,0.891895,0.668877,0.0601349,0.660464,0.343467,0.842099,0.349523,0.145492,0.9311,0.257507,0.873863,0.314159,0.65121,0.629476,0.138089,0.600184,0.0715978,0.332475,0.144167,0.977399,0.918497,0.980966,0.127694,0.383425,0.0737463,0.828411,0.0789593,0.308928,0.78024,0.550789,0.811646,0.436731,0.111135,0.381783,0.738677,0.229891,0.32441,0.406579,0.647439,0.284448,0.573225,0.59229,0.737171,0.941269,0.190377,0.87122,0.606937,0.244944,0.558978,0.59463,0.246164,0.716558,0.540838,0.942832,0.0144889,0.661527,0.974511,0.152837,0.479874,0.511986,0.0536178,0.0347424,0.0104207,0.285773,0.754311,0.0946991,0.123942,0.304376,0.576815,0.109862,0.403127,0.0414499,0.45691,0.540449,0.961399,0.639215,0.56393,0.179111,0.647568,0.065406,0.387618,0.20231,0.432358,0.710577,0.57913,0.367149,0.988829,0.776848,0.286818,0.259799,0.38033,0.378893,0.335723,0.316451,0.0694183,0.488041,0.498591,0.995483,0.307871,0.999832,0.0187219,0.855872,0.642582,0.340067,0.883346,0.319307,0.151555,0.547572,0.268959,0.205791,0.132995,0.446071,0.0667686,0.0608369,0.560592,0.513138,0.438721,0.684198,0.690994,0.220154,0.744318,0.0214882,0.934439,0.471793,0.062216,0.441104,0.346468,0.944496,0.742563,0.986091,0.48691,0.250159,0.830608,0.654649,0.302875,0.154841,0.460441,0.382218,0.696742,0.206339,0.0520064,0.651851,0.698772,0.0808009,0.969561,0.751113,0.641196,0.0595731,0.140385,0.148233,0.0638485,0.123172,0.64266,0.369963,0.422979,0.457057,0.326334,0.643521,0.190431,0.488772,0.0946388,0.256779,0.639997,0.995332,0.388286,0.255681,0.167518,0.725708,0.133909,0.122068,0.0944462,0.258695,0.090718,0.560683,0.532096,0.0832319,0.885069,0.451831,0.877662,0.598288,0.451491,0.0753602,0.475615,0.0855851,0.0686036,0.697173,0.959144,0.632592,0.141756,0.160085,0.330301,0.673077,0.82693,0.84144,0.695888,0.338522,0.214441,0.174535,0.546955,0.225434,0.815059,0.110968,0.218755,0.216394,0.142154,0.779277,0.375673,0.772783,0.930912,0.941549,0.948396,0.209438,0.683057,0.369212,0.961222,0.177693,0.490412,0.431733,0.0770373,0.263296,0.924078,0.952656,0.874516,0.22746,0.612599,0.637368,0.970014,0.933317,0.147531,0.54119,0.357184,0.601225,0.871643,0.660306,0.36371,0.492019,0.137117,0.781715,0.66771,0.430496,0.474137,0.299765,0.203987,0.237516,0.789546,0.254075,0.00859863,0.588686,0.292749,0.0918179,0.42428,0.51872,0.933945,0.143118,0.609676,0.578231,0.518065,0.759548,0.416426,0.461255,0.820765,0.653469,0.872213,0.616645,0.272063,0.87819,0.245571,0.569543,0.957588,0.347759,0.216341,0.704949,0.750551,0.0825629,0.263862,0.605981,0.884568,0.940516,0.852842,0.377156,0.339757,0.588598,0.311736,0.554445,0.67942,0.494122,0.0599445,0.231261,0.4295,0.0356173,0.0971635,0.595788,0.471054,0.16765,0.70146,0.98879,0.953239,0.884167,0.726818,0.52556,0.972229,0.763313,0.916645,0.817155,0.383637,0.369247,0.879646,0.24781,0.0302129,0.145322,0.258455,0.0946586,0.827501,0.229191,0.275835,0.437342,0.203089,0.186315,0.0760587,0.650742,0.544692,0.106877,0.0724199,0.113747,0.152505,0.181586,0.641276,0.152494,0.08112,0.737432,0.904675,0.734708,0.247405,0.799317,0.393008,0.784085,0.730563,0.690786,0.607947,0.971758,0.844017,0.829323,0.774523,0.851461,0.606502,0.302867,0.33793,0.704007,0.964729,0.75871,0.390408,0.555146,0.591938,0.881566,0.741911,0.968272,0.911836,0.513205,0.188356,0.832512,0.00514162,0.815192,0.494784,0.21697,0.121261,0.617152,0.332778,0.218576,0.473775,0.231822,0.43353,0.403714,0.00616872,0.989967,0.652515,0.558811,0.701118,0.397759,0.162523,0.388953,0.0454566,0.324617,0.852104,0.873989,0.601775,0.19894,0.661303,0.356066,0.797615,0.688877,0.0874889,0.657511,0.461163,0.00911528,0.337999,0.142007,0.948395,0.317205,0.0393877,0.186919,0.846789,0.880851,0.401579,0.966695,0.666338,0.873408,0.685522,0.0111924,0.50262,0.936498,0.925148,0.139007,0.832697,0.44047,0.14785,0.777761,0.373821,0.567407,0.478729,0.757703,0.439038,0.412529,0.499712,0.335097,0.748425,0.17129,0.523202,0.39489,0.865862,0.678266,0.597502,0.273221,0.0387371,0.338733,0.702347,0.40394,0.299645,0.301115,0.106648,0.545907,0.573842,0.548734,0.128978,0.129049,|0.377962,0.594167,0.538841,0.879885,0.623635,0.554932,0.83173,0.863678,0.756303,0.239057,0.0259716,0.374856,0.968943,0.824606,0.0478179,0.574238,0.567263,0.105404,0.820402,0.938717,0.0440269,0.814267,0.462414,0.5752,0.333191,0.443551,0.628665,0.522415,0.829139,0.124688,0.879101,0.247577,0.226825,0.277754,0.291064,0.814525,0.870528,0.787513,0.479218,0.776555,0.00272661,0.929177,0.117789,0.234409,0.832282,0.826057,0.0140272,0.12133,0.411293,0.25464,0.395031,0.774807,0.428734,0.96818,0.53761,0.052095,0.207755,0.313581,0.956212,0.0273304,0.193803,0.331919,0.141866,0.687508,0.694757,0.330118,0.621316,0.436764,0.974689,0.40628,0.741358,0.0724689,0.206116,0.401467,0.553787,0.324913,0.317002,0.888789,0.408994,0.503003,0.115576,0.493683,0.282271,0.128741,0.858484,0.761864,0.141703,0.893622,0.151129,0.211941,0.914448,0.0821773,0.641135,0.81948,0.697824,0.440047,0.327065,0.363886,0.720886,0.792717,0.658587,0.41244,0.505943,0.290077,0.33977,0.303237,0.611574,0.0551876,0.362065,0.0119859,0.135094,0.502299,0.651783,0.0843707,0.0813501,0.856528,0.892944,0.844574,0.741823,0.50636,0.596969,0.934946,0.376294,0.251837,0.538417,0.742196,0.897265,0.908367,0.815615,0.723971,0.00421333,0.311979,0.685695,0.425287,0.972492,0.4976,0.711641,0.230396,0.47547,0.0689337,0.863816,0.531463,0.143277,0.195141,0.736616,0.944493,0.1431,0.368502,0.176473,0.735145,0.131539,0.707779,0.665403,0.919314,0.709491,0.587997,0.266195,0.384129,0.574943,0.0558395,0.055214,0.592863,0.561048,0.801544,0.515242,0.0912703,0.105791,0.726474,0.704729,0.484086,0.786164,0.67724,0.68942,0.46135,0.300237,0.120644,0.0976351,0.583969,0.645133,0.537222,0.191247,0.492435,0.490222,0.659965,0.100072,0.0929067,0.537438,0.624581,0.53809,0.298182,0.756763,0.694332,0.340354,0.198264,0.943306,0.794397,0.444912,0.771986,0.83801,0.711966,0.91929,0.303203,0.646166,0.605751,0.4086,0.730089,0.579338,0.812515,0.427377,0.0401928,0.772834,0.937011,0.215163,0.500483,0.253311,0.65906,0.284378,0.46757,0.69304,0.104003,0.684586,0.838839,0.662804,0.0200978,0.99463,0.705906,0.177865,0.102531,0.0359588,0.381749,0.324661,0.454112,0.930472,0.905903,0.588322,0.956246,0.632289,0.74489,0.47602,0.315952,0.773389,0.997441,0.36437,0.938616,0.655466,0.032693,0.432585,0.110897,0.205884,0.20544,0.656256,0.369883,0.844881,0.497198,0.258417,0.844912,0.977112,0.175577,0.736422,0.976198,0.159785,0.352141,0.548366,0.105377,0.909521,0.324537,0.440983,0.934472,0.433322,0.909808,0.404857,0.424707,0.216778,0.501818,0.0673124,0.649041,0.890733,0.335657,0.336437,0.991298,0.973548,0.00479656,0.609289,0.0155935,0.61735,0.615009,0.332679,0.461613,0.634262,0.657141,0.751232,0.505819,0.417235,0.331243,0.0511094,0.460786,0.439648,0.970138,0.715227,0.0694377,0.623079,0.854347,0.439539,0.206552,0.000202119,0.827228,0.396964,0.416347,0.447623,0.719333,0.408724,0.347908,0.722977,0.272742,0.816845,0.787323,0.793715,0.152292,0.547271,0.463001,0.895562,0.242604,0.427046,0.898676,0.342044,0.776137,0.840768,0.210607,0.455905,0.0972168,0.209615,0.595421,0.815098,0.384949,0.0424652,0.02333,0.799976,0.613823,0.166146,0.149289,0.0370563,0.722186,0.877279,0.589614,0.62988,0.821883,0.632363,0.071779,0.828326,0.0614768,0.014192,0.0521665,0.0623809,0.86237,0.99577,0.989193,0.0941607,0.993924,0.551261,0.8766,0.476548,0.0932806,0.624441,0.038303,0.0811102,0.232719,0.397791,0.344214,0.976027,0.845837,0.149541,0.828055,0.0417544,0.181666,0.569746,0.195458,0.613197,0.853429,0.902955,0.116146,0.666742,0.954111,0.567769,0.377184,0.612936,0.388523,0.610078,0.594033,0.234898,0.129158,0.0958462,0.139743,0.241,0.253224,0.950464,0.573466,0.25381,0.41442,0.41167,0.807887,0.463494,0.489979,0.453453,0.627672,0.318958,0.133729,0.755327,0.651519,0.11265,0.92352,0.793536,0.697478,0.0823817,0.244986,0.222326,0.811113,0.551149,0.233811,0.213976,0.771408,0.429569,0.558618,0.0011887,0.321535,0.0967824,0.171292,0.938059,0.712058,0.00380349,0.68332,0.20338,0.839626,0.510673,0.0866342,0.213788,0.0689774,0.772082,0.431066,0.357149,0.16597,0.681179,0.417374,0.801628,0.250378,0.295469,0.688429,0.0102804,0.851148,0.482533,0.741844,0.0165524,0.241261,0.179629,0.308396,0.0248473,0.903314,0.719907,0.449853,0.300796,0.21032,0.58147,0.334264,0.146927,0.232047,0.609711,0.934011,0.479077,0.524307,0.290959,0.227228,0.908696,0.169033,0.535739,0.449985,0.0421715,0.701699,0.88825,0.861209,0.0584939,0.743152,0.995039,0.0683762,0.300052,0.0692606,0.269754,0.0295436,0.0897641,0.371398,0.62472,0.592631,0.246815,0.378016,0.530545,0.744785,0.991932,0.0898243,0.23601,0.214495,0.050486,0.149445,0.902979,0.157113,0.699913,0.352188,0.715428,0.0212085,0.552144,0.396416,0.968057,0.684844,0.941814,0.733289,0.841811,0.133169,0.627262,0.807236,0.240529,0.256828,0.285542,0.658927,0.571068,0.593361,0.382572,0.166379,0.17727,0.588885,0.121781,0.757463,0.0808845,0.122358,0.148896,0.121634,0.71064,0.724401,0.918596,0.558181,0.743583,0.329806,0.766767,0.799099,0.233708,0.0496138,0.0805521,0.937867,0.480768,0.12739,0.210045,0.0317654,0.135688,0.328351,0.19531,0.185696,0.9521,0.487927,0.450149,0.0942879,0.441021,0.957581,0.915346,0.7377,0.0235303,0.309378,0.348935,0.946757,0.0474802,0.941316,0.670302,0.797603,0.192289,0.935629,0.167231,0.867664,0.977848,0.0764956,0.733363,0.0319608,0.103017,0.745103,0.699553,0.841059,0.628967,0.609931,0.640119,0.988554,0.534686,0.0660929,0.926844,0.721098,0.810197,0.482697,0.963137,0.0558713,0.441238,0.96868,0.545084,0.54361,0.161271,0.505135,0.162983,0.802593,0.74794,0.957072,0.831134,0.655049,0.759485,0.852453,0.822135,0.187964,0.337519,0.515942,0.516347,0.217451,0.742969,0.43618,0.160929,0.195921,0.971872,0.447443,0.0867969,0.519511,0.884013,0.659742,0.997972,0.54728,0.348787,0.390819,0.0316759,0.771833,0.936994,0.810587,0.0583512,0.526933,0.140514,0.0069229,0.0257025,0.478327,0.819398,0.997896,0.812157,0.625459,0.0460919,0.137309,0.873891,0.356376,0.287356,0.00318044,0.475329,0.812778,0.224737,0.889513,0.334457,0.203602,0.110408,0.851275,0.155171,0.96539,0.983313,0.336007,0.696655,0.454915,0.177298,0.123103,0.218583,0.951797,0.491974,0.332744,0.771681,0.351483,0.508906,0.511737,0.531736,0.474846,0.358783,0.750889,0.0994262,0.575136,0.859176,0.19288,0.935453,0.77023,0.0803022,0.96731,0.381615,0.838402,0.702776,0.13101,0.924416,0.999868,0.0855302,0.381203,0.728611,0.0966874,0.473425,0.935101,0.813917,0.86315,0.318379,0.901433,0.679745,0.916282,0.428968,0.486339,0.246377,0.962949,0.0387417,0.847024,0.927696,0.367973,0.895469,0.820908,0.879395,0.765547,0.70832,0.642645,0.511405,0.0248365,0.0151733,0.964203,0.762614,0.251075,0.0970763,0.84284,0.869493,0.0327096,0.551505,0.152159,0.692258,0.200601,0.643554,0.996042,0.452475,0.920022,0.995,0.494613,0.645956,0.071689,0.909742,0.332917,0.597201,0.86253,0.70667,0.874182,0.499662,0.255935,0.886042,0.763389,0.952362,0.959082,0.908464,0.573559,0.834165,0.285725,0.0410429,0.62462,0.383293,0.360029,0.459395,0.12914,0.059322,0.62503,0.488728,0.600764,0.878495,0.437986,0.184343,0.975942,0.0697497,0.900087,0.123839,0.875442,0.407233,0.767848,0.805252,0.0368277,0.982514,0.475536,0.0884197,0.775175,0.902889,0.832186,0.931422,0.489992,0.435009,0.0629032,0.862832,0.702455,0.204311,0.4186,0.416286,0.566127,0.0117808,0.918933,0.106188,0.998578,0.93603,0.13215,0.163401,0.634669,0.561388,0.594999,0.09637,0.639094,0.999751,0.496442,0.136062,0.757544,0.966011,0.525275,0.545758,0.435342,0.371894,0.412841,0.653157,0.460513,0.205608,0.237291,0.253893,0.814361,0.764839,0.629341,0.980881,0.237416,0.581393,0.491408,0.587942,0.614382,0.595393,0.819131,0.859888,0.743491,0.175223,0.0261956,0.918987,0.644743,0.125382,0.665814,0.211625,0.820245,0.319412,0.141647,0.991583,0.608505,0.0868375,0.596181,0.942984,0.635209,0.235378,0.411561,0.942495,0.339635,0.416445,0.670552,0.74005,0.672048,0.19877,0.438499,0.99473,0.688926,0.618525,0.354363,0.228558,0.889923,0.965156,0.527239,0.0392679,0.352156,0.39858,0.671024,0.880187,0.0686728,0.617659,0.423946,0.814095,0.0989263,0.566575,0.937193,0.845547,0.95126,0.431429,0.674294,0.828168,0.819485,0.743376,0.138199,0.483741,0.0801495,0.682496,0.973786,0.305721,0.811822,0.543649,0.140851,0.667619,0.0243036,0.680925,0.403459,0.831627,0.430612,0.315818,0.389117,0.307677,0.424392,0.267686,0.890266,0.616932,0.223678,0.0840228,0.533589,0.978216,0.971712,0.84731,0.881116,0.379703,0.23361,0.919222,0.552961,0.266102,0.35867,0.783908,0.576584,0.660941,0.755066,0.746748,0.376937,0.00715011,0.843741,0.398043,0.582359,0.738652,0.195439,0.778622,0.563401,0.903648,0.315587,0.515516,0.225284,0.20018,0.0517806,0.182424,0.929618,0.103364,0.162591,0.514858,0.498074,0.337909,0.295834,0.774767,0.800147,0.954013,0.449229,0.285625,0.0788975,0.973107,0.0369623,0.817546,0.130818,0.278033,0.351257,0.898642,0.715644,0.702651,0.293375,0.291737,0.377506,0.219597,0.267055,0.520077,0.157607,0.90379,0.746152,0.932744,0.777174,0.253177,0.0427719,0.0989131,0.830556,0.966423,0.070945,0.568446,0.196916,0.839189,0.103771,0.27004,0.965846,0.544759,0.456234,0.839906,0.753425,0.90135,0.106111,0.781397,0.175701,0.0794499,0.507505,0.511623,0.028684,0.765474,0.185578,0.285278,0.30525,|0.432782,0.0862457,0.723446,0.684375,0.342548,0.868191,0.88899,0.578254,0.548085,0.0233862,0.677669,0.124921,0.0778098,0.597355,0.836591,0.714104,0.577563,0.834587,0.216877,0.80199,0.456496,0.581091,0.698014,0.706317,0.629538,0.184239,0.575159,0.475196,0.402649,0.245998,0.345266,0.321089,0.282615,0.309326,0.753549,0.921237,0.753603,0.398728,0.59607,0.480371,0.581295,0.918306,0.645972,0.881365,0.712053,0.716269,0.387463,0.845839,0.95408,0.812614,0.0221835,0.188963,0.781914,0.525233,0.139415,0.831429,0.0741678,0.270001,0.376324,0.15729,0.756957,0.0845366,0.722776,0.100491,0.601899,0.0421571,0.66966,0.234458,0.275053,0.788454,0.559292,0.336339,0.0427441,0.890021,0.0879593,0.597706,0.0123572,0.757388,0.722093,0.505219,0.618781,0.106191,0.28887,0.936137,0.181019,0.586142,0.941584,0.39888,0.791591,0.417376,0.0323106,0.00565094,0.0796251,0.598015,0.815017,0.0146568,0.908609,0.700885,0.605261,0.21136,0.756263,0.457073,0.693403,0.954128,0.625494,0.0446011,0.603682,0.486237,0.0519732,0.209533,0.700087,0.885966,0.582386,0.973127,0.161216,0.287307,0.420263,0.492736,0.937137,0.611387,0.426185,0.992472,0.511428,0.258752,0.244547,0.745831,0.806623,0.670708,0.0484902,0.211202,0.733484,0.571297,0.364073,0.535896,0.88109,0.587251,0.842864,0.960958,0.446607,0.521159,0.705247,0.0733014,0.151267,0.249757,0.419413,0.646472,0.404862,0.817969,0.330257,0.991137,0.968192,0.852095,0.689465,0.79866,0.00896209,0.0132913,0.599737,0.681861,0.768893,0.842157,0.981039,0.50979,0.942534,0.707717,0.273385,0.812461,0.907884,0.204331,0.784189,0.503145,0.751462,0.446526,0.583648,0.667994,0.675851,0.821586,0.593826,0.697838,0.969009,0.435577,0.84781,0.160986,0.888198,0.357903,0.66936,0.0687041,0.708657,0.0785964,0.840039,0.0152507,0.37707,0.928092,0.465534,0.758288,0.67066,0.315224,0.197484,0.468255,0.984622,0.391028,0.156991,0.0439474,0.240867,0.228992,0.169725,0.959201,0.523727,0.850096,0.852443,0.776121,0.397082,0.778391,0.916222,0.685363,0.635114,0.936989,0.0755576,0.0184456,0.778853,0.258628,0.867534,0.545282,0.807514,0.553685,0.0431225,0.378363,0.244552,0.253379,0.356453,0.651807,0.0455282,0.079897,0.290984,0.244728,0.564852,0.355784,0.690915,0.80938,0.695755,0.516077,0.7471,0.499858,0.187535,0.814278,0.828507,0.609602,0.169825,0.699821,0.573915,0.212097,0.55048,0.922388,0.310399,0.906956,0.451259,0.320405,0.759038,0.267155,0.824784,0.273187,0.286824,0.210535,0.546067,0.885035,0.248646,0.767828,0.963742,0.622371,0.252373,0.743885,0.268548,0.76309,0.479122,0.322581,0.67312,0.893503,0.458038,0.0808098,0.579577,0.910226,0.439395,0.479827,0.241797,0.814504,0.0675179,0.325156,0.174638,0.99141,0.871963,0.168297,0.542473,0.606757,0.930349,0.139447,0.919211,0.514546,0.441163,0.733169,0.463567,0.232732,0.780806,0.562949,0.647061,0.813873,0.2427,0.139711,0.676783,0.433446,0.942231,0.496536,0.096722,0.2059,0.978791,0.783892,0.508595,0.990676,0.219627,0.685549,0.122429,0.572136,0.288979,0.172224,0.461854,0.166196,0.315445,0.475557,0.837328,0.0805729,0.598094,0.750472,0.159945,0.276504,0.458041,0.768084,0.348871,0.211934,0.621593,0.348052,0.146699,0.186,0.0313312,0.307792,0.113882,0.440762,0.873588,0.813579,0.0669814,0.207403,0.268008,0.844401,0.203659,0.642004,0.0949155,0.109988,0.211771,0.828552,0.758586,0.83891,0.240681,0.857175,0.0464056,0.483445,0.938361,0.770818,0.244161,0.24,0.794908,0.0947861,0.844561,0.620389,0.588335,0.419278,0.812752,0.966188,0.672082,0.631884,0.995645,0.138261,0.438407,0.136154,0.837368,0.452745,0.113569,0.763167,0.708433,0.369792,0.0297893,0.662959,0.539355,0.282403,0.527261,0.941403,0.248874,0.089713,0.922181,0.643761,0.122072,0.869735,0.693427,0.0969411,0.093156,0.811676,0.581817,0.460556,0.0708365,0.443074,0.403996,0.480641,0.295247,0.362767,0.509856,0.0635985,0.687063,0.443007,0.613064,0.375093,0.317782,0.630579,0.679611,0.696056,0.724522,0.160944,0.398799,0.700353,0.605229,0.988191,0.861896,0.538855,0.125378,0.793226,0.0126687,0.0489619,0.939896,0.888687,0.967938,0.413191,0.944438,0.784028,0.94327,0.415472,0.0481767,0.251906,0.850396,0.61492,0.020937,0.650678,0.951022,0.882579,0.388937,0.937657,0.123556,0.915079,0.884693,0.547619,0.170154,0.157415,0.946699,0.954406,0.920485,0.825723,0.333394,0.72022,0.834286,0.442177,0.813216,0.467359,0.915854,0.795069,0.610185,0.620044,0.797306,0.988017,0.547434,0.974931,0.453308,0.066187,0.70821,0.92628,0.41886,0.977846,0.366236,0.845081,0.0153766,0.365707,0.441941,0.912666,0.154589,0.380352,0.138249,0.597574,0.745599,0.34693,0.771876,0.877567,0.514882,0.70133,0.604652,0.45067,0.253829,0.220858,0.039197,0.893846,0.786793,0.613467,0.579081,0.0761991,0.955298,0.485629,0.535257,0.0607604,0.404218,0.945539,0.938745,0.0595614,0.216225,0.71407,0.427136,0.665764,0.776504,0.0304686,0.133712,0.517417,0.0777811,0.829232,0.239848,0.994371,0.63622,0.378052,0.594422,0.412842,0.650255,0.893038,0.810248,0.711979,0.0247815,0.853435,0.753162,0.364227,0.0234235,0.53509,0.58537,0.294612,0.771942,0.151484,0.005988,0.220249,0.616737,0.74237,0.210111,0.463568,0.850767,0.573107,0.272272,0.263359,0.890977,0.448546,0.481291,0.316211,0.317156,0.42,0.937853,0.370014,0.338266,0.119132,0.387691,0.168839,0.379544,0.892347,0.840654,0.233096,0.931184,0.521622,0.511971,0.504292,0.0611593,0.391347,0.22236,0.236593,0.437487,0.21673,0.968987,0.145683,0.376644,0.660504,0.578112,0.260983,0.813412,0.512022,0.448452,0.092306,0.374381,0.326569,0.077906,0.346778,0.942025,0.532984,0.570796,0.367387,0.28497,0.767676,0.491081,0.766735,0.395089,0.13838,0.437759,0.813634,0.498335,0.65218,0.264396,0.306633,0.699228,0.220412,0.165073,0.705102,0.757542,0.0547923,0.506904,0.589248,0.899331,0.666958,0.591332,0.379401,0.553307,0.281594,0.0968414,0.763716,0.619948,0.270847,0.884617,0.154188,0.662544,0.885457,0.385132,0.369355,0.544466,0.814887,0.179998,0.885477,0.856977,0.894995,0.451089,0.0952528,0.835847,0.28927,0.264871,0.285805,0.822514,0.0823098,0.219546,0.748011,0.222737,0.238318,0.522808,0.818616,0.335532,0.444336,0.671155,0.168928,0.345474,0.407691,0.864826,0.0740662,0.866784,0.155718,0.847634,0.652496,0.606478,0.762873,0.797794,0.484784,0.895769,0.864683,0.392882,0.657652,0.0630289,0.614575,0.074213,0.813149,0.721492,0.835492,0.559486,0.855083,0.676404,0.482807,0.484191,0.155814,0.168398,0.7726,0.61903,0.559902,0.316803,0.375876,0.0652447,0.968782,0.275912,0.533193,0.84803,0.788512,0.675369,0.85471,0.94296,0.00777978,0.920651,0.880863,0.778498,0.542851,0.910212,0.854323,0.411468,0.41346,0.803992,0.586951,0.471657,0.110115,0.505392,0.870089,0.00771165,0.365695,0.852318,0.0382337,0.56486,0.784115,0.345038,0.124393,0.406171,0.0728068,0.666217,0.744051,0.409906,0.101341,0.132767,0.501275,0.362785,0.0878857,0.465665,0.916537,0.143534,0.352864,0.150841,0.12683,0.785479,0.16303,0.535657,0.0697583,0.156396,0.892997,0.599366,0.333459,0.594157,0.779838,0.24421,0.503527,0.0832041,0.594599,0.211388,0.319014,0.000655711,0.260116,0.0765575,0.934931,0.326711,0.220855,0.918752,0.0797969,0.0115404,0.369378,0.44214,0.0140321,0.979236,0.179114,0.0889012,0.104515,0.0550676,0.974482,0.524344,0.442235,0.505391,0.624951,0.91575,0.800879,0.369371,0.0432932,0.228009,0.883878,0.641974,0.674981,0.313672,0.361076,0.213048,0.546773,0.378826,0.857846,0.667278,0.32553,0.0129724,0.978622,0.774438,0.532847,0.0541919,0.454076,0.0400115,0.730646,0.154613,0.445071,0.630504,0.357333,0.81058,0.605733,0.275108,0.625204,0.620599,0.106326,0.971538,0.61028,0.989117,0.734449,0.087198,0.0403441,0.492009,0.706205,0.263189,0.640026,0.6632,0.201196,0.819132,0.776319,0.456129,0.256882,0.445784,0.998451,0.201466,0.0455347,0.235601,0.789864,0.0410891,0.337458,0.373269,0.934465,0.889347,0.498712,0.332547,0.354692,0.962525,0.271595,0.932986,0.0730205,0.496684,0.5673,0.610463,0.619313,0.651955,0.228915,0.408836,0.318926,0.569265,0.7298,0.799846,0.229439,0.616167,0.0113819,0.5204,0.581031,0.0643171,0.393761,0.95371,0.452413,0.791366,0.728505,0.122183,0.674405,0.419295,0.442154,0.149193,0.799628,0.960768,0.0891758,0.0646088,0.814558,0.0261596,0.805654,0.512245,0.55804,0.876412,0.133514,0.914855,0.338947,0.99226,0.75571,0.0764688,0.433646,0.403913,0.913001,0.834085,0.307501,0.497762,0.636612,0.66065,0.704141,0.0585377,0.890002,0.810475,0.688559,0.0656566,0.700873,0.855813,0.0144982,0.519153,0.933725,0.627832,0.996732,0.476957,0.090117,0.78161,0.225098,0.0941966,0.22993,0.76798,0.57998,0.480163,0.939108,0.329825,0.299212,0.872771,0.146784,0.274143,0.552315,0.983939,0.0395353,0.626604,0.59663,0.870327,0.431984,0.0974082,0.434571,0.518182,0.904635,0.547298,0.722874,0.602038,0.572882,0.336984,0.989243,0.731176,0.311898,0.26386,0.810309,0.426446,0.80168,0.346358,0.362258,0.657603,0.822699,0.450778,0.581668,0.0769473,0.612286,0.955642,0.122704,0.168961,0.461256,0.150434,0.378174,0.175388,0.0671065,0.110852,0.10577,0.583817,0.120372,0.748967,0.174459,0.158419,0.895937,0.976987,0.273776,0.352911,0.214963,0.729129,0.919415,0.0371132,0.336619,0.224691,0.0433187,0.998323,0.427287,0.0570396,0.778765,0.223539,0.327031,0.570103,0.128961,0.125468,0.12885,0.191715,0.81136,0.331122,0.905203,0.216233,0.902891,0.955907,0.678657,|0.923274,0.161016,0.523494,0.273293,0.314327,0.0210699,0.299483,0.748776,0.388152,0.0149284,0.383985,0.277743,0.553528,0.180591,0.356952,0.455249,0.0065906,0.495142,0.883965,0.650671,0.455473,0.449107,0.676584,0.0249832,0.336444,0.121581,0.85317,0.873169,0.705617,0.752877,0.571175,0.707401,0.728372,0.0251642,0.388873,0.991304,0.868372,0.514857,0.532636,0.304322,0.697049,0.0906351,0.844376,0.345986,0.0592522,0.63759,0.0214337,0.692696,0.308854,0.542479,0.519714,0.137037,0.160986,0.689011,0.890341,0.464488,0.845179,0.917655,0.064861,0.035885,0.224623,0.100362,0.352551,0.670467,0.851291,0.322839,0.00262296,0.641092,0.0470091,0.703864,0.768617,0.0816506,0.718085,0.480705,0.810726,0.832051,0.635687,0.384827,0.169578,0.298104,0.573637,0.63719,0.195247,0.925484,0.883347,0.726382,0.247612,0.638845,0.591706,0.331197,0.767419,0.759929,0.419735,0.796966,0.70771,0.484079,0.132611,0.517287,0.713124,0.986592,0.728651,0.50328,0.216194,0.691682,0.250024,0.00725085,0.254211,0.572883,0.760817,0.885144,0.993021,0.723754,0.479261,0.0111813,0.445577,0.985447,0.365264,0.845659,0.0571601,0.399476,0.755109,0.535284,0.527158,0.652399,0.943957,0.868757,0.17493,0.832361,0.892464,0.894409,0.505666,0.500636,0.226595,0.741408,0.27455,0.169915,0.0441441,0.269926,0.125046,0.222816,0.981599,0.797979,0.651769,0.260487,0.00381953,0.901062,0.437137,0.437112,0.276322,0.26508,0.743067,0.419792,0.480357,0.522617,0.0147483,0.471416,0.980683,0.019177,0.253595,0.777625,0.0978688,0.834191,0.400918,0.22165,0.416426,0.0167081,0.997244,0.863533,0.972255,0.321085,0.91604,0.0110288,0.161099,0.0096159,0.191964,0.430452,0.424782,0.505125,0.924124,0.458685,0.124049,0.765209,0.45757,0.199456,0.979053,0.0988232,0.980017,0.280201,0.286866,0.485697,0.270417,0.126439,0.651755,0.229166,0.572646,0.64336,0.400163,0.187838,0.313857,0.273618,0.435509,0.696912,0.18394,0.374656,0.800811,0.517758,0.257916,0.218038,0.00130892,0.823478,0.0513303,0.384321,0.983148,0.483686,0.32944,0.182757,0.0290449,0.645101,0.479009,0.0875058,0.958936,0.56366,0.576848,0.863139,0.935889,0.0596362,0.956081,0.0189606,0.36224,0.425036,0.429703,0.0453274,0.312468,0.117969,0.531643,0.935866,0.315888,0.564164,0.891176,0.610479,0.898671,0.365667,0.124257,0.650849,0.861816,0.870904,0.183296,0.104638,0.824331,0.446129,0.688926,0.969515,0.217621,0.271144,0.713527,0.747113,0.487489,0.777368,0.788983,0.582437,0.870187,0.204979,0.405085,0.461062,0.197896,0.588231,0.213816,0.46997,0.120333,0.180446,0.200861,0.862277,0.187478,0.809808,0.284723,0.398185,0.553154,0.147446,0.923707,0.618933,0.592344,0.529496,0.189551,0.294824,0.94197,0.672445,0.508253,0.265226,0.260344,0.934048,0.458047,0.280908,0.898499,0.0476182,0.554433,0.00537157,0.95501,0.544073,0.613154,0.946393,0.642418,0.344357,0.291648,0.832765,0.0596099,0.635352,0.44672,0.0601688,0.991861,0.864716,0.137658,0.274321,0.504047,0.527588,0.30987,0.477799,0.410795,0.257369,0.157697,0.902339,0.988222,0.0914924,0.0391724,0.764371,0.0939565,0.880547,0.277352,0.616621,0.753092,0.497759,0.709776,0.90744,0.430921,0.18493,0.458434,0.646906,0.0755814,0.464726,0.845049,0.0683181,0.243673,0.102806,0.733551,0.642643,0.106236,0.372755,0.994632,0.0343145,0.930425,0.998813,0.954668,0.839046,0.436099,0.162071,0.649605,0.348867,0.637494,0.351658,0.664003,0.784877,0.300818,0.00865006,0.277586,0.64867,0.623811,0.778319,0.457884,0.419631,0.371451,0.717112,0.783509,0.150064,0.780423,0.250195,0.830784,0.419791,0.0739638,0.0653435,0.302958,0.42754,0.415366,0.103433,0.750201,0.995716,0.900562,0.16891,0.12909,0.646122,0.326932,0.586174,0.375072,0.137571,0.447343,0.77574,0.331298,0.160789,0.0625167,0.98387,0.449041,0.792146,0.835008,0.195231,0.30147,0.455671,0.796216,0.341751,0.52269,0.645391,0.64854,0.134905,0.340089,0.134976,0.953395,0.182085,0.576005,0.92341,0.15464,0.9414,0.0337987,0.859891,0.902647,0.549212,0.850104,0.216314,0.113058,0.249633,0.377129,0.688328,0.67045,0.512506,0.55588,0.337288,0.638489,0.346863,0.948463,0.429935,0.061868,0.541142,0.511171,0.694098,0.114888,0.713885,0.66765,0.877152,0.0986136,0.921333,0.405371,0.570329,0.228507,0.868603,0.884467,0.226158,0.193842,0.812765,0.904405,0.604476,0.15271,0.694558,0.625978,0.924239,0.0886974,0.598722,0.339752,0.733713,0.546268,0.849905,0.56844,0.126266,0.191209,0.28974,0.0220613,0.550419,0.920901,0.537963,0.779663,0.050973,0.320084,0.661497,0.290656,0.116287,0.669817,0.564766,0.198719,0.241113,0.815522,0.139729,0.920456,0.373214,0.579241,0.624928,0.39172,0.34604,0.00304419,0.724557,0.170905,0.0908458,0.528921,0.334436,0.0203029,0.595794,0.821141,0.678852,0.363578,0.388198,0.625271,0.960453,0.174109,0.702672,0.519851,0.0426511,0.23203,0.908189,0.0328279,0.0317487,0.798603,0.15579,0.643538,0.487277,0.631647,0.604897,0.762564,0.815439,0.477745,0.497248,0.941718,0.191271,0.321526,0.798715,0.677636,0.892677,0.997189,0.317852,0.226041,0.278579,0.685936,0.134517,0.852516,0.798424,0.119323,0.0558744,0.963411,0.444587,0.519325,0.756627,0.756449,0.994606,0.434026,0.42201,0.0241333,0.555646,0.276564,0.319655,0.322996,0.182885,0.833223,0.213784,0.0963992,0.333824,0.416295,0.1149,0.503626,0.605962,0.830995,0.711378,0.726506,0.10419,0.445296,0.248018,0.512275,0.604344,0.0297188,0.392082,0.864403,0.128935,0.225493,0.036736,0.823352,0.64847,0.425555,0.553826,0.0114407,0.225267,0.332102,0.116966,0.0610018,0.443496,0.581944,0.572471,0.456156,0.616841,0.0749738,0.195121,0.853595,0.25764,0.670468,0.622943,0.355341,0.97926,0.771728,0.992983,0.344774,0.366557,0.0271945,0.229207,0.548381,0.87109,0.630358,0.144324,0.960928,0.572341,0.626361,0.534232,0.0374808,0.256076,0.772296,0.832191,0.668034,0.888818,0.357909,0.773349,0.531272,0.155692,0.375089,0.229442,0.0433669,0.0576116,0.769635,0.737806,0.858642,0.61732,0.540697,0.91031,0.792625,0.130766,0.567296,0.822963,0.0210795,0.238947,0.733118,0.477912,0.311226,0.735214,0.676679,0.556017,0.55906,0.835582,0.929955,0.272469,0.813452,0.157788,0.708198,0.711125,0.916317,0.342385,0.102433,0.355974,0.521592,0.345715,0.382295,0.920514,0.362228,0.222345,0.934908,0.841159,0.0971401,0.324071,0.732691,0.662971,0.394347,0.349108,0.710261,0.846458,0.732654,0.937079,0.738043,0.222202,0.885222,0.252074,0.443494,0.867789,0.0850157,0.521305,0.568987,0.128052,0.522217,0.126725,0.948615,0.19995,0.102333,0.249503,0.0631465,0.384687,0.6614,0.00641382,0.101913,0.700483,0.471948,0.531126,0.853109,0.0338887,0.687874,0.0795408,0.693357,0.178307,0.721857,0.122418,0.846835,0.287513,0.675528,0.0430959,0.834636,0.963525,0.483824,0.662464,0.210164,0.803123,0.898771,0.0541796,0.531822,0.32553,0.0834494,0.792342,0.982512,0.320672,0.229247,0.440839,0.917451,0.664552,0.620949,0.761973,0.0291808,0.26453,0.243887,0.481754,0.580781,0.404859,0.908973,0.831454,0.411967,0.0943636,0.767253,0.646754,0.0329761,0.85076,0.708981,0.344987,0.492812,0.720905,0.277744,0.512225,0.849092,0.108219,0.806673,0.186682,0.264469,0.287374,0.647761,0.720619,0.0860772,0.0508378,0.791889,0.0673581,0.447496,0.170477,0.892865,0.825886,0.8311,0.886151,0.43928,0.876025,0.315434,0.24447,0.334638,0.763168,0.58153,0.867511,0.260324,0.690117,0.0616101,0.710353,0.107061,0.860845,0.875062,0.610522,0.545093,0.735914,0.422161,0.714499,0.586604,0.274053,0.382992,0.290817,0.879108,0.530721,0.632565,0.543999,0.602392,0.446578,0.719708,0.727614,0.00567245,0.649325,0.985849,0.421393,0.525628,0.131869,0.0774385,0.459228,0.602305,0.996551,0.25613,0.90985,0.765463,0.473711,0.76311,0.897096,0.702857,0.346303,0.211749,0.652579,0.117647,0.78118,0.917883,0.706741,0.0681524,0.76066,0.439473,0.993189,0.579352,0.698837,0.947879,0.180433,0.12003,0.371774,0.721206,0.123336,0.685451,0.441757,0.821274,0.597639,0.27031,0.93041,0.752656,0.0524154,0.252511,0.872576,0.812236,0.715193,0.202531,0.977036,0.762356,0.595573,0.96592,0.45714,0.0275149,0.88431,0.0243956,0.179976,0.347245,0.407701,0.508785,0.676796,0.0822979,0.692198,0.92363,0.0697667,0.189906,0.302573,0.196648,0.197403,0.493582,0.268777,0.372393,0.968357,0.552847,0.231846,0.212859,0.088611,0.264878,0.697094,0.292829,0.0371541,0.530885,0.426934,0.00709665,0.36064,0.0542017,0.915232,0.268064,0.664481,0.77341,0.181726,0.538353,0.145352,0.374331,0.192101,0.143814,0.74796,0.13444,0.637365,0.908688,0.640416,0.379719,0.340742,0.814176,0.393194,0.0831258,0.36027,0.64486,0.997232,0.186564,0.871603,0.700647,0.32144,0.421045,0.81014,0.777285,0.716172,0.933689,0.892152,0.498283,0.916066,0.409602,0.604988,0.679294,0.0738379,0.100637,0.421143,0.255727,0.444361,0.797293,0.256123,0.977,0.36705,0.799224,0.105727,0.00647205,0.410409,0.210338,0.564475,0.296105,0.937305,0.495141,0.973316,0.744047,0.334114,0.422875,0.968829,0.191101,0.62227,0.53364,0.972765,0.947298,0.550762,0.444463,0.903534,0.697473,0.895923,0.0983211,0.710771,0.621497,0.18556,0.140857,0.487631,0.592314,0.528745,0.0242267,0.733764,0.0740329,0.00619644,0.729608,0.19592,0.0406393,0.0906124,0.559772,0.0403403,0.846258,0.571636,0.19083,0.195852,0.397892,0.198696,0.61365,0.889513,0.593204,0.0783783,0.792818,0.324745,0.195561,0.708542,0.185724,0.115348,0.359026,0.967108,0.693064,0.550062,0.982821,0.491733,0.95849,0.564162,|0.166745,0.983473,0.190366,0.152541,0.238782,0.790746,0.517619,0.593073,0.368307,0.727873,0.896322,0.659766,0.143346,0.876136,0.387147,0.0169057,0.590853,0.609652,0.112901,0.366108,0.122644,0.418127,0.0692299,0.773976,0.456885,0.141142,0.162715,0.743855,0.30649,0.0663659,0.957218,0.378092,0.752339,0.163596,0.662337,0.502155,0.366109,0.173683,0.917945,0.698713,0.778336,0.62051,0.638459,0.897551,0.784881,0.381102,0.745921,0.971442,0.44341,0.445333,0.653075,0.314456,0.889743,0.412207,0.896588,0.212434,0.968861,0.134216,0.428091,0.459175,0.137831,0.262007,0.821089,0.272225,0.0224088,0.282844,0.953916,0.112459,0.580605,0.985341,0.778081,0.866715,0.939443,0.430569,0.466021,0.618748,0.0992982,0.790864,0.0459259,0.953861,0.226891,0.0980387,0.198648,0.225298,0.328939,0.113049,0.00436687,0.311158,0.274278,0.696831,0.296971,0.02686,0.750022,0.414486,0.952854,0.827061,0.700821,0.0713868,0.426252,0.279401,0.919434,0.889669,0.356621,0.474119,0.479304,0.570311,0.417948,0.607721,0.562483,0.643282,0.278055,0.910479,0.104551,0.24741,0.609692,0.769125,0.977203,0.867997,0.375368,0.259341,0.473717,0.95002,0.310998,0.484682,0.121277,0.0021928,0.47211,0.100346,0.513919,0.970493,0.283807,0.520592,0.16554,0.333197,0.402298,0.655344,0.415588,0.945249,0.811066,0.781682,0.899046,0.364768,0.0945964,0.785143,0.264367,0.913659,0.691871,0.678686,0.444389,0.780807,0.521595,0.771172,0.723948,0.589476,0.899662,0.648334,0.485864,0.599026,0.801999,0.302994,0.609956,0.567995,0.546977,0.264813,0.089064,0.693458,0.382004,0.931858,0.714746,0.482981,0.580554,0.255483,0.808108,0.093006,0.349479,0.940151,0.076309,0.314697,0.158994,0.598283,0.225096,0.497404,0.613347,0.170856,0.413229,0.21183,0.388819,0.853955,0.69136,0.56319,0.180008,0.734827,0.462552,0.597648,0.0705576,0.635481,0.839378,0.268381,0.767117,0.443171,0.998744,0.962317,0.649576,0.0541803,0.896513,0.162469,0.0041796,0.174334,0.477361,0.506445,0.702136,0.419786,0.549868,0.622743,0.0853043,0.231194,0.437351,0.563084,0.994167,0.640995,0.65422,0.325219,0.96886,0.80931,0.514321,0.249021,0.170472,0.837587,0.615138,0.948737,0.248892,0.486614,0.947005,0.748255,0.109829,0.56056,0.0299074,0.345944,0.252182,0.252891,0.549111,0.181681,0.599733,0.90299,0.87717,0.261281,0.828303,0.388842,0.946283,0.793587,0.321203,0.923852,0.139843,0.192842,0.125912,0.123575,0.399817,0.00512832,0.948299,0.0229083,0.271881,0.492333,0.26433,0.271595,0.23887,0.549707,0.228932,0.885476,0.978323,0.747767,0.307888,0.971308,0.647437,0.115973,0.385244,0.0253839,0.529111,0.291846,0.465286,0.193986,0.994451,0.754699,0.883363,0.393191,0.0801787,0.348784,0.804693,0.885687,0.89319,0.236572,0.719144,0.857202,0.653524,0.971848,0.921048,0.987005,0.498764,0.463313,0.445109,0.444343,0.448218,0.579806,0.592027,0.991566,0.11652,0.642207,0.267244,0.960568,0.65498,0.33229,0.290452,0.862611,0.591434,0.209096,0.457905,0.0180933,0.288558,0.130734,0.786963,0.258813,0.972555,0.557874,0.672921,0.138502,0.0630991,0.850598,0.99383,0.748348,0.280423,0.716597,0.351819,0.940038,0.16992,0.329105,0.226888,0.254441,0.677273,0.837485,0.100373,0.718837,0.747384,0.144272,0.275066,0.577992,0.913202,0.760735,0.397016,0.877418,0.281434,0.719262,0.902853,0.0747267,0.826789,0.245637,0.631192,0.867393,0.284649,0.53786,0.978702,0.143787,0.608823,0.662633,0.0929804,0.0967981,0.0237809,0.76665,0.647784,0.809457,0.62913,0.523011,0.0777414,0.355565,0.795178,0.554177,0.416205,0.373927,0.241727,0.0143057,0.335381,0.796888,0.289176,0.230409,0.0719146,0.219142,0.551251,0.978253,0.812477,0.854237,0.714995,0.578621,0.652716,0.184294,0.630932,0.842079,0.983592,0.574093,0.268349,0.391632,0.860731,0.439772,0.210328,0.958514,0.412803,0.149679,0.739679,0.413263,0.337062,0.845026,0.75136,0.58502,0.428694,0.919326,0.289375,0.509619,0.686735,0.89576,0.779616,0.662114,0.558291,0.0113838,0.0519664,0.266018,0.707628,0.403354,0.054774,0.0802482,0.653644,0.964989,0.914301,0.410069,0.850732,0.134778,0.139726,0.955459,0.107731,0.782892,0.605544,0.352771,0.676472,0.701439,0.859505,0.435489,0.11439,0.0864723,0.0296579,0.146264,0.285797,0.917119,0.284944,0.196909,0.498194,0.339531,0.410835,0.234862,0.574617,0.87271,0.399641,0.374818,0.496918,0.0426351,0.544225,0.746283,0.939655,0.452767,0.912693,0.909409,0.108405,0.792078,0.512378,0.377715,0.452526,0.603823,0.410775,0.659471,0.419378,0.601501,0.0674378,0.848916,0.655329,0.618147,0.966677,0.233746,0.48801,0.706452,0.0681781,0.735901,0.650742,0.575006,0.700777,0.678523,0.989242,0.976554,0.357416,0.67969,0.644966,0.381867,0.776073,0.580944,0.359185,0.499354,0.402836,0.374743,0.641454,0.170455,0.510931,0.152875,0.717564,0.190822,0.932304,0.97748,0.901369,0.730779,0.934033,0.153836,0.774032,0.982643,0.63211,0.59573,0.845297,0.557766,0.689254,0.484999,0.578835,0.872877,0.758471,0.419605,0.00972074,0.521766,0.305059,0.293581,0.402107,0.961666,0.605947,0.0113006,0.342269,0.615013,0.926605,0.051238,0.410146,0.901376,0.18458,0.769886,0.943095,0.658698,0.867234,0.338383,0.947506,0.325574,0.94085,0.807074,0.0273223,0.620705,0.821056,0.616326,0.899159,0.728484,0.328394,0.275282,0.686155,0.737701,0.443385,0.2923,0.571843,0.515039,0.468005,0.0883905,0.348377,0.130107,0.843762,0.453026,0.624636,0.377681,0.0357378,0.937538,0.671928,0.418696,0.59579,0.238758,0.107837,0.661628,0.349394,0.211468,0.68331,0.899712,0.828523,0.926414,0.481987,0.721033,0.012907,0.393647,0.558567,0.405105,0.706099,0.788635,0.859924,0.484004,0.767649,0.603199,0.670631,0.97859,0.790569,0.973783,0.809251,0.889406,0.616969,0.0441352,0.199585,0.0491682,0.409092,0.492816,0.219863,0.42141,0.223749,0.158247,0.0598304,0.0587004,0.161045,0.882466,0.603382,0.821814,0.142303,0.113207,0.103805,0.676513,0.319646,0.200011,0.518898,0.523692,0.9141,0.801625,0.830809,0.696947,0.373697,0.939093,0.816987,0.361642,0.964193,0.0153808,0.592071,0.895378,0.591498,0.571002,0.829288,0.507042,0.356519,0.663982,0.891101,0.352188,0.975795,0.0776256,0.106266,0.939486,0.930778,0.308853,0.178603,0.997949,0.0705592,0.95656,0.477623,0.00939506,0.675333,0.0808291,0.646322,0.281481,0.997028,0.290353,0.868678,0.0218445,0.770342,0.0508428,0.420003,0.70747,0.337716,0.4041,0.759509,0.818249,0.778167,0.0408405,0.0911877,0.706684,0.152688,0.0325335,0.156608,0.362229,0.441648,0.968543,0.71905,0.269143,0.949563,0.0243299,0.577966,0.939943,0.135111,0.782519,0.406922,0.661451,0.307771,0.726185,0.97421,0.301802,0.609811,0.0946262,0.915691,0.194784,0.667448,0.895169,0.890751,0.0213108,0.942369,0.789832,0.95359,0.165664,0.733015,0.830909,0.0813516,0.34783,0.745021,0.789177,0.24309,0.829411,0.292012,0.871423,0.657678,0.521428,0.770412,0.117474,0.599489,0.817017,0.408312,0.00286549,0.268038,0.809104,0.288679,0.510285,0.724444,0.00895709,0.36192,0.774125,0.878704,0.175563,0.576344,0.0344743,0.219058,0.67788,0.598301,0.782809,0.556208,0.634105,0.338037,0.97691,0.738976,0.622043,0.895577,0.386307,0.565396,0.00285095,0.539167,0.70908,0.157706,0.204296,0.535174,0.266675,0.139364,0.71879,0.815812,0.648683,0.920265,0.458717,0.32193,0.271653,0.880727,0.65575,0.381293,0.0588737,0.477442,0.793203,0.561985,0.0910288,0.968032,0.0910389,0.236946,0.970583,0.87433,0.334368,0.518363,0.0350484,0.123774,0.0512937,0.10022,0.901994,0.0639665,0.101631,0.770049,0.597222,0.507527,0.361512,0.046836,0.446656,0.826178,0.517605,0.210355,0.947999,0.170473,0.0853453,0.615626,0.349362,0.993891,0.274429,0.767394,0.470116,0.39035,0.188445,0.185712,0.301978,0.920022,0.519479,0.155349,0.721186,0.734434,0.179381,0.788597,0.709138,0.202127,0.915311,0.496491,0.37451,0.837636,0.359218,0.873552,0.0609387,0.384942,0.0213905,0.0312318,0.575223,0.692457,0.937541,0.768072,0.642023,0.871985,0.353417,0.354477,0.558071,0.463017,0.242156,0.176284,0.0660312,0.180761,0.941768,0.0235393,0.663619,0.729086,0.457303,0.109507,0.597254,0.629031,0.226858,0.733287,0.205055,0.334633,0.23445,0.936247,0.596939,0.941551,0.925833,0.486879,0.139428,0.824894,0.122065,0.390324,0.717941,0.645352,0.532229,0.810186,0.793106,0.393253,0.0955534,0.0684951,0.623954,0.325787,0.392701,0.153016,0.0843128,0.287673,0.90868,0.628485,0.275632,0.825915,0.0205515,0.633434,0.502681,0.0416356,0.424241,0.396608,0.599504,0.539753,0.0252912,0.368183,0.211768,0.864906,0.838751,0.351066,0.0588854,0.473317,0.807504,0.0543542,0.267352,0.528454,0.126801,0.753314,0.411509,0.112691,0.991274,0.133521,0.35579,0.530287,0.0975389,0.422817,0.294512,0.934926,0.921574,0.861051,0.726599,0.0653672,0.25516,0.769688,0.76278,0.942157,0.391855,0.670155,0.157634,0.989627,0.399058,0.96389,0.741625,0.973784,0.786962,0.408053,0.637957,0.0567698,0.311812,0.198797,0.734697,0.537732,0.603339,0.415126,0.0240052,0.298052,0.100523,0.44731,0.50011,0.419099,0.986583,0.43202,0.943553,0.124375,0.516982,0.298781,0.824978,0.20889,0.948932,0.342046,0.801392,0.52962,0.197231,0.157992,0.297475,0.383154,0.128528,0.356053,0.488898,0.974137,0.596986,0.48382,0.508069,0.996319,0.57643,0.312957,0.665414,0.574866,0.861926,0.192484,0.477064,0.853316,0.47975,0.66612,0.0681365,0.111694,0.688824,0.452239,0.616238,0.311948,0.157617,0.504015,0.764987,0.507212,0.569244,0.000561774,0.856797,0.323837,0.878641,|0.668055,0.42563,0.177809,0.0653769,0.722497,0.494665,0.306727,0.944178,0.0708761,0.322019,0.487422,0.739428,0.223776,0.853712,0.0987053,0.0675949,0.0817044,0.908992,0.166543,0.136366,0.820057,0.669192,0.209161,0.286618,0.244638,0.204534,0.378789,0.839773,0.664166,0.0345302,0.243364,0.151693,0.74546,0.364432,0.537259,0.705884,0.843774,0.203081,0.0206721,0.88172,0.866554,0.630673,0.354886,0.795658,0.146119,0.947514,0.783994,0.1344,0.60783,0.811041,0.39464,0.74166,0.00444007,0.829061,0.649604,0.645661,0.256966,0.410782,0.818699,0.347978,0.253438,0.0656393,0.969451,0.802383,0.556728,0.985972,0.399613,0.331343,0.269542,0.676861,0.874891,0.96136,0.54573,0.757887,0.815482,0.185771,0.168167,0.306716,0.376237,0.217035,0.0234435,0.355885,0.00589961,0.549855,0.622117,0.561277,0.481283,0.218001,0.821779,0.576964,0.846658,0.405583,0.118085,0.694692,0.204567,0.0783245,0.97096,0.942775,0.886276,0.78673,0.827242,0.449334,0.176434,0.723353,0.706657,0.0200993,0.204933,0.240992,0.597426,0.380336,0.25699,0.937846,0.545916,0.843895,0.109824,0.60227,0.756561,0.420719,0.530184,0.658784,0.308611,0.777285,0.0222624,0.414927,0.796667,0.384879,0.959204,0.958811,0.474756,0.061784,0.35395,0.85199,0.835042,0.417956,0.762473,0.643608,0.14927,0.488588,0.942234,0.671563,0.243507,0.415837,0.869758,0.992118,0.810198,0.00804061,0.862026,0.453202,0.951112,0.341625,0.729861,0.875839,0.108123,0.129809,0.306182,0.169399,0.450278,0.824162,0.771199,0.700151,0.155212,0.253983,0.690298,0.765457,0.599422,0.0367599,0.230574,0.0422791,0.136942,0.88992,0.999663,0.0392085,0.230754,0.265381,0.144113,0.437333,0.214291,0.271561,0.572469,0.606585,0.924967,0.28205,0.189399,0.689801,0.186029,0.695664,0.935223,0.106897,0.733158,0.570421,0.0158209,0.389956,0.176487,0.761519,0.103919,0.98031,0.627201,0.29274,0.132798,0.59206,0.75576,0.892844,0.404069,0.982515,0.38973,0.0293267,0.350461,0.0800877,0.797632,0.907964,0.763016,0.105692,0.614958,0.754355,0.175248,0.817163,0.329461,0.0587242,0.821642,0.642267,0.713383,0.199911,0.627296,0.0943511,0.791016,0.781988,0.118018,0.940663,0.64643,0.981349,0.470354,0.705036,0.521065,0.904354,0.305966,0.313098,0.788492,0.183706,0.663981,0.399611,0.202719,0.772565,0.33187,0.0534124,0.442455,0.732034,0.394781,0.196113,0.104817,0.719121,0.749655,0.905223,0.997304,0.74859,0.683752,0.229024,0.478532,0.61086,0.428725,0.343763,0.633868,0.797642,0.312251,0.598209,0.349571,0.721394,0.0821405,0.342309,0.419325,0.355897,0.414611,0.607527,0.943856,0.641052,0.764012,0.472845,0.780578,0.475387,0.764753,0.897572,0.930947,0.296217,0.558194,0.927326,0.750004,0.0692039,0.854609,0.893652,0.892707,0.934313,0.541999,0.0672238,0.558592,0.272578,0.0334832,0.915818,0.817317,0.101771,0.234399,0.246861,0.137057,0.549212,0.596812,0.171119,0.609967,0.168973,0.532673,0.728564,0.509734,0.890398,0.615746,0.75556,0.917381,0.0882109,0.787057,0.881815,0.388971,0.373745,0.128275,0.12472,0.674327,0.8592,0.368908,0.659958,0.53493,0.944857,0.540814,0.134624,0.864325,0.976282,0.397331,0.0171643,0.791919,0.365741,0.510891,0.796337,0.408689,0.271447,0.78668,0.918531,0.802203,0.323701,0.678102,0.263745,0.691945,0.869978,0.180635,0.545771,0.215626,0.0773178,0.0125577,0.142753,0.432122,0.868872,0.139037,0.482418,0.774483,0.942785,0.569368,0.881943,0.000877798,0.636748,0.132606,0.0184074,0.508465,0.777853,0.639182,0.304138,0.561486,0.576486,0.807389,0.318791,0.659565,0.0393215,0.601352,0.735922,0.121983,0.861375,0.201526,0.564809,0.695959,0.131376,0.416471,0.4838,0.2074,0.258518,0.460323,0.29768,0.625427,0.577213,0.80489,0.393683,0.340082,0.986439,0.00152647,0.562489,0.283397,0.350444,0.0198004,0.0245119,0.320055,0.209856,0.624791,0.0774481,0.358686,0.848873,0.806937,0.443398,0.481958,0.291625,0.555185,0.975198,0.282741,0.30303,0.346717,0.322315,0.0646967,0.217235,0.456519,0.418776,0.529996,0.0177847,0.518664,0.2334,0.646687,0.51218,0.773869,0.490418,0.642532,0.756255,0.672033,0.186224,0.756315,0.773306,0.0746162,0.399698,0.235003,0.919891,0.585586,0.811377,0.668884,0.00286549,0.423594,0.539064,0.379698,0.453097,0.671742,0.640496,0.651979,0.548389,0.345882,0.694514,0.453085,0.510602,0.576173,0.827921,0.819879,0.599969,0.123637,0.34362,0.0546953,0.294676,0.416284,0.154646,0.607426,0.648231,0.269521,0.994829,0.872765,0.734487,0.203775,0.945779,0.822923,0.554307,0.828975,0.980256,0.47441,0.139593,0.31546,0.295755,0.00442475,0.492408,0.381669,0.949398,0.227834,0.984452,0.143403,0.0705121,0.578929,0.787229,0.655395,0.791164,0.548722,0.102484,0.580337,0.516077,0.58161,0.866425,0.59844,0.653714,0.432639,0.166168,0.917502,0.953101,0.354153,0.812981,0.0576106,0.304077,0.0773129,0.949345,0.972258,0.550365,0.903237,0.0435232,0.935225,0.138123,0.761322,0.314771,0.9399,0.0904632,0.744358,0.71615,0.975546,0.631923,0.0500343,0.705392,0.976105,0.426412,0.052786,0.206083,0.528771,0.128542,0.465893,0.373386,0.571098,0.484173,0.866662,0.798984,0.0544019,0.513213,0.139586,0.858999,0.912188,0.250884,0.592981,0.404432,0.825543,0.159652,0.755606,0.447849,0.257446,0.771018,0.0466664,0.12553,0.0857002,0.441366,0.752624,0.718158,0.89677,0.417103,0.645906,0.0341086,0.714974,0.763187,0.235483,0.220683,0.595288,0.785623,0.867269,0.0237147,0.207169,0.157281,0.398378,0.758402,0.27583,0.887422,0.343472,0.42604,0.580327,0.217802,0.466431,0.82788,0.603276,0.544731,0.634251,0.453721,0.157238,0.250919,0.245155,0.904805,0.711976,0.790851,0.887836,0.0189093,0.531706,0.601745,0.611269,0.0410612,0.429674,0.654619,0.805353,0.0382187,0.587878,0.321844,0.184142,0.406995,0.155192,0.627702,0.407221,0.609809,0.973582,0.0915061,0.690344,0.82234,0.41931,0.129983,0.028801,0.505025,0.38441,0.464228,0.396383,0.437086,0.507866,0.305395,0.311981,0.409551,0.75216,0.937049,0.438515,0.543996,0.0162798,0.197343,0.938647,0.74363,0.69991,0.132189,0.0564551,0.912157,0.535793,0.296529,0.274844,0.998787,0.649175,0.402768,0.103505,0.800122,0.0659953,0.850227,0.0914888,0.802557,0.97106,0.462641,0.40124,0.889146,0.00328249,0.158724,0.220093,0.968108,0.264192,0.824328,0.765677,0.113686,0.436919,0.549075,0.0515861,0.339955,0.574709,0.313408,0.219344,0.152615,0.293466,0.181621,0.186638,0.959224,0.307519,0.744828,0.896299,0.563203,0.574661,0.993235,0.507341,0.284452,0.986287,0.891214,0.665927,0.507738,0.719654,0.662012,0.248892,0.106259,0.57721,0.574599,0.735626,0.369772,0.927225,0.748327,0.906258,0.953161,0.483294,0.322966,0.543894,0.391093,0.521377,0.7871,0.0293092,0.134051,0.497296,0.736159,0.477429,0.125013,0.59088,0.950031,0.195602,0.510793,0.969721,0.0262722,0.0112696,0.873542,0.0542356,0.987816,0.76642,0.134393,0.748449,0.854437,0.259665,0.686284,0.309989,0.533994,0.798519,0.822532,0.423347,0.529678,0.553113,0.164039,0.579063,0.0247178,0.17911,0.154138,0.733734,0.258614,0.446256,0.637501,0.261699,0.637296,0.633339,0.292642,0.92625,0.185882,0.220865,0.0508968,0.587294,0.606179,0.929728,0.874231,0.81302,0.137227,0.788471,0.338365,0.975374,0.673058,0.268259,0.429579,0.545318,0.734241,0.150481,0.274158,0.141558,0.0510955,0.136739,0.124519,0.0587959,0.951447,0.486625,0.047752,0.0587227,0.0563235,0.192753,0.960894,0.73996,0.836683,0.260486,0.301523,0.10124,0.791596,0.0643793,0.0688112,0.527922,0.236505,0.343096,0.212822,0.590025,0.698369,0.550402,0.341251,0.125414,0.626207,0.868408,0.900474,0.0193515,0.0706543,0.0364849,0.125407,0.763448,0.26219,0.918469,0.318676,0.237173,0.887314,0.0996754,0.00750864,0.969696,0.558621,0.707371,0.278262,0.955907,0.406088,0.0368078,0.0526901,0.251744,0.85645,0.684739,0.458349,0.471812,0.997272,0.158498,0.11875,0.647629,0.564142,0.708201,0.617197,0.848649,0.434562,0.201992,0.593349,0.128909,0.149229,0.806601,0.961096,0.35602,0.839599,0.202843,0.688736,0.0235496,0.478827,0.0326449,0.395876,0.698067,0.10494,0.388586,0.796277,0.00523746,0.325735,0.102623,0.785381,0.35797,0.121587,0.537212,0.328035,0.814626,0.802,0.273566,0.313217,0.28967,0.0848397,0.507505,0.376979,0.263681,0.870386,0.21053,0.438984,0.210284,0.874148,0.621724,0.0174763,0.297952,0.604795,0.174702,0.594138,0.990084,0.384916,0.646474,0.818803,0.308062,0.5028,0.521913,0.224663,0.0593621,0.0224031,0.334122,0.422302,0.961915,0.520017,0.515174,0.661912,0.501217,0.836499,0.248211,0.914512,0.36699,0.612288,0.599583,0.184068,0.182046,0.335255,0.541032,0.0903226,0.942577,0.24702,0.395839,0.433727,0.375899,0.28035,0.984539,0.331226,0.554231,0.576261,0.775997,0.608738,0.768244,0.806145,0.578231,0.580365,0.612625,0.365276,0.0745658,0.477112,0.0362371,0.12145,0.758482,0.713484,0.604495,0.0123579,0.310268,0.390929,0.386243,0.20161,0.0738166,0.703611,0.688866,0.90269,0.29999,0.272238,0.799534,0.591479,0.767175,0.811294,0.622763,0.0133743,0.293555,0.801792,0.0445425,0.0551826,0.861357,0.783218,0.573798,0.0895249,0.373038,0.707241,0.294533,0.698202,0.0982776,0.0972942,0.0849286,0.268274,0.18534,0.487096,0.443117,0.856892,0.983476,0.493193,0.297903,0.510861,0.743521,0.198787,0.461456,0.6528,0.733589,0.654926,0.0755587,0.630154,0.358238,0.702705,0.387305,0.027531,0.0771277,0.25322,0.678342,0.621008,0.43198,0.895098,0.204224,0.406107,0.591789,0.368325,0.694198,0.62361,0.69204,0.828827,0.138809,0.727488,|0.560988,0.863214,0.031894,0.449834,0.949749,0.804066,0.0452872,0.625332,0.354477,0.837653,0.885929,0.426117,0.321393,0.406539,0.797599,0.587183,0.366048,0.455115,0.754135,0.84317,0.728594,0.506748,0.457882,0.809642,0.477224,0.840703,0.810702,0.603446,0.55089,0.728001,0.196257,0.953976,0.398334,0.97849,0.582543,0.0601873,0.472589,0.736758,0.272725,0.990956,0.792234,0.317019,0.432411,0.933706,0.984329,0.705548,0.396788,0.134098,0.608358,0.810528,0.984349,0.682795,0.137911,0.519915,0.679532,0.0197205,0.241135,0.614113,0.369833,0.0524616,0.143334,0.763423,0.529858,0.780071,0.195556,0.76027,0.398237,0.565995,0.0808818,0.752598,0.33679,0.0871931,0.11323,0.136965,0.372952,0.954772,0.70143,0.485411,0.174066,0.908222,0.0104514,0.290785,0.895253,0.720778,0.168339,0.694586,0.00444126,0.442903,0.607214,0.206755,0.969101,0.842919,0.175085,0.724217,0.222659,0.479457,0.263457,0.00403821,0.684441,0.787914,0.703035,0.178983,0.111832,0.537178,0.326404,0.502277,0.919478,0.834233,0.0727852,0.146962,0.305191,0.289342,0.787845,0.338995,0.507255,0.826641,0.0499533,0.751211,0.350559,0.803792,0.197727,0.150355,0.163659,0.551716,0.145836,0.568338,0.828936,0.0152204,0.541227,0.842851,0.271778,0.854455,0.793402,0.00475073,0.958154,0.636442,0.662926,0.278226,0.938867,0.53677,0.26944,0.984979,0.239297,0.619032,0.014264,0.503983,0.469971,0.881058,0.498989,0.718385,0.932256,0.768078,0.197245,0.0701123,0.103842,0.693873,0.559247,0.734504,0.807776,0.836528,0.352556,0.690388,0.465194,0.517941,0.345664,0.0618224,0.741724,0.321916,0.509905,0.281152,0.114491,0.319128,0.829452,0.874379,0.0737348,0.669302,0.769371,0.375536,0.167358,0.724108,0.469099,0.411525,0.0174614,0.586378,0.929603,0.240142,0.680863,0.26197,0.539841,0.399404,0.491608,0.574682,0.481523,0.381914,0.48135,0.468822,0.222102,0.169071,0.0425583,0.16524,0.756893,0.697369,0.88935,0.661493,0.873816,0.894337,0.885153,0.649692,0.676477,0.407688,0.489652,0.425006,0.530442,0.601409,0.522096,0.357615,0.441313,0.735471,0.899311,0.717234,0.263663,0.756645,0.981193,0.715953,0.740867,0.317219,0.0715234,0.793019,0.368603,0.520329,0.495024,0.863456,0.561544,0.382455,0.504393,0.6893,0.0632772,0.205135,0.208167,0.294559,0.713293,0.438876,0.657025,0.159448,0.437635,0.411907,0.381599,0.0299655,0.399647,0.755895,0.854979,0.075267,0.170634,0.774141,0.329159,0.644642,0.994274,0.707651,0.495599,0.471003,0.825264,0.983811,0.250696,0.679139,0.35624,0.407607,0.434464,0.502047,0.0507269,0.701654,0.503731,0.9194,0.636429,0.319765,0.466615,0.292085,0.553741,0.928458,0.35354,0.654462,0.23564,0.979545,0.63552,0.238724,0.162307,0.178033,0.608584,0.814944,0.283933,0.887148,0.25398,0.787282,0.661148,0.855797,0.822502,0.944058,0.799702,0.111012,0.589143,0.315715,0.47397,0.247557,0.667069,0.224524,0.656709,0.630606,0.749004,0.424266,0.220275,0.497095,0.880651,0.854022,0.427823,0.721942,0.0134222,0.897896,0.141166,0.995767,0.292184,0.392904,0.930278,0.942081,0.851581,0.297707,0.214879,0.764888,0.572186,0.796429,0.487977,0.388857,0.219154,0.313531,0.0347911,0.829802,0.966328,0.799912,0.726511,0.888443,0.563141,0.24538,0.76979,0.229159,0.504691,0.691072,0.25988,0.963257,0.338103,0.831716,0.163181,0.126991,0.492036,0.474308,0.965541,0.641817,0.46828,0.0590923,0.191566,0.561869,0.657755,0.442279,0.17143,0.299208,0.603589,0.390941,0.785871,0.81244,0.0730948,0.218666,0.134408,0.143128,0.980136,0.66483,0.637693,0.504389,0.557521,0.778036,0.747636,0.764102,0.342113,0.0433605,0.446505,0.250752,0.364134,0.525003,0.390888,0.855857,0.323685,0.0336522,0.918338,0.801782,0.315647,0.770906,0.659374,0.928533,0.477017,0.836228,0.719274,0.0563316,0.197293,0.569911,0.531479,0.927726,0.243965,0.720105,0.682619,0.143175,0.372087,0.734618,0.814578,0.410446,0.374965,0.106676,0.469604,0.566676,0.126107,0.507063,0.160727,0.557607,0.717884,0.659742,0.172605,0.394261,0.359609,0.714222,0.0949459,0.84878,0.226628,0.151479,0.672804,0.0742915,0.674858,0.0649693,0.378948,0.25868,0.909704,0.746827,0.707538,0.791312,0.595496,0.172242,0.962185,0.805863,0.106232,0.405681,0.350537,0.282907,0.336897,0.947732,0.752672,0.140055,0.927374,0.153557,0.915887,0.50763,0.0296379,0.922504,0.352031,0.903644,0.386085,0.634023,0.967623,0.497891,0.729887,0.913678,0.709723,0.836116,0.760728,0.0533656,0.0917705,0.477836,0.295108,0.79154,0.106556,0.529802,0.546637,0.550682,0.239064,0.00223821,0.950696,0.346477,0.857747,0.191632,0.621264,0.989986,0.967068,0.470773,0.318563,0.117587,0.15293,0.75917,0.605743,0.374301,0.435798,0.493373,0.182276,0.488788,0.6727,0.292337,0.439333,0.709924,0.965792,0.810601,0.235208,0.0752446,0.607464,0.895703,0.957963,0.878667,0.20676,0.885148,0.441779,0.893664,0.515865,0.0184742,0.521212,0.772772,0.946643,0.775237,0.14856,0.587086,0.494834,0.970475,0.482558,0.440457,0.699862,0.835598,0.748368,0.475854,0.0200659,0.160624,0.906841,0.392882,0.820968,0.908033,0.979415,0.924607,0.942774,0.489807,0.388218,0.926572,0.569062,0.777908,0.450559,0.89729,0.783813,0.131707,0.55788,0.654001,0.932783,0.285586,0.599622,0.421848,0.905659,0.530471,0.353925,0.399378,0.0643288,0.445206,0.955453,0.910299,0.609513,0.417975,0.446319,0.764131,0.284008,0.101536,0.208937,0.84968,0.179033,0.943686,0.845744,0.143421,0.135563,0.548455,0.635627,0.403964,0.323076,0.990132,0.309673,0.0879955,0.190079,0.422526,0.0656906,0.815763,0.259837,0.495821,0.879645,0.349843,0.797675,0.526813,0.522963,0.366151,0.556665,0.890459,0.577791,0.253048,0.527616,0.292084,0.765666,0.773752,0.503252,0.151649,0.250875,0.330996,0.547465,0.707989,0.604376,0.610587,0.948555,0.147256,0.861518,0.154963,0.967394,0.796313,0.344796,0.231846,0.0722879,0.653902,0.954227,0.0119749,0.942662,0.715354,0.399723,0.578163,0.737576,0.452451,0.273898,0.648826,0.486455,0.814116,0.152273,0.658237,0.694403,0.355168,0.447484,0.673349,0.341271,0.534604,0.988145,0.115838,0.0900892,0.949351,0.179192,0.490011,0.0372162,0.818352,0.0380342,0.197072,0.505249,0.657452,0.850729,0.25714,0.734337,0.539899,0.784278,0.0628194,0.489632,0.275136,0.735444,0.0786227,0.234593,0.699089,0.1251,0.512492,0.600266,0.808378,0.586773,0.39045,0.30624,0.365362,0.17213,0.13337,0.243007,0.820202,0.431892,0.39244,0.0142493,0.802602,0.793938,0.481528,0.663824,0.105498,0.65979,0.797603,0.401701,0.361519,0.776654,0.548358,0.0551435,0.0368494,0.475563,0.442463,0.178623,0.945548,0.999893,0.959414,0.226373,0.933088,0.392316,0.791682,0.587099,0.661346,0.453258,0.178298,0.860528,0.552132,0.758529,0.865037,0.721423,0.055169,0.548907,0.0800523,0.924515,0.975934,0.79188,0.210536,0.785639,0.904736,0.024191,0.848845,0.0635844,0.0189205,0.188137,0.934278,0.504908,0.441032,0.883226,0.93733,0.760277,0.290908,0.198666,0.104597,0.714598,0.0191682,0.0357615,0.830887,0.717447,0.339208,0.0226557,0.721332,0.114826,0.557174,0.457273,0.839154,0.265258,0.939455,0.302704,0.403445,0.938449,0.288677,0.493977,0.880491,0.314489,0.792338,0.938233,0.922137,0.17957,0.919213,0.0778753,0.410684,0.949148,0.0456115,0.377283,0.144794,0.825625,0.448737,0.511114,0.339034,0.726398,0.0738958,0.488216,0.543219,0.573884,0.650241,0.496042,0.670145,0.346048,0.346471,0.380165,0.851139,0.60607,0.0116542,0.854414,0.995256,0.729998,0.792099,0.272629,0.604,0.461001,0.821965,0.82019,0.881242,0.351573,0.340118,0.466356,0.574579,0.0303807,0.322894,0.676595,0.0978625,0.121301,0.14009,0.334754,0.578004,0.204726,0.816904,0.618357,0.829628,0.433225,0.624892,0.976937,0.356898,0.531977,0.732448,0.0493233,0.746406,0.993922,0.416368,0.221195,0.862608,0.623166,0.0512406,0.290228,0.67215,0.354494,0.149453,0.895462,0.660582,0.221894,0.0210727,0.65933,0.439259,0.307505,0.622944,0.0604931,0.727819,0.933711,0.738149,0.139957,0.792014,0.82965,0.811922,0.223108,0.150993,0.00664979,0.587055,0.128367,0.669997,0.116934,0.78696,0.268516,0.138373,0.0994331,0.661677,0.645251,0.855231,0.223977,0.13835,0.191826,0.298586,0.328291,0.152647,0.938815,0.310959,0.0254872,0.163066,0.36295,0.422122,0.0650077,0.497072,0.409608,0.298883,0.0741223,0.115093,0.980729,0.905982,0.677195,0.621016,0.335365,0.831558,0.868305,0.317276,0.62047,0.406194,0.793917,0.971336,0.860702,0.958955,0.37214,0.395489,0.424226,0.796282,0.901996,0.332736,0.4915,0.0773954,0.452393,0.13459,0.288614,0.646643,0.491089,0.735682,0.345029,0.299358,0.463168,0.531029,0.133351,0.33853,0.202605,0.810325,0.0022471,0.0728096,0.133105,0.645217,0.190419,0.816294,0.260263,0.257008,0.690524,0.518684,0.694316,0.669713,0.949327,0.617719,0.395803,0.696766,0.378014,0.583733,0.169211,0.535567,0.501774,0.985954,0.274637,0.98285,0.211784,0.71489,0.354137,0.95855,0.215732,0.19914,0.43206,0.0355151,0.620192,0.632084,0.829448,0.279796,0.12005,0.0815753,0.511115,0.112397,0.712838,0.535158,0.874435,0.240892,0.517107,0.739208,0.140875,0.846789,0.121759,0.546144,0.947426,0.950537,0.637677,0.47538,0.672525,0.766544,0.780338,0.23635,0.360927,0.344422,0.00463498,0.812648,0.789871,0.579834,0.668085,0.652998,0.126443,0.384134,0.101843,0.551399,0.430554,0.218039,0.512871,0.840223,0.552792,0.874396,0.817581,0.899778,0.568614,0.507852,0.671671,0.490748,0.973794,0.838933,0.228208,0.167057,0.581135,0.968818,0.405509,0.693205,|0.269297,0.719532,0.478121,0.449137,0.563176,0.15185,0.335814,0.629694,0.203085,0.355642,0.268326,0.0152021,0.847316,0.770927,0.861039,0.099504,0.564885,0.175071,0.12183,0.783395,0.861384,0.562787,0.775907,0.910132,0.454728,0.689727,0.906614,0.451093,0.827383,0.136098,0.162998,0.994193,0.943418,0.255101,0.838601,0.911622,0.875409,0.988978,0.647454,0.100412,0.673388,0.37813,0.895739,0.685657,0.21643,0.906255,0.0165555,0.329441,0.00108248,0.675138,0.823431,0.731938,0.207918,0.377401,0.186908,0.86883,0.161439,0.984495,0.190566,0.364779,0.716218,0.722069,0.229245,0.698789,0.971315,0.501075,0.26559,0.154916,0.181468,0.730888,0.86582,0.186566,0.0624648,0.193489,0.135062,0.833724,0.72484,0.283208,0.178437,0.0093618,0.830384,0.767312,0.476373,0.271369,0.249754,0.465544,0.559069,0.260667,0.826119,0.844389,0.218167,0.0395707,0.219715,0.36246,0.407567,0.327046,0.35836,0.637985,0.701459,0.0378976,0.177643,0.408705,0.196211,0.699814,0.0427778,0.386284,0.452925,0.917864,0.22954,0.82931,0.915143,0.351776,0.225508,0.33367,0.929025,0.740982,0.214142,0.476311,0.220876,0.233719,0.19329,0.816807,0.463715,0.707944,0.430524,0.830481,0.410789,0.39315,0.792632,0.494663,0.191316,0.531932,0.301127,0.0934766,0.151668,0.518174,0.304843,0.180537,0.324372,0.0603448,0.952409,0.881061,0.86184,0.157624,0.35106,0.441706,0.380867,0.644812,0.923307,0.480519,0.443947,0.255656,0.164351,0.665078,0.961114,0.249351,0.294878,0.952114,0.432817,0.593234,0.464909,0.722759,0.647166,0.154395,0.400924,0.99736,0.789591,0.890213,0.310714,0.064971,0.932027,0.171993,0.4234,0.716905,0.244004,0.0995941,0.652706,0.907106,0.806723,0.205316,0.452018,0.531016,0.568452,0.287058,0.127067,0.650966,0.0446591,0.0725788,0.0848951,0.235992,0.882712,0.0187871,0.248888,0.316143,0.150931,0.00375593,0.155498,0.165914,0.146096,0.068477,0.346155,0.989312,0.993225,0.344071,0.758446,0.363249,0.563589,0.39638,0.28259,0.389195,0.421043,0.739338,0.420651,0.998378,0.374834,0.417488,0.980583,0.802259,0.843058,0.290157,0.0509585,0.398482,0.665101,0.595802,0.311558,0.248186,0.931049,0.629909,0.0805563,0.144655,0.660407,0.717867,0.0178065,0.10505,0.775855,0.535482,0.574918,0.157548,0.803396,0.800786,0.0573812,0.112039,0.176526,0.254074,0.519312,0.294993,0.323315,0.0190367,0.419745,0.208403,0.122469,0.478535,0.385787,0.601554,0.920393,0.273444,0.610476,0.772917,0.728397,0.314695,0.476556,0.953421,0.301409,0.525492,0.975922,0.118369,0.638129,0.484933,0.450778,0.850328,0.314677,0.445868,0.668597,0.932279,0.508663,0.0157679,0.861953,0.969401,0.461463,0.00799906,0.891918,0.902686,0.872624,0.309186,0.960042,0.502839,0.610031,0.926675,0.654649,0.888199,0.239713,0.364842,0.0710981,0.279901,0.98315,0.170095,0.702629,0.432006,0.792332,0.458653,0.353188,0.702994,0.276951,0.117622,0.38672,0.832591,0.223681,0.295479,0.950611,0.149078,0.544756,0.232507,0.88356,0.593959,0.350027,0.335454,0.957517,0.653553,0.725721,0.390951,0.0551547,0.11366,0.680306,0.368688,0.193434,0.842674,0.368854,0.331173,0.164125,0.925906,0.00331891,0.985089,0.291978,0.660067,0.441597,0.21204,0.867433,0.8587,0.823989,0.232116,0.186849,0.901806,0.158982,0.271535,0.057328,0.886047,0.253662,0.374854,0.892801,0.898294,0.263381,0.927495,0.60437,0.387177,0.272707,0.20134,0.451445,0.076919,0.605571,0.639693,0.252428,0.760057,0.217334,0.505665,0.215111,0.792753,0.274105,0.243167,0.47203,0.20132,0.443436,0.0900912,0.051882,0.00173992,0.829181,0.350383,0.412571,0.836503,0.908339,0.142613,0.384612,0.764093,0.0762682,0.514627,0.108687,0.34066,0.208623,0.728917,0.83962,0.574339,0.30975,0.494278,0.254488,0.268411,0.795039,0.0718475,0.520985,0.859418,0.211821,0.766604,0.127244,0.810569,0.875128,0.0267835,0.45591,0.237191,0.669532,0.625791,0.119325,0.569836,0.499534,0.163026,0.614456,0.184164,0.545433,0.255155,0.782303,0.390761,0.748536,0.73657,0.493333,0.366235,0.181739,0.158829,0.910011,0.208821,0.788324,0.313184,0.0918359,0.864163,0.661817,0.569623,0.670736,0.0896943,0.816565,0.287783,0.091549,0.575335,0.536996,0.857139,0.184776,0.616026,0.573826,0.196306,0.815749,0.554126,0.577165,0.360061,0.11643,0.26266,0.359057,0.219683,0.810402,0.576014,0.992243,0.893195,0.902756,0.280433,0.28059,0.125784,0.780244,0.990406,0.498452,0.885572,0.792844,0.107409,0.0479679,0.341166,0.445407,0.0986694,0.702723,0.748226,0.429831,0.845661,0.704943,0.879867,0.113036,0.877129,0.520743,0.87191,0.302431,0.114235,0.184047,0.281792,0.965529,0.0822049,0.744567,0.346236,0.0540349,0.242663,0.869417,0.737905,0.182988,0.14623,0.23642,0.896931,0.345216,0.748835,0.758981,0.330205,0.29541,0.130177,0.976477,0.994496,0.990435,0.500817,0.045711,0.560808,0.213779,0.571856,0.940913,0.439515,0.707599,0.337157,0.909742,0.077705,0.187063,0.802446,0.685696,0.906656,0.013555,0.441933,0.443547,0.897128,0.452212,0.862126,0.392172,0.877825,0.279852,0.624291,0.884131,0.673693,0.0580946,0.632704,0.418573,0.0584241,0.160037,0.614296,0.337962,0.722099,0.532239,0.464624,0.660232,0.800506,0.994407,0.859706,0.740013,0.0454981,0.844339,0.864118,0.40341,0.754742,0.404216,0.616745,0.942998,0.605158,0.940887,0.899463,0.62903,0.445653,0.100397,0.938344,0.23796,0.643013,0.275433,0.840065,0.0156372,0.896852,0.691922,0.51491,0.831206,0.949227,0.801197,0.680839,0.384336,0.152915,0.673929,0.453604,0.544487,0.361679,0.560403,0.150631,0.766474,0.148754,0.457135,0.352593,0.0842278,0.46963,0.152063,0.759476,0.46776,0.458753,0.639379,0.975392,0.808294,0.737634,0.416569,0.235505,0.469528,0.605896,0.0224292,0.636981,0.453184,0.298028,0.743344,0.147975,0.970761,0.431697,0.0178092,0.643951,0.577548,0.593535,0.10962,0.912223,0.407466,0.500081,0.866293,0.896568,0.170904,0.351469,0.609387,0.162664,0.159676,0.623211,0.0525942,0.0132145,0.374664,0.94773,0.648756,0.685624,0.0273243,0.985635,0.728387,0.817574,0.642364,0.486079,4.82798e-05,0.853184,0.258402,0.839374,0.0419612,0.837422,0.217788,0.972399,0.965832,0.642891,0.675374,0.0105804,0.527516,0.0757636,0.989133,0.991947,0.289781,0.643291,0.673306,0.416264,0.209415,0.376201,0.639189,0.232171,0.104585,0.144844,0.23699,0.523345,0.447376,0.818351,0.273902,0.826301,0.672303,0.531109,0.697782,0.262043,0.661192,0.249696,0.0460276,0.143245,0.799048,0.966995,0.61312,0.612997,0.934105,0.767469,0.912403,0.165791,0.279818,0.609075,0.0456752,0.319448,0.544734,0.58778,0.832504,0.523002,0.560838,0.720339,0.546852,0.827066,0.137947,0.361349,0.787316,0.865196,0.336363,0.753976,0.998916,0.635158,0.238255,0.532025,0.0163958,0.15191,0.435186,0.739054,0.925492,0.805656,0.0201881,0.0399968,0.8566,0.0691432,0.0564185,0.670816,0.77558,0.710745,0.870826,0.276654,0.62918,0.079217,0.469889,0.405112,0.280589,0.0790427,0.234473,0.511288,0.856248,0.462227,0.453683,0.0134893,0.207898,0.688847,0.572204,0.0785161,0.784746,0.6705,0.0271872,0.292221,0.230799,0.0592678,0.250386,0.430086,0.63405,0.492638,0.608785,0.00341451,0.0618263,0.632518,0.329759,0.982,0.178813,0.109407,0.529794,0.846908,0.128718,0.368668,0.594314,0.463249,0.419658,0.38371,0.199557,0.289613,0.0908383,0.80037,0.907784,0.816587,0.890193,0.810294,0.216722,0.841549,0.228786,0.970744,0.556465,0.645897,0.368434,0.13934,0.540998,0.784722,0.656754,0.475763,0.164745,0.556141,0.467156,0.704249,0.3923,0.257822,0.387335,0.924415,0.251095,0.555616,0.289092,0.127176,0.403881,0.354843,0.367696,0.658978,0.609611,0.620334,0.467808,0.2711,0.93599,0.716309,0.649265,0.380397,0.0663202,0.841039,0.957282,0.718939,0.258167,0.366312,0.107659,0.343103,0.593776,0.119352,0.54772,0.465789,0.642402,0.721292,0.813726,0.848185,0.959145,0.918827,0.954771,0.493807,0.0712588,0.932549,0.413506,0.705299,0.782412,0.200229,0.141387,0.5917,0.272033,0.353553,0.926007,0.17185,0.332226,0.709267,0.552504,0.921651,0.237896,0.0747075,0.173431,0.0736196,0.596234,0.757894,0.311558,0.869313,0.0264252,0.203259,0.643756,0.0307426,0.90022,0.690643,0.584113,0.849304,0.26196,0.610712,0.780248,0.489682,0.168828,0.351325,0.293124,0.335578,0.91174,0.733241,0.2406,0.356189,0.66012,0.0310187,0.726366,0.740627,0.410621,0.126368,0.325049,0.707646,0.302901,0.850335,0.363522,0.560739,0.208275,0.556552,0.348579,0.717139,0.760221,0.447806,0.335938,0.469768,0.224282,0.0324743,0.223165,0.891488,0.784755,0.789022,0.725729,0.731319,0.09534,0.735676,0.828111,0.732815,0.912923,0.264847,0.896754,0.105793,0.879783,0.15107,0.431411,0.137153,0.847931,0.436547,0.525841,0.681171,0.0126756,0.136357,0.58004,0.684008,0.504955,0.496537,0.420556,0.384365,0.178858,0.0655203,0.871195,0.550546,0.0135559,0.911361,0.766251,0.742422,0.510665,0.491068,0.726254,0.132106,0.998644,0.897683,0.0334857,0.185718,0.74017,0.0736308,0.899495,0.618295,0.19457,0.270034,0.733714,0.0777777,0.328515,0.148564,0.0270168,0.450429,0.25194,0.553347,0.514522,0.411005,0.450698,0.897931,0.482877,0.693111,0.569108,0.35459,0.0204042,0.939955,0.213224,0.625478,0.576819,0.252797,0.364688,0.497954,0.87026,0.418401,0.0851912,0.545281,0.790788,0.633298,0.420087,0.910448,0.757528,0.392455,0.0886319,0.24671,0.607227,0.448274,0.409173,0.671432,0.237307,0.271338,0.409766,0.785085,0.455578,0.577647,0.539312,0.412666,0.467252,0.0406827,0.741862,0.127998,0.739006,0.749469,|0.103731,0.182219,0.675834,0.381128,0.235445,0.543704,0.225801,0.641135,0.845109,0.730651,0.0070371,0.59751,0.511022,0.307716,0.86382,0.737925,0.52573,0.0793967,0.616583,0.0534407,0.774155,0.998236,0.482001,0.0407628,0.335351,0.412352,0.438948,0.720773,0.850351,0.932394,0.379392,0.986466,0.763962,0.983078,0.957022,0.54778,0.213388,0.820241,0.922225,0.396084,0.0047105,0.196285,0.478303,0.435388,0.220342,0.489038,0.234076,0.688338,0.633077,0.250695,0.00441754,0.457869,0.583174,0.38636,0.548511,0.822292,0.891998,0.898602,0.47364,0.846377,0.59917,0.671692,0.40642,0.125855,0.736141,0.110459,0.90237,0.0673931,0.697515,0.0191663,0.38787,0.478489,0.94986,0.504482,0.970349,0.165464,0.696732,0.375627,0.435631,0.145521,0.0652018,0.420947,0.920856,0.0605588,0.550301,0.75926,0.655887,0.0736437,0.52153,0.319983,0.199834,0.654334,0.606242,0.822708,0.72496,0.569755,0.244176,0.875463,0.154966,0.945241,0.433083,0.506672,0.783003,0.00485998,0.817889,0.0529881,0.760367,0.896206,0.299656,0.559833,0.168066,0.763485,0.711653,0.536704,0.235525,0.207936,0.65438,0.0969502,0.348326,0.70801,0.840588,0.761956,0.578412,0.0436988,0.637483,0.315207,0.685715,0.546019,0.0825475,0.436951,0.714404,0.557002,0.77982,0.684237,0.427734,0.933857,0.840533,0.42678,0.0439485,0.946818,0.280716,0.36463,0.0989959,0.578666,0.311378,0.352037,0.866823,0.287187,0.607516,0.420222,0.550198,0.726549,0.128457,0.451229,0.86862,0.81904,0.000601828,0.260429,0.796661,0.131392,0.538032,0.168318,0.911363,0.612998,0.495295,0.79913,0.489072,0.736978,0.90254,0.343195,0.535226,0.518113,0.627408,0.0799527,0.129902,0.475779,0.328172,0.590195,0.570949,0.644545,0.372839,0.146917,0.973304,0.0979661,0.239863,0.0544405,0.726464,0.392399,0.373547,0.960797,0.101868,0.886791,0.370131,0.317374,0.166023,0.937854,0.619486,0.89885,0.767742,0.109203,0.365025,0.747403,0.241045,0.48857,0.253843,0.0728943,0.0154101,0.851063,0.517173,0.904712,0.16448,0.297876,0.268897,0.85527,0.896764,0.538402,0.961789,0.622832,0.192027,0.835629,0.010852,0.13516,0.952926,0.268231,0.386226,0.414551,0.430329,0.690664,0.994956,0.929896,0.743251,0.40849,0.739805,0.767979,0.386976,0.935942,0.775174,0.135214,0.396992,0.63565,0.8247,0.455947,0.520956,0.176131,0.569938,0.427896,0.903311,0.852202,0.689704,0.967489,0.294749,0.918395,0.352413,0.454311,0.707672,0.738099,0.95643,0.913891,0.529961,0.502757,0.944387,0.332499,0.286099,0.487292,0.180979,0.657632,0.0543803,0.291137,0.629345,0.33072,0.179572,0.338316,0.884377,0.560092,0.537768,0.550723,0.914949,0.289867,0.590538,0.373684,0.0771003,0.182379,0.138698,0.876348,0.530592,0.690798,0.96672,0.13662,0.539973,0.809606,0.712999,0.839079,0.501249,0.201489,0.548294,0.812444,0.71389,0.152728,0.159426,0.747713,0.604236,0.504014,0.591587,0.15313,0.604813,0.714416,0.719586,0.709817,0.946257,0.221072,0.862967,0.445444,0.35602,0.539199,0.112235,0.323876,0.594812,0.423419,0.857839,0.912555,0.985698,0.351798,0.763694,0.909812,0.424214,0.707897,0.123057,0.835242,0.485383,0.712681,0.953135,0.313882,0.663984,0.127809,0.808177,0.723171,0.659919,0.999706,0.232843,0.449251,0.348006,0.244781,0.0370573,0.0602609,0.930564,0.0719429,0.888644,0.173739,0.634404,0.688166,0.830886,0.124948,0.569051,0.125547,0.496794,0.783933,0.708846,0.547507,0.0073483,0.415734,0.123053,0.816136,0.957327,0.155696,0.312906,0.918235,0.967927,0.0905755,0.475545,0.791209,0.162465,0.946106,0.349065,0.239249,0.80446,0.639778,0.196473,0.360885,0.897353,0.517535,0.407668,0.535964,0.208181,0.655529,0.340022,0.64911,0.0383877,0.788589,0.955305,0.916767,0.988964,0.0383613,0.0396385,0.900765,0.64741,0.456541,0.708884,0.0142574,0.928442,0.853352,0.441607,0.911565,0.00573879,0.427827,0.657486,0.729381,0.956266,0.327609,0.642586,0.698458,0.849134,0.478907,0.474797,0.889015,0.194099,0.950684,0.0906065,0.723157,0.508282,0.0054267,0.888054,0.690825,0.510321,0.84016,0.850511,0.474694,0.566643,0.742521,0.72335,0.582709,0.957176,0.66448,0.0684409,0.327126,0.421723,0.542506,0.871652,0.239819,0.328955,0.778444,0.789028,0.959999,0.843635,0.539935,0.834362,0.576614,0.378332,0.438204,0.469684,0.704152,0.776936,0.87729,0.804999,0.331987,0.343775,0.179883,0.538871,0.0508879,0.718019,0.614158,0.0674495,0.445862,0.22805,0.487732,0.18532,0.13453,0.868133,0.342331,0.426124,0.321183,0.379991,0.9184,0.936506,0.340967,0.334307,0.444415,0.76905,0.409788,0.744568,0.921462,0.44827,0.83086,0.728949,0.00435418,0.841271,0.38057,0.934341,0.860914,0.162591,0.496546,0.192213,0.307484,0.962103,0.194571,0.38435,0.280391,0.78871,0.559171,0.0467662,0.731148,0.0170962,0.494058,0.0199453,0.0698312,0.544314,0.162043,0.557745,0.217398,0.162498,0.783883,0.329551,0.877219,0.745542,0.00190365,0.475669,0.0958081,0.612397,0.289124,0.344128,0.48209,0.433685,0.910243,0.0880554,0.946514,0.657065,0.00780153,0.547392,0.142444,0.467415,0.382655,0.744164,0.97909,0.542771,0.591351,0.926835,0.741004,0.698325,0.237986,0.996979,0.519712,0.437283,0.406004,0.522328,0.549073,0.505119,0.0600601,0.766471,0.112408,0.26063,0.922079,0.32605,0.109289,0.332267,0.408261,0.832111,0.0541275,0.330247,0.25645,0.250584,0.42598,0.465775,0.957034,0.689651,0.161698,0.0495112,0.299898,0.977117,0.959057,0.231187,0.258822,0.631882,0.419654,0.0938839,0.654332,0.599961,0.287344,0.422692,0.645592,0.458051,0.304925,0.741746,0.106461,0.361858,0.961883,0.586156,0.626636,0.0322844,0.606491,0.554586,0.547775,0.536451,0.112041,0.105211,0.499908,0.240516,0.727124,0.0663924,0.80001,0.148725,0.337223,0.43738,0.494231,0.114983,0.682622,0.836373,0.875591,0.104482,0.306847,0.442663,0.601433,0.984264,0.13369,0.359535,0.542596,0.613009,0.569762,0.874794,0.0919569,0.41173,0.992844,0.250032,0.505266,0.954749,0.201361,0.227137,0.142393,0.668471,0.922977,0.114243,0.733503,0.675482,0.372029,0.258871,0.621415,0.491627,0.117813,0.727399,0.2972,0.07081,0.915012,0.254764,0.550391,0.366915,0.78692,0.50319,0.388418,0.154239,0.105047,0.888668,0.749479,0.287228,0.24378,0.0632234,0.34576,0.078228,0.165713,0.193895,0.522208,0.27722,0.866568,0.980548,0.619884,0.631948,0.833677,0.206643,0.725002,0.639544,0.353804,0.557826,0.361683,0.750745,0.804906,0.776476,0.531194,0.191786,0.689682,0.0692593,0.455525,0.795974,0.0598947,0.913606,0.217213,0.767273,0.919306,0.648159,0.290767,0.474896,0.407029,0.886622,0.047924,0.766039,0.776231,0.0346677,0.386225,0.581644,0.537752,0.790369,0.80474,0.517917,0.129115,0.513995,0.225837,0.406285,0.953321,0.470216,0.13038,0.0150774,0.290888,0.980569,0.288719,0.0275278,0.545116,0.752536,0.1134,0.105994,0.710126,0.930411,0.668852,0.15114,0.0523066,0.171769,0.584825,0.244084,0.573057,0.846524,0.802537,0.0764852,0.563198,0.675994,0.01335,0.844786,0.502996,0.163098,0.500382,0.260227,0.482623,0.1593,0.978059,0.520836,0.295916,0.723363,0.366348,0.743171,0.339641,0.793894,0.926205,0.708175,0.228769,0.683823,0.251262,0.825254,0.825633,0.866693,0.454911,0.702964,0.879892,0.117871,0.825396,0.203328,0.717812,0.855193,0.195428,0.287228,0.919074,0.712073,0.0695036,0.678994,0.918531,0.952198,0.503523,0.924243,0.314257,0.196755,0.106965,0.857981,0.411751,0.339716,0.863774,0.0135849,0.92467,0.336269,0.396177,0.808959,0.63777,0.223971,0.450077,0.319512,0.769691,0.0833672,0.699712,0.946558,0.7144,0.415162,0.163339,0.249878,0.72436,0.21865,0.921542,0.778713,0.388059,0.39091,0.736587,0.834418,0.743701,0.613971,0.724804,0.79296,0.20539,0.82977,0.137741,0.215854,0.373116,0.485363,0.266395,0.484208,0.0572398,0.42321,0.567722,0.542377,0.20038,0.837114,0.639473,0.693526,0.504989,0.119161,0.514576,0.616967,0.585573,0.77404,0.925049,0.124034,0.376002,0.0209056,0.770377,0.908436,0.389466,0.686799,0.57772,0.704901,0.205499,0.430863,0.937031,0.548753,0.591382,0.465733,0.391064,0.797716,0.174486,0.301603,0.920432,0.833438,0.480138,0.912513,0.673558,0.118016,0.649376,0.707507,0.791883,0.265367,0.923122,0.85983,0.988083,0.77327,0.861835,0.178784,0.359753,0.846648,0.66202,0.773856,0.282202,0.845243,0.911206,0.153771,0.879757,0.0873017,0.831168,0.396722,0.19082,0.232631,0.508567,0.0303914,0.414093,0.96991,0.307821,0.855932,0.0971106,0.689168,0.76296,0.808653,0.156203,0.70586,0.0300862,0.090452,0.825028,0.762659,0.412771,0.973468,0.72399,0.933755,0.846723,0.524644,0.457633,0.369488,0.659726,0.400829,0.0115692,0.975014,0.227201,0.522102,0.566627,0.12009,0.0783385,0.388051,0.182997,0.0794162,0.447491,0.190479,0.727259,0.362849,0.634819,0.488855,0.845801,0.479481,0.0625094,0.510448,0.357246,0.506138,0.21465,0.62334,0.632699,0.802637,0.394354,0.203152,0.163585,0.495234,0.075815,0.479095,0.367489,0.557199,0.541717,0.300352,0.312044,0.8736,0.543567,0.477709,0.884962,0.303587,0.632809,0.674865,0.449784,0.951687,0.769648,0.506296,0.254646,0.723775,0.0931477,0.0137834,0.807814,0.0405672,0.947464,0.388559,0.366104,0.22206,0.314327,0.754032,0.111371,0.326337,0.472564,0.149216,0.712646,0.170387,0.623378,0.805924,0.158756,0.581281,0.97608,0.203287,0.0752853,0.789357,0.862417,0.571868,0.662885,0.290531,0.100521,0.798524,0.576534,0.489973,0.471178,0.458782,0.626899,0.473043,0.17891,0.768803,0.0537196,0.229871,0.456482,0.420405,0.563064,0.792073,0.587389,|0.278504,0.637406,0.89405,0.490045,0.403572,0.792957,0.363747,0.569359,0.307632,0.275707,0.643964,0.358292,0.00318891,0.302725,0.820765,0.53367,0.16399,0.339478,0.918944,0.179694,0.16798,0.945647,0.715152,0.614837,0.937475,0.0932208,0.295928,0.605243,0.973494,0.0530615,0.282616,0.508421,0.937105,0.571107,0.21753,0.707979,0.537553,0.438725,0.230754,0.850056,0.0264992,0.526735,0.0672843,0.255281,0.846222,0.28956,0.228974,0.615519,0.78503,0.519499,0.787017,0.535255,0.559461,0.177987,0.658108,0.840406,0.924411,0.65815,0.794931,0.0997337,0.921636,0.67456,0.450763,0.897422,0.316029,0.803471,0.667364,0.981481,0.654518,0.967379,0.372563,0.308362,0.325587,0.700052,0.712899,0.113554,0.893982,0.271589,0.0929679,0.910116,0.314798,0.662429,0.460055,0.476621,0.319766,0.75928,0.721503,0.78301,0.493003,0.108164,0.160788,0.475054,0.448591,0.994196,0.10365,0.397414,0.946772,0.718387,0.289405,0.956717,0.857079,0.933624,0.928499,0.205986,0.978858,0.595306,0.563299,0.532837,0.279063,0.535125,0.719764,0.642601,0.282484,0.686269,0.216807,0.911219,0.101921,0.762597,0.530823,0.792037,0.104833,0.681014,0.392925,0.973508,0.639225,0.584586,0.637025,0.861685,0.297989,0.590936,0.170421,0.768058,0.788138,0.233762,0.923966,0.126075,0.455357,0.363585,0.725475,0.248575,0.456955,0.792104,0.966959,0.435576,0.305109,0.76154,0.94361,0.623657,0.847612,0.718599,0.906148,0.734046,0.922402,0.144992,0.209136,0.423439,0.630963,0.421018,0.764779,0.183972,0.863995,0.121745,0.394463,0.0437074,0.839142,0.680127,0.504335,0.166714,0.402526,0.86441,0.854267,0.410841,0.163646,0.165737,0.75628,0.261651,0.200024,0.921262,0.529186,0.0860268,0.414953,0.727286,0.467453,0.731148,0.76556,0.285045,0.997129,0.816103,0.484639,0.246629,0.163901,0.0284502,0.994874,0.663454,0.418841,0.748577,0.0615205,0.990861,0.873569,0.410976,0.99661,0.670292,0.0655243,0.171956,0.767587,0.832929,0.469661,0.454207,0.18378,0.506281,0.676384,0.463346,0.154828,0.0680233,0.192197,0.173229,0.239893,0.452678,0.377779,0.0270009,0.532832,0.810914,0.978737,0.182739,0.0261912,0.847253,0.9793,0.650468,0.366525,0.203064,0.269118,0.363946,0.988381,0.739388,0.175437,0.587401,0.979376,0.137428,0.562665,0.608715,0.442159,0.178193,0.239778,0.0651782,0.299835,0.830367,0.327785,0.170466,0.415314,0.809064,0.897457,0.389677,0.110844,0.607291,0.230375,0.152494,0.32479,0.713865,0.701303,0.672403,0.322041,0.713732,0.19548,0.417131,0.671882,0.930664,0.206543,0.964793,0.235075,0.741372,0.612662,0.169744,0.575596,0.032222,0.342262,0.530959,0.469311,0.039521,0.984328,0.0916461,0.724834,0.120073,0.879416,0.853569,0.551007,0.493419,0.093697,0.792401,0.241461,0.17356,0.262245,0.719991,0.153564,0.831522,0.969036,0.855958,0.487876,0.675114,0.855415,0.589621,0.752595,0.333768,0.825713,0.73907,0.616898,0.340637,0.541705,0.149198,0.583193,0.0217511,0.399344,0.222087,0.348093,0.929205,0.704446,0.786731,0.8459,0.413383,0.252169,0.271369,0.315436,0.533584,0.00503653,0.089446,0.265229,0.944448,0.225614,0.95133,0.457044,0.76737,0.218047,0.293278,0.908922,0.465437,0.599385,0.566528,0.00777227,0.597456,0.253386,0.150189,0.982402,0.306927,0.776717,0.984892,0.294354,0.764482,0.54398,0.644265,0.17979,0.84968,0.580151,0.416754,0.0521811,0.755357,0.627592,0.755151,0.138734,0.602862,0.721955,0.614706,0.872863,0.267757,0.713292,0.7211,0.936176,0.705931,0.255405,0.128945,0.26017,0.493024,0.742348,0.164913,0.805272,0.772092,0.0199547,0.0480616,0.131404,0.438622,0.298768,0.417844,0.631303,0.363185,0.908996,0.90073,0.0223776,0.0567073,0.467297,0.256769,0.110336,0.453493,0.0986053,0.522131,0.0510576,0.522727,0.557328,0.223131,0.358851,0.586145,0.538986,0.170601,0.493848,0.0768167,0.733728,0.610464,0.473083,0.191471,0.585547,0.686961,0.707154,0.797591,0.788879,0.568111,0.957297,0.785331,0.769562,0.000718176,0.284725,0.208911,0.443599,0.201155,0.0457957,0.13534,0.285066,0.646705,0.348639,0.466,0.868995,0.858102,0.434319,0.308102,0.187561,0.54762,0.888584,0.890894,0.191737,0.690262,0.951874,0.568342,0.0124903,0.936665,0.755316,0.850039,0.507435,0.779521,0.480158,0.00709099,0.64668,0.465034,0.569911,0.323719,0.040363,0.272293,0.745763,0.833838,0.132646,0.50578,0.470429,0.284199,0.165466,0.704104,0.115192,0.843213,0.138856,0.896852,0.749141,0.469208,0.34981,0.234899,0.168414,0.841254,0.409995,0.308951,0.0076496,0.840254,0.846608,0.667073,0.650091,0.877573,0.573709,0.664163,0.541538,0.222645,0.224093,0.369787,0.38591,0.171982,0.337494,0.084568,0.476143,0.785594,0.941757,0.199099,0.359987,0.769875,0.589588,0.637765,0.427612,0.414559,0.532726,0.0669313,0.587423,0.727285,0.698578,0.284079,0.540888,0.323178,0.275289,0.458971,0.636645,0.774366,0.0202358,0.917829,0.997733,0.390336,0.347485,0.00328952,0.680096,0.517495,0.166641,0.59481,0.766767,0.0792876,0.0413759,0.500212,0.586881,0.898469,0.883038,0.532508,0.829953,0.0692632,0.701901,0.481768,0.154797,0.77762,0.535089,0.688962,0.53049,0.473676,0.361872,0.959309,0.606859,0.264806,0.948992,0.996639,0.122488,0.321783,0.810567,0.333037,0.375275,0.432994,0.997608,0.375343,0.326984,0.785618,0.658594,0.641595,0.932676,0.59047,0.784494,0.587068,0.893769,0.80621,0.448361,0.063799,0.172908,0.91131,0.14233,0.0241686,0.642012,0.61389,0.938034,0.252826,0.710429,0.467696,0.156242,0.759568,0.983196,0.72001,0.850091,0.110915,0.792379,0.408339,0.928501,0.779665,0.712422,0.171614,0.721497,0.314601,0.786991,0.270093,0.454083,0.238548,0.111721,0.0470833,0.999146,0.327037,0.346274,0.454132,0.342652,0.532326,0.181815,0.456767,0.791174,0.785273,0.156562,0.0685515,0.483175,0.0301577,0.241638,0.747473,0.521843,0.813028,0.20196,0.826468,0.166971,0.287063,0.137917,0.603025,0.715434,0.92426,0.00117308,0.119476,0.0277658,0.0923988,0.286543,0.930606,0.556588,0.451404,0.123778,0.561675,0.539282,0.689874,0.318225,0.451436,0.642484,0.572177,0.581311,0.431753,0.665018,0.815552,0.664015,0.429565,0.271215,0.734572,0.198152,0.479644,0.771582,0.533813,0.775314,0.0578073,0.352652,0.395636,0.195965,0.67589,0.252141,0.493738,0.564967,0.176926,0.344833,0.032796,0.0225785,0.828211,0.705697,0.523918,0.578581,0.641013,0.152723,0.414111,0.501988,0.781732,0.777139,0.178861,0.757405,0.325809,0.0501373,0.241712,0.0859921,0.829427,0.0163044,0.510423,0.268872,0.409937,0.188965,0.769323,0.132507,0.469787,0.659135,0.144359,0.314896,0.746908,0.67464,0.536849,0.914421,0.917107,0.971877,0.255703,0.491235,0.524405,0.733208,0.734838,0.544677,0.697732,0.619987,0.0575283,0.354773,0.548264,0.109659,0.263527,0.318966,0.0508464,0.434452,0.543036,0.643157,0.639508,0.452132,0.582665,0.114797,0.184934,0.729809,0.750573,0.254891,0.349956,0.332281,0.539406,0.512542,0.792017,0.887279,0.0623549,0.393063,0.223921,0.224826,0.383433,0.281093,0.164347,0.0954871,0.0852402,0.315755,0.793345,0.531918,0.167718,0.199722,0.0221751,0.938002,0.846938,0.925308,0.284331,0.157767,0.821745,0.131513,0.724953,0.206339,0.578271,0.0211044,0.8539,0.585238,0.334774,0.173967,0.444341,0.993383,0.523502,0.880303,0.0231628,0.856027,0.00176883,0.733314,0.497788,0.465639,0.901212,0.710709,0.319091,0.764249,0.731983,0.125769,0.322711,0.514248,0.63353,0.999638,0.4885,0.601181,0.128575,0.852167,0.352216,0.87748,0.529033,0.868016,0.217658,0.454814,0.975879,0.0634579,0.691229,0.943418,0.227735,0.129666,0.800048,0.644751,0.54932,0.534962,0.553391,0.899429,0.796144,0.0231795,0.313817,0.015859,0.813967,0.167326,0.426353,0.650385,0.219275,0.554121,0.449931,0.656864,0.813686,0.0977368,0.134556,0.723386,0.354475,0.00876135,0.867414,0.693449,0.61625,0.0143882,0.531886,0.868446,0.646018,0.01187,0.46136,0.840545,0.205309,0.57893,0.726727,0.761054,0.898662,0.703927,0.298687,0.589141,0.0888377,0.0899964,0.522347,0.975564,0.870527,0.175738,0.0653714,0.779693,0.60685,0.0885838,0.0103179,0.936799,0.739509,0.0764909,0.0737692,0.0530056,0.112476,0.731334,0.581705,0.514958,0.184768,0.536169,0.807322,0.296613,0.498776,0.582471,0.247191,0.462802,0.12812,0.409588,0.70443,0.847413,0.961599,0.387119,0.370524,0.204143,0.372761,0.420025,0.874539,0.93164,0.124472,0.0260066,0.738088,0.900315,0.400491,0.406397,0.363661,0.134791,0.241282,0.645736,0.971219,0.680286,0.388259,0.284274,0.71758,0.174239,0.75328,0.160572,0.643571,0.372865,0.41597,0.320522,0.208444,0.981698,0.980047,0.510703,0.184842,0.915183,0.901619,0.395225,0.52747,0.823993,0.523331,0.674072,0.891367,0.509426,0.864828,0.444132,0.0401852,0.383911,0.176109,0.738921,0.22895,0.388875,0.398118,0.472966,0.279905,0.0852664,0.816836,0.623097,0.751878,0.681665,0.241697,0.264474,0.988444,0.965142,0.455765,0.465081,0.0817249,0.137466,0.422547,0.638005,0.836081,0.602914,0.491487,0.587424,0.0306386,0.0375625,0.794506,0.882134,0.827748,0.11249,0.158275,0.709503,0.362615,0.819553,0.18523,0.113977,0.777519,0.166841,0.826329,0.99862,0.769726,0.0581375,0.780841,0.265951,0.506641,0.523141,0.173724,0.24901,0.458299,0.198653,0.484577,0.0738694,0.595253,0.930954,0.177815,0.718102,0.964678,0.81836,0.366966,0.664147,0.784696,0.681794,0.685649,0.446468,0.862177,0.293096,0.142696,0.891502,0.0911195,0.0621108,0.210494,0.304577,0.983513,0.265144,0.199676,0.702044,0.556867,0.723406,0.407687,0.963112,0.955773,0.266079,0.630792,|0.470379,0.547142,0.34661,0.805498,0.700228,0.64564,0.518999,0.188236,0.823758,0.12561,0.0332402,0.498484,0.239306,0.258767,0.382486,0.653185,0.402679,0.605554,0.197165,0.579306,0.346627,0.246301,0.644004,0.789072,0.59511,0.32798,0.988845,0.0151138,0.333371,0.700339,0.481982,0.0266248,0.644646,0.256347,0.312861,0.635806,0.97004,0.194827,0.37636,0.387277,0.968809,0.482217,0.835489,0.5807,0.851736,0.33649,0.810102,0.557765,0.984492,0.176743,0.0926139,0.281862,0.978627,0.482987,0.805331,0.268051,0.373877,0.556747,0.981095,0.828005,0.883082,0.428885,0.646527,0.854998,0.182931,0.634063,0.264262,0.892048,0.833032,0.811374,0.529329,0.77877,0.701396,0.133137,0.972428,0.217475,0.647539,0.849317,0.0765793,0.574959,0.646134,0.61195,0.738112,0.628783,0.625683,0.328126,0.931293,0.503768,0.439457,0.684542,0.666301,0.504301,0.532749,0.455493,0.831657,0.28827,0.0358294,0.179323,0.399232,0.0115992,0.960397,0.77916,0.0315692,0.307005,0.912231,0.840585,0.838983,0.961473,0.910686,0.976859,0.0367232,0.199024,0.358379,0.976556,0.538456,0.111714,0.176472,0.395007,0.646702,0.618195,0.558403,0.35028,0.3449,0.605648,0.795049,0.116558,0.389209,0.67274,0.355459,0.967194,0.558463,0.00721753,0.334399,0.522738,0.303124,0.696252,0.270663,0.342533,0.828065,0.301174,0.132915,0.10429,0.709031,0.913737,0.317295,0.711983,0.395968,0.265062,0.584915,0.0532438,0.635125,0.724283,0.80007,0.114213,0.585685,0.356301,0.909576,0.890104,0.428796,0.923817,0.543203,0.991762,0.962886,0.685811,0.626384,0.193817,0.182564,0.167324,0.807938,0.054885,0.848045,0.219684,0.76631,0.415348,0.176651,0.350152,0.201823,0.466321,0.488288,0.908118,0.708634,0.204311,0.119462,0.610293,0.515091,0.229073,0.235066,0.450994,0.368695,0.333527,0.783449,0.115271,0.405119,0.637194,0.435297,0.471668,0.303311,0.309757,0.463534,0.442071,0.60294,0.958843,0.337483,0.275975,0.93319,0.513318,0.29514,0.0175,0.782354,0.156756,0.694725,0.388109,0.284364,0.960779,0.172858,0.914286,0.514846,0.509003,0.0491167,0.312589,0.806976,0.9705,0.279057,0.768043,0.422238,0.92605,0.895164,0.573574,0.127027,0.485628,0.742713,0.466897,0.846738,0.400729,0.847989,0.764756,0.666855,0.000782073,0.475772,0.829183,0.904939,0.0539302,0.0288687,0.178082,0.210845,0.812156,0.9782,0.269046,0.0207502,0.143975,0.721843,0.453331,0.780053,0.0818291,0.776112,0.239574,0.337752,0.682555,0.18639,0.717452,0.397024,0.647981,0.222614,0.124631,0.73935,0.473384,0.0525976,0.83924,0.934934,0.484604,0.443503,0.341366,0.551241,0.18362,0.231083,0.900154,0.847827,0.318847,0.316761,0.476829,0.0516197,0.00230652,0.132662,0.701278,0.385225,0.348796,0.805951,0.629815,0.814883,0.722365,0.519191,0.581585,0.618104,0.24488,0.530901,0.104161,0.568913,0.0240446,0.297867,0.076307,0.563051,0.825599,0.911418,0.370448,0.268464,0.197806,0.110208,0.234949,0.503869,0.98827,0.699429,0.724163,0.49796,0.300812,0.673756,0.314484,0.659603,0.179546,0.948553,0.377013,0.338457,0.850414,0.0917959,0.211964,0.896734,0.861876,0.830306,0.973519,0.641296,0.440845,0.783613,0.856332,0.925988,0.67242,0.170807,0.547186,0.54849,0.203716,0.483899,0.0475669,0.979106,0.50601,0.283378,0.973828,0.222174,0.794184,0.925023,0.285304,0.924239,0.0433797,0.457875,0.723001,0.70291,0.600588,0.239895,0.875815,0.443451,0.499236,0.234114,0.833463,0.4169,0.174239,0.105136,0.468981,0.0399633,0.737521,0.0166121,0.130139,0.446738,0.250212,0.0662649,0.405146,0.522601,0.272128,0.834234,0.308434,0.75139,0.790849,0.553973,0.424862,0.751938,0.819977,0.552959,0.01555,0.00762671,0.21516,0.669916,0.865093,0.199107,0.769332,0.774305,0.956067,0.572445,0.486829,0.734102,0.62279,0.699449,0.161719,0.471718,0.974333,0.149896,0.00537354,0.668994,0.379637,0.301786,0.460479,0.416522,0.696874,0.607204,0.340864,0.0634931,0.497865,0.150531,0.608097,0.35621,0.745032,0.784424,0.00818759,0.999531,0.557841,0.142011,0.213887,0.0230412,0.820942,0.692796,0.705086,0.0615612,0.973107,0.922897,0.181202,0.801423,0.412496,0.366755,0.949778,0.850982,0.970174,0.52268,0.888481,0.796616,0.445254,0.759221,0.5098,0.217332,0.819423,0.335748,0.803505,0.241508,0.442203,0.0081296,0.481095,0.16616,0.342857,0.312459,0.146757,0.800914,0.539837,0.206111,0.877216,0.414035,0.859285,0.460687,0.24071,0.350089,0.344694,0.646341,0.219472,0.439172,0.465896,0.497978,0.511323,0.788576,0.900885,0.33069,0.240006,0.419307,0.740913,0.662506,0.55124,0.849786,0.741832,0.216088,0.803249,0.0800424,0.0877495,0.998662,0.902752,0.509235,0.518603,0.622467,0.00831378,0.573105,0.851076,0.340068,0.454371,0.603821,0.456727,0.625065,0.402424,0.691137,0.634969,0.702378,0.833137,0.899721,0.630602,0.0862016,0.592529,0.355477,0.934878,0.337026,0.275034,0.376229,0.206557,0.631957,0.713976,0.857137,0.971396,0.793256,0.986009,0.0352973,0.310081,0.993628,0.325872,0.53997,0.402808,0.460733,0.802483,0.515233,0.601805,0.379355,0.628476,0.821295,0.767345,0.962216,0.184129,0.781062,0.42851,0.292365,0.700258,0.800655,0.717109,0.379701,0.188352,0.771854,0.793679,0.529211,0.179278,0.79707,0.77896,0.425413,0.705757,0.548522,0.0876956,0.0740175,0.252209,0.493401,0.991854,0.61661,0.62199,0.937444,0.724631,0.65633,0.546646,0.184153,0.0552279,0.41023,0.0833762,0.0541239,0.669759,0.609503,0.306113,0.336507,0.204568,0.61736,0.022674,0.202797,0.481479,0.15361,0.71525,0.242582,0.106518,0.92868,0.474819,0.892081,0.915951,0.426237,0.354382,0.531848,0.22197,0.277117,0.886589,0.709757,0.556659,0.86077,0.789913,0.109234,0.82424,0.0957072,0.242427,0.903125,0.797559,0.646029,0.760448,0.965509,0.0661684,0.0443944,0.916518,0.871143,0.752713,0.155098,0.737382,0.776565,0.548961,0.220782,0.39446,0.822285,0.394249,0.374956,0.801712,0.0684457,0.929512,0.051458,0.900105,0.759595,0.258281,0.353935,0.0546907,0.723268,0.111908,0.997167,0.968354,0.778052,0.880378,0.809951,0.310582,0.500181,0.830441,0.567145,0.120617,0.637292,0.690976,0.23828,0.103398,0.33972,0.545687,0.221786,0.41691,0.942004,0.187871,0.786654,0.431228,0.606818,0.290154,0.777914,0.431702,0.0641419,0.994639,0.0179211,0.217457,0.707062,0.414266,0.638093,0.817574,0.121622,0.762249,0.832848,0.420161,0.563832,0.865546,0.747409,0.217848,0.676043,0.128242,0.852859,0.517129,0.921037,0.453082,0.613374,0.30231,0.748315,0.523892,0.0962011,0.412384,0.255056,0.280126,0.112754,0.48797,0.698534,0.522704,0.391232,0.74284,0.701414,0.750335,0.365443,0.860441,0.960666,0.884957,0.576722,0.921809,0.0789518,0.135371,0.689514,0.456925,0.45164,0.572548,0.620671,0.549816,0.150449,0.059345,0.909332,0.290712,0.948987,0.75706,0.923527,0.501943,0.355851,0.0947921,0.68212,0.136031,0.123812,0.972794,0.538859,0.490872,0.17924,0.454005,0.354865,0.68331,0.766117,0.445085,0.339952,0.595831,0.342813,0.877786,0.268717,0.600522,0.534703,0.0759428,0.203514,0.190919,0.163869,0.962662,0.16276,0.758476,0.821167,0.538086,0.128597,0.297757,0.617295,0.966787,0.718762,0.0648848,0.882287,0.846364,0.0098902,0.161414,0.814853,0.929576,0.824903,0.0590222,0.861157,0.536581,0.389427,0.466902,0.740589,0.638464,0.28265,0.997138,0.963883,0.700761,0.365712,0.781477,0.721645,0.662369,0.544058,0.707857,0.407278,0.20606,0.792851,0.631536,0.595983,0.240894,0.758863,0.728709,0.175947,0.664084,0.714276,0.656719,0.164462,0.161079,0.981775,0.152522,0.698749,0.894333,0.92211,0.897499,0.866489,0.488545,0.275413,0.33267,0.452687,0.307013,0.956421,0.773673,0.133141,0.870316,0.892883,0.544235,0.627757,0.623425,0.293815,0.751198,0.954939,0.788577,0.149396,0.304159,0.618079,0.920807,0.532688,0.29048,0.98049,0.320948,0.844686,0.866475,0.285147,0.382087,0.525195,0.814721,0.932432,0.514041,0.0159067,0.260591,0.846112,0.328584,0.898235,0.223314,0.783524,0.33688,0.637369,0.870702,0.49828,0.895583,0.706066,0.481378,0.826076,0.829513,0.999727,0.922016,0.897211,0.0178846,0.488639,0.674986,0.866426,0.351597,0.935508,0.692693,0.618921,0.00539696,0.511145,0.0347758,0.799469,0.157265,0.782774,0.446556,0.094624,0.0784109,0.721295,0.00517952,0.663647,0.146256,0.879299,0.298579,0.899639,0.969113,0.425593,0.165366,0.535674,0.652643,0.458589,0.965105,0.32686,0.0294112,0.391359,0.501433,0.825469,0.143957,0.968137,0.131523,0.302459,0.47918,0.602457,0.483052,0.402033,0.0410203,0.594069,0.0355469,0.324564,0.927137,0.694736,0.807362,0.218093,0.85645,0.556678,0.315099,0.518729,0.679175,0.966025,0.422738,0.0831969,0.834458,0.401088,0.165509,0.98794,0.810482,0.425986,0.397842,0.110241,0.00773329,0.765721,0.514333,0.0113382,0.70275,0.340288,0.373813,0.701231,0.644394,0.191561,0.0782853,0.970084,0.212553,0.896589,0.295009,0.572613,0.296871,0.294364,0.725531,0.700913,0.975026,0.6211,0.834666,0.334906,0.642324,0.769939,0.419633,0.525245,0.907863,0.730481,0.0745578,0.587351,0.779073,0.561752,0.802842,0.267095,0.57331,0.523269,0.0118845,0.56482,0.0692657,0.372389,0.813534,0.731198,0.187926,0.0720097,0.12059,0.293621,0.53487,0.538011,0.226728,0.831454,0.203114,0.681749,0.682384,0.829792,0.955117,0.877939,0.551194,0.352408,0.974626,0.936838,0.413765,0.949736,0.107712,0.84417,0.534975,0.954769,0.013744,0.294662,0.516715,0.477816,0.105599,0.035535,0.641717,0.597096,0.864127,0.924667,0.941129,0.60735,0.951995,0.415136,0.658398,0.595736,0.345526,|0.262583,0.135178,0.559799,0.468015,0.801371,0.191676,0.250848,0.482921,0.596554,0.473721,0.357317,0.184763,0.913187,0.550037,0.761678,0.174794,0.894295,0.535201,0.833382,0.823345,0.329808,0.639287,0.777951,0.265455,0.16484,0.828227,0.771191,0.0104522,0.876749,0.352323,0.698326,0.669622,0.687504,0.788119,0.642286,0.946642,0.183506,0.724955,0.3577,0.386352,0.995518,0.958161,0.125892,0.939472,0.792779,0.166392,0.588398,0.422052,0.991681,0.40522,0.0853238,0.630228,0.0278684,0.742669,0.155513,0.920443,0.122767,0.688528,0.802348,0.820878,0.555833,0.345135,0.626003,0.05533,0.425498,0.890167,0.279875,0.196734,0.0881906,0.850538,0.0720763,0.377278,0.719543,0.404155,0.515305,0.0224161,0.185162,0.982762,0.491376,0.133022,0.433299,0.418895,0.362045,0.64657,0.750996,0.726682,0.465818,0.246932,0.220248,0.782752,0.406507,0.997974,0.259405,0.446484,0.214664,0.0435736,0.672485,0.964485,0.40214,0.23448,0.660402,0.0265979,0.467609,0.554703,0.384212,0.529122,0.177989,0.163779,0.656941,0.179394,0.692842,0.918466,0.57517,0.283758,0.451974,0.81684,0.0552272,0.563315,0.637111,0.975725,0.480537,0.317009,0.819098,0.834341,0.743289,0.45037,0.0583308,0.702402,0.600639,0.162781,0.65509,0.243152,0.343297,0.719717,0.0353232,0.957069,0.229962,0.823398,0.883205,0.476322,0.978146,0.144943,0.121158,0.181485,0.600746,0.437122,0.875346,0.639464,0.294991,0.662232,0.196848,0.325764,0.946621,0.209804,0.9736,0.990016,0.68038,0.672974,0.0428657,0.783217,0.957832,0.2314,0.98181,0.27621,0.334811,0.684658,0.176862,0.457132,0.924015,0.712816,0.470338,0.764537,0.561755,0.0236881,0.0054388,0.842303,0.960061,0.90452,0.930328,0.206551,0.237218,0.972034,0.466729,0.149534,0.85523,0.314347,0.41523,0.57958,0.174754,0.288974,0.823091,0.192587,0.125089,0.132006,0.185598,0.298469,0.63333,0.119025,0.729472,0.514049,0.125506,0.332546,0.780466,0.521453,0.304846,0.297375,0.0712642,0.775949,0.861723,0.669507,0.516693,0.0875068,0.639695,0.866192,0.702411,0.885492,0.29887,0.481784,0.35195,0.245972,0.400474,0.626169,0.563878,0.853759,0.79904,0.0951043,0.95554,0.706506,0.216095,0.313368,0.351611,0.221898,0.917303,0.873903,0.429703,0.83443,0.242598,0.521507,0.909519,0.625211,0.854671,0.0583885,0.888745,0.570694,0.812668,0.14453,0.380638,0.11863,0.651681,0.0418021,0.275419,0.124985,0.367633,0.623487,0.497047,0.309141,0.287861,0.0136288,0.558496,0.26853,0.789348,0.597304,0.345709,0.494531,0.143556,0.11935,0.201183,0.652459,0.667209,0.649611,0.080053,0.134804,0.585671,0.59337,0.520532,0.00573289,0.621937,0.867399,0.329934,0.553406,0.989615,0.466014,0.728489,0.598601,0.789725,0.33702,0.764442,0.970495,0.388949,0.720429,0.668566,0.827974,0.716544,0.412095,0.565902,0.937296,0.592702,0.220582,0.0373778,0.381054,0.215671,0.536979,0.135099,0.473944,0.405504,0.671914,0.0127074,0.399736,0.160704,0.162899,0.907473,0.172277,0.190126,0.369696,0.730143,0.361357,0.215824,0.964374,0.149786,0.677872,0.314879,0.489246,0.36434,0.507507,0.795211,0.409082,0.857413,0.620872,0.17991,0.330572,0.932313,0.0468838,0.887667,0.0606943,0.316267,0.928658,0.351918,0.38911,0.175709,0.384961,0.767945,0.0824018,0.150521,0.688564,0.74009,0.0907029,0.294778,0.328364,0.845324,0.834829,0.95245,0.898825,0.23524,0.474835,0.272701,0.0521641,0.772167,0.465493,0.275424,0.226926,0.279621,0.359251,0.357461,0.449145,0.20601,0.463655,0.357138,0.920597,0.314086,0.830718,0.490518,0.943158,0.260858,0.102384,0.387195,0.399761,0.387789,0.608665,0.399439,0.473996,0.337748,0.566157,0.770978,0.900506,0.872534,0.448439,0.168526,0.466385,0.306033,0.706068,0.291655,0.624768,0.976555,0.0491505,0.623191,0.628506,0.061458,0.382408,0.463674,0.868126,0.639706,0.0307092,0.191492,0.401132,0.778189,0.392318,0.342008,0.371586,0.558253,0.659898,0.846514,0.832067,0.936671,0.964346,0.109599,0.569307,0.349928,0.534422,0.45012,0.0182829,0.166892,0.68105,0.510966,0.979962,0.933298,0.0796829,0.18473,0.189379,0.0424578,0.228348,0.0076803,0.806767,0.715115,0.442206,0.663858,0.740092,0.00325245,0.688198,0.582761,0.316398,0.355004,0.638176,0.480528,0.644946,0.060948,0.965043,0.695655,0.910323,0.842173,0.269755,0.855139,0.311876,0.488117,0.256055,0.0452936,0.537031,0.13955,0.416092,0.811554,0.679981,0.676907,0.322723,0.739683,0.303645,0.503168,0.420796,0.644271,0.950165,0.116484,0.561497,0.27433,0.515997,0.729556,0.323816,0.289881,0.884258,0.018324,0.247543,0.105391,0.706377,0.744647,0.528197,0.150715,0.484823,0.54052,0.979251,0.248482,0.31701,0.481628,0.592231,0.68683,0.294314,0.63211,0.0641807,0.88895,0.597985,0.226952,0.907724,0.586784,0.180017,0.870663,0.563009,0.291458,0.632279,0.0648907,0.890692,0.307967,0.504035,0.0480254,0.359253,0.341504,0.0146797,0.866258,0.747427,0.019841,0.521941,0.536381,0.980023,0.245895,0.591993,0.328286,0.412543,0.683558,0.802684,0.922107,0.439051,0.291861,0.902131,0.726621,0.800655,0.0646787,0.814014,0.848836,0.542192,0.967332,0.0331254,0.763467,0.561191,0.660537,0.0551406,0.738342,0.12123,0.624437,0.656233,0.198822,0.0817232,0.764979,0.323377,0.532098,0.155848,0.687418,0.234369,0.335842,0.721036,0.0631918,0.109674,0.230753,0.320951,0.462675,0.418965,0.104587,0.606092,0.0724396,0.0847402,0.92971,0.627367,0.158835,0.291002,0.606267,0.756614,0.936736,0.481137,0.799674,0.24209,0.446273,0.607639,0.160791,0.586626,0.702014,0.771479,0.39722,0.168948,0.111777,0.0696391,0.183812,0.52949,0.471767,0.15683,0.769709,0.391618,0.400834,0.336919,0.702555,0.91479,0.528595,0.913504,0.349589,0.407352,0.894649,0.430705,0.691947,0.457078,0.0201678,0.460486,0.788429,0.873622,0.908874,0.74479,0.629244,0.524908,0.0309355,0.649326,0.227036,0.157048,0.87233,0.59621,0.524068,0.04021,0.795506,0.127671,0.277517,0.206551,0.756768,0.282762,0.021272,0.956567,0.316672,0.692944,0.319197,0.141238,0.423944,0.191842,0.0819668,0.436041,0.0902666,0.181997,0.028003,0.0700864,0.736266,0.676243,0.461457,0.180776,0.644576,0.718845,0.647864,0.447542,0.122054,0.892711,0.434942,0.390474,0.066725,0.595417,0.40704,0.124532,0.167846,0.269449,0.451681,0.130322,0.81822,0.50715,0.893717,0.649237,0.118926,0.94866,0.730748,0.686562,0.606658,0.507866,0.565337,0.197396,0.773004,0.40269,0.247818,0.132535,0.708722,0.0775571,0.700993,0.448093,0.829541,0.842904,0.951903,0.100555,0.0250032,0.419996,0.831724,0.888908,0.49292,0.478457,0.159267,0.740957,0.924538,0.596362,0.568959,0.819348,0.764291,0.113908,0.0290558,0.887625,0.834651,0.452905,0.936327,0.505424,0.146082,0.982453,0.309177,0.893792,0.973609,0.983898,0.666944,0.868253,0.44077,0.7743,0.447523,0.033209,0.105706,0.0153825,0.296427,0.503886,0.786177,0.954665,0.0403387,0.334355,0.184222,0.569623,0.193898,0.557549,0.129827,0.562281,0.711185,0.902918,0.910258,0.888133,0.850533,0.553758,0.343389,0.482782,0.625796,0.874442,0.50011,0.92896,0.635985,0.907591,0.110572,0.513553,0.273815,0.143818,0.748,0.65758,0.0496184,0.345927,0.957266,0.962502,0.424658,0.982453,0.837693,0.0622763,0.182665,0.468779,0.533383,0.275079,0.337205,0.79901,0.112339,0.516585,0.188553,0.302165,0.535907,0.0185606,0.127656,0.039936,0.891372,0.973473,0.525416,0.0462735,0.961008,0.464455,0.463689,0.0976662,0.122408,0.385059,0.425619,0.584072,0.0966158,0.476087,0.616687,0.682778,0.589261,0.79244,0.889113,0.438577,0.266153,0.770321,0.78033,0.807715,0.256458,0.744856,0.767476,0.830478,0.588211,0.368017,0.821586,0.528029,0.390024,0.405587,0.0950798,0.386507,0.860847,0.788909,0.453452,0.174256,0.395726,0.398394,0.235153,0.479272,0.577938,0.759136,0.498757,0.723294,0.813879,0.486659,0.138435,0.351951,0.546051,0.988065,0.397889,0.246336,0.570422,0.512678,0.842867,0.851821,0.656466,0.848471,0.97524,0.869817,0.583858,0.882775,0.312007,0.424369,0.79483,0.781536,0.407022,0.680401,0.442759,0.318828,0.925762,0.201194,0.480571,0.81352,0.453048,0.306717,0.559354,0.345827,0.284244,0.807979,0.757055,0.550639,0.662641,0.936946,0.135724,0.599694,0.565582,0.235523,0.663169,0.293049,0.821322,0.83586,0.51497,0.972818,0.216478,0.474754,0.683813,0.157741,0.814378,0.700957,0.831603,0.0782121,0.0856901,0.638395,0.456946,0.765988,0.378293,0.0484641,0.245325,0.226974,0.409688,0.976745,0.77632,0.190742,0.885016,0.29141,0.279979,0.6962,0.918628,0.26624,0.407261,0.299263,0.79774,0.977742,0.00197875,0.324514,0.83944,0.558371,0.980208,0.828056,0.991572,0.541001,0.986703,0.961621,0.0496393,0.245923,0.804419,0.344618,0.310805,0.432575,0.984859,0.175363,0.693412,0.640468,0.0670853,0.194645,0.911341,0.873423,0.045265,0.975595,0.704975,0.377189,0.44155,0.107602,0.626115,0.807095,0.235673,0.808828,0.708832,0.977415,0.328438,0.370819,0.0200058,0.0301391,0.0826859,0.11481,0.204077,0.93087,0.648884,0.72317,0.773719,0.190671,0.327275,0.684037,0.265435,0.280693,0.975224,0.492464,0.710376,0.381319,0.793451,0.659688,0.00379092,0.118717,0.758474,0.489451,0.0476096,0.92193,0.61419,0.654985,0.860677,0.437263,0.162755,0.885514,0.515083,0.200443,0.678158,0.409526,0.439559,0.264106,0.287354,0.128564,0.317533,0.47307,0.69748,0.865326,0.804612,0.922523,0.680053,0.338621,0.685581,0.698655,0.819687,0.182021,0.237225,0.484905,0.0821254,0.452385,0.491508,0.139865,0.0542403,0.054967,0.415656,0.142885,0.769506,0.751226,|0.461291,0.724582,0.152862,0.437554,0.730719,0.0894431,0.443469,0.05688,0.632919,0.357863,0.933851,0.872036,0.861305,0.733777,0.400983,0.0809377,0.20039,0.818919,0.855233,0.545423,0.67986,0.27012,0.483122,0.347606,0.996228,0.689884,0.489512,0.683828,0.548745,0.21782,0.501209,0.597508,0.410049,0.792296,0.0495543,0.466418,0.940165,0.765761,0.439479,0.892142,0.666569,0.417559,0.0552679,0.391982,0.903587,0.828344,0.0162126,0.640128,0.58348,0.997827,0.276987,0.114865,0.714477,0.353318,0.826295,0.460367,0.975522,0.916381,0.532273,0.162335,0.873927,0.340271,0.0244136,0.306955,0.237604,0.894066,0.262243,0.710021,0.582764,0.182435,0.406939,0.67534,0.696262,0.238441,0.580859,0.258208,0.901727,0.934633,0.438939,0.678832,0.569943,0.0313287,0.686663,0.499779,0.298581,0.448636,0.701404,0.302045,0.116557,0.411297,0.532651,0.886071,0.719969,0.787067,0.154645,0.916454,0.334093,0.876656,0.953835,0.636712,0.566806,0.812683,0.983574,0.99807,0.537808,0.923432,0.676915,0.733639,0.149454,0.661778,0.0920045,0.758752,0.692785,0.719224,0.492688,0.953784,0.544588,0.723787,0.616977,0.0307184,0.389171,0.634189,0.00339472,0.699962,0.963531,0.278669,0.745191,0.303484,0.308704,0.279639,0.0841129,0.137732,0.393202,0.0288535,0.0392742,0.163898,0.62223,0.0327845,0.874277,0.865655,0.577059,0.54153,0.255056,0.816209,0.260401,0.812355,0.0752633,0.451305,0.614799,0.257178,0.800671,0.269814,0.75721,0.59341,0.822461,0.781737,0.6076,0.363355,0.857466,0.696029,0.876043,0.241191,0.261645,0.29871,0.0675325,0.672053,0.790287,0.907453,0.878888,0.99423,0.236965,0.267952,0.526566,0.845792,0.214261,0.727772,0.899646,0.973664,0.599229,0.499418,0.933055,0.131007,0.521307,0.559881,0.0990488,0.0109559,0.447803,0.543802,0.00761008,0.140351,0.907681,0.306906,0.265555,0.228852,0.979117,0.922926,0.153554,0.367874,0.604521,0.906436,0.164537,0.851737,0.125539,0.767278,0.275534,0.914646,0.024352,0.337143,0.0473703,0.0208266,0.227045,0.0779747,0.939355,0.431284,0.92623,0.181152,0.546199,0.154786,0.0897216,0.605149,0.209536,0.753187,0.625877,0.280471,0.542014,0.0365964,0.912136,0.410003,0.559711,0.140246,0.867482,0.362315,0.515973,0.196287,0.497864,0.771848,0.979243,0.593386,0.616769,0.255518,0.0288153,0.400442,0.0452033,0.898603,0.468505,0.921031,0.0789925,0.896987,0.843993,0.886677,0.332461,0.0316649,0.865898,0.506135,0.76029,0.203559,0.00816721,0.293654,0.0178102,0.617443,0.791478,0.216708,0.429078,0.71256,0.848586,0.767343,0.166938,0.234451,0.336673,0.286606,0.144494,0.681173,0.856644,0.301264,0.835568,0.209236,0.208464,0.427488,0.499858,0.801452,0.944669,0.23357,0.530978,0.857645,0.852409,0.191334,0.80331,0.976717,0.190923,0.202104,0.530954,0.63771,0.352178,0.484562,0.784391,0.856985,0.883724,0.332783,0.783561,0.00965208,0.673948,0.70403,0.278858,0.113151,0.734287,0.945487,0.377049,0.577132,0.588553,0.162471,0.0682248,0.274863,0.35822,0.782308,0.929211,0.993819,0.333776,0.297796,0.935289,0.901329,0.426534,0.383561,0.476772,0.637706,0.301283,0.667378,0.668432,0.568912,0.37447,0.231893,0.910188,0.0450475,0.0847556,0.397985,0.107292,0.328566,0.913279,0.780745,0.622474,0.515913,0.747721,0.31351,0.580664,0.113607,0.148314,0.646863,0.850702,0.0332868,0.160673,0.219705,0.263664,0.258261,0.539893,0.333402,0.159688,0.106878,0.637118,0.852236,0.503352,0.207074,0.238606,0.795455,0.245063,0.243001,0.287267,0.981511,0.852069,0.552785,0.602734,0.426909,0.758294,0.47621,0.724099,0.0404433,0.659189,0.819534,0.798855,0.347534,0.710287,0.526964,0.604425,0.808238,0.49225,0.328548,0.0623698,0.161175,0.643192,0.275911,0.0636247,0.3899,0.541907,0.770954,0.219605,0.639642,0.103887,0.082319,0.888241,0.531324,0.676343,0.788582,0.56228,0.12684,0.292589,0.954258,0.590239,0.589255,0.569302,0.0657867,0.008564,0.674396,0.58357,0.0210055,0.934169,0.69163,0.161242,0.555932,0.329338,0.223251,0.39457,0.0266021,0.657498,0.923523,0.509315,0.377036,0.0122482,0.85815,0.514565,0.213677,0.0603738,0.822765,0.311717,0.525124,0.669856,0.79659,0.266212,0.552911,0.777454,0.902382,0.748215,0.355817,0.841458,0.749476,0.0327842,0.469731,0.822748,0.323526,0.777145,0.35179,0.147853,0.401411,0.6431,0.21632,0.255841,0.168328,0.602926,0.292289,0.197403,0.686185,0.892705,0.398797,0.148264,0.957444,0.451278,0.379671,0.392818,0.981493,0.242136,0.680678,0.373395,0.575682,0.671978,0.545456,0.122386,0.624652,0.771095,0.900143,0.516488,0.394614,0.907748,0.443819,0.161756,0.683625,0.53352,0.0995261,0.0530416,0.684383,0.425581,0.789956,0.225163,0.265046,0.480396,0.608778,0.495201,0.573495,0.329639,0.99352,0.151605,0.290364,0.59168,0.858263,0.234917,0.84339,0.36373,0.132349,0.0125899,0.283539,0.898085,0.403167,0.893093,0.471715,0.819909,0.254651,0.0226851,0.639985,0.448718,0.464742,0.648843,0.648911,0.964759,0.765911,0.0343331,0.052167,0.631503,0.616,0.885137,0.508934,0.250574,0.193675,0.14394,0.370024,0.786288,0.16654,0.079817,0.0964544,0.749164,0.884278,0.392962,0.026051,0.398383,0.889388,0.143399,0.43125,0.626795,0.772259,0.279044,0.774554,0.8359,0.659917,0.444611,0.179068,0.894965,0.978409,0.950947,0.692601,0.28788,0.758484,0.613707,0.850751,0.705272,0.274622,0.728247,0.726474,0.856875,0.701455,0.792192,0.950316,0.771008,0.879026,0.583212,0.919299,0.408156,0.230927,0.35997,0.0196669,0.7708,0.445343,0.23489,0.447376,0.0862497,0.570735,0.547531,0.039735,0.168389,0.0853251,0.768013,0.807847,0.241574,0.375456,0.894559,0.270957,0.467547,0.429951,0.305971,0.58925,0.464081,0.736154,0.910803,0.0850493,0.822125,0.616139,0.340921,0.629154,0.942124,0.394345,0.305691,0.00781441,0.147507,0.319901,0.664455,0.377762,0.0118817,0.358378,0.934746,0.438359,0.0991154,0.105301,0.433729,0.318172,0.633244,0.467082,0.960242,0.728572,0.7684,0.867554,0.224369,0.954631,0.0504014,0.459587,0.886186,0.534542,0.56474,0.0788668,0.00653219,0.917487,0.756618,0.480995,0.863119,0.95107,0.0498904,0.0967419,0.337925,0.477326,0.651108,0.49593,0.795417,0.360327,0.976191,0.808483,0.0373265,0.621754,0.0912888,0.188048,0.787147,0.494802,0.0657767,0.612453,0.0555069,0.442742,0.21195,0.449055,0.683027,0.464953,0.783831,0.863216,0.725186,0.635989,0.222139,0.924198,0.219379,0.498718,0.142169,0.26958,0.916874,0.544664,0.293597,0.792284,0.711033,0.858832,0.322579,0.899362,0.525089,0.952687,0.146443,0.0152444,0.245775,0.974733,0.207992,0.629765,0.397181,0.26835,0.187097,0.958323,0.261266,0.936608,0.694917,0.142366,0.930693,0.704968,0.373562,0.962095,0.0996575,0.327366,0.0928755,0.750864,0.504279,0.863197,0.718318,0.594883,0.911287,0.158421,0.745878,0.27043,0.803234,0.602843,0.889215,0.0582603,0.608077,0.52932,0.464297,0.025794,0.981849,0.0711014,0.949802,0.974446,0.00984025,0.601613,0.592638,0.966206,0.642817,0.924669,0.292763,0.59074,0.801021,0.915882,0.421527,0.0610572,0.567424,0.0238133,0.908758,0.439351,0.4375,0.776841,0.315731,0.754281,0.598856,0.690351,0.295389,0.0868095,0.182272,0.672802,0.767934,0.826753,0.880469,0.29112,0.214616,0.895981,0.255256,0.956486,0.143033,0.321939,0.947375,0.707861,0.834543,0.802598,0.575348,0.766171,0.345966,0.884803,0.0491832,0.029805,0.635952,0.825401,0.0417253,0.963062,0.21491,0.928193,0.878984,0.664187,0.759375,0.848229,0.706767,0.424257,0.221088,0.754533,0.883806,0.443672,0.265429,0.927452,0.380105,0.947158,0.356564,0.502944,0.948495,0.625583,0.353064,0.490211,0.0361639,0.942774,0.0428581,0.948006,0.183566,0.707007,0.943055,0.0981774,0.387328,0.00905949,0.73618,0.546056,0.481646,0.0190521,0.665435,0.794558,0.534222,0.47352,0.23239,0.274737,0.0440841,0.41344,0.424055,0.454064,0.858991,0.301397,0.258035,0.598474,0.369325,0.757592,0.717105,0.000863552,0.261213,0.699848,0.361928,0.426933,0.0871085,0.0107876,0.625277,0.747634,0.77262,0.662934,0.917823,0.953915,0.357136,0.398901,0.445988,0.977038,0.259438,0.542138,0.935545,0.438065,0.305035,0.380227,0.994943,0.422969,0.0573702,0.842813,0.308644,0.272071,0.986341,0.323447,0.535877,0.468645,0.943081,0.459484,0.263195,0.800486,0.238572,0.0421971,0.429215,0.581678,0.0305441,0.986073,0.344535,0.409005,0.0365779,0.774315,0.00501835,0.416274,0.607965,0.859637,0.146793,0.677739,0.0279099,0.218596,0.892716,0.212034,0.35416,0.0193725,0.672236,0.944599,0.486251,0.238238,0.0867005,0.845717,0.40909,0.343197,0.650674,0.760915,0.0523336,0.0866271,0.0798562,0.85617,0.155915,0.48127,0.957158,0.751274,0.00472277,0.781668,0.24441,0.695265,0.748788,0.236113,0.654853,0.207975,0.423454,0.21139,0.648638,0.993447,0.700909,0.584495,0.600802,0.792434,0.374971,0.198802,0.361037,0.934873,0.256634,0.685309,0.335767,0.428313,0.730199,0.274279,0.973304,0.687858,0.570108,0.753473,0.856224,0.891384,0.744178,0.45032,0.629608,0.10958,0.591549,0.903597,0.337939,0.935288,0.580207,0.329952,0.370384,0.794151,0.896,0.301083,0.616846,0.400693,0.412504,0.865425,0.818254,0.378717,0.550932,0.139794,0.129631,0.406252,0.886908,0.174795,0.381368,0.723739,0.466889,0.105727,0.863938,0.900205,0.588044,0.153043,0.0711933,0.649256,0.287198,0.394099,0.803764,0.134798,0.300863,0.643271,0.124053,0.391752,0.239411,0.0609644,0.919159,0.27273,0.891717,0.555224,0.301648,0.701362,0.724211,0.924641,0.911428,0.783331,0.164467,0.283756,0.571962,0.455084,0.508381,0.630465,0.20722,0.806932,|0.12677,0.248274,0.286824,0.0216261,0.34385,0.873812,0.70578,0.554855,0.0976233,0.580359,0.334938,0.404153,0.406558,0.0233258,0.880849,0.605552,0.486406,0.244253,0.301748,0.87828,0.709776,0.204539,0.845504,0.0982009,0.036074,0.551831,0.129003,0.104468,0.357074,0.44627,0.674812,0.920544,0.551812,0.54695,0.865169,0.19518,0.706319,0.401174,0.891152,0.294451,0.568813,0.428127,0.666896,0.757032,0.367223,0.231819,0.499758,0.0163885,0.762408,0.61271,0.919172,0.338712,0.769819,0.547919,0.109414,0.83011,0.682822,0.807112,0.739717,0.287893,0.435676,0.162759,0.0253771,0.752275,0.504237,0.318725,0.92006,0.356413,0.13623,0.355391,0.175935,0.134626,0.478216,0.370158,0.549232,0.831871,0.440049,0.259221,0.113442,0.625076,0.987807,0.845576,0.144778,0.477151,0.879543,0.897654,0.567465,0.531502,0.313121,0.022333,0.281151,0.876706,0.673912,0.571554,0.901578,0.321122,0.364065,0.998909,0.762086,0.24921,0.840655,0.716174,0.695319,0.328706,0.592415,0.882036,0.404182,0.615092,0.330304,0.0892563,0.245053,0.188167,0.09991,0.712832,0.916583,0.786153,0.215712,0.251954,0.149554,0.500083,0.0442966,0.816815,0.557873,0.342313,0.0798858,0.508019,0.508928,0.698158,0.843661,0.281641,0.403902,0.711034,0.444755,0.798412,0.0788219,0.463623,0.0781375,0.998867,0.742455,0.193985,0.280555,0.467423,0.527084,0.757119,0.0425884,0.0650364,0.723648,0.362988,0.777356,0.483988,0.319509,0.0928349,0.24252,0.794817,0.699334,0.653106,0.184389,0.501451,0.881898,0.550618,0.7502,0.269356,0.849162,0.0547757,0.502723,0.198314,0.713549,0.80644,0.832321,0.392141,0.450834,0.687616,0.971997,0.124531,0.443179,0.585744,0.18282,0.114795,0.569822,0.0520263,0.780162,0.847275,0.581677,0.484414,0.848524,0.577546,0.847379,0.637625,0.478159,0.0495238,0.158934,0.465719,0.447739,0.957644,0.553133,0.185871,0.133469,0.744462,0.505956,0.505824,0.667984,0.612074,0.410268,0.947849,0.563679,0.237291,0.904058,0.477351,0.325251,0.792772,0.873555,0.583127,0.31234,0.73856,0.990118,0.826045,0.20277,0.963314,0.738681,0.351759,0.324028,0.214134,0.252675,0.967556,0.908614,0.752295,0.670267,0.800987,0.197056,0.497939,0.120911,0.922036,0.818383,0.102003,0.231744,0.958159,0.851858,0.409314,0.0131637,0.673798,0.0167983,0.860465,0.204477,0.475115,0.0854285,0.0901812,0.60337,0.371571,0.414156,0.664648,0.930336,0.441861,0.241095,0.071663,0.0533025,0.954692,0.505726,0.97625,0.387331,0.129372,0.839889,0.256243,0.0357799,0.455833,0.375355,0.766843,0.145141,0.855993,0.635285,0.187209,0.723193,0.097833,0.767626,0.730149,0.435728,0.46196,0.349245,0.878675,0.738489,0.92624,0.908058,0.917777,0.281585,0.248584,0.0768542,0.784415,0.455319,0.512937,0.671843,0.0854193,0.631036,0.937366,0.52294,0.0164977,0.243578,0.324621,0.242441,0.746721,0.916754,0.0243083,0.207894,0.0142869,0.587197,0.654021,0.393154,0.0529442,0.335654,0.190214,0.504851,0.993293,0.542047,0.111034,0.00412393,0.237002,0.0107258,0.202262,0.665095,0.235553,0.546152,0.956299,0.0615099,0.337164,0.171442,0.500785,0.13455,0.984223,0.479133,0.586631,0.667977,0.218586,0.432837,0.768555,0.41519,0.337236,0.0634827,0.0865875,0.00531101,0.564112,0.223086,0.960279,0.953074,0.230144,0.177865,0.641728,0.376974,0.454793,0.978399,0.253132,0.736931,0.110463,0.25757,0.75267,0.011775,0.337988,0.00330389,0.519146,0.446141,0.855724,0.5622,0.223314,0.0747374,0.827145,0.646171,0.635597,0.931294,0.507705,0.961326,0.449082,0.727848,0.414277,0.256701,0.333371,0.715584,0.867377,0.32771,0.0623828,0.991973,0.924873,0.727432,0.280775,0.730206,0.402334,0.844183,0.649408,0.876856,0.930285,0.862915,0.196651,0.393489,0.816205,0.376232,0.44865,0.205787,0.0873454,0.366378,0.47378,0.591396,0.730365,0.700539,0.272447,0.0643611,0.853797,0.935707,0.887977,0.424284,0.864237,0.249429,0.814456,0.888925,0.0467152,0.377898,0.0806982,0.647271,0.869148,0.971843,0.259507,0.322894,0.449842,0.369694,0.270662,0.783366,0.958541,0.154518,0.843816,0.0754487,0.936899,0.596017,0.257479,0.961803,0.960268,0.699964,0.759796,0.901808,0.748494,0.494925,0.39015,0.753988,0.282653,0.662817,0.361428,0.184895,0.267651,0.454099,0.569256,0.0469784,0.966061,0.806268,0.909705,0.614648,0.425841,0.220965,0.240282,0.133534,0.582523,0.965098,0.731047,0.401936,0.944413,0.126562,0.66169,0.191231,0.395434,0.6539,0.942458,0.103529,0.51636,0.688734,0.202278,0.242625,0.33811,0.703675,0.272974,0.256889,0.978863,0.942271,0.489726,0.383233,0.416056,0.178886,0.687271,0.714752,0.878564,0.483949,0.474548,0.251297,0.498211,0.165832,0.784147,0.414458,0.0551197,0.309749,0.500986,0.954776,0.955862,0.262436,0.859166,0.204723,0.540963,0.546308,0.662245,0.0264196,0.677184,0.658867,0.752876,0.461652,0.728335,0.74638,0.439287,0.596287,0.16992,0.563388,0.325444,0.00388503,0.508153,0.628504,0.731964,0.117621,0.792652,0.513345,0.756234,0.0972645,0.449225,0.266186,0.0368971,0.526647,0.604819,0.15029,0.25739,0.739324,0.729013,0.720654,0.26252,0.00642008,0.443072,0.70234,0.472133,0.335976,0.0147941,0.602549,0.237237,0.738597,0.431046,0.899942,0.119546,0.780681,0.803943,0.13557,0.413677,0.433168,0.541748,0.943859,0.76691,0.576503,0.18982,0.404389,0.241988,0.32817,0.220936,0.458137,0.244577,0.26091,0.196582,0.788016,0.627354,0.214736,0.22428,0.519454,0.518513,0.617204,0.497994,0.893317,0.589136,0.367038,0.718774,0.939693,0.392387,0.982509,0.829435,0.594637,0.0302844,0.954045,0.511898,0.063426,0.707402,0.361127,0.705171,0.35379,0.266847,0.0122816,0.392155,0.587637,0.634884,0.188267,0.24782,0.358359,0.694162,0.217389,0.855624,0.135453,0.817628,0.714203,0.964879,0.741594,0.91319,0.338041,0.120408,0.110842,0.0749628,0.430117,0.693168,0.148009,0.304451,0.46838,0.949555,0.595329,0.579316,0.0931446,0.600007,0.63793,0.254264,0.859407,0.356381,0.299965,0.501805,0.1826,0.718979,0.158257,0.980502,0.238001,0.296537,0.0615922,0.277138,0.0615959,0.167775,0.463554,0.20667,0.813012,0.158347,0.829898,0.22226,0.187713,0.235077,0.682749,0.5418,0.442658,0.022186,0.919222,0.677305,0.406508,0.94569,0.378222,0.469579,0.493187,0.479437,0.380023,0.293324,0.288574,0.285864,0.425774,0.274376,0.68316,0.0755357,0.148073,0.718228,0.6679,0.715009,0.983014,0.498516,0.315558,0.236843,0.607464,0.904888,0.388873,0.859709,0.19751,0.700071,0.811903,0.398336,0.48193,0.552209,0.808668,0.900482,0.650677,0.824865,0.671085,0.212569,0.147236,0.673899,0.255508,0.379764,0.41283,0.0438718,0.766005,0.694884,0.995168,0.0681594,0.846629,0.666016,0.000381351,0.567162,0.931029,0.884148,0.250344,0.646587,0.779681,0.640313,0.746484,0.846829,0.766107,0.685531,0.083938,0.388669,0.884288,0.969775,0.622762,0.131047,0.112902,0.300435,0.283528,0.920366,0.356906,0.650013,0.373425,0.167314,0.213897,0.924321,0.154103,0.295073,0.250492,0.603144,0.726021,0.908125,0.657734,0.334065,0.119055,0.438408,0.380709,0.222994,0.502009,0.375318,0.956367,0.907649,0.581412,0.466282,0.912025,0.854431,0.987448,0.590722,0.237642,0.967039,0.278058,0.444016,0.365996,0.94045,0.637066,0.793046,0.0708152,0.0299903,0.0874014,0.606228,0.577941,0.588401,0.904726,0.025559,0.92337,0.818408,0.0432328,0.0143605,0.620817,0.341189,0.526495,0.178766,0.499786,0.549269,0.571461,0.693715,0.495356,0.111759,0.858177,0.504284,0.123197,0.0851464,0.427645,0.666395,0.813584,0.0581004,0.920964,0.654877,0.548124,0.104623,0.265596,0.846183,0.593793,0.304562,0.4463,0.0342575,0.108037,0.448693,0.356026,0.113572,0.295407,0.79603,0.568318,0.0610761,0.159492,0.723059,0.305706,0.397288,0.753607,0.707459,0.849547,0.529908,0.800633,0.0624288,0.876395,0.928711,0.766032,0.210563,0.354089,0.652283,0.889448,0.337747,0.616107,0.859699,0.613996,0.149977,0.758655,0.910706,0.246407,0.153168,0.874805,0.991929,0.184194,0.917777,0.752176,0.957136,0.254143,0.205951,0.27565,0.422623,0.919433,0.825592,0.95906,0.598067,0.544661,0.565516,0.715675,0.383152,0.399146,0.0342106,0.518462,0.532463,0.394687,0.643931,0.0288261,0.276505,0.185591,0.533535,0.969988,0.454866,0.132468,0.519089,0.881612,0.318118,0.490717,0.815762,0.869295,0.0413727,0.857741,0.191784,0.886955,0.563857,0.795649,0.2164,0.98513,0.12328,0.0945736,0.245,0.143729,0.026301,0.943229,0.768669,0.20467,0.900854,0.741068,0.466517,0.840999,0.030827,0.537111,0.0614551,0.12834,0.663291,0.125998,0.323394,0.771282,0.196236,0.225438,0.381827,0.61854,0.909979,0.170905,0.170549,0.696448,0.104455,0.015354,0.457882,0.929325,0.189804,0.99673,0.95137,0.661789,0.448865,0.437585,0.373071,0.571686,0.98319,0.659704,0.0413365,0.697275,0.140018,0.179359,0.252499,0.544977,0.925481,0.343345,0.230862,0.347977,0.267212,0.245552,0.825624,0.504987,0.363618,0.78071,0.631063,0.444372,0.49897,0.623559,0.534737,0.960862,0.728728,0.80713,0.311786,0.847987,0.389606,0.746924,0.9879,0.606877,0.798208,0.633562,0.479192,0.669044,0.924948,0.0290502,0.229518,0.563171,0.223683,0.894241,0.86044,0.1309,0.0755643,0.55002,0.311686,0.847595,0.737913,0.818004,0.580765,0.973112,0.265137,0.917235,0.94852,0.446286,0.100748,0.870428,0.00389653,0.173961,0.829495,0.430991,0.743234,0.471694,0.586873,0.55109,0.896459,0.935478,0.748423,0.530697,0.511381,0.730214,0.448371,0.995314,0.0923809,0.327262,0.0865179,0.242995,0.217855,0.83511,0.617265,0.119037,0.887622,0.638805,0.280006,|0.0887182,0.925276,0.534991,0.349333,0.888493,0.168037,0.963126,0.947558,0.028733,0.265267,0.185112,0.416879,0.225593,0.643565,0.507084,0.289684,0.557857,0.599114,0.925559,0.332105,0.933266,0.202479,0.727817,0.50983,0.156522,0.76895,0.421387,0.0890968,0.829095,0.239384,0.21563,0.132844,0.637573,0.0678303,0.294846,0.769329,0.721139,0.421904,0.027676,0.0771319,0.62324,0.248655,0.616316,0.08044,0.170591,0.111999,0.762118,0.170939,0.364438,0.773755,0.430127,0.308061,0.0442907,0.933278,0.773703,0.987262,0.534579,0.572822,0.807585,0.371952,0.788763,0.50298,0.847115,0.192022,0.0403112,0.107116,0.554379,0.497967,0.63599,0.560134,6.96182e-05,0.563648,0.498643,0.407039,0.972965,0.568594,0.734913,0.364593,0.573011,0.597586,0.602085,0.879897,0.795222,0.63321,0.284291,0.647156,0.610643,0.0551419,0.214374,0.874158,0.880779,0.552004,0.192602,0.0284291,0.134485,0.849909,0.910642,0.0440314,0.370476,0.618695,0.946675,0.967576,0.474655,0.330509,0.844195,0.613041,0.776729,0.938606,0.841913,0.248039,0.060389,0.794507,0.419444,0.739451,0.988145,0.295931,0.447839,0.14875,0.980971,0.93804,0.720575,0.105453,0.418682,0.986765,0.80247,0.841261,0.126583,0.483867,0.176944,0.0678277,0.982421,0.820804,0.696155,0.258932,0.788445,0.0726359,0.410912,0.134626,0.275721,0.113468,0.965326,0.621258,0.893573,0.242943,0.0668795,0.443925,0.96612,0.758517,0.0961255,0.691649,0.811581,0.693637,0.452971,0.882363,0.932314,0.964146,0.416221,0.369035,0.111096,0.545558,0.508378,0.499791,0.709011,0.69276,0.629848,0.946831,0.878198,0.998439,0.118613,0.819384,0.0652494,0.245596,0.677543,0.437988,0.0393715,0.671178,0.330684,0.281546,0.611436,0.25901,0.0308581,0.274199,0.126752,0.915547,0.693968,0.222143,0.178412,0.262394,0.538097,0.911223,0.839195,0.551575,0.777945,0.43077,0.0859631,0.596182,0.623122,0.481205,0.462041,0.793387,0.0407721,0.567099,0.484752,0.894669,0.589289,0.284912,0.703419,0.204301,0.200877,0.19079,0.632679,0.241935,0.767033,0.555034,0.463564,0.0892595,0.218305,0.781946,0.652952,0.147947,0.801854,0.601267,0.317513,0.0450107,0.124062,0.531831,0.282,0.114294,0.165803,0.322981,0.388102,0.750343,0.673999,0.82809,0.0153873,0.157106,0.408637,0.836362,0.0694541,0.212327,0.144688,0.462205,0.522189,0.800245,0.315612,0.699338,0.0632542,0.336937,0.491501,0.275825,0.690204,0.758693,0.898282,0.176635,0.635862,0.408031,0.036607,0.295522,0.811371,0.315431,0.0018605,0.860524,0.673395,0.398771,0.545487,0.817812,0.664941,0.293098,0.05126,0.15283,0.393728,0.93905,0.559687,0.330095,0.816016,0.927999,0.587557,0.709568,0.856228,0.534232,0.449526,0.935245,0.206748,0.0689617,0.516389,0.379535,0.928322,0.135707,0.313124,0.267197,0.997038,0.608462,0.295499,0.402976,0.321628,0.650442,0.931125,0.375461,0.764708,0.0600676,0.458671,0.611618,0.236519,0.832718,0.98498,0.566796,0.676244,0.637478,0.737055,0.923778,0.89561,0.664437,0.312289,0.939168,0.823128,0.032461,0.836342,0.185418,0.921572,0.561182,0.259939,0.978581,0.50427,0.723111,0.622686,0.531318,0.952871,0.731246,0.834448,0.029946,0.0419613,0.878975,0.120103,0.0540155,0.141276,0.355737,0.520134,0.800635,0.646281,0.619474,0.524833,0.771281,0.371205,0.904348,0.580522,0.838168,0.927432,0.55253,0.284949,0.845357,0.960689,0.515776,0.434596,0.348108,0.206305,0.567825,0.410783,0.718567,0.871627,0.68297,0.687439,0.402765,0.35325,0.0168829,0.0783159,0.910444,0.732464,0.17809,0.642529,0.0364596,0.646841,0.444959,0.258939,0.20701,0.604783,0.919073,0.872078,0.911907,0.267181,0.490201,0.400259,0.896287,0.978362,0.965175,0.981777,0.246641,0.854636,0.331749,0.483116,0.307037,0.675809,0.754958,0.651867,0.547661,0.454445,0.700038,0.889607,0.992526,0.579981,0.273232,0.568325,0.121252,0.505364,0.891639,0.142305,0.321958,0.220211,0.257149,0.541549,0.504554,0.158375,0.525734,0.216166,0.749703,0.614736,0.243964,0.981226,0.348004,0.282628,0.414113,0.798706,0.842667,0.158912,0.537905,0.304726,0.976784,0.916557,0.657927,0.0235313,0.43789,0.356296,0.37503,0.521126,0.0438902,0.765953,0.379546,0.226368,0.631137,0.790443,0.304023,0.723008,0.71604,0.0556467,0.706537,0.484331,0.387561,0.376026,0.155984,0.260513,0.577809,0.53732,0.997418,0.25111,0.358817,0.51776,0.447868,0.149353,0.352638,0.387891,0.565407,0.0135257,0.447382,0.338381,0.0350254,0.816521,0.79292,0.167508,0.685239,0.105729,0.00542891,0.974408,0.486165,0.780414,0.778273,0.565793,0.270956,0.408802,0.234644,0.625612,0.675952,0.480676,0.956257,0.144364,0.24189,0.587688,0.540341,0.195894,0.226776,0.9386,0.725383,0.961889,0.953599,0.71669,0.380012,0.917244,0.708511,0.249939,0.412414,0.937498,0.354316,0.416214,0.0245677,0.0425091,0.537364,0.4621,0.0737588,0.319298,0.109382,0.376052,0.410559,0.345338,0.33944,0.0123918,0.922172,0.0497051,0.32222,0.485755,0.742871,0.42347,0.502276,0.13561,0.308537,0.197445,0.605693,0.0840204,0.27483,0.252924,0.428865,0.834497,0.807807,0.93927,0.188598,0.366941,0.0128547,0.24806,0.542239,0.060925,0.0510824,0.614349,0.203979,0.821782,0.679883,0.374494,0.360846,0.644056,0.944941,0.563935,0.365828,0.715827,0.927159,0.765864,0.800991,0.471943,0.110229,0.728103,0.836763,0.799616,0.815753,0.770749,0.249142,0.897914,0.748231,0.513363,0.881162,0.94988,0.445088,0.218456,0.737767,0.293444,0.821061,0.0158935,0.836245,0.0748523,0.930398,0.214069,0.626761,0.76141,0.863857,0.282712,0.172623,0.793904,0.606632,0.22289,0.0886708,0.0610349,0.263441,0.306023,0.364433,0.754302,0.233157,0.667732,0.499016,0.354611,0.808504,0.788876,0.58331,0.755388,0.930158,0.831629,0.962067,0.0284407,0.843226,0.793047,0.498485,0.861306,0.390618,0.837814,0.359394,0.257743,0.526348,0.204836,0.554424,0.0304239,0.880366,0.354373,0.432555,0.452745,0.070649,0.366967,0.561263,0.538786,0.239578,0.68066,0.794332,0.818649,0.574483,0.380728,0.300494,0.292525,0.338584,0.193556,0.142772,0.133514,0.567829,0.348096,0.928237,0.998383,0.309838,0.3044,0.135966,0.794812,0.378883,0.214673,0.195564,0.977887,0.186009,0.233681,0.775274,0.395581,0.964244,0.185153,0.133126,0.195509,0.559371,0.364698,0.524304,0.664141,0.953361,0.560339,0.113996,0.987754,0.607052,0.234901,0.0468367,0.998019,0.189996,0.517526,0.930308,0.787211,0.604339,0.498654,0.374956,0.313246,0.749404,0.0730968,0.871697,0.214757,0.767873,0.87757,0.484068,0.175411,0.534317,0.940565,0.189594,0.918094,0.848049,0.47587,0.401548,0.652826,0.812214,0.352077,0.877064,0.365121,0.113041,0.13992,0.230866,0.443568,0.216378,0.922903,0.56936,0.947969,0.102968,0.919189,0.969666,0.233186,0.385423,0.863899,0.564996,0.378635,0.870042,0.110464,0.099236,0.425305,0.340867,0.381829,0.986652,0.0633706,0.216537,0.0237688,0.684145,0.0852181,0.809846,0.169673,0.0329177,0.0827119,0.418734,0.524721,0.448067,0.323469,0.98398,0.725405,0.873879,0.438978,0.680784,0.260493,0.910934,0.630418,0.83304,0.835412,0.392892,0.58587,0.0296758,0.53198,0.0789669,0.753817,0.864511,0.681804,0.517481,0.686515,0.994911,0.541566,0.673631,0.928587,0.919413,0.312454,0.989512,0.471407,0.786315,0.519338,0.94751,0.448182,0.202681,0.279573,0.652081,0.850311,0.744721,0.437951,0.310509,0.501906,0.615449,0.357201,0.697281,0.375623,0.502004,0.630511,0.841461,0.746211,0.382021,0.856608,0.709999,0.561599,0.923028,0.659235,0.238425,0.668945,0.95218,0.335674,0.0935529,0.808216,0.781891,0.482671,0.476111,0.299533,0.0589754,0.0278319,0.028194,0.530504,0.255372,0.610699,0.856167,0.670579,0.0567006,0.206964,0.409114,0.915471,0.606983,0.893508,0.110521,0.755825,0.350059,0.511779,0.0167266,0.149357,0.0657609,0.62729,0.567948,0.93094,0.453032,0.198196,0.316742,0.703503,0.54976,0.521783,0.860801,0.932876,0.201617,0.797848,0.435392,0.62751,0.464523,0.00566906,0.709362,0.872356,0.594764,0.363348,0.150438,0.00809062,0.70554,0.278679,0.2552,0.457179,0.891971,0.531973,0.138416,0.50477,0.467167,0.0251461,0.243443,0.378064,0.221962,0.933409,0.520159,0.0637453,0.907157,0.857261,0.851511,0.0696018,0.700897,0.831461,0.230211,0.0194128,0.220526,0.030026,0.186011,0.479879,0.864569,0.378637,0.47034,0.0764035,0.798994,0.33912,0.76173,0.490552,0.324451,0.936235,0.860807,0.340387,0.893818,0.13639,0.621898,0.809918,0.552375,0.783973,0.449528,0.389445,0.767255,0.591032,0.968398,0.539796,0.500736,0.517092,0.0168176,0.238672,0.603506,0.958989,0.0512785,0.153432,0.234997,0.223598,0.634016,0.366776,0.147896,0.213758,0.923614,0.000745773,0.00461429,0.890553,0.532109,0.376262,0.372567,0.826757,0.504055,0.965279,0.493271,0.779519,0.208627,0.670962,0.595985,0.269457,0.213964,0.00499672,0.127521,0.608763,0.592322,0.893359,0.422942,0.613316,0.297339,0.00816858,0.391794,0.899974,0.513033,0.585982,0.976733,0.632071,0.0642864,0.974632,0.645167,0.186875,0.822978,0.368856,0.803879,0.635921,0.260703,0.797123,0.548472,0.38115,0.72334,0.560138,0.503657,0.122085,0.761,0.533887,0.615147,0.118741,0.0423828,0.280495,0.61699,0.773616,0.614727,0.715728,0.826072,0.0219207,0.743394,0.877775,0.577564,0.378066,0.611155,0.372803,0.893242,0.552262,0.327268,0.364447,0.80474,0.669039,0.912719,0.970562,0.203495,0.460259,0.568651,0.957218,0.888095,0.835958,0.116724,0.807412,0.931481,0.963112,0.547577,0.025668,0.950562,0.954586,0.00241274,0.56441,0.802315,0.428205,0.324562,0.45325,0.583178,0.0630113,0.186468,|0.666952,0.345161,0.60266,0.785435,0.145468,0.573186,0.789408,0.520374,0.853693,0.438903,0.932996,0.655391,0.72276,0.305394,0.212326,0.309576,0.251268,0.586504,0.533921,0.686358,0.951307,0.0584661,0.0208766,0.00195533,0.964934,0.909168,0.890167,0.751468,0.859688,0.523563,0.0238947,0.612164,0.863657,0.581121,0.262307,0.98367,0.133725,0.38747,0.0210065,0.552157,0.495681,0.110744,0.741939,0.686301,0.846076,0.637728,0.788808,0.199021,0.0755268,0.266855,0.729918,0.0844883,0.97818,0.744774,0.897913,0.539647,0.474983,0.858558,0.17268,0.71439,0.861268,0.991532,0.00143152,0.546151,0.595013,0.968965,0.96212,0.932323,0.640065,0.829679,0.607058,0.270655,0.803363,0.0651364,0.427755,0.878038,0.527737,0.306612,0.566101,0.136604,0.0938682,0.930072,0.907525,0.708285,0.0459472,0.950472,0.589578,0.051484,0.822956,0.312402,0.749577,0.280605,0.399891,0.891488,0.728513,0.803844,0.311658,0.809824,0.618407,0.728828,0.565048,0.943899,0.806846,0.876743,0.458625,0.536474,0.80461,0.967328,0.480426,0.375774,0.847564,0.894664,0.668112,0.331426,0.48803,0.833991,0.523305,0.923438,0.641784,0.276141,0.113992,0.365164,0.164547,0.521953,0.810522,0.749887,0.776461,0.952231,0.2142,0.260213,0.0348777,0.6795,0.885359,0.751834,0.719169,0.125937,0.148799,0.367606,0.480236,0.686936,0.859788,0.329521,0.876901,0.610774,0.14011,0.678529,0.474528,0.25073,0.949551,0.346225,0.933275,0.380867,0.00213885,0.118926,0.0472373,0.489627,0.936267,0.574466,0.667126,0.284618,0.909002,0.165846,0.376446,0.825344,0.408573,0.367894,0.247334,0.802349,0.0466966,0.0835032,0.134015,0.00368953,0.218689,0.699894,0.114267,0.0779814,0.985857,0.451325,0.0520107,0.414297,0.680979,0.833103,0.769706,0.820053,0.0790412,0.49132,0.0441968,0.634719,0.872264,0.347574,0.803072,0.951015,0.922671,0.29252,0.571369,0.861342,0.763852,0.891535,0.0174003,0.343191,0.571816,0.512175,0.836299,0.231962,0.524414,0.254445,0.501281,0.453541,0.0228752,0.401429,0.564196,0.48585,0.942535,0.472132,0.601811,0.611108,0.799715,0.0161132,0.0890769,0.0488907,0.0600558,0.385901,0.785075,0.468917,0.426687,0.6255,0.608932,0.0463818,0.0660141,0.851496,0.594502,0.430123,0.669719,0.604982,0.674997,0.526834,0.951595,0.376645,0.3236,0.536881,0.00140077,0.748369,0.747661,0.834832,0.897633,0.415143,0.789493,0.375022,0.934316,0.088468,0.189814,0.139423,0.917571,0.515855,0.699273,0.825482,0.220691,0.46457,0.0788493,0.369183,0.567166,0.698778,0.19041,0.30322,0.877186,0.171732,0.778574,0.484581,0.0333983,0.825137,0.222908,0.840619,0.364058,0.308558,0.579887,0.113041,0.979256,0.633242,0.18524,0.993477,0.475338,0.442185,0.798642,0.15422,0.967948,0.145204,0.466756,0.196919,0.378982,0.898954,0.310103,0.605888,0.288712,0.143164,0.369293,0.882944,0.593955,0.0489889,0.954295,0.533365,0.662824,0.780534,0.168748,0.693334,0.158645,0.603145,0.823378,0.562476,0.827214,0.168769,0.535484,0.0808443,0.421,0.0340111,0.725297,0.109975,0.901026,0.0581343,0.989789,0.557347,0.540291,0.679707,0.720386,0.106543,0.00615126,0.545959,0.0377771,0.258114,0.91908,0.233124,0.290782,0.245228,0.364648,0.434892,0.691029,0.21348,0.534502,0.645594,0.738123,0.811075,0.590718,0.30792,0.148895,0.609345,0.0602804,0.661379,0.432742,0.00851536,0.871041,0.617279,0.381442,0.230622,0.0334519,0.180191,0.807326,0.518117,0.341356,0.488494,0.280607,0.547475,0.823759,0.00349039,0.675665,0.0298084,0.953736,0.0506833,0.629935,0.587951,0.77831,0.45337,0.466707,0.905714,0.600789,0.157534,0.887947,0.888083,0.216488,0.957333,0.676285,0.737508,0.208622,0.345697,0.730235,0.634806,0.97913,0.732152,0.34178,0.0157005,0.39507,0.970877,0.918044,0.856758,0.360378,0.497377,0.858496,0.661772,0.505023,0.589643,0.0159276,0.947641,0.996991,0.864102,0.851117,0.781484,0.286733,0.468845,0.184173,0.900417,0.420281,0.239062,0.843749,0.828533,0.841209,0.577617,0.740118,0.870725,0.58762,0.273525,0.940735,0.95563,0.819355,0.999215,0.523399,0.0176346,0.2964,0.836643,0.322571,0.793343,0.294879,0.38963,0.682039,0.497601,0.471732,0.198698,0.766372,0.869459,0.365302,0.826523,0.0898608,0.173232,0.670878,0.125647,0.898913,0.291422,0.0203503,0.764914,0.127691,0.161377,0.7067,0.328777,0.32095,0.214261,0.0278577,0.934956,0.712725,0.505632,0.656336,0.200613,0.59519,0.0393685,0.572892,0.359932,0.935654,0.126949,0.748449,0.0932536,0.481201,0.119382,0.0538716,0.109181,0.244226,0.737734,0.967791,0.264699,0.294638,0.43861,0.578359,0.470316,0.800218,0.0881616,0.682186,0.0983864,0.957036,0.655017,0.857357,0.408462,0.470362,0.44706,0.0598781,0.183956,0.0860813,0.520051,0.266221,0.271917,0.158478,0.395385,0.553053,0.218317,0.838159,0.867778,0.687749,0.429882,0.681432,0.492525,0.413668,0.347822,0.94415,0.32567,0.356069,0.486227,0.554886,0.50549,0.321903,0.667141,0.56754,0.781256,0.987584,0.491613,0.729532,0.191463,0.739585,0.594136,0.267988,0.752225,0.341502,0.354076,0.0250227,0.529823,0.65447,0.512644,0.409058,0.802931,0.00923532,0.453646,0.516608,0.388594,0.205789,0.594873,0.465278,0.755609,0.447914,0.0646731,0.817126,0.874675,0.917637,0.1232,0.0888515,0.850831,0.0135312,0.762003,0.605571,0.852538,0.170109,0.00106359,0.780012,0.923362,0.583788,0.415518,0.0891647,0.570157,0.778413,0.902651,0.83185,0.844219,0.707179,0.1671,0.460902,0.719788,0.447901,0.868976,0.0184083,0.859604,0.311664,0.883232,0.299726,0.417808,0.440678,0.703117,0.511126,0.181759,0.815752,0.0594236,0.277173,0.697207,0.337126,0.0284012,0.479496,0.876717,0.30538,0.513938,0.966474,0.00130188,0.680482,0.00662363,0.837152,0.327645,0.367983,0.291894,0.0442625,0.836543,0.324009,0.172179,0.530648,0.451879,0.642382,0.968132,0.99707,0.263149,0.0426657,0.183123,0.598915,0.884915,0.22761,0.280796,0.612031,0.460955,0.265779,0.120759,0.737242,0.906804,0.223877,0.647024,0.464403,0.952337,0.555932,0.469498,0.665036,0.915028,0.828833,0.50315,0.945678,0.83949,0.402075,0.0942367,0.683454,0.657757,0.540178,0.606757,0.678928,0.818814,0.295002,0.972701,0.160857,0.469515,0.473877,0.393826,0.460609,0.170063,0.87861,0.0797033,0.339834,0.173602,0.813452,0.606051,0.515715,0.53652,0.741118,0.199894,0.835626,0.970142,0.781299,0.509142,0.231465,0.421317,0.358213,0.651319,0.451515,0.0930499,0.810108,0.16083,0.350884,0.172164,0.984913,0.121022,0.443422,0.772139,0.138293,0.660069,0.637816,0.65227,0.316204,0.991649,0.00206125,0.703694,0.519131,0.642407,0.860016,0.616317,0.64329,0.65183,0.714515,0.980962,0.182369,0.722299,0.120979,0.391015,0.327286,0.774196,0.772622,0.25342,0.692255,0.80124,0.413128,0.524549,0.371945,0.156371,0.458753,0.191369,0.524311,0.82973,0.125369,0.929291,0.914342,0.193294,0.426885,0.123837,0.086042,0.516696,0.0911443,0.282549,0.954517,0.503338,0.162926,0.128681,0.686892,0.930755,0.310062,0.782743,0.425358,0.877192,0.830899,0.976545,0.749359,0.711725,0.514176,0.880847,0.796564,0.902643,0.162905,0.75648,0.15685,0.851584,0.825284,0.312285,0.0652366,0.696773,0.8007,0.299437,0.284357,0.173012,0.954648,0.0797789,0.101286,0.52058,0.694475,0.21598,0.443261,0.667121,0.686492,0.707093,0.378306,0.208068,0.0985479,0.532515,0.167272,0.988962,0.726321,0.58653,0.164364,0.817368,0.879642,0.704343,0.937093,0.502938,0.508246,0.633218,0.897924,0.664149,0.860863,0.792155,0.300446,0.801409,0.366823,0.665915,0.0726053,0.976243,0.263275,0.513173,0.794398,0.947259,0.180824,0.704873,0.113333,0.841017,0.612602,0.272371,0.241901,0.0645417,0.733352,0.00444794,0.525391,0.336675,0.82025,0.979987,0.392628,0.898349,0.00919092,0.0761877,0.0703135,0.693999,0.227042,0.798774,0.179289,0.812089,0.837075,0.872973,0.937337,0.00815803,0.376372,0.15931,0.560922,0.459997,0.638482,0.482631,0.887258,0.220347,0.0347009,0.180424,0.655682,0.78884,0.834514,0.998399,0.310254,0.103688,0.610893,0.531578,0.89699,0.485462,0.222211,0.546037,0.6285,0.868119,0.275209,0.540751,0.972615,0.206339,0.0972759,0.148607,0.886697,0.774584,0.377083,0.0487619,0.121932,0.180408,0.0264903,0.160653,0.890937,0.494969,0.53886,0.377517,0.161416,0.834287,0.103085,0.682326,0.678175,0.15241,0.181283,0.653933,0.00556862,0.963741,0.258054,0.219966,0.226251,0.577364,0.302187,0.324611,0.501708,0.489775,0.701842,0.329956,0.477243,0.429258,0.125467,0.108096,0.622643,0.2079,0.779868,0.379864,0.48234,0.7558,0.953912,0.428657,0.949793,0.707976,0.340479,0.603103,0.723245,0.911588,0.0860654,0.82747,0.455691,0.510135,0.127738,0.226475,0.0165101,0.977017,0.98692,0.283705,0.393774,0.754105,0.2384,0.296984,0.9836,0.763332,0.163499,0.302127,0.60582,0.234293,0.93343,0.781648,0.762686,0.783793,0.441038,0.425192,0.914248,0.734553,0.266333,0.711978,0.152717,0.371033,0.416035,0.883316,0.0867658,0.0874782,0.870618,0.973653,0.484199,0.557337,0.426835,0.686891,0.833698,0.0183066,0.139253,0.758083,0.906749,0.372366,0.861591,0.777147,0.220013,0.69014,0.116368,0.321006,0.804729,0.317082,0.774583,0.371028,0.302475,0.155688,0.355841,0.319879,0.285662,0.929196,0.566741,0.97681,0.656991,0.272024,0.442589,0.092047,0.540109,0.406878,0.471994,0.360395,0.794638,0.462784,0.290696,0.39726,0.977954,0.650139,0.747549,0.25052,0.651768,0.389968,0.702738,0.95807,0.313634,0.658609,0.845308,0.236483,0.287541,0.743052,0.544417,0.369269,0.182134,0.568314,0.577589,0.212975,0.949039,0.866452,0.357614,0.209736,|0.444417,0.471778,0.461098,0.637665,0.619655,0.925285,0.172237,0.378794,0.235335,0.243726,0.965912,0.0266198,0.118443,0.699361,0.508655,0.206416,0.72721,0.392577,0.625227,0.608989,0.140836,0.85321,0.147519,0.577488,0.852078,0.812515,0.497032,0.952468,0.155977,0.869325,0.63456,0.840578,0.124269,0.286017,0.0767703,0.520996,0.936607,0.119305,0.539789,0.82411,0.664747,0.255114,0.281889,0.778298,0.955862,0.625442,0.583274,0.977329,0.911356,0.461409,0.452132,0.700944,0.277381,0.817629,0.180151,0.947547,0.400157,0.20409,0.537585,0.183281,0.946528,0.255101,0.606038,0.483167,0.887279,0.0116545,0.917829,0.734827,0.887491,0.627347,0.203255,0.2909,0.714251,0.776473,0.243459,0.5292,0.465904,0.30822,0.530941,0.227301,0.270207,0.573008,0.0698205,0.519596,0.635697,0.722611,0.638356,0.822176,0.27813,0.435905,0.427079,0.904277,0.35237,0.025633,0.894041,0.186679,0.253449,0.547423,0.0417928,0.162245,0.758756,0.473038,0.8151,0.176299,0.490477,0.320107,0.169863,0.00186139,0.898534,0.787376,0.896999,0.99383,0.410496,0.46824,0.419088,0.972352,0.0817046,0.286525,0.20886,0.330051,0.320976,0.949746,0.371216,0.907755,0.0683475,0.478412,0.69198,0.771634,0.239583,0.172048,0.842439,0.771074,0.47947,0.993439,0.114623,0.93598,0.153314,0.239844,0.973188,0.889272,0.566415,0.101033,0.47025,0.882263,0.915794,0.78876,0.345004,0.53804,0.491525,0.701141,0.854831,0.600174,0.150596,0.208939,0.0972689,0.902249,0.901991,0.955937,0.0679266,0.859112,0.597285,0.742647,0.937602,0.20357,0.826983,0.721711,0.814359,0.444302,0.339975,0.419574,0.386358,0.960462,0.0595427,0.412879,0.50533,0.361306,0.402213,0.27427,0.389007,0.96081,0.910048,0.616934,0.360664,0.366067,0.57535,0.125286,0.654958,0.176094,0.676455,0.92183,0.440368,0.500823,0.264126,0.544494,0.409004,0.817128,0.724333,0.409328,0.476099,0.311658,0.544812,0.455584,0.443072,0.614094,0.785636,0.394097,0.911166,0.918442,0.532839,0.216442,0.256627,0.703594,0.369461,0.745727,0.600952,0.666157,0.627416,0.41444,0.695545,0.661246,0.254741,0.0918509,0.281761,0.901444,0.627753,0.496458,0.69293,0.556026,0.000720561,0.590252,0.641836,0.325839,0.647853,0.58471,0.337332,0.459949,0.666632,0.0374619,0.0303332,0.765568,0.994421,0.0486035,0.120184,0.427431,0.624032,0.934258,0.548325,0.196261,0.0508984,0.450794,0.00444651,0.944746,0.12337,0.50783,0.413383,0.1361,0.596134,0.261821,0.917844,0.193569,0.784732,0.87544,0.368922,0.127646,0.45545,0.402334,0.905833,0.772224,0.0108961,0.764714,0.423572,0.738256,0.594566,0.791661,0.548723,0.584265,0.0852972,0.622752,0.595387,0.285191,0.997479,0.651991,0.934183,0.901703,0.403769,0.882365,0.579439,0.975439,0.878434,0.721306,0.348257,0.28533,0.0747645,0.51396,0.218857,0.437533,0.563293,0.470361,0.912589,0.48211,0.345371,0.822724,0.751865,0.854667,0.625952,0.325451,0.311811,0.704837,0.605024,0.602305,0.00864291,0.581215,0.446467,0.192016,0.549306,0.624217,0.490513,0.500491,0.426002,0.0628048,0.225288,0.736422,0.344254,0.697986,0.798322,0.139979,0.757869,0.180617,0.375978,0.0139916,0.802182,0.0882604,0.962077,0.603499,0.117197,0.859541,0.755804,0.919428,0.147959,0.43867,0.754418,0.10239,0.365921,0.263155,0.499999,0.209945,0.393846,0.207487,0.000558019,0.569845,0.530932,0.848113,0.988653,0.721851,0.872717,0.422223,0.828351,0.274413,0.35468,0.824178,0.605223,0.974215,0.103713,0.991081,0.594077,0.90527,0.91965,0.121229,0.877847,0.641014,0.985223,0.267902,0.291419,0.378476,0.527689,0.736568,0.307231,0.892228,0.0930921,0.168364,0.777681,0.333661,0.903132,0.381022,0.617518,0.120309,0.210413,0.52762,0.0266939,0.240192,0.586058,0.728142,0.603758,0.437881,0.0348405,0.80618,0.520404,0.977734,0.40353,0.739419,0.976654,0.184279,0.31159,0.0663156,0.0397384,0.0855119,0.98468,0.77748,0.27677,0.514303,0.811732,0.646535,0.745731,0.710677,0.391803,0.777332,0.617694,0.903768,0.247798,0.228455,0.801412,0.895024,0.898531,0.131635,0.789999,0.0661278,0.722309,0.27643,0.770826,0.889263,0.583467,0.343476,0.478148,0.0223301,0.75038,0.564257,0.432626,0.708244,0.425741,0.0436258,0.0958213,0.08893,0.924426,0.820305,0.657844,0.761049,0.101286,0.98788,0.842092,0.534981,0.189894,0.646089,0.0507936,0.806409,0.528042,0.0131517,0.51997,0.655356,0.0421338,0.734112,0.19981,0.88253,0.887385,0.17755,0.550992,0.161023,0.295103,0.343666,0.653752,0.575515,0.296414,0.628916,0.53884,0.614203,0.97944,0.973838,0.645825,0.247976,0.115475,0.909959,0.609603,0.948972,0.937146,0.284093,0.169995,0.580524,0.658475,0.316283,0.6336,0.545231,0.958221,0.153881,0.371448,0.598107,0.53983,0.630016,0.125286,0.877785,0.810751,0.414403,0.856228,0.743563,0.938652,0.582393,0.932132,0.079943,0.889107,0.0200947,0.139692,0.560548,0.797027,0.0803574,0.155172,0.0722119,0.664491,0.102128,0.908638,0.404945,0.627256,0.826834,0.092017,0.376746,0.715854,0.320011,0.764181,0.730243,0.562184,0.418392,0.419406,0.0852423,0.396957,0.0294938,0.862319,0.339413,0.653591,0.165263,0.406835,0.957483,0.126799,0.0278966,0.174847,0.529441,0.697389,0.0912001,0.380737,0.422847,0.913085,0.433306,0.657958,0.24717,0.110333,0.334473,0.792234,0.308305,0.389284,0.909747,0.864774,0.499566,0.318124,0.653934,0.283044,0.142006,0.752042,0.46997,0.950613,0.938873,0.265165,0.844207,0.999126,0.350569,0.0209195,0.124317,0.706478,0.521236,0.836837,0.130316,0.229958,0.34364,0.649161,0.601874,0.57771,0.537317,0.864173,0.807902,0.698548,0.785601,0.786853,0.955648,0.371335,0.383821,0.381734,0.887255,0.941368,0.131919,0.877433,0.597695,0.532029,0.939906,0.401953,0.31342,0.0660529,0.845779,0.0163144,0.887407,0.87819,0.799733,0.830433,0.29346,0.900851,0.264042,0.138613,0.659065,0.561751,0.925745,0.520086,0.124474,0.428933,0.46538,0.0697365,0.290087,0.285177,0.556309,0.818173,0.97464,0.848022,0.683317,0.110667,0.429535,0.137989,0.312294,0.213987,0.159979,0.218301,0.325334,0.0335761,0.742814,0.800805,0.261534,0.0573316,0.491858,0.671033,0.0670636,0.586811,0.852948,0.313844,0.296453,0.657013,0.507316,0.687704,0.588296,0.273406,0.912573,0.71033,0.712137,0.918811,0.870034,0.176897,0.193854,0.340221,0.941468,0.711114,0.350039,0.499405,0.756506,0.541465,0.855839,0.315402,0.235076,0.264498,0.0169654,0.301911,0.965183,0.317694,0.555553,0.178413,0.835272,0.531028,0.946171,0.106492,0.226011,0.00313264,0.394927,0.548116,0.689276,0.948562,0.188768,0.261452,0.235184,0.521183,0.222589,0.510819,0.304069,0.610534,0.389945,0.995492,0.042683,0.995977,0.893696,0.454147,0.291629,0.140966,0.311595,0.895361,0.0596125,0.416828,0.367332,0.377433,0.0865114,0.393803,0.274767,0.988996,0.00716555,0.933328,0.965771,0.986321,0.5359,0.448383,0.0239005,0.341925,0.0357881,0.052123,0.00763267,0.400884,0.768126,0.526886,0.234478,0.548199,0.515359,0.253078,0.695347,0.156575,0.957257,0.827909,0.254006,0.601995,0.549573,0.624196,0.895586,0.518701,0.351269,0.769283,0.869152,0.153651,0.795504,0.777687,0.286322,0.570664,0.594607,0.399457,0.222144,0.235537,0.402194,0.823552,0.810458,0.913779,0.063347,0.241173,0.851781,0.671478,0.799094,0.414111,0.690556,0.867532,0.790625,0.207932,0.165127,0.245347,0.0454338,0.198686,0.684631,0.550759,0.0537396,0.703179,0.289977,0.0734943,0.460905,0.444391,0.58728,0.41143,0.106756,0.857794,0.481689,0.316386,0.433063,0.973026,0.548968,0.857687,0.0581998,0.960845,0.257074,0.682751,0.703084,0.864275,0.152624,0.265848,0.680646,0.377277,0.47648,0.781848,0.95049,0.0255432,0.591895,0.598206,0.77068,0.546074,0.521388,0.763605,0.82976,0.325985,0.840889,0.588147,0.867864,0.0482923,0.811602,0.340078,0.811115,0.381524,0.387066,0.208834,0.915573,0.767234,0.179778,0.108437,0.93334,0.428172,0.221917,0.249274,0.117374,0.727612,0.426851,0.74706,0.276922,0.752086,0.73125,0.967333,0.140277,0.0800741,0.508029,0.186824,0.00233209,0.51235,0.230078,0.115513,0.152432,0.0852634,0.37089,0.0887591,0.114416,0.00972307,0.376447,0.715844,0.909222,0.769854,0.732408,0.724969,0.842,0.763798,0.195092,0.184612,0.260357,0.82928,0.880482,0.00778198,0.778947,0.205096,0.471584,0.338467,0.271757,0.354675,0.901342,0.373647,0.813376,0.811943,0.208509,0.162605,0.128157,0.133748,0.0440375,0.96864,0.130365,0.57574,0.389969,0.00333893,0.0749296,0.992773,0.458328,0.946532,0.899913,0.537053,0.532771,0.365945,0.269227,0.180174,0.486606,0.546295,0.146332,0.86025,0.224638,0.731203,0.145757,0.026727,0.871597,0.19102,0.484547,0.792985,0.617887,0.710779,0.222167,0.715649,0.491282,0.470945,0.146062,0.422575,0.465136,0.299441,0.168707,0.847908,0.744293,0.953221,0.674861,0.951403,0.2642,0.0207348,0.935076,0.340505,0.854696,0.306976,0.131845,0.349604,0.87294,0.630852,0.412848,0.459323,0.279058,0.798032,0.0870826,0.121093,0.0153744,0.357169,0.9925,0.173661,0.484743,0.0151112,0.658818,0.943066,0.696291,0.989656,0.508749,0.171816,0.147265,0.219067,0.148217,0.0513955,0.490667,0.669037,0.778991,0.128202,0.509025,0.762557,0.28032,0.536358,0.791239,0.846166,0.214373,0.356832,0.782359,0.197869,0.118987,0.786442,0.604783,0.927844,0.72386,0.585614,0.822895,0.697629,0.646506,0.368413,0.0136575,0.716798,0.914091,0.967988,0.39432,0.897539,0.658222,0.292069,0.0428135,0.540997,0.343269,0.190742,0.0865451,0.483687,0.178951,0.772528,0.835967,0.493186,0.677493,0.911618,0.724323,0.748816,0.894035,|0.409998,0.784802,0.723531,0.924819,0.794588,0.0459307,0.864746,0.684593,0.708898,0.559645,0.131522,0.561234,0.191287,0.599449,0.274275,0.452229,0.639943,0.902033,0.331012,0.60267,0.408029,0.547535,0.527377,0.825889,0.444911,0.785631,0.759791,0.548408,0.207129,0.447897,0.562447,0.652308,0.099252,0.161805,0.746427,0.140911,0.586205,0.585004,0.492812,0.618766,0.344456,0.304577,0.725511,0.698819,0.57564,0.657727,0.0295327,0.275072,0.729178,0.864389,0.932473,0.343647,0.346799,0.126743,0.147006,0.769233,0.667763,0.874754,0.153707,0.665215,0.3734,0.712465,0.728492,0.960043,0.802031,0.959415,0.672355,0.873509,0.444099,0.125387,0.823395,0.502872,0.550888,0.547072,0.54269,0.669686,0.107921,0.0307322,0.0267651,0.946299,0.647565,0.258611,0.829673,0.58164,0.599357,0.747507,0.763239,0.0235984,0.0893074,0.0987653,0.23475,0.131561,0.524339,0.457418,0.398105,0.70066,0.817344,0.6113,0.426943,0.912266,0.717742,0.542015,0.517636,0.63094,0.423281,0.820617,0.24239,0.691855,0.829654,0.370605,0.458984,0.951211,0.402101,0.583885,0.510662,0.0709258,0.226017,0.521788,0.44426,0.818214,0.278415,0.206774,0.598952,0.375127,0.334957,0.537027,0.229135,0.610223,0.167493,0.875114,0.579765,0.485899,0.592894,0.106803,0.0969024,0.107914,0.804131,0.581839,0.965273,0.434965,0.00944275,0.0414297,0.958138,0.070832,0.0660453,0.497986,0.771698,0.242965,0.797071,0.824675,0.629131,0.241201,0.0571339,0.915396,0.424126,0.892305,0.697676,0.207897,0.366676,0.960121,0.16436,0.648829,0.17056,0.218625,0.768688,0.243445,0.343711,0.465125,0.602146,0.00351638,0.571028,0.515483,0.331907,0.432576,0.714209,0.3612,0.545336,0.16982,0.556408,0.384458,0.0940676,0.700144,0.207189,0.0971468,0.719942,0.0157464,0.63946,0.172004,0.0285013,0.18237,0.378918,0.847686,0.789653,0.926491,0.998787,0.937613,0.735305,0.713917,0.100553,0.992436,0.885778,0.251028,0.151874,0.56429,0.529737,0.271942,0.0653506,0.149066,0.184803,0.244545,0.328801,0.673473,0.671031,0.0636404,0.114392,0.128078,0.130885,0.484506,0.110432,0.933717,0.719388,0.811178,0.772541,0.739872,0.0953325,0.359597,0.542768,0.665103,0.716253,0.0334446,0.320022,0.607502,0.349135,0.0925574,0.359997,0.0337692,0.639374,0.653059,0.0155904,0.0414345,0.596223,0.802746,0.120398,0.648735,0.511065,0.112763,0.224331,0.774999,0.886913,0.146157,0.920182,0.800316,0.359464,0.00338697,0.764383,0.257913,0.0938674,0.189985,0.0335321,0.22609,3.86238e-05,0.962567,0.300165,0.764013,0.955674,0.996026,0.578593,0.791248,0.125052,0.310603,0.497263,0.481055,0.850477,0.954254,0.650212,0.067664,0.00661111,0.133402,0.916298,0.396002,0.0859433,0.456373,0.452048,0.346394,0.0755213,0.514875,0.565226,0.754281,0.0592659,0.343369,0.0483733,0.760272,0.303434,0.334424,0.785986,0.429779,0.344229,0.281297,0.451634,0.564948,0.870708,0.0386032,0.674429,0.091936,0.787859,0.39197,0.997046,0.455945,0.282903,0.240344,0.626382,0.100889,0.146456,0.846656,0.642773,0.78472,0.292948,0.0221865,0.0614496,0.729512,0.521163,0.423492,0.338597,0.620863,0.0519242,0.652362,0.384918,0.283688,0.981516,0.459218,0.0648758,0.489473,0.563129,0.390532,0.161267,0.690205,0.82128,0.218239,0.13823,0.693996,0.0647715,0.234645,0.1849,0.450054,0.574716,0.774542,0.808422,0.874874,0.0801657,0.427841,0.650649,0.075027,0.121462,0.689676,0.808655,0.409454,0.127876,0.155681,0.0828748,0.28079,0.537759,0.277114,0.691887,0.193648,0.156514,0.505514,0.618249,0.974412,0.0979269,0.263117,0.512785,0.773695,0.762814,0.236822,0.908939,0.799527,0.606189,0.650858,0.796153,0.351005,0.882804,0.623254,0.816586,0.872927,0.518611,0.108695,0.733498,0.793535,0.513731,0.0514854,0.0217075,0.496249,0.475185,0.165677,0.686521,0.117926,0.604558,0.680861,0.74863,0.0249,0.772521,0.172942,0.272241,0.768726,0.900607,0.17791,0.323634,0.562129,0.572198,0.114385,0.349912,0.127655,0.659276,0.908183,0.869796,0.582253,0.563729,0.934825,0.381829,0.363231,0.431354,0.796915,0.403484,0.371787,0.081251,0.968312,0.661976,0.158475,0.53097,0.956918,0.0994056,0.295597,0.112823,0.97929,0.930954,0.720578,0.314336,0.552521,0.295165,0.943251,0.226502,0.406177,0.608035,0.84728,0.588992,0.147367,0.369626,0.796379,0.484558,0.364696,0.074825,0.830984,0.336923,0.233655,0.689534,0.219709,0.426558,0.281876,0.402419,0.182336,0.026105,0.253838,0.148352,0.835986,0.800614,0.347858,0.367617,0.520967,0.0360621,0.0945162,0.291691,0.555369,0.184776,0.522927,0.0474908,0.459856,0.645646,0.664582,0.132258,0.223251,0.278264,0.357183,0.098865,0.465969,0.745376,0.926985,0.782946,0.0880111,0.463576,0.0946859,0.752712,0.668236,0.555209,0.79329,0.799812,0.633422,0.0949622,0.544043,0.763345,0.986293,0.39672,0.591913,0.91876,0.903079,0.306196,0.241929,0.446479,0.113712,0.847106,0.63681,0.141528,0.382532,0.30754,0.314706,0.730606,0.392761,0.592093,0.57124,0.950283,0.871917,0.209545,0.467279,0.891165,0.762809,0.691825,0.265626,0.162058,0.658237,0.704899,0.545118,0.913747,0.247049,0.616768,0.584951,0.621315,0.713946,0.599283,0.861582,0.152486,0.206855,0.813213,0.5431,0.292795,0.915541,0.111215,0.209551,0.487997,0.166704,0.144922,0.662729,0.40906,0.360387,0.49757,0.034377,0.0411363,0.0324544,0.837459,0.781525,0.876176,0.014042,0.639514,0.00793308,0.384434,0.808338,0.225921,0.0485654,0.619184,0.079149,0.928737,0.0912343,0.416247,0.947487,0.727899,0.777839,0.994132,0.507733,0.14618,0.456292,0.520946,0.850652,0.919835,0.269036,0.0680898,0.0466638,0.535028,0.884763,0.25288,0.0718677,0.981046,0.735989,0.525092,0.215531,0.694639,0.53773,0.316805,0.272937,0.375926,0.0866191,0.471947,0.273186,0.454195,0.473854,0.70989,0.446466,0.46033,0.346915,0.5955,0.992642,0.478565,0.331736,0.761051,0.691362,0.409455,0.569573,0.223863,0.332131,0.0881842,0.331572,0.152928,0.544197,0.885505,0.832962,0.120094,0.629038,0.22993,0.442804,0.483998,0.944027,0.776842,0.11414,0.613547,0.824461,0.697121,0.111307,0.125886,0.526458,0.244865,0.126848,0.730146,0.341531,0.894966,0.816933,0.350353,0.101527,0.285943,0.0498096,0.234272,0.378321,0.558366,0.975085,0.871777,0.152769,0.88265,0.692552,0.972137,0.345999,0.208951,0.940066,0.786926,0.0941715,0.226808,0.871672,0.342707,0.28565,0.791847,0.866612,0.341871,0.401349,0.335561,0.0825073,0.33299,0.672078,0.554675,0.617948,0.151321,0.3644,0.364149,0.0980192,0.647616,0.797353,0.688874,0.266926,0.20736,0.679005,0.430293,0.583336,0.479555,0.254527,0.168333,0.0230145,0.771716,0.302184,0.14251,0.0214226,0.00465882,0.232421,0.126218,0.383525,0.622581,0.510616,0.657638,0.572051,0.93374,0.955374,0.706827,0.548235,0.529248,0.201598,0.600089,0.420118,0.705075,0.683744,0.890813,0.0997401,0.133645,0.956327,0.85879,0.990292,0.312258,0.678137,0.208799,0.0759373,0.392478,0.410744,0.0903298,0.906791,0.207591,0.0124323,0.0264496,0.604025,0.383909,0.936265,0.989178,0.183905,0.722447,0.892329,0.676113,0.365649,0.344731,0.583408,0.900445,0.217483,0.99219,0.73562,0.290093,0.230512,0.426363,0.988525,0.304921,0.23265,0.976999,0.310503,0.622736,0.190603,0.554918,0.321662,0.504582,0.541448,0.998477,0.461201,0.40079,0.420415,0.445636,0.940187,0.388872,0.319977,0.755652,0.791591,0.590639,0.999433,0.778026,0.384578,0.407292,0.946741,0.0193646,0.435448,0.667615,0.0154605,0.15035,0.00765902,0.532982,0.211415,0.998584,0.25921,0.751284,0.892119,0.116137,0.322753,0.266409,0.381955,0.991028,0.510237,0.84376,0.692145,0.752894,0.835756,0.91239,0.582163,0.901173,0.790047,0.106798,0.0915809,0.141188,0.336123,0.38929,0.934119,0.537819,0.843303,0.795086,0.658771,0.919995,0.0461724,0.235063,0.797033,0.237797,0.627793,0.576964,0.763542,0.03088,0.260947,0.56925,0.391898,0.226877,0.722842,0.182411,0.473134,0.490811,0.553642,0.626126,0.0899982,0.216111,0.525953,0.321167,0.180646,0.0630171,0.709847,0.783603,0.451329,0.0847251,0.0894075,0.767835,0.252758,0.609141,0.296491,0.688231,0.555535,0.0443405,0.979395,0.408586,0.19611,0.389728,0.608239,0.442112,0.361806,0.217532,0.980003,0.204913,0.963025,0.786,0.694427,0.261545,0.352989,0.10318,0.174784,0.89958,0.99428,0.084654,0.628019,0.66008,0.506162,0.828515,0.0728514,0.0236102,0.391958,0.584169,0.671004,0.499219,0.835765,0.621811,0.113403,0.667535,0.311713,0.632663,0.128859,0.126656,0.517885,0.660072,0.369404,0.541247,0.709277,0.627998,0.930934,0.309143,0.166734,0.197295,0.850003,0.0774951,0.513843,0.61228,0.193911,0.149767,0.335371,0.302494,0.551317,0.598498,0.405262,0.864879,0.0545206,0.670094,0.757536,0.665586,0.114729,0.329505,0.104257,0.306032,0.505391,0.761537,0.258251,0.978802,0.408958,0.964588,0.994919,0.0965635,0.935175,0.397156,0.312205,0.465791,0.0429144,0.819032,0.268426,0.783734,0.475633,0.105212,0.271491,0.701225,0.200106,0.293985,0.525302,0.857426,0.721052,0.981297,0.123683,0.515229,0.667877,0.225501,0.500498,0.90275,0.444133,0.861099,0.477253,0.14678,0.205974,0.37963,0.169246,0.00521725,0.767202,0.65978,0.655351,0.983967,0.0318174,0.713993,0.564234,0.296009,0.28592,0.755715,0.949198,0.724991,0.164294,0.421633,0.252367,0.604606,0.0475084,0.835853,0.871431,0.766678,0.133951,0.411061,0.136907,0.67636,0.540891,0.177259,0.189123,0.475666,0.48461,0.506456,0.648814,0.950754,0.778159,0.00445861,0.404974,0.134864,0.723062,0.869263,0.753927,0.575478,0.72894,0.864041,0.759548,0.2348,0.563222,|0.600364,0.763038,0.946302,0.21266,0.484365,0.866078,0.0126785,0.142049,0.0563866,0.970546,0.895351,0.830623,0.432823,0.803246,0.721475,0.443668,0.53415,0.929899,0.735051,0.633989,0.756545,0.655329,0.446983,0.537922,0.744217,0.590955,0.982752,0.0801925,0.212693,0.529792,0.881091,0.612226,0.476637,0.361292,0.232773,0.218057,0.932544,0.884715,0.778702,0.28718,0.367565,0.408266,0.888741,0.914913,0.344094,0.149063,0.107195,0.251751,0.81298,0.121673,0.164306,0.283359,0.774817,0.427764,0.767686,0.427483,0.862535,0.51859,0.575882,0.479329,0.129677,0.434533,0.75084,0.553206,0.904826,0.676804,0.26679,0.467842,0.177317,0.031188,0.602507,0.990559,0.448491,0.691553,0.00453013,0.199239,0.579769,0.291038,0.425824,0.21837,0.68958,0.721064,0.831239,0.378889,0.636926,0.0183294,0.856323,0.147951,0.0171169,0.343026,0.95573,0.117887,0.182954,0.246163,0.265554,0.261758,0.069217,0.447297,0.533703,0.992015,0.401088,0.0623212,0.956024,0.352886,0.633504,0.405755,0.897481,0.424454,0.841877,0.692598,0.408233,0.981964,0.614927,0.310936,0.759943,0.134221,0.9328,0.594084,0.705298,0.146988,0.811872,0.721786,0.674101,0.929105,0.399197,0.574784,0.959198,0.667321,0.0123146,0.823076,0.650737,0.710613,0.0695035,0.0925502,0.974731,0.887714,0.060474,0.171219,0.0145454,0.526159,0.111009,0.688393,0.910101,0.293546,0.318761,0.0464233,0.426933,0.638216,0.688664,0.194625,0.211169,0.677244,0.308068,0.209862,0.519451,0.194105,0.743669,0.139492,0.723911,0.463134,0.284889,0.548355,0.774376,0.65649,0.811238,0.420096,0.819368,0.597852,0.242128,0.376817,0.605542,0.0180296,0.66706,0.472481,0.300344,0.889427,0.921659,0.704209,0.497831,0.301232,0.510089,0.038772,0.873017,0.13858,0.38617,0.143435,0.853363,0.666749,0.0397288,0.670538,0.474058,0.829444,0.296291,0.458963,0.707702,0.668198,0.542047,0.200586,0.071584,0.997782,0.164281,0.309149,0.197684,0.854694,0.877694,0.676525,0.79894,0.347031,0.139925,0.716063,0.458939,0.223973,0.733361,0.0325798,0.00553191,0.512982,0.651126,0.398719,0.693818,0.0501863,0.286731,0.0320551,0.250241,0.866042,0.960735,0.171428,0.768955,0.292007,0.0791951,0.472304,0.425492,0.192464,0.251939,0.774623,0.786102,0.342121,0.812057,0.044506,0.755721,0.105936,0.476686,0.540882,0.81799,0.318653,0.13997,0.804399,0.353136,0.962978,0.906829,0.553903,0.110923,0.160879,0.503122,0.0533108,0.856443,0.156462,0.844046,0.0226895,0.273099,0.868377,0.0176744,0.264182,0.922914,0.89003,0.738999,0.9448,0.192889,0.152831,0.526053,0.13617,0.988206,0.32319,0.277313,0.12045,0.0759386,0.88227,0.338148,0.604898,0.21083,0.780993,0.305647,0.0234237,0.817279,0.880293,0.347825,0.550427,0.0935773,0.96397,0.355897,0.0257211,0.584161,0.290007,0.207436,0.165443,0.0053193,0.100741,0.373816,0.795488,0.11383,0.591695,0.0600975,0.848445,0.465165,0.653208,0.0733353,0.0508488,0.60412,0.527798,0.485775,0.307932,0.927467,0.773273,0.572241,0.629615,0.349239,0.402526,0.735555,0.644419,0.914593,0.515142,0.542832,0.458836,0.53639,0.578745,0.653777,0.11341,0.935712,0.721063,0.430232,0.0152867,0.246502,0.433062,0.326256,0.364515,0.698289,0.173212,0.734143,0.710122,0.231962,0.207342,0.513722,0.8947,0.221776,0.575211,0.371238,0.27917,0.794047,0.274806,0.383119,0.323288,0.412624,0.585127,0.30707,0.627034,0.801633,0.628457,0.0269796,0.272482,0.665529,0.553486,0.776,0.0886441,0.265837,0.326246,0.431446,0.651031,0.0093503,0.161914,0.565871,0.985042,0.0863992,0.905047,0.70694,0.681371,0.426767,0.470536,0.805503,0.741375,0.11372,0.283329,0.281016,0.542067,0.645349,0.986897,0.0876177,0.813469,0.9858,0.0967574,0.656408,0.293782,0.071021,0.131832,0.343331,0.527395,0.0393837,0.858917,0.595527,0.190929,0.714533,0.267226,0.855658,0.738025,0.53928,0.024749,0.0972952,0.63961,0.312152,0.968298,0.108408,0.382071,0.717464,0.0457758,0.52598,0.287568,0.821326,0.0323818,0.342666,0.242019,0.143196,0.672605,0.105064,0.990826,0.878814,0.58998,0.0741925,0.855765,0.878769,0.331074,0.129344,0.240834,0.616165,0.516226,0.350548,0.0544811,0.978286,0.443915,0.408713,0.0216152,0.434399,0.229908,0.749573,0.795492,0.432056,0.289844,0.142997,0.702123,0.289656,0.674595,0.57586,0.919652,0.991019,0.567428,0.180662,0.92064,0.369732,0.383646,0.955436,0.160447,0.0983289,0.654107,0.452679,0.527819,0.583908,0.328544,0.0277595,0.0557781,0.815646,0.723585,0.817802,0.464961,0.352103,0.0667399,0.398171,0.167058,0.334361,0.10762,0.579943,0.384853,0.118177,0.0509431,0.171976,0.575567,0.940083,0.16008,0.586398,0.0184798,0.501671,0.860567,0.623896,0.286652,0.0874087,0.520497,0.00329584,0.310408,0.790986,0.33163,0.680231,0.115419,0.489536,0.412718,0.884938,0.143122,0.98166,0.021075,0.295148,0.390524,0.844141,0.378627,0.428594,0.27762,0.580073,0.493052,0.381503,0.0800141,0.397304,0.982782,0.756741,0.539431,0.712603,0.0989777,0.0661272,0.775696,0.250851,0.189774,0.471496,0.458978,0.54595,0.324121,0.978579,0.618364,0.386938,0.0140936,0.768818,0.863498,0.964901,0.56621,0.0927423,0.000219882,0.299259,0.803389,0.302072,0.581239,0.511599,0.165635,0.710477,0.532267,0.061473,0.498836,0.718358,0.37365,0.598941,0.139392,0.421875,0.982309,0.480006,0.594363,0.614628,0.600452,0.793475,0.384144,0.526357,0.996892,0.640422,0.176235,0.718896,0.292406,0.751836,0.290622,0.260649,0.156062,0.0211934,0.792781,0.434214,0.0188709,0.951472,0.122332,0.177333,0.0309823,0.394705,0.341835,0.0432183,0.876582,0.675089,0.0499068,0.490103,0.610844,0.221762,0.454411,0.1601,0.849955,0.591922,0.445606,0.591191,0.120342,0.511063,0.594315,0.897163,0.651923,0.171536,0.558796,0.561612,0.206066,0.485665,0.0639875,0.196332,0.976023,0.742891,0.465583,0.158595,0.843653,0.448357,0.73272,0.17731,0.320491,0.457833,0.300435,0.371279,0.451983,0.329597,0.43534,0.888213,0.532921,0.169439,0.819448,0.398962,0.199941,0.827821,0.686835,0.823146,0.939692,0.907078,0.742458,0.951502,0.91707,0.272589,0.34337,0.237789,0.320006,0.773199,0.0866109,0.43586,0.815249,0.792094,0.805456,0.367978,0.50055,0.853858,0.723734,0.0920247,0.965909,0.763445,0.6715,0.281621,0.404859,0.648352,0.480486,0.383926,0.25491,0.353481,0.637591,0.478014,0.611727,0.1507,0.938053,0.365195,0.0139568,0.578388,0.504721,0.298522,0.0100882,0.22039,0.834279,0.595169,0.112366,0.847615,0.829068,0.293305,0.44541,0.190463,0.0299922,0.157232,0.272234,0.983567,0.336563,0.087761,0.475662,0.527821,0.753398,0.363553,0.564942,0.385508,0.234654,0.826085,0.862837,0.90963,0.876681,0.547242,0.00241214,0.843674,0.447765,0.0434515,0.841644,0.935487,0.606477,0.316969,0.60372,0.627081,0.605942,0.0553063,0.395279,0.458807,0.372843,0.788845,0.929452,0.851013,0.0566487,0.174514,0.517783,0.695942,0.639248,0.738596,0.614916,0.79907,0.352092,0.999766,0.389579,0.349339,0.90039,0.811721,0.568334,0.0387235,0.113987,0.204419,0.00766635,0.544213,0.404683,0.306991,0.738142,0.879722,0.513334,0.634596,0.517735,0.286099,0.409877,0.80001,0.0522472,0.607094,0.464468,0.0766492,0.194229,0.612571,0.758619,0.0163482,0.782233,0.184289,0.82645,0.819786,0.0270898,0.574421,0.041737,0.154617,0.0372564,0.212959,0.794728,0.419741,0.835053,0.43843,0.635451,0.335159,0.758408,0.351146,0.450594,0.248083,0.907451,0.278713,0.0213591,0.646406,0.294858,0.155448,0.779148,0.182056,0.500568,0.216068,0.902803,0.0424474,0.0880898,0.712546,0.393581,0.0822856,0.0124313,0.219928,0.701818,0.358969,0.1339,0.145251,0.565674,0.793867,0.644087,0.77192,0.447567,0.20698,0.801192,0.257305,0.673395,0.141152,0.795644,0.501691,0.721009,0.956773,0.988397,0.350988,0.468433,0.104061,0.764786,0.390503,0.618476,0.762797,0.447106,0.437336,0.573475,0.0258171,0.62336,0.851218,0.85634,0.910066,0.198164,0.184583,0.140062,0.589177,0.469127,0.289763,0.674501,0.616613,0.736217,0.549275,0.188077,0.791619,0.0529171,0.467113,0.112353,0.198242,0.973594,0.752285,0.382568,0.637168,0.12547,0.622328,0.0479558,0.978602,0.155242,0.182279,0.777748,0.693232,0.326894,0.979529,0.833406,0.787992,0.661901,0.808705,0.326813,0.334019,0.766327,0.519884,0.471843,0.897616,0.353163,0.54147,0.397252,0.472376,0.892494,0.301242,0.621654,0.858627,0.649437,0.692161,0.270577,0.917643,0.369839,0.304436,0.870328,0.744703,0.363417,0.528999,0.475845,0.221577,0.920113,0.756042,0.0936263,0.112581,0.588875,0.260588,0.0205726,0.871921,0.480062,0.882805,0.0549112,0.542617,0.814186,0.657904,0.193105,0.679351,0.246764,0.413711,0.218751,0.387531,0.251639,0.157676,0.444878,0.908694,0.196345,0.621587,0.710375,0.878316,0.374349,0.514255,0.866158,0.26487,0.545317,0.913518,0.00676107,0.895695,0.692416,0.631679,0.778684,0.326521,0.0534297,0.492683,0.340952,0.597353,0.24021,0.716356,0.930832,0.945283,0.711322,0.601166,0.743382,0.170185,0.6387,0.0973219,0.597651,0.807026,0.891967,0.687156,0.69138,0.990977,0.595943,0.631115,0.373204,0.0216496,0.634523,0.838872,0.051333,0.496345,0.830964,0.537758,0.682016,0.595273,0.83339,0.385013,0.732332,0.0785974,0.906172,0.985289,0.150115,0.521457,0.42598,0.832467,0.11301,0.185344,0.239148,0.0142189,0.583296,0.315101,0.918482,0.617277,0.93441,0.610877,0.498485,0.813908,0.291648,0.916853,0.533716,0.378469,0.390836,0.888302,0.875679,0.0584819,0.949406,0.539402,0.532937,0.641707,0.981377,0.506859,0.626629,0.0693805,0.757783,0.17008,0.0502597,0.919454,0.133735,|0.097021,0.195345,0.960203,0.415811,0.24729,0.787722,0.825899,0.563545,0.746721,0.835606,0.862795,0.731088,0.65399,0.624272,0.508543,0.0613764,0.441159,0.242691,0.706583,0.170357,0.556613,0.388795,0.154399,0.226998,0.591692,0.711375,0.542685,0.482623,0.308559,0.298926,0.956746,0.774669,0.314069,0.525917,0.828074,0.367403,0.617554,0.446748,0.0923046,0.798609,0.438375,0.851458,0.724985,0.11794,0.0358722,0.938991,0.354849,0.0814034,0.676356,0.910727,0.154402,0.15253,0.386262,0.967064,0.942842,0.666101,0.24619,0.988169,0.827102,0.800682,0.905027,0.396112,0.16631,0.350752,0.0957373,0.110777,0.643501,0.232598,0.273834,0.395737,0.940596,0.657852,0.548673,0.654275,0.0241236,0.457528,0.297969,0.843026,0.396653,0.68805,0.294014,0.0347373,0.118387,0.0447035,0.151558,0.0369923,0.337204,0.311771,0.982936,0.0390424,0.898755,0.724994,0.0255841,0.201887,0.37699,0.236638,0.589182,0.995902,0.582577,0.980184,0.986499,0.112208,0.411297,0.127227,0.590101,0.0927736,0.19709,0.463052,0.946741,0.630183,0.616117,0.807631,0.521912,0.208113,0.0394811,0.308534,0.989515,0.304777,0.0935122,0.949277,0.657913,0.415149,0.305302,0.252839,0.385269,0.30561,0.512198,0.236841,0.603879,0.766737,0.728937,0.561043,0.456963,0.992532,0.908319,0.410223,0.970718,0.738716,0.619001,0.957752,0.552893,0.0603583,0.814411,0.303426,0.288822,0.765054,0.3682,0.259717,0.139298,0.919539,0.477008,0.413528,0.0568541,0.501673,0.457979,0.132084,0.411663,0.216216,0.0239748,0.126123,0.744471,0.258431,0.212328,0.4132,0.451861,0.885114,0.418594,0.954306,0.511661,0.107157,0.179931,0.894049,0.529908,0.828059,0.47468,0.604225,0.0385216,0.821118,0.175691,0.518988,0.918074,0.588152,0.856198,0.58445,0.700151,0.601179,0.551608,0.233889,0.0993147,0.487021,0.489512,0.0511292,0.952243,0.216772,0.830152,0.171121,0.356239,0.258998,0.756042,0.654342,0.446629,0.0831565,0.713482,0.992993,0.878059,0.124893,0.528041,0.131093,0.480831,0.0251578,0.853766,0.224887,0.312733,0.819697,0.953331,0.155519,0.823291,0.119977,0.0356277,0.289531,0.17539,0.165199,0.516152,0.221163,0.00255954,0.982001,0.775056,0.499199,0.588287,0.507085,0.106746,0.182086,0.328239,0.477631,0.379576,0.0550003,0.89347,0.410057,0.642578,0.827863,0.722194,0.0193081,0.716796,0.797738,0.134904,0.429129,0.728686,0.655881,0.0414348,0.476784,0.279795,0.10719,0.214082,0.134458,0.490686,0.154937,0.0865463,0.439399,0.0728568,0.123502,0.477432,0.863298,0.592935,0.0603785,0.166842,0.693887,0.59917,0.989639,0.964321,0.376106,0.542624,0.559603,0.517067,0.00693911,0.781785,0.0445641,0.726073,0.298097,0.951874,0.679733,0.130541,0.836932,0.128211,0.0174443,0.212663,0.590279,0.630821,0.168138,0.727072,0.646128,0.619749,0.0451561,0.0287008,0.755897,0.675618,0.725193,0.236833,0.76683,0.531492,0.574193,0.580645,0.511362,0.206494,0.604426,0.305742,0.441957,0.866796,0.58752,0.272027,0.578607,0.980699,0.186719,0.555711,0.792655,0.408033,0.822196,0.0585133,0.803423,0.633842,0.524428,0.787767,0.464163,0.708847,0.961745,0.373508,0.641353,0.179384,0.144526,0.549946,0.0240038,0.979263,0.240635,0.20947,0.0653681,0.658683,0.578603,0.235549,0.798708,0.90798,0.93604,0.60241,0.454152,0.8013,0.862648,0.781825,0.773002,0.994999,0.87747,0.901908,0.967229,0.785545,0.838776,0.944315,0.171703,0.0706798,0.389845,0.727118,0.645988,0.537126,0.255208,0.112497,0.254274,0.52794,0.219732,0.154162,0.231747,0.428019,0.615527,0.667931,0.469704,0.779199,0.944708,0.308788,0.465314,0.772535,0.514945,0.753497,0.225713,0.592818,0.422696,0.73073,0.429054,0.816134,0.411905,0.0342874,0.453759,0.802967,0.257734,0.533771,0.321004,0.25326,0.147121,0.938435,0.346406,0.674684,0.333427,0.595567,0.0989251,0.146991,0.922255,0.357471,0.87982,0.580374,0.66891,0.0296437,0.446053,0.633873,0.17363,0.121942,0.00528449,0.0742505,0.764514,0.6171,0.925499,0.330993,0.917142,0.794582,0.40296,0.330506,0.068717,0.542974,0.523118,0.0699265,0.969877,0.391619,0.0756218,0.928087,0.846759,0.222426,0.630596,0.125705,0.878318,0.530882,0.926238,0.59788,0.263734,0.4482,0.888194,0.0575099,0.877604,0.00022763,0.264443,0.830222,0.71508,0.462721,0.40954,0.0142912,0.173559,0.483928,0.827103,0.636372,0.937232,0.264588,0.853863,0.449781,0.92491,0.827424,0.84678,0.981308,0.767133,0.484959,0.457504,0.391013,0.577646,0.699062,0.53697,0.90756,0.831746,0.0874819,0.814669,0.934992,0.468861,0.133962,0.934735,0.254991,0.81537,0.478964,0.813368,0.780323,0.247899,0.612074,0.727617,0.874273,0.195473,0.0415543,0.0313737,0.248538,0.706534,0.827036,0.594696,0.169762,0.780587,0.16108,0.248254,0.635446,0.44527,0.778598,0.273483,0.665905,0.721923,0.507538,0.195844,0.439181,0.221062,0.51995,0.288339,0.878045,0.928716,0.503849,0.229479,0.522858,0.45664,0.453283,0.710381,0.972342,0.0239363,0.119152,0.317622,0.323235,0.223318,0.545555,0.613881,0.882212,0.294108,0.814582,0.087885,0.793988,0.0248996,0.306728,0.668267,0.0989457,0.920648,0.581208,0.369951,0.01384,0.375824,0.389177,0.465249,0.512083,0.642895,0.936311,0.010999,0.0604215,0.328809,0.50553,0.35471,0.687991,0.471622,0.414437,0.0500444,0.210206,0.763878,0.587145,0.521382,0.643275,0.351857,0.324701,0.324437,0.799948,0.415488,0.823331,0.986854,0.365967,0.182629,0.810128,0.0194297,0.255905,0.278233,0.901384,0.182602,0.574116,0.535603,0.734914,0.404259,0.637009,0.757195,0.19364,0.885203,0.0333612,0.397193,0.322791,0.39462,0.983111,0.817412,0.0935509,0.907559,0.844359,0.242341,0.0466154,0.658831,0.544672,0.437311,0.932792,0.466251,0.377312,0.847087,0.272645,0.166351,0.539808,0.486378,0.645905,0.788638,0.283834,0.883681,0.0999184,0.413453,0.198382,0.682029,0.864822,0.162596,0.190175,0.964176,0.464514,0.0434535,0.543232,0.132432,0.556824,0.508341,0.716535,0.669906,0.0385573,0.0520164,0.592653,0.727615,0.971962,0.319499,0.99579,0.154171,0.372696,0.0779222,0.18694,0.631026,0.436336,0.727944,0.376839,0.312207,0.143029,0.67236,0.737427,0.364774,0.0989771,0.550231,0.920214,0.704694,0.750566,0.893209,0.554208,0.117555,0.0091188,0.0233415,0.255855,0.53412,0.372525,0.489738,0.109024,0.367572,0.957979,0.499005,0.707431,0.809253,0.130961,0.458447,0.180343,0.524619,0.500249,0.4395,0.867447,0.142671,0.11129,0.933029,0.959985,0.149531,0.480625,0.887968,0.457952,0.100782,0.534055,0.950363,0.720176,0.399922,0.103849,0.314455,0.166658,0.576273,0.970552,0.915725,0.383508,0.451987,0.199107,0.515611,0.614643,0.985255,0.758844,0.111005,0.000741541,0.856115,0.118176,0.705201,0.637489,0.621507,0.0589905,0.456732,0.205001,0.0150948,0.17659,0.525875,0.950295,0.278966,0.318685,0.391421,0.626597,0.808796,0.603484,0.282685,0.385278,0.0693668,0.274764,0.649757,0.600269,0.652161,0.238745,0.365293,0.344548,0.200922,0.987037,0.357914,0.349406,0.441534,0.478682,0.534554,0.527763,0.48352,0.0259994,0.749395,0.705162,0.0350686,0.0396485,0.0251229,0.232599,0.761515,0.796594,0.178597,0.571541,0.595166,0.890464,0.832267,0.660578,0.0569203,0.966883,0.0815484,0.728817,0.402236,0.684839,0.863035,0.0273824,0.545005,0.21207,0.784484,0.567005,0.84163,0.737987,0.472004,0.814782,0.568806,0.632189,0.235819,0.0572742,0.59469,0.631428,0.301995,0.109704,0.83696,0.757877,0.235811,0.761461,0.697121,0.504236,0.686436,0.582524,0.626378,0.355998,0.847154,0.190245,0.266007,0.114577,0.320823,0.268369,0.266642,0.240924,0.757237,0.6947,0.0616206,0.0408196,0.735099,0.263621,0.0754996,0.149099,0.431738,0.695389,0.181605,0.401143,0.572259,0.65304,0.843191,0.870523,0.0682833,0.908287,0.80608,0.660424,0.814181,0.615415,0.829784,0.0677435,0.591752,0.017327,0.49113,0.904034,0.120259,0.394487,0.0999968,0.868447,0.304241,0.164188,0.871539,0.773658,0.0559113,0.214088,0.730072,0.0704214,0.338975,0.55896,0.643054,0.539665,0.0753486,0.546946,0.115668,0.905339,0.930543,0.588965,0.393817,0.726382,0.43167,0.857247,0.96473,0.582802,0.447948,0.716429,0.925223,0.16144,0.0803821,0.47051,0.0637666,0.425915,0.537382,0.198416,0.520148,0.67064,0.0193488,0.357379,0.665937,0.0441595,0.681708,0.910106,0.303095,0.0159186,0.551228,0.403652,0.33755,0.465527,0.966957,0.675401,0.652191,0.828026,0.575087,0.316376,0.351544,0.89893,0.352743,0.341348,0.056493,0.492526,0.348759,0.0263429,0.869609,0.580115,0.493175,0.751024,0.486706,0.415458,0.897475,0.100697,0.401181,0.929837,0.0498769,0.26457,0.300337,0.548157,0.304604,0.278335,0.317291,0.515679,0.556931,0.546304,0.0712409,0.329794,0.0893998,0.508011,0.0311194,0.378958,0.80887,0.58869,0.176244,0.948958,0.755421,0.00156599,0.85351,0.672293,0.840924,0.0539051,0.693302,0.886677,0.449665,0.544873,0.0374705,0.928943,0.074979,0.727508,0.981353,0.984329,0.664993,0.27684,0.381056,0.0785565,0.437551,0.637424,0.116142,0.401875,0.430776,0.859086,0.504614,0.168742,0.152005,0.331087,0.00657904,0.488745,0.402113,0.77745,0.314725,0.792405,0.775263,0.369381,0.247562,0.366906,0.942608,0.976953,0.366804,0.263054,0.750991,0.277138,0.316576,0.390539,0.643622,0.219087,0.328728,0.898112,0.00187701,0.973383,0.783227,0.80635,0.704062,0.0119849,0.208999,0.918463,0.516306,0.135771,0.796163,0.043344,0.474134,0.0874129,0.572133,0.35612,0.238226,0.733412,0.944638,0.044189,0.522381,0.520487,0.0198831,0.82982,0.97759,0.315357,0.599319,0.00686264,0.476429,0.685288,0.816254,0.346635,0.550766,0.260852,0.480341,|0.817721,0.398276,0.459384,0.845997,0.567798,0.821866,0.0237256,0.204449,0.496581,0.247238,0.420106,0.558786,0.166821,0.0346319,0.202248,0.407914,0.75682,0.372437,0.966696,0.0121079,0.0710126,0.814339,0.934775,0.945218,0.817676,0.200556,0.963216,0.546511,0.0794069,0.429594,0.950115,0.763787,0.673736,0.18996,0.975778,0.151433,0.873821,0.293939,0.720545,0.754773,0.407049,0.350046,0.0511615,0.775852,0.376174,0.647176,0.934015,0.858676,0.365681,0.528159,0.228763,0.143032,0.701207,0.842155,0.649993,0.266668,0.0570976,0.77635,0.68287,0.760182,0.0499326,0.986808,0.316266,0.0922108,0.6636,0.628538,0.893815,0.0597873,0.76273,0.772974,0.571435,0.078448,0.175789,0.61067,0.635946,0.364243,0.70094,0.555524,0.0251285,0.821266,0.192923,0.348042,0.807926,0.322499,0.0900207,0.444371,0.293422,0.00687695,0.930611,0.522632,0.470627,0.578592,0.901861,0.033978,0.957344,0.918849,0.800829,0.156824,0.915163,0.358157,0.648155,0.322249,0.928484,0.89255,0.201797,0.824726,0.827345,0.840316,0.110613,0.647851,0.95855,0.371585,0.542374,0.986898,0.823975,0.646036,0.239712,0.736122,0.406944,0.547755,0.537165,0.136789,0.460329,0.943376,0.770823,0.423867,0.150081,0.498738,0.595211,0.257189,0.365805,0.125272,0.722898,0.811052,0.634398,0.197264,0.215706,0.330813,0.0246389,0.347543,0.982351,0.792064,0.879229,0.796597,0.292093,0.964551,0.3868,0.453842,0.00995737,0.0743315,0.430548,0.541059,0.719333,0.24567,0.731283,0.885587,0.960312,0.798535,0.557936,0.765745,0.953203,0.64206,0.86442,0.722218,0.272058,0.86949,0.51613,0.742084,0.8714,0.845226,0.598219,0.0799096,0.984007,0.721543,0.83305,0.425461,0.555833,0.182695,0.233063,0.2182,0.247073,0.943031,0.294612,0.33328,0.744115,0.62162,0.858912,0.226771,0.875831,0.391068,0.916844,0.692101,0.855866,0.580543,0.987791,0.6134,0.514407,0.446653,0.45264,0.783882,0.479588,0.881762,0.986557,0.733844,0.157394,0.881066,0.941434,0.81623,0.177136,0.18599,0.649332,0.926699,0.628575,0.728036,0.958556,0.0271675,0.00257301,0.842069,0.619259,0.559627,0.592551,0.929571,0.246121,0.951656,0.537155,0.352242,0.214023,0.605541,0.150311,0.582673,0.794614,0.979624,0.441957,0.224354,0.681833,0.0573189,0.298894,0.508297,0.468828,0.73672,0.236494,0.353411,0.812652,0.415585,0.365875,0.658802,0.342995,0.902236,0.601945,0.565655,0.0305277,0.366457,0.941226,0.282198,0.133562,0.530507,0.103732,0.226546,0.78026,0.457507,0.949566,0.692834,0.0773671,0.842505,0.927768,0.562204,0.299336,0.296117,0.837556,0.154344,0.319301,0.211884,0.837566,0.670127,0.383824,0.945599,0.776657,0.204826,0.218889,0.879181,0.537417,0.286421,0.471992,0.474691,0.239437,0.837874,0.460962,0.21929,0.760533,0.138384,0.548528,0.442125,0.0873855,0.783647,0.492593,0.111453,0.760361,0.467595,0.288626,0.478543,0.212481,0.495315,0.0389764,0.738271,0.593933,0.162471,0.230492,0.294548,0.654061,0.423033,0.879924,0.875703,0.72767,0.0299777,0.874025,0.185511,0.52789,0.719514,0.148754,0.935123,0.164873,0.729389,0.716295,0.345249,0.746693,0.153184,0.44129,0.666207,0.730405,0.514813,0.726213,0.00291175,0.205411,0.345763,0.586415,0.691761,0.613656,0.274424,0.0687811,0.153486,0.713315,0.152019,0.194885,0.640726,0.579928,0.219249,0.485125,0.268845,0.954931,0.0371162,0.704083,0.894394,0.457289,0.38641,0.335283,0.551896,0.936694,0.684956,0.84095,0.134164,0.503404,0.0607526,0.784277,0.658462,0.839661,0.130325,0.078384,0.6353,0.321356,0.220651,0.442728,0.887854,0.0293223,0.127737,0.742056,0.122965,0.0314155,0.689314,0.238114,0.619047,0.103423,0.31093,0.939584,0.425284,0.688818,0.729711,0.2593,0.822753,0.0382903,0.536925,0.115791,0.213931,0.226852,0.180457,0.687012,0.508527,0.7129,0.765425,0.668016,0.433491,0.508782,0.0580176,0.647854,0.576583,0.359763,0.402157,0.928146,0.345031,0.380221,0.872854,0.347397,0.279196,0.081248,0.0634284,0.779434,0.901777,0.357691,0.972617,0.932413,0.279987,0.406867,0.351841,0.190044,0.439313,0.216442,0.532156,0.973777,0.860764,0.564157,0.348332,0.850517,0.588454,0.902869,0.611998,0.0262855,0.0344465,0.80401,0.399065,0.43972,0.728658,0.912175,0.677409,0.773217,0.73866,0.840448,0.705962,0.00459915,0.963918,0.934662,0.901303,0.218475,0.0567598,0.261712,0.0745686,0.107982,0.404673,0.104054,0.0392369,0.386026,0.555027,0.818512,0.365138,0.863389,0.471755,0.515398,0.691293,0.145592,0.889707,0.811145,0.641888,0.426705,0.268677,0.359977,0.162959,0.197463,0.443114,0.321939,0.734931,0.137478,0.478965,0.0136405,0.374652,0.844442,0.423325,0.671932,0.786566,0.0835178,0.634148,0.584706,0.473453,0.817209,0.484461,0.804879,0.906231,0.733896,0.226234,0.118793,0.817008,0.000142038,0.744399,0.503093,0.607267,0.201965,0.345926,0.42568,0.682014,0.948074,0.54199,0.430901,0.936881,0.411592,0.327989,0.595124,0.145804,0.914662,0.383825,0.0786985,0.21252,0.404921,0.613356,0.421947,0.162031,0.198916,0.497621,0.666307,0.146237,0.862404,0.737782,0.529652,0.65973,0.445282,0.508603,0.668431,0.0668638,0.202165,0.553545,0.130919,0.76493,0.461683,0.0302175,0.470085,0.865968,0.880481,0.362792,0.835632,0.708328,0.40238,0.658248,0.844301,0.883251,0.92795,0.662004,0.506338,0.682633,0.844684,0.711854,0.0975506,0.74178,0.373015,0.0416996,0.615039,0.584125,0.560868,0.0587664,0.0799438,0.058727,0.960365,0.073081,0.197028,0.0557731,0.110979,0.767667,0.428324,0.883199,0.0175815,0.144884,0.372977,0.0431915,0.681327,0.249726,0.385509,0.552695,0.752158,0.465545,0.70151,0.849486,0.0684028,0.196549,0.195441,0.777096,0.0697573,0.176556,0.616398,0.562523,0.0361561,0.787199,0.402516,0.0463361,0.537919,0.436278,0.315698,0.350828,0.490839,0.0739796,0.386692,0.435685,0.624958,0.776211,0.0301349,0.643808,0.0627894,0.31295,0.0730038,0.500175,0.627823,0.94666,0.580489,0.501941,0.258383,0.446785,0.883189,0.226554,0.546997,0.150795,0.0246512,0.903358,0.143801,0.0124726,0.0295171,0.911795,0.677142,0.463595,0.792133,0.515311,0.480213,0.326611,0.293309,0.197848,0.545247,0.496126,0.277859,0.713421,0.855024,0.57688,0.88585,0.579514,0.715178,0.604022,0.662143,0.0889035,0.972924,0.851106,0.214622,0.385201,0.502245,0.785315,0.586399,0.475491,0.99126,0.642066,0.960605,0.992189,0.294062,0.20483,0.34184,0.49385,0.469939,0.331373,0.958983,0.985171,0.193741,0.967628,0.587852,0.0231474,0.00640243,0.387988,0.985688,0.0203195,0.0530196,0.826825,0.79692,0.260149,0.925224,0.56806,0.889968,0.46077,0.192687,0.79309,0.849603,0.294488,0.599084,0.631444,0.126641,0.924118,0.708068,0.763648,0.966601,0.48179,0.940165,0.872502,0.852082,0.374363,0.865944,0.64968,0.3433,0.407543,0.656275,0.217916,0.632974,0.772357,0.966434,0.184338,0.299277,0.710967,0.337444,0.947024,0.113388,0.888659,0.531632,0.997253,0.464234,0.0690268,0.270391,0.851334,0.40037,0.652261,0.58329,0.753385,0.0907796,0.140754,0.219929,0.790111,0.630026,0.34697,0.430465,0.876502,0.128705,0.491149,0.567074,0.222855,0.0376949,0.82407,0.946958,0.43741,0.600092,0.749901,0.155998,0.673432,0.998664,0.436581,0.00449961,0.609993,0.48333,0.790167,0.303383,0.145202,0.265458,0.66998,0.408591,0.724658,0.809417,0.0546073,0.0535635,0.953421,0.548052,0.403663,0.00768471,0.824135,0.795423,0.104399,0.806127,0.8021,0.737123,0.255376,0.44891,0.390661,0.353359,0.037571,0.825235,0.546569,0.133401,0.109854,0.0714102,0.680727,0.745701,0.307433,0.53695,0.25536,0.862837,0.649139,0.563129,0.255649,0.748205,0.642584,0.692996,0.279781,0.325331,0.65978,0.137107,0.399521,0.457017,0.220064,0.621748,0.552111,0.80574,0.199707,0.855289,0.0195042,0.956489,0.526145,0.439362,0.83377,0.83148,0.731982,0.791798,0.9928,0.778076,0.0697126,0.121537,0.332286,0.977541,0.422928,0.405795,0.667177,0.525031,0.961254,0.534076,0.160357,0.458207,0.662555,0.204907,0.764061,0.120912,0.929704,0.194237,0.0483168,0.16294,0.693899,0.228881,0.0825477,0.979915,0.0465912,0.576969,0.68958,0.914249,0.375534,0.434868,0.356127,0.859029,0.864629,0.81282,0.444221,0.924994,0.380744,0.879376,0.158375,0.328744,0.876032,0.0573483,0.639131,0.0327287,0.523348,0.918951,0.947549,0.431312,0.329999,0.485964,0.369054,0.655212,0.62727,0.0445102,0.42039,0.385284,0.713964,0.544505,0.199818,0.85281,0.476615,0.473275,0.124531,0.827828,0.501257,0.575211,0.560321,0.499049,0.375526,0.877097,0.227507,0.473786,0.518414,0.126089,0.231999,0.507092,0.0793925,0.556912,0.051572,0.813829,0.824034,0.870649,0.272392,0.815946,0.0813944,0.156082,0.139681,0.415232,0.771053,0.837142,0.176962,0.637209,0.666978,0.308003,0.316914,0.44916,0.634488,0.932539,0.93752,0.564464,0.138902,0.0209676,0.631605,0.93417,0.959928,0.647756,0.0332281,0.472186,0.491183,0.45155,0.196968,0.402362,0.182275,0.0474215,0.148604,0.385448,0.59686,0.562662,0.289825,0.714248,0.907535,0.198619,0.354082,0.322766,0.677686,0.137439,0.511509,0.602144,0.254368,0.671035,0.751527,0.964816,0.0548731,0.969198,0.392755,0.720824,0.910369,0.598431,0.220907,0.771884,0.61692,0.90018,0.0686678,0.0677532,0.18595,0.755403,0.236224,0.903346,0.366522,0.21472,0.107596,0.622687,0.896849,0.654269,0.0517924,0.677406,0.905645,0.640469,0.563145,0.0218754,0.0697998,0.0901074,0.423048,0.848398,0.808777,0.895913,0.562579,0.154406,0.0725534,0.23989,0.904975,0.090492,0.346226,0.265657,0.136185,0.957816,0.779147,0.278785,0.0624826,0.861451,0.355418,0.11092,0.379753,|0.19537,0.474776,0.339966,0.243672,0.384944,0.866969,0.85302,0.463431,0.246555,0.146004,0.0783941,0.901803,0.939845,0.142627,0.171297,0.302417,0.639214,0.318076,0.788358,0.704114,0.409537,0.66618,0.371766,0.367608,0.323211,0.472731,0.626646,0.490184,0.540459,0.749402,0.151186,0.583171,0.00443673,0.22295,0.663219,0.163583,0.559871,0.527455,0.829863,0.161706,0.418027,0.912495,0.81542,0.112582,0.1072,0.87599,0.279717,0.262372,0.969565,0.414355,0.943128,0.952917,0.631674,0.97873,0.867352,0.628824,0.213566,0.657051,0.11818,0.524764,0.0890579,0.659038,0.520578,0.803493,0.870549,0.00207818,0.0655302,0.841343,0.940708,0.11593,0.224318,0.684075,0.355511,0.697145,0.827602,0.797241,0.215802,0.817361,0.24113,0.914825,0.512528,0.900887,0.478211,0.105026,0.440945,0.673793,0.565239,0.034094,0.777979,0.0632845,0.86154,0.0234866,0.562122,0.999366,0.265121,0.537282,0.46505,0.525928,0.765901,0.575819,0.869253,0.0201482,0.253418,0.689575,0.21291,0.903043,0.740134,0.210956,0.16882,0.251228,0.937639,0.184136,0.034061,0.677151,0.86839,0.184328,0.74516,0.00622672,0.190364,0.433916,0.239392,0.472163,0.317508,0.554549,0.951434,0.821288,0.69831,0.274748,0.0322919,0.581294,0.72782,0.342621,0.568375,0.664957,0.514127,0.12453,0.509006,0.738229,0.772089,0.980533,0.555168,0.241062,0.105944,0.219814,0.82751,0.760527,0.16017,0.827288,0.465303,0.550987,0.160346,0.943815,0.512304,0.656577,0.664525,0.999517,0.560603,0.308772,0.625248,0.545268,0.814384,0.586338,0.709035,0.354714,0.135367,0.802493,0.522691,0.269799,0.330572,0.647388,0.724541,0.671226,0.28025,0.0682157,0.945563,0.240145,0.350399,0.670467,0.608553,0.375113,0.729913,0.921974,0.859744,0.00112629,0.263764,0.886204,0.795679,0.646926,0.189683,0.966036,0.837475,0.269692,0.0650119,0.0189389,0.930121,0.450368,0.999965,0.0136786,0.0639054,0.731642,0.236176,0.435928,0.37739,0.995937,0.808819,0.752996,0.942054,0.107174,0.347756,0.211384,0.939152,0.871439,0.542183,0.706001,0.692849,0.0662019,0.0615087,0.112135,0.397866,0.529728,0.135528,0.758211,0.937088,0.415341,0.701743,0.54888,0.922191,0.641078,0.789804,0.509274,0.471826,0.103089,0.641175,0.651324,0.0361801,0.339163,0.782863,0.0376768,0.0475103,0.545226,0.347617,0.772643,0.934032,0.472299,0.328978,0.539932,0.317428,0.641317,0.340785,0.133809,0.172634,0.427225,0.452775,0.931376,0.852466,0.251679,0.137417,0.110754,0.31254,0.191134,0.128523,0.313988,0.171835,0.667172,0.0810753,0.836072,0.187315,0.990211,0.330503,0.35911,0.879235,0.115108,0.849672,0.262127,0.395004,0.524296,0.597031,0.400602,0.0889682,0.353902,0.247472,0.823996,0.0109388,0.351523,0.24941,0.609145,0.306245,0.0561156,0.0856155,0.145703,0.282849,0.0447016,0.483211,0.5639,0.0195145,0.0046612,0.374487,0.496569,0.608863,0.185134,0.905538,0.997633,0.957763,0.813909,0.530001,0.360051,0.341914,0.564706,0.334463,0.475802,0.845294,0.812751,0.793304,0.0559376,0.40736,0.0208322,0.0699943,0.909786,0.146746,0.896481,0.648991,0.981171,0.885989,0.593909,0.379614,0.514846,0.735542,0.843766,0.935787,0.689135,0.923215,0.841718,0.688738,0.794149,0.929084,0.553296,0.0826479,0.3244,0.711908,0.250634,0.0112793,0.422348,0.346059,0.268331,0.44963,0.869064,0.401235,0.376415,0.0361923,0.90605,0.37052,0.938031,0.450587,0.787899,0.987944,0.450014,0.192887,0.732591,0.0716864,0.501745,0.602986,0.616798,0.118657,0.189961,0.116628,0.346881,0.364627,0.825522,0.920604,0.192088,0.177567,0.152019,0.099035,0.179486,0.971679,0.0180309,0.0776021,0.634841,0.00485486,0.114976,0.946263,0.357601,0.145863,0.463018,0.756307,0.966854,0.508786,0.226917,0.0381446,0.18273,0.588242,0.72635,0.694352,0.345676,0.623692,0.333605,0.508672,0.366607,0.878914,0.0829579,0.0439067,0.630832,0.433697,0.523295,0.0409042,0.276044,0.832266,0.81331,0.214985,0.592907,0.240806,0.376606,0.885116,0.975118,0.0615796,0.267293,0.73719,0.0444139,0.19401,0.885784,0.659589,0.637827,0.304232,0.067452,0.625839,0.774075,0.944513,0.500399,0.310222,0.34018,0.778715,0.711714,0.33011,0.639782,0.0529954,0.918448,0.565378,0.444883,0.999007,0.631609,0.787822,0.184741,0.292878,0.803651,0.888484,0.279877,0.427002,0.732566,0.3026,0.577871,0.559076,0.715555,0.473398,0.363154,0.641943,0.386189,0.92482,0.290872,0.897918,0.324907,0.862727,0.479943,0.956695,0.553077,0.619744,0.775834,0.788107,0.290046,0.169457,0.0643021,0.43877,0.54007,0.559713,0.513325,0.503797,0.664695,0.315091,0.0860277,0.295947,0.864012,0.90201,0.97689,0.357647,0.792201,0.92418,0.210808,0.911754,0.8912,0.903975,0.365501,0.013101,0.832069,0.359654,0.00857699,0.500648,0.95561,0.550891,0.629413,0.00660038,0.639166,0.882735,0.955197,0.237913,0.19606,0.27222,0.66583,0.712384,0.118599,0.0466489,0.84508,0.0268055,0.388107,0.962076,0.573167,0.468571,0.731372,0.419082,0.916602,0.997174,0.0994977,0.130318,0.115043,0.97919,0.349122,0.0200637,0.141593,0.746359,0.330949,0.387442,0.403157,0.175551,0.863129,0.0135323,0.289587,0.584198,0.775751,0.976916,0.526227,0.789867,0.423686,0.534715,0.544674,0.518309,0.49664,0.811066,0.0618696,0.350634,0.729752,0.258047,0.529975,0.451056,0.352119,0.383603,0.862093,0.670295,0.322759,0.403274,0.900809,0.542811,0.500018,0.625969,0.279801,0.631615,0.600717,0.0210686,0.853728,0.620911,0.234575,0.0211316,0.819592,0.00246763,0.329162,0.412437,0.65976,0.875213,0.0742452,0.886395,0.77206,0.30655,0.468735,0.448688,0.017028,0.962127,0.744147,0.493956,0.761041,0.416222,0.171348,0.394295,0.168836,0.672153,0.901198,0.529805,0.860627,0.629121,0.654879,0.562091,0.0817736,0.0359731,0.606344,0.0122785,0.198643,0.616799,0.326028,0.394808,0.520641,0.421564,0.308023,0.101536,0.250148,0.169249,0.160813,0.0328391,0.49918,0.616919,0.814327,0.124705,0.225301,0.443439,0.575612,0.0543739,0.237897,0.121167,0.94109,0.822371,0.719293,0.401482,0.511918,0.478215,0.829776,0.545109,0.88902,0.558518,0.570164,0.370049,0.138835,0.935495,0.137997,0.681805,0.500078,0.294543,0.816701,0.263507,0.919139,0.24774,0.934912,0.422176,0.770012,0.0478632,0.0185953,0.561872,0.288985,0.843656,0.975684,0.562688,0.356628,0.677284,0.0583534,0.0489716,0.358293,0.696322,0.99654,0.459879,0.124809,0.393185,0.908148,0.527739,0.665317,0.501943,0.00668859,0.452476,0.218721,0.907087,0.626121,0.134459,0.696604,0.208485,0.898977,0.965827,0.789751,0.579202,0.856996,0.617408,0.576614,0.936408,0.686005,0.755934,0.168672,0.543535,0.00284028,0.387973,0.855541,0.642537,0.552647,0.368411,0.338011,0.0835057,0.639599,0.556288,0.379321,0.810027,0.19986,0.252056,0.272974,0.693243,0.329447,0.923419,0.479462,0.969787,0.0736584,0.330999,0.61813,0.232042,0.310939,0.523028,0.126831,0.262512,0.440973,0.352362,0.00851649,0.465777,0.437117,0.726012,0.959809,0.270164,0.0679621,0.659804,0.986151,0.135776,0.405743,0.346126,0.290314,0.886905,0.781523,0.989927,0.923016,0.942279,0.518195,0.0112426,0.179766,0.444598,0.500246,0.460835,0.96952,0.662299,0.299089,0.15231,0.30615,0.766451,0.812604,0.766237,0.348497,0.270381,0.0759878,0.164755,0.851387,0.997272,0.905484,0.0243251,0.420135,0.281027,0.463635,0.548939,0.954271,0.00604856,0.796263,0.118579,0.60117,0.0196299,0.849113,0.278416,0.388837,0.0298162,0.798562,0.275502,0.612119,0.560249,0.040282,0.342382,0.428427,0.732621,0.429827,0.536772,0.110745,0.392801,0.355319,0.584162,0.63323,0.389716,0.962307,0.736115,0.161426,0.166212,0.937041,0.459388,0.637765,0.292865,0.85417,0.333295,0.8646,0.752138,0.80829,0.971103,0.766332,0.58674,0.898242,0.461201,0.409755,0.317661,0.901212,0.307132,0.918562,0.597915,0.453274,0.354672,0.0825912,0.42963,0.735381,0.465174,0.89309,0.295934,0.35997,0.594858,0.203233,0.575749,0.755846,0.420994,0.221935,0.903973,0.2342,0.906061,0.855983,0.601597,0.453028,0.377089,0.43895,0.0475667,0.737057,0.0333272,0.905122,0.176749,0.637488,0.400052,0.139301,0.843773,0.360027,0.0536068,0.45716,0.822345,0.316597,0.541185,0.500586,0.18299,0.881139,0.486493,0.557009,0.900049,0.932282,0.120477,0.711303,0.839678,0.385549,0.915584,0.439238,0.749686,0.102687,0.053699,0.184671,0.244849,0.493889,0.822691,0.131395,0.479161,0.32024,0.566782,0.690039,0.317474,0.704542,0.543797,0.777448,0.117755,0.926968,0.558553,0.96575,0.618071,0.311719,0.437643,0.839845,0.621201,0.779363,0.195863,0.897665,0.46827,0.72527,0.420807,0.891882,0.268941,0.433669,0.70584,0.408915,0.0922712,0.323536,0.898879,0.942054,0.903813,0.704177,0.645684,0.271931,0.61226,0.415845,0.310183,0.239213,0.83694,0.527888,0.333161,0.8757,0.660443,0.0632327,0.146837,0.255156,0.404642,0.530296,0.784494,0.750271,0.485996,0.688612,0.775837,0.130971,0.319841,0.224663,0.158529,0.850786,0.735425,0.71045,0.205337,0.218995,0.0129354,0.45732,0.799596,0.975035,0.952614,0.907272,0.668151,0.0642238,0.158415,0.900131,0.787536,0.806304,0.461687,0.0766874,0.646641,0.94938,0.495613,0.348189,0.393868,0.171825,0.120882,0.108722,0.0498711,0.113884,0.456143,0.998074,0.488846,0.315317,0.491413,0.69241,0.739681,0.578341,0.198322,0.428299,0.13055,0.734865,0.797879,0.717008,0.919547,0.917428,0.414657,0.941374,0.0721561,0.0931835,0.564672,0.811049,0.704798,0.813258,0.0389301,0.398229,0.756675,0.41308,0.127541,0.262547,0.565141,0.670656,0.486441,0.586912,0.0498991,0.906101,0.0136316,0.540637,0.783555,0.00100642,|0.736565,0.251835,0.175583,0.084599,0.839847,0.725742,0.846137,0.276276,0.76582,0.380241,0.256749,0.984294,0.00101447,0.744375,0.415629,0.459372,0.698714,0.301316,0.274698,0.241125,0.638552,0.577893,0.914894,0.286965,0.554691,0.434475,0.207304,0.801413,0.004673,0.427607,0.880807,0.158162,0.832796,0.0377086,0.70716,0.072014,0.710515,0.963118,0.0810255,0.695937,0.740396,0.140157,0.522204,0.538896,0.399217,0.929605,0.543089,0.753483,0.0656396,0.315898,0.242911,0.33782,0.569951,0.110898,0.637984,0.581525,0.806434,0.630647,0.907849,0.812975,0.237203,0.466126,0.917742,0.867542,0.86461,0.521634,0.159649,0.902607,0.529511,0.799365,0.586172,0.0595575,0.754143,0.279971,0.00663596,0.230436,0.600627,0.81356,0.640628,0.805465,0.518467,0.135554,0.589639,0.63804,0.983872,0.690465,0.330323,0.691377,0.952746,0.0512092,0.883129,0.637857,0.240738,0.770101,0.172811,0.140607,0.294132,0.872696,0.448989,0.999081,0.141224,0.507046,0.171688,0.199471,0.157426,0.0559151,0.991146,0.068684,0.526985,0.327745,0.158362,0.320852,0.000509739,0.676655,0.257631,0.456113,0.932348,0.24576,0.587139,0.69873,0.111892,0.733905,0.140243,0.367283,0.618266,0.757037,0.0333189,0.544499,0.510989,0.841938,0.121784,0.852129,0.394506,0.666936,0.277135,0.844807,0.869423,0.958243,0.663386,0.246851,0.557856,0.601381,0.174254,0.72848,0.498971,0.2338,0.932716,0.213394,0.354775,0.527411,0.370014,0.639171,0.641646,0.56916,0.352393,0.858424,0.825977,0.982324,0.161263,0.15953,0.19971,0.207283,0.964882,0.167963,0.703189,0.613422,0.446932,0.639114,0.321145,0.0652341,0.517344,0.215828,0.466776,0.526306,0.78642,0.579545,0.496645,0.585151,0.236069,0.325565,0.350301,0.287857,0.980915,0.418709,0.627528,0.881946,0.156257,0.783813,0.186566,0.676591,0.164514,0.380101,0.675364,0.720468,0.0644994,0.0231776,0.834176,0.00896543,0.229604,0.593847,0.837544,0.327386,0.32602,0.0249132,0.540113,0.268481,0.322438,0.513888,0.345578,0.331211,0.305619,0.110768,0.97828,0.139014,0.349081,0.593331,0.698939,0.438945,0.168832,0.201649,0.839635,0.736458,0.428527,0.615389,0.0445432,0.158745,0.833155,0.867193,0.858831,0.514087,0.668071,0.734112,0.131517,0.669722,0.519712,0.572074,0.516121,0.922225,0.283327,0.10475,0.942169,0.437538,0.877566,0.701138,0.421084,0.0435066,0.686439,0.498691,0.397466,0.801196,0.796869,0.632945,0.80523,0.841939,0.60927,0.102892,0.0931011,0.667677,0.452435,0.727006,0.435935,0.673744,0.694003,0.324489,0.651228,0.381845,0.933435,0.558431,0.342362,0.930849,0.917715,0.959969,0.687994,0.272802,0.122475,0.748484,0.708774,0.394858,0.375927,0.462189,0.458721,0.7139,0.442193,0.101264,0.222187,0.265128,0.474276,0.37693,0.631112,0.905028,0.592767,0.238163,0.187494,0.233869,0.431459,0.0592659,0.234608,0.753949,0.919384,0.893557,0.206625,0.149201,0.361595,0.2323,0.887515,0.933724,0.0400227,0.594942,0.824936,0.196449,0.919413,0.00717628,0.246876,0.45631,0.969821,0.23611,0.556143,0.106134,0.399838,0.365204,0.0412171,0.812076,0.959943,0.0316714,0.0302464,0.385594,0.283289,0.729785,0.6116,0.743516,0.302143,0.0924035,0.147136,0.88464,0.995534,0.926111,0.553044,0.359153,0.217698,0.906938,0.423052,0.110232,0.51803,0.499737,0.857956,0.0296283,0.0324179,0.601219,0.551799,0.734547,0.783308,0.220229,0.901772,0.559284,0.418336,0.368609,0.49101,0.341464,0.303728,0.445746,0.670048,0.168014,0.195541,0.577925,0.863627,0.129661,0.986139,0.257501,0.623659,0.680687,0.979889,0.220932,0.447518,0.72587,0.35201,0.13423,0.53198,0.954253,0.118619,0.457657,0.051165,0.863608,0.680766,0.714787,0.161977,0.462994,0.670267,0.190446,0.978235,0.788669,0.703637,0.292932,0.130879,0.66603,0.608899,0.400501,0.367517,0.383013,0.258641,0.24335,0.395346,0.0557973,0.316241,0.453305,0.213922,0.836591,0.148849,0.37313,0.24252,0.385883,0.318034,0.636251,0.692601,0.681004,0.545392,0.52256,0.474375,0.486479,0.588072,0.407382,0.322908,0.0586284,0.118148,0.177526,0.846566,0.608715,0.725915,0.0256081,0.028415,0.76144,0.436301,0.756961,0.147894,0.454646,0.937714,0.842535,0.249488,0.651995,0.0109833,0.795674,0.176724,0.854087,0.500924,0.501417,0.830755,0.791695,0.20359,0.509458,0.28376,0.999276,0.7603,0.431554,0.846263,0.91158,0.331625,0.880593,0.489896,0.0445724,0.0387499,0.135556,0.842524,0.487386,0.121074,0.860225,0.719318,0.26861,0.39696,0.877076,0.961116,0.759976,0.039797,0.277014,0.469216,0.439494,0.927398,0.224859,0.379395,0.794772,0.218757,0.648265,0.109913,0.483343,0.640815,0.640434,0.0188828,0.0673239,0.40581,0.852903,0.781263,0.0214912,0.303707,0.426982,0.260595,0.777489,0.300763,0.393483,0.294142,0.392397,0.548687,0.334531,0.773643,0.339692,0.435591,0.983748,0.106554,0.99179,0.910531,0.939011,0.85701,0.468535,0.0630306,0.556095,0.317535,0.324102,0.0428703,0.781309,0.708502,0.615449,0.584622,0.329637,0.303395,0.840735,0.238248,0.242224,0.649771,0.214431,0.939775,0.339636,0.973669,0.427027,0.258326,0.81432,0.324723,0.657462,0.739078,0.607553,0.299051,0.506639,0.603913,0.555252,0.443209,0.713321,0.354551,0.702197,0.989675,0.0697739,0.807963,0.0441973,0.984921,0.164026,0.485424,0.215433,0.952323,0.915895,0.375034,0.864764,0.798747,0.0430358,0.604748,0.531169,0.277293,0.129531,0.144129,0.22231,0.0184601,0.23941,0.384374,0.135242,0.55937,0.386152,0.173823,0.0937677,0.957582,0.461784,0.433446,0.686531,0.809286,0.563724,0.780123,0.859935,0.0132197,0.644777,0.561888,0.829496,0.571179,0.567287,0.478334,0.925211,0.358383,0.20568,0.662281,0.24351,0.157709,0.591247,0.592792,0.870875,0.93049,0.444327,0.597384,0.688322,0.0681628,0.304483,0.840627,0.494566,0.58851,0.362246,0.202033,0.657881,0.253525,0.588761,0.283303,0.44723,0.788471,0.51162,0.33744,0.0335851,0.107127,0.596531,0.297693,0.230586,0.846962,0.749328,0.324953,0.786603,0.637198,0.462525,0.602221,0.967392,0.375927,0.762779,0.175622,0.784874,0.0610338,0.358319,0.519198,0.067436,0.0113599,0.831565,0.372478,0.643942,0.156908,0.0336941,0.835925,0.642028,0.0969006,0.402906,0.443228,0.417533,0.748997,0.024574,0.175068,0.803468,0.026336,0.710796,0.126653,0.706069,0.479571,0.8144,0.173785,0.649038,0.490575,0.141259,0.980969,0.175837,0.678441,0.241732,0.361568,0.736075,0.622572,0.397378,0.411068,0.0398449,0.831991,0.623642,0.801629,0.634253,0.369849,0.119858,0.829845,0.153378,0.969101,0.957764,0.538634,0.0797523,0.187336,0.711232,0.991505,0.76856,0.786216,0.902452,0.573382,0.877763,0.604938,0.706352,0.698357,0.50152,0.328494,0.618976,0.811923,0.0022707,0.530017,0.236641,0.955479,0.880957,0.682845,0.658899,0.530775,0.518608,0.724371,0.321216,0.8248,0.217114,0.591845,0.139125,0.967971,0.935262,0.0199357,0.0398624,0.233641,0.275235,0.342117,0.187275,0.267391,0.108688,0.834432,0.290692,0.386087,0.181024,0.174851,0.372834,0.23172,0.347379,0.348378,0.668674,0.849892,0.276212,0.527159,0.672217,0.437958,0.101476,0.380764,0.940746,0.846474,0.976333,0.207148,0.812737,0.679859,0.938447,0.85771,0.616983,0.422591,0.151621,0.536129,0.852827,0.0521635,0.838278,0.708688,0.490796,0.233467,0.586544,0.220638,0.21544,0.646074,0.555221,0.512795,0.498843,0.925588,0.552876,0.943806,0.812797,0.677916,0.693282,0.740766,0.254532,0.414625,0.965162,0.638769,0.302611,0.219145,0.232286,0.599359,0.71732,0.898698,0.961101,0.221938,0.555878,0.0146143,0.261157,0.14079,0.116246,0.868829,0.292205,0.488968,0.621043,0.709403,0.0157121,0.538936,0.414378,0.509403,0.790394,0.132397,0.333285,0.777547,0.343681,0.262046,0.814256,0.0709553,0.696046,0.112039,0.745582,0.487333,0.331438,0.275787,0.192583,0.244212,0.612996,0.486651,0.0339822,0.756028,0.370833,0.364903,0.973164,0.735054,0.212499,0.300726,0.306234,0.954053,0.286546,0.499737,0.719986,0.1908,0.759186,0.00666928,0.990164,0.263859,0.872678,0.549351,0.426165,0.930873,0.0216485,0.148518,0.376407,0.927929,0.187881,0.710349,0.923458,0.682571,0.368629,0.81861,0.410438,0.0267523,0.661993,0.909628,0.461818,0.422956,0.185808,0.866382,0.0527924,0.372339,0.748828,0.59626,0.145253,0.541519,0.288561,0.183324,0.325554,0.416749,0.167772,0.529541,0.680044,0.771205,0.123527,0.876533,0.550919,0.816883,0.842104,0.25163,0.948856,0.0461232,0.804597,0.35243,0.852973,0.484564,0.758154,0.905831,0.558352,0.80328,0.128913,0.910197,0.889284,0.36841,0.90771,0.532759,0.198577,0.941065,0.693048,0.524531,0.224524,0.362926,0.806861,0.653137,0.365716,0.132201,0.311435,0.410201,0.597129,0.453358,0.989248,0.725853,0.591902,0.315188,0.177615,0.0138367,0.391145,0.940437,0.693487,0.775896,0.967438,0.609341,0.374172,0.171793,0.36124,0.849702,0.581499,0.943873,0.765222,0.420776,0.0228531,0.315445,0.0525157,0.510207,0.212798,0.917996,0.71595,0.278592,0.227302,0.0331191,0.701495,0.282,0.20446,0.790586,0.309536,0.120966,0.440339,0.272566,0.592224,0.989892,0.0954905,0.761075,0.110249,0.967235,0.430039,0.00576651,0.295813,0.566959,0.31489,0.76906,0.961491,0.87302,0.44174,0.55196,0.894275,0.0212628,0.991633,0.567223,0.751732,0.802877,0.11611,0.846857,0.387328,0.493728,0.531281,0.572549,0.210967,0.563849,0.994825,0.896086,0.559195,0.193202,0.712169,0.240525,0.440392,0.442069,0.854055,0.475025,0.405757,0.28524,0.66626,0.867307,0.0269367,0.8913,0.398911,0.282364,0.319254,0.357244,0.880216,0.351594,0.61328,0.168712,0.697025,|0.816977,0.761473,0.569853,0.0631453,0.053656,0.534909,0.987703,0.753727,0.158293,0.301526,0.546777,0.406726,0.493477,0.347081,0.105898,0.643246,0.887444,0.824277,0.314689,0.480408,0.30229,0.995563,0.294857,0.644213,0.558851,0.00927299,0.883211,0.565197,0.259179,0.963703,0.860871,0.717812,0.0610114,0.331615,0.0164698,0.299196,0.231395,0.386126,0.6925,0.269644,0.087278,0.0346286,0.704479,0.432559,0.780437,0.967812,0.522243,0.478976,0.460658,0.674435,0.0707276,0.943934,0.204773,0.583069,0.845634,0.061103,0.29103,0.604825,0.539502,0.310679,0.661063,0.393689,0.272569,0.8535,0.243075,0.679573,0.613746,0.825056,0.907584,0.579847,0.572852,0.325114,0.0394476,0.25231,0.816276,0.968399,0.915445,0.00657815,0.573601,0.20973,0.384487,0.391583,0.562868,0.587139,0.21072,0.376925,0.967714,0.728192,0.580184,0.259925,0.137569,0.254646,0.678536,0.455057,0.981242,0.326954,0.492188,0.373415,0.303394,0.234227,0.55635,0.272965,0.519376,0.44786,0.40032,0.113774,0.544576,0.427678,0.474078,0.73298,0.266528,0.512186,0.294652,0.675909,0.722992,0.324005,0.0963444,0.0561845,0.121539,0.710244,0.14002,0.351116,0.36824,0.318417,0.309826,0.934108,0.130472,0.351103,0.585761,0.918196,0.466679,0.571129,0.033398,0.834577,0.308668,0.924286,0.330931,0.557878,0.103662,0.925375,0.395486,0.783238,0.967708,0.375547,0.38773,0.24648,0.265233,0.0383148,0.220996,0.0890362,0.147107,0.156062,0.682365,0.313174,0.654944,0.224072,0.644923,0.536366,0.16828,0.955631,0.942081,0.790685,0.589985,0.156584,0.895339,0.0952326,0.644335,0.528165,0.958342,0.170984,0.974506,0.716131,0.25925,0.138161,0.799553,0.516704,0.990089,0.75203,0.525125,0.777673,0.509127,0.898748,0.566551,0.723925,0.371676,0.91312,0.572713,0.701476,0.00254399,0.760344,0.936926,0.930265,0.133064,0.647436,0.910412,0.66762,0.548503,0.756392,0.10771,0.929996,0.781579,0.0304796,0.855333,0.997857,0.234253,0.470906,0.568121,0.140736,0.908982,0.49443,0.796785,0.204996,0.315202,0.924305,0.681152,0.940234,0.167256,0.294425,0.843913,0.365809,0.206041,0.019761,0.315781,0.162597,0.106173,0.946624,0.204726,0.106811,0.266878,0.250717,0.0727022,0.81018,0.270778,0.0705093,0.928412,0.152328,0.603883,0.0539021,0.179272,0.0328884,0.620211,0.327534,0.0169455,0.00321031,0.489634,0.0548152,0.644687,0.765462,0.464861,0.652874,0.253034,0.425664,0.265277,0.87225,0.65242,0.391354,0.290983,0.742493,0.521229,0.481048,0.254099,0.469419,0.551441,0.101253,0.912278,0.454668,0.342299,0.549176,0.189069,0.790182,0.994583,0.841319,0.547205,0.719579,0.543609,0.188228,0.700039,0.851703,0.00882852,0.484941,0.514658,0.784501,0.192736,0.659383,0.871177,0.450414,0.0874954,0.201694,0.555022,0.295573,0.714382,0.115614,0.597563,0.0050326,0.118216,0.321776,0.02908,0.774404,0.740721,0.420538,0.458297,0.906384,0.0740666,0.961382,0.112506,0.340341,0.0546201,0.0612594,0.117972,0.660468,0.341302,0.233268,0.35024,0.931544,0.655787,0.708927,0.857313,0.97234,0.0675375,0.751322,0.683384,0.125221,0.783356,0.592056,0.144055,0.747885,0.00805801,0.312087,0.203897,0.150821,0.552688,0.987255,0.926203,0.743721,0.498659,0.331403,0.371467,0.889486,0.607219,0.418,0.296044,0.129867,0.833292,0.277714,0.712362,0.412119,0.536643,0.738429,0.0759891,0.174873,0.26514,0.315121,0.460713,0.361228,0.202479,0.34683,0.619203,0.857047,0.674584,0.633757,0.76713,0.298534,0.306611,0.214477,0.469435,0.361255,0.0111237,0.122861,0.623294,0.884931,0.735822,0.686797,0.103299,0.689369,0.627466,0.470023,0.756218,0.5235,0.25505,0.733642,0.900089,0.954282,0.497473,0.130804,0.60567,0.0298786,0.351194,0.428619,0.417077,0.904644,0.321948,0.479813,0.19779,0.101733,0.114355,0.428344,0.548829,0.774256,0.266421,0.460298,0.845786,0.70319,0.0259908,0.773117,0.00704557,0.418039,0.996632,0.456922,0.308538,0.13615,0.588701,0.0361333,0.859014,0.893371,0.876103,0.113681,0.580814,0.188703,0.568269,0.0839691,0.644215,0.0923192,0.557142,0.033502,0.710901,0.805587,0.871441,0.59167,0.149555,0.05289,0.690319,0.173472,0.599065,0.147185,0.00795257,0.287338,0.724981,0.844319,0.666583,0.500396,0.562569,0.348124,0.0910973,0.356469,0.708267,0.412916,0.34411,0.317599,0.139373,0.767167,0.73286,0.396553,0.216971,0.0683976,0.167152,0.194041,0.02787,0.820537,0.524524,0.206077,0.0580651,0.438033,0.43692,0.320555,0.319594,0.500552,0.379281,0.912105,0.346491,0.466574,0.438977,0.138478,0.0967876,0.206645,0.070349,0.375087,0.27373,0.26088,0.279331,0.637204,0.491882,0.271056,0.448797,0.642084,0.995692,0.0650025,0.603409,0.694581,0.0041036,0.0607014,0.14678,0.472405,0.462512,0.943097,0.167818,0.981745,0.679711,0.07193,0.397099,0.0978882,0.591887,0.81638,0.672404,0.692427,0.296856,0.852624,0.446954,0.918594,0.814809,0.501647,0.985007,0.0901898,0.698104,0.429807,0.330555,0.786767,0.127279,0.735979,0.222054,0.492598,0.866224,0.758615,0.683038,0.299924,0.593114,0.797521,0.0161462,0.588139,0.0619525,0.85446,0.407034,0.0716466,0.854397,0.568883,0.580526,0.417561,0.223249,0.632612,0.420451,0.568668,0.646,0.891503,0.755021,0.00370145,0.934941,0.772726,0.428189,0.77455,0.0638174,0.493244,0.252009,0.463003,0.436728,0.945503,0.644898,0.509349,0.721427,0.655859,0.611338,0.836757,0.420813,0.216711,0.186244,0.92186,0.818289,0.707823,0.693463,0.296672,0.253142,0.257653,0.641254,0.20352,0.882726,0.109759,0.335338,0.556089,0.913541,0.653492,0.427882,0.530004,0.238631,0.905701,0.873916,0.941931,0.36962,0.948734,0.361617,0.8937,0.875168,0.76419,0.915126,0.863415,0.906259,0.290803,0.919877,0.962257,0.516715,0.926394,0.110562,0.809576,0.140632,0.190852,0.902855,0.138079,0.712326,0.116961,0.00394398,0.000321746,0.838073,0.779146,0.292216,0.978033,0.618868,0.00910842,0.578591,0.452698,0.964086,0.798965,0.985135,0.318303,0.3623,0.0947948,0.845335,0.38283,0.963292,0.521124,0.160527,0.801252,0.933479,0.815309,0.204026,0.841654,0.0139027,0.391084,0.444206,0.840991,0.886623,0.416184,0.405839,0.626247,0.104215,0.339818,0.125044,0.247021,0.614135,0.0911555,0.743111,0.257223,0.992442,0.895863,0.304135,0.312037,0.20063,0.279119,0.0841675,0.967739,0.112574,0.164379,0.285736,0.229648,0.17332,0.142129,0.460208,0.853216,0.766891,0.25589,0.873657,0.309592,0.504294,0.0107942,0.603477,0.993952,0.289174,0.989912,0.831148,0.874475,0.869413,0.137893,0.757477,0.0319652,0.408352,0.907949,0.437681,0.882614,0.552483,0.21474,0.84045,0.925878,0.708908,0.226325,0.0104738,0.996022,0.746355,0.490547,0.326056,0.64573,0.400227,0.859139,0.820782,0.714656,0.470386,0.566816,0.400187,0.471142,0.674805,0.449361,0.964827,0.291332,0.99455,0.383157,0.687345,0.61724,0.485491,0.0722607,0.654702,0.169134,0.65633,0.886562,0.465169,0.555397,0.0478098,0.310355,0.799054,0.0949178,0.852893,0.984351,0.773,0.804561,0.645885,0.056812,0.606302,0.808018,0.818557,0.20004,0.302673,0.483546,0.5399,0.746034,0.901599,0.0885541,0.00720984,0.172789,0.196791,0.462158,0.4117,0.624563,0.797674,0.693452,0.66594,0.0444226,0.591114,0.798405,0.717283,0.198767,0.698269,0.59618,0.155627,0.387856,0.634227,0.189166,0.622921,0.971072,0.307552,0.0373281,0.496728,0.361407,0.157198,0.586417,0.723437,0.0529297,0.0670689,0.449418,0.408321,0.606058,0.478891,0.495848,0.414911,0.0325126,0.085713,0.732587,0.807396,0.0964326,0.872876,0.343334,0.966527,0.706999,0.437523,0.889228,0.552915,0.783797,0.515341,0.0618114,0.010374,0.64195,0.603266,0.143376,0.726619,0.182396,0.929224,0.0477816,0.308396,0.711067,0.655748,0.895421,0.0901504,0.786076,0.894248,0.950988,0.666756,0.287677,0.435271,0.957914,0.251215,0.984075,0.509995,0.474276,0.828855,0.368514,0.222927,0.302468,0.495319,0.945728,0.902999,0.15841,0.518106,0.919464,0.936495,0.607965,0.815073,0.305528,0.52185,0.21607,0.234899,0.218037,0.0347094,0.0855556,0.302149,0.573787,0.971584,0.206699,0.116203,0.111991,0.65193,0.785135,0.0289138,0.235026,0.168946,0.692604,0.630321,0.0851683,0.908752,0.029588,0.0777549,0.172816,0.837188,0.427473,0.337111,0.648428,0.0639366,0.787074,0.728806,0.852143,0.45196,0.562363,0.951785,0.158088,0.638333,0.411737,0.807485,0.610738,0.817145,0.65976,0.290979,0.86168,0.381462,0.567554,0.630767,0.715273,0.756718,0.640249,0.99981,0.220532,0.0370287,0.657459,0.238584,0.492478,0.0223172,0.65403,0.221174,0.518674,0.133801,0.780182,0.963358,0.189753,0.0731294,0.0128127,0.180564,0.441964,0.382813,0.845506,0.777003,0.50324,0.635281,0.495739,0.85952,0.205576,0.0369625,0.846624,0.77029,0.556254,0.0783522,0.929218,0.579281,0.623189,0.660214,0.906191,0.747009,0.362109,0.0591416,0.513233,0.786565,0.467113,0.14891,0.0571199,0.438001,0.192688,0.336738,0.823898,0.121244,0.281099,0.776964,0.715286,0.826142,0.0830631,0.906026,0.984334,0.188128,0.350133,0.711316,0.96121,0.592617,0.52033,0.00762886,0.789371,0.0937994,0.988305,0.572495,0.82308,0.744819,0.528935,0.646531,0.422687,0.54039,0.0865463,0.29647,0.62515,0.67406,0.993623,0.415505,0.758537,0.659708,0.227602,0.580825,0.907588,0.0669193,0.876781,0.606013,0.776192,0.664015,0.155212,0.724587,0.386377,0.602638,0.563323,0.669729,0.255258,0.171278,0.393998,0.0100059,0.490924,0.221409,0.509433,0.239103,0.610623,0.367402,0.895833,0.368373,0.237858,0.18432,0.397386,0.0153157,0.209151,0.852975,0.289249,0.571179,0.565694,0.199175,0.216152,0.79447,0.0776386,|0.12617,0.165824,0.289923,0.90246,0.272344,0.495497,0.0333459,0.891895,0.558282,0.124562,0.320389,0.199642,0.882085,0.889046,0.0977736,0.917532,0.252341,0.848878,0.127933,0.0403123,0.855448,0.748335,0.151648,0.522436,0.531127,0.550407,0.28355,0.554038,0.997582,0.14775,0.826291,0.217874,0.137243,0.201697,0.662621,0.220886,0.00388849,0.742973,0.628367,0.877163,0.368767,0.683579,0.755844,0.751758,0.843289,0.523547,0.592854,0.476653,0.0248112,0.165836,0.679515,0.543759,0.534449,0.0433022,0.938665,0.879702,0.333377,0.755457,0.61131,0.882057,0.160571,0.444707,0.437638,0.443711,0.640869,0.357681,0.877326,0.933381,0.480229,0.431374,0.0943309,0.608232,0.837993,0.562976,0.148094,0.668598,0.27291,0.981383,0.164921,0.301356,0.459536,0.342981,0.957846,0.257297,0.763963,0.997455,0.650529,0.750998,0.329938,0.678387,0.711168,0.226299,0.131091,0.863853,0.0955912,0.466913,0.42038,0.587081,0.526565,0.235303,0.535608,0.430342,0.483672,0.903079,0.762816,0.203627,0.0194528,0.838402,0.832884,0.334987,0.30039,0.830914,0.00734758,0.862606,0.168533,0.403277,0.506577,0.514155,0.0722346,0.727977,0.471557,0.835571,0.812828,0.0192834,0.13414,0.954751,0.130775,0.594473,0.437734,0.590754,0.288101,0.461999,0.108531,0.0637946,0.93589,0.591323,0.808677,0.994314,0.409446,0.200629,0.558911,0.220834,0.328913,0.233932,0.797616,0.416861,0.241289,0.638682,0.861957,0.595479,0.0464585,0.0250863,0.769983,0.910301,0.253142,0.316799,0.750148,0.458911,0.0701111,0.957081,0.938562,0.715167,0.111635,0.64359,0.156181,0.0017845,0.653634,0.647343,0.629146,0.526446,0.454733,0.176458,0.210386,0.189099,0.789317,0.487954,0.193951,0.254559,0.536105,0.416045,0.48386,0.726404,0.0815689,0.94258,0.954579,0.380095,0.944226,0.506556,0.186128,0.209376,0.334589,0.638297,0.844441,0.821718,0.209643,0.560555,0.0956448,0.205957,0.882114,0.554803,0.217143,0.274875,0.936998,0.641832,0.229017,0.859191,0.200148,0.000825524,0.432063,0.599699,0.4647,0.682627,0.728764,0.47704,0.834941,0.545677,0.607373,0.713677,0.604958,0.114468,0.968344,0.973871,0.823245,0.620575,0.620391,0.0506625,0.349717,0.881049,0.968935,0.117245,0.878299,0.0190147,0.68415,0.618413,0.273891,0.0166578,0.140665,0.991977,0.11751,0.650267,0.508388,0.707163,0.717807,0.0557335,0.762486,0.436282,0.261515,0.540059,0.539723,0.424062,0.617997,0.798991,0.237573,0.222017,0.81837,0.686944,0.819751,0.0641067,0.781482,0.227931,0.885567,0.815526,0.257902,0.598531,0.948342,0.649952,0.735131,0.961386,0.623311,0.811071,0.676122,0.469845,0.209945,0.712021,0.268243,0.486648,0.0188584,0.0927567,0.157295,0.433624,0.814786,0.399891,0.253525,0.059003,0.677898,0.0163109,0.374479,0.738179,0.868975,0.668191,0.602562,0.911706,0.522634,0.353892,0.986652,0.0143129,0.0193074,0.532714,0.641224,0.23097,0.73087,0.576905,0.708214,0.866134,0.630642,0.658804,0.9329,0.251606,0.566322,0.415096,0.11415,0.200373,0.624793,0.655122,0.657604,0.994122,0.59177,0.582841,0.05612,0.37453,0.645528,0.845775,0.234601,0.0204782,0.368724,0.864691,0.277045,0.944299,0.243933,0.51559,0.524119,0.117354,0.192834,0.900867,0.651901,0.0295974,0.0711665,0.45236,0.657997,0.623411,0.851448,0.692973,0.0295058,0.521664,0.996042,0.147086,0.98425,0.957466,0.297086,0.389849,0.82888,0.593164,0.309237,0.976281,0.973183,0.45586,0.0593259,0.382001,0.0558261,0.698571,0.995804,0.258994,0.86483,0.983952,0.967223,0.765398,0.453422,0.62419,0.723129,0.944422,0.294087,0.121427,0.382656,0.100475,0.266204,0.83014,0.804403,0.528176,0.789484,0.692349,0.71077,0.655904,0.219651,0.445584,0.666063,0.447573,0.234044,0.691693,0.904646,0.118271,0.523212,0.871628,0.885885,0.477348,0.683348,0.915757,0.623469,0.0106615,0.853207,0.438983,0.112564,0.126377,0.136545,0.246299,0.899091,0.531756,0.698448,0.569988,0.756389,0.633799,0.641334,0.986339,0.881935,0.00872594,0.06784,0.595805,0.245611,0.38293,0.783512,0.646594,0.220343,0.6061,0.816117,0.477995,0.977812,0.303341,0.359566,0.224383,0.0266886,0.285751,0.670671,0.214372,0.69338,0.719629,0.185218,0.377947,0.122093,0.499479,0.548053,0.202056,0.55525,0.100642,0.263286,0.957093,0.441528,0.173642,0.519228,0.982609,0.152961,0.624607,0.114973,0.694426,0.0131433,0.7121,0.768966,0.980388,0.425179,0.356442,0.78965,0.514459,0.178289,0.949508,0.345208,0.904534,0.768365,0.845664,0.161982,0.559565,0.55914,0.184816,0.171067,0.91013,0.968621,0.555543,0.731872,0.482602,0.309395,0.0796877,0.143617,0.326043,0.844366,0.335694,0.966759,0.618392,0.322328,0.365737,0.0313875,0.420402,0.178661,0.0224059,0.26957,0.0247857,0.598639,0.507855,0.599927,0.932802,0.561908,0.0836558,0.607933,0.363254,0.991388,0.757296,0.933554,0.372779,0.888613,0.0727052,0.283523,0.530405,0.899544,0.0351366,0.690907,0.712447,0.112279,0.523452,0.183053,0.812538,0.464487,0.120355,0.0345284,0.383497,0.366569,0.810475,0.228889,0.206628,0.608861,0.0827363,0.143459,0.346056,0.0854365,0.739735,0.225868,0.42229,0.156678,0.110882,0.200363,0.814648,0.621104,0.272706,0.267524,0.0340657,0.345505,0.53377,0.78605,0.574797,0.334225,0.572081,0.0488464,0.145634,0.117888,0.74628,0.928713,0.369135,0.939564,0.614407,0.528251,0.439363,0.2807,0.758657,0.184376,0.894106,0.264438,0.870241,0.517557,0.303893,0.195866,0.177975,0.209268,0.292769,0.275011,0.161404,0.344993,0.474474,0.647829,0.456409,0.737508,0.245151,0.504623,0.66732,0.708733,0.828014,0.901685,0.343401,0.499513,0.438448,0.501424,0.753048,0.761157,0.989533,0.237187,0.706293,0.763989,0.141622,0.452035,0.697647,0.656986,0.596967,0.832377,0.0546811,0.0857015,0.80433,0.794621,0.909948,0.655895,0.0832088,0.471465,0.850135,0.867854,0.640934,0.970395,0.856104,0.0204125,0.134854,0.109995,0.675763,0.142144,0.392082,0.421687,0.67666,0.862832,0.0925249,0.368771,0.0474935,0.357294,0.843177,0.797509,0.0928982,0.642812,0.262428,0.696207,0.667644,0.965632,0.733644,0.51212,0.99136,0.962362,0.915379,0.346638,0.428882,0.609371,0.96085,0.83138,0.310459,0.969549,0.293167,0.247639,0.618159,0.164208,0.417401,0.215084,0.164531,0.52284,0.452761,0.442737,0.509326,0.462964,0.384792,0.496159,0.690901,0.818929,0.799433,0.763062,0.48472,0.143547,0.844558,0.676203,0.370081,0.659408,0.827783,0.235339,0.921184,0.430944,0.744837,0.517402,0.14309,0.640828,0.421962,0.742745,0.166905,0.45391,0.201443,0.809747,0.278971,0.232938,0.559143,0.682922,0.65418,0.5335,0.434758,0.307284,0.187758,0.493642,0.699229,0.647048,0.709405,0.625747,0.253015,0.898074,0.492449,0.767617,0.591808,0.786301,0.800517,0.556678,0.704497,0.134707,0.424336,0.120331,0.0387723,0.719558,0.386194,0.240759,0.417335,0.269172,0.27138,0.168449,0.14737,0.186792,0.34344,0.562967,0.49623,0.363385,0.727476,0.676651,0.257249,0.889349,0.756476,0.42118,0.293813,0.11349,0.166616,0.639761,0.865682,0.392745,0.617043,0.145225,0.973662,0.710136,0.612274,0.564652,0.607642,0.66048,0.826272,0.804027,0.663075,0.441656,0.401472,0.38419,0.0908898,0.99477,0.116678,0.160497,0.954529,0.384501,0.82099,0.341227,0.0702854,0.24178,0.0966047,0.0729747,0.0496921,0.00565457,0.659712,0.0238423,0.0686492,0.786807,0.751589,0.433394,0.853923,0.326892,0.319195,0.71226,0.462805,0.698539,0.828936,0.94,0.938462,0.252915,0.399451,0.770208,0.0565954,0.421552,0.688576,0.466994,0.843085,0.597514,0.371213,0.0008834,0.71117,0.74801,0.891725,0.349994,0.782611,0.68784,0.621723,0.954713,0.896604,0.818979,0.296535,0.574216,0.33908,0.322081,0.714134,0.0677381,0.386027,0.529082,0.874255,0.502057,0.891606,0.097863,0.503929,0.646464,0.774732,0.261161,0.0560375,0.181833,0.619465,0.580835,0.648371,0.0969604,0.976951,0.549488,0.776911,0.778791,0.501257,0.818882,0.594349,0.961963,0.978047,0.27996,0.548757,0.494615,0.864306,0.5441,0.862303,0.178414,0.336931,0.978509,0.369317,0.458541,0.049804,0.258878,0.132888,0.900355,0.98859,0.0748742,0.0365348,0.412435,0.243108,0.166824,0.336739,0.51968,0.825058,0.172227,0.618101,0.758546,0.899366,0.194983,0.465192,0.957397,0.788887,0.691652,0.414138,0.478428,0.280816,0.836192,0.128528,0.711249,0.325485,0.47953,0.80929,0.371862,0.876847,0.56395,0.151067,0.141552,0.288433,0.284802,0.544488,0.00912112,0.340291,0.0615751,0.261223,0.0259799,0.269634,0.919987,0.878304,0.990321,0.140022,0.243655,0.0403936,0.840072,0.386428,0.941047,0.481245,0.301892,0.542921,0.344433,0.233767,0.138681,0.617794,0.537299,0.763924,0.395817,0.577237,0.336133,0.71357,0.633832,0.699855,0.681838,0.984448,0.980925,0.64808,0.244803,0.476507,0.502907,0.0991458,0.232251,0.403384,0.778872,0.658247,0.0597655,0.0169898,0.518595,0.0180936,0.845485,0.953317,0.699321,0.719708,0.65765,0.433118,0.506902,0.0581948,0.847175,0.910046,0.705485,0.962811,0.717797,0.193853,0.974981,0.776691,0.286744,0.85843,0.431013,0.282902,0.552098,0.269363,0.389789,0.271343,0.618537,0.567098,0.0751086,0.133456,0.252089,0.175557,0.170978,0.721904,0.48041,0.522085,0.126593,0.988477,0.238048,0.7152,0.918159,0.169676,0.39296,0.7599,0.146628,0.699533,0.426554,0.197858,0.119938,0.556548,0.532993,0.314069,0.947279,0.315916,0.166067,0.884472,0.797552,0.857845,0.260026,0.886386,0.462417,0.781658,0.747511,0.60501,0.328351,0.791893,0.852113,0.564607,0.898562,0.591628,0.581054,0.597851,0.0945607,0.249886,0.249602,0.421944,0.89183,0.479858,|0.414752,0.272547,0.16464,0.295137,0.558652,0.0986988,0.491971,0.0564752,0.0586407,0.965905,0.99018,0.100242,0.946238,0.200535,0.748182,0.204287,0.597602,0.539157,0.429831,0.650296,0.963627,0.265832,0.837249,0.676524,0.0133991,0.193608,0.448585,0.170511,0.610556,0.885453,0.794688,0.51546,0.355947,0.409991,0.847912,0.73081,0.466259,0.940869,0.560609,0.67529,0.546363,0.288621,0.481016,0.260239,0.926157,0.723611,0.43556,0.40664,0.899711,0.0122761,0.964815,0.383675,0.325457,0.0626912,0.562735,0.18389,0.118234,0.116957,0.804824,0.712761,0.135401,0.215668,0.548039,0.392011,0.446078,0.505719,0.80215,0.677974,0.584624,0.170687,0.340841,0.996257,0.749979,0.972949,0.259616,0.762362,0.733201,0.649636,0.58906,0.0365188,0.316594,0.54558,0.228344,0.455408,0.891151,0.207712,0.166874,0.571912,0.368314,0.611268,0.51072,0.118157,0.602841,0.955385,0.0180053,0.367498,0.466421,0.437179,0.444235,0.20578,0.201959,0.962866,0.540743,0.000465035,0.780459,0.127086,0.068655,0.253854,0.12053,0.837674,0.0657427,0.212532,0.601496,0.339374,0.387492,0.430049,0.406434,0.608982,0.36419,0.950119,0.947585,0.426779,0.532336,0.303219,0.177428,0.287533,0.726423,0.63413,0.775957,0.189236,0.580792,0.117851,0.294263,0.412224,0.0555838,0.0831019,0.943314,0.642131,0.634318,0.751367,0.00113112,0.473968,0.958467,0.128129,0.739344,0.0154834,0.825506,0.612522,0.00327182,0.602246,0.283426,0.229243,0.917511,0.787746,0.734953,0.553346,0.552593,0.99383,0.534298,0.875019,0.846061,0.0522634,0.981435,0.155343,0.273185,0.26808,0.0142035,0.902573,0.921144,0.978467,0.315354,0.490803,0.295507,0.0401608,0.99911,0.361123,0.39041,0.0551585,0.132804,0.804066,0.981007,0.633678,0.071004,0.191852,0.836815,0.347086,0.613,0.712705,0.36102,0.990816,0.938604,0.179722,0.479101,0.611294,0.120265,0.664254,0.505899,0.691797,0.952312,0.68914,0.602966,0.397254,0.455019,0.875562,0.354844,0.452298,0.928651,0.047307,0.192009,0.754678,0.420431,0.487652,0.601798,0.995859,0.979408,0.770912,0.117434,0.914167,0.381636,0.834678,0.461537,0.915455,0.410812,0.879447,0.410674,0.688825,0.121726,0.0608175,0.703007,0.209764,0.121976,0.733923,0.228117,0.303104,0.930045,0.92314,0.149679,0.393622,0.513843,0.321475,0.776775,0.365833,0.382799,0.789546,0.430061,0.181465,0.0534782,0.172722,0.98606,0.0511444,0.0809516,0.204476,0.549666,0.603775,0.701554,0.0924313,0.643227,0.128692,0.631334,0.836374,0.823047,0.659278,0.858825,0.377692,0.700706,0.455487,0.310405,0.513282,0.897,0.265785,0.540301,0.469718,0.0420992,0.954478,0.876023,0.532,0.374665,0.464211,0.417117,0.309118,0.795714,0.0327238,0.351959,0.542792,0.0394147,0.819906,0.72951,0.846955,0.763552,0.218781,0.566746,0.150517,0.0445467,0.0055483,0.784651,0.923424,0.729227,0.567156,0.737781,0.0619104,0.877264,0.504898,0.674326,0.808303,0.50866,0.457049,0.780019,0.305571,0.24567,0.263034,0.91855,0.893745,0.667679,0.857251,0.5989,0.620974,0.757661,0.566877,0.00830692,0.831806,0.0743675,0.474997,0.696303,0.505447,0.810562,0.348556,0.955271,0.798158,0.109205,0.352055,0.700033,0.277541,0.39755,0.546146,0.447258,0.0991857,0.856247,0.787113,0.340747,0.850162,0.1901,0.366858,0.888303,0.693671,0.106663,0.819184,0.862562,0.427551,0.753915,0.525371,0.00451297,0.22585,0.569051,0.983679,0.449676,0.751273,0.94711,0.647791,0.211531,0.354721,0.740059,0.495418,0.513387,0.777685,0.853704,0.745556,0.166573,0.660187,0.0215169,0.873822,0.259781,0.326867,0.253888,0.555928,0.0900347,0.824378,0.273585,0.983812,0.810069,0.917084,0.473992,0.288603,0.0213041,0.790988,0.589761,0.900309,0.98595,0.975815,0.984747,0.864123,0.587238,0.358313,0.904708,0.318407,0.617383,0.68636,0.155716,0.315479,0.491556,0.967597,0.901242,0.182239,0.057114,0.937085,0.971767,0.0749627,0.89265,0.788108,0.068805,0.595972,0.0401556,0.645773,0.34484,0.198493,0.167528,0.344475,0.43774,0.765189,0.0021261,0.147632,0.749354,0.385459,0.224545,0.388689,0.605263,0.949252,0.891955,0.659386,0.0018574,0.090703,0.600805,0.328093,0.815102,0.321338,0.274827,0.45176,0.620476,0.782735,0.780277,0.188953,0.182846,0.0773729,0.775798,0.471583,0.662003,0.371104,0.335442,0.720265,0.0175489,0.0310985,0.0697812,0.486366,0.0592853,0.513161,0.146768,0.59847,0.279382,0.813791,0.271048,0.505767,0.410436,0.961649,0.876792,0.962538,0.194304,0.649553,0.766821,0.324099,0.76468,0.00179762,0.618179,0.0689189,0.641934,0.693142,0.0501642,0.820564,0.862384,0.03488,0.338925,0.161765,0.469245,0.870377,0.827082,0.707194,0.566149,0.962185,0.800934,0.970735,0.355081,0.480162,0.62116,0.0410448,0.472196,0.659706,0.899386,0.487899,0.186996,0.411001,0.73046,0.180655,0.185219,0.488432,0.805649,0.819875,0.223925,0.0484681,0.970293,0.737234,0.164798,0.869834,0.237309,0.694029,0.444913,0.981592,0.281618,0.351651,0.499132,0.543536,0.742409,0.576243,0.363379,0.304396,0.321399,0.113345,0.656103,0.754464,0.827274,0.78284,0.819732,0.535058,0.533233,0.865153,0.527643,0.394198,0.935129,0.50795,0.0441811,0.3536,0.987297,0.644423,0.527493,0.124288,0.18502,0.589092,0.243719,0.228853,0.976908,0.159576,0.476429,0.0346937,0.382725,0.0681366,0.0772365,0.960889,0.614512,0.825615,0.0306562,0.571325,0.364533,0.0785244,0.506873,0.504146,0.150583,0.111581,0.978872,0.113944,0.0513073,0.126687,0.650425,0.888286,0.995147,0.175007,0.31215,0.0148187,0.00325483,0.953824,0.274597,0.299075,0.272698,0.203258,0.937852,0.709383,0.156088,0.510451,0.617205,0.837636,0.0627235,0.376853,0.170811,0.76999,0.442382,0.0659491,0.291134,0.154288,0.895372,0.789582,0.165685,0.96877,0.367753,0.641861,0.936103,0.56635,0.103749,0.00989205,0.978742,0.123334,0.10248,0.379463,0.24884,0.973334,0.379897,0.599342,0.160299,0.0975295,0.905063,0.830696,0.602515,0.297826,0.915429,0.365103,0.958398,0.0403329,0.0421022,0.670554,0.443977,0.813827,0.0237853,0.291259,0.190037,0.978754,0.177548,0.0720906,0.192499,0.62265,0.306853,0.480983,0.842036,0.066177,0.787914,0.904449,0.348608,0.985531,0.31543,0.0163843,0.422746,0.425837,0.561498,0.00771928,0.480615,0.411893,0.515872,0.679044,0.662042,0.998398,0.363598,0.906376,0.330053,0.879478,0.441524,0.857527,0.537654,0.0493507,0.368703,0.91225,0.0675653,0.75251,0.959211,0.111396,0.658539,0.600221,0.550843,0.949424,0.164164,0.087369,0.654234,0.502795,0.782149,0.709619,0.61926,0.354454,0.321625,0.393719,0.372872,0.599577,0.443877,0.372788,0.991791,0.243014,0.612625,0.695432,0.463107,0.686957,0.0678496,0.126178,0.00646913,0.21659,0.913515,0.282762,0.801599,0.670658,0.831493,0.467395,0.241573,0.167601,0.82034,0.133045,0.246048,0.477101,0.99611,0.517561,0.987511,0.244441,0.837702,0.145331,0.463085,0.282164,0.142178,0.929071,0.435748,0.0896366,0.791642,0.846036,0.146045,0.0710732,0.340555,0.510252,0.88324,0.827712,0.352191,0.0417291,0.836139,0.896892,0.620264,0.205515,0.448945,0.239155,0.580312,0.393867,0.96966,0.73173,0.885737,0.00817281,0.544145,0.44798,0.792787,0.287521,0.0585164,0.0505682,0.915542,0.499758,0.643118,0.966763,0.451021,0.617199,0.39758,0.39306,0.602567,0.872722,0.0581841,0.628842,0.572202,0.198747,0.583861,0.535361,0.0831668,0.434934,0.802901,0.954372,0.688635,0.574536,0.34785,0.573029,0.644059,0.3609,0.695361,0.0377906,0.501961,0.864267,0.733333,0.61326,0.0974616,0.445783,0.548654,0.689207,0.137495,0.497112,0.949133,0.812695,0.391656,0.174384,0.853042,0.404116,0.444395,0.642846,0.825034,0.254038,0.946161,0.99799,0.611744,0.956817,0.555691,0.511678,0.233094,0.481095,0.175979,0.953619,0.419008,0.870917,0.69074,0.111985,0.464392,0.409847,0.791767,0.504502,0.992958,0.0998524,0.144846,0.579941,0.173888,0.108633,0.306298,0.183129,0.207297,0.560703,0.288588,0.907437,0.576084,0.372238,0.575471,0.288767,0.0644342,0.2883,0.789411,0.0883927,0.0622467,0.94302,0.495902,0.341642,0.30323,0.573563,0.831485,0.84249,0.0239373,0.903423,0.877654,0.226999,0.596075,0.575121,0.957224,0.392524,0.35579,0.508336,0.321382,0.338578,0.107998,0.486988,0.439574,0.274801,0.831487,0.375406,0.352797,0.419152,0.306831,0.13021,0.158619,0.154075,0.469505,0.94537,0.693606,0.831211,0.126302,0.139955,0.190107,0.986052,0.516007,0.827412,0.689545,0.446609,0.553571,0.705603,0.9529,0.704439,0.956132,0.932374,0.45547,0.551323,0.317695,0.921857,0.975754,0.92055,0.305416,0.924657,0.774061,0.728789,0.267486,0.529933,0.880027,0.619621,0.47213,0.235468,0.366852,0.155746,0.856108,0.291639,0.745381,0.224713,0.907492,0.0313065,0.607223,0.932419,0.34805,0.484594,0.638604,0.827693,0.420895,0.879265,0.0722236,0.133266,0.572065,0.834489,0.419812,0.135921,0.938509,0.874443,0.407301,0.486568,0.0438745,0.431663,0.928755,0.828766,0.895203,0.86994,0.139583,0.491814,0.460541,0.314911,0.0727623,0.211883,0.2874,0.562748,0.573896,0.0445763,0.784889,0.175584,0.546094,0.611552,0.800545,0.207318,0.392073,0.558817,0.203877,0.117547,0.756024,0.877545,0.93309,0.804733,0.130221,0.648436,0.604715,0.893012,0.222038,0.935597,0.903515,0.52305,0.53444,0.202002,0.308226,0.308085,0.213021,0.865239,0.0293452,0.0365959,0.37316,0.452377,0.546494,0.356123,0.583047,0.347336,0.700176,0.479245,0.406575,0.397665,0.163114,0.336442,0.251737,0.298773,0.815978,0.880973,0.405953,0.205386,0.5199,0.595685,0.615251,0.558215,0.609044,0.935433,0.372681,0.753679,0.333875,0.154214,|0.492857,0.188954,0.245147,0.217667,0.672911,0.763805,0.534683,0.516325,0.264387,0.0613021,0.633933,0.830746,0.485509,0.441945,0.444385,0.393195,0.343212,0.5339,0.615787,0.483825,0.206622,0.671419,0.525994,0.790432,0.247694,0.163595,0.709739,0.118238,0.602411,0.709461,0.627258,0.219471,0.779683,0.624295,0.915807,0.0290953,0.306168,0.281058,0.876005,0.14234,0.270996,0.511561,0.902842,0.691396,0.735349,0.255285,0.526082,0.810847,0.0825319,0.912821,0.806632,0.224189,0.37822,0.943349,0.989172,0.315132,0.25642,0.709835,0.29138,0.260587,0.830221,0.758571,0.896187,0.409066,0.307527,0.646782,0.985983,0.0229169,0.505048,0.0517029,0.820811,0.0862843,0.524859,0.850414,0.593801,0.823416,0.505049,0.952665,0.808344,0.618604,0.81847,0.380973,0.99348,0.345458,0.795703,0.326935,0.0707252,0.362584,0.728905,0.162576,0.862298,0.893229,0.0928644,0.512981,0.844868,0.959751,0.172584,0.151273,0.537295,0.305681,0.687821,0.0705709,0.922045,0.445106,0.439512,0.260686,0.246538,0.812927,0.372059,0.190153,0.958596,0.477078,0.845175,0.221551,0.221764,0.679838,0.675879,0.73691,0.853492,0.962556,0.505401,0.393438,0.719994,0.47259,0.322417,0.514756,0.810714,0.972883,0.263145,0.409755,0.841206,0.535077,0.417398,0.460395,0.252394,0.561971,0.840124,0.00144833,0.554922,0.55258,0.848223,0.525066,0.0142467,0.700594,0.875491,0.271128,0.99679,0.0574896,0.402765,0.514224,0.833375,0.123347,0.564532,0.604943,0.451718,0.497883,0.662606,0.396257,0.964876,0.810596,0.942439,0.0129706,0.37256,0.683008,0.540033,0.806372,0.304593,0.621401,0.240361,0.149897,0.218364,0.530189,0.829563,0.337376,0.982781,0.160948,0.110955,0.58259,0.765971,0.377768,0.828003,0.158411,0.60714,0.43892,0.672611,0.789922,0.601166,0.816049,0.380229,0.695493,0.737237,0.0655961,0.783596,0.853678,0.265339,0.812593,0.151585,0.707989,0.758566,0.411292,0.328829,0.413856,0.695675,0.927922,0.480839,0.338898,0.201006,0.088837,0.62,0.113175,0.577126,0.183801,0.847881,0.147406,0.745442,0.546996,0.52421,0.248227,0.362785,0.55212,0.455092,0.0697089,0.799686,0.385713,0.955202,0.174314,0.490042,0.0829806,0.894236,0.5404,0.570158,0.463033,0.580917,0.572004,0.362585,0.638511,0.9787,0.648394,0.74542,0.389365,0.0229331,0.0799554,0.965179,0.301524,0.183179,0.998227,0.4515,0.0535167,0.0297655,0.51366,0.432782,0.760691,0.138974,0.737573,0.359972,0.0146889,0.759976,0.0686669,0.0756767,0.981686,0.877206,0.63779,0.62129,0.181471,0.178287,0.411025,0.841301,0.609434,0.546463,0.887503,0.341906,0.92116,0.593272,0.222046,0.882059,0.0972001,0.918789,0.756227,0.812965,0.242296,0.482051,0.747905,0.670757,0.679726,0.809985,0.952799,0.254805,0.875018,0.412075,0.703271,0.873063,0.405037,0.333797,0.211911,0.850067,0.395835,0.747428,0.662902,0.997668,0.260406,0.801845,0.697445,0.85787,0.864314,0.951359,0.0414541,0.457249,0.121967,0.690311,0.47563,0.963689,0.813354,0.215504,0.608724,0.134492,0.930148,0.609576,0.0952509,0.362613,0.393001,0.680743,0.36104,0.339919,0.162054,0.350092,0.131037,0.314983,0.976112,0.548445,0.986721,0.0142519,0.210822,0.244934,0.440141,0.957397,0.777213,0.664612,0.730283,0.961036,0.381869,0.423475,0.932066,0.422772,0.578517,0.491173,0.552198,0.145008,0.208534,0.850235,0.256799,0.405037,0.301211,0.458731,0.773415,0.0949911,0.986276,0.953189,0.731818,0.491515,0.208252,0.62441,0.663919,0.0867549,0.510557,0.77055,0.736525,0.454015,0.00223261,0.899849,0.353592,0.480149,0.644826,0.890166,0.476573,0.935,0.391787,0.0105116,0.57664,0.00853682,0.61401,0.443288,0.0700684,0.281062,0.0564699,0.447723,0.828277,0.863044,0.42729,0.0239837,0.394275,0.122047,0.551595,0.925485,0.216872,0.29996,0.779584,0.893595,0.652659,0.69073,0.0598845,0.988561,0.14191,0.91268,0.43056,0.60959,0.864548,0.492369,0.0125184,0.233433,0.699248,0.82673,0.0662965,0.0964981,0.229401,0.00812775,0.803144,0.271456,0.344265,0.165957,0.823675,0.689641,0.523861,0.638311,0.973814,0.0608826,0.964993,0.794161,0.834265,0.338983,0.384735,0.895177,0.412207,0.0806679,0.828649,0.585762,0.789521,0.106691,0.932124,0.466308,0.749762,0.83151,0.394534,0.134038,0.57033,0.367759,0.197212,0.507931,0.607793,0.0215006,0.0600709,0.91758,0.307314,0.575558,0.4605,0.660245,0.555165,0.756684,0.170602,0.775185,0.154357,0.0739565,0.770242,0.189159,0.643162,0.837942,0.546286,0.628904,0.123837,0.96216,0.885422,0.799168,0.168334,0.181135,0.488608,0.115039,0.49473,0.700897,0.744265,0.353664,0.993394,0.501105,0.508853,0.603259,0.854061,0.370578,0.0249457,0.593223,0.976428,0.0312331,0.286277,0.277054,0.626046,0.0353847,0.268392,0.568769,0.620515,0.322248,0.238995,0.0390999,0.689835,0.668684,0.806877,0.687103,0.951321,0.205021,0.272503,0.163281,0.494948,0.466062,0.632316,0.0306424,0.0596715,0.530725,0.820488,0.0113844,0.0217375,0.901547,0.28274,0.382449,0.234946,0.52279,0.0726311,0.962666,0.0354431,0.114254,0.0683773,0.725347,0.969745,0.126756,0.995337,0.176246,0.328187,0.83184,0.876195,0.37985,0.147575,0.623465,0.693153,0.565974,0.386168,0.840548,0.154022,0.583087,0.199419,0.400025,0.414356,0.717302,0.0209898,0.431355,0.0828071,0.827343,0.643255,0.674432,0.437502,0.589663,0.977404,0.445297,0.919591,0.756064,0.524442,0.156153,0.94911,0.999629,0.658416,0.72,0.278248,0.625969,0.426483,0.852103,0.260969,0.805499,0.48951,0.432586,0.465319,0.978451,0.924255,0.910067,0.698221,0.719058,0.559007,0.611588,0.0566007,0.745656,0.595017,0.303529,0.748605,0.928778,0.235596,0.0594447,0.0338448,0.361862,0.0587623,0.67525,0.0393114,0.225083,0.16936,0.804139,0.220921,0.421573,0.904939,0.858518,0.995809,0.975413,0.556527,0.296351,0.228588,0.106773,0.0530828,0.21865,0.794118,0.549082,0.544795,0.674623,0.932095,0.902037,0.629173,0.0736029,0.0232683,0.267444,0.550105,0.367198,0.217558,0.683196,0.525966,0.255985,0.970014,0.445733,0.785198,0.0359107,0.852719,0.901512,0.930618,0.257851,0.922785,0.413275,0.533334,0.341817,0.136975,0.632278,0.861478,0.383117,0.1801,0.539663,0.00809211,0.390886,0.511646,0.503587,0.74666,0.837673,0.682426,0.634674,0.151218,0.827889,0.0144773,0.31029,0.200395,0.227036,0.763237,0.561483,0.841894,0.809535,0.524384,0.301634,0.129337,0.692496,0.796624,0.558658,0.23052,0.137351,0.920875,0.0631093,0.682789,0.322694,0.779923,0.0697835,0.639184,0.370364,0.225467,0.789742,0.474805,0.0764629,0.643509,0.319228,0.507766,0.306042,0.801628,0.750749,0.793286,0.23004,0.473148,0.46242,0.480342,0.0684466,0.777316,0.920675,0.134781,0.819266,0.29468,0.0396369,0.0636188,0.637548,0.286958,0.358158,0.350947,0.725574,0.938003,0.254931,0.706936,0.258049,0.160828,0.130591,0.0699213,0.0994831,0.0334003,0.99917,0.498128,0.835256,0.15148,0.0309393,0.20672,0.849559,0.288229,0.72467,0.160156,0.673992,0.0911583,0.254244,0.663646,0.22366,0.438379,0.962349,0.405012,0.97146,0.917568,0.573902,0.6463,0.10602,0.243729,0.555881,0.869953,0.00175387,0.97564,0.632334,0.455346,0.273233,0.508344,0.17345,0.0509474,0.508121,0.519434,0.303462,0.231696,0.785105,0.0452031,0.0352303,0.985922,0.0572761,0.454079,0.65579,0.272043,0.064334,0.692625,0.361903,0.369873,0.0737718,0.592848,0.919221,0.212192,0.181432,0.0284914,0.233162,0.813138,0.60676,0.910087,0.765993,0.399338,0.0965849,0.596673,0.276945,0.293064,0.420843,0.814012,0.314322,0.302384,0.583753,0.274705,0.541512,0.666935,0.141806,0.0671088,0.399613,0.505851,0.106911,0.0814053,0.466585,0.942951,0.120609,0.0266969,0.0389006,0.0520709,0.765617,0.435714,0.0337612,0.426779,0.254077,0.123677,0.862734,0.221015,0.0265138,0.442304,0.213789,0.717905,0.346083,0.817232,0.136355,0.0115026,0.155635,0.119781,0.423801,0.655207,0.318931,0.386745,0.604143,0.224089,0.426985,0.234464,0.922603,0.0265563,0.0651646,0.349065,0.917433,0.453836,0.619987,0.378335,0.535178,0.302736,0.797517,0.0481544,0.461072,0.515368,0.567148,0.327192,0.355332,0.535853,0.563943,0.88877,0.343887,0.539253,0.718726,0.0530848,0.445811,0.123343,0.141822,0.872662,0.59245,0.114641,0.332227,0.398274,0.176964,0.408514,0.237052,0.247349,0.926637,0.411695,0.160084,0.988325,0.273207,0.557026,0.964718,0.157843,0.427752,0.565102,0.0100095,0.634055,0.716798,0.212258,0.0184348,0.793983,0.76592,0.282573,0.763474,0.995403,0.417539,0.505799,0.390181,0.427381,0.221887,0.685706,0.00410175,0.651409,0.620844,0.0780855,0.974027,0.996139,0.976538,0.384809,0.765106,0.344469,0.665861,0.824364,0.925866,0.0280052,0.270638,0.826179,0.102411,0.899342,0.129757,0.527526,0.685079,0.641072,0.863389,0.272818,0.709397,0.274206,0.181491,0.768192,0.198512,0.475033,0.191268,0.42099,0.639442,0.169092,0.753857,0.797335,0.742438,0.317734,0.448704,0.94693,0.699549,0.662912,0.331158,0.564275,0.120087,0.643326,0.0408331,0.0856792,0.927183,0.76535,0.412654,0.0355906,0.372158,0.221689,0.687371,0.857852,0.153439,0.207763,0.543771,0.448218,0.313258,0.980468,0.300481,0.0598446,0.474148,0.534917,0.924945,0.903049,0.767681,0.956369,0.192961,0.0822922,0.695213,0.345759,0.782189,0.754943,0.973874,0.841385,0.058366,0.58086,0.763233,0.292069,0.478038,0.613486,0.448453,0.027068,0.650182,0.876576,0.870861,0.780144,0.895778,0.297436,0.229203,0.952469,0.730106,0.559696,0.456919,0.132026,0.964101,0.59891,0.29438,0.238902,0.353812,0.729107,0.404565,0.9324,0.27494,0.610159,0.556241,0.672529,0.132255,0.906332,|0.255419,0.593505,0.638722,0.69103,0.816586,0.849631,0.333132,0.637718,0.845312,0.4649,0.544851,0.833215,0.98054,0.869554,0.898352,0.480311,0.679511,0.74591,0.948829,0.28959,0.827884,0.848326,0.877951,0.112471,0.8001,0.617192,0.19349,0.447722,0.772171,0.519064,0.0164111,0.74738,0.652422,0.790964,0.442804,0.163931,0.0578964,0.613996,0.117087,0.31092,0.687098,0.165449,0.896219,0.946736,0.704159,0.716949,0.270531,0.243657,0.339811,0.641744,0.412633,0.878921,0.428667,0.646524,0.152014,0.384451,0.573618,0.286573,0.802505,0.858218,0.21001,0.161045,0.427541,0.776249,0.0343478,0.117692,0.951551,0.542294,0.918334,0.754267,0.0717019,0.0420455,0.195067,0.8306,0.726748,0.46613,0.876296,0.49023,0.965316,0.81385,0.162098,0.249001,0.814124,0.768148,0.0631663,0.330287,0.449006,0.158803,0.593529,0.487386,0.0795793,0.209437,0.405245,0.659479,0.0405663,0.581702,0.168784,0.924311,0.35938,0.508732,0.0493243,0.832433,0.856402,0.781924,0.220396,0.351938,0.306754,0.622681,0.261633,0.586237,0.314989,0.255174,0.366192,0.689174,0.179938,0.326347,0.408066,0.291372,0.279845,0.734708,0.621487,0.959006,0.989418,0.108939,0.645597,0.412838,0.691142,0.00444883,0.340778,0.747316,0.417654,0.341046,0.83929,0.395846,0.458515,0.0514635,0.00603944,0.59598,0.317344,0.605044,0.127153,0.0190679,0.0985098,0.723413,0.337959,0.142428,0.617553,0.692526,0.721028,0.175239,0.082875,0.315757,0.514912,0.781888,0.019984,0.576041,0.0901597,0.780187,0.294035,0.568996,0.355592,0.371961,0.159707,0.620151,0.107206,0.876105,0.608644,0.716746,0.157657,0.809857,0.733805,0.320512,0.428201,0.330941,0.0767832,0.132298,0.322136,0.809773,0.451007,0.0108864,0.833473,0.568674,0.645931,0.701634,0.997759,0.894217,0.0287316,0.137957,0.744157,0.209492,0.26791,0.717643,0.273153,0.40579,0.508293,0.169095,0.405952,0.386932,0.561557,0.997386,0.832118,0.834148,0.389392,0.265105,0.415519,0.389808,0.646592,0.247424,0.839834,0.114723,0.129736,0.737714,0.188666,0.62079,0.572828,0.788199,0.429387,0.0798375,0.594246,0.0856143,0.254375,0.671186,0.137293,0.303717,0.620441,0.204706,0.604456,0.684986,0.715398,0.37895,0.587689,0.205808,0.604306,0.248499,0.91239,0.678258,0.455593,0.150106,0.986894,0.738799,0.452866,0.694777,0.492094,0.719467,0.590544,0.274653,0.247675,0.154841,0.893478,0.418657,0.615258,0.302803,0.92285,0.442737,0.541579,0.796799,0.821903,0.0259818,0.621596,0.676595,0.221292,0.876318,0.771953,0.867528,0.677763,0.907463,0.362813,0.935899,0.438172,0.83081,0.900592,0.229619,0.463438,0.600361,0.125598,0.200053,0.135192,0.654591,0.532867,0.143238,0.0434158,0.990904,0.349412,0.660539,0.507525,0.859653,0.68119,0.985064,0.168942,0.775106,0.355469,0.534181,0.0605028,0.000986814,0.241671,0.508814,0.35901,0.426857,0.150565,0.490303,0.626302,0.0413126,0.68408,0.836125,0.253472,0.766231,0.826852,0.0638555,0.550736,0.865589,0.831413,0.400187,0.663493,0.844443,0.756136,0.886121,0.43024,0.278491,0.882462,0.882955,0.98504,0.399434,0.534099,0.318805,0.295354,0.901691,0.634048,0.100547,0.28975,0.546757,0.529348,0.263022,0.953925,0.283192,0.799651,0.762714,0.0474205,0.0437025,0.995984,0.149666,0.236667,0.440462,0.195958,0.748993,0.0939512,0.164503,0.370394,0.265352,0.500014,0.968279,0.00897795,0.00904888,0.469966,0.714843,0.757517,0.813849,0.313802,0.853075,0.0896675,0.665302,0.35954,0.362195,0.314684,0.856886,0.58533,0.302166,0.299343,0.119486,0.116004,0.873396,0.435822,0.306818,0.870555,0.323317,0.0145406,0.311321,0.201741,0.809646,0.647962,0.626349,0.232018,0.794208,0.12636,0.883909,0.418762,0.63569,0.102634,0.997316,0.145062,0.652146,0.0434906,0.0664406,0.815691,0.648684,0.395298,0.563419,0.000540674,0.666853,0.678128,0.493824,0.672316,0.653234,0.624253,0.682761,0.84774,0.405935,0.498847,0.844728,0.412911,0.293132,0.300298,0.772456,0.363773,0.349949,0.190085,0.661811,0.558173,0.661523,0.613866,0.680402,0.603634,0.954917,0.247761,0.249576,0.44648,0.524614,0.328064,0.323165,0.896183,0.703965,0.466634,0.610675,0.784555,0.649993,0.521864,0.489405,0.158288,0.101076,0.650595,0.883953,0.299431,0.628447,0.00425899,0.855768,0.701395,0.98537,0.00378704,0.10487,0.966964,0.297122,0.917364,0.19972,0.781233,0.253103,0.230041,0.0330015,0.237641,0.426275,0.187242,0.813381,0.521614,0.357336,0.32685,0.0153891,0.374911,0.360243,0.762514,0.000249088,0.913369,0.678873,0.921141,0.410866,0.280213,0.491194,0.755338,0.0939502,0.267788,0.709041,0.421152,0.152874,0.367654,0.250368,0.529659,0.825134,0.512198,0.450512,0.200443,0.910164,0.955473,0.485131,0.944709,0.892618,0.246577,0.872532,0.989799,0.816407,0.828685,0.421456,0.912328,0.824408,0.742576,0.895665,0.0296646,0.514402,0.375561,0.633349,0.635795,0.923617,0.547054,0.452354,0.793273,0.380723,0.827039,0.81369,0.732892,0.272862,0.41047,0.159359,0.118198,0.484309,0.586886,0.781501,0.648172,0.0768396,0.108325,0.220744,0.218734,0.429287,0.912115,0.849004,0.693447,0.630245,0.779476,0.515417,0.85541,0.966444,0.52464,0.425171,0.181442,0.8773,0.305188,0.289051,0.94949,0.353329,0.731082,0.0886147,0.900274,0.8748,0.743963,0.934692,0.800849,0.726119,0.12829,0.775689,0.403741,0.157998,0.378991,0.807159,0.499508,0.425505,0.118496,0.981932,0.946897,0.577888,0.66115,0.564174,0.427713,0.188987,0.931644,0.654151,0.329875,0.660187,0.388085,0.994014,0.645761,0.0544241,0.608687,0.333073,0.0899286,0.908758,0.692613,0.680352,0.653418,0.924735,0.476103,0.963516,0.533594,0.795568,0.847431,0.664935,0.166465,0.0441285,0.332249,0.80589,0.915695,0.485944,0.877401,0.388905,0.764078,0.259341,0.00375605,0.421462,0.654706,0.067209,0.186291,0.808857,0.806715,0.528997,0.355668,0.912616,0.443561,0.920925,0.053817,0.561096,0.549089,0.511543,0.930989,0.810145,0.0214087,0.289693,0.265744,0.764533,0.205111,0.079285,0.329391,0.49842,0.432485,0.819947,0.0332183,0.469231,0.323756,0.857577,0.210324,0.783555,0.198469,0.709497,0.730201,0.311826,0.477142,0.120587,0.826424,0.274648,0.899014,0.528649,0.0912837,0.834406,0.00803953,0.901907,0.619101,0.206174,0.957792,0.220347,0.134027,0.814865,0.634105,0.72954,0.684593,0.321087,0.972311,0.0186813,0.187565,0.937162,0.71193,0.787752,0.517326,0.809752,0.584799,0.96559,0.781712,0.19926,0.290705,0.840802,0.276504,0.90111,0.0317706,0.402706,0.823005,0.854637,0.263131,0.105096,0.167591,0.399597,0.216179,0.477181,0.901505,0.454908,0.595272,0.41765,0.833145,0.531205,0.498894,0.867422,0.208886,0.696573,0.091879,0.449707,0.880997,0.972929,0.219307,0.969113,0.93903,0.70045,0.222705,0.727054,0.290479,0.0614254,0.109254,0.0660895,0.276617,0.755864,0.558663,0.837836,0.212392,0.955114,0.908383,0.709834,0.81698,0.595102,0.234164,0.682883,0.82366,0.539769,0.848459,0.0813109,0.0274881,0.813633,0.0944702,0.872113,0.522733,0.932337,0.468313,0.261489,0.56605,0.198448,0.34425,0.908517,0.647874,0.484074,0.0196943,0.722356,0.590979,0.497663,0.931115,0.655435,0.52913,0.735462,0.989664,0.710964,0.0794551,0.588109,0.781919,0.281686,0.529644,0.0662303,0.854738,0.917446,0.945922,0.287897,0.191157,0.954551,0.238043,0.04456,0.969364,0.932983,0.643963,0.867002,0.844069,0.448412,0.779375,0.438443,0.304435,0.165407,0.956178,0.647504,0.423925,0.902318,0.994099,0.862102,0.783092,0.0838065,0.809486,0.112382,0.495789,0.0856466,0.164488,0.658407,0.0221766,0.334307,0.327025,0.390675,0.00830966,0.000984907,0.0246011,0.1097,0.591406,0.751686,0.942321,0.292942,0.877075,0.752419,0.571512,0.880445,0.0860562,0.543744,0.965965,0.921704,0.373902,0.750879,0.124471,0.600933,0.8157,0.145174,0.00178862,0.91449,0.653633,0.194397,0.44474,0.0812146,0.955332,0.206876,0.933419,0.361522,0.496843,0.771353,0.915505,0.0229558,0.490268,0.960715,0.491456,0.919205,0.0404473,0.0991324,0.737455,0.417859,0.264349,0.156501,0.783543,0.617986,0.88313,0.194744,0.301943,0.0564141,0.0292525,0.348346,0.0847227,0.601279,0.127379,0.796563,0.00206262,0.908064,0.483563,0.640657,0.0998212,0.332005,0.111781,0.269138,0.107315,0.157343,0.246258,0.394082,0.651583,0.460108,0.349326,0.774697,0.860083,0.81673,0.520183,0.91544,0.801879,0.87488,0.746504,0.733568,0.214158,0.678699,0.17512,0.560406,0.917746,0.636925,0.673595,0.513584,0.693225,0.771892,0.160372,0.552723,0.104422,0.244906,0.928277,0.808186,0.447308,0.34777,0.458185,0.511138,0.822901,0.892717,0.279721,0.339007,0.679689,0.41749,0.402121,0.522376,0.284902,0.178228,0.533869,0.514108,0.0788817,0.796742,0.245174,0.481203,0.339621,0.202235,0.00874472,0.65171,0.926578,0.527778,0.45457,0.727541,0.724189,0.633683,0.92461,0.699342,0.947674,0.259473,0.781932,0.897743,0.769384,0.748005,0.753422,0.434997,0.450954,0.0778241,0.662842,0.458802,0.848126,0.341244,0.456293,0.0406384,0.302132,0.619295,0.628251,0.0442385,0.961337,0.364224,0.405306,0.349764,0.822774,0.704953,0.270102,0.363314,0.838815,0.203305,0.778803,0.602017,0.974179,0.0193586,0.0279949,0.212075,0.932132,0.213285,0.839668,0.849506,0.0299866,0.573233,0.541698,0.744312,0.517097,0.674011,0.244663,0.504092,0.11514,0.146278,0.302813,0.97446,0.884774,0.961803,0.381533,0.391475,0.366753,0.393403,0.815835,0.0570506,0.376167,0.723393,0.390451,0.840196,0.788791,0.7245,0.481503,0.758282,0.159709,0.853692,0.778544,0.448773,0.915657,0.785122,0.457885,0.912179,0.0275848,0.190702,0.868395,0.345878,|0.381757,0.925815,0.254812,0.0176232,0.450267,0.916488,0.178828,0.603971,0.608917,0.153284,0.515451,0.0335424,0.562649,0.597643,0.0717609,0.601222,0.754856,0.902365,0.544514,0.895671,0.23892,0.432371,0.995154,0.0437346,0.807679,0.986546,0.142061,0.644232,0.839877,0.278133,0.141845,0.166795,0.769834,0.891758,0.406961,0.611741,0.221985,0.668713,0.713253,0.227618,0.39065,0.75209,0.544435,0.06883,0.293169,0.669785,0.428195,0.795294,0.33524,0.512913,0.125974,0.9497,0.457143,0.797286,0.678922,0.763746,0.250534,0.801314,0.758668,0.0925496,0.6707,0.932595,0.584189,0.573451,0.18812,0.399565,0.658868,0.900624,0.516782,0.497133,0.947186,0.621073,0.154622,0.253938,0.298696,0.760254,0.831245,0.96074,0.354737,0.466846,0.439807,0.271592,0.988471,0.979029,0.075786,0.345373,0.0490517,0.703828,0.663975,0.906777,0.760408,0.193695,0.207518,0.124882,0.720621,0.920162,0.591858,0.573905,0.764163,0.504531,0.117788,0.787233,0.609554,0.107507,0.556526,0.409283,0.163011,0.90005,0.222502,0.00202101,0.200878,0.109415,0.381261,0.606475,0.966692,0.943045,0.282138,0.760047,0.13199,0.179534,0.0281047,0.0020206,0.710384,0.860635,0.487377,0.780371,0.469895,0.113999,0.300001,0.527755,0.599888,0.104518,0.453139,0.808378,0.100236,0.635194,0.360409,0.875845,0.275008,0.911673,0.893213,0.163801,0.728509,0.479321,0.345666,0.614931,0.865058,0.00782168,0.0569291,0.504912,0.202589,0.522571,0.425663,0.889622,0.330771,0.831798,0.0576589,0.668849,0.615171,0.0575783,0.696387,0.569999,0.0537226,0.676898,0.870936,0.918379,0.658546,0.253282,0.6995,0.292014,0.104939,0.204889,0.451723,0.802607,0.518677,0.923824,0.311328,0.892813,0.460091,0.600572,0.494704,0.341799,0.221233,0.379486,0.594774,0.677616,0.514377,0.552579,0.771864,0.128584,0.831727,0.248248,0.481031,0.1768,0.859368,0.136853,0.155291,0.725272,0.414203,0.372142,0.110502,0.531516,0.902069,0.588731,0.680969,0.929485,0.131078,0.109719,0.165855,0.17169,0.239652,0.659625,0.244541,0.402518,0.49975,0.521166,0.303297,0.642974,0.291655,0.00230223,0.0616813,0.0111579,0.271617,0.99735,0.645019,0.384479,0.502743,0.477991,0.861362,0.81572,0.309664,0.0594408,0.200283,0.948547,0.0107675,0.972999,0.870013,0.596723,0.8255,0.189342,0.40862,0.767866,0.120409,0.878062,0.609185,0.135763,0.907342,0.755835,0.368551,0.951473,0.510565,0.527851,0.538853,0.0789534,0.59001,0.382265,0.277974,0.515316,0.245029,0.746562,0.0681515,0.813668,0.682726,0.707295,0.69226,0.808643,0.474937,0.660473,0.897692,0.310772,0.514626,0.958597,0.326607,0.231466,0.616419,0.703136,0.481981,0.964072,0.835499,0.431049,0.3372,0.246075,0.518278,0.0393663,0.320644,0.776542,0.194628,0.638193,0.848695,0.158921,0.969556,0.440857,0.525914,0.186763,0.868852,0.630941,0.0271696,0.995802,0.816179,0.365906,0.04119,0.075214,0.237137,0.162506,0.0429657,0.203563,0.628585,0.683794,0.622268,0.67042,0.952643,0.189211,0.832955,0.998212,0.223842,0.473506,0.608577,0.009381,0.880132,0.0959021,0.782349,0.675521,0.589849,0.741234,0.776977,0.515711,0.569552,0.359816,0.229602,0.474195,0.173299,0.122936,0.842821,0.423592,0.573066,0.0718392,0.695701,0.24472,0.402753,0.776956,0.779822,0.606268,0.574618,0.483702,0.0512124,0.844448,0.35357,0.245384,0.493915,0.278044,0.381329,0.240362,0.135105,0.23835,0.70816,0.853283,0.741468,0.563688,0.114586,0.790938,0.326265,0.303865,0.78478,0.290063,0.94076,0.194126,0.51123,0.383612,0.998504,0.877578,0.928084,0.664788,0.812817,0.61343,0.413275,0.0576708,0.855567,0.332629,0.855381,0.670936,0.174941,0.825584,0.302309,0.529743,0.154816,0.173585,0.823136,0.65148,0.204229,0.327663,0.418793,0.760774,0.74638,0.455513,0.653766,0.930409,0.306954,0.0967453,0.587933,0.181401,0.618812,0.0608277,0.337048,0.893587,0.460202,0.188353,0.568349,0.653335,0.567645,0.342724,0.597675,0.0668821,0.623251,0.988075,0.0814635,0.12217,0.837643,0.865444,0.738943,0.381234,0.450561,0.127548,0.903677,0.157834,0.602439,0.926512,0.252254,0.538293,0.0500565,0.110049,0.159294,0.965434,0.715073,0.830675,0.429308,0.227869,0.248436,0.972792,0.497348,0.791437,0.458471,0.301978,0.306751,0.349438,0.47864,0.937119,0.150355,0.209297,0.547465,0.296035,0.326653,0.404929,0.240059,0.0318524,0.284059,0.239041,0.760196,0.311055,0.748187,0.311816,0.915268,0.510391,0.613762,0.912346,0.477952,0.719248,0.743425,0.801215,0.579098,0.230746,0.626521,0.043619,0.978582,0.0517989,0.886524,0.447318,0.991219,0.420932,0.728597,0.0646161,0.634708,0.147641,0.638981,0.241703,0.424502,0.602771,0.177388,0.770175,0.803435,0.42214,0.485608,0.10457,0.603653,0.857538,0.735319,0.838161,0.837224,0.398846,0.923611,0.0402943,0.846839,0.626102,0.197006,0.187612,0.565206,0.0470567,0.582377,0.122349,0.491396,0.0729389,0.839528,0.716882,0.492795,0.498027,0.430008,0.105605,0.264965,0.224976,0.998251,0.503908,0.663114,0.454148,0.104549,0.54906,0.973697,0.684893,0.826578,0.240664,0.595838,0.756293,0.320015,0.596065,0.46901,0.788792,0.204729,0.125103,0.865787,0.0402561,0.673856,0.623432,0.55359,0.903685,0.0999664,0.977805,0.567548,0.78745,0.684548,0.105678,0.118745,0.0188012,0.690568,0.0906631,0.467457,0.670981,0.680809,0.85314,0.409989,0.873896,0.174113,0.966566,0.76958,0.365784,0.640221,0.262314,0.687448,0.715606,0.372315,0.540197,0.369394,0.790482,0.746577,0.893459,0.921025,0.324452,0.0546739,0.728479,0.936371,0.833578,0.263767,0.810984,0.927402,0.605819,0.719654,0.987518,0.428928,0.0429217,0.222669,0.461432,0.218586,0.254464,0.231279,0.845459,0.142039,0.575182,0.13047,0.883865,0.309154,0.461915,0.284495,0.712198,0.805648,0.1991,0.518138,0.651517,0.371439,0.547259,0.939395,0.732524,0.344661,0.463087,0.0491356,0.264268,0.294361,0.264734,0.421268,0.863123,0.161387,0.934244,0.164251,0.645331,0.102909,0.575496,0.951314,0.18436,0.432326,0.608994,0.612386,0.795931,0.101206,0.30675,0.849299,0.993917,0.841772,0.220322,0.954971,0.717556,0.760639,0.585572,0.568266,0.50771,0.615853,0.8362,0.674691,0.373153,0.954492,0.233624,0.227847,0.567956,0.552237,0.321119,0.0446544,0.063552,0.499353,0.194929,0.923218,0.76542,0.413591,0.46354,0.877809,0.311448,0.782455,0.109768,0.617269,0.720819,0.0815077,0.654789,0.0238669,0.688551,0.198721,0.321038,0.454413,0.277489,0.974689,0.70666,0.998127,0.295698,0.121241,0.631928,0.465274,0.622933,0.230466,0.565998,0.0602976,0.404455,0.744811,0.703133,0.659414,0.726546,0.103001,0.366323,0.276328,0.22482,0.959093,0.589151,0.600188,0.807538,0.0511209,0.860772,0.0965695,0.565139,0.746043,0.465084,0.04885,0.0744919,0.537694,0.415743,0.920503,0.845028,0.893066,0.0979012,0.426542,0.556746,0.72765,0.0780845,0.82164,0.025497,0.328873,0.0236102,0.199661,0.783749,0.722035,0.556527,0.777008,0.554837,0.953792,0.278073,0.991585,0.197238,0.843294,0.791093,0.246042,0.35634,0.782272,0.907384,0.933767,0.429775,0.287737,0.41683,0.914367,0.675665,0.972973,0.367594,0.291576,0.0906161,0.135707,0.0500961,0.829542,0.290386,0.185543,0.694232,0.323803,0.546126,0.410129,0.920434,0.665553,0.829736,0.365355,0.679024,0.272725,0.991364,0.0935095,0.0149355,0.170004,0.360628,0.281799,0.468749,0.674904,0.892584,0.515754,0.099791,0.246305,0.296722,0.967347,0.167595,0.717364,0.121565,0.00423336,0.74058,0.20388,0.768855,0.716729,0.570329,0.594283,0.0436207,0.738974,0.786736,0.547094,0.41852,0.728729,0.0391798,0.146514,0.830561,0.450366,0.0942324,0.0690074,0.266341,0.037309,0.085394,0.662619,0.308749,0.788987,0.365966,0.957939,0.413992,0.166881,0.152624,0.68079,0.323353,0.0693762,0.741678,0.0438207,0.46637,0.746414,0.810809,0.854699,0.000138164,0.407933,0.275194,0.810457,0.65463,0.959493,0.917615,0.994629,0.697382,0.306725,0.723636,0.263638,0.847158,0.626771,0.0407993,0.104852,0.849681,0.316614,0.378683,0.777592,0.794648,0.378355,0.26989,0.949058,0.715442,0.837019,0.150353,0.481277,0.457533,0.0580951,0.75571,0.680464,0.874062,0.817147,0.104041,0.625978,0.0487976,0.0217605,0.0472136,0.420011,0.0833027,0.707732,0.375551,0.181546,0.230722,0.655275,0.0607173,0.104018,0.340889,0.041304,0.804406,0.808122,0.865528,0.29519,0.189783,0.73788,0.584456,0.241868,0.0456821,0.539441,0.211814,0.244754,0.434166,0.326342,0.795886,0.546537,0.976396,0.701193,0.289687,0.413323,0.437153,0.107845,0.427062,0.541414,0.873154,0.357036,0.332301,0.773805,0.101642,0.389211,0.762575,0.774772,0.266438,0.38794,0.21209,0.337057,0.759746,0.835825,0.193327,0.250187,0.0679759,0.250534,0.671591,0.0772895,0.686416,0.752611,0.306916,0.650557,0.00337076,0.593387,0.845597,0.825213,0.332641,0.54226,0.725767,0.0244959,0.644693,0.913494,0.401507,0.90974,0.747777,0.205886,0.872759,0.320924,0.233517,0.739204,0.200871,0.0501494,0.150599,0.567127,0.312027,0.447755,0.693218,0.980412,0.265661,0.815243,0.0907256,0.212167,0.413849,0.26639,0.94694,0.0537926,0.78372,0.514172,0.672758,0.377995,0.579347,0.864147,0.259083,0.271865,0.823502,0.19096,0.489966,0.178154,0.0276241,0.380791,0.293705,0.38986,0.246921,0.683835,0.443582,0.252824,0.469993,0.154251,0.568174,0.0763994,0.129294,0.880315,0.349903,0.366803,0.212299,0.593142,0.203556,0.695773,0.925547,0.489437,0.532602,0.0556382,0.871998,0.878504,0.23546,0.0526482,0.0688468,0.66029,0.918039,0.0382255,0.185862,0.589131,0.430401,0.282341,0.518528,0.886622,0.879598,0.307825,0.402623,|0.443368,0.324376,0.0648737,0.533084,0.903684,0.91929,0.206295,0.675185,0.0329944,0.642758,0.397027,0.606879,0.24867,0.859751,0.312366,0.123089,0.398098,0.0522941,0.944492,0.0848384,0.405773,0.0471307,0.0209506,0.474996,0.0828488,0.847853,0.328747,0.781058,0.441925,0.054794,0.351132,0.0510564,0.494748,0.62125,0.919057,0.16111,0.237216,0.729694,0.648561,0.735261,0.0751687,0.357526,0.486103,0.714129,0.476756,0.893386,0.204733,0.518833,0.750779,0.593696,0.936161,0.310434,0.463242,0.645068,0.845849,0.104373,0.831671,0.229931,0.82923,0.808441,0.285269,0.145574,0.378653,0.242306,0.486801,0.126539,0.213865,0.310183,0.920281,0.337915,0.19542,0.450346,0.433066,0.701424,0.451177,0.867294,0.252533,0.856041,0.957246,0.495481,0.183234,0.58533,0.538371,0.164544,0.481716,0.144872,0.967293,0.146732,0.212621,0.591961,0.244538,0.258393,0.78977,0.104125,0.794928,0.222535,0.349775,0.439092,0.707481,0.0693449,0.419143,0.429243,0.130078,0.208893,0.4773,0.336441,0.303984,0.5564,0.442374,0.597467,0.992356,0.00993568,0.467741,0.771872,0.44304,0.403815,0.267775,0.903264,0.0909231,0.902945,0.697339,0.31097,0.0365421,0.355217,0.0417135,0.440412,0.545917,0.224629,0.131626,0.472457,0.892566,0.664656,0.83694,0.416698,0.968558,0.681998,0.0615788,0.77424,0.961822,0.718264,0.225633,0.36407,0.604349,0.228657,0.972143,0.0625994,0.98519,0.940143,0.915174,0.198427,0.603426,0.474516,0.0169325,0.544429,0.641735,0.171024,0.142746,0.924516,0.472086,0.91806,0.391216,0.42925,0.98074,0.449026,0.787988,0.314478,0.603875,0.6953,0.888617,0.136789,0.018452,0.44475,0.752146,0.604014,0.320084,0.94765,0.216458,0.857183,0.501243,0.794069,0.768915,0.051381,0.796016,0.811011,0.639175,0.375165,0.827391,0.677891,0.548578,0.102996,0.713387,0.985339,0.0358999,0.149213,0.970967,0.958159,0.121502,0.945991,0.463167,0.574238,0.301816,0.586086,0.523366,0.0266725,0.950369,0.985933,0.633353,0.821982,0.308732,0.972192,0.908825,0.208711,0.691998,0.377182,0.326598,0.587347,0.542999,0.912123,0.180599,0.664928,0.519868,0.502528,0.963279,0.750922,0.245472,0.437196,0.532663,0.526326,0.819182,0.892545,0.600167,0.731773,0.530926,0.602954,0.0718016,0.658677,0.245518,0.345617,0.728766,0.454366,0.833508,0.750413,0.688514,0.933662,0.045693,0.167432,0.858662,0.663478,0.254476,0.408986,0.272445,0.557337,0.624456,0.697033,0.861368,0.744621,0.0324523,0.365492,0.506209,0.858251,0.124465,0.3977,0.756074,0.811955,0.363101,0.974871,0.886524,0.423987,0.8324,0.923604,0.423262,0.54605,0.875381,0.339164,0.221068,0.674444,0.748604,0.477401,0.843099,0.712421,0.92951,0.436674,0.826968,0.41389,0.133353,0.397791,0.140483,0.167363,0.498433,0.548372,0.432302,0.173371,0.594924,0.766522,0.623838,0.874814,0.631375,0.0331241,0.623751,0.656561,0.866826,0.706523,0.25436,0.989363,0.405217,0.949555,0.515737,0.685124,0.960036,0.776363,0.339419,0.630647,0.607508,0.741799,0.666066,0.843882,0.2385,0.0635806,0.791615,0.738406,0.0736504,0.383292,0.268785,0.202649,0.800902,0.906049,0.865182,0.1776,0.524654,0.146013,0.413447,0.184479,0.776328,0.939571,0.638924,0.348806,0.803374,0.696676,0.466012,0.691944,0.674736,0.839587,0.433685,0.616548,0.197179,0.482031,0.652232,0.347811,0.16288,0.376691,0.42249,0.809205,0.660063,0.979273,0.550857,0.00627708,0.680626,0.0299333,0.0798852,0.988062,0.43865,0.402602,0.749067,0.437401,0.117533,0.00672048,0.608018,0.66299,0.659234,0.094534,0.43702,0.882011,0.272858,0.48904,0.783328,0.852932,0.237081,0.428016,0.655791,0.638675,0.33204,0.968489,0.1717,0.682972,0.951994,0.487036,0.634392,0.878786,0.965444,0.507955,0.779826,0.797858,0.867913,0.483199,0.634647,0.733248,0.943169,0.111667,0.88655,0.476612,0.0818079,0.859842,0.705967,0.750779,0.157785,0.66756,0.655354,0.985984,0.173073,0.547064,0.0117568,0.554597,0.435726,0.908654,0.0390509,0.444364,0.484488,0.902464,0.689358,0.891405,0.886566,0.769292,0.112385,0.711943,0.261596,0.265147,0.604108,0.143458,0.982493,0.602232,0.469297,0.386838,0.775458,0.399352,0.207295,0.0118726,0.181259,0.771092,0.367295,0.31328,0.242537,0.627542,0.866328,0.405307,0.0501947,0.879145,0.035525,0.162652,0.61597,0.951877,0.68914,0.637825,0.913264,0.750642,0.948893,0.670741,0.841064,0.148355,0.517492,0.339716,0.518852,6.73532e-06,0.16152,0.672158,0.571999,0.566039,0.592119,0.0902571,0.579256,0.095137,0.143749,0.465523,0.13124,0.443954,0.891846,0.847317,0.688388,0.87919,0.764818,0.726486,0.706441,0.134873,0.623376,0.807091,0.613383,0.0115623,0.132645,0.793758,0.662627,0.666578,0.520396,0.645036,0.37662,0.0884327,0.536781,0.27267,0.432593,0.322515,0.764772,0.773756,0.430631,0.141022,0.567239,0.13888,0.766433,0.158218,0.288515,0.441178,0.485332,0.294275,0.62888,0.325229,0.975525,0.141786,0.119979,0.604838,0.981387,0.733078,0.13817,0.428209,0.817074,0.0302348,0.11742,0.925218,0.287925,0.384004,0.0494445,0.726204,0.778969,0.269411,0.909452,0.130697,0.551385,0.696841,0.219397,0.475224,0.879202,0.884435,0.308981,0.622338,0.778241,0.962784,0.847941,0.965866,0.285837,0.0695233,0.823778,0.0986775,0.846141,0.2249,0.510916,0.643349,0.748614,0.291709,0.841624,0.723037,0.965611,0.245398,0.160877,0.16813,0.843511,0.750118,0.233715,0.606722,0.19922,0.186808,0.176253,0.276197,0.79625,0.261205,0.28587,0.982047,0.636901,0.828217,0.0872739,0.496311,0.87941,0.81273,0.371823,0.334849,0.729125,0.538309,0.314433,0.909796,0.444094,0.472341,0.17683,0.958457,0.573614,0.198399,0.284203,0.20066,0.117617,0.750432,0.382717,0.50237,0.997654,0.636875,0.887537,0.0555343,0.0243916,0.059991,0.641653,0.0764144,0.800435,0.339715,0.59905,0.0257468,0.289181,0.119194,0.433996,0.133809,0.117885,0.766091,0.322506,0.37342,0.100761,0.43989,0.476572,0.29203,0.265194,0.691151,0.22391,0.496401,0.55218,0.491133,0.842176,0.523667,0.701604,0.79932,0.534394,0.164615,0.760408,0.417129,0.854858,0.370709,0.562257,0.998235,0.974178,0.370582,0.926077,0.0678977,0.868624,0.20673,0.433432,0.243059,0.357745,0.388921,0.77886,0.629494,0.846073,0.753671,0.933617,0.651731,0.844107,0.761236,0.501902,0.772969,0.414938,0.311527,0.324184,0.0191589,0.828313,0.831983,0.0469202,0.177534,0.455144,0.504984,0.00988746,0.663026,0.55721,0.362939,0.64669,0.611817,0.305156,0.964138,0.90758,0.671544,0.473096,0.548014,0.795622,0.830357,0.203539,0.651461,0.0438192,0.0984372,0.717961,0.690884,0.136696,0.139499,0.130678,0.947885,0.296761,0.798743,0.075119,0.87827,0.71691,0.9203,0.654971,0.500089,0.321271,0.615289,0.935853,0.661643,0.503571,0.140603,0.123216,0.923588,0.287835,0.81835,0.78962,0.606852,0.157526,0.464427,0.472553,0.866488,0.136204,0.476655,0.154662,0.83054,0.341745,0.692459,0.168175,0.155476,0.64024,0.1915,0.0989897,0.55916,0.886355,0.773839,0.426613,0.447804,0.770788,0.0423477,0.471366,0.938825,0.292226,0.369395,0.909552,0.875483,0.0808987,0.536957,0.16319,0.527484,0.689467,0.163352,0.345603,0.0119419,0.83766,0.255754,0.972866,0.863475,0.76384,0.29347,0.550476,0.422407,0.857442,0.510997,0.547929,0.822387,0.945507,0.811082,0.420369,0.87876,0.531856,0.113786,0.589048,0.84747,0.296944,0.286457,0.546857,0.903934,0.651049,0.880613,0.854233,0.856758,0.246265,0.333277,0.546591,0.021655,0.61938,0.308677,0.157997,0.246042,0.380529,0.555978,0.991958,0.419411,0.523999,0.3393,0.74436,0.456151,0.853273,0.163435,0.606431,0.844264,0.695546,0.769081,0.105848,0.163093,0.976064,0.103559,0.00773102,0.279183,0.91496,0.0770108,0.165855,0.489829,0.844098,0.240887,0.048778,0.747871,0.322304,0.89126,0.0207961,0.955811,0.88351,0.056538,0.474527,0.0174874,0.279472,0.602534,0.10158,0.781399,0.275652,0.564652,0.855208,0.518792,0.424247,0.143914,0.647414,0.866922,0.880713,0.847774,0.265094,0.881282,0.665769,0.35854,0.613413,0.57811,0.347973,0.228663,0.834718,0.118353,0.42239,0.718397,0.8493,0.0626258,0.953289,0.0201213,0.634082,0.776833,0.0857742,0.275873,0.95973,0.949601,0.500674,0.280982,0.39561,0.563807,0.526329,0.616484,0.21873,0.812387,0.116297,0.611198,0.998056,0.207588,0.64306,0.674803,0.892883,0.296187,0.879098,0.657747,0.927883,0.410246,0.993163,0.39509,0.828597,0.879435,0.409368,0.349652,0.128992,0.680063,0.658074,0.344995,0.396189,0.732191,0.569278,0.145408,0.217373,0.342524,0.173105,0.660924,0.151185,0.247021,0.568394,0.698329,0.987067,0.32467,0.265549,0.18887,0.295625,0.387904,0.434656,0.413142,0.766514,0.496093,0.47307,0.595971,0.561773,0.229339,0.633503,0.29779,0.0641616,0.982437,0.116601,0.00178868,0.467127,0.531569,0.412536,0.231643,0.134924,0.576179,0.900217,0.657667,0.370414,0.891272,0.812815,0.48344,0.32583,0.92596,0.0471662,0.622147,0.489792,0.270293,0.843215,0.376614,0.691744,0.663086,0.17011,0.458134,0.00802529,0.0741578,0.152008,0.915052,0.962958,0.272011,0.389839,0.169525,0.866423,0.751306,0.63755,0.103527,0.0472804,0.215974,0.412406,0.103089,0.26558,0.927761,0.446883,0.739575,0.0994514,0.236742,0.922577,0.0252476,0.609122,0.0212958,0.561798,0.160832,0.0443513,0.765287,0.742347,0.25396,0.955193,0.591458,0.856018,0.204127,0.407886,0.71026,0.897627,0.913383,0.000479281,0.705245,0.920914,0.0511282,0.210101,0.729851,0.0559189,0.303357,0.0930918,0.514481,0.664649,0.0567919,0.557233,0.92325,0.584442,0.909742,0.485587,0.562371,|0.98388,0.151806,0.55836,0.581967,0.73599,0.0423225,0.591747,0.223658,0.811007,0.625922,0.662789,0.0333002,0.638359,0.698656,0.522401,0.915313,0.920614,0.565586,0.0452965,0.795037,0.503522,0.831337,0.922602,0.0410318,0.297395,0.0331484,0.455758,0.474192,0.526389,0.352792,0.956513,0.634038,0.047423,0.143027,0.843829,0.0682136,0.386624,0.401734,0.798026,0.253022,0.829256,0.463396,0.617309,0.89977,0.688781,0.462662,0.38817,0.140737,0.989114,0.216686,0.240519,0.692247,0.830986,0.562865,0.35065,0.403768,0.925754,0.220155,0.753604,0.0407503,0.965586,0.897741,0.265157,0.874303,0.774761,0.104813,0.47158,0.988777,0.849163,0.654473,0.145756,0.051075,0.405701,0.914308,0.0378594,0.878647,0.34653,0.763191,0.582575,0.923964,0.619462,0.82467,0.0891942,0.389685,0.433271,0.551097,0.839209,0.455253,0.715204,0.600019,0.983579,0.273042,0.312451,0.438968,0.113468,0.071312,0.788596,0.90515,0.0245306,0.54052,0.834966,0.124814,0.0434623,0.956634,0.814557,0.486577,0.88596,0.0343412,0.493026,0.212314,0.183473,0.806678,0.667764,0.241488,0.264668,0.199385,0.831187,0.329514,0.453657,0.354728,0.26039,0.133302,0.681173,0.0306911,0.790762,0.860186,0.464306,0.83844,0.433061,0.715584,0.0213103,0.578955,0.193276,0.294817,0.025164,0.134178,0.489296,0.66414,0.641664,0.95656,0.0619293,0.522449,0.439808,0.438733,0.989662,0.892105,0.611081,0.0588214,0.935266,0.833663,0.0785903,0.296123,0.697855,0.86316,0.934781,0.786235,0.982943,0.128002,0.0942029,0.304293,0.699658,0.539374,0.2191,0.321699,0.682413,0.607038,0.735791,0.73914,0.170272,0.424074,0.458366,0.994836,0.991643,0.19155,0.632508,0.446169,0.751086,0.970908,0.478789,0.121374,0.528051,0.445026,0.322043,0.811812,0.784963,0.668073,0.896189,0.69459,0.881202,0.463596,0.820687,0.335188,0.100767,0.126566,0.286083,0.990847,0.643349,0.470978,0.668967,0.95434,0.30823,0.561951,0.366231,0.653697,0.676297,0.483884,0.88414,0.120046,0.966397,0.00857818,0.140448,0.437978,0.0613756,0.257866,0.02428,0.817327,0.2865,0.628043,0.101089,0.283379,0.445344,0.29219,0.734988,0.680256,0.528459,0.149534,0.0245442,0.370536,0.340014,0.00896263,0.871918,0.263609,0.0702962,0.198454,0.851862,0.954919,0.810949,0.183874,0.608167,0.318406,0.200604,0.493885,0.58081,0.899679,0.338818,0.437396,0.0647361,0.0321873,0.408434,0.0409296,0.791772,0.932638,0.144479,0.140392,0.960095,0.954126,0.751835,0.524062,0.133033,0.927593,0.253724,0.632051,0.862766,0.738593,0.430468,0.72285,0.32633,0.702823,0.557658,0.930655,0.129577,0.528367,0.575295,0.649922,0.741953,0.416782,0.862753,0.799384,0.512089,0.709026,0.110696,0.138721,0.189143,0.661802,0.666745,0.893498,0.817696,0.0665097,0.112707,0.80871,0.356165,0.506887,0.0591424,0.815555,0.341855,0.531734,0.156525,0.663043,0.567,0.584581,0.89266,0.893542,0.789901,0.181198,0.0162209,0.197495,0.0142932,0.262648,0.340598,0.906175,0.432694,0.571442,0.585242,0.375532,0.897259,0.626598,0.323053,0.574883,0.885389,0.411204,0.614539,0.990579,0.905398,0.6575,0.763906,0.841099,0.837513,0.491869,0.329788,0.858415,0.753343,0.984901,0.535092,0.0948729,0.816004,0.478795,0.0950395,0.739271,0.438689,0.830945,0.851193,0.700931,0.432692,0.353861,0.763954,0.697532,0.85281,0.358451,0.659982,0.61898,0.462604,0.393957,0.714962,0.411031,0.788251,0.666689,0.840321,0.819798,0.100809,0.186664,0.141051,0.715295,0.829667,0.416788,0.582658,0.614797,0.0694868,0.032285,0.690081,0.725033,0.457579,0.250176,0.817107,0.987938,0.922489,0.975725,0.0181658,0.62674,0.51258,0.771509,0.49049,0.000841498,0.588683,0.253369,0.214715,0.578046,0.012782,0.754617,0.498038,0.1933,0.504892,0.179051,0.552188,0.443685,0.515676,0.35056,0.579448,0.214256,0.662175,0.76032,0.186834,0.276454,0.236353,0.723977,0.358894,0.221108,0.336723,0.347737,0.898909,0.944086,0.672643,0.969757,0.487528,0.360666,0.846457,0.272741,0.366985,0.217177,0.0169905,0.404475,0.0806848,0.505567,0.969223,0.673511,0.186563,0.517248,0.0993298,0.692517,0.493883,0.641402,0.000855327,0.0548159,0.436616,0.438669,0.660674,0.355772,0.691321,0.734111,0.997301,0.524907,0.892223,0.316802,0.963273,0.0146497,0.909054,0.0660312,0.908797,0.0887098,0.456181,0.559048,0.495146,0.687684,0.416123,0.632211,0.0774167,0.937916,0.316941,0.433235,0.409877,0.948427,0.0424554,0.456129,0.635346,0.769458,0.842036,0.32785,0.37326,0.89752,0.91513,0.721582,0.762725,0.743486,0.986783,0.727556,0.34805,0.53289,0.707368,0.116504,0.837537,0.635231,0.206715,0.419408,0.290856,0.371299,0.511994,0.701016,0.278099,0.579029,0.204326,0.195201,0.30561,0.931675,0.682619,0.439493,0.442733,0.308878,0.58321,0.735645,0.9168,0.0810475,0.642363,0.222539,0.88796,0.51014,0.463255,0.789896,0.812227,0.443792,0.532541,0.0884123,0.625478,0.339818,0.397817,0.142301,0.945613,0.324566,0.10664,0.00268656,0.172452,0.458045,0.368569,0.222802,0.676248,0.134682,0.13879,0.745356,0.139804,0.685933,0.218966,0.928287,0.962602,0.702149,0.409774,0.344588,0.184266,0.163054,0.0377331,0.0455562,0.0152923,0.744262,0.18345,0.174936,0.524681,0.791641,0.91968,0.88654,0.166724,0.171104,0.37413,0.521331,0.315266,0.492502,0.40411,0.191386,0.130016,0.765252,0.141137,0.0101164,0.0927815,0.238732,0.329241,0.0966878,0.495432,0.765948,0.343415,0.530818,0.823717,0.797012,0.421256,0.346619,0.0363297,0.614473,0.523435,0.430315,0.317143,0.10953,0.516771,0.0519493,0.226737,0.938578,0.184154,0.747464,0.0869788,0.365834,0.0698117,0.484987,0.439525,0.149097,0.643688,0.633234,0.0448719,0.838643,0.23318,0.886166,0.394941,0.443979,0.0746372,0.775704,0.118762,0.402254,0.409203,0.253982,0.407176,0.428939,0.702107,0.56889,0.649874,0.477991,0.922791,0.194251,0.680237,0.0943863,0.166542,0.144826,0.556873,0.291758,0.919811,0.201393,0.440592,0.0302017,0.0912249,0.287187,0.06249,0.969527,0.991643,0.4573,0.721638,0.789904,0.402853,0.0977898,0.625056,0.500454,0.847963,0.0649907,0.0948324,0.885771,0.423349,0.814623,0.561764,0.539569,0.630277,0.679792,0.653915,0.344748,0.214952,0.158772,0.206197,0.940554,0.653464,0.181759,0.352625,0.0313253,0.966647,0.277529,0.822577,0.88352,0.375687,0.988736,0.930742,0.207473,0.989472,0.23623,0.242816,0.943071,0.417783,0.453891,0.0763847,0.307926,0.00723881,0.735164,0.857243,0.954317,0.72533,0.425918,0.488895,0.161798,0.763607,0.411885,0.695268,0.94694,0.578738,0.544353,0.00174421,0.62374,0.78784,0.975236,0.0193488,0.505993,0.060086,0.321294,0.799331,0.340673,0.831485,0.403172,0.0678464,0.126793,0.113119,0.41203,0.299743,0.261752,0.208804,0.110274,0.96414,0.611787,0.341661,0.645474,0.0423353,0.761491,0.275236,0.270176,0.902986,0.335924,0.579809,0.903724,0.554325,0.982436,0.68147,0.537262,0.818256,0.752228,0.600829,0.63307,0.285402,0.0496589,0.800984,0.642664,0.835674,0.174846,0.592941,0.301224,0.506402,0.496203,0.738176,0.0678105,0.0265771,0.628982,0.623174,0.109924,0.610375,0.516738,0.0881231,0.435406,0.74229,0.878369,0.996449,0.262071,0.672747,0.835715,0.0664153,0.737666,0.256699,0.955827,0.694808,0.306265,0.805344,0.496194,0.966431,0.671528,0.457818,0.282744,0.487857,0.977114,0.832405,0.56095,0.285426,0.866372,0.966163,0.592041,0.0680513,0.82782,0.545519,0.346939,0.673587,0.293634,0.184948,0.0908815,0.626981,0.0288931,0.909346,0.238209,0.240756,0.0655717,0.286664,0.657714,0.587682,0.764906,0.66863,0.163156,0.775687,0.972024,0.524557,0.466979,0.822718,0.78629,0.938541,0.127718,0.585406,0.604912,0.691408,0.208872,0.4246,0.348032,0.0945595,0.396335,0.436375,0.146015,0.0243697,0.413143,0.980956,0.904114,0.109329,0.313898,0.0701734,0.192577,0.0732197,0.805984,0.133365,0.3178,0.563031,0.773824,0.295014,0.46915,0.710316,0.539239,0.893898,0.376162,0.39544,0.189736,0.941097,0.354419,0.68582,0.191158,0.267266,0.531032,0.811884,0.396277,0.328725,0.781538,0.78732,0.178667,0.0149543,0.754477,0.903225,0.485223,0.124125,0.545265,0.0906366,0.229419,0.361894,0.835639,0.016253,0.217893,0.422852,0.429012,0.94613,0.595022,0.589466,0.52191,0.785767,0.116323,0.0632239,0.847624,0.629024,0.134684,0.39154,0.324009,0.313925,0.84168,0.516675,0.6271,0.559517,0.194956,0.372153,0.304519,0.801761,0.706955,0.0529614,0.624873,0.0266615,0.125138,0.894972,0.376226,0.497898,0.167286,0.117584,0.862038,0.466784,0.496352,0.894188,0.725936,0.199444,0.655646,0.170576,0.059773,0.560434,0.0927657,0.367332,0.176093,0.21692,0.485911,0.0364991,0.764276,0.363806,0.564211,0.00459707,0.815347,0.628041,0.626296,0.0518384,0.634643,0.118252,0.816413,0.535104,0.903475,0.110424,0.314169,0.115305,0.0299501,0.337755,0.756789,0.763615,0.71253,0.0743601,0.285127,0.400368,0.487941,0.330736,0.443825,0.177713,0.879366,0.237192,0.904135,0.714,0.046525,0.235208,0.987553,0.71141,0.00754839,0.740407,0.715156,0.335736,0.263078,0.883716,0.445382,0.56003,0.570948,0.345298,0.912035,0.745747,0.110357,0.297184,0.163716,0.501143,0.904501,0.74673,0.0458459,0.957459,0.937637,0.426596,0.234235,0.224557,0.217701,0.770241,0.420803,0.975934,0.284495,0.674582,0.273814,0.201047,0.792139,0.546896,0.840558,0.13384,0.515711,0.302647,0.590727,0.338007,0.687424,0.90993,0.755891,0.177393,0.767827,0.455145,0.270073,0.284012,0.246534,0.889529,0.766478,0.0498881,0.518259,0.474228,0.839159,0.11697,0.529671,0.500822,0.0404066,0.310016,0.84902,0.891618,0.229359,|0.838614,0.3283,0.163918,0.894204,0.457686,0.787349,0.141284,0.0303476,0.234946,0.607974,0.29891,0.0138256,0.734925,0.858102,0.441792,0.130939,0.0702072,0.469184,0.799523,0.74013,0.102196,0.426823,0.402247,0.239832,0.88473,0.443946,0.791789,0.803519,0.761658,0.797773,0.836036,0.637876,0.403051,0.497371,0.368084,0.850247,0.56649,0.583727,0.365338,0.625609,0.389922,0.165088,0.595833,0.625418,0.0465417,0.376891,0.513872,0.161879,0.791148,0.141922,0.601325,0.399373,0.0177089,0.0999629,0.618954,0.0789085,0.323994,0.669921,0.660004,0.293294,0.906416,0.0296994,0.979563,0.311362,0.92302,0.217121,0.264663,0.733203,0.061667,0.564914,0.515182,0.528288,0.922507,0.686097,0.0675869,0.135564,0.678183,0.447008,0.858486,0.848345,0.66839,0.713972,0.00943971,0.215663,0.787611,0.466059,0.796669,0.354298,0.304471,0.397249,0.825979,0.647287,0.0354,0.189347,0.830412,0.134397,0.325448,0.226626,0.482106,0.597634,0.24078,0.772882,0.780802,0.162191,0.371254,0.77514,0.171954,0.0871655,0.253189,0.105277,0.0382935,0.62709,0.533712,0.0143054,0.727104,0.414839,0.400401,0.956188,0.890017,0.659581,0.422297,0.409661,0.0272683,0.691396,0.929303,0.922891,0.274892,0.275972,0.0855745,0.234515,0.593814,0.978414,0.888802,0.336524,0.879036,0.984694,0.235721,0.833202,0.590186,0.020295,0.312854,0.145886,0.173568,0.961612,0.349754,0.810316,0.569393,0.317617,0.812487,0.748943,0.796813,0.559018,0.294956,0.308511,0.926252,0.386464,0.512799,0.983783,0.495555,0.965594,0.689145,0.926698,0.521102,0.425586,0.575331,0.408382,0.355532,0.49917,0.800293,0.927971,0.663544,0.884827,0.597476,0.757661,0.995666,0.540551,0.331059,0.746011,0.544543,0.00685608,0.173101,0.390907,0.75923,0.551943,0.266924,0.672047,0.129687,0.441436,0.63303,0.262357,0.540392,0.373024,0.966074,0.623509,0.443211,0.976223,0.894752,0.88715,0.955824,0.203899,0.386287,0.907682,0.204677,0.858456,0.733618,0.826549,0.077858,0.977078,0.706036,0.0136563,0.195269,0.8021,0.768943,0.0733098,0.0327518,0.27903,0.568283,0.624603,0.821344,0.586887,0.628577,0.292666,0.22656,0.0850089,0.239425,0.717623,0.807715,0.242587,0.020587,0.937786,0.248925,0.524941,0.0640192,0.613098,0.073015,0.376048,0.533296,0.744376,0.355827,0.289209,0.638794,0.292618,0.475411,0.795042,0.94201,0.958317,0.56387,0.606767,0.368103,0.117543,0.236373,0.823694,0.826143,0.571032,0.0879828,0.108278,0.752903,0.869875,0.370664,0.101656,0.991301,0.966797,0.373244,0.876485,0.910223,0.273608,0.816807,0.991985,0.882192,0.458288,0.181575,0.0683017,0.178227,0.741338,0.11894,0.495542,0.680872,0.642326,0.162988,0.363338,0.21581,0.781297,0.496918,0.967756,0.484588,0.183264,0.363315,0.434966,0.103696,0.0869015,0.658636,0.115489,0.803039,0.492769,0.155832,0.831245,0.274384,0.680539,0.92077,0.924164,0.154007,0.890342,0.765154,0.938649,0.469747,0.665193,0.389122,0.610078,0.66491,0.129198,0.899244,0.873089,0.199192,0.997139,0.371945,0.63516,0.483637,0.713089,0.565242,0.725932,0.800158,0.319582,0.588333,0.5024,0.177844,0.172546,0.199278,0.858959,0.999225,0.766484,0.326136,0.102134,0.6493,0.0266045,0.514475,0.925677,0.441631,0.973971,0.68114,0.225167,0.0284573,0.273898,0.238599,0.884954,0.898068,0.56631,0.205361,0.113064,0.294051,0.569235,0.664515,0.67416,0.277252,0.600506,0.939518,0.00302583,0.11698,0.586231,0.162988,0.764262,0.805202,0.955666,0.454234,0.42386,0.647488,0.602674,0.793716,0.208726,0.685584,0.887629,0.29163,0.918294,0.989305,0.0801011,0.872609,0.254732,0.811948,0.587923,0.099836,0.417117,0.401209,0.36576,0.0815157,0.5111,0.708985,0.696588,0.997521,0.546147,0.684412,0.886048,0.777185,0.680079,0.462686,0.298879,0.402439,0.562508,0.293464,0.344719,0.890266,0.813942,0.406717,0.830149,0.875166,0.657287,0.920421,0.843674,0.894018,0.0555147,0.0304281,0.668462,0.314432,0.852021,0.169509,0.204286,0.233454,0.844256,0.575681,0.696238,0.531128,0.694473,0.0170773,0.374402,0.678564,0.733632,0.415207,0.965865,0.5217,0.512679,0.416516,0.354097,0.123336,0.335104,0.727473,0.263195,0.225236,0.36919,0.805663,0.708453,0.222543,0.935866,0.502755,0.0220597,0.806306,0.89533,0.853853,0.969689,0.305372,0.796596,0.286262,0.327547,0.815934,0.806515,0.747039,0.234222,0.0107281,0.55617,0.551614,0.800716,0.888893,0.149542,0.925118,0.229082,0.747556,0.335886,0.862049,0.234108,0.474663,0.156405,0.128101,0.226078,0.70638,0.592922,0.324288,0.631942,0.0052458,0.594492,0.284412,0.902967,0.222136,0.379411,0.66493,0.393945,0.863049,0.157357,0.914305,0.764523,0.715511,0.153903,0.0537118,0.490544,0.773508,0.264091,0.250276,0.950143,0.913515,0.572267,0.37492,0.527626,0.340011,0.718669,0.181856,0.0813653,0.214109,0.0568839,0.27308,0.983472,0.396644,0.833694,0.611726,0.0667722,0.958495,0.338507,0.145772,0.187256,0.833641,0.368659,0.203248,0.688469,0.633849,0.237042,0.418296,0.870997,0.854129,0.152623,0.969885,0.158332,0.354196,0.582062,0.929988,0.287294,0.269134,0.810493,0.437481,0.290986,0.308686,0.780999,0.403704,0.583311,0.693694,0.275049,0.676093,0.091748,0.791313,0.365663,0.365058,0.155248,0.310497,0.654778,0.554391,0.865699,0.634751,0.708671,0.287039,0.710672,0.113771,0.691646,0.749053,0.504652,0.366773,0.252049,0.783783,0.973473,0.00699222,0.235387,0.871187,0.692387,0.868846,0.820195,0.0232545,0.803222,0.753168,0.0546899,0.787884,0.346954,0.474002,0.00889313,0.227307,0.0185547,0.855034,0.170755,0.746125,0.478407,0.0195644,0.381064,0.751863,0.378272,0.91694,0.284165,0.0590669,0.686108,0.610962,0.585664,0.883423,0.785428,0.871911,0.967272,0.789794,0.134971,0.765426,0.365765,0.905465,0.455286,0.414305,0.247404,0.303467,0.3694,0.698264,0.394469,0.56034,0.578582,0.187908,0.127376,0.553871,0.74132,0.579167,0.739372,0.579726,0.0716099,0.462061,0.273044,0.273818,0.954839,0.902259,0.457439,0.679401,0.364986,0.814124,0.86212,0.60263,0.855743,0.566911,0.301451,0.436779,0.207153,0.337416,0.629888,0.888096,0.530859,0.879527,0.714675,0.768182,0.774104,0.790795,0.395991,0.449068,0.121759,0.337669,0.615052,0.949302,0.64507,0.460411,0.938305,0.125195,0.133667,0.956771,0.917534,0.980528,0.168909,0.816384,0.620404,0.427588,0.124215,0.912063,0.650087,0.908885,0.910664,0.521936,0.378857,0.682759,0.251508,0.128109,0.676861,0.490259,0.598903,0.343597,0.15997,0.765237,0.0156444,0.480818,0.283058,0.157386,0.527283,0.217333,0.0704722,0.529072,0.207067,0.455706,0.637473,0.836555,0.633399,0.0362841,0.119275,0.162918,0.0196711,0.705741,0.795276,0.430159,0.0898693,0.208996,0.527489,0.422598,0.0603557,0.607467,0.789162,0.651103,0.603887,0.268093,0.951208,0.651945,0.984064,0.994902,0.753769,0.455927,0.202327,0.0683884,0.7462,0.49093,0.679913,0.410604,0.413341,0.110164,0.540234,0.505,0.362004,0.384527,0.0661358,0.984784,0.04968,0.133359,0.131306,0.926157,0.0433388,0.894588,0.947526,0.18186,0.276878,0.57015,0.136654,0.244319,0.577195,0.388982,0.208696,0.580192,0.316252,0.361736,0.93882,0.444816,0.815857,0.202402,0.785501,0.679609,0.231213,0.244461,0.913397,0.755749,0.166612,0.689435,0.102134,0.868177,0.133925,0.583716,0.495858,0.266076,0.761229,0.418083,0.274359,0.825835,0.193948,0.155289,0.394913,0.952913,0.136854,0.488703,0.917666,0.91029,0.223833,0.109515,0.473192,0.444439,0.391505,0.0745474,0.914963,0.611214,0.169108,0.570673,0.0274758,0.224177,0.78939,0.0289506,0.0497617,0.270901,0.365128,0.608331,0.902539,0.956512,0.575205,0.961219,0.137133,0.760626,0.361554,0.183658,0.773122,0.849243,0.22357,0.690605,0.478945,0.339675,0.679336,0.225053,0.908166,0.531266,0.0232613,0.937656,0.252108,0.882369,0.0203669,0.254777,0.283539,0.118392,0.579595,0.263083,0.0231336,0.294314,0.0744216,0.938228,0.0664571,0.984279,0.268531,0.992672,0.753381,0.923522,0.164529,0.637013,0.115525,0.0028761,0.866976,0.964977,0.970803,0.228702,0.501972,0.27903,0.28484,0.26132,0.0928106,0.156042,0.294862,0.497847,0.669612,0.825468,0.669518,0.763215,0.738124,0.6473,0.976882,0.821411,0.605096,0.276245,0.701513,0.219587,0.126268,0.67911,0.891683,0.559482,0.204747,0.150906,0.675367,0.474147,0.775793,0.42208,0.61282,0.737778,0.339188,0.939416,0.798611,0.328003,0.234339,0.850967,0.179473,0.71124,0.169255,0.382512,0.758019,0.83718,0.82915,0.300342,0.924419,0.221918,0.0994869,0.985268,0.33772,0.426581,0.745341,0.555545,0.199444,0.980404,0.985354,0.441283,0.327456,0.445966,0.908497,0.0525719,0.659279,0.761179,0.967113,0.789212,0.0475926,0.807304,0.854526,0.902922,0.281451,0.256957,0.00314873,0.367702,0.0625325,0.127582,0.201832,0.941379,0.895747,0.0363481,0.262705,0.705274,0.499973,0.232802,0.393284,0.362652,0.370389,0.315236,0.245387,0.826496,0.945746,0.686183,0.784204,0.576973,0.390794,0.574324,0.20574,0.946555,0.997626,0.240559,0.546875,0.684142,0.961438,0.594358,0.268269,0.242009,0.480033,0.277922,0.675831,0.45261,0.0413618,0.578297,0.138716,0.585899,0.0869294,0.413595,0.163088,0.162611,0.358256,0.643016,0.813729,0.648245,0.653788,0.00143278,0.899244,0.433524,0.889862,0.207256,0.234304,0.0267479,0.199316,0.500457,0.448459,0.0478564,0.869329,0.0745928,0.0917025,0.591984,0.0896505,0.249524,0.481176,0.279407,0.548543,0.920621,0.53846,0.957824,0.764429,0.493232,0.758989,0.531771,0.0471827,0.761364,0.501782,0.0524324,0.147103,0.573031,0.643146,0.148763,0.257901,0.752029,0.329721,|0.499945,0.441194,0.0779128,0.545001,0.242809,0.394177,0.87752,0.879326,0.0855002,0.439358,0.493539,0.943013,0.900844,0.879557,0.533328,0.206893,0.61663,0.545594,0.410787,0.87409,0.0958721,0.110392,0.864341,0.278481,0.790116,0.189217,0.73169,0.959997,0.00689203,0.164346,0.629144,0.716834,0.770236,0.380637,0.035081,0.653528,0.820015,0.720225,0.351144,0.680535,0.538541,0.168172,0.0888247,0.426654,0.101258,0.489901,0.496855,0.678357,0.381739,0.944373,0.654636,0.676538,0.5294,0.638583,0.536931,0.931063,0.695783,0.325779,0.332975,0.614898,0.751904,0.504288,0.428018,0.454146,0.753793,0.575258,0.562234,0.826427,0.497428,0.24193,0.192096,0.97073,0.685094,0.778043,0.791823,0.518254,0.408774,0.756763,0.571039,0.795618,0.583651,0.792484,0.228609,0.603496,0.63043,0.152946,0.646841,0.297052,0.850842,0.816178,0.705961,0.229224,0.0186927,0.302543,0.905064,0.955077,0.637497,0.487402,0.522944,0.894767,0.00118595,0.0605616,0.138144,0.941037,0.0165434,0.144308,0.8336,0.225481,0.301416,0.955747,0.759968,0.68855,0.100179,0.326193,0.739802,0.201147,0.542054,0.511119,0.370752,0.812235,0.532887,0.0518609,0.609172,0.669814,0.688129,0.816297,0.893259,0.310238,0.300193,0.678744,0.744098,0.712668,0.292203,0.958309,0.589309,0.472118,0.0951587,0.77064,0.562746,0.761796,0.674184,0.425604,0.770493,0.163265,0.335596,0.8934,0.283187,0.199901,0.405468,0.348459,0.313748,0.583902,0.99723,0.99212,0.3521,0.604654,0.751069,0.394578,0.840749,0.44024,0.975553,0.347147,0.429688,0.601635,0.171853,0.46321,0.407045,0.477955,0.798456,0.34051,0.0587144,0.890731,0.856378,0.991883,0.466516,0.417147,0.171882,0.688631,0.0725938,0.586204,0.431069,0.899846,0.511077,0.844226,0.486487,0.49556,0.667495,0.997714,0.098114,0.555578,0.923672,0.390052,0.395781,0.0667325,0.0448225,0.53246,0.808603,0.749013,0.842295,0.150372,0.513207,0.0199036,0.877437,0.627237,0.309952,0.254643,0.502322,0.475052,0.932058,0.197286,0.591631,0.316677,0.718474,0.831866,0.15662,0.916854,0.955553,0.970378,0.0695364,0.495395,0.0722678,0.0728207,0.351582,0.208217,0.288701,0.649638,0.290456,0.39435,0.0919983,0.776017,0.917326,0.391623,0.541968,0.808352,0.485975,0.999306,0.775132,0.676968,0.93984,0.758804,0.22659,0.867783,0.808766,0.434082,0.700594,0.257956,0.750331,0.834393,0.0366086,0.270028,0.44349,0.877724,0.682206,0.251444,0.780957,0.155782,0.203042,0.863145,0.718131,0.0573911,0.468715,0.0367181,0.944675,0.00456291,0.543279,0.218281,0.888597,0.343788,0.619254,0.522787,0.921241,0.771208,0.319408,0.940791,0.814821,0.890869,0.161381,0.0991473,0.0414197,0.334117,0.339251,0.687668,0.842396,0.319682,0.920103,0.277665,0.623743,0.67875,0.494025,0.9876,0.0463779,0.0420531,0.0653596,0.162118,0.917673,0.462117,0.681173,0.20551,0.661012,0.109323,0.331514,0.114422,0.959478,0.62379,0.719306,0.707247,0.23208,0.87872,0.766219,0.919863,0.568342,0.516407,0.215294,0.316707,0.401143,0.124497,0.699992,0.123131,0.692791,0.0251682,0.93271,0.925227,0.264589,0.04052,0.9477,0.0764958,0.430807,0.0307359,0.547189,0.883799,0.314545,0.0749422,0.975385,0.153452,0.666138,0.980815,0.891498,0.45867,0.383453,0.220826,0.754215,0.636678,0.761581,0.896928,0.455452,0.754777,0.159473,0.679818,0.536582,0.243821,0.33199,0.324348,0.651833,0.482264,0.480633,0.3585,0.409794,0.835644,0.144359,0.344541,0.586329,0.642033,0.303089,0.439545,0.798743,0.282585,0.124234,0.999462,0.376849,0.485737,0.864716,0.22679,0.164926,0.536813,0.26666,0.904911,0.317895,0.835873,0.201526,0.592451,0.532997,0.649575,0.33576,0.954428,0.618695,0.365354,0.00348288,0.580464,0.339346,0.619202,0.786978,0.344709,0.186293,0.856802,0.523052,0.562199,0.584487,0.197969,0.727228,0.0385991,0.470599,0.751795,0.670052,0.162051,0.629075,0.710464,0.600545,0.226206,0.989372,0.567658,0.708142,0.675734,0.302043,0.178984,0.973538,0.295898,0.355534,0.821776,0.288935,0.0393883,0.5997,0.187182,0.878495,0.2942,0.0128309,0.833578,0.644083,0.0337317,0.626768,0.00808001,0.844833,0.605968,0.222086,0.499574,0.574968,0.298933,0.194107,0.238835,0.35077,0.640991,0.866208,0.199224,0.649349,0.501637,0.936614,0.60675,0.906553,0.463976,0.493435,0.178174,0.410906,0.925599,0.194848,0.27391,0.450294,0.313285,0.433579,0.407115,0.492945,0.420434,0.0289699,0.000532746,0.217029,0.549096,0.927962,0.871232,0.627957,0.828408,0.333949,0.0588354,0.358077,0.340542,0.61454,0.595503,0.278067,0.855435,0.113995,0.952136,0.406217,0.836483,0.876514,0.392972,0.802383,0.912936,0.175145,0.0719665,0.509031,0.156285,0.61168,0.474722,0.758586,0.51075,0.241744,0.00203675,0.229063,0.127203,0.977362,0.204768,0.106794,0.244736,0.0852144,0.873307,0.650985,0.214735,0.134308,0.856646,0.40484,0.196581,0.487716,0.0626761,0.709379,0.879095,0.692485,0.533609,0.990858,0.0641592,0.361349,0.818334,0.199707,0.0880685,0.712776,0.581623,0.692278,0.461356,0.453401,0.373671,0.074606,0.518124,0.266419,0.807806,0.744501,0.287765,0.918509,0.636763,0.116691,0.828033,0.90614,0.318839,0.793094,0.629849,0.753869,0.995338,0.809656,0.66049,0.0415698,0.841512,0.723216,0.543243,0.657321,0.556258,0.453696,0.177569,0.294733,0.785124,0.986688,0.959682,0.272346,0.909449,0.148568,0.0137947,0.19696,0.747489,0.340939,0.556663,0.473125,0.439831,0.0145942,0.387197,0.26512,0.326899,0.393683,0.221415,0.0620211,0.333996,0.636157,0.657147,0.706004,0.131384,0.543458,0.039085,0.932722,0.226921,0.757241,0.0961651,0.308391,0.514127,0.650337,0.733168,0.807161,0.437467,0.56299,0.369099,0.672928,0.775031,0.14072,0.355222,0.20934,0.679192,0.100769,0.174322,0.098963,0.620942,0.843051,0.38401,0.792408,0.963886,0.274967,0.118926,0.186208,0.40572,0.344744,0.709597,0.0988515,0.117389,0.752877,0.121434,0.395574,0.64352,0.942432,0.637013,0.261228,0.372338,0.960769,0.322671,0.96165,0.0257685,0.316364,0.317461,0.846056,0.449963,0.347692,0.437853,0.855103,0.090108,0.126005,0.0525479,0.135881,0.127162,0.991761,0.217854,0.988051,0.77666,0.426642,0.87521,0.341342,0.954216,0.647064,0.766066,0.205535,0.871555,0.118465,0.159912,0.566089,0.419821,0.135201,0.774335,0.418079,0.375991,0.683392,0.409329,0.707698,0.718596,0.238336,0.956829,0.818039,0.24523,0.605961,0.462323,0.607811,0.636933,0.874449,0.842348,0.62574,0.342609,0.49736,0.23703,0.811971,0.602068,0.063912,0.415068,0.122059,0.0237908,0.417627,0.35017,0.148657,0.892308,0.0271825,0.698271,0.411215,0.595865,0.482709,0.236714,0.550979,0.0335501,0.109381,0.790392,0.0742367,0.776481,0.0790578,0.150001,0.507574,0.717951,0.3939,0.727476,0.919619,0.159583,0.828829,0.969279,0.699548,0.595172,0.245739,0.890069,0.183362,0.756002,0.110173,0.240707,0.395074,0.597813,0.286619,0.615766,0.777614,0.00440085,0.345591,0.913869,0.589321,0.480012,0.0103187,0.632645,0.910385,0.617646,0.354292,0.613072,0.523173,0.0769366,0.765105,0.204865,0.412892,0.605886,0.631799,0.626233,0.746256,0.360475,0.234752,0.708369,0.250517,0.955375,0.535895,0.599087,0.991887,0.531467,0.591285,0.487267,0.143373,0.224545,0.57054,0.389041,0.913399,0.52505,0.254212,0.9056,0.588434,0.981096,0.263432,0.571839,0.0465141,0.158074,0.736152,0.554481,0.352648,0.833299,0.807637,0.278317,0.626174,0.583531,0.530989,0.648013,0.737685,0.9768,0.524939,0.343706,0.934774,0.0773428,0.380403,0.0758072,0.73038,0.847185,0.036262,0.0630684,0.914473,0.357365,0.550167,0.490426,0.998372,0.389448,0.182317,0.764778,0.530617,0.760619,0.583297,0.865558,0.612954,0.840101,0.864022,0.350389,0.897067,0.474669,0.676452,0.995153,0.709831,0.327107,0.188834,0.0882037,0.441748,0.979717,0.970576,0.888144,0.275065,0.784391,0.567369,0.538486,0.48735,0.0937393,0.301001,0.334158,0.951474,0.871937,0.944376,0.1653,0.81325,0.329091,0.392026,0.668676,0.849694,0.737976,0.856092,0.0914436,0.38867,0.00432813,0.519951,0.5322,0.274673,0.0674019,0.525624,0.474984,0.745657,0.411487,0.472895,0.758056,0.863696,0.314502,0.805942,0.94436,0.167484,0.506384,0.628785,0.11274,0.0538838,0.0250613,0.690071,0.455486,0.775708,0.814607,0.139056,0.952843,0.327382,0.937772,0.473515,0.523242,0.228827,0.861052,0.793031,0.340489,0.075103,0.292485,0.210602,0.0140997,0.51426,0.917309,0.539478,0.918027,0.286423,0.421654,0.310853,0.422868,0.726365,0.10057,0.445404,0.366484,0.230423,0.643332,0.783318,0.801754,0.922834,0.390539,0.371637,0.532735,0.865856,0.352815,0.216026,0.272976,0.332495,0.32,0.207728,0.448172,0.0084908,0.696067,0.318447,0.735042,0.791418,0.0514554,0.796942,0.306257,0.706044,0.281989,0.676851,0.250513,0.157053,0.602304,0.00992239,0.809398,0.0951231,0.767608,0.253738,0.419845,0.848104,0.512718,0.483326,0.0414438,0.837093,0.587508,0.614633,0.983572,0.99592,0.185415,0.611651,0.858096,0.729255,0.320296,0.948696,0.419968,0.304805,0.922362,0.209611,0.456448,0.560124,0.0508961,0.32914,0.933933,0.345473,0.827546,0.151347,0.94563,0.480851,0.0892061,0.456457,0.882297,0.74052,0.362437,0.897294,0.436507,0.24393,0.677327,0.475788,0.843581,0.432136,0.702745,0.0101141,0.878564,0.235828,0.383438,0.952627,0.496461,0.762218,0.502005,0.716829,0.689211,0.514389,0.595196,0.329704,0.285336,0.633958,0.607916,0.188014,0.671066,0.0917323,0.703176,0.135986,0.617062,0.14167,0.596483,0.564237,0.506989,0.376864,0.271953,0.0702652,0.262268,0.147604,0.498202,0.494387,0.734294,|0.834667,0.904737,0.460197,0.785369,0.971262,0.434989,0.434076,0.0606604,0.251859,0.877197,0.51191,0.450226,0.474415,0.426968,0.673387,0.411061,0.534871,0.666316,0.399548,0.538069,0.251889,0.710284,0.0926053,0.500262,0.554682,0.0695537,0.0291103,0.240056,0.63886,0.0164995,0.64568,0.973809,0.167247,0.591655,0.0829258,0.634714,0.27242,0.508917,0.449294,0.682493,0.830836,0.913199,0.507046,0.566019,0.410274,0.719737,0.0510635,0.494197,0.222403,0.537639,0.0885487,0.588657,0.54779,0.427021,0.514043,0.53803,0.819043,0.748766,0.945931,0.975368,0.143417,0.132169,0.813676,0.561446,0.024521,0.468815,0.44687,0.689622,0.886824,0.0120713,0.642884,0.523427,0.527346,0.444479,0.0948296,0.206023,0.714616,0.621034,0.29946,0.818708,0.234339,0.678486,0.601567,0.00555414,0.0307928,0.241154,0.749679,0.991376,0.523288,0.966002,0.26974,0.888266,0.499435,0.330874,0.647724,0.222727,0.359551,0.0602374,0.454572,0.394471,0.461079,0.883777,0.949041,0.599664,0.580975,0.273883,0.0394422,0.395699,0.788966,0.328224,0.743648,0.00283128,0.128479,0.765946,0.0529574,0.988488,0.17981,0.624361,0.681442,0.948399,0.69213,0.459437,0.704345,0.449874,0.401229,0.318476,0.17265,0.533124,0.993774,0.797445,0.986134,0.498679,0.269619,0.733574,0.817005,0.676451,0.690157,0.511924,0.0314434,0.805962,0.338429,0.735963,0.104393,0.26686,0.807168,0.489711,0.149199,0.01317,0.227383,0.352332,0.663913,0.691244,0.546802,0.795238,0.321084,0.778553,0.0486408,0.561234,0.577098,0.637357,0.348006,0.697498,0.968852,0.944499,0.524445,0.061344,0.416386,0.172979,0.324431,0.817465,0.130263,0.416924,0.762668,0.843202,0.740453,0.949279,0.215432,0.317187,0.549088,0.897409,0.677158,0.9666,0.175401,0.0399917,0.796107,0.384389,0.892372,0.278391,0.585065,0.552956,0.654535,0.507727,0.848965,0.685615,0.611458,0.523613,0.343376,0.530678,0.703311,0.891601,0.833573,0.53853,0.860134,0.809499,0.76981,0.736949,0.42697,0.448954,0.190051,0.0365422,0.981831,0.15268,0.838404,0.757278,0.238401,0.435368,0.145311,0.0454009,0.705736,0.376358,0.726874,0.264228,0.0921095,0.0320616,0.144616,0.298646,0.186549,0.44878,0.836397,0.523119,0.630186,0.265676,0.0752883,0.390206,0.391497,0.0337268,0.657772,0.857049,0.0753071,0.85214,0.0664467,0.687369,0.420976,0.474558,0.589378,0.204593,0.208341,0.223315,0.433596,0.263852,0.600712,0.506823,0.229811,0.957282,0.304032,0.383307,0.832401,0.00672853,0.0205406,0.432038,0.518558,0.565257,0.806225,0.808676,0.127832,0.555996,0.743062,0.363398,0.806555,0.732021,0.665602,0.929137,0.833569,0.910917,0.460147,0.538225,0.504098,0.670984,0.645858,0.219965,0.652697,0.951127,0.0217535,0.0950875,0.890101,0.81598,0.879241,0.38743,0.243741,0.0870645,0.867712,0.748479,0.825357,0.0500584,0.499086,0.26091,0.775066,0.497579,0.333949,0.155736,0.908905,0.726545,0.485298,0.540327,0.591513,0.164852,0.835947,0.698034,0.173452,0.615444,0.0581079,0.0417556,0.111478,0.374681,0.173432,0.307969,0.46542,0.529358,0.972159,0.709978,0.480799,0.0337813,0.983714,0.724583,0.699287,0.059837,0.967457,0.559985,0.378756,0.844097,0.956405,0.917887,0.523973,0.219005,0.336891,0.720929,0.105088,0.623206,0.786277,0.0140257,0.437583,0.793672,0.136038,0.32028,0.846137,0.127149,0.830382,0.964803,0.650628,0.0329337,0.0416743,0.0263809,0.245078,0.434252,0.627701,0.0450175,0.527757,0.980887,0.130265,0.519123,0.728207,0.658233,0.391566,0.471568,0.462882,0.715472,0.857838,0.132794,0.150392,0.49665,0.783021,0.75483,0.597855,0.95736,0.4763,0.329179,0.375012,0.402051,0.418782,0.584974,0.975157,0.373173,0.42932,0.624016,0.36065,0.10752,0.450133,0.88669,0.715974,0.821475,0.367568,0.42655,0.944775,0.376904,0.973023,0.948041,0.64028,0.871458,0.0437555,0.921928,0.200801,0.588449,0.963994,0.78687,0.894754,0.887331,0.938259,0.585519,0.462558,0.906227,0.236684,0.290134,0.0894364,0.302498,0.678061,0.453234,0.131549,0.79992,0.403128,0.128723,0.41545,0.770557,0.703639,0.645605,0.563533,0.575378,0.432568,0.516048,0.0314922,0.26934,0.947761,0.701086,0.233089,0.516993,0.220473,0.0397146,0.745569,0.61469,0.421741,0.540589,0.15555,0.364184,0.0135223,0.337763,0.0903222,0.482675,0.677367,0.896179,0.814943,0.950783,0.414122,0.309271,0.371578,0.37943,0.170453,0.331366,0.155853,0.46261,0.363419,0.598657,0.823858,0.56422,0.234862,0.592969,0.708325,0.608922,0.529409,0.970661,0.336383,0.705274,0.132208,0.830391,0.398394,0.890011,0.185501,0.199758,0.520435,0.349537,0.243979,0.93125,0.782246,0.85994,0.581081,0.2246,0.958515,0.690714,0.187456,0.173379,0.479201,0.981367,0.864215,0.0742377,0.807687,0.0130564,0.482068,0.165418,0.0508671,0.129042,0.146013,0.898163,0.638225,0.0327379,0.579747,0.459107,0.43719,0.874946,0.96329,0.609194,0.361198,0.0840858,0.820521,0.844418,0.560832,0.0337548,0.621184,0.109621,0.257394,0.512256,0.625792,0.773067,0.180316,0.665256,0.323089,0.0564141,0.202156,0.352553,0.697171,0.302994,0.955644,0.131889,0.145162,0.649946,0.390992,0.412576,0.954071,0.428835,0.590511,0.876766,0.634638,0.211,0.430213,0.137091,0.256855,0.711353,0.718386,0.27218,0.190425,0.0354668,0.942138,0.631226,0.851419,0.618343,0.327254,0.220684,0.650967,0.373067,0.37022,0.706552,0.00672901,0.393278,0.691558,0.879864,0.427134,0.516575,0.419114,0.80651,0.720453,0.963266,0.583168,0.613386,0.39886,0.803518,0.793939,0.782493,0.573263,0.337101,0.440098,0.486133,0.697345,0.138651,0.205186,0.943097,0.20124,0.199457,0.635101,0.696549,0.55919,0.295328,0.770749,0.531297,0.28269,0.44503,0.0182634,0.145385,0.643364,0.742669,0.000965416,0.272652,0.841148,0.530101,0.268588,0.426581,0.45729,0.519039,0.569528,0.31014,0.279496,0.777269,0.177641,0.977586,0.265464,0.607458,0.272714,0.313389,0.709664,0.574489,0.183246,0.764319,0.887779,0.114896,0.500127,0.218704,0.0363587,0.409625,0.18678,0.0112037,0.0847936,0.545406,0.830684,0.387199,0.645213,0.818868,0.0839748,0.796661,0.487553,0.000696242,0.489888,0.28819,0.139203,0.277208,0.998455,0.788284,0.565553,0.262278,0.0788478,0.702916,0.203219,0.821046,0.101927,0.611746,0.122289,0.387144,0.313206,0.939573,0.955833,0.831675,0.111849,0.267602,0.642039,0.260409,0.822782,0.255772,0.628454,0.903162,0.998995,0.875908,0.856264,0.398335,0.0492758,0.114557,0.133275,0.0355251,0.183394,0.059625,0.793798,0.579623,0.904022,0.61561,0.682838,0.368468,0.468513,0.70679,0.0181933,0.51421,0.592314,0.789914,0.0345208,0.0765254,0.772177,0.889308,0.357174,0.122435,0.796381,0.475888,0.73739,0.324691,0.872755,0.808515,0.835038,0.765854,0.18323,0.67997,0.145573,0.953655,0.308194,0.0259262,0.235121,0.235593,0.949669,0.211772,0.171617,0.667078,0.41344,0.527546,0.037039,0.566369,0.0449979,0.864511,0.141145,0.6396,0.427195,0.740365,0.897296,0.892866,0.53286,0.857734,0.6401,0.433513,0.557329,0.675682,0.370609,0.303022,0.0289345,0.575374,0.572508,0.479013,0.88669,0.0463134,0.582041,0.670694,0.601061,0.0936424,0.503933,0.592828,0.623236,0.158308,0.607406,0.224687,0.00243694,0.713303,0.0260121,0.620015,0.906407,0.379436,0.523513,0.758403,0.493143,0.939773,0.173213,0.00618583,0.86759,0.14285,0.960093,0.476638,0.268368,0.262053,0.381104,0.0769676,0.811263,0.574002,0.215171,0.497007,0.250403,0.522538,0.324286,0.327161,0.434283,0.949123,0.658165,0.985013,0.246051,0.214261,0.772472,0.631534,0.235826,0.954159,0.803246,0.224564,0.642304,0.965662,0.00759524,0.089219,0.54866,0.992776,0.772106,0.812964,0.969801,0.311178,0.865542,0.0305462,0.923417,0.657405,0.477794,0.155103,0.825102,0.552308,0.582614,0.15952,0.760548,0.430331,0.901561,0.310522,0.532825,0.497277,0.0255848,0.969502,0.930641,0.733528,0.470655,0.874424,0.327766,0.773517,0.777911,0.602126,0.447929,0.510673,0.294113,0.226712,0.536636,0.155248,0.42657,0.419593,0.119685,0.472251,0.608918,0.362907,0.659788,0.883753,0.741273,0.946439,0.505496,0.151845,0.809568,0.739519,0.725945,0.299322,0.2528,0.128038,0.591642,0.444545,0.386434,0.205263,0.272957,0.528857,0.122868,0.834311,0.648316,0.873686,0.547241,0.611025,0.453426,0.696226,0.594619,0.0607814,0.72941,0.691197,0.690995,0.560478,0.0041253,0.769664,0.468349,0.66547,0.0500136,0.679965,0.806036,0.42059,0.482068,0.630332,0.572772,0.295464,0.0347452,0.208599,0.148784,0.0657449,0.75926,0.354543,0.00664538,0.312242,0.993326,0.235625,0.562372,0.825894,0.506564,0.24384,0.992479,0.0393972,0.221769,0.526407,0.905086,0.0120544,0.300786,0.483722,0.30071,0.152202,0.255212,0.220833,0.845295,0.338836,0.731748,0.0259563,0.556182,0.491086,0.377281,0.613926,0.477526,0.51706,0.240241,0.649272,0.725301,0.305249,0.523598,0.170977,0.686537,0.416078,0.451893,0.418016,0.67966,0.402874,0.777199,0.546285,0.140602,0.773054,0.737138,0.943283,0.577403,0.752727,0.167005,0.46793,0.775002,0.377854,0.306137,0.414411,0.177236,0.524134,0.62401,0.240566,0.502965,0.21209,0.181443,0.180124,0.125891,0.0349804,0.271121,0.741637,0.443279,0.632544,0.06169,0.458251,0.380017,0.122058,0.531043,0.297808,0.427016,0.690777,0.836908,0.180172,0.970176,0.844077,0.177063,0.621367,0.748067,0.508296,0.0480677,0.243798,0.493025,0.207383,0.0828394,0.349111,0.366046,0.972015,0.853973,0.741997,0.338442,0.375314,0.198354,0.472864,0.0561993,0.886584,0.136209,0.461376,0.029247,0.328534,0.373969,0.483555,0.505933,0.999982,0.45377,0.154745,0.179894,0.101169,|0.880884,0.223107,0.551896,0.943872,0.0269871,0.87466,0.402326,0.802523,0.379433,0.402174,0.0782064,0.403647,0.19002,0.580416,0.68334,0.934798,0.719509,0.510774,0.0877501,0.149568,0.702434,0.866727,0.964383,0.359545,0.947853,0.910253,0.9467,0.229503,0.447092,0.169916,0.939585,0.698104,0.21015,0.956,0.912175,0.246583,0.834096,0.667596,0.615873,0.233332,0.702455,0.125511,0.717956,0.740888,0.35935,0.115742,0.357386,0.840712,0.58794,0.18457,0.609765,0.433982,0.517643,0.720795,0.895753,0.8525,0.483863,0.38753,0.281404,0.570496,0.500009,0.97977,0.603608,0.788774,0.795117,0.334988,0.775475,0.820225,0.19238,0.22754,0.412803,0.226406,0.749213,0.182377,0.472763,0.870622,0.192734,0.726818,0.850786,0.679588,0.29054,0.26579,0.475482,0.40227,0.640473,0.950433,0.540821,0.116654,0.901815,0.579699,0.800952,0.385142,0.195931,0.460325,0.682778,0.523516,0.0283123,0.608554,0.0362198,0.944134,0.712294,0.687103,0.00641668,0.336639,0.819009,0.013886,0.560881,0.464577,0.411499,0.80684,0.595766,0.765336,0.127138,0.206572,0.661499,0.99412,0.185094,0.81177,0.636114,0.817602,0.91292,0.457308,0.124533,0.452998,0.503406,0.591395,0.619165,0.349445,0.66257,0.20978,0.411304,0.978575,0.178506,0.923787,0.569366,0.470597,0.604544,0.6714,0.123048,0.930798,0.101162,0.462942,0.84547,0.787874,0.28685,0.156226,0.650823,0.0174416,0.675929,0.844912,0.580665,0.217688,0.373701,0.477404,0.630081,0.372854,0.754538,0.0502392,0.962507,0.0084064,0.103424,0.510722,0.952907,0.88256,0.306965,0.308487,0.324404,0.583275,0.850584,0.984907,0.505084,0.555354,0.250029,0.337467,0.875056,0.0113899,0.161348,0.272651,0.767995,0.850845,0.840217,0.46317,0.410178,0.927491,0.214989,0.161882,0.564824,0.834512,0.0353159,0.684395,0.0810875,0.464951,0.963837,0.226632,0.606642,0.313979,0.568849,0.236772,0.286292,0.157215,0.0344911,0.416437,0.320423,0.970268,0.847242,0.479077,0.413322,0.319965,0.757453,0.583033,0.951873,0.201819,0.719746,0.0624051,0.41432,0.296069,0.330673,0.0711743,0.0925511,0.425479,0.288758,0.56706,0.308021,0.739452,0.523082,0.422004,0.0648692,0.346409,0.051425,0.452441,0.760812,0.902266,0.192166,0.402714,0.391772,0.967809,0.684383,0.939785,0.678997,0.897677,0.0771769,0.109446,0.707845,0.892039,0.270296,0.993812,0.601639,0.994972,0.583382,0.959198,0.0829335,0.701275,0.071876,0.836518,0.0565802,0.129702,0.871859,0.490586,0.131613,0.424296,0.26159,0.937318,0.500948,0.697177,0.312001,0.819324,0.323019,0.808064,0.904964,0.793097,0.0894696,0.239761,0.277482,0.24538,0.540699,0.225957,0.932668,0.934061,0.54823,0.535644,0.808296,0.795894,0.892699,0.0607149,0.993366,0.188093,0.503043,0.935129,0.99168,0.661589,0.608885,0.464332,0.346371,0.0842839,0.918746,0.0629141,0.243054,0.882483,0.0742161,0.272962,0.726586,0.814155,0.394987,0.341405,0.422532,0.581299,0.837912,0.515484,0.829986,0.146597,0.787495,0.598415,0.157292,0.746659,0.363676,0.0091548,0.426277,0.727073,0.426319,0.469823,0.468198,0.747264,0.22008,0.558991,0.770664,0.47235,0.526604,0.170847,0.681205,0.898247,0.911242,0.139145,0.362381,0.109752,0.44193,0.315553,0.759649,0.951916,0.140272,0.473406,0.501463,0.479263,0.899639,0.416846,0.611358,0.0290198,0.334989,0.462092,0.199468,0.955345,0.821327,0.750466,0.210036,0.0511278,0.782978,0.769485,0.833284,0.740444,0.5183,0.216688,0.967519,0.785185,0.394828,0.456841,0.324174,0.907255,0.536142,0.858166,0.534829,0.8562,0.855128,0.525728,0.418941,0.94143,0.477227,0.369734,0.702212,0.644189,0.859532,0.178044,0.828421,0.775248,0.721544,0.764025,0.0201938,0.26827,0.0932869,0.375438,0.365516,0.475731,0.12457,0.606739,0.106059,0.00570285,0.508979,0.54993,0.603525,0.84505,0.229536,0.828236,0.345878,0.871941,0.0491924,0.570179,0.479819,0.36732,0.165056,0.164081,0.368349,0.351414,0.697773,0.119963,0.382489,0.606323,0.411069,0.548023,0.575766,0.525218,0.0331154,0.314117,0.338379,0.562151,0.427033,0.611489,0.481547,0.101822,0.236823,0.46557,0.411171,0.693306,0.216072,0.743545,0.846926,0.503775,0.724555,0.0255253,0.657048,0.114046,0.454174,0.430477,0.830105,0.167141,0.941707,0.0203294,0.868428,0.828861,0.587293,0.363122,0.506036,0.419641,0.771147,0.789551,0.401325,0.292604,0.372259,0.416838,0.608037,0.448367,0.450453,0.810808,0.695565,0.116176,0.349427,0.0448195,0.722248,0.866256,0.19234,0.368143,0.732858,0.215595,0.430645,0.0670553,0.829043,0.709978,0.944807,0.789351,0.843934,0.051904,0.134278,0.593535,0.491532,0.833371,0.955888,0.421141,0.14001,0.100162,0.274588,0.459202,0.67445,0.460257,0.130715,0.473108,0.731655,0.740349,0.308894,0.214402,0.284382,0.0244848,0.160635,0.662202,0.627927,0.625323,0.40929,0.127472,0.21316,0.927998,0.255108,0.238206,0.647527,0.15364,0.139764,0.103864,0.291157,0.0188622,0.69588,0.407397,0.197993,0.340538,0.0449545,0.661559,0.0217028,0.874612,0.660502,0.746004,0.715816,0.510788,0.305131,0.1849,0.604395,0.569137,0.575229,0.271676,0.392611,0.767783,0.234691,0.0135797,0.253492,0.501471,0.0830485,0.558448,0.662481,0.80492,0.328013,0.0974054,0.495369,0.261978,0.756484,0.566771,0.655435,0.13585,0.595516,0.817866,0.671909,0.381904,0.10699,0.274786,0.196466,0.263843,0.0668543,0.106817,0.033514,0.183784,0.389839,0.455854,0.437166,0.274581,0.120322,0.0349259,0.48485,0.575146,0.952376,0.00563431,0.638357,0.321975,0.687323,0.258425,0.156264,0.91353,0.86843,0.279123,0.364416,0.621693,0.582831,0.347534,0.83968,0.115611,0.257944,0.295818,0.678568,0.916358,0.35094,0.483306,0.999177,0.0328298,0.266459,0.937607,0.896966,0.434236,0.545168,0.566296,0.87357,0.0833482,0.580923,0.757673,0.232917,0.969332,0.994927,0.767811,0.864474,0.29513,0.774706,0.763337,0.480807,0.121379,0.273662,0.730624,0.709096,0.0141073,0.984772,0.863834,0.236006,0.509258,0.990908,0.401992,0.0664337,0.0116589,0.908149,0.993209,0.136588,0.214057,0.40432,0.642383,0.0109989,0.994001,0.700859,0.25382,0.278326,0.782242,0.890328,0.815358,0.322761,0.00393343,0.143932,0.793129,0.483648,0.379708,0.147207,0.624128,0.262604,0.179412,0.32467,0.00815701,0.344262,0.764579,0.788414,0.445358,0.135872,0.244278,0.744481,0.278822,0.870717,0.733792,0.487531,0.290852,0.171096,0.60968,0.351588,0.138345,0.26385,0.296892,0.613745,0.995359,0.378983,0.148766,0.501252,0.172879,0.171922,0.253551,0.891648,0.766154,0.00644082,0.633174,0.0651553,0.509521,0.211043,0.547894,0.771578,0.292375,0.406857,0.208514,0.879582,0.443705,0.761304,0.565781,0.771526,0.537422,0.996217,0.0699528,0.491249,0.906335,0.207934,0.660054,0.430536,0.00625509,0.031265,0.263696,0.948067,0.664362,0.990232,0.614486,0.218838,0.466236,0.520887,0.851313,0.671807,0.866138,0.897316,0.309882,0.366247,0.450682,0.466141,0.499096,0.785236,0.966333,0.509159,0.364978,0.627106,0.369758,0.23534,0.364238,0.288463,0.931251,0.402593,0.821485,0.201276,0.436887,0.420147,0.412573,0.778248,0.0712253,0.378272,0.776226,0.771527,0.782508,0.00992656,0.342732,0.251476,0.21109,0.420148,0.177826,0.846656,0.407761,0.6928,0.184978,0.197833,0.254902,0.199572,0.880018,0.750548,0.166416,0.101342,0.293379,0.34531,0.184973,0.249909,0.175195,0.993223,0.892464,0.832127,0.343597,0.672965,0.712702,0.136983,0.99356,0.670063,0.419732,0.394666,0.363117,0.329548,0.686879,0.86051,0.209257,0.859144,0.0278162,0.541897,0.860951,0.97085,0.773772,0.0848238,0.047525,0.707125,0.510052,0.0203636,0.848815,0.141939,0.861694,0.521975,0.137018,0.985928,0.0208776,0.0213909,0.490841,0.116213,0.594231,0.776502,0.148324,0.950723,0.0112396,0.806071,0.724195,0.691837,0.441088,0.313771,0.554477,0.690073,0.346664,0.342298,0.922527,0.223167,0.0840941,0.612319,0.768468,0.812431,0.211243,0.137981,0.399775,0.847963,0.908768,0.0828288,0.947208,0.112328,0.855641,0.513779,0.37999,0.354583,0.244852,0.650227,0.202193,0.626603,0.535729,0.362477,0.749248,0.890232,0.0832601,0.451679,0.45567,0.414644,0.190732,0.270181,0.405003,0.685186,0.757378,0.085061,0.401579,0.536495,0.000779927,0.897772,0.766285,0.842245,0.96452,0.7102,0.196588,0.420112,0.534397,0.859408,0.299118,0.824321,0.78553,0.520905,0.434875,0.978211,0.464935,0.801438,0.579693,0.729438,0.339854,0.0388955,0.890686,0.813776,0.461819,0.35255,0.387913,0.592687,0.140664,0.492533,0.986293,0.60854,0.717884,0.563661,0.314425,0.834098,0.227281,0.442581,0.243578,0.332975,0.0126396,0.328562,0.725058,0.241371,0.890129,0.518489,0.922792,0.787898,0.00795865,0.412944,0.966816,0.818993,0.524302,0.651919,0.865183,0.586254,0.631594,0.78975,0.939444,0.696869,0.223564,0.994719,0.720199,0.0513883,0.69564,0.676569,0.171118,0.550632,0.837975,0.625296,0.421946,0.0816934,0.764116,0.784508,0.799817,0.988935,0.192132,0.272038,0.47282,0.837183,0.0500031,0.261324,0.385344,0.304394,0.465818,0.339808,0.993688,0.69812,0.460199,0.744817,0.172512,0.47734,0.960815,0.77942,0.846746,0.87143,0.699791,0.932789,0.0994727,0.434286,0.401363,0.356474,0.279564,0.948907,0.805031,0.111263,0.519914,0.361184,0.507458,0.598019,0.912544,0.00550926,0.493026,0.338648,0.201379,0.770943,0.318451,0.866977,0.504965,0.271959,0.228335,0.704504,0.586387,0.814211,0.9526,0.0463607,0.472165,0.878949,0.600998,0.672435,0.847105,0.580219,0.510244,0.906731,0.152875,0.0642984,0.736841,0.0798233,0.341546,0.277841,0.0423909,0.697227,0.406399,0.277234,0.945553,|0.172082,0.0480747,0.662353,0.296716,0.329659,0.464067,0.797969,0.4195,0.465103,0.277978,0.785283,0.480631,0.434803,0.525506,0.588906,0.74719,0.369991,0.414706,0.243411,0.498168,0.738825,0.207836,0.754739,0.210799,0.920965,0.57752,0.906493,0.685093,0.0594306,0.0870098,0.873912,0.7693,0.0663339,0.746611,0.605339,0.229061,0.73235,0.0471957,0.164444,0.75752,0.781416,0.236197,0.710404,0.823872,0.531151,0.423852,0.31829,0.401138,0.225159,0.260623,0.79683,0.769143,0.13909,0.0667521,0.885639,0.123435,0.152436,0.678899,0.370173,0.55988,0.951631,0.267603,0.896436,0.489161,0.358985,0.517703,0.177126,0.587242,0.892413,0.576378,0.929329,0.748754,0.871408,0.684148,0.0447544,0.744399,0.132554,0.874019,0.500167,0.231104,0.0963188,0.345388,0.463522,0.0964975,0.715108,0.153035,0.612295,0.127831,0.87009,0.362451,0.636943,0.364727,0.911473,0.250851,0.664123,0.289504,0.26768,0.303566,0.302587,0.69771,0.621364,0.45871,0.768567,0.575827,0.443985,0.893687,0.0899505,0.807396,0.0481643,0.37112,0.285968,0.622295,0.256097,0.353708,0.323399,0.816639,0.650729,0.706096,0.493267,0.424541,0.29984,0.782782,0.794347,0.557558,0.108871,0.179974,0.342267,0.435162,0.2586,0.747525,0.576744,0.31673,0.744415,0.822023,0.606945,0.480957,0.744633,0.699982,0.724295,0.0689057,0.273542,0.312274,0.26729,0.715926,0.839027,0.178436,0.734748,0.997604,0.410561,0.670281,0.527586,0.540475,0.553897,0.788901,0.367461,0.575967,0.708243,0.198574,0.327518,0.644668,0.968775,0.960047,0.149642,0.949241,0.967424,0.686748,0.884069,0.129265,0.481482,0.358561,0.673389,0.869991,0.445819,0.0645722,0.476247,0.383264,0.856375,0.300447,0.444495,0.702901,0.530191,0.0595042,0.422949,0.979875,0.730831,0.523335,0.844182,0.586097,0.763263,0.174096,0.25534,0.505596,0.711402,0.770582,0.725271,0.861192,0.202526,0.712997,0.631796,0.529597,0.720016,0.852642,0.74627,0.78539,0.836792,0.858452,0.584121,0.0431002,0.716249,0.935527,0.837132,0.858495,0.496019,0.271447,0.323058,0.242209,0.213401,0.537363,0.990161,0.264304,0.552118,0.902052,0.540786,0.257225,0.0620552,0.580482,0.812192,0.734187,0.384244,0.163976,0.437558,0.164976,0.865356,0.575058,0.376642,0.645999,0.0943245,0.273335,0.972986,0.445632,0.444227,0.109358,0.917363,0.626171,0.0515998,0.301068,0.459104,0.209509,0.517922,0.350659,0.941179,0.951623,0.0303839,0.0483166,0.636649,0.839102,0.468851,0.0688185,0.415668,0.0986824,0.338122,0.0611993,0.72703,0.750089,0.46595,0.197109,0.136635,0.211691,0.932221,0.544942,0.434598,0.287488,0.855127,0.906548,0.396603,0.151318,0.208709,0.343088,0.357402,0.836082,0.660984,0.510599,0.59589,0.453465,0.864444,0.56928,0.0440931,0.928488,0.98641,0.459186,0.412705,0.216617,0.896942,0.629094,0.425021,0.682739,0.26608,0.338381,0.111652,0.970291,0.881403,0.393928,0.180656,0.0334356,0.768353,0.556914,0.258153,0.451388,0.552426,0.287941,0.521339,0.2825,0.321026,0.0935969,0.148421,0.241651,0.0874692,0.617684,0.78611,0.427237,0.572291,0.668048,0.253108,0.502495,0.0864232,0.568284,0.0452347,0.866223,0.358503,0.70331,0.362912,0.91564,0.263819,0.508647,0.316974,0.118981,0.476254,0.422518,0.278723,0.272759,0.301035,0.481861,0.0822474,0.834745,0.200688,0.411988,0.779059,0.890876,0.124449,0.461387,0.722151,0.338994,0.683746,0.288044,0.401419,0.223598,0.981194,0.961207,0.619281,0.509346,0.385315,0.335332,0.404857,0.157737,0.08476,0.911558,0.410152,0.570108,0.845341,0.598952,0.993141,0.00592256,0.58387,0.581253,0.533834,0.58423,0.900244,0.046906,0.32205,0.421687,0.664092,0.452111,0.687008,0.888142,0.892993,0.903167,0.988404,0.36824,0.437428,0.939604,0.752396,0.730638,0.687083,0.355484,0.209001,0.0470439,0.174649,0.833672,0.849549,0.057383,0.513543,0.0774966,0.504371,0.124922,0.674066,0.310553,0.609686,0.891447,0.609659,0.994978,0.555828,0.950018,0.891255,0.992552,0.827733,0.808043,0.260449,0.169863,0.0860988,0.345194,0.909924,0.212332,0.440801,0.854483,0.245624,0.662566,0.953765,0.639778,0.818541,0.943583,0.716291,0.779058,0.212621,0.0119759,0.875131,0.229281,0.00838715,0.640749,0.930828,0.946719,0.442855,0.038103,0.37505,0.855422,0.242531,0.770907,0.726907,0.0649605,0.719447,0.886142,0.380322,0.965295,0.397045,0.771318,0.529298,0.931748,0.427592,0.394885,0.877309,0.527338,0.347615,0.0416622,0.103405,0.568605,0.666641,0.350797,0.609252,0.109703,0.93044,0.318001,0.918827,0.0557143,0.204403,0.622306,0.728687,0.367822,0.348434,0.0286141,0.827057,0.907261,0.105181,0.979185,0.130438,0.896768,0.435959,0.630963,0.783926,0.769866,0.76836,0.807644,0.970054,0.706513,0.0822774,0.254016,0.0162988,0.354875,0.762914,0.396991,0.775646,0.656126,0.416606,0.901346,0.774876,0.775121,0.667953,0.7038,0.940546,0.868083,0.521507,0.514265,0.230045,0.343978,0.602992,0.975712,0.0936233,0.912469,0.404325,0.864962,0.743477,0.892138,0.139288,0.0635508,0.564477,0.172886,0.264071,0.844549,0.319952,0.644923,0.0698692,0.951323,0.696338,0.411008,0.212618,0.0198768,0.733056,0.127084,0.450327,0.0453168,0.126325,0.790264,0.922131,0.869612,0.587882,0.560161,0.739995,0.6509,0.66373,0.419589,0.759483,0.751556,0.585133,0.0478195,0.890817,0.321409,0.666956,0.206166,0.914522,0.566997,0.160894,0.420139,0.578501,0.796548,0.163175,0.206266,0.824146,0.496738,0.687451,0.158987,0.904003,0.869215,0.405805,0.318436,0.228591,0.479338,0.578186,0.05678,0.734088,0.594641,0.780695,0.316752,0.520293,0.349787,0.239227,0.718203,0.418545,0.108226,0.162429,0.177639,0.896525,0.988546,0.445584,0.508208,0.902644,0.0892931,0.382856,0.697516,0.704519,0.524763,0.059206,0.91709,0.924537,0.671929,0.0289064,0.4845,0.842993,0.282818,0.594079,0.129347,0.940065,0.993784,0.393427,0.0911376,0.587436,0.463722,0.572548,0.0294219,0.2826,0.982388,0.783196,0.589591,0.221818,0.994321,0.796594,0.643182,0.305011,0.408671,0.513599,0.052075,0.738588,0.0737817,0.82631,0.864992,0.434701,0.0403527,0.800081,0.904301,0.167946,0.0926448,0.416455,0.959066,0.237306,0.227628,0.276563,0.40919,0.68629,0.129832,0.979162,0.554894,0.746504,0.545042,0.63384,0.448064,0.48916,0.405828,0.489158,0.659208,0.0943364,0.688588,0.671708,0.202341,0.944068,0.9253,0.000287175,0.818506,0.437984,0.938545,0.100121,0.910485,0.0055877,0.143419,0.76994,0.371551,0.544266,0.534098,0.964028,0.558849,0.169803,0.765201,0.616926,0.270926,0.197051,0.499916,0.512059,0.687579,0.267424,0.779327,0.492235,0.0762773,0.0783952,0.209077,0.200546,0.786846,0.163164,0.612404,0.433296,0.226489,0.215871,0.428534,0.540604,0.251143,0.559398,0.287533,0.712292,0.790372,0.519334,0.990618,0.183368,0.136426,0.990426,0.289161,0.584081,0.222175,0.754353,0.207925,0.891157,0.78847,0.810246,0.0744612,0.0285453,0.648968,0.864721,0.921621,0.975799,0.353924,0.40209,0.644228,0.0458105,0.233032,0.266999,0.232624,0.953253,0.224675,0.350984,0.764581,0.428402,0.0545639,0.57781,0.290898,0.877151,0.334018,0.829451,0.998911,0.751345,0.873199,0.179948,0.332442,0.205056,0.325419,0.53379,0.00945795,0.623524,0.838346,0.165946,0.458353,0.779982,0.10348,0.604752,0.367907,0.628108,0.366673,0.363232,0.792841,0.781268,0.237974,0.865839,0.189038,0.0786705,0.128539,0.871748,0.297605,0.615837,0.491582,0.831095,0.674631,0.991911,0.650634,0.953803,0.863251,0.741152,0.455287,0.932018,0.925219,0.528666,0.056567,0.812072,0.127909,0.234995,0.052877,0.255153,0.846631,0.65176,0.348651,0.218301,0.723014,0.252432,0.232871,0.942098,0.933049,0.896114,0.0736813,0.477805,0.884724,0.632272,0.105052,0.688766,0.927156,0.54754,0.986463,0.512028,0.0614675,0.295208,0.569568,0.774284,0.105485,0.916098,0.582997,0.544706,0.666117,0.0414511,0.136282,0.738709,0.0290186,0.00279129,0.708503,0.978764,0.746368,0.760341,0.948548,0.429179,0.308872,0.182015,0.844862,0.00269359,0.622354,0.749862,0.807907,0.433405,0.670374,0.607145,0.296457,0.986819,0.126763,0.121985,0.0490176,0.0958817,0.969765,0.0809224,0.925373,0.261027,0.335953,0.532622,0.026028,0.372628,0.468232,0.495089,0.350299,0.9592,0.0969446,0.0555784,0.995666,0.418378,0.196043,0.574801,0.333811,0.56654,0.424375,0.420709,0.900532,0.128593,0.470898,0.242211,0.985868,0.132218,0.246632,0.836227,0.109771,0.118331,0.133878,0.325487,0.588976,0.713877,0.276228,0.989347,0.662467,0.56388,0.677794,0.443821,0.503051,0.899699,0.423177,0.902224,0.687099,0.720905,0.68023,0.390882,0.190264,0.220098,0.301309,0.568593,0.506457,0.804477,0.0368525,0.234864,0.937752,0.917555,0.00456941,0.549503,0.176457,0.446018,0.248958,0.333637,0.567898,0.894838,0.749325,0.789826,0.299564,0.977256,0.00542706,0.299467,0.533299,0.156807,0.663739,0.374658,0.382489,0.46912,0.882988,0.105583,0.268657,0.530599,0.494373,0.0809627,0.23241,0.667017,0.39263,0.546286,0.734852,0.0713214,0.552303,0.196836,0.856864,0.910179,0.866406,0.556719,0.489249,0.455446,0.948675,0.483239,0.906625,0.944136,0.00594562,0.588337,0.869289,0.752352,0.942866,0.965873,0.640679,0.245242,0.245276,0.157517,0.116127,0.332278,0.424286,0.563113,0.956443,0.162488,0.712934,0.97999,0.612357,0.483829,0.526046,0.615235,0.135197,0.846147,0.892854,0.578346,0.270147,0.577869,0.0737816,0.089726,0.34614,0.255604,0.124414,0.0561126,0.345384,0.0907813,0.735737,0.186186,0.907644,0.264134,0.409231,0.656441,0.368397,0.224541,0.547977,0.0802882,0.788779,0.596344,0.311061,0.0260997,0.923047,|0.552698,0.115439,0.449442,0.122283,0.731201,0.175182,0.117772,0.322,0.586608,0.0928539,0.55297,0.937769,0.188136,0.416472,0.568774,0.233606,0.191583,0.12817,0.36802,0.53162,0.505053,0.169001,0.962195,0.237979,0.735472,0.155346,0.366631,0.717411,0.53834,0.39082,0.306986,0.95734,0.87714,0.736217,0.860518,0.828344,0.467914,0.225938,0.537277,0.850658,0.132006,0.186125,0.639554,0.448872,0.47172,0.89136,0.97139,0.481963,0.705717,0.0655369,0.969359,0.40001,0.733471,0.303251,0.610614,0.297581,0.0943602,0.474382,0.315372,0.295679,0.672953,0.871389,0.630605,0.735808,0.902956,0.336779,0.71578,0.21042,0.487659,0.228372,0.946664,0.640626,0.66913,0.465191,0.197775,0.833898,0.222683,0.894483,0.791002,0.957673,0.346374,0.33755,0.912337,0.775274,0.528088,0.329476,0.435979,0.0136273,0.43299,0.667998,0.071977,0.32066,0.781652,0.114498,0.88198,0.749279,0.102665,0.139209,0.484836,0.751878,0.234443,0.372938,0.0194891,0.389199,0.988046,0.597332,0.548448,0.631652,0.234188,0.0173721,0.0056932,0.128188,0.872731,0.111198,0.305672,0.0536352,0.235195,0.298869,0.0997197,0.911719,0.539719,0.966972,0.110564,0.195477,0.677811,0.523964,0.554212,0.720111,0.430186,0.806247,0.325461,0.542452,0.288174,0.939728,0.870924,0.0987276,0.53886,0.741347,0.410873,0.200029,0.295555,0.58973,0.838406,0.711157,0.375992,0.104895,0.189312,0.836443,0.74395,0.74728,0.851125,0.988842,0.917022,0.334522,0.0941212,0.0530803,0.949568,0.724086,0.97882,0.866382,0.128431,0.731445,0.51047,0.216073,0.177626,0.587485,0.447302,0.123454,0.351443,0.197326,0.344329,0.175969,0.0276406,0.693203,0.49891,0.3054,0.38483,0.470679,0.29274,0.695977,0.987677,0.343621,0.847462,0.660913,0.798739,0.394453,0.86767,0.992023,0.342303,0.630434,0.0536996,0.130931,0.67567,0.867503,0.895947,0.0151492,0.160122,0.170558,0.114626,0.142879,0.558801,0.959945,0.693615,0.654415,0.165802,0.701639,0.445874,0.523865,0.150516,0.686332,0.716446,0.670306,0.790253,0.786575,0.656082,0.701946,0.764085,0.760068,0.578877,0.0812891,0.418137,0.831904,0.3739,0.540082,0.0733704,0.77315,0.986202,0.908158,0.939173,0.323217,0.260326,0.619175,0.756184,0.809989,0.984312,0.390845,0.841206,0.264642,0.704944,0.2352,0.754198,0.88185,0.136141,0.747781,0.25979,0.583614,0.954003,0.791939,0.853406,0.576211,0.844156,0.535008,0.715214,0.981043,0.821301,0.721162,0.677979,0.85103,0.364158,0.0804174,0.786022,0.94521,0.122238,0.826329,0.036941,0.444601,0.533574,0.222796,0.876952,0.944746,0.951602,0.110533,0.693438,0.295695,0.810096,0.272096,0.716027,0.844975,0.0780756,0.932339,0.0991797,0.385989,0.606613,0.218085,0.639343,0.623422,0.825077,0.877626,0.0571945,0.901657,0.148856,0.690163,0.45305,0.475768,0.858331,0.973918,0.828634,0.910347,0.982782,0.0631604,0.659327,0.51756,0.673711,0.49522,0.593545,0.975002,0.554545,0.848679,0.93718,0.465867,0.755211,0.540247,0.276841,0.146079,0.437439,0.611061,0.683877,0.828912,0.0898463,0.182826,0.584589,0.233785,0.0624142,0.946632,0.508774,0.0586435,0.821897,0.816794,0.554982,0.0548765,0.959033,0.893237,0.757515,0.963822,0.1871,0.625281,0.854468,0.99859,0.650527,0.569001,0.240905,0.980892,0.100707,0.287918,0.800918,0.629478,0.713975,0.766792,0.512784,0.296482,0.0125634,0.269194,0.615831,0.626133,0.859716,0.409178,0.588401,0.389639,0.527962,0.783636,0.852569,0.0907789,0.111942,0.281825,0.237815,0.0403482,0.784973,0.1538,0.798424,0.351189,0.431178,0.947546,0.955017,0.307739,0.956409,0.633544,0.506511,0.78454,0.107169,0.964433,0.0625576,0.409792,0.780437,0.247335,0.966919,0.473188,0.191521,0.0802918,0.902046,0.0258079,0.162124,0.135908,0.288023,0.0013957,0.507867,0.10842,0.940338,0.311961,0.815664,0.364375,0.601182,0.620107,0.0283746,0.99541,0.872013,0.533466,0.567505,0.148873,0.958353,0.953371,0.268025,0.411718,0.799661,0.767115,0.572108,0.774083,0.841383,0.512056,0.989915,0.423043,0.378403,0.0477755,0.496217,0.142,0.514304,0.604403,0.9294,0.542806,0.485372,0.083607,0.0666222,0.610263,0.117954,0.96778,0.880548,0.529063,0.333829,0.390322,0.51666,0.79615,0.0959421,0.0427718,0.682929,0.0520619,0.626421,0.407741,0.236315,0.310311,0.426641,0.742564,0.888148,0.298609,0.412486,0.0101575,0.340088,0.779167,0.235084,0.071655,0.681066,0.094085,0.278854,0.296993,0.412721,0.90803,0.568645,0.872783,0.92167,0.27209,0.802339,0.288361,0.56844,0.874357,0.978229,0.72847,0.250033,0.571072,0.116971,0.603646,0.783303,0.362434,0.926293,0.155405,0.0417832,0.645309,0.632529,0.520453,0.881551,0.658002,0.714281,0.105613,0.443749,0.58257,0.665787,0.872088,0.848479,0.567358,0.40258,0.864988,0.166883,0.353791,0.634743,0.942525,0.906344,0.259534,0.230148,0.237353,0.174853,0.681667,0.922253,0.342042,0.540944,0.674112,0.269731,0.48919,0.732716,0.0343882,0.452334,0.610024,0.753603,0.174583,0.147649,0.0728144,0.775719,0.456831,0.823736,0.982859,0.108411,0.245671,0.36805,0.817862,0.186454,0.983791,0.470425,0.614344,0.849577,0.682054,0.172756,0.256925,0.801591,0.892139,0.64237,0.32425,0.297164,0.630313,0.749122,0.141347,0.379916,0.524171,0.0370556,0.359185,0.847454,0.414789,0.249147,0.0114242,0.355425,0.0196584,0.520021,0.854323,0.642078,0.253553,0.671495,0.53954,0.659775,0.640873,0.689762,0.596974,0.566367,0.869459,0.739109,0.429914,0.0946864,0.204706,0.0597732,0.801753,0.286022,0.0459217,0.452819,0.662136,0.159276,0.107863,0.253433,0.371957,0.170856,0.196509,0.499124,0.708931,0.551176,0.191711,0.148547,0.940231,0.194848,0.474533,0.418936,0.342964,0.846417,0.823271,0.59524,0.925823,0.403921,0.479453,0.470216,0.0414696,0.847404,0.813235,0.693529,0.274319,0.0770764,0.175818,0.344206,0.899819,0.533538,0.66726,0.737724,0.56441,0.218856,0.638927,0.996987,0.950417,0.185059,0.158398,0.837328,0.614792,0.0408665,0.132465,0.683253,0.480263,0.527003,0.78026,0.0262037,0.936256,0.370725,0.468275,0.456867,0.66356,0.983763,0.706989,0.273563,0.601968,0.00221908,0.577811,0.736767,0.171812,0.328911,0.366175,0.375184,0.613682,0.29308,0.651771,0.657911,0.11567,0.723394,0.514534,0.776006,0.168699,0.416459,0.701426,0.492509,0.361716,0.984267,0.763629,0.265772,0.0279623,0.926629,0.700786,0.512981,0.361387,0.973477,0.537994,0.958205,0.330775,0.497201,0.200775,0.665693,0.560288,0.845023,0.338626,0.752446,0.869766,0.586919,0.306319,0.0422215,0.364141,0.0943298,0.335076,0.134064,0.760803,0.171447,0.995267,0.740337,0.0165953,0.0660163,0.380476,0.367673,0.409199,0.537989,0.0499458,0.199153,0.233873,0.653617,0.118143,0.432048,0.961751,0.670785,0.537729,0.242794,0.605854,0.423949,0.490281,0.989211,0.0652295,0.617335,0.317471,0.96607,0.43267,0.12812,0.173538,0.745447,0.901566,0.720631,0.830589,0.146315,0.869078,0.174234,0.00704116,0.988918,0.155038,0.943589,0.257093,0.363142,0.581062,0.745112,0.450193,0.319912,0.144451,0.852657,0.00983071,0.800472,0.00552976,0.841874,0.0420222,0.288917,0.500108,0.0669595,0.00591099,0.973465,0.799043,0.695894,0.492617,0.25446,0.414041,0.505774,0.935873,0.206815,0.395571,0.194339,0.392622,0.232602,0.486021,0.973066,0.81788,0.763408,0.446622,0.35293,0.157459,0.354644,0.876886,0.0464448,0.308601,0.0389157,0.379234,0.710787,0.112114,0.66187,0.245381,0.228872,0.108468,0.795206,0.975218,0.591864,0.151341,0.498517,0.543234,0.92763,0.754862,0.349437,0.396057,0.730092,0.836551,0.257427,0.744626,0.795985,0.665365,0.882088,0.374863,0.48058,0.181065,0.501283,0.0726503,0.229099,0.148521,0.48459,0.644848,0.288573,0.576258,0.528707,0.578439,0.415396,0.926061,0.561319,0.372702,0.289343,0.320967,0.69124,0.88936,0.293089,0.597569,0.885698,0.988756,0.049235,0.0953626,0.507716,0.438103,0.870731,0.12815,0.186894,0.288134,0.629821,0.662174,0.291062,0.150488,0.532941,0.75543,0.312298,0.63792,0.76681,0.537595,0.0569198,0.768877,0.43566,0.510005,0.346638,0.23775,0.686445,0.098748,0.933865,0.794968,0.0851837,0.12698,0.284341,0.620108,0.496931,0.11353,0.800978,0.050508,0.387217,0.12648,0.15816,0.17527,0.320313,0.20658,0.373097,0.112704,0.807967,0.958135,0.0719923,0.577966,0.594179,0.303287,0.968627,0.456772,0.313289,0.117364,0.890459,0.221282,0.480012,0.729652,0.524455,0.278413,0.179392,0.643367,0.93241,0.0822178,0.530582,0.920312,0.526526,0.376571,0.713012,0.811566,0.749339,0.401116,0.281816,0.335826,0.297309,0.298761,0.893152,0.874369,0.194969,0.0460292,0.149886,0.328573,0.115226,0.684603,0.0907197,0.0988072,0.981031,0.142548,0.853946,0.145504,0.271815,0.163045,0.476955,0.796892,0.9074,0.0103979,0.738194,0.136627,0.0705338,0.291084,0.459516,0.0109688,0.514563,0.742441,0.593818,0.844132,0.308855,0.747895,0.988077,0.419888,0.558619,0.412974,0.210394,0.165265,0.964452,0.157705,0.887161,0.65171,0.673455,0.883776,0.563766,0.343922,0.281092,0.468953,0.623614,0.233795,0.952006,0.750407,0.523019,0.170929,0.461766,0.0682697,0.659447,0.975667,0.604539,0.0161723,0.962635,0.275273,0.0332943,0.267614,0.994207,0.884337,0.812518,0.695315,0.457104,0.224884,0.482485,0.00272506,0.232025,0.347416,0.432803,0.337298,0.727472,0.104457,0.112375,0.258776,0.647448,0.0899376,0.553555,0.0857717,0.710258,0.97021,0.00931048,0.491068,0.721374,0.419048,0.768815,0.407181,0.991019,0.365992,0.877226,0.770878,0.386215,0.170405,0.703612,0.666363,0.273875,0.982691,0.0586541,0.572068,0.133932,0.898385,|0.806471,0.948235,0.718756,0.221988,0.230535,0.66637,0.795624,0.889898,0.546522,0.334796,0.16828,0.821593,0.955084,0.57953,0.659295,0.48107,0.526153,0.107673,0.382188,0.1654,0.910124,0.246442,0.834103,0.890161,0.844852,0.315483,0.829203,0.412526,0.252291,0.856346,0.242554,0.317247,0.112545,0.549171,0.10314,0.919435,0.0101577,0.860859,0.956218,0.845735,0.127967,0.225693,0.94436,0.979234,0.582558,0.370337,0.975285,0.887264,0.737519,0.643797,0.162324,0.279785,0.129732,0.84389,0.75655,0.259526,0.128504,0.845143,0.467321,0.170634,0.917566,0.00860065,0.809347,0.06709,0.428353,0.335886,0.721959,0.810052,0.865268,0.36083,0.0845027,0.192145,0.479425,0.532503,0.684025,0.0711017,0.0401347,0.86317,0.677949,0.0389113,0.250728,0.788216,0.53406,0.26646,0.0355042,0.280117,0.54769,0.39818,0.223127,0.563271,0.0343316,0.226934,0.351043,0.935361,0.857145,0.885449,0.045366,0.77975,0.897024,0.665258,0.934236,0.0766652,0.355753,0.690691,0.858216,0.341932,0.0888527,0.695449,0.417599,0.427853,0.84323,0.499237,0.0010612,0.204529,0.524505,0.342962,0.701207,0.817728,0.734543,0.111545,0.0580454,0.0703679,0.36779,0.812403,0.586796,0.723945,0.724198,0.14699,0.659419,0.7275,0.625364,0.911235,0.286474,0.287587,0.866615,0.839891,0.941754,0.231,0.771267,0.691756,0.768647,0.639782,0.227123,0.231366,0.0144781,0.378873,0.494069,0.359717,0.268054,0.806592,0.813092,0.791252,0.0186037,0.439676,0.748913,0.842596,0.406355,0.939799,0.289746,0.73996,0.927307,0.331519,0.680109,0.918019,0.754324,0.346055,0.682751,0.0080992,0.569085,0.759403,0.424295,0.166644,0.279005,0.0190274,0.841547,0.650036,0.284625,0.556755,0.967938,0.302198,0.253088,0.382527,0.90221,0.656017,0.322413,0.508343,0.68449,0.161438,0.497359,0.616723,0.464932,0.0919113,0.921551,0.79656,0.887918,0.520719,0.907662,0.900967,0.95802,0.968324,0.14274,0.319781,0.666786,0.522655,0.87569,0.884801,0.030398,0.465496,0.578009,0.193652,0.912272,0.231932,0.606047,0.488645,0.96189,0.0578874,0.602062,0.387861,0.622568,0.415511,0.979007,0.658555,0.430589,0.428568,0.745307,0.733894,0.611491,0.343575,0.315757,0.789132,0.191406,0.592302,0.841982,0.80658,0.579295,0.571818,0.147447,0.79368,0.68449,0.42455,0.589892,0.30943,0.25542,0.0684676,0.990344,0.738634,0.362889,0.406663,0.775269,0.162339,0.311963,0.679233,0.218762,0.242426,0.320704,0.51577,0.81702,0.01699,0.00748289,0.600782,0.294993,0.447914,0.724637,0.0499749,0.976269,0.628398,0.242173,0.017849,0.224211,0.817267,0.0833756,0.474663,0.71981,0.730928,0.899919,0.472869,0.837654,0.4026,0.859679,0.588824,0.668637,0.316443,0.0818028,0.588044,0.0461609,0.702381,0.340614,0.831916,0.871665,0.842662,0.690054,0.273133,0.4114,0.582432,0.443399,0.657153,0.28358,0.701686,0.656142,0.928131,0.600863,0.992416,0.774601,0.649827,0.641926,0.842462,0.568782,0.77606,0.667358,0.444809,0.966149,0.557133,0.395888,0.891287,0.59756,0.931301,0.800363,0.337376,0.942455,0.55255,0.958859,0.934353,0.108839,0.400443,0.962907,0.0853925,0.811788,0.0111308,0.534741,0.204562,0.114448,0.0620487,0.2313,0.121409,0.92091,0.116789,0.969851,0.385874,0.336017,0.899191,0.307529,0.286359,0.917912,0.280791,0.65644,0.395316,0.484559,0.210036,0.0573123,0.389839,0.423811,0.500983,0.246895,0.56322,0.56145,0.0638963,0.534297,0.443825,0.0985596,0.849166,0.633507,0.0404215,0.448982,0.0315323,0.404834,0.0187365,0.982196,0.585403,0.297757,0.98197,0.242265,0.636825,0.862496,0.779686,0.97901,0.815394,0.975951,0.385778,0.382258,0.654092,0.155872,0.945963,0.258595,0.838752,0.679452,0.660538,0.801993,0.437933,0.631704,0.218237,0.118932,0.78098,0.74014,0.76128,0.220155,0.24124,0.91099,0.655298,0.0173417,0.827661,0.738897,0.0269321,0.614877,0.00601262,0.778756,0.371161,0.995511,0.367813,0.352495,0.646579,0.261157,0.847813,0.629973,0.435796,0.389143,0.142255,0.521642,0.56568,0.523893,0.115275,0.981739,0.554822,0.691832,0.851428,0.0957795,0.737995,0.182966,0.109904,0.149865,0.162406,0.0759759,0.136989,0.230763,0.103972,0.568212,0.15931,0.00115371,0.0855709,0.709867,0.586128,0.680634,0.974132,0.0986425,0.319518,0.948381,0.320017,0.121553,0.187059,0.897199,0.299871,0.25618,0.45488,0.658745,0.105404,0.149942,0.782674,0.772853,0.813503,0.747875,0.330586,0.0215624,0.290124,0.0192715,0.942696,0.340418,0.830057,0.2186,0.295746,0.471306,0.916972,0.412021,0.125941,0.182661,0.650651,0.60768,0.0340161,0.690355,0.980152,0.638694,0.446598,0.328478,0.0197067,0.50672,0.558042,0.298437,0.934895,0.257294,0.0632446,0.567339,0.0870316,0.62083,0.402124,0.0387961,0.224122,0.876535,0.690836,0.0553538,0.51827,0.304151,0.99309,0.575334,0.398352,0.379079,0.559283,0.141718,0.0105254,0.20923,0.318474,0.420374,0.631477,0.856922,0.633446,0.132261,0.805189,0.658847,0.00864756,0.890183,0.0402169,0.752062,0.391213,0.0599473,0.462233,0.944138,0.426039,0.127827,0.296122,0.832675,0.95612,0.015815,0.932833,0.993267,0.74993,0.0477735,0.310428,0.710546,0.0719295,0.845082,0.0926049,0.153134,0.164093,0.543249,0.90583,0.376903,0.898431,0.359665,0.813856,0.783466,0.306027,0.525411,0.720268,0.242807,0.995947,0.670815,0.451877,0.318956,0.763083,0.105185,0.357934,0.781566,0.499323,0.259362,0.581942,0.273258,0.970191,0.621172,0.753477,0.676178,0.554267,0.89999,0.975489,0.0594909,0.27606,0.802182,0.422018,0.503815,0.183442,0.395923,0.966777,0.495911,0.425656,0.556075,0.0861422,0.602031,0.677859,0.386688,0.23692,0.511699,0.481886,0.210068,0.417793,0.347394,0.204615,0.219045,0.694378,0.655438,0.747199,0.613013,0.169648,0.51734,0.127511,0.0848191,0.23117,0.746394,0.7458,0.994787,0.553192,0.690153,0.0457468,0.484232,0.420015,0.295131,0.824751,0.824728,0.715722,0.740708,0.564133,0.0738401,0.558831,0.183125,0.282558,0.927643,0.142735,0.105427,0.317899,0.845733,0.00956923,0.48248,0.918642,0.26828,0.995986,0.249717,0.152807,0.952056,0.29051,0.574519,0.253137,0.377209,0.98216,0.56506,0.663441,0.883244,0.514974,0.601809,0.811461,0.427786,0.818585,0.345763,0.814931,0.41481,0.200661,0.692108,0.964401,0.355918,0.47622,0.869774,0.412471,0.271453,0.0681671,0.495919,0.422317,0.586033,0.441479,0.535171,0.375835,0.0539219,0.465757,0.791195,0.302792,0.195495,0.461341,0.631014,0.155741,0.278208,0.694726,0.204522,0.309582,0.895,0.469739,0.159038,0.88438,0.748111,0.713457,0.141445,0.956323,0.623467,0.252097,0.07739,0.549892,0.165203,0.43119,0.0243992,0.983985,0.206341,0.623458,0.76638,0.156584,0.133942,0.942608,0.172013,0.97984,0.111251,0.806984,0.567551,0.158536,0.986873,0.450848,0.630233,0.0869023,0.293565,0.981266,0.287573,0.173662,0.159136,0.123008,0.960941,0.232373,0.53446,0.0167769,0.796177,0.0326103,0.542315,0.855974,0.795942,0.984013,0.505846,0.0289798,0.157942,0.216664,0.170553,0.873724,0.281955,0.308681,0.106939,0.334048,0.344689,0.448488,0.286159,0.944509,0.81822,0.729018,0.242644,0.033406,0.129759,0.191188,0.874564,0.384543,0.40767,0.511193,0.669646,0.204067,0.013592,0.594538,0.62344,0.107037,0.3071,0.0439209,0.811694,0.260859,0.0959455,0.628221,0.169369,0.696242,0.416733,0.602498,0.170239,0.61143,0.469219,0.781185,0.518025,0.0165082,0.729705,0.364531,0.806741,0.61818,0.510678,0.837638,0.113656,0.784857,0.660382,0.41139,0.495062,0.482946,0.563519,0.845989,0.40754,0.0570026,0.461281,0.984833,0.674643,0.836083,0.513225,0.252732,0.980068,0.749757,0.0149767,0.989043,0.0711346,0.219953,0.873557,0.126508,0.359321,0.72655,0.889703,0.993738,0.8201,0.688211,0.480208,0.459274,0.340438,0.729261,0.509952,0.912865,0.343196,0.919999,0.505253,0.76735,0.648823,0.584421,0.542901,0.36137,0.799802,0.16973,0.632865,0.242099,0.375202,0.294658,0.677315,0.401572,0.312361,0.42574,0.844874,0.287968,0.373113,0.262269,0.434084,0.420386,0.392169,0.512562,0.331155,0.746801,0.625651,0.174683,0.576139,0.610793,0.712064,0.482748,0.155367,0.113997,0.884849,0.611768,0.967422,0.672844,0.651176,0.887475,0.0991696,0.0254048,0.0719371,0.972756,0.747105,0.872367,0.054229,0.983758,0.071614,0.13786,0.409066,0.995104,0.0695059,0.223163,0.552875,0.339706,0.0689538,0.0454288,0.766179,0.672164,0.875341,0.611372,0.391532,0.9753,0.36688,0.172308,0.431754,0.0342972,0.326629,0.730715,0.631652,0.188975,0.501342,0.561139,0.192144,0.737475,0.844301,0.686001,0.138731,0.20704,0.975528,0.241226,0.949882,0.449161,0.345309,0.557017,0.840016,0.952753,0.206316,0.746641,0.624205,0.457131,0.500665,0.180073,0.145641,0.0437579,0.05906,0.706908,0.266546,0.697148,0.94256,0.704149,0.937735,0.151189,0.0526708,0.947785,0.0627683,0.987689,0.231074,0.942561,0.724655,0.253239,0.746315,0.0170597,0.0242448,0.732359,0.0944805,0.755254,0.102146,0.418197,0.138518,0.0758597,0.239102,0.366991,0.460556,0.581081,0.665851,0.432488,0.763532,0.350615,0.965914,0.216706,0.681121,0.527523,0.7844,0.54822,0.155198,0.953139,0.296882,0.288025,0.288143,0.780299,0.249044,0.266026,0.445236,0.691568,0.404235,0.0502757,0.709553,0.676633,0.259197,0.982101,0.110511,0.283577,0.219608,0.637285,0.616305,0.0878057,0.787749,0.743137,0.537844,0.28056,0.620387,0.024609,0.900628,0.216257,0.217491,0.704596,0.194847,0.563814,0.0250509,0.153943,0.424359,0.358534,0.376279,0.266467,0.14797,0.280582,0.911124,0.364182,0.437392,0.536468,0.707321,0.39651,0.585516,0.79606,|0.427184,0.564011,0.941888,0.650674,0.295703,0.327043,0.567591,0.679719,0.301269,0.516113,0.992261,0.544374,0.879763,0.0836521,0.0206935,0.167773,0.696679,0.0645713,0.286974,0.722806,0.0535392,0.351312,0.311082,0.150401,0.992217,0.432946,0.332933,0.271258,0.062087,0.540855,0.0412853,0.708461,0.505508,0.415771,0.565662,0.208475,0.0364598,0.471742,0.34288,0.106617,0.385243,0.385193,0.659425,0.291732,0.596184,0.634012,0.566151,0.516225,0.2404,0.814998,0.863398,0.873481,0.955508,0.972704,0.269939,0.243834,0.915364,0.0761294,0.536468,0.289357,0.955183,0.759278,0.376339,0.0826608,0.782031,0.706902,0.324986,0.627888,0.224431,0.196691,0.491559,0.259949,0.600727,0.906651,0.486505,0.49565,0.224562,0.278216,0.57942,0.916675,0.483361,0.661173,0.662166,0.316954,0.772086,0.076848,0.322389,0.444079,0.747233,0.735263,0.204477,0.744443,0.905468,0.277188,0.268847,0.0262422,0.280675,0.1149,0.557074,0.725461,0.257503,0.596387,0.512656,0.125326,0.047191,0.942073,0.0269986,0.731272,0.655327,0.416421,0.362782,0.208871,0.583011,0.510051,0.84586,0.453166,0.376277,0.954382,0.368243,0.355475,0.203956,0.889684,0.154193,0.00419056,0.735193,0.112921,0.691083,0.184687,0.221797,0.820217,0.629017,0.76982,0.849112,0.36755,0.293649,0.0830165,0.0585049,0.0115007,0.934687,0.231641,0.481521,0.125521,0.518356,0.904838,0.572392,0.709788,0.349933,0.955094,0.391576,0.163052,0.509047,0.745124,0.906456,0.493323,0.0097636,0.0558661,0.612572,0.444594,0.0548154,0.531672,0.855546,0.567339,0.973355,0.59056,0.912484,0.847196,0.124637,0.455922,0.825539,0.0200977,0.0605116,0.602452,0.112328,0.568879,0.959483,0.564221,0.749468,0.35566,0.0943997,0.51586,0.586622,0.969687,0.0182911,0.236087,0.323408,0.751399,0.587668,0.645276,0.221987,0.546832,0.853858,0.535962,0.934648,0.285799,0.282876,0.607732,0.870322,0.303527,0.875926,0.992048,0.265514,0.867258,0.966745,0.561512,0.975389,0.0751917,0.0226653,0.612931,0.676538,0.78295,0.692044,0.0193875,0.618963,0.236734,0.451097,0.186319,0.896464,0.423834,0.860392,0.247585,0.248121,0.802224,0.0926874,0.298621,0.601811,0.90628,0.411614,0.477099,0.78617,0.68586,0.924056,0.88589,0.931362,0.679481,0.514107,0.704745,0.22783,0.682011,0.626812,0.824662,0.887622,0.775051,0.415958,0.216553,0.920167,0.970667,0.493616,0.975235,0.905763,0.246792,0.693158,0.989555,0.408961,0.75192,0.769948,0.161094,0.884118,0.991695,0.170636,0.514934,0.0209146,0.248756,0.397676,0.783843,0.575022,0.59852,0.435465,0.180476,0.77067,0.0724415,0.271512,0.693862,0.857845,0.308715,0.969744,0.0143212,0.580619,0.00230944,0.639103,0.593781,0.156645,0.767067,0.503386,0.574322,0.630966,0.974759,0.259259,0.365032,0.374609,0.583902,0.187329,0.521357,0.967149,0.142134,0.441611,0.850191,0.719442,0.52848,0.0459101,0.883296,0.642643,0.86534,0.411548,0.819334,0.906869,0.956046,0.302565,0.483909,0.211243,0.999639,0.973657,0.0959209,0.468637,0.562824,0.491585,0.426,0.0358756,0.602255,0.766671,0.525156,0.194868,0.370095,0.0360642,0.567931,0.296978,0.598124,0.869874,0.889131,0.636897,0.934708,0.388392,0.011112,0.14413,0.274437,0.760299,0.556995,0.110584,0.368798,0.887826,0.352359,0.87165,0.384767,0.47094,0.725554,0.505842,0.339263,0.566759,0.593325,0.947977,0.0600379,0.986732,0.855677,0.262582,0.0404076,0.675051,0.0163217,0.28942,0.509265,0.669983,0.0221817,0.19756,0.812075,0.115486,0.434389,0.910764,0.238879,0.770424,0.192389,0.0829456,0.584029,0.61206,0.914983,0.719357,0.673089,0.362123,0.0855491,0.870775,0.712771,0.802135,0.93116,0.330035,0.710678,0.276885,0.825982,0.244574,0.335271,0.0683258,0.124471,0.823781,0.81356,0.833962,0.769895,0.499393,0.279049,0.0730244,0.448811,0.377501,0.232407,0.948898,0.363115,0.610938,0.3632,0.161661,0.906862,0.574721,0.680866,0.304415,0.816879,0.360036,0.42933,0.0580952,0.833668,0.612262,0.88515,0.988634,0.635093,0.274766,0.450123,0.718119,0.11052,0.811818,0.947319,0.666297,0.844508,0.596391,0.195453,0.610931,0.186013,0.640284,0.380815,0.518637,0.517061,0.843888,0.442811,0.101359,0.533026,0.558204,0.77964,0.190672,0.62608,0.661338,0.255875,0.133595,0.163955,0.785584,0.830527,0.593095,0.217382,0.154375,0.447391,0.479734,0.0796961,0.658443,0.930858,0.039249,0.713355,0.479084,0.841135,0.477161,0.423955,0.373315,0.00506312,0.651345,0.420745,0.17717,0.926306,0.563785,0.52484,0.67036,0.349028,0.578293,0.107295,0.109587,0.393516,0.444668,0.899418,0.494013,0.906119,0.667435,0.848971,0.266411,0.816856,0.845505,0.598736,0.635216,0.113541,0.046115,0.0895259,0.18607,0.0407184,0.659829,0.341012,0.0834194,0.321858,0.588125,0.823965,0.900867,0.595095,0.941439,0.0828598,0.333844,0.712414,0.732336,0.629339,0.0530165,0.014739,0.507832,0.938553,0.367652,0.0915247,0.500928,0.273869,0.14789,0.494719,0.882707,0.804709,0.598047,0.673067,0.576286,0.946298,0.4223,0.585555,0.477045,0.10625,0.519733,0.893722,0.285055,0.751311,0.786083,0.719218,0.482906,0.50509,0.952301,0.598254,0.337872,0.500371,0.375794,0.151435,0.785807,0.922427,0.933972,0.222519,0.659087,0.710188,0.950451,0.317086,0.129409,0.0719484,0.860648,0.0399417,0.280374,0.89175,0.113192,0.408157,0.239519,0.621011,0.256089,0.32148,0.35258,0.969972,0.887875,0.750868,0.706754,0.499064,0.28655,0.81302,0.649845,0.505091,0.853679,0.0124203,0.0678996,0.337346,0.601953,0.727206,0.568085,0.685891,0.613621,0.446965,0.321872,0.206036,0.730094,0.267619,0.592132,0.908392,0.578796,0.731157,0.0774695,0.375221,0.584282,0.535193,0.494859,0.688913,0.439121,0.774357,0.6401,0.173126,0.368404,0.956286,0.464592,0.156884,0.755616,0.095472,0.745087,0.219951,0.280142,0.826205,0.290673,0.944338,0.119922,0.368983,0.975874,0.2469,0.866549,0.930091,0.546628,0.268973,0.637245,0.253432,0.753743,0.198761,0.0807711,0.936214,0.205147,0.475108,0.098604,0.435872,0.0411177,0.86442,0.0103139,0.145424,0.937196,0.224022,0.751016,0.222461,0.934683,0.17773,0.1252,0.952648,0.288409,0.960245,0.581019,0.420805,0.511565,0.803078,0.598157,0.511164,0.0839682,0.620077,0.693018,0.841924,0.620288,0.0076322,0.623369,0.968239,0.0608634,0.551896,0.109766,0.320305,0.0138425,0.998935,0.596981,0.375186,0.875161,0.0522745,0.353336,0.671684,0.623726,0.682762,0.679797,0.822146,0.546487,0.0387456,0.564145,0.480743,0.651828,0.559399,0.35609,0.505819,0.375522,0.466646,0.752304,0.308669,0.173338,0.25125,0.185801,0.438279,0.208126,0.182034,0.397426,0.982346,0.668465,0.290117,0.706159,0.226411,0.811642,0.591378,0.817995,0.70935,0.478354,0.461077,0.00428885,0.31202,0.345416,0.348708,0.0135451,0.760001,0.439433,0.442646,0.810832,0.167631,0.0706987,0.767368,0.0774219,0.738548,0.995429,0.717086,0.0699825,0.286071,0.0738856,0.984099,0.495163,0.956991,0.822636,0.00630736,0.313706,0.368424,0.396422,0.0877044,0.103955,0.532398,0.584485,0.615117,0.872093,0.503954,0.919585,0.329098,0.613276,0.768827,0.0878607,0.885121,0.27434,0.656074,0.373489,0.788046,0.602678,0.00748342,0.698491,0.444403,0.395572,0.431797,0.225782,0.990392,0.519797,0.333707,0.228547,0.453723,0.680647,0.418176,0.643354,0.37479,0.47119,0.93863,0.954356,0.112877,0.595376,0.669355,0.0855369,0.704118,0.467429,0.207857,0.736318,0.744936,0.214133,0.799715,0.966942,0.810462,0.0546634,0.234473,0.891564,0.136585,0.613145,0.834278,0.326626,0.679383,0.734821,0.433672,0.983366,0.401392,0.420981,0.163548,0.456647,0.87869,0.9033,0.311124,0.836477,0.300437,0.940547,0.58838,0.828139,0.556865,0.951041,0.317014,0.969857,0.417438,0.366953,0.202215,0.680111,0.644369,0.358961,0.288432,0.141528,0.431512,0.686161,0.310972,0.0955158,0.817689,0.635455,0.0920144,0.210747,0.779993,0.950601,0.0908961,0.874297,0.397178,0.797763,0.712389,0.795794,0.213406,0.547428,0.13566,0.964296,0.533726,0.488563,0.310167,0.830957,0.134217,0.0692178,0.0722563,0.370497,0.191749,0.987777,0.110816,0.65278,0.227132,0.930988,0.809496,0.0464545,0.122029,0.420957,0.0660232,0.0330385,0.320135,0.397988,0.804306,0.741577,0.700388,0.356488,0.310104,0.661262,0.351288,0.681907,0.506532,0.271148,0.454499,0.380112,0.862024,0.815797,0.623798,0.777396,0.391676,0.651052,0.0144308,0.988315,0.751888,0.830087,0.438401,0.57405,0.45568,0.384079,0.775677,0.574781,0.6168,0.0686712,0.557507,0.839722,0.494649,0.767302,0.55347,0.77797,0.61949,0.731512,0.0692059,0.964895,0.236583,0.042743,0.735796,0.627864,0.234535,0.856694,0.121963,0.541349,0.295347,0.638231,0.0590339,0.279218,0.214346,0.24425,0.0995332,0.146163,0.709144,0.545201,0.406018,0.238222,0.707467,0.728862,0.912856,0.273195,0.8405,0.418669,0.499748,0.930569,0.322254,0.200351,0.0380185,0.0349255,0.25065,0.667825,0.694143,0.369536,0.613627,0.468265,0.99832,0.788094,0.344208,0.979264,0.75756,0.466237,0.339797,0.677527,0.763737,0.70487,0.695568,0.610197,0.859601,0.811252,0.493915,0.554424,0.978528,0.218876,0.963676,0.186337,0.386982,0.675692,0.51432,0.217996,0.730681,0.134573,0.757577,0.06585,0.721467,0.598499,0.188463,0.852508,0.158527,0.0438043,0.100008,0.291807,0.144502,0.137833,0.818716,0.155445,0.626662,0.269536,0.687274,0.861464,0.596836,0.490046,0.238898,0.415721,0.128595,0.720868,0.918114,0.628814,0.0484365,0.0372226,0.714069,0.506786,0.109432,0.0041489,0.802343,0.025291,0.23015,0.0782483,0.919665,0.00930142,0.298563,0.171201,0.165422,0.846692,0.617824,|0.199874,0.0396433,0.4786,0.0373181,0.605581,0.113834,0.193989,0.0792695,0.56661,0.25766,0.783511,0.679658,0.362831,0.90145,0.947751,0.269682,0.839443,0.76447,0.218907,0.853662,0.951973,0.54024,0.471936,0.0761065,0.813765,0.508334,0.0573868,0.824064,0.753566,0.855603,0.620919,0.324256,0.669743,0.724557,0.874342,0.153178,0.336484,0.00316316,0.976908,0.906154,0.982493,0.273341,0.0373501,0.694402,0.114109,0.896801,0.893619,0.496138,0.00363523,0.380774,0.824642,0.595199,0.604555,0.711399,0.948632,0.921793,0.673438,0.702097,0.911543,0.106103,0.874208,0.0713496,0.946031,0.512009,0.149461,0.152835,0.162241,0.109892,0.0501505,0.731166,0.521564,0.66273,0.797946,0.426987,0.207681,0.843485,0.426854,0.000718415,0.561519,0.227788,0.223294,0.210112,0.600161,0.739458,0.910103,0.529241,0.471705,0.112932,0.909027,0.970265,0.222119,0.178182,0.87107,0.318711,0.635131,0.0397838,0.337547,0.593735,0.355364,0.0283546,0.938312,0.733234,0.724273,0.739952,0.241766,0.928138,0.918534,0.622252,0.641295,0.9371,0.553749,0.494362,0.179515,0.685382,0.671231,0.530644,0.518835,0.237553,0.618648,0.950503,0.0921288,0.220782,0.1584,0.635178,0.12105,0.661406,0.155107,0.0754521,0.672578,0.134868,0.216317,0.99803,0.075792,0.452366,0.72318,0.983696,0.424615,0.211069,0.318309,0.433688,0.353157,0.393379,0.0286906,0.208793,0.11288,0.294447,0.762244,0.172056,0.221626,0.0702164,0.833854,0.93553,0.345114,0.501926,0.919094,0.834754,0.55428,0.151021,0.00506932,0.510239,0.723159,0.59297,0.0633821,0.0553589,0.395661,0.736578,0.520472,0.95925,0.845579,0.643779,0.174461,0.49096,0.384208,0.712326,0.181017,0.974823,0.0607926,0.891681,0.78183,0.698271,0.644727,0.826961,0.479356,0.105224,0.280051,0.930781,0.204932,0.967556,0.172915,0.476971,0.316623,0.584138,0.551291,0.479201,0.593769,0.151858,0.876945,0.0818561,0.00560892,0.142842,0.492553,0.105051,0.362411,0.553414,0.29873,0.0804653,0.595801,0.950227,0.929948,0.0309988,0.239411,0.175632,0.192012,0.107644,0.0196243,0.0277604,0.523673,0.966211,0.598245,0.440336,0.332028,0.473026,0.803727,0.217947,0.661906,0.868662,0.835915,0.633987,0.700063,0.623873,0.102831,0.216517,0.0973302,0.0559586,0.30475,0.146343,0.180938,0.719802,0.853185,0.820727,0.532257,0.507564,0.671993,0.356057,0.403945,0.524258,0.625524,0.0459601,0.208485,0.994759,0.985319,0.867001,0.689765,0.0856948,0.776693,0.0703586,0.777478,0.759988,0.0211537,0.129637,0.389825,0.85367,0.749863,0.458152,0.835238,0.66276,0.239499,0.800669,0.454492,0.685487,0.969274,0.714076,0.633268,0.369138,0.262286,0.696405,0.328599,0.514257,0.204942,0.677865,0.0543208,0.698987,0.282095,0.0608469,0.277473,0.526996,0.262254,0.809483,0.882213,0.596227,0.970794,0.556141,0.198102,0.48001,0.760021,0.715384,0.702971,0.350676,0.0755996,0.983471,0.904608,0.0216793,0.0680034,0.00495052,0.0450985,0.823719,0.194366,0.976827,0.768104,0.74523,0.506679,0.569992,0.831794,0.96598,0.194224,0.673095,0.27167,0.601827,0.10704,0.417286,0.0247,0.455766,0.805945,0.0552708,0.78972,0.56273,0.220334,0.577542,0.36786,0.568313,0.935888,0.354849,0.28554,0.379488,0.89678,0.512101,0.620169,0.656487,0.831923,0.065559,0.85417,0.17308,0.778577,0.725715,0.693626,0.338427,0.859172,0.155514,0.550482,0.392489,0.464896,0.133974,0.989969,0.987715,0.694933,0.0422454,0.697858,0.776789,0.551398,0.640913,0.715239,0.652282,0.996826,0.038471,0.934418,0.168148,0.218846,0.785842,0.774688,0.0867141,0.921131,0.0880055,0.122035,0.31473,0.124002,0.383909,0.278609,0.737011,0.24746,0.189019,0.875557,0.145446,0.688918,0.403825,0.618169,0.67172,0.411433,0.0748376,0.382925,0.968514,0.733586,0.869098,0.820876,0.512418,0.860403,0.345284,0.338532,0.455672,0.98606,0.271565,0.467665,0.272144,0.260467,0.438495,0.905865,0.747719,0.635804,0.0483888,0.561364,0.64109,0.457512,0.356955,0.0519637,0.538405,0.218369,0.397957,0.97131,0.879668,0.892884,0.398583,0.396032,0.910747,0.375689,0.340696,0.0796455,0.147348,0.0307447,0.921483,0.220383,0.497331,0.494902,0.659255,0.838275,0.423599,0.513038,0.535068,0.275439,0.741788,0.383879,0.257331,0.430419,0.892135,0.723303,0.684527,0.636474,0.792251,0.426673,0.962354,0.0819494,0.757691,0.595371,0.918835,0.323341,0.156969,0.382931,0.876402,0.379741,0.532529,0.540968,0.277935,0.0619496,0.0808682,0.541998,0.26093,0.228766,0.841286,0.311524,0.032944,0.292779,0.691743,0.410763,0.777873,0.544754,0.812968,0.414556,0.222808,0.865122,0.060522,0.707871,0.932938,0.093994,0.684181,0.972838,0.674185,0.062008,0.53696,0.614031,0.974016,0.716813,0.643166,0.389953,0.516717,0.771311,0.257266,0.261508,0.544732,0.721164,0.469009,0.743894,0.479966,0.716721,0.654183,0.0444604,0.802332,0.340852,0.825351,0.469577,0.954948,0.765072,0.456397,0.920659,0.376001,0.878469,0.572264,0.489366,0.373273,0.0541365,0.776605,0.805494,0.766002,0.619936,0.884671,0.232322,0.0229689,0.991712,0.838424,0.812206,0.0595438,0.836216,0.193019,0.690579,0.375677,0.366869,0.236587,0.472963,0.332253,0.668611,0.393258,0.0580398,0.788302,0.668467,0.058715,0.276407,0.697803,0.0532653,0.268541,0.757293,0.666153,0.217461,0.838826,0.142105,0.416736,0.118467,0.00143832,0.397357,0.453444,0.275894,0.993132,0.438243,0.512622,0.504638,0.427038,0.310796,0.970522,0.863351,0.130346,0.585442,0.425401,0.324829,0.721998,0.175971,0.709819,0.214459,0.609542,0.620848,0.691721,0.515501,0.901409,0.248624,0.811473,0.703919,0.85508,0.463973,0.193695,0.716442,0.529302,0.300508,0.272431,0.814655,0.869596,0.44395,0.213747,0.667026,0.487842,0.188481,0.375347,0.346038,0.516139,0.271523,0.482733,0.0542235,0.16961,0.997212,0.687458,0.601991,0.198199,0.828035,0.976289,0.102937,0.879438,0.545615,0.127644,0.145199,0.887051,0.284337,0.821053,0.240874,0.462727,0.751894,0.106025,0.458275,0.641798,0.0278758,0.562508,0.626617,0.25627,0.615345,0.574436,0.749019,0.787095,0.849483,0.0502058,0.544534,0.628275,0.997739,0.679949,0.186078,0.816714,0.189158,0.397054,0.527407,0.775797,0.797597,0.374746,0.89791,0.642064,0.404115,0.302249,0.753927,0.256189,0.368763,0.398941,0.580052,0.152196,0.606583,0.160243,0.998261,0.339701,0.270009,0.338523,0.778085,0.294366,0.193447,0.0381044,0.700055,0.9774,0.94488,0.409372,0.786405,0.343488,0.299418,0.665745,0.194866,0.0701439,0.105324,0.714269,0.522735,0.49291,0.502167,0.811552,0.421468,0.668313,0.762003,0.83202,0.180023,0.973714,0.0619565,0.910135,0.499512,0.896338,0.632962,0.143494,0.271145,0.410726,0.991747,0.0283468,0.557036,0.927834,0.519036,0.295998,0.278651,0.283946,0.974498,0.829566,0.387327,0.542053,0.186497,0.320892,0.657047,0.865881,0.442339,0.496923,0.304415,0.804408,0.42272,0.638768,0.583968,0.45358,0.460028,0.774842,0.906454,0.595724,0.122871,0.802639,0.203917,0.0500287,0.099605,0.551622,0.609463,0.307986,0.738931,0.295629,0.16399,0.687232,0.706663,0.58744,0.936091,0.43908,0.605367,0.191964,0.228533,0.533321,0.553566,0.158955,0.180858,0.760992,0.947371,0.25949,0.755131,0.744435,0.55279,0.157409,0.847318,0.600104,0.634912,0.0959588,0.147133,0.742569,0.944963,0.486251,0.228106,0.766742,0.345129,0.793947,0.657652,0.202463,0.288295,0.0597602,0.530337,0.215084,0.538763,0.835791,0.927992,0.55398,0.974088,0.359453,0.221531,0.0487054,0.50371,0.484853,0.511523,0.495602,0.784187,0.819557,0.52314,0.957891,0.923615,0.214702,0.214879,0.0966558,0.870613,0.833823,0.897737,0.401244,0.131965,0.284314,0.934056,0.95868,0.69249,0.028815,0.447422,0.629877,0.914748,0.0550022,0.671007,0.339293,0.918138,0.125126,0.488944,0.4462,0.894974,0.349426,0.750139,0.930978,0.349161,0.0420784,0.892816,0.0904323,0.11262,0.408978,0.11291,0.790321,0.0848323,0.838446,0.16386,0.961751,0.955056,0.993037,0.917707,0.449675,0.490429,0.124317,0.151127,0.824123,0.279147,0.446197,0.689263,0.247866,0.398117,0.208096,0.571401,0.325544,0.94673,0.909223,0.309646,0.2866,0.111771,0.408122,0.317336,0.9033,0.404222,0.868394,0.84424,0.0378538,0.169968,0.316229,0.315731,0.954606,0.263561,0.0101719,0.0180312,0.362898,0.949854,0.624477,0.0492928,0.0391529,0.610575,0.670982,0.0231954,0.855412,0.883431,0.507335,0.0793442,0.157237,0.62549,0.674603,0.421093,0.0177072,0.684712,0.666387,0.939039,0.54382,0.480574,0.985995,0.171681,0.0689569,0.515053,0.131138,0.692501,0.375058,0.330196,0.255632,0.570031,0.431909,0.780303,0.326827,0.0693136,0.823803,0.207755,0.242284,0.256086,0.960859,0.365844,0.71156,0.993359,0.871754,0.741587,0.095449,0.142979,0.730219,0.154194,0.0242145,0.509055,0.565441,0.38423,0.866978,0.999009,0.331082,0.246505,0.772614,0.659338,0.72788,0.963283,0.0360372,0.233487,0.73391,0.89502,0.0844818,0.110225,0.981318,0.518768,0.893594,0.369489,0.669526,0.730849,0.124672,0.413154,0.256637,0.842561,0.432466,0.849526,0.106357,0.217838,0.817591,0.691142,0.244495,0.439908,0.0765086,0.782116,0.311175,0.556843,0.268112,0.312665,0.769332,0.945316,0.369965,0.043944,0.183743,0.886916,0.120471,0.22975,0.957707,0.588904,0.364984,0.90481,0.0681118,0.0904785,0.853862,0.968754,0.356311,0.563355,0.377776,0.105953,0.149462,0.0588881,0.594504,0.559453,0.486855,0.839506,0.517845,0.149349,0.247051,0.716626,0.589858,0.679449,0.0745235,0.0392848,0.716113,0.0645636,0.642046,0.469771,0.329182,0.885804,0.832913,0.519941,0.0255196,0.0984392,0.799332,0.342817,0.180266,|0.747835,0.556855,0.894143,0.629628,0.219213,0.662047,0.27507,0.301679,0.440675,0.745908,0.385658,0.696687,0.664627,0.206591,0.626954,0.845732,0.0946333,0.685706,0.253099,0.832336,0.161915,0.432309,0.800664,0.408262,0.107681,0.179426,0.738431,0.393517,0.392618,0.506013,0.30455,0.250319,0.0385385,0.305223,0.736658,0.818267,0.744384,0.547492,0.978033,0.875248,0.398113,0.965413,0.493869,0.475009,0.987867,0.0578269,0.975887,0.499948,0.559546,0.787139,0.0568041,0.981246,0.498391,0.299031,0.884948,0.0800657,0.741934,0.634295,0.732408,0.669946,0.938027,0.35854,0.454117,0.0950876,0.177528,0.923603,0.712659,0.719618,0.689503,0.0807042,0.707854,0.760359,0.0276164,0.695679,0.811433,0.411021,0.712705,0.589765,0.40438,0.316706,0.835405,0.286353,0.619327,0.412915,0.496593,0.419875,0.924823,0.117432,0.965233,0.25795,0.363544,0.407245,0.793331,0.157238,0.466228,0.981756,0.263004,0.121458,0.131004,0.883905,0.341402,0.350004,0.303239,0.907587,0.721588,0.549191,0.898365,0.43645,0.390457,0.947754,0.135696,0.146264,0.358931,0.112782,0.519075,0.121692,0.686468,0.376863,0.422901,0.0861874,0.324543,0.924086,0.305943,0.676345,0.0106287,0.369887,0.294724,0.652304,0.0433722,0.600919,0.156913,0.773401,0.703593,0.948191,0.142524,0.573257,0.434959,0.394163,0.903192,0.75791,0.0862344,0.167377,0.964672,0.798774,0.627138,0.664087,0.560694,0.793324,0.102823,0.429017,0.570842,0.774476,0.829768,0.724514,0.108446,0.584306,0.640735,0.143565,0.796218,0.771406,0.313246,0.869689,0.484949,0.000218868,0.830296,0.421698,0.736206,0.583385,0.677429,0.0812229,0.406408,0.106325,0.254721,0.498035,0.346427,0.987022,0.447772,0.763715,0.14085,0.889672,0.283242,0.233143,0.562678,0.465359,0.0530728,0.00617439,0.707867,0.306348,0.962019,0.552988,0.526324,0.705764,0.437199,0.480554,0.360898,0.327442,0.96845,0.497139,0.370431,0.976907,0.930416,0.12378,0.547702,0.7404,0.776521,0.146833,0.241138,0.659769,0.565075,0.455691,0.377151,0.966646,0.0547593,0.957195,0.686387,0.294087,0.420131,0.338919,0.60199,0.0378727,0.712995,0.0586891,0.266197,0.62241,0.408469,0.606776,0.241931,0.576157,0.597396,0.068913,0.0613071,0.112984,0.0388801,0.145154,0.352139,0.521325,0.843435,0.267924,0.666717,0.0831947,0.629167,0.57435,0.243002,0.616392,0.683636,0.417995,0.466856,0.882956,0.249178,0.185658,0.345698,0.279047,0.917919,0.716739,0.744036,0.0906547,0.796795,0.47546,0.810111,0.66359,0.661443,0.0456039,0.942994,0.356201,0.446387,0.97778,0.181464,0.232742,0.778195,0.3481,0.187981,0.967198,0.0290139,0.0939031,0.795834,0.777248,0.125718,0.565143,0.25203,0.412799,0.979222,0.906122,0.986063,0.854912,0.7816,0.141761,0.968585,0.0712625,0.83637,0.678966,0.0710928,0.817922,0.585748,0.655659,0.155059,0.360163,0.694673,0.290065,0.737463,0.746796,0.484347,0.0654654,0.253913,0.624799,0.706825,0.0715288,0.484796,0.253758,0.406463,0.0425273,0.458565,0.82386,0.710118,0.312262,0.545772,0.673925,0.622993,0.292996,0.821245,0.0456704,0.312486,0.809078,0.356872,0.0452767,0.92818,0.249427,0.324182,0.448102,0.870181,0.812496,0.0810756,0.00123256,0.602092,0.899971,0.493014,0.79932,0.460355,0.0226428,0.176294,0.290514,0.00664937,0.0598511,0.613407,0.86103,0.584719,0.7716,0.13834,0.838691,0.300107,0.618613,0.438198,0.537418,0.679356,0.386468,0.874055,0.26614,0.594563,0.515454,0.343928,0.630531,0.97053,0.20762,0.60112,0.0648464,0.762772,0.94445,0.666262,0.715919,0.270158,0.491444,0.632525,0.823565,0.466748,0.868379,0.613827,0.489766,0.395492,0.6637,0.464628,0.0592242,0.217651,0.73392,0.741616,0.39058,0.956362,0.512744,0.495158,0.890349,0.462431,0.894028,0.471154,0.640971,0.966278,0.818446,0.77537,0.653696,0.966078,0.575887,0.768829,0.163854,0.692115,0.45182,0.530332,0.0408677,0.953074,0.533666,0.905349,0.599111,0.430243,0.0626733,0.673534,0.893165,0.328424,0.690074,0.811778,0.44066,0.126088,0.578145,0.123018,0.576977,0.951362,0.23527,0.584957,0.438716,0.300457,0.482659,0.0851141,0.972623,0.138657,0.43677,0.112923,0.894977,0.636261,0.0926631,0.561718,0.289547,0.763037,0.952589,0.031654,0.838826,0.475831,0.0814407,0.173028,0.257698,0.843521,0.615603,0.661164,0.0686206,0.0820693,0.792812,0.410169,0.610992,0.583788,0.928565,0.90678,0.445609,0.477112,0.251945,0.922363,0.627747,0.835924,0.0416409,0.200122,0.273219,0.621047,0.0333476,0.692489,0.386253,0.617235,0.0508384,0.039232,0.805593,0.901444,0.288572,0.391159,0.267629,0.722524,0.842974,0.0137653,0.318153,0.575931,0.155123,0.9903,0.241042,0.436494,0.842382,0.961912,0.856891,0.791187,0.426255,0.294525,0.0446298,0.334442,0.872423,0.735398,0.00307024,0.0855039,0.430549,0.360134,0.00831825,0.0074082,0.668432,0.0923458,0.983953,0.736789,0.9527,0.277618,0.833318,0.0989628,0.654554,0.716424,0.137921,0.568019,0.257818,0.357822,0.768672,0.0126669,0.0846677,0.627242,0.703529,0.159581,0.836781,0.0435702,0.140645,0.900983,0.65921,0.863024,0.690934,0.469868,0.618793,0.102444,0.139253,0.772668,0.198173,0.793619,0.278998,0.534971,0.117928,0.242073,0.0200914,0.654793,0.221522,0.105677,0.953237,0.44581,0.298614,0.421442,0.638978,0.0665347,0.698393,0.576421,0.430043,0.637664,0.686467,0.998424,0.459715,0.530888,0.613403,0.574024,0.645354,0.0239008,0.693851,0.413952,0.00134802,0.562622,0.690851,0.0300252,0.485123,0.0734873,0.306106,0.735766,0.884887,0.773689,0.0242463,0.72301,0.675049,0.231816,0.804789,0.218656,0.881189,0.035704,0.422488,0.495078,0.51053,0.97826,0.479437,0.733403,0.299476,0.344837,0.914692,0.968813,0.178834,0.327222,0.890495,0.775171,0.0520833,0.457227,0.116612,0.624894,0.751907,0.0377317,0.732006,0.497402,0.727255,0.31341,0.661553,0.293853,0.614108,0.880102,0.646592,0.42204,0.231505,0.456524,0.835189,0.26847,0.148728,0.746519,0.570433,0.369263,0.103591,0.681454,0.253516,0.580515,0.755688,0.132922,0.881259,0.759204,0.402285,0.0421801,0.729759,0.936984,0.977299,0.340126,0.932215,0.503065,0.450746,0.265942,0.883166,0.951031,0.165462,0.358221,0.0804441,0.970298,0.713156,0.445787,0.0673894,0.607974,0.196989,0.219523,0.633168,0.725987,0.45547,0.368135,0.116979,0.174582,0.345316,0.0517535,0.900845,0.928587,0.142054,0.0106873,0.257886,0.80416,0.191016,0.299693,0.61143,0.818859,0.956084,0.607343,0.83996,0.0695632,0.177779,0.626141,0.669769,0.665552,0.803841,0.13989,0.536961,0.0489126,0.559767,0.494908,0.78875,0.136377,0.471627,0.1631,0.232016,0.445314,0.796357,0.690499,0.653002,0.014505,0.311692,0.514179,0.0574776,0.322921,0.965708,0.284049,0.960426,0.872168,0.732643,0.718065,0.862444,0.896498,0.427602,0.890011,0.485672,0.0871952,0.654603,0.520955,0.421727,0.355226,0.330503,0.996366,0.184081,0.479448,0.695028,0.0818532,0.0486556,0.542982,0.158921,0.254196,0.257098,0.215712,0.36688,0.507161,0.246989,0.589965,0.591591,0.190597,0.215114,0.273703,0.367233,0.983118,0.031084,0.535097,0.693831,0.38642,0.405567,0.979506,0.686351,0.950528,0.0544048,0.456057,0.387045,0.0503979,0.0688276,0.118717,0.717962,0.671634,0.767437,0.479087,0.614068,0.691727,0.354127,0.444014,0.0926696,0.747166,0.108149,0.768536,0.205814,0.373422,0.832158,0.102702,0.530018,0.796143,0.514051,0.360642,0.753067,0.469592,0.0815046,0.648107,0.609285,0.132147,0.79279,0.753275,0.276868,0.629121,0.458205,0.736178,0.729741,0.0825143,0.209862,0.379691,0.207311,0.896762,0.531671,0.056944,0.0667977,0.286048,0.667487,0.859624,0.524803,0.496812,0.596696,0.533064,0.70767,0.112364,0.558345,0.592698,0.344253,0.502058,0.576558,0.522707,0.918344,0.0390989,0.344485,0.681549,0.661176,0.928951,0.389728,0.393986,0.635608,0.383168,0.243172,0.489673,0.776612,0.605939,0.943651,0.84165,0.185985,0.839356,0.0802193,0.231975,0.301068,0.560619,0.222021,0.438388,0.996518,0.414491,0.272077,0.71676,0.168664,0.359375,0.0893819,0.455628,0.17484,0.284416,0.150137,0.0341055,0.0890353,0.958974,0.239532,0.141792,0.445928,0.960339,0.332705,0.904681,0.318255,0.229109,0.254885,0.100042,0.152193,0.353176,0.329511,0.461342,0.497971,0.54232,0.244437,0.0507358,0.406262,0.170603,0.622177,0.284198,0.850393,0.187101,0.690412,0.640902,0.706986,0.564324,0.680443,0.860536,0.504834,0.231583,0.660135,0.835022,0.241758,0.268638,0.669453,0.122675,0.396981,0.620307,0.244203,0.105942,0.124608,0.333583,0.358405,0.477176,0.684415,0.986816,0.38988,0.37644,0.585759,0.825237,0.279134,0.661589,0.123245,0.602958,0.0316276,0.556928,0.043702,0.95819,0.47145,0.416301,0.267054,0.892795,0.305727,0.0540962,0.82016,0.0302569,0.539409,0.146381,0.68469,0.791705,0.78681,0.717266,0.458634,0.272246,0.149052,0.775994,0.198742,0.0154367,0.581987,0.143227,0.790124,0.204119,0.260301,0.786591,0.510991,0.61035,0.195175,0.466181,0.761109,0.621442,0.699088,0.616299,0.66716,0.886347,0.0817986,0.210067,0.470558,0.744533,0.993901,0.20819,0.616102,0.342472,0.936999,0.840517,0.936962,0.668292,0.271288,0.962154,0.0487303,0.711639,0.807634,0.930179,0.500324,0.401023,0.519627,0.140613,0.200952,0.778835,0.156339,0.115751,0.0895568,0.9249,0.78897,0.788246,0.0874884,0.541783,0.567143,0.425685,0.535826,0.921991,0.569988,0.297366,0.516866,0.98043,0.137498,0.513614,0.149623,0.864724,0.0178667,0.125619,0.180878,0.141696,0.0935917,0.980769,0.910724,0.316945,0.756442,0.852,0.848698,0.91939,0.937416,0.968766,0.615694,0.430946,0.688482,0.651605,0.769381,|0.0674554,0.622808,0.682574,0.766787,0.312119,0.833455,0.0592264,0.260532,0.455319,0.742634,0.59336,0.0261841,0.437822,0.562614,0.837952,0.185248,0.6425,0.50481,0.122515,0.840142,0.0438064,0.160578,0.0147114,0.598334,0.0280076,0.51056,0.310542,0.960744,0.574568,0.190375,0.634041,0.157366,0.457434,0.814279,0.659169,0.900352,0.221133,0.0147332,0.675182,0.338403,0.5217,0.166196,0.109834,0.751094,0.158315,0.167082,0.59787,0.275358,0.706486,0.592041,0.95396,0.582739,0.46897,0.283974,0.0592223,0.0307927,0.627581,0.51257,0.641408,0.101827,0.812294,0.34933,0.160163,0.666042,0.662949,0.938412,0.680739,0.476688,0.948826,0.667222,0.199545,0.488267,0.629883,0.663129,0.678042,0.183609,0.604459,0.176264,0.0114043,0.57937,0.674456,0.0387412,0.469431,0.333943,0.704269,0.231643,0.818193,0.16635,0.216331,0.866158,0.183559,0.650404,0.350372,0.390836,0.958025,0.0285947,0.047401,0.978708,0.81592,0.39797,0.773043,0.272021,0.832485,0.0413704,0.0579498,0.495773,0.542186,0.950052,0.979986,0.555153,0.504158,0.53751,0.639054,0.773411,0.297055,0.0298563,0.496149,0.334205,0.938434,0.313854,0.800581,0.927182,0.458979,0.880671,0.86629,0.637175,0.713578,0.555093,0.805776,0.935718,0.276427,0.593903,0.590574,0.452975,0.157021,0.407133,0.841444,0.140812,0.652359,0.535508,0.628291,0.567467,0.0214074,0.618921,0.20015,0.158028,0.724784,0.731608,0.271761,0.240354,0.556604,0.893499,0.788159,0.835564,0.35741,0.165943,0.476195,0.601925,0.317493,0.340348,0.0177227,0.0711882,0.903754,0.249521,0.501086,0.115745,0.0573425,0.118389,0.194028,0.0948787,0.51787,0.574372,0.81467,0.103274,0.672822,0.697223,0.898022,0.379624,0.366542,0.199302,0.576436,0.744162,0.869383,0.348617,0.451876,0.667461,0.00247669,0.397917,0.942787,0.976417,0.0850109,0.381849,0.955745,0.774571,0.967512,0.48341,0.514121,0.271595,0.419194,0.548665,0.261819,0.5027,0.640952,0.989886,0.255546,0.233911,0.624531,0.192923,0.978882,0.0884674,0.266359,0.443611,0.732569,0.417096,0.550688,0.96898,0.803944,0.39108,0.0882971,0.579965,0.640113,0.00677276,0.126061,0.981028,0.743715,0.394585,0.539835,0.51438,0.332422,0.841981,0.428337,0.896329,0.746482,0.965668,0.38503,0.948131,0.615401,0.148064,0.42763,0.897917,0.312319,0.938252,0.910431,0.318856,0.828055,0.380227,0.440003,0.922481,0.94173,0.45732,0.556886,0.747345,0.642016,0.813962,0.95006,0.221229,0.76231,0.48228,0.834511,0.652714,0.717453,0.916216,0.471486,0.537152,0.650356,0.269492,0.377198,0.0823536,0.808079,0.704091,0.556065,0.328532,0.185374,0.875299,0.485393,0.972809,0.793479,0.715341,0.205428,0.815724,0.296208,0.333837,0.279774,0.975318,0.166776,0.85475,0.638669,0.520342,0.577459,0.322597,0.506907,0.508792,0.0951903,0.998556,0.931826,0.14946,0.212711,0.707239,0.0174717,0.155394,0.290575,0.87923,0.577892,0.395577,0.183356,0.649254,0.514875,0.332673,0.575248,0.141958,0.676725,0.636845,0.853651,0.0772018,0.430119,0.812579,0.844266,0.0120516,0.633213,0.82318,0.618009,0.745008,0.598607,0.192501,0.49381,0.21331,0.610919,0.00424153,0.943787,0.937799,0.91994,0.983233,0.183001,0.420755,0.319018,0.840573,0.767253,0.897388,0.995758,0.310471,0.641626,0.889685,0.514066,0.652051,0.579285,0.859703,0.0156761,0.0388125,0.846728,0.383831,0.608612,0.0843534,0.417492,0.539859,0.0301151,0.564383,0.100165,0.642723,0.841384,0.619097,0.00374085,0.544426,0.812529,0.584603,0.81069,0.902545,0.00375897,0.75901,0.294979,0.445553,0.344634,0.774094,0.892708,0.683454,0.485859,0.771241,0.182166,0.518523,0.146663,0.63462,0.266836,0.401967,0.806352,0.640045,0.425259,0.0917304,0.569181,0.243722,0.395456,0.643775,0.756745,0.820797,0.698557,0.87188,0.975684,0.152328,0.659724,0.511608,0.750202,0.0494223,0.921271,0.193174,0.0386497,0.825999,0.660296,0.0395679,0.328092,0.933047,0.239686,0.764922,0.439435,0.427482,0.413557,0.864626,0.25303,0.741594,0.0265285,0.947491,0.00412446,0.295757,0.395808,0.434451,0.521459,0.196239,0.39467,0.933494,0.0887285,0.315411,0.481266,0.420832,0.904189,0.699749,0.438416,0.464607,0.379601,0.392164,0.30332,0.0672506,0.263089,0.966213,0.137254,0.559501,0.575228,0.583815,0.913453,0.869153,0.487035,0.658701,0.402893,0.48948,0.250221,0.131758,0.0756485,0.813155,0.563626,0.395365,0.88548,0.188872,0.961151,0.455056,0.840901,0.936274,0.186938,0.895802,0.300123,0.662191,0.931073,0.0442873,0.486494,0.0856652,0.717844,0.863739,0.582447,0.350306,0.677542,0.442407,0.931195,0.937375,0.98573,0.0834165,0.372004,0.909208,0.181517,0.865357,0.947557,0.458114,0.150131,0.640093,0.801713,0.900135,0.116791,0.747181,0.160864,0.495524,0.496458,0.526224,0.874575,0.568047,0.610473,0.261185,0.774619,0.041803,0.0683404,0.666732,0.529712,0.869217,0.0100992,0.472295,0.0515682,0.0463108,0.597628,0.885362,0.19291,0.8708,0.887176,0.522977,0.544627,0.119254,0.186754,0.925978,0.774883,0.784093,0.586172,0.527364,0.431507,0.985632,0.374053,0.636652,0.51725,0.840163,0.547356,0.348214,0.388344,0.266912,0.116519,0.326214,0.18076,0.257707,0.584923,0.0416507,0.387003,0.66205,0.0704982,0.0778935,0.0397091,0.866318,0.821115,0.840182,0.0632078,0.837308,0.796135,0.616796,0.113392,0.783345,0.279203,0.540597,0.748011,0.748935,0.646242,0.722234,0.962228,0.914664,0.0255243,0.526242,0.0405614,0.445104,0.61203,0.812517,0.412549,0.86898,0.140788,0.163368,0.754873,0.604928,0.787508,0.289854,0.0818282,0.189808,0.428586,0.660552,0.448961,0.890499,0.556009,0.742602,0.461542,0.456317,0.105464,0.587441,0.46692,0.752585,0.792772,0.811858,0.00420445,0.854093,0.0613613,0.281327,0.853962,0.873696,0.783352,0.412109,0.440411,0.994576,0.836916,0.864135,0.565803,0.947026,0.981796,0.597788,0.662516,0.137724,0.760668,0.716034,0.298467,0.610531,0.348749,0.0871709,0.991706,0.607492,0.701544,0.484572,0.179699,0.237321,0.26282,0.745718,0.0640967,0.12217,0.444571,0.879373,0.207436,0.245732,0.201585,0.457848,0.41373,0.440775,0.803335,0.489254,0.311852,0.453119,0.0520071,0.0210184,0.635467,0.222222,0.814334,0.302742,0.816441,0.189872,0.980182,0.661204,0.839786,0.351264,0.508376,0.259242,0.415309,0.468723,0.436697,0.33196,0.259933,0.906047,0.432514,0.193949,0.0248832,0.343891,0.466679,0.729551,0.866724,0.200745,0.045662,0.879771,0.70705,0.749206,0.767047,0.666972,0.180343,0.73389,0.142668,0.579863,0.0864717,0.141403,0.616911,0.969416,0.0645861,0.214795,0.372431,0.835668,0.706562,0.851905,0.0481055,0.46104,0.690781,0.859395,0.650456,0.194903,0.502733,0.244195,0.381334,0.556048,0.613824,0.50097,0.833998,0.480153,0.409535,0.0826795,0.360088,0.591865,0.972515,0.452064,0.577978,0.203955,0.00111622,0.0314919,0.60801,0.908602,0.650444,0.171744,0.601854,0.295202,0.0413385,0.884061,0.408439,0.996016,0.660058,0.700463,0.669633,0.383162,0.0354187,0.14042,0.196994,0.719294,0.782703,0.0609782,0.915604,0.788337,0.266393,0.888563,0.408624,0.186004,0.0974208,0.644824,0.285994,0.814321,0.761675,0.669558,0.634619,0.590927,0.0756625,0.371082,0.621877,0.00929576,0.994636,0.906974,0.834833,0.115355,0.558669,0.411457,0.46079,0.836931,0.302284,0.573152,0.528366,0.0247706,0.840751,0.83854,0.389489,0.290135,0.973679,0.634605,0.505601,0.271928,0.85143,0.736839,0.301436,0.603429,0.278539,0.650472,0.909937,0.190427,0.639779,0.806133,0.111495,0.692575,0.2997,0.531118,0.727479,0.923873,0.638535,0.857442,0.330392,0.631842,0.00271654,0.861242,0.186615,0.968752,0.68553,0.928434,0.052611,0.140087,0.223364,0.321581,0.0925884,0.957336,0.421045,0.299411,0.817456,0.822328,0.557369,0.218046,0.490449,0.792214,0.510418,0.134189,0.361313,0.000380814,0.807082,0.40557,0.250783,0.613011,0.306961,0.612243,0.920284,0.794906,0.667023,0.677511,0.0111587,0.17864,0.908431,0.658768,0.952293,0.424142,0.0524555,0.469896,0.535568,0.530738,0.349291,0.825321,0.46255,0.323722,0.895061,0.363114,0.357017,0.251397,0.871318,0.199509,0.231987,0.283628,0.0469353,0.592868,0.626743,0.427541,0.446008,0.957224,0.298511,0.625074,0.918591,0.923001,0.942712,0.375759,0.179674,0.7296,0.628373,0.00823283,0.186712,0.0812827,0.516493,0.341724,0.837992,0.918342,0.241001,0.408406,0.493787,0.199086,0.69089,0.011018,0.596102,0.422594,0.74123,0.880407,0.130832,0.275571,0.561374,0.109243,0.263649,0.414799,0.0250902,0.553104,0.861829,0.307119,0.984395,0.34066,0.933237,0.791559,0.598385,0.0638734,0.545835,0.286551,0.39212,0.132561,0.692562,0.696407,0.894227,0.83827,0.815841,0.86027,0.687543,0.0118392,0.879633,0.634268,0.816056,0.863922,0.180628,0.178393,0.395414,0.56904,0.512334,0.326109,0.233169,0.268446,0.234428,0.549914,0.0553952,0.697216,0.350345,0.152441,0.369201,0.558719,0.256184,0.209011,0.319568,0.737531,0.0340596,0.274982,0.72521,0.225566,0.422926,0.98672,0.198086,0.165335,0.866956,0.0518641,0.105889,0.229516,0.578467,0.00322896,0.50357,0.324148,0.592293,0.461067,0.586428,0.74574,0.629549,0.485497,0.487104,0.147738,0.0210758,0.0638345,0.867767,0.0374904,0.0230073,0.187659,0.0569575,0.453075,0.77378,0.0603806,0.767542,0.928056,0.596976,0.938562,0.945086,0.889061,0.543747,0.045367,0.535231,0.0694039,0.286063,0.856497,0.489732,0.84713,0.432785,0.796688,0.814308,0.890949,0.487007,0.226332,0.945903,0.333922,0.659287,0.279753,0.793693,0.838207,0.788903,0.31445,0.664956,0.216993,0.556449,0.658264,0.374768,0.769314,0.843541,0.671478,0.102354,0.256189,|0.749938,0.100405,0.761935,0.271868,0.775615,0.0771344,0.879478,0.248524,0.727826,0.0442688,0.262433,0.170631,0.262439,0.929993,0.567763,0.163233,0.815832,0.684275,0.366804,0.905082,0.183151,0.0397425,0.223389,0.272062,0.70977,0.640392,0.499835,0.723321,0.176593,0.70408,0.998116,0.81645,0.74407,0.131992,0.698718,0.731658,0.907812,0.0860605,0.185933,0.182128,0.52536,0.119519,0.45015,0.821261,0.825397,0.484694,0.990409,0.651497,0.936231,0.708909,0.387183,0.279038,0.617852,0.450439,0.947361,0.742789,0.105544,0.227279,0.531979,0.949958,0.468498,0.682547,0.874933,0.340331,0.981961,0.214236,0.834804,0.135058,0.457211,0.22985,0.50731,0.0224587,0.189729,0.936606,0.597049,0.27971,0.384666,0.0295959,0.966776,0.0541568,0.836878,0.777478,0.829401,0.96531,0.199092,0.300237,0.528232,0.292028,0.7442,0.987475,0.282846,0.770316,0.306797,0.215676,0.910883,0.167117,0.630781,0.925784,0.234579,0.546105,0.879375,0.492123,0.233691,0.0572304,0.715086,0.61676,0.919535,0.981926,0.696115,0.928833,0.516621,0.0755941,0.99237,0.284951,0.689961,0.822755,0.704905,0.0838524,0.352861,0.567608,0.253252,0.537849,0.285968,0.364493,0.84925,0.501175,0.319657,0.0581585,0.456271,0.013467,0.860213,0.922885,0.844293,0.3289,0.692248,0.400126,0.192709,0.196324,0.102051,0.856428,0.0307912,0.483457,0.772296,0.787885,0.714147,0.4995,0.887629,0.797291,0.864569,0.882571,0.191537,0.310751,0.432142,0.861044,0.122791,0.710337,0.35742,0.191644,0.829956,0.686305,0.894042,0.0619813,0.835604,0.140544,0.254973,0.221833,0.783673,0.180362,0.27164,0.518939,0.403105,0.677014,0.779171,0.366312,0.922415,0.739828,0.135652,0.171206,0.421515,0.776916,0.206363,0.890576,0.622538,0.0469639,0.591471,0.453663,0.518283,0.453042,0.60557,0.66468,0.702497,0.716664,0.617272,0.314405,0.767537,0.862679,0.740873,0.816888,0.982722,0.730318,0.854417,0.851062,0.292587,0.942642,0.389472,0.845158,0.0536187,0.656498,0.939485,0.534485,0.0300496,0.484944,0.845674,0.465752,0.26249,0.249168,0.982218,0.0184256,0.453887,0.404183,0.927089,0.0324406,0.667748,0.991355,0.650699,0.489486,0.40129,0.676555,0.291898,0.91065,0.618702,0.391763,0.0229674,0.680774,0.327827,0.0180811,0.123557,0.316483,0.276058,0.946401,0.899383,0.412687,0.900817,0.996742,0.302397,0.123221,0.988103,0.733818,0.641434,0.125919,0.690242,0.562893,0.222268,0.0630856,0.494091,0.834497,0.771266,0.942314,0.503143,0.399637,0.108013,0.158307,0.866898,0.225222,0.069734,0.00204271,0.769211,0.88092,0.676026,0.679637,0.0534327,0.256916,0.511615,0.962694,0.424345,0.893772,0.315698,0.0405432,0.74547,0.698207,0.966856,0.625747,0.782492,0.179613,0.248953,0.462044,0.601871,0.422196,0.195198,0.583054,0.190273,0.853425,0.597041,0.861919,0.859688,0.920429,0.651455,0.504202,0.411789,0.0569062,0.0944878,0.726559,0.878829,0.996464,0.976091,0.179529,0.671199,0.330263,0.00380349,0.821403,0.0116912,0.96173,0.637431,0.217325,0.18199,0.24963,0.760883,0.557403,0.448725,0.0140998,0.507279,0.350094,0.537557,0.977785,0.19388,0.68125,0.793221,0.305457,0.518688,0.71897,0.631388,0.956337,0.0233676,0.519514,0.267153,0.930162,0.762745,0.870778,0.1987,0.4034,0.508622,0.33989,0.964463,0.459577,0.325951,0.60097,0.250453,0.120212,0.991538,0.463452,0.611736,0.101595,0.780636,0.0183746,0.255219,0.602431,0.535885,0.712734,0.36061,0.306745,0.905029,0.818143,0.992285,0.213446,0.0785421,0.252467,0.880289,0.26498,0.602057,0.169439,0.477708,0.372588,0.373107,0.160558,0.863249,0.0283284,0.830847,0.768688,0.34771,0.621474,0.783209,0.34324,0.72766,0.281706,0.620263,0.28918,0.540668,0.86441,0.129723,0.233544,0.913973,0.638945,0.389587,0.61859,0.292443,0.40077,0.387603,0.965144,0.496188,0.324069,0.428681,0.23582,0.19348,0.324558,0.551293,0.0207655,0.424729,0.318519,0.0353904,0.25151,0.44257,0.16407,0.720789,0.326215,0.90381,0.862812,0.299611,0.324862,0.951709,0.645525,0.676539,0.0405542,0.595662,0.252738,0.590606,0.0108364,0.615458,0.0607141,0.814513,0.313244,0.0388997,0.647781,0.188746,0.796117,0.428212,0.630761,0.859464,0.714594,0.404459,0.799965,0.736106,0.700129,0.116835,0.273993,0.473566,0.508411,0.676958,0.447308,0.366078,0.775126,0.150133,0.275131,0.981735,0.851363,0.608516,0.623059,0.684674,0.806027,0.343207,0.859004,0.736583,0.170924,0.332717,0.0275491,0.194167,0.110854,0.523743,0.336146,0.699054,0.833993,0.24549,0.444194,0.552752,0.560256,0.661638,0.608195,0.789563,0.00707328,0.355464,0.68487,0.982875,0.00232321,0.636161,0.755861,0.111126,0.345011,0.36763,0.943732,0.0324305,0.468606,0.610547,0.0994332,0.694991,0.187133,0.0472596,0.280612,0.323706,0.913318,0.0694525,0.898463,0.878518,0.213311,0.969824,0.766855,0.313104,0.950947,0.365589,0.99812,0.424685,0.948289,0.603668,0.258486,0.975831,0.715614,0.65233,0.385041,0.24996,0.488286,0.853861,0.128378,0.435372,0.647901,0.426633,0.458476,0.772311,0.69316,0.0286038,0.671488,0.779605,0.7464,0.570753,0.537332,0.955457,0.0763577,0.490422,0.206729,0.364005,0.0571733,0.285008,0.894956,0.292948,0.218345,0.183276,0.18256,0.814851,0.00438529,0.482742,0.804712,0.35241,0.715688,0.774867,0.543264,0.619869,0.607476,0.373996,0.300935,0.38768,0.83399,0.519019,0.164695,0.592319,0.838508,0.793055,0.163782,0.278031,0.618411,0.799562,0.78531,0.479125,0.755708,0.67304,0.56749,0.6168,0.985271,0.969792,0.654501,0.419107,0.781567,0.172293,0.788838,0.40857,0.579724,0.230137,0.198884,0.767476,0.856165,0.856875,0.168081,0.72748,0.515066,0.0899238,0.0696411,0.342518,0.381536,0.282814,0.746346,0.470755,0.936502,0.815461,0.528544,0.699758,0.930021,0.414261,0.0705054,0.671373,0.65835,0.657621,0.261618,0.0739799,0.465092,0.426555,0.516224,0.59326,0.652177,0.874885,0.898476,0.37344,0.924321,0.244838,0.537926,0.165459,0.163713,0.778503,0.238659,0.290959,0.51615,0.548465,0.893184,0.569803,0.816918,0.667977,0.436907,0.750891,0.4315,0.150782,0.0139757,0.181391,0.0732605,0.100559,0.961587,0.921537,0.039957,0.144949,0.705365,0.657571,0.809269,0.723832,0.803359,0.731503,0.315123,0.34329,0.249667,0.401885,0.261549,0.974956,0.153729,0.37669,0.762783,0.151925,0.316337,0.685265,0.456171,0.0861444,0.841926,0.267507,0.843861,0.837208,0.90579,0.223985,0.77943,0.666819,0.588979,0.717162,0.278935,0.783698,0.188477,0.278296,0.0735495,0.441905,0.44141,0.192532,0.668051,0.780265,0.977798,0.554314,0.289208,0.40196,0.908038,0.469886,0.933428,0.796814,0.426092,0.665473,0.498226,0.521029,0.940695,0.572742,0.491825,0.133145,0.776774,0.0586842,0.384026,0.356459,0.327893,0.286637,0.167681,0.0676528,0.967897,0.366775,0.645803,0.816567,0.402791,0.355419,0.115429,0.543317,0.791841,0.421625,0.390501,0.61039,0.843972,0.792569,0.0201929,0.209224,0.935997,0.751604,0.559171,0.812404,0.487808,0.61315,0.198217,0.911892,0.261654,0.713153,0.977277,0.154265,0.265406,0.201391,0.0662274,0.443489,0.658529,0.528392,0.462162,0.286128,0.289317,0.0613784,0.827341,0.994772,0.416728,0.77121,0.66264,0.328701,0.576514,0.387262,0.323082,0.275604,0.555654,0.0755336,0.211445,0.540658,0.683825,0.805578,0.595859,0.254702,0.116813,0.242055,0.645788,0.975168,0.289244,0.878965,0.144077,0.896148,0.6512,0.450174,0.377276,0.87149,0.611097,0.753377,0.49157,0.858246,0.380525,0.453932,0.433588,0.363714,0.854797,0.841901,0.951284,0.935586,0.656926,0.833982,0.352457,0.185174,0.376491,0.0143487,0.768374,0.738041,0.188494,0.34133,0.495195,0.119563,0.757594,0.815869,0.707484,0.388636,0.194331,0.64218,0.332837,0.0210624,0.629917,0.23157,0.170907,0.664901,0.0797205,0.688975,0.28924,0.697758,0.904015,0.690548,0.717405,0.729106,0.172571,0.142956,0.957416,0.4109,0.817966,0.522528,0.025769,0.848899,0.235931,0.30868,0.506167,0.938316,0.462303,0.537087,0.57455,0.882202,0.664271,0.242338,0.31923,0.607419,0.283928,0.442027,0.460912,0.335047,0.639874,0.962585,0.579498,0.591368,0.702306,0.895569,0.638902,0.884824,0.0901769,0.663411,0.160578,0.429742,0.614044,0.251135,0.176383,0.573678,0.763817,0.104456,0.32554,0.863957,0.840294,0.241786,0.863735,0.808573,0.320271,0.419033,0.410678,0.0290418,0.251501,0.686559,0.4222,0.192885,0.971221,0.97497,0.138571,0.761139,0.386418,0.238428,0.607738,0.489928,0.23409,0.514799,0.569396,0.779488,0.454559,0.617718,0.213561,0.242215,0.293815,0.342293,0.242528,0.0664659,0.113149,0.0426256,0.751995,0.0499776,0.593808,0.87689,0.460646,0.917073,0.0540033,0.991399,0.692883,0.377202,0.916112,0.527432,0.580365,0.924436,0.753976,0.714853,0.104269,0.551191,0.341299,0.51448,0.366956,0.740036,0.335343,0.815627,0.250211,0.894256,0.735225,0.708896,0.286605,0.0875652,0.577598,0.12882,0.0766009,0.69811,0.897981,0.710938,0.764831,0.459897,0.872339,0.0930275,0.609719,0.429256,0.947951,0.425294,0.596399,0.345424,0.102636,0.20939,0.281315,0.959497,0.645063,0.939232,0.118143,0.876743,0.802267,0.777222,0.990788,0.0310898,0.429799,0.632896,0.613358,0.664601,0.514461,0.332704,0.23832,0.669335,0.523605,0.127159,0.0809688,0.0668861,0.138685,0.672966,0.973963,0.472925,0.15352,0.0802917,0.19365,0.750526,0.644961,0.460484,0.601141,0.124297,0.872525,0.9909,0.239604,0.443062,0.216454,0.184957,0.13496,0.813017,0.572184,0.235043,0.511717,0.967492,0.314874,0.87072,0.387297,0.348845,0.302983,0.00341374,0.63137,0.534035,0.922938,|0.67527,0.108559,0.328774,0.291366,0.253928,0.372194,0.810619,0.687768,0.064913,0.0515527,0.791603,0.890362,0.0750052,0.680984,0.743832,0.494797,0.938247,0.062994,0.727906,0.584032,0.644442,0.384624,0.856443,0.283417,0.233882,0.895637,0.713712,0.540207,0.907428,0.0473313,0.514491,0.736709,0.38669,0.703479,0.739803,0.0304757,0.59592,0.691449,0.284899,0.446603,0.0336038,0.650737,0.276951,0.963114,0.144507,0.932535,0.0901515,0.981982,0.456494,0.419108,0.387236,0.36455,0.834672,0.130267,0.733608,0.91935,0.222923,0.317279,0.923775,0.333825,0.226364,0.738573,0.899115,0.601119,0.99422,0.692438,0.315279,0.678598,0.239757,0.615112,0.608695,0.134408,0.241563,0.0866383,0.481956,0.714962,0.270503,0.311308,0.706113,0.37781,0.101765,0.582054,0.201371,0.777492,0.367722,0.282926,0.195883,0.535954,0.245287,0.770958,0.32174,0.230363,0.288959,0.365335,0.983486,0.461381,0.931893,0.0632207,0.887219,0.815349,0.739177,0.33167,0.944477,0.89233,0.335464,0.399041,0.182973,0.592027,0.0981779,0.217449,0.36107,0.465639,0.818133,0.0143143,0.597384,0.769271,0.620183,0.825967,0.952572,0.35441,0.524512,0.886866,0.867231,0.569072,0.27037,0.162429,0.733798,0.950507,0.493914,0.178539,0.462384,0.358842,0.272901,0.4499,0.187431,0.552526,0.618575,0.922211,0.284633,0.280559,0.237517,0.261353,0.819775,0.738835,0.321552,0.672745,0.274882,0.210869,0.119102,0.997964,0.493691,0.726676,0.24225,0.150122,0.397891,0.283167,0.196614,0.93174,0.481783,0.879662,0.597171,0.222587,0.697563,0.0509255,0.794883,0.379645,0.12077,0.733141,0.760625,0.179808,0.697879,0.818521,0.449578,0.349782,0.541653,0.13486,0.834387,0.871508,0.834913,0.198309,0.775729,0.803143,0.483148,0.150843,0.112013,0.650949,0.164766,0.687849,0.39474,0.128655,0.439112,0.427686,0.663547,0.551163,0.404117,0.815453,0.844984,0.341671,0.655366,0.832752,0.252558,0.236661,0.902217,0.375552,0.975747,0.424635,0.0131639,0.880734,0.758497,0.797649,0.0968382,0.880305,0.0899298,0.463658,0.264048,0.0254453,0.11239,0.380674,0.977806,0.607568,0.828378,0.640811,0.356213,0.0730975,0.0232484,0.279194,0.640199,0.0796605,0.168315,0.206158,0.268805,0.579831,0.919989,0.408607,0.377479,0.708114,0.0809915,0.448129,0.595397,0.244019,0.498416,0.855675,0.0594766,0.120156,0.908208,0.584745,0.00773203,0.283408,0.321606,0.298296,0.0561401,0.367741,0.216294,0.500757,0.843562,0.599866,0.867493,0.0925069,0.0518851,0.915122,0.710872,0.452088,0.134383,0.0425465,0.851935,0.843057,0.218663,0.8124,0.0428373,0.393334,0.499251,0.295484,0.950815,0.0170422,0.0796878,0.820671,0.867092,0.2842,0.799257,0.950979,0.51892,0.663851,0.264734,0.753496,0.516848,0.648363,0.600884,0.764804,0.151896,0.301057,0.0101991,0.469119,0.0805487,0.713397,0.167422,0.370593,0.763051,0.167605,0.255901,0.947819,0.722437,0.500411,0.000496328,0.163878,0.480803,0.701537,0.198142,0.613675,0.45496,0.899606,0.807676,0.5425,0.237434,0.828859,0.714807,0.510878,0.0075509,0.540243,0.102914,0.262722,0.923113,0.948015,0.070457,0.783339,0.418682,0.44972,0.553007,0.440626,0.991751,0.279134,0.0833018,0.148221,0.484019,0.0358895,0.297622,0.863105,0.693754,0.227514,0.486647,0.839532,0.920184,0.196807,0.17917,0.6015,0.854861,0.602054,0.958049,0.654649,0.712234,0.954669,0.340207,0.570689,0.395968,0.0260162,0.420349,0.656041,0.618067,0.43486,0.309299,0.880903,0.767695,0.928677,0.752185,0.838289,0.227158,0.0394993,0.519648,0.32089,0.541584,0.815972,0.734171,0.751939,0.849399,0.81075,0.406948,0.709762,0.746034,0.410557,0.165561,0.427044,0.259479,0.9714,0.0405186,0.387314,0.263658,0.758179,0.555643,0.306565,0.16051,0.766143,0.0189561,0.443841,0.0845613,0.779011,0.214535,0.586989,0.0182075,0.379619,0.144971,0.170967,0.482514,0.345783,0.160135,0.633553,0.181753,0.218353,0.926768,0.636803,0.598917,0.809267,0.342892,0.981414,0.609586,0.137384,0.158136,0.10758,0.97412,0.110002,0.12695,0.601203,0.0795598,0.198402,0.711639,0.748492,0.91695,0.0105392,0.355606,0.962771,0.209785,0.285038,0.189079,0.193702,0.649206,0.0753343,0.485568,0.586654,0.91028,0.860288,0.344858,0.0187988,0.556939,0.843465,0.410614,0.999333,0.468369,0.807413,0.738421,0.62857,0.177384,0.460872,0.864516,0.636402,0.938798,0.996232,0.405901,0.872634,0.25067,0.706604,0.0359972,0.609796,0.379672,0.0127623,0.852655,0.923203,0.752003,0.575,0.527142,0.00772053,0.620225,0.722539,6.41942e-05,0.588001,0.910393,0.502372,0.462247,0.0833388,0.235889,0.655383,0.822583,0.16544,0.379484,0.518074,0.171789,0.822385,0.537911,0.394214,0.914268,0.119424,0.607933,0.560918,0.28611,0.575352,0.529869,0.934639,0.305351,0.810865,0.207047,0.959131,0.0209463,0.683802,0.239266,0.919382,0.433003,0.998734,0.312895,0.252434,0.354656,0.515655,0.575439,0.0243188,0.0953039,0.941974,0.524295,0.350016,0.759705,0.124421,0.38234,0.238924,0.0849225,0.939507,0.901993,0.270709,0.78103,0.581274,0.859428,0.361378,0.562671,0.0509696,0.0838742,0.425348,0.91277,0.830379,0.487998,0.746297,0.0959761,0.612461,0.414483,0.802854,0.978583,0.0360186,0.828314,0.560755,0.269253,0.406707,0.934765,0.995365,0.948186,0.339812,0.110539,0.666186,0.940472,0.133195,0.691817,0.583667,0.982388,0.640901,0.22247,0.365118,0.0099169,0.717876,0.151773,0.606671,0.238881,0.594759,0.00487584,0.612497,0.843662,0.0445231,0.268941,0.400406,0.883435,0.47137,0.859762,0.120089,0.327639,0.959215,0.897079,0.463603,0.868137,0.373579,0.921863,0.922189,0.412433,0.203773,0.522443,0.770186,0.851941,0.78602,0.482411,0.693569,0.894267,0.299002,0.695541,0.316915,0.612003,0.79491,0.0168814,0.23217,0.352574,0.951078,0.541928,0.500317,0.388845,0.614876,0.890675,0.829025,0.609508,0.850694,0.0545571,0.904276,0.0900846,0.952883,0.0700981,0.326306,0.968895,0.727755,0.208864,0.50967,0.48039,0.0326935,0.0135152,0.512669,0.444557,0.349972,0.751418,0.0049293,0.839317,0.988944,0.873034,0.872679,0.956953,0.865651,0.593145,0.631488,0.998166,0.920019,0.521218,0.385278,0.518381,0.615223,0.633319,0.122526,0.903395,0.0808963,0.677253,0.646327,0.174649,0.0718439,0.933253,0.394558,0.671608,0.702639,0.632818,0.37395,0.742088,0.277721,0.0948457,0.39999,0.8832,0.832421,0.587651,0.482735,0.162693,0.885396,0.149421,0.172261,0.292236,0.268664,0.933581,0.0166214,0.448551,0.179929,0.742572,0.352258,0.0083794,0.0292235,0.828704,0.0808425,0.710437,0.0556238,0.246497,0.585379,0.380334,0.30316,0.816752,0.0431107,0.533233,0.0835353,0.584049,0.567909,0.374471,0.592832,0.448193,0.562034,0.283707,0.628035,0.881822,0.356371,0.264592,0.738462,0.306657,0.973644,0.218817,0.967251,0.917947,0.370222,0.176602,0.11327,0.646501,0.913378,0.51572,0.057777,0.412509,0.503867,0.94196,0.895776,0.0628564,0.411801,0.970478,0.343348,0.17829,0.390915,0.120837,0.976951,0.274233,0.71234,0.0335816,0.84419,0.876461,0.928293,0.463056,0.987984,0.885697,0.885925,0.712313,0.893812,0.420657,0.59171,0.922113,0.0926712,0.0953028,0.0124267,0.497553,0.274668,0.292344,0.465578,0.503422,0.239634,0.310998,0.114177,0.150758,0.326419,0.632689,0.208679,0.403073,0.0641978,0.820899,0.673846,0.355112,0.625881,0.982817,0.402152,0.515437,0.920148,0.979408,0.269941,0.595136,0.377991,0.527039,0.103223,0.89019,0.355197,0.311595,0.567937,0.767544,0.32925,0.199112,0.80942,0.958862,0.473823,0.766725,0.271375,0.273939,0.910149,0.809614,0.904197,0.900134,0.790127,0.374438,0.468543,0.620296,0.0730549,0.536296,0.19423,0.47915,0.78149,0.0910944,0.502398,0.607828,0.100695,0.091031,0.652315,0.896367,0.75269,0.118368,0.913736,0.598043,0.934016,0.310822,0.0663117,0.997693,0.360971,0.955182,0.605201,0.894234,0.454818,0.896252,0.975108,0.430578,0.379242,0.745957,0.997328,0.421949,0.723969,0.856866,0.786155,0.0145528,0.900858,0.165066,0.216145,0.0348507,0.701384,0.96372,0.00498635,0.371885,0.810003,0.841005,0.939791,0.904571,0.171756,0.99493,0.280866,0.865217,0.408237,0.674562,0.567071,0.0747106,0.852219,0.832974,0.933613,0.926846,0.515023,0.388175,0.621753,0.0942622,0.924215,0.931678,0.445621,0.282967,0.212823,0.732823,0.501653,0.998481,0.475619,0.27998,0.0735744,0.16493,0.181608,0.671176,0.0773066,0.428093,0.824816,0.273646,0.553909,0.776641,0.529457,0.240599,0.0137374,0.82542,0.213218,0.904263,0.64985,0.487215,0.0634219,0.895996,0.0135713,0.320288,0.0820851,0.441844,0.812578,0.156915,0.231868,0.00627387,0.633087,0.799963,0.96613,0.212031,0.05526,0.22237,0.340878,0.190609,0.288205,0.829884,0.978526,0.692861,0.345425,0.624652,0.26979,0.0856947,0.866093,0.271423,0.20949,0.927661,0.0785335,0.76196,0.756603,0.989955,0.631312,0.921062,0.145584,0.269976,0.193009,0.64439,0.0539941,0.170487,0.715872,0.547448,0.283755,0.854759,0.286673,0.0642761,0.725775,0.184785,0.599015,0.253646,0.210101,0.148858,0.259138,0.316612,0.574168,0.705119,0.335789,0.762006,0.674228,0.116482,0.287934,0.456502,0.737358,0.915675,0.578606,0.78417,0.689976,0.490691,0.740529,0.138528,0.336195,0.960082,0.0733222,0.328186,0.185758,0.607855,0.305634,0.389059,0.441671,0.939879,0.861997,0.544253,0.473907,0.168923,0.713151,0.820214,0.634646,0.389873,0.712582,0.60757,0.713329,0.172726,0.11428,0.304239,0.760174,0.392057,0.675839,0.474704,0.641635,0.201614,0.141099,0.514321,0.2929,0.51405,0.325477,0.582693,0.469177,0.376744,0.605512,0.882402,0.00795031,0.124456,0.0481663,0.17042,0.71684,|0.853376,0.0808595,0.298035,0.768653,0.634436,0.794714,0.779681,0.459248,0.659924,0.954065,0.283979,0.320271,0.253672,0.686027,0.848925,0.672637,0.674357,0.14078,0.103799,0.732187,0.1038,0.407027,0.629562,0.791571,0.994503,0.805466,0.405976,0.920306,0.859384,0.970243,0.0707506,0.26806,0.507182,0.137193,0.979982,0.391387,0.333484,0.598834,0.185106,0.369621,0.174712,0.907283,0.415374,0.698867,0.99715,0.604758,0.55652,0.265924,0.468025,0.0704885,0.954802,0.412995,0.786655,0.542574,0.687811,0.799319,0.102372,0.3574,0.623231,0.861611,0.238317,0.240314,0.225611,0.969886,0.855925,0.10749,0.449487,0.167889,0.490476,0.228205,0.644863,0.684291,0.170253,0.328887,0.473667,0.29388,0.108054,0.83321,0.437162,0.313688,0.613175,0.411965,0.612969,0.332659,0.172905,0.443538,0.297018,0.123598,0.254593,0.558042,0.270885,0.695328,0.667887,0.44956,0.471049,0.964021,0.629978,0.135141,0.178868,0.435113,0.838333,0.779275,0.515763,0.0410965,0.606284,0.480064,0.435193,0.382972,0.840676,0.706965,0.26708,0.63172,0.038476,0.0310153,0.417014,0.732709,0.777729,0.664864,0.732947,0.458015,0.170465,0.920099,0.615381,0.323468,0.253925,0.23843,0.311592,0.10008,0.670439,0.799255,0.818546,0.704603,0.429477,0.587827,0.152744,0.306377,0.311577,0.950201,0.0387216,0.693371,0.640218,0.455924,0.349127,0.479322,0.747542,0.659767,0.0477086,0.255347,0.840192,0.883583,0.448684,0.128435,0.608659,0.187034,0.139532,0.990586,0.417602,0.399105,0.201155,0.366459,0.227279,0.784651,0.385171,0.790446,0.0645026,0.637141,0.941608,0.150547,0.905722,0.740735,0.488761,0.552988,0.721159,0.676428,0.563051,0.0535908,0.726181,0.91641,0.683825,0.83189,0.230626,0.373434,0.855604,0.0383053,0.469959,0.203791,0.969107,0.94316,0.930953,0.0406308,0.926971,0.966917,0.835513,0.314519,0.632574,0.242644,0.746739,0.910415,0.138368,0.857937,0.251344,0.620399,0.192114,0.8285,0.778409,0.91344,0.683584,0.280775,0.180428,0.56264,0.638666,0.919372,0.609083,0.00835216,0.0485569,0.375436,0.202087,0.917861,0.160845,0.377277,0.0863789,0.266804,0.90321,0.731928,0.913287,0.674446,0.316701,0.846495,0.863547,0.578714,0.111307,0.388086,0.428799,0.740438,0.624174,0.0211463,0.936652,0.880238,0.585481,0.437661,0.839708,0.620858,0.667201,0.422843,0.107371,0.395817,0.362175,0.655487,0.429718,0.525262,0.472985,0.433156,0.678201,0.0766702,0.115944,0.0913123,0.305929,0.190343,0.369349,0.13214,0.721989,0.715802,0.916139,0.975507,0.339593,0.279873,0.218726,0.254136,0.245861,0.838576,0.656018,0.355401,0.494317,0.593349,0.117826,0.609594,0.52128,0.509724,0.632711,0.993625,0.790522,0.678769,0.530849,0.444378,0.859852,0.0736769,0.706999,0.558745,0.805652,0.00978017,0.112396,0.491004,0.294423,0.559819,0.735351,0.827349,0.988828,0.359833,0.666726,0.465516,0.07759,0.312641,0.624452,0.501538,0.792839,0.370515,0.473078,0.205014,0.31134,0.52285,0.173555,0.988641,0.843156,0.17953,0.169295,0.230448,0.965582,0.14322,0.758878,0.0343037,0.177024,0.251393,0.68903,0.157104,0.553177,0.177996,0.0912699,0.373062,0.94708,0.709654,0.0828121,0.264817,0.273135,0.593378,0.793311,0.217344,0.0221739,0.604478,0.920109,0.569085,0.641595,0.4838,0.221753,0.315812,0.746835,0.388781,0.0366895,0.726809,0.761385,0.821877,0.371229,0.657608,0.482903,0.645273,0.120432,0.646397,0.150395,0.684889,0.196795,0.747773,0.364685,0.957502,0.635977,0.698219,0.730637,0.358343,0.946798,0.504885,0.599393,0.946336,0.208895,0.89348,0.373504,0.935144,0.237271,0.3916,0.259876,0.216257,0.499691,0.89417,0.628212,0.87255,0.417202,0.55313,0.660683,0.571164,0.45914,0.581763,0.691335,0.993792,0.169816,0.569178,0.464669,0.0120844,0.163187,0.464094,0.120242,0.0544882,0.657243,0.549139,0.685325,0.576824,0.434082,0.75907,0.265543,0.567747,0.430143,0.74088,0.336724,0.666847,0.688404,0.466124,0.805736,0.107316,0.171948,0.57234,0.912778,0.093601,0.269282,0.681496,0.396152,0.976728,0.317757,0.13837,0.27892,0.307417,0.0321956,0.132421,0.82433,0.837078,0.384327,0.442456,0.902187,0.382898,0.906531,0.968186,0.0698882,0.0639389,0.903398,0.866779,0.0813918,0.533883,0.950304,0.53631,0.942544,0.700885,0.980337,0.99508,0.499636,0.786532,0.493738,0.449335,0.978687,0.318167,0.0869821,0.327497,0.103686,0.358729,0.239574,0.0425187,0.293449,0.982486,0.031299,0.161755,0.698411,0.740922,0.823526,0.00327665,0.604727,0.546779,0.328618,0.909144,0.885177,0.95616,0.482224,0.572713,0.867554,0.54299,0.848551,0.704465,0.618194,0.776984,0.14559,0.771775,0.551645,0.752408,0.504417,0.00759041,0.078945,0.796704,0.0327366,0.311042,0.846716,0.501957,0.759801,0.978642,0.404293,0.015545,0.576309,0.992041,0.798556,0.962752,0.647604,0.309952,0.46925,0.313768,0.876977,0.820982,0.743961,0.827313,0.701771,0.203501,0.808769,0.394394,0.466312,0.479183,0.537192,0.0600714,0.744037,0.116359,0.477227,0.442016,0.308424,0.725839,0.36293,0.134689,0.347447,0.728445,0.0786502,0.918661,0.527969,0.692423,0.0188753,0.524098,0.592092,0.659919,0.947625,0.874416,0.578792,0.411969,0.335475,0.960244,0.502687,0.70707,0.741546,0.803334,0.578605,0.172722,0.366508,0.113491,0.115813,0.932472,0.349906,0.0912328,0.911587,0.225083,0.922609,0.677498,0.239938,0.512843,0.129216,0.466215,0.236016,0.720338,0.880987,0.224241,0.162866,0.0627288,0.686,0.341014,0.703364,0.629669,0.426856,0.466078,0.606867,0.551998,0.238723,0.835675,0.302548,0.375356,0.69685,0.198096,0.400969,0.418483,0.383917,0.238169,0.083855,0.0490044,0.710676,0.735069,0.0786626,0.550626,0.755665,0.524883,0.994185,0.362631,0.761683,0.761772,0.639047,0.800886,0.962983,0.284528,0.507779,0.481922,0.408206,0.742487,0.476904,0.729086,0.33634,0.889455,0.314696,0.569072,0.173041,0.471117,0.696404,0.360127,0.126272,0.619797,0.439712,0.394256,0.246755,0.0211824,0.59415,0.380896,0.296028,0.0292683,0.00023526,0.833362,0.433575,0.666374,0.723141,0.737248,0.626831,0.450477,0.887596,0.936553,0.442179,0.254942,0.825433,0.134234,0.276977,0.585934,0.154812,0.688295,0.883273,0.067605,0.725439,0.509162,0.407175,0.282501,0.166273,0.262315,0.274124,0.769982,0.268052,0.291356,0.386339,0.764972,0.660876,0.466386,0.300707,0.071299,0.697637,0.891197,0.636218,0.0303413,0.461207,0.995476,0.31593,0.750673,0.715621,0.340563,0.661256,0.768627,0.871556,0.497354,0.583309,0.0738567,0.0321084,0.597773,0.580339,0.0160626,0.483178,0.700498,0.0746687,0.420357,0.348272,0.0800708,0.129259,0.402823,0.170516,0.128187,0.151008,0.465632,0.905802,0.441544,0.385358,0.809307,0.0289275,0.143014,0.372614,0.803273,0.271526,0.526906,0.913068,0.68535,0.86229,0.684406,0.480463,0.815603,0.773601,0.112521,0.582591,0.514818,0.950101,0.539552,0.37081,0.521183,0.871115,0.0543842,0.115312,0.475869,0.157768,0.506383,0.226453,0.971486,0.545502,0.278073,0.89367,0.161257,0.829459,0.991694,0.14584,0.747109,0.371728,0.981507,0.0968909,0.79218,0.693018,0.267104,0.81596,0.282469,0.44648,0.119608,0.141697,0.432201,0.645868,0.25482,0.372002,0.661908,0.0676419,0.401895,0.201202,0.697225,0.909239,0.019914,0.0241569,0.201051,0.907291,0.729703,0.680616,0.41799,0.577379,0.59105,0.237314,0.0107242,0.493439,0.196525,0.710692,0.276987,0.46101,0.729855,0.893563,0.51421,0.119047,0.298783,0.0794217,0.731895,0.851101,0.290658,0.269416,0.578886,0.196826,0.442695,0.315149,0.674608,0.549545,0.302659,0.27991,0.250057,0.437634,0.855477,0.731121,0.369249,0.915394,0.42888,0.457121,0.364532,0.459984,0.443266,0.880764,0.968156,0.00641006,0.697688,0.50347,0.64527,0.237956,0.056532,0.97324,0.282324,0.425076,0.848978,0.152419,0.625565,0.370258,0.581149,0.527035,0.585596,0.598713,0.387452,0.836634,0.754159,0.872146,0.146287,0.999166,0.532024,0.819967,0.527546,0.245482,0.41136,0.194079,0.373498,0.902246,0.339094,0.505993,0.837109,0.654893,0.801298,0.998044,0.586164,0.915375,0.834305,0.361185,0.067418,0.266935,0.194753,0.640627,0.330178,0.367325,0.538251,0.228388,0.88344,0.937119,0.352908,0.348852,0.131227,0.748305,0.247407,0.678116,0.638086,0.932549,0.130677,0.449949,0.782823,0.026194,0.057577,0.536798,0.935954,0.076961,0.241837,0.702529,0.612914,0.326982,0.289291,0.252934,0.095592,0.354828,0.5102,0.0057162,0.326057,0.873418,0.803405,0.435409,0.531181,0.277793,0.266525,0.448072,0.200494,0.642923,0.567193,0.856264,0.513356,0.314952,0.500695,0.55599,0.847959,0.44174,0.578685,0.663745,0.762035,0.226984,0.107729,0.935598,0.99437,0.419108,0.068108,0.488797,0.959819,0.441924,0.0898986,0.542817,0.139477,0.321564,0.0284928,0.326815,0.89413,0.380693,0.545537,0.20686,0.655913,0.246715,0.202416,0.110364,0.921484,0.346447,0.751458,0.158104,0.695243,0.367279,0.450221,0.398465,0.118592,0.90231,0.299218,0.0549387,0.812743,0.626711,0.937346,0.564615,0.51818,0.0054515,0.570595,0.765691,0.397086,0.751744,0.69351,0.949794,0.699361,0.613789,0.813512,0.0759568,0.489105,0.828651,0.23123,0.830096,0.919301,0.915499,0.870249,0.42455,0.11877,0.907351,0.848952,0.44882,0.922718,0.517515,0.763438,0.145766,0.554024,0.498793,0.760425,0.890651,0.520466,0.722028,0.582725,0.94609,0.148675,0.798989,0.810201,0.38517,0.827177,0.956566,0.399269,0.334309,0.408593,0.151397,0.125521,0.847212,0.490119,0.702249,0.835194,0.651586,0.955506,0.288257,0.488039,0.328947,0.386927,0.478601,0.240304,0.603044,0.60698,|0.919507,0.531781,0.857807,0.378723,0.931892,0.806325,0.759321,0.319698,0.579799,0.530083,0.285633,0.963719,0.150609,0.263676,0.422455,0.920407,0.597083,0.375615,0.942203,0.407433,0.325159,0.800705,0.157934,0.525729,0.0869547,0.203858,0.121419,0.192576,0.679315,0.2908,0.781751,0.820942,0.315068,0.369671,0.496127,0.554398,0.980469,0.214923,0.252192,0.298794,0.816884,0.791122,0.260545,0.301233,0.00436968,0.4022,0.0102322,0.845216,0.963533,0.0412919,0.41889,0.839039,0.50144,0.160206,0.151059,0.643625,0.439774,0.306801,0.515499,0.405666,0.2115,0.700788,0.410511,0.638991,0.519736,0.620105,0.778018,0.719739,0.168681,0.434433,0.813724,0.794703,0.481084,0.220988,0.835931,0.569179,0.12003,0.815542,0.816625,0.082185,0.458054,0.0459573,0.565201,0.791246,0.525314,0.569758,0.326892,0.402342,0.765598,0.349014,0.430385,0.609958,0.972699,0.0499383,0.364807,0.306594,0.430959,0.459906,0.371166,0.477434,0.949964,0.194736,0.0421337,0.549558,0.00518769,0.811482,0.0935895,0.148362,0.487584,0.183842,0.167491,0.723395,0.347187,0.250919,0.172363,0.104947,0.772577,0.0326633,0.730563,0.766421,0.139613,0.556939,0.18775,0.46448,0.60054,0.561343,0.224184,0.877323,0.0830292,0.043944,0.884702,0.0814562,0.815084,0.121963,0.317165,0.4655,0.972575,0.454927,0.469909,0.181458,0.389109,0.762657,0.996838,0.306013,0.340914,0.648337,0.436572,0.488782,0.315755,0.0132502,0.633277,0.698697,0.817982,0.529491,0.500247,0.2531,0.0243703,0.0116274,0.907029,0.0805122,0.673918,0.964713,0.980173,0.889665,0.258363,0.669522,0.766675,0.950646,0.856784,0.758765,0.280945,0.0581291,0.489623,0.953515,0.873184,0.982346,0.404804,0.495363,0.685244,0.700917,0.943802,0.34766,0.456301,0.888787,0.623255,0.515639,0.949908,0.988417,0.337471,0.293888,0.157859,0.518871,0.193247,0.148665,0.436911,0.149525,0.632013,0.764864,0.198716,0.279043,0.226614,0.614889,0.62218,0.484558,0.854116,0.962162,0.13456,0.049307,0.654067,0.857955,0.961796,0.576656,0.89463,0.229311,0.753473,0.835084,0.161105,0.587149,0.520957,0.767257,0.24815,0.840673,0.644908,0.418547,0.114041,0.526754,0.374458,0.517412,0.395919,0.88518,0.957285,0.568461,0.886145,0.680654,0.830701,0.598824,0.327993,0.526441,0.273116,0.60413,0.186818,0.0725176,0.395359,0.267067,0.714212,0.266811,0.870804,0.0764822,0.377013,0.859494,0.637885,0.683217,0.103633,0.465291,0.771147,0.560171,0.734935,0.845427,0.77636,0.570466,0.831812,0.6525,0.197632,0.350366,0.0859611,0.921879,0.894612,0.814013,0.666948,0.259557,0.226413,0.567763,0.0582361,0.194568,0.571419,0.237335,0.24648,0.645015,0.146486,0.968996,0.0785176,0.101657,0.187031,0.439354,0.721222,0.011826,0.0744263,0.777045,0.30023,0.986913,0.82804,0.166522,0.0995834,0.233445,0.991049,0.993011,0.456511,0.836228,0.293158,0.158427,0.387797,0.681197,0.809825,0.242812,0.533109,0.667938,0.902367,0.500138,0.692435,0.744621,0.575394,0.347839,0.0226167,0.527824,0.665386,0.284448,0.363541,0.0332492,0.153794,0.399459,0.0588723,0.0350164,0.555109,0.200817,0.626901,0.574974,0.645237,0.468778,0.426512,0.642511,0.661527,0.697712,0.876872,0.494713,0.554807,0.421656,0.641918,0.280367,0.913618,0.0235663,0.339935,0.49983,0.507527,0.707556,0.235741,0.220442,0.802748,0.87876,0.464484,0.575694,0.665514,0.352532,0.559007,0.931467,0.953103,0.288895,0.547975,0.584146,0.299255,0.885673,0.577784,0.109637,0.935083,0.206461,0.0588506,0.0663748,0.201134,0.772591,0.0560446,0.866299,0.187351,0.656681,0.0213613,0.785234,0.705594,0.960267,0.311214,0.486091,0.144326,0.544427,0.448781,0.887327,0.239293,0.692592,0.279608,0.881357,0.89963,0.914278,0.480686,0.0562167,0.746966,0.0588753,0.543618,0.166677,0.390658,0.247435,0.800001,0.288365,0.397477,0.878102,0.284431,0.251478,0.759697,0.697192,0.312501,0.976649,0.621724,0.337794,0.470116,0.381213,0.260162,0.418496,0.251711,0.24343,0.681487,0.616779,0.58067,0.0648643,0.0912663,0.874142,0.753303,0.419602,0.320877,0.551984,0.316465,0.151106,0.176455,0.633209,0.660224,0.828564,0.231412,0.434459,0.127022,0.349393,0.28235,0.779052,0.406668,0.431619,0.642923,0.539622,0.751901,0.0586792,0.169501,0.858059,0.340084,0.219889,0.484881,0.366015,0.278464,0.326613,0.723354,0.226245,0.552731,0.864606,0.925428,0.368546,0.451943,0.806448,0.99496,0.911215,0.297508,0.910901,0.660307,0.961175,0.693431,0.620458,0.778401,0.978385,0.559038,0.692961,0.242691,0.517983,0.876468,0.620447,0.74875,0.124896,0.370064,0.49379,0.599692,0.0322292,0.549286,0.347534,0.858834,0.00185484,0.376318,0.714661,0.245823,0.634458,0.520702,0.81125,0.00448722,0.557329,0.325653,0.509888,0.284189,0.315376,0.584912,0.747689,0.128442,0.984275,0.597222,0.131948,0.582892,0.472349,0.199406,0.319957,0.654209,0.408587,0.23247,0.0364431,0.516338,0.00162643,0.723707,0.516518,0.979982,0.357566,0.717581,0.869636,0.506077,0.042748,0.652636,0.192209,0.321209,0.100436,0.282292,0.290569,0.263944,0.802114,0.796539,0.964642,0.28677,0.755865,0.273872,0.120245,0.77287,0.273413,0.0799025,0.674778,0.406037,0.00216067,0.116517,0.859679,0.597282,0.302407,0.349126,0.659038,0.310506,0.00901037,0.385229,0.493231,0.538655,0.446134,0.598385,0.15167,0.811363,0.72095,0.641496,0.322821,0.240743,0.922499,0.584615,0.452495,0.293325,0.00158185,0.853473,0.50355,0.0493345,0.239676,0.266213,0.104749,0.376092,0.918511,0.58579,0.565329,0.689935,0.94131,0.531995,0.760317,0.15163,0.524509,0.0408171,0.793041,0.777563,0.0750606,0.584494,0.410762,0.606044,0.892997,0.890459,0.804886,0.04101,0.123915,0.703833,0.555651,0.922891,0.305929,0.622587,0.990727,0.0970608,0.589424,0.359647,0.0337085,0.723734,0.558229,0.765041,0.270859,0.49475,0.142447,0.119532,0.574268,0.580748,0.262198,0.667632,0.781612,0.0660667,0.446772,0.241884,0.945167,0.894885,0.116877,0.00383806,0.424427,0.0638561,0.719216,0.300436,0.230452,0.545386,0.740866,0.409403,0.283472,0.30956,0.458639,0.379719,0.851866,0.870153,0.448306,0.506509,0.753779,0.992914,0.83223,0.171259,0.6769,0.71972,0.186651,0.71805,0.0512936,0.520208,0.353981,0.316839,0.390826,0.12764,0.309428,0.585487,0.593665,0.532735,0.599126,0.924524,0.0817136,0.798612,0.0582139,0.385329,0.662655,0.216652,0.0149155,0.0263622,0.116902,0.683189,0.624854,0.778781,0.398808,0.608558,0.784999,0.643961,0.830881,0.354641,0.74102,0.113729,0.758562,0.51919,0.0370758,0.855348,0.164141,0.302962,0.994477,0.921336,0.010722,0.390774,0.606558,0.314387,0.92835,0.96037,0.0169377,0.114051,0.632305,0.578372,0.850239,0.302477,0.135413,0.0271444,0.0341195,0.973559,0.0797946,0.722972,0.910328,0.236555,0.802537,0.832158,0.289767,0.570982,0.598827,0.270508,0.758092,0.775807,0.247598,0.857079,0.824053,0.318618,0.910592,0.378431,0.0458073,0.599706,0.993402,0.261345,0.579908,0.729551,0.230804,0.345745,0.368052,0.831245,0.591034,0.209585,0.872825,0.34802,0.358558,0.980379,0.358896,0.0038656,0.996965,0.344887,0.805705,0.52745,0.427922,0.567223,0.9151,0.990696,0.815161,0.824853,0.655472,0.300249,0.620849,0.797238,0.528718,0.407108,0.109025,0.27973,0.275317,0.854202,0.11904,0.68838,0.172873,0.713784,0.0104016,0.0692233,0.042881,0.558711,0.371477,0.862919,0.48711,0.777644,0.458028,0.595724,0.232553,0.954825,0.427353,0.313507,0.232988,0.872801,0.953873,0.139491,0.936863,0.303381,0.0805707,0.898058,0.590908,0.402348,0.778951,0.754142,0.63852,0.281996,0.751235,0.361462,0.439055,0.682124,0.174282,0.974408,0.828626,0.298175,0.998124,0.949195,0.129682,0.561211,0.642436,0.217432,0.402435,0.24673,0.511599,0.190467,0.28985,0.197194,0.971711,0.121157,0.942017,0.144715,0.673108,0.479453,0.720304,0.0343266,0.894955,0.504994,0.0143011,0.786035,0.992423,0.843527,0.69826,0.438884,0.412623,0.87957,0.480756,0.654108,0.496002,0.238972,0.975577,0.991356,0.265664,0.684596,0.809205,0.228906,0.746873,0.983471,0.513956,0.710587,0.327104,0.4484,0.110133,0.394143,0.107555,0.775012,0.948358,0.484576,0.918152,0.97985,0.962099,0.49991,0.65723,0.857446,0.459075,0.806292,0.609832,0.697447,0.70713,0.282849,0.0946425,0.398018,0.929225,0.534721,0.731526,0.781769,0.869702,0.398804,0.496117,0.842161,0.631273,0.871784,0.252983,0.693588,0.188739,0.410187,0.739779,0.950445,0.331396,0.414607,0.596882,0.0217974,0.426177,0.986128,0.608326,0.320977,0.982537,0.671005,0.177667,0.157222,0.43119,0.920339,0.985763,0.0730764,0.179819,0.672274,0.645613,0.0648194,0.446609,0.521722,0.796632,0.436228,0.976713,0.398866,0.98515,0.538016,0.476824,0.63947,0.699364,0.416699,0.507902,0.304452,0.808833,0.647983,0.144349,0.117679,0.996608,0.648926,0.217509,0.827523,0.468097,0.88377,0.910377,0.198992,0.666624,0.223228,0.932121,0.429947,0.58836,0.895322,0.480252,0.961842,0.289094,0.148587,0.499102,0.543447,0.222395,0.0822912,0.685205,0.905966,0.444922,0.800018,0.514893,0.624089,0.00527954,0.604726,0.0315044,0.658573,0.258105,0.383814,0.303083,0.109927,0.894464,0.778117,0.188385,0.65251,0.0399951,0.695343,0.785158,0.338268,0.338069,0.254157,0.850754,0.035023,0.637932,0.237404,0.562364,0.113286,0.042319,0.167272,0.92649,0.0874955,0.280633,0.32908,0.485128,0.449209,0.493417,0.210347,0.4328,0.773531,0.0455243,0.528079,0.554094,0.349051,0.351847,0.124371,0.110486,0.147894,0.437842,0.675855,0.305477,0.75438,0.411343,0.582058,0.58067,0.873223,0.410502,0.785463,0.621615,|0.957954,0.747078,0.618773,0.432695,0.718997,0.659443,0.408249,0.289303,0.696867,0.645645,0.840158,0.0884205,0.970605,0.391956,0.902664,0.605337,0.642313,0.185769,0.208878,0.122881,0.819714,0.71994,0.47567,0.967129,0.68911,0.268295,0.67638,0.432562,0.293971,0.961806,0.151201,0.121256,0.344654,0.767506,0.964859,0.046255,0.0884449,0.390782,0.587058,0.741622,0.886222,0.775661,0.626895,0.0734686,0.14264,0.764007,0.143332,0.530525,0.663159,0.39679,0.898665,0.24412,0.658826,0.055845,0.521898,0.308475,0.279966,0.370791,0.28602,0.821748,0.443072,0.0971456,0.353046,0.532786,0.307345,0.932566,0.915605,0.0826361,0.128401,0.667622,0.836692,0.611187,0.509066,0.518149,0.176198,0.0116344,0.367972,0.559709,0.734842,0.555191,0.25089,0.427553,0.0769295,0.988756,0.498771,0.223261,0.0877346,0.97435,0.629764,0.291197,0.271744,0.912886,0.708653,0.400363,0.74273,0.639431,0.558595,0.508321,0.927094,0.449836,0.0849715,0.120171,0.13086,0.674226,0.313648,0.330298,0.142855,0.793632,0.8527,0.250661,0.413839,0.0494419,0.860911,0.610193,0.598994,0.798298,0.737521,0.973721,0.878322,0.943583,0.0250947,0.29609,0.297091,0.802403,0.691436,0.621613,0.117935,0.578572,0.16116,0.73695,0.879657,0.424901,0.133288,0.982998,0.603942,0.237857,0.422912,0.80707,0.941736,0.858809,0.223362,0.875265,0.0129293,0.025239,0.528509,0.0504839,0.998541,0.59236,0.733737,0.165808,0.690455,0.974334,0.593508,0.12162,0.345086,0.147772,0.444481,0.621546,0.771663,0.222361,0.594356,0.840113,0.589787,0.712057,0.0765945,0.62372,0.790686,0.584275,0.186124,0.915766,0.370902,0.532656,0.389411,0.885323,0.00878924,0.628117,0.571619,0.728956,0.000431061,0.638027,0.282397,0.0211712,0.500465,0.891684,0.409472,0.868334,0.273045,0.11887,0.772364,0.857084,0.110358,0.0233616,0.101577,0.315267,0.48853,0.983509,0.834188,0.896161,0.293712,0.694469,0.186884,0.386922,0.826038,0.992352,0.079276,0.973108,0.551169,0.269741,0.450399,0.967857,0.747844,0.639276,0.0808676,0.0100306,0.485778,0.989181,0.467402,0.139977,0.0874423,0.455003,0.57311,0.190559,0.241662,0.823144,0.7859,0.0181166,0.576252,0.878868,0.157963,0.255346,0.585717,0.309966,0.21907,0.407241,0.895026,0.968653,0.700442,0.102441,0.712031,0.865162,0.432895,0.000633001,0.564786,0.757275,0.210612,0.321319,0.391479,0.981604,0.664128,0.444395,0.157585,0.956282,0.946209,0.12769,0.929542,0.101089,0.05523,0.38955,0.470307,0.661305,0.417023,0.733042,0.927512,0.755413,0.698931,0.173434,0.320496,0.729069,0.594302,0.109417,0.522995,0.764091,0.854493,0.702931,0.941356,0.820028,0.691307,0.382042,0.859822,0.115894,0.449296,0.498225,0.387129,0.581065,0.229413,0.610938,0.231067,0.112936,0.372802,0.360603,0.612283,0.407849,0.334542,0.90888,0.867088,0.842471,0.818147,0.925201,0.950052,0.149668,0.60706,0.616866,0.914725,0.00548118,0.2492,0.179402,0.482832,0.329677,0.352279,0.17822,0.737114,0.577373,0.0245536,0.850435,0.276932,0.0511394,0.617247,0.966043,0.254571,0.922665,0.741478,0.816261,0.63502,0.398352,0.474385,0.346582,0.16273,0.404408,0.165716,0.620106,0.483553,0.257019,0.41793,0.113274,0.538753,0.448525,0.516347,0.568975,0.500028,0.333718,0.260316,0.322967,0.439284,0.339363,0.542506,0.973763,0.233917,0.817929,0.395332,0.894731,0.99031,0.323371,0.216685,0.287158,0.026575,0.942003,0.968691,0.0647146,0.902224,0.950141,0.902892,0.712231,0.620726,0.195653,0.394254,0.601043,0.113808,0.516238,0.916658,0.808306,0.305404,0.177954,0.914084,0.823997,0.223885,0.585298,0.896363,0.621811,0.147964,0.29322,0.800555,0.783936,0.258042,0.763524,0.834551,0.724512,0.682262,0.630131,0.820912,0.548163,0.416934,0.228364,0.368119,0.546853,0.960304,0.711744,0.820915,0.868217,0.940897,0.248135,0.0341579,0.557685,0.283866,0.456573,0.137259,0.938653,0.210611,0.645168,0.211658,0.175769,0.884083,0.749038,0.996064,0.370242,0.513652,0.0494328,0.315534,0.839319,0.714727,0.537679,0.0235313,0.575636,0.869509,0.540335,0.964538,0.11874,0.0456774,0.625115,0.334753,0.104585,0.126848,0.442393,0.71929,0.0815478,0.217162,0.293425,0.586702,0.138058,0.366531,0.123655,0.742976,0.963606,0.70661,0.402722,0.723344,0.717379,0.119028,0.679159,0.517646,0.0654732,0.99804,0.482075,0.80366,0.568717,0.748146,0.573555,0.936144,0.118818,0.746307,0.251774,0.0259709,0.204599,0.0319664,0.620158,0.908326,0.887855,0.157041,0.591082,0.230596,0.551327,0.669629,0.0537668,0.426847,0.194786,0.529664,0.416553,0.682298,0.373774,0.27466,0.953813,0.927555,0.0364004,0.376009,0.808913,0.290526,0.537851,0.558135,0.755251,0.982186,0.42851,0.0701804,0.698246,0.00467604,0.694734,0.00535125,0.43404,0.879708,0.393835,0.821214,0.943269,0.739289,0.194167,0.410561,0.970597,0.392206,0.580509,0.63356,0.0617908,0.699293,0.438918,0.955808,0.792043,0.191816,0.790448,0.47361,0.185428,0.0822117,0.599234,0.807691,0.70182,0.271018,0.361405,0.305034,0.364331,0.198388,0.187508,0.789135,0.161373,0.763283,0.0715476,0.85448,0.653704,0.110707,0.434283,0.989492,0.920835,0.896922,0.845589,0.448209,0.225175,0.804612,0.393211,0.488308,0.566836,0.329199,0.0654554,0.0552626,0.205942,0.250124,0.402671,0.698982,0.843868,0.522342,0.944489,0.0320356,0.77934,0.641593,0.99871,0.128015,0.0208027,0.992742,0.96203,0.159259,0.0164581,0.382883,0.120572,0.301098,0.513227,0.715432,0.753044,0.178727,0.437033,0.01339,0.641716,0.118661,0.88491,0.668166,0.70321,0.180584,0.185879,0.78097,0.0965511,0.887531,0.0491335,0.878448,0.757234,0.981586,0.808541,0.932671,0.756302,0.131414,0.396465,0.181757,0.967331,0.777597,0.583967,0.232318,0.54927,0.777784,0.995353,0.24113,0.962106,0.220249,0.343104,0.316863,0.552888,0.497324,0.702483,0.870736,0.0704204,0.228478,0.878604,0.645878,0.631098,0.725564,0.697187,0.103875,0.381443,0.854486,0.670533,0.417511,0.713514,0.279863,0.868065,0.863086,0.030483,0.864793,0.0711555,0.917661,0.707364,0.684447,0.387047,0.738947,0.615233,0.619856,0.0392215,0.218417,0.467285,0.312144,0.569936,0.611991,0.238424,0.957018,0.377728,0.148838,0.333018,0.827736,0.864207,0.695818,0.166922,0.455613,0.422513,0.938615,0.189838,0.410546,0.232457,0.0268851,0.532287,0.983363,0.0518436,0.364777,0.458893,0.87735,0.947539,0.338079,0.440887,0.96548,0.526346,0.826862,0.0748131,0.465884,0.282247,0.8379,0.259408,0.764171,0.726486,0.172759,0.0309043,0.507103,0.101549,0.309398,0.998672,0.184619,0.581906,0.337961,0.80809,0.132655,0.93564,0.916939,0.579258,0.402701,0.609642,0.378159,0.941016,0.432066,0.0233586,0.222857,0.754949,0.166336,0.743066,0.343984,0.786387,0.614014,0.163704,0.685888,0.117176,0.534165,0.590734,0.266326,0.128999,0.898039,0.12006,0.135556,0.419765,0.804716,0.818942,0.788984,0.712353,0.105058,0.907833,0.407329,0.451957,0.375507,0.839807,0.483803,0.547472,0.360425,0.5235,0.366399,0.0610834,0.14266,0.27094,0.174506,0.624227,0.939265,0.342947,0.410418,0.437164,0.78734,0.747549,0.355029,0.101793,0.295816,0.0499202,0.206727,0.65223,0.0231191,0.264608,0.731139,0.152111,0.301158,0.0864317,0.363371,0.216069,0.818972,0.368737,0.828988,0.713877,0.199748,0.143156,0.854575,0.117112,0.263025,0.159044,0.707439,0.180074,0.661214,0.144639,0.732523,0.434173,0.784584,0.629131,0.685939,0.984542,0.102486,0.812863,0.839693,0.229649,0.0291489,0.794569,0.166975,0.659736,0.71622,0.395171,0.500755,0.447293,0.418706,0.239759,0.585319,0.871005,0.395812,0.746766,0.307418,0.0177931,0.42585,0.732907,0.374345,0.480897,0.106123,0.657824,0.853831,0.726483,0.717718,0.178514,0.716561,0.763138,0.225432,0.873428,0.150133,0.668141,0.18389,0.836101,0.922925,0.771016,0.72937,0.194992,0.497051,0.757088,0.571996,0.435524,0.0482053,0.152917,0.673382,0.639501,0.371752,0.525401,0.951028,0.85237,0.594413,0.648157,0.423304,0.4707,0.986943,0.445573,0.354743,0.216398,0.850436,0.885315,0.628432,0.820261,0.401683,0.411107,0.901613,0.342507,0.544598,0.528858,0.245597,0.925827,0.41156,0.484346,0.947675,0.47487,0.214087,0.19082,0.876157,0.757738,0.14133,0.665489,0.0959217,0.863172,0.653248,0.152165,0.119895,0.678422,0.251996,0.956811,0.35822,0.0756976,0.983638,0.414882,0.674167,0.113026,0.207683,0.257397,0.0897897,0.949651,0.418861,0.223789,0.0715372,0.67178,0.89382,0.688989,0.640397,0.914824,0.711916,0.992227,0.0492348,0.486266,0.581324,0.0258285,0.0270292,0.814026,0.729496,0.0439345,0.170086,0.684295,0.63148,0.148838,0.934819,0.658541,0.207299,0.599641,0.264592,0.393441,0.404382,0.715322,0.322081,0.1824,0.1311,0.438075,0.0708701,0.249321,0.3295,0.319179,0.35964,0.402672,0.579673,0.234645,0.267202,0.87943,0.696563,0.5334,0.956966,0.343657,0.393772,0.18978,0.837646,0.632235,0.157631,0.661174,0.691226,0.627617,0.0284933,0.316677,0.0968277,0.867547,0.866799,0.79525,0.48506,0.693293,0.871131,0.613295,0.0248134,0.303312,0.337314,0.251554,0.131875,0.340587,0.560885,0.521379,0.396629,0.588105,0.51279,0.0978671,0.732117,0.201608,0.0901642,0.506492,0.0440891,0.189775,0.818574,0.162463,0.589837,0.253279,0.544881,0.353355,0.348378,0.251396,0.122443,0.314274,0.251686,0.892569,0.521027,0.674456,0.814828,0.597257,0.731184,0.629475,0.512968,0.170183,0.796042,0.411703,0.488822,0.574044,0.615367,0.264111,0.676792,0.159906,0.264427,0.593962,0.547683,0.0638127,0.689977,0.700387,0.537894,0.435228,0.610503,0.319402,0.717555,0.0500801,|0.698682,0.506738,0.504156,0.770938,0.863263,0.915495,0.81444,0.828654,0.30608,0.177057,0.797277,0.577823,0.791732,0.827568,0.0153655,0.862803,0.334453,0.50198,0.214305,0.931052,0.00536597,0.246351,0.980361,0.372394,0.35418,0.0748163,0.869923,0.652769,0.752107,0.615522,0.458798,0.971468,0.397815,0.101456,0.850507,0.139608,0.215858,0.168063,0.394431,0.877209,0.591723,0.0446197,0.127525,0.344874,0.930533,0.572681,0.995075,0.613822,0.0610306,0.643999,0.675058,0.773764,0.170022,0.645762,0.205414,0.284921,0.560196,0.651046,0.909456,0.22537,0.320349,0.569753,0.230435,0.927311,0.756048,0.955486,0.434401,0.0168424,0.949522,0.622034,0.668759,0.625898,0.586293,0.601155,0.470182,0.0518692,0.830731,0.942324,0.271526,0.432608,0.561286,0.479584,0.50788,0.71359,0.00705045,0.20328,0.290015,0.274076,0.961746,0.999792,0.653327,0.0250681,0.396022,0.0708632,0.709364,0.220454,0.752238,0.35296,0.476297,0.431219,0.880918,0.663155,0.593491,0.0132501,0.479138,0.050752,0.437996,0.151261,0.528788,0.155964,0.443583,0.184937,0.908525,0.867894,0.157871,0.321587,0.531555,0.431281,0.473848,0.865104,0.131779,0.361807,0.518642,0.961224,0.990668,0.862062,0.166388,0.508961,0.542253,0.351568,0.676057,0.248807,0.397351,0.534086,0.851939,0.257046,0.104982,0.0403432,0.952893,0.140479,0.308564,0.55931,0.797531,0.33509,0.5137,0.915598,0.172957,0.253074,0.551768,0.794493,0.368537,0.390372,0.199098,0.698398,0.15263,0.278401,0.799546,0.338567,0.619936,0.00382197,0.423961,0.354844,0.869535,0.954396,0.336972,0.672649,0.929387,0.497271,0.164039,0.427351,0.897643,0.362764,0.0902252,0.344027,0.874388,0.246922,0.58213,0.800997,0.849411,0.763156,0.126453,0.185147,0.344516,0.909261,0.00175095,0.542052,0.431691,0.662172,0.39458,0.421931,0.0207207,0.272476,0.944302,0.196323,0.509726,0.29267,0.656997,0.18596,0.151833,0.0801983,0.781407,0.793144,0.21943,0.274911,0.489339,0.84478,0.442601,0.920771,0.219067,0.687799,0.715195,0.0342185,0.250278,0.0565885,0.330271,0.443628,0.40267,0.19375,0.708562,0.213521,0.123482,0.685881,0.361623,0.199624,0.536044,0.215723,0.805942,0.316472,0.395486,0.622635,0.522935,0.106787,0.816938,0.0401448,0.515489,0.168971,0.92966,0.267824,0.94657,0.452791,0.706703,0.62921,0.239045,0.252837,0.55382,0.456656,0.576957,0.840402,0.405716,0.211861,0.166791,0.0647985,0.181927,0.787969,0.512376,0.101851,0.625481,0.347031,0.800331,0.964484,0.716512,0.735448,0.507374,0.56098,0.666681,0.314959,0.242206,0.101872,0.916844,0.464778,0.707368,0.611161,0.0545575,0.204844,0.0983562,0.334608,0.315911,0.584498,0.804636,0.611225,0.315969,0.420276,0.41156,0.709949,0.0164613,0.692691,0.195805,0.37714,0.276543,0.811493,0.0409635,0.832615,0.807956,0.75693,0.429237,0.574242,0.726487,0.836384,0.14542,0.121382,0.172497,0.212804,0.813002,0.51484,0.86101,0.236242,0.853618,0.763119,0.676339,0.543568,0.258103,0.375964,0.916217,0.860651,0.186563,0.248222,0.471612,0.375083,0.167423,0.916137,0.794022,0.861951,0.0688166,0.988544,0.891659,0.662503,0.381191,0.390726,0.805648,0.913506,0.727651,0.0349922,0.851056,0.243812,0.56,0.0334591,0.629899,0.844673,0.361468,0.288385,0.310002,0.938447,0.103907,0.487373,0.610876,0.60288,0.353642,0.282813,0.938877,0.224711,0.629236,0.276374,0.245353,0.506812,0.336868,0.675848,0.880068,0.670241,0.509176,0.731979,0.890391,0.725565,0.532343,0.312416,0.759884,0.974208,0.724569,0.261906,0.364449,0.343509,0.785472,0.639006,0.204609,0.606407,0.651066,0.1748,0.342735,0.513718,0.802196,0.738639,0.608719,0.815232,0.190288,0.816736,0.197261,0.0261275,0.472286,0.370365,0.811989,0.365837,0.405679,0.9033,0.196702,0.453929,0.939093,0.0467606,0.973754,0.597727,0.828049,0.443083,0.328148,0.904425,0.439314,0.574001,0.667122,0.668386,0.466324,0.759428,0.25865,0.535093,0.359203,0.869336,0.871619,0.474039,0.512935,0.597097,0.976968,0.894592,0.0421973,0.886707,0.995396,0.520503,0.310193,0.442589,0.253406,0.24992,0.963995,0.993079,0.0733641,0.16627,0.422195,0.00704849,0.699086,0.458908,0.683383,0.255752,0.626416,0.885517,0.183169,0.526821,0.609178,0.482824,0.893782,0.0618615,0.619871,0.301133,0.756565,0.483586,0.0225457,0.531778,0.752715,0.484071,0.538311,0.130993,0.0294676,0.127652,0.798422,0.949441,0.152697,0.839787,0.233093,0.799985,0.863527,0.567082,0.90077,0.473373,0.897328,0.124425,0.442558,0.606256,0.502504,0.233334,0.0141914,0.55543,0.759315,0.870567,0.247929,0.915576,0.933621,0.293713,0.30564,0.105485,0.709288,0.0791755,0.645814,0.267628,0.621877,0.758437,0.0575942,0.948786,0.575341,0.418448,0.912095,0.491894,0.448418,0.429798,0.814062,0.417391,0.823585,0.364208,0.645839,0.938022,0.71044,0.316758,0.905486,0.74546,0.538913,0.952006,0.903038,0.953149,0.00398117,0.478938,0.638937,0.0244241,0.127821,0.713852,0.235055,0.866445,0.840287,0.88558,0.317033,0.622435,0.710879,0.16377,0.620273,0.193385,0.0334171,0.541457,0.788996,0.994966,0.102089,0.823192,0.432438,0.227294,0.232816,0.444525,0.154436,0.264541,0.73881,0.989741,0.587232,0.654865,0.473022,0.718432,0.705171,0.607124,0.858697,0.142486,0.81991,0.525774,0.358403,0.965071,0.512955,0.34661,0.887803,0.614228,0.217824,0.959086,0.461243,0.115232,0.00998741,0.280847,0.989601,0.363239,0.0275567,0.676499,0.0577295,0.323046,0.93758,0.87261,0.681514,0.818249,0.523979,0.299381,0.434117,0.909232,0.406566,0.169797,0.262609,0.751348,0.777228,0.30378,0.415477,0.534183,0.0737943,0.435298,0.473664,0.47613,0.242617,0.175061,0.146487,0.755861,0.465381,0.165237,0.168771,0.0847693,0.290821,0.314601,0.592138,0.288323,0.892029,0.185349,0.44553,0.514384,0.471784,0.534458,0.0396188,0.156558,0.110408,0.719619,0.492069,0.739327,0.675311,0.171398,0.355119,0.473656,0.229368,0.926433,0.97582,0.021436,0.0477537,0.668129,0.717537,0.249394,0.00126529,0.487423,0.343967,0.0969239,0.178295,0.0285459,0.438988,0.80571,0.0399386,0.932341,0.929842,0.314904,0.226564,0.697679,0.103424,0.589389,0.262869,0.519753,0.764359,0.0659918,0.998437,0.508356,0.975958,0.987143,0.178224,0.662548,0.0582768,0.0645253,0.653344,0.69959,0.622059,0.791563,0.0647171,0.586959,0.108796,0.827566,0.881734,0.743288,0.121236,0.527478,0.356738,0.108091,0.656956,0.569578,0.84867,0.987552,0.211128,0.658321,0.219648,0.194779,0.954803,0.0343748,0.786658,0.723953,0.898137,0.906596,0.604702,0.353774,0.894388,0.723208,0.196774,0.837965,0.650749,0.563427,0.889095,0.679106,0.513522,0.0625106,0.464025,0.746088,0.925848,0.841734,0.695889,0.76639,0.891594,0.125284,0.385497,0.711354,0.955796,0.671868,0.606256,0.863366,0.0290079,0.679156,0.831175,0.849598,0.701408,0.988838,0.852788,0.673784,0.788406,0.858792,0.623228,0.214649,0.398799,0.533724,0.101089,0.398659,0.665933,0.639144,0.829812,0.779692,0.78756,0.325571,0.0882226,0.541338,0.0131817,0.442163,0.469724,0.815366,0.703847,0.873866,0.249343,0.11537,0.508136,0.19077,0.631127,0.662763,0.00815821,0.688574,0.880711,0.99079,0.594337,0.95158,0.601833,0.128486,0.297885,0.661879,0.232875,0.236816,0.277729,0.577615,0.999327,0.287832,0.574852,0.540388,0.235388,0.692803,0.757433,0.114294,0.146018,0.344022,0.119965,0.0284178,0.96711,0.693451,0.508555,0.566522,0.555289,0.175941,0.690199,0.105914,0.301068,0.830134,0.0472769,0.523301,0.445835,0.868156,0.410666,0.527134,0.227108,0.529955,0.0507284,0.832675,0.57532,0.405835,0.0243252,0.831255,0.0130851,0.74529,0.172063,0.377347,0.833572,0.0124369,0.736764,0.332849,0.600426,0.195586,0.660671,0.54853,0.382972,0.0744109,0.0675922,0.473693,0.770979,0.629839,0.647789,0.220111,0.021346,0.532017,0.959392,0.833491,0.908945,0.237231,0.517896,0.928595,0.336744,0.112173,0.643331,0.673512,0.269721,0.297403,0.29603,0.724253,0.0793089,0.737816,0.258763,0.968463,0.0269263,0.764852,0.0243491,0.14218,0.27151,0.965405,0.949603,0.674527,0.444053,0.19883,0.603817,0.306089,0.235955,0.0150516,0.255395,0.85471,0.0974309,0.302297,0.973209,0.385299,0.377157,0.681911,0.819293,0.358292,0.526382,0.588171,0.529592,0.356786,0.798242,0.000317395,0.44373,0.239559,0.12475,0.665007,0.600812,0.0712151,0.200785,0.0928302,0.937794,0.156034,0.973513,0.818001,0.154471,0.485789,0.163805,0.0993921,0.084807,0.584073,0.0743461,0.076802,0.78082,0.850562,0.59385,0.298886,0.0389575,0.139109,0.842614,0.472334,0.397079,0.750022,0.757049,0.918372,0.020731,0.390287,0.794434,0.588072,0.851529,0.804894,0.455501,0.818002,0.494658,0.822144,0.548483,0.679399,0.249931,0.421402,0.441274,0.334977,0.544849,0.109557,0.37147,0.518278,0.575822,0.293915,0.661464,0.227794,0.743498,0.295619,0.947856,0.00307232,0.611538,0.265588,0.404162,0.00876313,0.190653,0.619915,0.485556,0.555866,0.402615,0.159722,0.369018,0.41085,0.333883,0.368846,0.50134,0.498793,0.280709,0.779525,0.154956,0.452792,0.54929,0.336208,0.877981,0.0662817,0.0596189,0.520498,0.463669,0.286004,0.433782,0.14969,0.121604,0.10825,0.728625,0.389695,0.152799,0.57553,0.806549,0.852095,0.235709,0.658621,0.824298,0.81388,0.195479,0.398569,0.446644,0.202441,0.975636,0.0296944,0.662365,0.474102,0.781248,0.72065,0.0905395,0.137309,0.0271102,0.101582,0.158296,0.652724,0.0325388,0.65752,0.321115,0.826613,0.85897,0.828357,0.542978,0.0358841,0.0393206,0.797455,0.680653,0.376795,0.164236,0.762655,0.220036,0.366454,0.924049,0.0504626,0.0799294,0.926948,|0.120933,0.289573,0.159447,0.737756,0.806932,0.819919,0.693594,0.448028,0.295224,0.393356,0.448194,0.0881789,0.130797,0.700276,0.898658,0.362861,0.98521,0.95012,0.744134,0.625028,0.703824,0.340986,0.93276,0.225655,0.145932,0.505449,0.811922,0.414518,0.238348,0.132966,0.419349,0.442375,0.471749,0.913742,0.49415,0.761489,0.407605,0.0953676,0.922672,0.536882,0.431495,0.806269,0.787801,0.161309,0.813866,0.596666,0.211985,0.146927,0.307974,0.809899,0.581556,0.77942,0.89918,0.903203,0.0778351,0.0912807,0.928687,0.523991,0.708802,0.0753312,0.192702,0.787374,0.713478,0.600367,0.388185,0.0186989,0.600583,0.241102,0.237475,0.0494974,0.428393,0.623913,0.27941,0.473435,0.817739,0.422328,0.630515,0.799666,0.562163,0.683633,0.791364,0.982078,0.829406,0.875539,0.11041,0.443022,0.586633,0.774935,0.189198,0.865826,0.0571835,0.492065,0.00746542,0.342933,0.405941,0.612755,0.0413275,0.398572,0.932718,0.522818,0.592155,0.408747,0.899646,0.0545397,0.00445133,0.217711,0.527516,0.459475,0.0381036,0.739406,0.0145919,0.489934,0.761737,0.232262,0.46538,0.271532,0.265166,0.722447,0.607565,0.277976,0.0447927,0.0507833,0.0988863,0.409608,0.3768,0.581852,0.6341,0.362875,0.164418,0.639182,0.592036,0.331934,0.971187,0.786283,0.418554,0.60402,0.908017,0.0181726,0.315622,0.0780506,0.695409,0.673786,0.478911,0.731532,0.887009,0.510092,0.427904,0.337519,0.720488,0.382878,0.374974,0.921375,0.614433,0.907724,0.652926,0.539187,0.824837,0.01853,0.735294,0.669215,0.997543,0.209064,0.853095,0.688224,0.667157,0.350926,0.7616,0.221723,0.757598,0.290641,0.331038,0.901375,0.124441,0.0396804,0.506834,0.0652036,0.995402,0.644035,0.875942,0.900463,0.209235,0.547821,0.320999,0.732003,0.810892,0.428693,0.829696,0.38523,0.128572,0.566426,0.310207,0.777475,0.471053,0.747645,0.380823,0.525452,0.740484,0.393391,0.208016,0.954952,0.788885,0.434401,0.955017,0.233793,0.887719,0.754786,0.84078,0.569953,0.777279,0.0489687,0.554103,0.437979,0.787911,0.674425,0.144904,0.86891,0.211476,0.62146,0.615912,0.0379166,0.449384,0.809083,0.0483412,0.776362,0.275827,0.343679,0.840609,0.443005,0.367593,0.0904087,0.272321,0.221459,0.323852,0.123487,0.33635,0.671803,0.639002,0.196324,0.943958,0.0364192,0.870975,0.912246,0.213484,0.92475,0.690966,0.55708,0.361476,0.721261,0.0693946,0.555374,0.346882,0.124106,0.575931,0.614205,0.872474,0.866112,0.826321,0.34254,0.0962722,0.584717,0.35351,0.091114,0.951419,0.319834,0.339647,0.92557,0.370794,0.594549,0.17439,0.193693,0.540498,0.799677,0.928839,0.668821,0.345238,0.756072,0.158201,0.478114,0.31562,0.287434,0.871893,0.298276,0.191157,0.768373,0.916154,0.633236,0.394798,0.308381,0.104223,0.232528,0.403801,0.56441,0.602559,0.0594461,0.256436,0.222352,0.0305782,0.120499,0.418894,0.250721,0.887411,0.414137,0.655567,0.519544,0.391743,0.407106,0.260509,0.485584,0.00891995,0.836012,0.161023,0.0365543,0.512015,0.182725,0.576507,0.720625,0.856963,0.807627,0.802255,0.848239,0.138934,0.924094,0.639483,0.363618,0.716355,0.967565,0.827989,0.511574,0.184881,0.375928,0.0198126,0.439477,0.31008,0.80233,0.111776,0.7816,0.705286,0.116057,0.259159,0.654627,0.423561,0.377449,0.326361,0.309624,0.833235,0.127084,0.477576,0.0051927,0.310244,0.650558,0.169576,0.50241,0.437974,0.306498,0.054679,0.825487,0.652653,0.375911,0.498421,0.206701,0.733899,0.130682,0.104162,0.71303,0.00653332,0.903544,0.40838,0.489541,0.876263,0.149392,0.79548,0.53597,0.365658,0.570958,0.360134,0.47915,0.639241,0.102206,0.00819719,0.129753,0.946138,0.10566,0.2189,0.92616,0.362141,0.190311,0.989254,0.0136136,0.661743,0.625884,0.188149,0.0257535,0.0456733,0.682628,0.302917,0.675602,0.0959556,0.5109,0.976954,0.149679,0.618975,0.573076,0.0543174,0.631045,0.373862,0.915783,0.472414,0.753952,0.710314,0.789882,0.395375,0.0370945,0.0815278,0.924761,0.042932,0.127142,0.936767,0.58236,0.100188,0.906161,0.833824,0.290402,0.964305,0.463186,0.487815,0.19657,0.0768783,0.657021,0.654294,0.17913,0.639975,0.375807,0.280949,0.310985,0.507896,0.946594,0.688986,0.52935,0.0412468,0.858703,0.854148,0.439832,0.745871,0.114235,0.983941,0.782504,0.448036,0.516147,0.422902,0.388269,0.834824,0.591619,0.445011,0.365274,0.260915,0.514523,0.669813,0.337679,0.62736,0.903449,0.761543,0.967785,0.431159,0.840448,0.0457341,0.428849,0.569867,0.899414,0.816763,0.244529,0.829607,0.955383,0.555005,0.196443,0.547747,0.612553,0.531577,0.385893,0.720568,0.30473,0.138588,0.277409,0.354577,0.563797,0.364379,0.0160452,0.881338,0.474325,0.397654,0.342762,0.835676,0.275729,0.720525,0.915229,0.720875,0.827797,0.670032,0.642474,0.833187,0.758433,0.136175,0.257047,0.0643595,0.11969,0.479193,0.608104,0.592146,0.283364,0.363557,0.558557,0.384319,0.193029,0.555992,0.268432,0.254189,0.507517,0.286163,0.0298312,0.131215,0.726129,0.87933,0.557904,0.205101,0.814055,0.898988,0.824376,0.44383,0.829619,0.335807,0.1806,0.424731,0.216024,0.354547,0.735861,0.640608,0.810419,0.409328,0.840603,0.601426,0.692766,0.689863,0.91368,0.194276,0.280636,0.0667304,0.583945,0.502678,0.465259,0.263761,0.285738,0.880363,0.298873,0.155171,0.67859,0.169291,0.0686838,0.0702008,0.234443,0.0518724,0.694696,0.818833,0.38217,0.568478,0.955848,0.0440766,0.836966,0.352343,0.0732715,0.176733,0.217441,0.278514,0.788048,0.37047,0.814064,0.808565,0.359545,0.589118,0.717353,0.322613,0.447843,0.831442,0.604229,0.932016,0.334854,0.620592,0.274477,0.234053,0.759274,0.68173,0.143536,0.128392,0.749821,0.790905,0.916216,0.575499,0.0285708,0.418664,0.244289,0.942291,0.212929,0.186037,0.399472,0.992251,0.0931265,0.363124,0.773153,0.621405,0.799489,0.0526363,0.567031,0.517592,0.136086,0.104793,0.920833,0.369707,0.506966,0.569784,0.455856,0.0221963,0.649903,0.79269,0.964029,0.127461,0.541719,0.189294,0.542309,0.474632,0.0844919,0.404688,0.733536,0.399548,0.204986,0.311045,0.0699086,0.344233,0.662571,0.315695,0.344503,0.704739,0.508947,0.375719,0.762041,0.754248,0.0850236,0.923838,0.207011,0.752482,0.97316,0.572911,0.473547,0.201386,0.136762,0.269306,0.452182,0.333374,0.871545,0.888012,0.555591,0.950644,0.918153,0.784785,0.372149,0.590531,0.249063,0.454597,0.135158,0.657725,0.633202,0.0141809,0.654363,0.427215,0.921327,0.767372,0.248121,0.470665,0.874433,0.181153,0.802031,0.723923,0.154299,0.0921878,0.334559,0.57469,0.492759,0.426884,0.638573,0.24775,0.605843,0.233649,0.683302,0.749235,0.883657,0.0266567,0.722244,0.290637,0.236365,0.711017,0.195933,0.120792,0.65433,0.558332,0.522269,0.313902,0.498419,0.601285,0.776569,0.274931,0.0625778,0.697466,0.286817,0.907915,0.752917,0.0444847,0.515659,0.716752,0.309677,0.0724475,0.99432,0.222018,0.495563,0.820677,0.754829,0.982389,0.673786,0.682069,0.198081,0.677505,0.631499,0.125856,0.0241379,0.474575,0.131954,0.870636,0.715371,0.831402,0.0778341,0.870125,0.267827,0.517364,0.144974,0.0836063,0.0773854,0.170317,0.525745,0.0056355,0.370906,0.383269,0.713589,0.0352069,0.459463,0.517275,0.365642,0.806936,0.959337,0.551506,0.240473,0.868405,0.861534,0.189552,0.0687666,0.706585,0.885667,0.999979,0.71158,0.453549,0.320207,0.0424768,0.457237,0.908824,0.047651,0.451226,0.1982,0.29483,0.04952,0.449494,0.646553,0.72982,0.537369,0.979016,0.705824,0.103489,0.316703,0.897501,0.174354,0.243394,0.557261,0.34805,0.126342,0.618711,0.170237,0.880194,0.292124,0.0324161,0.841424,0.223063,0.988301,0.00972068,0.0365786,0.0799763,0.258184,0.520004,0.0852323,0.0303195,0.136614,0.456616,0.0145299,0.135663,0.998927,0.692336,0.636932,0.215945,0.203502,0.754707,0.555654,0.686283,0.297963,0.549912,0.849381,0.171597,0.450566,0.939314,0.564696,0.363391,0.379463,0.930641,0.881329,0.936639,0.607287,0.579532,0.063309,0.205044,0.874521,0.286536,0.730189,0.413057,0.72498,0.771612,0.618631,0.278706,0.20469,0.410248,0.777489,0.0696731,0.714057,0.233467,0.744265,0.0542047,0.744062,0.877521,0.231575,0.141094,0.555503,0.90167,0.511963,0.109101,0.3793,0.967996,0.723656,0.172601,0.421883,0.937013,0.13557,0.359451,0.218038,0.765228,0.0387427,0.992545,0.379244,0.916403,0.731921,0.235907,0.338914,0.773906,0.180377,0.141451,0.00748962,0.563488,0.0831384,0.940153,0.884318,0.0139906,0.0432006,0.694571,0.758262,0.318528,0.669872,0.266154,0.743433,0.872351,0.47326,0.053385,0.701685,0.916659,0.931431,0.599205,0.419539,0.616496,0.743598,0.209939,0.085708,0.353292,0.759487,0.983586,0.536509,0.663268,0.342188,0.00565106,0.124609,0.284985,0.350666,0.213447,0.742372,0.381989,0.753765,0.882751,0.77698,0.992592,0.153838,0.713103,0.674347,0.821269,0.0747666,0.829548,0.0401195,0.255541,0.198754,0.432108,0.247766,0.480243,0.160787,0.30585,0.521739,0.115714,0.652366,0.888309,0.0259101,0.479745,0.512,0.998807,0.520427,0.948251,0.949439,0.756066,0.214538,0.922965,0.834221,0.57049,0.818483,0.265892,0.131076,0.148919,0.340349,0.631268,0.0689894,0.373363,0.547687,0.159249,0.225086,0.885033,0.983438,0.962507,0.997515,0.291957,0.274568,0.502343,0.045973,0.557024,0.277983,0.0802426,0.524622,0.965058,0.890068,0.0836948,0.956877,0.915613,0.116283,0.138246,0.387128,0.204111,0.650132,0.716034,0.491772,0.0234401,0.159592,0.0229122,0.535175,0.130133,0.986133,0.0388767,0.659992,0.983861,0.196577,0.855596,0.816063,0.103126,0.129822,0.325109,0.464521,0.728807,0.358221,|0.218017,0.585044,0.139429,0.780979,0.858928,0.624146,0.376178,0.5001,0.916229,0.692833,0.882196,0.729785,0.765827,0.978281,0.1796,0.940134,0.942716,0.880252,0.565631,0.361738,0.649859,0.117617,0.775561,0.495219,0.20948,0.996856,0.902375,0.146604,0.7827,0.952877,0.0673155,0.740325,0.895603,0.432081,0.169113,0.942977,0.744322,0.516577,0.689686,0.0177456,0.0136822,0.0554194,0.293709,0.415752,0.224538,0.00285727,0.106916,0.76196,0.959759,0.23995,0.1389,0.560043,0.780051,0.758616,0.968261,0.74377,0.404764,0.753982,0.0246976,0.630971,0.418039,0.360063,0.761672,0.212861,0.265426,0.307894,0.783297,0.88408,0.707772,0.993942,0.339283,0.359652,0.928584,0.479548,0.34776,0.272059,0.200237,0.748642,0.806073,0.479619,0.393062,0.850652,0.348256,0.667079,0.0730488,0.92817,0.676086,0.846935,0.24998,0.147062,0.00808001,0.525717,0.600708,0.409514,0.98707,0.137356,0.467987,0.345798,0.713957,0.801004,0.410005,0.306204,0.357563,0.204331,0.143604,0.418752,0.777941,0.242837,0.295584,0.47864,0.34466,0.205553,0.942162,0.909765,0.191931,0.810333,0.637908,0.718934,0.873659,0.442264,0.456116,0.731128,0.68611,0.585227,0.806,0.83331,0.507836,0.335864,0.312577,0.33081,0.441809,0.608071,0.710482,0.473221,0.342065,0.28543,0.363883,0.85331,0.327407,0.558471,0.45482,0.843009,0.666091,0.408536,0.858609,0.747894,0.161079,0.246882,0.418016,0.84431,0.240344,0.977196,0.991115,0.888889,0.0258324,0.667978,0.365116,0.843736,0.738904,0.635578,0.348056,0.31627,0.333981,0.539803,0.188515,0.252998,0.770746,0.0446143,0.507817,0.816319,0.591988,0.146209,0.848434,0.878567,0.051724,0.8271,0.340698,0.645144,0.52383,0.0830085,0.859473,0.200024,0.82862,0.378496,0.364878,0.215316,0.764489,0.593722,0.161098,0.950249,0.93747,0.897625,0.986461,0.975534,0.722559,0.48752,0.759015,0.105806,0.244307,0.365933,0.624449,0.697023,0.363609,0.10849,0.298299,0.217117,0.363843,0.322559,0.38637,0.610116,0.827848,0.605625,0.529588,0.566637,0.706067,0.81469,0.332602,0.0811154,0.316073,0.742501,0.0855973,0.326657,0.00266379,0.354717,0.766695,0.680894,0.952167,0.270533,0.104386,0.833102,0.705088,0.814705,0.61711,0.857156,0.386872,0.627773,0.186539,0.584054,0.260933,0.626694,0.615889,0.970193,0.819805,0.582609,0.78937,0.251571,0.108647,0.197273,0.115527,0.93834,0.0257221,0.157064,0.0870976,0.921317,0.660371,0.866293,0.371336,0.329705,0.227399,0.430381,0.463112,0.94326,0.694365,0.490009,0.609646,0.730256,0.558619,0.596966,0.485744,0.826036,0.503545,0.984559,0.678642,0.478414,0.169939,0.639941,0.348405,0.944962,0.316706,0.556022,0.485516,0.745907,0.881572,0.918144,0.452474,0.392446,0.575234,0.332912,0.675211,0.879581,0.0681254,0.0965208,0.638192,0.0810381,0.382547,0.363243,0.359439,0.601422,0.248541,0.271498,0.643993,0.557433,0.600153,0.140515,0.938928,0.437471,0.483898,0.204375,0.382574,0.143789,0.188958,0.734583,0.89432,0.848789,0.0309462,0.120541,0.0936992,0.824892,0.352922,0.694633,0.680605,0.697334,0.525246,0.79146,0.0512802,0.109619,0.936976,0.486569,0.28289,0.904625,0.677928,0.497078,0.638473,0.555275,0.2675,0.378717,0.924767,0.991987,0.733932,0.810395,0.821427,0.269936,0.357963,0.0290792,0.324616,0.493653,0.345191,0.908231,0.723801,0.813391,0.327173,0.825167,0.76823,0.576067,0.882172,0.453331,0.931633,0.35936,0.64217,0.925901,0.19487,0.366248,0.399985,0.703988,0.237574,0.922906,0.979319,0.494847,0.209131,0.0457618,0.551848,0.837467,0.172837,0.335244,0.851077,0.191496,0.288318,0.56597,0.92902,0.30414,0.515567,0.8428,0.166421,0.730234,0.549151,0.41742,0.693934,0.227133,0.585597,0.951564,0.610827,0.976744,0.273914,0.134565,0.801241,0.120413,0.194186,0.356486,0.115637,0.782089,0.332879,0.239996,0.164283,0.194301,0.218457,0.745052,0.0872298,0.782211,0.776283,0.589171,0.285263,0.744634,0.552869,0.419317,0.681402,0.878477,0.0357222,0.685917,0.716907,0.760477,0.620999,0.0907744,0.0505949,0.506557,0.87359,0.599662,0.34472,0.864398,0.608785,0.186845,0.593511,0.366245,0.110772,0.111567,0.413255,0.260307,0.43978,0.860132,0.795478,0.309756,0.583087,0.268872,0.8726,0.143685,0.324123,0.54449,0.201901,0.0915617,0.161598,0.0803799,0.505663,0.35267,0.333959,0.182882,0.440437,0.824168,0.749671,0.29928,0.466755,0.956619,0.11718,0.738834,0.593235,0.37435,0.702597,0.561465,0.468218,0.939929,0.595002,0.732735,0.697563,0.593336,0.0939698,0.784757,0.767142,0.781491,0.103351,0.0569117,0.429896,0.9754,0.631164,0.751002,0.393991,0.0284342,0.558066,0.769499,0.0500894,0.516783,0.534594,0.0160225,0.875797,0.260516,0.143324,0.240541,0.979148,0.295912,0.0864385,0.512745,0.166424,0.487818,0.905988,0.914461,0.42268,0.146963,0.462378,0.533056,0.841925,0.282805,0.0874475,0.595639,0.328631,0.783076,0.931919,0.293478,0.809268,0.932529,0.380277,0.505649,0.308218,0.885036,0.652547,0.166653,0.172015,0.875374,0.250333,0.452879,0.198588,0.394736,0.452167,0.754132,0.470142,0.698455,0.715423,0.981624,0.34275,0.860889,0.60159,0.728224,0.470602,0.79504,0.00383306,0.107024,0.741855,0.620307,0.972163,0.887782,0.549655,0.95238,0.444468,0.806399,0.952551,0.342356,0.320234,0.910819,0.550131,0.34773,0.634547,0.570202,0.66042,0.558742,0.0510408,0.364803,0.0607581,0.606159,0.796708,0.489145,0.175454,0.752201,0.245753,0.915505,0.207102,0.502872,0.914795,0.449477,0.166969,0.70331,0.840658,0.517644,0.893411,0.324131,0.23517,0.442088,0.738041,0.627946,0.781652,0.719021,0.655431,0.38119,0.517524,0.516239,0.474879,0.68369,0.687272,0.426223,0.552016,0.11049,0.144987,0.755741,0.307417,0.80468,0.327593,0.431421,0.0161495,0.176815,0.120046,0.556428,0.551479,0.472287,0.601918,0.822167,0.879585,0.676697,0.434285,0.491843,0.924371,0.977641,0.918376,0.231877,0.525657,0.465152,0.930481,0.246123,0.74416,0.0203167,0.236027,0.617495,0.00445777,0.136023,0.36846,0.0610675,0.0660772,0.756749,0.376182,0.481259,0.334107,0.820517,0.38625,0.751857,0.49439,0.359614,0.60923,0.962125,0.261961,0.439025,0.643072,0.288045,0.922322,0.852102,0.920412,0.0273512,0.846293,0.147001,0.927215,0.160212,0.916161,0.755853,0.938244,0.517327,0.47551,0.89869,0.0445849,0.812021,0.050044,0.427768,0.295054,0.49132,0.236961,0.320829,0.348595,0.0472694,0.0978901,0.506725,0.697404,0.253493,0.343813,0.842337,0.733942,0.768478,0.258059,0.756002,0.767188,0.330179,0.299362,0.652255,0.328269,0.10185,0.0253348,0.207643,0.261292,0.990407,0.709698,0.9604,0.041293,0.0170264,0.33687,0.900253,0.972583,0.20733,0.525632,0.81139,0.140854,0.263472,0.430504,0.939346,0.0225924,0.0403472,0.49376,0.244432,0.0756158,0.747847,0.578389,0.271305,0.0358286,0.523126,0.563389,0.249796,0.822861,0.48418,0.402009,0.125398,0.958153,0.94057,0.663731,0.894473,0.280924,0.565126,0.248454,0.703024,0.780485,0.353872,0.998533,0.755842,0.167905,0.325464,0.230726,0.359234,0.923094,0.253655,0.857325,0.00941581,0.992055,0.136002,0.284688,0.517354,0.0960704,0.187591,0.665165,0.88997,0.875953,0.666274,0.210362,0.0446587,0.578011,0.74738,0.0290739,0.134699,0.978981,0.395371,0.659892,0.104412,0.160703,0.603426,0.28451,0.755783,0.771082,0.7507,0.622281,0.15181,0.046948,0.807507,0.730481,0.744536,0.211138,0.731634,0.180972,0.720979,0.904412,0.280804,0.0388584,0.112617,0.380762,0.623002,0.724644,0.323336,0.0158815,0.455561,0.064,0.0652567,0.0550631,0.0511323,0.242384,0.949805,0.799408,0.333483,0.369512,0.884573,0.711498,0.453544,0.634447,0.422638,0.0626082,0.544076,0.160297,0.944529,0.448141,0.681068,0.677314,0.498452,0.0662763,0.654336,0.730705,0.681666,0.0531727,0.833816,0.962633,0.263506,0.948455,0.892107,0.952838,0.25397,0.294433,0.95689,0.400558,0.658602,0.106182,0.18871,0.0345823,0.500923,0.0164384,0.148775,0.306566,0.368097,0.426412,0.623431,0.289244,0.683115,0.343282,0.582498,0.963782,0.246098,0.596826,0.25252,0.279773,0.94573,0.306965,0.372036,0.726594,0.853027,0.431256,0.452406,0.0459118,0.258961,0.89478,0.351707,0.272048,0.90857,0.880986,0.229725,0.651467,0.880191,0.172225,0.890623,0.365343,0.943619,0.697583,0.795421,0.165289,0.246888,0.386503,0.914917,0.226083,0.9742,0.31681,0.638632,0.441803,0.190824,0.369143,0.00484282,0.734584,0.842203,0.653479,0.45344,0.374831,0.190768,0.671087,0.342392,0.722379,0.385089,0.161542,0.429626,0.99261,0.535568,0.559037,0.224471,0.403835,0.146341,0.550693,0.245425,0.895551,0.812988,0.583605,0.0391121,0.544714,0.752099,0.547162,0.621953,0.810829,0.83113,0.740443,0.577991,0.073396,0.341487,0.107763,0.34184,0.0592936,0.558909,0.244407,0.301591,0.822959,0.227266,0.220942,0.659494,0.819584,0.941415,0.321682,0.294575,0.560213,0.0765504,0.356528,0.832799,0.616348,0.473915,0.510074,0.444572,0.861207,0.710973,0.347941,0.301443,0.776671,0.158812,0.708515,0.236276,0.776378,0.804465,0.529871,0.46522,0.214703,0.38387,0.863505,0.617221,0.432541,0.116928,0.371681,0.366051,0.125301,0.144049,0.982181,0.0747344,0.0226536,0.0341112,0.244488,0.579629,0.423998,0.061873,0.771317,0.536819,0.0753288,0.856872,0.94967,0.277811,0.334213,0.0343578,0.0972169,0.221567,0.102236,0.71106,0.770024,0.880204,0.222067,0.207319,0.768577,0.151723,0.749288,0.781187,0.0100386,0.419515,0.485598,0.277799,0.275513,0.326865,0.61501,0.234446,0.967723,0.533946,0.985717,0.694262,0.24658,0.909741,0.404175,0.131256,|0.616264,0.742154,0.515634,0.447716,0.279836,0.414666,0.735177,0.772867,0.489745,0.104133,0.614062,0.18991,0.640503,0.760808,0.688779,0.245403,0.80515,0.994291,0.788341,0.415567,0.960709,0.939124,0.957023,0.0431775,0.190968,0.323699,0.35186,0.053197,0.803055,0.346764,0.464993,0.549648,0.729434,0.725523,0.316733,0.208822,0.654171,0.0988494,0.643077,0.695023,0.635917,0.749745,0.442517,0.257565,0.801385,0.760291,0.878671,0.679777,0.683411,0.218161,0.0297127,0.522923,0.755813,0.294068,0.970917,0.0392573,0.121625,0.906591,0.789505,0.549095,0.203518,0.736274,0.374506,0.189739,0.402946,0.319689,0.743855,0.56294,0.705599,0.0498058,0.99069,0.695454,0.574512,0.98854,0.564806,0.26379,0.0596068,0.00613523,0.948785,0.0640138,0.482622,0.180103,0.803973,0.507269,0.162109,0.315016,0.769877,0.979202,0.183734,0.549447,0.954387,0.226829,0.585117,0.68808,0.486829,0.141161,0.267576,0.689039,0.671624,0.862395,0.849015,0.311691,0.0489182,0.864667,0.452269,0.00944453,0.733217,0.432661,0.706292,0.129739,0.235475,0.0392786,0.564258,0.637371,0.479699,0.727176,0.612321,0.346113,0.361156,0.627154,0.336292,0.539769,0.871692,0.649218,0.979056,0.38439,0.346923,0.548402,0.571859,0.203178,0.719711,0.00327528,0.173566,0.0751204,0.499317,0.536,0.629425,0.565326,0.944763,0.687753,0.681069,0.657283,0.0604669,0.574545,0.847017,0.729799,0.69604,0.885977,0.635196,0.17764,0.235731,0.707544,0.676701,0.979019,0.343656,0.817851,0.879048,0.41612,0.997192,0.937719,0.624569,0.706365,0.831405,0.785205,0.256877,0.742307,0.0190972,0.656346,0.586748,0.87153,0.826302,0.792993,0.500692,0.218289,0.992976,0.380903,0.640117,0.783606,0.552342,0.605811,0.456194,0.229719,0.413486,0.921588,0.39142,0.0594957,0.663118,0.931771,0.194436,0.0497845,0.0758115,0.806848,0.623324,0.151095,0.114761,0.720133,0.401697,0.993048,0.515675,0.442392,0.988204,0.0731093,0.930801,0.630335,0.728293,0.455287,0.87667,0.857722,0.0544823,0.0727417,0.173248,0.679642,0.335258,0.114458,0.0402612,0.304007,0.391549,0.740782,0.600811,0.265959,0.542994,0.440032,0.216298,0.408142,0.687532,0.447206,0.703696,0.276419,0.737074,0.340554,0.994523,0.0263205,0.909216,0.457653,0.00683439,0.112031,0.532433,0.770098,0.468831,0.0758023,0.74234,0.368054,0.199948,0.864663,0.370908,0.596045,0.694708,0.15262,0.464908,0.286884,0.355075,0.577979,0.733617,0.803025,0.976159,0.0253713,0.297209,0.270898,0.380753,0.855939,0.562098,0.706903,0.72211,0.691773,0.437332,0.104931,0.34122,0.646206,0.307861,0.21575,0.155772,0.493872,0.83967,0.624994,0.218157,0.989791,0.213774,0.838225,0.517798,0.843068,0.0628427,0.252013,0.473919,0.258271,0.352893,0.16487,0.603667,0.87638,0.933091,0.929467,0.38126,0.53274,0.277953,0.62824,0.165109,0.333209,0.372119,0.000552475,0.566078,0.747345,0.224004,0.0540397,0.0629056,0.793401,0.0126406,0.597407,0.842408,0.802983,0.0326146,0.604366,0.458209,0.222397,0.80132,0.356624,0.961365,0.169389,0.510606,0.0314342,0.0345624,0.179291,0.677122,0.937571,0.837811,0.421822,0.627021,0.948615,0.249428,0.656749,0.896104,0.0852956,0.447834,0.846241,0.0749536,0.10073,0.86843,0.333149,0.151334,0.220721,0.0495768,0.420163,0.70778,0.67605,0.316579,0.12148,0.88988,0.343115,0.818537,0.00224394,0.413202,0.0450013,0.60835,0.0868573,0.411408,0.449459,0.886058,0.830264,0.124577,0.294487,0.775854,0.150161,0.64382,0.0593113,0.838694,0.36219,0.733931,0.0842834,0.112248,0.896533,0.466532,0.640599,0.221604,0.515369,0.931823,0.527125,0.042918,0.0402474,0.0709959,0.920443,0.698849,0.692305,0.733511,0.777055,0.730765,0.999942,0.555939,0.00947505,0.695383,0.00136685,0.667571,0.324527,0.326945,0.422729,0.911498,0.234534,0.378608,0.171798,0.87592,0.352609,0.8268,0.846208,0.414472,0.682721,0.768432,0.0567842,0.801965,0.264422,0.0701076,0.451739,0.50684,0.125111,0.615904,0.915711,0.140336,0.924663,0.989862,0.212373,0.683877,0.746639,0.485651,0.56147,0.714871,0.328837,0.556817,0.776512,0.760324,0.560267,0.885123,0.458785,0.193919,0.459965,0.768613,0.911364,0.372907,0.868141,0.777547,0.348496,0.180645,0.296626,0.0176525,0.726532,0.0210869,0.834441,0.140823,0.259619,0.215967,0.0450857,0.911693,0.431885,0.343268,0.650706,0.935896,0.149837,0.769238,0.271831,0.605031,0.470247,0.812923,0.17855,0.160099,0.677144,0.354021,0.214311,0.325749,0.0426325,0.741209,0.193637,0.204031,0.3974,0.717635,0.842897,0.900829,0.748357,0.960482,0.0734524,0.781006,0.533032,0.601523,0.0800202,0.231707,0.354267,0.635589,0.316112,0.785411,0.747758,0.171176,0.0384721,0.240687,0.498731,0.64468,0.752083,0.675119,0.19435,0.198821,0.151701,0.657236,0.142947,0.551396,0.776005,0.202206,0.685222,0.00059849,0.45445,0.961593,0.367528,0.946672,0.748174,0.514771,0.542484,0.21497,0.0748503,0.718209,0.415345,0.186446,0.905357,0.332392,0.5097,0.0711508,0.596482,0.247091,0.378543,0.725849,0.397357,0.241006,0.109789,0.590335,0.243808,0.68338,0.561549,0.0770713,0.813821,0.568407,0.19135,0.36475,0.282416,0.73087,0.0222018,0.888177,0.730395,0.211856,0.0763369,0.805291,0.802912,0.214024,0.870253,0.620434,0.97598,0.744528,0.281792,0.538922,0.982196,0.134271,0.654813,0.124748,0.225908,0.46297,0.234833,0.993297,0.863798,0.909128,0.107014,0.639183,0.923017,0.354201,0.275605,0.878939,0.518278,0.0613887,0.832841,0.219516,0.507968,0.646274,0.181019,0.0900241,0.315933,0.726167,0.229631,0.23213,0.0261747,0.583879,0.336373,0.0309287,0.532445,0.012976,0.433597,0.980005,0.878585,0.837453,0.372321,0.351567,0.0834434,0.861919,0.212797,0.702044,0.506672,0.686287,0.281638,0.0487277,0.439648,0.109449,0.208895,0.770773,0.444453,0.974094,0.0557619,0.793917,0.399954,0.45104,0.313335,0.728904,0.825582,0.900716,0.119546,0.117728,0.82987,0.751522,0.831051,0.424215,0.756249,0.340873,0.466521,0.94541,0.63586,0.578711,0.478796,0.395657,0.501171,0.706183,0.763971,0.558211,0.147057,0.0656521,0.414627,0.380108,0.90654,0.18726,0.389065,0.950658,0.700696,0.0451729,0.949249,0.420276,0.725281,0.17494,0.0916126,0.399838,0.0251824,0.644269,0.618476,0.152419,0.549994,0.851531,0.518039,0.274429,0.795452,0.775657,0.0883942,0.0521447,0.854375,0.41736,0.519596,0.156239,0.425457,0.850958,0.758562,0.671364,0.543735,0.381799,0.588145,0.653496,0.567571,0.613757,0.165075,0.527294,0.371229,0.235419,0.835151,0.734883,0.611636,0.968488,0.525312,0.430838,0.770543,0.325184,0.603647,0.206835,0.813406,0.963771,0.349179,0.193958,0.208672,0.20043,0.0365714,0.225336,0.0537376,0.709793,0.154696,0.664542,0.209628,0.505964,0.620522,0.136153,0.293996,0.663715,0.998637,0.579572,0.640843,0.0949258,0.509,0.966802,0.193139,0.625439,0.554144,0.779843,0.641442,0.261017,0.378557,0.564747,0.0742205,0.115859,0.330773,0.0465533,0.0935578,0.560605,0.679199,0.575138,0.490423,0.593783,0.250006,0.936655,0.19532,0.87225,0.927855,0.45842,0.90822,0.0310022,0.148352,0.116494,0.711796,0.277126,0.779444,0.788596,0.0744957,0.750152,0.356034,0.176734,0.798959,0.483422,0.315645,0.465997,0.750841,0.259745,0.64671,0.530189,0.930612,0.3868,0.134908,0.0711444,0.060098,0.105352,0.189436,0.260285,0.818511,0.769911,0.345947,0.83929,0.234932,0.961103,0.0529364,0.0489243,0.0295698,0.221751,0.0969378,0.997,0.635408,0.759374,0.770178,0.61793,0.277945,0.137777,0.279483,0.93631,0.106898,0.525138,0.258689,0.386323,0.0199541,0.196554,0.110528,0.0871713,0.537452,0.985525,0.799754,0.395195,0.69982,0.88148,0.202677,0.614919,0.229716,0.459721,0.903062,0.0233738,0.583727,0.562026,0.0957624,0.470755,0.234519,0.60738,0.509561,0.426408,0.716337,0.92381,0.531361,0.25177,0.705896,0.157814,0.505857,0.756203,0.703283,0.407284,0.316435,0.514977,0.0221826,0.386507,0.662041,0.646262,0.0932037,0.379793,0.825423,0.412791,0.493547,0.869817,0.981106,0.370735,0.777644,0.150038,0.0943041,0.544483,0.877288,0.952526,0.495958,0.693621,0.404697,0.347447,0.371956,0.522112,0.602708,0.437592,0.202896,0.153535,0.488309,0.285207,0.130836,0.667973,0.222846,0.268903,0.567149,0.702923,0.393811,0.676503,0.277742,0.915228,0.731426,0.0614403,0.796495,0.301324,0.937191,0.551938,0.793001,0.991756,0.247517,0.893303,0.0939679,0.34678,0.537642,0.0814123,0.660467,0.586651,0.73059,0.698303,0.858744,0.236812,0.500692,0.593712,0.529081,0.0624483,0.545476,0.238004,0.799475,0.486507,0.287043,0.429365,0.759475,0.640559,0.424287,0.803694,0.545633,0.126905,0.624401,0.99709,0.477228,0.237399,0.221056,0.531029,0.133423,0.489878,0.269493,0.331093,0.788803,0.838072,0.769867,0.547406,0.170028,0.936725,0.991206,0.29206,0.620854,0.202444,0.532601,0.712678,0.345789,0.238583,0.579021,0.917146,0.264005,0.143807,0.249532,0.893366,0.267598,0.896379,0.547417,0.170878,0.200355,0.261236,0.260461,0.843832,0.819016,0.66092,0.18064,0.432628,0.52081,0.639834,0.57681,0.232798,0.320131,0.61839,0.00219607,0.965834,0.33224,0.691031,0.318992,0.281654,0.133072,0.50355,0.679371,0.318255,0.753146,0.263742,0.108288,0.646533,0.607517,0.447218,0.438854,0.672934,0.369609,0.508796,0.395179,0.190916,0.554389,0.960486,0.802521,0.20983,0.297998,0.0453312,0.962286,0.478735,0.405553,0.702487,0.561958,0.274246,0.540652,0.161251,0.970284,0.258537,0.0763105,0.6081,0.772856,0.69836,0.70187,0.443827,0.180543,0.672551,0.0855367,0.478064,0.562947,0.788122,0.324588,0.905138,0.369943,0.38341,0.93964,|0.149686,0.243193,0.246772,0.646463,0.850956,0.671817,0.448035,0.883687,0.532947,0.903765,0.00128162,0.463628,0.773338,0.751304,0.731133,0.912721,0.508837,0.81378,0.0386695,0.214902,0.89413,0.714735,0.290547,0.881096,0.286768,0.863467,0.521536,0.0311691,0.533068,0.769558,0.764389,0.119533,0.519903,0.296578,0.29257,0.764293,0.755404,0.910042,0.230789,0.707307,0.754694,0.996957,0.911379,0.127256,0.208405,0.0659857,0.424517,0.867734,0.631631,0.822854,0.738627,0.881082,0.715141,0.559794,0.66666,0.458683,0.223095,0.0470119,0.76051,0.0969428,0.667969,0.901258,0.938857,0.910508,0.95528,0.841026,0.0840665,0.378298,0.0368742,0.102654,0.278445,0.362939,0.272334,0.112879,0.926962,0.65296,0.729069,0.732382,0.32959,0.958961,0.925363,0.115636,0.507814,0.326219,0.0554348,0.631905,0.863048,0.299836,0.123102,0.873025,0.550439,0.757381,0.830526,0.307759,0.476054,0.245926,0.0517529,0.627513,0.523157,0.665967,0.411821,0.796161,0.517094,0.247904,0.827755,0.178798,0.00906819,0.127278,0.716541,0.489761,0.394958,0.0503383,0.00912917,0.521484,0.475396,0.745224,0.482842,0.682519,0.956785,0.639747,0.311287,0.0523571,0.108987,0.223198,0.678699,0.0827964,0.345091,0.304548,0.919244,0.627054,0.124683,0.487314,0.556923,0.388852,0.875019,0.183498,0.20029,0.535657,0.0143265,0.321286,0.419801,0.152501,0.106869,0.284332,0.100822,0.879956,0.94533,0.147119,0.697567,0.568773,0.33071,0.546467,0.881022,0.858856,0.476307,0.97284,0.242665,0.179564,0.589369,0.477835,0.676789,0.965815,0.061935,0.801962,0.391278,0.782904,0.188927,0.474083,0.889345,0.914986,0.350267,0.119981,0.181354,0.826142,0.400268,0.0326911,0.506334,0.708046,0.0865569,0.425915,0.320536,0.85654,0.92105,0.711518,0.840776,0.0687246,0.153294,0.200837,0.889006,0.562934,0.949051,0.0470537,0.323538,0.756219,0.527017,0.496547,0.0529681,0.470799,0.986431,0.0481369,0.0124896,0.661823,0.0104323,0.609165,0.487627,0.888768,0.376251,0.939844,0.714936,0.731503,0.482226,0.269518,0.457128,0.446593,0.808038,0.139163,0.600481,0.315569,0.506175,0.22197,0.290629,0.356576,0.458552,0.36647,0.728928,0.0856588,0.113081,0.526803,0.763245,0.95098,0.940753,0.547288,0.949289,0.388891,0.0870361,0.470551,0.458722,0.701415,0.632196,0.727034,0.416675,0.675256,0.299077,0.0425165,0.407581,0.109009,0.660451,0.724486,0.0409964,0.933988,0.24236,0.320963,0.75464,0.894824,0.322737,0.752098,0.880567,0.422098,0.0347348,0.0653652,0.156128,0.651145,0.260028,0.0664105,0.227075,0.650345,0.814674,0.130385,0.489263,0.164124,0.330851,0.304561,0.536407,0.365727,0.105149,0.753018,0.64626,0.686625,0.321502,0.826779,0.848888,0.78171,0.655004,0.883289,0.170417,0.435508,0.167933,0.459651,0.443302,0.165493,0.631611,0.438663,0.167144,0.72471,0.119672,0.934381,0.916925,0.0350072,0.76518,0.329004,0.0555092,0.91139,0.65665,0.703292,0.975046,0.0227728,0.900536,0.783059,0.255042,0.385039,0.887136,0.25717,0.644134,0.418804,0.296585,0.71099,0.13923,0.476005,0.0963459,0.361471,0.939466,0.0995415,0.847405,0.858074,0.920978,0.607429,0.212811,0.0881146,0.381036,0.0841731,0.759511,0.24167,0.558734,0.930947,0.270939,0.202479,0.0953541,0.139858,0.796906,0.0408633,0.965246,0.288127,0.43505,0.0720975,0.0547479,0.122708,0.73618,0.846406,0.234907,0.42261,0.60583,0.192176,0.134483,0.573764,0.945896,0.234587,0.751413,0.522277,0.0605107,0.799464,0.99392,0.857145,0.530697,0.782997,0.184784,0.521938,0.49212,0.871593,0.387026,0.148117,0.113672,0.900595,0.0558792,0.708259,0.0852087,0.270355,0.509366,0.272413,0.928024,0.814409,0.0687681,0.622904,0.0098933,0.194415,0.321404,0.209378,0.869071,0.0359115,0.671727,0.000171721,0.67497,0.391657,0.729937,0.850858,0.391425,0.580756,0.367093,0.248501,0.987555,0.429712,0.302933,0.89464,0.175727,0.49044,0.074248,0.145737,0.526803,0.456498,0.1861,0.334972,0.865741,0.959321,0.673668,0.770411,0.145245,0.737059,0.0194914,0.0920697,0.0996293,0.796644,0.980412,0.920698,0.438772,0.678536,0.467946,0.466329,0.153354,0.803885,0.709168,0.617037,0.632994,0.671116,0.252742,0.480238,0.535029,0.18796,0.97271,0.754445,0.68474,0.615158,0.868515,0.743533,0.660873,0.249058,0.478201,0.114248,0.693828,0.723649,0.958203,0.268133,0.843846,0.198683,0.764141,0.75899,0.170754,0.951388,0.899534,0.76288,0.312628,0.917444,0.261144,0.51903,0.709584,0.944544,0.794067,0.390754,0.464438,0.845789,0.320621,0.893016,0.702213,0.0568066,0.106889,0.840798,0.479935,0.782184,0.958291,0.445241,0.946325,0.487208,0.856549,0.23826,0.1141,0.371531,0.297433,0.371663,0.727343,0.495375,0.935749,0.159868,0.462236,0.242604,0.474571,0.757681,0.955403,0.50049,0.507155,0.582568,0.302174,0.48357,0.370801,0.0729864,0.489166,0.322999,0.822266,0.43071,0.923094,0.547412,0.242954,0.372565,0.317087,0.364826,0.820517,0.679559,0.0367233,0.539174,0.871863,0.509603,0.0671635,0.927655,0.39472,0.0794519,0.0255283,0.798276,0.042816,0.100553,0.094555,0.506767,0.78124,0.269789,0.314688,0.0361874,0.724246,0.384233,0.194166,0.391484,0.187291,0.689255,0.699353,0.320441,0.598724,0.397744,0.537248,0.842018,0.753985,0.499851,0.22503,0.251413,0.409327,0.85114,0.391519,0.840564,0.189463,0.789995,0.263826,0.481261,0.372691,0.0472102,0.10463,0.793093,0.782478,0.443231,0.23829,0.138547,0.237297,0.423472,0.579322,0.0454133,0.811144,0.417115,0.466079,0.223569,0.194296,0.00157022,0.732898,0.250216,0.487265,0.594867,0.0521822,0.4907,0.0467067,0.34085,0.00691718,0.133197,0.513424,0.989672,0.848509,0.341148,0.217636,0.747237,0.379527,0.153645,0.473094,0.665149,0.930613,0.132849,0.631975,0.023173,0.87176,0.664494,0.788256,0.709396,0.377924,0.539611,0.327196,0.587258,0.651312,0.930257,0.730308,0.295513,0.527206,0.191731,0.880856,0.0606297,0.750168,0.214869,0.833903,0.798992,0.98095,0.245063,0.406985,0.568166,0.965537,0.68767,0.492972,0.573723,0.859435,0.21596,0.941771,0.756256,0.260645,0.384159,0.467352,0.412161,0.0120644,0.520118,0.935804,0.581138,0.337923,0.408827,0.622673,0.705938,0.566633,0.986181,0.699479,0.666611,0.573192,0.367707,0.999451,0.684189,0.407225,0.277294,0.10464,0.4128,0.807965,0.687127,0.183624,0.86364,0.905241,0.225823,0.0103705,0.0676722,0.570509,0.826994,0.366652,0.775272,0.456274,0.580153,0.744734,0.137358,0.283517,0.367839,0.885813,0.73322,0.691216,0.972195,0.470774,0.681848,0.535538,0.945046,0.187029,0.63745,0.318481,0.0822811,0.405566,0.22738,0.919106,0.309498,0.413717,0.641386,0.662899,0.322353,0.294461,0.908534,0.473362,0.178627,0.989575,0.446831,0.451798,0.228596,0.973122,0.456761,0.0287726,0.17836,0.102095,0.175862,0.941111,0.0634081,0.899866,0.831979,0.620797,0.334952,0.606591,0.115301,0.570473,0.755048,0.371763,0.54268,0.245865,0.0504996,0.711511,0.680566,0.926592,0.978646,0.0649495,0.596169,0.399899,0.500524,0.508459,0.242792,0.462812,0.80376,0.532554,0.450831,0.391393,0.980053,0.701436,0.350923,0.371856,0.305106,0.957378,0.0754588,0.102565,0.47386,0.62631,0.506066,0.875439,0.915821,0.544549,0.618638,0.211048,0.896348,0.494779,0.0511255,0.374166,0.25973,0.826383,0.431723,0.018368,0.490643,0.574834,0.894531,0.753066,0.331731,0.780851,0.407637,0.545649,0.42528,0.0348333,0.168955,0.459306,0.21312,0.107132,0.710055,0.0624709,0.798602,0.0791605,0.895621,0.0402536,0.879987,0.697822,0.351255,0.393712,0.224978,0.640774,0.307292,0.62053,0.354546,0.098601,0.7072,0.162144,0.283592,0.568961,0.609823,0.318328,0.441612,0.953189,0.367568,0.105594,0.632745,0.422238,0.50127,0.990814,0.43526,0.0262392,0.100053,0.606835,0.415147,0.434199,0.161359,0.981176,0.30699,0.649381,0.240266,0.275145,0.271528,0.166881,0.0868684,0.213836,0.0555022,0.339754,0.561366,0.316515,0.613138,0.099656,0.375898,0.560372,0.273886,0.668997,0.491659,0.0218545,0.560812,0.555442,0.441011,0.47836,0.745681,0.954814,0.680888,0.470662,0.274502,0.261675,0.217489,0.980984,0.360269,0.22502,0.823084,0.643428,0.988924,0.532486,0.301751,0.55043,0.753732,0.81352,0.362977,0.197549,0.1576,0.0571366,0.533116,0.40723,0.296034,0.478943,0.807528,0.567649,0.0906687,0.637005,0.91348,0.519778,0.402858,0.0011549,0.804834,0.435638,0.66856,0.225997,0.870177,0.149544,0.0839682,0.453277,0.589643,0.683932,0.684815,0.850973,0.863465,0.780211,0.0434722,0.329475,0.419083,0.887516,0.354665,0.520706,0.00791514,0.102424,0.761727,0.201145,0.797021,0.910784,0.153302,0.362092,0.497116,0.557078,0.978072,0.0590055,0.0323867,0.816284,0.708511,0.0434683,0.519358,0.410476,0.090934,0.86172,0.478114,0.393992,0.0481937,0.810907,0.323135,0.545442,0.00896037,0.937171,0.815153,0.413459,0.738888,0.639948,0.0653222,0.0992637,0.795753,0.721462,0.416261,0.29043,0.459052,0.272409,0.779795,0.299751,0.839669,0.406111,0.31306,0.161989,0.241733,0.353886,0.939607,0.581134,0.449678,0.210515,0.38605,0.65069,0.759975,0.0141175,0.633849,0.733634,0.943567,0.332012,0.864305,0.798679,0.522387,0.298256,0.153908,0.642307,0.518513,0.302166,0.656799,0.460999,0.823087,0.268788,0.837403,0.611935,0.729414,0.249378,0.435539,0.154762,0.927511,0.620167,0.637417,0.280725,0.90472,0.155317,0.0396054,0.697409,0.0780601,0.620023,0.497299,0.780499,0.968026,0.840161,0.197002,0.619801,0.329899,0.415138,0.439867,0.569137,0.401679,0.299623,0.885533,0.914336,0.0952219,0.971148,0.871218,0.694232,0.203037,0.744433,0.92446,0.52127,0.313156,|0.646633,0.997848,0.638289,0.887023,0.857882,0.69719,0.0413344,0.544909,0.367321,0.139162,0.221374,0.508509,0.593912,0.013129,0.649158,0.0232059,0.675572,0.44506,0.928127,0.323637,0.388065,0.689255,0.996167,0.53085,0.521388,0.951997,0.949471,0.570432,0.926473,0.464255,0.622351,0.864195,0.290845,0.15863,0.145902,0.36651,0.825013,0.966475,0.00310022,0.264264,0.191031,0.749023,0.412831,0.900527,0.342009,0.643432,0.173341,0.811822,0.41247,0.861376,0.0684187,0.826804,0.450299,0.142537,0.0943976,0.604239,0.910946,0.0469215,0.856303,0.269896,0.924093,0.988987,0.600762,0.910079,0.091493,0.750004,0.495274,0.122801,0.425716,0.359101,0.590034,0.98621,0.89622,0.210309,0.058329,0.807072,0.964135,0.19399,0.313708,0.959862,0.631298,0.739888,0.516385,0.571352,0.693304,0.23264,0.595474,0.657665,0.838415,0.050215,0.421811,0.235011,0.267333,0.888781,0.458441,0.0133739,0.506461,0.425712,0.359409,0.884298,0.263954,0.178865,0.188749,0.755039,0.980191,0.580374,0.234897,0.313385,0.479447,0.608586,0.463656,0.022702,0.403189,0.978159,0.647574,0.193748,0.0148755,0.372632,0.85354,0.642838,0.471965,0.860501,0.199586,0.00275683,0.976067,0.858051,0.278951,0.519278,0.562837,0.110169,0.172358,0.748951,0.995467,0.231809,0.810119,0.720006,0.38563,0.849679,0.527382,0.762111,0.387877,0.257585,0.230597,0.733433,0.760177,0.248689,0.988315,0.0433233,0.763189,0.518825,0.565791,0.356176,0.737008,0.391113,0.124062,0.881349,0.554311,0.983287,0.434429,0.405048,0.522767,0.483031,0.99386,0.624565,0.167259,0.200261,0.0993835,0.816049,0.209197,0.0997939,0.53899,0.999869,0.644009,0.872625,0.800686,0.971013,0.0066967,0.704416,0.367142,0.667394,0.320243,0.919836,0.537157,0.747621,0.519652,0.493695,0.188866,0.41842,0.58475,0.281079,0.911072,0.0578141,0.412044,0.374125,0.776573,0.115182,0.794881,0.0909251,0.0643361,0.729098,0.358016,0.272797,0.294486,0.636588,0.279905,0.71902,0.161711,0.751003,0.87656,0.449262,0.186221,0.417205,0.65261,0.157204,0.00485456,0.800697,0.586541,0.649553,0.142086,0.0783396,0.455577,0.411183,0.788838,0.927116,0.15973,0.0696901,0.795486,0.305291,0.668647,0.335104,0.741927,0.797956,0.990673,0.298002,0.42447,0.027741,0.942052,0.153782,0.1869,0.175526,0.187825,0.0573089,0.114541,0.0413519,0.722211,0.694272,0.809889,0.73728,0.149576,0.739679,0.294069,0.836876,0.670697,0.7453,0.201132,0.635198,0.234068,0.637223,0.029417,0.0589753,0.724832,0.0642862,0.493234,0.958414,0.798602,0.955021,0.0172086,0.979747,0.780068,0.334257,0.26821,0.278433,0.748871,0.949435,0.209506,0.385496,0.099179,0.762002,0.0947357,0.122591,0.318428,0.692361,0.402194,0.733147,0.184495,0.776484,0.950968,0.462331,0.616797,0.488323,0.45633,0.986515,0.181797,0.212094,0.636233,0.805115,0.44824,0.716034,0.615779,0.0216264,0.337321,0.192634,0.877169,0.944868,0.107329,0.106992,0.87663,0.214531,0.796358,0.889228,0.804569,0.376108,0.858514,0.929726,0.360352,0.940878,0.503453,0.281229,0.723924,0.275595,0.825798,0.89326,0.974471,0.684742,0.0714834,0.96343,0.50575,0.530382,0.868823,0.783106,0.686226,0.115532,0.179396,0.78971,0.289838,0.769527,0.18178,0.337,0.493456,0.515052,0.793325,0.122717,0.159486,0.742917,0.870883,0.757379,0.683163,0.474019,0.637043,0.14181,0.801079,0.609789,0.116589,0.602138,0.833759,0.380659,0.165813,0.177161,0.234991,0.619778,0.925195,0.588456,0.344695,0.302865,0.749079,0.648466,0.737087,0.403142,0.160088,0.446574,0.127655,0.232838,0.561559,0.185205,0.690434,0.487037,0.978009,0.417405,0.77634,0.71731,0.578383,0.577811,0.109861,0.408361,0.597778,0.927704,0.480762,0.13762,0.7586,0.816589,0.832376,0.215074,0.566556,0.80096,0.0211941,0.779011,0.876361,0.232649,0.0900394,0.241882,0.419279,0.11623,0.0882407,0.27594,0.350453,0.400061,0.491458,0.186122,0.93357,0.049451,0.748312,0.605791,0.539915,0.839108,0.534078,0.949154,0.723162,0.00662273,0.463595,0.0435448,0.0621293,0.746879,0.512054,0.596861,0.417466,0.382155,0.661529,0.632849,0.969518,0.765556,0.747917,0.614574,0.683015,0.520887,0.285168,0.547622,0.223987,0.86282,0.29903,0.905025,0.582569,0.950856,0.777394,0.0811347,0.214346,0.501249,0.93156,0.0863612,0.859058,0.236035,0.698258,0.173502,0.302808,0.203226,0.544872,0.815991,0.647873,0.720965,0.398591,0.935781,0.843388,0.0992197,0.410537,0.829415,0.448056,0.950325,0.47566,0.25504,0.184556,0.738921,0.506511,0.981048,0.416055,0.940057,0.505106,0.0586874,0.345888,0.749479,0.9691,0.455546,0.614957,0.891079,0.468764,0.119623,0.669841,0.230566,0.45298,0.929861,0.680116,0.255434,0.146761,0.791106,0.560857,0.926461,0.98141,0.270807,0.876043,0.169699,0.444578,0.464321,0.556476,0.574555,0.452654,0.929416,0.478294,0.155333,0.176531,0.756701,0.939268,0.930765,0.858454,0.839434,0.674819,0.117595,0.200912,0.564946,0.59604,0.729458,0.151495,0.389847,0.452318,0.0378861,0.579524,0.400343,0.0817409,0.643134,0.731845,0.0407292,0.93738,0.82964,0.0964874,0.92888,0.270634,0.992516,0.828097,0.25238,0.929956,0.583227,0.271281,0.0772055,0.0177971,0.966246,0.667863,0.571467,0.68804,0.19124,0.841122,0.247508,0.149667,0.849533,0.917666,0.471175,0.917441,0.0154327,0.668737,0.723141,0.54579,0.0753874,0.504137,0.604174,0.892794,0.535656,0.436624,0.106121,0.720389,0.941396,0.330403,0.923806,0.494058,0.714534,0.431886,0.243952,0.36004,0.22478,0.812281,0.0265467,0.51044,0.789338,0.591071,0.1023,0.320595,0.38455,0.0770651,0.25531,0.80569,0.676516,0.297815,0.864287,0.187701,0.127916,0.0548373,0.525467,0.566916,0.745453,0.991123,0.771826,0.387965,0.0835091,0.567196,0.171462,0.958318,0.485934,0.962676,0.741174,0.606416,0.828364,0.764364,0.29692,0.705784,0.976149,0.963252,0.552794,0.233756,0.83049,0.449744,0.855513,0.982669,0.53732,0.198862,0.633749,0.344081,0.189671,0.20067,0.158952,0.83628,0.279165,0.381771,0.490022,0.320162,0.447696,0.292237,0.470963,0.0937598,0.303601,0.366651,0.743821,0.233488,0.0335498,0.438915,0.672037,0.859924,0.38217,0.870958,0.412628,0.582103,0.583457,0.99663,0.148979,0.697389,0.181755,0.755688,0.417039,0.718497,0.562646,0.670586,0.451862,0.220413,0.264871,0.829083,0.504687,0.18544,0.845449,0.0869687,0.39756,0.234544,0.565226,0.0821158,0.0170738,0.919942,0.0510721,0.927442,0.54508,0.241665,0.00139546,0.798553,0.00724494,0.157767,0.91263,0.603347,0.316292,0.806685,0.624369,0.773616,0.10237,0.312103,0.658883,0.408375,0.530725,0.742523,0.487699,0.709694,0.974476,0.109835,0.819343,0.845874,0.876777,0.00711113,0.124584,0.0103056,0.0460199,0.820446,0.0212482,0.238954,0.189658,0.524165,0.737986,0.103799,0.486708,0.46625,0.937285,0.888407,0.0534904,0.922489,0.384095,0.842555,0.34686,0.566714,0.281773,0.270541,0.864172,0.504755,0.971913,0.583223,0.686255,0.181088,0.0704384,0.747285,0.586985,0.624146,0.75772,0.526853,0.709925,0.656947,0.594469,0.936484,0.197267,0.145525,0.268351,0.794126,0.738486,0.660614,0.724241,0.336641,0.804281,0.939719,0.532566,0.792326,0.197578,0.399766,0.813279,0.858732,0.85036,0.876001,0.139241,0.421942,0.936719,0.612958,0.873042,0.27895,0.728278,0.39052,0.559131,0.338395,0.524475,0.834321,0.391733,0.965903,0.0294893,0.678816,0.937477,0.903483,0.77052,0.276333,0.245892,0.710943,0.919736,0.30249,0.180986,0.00962639,0.0539043,0.203809,0.714003,0.707312,0.5034,0.189432,0.526418,0.986329,0.675707,0.0448171,0.920618,0.645841,0.406217,0.289746,0.38047,0.0446235,0.181511,0.0533962,0.382028,0.798076,0.325395,0.244559,0.841357,0.966612,0.748377,0.489191,0.739048,0.193819,0.975177,0.360265,0.31379,0.566564,0.827662,0.771375,0.713887,0.495397,0.724454,0.0188978,0.71097,0.373275,0.901202,0.949918,0.361214,0.247044,0.793981,0.239993,0.98671,0.76737,0.872008,0.617081,0.573612,0.173046,0.124793,0.400526,0.688225,0.689391,0.168491,0.919819,0.16675,0.269878,0.437147,0.123691,0.383446,0.828661,0.581974,0.687888,0.618479,0.945843,0.978891,0.798565,0.0909809,0.583391,0.476815,0.951539,0.539889,0.431732,0.42644,0.115399,0.175276,0.910639,0.596761,0.543887,0.694633,0.873936,0.880038,0.116817,0.76576,0.35671,0.119887,0.50834,0.583726,0.162547,0.247612,0.773325,0.930434,0.794908,0.268398,0.522514,0.525019,0.668087,0.0703882,0.0938539,0.416553,0.555245,0.329318,0.793208,0.39716,0.805222,0.706361,0.813432,0.242359,0.868099,0.474899,0.881296,0.739669,0.49257,0.364139,0.703207,0.397603,0.932257,0.856907,0.24777,0.0285403,0.353439,0.264893,0.85362,0.712839,0.372733,0.472836,0.465641,0.396889,0.395224,0.849061,0.79002,0.793374,0.95378,0.195222,0.63811,0.22775,0.698895,0.91229,0.731035,0.516451,0.117247,0.325288,0.986462,0.0175109,0.0361218,0.0707181,0.820449,0.537051,0.539186,0.60013,0.308834,0.123934,0.245411,0.86016,0.845366,0.931733,0.505239,0.828556,0.61009,0.792868,0.980719,0.825301,0.442695,0.144537,0.624338,0.235662,0.158727,0.111222,0.137751,0.742081,0.270809,0.263014,0.891706,0.272328,0.154345,0.214212,0.637985,0.545336,0.641364,0.475754,0.230407,0.889582,0.0294536,0.637013,0.24526,0.198582,0.661418,0.60967,0.787611,0.325927,0.132767,0.063151,0.477833,0.0417084,0.803937,0.829409,0.686579,0.879893,0.639271,0.0878118,0.488387,0.0970271,0.567812,0.629409,0.437783,0.391052,0.383216,0.874668,0.869429,0.917912,0.0234156,0.277599,0.4373,0.586865,0.596285,0.953044,0.713838,0.12822,|0.0133468,0.0714868,0.0342463,0.694154,0.0675644,0.717139,0.717775,0.28277,0.860406,0.947005,0.931272,0.861008,0.599797,0.894584,0.191434,0.460768,0.943388,0.272365,0.768647,0.63317,0.850633,0.610663,0.888888,0.849973,0.307456,0.626019,0.364162,0.737079,0.646364,0.939693,0.761399,0.92223,0.962707,0.884569,0.659925,0.670915,0.863661,0.316047,0.592391,0.93472,0.327161,0.832091,0.883014,0.0855232,0.121839,0.589916,0.441195,0.0767525,0.873573,0.306233,0.113895,0.26628,0.0824626,0.793396,0.101129,0.582922,0.449488,0.31331,0.798643,0.304322,0.645443,0.0121558,0.66647,0.744537,0.826335,0.180472,0.615684,0.997493,0.228064,0.0568355,0.118326,0.151634,0.155924,0.5961,0.0515992,0.120488,0.158987,0.380199,0.193198,0.914878,0.782561,0.168679,0.33147,0.647902,0.466138,0.831044,0.431098,0.547106,0.610059,0.0720626,0.200983,0.702129,0.437836,0.0272689,0.0459269,0.55414,0.340768,0.871211,0.635251,0.260243,0.86054,0.940094,0.706597,0.990281,0.300785,0.800791,0.292557,0.997642,0.548766,0.375498,0.524754,0.0962781,0.299098,0.319367,0.513312,0.980828,0.9196,0.500446,0.535311,0.0774712,0.346798,0.778965,0.974343,0.15277,0.0535577,0.92238,0.473073,0.316887,0.75157,0.389174,0.25989,0.563938,0.183296,0.0550202,0.844963,0.733367,0.96111,0.444409,0.328874,0.705675,0.400822,0.415168,0.0206978,0.054599,0.516418,0.744659,0.767465,0.124848,0.612439,0.354026,0.564658,0.730607,0.353816,0.718903,0.278552,0.997645,0.0331929,0.719835,0.959096,0.602624,0.145854,0.845148,0.550448,0.345392,0.0683046,0.30179,0.858988,0.715512,0.747138,0.646146,0.242381,0.412119,0.495053,0.689389,0.108235,0.0177179,0.0230086,0.244315,0.338428,0.718742,0.00816512,0.640969,0.167532,0.029604,0.332476,0.556722,0.910552,0.454532,0.905984,0.897161,0.633544,0.600976,0.254052,0.301306,0.0919601,0.530361,0.97621,0.599119,0.115465,0.621309,0.0320377,0.873513,0.314166,0.48043,0.538553,0.182361,0.6125,0.198723,0.683833,0.864002,0.592614,0.39849,0.964664,0.7885,0.794708,0.504486,0.420241,0.991935,0.291336,0.595958,0.146195,0.0730724,0.309354,0.607665,0.616538,0.506857,0.767261,0.582878,0.0131435,0.38223,0.78446,0.910269,0.28556,0.685325,0.391146,0.857434,0.133361,0.1224,0.313893,0.645855,0.466659,0.246222,0.691647,0.259572,0.838406,0.181781,0.761991,0.347656,0.270914,0.285963,0.150994,0.958651,0.750799,0.879598,0.176287,0.841218,0.992896,0.917552,0.74961,0.792737,0.88871,0.815435,0.520817,0.227375,0.450276,0.2863,0.779602,0.797596,0.655623,0.138504,0.263386,0.336973,0.1478,0.346013,0.857248,0.499234,0.616255,0.24943,0.0993084,0.419529,0.90039,0.95693,0.0751228,0.157708,0.866625,0.0265331,0.28935,0.411898,0.988759,0.927059,0.707263,0.485104,0.175844,0.583747,0.96186,0.82509,0.625916,0.325267,0.394092,0.415183,0.0677209,0.140695,0.0543604,0.107683,0.595766,0.63136,0.923061,0.572776,0.506125,0.0871284,0.824396,0.589855,0.75353,0.539043,0.649997,0.0686348,0.306902,0.918401,0.659051,0.642652,0.335948,0.180811,0.835041,0.568091,0.482481,0.417594,0.312305,0.263831,0.0745202,0.417064,0.627069,0.197657,0.231774,0.47712,0.664047,0.783286,0.965336,0.130712,0.325528,0.0773492,0.657571,0.235324,0.234385,0.261687,0.799363,0.934002,0.382772,0.843631,0.451715,0.0064292,0.629216,0.448803,0.515118,0.915929,0.805639,0.279104,0.658558,0.230787,0.435807,0.604961,0.105822,0.207569,0.508796,0.168106,0.203943,0.0357334,0.666322,0.405846,0.588127,0.43891,0.542062,0.0466649,0.384041,0.868792,0.0634071,0.494766,0.0243289,0.329437,0.483563,0.540471,0.514102,0.16507,0.95934,0.452372,0.841067,0.0362775,0.716989,0.163786,0.912914,0.604931,0.58321,0.53392,0.552583,0.112405,0.778054,0.322694,0.637816,0.229229,0.724805,0.556572,0.572292,0.895591,0.56549,0.888867,0.605979,0.0937476,0.932966,0.726254,0.156379,0.156885,0.709171,0.33143,0.466962,0.505794,0.428108,0.90236,0.600864,0.275471,0.835203,0.435499,0.852364,0.0129998,0.19352,0.572029,0.290194,0.75274,0.652149,0.888509,0.19719,0.028766,0.850661,0.764143,0.481069,0.724366,0.170516,0.111369,0.721316,0.789559,0.085905,0.527103,0.758664,0.77722,0.572361,0.960696,0.114912,0.176869,0.114798,0.914096,0.117835,0.115065,0.408168,0.344738,0.71783,0.699966,0.428547,0.701134,0.642044,0.074617,0.956366,0.162108,0.365906,0.518188,0.572936,0.995711,0.771363,0.214847,0.382461,0.100467,0.00408465,0.694872,0.60646,0.283816,0.940774,0.56095,0.859782,0.424208,0.175372,0.202738,0.785889,0.620276,0.369681,0.742706,0.42735,0.859202,0.453774,0.118729,0.919616,0.560523,0.183384,0.738307,0.0444514,0.369779,0.940813,0.347444,0.65506,0.814696,0.78696,0.608697,0.98606,0.337457,0.807743,0.824269,0.175712,0.0941041,0.122876,0.790109,0.0376728,0.680688,0.186028,0.148506,0.289395,0.450788,0.772779,0.92711,0.135818,0.0443095,0.643415,0.00985432,0.961967,0.0510221,0.960476,0.906749,0.826417,0.28445,0.656146,0.266992,0.450568,0.487687,0.291455,0.968466,0.901013,0.10936,0.150843,0.433802,0.557251,0.142292,0.097306,0.696544,0.50273,0.901806,0.5021,0.770216,0.513861,0.0122989,0.252237,0.650594,0.755414,0.129661,0.865528,0.0399994,0.939745,0.233148,0.875918,0.42547,0.412209,0.798618,0.226006,0.811668,0.226674,0.511533,0.869806,0.811352,0.62641,0.993869,0.485721,0.459872,0.263373,0.768945,0.837124,0.479814,0.864404,0.588412,0.84186,0.5025,0.551446,0.210389,0.957783,0.929685,0.249259,0.379797,0.717394,0.678312,0.511304,0.797425,0.748995,0.80074,0.959111,0.641852,0.793251,0.269782,0.10336,0.313028,0.265782,0.572016,0.21267,0.283757,0.947795,0.0588297,0.0208724,0.952841,0.619248,0.0417361,0.933051,0.324575,0.962434,0.633095,0.975368,0.714606,0.482523,0.544215,0.44654,0.990899,0.461576,0.660634,0.600456,0.0985352,0.375082,0.0330498,0.844894,0.469394,0.133856,0.0922881,0.15065,0.463677,0.405425,0.582582,0.382149,0.415628,0.869369,0.868268,0.250727,0.467016,0.97706,0.795273,0.0630692,0.108433,0.0115881,0.872109,0.567702,0.126597,0.274095,0.846598,0.890764,0.860622,0.26383,0.143642,0.563765,0.00494784,0.388342,0.0829291,0.945092,0.553293,0.274067,0.334398,0.486982,0.820486,0.845966,0.420267,0.722863,0.17992,0.498993,0.199889,0.274532,0.0332124,0.0307077,0.580089,0.348816,0.284715,0.199941,0.605628,0.30628,0.925959,0.0561689,0.519447,0.803114,0.200355,0.512802,0.416159,0.648977,0.195992,0.0505999,0.725131,0.210212,0.633077,0.204125,0.354294,0.590475,0.19021,0.448421,0.0225745,0.532614,0.281701,0.299271,0.521921,0.772094,0.542572,0.750565,0.568432,0.613924,0.50368,0.891646,0.775625,0.762821,0.147687,0.453992,0.669228,0.430787,0.741158,0.709205,0.519719,0.786175,0.766479,0.758856,0.824455,0.578403,0.346804,0.188015,0.578923,0.650538,0.468625,0.924737,0.82631,0.0926701,0.528554,0.665573,0.265016,0.575492,0.468585,0.663469,0.633053,0.575826,0.371635,0.705064,0.453469,0.133778,0.0295916,0.440729,0.93471,0.272982,0.479851,0.0518796,0.402479,0.909576,0.969154,0.0743247,0.831427,0.457174,0.0865387,0.939418,0.209698,0.958454,0.861471,0.408513,0.534588,0.322411,0.469598,0.390254,0.961586,0.168766,0.119461,0.38703,0.965889,0.291945,0.0952135,0.85947,0.296695,0.951362,0.779607,0.0175632,0.777821,0.58129,0.870791,0.11396,0.18354,0.260732,0.778303,0.0161508,0.193834,0.436017,0.598242,0.624143,0.142857,0.51203,0.761202,0.781473,0.29198,0.455289,0.753475,0.657464,0.028883,0.668846,0.739453,0.237544,0.899503,0.959625,0.573647,0.90869,0.972555,0.660257,0.319542,0.915515,0.247329,0.340086,0.924065,0.968693,0.0371272,0.927483,0.230576,0.960668,0.494199,0.193633,0.315786,0.434993,0.207916,0.277308,0.0886743,0.668951,0.410589,0.231365,0.650999,0.615666,0.417489,0.213757,0.0491519,0.331968,0.444504,0.491978,0.489788,0.630148,0.228503,0.616825,0.646858,0.551248,0.606374,0.0567274,0.180252,0.510794,0.402762,0.188189,0.397256,0.313297,0.0926766,0.187937,0.0694847,0.316269,0.346408,0.156739,0.891629,0.722958,0.668715,0.235734,0.39005,0.937604,0.454845,0.63629,0.763482,0.830648,0.103813,0.175575,0.113928,0.316844,0.62714,0.588846,0.0889211,0.623825,0.327767,0.346666,0.919503,0.635414,0.937027,0.302928,0.830605,0.178089,0.448944,0.633277,0.100601,0.401527,0.253132,0.863873,0.302047,0.758409,0.60121,0.529369,0.957848,0.493031,0.922486,0.797793,0.178184,0.383093,0.584117,0.498806,0.722551,0.304594,0.776524,0.172244,0.911311,0.0489953,0.0162176,0.942773,0.170498,0.707586,0.473084,0.500887,0.192779,0.051928,0.891732,0.352148,0.480006,0.565807,0.0764877,0.988823,0.973324,0.402052,0.739329,0.479017,0.481903,0.746408,0.989232,0.662023,0.431867,0.51982,0.142883,0.377774,0.837333,0.696752,0.946734,0.12938,0.516962,0.455746,0.294766,0.235915,0.325964,0.594214,0.72988,0.949881,0.977045,0.682546,0.10917,0.464084,0.57703,0.86115,0.737309,0.990576,0.248671,0.867942,0.852841,0.0791383,0.585387,0.876808,0.870284,0.888366,0.497941,0.522853,0.680392,0.325819,0.226156,0.313187,0.647148,0.024304,0.408601,0.850871,0.617506,0.121695,0.666415,0.848179,0.288711,0.646594,0.0861303,0.728872,0.317514,0.663661,0.435381,0.290089,0.345294,0.134127,0.788897,0.698186,0.0555826,0.390049,0.63598,0.848112,0.790308,0.981302,0.0555881,0.480421,0.884862,0.219304,0.983906,0.259354,0.630876,0.321552,0.285301,0.942969,0.389683,0.264897,0.369859,0.677318,0.295025,0.266233,0.443575,|0.652584,0.727097,0.64004,0.241743,0.904842,0.743447,0.842057,0.320572,0.909858,0.75151,0.503273,0.084343,0.877736,0.911361,0.0664687,0.973289,0.937116,0.925556,0.547258,0.8714,0.674566,0.731562,0.984291,0.0327271,0.289016,0.575725,0.551335,0.905257,0.380888,0.0187268,0.369083,0.190137,0.0158666,0.77185,0.516581,0.493147,0.736418,0.434297,0.791839,0.10177,0.405449,0.861065,0.621337,0.345438,0.568971,0.420491,0.273647,0.9531,0.797296,0.662946,0.809394,0.295135,0.615526,0.0528236,0.0228077,0.734613,0.429716,0.223171,0.521467,0.368596,0.130522,0.630846,0.0340034,0.283908,0.357565,0.681292,0.605715,0.845994,0.599175,0.940191,0.415723,0.0336281,0.899082,0.328999,0.390021,0.276517,0.459238,0.208851,0.991234,0.553101,0.0201432,0.114089,0.842202,0.619517,0.065967,0.122046,0.206078,0.661143,0.309052,0.138559,0.748436,0.100963,0.04025,0.041571,0.854427,0.978597,0.120709,0.529023,0.0741801,0.249606,0.867536,0.113847,0.411979,0.756273,0.0794129,0.161703,0.490084,0.817843,0.182656,0.927279,0.102571,0.854233,0.108484,0.858118,0.00506383,0.955141,0.699384,0.321927,0.223102,0.305079,0.0102342,0.946309,0.128599,0.72944,0.868622,0.669871,0.121404,0.301855,0.523449,0.825604,0.0751327,0.662678,0.808079,0.502977,0.427846,0.950267,0.308201,0.433188,0.247745,0.821733,0.837634,0.151257,0.878298,0.119409,0.683104,0.898748,0.0114713,0.82606,0.905519,0.297377,0.73027,0.250978,0.26715,0.811013,0.976762,0.605583,0.172818,0.76643,0.73096,0.531504,0.100169,0.650357,0.134811,0.785712,0.89016,0.0804428,0.00548869,0.571185,0.117423,0.870861,0.413307,0.811059,0.0452744,0.706248,0.920678,0.329353,0.330561,0.740374,0.924706,0.24077,0.959068,0.256395,0.230789,0.390139,0.169936,0.432057,0.438979,0.0204134,0.348899,0.652494,0.959606,0.520224,0.036074,0.212106,0.998446,0.333515,0.164078,0.402456,0.211275,0.640963,0.548844,0.214082,0.343116,0.201203,0.0329865,0.968814,0.937536,0.129183,0.915449,0.694516,0.836038,0.0774328,0.904065,0.205609,0.406379,0.0611801,0.617126,0.040962,0.961367,0.736024,0.75438,0.228049,0.659509,0.0409805,0.787166,0.903477,0.583846,0.864679,0.671102,0.866596,0.312255,0.678289,0.479068,0.271596,0.470548,0.48244,0.508504,0.983064,0.341954,0.684947,0.390112,0.400089,0.0507042,0.5932,0.735771,0.734763,0.607957,0.339026,0.463722,0.876282,0.0280501,0.198042,0.540689,0.428289,0.59993,0.159706,0.138521,0.206733,0.66922,0.659912,0.530515,0.809577,0.967284,0.981907,0.906348,0.606707,0.525188,0.873935,0.553268,0.433516,0.648558,0.439644,0.782332,0.6077,0.368074,0.448984,0.475196,0.41892,0.869255,0.138978,0.0594135,0.568022,0.00688571,0.579026,0.191544,0.116345,0.627436,0.488665,0.108761,0.088333,0.00728565,0.555529,0.765213,0.961834,0.482619,0.313629,0.159934,0.61178,0.16781,0.774326,0.803932,0.719409,0.164024,0.814922,0.605491,0.076449,0.6657,0.648921,0.888339,0.475707,0.220477,0.663417,0.809527,0.18062,0.00245696,0.63258,0.184784,0.576469,0.149728,0.60538,0.690454,0.598505,0.680479,0.351998,0.638122,0.399961,0.825115,0.0801156,0.802819,0.635985,0.535675,0.285015,0.513702,0.393711,0.0846128,0.025812,0.245656,0.948843,0.715334,0.584938,0.366858,0.476953,0.8557,0.174375,0.609448,0.310576,0.472936,0.248174,0.778201,0.902333,0.941238,0.354101,0.823897,0.815378,0.282284,0.192327,0.505924,0.120349,0.90685,0.798088,0.0319992,0.922287,0.564832,0.248651,0.782496,0.69511,0.36331,0.753895,0.30608,0.767306,0.550464,0.693668,0.977312,0.195856,0.373849,0.22734,0.551635,0.896168,0.388014,0.804706,0.464072,0.673627,0.391801,0.310934,0.789211,0.162385,0.607731,0.0222656,0.793529,0.101404,0.158093,0.335602,0.921642,0.126182,0.020685,0.48884,0.1352,0.218054,0.387022,0.0980261,0.42761,0.307052,0.411354,0.200858,0.205227,0.99698,0.759381,0.18474,0.0328611,0.839054,0.958269,0.8673,0.479796,0.765844,0.335965,0.467335,0.520989,0.136229,0.255858,0.0237951,0.340541,0.862383,0.103153,0.855552,0.268849,0.647558,0.608197,0.912811,0.472424,0.376716,0.0569262,0.494607,0.943186,0.840513,0.205952,0.982904,0.491957,0.489831,0.513257,0.701469,0.856403,0.0122089,0.384237,0.270489,0.0403359,0.864673,0.0545544,0.831351,0.551874,0.139635,0.919808,0.274167,0.329467,0.346703,0.995983,0.635119,0.267798,0.71658,0.861728,0.531547,0.101542,0.739483,0.260591,0.291015,0.719697,0.481398,0.841137,0.685101,0.44138,0.831899,0.86589,0.195743,0.949543,0.260719,0.0558777,0.709381,0.177739,0.237284,0.305731,0.209483,0.680205,0.335691,0.843919,0.79215,0.912744,0.927411,0.0852089,0.203705,0.177018,0.0765369,0.407025,0.163394,0.0942929,0.430097,0.690639,0.00555354,0.753576,0.0922679,0.17315,0.845478,0.554991,0.726804,0.942672,0.245396,0.657392,0.624728,0.212164,0.494209,0.262599,0.673399,0.697872,0.0342059,0.346584,0.0695868,0.157123,0.670518,0.129139,0.794411,0.095865,0.0294596,0.768366,0.0479859,0.0233084,0.461024,0.966011,0.164631,0.137645,0.770391,0.735211,0.735671,0.574973,0.768668,0.0233895,0.929004,0.82081,0.287875,0.631326,0.285203,0.965426,0.942066,0.569592,0.987612,0.691631,0.812542,0.229167,0.311296,0.860097,0.58295,0.429297,0.302199,0.181739,0.951706,0.396104,0.0651186,0.71967,0.732848,0.917862,0.0875455,0.0537447,0.078575,0.910175,0.925,0.788086,0.196302,0.692678,0.770515,0.525097,0.735914,0.583438,0.334303,0.150999,0.523071,0.530257,0.0361756,0.11868,0.998544,0.65031,0.3333,0.808122,0.752957,0.259967,0.290583,0.870425,0.628746,0.272379,0.585222,0.22116,0.214844,0.67666,0.298163,0.60939,0.734132,0.72762,0.714527,0.661187,0.117261,0.0472253,0.705171,0.0894241,0.389462,0.568478,0.156484,0.544047,0.300741,0.0222788,0.853744,0.778618,0.339577,0.39864,0.756672,0.416687,0.180963,0.45917,0.302602,0.804627,0.123143,0.517015,0.288369,0.326362,0.7482,0.22158,0.0603395,0.200512,0.235917,0.385045,0.587323,0.480401,0.50581,0.774981,0.473582,0.927992,0.579262,0.840706,0.384995,0.0879151,0.90776,0.652412,0.211984,0.82923,0.086161,0.656673,0.908527,0.0754179,0.9716,0.203881,0.611629,0.605969,0.857922,0.786926,0.706395,0.876932,0.975983,0.263141,0.900989,0.487069,0.719404,0.110369,0.844819,0.58106,0.620387,0.0143838,0.202953,0.679596,0.915665,0.266227,0.973335,0.54916,0.133257,0.79578,0.447387,0.231882,0.652972,0.692943,0.0273237,0.32098,0.996793,0.980585,0.125941,0.273507,0.0197943,0.933247,0.246255,0.47447,0.744051,0.679131,0.933533,0.0560896,0.766666,0.446162,0.274535,0.956299,0.245998,0.576142,0.673984,0.528326,0.594401,0.340657,0.181959,0.522035,0.575986,0.00505513,0.250753,0.286857,0.262307,0.051755,0.712146,0.32282,0.250502,0.0354552,0.0566701,0.573451,0.0806506,0.7303,0.485887,0.344397,0.110359,0.249511,0.1075,0.678141,0.153021,0.226543,0.0182478,0.807401,0.884505,0.609138,0.56568,0.681105,0.983214,0.38182,0.5014,0.486896,0.114571,0.318932,0.628428,0.420871,0.217229,0.242348,0.20819,0.892126,0.369059,0.35026,0.0415027,0.337061,0.271459,0.243946,0.186352,0.903556,0.532103,0.53928,0.0398949,0.834863,0.870567,0.379396,0.884902,0.117399,0.781837,0.962633,0.300925,0.343608,0.211468,0.220529,0.712168,0.752716,0.401049,0.0975164,0.0897269,0.825273,0.522545,0.650026,0.532459,0.0621072,0.505109,0.706104,0.114526,0.808992,0.716525,0.858995,0.315514,0.721362,0.699252,0.690904,0.560155,0.598836,0.984975,0.316752,0.993497,0.0533726,0.834732,0.106442,0.304952,0.161582,0.626343,0.794195,0.137109,0.297834,0.113253,0.1687,0.89715,0.776048,0.997757,0.0230987,0.403085,0.926153,0.898942,0.05463,0.875362,0.219321,0.170888,0.700957,0.365258,0.109059,0.0710256,0.132892,0.780687,0.946756,0.83242,0.842223,0.259238,0.164666,0.3233,0.479916,0.117228,0.0869954,0.984637,0.0955557,0.858626,0.530156,0.793126,0.831034,0.147232,0.713343,0.923743,0.157171,0.447591,0.576881,0.269928,0.153062,0.308048,0.5188,0.452746,0.683827,0.386028,0.545983,0.98821,0.303095,0.232509,0.182716,0.298762,0.767518,0.310247,0.826815,0.0930122,0.375923,0.702025,0.529005,0.714705,0.516197,0.670382,0.171318,0.850418,0.235053,0.901667,0.585892,0.524094,0.497306,0.0740002,0.20414,0.127568,0.274963,0.609374,0.0529408,0.265143,0.527874,0.270095,0.391852,0.897901,0.477699,0.229117,0.840379,0.250701,0.10771,0.5993,0.550256,0.493237,0.83311,0.231347,0.996055,0.79276,0.828701,0.525226,0.824814,0.404691,0.643747,0.146991,0.105186,0.173647,0.00164038,0.955183,0.139338,0.910804,0.842423,0.792928,0.835556,0.621675,0.0486165,0.223673,0.979913,0.895748,0.0384733,0.4868,0.785259,0.0541523,0.704348,0.127671,0.0502683,0.598209,0.855914,0.833768,0.348992,0.798674,0.751157,0.0280273,0.344941,0.981589,0.902601,0.955409,0.0947353,0.327622,0.284276,0.504802,0.881746,0.855927,0.281607,0.0128247,0.109956,0.328743,0.449672,0.631823,0.370761,0.637489,0.291223,0.687175,0.561608,0.952564,0.531777,0.844651,0.646457,0.485606,0.268909,0.712649,0.76395,0.215223,0.496859,0.42648,0.154006,0.351442,0.990748,0.586223,0.807021,0.275198,0.861358,0.863595,0.43049,0.625901,0.540341,0.280338,0.940184,0.464578,0.136856,0.149514,0.442741,0.611077,0.0874292,0.601215,0.355283,0.810029,0.116203,0.656926,0.177874,0.925305,0.94122,0.14461,0.704239,0.672531,0.979195,0.430511,0.93878,0.633123,0.538011,0.335283,0.0999223,0.669434,0.993548,0.650889,0.0132943,0.38467,0.823046,0.579176,0.138657,0.694182,|0.586622,0.46129,0.634881,0.960127,0.718212,0.899873,0.219663,0.373538,0.19403,0.661631,0.710562,0.661658,0.250568,0.235333,0.159433,0.920124,0.313112,0.803975,0.256024,0.654627,0.00701112,0.21001,0.273702,0.495618,0.70475,0.227,0.0108621,0.988294,0.161765,0.402863,0.180768,0.113718,0.320091,0.615943,0.741607,0.541793,0.088107,0.848386,0.386804,0.365327,0.819158,0.341302,0.444768,0.266404,0.251283,0.027723,0.032731,0.315699,0.4923,0.35822,0.971906,0.752761,0.55442,0.289689,0.0922624,0.719255,0.403722,0.612915,0.982232,0.909019,0.974689,0.601806,0.691933,0.0948544,0.459609,0.211062,0.463946,0.301776,0.0178047,0.866598,0.0565468,0.827077,0.0863532,0.0704685,0.959135,0.856153,0.0734223,0.925695,0.215341,0.14458,0.45876,0.655679,0.14629,0.589297,0.686974,0.897368,0.25423,0.155379,0.941136,0.27886,0.731465,0.193997,0.94804,0.288089,0.781374,0.550702,0.581759,0.962245,0.0873923,0.00662565,0.0793046,0.140996,0.854385,0.630661,0.571302,0.394831,0.263544,0.910463,0.729986,0.0154989,0.904033,0.426321,0.145353,0.825495,0.476329,0.541106,0.615885,0.823457,0.767022,0.256761,0.756397,0.0664623,0.675956,0.0596897,0.825358,0.604163,0.0530134,0.701201,0.715988,0.79549,0.48831,0.569461,0.799821,0.249073,0.759276,0.562666,0.769507,0.185772,0.295007,0.634231,0.694079,0.437852,0.156117,0.450573,0.0753286,0.0302058,0.874518,0.631744,0.230747,0.500581,0.541992,0.969721,0.902823,0.0651211,0.252552,0.40508,0.49256,0.514762,0.51131,0.230706,0.255966,0.503748,0.122503,0.404665,0.681038,0.193486,0.802401,0.851188,0.687395,0.273242,0.25233,0.0733247,0.301197,0.891677,0.735743,0.417439,0.133758,0.769531,0.917939,0.183686,0.675419,0.473214,0.004893,0.564711,0.407003,0.159934,0.204634,0.503659,0.765376,0.013445,0.100874,0.655827,0.725031,0.0315682,0.292519,0.995083,0.909246,0.0157034,0.328299,0.724508,0.38158,0.45657,0.0546253,0.307984,0.873191,0.674984,0.099659,0.339903,0.544316,0.85011,0.394863,0.94811,0.94389,0.856305,0.38891,0.869917,0.879891,0.0616755,0.918506,0.888106,0.760847,0.348952,0.804879,0.995244,0.295518,0.339129,0.688023,0.803968,0.428463,0.0019173,0.285372,0.379525,0.873929,0.545645,0.293009,0.659248,0.600418,0.229962,0.671221,0.148387,0.580009,0.661477,0.525153,0.946252,0.622749,0.996938,0.751639,0.489483,0.150252,0.643017,0.942789,0.517532,0.435187,0.337789,0.458509,0.0799319,0.689799,0.0602164,0.365887,0.746582,0.0630704,0.529902,0.796962,0.473612,0.0116723,0.269661,0.0401286,0.603451,0.821967,0.338008,0.165155,0.542484,0.509615,0.918235,0.826676,0.860413,0.219214,0.600658,0.683964,0.360829,0.665364,0.0729116,0.334628,0.196703,0.22084,0.347668,0.457414,0.959937,0.172462,0.891477,0.62004,0.535299,0.395962,0.500462,0.29502,0.143371,0.972184,0.0239453,0.395537,0.165303,0.489996,0.401001,0.908544,0.86319,0.983816,0.00681067,0.71351,0.598855,0.811476,0.0206903,0.160398,0.88896,0.441115,0.899386,0.174899,0.22992,0.868191,0.820643,0.802551,0.654383,0.389323,0.0215988,0.441603,0.690674,0.000224411,0.944373,0.319066,0.00326186,0.115011,0.408983,0.298868,0.971004,0.10479,0.602004,0.804099,0.538791,0.75453,0.190243,0.873361,0.291588,0.362245,0.646738,0.592522,0.287735,0.928042,0.651153,0.109764,0.490018,0.392122,0.985224,0.130401,0.967938,0.647099,0.137516,0.310721,0.849104,0.775404,0.438094,0.746725,0.845871,0.136618,0.66798,0.00213414,0.317351,0.674626,0.378095,0.773547,0.465925,0.154343,0.25286,0.786545,0.17614,0.222341,0.991539,0.9669,0.815405,0.260722,0.507212,0.464694,0.540514,0.600038,0.446044,0.687796,0.6357,0.295498,0.665248,0.29817,0.575083,0.532573,0.251114,0.38712,0.81342,0.571504,0.264955,0.10067,0.530831,0.807798,0.247028,0.0224424,0.525084,0.402926,0.00903469,0.747835,0.666607,0.110386,0.81484,0.314781,0.38646,0.0900648,0.0195572,0.129733,0.114212,0.457092,0.167875,0.635006,0.401461,0.577808,0.126691,0.887519,0.10144,0.164033,0.816583,0.976805,0.25351,0.262417,0.301801,0.384604,0.75787,0.0640324,0.674665,0.734213,0.961847,0.235193,0.287502,0.0650529,0.695275,0.988283,0.845166,0.820353,0.666079,0.06062,0.498529,0.581463,0.174282,0.889031,0.332344,0.648328,0.709173,0.866973,0.296737,0.788611,0.0489772,0.675542,0.842882,0.823856,0.132468,0.784662,0.203359,0.981252,0.862456,0.234532,0.526548,0.204834,0.24602,0.837276,0.827414,0.394615,0.758584,0.679703,0.81418,0.853135,0.0999208,0.873516,0.965723,0.519979,0.0517521,0.142466,0.482238,0.876017,0.203852,0.352279,0.325979,0.999379,0.496796,0.691692,0.40187,0.608407,0.255486,0.768817,0.745899,0.489091,0.85194,0.543308,0.251567,0.351138,0.0154111,0.557203,0.31229,0.990056,0.962235,0.978696,0.18786,0.606856,0.0559835,0.909768,0.458894,0.225365,0.51977,0.822989,0.797932,0.831575,0.350463,0.0386447,0.766176,0.300816,0.76904,0.646504,0.259109,0.633544,0.366854,0.0295944,0.880565,0.142991,0.223165,0.412617,0.524486,0.892024,0.256614,0.0144254,0.419368,0.870159,0.196898,0.47404,0.158269,0.375712,0.839545,0.77758,0.00425291,0.311653,0.140105,0.370268,0.490918,0.733028,0.84853,0.637468,0.190142,0.81449,0.695549,0.221268,0.75823,0.0854799,0.548134,0.171279,0.109014,0.128424,0.857603,0.33367,0.323439,0.195714,0.667465,0.978953,0.4479,0.632512,0.600854,0.0852633,0.469736,0.357453,0.403593,0.931577,0.854824,0.814667,0.560811,0.961996,0.814672,0.471814,0.487194,0.332993,0.51306,0.307373,0.457535,0.812519,0.148518,0.535928,0.287292,0.210406,0.467753,0.109383,0.782432,0.874768,0.727697,0.18646,0.756783,0.402309,0.192968,0.406658,0.49293,0.167634,0.242768,0.0958031,0.46845,0.845267,0.0471163,0.940428,0.122067,0.688353,0.265914,0.434726,0.806859,0.768544,0.392455,0.66864,0.138329,0.483132,0.424071,0.721418,0.928966,0.335793,0.0602557,0.514701,0.812864,0.900581,0.0668519,0.852362,0.805575,0.855124,0.384909,0.850607,0.0723129,0.816574,0.882258,0.138661,0.230263,0.685341,0.513962,0.583244,0.788766,0.379533,0.320667,0.39531,0.215437,0.622653,0.281144,0.0632637,0.989088,0.000818372,0.549252,0.907872,0.597467,0.765443,0.382713,0.832878,0.530142,0.516347,0.492346,0.128749,0.0843642,0.649475,0.153359,0.672013,0.440886,0.180216,0.679109,0.899319,0.0941334,0.468573,0.492228,0.654932,0.320495,0.123339,0.735739,0.864932,0.693344,0.201987,0.394865,0.702457,0.70283,0.328311,0.544197,0.68213,0.58535,0.564377,0.778755,0.542972,0.422083,0.109525,0.25187,0.232613,0.35504,0.406059,0.470576,0.204028,0.259156,0.458906,0.922771,0.198792,0.276204,0.149082,0.690111,0.917569,0.0362662,0.150962,0.86451,0.119712,0.201581,0.401182,0.0898507,0.757648,0.862724,0.911912,0.799997,0.834395,0.671027,0.16067,0.587364,0.330848,0.854667,0.177106,0.939799,0.700044,0.12346,0.281308,0.977985,0.185252,0.855572,0.976841,0.873038,0.380942,0.580682,0.899134,0.114355,0.742357,0.0669245,0.452513,0.0223088,0.250056,0.195026,0.20342,0.410759,0.251482,0.576507,0.0150592,0.0546288,0.0776283,0.0244235,0.341275,0.917085,0.486052,0.562563,0.785595,0.939047,0.733339,0.495611,0.0230314,0.307291,0.967461,0.968234,0.937658,0.527673,0.139274,0.221438,0.815979,0.395705,0.989225,0.558628,0.340868,0.7224,0.22799,0.762442,0.821646,0.0922559,0.550147,0.986284,0.981205,0.717617,0.196975,0.350837,0.719553,0.220016,0.895454,0.197543,0.538906,0.230826,0.0766452,0.6696,0.144571,0.810474,0.971729,0.802452,0.435274,0.223175,0.609675,0.695038,0.0977129,0.486978,0.4401,0.867716,0.299546,0.0229349,0.638393,0.11979,0.733001,0.698259,0.84338,0.548319,0.640501,0.744136,0.294757,0.159284,0.384127,0.594424,0.421444,0.316544,0.149331,0.0895908,0.4163,0.658709,0.155859,0.820835,0.0148051,0.185519,0.657665,0.087835,0.649703,0.662576,0.81998,0.458365,0.487495,0.420416,0.719436,0.708871,0.789501,0.951437,0.830842,0.310068,0.798052,0.987805,0.686168,0.42713,0.63747,0.0597425,0.368224,0.32984,0.474575,0.475201,0.426116,0.921342,0.115114,0.519562,0.472362,0.474134,0.826929,0.164945,0.663333,0.433085,0.65155,0.974871,0.492602,0.127846,0.144099,0.635617,0.751423,0.462038,0.847782,0.886701,0.382882,0.38657,0.47182,0.164532,0.93334,0.248853,0.532658,0.818278,0.896563,0.314573,0.0366033,0.84367,0.444241,0.196746,0.856833,0.942686,0.924792,0.276572,0.827329,0.239041,0.942834,0.728036,0.189421,0.709353,0.251219,0.962689,0.216144,0.408839,0.420493,0.815579,0.659764,0.216045,0.319049,0.903446,0.529461,0.371398,0.395382,0.384927,0.541932,0.669746,0.929986,0.634473,0.837241,0.00141829,0.0429966,0.377577,0.791699,0.128823,0.778163,0.182968,0.650496,0.202665,0.789533,0.24895,0.912801,0.466035,0.233075,0.520022,0.616182,0.837297,0.523102,0.0471385,0.222865,0.901265,0.86789,0.579958,0.746051,0.778501,0.824079,0.473886,0.847699,0.649475,0.645527,0.613454,0.660486,0.643803,0.588875,0.195271,0.350725,0.608516,0.977553,0.213335,0.627776,0.791896,0.945923,0.909967,0.428857,0.739789,0.75004,0.744285,0.269809,0.834372,0.714584,0.0811423,0.631534,0.498542,0.236449,0.203315,0.223152,0.83935,0.723723,0.565323,0.614495,0.191296,0.278524,0.561202,0.449581,0.570197,0.702282,0.531714,0.558078,0.555786,0.70392,0.50108,0.426593,0.159307,0.622534,0.545748,0.504738,0.579899,0.1238,0.200481,0.475157,0.57505,0.573593,0.0224079,0.616665,0.224269,0.697697,0.109127,0.560875,0.660192,0.629051,0.647484,0.243259,0.452462,|0.146662,0.321945,0.864941,0.42435,0.665882,0.374628,0.28662,0.330258,0.854106,0.229179,0.356909,0.0169128,0.864307,0.117339,0.545727,0.141707,0.149894,0.529351,0.401277,0.290507,0.644062,0.608044,0.431056,0.607857,0.761738,0.510024,0.209493,0.741486,0.187979,0.256218,0.763259,0.664225,0.119565,0.988318,0.00777197,0.870345,0.0870975,0.806427,0.23622,0.734307,0.98041,0.619049,0.267069,0.501417,0.274033,0.41867,0.302693,0.676107,0.0882644,0.129068,0.277418,0.230586,0.856209,0.248608,0.27639,0.713193,0.79785,0.270533,0.716507,0.260522,0.433963,0.386929,0.86727,0.612375,0.138599,0.556402,0.0397099,0.770664,0.07644,0.64471,0.846031,0.285342,0.568151,0.00608456,0.869942,0.688179,0.449405,0.0665402,0.379477,0.856527,0.394087,0.322301,0.825994,0.770308,0.519886,0.264556,0.0267877,0.239487,0.493002,0.712204,0.622863,0.880226,0.765637,0.165752,0.790168,0.899966,0.0474933,0.362073,0.52954,0.490749,0.2312,0.623613,0.974524,0.0927613,0.504315,0.226628,0.26173,0.373174,0.910371,0.935993,0.366593,0.593073,0.115443,0.394813,0.597381,0.172472,0.206658,0.215658,0.200232,0.104326,0.104523,0.672754,0.981039,0.838031,0.646101,0.954534,0.1151,0.586276,0.244962,0.692369,0.0408045,0.82772,0.859584,0.186177,0.951395,0.183362,0.0860333,0.350725,0.627403,0.0114575,0.789204,0.966422,0.789534,0.522299,0.384293,0.00282621,0.867656,0.118287,0.152063,0.197396,0.193407,0.872248,0.369635,0.902979,0.427618,0.531903,0.98542,0.249146,0.50521,0.169406,0.250974,0.799028,0.828072,0.319498,0.976285,0.691768,0.630245,0.727059,0.267752,0.833919,0.869548,0.174995,0.180636,0.0869202,0.0674236,0.160915,0.287941,0.829241,0.83276,0.204883,0.474442,0.570065,0.381474,0.802513,0.690006,0.0567385,0.997813,0.173851,0.0304379,0.889461,0.304574,0.145678,0.753743,0.429633,0.11375,0.0245628,0.151843,0.321257,0.748556,0.0932057,0.577384,0.6782,0.308579,0.435657,0.803294,0.24196,0.891099,0.909125,0.736414,0.23721,0.580219,0.0486782,0.835173,0.361827,0.804471,0.74008,0.683411,0.360698,0.191542,0.621022,0.204237,0.813353,0.14099,0.00605386,0.974873,0.284458,0.313031,0.239858,0.746143,0.766436,0.991472,0.618903,0.728927,0.980884,0.646125,0.94675,0.224685,0.450744,0.973317,0.799681,0.850513,0.373357,0.995147,0.580846,0.587324,0.122933,0.974502,0.861659,0.656177,0.891906,0.291006,0.95233,0.947763,0.87993,0.571007,0.292658,0.388858,0.698642,0.847207,0.474317,0.769396,0.318478,0.477722,0.735176,0.555446,0.154339,0.85775,0.375216,0.339059,0.722863,0.227606,0.735416,0.253134,0.636573,0.0208447,0.75495,0.650213,0.651762,0.362675,0.44632,0.390127,0.327233,0.242729,0.76666,0.966622,0.949519,0.601209,0.0253395,0.918048,0.173726,0.259477,0.202259,0.575668,0.62878,0.612247,0.445653,0.980191,0.167885,0.126297,0.34519,0.00894547,0.872636,0.768436,0.124624,0.0942372,0.260597,0.930598,0.242495,0.803855,0.489766,0.646807,0.137443,0.915931,0.290141,0.50588,0.906501,0.115558,0.931686,0.506832,0.0983276,0.324105,0.13169,0.799287,0.122631,0.550969,0.880034,0.614084,0.974342,0.459147,0.300074,0.198168,0.15384,0.110084,0.296969,0.443352,0.874953,0.758302,0.990053,0.987932,0.468674,0.274675,0.972447,0.290084,0.861048,0.668287,0.59624,0.999808,0.111688,0.789333,0.859865,0.933194,0.699202,0.961449,0.449063,0.829995,0.724104,0.113297,0.959548,0.64986,0.520536,0.136857,0.386489,0.505502,0.663048,0.650456,0.417907,0.426124,0.618021,0.0283863,0.352281,0.640864,0.159738,0.0402388,0.142686,0.268202,0.138018,0.633789,0.608894,0.21073,0.173212,0.166248,0.153272,0.198857,0.836109,0.04293,0.322651,0.452085,0.556352,0.754691,0.585475,0.619967,0.185141,0.984831,0.999202,0.245532,0.610614,0.36951,0.0937726,0.312581,0.160543,0.595075,0.221856,0.206092,0.722701,0.781916,0.794863,0.366991,0.629221,0.405393,0.656598,0.0383487,0.950705,0.00779057,0.0269273,0.724692,0.885005,0.983087,0.620817,0.134241,0.605446,0.584041,0.0824638,0.224708,0.761844,0.604119,0.348429,0.496193,0.767319,0.715134,0.915141,0.829879,0.835147,0.126014,0.73419,0.261831,0.215776,0.0137485,0.222781,0.922065,0.818256,0.671609,0.0176126,0.99569,0.348074,0.199141,0.690576,0.0693569,0.240732,0.0207307,0.544526,0.022181,0.700599,0.142922,0.500214,0.553421,0.567516,0.993937,0.556508,0.573634,0.326001,0.831412,0.124927,0.960178,0.968992,0.707443,0.943304,0.964312,0.699185,0.103306,0.216113,0.293007,0.597273,0.318904,0.427397,0.036119,0.827843,0.821942,0.112606,0.657005,0.788492,0.812422,0.115071,0.63182,0.864368,0.736386,0.661008,0.391797,0.947333,0.0598794,0.342954,0.120179,0.54242,0.0517569,0.802317,0.807221,0.590997,0.315295,0.252207,0.374915,0.965707,0.880181,0.873425,0.145515,0.297393,0.517904,0.951937,0.743711,0.509647,0.231327,0.512733,0.750484,0.792254,0.471786,0.0972757,0.873106,0.626353,0.3808,0.506085,0.311707,0.65412,0.334936,0.751393,0.564799,0.348803,0.678422,0.581182,0.659537,0.411977,0.0431156,0.0729292,0.565329,0.891662,0.425348,0.562818,0.199659,0.18637,0.254969,0.52195,0.512575,0.387691,0.760501,0.238576,0.760735,0.0373704,0.75435,0.62249,0.224653,0.728097,0.190904,0.243108,0.184452,0.635011,0.371374,0.380987,0.31584,0.65408,0.676675,0.705748,0.444396,0.181951,0.366291,0.94207,0.064304,0.217281,0.767121,0.493827,0.326913,0.240894,0.306942,0.46874,0.099327,0.509317,0.735576,0.780812,0.147998,0.84564,0.328641,0.558574,0.427926,0.058292,0.145535,0.696791,0.523658,0.835152,0.602184,0.612016,0.874987,0.9883,0.870376,0.376407,0.956971,0.576264,0.128532,0.745584,0.445936,0.582456,0.0228285,0.481571,0.350702,0.33791,0.217114,0.831919,0.869145,0.783149,0.254571,0.485871,0.359588,0.845022,0.00150537,0.278305,0.682824,0.459492,0.644817,0.209384,0.605221,0.204236,0.988312,0.794024,0.796039,0.973687,0.647822,0.0336097,0.347279,0.046387,0.573723,0.73376,0.608054,0.441897,0.311334,0.377876,0.25735,0.762478,0.821667,0.903343,0.615573,0.755212,0.409235,0.976003,0.293249,0.228213,0.760631,0.752687,0.211344,0.01411,0.57502,0.4342,0.891015,0.676347,0.18015,0.559449,0.343684,0.546512,0.050228,0.832566,0.094013,0.839584,0.327737,0.878251,0.588111,0.276733,0.7798,0.247451,0.20427,0.110581,0.798867,0.528746,0.369121,0.231843,0.20009,0.523506,0.0699417,0.476998,0.921065,0.107785,0.236698,0.87948,0.875334,0.176615,0.802112,0.970304,0.0293598,0.718584,0.966262,0.450987,0.542303,0.859126,0.126581,0.470032,0.15919,0.0473034,0.625,0.388813,0.115498,0.710964,0.419053,0.922365,0.398087,0.813511,0.232494,0.919213,0.217111,0.998653,0.921489,0.221474,0.499403,0.399034,0.591619,0.766755,0.0644061,0.804888,0.0587968,0.415282,0.348452,0.66584,0.614657,0.979653,0.508905,0.995919,0.660909,0.789686,0.644933,0.266061,0.449658,0.135198,0.165516,0.735895,0.339894,0.864545,0.21577,0.352409,0.131927,0.227601,0.393521,0.525625,0.466025,0.782583,0.524306,0.214277,0.834773,0.627763,0.692655,0.510825,0.0704005,0.928038,0.7783,0.0373685,0.283493,0.888869,0.411823,0.839051,0.346159,0.293876,0.530444,0.241098,0.119698,0.636926,0.586185,0.133287,0.810322,0.307325,0.443411,0.854611,0.637501,0.925206,0.68231,0.490786,0.735235,0.928903,0.0492344,0.30667,0.370745,0.181315,0.652533,0.46183,0.121782,0.74753,0.89525,0.676925,0.116515,0.0273095,0.00635988,0.445724,0.590532,0.0954506,0.694602,0.527901,0.24887,0.260439,0.719352,0.654808,0.568627,0.361555,0.307123,0.128828,0.68923,0.472573,0.0439299,0.0776582,0.805171,0.00830644,0.110323,0.876875,0.302407,0.50631,0.462595,0.526833,0.311182,0.995773,0.127626,0.691114,0.215324,0.85517,0.202955,0.268979,0.723074,0.235763,0.5342,0.724933,0.343877,0.792192,0.244097,0.763081,0.509939,0.53413,0.843944,0.274504,0.120793,0.920601,0.301577,0.504752,0.797192,0.541079,0.88383,0.459569,0.00304335,0.661818,0.344163,0.117422,0.12545,0.800362,0.0821609,0.967469,0.076365,0.741446,0.394867,0.956681,0.0271233,0.371842,0.902492,0.517727,0.754894,0.726644,0.342982,0.352237,0.732625,0.0491832,0.36728,0.555382,0.501255,0.552387,0.56027,0.503481,0.570517,0.828799,0.75839,0.75368,0.479815,0.0898442,0.685719,0.0513445,0.361464,0.182799,0.378455,0.510185,0.586952,0.131226,0.26292,0.52282,0.765031,0.531842,0.414649,0.649855,0.693009,0.695499,0.187878,0.575702,0.186375,0.663182,0.544,0.845578,0.688508,0.231987,0.632347,0.750151,0.591865,0.997119,0.33791,0.0387701,0.567922,0.604495,0.926974,0.303802,0.333389,0.940191,0.458782,0.837096,0.959489,0.688027,0.99412,0.706239,0.106545,0.882581,0.820068,0.55755,0.730625,0.354878,0.825112,0.411617,0.407469,0.919646,0.606248,0.244651,0.493846,0.307454,0.931139,0.604911,0.766726,0.681298,0.9114,0.305454,0.905928,0.00905073,0.00439501,0.723122,0.21225,0.465495,0.930189,0.517187,0.202949,0.653321,0.417614,0.690818,0.406666,0.131517,0.583445,0.395566,0.0570745,0.792896,0.975333,0.0479611,0.618175,0.443297,0.315238,0.980326,0.870082,0.308893,0.547915,0.322373,0.295091,0.751106,0.258478,0.259892,0.343587,0.0645659,0.450301,0.51996,0.144836,0.605274,0.814532,0.773494,0.959231,0.797767,0.394115,0.163238,0.943487,0.353724,0.52116,0.894153,0.385397,0.410976,0.140092,0.243764,0.501122,0.100133,0.629223,0.84768,0.00421274,0.992754,0.436983,0.687746,0.920821,0.793911,0.631379,0.967439,0.271951,0.557336,0.792494,0.82787,0.376692,0.50466,|0.293984,0.639208,0.541652,0.77399,0.120109,0.880595,0.99835,0.551932,0.613355,0.477398,0.700875,0.23918,0.673599,0.0655648,0.168188,0.170633,0.544501,0.329786,0.820009,0.655035,0.754235,0.505526,0.717224,0.127108,0.199809,0.0840473,0.281878,0.914814,0.993856,0.36758,0.231472,0.68877,0.917645,0.812959,0.178122,0.979555,0.016503,0.866942,0.846028,0.924555,0.276974,0.231079,0.653821,0.977255,0.597616,0.623877,0.940958,0.42092,0.255449,0.504283,0.087337,0.433787,0.73533,0.925162,0.635746,0.772401,0.982186,0.110393,0.00455076,0.0948424,0.260715,0.127619,0.891548,0.629212,0.249552,0.569587,0.525632,0.247879,0.838691,0.991463,0.744354,0.595734,0.353231,0.900671,0.510335,0.175239,0.109924,0.321109,0.496271,0.74124,0.49223,0.296276,0.468682,0.740458,0.780911,0.678269,0.80873,0.901021,0.231001,0.945725,0.272391,0.0196867,0.0954966,0.875341,0.203422,0.125026,0.881917,0.868229,0.583493,0.126317,0.21758,0.991318,0.481259,0.999281,0.185857,0.0069496,0.026455,0.906027,0.405487,0.383272,0.90136,0.202705,0.32134,0.869884,0.755883,0.491153,0.61002,0.112322,0.70081,0.307549,0.56617,0.517983,0.0525877,0.836503,0.639334,0.427153,0.0243558,0.488981,0.149488,0.0936035,0.819569,0.692434,0.945793,0.095852,0.0139016,0.578627,0.123705,0.817967,0.862616,0.269589,0.692895,0.531834,0.985384,0.411717,0.794215,0.256703,0.442581,0.656939,0.865414,0.459645,0.808954,0.0282835,0.491431,0.717912,0.125085,0.685898,0.156987,0.201282,0.717468,0.382913,0.454498,0.466333,0.121446,0.615028,0.842143,0.450397,0.961197,0.728385,0.319316,0.276459,0.699169,0.057304,0.626241,0.717976,0.629681,0.0925011,0.976124,0.861215,0.770279,0.796039,0.38851,0.953156,0.0141339,0.261768,0.877242,0.31416,0.993601,0.0168923,0.577907,0.370842,0.102987,0.857126,0.904021,0.303711,0.171945,0.681258,0.219744,0.421784,0.345864,0.461978,0.632932,0.301043,0.760092,0.288953,0.818862,0.638399,0.420037,0.704611,0.618113,0.843144,0.300345,0.0866914,0.0920197,0.718296,0.492232,0.393368,0.714083,0.379158,0.315249,0.944126,0.546029,0.769353,0.298692,0.308016,0.761797,0.763814,0.249681,0.450495,0.348996,0.992732,0.476289,0.617283,0.609795,0.597284,0.200267,0.316935,0.897248,0.838504,0.702975,0.120035,0.829503,0.126623,0.950156,0.172013,0.515322,0.316761,0.779014,0.39398,0.229064,0.963637,0.845302,0.393124,0.947905,0.203453,0.405495,0.751725,0.898684,0.830536,0.458854,0.0624048,0.151007,0.303526,0.5941,0.4504,0.171521,0.0573326,0.175588,0.857949,0.137562,0.988464,0.5218,0.290037,0.559761,0.913612,0.58197,0.519744,0.0526314,0.462879,0.336898,0.78598,0.657403,0.0720508,0.7388,0.994602,0.166006,0.538733,0.326469,0.933523,0.672248,0.50688,0.964485,0.502181,0.951692,0.623039,0.404059,0.273283,0.495449,0.076982,0.817635,0.463252,0.624793,0.0941542,0.27077,0.0780097,0.721291,0.211376,0.407347,0.149919,0.656188,0.729998,0.616228,0.80654,0.0984292,0.238956,0.409152,0.074368,0.871827,0.399536,0.573529,0.282585,0.609433,0.309205,0.446523,0.664231,0.363331,0.202289,0.928704,0.982658,0.569915,0.915003,0.0382501,0.980358,0.842721,0.759391,0.150059,0.0675501,0.939252,0.427811,0.695445,0.244341,0.705527,0.230151,0.152984,0.460375,0.200572,0.493375,0.114921,0.800949,0.658119,0.280204,0.366777,0.630903,0.920596,0.681632,0.786081,0.97513,0.497238,0.20337,0.611496,0.541228,0.709034,0.452269,0.180569,0.963527,0.797806,0.23886,0.876501,0.871938,0.922214,0.98576,0.126584,0.887194,0.248209,0.343581,0.136701,0.28594,0.704288,0.596154,0.5702,0.47601,0.63361,0.975544,0.179487,0.329336,0.265029,0.977015,0.872114,0.117283,0.0663567,0.931273,0.463501,0.0971251,0.902012,0.780949,0.293707,0.253071,0.854604,0.667974,0.895727,0.518453,0.112427,0.964878,0.811506,0.407978,0.333377,0.898565,0.700678,0.94541,0.978666,0.674729,0.633762,0.741168,0.885831,0.530858,0.752069,0.292176,0.405438,0.974516,0.249692,0.638601,0.0448343,0.688356,0.606064,0.598557,0.776377,0.483526,0.911721,0.608789,0.717876,0.936734,0.253285,0.954857,0.486668,0.793218,0.315576,0.0499824,0.319699,0.281863,0.90525,0.293753,0.471368,0.173669,0.679554,0.0429683,0.554019,0.326127,0.0773776,0.639831,0.0172265,0.769857,0.279914,0.171468,0.00572008,0.595606,0.0680413,0.92515,0.841933,0.866778,0.24341,0.157054,0.928402,0.979423,0.440252,0.52574,0.787528,0.822661,0.777875,0.943827,0.310463,0.456041,0.353657,0.399743,0.951689,0.216878,0.0792134,0.0026322,0.659962,0.0375902,0.758816,0.910061,0.387981,0.931762,0.142631,0.318731,0.088178,0.96141,0.887683,0.254283,0.806459,0.973043,0.614706,0.141934,0.525828,0.14005,0.629946,0.362726,0.665106,0.239639,0.240038,0.99114,0.0275145,0.705524,0.0806941,0.697845,0.840127,0.458668,0.361437,0.369213,0.305062,0.202079,0.0543516,0.367744,0.087349,0.719338,0.208076,0.752917,0.36549,0.176063,0.194513,0.542422,0.179523,0.0968176,0.152764,0.602604,0.651594,0.745943,0.670585,0.805582,0.851897,0.735531,0.42839,0.630256,0.220194,0.700896,0.391665,0.571971,0.929528,0.104435,0.400171,0.0188244,0.204809,0.510922,0.888745,0.221874,0.956667,0.761272,0.945246,0.20179,0.333664,0.357003,0.233269,0.656793,0.45155,0.609818,0.567653,0.846159,0.00382739,0.818317,0.35139,0.314725,0.985665,0.661332,0.464098,0.412237,0.784771,0.748148,0.207136,0.580114,0.325787,0.768529,0.936741,0.138553,0.894015,0.362332,0.0222427,0.351678,0.0619438,0.149608,0.412037,0.777743,0.99862,0.467373,0.531523,0.531375,0.246853,0.0838529,0.509272,0.928536,0.0931314,0.127448,0.57173,0.776962,0.520805,0.176923,0.0551994,0.21465,0.57343,0.168878,0.541762,0.490349,0.930835,0.324861,0.996363,0.78598,0.778246,0.639378,0.119461,0.961158,0.916519,0.156588,0.196218,0.882365,0.626612,0.905123,0.319978,0.284069,0.532616,0.404777,0.216815,0.631297,0.137234,0.925655,0.0115698,0.227186,0.608318,0.302104,0.594606,0.370998,0.57066,0.625078,0.095332,0.540103,0.268668,0.184513,0.187766,0.95101,0.336503,0.245527,0.122266,0.0583599,0.132962,0.676637,0.377861,0.811046,0.159595,0.622023,0.987709,0.203367,0.680376,0.119363,0.207098,0.921948,0.495333,0.594198,0.772996,0.155356,0.543284,0.517291,0.920518,0.175561,0.605022,0.202949,0.945455,0.469065,0.22755,0.856215,0.576634,0.285148,0.726098,0.750864,0.853427,0.380263,0.327668,0.540441,0.005463,0.334585,0.99667,0.645025,0.234301,0.770472,0.137775,0.660379,0.400832,0.879509,0.553694,0.0820879,0.189792,0.393591,0.503714,0.805201,0.365631,0.0280275,0.334825,0.300195,0.432907,0.59842,0.0391684,0.759312,0.167188,0.121474,0.30669,0.994178,0.435478,0.743521,0.295224,0.105852,0.138848,0.30432,0.137863,0.851533,0.73425,0.0240342,0.580482,0.205362,0.437458,0.993704,0.344824,0.021542,0.463668,0.601391,0.358708,0.0767952,0.776951,0.432373,0.0464526,0.196484,0.714038,0.350924,0.991752,0.353205,0.520122,0.816756,0.271593,0.827447,0.285181,0.909949,0.813124,0.745823,0.422783,0.494625,0.0599565,0.580588,0.0785252,0.899583,0.701352,0.699192,0.542814,0.598978,0.739576,0.815343,0.421072,0.80913,0.371108,0.245305,0.0471596,0.605841,0.424853,0.551995,0.272284,0.083848,0.120012,0.149938,0.688941,0.0686753,0.443276,0.305661,0.354991,0.00176507,0.146224,0.890055,0.540987,0.279229,0.705652,0.198622,0.863861,0.585341,0.987316,0.391799,0.467846,0.222622,0.274483,0.0140724,0.639074,0.198725,0.747996,0.161603,0.638498,0.478048,0.296175,0.880206,0.58261,0.759715,0.346761,0.789556,0.814423,0.372681,0.39948,0.751339,0.934123,0.238282,0.488727,0.640491,0.769046,0.574498,0.617043,0.525109,0.522606,0.942173,0.0795881,0.759825,0.629669,0.835992,0.759883,0.324852,0.612202,0.324843,0.00818872,0.69699,0.262773,0.500083,0.155425,0.891279,0.00670576,0.879103,0.0509591,0.963703,0.341877,0.91563,0.185143,0.934073,0.498862,0.125059,0.551065,0.585137,0.773806,0.0999777,0.20937,0.0990568,0.821375,0.0980485,0.0387557,0.969469,0.036711,0.700601,0.953011,0.199342,0.160337,0.538414,0.148203,0.116699,0.536247,0.481068,0.577452,0.948426,0.760184,0.701728,0.942807,0.423045,0.665513,0.517896,0.654257,0.587592,0.563593,0.012264,0.595336,0.502628,0.846778,0.558843,0.782298,0.592866,0.280149,0.423505,0.0928733,0.724681,0.728263,0.594336,0.403878,0.0904986,0.536309,0.922274,0.207095,0.851159,0.563543,0.714269,0.252206,0.236522,0.966895,0.808262,0.346259,0.437984,0.203208,0.440848,0.894983,0.293103,0.421775,0.973611,0.574276,0.105899,0.946929,0.591209,0.0783441,0.142373,0.426095,0.786028,0.403563,0.587226,0.892759,0.451849,0.981568,0.60106,0.721075,0.684432,0.468617,0.515242,0.669075,0.307124,0.105898,0.0978156,0.523972,0.301251,0.683083,0.31383,0.650769,0.269573,0.133536,0.372983,0.349627,0.222849,0.550063,0.315768,0.168889,0.83153,0.695284,0.994822,0.311663,0.933509,0.928733,0.201432,0.106601,0.439077,0.205773,0.81289,0.584144,0.243573,0.421571,0.379675,0.314098,0.551381,0.821399,0.945853,0.887295,0.0622423,0.602213,0.507986,0.674791,0.0936385,0.662006,0.533765,0.146726,0.386377,0.218718,0.96792,0.919493,0.213588,0.470699,0.524871,0.361633,0.410512,0.30108,0.862771,0.907524,0.647999,0.160371,0.636642,0.662202,0.432154,0.199112,0.526106,0.853279,0.623868,0.800343,0.185085,0.19062,0.0646307,0.118545,0.951651,0.37121,0.637656,0.264026,0.209372,0.539851,0.617914,0.702146,0.133886,0.429632,0.90011,0.645236,0.402363,0.503714,0.28796,|0.687832,0.331118,0.0624307,0.918808,0.259506,0.638451,0.64987,0.303763,0.748755,0.0935978,0.339982,0.453715,0.3749,0.303502,0.317002,0.436574,0.151216,0.0405841,0.894833,0.200922,0.410469,0.791122,0.505756,0.975677,0.866265,0.151347,0.271054,0.134088,0.2804,0.105253,0.906252,0.962466,0.395522,0.502784,0.112778,0.929639,0.561575,0.086078,0.35608,0.782578,0.254647,0.538793,0.2694,0.210562,0.685857,0.0757085,0.788878,0.19047,0.954112,0.0719081,0.240053,0.278496,0.89012,0.859504,0.265518,0.701126,0.909854,0.718098,0.684837,0.0126179,0.594346,0.0228422,0.32328,0.172233,0.588313,0.255267,0.304645,0.647899,0.31168,0.992964,0.793373,0.401059,0.175549,0.29781,0.0489247,0.195728,0.519214,0.890919,0.265763,0.190371,0.270425,0.00020653,0.686483,0.10611,0.156953,0.0862839,0.392912,0.236664,0.433948,0.973122,0.855303,0.643372,0.183478,0.723613,0.0358154,0.614928,0.20698,0.920719,0.751152,0.629201,0.286558,0.937117,0.564123,0.895375,0.12356,0.564416,0.134483,0.834715,0.485063,0.529703,0.407813,0.835668,0.867981,0.762567,0.457758,0.377134,0.499941,0.553623,0.544085,0.432628,0.627844,0.963247,0.802968,0.919672,0.59237,0.73835,0.825558,0.451468,0.729864,0.604517,0.842912,0.731807,0.043118,0.726325,0.25518,0.660546,0.707309,0.523753,0.918824,0.892811,0.472586,0.684451,0.353379,0.706839,0.310921,0.660813,0.270066,0.746441,0.457612,0.43132,0.676205,0.5771,0.777382,0.718124,0.346487,0.653216,0.391441,0.513663,0.87371,0.807306,0.533208,0.0456219,0.252054,0.516861,0.620462,0.371057,0.431486,0.682098,0.740493,0.0574512,0.795273,0.210506,0.923335,0.586591,0.912458,0.50873,0.493529,0.0180758,0.0994756,0.835451,0.879308,0.301943,0.23886,0.831787,0.771386,0.470224,0.330337,0.428664,0.415831,0.214672,0.719771,0.0202889,0.0359048,0.638624,0.171625,0.532393,0.616942,0.885808,0.22756,0.0237431,0.892592,0.617546,0.516026,0.838541,0.365487,0.52067,0.292782,0.0551174,0.899279,0.942941,0.524809,0.620613,0.599548,0.141862,0.437813,0.288796,0.711103,0.233313,0.845904,0.289995,0.161029,0.503266,0.0990684,0.777264,0.417375,0.732135,0.703581,0.570964,0.629338,0.256113,0.962831,0.287958,0.0170397,0.404639,0.650543,0.88977,0.970686,0.874015,0.949638,0.279023,0.196394,0.38293,0.159733,0.576968,0.365962,0.236137,0.759498,0.703239,0.467351,0.212172,0.517257,0.982542,0.178337,0.246188,0.487571,0.93123,0.120321,0.00592583,0.0488481,0.867428,0.688146,0.387807,0.295041,0.455256,0.347265,0.894997,0.741149,0.135772,0.703233,0.395633,0.605471,0.271113,0.413285,0.363324,0.974565,0.240626,0.180899,0.572639,0.228093,0.510805,0.680407,0.348218,0.0737329,0.134707,0.641787,0.12512,0.165753,0.834739,0.934012,0.871072,0.0802767,0.570861,0.042627,0.594272,0.741855,0.92738,0.538248,0.247149,0.810733,0.232077,0.467935,0.427233,0.43558,0.936159,0.199569,0.571934,0.521541,0.730136,0.0205793,0.768767,0.601485,0.479438,0.785315,0.832969,0.579325,0.453888,0.816512,0.10989,0.669382,0.0602084,0.241385,0.29758,0.0371952,0.707687,0.0503158,0.900178,0.15988,0.349595,0.888768,0.778089,0.0581925,0.862757,0.728708,0.26643,0.0648876,0.17969,0.335675,0.833649,0.0908453,0.62831,0.928749,0.302628,0.0480014,0.412941,0.19394,0.424875,0.549958,0.0651907,0.730377,0.163196,0.370223,0.874956,0.657973,0.830705,0.145839,0.25313,0.657298,0.978805,0.0173649,0.460467,0.938182,0.177156,0.073092,0.313184,0.873593,0.411406,0.919675,0.658069,0.343449,0.839684,0.366902,0.388791,0.837487,0.540382,0.536687,0.474009,0.281351,0.807349,0.239486,0.688699,0.0354847,0.790275,0.768897,0.768565,0.217521,0.385893,0.306914,0.128102,0.79325,0.00164253,0.653102,0.459158,0.928256,0.416701,0.529757,0.296889,0.52116,0.264205,0.474545,0.698809,0.164941,0.538097,0.376821,0.0298144,0.0319221,0.740092,0.382851,0.521811,0.457212,0.5164,0.963742,0.855179,0.761847,0.592982,0.0815525,0.540945,0.661536,0.348815,0.414526,0.719401,0.354333,0.950592,0.355886,0.909351,0.959135,0.728163,0.392674,0.00414753,0.616175,0.962009,0.693811,0.530159,0.482402,0.720462,0.508197,0.587239,0.790639,0.223273,0.0929141,0.495015,0.766156,0.38269,0.00785685,0.903659,0.71499,0.08906,0.32203,0.515357,0.896945,0.2477,0.649227,0.513146,0.200214,0.816608,0.250178,0.991935,0.210828,0.331236,0.83913,0.442682,0.11139,0.754889,0.656333,0.361884,0.541292,0.979689,0.269686,0.524698,0.0961766,0.240499,0.465675,0.989359,0.769339,0.963783,0.980444,0.290754,0.784135,0.983335,0.468714,0.755054,0.0317153,0.253966,0.930157,0.768474,0.912185,0.393486,0.316009,0.497833,0.377065,0.00379813,0.663692,0.241123,0.561837,0.88557,0.5681,0.501961,0.623101,0.84698,0.794004,0.941216,0.446918,0.0766337,0.00311375,0.994153,0.384345,0.94275,0.683547,0.826954,0.0700406,0.860818,0.474339,0.74926,0.444655,0.451122,0.249617,0.0799575,0.537307,0.325907,0.170533,0.332184,0.879619,0.599619,0.62037,0.352591,0.0170841,0.600051,0.265909,0.250729,0.51192,0.945622,0.379023,0.699375,0.143224,0.376351,0.269039,0.722043,0.14528,0.355905,0.291931,0.253316,0.121705,0.437986,0.0551463,0.846693,0.696385,0.162336,0.755991,0.820871,0.399618,0.797354,0.0264845,0.158784,0.234563,0.792465,0.748557,0.597079,0.999971,0.599811,0.348128,0.676528,0.745193,0.385627,0.794567,0.112648,0.684946,0.756715,0.440717,0.0160522,0.496011,0.951512,0.827415,0.0681606,0.548812,0.636582,0.914081,0.213114,0.511646,0.389678,0.0291216,0.881386,0.467577,0.813566,0.589517,0.784277,0.419775,0.784864,0.28963,0.776973,0.704648,0.458377,0.496182,0.376948,0.806611,0.460867,0.121184,0.496325,0.113993,0.26672,0.875604,0.135786,0.973336,0.261194,0.975463,0.0339891,0.463343,0.0685827,0.324767,0.679896,0.417969,0.438509,0.198364,0.409537,0.204224,0.070312,0.507182,0.630514,0.38143,0.812744,0.0939155,0.148768,0.352097,0.0106821,0.135246,0.413764,0.191435,0.420088,0.856995,0.0344737,0.36238,0.404057,0.564804,0.918259,0.982021,0.500852,0.0411452,0.483876,0.566681,0.249423,0.350043,0.86393,0.401883,0.700235,0.712273,0.650242,0.12155,0.034099,0.263183,0.521777,0.901369,0.612806,0.429468,0.661274,0.772847,0.0179039,0.161457,0.931344,0.976781,0.455505,0.283223,0.5377,0.426283,0.681465,0.975508,0.595111,0.610927,0.722218,0.827459,0.692091,0.643352,0.318467,0.744873,0.956065,0.216761,0.29105,0.932512,0.339395,0.811689,0.786641,0.611501,0.327557,0.0993748,0.472399,0.284897,0.222214,0.262732,0.467742,0.550593,0.419606,0.0372525,0.401274,0.0858818,0.571343,0.548215,0.171561,0.640975,0.0194005,0.706554,0.18127,0.535573,0.273945,0.586078,0.370493,0.0844457,0.611361,0.954223,0.641051,0.813712,0.214643,0.98405,0.312403,0.256346,0.957391,0.146012,0.298114,0.367727,0.432274,0.0642454,0.705666,0.0677326,0.202074,0.567024,0.358698,0.752315,0.825968,0.874959,0.231554,0.891357,0.736906,0.802573,0.233177,0.205285,0.0113122,0.999374,0.108152,0.938236,0.130143,0.26318,0.288758,0.192729,0.595349,0.765324,0.0921953,0.162361,0.584519,0.969212,0.0799481,0.808614,0.407538,0.518744,0.706157,0.964798,0.876911,0.419575,0.575022,0.756427,0.356462,0.0643359,0.772714,0.151486,0.657926,0.0791243,0.269638,0.733609,0.935348,0.105181,0.005014,0.644863,0.915063,0.0891055,0.746788,0.316474,0.526433,0.925046,0.816021,0.56654,0.857319,0.510776,0.667979,0.612286,0.261495,0.497425,0.700957,0.282611,0.0120105,0.756784,0.696727,0.845719,0.00368261,0.69322,0.674399,0.195758,0.366071,0.319266,0.66093,0.461354,0.479772,0.821193,0.847159,0.609179,0.0878432,0.664614,0.453907,0.20162,0.419808,0.956484,0.69498,0.420149,0.508562,0.0997791,0.213045,0.469588,0.607214,0.853074,0.478862,0.716323,0.101299,0.667968,0.339617,0.230419,0.0513927,0.563667,0.482048,0.528474,0.356924,0.998705,0.914065,0.761066,0.151257,0.554193,0.819545,0.356308,0.889449,0.656247,0.450771,0.628583,0.581003,0.196136,0.094611,0.140043,0.123515,0.474741,0.525748,0.812862,0.0780953,0.228183,0.388667,0.321784,0.00705087,0.822984,0.0164679,0.0671985,0.929569,0.49355,0.125662,0.00373322,0.617849,0.92502,0.141997,0.985356,0.57291,0.252457,0.0190211,0.534642,0.884053,0.358407,0.366883,0.474848,0.752963,0.595316,0.259926,0.263046,0.166292,0.916656,0.384435,0.835687,0.803494,0.124675,0.833714,0.29812,0.588769,0.281447,0.608883,0.0176942,0.313685,0.940752,0.749,0.775638,0.0508116,0.358932,0.397417,0.457289,0.513086,0.434182,0.802601,0.269449,0.0380722,0.370774,0.548949,0.972907,0.463341,0.0750265,0.617354,0.0417359,0.493539,0.264648,0.543104,0.0339726,0.629607,0.748799,0.7899,0.732823,0.329255,0.314809,0.52724,0.25698,0.644896,0.324383,0.42339,0.702299,0.78564,0.722525,0.637751,0.195586,0.97888,0.776962,0.297028,0.701525,0.292834,0.861968,0.116651,0.493694,0.940863,0.429804,0.175496,0.6141,0.521811,0.204103,0.572468,0.605916,0.368421,0.289453,0.995999,0.364781,0.813571,0.444264,0.49177,0.177257,0.218275,0.274125,0.914897,0.441967,0.43608,0.159156,0.0174304,0.942202,0.91341,0.95424,0.296955,0.9211,0.219075,0.550127,0.475068,0.657569,0.585533,0.858587,0.644077,0.569946,0.955298,0.484958,0.771783,0.351257,0.771855,0.736777,0.548803,0.917095,0.572418,0.782983,0.198667,0.831141,0.953453,0.226022,0.604507,0.989351,0.593712,0.127455,0.0756304,0.42801,0.292347,0.831245,0.0372616,0.684107,0.202919,0.00303334,0.630696,0.732107,0.796252,0.0250468,0.537798,0.886572,0.2913,|0.68294,0.129194,0.574464,0.170373,0.974968,0.430711,0.49885,0.784372,0.878211,0.041426,0.181636,0.459569,0.565577,0.924456,0.118741,0.10092,0.809326,0.952776,0.0727873,0.649258,0.797914,0.484825,0.435854,0.0101019,0.695642,0.742824,0.00127286,0.819001,0.991901,0.779101,0.474445,0.0537857,0.0195034,0.181147,0.906372,0.847776,0.342189,0.187638,0.777401,0.505437,0.31172,0.770427,0.595388,0.896206,0.890921,0.404639,0.39716,0.871052,0.172696,0.298336,0.602396,0.192621,0.824123,0.563069,0.91622,0.287687,0.410684,0.476402,0.792086,0.878107,0.87576,0.507908,0.772436,0.104849,0.322668,0.289035,0.420578,0.200233,0.0170733,0.820255,0.849847,0.802654,0.0937416,0.0443825,0.422364,0.0493263,0.410245,0.661991,0.622174,0.522511,0.921153,0.573104,0.0294344,0.880315,0.0386582,0.771903,0.674316,0.567326,0.587721,0.826193,0.971227,0.208592,0.3251,0.0769749,0.263101,0.616618,0.979324,0.0119177,0.375653,0.392029,0.185289,0.603208,0.798721,0.929054,0.449483,0.0527384,0.920544,0.515331,0.542497,0.0476405,0.474258,0.331924,0.277232,0.787378,0.963428,0.0966489,0.165163,0.0356589,0.0443503,0.955894,0.107486,0.245348,0.274414,0.0840821,0.794468,0.237939,0.639017,0.528097,0.0398074,0.429931,0.836513,0.591608,0.957715,0.137283,0.38939,0.172011,0.995052,0.630874,0.237485,0.80407,0.765508,0.943697,0.847559,0.164058,0.712582,0.411276,0.414311,0.736656,0.653124,0.0682997,0.656608,0.502185,0.252458,0.0352048,0.734134,0.259199,0.412714,0.125289,0.846233,0.263296,0.049349,0.162029,0.0983884,0.0879856,0.108195,0.608713,0.103173,0.151585,0.792517,0.162306,0.0754333,0.373395,0.209313,0.425431,0.743801,0.421424,0.332275,0.43381,0.694824,0.827243,0.977207,0.657472,0.339667,0.039201,0.33191,0.338561,0.770383,0.527115,0.712506,0.20935,0.570711,0.532455,0.449315,0.478897,0.801722,0.324723,0.4738,0.985255,0.502221,0.892497,0.195933,0.905838,0.253131,0.496865,0.956493,0.214868,0.386594,0.311323,0.498047,0.305485,0.920972,0.447238,0.410045,0.784564,0.537579,0.730691,0.375432,0.0626657,0.0729063,0.0931568,0.674473,0.999041,0.0589315,0.250231,0.971825,0.454767,0.341941,0.261828,0.42771,0.299307,0.229934,0.952996,0.571792,0.618859,0.934673,0.827341,0.690169,0.0784841,0.320969,0.367629,0.119313,0.463259,0.0551465,0.472194,0.452745,0.093457,0.900745,0.495525,0.653917,0.975798,0.365362,0.622411,0.938254,0.640711,0.0930233,0.914609,0.609299,0.218535,0.196831,0.502509,0.760935,0.214009,0.457768,0.789095,0.443672,0.747911,0.0731104,0.00156981,0.611352,0.211027,0.125089,0.791399,0.342704,0.0903801,0.817055,0.934707,0.00486416,0.241036,0.146646,0.542951,0.767753,0.319193,0.758789,0.211749,0.275114,0.376996,0.102389,0.858711,0.317333,0.825913,0.987532,0.363157,0.874717,0.04455,0.345308,0.350636,0.3075,0.459354,0.929033,0.122288,0.991381,0.56574,0.800008,0.185896,0.966266,0.428472,0.328445,0.552568,0.539487,0.982027,0.867454,0.701901,0.77478,0.647638,0.598205,0.266656,0.876791,0.129504,0.123381,0.457087,0.00308669,0.216785,0.207348,0.191542,0.280622,0.5046,0.539314,0.376355,0.402265,0.589991,0.910966,0.54026,0.225145,0.532588,0.587478,0.491329,0.530568,0.102027,0.88991,0.3021,0.925946,0.341474,0.832902,0.7574,0.967468,0.571518,0.124562,0.723362,0.179781,0.127019,0.754378,0.427328,0.0364511,0.533258,0.369118,0.0437349,0.388463,0.589581,0.91894,0.121845,0.189873,0.0224844,0.95672,0.459001,0.567713,0.784824,0.985077,0.213294,0.198939,0.0357224,0.94174,0.975705,0.165879,0.832708,0.136112,0.399635,0.966228,0.0743113,0.850319,0.704003,0.98724,0.418035,0.324885,0.624402,0.458045,0.259223,0.0364137,0.439655,0.0919676,0.147615,0.879852,0.773344,0.644388,0.440456,0.900122,0.866394,0.486277,0.267937,0.933948,0.237339,0.847693,0.556009,0.984568,0.168665,0.197608,0.915792,0.7462,0.569249,0.426366,0.527755,0.175108,0.186267,0.753266,0.732085,0.00629735,0.692985,0.754771,0.735558,0.388507,0.204595,0.458419,0.809387,0.127602,0.80274,0.658095,0.44114,0.80578,0.571804,0.831104,0.617592,0.522021,0.91005,0.692852,0.214024,0.261546,0.943044,0.498548,0.00280094,0.958647,0.134679,0.453743,0.187711,0.46201,0.744387,0.344212,0.206793,0.566698,0.926277,0.0136833,0.960114,0.70077,0.358893,0.557966,0.382549,0.21357,0.531473,0.0471916,0.500324,0.190769,0.0914937,0.87077,0.405367,0.659425,0.336242,0.5901,0.931649,0.7446,0.0617327,0.769148,0.445086,0.980395,0.159163,0.314115,0.0770296,0.801436,0.847176,0.319789,0.160026,0.588466,0.061402,0.787887,0.61849,0.530763,0.701601,0.0602344,0.408553,0.841965,0.722181,0.245302,0.691302,0.893032,0.768254,0.83533,0.289028,0.864494,0.0284162,0.432776,0.319682,0.204942,0.283652,0.829258,0.724291,0.800734,0.172005,0.0802804,0.426408,0.00224155,0.728314,0.0997836,0.87375,0.373899,0.212642,0.827118,0.389086,0.446832,0.596053,0.0097934,0.778461,0.415587,0.18665,0.597068,0.301605,0.746024,0.249761,0.319947,0.430504,0.344948,0.36461,0.274939,0.370399,0.959979,0.397034,0.532296,0.782655,0.933222,0.086895,0.0956632,0.857367,0.906937,0.711696,0.555365,0.947202,0.680273,0.169047,0.570043,0.403339,0.98236,0.519723,0.842101,0.860412,0.357841,0.536392,0.241077,0.373844,0.206075,0.715753,0.881602,0.77704,0.945574,0.135549,0.847325,0.627021,0.544195,0.839805,0.865705,0.217656,0.660206,0.585375,0.373265,0.695064,0.651737,0.11069,0.190847,0.331151,0.371401,0.0762842,0.992982,0.910663,0.794065,0.106073,0.603862,0.243709,0.0625736,0.108648,0.479261,0.863835,0.543341,0.933336,0.733774,0.428306,0.893323,0.0399007,0.145455,0.156909,0.296303,0.00016278,0.0404433,0.677132,0.379796,0.40938,0.690152,0.457459,0.767131,0.861837,0.443971,0.394908,0.52577,0.854657,0.962965,0.706506,0.254465,0.189349,0.853213,0.442285,0.604727,0.621873,0.0539103,0.368101,0.897399,0.34929,0.335333,0.426804,0.856429,0.210693,0.495681,0.265618,0.709354,0.635222,0.0791699,0.735023,0.204854,0.783156,0.650297,0.588175,0.875503,0.0549059,0.940831,0.0403449,0.357103,0.515805,0.661902,0.749039,0.592217,0.951437,0.755091,0.309344,0.753708,0.602082,0.949109,0.497898,0.844067,0.84477,0.767115,0.573255,0.633512,0.320652,0.442362,0.438592,0.0341653,0.426025,0.906841,0.272201,0.508865,0.983195,0.590917,0.547882,0.456371,0.558493,0.0995363,0.417658,0.611568,0.610787,0.326659,0.628007,0.083187,0.0867643,0.340238,0.976843,0.787916,0.679256,0.55985,0.884214,0.244345,0.349674,0.851802,0.381724,0.469645,0.460907,0.253836,0.151552,0.860001,0.871371,0.431622,0.758435,0.710473,0.654595,0.372178,0.444549,0.227815,0.795032,0.782916,0.787219,0.29058,0.167605,0.343264,0.538685,0.78232,0.614264,0.952489,0.782536,0.532167,0.0283853,0.104421,0.913116,0.584619,0.593319,0.563778,0.0417913,0.112571,0.311539,0.376451,0.665932,0.859832,0.791521,0.954824,0.481296,0.816004,0.960034,0.299833,0.44531,0.436226,0.441884,0.919,0.256885,0.994229,0.968484,0.0535192,0.19553,0.0649133,0.0131345,0.0128254,0.352399,0.535084,0.874883,0.1824,0.040049,0.770647,0.931325,0.549721,0.490181,0.192963,0.917245,0.035584,0.720348,0.580103,0.294918,0.473776,0.474104,0.663829,0.309643,0.0261064,0.0632392,0.0328934,0.819834,0.490109,0.960284,0.10758,0.443406,0.101915,0.739535,0.393051,0.624387,0.662203,0.138508,0.766801,0.525852,0.961248,0.3353,0.525434,0.627293,0.850147,0.332053,0.287954,0.251134,0.479331,0.00302088,0.294401,0.784139,0.2876,0.767123,0.487369,0.557179,0.294311,0.655761,0.472709,0.0457872,0.972487,0.178949,0.485616,0.968087,0.765716,0.056396,0.0707892,0.920891,0.949248,0.693428,0.910932,0.27031,0.115368,0.13616,0.238597,0.760403,0.542833,0.409171,0.943041,0.886187,0.738721,0.597507,0.0922855,0.251656,0.664005,0.405851,0.747466,0.727222,0.826213,0.134918,0.144059,0.763867,0.090887,0.966924,0.13358,0.379661,0.646201,0.241551,0.527342,0.872386,0.0691921,0.00915402,0.738422,0.254902,0.408853,0.219945,0.854621,0.00202781,0.817854,0.46965,0.691019,0.999211,0.59028,0.360692,0.98134,0.850932,0.945557,0.907632,0.0413277,0.436791,0.222668,0.260768,0.284601,0.91147,0.727288,0.57347,0.733328,0.147756,0.618323,0.638255,0.969816,0.440828,0.671099,0.626717,0.692464,0.197051,0.524028,0.0105036,0.322271,0.869525,0.422562,0.791959,0.594355,0.368015,0.69286,0.415304,0.529478,0.224369,0.781227,0.224509,0.300177,0.458762,0.305378,0.559533,0.368053,0.219429,0.808448,0.382096,0.0541734,0.101324,0.651259,0.236839,0.451133,0.0853378,0.42252,0.139305,0.430114,0.444162,0.0263469,0.992401,0.234607,0.673452,0.507994,0.240086,0.859462,0.209763,0.19345,0.214752,0.507702,0.370403,0.986509,0.969655,0.00934952,0.832623,0.329482,0.563107,0.273143,0.12056,0.56322,0.180979,0.582172,0.784516,0.658793,0.293846,0.619985,0.303359,0.998904,0.91626,0.0129945,0.38894,0.445461,0.957993,0.225306,0.819946,0.473784,0.736869,0.222944,0.407397,0.548827,0.978583,0.76032,0.671871,0.956432,0.887708,0.0947908,0.185463,0.392253,0.702416,0.870458,0.180881,0.67471,0.565309,0.237862,0.362447,0.473665,0.144422,0.0954461,0.609769,0.194668,0.72362,0.851192,0.183813,0.173952,0.690512,0.293932,0.824259,0.51422,0.376497,0.660786,0.935296,0.736325,0.949973,0.314261,0.971871,0.392697,0.284724,0.81024,0.242071,0.891334,0.55945,0.799583,0.464961,0.83333,0.588883,0.347079,0.528278,0.934607,0.28579,0.240334,0.0165175,0.682813,0.45893,0.560075,0.83488,|0.980822,0.405986,0.0149416,0.110548,0.573654,0.126707,0.147771,0.155507,0.829413,0.85397,0.0788355,0.924513,0.716316,0.36564,0.724864,0.0732743,0.950189,0.853723,0.480029,0.260334,0.876761,0.422763,0.28559,0.31865,0.68831,0.115041,0.477676,0.546231,0.890474,0.590635,0.0969969,0.443244,0.0857099,0.916569,0.902712,0.270943,0.273814,0.92829,0.599554,0.52721,0.930394,0.695508,0.489486,0.913017,0.97139,0.632721,0.547872,0.7292,0.42352,0.263574,0.580068,0.451065,0.901613,0.67147,0.960456,0.745629,0.711613,0.635601,0.0171087,0.503418,0.497003,0.236196,0.915203,0.184749,0.559511,0.223175,0.676204,0.0887846,0.820221,0.732695,0.430368,0.851709,0.570753,0.106269,0.629739,0.920808,0.908912,0.795536,0.912494,0.537795,0.73769,0.0974226,0.100752,0.445976,0.381253,0.0603319,0.883371,0.65949,0.394549,0.727896,0.964938,0.693013,0.280615,0.3722,0.535611,0.265035,0.289475,0.595861,0.161608,0.602331,0.147152,0.469108,0.264207,0.606654,0.616593,0.460898,0.543006,0.347039,0.46504,0.60255,0.790949,0.510292,0.405705,0.295193,0.978142,0.489442,0.637143,0.642638,0.775302,0.224269,0.326779,0.173781,0.238508,0.0860875,0.348878,0.639605,0.467379,0.490316,0.434063,0.286857,0.375025,0.273051,0.0590937,0.344771,0.268383,0.630625,0.983771,0.0973125,0.291157,0.0252576,0.208914,0.186786,0.2598,0.407814,0.802911,0.717308,0.0534614,0.665322,0.27874,0.122171,0.0456619,0.910875,0.836906,0.548865,0.98303,0.929044,0.998677,0.701483,0.258851,0.82182,0.776752,0.950378,0.292014,0.31371,0.695584,0.45588,0.0118601,0.0363441,0.636061,0.141192,0.973463,0.912914,0.911501,0.0722611,0.826458,0.923124,0.615982,0.172996,0.0392056,0.0789292,0.494243,0.639563,0.682853,0.646902,0.753227,0.502661,0.743432,0.363885,0.671034,0.340437,0.0179055,0.868417,0.881399,0.354373,0.249231,0.36246,0.955042,0.0406025,0.761874,0.426879,0.095292,0.198075,0.795143,0.824738,0.252272,0.802592,0.280569,0.668802,0.456293,0.960175,0.396809,0.146403,0.441015,0.150989,0.151623,0.336266,0.404631,0.710637,0.36663,0.0513096,0.747969,0.307203,0.425928,0.0407219,0.870858,0.544149,0.691301,0.785883,0.668323,0.449973,0.540417,0.963191,0.133823,0.957234,0.436639,0.54243,0.639136,0.778289,0.292278,0.999279,0.594566,0.260247,0.70736,0.622897,0.495506,0.290767,0.458467,0.708795,0.535171,0.685472,0.118317,0.468343,0.5698,0.644855,0.291221,0.129062,0.243765,0.73978,0.258593,0.0464475,0.88999,0.123813,0.460885,0.296697,0.83868,0.896619,0.0193963,0.124709,0.155935,0.638964,0.0989389,0.924213,0.623685,0.385521,0.73483,0.962637,0.890871,0.624424,0.993531,0.94119,0.554244,0.594062,0.193727,0.520142,0.229768,0.804404,0.901885,0.160119,0.514057,0.672165,0.788916,0.218842,0.705492,0.917781,0.566952,0.295446,0.631444,0.75379,0.281426,0.262287,0.177419,0.929061,0.628483,0.967241,0.85161,0.978617,0.511471,0.439447,0.629234,0.357212,0.84481,0.229887,0.753801,0.905754,0.890999,0.131983,0.631651,0.363798,0.956918,0.521847,0.648062,0.790216,0.411857,0.694758,0.811433,0.0507492,0.71754,0.239961,0.809909,0.591003,0.097027,0.733945,0.850226,0.393882,0.646856,0.553305,0.936729,0.516894,0.292593,0.989313,0.723973,0.82722,0.350648,0.162695,0.607718,0.971684,0.700364,0.847393,0.54064,0.132386,0.188499,0.774269,0.796523,0.652784,0.641039,0.637742,0.620083,0.797092,0.681182,0.11478,0.971091,0.135904,0.245817,0.767957,0.593879,0.939857,0.395569,0.555667,0.382184,0.903085,0.994406,0.502354,0.745331,0.4771,0.421539,0.7026,0.0654421,0.696099,0.0717604,0.239423,0.247857,0.407454,0.995891,0.488187,0.735316,0.62727,0.212156,0.621093,0.465614,0.416346,0.629058,0.208149,0.185334,0.347819,0.407646,0.232713,0.89441,0.489073,0.50881,0.450175,0.422062,0.580957,0.902754,0.339294,0.535359,0.41124,0.000593603,0.517148,0.76005,0.85929,0.890337,0.497685,0.593084,0.0217902,0.496799,0.932427,0.308248,0.738104,0.000279903,0.275945,0.604779,0.567945,0.504988,0.505946,0.49861,0.253508,0.464503,0.128756,0.108029,0.343752,0.298954,0.137703,0.578715,0.27287,0.429457,0.0978451,0.42641,0.0510989,0.546986,0.291672,0.355269,0.401867,0.819787,0.0016802,0.155622,0.339083,0.995067,0.12925,0.392209,0.746543,0.570203,0.520052,0.771965,0.0467732,0.466783,0.606958,0.548277,0.1122,0.581668,0.168491,0.588384,0.969516,0.525274,0.745357,0.321875,0.512764,0.754758,0.432308,0.811149,0.123582,0.0463277,0.410335,0.656346,0.794122,0.979532,0.186918,0.159295,0.449565,0.492371,0.489584,0.00731009,0.0910841,0.89253,0.800406,0.77874,0.972528,0.350894,0.242189,0.636578,0.176202,0.673701,0.495044,0.686137,0.284833,0.481186,0.0800068,0.233942,0.108276,0.0683774,0.308015,0.690799,0.310905,0.226471,0.715264,0.893778,0.0195493,0.192819,0.485386,0.340545,0.491368,0.139375,0.00980031,0.702118,0.00958198,0.629821,0.48164,0.231467,0.812851,0.344018,0.361276,0.444787,0.16268,0.476694,0.909957,0.625703,0.8506,0.464643,0.31053,0.683942,0.974801,0.946512,0.503692,0.184544,0.504734,0.0118849,0.468257,0.103412,0.443066,0.769122,0.113903,0.200243,0.303441,0.927558,0.259375,0.292013,0.73381,0.325747,0.533041,0.625938,0.963841,0.697511,0.385997,0.605908,0.878013,0.298037,0.189652,0.541558,0.477327,0.392951,0.57213,0.540655,0.540041,0.809886,0.0460543,0.356315,0.393044,0.981413,0.0988148,0.852782,0.683212,0.39333,0.888332,0.996099,0.609199,0.508042,0.457868,0.408718,0.979688,0.077651,0.84944,0.863126,0.845572,0.925993,0.188926,0.0112414,0.289162,0.541317,0.998768,0.88696,0.613687,0.19731,0.11841,0.248393,0.207065,0.984034,0.153264,0.470333,0.20508,0.880519,0.878466,0.49157,0.533861,0.308569,0.161198,0.541474,0.787414,0.979101,0.693267,0.985408,0.498503,0.218095,0.871423,0.882843,0.505926,0.385914,0.180528,0.081091,0.949968,0.228598,0.625797,0.781392,0.0248805,0.0410188,0.689686,0.0254256,0.925473,0.307711,0.643909,0.356241,0.326797,0.832992,0.734295,0.467052,0.628587,0.878075,0.0623611,0.422687,0.215615,0.519097,0.51455,0.920687,0.685102,0.396823,0.620432,0.478658,0.890335,0.96565,0.362264,0.792216,0.399785,0.967259,0.478976,0.468791,0.922408,0.0724867,0.917186,0.964346,0.275218,0.813652,0.583893,0.648639,0.506499,0.899991,0.0728697,0.582932,0.631271,0.679912,0.507179,0.674853,0.096668,0.592585,0.654914,0.940935,0.464441,0.346486,0.891796,0.963164,0.873711,0.0504375,0.845112,0.947637,0.366743,0.967468,0.0657389,0.52153,0.0896705,0.855001,0.592859,0.180984,0.200271,0.867533,0.168491,0.758717,0.652671,0.232759,0.765586,0.177662,0.0428668,0.550478,0.493263,0.887647,0.943492,0.412841,0.375279,0.0395189,0.700895,0.191846,0.856657,0.158361,0.300947,0.0387734,0.467237,0.105818,0.761275,0.508733,0.0153307,0.492027,0.357637,0.493266,0.0926559,0.43387,0.963125,0.913215,0.661789,0.0398809,0.439895,0.250293,0.863708,0.543676,0.828187,0.959117,0.328086,0.060223,0.0135227,0.914563,0.701342,0.62987,0.0343419,0.550532,0.110005,0.462927,0.0879669,0.914532,0.616454,0.997959,0.835554,0.825037,0.734172,0.619428,0.0749182,0.452017,0.297389,0.201766,0.0631773,0.730464,0.20787,0.0804157,0.510265,0.115822,0.00682843,0.437551,0.346114,0.418114,0.291765,0.308813,0.835741,0.868215,0.674705,0.532697,0.510154,0.974168,0.167637,0.181652,0.484655,0.437844,0.777096,0.695198,0.135966,0.180466,0.94053,0.188501,0.646482,0.500038,0.0337818,0.74359,0.963344,0.939903,0.638971,0.740361,0.37679,0.754715,0.622009,0.137049,0.163977,0.243735,0.41672,0.202644,0.361258,0.94203,0.247016,0.046528,0.824114,0.87917,0.830826,0.263585,0.376611,0.795846,0.990616,0.354385,0.163423,0.806651,0.572854,0.286022,0.22056,0.556791,0.266912,0.280691,0.887971,0.0598645,0.354492,0.331846,0.0493467,0.431762,0.350531,0.794814,0.386415,0.882049,0.735547,0.579317,0.901446,0.395165,0.595753,0.0917235,0.744766,0.148425,0.497487,0.229203,0.0327442,0.990427,0.658315,0.330073,0.693828,0.823988,0.605993,0.94609,0.272488,0.322266,0.0565216,0.245198,0.11674,0.683214,0.384935,0.426538,0.659067,0.962737,0.117557,0.220582,0.373039,0.616027,0.402858,0.212437,0.544549,0.0501125,0.301737,0.0281658,0.100005,0.00750756,0.334896,0.803075,0.367362,0.714132,0.696238,0.487483,0.526734,0.1286,0.742149,0.917333,0.906646,0.607725,0.879156,0.186675,0.575244,0.625786,0.598853,0.787846,0.716682,0.269794,0.238649,0.381872,0.984695,0.276221,0.0784094,0.00843173,0.207052,0.0302196,0.043197,0.472408,0.853585,0.814837,0.134494,0.765138,0.796619,0.614774,0.746308,0.938245,0.883601,0.878679,0.832932,0.160921,0.675508,0.846414,0.116669,0.999738,0.950691,0.426657,0.929579,0.451655,0.37351,0.883896,0.784259,0.163588,0.375777,0.970772,0.279567,0.00590301,0.919828,0.130111,0.475217,0.747702,0.965493,0.549911,0.883128,0.58305,0.832758,0.667786,0.614043,0.80036,0.542006,0.551473,0.831638,0.984613,0.424407,0.0606755,0.170489,0.0507351,0.176612,0.477903,0.921396,0.431031,0.847392,0.975824,0.938548,0.533631,0.784824,0.0582233,0.576958,0.377335,0.05072,0.133573,0.618716,0.67917,0.70326,0.786952,0.664237,0.834877,0.80686,0.698764,0.276749,0.0476899,0.135939,0.949969,0.933737,0.854943,0.0102251,0.263206,0.564831,0.813815,0.758345,0.168982,0.89566,0.980066,0.955127,0.786409,0.556912,0.726783,0.98383,0.158451,0.805236,0.690988,0.886432,0.421623,0.332945,0.694933,0.663084,0.506839,0.611233,0.811292,0.434099,0.86437,0.233741,|0.542138,0.616599,0.484575,0.944837,0.397733,0.293862,0.434111,0.0816492,0.373444,0.430582,0.740837,0.283429,0.489755,0.108287,0.485088,0.86516,0.477003,0.488606,0.241286,0.079224,0.572544,0.11735,0.236103,0.511818,0.922392,0.504981,0.298958,0.965727,0.287459,0.0483094,0.995235,0.733791,0.598229,0.869946,0.714701,0.0283387,0.939863,0.631372,0.850949,0.817904,0.837724,0.638652,0.231134,0.309832,0.460873,0.959628,0.740218,0.421258,0.237313,0.0574183,0.13558,0.699247,0.223316,0.796988,0.331643,0.245433,0.51948,0.432446,0.955841,0.528679,0.745567,0.366395,0.272041,0.611342,0.742065,0.801339,0.401888,0.662455,0.481453,0.0848167,0.00552791,0.523849,0.717194,0.993035,0.499924,0.635451,0.419783,0.79001,0.00479144,0.0571492,0.984208,0.111157,0.306917,0.914313,0.671558,0.430265,0.987221,0.890204,0.183246,0.154703,0.297155,0.196777,0.397412,0.753835,0.845135,0.75191,0.220108,0.824646,0.743996,0.496958,0.248093,0.746025,0.929637,0.619705,0.922158,0.377783,0.507021,0.565432,0.0117472,0.692911,0.904536,0.0393484,0.821801,0.369489,0.790862,0.192203,0.560345,0.355422,0.27366,0.00184184,0.961349,0.0927723,0.330156,0.621114,0.415611,0.909167,0.86083,0.681054,0.244662,0.210994,0.0839727,0.654764,0.723661,0.621128,0.995973,0.238517,0.932264,0.116938,0.883406,0.189125,0.161244,0.653643,0.0568385,0.391475,0.0186042,0.115205,0.964888,0.914806,0.678881,0.454937,0.752127,0.483627,0.0971443,0.536663,0.0341702,0.507813,0.932738,0.456157,0.645536,0.882733,0.628896,0.427099,0.416423,0.106548,0.955429,0.332448,0.642281,0.436242,0.755272,0.892758,0.7729,0.68792,0.507263,0.993907,0.0508288,0.434207,0.82771,0.780385,0.853021,0.428708,0.0610664,0.726716,0.365789,0.573496,0.273753,0.264673,0.190599,0.052361,0.863149,0.178819,0.702743,0.879666,0.834925,0.380135,0.324783,0.0566334,0.85898,0.869664,0.102325,0.336146,0.258242,0.884052,0.466196,0.687966,0.87176,0.893298,0.0783058,0.377586,0.965683,0.270732,0.207377,0.576061,0.530185,0.373814,0.960768,0.67126,0.933054,0.957162,0.888033,0.548166,0.955857,0.595172,0.353054,0.243391,0.254058,0.0133895,0.131672,0.195272,0.815331,0.586787,0.0582279,0.818741,0.37242,0.586486,0.359278,0.656337,0.879669,0.221266,0.820774,0.885697,0.916144,0.531334,0.202041,0.867425,0.795928,0.389411,0.289365,0.153199,0.975844,0.861649,0.00391603,0.151214,0.966808,0.447951,0.0913168,0.149421,0.264565,0.954111,0.0713524,0.485437,0.0126075,0.773705,0.370741,0.48339,0.451171,0.032131,0.239906,0.687204,0.000240803,0.717235,0.52827,0.0832645,0.838549,0.191005,0.34809,0.614571,0.464841,0.843092,0.508771,0.817259,0.0334875,0.655062,0.621982,0.637968,0.740757,0.974226,0.0647004,0.136887,0.0453027,0.356001,0.372554,0.512196,0.504343,0.175902,0.420543,0.234178,0.823866,0.0493855,0.0323813,0.999732,0.338588,0.872692,0.435333,0.18522,0.352997,0.29574,0.96899,0.938091,0.912654,0.724295,0.527393,0.936258,0.649443,0.95376,0.0526506,0.164002,0.173285,0.189394,0.376233,0.453848,0.748415,0.312525,0.294332,0.811238,0.126783,0.486649,0.0976156,0.443241,0.828862,0.39709,0.994981,0.0955989,0.182427,0.0286736,0.716467,0.666478,0.616631,0.395861,0.253964,0.554453,0.49627,0.210334,0.933744,0.742083,0.246204,0.252442,0.51122,0.920834,0.742204,0.698135,0.587395,0.485307,0.351101,0.00924802,0.201672,0.448847,0.151539,0.487825,0.439209,0.862253,0.246787,0.38596,0.359693,0.59678,0.987369,0.100038,0.629352,0.518582,0.540026,0.176556,0.619007,0.999476,0.989251,0.372139,0.777292,0.660251,0.40925,0.691488,0.715602,0.0582774,0.40926,0.389739,0.905442,0.288579,0.0250955,0.766541,0.759433,0.182566,0.525991,0.300159,0.602123,0.6347,0.397618,0.773587,0.73611,0.159329,0.107042,0.206148,0.721302,0.595591,0.493435,0.0439543,0.984089,0.817716,0.830139,0.855072,0.401395,0.312212,0.970904,0.900668,0.375677,0.116364,0.519987,0.63062,0.207816,0.417909,0.291936,0.327974,0.812313,0.960286,0.360037,0.283563,0.266439,0.536894,0.0887125,0.273053,0.115449,0.302871,0.246023,0.78781,0.475377,0.468766,0.886424,0.948938,0.353873,0.461997,0.94088,0.341749,0.291646,0.0241049,0.173174,0.944911,0.22663,0.286513,0.125549,0.367208,0.0798729,0.0152646,0.470721,0.627363,0.737461,0.573623,0.301443,0.928243,0.415254,0.115106,0.759009,0.045727,0.737955,0.960821,0.163599,0.526976,0.427067,0.0406567,0.776554,0.791106,0.736625,0.300774,0.360841,0.944742,0.960451,0.84864,0.773168,0.530275,0.242953,0.328997,0.36965,0.998477,0.0756482,0.587671,0.314138,0.861816,0.822656,0.331664,0.518392,0.853487,0.281179,0.573564,0.176896,0.890491,0.913162,0.212409,0.0554289,0.916126,0.96182,0.932686,0.45634,0.851008,0.093209,0.807378,0.790091,0.0396993,0.666529,0.0902852,0.463319,0.246894,0.156176,0.324013,0.228279,0.639442,0.4306,0.0869319,0.671385,0.691599,0.310843,0.567179,0.477519,0.219288,0.177567,0.0820811,0.819061,0.351282,0.846884,0.965113,0.194562,0.601098,0.817122,0.118821,0.839275,0.412682,0.561772,0.336587,0.0951374,0.999657,0.284542,0.577283,0.0277802,0.49493,0.800306,0.388254,0.423966,0.23278,0.844655,0.742864,0.999699,0.084063,0.140352,0.560832,0.728824,0.177719,0.458916,0.0325755,0.78682,0.749072,0.615984,0.850599,0.789423,0.494202,0.296293,0.113895,0.220279,0.771223,0.355934,0.778882,0.634644,0.480507,0.467382,0.755182,0.43777,0.051827,0.291019,0.476234,0.93825,0.520582,0.49662,0.325767,0.61628,0.72846,0.435577,0.467864,0.142652,0.817634,0.637685,0.0698913,0.0230209,0.022258,0.10232,0.788092,0.18349,0.71025,0.212114,0.530346,0.0604092,0.937472,0.377179,0.0569242,0.224146,0.431817,0.685977,0.743025,0.96075,0.231264,0.103378,0.35962,0.917874,0.612685,0.0758255,0.655001,0.487838,0.389499,0.257125,0.776376,0.891381,0.769887,0.406347,0.495473,0.438276,0.599144,0.169006,0.545044,0.466421,0.159138,0.623989,0.624599,0.720249,0.800722,0.708736,0.0381081,0.433713,0.317357,0.0732815,0.30609,0.118999,0.430801,0.358715,0.230275,0.559597,0.169497,0.319053,0.821437,0.636467,0.017601,0.0519047,0.308464,0.0261571,0.708871,0.438355,0.766076,0.607736,0.941268,0.0902998,0.412778,0.756463,0.675783,0.891919,0.782781,0.69731,0.184976,0.94988,0.971407,0.978633,0.236521,0.578767,0.0598109,0.158435,0.196033,0.38803,0.768748,0.50529,0.0268976,0.244068,0.675611,0.454207,0.225975,0.552341,0.0463125,0.284186,0.452982,0.997131,0.922895,0.635945,0.655926,0.505661,0.281371,0.580317,0.322543,0.534922,0.567288,0.898551,0.214912,0.790524,0.443657,0.834736,0.965954,0.0451218,0.990806,0.540712,0.698985,0.947254,0.860565,0.607663,0.424921,0.099893,0.594746,0.278761,0.906865,0.0156056,0.282446,0.0596738,0.216217,0.215617,0.526194,0.434827,0.560634,0.772966,0.86773,0.368006,0.951591,0.98779,0.448648,0.0172443,0.300596,0.368075,0.499946,0.418601,0.493791,0.360562,0.170368,0.828412,0.70056,0.952802,0.728303,0.32769,0.486549,0.0280454,0.677182,0.856,0.884225,0.474742,0.0891317,0.144271,0.0801443,0.11911,0.318064,0.555766,0.763988,0.540633,0.394285,0.11641,0.144413,0.29051,0.282678,0.407852,0.40559,0.299373,0.24262,0.985692,0.42326,0.679653,0.300788,0.0710568,0.22445,0.33947,0.520539,0.809839,0.126712,0.379131,0.233959,0.117014,0.942064,0.4908,0.537633,0.126447,0.888447,0.000826061,0.170979,0.368232,0.192267,0.276239,0.945992,0.544782,0.206138,0.247791,0.757163,0.026086,0.700269,0.425737,0.660825,0.858495,0.790751,0.382923,0.6258,0.729962,0.77485,0.472824,0.414329,0.755028,0.380279,0.16735,0.196751,0.0162749,0.58435,0.186173,0.276525,0.188197,0.16587,0.422121,0.00917864,0.0479799,0.153783,0.753679,0.548319,0.989542,0.521964,0.266073,0.495359,0.861687,0.351707,0.0999287,0.944352,0.306666,0.58333,0.599787,0.0972521,0.359584,0.218062,0.534852,0.132372,0.915038,0.22866,0.489097,0.225827,0.736951,0.957599,0.35349,0.437331,0.137931,0.645773,0.738902,0.311181,0.389557,0.950777,0.383055,0.67274,0.404556,0.0542958,0.929817,0.61608,0.452314,0.930127,0.855954,0.974951,0.966186,0.0987448,0.484068,0.0942746,0.356767,0.56555,0.172645,0.784722,0.978485,0.879078,0.164643,0.503397,0.00934601,0.350391,0.42677,0.46889,0.390775,0.457694,0.278123,0.392235,0.86033,0.264223,0.701085,0.229667,0.459979,0.39826,0.366082,0.896985,0.139361,0.534394,0.476176,0.850783,0.189448,0.235569,0.969242,0.98574,0.875481,0.470101,0.24443,0.127816,0.507333,0.89768,0.151008,0.395386,0.815156,0.0820051,0.080275,0.326623,0.825534,0.852046,0.106828,0.818349,0.435965,0.986356,0.559547,0.789194,0.196285,0.176095,0.673316,0.431593,0.692057,0.409536,0.617622,0.766763,0.217217,0.112494,0.133143,0.460592,0.192372,0.942566,0.662586,0.773431,0.184621,0.484852,0.740171,0.181394,0.279187,0.97769,0.396682,0.514652,0.0599518,0.14623,0.617184,0.318496,0.930984,0.523656,0.123333,0.699363,0.94039,0.18957,0.464475,0.0947366,0.910519,0.813481,0.655487,0.11257,0.105891,0.452724,0.772178,0.232887,0.86319,0.417039,0.415004,0.339304,0.58337,0.592135,0.191522,0.439477,0.394348,0.28336,0.451467,0.0970755,0.434228,0.726017,0.218513,0.638851,0.989558,0.595568,0.516659,0.762899,0.108758,0.0540227,0.315744,0.52204,0.221159,0.913053,0.0769511,0.793366,0.389473,0.38974,0.242807,0.462096,0.870963,0.0230118,0.185473,0.601328,0.710281,0.338446,0.118712,0.467905,0.64832,0.00995004,0.0570192,0.291454,0.0836177,0.244555,0.848851,0.948355,|0.114756,0.393258,0.774688,0.164553,0.190495,0.0415605,0.611018,0.224199,0.46767,0.144008,0.0793507,0.0757055,0.605729,0.762444,0.111494,0.642973,0.716497,0.479099,0.277247,0.0182372,0.136917,0.112352,0.999271,0.0910737,0.367168,0.571938,0.704401,0.765593,0.0505102,0.732675,0.534791,0.518751,0.0603513,0.92261,0.20612,0.952101,0.0766515,0.826635,0.556201,0.808025,0.678505,0.777138,0.216877,0.908686,0.0959783,0.408352,0.908569,0.353317,0.102001,0.289143,0.982382,0.137897,0.793545,0.157392,0.725685,0.231519,0.495586,0.119461,0.91649,0.0524346,0.488689,0.148477,0.680617,0.455664,0.528022,0.87313,0.638673,0.289843,0.0162239,0.866164,0.118157,0.215466,0.323717,0.89533,0.472345,0.416217,0.170836,0.195442,0.847572,0.372466,0.816192,0.973845,0.0772879,0.598626,0.81155,0.223382,0.0655928,0.136332,0.495846,0.159452,0.482103,0.699492,0.872412,0.998412,0.765549,0.156011,0.52871,0.548385,0.0219939,0.837509,0.865055,0.453707,0.194366,0.36844,0.0459623,0.0521334,0.140017,0.303219,0.238153,0.581454,0.689557,0.676608,0.188513,0.329538,0.162531,0.86247,0.749588,0.387885,0.273705,0.290671,0.740938,0.0117804,0.92447,0.583617,0.336214,0.573939,0.326426,0.609961,0.732625,0.429938,0.173186,0.0488916,0.117323,0.389436,0.617469,0.193438,0.6405,0.446813,0.36658,0.885835,0.710064,0.604791,0.267525,0.454888,0.413345,0.921476,0.983447,0.150565,0.570406,0.195125,0.119284,0.0107647,0.88075,0.316821,0.592966,0.239614,0.724388,0.325104,0.944341,0.412301,0.36007,0.418312,0.116002,0.946639,0.617209,0.816368,0.714539,0.434515,0.575584,0.315552,0.538879,0.576939,0.321845,0.560006,0.983041,0.392759,0.681908,0.919915,0.34611,0.889852,0.378979,0.662481,0.313393,0.249077,0.520371,0.0790861,0.673157,0.771538,0.0801139,0.624712,0.8811,0.469228,0.909995,0.398412,0.00131088,0.773879,0.370971,0.255986,0.49907,0.555044,0.721338,0.0375471,0.13671,0.364457,0.088369,0.760387,0.834774,0.147603,0.30382,0.717383,0.651296,0.403828,0.29042,0.40889,0.697523,0.119723,0.384694,0.654875,0.934387,0.880137,0.771904,0.63928,0.800733,0.602702,0.156507,0.440989,0.132469,0.640514,0.82439,0.5193,0.463691,0.941177,0.775272,0.953359,0.574091,0.32306,0.651683,0.786188,0.374816,0.226603,0.253611,0.83244,0.692444,0.46286,0.381718,0.964364,0.470619,0.861454,0.124236,0.179732,0.212653,0.719491,0.861847,0.352185,0.807284,0.635576,0.244663,0.818774,0.150155,0.0870904,0.0958939,0.392124,0.47824,0.838244,0.606561,0.603731,0.471384,0.295528,0.403988,0.898642,0.91441,0.826149,0.923771,0.0421209,0.241757,0.318765,0.592027,0.936963,0.769336,0.284271,0.0217131,0.804865,0.605566,0.387963,0.0450355,0.647472,0.725645,0.550847,0.461145,0.691364,0.119084,0.964261,0.736589,0.195741,0.120848,0.441209,0.886042,0.384837,0.0201184,0.0401931,0.474955,0.0531813,0.886893,0.588113,0.36165,0.491578,0.57167,0.164461,0.236195,0.170673,0.0928185,0.414256,0.404212,0.628643,0.267248,0.787113,0.890803,0.0305243,0.509689,0.641667,0.12623,0.44877,0.486863,0.811014,0.220664,0.686375,0.14077,0.453109,0.937156,0.453886,0.916371,0.793,0.323745,0.632736,0.127161,0.0369034,0.394232,0.909525,0.812912,0.690056,0.921798,0.77435,0.99253,0.594788,0.197252,0.34647,0.0421358,0.882422,0.378712,0.91656,0.280371,0.744659,0.531418,0.0115622,0.239903,0.594692,0.978079,0.598525,0.526651,0.801914,0.376229,0.176063,0.235001,0.592492,0.423919,0.844458,0.100342,0.94896,0.452778,0.95141,0.229554,0.163991,0.387858,0.986805,0.415699,0.203651,0.861326,0.517707,0.233682,0.353002,0.501691,0.257655,0.625834,0.520501,0.808066,0.903929,0.555797,0.965732,0.261429,0.492978,0.252004,0.155541,0.725436,0.26543,0.754513,0.553845,0.198396,0.491451,0.867232,0.384333,0.152773,0.832126,0.0195816,0.0235425,0.0189399,0.724988,0.751362,0.663002,0.843965,0.64511,0.0644371,0.589698,0.240223,0.718508,0.897555,0.83216,0.596625,0.0273246,0.898817,0.779544,0.555538,0.274322,0.759565,0.532432,0.831575,0.522423,0.948976,0.148052,0.550537,0.289592,0.999677,0.730988,0.671971,0.81978,0.328794,0.217543,0.225424,0.830308,0.279356,0.643317,0.596349,0.968133,0.0858728,0.611609,0.439639,0.780561,0.4951,0.451635,0.323509,0.630703,0.579761,0.404163,0.100784,0.397553,0.600908,0.250089,0.297184,0.0848453,0.714358,0.537329,0.416035,0.819881,0.588654,0.742991,0.607021,0.561716,0.398626,0.628962,0.621501,0.0868267,0.190374,0.303048,0.584523,0.510258,0.687817,0.94579,0.718403,0.865491,0.867469,0.962308,0.19495,0.309228,0.977815,0.377914,0.613588,0.890487,0.28007,0.175978,0.281084,0.651113,0.950432,0.0701505,0.538223,0.402225,0.0385846,0.106375,0.884721,0.254899,0.711343,0.591881,0.291481,0.510289,0.00895494,0.795824,0.354787,0.872062,0.0425279,0.788331,0.0207266,0.620347,0.0542329,0.560596,0.230345,0.811428,0.291948,0.532412,0.314908,0.14147,0.329407,0.0683922,0.607318,0.840023,0.956901,0.0628356,0.311971,0.97485,0.401832,0.696374,0.476996,0.465658,0.190117,0.631658,0.573484,0.969053,0.540732,0.302198,0.143374,0.0167275,0.932658,0.722861,0.960566,0.551794,0.877719,0.163686,0.184894,0.473893,0.635,0.00710499,0.696638,0.916099,0.537213,0.101645,0.663113,0.323837,0.594773,0.250223,0.896002,0.33732,0.509057,0.385225,0.883093,0.514268,0.0611864,0.289277,0.0134427,0.821158,0.115135,0.443673,0.22842,0.842278,0.958443,0.588526,0.655081,0.221627,0.526499,0.806774,0.47213,0.114754,0.667962,0.505017,0.45747,0.89342,0.351979,0.901994,0.429363,0.216531,0.100474,0.24323,0.89245,0.0873755,0.165222,0.850366,0.926554,0.852342,0.350165,0.354371,0.0616338,0.352679,0.759263,0.0967616,0.354969,0.793739,0.421414,0.44282,0.873264,0.425763,0.756311,0.948895,0.990497,0.85588,0.933193,0.200688,0.484834,0.915919,0.451076,0.984729,0.341833,0.023739,0.616936,0.385211,0.209241,0.71258,0.463108,0.996824,0.925373,0.556227,0.251713,0.413314,0.22879,0.689974,0.740244,0.365026,0.707347,0.461371,0.0741656,0.350489,0.122097,0.836244,0.652915,0.528298,0.0739844,0.60122,0.981098,0.73725,0.818965,0.511328,0.0673956,0.774057,0.646479,0.478423,0.717929,0.500877,0.757073,0.206605,0.40414,0.240636,0.574939,0.292777,0.48024,0.30291,0.106142,0.928384,0.504972,0.685311,0.430871,0.218255,0.994731,0.352889,0.094071,0.84128,0.265574,0.836582,0.220004,0.583946,0.368857,0.473809,0.0855413,0.932885,0.411469,0.988104,0.346396,0.433475,0.877307,0.889837,0.639951,0.740216,0.156394,0.815661,0.0981889,0.511989,0.687939,0.0439017,0.958734,0.781357,0.287898,0.920939,0.481171,0.924607,0.684983,0.0327648,0.0431128,0.512376,0.301849,0.789183,0.171307,0.476829,0.437534,0.801746,0.0436004,0.488945,0.127996,0.46992,0.337249,0.490821,0.652075,0.465368,0.79813,0.187954,0.295911,0.548573,0.78071,0.509371,0.823366,0.744309,0.40371,0.687992,0.337164,0.92273,0.544037,0.975616,0.588612,0.690934,0.770526,0.174044,0.706947,0.890827,0.404691,0.555729,0.947325,0.363942,0.997503,0.195904,0.129962,0.915361,0.758338,0.754094,0.692147,0.330722,0.990149,0.875306,0.421929,0.0172473,0.519089,0.388132,0.430928,0.908475,0.330014,0.779183,0.316514,0.27558,0.650737,0.508695,0.305483,0.153511,0.538045,0.361219,0.508627,0.629212,0.368434,0.988923,0.980322,0.239321,0.250285,0.0118511,0.306849,0.422847,0.0695129,0.0697797,0.139542,0.837426,0.23321,0.323523,0.143723,0.406081,0.957839,0.20246,0.133986,0.26532,0.17719,0.313196,0.462998,0.63836,0.501923,0.595646,0.844709,0.695095,0.682282,0.923807,0.855774,0.672798,0.991749,0.0631876,0.351736,0.503896,0.869704,0.136908,0.436592,0.338876,0.440862,0.913614,0.175674,0.791201,0.392929,0.898599,0.786815,0.592167,0.424404,0.625751,0.821346,0.338332,0.991951,0.105342,0.991043,0.134117,0.439057,0.396711,0.760447,0.324968,0.901931,0.0602782,0.757153,0.653045,0.766682,0.0391234,0.975135,0.472571,0.605833,0.988395,0.817972,0.0113779,0.138862,0.94568,0.252078,0.568619,0.958697,0.15344,0.303746,0.0229902,0.123312,0.780569,0.649991,0.738949,0.718242,0.338711,0.337051,0.310806,0.9123,0.158399,0.677061,0.621828,0.899183,0.124301,0.647092,0.0718024,0.0936309,0.490657,0.62439,0.517163,0.254712,0.803273,0.0314628,0.396736,0.923779,0.861538,0.250638,0.905304,0.800015,0.0400428,0.447853,0.68018,0.2283,0.694971,0.910317,0.992439,0.0871063,0.346452,0.507594,0.993802,0.419281,0.215627,0.0837417,0.550891,0.673583,0.543066,0.478554,0.669387,0.179979,0.296229,0.501469,0.714456,0.320098,0.983788,0.203883,0.116739,0.956576,0.13249,0.334234,0.839426,0.516477,0.747036,0.639966,0.0785299,0.148142,0.138708,0.831146,0.271649,0.30143,0.483912,0.231726,0.334566,0.86574,0.658592,0.534448,0.326425,0.313669,0.292469,0.732809,0.152958,0.690786,0.371008,0.74039,0.719792,0.172878,0.751625,0.0162176,0.492661,0.039655,0.656495,0.35511,0.88689,0.844219,0.33312,0.724423,0.535947,0.39479,0.777869,0.774991,0.157656,0.449817,0.608838,0.578056,0.71141,0.27028,0.720807,0.478269,0.869375,0.582947,0.525575,0.819957,0.949457,0.365474,0.0598,0.762819,0.910856,0.0217101,0.035342,0.125015,0.657519,0.31755,0.00744247,0.124709,0.814819,0.150399,0.518091,0.754686,0.470077,0.327973,0.547711,0.825893,0.905259,0.226947,0.133377,0.858593,0.85115,0.875757,0.556572,0.801747,0.613861,0.401959,0.895104,0.576068,0.60884,0.490313,0.198763,0.894432,0.476486,0.794961,0.560603,0.188605,0.149289,|0.948686,0.394729,0.0018875,0.58595,0.467833,0.693532,0.0174654,0.284876,0.0439583,0.89172,0.692271,0.898208,0.225159,0.738047,0.945672,0.473066,0.630321,0.051479,0.978117,0.904156,0.629681,0.172726,0.712922,0.151609,0.760384,0.185508,0.772295,0.614032,0.410076,0.261528,0.364683,0.758582,0.382553,0.190383,0.0393984,0.701165,0.582553,0.947637,0.969669,0.154085,0.77972,0.516691,0.104475,0.308445,0.875039,0.908728,0.329701,0.575206,0.512587,0.219024,0.545328,0.62092,0.973731,0.860341,0.605811,0.320048,0.790366,0.252666,0.58665,0.905363,0.0243279,0.877631,0.925026,0.323446,0.333722,0.646286,0.194182,0.0358809,0.0554561,0.436391,0.678426,0.701234,0.206222,0.317086,0.863933,0.294602,0.359416,0.088933,0.997408,0.19235,0.192176,0.696974,0.353142,0.0243685,0.191793,0.603095,0.283122,0.734399,0.744881,0.516498,0.442179,0.42577,0.694654,0.0770718,0.254782,0.449677,0.429178,0.762355,0.882069,0.919992,0.537744,0.260982,0.245776,0.747488,0.322192,0.100921,0.216042,0.526788,0.809143,0.709235,0.720822,0.0569602,0.423632,0.701745,0.309633,0.322355,0.42797,0.968504,0.975094,0.51979,0.641244,0.594389,0.0332662,0.513882,0.0268908,0.363919,0.264916,0.606367,0.081974,0.67348,0.770849,0.895651,0.414783,0.487995,0.429612,0.0496156,0.350573,0.370729,0.913005,0.545608,0.292305,0.527618,0.712708,0.63482,0.820384,0.22016,0.467267,0.24788,0.72738,0.879849,0.931304,0.435647,0.0186619,0.50014,0.837577,0.406168,0.181163,0.857281,0.763627,0.87771,0.699231,0.392746,0.967814,0.0312135,0.300908,0.888039,0.419602,0.0360684,0.596659,0.211542,0.668477,0.350403,0.86965,0.321919,0.147694,0.0686265,0.615178,0.672231,0.128702,0.73842,0.573661,0.825298,0.894724,0.611263,0.637399,0.474501,0.87699,0.317922,0.29696,0.672984,0.239619,0.757054,0.0290728,0.607799,0.503845,0.264755,0.205225,0.703504,0.850071,0.481081,0.173842,0.738161,0.579809,0.0342689,0.0482731,0.0381827,0.881663,0.965941,0.606282,0.270537,0.870616,0.0539764,0.346923,0.853389,0.466353,0.894165,0.288441,0.249059,0.0919679,0.0979944,0.889449,0.475041,0.323097,0.0571693,0.429463,0.808282,0.731894,0.680745,0.815809,0.179175,0.780484,0.0887883,0.107096,0.91629,0.410341,0.943902,0.364917,0.481526,0.639128,0.28327,0.345322,0.456604,0.152563,0.329031,0.534002,0.96671,0.853033,0.719459,0.0390643,0.841469,0.7223,0.18108,0.521039,0.309813,0.101614,0.787681,0.387996,0.920725,0.568405,0.0811496,0.587592,0.883124,0.544764,0.713409,0.696129,0.0912201,0.784847,0.389719,0.0297015,0.82107,0.85817,0.793151,0.239899,0.605466,0.600489,0.479571,0.553905,0.192649,0.607369,0.783978,0.529283,0.210082,0.725589,0.83688,0.159326,0.52401,0.294297,0.834279,0.281894,0.570726,0.544421,0.774019,0.0564704,0.369189,0.447916,0.571812,0.819113,0.573522,0.203379,0.719479,0.76289,0.566485,0.175491,0.405989,0.427807,0.633233,0.940828,0.510096,0.564253,0.276156,0.775856,0.234682,0.51855,0.369504,0.748956,0.959249,0.527815,0.619424,0.45118,0.760767,0.632217,0.148703,0.555184,0.951501,0.0343058,0.86585,0.585967,0.425758,0.143978,0.871461,0.293536,0.300537,0.500554,0.0461666,0.0665397,0.49008,0.797756,0.584673,0.121359,0.201495,0.738382,0.578125,0.539595,0.59243,0.697952,0.33935,0.160932,0.274652,0.153638,0.98377,0.594496,0.287645,0.712702,0.286352,0.267906,0.167843,0.455167,0.980581,0.478786,0.440513,0.333476,0.470286,0.674327,0.368779,0.332215,0.251494,0.238033,0.848601,0.937688,0.243562,0.562516,0.480684,0.0033673,0.188171,0.414912,0.540801,0.760811,0.503739,0.152325,0.761491,0.113893,0.136245,0.160981,0.691193,0.950834,0.0829501,0.824666,0.256522,0.65339,0.34556,0.185513,0.110475,0.0549924,0.396665,0.205472,0.731439,0.407264,0.545762,0.681465,0.274374,0.780112,0.484939,0.842619,0.706718,0.312026,0.616804,0.158912,0.565216,0.824394,0.930184,0.609391,0.0173122,0.881571,0.0534666,0.0281656,0.577355,0.396409,0.738619,0.0515553,0.980482,0.314744,0.555863,0.186894,0.245413,0.775508,0.00882018,0.538913,0.520145,0.601265,0.632802,0.0948128,0.985928,0.0693993,0.926412,0.66736,0.871365,0.231018,0.138651,0.728819,0.0416852,0.46153,0.62129,0.0116834,0.892728,0.243751,0.817778,0.807848,0.261242,0.999972,0.352785,0.367435,0.385857,0.034133,0.208354,0.605308,0.558844,0.138225,0.0959325,0.663121,0.802701,0.835057,0.554636,0.474665,0.72816,0.214964,0.29025,0.690717,0.152818,0.760478,0.265325,0.150455,0.198409,0.268535,0.571802,0.14827,0.0467601,0.911075,0.158458,0.0803002,0.899565,0.362072,0.971292,0.676047,0.762492,0.149552,0.564623,0.739656,0.508679,0.824946,0.0967348,0.59733,0.580801,0.781581,0.161006,0.441408,0.962339,0.619232,0.00647324,0.728207,0.540638,0.440447,0.483843,0.13365,0.737763,0.120859,0.239194,0.179088,0.303256,0.976457,0.147912,0.0399897,0.0431765,0.702451,0.616742,0.725626,0.935309,0.180918,0.883776,0.00560743,0.869356,0.802871,0.135184,0.725921,0.98992,0.689205,0.930132,0.0995816,0.454135,0.393816,0.523918,0.760871,0.0645351,0.371493,0.274739,0.988831,0.0724325,0.35764,0.421795,0.547829,0.0940154,0.94614,0.213414,0.175617,0.870469,0.370442,0.155396,0.587843,0.75828,0.170659,0.82494,0.478628,0.429812,0.446724,0.0190742,0.541585,0.225696,0.213739,0.197354,0.660933,0.299849,0.940623,0.786182,0.212641,0.814802,0.638865,0.119399,0.980816,0.180019,0.999316,0.278404,0.568899,0.642093,0.422316,0.19123,0.156733,0.399353,0.668701,0.480074,0.198966,0.725796,0.111859,0.66278,0.0314907,0.945888,0.656139,0.497301,0.0633912,0.851587,0.622634,0.908966,0.734112,0.555445,0.439655,0.1196,0.427845,0.747559,0.263575,0.589721,0.0793325,0.899225,0.378304,0.579317,0.312129,0.982184,0.211474,0.61292,0.139281,0.0900491,0.0834004,0.351301,0.48225,0.561537,0.0899139,0.643973,0.170592,0.791943,0.904658,0.61349,0.177692,0.0961678,0.351702,0.284197,0.204694,0.719579,0.570948,0.310758,0.808011,0.175255,0.273366,0.332421,0.725925,0.867584,0.569765,0.897263,0.620736,0.154318,0.102979,0.593015,0.034198,0.0474592,0.0589467,0.405594,0.211702,0.606263,0.849123,0.515589,0.304568,0.348214,0.396824,0.305082,0.377053,0.958607,0.219319,0.228557,0.934424,0.282038,0.737197,0.20815,0.587502,0.815961,0.618859,0.450751,0.976385,0.681525,0.577027,0.624087,0.213445,0.879925,0.895285,0.29462,0.165049,0.674972,0.292603,0.619747,0.356483,0.659015,0.626812,0.431497,0.25758,0.503895,0.176857,0.410319,0.876217,0.297461,0.337098,0.513115,0.695131,0.156095,0.0350589,0.116255,0.306468,0.528658,0.793498,0.69163,0.305601,0.219417,0.222315,0.925701,0.0584776,0.735151,0.0684471,0.840972,0.923417,0.949835,0.810006,0.795445,0.266514,0.709177,0.474532,0.505316,0.637103,0.675168,0.414893,0.941348,0.508834,0.968697,0.429697,0.712594,0.180259,0.739803,0.182817,0.18799,0.729107,0.807466,0.327489,0.717093,0.271795,0.0657471,0.378044,0.70872,0.242631,0.265706,0.462189,0.362741,0.182956,0.725724,0.708155,0.0497155,0.356816,0.201539,0.512258,0.598765,0.708469,0.418227,0.323194,0.721501,0.100076,0.309805,0.229567,0.904111,0.700001,0.0665028,0.402168,0.508498,0.769926,0.399272,0.035144,0.844534,0.113632,0.91203,0.601618,0.871341,0.825397,0.687549,0.259932,0.913155,0.932764,0.842922,0.454964,0.77304,0.93109,0.139532,0.318095,0.466754,0.21871,0.472431,0.94044,0.939539,0.444947,0.370642,0.493493,0.35537,0.820687,0.503439,0.152101,0.870126,0.27944,0.27149,0.283011,0.922431,0.506513,0.956653,0.174558,0.67167,0.0923082,0.249919,0.146725,0.905201,0.0405327,0.523297,0.310918,0.514981,0.436937,0.466158,0.911675,0.757253,0.298451,0.407569,0.999382,0.872547,0.38136,0.932829,0.659323,0.973664,0.963735,0.239889,0.412061,0.12693,0.103414,0.91017,0.305631,0.68487,0.246025,0.507052,0.456683,0.474224,0.599763,0.544135,0.793376,0.698571,0.294553,0.348187,0.199676,0.384379,0.582366,0.883966,0.0972505,0.588169,0.266503,0.80023,0.483991,0.100642,0.697684,0.842564,0.612222,0.663143,0.91841,0.138279,0.151668,0.889024,0.622166,0.821728,0.00395888,0.852051,0.194714,0.838311,0.0928686,0.484131,0.668386,0.575943,0.23378,0.0540653,0.480084,0.437407,0.573754,0.694894,0.0363763,0.201316,0.70446,0.26512,0.191707,0.870428,0.731604,0.073833,0.064914,0.516669,0.886747,0.262602,0.232917,0.305242,0.356915,0.721162,0.292708,0.497057,0.720578,0.39203,0.937215,0.774257,0.388485,0.0698399,0.204561,0.11955,0.047374,0.953346,0.536171,0.000994027,0.651025,0.282213,0.320839,0.674526,0.206961,0.687349,0.319852,0.598959,0.44852,0.404347,0.919572,0.747512,0.678263,0.41366,0.947668,0.883874,0.559135,0.390744,0.5254,0.930147,0.251749,0.915886,0.689801,0.0217672,0.76144,0.131317,0.466268,0.589094,0.819815,0.845598,0.837116,0.600964,0.374151,0.823074,0.626779,0.946662,0.681827,0.935598,0.0318498,0.487714,0.441129,0.194795,0.43473,0.317518,0.124821,0.875589,0.304104,0.868878,0.144894,0.042811,0.335852,0.881759,0.950326,0.906785,0.81986,0.0474893,0.710981,0.163442,0.50346,0.633087,0.223193,0.809707,0.169071,0.976894,0.728257,0.242229,0.990698,0.939986,0.31681,0.639492,0.50223,0.265831,0.635238,0.00235891,0.0368512,0.777951,0.185637,0.160168,0.217085,0.597622,0.471328,0.646393,0.332878,0.384407,0.400404,0.0742838,0.677675,0.328636,0.946037,0.494603,0.0948924,0.986222,0.00542492,0.633067,0.332705,0.69061,0.19342,0.01685,0.410693,0.520562,0.190229,0.979076,0.650078,0.110123,|0.720131,0.636829,0.364949,0.779393,0.417149,0.293818,0.144175,0.739528,0.361465,0.198182,0.616979,0.65392,0.719332,0.0485916,0.215567,0.263386,0.424527,0.734765,0.950773,0.734506,0.0916548,0.390089,0.808128,0.626703,0.810274,0.895642,0.584168,0.526192,0.889809,0.645353,0.98857,0.232147,0.389283,0.226802,0.737026,0.457577,0.571825,0.0820918,0.508012,0.485694,0.132392,0.875217,0.426234,0.546073,0.804796,0.522738,0.902708,0.042495,0.24144,0.991908,0.283544,0.918538,0.471832,0.667845,0.520596,0.380458,0.591926,0.897348,0.815215,0.266403,0.0299829,0.583556,0.250565,0.574163,0.270884,0.726176,0.64076,0.267185,0.390785,0.656551,0.157027,0.428474,0.380204,0.577717,0.330807,0.0439921,0.0183445,0.0433542,0.997071,0.714229,0.249339,0.924474,0.413025,0.00604796,0.482193,0.699107,0.0476026,0.172413,0.246795,0.310135,0.789582,0.932139,0.366102,0.902742,0.519358,0.269086,0.446844,0.539154,0.300038,0.244112,0.307774,0.961334,0.0172656,0.937519,0.344773,0.632545,0.416706,0.835003,0.599001,0.696254,0.939921,0.815189,0.0847638,0.987715,0.109949,0.119421,0.197051,0.903525,0.0455884,0.328761,0.72379,0.607876,0.062894,0.0287691,0.166378,0.264747,0.672986,0.0345145,0.03362,0.95519,0.600263,0.566209,0.80542,0.136541,0.958871,0.189115,0.858702,0.459759,0.634518,0.461918,0.295437,0.443585,0.938525,0.711698,0.764486,0.370177,0.652185,0.0982586,0.103829,0.303611,0.639845,0.914359,0.289011,0.197384,0.00843453,0.800836,0.227796,0.900226,0.594964,0.793132,0.994782,0.697186,0.440192,0.78866,0.509045,0.26933,0.357483,0.200013,0.191249,0.418615,0.0116555,0.960101,0.87632,0.304293,0.719136,0.709966,0.727054,0.674446,0.665203,0.330383,0.102253,0.310425,0.240662,0.83492,0.597403,0.412863,0.0054431,0.882571,0.122166,0.765998,0.864966,0.593935,0.900984,0.500666,0.684921,0.0822934,0.00299871,0.307186,0.177229,0.598689,0.943333,0.641103,0.226159,0.449012,0.561772,0.689111,0.256184,0.330979,0.562477,0.833143,0.163496,0.16562,0.463089,0.048093,0.920603,0.163245,0.466937,0.981662,0.364061,0.445129,0.475044,0.633871,0.151466,0.236303,0.801935,0.442506,0.962873,0.0761929,0.712921,0.0268888,0.828614,0.562774,0.30085,0.244503,0.96967,0.792043,0.622247,0.169669,0.488997,0.2074,0.520807,0.43823,0.905355,0.4401,0.382571,0.146229,0.484045,0.942174,0.52365,0.625856,0.306162,0.407468,0.639805,0.721218,0.0817688,0.172695,0.60905,0.671872,0.539529,0.590307,0.299894,0.912112,0.863723,0.215891,0.65306,0.147878,0.391083,0.231853,0.298831,0.58329,0.608334,0.305812,0.38247,0.0194705,0.13722,0.318428,0.414943,0.0524746,0.178757,0.964608,0.552225,0.0874441,0.520324,0.850671,0.0253692,0.909987,0.786732,0.465407,0.339132,0.583395,0.353107,0.773836,0.541442,0.474069,0.0964642,0.483416,0.336915,0.0308736,0.210117,0.624828,0.600927,0.522956,0.707534,0.968315,0.188867,0.0646479,0.0503368,0.362617,0.835082,0.471532,0.418939,0.806638,0.399084,0.585574,0.81653,0.645174,0.497219,0.659719,0.195393,0.993621,0.814948,0.291216,0.629014,0.625571,0.992767,0.708158,0.0129282,0.423631,0.548395,0.676871,0.779183,0.342896,0.232739,0.269441,0.11117,0.942708,0.0572304,0.498208,0.43311,0.815769,0.348157,0.817918,0.434181,0.444661,0.364633,0.737023,0.037532,0.699519,0.878999,0.382251,0.701088,0.132031,0.0464215,0.0844629,0.863903,0.135592,0.840739,0.0791968,0.90789,0.618073,0.1226,0.752952,0.0892628,0.132377,0.810586,0.371577,0.912732,0.698163,0.853391,0.63917,0.817713,0.371162,0.318809,0.669919,0.0955758,0.745327,0.639936,0.0194961,0.282802,0.389061,0.989547,0.501633,0.587761,0.970997,0.911436,0.7221,0.0353299,0.152785,0.692225,0.563618,0.0391062,0.884813,0.498844,0.452731,0.0342301,0.651359,0.776559,0.0742545,0.795084,0.350727,0.919514,0.858327,0.145736,0.744506,0.611141,0.374705,0.0476341,0.494561,0.529663,0.0353953,0.860511,0.150294,0.0236302,0.683617,0.23108,0.665809,0.899817,0.0636761,0.0868232,0.320275,0.539047,0.331089,0.364479,0.163402,0.736326,0.783301,0.474377,0.734305,0.655277,0.304728,0.241383,0.714497,0.00713092,0.824111,0.0637998,0.75062,0.74481,0.656776,0.11638,0.215738,0.393832,0.939272,0.600148,0.738585,0.496514,0.793159,0.47803,0.412652,0.68014,0.704855,0.647114,0.488845,0.485831,0.906917,0.986332,0.655558,0.629423,0.0152803,0.34188,0.472943,0.878698,0.673967,0.79881,0.639886,0.557816,0.426198,0.756384,0.124886,0.239154,0.335499,0.537587,0.400868,0.943356,0.330637,0.662435,0.0988396,0.739983,0.12666,0.634439,0.910941,0.610697,0.0806103,0.685319,0.606047,0.277407,0.898758,0.525071,0.178048,0.801675,0.164413,0.82303,0.821204,0.204173,0.80616,0.529928,0.67348,0.652446,0.118414,0.83646,0.627116,0.231806,0.566468,0.389547,0.636482,0.0793085,0.92026,0.977325,0.783429,0.239549,0.34374,0.596649,0.748611,0.816502,0.700505,0.559755,0.550961,0.781485,0.434817,0.126988,0.300285,0.624365,0.73813,0.216621,0.664541,0.147953,0.464494,0.532076,0.125148,0.192352,0.0587035,0.279041,0.72383,0.31758,0.949658,0.0205172,0.789179,0.242371,0.934618,0.646443,0.817677,0.0471964,0.775718,0.0138097,0.278282,0.0984407,0.283417,0.343654,0.160076,0.755742,0.329838,0.212254,0.52011,0.233979,0.470855,0.307953,0.459047,0.465131,0.696961,0.689858,0.990891,0.773976,0.945541,0.575723,0.545625,0.467186,0.525835,0.721583,0.931189,0.549148,0.793677,0.381442,0.534583,0.400326,0.654232,0.907115,0.339834,0.778944,0.192205,0.549985,0.726478,0.466524,0.929858,0.028701,0.569164,0.887259,0.243456,0.0481707,0.260963,0.596123,0.0102003,0.752932,0.715916,0.687138,0.781373,0.29129,0.797872,0.0766993,0.21105,0.134158,0.0825024,0.212429,0.252711,0.80422,0.513355,0.785908,0.0191664,0.998388,0.456043,0.35929,0.100465,0.213318,0.338184,0.0340877,0.100433,0.314159,0.809362,0.0316561,0.806911,0.244511,0.474165,0.372279,0.485648,0.853517,0.767088,0.810897,0.475534,0.99022,0.30236,0.396665,0.327615,0.466939,0.392818,0.251442,0.0924989,0.579758,0.253386,0.562366,0.477467,0.433111,0.92637,0.25252,0.427696,0.54024,0.939474,0.202825,0.845098,0.946247,0.684212,0.326452,0.392828,0.645289,0.628642,0.335299,0.120307,0.366456,0.849027,0.630379,0.820495,0.0541233,0.0750049,0.3099,0.324214,0.310699,0.69969,0.392371,0.515888,0.476858,0.7084,0.300919,0.89629,0.997511,0.587566,0.580374,0.572399,0.0165637,0.0353486,0.349464,0.76112,0.598084,0.608351,0.677392,0.967966,0.0857788,0.0610397,0.149872,0.193968,0.222457,0.403432,0.0962022,0.955728,0.899935,0.777686,0.832555,0.362447,0.564297,0.98514,0.552056,0.495601,0.00993395,0.715027,0.838906,0.966369,0.815809,0.822428,0.806295,0.769587,0.494619,0.69907,0.102782,0.625562,0.677163,0.08447,0.912509,0.134889,0.129826,0.131915,0.853635,0.708193,0.923934,0.935902,0.739774,0.257552,0.887246,0.640819,0.989017,0.341678,0.267617,0.700136,0.625638,0.616309,0.156547,0.245346,0.0836062,0.638775,0.461634,0.649058,0.774453,0.98457,0.492137,0.0951241,0.348609,0.140625,0.682854,0.348243,0.514235,0.42873,0.636168,0.423681,0.162348,0.349275,0.571474,0.164521,0.699787,0.972941,0.853777,0.789274,0.443331,0.95696,0.989385,0.266137,0.0469647,0.570242,0.543369,0.622865,0.390122,0.169648,0.149075,0.206391,0.434102,0.132844,0.113166,0.913219,0.737533,0.545407,0.755983,0.548912,0.687371,0.638819,0.0740759,0.912172,0.515294,0.854974,0.0957152,0.893715,0.0714503,0.672677,0.783492,0.725974,0.219216,0.585966,0.895327,0.0633487,0.768442,0.342235,0.0468628,0.700794,0.25624,0.209729,0.0594336,0.819993,0.441952,0.19523,0.637182,0.174342,0.213153,0.617907,0.537238,0.793908,0.48185,0.662592,0.599909,0.161351,0.89035,0.321835,0.334281,0.284139,0.0514463,0.184818,0.75149,0.474388,0.23669,0.193962,0.243205,0.429942,0.150481,0.646344,0.720746,0.509182,0.434267,0.387417,0.0274502,0.787644,0.0678363,0.905206,0.00403863,0.542621,0.568577,0.260934,0.974692,0.304898,0.216211,0.901038,0.393263,0.58792,0.422604,0.18717,0.781758,0.871801,0.103922,0.556286,0.29484,0.0165803,0.950959,0.0381423,0.210639,0.450361,0.0347729,0.949055,0.70211,0.48008,0.906544,0.918942,0.33082,0.59395,0.936494,0.0796601,0.0848365,0.409532,0.728003,0.20313,0.300237,0.0574204,0.841702,0.762005,0.450713,0.551683,0.835291,0.0205201,0.893529,0.000546575,0.321567,0.79841,0.881237,0.604099,0.598843,0.0713868,0.667049,0.923137,0.576992,0.572515,0.560375,0.355846,0.506743,0.96302,0.514324,0.0329435,0.961865,0.974894,0.0759147,0.421881,0.562476,0.292924,0.267024,0.529639,0.33524,0.439447,0.569303,0.500652,0.57589,0.253137,0.395001,0.743626,0.357508,0.285895,0.398179,0.250249,0.126877,0.745311,0.0942565,0.645644,0.46719,0.543912,0.34141,0.871259,0.302255,0.207186,0.874646,0.854695,0.440612,0.819068,0.947017,0.57797,0.222652,0.376381,0.500664,0.843788,0.963849,0.861938,0.479609,0.0857481,0.417311,0.768562,0.220674,0.145207,0.421545,0.392984,0.0507154,0.115718,0.114773,0.239047,0.690298,0.174377,0.886381,0.0289487,0.879712,0.575454,0.665399,0.209611,0.293013,0.0807173,0.0140535,0.956982,0.589732,0.11935,0.375053,0.350809,0.942563,0.454328,0.436286,0.701817,0.0185966,0.763529,0.968794,0.46839,0.00949913,0.104622,0.313063,0.713717,0.782924,0.34477,0.404079,0.371524,0.994017,0.993114,0.106778,0.507587,0.361322,0.0949697,0.261986,0.80183,0.108263,0.831266,0.774496,0.509884,0.759457,0.0980881,0.172465,0.859448,0.835844,0.598959,|0.500312,0.84751,0.995399,0.252751,0.261132,0.0839147,0.124979,0.367484,0.323881,0.543084,0.633771,0.163241,0.147572,0.593392,0.499662,0.412247,0.3193,0.257247,0.770021,0.0351784,0.573996,0.170982,0.604823,0.158436,0.152496,0.898867,0.976821,0.29105,0.264604,0.485387,0.424946,0.193753,0.93307,0.481386,0.271459,0.405505,0.415554,0.643112,0.613779,0.227093,0.169097,0.359135,0.352841,0.302359,0.398228,0.163159,0.198613,0.204455,0.881683,0.00798231,0.633518,0.549869,0.0504444,0.811442,0.891584,0.733992,0.394374,0.146122,0.267401,0.620446,0.897195,0.46221,0.946604,0.427868,0.0864223,0.448742,0.165037,0.180423,0.917321,0.142192,0.628089,0.73867,0.0729747,0.0396384,0.339081,0.442329,0.919528,0.408283,0.306883,0.968586,0.667147,0.915205,0.274016,0.848153,0.793686,0.492719,0.760812,0.114412,0.363952,0.683153,0.745847,0.448157,0.16265,0.0120203,0.759584,0.694822,0.798315,0.298949,0.850276,0.745177,0.450714,0.0522979,0.742487,0.756778,0.256149,0.405993,0.949467,0.471245,0.670909,0.38901,0.9168,0.441588,0.511981,0.574352,0.228353,0.515176,0.155947,0.734882,0.336629,0.281744,0.0824423,0.787898,0.97019,0.470691,0.472414,0.445078,0.280127,0.301119,0.99967,0.919749,0.0973628,0.679819,0.218079,0.810466,0.422946,0.369374,0.72498,0.43455,0.353727,0.202545,0.408855,0.59459,0.166411,0.760446,0.798158,0.547149,0.17519,0.651912,0.212113,0.428097,0.523,0.149791,0.671404,0.209453,0.0215164,0.147059,0.373711,0.100814,0.340949,0.428035,0.0868286,0.903373,0.912594,0.888802,0.404699,0.14638,0.933363,0.403422,0.649009,0.0671959,0.578795,0.0604082,0.00489765,0.509385,0.392982,0.347517,0.813002,0.155484,0.762284,0.441814,0.578956,0.623875,0.51204,0.59268,0.464371,0.65923,0.0494373,0.454399,0.968529,0.598408,0.934316,0.921064,0.556744,0.247249,0.988918,0.568307,0.319314,0.568065,0.0570852,0.129025,0.28629,0.0830057,0.491641,0.758237,0.452212,0.619961,0.746651,0.794876,0.0502692,0.860627,0.159424,0.900498,0.303225,0.643328,0.492772,0.492267,0.0454374,0.522104,0.588408,0.465426,0.176366,0.312589,0.299506,0.970906,0.653756,0.441215,0.396366,0.963242,0.448216,0.848704,0.652168,0.747504,0.6103,0.677751,0.511332,0.0639676,0.845352,0.0859997,0.653825,0.24892,0.769131,0.159961,0.53701,0.425568,0.0144966,0.240935,0.161257,0.965371,0.101689,0.65452,0.385554,0.401475,0.922967,0.870043,0.199254,0.298683,0.471882,0.176646,0.026146,0.695705,0.442238,0.449335,0.820921,0.218755,0.190576,0.976626,0.798551,0.695282,0.946345,0.921616,0.746588,0.329463,0.73603,0.191038,0.805004,0.382878,0.641051,0.543456,0.0835102,0.174793,0.398632,0.11237,0.282652,0.455165,0.423238,0.417081,0.645045,0.225866,0.666097,0.622701,0.518375,0.978037,0.762297,0.633334,0.90864,0.956877,0.27583,0.415193,0.363915,0.901704,0.782982,0.106083,0.253705,0.828211,0.757939,0.117517,0.420161,0.60336,0.627176,0.411699,0.0087136,0.105608,0.219852,0.680566,0.294031,0.947654,0.471848,0.195511,0.00441635,0.457515,0.0145048,0.990392,0.699609,0.847834,0.691436,0.306294,0.744443,0.57397,0.570866,0.968261,0.631365,0.0290641,0.437228,0.108879,0.108993,0.901295,0.455335,0.29163,0.197748,0.35359,0.979739,0.804719,0.624986,0.315544,0.906683,0.37803,0.939888,0.70407,0.250734,0.803907,0.862001,0.192806,0.212309,0.290293,0.958665,0.913216,0.217137,0.72784,0.456424,0.323284,0.0970598,0.0676708,0.226122,0.97375,0.892839,0.0394232,0.666459,0.455722,0.68473,0.186026,0.398364,0.913508,0.337319,0.31242,0.379218,0.190757,0.584474,0.422754,0.496847,0.262088,0.981309,0.483351,0.836015,0.318436,0.324198,0.858796,0.941836,0.231375,0.488223,0.980184,0.498001,0.758352,0.52084,0.662855,0.882055,0.406658,0.200985,0.443132,0.822553,0.590979,0.576707,0.918402,0.258453,0.921787,0.903321,0.876622,0.211475,0.900619,0.786766,0.193486,0.732897,0.671181,0.552736,0.427475,0.993408,0.234314,0.414921,0.0762203,0.695294,0.564621,0.112099,0.338707,0.450422,0.406966,0.180583,0.417446,0.945221,0.0629171,0.103079,0.608434,0.746149,0.588053,0.714134,0.97332,0.465415,0.248707,0.591076,0.339765,0.929082,0.282282,0.139194,0.568447,0.711074,0.404959,0.658493,0.643765,0.78144,0.831179,0.310248,0.0160687,0.957671,0.311328,0.319117,0.740444,0.878615,0.341545,0.366556,0.0524598,0.734539,0.962045,0.617289,0.525138,0.632412,0.960016,0.149349,0.0421574,0.309708,0.473444,0.844504,0.856493,0.932553,0.0705457,0.650093,0.996163,0.193411,0.994061,0.185559,0.43482,0.546533,0.378113,0.411829,0.430484,0.89439,0.948389,0.473345,0.256174,0.893928,0.648212,0.36576,0.409807,0.931276,0.317588,0.92597,0.887341,0.128175,0.95674,0.85191,0.917755,0.131232,0.0705806,0.815971,0.650726,0.163193,0.572068,0.728704,0.881677,0.000392556,0.65003,0.362357,0.13279,0.0424227,0.274354,0.932815,0.924181,0.901147,0.765375,0.981836,0.6475,0.271192,0.483084,0.409537,0.400829,0.797574,0.338249,0.660342,0.14413,0.0833137,0.967489,0.432902,0.829627,0.240586,0.399765,0.46716,0.497288,0.444636,0.203076,0.0474493,0.804136,0.752448,0.952402,0.559,0.87046,0.040329,0.702219,0.214411,0.515936,0.684392,0.827536,0.463198,0.0388076,0.626926,0.882005,0.471045,0.658999,0.577612,0.829441,0.39341,0.374878,0.00683141,0.554276,0.65543,0.814729,0.0888174,0.464106,0.118474,0.0804957,0.1433,0.908608,0.605269,0.37083,0.180632,0.597168,0.750428,0.824762,0.97873,0.538043,0.585697,0.583632,0.95856,0.102092,0.114073,0.70217,0.172569,0.111189,0.917699,0.555944,0.797904,0.20825,0.490452,0.660945,0.555586,0.935874,0.327162,0.614866,0.923771,0.68687,0.696473,0.232649,0.517103,0.128139,0.548909,0.574768,0.032486,0.276235,0.331132,0.694223,0.344667,0.372501,0.428296,0.499612,0.898218,0.573741,0.976763,0.0310596,0.82936,0.496341,0.391708,0.84203,0.453521,0.77181,0.398007,0.600754,0.0663904,0.246196,0.343917,0.800436,0.549933,0.0530304,0.673657,0.254488,0.731214,0.854877,0.19241,0.589597,0.663038,0.173661,0.169296,0.945197,0.967364,0.434418,0.00711602,0.00866884,0.404717,0.626226,0.376597,0.0630464,0.678537,0.96773,0.806663,0.978082,0.745825,0.665782,0.551294,0.352058,0.454933,0.866093,0.244048,0.285865,0.446251,0.901427,0.931291,0.920776,0.941221,0.964264,0.545516,0.388484,0.390084,0.735219,0.858374,0.443559,0.303753,0.571714,0.0640414,0.43118,0.654968,0.0543659,0.664282,0.0160179,0.0390487,0.200684,0.0509394,0.0800864,0.126467,0.62655,0.308081,0.911789,0.617275,0.503441,0.850424,0.725177,0.82525,0.464949,0.94874,0.680949,0.423594,0.952539,0.276241,0.0407817,0.524671,0.924404,0.330196,0.727818,0.0829076,0.520516,0.736626,0.107291,0.653019,0.992648,0.406198,0.00820899,0.0845199,0.125003,0.471266,0.660448,0.897251,0.977105,0.230893,0.80604,0.86628,0.774627,0.909257,0.923918,0.138433,0.625028,0.402671,0.0383317,0.916867,0.501684,0.550184,0.796233,0.986689,0.92333,0.923209,0.0572909,0.216094,0.447875,0.795205,0.471708,0.363931,0.444461,0.452455,0.431707,0.0821555,0.902247,0.899076,0.269498,0.0321657,0.936259,0.75532,0.984877,0.630374,0.43921,0.632777,0.32497,0.468726,0.841623,0.848834,0.872908,0.521783,0.387787,0.782632,0.664823,0.129401,0.62891,0.966838,0.366481,0.891899,0.922109,0.031554,0.980572,0.906993,0.865705,0.160417,0.472556,0.488191,0.443649,0.0204212,0.0581624,0.375607,0.76863,0.10471,0.534208,0.109918,0.22769,0.142511,0.282033,0.657204,0.35017,0.266213,0.719842,0.585261,0.821534,0.197622,0.776679,0.396063,0.180895,0.324603,0.927678,0.00507665,0.0280063,0.282527,0.537434,0.937104,0.152392,0.382377,0.225466,0.057368,0.549749,0.437656,0.793181,0.184279,0.149459,0.264667,0.440806,0.70277,0.35983,0.368658,0.333368,0.336451,0.392785,0.403654,0.394373,0.466667,0.912658,0.113789,0.518108,0.264503,0.538571,0.9839,0.543241,0.229074,0.325028,0.707887,0.788654,0.192553,0.388767,0.664237,0.852791,0.876708,0.165213,0.0975558,0.210408,0.475579,0.833045,0.875389,0.636853,0.187864,0.506531,0.256037,0.263633,0.188577,0.00291121,0.673539,0.894811,0.772398,0.144195,0.232943,0.0947911,0.0900706,0.233426,0.770876,0.142845,0.339588,0.196159,0.193564,0.502146,0.00388694,0.557714,0.352468,0.316972,0.117504,0.867491,0.246552,0.00762028,0.451424,0.791457,0.449916,0.263394,0.226404,0.359134,0.884155,0.396246,0.207834,0.309457,0.104214,0.80539,0.883772,0.925567,0.475736,0.268793,0.144756,0.303331,0.458801,0.344689,0.691294,0.846593,0.136077,0.525027,0.965984,0.146561,0.353248,0.0593684,0.0668388,0.975298,0.446723,0.738381,0.646697,0.0105838,0.0431699,0.131873,0.702178,0.873603,0.0789971,0.745752,0.48159,0.517242,0.579997,0.230608,0.660451,0.717262,0.857266,0.999781,0.0727043,0.456457,0.591003,0.163202,0.360189,0.730037,0.59881,0.427565,0.506858,0.159612,0.531027,0.833465,0.23356,0.16767,0.201586,0.223808,0.477703,0.948305,0.826602,0.0877467,0.276236,0.34443,0.674618,0.613099,0.396515,0.887412,0.513679,0.369243,0.887171,0.034669,0.281464,0.908013,0.964535,0.639229,0.0313246,0.71535,0.716976,0.448759,0.257876,0.338755,0.411423,0.777452,0.536002,0.2505,0.514519,0.0983632,0.842817,0.704682,0.670782,0.142258,0.305729,0.057169,0.494542,0.582942,0.197764,0.104736,0.954002,0.186703,0.825246,0.45298,0.629743,0.296195,0.35612,0.95113,0.343135,0.143836,0.104077,0.192334,0.968633,0.583391,0.365062,0.503612,0.732039,0.989553,0.0917239,0.168277,0.384882,0.605818,|0.474628,0.855824,0.692299,0.0202338,0.686539,0.471897,0.198065,0.110685,0.470541,0.390733,0.372151,0.60323,0.177129,0.528124,0.42751,0.85354,0.652744,0.776338,0.0539746,0.881221,0.75569,0.0984659,0.347491,0.424261,0.788496,0.274065,0.399995,0.642093,0.512345,0.523589,0.409733,0.159739,0.626956,0.0840484,0.96503,0.359973,0.294563,0.00938553,0.117191,0.844409,0.113836,0.122549,0.810081,0.996158,0.0139853,0.665621,0.646713,0.399692,0.0989287,0.310574,0.328867,0.167853,0.523422,0.409474,0.177043,0.904774,0.62601,0.368962,0.188674,0.632283,0.674785,0.853422,0.56949,0.631859,0.0617096,0.154836,0.572766,0.684612,0.166604,0.540554,0.399443,0.316977,0.597918,0.671176,0.447425,0.638861,0.679961,0.0269944,0.126382,0.460363,0.352727,0.813495,0.410515,0.634186,0.922179,0.953992,0.819895,0.0442886,0.0416127,0.161531,0.878283,0.829116,0.428036,0.474877,0.16724,0.852554,0.960854,0.175799,0.172386,0.113443,0.683323,0.99731,0.989716,0.888375,0.567371,0.486596,0.165873,0.898708,0.502182,0.150408,0.681016,0.146097,0.698025,0.121861,0.174797,0.806053,0.691008,0.739924,0.87116,0.662912,0.64273,0.0622545,0.494135,0.100374,0.663258,0.568624,0.639833,0.330505,0.296111,0.358785,0.92635,0.574174,0.427501,0.789507,0.97823,0.386346,0.269574,0.449439,0.883383,0.845453,0.862681,0.576773,0.724554,0.192456,0.159571,0.163306,0.340943,0.485141,0.00426215,0.163572,0.256087,0.464492,0.730561,0.886222,0.542237,0.136457,0.813538,0.732773,0.545858,0.303173,0.824796,0.661051,0.737896,0.449628,0.45729,0.906076,0.635434,0.757387,0.192815,0.915479,0.0504624,0.121164,0.51573,0.988996,0.632013,0.368239,0.42571,0.167458,0.658702,0.597925,0.295517,0.656515,0.599048,0.237701,0.383047,0.546877,0.814787,0.208535,0.101563,0.297205,0.717622,0.0725619,0.250071,0.271261,0.709761,0.551871,0.00547534,0.720212,0.272356,0.968199,0.698668,0.466482,0.34395,0.335423,0.85539,0.0911428,0.264917,0.0442337,0.480289,0.633635,0.873414,0.189035,0.0848228,0.0573188,0.24812,0.579367,0.846611,0.919162,0.597078,0.498113,0.0424607,0.77838,0.963264,0.409522,0.887726,0.952242,0.147458,0.206475,0.985621,0.98598,0.421991,0.582118,0.210017,0.239686,0.565003,0.146177,0.45791,0.428701,0.983881,0.126488,0.931475,0.497282,0.780562,0.317352,0.617331,0.201687,0.214348,0.39324,0.585613,0.762629,0.575325,0.133926,0.899327,0.453119,0.784931,0.981907,0.448999,0.550296,0.727625,0.948553,0.144717,0.67165,0.893922,0.704339,0.689779,0.0243389,0.940982,0.602579,0.1604,0.211199,0.977541,0.852727,0.232633,0.816442,0.825858,0.175752,0.309907,0.439731,0.403565,0.8414,0.219018,0.903786,0.823836,0.73403,0.385365,0.581916,0.66482,0.993144,0.561506,0.259744,0.228383,0.503286,0.423413,0.0414292,0.329373,0.444999,0.60879,0.991928,0.660435,0.780032,0.600099,0.642112,0.182426,0.134067,0.911199,0.569644,0.725932,0.264545,0.0319256,0.664102,0.149138,0.790115,0.764239,0.941979,0.828588,0.240804,0.965059,0.0817301,0.767895,0.156355,0.754319,0.162718,0.965631,0.481748,0.603151,0.0880399,0.239637,0.143641,0.0940454,0.105722,0.83646,0.903422,0.118689,0.0901619,0.931495,0.298032,0.0703675,0.23839,0.0581892,0.650441,0.730652,0.426758,0.00458348,0.889596,0.742187,0.75702,0.366135,0.0691443,0.530041,0.174237,0.310164,0.870949,0.258916,0.801563,0.565122,0.534313,0.0574623,0.690392,0.462987,0.0058226,0.110238,0.584856,0.929024,0.459236,0.634841,0.271649,0.99781,0.872639,0.621351,0.785386,0.817998,0.104731,0.802232,0.297834,0.142424,0.802868,0.797894,0.419869,0.53886,0.32878,0.0041905,0.630309,0.711723,0.451787,0.144056,0.191904,0.279032,0.358099,0.261246,0.752902,0.24347,0.44431,0.0471691,0.288378,0.438254,0.288699,0.884656,0.303039,0.761211,0.556986,0.184948,0.767964,0.106527,0.208354,0.64754,0.158731,0.0460123,0.754342,0.308468,0.701864,0.620797,0.637107,0.787767,0.55751,0.976453,0.269116,0.0802976,0.494294,0.952426,0.236222,0.96512,0.19142,0.683322,0.085915,0.50466,0.401908,0.307084,0.85285,0.72854,0.29194,0.428207,0.034647,0.969669,0.956681,0.356583,0.77121,0.764356,0.352191,0.311225,0.350424,0.537264,0.0885083,0.510616,0.359268,0.823841,0.169754,0.108481,0.296702,0.832869,0.959489,0.143459,0.841721,0.777052,0.648416,0.0340863,0.39491,0.517749,0.103889,0.211728,0.364283,0.717274,0.479832,0.733747,0.907277,0.0240528,0.426193,0.780301,0.586249,0.894916,0.886679,0.102039,0.53171,0.437044,0.140016,0.524237,0.679309,0.295521,0.107836,0.548196,0.907658,0.359913,0.231055,0.0268955,0.686913,0.151998,0.362876,0.33513,0.682001,0.181292,0.981405,0.101915,0.0388698,0.849442,0.996654,0.425025,0.549474,0.502466,0.0585576,0.187019,0.0853165,0.880219,0.640193,0.206615,0.331686,0.670528,0.440048,0.706127,0.20187,0.501956,0.0646713,0.97657,0.362109,0.77112,0.44098,0.673039,0.90037,0.0846193,0.418643,0.544431,0.322509,0.608811,0.172119,0.0130466,0.651476,0.692861,0.95628,0.322205,0.608718,0.90167,0.419562,0.292075,0.676662,0.471117,0.192689,0.963326,0.603483,0.559627,0.169621,0.511569,0.483154,0.855596,0.466088,0.397467,0.94788,0.584441,0.933447,0.28767,0.575103,0.857115,0.583088,0.352598,0.811574,0.980803,0.101638,0.788375,0.551672,0.459536,0.38625,0.660502,0.610757,0.959729,0.868778,0.313307,0.426829,0.0108373,0.466771,0.772396,0.354686,0.395738,0.536878,0.0102582,0.184937,0.516099,0.713386,0.478763,0.452406,0.978408,0.129819,0.968939,0.652003,0.427506,0.703519,0.370737,0.912887,0.190024,0.551234,0.074021,0.0514558,0.990449,0.35241,0.677701,0.943411,0.246145,0.745929,0.772867,0.203731,0.699115,0.186848,0.130446,0.931566,0.110748,0.98446,0.588969,0.863563,0.302222,0.866117,0.643308,0.760496,0.954396,0.369976,0.495344,0.473722,0.494591,0.791591,0.946828,0.884653,0.146872,0.183125,0.0163627,0.0351998,0.609104,0.519106,0.697693,0.112478,0.628336,0.700893,0.837769,0.374532,0.39164,0.304127,0.734103,0.320437,0.997248,0.115708,0.304772,0.629448,0.0233173,0.98657,0.81903,0.51112,0.196478,0.805895,0.243489,0.897632,0.747293,0.263132,0.96138,0.103916,0.175749,0.0262201,0.0666569,0.223979,0.22914,0.734515,0.83701,0.956353,0.0966681,0.648606,0.258019,0.618746,0.613644,0.691557,0.718261,0.889187,0.364701,0.868878,0.690815,0.835034,0.91227,0.813705,0.663732,0.579637,0.426949,0.928827,0.301126,0.626045,0.929148,0.329062,0.0701566,0.65575,0.55726,0.240219,0.0664575,0.0493163,0.0382874,0.421551,0.710764,0.261497,0.601013,0.98614,0.7439,0.0606285,0.643762,0.657261,0.645572,0.234379,0.7695,0.696543,0.286153,0.64051,0.433409,0.507975,0.0152124,0.070621,0.829435,0.134231,0.255275,0.712208,0.269515,0.913402,0.14639,0.76698,0.554558,0.131352,0.759033,0.415416,0.108426,0.441077,0.3132,0.206948,0.563176,0.883849,0.518188,0.531825,0.397609,0.73506,0.880107,0.469058,0.201309,0.386266,0.994843,0.211774,0.42349,0.138501,0.245762,0.812394,0.195006,0.811415,0.163199,0.10133,0.421466,0.235098,0.745188,0.516458,0.776946,0.45269,0.570199,0.992682,0.699185,0.901301,0.862099,0.215433,0.284358,0.965933,0.621596,0.137659,0.107027,0.0547345,0.387055,0.65929,0.0716845,0.202894,0.715721,0.497024,0.224789,0.474187,0.630635,0.992688,0.589683,0.540823,0.410309,0.369933,0.104988,0.502247,0.080541,0.743056,0.526675,0.0984527,0.385316,0.097435,0.852546,0.705366,0.64666,0.135002,0.880655,0.234438,0.0322974,0.547466,0.317885,0.492074,0.418188,0.633344,0.595369,0.883386,0.317808,0.69811,0.0301121,0.826438,0.461072,0.30679,0.359415,0.851192,0.791603,0.636498,0.54079,0.784666,0.636847,0.705847,0.683146,0.0141768,0.269201,0.00526297,0.590464,0.830193,0.760507,0.861048,0.2248,0.769274,0.580011,0.622786,0.256754,0.886699,0.529979,0.631206,0.15342,0.184245,0.437822,0.0399999,0.535996,0.471977,0.859317,0.678111,0.888638,0.576091,0.390726,0.203029,0.750504,0.264934,0.967897,0.834074,0.166057,0.218192,0.360427,0.93665,0.160336,0.68163,0.354146,0.738907,0.678952,0.716609,0.344927,0.360312,0.716014,0.470654,0.34947,0.776099,0.159679,0.45865,0.904469,0.700769,0.0844325,0.41433,0.376169,0.51235,0.480105,0.167042,0.981814,0.382009,0.201199,0.649963,0.940914,0.309615,0.178637,0.191179,0.165169,0.889254,0.672672,0.538727,0.236084,0.340811,0.556319,0.635037,0.204929,0.914165,0.731168,0.624682,0.464059,0.226052,0.266477,0.264739,0.827091,0.758034,0.927127,0.863863,0.715601,0.967604,0.573827,0.671107,0.514949,0.786388,0.519515,0.32333,0.661359,0.130418,0.33015,0.279321,0.317706,0.243389,0.474591,0.443822,0.4059,0.245934,0.389334,0.694956,0.25902,0.368331,0.479221,0.88726,0.514168,0.769512,0.0994987,0.277084,0.100425,0.26095,0.620157,0.710665,0.60578,0.585856,0.338859,0.928822,0.548693,0.472893,0.71073,0.24066,0.807056,0.658919,0.315281,0.890333,0.59307,0.0987498,0.149517,0.152738,0.301487,0.110036,0.171618,0.573196,0.856958,0.651833,0.282466,0.068314,0.0892957,0.12368,0.960848,0.792795,0.990545,0.544346,0.670726,0.989917,0.284383,0.125075,0.375114,0.887327,0.0206743,0.76153,0.655283,0.487471,0.814364,0.210543,0.135833,0.673598,0.702151,0.407754,0.5499,0.456158,0.675432,0.777645,0.758994,0.516824,0.607789,0.765543,0.579759,0.967882,0.472907,0.539621,0.860099,0.475225,0.777731,0.230305,0.916615,0.364928,0.751598,0.0305475,0.91401,0.300451,0.42917,0.998918,0.228777,0.415145,0.0196013,0.972353,|0.771708,0.142597,0.172585,0.119111,0.00655937,0.829096,0.910374,0.504462,0.894627,0.0850376,0.20467,0.427492,0.681749,0.431149,0.300669,0.653381,0.38871,0.205649,0.983833,0.518813,0.876298,0.471382,0.519349,0.709402,0.96333,0.983766,0.313982,0.041855,0.674141,0.968151,0.424347,0.0928416,0.207081,0.987761,0.558443,0.17322,0.238537,0.435775,0.423813,0.769284,0.434616,0.778314,0.853169,0.868397,0.740882,0.920491,0.570295,0.4285,0.53376,0.0251147,0.787239,0.26354,0.906641,0.520344,0.624803,0.0791192,0.000708282,0.0598052,0.609034,0.370684,0.06151,0.832648,0.731199,0.665791,0.680571,0.0945589,0.650984,0.667547,0.905288,0.998197,0.156355,0.566596,0.429552,0.843303,0.889881,0.604649,0.68021,0.893604,0.230448,0.47489,0.36541,0.204145,0.993856,0.917779,0.858028,0.904335,0.323724,0.331245,0.715111,0.916882,0.663199,0.808362,0.0294793,0.197112,0.271816,0.786313,0.153156,0.131743,0.412298,0.251992,0.132662,0.372445,0.441911,0.429948,0.57997,0.986487,0.592893,0.162164,0.987096,0.950139,0.53073,0.336998,0.564862,0.36082,0.513761,0.550282,0.552992,0.962215,0.21479,0.777486,0.207804,0.672244,0.576339,0.846322,0.978037,0.243632,0.879734,0.024566,0.579166,0.114077,0.981012,0.814968,0.495278,0.168987,0.0404372,0.660822,0.565853,0.0537612,0.0319123,0.436285,0.774584,0.383772,0.32185,0.575184,0.152978,0.319982,0.590848,0.182265,0.103308,0.862935,0.293004,0.398187,0.573176,0.103569,0.416349,0.816729,0.847295,0.00363368,0.213918,0.560951,0.0204248,0.329779,0.413431,0.33502,0.277414,0.892118,0.617769,0.93023,0.71233,0.27872,0.445358,0.749997,0.579078,0.415535,0.477735,0.623648,0.0222702,0.875183,0.300101,0.992164,0.569805,0.850443,0.467492,0.1315,0.931958,0.803839,0.881625,0.0649844,0.991474,0.93618,0.86687,0.628866,0.407823,0.470163,0.370372,0.660809,0.677935,0.561694,0.160409,0.999045,0.24405,0.00976962,0.551731,0.758962,0.41705,0.38759,0.712658,0.995027,0.744325,0.927582,0.351028,0.276962,0.716846,0.788778,0.580254,0.718656,0.0589522,0.604956,0.557549,0.226431,0.362221,0.736145,0.93629,0.134669,0.861579,0.195111,0.103366,0.161131,0.287381,0.922592,0.973607,0.900595,0.279396,0.0379818,0.0247874,0.437039,0.664217,0.848291,0.217417,0.444377,0.573507,0.608569,0.500965,0.254544,0.951563,0.339812,0.478794,0.206093,0.537493,0.558413,0.285527,0.455016,0.0451394,0.420989,0.0830238,0.578031,0.395394,0.669264,0.125074,0.226828,0.133856,0.366175,0.700656,0.0576216,0.425622,0.0170039,0.380725,0.888086,0.0507345,0.60804,0.603724,0.193783,0.296644,0.580254,0.0267693,0.206595,0.752586,0.269162,0.210777,0.230177,0.201088,0.666076,0.108067,0.0622307,0.115987,0.571444,0.31618,0.684828,0.215424,0.897278,0.793556,0.971865,0.980058,0.848446,0.749715,0.646652,0.984805,0.278129,0.408355,0.918018,0.456913,0.471671,0.648565,0.752535,0.943358,0.888864,0.120184,0.869867,0.531458,0.138789,0.527453,0.62121,0.456019,0.58682,0.802577,0.70384,0.786522,0.532837,0.0776128,0.768234,0.149241,0.447972,0.675749,0.625585,0.402785,0.989689,0.701599,0.113706,0.531492,0.517721,0.666571,0.0712064,0.669491,0.149626,0.862194,0.0655866,0.345522,0.666578,0.776893,0.928378,0.533208,0.939121,0.0305322,0.500708,0.0758732,0.584585,0.671581,0.350535,0.0828187,0.595435,0.854997,0.807731,0.509494,0.345177,0.691576,0.802686,0.174515,0.505614,0.214344,0.950587,0.863086,0.324523,0.9049,0.537264,0.13215,0.829071,0.307478,0.798765,0.90701,0.993464,0.128599,0.0266539,0.155943,0.101639,0.759412,0.226261,0.924639,0.205562,0.791202,0.729491,0.332261,0.2213,0.185429,0.74193,0.492104,0.0335797,0.112512,0.420978,0.995348,0.43094,0.959232,0.564984,0.186947,0.922442,0.303409,0.0918275,0.112827,0.379898,0.526475,0.171203,0.660091,0.669976,0.645206,0.000739753,0.542781,0.191408,0.55579,0.349538,0.486136,0.998282,0.702192,0.864577,0.46663,0.402457,0.45729,0.959549,0.64432,0.109346,0.941492,0.812096,0.662263,0.128142,0.909461,0.308594,0.0335679,0.259557,0.540041,0.894161,0.80877,0.365168,0.595099,0.69125,0.819922,0.671266,0.889668,0.272812,0.118501,0.491192,0.121774,0.378102,0.679803,0.474699,0.985674,0.167882,0.235513,0.717262,0.341206,0.397126,0.352701,0.383826,0.831637,0.726992,0.237681,0.627446,0.742006,0.115682,0.994262,0.397122,0.475639,0.694988,0.727518,0.210671,0.139296,0.702212,0.0680465,0.696355,0.827772,0.0152261,0.278579,0.191872,0.317157,0.926685,0.588536,0.340401,0.18984,0.970481,0.609702,0.214555,0.91932,0.0251531,0.466861,0.82106,0.52754,0.795016,0.939493,0.124111,0.709046,0.700771,0.0152301,0.633724,0.499884,0.213965,0.591759,0.964576,0.682402,0.706236,0.328321,0.610371,0.0183997,0.118501,0.978629,0.949636,0.989355,0.929641,0.158037,0.679164,0.674654,0.463278,0.305302,0.824372,0.412282,0.85989,0.556764,0.912575,0.558485,0.0371578,0.168243,0.922331,0.760204,0.0913705,0.179931,0.728895,0.245374,0.541014,0.00394881,0.981662,0.389306,0.0930158,0.81453,0.248257,0.349335,0.115273,0.747528,0.865007,0.875636,0.200025,0.142073,0.826385,0.516457,0.489389,0.690099,0.71744,0.447061,0.320178,0.739305,0.229388,0.936453,0.857248,0.898539,0.377231,0.314789,0.250397,0.445928,0.145702,0.4051,0.851163,0.465066,0.719744,0.284512,0.559621,0.848719,0.0753423,0.0272672,0.433864,0.442524,0.392839,0.42508,0.735583,0.696569,0.638813,0.10284,0.628879,0.29398,0.120981,0.837592,0.621378,0.283497,0.154048,0.157556,0.844202,0.267596,0.799467,0.546656,0.607404,0.931323,0.308905,0.288237,0.525731,0.562662,0.316536,0.0740697,0.739517,0.428866,0.545101,0.847278,0.257204,0.118928,0.642451,0.137596,0.354194,0.2631,0.643586,0.397015,0.845695,0.27613,0.956611,0.455253,0.882338,0.587735,0.532685,0.059787,0.335818,0.229442,0.246553,0.112658,0.526748,0.750501,0.17515,0.0950353,0.513805,0.568615,0.302484,0.783026,0.592375,0.591648,0.587443,0.0172652,0.655695,0.548031,0.634711,0.383097,0.520333,0.889057,0.243833,0.831631,0.680352,0.0136659,0.796606,0.310411,0.127281,0.428951,0.937922,0.481021,0.285794,0.609993,0.345265,0.434466,0.950057,0.306465,0.060087,0.259718,0.393633,0.117868,0.976905,0.90601,0.786011,0.104648,0.567361,0.429035,0.00644577,0.152098,0.0449458,0.724791,0.219151,0.236105,0.291286,0.565312,0.706107,0.701934,0.502723,0.743477,0.381883,0.763575,0.330671,0.714941,0.656104,0.523127,0.0194836,0.612768,0.831543,0.337491,0.835899,0.999359,0.929978,0.956788,0.786566,0.93174,0.395901,0.135445,0.0877923,0.877325,0.721629,0.185789,0.500978,0.37732,0.34023,0.632761,0.181444,0.374764,0.317113,0.618478,0.987144,0.117521,0.112194,0.0962244,0.609602,0.368618,0.429474,0.152315,0.44819,0.930865,0.192543,0.373074,0.218094,0.235175,0.122105,0.369772,0.330183,0.285214,0.273495,0.833062,0.675303,0.579658,0.613241,0.347993,0.243314,0.370552,0.153678,0.0131209,0.0146461,0.103939,0.0292762,0.889202,0.711671,0.7319,0.255895,0.729247,0.596632,0.272551,0.320238,0.739023,0.668459,0.196594,0.846313,0.705355,0.458961,0.273287,0.212758,0.325792,0.885047,0.110381,0.867681,0.187216,0.739673,0.808154,0.976347,0.622935,0.19575,0.228192,0.829438,0.79875,0.545687,0.276238,0.919828,0.609034,0.721143,0.949335,0.339638,0.587562,0.304196,0.990417,0.433441,0.461066,0.0746919,0.855124,0.238389,0.0991806,0.331944,0.125549,0.496565,0.378569,0.614008,0.879102,0.130271,0.292871,0.983278,0.0120141,0.211915,0.446542,0.763061,0.602495,0.921006,0.567169,0.188017,0.358359,0.398144,0.723831,0.734239,0.108122,0.898817,0.430385,0.758762,0.703052,0.893248,0.0559862,0.640734,0.293582,0.2797,0.828147,0.256498,0.641001,0.949898,0.619664,0.0243754,0.237749,0.444264,0.904945,0.152012,0.329998,0.782592,0.603858,0.841011,0.686555,0.99836,0.470761,0.637186,0.316452,0.407738,0.836707,0.741402,0.693775,0.750102,0.386777,0.498629,0.389076,0.990113,0.874179,0.738117,0.616993,0.470516,0.348606,0.632707,0.412162,0.481607,0.361388,0.188831,0.818757,0.455325,0.309087,0.93514,0.299949,0.161027,0.738883,0.0789282,0.522323,0.43429,0.945751,0.734954,0.133293,0.788281,0.292539,0.744992,0.18816,0.0692739,0.260153,0.169556,0.328171,0.980519,0.0901552,0.221359,0.593196,0.246797,0.104429,0.443007,0.690219,0.820011,0.0559103,0.801899,0.418571,0.0142341,0.168828,0.333016,0.778001,0.0783162,0.923301,0.85666,0.723676,0.154345,0.856171,0.872409,0.648184,0.192205,0.453977,0.357107,0.677265,0.906715,0.167467,0.411688,0.564696,0.959696,0.0779019,0.194224,0.681715,0.420989,0.872854,0.427893,0.37839,0.807097,0.637021,0.197273,0.485324,0.958018,0.478052,0.154362,0.329167,0.849397,0.532953,0.978758,0.929738,0.84314,0.0551022,0.257614,0.257583,0.184221,0.538948,0.447576,0.964895,0.446064,0.958714,0.671002,0.416204,0.807838,0.152523,0.726058,0.65942,0.778033,0.102816,0.0772541,0.0918049,0.232009,0.29176,0.398238,0.171627,0.893286,0.856534,0.13806,0.785381,0.028586,0.779398,0.310345,0.646297,0.594459,0.0556068,0.337168,0.187843,0.755227,0.772747,0.681074,0.013827,0.0214337,0.454522,0.313112,0.664708,0.553423,0.418555,0.526546,0.515123,0.668966,0.434681,0.344754,0.157543,0.902211,0.367761,0.649664,0.773747,0.0236,0.6944,0.495642,0.840092,0.392419,0.214246,0.803794,0.443705,0.188698,0.956569,0.526607,0.656079,0.990158,0.269744,0.53145,0.270339,0.290659,0.22546,0.372573,0.124292,0.542728,0.137644,0.450348,0.833037,0.349544,|0.0410743,0.431326,0.431009,0.813316,0.764546,0.0357285,0.32969,0.596061,0.791068,0.680351,0.862312,0.354046,0.834052,0.956878,0.22518,0.752277,0.761465,0.453832,0.0881464,0.713112,0.0253561,0.485484,0.294544,0.858493,0.85872,0.758199,0.982114,0.879968,0.00863636,0.700851,0.0708111,0.506386,0.301236,0.605437,0.398386,0.744002,0.6507,0.594472,0.0687633,0.226256,0.580181,0.593687,0.339351,0.387724,0.575846,0.326864,0.477849,0.229985,0.286025,0.987437,0.488322,0.577144,0.933577,0.276707,0.157524,0.0244902,0.236217,0.157178,0.114995,0.689179,0.842176,0.841914,0.549914,0.411934,0.551052,0.73577,0.831302,0.503969,0.750888,0.603775,0.691691,0.266994,0.675155,0.64364,0.0599785,0.244166,0.76061,0.915114,0.991365,0.31716,0.107416,0.629235,0.708444,0.347443,0.211993,0.286494,0.641381,0.126993,0.722363,0.518761,0.344048,0.871591,0.340688,0.655683,0.246107,0.201594,0.724363,0.481443,0.549716,0.752423,0.257469,0.603673,0.0285785,0.0741388,0.286133,0.995333,0.721342,0.163377,0.783126,0.280321,0.0841097,0.886529,0.259777,0.949284,0.64436,0.88661,0.553491,0.600586,0.0319288,0.136028,0.75529,0.0903924,0.476628,0.307382,0.502767,0.520608,0.787815,0.267489,0.16928,0.758315,0.451203,0.163697,0.276443,0.20782,0.896386,0.69194,0.0532427,0.853898,0.605074,0.493644,0.586341,0.911004,0.395103,0.9338,0.123828,0.167486,0.650585,0.85941,0.774673,0.0557377,0.230941,0.879205,0.65529,0.63811,0.917993,0.577445,0.429335,0.959992,0.395119,0.108285,0.516614,0.008973,0.536075,0.960715,0.859652,0.279252,0.693797,0.699699,0.872942,0.32793,0.308659,0.315708,0.0697402,0.576743,0.877525,0.272093,0.922279,0.332969,0.455785,0.517953,0.757253,0.171408,0.074127,0.169371,0.224084,0.0980935,0.289193,0.0797736,0.0982438,0.281895,0.0461977,0.371292,0.754756,0.396843,0.695905,0.334061,0.0566769,0.223531,0.379955,0.154772,0.270251,0.417239,0.131141,0.851741,0.0989713,0.133329,0.0910565,0.102909,0.653952,0.918264,0.182419,0.364842,0.326076,0.462255,0.0467245,0.568322,0.393505,0.214905,0.661841,0.39701,0.951311,0.0503743,0.911965,0.862657,0.718543,0.853368,0.194838,0.236603,0.202482,0.428434,0.369598,0.41605,0.649808,0.293524,0.895499,0.677011,0.948201,0.454619,0.402239,0.426907,0.0640368,0.575201,0.237671,0.854583,0.391608,0.914939,0.553759,0.469804,0.517043,0.683309,0.889439,0.739378,0.906156,0.486243,0.660701,0.652781,0.559824,0.975261,0.699508,0.51101,0.373403,0.872669,0.76998,0.853961,0.94474,0.276582,0.817784,0.67715,0.424462,0.874748,0.162836,0.796587,0.586637,0.412097,0.0296658,0.856268,0.996827,0.804833,0.613535,0.866346,0.998451,0.40273,0.474957,0.376711,0.562784,0.531517,0.139851,0.579088,0.442793,0.053523,0.18505,0.643974,0.93207,0.338459,0.885632,0.124528,0.387014,0.936846,0.533965,0.900346,0.256137,0.883651,0.161105,0.448656,0.892339,0.730386,0.39104,0.0236025,0.299372,0.109012,0.294422,0.278487,0.09311,0.746545,0.937567,0.37743,0.972602,0.335749,0.492841,0.801664,0.687072,0.0620327,0.104432,0.219282,0.628906,0.747227,0.749956,0.217829,0.327656,0.355085,0.811337,0.381281,0.325428,0.0170566,0.567907,0.863941,0.894315,0.924859,0.45858,0.808865,0.106871,0.0921636,0.188592,0.345125,0.905808,0.100186,0.263453,0.62362,0.0749936,0.932769,0.937263,0.385018,0.266379,0.233301,0.271287,0.917917,0.929634,0.531113,0.816452,0.0467438,0.011496,0.505141,0.624124,0.518834,0.72904,0.56728,0.125105,0.200157,0.772632,0.876218,0.479953,0.398845,0.511055,0.205527,0.0364789,0.123601,0.383332,0.956054,0.262232,0.146515,0.770132,0.611167,0.210533,0.601544,0.108538,0.300187,0.714106,0.741991,0.435156,0.679697,0.525626,0.4435,0.571981,0.716442,0.255037,0.410406,0.246884,0.264399,0.169201,0.611309,0.967415,0.175684,0.662257,0.92465,0.763836,0.952355,0.383374,0.225104,0.0408508,0.960027,0.00666714,0.478727,0.590029,0.835505,0.327152,0.705987,0.785354,0.210825,0.89417,0.581322,0.155823,0.788744,0.334814,0.529729,0.815043,0.671327,0.712303,0.413625,0.10087,0.444975,0.0227849,0.358094,0.477126,0.708704,0.378434,0.685568,0.659872,0.636659,0.946238,0.824189,0.483053,0.895306,0.278554,0.292158,0.451069,0.0191597,0.775051,0.296626,0.3514,0.680536,0.0244802,0.0580732,0.287016,0.445636,0.227172,0.563844,0.816745,0.913731,0.237767,0.725209,0.548913,0.0179106,0.927379,0.152646,0.449122,0.377852,0.568168,0.122763,0.00111604,0.264916,0.375388,0.712524,0.260083,0.992835,0.0900126,0.159232,0.472901,0.202012,0.903754,0.635282,0.0211241,0.868995,0.273887,0.294768,0.865541,0.955647,0.427262,0.927048,0.689716,0.323088,0.84586,0.108786,0.0867036,0.46028,0.960054,0.17245,0.648291,0.526391,0.419894,0.966042,0.67539,0.0419171,0.983292,0.0736938,0.136395,0.177857,0.000413597,0.900254,0.847991,0.0290469,0.717327,0.897511,0.013535,0.548035,0.504173,0.538102,0.718529,0.551851,0.598556,0.420277,0.32729,0.705856,0.910056,0.967956,0.360068,0.678636,0.0536523,0.353335,0.575397,0.867503,0.83651,0.626534,0.387018,0.77921,0.735324,0.134085,0.16017,0.424244,0.388231,0.214925,0.373943,0.596567,0.220678,0.473398,0.0298848,0.411796,0.783505,0.605416,0.606356,0.109588,0.828878,0.737999,0.875995,0.00223517,0.654014,0.321225,0.759426,0.575567,0.72929,0.0825164,0.395508,0.490898,0.634581,0.342129,0.536732,0.865493,0.0225717,0.164905,0.420111,0.58716,0.484717,0.598669,0.05319,0.755733,0.846944,0.973977,0.557493,0.840084,0.396296,0.315431,0.219382,0.48627,0.0298437,0.732142,0.252529,0.851708,0.0720233,0.030068,0.134127,0.225635,0.0290756,0.65773,0.176068,0.18465,0.236282,0.0194909,0.606317,0.383015,0.514419,0.479991,0.684928,0.557694,0.569319,0.308264,0.63509,0.690685,0.566993,0.77692,0.652217,0.507564,0.0399364,0.317891,0.581135,0.94257,0.649396,0.661373,0.00977921,0.789055,0.202842,0.276201,0.573543,0.703627,0.593861,0.765472,0.670004,0.178397,0.12158,0.234661,0.780947,0.449377,0.854694,0.328867,0.0371486,0.933261,0.522611,0.606296,0.0804778,0.412467,0.462649,0.949985,0.024696,0.77136,0.515655,0.386053,0.330489,0.738131,0.769205,0.881134,0.937241,0.706352,0.677689,0.73238,0.0387871,0.121284,0.380474,0.887292,0.188295,0.23687,0.0323632,0.852489,0.199069,0.927234,0.543725,0.650617,0.653889,0.223416,0.0951058,0.884083,0.831628,0.0316331,0.530578,0.974891,0.462936,0.984604,0.469483,0.08587,0.481853,0.883126,0.596401,0.38697,0.229162,0.383193,0.473713,0.266091,0.368773,0.350469,0.349946,0.0333695,0.997324,0.347705,0.808092,0.156919,0.540175,0.958694,0.983566,0.674105,0.713277,0.687787,0.0140636,0.576829,0.185348,0.78502,0.0783044,0.00211155,0.864491,0.978779,0.345741,0.91903,0.442261,0.37785,0.956869,0.764815,0.936914,0.501991,0.160044,0.908897,0.109824,0.699171,0.267981,0.349204,0.134433,0.217423,0.83947,0.612725,0.225537,0.889426,0.207808,0.548373,0.890123,0.865817,0.102704,0.426702,0.495667,0.410544,0.636189,0.795987,0.441019,0.776079,0.00162774,0.489047,0.716701,0.280765,0.634652,0.0256514,0.59035,0.843334,0.72819,0.842452,0.848339,0.935362,0.892037,0.532536,0.170107,0.116435,0.773337,0.12104,0.983589,0.984493,0.61771,0.57726,0.618738,0.102701,0.610446,0.679524,0.357008,0.329574,0.111967,0.178493,0.455809,0.486132,0.589601,0.539435,0.0580522,0.0133172,0.835425,0.82102,0.025968,0.121515,0.587804,0.489535,0.514847,0.93108,0.812645,0.119376,0.973013,0.981963,0.0459424,0.247514,0.0871235,0.919024,0.0224033,0.545451,0.93147,0.618668,0.874037,0.0113779,0.174346,0.61424,0.42129,0.493016,0.278003,0.127525,0.477968,0.912557,0.0373533,0.873399,0.409758,0.871095,0.885902,0.509442,0.322204,0.190215,0.978771,0.347532,0.913766,0.453679,0.591381,0.311391,0.873849,0.396552,0.597924,0.17859,0.210405,0.88295,0.862147,0.210737,0.196243,0.204881,0.863414,0.353817,0.433811,0.880095,0.952184,0.134573,0.0911717,0.104395,0.979201,0.646583,0.763546,0.773616,0.872253,0.170993,0.44499,0.0799226,0.058717,0.844871,0.274119,0.399912,0.964055,0.994026,0.18347,0.0896354,0.812822,0.182799,0.773886,0.00814074,0.798029,0.309076,0.00786573,0.358064,0.445532,0.0763347,0.35516,0.309102,0.0448633,0.442329,0.551836,0.316941,0.754678,0.778255,0.646861,0.600218,0.262699,0.130236,0.588086,0.10895,0.911705,0.23748,0.578568,0.892205,0.951231,0.0521308,0.0688381,0.480986,0.241433,0.914302,0.388265,0.839174,0.619806,0.15457,0.226474,0.840436,0.693236,0.719077,0.487412,0.358587,0.486512,0.816318,0.25428,0.0337368,0.783941,0.132961,0.437406,0.808303,0.524361,0.597844,0.636121,0.688192,0.219545,0.140069,0.719151,0.565976,0.960976,0.667857,0.311532,0.0589702,0.17435,0.101328,0.00722826,0.761256,0.992906,0.748374,0.968756,0.14924,0.110608,0.255133,0.810839,0.373481,0.662402,0.907177,0.687365,0.958406,0.294415,0.734706,0.290241,0.215505,0.209965,0.766325,0.0715178,0.627757,0.77335,0.575825,0.221353,0.540917,0.340579,0.90976,0.945768,0.378329,0.417969,0.567033,0.0584145,0.218977,0.151281,0.504102,0.059392,0.643012,0.0140777,0.48155,0.902503,0.0776318,0.226331,0.5031,0.467768,0.194675,0.443994,0.562008,0.0119582,0.484462,0.167981,0.710581,0.852413,0.918894,0.738372,0.0094949,0.0835135,0.650216,0.793635,0.531459,0.262767,0.512211,0.110929,0.400086,0.593086,0.170124,0.773271,0.647854,0.633134,0.499227,0.925385,0.891164,0.832836,0.879697,0.49047,0.0292967,0.546995,0.756899,0.279295,0.643439,0.784836,0.154315,|0.49524,0.0631993,0.36251,0.236691,0.748743,0.156576,0.311929,0.958914,0.301833,0.871301,0.760548,0.0136707,0.399004,0.212167,0.472648,0.317057,0.303671,0.0654386,0.470091,0.0161312,0.248523,0.21299,0.652165,0.754584,0.968983,0.726952,0.911711,0.628546,0.19928,0.124249,0.698936,0.578917,0.756155,0.512591,0.653198,0.502708,0.578366,0.645373,0.724279,0.666311,0.787,0.629046,0.532112,0.128245,0.54382,0.647652,0.349042,0.372045,0.397907,0.164346,0.133018,0.820917,0.49905,0.895255,0.371391,0.329634,0.142543,0.372019,0.799624,0.269467,0.931776,0.146824,0.10533,0.357492,0.837242,0.385945,0.622974,0.399299,0.263102,0.579846,0.414976,0.302572,0.223522,0.272451,0.322229,0.801154,0.0314376,0.851058,0.871786,0.376631,0.448691,0.877104,0.175483,0.15623,0.111299,0.91215,0.155717,0.217748,0.533232,0.399489,0.513421,0.373602,0.92217,0.655057,0.113925,0.616508,0.968581,0.820275,0.835528,0.890076,0.548666,0.46515,0.552905,0.0505735,0.193707,0.603847,0.750812,0.0618301,0.277898,0.426827,0.111827,0.598151,0.16848,0.142847,0.188874,0.5067,0.307958,0.694927,0.690596,0.937843,0.867098,0.838283,0.602374,0.281954,0.290558,0.510611,0.098778,0.587366,0.139641,0.100627,0.73876,0.595668,0.966616,0.670337,0.817375,0.430254,0.545316,0.464649,0.638289,0.430879,0.33446,0.664984,0.0311376,0.567044,0.486418,0.691503,0.0696787,0.965024,0.893016,0.583321,0.9182,0.501819,0.771671,0.442184,0.909212,0.627609,0.32217,0.0201056,0.748645,0.372233,0.119875,0.771474,0.110284,0.890774,0.887867,0.0125465,0.587409,0.386916,0.460934,0.814062,0.571538,0.52615,0.784987,0.463205,0.149017,0.108606,0.891301,0.675144,0.129399,0.366998,0.992118,0.92123,0.172778,0.887122,0.871777,0.0977708,0.292578,0.381467,0.497104,0.744079,0.41646,0.560952,0.0108021,0.555737,0.954245,0.277898,0.186161,0.705252,0.652602,0.328469,0.613054,0.304786,0.620569,0.300367,0.405414,0.178324,0.433102,0.372182,0.852643,0.835523,0.951891,0.0881114,0.295174,0.0847088,0.223462,0.774149,0.370475,0.0840698,0.122724,0.0713699,0.197115,0.323303,0.259636,0.373458,0.455907,0.00389856,0.876238,0.221331,0.310478,0.0267835,0.178423,0.34104,0.373757,0.958849,0.936885,0.819123,0.625174,0.61017,0.567545,0.796926,0.705633,0.807693,0.776541,0.497587,0.380865,0.116338,0.152706,0.24522,0.171694,0.651393,0.213573,0.189747,0.589501,0.819304,0.48078,0.0404863,0.314922,0.727721,0.230103,0.0235859,0.507082,0.48958,0.975803,0.500562,0.0560342,0.072936,0.760348,0.598471,0.494958,0.945129,0.622364,0.839612,0.400727,0.162279,0.0127516,0.335401,0.594859,0.771122,0.43682,0.41271,0.417001,0.090449,0.646911,0.489576,0.595172,0.497859,0.00786513,0.350328,0.734049,0.477045,0.414212,0.613733,0.39718,0.452932,0.498104,0.160424,0.555294,0.959145,0.160598,0.92971,0.643359,0.0807076,0.0147449,0.763593,0.469451,0.428257,0.0715022,0.682456,0.795733,0.677502,0.0443349,0.942874,0.995985,0.576572,0.450781,0.717713,0.724349,0.394117,0.726755,0.222546,0.191866,0.587897,0.351854,0.584447,0.50069,0.115994,0.360765,0.197229,0.687278,0.807693,0.977304,0.516808,0.472307,0.322829,0.650294,0.0535365,0.571331,0.820601,0.729168,0.868689,0.875772,0.646865,0.566823,0.758227,0.0192419,0.0046398,0.0370656,0.971976,0.0562748,0.250076,0.622423,0.354106,0.0741569,0.883468,0.214007,0.487289,0.0690964,0.0511892,0.145828,0.761003,0.430188,0.771064,0.797536,0.772071,0.917866,0.920787,0.258215,0.441755,0.737294,0.574807,0.119285,0.635382,0.932641,0.945117,0.757427,0.630515,0.681135,0.768646,0.955157,0.287322,0.261018,0.301095,0.787771,0.957936,0.764438,0.00356352,0.83689,0.59334,0.936395,0.427248,0.139586,0.245342,0.496058,0.0773634,0.901467,0.21293,0.421671,0.497179,0.484574,0.928006,0.747457,0.0290794,0.953029,0.449354,0.905724,0.538124,0.0751936,0.383831,0.861862,0.773163,0.793962,0.937971,0.636249,0.984498,0.356346,0.0291295,0.162147,0.959812,0.51061,0.658677,0.92037,0.621376,0.887442,0.59745,0.172564,0.305926,0.485298,0.16454,0.0980241,0.656919,0.268459,0.332962,0.476464,0.667986,0.0519112,0.381776,0.210264,0.888081,0.462468,0.287564,0.437901,0.63026,0.867547,0.726234,0.398566,0.484374,0.603446,0.0681595,0.723622,0.153973,0.675599,0.0610896,0.764999,0.758709,0.996708,0.815059,0.103931,0.326542,0.560278,0.7191,0.901107,0.673045,0.677446,0.205355,0.0522129,0.262365,0.441288,0.831321,0.265604,0.31867,0.321584,0.35152,0.384747,0.515498,0.410993,0.512384,0.0726552,0.631788,0.649735,0.125175,0.394154,0.27955,0.924487,0.630082,0.350512,0.98452,0.876065,0.64597,0.163763,0.207382,0.455263,0.974449,0.0936121,0.728809,0.868679,0.350128,0.037389,0.20669,0.218572,0.170343,0.352014,0.533213,0.123809,0.569598,0.134051,0.343775,0.0740892,0.223066,0.387521,0.00553805,0.333357,0.606854,0.0827904,0.494682,0.390602,0.930422,0.178227,0.448934,0.70215,0.0936723,0.239587,0.843011,0.219109,0.052025,0.116834,0.770375,0.283982,0.0821835,0.224624,0.0370246,0.461495,0.262323,0.973782,0.457733,0.691407,0.622212,0.838432,0.909357,0.940587,0.61056,0.0137666,0.744039,0.671768,0.804131,0.812568,0.440871,0.24959,0.062574,0.792494,0.148154,0.242093,0.266508,0.644162,0.46491,0.829658,0.507892,0.694537,0.784856,0.755991,0.65929,0.282846,0.992787,0.111225,0.668788,0.148665,0.624106,0.203592,0.091144,0.241051,0.142828,0.435303,0.672619,0.712968,0.109387,0.551017,0.729943,0.507635,0.665543,0.914056,0.790013,0.493581,0.228945,0.976513,0.302379,0.469414,0.464785,0.597126,0.0996585,0.475426,0.120471,0.0506931,0.66416,0.692162,0.625495,0.507743,0.960905,0.505937,0.961364,0.867315,0.464979,0.328823,0.0617963,0.658245,0.163131,0.368793,0.905509,0.500884,0.203796,0.0318785,0.751266,0.0358429,0.896629,0.133948,0.356228,0.672641,0.0880636,0.992183,0.263172,0.992922,0.477767,0.264633,0.09319,0.110986,0.562151,0.357212,0.280217,0.583409,0.633995,0.590201,0.630957,0.0786113,0.422084,0.156811,0.284909,0.457679,0.85458,0.177507,0.12191,0.758326,0.720196,0.687458,0.277662,0.673482,0.40168,0.500673,0.728696,0.537972,0.602526,0.419557,0.451618,0.965982,0.974875,0.742963,0.0506629,0.490819,0.434751,0.0838636,0.526558,0.64823,0.931501,0.312026,0.397109,0.976529,0.110408,0.23859,0.945726,0.928907,0.531489,0.173767,0.680668,0.41304,0.56082,0.176151,0.934318,0.241435,0.212783,0.650056,0.851315,0.576304,0.0794577,0.944309,0.816233,0.104908,0.640676,0.626731,0.657486,0.173955,0.146744,0.322492,0.397749,0.008349,0.234095,0.220029,0.625965,0.366066,0.652223,0.96818,0.602299,0.191815,0.8825,0.498439,0.588857,0.44024,0.28699,0.87451,0.755225,0.216524,0.566482,0.00733465,0.20225,0.543541,0.932766,0.0120693,0.389885,0.804085,0.576096,0.911874,0.876155,0.302612,0.231185,0.569642,0.367769,0.636565,0.943165,0.385135,0.289105,0.187167,0.347206,0.985817,0.779434,0.383232,0.666159,0.660905,0.740927,0.221633,0.178927,0.196559,0.615201,0.790339,0.215138,0.646165,0.514119,0.827128,0.724435,0.48517,0.164051,0.747937,0.858449,0.56412,0.472984,0.875384,0.151404,0.682824,0.505019,0.641376,0.304905,0.416298,0.960257,0.640658,0.853118,0.681123,0.922721,0.946506,0.853122,0.186471,0.22446,0.602207,0.736235,0.242871,0.261031,0.909114,0.0914491,0.521791,0.586357,0.944376,0.562503,0.102644,0.668692,0.687998,0.684733,0.330238,0.990499,0.900226,0.658322,0.881433,0.564472,0.379505,0.240892,0.559178,0.679435,0.211915,0.292284,0.212972,0.635794,0.13121,0.125488,0.910469,0.453124,0.285627,0.242639,0.96562,0.807562,0.98276,0.850495,0.418863,0.767883,0.607391,0.624863,0.791667,0.372254,0.415805,0.515732,0.199362,0.487457,0.215779,0.985214,0.103552,0.484059,0.831734,0.194191,0.241977,0.324589,0.423592,0.774085,0.254226,0.116306,0.844955,0.276295,0.812971,0.382708,0.658929,0.351992,0.568877,0.54441,0.696894,0.525713,0.781481,0.266382,0.739546,0.689633,0.880681,0.121009,0.625404,0.125793,0.0926273,0.910294,0.309045,0.913182,0.791907,0.0746052,0.430496,0.886388,0.879996,0.425848,0.27277,0.451787,0.819009,0.118715,0.215654,0.509707,0.798507,0.941812,0.543522,0.396209,0.540866,0.292286,0.646335,0.555642,0.993765,0.652424,0.0883767,0.133347,0.232136,0.745857,0.178832,0.25836,0.902747,0.816701,0.558961,0.55927,0.442189,0.427513,0.155778,0.428548,0.534893,0.398572,0.938273,0.291804,0.6747,0.0941175,0.564473,0.0202881,0.38575,0.366042,0.134685,0.794364,0.397089,0.773982,0.515085,0.259138,0.387434,0.579931,0.300019,0.810735,0.681813,0.423605,0.0998758,0.0586592,0.043404,0.384303,0.673607,0.0956411,0.357023,0.662313,0.805542,0.059136,0.393155,0.938258,0.228978,0.655213,0.0423841,0.176927,0.153696,0.604686,0.566576,0.869909,0.0709008,0.072777,0.952763,0.893029,0.69,0.708913,0.306772,0.792539,0.594602,0.415948,0.476337,0.0599644,0.278904,0.851908,0.167058,0.636367,0.476457,0.279378,0.0941644,0.114286,0.73792,0.981342,0.0873103,0.968702,0.257703,0.481163,0.285468,0.676909,0.471274,0.816071,0.278253,0.117154,0.445483,0.548983,0.363634,0.948903,0.686728,0.375384,0.319755,0.291471,0.143593,0.916212,0.252701,0.8537,0.775574,0.312526,0.189919,0.623844,0.0570747,0.992431,0.549191,0.223572,0.778548,0.48443,0.315798,0.64115,0.488552,0.208232,0.266293,0.780775,0.338251,0.766859,0.952344,0.00334698,0.353867,0.599857,0.743037,0.224425,0.975835,0.906683,0.946354,0.862527,0.299118,0.694353,|0.485473,0.8734,0.107657,0.29908,0.981886,0.173335,0.146053,0.439077,0.452905,0.289463,0.38561,0.730297,0.381548,0.947345,0.39416,0.680492,0.856739,0.213884,0.467387,0.677172,0.173283,0.485053,0.0450244,0.809042,0.389266,0.798132,0.030962,0.806614,0.599957,0.696939,0.772949,0.751405,0.873365,0.43067,0.055423,0.31419,0.394987,0.175096,0.0438422,0.9133,0.568283,0.56787,0.806822,0.0302997,0.101243,0.658993,0.229228,0.0767171,0.626276,0.393948,0.690085,0.0129336,0.607435,0.791444,0.494801,0.0282047,0.232058,0.321168,0.0825689,0.107351,0.134788,0.344188,0.235057,0.548454,0.0977392,0.22224,0.350962,0.429862,0.236167,0.175946,0.519807,0.198673,0.741343,0.174097,0.562647,0.722328,0.344226,0.525671,0.742438,0.196817,0.791989,0.0735433,0.759841,0.0557953,0.443086,0.298946,0.0322928,0.741252,0.125582,0.391384,0.457789,0.110685,0.61509,0.83689,0.981384,0.392631,0.256914,0.0526273,0.682758,0.585593,0.0117722,0.798217,0.434377,0.287088,0.898537,0.109859,0.944704,0.467422,0.699675,0.366799,0.351174,0.42585,0.157923,0.478289,0.978774,0.316539,0.680368,0.862018,0.876333,0.395027,0.868539,0.331339,0.788327,0.515403,0.204454,0.753101,0.0143756,0.994568,0.766254,0.29422,0.704491,0.504452,0.743837,0.970237,0.260757,0.814995,0.0455688,0.966181,0.693322,0.0389286,0.303052,0.913757,0.104826,0.704143,0.583278,0.332415,0.530134,0.240268,0.14412,0.117748,0.498764,0.498435,0.572977,0.126028,0.131154,0.77326,0.465284,0.399222,0.253596,0.755318,0.151793,0.204005,0.279641,0.428231,0.426072,0.0876891,0.819784,0.264355,0.0993934,0.485184,0.32533,0.977989,0.636753,0.359516,0.719117,0.675398,0.828407,0.195407,0.333461,0.207325,0.0807652,0.360747,0.986015,0.579934,0.478197,0.00853133,0.34774,0.0369927,0.509498,0.53695,0.383794,0.418696,0.051559,0.181324,0.0166881,0.693893,0.153267,0.892134,0.813256,0.410538,0.478226,0.108148,0.00729543,0.39686,0.861719,0.99456,0.674905,0.151927,0.621537,0.808035,0.676568,0.0972628,0.23079,0.923356,0.468842,0.107363,0.885145,0.840692,0.78699,0.731694,0.0438238,0.943251,0.499756,0.150918,0.399585,0.842237,0.183814,0.838662,0.562202,0.841949,0.612682,0.771453,0.922009,0.269991,0.361455,0.627022,0.872539,0.110556,0.782877,0.665857,0.426975,0.274942,0.394518,0.987982,0.164552,0.295449,0.875676,0.0180216,0.249791,0.427692,0.626923,0.568063,0.487324,0.0444852,0.151233,0.978898,0.050679,0.475532,0.579847,0.00860757,0.758105,0.99836,0.0106934,0.626752,0.168157,0.114098,0.478801,0.16524,0.35272,0.484552,0.350282,0.920684,0.638899,0.290138,0.458022,0.610324,0.0288131,0.874468,0.458203,0.294653,0.960705,0.793632,0.700132,0.484996,0.675878,0.961406,0.478494,0.384078,0.693271,0.635578,0.712078,0.0697876,0.832588,0.244035,0.672477,0.388012,0.491063,0.722908,0.532852,0.878846,0.70108,0.0663999,0.124039,0.102719,0.529044,0.0919896,0.972449,0.379991,0.760582,0.0327454,0.525174,0.234935,0.646153,0.511636,0.801926,0.101264,0.278316,0.283144,0.134296,0.947355,0.777793,0.296879,0.776439,0.932872,0.335877,0.114693,0.932967,0.128207,0.559494,0.761331,0.522141,0.72596,0.209134,0.682526,0.521953,0.645272,0.992284,0.827151,0.342948,0.758976,0.842209,0.109744,0.36736,0.498958,0.489549,0.0794534,0.969605,0.192708,0.192034,0.0747945,0.777535,0.898212,0.0867658,0.460714,0.348696,0.133745,0.877865,0.530302,0.0945675,0.94131,0.83467,0.321297,0.772491,0.231812,0.131723,0.659996,0.417716,0.943899,0.840629,0.687901,0.617442,0.516385,0.66612,0.0906742,0.698826,0.128721,0.926625,0.342741,0.747493,0.527981,0.354596,0.928785,0.533661,0.804097,0.0062449,0.821003,0.621408,0.0638974,0.1273,0.240786,0.909635,0.976415,0.953419,0.876722,0.434933,0.2701,0.126886,0.966806,0.273757,0.53219,0.107319,0.580258,0.684614,0.845982,0.461113,0.220137,0.66459,0.0908316,0.346217,0.231779,0.65682,0.915284,0.347021,0.522974,0.946955,0.747994,0.910371,0.259976,0.614432,0.868977,0.962237,0.493784,0.416073,0.708981,0.295488,0.424605,0.491561,0.516529,0.175879,0.888142,0.680664,0.863003,0.351389,0.299676,0.0906405,0.913131,0.254927,0.287394,0.269027,0.556893,0.850266,0.775782,0.325754,0.837928,0.332467,0.00363606,0.511219,0.959288,0.604495,0.79879,0.400347,0.65532,0.983765,0.503599,0.375475,0.855679,0.928808,0.657001,0.625475,0.955221,0.600314,0.788997,0.545259,0.365831,0.124044,0.580032,0.136924,0.535308,0.584593,0.563944,0.382614,0.771085,0.396798,0.754545,0.407466,0.680631,0.493293,0.850921,0.623446,0.445149,0.759555,0.114168,0.349361,0.191972,0.779042,0.153777,0.20529,0.741479,0.338164,0.86731,0.592968,0.451765,0.917236,0.554388,0.770699,0.819479,0.745284,0.868741,0.916839,0.0437334,0.75896,0.0146797,0.0591743,0.796172,0.605574,0.668428,0.668906,0.218901,0.0949135,0.945001,0.916088,0.612746,0.10786,0.649582,0.0687573,0.697102,0.951915,0.929399,0.220928,0.160226,0.00231898,0.207398,0.0122217,0.0447275,0.148357,0.626742,0.967442,0.262838,0.558151,0.282102,0.487914,0.856636,0.378299,0.382799,0.191172,0.20007,0.152943,0.835947,0.373715,0.655843,0.934122,0.975849,0.123192,0.248574,0.393483,0.998786,0.993636,0.815163,0.384856,0.243634,0.819315,0.41596,0.370899,0.0317512,0.986092,0.224357,0.562497,0.638096,0.477702,0.516834,0.762685,0.331543,0.6703,0.923203,0.870488,0.319689,0.612188,0.598275,0.31077,0.967338,0.219281,0.415805,0.193106,0.619224,0.0538124,0.569288,0.253041,0.501495,0.0158095,0.531539,0.234588,0.776619,0.765273,0.612849,0.225147,0.476905,0.178249,0.55109,0.77292,0.596181,0.166359,0.567246,0.154054,0.485024,0.835413,0.493194,0.376013,0.55193,0.255412,0.53538,0.216561,0.751715,0.0302211,0.666271,0.0323149,0.765559,0.706467,0.833491,0.397275,0.189835,0.916832,0.0737825,0.523655,0.88693,0.893406,0.764759,0.234399,0.882817,0.622422,0.418451,0.283903,0.366353,0.0742311,0.551771,0.590655,0.320068,0.0195363,0.895419,0.828253,0.774605,0.832336,0.334948,0.742551,0.816896,0.389326,0.110187,0.475823,0.936393,0.675237,0.598365,0.888968,0.646235,0.190793,0.832777,0.394252,0.775919,0.179927,0.322929,0.0230844,0.443359,0.872525,0.503234,0.109522,0.190467,0.255729,0.749981,0.720315,0.121792,0.261151,0.902289,0.695388,0.689143,0.1475,0.910906,0.313371,0.463843,0.713162,0.260569,0.483175,0.329187,0.241943,0.966929,0.674609,0.663089,0.330835,0.0196255,0.564032,0.22563,0.0958781,0.417261,0.905349,0.951106,0.895991,0.541635,0.707098,0.640651,0.872468,0.238778,0.381617,0.0126648,0.396859,0.990474,0.765917,0.120093,0.475418,0.206909,0.818115,0.860356,0.521437,0.265371,0.523721,0.301673,0.999596,0.48396,0.794337,0.949746,0.440928,0.64434,0.552928,0.150904,0.451576,0.944832,0.439762,0.0327796,0.237487,0.996204,0.5053,0.99094,0.211726,0.680797,0.17723,0.467113,0.566867,0.715951,0.969112,0.562337,0.402199,0.695399,0.333747,0.370167,0.411708,0.765407,0.523762,0.820042,0.360883,0.739138,0.78744,0.480739,0.250479,0.169543,0.414438,0.0829934,0.901392,0.0449691,0.908183,0.913334,0.910431,0.311255,0.566592,0.405815,0.486607,0.26173,0.457538,0.53197,0.819612,0.877999,0.275295,0.530787,0.524621,0.0137642,0.215925,0.327666,0.726102,0.722323,0.927046,0.138764,0.805357,0.645146,0.208778,0.283432,0.419963,0.476601,0.066348,0.655518,0.0899168,0.404797,0.836127,0.700777,0.318316,0.729874,0.158255,0.146853,0.376131,0.80338,0.674191,0.525271,0.183117,0.257455,0.0273028,0.434627,0.818677,0.684284,0.984936,0.191789,0.547128,0.420184,0.239583,0.548264,0.224666,0.37066,0.57138,0.745455,0.429131,0.564802,0.143568,0.00409663,0.731628,0.815658,0.291388,0.885805,0.173265,0.576999,0.622976,0.436957,0.179004,0.529236,0.620115,0.0163236,0.213782,0.960196,0.81407,0.925693,0.224034,0.759338,0.719762,0.9818,0.10576,0.819354,0.11026,0.245938,0.361027,0.34675,0.701293,0.359383,0.314741,0.412301,0.666067,0.211442,0.753455,0.524877,0.444643,0.242827,0.637616,0.617341,0.874758,0.843264,0.942779,0.0728756,0.479587,0.684284,0.0300361,0.643439,0.314064,0.30127,0.716543,0.47213,0.785563,0.00628388,0.0982783,0.291189,0.257577,0.939929,0.893881,0.769024,0.429612,0.794665,0.804653,0.1289,0.125441,0.396149,0.987923,0.553272,0.474602,0.983349,0.753147,0.974156,0.338366,0.101805,0.591833,0.394046,0.578075,0.747575,0.778269,0.541832,0.324292,0.216276,0.591468,0.61143,0.624343,0.257209,0.176445,0.947509,0.917281,0.012674,0.937552,0.947363,0.643161,0.748267,0.705375,0.27008,0.717166,0.0220369,0.689283,0.782862,0.170596,0.946696,0.14705,0.698374,0.564267,0.970536,0.294738,0.569899,0.408662,0.92848,0.948636,0.116042,0.0580177,0.383038,0.297066,0.242959,0.178628,0.370898,0.9944,0.0692003,0.281873,0.649688,0.80332,0.196777,0.750132,0.0807835,0.620216,0.0478859,0.115164,0.569018,0.933652,0.381644,0.756916,0.649451,0.486697,0.637232,0.551368,0.0300673,0.591026,0.595001,0.254841,0.613758,0.143096,0.0870821,0.695509,0.942699,0.295631,0.822666,0.160825,0.0905083,0.313458,0.866868,0.681344,0.478311,0.521886,0.737363,0.0790295,0.299283,0.192833,0.516526,0.131424,0.365475,0.869905,0.857337,0.458463,0.155797,0.358044,0.689834,0.423546,0.10415,0.403616,0.580194,0.627595,0.128424,0.552533,0.853826,0.717277,0.210994,0.743923,0.781653,0.931941,0.0438923,0.252389,0.0208731,0.03341,0.506093,0.723256,0.974023,0.733798,0.808474,0.358495,0.622038,0.794275,0.819816,0.711041,0.697237,|0.734373,0.0228721,0.940046,0.170731,0.68017,0.795776,0.8435,0.0904396,0.270971,0.97688,0.141067,0.474934,0.0734733,0.383123,0.172199,0.548985,0.919576,0.125091,0.393299,0.645056,0.41949,0.40015,0.957067,0.56615,0.482003,0.0446926,0.603252,0.468682,0.376609,0.235896,0.131249,0.385933,0.963558,0.419006,0.0144736,0.0786695,0.518786,0.859978,0.513962,0.900012,0.426005,0.0868108,0.459456,0.247764,0.697802,0.849869,0.93387,0.854597,0.788702,0.744894,0.905275,0.62276,0.861391,0.170277,0.792285,0.893706,0.391565,0.836377,0.362839,0.288805,0.373121,0.167994,0.907619,0.704789,0.379936,0.806785,0.120422,0.684073,0.54883,0.915813,0.460027,0.129696,0.560745,0.301633,0.560423,0.359824,0.5692,0.26153,0.37704,0.317427,0.581365,0.294577,0.269546,0.0838272,0.127524,0.17239,0.0158245,0.0688552,0.756606,0.559166,0.0827468,0.981031,0.44235,0.380309,0.263379,0.831749,0.976648,0.272233,0.338253,0.674199,0.992273,0.708028,0.386558,0.110312,0.829079,0.342826,0.48033,0.423425,0.395223,0.899304,0.187627,0.586205,0.217817,0.846403,0.727022,0.834011,0.907724,0.457632,0.730671,0.927038,0.354789,0.113368,0.304564,0.141592,0.384702,0.534822,0.999104,0.963057,0.975859,0.437558,0.924201,0.181748,0.158939,0.669656,0.2865,0.278921,0.0244275,0.578097,0.567262,0.981694,0.222818,0.242817,0.678439,0.4471,0.698856,0.330138,0.101356,0.922905,0.277423,0.766867,0.599721,0.755464,0.606611,0.68802,0.947895,0.83458,0.952693,0.997545,0.960656,0.728347,0.92244,0.0212077,0.795806,0.486731,0.0998146,0.490732,0.104815,0.44754,0.859307,0.958785,0.261059,0.255045,0.051911,0.585437,0.683254,0.735101,0.249714,0.800546,0.525936,0.178659,0.0367042,0.875624,0.659231,0.179166,0.493639,0.0317484,0.483195,0.621381,0.783817,0.71606,0.235832,0.900769,0.41026,0.341911,0.945677,0.508741,0.588891,0.60297,0.760147,0.891129,0.782029,0.897664,0.945022,0.690849,0.787232,0.889323,0.0649636,0.384264,0.349504,0.352405,0.464475,0.936641,0.407533,0.0880631,0.426466,0.912812,0.269968,0.177294,0.0676216,0.213509,0.780615,0.417489,0.155036,0.702431,0.346633,0.26503,0.420564,0.137486,0.666011,0.16041,0.175974,0.464697,0.501828,0.929996,0.416219,0.504438,0.604419,0.93792,0.337011,0.0418062,0.599941,0.584081,0.255449,0.79211,0.601346,0.56768,0.473098,0.724616,0.444963,0.161872,0.546016,0.472354,0.754295,0.47716,0.196945,0.852068,0.123729,0.122977,0.453828,0.456135,0.0764886,0.399737,0.494965,0.110961,0.105275,0.316439,0.458836,0.833769,0.433966,0.57584,0.675535,0.0548981,0.387436,0.361318,0.0951295,0.00546443,0.42313,0.7672,0.688977,0.940346,0.136394,0.658301,0.0370802,0.690985,0.678557,0.788368,0.241877,0.624226,0.73121,0.966284,0.651193,0.465103,0.292829,0.0741854,0.84768,0.13125,0.458636,0.442015,0.633963,0.807423,0.8051,0.768173,0.982007,0.559783,0.260417,0.654539,0.982994,0.294514,0.600762,0.97927,0.352835,0.649816,0.773482,0.319016,0.642069,0.960386,0.439302,0.653383,0.924071,0.84088,0.214696,0.551806,0.753123,0.171999,0.226366,0.423625,0.920066,0.545378,0.736222,0.696303,0.182934,0.988839,0.999676,0.680921,0.155111,0.108556,0.39235,0.949262,0.181145,0.671201,0.797088,0.0736436,0.173158,0.715377,0.940831,0.882536,0.62338,0.80798,0.379383,0.348522,0.455065,0.313086,0.879658,0.871752,0.774023,0.963772,0.614464,0.913205,0.454584,0.732614,0.569315,0.503688,0.578115,0.836247,0.00159979,0.511263,0.663154,0.0971476,0.671423,0.843045,0.844104,0.852421,0.101364,0.962492,0.975351,0.590861,0.125784,0.921926,0.877654,0.160746,0.0246608,0.663356,0.554433,0.522786,0.199338,0.343207,0.448839,0.103495,0.697733,0.678772,0.315398,0.922571,0.577011,0.768362,0.465357,0.881356,0.0610911,0.951605,0.557212,0.914827,0.434938,0.372267,0.871491,0.36666,0.130181,0.965763,0.89141,0.214697,0.624032,0.772832,0.225441,0.220512,0.288865,0.544573,0.686184,0.394984,0.697467,0.3806,0.946768,0.622749,0.912341,0.961646,0.0156828,0.33085,0.555353,0.529562,0.116626,0.616908,0.735845,0.961027,0.750305,0.0916202,0.47494,0.429309,0.151599,0.310006,0.386325,0.0770885,0.6601,0.327298,0.116159,0.391691,0.182239,0.6544,0.0374427,0.885125,0.00670481,0.52238,0.147509,0.333824,0.30963,0.398947,0.554741,0.382373,0.453894,0.00614488,0.271891,0.936741,0.376459,0.899112,0.710416,0.865107,0.770095,0.418165,0.776814,0.802755,0.857829,0.275388,0.663868,0.396639,0.29079,0.408185,0.869827,0.0918616,0.639077,0.577424,0.0471139,0.801818,0.362214,0.328282,0.212769,0.0338168,0.788701,0.280987,0.856186,0.0848479,0.901798,0.218329,0.372068,0.764845,0.0609444,0.383255,0.793883,0.846754,0.519801,0.250701,0.414313,0.434036,0.733875,0.250275,0.923786,0.270835,0.878675,0.87702,0.375659,0.948529,0.459978,0.0420304,0.534595,0.103738,0.929492,0.603783,0.425636,0.850916,0.689497,0.333022,0.606803,0.351116,0.157882,0.430101,0.447348,0.573001,0.178123,0.309535,0.349384,0.887658,0.344988,0.53864,0.609783,0.635927,0.832169,0.487316,0.951537,0.821535,0.832515,0.0203868,0.426648,0.401396,0.406323,0.975684,0.597918,0.0440344,0.347307,0.0985728,0.898675,0.0779219,0.419742,0.0468387,0.118866,0.225508,0.55924,0.339224,0.525969,0.48151,0.67875,0.186954,0.912588,0.751894,0.451365,0.209458,0.281308,0.157409,0.976809,0.531518,0.151912,0.12577,0.15428,0.51088,0.161842,0.944401,0.361716,0.472556,0.38252,0.144632,0.275694,0.154389,0.924798,0.514375,0.524818,0.970669,0.220152,0.168879,0.898146,0.923466,0.816297,0.664964,0.920631,0.931508,0.260489,0.15464,0.999422,0.415886,0.357717,0.107009,0.21695,0.187679,0.743442,0.605483,0.83263,0.992331,0.522991,0.636896,0.410301,0.768153,0.445092,0.341234,0.951275,0.371207,0.0451869,0.950326,0.0179328,0.433316,0.935425,0.889058,0.584853,0.327743,0.537746,0.461462,0.328597,0.113944,0.458546,0.471405,0.458962,0.363665,0.0197799,0.880817,0.974111,0.874803,0.808389,0.782182,0.796584,0.121675,0.693762,0.255108,0.136321,0.161867,0.772996,0.0663858,0.84057,0.361222,0.337487,0.377033,0.717725,0.149834,0.0268292,0.846701,0.467831,0.290783,0.126065,0.909596,0.898134,0.814466,0.203768,0.091472,0.364006,0.146163,0.46221,0.150298,0.948857,0.644911,0.293313,0.128706,0.607473,0.876433,0.0576044,0.333072,0.397353,0.169641,0.820593,0.746477,0.625643,0.616518,0.656997,0.480759,0.320173,0.728751,0.288002,0.27275,0.441806,0.520489,0.888235,0.765137,0.281156,0.74705,0.600318,0.079636,0.193478,0.24732,0.0898028,0.8863,0.606669,0.94822,0.943988,0.570314,0.608186,0.952641,0.755348,0.492087,0.212047,0.365819,0.538376,0.693807,0.589888,0.737743,0.0449114,0.284302,0.514538,0.572305,0.979011,0.626418,0.668223,0.561012,0.0961486,0.295996,0.241399,0.40861,0.376863,0.631587,0.61805,0.554989,0.108371,0.504417,0.66052,0.615279,0.853787,0.56462,0.707318,0.287017,0.44042,0.492503,0.588711,0.2248,0.379324,0.159209,0.572894,0.775015,0.933403,0.72832,0.440286,0.275814,0.115459,0.28657,0.427275,0.282844,0.765654,0.292264,0.472664,0.917334,0.461053,0.676825,0.325354,0.345141,0.159958,0.494012,0.543007,0.422215,0.44156,0.872461,0.395229,0.989797,0.565401,0.376299,0.911445,0.782203,0.32481,0.652758,0.437689,0.0279661,0.438804,0.58579,0.73505,0.905124,0.622134,0.28305,0.619547,0.991173,0.888627,0.452,0.645495,0.0852113,0.108868,0.866557,0.156706,0.694983,0.521528,0.864288,0.384412,0.861025,0.770693,0.860936,0.682886,0.082581,0.985942,0.359783,0.853728,0.647698,0.370093,0.619191,0.824852,0.929188,0.138249,0.203843,0.505972,0.274573,0.455992,0.854076,0.556284,0.275221,0.534658,0.743752,0.065861,0.518197,0.192098,0.305742,0.628915,0.00214279,0.079805,0.948329,0.494406,0.137212,0.369387,0.102518,0.0423818,0.957969,0.484878,0.397769,0.750703,0.627576,0.0269967,0.302073,0.357035,0.628585,0.567791,0.881313,0.708027,0.272794,0.189008,0.0556527,0.934945,0.694741,0.171623,0.845963,0.103634,0.00680661,0.0587413,0.885025,0.0303993,0.475213,0.989607,0.591603,0.244701,0.139053,0.971603,0.907111,0.805266,0.593601,0.614718,0.557102,0.934935,0.0143394,0.318446,0.354236,0.781979,0.336965,0.314795,0.718943,0.719849,0.420413,0.011821,0.0306249,0.558762,0.194277,0.253536,0.00358725,0.782762,0.337369,0.82683,0.187825,0.0642641,0.0926911,0.707851,0.533037,0.376564,0.348519,0.383583,0.691318,0.972097,0.530669,0.555847,0.747138,0.786913,0.139692,0.066484,0.548748,0.552683,0.525208,0.595405,0.784998,0.404688,0.0576057,0.0128418,0.291505,0.348509,0.51239,0.301386,0.877781,0.0106017,0.831577,0.413651,0.775969,0.114336,0.920539,0.638722,0.231996,0.0655826,0.0600355,0.268437,0.699357,0.708745,0.730409,0.562981,0.43553,0.57626,0.280497,0.980709,0.477788,0.293542,0.352879,0.31691,0.062763,0.717437,0.00834936,0.623361,0.30229,0.81249,0.844885,0.902107,0.195253,0.32302,0.733596,0.871946,0.970517,0.853699,0.507502,0.867393,0.335616,0.854885,0.375461,0.939474,0.564013,0.403014,0.361624,0.993669,0.642443,0.411466,0.0896233,0.953677,0.709246,0.40637,0.269896,0.445559,0.846794,0.456779,0.615948,0.318168,0.52774,0.88319,0.887314,0.187311,0.0845472,0.0673784,0.479557,0.840817,0.512167,0.147625,0.355204,0.790783,0.481193,0.541474,0.907337,0.491115,0.613851,0.866641,0.176684,0.414839,0.392078,0.394362,0.0665457,0.0437111,0.0884136,0.948956,0.762431,0.873606,0.167455,0.389597,0.397205,0.699824,0.0606952,0.0445828,0.97273,|0.310352,0.197357,0.24272,0.649424,0.442154,0.519233,0.248303,0.797086,0.165504,0.706357,0.917018,0.113681,0.519421,0.325735,0.583569,0.612871,0.620515,0.539369,0.709132,0.799224,0.906812,0.324508,0.925684,0.123185,0.360133,0.0394409,0.21595,0.790379,0.537706,0.151848,0.365905,0.1318,0.939248,0.702563,0.677417,0.0906975,0.0279099,0.42204,0.995009,0.948714,0.0319218,0.834524,0.704463,0.651244,0.113612,0.97625,0.588486,0.749495,0.653485,0.0963632,0.467452,0.912178,0.327475,0.670916,0.72731,0.988328,0.565858,0.159766,0.423078,0.0586098,0.068268,0.598918,0.475064,0.493802,0.945969,0.686126,0.654756,0.575186,0.606785,0.737859,0.0275925,0.709231,0.612745,0.589635,0.0789163,0.885479,0.0398725,0.214224,0.540956,0.677274,0.489137,0.416329,0.318916,0.27639,0.874843,0.266081,0.126792,0.891806,0.657173,0.600291,0.466548,0.775463,0.717114,0.946661,0.529229,0.695236,0.975985,0.150094,0.543866,0.199584,0.97147,0.120546,0.542365,0.830967,0.302535,0.400022,0.798863,0.377585,0.712783,0.350016,0.491667,0.853948,0.202731,0.491147,0.452762,0.737932,0.485825,0.607009,0.658127,0.879347,0.501715,0.597546,0.756663,0.699476,0.77552,0.822664,0.0242424,0.877002,0.844907,0.162323,0.416477,0.52947,0.98283,0.0862473,0.913866,0.525249,0.777133,0.842373,0.874913,0.19903,0.0453739,0.0996009,0.0342241,0.737109,0.864251,0.04708,0.581048,0.919115,0.155024,0.309972,0.765873,0.649038,0.32425,0.978593,0.158053,0.926988,0.877843,0.73368,0.88117,0.279468,0.357579,0.421425,0.0485464,0.916654,0.701889,0.867826,0.107937,0.069769,0.520645,0.901541,0.697831,0.465856,0.86432,0.364703,0.321766,0.293748,0.476861,0.718151,0.50091,0.159039,0.246043,0.103056,0.979073,0.893762,0.588953,0.0172412,0.997125,0.92189,0.922855,0.154601,0.888847,0.186367,0.0402721,0.796706,0.939853,0.634808,0.301664,0.725854,0.866276,0.34694,0.314947,0.93136,0.637102,0.131581,0.679246,0.525274,0.303291,0.506853,0.858882,0.197595,0.437077,0.806469,0.963392,0.675036,0.209736,0.311122,0.271163,0.876019,0.292431,0.428566,0.652587,0.654241,0.0587969,0.110246,0.150287,0.921544,0.402059,0.875786,0.83444,0.36132,0.422074,0.798024,0.91631,0.346198,0.0716429,0.612607,0.0741526,0.0968863,0.317511,0.312149,0.073821,0.634759,0.947706,0.185947,0.881844,0.145399,0.838236,0.894882,0.179657,0.691266,0.341263,0.401815,0.0099569,0.00682431,0.809548,0.802811,0.496967,0.449767,0.0309809,0.167945,0.286257,0.57672,0.357116,0.404863,0.585939,0.552412,0.84268,0.957203,0.52217,0.549121,0.417565,0.362367,0.593839,0.37303,0.302098,0.189273,0.618716,0.532655,0.0329248,0.850439,0.111091,0.885571,0.324397,0.228774,0.595533,0.139486,0.759565,0.896115,0.702676,0.855973,0.00305873,0.228118,0.0326607,0.491107,0.256798,0.633064,0.949301,0.40655,0.386251,0.100826,0.408442,0.433796,0.985106,0.641082,0.800721,0.385753,0.852322,0.728122,0.215487,0.702727,0.930611,0.907697,0.556402,0.797583,0.475694,0.0137838,0.704574,0.66312,0.783061,0.847835,0.534905,0.212902,0.417364,0.766538,0.749722,0.954977,0.486434,0.144222,0.576176,0.0761184,0.743927,0.961816,0.400182,0.127927,0.310975,0.571237,0.624761,0.89102,0.389,0.834829,0.46875,0.293856,0.150028,0.666001,0.737783,0.782698,0.551409,0.93497,0.8878,0.687998,0.189621,0.423577,0.334097,0.0174453,0.245641,0.683472,0.214806,0.965823,0.0179667,0.41234,0.451304,0.655534,0.403927,0.529971,0.611944,0.0747729,0.164144,0.53512,0.708303,0.480125,0.331467,0.391384,0.171353,0.937875,0.167571,0.759706,0.547185,0.881763,0.251048,0.288065,0.791134,0.0344121,0.613271,0.925954,0.352115,0.282664,0.261652,0.923092,0.861745,0.980741,0.0576865,0.829936,0.399684,0.550931,0.756355,0.873525,0.114461,0.626677,0.475424,0.970276,0.436401,0.656838,0.82135,0.680573,0.899349,0.293332,0.543914,0.516595,0.753785,0.785188,0.187727,0.830721,0.172896,0.400862,0.837743,0.0556961,0.630431,0.827091,0.575076,0.627448,0.279134,0.928683,0.0550444,0.612444,0.635943,0.529563,0.162642,0.921292,0.837872,0.222037,0.610698,0.115418,0.377622,0.544274,0.443799,0.715891,0.712269,0.341859,0.582675,0.548777,0.552557,0.534345,0.73498,0.490098,0.372203,0.226499,0.100277,0.464938,0.318693,0.646013,0.281284,0.269719,0.856615,0.52017,0.416794,0.0252626,0.477842,0.0859042,0.992233,0.0235271,0.356846,0.392042,0.973407,0.144735,0.545773,0.307836,0.771952,0.583999,0.388682,0.860544,0.0251015,0.960433,0.395892,0.846527,0.400123,0.669134,0.34482,0.400722,0.706038,0.897638,0.247862,0.132113,0.153229,0.146794,0.887051,0.985742,0.100574,0.902224,0.692831,0.710043,0.404012,0.417966,0.00215483,0.959968,0.456952,0.770935,0.665009,0.579316,0.126862,0.0676569,0.130182,0.399229,0.275858,0.378247,0.159088,0.285321,0.418088,0.420231,0.140093,0.00296015,0.392742,0.13054,0.671076,0.13091,0.705422,0.00531018,0.239813,0.334974,0.832278,0.495243,0.0860195,0.337629,0.347967,0.0727818,0.0500436,0.450121,0.740741,0.994666,0.652018,0.1269,0.0175378,0.349453,0.957001,0.1629,0.691379,0.953351,0.705166,0.0867481,0.761026,0.150623,0.793514,0.455072,0.639874,0.767388,0.887414,0.513602,0.873367,0.477614,0.69611,0.23682,0.517108,0.547785,0.31255,0.0575418,0.347021,0.408685,0.137057,0.0466887,0.194265,0.885607,0.242813,0.982767,0.544089,0.675138,0.585148,0.445598,0.452357,0.859109,0.113418,0.753646,0.285296,0.622913,0.268767,0.98279,0.270578,0.770947,0.946822,0.531832,0.661575,0.768384,0.900488,0.989896,0.526275,0.615179,0.402819,0.508273,0.397839,0.749763,0.294226,0.438055,0.663642,0.873075,0.830944,0.311326,0.982792,0.0407624,0.898487,0.492451,0.803926,0.598679,0.518239,0.496758,0.99438,0.0489143,0.826081,0.0646006,0.86878,0.654968,0.873662,0.810841,0.706784,0.652476,0.0107894,0.248171,0.0596448,0.204631,0.994714,0.889639,0.623762,0.194209,0.80768,0.83349,0.255953,0.505885,0.107926,0.845812,0.0297709,0.0883219,0.515381,0.0432059,0.220199,0.377434,0.325168,0.292918,0.490659,0.614229,0.418929,0.0476981,0.391438,0.921305,0.960726,0.627755,0.441843,0.645059,0.848956,0.706365,0.778386,0.342894,0.608634,0.728706,0.78677,0.954146,0.441431,0.618016,0.173825,0.191899,0.00913674,0.0788248,0.726789,0.559574,0.182264,0.149345,0.924296,0.0576152,0.616159,0.0457474,0.751216,0.821781,0.839001,0.955996,0.399319,0.176393,0.607259,0.0655258,0.886799,0.153886,0.78905,0.650346,0.639458,0.323767,0.0852394,0.660452,0.948164,0.619081,0.596156,0.306587,0.181345,0.441248,0.0946598,0.580988,0.0587295,0.61615,0.969071,0.698621,0.808715,0.444634,0.0280588,0.740914,0.820964,0.894982,0.881891,0.264247,0.783363,0.30435,0.380321,0.351397,0.922086,0.54843,0.543922,0.434535,0.483539,0.376791,0.693523,0.578148,0.282111,0.725276,0.511872,0.352662,0.288227,0.748697,0.333045,0.184091,0.945216,0.692241,0.537183,0.147032,0.983822,0.116141,0.554711,0.856799,0.46461,0.0817112,0.961718,0.550913,0.563967,0.457797,0.0372686,0.860882,0.383928,0.301779,0.326426,0.618549,0.009148,0.267305,0.0340305,0.777635,0.414649,0.690681,0.553482,0.835777,0.717237,0.935084,0.379174,0.866584,0.314146,0.952237,0.89439,0.83083,0.903727,0.262234,0.135901,0.227255,0.85878,0.799728,0.366344,0.143886,0.975621,0.426582,0.786497,0.607591,0.917709,0.618917,0.0642321,0.994763,0.340404,0.0975393,0.154812,0.0575726,0.128879,0.528041,0.162741,0.66333,0.981196,0.698493,0.0522628,0.156871,0.150725,0.376481,0.178385,0.821035,0.238314,0.274499,0.792108,0.470754,0.901225,0.650311,0.529032,0.0700314,0.907453,0.0407976,0.929384,0.916602,0.0666649,0.653791,0.96878,0.432205,0.540953,0.441327,0.0341232,0.168473,0.741018,0.342247,0.341698,0.335592,0.421809,0.0516502,0.586249,0.854407,0.362786,0.0791231,0.588794,0.228786,0.202275,0.875279,0.441406,0.76182,0.11464,0.883049,0.319552,0.950226,0.235377,0.277639,0.46747,0.222822,0.408996,0.754981,0.627855,0.438581,0.699854,0.118887,0.81894,0.788026,0.288488,0.15659,0.461951,0.984794,0.809621,0.949038,0.39396,0.179922,0.935394,0.410618,0.339563,0.734588,0.656211,0.292367,0.676013,0.244122,0.150059,0.245334,0.397402,0.842576,0.762551,0.585263,0.330333,0.0140782,0.050585,0.94965,0.87506,0.00284147,0.851484,0.593075,0.0621433,0.449172,0.998487,0.60444,0.71646,0.149242,0.536118,0.26311,0.70407,0.434038,0.457955,0.94391,0.654855,0.543486,0.870549,0.698484,0.972416,0.336196,0.420966,0.798068,0.524902,0.262957,0.77422,0.38798,0.172877,0.378904,0.371488,0.210218,0.572637,0.466746,0.81263,0.983789,0.344663,0.200142,0.657632,0.427923,0.907595,0.757122,0.127615,0.269382,0.812892,0.61248,0.335887,0.626493,0.445236,0.823608,0.0738991,0.786571,0.377786,0.0692877,0.251053,0.233107,0.315315,0.457192,0.611822,0.880327,0.827005,0.961106,0.720436,0.881279,0.30934,0.954707,0.123241,0.859904,0.239572,0.663876,0.394038,0.192593,0.886473,0.737535,0.291164,0.427541,0.167687,0.0608533,0.38743,0.826605,0.435211,0.438312,0.106428,0.436358,0.999962,0.0269826,0.633426,0.91336,0.863928,0.209125,0.601001,0.813363,0.0384371,0.187081,0.616506,0.153578,0.941637,0.819599,0.0759547,0.798625,0.892125,0.886936,0.0785755,0.123924,0.129899,0.635024,0.661882,0.00163245,0.285202,0.306706,0.451158,0.963005,0.0956051,0.422758,0.849635,0.286976,0.480632,0.0413467,0.0497509,0.253105,0.691578,0.422984,0.462175,0.11248,0.19097,0.149618,0.583644,0.473698,0.409436,0.37254,0.145617,0.461989,|0.880546,0.803875,0.65317,0.369905,0.377426,0.835202,0.063603,0.381637,0.239967,0.0815838,0.609684,0.592675,0.960302,0.156785,0.111783,0.479364,0.893881,0.302918,0.76627,0.114463,0.836668,0.887441,0.16076,0.701028,0.783998,0.246184,0.466541,0.716244,0.180414,0.191117,0.88089,0.886337,0.421441,0.218562,0.357388,0.44385,0.975042,0.80122,0.746902,0.235614,0.393455,0.678169,0.927091,0.871319,0.476725,0.0863616,0.0690597,0.25241,0.913548,0.213824,0.770376,0.597886,0.646897,0.776317,0.820249,0.84533,0.460257,0.149973,0.747145,0.681419,0.781245,0.683333,0.597374,0.905035,0.70672,0.630252,0.450614,0.246917,0.0896851,0.869627,0.636591,0.619021,0.278807,0.12408,0.36049,0.679647,0.495248,0.242024,0.394188,0.633903,0.966448,0.716755,0.672562,0.127055,0.701015,0.543317,0.27215,0.670416,0.770526,0.143652,0.711492,0.720067,0.904498,0.194644,0.298688,0.280085,0.626132,0.5717,0.195051,0.847987,0.944253,0.162832,0.0693376,0.1651,0.640778,0.978781,0.603072,0.846985,0.0888878,0.628063,0.417566,0.420947,0.13405,0.826718,0.703825,0.565596,0.692109,0.940924,0.547621,0.825602,0.294645,0.678393,0.141995,0.501064,0.34493,0.321609,0.414985,0.218543,0.79247,0.974835,0.744091,0.0586894,0.785587,0.414268,0.943545,0.200426,0.950184,0.155937,0.115199,0.142914,0.236371,0.942331,0.83284,0.257364,0.503874,0.549117,0.210492,0.0151019,0.571023,0.0972593,0.965267,0.377352,0.864991,0.817925,0.333861,0.3929,0.708604,0.677388,0.326751,0.000464261,0.105286,0.616104,0.602511,0.988268,0.353776,0.0851172,0.882648,0.114497,0.413512,0.378446,0.843202,0.909669,0.950765,0.52857,0.400109,0.605158,0.293333,0.795038,0.953794,0.32544,0.408679,0.418481,0.853475,0.299584,0.361495,0.792861,0.0395491,0.564354,0.783501,0.995947,0.819718,0.123162,0.0818493,0.749185,0.408822,0.266229,0.72954,0.981955,0.982029,0.37906,0.0470142,0.808788,0.473879,0.596735,0.474627,0.379817,0.300503,0.260743,0.0434872,0.234676,0.418381,0.364152,0.34164,0.768972,0.28421,0.465963,0.412244,0.273432,0.111246,0.626703,0.100421,0.0307572,0.374918,0.206012,0.938235,0.778465,0.00225466,0.0182229,0.0535674,0.811505,0.344783,0.744537,0.65191,0.381018,0.371142,0.832628,0.324991,0.574939,0.130773,0.18643,0.988385,0.788259,0.427829,0.234269,0.923001,0.505694,0.343861,0.267711,0.143767,0.850547,0.361709,0.981489,0.783624,0.493357,0.149441,0.776537,0.714247,0.0399973,0.837085,0.979307,0.716451,0.257613,0.359246,0.989797,0.915626,0.119603,0.85548,0.585053,0.0469067,0.82173,0.0954224,0.704105,0.992193,0.119097,0.764557,0.184082,0.611958,0.379745,0.215897,0.122522,0.328534,0.176505,0.066242,0.344175,0.716587,0.914032,0.75969,0.976354,0.657602,0.520382,0.255428,0.65279,0.112082,0.304026,0.804223,0.855064,0.598348,0.371753,0.895354,0.00509059,0.571716,0.480132,0.682255,0.821552,0.945087,0.596699,0.490096,0.581511,0.601156,0.203995,0.525797,0.0035398,0.434779,0.751803,0.325039,0.182333,0.110824,0.261195,0.0383514,0.89442,0.399784,0.240561,0.777716,0.613154,0.699911,0.884518,0.912256,0.199571,0.0807604,0.826688,0.00625837,0.0937566,0.928054,0.113449,0.121078,0.935758,0.0753869,0.00294161,0.120107,0.370283,0.548162,0.383725,0.286805,0.462974,0.838531,0.980794,0.0378815,0.181264,0.514584,0.894104,0.24194,0.31788,0.241518,0.481318,0.907201,0.146437,0.787509,0.491659,0.401814,0.269942,0.261738,0.60814,0.670309,0.0574204,0.878652,0.358576,0.379929,0.58125,0.815381,0.270157,0.340247,0.315019,0.549159,0.120211,0.230193,0.517686,0.110869,0.145931,0.230574,0.516366,0.11503,0.893984,0.828057,0.726662,0.783958,0.190638,0.767247,0.795483,0.84525,0.192576,0.487119,0.511572,0.13749,0.279913,0.575575,0.481505,0.352488,0.409377,0.455097,0.208504,0.495419,0.491421,0.994845,0.650281,0.802403,0.609897,0.447198,0.934535,0.182303,0.780383,0.101391,0.147031,0.148655,0.124934,0.872875,0.316707,0.0252506,0.532718,0.371715,0.428185,0.229707,0.345874,0.834132,0.232256,0.428239,0.966689,0.348428,0.10304,0.635332,0.820607,0.873625,0.0422905,0.871674,0.887028,0.849272,0.643497,0.205357,0.260773,0.898682,0.430625,0.694864,0.251855,0.968895,0.985879,0.30326,0.540989,0.871795,0.745455,0.924796,0.58927,0.648027,0.751329,0.969887,0.810547,0.722433,0.453009,0.989469,0.942088,0.618662,0.933385,0.947754,0.742717,0.443158,0.535508,0.503475,0.361658,0.263026,0.841805,0.668316,0.624924,0.324125,0.679486,0.143436,0.511299,0.447611,0.425875,0.59399,0.0613278,0.70646,0.0867788,0.394747,0.755511,0.112747,0.923913,0.760292,0.240863,0.789056,0.804102,0.688189,0.870776,0.480697,0.32258,0.660033,0.234016,0.56438,0.276853,0.530343,0.580828,0.417436,0.139655,0.67375,0.215627,0.567873,0.049436,0.0771918,0.919951,0.595113,0.999933,0.97092,0.791179,0.950091,0.403709,0.181695,0.925655,0.0522493,0.423555,0.873687,0.195887,0.19545,0.615147,0.132074,0.92545,0.244448,0.326823,0.0018509,0.24028,0.688035,0.120864,0.0285615,0.465138,0.978181,0.565658,0.221068,0.238627,0.0216718,0.936768,0.126721,0.107675,0.767292,0.656204,0.364843,0.771528,0.444871,0.635963,0.685045,0.0664812,0.881958,0.0134745,0.375815,0.354777,0.311738,0.694801,0.955268,0.689574,0.372923,0.940841,0.634604,0.889673,0.746447,0.317371,0.560944,0.982643,0.398958,0.689527,0.598086,0.249785,0.219306,0.889944,0.905804,0.0290656,0.00310379,0.696818,0.614164,0.591846,0.642491,0.710247,0.792771,0.981551,0.978704,0.969718,0.0820116,0.362452,0.785043,0.722586,0.468771,0.263946,0.748283,0.557839,0.477963,0.740657,0.984559,0.793649,0.898725,0.124288,0.311839,0.190807,0.370595,0.264872,0.00532967,0.0105526,0.967454,0.873901,0.315742,0.893355,0.23068,0.33366,0.305435,0.312998,0.15557,0.161235,0.808265,0.904252,0.0491222,0.123074,0.800918,0.830677,0.0380138,0.0213405,0.541187,0.592919,0.964728,0.470923,0.0171154,0.367404,0.358964,0.283656,0.133894,0.0737697,0.37925,0.687078,0.856496,0.251573,0.578395,0.863853,0.288811,0.327589,0.733649,0.468562,0.524225,0.687868,0.996761,0.851925,0.139535,0.284839,0.50593,0.187312,0.996963,0.102286,0.00359869,0.257491,0.820088,0.739247,0.677593,0.296497,0.165505,0.259944,0.798356,0.691019,0.577938,0.329202,0.423323,0.819662,0.292598,0.925086,0.21356,0.265657,0.474755,0.206878,0.419489,0.760201,0.102924,0.582929,0.120715,0.313559,0.247784,0.961265,0.304357,0.526513,0.150688,0.334365,0.071522,0.138866,0.590051,0.878867,0.621703,0.165344,0.551569,0.391596,0.289518,0.134139,0.899275,0.442061,0.530407,0.941819,0.2086,0.16307,0.886166,0.340164,0.957057,0.998783,0.888833,0.165132,0.501851,0.380453,0.173812,0.937168,0.628377,0.483627,0.785132,0.332743,0.60905,0.925869,0.751997,0.0405691,0.0499309,0.576684,0.0511774,0.563268,0.541231,0.0883625,0.638824,0.562066,0.852853,0.732447,0.716347,0.264732,0.936601,0.683256,0.440246,0.28664,0.249142,0.844568,0.993632,0.546678,0.468798,0.856247,0.814595,0.0873767,0.167086,0.517098,0.422122,0.996035,0.484556,0.536642,0.393554,0.509478,0.477357,0.175522,0.518921,0.173927,0.218849,0.541206,0.952354,0.102836,0.898281,0.753202,0.906435,0.794707,0.744291,0.361223,0.583638,0.526076,0.976805,0.141821,0.586343,0.689006,0.132166,0.866085,0.606232,0.401144,0.421234,0.429863,0.432211,0.0896427,0.378593,0.667681,0.167435,0.282088,0.90263,0.275399,0.90602,0.450998,0.492259,0.621739,0.391144,0.125981,0.718536,0.0783125,0.189695,0.499925,0.0791324,0.361033,0.585148,0.409688,0.0182827,0.94605,0.629425,0.58873,0.120449,0.95285,0.442514,0.257333,0.00247997,0.226904,0.80362,0.108755,0.414278,0.129722,0.356259,0.137455,0.718568,0.331625,0.26535,0.696962,0.462406,0.296076,0.101168,0.916005,0.772213,0.064028,0.131935,0.416765,0.729615,0.977665,0.159027,0.634809,0.373459,0.797058,0.552665,0.632698,0.646606,0.152365,0.861041,0.460065,0.944922,0.0689808,0.373859,0.391223,0.196727,0.689576,0.704514,0.646139,0.641343,0.846259,0.507056,0.481034,0.10835,0.0821546,0.478095,0.921669,0.82699,0.714636,0.497485,0.558677,0.96323,0.882223,0.688395,0.0393085,0.613346,0.594149,0.970743,0.997652,0.0102432,0.0884049,0.487616,0.614492,0.666924,0.8072,0.461375,0.32935,0.0836729,0.396456,0.156865,0.776847,0.978268,0.62937,0.110923,0.734778,0.385796,0.878224,0.932441,0.033114,0.390247,0.117297,0.708898,0.064586,0.792403,0.0402794,0.413668,0.0710982,0.191174,0.736787,0.20608,0.753667,0.239598,0.93732,0.642546,0.330999,0.462219,0.565526,0.47247,0.00195307,0.299764,0.979851,0.588621,0.0829095,0.784612,0.17329,0.08724,0.500372,0.128513,0.14013,0.659459,0.217709,0.454588,0.921609,0.333214,0.675696,0.848558,0.683811,0.697243,0.235478,0.306239,0.313742,0.484051,0.067255,0.469237,0.670038,0.811133,0.878611,0.731992,0.400888,0.820699,0.923039,0.487716,0.18664,0.842366,0.529136,0.334006,0.359715,0.451781,0.464176,0.434387,0.43715,0.500717,0.659318,0.1985,0.175818,0.528563,0.803414,0.77749,0.495917,0.411105,0.556032,0.676804,0.401157,0.462637,0.80299,0.803912,0.209825,0.68052,0.158202,0.542995,0.617314,0.706833,0.149508,0.478667,0.265477,0.220757,0.432886,0.604844,0.617717,0.66266,0.641686,0.222085,0.219682,0.821936,0.369151,0.116809,0.228577,0.468049,0.753231,0.142173,0.857276,0.0208228,0.583655,0.27068,0.462807,0.566689,0.366721,0.459566,0.698063,0.585559,0.791656,0.689304,0.412357,0.191059,0.875889,0.976976,0.96637,|0.70281,0.403431,0.25659,0.476181,0.659232,0.405152,0.101413,0.957998,0.0663891,0.309202,0.565558,0.336231,0.0437807,0.104989,0.437628,0.503774,0.656527,0.733612,0.534952,0.548488,0.856889,0.080768,0.826619,0.364808,0.790171,0.751884,0.654923,0.00568569,0.984125,0.361772,0.432592,0.998656,0.179559,0.0753037,0.590692,0.200871,0.989755,0.683245,0.517646,0.481034,0.0776183,0.410226,0.426009,0.655016,0.57591,0.639635,0.232417,0.445436,0.411475,0.587063,0.391378,0.824456,0.872628,0.0793663,0.0978473,0.0347745,0.616033,0.587775,0.859577,0.0624297,0.791776,0.388181,0.531951,0.182202,0.434347,0.189085,0.210576,0.481009,0.582054,0.685691,0.488861,0.734405,0.961623,0.434332,0.0253772,0.785719,0.101744,0.801254,0.0688342,0.317851,0.870064,0.406397,0.914122,0.653706,0.855259,0.659821,0.896488,0.678551,0.393139,0.636258,0.960763,0.268037,0.787546,0.302323,0.707818,0.870242,0.0372968,0.925976,0.150742,0.176538,0.399165,0.458611,0.773972,0.9459,0.0866541,0.867809,0.0557463,0.404566,0.413078,0.959072,0.61942,0.470373,0.380525,0.0668383,0.0205975,0.692213,0.154083,0.254604,0.5412,0.97315,0.179621,0.476632,0.686274,0.853705,0.546935,0.561672,0.666265,0.510133,0.869551,0.388715,0.0514861,0.122766,0.394961,0.761563,0.809988,0.222441,0.633101,0.914163,0.808555,0.958773,0.121531,0.29938,0.892154,0.690611,0.868887,0.869872,0.150293,0.647271,0.321228,0.601071,0.102367,0.255254,0.0250542,0.220305,0.615266,0.229935,0.457306,0.903788,0.469233,0.224332,0.870323,0.9859,0.0281167,0.172928,0.755999,0.382314,0.385342,0.635823,0.00453478,0.383828,0.393974,0.706971,0.85118,0.476847,0.00123191,0.675327,0.591759,0.483073,0.455343,0.967565,0.161542,0.912901,0.0494316,0.581649,0.758692,0.681645,0.341679,0.633192,0.143047,0.0410848,0.645156,0.771956,0.214174,0.451759,0.41704,0.983587,0.86531,0.0266583,0.475585,0.956436,0.382082,0.92158,0.163369,0.0335664,0.619593,0.49148,0.751584,0.434254,0.426054,0.847918,0.598539,0.793957,0.674589,0.753331,0.924846,0.444547,0.869718,0.899282,0.290667,0.984734,0.762936,0.372231,0.706674,0.410446,0.556483,0.0362158,0.127729,0.446882,0.284657,0.318976,0.29705,0.89911,0.528869,0.0102956,0.501498,0.564744,0.742962,0.156029,0.794402,0.373222,0.98148,0.337361,0.223803,0.795955,0.0578123,0.131758,0.635975,0.767308,0.781776,0.354204,0.794698,0.620047,0.397446,0.351598,0.433999,0.711604,0.263144,0.550835,0.493891,0.731632,0.0302355,0.256508,0.188754,0.457648,0.259257,0.519675,0.20166,0.116689,0.359558,0.48958,0.803314,0.695088,0.464124,0.462323,0.156968,0.400021,0.728021,0.578266,0.592922,0.0909174,0.246875,0.736574,0.443506,0.648673,0.121714,0.0627751,0.61933,0.787678,0.341186,0.228292,0.0879804,0.228574,0.824169,0.180598,0.169558,0.914819,0.638508,0.404528,0.693258,0.331468,0.455089,0.206152,0.869937,0.723218,0.105654,0.445783,0.495695,0.0912827,0.481265,0.0351584,0.577063,0.873769,0.0300586,0.828933,0.926241,0.898022,0.204971,0.349081,0.471109,0.967869,0.430705,0.626452,0.0919711,0.0519702,0.790619,0.471383,0.0605293,0.559977,0.911155,0.993081,0.948204,0.862792,0.992908,0.594971,0.76838,0.424078,0.991225,0.22335,0.545903,0.323135,0.277677,0.881302,0.757192,0.0200943,0.316625,0.477483,0.474944,0.283601,0.728508,0.0305902,0.603335,0.418911,0.755942,0.000414371,0.105667,0.150188,0.295071,0.522181,0.0204528,0.435214,0.443238,0.989006,0.730497,0.39419,0.816145,0.0292547,0.664867,0.28779,0.00527424,0.652104,0.62624,0.211793,0.603119,0.685547,0.0691264,0.457068,0.952985,0.228632,0.418173,0.549641,0.489034,0.985491,0.351409,0.604164,0.854047,0.603105,0.173976,0.606796,0.980311,0.209887,0.752315,0.0119471,0.822964,0.483069,0.907556,0.814568,0.357602,0.729814,0.183122,0.0172939,0.837077,0.862153,0.8514,0.789619,0.916983,0.990699,0.248799,0.200956,0.952664,0.642938,0.220634,0.610659,0.433895,0.406831,0.932164,0.0478014,0.252114,0.634606,0.722095,0.967045,0.628233,0.269712,0.429587,0.638555,0.777491,0.44569,0.760927,0.181817,0.647572,0.550306,0.569632,0.841475,0.600288,0.775434,0.825719,0.280657,0.195432,0.976028,0.7423,0.933369,0.515643,0.58216,0.358361,0.740952,0.0833753,0.296925,0.32937,0.603137,0.876881,0.0260867,0.563013,0.0169693,0.727118,0.209705,0.34223,0.201697,0.336494,0.547384,0.451503,0.607579,0.98545,0.934228,0.456552,0.334055,0.572059,0.286092,0.0176641,0.59086,0.812924,0.967755,0.230698,0.836402,0.560707,0.511299,0.893689,0.352818,0.810775,0.788379,0.50484,0.576407,0.195636,0.769688,0.301992,0.388877,0.876603,0.769359,0.15541,0.181999,0.625283,0.0964314,0.721986,0.454088,0.509889,0.462692,0.699986,0.657493,0.0967867,0.221035,0.538166,0.041117,0.668087,0.406988,0.881556,0.854362,0.269359,0.668797,0.296861,0.984876,0.856861,0.665003,0.358517,0.104519,0.253899,0.524582,0.670231,0.71084,0.316335,0.909379,0.868549,0.76599,0.704108,0.957559,0.49327,0.582737,0.846927,0.506492,0.277125,0.876866,0.250168,0.14082,0.0531453,0.878865,0.83226,0.718541,0.479395,0.465095,0.598386,0.474482,0.206267,0.466406,0.140145,0.157736,0.289163,0.795793,0.909119,0.939732,0.149236,0.360393,0.603157,0.860257,0.537282,0.381036,0.419152,0.928383,0.11318,0.567896,0.475271,0.677981,0.915739,0.414624,0.298205,0.495867,0.370731,0.72237,0.985331,0.0228468,0.10014,0.49417,0.754023,0.47982,0.565629,0.133157,0.776976,0.121571,0.540487,0.353997,0.131333,0.463791,0.539251,0.42735,0.576799,0.0279134,0.210899,0.429445,0.369717,0.357735,0.267761,0.916301,0.625334,0.554614,0.0420735,0.797576,0.603259,0.2135,0.850361,0.197464,0.868789,0.734853,0.0852289,0.145548,0.817847,0.646767,0.31637,0.28604,0.756632,0.199737,0.980737,0.628366,0.659997,0.244033,0.696706,0.152078,0.81666,0.858142,0.352191,0.283098,0.639492,0.550903,0.0908482,0.772761,0.625359,0.778839,0.564348,0.590745,0.032435,0.265971,0.406977,0.779938,0.857112,0.596524,0.614402,0.454238,0.184097,0.0268734,0.557686,0.856082,0.0112794,0.104438,0.24216,0.775858,0.902774,0.0537536,0.766604,0.295563,0.367422,0.13499,0.0602885,0.800235,0.974954,0.562147,0.817133,0.402488,0.0866561,0.883301,0.446976,0.658598,0.844385,0.210517,0.124405,0.733006,0.168573,0.772287,0.982474,0.996348,0.0549568,0.311779,0.284039,0.0515064,0.902649,0.42359,0.330273,0.218016,0.141304,0.222359,0.75558,0.32512,0.976249,0.807812,0.35436,0.552543,0.670707,0.803094,0.269953,0.119997,0.500423,0.300764,0.763148,0.455049,0.973289,0.946457,0.738524,0.980883,0.855358,0.152693,0.600908,0.639606,0.913368,0.302001,0.432717,0.212308,0.43853,0.102074,0.344681,0.240556,0.498676,0.770332,0.192408,0.625869,0.959598,0.250633,0.308902,0.900191,0.761907,0.439318,0.710974,0.482199,0.0744469,0.632996,0.891179,0.7566,0.621978,0.281307,0.0335038,0.999434,0.327313,0.923937,0.276246,0.849787,0.622465,0.0409623,0.535033,0.142443,0.441762,0.744615,0.255367,0.895952,0.727754,0.324234,0.374647,0.382739,0.207864,0.212823,0.148521,0.106843,0.274605,0.933815,0.632405,0.910524,0.936573,0.208705,0.213475,0.818823,0.0301332,0.211253,0.986046,0.231511,0.550783,0.49511,0.147578,0.4649,0.572608,0.161112,0.525243,0.938462,0.439277,0.531838,0.700192,0.843212,0.742677,0.943819,0.518745,0.187198,0.814847,0.579292,0.0487887,0.96497,0.678852,0.478697,0.338789,0.503081,0.0753435,0.456541,0.301228,0.576881,0.912434,0.931633,0.645071,0.596225,0.809216,0.681504,0.066332,0.416355,0.52571,0.395508,0.432127,0.219657,0.734191,0.553948,0.629774,0.637561,0.429545,0.949556,0.168054,0.856639,0.241448,0.79238,0.340953,0.281758,0.0632821,0.86902,0.852722,0.305335,0.544225,0.35634,0.707589,0.523781,0.886399,0.392852,0.944305,0.0182195,0.207564,0.20357,0.470198,0.00530303,0.429427,0.613476,0.626045,0.509848,0.923668,0.904691,0.77105,0.84301,0.0659559,0.153105,0.00566101,0.88228,0.367352,0.456638,0.541955,0.863873,0.587255,0.977322,0.817814,0.0551707,0.9116,0.974225,0.596304,0.141654,0.216887,0.871611,0.994749,0.357148,0.211273,0.715096,0.224056,0.223829,0.630056,0.0254413,0.360239,0.818309,0.801813,0.745997,0.261875,0.0842861,0.254449,0.678208,0.463381,0.594351,0.902414,0.927005,0.919336,0.857928,0.25897,0.447185,0.0684685,0.571567,0.952873,0.70475,0.234237,0.358682,0.664725,0.347538,0.880708,0.610394,0.227332,0.467582,0.98458,0.730393,0.555812,0.323526,0.138107,0.198464,0.918719,0.186656,0.244396,0.357527,0.875578,0.843961,0.92812,0.401089,0.0984328,0.528974,0.268221,0.168762,0.755462,0.255461,0.696025,0.529876,0.317977,0.468003,0.701615,0.475272,0.312965,0.52541,0.243755,0.123698,0.890946,0.642044,0.64576,0.0997439,0.628309,0.828785,0.458043,0.212728,0.952807,0.292319,0.868962,0.459103,0.23108,0.736014,0.233715,0.0420065,0.0838221,0.795108,0.428962,0.225435,0.982392,0.41473,0.720925,0.541391,0.595944,0.695574,0.841976,0.6869,0.552778,0.629458,0.840484,0.24691,0.325183,0.77673,0.932063,0.57419,0.0901664,0.341764,0.143823,0.238506,0.422726,0.924617,0.594708,0.267205,0.488884,0.112491,0.704446,0.6143,0.43481,0.0915946,0.00963396,0.386968,0.60195,0.231143,0.528985,0.843713,0.161232,0.200582,0.133253,0.335177,0.158986,0.0700939,0.972816,0.141568,0.700798,0.312829,0.678061,0.74308,0.429256,0.38226,0.297046,0.964379,0.553663,0.200493,0.433719,0.680368,0.0405894,0.671088,0.0672774,0.0594078,0.901172,0.0702399,0.491489,0.500783,|0.151186,0.0946586,0.552792,0.115151,0.0726761,0.303168,0.0691999,0.821272,0.695448,0.306012,0.318006,0.684008,0.544037,0.921108,0.69207,0.459653,0.241146,0.468935,0.366717,0.147347,0.275797,0.535334,0.627925,0.427428,0.83368,0.171467,0.156955,0.880715,0.783617,0.320724,0.400154,0.320172,0.0576494,0.235568,0.276047,0.868524,0.44375,0.496082,0.0288625,0.679412,0.856951,0.622887,0.945201,0.804869,0.305301,0.717313,0.789837,0.399317,0.283991,0.36342,0.0955955,0.981868,0.844433,0.0976561,0.0302863,0.944594,0.676121,0.287486,0.756127,0.846416,0.232567,0.128798,0.889698,0.984022,0.535927,0.115508,0.717302,0.505068,0.493267,0.119394,0.479931,0.665647,0.677992,0.732207,0.585103,0.59841,0.538683,0.399758,0.266569,0.481192,0.912829,0.871239,0.667394,0.315338,0.702207,0.843,0.397539,0.509852,0.285701,0.0398687,0.356514,0.536991,0.523431,0.564026,0.494701,0.649168,0.281401,0.536805,0.0608378,0.575347,0.676145,0.738249,0.876709,0.59534,0.693285,0.744197,0.323218,0.713937,0.592852,0.195852,0.490524,0.707984,0.801699,0.112341,0.780587,0.991336,0.900761,0.863132,0.434215,0.878321,0.508557,0.401933,0.0992636,0.78667,0.876546,0.774133,0.734397,0.783688,0.361811,0.489583,0.887734,0.782185,0.524314,0.0220073,0.0254512,0.337858,0.936125,0.372957,0.597726,0.040452,0.889722,0.29416,0.8995,0.80849,0.541672,0.480408,0.0330073,0.557283,0.0776849,0.184956,0.756809,0.864659,0.177013,0.920424,0.652095,0.657099,0.513562,0.795935,0.76118,0.488334,0.962699,0.145137,0.902327,0.569684,0.214846,0.784102,0.686754,0.0261005,0.722327,0.798861,0.72883,0.0904441,0.994056,0.467829,0.42183,0.862491,0.0619663,0.875281,0.478546,0.0410357,0.833097,0.567231,0.364745,0.524667,0.901094,0.390035,0.0276204,0.196361,0.47941,0.244133,0.374694,0.639961,0.0274587,0.156062,0.43526,0.46897,0.261901,0.615775,0.522538,0.698239,0.709549,0.855152,0.655413,0.675761,0.798534,0.387627,0.592383,0.416878,0.549257,0.266388,0.43391,0.633692,0.112984,0.518545,0.539981,0.198366,0.837741,0.0472948,0.938635,0.649085,0.154932,0.6543,0.0500098,0.192295,0.347188,0.507385,0.821755,0.246744,0.511148,0.256263,0.633851,0.514134,0.90824,0.293349,0.474556,0.464133,0.131822,0.86852,0.740383,0.839246,0.655635,0.287907,0.175016,0.202593,0.87877,0.637471,0.679579,0.953067,0.0874028,0.435737,0.759948,0.0331576,0.373469,0.402378,0.73436,0.417237,0.0893363,0.51997,0.362912,0.138782,0.185418,0.0469403,0.622543,0.575324,0.0671766,0.387263,0.378175,0.118949,0.442814,0.588468,0.290362,0.779483,0.114049,0.46719,0.26279,0.396435,0.796044,0.298152,0.969346,0.430786,0.164578,0.0542758,0.437941,0.488497,0.930572,0.890564,0.730963,0.206183,0.647376,0.949739,0.384091,0.707405,0.431949,0.245111,0.278896,0.726595,0.0965241,0.755534,0.986927,0.710762,0.928356,0.401455,0.0987993,0.641461,0.341688,0.879307,0.468534,0.470334,0.958485,0.775604,0.724434,0.795766,0.9315,0.433048,0.87018,0.034821,0.39036,0.143919,0.0550045,0.381863,0.382849,0.341384,0.398048,0.927883,0.148417,0.779828,0.148495,0.987634,0.770452,0.805674,0.986979,0.599239,0.158409,0.577801,0.5807,0.55502,0.0842316,0.140676,0.949214,0.251921,0.525516,0.308741,0.718164,0.910876,0.416929,0.767451,0.151402,0.944362,0.280543,0.101019,0.136239,0.592154,0.360172,0.891356,0.697769,0.777588,0.806238,0.441431,0.0213454,0.429447,0.274841,0.531097,0.429018,0.659327,0.401701,0.523324,0.74474,0.0607972,0.0167918,0.520951,0.0934575,0.990198,0.130434,0.130665,0.427866,0.0441945,0.224333,0.0813491,0.262485,0.440782,0.207155,0.209295,0.870173,0.186969,0.549911,0.501243,0.409084,0.125868,0.11122,0.453264,0.832677,0.856528,0.598549,0.0543714,0.252371,0.706435,0.879552,0.473584,0.833982,0.790638,0.921198,0.831585,0.244104,0.918348,0.0909302,0.829981,0.316774,0.541249,0.759,0.861578,0.424513,0.591914,0.518004,0.0180225,0.868026,0.7907,0.182402,0.212351,0.502949,0.410301,0.566851,0.401171,0.297786,0.131113,0.639402,0.663386,0.454203,0.759828,0.728296,0.886632,0.253044,0.658068,0.0497859,0.738551,0.542946,0.0694126,0.481075,0.698418,0.124633,0.333633,0.857321,0.179071,0.0267296,0.841757,0.824499,0.608106,0.997023,0.920092,0.568622,0.419734,0.922644,0.875233,0.908182,0.956046,0.669756,0.78793,0.670718,0.308105,0.377958,0.228193,0.592943,0.0819532,0.877691,0.935479,0.096808,0.753034,0.68461,0.468929,0.406645,0.882337,0.392154,0.0270676,0.225686,0.644061,0.292157,0.337445,0.822631,0.793072,0.946667,0.0954506,0.501414,0.605021,0.800008,0.203762,0.82551,0.815429,0.0955768,0.223361,0.226777,0.729596,0.239991,0.207796,0.0853211,0.0865583,0.420948,0.445935,0.830278,0.673074,0.218572,0.78043,0.902893,0.769769,0.188517,0.616798,0.170046,0.0393241,0.585201,0.801738,0.377934,0.52702,0.528438,0.061332,0.0601496,0.480588,0.11215,0.630171,0.826443,0.232003,0.0771383,0.626531,0.472043,0.256057,0.506236,0.394013,0.855619,0.775057,0.726537,0.888608,0.187592,0.197572,0.177172,0.70771,0.837076,0.698914,0.104599,0.00196475,0.728244,0.218277,0.915,0.575162,0.231628,0.0976731,0.939465,0.890147,0.741498,0.529292,0.931053,0.344344,0.946787,0.88205,0.962628,0.788644,0.918914,0.596518,0.813911,0.744641,0.070991,0.905767,0.988582,0.517471,0.319938,0.455536,0.559471,0.797066,0.0735456,0.596245,0.415794,0.337701,0.796445,0.10723,0.343518,0.231677,0.398283,0.699749,0.200898,0.122006,0.695714,0.935262,0.969346,0.203112,0.164138,0.454381,0.799736,0.775892,0.914366,0.525211,0.985619,0.755538,0.426739,0.905575,0.183379,0.700218,0.125202,0.141686,0.547482,0.343001,0.305245,0.281694,0.223845,0.603812,0.925472,0.329707,0.914137,0.477635,0.583263,0.537691,0.427734,0.308304,0.2221,0.471469,0.308254,0.580786,0.658633,0.668551,0.461574,0.785808,0.904966,0.771192,0.135325,0.232993,0.770613,0.0208165,0.207161,0.490341,0.861269,0.58282,0.230487,0.0421811,0.377492,0.409001,0.0139977,0.704056,0.194055,0.0687282,0.312733,0.748522,0.696337,0.342776,0.197402,0.950189,0.123845,0.822174,0.332021,0.731597,0.127241,0.0573279,0.499879,0.884717,0.329477,0.613327,0.310495,0.963713,0.622582,0.113489,0.784604,0.852107,0.488754,0.425726,0.434861,0.0648866,0.434386,0.668292,0.737958,0.448953,0.671985,0.555583,0.713072,0.622875,0.0369105,0.803719,0.349604,0.419536,0.976187,0.326893,0.801621,0.343745,0.412015,0.559865,0.831908,0.0441263,0.61638,0.0430163,0.977232,0.0115083,0.0813305,0.3133,0.186368,0.640421,0.0455506,0.493582,0.462938,0.475425,0.0571706,0.696482,0.0134243,0.26272,0.837553,0.076543,0.429206,0.476968,0.197805,0.980791,0.620778,0.379585,0.441173,0.28304,0.0449229,0.384217,0.273712,0.118985,0.628848,0.920494,0.886421,0.955188,0.632004,0.25642,0.493831,0.865636,0.0591215,0.762037,0.461514,0.186582,0.226087,0.458819,0.119451,0.250897,0.392627,0.837875,0.161371,0.171609,0.942878,0.0125533,0.509861,0.68574,0.23989,0.977944,0.795683,0.120571,0.979432,0.730829,0.253108,0.852215,0.00694185,0.207843,0.130324,0.637775,0.749043,0.823959,0.787167,0.942347,0.72828,0.710113,0.0266544,0.221134,0.862989,0.670607,0.714357,0.0630867,0.68179,0.215107,0.697731,0.85598,0.298421,0.514464,0.654719,0.772327,0.486201,0.24405,0.750055,0.268964,0.230322,0.721982,0.284786,0.499675,0.648997,0.0745116,0.651073,0.680599,0.276834,0.119368,0.339361,0.619918,0.473567,0.574485,0.665743,0.142601,0.548402,0.0433172,0.473279,0.853821,0.0253367,0.453111,0.885858,0.879658,0.997329,0.591532,0.313785,0.0590199,0.235625,0.481346,0.691024,0.226497,0.974945,0.266984,0.0914952,0.169373,0.399581,0.62509,0.428785,0.22924,0.962708,0.509086,0.672594,0.817459,0.083766,0.410637,0.265569,0.540468,0.200348,0.135263,0.802484,0.909897,0.875405,0.65437,0.250721,0.479135,0.0711496,0.0209699,0.742728,0.363487,0.0294856,0.466469,0.848913,0.493602,0.339609,0.911956,0.494603,0.490446,0.814523,0.570282,0.644938,0.448908,0.0849043,0.848427,0.415109,0.885605,0.396664,0.270032,0.794979,0.539958,0.294048,0.982211,0.146676,0.122391,0.518648,0.605292,0.0490896,0.161928,0.428259,0.190449,0.0132952,0.636176,0.466256,0.330245,0.452715,0.944471,0.274033,0.831417,0.183495,0.410735,0.699489,0.899654,0.78304,0.061883,0.215536,0.440142,0.758479,0.497639,0.16042,0.321948,0.123666,0.747079,0.0616838,0.397897,0.798475,0.446997,0.307687,0.97654,0.786081,0.549664,0.0371262,0.853162,0.731997,0.973539,0.109871,0.501152,0.394293,0.889131,0.831777,0.415125,0.0271416,0.79594,0.137061,0.18105,0.760884,0.22501,0.784059,0.988895,0.412365,0.754349,0.863964,0.583282,0.100061,0.287268,0.928669,0.463644,0.67073,0.274661,0.708275,0.971832,0.623392,0.795052,0.133839,0.642161,0.668236,0.665166,0.991505,0.109429,0.549968,0.291316,0.896915,0.933777,0.487964,0.524891,0.973884,0.774836,0.904373,0.152294,0.124614,0.311031,0.245179,0.1564,0.435423,0.661956,0.340418,0.754446,0.403183,0.39582,0.688733,0.142356,0.539584,0.927471,0.392807,0.279934,0.186076,0.0218272,0.52682,0.796289,0.298282,0.0478111,0.531768,0.492777,0.046307,0.0529308,0.997607,0.408517,0.0604789,0.00690305,0.523439,0.301983,0.415372,0.000708282,0.412301,0.805806,0.00786781,0.929155,0.266602,0.128093,0.800689,0.933858,0.608005,0.979691,0.77243,0.193451,0.658201,0.828381,0.325106,0.894212,0.789734,0.755638,0.176814,0.548476,0.0367503,0.86722,0.0786893,0.344902,0.961109,0.636883,0.407399,0.0684616,|0.348823,0.631649,0.945883,0.462519,0.235716,0.418372,0.244845,0.78778,0.610556,0.966501,0.53267,0.148364,0.12305,0.0644041,0.10028,0.103769,0.587286,0.119997,0.554209,0.374214,0.0168182,0.616685,0.6544,0.853157,0.549087,0.907124,0.896052,0.609277,0.480042,0.0867429,0.0930247,0.764363,0.932368,0.62806,0.968948,0.28423,0.801834,0.637638,0.601137,0.509532,0.232684,0.505615,0.120194,0.877264,0.717429,0.44798,0.285471,0.39447,0.0487036,0.602091,0.333019,0.0712715,0.46233,0.945606,0.657033,0.409594,0.647256,0.125631,0.442463,0.678193,0.0980218,0.23702,0.946774,0.705728,0.934384,0.193391,0.23009,0.722268,0.115989,0.331768,0.415797,0.150434,0.750029,0.075254,0.139584,0.235993,0.454881,0.693171,0.88391,0.849709,0.598872,0.876812,0.30394,0.685299,0.911679,0.16554,0.543018,0.3058,0.0507128,0.754813,0.465814,0.546573,0.633668,0.515797,0.934825,0.169134,0.523153,0.276002,0.0998386,0.118402,0.812044,0.424577,0.643492,0.0654036,0.182786,0.771611,0.770045,0.207558,0.335945,0.575809,0.77614,0.0733259,0.886984,0.82796,0.482923,0.450184,0.838949,0.484881,0.45419,0.379193,0.441587,0.250757,0.747456,0.932214,0.153376,0.448377,0.260663,0.385251,0.988803,0.780011,0.758718,0.193547,0.61401,0.544553,0.864579,0.445187,0.704259,0.308127,0.790649,0.459686,0.941144,0.636902,0.715046,0.803539,0.417627,0.939302,0.572852,0.186714,0.18606,0.32857,0.080009,0.515048,0.514952,0.254969,0.391912,0.116727,0.854386,0.916856,0.772995,0.956943,0.631741,0.27406,0.238535,0.786517,0.668037,0.915578,0.170811,0.687655,0.996236,0.735651,0.0862911,0.380969,0.530192,0.854402,0.691043,0.0200768,0.754358,0.118046,0.406931,0.950513,0.730997,0.683209,0.678044,0.214725,0.663765,0.690658,0.526486,0.365957,0.737884,0.0613762,0.289454,0.296196,0.660729,0.810551,0.780152,0.52565,0.514214,0.76142,0.317829,0.101169,0.644565,0.0217103,0.890449,0.0766392,0.448346,0.470531,0.623599,0.394104,0.393267,0.0649046,0.831851,0.379261,0.455759,0.964157,0.361869,0.468377,0.628317,0.430637,0.407108,0.152453,0.82426,0.941652,0.686827,0.439882,0.453338,0.209907,0.104018,0.202994,0.828179,0.364879,0.232332,0.123621,0.317336,0.989801,0.169111,0.97346,0.730482,0.0538542,0.742362,0.706306,0.652556,0.354672,0.732528,0.846107,0.0539988,0.860176,0.0120161,0.244002,0.965089,0.603929,0.417827,0.848376,0.976015,0.164038,0.443296,0.987059,0.370087,0.409062,0.959462,0.0862802,0.357067,0.221021,0.477076,0.872823,0.640692,0.0195138,0.225191,0.702159,0.820361,0.280333,0.877849,0.143257,0.56165,0.992612,0.332253,0.116464,0.562862,0.115467,0.753316,0.82558,0.214493,0.883168,0.705193,0.618457,0.333437,0.0523519,0.397024,0.579056,0.391143,0.332101,0.0987003,0.388934,0.0502681,0.289873,0.272897,0.569392,0.555653,0.541017,0.843655,0.450811,0.962276,0.016469,0.864213,0.436379,0.00947464,0.402004,0.351766,0.970286,0.645868,0.910331,0.989,0.916349,0.621323,0.885946,0.124248,0.0560713,0.626338,0.786756,0.540974,0.90671,0.570908,0.847214,0.095535,0.549397,0.377738,0.945719,0.875639,0.0824238,0.359208,0.493751,0.482717,0.334837,0.784705,0.632419,0.409861,0.204925,0.822939,0.503151,0.785076,0.551379,0.321314,0.141745,0.981682,0.614578,0.264077,0.456506,0.617295,0.729831,0.0138591,0.454365,0.0271673,0.314307,0.992067,0.483401,0.738874,0.175058,0.182859,0.373157,0.656024,0.553203,0.0855013,0.75776,0.200585,0.121054,0.567802,0.796494,0.569782,0.851345,0.5792,0.376689,0.391776,0.595261,0.390329,0.621482,0.142134,0.433783,0.861064,0.440093,0.397493,0.309841,0.77829,0.541596,0.882816,0.540702,0.361483,0.765566,0.81976,0.0251669,0.017759,0.517747,0.589812,0.712442,0.650466,0.666608,0.371519,0.885661,0.0917498,0.452976,0.757063,0.390287,0.238787,0.7157,0.355459,0.0128456,0.577058,0.976564,0.608838,0.270294,0.532161,0.112087,0.643035,0.445091,0.77067,0.192704,0.694841,0.627806,0.538642,0.328093,0.0069809,0.239467,0.0476101,0.832592,0.271745,0.483633,0.595602,0.657267,0.506076,0.90319,0.0648752,0.153279,0.825735,0.769679,0.432647,0.461045,0.349947,0.125925,0.492925,0.849089,0.922294,0.627101,0.509371,0.568428,0.0182824,0.798233,0.950413,0.394903,0.882446,0.446471,0.666978,0.955698,0.70643,0.00622147,0.551783,0.0303398,0.871756,0.0156348,0.293288,0.103306,0.598716,0.293069,0.496504,0.266333,0.2359,0.608672,0.812747,0.231134,0.985402,0.196292,0.553652,0.322432,0.670438,0.940974,0.843401,0.124236,0.109514,0.582285,0.312408,0.492622,0.0368974,0.496341,0.992108,0.00188565,0.746743,0.0989744,0.488854,0.932902,0.946466,0.470383,0.142472,0.591178,0.518363,0.418666,0.0386438,0.754668,0.928486,0.59259,0.497097,0.717856,0.693446,0.627393,0.805666,0.0166126,0.667848,0.842879,0.33447,0.645424,0.143662,0.500423,0.152586,0.0272888,0.145005,0.785306,0.637428,0.453817,0.265024,0.263587,0.87021,0.502023,0.190467,0.525586,0.428376,0.0860798,0.821184,0.686817,0.131163,0.990607,0.257722,0.105637,0.442604,0.0721059,0.636157,0.89506,0.136156,0.432148,0.755821,0.44825,0.0508146,0.585504,0.865325,0.414389,0.419082,0.274959,0.670624,0.498449,0.141897,0.450773,0.475736,0.566201,0.81844,0.185028,0.224656,0.488059,0.661577,0.480768,0.746344,0.735136,0.786169,0.817007,0.595392,0.820358,0.0800736,0.779853,0.235498,0.97275,0.649863,0.927661,0.714239,0.395073,0.937168,0.998357,0.639452,0.115139,0.635321,0.301505,0.987123,0.438183,0.712304,0.569942,0.161292,0.0320739,0.935321,0.982231,0.747011,0.105388,0.0457531,0.643317,0.527276,0.526834,0.655739,0.998529,0.27306,0.922455,0.141894,0.53698,0.331303,0.89098,0.0703011,0.206285,0.297694,0.453723,0.55259,0.187274,0.327291,0.304045,0.663027,0.549997,0.448095,0.514007,0.349084,0.298898,0.0863426,0.564582,0.756427,0.117579,0.0719211,0.142264,0.437941,0.725683,0.145931,0.336625,0.0606484,0.577068,0.582101,0.632116,0.673829,0.938708,0.935935,0.144661,0.294303,0.5891,0.230003,0.0930509,0.849046,0.959019,0.87146,0.0616419,0.883773,0.747823,0.170799,0.727675,0.791524,0.803161,0.202303,0.873325,0.481448,0.635491,0.707668,0.652947,0.538326,0.0300711,0.637685,0.730896,0.634421,0.267017,0.304783,0.0563954,0.174884,0.334748,0.547223,0.682696,0.630011,0.227148,0.277854,0.379559,0.169624,0.933002,0.995054,0.205195,0.611953,0.024681,0.54206,0.376097,0.0510257,0.0439461,0.390761,0.254249,0.618899,0.293741,0.921688,0.518394,0.457161,0.685816,0.970025,0.640347,0.302012,0.351084,0.534336,0.6522,0.0159884,0.434056,0.21972,0.283585,0.67515,0.367617,0.724901,0.368465,0.43014,0.491351,0.463519,0.579367,0.385693,0.308371,0.508306,0.776792,0.0447022,0.14099,0.976104,0.166657,0.705905,0.968604,0.18355,0.717918,0.606313,0.314628,0.902753,0.619973,0.0773073,0.656904,0.362712,0.246233,0.991191,0.932665,0.9949,0.352715,0.297087,0.267223,0.361123,0.291037,0.148604,0.527878,0.91729,0.696909,0.421009,0.768183,0.528643,0.0704371,0.1794,0.648943,0.166015,0.0324842,0.628988,0.376432,0.277215,0.34607,0.421662,0.341636,0.763497,0.537625,0.239885,0.692692,0.0327846,0.00335693,0.191885,0.368014,0.815192,0.648514,0.54112,0.307852,0.656381,0.683975,0.748379,0.90734,0.854299,0.214095,0.26452,0.230344,0.366908,0.116645,0.617919,0.135021,0.506084,0.632186,0.60086,0.357064,0.676257,0.782926,0.351353,0.225337,0.235566,0.914726,0.331162,0.379784,0.353788,0.889273,0.81025,0.786269,0.924548,0.348412,0.714412,0.708645,0.660426,0.179845,0.184702,0.727955,0.138181,0.670206,0.819221,0.263843,0.0532589,0.115785,0.133132,0.182084,0.929529,0.851978,0.994807,0.120396,0.327267,0.501208,0.117253,0.352045,0.819258,0.528339,0.0834572,0.0995079,0.930503,0.821347,0.63964,0.330587,0.0587907,0.238785,0.426538,0.517682,0.754513,0.860723,0.761273,0.935579,0.486786,0.732676,0.528839,0.738669,0.931602,0.86706,0.823022,0.53266,0.550756,0.889015,0.883964,0.950472,0.150083,0.60745,0.313557,0.746356,0.549779,0.197702,0.442113,0.742979,0.732381,0.0505885,0.266443,0.882877,0.808082,0.278849,0.0681429,0.10794,0.961857,0.610256,0.699457,0.497719,0.0526867,0.114852,0.762249,0.940505,0.153313,0.797563,0.390055,0.000335634,0.685238,0.620312,0.383828,0.635108,0.18613,0.389561,0.0168239,0.949766,0.498613,0.256472,0.803775,0.452579,0.0441073,0.437829,0.339906,0.989603,0.73191,0.277244,0.32738,0.797751,0.445979,0.170108,0.962111,0.0500596,0.718722,0.947232,0.990585,0.789783,0.487659,0.300649,0.944329,0.533689,0.827987,0.831389,0.693097,0.49076,0.930057,0.735746,0.20818,0.791403,0.308981,0.299626,0.508462,0.970022,0.43153,0.384206,0.81653,0.412525,0.903964,0.511453,0.545876,0.414545,0.0990501,0.423127,0.34753,0.29733,0.49179,0.908988,0.85843,0.121291,0.594138,0.583674,0.504832,0.568698,0.522862,0.0190507,0.580032,0.135087,0.73128,0.286737,0.574689,0.28325,0.8705,0.271061,0.931099,0.226704,0.691776,0.0835526,0.231808,0.398152,0.498519,0.243629,0.96005,0.952772,0.156588,0.524155,0.98065,0.417,0.0830536,0.23044,0.670792,0.778419,0.864125,0.674129,0.200623,0.153951,0.0743489,0.443042,0.798203,0.474599,0.989498,0.991373,0.755339,0.638391,0.175931,0.919568,0.686285,0.11923,0.374667,0.884962,0.284163,0.863573,0.923065,0.406353,0.180906,0.97825,0.00840592,0.513636,0.343585,0.202529,0.883979,0.544264,0.163862,0.119371,0.042102,0.517243,0.879177,0.808214,0.663393,0.28704,0.591553,0.742281,0.521764,0.647441,|0.883271,0.905929,0.751828,0.917695,0.0422603,0.797695,0.0429575,0.106517,0.476469,0.775795,0.368411,0.748398,0.859704,0.566093,0.997285,0.564744,0.340999,0.0852806,0.826094,0.236992,0.800154,0.422969,0.267622,0.0170147,0.698075,0.459371,0.279364,0.212212,0.775429,0.335405,0.00492102,0.86971,0.812065,0.248902,0.489137,0.375427,0.81686,0.366567,0.230525,0.481722,0.983737,0.723119,0.0478582,0.275694,0.698618,0.875651,0.404096,0.00350571,0.682803,0.672658,0.90598,0.45942,0.909674,0.894375,0.262443,0.0698782,0.509619,0.249348,0.624748,0.989235,0.0588405,0.0395435,0.830928,0.868984,0.905931,0.286885,0.366816,0.601012,0.091778,0.887703,0.758473,0.162761,0.800322,0.529739,0.701706,0.963162,0.918327,0.397946,0.938162,0.463979,0.413411,0.480716,0.976464,0.650119,0.426179,0.269043,0.226512,0.563902,0.943198,0.611047,0.346922,0.587145,0.63968,0.299419,0.992187,0.865435,0.914393,0.235878,0.49607,0.710295,0.198188,0.518727,0.0372516,0.442606,0.100618,0.171214,0.61106,0.728609,0.12941,0.729477,0.456283,0.540033,0.991159,0.586662,0.186611,0.398945,0.240837,0.560679,0.70437,0.486839,0.367475,0.487145,0.403265,0.882533,0.808905,0.0373722,0.921754,0.650238,0.295398,0.769173,0.250047,0.844129,0.29594,0.65564,0.626216,0.250156,0.17736,0.37069,0.694591,0.106421,0.601362,0.949716,0.521361,0.931411,0.166175,0.961947,0.524788,0.346829,0.313722,0.657067,0.120916,0.395639,0.313561,0.0860388,0.460241,0.981666,0.780211,0.270907,0.219015,0.226112,0.794926,0.468851,0.596368,0.735572,0.54264,0.494874,0.157591,0.535944,0.124132,0.989641,0.0488698,0.141307,0.534562,0.473914,0.0580834,0.221023,0.595953,0.109549,0.352,0.22522,0.710836,0.171835,0.63321,0.256596,0.61441,0.554864,0.0761816,0.931101,0.752261,0.805953,0.25063,0.47205,0.839218,0.811611,0.376339,0.279363,0.302987,0.855129,0.230764,0.581047,0.626098,0.674123,0.340146,0.893378,0.405528,0.994319,0.287286,0.757356,0.636544,0.469471,0.894742,0.29731,0.759693,0.40297,0.549722,0.863553,0.867688,0.452757,0.143284,0.974341,0.532003,0.455488,0.267191,0.90828,0.575383,0.65021,0.482007,0.20108,0.985697,0.567823,0.657741,0.945251,0.264012,0.805174,0.774772,0.685153,0.129325,0.407751,0.547156,0.581595,0.388912,0.145328,0.978794,0.143131,0.366181,0.878079,0.345866,0.26649,0.0871687,0.446341,0.832249,0.293644,0.808027,0.90447,0.708025,0.816073,0.416529,0.73439,0.786255,0.249017,0.610129,0.29024,0.523343,0.019976,0.5874,0.901719,0.406914,0.274528,0.404773,0.0404654,0.574837,0.117791,0.0558695,0.361863,0.889275,0.455404,0.306289,0.296065,0.660316,0.353153,0.0343874,0.327237,0.397562,0.447762,0.572309,0.261543,0.0170803,0.967046,0.433841,0.563623,0.481621,0.2311,0.213044,0.859555,0.974796,0.281924,0.226511,0.776518,0.974927,0.811383,0.885152,0.796748,0.771092,0.330395,0.251739,0.466753,0.935748,0.713789,0.50878,0.22764,0.716594,0.161644,0.556167,0.0930322,0.122536,0.446662,0.804103,0.549031,0.5513,0.490625,0.75029,0.806273,0.254195,0.203323,0.978971,0.420409,0.343089,0.397606,0.831356,0.720549,0.467978,0.520151,0.524191,0.53936,0.396006,0.825847,0.469749,0.614567,0.0928584,0.671613,0.195543,0.303525,0.694627,0.485884,0.555879,0.393821,0.758135,0.295817,0.397899,0.155625,0.58153,0.942659,0.257879,0.559867,0.00710136,0.708637,0.515615,0.0597034,0.387387,0.0575286,0.659367,0.922551,0.616494,0.396501,0.96153,0.507421,0.360722,0.548025,0.794595,0.00680089,0.144058,0.373329,0.989197,0.260929,0.276333,0.430409,0.383,0.465603,0.927558,0.564055,0.603416,0.783503,0.975143,0.41995,0.824995,0.913798,0.65164,0.112069,0.134492,0.143146,0.0528098,0.0577094,0.448664,0.898314,0.0154957,0.882258,0.763361,0.21586,0.485052,0.0517966,0.108997,0.605524,0.113206,0.22287,0.508501,0.864139,0.729388,0.912236,0.449999,0.663606,0.867389,0.208021,0.184663,0.00943369,0.300147,0.879212,0.990207,0.116525,0.677372,0.643191,0.0670003,0.303036,0.892341,0.105744,0.0428036,0.681458,0.630218,0.530332,0.0155879,0.160395,0.838248,0.368716,0.717187,0.251855,0.684975,0.0889384,0.229831,0.282924,0.737566,0.334485,0.218668,0.395068,0.0999515,0.454434,0.960115,0.175531,0.276965,0.132887,0.321693,0.516759,0.157373,0.664858,0.42934,0.0801818,0.238158,0.299368,0.43855,0.420849,0.469218,0.546181,0.0466861,0.253223,0.220079,0.693098,0.108107,0.257446,0.0642661,0.127821,0.428389,0.885301,0.448097,0.374749,0.42987,0.781642,0.434502,0.228394,0.434059,0.380919,0.533343,0.882006,0.414299,0.143854,0.123766,0.913448,0.906326,0.568197,0.594204,0.517473,0.0997332,0.323054,0.702722,0.359153,0.344936,0.546522,0.908628,0.284066,0.994768,0.476959,0.604864,0.129034,0.429096,0.881777,0.388238,0.420883,0.917986,0.498788,0.561112,0.421952,0.638599,0.829925,0.460379,0.719849,0.255498,0.745573,0.749758,0.00468796,0.258151,0.0910487,0.103566,0.437894,0.0715751,0.707901,0.892342,0.256208,0.503515,0.486962,0.947793,0.534035,0.863857,0.582158,0.181686,0.614649,0.223203,0.592533,0.594617,0.447012,0.44561,0.986499,0.661336,0.369399,0.601504,0.908553,0.547666,0.859779,0.226062,0.356166,0.771419,0.530253,0.799144,0.00318527,0.0940543,0.710424,0.236644,0.412079,0.159354,0.186091,0.547602,0.724957,0.651736,0.780221,0.545001,0.516986,0.20603,0.834749,0.948047,0.300281,0.529529,0.471934,0.812356,0.81143,0.686932,0.912582,0.259908,0.804722,0.959133,0.862435,0.999741,0.51985,0.214554,0.842355,0.683534,0.196847,0.936293,0.117499,0.92069,0.265269,0.797835,0.132856,0.127539,0.872236,0.954696,0.563857,0.474717,0.511392,0.478385,0.818987,0.451284,0.075891,0.0146352,0.26646,0.0309115,0.192868,0.145234,0.487047,0.261225,0.578453,0.471834,0.555123,0.961613,0.514802,0.0794321,0.786487,0.497583,0.423899,0.397282,0.888499,0.724364,0.872001,0.156331,0.034389,0.0410764,0.835131,0.932921,0.914087,0.214544,0.00304216,0.327931,0.167326,0.0806664,0.506169,0.609392,0.828109,0.110892,0.581591,0.0156478,0.629461,0.230528,0.78404,0.719048,0.0925659,0.907482,0.606574,0.497864,0.66717,0.605816,0.400429,0.703922,0.102182,0.649887,0.329202,0.299531,0.947077,0.887977,0.516721,0.910347,0.830381,0.495966,0.692325,0.747155,0.969993,0.529566,0.342459,0.162524,0.473546,0.676897,0.955868,0.0900216,0.9833,0.959496,0.354582,0.796916,0.39937,0.841918,0.983995,0.133343,0.793906,0.584661,0.940519,0.180737,0.376794,0.82065,0.479332,0.283472,0.620876,0.446083,0.844219,0.774348,0.245362,0.521203,0.28417,0.00273931,0.570417,0.77383,0.587339,0.999085,0.176153,0.337319,0.478956,0.269737,0.16762,0.0674419,0.59785,0.282213,0.985413,0.921046,0.958879,0.00505823,0.745782,0.0139602,0.401562,0.591475,0.182949,0.502513,0.338944,0.656676,0.610712,0.652828,0.797327,0.501654,0.679037,0.127646,0.298886,0.829291,0.646187,0.545872,0.186826,0.493707,0.414092,0.0619681,0.343286,0.732606,0.898732,0.797817,0.935854,0.943956,0.495124,0.890946,0.221038,0.780221,0.202609,0.918444,0.361847,0.105173,0.832267,0.809184,0.912706,0.0777786,0.827361,0.990486,0.639231,0.622457,0.287461,0.632343,0.997469,0.781762,0.0105611,0.289644,0.962604,0.96631,0.40276,0.0319282,0.526438,0.0435264,0.747059,0.614105,0.877089,0.518576,0.34496,0.942252,0.347326,0.18552,0.726326,0.393628,0.76963,0.663594,0.685235,0.260016,0.0410512,0.0370227,0.544143,0.103473,0.395858,0.10929,0.741109,0.662081,0.301957,0.756583,0.854434,0.6886,0.353401,0.32348,0.241545,0.626159,0.887365,0.325052,0.110994,0.746319,0.0451784,0.885964,0.052404,0.529785,0.46769,0.161725,0.387172,0.773178,0.796529,0.317576,0.573719,0.429962,0.582299,0.368448,0.849349,0.82707,0.0093509,0.171457,0.315212,0.0466587,0.959301,0.971332,0.184742,0.197027,0.960996,0.294302,0.540681,0.82603,0.174984,0.642623,0.0822126,0.24401,0.694554,0.277962,0.5107,0.449125,0.517203,0.913478,0.00434929,0.144603,0.260304,0.29011,0.890097,0.224295,0.0839331,0.284757,0.169107,0.988485,0.077674,0.132227,0.815145,0.638187,0.367667,0.737489,0.759299,0.403659,0.524456,0.807316,0.839895,0.942832,0.31071,0.437528,0.185382,0.929814,0.589145,0.307022,0.567886,0.194183,0.528445,0.181634,0.309503,0.234325,0.777788,0.785485,0.64613,0.503536,0.795317,0.933025,0.0512846,0.0894632,0.00712091,0.243827,0.174495,0.116042,0.881357,0.181555,0.851922,0.619734,0.0641761,0.256476,0.265729,0.22016,0.788149,0.112712,0.932888,0.164126,0.153648,0.228299,0.407592,0.628819,0.148524,0.61162,0.297597,0.606714,0.232438,0.544464,0.393712,0.745794,0.585362,0.971528,0.298294,0.00757307,0.833645,0.300226,0.750074,0.385925,0.985181,0.0984355,0.656451,0.35383,0.646348,0.843346,0.212579,0.984637,0.574313,0.0954072,0.879059,0.307699,0.292679,0.0743127,0.0180624,0.0157009,0.0169839,0.233707,0.421005,0.204763,0.990914,0.392147,0.476543,0.8882,0.0732462,0.435358,0.739077,0.63909,0.072233,0.650181,0.797978,0.235614,0.646156,0.329249,0.18374,0.225832,0.188994,0.999654,0.0790772,0.0462834,0.538404,0.966961,0.963291,0.146988,0.818638,0.78682,0.758948,0.558975,0.988449,0.17593,0.374638,0.755962,0.0504558,0.720592,0.719857,0.856939,0.081063,0.560005,0.741549,0.0387686,0.434997,0.32798,0.0409892,0.44271,0.527117,0.332529,0.730163,0.589356,0.518312,0.149742,0.486032,0.663185,0.348193,0.817149,0.962941,0.407592,0.571558,0.0302997,0.292338,0.814478,0.193987,0.0581138,0.37704,0.391762,0.0229101,0.839632,0.607832,|0.65869,0.175645,0.295194,0.887195,0.992706,0.216738,0.779192,0.837486,0.288908,0.305871,0.331742,0.414582,0.275051,0.0270044,0.161538,0.867929,0.736725,0.704366,0.293632,0.218604,0.553838,0.153277,0.964135,0.649732,0.466571,0.545712,0.747308,0.483794,0.312814,0.654083,0.791868,0.323059,0.204575,0.946557,0.719603,0.898279,0.443556,0.121802,0.459106,0.940629,0.836393,0.404518,0.0754609,0.225844,0.669924,0.936421,0.721219,0.915415,0.115836,0.6832,0.216754,0.504522,0.664512,0.392106,0.977966,0.681445,0.784801,0.00286496,0.690039,0.529451,0.618703,0.22906,0.580792,0.51285,0.489824,0.588447,0.0850996,0.224936,0.234166,0.328388,0.700607,0.726029,0.104857,0.570325,0.15959,0.715128,0.611248,0.336162,0.962574,0.810632,0.0721942,0.11393,0.590708,0.696022,0.711621,0.35662,0.645426,0.822863,0.4679,0.217233,0.959504,0.97005,0.434973,0.799061,0.996328,0.569523,0.62866,0.146026,0.199979,0.0529163,0.645499,0.101955,0.997849,0.693172,0.408155,0.81007,0.636077,0.341752,0.0227104,0.444276,0.254946,0.185871,0.479871,0.728584,0.893965,0.280855,0.0152964,0.0218198,0.806355,0.0584328,0.672907,0.0243949,0.921258,0.19324,0.0234255,0.0620126,0.917837,0.563352,0.165845,0.284378,0.623207,0.803979,0.603592,0.590158,0.541871,0.590878,0.729334,0.487917,0.474151,0.341035,0.0968908,0.527225,0.350639,0.602176,0.0547962,0.0242773,0.812033,0.300978,0.0554133,0.900595,0.268522,0.423368,0.3944,0.675731,0.871468,0.440971,0.756224,0.818954,0.0973783,0.113974,0.0916971,0.516537,0.57796,0.0184733,0.31118,0.396759,0.601196,0.493478,0.312655,0.558342,0.660631,0.810755,0.799088,0.702842,0.638657,0.618394,0.739089,0.75319,0.909918,0.433961,0.326759,0.609556,0.0213244,0.81651,0.838873,0.122319,0.22728,0.948923,0.168296,0.944968,0.256379,0.357695,0.125594,0.300235,0.0724056,0.815872,0.250955,0.0857224,0.314658,0.545987,0.466877,0.455414,0.317022,0.311928,0.990535,0.256051,0.788563,0.891106,0.14132,0.104196,0.733813,0.35878,0.307913,0.157937,0.785498,0.674697,0.737354,0.745553,0.716137,0.574756,0.728153,0.437913,0.664449,0.681605,0.640733,0.484847,0.465269,0.0969186,0.319076,0.634798,0.571985,0.40154,0.324893,0.682225,0.413175,0.710401,0.837581,0.226291,0.579886,0.178818,0.468078,0.709661,0.863205,0.86125,0.865109,0.394678,0.954926,0.294069,0.951143,0.414981,0.405222,0.81449,0.681686,0.347032,0.352251,0.662226,0.0421322,0.242654,0.83573,0.66521,0.2695,0.512891,0.692082,0.831838,0.686541,0.0320097,0.214802,0.489439,0.266416,0.918499,0.0936908,0.459837,0.020367,0.581771,0.434124,0.324566,0.280097,0.383178,0.413831,0.983859,0.341349,0.413836,0.359593,0.0665511,0.0601125,0.370887,0.846422,0.281622,0.292833,0.42258,0.246387,0.281176,0.177853,0.0426469,0.700864,0.365213,0.373102,0.658925,0.0111985,0.797257,0.035808,0.284607,0.679149,0.356358,0.637756,0.811874,0.624148,0.706231,0.38736,0.996691,0.23039,0.0432916,0.45804,0.302382,0.0848513,0.634935,0.212047,0.679978,0.775234,0.815056,0.860613,0.951752,0.734958,0.00540715,0.314457,0.172772,0.997481,0.0401518,0.193537,0.482223,0.46791,0.1827,0.128961,0.285597,0.946498,0.164784,0.975819,0.0438504,0.0431023,0.384405,0.395631,0.0330946,0.446949,0.306087,0.672094,0.19408,0.340365,0.835117,0.131015,0.59071,0.962517,0.350625,0.452946,0.967151,0.293337,0.593686,0.834086,0.0650626,0.0581661,0.755275,0.244511,0.737909,0.105431,0.761725,0.784686,0.109709,0.5765,0.259323,0.242838,0.550866,0.281643,0.515691,0.658577,0.202724,0.38297,0.3998,0.0989903,0.893202,0.510726,0.471015,0.994218,0.684115,0.729921,0.689767,1.40667e-05,0.859874,0.304432,0.524396,0.722854,0.366222,0.826994,0.26731,0.0223632,0.43853,0.902316,0.560122,0.794453,0.319608,0.0165064,0.881116,0.0818314,0.0789576,0.849721,0.292417,0.233497,0.24159,0.0516404,0.184335,0.880965,0.588051,0.37035,0.3051,0.941152,0.877908,0.82088,0.0717376,0.360254,0.585521,0.709636,0.762954,0.935937,0.770999,0.597106,0.0874824,0.350574,0.520737,0.596037,0.705011,0.364928,0.0612625,0.326424,0.465396,0.938712,0.022205,0.328489,0.498184,0.526866,0.835377,0.625618,0.443569,0.0870327,0.83326,0.840909,0.853848,0.511209,0.107173,0.52018,0.091821,0.538792,0.283112,0.238908,0.327495,0.0929633,0.53376,0.782369,0.0750061,0.881821,0.370713,0.791724,0.44511,0.0733641,0.801635,0.68848,0.0564272,0.491086,0.926765,0.986101,0.0679422,0.393472,0.766628,0.750306,0.836447,0.396509,0.920333,0.687302,0.713825,0.0224714,0.144415,0.787788,0.611697,0.510116,0.564012,0.503887,0.681957,0.123756,0.473697,0.236188,0.183597,0.813176,0.0323076,0.23227,0.235249,0.216073,0.0541422,0.842722,0.884884,0.0785117,0.0934135,0.419495,0.548925,0.769997,0.615055,0.684029,0.603436,0.962169,0.326359,0.929905,0.0909774,0.836519,0.664588,0.595233,0.960255,0.971542,0.290034,0.632584,0.727463,0.341585,0.558602,0.77168,0.136441,0.297848,0.319591,0.914594,0.579735,0.72945,0.0937557,0.757354,0.177997,0.43824,0.521836,0.845136,0.00601387,0.411062,0.745264,0.440526,0.533102,0.183145,0.632381,0.0448389,0.200829,0.799736,0.00383931,0.965256,0.765432,0.707408,0.237092,0.992151,0.104659,0.167143,0.985668,0.385424,0.673901,0.0683767,0.0992472,0.16508,0.0762523,0.802104,0.883381,0.271353,0.878772,0.668318,0.495411,0.960658,0.245857,0.384689,0.0142604,0.435157,0.466834,0.242501,0.984572,0.0437616,0.37935,0.213141,0.724901,0.151376,0.603571,0.379336,0.80815,0.977798,0.449279,0.831073,0.147917,0.939604,0.692451,0.607881,0.930313,0.734145,0.328555,0.261475,0.778708,0.839786,0.639851,0.63599,0.515279,0.910011,0.938195,0.616584,0.380496,0.755455,0.0382078,0.296786,0.466542,0.317587,0.565701,0.896027,0.0258408,0.602199,0.132502,0.200029,0.367026,0.261939,0.169047,0.0185698,0.976131,0.201498,0.567921,0.538224,0.260842,0.0441445,0.404909,0.0602911,0.0402662,0.644107,0.11781,0.0735935,0.371551,0.152184,0.306196,0.838718,0.993995,0.0762564,0.51065,0.98832,0.767833,0.160134,0.511005,0.470134,0.82164,0.0497055,0.49091,0.606732,0.611716,0.597045,0.311453,0.274717,0.775998,0.297297,0.540591,0.573966,0.657971,0.22188,0.0397949,0.297099,0.293635,0.96118,0.0162542,0.918657,0.600188,0.91425,0.277302,0.995824,0.438346,0.0414495,0.279533,0.551549,0.511263,0.773976,0.386707,0.919075,0.884128,0.0871715,0.171326,0.698127,0.37217,0.905248,0.069066,0.944178,0.686336,0.709332,0.784956,0.488566,0.594687,0.103253,0.107476,0.728303,0.28755,0.72078,0.350861,0.098998,0.486849,0.6086,0.203153,0.246726,0.747511,0.136612,0.34064,0.47845,0.545538,0.143663,0.854074,0.421333,0.552658,0.932637,0.515085,0.722749,0.642699,0.652554,0.140467,0.672617,0.105621,0.5642,0.959283,0.280846,0.790396,0.0966696,0.997012,0.932596,0.477916,0.848889,0.0710292,0.518308,0.843644,0.0413204,0.195333,0.720439,0.888881,0.084186,0.342128,0.105238,0.579648,0.446836,0.434546,0.227232,0.743895,0.537438,0.467967,0.976069,0.077911,0.987302,0.19391,0.0136586,0.568368,0.581429,0.414683,0.45064,0.883597,0.124397,0.150309,0.877041,0.851425,0.180001,0.703703,0.827594,0.938011,0.0778924,0.451746,0.192252,0.162813,0.811959,0.948804,0.134648,0.802463,0.492121,0.191934,0.812983,0.503964,0.411518,0.0689072,0.0145527,0.20042,0.542976,0.267155,0.163438,0.152335,0.214264,0.0355452,0.47558,0.594433,0.200681,0.240619,0.909916,0.841462,0.898642,0.11456,0.580399,0.513834,0.0209102,0.584728,0.942628,0.426426,0.327518,0.510438,0.535908,0.232707,0.260745,0.466165,0.501676,0.622717,0.628959,0.101081,0.46571,0.374297,0.257198,0.10034,0.735859,0.787403,0.530287,0.348515,0.504137,0.498272,0.455994,0.490018,0.332868,0.838392,0.0430766,0.498786,0.514534,0.313716,0.546103,0.404275,0.218323,0.571872,0.506794,0.990918,0.518466,0.391911,0.252206,0.267317,0.570436,0.766967,0.679517,0.917338,0.852674,0.566604,0.616686,0.354868,0.56991,0.378877,0.745024,0.368419,0.70705,0.985296,0.312126,0.553967,0.818619,0.656774,0.730405,0.269296,0.656518,0.290095,0.425322,0.768887,0.892966,0.899179,0.00855637,0.800604,0.335783,0.431186,0.587541,0.600164,0.475208,0.681402,0.226057,0.247095,0.43857,0.367655,0.507093,0.896356,0.460926,0.786977,0.768561,0.137148,0.400415,0.764016,0.895046,0.433774,0.59092,0.168234,0.678964,0.59414,0.974363,0.350052,0.216326,0.696103,0.319619,0.453146,0.0933706,0.120404,0.953855,0.70799,0.892956,0.991758,0.0636905,0.74336,0.901786,0.777812,0.734327,0.266156,0.297326,0.935903,0.0108058,0.112599,0.151905,0.386333,0.886591,0.353414,0.0864266,0.667715,0.760335,0.704732,0.396237,0.118163,0.227768,0.0988725,0.22263,0.862463,0.109279,0.0525502,0.448246,0.252225,0.898488,0.609144,0.943643,0.857853,0.760147,0.861108,0.55065,0.578897,0.819983,0.762511,0.693045,0.0703251,0.986257,0.735299,0.882422,0.758111,0.346303,0.0955985,0.775327,0.774595,0.757159,0.579271,0.439292,0.409921,0.648336,0.35528,0.185941,0.155221,0.159183,0.0132819,0.899526,0.451495,0.0200077,0.239356,0.601314,0.489144,0.550597,0.127655,0.754957,0.621533,0.60398,0.390102,0.529792,0.880917,0.0318702,0.688703,0.378189,0.6923,0.727905,0.674821,0.327818,0.0574558,0.662207,0.828796,0.296226,0.543146,0.855886,0.441956,0.812091,0.622649,0.45757,0.0350167,0.307674,0.708712,0.340907,0.338593,0.451301,0.688459,0.178859,0.560356,0.543148,0.931337,0.997073,0.80609,0.414683,0.469942,0.470603,0.883597,0.85159,0.904098,|0.602355,0.132772,0.605763,0.0700204,0.678369,0.0138267,0.037472,0.464269,0.283865,0.309716,0.268981,0.43786,0.198041,0.358949,0.0913057,0.468568,0.488414,0.691056,0.872378,0.651068,0.628485,0.527832,0.111548,0.647845,0.442818,0.623765,0.514035,0.628918,0.786334,0.177384,0.0821123,0.762207,0.762766,0.905136,0.182377,0.665246,0.500756,0.459707,0.329724,0.668502,0.678267,0.692957,0.662483,0.164455,0.45353,0.979358,0.140348,0.0587782,0.946867,0.649331,0.0911034,0.675964,0.910854,0.885066,0.707531,0.368642,0.733564,0.197966,0.79539,0.483618,0.382455,0.696359,0.552338,0.746816,0.479108,0.241281,0.396456,0.738962,0.12512,0.36689,0.19536,0.950202,0.748369,0.0399634,0.882207,0.139326,0.0695029,0.497434,0.593395,0.0180088,0.830128,0.859883,0.281873,0.595221,0.71023,0.179129,0.75637,0.48435,0.435619,0.684762,0.483249,0.427308,0.618581,0.215466,0.941531,0.312091,0.548225,0.713698,0.771374,0.259022,0.545729,0.449436,0.729583,0.335151,0.866256,0.731848,0.872134,0.693987,0.987088,0.632479,0.263191,0.827832,0.482813,0.914169,0.648686,0.539194,0.524768,0.208012,0.521677,0.67989,0.738447,0.455467,0.816506,0.0188287,0.672911,0.405504,0.87957,0.687068,0.650494,0.913291,0.922339,0.206679,0.59032,0.911805,0.141927,0.0129687,0.133528,0.276384,0.856099,0.604393,0.57121,0.05801,0.638039,0.0230007,0.332241,0.627617,0.935682,0.0303366,0.577658,0.0919417,0.791769,0.127802,0.937503,0.342396,0.995547,0.244906,0.662865,0.10481,0.694543,0.213606,0.882287,0.636315,0.45629,0.730008,0.545612,0.0124263,0.725851,0.804134,0.283283,0.688148,0.161847,0.366383,0.240615,0.448806,0.0318363,0.28297,0.765178,0.483585,0.969622,0.743101,0.273162,0.300442,0.982626,0.712692,0.636138,0.947913,0.699294,0.700646,0.117276,0.994365,0.560486,0.0741261,0.650782,0.729057,0.879347,0.371651,0.920674,0.539445,0.0574353,0.478538,0.57866,0.103515,0.373728,0.277396,0.727292,0.752345,0.0725297,0.73586,0.397086,0.795712,0.416229,0.578464,0.869597,0.655262,0.923619,0.209139,0.960915,0.139297,0.189154,0.379222,0.709027,0.0358344,0.727706,0.119388,0.676925,0.334103,0.783542,0.413749,0.184188,0.453814,0.308537,0.0992222,0.675276,0.993934,0.375226,0.328036,0.465607,0.592538,0.751975,0.774748,0.61166,0.695509,0.434416,0.140872,0.688219,0.234791,0.0355877,0.00731337,0.429691,0.405023,0.0904089,0.518379,0.964426,0.351528,0.660304,0.816746,0.437894,0.360574,0.847299,0.134476,0.752913,0.212841,0.0211844,0.939794,0.000844538,0.736153,0.852946,0.766776,0.60808,0.797052,0.379683,0.898952,0.943197,0.393546,0.77684,0.812333,0.733241,0.209495,0.914911,0.825949,0.22348,0.54957,0.60731,0.877597,0.882298,0.189165,0.734485,0.0664764,0.241109,0.248281,0.651661,0.079903,0.440896,0.413004,0.503756,0.125538,0.709887,0.100802,0.805036,0.145827,0.440875,0.17962,0.948176,0.918651,0.772154,0.219597,0.693139,0.818727,0.715479,0.612067,0.746653,0.0693091,0.723211,0.133127,0.911399,0.0861995,0.898351,0.318167,0.530465,0.325203,0.953879,0.16289,0.913797,0.585812,0.237374,0.428389,0.830168,0.623189,0.3831,0.993919,0.47326,0.181026,0.257779,0.352634,0.0821706,0.0991862,0.543982,0.835126,0.13665,0.109289,0.447503,0.982832,0.748111,0.491701,0.657967,0.825643,0.609708,0.256271,0.664952,0.397694,0.376889,0.388756,0.533627,0.613736,0.755944,0.387474,0.991936,0.584397,0.765797,0.853533,0.259607,0.358676,0.317152,0.34287,0.938283,0.528737,0.747532,0.0888082,0.291181,0.615607,0.302681,0.0562413,0.490616,0.449701,0.396906,0.058609,0.406017,0.861676,0.380133,0.995622,0.224692,0.72248,0.669102,0.836789,0.840248,0.180444,0.419827,0.11551,0.174335,0.382083,0.386617,0.509216,0.279451,0.734733,0.100976,0.627257,0.158648,0.15987,0.258897,0.0862871,0.0309546,0.458064,0.759678,0.500934,0.61257,0.861285,0.374993,0.474123,0.0467759,0.474837,0.656233,0.397179,0.494663,0.330672,0.954547,0.517965,0.657583,0.568991,0.554941,0.20041,0.280868,0.835318,0.0606343,0.934151,0.123134,0.43988,0.533294,0.482883,0.417032,0.826586,0.886647,0.598373,0.140288,0.660875,0.648939,0.00360894,0.728653,0.835904,0.235487,0.212601,0.362987,0.336036,0.712215,0.730649,0.648499,0.630197,0.820968,0.655907,0.141553,0.446702,0.354561,0.666677,0.410085,0.186588,0.54907,0.00103354,0.241385,0.0190651,0.529115,0.222474,0.206801,0.301757,0.997635,0.465354,0.350184,0.732404,0.626608,0.538308,0.801312,0.80989,0.668557,0.208687,0.912911,0.125257,0.594194,0.530946,0.837389,0.271612,0.0287385,0.823456,0.428018,0.891735,0.938605,0.138252,0.0140209,0.148882,0.886327,0.346352,0.728507,0.585006,0.779203,0.294379,0.209823,0.0442364,0.026975,0.130255,0.28678,0.788861,0.942983,0.0213631,0.305933,0.738301,0.717536,0.753953,0.67873,0.375676,0.116685,0.993935,0.399617,0.764456,0.50872,0.843991,0.409539,0.370133,0.194025,0.859124,0.662083,0.491002,0.140029,0.349025,0.350295,0.513928,0.66143,0.236576,0.315787,0.792432,0.164958,0.265516,0.7715,0.966396,0.332192,0.820657,0.236241,0.0151891,0.514997,0.627125,0.734728,0.967527,0.3563,0.0297609,0.374991,0.5888,0.138396,0.259977,0.124332,0.647584,0.960473,0.531043,0.363633,0.681713,0.966304,0.810069,0.743317,0.649641,0.607463,0.333531,0.776917,0.955199,0.643496,0.989004,0.193769,0.553801,0.52647,0.202413,0.42894,0.224247,0.217647,0.503198,0.490873,0.830306,0.744177,0.424591,0.343617,0.890874,0.561762,0.730495,0.381844,0.329752,0.715668,0.427599,0.977855,0.126609,0.341068,0.664017,0.204189,0.875154,0.693499,0.553805,0.886893,0.46511,0.249691,0.933547,0.691562,0.540516,0.296152,0.370317,0.200784,0.830077,0.699951,0.18121,0.378319,0.690946,0.247005,0.121894,0.432476,0.090322,0.944577,0.184929,0.0619993,0.427226,0.160031,0.640133,0.0437166,0.260937,0.390665,0.58744,0.426353,0.535376,0.562637,0.210055,0.751744,0.785676,0.587908,0.457067,0.761606,0.251795,0.795983,0.283993,0.876731,0.226839,0.356964,0.348971,0.595344,0.590279,0.633549,0.528529,0.827811,0.804832,0.0661865,0.314219,0.535673,0.499817,0.768105,0.488026,0.956244,0.157946,0.655142,0.353427,0.750955,0.778587,0.887205,0.519584,0.301265,0.374473,0.148323,0.29093,0.609289,0.476673,0.988561,0.386378,0.266116,0.331924,0.963001,0.691373,0.974401,0.832249,0.828891,0.688446,0.3756,0.0726125,0.117864,0.0425605,0.548594,0.235115,0.704726,0.144004,0.351566,0.551191,0.262523,0.581272,0.354727,0.278826,0.670645,0.597199,0.573872,0.42638,0.772629,0.976276,3.58224e-05,0.864349,0.723897,0.576393,0.601651,0.772818,0.898725,0.0433848,0.374918,0.95135,0.344294,0.0072456,0.18819,0.0265617,0.952264,0.949736,0.804415,0.230961,0.856213,0.179966,0.221635,0.278578,0.588616,0.270668,0.204341,0.1075,0.439286,0.208985,0.506055,0.616433,0.769491,0.411185,0.244552,0.88661,0.673823,0.0500448,0.625263,0.599316,0.443957,0.538992,0.420076,0.982479,0.54142,0.612998,0.658727,0.734849,0.256822,0.24336,0.972188,0.168189,0.98335,0.699144,0.982793,0.895236,0.399805,0.287527,0.248958,0.0516532,0.70411,0.915,0.598361,0.736199,0.547048,0.263828,0.514554,0.212358,0.208135,0.0947307,0.432795,0.44365,0.0485111,0.020169,0.284845,0.959498,0.104545,0.419379,0.939427,0.00589162,0.19817,0.247176,0.115391,0.568028,0.174822,0.605436,0.384733,0.183903,0.041005,0.703378,0.758689,0.121342,0.646754,0.224795,0.0516143,0.176594,0.332651,0.576127,0.585107,0.314043,0.359586,0.258317,0.856761,0.749756,0.609525,0.92583,0.0116646,0.227986,0.758971,0.91849,0.881054,0.88173,0.304955,0.130088,0.075305,0.700092,0.673424,0.915847,0.319876,0.0831498,0.108755,0.122095,0.591316,0.46242,0.606014,0.516556,0.556372,0.860085,0.580871,0.214629,0.152717,0.102262,0.882727,0.645315,0.146989,0.232871,0.36098,0.902379,0.836689,0.631268,0.814968,0.196631,0.358101,0.888886,0.374277,0.475381,0.824806,0.535906,0.936307,0.711457,0.745451,0.288588,0.503771,0.575935,0.291267,0.571433,0.0564582,0.534815,0.985155,0.52305,0.554585,0.318568,0.562628,0.367506,0.00307435,0.333057,0.328925,0.614863,0.22978,0.744418,0.173456,0.436802,0.743616,0.418978,0.160986,0.347238,0.357273,0.561624,0.251117,0.0818658,0.93056,0.788383,0.342775,0.455464,0.0485416,0.854139,0.337695,0.00979006,0.204529,0.0155571,0.401674,0.614549,0.970724,0.28681,0.0203749,0.97995,0.373099,0.352982,0.0185781,0.444183,0.76968,0.459621,0.598895,0.71769,0.133076,0.0580887,0.00943005,0.0700073,0.760981,0.118357,0.0572588,0.627879,0.352334,0.85585,0.724892,0.783817,0.661734,0.795727,0.289279,0.453837,0.368206,0.988408,0.632965,0.477289,0.627111,0.13485,0.289984,0.796125,0.641037,0.578153,0.926782,0.526122,0.72589,0.949147,0.994588,0.499171,0.309884,0.955978,0.567713,0.979018,0.791325,0.22165,0.894476,0.670841,0.172035,0.456825,0.103806,0.896586,0.136549,0.246559,0.0464004,0.638369,0.073876,0.0157534,0.667851,0.171656,0.0178992,0.904898,0.706374,0.399473,0.684123,0.0996854,0.682837,0.00452846,0.175713,0.861539,0.304865,0.523156,0.972607,0.244843,0.419008,0.37896,0.867125,0.953112,0.778234,0.0768269,0.130569,0.450879,0.725619,0.855479,0.76473,0.518219,0.258718,0.318874,0.289118,0.731464,0.0775458,0.407668,0.639895,0.951964,0.553733,0.831159,0.874268,0.717715,0.349843,0.537655,0.541982,0.318955,0.588025,0.510952,0.246603,0.5789,0.485514,0.534451,0.536377,0.34158,0.128618,0.863477,0.466141,0.801469,0.466359,0.842323,0.323059,0.694088,|0.498374,0.00339854,0.469589,0.376624,0.474669,0.0663851,0.630233,0.513323,0.212506,0.811856,0.96425,0.963762,0.168893,0.78752,0.420029,0.545402,0.454386,0.287285,0.143988,0.147296,0.078751,0.913027,0.41176,0.703538,0.0472075,0.802841,0.426466,0.813255,0.649975,0.604413,0.501868,0.239717,0.36186,0.648404,0.945016,0.404551,0.466939,0.513149,0.823903,0.219507,0.438847,0.798239,0.853043,0.252807,0.306875,0.496459,0.795213,0.316244,0.572177,0.864856,0.52326,0.703321,0.18181,0.897163,0.353642,0.660577,0.641,0.122761,0.35995,0.363243,0.569673,0.836268,0.504725,0.832426,0.128208,0.721817,0.79293,0.140552,0.552926,0.415587,0.712732,0.772372,0.637883,0.141391,0.909809,0.413613,0.98483,0.0758409,0.193302,0.67701,0.915556,0.597788,0.834689,0.69777,0.327933,0.0604208,0.817356,0.118524,0.784818,0.211506,0.28358,0.219063,0.385982,0.927664,0.480052,0.296858,0.995953,0.265159,0.332025,0.306661,0.0667597,0.131688,0.105083,0.130747,0.011186,0.52257,0.275659,0.750454,0.915738,0.289911,0.258971,0.836039,0.488594,0.516281,0.866648,0.800738,0.713235,0.548648,0.96523,0.522043,0.456133,0.63531,0.742563,0.0367659,0.256615,0.20759,0.378961,0.358079,0.815897,0.0639686,0.353736,0.659191,0.549053,0.17933,0.101314,0.216643,0.794815,0.335416,0.494673,0.532228,0.193099,0.898148,0.343874,0.316944,0.37653,0.27685,0.416876,0.822096,0.801016,0.039194,0.273265,0.661613,0.983557,0.959755,0.390256,0.828501,0.54018,0.400821,0.649248,0.197927,0.496369,0.0774949,0.207983,0.645309,0.881296,0.314662,0.371816,0.660772,0.762991,0.27346,0.0581639,0.695563,0.688382,0.22732,0.319491,0.533823,0.726968,0.282508,0.631659,0.0037303,0.979562,0.383552,0.840403,0.370916,0.210882,0.00403482,0.194351,0.260526,0.713427,0.778543,0.432683,0.672967,0.227933,0.0927948,0.428784,0.0584564,0.430741,0.238221,0.687427,0.278205,0.181239,0.216569,0.602793,0.885025,0.271014,0.116662,0.40138,0.626499,0.525753,0.821125,0.00319386,0.760164,0.280132,0.264353,0.694835,0.0257765,0.575706,0.915258,0.94726,0.114829,0.00202101,0.240659,0.398378,0.41208,0.387461,0.719037,0.190643,0.394628,0.603756,0.08689,0.340938,0.277483,0.586993,0.842327,0.0659342,0.364079,0.115011,0.0964141,0.037937,0.461041,0.137316,0.32394,0.186718,0.221881,0.179692,0.351252,0.061086,0.324855,0.679596,0.230357,0.801065,0.822325,0.720407,0.213783,0.302981,0.789885,0.468929,0.457423,0.93527,0.800675,0.119673,0.455286,0.986563,0.931035,0.545245,0.461137,0.441248,0.991018,0.873144,0.716092,0.740058,0.770251,0.903984,0.277108,0.364776,0.83395,0.247556,0.773365,0.121481,0.77811,0.868366,0.937056,0.990219,0.725096,0.893696,0.315171,0.544197,0.309621,0.274499,0.797308,0.578639,0.682958,0.770402,0.371771,0.906846,0.610248,0.996157,0.942185,0.931271,0.288412,0.759677,0.0931336,0.0579194,0.251716,0.0661002,0.864663,0.664725,0.892781,0.996332,0.889956,0.581876,0.223415,0.609818,0.283794,0.287248,0.804476,0.0738197,0.914625,0.947962,0.0582165,0.880354,0.0404562,0.338254,0.830787,0.53307,0.661886,0.574711,0.884014,0.820379,0.738501,0.956558,0.179785,0.18808,0.620863,0.438945,0.02232,0.755916,0.583531,0.186259,0.829457,0.0642927,0.274143,0.35221,0.263488,0.760899,0.923272,0.764286,0.0774144,0.141121,0.374907,0.2289,0.292903,0.680611,0.215328,0.152797,0.0249525,0.300464,0.386822,0.817571,0.31674,0.824845,0.301731,0.380585,0.699442,0.676049,0.18119,0.491259,0.960898,0.599921,0.447922,0.547269,0.59491,0.502246,0.909254,0.295818,0.206916,0.999634,0.221999,0.449304,0.501221,0.687533,0.536243,0.481683,0.741327,0.58652,0.567433,0.48043,0.185128,0.531838,0.866136,0.314554,0.509326,0.317407,0.913055,0.861309,0.226556,0.418534,0.613507,0.934724,0.678282,0.442394,0.0140534,0.0194176,0.651839,0.0685253,0.948324,0.956956,0.0293343,0.862159,0.826162,0.841099,0.645332,0.705485,0.367119,0.72968,0.205292,0.975095,0.902904,0.0296763,0.307626,0.48441,0.112082,0.747865,0.244736,0.85495,0.441917,0.547291,0.316024,0.861177,0.718511,0.390205,0.341392,0.127693,0.353229,0.272303,0.302993,0.712615,0.338415,0.696334,0.734372,0.238007,0.853091,0.89941,0.281205,0.835396,0.841906,0.199473,0.120981,0.847353,0.370288,0.758138,0.210733,0.956147,0.61848,0.098479,0.924023,0.550022,0.817988,0.764431,0.619474,0.271083,0.0223617,0.831981,0.339445,0.667016,0.222908,0.897961,0.0699617,0.756075,0.165493,0.638181,0.187526,0.780883,0.912086,0.604604,0.979513,0.37595,0.581505,0.24801,0.222511,0.347855,0.500778,0.48681,0.705071,0.421711,0.470948,0.166577,0.866195,0.660176,0.742158,0.945537,0.635308,0.240454,0.925111,0.0195081,0.0612037,0.448679,0.122648,0.286791,0.70454,0.78284,0.346543,0.0904669,0.782406,0.346864,0.850419,0.862164,0.0388229,0.596756,0.562849,0.0569661,0.691947,0.982841,0.473314,0.00952107,0.121493,0.745526,0.725224,0.907605,0.258242,0.751354,0.534864,0.898488,0.747676,0.300821,0.340996,0.892199,0.214265,0.98503,0.0502939,0.889788,0.950237,0.920867,0.541968,0.909752,0.342176,0.138136,0.797545,0.287778,0.189255,0.349018,0.38042,0.223677,0.764663,0.573893,0.241656,0.467627,0.593632,0.00651181,0.176253,0.531141,0.068523,0.376563,0.470237,0.168188,0.196767,0.771918,0.187063,0.540555,0.876839,0.0428056,0.240729,0.47398,0.570244,0.43951,0.566114,0.507334,0.0532155,0.814195,0.132705,0.841025,0.50641,0.87111,0.730617,0.843466,0.356935,0.128694,0.210003,0.663264,0.651404,0.537288,0.37616,0.707546,0.778144,0.090028,0.27064,0.0790287,0.592564,0.285478,0.525331,0.457404,0.440426,0.467397,0.608838,0.716973,0.35671,0.771021,0.545178,0.955684,0.903792,0.925145,0.463352,0.101855,0.341251,0.557497,0.924907,0.632107,0.835314,0.93558,0.190461,0.368696,0.142307,0.826207,0.384762,0.403732,0.548626,0.914818,0.252324,0.998643,0.746101,0.609035,0.928377,0.645769,0.649997,0.956198,0.498105,0.321005,0.266589,0.124783,0.824382,0.847576,0.00681835,0.928876,0.981522,0.924303,0.872662,0.0144407,0.736139,0.633947,0.297936,0.646021,0.818808,0.29094,0.608494,0.116068,0.825223,0.226392,0.97803,0.713518,0.547071,0.531035,0.29202,0.507658,0.863309,0.525686,0.544101,0.0245615,0.102619,0.635056,0.555599,0.526661,0.402594,0.106805,0.748221,0.850356,0.209484,0.432566,0.871742,0.10087,0.153107,0.155086,0.043172,0.713724,0.713605,0.453359,0.221132,0.609772,0.906973,0.742017,0.194653,0.583074,0.697885,0.0173153,0.803755,0.583677,0.262969,0.161052,0.0326377,0.163134,0.871111,0.321985,0.536623,0.0356164,0.141529,0.214789,0.277071,0.382704,0.450896,0.19794,0.147989,0.2473,0.106303,0.284728,0.235115,0.620535,0.874294,0.0779683,0.0267821,0.783708,0.747212,0.327085,0.562124,0.721437,0.369766,0.658946,0.642679,0.980016,0.277474,0.719751,0.861887,0.621732,0.157705,0.0692108,0.505061,0.301495,0.552809,0.285417,0.0248078,0.0920135,0.319428,0.038266,0.0093798,0.0920088,0.716414,0.415319,0.875116,0.341043,0.676298,0.480979,0.853558,0.370818,0.9981,0.118425,0.467176,0.298927,0.933502,0.579238,0.569666,0.365955,0.977313,0.405396,0.00134283,0.637672,0.0537303,0.419749,0.101441,0.494663,0.575396,0.916947,0.833414,0.754331,0.99717,0.362701,0.177567,0.322883,0.0875619,0.435427,0.493032,0.930421,0.364013,0.795859,0.0573944,0.61549,0.213284,0.85031,0.995796,0.212858,0.777205,0.337491,0.634034,0.444159,0.70743,0.989259,0.705049,0.241665,0.530048,0.424067,0.201628,0.555433,0.35264,0.562311,0.43069,0.016913,0.900033,0.630771,0.0684216,0.950809,0.442211,0.767793,0.627546,0.0173764,0.822526,0.935439,0.493105,0.125401,0.0174795,0.610958,0.108065,0.399938,0.700235,0.216296,0.476067,0.22724,0.777453,0.321795,0.655882,0.492078,0.683556,0.97095,0.729621,0.106573,0.978696,0.679071,0.293061,0.866762,0.739993,0.803356,0.13681,0.977817,0.0325082,0.880065,0.0532957,0.743211,0.0316667,0.688239,0.809251,0.917356,0.627446,0.283218,0.753313,0.596113,0.605876,0.842313,0.149595,0.657146,0.0917752,0.443782,0.683192,0.867897,0.546933,0.589363,0.62143,0.879706,0.597565,0.713109,0.680607,0.664987,0.469659,0.490299,0.444882,0.529651,0.384883,0.678219,0.936507,0.159145,0.0435976,0.347019,0.411186,0.300111,0.158391,0.903933,0.212288,0.837154,0.988492,0.52745,0.718716,0.701169,0.628114,0.309181,0.184472,0.0247982,0.338904,0.456047,0.866047,0.964234,0.662296,0.208514,0.19205,0.926621,0.953432,0.680351,0.64303,0.00510645,0.395722,0.697966,0.534865,0.835858,0.661698,0.48354,0.902764,0.860921,0.180561,0.620515,0.556763,0.534367,0.734153,0.243231,0.345546,0.806691,0.709965,0.0978401,0.215946,0.394271,0.216924,0.249302,0.411722,0.0279183,0.139896,0.595342,0.0107731,0.985666,0.878812,0.538015,0.881523,0.21926,0.713604,0.0932873,0.1655,0.761641,0.754944,0.818924,0.789983,0.64382,0.563246,0.0867451,0.0745767,0.723509,0.35514,0.496571,0.619791,0.979338,0.692706,0.528862,0.789274,0.886618,0.990044,0.657254,0.688391,0.736279,0.762444,0.363764,0.0640237,0.0265492,0.48178,0.812627,0.997791,0.107032,0.167924,0.538358,0.062579,0.299424,0.0269583,0.86924,0.964722,0.141317,0.162588,0.445364,0.659835,0.447283,0.406233,0.577007,0.757088,0.920058,0.336891,0.808498,0.368708,0.467535,0.684199,0.362781,0.01668,0.307563,0.260877,0.935993,0.049804,0.999968,0.306885,0.842156,0.248255,0.908272,0.128541,0.419218,0.966103,0.372711,0.196118,0.344769,0.859647,0.00154281,0.260361,0.703327,0.109866,|0.0311978,0.694026,0.339025,0.35611,0.0908977,0.245591,0.0239943,0.172951,0.322216,0.130979,0.529529,0.342695,0.601819,0.520288,0.153619,0.277872,0.91227,0.0135663,0.603716,0.161109,0.967199,0.720932,0.228826,0.30241,0.112791,0.717512,0.993791,0.0889735,0.236178,0.207248,0.361026,0.25337,0.0519491,0.4533,0.331786,0.536941,0.69771,0.368064,0.830024,0.874643,0.044867,0.0655569,0.441328,0.776323,0.780228,0.854964,0.211419,0.15844,0.178265,0.766527,0.532388,0.549356,0.746436,0.857127,0.151366,0.302579,0.0148003,0.462282,0.372805,0.761979,0.485548,0.191303,0.383994,0.0164089,0.115081,0.0194833,0.266598,0.926194,0.396509,0.348496,0.827237,0.516425,0.0386575,0.356935,0.379033,0.339423,0.409076,0.407812,0.623611,0.270008,0.588377,0.712074,0.197781,0.433257,0.143557,0.326689,0.755656,0.50402,0.163899,0.224285,0.54744,0.17703,0.576513,0.982228,0.284032,0.190882,0.558662,0.145012,0.154719,0.756445,0.669025,0.0909259,0.145423,0.79637,0.665259,0.348933,0.144526,0.490363,0.459027,0.98428,0.43441,0.33505,0.343781,0.345511,0.875745,0.0411874,0.945306,0.42713,0.961449,0.714238,0.0836489,0.847619,0.883799,0.637321,0.504355,0.918119,0.480049,0.744355,0.63324,0.694955,0.0478507,0.257917,0.595492,0.598115,0.494022,0.952158,0.137339,0.271196,0.296012,0.63656,0.383762,0.199305,0.23806,0.169761,0.510478,0.32559,0.86018,0.752287,0.609266,0.962593,0.357319,0.562946,0.55741,0.826205,0.418418,0.654775,0.452989,0.249176,0.276757,0.584135,0.786951,0.905031,0.295969,0.401527,0.695972,0.0683535,0.61308,0.0586756,0.99221,0.197711,0.539783,0.749488,0.114252,0.256838,0.284614,0.40105,0.520215,0.880614,0.750286,0.723955,0.732595,0.55509,0.649403,0.481858,0.404063,0.0616148,0.40923,0.527305,0.879964,0.261383,0.738702,0.944813,0.0845795,0.0753878,0.028484,0.48547,0.57938,0.0309346,0.0233836,0.143621,0.0255083,0.0945557,0.80785,0.0598025,0.717881,0.577398,0.34038,0.0989659,0.782274,0.646449,0.00192815,0.686058,0.117225,0.649018,0.473691,0.749232,0.366539,0.379986,0.112136,0.47676,0.686705,0.0586008,0.657945,0.6132,0.00829232,0.22918,0.779763,0.0565024,0.486138,0.751424,0.835844,0.100494,0.110931,0.832932,0.180259,0.610882,0.485315,0.546064,0.637948,0.379459,0.196017,0.217779,0.793218,0.481066,0.810119,0.459969,0.238817,0.744256,0.266162,0.695888,0.890136,0.430422,0.951099,0.0868956,0.0410833,0.107288,0.13451,0.728613,0.615561,0.217897,0.953945,0.482961,0.984295,0.499447,0.0210254,0.378275,0.371107,0.0180699,0.883118,0.132808,0.450169,0.502013,0.675225,0.279471,0.933179,0.0765566,0.255402,0.812934,0.698689,0.237214,0.67247,0.727015,0.827012,0.252716,0.42548,0.951923,0.826525,0.789724,0.268906,0.795002,0.381636,0.91892,0.488735,0.785492,0.131691,0.415698,0.284265,0.839717,0.2743,0.753915,0.966929,0.0269931,0.734064,0.952679,0.00958931,0.838503,0.909338,0.498484,0.130496,0.507619,0.774303,0.823757,0.85455,0.277685,0.144785,0.262772,0.82742,0.411459,0.820148,0.379472,0.916468,0.263554,0.556216,0.17815,0.687814,0.35043,0.866709,0.0321348,0.0490344,0.0370262,0.84889,0.465047,0.95571,0.89007,0.066131,0.444839,0.73682,0.837764,0.0416012,0.975883,0.579626,0.956817,0.737523,0.462807,0.808791,0.284271,0.92648,0.331482,0.754012,0.322007,0.21215,0.466655,0.703616,0.0594662,0.852728,0.00071609,0.538189,0.0376257,0.518912,0.629729,0.0182906,0.966483,0.109079,0.65513,0.303357,0.042082,0.302619,0.805784,0.846254,0.516529,0.194847,0.511951,0.0388349,0.661043,0.184051,0.482308,0.212694,0.228702,0.816833,0.660532,0.246713,0.210476,0.385846,0.224422,0.359827,0.203282,0.948704,0.0928851,0.302549,0.308677,0.82713,0.742947,0.868787,0.147972,0.513145,0.497487,0.829627,0.815402,0.0983374,0.110227,0.866801,0.342328,0.639559,0.593531,0.0431156,0.581526,0.0951215,0.310516,0.187254,0.507854,0.030475,0.879869,0.954199,0.821871,0.509776,0.273425,0.0134614,0.57816,0.811038,0.477037,0.880198,0.523506,0.0970231,0.453657,0.624993,0.896557,0.667779,0.644416,0.945577,0.0180984,0.850716,0.679948,0.264108,0.98502,0.642093,0.620194,0.947464,0.39637,0.1831,0.608652,0.641259,0.487853,0.348793,0.314612,0.181133,0.185912,0.341345,0.208424,0.0158305,0.644914,0.133401,0.249013,0.385829,0.821086,0.296682,0.761954,0.808729,0.302209,0.427705,0.11937,0.0256054,0.613432,0.542986,0.0695181,0.509439,0.77627,0.250906,0.957936,0.769375,0.380013,0.547036,0.026027,0.293601,0.133665,0.341239,0.977344,0.681526,0.831125,0.0568449,0.909597,0.361689,0.0139186,0.0275007,0.687717,0.230258,0.0229267,0.252255,0.0496096,0.927098,0.502859,0.524432,0.592462,0.908534,0.768765,0.147947,0.226464,0.105526,0.569746,0.491447,0.45675,0.59649,0.640715,0.489095,0.317119,0.242296,0.215364,0.779948,0.145497,0.0910783,0.751031,0.524845,0.563077,0.533604,0.940357,0.873587,0.395148,0.239168,0.690133,0.811868,0.419885,0.481982,0.442421,0.194418,0.135191,0.812526,0.278495,0.604769,0.282686,0.550066,0.667115,0.938164,0.6012,0.38168,0.2437,0.447959,0.27122,0.574008,0.495081,0.33519,0.976648,0.0212145,0.582176,0.375608,0.343958,0.186275,0.553243,0.406921,0.469747,0.355867,0.976336,0.660127,0.879017,0.308263,0.541546,0.646848,0.415252,0.937499,0.0157613,0.94847,0.692699,0.196808,0.555793,0.672825,0.63264,0.119642,0.508045,0.882728,0.305798,0.847746,0.795478,0.572043,0.204303,0.25268,0.67039,0.177079,0.421849,0.577168,0.0603962,0.983276,0.533078,0.384921,0.0517514,0.805379,0.706032,0.439672,0.296242,0.0482078,0.399443,0.784508,0.0541324,0.911272,0.58331,0.132544,0.0315189,0.534409,0.905241,0.854965,0.511876,0.983773,0.571266,0.4314,0.52914,0.824859,0.891475,0.0384629,0.32438,0.17551,0.880636,0.777153,0.24489,0.194796,0.756321,0.358333,0.93988,0.817422,0.62921,0.833496,0.576157,0.515936,0.255162,0.0381551,0.0527608,0.770072,0.341342,0.876632,0.0269821,0.0502886,0.0504073,0.28113,0.499987,0.837504,0.986207,0.571598,0.415054,0.786371,0.656162,0.268409,0.331664,0.5824,0.750185,0.275391,0.320693,0.749717,0.16352,0.319043,0.771534,0.780922,0.356381,0.747989,0.226564,0.468496,0.0148281,0.991329,0.812839,0.262847,0.800741,0.0570819,0.272845,0.424811,0.327709,0.762144,0.252276,0.430805,0.826354,0.120943,0.293563,0.358796,0.701247,0.612028,0.0790333,0.788644,0.0113009,0.86606,0.253382,0.065261,0.668046,0.414995,0.84549,0.248815,0.667787,0.227655,0.126335,0.267976,0.638499,0.682056,0.734563,0.99304,0.877851,0.767995,0.313925,0.545758,0.963003,0.263993,0.614506,0.885304,0.697712,0.0396098,0.84834,0.329221,0.773727,0.589923,0.69991,0.669714,0.835259,0.184649,0.344896,0.207286,0.224259,0.420734,0.96104,0.960236,0.927281,0.811731,0.173223,0.0447857,0.305221,0.899343,0.00548232,0.399748,0.136768,0.12285,0.386587,0.194875,0.0772717,0.8932,0.82807,0.685258,0.193856,0.717625,0.190341,0.0379959,0.645852,0.125417,0.187348,0.581931,0.579413,0.855643,0.489897,0.159438,0.543809,0.152867,0.423358,0.513175,0.071605,0.250578,0.332998,0.615041,0.163812,0.831945,0.499384,0.459873,0.407616,0.28706,0.30115,0.870548,0.690602,0.790761,0.603703,0.311947,0.508861,0.28038,0.992884,0.951002,0.0345385,0.48995,0.373424,0.119231,0.72527,0.618508,0.875274,0.320356,0.389482,0.943304,0.00663978,0.684342,0.990003,0.106004,0.537007,0.81408,0.76636,0.0482154,0.291773,0.0940809,0.093236,0.057245,0.742386,0.804033,0.00681776,0.354567,0.340448,0.768865,0.868342,0.0571915,0.326242,0.124665,0.261976,0.238891,0.99688,0.117188,0.957564,0.515009,0.593346,0.724076,0.290888,0.134916,0.659809,0.0748229,0.0790453,0.999334,0.210352,0.88632,0.455346,0.371268,0.169722,0.708407,0.892943,0.967068,0.0891193,0.489813,0.180423,0.597782,0.141872,0.109722,0.0819917,0.4342,0.706619,0.184759,0.0770398,0.409038,0.968772,0.00538146,0.869865,0.916348,0.0167118,0.00667101,0.120793,0.849222,0.25113,0.898501,0.309987,0.802568,0.49636,0.53037,0.429929,0.118225,0.422953,0.725879,0.463261,0.920605,0.775232,0.24314,0.456827,0.326092,0.143726,0.136683,0.622503,0.88034,0.645365,0.274277,0.861223,0.162479,0.913775,0.364234,0.366486,0.650465,0.228728,0.0401493,0.0759058,0.104184,0.945213,0.00926185,0.580869,0.315915,0.872784,0.188398,0.111741,0.304499,0.643777,0.480551,0.0614493,0.83718,0.192177,0.256981,0.499675,0.422061,0.0793176,0.379539,0.170661,0.353078,0.725386,0.686836,0.649403,0.365477,0.242906,0.748991,0.180875,0.725633,0.473284,0.27787,0.632429,0.140831,0.545324,0.887875,0.0925029,0.246135,0.972793,0.44805,0.72715,0.453737,0.374307,0.427653,0.397615,0.778557,0.0918906,0.190776,0.439019,0.648995,0.205672,0.705207,0.459851,0.651909,0.491133,0.345635,0.723077,0.84796,0.0150474,0.508436,0.398321,0.0996934,0.26579,0.971444,0.765732,0.0193971,0.734826,0.384529,0.2668,0.838558,0.953534,0.165747,0.343524,0.355546,0.59056,0.423487,0.252104,0.723257,0.191549,0.754504,0.613942,0.481552,0.471342,0.457845,0.641361,0.703258,0.426882,0.932826,0.617371,0.346789,0.491554,0.525557,0.136056,0.0507572,0.764025,0.0724529,0.617466,0.502041,0.139687,0.680377,0.181664,0.140133,0.752678,0.642897,0.69106,0.624077,0.902278,0.285999,0.981659,0.99427,0.646161,0.206635,0.100832,0.887893,0.339556,0.237215,0.367188,0.551404,0.743725,0.944065,0.553553,0.443195,0.585509,0.0585264,0.850609,0.802412,0.885641,0.805624,0.460519,0.618618,0.799381,0.228079,0.820863,|0.00768238,0.316784,0.708584,0.108781,0.150207,0.226488,0.628692,0.0173587,0.945761,0.647618,0.415444,0.66561,0.194799,0.674382,0.698336,0.961968,0.490194,0.469138,0.781847,0.501353,0.400893,0.402701,0.0602052,0.388465,0.224827,0.563675,0.581012,0.397253,0.173998,0.825411,0.600253,0.112372,0.965325,0.164652,0.546452,0.711861,0.176383,0.544063,0.545256,0.688241,0.489442,0.0852449,0.932459,0.225565,0.792088,0.908892,0.889491,0.25653,0.198436,0.637214,0.82224,0.00678372,0.332426,0.0676348,0.800781,0.307137,0.870774,0.740153,0.941004,0.732385,0.99961,0.641031,0.308895,0.654618,0.0146494,0.117402,0.901691,0.614655,0.827512,0.817696,0.83809,0.499578,0.187054,0.952844,0.915397,0.308883,0.982181,0.733483,0.754435,0.464721,0.904543,0.822748,0.616496,0.180518,0.863888,0.762129,0.409689,0.636541,0.378122,0.243723,0.512069,0.184183,0.138769,0.215798,0.827229,0.743087,0.145456,0.745695,0.29177,0.474574,0.668879,0.697857,0.924537,0.411293,0.438104,0.239413,0.543969,0.303761,0.701953,0.422191,0.500416,0.456174,0.445108,0.408692,0.327913,0.80905,0.991677,0.16658,0.149794,0.381868,0.308628,0.745085,0.794288,0.837025,0.472984,0.607236,0.510437,0.945048,0.890355,0.587335,0.731786,0.755844,0.256174,0.673878,0.217948,0.69809,0.334857,0.257001,0.324884,0.317285,0.904442,0.197982,0.717471,0.543168,0.571731,0.00515872,0.999781,0.658566,0.741149,0.810576,0.783612,0.238048,0.967876,0.524455,0.225257,0.270818,0.733914,0.527948,0.512268,0.745718,0.521532,0.37298,0.577676,0.723956,0.365817,0.55468,0.118344,0.244498,0.943981,0.77469,0.594658,0.412306,0.916078,0.63695,0.712029,0.155369,0.0185266,0.691024,0.390649,0.894396,0.675129,0.893391,0.267909,0.977157,0.461102,0.0522433,0.659659,0.371306,0.448482,0.147628,0.378451,0.165625,0.42414,0.685651,0.445693,0.0914089,0.668599,0.458259,0.509494,0.798838,0.800571,0.526188,0.315678,0.0407039,0.932075,0.832449,0.328888,0.47373,0.647824,0.0638652,0.252916,0.94577,0.99733,0.698344,0.0436948,0.762257,0.470519,0.0454552,0.32708,0.949693,0.051581,0.508645,0.942815,0.640176,0.495604,0.824595,0.840869,0.693096,0.519071,0.394103,0.203915,0.707106,0.561971,0.1443,0.815973,0.804546,0.317992,0.954938,0.221084,0.71087,0.495602,0.0793421,0.592947,0.104431,0.511769,0.411036,0.28978,0.528686,0.415128,0.659907,0.00238407,0.95316,0.512832,0.898852,0.695733,0.291632,0.905191,0.0574527,0.99719,0.667928,0.138894,0.32305,0.373127,0.405829,0.871425,0.774984,0.157549,0.849408,0.799598,0.433629,0.183291,0.915738,0.549922,0.519834,0.180493,0.00394493,0.898775,0.429082,0.597201,0.347246,0.422087,0.00792778,0.991051,0.102557,0.030768,0.0305225,0.746535,0.150651,0.911743,0.176207,0.156068,0.00560194,0.859227,0.558078,0.856994,0.823825,0.552599,0.723189,0.396564,0.929925,0.63523,0.274497,0.759166,0.38338,0.54936,0.767566,0.276193,0.375173,0.0297232,0.806351,0.114301,0.652921,0.075625,0.712266,0.348613,0.669872,0.41622,0.793013,0.472819,0.392173,0.714207,0.767707,0.753088,0.376728,0.700521,0.806637,0.722329,0.708773,0.733993,0.438454,0.95006,0.866816,0.289888,0.79429,0.888647,0.607917,0.229143,0.162647,0.0246108,0.343301,0.190034,0.328631,0.00381768,0.77692,0.839586,0.263725,0.221064,0.151883,0.133122,0.890682,0.360592,0.91446,0.290045,0.399816,0.113329,0.832707,0.450543,0.469983,0.241749,0.143298,0.411198,0.662044,0.804899,0.800371,0.157474,0.178295,0.70975,0.0666432,0.225652,0.638703,0.185825,0.933067,0.926775,0.574001,0.840882,0.306545,0.0679213,0.815822,0.947381,0.671527,0.492402,0.964662,0.737399,0.110916,0.568927,0.409916,0.380363,0.475126,0.0479638,0.499704,0.2886,0.697846,0.51905,0.587131,0.173577,0.77684,0.551053,0.0710295,0.855725,0.18185,0.505159,0.201128,0.633242,0.288282,0.0037201,0.142387,0.351541,0.565692,0.217233,0.564832,0.653665,0.573733,0.473365,0.808752,0.434101,0.434374,0.928873,0.64632,0.18827,0.210395,0.207962,0.937853,0.56283,0.897053,0.843771,0.612161,0.628798,0.544882,0.401644,0.130261,0.903027,0.944855,0.961659,0.986047,0.385031,0.851442,0.161364,0.29993,0.768135,0.871159,0.936539,0.149051,0.0881686,0.118998,0.713829,0.654281,0.797078,0.451485,0.585005,0.627884,0.367369,0.659169,0.235808,0.133795,0.577433,0.660898,0.845304,0.745458,0.0158094,0.744598,0.509648,0.454977,0.578941,0.228293,0.0330133,0.181041,0.450737,0.111086,0.350771,0.315953,0.348498,0.639396,0.100803,0.875478,0.826732,0.836642,0.581047,0.0103334,0.700627,0.305978,0.215509,0.814612,0.0752625,0.219138,0.560574,0.540153,0.606328,0.697453,0.691634,0.942036,0.692479,0.796666,0.188789,0.788927,0.731977,0.0425382,0.552742,0.945097,0.666283,0.436566,0.794155,0.707245,0.758246,0.46453,0.245595,0.197944,0.0746681,0.450239,0.878175,0.954646,0.0141473,0.700414,0.97609,0.893431,0.776403,0.401309,0.256249,0.217012,0.405346,0.690553,0.283787,0.914215,0.814672,0.338553,0.903346,0.323581,0.918607,0.578561,0.0531555,0.458959,0.753755,0.866038,0.0842181,0.217364,0.484567,0.432595,0.137477,0.0375094,0.528695,0.748839,0.65275,0.0532395,0.533636,0.0921939,0.659877,0.503711,0.371323,0.0901334,0.922688,0.69032,0.883361,0.881616,0.348824,0.701978,0.832965,0.455624,0.184616,0.974383,0.917546,0.388808,0.893965,0.351801,0.813597,0.883501,0.950624,0.785759,0.793293,0.597106,0.0399798,0.904497,0.400204,0.767993,0.0388284,0.803743,0.253124,0.37194,0.758974,0.344885,0.61354,0.782763,0.58213,0.57035,0.104931,0.813216,0.665425,0.612764,0.978679,0.952131,0.821314,0.512335,0.833634,0.788971,0.504876,0.432548,0.550714,0.55121,0.954795,0.397089,0.744019,0.274281,0.810459,0.227464,0.863961,0.301371,0.0782795,0.705808,0.870063,0.75229,0.124722,0.419003,0.628444,0.574253,0.359204,0.625317,0.365514,0.789374,0.00956398,0.494919,0.253,0.936834,0.383158,0.718041,0.437018,0.212182,0.130782,0.769765,0.682912,0.958074,0.680027,0.00694865,0.0981009,0.499246,0.456891,0.774099,0.852517,0.686612,0.73804,0.165587,0.343655,0.279339,0.360403,0.386461,0.83615,0.351261,0.621803,0.547981,0.456502,0.729708,0.545768,0.436906,0.556598,0.954292,0.627945,0.0171763,0.57307,0.765756,0.723452,0.663403,0.045954,0.63284,0.92551,0.787396,0.127536,0.898181,0.81173,0.375275,0.0911469,0.657198,0.483269,0.742921,0.922358,0.198322,0.82848,0.77062,0.922126,0.897807,0.00923985,0.691696,0.451987,0.846854,0.193044,0.640859,0.942777,0.129683,0.95357,0.822982,0.797212,0.593979,0.347356,0.0787069,0.592014,0.582053,0.316149,0.405821,0.641842,0.0110908,0.661175,0.145572,0.66367,0.0138047,0.37762,0.0248135,0.297485,0.875416,0.059073,0.778785,0.610383,0.162771,0.722634,0.488576,0.964658,0.544043,0.67111,0.540263,0.0428978,0.576617,0.353268,0.78037,0.99691,0.760223,0.712749,0.634686,0.500448,0.842241,0.931239,0.474161,0.292246,0.316966,0.832057,0.454742,0.506751,0.517618,0.821534,0.0361557,0.228414,0.924488,0.623799,0.968896,0.201402,0.538947,0.962217,0.0227219,0.471029,0.0802832,0.739833,0.21864,0.192064,0.867252,0.854211,0.946967,0.974108,0.165117,0.953983,0.400594,0.500073,0.886785,0.55053,0.269305,0.664988,0.878566,0.991203,0.939241,0.815044,0.64314,0.36547,0.975481,0.890759,0.906856,0.623714,0.371201,0.917117,0.391224,0.480543,0.804958,0.128209,0.0544508,0.759924,0.0441812,0.539217,0.0743091,0.333618,0.69609,0.877595,0.980282,0.874734,0.324393,0.148095,0.400961,0.799935,0.573309,0.634221,0.104786,0.758965,0.985197,0.814401,0.127145,0.770003,0.80191,0.158272,0.743639,0.0765215,0.266195,0.420296,0.461351,0.306991,0.0408233,0.6513,0.936047,0.434626,0.5639,0.635909,0.613167,0.445316,0.732267,0.793059,0.384002,0.44356,0.220674,0.0424032,0.721002,0.752086,0.350455,0.779933,0.52541,0.699356,0.932211,0.259812,0.101584,0.498781,0.91526,0.191121,0.338421,0.60813,0.504601,0.783612,0.513738,0.17798,0.976986,0.500732,0.961069,0.44843,0.73125,0.750364,0.919305,0.333184,0.838322,0.262396,0.64301,0.272943,0.840748,0.924083,0.263679,0.816251,0.240497,0.10645,0.000641048,0.456414,0.0946917,0.513581,0.290186,0.729768,0.719066,0.95091,0.15518,0.839702,0.301739,0.612855,0.255304,0.0488669,0.184576,0.579219,0.562664,0.651258,0.243942,0.161069,0.693952,0.0599065,0.851501,0.314804,0.468772,0.489647,0.515405,0.529633,0.463284,0.685861,0.184854,0.505546,0.356485,0.212706,0.0791208,0.516767,0.546778,0.830395,0.31704,0.470599,0.899107,0.166091,0.210439,0.0609381,0.9751,0.969408,0.595324,0.0184964,0.250197,0.763635,0.0947369,0.701401,0.496393,0.985617,0.76696,0.57193,0.958755,0.101372,0.390602,0.239875,0.0177262,0.784,0.657172,0.454412,0.201654,0.755677,0.650882,0.748884,0.558776,0.893137,0.703074,0.0901055,0.677291,0.295057,0.241007,0.0715516,0.740217,0.0868343,0.052343,0.927724,0.727782,0.861665,0.924918,0.645942,0.944476,0.558877,0.244574,0.364893,0.863555,0.525976,0.352567,0.508143,0.833765,0.736435,0.118176,0.608786,0.116904,0.233545,0.773759,0.490087,0.910339,0.591697,0.914774,0.672605,0.303319,0.0318154,0.0855278,0.627257,0.962017,0.888096,0.280885,0.921243,0.197501,0.093172,0.148222,0.555448,0.0962041,0.315115,0.286054,0.111579,0.0281631,0.685994,0.179556,0.741915,0.979648,0.498881,0.0748906,0.898438,0.631372,0.460948,0.27352,0.181922,0.955523,0.0580044,0.12098,0.349943,0.649846,0.812068,0.81648,0.171036,0.141319,0.498357,0.548421,0.344852,0.510572,|0.202311,0.907473,0.656329,0.55414,0.276562,0.786918,0.616264,0.51321,0.535899,0.242153,0.566344,0.6147,0.340877,0.267993,0.897863,0.200038,0.911662,0.588437,0.814105,0.687396,0.489442,0.271917,0.974135,0.851583,0.32368,0.878076,0.988469,0.226725,0.781022,0.0970363,0.777538,0.18727,0.940055,0.711008,0.424635,0.763625,0.107255,0.749086,0.968553,0.717369,0.07905,0.627754,0.54343,0.968111,0.18294,0.317028,0.53928,0.367716,0.811115,0.373533,0.978092,0.0295943,0.352037,0.123174,0.0389627,0.293628,0.776468,0.374289,0.658487,0.244945,0.470733,0.749659,0.446045,0.453546,0.488428,0.345198,0.544522,0.500343,0.83497,0.761235,0.547854,0.742859,0.74509,0.479252,0.129315,0.774981,0.704704,0.540586,0.327357,0.506759,0.161512,0.262811,0.126853,0.491723,0.0654474,0.522497,0.779622,0.358421,0.808919,0.796539,0.650179,0.0327182,0.851421,0.164397,0.477711,0.550738,0.142583,0.412083,0.0266399,0.648194,0.145881,0.904201,0.825109,0.0243476,0.701259,0.111071,0.330105,0.83498,0.468885,0.351084,0.0393651,0.591456,0.475639,0.0556596,0.550911,0.505923,0.532802,0.717562,0.789042,0.701863,0.41169,0.815485,0.924461,0.533936,0.797878,0.486421,0.75828,0.858224,0.993504,0.261414,0.497362,0.125996,0.920478,0.465241,0.176614,0.2349,0.458093,0.694888,0.0128389,0.786613,0.127324,0.802017,0.960897,0.0858873,0.58374,0.12206,0.806956,0.312014,0.477413,0.458435,0.799671,0.396621,0.401689,0.878158,0.627385,0.433354,0.432802,0.834597,0.0577638,0.242792,0.533732,0.625327,0.254713,0.821635,0.625637,0.879736,0.34257,0.156539,0.627849,0.399328,0.777407,0.823923,0.671314,0.557886,0.0497746,0.132709,0.518302,0.883584,0.811762,0.19341,0.662879,0.364324,0.608787,0.776719,0.397355,0.234087,0.0960277,0.0829536,0.85232,0.467017,0.211852,0.807708,0.283655,0.682797,0.202721,0.769322,0.274469,0.389452,0.683827,0.48752,0.697769,0.2755,0.13626,0.967842,0.607321,0.745867,0.9036,0.101744,0.77336,0.601497,0.737322,0.634628,0.411154,0.749552,0.663993,0.629806,0.19948,0.456671,0.920504,0.0104519,0.854866,0.721504,0.696791,0.595476,0.599845,0.341186,0.743129,0.347666,0.0707995,0.0898741,0.266178,0.929276,0.63484,0.116988,0.531711,0.20824,0.237788,0.387133,0.139352,0.358019,0.0647237,0.183391,0.998727,0.143417,0.708495,0.679892,0.272327,0.138354,0.9174,0.847211,0.79106,0.28797,0.303831,0.219414,0.620228,0.222035,0.141159,0.0165842,0.293896,0.799651,0.79788,0.267228,0.725625,0.508398,0.0852581,0.632173,0.474729,0.0325437,0.291174,0.616205,0.519026,0.617495,0.329378,0.519343,0.961905,0.396425,0.905076,0.239926,0.523036,0.990027,0.310707,0.365472,0.710211,0.344249,0.160167,0.0872937,0.83239,0.465603,0.571861,0.66287,0.713212,0.514717,0.519329,0.95103,0.609284,0.0970936,0.967614,0.0991591,0.826207,0.230512,0.523819,0.975343,0.288512,0.0942437,0.628763,0.239744,0.255295,0.722572,0.464149,0.778717,0.188537,0.283978,0.0972193,0.829538,0.0850029,0.842491,0.568086,0.915204,0.226426,0.258154,0.752344,0.343462,0.314583,0.0580222,0.989927,0.783918,0.881649,0.314746,0.179339,0.536477,0.35357,0.123387,0.846818,0.0712916,0.661914,0.818842,0.201455,0.240317,0.70873,0.149332,0.642353,0.450384,0.943695,0.544166,0.484932,0.154202,0.196776,0.229467,0.0984591,0.155931,0.338141,0.0335876,0.496088,0.859049,0.235864,0.555727,0.562641,0.431207,0.986856,0.144288,0.943922,0.104976,0.16647,0.269818,0.79855,0.337467,0.423291,0.323912,0.542879,0.453318,0.323945,0.394044,0.572546,0.0860121,0.887416,0.912262,0.579958,0.730079,0.6148,0.842475,0.617437,0.561986,0.406248,0.741304,0.43077,0.312918,0.345751,0.311607,0.109362,0.641749,0.627355,0.145951,0.134183,0.131569,0.706974,0.104679,0.392269,0.904744,0.837205,0.0881152,0.463991,0.0685947,0.458043,0.527094,0.882362,0.326017,0.11978,0.815213,0.755447,0.316932,0.311596,0.222269,0.0554925,0.350615,0.88106,0.296083,0.551241,0.16605,0.797944,0.331816,0.321406,0.335234,0.368669,0.0448647,0.423514,0.842469,0.584773,0.0697376,0.157811,0.30811,0.192828,0.870554,0.245099,0.244379,0.689734,0.0469435,0.39143,0.33318,0.014344,0.48388,0.346589,0.409311,0.471136,0.871811,0.617602,0.573472,0.386501,0.522249,0.169965,0.308426,0.834044,0.278022,0.947979,0.402694,0.634264,0.624763,0.545691,0.603664,0.713026,0.550664,0.684039,0.229065,0.430072,0.215259,0.359376,0.523448,0.440903,0.959207,0.445771,0.165157,0.63941,0.657515,0.291854,0.665593,0.62129,0.180031,0.698126,0.541644,0.189081,0.284609,0.994373,0.945679,0.752912,0.389623,0.43373,0.547046,0.224851,0.946989,0.395577,0.259732,0.59987,0.565419,0.66455,0.995932,0.449488,0.356636,0.406369,0.981636,0.770114,0.457036,0.146287,0.735905,0.646172,0.588547,0.543944,0.641483,0.822602,0.908671,0.0307752,0.655156,0.253563,0.532264,0.00297225,0.657563,0.063511,0.128718,0.0617692,0.702161,0.785882,0.739233,0.35206,0.148504,0.877074,0.357053,0.621842,0.186019,0.306398,0.807362,0.789677,0.261703,0.633766,0.217944,0.387762,0.911922,0.233166,0.664725,0.955621,0.503927,0.879645,0.992535,0.740145,0.991478,0.530349,0.113168,0.778167,0.235049,0.978228,0.952614,0.695646,0.0279056,0.615767,0.324001,0.366496,0.165631,0.254519,0.755945,0.60141,0.869933,0.0416069,0.291003,0.971366,0.971437,0.796498,0.074362,0.527905,0.0640717,0.519984,0.950959,0.655977,0.0342171,0.617433,0.272492,0.154777,0.394182,0.410514,0.740692,0.881203,0.225529,0.738186,0.124905,0.239843,0.0772246,0.671142,0.0147277,0.826005,0.344434,0.0262803,0.488688,0.119467,0.525495,0.57421,0.136463,0.536051,0.984497,0.199998,0.88904,0.382532,0.53694,0.170484,0.106613,0.620652,0.40907,0.38559,0.56023,0.706937,0.0925234,0.205405,0.995443,0.723146,0.564705,0.450577,0.0822934,0.789858,0.693468,0.520019,0.0633824,0.0724004,0.66208,0.609513,0.38063,0.367725,0.168458,0.513559,0.718229,0.271489,0.025022,0.840655,0.943972,0.403753,0.341164,0.615828,0.139191,0.367518,0.775583,0.448927,0.391439,0.233418,0.860745,0.600304,0.442512,0.414289,0.1849,0.350358,0.644121,0.0548659,0.459407,0.059975,0.821958,0.448223,0.902323,0.296677,0.64548,0.906453,0.110837,0.802518,0.142039,0.617268,0.547432,0.0355302,0.0544249,0.354811,0.338812,0.663128,0.554496,0.172291,0.339296,0.13612,0.214843,0.133528,0.490764,0.000473917,0.908475,0.917898,0.434697,0.839172,0.397799,0.590147,0.711399,0.309131,0.993113,0.69183,0.336498,0.393422,0.129176,0.893886,0.870978,0.741121,0.149904,0.650038,0.824153,0.156816,0.924656,0.408524,0.458999,0.722346,0.0010528,0.0885593,0.742057,0.486104,0.673883,0.0261294,0.239789,0.547459,0.422058,0.787737,0.638246,0.79564,0.656701,0.942464,0.0362756,0.757132,0.490698,0.952288,0.842468,0.178414,0.524421,0.0167893,0.284051,0.585206,0.0245522,0.662898,0.459165,0.177542,0.830398,0.0553311,0.00576437,0.31585,0.916282,0.0925377,0.376766,0.859868,0.396785,0.25958,0.502591,0.407796,0.4497,0.842265,0.829183,0.559149,0.297058,0.229743,0.743239,0.419436,0.889715,0.430576,0.80868,0.563099,0.437971,0.654671,0.896392,0.676922,0.992279,0.0144283,0.960318,0.0173326,0.755576,0.190123,0.601044,0.957157,0.676168,0.621016,0.187631,0.960111,0.294159,0.777181,0.0491918,0.934642,0.0256377,0.597145,0.200717,0.634766,0.877405,0.421915,0.927184,0.204504,0.580362,0.889363,0.809287,0.429812,0.516223,0.736601,0.661619,0.817082,0.0052731,0.177291,0.200724,0.688813,0.60769,0.415194,0.707034,0.342245,0.411355,0.947233,0.0949278,0.189744,0.23042,0.903454,0.0440686,0.584041,0.0337695,0.555789,0.281352,0.18671,0.419173,0.693738,0.0960338,0.247831,0.995087,0.835635,0.334081,0.975277,0.328342,0.332751,0.896315,0.410177,0.646133,0.484329,0.432269,0.218076,0.130973,0.0465835,0.762622,0.926688,0.126803,0.376292,0.25058,0.954078,0.627825,0.267266,0.598488,0.233241,0.531206,0.503013,0.299631,0.00851941,0.64859,0.916936,0.45193,0.199086,0.119264,0.977369,0.290225,0.878677,0.109433,0.897335,0.277539,0.634578,0.322916,0.473204,0.293344,0.329183,0.0402357,0.538949,0.337237,0.0952592,0.501138,0.323681,0.834716,0.890471,0.43793,0.0389788,0.429818,0.385192,0.464517,0.146044,0.646023,0.502418,0.180531,0.539281,0.88382,0.216264,0.855686,0.44035,0.0869299,0.17595,0.636884,0.728809,0.654999,0.786668,0.875958,0.237242,0.324718,0.635607,0.120134,0.468254,0.692497,0.381825,0.596247,0.601831,0.642549,0.421907,0.354377,0.306431,0.475421,0.587218,0.36608,0.906526,0.00227612,0.36201,0.189856,0.00621712,0.561104,0.176111,0.679763,0.308646,0.388133,0.294804,0.180256,0.266825,0.535741,0.710274,0.0138462,0.377913,0.101597,0.758299,0.413598,0.013527,0.852243,0.0169511,0.457755,0.0961604,0.727409,0.77039,0.0325553,0.184413,0.716504,0.748145,0.640422,0.199032,0.363922,0.0486839,0.823024,0.755883,0.50512,0.338876,0.481621,0.0430267,0.907078,0.328623,0.951902,0.175889,0.226994,0.916599,0.941766,0.303761,0.0346569,0.513415,0.166903,0.305745,0.429956,0.674797,0.488652,0.376146,0.470219,0.471029,0.189445,0.177841,0.279428,0.675012,0.300067,0.212707,0.612147,0.670282,0.526665,0.665339,0.330619,0.581144,0.738176,0.696129,0.0434172,0.134274,0.576077,0.729521,0.989292,0.428864,0.0567395,0.749073,0.327599,0.89561,0.122064,0.88567,0.394482,0.941676,0.303126,0.32835,0.0364515,0.685545,0.308183,0.879478,0.932956,0.363367,0.038851,0.747817,0.283519,0.205555,0.705983,0.473765,0.969104,0.737209,0.326085,|0.899484,0.99167,0.975706,0.585231,0.609485,0.829033,0.20335,0.343163,0.354315,0.916429,0.249846,0.17441,0.933117,0.412052,0.559322,0.4988,0.837865,0.690215,0.18557,0.871362,0.440357,0.746074,0.621487,0.10655,0.0512672,0.246077,0.128331,0.512362,0.0701253,0.281436,0.777683,0.494372,0.535835,0.543902,0.306109,0.742069,0.567684,0.80512,0.731658,0.951673,0.770395,0.270445,0.376782,0.863382,0.698705,0.730476,0.371236,0.565374,0.954315,0.204042,0.541861,0.217128,0.435542,0.122818,0.36807,0.557382,0.81404,0.016528,0.637,0.697076,0.199558,0.821564,0.35102,0.866151,0.516934,0.251994,0.983792,0.468413,0.148803,0.460445,0.826072,0.201255,0.714775,0.209135,0.729331,0.875734,0.960268,0.947867,0.0172642,0.354411,0.537331,0.612372,0.89887,0.460138,0.606926,0.094837,0.825889,0.100925,0.871076,0.51273,0.387933,0.331517,0.356619,0.355062,0.0851756,0.812291,0.586954,0.19174,0.347512,0.522854,0.503768,0.320403,0.416986,0.151741,0.42022,0.649873,0.286103,0.645644,0.683225,0.628888,0.924207,0.595689,0.249313,0.47307,0.0217065,0.786671,0.277233,0.773484,0.714545,0.216296,0.699652,0.194544,0.354445,0.279159,0.477642,0.905871,0.843922,0.320943,0.865752,0.715296,0.242374,0.799431,0.312506,0.298814,0.964936,0.833043,0.0317771,0.412298,0.426379,0.184555,0.532163,0.0929019,0.660235,0.754114,0.0818858,0.764389,0.0574327,0.608165,0.544016,0.537523,0.268887,0.530278,0.300401,0.101701,0.725206,0.987579,0.817641,0.804515,0.636379,0.251025,0.143987,0.47697,0.507029,0.898051,0.00874841,0.979799,0.554949,0.687026,0.0276148,0.791559,0.0485613,0.489317,0.465072,0.801697,0.438976,0.762256,0.0818582,0.116408,0.0481831,0.375891,0.0458881,0.592277,0.832516,0.330293,0.225055,0.289408,0.607231,0.849164,0.269632,0.421938,0.835044,0.58621,0.116315,0.829087,0.0482528,0.60877,0.651151,0.88645,0.947805,0.0886288,0.661279,0.282617,0.942565,0.322612,0.182906,0.130439,0.966367,0.846007,0.878474,0.0337984,0.512374,0.771316,0.0903319,0.913926,0.872275,0.080856,0.320048,0.014186,0.142123,0.193241,0.647513,0.00961423,0.607342,0.449306,0.880002,0.0860823,0.925294,0.0855735,0.186293,0.330674,0.527863,0.309981,0.914145,0.187625,0.57915,0.91924,0.101329,0.29494,0.890482,0.032365,0.640259,0.782589,0.633011,0.667179,0.750044,0.215188,0.152383,0.853929,0.880626,0.444257,0.916538,0.398758,0.857459,0.601708,0.738121,0.972284,0.308799,0.654832,0.989228,0.857081,0.399271,0.0541935,0.141019,0.205571,0.923946,0.942992,0.748897,0.988146,0.540833,0.868285,0.898777,0.384775,0.499074,0.31463,0.713262,0.371102,0.584587,0.748215,0.929963,0.863105,0.163543,0.779312,0.588947,0.789976,0.927363,0.0772489,0.587566,0.346338,0.457681,0.808565,0.897697,0.437229,0.0436773,0.265936,0.597868,0.0456722,0.247165,0.23091,0.139207,0.817232,0.651336,0.481755,0.279358,0.505397,0.343491,0.731232,0.973336,0.0513225,0.0189674,0.893737,0.643144,0.0017516,0.138322,0.334378,0.413033,0.982381,0.272385,0.407984,0.985347,0.923879,0.0758026,0.1846,0.441869,0.864693,0.457731,0.271958,0.617275,0.646979,0.939361,0.382923,0.536138,0.936233,0.80232,0.460206,0.323525,0.727782,0.043357,0.839,0.71193,0.716452,0.125903,0.336622,0.472293,0.743222,0.153156,0.982552,0.681716,0.625247,0.186516,0.0176387,0.803866,0.129306,0.0471216,0.142943,0.436388,0.220527,0.696514,0.287123,0.991904,0.484165,0.832855,0.43053,0.0835384,0.78246,0.968658,0.329836,0.143349,0.170968,0.0172381,0.122213,0.17947,0.68307,0.276973,0.531165,0.950325,0.79611,0.347993,0.121002,0.161115,0.429813,0.396949,0.684964,0.341569,0.695389,0.398034,0.682042,0.0667166,0.378166,0.67929,0.319446,0.81255,0.410441,0.776414,0.942758,0.699991,0.343993,0.379882,0.396991,0.917388,0.754056,0.279122,0.0257738,0.954638,0.859445,0.723341,0.923577,0.982328,0.481356,0.598928,0.918076,0.767177,0.703744,0.231748,0.785257,0.996417,0.271881,0.454813,0.144396,0.927898,0.327027,0.111164,0.928793,0.121483,0.272761,0.674896,0.332443,0.335021,0.6535,0.91237,0.849319,0.581968,0.542369,0.650157,0.843971,0.0902563,0.387631,0.331611,0.59712,0.623318,0.947822,0.0862885,0.991808,0.808885,0.768914,0.416052,0.280604,0.0561095,0.683064,0.804601,0.897585,0.922687,0.66973,0.488677,0.610083,0.569348,0.874038,0.66444,0.36807,0.465236,0.94221,0.667743,0.641149,0.211583,0.696971,0.0377999,0.773842,0.596405,0.30084,0.418312,0.425056,0.515488,0.214463,0.256086,0.913008,0.287888,0.956297,0.698624,0.512072,0.739386,0.66078,0.364261,0.024617,0.349423,0.684559,0.376652,0.633969,0.960236,0.675775,0.757647,0.0611385,0.391879,0.426434,0.149567,0.81787,0.0690879,0.421801,0.576665,0.241231,0.957376,0.380592,0.52707,0.935562,0.966191,0.86951,0.0426793,0.17354,0.399889,0.92136,0.100217,0.763735,0.663233,0.680717,0.942251,0.0476133,0.993327,0.622128,0.802298,0.08644,0.507672,0.0734978,0.678247,0.992578,0.148781,0.866733,0.00862616,0.551362,0.0533014,0.273522,0.660638,0.744656,0.637291,0.289111,0.844198,0.739697,0.946931,0.000945985,0.40517,0.922432,0.979908,0.296498,0.884595,0.384757,0.43132,0.819378,0.837049,0.188154,0.386793,0.744295,0.924746,0.0119094,0.952544,0.00103635,0.686921,0.480592,0.764313,0.286901,0.282724,0.0290218,0.246952,0.468163,0.944081,0.43804,0.829437,0.333144,0.965755,0.58516,0.482562,0.713727,0.0355958,0.393441,0.954342,0.834017,0.844704,0.693096,0.888721,0.284476,0.48967,0.222091,0.147861,0.47673,0.35327,0.653721,0.660208,0.198315,0.907806,0.249847,0.615458,0.00847608,0.876242,0.105633,0.468246,0.560281,0.464024,0.479723,0.671054,0.889563,0.997466,0.332007,0.286423,0.983778,0.124284,0.27661,0.50712,0.660262,0.913122,0.702101,0.361401,0.966473,0.543099,0.0067659,0.0466995,0.864837,0.264485,0.486107,0.802279,0.0119524,0.6885,0.0496573,0.512168,0.324628,0.781886,0.647099,0.572193,0.602394,0.646251,0.764247,0.472797,0.225673,0.422359,0.748326,0.434701,0.145536,0.50482,0.140853,0.677085,0.397378,0.556261,0.71259,0.169098,0.77278,0.0593931,0.604844,0.821202,0.468386,0.0609553,0.0924273,0.929301,0.339573,0.542933,0.350294,0.0451426,0.262047,0.465193,0.775273,0.641449,0.091585,0.706379,0.133602,0.66663,0.238782,0.318348,0.163689,0.296441,0.0837433,0.648932,0.292022,0.552299,0.937052,0.0165601,0.129004,0.13227,0.591789,0.802685,0.418047,0.772984,0.596509,0.187133,0.36591,0.977956,0.633466,0.386345,0.324238,0.294276,0.174515,0.812051,0.50923,0.625703,0.819826,0.744173,0.150686,0.589756,0.664493,0.736584,0.958968,0.386177,0.266124,0.0705801,0.829929,0.290064,0.406296,0.512923,0.908409,0.228977,0.371434,0.0243836,0.29107,0.359403,0.784184,0.266693,0.0416767,0.668747,0.00630385,0.0133799,0.492316,0.770283,0.105754,0.943483,0.649225,0.585381,0.318194,0.110542,0.194065,0.0982742,0.116683,0.208472,0.415279,0.0241051,0.799367,0.705048,0.504973,0.28384,0.697839,0.955267,0.449907,0.353841,0.709437,0.0288424,0.897119,0.0845833,0.618802,0.301789,0.290118,0.096999,0.320904,0.239823,0.440041,0.794289,0.476432,0.583622,0.340872,0.675596,0.565139,0.188202,0.87043,0.168399,0.378816,0.264356,0.609754,0.594607,0.984552,0.390856,0.0166053,0.0897577,0.0295312,0.223764,0.947539,0.151209,0.148445,0.974018,0.557664,0.599411,0.286633,0.296057,0.216188,0.345924,0.964925,0.915086,0.974498,0.014708,0.438479,0.476948,0.126905,0.423332,0.662311,0.970182,0.455416,0.677507,0.125343,0.693484,0.500329,0.57793,0.446665,0.924689,0.599453,0.455617,0.0465484,0.0456259,0.755041,0.476519,0.269512,0.465416,0.993802,0.744625,0.987996,0.0644774,0.166967,0.118292,0.0171285,0.0655722,0.736886,0.791111,0.430993,0.812205,0.57037,0.54867,0.326924,0.962273,0.653906,0.966939,0.305999,0.566149,0.895711,0.287357,0.595215,0.926419,0.950974,0.0855148,0.237446,0.689259,0.324533,0.757817,0.330106,0.248545,0.877047,0.379113,0.168674,0.555191,0.82461,0.10349,0.489437,0.743043,0.137045,0.696009,0.451442,0.215265,0.0679486,0.910113,0.731037,0.166555,0.597568,0.238349,0.954587,0.0842048,0.308947,0.130415,0.0870152,0.175949,0.967063,0.586104,0.792669,0.440927,0.440679,0.834409,0.91795,0.636689,0.0296923,0.494443,0.837475,0.697204,0.230296,0.475226,0.965971,0.767149,0.576753,0.0910671,0.641078,0.837388,0.703556,0.722071,0.332735,0.170737,0.696731,0.883457,0.763085,0.380206,0.296048,0.309573,0.511028,0.283617,0.762129,0.435358,0.379014,0.0551113,0.449218,0.850573,0.353864,0.817687,0.679,0.244691,0.297936,0.0428119,0.341092,0.687535,0.466835,0.0880781,0.340236,0.693556,0.300059,0.35619,0.947978,0.888753,0.0462449,0.795836,0.256225,0.702398,0.0307783,0.440654,0.282903,0.786361,0.139658,0.400319,0.779732,0.451123,0.187449,0.633946,0.0610598,0.558084,0.813426,0.712922,0.285664,0.186595,0.603919,0.776663,0.723852,0.542724,0.947985,0.0247378,0.408119,0.278899,0.0580225,0.828838,0.347847,0.408453,0.250417,0.718292,0.648848,0.703572,0.888636,0.318152,0.102866,0.198574,0.152125,0.21358,0.744453,0.687711,0.729514,0.832978,0.768049,0.844011,0.114153,0.703967,0.721992,0.194683,0.27992,0.316787,0.273187,0.509588,0.982841,0.269668,0.182448,0.63347,0.146084,0.79998,0.198877,0.209119,0.777243,0.950883,0.193219,0.2663,0.363964,0.114566,0.462839,0.132375,0.874994,0.618487,0.271343,0.378636,0.438152,0.785149,0.412548,0.675436,0.0723901,0.200057,0.0659995,0.18566,0.228208,0.0785572,0.408648,0.931621,0.852847,|0.907634,0.494374,0.467038,0.812939,0.672615,0.74521,0.262549,0.787011,0.913486,0.905075,0.954567,0.260324,0.275815,0.126076,0.100739,0.922478,0.184841,0.037472,0.304135,0.942774,0.945798,0.732234,0.899538,0.651183,0.0152586,0.321875,0.477222,0.690314,0.93911,0.637963,0.294931,0.41751,0.149958,0.128386,0.0348144,0.796956,0.235393,0.210633,0.896594,0.128352,0.374054,0.171655,0.969693,0.746585,0.702416,0.959265,0.690737,0.588018,0.529704,0.604923,0.427709,0.26276,0.457835,0.758716,0.713521,0.652515,0.0997084,0.715537,0.368221,0.199527,0.598523,0.580716,0.264162,0.6694,0.378035,0.379668,0.242149,0.192181,0.500898,0.237882,0.625092,0.455762,0.0451108,0.21326,0.483081,0.442278,0.281743,0.0998138,0.850094,0.594706,0.0786239,0.0715104,0.119716,0.63613,0.752088,0.294494,0.128743,0.170006,0.0533251,0.96321,0.462435,0.880453,0.168186,0.149106,0.191113,0.782733,0.363791,0.425032,0.520256,0.10417,0.593157,0.769314,0.795568,0.811864,0.537337,0.774172,0.221734,0.653705,0.123672,0.120804,0.161701,0.565177,0.621418,0.84543,0.101626,0.580441,0.657744,0.467479,0.957945,0.825098,0.221279,0.264195,0.567163,0.202464,0.588379,0.820656,0.824738,0.846498,0.84565,0.141798,0.588111,0.623388,0.164738,0.240004,0.605199,0.828464,0.352892,0.238655,0.887501,0.601282,0.780527,0.650538,0.698547,0.426423,0.344593,0.850885,0.033962,0.211714,0.345707,0.13024,0.0900607,0.088457,0.591726,0.0424571,0.204406,0.289941,0.139471,0.0806472,0.883155,0.179213,0.598285,0.932021,0.964764,0.923147,0.63396,0.431132,0.959244,0.957565,0.750457,0.237236,0.400429,0.716817,0.305705,0.826062,0.602663,0.336402,0.957809,0.151717,0.85167,0.110594,0.958117,0.735129,0.089609,0.668252,0.311363,0.787794,0.817945,0.747624,0.70021,0.882584,0.0876734,0.0398591,0.692857,0.6813,0.460676,0.329948,0.488726,0.622447,0.460531,0.474127,0.403443,0.983672,0.957987,0.853291,0.977556,0.181031,0.843382,0.895196,0.53045,0.652019,0.896803,0.35793,0.805115,0.678623,0.712093,0.710202,0.181003,0.291284,0.692254,0.186259,0.0638397,0.695656,0.898772,0.110157,0.0757489,0.77172,0.688949,0.741729,0.0642785,0.226982,0.561126,0.528567,0.164014,0.935768,0.495168,0.120357,0.659345,0.938898,0.719281,0.772717,0.326131,0.659716,0.286538,0.665079,0.980461,0.138611,0.895204,0.310128,0.924399,0.604802,0.0129701,0.410052,0.635791,0.711045,0.688586,0.0457508,0.227562,0.862113,0.010608,0.152339,0.259589,0.0898694,0.699591,0.802289,0.789222,0.226348,0.223693,0.516469,0.123667,0.285738,0.0706112,0.855253,0.202932,0.368124,0.256755,0.921684,0.184462,0.82358,0.0667291,0.409224,0.526817,0.506346,0.904869,0.116387,0.915038,0.77333,0.399788,0.54071,0.289218,0.665783,0.364305,0.339823,0.967673,0.0518363,0.687274,0.962145,0.523064,0.246694,0.62174,0.0450189,0.392392,0.995493,0.313507,0.390189,0.421865,0.538052,0.599241,0.380552,0.894016,0.499696,0.250051,0.883015,0.240359,0.756625,0.303215,0.606664,0.566413,0.664156,0.591505,0.183614,0.993147,0.956182,0.8512,0.166701,0.113049,0.366948,0.869966,0.29754,0.386233,0.840307,0.41017,0.492068,0.176288,0.172382,0.812419,0.0383586,0.960451,0.585781,0.273989,0.857099,0.618605,0.897108,0.199763,0.696948,0.857963,0.623829,0.26504,0.720792,0.246443,0.0416623,0.532014,0.46448,0.244786,0.819996,0.34211,0.0199487,0.00112092,0.692679,0.664603,0.265903,0.284618,0.761415,0.919199,0.0236484,0.31642,0.770258,0.737497,0.326814,0.0762967,0.960876,0.469464,0.69332,0.458778,0.302427,0.151798,0.522433,0.484077,0.905057,0.365589,0.38694,0.707043,0.0986539,0.19553,0.0433595,0.116765,0.647112,0.280471,0.761971,0.72972,0.582661,0.644554,0.620131,0.237117,0.135909,0.790843,0.9586,0.131326,0.468412,0.433915,0.699244,0.414969,0.658984,0.295346,0.314538,0.972781,0.170379,0.15632,0.95356,0.376017,0.707243,0.333196,0.580723,0.751607,0.0267947,0.711759,0.0433419,0.576586,0.725532,0.366478,0.457234,0.909787,0.0119423,0.786793,0.378664,0.327374,0.119916,0.688282,0.632311,0.255531,0.689472,0.200625,0.633554,0.10158,0.500852,0.432436,0.242234,0.455387,0.252091,0.801999,0.474474,0.398341,0.888403,0.964881,0.357097,0.818867,0.824144,0.859192,0.48795,0.315099,0.874087,0.437605,0.010083,0.674581,0.802556,0.737462,0.993558,0.19348,0.82131,0.106966,0.364053,0.442117,0.212734,0.935041,0.267303,0.889035,0.205765,0.500196,0.355579,0.967107,0.89272,0.0879101,0.081733,0.0552279,0.357487,0.326517,0.250774,0.424117,0.417564,0.000608802,0.0162739,0.574439,0.968925,0.855927,0.79328,0.21515,0.0787012,0.97079,0.11933,0.639578,0.943408,0.235159,0.293704,0.114559,0.484103,0.191522,0.861118,0.0488313,0.290342,0.429188,0.435533,0.268632,0.706982,0.564315,0.925676,0.461285,0.348744,0.295173,0.488895,0.299633,0.84959,0.796241,0.546298,0.770675,0.93519,0.894143,0.500385,0.307461,0.699031,0.998062,0.168335,0.662051,0.810228,0.827371,0.93706,0.996198,0.564815,0.855551,0.562401,0.0417768,0.163714,0.778988,0.719499,0.316511,0.48917,0.866731,0.135039,0.462834,0.976003,0.537335,0.776544,0.417574,0.50652,0.328994,0.964229,0.0214725,0.599682,0.322297,0.888798,0.421563,0.445843,0.718901,0.155494,0.776955,0.227894,0.437108,0.27485,0.199812,0.412401,0.244403,0.235746,0.0564101,0.316232,0.506096,0.857729,0.547674,0.110588,0.922359,0.664845,0.421437,0.866643,0.185099,0.0695651,0.572344,0.808115,0.5816,0.156109,0.857314,0.458774,0.952897,0.745334,0.480988,0.236199,0.075563,0.0758731,0.263427,0.986741,0.458215,0.981602,0.369654,0.955028,0.518435,0.30074,0.894059,0.591341,0.429302,0.114918,0.96697,0.113819,0.593958,0.8547,0.0978658,0.660484,0.909687,0.85563,0.989359,0.78194,0.685636,0.630765,0.884869,0.982289,0.437145,0.0831788,0.92759,0.260569,0.839583,0.515094,0.143358,0.58744,0.908741,0.498513,0.144209,0.780449,0.255113,0.936349,0.856739,0.506807,0.0438449,0.828589,0.101247,0.266668,0.382212,0.713852,0.590985,0.334999,0.271466,0.17345,0.355314,0.788621,0.123877,0.167964,0.624406,0.371663,0.317227,0.88739,0.733188,0.186961,0.823806,0.882609,0.114116,0.61738,0.971565,0.695788,0.0148591,0.399807,0.000521243,0.588817,0.068737,0.317028,0.177941,0.772762,0.820772,0.779469,0.209632,0.580351,0.600237,0.396178,0.766322,0.443783,0.735608,0.566133,0.256706,0.321662,0.670721,0.460191,0.934902,0.776369,0.28678,0.418044,0.148726,0.0162304,0.573834,0.0333626,0.541808,0.394252,0.958287,0.61864,0.389252,0.222169,0.948489,0.772151,0.825161,0.0484519,0.0625917,0.464752,0.011956,0.226922,0.788962,0.971211,0.607824,0.0326124,0.465133,0.152879,0.54258,0.0865631,0.354551,0.925475,0.21106,0.373728,0.709335,0.491738,0.51859,0.231299,0.474941,0.728121,0.434998,0.238204,0.422182,0.752858,0.322588,0.50585,0.233602,0.783392,0.442701,0.0843796,0.517082,0.214587,0.688537,0.443434,0.6218,0.578468,0.293991,0.478157,0.610725,0.479629,0.412136,0.543808,0.399707,0.125053,0.82662,0.580687,0.0393732,0.637058,0.960908,0.165187,0.858845,0.242139,0.795478,0.634699,0.255614,0.502122,0.0593461,0.172177,0.0532466,0.816844,0.205122,0.935366,0.609868,0.166827,0.499053,0.0136445,0.216061,0.197827,0.391578,0.0463782,0.0802405,0.165125,0.867238,0.431528,0.227814,0.0588782,0.138533,0.424177,0.28932,0.913068,0.0993397,0.495895,0.173994,0.477535,0.0408208,0.321599,0.123143,0.917126,0.18472,0.228827,0.0410262,0.10895,0.837919,0.842734,0.0853266,0.703037,0.191428,0.0247113,0.113682,0.0641221,0.741381,0.874912,0.0122493,0.476027,0.264179,0.844698,0.371013,0.613314,0.0649831,0.258076,0.543072,0.887788,0.488557,0.403133,0.123145,0.934244,0.173623,0.271394,0.275694,0.826881,0.00575793,0.585667,0.32027,0.000413656,0.656568,0.662493,0.0345762,0.520279,0.20255,0.910865,0.373164,0.749171,0.323917,0.639224,0.393457,0.2015,0.815022,0.807684,0.132701,0.488266,0.492029,0.0424024,0.908581,0.217185,0.344559,0.662804,0.789335,0.964349,0.57785,0.151973,0.0500003,0.0870124,0.569995,0.333408,0.934564,0.721432,0.0163383,0.67571,0.646243,0.938272,0.60657,0.654231,0.250988,0.415574,0.595503,0.176998,0.137659,0.674467,0.993824,0.907869,0.424156,0.0997585,0.145225,0.830481,0.844704,0.555938,0.278359,0.440117,0.7081,0.637887,0.423027,0.63376,0.519889,0.618224,0.681241,0.630112,0.00703233,0.226169,0.83563,0.366992,0.573057,0.430792,0.499444,0.124593,0.219104,0.11335,0.18892,0.172564,0.291816,0.862098,0.352113,0.638876,0.63527,0.348607,0.210426,0.573091,0.943895,0.330225,0.425077,0.677432,0.0482619,0.925644,0.483154,0.620282,0.839698,0.529978,0.000359952,0.00161344,0.98239,0.868348,0.759745,0.632942,0.570891,0.279726,0.835736,0.798312,0.0462686,0.308711,0.506848,0.931434,0.237857,0.332112,0.639245,0.850718,0.635421,0.227336,0.426922,0.800211,0.189613,0.665988,0.986253,0.826971,0.687312,0.956731,0.1404,0.00779235,0.54077,0.437211,0.627546,0.723185,0.382102,0.490738,0.00856346,0.839732,0.123429,0.0728628,0.0649093,0.25831,0.171879,0.801067,0.249336,0.223217,0.0796307,0.567965,0.36724,0.182455,0.791017,0.580069,0.876726,0.75923,0.965106,0.248823,0.571146,0.924507,0.442033,0.553398,0.876377,0.373029,0.167474,0.265067,0.0285632,0.138799,0.531199,0.706792,0.193535,0.770249,0.466269,0.864964,0.753198,0.134335,0.547199,0.293874,0.796946,0.280941,0.367948,0.310354,0.682636,0.854541,0.173369,0.759812,0.0263084,0.70227,0.719162,0.145342,0.572768,0.0932521,|0.202315,0.00606507,0.578831,0.240589,0.00142455,0.635594,0.588471,0.391988,0.323681,0.570872,0.0392436,0.524032,0.452593,0.996889,0.74294,0.845269,0.864717,0.271622,0.767751,0.788685,3.08156e-05,0.3492,0.58165,0.360379,0.485248,0.654711,0.788013,0.0736158,0.624708,0.532159,0.0491009,0.372122,0.247749,0.664763,0.194082,0.651273,0.112312,0.723721,0.979818,0.321757,0.436937,0.0736454,0.37926,0.74233,0.503656,0.903468,0.998493,0.994701,0.983185,0.955086,0.766769,0.744589,0.375704,0.62183,0.679639,0.755833,0.763643,0.631565,0.872461,0.168359,0.7968,0.104826,0.711158,0.000973225,0.0953733,0.237584,0.302822,0.610232,0.738719,0.877717,0.659977,0.754963,0.583358,0.900478,0.567057,0.721859,0.728871,0.091149,0.710687,0.865539,0.806375,0.412542,0.516307,0.801783,0.28047,0.880204,0.814293,0.495591,0.656142,0.492855,0.76077,0.695918,0.858769,0.79109,0.529175,0.795149,0.422151,0.700626,0.311855,0.86924,0.694196,0.165068,0.621716,0.168229,0.918267,0.873447,0.774179,0.0982112,0.975158,0.75839,0.589919,0.967157,0.832379,0.41613,0.804476,0.261742,0.644473,0.336161,0.698065,0.88561,0.778843,0.404348,0.518937,0.411895,0.75149,0.893738,0.97651,0.0727161,0.901433,0.679481,0.220137,0.0172881,0.825495,0.806394,0.879654,0.668097,0.417581,0.0496727,0.302971,0.560281,0.547524,0.63337,0.834842,0.0931368,0.16772,0.171923,0.862786,0.158264,0.503587,0.46264,0.301027,0.0762051,0.794141,0.698654,0.698263,0.418005,0.128197,0.942343,0.0888901,0.677436,0.48286,0.161157,0.424319,0.226388,0.219557,0.453241,0.49091,0.280129,0.464544,0.766954,0.626901,0.945708,0.820705,0.312619,0.574965,0.270805,0.227914,0.00544441,0.0886452,0.468,0.51111,0.0480165,0.70582,0.0950171,0.958678,0.376296,0.186626,0.237139,0.962395,0.78356,0.4076,0.207789,0.912186,0.383323,0.207685,0.520555,0.653298,0.300602,0.263491,0.551113,0.643029,0.69438,0.185621,0.347124,0.589105,0.455487,0.572574,0.151743,0.943168,0.488382,0.233002,0.596215,0.049948,0.756874,0.171001,0.116955,0.624604,0.179654,0.219872,0.229342,0.254943,0.36207,0.416396,0.374348,0.119178,0.234632,0.212575,0.438159,0.240173,0.348548,0.617676,0.537826,0.583947,0.720255,0.139568,0.754715,0.92828,0.918757,0.803231,0.807021,0.0849482,0.811161,0.577342,0.215506,0.692008,0.843621,0.25706,0.212493,0.613935,0.151235,0.837421,0.236131,0.782797,0.758523,0.8262,0.453377,0.306978,0.869604,0.193474,0.00504214,0.962058,0.41538,0.944338,0.953489,0.700674,0.047848,0.511737,0.28451,0.107976,0.176087,0.237432,0.727926,0.417109,0.693336,0.605842,0.351493,0.682077,0.885143,0.00534838,0.923825,0.514773,0.48348,0.482852,0.213575,0.732885,0.310576,0.194355,0.715042,0.853903,0.698475,0.826909,0.367136,0.649326,0.19163,0.416416,0.916648,0.947873,0.839987,0.159752,0.960325,0.820652,0.0614286,0.965943,0.282683,0.130288,0.276839,0.552235,0.105922,0.852543,0.00199372,0.329639,0.774982,0.953972,0.114617,0.508055,0.223045,0.615127,0.943578,0.384843,0.0764076,0.603947,0.908652,0.317972,0.405957,0.38152,0.204627,0.808516,0.376671,0.221616,0.814977,0.986454,0.239791,0.965644,0.767642,0.671554,0.151786,0.722111,0.146799,0.191306,0.777054,0.772013,0.308047,0.408649,0.822598,0.253804,0.926851,0.740601,0.720597,0.139878,0.791668,0.139656,0.277891,0.560083,0.515726,0.963594,0.0415583,0.254044,0.85207,0.0862776,0.884133,0.0571374,0.262772,0.979759,0.482793,0.738034,0.21601,0.660913,0.486178,0.506237,0.241176,0.490932,0.240798,0.181361,0.440503,0.0570795,0.44089,0.806469,0.37138,0.0595778,0.717174,0.639848,0.285665,0.855064,0.347416,0.878053,0.642465,0.82442,0.911113,0.276304,0.256049,0.242349,0.865604,0.42454,0.564029,0.0975301,0.220068,0.469968,0.0999449,0.97386,0.64773,0.00519657,0.317614,0.388998,0.0597824,0.927312,0.0510291,0.26802,0.195908,0.889155,0.155888,0.317301,0.735812,0.729612,0.743743,0.922097,0.109283,0.596501,0.35652,0.282617,0.416526,0.0165119,0.748326,0.60667,0.905036,0.79867,0.456962,0.0510579,0.326107,0.734678,0.957326,0.695882,0.560068,0.385577,0.620057,0.794842,0.952515,0.175677,0.244395,0.733215,0.213152,0.0145446,0.987039,0.524454,0.413106,0.865291,0.30094,0.67817,0.72103,0.99498,0.137455,0.903,0.278291,0.57809,0.775109,0.753415,0.0187781,0.881861,0.109092,0.596099,0.900766,0.888921,0.280704,0.805594,0.0769856,0.532092,0.444012,0.315437,0.492585,0.770951,0.867778,0.119257,0.879682,0.527399,0.554499,0.872789,0.390996,0.593609,0.341934,0.146303,0.0840886,0.164131,0.844161,0.461803,0.696839,0.204497,0.161209,0.74159,0.562038,0.271627,0.761433,0.683915,0.6918,0.8642,0.928667,0.502577,0.356783,0.915264,0.685796,0.0936045,0.842245,0.789389,0.0397509,0.459384,0.541369,0.343735,0.820942,0.280392,0.612091,0.628279,0.0903065,0.251509,0.527391,0.530424,0.308699,0.109503,0.0588592,0.541304,0.452204,0.253016,0.610607,0.275292,0.313652,0.279019,0.990303,0.863975,0.986769,0.0469621,0.236029,0.131333,0.894342,0.836557,0.803412,0.559453,0.494422,0.547146,0.406734,0.782132,0.772662,0.1932,0.386469,0.197271,0.314949,0.646233,0.750888,0.864592,0.0877566,0.236313,0.694084,0.547119,0.398947,0.0657228,0.538536,0.518954,0.215243,0.436614,0.0419245,0.379686,0.263942,0.674382,0.13931,0.929396,0.405706,0.162296,0.0398168,0.719713,0.840965,0.219301,0.767917,0.130763,0.228873,0.490071,0.954586,0.2094,0.961474,0.570666,0.285224,0.412875,0.0169803,0.72761,0.794985,0.0556459,0.233474,0.0938521,0.00435257,0.838584,0.567383,0.876112,0.680832,0.834574,0.9345,0.290395,0.977477,0.873611,0.921283,0.759899,0.600865,0.0849724,0.290691,0.505223,0.656546,0.736999,0.908083,0.868057,0.214112,0.456151,0.185027,0.237296,0.689333,0.155607,0.449448,0.0249977,0.392619,0.507549,0.318266,0.0721209,0.654407,0.0531116,0.235126,0.0664528,0.816185,0.131115,0.573414,0.894867,0.837867,0.333173,0.629047,0.836492,0.109428,0.531645,0.218223,0.648276,0.487415,0.139236,0.464168,0.577582,0.671596,0.446913,0.707483,0.864539,0.864179,0.415625,0.746809,0.561117,0.69413,0.419625,0.923401,0.843195,0.509593,0.42322,0.0371073,0.902958,0.174741,0.94719,0.338988,0.645501,0.848683,0.431704,0.20988,0.00354576,0.635273,0.738001,0.586823,0.317144,0.481912,0.187105,0.316301,0.848632,0.633263,0.969154,0.223788,0.460635,0.343867,0.473125,0.605611,0.673146,0.382154,0.495751,0.558899,0.0472994,0.420401,0.5227,0.482435,0.470323,0.0257016,0.682047,0.475005,0.481287,0.769366,0.858622,0.228508,0.20077,0.942464,0.497284,0.683321,0.63436,0.66339,0.107806,0.121374,0.118545,0.987847,0.316108,0.170435,0.27435,0.600807,0.812301,0.110063,0.796827,0.259683,0.377845,0.205988,0.286869,0.589514,0.826252,0.855575,0.854218,0.921588,0.248128,0.806921,0.252698,0.0569961,0.450839,0.328892,0.61794,0.823345,0.372851,0.839273,0.468164,0.194813,0.835082,0.557947,0.092307,0.977897,0.341842,0.516069,0.5606,0.391266,0.660848,0.868512,0.555025,0.909657,0.150098,0.356851,0.669013,0.00423062,0.593141,0.23408,0.313392,0.278887,0.663275,0.688128,0.855488,0.165889,0.798206,0.275974,0.767775,0.466056,0.177673,0.919381,0.467885,0.251612,0.0806635,0.861008,0.328936,0.878562,0.210751,0.0201595,0.859368,0.860537,0.907195,0.527963,0.739677,0.432669,0.444243,0.350233,0.415049,0.374435,0.579132,0.511386,0.336737,0.11941,0.40348,0.935647,0.806832,0.678123,0.263347,0.738264,0.937719,0.0410158,0.370271,0.50902,0.571948,0.468796,0.728552,0.168296,0.869998,0.963103,0.87965,0.8117,0.0639345,0.460172,0.11662,0.198751,0.756477,0.991132,0.605731,0.846826,0.793624,0.547292,0.155335,0.0278609,0.815211,0.982633,0.776469,0.328101,0.806987,0.147191,0.9484,0.821401,0.463195,0.501212,0.816613,0.02294,0.770553,0.580617,0.900662,0.0335619,0.949847,0.139317,0.947607,0.261544,0.84724,0.64223,0.239109,0.644988,0.44214,0.841647,0.925333,0.812293,0.741011,0.0700402,0.623873,0.891622,0.854238,0.189753,0.957404,0.982875,0.831881,0.807149,0.809913,0.51928,0.117365,0.914593,0.286133,0.397126,0.227176,0.0955332,0.990162,0.180651,0.767217,0.113207,0.455135,0.185797,0.488281,0.0473064,0.910561,0.159021,0.535232,0.344725,0.0650076,0.65426,0.508754,0.308991,0.876514,0.112132,0.584832,0.420466,0.684573,0.749085,0.440659,0.971012,0.0379283,0.837427,0.396747,0.831717,0.805844,0.877592,0.152856,0.508992,0.495504,0.266969,0.626467,0.274547,0.203309,0.960632,0.214405,0.308397,0.478355,0.698208,0.455788,0.388557,0.7058,0.950336,0.87403,0.137596,0.344083,0.985803,0.625757,0.105009,0.036806,0.516133,0.403428,0.143046,0.0698584,0.444379,0.109694,0.488639,0.0712204,0.48109,0.953226,0.585349,0.71347,0.288511,0.362125,0.531078,0.792897,0.560385,0.561579,0.178394,0.803701,0.156794,0.647277,0.157453,0.0790296,0.0732937,0.112496,0.731522,0.49497,0.504607,0.00747257,0.227905,0.360205,0.21477,0.0600305,0.137234,0.760022,0.825422,0.92789,0.794002,0.760233,0.257728,0.706855,0.805402,0.36167,0.32473,0.611944,0.621452,0.0487822,0.386575,0.775276,0.278307,0.198503,0.195159,0.928628,0.9255,0.662148,0.494308,0.00101286,0.344492,0.438494,0.437457,0.404662,0.760445,0.747713,0.715406,0.616185,0.00563616,0.726977,0.817757,0.496042,0.971374,0.973694,0.504262,0.293225,0.1378,0.779788,0.972012,0.0918533,0.0407608,0.353967,0.177806,0.563844,0.592169,0.370848,0.0547834,0.705846,0.597776,0.0412956,0.102981,0.127473,0.804926,|0.145514,0.0638778,0.476501,0.433964,0.673356,0.596963,0.187334,0.970316,0.0590689,0.327346,0.28721,0.499218,0.211656,0.0976663,0.695284,0.0585335,0.433002,0.321838,0.0548984,0.183895,0.643457,0.358173,0.189598,0.674607,0.631786,0.168672,0.0178363,0.863163,0.189565,0.795119,0.747063,0.969271,0.763803,0.933862,0.897344,0.9702,0.938949,0.309843,0.0417416,0.148823,0.300275,0.298275,0.68973,0.877701,0.220899,0.085712,0.269363,0.0616063,0.196438,0.0642713,0.956838,0.542386,0.849824,0.477415,0.345701,0.167194,0.570465,0.0773076,0.172518,0.685885,0.318036,0.13509,0.979905,0.668161,0.89432,0.320541,0.0992294,0.326437,0.987585,0.873637,0.892821,0.781635,0.365837,0.529325,0.696954,0.953462,0.624257,0.469254,0.931265,0.153025,0.132809,0.0909258,0.961481,0.958175,0.890266,0.72475,0.824851,0.597748,0.596114,0.27812,0.471494,0.541068,0.869094,0.942407,0.710216,0.391256,0.585856,0.307947,0.546752,0.793697,0.758288,0.770006,0.55503,0.609681,0.575686,0.403666,0.675135,0.444793,0.589202,0.125412,0.781831,0.643212,0.138439,0.60295,0.307513,0.781174,0.956725,0.174002,0.357404,0.597437,0.640986,0.600049,0.12645,0.559191,0.506754,0.497468,0.455498,0.262953,0.642745,0.126334,0.744406,0.413621,0.804897,0.60752,0.369602,0.380803,0.294105,0.866964,0.282057,0.654513,0.572289,0.306504,0.533753,0.860498,0.165598,0.84642,0.408157,0.971414,0.857252,0.42142,0.221366,0.756591,0.00994617,0.322271,0.377837,0.871238,0.843863,0.0429371,0.239909,0.459333,0.866984,0.745495,0.0593423,0.157597,0.275666,0.615801,0.626702,0.763357,0.00235796,0.394522,0.0324349,0.503316,0.848034,0.92775,0.264261,0.30213,0.360603,0.607486,0.00755626,0.535198,0.477891,0.130465,0.59476,0.962882,0.849242,0.040558,0.238557,0.545523,0.145612,0.6232,0.707789,0.747874,0.877966,0.467984,0.662576,0.567341,0.960621,0.28596,0.673164,0.614914,0.306218,0.873542,0.0843845,0.96788,0.0980238,0.4832,0.83464,0.551368,0.693713,0.66032,0.460635,0.0341446,0.0448765,0.869267,0.67725,0.363378,0.605848,0.892004,0.541273,0.429862,0.610177,0.322242,0.262419,0.624939,0.465476,0.367375,0.231821,0.0174818,0.942309,0.788885,0.490105,0.141838,0.440328,0.728801,0.62527,0.362077,0.391008,0.418775,0.419984,0.350448,0.636978,0.92969,0.954683,0.0906805,0.710768,0.37618,0.288608,0.779283,0.403423,0.160073,0.232112,0.359741,0.876357,0.00541496,0.118303,0.0487003,0.47998,0.80015,0.013153,0.143681,0.766107,0.819583,0.42317,0.442554,0.124211,0.267679,0.730664,0.161833,0.431403,0.544357,0.845085,0.87498,0.181311,0.205965,0.053745,0.0444159,0.378008,0.0702189,0.565277,0.769543,0.271019,0.16023,0.0460136,0.54382,0.251838,0.868619,0.946658,0.770911,0.561407,0.0165733,0.537841,0.0703555,0.156169,0.672338,0.777423,0.486973,0.711875,0.508431,0.77666,0.53555,0.394211,0.417811,0.398654,0.253585,0.433873,0.0386627,0.875373,0.81914,0.916981,0.993818,0.528807,0.941592,0.622579,0.854836,0.369255,0.951973,0.564005,0.960359,0.581945,0.152636,0.117748,0.266794,0.316243,0.174369,0.464218,0.121873,0.401463,0.511369,0.22872,0.761527,0.78757,0.347256,0.728383,0.109984,0.79037,0.590556,0.241741,0.0137296,0.352311,0.0458547,0.662664,0.448184,0.664224,0.340558,0.579265,0.920541,0.742311,0.468215,0.674549,0.440739,0.371839,0.787806,0.57004,0.222311,0.173199,0.534941,0.455795,0.847637,0.265263,0.528839,0.982671,0.767306,0.450161,0.0758743,0.689011,0.776594,0.13277,0.926859,0.549558,0.982281,0.281508,0.961948,0.559306,0.380005,0.51791,0.837727,0.727656,0.26874,0.872277,0.063511,0.672792,0.635067,0.909841,0.712344,0.335801,0.461957,0.656658,0.980323,0.265653,0.321659,0.184752,0.0191255,0.492455,0.930506,0.826467,0.0239731,0.126331,0.334513,0.485771,0.435868,0.721315,0.894098,0.952588,0.747528,0.973908,0.510814,0.914862,0.353537,0.614074,0.823225,0.244254,0.796975,0.594981,0.119611,0.103155,0.0714679,0.574178,0.733023,0.583361,0.758713,0.491768,0.717717,0.516387,0.339214,0.499475,0.607236,0.878138,0.894522,0.184625,0.167954,0.806237,0.0724711,0.630422,0.382309,0.0441155,0.224472,0.665463,0.260094,0.377977,0.883287,0.71006,0.237078,0.0821194,0.32891,0.980077,0.951042,0.78437,0.700535,0.986224,0.878397,0.274281,0.407794,0.126299,0.690042,0.705386,0.993447,0.975059,0.527922,0.72998,0.207735,0.436719,0.900926,0.228428,0.337033,0.637091,0.712012,0.577012,0.647969,0.508216,0.256604,0.802105,0.149072,0.886183,0.32447,0.486061,0.895559,0.965583,0.861897,0.959588,0.671371,0.545447,0.822251,0.910735,0.625889,0.00254363,0.069197,0.539342,0.215301,0.307362,0.352342,0.887035,0.26238,0.953646,0.992597,0.712994,0.715175,0.0867606,0.687763,0.0825167,0.531487,0.388262,0.296574,0.325033,0.94906,0.685005,0.206975,0.953751,0.807457,0.736117,0.703449,0.548621,0.924914,0.765301,0.907663,0.460398,0.226444,0.398042,0.497248,0.728542,0.61008,0.99608,0.94274,0.762609,0.598789,0.453516,0.84062,0.637423,0.520094,0.874089,0.683634,0.281266,0.881403,0.285631,0.822296,0.097657,0.172917,0.697687,0.919192,0.970105,0.0548239,0.460006,0.913064,0.535009,0.608161,0.148982,0.728687,0.482102,0.993237,0.233649,0.443587,0.914885,0.864396,0.304624,0.00305396,0.47872,0.626646,0.936379,0.331363,0.858399,0.985357,0.297574,0.287003,0.470822,0.586965,0.128959,0.465249,0.187429,0.358184,0.294414,0.460853,0.119445,0.423238,0.0580433,0.5441,0.525447,0.25237,0.523422,0.709868,0.370685,0.560953,0.906451,0.988301,0.793134,0.390749,0.584264,0.365847,0.214133,0.43434,0.378127,0.594637,0.0710248,0.248852,0.842986,0.602871,0.784381,0.530527,0.220858,0.941047,0.306987,0.230952,0.855759,0.797988,0.222823,0.299994,0.147014,0.715128,0.05243,0.000219882,0.365894,0.418644,0.601121,0.0216204,0.23983,0.692307,0.858643,0.0401869,0.270379,0.991647,0.443362,0.772683,0.0956615,0.221937,0.425265,0.259885,0.845274,0.934893,0.786845,0.507305,0.835328,0.918223,0.503318,0.648283,0.268556,0.143613,0.71172,0.593406,0.714853,0.0352996,0.726626,0.94247,0.675774,0.0124575,0.309406,0.13439,0.192202,0.00101262,0.662631,0.910533,0.077393,0.929863,0.318756,0.884998,0.0474507,0.0686787,0.664312,0.322318,0.852118,0.984929,0.8687,0.128641,0.234546,0.299022,0.559016,0.677485,0.669096,0.617818,0.348708,0.414319,0.193222,0.291726,0.770028,0.10418,0.729092,0.756901,0.409582,0.20866,0.348053,0.793677,0.366733,0.621961,0.786847,0.795974,0.310315,0.147189,0.390712,0.46199,0.665241,0.943626,0.259078,0.974618,0.736802,0.393665,0.373062,0.810675,0.461295,0.226302,0.153561,0.0878656,0.496255,0.0078094,0.936035,0.0241876,0.99996,0.0504659,0.412581,0.900273,0.588409,0.629805,0.716636,0.182215,0.598019,0.230428,0.893491,0.560512,0.186933,0.0671496,0.711837,0.374736,0.0364862,0.307391,0.508509,0.488797,0.243319,0.369585,0.600714,0.945329,0.39281,0.0223516,0.357538,0.188222,0.679752,0.928841,0.745629,0.695317,0.738173,0.49103,0.135382,0.617548,0.464561,0.725605,0.759799,0.668407,0.119256,0.869927,0.554911,0.13184,0.619881,0.885349,0.792233,0.0141359,0.100543,0.664896,0.224665,0.509681,0.496218,0.202106,0.596365,0.243975,0.957993,0.303071,0.660031,0.357382,0.968237,0.381584,0.16092,0.842384,0.135652,0.0476104,0.654612,0.585028,0.669144,0.922199,0.665596,0.152876,0.062167,0.664387,0.240144,0.808824,0.635522,0.311763,0.331038,0.788247,0.656882,0.404608,0.878123,0.322998,0.373155,0.0522904,0.276341,0.880653,0.753003,0.0357206,0.0585406,0.104581,0.90192,0.874065,0.145679,0.110422,0.856259,0.2343,0.420358,0.106872,0.798724,0.99658,0.201536,0.407715,0.846016,0.0592103,0.321063,0.666024,0.485803,0.199565,0.226757,0.222584,0.344794,0.0261093,0.1127,0.569144,0.0483127,0.432403,0.362671,0.920289,0.874409,0.572954,0.519131,0.32521,0.0376014,0.828779,0.78866,0.542471,0.33255,0.103555,0.580667,0.68386,0.488251,0.911328,0.293197,0.519854,0.433437,0.476466,0.854634,0.377542,0.117914,0.608813,0.956257,0.986887,0.490704,0.864287,0.747006,0.432856,0.825858,0.29747,0.266731,0.149053,0.916036,0.379758,0.391213,0.557318,0.902742,0.706948,0.170756,0.403074,0.893558,0.22199,0.47022,0.251342,0.668229,0.253351,0.77592,0.944739,0.829856,0.51672,0.51086,0.686481,0.215009,0.777061,0.348443,0.441206,0.264453,0.339162,0.858524,0.348202,0.89551,0.432459,0.728263,0.157881,0.941603,0.731622,0.277539,0.913219,0.337976,0.718158,0.322218,0.479728,0.442015,0.890367,0.0271505,0.642861,0.133965,0.846731,0.528636,0.399135,0.920882,0.47882,0.239337,0.738268,0.713513,0.65704,0.809847,0.286596,0.839591,0.0712824,0.489764,0.689619,0.750743,0.842069,0.140552,0.832659,0.532091,0.0386254,0.753997,0.128124,0.158484,0.925377,0.838967,0.762888,0.518398,0.36805,0.930981,0.0338147,0.289315,0.448653,0.393249,0.3341,0.259141,0.269458,0.776089,0.559961,0.834791,0.99639,0.955509,0.861575,0.220818,0.457346,0.587678,0.118218,0.241677,0.702097,0.67454,0.0854841,0.600339,0.1739,0.1874,0.467468,0.564397,0.0488335,0.101204,0.0503729,0.55653,0.191936,0.163056,0.0286668,0.844728,0.0330799,0.808111,0.616514,0.794714,0.436946,0.639581,0.16422,0.79731,0.224405,0.993815,0.561774,0.240414,0.0805049,0.616224,0.744745,0.270285,0.869301,0.735996,0.853599,0.286615,0.245328,0.805103,0.690057,0.508839,0.201707,0.717102,0.228335,0.444713,0.345141,0.468093,0.180768,0.722301,0.711014,0.324855,0.0647494,0.223836,0.344665,|0.628297,0.824932,0.109685,0.00978446,0.391336,0.304303,0.861445,0.0369143,0.736059,0.924951,0.170057,0.452989,0.223842,0.80044,0.455208,0.590781,0.264319,0.264381,0.467621,0.00712049,0.755526,0.472238,0.499625,0.858351,0.479154,0.996,0.680298,0.427535,0.135827,0.632401,0.735714,0.739956,0.37534,0.293198,0.151064,0.514987,0.0942682,0.520282,0.00612247,0.530914,0.731436,0.73918,0.38027,0.236232,0.913584,0.722061,0.211698,0.828706,0.577344,0.0779357,0.512165,0.521512,0.058816,0.33577,0.644234,0.35223,0.452736,0.483829,0.708249,0.951409,0.0395356,0.000108838,0.493844,0.8556,0.0325014,0.298568,0.351907,0.601467,0.880215,0.666293,0.241546,0.234299,0.0147452,0.664581,0.527763,0.452552,0.875163,0.266684,0.813106,0.122999,0.501781,0.939865,0.815514,0.819702,0.187317,0.080609,0.817746,0.0268329,0.104379,0.197626,0.593019,0.322878,0.178474,0.223239,0.224635,0.842392,0.890459,0.297105,0.450726,0.0231082,0.0806476,0.555262,0.632122,0.772633,0.307755,0.610702,0.0106182,0.712002,0.393134,0.736385,0.817943,0.90111,0.984066,0.927161,0.438154,0.0124688,0.104765,0.458027,0.062128,0.562485,0.421406,0.128102,0.00195283,0.378201,0.882105,0.660682,0.856482,0.471331,0.180993,0.702138,0.170892,0.561537,0.530024,0.894044,0.463886,0.406248,0.399608,0.518267,0.489336,0.771062,0.917923,0.834069,0.262492,0.938798,0.125884,0.288769,0.145632,0.794827,0.396808,0.554025,0.571653,0.360594,0.502122,0.163778,0.624394,0.597107,0.343158,0.421175,0.75185,0.327252,0.64724,0.49422,0.665918,0.329828,0.974657,0.460867,0.824196,0.173238,0.419861,0.833166,0.121573,0.10086,0.316851,0.41093,0.592945,0.233161,0.0290436,0.691868,0.444701,0.581889,0.659252,0.444181,0.73641,0.733362,0.452211,0.176148,0.340721,0.874697,0.238516,0.594863,0.754827,0.320793,0.351989,0.339698,0.742888,0.592509,0.782179,0.687884,0.0116158,0.46935,0.426872,0.249719,0.544752,0.0593586,0.347044,0.559048,0.777333,0.251901,0.302651,0.795914,0.424175,0.0973887,0.720779,0.956372,0.231718,0.120772,0.597049,0.50121,0.772878,0.376147,0.240472,0.666391,0.896822,0.13441,0.615907,0.0975593,0.305882,0.210884,0.0478402,0.641121,0.0428081,0.469063,0.988872,0.74562,0.202307,0.311159,0.12175,0.275641,0.916957,0.910353,0.872532,0.104985,0.359775,0.901789,0.378201,0.484889,0.177518,0.518612,0.3827,0.24736,0.577681,0.565315,0.732147,0.533527,0.859944,0.179541,0.787963,0.626876,0.42497,0.501891,0.372338,0.0999625,0.0539569,0.925579,0.879668,0.203306,0.422957,0.936577,0.249659,0.563299,0.170188,0.725293,0.985412,0.839958,0.448497,0.167067,0.83367,0.214768,0.938171,0.0181645,0.267756,0.99308,0.754866,0.351467,0.341395,0.375414,0.899016,0.475422,0.510972,0.807219,0.487875,0.719475,0.284733,0.605258,0.554148,0.645137,0.0523773,0.0128115,0.0478415,0.294299,0.471888,0.54254,0.641365,0.848052,0.931166,0.293965,0.36439,0.0212313,0.679294,0.555381,0.802119,0.642694,0.436195,0.55137,0.778394,0.477842,0.684873,0.769151,0.803148,0.252597,0.962641,0.99391,0.704832,0.706188,0.365994,0.735651,0.536451,0.212939,0.205185,0.0176892,0.147661,0.467472,0.230285,0.295016,0.4644,0.960313,0.504571,0.532627,0.106372,0.874239,0.156738,0.524823,0.170119,0.662668,0.510382,0.0364466,0.153843,0.649649,0.90504,0.313597,0.571607,0.342802,0.362012,0.889703,0.840057,0.450768,0.466004,0.612928,0.158408,0.392206,0.702489,0.00187922,0.916501,0.609725,0.522865,0.81254,0.294817,0.109745,0.434259,0.877469,0.235914,0.356144,0.282007,0.387602,0.691323,0.599105,0.696935,0.361933,0.255084,0.320643,0.252928,0.262883,0.584125,0.324464,0.210386,0.145155,0.415371,0.859018,0.527102,0.844232,0.412683,0.629194,0.179132,0.670375,0.979262,0.890957,0.298321,0.597528,0.618538,0.138576,0.449453,0.312893,0.970294,0.92473,0.885418,0.787175,0.618205,0.477467,0.537672,0.766878,0.262714,0.375799,0.246723,0.620858,0.435236,0.26164,0.0930997,0.60342,0.449764,0.47507,0.742998,0.0324267,0.830276,0.438051,0.990447,0.504528,0.981541,0.880149,0.602514,0.349748,0.518316,0.863158,0.61073,0.00678504,0.913668,0.945438,0.493342,0.449257,0.890684,0.145215,0.693182,0.873471,0.567632,0.883826,0.138522,0.0644473,0.810001,0.098641,0.00253385,0.722396,0.911103,0.648873,0.130419,0.759062,0.229361,0.402995,0.00610328,0.414426,0.794096,0.738041,0.385187,0.464175,0.805542,0.333753,0.34686,0.75543,0.558866,0.558908,0.0763156,0.833157,0.79618,0.971281,0.898187,0.683526,0.523853,0.466509,0.231161,0.603912,0.410887,0.614107,0.777277,0.216553,0.895217,0.908345,0.963405,0.719082,0.216611,0.706697,0.576851,0.0339703,0.965147,0.904299,0.883798,0.638377,0.907549,0.455881,0.595764,0.596682,0.183892,0.480585,0.53976,0.92105,0.937789,0.3414,0.50148,0.489698,0.413078,0.726779,0.576818,0.599237,0.190605,0.653134,0.0389197,0.524744,0.0398683,0.0480917,0.266065,0.349997,0.219318,0.255342,0.844705,0.387681,0.491804,0.292495,0.775282,0.618973,0.711552,0.986254,0.281166,0.959566,0.118969,0.743594,0.0651604,0.975214,0.202548,0.100483,0.00637972,0.0658695,0.731435,0.507531,0.301094,0.945211,0.805524,0.437405,0.597396,0.589495,0.481061,0.253952,0.890627,0.889506,0.564223,0.0591835,0.493866,0.811982,0.0367494,0.381556,0.818752,0.339224,0.099833,0.426655,0.416798,0.283887,0.675538,0.372656,0.108507,0.911237,0.157507,0.758865,0.170762,0.154703,0.883914,0.48868,0.738207,0.930412,0.827319,0.0751571,0.428172,0.928417,0.00641954,0.590688,0.578735,0.955751,0.314215,0.826487,0.0569199,0.720048,0.388922,0.0854393,0.0826958,0.145704,0.928894,0.850234,0.923275,0.347356,0.0999483,0.0322401,0.300292,0.299989,0.00833666,0.167631,0.522099,0.272769,0.602186,0.948301,0.132476,0.268516,0.276165,0.902743,0.127862,0.841971,0.111054,0.153933,0.774185,0.0654483,0.922533,0.410885,0.716815,0.35029,0.492398,0.814659,0.137037,0.584177,0.803166,0.0712618,0.150877,0.507146,0.658991,0.0947155,0.0237756,0.620988,0.434871,0.453729,0.962968,0.307834,0.145555,0.616746,0.0273817,0.298824,0.384916,0.819825,0.854529,0.560512,0.611457,0.516826,0.555702,0.808892,0.606428,0.135998,0.812449,0.210551,0.646226,0.286555,0.0238225,0.0493501,0.831536,0.472604,0.0715621,0.263078,0.392144,0.150192,0.434166,0.640618,0.345697,0.572018,0.21703,0.716791,0.0123377,0.153946,0.324194,0.948416,0.91411,0.165636,0.58818,0.959791,0.468592,0.838228,0.122271,0.567375,0.821143,0.205197,0.184511,0.643055,0.346346,0.473261,0.59466,0.915943,0.738264,0.425288,0.417219,0.536683,0.713596,0.136696,0.882375,0.38381,0.726513,0.679949,0.426281,0.770691,0.5849,0.884182,0.434571,0.815445,0.0626846,0.610967,0.77233,0.5908,0.911309,0.851623,0.45483,0.701394,0.228999,0.517628,0.654962,0.525288,0.207635,0.115319,0.0880923,0.270677,0.418703,0.10799,0.833731,0.900598,0.162359,0.342778,0.271661,0.965442,0.362964,0.527072,0.0113007,0.268465,0.688508,0.610852,0.732607,0.526966,0.198008,0.419271,0.88666,0.0200493,0.613258,0.363016,0.672754,0.622823,0.11368,0.351829,0.818704,0.351035,0.197338,0.473387,0.485009,0.0587737,0.336178,0.891342,0.561961,0.946386,0.944258,0.122369,0.519858,0.876218,0.359989,0.617501,0.263162,0.212394,0.221864,0.542776,0.708657,0.259932,0.426986,0.665709,0.509631,0.0629726,0.503095,0.780331,0.0510176,0.753066,0.345066,0.587393,0.312661,0.834049,0.351531,0.475097,0.170128,0.196043,0.417607,0.687785,0.170127,0.943799,0.4002,0.718276,0.490434,0.0020203,0.541009,0.759215,0.617952,0.0615689,0.732991,0.450703,0.76854,0.904705,0.69895,0.326645,0.484723,0.9256,0.862911,0.120547,0.761058,0.839619,0.154483,0.91921,0.678252,0.259992,0.092235,0.187656,0.694443,0.731046,0.49558,0.978058,0.07988,0.0823931,0.24216,0.294826,0.0796267,0.154,0.591103,0.106717,0.502659,0.643247,0.465981,0.458318,0.317034,0.583382,0.560488,0.753029,0.895448,0.0827609,0.846172,0.847618,0.370527,0.526699,0.689403,0.711297,0.809356,0.455659,0.2676,0.0461631,0.60962,0.254009,0.446161,0.38425,0.631668,0.811173,0.601329,0.40874,0.605448,0.391343,0.512471,0.529278,0.587433,0.157781,0.602362,0.593237,0.520837,0.241113,0.239593,0.509,0.938125,0.0618197,0.525764,0.116811,0.661166,0.0465117,0.86778,0.863333,0.942863,0.136138,0.786143,0.806532,0.40171,0.77111,0.830227,0.0394436,0.958785,0.586835,0.774071,0.0467574,0.585081,0.969466,0.412208,0.971566,0.696991,0.0782852,0.512763,0.23362,0.695822,0.75814,0.0133498,0.963233,0.530992,0.835544,0.752323,0.00900793,0.0223101,0.919478,0.312194,0.156814,0.461511,0.308411,0.0504067,0.985827,0.914581,0.0983569,0.667451,0.922336,0.272779,0.889714,0.850895,0.0202531,0.758186,0.28198,0.360593,0.356336,0.442914,0.773855,0.211749,0.274875,0.845031,0.971515,0.249875,0.654073,0.00822639,0.537136,0.931827,0.0595767,0.813365,0.0916474,0.547397,0.804944,0.51818,0.859874,0.423599,0.765011,0.591466,0.667097,0.0628573,0.863943,0.395867,0.325656,0.209377,0.112138,0.164768,0.81261,0.848985,0.108406,0.180062,0.0258006,0.975729,0.0854119,0.642946,0.413424,0.426905,0.042879,0.969589,0.395741,0.399618,0.529184,0.167218,0.710343,0.640294,0.601069,0.321468,0.870944,0.942588,0.511198,0.206105,0.825827,0.223267,0.259737,0.675361,0.374046,0.090872,0.095631,0.613088,0.563597,0.92249,0.0291026,0.843191,0.918287,0.055575,0.837172,0.627415,0.942195,0.929586,0.763009,0.547549,0.534568,0.88163,0.00987625,0.0213637,0.448137,0.916051,0.0613028,|0.586931,0.728119,0.0221894,0.612709,0.127303,0.621213,0.834502,0.480548,0.785597,0.31779,0.175008,0.957941,0.264169,0.850468,0.431937,0.171888,0.48355,0.675481,0.914908,0.441594,0.0258132,0.127361,0.376649,0.280464,0.684159,0.177252,0.693138,0.214331,0.84194,0.689674,0.963235,0.147773,0.681206,0.594698,0.888911,0.984851,0.345466,0.34872,0.0923488,0.632643,0.261272,0.0460061,0.278049,0.734917,0.570027,0.992582,0.173126,0.611061,0.943428,0.142889,0.99001,0.625802,0.327562,0.031123,0.306869,0.282739,0.0229677,0.972366,0.426377,0.28307,0.755631,0.405923,0.318283,0.433344,0.755476,0.840583,0.846896,0.333649,0.899499,0.312987,0.43983,0.00423729,0.339836,0.895804,0.27117,0.517329,0.808561,0.682613,0.110311,0.884081,0.625233,0.111914,0.855485,0.886559,0.4597,0.871251,0.60695,0.0262134,0.86025,0.400257,0.451904,0.727254,0.461796,0.370471,0.118493,0.970225,0.345308,0.984243,0.903655,0.252309,0.139978,0.721108,0.00473338,0.90262,0.00823051,0.24179,0.324208,0.180621,0.0985252,0.673483,0.275841,0.9449,0.588184,0.767707,0.288219,0.55755,0.264925,0.034641,0.163047,0.960175,0.451541,0.189529,0.109057,0.396549,0.378766,0.251793,0.817297,0.765937,0.944169,0.988082,0.734918,0.341866,0.734524,0.466308,0.264938,0.89998,0.588068,0.63109,0.433154,0.256621,0.0809395,0.101693,0.271343,0.82299,0.692645,0.750534,0.382643,0.759075,0.880546,0.655286,0.201162,0.437908,0.757661,0.532783,0.503945,0.314392,0.906166,0.340264,0.604141,0.914685,0.625206,0.0909652,0.00345671,0.0856567,0.244198,0.912844,0.471593,0.742709,0.0773154,0.12619,0.914862,0.276254,0.801139,0.365079,0.917031,0.028503,0.233015,0.870282,0.745879,0.252535,0.183833,0.984428,0.957743,0.663258,0.929443,0.329221,0.295904,0.617626,0.219377,0.283291,0.578459,0.517175,0.973981,0.860138,0.0717437,0.100206,0.56051,0.161979,0.591561,0.966549,0.020057,0.443185,0.0451514,0.516733,0.522416,0.645665,0.100789,0.763967,0.198051,0.555176,0.151253,0.112158,0.162721,0.302561,0.785386,0.623841,0.545569,0.390958,0.356889,0.711913,0.205633,0.310588,0.18255,0.60034,0.732889,0.257544,0.969416,0.819032,0.152837,0.946661,0.565501,0.323622,0.920803,0.325361,0.0347547,0.725542,0.857401,0.063589,0.678472,0.255148,0.410921,0.303677,0.0241255,0.596422,0.706166,0.484823,0.884042,0.0897756,0.926487,0.478683,0.396404,0.250101,0.0135853,0.650823,0.773262,0.350333,0.340187,0.152208,0.639232,0.24152,0.644909,0.430927,0.637609,0.392451,0.744121,0.643611,0.656298,0.230284,0.142884,0.023354,0.0814247,0.10573,0.774522,0.556869,0.781555,0.326088,0.124776,0.721949,0.520282,0.480459,0.200931,0.593857,0.248176,0.117646,0.612445,0.867325,0.294605,0.380693,0.897764,0.78542,0.104057,0.778455,0.461286,0.592765,0.167492,0.824523,0.221303,0.862702,0.32867,0.918998,0.771841,0.078353,0.144723,0.846623,0.588888,0.783468,0.371235,0.0844163,0.576778,0.453549,0.764513,0.744929,0.982551,0.852116,0.366733,0.274023,0.68517,0.953826,0.0314775,0.509423,0.562661,0.151772,0.487464,0.625649,0.508221,0.0697734,0.112134,0.689232,0.842047,0.0425177,0.454984,0.486219,0.993033,0.321394,0.28073,0.515453,0.693833,0.0935609,0.314849,0.801826,0.512253,0.631028,0.826236,0.441684,0.0935897,0.463373,0.0680137,0.90271,0.510706,0.0117128,0.859968,0.607289,0.080745,0.995635,0.311334,0.896161,0.586909,0.774583,0.382981,0.424371,0.901682,0.666025,0.407634,0.277299,0.223246,0.424092,0.61681,0.385496,0.123009,0.411189,0.661543,0.322175,0.762716,0.002895,0.562778,0.76576,0.255455,0.872656,0.546778,0.32898,0.400557,0.692928,0.41055,0.212722,0.185994,0.800968,0.585768,0.245963,0.556031,0.108863,0.0833409,0.794501,0.571685,0.408129,0.841208,0.911201,0.606031,0.0142574,0.742203,0.98609,0.70041,0.16757,0.227363,0.546269,0.531868,0.357843,0.868977,0.180764,0.618793,0.308947,0.00910819,0.865371,0.629841,0.0438321,0.631221,0.250361,0.641304,0.269298,0.851931,0.793005,0.713397,0.759763,0.329967,0.0524085,0.771904,0.296295,0.988603,0.179531,0.94689,0.904966,0.796505,0.747871,0.792236,0.0240963,0.785294,0.945734,0.097029,0.832241,0.612665,0.467868,0.888023,0.0807021,0.0667953,0.194743,0.0623688,0.947011,0.583834,0.22009,0.613375,0.406854,0.00953001,0.888816,0.562327,0.288105,0.2824,0.648305,0.624224,0.680832,0.263935,0.681186,0.394818,0.0486373,0.0284182,0.0176145,0.0397823,0.816811,0.565814,0.216572,0.687187,0.78305,0.567293,0.121441,0.407228,0.288256,0.251827,0.656721,0.281211,0.153368,0.228429,0.418285,0.236751,0.910648,0.368862,0.846759,0.0344552,0.698419,0.406083,0.705662,0.738184,0.952048,0.908316,0.427939,0.8463,0.119975,0.179485,0.679576,0.111779,0.776891,0.575394,0.138982,0.546058,0.366403,0.364584,0.038964,0.860903,0.0859056,0.648097,0.484979,0.900183,0.877701,0.566544,0.490222,0.397537,0.810403,0.877981,0.313328,0.787954,0.0621634,0.573223,0.874137,0.17133,0.923128,0.299973,0.0442436,0.259711,0.493506,0.325816,0.0138,0.560518,0.00556171,0.590677,0.432531,0.320298,0.963596,0.762395,0.559649,0.17388,0.256585,0.398952,0.559675,0.861355,0.821964,0.855207,0.621458,0.060267,0.462032,0.728849,0.439519,0.674694,0.979255,0.878717,0.370327,0.417183,0.93023,0.816563,0.322927,0.220439,0.235763,0.234364,0.434819,0.502494,0.448979,0.591864,0.389083,0.920084,0.074817,0.971565,0.868001,0.0851777,0.683124,0.529506,0.495713,0.184425,0.41471,0.370004,0.746162,0.858598,0.773299,0.0207051,0.63533,0.673436,0.759963,0.191312,0.51062,0.588693,0.17574,0.675066,0.395712,0.647221,0.746288,0.912337,0.376138,0.214647,0.944636,0.208249,0.407334,0.180286,0.204131,0.299838,0.562755,0.158314,0.419904,0.703073,0.469969,0.351538,0.393228,0.11683,0.959832,0.356993,0.0131815,0.533609,0.0899622,0.741131,0.95337,0.273046,0.903581,0.858575,0.922519,0.198119,0.0361194,0.988575,0.651633,0.335591,0.280693,0.47599,0.569104,0.0838603,0.373276,0.129211,0.598533,0.719165,0.0526544,0.557503,0.757077,0.578861,0.367031,0.668669,0.520893,0.933362,0.440784,0.310971,0.957935,0.631677,0.513646,0.694106,0.620611,0.488775,0.875654,0.713329,0.677069,0.627618,0.340871,0.567981,0.0974783,0.418029,0.201441,0.243002,0.688286,0.127054,0.157074,0.0198527,0.396056,0.646839,0.243049,0.413984,0.0994539,0.454289,0.228685,0.818261,0.710535,0.611563,0.564037,0.535376,0.0353692,0.972426,0.90595,0.728748,0.0388595,0.557898,0.99828,0.937421,0.346307,0.271776,0.50423,0.741529,0.258546,0.828832,0.208398,0.268344,0.333251,0.0195277,0.463,0.427124,0.380674,0.952995,0.37481,0.300043,0.51839,0.0485762,0.947863,0.582611,0.438868,0.0339485,0.623689,0.977531,0.557119,0.122424,0.811454,0.757185,0.0151802,0.908805,0.169203,0.232733,0.256857,0.692718,0.183964,0.87551,0.633179,0.400629,0.31241,0.543209,0.232341,0.901585,0.529296,0.45822,0.669425,0.307774,0.0700209,0.267024,0.0134954,0.832283,0.320503,0.788317,0.109381,0.0642516,0.69983,0.328556,0.736463,0.140193,0.658105,0.760965,0.757829,0.807218,0.125398,0.930294,0.979477,0.555088,0.0546589,0.835899,0.674535,0.467104,0.182913,0.462174,0.380145,0.0599715,0.387439,0.0762773,0.647156,0.908185,0.287817,0.0532086,0.647798,0.185451,0.247398,0.610432,0.521533,0.337391,0.978914,0.0338528,0.513655,0.376599,0.620583,0.711111,0.141623,0.121459,0.868001,0.302455,0.811381,0.57765,0.108281,0.111739,0.409765,0.369481,0.927224,0.264659,0.765424,0.464858,0.137383,0.367041,0.0290207,0.286727,0.677516,0.67174,0.426618,0.292203,0.673953,0.421049,0.495717,0.32454,0.598291,0.493242,0.0199193,0.252875,0.519931,0.944264,0.171932,0.300312,0.306345,0.817371,0.605075,0.0558131,0.335408,0.255135,0.334795,0.581348,0.930461,0.795838,0.341225,0.278072,0.546192,0.495128,0.057197,0.749417,0.649298,0.238527,0.785928,0.378702,0.404057,0.614995,0.27912,0.833337,0.467464,0.521211,0.526763,0.0604222,0.676283,0.430194,0.713,0.19104,0.869725,0.337509,0.856647,0.430483,0.0221354,0.528575,0.902351,0.168718,0.718116,0.192419,0.0306745,0.392576,0.583673,0.634285,0.121667,0.849379,0.77493,0.0904858,0.221325,0.295186,0.938211,0.657865,0.410388,0.42399,0.835842,0.653431,0.113766,0.461815,0.738683,0.277279,0.439991,0.692835,0.565557,0.083796,0.617581,0.3381,0.974253,0.455582,0.267762,0.760149,0.715879,0.0216594,0.999512,0.86104,0.967294,0.579258,0.183659,0.791562,0.579647,0.138641,0.0164083,0.811372,0.490196,0.997633,0.718934,0.798436,0.754874,0.314421,0.513464,0.535919,0.299037,0.920342,0.394877,0.258478,0.292781,0.964786,0.180583,0.407411,0.532344,0.210923,0.776638,0.562247,0.704316,0.0798116,0.809903,0.318236,0.779452,0.0441747,0.827234,0.544021,0.146776,0.120357,0.82646,0.290116,0.0709175,0.226339,0.111032,0.851148,0.970458,0.0455458,0.905093,0.434291,0.152501,0.902401,0.0619061,0.394919,0.818478,0.201676,0.537625,0.858528,0.89944,0.42726,0.458432,0.096053,0.990456,0.40196,0.875194,0.813799,0.793117,0.416709,0.841833,0.483014,0.867226,0.407871,0.0622669,0.236504,0.448139,0.685461,0.0779346,0.436498,0.0193968,0.34712,0.116605,0.232256,0.852373,0.601975,0.879234,0.996042,0.184321,0.920048,0.824749,0.808417,0.789246,0.362322,0.0220204,0.679151,0.898999,0.753838,0.7284,0.64294,0.756981,0.761781,0.192,0.685666,0.62489,0.182865,0.610146,0.476434,0.668481,0.751026,0.509846,0.815186,0.24688,0.20495,0.687833,0.332853,0.371964,0.448803,0.597194,0.143901,0.48333,|0.956386,0.74779,0.57562,0.149246,0.72022,0.129969,0.881087,0.883012,0.558098,0.875822,0.881981,0.586541,0.666279,0.171134,0.055791,0.283634,0.594755,0.754464,0.814087,0.341611,0.193781,0.169938,0.00788927,0.745141,0.81508,0.906125,0.849065,0.405716,0.83313,0.7291,0.813857,0.602861,0.599309,0.256469,0.161215,0.527206,0.432053,0.463098,0.00236917,0.464316,0.219589,0.209882,0.15439,0.936827,0.0262986,0.199477,0.231538,0.732401,0.790129,0.760872,0.0933709,0.257075,0.336989,0.539798,0.0605553,0.0982552,0.773674,0.9933,0.385674,0.939542,0.223259,0.0947971,0.736778,0.760427,0.240526,0.433983,0.524986,0.624795,0.557277,0.565867,0.109466,0.157006,0.604234,0.622946,0.503251,0.274312,0.749698,0.0846155,0.625755,0.109655,0.474969,0.283,0.358334,0.405762,0.772101,0.472741,0.871711,0.201854,0.351656,0.410125,0.14919,0.249423,0.363241,0.756981,0.158156,0.808392,0.25615,0.988914,0.563444,0.222154,0.253343,0.120792,0.272246,0.570311,0.20208,0.467265,0.543226,0.0408373,0.893092,0.0321403,0.278612,0.388235,0.936862,0.615624,0.709584,0.957346,0.833774,0.496618,0.500418,0.985966,0.33786,0.887174,0.297845,0.337078,0.361517,0.999112,0.501636,0.0433019,0.455724,0.41593,0.449216,0.147147,0.237125,0.501067,0.631166,0.420601,0.832221,0.246635,0.7902,0.927159,0.561168,0.330318,0.512701,0.233688,0.234228,0.619858,0.653893,0.916698,0.739075,0.720472,0.515526,0.595207,0.737794,0.914112,0.945099,0.48236,0.490771,0.728447,0.274831,0.756908,0.799797,0.824481,0.997019,0.51743,0.134051,0.119198,0.718511,0.323491,0.589139,0.835914,0.754655,0.503206,0.279862,0.213646,0.10958,0.902666,0.519184,0.653997,0.671299,0.00463325,0.747285,0.503467,0.920502,0.986894,0.131461,0.421138,0.291868,0.622537,0.485427,0.0352669,0.859097,0.937115,0.544472,0.1627,0.886387,0.797289,0.0392929,0.0319858,0.571549,0.15171,0.579262,0.337493,0.132525,0.12065,0.682485,0.930129,0.854459,0.521199,0.461079,0.216791,0.400648,0.730184,0.0868209,0.603487,0.795984,0.791785,0.708286,0.405836,0.0847483,0.469272,0.830094,0.302581,0.0421922,0.0922989,0.0298691,0.175761,0.290676,0.694894,0.366508,0.918935,0.202584,0.0168481,0.07629,0.42381,0.275823,0.795245,0.437981,0.388441,0.544968,0.277476,0.670157,0.623786,0.521354,0.42512,0.470657,0.317613,0.789057,0.457859,0.243605,0.461657,0.487921,0.825792,0.858128,0.40223,0.278872,0.60901,0.604427,0.326843,0.0611581,0.867911,0.219355,0.277317,0.17341,0.855558,0.587499,0.533991,0.199351,0.639931,0.1068,0.278106,0.3673,0.634503,0.965475,0.924687,0.974606,0.46175,0.748945,0.598468,0.315121,0.443348,0.178223,0.440611,0.827577,0.972394,0.674532,0.972046,0.0830637,0.614115,0.707573,0.956498,0.895016,0.401693,0.732991,0.40449,0.831022,0.0949441,0.0887817,0.704385,0.271926,0.556355,0.351093,0.266051,0.29577,0.170876,0.183239,0.391906,0.999247,0.627696,0.627809,0.612199,0.0841699,0.718188,0.422231,0.0932989,0.683836,0.525496,0.549247,0.372308,0.574799,0.000596344,0.489159,0.167623,0.20921,0.59853,0.136371,0.453049,0.288898,0.63593,0.173273,0.655634,0.495652,0.690558,0.994599,0.0519494,0.902399,0.836424,0.453801,0.150536,0.168609,0.709028,0.373692,0.0317472,0.494361,0.0503135,0.273797,0.93296,0.19545,0.683856,0.531576,0.68256,0.639633,0.916754,0.954982,0.266536,0.157944,0.614108,0.965016,0.148826,0.462781,0.201937,0.119535,0.58611,0.775878,0.475143,0.995159,0.210345,0.895734,0.960329,0.605072,0.468013,0.207022,0.064658,0.291309,0.8721,0.186331,0.250041,0.15241,0.413006,0.389619,0.844092,0.725293,0.999886,0.0180703,0.267657,0.834401,0.866669,0.263355,0.0595276,0.803848,0.19677,0.563749,0.766768,0.687213,0.323173,0.595646,0.170009,0.0780173,0.325515,0.712771,0.155832,0.487937,0.251718,0.729921,0.0471939,0.925963,0.463952,0.199367,0.681241,0.749756,0.87664,0.65328,0.502032,0.328029,0.836226,0.466281,0.198092,0.05068,0.686234,0.8731,0.0656227,0.647646,0.0456889,0.395942,0.709811,0.204957,0.777462,0.0284268,0.00596607,0.832275,0.452238,0.0835195,0.973258,0.0117316,0.525023,0.36813,0.458778,0.177593,0.229552,0.255009,0.737704,0.44728,0.649248,0.0722604,0.514168,0.0174154,0.575393,0.908773,0.131781,0.582887,0.0485278,0.863238,0.772184,0.576616,0.0493397,0.757887,0.86633,0.0210702,0.314459,0.682294,0.593238,0.594184,0.12245,0.58995,0.365988,0.390543,0.438168,0.774542,0.224756,0.185375,0.691709,0.345547,0.328376,0.920097,0.451206,0.0296628,0.932499,0.14255,0.718459,0.741265,0.66055,0.112666,0.858526,0.513185,0.290387,0.854048,0.972076,0.819628,0.490738,0.771471,0.130926,0.0353853,0.284088,0.35128,0.1993,0.271255,0.369296,0.698317,0.809462,0.235472,0.794828,0.900031,0.0321695,0.094537,0.68286,0.304684,0.849126,0.987688,0.115042,0.107872,0.600342,0.729627,0.966254,0.36649,0.49419,0.161408,0.365217,0.250624,0.907048,0.980979,0.521262,0.65907,0.544195,0.956531,0.166176,0.780628,0.775874,0.686157,0.692116,0.126552,0.183816,0.448164,0.199614,0.594729,0.332789,0.910815,0.358462,0.919905,0.0719823,0.22272,0.98065,0.478925,0.602713,0.235266,0.829329,0.08097,0.78793,0.415461,0.867598,0.985652,0.349904,0.668472,0.602606,0.491475,0.85058,0.129646,0.451793,0.966786,0.829027,0.64331,0.155034,0.442384,0.203325,0.558821,0.470197,0.182941,0.127278,0.631214,0.0761532,0.157956,0.871268,0.280598,0.930141,0.487249,0.756394,0.782986,0.0822489,0.68106,0.22494,0.733989,0.191787,0.405423,0.0559107,0.664223,0.216613,0.243424,0.99078,0.695621,0.587967,0.0264865,0.17462,0.255294,0.0861483,0.92554,0.487095,0.684115,0.131837,0.525695,0.102641,0.13548,0.0660245,0.0126688,0.741291,0.234357,0.23564,0.614373,0.647507,0.42318,0.327331,0.672417,0.340173,0.695022,0.366135,0.00177187,0.467992,0.370505,0.565662,0.976025,0.466243,0.204235,0.782524,0.153912,0.69097,0.8572,0.457859,0.326046,0.427475,0.605482,0.575313,0.0552858,0.136034,0.564605,0.126698,0.733531,0.0714041,0.519801,0.477201,0.0800722,0.882112,0.977582,0.0522493,0.298402,0.939708,0.387111,0.388589,0.200598,0.870489,0.174593,0.605521,0.858744,0.409851,0.591822,0.152579,0.596014,0.734024,0.139828,0.802776,0.942393,0.525545,0.524641,0.255328,0.0962927,0.347282,0.0433274,0.604574,0.226945,0.519337,0.429797,0.961711,0.759185,0.208639,0.860385,0.211576,0.395272,0.660277,0.225065,0.754442,0.542737,0.851968,0.65751,0.77357,0.37058,0.684172,0.410887,0.639085,0.877275,0.074631,0.901767,0.644922,0.852443,0.652246,0.948135,0.0771663,0.362848,0.725001,0.951981,0.563748,0.196806,0.634841,0.0733033,0.616899,0.489622,0.524719,0.843999,0.995846,0.76333,0.145241,0.495326,0.244506,0.222139,0.926504,0.42794,0.215494,0.412479,0.856667,0.655229,0.953534,0.242782,0.12265,0.17131,0.246141,0.200853,0.727258,0.344639,0.23977,0.399732,0.141843,0.00336659,0.512325,0.156196,0.551607,0.874293,0.334858,0.174405,0.730725,0.494525,0.525543,0.216375,0.322174,0.798191,0.222568,0.19216,0.921444,0.370843,0.174062,0.431541,0.241968,0.467652,0.973161,0.754043,0.402346,0.164639,0.74527,0.88353,0.937542,0.894993,0.259966,0.743205,0.198425,0.274787,0.770866,0.407109,0.580366,0.117003,0.634632,0.901997,0.597825,0.659888,0.401324,0.774823,0.91809,0.178162,0.999093,0.324184,0.424586,0.268441,0.67256,0.542076,0.152352,0.682862,0.121331,0.871105,0.88457,0.621976,0.615758,0.119409,0.201495,0.436385,0.257638,0.356675,0.881689,0.370788,0.36293,0.424344,0.794124,0.631557,0.745674,0.576109,0.517908,0.870632,0.600392,0.903237,0.0446609,0.525445,0.138266,0.553789,0.904773,0.51381,0.911772,0.354825,0.410927,0.813518,0.505012,0.0449185,0.609379,0.905778,0.831476,0.138631,0.201268,0.987056,0.523064,0.683074,0.0870416,0.602058,0.782254,0.457537,0.763017,0.065348,0.437546,0.400059,0.96159,0.652227,0.297423,0.769201,0.91829,0.304963,0.184404,0.137748,0.649017,0.382621,0.535515,0.605821,0.837948,0.606442,0.33452,0.785761,0.221599,0.070133,0.72342,0.896842,0.212869,0.776735,0.276227,0.203162,0.082609,0.0255129,0.514264,0.36278,0.921721,0.792377,0.165772,0.0759924,0.702534,0.793305,0.778681,0.769367,0.648082,0.548045,0.499077,0.508391,0.385387,0.897814,0.00592554,0.639756,0.419805,0.521779,0.424291,0.374918,0.414249,0.213579,0.760042,0.480319,0.597477,0.290213,0.923767,0.678468,0.618388,0.365428,0.626505,0.460553,0.39938,0.587213,0.491083,0.694896,0.589506,0.368983,0.863503,0.511242,0.567718,0.235025,0.679508,0.300551,0.0943118,0.905521,0.784407,0.235659,0.522292,0.52722,0.680098,0.456516,0.128816,0.402183,0.456664,0.154842,0.616897,0.922524,0.689895,0.355774,0.653991,0.362833,0.0398111,0.272524,0.59162,0.930516,0.97416,0.0618913,0.522419,0.282939,0.212505,0.402501,0.242402,0.95924,0.792586,0.507793,0.832057,0.080045,0.424559,0.0129586,0.206574,0.728867,0.0145487,0.209727,0.528098,0.495231,0.597142,0.462572,0.549507,0.697828,0.221242,0.111743,0.500784,0.762158,0.960551,0.465722,0.928606,0.00884044,0.963926,0.238526,0.620109,0.712112,0.839853,0.906011,0.708183,0.592675,0.693035,0.487447,0.480098,0.271029,0.0732866,0.376746,0.766968,0.876903,0.633686,0.196268,0.623915,0.458836,0.835088,0.736047,0.192416,0.218074,0.498388,0.108237,0.45062,0.825574,0.359143,0.875986,0.479696,0.279067,0.140642,0.0173981,0.958928,0.911197,0.942126,0.956851,0.0753426,0.950747,0.286743,0.438233,0.345886,0.738011,0.516169,|0.485472,0.62289,0.427091,0.931936,0.888989,0.134696,0.663917,0.0672885,0.249544,0.38887,0.327454,0.0245189,0.623891,0.437063,0.31484,0.743566,0.955771,0.0597427,0.827835,0.970096,0.343311,0.65722,0.204968,0.957658,0.337709,0.937248,0.414446,0.375159,0.415621,0.773264,0.785731,0.46643,0.72298,0.137623,0.472561,0.123658,0.493191,0.623472,0.189519,0.1178,0.54091,0.321555,0.30343,0.415155,0.622163,0.756463,0.690996,0.344117,0.411156,0.619482,0.918346,0.376363,0.803777,0.0711975,0.448098,0.499657,0.284904,0.0228893,0.498751,0.177618,0.807943,0.761868,0.140278,0.526361,0.223832,0.866246,0.0677488,0.965102,0.0495467,0.117804,0.847397,0.188525,0.978557,0.0795074,0.911438,0.210534,0.977292,0.475761,0.493726,0.296836,0.0303543,0.554346,0.0374477,0.0975847,0.824092,0.894808,0.32502,0.427461,0.563488,0.34156,0.0577053,0.474495,0.395574,0.554283,0.8752,0.927502,0.939637,0.343841,0.910922,0.215814,0.731655,0.273992,0.137225,0.527014,0.941626,0.255718,0.615899,0.427884,0.812885,0.499248,0.677987,0.408073,0.306221,0.990253,0.446853,0.899909,0.689743,0.0757118,0.485944,0.499937,0.0545073,0.906247,0.515645,0.246959,0.893104,0.559384,0.660537,0.57236,0.593339,0.0117755,0.27134,0.884567,0.23286,0.986493,0.374329,0.482395,0.105171,0.696026,0.832458,0.518428,0.996427,0.101969,0.883307,0.850242,0.969673,0.515308,0.430935,0.242926,0.959525,0.32328,0.398387,0.249391,0.44091,0.4297,0.757864,0.643001,0.84874,0.113269,0.0401252,0.222414,0.759305,0.0222999,0.12111,0.626176,0.969375,0.412517,0.965468,0.969416,0.304504,0.249265,0.581246,0.680545,0.12584,0.638903,0.00475597,0.532779,0.0217563,0.449017,0.38619,0.742977,0.676839,0.951704,0.940812,0.83873,0.886835,0.605303,0.910033,0.074303,0.0144979,0.0146407,0.6495,0.596099,0.0982523,0.7861,0.0431637,0.84852,0.339897,0.945277,0.426273,0.869567,0.846588,0.566589,0.487053,0.369449,0.350542,0.181087,0.357692,0.469818,0.225992,0.188183,0.422916,0.112939,0.877977,0.56998,0.62484,0.787962,0.740897,0.801876,0.926056,0.745235,0.992295,0.107145,0.714543,0.51459,0.929546,0.821858,0.0535806,0.146818,0.403345,0.458057,0.584359,0.900739,0.878257,0.73151,0.714667,0.164111,0.328528,0.748552,0.459807,0.389793,0.613946,0.816506,0.706814,0.697846,0.461518,0.437913,0.00697678,0.93821,0.117318,0.347006,0.181431,0.0886584,0.616848,0.284518,0.934014,0.634905,0.462241,0.842356,0.0868757,0.351824,0.107719,0.79279,0.683501,0.165829,0.655217,0.863793,0.341407,0.104555,0.653508,0.197489,0.419303,0.763283,0.957381,0.317671,0.199675,0.805874,0.331798,0.505776,0.19452,0.564361,0.110419,0.934796,0.529785,0.779115,0.442311,0.199225,0.0923921,0.156251,0.173329,0.447047,0.504283,0.360869,0.457571,0.0882234,0.00827432,0.496385,0.192452,0.0474386,0.136937,0.0825294,0.146604,0.161278,0.661203,0.417619,0.505818,0.931516,0.683042,0.455404,0.415209,0.168662,0.89906,0.275086,0.642941,0.728392,0.844041,0.881373,0.816604,0.415998,0.724941,0.290146,0.846775,0.812925,0.339674,0.055079,0.060226,0.549485,0.382922,0.533874,0.374026,0.0502779,0.734118,0.0525494,0.824012,0.0138164,0.510045,0.183168,0.846969,0.0715393,0.750811,0.241518,0.353469,0.50226,0.431241,0.754822,0.515876,0.952601,0.903482,0.031388,0.101425,0.547006,0.537012,0.918231,0.387123,0.972763,0.475772,0.165405,0.336821,0.776443,0.184354,0.15516,0.0895841,0.942585,0.891492,0.860085,0.712743,0.553565,0.71699,0.020335,0.0154116,0.823194,0.863913,0.489351,0.256621,0.485025,0.140698,0.478634,0.503303,0.732377,0.219474,0.246671,0.370726,0.543439,0.149916,0.683636,0.919477,0.630147,0.949399,0.466367,0.718986,0.368004,0.542532,0.253363,0.0322797,0.214822,0.510727,0.495707,0.105636,0.239783,0.40053,0.827432,0.544513,0.173608,0.317735,0.928391,0.17087,0.721598,0.109908,0.885646,0.790152,0.216608,0.822946,0.0705904,0.666954,0.519649,0.315302,0.400787,0.282287,0.119423,0.886803,0.267865,0.132957,0.0492069,0.105862,0.165177,0.160431,0.448239,0.846477,0.727834,0.0797978,0.405596,0.828452,0.018144,0.305506,0.825587,0.28597,0.962026,0.0482726,0.362111,0.380294,0.656658,0.717509,0.520734,0.500892,0.340046,0.289525,0.235651,0.0228152,0.437486,0.360266,0.267095,0.249872,0.6393,0.100565,0.126872,0.649091,0.428071,0.0243272,0.384695,0.367505,0.474638,0.696662,0.998299,0.800374,0.467591,0.214223,0.84815,0.224992,0.682846,0.679512,0.537579,0.966054,0.865567,0.165633,0.184831,0.916866,0.803786,0.406671,0.52185,0.922174,0.840093,0.0143216,3.24845e-05,0.456924,0.751281,0.766207,0.536492,0.961061,0.32514,0.934004,0.590378,0.156085,0.374565,0.627139,0.940505,0.16974,0.399656,0.179511,0.290011,0.135811,0.632174,0.383938,0.277281,0.107594,0.779336,0.21716,0.849277,0.424412,0.0685605,0.79553,0.395603,0.461424,0.68962,0.205127,0.243391,0.863759,0.779334,0.247257,0.133127,0.267832,0.18769,0.52769,0.349693,0.764803,0.620094,0.399566,0.781359,0.755612,0.0766146,0.246549,0.31105,0.985643,0.36555,0.961962,0.560201,0.398849,0.857188,0.244197,0.985605,0.298035,0.395181,0.0409495,0.952899,0.660192,0.967924,0.236418,0.507134,0.239212,0.901563,0.0168554,0.961754,0.47595,0.659998,0.540771,0.815098,0.718372,0.518877,0.347886,0.782448,0.340989,0.161465,0.699662,0.952921,0.0427282,0.723173,0.972611,0.0762874,0.919297,0.110396,0.167773,0.546345,0.233682,0.438866,0.446525,0.181048,0.531912,0.900921,0.496399,0.175857,0.986717,0.836113,0.997139,0.000403881,0.80896,0.00886112,0.411976,0.425456,0.0768405,0.0621502,0.912682,0.0398487,0.289823,0.297019,0.514757,0.532181,0.789547,0.477713,0.264424,0.254698,0.549348,0.686167,0.400323,0.241839,0.980681,0.703532,0.441468,0.878617,0.009296,0.507364,0.95095,0.438255,0.389742,0.0124899,0.264634,0.5621,0.932393,0.124228,0.0417187,0.0722144,0.477827,0.986222,0.74708,0.722794,0.728646,0.433051,0.694305,0.823455,0.661308,0.814712,0.281032,0.815454,0.0624399,0.226815,0.0933317,0.269843,0.557329,0.59816,0.28719,0.280661,0.143723,0.387824,0.485523,0.735497,0.277696,0.176719,0.732159,0.455761,0.540307,0.504175,0.780486,0.71535,0.534498,0.84285,0.598794,0.956228,0.199196,0.749865,0.807273,0.622773,0.345053,0.104726,0.125825,0.763484,0.463181,0.257318,0.361662,0.887624,0.082446,0.852133,0.407702,0.461936,0.854979,0.857633,0.546625,0.201116,0.469464,0.290012,0.319532,0.953827,0.369693,0.111998,0.818318,0.313508,0.333834,0.557773,0.0640555,0.302914,0.418174,0.957092,0.740233,0.843985,0.999053,0.2768,0.0514653,0.944624,0.0753015,0.0762925,0.0678048,0.946968,0.667499,0.823693,0.816958,0.462389,0.0613036,0.332622,0.318448,0.00713903,0.793327,0.261011,0.173806,0.228127,0.32641,0.534727,0.475327,0.312007,0.580769,0.856737,0.717417,0.365797,0.871731,0.327429,0.344513,0.195633,0.0199208,0.682233,0.495854,0.933335,0.408752,0.371721,0.826528,0.644332,0.0694482,0.122712,0.43694,0.118423,0.688469,0.549246,0.0873978,0.108605,0.510622,0.285153,0.814968,0.758181,0.358694,0.383684,0.682728,0.301254,0.721741,0.694895,0.642235,0.855636,0.383402,0.545197,0.99825,0.862904,0.761624,0.879171,0.158281,0.467006,0.711162,0.154058,0.496236,0.7514,0.68853,0.27342,0.688545,0.531259,0.115973,0.358356,0.665847,0.466255,0.538548,0.436469,0.983361,0.56087,0.472654,0.203397,0.761764,0.467192,0.393856,0.836912,0.600743,0.795755,0.149198,0.0638928,0.682306,0.615325,0.792471,0.361962,0.746829,0.622375,0.925439,0.791398,0.34202,0.348695,0.578411,0.713492,0.155525,0.215558,0.208995,0.574759,0.932199,0.521927,0.408024,0.531663,0.302844,0.0792872,0.0326014,0.235869,0.267662,0.139341,0.836905,0.158991,0.532286,0.927296,0.744081,0.126848,0.437779,0.955831,0.686103,0.773408,0.781453,0.844303,0.94615,0.522842,0.668274,0.355921,0.797647,0.235523,0.589048,0.509785,0.433096,0.440019,0.807291,0.853585,0.203708,0.303658,0.165547,0.904271,0.79002,0.328486,0.264843,0.320235,0.626337,0.0136189,0.141835,0.842427,0.150402,0.164628,0.363877,0.620824,0.631737,0.181603,0.706628,0.59749,0.973126,0.918891,0.723607,0.768788,0.506345,0.252643,0.804686,0.519792,0.0839301,0.668969,0.70525,0.080291,0.536987,0.455902,0.577151,0.235732,0.3534,0.62748,0.33741,0.837397,0.502491,0.649929,0.144984,0.0824302,0.129427,0.650125,0.887103,0.186365,0.125659,0.205047,0.89172,0.808423,0.373692,0.218931,0.212064,0.524296,0.820431,0.215268,0.421873,0.668668,0.594701,0.504825,0.644009,0.550704,0.501793,0.373697,0.462157,0.155126,0.520932,0.581801,0.000825882,0.104618,0.391022,0.676701,0.412221,0.0529954,0.634416,0.798088,0.041647,0.352949,0.715552,0.191477,0.200504,0.468505,0.570781,0.0223784,0.300261,0.411015,0.472796,0.706864,0.668289,0.598502,0.937335,0.823107,0.140977,0.290046,0.405818,0.262296,0.804081,0.237889,0.134304,0.917265,0.122498,0.597419,0.888769,0.585275,0.903375,0.0467093,0.216481,0.0896314,0.414863,0.863651,0.525864,0.639564,0.490234,0.575901,0.68264,0.259609,0.61911,0.395246,0.5244,0.339757,0.058396,0.492079,0.327744,0.0706156,0.833122,0.676052,0.610472,0.548465,0.761908,0.487194,0.908451,0.869589,0.692134,0.655115,0.582428,0.802435,0.363394,0.585571,0.729338,0.659693,0.684141,0.418489,0.337321,0.108667,0.813662,0.790125,0.277913,0.165751,0.638121,0.620878,0.978572,0.883443,0.0898461,0.0878408,0.788806,0.58377,0.512753,0.613568,0.816221,0.468485,0.519494,0.881159,0.435611,0.785298,|0.127086,0.265183,0.0685136,0.00042969,0.366886,0.619616,0.726536,0.110153,0.615643,0.671964,0.765893,0.461699,0.104563,0.248949,0.598241,0.240803,0.57161,0.611064,0.450024,0.691414,0.209043,0.310956,0.442717,0.981375,0.661575,0.637669,0.54225,0.311017,0.0415825,0.145322,0.578539,0.00255489,0.389564,0.973048,0.119926,0.0206298,0.99941,0.551803,0.746067,0.750784,0.753884,0.0105022,0.0272582,0.475253,0.24482,0.544817,0.211977,0.657477,0.953161,0.181927,0.738095,0.448347,0.387645,0.360981,0.5475,0.837172,0.537585,0.47624,0.278509,0.62264,0.169393,0.672061,0.476622,0.963911,0.146344,0.111058,0.528273,0.513099,0.723005,0.453595,0.221427,0.777139,0.403526,0.042094,0.32667,0.779291,0.744201,0.411052,0.94799,0.0239791,0.0891728,0.870109,0.523428,0.415758,0.527906,0.143677,0.832632,0.568027,0.146547,0.708632,0.413223,0.549114,0.39054,0.0376893,0.59118,0.988439,0.967115,0.0522743,0.572778,0.302831,0.572206,0.990357,0.114391,0.563261,0.601461,0.337403,0.671976,0.587262,0.750278,0.548502,0.206572,0.21488,0.756679,0.788024,0.605403,0.918792,0.0308351,0.654469,0.415804,0.71456,0.214845,0.804875,0.104552,0.125818,0.56558,0.4845,0.693662,0.887124,0.0182202,0.511014,0.115022,0.771401,0.792012,0.192296,0.0165102,0.785708,0.162126,0.331403,0.691045,0.900481,0.597344,0.197679,0.400718,0.121487,0.494444,0.721869,0.832664,0.469869,0.215175,0.626036,0.305574,0.105306,0.271829,0.938619,0.00768429,0.0689843,0.53883,0.164985,0.49709,0.871739,0.822358,0.733121,0.418305,0.251858,0.635791,0.871755,0.847757,0.461574,0.936589,0.564172,0.867381,0.392496,0.662484,0.601287,0.265648,0.399502,0.586601,0.394329,0.869028,0.167498,0.897012,0.186814,0.0638319,0.670357,0.246924,0.767419,0.393374,0.470818,0.491279,0.989076,0.382045,0.962241,0.561141,0.543555,0.197841,0.630859,0.942347,0.475625,0.509692,0.838979,0.814791,0.82968,0.727073,0.418003,0.854154,0.710447,0.511873,0.00335407,0.836954,0.616672,0.031144,0.76069,0.372554,0.874128,0.0728742,0.845061,0.100336,0.917607,0.405224,0.992372,0.14162,0.173139,0.549702,0.487791,0.101386,0.727457,0.180632,0.0986882,0.454924,0.611959,0.393807,0.370294,0.790063,0.699545,0.969807,0.654974,0.571895,0.610857,0.810268,0.798802,0.448811,0.470101,0.279409,0.515294,0.0334098,0.407227,0.549502,0.374383,0.46579,0.757119,0.604447,0.0267216,0.159821,0.686959,0.80338,0.604505,0.401613,0.446418,0.856093,0.529795,0.968322,0.252962,0.777093,0.901582,0.494706,0.361004,0.474236,0.916487,0.16748,0.389025,0.44597,0.250456,0.14561,0.597506,0.19153,0.79401,0.958383,0.643664,0.650006,0.303545,0.21412,0.700467,0.220318,0.725077,0.22983,0.699186,0.682481,0.451425,0.334348,0.595413,0.226255,0.592341,0.613809,0.265037,0.373667,0.961645,0.0568202,0.951153,0.258699,0.753548,0.20944,0.7578,0.0596576,0.454307,0.606872,0.845555,0.277189,0.237124,0.538983,0.508649,0.953816,0.0241667,0.742995,0.599091,0.726308,0.518661,0.273481,0.969786,0.173198,0.0685092,0.117242,0.444657,0.833529,0.106217,0.195777,0.393927,0.728111,0.365685,0.819686,0.241519,0.666811,0.462225,0.378377,0.527183,0.465573,0.346808,0.799654,0.571599,0.38762,0.0478091,0.519521,0.766196,0.61904,0.908857,0.761232,0.199132,0.478915,0.593664,0.437739,0.83518,0.21526,0.346803,0.574114,0.736584,0.220493,0.774933,0.712725,0.55891,0.230402,0.0458141,0.451201,0.448982,0.0513842,0.00119454,0.119137,0.904297,0.956456,0.850502,0.859809,0.23342,0.828386,0.276474,0.0529519,0.335925,0.741888,0.387576,0.181442,0.492986,0.540701,0.490023,0.0383922,0.0618501,0.80582,0.119013,0.606701,0.352872,0.113861,0.42625,0.197213,0.204775,0.836258,0.239289,0.130256,0.77252,0.939149,0.226216,0.200591,0.580383,0.0894757,0.618569,0.353419,0.270503,0.8171,0.229542,0.144265,0.859683,0.45458,0.799715,0.0901173,0.915412,0.970735,0.241333,0.96889,0.671995,0.0129128,0.768441,0.427183,0.64494,0.855628,0.531332,0.417443,0.515464,0.613044,0.741193,0.575133,0.796946,0.0653272,0.536233,0.927076,0.84866,0.788761,0.312765,0.212018,0.572267,0.840299,0.613938,0.379022,0.433818,0.18516,0.45391,0.685895,0.110387,0.172261,0.0746796,0.14532,0.999633,0.0179241,0.987538,0.557217,0.953227,0.236942,0.258571,0.226639,0.228968,0.165318,0.209635,0.869824,0.937849,0.580385,0.372056,0.384508,0.591735,0.0945119,0.36069,0.0092181,0.433821,0.000921369,0.532236,0.561156,0.657825,0.320405,0.913052,0.879563,0.669354,0.0455382,0.271664,0.941226,0.643838,0.997382,0.148591,0.809678,0.744372,0.362838,0.421812,0.579591,0.356179,0.920811,0.121825,0.36538,0.403152,0.790095,0.470646,0.69175,0.135525,0.31931,0.571935,0.00363529,0.199323,0.884432,0.438226,0.40531,0.917131,0.370988,0.687135,0.444024,0.37689,0.430615,0.944549,0.0908868,0.321201,0.37918,0.0992402,0.7995,0.298064,0.467155,0.691665,0.901399,0.737643,0.599743,0.811674,0.894559,0.495679,0.934692,0.893856,0.072704,0.234122,0.757729,0.708269,0.984825,0.917881,0.215947,0.659638,0.292953,0.369749,0.0329726,0.540529,0.751125,0.493158,0.0587317,0.382536,0.362393,0.630485,0.654032,0.23244,0.748817,0.125116,0.475694,0.216126,0.114176,0.578065,0.353686,0.425346,0.904098,0.701529,0.375102,0.363526,0.883565,0.728988,0.989212,0.100836,0.00421625,0.650586,0.927093,0.104348,0.762052,0.135763,0.705994,0.313515,0.0894673,0.904414,0.135562,0.0903824,0.891906,0.0947724,0.682557,0.851735,0.443689,0.381512,0.393765,0.303726,0.483588,0.567482,0.720982,0.558575,0.697903,0.777817,0.333991,0.342414,0.851627,0.078734,0.495831,0.519954,0.855435,0.220389,0.961214,0.23324,0.329845,0.524393,0.811344,0.0669699,0.885105,0.942974,0.334928,0.404271,0.950458,0.410624,0.417407,0.168722,0.229551,0.294031,0.076181,0.105475,0.1854,0.868939,0.117913,0.534996,0.0177254,0.860364,0.0921378,0.00164515,0.590067,0.393159,0.712468,0.524544,0.549473,0.807759,0.0689542,0.798639,0.0180277,0.0577789,0.640476,0.592222,0.287487,0.941674,0.246724,0.165712,0.462367,0.898833,0.463434,0.906442,0.871941,0.33436,0.984472,0.0827251,0.213971,0.987867,0.124661,0.508282,0.812035,0.326343,0.609826,0.146284,0.438987,0.089658,0.222177,0.397305,0.586467,0.542335,0.125196,0.97852,0.505279,0.162255,0.656516,0.992382,0.903869,0.613613,0.125359,0.889151,0.603775,0.23555,0.347315,0.452682,0.435071,0.943764,0.900043,0.560234,0.532119,0.0440251,0.746336,0.863589,0.707802,0.91313,0.197797,0.225792,0.479045,0.0720761,0.182212,0.925145,0.905726,0.5777,0.105373,0.109639,0.815023,0.714435,0.812774,0.899069,0.431508,0.70033,0.929292,0.241344,0.895655,0.477477,0.212061,0.417309,0.197931,0.220462,0.625621,0.899283,0.980962,0.685051,0.423544,0.0141983,0.595905,0.551664,0.257406,0.122507,0.975467,0.482261,0.29321,0.0241117,0.258133,0.94938,0.0671206,0.607302,0.895897,0.314625,0.0666837,0.920695,0.373157,0.740222,0.193398,0.328456,0.6061,0.266905,0.902835,0.355627,0.0818256,0.0637147,0.660697,0.548082,0.817003,0.501861,0.0260137,0.164748,0.380802,0.473994,0.854814,0.969905,0.849923,0.935042,0.520162,0.0850859,0.0509454,0.574357,0.184642,0.603751,0.189859,0.355041,0.136743,0.432912,0.0301449,0.636589,0.471499,0.0828397,0.688365,0.630315,0.740024,0.908428,0.0969043,0.23816,0.693703,0.187487,0.585416,0.32615,0.43144,0.0760159,0.440714,0.953547,0.251281,0.37091,0.819479,0.204582,0.656125,0.645644,0.562934,0.375267,0.283172,0.276078,0.293309,0.318385,0.100637,0.867937,0.7902,0.17595,0.412235,0.774538,0.871961,0.407396,0.0202557,0.893556,0.38728,0.383066,0.0685137,0.587808,0.8782,0.625643,0.133173,0.243037,0.379338,0.816893,0.335054,0.818806,0.218568,0.840431,0.114895,0.390392,0.230537,0.998029,0.250924,0.569286,0.222834,0.849377,0.118537,0.325695,0.427084,0.813875,0.371338,0.36992,0.174177,0.184657,0.307382,0.613759,0.35808,0.678061,0.986989,0.0771218,0.96378,0.360583,0.3316,0.251196,0.454067,0.171002,0.574239,0.564724,0.140077,0.910513,0.786026,0.715583,0.920901,0.227441,0.0564656,0.163657,0.499888,0.379261,0.619728,0.882824,0.949758,0.707884,0.221267,0.0308076,0.358549,0.944031,0.991349,0.347888,0.66633,0.466383,0.254297,0.775633,0.790779,0.0360185,0.930915,0.373567,0.429583,0.0833029,0.402895,0.712802,0.502548,0.461957,0.935411,0.503348,0.766829,0.352657,0.784138,0.609199,0.59996,0.816853,0.0376266,0.665384,0.440749,0.0168079,0.341129,0.0793453,0.640162,0.281,0.343898,0.913903,0.324969,0.172233,0.395868,0.446334,0.479248,0.455967,0.285536,0.202925,0.281687,0.141452,0.877479,0.61072,0.599609,0.0791788,0.598478,0.737525,0.758299,0.654156,0.663495,0.885793,0.505066,0.103471,0.581969,0.143566,0.198928,0.709353,0.677899,0.420337,0.918471,0.243858,0.955972,0.630216,0.0302601,0.433864,0.910705,0.288743,0.95858,0.25754,0.136147,0.961327,0.451775,0.560042,0.905559,0.176405,0.163934,0.606475,0.738767,0.613936,0.615668,0.223551,0.390635,0.0527067,0.240434,0.168969,0.830053,0.603551,0.886448,0.119088,0.520439,0.250507,0.973151,0.395914,0.733161,0.160829,0.261863,0.254306,0.272485,0.3951,0.23277,0.961963,0.922595,0.300259,0.140975,0.0357593,0.511324,0.417587,0.986091,0.150969,0.183818,0.800129,0.393813,0.802286,0.788381,0.582121,0.292456,0.503226,0.455681,0.479796,0.308427,0.388316,0.870918,0.850533,0.320083,0.548205,0.973741,0.127047,0.563277,0.0638611,0.296655,0.693779,0.737808,0.896255,0.748149,0.428834,|0.811155,0.982323,0.564527,0.757262,0.0613995,0.0265417,0.509835,0.65607,0.481237,0.680254,0.0885812,0.936491,0.81302,0.991297,0.0222468,0.532073,0.661542,0.805588,0.968844,0.230492,0.249517,0.657693,0.567915,0.376307,0.0207219,0.792657,0.688184,0.853266,0.656931,0.396264,0.769864,0.251376,0.709518,0.94041,0.477277,0.983162,0.242408,0.678442,0.947489,0.247092,0.495427,0.98011,0.992019,0.723025,0.687729,0.304278,0.358252,0.891033,0.549268,0.329108,0.0490603,0.650009,0.165045,0.119346,0.0811312,0.987066,0.0107874,0.706878,0.617858,0.948928,0.501224,0.0479258,0.774223,0.568967,0.572757,0.157636,0.223081,0.521204,0.912977,0.860446,0.889503,0.401713,0.646015,0.858992,0.412929,0.545806,0.901592,0.867774,0.745827,0.317621,0.159511,0.640963,0.747202,0.902458,0.440803,0.730424,0.52586,0.602383,0.729623,0.0238452,0.214125,0.841025,0.756115,0.146832,0.759205,0.35636,0.120807,0.893784,0.385252,0.707492,0.632828,0.72745,0.691216,0.68283,0.845982,0.959103,0.628509,0.835146,0.517383,0.883638,0.881051,0.0124706,0.710869,0.157219,0.106136,0.757152,0.944916,0.560072,0.852836,0.736176,0.401877,0.490665,0.416401,0.394431,0.990533,0.994,0.648105,0.871474,0.899838,0.277249,0.236881,0.23246,0.717399,0.409784,0.704534,0.42253,0.177993,0.621759,0.103459,0.262376,0.899118,0.332858,0.0123711,0.774309,0.407959,0.0388609,0.112977,0.0326847,0.857209,0.995311,0.235834,0.572294,0.38019,0.766809,0.615985,0.728388,0.847018,0.466309,0.355936,0.575315,0.278603,0.194809,0.138599,0.0534396,0.658092,0.817134,0.0143542,0.342349,0.247417,0.323087,0.019794,0.301927,0.457889,0.433554,0.951191,0.642347,0.482433,0.73904,0.894685,0.582961,0.157947,0.948385,0.0688354,0.327151,0.381386,0.740904,0.303237,0.689107,0.561143,0.872641,0.615773,0.435701,0.913773,0.0933344,0.703582,0.734542,0.586647,0.616154,0.599923,0.422699,0.778235,0.257812,0.443334,0.495886,0.097451,0.909915,0.945841,0.287592,0.165606,0.831057,0.481271,0.918936,0.217231,0.88076,0.720941,0.317698,0.586703,0.957142,0.866624,0.753538,0.571384,0.893932,0.167315,0.966621,0.504433,0.240031,0.46536,0.206285,0.779686,0.265007,0.587766,0.289294,0.663797,0.289747,0.77806,0.742306,0.673299,0.948483,0.506946,0.714641,0.705862,0.940486,0.833975,0.142743,0.86156,0.342555,0.880119,0.90002,0.795132,0.0312571,0.984308,0.660896,0.46079,0.486033,0.22695,0.021358,0.940254,0.362452,0.67597,0.125095,0.349453,0.792965,0.770408,0.613795,0.782151,0.872407,0.511922,0.833324,0.278179,0.214921,0.912704,0.184868,0.304025,0.950083,0.638841,0.484191,0.885182,0.330585,0.7243,0.377472,0.537463,0.0745183,0.013368,0.463561,0.598269,0.588209,0.737145,0.692996,0.852104,0.54738,0.490499,0.278871,0.72308,0.276629,0.049156,0.0417126,0.686367,0.104278,0.568183,0.981052,0.475424,0.353606,0.471444,0.843995,0.460949,0.828188,0.210315,0.0627945,0.115918,0.921022,0.66228,0.739234,0.157441,0.348506,0.650278,0.200593,0.811621,0.92143,0.42049,0.235515,0.747944,0.859709,0.990454,0.303889,0.363459,0.737118,0.268723,0.0136114,0.121521,0.551516,0.967473,0.186135,0.193387,0.281795,0.353639,0.0797504,0.209894,0.913806,0.834523,0.130579,0.77429,0.80731,0.397206,0.185803,0.262372,0.489372,0.283825,0.988216,0.967368,0.707151,0.201598,0.622622,0.135954,0.243414,0.214035,0.94692,0.573972,0.71569,0.703835,0.459536,0.634279,0.447897,0.299822,0.983407,0.481721,0.685424,0.123345,0.825874,0.186643,0.0954343,0.115929,0.544373,0.379907,0.711914,0.423215,0.939873,0.154189,0.961013,0.154137,0.614612,0.643547,0.0535798,0.0723696,0.000859737,0.53049,0.277697,0.959644,0.841525,0.71947,0.980863,0.379596,0.645271,0.0659468,0.392651,0.910284,0.813582,0.540518,0.424968,0.860781,0.932958,0.308661,0.795812,0.982764,0.569332,0.304098,0.222004,0.72197,0.585488,0.055348,0.620363,0.939159,0.0754924,0.0320359,0.0148938,0.723789,0.633269,0.427107,0.12061,0.125098,0.580306,0.416872,0.0718941,0.185138,0.577473,0.233854,0.388984,0.697224,0.245033,0.223534,0.354994,0.876663,0.64127,0.0443853,0.0106114,0.891481,0.0535753,0.916494,0.425739,0.87582,0.249281,0.962065,0.420503,0.864594,0.694326,0.570911,0.81945,0.708737,0.550306,0.717017,0.445635,0.27098,0.538087,0.264398,0.792484,0.352254,0.69004,0.525435,0.50163,0.0877392,0.503222,0.133801,0.472727,0.896989,0.989239,0.0637083,0.725237,0.179735,0.0728428,0.0737796,0.810731,0.175193,0.692598,0.0635541,0.197004,0.293119,0.421483,0.659298,0.145888,0.663646,0.826638,0.543593,0.832121,0.810816,0.563811,0.0576432,0.112942,0.169174,0.331971,0.809589,0.094061,0.0270767,0.973155,0.976124,0.25643,0.666806,0.951489,0.54328,0.948065,0.599904,0.89021,0.315399,0.739962,0.6325,0.736115,0.819478,0.368788,0.926373,0.664839,0.364443,0.410715,0.171031,0.934194,0.945878,0.686625,0.0930572,0.832963,0.863038,0.7059,0.856442,0.333905,0.853385,0.11973,0.424068,0.612181,0.472895,0.267224,0.978154,0.201876,0.504916,0.955418,0.959888,0.0506342,0.55614,0.215526,0.699917,0.54712,0.282774,0.631015,0.308027,0.498011,0.0135338,0.637369,0.0368448,0.268263,0.884111,0.297128,0.395243,0.477803,0.506657,0.119158,0.645422,0.952649,0.243538,0.440735,0.758293,0.169666,0.283568,0.766249,0.115375,0.960083,0.390969,0.420872,0.414204,0.592609,0.626763,0.186303,0.432512,0.887535,0.944891,0.851323,0.527108,0.896514,0.241873,0.0977963,0.711547,0.331095,0.399146,0.55393,0.0349556,0.488451,0.570879,0.142349,0.730622,0.470644,0.073916,0.841342,0.216778,0.806415,0.357002,0.752534,0.534767,0.11077,0.810362,0.328812,0.446237,0.289298,0.536567,0.502147,0.230801,0.421395,0.939392,0.848823,0.551532,0.564661,0.988555,0.129067,0.7286,0.351184,0.930551,0.4699,0.30162,0.861642,0.475397,0.00150198,0.46026,0.328178,0.14922,0.812721,0.0648375,0.375309,0.277867,0.00595337,0.235231,0.977135,0.99589,0.802803,0.68793,0.70773,0.285338,0.739016,0.514706,0.0578743,0.136113,0.433597,0.0158393,0.226536,0.740945,0.219711,0.742509,0.768965,0.72249,0.762473,0.593034,0.741344,0.402541,0.695762,0.0822639,0.312955,0.876244,0.16764,0.548934,0.247866,0.248467,0.503063,0.990098,0.731015,0.299283,0.975108,0.88749,0.485105,0.114335,0.715473,0.124567,0.460565,0.226123,0.540664,0.693338,0.483477,0.366396,0.71399,0.81658,0.120042,0.188247,0.965363,0.470935,0.498732,0.647229,0.260479,0.5815,0.189048,0.744286,0.930151,0.84465,0.828749,0.775391,0.0209857,0.660562,0.0739641,0.567323,0.0378003,0.096882,0.656653,0.108366,0.657939,0.202433,0.788625,0.613286,0.629824,0.096029,0.689403,0.716043,0.491883,0.47395,0.784912,0.461565,0.230094,0.0185349,0.855801,0.448513,0.810541,0.942857,0.362321,0.537395,0.754886,0.200392,0.267776,0.0660478,0.993012,0.958425,0.545995,0.508637,0.0463563,0.960498,0.276449,0.73696,0.868915,0.435523,0.577603,0.275271,0.80006,0.14844,0.601948,0.427724,0.0734718,0.884918,0.691639,0.735642,0.888451,0.880085,0.40736,0.00852019,0.523776,0.956032,0.420591,0.237025,0.206638,0.631253,0.792193,0.937522,0.568288,0.897173,0.989757,0.994983,0.283142,0.219822,0.313046,0.473155,0.364176,0.990772,0.651396,0.10206,0.13227,0.84168,0.199055,0.161665,0.277444,0.746368,0.402012,0.304277,0.667787,0.493584,0.691032,0.410563,0.333204,0.601571,0.127482,0.0809397,0.766896,0.342291,0.850109,0.11454,0.343997,0.428187,0.326411,0.970494,0.387632,0.296562,0.375828,0.682902,0.376794,0.867196,0.0692779,0.393425,0.405856,0.245813,0.181764,0.58644,0.178694,0.895923,0.384507,0.547707,0.367819,0.76512,0.400321,0.505746,0.927167,0.759921,0.84275,0.863393,0.00693476,0.654061,0.663303,0.0329595,0.472552,0.613536,0.096782,0.500195,0.178026,0.576434,0.194498,0.485132,0.619722,0.321456,0.744796,0.730542,0.193549,0.971921,0.672999,0.992229,0.378942,0.375101,0.620154,0.11097,0.682873,0.249691,0.591453,0.652745,0.2031,0.273174,0.148601,0.186044,0.232371,0.333404,0.478206,0.703881,0.987161,0.181415,0.651937,0.970622,0.717679,0.627143,0.231643,0.99708,0.143834,0.408117,0.573984,0.183556,0.995419,0.0521414,0.593475,0.541551,0.96675,0.773419,0.206588,0.462821,0.816027,0.249342,0.362083,0.845903,0.703826,0.986676,0.543697,0.557467,0.810471,0.588834,0.457451,0.600834,0.802618,0.00713652,0.624758,0.52093,0.75467,0.349311,0.69415,0.940483,0.895833,0.579112,0.728132,0.682656,0.126685,0.261429,0.262203,0.765268,0.37624,0.963864,0.476063,0.727175,0.120948,0.857745,0.899536,0.32054,0.814083,0.0638074,0.13589,0.46832,0.602928,0.113068,0.0361907,0.863173,0.485521,0.65448,0.0332236,0.127417,0.151362,0.929966,0.620855,0.722301,0.382582,0.923615,0.476299,0.865904,0.119174,0.0645953,0.200158,0.414767,0.621925,0.776201,0.418011,0.740708,0.576173,0.458534,0.232147,0.859613,0.517698,0.21418,0.184567,0.947567,0.851544,0.415191,0.148229,0.194885,0.290254,0.682468,0.640621,0.780037,0.00931972,0.867016,0.247123,0.29769,0.127219,0.721465,0.356847,0.0515596,0.0937703,0.621951,0.104764,0.246435,0.977556,0.226806,0.402888,0.153889,0.593873,0.815583,0.869689,0.332967,0.603369,0.592287,0.692017,0.685596,0.165915,0.487627,0.574984,0.969251,0.309125,0.038997,0.314361,0.596015,0.135702,0.520133,0.21129,0.345503,0.718174,0.00965327,0.478899,0.345306,0.643161,0.0972139,0.237191,0.692133,0.86863,0.962542,0.64062,0.407156,0.167755,0.402032,0.902803,0.751357,0.945776,0.866909,0.77711,|0.38292,0.179823,0.812196,0.393246,0.615102,0.387243,0.759163,0.0220338,0.836949,0.362154,0.870827,0.114004,0.0831841,0.863414,0.639498,0.42067,0.693213,0.600078,0.666897,0.204635,0.421883,0.0756593,0.801456,0.740437,0.265967,0.611947,0.132495,0.830249,0.732367,0.0262307,0.45548,0.539156,0.193828,0.444544,0.0713982,0.477444,0.390962,0.716362,0.338405,0.660568,0.121297,0.251628,0.276474,0.956096,0.454162,0.726334,0.780827,0.48496,0.00329673,0.687191,0.994588,0.0467381,0.826462,0.726825,0.0235754,0.0161516,0.0450827,0.596346,0.193989,0.448015,0.223966,0.470079,0.953189,0.970716,0.617442,0.95035,0.484177,0.719551,0.68277,0.290999,0.240478,0.801911,0.962351,0.140875,0.457074,0.475438,0.784496,0.632128,0.294211,0.151258,0.504913,0.525772,0.76657,0.567726,0.890259,0.134064,0.349919,0.310239,0.970635,0.563845,0.566123,0.905281,0.477464,0.160104,0.978122,0.43626,0.525697,0.864115,0.616434,0.610346,0.366625,0.496136,0.397875,0.73112,0.110013,0.744513,0.638762,0.259207,0.0405019,0.324455,0.498475,0.256454,0.0493535,0.332775,0.151632,0.289618,0.973154,0.725104,0.482851,0.359025,0.0417806,0.787478,0.330825,0.396048,0.449875,0.931354,0.540296,0.63736,0.533577,0.792823,0.562726,0.161381,0.780952,0.123,0.595165,0.572539,0.867603,0.998985,0.102819,0.995909,0.82044,0.371884,0.857336,0.218946,0.720305,0.893542,0.855842,0.755055,0.187532,0.558718,0.324207,0.586838,0.946165,0.117399,0.524238,0.58122,0.198868,0.556539,0.170399,0.752838,0.463884,0.306133,0.872731,0.868595,0.963434,0.732153,0.853488,0.559778,0.780506,0.117096,0.0768014,0.966908,0.659083,0.0897188,0.507834,0.412161,0.236291,0.498491,0.71273,0.598599,0.828226,0.2007,0.577968,0.703375,0.802746,0.567835,0.916649,0.842182,0.956795,0.772464,0.382405,0.930321,0.83325,0.264932,0.216412,0.716894,0.941267,0.639868,0.17707,0.214978,0.344777,0.0352619,0.212824,0.0805709,0.705373,0.947834,0.111088,0.128587,0.566297,0.946792,0.757971,0.621367,0.817637,0.751871,0.439078,0.733116,0.850404,0.254247,0.280719,0.640307,0.328869,0.253519,0.910661,0.0571209,0.884076,0.630044,0.984662,0.261576,0.59302,0.819534,0.146164,0.603882,0.0616036,0.187258,0.932753,0.86986,0.954996,0.228538,0.0529486,0.272668,0.855194,0.768199,0.810283,0.94485,0.582554,0.451046,0.981287,0.732245,0.839078,0.836923,0.511098,0.945871,0.221852,0.320975,0.179492,0.84675,0.0478507,0.386736,0.679387,0.0823582,0.0831073,0.391024,0.185728,0.852586,0.559371,0.61622,0.524642,0.138313,0.0624831,0.0114571,0.641042,0.0487512,0.577136,0.0645965,0.266874,0.989739,0.774452,0.364152,0.611842,0.211076,0.641715,0.115804,0.35661,0.885116,0.0299384,0.502687,0.068961,0.264587,0.1914,0.678859,0.963071,0.547353,0.000453353,0.517357,0.879557,0.68686,0.0456089,0.728727,0.997362,0.319195,0.301802,0.96654,0.855908,0.403031,0.0637401,0.701312,0.842098,0.303009,0.82778,0.342037,0.0865803,0.188666,0.450407,0.895957,0.998043,0.407976,0.405543,0.0127449,0.857305,0.2143,0.745735,0.999743,0.299426,0.203687,0.274807,0.0723574,0.865518,0.960573,0.927544,0.0640828,0.325586,0.767192,0.219795,0.448641,0.781582,0.565992,0.569767,0.832669,0.305949,0.339081,0.949297,0.306964,0.0714544,0.839442,0.393346,0.216969,0.791255,0.579917,0.842709,0.522073,0.0213327,0.405801,0.334705,0.951593,0.287762,0.460512,0.26886,0.667998,0.504102,0.346119,0.513596,0.0198293,0.687547,0.15323,0.640103,0.812327,0.686379,0.106466,0.531219,0.472982,0.262908,0.0709123,0.779526,0.175844,0.297776,0.901815,0.375849,0.124927,0.836241,0.0969103,0.640701,0.748565,0.934604,0.857659,0.541707,0.529059,0.0697113,0.258727,0.918027,0.464113,0.184502,0.764168,0.870785,0.520815,0.626122,0.569,0.481645,0.360632,0.490687,0.280645,0.681014,0.544144,0.66899,0.544082,0.636234,0.361673,0.440077,0.0368939,0.619984,0.873202,0.17872,0.141372,0.669178,0.310684,0.118369,0.242544,0.97811,0.336295,0.0978628,0.535492,0.956651,0.301987,0.713609,0.523209,0.41795,0.399882,0.55938,0.101666,0.206678,0.958956,0.0223605,0.386031,0.252381,0.73887,0.174719,0.0665378,0.761319,0.873366,0.68314,0.0219727,0.704026,0.630275,0.592789,0.201158,0.162792,0.219744,0.937875,0.214167,0.30395,0.119983,0.86396,0.684446,0.249958,0.582581,0.924983,0.392979,0.347299,0.0584695,0.93352,0.594026,0.657766,0.0441088,0.367171,0.546035,0.438841,0.333964,0.774348,0.790553,0.177426,0.183075,0.407762,0.300397,0.419752,0.548222,0.35499,0.481493,0.455291,0.847571,0.721994,0.278613,0.952643,0.773225,0.966654,0.43102,0.196295,0.243386,0.44343,0.600255,0.116159,0.0794376,0.445908,0.435618,0.712584,0.195971,0.582317,0.140568,0.200519,0.429479,0.475199,0.35048,0.0922078,0.713834,0.502444,0.0492229,0.901861,0.356849,0.620307,0.0160206,0.779041,0.352626,0.2763,0.101342,0.711357,0.389705,0.235687,0.69337,0.88647,0.413186,0.715358,0.728948,0.29231,0.543404,0.922062,0.884743,0.231843,0.281301,0.566748,0.151179,0.873637,0.516189,0.807859,0.0965854,0.0370435,0.991266,0.164805,0.892617,0.697236,0.354051,0.0314053,0.0284926,0.325067,0.343001,0.783752,0.250839,0.631583,0.750401,0.502158,0.448392,0.212086,0.0332403,0.747449,0.838283,0.815607,0.792161,0.731172,0.00387979,0.249612,0.768908,0.0744357,0.61021,0.776675,0.504184,0.486796,0.558253,0.31628,0.47997,0.101105,0.114084,0.297835,0.490933,0.740134,0.660988,0.37869,0.844109,0.438913,0.557156,0.79844,0.417528,0.217494,0.313911,0.224219,0.826384,0.600133,0.533849,0.910867,0.408882,0.555439,0.939089,0.989155,0.143544,0.806279,0.646719,0.0736563,0.25523,0.948449,0.392563,0.987055,0.66933,0.612906,0.115189,0.702237,0.6044,0.394869,0.078598,0.18553,0.569747,0.603083,0.489069,0.306798,0.649345,0.858398,0.276585,0.328707,0.855693,0.514501,0.970467,0.239079,0.535595,0.317263,0.455564,0.77707,0.653433,0.994673,0.936123,0.518128,0.282827,0.882115,0.459183,0.701038,0.0381005,0.256575,0.333406,0.933364,0.23868,0.0254602,0.296604,0.56571,0.0181358,0.928021,0.74698,0.502911,0.203187,0.873931,0.0536515,0.85714,0.361955,0.998568,0.0575504,0.942151,0.977517,0.942619,0.114522,0.0454749,0.011395,0.621932,0.460521,0.527859,0.306988,0.85247,0.836502,0.409001,0.495693,0.363328,0.944278,0.828268,0.988859,0.919536,0.828012,0.0889733,0.469742,0.90039,0.346414,0.192949,0.560575,0.56382,0.859419,0.282156,0.640498,0.440878,0.686592,0.805443,0.703516,0.344731,0.0132161,0.30937,0.679596,0.979025,0.249998,0.0940962,0.12111,0.214107,0.904659,0.153548,0.0269669,0.3231,0.0663462,0.103162,0.629105,0.808134,0.381553,0.274394,0.380681,0.836847,0.0322425,0.197991,0.282403,0.15905,0.354838,0.453555,0.216079,0.784952,0.762129,0.256019,0.198245,0.267837,0.0141783,0.256912,0.974306,0.460182,0.985924,0.607962,0.39164,0.452384,0.616558,0.434312,0.691949,0.706891,0.171681,0.0380098,0.370687,0.377962,0.14318,0.444373,0.563332,0.991703,0.835825,0.153574,0.627617,0.559397,0.489878,0.494137,0.808065,0.28384,0.991467,0.468929,0.340486,0.5971,0.43425,0.0768971,0.452992,0.253533,0.250502,0.636717,0.326647,0.883051,0.197727,0.424434,0.512602,0.17058,0.42336,0.491973,0.0327976,0.18835,0.881443,0.459976,0.0394336,0.622702,0.140742,0.471029,0.359584,0.799721,0.78584,0.754975,0.38229,0.853125,0.389429,0.835562,0.0438513,0.503435,0.636256,0.621657,0.156703,0.211209,0.427847,0.562397,0.818408,0.0295212,0.165893,0.28477,0.505603,0.537555,0.646003,0.0418392,0.294599,0.434379,0.370968,0.493067,0.480375,0.931148,0.531803,0.970124,0.102725,0.503313,0.264266,0.483305,0.624011,0.637143,0.205352,0.513408,0.241177,0.0717809,0.890043,0.466883,0.826641,0.575138,0.688622,0.259899,0.800488,0.437085,0.819252,0.564036,0.418536,0.550726,0.584993,0.956559,0.99479,0.992412,0.736218,0.857529,0.0571222,0.874473,0.779444,0.913711,0.558733,0.947919,0.299342,0.65299,0.186651,0.0419927,0.149395,0.765968,0.626284,0.501203,0.272402,0.731862,0.950651,0.12499,0.608266,0.901216,0.875343,0.795398,0.694737,0.774583,0.253816,0.142315,0.995547,0.739987,0.413237,0.484795,0.150535,0.621792,0.196535,0.851434,0.196716,0.273275,0.749636,0.255833,0.217535,0.252622,0.243814,0.487754,0.518732,0.245273,0.135737,0.0714568,0.252126,0.989987,0.984536,0.174021,0.952772,0.577226,0.315831,0.417094,0.115353,0.378054,0.12429,0.945774,0.222822,0.427301,0.108161,0.578216,0.591754,0.655879,0.252864,0.115174,0.565788,0.022194,0.336903,0.0932728,0.961284,0.0952858,0.731011,0.278519,0.60366,0.865756,0.838009,0.901884,0.178661,0.299155,0.0108626,0.0563064,0.550679,0.979516,0.100198,0.911806,0.332855,0.820034,0.352305,0.156679,0.671692,0.518598,0.270901,0.460951,0.847415,0.0399896,0.972044,0.784916,0.921615,0.24801,0.973898,0.752366,0.319106,0.418948,0.166664,0.81385,0.633886,0.684184,0.923339,0.547462,0.997978,0.137187,0.705179,0.544336,0.517071,0.551151,0.0706154,0.0666342,0.747261,0.38509,0.551246,0.790251,0.24722,0.920909,0.23836,0.277759,0.650385,0.0508548,0.691022,0.369094,0.785436,0.491107,0.268028,0.184887,0.650675,0.898417,0.321953,0.529927,0.788552,0.413861,0.597599,0.466233,0.200052,0.629089,0.702724,0.526219,0.411637,0.44931,0.599533,0.573516,0.720127,0.453982,0.0845028,0.385632,0.202858,0.132041,0.148485,0.234417,0.412694,0.226706,0.991747,0.49423,0.348373,0.106245,0.864353,0.465195,0.127733,0.30111,0.943338,0.618745,0.837679,|0.898237,0.966129,0.34275,0.244266,0.496053,0.462425,0.440389,0.251711,0.357156,0.24632,0.81595,0.251594,0.731607,0.224811,0.0648077,0.619399,0.614349,0.797815,0.385537,0.836024,0.684716,0.540966,0.252836,0.446056,0.449805,0.189365,0.176099,0.887062,0.291356,0.153234,0.311593,0.0282375,0.689271,0.766044,0.0864166,0.255464,0.116546,0.114565,0.831755,0.105917,0.180506,0.158472,0.15742,0.916642,0.931452,0.167771,0.177336,0.88935,0.731921,0.301316,0.994799,0.526686,0.662112,0.00690711,0.503926,0.177775,0.939133,0.447412,0.667996,0.994001,0.429824,0.378929,0.915859,0.773843,0.0323416,0.935124,0.0508171,0.6549,0.03639,0.202034,0.30867,0.131216,0.685279,0.251988,0.807128,0.470679,0.848344,0.524055,0.1019,0.258294,0.809331,0.778148,0.80021,0.462723,0.306936,0.940227,0.102285,0.915722,0.608249,6.77705e-05,0.287143,0.705775,0.778115,0.276825,0.37686,0.651128,0.492324,0.334411,0.895383,0.793635,0.555334,0.818159,0.0540721,0.205092,0.722594,0.502075,0.781961,0.140681,0.52801,0.931396,0.911379,0.984076,0.370352,0.286957,0.108149,0.146063,0.394775,0.968761,0.270889,0.632928,0.124968,0.458349,0.315887,0.940892,0.639929,0.768932,0.376432,0.864607,0.422269,0.59398,0.517904,0.921569,0.622139,0.807173,0.698012,0.305549,0.160174,0.123981,0.909995,0.271772,0.662812,0.664492,0.658788,0.311058,0.718997,0.454203,0.734818,0.641998,0.694135,0.14156,0.503065,0.820727,0.0404892,0.704928,0.293141,0.159705,0.675087,0.425091,0.760806,0.165337,0.141492,0.457021,0.416317,0.945169,0.322519,0.62277,0.721663,0.956706,0.534808,0.601011,0.890584,0.601848,0.126712,0.0978189,0.622471,0.856685,0.783505,0.291559,0.833439,0.279472,0.840592,0.775763,0.994137,0.891224,0.0250233,0.429586,0.912448,0.987124,0.201996,0.00634915,0.638435,0.436419,0.98849,0.0757896,0.45798,0.286806,0.17643,0.0514994,0.0956656,0.590412,0.683745,0.839618,0.548225,0.588925,0.187412,0.0769409,0.244289,0.919658,0.517857,0.408176,0.231611,0.660001,0.0674733,0.596039,0.900031,0.833159,0.703462,0.339488,0.527506,0.372265,0.817282,0.171197,0.810768,0.0593835,0.838129,0.181917,0.565495,0.0210707,0.0407539,0.793685,0.261575,0.688787,0.932879,0.60195,0.0496535,0.446025,0.351467,0.291111,0.478713,0.830953,0.236633,0.165135,0.39542,0.534744,0.718107,0.597687,0.615162,0.542932,0.986981,0.664326,0.920607,0.0490556,0.150891,0.190541,0.462743,0.0151948,0.841747,0.730032,0.394582,0.143724,0.898622,0.388472,0.568301,0.0484843,0.690239,0.911517,0.23535,0.534543,0.753579,0.843163,0.103868,0.80887,0.267166,0.376033,0.148655,0.305197,0.106875,0.855181,0.168332,0.548898,0.325046,0.0766135,0.345411,0.264298,0.932878,0.773381,0.918595,0.559479,0.949102,0.57208,0.443425,0.90143,0.542817,0.949241,0.681681,0.0362707,0.904257,0.460936,0.0698573,0.576036,0.423321,0.483446,0.566424,0.713403,0.0483466,0.876198,0.719959,0.630713,0.250478,0.553304,0.145747,0.520501,0.656469,0.853309,0.00973678,0.975549,0.428301,0.988341,0.871805,0.358764,0.896448,0.899269,0.37993,0.327081,0.463107,0.543258,0.612446,0.693538,0.301904,0.917863,0.704461,0.434966,0.230781,0.672966,0.456886,0.82373,0.747139,0.103645,0.657958,0.52621,0.676472,0.875311,0.91136,0.890206,0.629031,0.0942143,0.756934,0.024415,0.646115,0.999781,0.752036,0.915993,0.555744,0.18454,0.705285,0.838949,0.477483,0.478767,0.0798382,0.523342,0.890495,0.0711824,0.675408,0.209952,0.67594,0.948129,0.263823,0.603113,0.762303,0.479745,0.521577,0.188313,0.622084,0.420208,0.833135,0.328476,0.153248,0.988745,0.527347,0.0151385,0.328724,0.106375,0.0312055,0.0139955,0.600023,0.444267,0.615334,0.723715,0.950112,0.194881,0.353434,0.261616,0.951225,0.996102,0.581221,0.246877,0.279016,0.0206221,0.72175,0.0981222,0.155265,0.838188,0.243056,0.25148,0.27118,0.581997,0.86183,0.504136,0.801227,0.681781,0.140667,0.348855,0.262047,0.878187,0.726542,0.51205,0.36667,0.998947,0.601733,0.477647,0.0522056,0.420155,0.978747,0.21634,0.0853497,0.786504,0.143158,0.769506,0.423893,0.934717,0.587601,0.873947,0.416699,0.184592,0.561374,0.342735,0.0494806,0.224964,0.790067,0.627522,0.681814,0.721868,0.173076,0.405757,0.948041,0.582315,0.0634723,0.601219,0.362852,0.126334,0.135766,0.484632,0.278246,0.250071,0.97062,0.660922,0.257293,0.164344,0.86628,0.438927,0.744201,0.233884,0.0980573,0.58341,0.948792,0.736033,0.505719,0.212765,0.700571,0.0102458,0.0302355,0.0801705,0.402382,0.982219,0.074699,0.836976,0.203655,0.707913,0.445324,0.33482,0.498693,0.568233,0.0274947,0.531302,0.246688,0.693586,0.172328,0.758943,0.748486,0.686616,0.513384,0.975715,0.433047,0.197692,0.741143,0.754303,0.32292,0.80422,0.833904,0.900033,0.998131,0.536701,0.796717,0.115696,0.675001,0.00157857,0.592065,0.0354467,0.553698,0.632817,0.496204,0.177424,0.806191,0.48908,0.11223,0.425425,0.778217,0.270941,0.357003,0.181179,0.156172,0.519166,0.175993,0.344749,0.437843,0.281554,0.373084,0.135421,0.633313,0.935037,0.816242,0.832037,0.716355,0.832853,0.927742,0.454328,0.970479,0.696093,0.819852,0.409635,0.240388,0.331385,0.630336,0.473066,0.931439,0.882077,0.712065,0.453114,0.005952,0.815674,0.586705,0.936219,0.0397999,0.56975,0.866169,0.485163,0.999425,0.760944,0.696918,0.332735,0.993876,0.205709,0.0676995,0.623717,0.0957728,0.492923,0.938055,0.911846,0.537546,0.0264457,0.326951,0.32725,0.159973,0.325329,0.40717,0.102709,0.29589,0.464802,0.606955,0.0876307,0.983324,0.286383,0.30144,0.0701748,0.484951,0.219602,0.804228,0.522108,0.490717,0.5549,0.354471,0.0880018,0.652184,0.592405,0.839589,0.781407,0.169458,0.577679,0.309432,0.507205,0.924061,0.408549,0.735657,0.559587,0.0947722,0.165769,0.673007,0.537152,0.283127,0.421928,0.238693,0.549459,0.557578,0.167505,0.640589,0.0144451,0.0277274,0.786771,0.177254,0.90135,0.876693,0.348749,0.736145,0.932028,0.214815,0.349032,0.49828,0.5264,0.593079,0.850651,0.146114,0.523755,0.554795,0.546466,0.277302,0.268692,0.316179,0.584423,0.117921,0.337597,0.18903,0.36709,0.628871,0.770514,0.690433,0.799742,0.571582,0.249523,0.532168,0.0804173,0.50865,0.812543,0.592816,0.771638,0.137383,0.707377,0.579374,0.854872,0.0456427,0.415172,0.121725,0.114864,0.491792,0.431023,0.924469,0.185018,0.00806546,0.529618,0.389418,0.61527,0.438377,0.876094,0.875502,0.156831,0.814722,0.765928,0.466126,0.318111,0.871127,0.341107,0.279746,0.594427,0.1183,0.786183,0.226918,0.772569,0.540246,0.635955,0.194358,0.305158,0.404563,0.75833,0.159721,0.95275,0.782921,0.626866,0.0432927,0.0523173,0.919426,0.899494,0.958778,0.616383,0.383956,0.141979,0.600386,0.673979,0.575842,0.90282,0.592813,0.359527,0.178598,0.142931,0.186903,0.121537,0.169298,0.0760352,0.429109,0.90716,0.17368,0.884385,0.476587,0.337496,0.0464326,0.296814,0.142335,0.0902165,0.474497,0.502266,0.0813641,0.245597,0.275974,0.108267,0.581381,0.386739,0.965522,0.536973,0.622653,0.614925,0.505629,0.19328,0.943086,0.0907005,0.27672,0.621424,0.469709,0.505309,0.92724,0.354975,0.33017,0.723554,0.0348246,0.00514245,0.976771,0.0687485,0.691118,0.475759,0.577414,0.738965,0.980195,0.815625,0.669546,0.205173,0.238161,0.261915,0.934053,0.143829,0.700793,0.60971,0.871416,0.516814,0.890708,0.128084,0.753759,0.0988209,0.404532,0.255223,0.327366,0.611328,0.491099,0.746575,0.493297,0.798474,0.179283,0.229381,0.767017,0.654562,0.349321,0.610173,0.6981,0.302089,0.289158,0.193222,0.294981,0.72374,0.197071,0.0490306,0.818247,0.263702,0.440066,0.96278,0.989287,0.657475,0.978636,0.902784,0.434953,0.465158,0.874313,0.306306,0.914488,0.309655,0.982814,0.63468,0.738141,0.629012,0.27377,0.965815,0.947784,0.103996,0.782426,0.928145,0.878591,0.85114,0.231737,0.362568,0.319233,0.48544,0.733844,0.892947,0.731971,0.882611,0.538375,0.230492,0.621613,0.968215,0.95243,0.0651755,0.625927,0.798985,0.521718,0.0872127,0.758252,0.862533,0.808588,0.0376443,0.0290299,0.178192,0.161819,0.639896,0.969772,0.0900614,0.0248261,0.281208,0.845181,0.306218,0.44405,0.467002,0.161328,0.947736,0.882188,0.321985,0.0276925,0.490571,0.633908,0.515525,0.417306,0.141057,0.506486,0.669071,0.402603,0.311848,0.409007,0.40978,0.0585681,0.0240375,0.892102,0.709534,0.443555,0.0955034,0.12853,0.430293,0.229962,0.309681,0.320938,0.766201,0.14852,0.580636,0.521621,0.773782,0.358588,0.944885,0.0359178,0.288652,0.0595057,0.589746,0.550729,0.599363,0.0178109,0.104926,0.000346243,0.542405,0.501728,0.656019,0.413275,0.505177,0.603082,0.910267,0.118352,0.0461015,0.387839,0.506342,0.743377,0.522429,0.932729,0.661383,0.187036,0.289393,0.654671,0.551775,0.0995117,0.115948,0.44419,0.547221,0.812217,0.513242,0.265975,0.715683,0.969792,0.69804,0.643415,0.442831,0.217234,0.964468,0.527784,0.0166224,0.314026,0.250249,0.873376,0.58648,0.0611597,0.766203,0.491203,0.581508,0.523191,0.513793,0.349093,0.0258616,0.858704,0.967549,0.42967,0.49198,0.444028,0.281665,0.828629,0.910972,0.651825,0.836095,0.156809,0.112032,0.757258,0.297351,0.224325,0.96501,0.45184,0.713877,0.898195,0.611581,0.869876,0.534638,0.75568,0.817768,0.314982,0.080049,0.463131,0.84282,0.619051,0.115345,0.101411,0.40267,0.168451,0.791581,0.492883,0.471724,0.127715,0.393042,0.354074,0.605529,0.249798,0.186798,0.106446,0.986435,0.976416,0.201192,0.265469,0.641881,0.211309,0.412473,0.674613,0.91146,0.787674,0.0297908,|0.715575,0.423179,0.918654,0.383388,0.464534,0.402325,0.51799,0.347282,0.0336327,0.661605,0.896261,0.290742,0.521027,0.921561,0.954252,0.0569864,0.712917,0.440777,0.653835,0.890881,0.312385,0.15305,0.298039,0.0586727,0.157885,0.613524,0.788989,0.330067,0.736312,0.184677,0.855484,0.837074,0.961227,0.460735,0.429468,0.380683,0.427526,0.772181,0.154533,0.16408,0.7904,0.705961,0.385687,0.900699,0.266443,0.95105,0.766008,0.85393,0.700671,0.38341,0.805117,0.631177,0.879985,0.609179,0.756772,0.552915,0.374824,0.327974,0.472018,0.0239871,0.644828,0.244224,0.675509,0.307851,0.722365,0.0777826,0.698128,0.721284,0.396471,0.550232,0.855488,0.866246,0.0964525,0.764026,0.499335,0.98417,0.947375,0.38925,0.972095,0.173412,0.829102,0.111259,0.0449088,0.504791,0.290462,0.171976,0.474513,0.429732,0.490838,0.835097,0.989304,0.276066,0.0334515,0.825942,0.169203,0.936609,0.494415,0.113602,0.661163,0.377725,0.640728,0.432708,0.530807,0.414173,0.623769,0.221621,0.466228,0.976717,0.324235,0.434069,0.508609,0.407161,0.708633,0.548841,0.351743,0.439375,0.260311,0.704752,0.593699,0.0500186,0.0652992,0.841848,0.179755,0.275035,0.746827,0.530962,0.911227,0.758997,0.751182,0.700991,0.134741,0.122944,0.573191,0.186061,0.293109,0.492396,0.194148,0.896325,0.87194,0.863803,0.207636,0.765212,0.707723,0.7228,0.360493,0.383437,0.709736,0.952145,0.31869,0.780381,0.255213,0.919237,0.382839,0.764083,0.399685,0.598249,0.173268,0.26971,0.684668,0.900058,0.374778,0.763227,0.405905,0.49095,0.954744,0.832896,0.0295824,0.57906,0.547857,0.0507388,0.970361,0.618934,0.0066064,0.974004,0.456266,0.521605,0.477502,0.385419,0.272559,0.51709,0.477008,0.0234787,0.993131,0.528144,0.936777,0.703766,0.266407,0.490611,0.281696,0.585888,0.264716,0.139057,0.146223,0.181101,0.245133,0.406303,0.0357133,0.215324,0.41983,0.766846,0.331193,0.982754,0.734262,0.369149,0.162808,0.968745,0.1896,0.522378,0.98044,0.121756,0.906852,0.135285,0.0573402,0.0244291,0.137782,0.656445,0.485821,0.733454,0.848125,0.930886,0.435447,0.211426,0.277737,0.785879,0.450737,0.329453,0.505483,0.836645,0.0415771,0.211348,0.903095,0.927137,0.717268,0.570898,0.981043,0.541636,0.765746,0.696485,0.294936,0.757167,0.103839,0.864093,0.449424,0.825837,0.926047,0.365876,0.223259,0.757724,0.454489,0.838426,0.681953,0.349864,0.659252,0.599754,0.291507,0.0563694,0.142255,0.116287,0.142858,0.709692,0.616334,0.539859,0.205923,0.807444,0.46135,0.791364,0.99047,0.929943,0.390054,0.261044,0.979807,0.170354,0.354584,0.828187,0.282215,0.907437,0.34093,0.305055,0.592499,0.858675,0.920552,0.0555152,0.0895869,0.259453,0.576585,0.0534537,0.334521,0.752034,0.715922,0.788057,0.5558,0.192449,0.783885,0.789292,0.735904,0.351798,0.847268,0.0605766,0.998041,0.776363,0.610236,0.590979,0.0816236,0.0695345,0.121177,0.306666,0.921454,0.830545,0.776334,0.92774,0.265553,0.483263,0.949539,0.231106,0.640083,0.143347,0.270676,0.382825,0.489449,0.259675,0.811943,0.73753,0.697907,0.857747,0.286005,0.292719,0.980947,0.587459,0.135458,0.376586,0.0570392,0.956815,0.447476,0.554835,0.229567,0.592481,0.617563,0.518133,0.860258,0.327468,0.103883,0.768601,0.298507,0.638679,0.798446,0.253339,0.778308,0.440376,0.831022,0.100546,0.408311,0.143971,0.586921,0.667609,0.197161,0.716646,0.152535,0.71027,0.797288,0.481976,0.63038,0.813626,0.681133,0.764917,0.493062,0.492308,0.0764829,0.747925,0.286693,0.482112,0.961802,0.404071,0.107728,0.844107,0.278891,0.811216,0.580787,0.112831,0.837394,0.757702,0.0527835,0.966928,0.671386,0.140903,0.211812,0.472713,0.690572,0.451685,0.597826,0.999732,0.904625,0.835766,0.906308,0.443947,0.764844,0.796527,0.0634934,0.422073,0.110441,0.648312,0.367484,0.331223,0.376581,0.974595,0.290865,0.172197,0.992769,0.388455,0.411394,0.82626,0.393891,0.292904,0.443333,0.592687,0.279982,0.797738,0.664299,0.403237,0.964955,0.73055,0.762765,0.605612,0.374467,0.0708736,0.724866,0.023438,0.132831,0.783175,0.405199,0.457771,0.651965,0.26151,0.247467,0.674295,0.379792,0.284328,0.629159,0.15754,0.28638,0.779462,0.524427,0.32782,0.491033,0.586509,0.0495582,0.18856,0.872806,0.734092,0.0835207,0.523515,0.487519,0.0788755,0.829332,0.520085,0.172781,0.695818,0.0272009,0.753941,0.0794584,0.840726,0.616126,0.487924,0.150015,0.124892,0.765097,0.339266,0.42523,0.6787,0.549545,0.894914,0.345381,0.258809,0.633237,0.498606,0.0970232,0.497099,0.903612,0.435278,0.197388,0.660659,0.188759,0.52618,0.209199,0.0878267,0.577779,0.116046,0.679391,0.0506798,0.334898,0.296733,0.138285,0.0309154,0.0167106,0.215761,0.0430602,0.911289,0.862054,0.766067,0.696837,0.1418,0.154829,0.980607,0.205089,0.445692,0.135019,0.240045,0.973504,0.342273,0.0563914,0.192209,0.47624,0.372816,0.623992,0.0831497,0.797859,0.110569,0.401691,0.623912,0.958881,0.833728,0.55559,0.309126,0.367764,0.785088,0.196383,0.473634,0.278293,0.42123,0.481281,0.357549,0.801772,0.0406788,0.690225,0.750976,0.807011,0.626698,0.0745599,0.987014,0.298651,0.531218,0.141317,0.147946,0.0496745,0.0779574,0.615298,0.238439,0.663526,0.250467,0.233105,0.490373,0.165091,0.178972,0.117206,0.142288,0.470632,0.939983,0.902024,0.0843784,0.843509,0.289472,0.145245,0.301156,0.728695,0.953394,0.144784,0.00753391,0.80608,0.967588,0.78207,0.715825,0.152748,0.461324,0.827921,0.798272,0.382657,0.286144,0.837471,0.68625,0.143994,0.66833,0.155216,0.463936,0.939742,0.91571,0.778834,0.608807,0.467379,0.221498,0.605093,0.921531,0.104948,0.969887,0.610786,0.0886408,0.570285,0.946641,0.026403,0.714909,0.0591077,0.836162,0.222148,0.412793,0.784241,0.932284,0.0285214,0.029362,0.819104,0.9197,0.622537,0.604212,0.901602,0.0060879,0.0298325,0.712708,0.754446,0.508846,0.0945712,0.845171,0.861867,0.194611,0.719198,0.681794,0.615418,0.916165,0.769694,0.931817,0.549575,0.927385,0.0859867,0.197907,0.878602,0.458416,0.283625,0.646511,0.527774,0.229689,0.96464,0.633362,0.00852638,0.00298864,0.395161,0.0760399,0.343568,0.0489175,0.536171,0.333945,0.905227,0.0773917,0.834459,0.385544,0.409487,0.162555,0.589395,0.643314,0.76928,0.0388757,0.526691,0.0438499,0.407138,0.274348,0.612754,0.863881,0.74043,0.811272,0.85156,0.471463,0.817959,0.582284,0.309792,0.99078,0.0552005,0.841738,0.787963,0.642048,0.919438,0.539508,0.198372,0.769943,0.0229082,0.740029,0.566769,0.953481,0.248297,0.253166,0.240351,0.575854,0.28964,0.461189,0.406007,0.100113,0.581947,0.180034,0.69287,0.482638,0.647458,0.799524,0.876562,0.921657,0.0279057,0.20118,0.240788,0.169539,0.734397,0.807471,0.412654,0.27452,0.294288,0.793222,0.511496,0.63649,0.947672,0.110432,0.390232,0.422807,0.734771,0.847031,0.316703,0.00439167,0.792987,0.844503,0.13645,0.885041,0.754684,0.519923,0.161018,0.883634,0.21645,0.532073,0.11363,0.986249,0.857258,0.767221,0.896877,0.0238797,0.757368,0.309143,0.565424,0.619931,0.249293,0.47072,0.802164,0.688723,0.388262,0.194555,0.597531,0.328299,0.396047,0.486722,0.625987,0.351629,0.884423,0.557875,0.384887,0.181418,0.688722,0.0819685,0.731189,0.136166,0.445511,0.331802,0.338583,0.972744,0.878591,0.994485,0.214249,0.78718,0.850795,0.11071,0.567501,0.69467,0.940635,0.357246,0.577684,0.666869,0.557025,0.249303,0.456664,0.0558686,0.851201,0.883019,0.844819,0.638407,0.113213,0.446584,0.41502,0.603038,0.268733,0.747262,0.204582,0.306619,0.176952,0.194241,0.152478,0.493925,0.592857,0.498936,0.850654,0.701728,0.375332,0.147883,0.368069,0.528022,0.548069,0.0704826,0.648979,0.515375,0.168103,0.22321,0.384163,0.455515,0.887104,0.866307,0.0108965,0.710091,0.920907,0.431016,0.963651,0.656915,0.409063,0.259867,0.977775,0.196847,0.704072,0.414362,0.665363,0.0358273,0.871892,0.391598,0.971749,0.445092,0.200881,0.0322473,0.602819,0.996606,0.681711,0.412826,0.168466,0.230265,0.0800941,0.977547,0.342505,0.375168,0.147032,0.937395,0.589539,0.424301,0.725408,0.692735,0.274008,0.194558,0.798244,0.106894,0.950164,0.132438,0.979056,0.595132,0.0551435,0.230494,0.178362,0.96328,0.0553324,0.360598,0.277246,0.858777,0.8218,0.916592,0.350412,0.493794,0.0786169,0.249304,0.980714,0.78592,0.937504,0.12999,0.788114,0.706535,0.0926841,0.650551,0.208376,0.977871,0.798498,0.857485,0.142375,0.87087,0.408511,0.62901,0.25759,0.20792,0.560955,0.405976,0.66217,0.607074,0.658161,0.158027,0.21991,0.822682,0.671246,0.730522,0.931475,0.503258,0.640241,0.431432,0.722512,0.830136,0.784285,0.382908,0.594645,0.730696,0.608194,0.379397,0.426993,0.0971323,0.140543,0.326263,0.898727,0.249257,0.0989695,0.252794,0.461882,0.0430817,0.928678,0.384819,0.12398,0.158253,0.174824,0.537538,0.223355,0.0967444,0.954117,0.647417,0.651671,0.702659,0.98936,0.852487,0.261256,0.30433,0.519679,0.326067,0.953122,0.27082,0.814594,0.825131,0.230783,0.664308,0.404133,0.306678,0.947505,0.255819,0.0198708,0.218162,0.112349,0.271928,0.744015,0.654277,0.475326,0.549217,0.40747,0.351162,0.846881,0.808442,0.372937,0.884582,0.135139,0.590231,0.336287,0.770732,0.94439,0.425432,0.968616,0.83538,0.412005,0.906088,0.0515312,0.629484,0.12004,0.0909377,0.391306,0.438045,0.401473,0.263172,0.523606,0.896609,0.47104,0.0638696,0.31119,0.313323,0.0191411,0.462341,0.116332,0.686626,0.941509,0.3659,0.803151,0.233727,0.432343,0.997126,0.604939,0.890005,0.187918,0.255077,|0.584416,0.491491,0.250541,0.165073,0.0613695,0.00702822,0.070734,0.82764,0.563613,0.824476,0.976891,0.398538,0.873701,0.952707,0.608528,0.71579,0.807882,0.572254,0.666249,0.286647,0.255911,0.343653,0.766615,0.745239,0.954714,0.179737,0.622494,0.636588,0.427582,0.530963,0.55682,0.816322,0.35478,0.151042,0.70079,0.480684,0.577629,0.851995,0.119154,0.235962,0.983428,0.00916964,0.97423,0.812654,0.205664,0.612615,0.606915,0.641169,0.986952,0.602772,0.052878,0.0389423,0.737034,0.189843,0.924633,0.041028,0.940549,0.352778,0.724587,0.688622,0.400096,0.53456,0.850636,0.282535,0.517591,0.193555,0.316231,0.594935,0.147058,0.470183,0.415392,0.638576,0.0714982,0.385347,0.428688,0.58015,0.289116,0.0758675,0.549545,0.442663,0.439208,0.0426418,0.666262,0.924815,0.852768,0.972659,0.318019,0.151734,0.950444,0.772576,0.554737,0.272313,0.143632,0.921824,0.749804,0.802401,0.652984,0.694588,0.0286946,0.779782,0.148561,0.534069,0.498376,0.359339,0.566579,0.294123,0.131561,0.445515,0.999239,0.421499,0.605369,0.380647,0.362689,0.449838,0.613748,0.862712,0.723484,0.387659,0.490978,0.288075,0.700792,0.900293,0.214033,0.949996,0.815014,0.838109,0.847695,0.168336,0.744865,0.0449153,0.817151,0.518725,0.258834,0.670915,0.567703,0.868742,0.211459,0.22961,0.857974,0.778487,0.526282,0.35162,0.929455,0.64604,0.524639,0.103133,0.847527,0.980153,0.729417,0.762492,0.798028,0.454449,0.183015,0.916761,0.0211145,0.921976,0.711486,0.999353,0.696195,0.244426,0.331474,0.726543,0.735583,0.284836,0.190855,0.491607,0.782371,0.736532,0.857714,0.5294,0.76268,0.023067,0.511481,0.711557,0.661833,0.701016,0.206667,0.626121,0.933276,0.144214,0.920465,0.994944,0.680139,0.712816,0.107755,0.336309,0.652758,0.372379,0.42091,0.328336,0.573538,0.208261,0.773983,0.109584,0.827002,0.903168,0.764481,0.466625,0.071166,0.621849,0.141938,0.167804,0.0286217,0.695018,0.229423,0.059397,0.276524,0.0882704,0.539976,0.231124,0.779838,0.741532,0.638172,0.92136,0.82751,0.055389,0.639848,0.737939,0.34215,0.870416,0.582856,0.665638,0.142547,0.457082,0.136969,0.266311,0.942801,0.719481,0.0909105,0.0206384,0.388358,0.187366,0.993712,0.61806,0.768811,0.299347,0.670951,0.562783,0.139615,0.486791,0.941898,0.956532,0.691257,0.645013,0.379937,0.533817,0.382781,0.359817,0.137847,0.623981,0.680935,0.375036,0.919703,0.781241,0.438579,0.364678,0.952376,0.446123,0.106614,0.805078,0.595259,0.575786,0.306784,0.750543,0.340617,0.155649,0.110625,0.378763,0.291849,0.657773,0.413649,0.173862,0.601194,0.00693673,0.587278,0.758155,0.949624,0.66028,0.538991,0.552292,0.1262,0.510852,0.0737951,0.126173,0.477815,0.205808,0.281761,0.380927,0.555,0.413546,0.251735,0.996411,0.0967979,0.0167167,0.225208,0.87015,0.607615,0.254078,0.726643,0.595573,0.0837539,0.904776,0.962412,0.837074,0.669084,0.00252551,0.783169,0.401166,0.711468,0.859017,0.446179,0.520418,0.762996,0.945807,0.297727,0.511525,0.26609,0.575971,0.0260763,0.361039,0.320731,0.691353,0.430991,0.0436302,0.445831,0.077101,0.802615,0.829701,0.36328,0.92038,0.405646,0.720951,0.0717387,0.189051,0.441102,0.0752425,0.109829,0.299527,0.266502,0.267399,0.196471,0.944541,0.450314,0.568556,0.700336,0.0128615,0.989333,0.828815,0.383023,0.0207906,0.319973,0.987596,0.686829,0.663528,0.376762,0.821876,0.920421,0.997602,0.548722,0.686632,0.884723,0.358036,0.805384,0.973479,0.0705714,0.550426,0.695647,0.458111,0.0327612,0.619671,0.810034,0.611125,0.430985,0.551276,0.286974,0.244097,0.343261,0.313181,0.865043,0.414248,0.143425,0.441589,0.928764,0.843913,0.752651,0.254431,0.492823,0.917395,0.512205,0.754833,0.53721,0.593524,0.263233,0.0595802,0.0949911,0.204147,0.840264,0.172671,0.184723,0.625071,0.0693921,0.6968,0.957011,0.55771,0.210827,0.415823,0.239294,0.564718,0.279951,0.118081,0.712378,0.521318,0.0309145,0.900002,0.124942,0.885707,0.50716,0.746496,0.232266,0.748655,0.816655,0.918714,0.329403,0.327768,0.332468,0.723064,0.897287,0.686115,0.871467,0.413223,0.996568,0.0663958,0.157826,0.906739,0.104008,0.992876,0.208896,0.729257,0.560743,0.512056,0.815276,0.576817,0.862608,0.738535,0.809874,0.672641,0.781645,0.409914,0.905313,0.322099,0.861021,0.653895,0.670286,0.182179,0.748485,0.676148,0.767395,0.931049,0.27283,0.839577,0.759117,0.898512,0.550743,0.339076,0.432539,0.258956,0.901029,0.485293,0.698364,0.380961,0.556367,0.478773,0.861592,0.495538,0.96519,0.090952,0.811357,0.666348,0.869221,0.528153,0.586352,0.662419,0.420394,0.828359,0.0113884,0.728362,0.366543,0.149835,0.155475,0.845899,0.109156,0.248716,0.386671,0.00891054,0.843783,0.0421162,0.125139,0.253681,0.628319,0.663387,0.784107,0.693819,0.798857,0.181495,0.549646,0.684939,0.314622,0.429074,0.673181,0.85293,0.2578,0.398361,0.895955,0.885596,0.972404,0.579319,0.74161,0.820847,0.808988,0.342369,0.559342,0.293316,0.955118,0.957941,0.0731725,0.970398,0.41076,0.854671,0.0287133,0.586968,0.206076,0.628762,0.904848,0.997691,0.764536,0.91034,0.679036,0.990748,0.236627,0.603553,0.951203,0.908125,0.474096,0.977463,0.850712,0.0282946,0.731147,0.754153,0.415388,0.732341,0.868471,0.055984,0.245823,0.611676,0.304988,0.942385,0.800585,0.770712,0.941143,0.26204,0.489568,0.64483,0.59351,0.319949,0.898556,0.154152,0.416018,0.714468,0.262329,0.632498,0.332618,0.907768,0.414964,0.650976,0.627493,0.977743,0.916381,0.726727,0.839938,0.25858,0.9155,0.33681,0.309237,0.666108,0.339728,0.226052,0.894244,0.355176,0.280016,0.632413,0.0277205,0.329646,0.749105,0.0198588,0.446198,0.863863,0.0705904,0.0301559,0.606611,0.107157,0.178505,0.671512,0.137116,0.857903,0.533598,0.857058,0.721161,0.468604,0.421235,0.424028,0.801204,0.00342095,0.631574,0.65485,0.255542,0.538285,0.550008,0.0635455,0.294702,0.106221,0.794589,0.119571,0.728441,0.154623,0.814067,0.0620329,0.0709472,0.297465,0.825024,0.956922,0.0346195,0.903512,0.503764,0.20161,0.752217,0.539042,0.580982,0.366512,0.928466,0.393346,0.379152,0.45703,0.454269,0.18119,0.0148555,0.65952,0.176323,0.554792,0.393014,0.240487,0.953971,0.911521,0.906301,0.301283,0.43631,0.54879,0.284,0.631059,0.663541,0.996868,0.256965,0.0624858,0.425118,0.418657,0.126197,0.427258,0.867997,0.177191,0.777405,0.527134,0.0762364,0.932098,0.0403855,0.730688,0.473657,0.551702,0.474423,0.641296,0.0669733,0.857442,0.531036,0.211565,0.0871141,0.937151,0.557761,0.640671,0.326215,0.314898,0.369294,0.13097,0.811903,0.643099,0.644631,0.174251,0.371211,0.241013,0.613968,0.631869,0.895863,0.43103,0.0839722,0.162741,0.250717,0.595033,0.0383778,0.247995,0.85831,0.086755,0.19585,0.447515,0.225282,0.474704,0.655818,0.886933,0.501378,0.36007,0.0271692,0.238968,0.784425,0.759463,0.54133,0.190762,0.430544,0.771342,0.512462,0.153528,0.562201,0.335878,0.799386,0.173838,0.99986,0.106593,0.703495,0.128293,0.527937,0.799991,0.482472,0.623125,0.0859171,0.182049,0.178592,0.516563,0.188064,0.874827,0.571681,0.26158,0.404757,0.871557,0.63721,0.840741,0.512299,0.430177,0.506908,0.195603,0.434205,0.453778,0.88712,0.755853,0.565922,0.536653,0.766771,0.386385,0.376273,0.977016,0.089752,0.263421,0.131045,0.588625,0.0980899,0.019111,0.627401,0.0188011,0.0834017,0.482778,0.172096,0.411088,0.427067,0.0980229,0.791878,0.524275,0.842262,0.237985,0.165695,0.129152,0.259743,0.915716,0.870432,0.538518,0.865034,0.578278,0.836756,0.94257,0.299786,0.514006,0.740851,0.505426,0.62325,0.777154,0.382647,0.511717,0.636115,0.183737,0.899285,0.457554,0.0681863,0.24685,0.16766,0.246441,0.476491,0.826144,0.965579,0.92892,0.770971,0.981655,0.0380421,0.750677,0.545427,0.288836,0.284165,0.418037,0.0945113,0.962484,0.479658,0.104776,0.933016,0.00353801,0.799885,0.932351,0.465989,0.982016,0.586058,0.582442,0.711404,0.439375,0.258075,0.85363,0.579496,0.63803,0.242508,0.89167,0.753131,0.0667906,0.761278,0.381373,0.300607,0.695525,0.712342,0.402454,0.873331,0.504328,0.982465,0.341481,0.931251,0.185605,0.035777,0.876103,0.146639,0.475265,0.88158,0.130091,0.963791,0.233809,0.835691,0.180396,0.0567073,0.229395,0.602163,0.706951,0.150527,0.77453,0.63805,0.790891,0.374341,0.929813,0.397535,0.0066008,0.276199,0.389542,0.837415,0.276075,0.586809,0.51502,0.331203,0.0624245,0.28338,0.9336,0.283923,0.862463,0.725933,0.934506,0.0212115,0.498252,0.351814,0.709292,0.261124,0.679187,0.820901,0.418737,0.16879,0.58421,0.437312,0.608608,0.408811,0.89975,0.529204,0.170486,0.234217,0.643129,0.851842,0.437892,0.903787,0.745021,0.781113,0.744242,0.867637,0.171096,0.738543,0.167191,0.282275,0.579632,0.678993,0.963064,0.849477,0.071806,0.604767,0.575119,0.281191,0.710762,0.30652,0.830935,0.139659,0.61334,0.592585,0.418546,0.606338,0.900228,0.544802,0.853441,0.702952,0.225345,0.947443,0.604358,0.602856,0.734767,0.903492,0.48847,0.337353,0.487756,0.0992671,0.26199,0.704567,0.785578,0.0256128,0.874367,0.439349,0.346837,0.387688,0.107143,0.625567,0.642107,0.423931,0.392954,0.0272706,0.399081,0.107843,0.311357,0.288522,0.971853,0.730747,0.546886,0.120906,0.356929,0.396839,0.31255,0.527076,0.963029,0.789723,0.501869,0.735573,0.890729,0.464475,0.448309,0.16425,0.227325,0.0270419,0.177086,0.701683,0.281342,0.695114,0.312605,0.415019,0.316401,0.85012,0.998296,0.702067,0.0633091,0.415291,0.532494,0.167063,0.373266,|0.0959132,0.46175,0.68965,0.849966,0.896319,0.254708,0.125206,0.490989,0.789781,0.0365843,0.777586,0.558703,0.189243,0.786176,0.0307913,0.454619,0.665695,0.167302,0.517554,0.74953,0.672695,0.851626,0.452672,0.509035,0.33183,0.0469877,0.587207,0.491705,0.928019,0.920465,0.553305,0.492214,0.781142,0.734461,0.979356,0.862122,0.680853,0.655605,0.987319,0.659121,0.806856,0.47992,0.957253,0.435345,0.545991,0.91273,0.593527,0.897764,0.641774,0.83972,0.407288,0.924861,0.0184695,0.550412,0.829499,0.0819101,0.109191,0.126734,0.975057,0.887717,0.809702,0.234635,0.0508761,0.987452,0.66645,0.888572,0.664243,0.797637,0.753262,0.706737,0.667752,0.567957,0.736771,0.923007,0.959744,0.861594,0.838795,0.800382,0.322056,0.985899,0.550815,0.428866,0.939136,0.0914651,0.0427094,0.675126,0.577336,0.59602,0.136243,0.557376,0.445624,0.669148,0.870768,0.863302,0.216327,0.0861169,0.729232,0.611486,0.599804,0.240309,0.283536,0.378766,0.192014,0.312956,0.951208,0.261769,0.450976,0.809613,0.179026,0.309866,0.0549124,0.901135,0.563001,0.77806,0.728684,0.324688,0.757739,0.929439,0.592341,0.373621,0.109919,0.668519,0.368259,0.497939,0.268197,0.048766,0.193186,0.907556,0.138201,0.200916,0.42609,0.662645,0.19605,0.851497,0.235443,0.581159,0.92398,0.377729,0.219369,0.0654011,0.503716,0.132097,0.929395,0.162018,0.782657,0.765514,0.939427,0.623994,0.0550047,0.986605,0.767761,0.293041,0.489123,0.355911,0.0730182,0.400624,0.457529,0.755237,0.484443,0.879864,0.258677,0.451162,0.886349,0.486644,0.0132401,0.592798,0.769513,0.470197,0.675796,0.471258,0.764067,0.00802869,0.257493,0.288227,0.613274,0.599256,0.153386,0.998173,0.30716,0.997063,0.701071,0.848724,0.71319,0.32165,0.617294,0.159027,0.770547,0.529206,0.713496,0.655194,0.141557,0.996332,0.900443,0.937997,0.529283,0.149792,0.109705,0.0660039,0.162972,0.292967,0.935096,0.0726923,0.202928,0.49851,0.0303297,0.0897779,0.496043,0.454611,0.638238,0.717556,0.599253,0.993212,0.252686,0.89298,0.106872,0.908291,0.531926,0.941023,0.548669,0.559017,0.460432,0.611298,0.776379,0.136651,0.641299,0.92928,0.33126,0.173615,0.851368,0.080605,0.0942412,0.572603,0.0305108,0.816584,0.565984,0.406533,0.226799,0.890607,0.666817,0.0934724,0.479625,0.733727,0.450343,0.508988,0.00256366,0.573902,0.776897,0.501433,0.177402,0.916023,0.123445,0.540527,0.526882,0.218404,0.438217,0.106016,0.917501,0.880103,0.494904,0.429427,0.904371,0.582655,0.299315,0.612098,0.277838,0.0433753,0.100847,0.739861,0.732661,0.0736614,0.980541,0.645884,0.634107,0.247437,0.816106,0.793716,0.0762076,0.0167834,0.543648,0.281956,0.587259,0.740396,0.908432,0.411873,0.58781,0.267026,0.30138,0.579576,0.527507,0.683028,0.637895,0.710129,0.323915,0.454018,0.0614526,0.277836,0.685424,0.535215,0.0870551,0.488619,0.392018,0.257217,0.99257,0.730393,0.606935,0.872875,0.0493175,0.830087,0.592317,0.164708,0.103607,0.0907353,0.518904,0.753582,0.830954,0.0856646,0.668355,0.0373544,0.007146,0.171047,0.588476,0.0843737,0.372134,0.968981,0.621126,0.832619,0.387144,0.937788,0.357692,0.875585,0.290483,0.212853,0.503424,0.148066,0.606395,0.851066,0.598493,0.802774,0.377508,0.148569,0.880233,0.675046,0.572573,0.268888,0.819082,0.854047,0.237675,0.989911,0.988562,0.908785,0.8606,0.971669,0.352098,0.817898,0.163929,0.874742,0.112626,0.318063,0.653253,0.981068,0.896624,0.787285,0.897005,0.405182,0.807655,0.873915,0.643806,0.525612,0.907913,0.114338,0.822125,0.632411,0.239931,0.854659,0.174113,0.580529,0.0021953,0.881193,0.359309,0.216173,0.681183,0.403342,0.330894,0.416965,0.521872,0.00523645,0.314833,0.715936,0.275778,0.176301,0.893363,0.819908,0.58552,0.471579,0.343823,0.808313,0.659504,0.455004,0.70606,0.209774,0.219222,0.0788749,0.138395,0.225466,0.237081,0.776521,0.571938,0.181478,0.908689,0.00011301,0.583085,0.577044,0.582181,0.234492,0.420841,0.559885,0.917572,0.0731825,0.87206,0.568824,0.651319,0.442996,0.282134,0.139113,0.840858,0.554374,0.170121,0.208345,0.246466,0.109627,0.105951,0.950792,0.0522327,0.0549452,0.988737,0.412281,0.5615,0.41256,0.435972,0.0405971,0.370533,0.521722,0.514175,0.00373054,0.877405,0.985045,0.00362885,0.0674779,0.265352,0.213164,0.468601,0.219316,0.905636,0.0149891,0.0834956,0.834152,0.221818,0.0704798,0.738148,0.825739,0.859409,0.857948,0.877262,0.500431,0.33748,0.624839,0.798944,0.939157,0.600612,0.0484106,0.422267,0.459707,0.656843,0.891545,0.96701,0.99975,0.395397,0.446037,0.783588,0.0899656,0.39942,0.536817,0.108765,0.183853,0.552938,0.464795,0.0958047,0.633129,0.652335,0.852675,0.892656,0.813389,0.473222,0.807902,0.0990102,0.893478,0.397415,0.289804,0.519499,0.669696,0.930256,0.101899,0.244444,0.918033,0.375893,0.816552,0.614377,0.0260581,0.412888,0.194647,0.00772321,0.669818,0.495669,0.757131,0.846576,0.608806,0.918551,0.155087,0.907927,0.271298,0.778204,0.104523,0.311287,0.748419,0.52896,0.514269,0.510306,0.863326,0.925025,0.956639,0.670597,0.126387,0.678845,0.898492,0.489428,0.178476,0.396815,0.913642,0.990339,0.463561,0.881135,0.0609832,0.525137,0.200748,0.490521,0.909393,0.901369,0.776362,0.655806,0.8903,0.51457,0.778089,0.825911,0.464886,0.205146,0.0406811,0.83167,0.155219,0.523353,0.52394,0.941975,0.0211441,0.519443,0.598393,0.6835,0.644243,0.775663,0.160588,0.849045,0.444451,0.447562,0.074277,0.355241,0.663544,0.472043,0.323837,0.58155,0.923225,0.42014,0.571293,0.820099,0.137287,0.343536,0.216745,0.277264,0.889999,0.307059,0.346619,0.326069,0.754171,0.411901,0.994635,0.834337,0.821927,0.27772,0.755154,0.715134,0.539523,0.421003,0.300562,0.499598,0.277635,0.65411,0.603151,0.0933766,0.277764,0.724367,0.429776,0.747934,0.957646,0.961672,0.977154,0.802545,0.239995,0.320028,0.503409,0.182016,0.53268,0.530506,0.225374,0.104531,0.332513,0.172587,0.919866,0.050868,0.99832,0.206876,0.815906,0.952644,0.363244,0.388757,0.279074,0.872632,0.120492,0.430367,0.00592703,0.0247726,0.71503,0.719577,0.382902,0.578978,0.917219,0.49447,0.910639,0.266884,0.960381,0.722792,0.187967,0.417273,0.993596,0.969609,0.605893,0.574567,0.601029,0.501627,0.638823,0.768333,0.927208,0.683101,0.218678,0.604115,0.964353,0.581908,0.391494,0.54277,0.116908,0.837118,0.0725861,0.775702,0.805644,0.150439,0.400919,0.270129,0.545004,0.177804,0.077946,0.668064,0.331091,0.897635,0.437221,0.836094,0.81555,0.558406,0.54673,0.742549,0.0647732,0.911574,0.417399,0.698159,0.0470111,0.267029,0.070365,0.516794,0.592665,0.0672753,0.185885,0.361803,0.464889,0.21076,0.99233,0.620145,0.953117,0.431427,0.490666,0.277718,0.99262,0.634649,0.580818,0.359253,0.397841,0.980363,0.184444,0.875314,0.879742,0.0583867,0.968595,0.794719,0.87476,0.35175,0.0369494,0.052945,0.987745,0.976459,0.182358,0.781799,0.312803,0.63991,0.182793,0.367496,0.513129,0.162306,0.607386,0.430171,0.746849,0.310198,0.442713,0.668356,0.459592,0.00355285,0.977854,0.0326157,0.981817,0.711583,0.922339,0.880651,0.646798,0.869863,0.040249,0.803957,0.132708,0.640225,0.955953,0.22924,0.621345,0.0390636,0.801854,0.813562,0.0135475,0.709746,0.693492,0.0339745,0.426058,0.018258,0.000157416,0.0213086,0.998822,0.205323,0.88319,0.534101,0.335818,0.0697674,0.489756,0.177726,0.497431,0.821165,0.416226,0.417695,0.405583,0.961904,0.103061,0.838517,0.181022,0.380605,0.773425,0.400529,0.921764,0.557347,0.969468,0.310039,0.16115,0.421739,0.94807,0.719582,0.401492,0.865567,0.956631,0.267603,0.229028,0.175934,0.344213,0.232651,0.689796,0.198459,0.128659,0.778457,0.695871,0.765392,0.578819,0.194993,0.972991,0.0625121,0.215326,0.0669168,0.0911903,0.395031,0.761902,0.691207,0.137811,0.956599,0.285152,0.262822,0.207734,0.956515,0.605404,0.904014,0.579211,0.0435798,0.821351,0.107637,0.506658,0.872611,0.751941,0.635707,0.892979,0.833178,0.518756,0.171513,0.795478,0.0467178,0.716499,0.0905642,0.551627,0.935023,0.592137,0.0702674,0.757011,0.690631,0.543978,0.070474,0.627982,0.0966325,0.220561,0.155613,0.334047,0.146189,0.00504351,0.945352,0.919316,0.624915,0.70733,0.929037,0.361429,0.834142,0.155879,0.607426,0.344711,0.865882,0.360347,0.123209,0.782479,0.763097,0.68301,0.162037,0.413897,0.857136,0.558474,0.0041461,0.550466,0.941474,0.107977,0.505591,0.563634,0.930637,0.488326,0.819623,0.237835,0.355818,0.645506,0.226863,0.765793,0.0174726,0.0211619,0.233313,0.903715,0.512795,0.872545,0.360218,0.320334,0.255698,0.98525,0.475616,0.0962483,0.761318,0.703716,0.39996,0.00300765,0.190128,0.981592,0.44778,0.252188,0.362828,0.420269,0.973454,0.633829,0.910511,0.604307,0.214546,0.0756146,0.158883,0.116521,0.868865,0.273542,0.433179,0.622941,0.624551,0.554881,0.406336,0.278738,0.783661,0.921313,0.576022,0.864511,0.153054,0.539388,0.220734,0.309924,0.91287,0.178313,0.391911,0.18165,0.799157,0.334423,0.79864,0.190537,0.980322,0.160984,0.372452,0.412201,0.425104,0.0952402,0.460318,0.380629,0.549706,0.960092,0.763492,0.40016,0.774883,0.576096,0.499464,0.33112,0.181141,0.555388,0.294649,0.115121,0.962958,0.274011,0.0932724,0.716737,0.00273836,0.524025,0.495535,0.461508,0.748735,0.907235,0.558784,0.265434,0.492314,0.0446679,0.357229,0.381041,0.719595,0.880125,0.248619,0.0437192,0.381822,0.411189,0.205365,0.724636,0.553226,0.221388,0.888053,0.559946,0.455879,0.676543,0.0261332,0.627558,0.982239,0.875464,0.298576,0.852253,|0.774769,0.374536,0.251271,0.607575,0.483016,0.895901,0.256049,0.591049,0.0598333,0.158223,0.950673,0.278476,0.451549,0.873043,0.0331523,0.350536,0.148992,0.909137,0.123307,0.215927,0.0341054,0.746403,0.162724,0.409384,0.474578,0.905128,0.0376427,0.855209,0.753388,0.121761,0.642166,0.440815,0.796381,0.512184,0.486639,0.216206,0.358531,0.763174,0.0272552,0.0370584,0.893241,0.727247,0.0418896,0.294207,0.101053,0.8619,0.503811,0.453543,0.477046,0.35468,0.0994309,0.334082,0.31559,0.347874,0.708113,0.399524,0.403577,0.918106,0.254559,0.610459,0.45745,0.178297,0.274039,0.253135,0.196997,0.516057,0.639763,0.491919,0.341453,0.977159,0.644109,0.297607,0.843345,0.550894,0.148951,0.146978,0.66597,0.641394,0.121663,0.731568,0.197278,0.17132,0.762949,0.672881,0.0834298,0.0430967,0.855684,0.349778,0.300107,0.79649,0.569033,0.577976,0.740614,0.412197,0.183208,0.0437539,0.119535,0.944707,0.401333,0.128373,0.999561,0.993241,0.616812,0.173621,0.992986,0.608444,0.347973,0.719988,0.121344,0.433266,0.267834,0.367006,0.930835,0.955799,0.589871,0.847352,0.977326,0.0794967,0.816952,0.754184,0.689735,0.945205,0.0770899,0.287929,0.41242,0.613456,0.214612,0.401806,0.148654,0.382867,0.0458065,0.994595,0.943029,0.654812,0.665391,0.241308,0.0449337,0.398202,0.0480424,0.426184,0.219291,0.579891,0.150788,0.187039,0.208128,0.55061,0.504504,0.156103,0.593537,0.144454,0.0595641,0.0673388,0.382228,0.275986,0.127331,0.340522,0.0298069,0.716679,0.998285,0.488198,0.483782,0.185465,0.579796,0.0597081,0.18111,0.0933095,0.798063,0.496635,0.468293,0.0397729,0.235685,0.602541,0.834703,0.446858,0.0832199,0.195128,0.709413,0.878794,0.660408,0.526132,0.90329,0.426071,0.874147,0.993902,0.0861244,0.986347,0.588985,0.156417,0.103403,0.950506,0.95984,0.699864,0.113453,0.72471,0.904227,0.452226,0.00559074,0.346715,0.572448,0.54359,0.672083,0.717723,0.897393,0.724413,0.637808,0.572344,0.173051,0.157851,0.144597,0.804768,0.245299,0.802389,0.850596,0.218094,0.688869,0.914289,0.328094,0.185297,0.0811906,0.0862463,0.391838,0.121459,0.660325,0.480709,0.267684,0.0308515,0.545749,0.58331,0.108876,0.126296,0.367303,0.302268,0.90238,0.255861,0.614139,0.809118,0.89921,0.0271471,0.34311,0.106778,0.272066,0.537526,0.0342009,0.401253,0.252759,0.497638,0.928919,0.907848,0.710265,0.406681,0.492414,0.594779,0.895259,0.606005,0.46103,0.413311,0.184819,0.29379,0.534016,0.0147676,0.497115,0.678275,0.249089,0.490168,0.701418,0.0937507,0.837093,0.982475,0.893534,0.547652,0.417134,0.229609,0.384621,0.414327,0.791846,0.722021,0.710225,0.665754,0.56004,0.366674,0.652761,0.56924,0.823764,0.327302,0.703836,0.212463,0.272911,0.35131,0.295401,0.271404,0.595917,0.790639,0.112363,0.89074,0.509137,0.400029,0.877051,0.473316,0.413154,0.198736,0.960126,0.112157,0.0790961,0.165495,0.257274,0.191257,0.0373026,0.560299,0.628058,0.567407,0.0264019,0.24332,0.695331,0.855815,0.788969,0.497239,0.735699,0.883019,0.419655,0.754621,0.607824,0.557715,0.402857,0.0286011,0.569189,0.343501,0.556451,0.482989,0.143035,0.399553,0.813229,0.253052,0.956708,0.0637488,0.663254,0.159845,0.388295,0.773241,0.579634,0.071128,0.204912,0.924033,0.708099,0.329006,0.512504,0.312178,0.951242,0.950198,0.484197,0.515627,0.543459,0.131433,0.90234,0.636493,0.823955,0.67726,0.206573,0.354965,0.0750899,0.650596,0.983906,0.548706,0.263353,0.983581,0.95088,0.311025,0.502711,0.70009,0.521211,0.49694,0.858969,0.123735,0.730224,0.530444,0.325511,0.965067,0.90011,0.957816,0.0563962,0.483112,0.72841,0.853835,0.635397,0.232872,0.664171,0.273974,0.370578,0.589264,0.488642,0.962102,0.851734,0.399189,0.22903,0.92183,0.768034,0.733693,0.278023,0.105034,0.439891,0.743725,0.95805,0.256793,0.163824,0.468278,0.479596,0.520457,0.304354,0.878146,0.810897,0.710966,0.883261,0.321762,0.686836,0.106737,0.198954,0.330212,0.480676,0.968431,0.535589,0.308113,0.742876,0.587049,0.630957,0.366815,0.204776,0.139138,0.283101,0.866523,0.575016,0.812727,0.0303768,0.754486,0.338434,0.0477515,0.978612,0.453541,0.0189966,0.104659,0.96895,0.413877,0.495211,0.315429,0.276817,0.526947,0.572305,0.576371,0.911073,0.884152,0.869135,0.308089,0.498523,0.785171,0.323124,0.701452,0.271291,0.994219,0.400709,0.113526,0.968332,0.961189,0.0864416,0.950289,0.0490803,0.772789,0.275795,0.367635,0.805691,0.971602,0.942857,0.434179,0.408256,0.178587,0.736851,0.380348,0.637327,0.298333,0.225517,0.0722939,0.715532,0.101976,0.711254,0.34452,0.601132,0.210965,0.90819,0.215755,0.666212,0.222764,0.165437,0.297261,0.115035,0.0146348,0.0803496,0.108903,0.545581,0.0512493,0.33651,0.943161,0.668651,0.212247,0.309224,0.118551,0.86746,0.649833,0.576822,0.222014,0.469904,0.546145,0.882377,0.823683,0.681948,0.205957,0.554765,0.765028,0.486228,0.010735,0.46298,0.221028,0.307721,0.988846,0.0667959,0.155078,0.422779,0.382535,0.0979433,0.436784,0.654998,0.647615,0.774069,0.187209,0.666153,0.448897,0.487195,0.542992,0.15505,0.861564,0.582512,0.380877,0.930326,0.415818,0.498425,0.0208222,0.57298,0.00995499,0.769212,0.0505916,0.895151,0.224184,0.328573,0.79408,0.530653,0.274025,0.402003,0.00419551,0.87628,0.911886,0.455093,0.810436,0.101232,0.157529,0.446512,0.761012,0.447836,0.081062,0.449981,0.0711633,0.0781343,0.872826,0.272469,0.176511,0.174224,0.79085,0.882602,0.623061,0.0740013,0.54938,0.306129,0.51235,0.357656,0.142775,0.192683,0.460104,0.28695,0.702682,0.974616,0.817051,0.382033,0.254263,0.09052,0.942325,0.616317,0.404208,0.54579,0.00867516,0.63874,0.805681,0.105855,0.838422,0.575256,0.35351,0.631412,0.908674,0.212095,0.59419,0.276853,0.813961,0.341225,0.183926,0.733642,0.61901,0.195112,0.662798,0.738853,0.716966,0.330995,0.430582,0.41501,0.34786,0.450952,0.0781164,0.0953735,0.308263,0.0551091,0.532329,0.109404,0.325366,0.138457,0.420404,0.972514,0.0939463,0.781629,0.0614486,0.604686,0.998052,0.929516,0.113961,0.139527,0.976431,0.55712,0.0163547,0.0653618,0.0545948,0.311706,0.926626,0.161992,0.655456,0.886919,0.871489,0.161273,0.606851,0.565224,0.470039,0.811933,0.0332528,0.173904,0.588801,0.42037,0.464247,0.792331,0.496157,0.0602465,0.188596,0.184836,0.0615169,0.944404,0.274669,0.3529,0.149742,0.482421,0.308946,0.740049,0.442807,0.0826284,0.501892,0.352551,0.867234,0.97147,0.380992,0.285592,0.700849,0.311263,0.242875,0.479419,0.816398,0.682116,0.202287,0.940008,0.920645,0.0782583,0.0105338,0.372181,0.347587,0.450346,0.655186,0.31059,0.45295,0.15012,0.361197,0.978369,0.351301,0.933433,0.729265,0.40972,0.45715,0.808026,0.269162,0.438593,0.164615,0.408005,0.93345,0.693986,0.220117,0.165131,0.204872,0.425715,0.432781,0.305369,0.0210852,0.30035,0.745763,0.373623,0.518061,0.314855,0.381724,0.30467,0.818597,0.489012,0.151312,0.20548,0.595717,0.802861,0.832654,0.151046,0.554994,0.117805,0.224417,0.801453,0.670992,0.754364,0.877314,0.462153,0.316766,0.971065,0.837576,0.712126,0.732934,0.333072,0.611766,0.0354059,0.57831,0.269212,0.860237,0.545938,0.577581,0.331815,0.512242,0.664499,0.517179,0.437962,0.428068,0.410434,0.367288,0.136531,0.298745,0.134321,0.131886,0.163316,0.181391,0.625029,0.920848,0.21034,0.291429,0.744114,0.477342,0.195411,0.203393,0.48481,0.550705,0.196276,0.820236,0.200485,0.325299,0.932048,0.221611,0.437896,0.575659,0.968884,0.0218288,0.249099,0.471496,0.786274,0.567427,0.0156842,0.087436,0.509395,0.0145476,0.848928,0.391126,0.791337,0.871847,0.145101,0.278591,0.372431,0.489428,0.22421,0.858692,0.137929,0.0567628,0.257325,0.640726,0.515741,0.805698,0.00375819,0.941631,0.336965,0.792528,0.0598422,0.268959,0.604172,0.197229,0.563707,0.696809,0.112196,0.982126,0.476597,0.308323,0.478795,0.37528,0.293617,0.738592,0.253385,0.484281,0.344133,0.0226955,0.701392,0.93205,0.975188,0.471562,0.763406,0.0744553,0.842599,0.834865,0.449694,0.914626,0.109512,0.351304,0.122591,0.734073,0.207394,0.558148,0.503418,0.429941,0.917937,0.309667,0.461485,0.775398,0.860167,0.867931,0.624666,0.591044,0.804708,0.184884,0.979344,0.703996,0.619229,0.288644,0.464684,0.730277,0.569858,0.75369,0.63754,0.366854,0.0916824,0.962706,0.881347,0.525458,0.425269,0.218638,0.34945,0.492426,0.753204,0.0595383,0.275282,0.647705,0.736549,0.200396,0.175219,0.609589,0.183801,0.3915,0.124206,0.718314,0.337837,0.665908,0.567058,0.114311,0.0896702,0.87217,0.613841,0.883719,0.459212,0.968583,0.259876,0.525364,0.319829,0.195804,0.555921,0.391976,0.647686,0.399063,0.734682,0.501768,0.823544,0.529813,0.568885,0.489422,0.29989,0.67399,0.52965,0.161954,0.95218,0.0624025,0.734575,0.251656,0.146043,0.397123,0.672918,0.953176,0.749329,0.797087,0.320377,0.355934,0.0938532,0.678331,0.947045,0.306185,0.191065,0.0126716,0.107389,0.927058,0.915922,0.342863,0.37196,0.906557,0.0255125,0.800265,0.492508,0.154427,0.768267,0.699834,0.292785,0.464163,0.266084,0.660229,0.270067,0.975024,0.393628,0.151007,0.857463,0.440408,0.848343,0.155478,0.153427,0.303344,0.592952,0.879901,0.0376979,0.285011,0.103864,0.271582,0.775719,0.81913,0.0209839,0.907428,0.201106,0.639734,0.0229893,0.674479,0.555781,0.633446,0.30314,0.814121,0.853991,0.582224,0.626228,0.944887,0.915831,0.950044,0.778148,0.971793,0.0905775,0.501837,0.882613,0.285851,0.218026,0.872097,0.893934,0.399647,0.0466465,0.635724,|0.11148,0.190083,0.179905,0.946484,0.246761,0.742391,0.250839,0.25592,0.6625,0.0780787,0.950705,0.0935366,0.86276,0.276424,0.295678,0.859433,0.325076,0.743369,0.242328,0.255867,0.174298,0.160711,0.618783,0.504049,0.566793,0.541472,0.362485,0.0271972,0.693939,0.73673,0.427192,0.919935,0.0910249,0.964572,0.322352,0.539135,0.87463,0.294626,0.118532,0.537431,0.251086,0.69568,0.784907,0.586277,0.66934,0.774695,0.199291,0.961293,0.721328,0.222234,0.745328,0.135188,0.697688,0.365723,0.871971,0.243167,0.31361,0.670916,0.0413269,0.306351,0.442076,0.649178,0.269003,0.000228822,0.56486,0.151416,0.135905,0.147039,0.961304,0.880768,0.157124,0.186353,0.000797033,0.333048,0.589248,0.806344,0.672959,0.564529,0.113482,0.0854458,0.20921,0.374126,0.940305,0.775712,0.0141153,0.650219,0.293751,0.261881,0.64112,0.759311,0.632793,0.172906,0.442257,0.557313,0.969844,0.168184,0.217107,0.794221,0.260132,0.226264,0.151531,0.507394,0.446526,0.943107,0.254638,0.262118,0.333282,0.96046,0.360628,0.228467,0.817342,0.041074,0.461134,0.84438,0.306548,0.803786,0.308498,0.458485,0.68104,0.407358,0.605715,0.562965,0.0786251,0.852717,0.141944,0.391495,0.504326,0.838524,0.233967,0.252617,0.427975,0.98425,0.263211,0.852223,0.922612,0.918238,0.0895808,0.183556,0.0999297,0.958144,0.771967,0.87515,0.999035,0.0969632,0.300217,0.256592,0.777508,0.375217,0.205947,0.592951,0.118749,0.387093,0.216123,0.831004,0.12565,0.54511,0.0550916,0.839402,0.201816,0.992568,0.924564,0.992217,0.686303,0.537739,0.581063,0.532801,0.133738,0.117108,0.684217,0.697502,0.991884,0.232263,0.352881,0.801744,0.658115,0.15937,0.879564,0.716766,0.422863,0.306807,0.588641,0.944292,0.316086,0.822683,0.125062,0.476958,0.613321,0.0335377,0.35135,0.721886,0.38401,0.695128,0.350702,0.8094,0.19316,0.0251431,0.375369,0.948371,0.724928,0.349957,0.24493,0.136314,0.143361,0.49821,0.0774338,0.856232,0.822371,0.766544,0.762532,0.0263702,0.848613,0.266351,0.847941,0.629765,0.424939,0.715769,0.468711,0.372725,0.372647,0.784019,0.967283,0.299215,0.830405,0.666887,0.993953,0.85811,0.423979,0.702673,0.766402,0.605843,0.222845,0.965945,0.0260266,0.712988,0.884502,0.461919,0.577232,0.280822,0.750744,0.527401,0.144349,0.567802,0.422922,0.589157,0.0500355,0.888653,0.502551,0.959956,0.956409,0.38515,0.43388,0.207455,0.740376,0.712311,0.102102,0.693192,0.358101,0.840087,0.686163,0.282687,0.0290301,0.353923,0.00724286,0.557101,0.16682,0.393191,0.133648,0.381643,0.208313,0.172951,0.450403,0.938983,0.915485,0.0167949,0.261468,0.884267,0.0931324,0.0746662,0.961962,0.96857,0.447957,0.987159,0.0286622,0.327553,0.311114,0.5799,0.659287,0.462333,0.470628,0.165186,0.122546,0.558667,0.591026,0.584362,0.782136,0.990618,0.845161,0.105412,0.229658,0.0598905,0.367475,0.0727581,0.536234,0.350829,0.897478,0.332517,0.287063,0.48916,0.64997,0.58098,0.537507,0.844447,0.323559,0.246386,0.213919,0.697606,0.696986,0.351859,0.0888962,0.882435,0.837357,0.639777,0.849913,0.893507,0.635924,0.560036,0.994253,0.178674,0.988508,0.523432,0.749136,0.462736,0.866351,0.448124,0.275851,0.0454153,0.464055,0.292295,0.269268,0.961775,0.121422,0.0358683,0.985287,0.477507,0.270156,0.331527,0.0124564,0.288311,0.891714,0.168097,0.925622,0.282933,0.952722,0.43276,0.686613,0.253999,0.988241,0.221572,0.00118369,0.0083757,0.475578,0.189334,0.344766,0.618713,0.348825,0.954618,0.797031,0.790982,0.499394,0.0323703,0.624937,0.0480506,0.978065,0.318618,0.862497,0.804335,0.455182,0.176,0.511112,0.8289,0.851077,0.109394,0.707425,0.0690824,0.466379,0.3265,0.451366,0.580735,0.753719,0.329014,0.704374,0.591496,0.135979,0.583461,0.747066,0.127477,0.987028,0.977336,0.232997,0.461143,0.471623,0.00174689,0.0407332,0.788702,0.168374,0.35728,0.183243,0.188475,0.600517,0.838203,0.326518,0.321338,0.491055,0.371937,0.867191,0.74421,0.617914,0.0774204,0.448561,0.861025,0.771379,0.53446,0.107325,0.580256,0.643849,0.735508,0.643035,0.0110381,0.591008,0.410627,0.514169,0.25271,0.0540035,0.474327,0.841009,0.127011,0.727613,0.106542,0.108542,0.706196,0.814577,0.975115,0.924522,0.802372,0.853689,0.705935,0.0576321,0.551616,0.885891,0.0457104,0.757027,0.911913,0.43214,0.861679,0.989129,0.934724,0.322848,0.805914,0.589941,0.419621,0.898459,0.940284,0.00347877,0.824062,0.0824723,0.30556,0.050864,0.920561,0.704289,0.188193,0.489847,0.529071,0.398374,0.261615,0.691446,0.0913059,0.596232,0.391782,0.708349,0.918261,0.729068,0.902922,0.804554,0.936937,0.833904,0.450143,0.441141,0.612233,0.526533,0.0863546,0.509828,0.705672,0.294477,0.652619,0.179401,0.345644,0.548396,0.461459,0.432353,0.0384405,0.902822,0.182344,0.199942,0.850924,0.548238,0.9336,0.43563,0.96099,0.538593,0.0217642,0.265682,0.846811,0.0617585,0.0853077,0.532539,0.122378,0.648336,0.608658,0.227021,0.94777,0.114145,0.380148,0.723432,0.908358,0.121794,0.73906,0.3923,0.320414,0.949138,0.878687,0.0649362,0.33593,0.140842,0.48292,0.940909,0.800776,0.639577,0.618793,0.830896,0.807463,0.545637,0.636014,0.484535,0.289585,0.431995,0.144313,0.142534,0.106176,0.941226,0.0417427,0.0100343,0.155665,0.577549,0.835541,0.427342,0.574721,0.86338,0.498903,0.454479,0.495425,0.0153859,0.463676,0.357142,0.844204,0.0906692,0.0353349,0.519386,0.710274,0.156804,0.414536,0.205678,0.950951,0.955571,0.171284,0.88698,0.988903,0.256114,0.982878,0.460318,0.531073,0.62089,0.675287,0.25411,0.488964,0.63112,0.440569,0.767826,0.0308588,0.0344357,0.744437,0.994795,0.406431,0.740389,0.480754,0.355931,0.988605,0.814281,0.573129,0.652438,0.300317,0.435425,0.105114,0.7282,0.574437,0.506006,0.200919,0.139758,0.683788,0.445742,0.129678,0.727274,0.922482,0.266908,0.919333,0.148114,0.277076,0.143431,0.854553,0.614011,0.421867,0.187381,0.692178,0.956983,0.290603,0.313451,0.188263,0.00975025,0.271738,0.0566797,0.486335,0.980313,0.863821,0.237922,0.406526,0.971678,0.30391,0.435578,0.738378,0.956432,0.287018,0.719865,0.0483731,0.398058,0.181799,0.848128,0.842542,0.254655,0.0495023,0.674536,0.398071,0.182441,0.329621,0.240067,0.83134,0.857651,0.219371,0.96128,0.120985,0.48966,0.104833,0.541723,0.711862,0.667098,0.194796,0.930709,0.0587695,0.369994,0.199202,0.0282077,0.522682,0.154275,0.896398,0.459081,0.174258,0.948295,0.16417,0.687983,0.0472612,0.994434,0.765527,0.897354,0.293405,0.432646,0.492323,0.107547,0.701491,0.662342,0.357988,0.169597,0.915008,0.335486,0.786202,0.0078271,0.919526,0.0671034,0.588226,0.288421,0.929549,0.497956,0.292275,0.978115,0.679291,0.302775,0.593024,0.170459,0.0767328,0.283657,0.782879,0.810961,0.110525,0.96051,0.969907,0.675987,0.147383,0.124787,0.828142,0.484767,0.095146,0.880647,0.196257,0.0524232,0.617794,0.330848,0.525119,0.571511,0.0783221,0.887341,0.924132,0.271324,0.644924,0.144174,0.998934,0.703353,0.112961,0.916928,0.062429,0.551839,0.0988036,0.991216,0.293565,0.414883,0.198383,0.647355,0.0465163,0.873299,0.467035,0.8594,0.767181,0.452275,0.194782,0.951948,0.448616,0.500401,0.654667,0.570071,0.16629,0.481913,0.398653,0.073302,0.565644,0.112428,0.384118,0.451138,0.0879627,0.22613,0.854616,0.668558,0.827129,0.819305,0.796378,0.554549,0.40112,0.645108,0.926994,0.813919,0.420244,0.341657,0.219913,0.283951,0.565821,0.399385,0.575223,0.739168,0.0840423,0.141638,0.550942,0.356461,0.215067,0.167666,0.463447,0.866481,0.794548,0.805495,0.210301,0.0827845,0.906226,0.320518,0.685726,0.660307,0.757579,0.340842,0.684534,0.453855,0.334741,0.959826,0.940295,0.498582,0.406728,0.0186927,0.586444,0.344063,0.206775,0.0115827,0.987031,0.853943,0.586713,0.504478,0.695973,0.455231,0.872151,0.938785,0.779673,0.522595,0.00865692,0.0404043,0.34794,0.689075,0.322426,0.178266,0.308784,0.741938,0.387677,0.420196,0.385892,0.13388,0.622987,0.548245,0.504406,0.484716,0.499451,0.184292,0.26172,0.399653,0.256016,0.594736,0.691531,0.0278084,0.351376,0.892608,0.328534,0.220721,0.197861,0.15596,0.614692,0.445816,0.49536,0.405346,0.315459,0.328718,0.612588,0.140066,0.174823,0.994234,0.162473,0.858706,0.150543,0.761709,0.860121,0.475036,0.967081,0.47765,0.369339,0.930676,0.247103,0.892053,0.0804708,0.916793,0.426747,0.0258185,0.419115,0.555613,0.391781,0.488697,0.994741,0.69593,0.507965,0.0712522,0.277918,0.169678,0.294769,0.723798,0.978673,0.224695,0.789028,0.033127,0.285403,0.969411,0.826872,0.827834,0.149638,0.86688,0.349437,0.0507901,0.00855106,0.00963151,0.802153,0.343111,0.190724,0.559913,0.541717,0.600075,0.732171,0.339635,0.990372,0.939312,0.527251,0.685245,0.75847,0.0212892,0.204065,0.367918,0.643942,0.975995,0.495754,0.587981,0.972127,0.573571,0.233341,0.981308,0.18722,0.397866,0.0120355,0.292913,0.687494,0.957791,0.199328,0.962835,0.897105,0.173399,0.0164886,0.8617,0.919505,0.904202,0.866732,0.189876,0.142372,0.485238,0.992566,0.832103,0.919033,0.141976,0.743568,0.682611,0.685164,0.869524,0.889262,0.211459,0.159983,0.917172,0.0335439,0.551523,0.482632,0.323547,0.462793,0.695477,0.982976,0.678524,0.904972,0.97508,0.331946,0.957298,0.912687,0.0895913,0.00377625,0.667063,0.134658,0.206326,0.998162,0.522926,0.0583658,0.934344,0.259107,0.195069,0.928438,0.748432,0.508732,0.547439,0.793221,0.294665,0.519865,0.213725,0.674458,0.626772,0.49136,0.468551,0.344617,0.603272,0.34661,0.315606,0.12087,|0.824942,0.535017,0.768191,0.301884,0.809703,0.792524,0.268838,0.920567,0.968745,0.249614,0.852906,0.40082,0.661496,0.419387,0.491868,0.0462132,0.53629,0.644284,0.413116,0.540403,0.735951,0.623353,0.0187714,0.866897,0.777933,0.017809,0.0278537,0.458161,0.636158,0.105165,0.141712,0.525502,0.425323,0.280783,0.182392,0.339881,0.731251,0.09197,0.86894,0.299175,0.350445,0.241652,0.638005,0.677621,0.442595,0.424755,0.636021,0.776823,0.669777,0.408448,0.693813,0.418307,0.686557,0.911532,0.00430137,0.435586,0.258773,0.939021,0.62521,0.383294,0.43925,0.38624,0.568124,0.545252,0.709385,0.768052,0.374626,0.296253,0.857098,0.721443,0.759292,0.926656,0.851043,0.41604,0.980526,0.0732475,0.355176,0.840535,0.632679,0.426112,0.301735,0.110975,0.75154,0.642799,0.51224,0.803728,0.366412,0.489087,0.547816,0.451518,0.736097,0.436087,0.782923,0.746724,0.313767,0.848876,0.551193,0.465562,0.167795,0.0830905,0.466374,0.574991,0.831161,0.470435,0.729386,0.44048,0.409583,0.445317,0.032176,0.330715,0.491222,0.484604,0.788414,0.301712,0.741969,0.979562,0.856867,0.232403,0.256339,0.696721,0.898494,0.912415,0.373416,0.464607,0.742767,0.137107,0.514364,0.509798,0.637881,0.728475,0.114277,0.577533,0.210033,0.0551538,0.53755,0.167901,0.831905,0.262919,0.138264,0.302807,0.217781,0.366053,0.151015,0.163336,0.243847,0.135117,0.932502,0.845686,0.311367,0.43476,0.658234,0.0601805,0.584514,0.0532517,0.34753,0.511045,0.63062,0.697154,0.502672,0.55434,0.510115,0.922431,0.0377516,0.278202,0.623281,0.652399,0.781189,0.931695,0.665553,0.0239589,0.475578,0.17546,0.17727,0.66678,0.00756937,0.371956,0.262867,0.0409491,0.411751,0.506816,0.115404,0.146838,0.954455,0.601318,0.535373,0.389136,0.140455,0.556645,0.532538,0.588277,0.300871,0.41233,0.683274,0.651012,0.732134,0.0529521,0.0399081,0.95714,0.587287,0.0565426,0.87893,0.743581,0.487119,0.446958,0.215297,0.104351,0.0108148,0.184867,0.925473,0.268602,0.777466,0.724635,0.83949,0.212742,0.608395,0.192648,0.933249,0.156483,0.778183,0.748417,0.398738,0.359037,0.361979,0.420623,0.468441,0.58489,0.399482,0.914897,0.926567,0.228806,0.0154654,0.809446,0.822475,0.0276886,0.984765,0.547734,0.783451,0.62365,0.877618,0.487577,0.645029,0.820056,0.792328,0.462821,0.810112,0.636421,0.232029,0.435973,0.677088,0.665716,0.70534,0.423311,0.620377,0.0221595,0.108706,0.00619256,0.264925,0.44589,0.419665,0.777834,0.613738,0.438676,0.0869255,0.752913,0.618864,0.231937,0.58629,0.702603,0.183232,0.66215,0.723485,0.447227,0.50439,0.0704257,0.610941,0.782934,0.0224944,0.46221,0.859522,0.319392,0.392907,0.157821,0.222211,0.978156,0.725813,0.174408,0.360862,0.725133,0.721322,0.100647,0.156254,0.069641,0.811689,0.178107,0.199192,0.572112,0.576679,0.997187,0.225688,0.0670783,0.231451,0.189967,0.415302,0.325002,0.150895,0.192708,0.763645,0.225626,0.0600796,0.0399937,0.608648,0.698945,0.673375,0.921318,0.273863,0.393239,0.989531,0.554739,0.567655,0.204891,0.192154,0.483625,0.618023,0.873977,0.478795,0.928183,0.332339,0.938452,0.653658,0.735722,0.230682,0.230243,0.454413,0.916121,0.187811,0.469599,0.0766189,0.0487883,0.54544,0.705221,0.331136,0.9643,0.550415,0.186832,0.216129,0.62397,0.466665,0.821463,0.665565,0.250872,0.661007,0.145617,0.239876,0.655295,0.584954,0.829077,0.535705,0.622767,0.403143,0.480573,0.624199,0.203606,0.682608,0.756026,0.0269256,0.978546,0.498904,0.283303,0.439627,0.443736,0.829234,0.927212,0.803464,0.766599,0.867408,0.524435,0.0651745,0.602101,0.207246,0.421493,0.252188,0.861661,0.0818149,0.458418,0.0394819,0.900017,0.606654,0.832959,0.526528,0.576907,0.763976,0.468305,0.577184,0.68391,0.5212,0.467186,0.180091,0.301534,0.242879,0.663555,0.859792,0.719943,0.452754,0.681865,0.0527907,0.658051,0.553497,0.139957,0.501114,0.781657,0.00710237,0.432394,0.685356,0.771301,0.358064,0.348228,0.145599,0.523963,0.220648,0.921616,0.956556,0.686768,0.433459,0.82123,0.380723,0.214334,0.493378,0.637164,0.467747,0.851237,0.268463,0.152833,0.526429,0.888355,0.12913,0.257077,0.467702,0.333565,0.1877,0.1644,0.18986,0.743433,0.274488,0.0679069,0.362533,0.310789,0.544979,0.0523103,0.0399656,0.262285,0.556014,0.812504,0.753532,0.439704,0.37947,0.418567,0.594118,0.881923,0.0373397,0.961299,0.438924,0.823549,0.823253,0.264876,0.613478,0.838062,0.818404,0.272403,0.577895,0.394085,0.638757,0.640152,0.663731,0.762754,0.522179,0.848647,0.711532,0.679008,0.915133,0.770636,0.496097,0.346529,0.396053,0.453857,0.805422,0.0331035,0.845075,0.353854,0.2368,0.0736014,0.14258,0.729323,0.178091,0.0264572,0.266876,0.389103,0.338871,0.944812,0.283623,0.510305,0.958715,0.598578,0.741897,0.523379,0.262372,0.485545,0.339995,0.513685,0.567973,0.972054,0.206575,0.621359,0.151401,0.0580162,0.972363,0.447764,0.192406,0.429952,0.215181,0.561045,0.389847,0.525725,0.989844,0.672953,0.964701,0.0146035,0.927744,0.20327,0.733239,0.888181,0.153004,0.162512,0.307628,0.0585811,0.371348,0.217281,0.761413,0.336295,0.733629,0.886825,0.09582,0.759347,0.835746,0.9018,0.421175,0.306561,0.0912977,0.732415,0.924455,0.792912,0.106532,0.796286,0.730417,0.64238,0.272252,0.860525,0.390938,0.828865,0.0685865,0.717994,0.163349,0.227106,0.338289,0.992031,0.785164,0.485987,0.961379,0.730048,0.240227,0.358163,0.945604,0.456136,0.518456,0.468573,0.270262,0.912321,0.903076,0.292566,0.971226,0.221606,0.829441,0.792506,0.937291,0.135682,0.82225,0.706865,0.679155,0.661502,0.818544,0.991786,0.67349,0.301404,0.0296382,0.285717,0.390629,0.424947,0.688513,0.807896,0.314553,0.299758,0.637518,0.0354614,0.418987,0.569288,0.565145,0.417781,0.786812,0.342947,0.297901,0.895519,0.885831,0.033069,0.311634,0.45577,0.341695,0.817681,0.237423,0.401085,0.739558,0.298592,0.433539,0.601751,0.624231,0.774976,0.653243,0.750103,0.0895432,0.0067327,0.775062,0.222023,0.860339,0.282601,0.090299,0.633604,0.925207,0.0820398,0.183455,0.981302,0.660324,0.713223,0.0406217,0.523853,0.867809,0.425189,0.360447,0.197363,0.389038,0.918897,0.0232901,0.591208,0.924055,0.0567544,0.0355277,0.234064,0.981089,0.279059,0.726449,0.127867,0.949356,0.450441,0.789231,0.333101,0.576488,0.252138,0.108785,0.211337,0.294811,0.421328,0.839813,0.414252,0.447183,0.143184,0.806871,0.992959,0.812648,0.68132,0.729214,0.584877,0.816852,0.472533,0.769252,0.887705,0.293934,0.86152,0.0957606,0.288658,0.829585,0.902036,0.111072,0.64999,0.979137,0.446724,0.101029,0.388937,0.143672,0.840551,0.103568,0.42557,0.562547,0.208277,0.404381,0.366219,0.163363,0.0346383,0.397778,0.447505,0.98198,0.174565,0.743571,0.770421,0.457126,0.764339,0.099387,0.855673,0.258391,0.580268,0.917231,0.274142,0.667452,0.0123057,0.172585,0.67205,0.539396,0.0583807,0.32627,0.671829,0.822486,0.0197713,0.655917,0.663838,0.490209,0.399056,0.201265,0.859765,0.703698,0.40553,0.0668422,0.488089,0.383626,0.39927,0.507952,0.510445,0.984403,0.825538,0.932263,0.648678,0.836536,0.212329,0.212154,0.295615,0.504064,0.962471,0.992392,0.395443,0.257175,0.235723,0.76135,0.591134,0.394353,0.342807,0.31789,0.568334,0.86879,0.676925,0.178611,0.393961,0.841774,0.589339,0.0316221,0.364315,0.786719,0.81711,0.690423,0.123542,0.649994,0.763631,0.140564,0.76035,0.386866,0.79876,0.634819,0.63199,0.959951,0.291106,0.65466,0.178952,0.547479,0.317039,0.279239,0.604243,0.934457,0.764888,0.423112,0.467678,0.872839,0.448058,0.190749,0.400495,0.463904,0.460258,0.516646,0.280768,0.875703,0.934116,0.23572,0.170889,0.58454,0.111784,0.863593,0.021861,0.290397,0.273607,0.0944996,0.837226,0.844348,0.467001,0.296377,0.995727,0.0901309,0.135548,0.337017,0.0646697,0.223965,0.0584763,0.81321,0.0995188,0.355687,0.761414,0.971038,0.0856522,0.783061,0.423613,0.403127,0.799266,0.643847,0.0764034,0.188779,0.736051,0.680998,0.585424,0.363989,0.0598043,0.85181,0.828583,0.511804,0.573171,0.826597,0.268471,0.50468,0.588757,0.589567,0.299201,0.698682,0.277409,0.727928,0.269686,0.216211,0.831357,0.328472,0.382459,0.884001,0.293521,0.724358,0.98936,0.204893,0.872893,0.127244,0.789224,0.562995,0.698992,0.68457,0.272562,0.204146,0.725671,0.559987,0.20304,0.816149,0.74861,0.918213,0.69326,0.484884,0.902258,0.94955,0.0212577,0.516911,0.361749,0.360256,0.343207,0.117803,0.584286,0.580623,0.480868,0.335974,0.883142,0.322765,0.310751,0.189151,0.270288,0.478734,0.929511,0.00531483,0.941634,0.130009,0.991186,0.831675,0.217963,0.499613,0.879869,0.506625,0.369075,0.569314,0.434089,0.419049,0.636105,0.210047,0.10404,0.797638,0.898874,0.42422,0.224062,0.874487,0.0916389,0.0182043,0.513871,0.103322,0.651729,0.0404933,0.690406,0.1694,0.561976,0.156705,0.116034,0.924348,0.531436,0.914422,0.613752,0.815781,0.595359,0.942176,0.291551,0.511747,0.439124,0.0931709,0.392499,0.649618,0.223489,0.0426173,0.480867,0.875193,0.901204,0.444797,0.881118,0.511988,0.762317,0.920493,0.694115,0.577851,0.269591,0.624492,0.210407,0.637203,0.486558,0.88964,0.227085,0.242609,0.717672,0.0193658,0.800084,0.676913,0.0570644,0.640469,0.532821,0.238106,0.361503,0.0578718,0.617235,0.363031,0.10602,0.855765,0.803162,0.707156,0.874266,0.673225,0.35915,0.511141,0.229195,0.677981,0.881158,0.077674,0.747895,0.0489596,0.772282,0.532263,0.234637,0.770897,0.763476,0.027792,0.215064,0.973346,0.466268,|0.498795,0.930897,0.911449,0.392362,0.299276,0.715079,0.187092,0.493574,0.813114,0.926788,0.415287,0.316037,0.364623,0.498861,0.273333,0.521975,0.906119,0.0654448,0.491071,0.210341,0.724903,0.312645,0.606933,0.496548,0.963499,0.130988,0.647295,0.973196,0.259432,0.501756,0.931806,0.790402,0.669386,0.644448,0.426989,0.677081,0.82218,0.925066,0.597969,0.0751966,0.656439,0.200468,0.772643,0.276778,0.0348071,0.933612,0.552115,0.638304,0.423293,0.754419,0.827523,0.109304,0.335512,0.195878,0.519672,0.656398,0.771224,0.13343,0.582998,0.80797,0.820747,0.493226,0.563543,0.702792,0.209537,0.553515,0.106235,0.347689,0.720778,0.183174,0.333213,0.832901,0.887246,0.385789,0.563521,0.0195922,0.0595066,0.00662124,0.930468,0.523693,0.907422,0.249638,0.38103,0.649508,0.667325,0.451289,0.768613,0.738121,0.900744,0.209053,0.544258,0.638915,0.114695,0.899977,0.234786,0.470436,0.275046,0.499887,0.0125481,0.784303,0.85514,0.484931,0.156991,0.431559,0.0325457,0.588483,0.940249,0.0931244,0.558406,0.67003,0.0532202,0.908584,0.52586,0.0153438,0.817664,0.788562,0.185212,0.513125,0.130332,0.692183,0.503585,0.302153,0.211093,0.520565,0.718542,0.977578,0.0358115,0.959042,0.236565,0.797081,0.818149,0.0578196,0.340042,0.608558,0.426748,0.732846,0.908621,0.543559,0.808149,0.573083,0.925873,0.0819615,0.535374,0.089758,0.194757,0.72177,0.919679,0.793107,0.910691,0.123891,0.964013,0.174788,0.536379,0.0481643,0.0882426,0.80965,0.100275,0.75177,0.213516,0.200612,0.90407,0.839382,0.307054,0.834768,0.355771,0.279509,0.245329,0.166624,0.423035,0.377604,0.240599,0.127326,0.8035,0.372572,0.431582,0.471623,0.0684923,0.858653,0.993969,0.604029,0.97499,0.460919,0.214364,0.181558,0.911937,0.855262,0.093768,0.223998,0.481736,0.611335,0.770135,0.692731,0.187482,0.512611,0.982682,0.215076,0.225142,0.805941,0.727319,0.36625,0.124775,0.263563,0.815814,0.454682,0.457426,0.186381,0.19745,0.646251,0.759186,0.635913,0.467446,0.927998,0.732173,0.971736,0.842811,0.81453,0.844026,0.293228,0.821281,0.773034,0.595887,0.378243,0.701127,0.265741,0.573848,0.348278,0.510639,0.0896872,0.201917,0.393775,0.554714,0.885375,0.20642,0.893392,0.956951,0.0468131,0.602944,0.933685,0.496264,0.697049,0.267099,0.656853,0.659031,0.251371,0.453662,0.998976,0.960583,0.912373,0.0439985,0.246358,0.918805,0.681549,0.6226,0.70045,0.68855,0.488528,0.570952,0.552874,0.900186,0.35488,0.442262,0.629439,0.690082,0.490055,0.81723,0.357137,0.275439,0.968395,0.112845,0.697289,0.0185643,0.512769,0.960372,0.363439,0.328,0.145594,0.928876,0.915943,0.252817,0.366436,0.52621,0.386903,0.635657,0.366796,0.270704,0.0979788,0.853919,0.153707,0.618273,0.144907,0.67888,0.50753,0.602373,0.471528,0.124326,0.123604,0.414359,0.14104,0.806981,0.860801,0.073092,0.382713,0.618134,0.850921,0.546748,0.618936,0.490948,0.477538,0.617603,0.28505,0.792854,0.364796,0.771893,0.911046,0.925115,0.455906,0.361932,0.0299073,0.12383,0.533717,0.945961,0.107965,0.958184,0.870045,0.734634,0.305705,0.879207,0.703401,0.726841,0.825873,0.0536535,0.10218,0.993679,0.87386,0.198053,0.00885856,0.0455313,0.263071,0.456132,0.567007,0.583373,0.304908,0.911775,0.144667,0.813728,0.373624,0.531726,0.862754,0.523615,0.343695,0.62225,0.226114,0.214692,0.499017,0.808285,0.548597,0.122072,0.308374,0.372372,0.835811,0.15645,0.579028,0.440309,0.602131,0.883291,0.863469,0.345215,0.926116,0.581361,0.819473,0.684785,0.557984,0.317816,0.339922,0.747076,0.750886,0.355758,0.420058,0.192799,0.371625,0.640032,0.632318,0.538826,0.383427,0.303392,0.512566,0.389975,0.915786,0.842871,0.283366,0.841986,0.0719128,0.801979,0.172529,0.22269,0.926654,0.815236,0.136374,0.133035,0.952961,0.543665,0.0295327,0.138709,0.694627,0.803379,0.623699,0.331248,0.277474,0.900803,0.196736,0.458748,0.0914114,0.942059,0.286561,0.272843,0.75622,0.509258,0.144956,0.24758,0.593603,0.633464,0.396497,0.902409,0.738952,0.43068,0.161343,0.445562,0.667597,0.407022,0.128429,0.546342,0.26932,0.708038,0.00490379,0.674325,0.496293,0.84488,0.758858,0.37277,0.28923,0.110483,0.263136,0.00453651,0.634399,0.273751,0.424527,0.974541,0.686609,0.989576,0.301156,0.190999,0.0847032,0.850335,0.21577,0.673942,0.408705,0.465436,0.0369982,0.801057,0.441168,0.26708,0.327598,0.286789,0.0335811,0.00772887,0.248837,0.821826,0.933849,0.987301,0.0566753,0.230733,0.256392,0.399151,0.867611,0.612658,0.758671,0.428691,0.825873,0.435606,0.65717,0.836397,0.765372,0.979916,0.315491,0.718243,0.457552,0.858928,0.253267,0.450683,0.622828,0.340188,0.267209,0.43355,0.0878224,0.573008,0.997944,0.326844,0.634351,0.97484,0.434331,0.771914,0.868594,0.261827,0.749457,0.813912,0.532856,0.560241,0.554149,0.0788614,0.32157,0.381714,0.265361,0.857282,0.258089,0.0470963,0.773995,0.163971,0.557024,0.535127,0.142315,0.469745,0.544196,0.67378,0.40716,0.491213,0.822806,0.158002,0.207776,0.53506,0.584026,0.705512,0.910855,0.501947,0.859478,0.523102,0.750883,0.260656,0.316714,0.128147,0.825258,0.421937,0.806311,0.387466,0.726494,0.155403,0.713269,0.701884,0.780599,0.0974349,0.301596,0.245838,0.520044,0.821324,0.30226,0.684577,0.9888,0.167917,0.723847,0.433426,0.854516,0.619867,0.242539,0.0329416,0.813586,0.679178,0.860504,0.421279,0.384874,0.946647,0.577118,0.408281,0.710124,0.828781,0.921216,0.408696,0.157866,0.922391,0.213751,0.0804195,0.999844,0.0943819,0.971771,0.231616,0.329212,0.986661,0.433494,0.685508,0.892437,0.883353,0.899797,0.550624,0.150459,0.83787,0.0109891,0.14997,0.194625,0.683655,0.020929,0.851141,0.885232,0.298527,0.445374,0.778333,0.4105,0.426777,0.811135,0.0501375,0.0265313,0.283893,0.155354,0.753159,0.523549,0.764864,0.823897,0.0672123,0.938564,0.148182,0.423315,0.183121,0.810881,0.239064,0.0607892,0.144991,0.616624,0.225558,0.675466,0.484022,0.653565,0.0347078,0.167001,0.861661,0.965697,0.254334,0.344448,0.108209,0.638821,0.602755,0.82783,0.11269,0.155843,0.0727665,0.919837,0.564259,0.348041,0.61515,0.936718,0.414516,0.379348,0.9746,0.173216,0.225133,0.288202,0.534843,0.663726,0.792291,0.162206,0.0141889,0.897525,0.388095,0.21716,0.367028,0.597168,0.340824,0.0960436,0.154546,0.710296,0.700339,0.591593,0.899618,0.637825,0.319738,0.458239,0.823036,0.904441,0.421217,0.789604,0.620938,0.31536,0.382986,0.0204229,0.769437,0.718737,0.243858,0.192865,0.617502,0.398259,0.29432,0.652892,0.159645,0.236266,0.768423,0.86592,0.0907751,0.226601,0.597626,0.668012,0.0978288,0.994222,0.538661,0.342346,0.0641853,0.886833,0.00542831,0.880294,0.696279,0.0627992,0.168837,0.0324654,0.0550249,0.145287,0.441994,0.867685,0.145311,0.34925,0.498088,0.474335,0.222577,0.990353,0.829037,0.681194,0.398977,0.81603,0.161343,0.123838,0.0843092,0.888618,0.931152,0.868213,0.573632,0.787685,0.0971012,0.592557,0.673074,0.0184254,0.448366,0.318728,0.197238,0.66672,0.306556,0.584185,0.752105,0.588985,0.342513,0.0710419,0.896275,0.863897,0.316841,0.423922,0.186984,0.268211,0.32075,0.395051,0.177774,0.784303,0.387402,0.960504,0.896112,0.0363672,0.514524,0.260222,0.861356,0.496439,0.39647,0.190125,0.620054,0.122055,0.536532,0.229069,0.119804,0.108263,0.0847027,0.809826,0.244602,0.753292,0.222541,0.231177,0.337591,0.136184,0.0426895,0.674288,0.613069,0.554807,0.612887,0.719054,0.15808,0.640818,0.801417,0.0402812,0.429984,0.773466,0.170403,0.240059,0.91435,0.00601846,0.0798738,0.873256,0.524426,0.662388,0.657695,0.690959,0.277973,0.056129,0.350601,0.109963,0.791179,0.179456,0.656499,0.0507687,0.103284,0.135769,0.385224,0.937043,0.259371,0.831356,0.78802,0.150312,0.340766,0.82036,0.848665,0.722355,0.613543,0.301828,0.465609,0.476522,0.384627,0.395622,0.62958,0.33023,0.967795,0.296282,0.13071,0.366145,0.308401,0.108862,0.552059,0.270826,0.603768,0.0191616,0.585895,0.874229,0.663522,0.240668,0.924497,0.147608,0.387832,0.717229,0.20974,0.366502,0.700432,0.335278,0.552117,0.547019,0.744994,0.943915,0.937547,0.585188,0.752715,0.591176,0.956367,0.822496,0.092874,0.469184,0.511262,0.567793,0.990611,0.154063,0.82533,0.0860696,0.31664,0.216238,0.392321,0.383734,0.360107,0.67275,0.924962,0.69923,0.60904,0.737212,0.174926,0.913973,0.309028,0.21631,0.0627195,0.0184945,0.903925,0.254389,0.782957,0.612552,0.773851,0.906463,0.507757,0.677406,0.998715,0.410167,0.0158901,0.251206,0.275672,0.0979123,0.383669,0.0488262,0.728809,0.800762,0.278857,0.795624,0.0888126,0.571369,0.367198,0.354909,0.602317,0.00807869,0.928371,0.432228,0.411352,0.354276,0.823807,0.245081,0.103582,0.792641,0.0328828,0.0311119,0.481922,0.835465,0.182096,0.0890781,0.913857,0.407592,0.406595,0.550016,0.995795,0.728103,0.737955,0.094051,0.970692,0.735938,0.497455,0.264953,0.508382,0.382669,0.648588,0.254059,0.833786,0.708621,0.202915,0.990905,0.180732,0.166539,0.214118,0.490055,0.592063,0.632145,0.381967,0.442498,0.363025,0.178394,0.792366,0.756756,0.491486,0.0527733,0.490481,0.467965,0.755034,0.213982,0.120013,0.473627,0.748018,0.0403946,0.0722686,0.85861,0.10736,0.01789,0.0383798,0.034967,0.550362,0.857151,0.224996,0.842954,0.394382,0.638465,0.517291,0.726251,0.157413,0.0730565,0.596789,0.083793,0.518855,0.546331,0.306705,0.780125,0.719191,0.20566,0.291558,0.582105,0.823192,0.636232,0.414433,0.106785,0.510148,0.856377,0.617656,0.154078,|0.853225,0.213425,0.562976,0.498327,0.540176,0.876172,0.906413,0.462781,0.451276,0.77512,0.687331,0.762655,0.165049,0.338535,0.776894,0.112882,0.353548,0.117526,0.0721055,0.270192,0.524695,0.861886,0.779821,0.705304,0.37663,0.352679,0.934471,0.874213,0.856618,0.90078,0.804206,0.0483442,0.00407171,0.147082,0.664668,0.316464,0.290252,0.500998,0.425759,0.464167,0.504093,0.912695,0.841278,0.265759,0.276059,0.958446,0.286757,0.139151,0.945114,0.476215,0.750194,0.0406011,0.571127,0.524805,0.515742,0.994513,0.192601,0.716487,0.933,0.971218,0.700966,0.635989,0.669701,0.00960708,0.537504,0.96148,0.0649111,0.170054,0.961425,0.0592583,0.246343,0.664921,0.33764,0.180202,0.208976,0.759743,0.310189,0.149949,0.521107,0.560626,0.807719,0.425051,0.0655751,0.930795,0.789282,0.522566,0.171548,0.0278863,0.549071,0.432722,0.909183,0.684326,0.441229,0.546317,0.78286,0.552814,0.123467,0.339522,0.61228,0.300467,0.819757,0.295696,0.197591,0.108201,0.199213,0.925604,0.0163048,0.951442,0.634209,0.60893,0.474018,0.137028,0.31055,0.20275,0.96625,0.540025,0.0407581,0.626073,0.876029,0.980845,0.154376,0.829557,0.1057,0.989073,0.916131,0.667946,0.468276,0.513645,0.652606,0.990413,0.115664,0.505625,0.746692,0.998237,0.24463,0.685238,0.671408,0.900022,0.796021,0.0297815,0.475669,0.726587,0.658731,0.358303,0.641028,0.198995,0.665448,0.509524,0.751285,0.454845,0.324862,0.499331,0.857153,0.0256461,0.298908,0.507195,0.907547,0.720601,0.329303,0.548343,0.348187,0.900692,0.0342126,0.0909758,0.748312,0.676887,0.979077,0.190298,0.964258,0.944832,0.706991,0.797271,0.602659,0.198045,0.508849,0.632175,0.141617,0.956,0.770002,0.335019,0.226605,0.846163,0.218024,0.147937,0.925837,0.965577,0.853024,0.696155,0.357809,0.769439,0.337762,0.716661,0.752968,0.78073,0.859931,0.842624,0.838721,0.873515,0.835761,0.0828364,0.710856,0.267522,0.765497,0.689087,0.111351,0.690808,0.917572,0.122169,0.211828,0.234356,0.470608,0.680305,0.731796,0.453175,0.574044,0.0306132,0.313928,0.771712,0.386278,0.833225,0.142832,0.877374,0.950982,0.888491,0.979924,0.367866,0.706042,0.727947,0.614443,0.729201,0.744143,0.774022,0.139546,0.143186,0.515624,0.971551,0.0262208,0.527066,0.692277,0.999606,0.233103,0.934689,0.971073,0.0904859,0.774993,0.348334,0.856654,0.0470521,0.847086,0.832908,0.565574,0.0344673,0.862721,0.651594,0.0899246,0.902826,0.662408,0.565383,0.176378,0.908403,0.976756,0.947937,0.58888,0.568689,0.249562,0.543595,0.348148,0.966391,0.778598,0.334312,0.555654,0.214182,0.981805,0.98525,0.73196,0.997178,0.880468,0.67075,0.33467,0.957012,0.674863,0.556788,0.565244,0.361009,0.167718,0.382424,0.720698,0.62235,0.265259,0.592387,0.375335,0.581135,0.818718,0.656943,0.461257,0.885601,0.341675,0.194577,0.995196,0.490723,0.69523,0.656714,0.0786891,0.846016,0.110846,0.363769,0.444435,0.127282,0.273259,0.0346379,0.0998664,0.712496,0.948171,0.910052,0.113561,0.00522429,0.17598,0.506098,0.0654791,0.0122899,0.203109,0.18128,0.232967,0.248972,0.523899,0.375336,0.444128,0.71898,0.549949,0.780945,0.696525,0.847095,0.117118,0.981334,0.557008,0.375702,0.698615,0.32877,0.642919,0.996826,0.0640103,0.938229,0.926595,0.808579,0.48497,0.368616,0.382443,0.354587,0.568733,0.922412,0.670707,0.184322,0.281016,0.571601,0.762066,0.847556,0.668597,0.853812,0.40455,0.351603,0.829525,0.165297,0.385615,0.885827,0.929795,0.0784423,0.0514535,0.619055,0.335557,0.58004,0.395284,0.980869,0.281278,0.303094,0.0584359,0.341494,0.177555,0.369874,0.912658,0.442747,0.359327,0.00766689,0.433899,0.0691749,0.650596,0.299695,0.990812,0.417397,0.393711,0.0358419,0.727425,0.889506,0.621872,0.0955662,0.487218,0.672026,0.282886,0.125952,0.914057,0.823196,0.984746,0.078723,0.904871,0.352944,0.525779,0.246058,0.197009,0.130895,0.25588,0.340127,0.142436,0.885893,0.932254,0.815036,0.188688,0.6759,0.0159605,0.233482,0.527977,0.774358,0.142185,0.410346,0.158322,0.313202,0.346007,0.844658,0.493074,0.986364,0.27306,0.915306,0.127946,0.828097,0.0500901,0.0986584,0.0805301,0.282132,0.569399,0.69764,0.0581295,0.471636,0.606281,0.889336,0.922389,0.352317,0.152654,0.0780501,0.270504,0.275231,0.540109,0.937492,0.90528,0.852878,0.916075,0.128315,0.64586,0.230884,0.521215,0.298126,0.493512,0.163277,0.542827,0.458605,0.601578,0.501886,0.265385,0.59707,0.435545,0.624239,0.610142,0.797158,0.494501,0.0329185,0.595415,0.483693,0.372881,0.789998,0.104465,0.730118,0.0540984,0.636418,0.916842,0.494927,0.921888,0.885743,0.770986,0.208585,0.876137,0.929402,0.464828,0.519825,0.254291,0.511533,0.875755,0.0623782,0.125325,0.422923,0.714633,0.934935,0.942738,0.223926,0.509409,0.397743,0.920273,0.462471,0.0679705,0.492907,0.936299,0.378541,0.166213,0.993999,0.283938,0.289133,0.471509,0.334612,0.222939,0.282678,0.135172,0.240835,0.898179,0.112959,0.315532,0.383304,0.761015,0.78975,0.412131,0.881008,0.505581,0.562041,0.84461,0.877545,0.513128,0.883067,0.45988,0.562584,0.369713,0.80938,0.850056,0.175873,0.904698,0.707694,0.305231,0.40387,0.236421,0.739297,0.0363049,0.822649,0.129285,0.166716,0.440846,0.940068,0.155951,0.502452,0.563094,0.147302,0.374221,0.581479,0.240289,0.617198,0.594099,0.501841,0.560888,0.398317,0.0429404,0.949895,0.95868,0.728007,0.943212,0.789257,0.179992,0.981056,0.634517,0.645303,0.319116,0.0991867,0.256038,0.483009,0.279339,0.827975,0.896526,0.365236,0.20406,0.526777,0.930715,0.987053,0.983103,0.275496,0.718511,0.727531,0.751515,0.0119177,0.311014,0.362091,0.219461,0.794911,0.24472,0.141821,0.983429,0.626819,0.295257,0.988452,0.225877,0.792754,0.187203,0.863765,0.841595,0.287261,0.131887,0.210114,0.640312,0.111332,0.659821,0.326832,0.428106,0.104693,0.252632,0.202731,0.281673,0.646932,0.70045,0.856838,0.728018,0.428272,0.441563,0.470766,0.956447,0.38236,0.00296807,0.286601,0.31092,0.5357,0.841668,0.881391,0.150749,0.250017,0.554114,0.258854,0.667222,0.338321,0.142152,0.374002,0.746022,0.585524,0.7402,0.807679,0.9181,0.852266,0.78389,0.76914,0.376645,0.208047,0.556614,0.707744,0.727495,0.53592,0.716519,0.331417,0.444304,0.516874,0.857424,0.877758,0.965818,0.20656,0.34101,0.70852,0.889103,0.815581,0.395777,0.712486,0.469281,0.0947456,0.622364,0.0136046,0.90397,0.0724065,0.392373,0.349076,0.714871,0.468035,0.995068,0.00793195,0.244167,0.907638,0.763929,0.555763,0.993772,0.163596,0.560683,0.942216,0.584082,0.196746,0.337377,0.556389,0.743824,0.240658,0.260507,0.0471589,0.716365,0.589834,0.781123,0.681634,0.241989,0.143414,0.784056,0.532081,0.382416,0.335288,0.352791,0.111207,0.802104,0.360872,0.196349,0.994798,0.579195,0.555734,0.872247,0.920827,0.890632,0.227062,0.612956,0.88005,0.779204,0.229103,0.0784998,0.135564,0.0235049,0.965287,0.840289,0.933928,0.593318,0.378826,0.983518,0.582329,0.410329,0.279857,0.0891988,0.85985,0.544488,0.83722,0.59521,0.719807,0.161284,0.070574,0.756813,0.4893,0.434262,0.357005,0.0160684,0.615392,0.983505,0.756295,0.627813,0.750188,0.447755,0.5814,0.416071,0.0525656,0.284446,0.685168,0.233872,0.386767,0.64695,0.896164,0.745302,0.459951,0.0342653,0.258788,0.453386,0.74826,0.304274,0.658091,0.0294168,0.980886,0.832983,0.405678,0.312596,0.441983,0.0988318,0.819785,0.717877,0.478178,0.0544153,0.254369,0.605731,0.215691,0.594394,0.922998,0.192683,0.398843,0.0800121,0.767083,0.778007,0.816916,0.0904713,0.917908,0.370575,0.936981,0.0722978,0.0415436,0.490225,0.668653,0.991483,0.46542,0.29395,0.718179,0.27105,0.29424,0.246252,0.624344,0.199244,0.159519,0.00780541,0.659487,0.39338,0.443659,0.385525,0.548676,0.133692,0.634905,0.947788,0.303427,0.13512,0.522048,0.605882,0.610415,0.359692,0.453699,0.80527,0.482588,0.0207464,0.28777,0.600495,0.570833,0.764757,0.441118,0.482059,0.564296,0.32895,0.392106,0.862573,0.343,0.846977,0.690605,0.826243,0.176233,0.0951256,0.475548,0.862224,0.203796,0.409518,0.415822,0.449557,0.468686,0.742295,0.0133752,0.975065,0.725689,0.139966,0.900818,0.963612,0.592279,0.241604,0.0594475,0.0996435,0.200718,0.667638,0.743808,0.178353,0.0460865,0.889815,0.585949,0.963509,0.703222,0.857913,0.0355166,0.182105,0.29341,0.956591,0.509713,0.1601,0.709247,0.455141,0.252854,0.831477,0.0104346,0.0695033,0.927761,0.83998,0.724973,0.377474,0.961098,0.971688,0.209749,0.1647,0.929862,0.648793,0.793703,0.667735,0.86927,0.280337,0.463118,0.32822,0.544778,0.817796,0.984082,0.921532,0.659415,0.41717,0.287533,0.282129,0.0310182,0.786943,0.68137,0.165978,0.0419482,0.664398,0.441158,0.592582,0.258579,0.0186394,0.826059,0.0836553,0.145805,0.0907328,0.0377028,0.596374,0.77848,0.199763,0.771408,0.561387,0.521602,0.0787234,0.758223,0.333742,0.234842,0.0416198,0.587863,0.0701168,0.801291,0.881806,0.766275,0.975282,0.425186,0.0675928,0.259057,0.609824,0.0614832,0.973883,0.661203,0.553444,0.672452,0.363425,0.507445,0.801172,0.562283,0.384406,0.547665,0.612887,0.472319,0.0228792,0.246472,0.470991,0.503609,0.143623,0.351487,0.449745,0.887458,0.446524,0.0881585,0.619731,0.888601,0.120076,0.725932,0.827995,0.324436,0.900386,0.954525,0.195861,0.383567,0.255484,0.344585,0.823536,0.879493,0.829961,0.601467,0.566622,0.168405,0.481245,0.129446,0.322715,0.0123267,0.742529,0.287169,0.75611,0.0388731,0.459238,0.694013,0.799323,0.67291,0.932806,0.0888379,|0.335387,0.556076,0.703103,0.905153,0.712308,0.470141,0.597675,0.133892,0.869321,0.319698,0.214674,0.481761,0.432707,0.241376,0.317576,0.960027,0.0971597,0.905533,0.176024,0.832867,0.900825,0.348633,0.178484,0.544307,0.703827,0.0710391,0.429124,0.436592,0.565552,0.967804,0.598232,0.0645756,0.022902,0.95752,0.64298,0.0608367,0.0544034,0.114952,0.340401,0.863114,0.209802,0.821018,0.457124,0.210123,0.0833588,0.369519,0.689096,0.00332832,0.819488,0.925295,0.330887,0.98036,0.0582726,0.382408,0.0896257,0.705128,0.967222,0.333363,0.555836,0.654542,0.450888,0.0426016,0.851267,0.409759,0.542147,0.396332,0.789501,0.165401,0.598746,0.261685,0.673884,0.831977,0.649789,0.109953,0.351774,0.616299,0.171295,0.359763,0.810952,0.0648389,0.110587,0.677833,0.165554,0.905154,0.457544,0.868535,0.4903,0.250566,0.308499,0.340156,0.253118,0.290579,0.684524,0.433641,0.24928,0.160761,0.966374,0.209262,0.977186,0.976611,0.244937,0.0251344,0.561044,0.750615,0.860879,0.0641317,0.17649,0.352258,0.660939,0.717315,0.8786,0.312004,0.27039,0.847688,0.499977,0.899777,0.208953,0.084916,0.164249,0.26538,0.239675,0.546323,0.18362,0.82438,0.939843,0.0843458,0.525952,0.113163,0.13979,0.681068,0.692798,0.367046,0.0488398,0.359656,0.0292472,0.879592,0.0890447,0.36155,0.514157,0.854619,0.101627,0.347387,0.156395,0.572775,0.301573,0.545595,0.119976,0.265625,0.709143,0.215946,0.385425,0.566532,0.92609,0.22386,0.491081,0.97319,0.0281128,0.969066,0.861931,0.252633,0.349075,0.538948,0.224395,0.819216,0.892247,0.237951,0.575166,0.237548,0.338909,0.787968,0.515167,0.420534,0.353034,0.0225875,0.297107,0.44251,0.314089,0.39772,0.460104,0.515388,0.0707285,0.455306,0.926762,0.558662,0.485519,0.5458,0.848759,0.475228,0.258072,0.407053,0.690609,0.456887,0.627409,0.635995,0.361905,0.348127,0.570871,0.496416,0.357283,0.984438,0.313926,0.273153,0.925989,0.402336,0.865717,0.31355,0.459565,0.231484,0.566599,0.0247474,0.508288,0.964916,0.131205,0.724594,0.0748087,0.909178,0.925757,0.355827,0.313066,0.270533,0.0524216,0.977549,0.447426,0.695384,0.449436,0.186228,0.79942,0.723676,0.468259,0.127672,0.135198,0.282342,0.357955,0.19171,0.692623,0.291605,0.0899546,0.90289,0.915859,0.672488,0.171354,0.252216,0.519048,0.955277,0.0877602,0.13857,0.905967,0.557847,0.594501,0.767152,0.529457,0.00307924,0.1969,0.678816,0.312121,0.865935,0.920619,0.420414,0.223332,0.892523,0.584672,0.235329,0.0609322,0.963062,0.667484,0.960617,0.488499,0.0804145,0.780014,0.728642,0.0322789,0.444594,0.259712,0.615869,0.231979,0.241368,0.968884,0.928454,0.849593,0.971301,0.701104,0.689726,0.549639,0.203805,0.245777,0.771849,0.724291,0.739556,0.672237,0.17777,0.252555,0.747861,0.235237,0.246903,0.322857,0.120216,0.0502526,0.766881,0.174277,0.608429,0.915487,0.953891,0.0363293,0.0493807,0.366353,0.0930791,0.610233,0.987927,0.835637,0.836312,0.0366836,0.465912,0.708191,0.720628,0.148739,0.373053,0.668403,0.973545,0.147898,0.279938,0.082184,0.655721,0.908558,0.916767,0.720377,0.366817,0.432635,0.716564,0.800954,0.672321,0.0432785,0.144643,0.271371,0.919157,0.634937,0.408689,0.974945,0.317478,0.0122016,0.90463,0.163309,0.145241,0.938893,0.915896,0.79941,0.507848,0.201816,0.537662,0.233845,0.417476,0.783312,0.336143,0.0903671,0.0941476,0.494798,0.653159,0.837303,0.19132,0.921756,0.27028,0.764521,0.648414,0.388722,0.23124,0.0641343,0.423671,0.216752,0.156715,0.830172,0.454535,0.477612,0.693791,0.236456,0.0571829,0.0701895,0.706891,0.0918942,0.243919,0.670022,0.290028,0.114641,0.423996,0.0542745,0.203173,0.10691,0.683128,0.0115919,0.171915,0.679151,0.275572,0.473326,0.853134,0.453746,0.590986,0.56311,0.173435,0.129207,0.09119,0.832863,0.31881,0.776358,0.481486,0.618433,0.810666,0.185489,0.708108,0.0472916,0.196998,0.0812377,0.683031,0.888167,0.400815,0.736394,0.415798,0.932324,0.259884,0.791632,0.0819579,0.728161,0.755657,0.292529,0.447355,0.397986,0.29577,0.229706,0.394609,0.0561444,0.149035,0.938653,0.206178,0.0361618,0.499729,0.454243,0.472637,0.0346341,0.663527,0.133374,0.0351586,0.137703,0.126856,0.143427,0.961041,0.973638,0.391961,0.877612,0.259348,0.0195165,0.89708,0.485476,0.671514,0.241409,0.703009,0.881777,0.216917,0.548443,0.762743,0.794227,0.94985,0.936554,0.344704,0.0792839,0.00218785,0.0370876,0.0703666,0.183535,0.592049,0.301834,0.49375,0.412573,0.673424,0.243836,0.683989,0.506818,0.798666,0.78425,0.304516,0.661025,0.801709,0.120499,0.132819,0.913659,0.983271,0.677289,0.383768,0.502553,0.178483,0.141278,0.472945,0.943745,0.695152,0.204333,0.503506,0.108717,0.356048,0.282065,0.00912744,0.064316,0.0151887,0.776479,0.0437676,0.456631,0.0372926,0.198002,0.364186,0.00607967,0.778619,0.434854,0.13731,0.353203,0.0821999,0.520905,0.935483,0.692828,0.383193,0.622483,0.142561,0.58595,0.132297,0.0906857,0.700478,0.0663584,0.834085,0.523152,0.509419,0.969296,0.732034,0.224366,0.463654,0.598647,0.875704,0.261108,0.363137,0.677952,0.574231,0.999997,0.972403,0.980725,0.728513,0.68623,0.209537,0.0361061,0.994805,0.740734,0.236471,0.580314,0.745352,0.536094,0.994392,0.216955,0.864121,0.841268,0.00748742,0.367586,0.168975,0.159982,0.890263,0.392097,0.975707,0.7701,0.60626,0.369021,0.933445,0.752985,0.237454,0.894802,0.8705,0.00703132,0.761739,0.096883,0.450786,0.342106,0.923685,0.945551,0.391715,0.416805,0.125425,0.503782,0.371496,0.130715,0.24429,0.295457,0.0161212,0.474307,0.420333,0.914279,0.787075,0.800292,0.274433,0.581252,0.446919,0.368623,0.0446537,0.0558437,0.0415868,0.7122,0.151481,0.356776,0.563839,0.157933,0.763712,0.164059,0.34116,0.285512,0.705145,0.542509,0.458592,0.693989,0.899302,0.682473,0.55181,0.165667,0.950252,0.650765,0.818799,0.677969,0.175592,0.931497,0.706916,0.673565,0.675117,0.0903544,0.913744,0.128708,0.751793,0.422488,0.807048,0.459028,0.599235,0.347826,0.383707,0.095919,0.884239,0.696746,0.0558414,0.492549,0.990238,0.922754,0.241953,0.187987,0.262113,0.187478,0.634421,0.277839,0.361095,0.738345,0.588804,0.125502,0.0156977,0.679663,0.651346,0.691611,0.76168,0.599131,0.285653,0.45443,0.0138266,0.405593,0.247193,0.277998,0.59121,0.345317,0.825512,0.92055,0.560574,0.187768,0.70876,0.0912374,0.041474,0.493809,0.360119,0.898474,0.115493,0.249975,0.681059,0.129263,0.610834,0.0572404,0.27111,0.180851,0.0830735,0.168685,0.740535,0.210989,0.995245,0.0952241,0.60778,0.301719,0.423318,0.536634,0.483479,0.102302,0.667421,0.607453,0.105979,0.967516,0.0847014,0.787347,0.418748,0.871577,0.237707,0.746479,0.841544,0.294766,0.47599,0.72932,0.244575,0.370756,0.30587,0.955665,0.861667,0.334408,0.780694,0.264495,0.747267,0.08258,0.143978,0.635239,0.00638944,0.762133,0.815903,0.704042,0.966415,0.691868,0.539154,0.906538,0.742858,0.456644,0.329818,0.11161,0.571635,0.435704,0.0838511,0.145937,0.85239,0.800114,0.507985,0.0405195,0.691983,0.268798,0.494389,0.0588189,0.15282,0.648106,0.200079,0.115076,0.995713,0.0647467,0.17279,0.1352,0.196132,0.702554,0.720914,0.191694,0.0747131,0.207633,0.868845,0.91105,0.701881,0.632414,0.998415,0.950708,0.815712,0.639014,0.366983,0.836386,0.783655,0.19086,0.485711,0.89587,0.303678,0.596685,0.0343665,0.338606,0.976739,0.807241,0.494158,0.340521,0.830655,0.666572,0.557524,0.412121,0.692152,0.217843,0.812507,0.226773,0.274194,0.0005759,0.319636,0.549568,0.516854,0.62865,0.513239,0.698281,0.203603,0.432074,0.280523,0.957037,0.105004,0.861484,0.591757,0.969085,0.43772,0.531619,0.409867,0.0936224,0.913538,0.486185,0.405372,0.790345,0.791727,0.914173,0.657809,0.726921,0.333608,0.00914907,0.882631,0.3012,0.0453497,0.26345,0.0127752,0.406853,0.290389,0.925345,0.575287,0.360151,0.586464,0.500041,0.206915,0.465768,0.0716041,0.619989,0.143802,0.428553,0.433029,0.573908,0.337711,0.338235,0.722459,0.932609,0.56187,0.0453982,0.978097,0.192162,0.0517868,0.19171,0.90749,0.216117,0.624348,0.818715,0.577506,0.412896,0.768435,0.99568,0.952879,0.943133,0.769389,0.358977,0.213149,0.660718,0.871839,0.147438,0.832817,0.894849,0.598967,0.3125,0.948248,0.190116,0.0658417,0.862205,0.307559,0.998952,0.354001,0.852405,0.196,0.0837959,0.51356,0.742151,0.430358,0.183735,0.193386,0.767692,0.306229,0.562478,0.565442,0.196271,0.684053,0.300261,0.752999,0.967191,0.570524,0.338701,0.689606,0.55686,0.178387,0.636693,0.851032,0.509489,0.155782,0.18254,0.0893568,0.397777,0.719798,0.860691,0.793013,0.235665,0.571998,0.159152,0.667131,0.392863,0.963126,0.593152,0.2342,0.862052,0.577198,0.285422,0.776856,0.0476684,0.0782696,0.87302,0.506163,0.899865,0.559344,0.672233,0.301574,0.295551,0.0139961,0.563661,0.128967,0.845438,0.422088,0.862969,0.912673,0.691779,0.66355,0.167617,0.449758,0.657682,0.569413,0.484442,0.456324,0.937579,0.137959,0.325486,0.987235,0.98986,0.734986,0.626916,0.643047,0.797006,0.744535,0.20873,0.627355,0.244021,0.165471,0.86795,0.421239,0.720893,0.643575,0.967683,0.843054,0.263393,0.423217,0.53878,0.0701895,0.302681,0.466063,0.706054,0.0279509,0.748349,0.845393,0.809439,0.497418,0.72486,0.503463,0.746902,0.706022,0.19351,0.831176,0.418785,0.297138,0.0513276,0.104314,0.381933,0.432514,0.0333858,0.88988,0.290516,0.736187,0.611808,0.863098,0.162136,0.460846,0.544714,0.110493,0.762262,0.191317,0.792373,0.59152,0.585015,0.305701,|0.503866,0.515743,0.337922,0.629344,0.452931,0.0794725,0.316142,0.0652245,0.799197,0.953536,0.389237,0.469594,0.245299,0.903182,0.973073,0.54296,0.204942,0.116575,0.787394,0.0184737,0.148888,0.700666,0.11724,0.545964,0.14603,0.614945,0.0660505,0.219617,0.748084,0.643349,0.331955,0.54111,0.588934,0.180638,0.891708,0.838258,0.355788,0.963002,0.0687127,0.287385,0.64431,0.230286,0.568075,0.875864,0.483486,0.610607,0.410424,0.727348,0.482171,0.8245,0.237096,0.648284,0.412063,0.342221,0.607204,0.431234,0.387098,0.759315,0.863959,0.413468,0.255727,0.764163,0.821333,0.383133,0.0118226,0.910614,0.871713,0.055425,0.923614,0.624857,0.757725,0.680393,0.673105,0.325052,0.664461,0.120652,0.239064,0.184456,0.904122,0.756615,0.22675,0.577715,0.990494,0.411131,0.355991,0.608439,0.247307,0.919605,0.530109,0.171071,0.412306,0.397907,0.910242,0.670492,0.281629,0.528438,0.303914,0.357656,0.494382,0.58127,0.113758,0.0813673,0.791603,0.183543,0.364142,0.845845,0.873364,0.382315,0.906403,0.518545,0.697569,0.533397,0.501428,0.374598,0.00404364,0.0441236,0.536404,0.662032,0.183681,0.666794,0.833335,0.121957,0.421227,0.540073,0.926537,0.698529,0.0868658,0.215951,0.176782,0.406889,0.213609,0.332682,0.644899,0.735067,0.71495,0.0443783,0.319239,0.218459,0.450369,0.0609744,0.0760545,0.300681,0.78346,0.491346,0.556249,0.140989,0.615818,0.894745,0.591942,0.187728,0.2583,0.994871,0.121672,0.620968,0.763431,0.0282868,0.46822,0.255109,0.285815,0.706577,0.674094,0.601756,0.851208,0.29677,0.94442,0.835719,0.779926,0.119189,0.645803,0.747486,0.294637,0.710793,0.0531365,0.828578,0.542955,0.845179,0.392424,0.0844743,0.229978,0.183662,0.941381,0.993419,0.799627,0.897329,0.0508472,0.754754,0.0376304,0.932333,0.325854,0.387374,0.685109,0.813517,0.0615711,0.611917,0.763728,0.460959,0.0926192,0.237311,0.831363,0.881125,0.315154,0.891934,0.857607,0.348705,0.904091,0.234402,0.640943,0.676421,0.154812,0.0442414,0.28551,0.385392,0.076612,0.76961,0.798838,0.340384,0.61229,0.961498,0.26608,0.272532,0.358531,0.967841,0.734732,0.347512,0.0821067,0.940751,0.453083,0.216138,0.515572,0.805359,0.428677,0.947578,0.0811237,0.598387,0.470059,0.115404,0.26685,0.921176,0.706933,0.412078,0.126717,0.129187,0.547214,0.888865,0.982703,0.637488,0.0530722,0.796586,0.226174,0.727509,0.439241,0.812907,0.876169,0.985787,0.679861,0.493304,0.744607,0.802323,0.572565,0.19621,0.737753,0.934179,0.953112,0.0585734,0.997923,0.629032,0.75783,0.445957,0.944409,0.192942,0.0627675,0.72075,0.175695,0.714168,0.786906,0.711976,0.690153,0.5646,0.496955,0.56764,0.44417,0.791293,0.348444,0.0126863,0.284703,0.781098,0.560545,0.0937208,0.862544,0.862644,0.621405,0.579554,0.103049,0.344327,0.927724,0.138619,0.919801,0.662884,0.711233,0.0514336,0.965154,0.728663,0.448942,0.633546,0.451528,0.902241,0.846868,0.381225,0.367346,0.714632,0.328839,0.306169,0.95968,0.341184,0.723667,0.0523232,0.466185,0.290085,0.755981,0.336252,0.0909047,0.299287,0.696951,0.74928,0.906543,0.482705,0.196373,0.169446,0.0312253,0.938505,0.554415,0.731313,0.648113,0.862776,0.340216,0.0837981,0.109853,0.36968,0.256089,0.936379,0.202291,0.22309,0.52255,0.34294,0.0890121,0.259212,0.347514,0.328848,0.578203,0.665051,0.816807,0.269481,0.0883961,0.414987,0.220604,0.925447,0.157598,0.315674,0.937759,0.00710714,0.462905,0.323781,0.146026,0.00792712,0.661272,0.197602,0.857097,0.0240398,0.428541,0.0639288,0.0411237,0.18599,0.66512,0.314363,0.557258,0.544689,0.266103,0.702373,0.432522,0.0617311,0.613587,0.125575,0.0283291,0.135488,0.363617,0.0985973,0.861968,0.413954,0.823607,0.169478,0.64424,0.0742,0.412161,0.877301,0.547987,0.89602,0.558804,0.537345,0.609136,0.665066,0.72722,0.57475,0.553313,0.119792,0.864148,0.818188,0.836434,0.792086,0.550319,0.624792,0.575053,0.303257,0.151893,0.320255,0.399136,0.46056,0.348769,0.87494,0.0916224,0.804521,0.675042,0.85928,0.116345,0.272763,0.393864,0.785664,0.884426,0.809333,0.349677,0.75289,0.966316,0.225756,0.736502,0.0554242,0.291952,0.184383,0.792471,0.078866,0.223197,0.307809,0.369402,0.469634,0.979861,0.956647,0.335003,0.764152,0.778432,0.717179,0.83524,0.785089,0.241906,0.672418,0.204058,0.554307,0.666287,0.452177,0.637191,0.564087,0.683674,0.817427,0.473114,0.278233,0.75792,0.0476143,0.162258,0.157464,0.936146,0.981849,0.836174,0.374991,0.460303,0.381387,0.608291,0.78906,0.872068,0.315024,0.246419,0.659221,0.885666,0.605285,0.465306,0.357194,0.732831,0.891692,0.0894852,0.0551718,0.66635,0.584593,0.325253,0.675737,0.70158,0.599925,0.842211,0.690586,0.310126,0.0621532,0.347051,0.682647,0.614541,0.378094,0.366556,0.113597,0.549279,0.605982,0.600535,0.0250655,0.206302,0.271602,0.991065,0.606028,0.641229,0.526322,0.562883,0.551664,0.701305,0.786412,0.825822,0.159828,0.0733404,0.617334,0.627253,0.0365553,0.914269,0.527598,0.887099,0.159597,0.00717378,0.396613,0.809041,0.651254,0.51438,0.9,0.12381,0.481069,0.866651,0.590939,0.222631,0.109187,0.00207412,0.812793,0.630153,0.2721,0.380336,0.625523,0.728307,0.239446,0.205804,0.371914,0.746521,0.392981,0.182404,0.075142,0.119468,0.240667,0.0358609,0.551146,0.53338,0.518686,0.108866,0.588751,0.412045,0.587724,0.323321,0.141133,0.928148,0.526731,0.304732,0.993436,0.489903,0.196027,0.409287,0.222924,0.197858,0.702651,0.252411,0.797311,0.480523,0.0857571,0.214557,0.893124,0.559857,0.974292,0.180474,0.438612,0.937887,0.337539,0.184164,0.106621,0.38708,0.30753,0.493166,0.38388,0.21937,0.389324,0.615944,0.429286,0.714306,0.428158,0.811574,0.13597,0.771102,0.70845,0.853515,0.584873,0.209448,0.752762,0.962327,0.422254,0.613001,0.0512205,0.846921,0.304932,0.20511,0.330884,0.766986,0.0703419,0.81426,0.0711979,0.713159,0.627185,0.80605,0.525468,0.811694,0.228408,0.557297,0.072372,0.354268,0.862576,0.225835,0.968211,0.994754,0.261899,0.361596,0.632434,0.080656,0.921389,0.0560317,0.398453,0.606624,0.261768,0.0990182,0.633495,0.412138,0.527361,0.237978,0.854262,0.259598,0.442703,0.389736,0.66015,0.422162,0.0316024,0.404422,0.319821,0.978949,0.170089,0.222724,0.515796,0.456898,0.625384,0.195205,0.348441,0.278954,0.289328,0.794108,0.883742,0.587742,0.996091,0.53406,0.0366325,0.316996,0.0694364,0.716041,0.0560284,0.467729,0.536647,0.371421,0.319871,0.11661,0.141305,0.123193,0.414092,0.10438,0.974632,0.804676,0.0501926,0.775108,0.546412,0.376342,0.56883,0.984556,0.0222615,0.399469,0.244328,0.0455484,0.0286599,0.382593,0.0668209,0.338985,0.529395,0.410428,0.430703,0.635144,0.313955,0.463683,0.932788,0.676038,0.977477,0.785173,0.528034,0.156777,0.973506,0.275965,0.83378,0.45226,0.244495,0.882781,0.542422,0.681317,0.063905,0.216583,0.961272,0.521129,0.819322,0.550802,0.879194,0.98179,0.863489,0.590958,0.57006,0.460549,0.889422,0.335052,0.593874,0.39743,0.263559,0.691133,0.745752,0.44088,0.772457,0.398533,0.280643,0.419739,0.500977,0.473286,0.0439585,0.823731,0.588625,0.331087,0.667949,0.412858,0.506954,0.358379,0.989417,0.9601,0.340292,0.431647,0.198841,0.507357,0.910121,0.552727,0.58675,0.920337,0.432978,0.1824,0.420537,0.935915,0.629192,0.948398,0.0840964,0.422719,0.439845,0.227248,0.494778,0.948222,0.54658,0.582616,0.719984,0.170754,0.215081,0.887121,0.712564,0.214184,0.884297,0.633393,0.700612,0.1118,0.575328,0.834684,0.945324,0.543502,0.46827,0.601788,0.0819728,0.8558,0.290669,0.621633,0.318885,0.902352,0.748385,0.952768,0.579913,0.299325,0.262588,0.661558,0.929855,0.219021,0.0403982,0.457044,0.141181,0.0862591,0.876446,0.902539,0.733414,0.802153,0.0256767,0.0880666,0.769864,0.0647816,0.108551,0.539254,0.498911,0.812263,0.836018,0.284785,0.196598,0.638619,0.104803,0.748851,0.618322,0.199069,0.0505792,0.583423,0.971848,0.987741,0.719354,0.378027,0.266932,0.440457,0.730003,0.283845,0.603078,0.977669,0.776114,0.488872,0.50267,0.359856,0.235384,0.937911,0.791244,0.0811685,0.141152,0.81411,0.178857,0.700462,0.421555,0.0312417,0.154302,0.713953,0.66344,0.881289,0.332969,0.0210921,0.903363,0.568313,0.762423,0.501771,0.465687,0.288252,0.854768,0.562425,0.384353,0.532081,0.321426,0.835657,0.701492,0.528517,0.295653,0.547084,0.939702,0.260791,0.732572,0.550479,0.449436,0.335787,0.710031,0.520909,0.998208,0.680946,0.581984,0.643575,0.402904,0.242685,0.177162,0.177378,0.890451,0.024766,0.330488,0.942144,0.668702,0.308669,0.909781,0.271476,0.18762,0.941788,0.481773,0.124016,0.775311,0.454886,0.15162,0.701959,0.536201,0.157245,0.413102,0.641182,0.663484,0.702095,0.230929,0.921238,0.983645,0.46987,0.850733,0.931489,0.964609,0.920723,0.706289,0.752713,0.327805,0.136758,0.630735,0.261278,0.749285,0.817829,0.959473,0.162807,0.716064,0.71887,0.430424,0.0804354,0.687544,0.434883,0.568057,0.8983,0.487713,0.10716,0.0253793,0.732609,0.545699,0.36447,0.60303,0.718265,0.0674495,0.268585,0.499689,0.214456,0.945317,0.559157,0.896724,0.594369,0.554177,0.828732,0.855382,0.733989,0.610238,0.724314,0.684103,0.740085,0.137291,0.427293,0.174612,0.992785,0.812117,0.980121,0.983747,0.129073,0.424742,0.781458,0.669482,0.928184,0.11072,0.893754,0.737212,0.700076,0.137319,0.496023,0.803911,0.202832,0.646724,0.10901,0.105326,0.953881,0.0573774,0.527579,0.00140411,0.724491,0.143539,0.161636,0.631491,0.376604,0.770631,|0.905292,0.358589,0.741309,0.968618,0.150615,0.68339,0.669742,0.311045,0.410999,0.409588,0.349287,0.74221,0.304538,0.36011,0.754179,0.139088,0.136191,0.044528,0.624637,0.34292,0.979732,0.594391,0.420868,0.442158,0.392699,0.659686,0.800251,0.212314,0.0438589,0.322103,0.39143,0.685967,0.861631,0.708021,0.164538,0.886523,0.473887,0.766515,0.573636,0.500409,0.31242,0.644175,0.557124,0.771093,0.574878,0.513092,0.858423,0.989181,0.645952,0.0169342,0.917846,0.36457,0.62477,0.892429,0.449102,0.831494,0.561204,0.273345,0.961342,0.285582,0.31017,0.27629,0.771675,0.967958,0.0695282,0.779118,0.478898,0.656617,0.896965,0.573717,0.271661,0.301468,0.546797,0.325556,0.63793,0.92271,0.00119531,0.0952391,0.377429,0.72937,0.0753152,0.0665854,0.733254,0.130671,0.0724199,0.822168,0.45062,0.667806,0.981525,0.28019,0.639336,0.633441,0.193374,0.313899,0.516432,0.728863,0.762922,0.694156,0.239331,0.35207,0.732104,0.403487,0.175209,0.820917,0.908005,0.565538,0.405897,0.758353,0.463959,0.465863,0.544959,0.067764,0.740434,0.116017,0.202079,0.465362,0.808084,0.191782,0.889491,0.985883,0.741315,0.757354,0.505598,0.699807,0.767526,0.748345,0.336193,0.210401,0.690866,0.565989,0.259636,0.341693,0.580702,0.461993,0.409156,0.383108,0.227146,0.602839,0.917583,0.275679,0.755447,0.189086,0.0845,0.629227,0.301328,0.17109,0.59906,0.509398,0.655807,0.976037,0.273223,0.797127,0.532694,0.176943,0.0879469,0.721682,0.63932,0.945479,0.419558,0.842135,0.11718,0.585901,0.66475,0.448374,0.719778,0.108516,0.121674,0.603171,0.478202,0.921358,0.181835,0.713561,0.685576,0.16469,0.0439473,0.979992,0.218812,0.115404,0.130401,0.578478,0.400617,0.255253,0.0350921,0.887306,0.834048,0.0171009,0.732801,0.0384506,0.415995,0.891249,0.237703,0.523593,0.634741,0.250447,0.657902,0.123902,0.910218,0.452994,0.329535,0.715109,0.18446,0.432424,0.792026,0.536765,0.91827,0.851115,0.380549,0.28168,0.938888,0.368349,0.762188,0.0788888,0.858134,0.0734917,0.637493,0.576982,0.358732,0.283998,0.945874,0.160645,0.345762,0.906498,0.121527,0.243048,0.445285,0.531328,0.734687,0.57987,0.248141,0.993695,0.505817,0.17356,0.285351,0.873837,0.202176,0.958053,0.317087,0.797189,0.665338,0.432711,0.471345,0.670492,0.983592,0.572528,0.0157986,0.640375,0.165915,0.430062,0.988953,0.793758,0.469094,0.294792,0.0100993,0.0971543,0.0550921,0.352596,0.132112,0.84534,0.425488,0.0672256,0.295738,0.925588,0.239623,0.118528,0.0596529,0.463083,0.431026,0.438908,0.840109,0.414275,0.0700725,0.414523,0.1486,0.733116,0.241645,0.0614793,0.438066,0.473423,0.553216,0.366891,0.499361,0.922385,0.939635,0.836756,0.767465,0.932663,0.0386816,0.250163,0.595677,0.876113,0.353415,0.411149,0.916479,0.0153992,0.905876,0.848889,0.316868,0.187603,0.47767,0.304985,0.644172,0.0215594,0.0294327,0.376057,0.296166,0.656164,0.120603,0.871437,0.0688831,0.0954386,0.56765,0.202972,0.767171,0.0966098,0.0709584,0.0675316,0.229617,0.613911,0.650039,0.900491,0.350559,0.788231,0.0335717,0.21484,0.505904,0.218247,0.778634,0.591777,0.259607,0.571947,0.899627,0.886101,0.133144,0.531656,0.443639,0.471395,0.855112,0.142568,0.471606,0.374317,0.93058,0.111954,0.969808,0.976268,0.384006,0.401715,0.135085,0.160008,0.00703162,0.655019,0.542246,0.0795534,0.274342,0.123636,0.718652,0.31461,0.637332,0.167119,0.760327,0.541758,0.0578973,0.79107,0.51742,0.537425,0.934037,0.917913,0.681376,0.211922,0.0875267,0.936161,0.283086,0.130549,0.0633582,0.820264,0.978327,0.0764325,0.953319,0.459239,0.913956,0.697033,0.535878,0.311514,0.372621,0.928121,0.00338072,0.709482,0.911143,0.507664,0.99291,0.790536,0.686572,0.617159,0.334226,0.07434,0.0674174,0.331284,0.123768,0.636073,0.708931,0.111899,0.788562,0.626126,0.680386,0.0720905,0.561712,0.379617,0.326232,0.602329,0.0050633,0.801436,0.609007,0.883023,0.249253,0.885212,0.64508,0.587637,0.309894,0.583798,0.158551,0.106973,0.0913454,0.595102,0.0854453,0.454973,0.507602,0.608998,0.599777,0.899569,0.879122,0.00898629,0.984299,0.492949,0.770342,0.912585,0.0333541,0.83699,0.280942,0.625694,0.638307,0.744824,0.125645,0.312735,0.707911,0.293811,0.888178,0.303821,0.992432,0.432021,0.480031,0.737518,0.515007,0.693217,0.880087,0.671968,0.942764,0.00620288,0.84423,0.622881,0.452375,0.324391,0.360985,0.403838,0.473659,0.835379,0.673879,0.676572,0.364221,0.747133,0.109781,0.559896,0.314931,0.79175,0.291229,0.964974,0.343166,0.749232,0.0875674,0.512286,0.54198,0.212116,0.737524,0.0127239,0.348488,0.82014,0.38955,0.440856,0.450279,0.690637,0.937571,0.922964,0.337156,0.495931,0.103999,0.896987,0.513002,0.367809,0.972823,0.174284,0.44506,0.985054,0.970676,0.71031,0.400077,0.0932364,0.750017,0.494178,0.516313,0.717232,0.164929,0.705817,0.423954,0.201257,0.64076,0.972109,0.166029,0.689975,0.791539,0.967629,0.147497,0.860855,0.45705,0.0449974,0.377557,0.481581,0.688869,0.902746,0.382676,0.574078,0.397457,0.511972,0.732224,0.383963,0.0260989,0.138381,0.998154,0.520443,0.360777,0.32852,0.797419,0.278795,0.197795,0.235103,0.665191,0.944312,0.446354,0.299152,0.665595,0.953469,0.875795,0.727587,0.221204,0.469431,0.264714,0.346901,0.57954,0.379249,0.701828,0.0339028,0.762185,0.813618,0.819888,0.899973,0.907788,0.138809,0.0793211,0.556194,0.354129,0.127145,0.161283,0.489534,0.836088,0.186575,0.581176,0.209933,0.82465,0.979336,0.175634,0.376606,0.154143,0.79658,0.389151,0.876658,0.795319,0.593111,0.516714,0.0117748,0.0543668,0.521056,0.310015,0.00408804,0.618996,0.0165016,0.0323981,0.421563,0.671287,0.292628,0.885617,0.798659,0.362319,0.866738,0.762884,0.321655,0.497964,0.914089,0.531415,0.76214,0.249299,0.442846,0.863085,0.260731,0.176429,0.885459,0.62135,0.936285,0.397935,0.37803,0.700127,0.82166,0.0427483,0.921216,0.423805,0.139614,0.581258,0.646418,0.0380518,0.524673,0.915519,0.0440974,0.790343,0.280922,0.870532,0.619726,0.223578,0.972628,0.782938,0.710564,0.721107,0.133203,0.329367,0.344465,0.651814,0.468316,0.446254,0.117087,0.833755,0.0698659,0.0895673,0.480235,0.813431,0.0950344,0.576107,0.683545,0.903183,0.763637,0.497344,0.639457,0.724406,0.321672,0.844883,0.660667,0.898566,0.250256,0.352623,0.20598,0.173877,0.927657,0.933634,0.555058,0.931179,0.850335,0.717004,0.929343,0.762237,0.397845,0.819453,0.307907,0.321278,0.0937439,0.146425,0.562141,0.117596,0.746877,0.938604,0.0882897,0.231299,0.144807,0.809076,0.256871,0.608714,0.942738,0.369197,0.249823,0.664218,0.460115,0.665019,0.29351,0.683307,0.594811,0.816567,0.124539,0.853991,0.439274,0.94465,0.770315,0.654915,0.466772,0.918501,0.51658,0.517711,0.702028,0.33648,0.170366,0.949188,0.635213,0.749725,0.0937526,0.776713,0.403229,0.961207,0.959519,0.0680869,0.88744,0.827699,0.786086,0.586479,0.328754,0.371151,0.176663,0.00743538,0.191292,0.244091,0.81933,0.330877,0.463181,0.137386,0.49243,0.400492,0.512863,0.71395,0.36944,0.837656,0.275132,0.812287,0.0570032,0.715774,0.393758,0.634468,0.311913,0.234206,0.529191,0.170024,0.882127,0.972302,0.382878,0.323765,0.530412,0.424703,0.366578,0.562709,0.354442,0.292826,0.455114,0.727751,0.476835,0.636834,0.240369,0.1641,0.140036,0.242132,0.278571,0.483336,0.230983,0.69766,0.897589,0.809999,0.96319,0.236839,0.0502697,0.503354,0.173048,0.654336,0.428659,0.939193,0.514952,0.837884,0.476565,0.514809,0.486756,0.299756,0.501501,0.262189,0.856798,0.0634112,0.353745,0.431364,0.883052,0.60624,0.390918,0.437729,0.593881,0.785292,0.512295,0.761029,0.910734,0.0782259,0.112303,0.165916,0.384185,0.26604,0.52936,0.249157,0.610647,0.510924,0.532896,0.593888,0.496061,0.739087,0.365571,0.160556,0.899457,0.416487,0.674671,0.534855,0.232574,0.843882,0.689546,0.241762,0.181822,0.537313,0.797908,0.0569828,0.51332,0.420145,0.688779,0.183471,0.666018,0.214667,0.726297,0.322757,0.154247,0.232536,0.120008,0.784724,0.855149,0.74791,0.965263,0.55793,0.141092,0.746829,0.501248,0.170645,0.212246,0.235171,0.55403,0.440544,0.332652,0.25211,0.340251,0.666346,0.381759,0.225127,0.254019,0.901057,0.580884,0.0669172,0.734626,0.713092,0.637094,0.421996,0.840483,0.473994,0.937844,0.47264,0.0885111,0.61759,0.203737,0.700133,0.309663,0.425909,0.349975,0.413739,0.993811,0.451256,0.185359,0.0267039,0.762548,0.281699,0.420036,0.0240312,0.466179,0.507732,0.852215,0.135987,0.843828,0.245649,0.788737,0.432192,0.404005,0.197573,0.858101,0.161776,0.481898,0.764433,0.0182949,0.264849,0.324667,0.705662,0.643211,0.811491,0.691824,0.380517,0.305212,0.378346,0.663039,0.685338,0.303569,0.119986,0.26494,0.0908293,0.217298,0.839812,0.243741,0.692902,0.277964,0.854502,0.0379984,0.690745,0.834131,0.147893,0.711615,0.717041,0.259488,0.313729,0.3241,0.283724,0.0449299,0.438632,0.808276,0.727882,0.544921,0.394832,0.497449,0.558063,0.460619,0.302418,0.33185,0.897942,0.136586,0.822459,0.740009,0.217126,0.465725,0.00140935,0.242521,0.998886,0.585494,0.142498,0.75788,0.533146,0.622201,0.371228,0.713452,0.987197,0.762218,0.170629,0.441284,0.0778971,0.537165,0.790178,0.603788,0.296138,0.390362,0.765017,0.042385,0.837256,0.887063,0.473954,0.345861,0.404849,0.564813,0.163584,0.307901,0.919925,0.0665343,0.812559,0.928326,0.541424,0.471672,0.576551,0.662684,0.592095,0.383299,0.706189,0.204878,0.689002,0.266769,0.682171,0.644806,0.213995,0.118224,|0.758811,0.890306,0.842424,0.638359,0.767401,0.950991,0.0938608,0.488458,0.618018,0.828372,0.670605,0.623961,0.46849,0.338886,0.19103,0.217738,0.088448,0.9393,0.107027,0.104162,0.0639835,0.791326,0.0634073,0.643124,0.583251,0.629315,0.396495,0.37043,0.286217,0.975859,0.137209,0.4605,0.584734,0.321314,0.425556,0.0203818,0.196081,0.668534,0.850414,0.878249,0.652478,0.912502,0.404165,0.039015,0.105319,0.368018,0.795794,0.21298,0.171792,0.500989,0.958574,0.272023,0.538026,0.820238,0.76322,0.79074,0.744371,0.261925,0.175719,0.522431,0.642592,0.422883,0.856068,0.130617,0.734929,0.886683,0.675432,0.276047,0.0956873,0.0289186,0.435798,0.0817114,0.400741,0.494192,0.0370944,0.478086,0.533499,0.551474,0.0613275,0.346617,0.946201,0.804711,0.854163,0.401678,0.207638,0.940242,0.029678,0.579372,0.420402,0.545918,0.482945,0.806897,0.0392344,0.991527,0.852434,0.0768596,0.120352,0.138999,0.622535,0.0221143,0.647004,0.0559683,0.785023,0.761549,0.923461,0.775803,0.468707,0.796675,0.869154,0.333525,0.469426,0.46392,0.51641,0.270077,0.928272,0.784237,0.206592,0.693937,0.846287,0.56616,0.51436,0.195793,0.70294,0.120899,0.455484,0.843839,0.528422,0.56901,0.39113,0.0968712,0.76479,0.931551,0.586065,0.620179,0.606782,0.534892,0.435265,0.198139,0.363352,0.164649,0.266142,0.430197,0.530806,0.665928,0.603904,0.474506,0.0397043,0.816983,0.35498,0.159498,0.972889,0.572029,0.0990418,0.09382,0.340779,0.598026,0.282634,0.464383,0.612762,0.0221691,0.205649,0.746056,0.668401,0.63286,0.925413,0.384097,0.800476,0.423049,0.251483,0.564491,0.820901,0.646647,0.724911,0.539923,0.765894,0.000419199,0.603966,0.225117,0.269103,0.925924,0.2874,0.0245878,0.81607,0.422473,0.172462,0.838296,0.791315,0.106798,0.88029,0.77877,0.478444,0.0115446,0.364024,0.619451,0.847172,0.73059,0.619549,0.210126,0.999267,0.1861,0.854547,0.621285,0.329991,0.651849,0.75106,0.9648,0.61486,0.876178,0.668432,0.314364,0.0612832,0.205384,0.62034,0.87061,0.523044,0.129416,0.791272,0.0687265,0.696614,0.033285,0.957998,0.944629,0.293788,0.950184,0.0127701,0.147986,0.973412,0.871608,0.242753,0.42906,0.864725,0.159006,0.879317,0.767854,0.332704,0.163905,0.129758,0.532458,0.415938,0.377073,0.0874108,0.532856,0.888261,0.485254,0.274506,0.406119,0.821843,0.461916,0.992075,0.752156,0.517082,0.967135,0.545096,0.0609801,0.0172353,0.823203,0.513697,0.973244,0.623445,0.848147,0.782939,0.306431,0.764973,0.48412,0.260054,0.090494,0.144542,0.230099,0.506567,0.257727,0.706869,0.646536,0.850827,0.0926892,0.820625,0.822753,0.516819,0.226541,0.266436,0.171188,0.668406,0.60404,0.487702,0.272067,0.0974034,0.540646,0.352786,0.132806,0.916059,0.713588,0.479402,0.1253,0.820484,0.0250686,0.369281,0.209428,0.220113,0.968273,0.0870027,0.572361,0.28929,0.14071,0.795683,0.805535,0.0628778,0.397191,0.156757,0.80083,0.286815,0.850991,0.118045,0.847922,0.264755,0.206069,0.200968,0.0428303,0.32902,0.163381,0.199883,0.49673,0.741365,0.484595,0.852281,0.3793,0.00799882,0.451604,0.891279,0.0827545,0.1157,0.385976,0.823737,0.698174,0.71241,0.767534,0.798146,0.594459,0.924202,0.036094,0.544202,0.0601074,0.748756,0.394307,0.817901,0.0832276,0.941501,0.856644,0.224619,0.986157,0.351604,0.167672,0.754064,0.448757,0.998021,0.435048,0.306557,0.907016,0.0732828,0.392579,0.239346,0.954723,0.1616,0.589681,0.396499,0.314882,0.712622,0.969103,0.292537,0.741899,0.390336,0.316326,0.310768,0.167484,0.921493,0.617429,0.413495,0.867863,0.0490453,0.222854,0.855107,0.389182,0.505954,0.843448,0.251453,0.342038,0.0503826,0.338233,0.404106,0.292425,0.849286,0.856669,0.652933,0.70009,0.82162,0.512414,0.515031,0.268002,0.356002,0.94339,0.481979,0.607561,0.874041,0.353195,0.619044,0.960651,0.890343,0.205187,0.00870073,0.763617,0.286463,0.236639,0.452281,0.722066,0.505808,0.645451,0.617191,0.310024,0.814978,0.903695,0.561782,0.513623,0.810528,0.381115,0.177252,0.479535,0.92692,0.771132,0.922233,0.0332436,0.801956,0.290407,0.681336,0.748527,0.00483835,0.294464,0.770568,0.689109,0.0722917,0.133005,0.422059,0.971415,0.106474,0.504324,0.918965,0.727297,0.934493,0.927284,0.496395,0.951077,0.363636,0.33929,0.626865,0.829206,0.113182,0.647483,0.447668,0.194444,0.97381,0.707463,0.27551,0.54955,0.0490379,0.593188,0.318693,0.331637,0.538737,0.0165939,0.187913,0.907401,0.482933,0.401126,0.576916,0.537758,0.19132,0.0475786,0.56202,0.139706,0.52365,0.101336,0.0125077,0.730477,0.795062,0.543288,0.379086,0.823754,0.361443,0.0987219,0.556902,0.842991,0.382478,0.0801321,0.106335,0.88977,0.576121,0.142226,0.225854,0.728653,0.293512,0.963557,0.742251,0.377099,0.665376,0.619605,0.754789,0.118158,0.209479,0.985952,0.056859,0.870034,0.712767,0.170237,0.232731,0.775718,0.470971,0.427134,0.777316,0.175292,0.723069,0.028231,0.168258,0.942925,0.833699,0.323854,0.762953,0.866225,0.0795828,0.629035,0.721781,0.382129,0.407174,0.809683,0.62887,0.775698,0.496858,0.751714,0.743518,0.377831,0.83081,0.472347,0.643681,0.87522,0.190859,0.292546,0.0119026,0.820812,0.376651,0.611335,0.146333,0.86721,0.0286756,0.237477,0.734817,0.0476999,0.508035,0.208959,0.444467,0.560775,0.495382,0.0366485,0.561293,0.509451,0.609284,0.617105,0.06696,0.599853,0.883024,0.0582772,0.518575,0.170477,0.64012,0.383398,0.0543919,0.0110761,0.400471,0.944622,0.358998,0.316012,0.0236318,0.4466,0.436485,0.548792,0.276846,0.953258,0.257332,0.757281,0.467894,0.324936,0.117587,0.466156,0.23419,0.414729,0.616349,0.766874,0.256092,0.947909,0.495351,0.961612,0.183349,0.934324,0.794234,0.534183,0.168503,0.624677,0.181655,0.453361,0.818374,0.846578,0.875212,0.21978,0.383395,0.281505,0.275169,0.485281,0.0357711,0.514318,0.00793451,0.126607,0.858463,0.998842,0.625785,0.393051,0.162393,0.512396,0.772615,0.709267,0.279561,0.358727,0.596169,0.791798,0.318959,0.611575,0.0268065,0.381474,0.801481,0.897167,0.642826,0.0724476,0.0929427,0.473621,0.79478,0.619539,0.858614,0.568787,0.463432,0.927953,0.900619,0.476396,0.09952,0.315001,0.884259,0.37962,0.285736,0.383301,0.459248,0.920437,0.866241,0.796458,0.489848,0.469185,0.415324,0.284808,0.539071,0.95627,0.385962,0.102602,0.811795,0.714495,0.295745,0.43114,0.997624,0.752356,0.191169,0.754387,0.698921,0.679024,0.964407,0.754543,0.571441,0.969261,0.998908,0.602395,0.779235,0.376434,0.116618,0.772116,0.168973,0.676465,0.826158,0.408979,0.0415057,0.257953,0.841712,0.548293,0.574219,0.498891,0.651429,0.0470368,0.00684237,0.954428,0.205974,0.960162,0.885821,0.866421,0.457131,0.603546,0.173766,0.0802931,0.26738,0.06287,0.0445893,0.699293,0.704121,0.869872,0.914432,0.554822,0.289287,0.220644,0.620504,0.413109,0.104979,0.302409,0.569416,0.49449,0.220129,0.876894,0.521971,0.0479329,0.752771,0.702915,0.203193,0.380888,0.915151,0.786717,0.855131,0.535363,0.522485,0.123411,0.989053,0.413014,0.782851,0.884486,0.161743,0.688865,0.341189,0.301102,0.616716,0.444739,0.290949,0.45946,0.737903,0.798681,0.739692,0.695547,0.277877,0.114766,0.177877,0.613564,0.783592,0.964548,0.948839,0.472997,0.189301,0.752589,0.136692,0.821651,0.839558,0.867414,0.606874,0.889175,0.493661,0.197488,0.682532,0.515442,0.367127,0.818291,0.494829,0.32845,0.612454,0.420744,0.430508,0.284544,0.441811,0.318931,0.135391,0.713604,0.845022,0.849866,0.514647,0.0551305,0.859039,0.569584,0.996692,0.729729,0.145505,0.222078,0.914753,0.0412207,0.560406,0.941704,0.112268,0.565954,0.761124,0.487421,0.316047,0.730319,0.0814707,0.477321,0.239574,0.0614539,0.869177,0.285764,0.272578,0.19218,0.841017,0.684939,0.513039,0.379351,0.7266,0.630262,0.368409,0.625757,0.968505,0.19682,0.358623,0.993621,0.0565849,0.5974,0.236447,0.963213,0.643244,0.104694,0.260144,0.849832,0.279508,0.529743,0.0342763,0.966914,0.539869,0.302438,0.164576,0.593418,0.339377,0.218828,0.455502,0.304803,0.137211,0.170513,0.86282,0.763185,0.912978,0.169978,0.224547,0.31911,0.416634,0.965249,0.248669,0.528407,0.160547,0.753551,0.927625,0.54802,0.371489,0.657922,0.448632,0.794628,0.53061,0.863577,0.635286,0.853239,0.958733,0.77522,0.306089,0.827638,0.567366,0.503489,0.590608,0.237879,0.533137,0.362512,0.60602,0.703571,0.0492503,0.0418391,0.560972,0.70792,0.852936,0.353166,0.464692,0.420973,0.286258,0.453788,0.511197,0.403808,0.687291,0.816534,0.0709859,0.0534048,0.232449,0.653077,0.794525,0.179911,0.337656,0.953343,0.598514,0.78585,0.283869,0.424736,0.314185,0.831282,0.684581,0.56894,0.209448,0.229609,0.287086,0.992136,0.818719,0.132453,0.345378,0.242924,0.230209,0.579624,0.949979,0.960501,0.319908,0.340375,0.591982,0.0107208,0.126379,0.0457629,0.797091,0.510832,0.943928,0.720579,0.109956,0.757112,0.36448,0.862408,0.184728,0.297437,0.676526,0.55883,0.254948,0.184912,0.274352,0.378884,0.74332,0.700264,0.403629,0.782947,0.891421,0.500421,0.190922,0.528962,0.490193,0.999105,0.801953,0.69044,0.0211834,0.981508,0.601794,0.405968,0.27781,0.400228,0.225624,0.321334,0.762376,0.92972,0.266852,0.632655,0.466148,0.0411248,0.599938,0.148548,0.846401,0.734785,0.220539,0.729428,0.897649,0.269989,0.693954,0.396184,0.394536,0.370053,0.970476,0.607165,0.163354,0.994518,0.0147703,0.151728,0.832593,0.959067,0.315748,0.628013,0.776976,0.0530629,0.47187,0.389802,0.242306,0.765817,0.922636,0.54325,|0.893663,0.581224,0.107732,0.276702,0.360446,0.566371,0.684152,0.404606,0.384729,0.971374,0.268101,0.274931,0.912388,0.131142,0.141832,0.751833,0.671612,0.973131,0.702965,0.796858,0.591401,0.875245,0.173384,0.107542,0.566517,0.805282,0.560847,0.245766,0.209286,0.956453,0.533395,0.686369,0.963343,0.920078,0.673586,0.144383,0.771328,0.56194,0.0778649,0.602533,0.762175,0.535235,0.965587,0.180762,0.814656,0.157501,0.206955,0.772545,0.59498,0.111309,0.275538,0.0364497,0.269453,0.0221804,0.298784,0.420589,0.951617,0.984276,0.157209,0.0976719,0.708114,0.242132,0.405454,0.185834,0.370263,0.847617,0.409651,0.235813,0.338392,0.18521,0.0782298,0.834497,0.676214,0.350975,0.125963,0.397283,0.554839,0.244337,0.824047,0.992122,0.00663412,0.448872,0.354514,0.0268173,0.611621,0.210542,0.682393,0.760426,0.451259,0.259497,0.235906,0.955272,0.213776,0.362168,0.159564,0.540992,0.937835,0.6513,0.170805,0.752804,0.053824,0.269159,0.806094,0.88382,0.835998,0.534667,0.734427,0.535435,0.372849,0.904911,0.410017,0.131664,0.979168,0.793708,0.784849,0.592889,0.918449,0.180823,0.861182,0.727761,0.485145,0.727589,0.188413,0.612975,0.651507,0.497657,0.461804,0.972579,0.870135,0.405329,0.042452,0.551471,0.908943,0.827331,0.802476,0.415089,0.501379,0.203726,0.330837,0.469,0.0407963,0.630142,0.975387,0.331382,0.247351,0.0595689,0.0191718,0.0831015,0.204693,0.39327,0.641563,0.789502,0.500894,0.807788,0.312066,0.679709,0.407691,0.31406,0.311022,0.31618,0.652918,0.769146,0.692882,0.000629544,0.116211,0.412355,0.533878,0.168939,0.00802249,0.695503,0.70759,0.18046,0.302387,0.690396,0.448084,0.896853,0.85454,0.148927,0.965023,0.699992,0.912699,0.140248,0.565303,0.568621,0.711892,0.181099,0.0262839,0.357691,0.977409,0.770581,0.388374,0.359573,0.253671,0.531681,0.420949,0.33619,0.372555,0.51793,0.577191,0.73686,0.523627,0.537771,0.231725,0.774089,0.332465,0.958481,0.202525,0.480891,0.746041,0.860372,0.453241,0.237799,0.841334,0.0943492,0.649794,0.286872,0.131034,0.668789,0.91844,0.0213266,0.889609,0.153004,0.280953,0.70915,0.714312,0.295003,0.434155,0.0504346,0.968363,0.0250666,0.533979,0.343728,0.51402,0.501709,0.195756,0.536796,0.3868,0.31903,0.172516,0.777679,0.52913,0.841469,0.30821,0.678219,0.578011,0.520444,0.919708,0.316024,0.909608,0.708871,0.179039,0.111957,0.74807,0.831993,0.0140736,0.215106,0.346304,0.867433,0.0554569,0.249789,0.433357,0.912834,0.289168,0.439526,0.460647,0.996381,0.681727,0.634885,0.330624,0.0128356,0.167636,0.665467,0.280243,0.461843,0.935416,0.604698,0.614609,0.104473,0.379527,0.877536,0.51716,0.573031,0.780756,0.781308,0.356296,0.478513,0.0103779,0.394174,0.983589,0.348518,0.267752,0.664067,0.243758,0.735007,0.931136,0.468737,0.396596,0.678309,0.406202,0.111483,0.943108,0.233327,0.572123,0.333257,0.354945,0.0331439,0.920593,0.877757,0.847969,0.0714659,0.24314,0.212907,0.228762,0.554753,0.755521,0.315586,0.211836,0.164832,0.907167,0.655761,0.544654,0.217497,0.355273,0.663159,0.469878,0.174475,0.139165,0.360871,0.376514,0.956907,0.184613,0.206277,0.693411,0.672621,0.701742,0.484788,0.324002,0.673388,0.899129,0.394593,0.594508,0.241206,0.86077,0.188144,0.45376,0.586978,0.0629244,0.460424,0.0905561,0.097083,0.389451,0.326735,0.842048,0.57824,0.0871655,0.406143,0.258103,0.0141875,0.980394,0.265194,0.258161,0.342682,0.210774,0.179392,0.0631241,0.214445,0.0982484,0.257063,0.311733,0.493797,0.951136,0.990239,0.920196,0.25939,0.00930792,0.116974,0.579026,0.929708,0.316591,0.988131,0.36733,0.467534,0.447595,0.548124,0.318749,0.909975,0.427213,0.97739,0.961231,0.295027,0.204748,0.485192,0.804158,0.992596,0.98989,0.193123,0.898649,0.0419143,0.779807,0.228628,0.420133,0.937508,0.686322,0.45844,0.990905,0.849843,0.500549,0.305491,0.480579,0.819072,0.456162,0.481626,0.858407,0.465294,0.299369,0.765466,0.42353,0.666517,0.857067,0.693205,0.11464,0.598689,0.798511,0.678239,0.331558,0.573978,0.515927,0.568017,0.24044,0.584743,0.916274,0.658444,0.714393,0.931941,0.211104,0.618989,0.701552,0.393122,0.286648,0.837428,0.894078,0.0303171,0.160005,0.0969092,0.220475,0.414913,0.758086,0.312433,0.801329,0.840298,0.689464,0.444929,0.327563,0.256553,0.802909,0.885795,0.577864,0.159825,0.71395,0.846821,0.523992,0.14868,0.263969,0.0692163,0.546608,0.977556,0.180046,0.428628,0.586334,0.219233,0.944362,0.48275,0.268196,0.791997,0.583371,0.939324,0.683855,0.212763,0.346467,0.744092,0.429879,0.517216,0.130541,0.749482,0.892777,0.71052,0.780249,0.246941,0.490496,0.377371,0.278983,0.777296,0.614718,0.85224,0.700221,0.636986,0.0187832,0.354877,0.209135,0.586446,0.00576836,0.91169,0.179233,0.0520499,0.260163,0.704528,0.862638,0.50049,0.44443,0.165142,0.909309,0.523383,0.621533,0.262536,0.511317,0.57778,0.481544,0.131309,0.268498,0.344996,0.759347,0.668855,0.367104,0.36082,0.312607,0.95,0.65388,0.349471,0.191124,0.850466,0.806812,0.325073,0.791285,0.904843,0.274956,0.321963,0.034368,0.198751,0.108229,0.700724,0.43924,0.440737,0.652075,0.437456,0.158067,0.666678,0.724364,0.417987,0.648387,0.612097,0.91686,0.909668,0.568202,0.171344,0.0135459,0.562786,0.468125,0.304402,0.594367,0.244831,0.131386,0.446207,0.0635629,0.118109,0.52467,0.980839,0.783995,0.933501,0.243726,0.556388,0.908135,0.303194,0.583384,0.00670338,0.38461,0.914546,0.651142,0.520128,0.58325,0.209114,0.0724813,0.232911,0.719644,0.630003,0.505047,0.18288,0.935209,0.293607,0.866731,0.06891,0.10756,0.695261,0.652918,0.599565,0.447781,0.417499,0.374305,0.725194,0.513159,0.991773,0.206013,0.173029,0.076457,0.378792,0.231619,0.229274,0.763862,0.871253,0.075234,0.385185,0.777229,0.609194,0.119996,0.745312,0.481578,0.596046,0.403914,0.647758,0.895709,0.21082,0.449293,0.11006,0.773385,0.774296,0.821572,0.293334,0.94359,0.93553,0.126432,0.529055,0.309946,0.0683544,0.306986,0.847182,0.847554,0.704063,0.406076,0.152713,0.141354,0.770841,0.0432242,0.285265,0.614927,0.578765,0.45065,0.579081,0.319951,0.0650597,0.823777,0.927402,0.0173771,0.951298,0.573703,0.771459,0.517348,0.484534,0.425359,0.370878,0.941234,0.162225,0.664508,0.64166,0.687486,0.0390245,0.822017,0.226513,0.474498,0.0661728,0.61199,0.81965,0.956087,0.978322,0.322686,0.0374709,0.12591,0.24961,0.167192,0.174479,0.278231,0.672631,0.0233874,0.574992,0.775241,0.273775,0.269274,0.541348,0.309784,0.170312,0.982869,0.202463,0.544352,0.61807,0.206204,0.908126,0.815474,0.767755,0.106666,0.169125,0.415953,0.821554,0.992935,0.680956,0.410528,0.775656,0.790703,0.921318,0.22255,0.340706,0.97611,0.116518,0.726243,0.629977,0.242727,0.842472,0.579384,0.00532961,0.413352,0.763301,0.364238,0.103731,0.569743,0.808326,0.895429,0.905655,0.0569534,0.218009,0.26883,0.629482,0.483067,0.479508,0.430746,0.707002,0.278097,0.0735533,0.00126916,0.167029,0.823118,0.595386,0.492455,0.410127,0.616122,0.458675,0.973715,0.434903,0.717097,0.0198711,0.898732,0.362459,0.00184077,0.344214,0.0300584,0.945103,0.72066,0.602983,0.864618,0.0039674,0.539905,0.965117,0.839334,0.387218,0.0609918,0.378326,0.671402,0.365978,0.408036,0.295414,0.748336,0.218973,0.596775,0.87134,0.902989,0.415541,0.984881,0.034084,0.936646,0.903524,0.262378,0.227835,0.328966,0.814662,0.509997,0.0859704,0.163612,0.920397,0.807591,0.94637,0.81713,0.79174,0.229899,0.383125,0.835431,0.480247,0.827231,0.766311,0.152174,0.868812,0.211308,0.763903,0.388247,0.887554,0.748897,0.969105,0.0831778,0.14428,0.998902,0.509225,0.784957,0.0445548,0.501062,0.254119,0.600377,0.575409,0.366084,0.814315,0.573938,0.535334,0.783098,0.659911,0.786228,0.803829,0.96523,0.912444,0.960909,0.812087,0.777762,0.580244,0.780384,0.36508,0.701759,0.269918,0.562469,0.734222,0.615646,0.929865,0.508714,0.111754,0.236736,0.253142,0.542537,0.897505,0.567789,0.577476,0.00941736,0.136486,0.444397,0.421452,0.623086,0.938606,0.668481,0.627265,0.623602,0.598466,0.0220458,0.33667,0.453122,0.273252,0.0615942,0.486808,0.701516,0.948865,0.751493,0.0170937,0.161588,0.759531,0.952875,0.364567,0.636908,0.882569,0.501448,0.756825,0.0221962,0.823188,0.738954,0.090982,0.489486,0.961108,0.999043,0.931159,0.0609927,0.921807,0.30698,0.438472,0.0797755,0.0180225,0.0872524,0.43433,0.0946436,0.320142,0.103312,0.260203,0.24694,0.117658,0.0165589,0.452582,0.236783,0.213301,0.328139,0.984032,0.988762,0.68696,0.262887,0.578634,0.53459,0.853054,0.669014,0.555931,0.533364,0.169087,0.774707,0.309666,0.739822,0.757756,0.190649,0.419917,0.919086,0.603511,0.188413,0.845562,0.253326,0.910323,0.543832,0.218564,0.920148,0.154539,0.566482,0.751252,0.568721,0.243211,0.541802,0.529078,0.486867,0.578099,0.0892746,0.691049,0.106814,0.0643558,0.673905,0.653041,0.955254,0.650817,0.564892,0.593368,0.181695,0.563503,0.0100057,0.163784,0.801869,0.603948,0.975994,0.141134,0.68829,0.550563,0.87478,0.924201,0.0771626,0.357618,0.0430843,0.794876,0.45218,0.0287215,0.436615,0.788724,0.68311,0.494531,0.504071,0.658395,0.0369142,0.0493121,0.203698,0.39988,0.11201,0.598127,0.723347,0.856614,0.226903,0.863645,0.987463,0.96286,0.923939,0.372019,0.382172,0.254179,0.229869,0.310738,0.647345,0.431568,0.0347615,0.407412,0.482263,0.114213,0.0189472,0.852512,0.206405,0.734293,0.833255,0.85833,0.172397,0.391715,0.50181,0.194573,|0.376621,0.865447,0.540422,0.658191,0.98761,0.205871,0.426531,0.879369,0.558167,0.633987,0.500034,0.996346,0.115289,0.535905,0.19224,0.955497,0.594381,0.223259,0.962563,0.604715,0.41706,0.607291,0.128161,0.115651,0.513016,0.861326,0.354722,0.345244,0.659947,0.265458,0.208999,0.641698,0.674722,0.28958,0.432968,0.358061,0.160894,0.215234,0.925194,0.502231,0.982364,0.824974,0.861096,0.793285,0.833147,0.700394,0.873256,0.0289606,0.0940484,0.964718,0.186532,0.656014,0.348852,0.621873,0.457918,0.099461,0.942921,0.375831,0.183085,0.601218,0.885494,0.126536,0.548021,0.716408,0.67097,0.138733,0.646923,0.389182,0.0984127,0.177233,0.757159,0.97006,0.56173,0.572631,0.707054,0.00726873,0.277895,0.744765,0.701723,0.239674,0.389378,0.523444,0.794524,0.99214,0.739732,0.978958,0.619735,0.636661,0.169817,0.465991,0.194725,0.452943,0.488174,0.553129,0.452472,0.155807,0.333826,0.943445,0.165376,0.741335,0.594046,0.855553,0.592529,0.871033,0.740871,0.524214,0.0292417,0.386208,0.893534,0.192329,0.281493,0.993655,0.616525,0.539633,0.329755,0.563259,0.0707985,0.348793,0.684706,0.576553,0.785339,0.0286056,0.373028,0.430879,0.940254,0.913594,0.614547,0.422437,0.62307,0.242539,0.814562,0.894048,0.215638,0.911826,0.340548,0.622985,0.335924,0.914956,0.773316,0.974452,0.827469,0.791011,0.140793,0.168718,0.332924,0.518338,0.163442,0.315854,0.652507,0.959819,0.305353,0.297799,0.993512,0.119601,0.65953,0.575369,0.356189,0.642465,0.512571,0.456644,0.381959,0.254328,0.578596,0.988977,0.236486,0.436663,0.876635,0.946889,0.582705,0.2603,0.501283,0.405366,0.915197,0.958247,0.148123,0.680561,0.248033,0.68714,0.131154,0.850102,0.532267,0.599622,0.749492,0.0985249,0.879693,0.532035,0.853816,0.977524,0.409932,0.135756,0.874033,0.926566,0.564765,0.811019,0.325779,0.629565,0.645167,0.788093,0.985903,0.287649,0.766083,0.228536,0.300032,0.739694,0.453444,0.859324,0.0626104,0.693138,0.882428,0.667818,0.452254,0.128078,0.395357,0.946333,0.235045,0.0849695,0.762073,0.866096,0.0963415,0.290563,0.408656,0.664182,0.0742655,0.519555,0.639072,0.0552451,0.145368,0.831773,0.926118,0.707481,0.321432,0.627316,0.567077,0.928978,0.638848,0.61827,0.158095,0.629721,0.849087,0.268656,0.388493,0.680969,0.43302,0.7507,0.24209,0.0438113,0.802851,0.916697,0.425589,0.732809,0.89319,0.420092,0.406577,0.965061,0.524214,0.739998,0.989844,0.0493211,0.802056,0.994882,0.0341477,0.73944,0.689819,0.74443,0.423941,0.352646,0.36299,0.0914067,0.973743,0.872869,0.840114,0.805425,0.279258,0.207197,0.497748,0.339672,0.123704,0.201555,0.537886,0.175964,0.957076,0.893701,0.0318907,0.0227493,0.219703,0.86539,0.198249,0.461119,0.765716,0.927036,0.737955,0.979718,0.445353,0.734942,0.873408,0.55023,0.648959,0.350903,0.588885,0.173728,0.395584,0.0846111,0.559303,0.421909,0.109821,0.716493,0.71757,0.793134,0.349566,0.388062,0.927222,0.971332,0.884061,0.319712,0.375714,0.696224,0.214139,0.516547,0.0649475,0.860111,0.85738,0.564692,0.696521,0.142685,0.299562,0.238277,0.826499,0.0461389,0.790901,0.910432,0.770385,0.364918,0.919749,0.666318,0.484188,0.402364,0.153021,0.726084,0.776522,0.445637,0.981177,0.449335,0.368893,0.727587,0.161921,0.525587,0.996454,0.608585,0.0905434,0.595131,0.474314,0.566589,0.670346,0.964627,0.41134,0.680235,0.885873,0.72682,0.512205,0.777141,0.0516119,0.949271,0.437504,0.776757,0.517853,0.901062,0.387446,0.753452,0.0453855,0.104197,0.519534,0.6355,0.198027,0.792051,0.485835,0.543805,0.175085,0.636507,0.00570816,0.141571,0.652455,0.920561,0.330678,0.0798287,0.665418,0.800871,0.440763,0.642497,0.39601,0.789681,0.173416,0.306551,0.190045,0.631321,0.310368,0.119311,0.41998,0.202268,0.737185,0.548074,0.370561,0.135403,0.0465629,0.478136,0.988918,0.0947253,0.676891,0.999805,0.13251,0.135345,0.625915,0.819655,0.62222,0.543566,0.0209941,0.478633,0.991107,0.509003,0.808623,0.643062,0.800283,0.0783304,0.0400487,0.724685,0.804423,0.741369,0.0261851,0.790285,0.416432,0.487575,0.665801,0.527535,0.260155,0.258653,0.285554,0.153621,0.618844,0.7772,0.612977,0.194906,0.841336,0.970098,0.195256,0.376043,0.774625,0.624859,0.670646,0.111874,0.604296,0.333006,0.780758,0.603494,0.0180951,0.515544,0.0733909,0.306916,0.448644,0.432288,0.329901,0.308762,0.337446,0.960496,0.673888,0.444005,0.290299,0.708625,0.854473,0.950325,0.116504,0.554478,0.506531,0.750392,0.577314,0.129651,0.822437,0.122558,0.39569,0.646021,0.48892,0.961327,0.429696,0.100571,0.656514,0.373271,0.41333,0.356488,0.0225859,0.180579,0.683038,0.744058,0.411703,0.133397,0.348626,0.507077,0.0775078,0.4885,0.949181,0.111347,0.668018,0.0515434,0.620242,0.0227185,0.237341,0.623778,0.175969,0.612328,0.373618,0.945265,0.391347,0.21194,0.836838,0.488441,0.681461,0.68561,0.444676,0.475196,0.490036,0.225987,0.506873,0.957963,0.113895,0.60666,0.318846,0.839831,0.587299,0.884102,0.0215939,0.778621,0.958634,0.467665,0.31759,0.826965,0.600147,0.739676,0.333369,0.534891,0.523564,0.779741,0.192553,0.785533,0.1399,0.754873,0.891737,0.623319,0.826212,0.655719,0.19883,0.556077,0.152261,0.922162,0.117276,0.412916,0.115409,0.032411,0.915741,0.877568,0.718272,0.281673,0.857081,0.246451,0.318496,0.702417,0.576304,0.780814,0.287221,0.167483,0.94978,0.955037,0.152327,0.537026,0.318579,0.301837,0.802809,0.712049,0.773981,0.120938,0.135203,0.379398,0.834645,0.290694,0.415668,0.139354,0.528197,0.338927,0.0237393,0.0702292,0.0939792,0.545364,0.352867,0.212318,0.486117,0.905464,0.972578,0.022967,0.904358,0.692756,0.888733,0.380574,0.0879714,0.99285,0.45664,0.309141,0.274707,0.271789,0.592778,0.320884,0.20861,0.53016,0.32453,0.717672,0.128712,0.741851,0.519577,0.804821,0.309345,0.53179,0.21588,0.296046,0.493133,0.274255,0.896385,0.57482,0.399407,0.343809,0.396212,0.474241,0.917789,0.772476,0.386432,0.986578,0.684854,0.13798,0.809619,0.231632,0.184289,0.768822,0.185054,0.118997,0.180084,0.070426,0.26367,0.616261,0.172694,0.758462,0.6745,0.0348873,0.858389,0.283493,0.991508,0.913218,0.462501,0.662533,0.146833,0.168249,0.324789,0.696932,0.772029,0.662626,0.178815,0.834084,0.478059,0.23103,0.267778,0.0414805,0.276043,0.463668,0.466744,0.321464,0.837743,0.306159,0.213185,0.273071,0.223026,0.587331,0.166445,0.517239,0.183756,0.93994,0.205795,0.803988,0.0460374,0.401616,0.366192,0.634746,0.410477,0.458222,0.428237,0.373409,0.879312,0.340073,0.537832,0.99403,0.202765,0.443601,0.628362,0.692685,0.631294,0.715563,0.47834,0.889051,0.295398,0.0740047,0.725271,0.454423,0.522746,0.215914,0.573877,0.689421,0.776109,0.0221883,0.583582,0.935928,0.553316,0.491291,0.0243366,0.694659,0.0915393,0.297423,0.769506,0.647984,0.375345,0.23439,0.193198,0.302874,0.492368,0.849385,0.288123,0.212439,0.267426,0.783642,0.568829,0.967451,0.70529,0.95606,0.690298,0.38674,0.786986,0.910016,0.804928,0.00897193,0.958401,0.818778,0.400294,0.332455,0.483204,0.0672476,0.870664,0.614577,0.551517,0.533966,0.939701,0.852558,0.328665,0.891656,0.457971,0.151645,0.9142,0.200487,0.705723,0.696933,0.75313,0.719319,0.6382,0.206852,0.244034,0.049618,0.945218,0.757317,0.609125,0.179686,0.299681,0.892316,0.849974,0.358786,0.342242,0.472379,0.963048,0.565213,0.109594,0.117148,0.653553,0.876134,0.238326,0.428251,0.250901,0.0082944,0.840813,0.797225,0.0852666,0.97743,0.552847,0.512865,0.0528032,0.697375,0.015224,0.184305,0.68503,0.196395,0.210961,0.577903,0.837412,0.588736,0.235042,0.91292,0.947304,0.500439,0.181939,0.362696,0.169937,0.945213,0.370641,0.426055,0.920258,0.283714,0.282894,0.835502,0.32845,0.386523,0.892219,0.91238,0.798067,0.368739,0.363395,0.241843,0.219804,0.670626,0.52944,0.159072,0.818679,0.383959,0.00173658,0.152794,0.977848,0.978889,0.0204123,0.46584,0.0471069,0.144474,0.377568,0.656956,0.215032,0.864203,0.722558,0.0467619,0.309677,0.480253,0.235344,0.341247,0.148953,0.385542,0.421941,0.117159,0.437222,0.993749,0.00121766,0.467043,0.804851,0.137989,0.0765381,0.463576,0.152253,0.0325593,0.795358,0.604544,0.181317,0.234253,0.774258,0.131145,0.658609,0.424052,0.540996,0.99988,0.0626374,0.292323,0.701083,0.836989,0.439439,0.832294,0.649725,0.155698,0.712258,0.490306,0.974393,0.434318,0.223247,0.16735,0.45538,0.723529,0.112087,0.905317,0.838178,0.276327,0.299965,0.0542591,0.247558,0.0321829,0.94124,0.751062,0.292018,0.410133,0.792178,0.0763797,0.0182151,0.938969,0.465017,0.158163,0.619045,0.982757,0.41937,0.487211,0.392406,0.797213,0.654635,0.350033,0.73049,0.993838,0.250698,0.747052,0.868748,0.578238,0.929258,0.208851,0.486562,0.760636,0.845794,0.530145,0.165462,0.860096,0.0821345,0.0989221,0.162645,0.140431,0.676035,0.516235,0.752358,0.114333,0.0301412,0.832689,0.701195,0.590355,0.387244,0.327219,0.0877494,0.948122,0.0110252,0.482749,0.383121,0.635042,0.194347,0.848672,0.304154,0.102749,0.821182,0.0801151,0.825233,0.285244,0.200648,0.0155764,0.887438,0.484023,0.732635,0.790558,0.0346886,0.428444,0.526914,0.712259,0.333955,0.944169,0.384336,0.588884,0.256578,0.0737225,0.269881,0.86105,0.775656,0.955723,0.523256,0.224891,0.166718,0.140539,0.393726,0.60216,0.21356,0.230346,0.894139,0.265776,0.806474,0.520165,0.347394,0.130784,0.907459,0.232595,0.75271,0.779418,0.0300202,0.673438,0.359026,0.507855,0.513632,0.593372,|0.789211,0.218259,0.888634,0.191859,0.613752,0.368493,0.528247,0.945915,0.673634,0.513672,0.907332,0.175595,0.952534,0.0391464,0.601369,0.767142,0.856072,0.75447,0.504532,0.431374,0.0657833,0.563036,0.645931,0.495258,0.532153,0.572109,0.207492,0.396779,0.575808,0.543799,0.45452,0.783901,0.437504,0.909635,0.246399,0.614011,0.768981,0.749055,0.349242,0.449709,0.604105,0.822969,0.0271948,0.563658,0.853541,0.0636032,0.518318,0.719516,0.861915,0.0876057,0.464565,0.0599564,0.864415,0.397496,0.79705,0.626068,0.738041,0.346489,0.595597,0.618156,0.068608,0.307311,0.431828,0.817291,0.366733,0.498044,0.195694,0.0726635,0.760935,0.08461,0.532314,0.0399232,0.414524,0.241673,0.928448,0.933331,0.811559,0.864128,0.342287,0.79821,0.93675,0.371893,0.781364,0.351994,0.133854,0.668985,0.319185,0.0564136,0.984638,0.0346076,0.854907,0.459302,0.983257,0.106385,0.864525,0.641823,0.30698,0.874588,0.968816,0.336154,0.131003,0.117005,0.264103,0.189818,0.499111,0.863513,0.494083,0.462631,0.0885682,0.539815,0.746626,0.541871,0.632272,0.011161,0.3329,0.855738,0.827628,0.889693,0.212662,0.128196,0.706087,0.00531936,0.668126,0.403499,0.305187,0.980009,0.990235,0.336264,0.593804,0.127254,0.802414,0.998017,0.138234,0.157309,0.308153,0.492858,0.922272,0.422519,0.62963,0.799794,0.754452,0.431642,0.904172,0.49611,0.823985,0.19616,0.11206,0.254869,0.639222,0.645059,0.749054,0.249448,0.495191,0.92346,0.654215,0.423696,0.730855,0.536663,0.434588,0.11666,0.462456,0.258348,0.633163,0.611902,0.0568794,0.0445576,0.0796107,0.409175,0.781975,0.491005,0.00994295,0.790233,0.503935,0.920222,0.910813,0.604339,0.377304,0.632709,0.592465,0.642385,0.792008,0.875186,0.450082,0.111757,0.0537323,0.0924616,0.584844,0.712401,0.473227,0.598754,0.958141,0.645254,0.255241,0.397308,0.0251049,0.309522,0.66132,0.633394,0.745687,0.986362,0.13429,0.174867,0.622898,0.861715,0.247731,0.414729,0.275988,0.479843,0.161408,0.0491707,0.784424,0.0718522,0.839585,0.0317144,0.759893,0.231952,0.139896,0.191217,0.826086,0.030131,0.295961,0.850227,0.378314,0.662579,0.651832,0.362378,0.0852945,0.684879,0.400652,0.993169,0.125654,0.828235,0.119938,0.53832,0.328344,0.673928,0.070518,0.969707,0.303376,0.0898153,0.52782,0.776894,0.566965,0.530035,0.261724,0.881939,0.0452456,0.0308332,0.849346,0.307226,0.329164,0.689822,0.277783,0.136741,0.028761,0.987303,0.439864,0.618364,0.216687,0.111404,0.834605,0.158637,0.481887,0.626533,0.520365,0.466857,0.506375,0.289738,0.969778,0.194825,0.0872889,0.176369,0.0949897,0.017621,0.862103,0.807657,0.39199,0.766371,0.0602589,0.881886,0.10747,0.518898,0.84597,0.0634193,0.414751,0.764673,0.369264,0.353285,0.319662,0.832943,0.225068,0.328143,0.427704,0.776482,0.499058,0.247071,0.826651,0.69159,0.897051,0.870949,0.722689,0.135489,0.922332,0.721382,0.959,0.617512,0.895529,0.476904,0.500391,0.621529,0.746068,0.741186,0.927034,0.633378,0.469164,0.480645,0.0946017,0.96614,0.247454,0.0678367,0.638436,0.422412,0.793643,0.108173,0.509968,0.489077,0.842979,0.994539,0.311535,0.970118,0.00381601,0.408832,0.409225,0.642528,0.487425,0.744592,0.231717,0.780554,0.514815,0.20572,0.0903548,0.0688061,0.784387,0.732776,0.253605,0.635233,0.956431,0.709901,0.616587,0.165029,0.783011,0.204564,0.0952477,0.110489,0.410098,0.424107,0.486564,0.813964,0.897911,0.85528,0.290405,0.401751,0.300604,0.0622334,0.770334,0.143532,0.319198,0.561864,0.19554,0.566443,0.163076,0.608046,0.299286,0.562181,0.967894,0.158238,0.649284,0.776376,0.510809,0.0519291,0.505174,0.633233,0.6782,0.843893,0.448114,0.0877732,0.74876,0.152034,0.557565,0.944078,0.0923694,0.0294805,0.902497,0.169447,0.393574,0.347798,0.830716,0.148626,0.557212,0.438302,0.373334,0.0284867,0.779429,0.765532,0.730825,0.684659,0.205902,0.720284,0.536471,0.846149,0.477649,0.970677,0.866562,0.0544841,0.257099,0.0715823,0.441746,0.726035,0.194184,0.876703,0.933428,0.489008,0.710135,0.564653,0.0460346,0.195919,0.416274,0.231696,0.710284,0.64406,0.711615,0.377962,0.774687,0.214032,0.913408,0.300692,0.533648,0.638398,0.496826,0.201197,0.622113,0.805288,0.535178,0.689156,0.186735,0.803136,0.914956,0.965874,0.880115,0.311836,0.918947,0.118581,0.944669,0.283025,0.948651,0.532004,0.896165,0.3032,0.14936,0.203196,0.671856,0.185373,0.933653,0.292387,0.568032,0.569416,0.0189582,0.442748,0.908891,0.721131,0.0644055,0.379996,0.77609,0.0538247,0.643923,0.348615,0.046762,0.402353,0.561757,0.80037,0.262722,0.174521,0.845591,0.191769,0.785299,0.928291,0.0448368,0.612648,0.265212,0.498012,0.136018,0.548339,0.849476,0.941359,0.612054,0.563781,0.86625,0.282669,0.53914,0.0234672,0.00132936,0.674012,0.976058,0.678178,0.158543,0.53922,0.935347,0.653283,0.566089,0.299928,0.784896,0.341277,0.362266,0.867874,0.0502789,0.868174,0.562748,0.673354,0.555721,0.0374031,0.699698,0.809306,0.031311,0.901284,0.334767,0.098319,0.844363,0.374683,0.74892,0.514178,0.311319,0.0414712,0.30658,0.780942,0.645628,0.704661,0.56182,0.449409,0.686386,0.0260656,0.717636,0.976161,0.237949,0.640837,0.760852,0.407156,0.41509,0.606593,0.224914,0.843863,0.378608,0.91256,0.0950572,0.917584,0.860923,0.610872,0.534314,0.31815,0.849126,0.00289059,0.34454,0.991593,0.203173,0.842841,0.962157,0.586369,0.359677,0.286697,0.376226,0.774712,0.0897034,0.0908986,0.0865763,0.277356,0.220969,0.466445,0.639019,0.914184,0.199368,0.861885,0.646958,0.816214,0.0968389,0.86192,0.235555,0.00329411,0.774543,0.876275,0.310226,0.682765,0.962002,0.766221,0.493328,0.796521,0.812956,0.767935,0.187907,0.709724,0.886334,0.647243,0.920946,0.118628,0.331096,0.177485,0.373616,0.254872,0.0685425,0.544526,0.435867,0.851478,0.91291,0.203771,0.0170766,0.467833,0.645178,0.588171,0.758739,0.946315,0.316581,0.149155,0.311371,0.0804912,0.499299,0.659718,0.293196,0.376443,0.929681,0.428956,0.655169,0.581932,0.571021,0.403461,0.199616,0.123834,0.760625,0.510625,0.186165,0.722554,0.492991,0.645362,0.692662,0.241384,0.783025,0.93235,0.575139,0.59729,0.346905,0.976891,0.951114,0.32671,0.569055,0.777244,0.998732,0.966002,0.948885,0.286748,0.69111,0.468907,0.0669788,0.0759635,0.499189,0.379458,0.987323,0.733331,0.401601,0.786816,0.386148,0.580016,0.3192,0.163523,0.107018,0.350306,0.704131,0.930832,0.608266,0.520599,0.518312,0.109545,0.362701,0.919919,0.614631,0.115345,0.817402,0.383997,0.733436,0.0474507,0.223651,0.940039,0.250098,0.503981,0.556947,0.038853,0.186911,0.275935,0.662256,0.268664,0.385157,0.698953,0.888852,0.367853,0.334304,0.316189,0.782788,0.934125,0.755008,0.954271,0.325014,0.662719,0.605897,0.255968,0.598025,0.842846,0.444496,0.348783,0.635243,0.708123,0.883281,0.0721034,0.718855,0.217419,0.93555,0.650732,0.163279,0.416253,0.759,0.388407,0.427305,0.753593,0.661622,0.325831,0.144513,0.421988,0.192677,0.818564,0.134218,0.300637,0.195146,0.601858,0.280277,0.397958,0.727322,0.160356,0.991386,0.910875,0.694556,0.734312,0.504939,0.34648,0.781121,0.216461,0.520527,0.871223,0.0487397,0.248231,0.439486,0.900525,0.652119,0.534475,0.207331,0.444988,0.506536,0.580796,0.952277,0.0617238,0.0240296,0.0219727,0.597229,0.201964,0.45895,0.638129,0.456674,0.906124,0.169914,0.924253,0.371828,0.959884,0.178032,0.874053,0.874755,0.201786,0.64503,0.306721,0.166803,0.494247,0.286173,0.747701,0.514647,0.444203,0.696345,0.927738,0.419862,0.918733,0.226527,0.562724,0.690947,0.322738,0.682366,0.371414,0.896029,0.500669,0.886414,0.580877,0.214762,0.386611,0.653174,0.48275,0.775234,0.530783,0.975385,0.584971,0.513305,0.581381,0.448833,0.600671,0.775151,0.376138,0.38521,0.516645,0.858651,0.540417,0.636864,0.982029,0.510997,0.053735,0.300059,0.219558,0.550199,0.890166,0.652171,0.673183,0.128352,0.44991,0.349342,0.694776,0.130345,0.430495,0.857173,0.292418,0.238169,0.528011,0.734241,0.918124,0.353735,0.43609,0.337673,0.965689,0.239717,0.951951,0.076911,0.411495,0.89654,0.161951,0.356743,0.564745,0.92508,0.273832,0.670229,0.821573,0.519425,0.265372,0.881264,0.680283,0.816161,0.55722,0.467597,0.361158,0.384974,0.829898,0.167495,0.980163,0.610375,0.759136,0.766958,0.430053,0.540949,0.638512,0.954889,0.772541,0.918712,0.235743,0.111404,0.333048,0.164409,0.328796,0.781175,0.164355,0.146339,0.897074,0.31504,0.654134,0.532646,0.076395,0.162977,0.911073,0.335947,0.484291,0.616242,0.228206,0.0635935,0.653203,0.809795,0.295602,0.390849,0.490499,0.183948,0.153932,0.573912,0.756526,0.650329,0.659644,0.0951212,0.932868,0.248233,0.924812,0.308445,0.968637,0.0286958,0.848873,0.114206,0.705185,0.867645,0.414278,0.105738,0.472446,0.170769,0.646799,0.522728,0.775472,0.554458,0.394332,0.252249,0.00461924,0.147744,0.719729,0.60073,0.804205,0.061543,0.908209,0.492827,0.0974303,0.548186,0.640819,0.287564,0.590278,0.314111,0.358534,0.10082,0.0613971,0.42607,0.0635594,0.717357,0.794407,0.000693619,0.522772,0.169157,0.309029,0.85873,0.289135,0.675946,0.587855,0.355777,0.681188,0.900383,0.367551,0.37728,0.84665,0.0551437,0.722169,0.924267,0.392232,0.643336,0.582102,0.0299481,0.732133,0.508865,0.659867,0.935574,0.562808,0.903421,0.438696,0.649537,0.277534,0.770101,0.0146802,0.970155,0.769711,0.181008,0.321279,0.0568779,0.442449,0.443171,0.64134,0.75082,0.0297506,0.22245,0.573483,0.461283,0.56817,0.113868,0.358998,|0.953815,0.77209,0.663172,0.387972,0.503407,0.148765,0.535256,0.471344,0.814326,0.182466,0.363493,0.855817,0.90275,0.0748684,0.0744962,0.59856,0.690003,0.178321,0.94903,0.920069,0.0357779,0.804972,0.883556,0.171243,0.52267,0.335903,0.966144,0.203715,0.852726,0.149021,0.900942,0.267233,0.87229,0.071188,0.928398,0.893913,0.589023,0.809908,0.306854,0.21179,0.511483,0.637562,0.368065,0.423076,0.795427,0.319125,0.598518,0.469078,0.83541,0.74155,0.433974,0.254464,0.212319,0.880343,0.676353,0.231129,0.394911,0.10309,0.953496,0.117381,0.0121416,0.0655748,0.523809,0.0979086,0.00760764,0.738291,0.0596007,0.0938411,0.639743,0.896214,0.171753,0.105974,0.549589,0.282524,0.146279,0.405011,0.632688,0.349221,0.829663,0.403821,0.0367594,0.720937,0.119304,0.149731,0.245563,0.031571,0.754048,0.774809,0.591976,0.335793,0.0422858,0.180319,0.630975,0.662792,0.108525,0.323911,0.267077,0.156873,0.653132,0.368627,0.0291528,0.0975286,0.25971,0.320124,0.310571,0.6167,0.240327,0.591589,0.667698,0.378464,0.605631,0.352291,0.0175846,0.0352355,0.165414,0.91585,0.266417,0.622091,0.989696,0.215436,0.416116,0.68371,0.371278,0.539677,0.163966,0.0679689,0.854627,0.743882,0.756658,0.0878082,0.566509,0.477025,0.121791,0.679964,0.126831,0.409735,0.207848,0.106406,0.175232,0.97361,0.542082,0.43637,0.335614,0.672488,0.525475,0.348367,0.603892,0.786149,0.693081,0.283774,0.270252,0.786111,0.350447,0.338105,0.541585,0.868709,0.232388,0.910339,0.0245929,0.893047,0.1206,0.58948,0.466585,0.466631,0.818324,0.0908405,0.44269,0.342838,0.975702,0.644488,0.374364,0.251302,0.494043,0.183437,0.401165,0.871495,0.202474,0.670986,0.809674,0.610697,0.19916,0.850091,0.240768,0.836009,0.694273,0.992133,0.458267,0.504097,0.448439,0.805553,0.692028,0.906005,0.218242,0.0661585,0.495529,0.495763,0.556099,0.796471,0.423304,0.978718,0.668817,0.101061,0.88156,0.631663,0.00545114,0.52181,0.0563917,0.41824,0.137548,0.937986,0.870746,0.691706,0.817783,0.968728,0.257598,0.797974,0.826013,0.012997,0.596824,0.217304,0.432804,0.943373,0.135982,0.692069,0.943531,0.287864,0.34047,0.51204,0.222376,0.987382,0.454989,0.0498567,0.778992,0.974333,0.0428842,0.504461,0.923655,0.105467,0.655678,0.788917,0.985335,0.450346,0.156851,0.436442,0.438517,0.825459,0.11217,0.538591,0.5654,0.21825,0.728614,0.522275,0.074154,0.473512,0.988415,0.957534,0.118009,0.675122,0.105853,0.45959,0.931375,0.461986,0.709825,0.586911,0.939511,0.110866,0.784658,0.352948,0.91437,0.898866,0.190436,0.9766,0.0546719,0.999659,0.333047,0.694916,0.745938,0.260037,0.140005,0.413387,0.407277,0.505549,0.384803,0.291253,0.347942,0.335654,0.301912,0.850175,0.846095,0.516197,0.184797,0.921905,0.159901,0.65099,0.865878,0.892194,0.760414,0.906897,0.786843,0.513872,0.574457,0.646628,0.190214,0.802158,0.627777,0.401865,0.800803,0.0143249,0.017356,0.961338,0.467733,0.306994,0.598436,0.983242,0.737568,0.0743596,0.135914,0.313608,0.0880781,0.828005,0.997715,0.30012,0.187,0.267807,0.0873091,0.631723,0.467034,0.815003,0.701488,0.461668,0.7233,0.926207,0.133841,0.781772,0.316489,0.936068,0.48231,0.366253,0.441044,0.903108,0.760856,0.00397152,0.191227,0.744628,0.571468,0.230255,0.755764,0.257379,0.123061,0.442125,0.881637,0.118848,0.522829,0.980114,0.432073,0.274444,0.0881125,0.261328,0.358022,0.245951,0.349462,0.885768,0.0668854,0.337567,0.999526,0.123626,0.265474,0.663364,0.22663,0.7306,0.846416,0.660975,0.426056,0.541489,0.191587,0.3939,0.657223,0.449689,0.589369,0.190586,0.857218,0.538819,0.129549,0.254369,0.773972,0.572667,0.644296,0.391835,0.276128,0.979136,0.81496,0.0959655,0.753708,0.336363,0.290417,0.565965,0.346162,0.381391,0.443565,0.023497,0.429803,0.119569,0.0023942,0.511517,0.227367,0.604586,0.882063,0.723794,0.834904,0.652668,0.0363212,0.589274,0.781551,0.614948,0.578841,0.159248,0.95961,0.83067,0.0571017,0.767961,0.910432,0.403439,0.00817662,0.151524,0.59046,0.684283,0.79271,0.146813,0.550152,0.607171,0.651106,0.318077,0.425929,0.445487,0.814937,0.402598,0.275036,0.392045,0.709436,0.419713,0.482931,0.549717,0.519932,0.231871,0.0106078,0.692401,0.975943,0.44449,0.40687,0.36129,0.797129,0.113814,0.19144,0.671629,0.43631,0.729433,0.12879,0.65802,0.98548,0.669477,0.574978,0.661127,0.825764,0.411595,0.870916,0.317342,0.919496,0.573581,0.299859,0.229931,0.0147459,0.0607954,0.576145,0.6747,0.673562,0.873004,0.592543,0.674192,0.260821,0.928418,0.333307,0.355798,0.632568,0.463736,0.202117,0.140127,0.833275,0.394085,0.572593,0.968362,0.791946,0.0610412,0.450532,0.348155,0.619102,0.718828,0.813615,0.751308,0.202183,0.517833,0.594937,0.375167,0.78952,0.261525,0.674511,0.722179,0.92015,0.792211,0.99649,0.0541072,0.548544,0.350774,0.335913,0.0415576,0.556701,0.502472,0.763269,0.519573,0.626883,0.123204,0.623026,0.728427,0.553476,0.401323,0.547254,0.318331,0.0796227,0.351596,0.355352,0.298082,0.865123,0.593066,0.970497,0.0889121,0.760928,0.404999,0.805124,0.132291,0.806202,0.631212,0.557464,0.0562555,0.559698,0.520723,0.730723,0.87479,0.724634,0.871749,0.823453,0.335679,0.655574,0.402391,0.807549,0.828889,0.131867,0.212632,0.0436063,0.388074,0.316543,0.562237,0.263049,0.0108986,0.953326,0.500527,0.796401,0.565159,0.780411,0.696898,0.166714,0.455311,0.525904,0.169575,0.647624,0.946838,0.474227,0.872582,0.0558786,0.291886,0.141233,0.332279,0.220182,0.000778615,0.0526655,0.939825,0.991664,0.643831,0.94885,0.134097,0.940998,0.0403751,0.580106,0.363574,0.267944,0.220582,0.171356,0.51115,0.849225,0.75911,0.374669,0.365797,0.775702,0.300653,0.139978,0.365834,0.227394,0.518855,0.614817,0.545842,0.985755,0.697406,0.63766,0.32101,0.0539588,0.802492,0.199932,0.457986,0.576106,0.302367,0.913327,0.334678,0.141785,0.90413,0.559447,0.203841,0.420921,0.114416,0.913781,0.850553,0.607823,0.923742,0.67128,0.171491,0.328319,0.917399,0.828406,0.935832,0.369047,0.948012,0.118197,0.718769,0.00422525,0.20578,0.129445,0.649552,0.531618,0.486615,0.552104,0.522786,0.688608,0.066223,0.225686,0.635264,0.474278,0.909377,0.0167019,0.381919,0.0819502,0.616022,0.415454,0.477909,0.766234,0.73145,0.679536,0.0112766,0.705396,0.651813,0.84257,0.0547137,0.253878,0.469335,0.796625,0.265721,0.567608,0.125944,0.875295,0.631416,0.198802,0.637859,0.985761,0.719268,0.345079,0.360793,0.949712,0.36839,0.962917,0.612145,0.151998,0.907002,0.954491,0.453628,0.657995,0.861372,0.230814,0.310775,0.464872,0.889087,0.359511,0.491933,0.754972,0.07322,0.927036,0.499139,0.146846,0.878061,0.976618,0.989864,0.856894,0.0200605,0.872884,0.378505,0.63882,0.858837,0.340194,0.341541,0.229969,0.952279,0.9249,0.9166,0.780849,0.829166,0.785452,0.624349,0.121488,0.0202149,0.989401,0.8933,0.0712346,0.347038,0.469765,0.465634,0.624476,0.579209,0.693102,0.162265,0.844361,0.931214,0.971124,0.977209,0.203794,0.670231,0.763432,0.21896,0.557162,0.912191,0.289978,0.288774,0.558673,0.719172,0.0871772,0.0547583,0.814419,0.501671,0.323156,0.722464,0.933187,0.543601,0.15189,0.523855,0.900514,0.872778,0.936803,0.79485,0.124731,0.536351,0.134614,0.632831,0.769006,0.271787,0.305568,0.54095,0.184058,0.979405,0.960538,0.753624,0.840317,0.174707,0.0470104,0.526484,0.562168,0.259434,0.46256,0.0496023,0.913276,0.783508,0.0286657,0.927394,0.424605,0.657956,0.305475,0.308763,0.350374,0.375296,0.728734,0.40183,0.779857,0.314936,0.924129,0.217203,0.0429584,0.209585,0.804706,0.0800034,0.686062,0.983136,0.102375,0.123057,0.339309,0.451483,0.678027,0.567205,0.47941,0.363561,0.864074,0.688865,0.997468,0.797168,0.000788152,0.389684,0.98484,0.273516,0.357246,0.849674,0.497697,0.00647968,0.549977,0.519686,0.921341,0.70072,0.290251,0.886402,0.0288551,0.82494,0.634039,0.237181,0.750798,0.742988,0.514872,0.275468,0.392911,0.819034,0.501936,0.6244,0.281604,0.139464,0.345244,0.524239,0.961663,0.58317,0.238572,0.31954,0.591373,0.650844,0.344263,0.343837,0.115932,0.245726,0.0478115,0.757668,0.382497,0.778156,0.598565,0.187647,0.202006,0.109541,0.274958,0.790951,0.522435,0.0291319,0.220076,0.96305,0.248132,0.30775,0.459844,0.732678,0.664848,0.437479,0.874669,0.126944,0.206919,0.433222,0.776418,0.934899,0.447731,0.345857,0.660824,0.754629,0.927853,0.152278,0.904589,0.16236,0.22514,0.906633,0.466829,0.283784,0.589014,0.40554,0.892175,0.335114,0.228725,0.961844,0.854143,0.614581,0.169855,0.476691,0.533809,0.788942,0.677548,0.345091,0.229298,0.379668,0.26641,0.0365488,0.607958,0.0873312,0.197774,0.553632,0.805178,0.272701,0.401274,0.04445,0.87957,0.234171,0.0229225,0.791302,0.300382,0.324086,0.828466,0.613342,0.748138,0.910252,0.251314,0.763763,0.0617804,0.763777,0.569391,0.883509,0.807747,0.794143,0.051481,0.996548,0.330493,0.666214,0.676566,0.437363,0.224437,0.722568,0.137559,0.782361,0.284121,0.551092,0.258854,0.326276,0.450476,0.200501,0.856924,0.0981639,0.193272,0.202934,0.919812,0.611309,0.429652,0.590587,0.17491,0.761423,0.632369,0.339287,0.970975,0.265252,0.598266,0.037484,0.821173,0.0347718,0.57216,0.102302,0.942096,0.915043,0.0999579,0.460154,0.369761,0.520675,0.401362,0.603009,0.0426586,0.258075,0.117683,0.649387,0.377445,0.217581,0.982732,0.166296,0.452024,0.53183,0.27754,0.760861,0.914747,0.473805,0.0768193,0.857561,0.188315,0.433774,|0.613948,0.447858,0.504667,0.590373,0.522434,0.749169,0.769525,0.9572,0.123285,0.151888,0.937867,0.330097,0.272741,0.110369,0.0045929,0.0359346,0.104357,0.492891,0.627268,0.495281,0.239827,0.984064,0.910313,0.652902,0.587396,0.214783,0.985546,0.129773,0.640404,0.901789,0.672535,0.0157326,0.536322,0.7331,0.571186,0.103174,0.941463,0.694928,0.442469,0.884207,0.268559,0.484321,0.26701,0.187509,0.766817,0.432072,0.209607,0.154771,0.364228,0.155384,0.954699,0.748358,0.92179,0.918425,0.177708,0.44845,0.865164,0.71718,0.303211,0.2192,0.20467,0.631646,0.26118,0.213632,0.250873,0.919458,0.837286,0.598788,0.312312,0.674864,0.889028,0.78397,0.721898,0.845922,0.350306,0.242381,0.0430121,0.0826619,0.266146,0.82825,0.0349372,0.148777,0.683833,0.458276,0.648401,0.475066,0.589722,0.919465,0.546121,0.599629,0.00226706,0.739998,0.0476912,0.176481,0.336903,0.0887229,0.501993,0.822528,0.462307,0.7709,0.761398,0.476748,0.490593,0.389112,0.872515,0.209846,0.895946,0.780497,0.257467,0.132108,0.535788,0.946761,0.397405,0.25545,0.717569,0.46852,0.837673,0.401225,0.866987,0.680633,0.356461,0.893382,0.153482,0.396193,0.882647,0.893874,0.0343556,0.433872,0.712389,0.286462,0.0139656,0.138973,0.087189,0.182742,0.765494,0.750933,0.174388,0.811413,0.321918,0.90166,0.609035,0.248207,0.545063,0.728342,0.491746,0.342156,0.397918,0.872188,0.526263,0.125417,0.843125,0.411006,0.90112,0.382568,0.499158,0.691825,0.767707,0.2206,0.942727,0.149074,0.29389,0.358853,0.27642,0.0164092,0.6747,0.339927,0.57008,0.986971,0.0820434,0.713409,0.219767,0.565491,0.529412,0.646145,0.911954,0.120938,0.812555,0.256748,0.346743,0.390724,0.371968,0.564806,0.45895,0.0926128,0.932353,0.731209,0.888024,0.191249,0.415346,0.294882,0.141327,0.966079,0.951316,0.663414,0.869189,0.555294,0.463859,0.310183,0.388849,0.195453,0.959665,0.68529,0.176089,0.155829,0.239535,0.563633,0.342832,0.724194,0.532068,0.470924,0.791233,0.916445,0.0126829,0.263013,0.407075,0.0657724,0.904046,0.532686,0.578457,0.349706,0.0892971,0.899953,0.541252,0.270849,0.975453,0.372309,0.0700924,0.662953,0.22134,0.404421,0.66278,0.496355,0.205671,0.116388,0.638722,0.577831,0.705435,0.351156,0.940423,0.663175,0.274156,0.953224,0.547377,0.396024,0.680865,0.0841041,0.0377545,0.661105,0.636877,0.886142,0.31868,0.555062,0.931418,0.456818,0.593895,0.483724,0.527067,0.150467,0.956439,0.529081,0.0964108,0.780159,0.511801,0.708802,0.960527,0.467497,0.678794,0.772184,0.164141,0.347619,0.461286,0.591774,0.897447,0.710635,0.801841,0.897579,0.935765,0.964267,0.670278,0.28459,0.23843,0.470804,0.244479,0.638529,0.709819,0.590034,0.5042,0.358979,0.153591,0.499015,0.270172,0.823582,0.212419,0.450255,0.934654,0.917552,0.563166,0.564541,0.792383,0.100584,0.851213,0.12359,0.504517,0.949777,0.743244,0.0995231,0.351274,0.518309,0.376278,0.202292,0.626854,0.755188,0.941931,0.98571,0.73338,0.998788,0.937384,0.60201,0.411381,0.841324,0.710165,0.687236,0.890505,0.348002,0.966028,0.799705,0.698887,0.263206,0.732375,0.401044,0.375072,0.696354,0.892417,0.45623,0.931648,0.251333,0.883201,0.827185,0.78835,0.779629,0.340111,0.198741,0.634971,0.34533,0.133016,0.971864,0.0752687,0.814008,0.320613,0.391154,0.683859,0.1835,0.336168,0.539077,0.611048,0.928678,0.725083,0.0351157,0.159414,0.0710511,0.816591,0.795639,0.573455,0.0633777,0.187026,0.529273,0.949455,0.916445,0.780582,0.67952,0.803239,0.284203,0.896021,0.961239,0.187642,0.850041,0.778542,0.908237,0.328281,0.563091,0.194607,0.0643799,0.347334,0.827972,0.17985,0.599485,0.921527,0.632151,0.635415,0.388451,0.396584,0.437163,0.772522,0.365707,0.792903,0.0385957,0.686143,0.170426,0.385953,0.0686283,0.152284,0.0269476,0.435373,0.742159,0.904173,0.181621,0.632075,0.626295,0.869715,0.190514,0.618846,0.981642,0.978662,0.37042,0.963795,0.424416,0.874862,0.209975,0.403576,0.063038,0.212618,0.500385,0.650961,0.418563,0.746048,0.252461,0.923431,0.271703,0.815901,0.838214,0.808555,0.0561971,0.872767,0.610357,0.751661,0.751511,0.87308,0.280319,0.241459,0.00835782,0.5878,0.156754,0.87462,0.970215,0.948639,0.213589,0.781517,0.154806,0.288482,0.567242,0.518482,0.523063,0.382637,0.0262836,0.511165,0.742177,0.119107,0.635387,0.378859,0.886961,0.714552,0.609704,0.948486,0.324991,0.744514,0.965741,0.552927,0.520592,0.618136,0.241186,0.826313,0.799802,0.691158,0.101565,0.164385,0.720856,0.435399,0.53849,0.275081,0.532857,0.740891,0.789164,0.953634,0.61064,0.638166,0.755488,0.987648,0.836924,0.711791,0.817876,0.338233,0.839647,0.925005,0.79454,0.791138,0.876394,0.452635,0.376352,0.00449383,0.930281,0.33298,0.649361,0.0818599,0.627269,0.768305,0.645936,0.490111,0.448136,0.788212,0.516275,0.26853,0.334095,0.932842,0.890931,0.400492,0.519785,0.827635,0.882695,0.92661,0.879141,0.663668,0.533898,0.226168,0.0540951,0.655068,0.997309,0.172251,0.662888,0.406876,0.386496,0.178182,0.528918,0.262152,0.220849,0.282172,0.357995,0.0497355,0.1485,0.23044,0.816289,0.254223,0.597145,0.686891,0.882106,0.875859,0.913009,0.471768,0.819682,0.933951,0.039333,0.797739,0.828966,0.594844,0.978583,0.187531,0.974984,0.687926,0.424306,0.634862,0.244505,0.03608,0.277991,0.467685,0.557481,0.122867,0.137944,0.494879,0.170751,0.483028,0.678039,0.1531,0.619271,0.298547,0.666413,0.563158,0.973466,0.264651,0.6019,0.278652,0.482435,0.324596,0.787126,0.323038,0.576234,0.238725,0.714736,0.203764,0.968578,0.964212,0.809424,0.976585,0.376061,0.0995759,0.487678,0.585132,0.554404,0.538569,0.303057,0.883105,0.212665,0.80544,0.826153,0.158412,0.0545716,0.858509,0.956729,0.419467,0.297772,0.373894,0.627864,0.92829,0.363324,0.754821,0.0297535,0.683482,0.560182,0.360764,0.820409,0.121866,0.0869659,0.976916,0.682579,0.101002,0.52621,0.911661,0.508704,0.776745,0.297027,0.355613,0.474867,0.504905,0.386991,0.410805,0.326983,0.775608,0.283309,0.236631,0.675025,0.77295,0.0677928,0.243947,0.710321,0.143655,0.00742972,0.505181,0.247162,0.155311,0.0268017,0.343085,0.763721,0.633788,0.769954,0.923937,0.0486134,0.910328,0.892255,0.990104,0.445103,0.825371,0.646541,0.561408,0.677206,0.109933,0.346787,0.72681,0.024192,0.465625,0.74834,0.609611,0.971856,0.0840651,0.846083,0.498211,0.715204,0.262207,0.383995,0.350053,0.339278,0.395775,0.146775,0.930408,0.489246,0.762253,0.494772,0.230559,0.438556,0.740103,0.66089,0.3335,0.765923,0.561311,0.20148,0.169817,0.151499,0.688557,0.115866,0.24524,0.848726,0.832768,0.837986,0.606856,0.175494,0.497154,0.615527,0.358443,0.401597,0.942103,0.185844,0.916952,0.524074,0.0725873,0.681599,0.887446,0.54204,0.927027,0.354731,0.687186,0.577983,0.575761,0.380935,0.406112,0.987916,0.520251,0.230027,0.286971,0.868892,0.401568,0.322488,0.492237,0.954225,0.36477,0.407762,0.349003,0.0655141,0.783083,0.799571,0.816483,0.575027,0.224476,0.679765,0.870012,0.366135,0.635194,0.40765,0.940663,0.315028,0.757912,0.0275369,0.317051,0.51255,0.168535,0.347882,0.079671,0.134098,0.647894,0.857325,0.929303,0.129297,0.785712,0.869825,0.235018,0.901999,0.505928,0.646874,0.830167,0.62952,0.0694914,0.752576,0.984387,0.803408,0.45421,0.554039,0.44026,0.531299,0.881017,0.281209,0.704768,0.697548,0.430918,0.822783,0.873212,0.162202,0.404815,0.127571,0.510386,0.613798,0.102302,0.157949,0.460426,0.878574,0.0444779,0.0297672,0.73464,0.203339,0.234123,0.244419,0.73305,0.234464,0.524676,0.409075,0.191227,0.33836,0.405877,0.873089,0.100892,0.526439,0.752882,0.119246,0.435488,0.306529,0.204161,0.515427,0.548021,0.794632,0.416021,0.401778,0.741909,0.0362251,0.0350556,0.481129,0.970919,0.788851,0.242805,0.598495,0.0402765,0.209529,0.654719,0.458678,0.604663,0.644013,0.987582,0.114268,0.240905,0.210968,0.476376,0.564487,0.630572,0.957505,0.831407,0.073381,0.0129639,0.947982,0.878176,0.822507,0.796245,0.940977,0.286613,0.614542,0.940827,0.176293,0.705313,0.627251,0.124002,0.330739,0.747519,0.0861982,0.342522,0.211324,0.687912,0.926044,0.872189,0.0745341,0.36161,0.405097,0.33059,0.595846,0.0422325,0.675316,0.0312722,0.525423,0.00792915,0.562139,0.328002,0.917942,0.207621,0.689336,0.0173947,0.43043,0.596588,0.854045,0.335229,0.349813,0.305537,0.720078,0.0497816,0.898749,0.878644,0.999898,0.0203338,0.567319,0.772176,0.0831079,0.543037,0.448178,0.0301794,0.0539191,0.0297109,0.775926,0.24813,0.344183,0.365277,0.198807,0.873961,0.358045,0.583821,0.552206,0.75993,0.652159,0.934892,0.135955,0.811377,0.782374,0.387932,0.818977,0.492898,0.237367,0.965328,0.369994,0.764768,0.273111,0.657913,0.662614,0.419869,0.742168,0.234871,0.406889,0.63934,0.470434,0.278435,0.52377,0.0408247,0.465856,0.576972,0.488327,0.409124,0.854833,0.363464,0.0799488,0.908614,0.552266,0.725548,0.160695,0.829046,0.686934,0.512918,0.644861,0.71475,0.861226,0.341778,0.895018,0.880353,0.136968,0.134592,0.0713392,0.952591,0.786253,0.663801,0.835413,0.755497,0.278332,0.533721,0.283419,0.237875,0.58501,0.307442,0.0691653,0.1981,0.88585,0.284292,0.139152,0.161222,0.628886,0.915391,0.196174,0.34662,0.0666419,0.290182,0.329995,0.187761,0.452818,0.1511,0.384639,0.696479,0.314256,0.194403,0.240039,0.674153,0.192331,0.290335,0.150484,0.148287,0.622744,0.786008,0.955017,0.685458,0.950516,0.265803,0.00564009,0.752689,0.0974935,|0.365086,0.00483298,0.668816,0.738763,0.538931,0.861999,0.15516,0.472479,0.62247,0.437132,0.442834,0.60996,0.79987,0.521455,0.141,0.322323,0.243964,0.796973,0.426471,0.844596,0.597243,0.446065,0.022706,0.760192,0.522229,0.774967,0.584805,0.211868,0.765732,0.957351,0.872398,0.184963,0.878324,0.137035,0.674825,0.984646,0.813386,0.475507,0.367573,0.695072,0.662829,0.993245,0.50196,0.79551,0.35461,0.669394,0.879358,0.0162687,0.141262,0.929582,0.266136,0.281909,0.133296,0.0331962,0.615505,0.560373,0.630063,0.908827,0.0964244,0.0338425,0.942818,0.899761,0.216898,0.184635,0.484062,0.285582,0.774499,0.815175,0.00184852,0.0486897,0.130732,0.432244,0.927378,0.756845,0.0568456,0.0623226,0.564591,0.507746,0.369654,0.593359,0.0170082,0.719636,0.631644,0.959033,0.837276,0.535407,0.379703,0.187265,0.0460825,0.793956,0.7504,0.0337279,0.395096,0.0943025,0.87943,0.754583,0.940445,0.323809,0.393975,0.97755,0.620413,0.551037,0.613878,0.971635,0.690874,0.531551,0.177737,0.166515,0.779637,0.851263,0.559918,0.532602,0.0456143,0.654133,0.315579,0.64743,0.786188,0.416424,0.663966,0.125931,0.0231943,0.247357,0.4769,0.463317,0.525252,0.204964,0.84874,0.443437,0.614694,0.544051,0.482424,0.780425,0.785,0.985669,0.850912,0.324396,0.849635,0.883624,0.695245,0.610315,0.775244,0.222139,0.228751,0.868592,0.218542,0.811895,0.352876,0.711265,0.963773,0.655738,0.23477,0.0746685,0.32241,0.509109,0.7131,0.663623,0.652251,0.498324,0.636349,0.201755,0.438544,0.348881,0.702988,0.13244,0.210316,0.697185,0.473508,0.410937,0.0284309,0.394436,0.203004,0.076573,0.62156,0.366305,0.189879,0.255996,0.312686,0.183522,0.726466,0.930178,0.729972,0.748445,0.101306,0.149047,0.0867819,0.953742,0.381235,0.905948,0.14309,0.228195,0.104579,0.935214,0.0585431,0.390216,0.339713,0.470051,0.285772,0.631668,0.282907,0.787738,0.0292957,0.555506,0.20034,0.584527,0.939323,0.459008,0.121087,0.416575,0.596672,0.294267,0.279152,0.783937,0.615972,0.287455,0.900706,0.112563,0.93371,0.141281,0.104086,0.693149,0.339349,0.817135,0.977352,0.968511,0.721238,0.441956,0.205389,0.758774,0.329964,0.834932,0.888521,0.16187,0.912643,0.0231311,0.918741,0.0105516,0.920236,0.835728,0.471053,0.796697,0.836587,0.408645,0.676745,0.565672,0.552115,0.593153,0.124625,0.10501,0.805506,0.662494,0.796975,0.790315,0.591162,0.765923,0.287828,0.0439001,0.169451,0.922707,0.207338,0.198023,0.701183,0.41554,0.310785,0.654237,0.869921,0.905988,0.451318,0.158319,0.792492,0.266842,0.505585,0.312279,0.540698,0.39114,0.758786,0.491551,0.124065,0.725374,0.0720723,0.525836,0.857821,0.128848,0.234557,0.806408,0.76434,0.972257,0.312347,0.00612146,0.233202,0.402367,0.429625,0.132119,0.395913,0.285538,0.981618,0.736164,0.389244,0.394959,0.669589,0.916546,0.891052,0.0258911,0.749637,0.813174,0.799393,0.826755,0.353801,0.453936,0.205245,0.296355,0.404618,0.262247,0.633151,0.0737505,0.89807,0.493876,0.188865,0.631283,0.226857,0.262347,0.784861,0.127963,0.157665,0.283751,0.75605,0.249792,0.787065,0.919359,0.352327,0.437574,0.832703,0.502804,0.556111,0.812416,0.689286,0.732793,0.708602,0.68086,0.776836,0.0691235,0.0988964,0.127232,0.0995009,0.643227,0.309651,0.884795,0.999387,0.53322,0.26706,0.0861577,0.259735,0.165517,0.487638,0.072298,0.4091,0.0349782,0.877101,0.726529,0.82357,0.195443,0.990471,0.219469,0.643059,0.205872,0.595113,0.820453,0.290223,0.45374,0.715858,0.216117,0.0741416,0.645326,0.00709617,0.646078,0.49174,0.0699409,0.952317,0.181683,0.776179,0.144112,0.204381,0.925352,0.988118,0.230346,0.0545022,0.787403,0.357603,0.598977,0.0851635,0.714036,0.285247,0.724696,0.450303,0.430208,0.158515,0.969678,0.806855,0.291831,0.427323,0.637093,0.0324109,0.489474,0.0791664,0.0526599,0.950023,0.0483254,0.359271,0.996077,0.407151,0.814403,0.632854,0.664203,0.163164,0.264624,0.701405,0.654449,0.039216,0.994851,0.383983,0.196073,0.282703,0.743497,0.272368,0.258185,0.260322,0.628962,0.140981,0.0560759,0.854304,0.900627,0.905263,0.0958585,0.570383,0.13302,0.172601,0.133126,0.911834,0.331045,0.129181,0.471548,0.261738,0.313123,0.995282,0.161366,0.440019,0.010412,0.379554,0.54424,0.592154,0.632661,0.340487,0.0351622,0.224466,0.579593,0.856951,0.370252,0.941969,0.41201,0.629032,0.352338,0.514698,0.861266,0.0492832,0.232381,0.0141521,0.317613,0.950508,0.839636,0.40338,0.163073,0.19535,0.64085,0.0686123,0.922612,0.272296,0.0434887,0.372657,0.680658,0.540726,0.718884,0.644505,0.305347,0.790285,0.77145,0.739429,0.50695,0.301191,0.581911,0.564853,0.740282,0.0239058,0.753131,0.58351,0.0188264,0.541139,0.429792,0.676296,0.813366,0.467066,0.839153,0.409937,0.2276,0.371136,0.107857,0.0756957,0.714266,0.365389,0.237164,0.0987513,0.372969,0.83303,0.97057,0.53376,0.715271,0.732828,0.825445,0.886176,0.54279,0.779119,0.142285,0.188983,0.237987,0.861628,0.540248,0.111359,0.814902,0.411089,0.236385,0.0890841,0.0868357,0.242422,0.962775,0.149275,0.492127,0.774833,0.833628,0.106458,0.0734419,0.661164,0.837963,0.283357,0.910123,0.737906,0.583381,0.092173,0.530944,0.943219,0.949266,0.666781,0.547089,0.46905,0.0518087,0.976754,0.137215,0.345453,0.33458,0.420669,0.235727,0.555832,0.110189,0.60048,0.701688,0.35097,0.124617,0.453701,0.95287,0.641019,0.984779,0.0197142,0.188317,0.909782,0.133218,0.261182,0.855897,0.801897,0.956781,0.063083,0.513042,0.982255,0.684283,0.0910961,0.135725,0.548096,0.462628,0.588209,0.807754,0.318015,0.169903,0.674364,0.724831,0.30401,0.57927,0.292923,0.148468,0.0775738,0.994293,0.215138,0.184562,0.70401,0.680392,0.423893,0.944728,0.385188,0.988689,0.280286,0.587785,0.297169,0.363053,0.905918,0.354262,0.226511,0.667795,0.560751,0.854055,0.593184,0.995476,0.546353,0.92027,0.300819,0.291307,0.118091,0.343478,0.157004,0.172369,0.377229,0.368658,0.404762,0.172337,0.804008,0.837458,0.00767577,0.87013,0.113974,0.832237,0.87955,0.00908148,0.232141,0.953535,0.251024,0.705945,0.939885,0.634241,0.343152,0.933278,0.418333,0.412027,0.24575,0.10135,0.605081,0.539848,0.283617,0.911713,0.170063,0.182242,0.163428,0.386278,0.706825,0.262436,0.443075,0.14655,0.241577,0.76139,0.612161,0.480686,0.157409,0.562038,0.787008,0.788263,0.950892,0.615466,0.314278,0.831341,0.99557,0.492393,0.371419,0.0461094,0.154603,0.209709,0.579284,0.779853,0.11498,0.689759,0.805188,0.732657,0.237036,0.878744,0.715782,0.49217,0.847919,0.167387,0.0507168,0.00287497,0.523742,0.85483,0.612482,0.935782,0.571227,0.538572,0.757713,0.586714,0.806673,0.749669,0.243499,0.21181,0.175984,0.703717,0.470634,0.0612358,0.337554,0.441235,0.366861,0.887602,0.0466759,0.604716,0.264248,0.611621,0.436883,0.254711,0.924881,0.242264,0.382354,0.375185,0.446926,0.0313575,0.0924206,0.928502,0.599569,0.00897217,0.931721,0.857763,0.362928,0.268334,0.779341,0.714619,0.0435212,0.830803,0.295098,0.995601,0.530029,0.401783,0.514388,0.837174,0.828256,0.566695,0.292132,0.208103,0.207983,0.822339,0.592704,0.408631,0.465913,0.628093,0.725319,0.523826,0.0816449,0.294711,0.646327,0.2384,0.730803,0.613709,0.0149603,0.28536,0.944818,0.698692,0.197812,0.0980427,0.28179,0.42986,0.609834,0.260587,0.468928,0.990558,0.727401,0.00301844,0.16571,0.609953,0.647589,0.104774,0.598235,0.941564,0.452177,0.373899,0.406509,0.178964,0.307313,0.812281,0.670633,0.835481,0.293148,0.392748,0.67208,0.311391,0.537304,0.00609952,0.307339,0.516092,0.664417,0.517471,0.788452,0.498188,0.928377,0.289085,0.219868,0.572531,0.677237,0.416478,0.0284652,0.498332,0.183722,0.995916,0.495623,0.259329,0.455946,0.895115,0.373003,0.615048,0.0578737,0.0687153,0.530719,0.747509,0.333456,0.664887,0.419833,0.220363,0.811934,0.526109,0.928729,0.226529,0.186853,0.395186,0.00215852,0.407976,0.579431,0.79779,0.180464,0.015856,0.761894,0.253141,0.130097,0.796999,0.259282,0.669296,0.196764,0.110128,0.242373,0.372763,0.0676705,0.0540516,0.901237,0.254781,0.860363,0.862195,0.0923327,0.725495,0.343193,0.705839,0.192275,0.017181,0.132935,0.019577,0.271923,0.950612,0.182437,0.0327969,0.429134,0.42568,0.3141,0.535116,0.884793,0.646126,0.789851,0.628657,0.972638,0.756084,0.40102,0.325325,0.982966,0.114056,0.744422,0.64878,0.968436,0.115883,0.524217,0.129209,0.976439,0.782121,0.909616,0.352793,0.425661,0.253263,0.30408,0.112103,0.828814,0.096124,0.478959,0.378378,0.538345,0.389338,0.512698,0.8415,0.830859,0.498439,0.169145,0.722051,0.766145,0.627165,0.485717,0.234113,0.223821,0.902782,0.532413,0.621975,0.859608,0.554343,0.790479,0.404723,0.362291,0.46967,0.558401,0.846977,0.823719,0.628825,0.722585,0.576794,0.586967,0.348882,0.785116,0.535434,0.65306,0.81043,0.143532,0.255244,0.682714,0.202843,0.471977,0.702135,0.994392,0.248924,0.442251,0.366159,0.947874,0.268658,0.590532,0.00468343,0.029874,0.704787,0.607447,0.199078,0.22736,0.838206,0.230764,0.269573,0.794392,0.830755,0.0193269,0.0856592,0.402929,0.0583282,0.442713,0.242172,0.710183,0.58123,0.968895,0.965384,0.0363452,0.824686,0.630274,0.0584533,0.721241,0.0421502,0.434486,0.777486,0.994045,0.823166,0.537503,0.734855,0.123808,0.568829,0.851219,0.606314,0.551345,0.801936,0.210455,0.443422,0.140112,0.661129,0.0551074,0.86341,0.563982,0.701157,0.779347,0.328457,0.185354,0.983728,0.176459,0.928593,0.517437,0.404461,0.0213985,0.0256463,|0.970071,0.38046,0.670038,0.177822,0.7042,0.824772,0.199847,0.254064,0.554162,0.105549,0.179869,0.764042,0.755809,0.842156,0.366901,0.969355,0.351381,0.459831,0.133243,0.399992,0.777667,0.868614,0.724224,0.505079,0.504311,0.902833,0.509569,0.569826,0.564597,0.760142,0.0780029,0.188963,0.560822,0.562347,0.87288,0.969613,0.633398,0.00477052,0.329004,0.595537,0.127365,0.715156,0.0729067,0.369458,0.892711,0.509791,0.836915,0.227963,0.448085,0.482643,0.7231,0.240417,0.847874,0.704832,0.849282,0.914676,0.981111,0.740622,0.58022,0.668326,0.527183,0.12952,0.378837,0.504936,0.1264,0.164373,0.979053,0.837716,0.210584,0.928647,0.976445,0.841867,0.338946,0.0780276,0.783363,0.549139,0.659464,0.409357,0.615093,0.818182,0.20934,0.599715,0.323588,0.561792,0.959784,0.0880455,0.320591,0.630313,0.335246,0.222156,0.934181,0.809548,0.976094,0.123102,0.983845,0.107987,0.999204,0.0907198,0.149256,0.863199,0.221806,0.54557,0.122122,0.816399,0.820771,0.341778,0.000895917,0.0033322,0.611476,0.522815,0.822764,0.664401,0.740766,0.172979,0.777561,0.52728,0.935429,0.625998,0.78447,0.627581,0.320578,0.758401,0.412727,0.446862,0.50062,0.171497,0.0569429,0.10922,0.268826,0.528242,0.531086,0.125439,0.784642,0.0426064,0.798292,0.925434,0.83956,0.167558,0.76961,0.587945,0.894238,0.637143,0.344663,0.283433,0.843207,0.48617,0.9898,0.716364,0.0225138,0.326072,0.769747,0.565679,0.73245,0.857167,0.697347,0.0992931,0.124749,0.127897,0.424571,0.834486,0.166397,0.126947,0.654782,0.289941,0.556282,0.0280679,0.924898,0.199891,0.258068,0.938286,0.392544,0.964274,0.849236,0.440265,0.807377,0.190197,0.731431,0.253941,0.0287794,0.143953,0.11243,0.174291,0.984822,0.0281924,0.872848,0.109976,0.921495,0.829195,0.947318,0.00237405,0.847436,0.554333,0.820157,0.67458,0.963809,0.756226,0.319598,0.114434,0.796521,0.574941,0.538994,0.863026,0.312932,0.00471532,0.968633,0.894911,0.0397972,0.27512,0.726374,0.921524,0.970471,0.286062,0.687515,0.758041,0.0240408,0.375415,0.924946,0.496234,0.109057,0.652298,0.491646,0.142251,0.637018,0.44992,0.831909,0.360044,0.66347,0.72991,0.44941,0.306539,0.938311,0.515768,0.0206164,0.535309,0.793898,0.126076,0.487109,0.88535,0.870986,0.122372,0.666135,0.261946,0.897095,0.10304,0.983356,0.254228,0.438094,0.254456,0.545319,0.740918,0.465403,0.0604436,0.0659639,0.219227,0.458906,0.490572,0.644472,0.040176,0.362099,0.165835,0.540453,0.119378,0.918561,0.915577,0.487381,0.620344,0.888857,0.828716,0.775035,0.675601,0.750856,0.833562,0.971592,0.668891,0.997391,0.789093,0.677289,0.681411,0.670868,0.730837,0.529795,0.500588,0.264246,0.77278,0.921035,0.974516,0.870785,0.434251,0.739084,0.615235,0.758598,0.952961,0.644913,0.668184,0.581278,0.208928,0.530349,0.980553,0.107364,0.299195,0.250133,0.917746,0.26497,0.475669,0.85956,0.75558,0.925799,0.118381,0.85947,0.412129,0.22372,0.351384,0.507058,0.928679,0.510213,0.601987,0.497134,0.546131,0.213805,0.936752,0.929197,0.831706,0.19287,0.451158,0.78007,0.876865,0.859201,0.881966,0.7975,0.0530131,0.206504,0.174036,0.920597,0.972208,0.17461,0.828854,0.0674519,0.139471,0.492173,0.579088,0.659043,0.866303,0.249955,0.38118,0.983637,0.462825,0.906132,0.571654,0.329753,0.786689,0.282531,0.367423,0.311349,0.169939,0.444102,0.044283,0.458682,0.938605,0.751564,0.936045,0.219593,0.927001,0.123628,0.38859,0.40113,0.505237,0.797496,0.811662,0.552127,0.456222,0.126667,0.191846,0.784792,0.266035,0.166547,0.556363,0.107771,0.331145,0.786556,0.837932,0.390725,0.440593,0.580952,0.452317,0.58384,0.838825,0.780476,0.296924,0.238011,0.772724,0.243189,0.460938,0.262659,0.808507,0.161003,0.25633,0.438284,0.925046,0.931057,0.497709,0.711175,0.0683259,0.270993,0.232739,0.117362,0.599439,0.961566,0.132827,0.963274,0.652749,0.778354,0.0878983,0.993462,0.762676,0.921042,0.670307,0.607771,0.317989,0.333093,0.473932,0.789655,0.527707,0.77109,0.270422,0.908204,0.0211757,0.0752944,0.296778,0.818736,0.525622,0.722779,0.444203,0.579719,0.00912654,0.598913,0.453739,0.587852,0.537745,0.153108,0.388571,0.7014,0.215392,0.811503,0.0871277,0.507634,0.502966,0.600039,0.660255,0.582733,0.909071,0.432632,0.178116,0.769261,0.433138,0.0272986,0.96848,0.957739,0.00753587,0.356939,0.772984,0.221705,0.563408,0.346961,0.613631,0.193782,0.89109,0.877967,0.822135,0.165573,0.176254,0.864692,0.549192,0.164755,0.635031,0.115488,0.217196,0.638419,0.218158,0.0510553,0.064022,0.896729,0.806031,0.856025,0.343735,0.163838,0.220918,0.181034,0.868907,0.968799,0.912063,0.0537395,0.66748,0.696452,0.419191,0.451759,0.491285,0.33247,0.121354,0.438167,0.705766,0.260515,0.699731,0.920429,0.380575,0.716173,0.912754,0.0083549,0.257774,0.880754,0.936014,0.789738,0.941246,0.281721,0.0126085,0.398804,0.671601,0.0858306,0.332937,0.617976,0.434022,0.629963,0.408289,0.0410882,0.3403,0.099106,0.501306,0.841851,0.896852,0.760225,0.729973,0.552618,0.45154,0.860753,0.349424,0.0696697,0.233941,0.265724,0.48092,0.643768,0.886525,0.473592,0.984468,0.627762,0.44881,0.11167,0.216349,0.664154,0.939447,0.131525,0.542483,0.0140301,0.608973,0.263525,0.857975,0.384703,0.913905,0.770301,0.558467,0.13577,0.0229374,0.239992,0.535281,0.125907,0.0501368,0.292122,0.00714344,0.588714,0.14795,0.0269122,0.323574,0.84585,0.950458,0.117606,0.977812,0.406987,0.164456,0.809543,0.122669,0.687495,0.583293,0.912427,0.774503,0.0565631,0.946808,0.844362,0.292424,0.302717,0.518697,0.232942,0.26505,0.525016,0.439825,0.291968,0.239312,0.125559,0.850679,0.437141,0.792823,0.51659,0.916903,0.394172,0.58644,0.82674,0.273315,0.578493,0.977234,0.154404,0.198858,0.360552,0.515308,0.384672,0.769509,0.250148,0.266812,0.949289,0.648583,0.829454,0.936345,0.887278,0.0383638,0.294286,0.355697,0.346317,0.997276,0.573915,0.787291,0.728972,0.224203,0.523,0.981783,0.92386,0.847917,0.561002,0.322177,0.844385,0.536504,0.0684353,0.59881,0.720583,0.229535,0.323853,0.34407,0.591345,0.478277,0.837623,0.927701,0.120487,0.923285,0.0216811,0.294042,0.390415,0.114849,0.494909,0.27724,0.696793,0.767561,0.360897,0.912272,0.166321,0.200244,0.0876675,0.470154,0.376209,0.361029,0.422621,0.23587,0.538472,0.0585471,0.215031,0.0388033,0.561228,0.559343,0.781238,0.436554,0.105206,0.589801,0.76109,0.0599933,0.784199,0.776883,0.81297,0.304442,0.668901,0.619623,0.567532,0.429131,0.623674,0.606126,0.529364,0.355804,0.158138,0.755776,0.761597,0.124952,0.864554,0.167342,0.315976,0.853364,0.101005,0.392849,0.859098,0.753695,0.618219,0.855476,0.405021,0.10265,0.795529,0.218412,0.144851,0.854752,0.00429666,0.904041,0.205326,0.0941185,0.188591,0.134457,0.177359,0.90961,0.181368,0.59538,0.538092,0.527614,0.784646,0.224323,0.0836495,0.58472,0.0421493,0.409361,0.852225,0.557811,0.76193,0.148719,0.142207,0.9399,0.330515,0.448019,0.17948,0.346114,0.292429,0.82854,0.637973,0.668624,0.525203,0.983799,0.212594,0.0784072,0.526368,0.689574,0.366088,0.619648,0.932593,0.0417675,0.459604,0.792048,0.566018,0.139183,0.436785,0.294322,0.680304,0.460281,0.434791,0.323542,0.641321,0.853256,0.571585,0.391283,0.769276,0.735023,0.32387,0.901328,0.472799,0.463244,0.0598161,0.324493,0.599801,0.341987,0.883067,0.238644,0.627966,0.40207,0.629469,0.667057,0.436412,0.363497,0.24408,0.972947,0.121467,0.745781,0.867117,0.242158,0.719984,0.14964,0.0739212,0.228739,0.229429,0.513426,0.753812,0.754148,0.339115,0.867912,0.697109,0.088546,0.314651,0.58361,0.0165013,0.410081,0.788327,0.954129,0.650906,0.822801,0.208753,0.842149,0.0326536,0.118418,0.324298,0.993247,0.281972,0.330946,0.816329,0.752491,0.237024,0.733616,0.207033,0.106136,0.00243902,0.768142,0.0507259,0.0692418,0.0112878,0.289133,0.996285,0.31535,0.96528,0.0886796,0.275199,0.737514,0.697769,0.986573,0.762863,0.395927,0.47672,0.307204,0.28534,0.331881,0.0374734,0.259506,0.00144386,0.351263,0.0151882,0.028071,0.251438,0.195655,0.4364,0.0234286,0.0757874,0.103071,0.963166,0.483894,0.472703,0.503792,0.639519,0.837267,0.473064,0.528794,0.300105,0.137556,0.145518,0.176387,0.553614,0.0901327,0.931878,0.5284,0.412464,0.174814,0.303545,0.933266,0.933405,0.938043,0.27446,0.740548,0.133848,0.156392,0.907092,0.350661,0.656497,0.558973,0.134166,0.792955,0.896504,0.909863,0.544697,0.954273,0.308449,0.0910288,0.301664,0.660874,0.984861,0.66273,0.269984,0.905027,0.0918898,0.573835,0.0954682,0.961559,0.348617,0.22036,0.8258,0.310255,0.744643,0.955799,0.72893,0.216435,0.941717,0.455628,0.0099327,0.273955,0.587478,0.28227,0.22615,0.229519,0.810652,0.369588,0.221102,0.859319,0.463097,0.448,0.757261,0.823709,0.95614,0.862057,0.585079,0.24262,0.539034,0.0889543,0.710092,0.880037,0.468541,0.65515,0.503844,0.354588,0.115168,0.00363934,0.205528,0.633871,0.366225,0.330594,0.428957,0.243512,0.596696,0.872173,0.628454,0.425436,0.821511,0.623695,0.105245,0.45379,0.979904,0.494173,0.54318,0.981496,0.742661,0.252632,0.154311,0.802368,0.580555,0.691139,0.17102,0.98992,0.473905,0.818885,0.154692,0.534683,0.587859,0.552064,0.939667,0.823105,0.82377,0.137522,0.19024,0.431298,0.0981063,0.129672,0.497538,0.263219,0.195384,0.508639,0.811621,0.83618,0.985549,0.55092,0.520382,0.894229,0.715931,0.969853,0.555507,0.813661,0.571773,0.751161,0.882423,0.459199,|0.155652,0.438409,0.685842,0.913567,0.526996,0.863311,0.275004,0.890472,0.54181,0.537431,0.553095,0.824555,0.322272,0.938174,0.718655,0.284313,0.214489,0.618672,0.197426,0.439397,0.306955,0.873458,0.307315,0.3406,0.739471,0.799912,0.355315,0.751089,0.0870125,0.806298,0.885565,0.376016,0.524978,0.941042,0.812066,0.877479,0.659088,0.63518,0.772646,0.591469,0.0431261,0.444547,0.613036,0.283291,0.70779,0.495041,0.0531289,0.681987,0.715745,0.903326,0.975108,0.779441,0.432492,0.891995,0.256473,0.681809,0.253973,0.164666,0.513322,0.504687,0.464654,0.454383,0.621121,0.0165592,0.790425,0.660622,0.930345,0.427684,0.0678506,0.114374,0.0723747,0.221195,0.942511,0.817767,0.217131,0.891869,0.128973,0.266408,0.761899,0.905817,0.298238,0.0365077,0.949409,0.584996,0.028243,0.303475,0.434276,0.961056,0.0035516,0.0469278,0.498808,0.876157,0.0837286,0.780759,0.0488521,0.854214,0.30445,0.390772,0.664106,0.254472,0.859799,0.22925,0.742766,0.238832,0.464498,0.8852,0.686897,0.648522,0.497087,0.234829,0.81215,0.889394,0.669427,0.282242,0.494168,0.28066,0.0249803,0.0919296,0.586984,0.519369,0.710708,0.260979,0.624292,0.708868,0.288688,0.272153,0.793764,0.671458,0.421238,0.578973,0.822739,0.537514,0.705561,0.537435,0.460827,0.287023,0.345845,0.625216,0.799251,0.388739,0.385565,0.555028,0.496321,0.115332,0.253469,0.614359,0.514057,0.679643,0.945051,0.177708,0.554916,0.0745555,0.288281,0.436817,0.0123679,0.0174577,0.642262,0.847682,0.945154,0.949975,0.605018,0.830945,0.653456,0.788799,0.454275,0.648424,0.90344,0.540811,0.14396,0.314725,0.452462,0.928564,0.85142,0.514821,0.327595,0.446007,0.121932,0.545289,0.787428,0.643938,0.422766,0.558641,0.0539989,0.209711,0.215288,0.765755,0.148401,0.521276,0.696448,0.317201,0.74972,0.0257653,0.023939,0.687154,0.22084,0.582188,0.135783,0.828157,0.785853,0.289479,0.815779,0.833229,0.157964,0.244608,0.63856,0.0938911,0.0456095,0.78623,0.837182,0.910912,0.963224,0.843695,0.358915,0.922035,0.269383,0.915575,0.816292,0.252313,0.526216,0.789507,0.363209,0.272675,0.627381,0.072247,0.596963,0.0267061,0.311063,0.301641,0.623907,0.0259575,0.069795,0.709502,0.776258,0.315476,0.104753,0.696538,0.179086,0.660056,0.401805,0.459552,0.684046,0.0179485,0.953079,0.062151,0.118674,0.265041,0.789314,0.491736,0.524076,0.714085,0.672902,0.697893,0.56052,0.472439,0.542316,0.779198,0.360577,0.4377,0.501908,0.403816,0.484297,0.95586,0.902328,0.191111,0.582116,0.610246,0.920962,0.8427,0.979005,0.731333,0.803191,0.919714,0.00772494,0.974465,0.738976,0.885324,0.470633,0.36826,0.251681,0.272411,0.617442,0.630959,0.543562,0.143967,0.112159,0.550115,0.642868,0.0327787,0.576627,0.812066,0.0400808,0.0992979,0.0727084,0.501061,0.834489,0.138633,0.579279,0.377842,0.901709,0.180806,0.643221,0.527971,0.538934,0.157405,0.24987,0.136332,0.515523,0.42798,0.471077,0.376095,0.778432,0.459616,0.526693,0.674693,0.699715,0.534393,0.563731,0.21207,0.488989,0.426069,0.62568,0.200303,0.866257,0.510059,0.825887,0.544748,0.424951,0.654646,0.277251,0.365411,0.25371,0.830627,0.329974,0.612348,0.695233,0.996676,0.0283934,0.710617,0.143553,0.956437,0.0376346,0.77485,0.41383,0.0291898,0.051256,0.850609,0.145921,0.801342,0.996975,0.130449,0.349974,0.41403,0.467165,0.0600818,0.715765,0.267316,0.5483,0.568302,0.679599,0.665984,0.878711,0.178844,0.218501,0.341222,0.995708,0.801752,0.92288,0.128702,0.352622,0.0244216,0.830951,0.799456,0.267181,0.183486,0.946006,0.130725,0.396021,0.185689,0.500048,0.149358,0.910102,0.355396,0.244572,0.467191,0.0534799,0.435098,0.713956,0.567106,0.92755,0.293571,0.289707,0.362211,0.86522,0.861367,0.504497,0.595142,0.776915,0.832309,0.738282,0.220349,0.337729,0.60268,0.750042,0.831157,0.704184,0.143625,0.940558,0.68434,0.670728,0.861796,0.00604987,0.429304,0.427447,0.299777,0.270985,0.549527,0.14432,0.00701982,0.628308,0.230943,0.587164,0.632778,0.318769,0.526785,0.715324,0.418733,0.303624,0.244189,0.928593,0.18324,0.578692,0.892297,0.776606,0.165942,0.52546,0.828038,0.571329,0.847252,0.996249,0.38951,0.664373,0.597901,0.856314,0.924479,0.983783,0.0298476,0.553436,0.597397,0.657233,0.644166,0.40236,0.644375,0.533506,0.619458,0.860604,0.641287,0.057314,0.683894,0.549638,0.204327,0.0894889,0.0703543,0.24905,0.444749,0.451457,0.342067,0.160476,0.761132,0.944478,0.553405,0.656989,0.0324686,0.120904,0.755338,0.0246511,0.358121,0.789389,0.134922,0.733289,0.884688,0.197983,0.717474,0.558073,0.139133,0.43431,0.843036,0.697718,0.453609,0.0266784,0.929331,0.245984,0.438487,0.237745,0.68806,0.938947,0.860978,0.846228,0.363759,0.738398,0.292729,0.090101,0.704218,0.840773,0.514249,0.453471,0.448211,0.0265655,0.233585,0.293061,0.477327,0.716646,0.736244,0.897868,0.749402,0.524688,0.271034,0.945331,0.131731,0.177067,0.444888,0.0319245,0.0925545,0.621199,0.0366447,0.0193592,0.0201269,0.333005,0.822322,0.230648,0.826857,0.629874,0.0922598,0.654369,0.179543,0.274592,0.7714,0.974173,0.770258,0.355214,0.595189,0.451333,0.626901,0.0917979,0.968328,0.453843,0.727212,0.816785,0.762738,0.692789,0.0375937,0.46632,0.19982,0.525758,0.515553,0.451374,0.71405,0.920565,0.61524,0.881079,0.248814,0.243026,0.737253,0.868132,0.481615,0.857953,0.517433,0.388037,0.462659,0.812205,0.455641,0.131317,0.601595,0.468268,0.950154,0.306104,0.508484,0.171914,0.733306,0.587808,0.0309611,0.608057,0.545766,0.239133,0.442054,0.704258,0.527133,0.677993,0.668109,0.225896,0.154487,0.680808,0.221017,0.527771,0.581146,0.00869387,0.6756,0.218099,0.113044,0.633308,0.96911,0.155034,0.795463,0.666544,0.512648,0.97531,0.726166,0.827606,0.467998,0.419864,0.00746417,0.66802,0.606473,0.659942,0.886913,0.502069,0.828779,0.46017,0.511561,0.712723,0.671532,0.771654,0.559266,0.0812774,0.24154,0.627843,0.776101,0.632622,0.0315678,0.720214,0.0349428,0.0662386,0.538993,0.194156,0.617942,0.258418,0.513083,0.051865,0.915771,0.434851,0.691983,0.683926,0.803852,0.497514,0.57745,0.515958,0.733584,0.576689,0.831018,0.471847,0.0209462,0.531448,0.276792,0.836157,0.359786,0.0621479,0.562668,0.502656,0.794314,0.886042,0.239308,0.312475,0.40581,0.892495,0.827645,0.334274,0.142262,0.702951,0.850723,0.797039,0.474923,0.428387,0.657429,0.845162,0.205881,0.20226,0.25293,0.579499,0.37109,0.00343281,0.448731,0.513744,0.735474,0.178835,0.334901,0.244674,0.245043,0.227114,0.598824,0.626633,0.0521836,0.783564,0.772068,0.612885,0.976572,0.623981,0.60074,0.933507,0.806435,0.0170748,0.568217,0.682913,0.503038,0.710263,0.243425,0.154627,0.0327431,0.630347,0.897155,0.298127,0.435732,0.822682,0.0100881,0.0814937,0.332233,0.0142013,0.688068,0.0388332,0.505249,0.852833,0.819944,0.753996,0.447052,0.293739,0.466282,0.77564,0.189395,0.972829,0.139675,0.65328,0.0305816,0.389534,0.761701,0.540489,0.240542,0.139781,0.496191,0.406178,0.00721818,0.620544,0.804793,0.339726,0.468715,0.33198,0.501155,0.589333,0.124499,0.792575,0.79454,0.4561,0.330725,0.0547988,0.84384,0.995802,0.959343,0.975052,0.769542,0.49134,0.632251,0.210092,0.468056,0.482235,0.137081,0.309369,0.82869,0.919209,0.428134,0.0835882,0.902616,0.803547,0.737974,0.603535,0.758747,0.322247,0.450189,0.335173,0.100673,0.0413231,0.589153,0.570175,0.549937,0.92381,0.338994,0.972107,0.105163,0.226374,0.897195,0.0617741,0.871396,0.990818,0.842079,0.188855,0.102928,0.489014,0.883437,0.596241,0.35381,0.321693,0.395456,0.514829,0.989601,0.558667,0.61062,0.279953,0.908497,0.147291,0.784698,0.533534,0.255443,0.384882,0.614421,0.0718985,0.449108,0.666604,0.0950252,0.857015,0.290374,0.330514,0.596827,0.525858,0.854526,0.786588,0.354158,0.17151,0.0345296,0.693603,0.3876,0.203312,0.539942,0.0262035,0.963325,0.731274,0.249573,0.599237,0.014294,0.918811,0.071305,0.753993,0.0521318,0.305503,0.294374,0.945949,0.782552,0.847345,0.4524,0.742735,0.607715,0.0788252,0.196904,0.816698,0.0831006,0.593733,0.968493,0.0986651,0.934216,0.178989,0.897432,0.962911,0.35416,0.761758,0.946963,0.490278,0.874278,0.594274,0.10903,0.160481,0.26234,0.830912,0.897513,0.366335,0.939313,0.390499,0.964125,0.886642,0.867331,0.0830587,0.0442429,0.823401,0.0442249,0.353026,0.882414,0.105092,0.329816,0.626296,0.217043,0.810647,0.846326,0.930378,0.560726,0.620463,0.936232,0.997828,0.951158,0.0624923,0.77051,0.691088,0.650772,0.151568,0.150485,0.661999,0.126903,0.637299,0.648749,0.42338,0.325243,0.778135,0.618198,0.416448,0.663624,0.408425,0.128307,0.521814,0.615414,0.127994,0.79031,0.679995,0.206425,0.578327,0.238026,0.501115,0.445682,0.228063,0.503665,0.0931906,0.569489,0.0597115,0.830739,0.679181,0.85036,0.409706,0.699228,0.0958461,0.956234,0.059234,0.84089,0.52191,0.011264,0.801682,0.632884,0.809901,0.620388,0.450425,0.863086,0.442126,0.72715,0.111129,0.221077,0.955989,0.735036,0.761302,0.110419,0.132813,0.332915,0.847046,0.499312,0.462885,0.746822,0.380207,0.723863,0.536558,0.867974,0.0266212,0.517187,0.515251,0.799341,0.551526,0.204977,0.395734,0.0829058,0.265617,0.824382,0.838173,0.806371,0.480978,0.254239,0.832385,0.0760631,0.313194,0.705788,0.355591,0.659787,0.696325,0.0263823,0.728091,0.343494,0.42909,0.712103,0.0020172,0.0148494,0.946905,0.934172,0.568254,0.925205,0.703165,0.948524,0.718402,0.977857,0.142949,0.0233488,0.710232,0.624001,| diff --git a/test/torchscripts/VQ/rowCodeIndexY.txt b/test/torchscripts/VQ/rowCodeIndexY.txt new file mode 100644 index 00000000..bc791165 --- /dev/null +++ b/test/torchscripts/VQ/rowCodeIndexY.txt @@ -0,0 +1 @@ +352,975,858,566,628,553,407,697,304,627,508,529,920,358,186,194,490,62,630,828,800,446,885,72,568,21,208,584,354,371,425,510,235,109,411,653,197,226,85,674,990,205,207,436,59,669,179,844,148,538,183,804,332,68,477,728,8,769,805,787,760,527,104,509,269,969,815,910,650,329,330,37,78,863,245,700,351,788,16,611,951,136,134,88,486,952,364,998,964,664,130,274,398,918,914,936,762,777,231,110,564,791,396,241,252,442,263,476,648,549,525,694,896,160,83,212,634,380,793,318,125,123,117,271,22,416,524,764,341,912,285,946,29,748,801,230,451,54,48,157,852,66,642,732,655,691,133,684,761,286,836,74,36,376,118,276,384,794,429,421,632,6,521,677,315,321,647,543,343,983,93,159,530,880,377,242,311,266,607,251,94,135,814,359,217,491,301,864,44,919,662,834,163,731,41,121,888,20,370,10,82,868,465,754,950,533,28,24,187,400,835,908,898,140,165,528,563,961,441,478,749,185,204,335,369,644,50,737,746,111,752,999,302,299,586,673,254,750,774,924,829,799,830,224,298,458,561,469,767,64,604,161,267,423,323,310,303,967,61,43,437,516,984,723,806,548,470,114,464,47,817,178,622,595,192,803,701,383,873,779,995,379,704,727,947,938,686,766,519,599,77,193,168,305,294,833,976,243,565,506,641,309,368,567,162,811,433,209,498,870,917,408,198,954,809,992,635,501,758,957,588,502,120,151,745,333,847,312,932,596,824,415,738,893,257,51,782,374,46,546,741,122,188,406,249,781,35,839,909,499,646,979,942,221,345,911,891,394,931,49,146,489,959,665,297,926,428,381,268,7,585,487,797,685,902,435,579,729,353,725,32,295,126,997,52,597,152,462,581,167,485,234,334,771,845,480,683,324,770,573,284,264,248,139,759,166,987,621,361,933,449,92,722,395,1,716,322,86,962,488,261,773,810,287,280,216,293,99,336,886,447,744,610,576,711,60,174,843,260,291,11,853,308,492,792,388,719,97,58,897,842,808,90,941,258,667,672,692,418,963,182,70,26,869,679,422,823,603,426,945,978,282,702,473,862,220,625,645,643,795,307,172,439,225,861,176,56,481,743,756,349,402,463,820,638,289,631,79,907,378,112,339,387,582,881,27,283,517,626,468,326,903,190,876,223,706,892,95,288,391,871,807,507,203,278,765,542,413,265,895,751,922,222,557,826,718,860,448,201,763,615,244,916,703,670,474,939,457,156,532,432,87,988,837,316,589,884,783,620,180,855,154,496,539,875,617,397,215,555,270,98,676,971,444,382,513,372,403,768,319,671,742,518,996,550,790,977,142,233,900,328,355,640,414,461,879,757,138,986,202,177,981,857,218,633,537,213,229,590,690,313,714,583,541,236,865,405,189,531,874,363,350,40,687,240,614,943,721,602,393,593,921,708,786,785,238,775,13,850,616,796,466,901,129,734,250,784,707,966,73,740,699,170,974,867,515,472,164,592,710,184,730,656,675,96,789,851,91,169,18,821,780,424,296,663,695,127,108,119,623,137,552,681,841,598,520,239,958,572,536,818,360,994,147,386,522,340,247,526,237,390,34,116,53,106,228,705,344,970,467,972,255,993,75,171,960,320,776,65,337,210,314,150,389,512,246,259,854,306,4,848,253,141,227,493,554,816,606,219,726,913,577,149,906,375,666,755,173,812,689,199,84,392,559,38,281,450,327,362,709,940,272,654,69,693,401,124,928,832,660,348,419,944,639,856,494,678,262,930,357,618,504,366,25,668,955,733,948,637,605,131,483,420,713,200,9,569,445,290,547,356,23,102,651,410,175,956,460,81,30,317,45,153,802,682,63,367,882,831,181,735,724,688,132,475,659,629,342,544,696,3,523,822,338,427,657,608,747,915,503,849,612,887,571,889,409,452,158,982,609,113,275,89,455,404,680,878,591,505,712,846,649,753,277,331,560,256,105,989,949,840,636,347,825,953,540,923,15,973,195,511,373,601,838,346,497,191,143,399,300,545,578,929,430,872,556,2,214,412,652,899,798,453,594,484,459,580,965,100,103,101,827,904,772,890,67,434,115,76,570,866,778,574,128,859,211,385,144,145,715,935,968,440,819,42,196,471,905,551,107,273,206,980,55,883,417,934,39,927,514,482,57,0,925,325,985,454,19,717,155,479,736,443,534,658,619,5,535,558,500,292,813,31,698,431,17,562,80,739,600,575,495,720,991,613,587,661,12,71,365,232,33,877,624,14,937,894,438,279,456, diff --git a/test/torchscripts/prototypes.pt b/test/torchscripts/prototypes.pt new file mode 100644 index 00000000..f9c12cb6 Binary files /dev/null and b/test/torchscripts/prototypes.pt differ